From e5bde4c94144f7cdb3068b7c9dd237463a3dd41d Mon Sep 17 00:00:00 2001 From: Jonas Hietala Date: Tue, 20 Aug 2024 09:05:23 +0200 Subject: [PATCH 01/46] Move files into their own block level directory --- .gitignore | 1 + tree-sitter-djot/.gitignore | 11 +++++++++++ Cargo.toml => tree-sitter-djot/Cargo.toml | 0 Makefile => tree-sitter-djot/Makefile | 0 Package.swift => tree-sitter-djot/Package.swift | 0 binding.gyp => tree-sitter-djot/binding.gyp | 0 .../bindings}/c/tree-sitter-djot.h | 0 .../bindings}/c/tree-sitter-djot.pc.in | 0 {bindings => tree-sitter-djot/bindings}/go/binding.go | 0 .../bindings}/go/binding_test.go | 0 {bindings => tree-sitter-djot/bindings}/go/go.mod | 0 .../bindings}/node/binding.cc | 0 .../bindings}/node/index.d.ts | 0 {bindings => tree-sitter-djot/bindings}/node/index.js | 0 .../bindings}/python/tree_sitter_djot/__init__.py | 0 .../bindings}/python/tree_sitter_djot/__init__.pyi | 0 .../bindings}/python/tree_sitter_djot/binding.c | 0 .../bindings}/python/tree_sitter_djot/py.typed | 0 {bindings => tree-sitter-djot/bindings}/rust/build.rs | 0 {bindings => tree-sitter-djot/bindings}/rust/lib.rs | 0 .../bindings}/swift/TreeSitterDjot/djot.h | 0 grammar.js => tree-sitter-djot/grammar.js | 0 .../package-lock.json | 0 package.json => tree-sitter-djot/package.json | 0 pyproject.toml => tree-sitter-djot/pyproject.toml | 0 {queries => tree-sitter-djot/queries}/context.scm | 0 {queries => tree-sitter-djot/queries}/folds.scm | 0 {queries => tree-sitter-djot/queries}/highlights.scm | 0 {queries => tree-sitter-djot/queries}/indents.scm | 0 {queries => tree-sitter-djot/queries}/injections.scm | 0 {queries => tree-sitter-djot/queries}/locals.scm | 0 {queries => tree-sitter-djot/queries}/textobjects.scm | 0 setup.py => tree-sitter-djot/setup.py | 0 {src => tree-sitter-djot/src}/grammar.json | 0 {src => tree-sitter-djot/src}/node-types.json | 0 {src => tree-sitter-djot/src}/parser.c | 0 {src => tree-sitter-djot/src}/scanner.c | 0 {src => tree-sitter-djot/src}/tree_sitter/alloc.h | 0 {src => tree-sitter-djot/src}/tree_sitter/array.h | 0 {src => tree-sitter-djot/src}/tree_sitter/parser.h | 0 {test => tree-sitter-djot/test}/corpus/syntax.txt | 0 .../test}/corpus/syntax_crlf.txt | 0 42 files changed, 12 insertions(+) create mode 100644 tree-sitter-djot/.gitignore rename Cargo.toml => tree-sitter-djot/Cargo.toml (100%) rename Makefile => tree-sitter-djot/Makefile (100%) rename Package.swift => tree-sitter-djot/Package.swift (100%) rename binding.gyp => tree-sitter-djot/binding.gyp (100%) rename {bindings => tree-sitter-djot/bindings}/c/tree-sitter-djot.h (100%) rename {bindings => tree-sitter-djot/bindings}/c/tree-sitter-djot.pc.in (100%) rename {bindings => tree-sitter-djot/bindings}/go/binding.go (100%) rename {bindings => tree-sitter-djot/bindings}/go/binding_test.go (100%) rename {bindings => tree-sitter-djot/bindings}/go/go.mod (100%) rename {bindings => tree-sitter-djot/bindings}/node/binding.cc (100%) rename {bindings => tree-sitter-djot/bindings}/node/index.d.ts (100%) rename {bindings => tree-sitter-djot/bindings}/node/index.js (100%) rename {bindings => tree-sitter-djot/bindings}/python/tree_sitter_djot/__init__.py (100%) rename {bindings => tree-sitter-djot/bindings}/python/tree_sitter_djot/__init__.pyi (100%) rename {bindings => tree-sitter-djot/bindings}/python/tree_sitter_djot/binding.c (100%) rename {bindings => tree-sitter-djot/bindings}/python/tree_sitter_djot/py.typed (100%) rename {bindings => tree-sitter-djot/bindings}/rust/build.rs (100%) rename {bindings => tree-sitter-djot/bindings}/rust/lib.rs (100%) rename {bindings => tree-sitter-djot/bindings}/swift/TreeSitterDjot/djot.h (100%) rename grammar.js => tree-sitter-djot/grammar.js (100%) rename package-lock.json => tree-sitter-djot/package-lock.json (100%) rename package.json => tree-sitter-djot/package.json (100%) rename pyproject.toml => tree-sitter-djot/pyproject.toml (100%) rename {queries => tree-sitter-djot/queries}/context.scm (100%) rename {queries => tree-sitter-djot/queries}/folds.scm (100%) rename {queries => tree-sitter-djot/queries}/highlights.scm (100%) rename {queries => tree-sitter-djot/queries}/indents.scm (100%) rename {queries => tree-sitter-djot/queries}/injections.scm (100%) rename {queries => tree-sitter-djot/queries}/locals.scm (100%) rename {queries => tree-sitter-djot/queries}/textobjects.scm (100%) rename setup.py => tree-sitter-djot/setup.py (100%) rename {src => tree-sitter-djot/src}/grammar.json (100%) rename {src => tree-sitter-djot/src}/node-types.json (100%) rename {src => tree-sitter-djot/src}/parser.c (100%) rename {src => tree-sitter-djot/src}/scanner.c (100%) rename {src => tree-sitter-djot/src}/tree_sitter/alloc.h (100%) rename {src => tree-sitter-djot/src}/tree_sitter/array.h (100%) rename {src => tree-sitter-djot/src}/tree_sitter/parser.h (100%) rename {test => tree-sitter-djot/test}/corpus/syntax.txt (100%) rename {test => tree-sitter-djot/test}/corpus/syntax_crlf.txt (100%) diff --git a/.gitignore b/.gitignore index 5d92da4..76a0937 100644 --- a/.gitignore +++ b/.gitignore @@ -9,3 +9,4 @@ build /target/ log.html *.dj +broken.txt diff --git a/tree-sitter-djot/.gitignore b/tree-sitter-djot/.gitignore new file mode 100644 index 0000000..5d92da4 --- /dev/null +++ b/tree-sitter-djot/.gitignore @@ -0,0 +1,11 @@ +tmp/ +Cargo.lock +node_modules +.node-version +build +*.log +/test.js +/examples/npm +/target/ +log.html +*.dj diff --git a/Cargo.toml b/tree-sitter-djot/Cargo.toml similarity index 100% rename from Cargo.toml rename to tree-sitter-djot/Cargo.toml diff --git a/Makefile b/tree-sitter-djot/Makefile similarity index 100% rename from Makefile rename to tree-sitter-djot/Makefile diff --git a/Package.swift b/tree-sitter-djot/Package.swift similarity index 100% rename from Package.swift rename to tree-sitter-djot/Package.swift diff --git a/binding.gyp b/tree-sitter-djot/binding.gyp similarity index 100% rename from binding.gyp rename to tree-sitter-djot/binding.gyp diff --git a/bindings/c/tree-sitter-djot.h b/tree-sitter-djot/bindings/c/tree-sitter-djot.h similarity index 100% rename from bindings/c/tree-sitter-djot.h rename to tree-sitter-djot/bindings/c/tree-sitter-djot.h diff --git a/bindings/c/tree-sitter-djot.pc.in b/tree-sitter-djot/bindings/c/tree-sitter-djot.pc.in similarity index 100% rename from bindings/c/tree-sitter-djot.pc.in rename to tree-sitter-djot/bindings/c/tree-sitter-djot.pc.in diff --git a/bindings/go/binding.go b/tree-sitter-djot/bindings/go/binding.go similarity index 100% rename from bindings/go/binding.go rename to tree-sitter-djot/bindings/go/binding.go diff --git a/bindings/go/binding_test.go b/tree-sitter-djot/bindings/go/binding_test.go similarity index 100% rename from bindings/go/binding_test.go rename to tree-sitter-djot/bindings/go/binding_test.go diff --git a/bindings/go/go.mod b/tree-sitter-djot/bindings/go/go.mod similarity index 100% rename from bindings/go/go.mod rename to tree-sitter-djot/bindings/go/go.mod diff --git a/bindings/node/binding.cc b/tree-sitter-djot/bindings/node/binding.cc similarity index 100% rename from bindings/node/binding.cc rename to tree-sitter-djot/bindings/node/binding.cc diff --git a/bindings/node/index.d.ts b/tree-sitter-djot/bindings/node/index.d.ts similarity index 100% rename from bindings/node/index.d.ts rename to tree-sitter-djot/bindings/node/index.d.ts diff --git a/bindings/node/index.js b/tree-sitter-djot/bindings/node/index.js similarity index 100% rename from bindings/node/index.js rename to tree-sitter-djot/bindings/node/index.js diff --git a/bindings/python/tree_sitter_djot/__init__.py b/tree-sitter-djot/bindings/python/tree_sitter_djot/__init__.py similarity index 100% rename from bindings/python/tree_sitter_djot/__init__.py rename to tree-sitter-djot/bindings/python/tree_sitter_djot/__init__.py diff --git a/bindings/python/tree_sitter_djot/__init__.pyi b/tree-sitter-djot/bindings/python/tree_sitter_djot/__init__.pyi similarity index 100% rename from bindings/python/tree_sitter_djot/__init__.pyi rename to tree-sitter-djot/bindings/python/tree_sitter_djot/__init__.pyi diff --git a/bindings/python/tree_sitter_djot/binding.c b/tree-sitter-djot/bindings/python/tree_sitter_djot/binding.c similarity index 100% rename from bindings/python/tree_sitter_djot/binding.c rename to tree-sitter-djot/bindings/python/tree_sitter_djot/binding.c diff --git a/bindings/python/tree_sitter_djot/py.typed b/tree-sitter-djot/bindings/python/tree_sitter_djot/py.typed similarity index 100% rename from bindings/python/tree_sitter_djot/py.typed rename to tree-sitter-djot/bindings/python/tree_sitter_djot/py.typed diff --git a/bindings/rust/build.rs b/tree-sitter-djot/bindings/rust/build.rs similarity index 100% rename from bindings/rust/build.rs rename to tree-sitter-djot/bindings/rust/build.rs diff --git a/bindings/rust/lib.rs b/tree-sitter-djot/bindings/rust/lib.rs similarity index 100% rename from bindings/rust/lib.rs rename to tree-sitter-djot/bindings/rust/lib.rs diff --git a/bindings/swift/TreeSitterDjot/djot.h b/tree-sitter-djot/bindings/swift/TreeSitterDjot/djot.h similarity index 100% rename from bindings/swift/TreeSitterDjot/djot.h rename to tree-sitter-djot/bindings/swift/TreeSitterDjot/djot.h diff --git a/grammar.js b/tree-sitter-djot/grammar.js similarity index 100% rename from grammar.js rename to tree-sitter-djot/grammar.js diff --git a/package-lock.json b/tree-sitter-djot/package-lock.json similarity index 100% rename from package-lock.json rename to tree-sitter-djot/package-lock.json diff --git a/package.json b/tree-sitter-djot/package.json similarity index 100% rename from package.json rename to tree-sitter-djot/package.json diff --git a/pyproject.toml b/tree-sitter-djot/pyproject.toml similarity index 100% rename from pyproject.toml rename to tree-sitter-djot/pyproject.toml diff --git a/queries/context.scm b/tree-sitter-djot/queries/context.scm similarity index 100% rename from queries/context.scm rename to tree-sitter-djot/queries/context.scm diff --git a/queries/folds.scm b/tree-sitter-djot/queries/folds.scm similarity index 100% rename from queries/folds.scm rename to tree-sitter-djot/queries/folds.scm diff --git a/queries/highlights.scm b/tree-sitter-djot/queries/highlights.scm similarity index 100% rename from queries/highlights.scm rename to tree-sitter-djot/queries/highlights.scm diff --git a/queries/indents.scm b/tree-sitter-djot/queries/indents.scm similarity index 100% rename from queries/indents.scm rename to tree-sitter-djot/queries/indents.scm diff --git a/queries/injections.scm b/tree-sitter-djot/queries/injections.scm similarity index 100% rename from queries/injections.scm rename to tree-sitter-djot/queries/injections.scm diff --git a/queries/locals.scm b/tree-sitter-djot/queries/locals.scm similarity index 100% rename from queries/locals.scm rename to tree-sitter-djot/queries/locals.scm diff --git a/queries/textobjects.scm b/tree-sitter-djot/queries/textobjects.scm similarity index 100% rename from queries/textobjects.scm rename to tree-sitter-djot/queries/textobjects.scm diff --git a/setup.py b/tree-sitter-djot/setup.py similarity index 100% rename from setup.py rename to tree-sitter-djot/setup.py diff --git a/src/grammar.json b/tree-sitter-djot/src/grammar.json similarity index 100% rename from src/grammar.json rename to tree-sitter-djot/src/grammar.json diff --git a/src/node-types.json b/tree-sitter-djot/src/node-types.json similarity index 100% rename from src/node-types.json rename to tree-sitter-djot/src/node-types.json diff --git a/src/parser.c b/tree-sitter-djot/src/parser.c similarity index 100% rename from src/parser.c rename to tree-sitter-djot/src/parser.c diff --git a/src/scanner.c b/tree-sitter-djot/src/scanner.c similarity index 100% rename from src/scanner.c rename to tree-sitter-djot/src/scanner.c diff --git a/src/tree_sitter/alloc.h b/tree-sitter-djot/src/tree_sitter/alloc.h similarity index 100% rename from src/tree_sitter/alloc.h rename to tree-sitter-djot/src/tree_sitter/alloc.h diff --git a/src/tree_sitter/array.h b/tree-sitter-djot/src/tree_sitter/array.h similarity index 100% rename from src/tree_sitter/array.h rename to tree-sitter-djot/src/tree_sitter/array.h diff --git a/src/tree_sitter/parser.h b/tree-sitter-djot/src/tree_sitter/parser.h similarity index 100% rename from src/tree_sitter/parser.h rename to tree-sitter-djot/src/tree_sitter/parser.h diff --git a/test/corpus/syntax.txt b/tree-sitter-djot/test/corpus/syntax.txt similarity index 100% rename from test/corpus/syntax.txt rename to tree-sitter-djot/test/corpus/syntax.txt diff --git a/test/corpus/syntax_crlf.txt b/tree-sitter-djot/test/corpus/syntax_crlf.txt similarity index 100% rename from test/corpus/syntax_crlf.txt rename to tree-sitter-djot/test/corpus/syntax_crlf.txt From 0f04575ccea8527e042cd66eaf7017308cfc5e3d Mon Sep 17 00:00:00 2001 From: Jonas Hietala Date: Wed, 21 Aug 2024 08:35:19 +0200 Subject: [PATCH 02/46] Remove inline parsing elements from grammar Also add some fixes: - Arbitrary depth for headings - Allow paces around table separator - Support link reference definitions next to each other with arbitrary inline content. --- tree-sitter-djot/.editorconfig | 42 + tree-sitter-djot/.gitattributes | 11 + tree-sitter-djot/.gitignore | 48 +- tree-sitter-djot/grammar.js | 409 +- tree-sitter-djot/package.json | 2 +- tree-sitter-djot/queries/highlights.scm | 272 +- tree-sitter-djot/queries/injections.scm | 11 +- tree-sitter-djot/queries/textobjects.scm | 79 +- tree-sitter-djot/src/grammar.json | 3971 +- tree-sitter-djot/src/node-types.json | 2262 +- tree-sitter-djot/src/parser.c | 119714 +++------------- tree-sitter-djot/src/scanner.c | 98 +- tree-sitter-djot/test/corpus/syntax.txt | 1223 +- tree-sitter-djot/test/corpus/syntax_crlf.txt | 369 - 14 files changed, 25556 insertions(+), 102955 deletions(-) create mode 100644 tree-sitter-djot/.editorconfig create mode 100644 tree-sitter-djot/.gitattributes delete mode 100644 tree-sitter-djot/test/corpus/syntax_crlf.txt diff --git a/tree-sitter-djot/.editorconfig b/tree-sitter-djot/.editorconfig new file mode 100644 index 0000000..18b7a77 --- /dev/null +++ b/tree-sitter-djot/.editorconfig @@ -0,0 +1,42 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true + +[*.{json,toml,yml,gyp}] +indent_style = space +indent_size = 2 + +[*.js] +indent_style = space +indent_size = 2 + +[*.rs] +indent_style = space +indent_size = 4 + +[*.{c,cc,h}] +indent_style = space +indent_size = 4 + +[*.{py,pyi}] +indent_style = space +indent_size = 4 + +[*.swift] +indent_style = space +indent_size = 4 + +[*.go] +indent_style = tab +indent_size = 8 + +[*.txt] +trim_trailing_whitespace = false + +[Makefile] +indent_style = tab +indent_size = 8 diff --git a/tree-sitter-djot/.gitattributes b/tree-sitter-djot/.gitattributes new file mode 100644 index 0000000..ffb52ab --- /dev/null +++ b/tree-sitter-djot/.gitattributes @@ -0,0 +1,11 @@ +* text eol=lf + +src/*.json linguist-generated +src/parser.c linguist-generated +src/tree_sitter/* linguist-generated + +bindings/** linguist-generated +binding.gyp linguist-generated +setup.py linguist-generated +Makefile linguist-generated +Package.swift linguist-generated diff --git a/tree-sitter-djot/.gitignore b/tree-sitter-djot/.gitignore index 5d92da4..7dece85 100644 --- a/tree-sitter-djot/.gitignore +++ b/tree-sitter-djot/.gitignore @@ -1,11 +1,41 @@ -tmp/ +# Rust artifacts Cargo.lock -node_modules -.node-version -build -*.log -/test.js -/examples/npm -/target/ -log.html +target/ + +# Node artifacts +build/ +prebuilds/ +node_modules/ +*.tgz + +# Swift artifacts +.build/ + +# Go artifacts +go.sum +_obj/ + +# Python artifacts +.venv/ +dist/ +*.egg-info +*.whl + +# C artifacts +*.a +*.so +*.so.* +*.dylib +*.dll +*.pc + +# Example dirs +/examples/*/ + +# Grammar volatiles +*.wasm +*.obj +*.o + +# WIP things *.dj diff --git a/tree-sitter-djot/grammar.js b/tree-sitter-djot/grammar.js index ebcb39f..3309732 100644 --- a/tree-sitter-djot/grammar.js +++ b/tree-sitter-djot/grammar.js @@ -5,23 +5,8 @@ module.exports = grammar({ conflicts: ($) => [ [$._table_content], - [$._inline_no_surrounding_spaces], - [$._inline_element_with_whitespace, $._inline_no_surrounding_spaces], - [$.emphasis_begin, $._symbol_fallback], - [$.strong_begin, $._symbol_fallback], - [$.highlighted, $._symbol_fallback], - [$.superscript, $._symbol_fallback], - [$.subscript, $._symbol_fallback], - [$.insert, $._symbol_fallback], - [$.delete, $._symbol_fallback], + [$.link_reference_definition, $._symbol_fallback], [$.table_row, $._symbol_fallback], - [$._image_description, $._symbol_fallback], - [$.math, $._symbol_fallback], - [$.link_text, $.span, $._symbol_fallback], - [$.link_reference_definition, $.link_text, $.span, $._symbol_fallback], - [$.block_attribute, $._symbol_fallback], - [$._inline_element_with_whitespace, $._comment_with_spaces], - [$._inline_element_with_whitespace_without_newline, $._comment_with_spaces], ], rules: { @@ -43,8 +28,7 @@ module.exports = grammar({ // A section is only valid on the top level, or nested inside other sections. // Otherwise standalone headings are used (inside divs for example). _block_with_section: ($) => choice($.section, $._block_element, $._newline), - _block_with_heading: ($) => - choice($._heading, $._block_element, $._newline), + _block_with_heading: ($) => choice($.heading, $._block_element, $._newline), _block_element: ($) => choice( @@ -61,99 +45,30 @@ module.exports = grammar({ $._paragraph, ), - // Section should end by a new header with the same or fewer amount of '#'. + // Section should end by a new header with the same or fewer amount of `#`. section: ($) => seq( - $._heading, + $.heading, alias(repeat($._block_with_section), $.section_content), $._block_close, ), - // Headings can't be mixed, this verbose description (together with the external scanner) - // ensures that they're not. - _heading: ($) => - choice( - $.heading1, - $.heading2, - $.heading3, - $.heading4, - $.heading5, - $.heading6, - ), - heading1: ($) => - seq( - alias($._heading1_begin, $.marker), - alias($._heading1_content, $.content), - $._block_close, - optional($._eof_or_newline), - ), - _heading1_content: ($) => - seq( - $._inline_line, - repeat(seq(alias($._heading1_continuation, $.marker), $._inline_line)), - ), - heading2: ($) => + // The external scanner allows for an arbitrary number of `#` + // that can be continued on the next line. + heading: ($) => seq( - alias($._heading2_begin, $.marker), - alias($._heading2_content, $.content), + alias($._heading_begin, $.marker), + alias($._heading_content, $.content), $._block_close, optional($._eof_or_newline), ), - _heading2_content: ($) => + _heading_content: ($) => seq( $._inline_line, - repeat(seq(alias($._heading2_continuation, $.marker), $._inline_line)), - ), - heading3: ($) => - seq( - alias($._heading3_begin, $.marker), - alias($._heading5_content, $.content), - $._block_close, - optional($._eof_or_newline), - ), - _heading3_content: ($) => - seq( - $._inline_line, - repeat(seq(alias($._heading3_continuation, $.marker), $._inline_line)), - ), - heading4: ($) => - seq( - alias($._heading4_begin, $.marker), - alias($._heading5_content, $.content), - $._block_close, - optional($._eof_or_newline), - ), - _heading4_content: ($) => - seq( - $._inline_line, - repeat(seq(alias($._heading4_continuation, $.marker), $._inline_line)), - ), - heading5: ($) => - seq( - alias($._heading5_begin, $.marker), - alias($._heading5_content, $.content), - $._block_close, - optional($._eof_or_newline), - ), - _heading5_content: ($) => - seq( - $._inline_line, - repeat(seq(alias($._heading5_continuation, $.marker), $._inline_line)), - ), - heading6: ($) => - seq( - alias($._heading6_begin, $.marker), - alias($._heading6_content, $.content), - $._block_close, - optional($._eof_or_newline), - ), - _heading6_content: ($) => - seq( - $._inline_line, - repeat(seq(alias($._heading6_continuation, $.marker), $._inline_line)), + repeat(seq(alias($._heading_continuation, $.marker), $._inline_line)), ), - // Djot has a crazy number of different list types, + // Djot has a crazy number of different list types // that we need to keep separate from each other. list: ($) => prec.left( @@ -407,9 +322,8 @@ module.exports = grammar({ $._newline, ), ), - table_cell_alignment: (_) => token.immediate(prec(100, /:?-+:?/)), - table_cell: ($) => - prec.left(repeat1($._inline_element_with_whitespace_without_newline)), + table_cell_alignment: (_) => token.immediate(prec(100, /\s*:?-+:?\s*/)), + table_cell: ($) => $._inline, table_caption: ($) => seq( alias($._table_caption_begin, $.marker), @@ -482,7 +396,7 @@ module.exports = grammar({ ), _block_quote_content: ($) => seq( - choice($._heading, $._block_element), + choice($.heading, $._block_element), repeat(seq($._block_quote_prefix, optional($._block_element))), ), _block_quote_prefix: ($) => @@ -493,13 +407,15 @@ module.exports = grammar({ link_reference_definition: ($) => seq( "[", - alias($._inline, $.link_label), + $.link_label, "]", ":", $._whitespace1, $.link_destination, + $._whitespace, $._one_or_two_newlines, ), + link_label: ($) => $._inline, link_destination: (_) => /\S+/, block_attribute: ($) => @@ -539,270 +455,69 @@ module.exports = grammar({ // token can be emitted which closes the paragraph content. _paragraph: ($) => seq( + alias($._paragraph_content, $.paragraph), // Blankline is split out from paragraph to enable textobject // to not select newline up to following text. - alias($._paragraph_content, $.paragraph), choice($._eof_or_newline, $._close_paragraph), ), - _paragraph_content: ($) => seq($._inline, $._eof_or_newline), + _paragraph_content: ($) => + // Newlines inside inline blocks should be of the `_newline_inline` type. + seq( + $._inline, + repeat(seq($._newline_inline, $._inline)), + // Last newline can be of the normal variant to signal the end of the paragraph. + $._eof_or_newline, + ), _one_or_two_newlines: ($) => - prec.left(choice("\0", seq($._newline, $._newline), $._newline)), + prec.left( + choice(seq($._eof_or_newline, $._eof_or_newline), $._eof_or_newline), + ), _whitespace: (_) => token.immediate(/[ \t]*/), _whitespace1: (_) => token.immediate(/[ \t]+/), - _inline: ($) => prec.left(repeat1($._inline_element_with_whitespace)), - - _inline_element_with_whitespace: ($) => - choice($._inline_element_with_newline, $._whitespace1), - _inline_element_with_whitespace_without_newline: ($) => - choice($._inline_core_element, $._whitespace1), - _inline_element_without_whitespace: ($) => - choice($._inline_element_with_newline, $._whitespace1), - _inline_element_with_newline: ($) => - choice( - $._inline_core_element, - seq($._newline_inline, optional($._block_quote_prefix)), - ), + // Use repeat1 over /[^\n]+/ regex to not gobble up everything + // and allow other tokens to interrupt the inline capture. + _inline: ($) => prec.left(repeat1(choice(/[^\n]/, $._symbol_fallback))), + _inline_line: ($) => seq($._inline, $._eof_or_newline), - _inline_core_element: ($) => - prec.left( + _symbol_fallback: ($) => + prec.dynamic( + -1000, choice( - seq( - choice( - $._hard_line_break, - $._smart_punctuation, - $.backslash_escape, - $.autolink, - $.emphasis, - $.strong, - $.highlighted, - $.superscript, - $.subscript, - $.insert, - $.delete, - $.verbatim, - $.math, - $.raw_inline, - $.footnote_reference, - $.symbol, - $.span, - $._image, - $._link, - $._comment_with_spaces, - $._todo_highlights, - $._symbol_fallback, - $._text, - ), - optional($.inline_attribute), - ), - $.span, - ), - ), - - // Emphasis and strong markers aren't allowed to exist next a space. - // This incarnation exists to ensure that the content doesn't start or end - // with a space. - _inline_no_surrounding_spaces: ($) => - choice( - $._inline_element_with_newline, - seq( - $._inline_element_with_newline, - repeat($._inline_element_with_whitespace), - $._inline_element_with_newline, + // "![", + // "*", + "[", + // "[^", + // "^", + // "_", + "{", + // "{*", + // "{+", + "{-", + // "{=", + // "{^", + // "{_", + // "{~", + "|", + // "~", + // "<", + // "$", ), ), - _inline_line: ($) => seq($._inline, choice($._newline, "\0")), - - _hard_line_break: ($) => - seq($.hard_line_break, optional($._block_quote_prefix)), - hard_line_break: ($) => seq("\\", $._newline), - - _smart_punctuation: ($) => - choice($.quotation_marks, $.ellipsis, $.em_dash, $.en_dash), - // NOTE it would be nice to be able to mark bare " and ', but then we'd have to be smarter - // so we don't mark the ' in `it's`. - quotation_marks: (_) => token(choice('{"', '"}', "{'", "'}", '\\"', "\\'")), - ellipsis: (_) => "...", - em_dash: (_) => "---", - en_dash: (_) => "--", - backslash_escape: (_) => /\\[^\\\r\n]/, - autolink: (_) => seq("<", /[^>\s]+/, ">"), - - emphasis: ($) => - seq( - $.emphasis_begin, - alias($._inline_no_surrounding_spaces, $.content), - $.emphasis_end, - ), - - // Use explicit begin/end to be able to capture ending tokens with arbitrary whitespace. - // Note that I couldn't replace repeat(" ") with $._whitespace for some reason... - emphasis_begin: (_) => choice(seq("{_", repeat(" ")), "_"), - emphasis_end: (_) => choice(token(seq(repeat(" "), "_}")), "_"), - - strong: ($) => - seq( - $.strong_begin, - alias($._inline_no_surrounding_spaces, $.content), - $.strong_end, - ), - strong_begin: (_) => choice(seq("{*", repeat(" ")), "*"), - strong_end: (_) => choice(token(seq(repeat(" "), "*}")), "*"), - - highlighted: ($) => seq("{=", alias($._inline, $.content), "=}"), - insert: ($) => seq("{+", alias($._inline, $.content), "+}"), - delete: ($) => seq("{-", alias($._inline, $.content), "-}"), - symbol: (_) => token(seq(":", /[^:\s]+/, ":")), - - // The syntax description isn't clear about if non-bracket can contain surrounding spaces? - // The live playground suggests that yes they can. - superscript: ($) => - seq(choice("{^", "^"), alias($._inline, $.content), choice("^}", "^")), - subscript: ($) => - seq(choice("{~", "~"), alias($._inline, $.content), choice("~}", "~")), - - footnote_reference: ($) => - seq( - alias("[^", $.footnote_marker_begin), - $.reference_label, - alias("]", $.footnote_marker_end), - ), - reference_label: ($) => $._id, _id: (_) => /[\w_-]+/, - _image: ($) => - choice( - $.full_reference_image, - $.collapsed_reference_image, - $.inline_image, - ), - full_reference_image: ($) => seq($._image_description, $._link_label), - collapsed_reference_image: ($) => - seq($._image_description, token.immediate("[]")), - inline_image: ($) => seq($._image_description, $.inline_link_destination), - - _image_description: ($) => - seq("![", optional(alias($._inline, $.image_description)), "]"), - - _link: ($) => - choice($.full_reference_link, $.collapsed_reference_link, $.inline_link), - full_reference_link: ($) => seq($.link_text, $._link_label), - collapsed_reference_link: ($) => seq($.link_text, token.immediate("[]")), - inline_link: ($) => seq($.link_text, $.inline_link_destination), - - link_text: ($) => seq("[", $._inline, "]"), - - _link_label: ($) => - seq("[", alias($._inline, $.link_label), token.immediate("]")), - inline_link_destination: (_) => seq("(", /[^\n\)]+/, ")"), - - inline_attribute: ($) => - seq( - token.immediate("{"), - alias( - repeat( - choice( - $.class, - $.identifier, - $.key_value, - alias($._comment_with_newline, $.comment), - $._whitespace1, - $._newline, - ), - ), - $.args, - ), - "}", - ), - - // An inline attribute is only allowed to have surrounding spaces - // if it only contains a comment. - comment: ($) => seq("{", $._comment_with_newline, "}"), - _comment_with_spaces: ($) => seq($._whitespace1, $.comment), - - span: ($) => seq("[", $._inline, "]", $.inline_attribute), - - _comment_with_newline: ($) => - seq( - "%", - // With a whitespace here there's weirdly enough no conflict with - // `_comment_no_newline` despite only a single choice difference. - $._whitespace, - alias( - repeat(choice($.backslash_escape, /[^%\n]/, $._newline)), - $.content, - ), - "%", - ), _comment_no_newline: ($) => seq( "%", alias(repeat(choice($.backslash_escape, /[^%\n]/)), $.content), "%", ), - - raw_inline: ($) => - seq( - alias($._verbatim_begin, $.raw_inline_marker_begin), - alias($._verbatim_content, $.content), - alias($._verbatim_end, $.raw_inline_marker_end), - $.raw_inline_attribute, - ), - raw_inline_attribute: ($) => seq(token.immediate("{="), $.language, "}"), - math: ($) => - seq( - alias("$", $.math_marker), - alias($._verbatim_begin, $.math_marker_begin), - alias($._verbatim_content, $.content), - alias($._verbatim_end, $.math_marker_end), - ), - verbatim: ($) => - seq( - alias($._verbatim_begin, $.verbatim_marker_begin), - alias($._verbatim_content, $.content), - alias($._verbatim_end, $.verbatim_marker_end), - ), - - _todo_highlights: ($) => choice($.todo, $.note, $.fixme), - todo: (_) => choice("TODO", "WIP"), - note: (_) => choice("NOTE", "INFO", "XXX"), - fixme: (_) => "FIXME", - - // These exists to explicit trigger an LR collision with existing - // prefixes. A collision isn't detected with a string and the - // catch-all `_text` regex. - _symbol_fallback: ($) => - prec.dynamic( - -1000, - choice( - "![", - "*", - "[", - "[^", - "^", - "_", - "{", - "{*", - "{+", - "{-", - "{=", - "{^", - "{_", - "{~", - "|", - "~", - "<", - "$", - ), - ), - // It's a bit faster with repeat1 here. - _text: (_) => repeat1(/\S/), }, externals: ($) => [ @@ -842,20 +557,10 @@ module.exports = grammar({ // Headings open and close sections, but they're not exposed to `grammar.js` // but is used by the external scanner internally. - $._heading1_begin, + $._heading_begin, // Heading continuation can continue a heading, but only if // they match the number of `#` (or there's no `#`). - $._heading1_continuation, - $._heading2_begin, - $._heading2_continuation, - $._heading3_begin, - $._heading3_continuation, - $._heading4_begin, - $._heading4_continuation, - $._heading5_begin, - $._heading5_continuation, - $._heading6_begin, - $._heading6_continuation, + $._heading_continuation, // Matches div markers with varying number of `:`. $._div_begin, $._div_end, diff --git a/tree-sitter-djot/package.json b/tree-sitter-djot/package.json index ec99889..390d966 100644 --- a/tree-sitter-djot/package.json +++ b/tree-sitter-djot/package.json @@ -1,6 +1,6 @@ { "name": "tree-sitter-djot", - "version": "1.1.0", + "version": "2.0.0", "description": "", "main": "bindings/node", "types": "bindings/node", diff --git a/tree-sitter-djot/queries/highlights.scm b/tree-sitter-djot/queries/highlights.scm index 5896d8f..8fe0037 100644 --- a/tree-sitter-djot/queries/highlights.scm +++ b/tree-sitter-djot/queries/highlights.scm @@ -1,6 +1,6 @@ -; Please note that each editor handles highlighting differently. -; This file is made with Neovim in mind and will not -; work correctly in other editors, but can serve as a starting point. +; ; Please note that each editor handles highlighting differently. +; ; This file is made with Neovim in mind and will not +; ; work correctly in other editors, but can serve as a starting point. [ (paragraph) (comment) @@ -8,14 +8,9 @@ ] @spell [ - (autolink) - (inline_link_destination) (link_destination) (code_block) (raw_block) - (math) - (raw_inline) - (verbatim) (reference_label) (class) (class_name) @@ -24,23 +19,14 @@ (frontmatter) ] @nospell -(full_reference_link - (link_label) @nospell) +(heading) @markup.heading -(full_reference_image - (link_label) @nospell) - -(heading1) @markup.heading.1 - -(heading2) @markup.heading.2 - -(heading3) @markup.heading.3 - -(heading4) @markup.heading.4 - -(heading5) @markup.heading.5 - -(heading6) @markup.heading.6 +((heading) @markup.heading.1 (#match? @markup.heading.1 "^# ")) +((heading) @markup.heading.2 (#match? @markup.heading.2 "^## ")) +((heading) @markup.heading.3 (#match? @markup.heading.3 "^### ")) +((heading) @markup.heading.4 (#match? @markup.heading.4 "^#### ")) +((heading) @markup.heading.5 (#match? @markup.heading.5 "^##### ")) +((heading) @markup.heading.6 (#match? @markup.heading.6 "^###### ")) (thematic_break) @string.special @@ -73,10 +59,6 @@ (language) @attribute -(inline_attribute - _ @conceal - (#set! conceal "")) - ((language_marker) @punctuation.delimiter (#set! conceal "")) @@ -132,154 +114,13 @@ (#offset! @constant.builtin 0 1 0 -1) (#set! conceal "✓")) -[ - (ellipsis) - (en_dash) - (em_dash) -] @string.special - (list_item (term) @type.definition) -(quotation_marks) @string.special - -((quotation_marks) @string.special - (#eq? @string.special "{\"") - (#set! conceal "“")) - -((quotation_marks) @string.special - (#eq? @string.special "\"}") - (#set! conceal "”")) - -((quotation_marks) @string.special - (#eq? @string.special "{'") - (#set! conceal "‘")) - -((quotation_marks) @string.special - (#eq? @string.special "'}") - (#set! conceal "’")) - -((quotation_marks) @string.special - (#any-of? @string.special "\\\"" "\\'") - (#offset! @string.special 0 0 0 -1) - (#set! conceal "")) - -((hard_line_break) @string.escape - (#set! conceal "↵")) - -(backslash_escape) @string.escape - -; Only conceal \ but leave escaped character. -((backslash_escape) @string.escape - (#offset! @string.escape 0 0 0 -1) - (#set! conceal "")) - (frontmatter_marker) @punctuation.delimiter -(emphasis) @markup.italic - -(strong) @markup.strong - -(symbol) @string.special.symbol - -(insert) @markup.underline - -(delete) @markup.strikethrough - -; Note that these aren't standard in nvim-treesitter, -; but I didn't find any that fit well. -(highlighted) @markup.highlighted - -(superscript) @markup.superscript - -(subscript) @markup.subscript - -; We need to target tokens specifically because `{=` etc can exist as fallback symbols in -; regular text, which we don't want to highlight or conceal. -(highlighted - [ - "{=" - "=}" - ] @punctuation.delimiter - (#set! conceal "")) - -(insert - [ - "{+" - "+}" - ] @punctuation.delimiter - (#set! conceal "")) - -(delete - [ - "{-" - "-}" - ] @punctuation.delimiter - (#set! conceal "")) - -(superscript - [ - "^" - "{^" - "^}" - ] @punctuation.delimiter - (#set! conceal "")) - -(subscript - [ - "~" - "{~" - "~}" - ] @punctuation.delimiter - (#set! conceal "")) - -([ - (emphasis_begin) - (emphasis_end) - (strong_begin) - (strong_end) - (verbatim_marker_begin) - (verbatim_marker_end) - (math_marker) - (math_marker_begin) - (math_marker_end) - (raw_inline_attribute) - (raw_inline_marker_begin) - (raw_inline_marker_end) -] @punctuation.delimiter - (#set! conceal "")) - -((math) @markup.math - (#set! "priority" 90)) - -(verbatim) @markup.raw - -((raw_inline) @markup.raw - (#set! "priority" 90)) - (comment) @comment -; Don't conceal standalone comments themselves, only delimiters. -(comment - [ - "{" - "}" - "%" - ] @comment - (#set! conceal "")) - -(span - [ - "[" - "]" - ] @punctuation.bracket) - -(inline_attribute - [ - "{" - "}" - ] @punctuation.bracket) - (block_attribute [ "{" @@ -302,84 +143,9 @@ (key_value (value) @string) -(link_text - [ - "[" - "]" - ] @punctuation.bracket - (#set! conceal "")) - -(autolink - [ - "<" - ">" - ] @punctuation.bracket - (#set! conceal "")) - -(inline_link - (inline_link_destination) @markup.link.url - (#set! conceal "")) - (link_reference_definition ":" @punctuation.special) -(full_reference_link - (link_text) @markup.link) - -(full_reference_link - (link_label) @markup.link.label - (#set! conceal "")) - -(collapsed_reference_link - "[]" @punctuation.bracket - (#set! conceal "")) - -(full_reference_link - [ - "[" - "]" - ] @punctuation.bracket - (#set! conceal "")) - -(collapsed_reference_link - (link_text) @markup.link) - -(collapsed_reference_link - (link_text) @markup.link.label) - -(inline_link - (link_text) @markup.link) - -(full_reference_image - (link_label) @markup.link.label) - -(full_reference_image - [ - "![" - "[" - "]" - ] @punctuation.bracket) - -(collapsed_reference_image - [ - "![" - "]" - ] @punctuation.bracket) - -(inline_image - [ - "![" - "]" - ] @punctuation.bracket) - -(image_description) @markup.italic - -(image_description - [ - "[" - "]" - ] @punctuation.bracket) - (link_reference_definition [ "[" @@ -389,23 +155,12 @@ (link_reference_definition (link_label) @markup.link.label) -(inline_link_destination - [ - "(" - ")" - ] @punctuation.bracket) - [ - (autolink) - (inline_link_destination) - (link_destination) (link_reference_definition) ] @markup.link.url -(footnote - (reference_label) @markup.link.label) -(footnote_reference +(footnote (reference_label) @markup.link.label) [ @@ -413,8 +168,3 @@ (footnote_marker_end) ] @punctuation.bracket -(todo) @comment.todo - -(note) @comment.note - -(fixme) @comment.error diff --git a/tree-sitter-djot/queries/injections.scm b/tree-sitter-djot/queries/injections.scm index b590e08..6463fdf 100644 --- a/tree-sitter-djot/queries/injections.scm +++ b/tree-sitter-djot/queries/injections.scm @@ -7,11 +7,12 @@ (language) @injection.language) (content) @injection.content) -(raw_inline - (content) @injection.content - (raw_inline_attribute - (language) @injection.language)) - (frontmatter (language) @injection.language (frontmatter_content) @injection.content) + +((table_cell) @injection.content (#set! injection.language "djot_inline")) +((link_label) @injection.content (#set! injection.language "djot_inline")) +((paragraph) @injection.content (#set! injection.language "djot_inline")) +((table_caption (content) @injection.content (#set! injection.language "djot_inline"))) +; TODO heading content diff --git a/tree-sitter-djot/queries/textobjects.scm b/tree-sitter-djot/queries/textobjects.scm index 63406f5..e00d2f6 100644 --- a/tree-sitter-djot/queries/textobjects.scm +++ b/tree-sitter-djot/queries/textobjects.scm @@ -12,22 +12,7 @@ (#offset! @class.inner 0 0 -1 0)) @class.outer ; Functions, the next level -(heading1 - (content) @function.inner) @function.outer - -(heading2 - (content) @function.inner) @function.outer - -(heading3 - (content) @function.inner) @function.outer - -(heading4 - (content) @function.inner) @function.outer - -(heading5 - (content) @function.inner) @function.outer - -(heading6 +(heading (content) @function.inner) @function.outer (div @@ -70,37 +55,37 @@ (block_attribute (args) @attribute.inner) @attribute.outer -(inline_attribute - (args) @attribute.inner) @attribute.outer - -(table_caption - (content) @attribute.inner) @attribute.outer - -(emphasis - (content) @attribute.inner) @attribute.outer - -(strong - (content) @attribute.inner) @attribute.outer - -(highlighted - (content) @attribute.inner) @attribute.outer - -(insert - (content) @attribute.inner) @attribute.outer - -(delete - (content) @attribute.inner) @attribute.outer - -(symbol) @attribute.outer - -(superscript - (content) @attribute.inner) @attribute.outer - -(subscript - (content) @attribute.inner) @attribute.outer - -(verbatim - (content) @attribute.inner) @attribute.outer +; (inline_attribute +; (args) @attribute.inner) @attribute.outer + +; (table_caption +; (content) @attribute.inner) @attribute.outer +; +; (emphasis +; (content) @attribute.inner) @attribute.outer +; +; (strong +; (content) @attribute.inner) @attribute.outer +; +; (highlighted +; (content) @attribute.inner) @attribute.outer +; +; (insert +; (content) @attribute.inner) @attribute.outer +; +; (delete +; (content) @attribute.inner) @attribute.outer +; +; (symbol) @attribute.outer +; +; (superscript +; (content) @attribute.inner) @attribute.outer +; +; (subscript +; (content) @attribute.inner) @attribute.outer +; +; (verbatim +; (content) @attribute.inner) @attribute.outer ; Parameters, inside a description of a thing [ diff --git a/tree-sitter-djot/src/grammar.json b/tree-sitter-djot/src/grammar.json index 0c59166..d74d044 100644 --- a/tree-sitter-djot/src/grammar.json +++ b/tree-sitter-djot/src/grammar.json @@ -95,7 +95,7 @@ "members": [ { "type": "SYMBOL", - "name": "_heading" + "name": "heading" }, { "type": "SYMBOL", @@ -161,7 +161,7 @@ "members": [ { "type": "SYMBOL", - "name": "_heading" + "name": "heading" }, { "type": "ALIAS", @@ -181,43 +181,14 @@ } ] }, - "_heading": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "heading1" - }, - { - "type": "SYMBOL", - "name": "heading2" - }, - { - "type": "SYMBOL", - "name": "heading3" - }, - { - "type": "SYMBOL", - "name": "heading4" - }, - { - "type": "SYMBOL", - "name": "heading5" - }, - { - "type": "SYMBOL", - "name": "heading6" - } - ] - }, - "heading1": { + "heading": { "type": "SEQ", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", - "name": "_heading1_begin" + "name": "_heading_begin" }, "named": true, "value": "marker" @@ -226,7 +197,7 @@ "type": "ALIAS", "content": { "type": "SYMBOL", - "name": "_heading1_content" + "name": "_heading_content" }, "named": true, "value": "content" @@ -249,7 +220,7 @@ } ] }, - "_heading1_content": { + "_heading_content": { "type": "SEQ", "members": [ { @@ -265,7 +236,7 @@ "type": "ALIAS", "content": { "type": "SYMBOL", - "name": "_heading1_continuation" + "name": "_heading_continuation" }, "named": true, "value": "marker" @@ -279,306 +250,384 @@ } ] }, - "heading2": { - "type": "SEQ", - "members": [ - { - "type": "ALIAS", - "content": { + "list": { + "type": "PREC_LEFT", + "value": 0, + "content": { + "type": "CHOICE", + "members": [ + { "type": "SYMBOL", - "name": "_heading2_begin" + "name": "_list_dash" }, - "named": true, - "value": "marker" - }, - { - "type": "ALIAS", - "content": { + { "type": "SYMBOL", - "name": "_heading2_content" + "name": "_list_plus" }, - "named": true, - "value": "content" + { + "type": "SYMBOL", + "name": "_list_star" + }, + { + "type": "SYMBOL", + "name": "_list_task" + }, + { + "type": "SYMBOL", + "name": "_list_definition" + }, + { + "type": "SYMBOL", + "name": "_list_decimal_period" + }, + { + "type": "SYMBOL", + "name": "_list_decimal_paren" + }, + { + "type": "SYMBOL", + "name": "_list_decimal_parens" + }, + { + "type": "SYMBOL", + "name": "_list_lower_alpha_period" + }, + { + "type": "SYMBOL", + "name": "_list_lower_alpha_paren" + }, + { + "type": "SYMBOL", + "name": "_list_lower_alpha_parens" + }, + { + "type": "SYMBOL", + "name": "_list_upper_alpha_period" + }, + { + "type": "SYMBOL", + "name": "_list_upper_alpha_paren" + }, + { + "type": "SYMBOL", + "name": "_list_upper_alpha_parens" + }, + { + "type": "SYMBOL", + "name": "_list_lower_roman_period" + }, + { + "type": "SYMBOL", + "name": "_list_lower_roman_paren" + }, + { + "type": "SYMBOL", + "name": "_list_lower_roman_parens" + }, + { + "type": "SYMBOL", + "name": "_list_upper_roman_period" + }, + { + "type": "SYMBOL", + "name": "_list_upper_roman_paren" + }, + { + "type": "SYMBOL", + "name": "_list_upper_roman_parens" + } + ] + } + }, + "_list_dash": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_list_item_dash" + }, + "named": true, + "value": "list_item" + } }, { "type": "SYMBOL", "name": "_block_close" - }, + } + ] + }, + "_list_item_dash": { + "type": "SEQ", + "members": [ { "type": "CHOICE", "members": [ { "type": "SYMBOL", - "name": "_eof_or_newline" + "name": "_block_quote_prefix" }, { "type": "BLANK" } ] - } - ] - }, - "_heading2_content": { - "type": "SEQ", - "members": [ + }, { "type": "SYMBOL", - "name": "_inline_line" + "name": "list_marker_dash" }, { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_heading2_continuation" - }, - "named": true, - "value": "marker" - }, - { - "type": "SYMBOL", - "name": "_inline_line" - } - ] - } + "type": "SYMBOL", + "name": "list_item_content" } ] }, - "heading3": { + "_list_plus": { "type": "SEQ", "members": [ { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_heading3_begin" - }, - "named": true, - "value": "marker" - }, - { - "type": "ALIAS", + "type": "REPEAT1", "content": { - "type": "SYMBOL", - "name": "_heading5_content" - }, - "named": true, - "value": "content" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_list_item_plus" + }, + "named": true, + "value": "list_item" + } }, { "type": "SYMBOL", "name": "_block_close" - }, + } + ] + }, + "_list_item_plus": { + "type": "SEQ", + "members": [ { "type": "CHOICE", "members": [ { "type": "SYMBOL", - "name": "_eof_or_newline" + "name": "_block_quote_prefix" }, { "type": "BLANK" } ] - } - ] - }, - "_heading3_content": { - "type": "SEQ", - "members": [ + }, { "type": "SYMBOL", - "name": "_inline_line" + "name": "list_marker_plus" }, { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_heading3_continuation" - }, - "named": true, - "value": "marker" - }, - { - "type": "SYMBOL", - "name": "_inline_line" - } - ] - } + "type": "SYMBOL", + "name": "list_item_content" } ] }, - "heading4": { + "_list_star": { "type": "SEQ", "members": [ { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_heading4_begin" - }, - "named": true, - "value": "marker" - }, - { - "type": "ALIAS", + "type": "REPEAT1", "content": { - "type": "SYMBOL", - "name": "_heading5_content" - }, - "named": true, - "value": "content" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_list_item_star" + }, + "named": true, + "value": "list_item" + } }, { "type": "SYMBOL", "name": "_block_close" - }, - { + } + ] + }, + "_list_item_star": { + "type": "SEQ", + "members": [ + { "type": "CHOICE", "members": [ { "type": "SYMBOL", - "name": "_eof_or_newline" + "name": "_block_quote_prefix" }, { "type": "BLANK" } ] + }, + { + "type": "SYMBOL", + "name": "list_marker_star" + }, + { + "type": "SYMBOL", + "name": "list_item_content" } ] }, - "_heading4_content": { + "_list_task": { "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "_inline_line" - }, - { - "type": "REPEAT", + "type": "REPEAT1", "content": { - "type": "SEQ", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_heading4_continuation" - }, - "named": true, - "value": "marker" - }, - { - "type": "SYMBOL", - "name": "_inline_line" - } - ] + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_list_item_task" + }, + "named": true, + "value": "list_item" } + }, + { + "type": "SYMBOL", + "name": "_block_close" } ] }, - "heading5": { + "_list_item_task": { "type": "SEQ", "members": [ { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_heading5_begin" - }, - "named": true, - "value": "marker" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_block_quote_prefix" + }, + { + "type": "BLANK" + } + ] }, { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_heading5_content" - }, - "named": true, - "value": "content" + "type": "SYMBOL", + "name": "list_marker_task" }, { "type": "SYMBOL", - "name": "_block_close" + "name": "list_item_content" + } + ] + }, + "list_marker_task": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_list_marker_task_begin" }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", - "name": "_eof_or_newline" + "name": "checked" }, { - "type": "BLANK" + "type": "SYMBOL", + "name": "unchecked" + } + ] + }, + { + "type": "SYMBOL", + "name": "_whitespace1" + } + ] + }, + "checked": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "[" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "x" + }, + { + "type": "STRING", + "value": "X" } ] + }, + { + "type": "STRING", + "value": "]" } ] }, - "_heading5_content": { + "unchecked": { "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "_inline_line" + "type": "STRING", + "value": "[" }, { - "type": "REPEAT", + "type": "STRING", + "value": " " + }, + { + "type": "STRING", + "value": "]" + } + ] + }, + "_list_definition": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", "content": { - "type": "SEQ", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_heading5_continuation" - }, - "named": true, - "value": "marker" - }, - { - "type": "SYMBOL", - "name": "_inline_line" - } - ] + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_list_item_definition" + }, + "named": true, + "value": "list_item" } + }, + { + "type": "SYMBOL", + "name": "_block_close" } ] }, - "heading6": { + "_list_item_definition": { "type": "SEQ", "members": [ { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_heading6_begin" - }, - "named": true, - "value": "marker" + "type": "SYMBOL", + "name": "list_marker_definition" }, { "type": "ALIAS", "content": { "type": "SYMBOL", - "name": "_heading6_content" + "name": "_paragraph_content" }, "named": true, - "value": "content" - }, - { - "type": "SYMBOL", - "name": "_block_close" + "value": "term" }, { "type": "CHOICE", @@ -588,132 +637,59 @@ "name": "_eof_or_newline" }, { - "type": "BLANK" + "type": "SYMBOL", + "name": "_close_paragraph" } ] - } - ] - }, - "_heading6_content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_inline_line" }, { - "type": "REPEAT", + "type": "ALIAS", "content": { - "type": "SEQ", + "type": "CHOICE", "members": [ { - "type": "ALIAS", + "type": "REPEAT", "content": { - "type": "SYMBOL", - "name": "_heading6_continuation" - }, - "named": true, - "value": "marker" + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_block_quote_prefix" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "_list_item_continuation" + }, + { + "type": "SYMBOL", + "name": "_block_with_heading" + } + ] + } }, { - "type": "SYMBOL", - "name": "_inline_line" + "type": "BLANK" } ] - } + }, + "named": true, + "value": "definition" + }, + { + "type": "SYMBOL", + "name": "_list_item_end" } ] }, - "list": { - "type": "PREC_LEFT", - "value": 0, - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_list_dash" - }, - { - "type": "SYMBOL", - "name": "_list_plus" - }, - { - "type": "SYMBOL", - "name": "_list_star" - }, - { - "type": "SYMBOL", - "name": "_list_task" - }, - { - "type": "SYMBOL", - "name": "_list_definition" - }, - { - "type": "SYMBOL", - "name": "_list_decimal_period" - }, - { - "type": "SYMBOL", - "name": "_list_decimal_paren" - }, - { - "type": "SYMBOL", - "name": "_list_decimal_parens" - }, - { - "type": "SYMBOL", - "name": "_list_lower_alpha_period" - }, - { - "type": "SYMBOL", - "name": "_list_lower_alpha_paren" - }, - { - "type": "SYMBOL", - "name": "_list_lower_alpha_parens" - }, - { - "type": "SYMBOL", - "name": "_list_upper_alpha_period" - }, - { - "type": "SYMBOL", - "name": "_list_upper_alpha_paren" - }, - { - "type": "SYMBOL", - "name": "_list_upper_alpha_parens" - }, - { - "type": "SYMBOL", - "name": "_list_lower_roman_period" - }, - { - "type": "SYMBOL", - "name": "_list_lower_roman_paren" - }, - { - "type": "SYMBOL", - "name": "_list_lower_roman_parens" - }, - { - "type": "SYMBOL", - "name": "_list_upper_roman_period" - }, - { - "type": "SYMBOL", - "name": "_list_upper_roman_paren" - }, - { - "type": "SYMBOL", - "name": "_list_upper_roman_parens" - } - ] - } - }, - "_list_dash": { + "_list_decimal_period": { "type": "SEQ", "members": [ { @@ -722,7 +698,7 @@ "type": "ALIAS", "content": { "type": "SYMBOL", - "name": "_list_item_dash" + "name": "_list_item_decimal_period" }, "named": true, "value": "list_item" @@ -734,24 +710,12 @@ } ] }, - "_list_item_dash": { + "_list_item_decimal_period": { "type": "SEQ", "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_block_quote_prefix" - }, - { - "type": "BLANK" - } - ] - }, { "type": "SYMBOL", - "name": "list_marker_dash" + "name": "list_marker_decimal_period" }, { "type": "SYMBOL", @@ -759,7 +723,7 @@ } ] }, - "_list_plus": { + "_list_decimal_paren": { "type": "SEQ", "members": [ { @@ -768,7 +732,7 @@ "type": "ALIAS", "content": { "type": "SYMBOL", - "name": "_list_item_plus" + "name": "_list_item_decimal_paren" }, "named": true, "value": "list_item" @@ -780,24 +744,12 @@ } ] }, - "_list_item_plus": { + "_list_item_decimal_paren": { "type": "SEQ", "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_block_quote_prefix" - }, - { - "type": "BLANK" - } - ] - }, { "type": "SYMBOL", - "name": "list_marker_plus" + "name": "list_marker_decimal_paren" }, { "type": "SYMBOL", @@ -805,7 +757,7 @@ } ] }, - "_list_star": { + "_list_decimal_parens": { "type": "SEQ", "members": [ { @@ -814,7 +766,7 @@ "type": "ALIAS", "content": { "type": "SYMBOL", - "name": "_list_item_star" + "name": "_list_item_decimal_parens" }, "named": true, "value": "list_item" @@ -826,24 +778,12 @@ } ] }, - "_list_item_star": { + "_list_item_decimal_parens": { "type": "SEQ", "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_block_quote_prefix" - }, - { - "type": "BLANK" - } - ] - }, { "type": "SYMBOL", - "name": "list_marker_star" + "name": "list_marker_decimal_parens" }, { "type": "SYMBOL", @@ -851,7 +791,7 @@ } ] }, - "_list_task": { + "_list_lower_alpha_period": { "type": "SEQ", "members": [ { @@ -860,7 +800,7 @@ "type": "ALIAS", "content": { "type": "SYMBOL", - "name": "_list_item_task" + "name": "_list_item_lower_alpha_period" }, "named": true, "value": "list_item" @@ -872,24 +812,12 @@ } ] }, - "_list_item_task": { + "_list_item_lower_alpha_period": { "type": "SEQ", "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_block_quote_prefix" - }, - { - "type": "BLANK" - } - ] - }, { "type": "SYMBOL", - "name": "list_marker_task" + "name": "list_marker_lower_alpha_period" }, { "type": "SYMBOL", @@ -897,76 +825,75 @@ } ] }, - "list_marker_task": { + "_list_lower_alpha_paren": { "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "_list_marker_task_begin" - }, - { - "type": "CHOICE", - "members": [ - { + "type": "REPEAT1", + "content": { + "type": "ALIAS", + "content": { "type": "SYMBOL", - "name": "checked" + "name": "_list_item_lower_alpha_paren" }, - { - "type": "SYMBOL", - "name": "unchecked" - } - ] + "named": true, + "value": "list_item" + } }, { "type": "SYMBOL", - "name": "_whitespace1" + "name": "_block_close" } ] }, - "checked": { + "_list_item_lower_alpha_paren": { "type": "SEQ", "members": [ { - "type": "STRING", - "value": "[" + "type": "SYMBOL", + "name": "list_marker_lower_alpha_paren" }, { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "x" + "type": "SYMBOL", + "name": "list_item_content" + } + ] + }, + "_list_lower_alpha_parens": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_list_item_lower_alpha_parens" }, - { - "type": "STRING", - "value": "X" - } - ] + "named": true, + "value": "list_item" + } }, { - "type": "STRING", - "value": "]" + "type": "SYMBOL", + "name": "_block_close" } ] }, - "unchecked": { + "_list_item_lower_alpha_parens": { "type": "SEQ", "members": [ { - "type": "STRING", - "value": "[" - }, - { - "type": "STRING", - "value": " " + "type": "SYMBOL", + "name": "list_marker_lower_alpha_parens" }, { - "type": "STRING", - "value": "]" + "type": "SYMBOL", + "name": "list_item_content" } ] }, - "_list_definition": { + "_list_upper_alpha_period": { "type": "SEQ", "members": [ { @@ -975,7 +902,7 @@ "type": "ALIAS", "content": { "type": "SYMBOL", - "name": "_list_item_definition" + "name": "_list_item_upper_alpha_period" }, "named": true, "value": "list_item" @@ -987,92 +914,29 @@ } ] }, - "_list_item_definition": { + "_list_item_upper_alpha_period": { "type": "SEQ", "members": [ { "type": "SYMBOL", - "name": "list_marker_definition" + "name": "list_marker_upper_alpha_period" }, { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_paragraph_content" - }, - "named": true, - "value": "term" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_eof_or_newline" - }, - { - "type": "SYMBOL", - "name": "_close_paragraph" - } - ] - }, - { - "type": "ALIAS", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_block_quote_prefix" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_list_item_continuation" - }, - { - "type": "SYMBOL", - "name": "_block_with_heading" - } - ] - } - }, - { - "type": "BLANK" - } - ] - }, - "named": true, - "value": "definition" - }, - { - "type": "SYMBOL", - "name": "_list_item_end" - } - ] - }, - "_list_decimal_period": { - "type": "SEQ", - "members": [ + "type": "SYMBOL", + "name": "list_item_content" + } + ] + }, + "_list_upper_alpha_paren": { + "type": "SEQ", + "members": [ { "type": "REPEAT1", "content": { "type": "ALIAS", "content": { "type": "SYMBOL", - "name": "_list_item_decimal_period" + "name": "_list_item_upper_alpha_paren" }, "named": true, "value": "list_item" @@ -1084,12 +948,12 @@ } ] }, - "_list_item_decimal_period": { + "_list_item_upper_alpha_paren": { "type": "SEQ", "members": [ { "type": "SYMBOL", - "name": "list_marker_decimal_period" + "name": "list_marker_upper_alpha_paren" }, { "type": "SYMBOL", @@ -1097,7 +961,7 @@ } ] }, - "_list_decimal_paren": { + "_list_upper_alpha_parens": { "type": "SEQ", "members": [ { @@ -1106,7 +970,7 @@ "type": "ALIAS", "content": { "type": "SYMBOL", - "name": "_list_item_decimal_paren" + "name": "_list_item_upper_alpha_parens" }, "named": true, "value": "list_item" @@ -1118,12 +982,12 @@ } ] }, - "_list_item_decimal_paren": { + "_list_item_upper_alpha_parens": { "type": "SEQ", "members": [ { "type": "SYMBOL", - "name": "list_marker_decimal_paren" + "name": "list_marker_upper_alpha_parens" }, { "type": "SYMBOL", @@ -1131,7 +995,7 @@ } ] }, - "_list_decimal_parens": { + "_list_lower_roman_period": { "type": "SEQ", "members": [ { @@ -1140,7 +1004,7 @@ "type": "ALIAS", "content": { "type": "SYMBOL", - "name": "_list_item_decimal_parens" + "name": "_list_item_lower_roman_period" }, "named": true, "value": "list_item" @@ -1152,12 +1016,12 @@ } ] }, - "_list_item_decimal_parens": { + "_list_item_lower_roman_period": { "type": "SEQ", "members": [ { "type": "SYMBOL", - "name": "list_marker_decimal_parens" + "name": "list_marker_lower_roman_period" }, { "type": "SYMBOL", @@ -1165,7 +1029,7 @@ } ] }, - "_list_lower_alpha_period": { + "_list_lower_roman_paren": { "type": "SEQ", "members": [ { @@ -1174,7 +1038,7 @@ "type": "ALIAS", "content": { "type": "SYMBOL", - "name": "_list_item_lower_alpha_period" + "name": "_list_item_lower_roman_paren" }, "named": true, "value": "list_item" @@ -1186,12 +1050,12 @@ } ] }, - "_list_item_lower_alpha_period": { + "_list_item_lower_roman_paren": { "type": "SEQ", "members": [ { "type": "SYMBOL", - "name": "list_marker_lower_alpha_period" + "name": "list_marker_lower_roman_paren" }, { "type": "SYMBOL", @@ -1199,7 +1063,7 @@ } ] }, - "_list_lower_alpha_paren": { + "_list_lower_roman_parens": { "type": "SEQ", "members": [ { @@ -1208,7 +1072,7 @@ "type": "ALIAS", "content": { "type": "SYMBOL", - "name": "_list_item_lower_alpha_paren" + "name": "_list_item_lower_roman_parens" }, "named": true, "value": "list_item" @@ -1220,12 +1084,12 @@ } ] }, - "_list_item_lower_alpha_paren": { + "_list_item_lower_roman_parens": { "type": "SEQ", "members": [ { "type": "SYMBOL", - "name": "list_marker_lower_alpha_paren" + "name": "list_marker_lower_roman_parens" }, { "type": "SYMBOL", @@ -1233,7 +1097,7 @@ } ] }, - "_list_lower_alpha_parens": { + "_list_upper_roman_period": { "type": "SEQ", "members": [ { @@ -1242,7 +1106,7 @@ "type": "ALIAS", "content": { "type": "SYMBOL", - "name": "_list_item_lower_alpha_parens" + "name": "_list_item_upper_roman_period" }, "named": true, "value": "list_item" @@ -1254,12 +1118,12 @@ } ] }, - "_list_item_lower_alpha_parens": { + "_list_item_upper_roman_period": { "type": "SEQ", "members": [ { "type": "SYMBOL", - "name": "list_marker_lower_alpha_parens" + "name": "list_marker_upper_roman_period" }, { "type": "SYMBOL", @@ -1267,7 +1131,7 @@ } ] }, - "_list_upper_alpha_period": { + "_list_upper_roman_paren": { "type": "SEQ", "members": [ { @@ -1276,7 +1140,7 @@ "type": "ALIAS", "content": { "type": "SYMBOL", - "name": "_list_item_upper_alpha_period" + "name": "_list_item_upper_roman_paren" }, "named": true, "value": "list_item" @@ -1288,12 +1152,12 @@ } ] }, - "_list_item_upper_alpha_period": { + "_list_item_upper_roman_paren": { "type": "SEQ", "members": [ { "type": "SYMBOL", - "name": "list_marker_upper_alpha_period" + "name": "list_marker_upper_roman_paren" }, { "type": "SYMBOL", @@ -1301,7 +1165,7 @@ } ] }, - "_list_upper_alpha_paren": { + "_list_upper_roman_parens": { "type": "SEQ", "members": [ { @@ -1310,7 +1174,7 @@ "type": "ALIAS", "content": { "type": "SYMBOL", - "name": "_list_item_upper_alpha_paren" + "name": "_list_item_upper_roman_parens" }, "named": true, "value": "list_item" @@ -1322,12 +1186,12 @@ } ] }, - "_list_item_upper_alpha_paren": { + "_list_item_upper_roman_parens": { "type": "SEQ", "members": [ { "type": "SYMBOL", - "name": "list_marker_upper_alpha_paren" + "name": "list_marker_upper_roman_parens" }, { "type": "SYMBOL", @@ -1335,2043 +1199,528 @@ } ] }, - "_list_upper_alpha_parens": { + "list_item_content": { "type": "SEQ", "members": [ { - "type": "REPEAT1", - "content": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_list_item_upper_alpha_parens" + "type": "SYMBOL", + "name": "_block_with_heading" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_block_quote_prefix" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "_list_item_continuation" + }, + { + "type": "SYMBOL", + "name": "_block_with_heading" + } + ] + } }, - "named": true, - "value": "list_item" - } + { + "type": "BLANK" + } + ] }, { "type": "SYMBOL", - "name": "_block_close" + "name": "_list_item_end" } ] }, - "_list_item_upper_alpha_parens": { - "type": "SEQ", + "table": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "_table_content" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_newline" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "table_caption" + }, + { + "type": "BLANK" + } + ] + } + ] + } + }, + "_table_content": { + "type": "CHOICE", "members": [ { "type": "SYMBOL", - "name": "list_marker_upper_alpha_parens" + "name": "table_separator" }, { - "type": "SYMBOL", - "name": "list_item_content" - } - ] - }, - "_list_lower_roman_period": { - "type": "SEQ", - "members": [ - { - "type": "REPEAT1", - "content": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_list_item_lower_roman_period" + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "table_row" + }, + "named": true, + "value": "table_header" }, - "named": true, - "value": "list_item" - } + { + "type": "SYMBOL", + "name": "table_separator" + } + ] }, { "type": "SYMBOL", - "name": "_block_close" + "name": "table_row" } ] }, - "_list_item_lower_roman_period": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "list_marker_lower_roman_period" - }, - { - "type": "SYMBOL", - "name": "list_item_content" - } - ] - }, - "_list_lower_roman_paren": { - "type": "SEQ", - "members": [ - { - "type": "REPEAT1", - "content": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_list_item_lower_roman_paren" - }, - "named": true, - "value": "list_item" - } - }, - { - "type": "SYMBOL", - "name": "_block_close" - } - ] - }, - "_list_item_lower_roman_paren": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "list_marker_lower_roman_paren" - }, - { - "type": "SYMBOL", - "name": "list_item_content" - } - ] - }, - "_list_lower_roman_parens": { - "type": "SEQ", - "members": [ - { - "type": "REPEAT1", - "content": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_list_item_lower_roman_parens" - }, - "named": true, - "value": "list_item" - } - }, - { - "type": "SYMBOL", - "name": "_block_close" - } - ] - }, - "_list_item_lower_roman_parens": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "list_marker_lower_roman_parens" - }, - { - "type": "SYMBOL", - "name": "list_item_content" - } - ] - }, - "_list_upper_roman_period": { - "type": "SEQ", - "members": [ - { - "type": "REPEAT1", - "content": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_list_item_upper_roman_period" - }, - "named": true, - "value": "list_item" - } - }, - { - "type": "SYMBOL", - "name": "_block_close" - } - ] - }, - "_list_item_upper_roman_period": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "list_marker_upper_roman_period" - }, - { - "type": "SYMBOL", - "name": "list_item_content" - } - ] - }, - "_list_upper_roman_paren": { - "type": "SEQ", - "members": [ - { - "type": "REPEAT1", - "content": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_list_item_upper_roman_paren" - }, - "named": true, - "value": "list_item" - } - }, - { - "type": "SYMBOL", - "name": "_block_close" - } - ] - }, - "_list_item_upper_roman_paren": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "list_marker_upper_roman_paren" - }, - { - "type": "SYMBOL", - "name": "list_item_content" - } - ] - }, - "_list_upper_roman_parens": { - "type": "SEQ", - "members": [ - { - "type": "REPEAT1", - "content": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_list_item_upper_roman_parens" - }, - "named": true, - "value": "list_item" - } - }, - { - "type": "SYMBOL", - "name": "_block_close" - } - ] - }, - "_list_item_upper_roman_parens": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "list_marker_upper_roman_parens" - }, - { - "type": "SYMBOL", - "name": "list_item_content" - } - ] - }, - "list_item_content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_block_with_heading" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_block_quote_prefix" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_list_item_continuation" - }, - { - "type": "SYMBOL", - "name": "_block_with_heading" - } - ] - } - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_list_item_end" - } - ] - }, - "table": { + "table_separator": { "type": "PREC_RIGHT", "value": 0, "content": { "type": "SEQ", "members": [ - { - "type": "REPEAT1", - "content": { - "type": "SYMBOL", - "name": "_table_content" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_newline" - }, - { - "type": "BLANK" - } - ] - }, { "type": "CHOICE", "members": [ - { - "type": "SYMBOL", - "name": "table_caption" - }, - { - "type": "BLANK" - } - ] - } - ] - } - }, - "_table_content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "table_separator" - }, - { - "type": "SEQ", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "table_row" - }, - "named": true, - "value": "table_header" - }, - { - "type": "SYMBOL", - "name": "table_separator" - } - ] - }, - { - "type": "SYMBOL", - "name": "table_row" - } - ] - }, - "table_separator": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_block_quote_prefix" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "|" - }, - { - "type": "SYMBOL", - "name": "table_cell_alignment" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "|" - }, - { - "type": "SYMBOL", - "name": "table_cell_alignment" - } - ] - } - }, - { - "type": "STRING", - "value": "|" - }, - { - "type": "SYMBOL", - "name": "_newline" - } - ] - } - }, - "table_row": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_block_quote_prefix" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "|" - }, - { - "type": "SYMBOL", - "name": "table_cell" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "|" - }, - { - "type": "SYMBOL", - "name": "table_cell" - } - ] - } - }, - { - "type": "STRING", - "value": "|" - }, - { - "type": "SYMBOL", - "name": "_newline" - } - ] - } - }, - "table_cell_alignment": { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "PREC", - "value": 100, - "content": { - "type": "PATTERN", - "value": ":?-+:?" - } - } - }, - "table_cell": { - "type": "PREC_LEFT", - "value": 0, - "content": { - "type": "REPEAT1", - "content": { - "type": "SYMBOL", - "name": "_inline_element_with_whitespace_without_newline" - } - } - }, - "table_caption": { - "type": "SEQ", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_table_caption_begin" - }, - "named": true, - "value": "marker" - }, - { - "type": "ALIAS", - "content": { - "type": "REPEAT1", - "content": { - "type": "SYMBOL", - "name": "_inline_line" - } - }, - "named": true, - "value": "content" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_table_caption_end" - }, - { - "type": "STRING", - "value": "\u0000" - } - ] - } - ] - }, - "footnote": { - "type": "SEQ", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_footnote_begin" - }, - "named": true, - "value": "footnote_marker_begin" - }, - { - "type": "SYMBOL", - "name": "reference_label" - }, - { - "type": "ALIAS", - "content": { - "type": "STRING", - "value": "]:" - }, - "named": true, - "value": "footnote_marker_end" - }, - { - "type": "SYMBOL", - "name": "footnote_content" - }, - { - "type": "SYMBOL", - "name": "_footnote_end" - } - ] - }, - "footnote_content": { - "type": "REPEAT1", - "content": { - "type": "SYMBOL", - "name": "_block_with_heading" - } - }, - "div": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "div_marker_begin" - }, - { - "type": "SYMBOL", - "name": "_newline" - }, - { - "type": "ALIAS", - "content": { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_block_with_heading" - } - }, - "named": true, - "value": "content" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_block_quote_prefix" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_block_close" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_div_end" - }, - "named": true, - "value": "div_marker_end" - }, - { - "type": "SYMBOL", - "name": "_newline" - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "div_marker_begin": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_div_begin" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_whitespace1" - }, - { - "type": "SYMBOL", - "name": "class_name" - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "class_name": { - "type": "SYMBOL", - "name": "_id" - }, - "code_block": { - "type": "SEQ", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_code_block_begin" - }, - "named": true, - "value": "code_block_marker_begin" - }, - { - "type": "SYMBOL", - "name": "_whitespace" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "language" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_newline" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "code" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_block_close" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_code_block_end" - }, - "named": true, - "value": "code_block_marker_end" - }, - { - "type": "SYMBOL", - "name": "_newline" - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "raw_block": { - "type": "SEQ", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_code_block_begin" - }, - "named": true, - "value": "raw_block_marker_begin" - }, - { - "type": "SYMBOL", - "name": "_whitespace" - }, - { - "type": "SYMBOL", - "name": "raw_block_info" - }, - { - "type": "SYMBOL", - "name": "_newline" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "code" - }, - "named": true, - "value": "content" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_block_close" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_code_block_end" - }, - "named": true, - "value": "raw_block_marker_end" - }, - { - "type": "SYMBOL", - "name": "_newline" - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "raw_block_info": { - "type": "SEQ", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "STRING", - "value": "=" - }, - "named": true, - "value": "language_marker" - }, - { - "type": "SYMBOL", - "name": "language" - } - ] - }, - "language": { - "type": "PATTERN", - "value": "[^\\n\\t \\{\\}=]+" - }, - "code": { - "type": "PREC_LEFT", - "value": 0, - "content": { - "type": "REPEAT1", - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_block_quote_prefix" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_line" - } - ] - } - } - }, - "_line": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[^\\n]*" - }, - { - "type": "SYMBOL", - "name": "_newline" - } - ] - }, - "thematic_break": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_thematic_break_dash" - }, - { - "type": "SYMBOL", - "name": "_thematic_break_star" - } - ] - }, - "block_quote": { - "type": "SEQ", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_block_quote_begin" - }, - "named": true, - "value": "block_quote_marker" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_block_quote_content" - }, - "named": true, - "value": "content" - }, - { - "type": "SYMBOL", - "name": "_block_close" - } - ] - }, - "_block_quote_content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_heading" - }, - { - "type": "SYMBOL", - "name": "_block_element" - } - ] - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_block_quote_prefix" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_block_element" - }, - { - "type": "BLANK" - } - ] - } - ] - } - } - ] - }, - "_block_quote_prefix": { - "type": "PREC_LEFT", - "value": 0, - "content": { - "type": "REPEAT1", - "content": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_block_quote_continuation" - }, - "named": true, - "value": "block_quote_marker" - } - } - }, - "link_reference_definition": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "[" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_inline" - }, - "named": true, - "value": "link_label" - }, - { - "type": "STRING", - "value": "]" - }, - { - "type": "STRING", - "value": ":" - }, - { - "type": "SYMBOL", - "name": "_whitespace1" - }, - { - "type": "SYMBOL", - "name": "link_destination" - }, - { - "type": "SYMBOL", - "name": "_one_or_two_newlines" - } - ] - }, - "link_destination": { - "type": "PATTERN", - "value": "\\S+" - }, - "block_attribute": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "{" - }, - { - "type": "ALIAS", - "content": { - "type": "REPEAT", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "class" - }, - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "SYMBOL", - "name": "key_value" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_comment_no_newline" - }, - "named": true, - "value": "comment" - }, - { - "type": "SYMBOL", - "name": "_whitespace1" - } - ] - } - }, - "named": true, - "value": "args" - }, - { - "type": "STRING", - "value": "}" - }, - { - "type": "SYMBOL", - "name": "_newline" - } - ] - }, - "class": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "." - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "class_name" - }, - "named": false, - "value": "class" - } - ] - }, - "identifier": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "#" - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "PATTERN", - "value": "[^\\s\\}]+" - } - } - ] - } - }, - "key_value": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "key" - }, - { - "type": "STRING", - "value": "=" - }, - { - "type": "SYMBOL", - "name": "value" - } - ] - }, - "key": { - "type": "SYMBOL", - "name": "_id" - }, - "value": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "\"" - }, - { - "type": "PATTERN", - "value": "[^\"\\n]+" - }, - { - "type": "STRING", - "value": "\"" - } - ] - }, - { - "type": "PATTERN", - "value": "\\w+" - } - ] - }, - "_paragraph": { - "type": "SEQ", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_paragraph_content" - }, - "named": true, - "value": "paragraph" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_eof_or_newline" - }, - { - "type": "SYMBOL", - "name": "_close_paragraph" - } - ] - } - ] - }, - "_paragraph_content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_inline" - }, - { - "type": "SYMBOL", - "name": "_eof_or_newline" - } - ] - }, - "_one_or_two_newlines": { - "type": "PREC_LEFT", - "value": 0, - "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "\u0000" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_newline" - }, - { - "type": "SYMBOL", - "name": "_newline" - } - ] - }, - { - "type": "SYMBOL", - "name": "_newline" - } - ] - } - }, - "_whitespace": { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "PATTERN", - "value": "[ \\t]*" - } - }, - "_whitespace1": { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "PATTERN", - "value": "[ \\t]+" - } - }, - "_inline": { - "type": "PREC_LEFT", - "value": 0, - "content": { - "type": "REPEAT1", - "content": { - "type": "SYMBOL", - "name": "_inline_element_with_whitespace" - } - } - }, - "_inline_element_with_whitespace": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_inline_element_with_newline" - }, - { - "type": "SYMBOL", - "name": "_whitespace1" - } - ] - }, - "_inline_element_with_whitespace_without_newline": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_inline_core_element" - }, - { - "type": "SYMBOL", - "name": "_whitespace1" - } - ] - }, - "_inline_element_without_whitespace": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_inline_element_with_newline" - }, - { - "type": "SYMBOL", - "name": "_whitespace1" - } - ] - }, - "_inline_element_with_newline": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_inline_core_element" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_newline_inline" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_block_quote_prefix" - }, - { - "type": "BLANK" - } - ] - } - ] - } - ] - }, - "_inline_core_element": { - "type": "PREC_LEFT", - "value": 0, - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_hard_line_break" - }, - { - "type": "SYMBOL", - "name": "_smart_punctuation" - }, - { - "type": "SYMBOL", - "name": "backslash_escape" - }, - { - "type": "SYMBOL", - "name": "autolink" - }, - { - "type": "SYMBOL", - "name": "emphasis" - }, - { - "type": "SYMBOL", - "name": "strong" - }, - { - "type": "SYMBOL", - "name": "highlighted" - }, - { - "type": "SYMBOL", - "name": "superscript" - }, - { - "type": "SYMBOL", - "name": "subscript" - }, - { - "type": "SYMBOL", - "name": "insert" - }, - { - "type": "SYMBOL", - "name": "delete" - }, - { - "type": "SYMBOL", - "name": "verbatim" - }, - { - "type": "SYMBOL", - "name": "math" - }, - { - "type": "SYMBOL", - "name": "raw_inline" - }, - { - "type": "SYMBOL", - "name": "footnote_reference" - }, - { - "type": "SYMBOL", - "name": "symbol" - }, - { - "type": "SYMBOL", - "name": "span" - }, - { - "type": "SYMBOL", - "name": "_image" - }, - { - "type": "SYMBOL", - "name": "_link" - }, - { - "type": "SYMBOL", - "name": "_comment_with_spaces" - }, - { - "type": "SYMBOL", - "name": "_todo_highlights" - }, - { - "type": "SYMBOL", - "name": "_symbol_fallback" - }, - { - "type": "SYMBOL", - "name": "_text" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "inline_attribute" - }, - { - "type": "BLANK" - } - ] + { + "type": "SYMBOL", + "name": "_block_quote_prefix" + }, + { + "type": "BLANK" } ] }, + { + "type": "STRING", + "value": "|" + }, + { + "type": "SYMBOL", + "name": "table_cell_alignment" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "|" + }, + { + "type": "SYMBOL", + "name": "table_cell_alignment" + } + ] + } + }, + { + "type": "STRING", + "value": "|" + }, { "type": "SYMBOL", - "name": "span" + "name": "_newline" } ] } }, - "_inline_no_surrounding_spaces": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_inline_element_with_newline" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_inline_element_with_newline" - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_inline_element_with_whitespace" - } - }, - { - "type": "SYMBOL", - "name": "_inline_element_with_newline" - } - ] - } - ] - }, - "_inline_line": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_inline" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_newline" - }, - { - "type": "STRING", - "value": "\u0000" - } - ] - } - ] - }, - "_hard_line_break": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "hard_line_break" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_block_quote_prefix" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "hard_line_break": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "\\" - }, - { - "type": "SYMBOL", - "name": "_newline" - } - ] - }, - "_smart_punctuation": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "quotation_marks" - }, - { - "type": "SYMBOL", - "name": "ellipsis" - }, - { - "type": "SYMBOL", - "name": "em_dash" - }, - { - "type": "SYMBOL", - "name": "en_dash" - } - ] - }, - "quotation_marks": { - "type": "TOKEN", + "table_row": { + "type": "PREC_RIGHT", + "value": 0, "content": { - "type": "CHOICE", + "type": "SEQ", "members": [ { - "type": "STRING", - "value": "{\"" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_block_quote_prefix" + }, + { + "type": "BLANK" + } + ] }, { "type": "STRING", - "value": "\"}" + "value": "|" }, { - "type": "STRING", - "value": "{'" + "type": "SYMBOL", + "name": "table_cell" }, { - "type": "STRING", - "value": "'}" + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "|" + }, + { + "type": "SYMBOL", + "name": "table_cell" + } + ] + } }, { "type": "STRING", - "value": "\\\"" + "value": "|" }, { - "type": "STRING", - "value": "\\'" + "type": "SYMBOL", + "name": "_newline" } ] } }, - "ellipsis": { - "type": "STRING", - "value": "..." - }, - "em_dash": { - "type": "STRING", - "value": "---" - }, - "en_dash": { - "type": "STRING", - "value": "--" - }, - "backslash_escape": { - "type": "PATTERN", - "value": "\\\\[^\\\\\\r\\n]" - }, - "autolink": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "<" - }, - { + "table_cell_alignment": { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PREC", + "value": 100, + "content": { "type": "PATTERN", - "value": "[^>\\s]+" - }, - { - "type": "STRING", - "value": ">" + "value": "\\s*:?-+:?\\s*" } - ] + } + }, + "table_cell": { + "type": "SYMBOL", + "name": "_inline" }, - "emphasis": { + "table_caption": { "type": "SEQ", "members": [ - { - "type": "SYMBOL", - "name": "emphasis_begin" - }, { "type": "ALIAS", "content": { "type": "SYMBOL", - "name": "_inline_no_surrounding_spaces" - }, - "named": true, - "value": "content" - }, - { - "type": "SYMBOL", - "name": "emphasis_end" - } - ] - }, - "emphasis_begin": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "{_" - }, - { - "type": "REPEAT", - "content": { - "type": "STRING", - "value": " " - } - } - ] - }, - { - "type": "STRING", - "value": "_" - } - ] - }, - "emphasis_end": { - "type": "CHOICE", - "members": [ - { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "REPEAT", - "content": { - "type": "STRING", - "value": " " - } - }, - { - "type": "STRING", - "value": "_}" - } - ] - } - }, - { - "type": "STRING", - "value": "_" - } - ] - }, - "strong": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "strong_begin" + "name": "_table_caption_begin" + }, + "named": true, + "value": "marker" }, { "type": "ALIAS", "content": { - "type": "SYMBOL", - "name": "_inline_no_surrounding_spaces" + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "_inline_line" + } }, "named": true, "value": "content" }, { - "type": "SYMBOL", - "name": "strong_end" - } - ] - }, - "strong_begin": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", + "type": "CHOICE", "members": [ { - "type": "STRING", - "value": "{*" + "type": "SYMBOL", + "name": "_table_caption_end" }, { - "type": "REPEAT", - "content": { - "type": "STRING", - "value": " " - } + "type": "STRING", + "value": "\u0000" } ] - }, - { - "type": "STRING", - "value": "*" - } - ] - }, - "strong_end": { - "type": "CHOICE", - "members": [ - { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "REPEAT", - "content": { - "type": "STRING", - "value": " " - } - }, - { - "type": "STRING", - "value": "*}" - } - ] - } - }, - { - "type": "STRING", - "value": "*" } ] }, - "highlighted": { + "footnote": { "type": "SEQ", "members": [ - { - "type": "STRING", - "value": "{=" - }, { "type": "ALIAS", "content": { "type": "SYMBOL", - "name": "_inline" + "name": "_footnote_begin" }, "named": true, - "value": "content" + "value": "footnote_marker_begin" }, { - "type": "STRING", - "value": "=}" - } - ] - }, - "insert": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "{+" + "type": "SYMBOL", + "name": "reference_label" }, { "type": "ALIAS", "content": { - "type": "SYMBOL", - "name": "_inline" + "type": "STRING", + "value": "]:" }, "named": true, - "value": "content" + "value": "footnote_marker_end" }, { - "type": "STRING", - "value": "+}" + "type": "SYMBOL", + "name": "footnote_content" + }, + { + "type": "SYMBOL", + "name": "_footnote_end" } ] }, - "delete": { + "footnote_content": { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "_block_with_heading" + } + }, + "div": { "type": "SEQ", "members": [ { - "type": "STRING", - "value": "{-" + "type": "SYMBOL", + "name": "div_marker_begin" + }, + { + "type": "SYMBOL", + "name": "_newline" }, { "type": "ALIAS", "content": { - "type": "SYMBOL", - "name": "_inline" + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_block_with_heading" + } }, "named": true, "value": "content" }, - { - "type": "STRING", - "value": "-}" - } - ] - }, - "symbol": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ":" - }, - { - "type": "PATTERN", - "value": "[^:\\s]+" - }, - { - "type": "STRING", - "value": ":" - } - ] - } - }, - "superscript": { - "type": "SEQ", - "members": [ { "type": "CHOICE", "members": [ { - "type": "STRING", - "value": "{^" + "type": "SYMBOL", + "name": "_block_quote_prefix" }, { - "type": "STRING", - "value": "^" + "type": "BLANK" } ] }, { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_inline" - }, - "named": true, - "value": "content" + "type": "SYMBOL", + "name": "_block_close" }, { "type": "CHOICE", "members": [ { - "type": "STRING", - "value": "^}" + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_div_end" + }, + "named": true, + "value": "div_marker_end" + }, + { + "type": "SYMBOL", + "name": "_newline" + } + ] }, { - "type": "STRING", - "value": "^" + "type": "BLANK" } ] } ] }, - "subscript": { + "div_marker_begin": { "type": "SEQ", "members": [ { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "{~" - }, - { - "type": "STRING", - "value": "~" - } - ] - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_inline" - }, - "named": true, - "value": "content" + "type": "SYMBOL", + "name": "_div_begin" }, { "type": "CHOICE", "members": [ { - "type": "STRING", - "value": "~}" + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_whitespace1" + }, + { + "type": "SYMBOL", + "name": "class_name" + } + ] }, { - "type": "STRING", - "value": "~" + "type": "BLANK" } ] } ] }, - "footnote_reference": { + "class_name": { + "type": "SYMBOL", + "name": "_id" + }, + "code_block": { "type": "SEQ", "members": [ { "type": "ALIAS", "content": { - "type": "STRING", - "value": "[^" + "type": "SYMBOL", + "name": "_code_block_begin" }, "named": true, - "value": "footnote_marker_begin" - }, - { - "type": "SYMBOL", - "name": "reference_label" + "value": "code_block_marker_begin" }, - { - "type": "ALIAS", - "content": { - "type": "STRING", - "value": "]" - }, - "named": true, - "value": "footnote_marker_end" - } - ] - }, - "reference_label": { - "type": "SYMBOL", - "name": "_id" - }, - "_id": { - "type": "PATTERN", - "value": "[\\w_-]+" - }, - "_image": { - "type": "CHOICE", - "members": [ { "type": "SYMBOL", - "name": "full_reference_image" + "name": "_whitespace" }, { - "type": "SYMBOL", - "name": "collapsed_reference_image" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "language" + }, + { + "type": "BLANK" + } + ] }, { "type": "SYMBOL", - "name": "inline_image" - } - ] - }, - "full_reference_image": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_image_description" + "name": "_newline" }, { - "type": "SYMBOL", - "name": "_link_label" - } - ] - }, - "collapsed_reference_image": { - "type": "SEQ", - "members": [ + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "code" + }, + { + "type": "BLANK" + } + ] + }, { "type": "SYMBOL", - "name": "_image_description" + "name": "_block_close" }, { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": "[]" - } + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_code_block_end" + }, + "named": true, + "value": "code_block_marker_end" + }, + { + "type": "SYMBOL", + "name": "_newline" + } + ] + }, + { + "type": "BLANK" + } + ] } ] }, - "inline_image": { + "raw_block": { "type": "SEQ", "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_code_block_begin" + }, + "named": true, + "value": "raw_block_marker_begin" + }, { "type": "SYMBOL", - "name": "_image_description" + "name": "_whitespace" }, { "type": "SYMBOL", - "name": "inline_link_destination" - } - ] - }, - "_image_description": { - "type": "SEQ", - "members": [ + "name": "raw_block_info" + }, { - "type": "STRING", - "value": "![" + "type": "SYMBOL", + "name": "_newline" }, { "type": "CHOICE", @@ -3380,259 +1729,260 @@ "type": "ALIAS", "content": { "type": "SYMBOL", - "name": "_inline" + "name": "code" }, "named": true, - "value": "image_description" + "value": "content" }, { "type": "BLANK" } ] }, - { - "type": "STRING", - "value": "]" - } - ] - }, - "_link": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "full_reference_link" - }, { "type": "SYMBOL", - "name": "collapsed_reference_link" + "name": "_block_close" }, { - "type": "SYMBOL", - "name": "inline_link" + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_code_block_end" + }, + "named": true, + "value": "raw_block_marker_end" + }, + { + "type": "SYMBOL", + "name": "_newline" + } + ] + }, + { + "type": "BLANK" + } + ] } ] }, - "full_reference_link": { + "raw_block_info": { "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "link_text" + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "=" + }, + "named": true, + "value": "language_marker" }, { "type": "SYMBOL", - "name": "_link_label" + "name": "language" } ] }, - "collapsed_reference_link": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "link_text" - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": "[]" - } + "language": { + "type": "PATTERN", + "value": "[^\\n\\t \\{\\}=]+" + }, + "code": { + "type": "PREC_LEFT", + "value": 0, + "content": { + "type": "REPEAT1", + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_block_quote_prefix" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "_line" + } + ] } - ] + } }, - "inline_link": { + "_line": { "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "link_text" + "type": "PATTERN", + "value": "[^\\n]*" }, { "type": "SYMBOL", - "name": "inline_link_destination" + "name": "_newline" } ] }, - "link_text": { - "type": "SEQ", + "thematic_break": { + "type": "CHOICE", "members": [ - { - "type": "STRING", - "value": "[" - }, { "type": "SYMBOL", - "name": "_inline" + "name": "_thematic_break_dash" }, { - "type": "STRING", - "value": "]" + "type": "SYMBOL", + "name": "_thematic_break_star" } ] }, - "_link_label": { + "block_quote": { "type": "SEQ", "members": [ - { - "type": "STRING", - "value": "[" - }, { "type": "ALIAS", "content": { "type": "SYMBOL", - "name": "_inline" + "name": "_block_quote_begin" }, "named": true, - "value": "link_label" + "value": "block_quote_marker" }, { - "type": "IMMEDIATE_TOKEN", + "type": "ALIAS", "content": { - "type": "STRING", - "value": "]" - } - } - ] - }, - "inline_link_destination": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "PATTERN", - "value": "[^\\n\\)]+" + "type": "SYMBOL", + "name": "_block_quote_content" + }, + "named": true, + "value": "content" }, { - "type": "STRING", - "value": ")" + "type": "SYMBOL", + "name": "_block_close" } ] }, - "inline_attribute": { + "_block_quote_content": { "type": "SEQ", "members": [ { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": "{" - } + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "heading" + }, + { + "type": "SYMBOL", + "name": "_block_element" + } + ] }, { - "type": "ALIAS", + "type": "REPEAT", "content": { - "type": "REPEAT", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "class" - }, - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "SYMBOL", - "name": "key_value" - }, - { - "type": "ALIAS", - "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_block_quote_prefix" + }, + { + "type": "CHOICE", + "members": [ + { "type": "SYMBOL", - "name": "_comment_with_newline" + "name": "_block_element" }, - "named": true, - "value": "comment" - }, - { - "type": "SYMBOL", - "name": "_whitespace1" - }, - { - "type": "SYMBOL", - "name": "_newline" - } - ] - } + { + "type": "BLANK" + } + ] + } + ] + } + } + ] + }, + "_block_quote_prefix": { + "type": "PREC_LEFT", + "value": 0, + "content": { + "type": "REPEAT1", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_block_quote_continuation" }, "named": true, - "value": "args" - }, - { - "type": "STRING", - "value": "}" + "value": "block_quote_marker" } - ] + } }, - "comment": { + "link_reference_definition": { "type": "SEQ", "members": [ { "type": "STRING", - "value": "{" + "value": "[" }, { "type": "SYMBOL", - "name": "_comment_with_newline" + "name": "link_label" }, { "type": "STRING", - "value": "}" - } - ] - }, - "_comment_with_spaces": { - "type": "SEQ", - "members": [ + "value": "]" + }, { - "type": "SYMBOL", - "name": "_whitespace1" + "type": "STRING", + "value": ":" }, { "type": "SYMBOL", - "name": "comment" - } - ] - }, - "span": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "[" + "name": "_whitespace1" }, { "type": "SYMBOL", - "name": "_inline" + "name": "link_destination" }, { - "type": "STRING", - "value": "]" + "type": "SYMBOL", + "name": "_whitespace" }, { "type": "SYMBOL", - "name": "inline_attribute" + "name": "_one_or_two_newlines" } ] }, - "_comment_with_newline": { + "link_label": { + "type": "SYMBOL", + "name": "_inline" + }, + "link_destination": { + "type": "PATTERN", + "value": "\\S+" + }, + "block_attribute": { "type": "SEQ", "members": [ { "type": "STRING", - "value": "%" - }, - { - "type": "SYMBOL", - "name": "_whitespace" + "value": "{" }, { "type": "ALIAS", @@ -3643,329 +1993,328 @@ "members": [ { "type": "SYMBOL", - "name": "backslash_escape" + "name": "class" }, { - "type": "PATTERN", - "value": "[^%\\n]" + "type": "SYMBOL", + "name": "identifier" }, { "type": "SYMBOL", - "name": "_newline" - } - ] - } - }, - "named": true, - "value": "content" - }, - { - "type": "STRING", - "value": "%" - } - ] - }, - "_comment_no_newline": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "%" - }, - { - "type": "ALIAS", - "content": { - "type": "REPEAT", - "content": { - "type": "CHOICE", - "members": [ + "name": "key_value" + }, { - "type": "SYMBOL", - "name": "backslash_escape" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_comment_no_newline" + }, + "named": true, + "value": "comment" }, { - "type": "PATTERN", - "value": "[^%\\n]" + "type": "SYMBOL", + "name": "_whitespace1" } ] } }, "named": true, - "value": "content" + "value": "args" }, { "type": "STRING", - "value": "%" + "value": "}" + }, + { + "type": "SYMBOL", + "name": "_newline" } ] }, - "raw_inline": { + "class": { "type": "SEQ", "members": [ { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_verbatim_begin" - }, - "named": true, - "value": "raw_inline_marker_begin" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_verbatim_content" - }, - "named": true, - "value": "content" + "type": "STRING", + "value": "." }, { "type": "ALIAS", "content": { "type": "SYMBOL", - "name": "_verbatim_end" + "name": "class_name" }, - "named": true, - "value": "raw_inline_marker_end" - }, - { - "type": "SYMBOL", - "name": "raw_inline_attribute" + "named": false, + "value": "class" } ] }, - "raw_inline_attribute": { - "type": "SEQ", - "members": [ - { - "type": "IMMEDIATE_TOKEN", - "content": { + "identifier": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { "type": "STRING", - "value": "{=" + "value": "#" + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PATTERN", + "value": "[^\\s\\}]+" + } } - }, + ] + } + }, + "key_value": { + "type": "SEQ", + "members": [ { "type": "SYMBOL", - "name": "language" + "name": "key" }, { "type": "STRING", - "value": "}" + "value": "=" + }, + { + "type": "SYMBOL", + "name": "value" } ] }, - "math": { - "type": "SEQ", + "key": { + "type": "SYMBOL", + "name": "_id" + }, + "value": { + "type": "CHOICE", "members": [ { - "type": "ALIAS", - "content": { - "type": "STRING", - "value": "$" - }, - "named": true, - "value": "math_marker" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_verbatim_begin" - }, - "named": true, - "value": "math_marker_begin" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_verbatim_content" - }, - "named": true, - "value": "content" + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "\"" + }, + { + "type": "PATTERN", + "value": "[^\"\\n]+" + }, + { + "type": "STRING", + "value": "\"" + } + ] }, { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_verbatim_end" - }, - "named": true, - "value": "math_marker_end" + "type": "PATTERN", + "value": "\\w+" } ] }, - "verbatim": { + "_paragraph": { "type": "SEQ", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", - "name": "_verbatim_begin" - }, - "named": true, - "value": "verbatim_marker_begin" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_verbatim_content" + "name": "_paragraph_content" }, "named": true, - "value": "content" + "value": "paragraph" }, { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_verbatim_end" - }, - "named": true, - "value": "verbatim_marker_end" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_eof_or_newline" + }, + { + "type": "SYMBOL", + "name": "_close_paragraph" + } + ] } ] }, - "_todo_highlights": { - "type": "CHOICE", + "_paragraph_content": { + "type": "SEQ", "members": [ { "type": "SYMBOL", - "name": "todo" + "name": "_inline" }, { - "type": "SYMBOL", - "name": "note" + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_newline_inline" + }, + { + "type": "SYMBOL", + "name": "_inline" + } + ] + } }, { "type": "SYMBOL", - "name": "fixme" + "name": "_eof_or_newline" } ] }, - "todo": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "TODO" - }, - { - "type": "STRING", - "value": "WIP" + "_one_or_two_newlines": { + "type": "PREC_LEFT", + "value": 0, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_eof_or_newline" + }, + { + "type": "SYMBOL", + "name": "_eof_or_newline" + } + ] + }, + { + "type": "SYMBOL", + "name": "_eof_or_newline" + } + ] + } + }, + "_whitespace": { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PATTERN", + "value": "[ \\t]*" + } + }, + "_whitespace1": { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PATTERN", + "value": "[ \\t]+" + } + }, + "_inline": { + "type": "PREC_LEFT", + "value": 0, + "content": { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[^\\n]" + }, + { + "type": "SYMBOL", + "name": "_symbol_fallback" + } + ] } - ] + } }, - "note": { - "type": "CHOICE", + "_inline_line": { + "type": "SEQ", "members": [ { - "type": "STRING", - "value": "NOTE" - }, - { - "type": "STRING", - "value": "INFO" + "type": "SYMBOL", + "name": "_inline" }, { - "type": "STRING", - "value": "XXX" + "type": "SYMBOL", + "name": "_eof_or_newline" } ] }, - "fixme": { - "type": "STRING", - "value": "FIXME" - }, "_symbol_fallback": { "type": "PREC_DYNAMIC", "value": -1000, "content": { "type": "CHOICE", "members": [ - { - "type": "STRING", - "value": "![" - }, - { - "type": "STRING", - "value": "*" - }, { "type": "STRING", "value": "[" }, - { - "type": "STRING", - "value": "[^" - }, - { - "type": "STRING", - "value": "^" - }, - { - "type": "STRING", - "value": "_" - }, { "type": "STRING", "value": "{" }, - { - "type": "STRING", - "value": "{*" - }, - { - "type": "STRING", - "value": "{+" - }, { "type": "STRING", "value": "{-" }, - { - "type": "STRING", - "value": "{=" - }, - { - "type": "STRING", - "value": "{^" - }, - { - "type": "STRING", - "value": "{_" - }, - { - "type": "STRING", - "value": "{~" - }, { "type": "STRING", "value": "|" - }, - { - "type": "STRING", - "value": "~" - }, - { - "type": "STRING", - "value": "<" - }, - { - "type": "STRING", - "value": "$" } ] } }, - "_text": { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "\\S" - } + "backslash_escape": { + "type": "PATTERN", + "value": "\\\\[^\\\\\\r\\n]" + }, + "reference_label": { + "type": "SYMBOL", + "name": "_id" + }, + "_id": { + "type": "PATTERN", + "value": "[\\w_-]+" + }, + "_comment_no_newline": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "%" + }, + { + "type": "ALIAS", + "content": { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "backslash_escape" + }, + { + "type": "PATTERN", + "value": "[^%\\n]" + } + ] + } + }, + "named": true, + "value": "content" + }, + { + "type": "STRING", + "value": "%" + } + ] } }, "extras": [ @@ -3978,75 +2327,13 @@ [ "_table_content" ], - [ - "_inline_no_surrounding_spaces" - ], - [ - "_inline_element_with_whitespace", - "_inline_no_surrounding_spaces" - ], - [ - "emphasis_begin", - "_symbol_fallback" - ], - [ - "strong_begin", - "_symbol_fallback" - ], - [ - "highlighted", - "_symbol_fallback" - ], - [ - "superscript", - "_symbol_fallback" - ], - [ - "subscript", - "_symbol_fallback" - ], - [ - "insert", - "_symbol_fallback" - ], - [ - "delete", - "_symbol_fallback" - ], - [ - "table_row", - "_symbol_fallback" - ], - [ - "_image_description", - "_symbol_fallback" - ], - [ - "math", - "_symbol_fallback" - ], - [ - "link_text", - "span", - "_symbol_fallback" - ], [ "link_reference_definition", - "link_text", - "span", "_symbol_fallback" ], [ - "block_attribute", + "table_row", "_symbol_fallback" - ], - [ - "_inline_element_with_whitespace", - "_comment_with_spaces" - ], - [ - "_inline_element_with_whitespace_without_newline", - "_comment_with_spaces" ] ], "precedences": [], @@ -4077,51 +2364,11 @@ }, { "type": "SYMBOL", - "name": "_heading1_begin" - }, - { - "type": "SYMBOL", - "name": "_heading1_continuation" - }, - { - "type": "SYMBOL", - "name": "_heading2_begin" - }, - { - "type": "SYMBOL", - "name": "_heading2_continuation" - }, - { - "type": "SYMBOL", - "name": "_heading3_begin" - }, - { - "type": "SYMBOL", - "name": "_heading3_continuation" - }, - { - "type": "SYMBOL", - "name": "_heading4_begin" - }, - { - "type": "SYMBOL", - "name": "_heading4_continuation" - }, - { - "type": "SYMBOL", - "name": "_heading5_begin" - }, - { - "type": "SYMBOL", - "name": "_heading5_continuation" - }, - { - "type": "SYMBOL", - "name": "_heading6_begin" + "name": "_heading_begin" }, { "type": "SYMBOL", - "name": "_heading6_continuation" + "name": "_heading_continuation" }, { "type": "SYMBOL", diff --git a/tree-sitter-djot/src/node-types.json b/tree-sitter-djot/src/node-types.json index 82bc20b..94fa9a7 100644 --- a/tree-sitter-djot/src/node-types.json +++ b/tree-sitter-djot/src/node-types.json @@ -26,11 +26,6 @@ ] } }, - { - "type": "autolink", - "named": true, - "fields": {} - }, { "type": "block_attribute", "named": true, @@ -122,36 +117,6 @@ ] } }, - { - "type": "collapsed_reference_image", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "image_description", - "named": true - } - ] - } - }, - { - "type": "collapsed_reference_link", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "link_text", - "named": true - } - ] - } - }, { "type": "comment", "named": true, @@ -175,10 +140,6 @@ "multiple": true, "required": false, "types": [ - { - "type": "autolink", - "named": true - }, { "type": "backslash_escape", "named": true @@ -199,108 +160,16 @@ "type": "code_block", "named": true }, - { - "type": "collapsed_reference_image", - "named": true - }, - { - "type": "collapsed_reference_link", - "named": true - }, - { - "type": "comment", - "named": true - }, - { - "type": "delete", - "named": true - }, { "type": "div", "named": true }, - { - "type": "ellipsis", - "named": true - }, - { - "type": "em_dash", - "named": true - }, - { - "type": "emphasis", - "named": true - }, - { - "type": "en_dash", - "named": true - }, - { - "type": "fixme", - "named": true - }, { "type": "footnote", "named": true }, { - "type": "footnote_reference", - "named": true - }, - { - "type": "full_reference_image", - "named": true - }, - { - "type": "full_reference_link", - "named": true - }, - { - "type": "hard_line_break", - "named": true - }, - { - "type": "heading1", - "named": true - }, - { - "type": "heading2", - "named": true - }, - { - "type": "heading3", - "named": true - }, - { - "type": "heading4", - "named": true - }, - { - "type": "heading5", - "named": true - }, - { - "type": "heading6", - "named": true - }, - { - "type": "highlighted", - "named": true - }, - { - "type": "inline_attribute", - "named": true - }, - { - "type": "inline_image", - "named": true - }, - { - "type": "inline_link", - "named": true - }, - { - "type": "insert", + "type": "heading", "named": true }, { @@ -315,50 +184,14 @@ "type": "marker", "named": true }, - { - "type": "math", - "named": true - }, - { - "type": "note", - "named": true - }, { "type": "paragraph", "named": true }, - { - "type": "quotation_marks", - "named": true - }, { "type": "raw_block", "named": true }, - { - "type": "raw_inline", - "named": true - }, - { - "type": "span", - "named": true - }, - { - "type": "strong", - "named": true - }, - { - "type": "subscript", - "named": true - }, - { - "type": "superscript", - "named": true - }, - { - "type": "symbol", - "named": true - }, { "type": "table", "named": true @@ -366,14 +199,6 @@ { "type": "thematic_break", "named": true - }, - { - "type": "todo", - "named": true - }, - { - "type": "verbatim", - "named": true } ] } @@ -411,27 +236,7 @@ "named": true }, { - "type": "heading1", - "named": true - }, - { - "type": "heading2", - "named": true - }, - { - "type": "heading3", - "named": true - }, - { - "type": "heading4", - "named": true - }, - { - "type": "heading5", - "named": true - }, - { - "type": "heading6", + "type": "heading", "named": true }, { @@ -461,21 +266,6 @@ ] } }, - { - "type": "delete", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "content", - "named": true - } - ] - } - }, { "type": "div", "named": true, @@ -581,39 +371,6 @@ ] } }, - { - "type": "emphasis", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "content", - "named": true - }, - { - "type": "emphasis_begin", - "named": true - }, - { - "type": "emphasis_end", - "named": true - } - ] - } - }, - { - "type": "emphasis_begin", - "named": true, - "fields": {} - }, - { - "type": "emphasis_end", - "named": true, - "fields": {} - }, { "type": "footnote", "named": true, @@ -670,27 +427,7 @@ "named": true }, { - "type": "heading1", - "named": true - }, - { - "type": "heading2", - "named": true - }, - { - "type": "heading3", - "named": true - }, - { - "type": "heading4", - "named": true - }, - { - "type": "heading5", - "named": true - }, - { - "type": "heading6", + "type": "heading", "named": true }, { @@ -720,29 +457,6 @@ ] } }, - { - "type": "footnote_reference", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "footnote_marker_begin", - "named": true - }, - { - "type": "footnote_marker_end", - "named": true - }, - { - "type": "reference_label", - "named": true - } - ] - } - }, { "type": "frontmatter", "named": true, @@ -772,7 +486,7 @@ "fields": {} }, { - "type": "full_reference_image", + "type": "heading", "named": true, "fields": {}, "children": { @@ -780,18 +494,23 @@ "required": true, "types": [ { - "type": "image_description", + "type": "content", "named": true }, { - "type": "link_label", + "type": "marker", "named": true } ] } }, { - "type": "full_reference_link", + "type": "key", + "named": true, + "fields": {} + }, + { + "type": "key_value", "named": true, "fields": {}, "children": { @@ -799,23 +518,23 @@ "required": true, "types": [ { - "type": "link_label", + "type": "key", "named": true }, { - "type": "link_text", + "type": "value", "named": true } ] } }, { - "type": "hard_line_break", + "type": "link_label", "named": true, "fields": {} }, { - "type": "heading1", + "type": "link_reference_definition", "named": true, "fields": {}, "children": { @@ -823,37 +542,33 @@ "required": true, "types": [ { - "type": "content", + "type": "link_destination", "named": true }, { - "type": "marker", + "type": "link_label", "named": true } ] } }, { - "type": "heading2", + "type": "list", "named": true, "fields": {}, "children": { "multiple": true, - "required": true, + "required": false, "types": [ { - "type": "content", - "named": true - }, - { - "type": "marker", + "type": "list_item", "named": true } ] } }, { - "type": "heading3", + "type": "list_item", "named": true, "fields": {}, "children": { @@ -861,263 +576,193 @@ "required": true, "types": [ { - "type": "content", + "type": "block_quote_marker", "named": true }, { - "type": "marker", - "named": true - } - ] - } - }, - { - "type": "heading4", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "content", + "type": "definition", "named": true }, { - "type": "marker", - "named": true - } - ] - } - }, - { - "type": "heading5", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "content", + "type": "list_item_content", "named": true }, { - "type": "marker", - "named": true - } - ] - } - }, - { - "type": "heading6", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "content", + "type": "list_marker_dash", "named": true }, { - "type": "marker", - "named": true - } - ] - } - }, - { - "type": "highlighted", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "content", + "type": "list_marker_decimal_paren", "named": true - } - ] - } - }, - { - "type": "image_description", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ + }, { - "type": "autolink", + "type": "list_marker_decimal_parens", "named": true }, { - "type": "backslash_escape", + "type": "list_marker_decimal_period", "named": true }, { - "type": "block_quote_marker", + "type": "list_marker_definition", "named": true }, { - "type": "collapsed_reference_image", + "type": "list_marker_lower_alpha_paren", "named": true }, { - "type": "collapsed_reference_link", + "type": "list_marker_lower_alpha_parens", "named": true }, { - "type": "comment", + "type": "list_marker_lower_alpha_period", "named": true }, { - "type": "delete", + "type": "list_marker_lower_roman_paren", "named": true }, { - "type": "ellipsis", + "type": "list_marker_lower_roman_parens", "named": true }, { - "type": "em_dash", + "type": "list_marker_lower_roman_period", "named": true }, { - "type": "emphasis", + "type": "list_marker_plus", "named": true }, { - "type": "en_dash", + "type": "list_marker_star", "named": true }, { - "type": "fixme", + "type": "list_marker_task", "named": true }, { - "type": "footnote_reference", + "type": "list_marker_upper_alpha_paren", "named": true }, { - "type": "full_reference_image", + "type": "list_marker_upper_alpha_parens", "named": true }, { - "type": "full_reference_link", + "type": "list_marker_upper_alpha_period", "named": true }, { - "type": "hard_line_break", + "type": "list_marker_upper_roman_paren", "named": true }, { - "type": "highlighted", + "type": "list_marker_upper_roman_parens", "named": true }, { - "type": "inline_attribute", + "type": "list_marker_upper_roman_period", "named": true }, { - "type": "inline_image", + "type": "term", "named": true - }, + } + ] + } + }, + { + "type": "list_item_content", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ { - "type": "inline_link", + "type": "block_attribute", "named": true }, { - "type": "insert", + "type": "block_quote", "named": true }, { - "type": "math", + "type": "block_quote_marker", "named": true }, { - "type": "note", + "type": "code_block", "named": true }, { - "type": "quotation_marks", + "type": "div", "named": true }, { - "type": "raw_inline", + "type": "footnote", "named": true }, { - "type": "span", + "type": "heading", "named": true }, { - "type": "strong", + "type": "link_reference_definition", "named": true }, { - "type": "subscript", + "type": "list", "named": true }, { - "type": "superscript", + "type": "paragraph", "named": true }, { - "type": "symbol", + "type": "raw_block", "named": true }, { - "type": "todo", + "type": "table", "named": true }, { - "type": "verbatim", + "type": "thematic_break", "named": true } ] } }, { - "type": "inline_attribute", + "type": "list_marker_task", "named": true, "fields": {}, "children": { "multiple": false, - "required": false, - "types": [ - { - "type": "args", - "named": true - } - ] - } - }, - { - "type": "inline_image", - "named": true, - "fields": {}, - "children": { - "multiple": true, "required": true, "types": [ { - "type": "image_description", + "type": "checked", "named": true }, { - "type": "inline_link_destination", + "type": "unchecked", "named": true } ] } }, { - "type": "inline_link", + "type": "paragraph", + "named": true, + "fields": {} + }, + { + "type": "raw_block", "named": true, "fields": {}, "children": { @@ -1125,43 +770,26 @@ "required": true, "types": [ { - "type": "inline_link_destination", + "type": "content", "named": true }, { - "type": "link_text", + "type": "raw_block_info", "named": true - } - ] - } - }, - { - "type": "inline_link_destination", - "named": true, - "fields": {} - }, - { - "type": "insert", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ + }, { - "type": "content", + "type": "raw_block_marker_begin", + "named": true + }, + { + "type": "raw_block_marker_end", "named": true } ] } }, { - "type": "key", - "named": true, - "fields": {} - }, - { - "type": "key_value", + "type": "raw_block_info", "named": true, "fields": {}, "children": { @@ -1169,1504 +797,171 @@ "required": true, "types": [ { - "type": "key", + "type": "language", "named": true }, { - "type": "value", + "type": "language_marker", "named": true } ] } }, { - "type": "link_label", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "autolink", - "named": true - }, - { - "type": "backslash_escape", - "named": true - }, - { - "type": "block_quote_marker", - "named": true - }, - { - "type": "collapsed_reference_image", - "named": true - }, - { - "type": "collapsed_reference_link", - "named": true - }, - { - "type": "comment", - "named": true - }, - { - "type": "delete", - "named": true - }, - { - "type": "ellipsis", - "named": true - }, - { - "type": "em_dash", - "named": true - }, - { - "type": "emphasis", - "named": true - }, - { - "type": "en_dash", - "named": true - }, - { - "type": "fixme", - "named": true - }, - { - "type": "footnote_reference", - "named": true - }, - { - "type": "full_reference_image", - "named": true - }, - { - "type": "full_reference_link", - "named": true - }, - { - "type": "hard_line_break", - "named": true - }, - { - "type": "highlighted", - "named": true - }, - { - "type": "inline_attribute", - "named": true - }, - { - "type": "inline_image", - "named": true - }, - { - "type": "inline_link", - "named": true - }, - { - "type": "insert", - "named": true - }, - { - "type": "math", - "named": true - }, - { - "type": "note", - "named": true - }, - { - "type": "quotation_marks", - "named": true - }, - { - "type": "raw_inline", - "named": true - }, - { - "type": "span", - "named": true - }, - { - "type": "strong", - "named": true - }, - { - "type": "subscript", - "named": true - }, - { - "type": "superscript", - "named": true - }, - { - "type": "symbol", - "named": true - }, - { - "type": "todo", - "named": true - }, - { - "type": "verbatim", - "named": true - } - ] - } - }, - { - "type": "link_reference_definition", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "link_destination", - "named": true - }, - { - "type": "link_label", - "named": true - } - ] - } - }, - { - "type": "link_text", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "autolink", - "named": true - }, - { - "type": "backslash_escape", - "named": true - }, - { - "type": "block_quote_marker", - "named": true - }, - { - "type": "collapsed_reference_image", - "named": true - }, - { - "type": "collapsed_reference_link", - "named": true - }, - { - "type": "comment", - "named": true - }, - { - "type": "delete", - "named": true - }, - { - "type": "ellipsis", - "named": true - }, - { - "type": "em_dash", - "named": true - }, - { - "type": "emphasis", - "named": true - }, - { - "type": "en_dash", - "named": true - }, - { - "type": "fixme", - "named": true - }, - { - "type": "footnote_reference", - "named": true - }, - { - "type": "full_reference_image", - "named": true - }, - { - "type": "full_reference_link", - "named": true - }, - { - "type": "hard_line_break", - "named": true - }, - { - "type": "highlighted", - "named": true - }, - { - "type": "inline_attribute", - "named": true - }, - { - "type": "inline_image", - "named": true - }, - { - "type": "inline_link", - "named": true - }, - { - "type": "insert", - "named": true - }, - { - "type": "math", - "named": true - }, - { - "type": "note", - "named": true - }, - { - "type": "quotation_marks", - "named": true - }, - { - "type": "raw_inline", - "named": true - }, - { - "type": "span", - "named": true - }, - { - "type": "strong", - "named": true - }, - { - "type": "subscript", - "named": true - }, - { - "type": "superscript", - "named": true - }, - { - "type": "symbol", - "named": true - }, - { - "type": "todo", - "named": true - }, - { - "type": "verbatim", - "named": true - } - ] - } - }, - { - "type": "list", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "list_item", - "named": true - } - ] - } - }, - { - "type": "list_item", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "block_quote_marker", - "named": true - }, - { - "type": "definition", - "named": true - }, - { - "type": "list_item_content", - "named": true - }, - { - "type": "list_marker_dash", - "named": true - }, - { - "type": "list_marker_decimal_paren", - "named": true - }, - { - "type": "list_marker_decimal_parens", - "named": true - }, - { - "type": "list_marker_decimal_period", - "named": true - }, - { - "type": "list_marker_definition", - "named": true - }, - { - "type": "list_marker_lower_alpha_paren", - "named": true - }, - { - "type": "list_marker_lower_alpha_parens", - "named": true - }, - { - "type": "list_marker_lower_alpha_period", - "named": true - }, - { - "type": "list_marker_lower_roman_paren", - "named": true - }, - { - "type": "list_marker_lower_roman_parens", - "named": true - }, - { - "type": "list_marker_lower_roman_period", - "named": true - }, - { - "type": "list_marker_plus", - "named": true - }, - { - "type": "list_marker_star", - "named": true - }, - { - "type": "list_marker_task", - "named": true - }, - { - "type": "list_marker_upper_alpha_paren", - "named": true - }, - { - "type": "list_marker_upper_alpha_parens", - "named": true - }, - { - "type": "list_marker_upper_alpha_period", - "named": true - }, - { - "type": "list_marker_upper_roman_paren", - "named": true - }, - { - "type": "list_marker_upper_roman_parens", - "named": true - }, - { - "type": "list_marker_upper_roman_period", - "named": true - }, - { - "type": "term", - "named": true - } - ] - } - }, - { - "type": "list_item_content", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "block_attribute", - "named": true - }, - { - "type": "block_quote", - "named": true - }, - { - "type": "block_quote_marker", - "named": true - }, - { - "type": "code_block", - "named": true - }, - { - "type": "div", - "named": true - }, - { - "type": "footnote", - "named": true - }, - { - "type": "heading1", - "named": true - }, - { - "type": "heading2", - "named": true - }, - { - "type": "heading3", - "named": true - }, - { - "type": "heading4", - "named": true - }, - { - "type": "heading5", - "named": true - }, - { - "type": "heading6", - "named": true - }, - { - "type": "link_reference_definition", - "named": true - }, - { - "type": "list", - "named": true - }, - { - "type": "paragraph", - "named": true - }, - { - "type": "raw_block", - "named": true - }, - { - "type": "table", - "named": true - }, - { - "type": "thematic_break", - "named": true - } - ] - } - }, - { - "type": "list_marker_task", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "checked", - "named": true - }, - { - "type": "unchecked", - "named": true - } - ] - } - }, - { - "type": "math", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "content", - "named": true - }, - { - "type": "math_marker", - "named": true - }, - { - "type": "math_marker_begin", - "named": true - }, - { - "type": "math_marker_end", - "named": true - } - ] - } - }, - { - "type": "note", - "named": true, - "fields": {} - }, - { - "type": "paragraph", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "autolink", - "named": true - }, - { - "type": "backslash_escape", - "named": true - }, - { - "type": "block_quote_marker", - "named": true - }, - { - "type": "collapsed_reference_image", - "named": true - }, - { - "type": "collapsed_reference_link", - "named": true - }, - { - "type": "comment", - "named": true - }, - { - "type": "delete", - "named": true - }, - { - "type": "ellipsis", - "named": true - }, - { - "type": "em_dash", - "named": true - }, - { - "type": "emphasis", - "named": true - }, - { - "type": "en_dash", - "named": true - }, - { - "type": "fixme", - "named": true - }, - { - "type": "footnote_reference", - "named": true - }, - { - "type": "full_reference_image", - "named": true - }, - { - "type": "full_reference_link", - "named": true - }, - { - "type": "hard_line_break", - "named": true - }, - { - "type": "highlighted", - "named": true - }, - { - "type": "inline_attribute", - "named": true - }, - { - "type": "inline_image", - "named": true - }, - { - "type": "inline_link", - "named": true - }, - { - "type": "insert", - "named": true - }, - { - "type": "math", - "named": true - }, - { - "type": "note", - "named": true - }, - { - "type": "quotation_marks", - "named": true - }, - { - "type": "raw_inline", - "named": true - }, - { - "type": "span", - "named": true - }, - { - "type": "strong", - "named": true - }, - { - "type": "subscript", - "named": true - }, - { - "type": "superscript", - "named": true - }, - { - "type": "symbol", - "named": true - }, - { - "type": "todo", - "named": true - }, - { - "type": "verbatim", - "named": true - } - ] - } - }, - { - "type": "raw_block", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "content", - "named": true - }, - { - "type": "raw_block_info", - "named": true - }, - { - "type": "raw_block_marker_begin", - "named": true - }, - { - "type": "raw_block_marker_end", - "named": true - } - ] - } - }, - { - "type": "raw_block_info", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "language", - "named": true - }, - { - "type": "language_marker", - "named": true - } - ] - } - }, - { - "type": "raw_inline", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "content", - "named": true - }, - { - "type": "raw_inline_attribute", - "named": true - }, - { - "type": "raw_inline_marker_begin", - "named": true - }, - { - "type": "raw_inline_marker_end", - "named": true - } - ] - } - }, - { - "type": "raw_inline_attribute", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "language", - "named": true - } - ] - } - }, - { - "type": "reference_label", - "named": true, - "fields": {} - }, - { - "type": "section", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "heading1", - "named": true - }, - { - "type": "heading2", - "named": true - }, - { - "type": "heading3", - "named": true - }, - { - "type": "heading4", - "named": true - }, - { - "type": "heading5", - "named": true - }, - { - "type": "heading6", - "named": true - }, - { - "type": "section_content", - "named": true - } - ] - } - }, - { - "type": "section_content", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "block_attribute", - "named": true - }, - { - "type": "block_quote", - "named": true - }, - { - "type": "code_block", - "named": true - }, - { - "type": "div", - "named": true - }, - { - "type": "footnote", - "named": true - }, - { - "type": "link_reference_definition", - "named": true - }, - { - "type": "list", - "named": true - }, - { - "type": "paragraph", - "named": true - }, - { - "type": "raw_block", - "named": true - }, - { - "type": "section", - "named": true - }, - { - "type": "table", - "named": true - }, - { - "type": "thematic_break", - "named": true - } - ] - } - }, - { - "type": "span", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "autolink", - "named": true - }, - { - "type": "backslash_escape", - "named": true - }, - { - "type": "block_quote_marker", - "named": true - }, - { - "type": "collapsed_reference_image", - "named": true - }, - { - "type": "collapsed_reference_link", - "named": true - }, - { - "type": "comment", - "named": true - }, - { - "type": "delete", - "named": true - }, - { - "type": "ellipsis", - "named": true - }, - { - "type": "em_dash", - "named": true - }, - { - "type": "emphasis", - "named": true - }, - { - "type": "en_dash", - "named": true - }, - { - "type": "fixme", - "named": true - }, - { - "type": "footnote_reference", - "named": true - }, - { - "type": "full_reference_image", - "named": true - }, - { - "type": "full_reference_link", - "named": true - }, - { - "type": "hard_line_break", - "named": true - }, - { - "type": "highlighted", - "named": true - }, - { - "type": "inline_attribute", - "named": true - }, - { - "type": "inline_image", - "named": true - }, - { - "type": "inline_link", - "named": true - }, - { - "type": "insert", - "named": true - }, - { - "type": "math", - "named": true - }, - { - "type": "note", - "named": true - }, - { - "type": "quotation_marks", - "named": true - }, - { - "type": "raw_inline", - "named": true - }, - { - "type": "span", - "named": true - }, - { - "type": "strong", - "named": true - }, - { - "type": "subscript", - "named": true - }, - { - "type": "superscript", - "named": true - }, - { - "type": "symbol", - "named": true - }, - { - "type": "todo", - "named": true - }, - { - "type": "verbatim", - "named": true - } - ] - } - }, - { - "type": "strong", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "content", - "named": true - }, - { - "type": "strong_begin", - "named": true - }, - { - "type": "strong_end", - "named": true - } - ] - } - }, - { - "type": "strong_begin", - "named": true, - "fields": {} - }, - { - "type": "strong_end", - "named": true, - "fields": {} - }, - { - "type": "subscript", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "content", - "named": true - } - ] - } - }, - { - "type": "superscript", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "content", - "named": true - } - ] - } - }, - { - "type": "table", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "table_caption", - "named": true - }, - { - "type": "table_header", - "named": true - }, - { - "type": "table_row", - "named": true - }, - { - "type": "table_separator", - "named": true - } - ] - } - }, - { - "type": "table_caption", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "content", - "named": true - }, - { - "type": "marker", - "named": true - } - ] - } - }, - { - "type": "table_cell", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "autolink", - "named": true - }, - { - "type": "backslash_escape", - "named": true - }, - { - "type": "block_quote_marker", - "named": true - }, - { - "type": "collapsed_reference_image", - "named": true - }, - { - "type": "collapsed_reference_link", - "named": true - }, - { - "type": "comment", - "named": true - }, - { - "type": "delete", - "named": true - }, - { - "type": "ellipsis", - "named": true - }, - { - "type": "em_dash", - "named": true - }, - { - "type": "emphasis", - "named": true - }, - { - "type": "en_dash", - "named": true - }, - { - "type": "fixme", - "named": true - }, - { - "type": "footnote_reference", - "named": true - }, - { - "type": "full_reference_image", - "named": true - }, - { - "type": "full_reference_link", - "named": true - }, - { - "type": "hard_line_break", - "named": true - }, - { - "type": "highlighted", - "named": true - }, - { - "type": "inline_attribute", - "named": true - }, - { - "type": "inline_image", - "named": true - }, - { - "type": "inline_link", - "named": true - }, - { - "type": "insert", - "named": true - }, - { - "type": "math", - "named": true - }, - { - "type": "note", - "named": true - }, - { - "type": "quotation_marks", - "named": true - }, - { - "type": "raw_inline", - "named": true - }, - { - "type": "span", - "named": true - }, - { - "type": "strong", - "named": true - }, - { - "type": "subscript", - "named": true - }, - { - "type": "superscript", - "named": true - }, - { - "type": "symbol", - "named": true - }, - { - "type": "todo", - "named": true - }, - { - "type": "verbatim", - "named": true - } - ] - } - }, - { - "type": "table_header", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "block_quote_marker", - "named": true - }, - { - "type": "table_cell", - "named": true - } - ] - } - }, - { - "type": "table_row", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "block_quote_marker", - "named": true - }, - { - "type": "table_cell", - "named": true - } - ] - } - }, - { - "type": "table_separator", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "block_quote_marker", - "named": true - }, - { - "type": "table_cell_alignment", - "named": true - } - ] - } - }, - { - "type": "term", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "autolink", - "named": true - }, - { - "type": "backslash_escape", - "named": true - }, - { - "type": "block_quote_marker", - "named": true - }, - { - "type": "collapsed_reference_image", - "named": true - }, - { - "type": "collapsed_reference_link", - "named": true - }, - { - "type": "comment", - "named": true - }, - { - "type": "delete", - "named": true - }, - { - "type": "ellipsis", - "named": true - }, - { - "type": "em_dash", - "named": true - }, - { - "type": "emphasis", - "named": true - }, - { - "type": "en_dash", - "named": true - }, - { - "type": "fixme", - "named": true - }, + "type": "reference_label", + "named": true, + "fields": {} + }, + { + "type": "section", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ { - "type": "footnote_reference", + "type": "heading", "named": true }, { - "type": "full_reference_image", + "type": "section_content", "named": true - }, + } + ] + } + }, + { + "type": "section_content", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ { - "type": "full_reference_link", + "type": "block_attribute", "named": true }, { - "type": "hard_line_break", + "type": "block_quote", "named": true }, { - "type": "highlighted", + "type": "code_block", "named": true }, { - "type": "inline_attribute", + "type": "div", "named": true }, { - "type": "inline_image", + "type": "footnote", "named": true }, { - "type": "inline_link", + "type": "link_reference_definition", "named": true }, { - "type": "insert", + "type": "list", "named": true }, { - "type": "math", + "type": "paragraph", "named": true }, { - "type": "note", + "type": "raw_block", "named": true }, { - "type": "quotation_marks", + "type": "section", "named": true }, { - "type": "raw_inline", + "type": "table", "named": true }, { - "type": "span", + "type": "thematic_break", "named": true - }, + } + ] + } + }, + { + "type": "table", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ { - "type": "strong", + "type": "table_caption", "named": true }, { - "type": "subscript", + "type": "table_header", "named": true }, { - "type": "superscript", + "type": "table_row", "named": true }, { - "type": "symbol", + "type": "table_separator", "named": true - }, + } + ] + } + }, + { + "type": "table_caption", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ { - "type": "todo", + "type": "content", "named": true }, { - "type": "verbatim", + "type": "marker", "named": true } ] } }, { - "type": "thematic_break", - "named": true, - "fields": {} - }, - { - "type": "todo", - "named": true, - "fields": {} - }, - { - "type": "unchecked", + "type": "table_cell", "named": true, "fields": {} }, { - "type": "value", + "type": "table_header", "named": true, - "fields": {} + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "block_quote_marker", + "named": true + }, + { + "type": "table_cell", + "named": true + } + ] + } }, { - "type": "verbatim", + "type": "table_row", "named": true, "fields": {}, "children": { @@ -2674,62 +969,69 @@ "required": true, "types": [ { - "type": "content", + "type": "block_quote_marker", "named": true }, { - "type": "verbatim_marker_begin", + "type": "table_cell", + "named": true + } + ] + } + }, + { + "type": "table_separator", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "block_quote_marker", "named": true }, { - "type": "verbatim_marker_end", + "type": "table_cell_alignment", "named": true } ] } }, { - "type": "\u0000", - "named": false - }, - { - "type": " ", - "named": false - }, - { - "type": "![", - "named": false - }, - { - "type": "\"", - "named": false + "type": "term", + "named": true, + "fields": {} }, { - "type": "$", - "named": false + "type": "thematic_break", + "named": true, + "fields": {} }, { - "type": "%", - "named": false + "type": "unchecked", + "named": true, + "fields": {} }, { - "type": "(", - "named": false + "type": "value", + "named": true, + "fields": {} }, { - "type": ")", + "type": "\u0000", "named": false }, { - "type": "*", + "type": " ", "named": false }, { - "type": "+}", + "type": "\"", "named": false }, { - "type": "-}", + "type": "%", "named": false }, { @@ -2740,78 +1042,22 @@ "type": ":", "named": false }, - { - "type": "<", - "named": false - }, { "type": "=", "named": false }, - { - "type": "=}", - "named": false - }, - { - "type": ">", - "named": false - }, - { - "type": "INFO", - "named": false - }, - { - "type": "NOTE", - "named": false - }, - { - "type": "TODO", - "named": false - }, - { - "type": "WIP", - "named": false - }, { "type": "X", "named": false }, - { - "type": "XXX", - "named": false - }, { "type": "[", "named": false }, - { - "type": "[]", - "named": false - }, - { - "type": "[^", - "named": false - }, - { - "type": "\\", - "named": false - }, { "type": "]", "named": false }, - { - "type": "^", - "named": false - }, - { - "type": "^}", - "named": false - }, - { - "type": "_", - "named": false - }, { "type": "backslash_escape", "named": true @@ -2832,22 +1078,6 @@ "type": "div_marker_end", "named": true }, - { - "type": "ellipsis", - "named": true - }, - { - "type": "em_dash", - "named": true - }, - { - "type": "en_dash", - "named": true - }, - { - "type": "fixme", - "named": true - }, { "type": "footnote_marker_begin", "named": true @@ -2956,22 +1186,6 @@ "type": "marker", "named": true }, - { - "type": "math_marker", - "named": true - }, - { - "type": "math_marker_begin", - "named": true - }, - { - "type": "math_marker_end", - "named": true - }, - { - "type": "quotation_marks", - "named": true - }, { "type": "raw_block_marker_begin", "named": true @@ -2980,30 +1194,10 @@ "type": "raw_block_marker_end", "named": true }, - { - "type": "raw_inline_marker_begin", - "named": true - }, - { - "type": "raw_inline_marker_end", - "named": true - }, - { - "type": "symbol", - "named": true - }, { "type": "table_cell_alignment", "named": true }, - { - "type": "verbatim_marker_begin", - "named": true - }, - { - "type": "verbatim_marker_end", - "named": true - }, { "type": "x", "named": false @@ -3012,34 +1206,10 @@ "type": "{", "named": false }, - { - "type": "{*", - "named": false - }, - { - "type": "{+", - "named": false - }, { "type": "{-", "named": false }, - { - "type": "{=", - "named": false - }, - { - "type": "{^", - "named": false - }, - { - "type": "{_", - "named": false - }, - { - "type": "{~", - "named": false - }, { "type": "|", "named": false @@ -3047,13 +1217,5 @@ { "type": "}", "named": false - }, - { - "type": "~", - "named": false - }, - { - "type": "~}", - "named": false } ] \ No newline at end of file diff --git a/tree-sitter-djot/src/parser.c b/tree-sitter-djot/src/parser.c index a6b30c5..a8602c6 100644 --- a/tree-sitter-djot/src/parser.c +++ b/tree-sitter-djot/src/parser.c @@ -4,24 +4,16 @@ #pragma GCC diagnostic ignored "-Wmissing-field-initializers" #endif -#ifdef _MSC_VER -#pragma optimize("", off) -#elif defined(__clang__) -#pragma clang optimize off -#elif defined(__GNUC__) -#pragma GCC optimize ("O0") -#endif - #define LANGUAGE_VERSION 14 -#define STATE_COUNT 2379 -#define LARGE_STATE_COUNT 506 -#define SYMBOL_COUNT 314 -#define ALIAS_COUNT 16 -#define TOKEN_COUNT 129 -#define EXTERNAL_TOKEN_COUNT 57 +#define STATE_COUNT 1050 +#define LARGE_STATE_COUNT 60 +#define SYMBOL_COUNT 202 +#define ALIAS_COUNT 9 +#define TOKEN_COUNT 77 +#define EXTERNAL_TOKEN_COUNT 47 #define FIELD_COUNT 0 #define MAX_ALIAS_SEQUENCE_LENGTH 8 -#define PRODUCTION_ID_COUNT 20 +#define PRODUCTION_ID_COUNT 14 enum ts_symbol_identifiers { anon_sym_LBRACK = 1, @@ -47,312 +39,193 @@ enum ts_symbol_identifiers { aux_sym_value_token2 = 21, sym__whitespace = 22, sym__whitespace1 = 23, - anon_sym_BSLASH = 24, - sym_quotation_marks = 25, - sym_ellipsis = 26, - sym_em_dash = 27, - sym_en_dash = 28, - sym_backslash_escape = 29, - anon_sym_LT = 30, - aux_sym_autolink_token1 = 31, - anon_sym_GT = 32, - anon_sym_LBRACE_ = 33, - anon_sym__ = 34, - aux_sym_emphasis_end_token1 = 35, - anon_sym_LBRACE_STAR = 36, - anon_sym_STAR = 37, - aux_sym_strong_end_token1 = 38, - anon_sym_LBRACE_EQ = 39, - anon_sym_EQ_RBRACE = 40, - anon_sym_LBRACE_PLUS = 41, - anon_sym_PLUS_RBRACE = 42, - anon_sym_LBRACE_DASH = 43, - anon_sym_DASH_RBRACE = 44, - sym_symbol = 45, - anon_sym_LBRACE_CARET = 46, - anon_sym_CARET = 47, - anon_sym_CARET_RBRACE = 48, - anon_sym_LBRACE_TILDE = 49, - anon_sym_TILDE = 50, - anon_sym_TILDE_RBRACE = 51, - anon_sym_LBRACK_CARET = 52, - sym__id = 53, - anon_sym_LBRACK_RBRACK = 54, - anon_sym_BANG_LBRACK = 55, - anon_sym_RBRACK2 = 56, - anon_sym_LPAREN = 57, - aux_sym_inline_link_destination_token1 = 58, - anon_sym_RPAREN = 59, - anon_sym_LBRACE2 = 60, - anon_sym_PERCENT = 61, - aux_sym__comment_with_newline_token1 = 62, - anon_sym_LBRACE_EQ2 = 63, - anon_sym_DOLLAR = 64, - anon_sym_TODO = 65, - anon_sym_WIP = 66, - anon_sym_NOTE = 67, - anon_sym_INFO = 68, - anon_sym_XXX = 69, - sym_fixme = 70, - aux_sym__text_token1 = 71, - sym__ignored = 72, - sym__block_close = 73, - sym__eof_or_newline = 74, - sym__newline = 75, - sym__newline_inline = 76, - sym_frontmatter_marker = 77, - sym__heading1_begin = 78, - sym__heading1_continuation = 79, - sym__heading2_begin = 80, - sym__heading2_continuation = 81, - sym__heading3_begin = 82, - sym__heading3_continuation = 83, - sym__heading4_begin = 84, - sym__heading4_continuation = 85, - sym__heading5_begin = 86, - sym__heading5_continuation = 87, - sym__heading6_begin = 88, - sym__heading6_continuation = 89, - sym__div_begin = 90, - sym__div_end = 91, - sym__code_block_begin = 92, - sym__code_block_end = 93, - sym_list_marker_dash = 94, - sym_list_marker_star = 95, - sym_list_marker_plus = 96, - sym__list_marker_task_begin = 97, - sym_list_marker_definition = 98, - sym_list_marker_decimal_period = 99, - sym_list_marker_lower_alpha_period = 100, - sym_list_marker_upper_alpha_period = 101, - sym_list_marker_lower_roman_period = 102, - sym_list_marker_upper_roman_period = 103, - sym_list_marker_decimal_paren = 104, - sym_list_marker_lower_alpha_paren = 105, - sym_list_marker_upper_alpha_paren = 106, - sym_list_marker_lower_roman_paren = 107, - sym_list_marker_upper_roman_paren = 108, - sym_list_marker_decimal_parens = 109, - sym_list_marker_lower_alpha_parens = 110, - sym_list_marker_upper_alpha_parens = 111, - sym_list_marker_lower_roman_parens = 112, - sym_list_marker_upper_roman_parens = 113, - sym__list_item_continuation = 114, - sym__list_item_end = 115, - sym__close_paragraph = 116, - sym__block_quote_begin = 117, - sym__block_quote_continuation = 118, - sym__thematic_break_dash = 119, - sym__thematic_break_star = 120, - sym__footnote_begin = 121, - sym__footnote_end = 122, - sym__table_caption_begin = 123, - sym__table_caption_end = 124, - sym__verbatim_begin = 125, - sym__verbatim_end = 126, - sym__verbatim_content = 127, - sym__error = 128, - sym_document = 129, - sym_frontmatter = 130, - sym_frontmatter_content = 131, - sym__block_with_section = 132, - sym__block_with_heading = 133, - sym__block_element = 134, - sym_section = 135, - sym__heading = 136, - sym_heading1 = 137, - sym__heading1_content = 138, - sym_heading2 = 139, - sym__heading2_content = 140, - sym_heading3 = 141, - sym_heading4 = 142, - sym_heading5 = 143, - sym__heading5_content = 144, - sym_heading6 = 145, - sym__heading6_content = 146, - sym_list = 147, - sym__list_dash = 148, - sym__list_item_dash = 149, - sym__list_plus = 150, - sym__list_item_plus = 151, - sym__list_star = 152, - sym__list_item_star = 153, - sym__list_task = 154, - sym__list_item_task = 155, - sym_list_marker_task = 156, - sym_checked = 157, - sym_unchecked = 158, - sym__list_definition = 159, - sym__list_item_definition = 160, - sym__list_decimal_period = 161, - sym__list_item_decimal_period = 162, - sym__list_decimal_paren = 163, - sym__list_item_decimal_paren = 164, - sym__list_decimal_parens = 165, - sym__list_item_decimal_parens = 166, - sym__list_lower_alpha_period = 167, - sym__list_item_lower_alpha_period = 168, - sym__list_lower_alpha_paren = 169, - sym__list_item_lower_alpha_paren = 170, - sym__list_lower_alpha_parens = 171, - sym__list_item_lower_alpha_parens = 172, - sym__list_upper_alpha_period = 173, - sym__list_item_upper_alpha_period = 174, - sym__list_upper_alpha_paren = 175, - sym__list_item_upper_alpha_paren = 176, - sym__list_upper_alpha_parens = 177, - sym__list_item_upper_alpha_parens = 178, - sym__list_lower_roman_period = 179, - sym__list_item_lower_roman_period = 180, - sym__list_lower_roman_paren = 181, - sym__list_item_lower_roman_paren = 182, - sym__list_lower_roman_parens = 183, - sym__list_item_lower_roman_parens = 184, - sym__list_upper_roman_period = 185, - sym__list_item_upper_roman_period = 186, - sym__list_upper_roman_paren = 187, - sym__list_item_upper_roman_paren = 188, - sym__list_upper_roman_parens = 189, - sym__list_item_upper_roman_parens = 190, - sym_list_item_content = 191, - sym_table = 192, - sym__table_content = 193, - sym_table_separator = 194, - sym_table_row = 195, - sym_table_cell = 196, - sym_table_caption = 197, - sym_footnote = 198, - sym_footnote_content = 199, - sym_div = 200, - sym_div_marker_begin = 201, - sym_class_name = 202, - sym_code_block = 203, - sym_raw_block = 204, - sym_raw_block_info = 205, - sym_code = 206, - sym__line = 207, - sym_thematic_break = 208, - sym_block_quote = 209, - sym__block_quote_content = 210, - sym__block_quote_prefix = 211, - sym_link_reference_definition = 212, - sym_block_attribute = 213, - sym_class = 214, - sym_key_value = 215, - sym_key = 216, - sym_value = 217, - sym__paragraph = 218, - sym__paragraph_content = 219, - sym__one_or_two_newlines = 220, - sym__inline = 221, - sym__inline_element_with_whitespace = 222, - sym__inline_element_with_whitespace_without_newline = 223, - sym__inline_element_with_newline = 224, - sym__inline_core_element = 225, - sym__inline_no_surrounding_spaces = 226, - sym__inline_line = 227, - sym__hard_line_break = 228, - sym_hard_line_break = 229, - sym__smart_punctuation = 230, - sym_autolink = 231, - sym_emphasis = 232, - sym_emphasis_begin = 233, - sym_emphasis_end = 234, - sym_strong = 235, - sym_strong_begin = 236, - sym_strong_end = 237, - sym_highlighted = 238, - sym_insert = 239, - sym_delete = 240, - sym_superscript = 241, - sym_subscript = 242, - sym_footnote_reference = 243, - sym_reference_label = 244, - sym__image = 245, - sym_full_reference_image = 246, - sym_collapsed_reference_image = 247, - sym_inline_image = 248, - sym__image_description = 249, - sym__link = 250, - sym_full_reference_link = 251, - sym_collapsed_reference_link = 252, - sym_inline_link = 253, - sym_link_text = 254, - sym__link_label = 255, - sym_inline_link_destination = 256, - sym_inline_attribute = 257, - sym_comment = 258, - sym__comment_with_spaces = 259, - sym_span = 260, - sym__comment_with_newline = 261, - sym__comment_no_newline = 262, - sym_raw_inline = 263, - sym_raw_inline_attribute = 264, - sym_math = 265, - sym_verbatim = 266, - sym__todo_highlights = 267, - sym_todo = 268, - sym_note = 269, - sym__symbol_fallback = 270, - aux_sym__text = 271, - aux_sym_document_repeat1 = 272, - aux_sym_frontmatter_content_repeat1 = 273, - aux_sym__heading1_content_repeat1 = 274, - aux_sym__heading2_content_repeat1 = 275, - aux_sym__heading5_content_repeat1 = 276, - aux_sym__heading6_content_repeat1 = 277, - aux_sym__list_dash_repeat1 = 278, - aux_sym__list_plus_repeat1 = 279, - aux_sym__list_star_repeat1 = 280, - aux_sym__list_task_repeat1 = 281, - aux_sym__list_definition_repeat1 = 282, - aux_sym__list_item_definition_repeat1 = 283, - aux_sym__list_decimal_period_repeat1 = 284, - aux_sym__list_decimal_paren_repeat1 = 285, - aux_sym__list_decimal_parens_repeat1 = 286, - aux_sym__list_lower_alpha_period_repeat1 = 287, - aux_sym__list_lower_alpha_paren_repeat1 = 288, - aux_sym__list_lower_alpha_parens_repeat1 = 289, - aux_sym__list_upper_alpha_period_repeat1 = 290, - aux_sym__list_upper_alpha_paren_repeat1 = 291, - aux_sym__list_upper_alpha_parens_repeat1 = 292, - aux_sym__list_lower_roman_period_repeat1 = 293, - aux_sym__list_lower_roman_paren_repeat1 = 294, - aux_sym__list_lower_roman_parens_repeat1 = 295, - aux_sym__list_upper_roman_period_repeat1 = 296, - aux_sym__list_upper_roman_paren_repeat1 = 297, - aux_sym__list_upper_roman_parens_repeat1 = 298, - aux_sym_table_repeat1 = 299, - aux_sym_table_separator_repeat1 = 300, - aux_sym_table_row_repeat1 = 301, - aux_sym_table_cell_repeat1 = 302, - aux_sym_table_caption_repeat1 = 303, - aux_sym_footnote_content_repeat1 = 304, - aux_sym_code_repeat1 = 305, - aux_sym__block_quote_content_repeat1 = 306, - aux_sym__block_quote_prefix_repeat1 = 307, - aux_sym_block_attribute_repeat1 = 308, - aux_sym__inline_repeat1 = 309, - aux_sym_emphasis_begin_repeat1 = 310, - aux_sym_inline_attribute_repeat1 = 311, - aux_sym__comment_with_newline_repeat1 = 312, - aux_sym__comment_no_newline_repeat1 = 313, - alias_sym_args = 314, - anon_alias_sym_class = 315, - alias_sym_definition = 316, - alias_sym_image_description = 317, - alias_sym_language_marker = 318, - alias_sym_link_label = 319, - alias_sym_math_marker = 320, - alias_sym_math_marker_begin = 321, - alias_sym_math_marker_end = 322, - alias_sym_paragraph = 323, - alias_sym_raw_block_marker_begin = 324, - alias_sym_raw_block_marker_end = 325, - alias_sym_section_content = 326, - alias_sym_table_header = 327, - alias_sym_verbatim_marker_begin = 328, - alias_sym_verbatim_marker_end = 329, + aux_sym__inline_token1 = 24, + anon_sym_LBRACE_DASH = 25, + sym_backslash_escape = 26, + sym__id = 27, + anon_sym_PERCENT = 28, + aux_sym__comment_no_newline_token1 = 29, + sym__ignored = 30, + sym__block_close = 31, + sym__eof_or_newline = 32, + sym__newline = 33, + sym__newline_inline = 34, + sym_frontmatter_marker = 35, + sym__heading_begin = 36, + sym__heading_continuation = 37, + sym__div_begin = 38, + sym__div_end = 39, + sym__code_block_begin = 40, + sym__code_block_end = 41, + sym_list_marker_dash = 42, + sym_list_marker_star = 43, + sym_list_marker_plus = 44, + sym__list_marker_task_begin = 45, + sym_list_marker_definition = 46, + sym_list_marker_decimal_period = 47, + sym_list_marker_lower_alpha_period = 48, + sym_list_marker_upper_alpha_period = 49, + sym_list_marker_lower_roman_period = 50, + sym_list_marker_upper_roman_period = 51, + sym_list_marker_decimal_paren = 52, + sym_list_marker_lower_alpha_paren = 53, + sym_list_marker_upper_alpha_paren = 54, + sym_list_marker_lower_roman_paren = 55, + sym_list_marker_upper_roman_paren = 56, + sym_list_marker_decimal_parens = 57, + sym_list_marker_lower_alpha_parens = 58, + sym_list_marker_upper_alpha_parens = 59, + sym_list_marker_lower_roman_parens = 60, + sym_list_marker_upper_roman_parens = 61, + sym__list_item_continuation = 62, + sym__list_item_end = 63, + sym__close_paragraph = 64, + sym__block_quote_begin = 65, + sym__block_quote_continuation = 66, + sym__thematic_break_dash = 67, + sym__thematic_break_star = 68, + sym__footnote_begin = 69, + sym__footnote_end = 70, + sym__table_caption_begin = 71, + sym__table_caption_end = 72, + sym__verbatim_begin = 73, + sym__verbatim_end = 74, + sym__verbatim_content = 75, + sym__error = 76, + sym_document = 77, + sym_frontmatter = 78, + sym_frontmatter_content = 79, + sym__block_with_section = 80, + sym__block_with_heading = 81, + sym__block_element = 82, + sym_section = 83, + sym_heading = 84, + sym__heading_content = 85, + sym_list = 86, + sym__list_dash = 87, + sym__list_item_dash = 88, + sym__list_plus = 89, + sym__list_item_plus = 90, + sym__list_star = 91, + sym__list_item_star = 92, + sym__list_task = 93, + sym__list_item_task = 94, + sym_list_marker_task = 95, + sym_checked = 96, + sym_unchecked = 97, + sym__list_definition = 98, + sym__list_item_definition = 99, + sym__list_decimal_period = 100, + sym__list_item_decimal_period = 101, + sym__list_decimal_paren = 102, + sym__list_item_decimal_paren = 103, + sym__list_decimal_parens = 104, + sym__list_item_decimal_parens = 105, + sym__list_lower_alpha_period = 106, + sym__list_item_lower_alpha_period = 107, + sym__list_lower_alpha_paren = 108, + sym__list_item_lower_alpha_paren = 109, + sym__list_lower_alpha_parens = 110, + sym__list_item_lower_alpha_parens = 111, + sym__list_upper_alpha_period = 112, + sym__list_item_upper_alpha_period = 113, + sym__list_upper_alpha_paren = 114, + sym__list_item_upper_alpha_paren = 115, + sym__list_upper_alpha_parens = 116, + sym__list_item_upper_alpha_parens = 117, + sym__list_lower_roman_period = 118, + sym__list_item_lower_roman_period = 119, + sym__list_lower_roman_paren = 120, + sym__list_item_lower_roman_paren = 121, + sym__list_lower_roman_parens = 122, + sym__list_item_lower_roman_parens = 123, + sym__list_upper_roman_period = 124, + sym__list_item_upper_roman_period = 125, + sym__list_upper_roman_paren = 126, + sym__list_item_upper_roman_paren = 127, + sym__list_upper_roman_parens = 128, + sym__list_item_upper_roman_parens = 129, + sym_list_item_content = 130, + sym_table = 131, + sym__table_content = 132, + sym_table_separator = 133, + sym_table_row = 134, + sym_table_cell = 135, + sym_table_caption = 136, + sym_footnote = 137, + sym_footnote_content = 138, + sym_div = 139, + sym_div_marker_begin = 140, + sym_class_name = 141, + sym_code_block = 142, + sym_raw_block = 143, + sym_raw_block_info = 144, + sym_code = 145, + sym__line = 146, + sym_thematic_break = 147, + sym_block_quote = 148, + sym__block_quote_content = 149, + sym__block_quote_prefix = 150, + sym_link_reference_definition = 151, + sym_link_label = 152, + sym_block_attribute = 153, + sym_class = 154, + sym_key_value = 155, + sym_key = 156, + sym_value = 157, + sym__paragraph = 158, + sym__paragraph_content = 159, + sym__one_or_two_newlines = 160, + sym__inline = 161, + sym__inline_line = 162, + sym__symbol_fallback = 163, + sym_reference_label = 164, + sym__comment_no_newline = 165, + aux_sym_document_repeat1 = 166, + aux_sym_frontmatter_content_repeat1 = 167, + aux_sym__heading_content_repeat1 = 168, + aux_sym__list_dash_repeat1 = 169, + aux_sym__list_plus_repeat1 = 170, + aux_sym__list_star_repeat1 = 171, + aux_sym__list_task_repeat1 = 172, + aux_sym__list_definition_repeat1 = 173, + aux_sym__list_item_definition_repeat1 = 174, + aux_sym__list_decimal_period_repeat1 = 175, + aux_sym__list_decimal_paren_repeat1 = 176, + aux_sym__list_decimal_parens_repeat1 = 177, + aux_sym__list_lower_alpha_period_repeat1 = 178, + aux_sym__list_lower_alpha_paren_repeat1 = 179, + aux_sym__list_lower_alpha_parens_repeat1 = 180, + aux_sym__list_upper_alpha_period_repeat1 = 181, + aux_sym__list_upper_alpha_paren_repeat1 = 182, + aux_sym__list_upper_alpha_parens_repeat1 = 183, + aux_sym__list_lower_roman_period_repeat1 = 184, + aux_sym__list_lower_roman_paren_repeat1 = 185, + aux_sym__list_lower_roman_parens_repeat1 = 186, + aux_sym__list_upper_roman_period_repeat1 = 187, + aux_sym__list_upper_roman_paren_repeat1 = 188, + aux_sym__list_upper_roman_parens_repeat1 = 189, + aux_sym_table_repeat1 = 190, + aux_sym_table_separator_repeat1 = 191, + aux_sym_table_row_repeat1 = 192, + aux_sym_table_caption_repeat1 = 193, + aux_sym_footnote_content_repeat1 = 194, + aux_sym_code_repeat1 = 195, + aux_sym__block_quote_content_repeat1 = 196, + aux_sym__block_quote_prefix_repeat1 = 197, + aux_sym_block_attribute_repeat1 = 198, + aux_sym__paragraph_content_repeat1 = 199, + aux_sym__inline_repeat1 = 200, + aux_sym__comment_no_newline_repeat1 = 201, + alias_sym_args = 202, + anon_alias_sym_class = 203, + alias_sym_definition = 204, + alias_sym_language_marker = 205, + alias_sym_paragraph = 206, + alias_sym_raw_block_marker_begin = 207, + alias_sym_raw_block_marker_end = 208, + alias_sym_section_content = 209, + alias_sym_table_header = 210, }; static const char * const ts_symbol_names[] = { @@ -380,72 +253,20 @@ static const char * const ts_symbol_names[] = { [aux_sym_value_token2] = "value_token2", [sym__whitespace] = "_whitespace", [sym__whitespace1] = "_whitespace1", - [anon_sym_BSLASH] = "\\", - [sym_quotation_marks] = "quotation_marks", - [sym_ellipsis] = "ellipsis", - [sym_em_dash] = "em_dash", - [sym_en_dash] = "en_dash", - [sym_backslash_escape] = "backslash_escape", - [anon_sym_LT] = "<", - [aux_sym_autolink_token1] = "autolink_token1", - [anon_sym_GT] = ">", - [anon_sym_LBRACE_] = "{_", - [anon_sym__] = "_", - [aux_sym_emphasis_end_token1] = "emphasis_end_token1", - [anon_sym_LBRACE_STAR] = "{*", - [anon_sym_STAR] = "*", - [aux_sym_strong_end_token1] = "strong_end_token1", - [anon_sym_LBRACE_EQ] = "{=", - [anon_sym_EQ_RBRACE] = "=}", - [anon_sym_LBRACE_PLUS] = "{+", - [anon_sym_PLUS_RBRACE] = "+}", + [aux_sym__inline_token1] = "_inline_token1", [anon_sym_LBRACE_DASH] = "{-", - [anon_sym_DASH_RBRACE] = "-}", - [sym_symbol] = "symbol", - [anon_sym_LBRACE_CARET] = "{^", - [anon_sym_CARET] = "^", - [anon_sym_CARET_RBRACE] = "^}", - [anon_sym_LBRACE_TILDE] = "{~", - [anon_sym_TILDE] = "~", - [anon_sym_TILDE_RBRACE] = "~}", - [anon_sym_LBRACK_CARET] = "[^", + [sym_backslash_escape] = "backslash_escape", [sym__id] = "_id", - [anon_sym_LBRACK_RBRACK] = "[]", - [anon_sym_BANG_LBRACK] = "![", - [anon_sym_RBRACK2] = "]", - [anon_sym_LPAREN] = "(", - [aux_sym_inline_link_destination_token1] = "inline_link_destination_token1", - [anon_sym_RPAREN] = ")", - [anon_sym_LBRACE2] = "{", [anon_sym_PERCENT] = "%", - [aux_sym__comment_with_newline_token1] = "_comment_with_newline_token1", - [anon_sym_LBRACE_EQ2] = "{=", - [anon_sym_DOLLAR] = "$", - [anon_sym_TODO] = "TODO", - [anon_sym_WIP] = "WIP", - [anon_sym_NOTE] = "NOTE", - [anon_sym_INFO] = "INFO", - [anon_sym_XXX] = "XXX", - [sym_fixme] = "fixme", - [aux_sym__text_token1] = "_text_token1", + [aux_sym__comment_no_newline_token1] = "_comment_no_newline_token1", [sym__ignored] = "_ignored", [sym__block_close] = "_block_close", [sym__eof_or_newline] = "_eof_or_newline", [sym__newline] = "_newline", [sym__newline_inline] = "_newline_inline", [sym_frontmatter_marker] = "frontmatter_marker", - [sym__heading1_begin] = "marker", - [sym__heading1_continuation] = "marker", - [sym__heading2_begin] = "marker", - [sym__heading2_continuation] = "marker", - [sym__heading3_begin] = "marker", - [sym__heading3_continuation] = "marker", - [sym__heading4_begin] = "marker", - [sym__heading4_continuation] = "marker", - [sym__heading5_begin] = "marker", - [sym__heading5_continuation] = "marker", - [sym__heading6_begin] = "marker", - [sym__heading6_continuation] = "marker", + [sym__heading_begin] = "marker", + [sym__heading_continuation] = "marker", [sym__div_begin] = "_div_begin", [sym__div_end] = "div_marker_end", [sym__code_block_begin] = "code_block_marker_begin", @@ -481,9 +302,9 @@ static const char * const ts_symbol_names[] = { [sym__footnote_end] = "_footnote_end", [sym__table_caption_begin] = "marker", [sym__table_caption_end] = "_table_caption_end", - [sym__verbatim_begin] = "raw_inline_marker_begin", - [sym__verbatim_end] = "raw_inline_marker_end", - [sym__verbatim_content] = "content", + [sym__verbatim_begin] = "_verbatim_begin", + [sym__verbatim_end] = "_verbatim_end", + [sym__verbatim_content] = "_verbatim_content", [sym__error] = "_error", [sym_document] = "document", [sym_frontmatter] = "frontmatter", @@ -492,17 +313,8 @@ static const char * const ts_symbol_names[] = { [sym__block_with_heading] = "_block_with_heading", [sym__block_element] = "_block_element", [sym_section] = "section", - [sym__heading] = "_heading", - [sym_heading1] = "heading1", - [sym__heading1_content] = "content", - [sym_heading2] = "heading2", - [sym__heading2_content] = "content", - [sym_heading3] = "heading3", - [sym_heading4] = "heading4", - [sym_heading5] = "heading5", - [sym__heading5_content] = "content", - [sym_heading6] = "heading6", - [sym__heading6_content] = "content", + [sym_heading] = "heading", + [sym__heading_content] = "content", [sym_list] = "list", [sym__list_dash] = "_list_dash", [sym__list_item_dash] = "list_item", @@ -569,6 +381,7 @@ static const char * const ts_symbol_names[] = { [sym__block_quote_content] = "content", [sym__block_quote_prefix] = "_block_quote_prefix", [sym_link_reference_definition] = "link_reference_definition", + [sym_link_label] = "link_label", [sym_block_attribute] = "block_attribute", [sym_class] = "class", [sym_key_value] = "key_value", @@ -578,62 +391,13 @@ static const char * const ts_symbol_names[] = { [sym__paragraph_content] = "term", [sym__one_or_two_newlines] = "_one_or_two_newlines", [sym__inline] = "_inline", - [sym__inline_element_with_whitespace] = "_inline_element_with_whitespace", - [sym__inline_element_with_whitespace_without_newline] = "_inline_element_with_whitespace_without_newline", - [sym__inline_element_with_newline] = "_inline_element_with_newline", - [sym__inline_core_element] = "_inline_core_element", - [sym__inline_no_surrounding_spaces] = "content", [sym__inline_line] = "_inline_line", - [sym__hard_line_break] = "_hard_line_break", - [sym_hard_line_break] = "hard_line_break", - [sym__smart_punctuation] = "_smart_punctuation", - [sym_autolink] = "autolink", - [sym_emphasis] = "emphasis", - [sym_emphasis_begin] = "emphasis_begin", - [sym_emphasis_end] = "emphasis_end", - [sym_strong] = "strong", - [sym_strong_begin] = "strong_begin", - [sym_strong_end] = "strong_end", - [sym_highlighted] = "highlighted", - [sym_insert] = "insert", - [sym_delete] = "delete", - [sym_superscript] = "superscript", - [sym_subscript] = "subscript", - [sym_footnote_reference] = "footnote_reference", + [sym__symbol_fallback] = "_symbol_fallback", [sym_reference_label] = "reference_label", - [sym__image] = "_image", - [sym_full_reference_image] = "full_reference_image", - [sym_collapsed_reference_image] = "collapsed_reference_image", - [sym_inline_image] = "inline_image", - [sym__image_description] = "_image_description", - [sym__link] = "_link", - [sym_full_reference_link] = "full_reference_link", - [sym_collapsed_reference_link] = "collapsed_reference_link", - [sym_inline_link] = "inline_link", - [sym_link_text] = "link_text", - [sym__link_label] = "_link_label", - [sym_inline_link_destination] = "inline_link_destination", - [sym_inline_attribute] = "inline_attribute", - [sym_comment] = "comment", - [sym__comment_with_spaces] = "_comment_with_spaces", - [sym_span] = "span", - [sym__comment_with_newline] = "_comment_with_newline", [sym__comment_no_newline] = "comment", - [sym_raw_inline] = "raw_inline", - [sym_raw_inline_attribute] = "raw_inline_attribute", - [sym_math] = "math", - [sym_verbatim] = "verbatim", - [sym__todo_highlights] = "_todo_highlights", - [sym_todo] = "todo", - [sym_note] = "note", - [sym__symbol_fallback] = "_symbol_fallback", - [aux_sym__text] = "_text", [aux_sym_document_repeat1] = "document_repeat1", [aux_sym_frontmatter_content_repeat1] = "frontmatter_content_repeat1", - [aux_sym__heading1_content_repeat1] = "_heading1_content_repeat1", - [aux_sym__heading2_content_repeat1] = "_heading2_content_repeat1", - [aux_sym__heading5_content_repeat1] = "_heading5_content_repeat1", - [aux_sym__heading6_content_repeat1] = "_heading6_content_repeat1", + [aux_sym__heading_content_repeat1] = "_heading_content_repeat1", [aux_sym__list_dash_repeat1] = "_list_dash_repeat1", [aux_sym__list_plus_repeat1] = "_list_plus_repeat1", [aux_sym__list_star_repeat1] = "_list_star_repeat1", @@ -658,34 +422,24 @@ static const char * const ts_symbol_names[] = { [aux_sym_table_repeat1] = "table_repeat1", [aux_sym_table_separator_repeat1] = "table_separator_repeat1", [aux_sym_table_row_repeat1] = "table_row_repeat1", - [aux_sym_table_cell_repeat1] = "table_cell_repeat1", [aux_sym_table_caption_repeat1] = "table_caption_repeat1", [aux_sym_footnote_content_repeat1] = "footnote_content_repeat1", [aux_sym_code_repeat1] = "code_repeat1", [aux_sym__block_quote_content_repeat1] = "_block_quote_content_repeat1", [aux_sym__block_quote_prefix_repeat1] = "_block_quote_prefix_repeat1", [aux_sym_block_attribute_repeat1] = "block_attribute_repeat1", + [aux_sym__paragraph_content_repeat1] = "_paragraph_content_repeat1", [aux_sym__inline_repeat1] = "_inline_repeat1", - [aux_sym_emphasis_begin_repeat1] = "emphasis_begin_repeat1", - [aux_sym_inline_attribute_repeat1] = "inline_attribute_repeat1", - [aux_sym__comment_with_newline_repeat1] = "_comment_with_newline_repeat1", [aux_sym__comment_no_newline_repeat1] = "_comment_no_newline_repeat1", [alias_sym_args] = "args", [anon_alias_sym_class] = "class", [alias_sym_definition] = "definition", - [alias_sym_image_description] = "image_description", [alias_sym_language_marker] = "language_marker", - [alias_sym_link_label] = "link_label", - [alias_sym_math_marker] = "math_marker", - [alias_sym_math_marker_begin] = "math_marker_begin", - [alias_sym_math_marker_end] = "math_marker_end", [alias_sym_paragraph] = "paragraph", [alias_sym_raw_block_marker_begin] = "raw_block_marker_begin", [alias_sym_raw_block_marker_end] = "raw_block_marker_end", [alias_sym_section_content] = "section_content", [alias_sym_table_header] = "table_header", - [alias_sym_verbatim_marker_begin] = "verbatim_marker_begin", - [alias_sym_verbatim_marker_end] = "verbatim_marker_end", }; static const TSSymbol ts_symbol_map[] = { @@ -713,72 +467,20 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_value_token2] = aux_sym_value_token2, [sym__whitespace] = sym__whitespace, [sym__whitespace1] = sym__whitespace1, - [anon_sym_BSLASH] = anon_sym_BSLASH, - [sym_quotation_marks] = sym_quotation_marks, - [sym_ellipsis] = sym_ellipsis, - [sym_em_dash] = sym_em_dash, - [sym_en_dash] = sym_en_dash, - [sym_backslash_escape] = sym_backslash_escape, - [anon_sym_LT] = anon_sym_LT, - [aux_sym_autolink_token1] = aux_sym_autolink_token1, - [anon_sym_GT] = anon_sym_GT, - [anon_sym_LBRACE_] = anon_sym_LBRACE_, - [anon_sym__] = anon_sym__, - [aux_sym_emphasis_end_token1] = aux_sym_emphasis_end_token1, - [anon_sym_LBRACE_STAR] = anon_sym_LBRACE_STAR, - [anon_sym_STAR] = anon_sym_STAR, - [aux_sym_strong_end_token1] = aux_sym_strong_end_token1, - [anon_sym_LBRACE_EQ] = anon_sym_LBRACE_EQ, - [anon_sym_EQ_RBRACE] = anon_sym_EQ_RBRACE, - [anon_sym_LBRACE_PLUS] = anon_sym_LBRACE_PLUS, - [anon_sym_PLUS_RBRACE] = anon_sym_PLUS_RBRACE, + [aux_sym__inline_token1] = aux_sym__inline_token1, [anon_sym_LBRACE_DASH] = anon_sym_LBRACE_DASH, - [anon_sym_DASH_RBRACE] = anon_sym_DASH_RBRACE, - [sym_symbol] = sym_symbol, - [anon_sym_LBRACE_CARET] = anon_sym_LBRACE_CARET, - [anon_sym_CARET] = anon_sym_CARET, - [anon_sym_CARET_RBRACE] = anon_sym_CARET_RBRACE, - [anon_sym_LBRACE_TILDE] = anon_sym_LBRACE_TILDE, - [anon_sym_TILDE] = anon_sym_TILDE, - [anon_sym_TILDE_RBRACE] = anon_sym_TILDE_RBRACE, - [anon_sym_LBRACK_CARET] = anon_sym_LBRACK_CARET, + [sym_backslash_escape] = sym_backslash_escape, [sym__id] = sym__id, - [anon_sym_LBRACK_RBRACK] = anon_sym_LBRACK_RBRACK, - [anon_sym_BANG_LBRACK] = anon_sym_BANG_LBRACK, - [anon_sym_RBRACK2] = anon_sym_RBRACK, - [anon_sym_LPAREN] = anon_sym_LPAREN, - [aux_sym_inline_link_destination_token1] = aux_sym_inline_link_destination_token1, - [anon_sym_RPAREN] = anon_sym_RPAREN, - [anon_sym_LBRACE2] = anon_sym_LBRACE, [anon_sym_PERCENT] = anon_sym_PERCENT, - [aux_sym__comment_with_newline_token1] = aux_sym__comment_with_newline_token1, - [anon_sym_LBRACE_EQ2] = anon_sym_LBRACE_EQ, - [anon_sym_DOLLAR] = anon_sym_DOLLAR, - [anon_sym_TODO] = anon_sym_TODO, - [anon_sym_WIP] = anon_sym_WIP, - [anon_sym_NOTE] = anon_sym_NOTE, - [anon_sym_INFO] = anon_sym_INFO, - [anon_sym_XXX] = anon_sym_XXX, - [sym_fixme] = sym_fixme, - [aux_sym__text_token1] = aux_sym__text_token1, + [aux_sym__comment_no_newline_token1] = aux_sym__comment_no_newline_token1, [sym__ignored] = sym__ignored, [sym__block_close] = sym__block_close, [sym__eof_or_newline] = sym__eof_or_newline, [sym__newline] = sym__newline, [sym__newline_inline] = sym__newline_inline, [sym_frontmatter_marker] = sym_frontmatter_marker, - [sym__heading1_begin] = sym__heading1_begin, - [sym__heading1_continuation] = sym__heading1_begin, - [sym__heading2_begin] = sym__heading1_begin, - [sym__heading2_continuation] = sym__heading1_begin, - [sym__heading3_begin] = sym__heading1_begin, - [sym__heading3_continuation] = sym__heading1_begin, - [sym__heading4_begin] = sym__heading1_begin, - [sym__heading4_continuation] = sym__heading1_begin, - [sym__heading5_begin] = sym__heading1_begin, - [sym__heading5_continuation] = sym__heading1_begin, - [sym__heading6_begin] = sym__heading1_begin, - [sym__heading6_continuation] = sym__heading1_begin, + [sym__heading_begin] = sym__heading_begin, + [sym__heading_continuation] = sym__heading_begin, [sym__div_begin] = sym__div_begin, [sym__div_end] = sym__div_end, [sym__code_block_begin] = sym__code_block_begin, @@ -812,7 +514,7 @@ static const TSSymbol ts_symbol_map[] = { [sym__thematic_break_star] = sym__thematic_break_star, [sym__footnote_begin] = sym__footnote_begin, [sym__footnote_end] = sym__footnote_end, - [sym__table_caption_begin] = sym__heading1_begin, + [sym__table_caption_begin] = sym__heading_begin, [sym__table_caption_end] = sym__table_caption_end, [sym__verbatim_begin] = sym__verbatim_begin, [sym__verbatim_end] = sym__verbatim_end, @@ -825,17 +527,8 @@ static const TSSymbol ts_symbol_map[] = { [sym__block_with_heading] = sym__block_with_heading, [sym__block_element] = sym__block_element, [sym_section] = sym_section, - [sym__heading] = sym__heading, - [sym_heading1] = sym_heading1, - [sym__heading1_content] = sym__verbatim_content, - [sym_heading2] = sym_heading2, - [sym__heading2_content] = sym__verbatim_content, - [sym_heading3] = sym_heading3, - [sym_heading4] = sym_heading4, - [sym_heading5] = sym_heading5, - [sym__heading5_content] = sym__verbatim_content, - [sym_heading6] = sym_heading6, - [sym__heading6_content] = sym__verbatim_content, + [sym_heading] = sym_heading, + [sym__heading_content] = sym__heading_content, [sym_list] = sym_list, [sym__list_dash] = sym__list_dash, [sym__list_item_dash] = sym__list_item_dash, @@ -899,9 +592,10 @@ static const TSSymbol ts_symbol_map[] = { [sym__line] = sym__line, [sym_thematic_break] = sym_thematic_break, [sym_block_quote] = sym_block_quote, - [sym__block_quote_content] = sym__verbatim_content, + [sym__block_quote_content] = sym__heading_content, [sym__block_quote_prefix] = sym__block_quote_prefix, [sym_link_reference_definition] = sym_link_reference_definition, + [sym_link_label] = sym_link_label, [sym_block_attribute] = sym_block_attribute, [sym_class] = sym_class, [sym_key_value] = sym_key_value, @@ -911,62 +605,13 @@ static const TSSymbol ts_symbol_map[] = { [sym__paragraph_content] = sym__paragraph_content, [sym__one_or_two_newlines] = sym__one_or_two_newlines, [sym__inline] = sym__inline, - [sym__inline_element_with_whitespace] = sym__inline_element_with_whitespace, - [sym__inline_element_with_whitespace_without_newline] = sym__inline_element_with_whitespace_without_newline, - [sym__inline_element_with_newline] = sym__inline_element_with_newline, - [sym__inline_core_element] = sym__inline_core_element, - [sym__inline_no_surrounding_spaces] = sym__verbatim_content, [sym__inline_line] = sym__inline_line, - [sym__hard_line_break] = sym__hard_line_break, - [sym_hard_line_break] = sym_hard_line_break, - [sym__smart_punctuation] = sym__smart_punctuation, - [sym_autolink] = sym_autolink, - [sym_emphasis] = sym_emphasis, - [sym_emphasis_begin] = sym_emphasis_begin, - [sym_emphasis_end] = sym_emphasis_end, - [sym_strong] = sym_strong, - [sym_strong_begin] = sym_strong_begin, - [sym_strong_end] = sym_strong_end, - [sym_highlighted] = sym_highlighted, - [sym_insert] = sym_insert, - [sym_delete] = sym_delete, - [sym_superscript] = sym_superscript, - [sym_subscript] = sym_subscript, - [sym_footnote_reference] = sym_footnote_reference, - [sym_reference_label] = sym_reference_label, - [sym__image] = sym__image, - [sym_full_reference_image] = sym_full_reference_image, - [sym_collapsed_reference_image] = sym_collapsed_reference_image, - [sym_inline_image] = sym_inline_image, - [sym__image_description] = sym__image_description, - [sym__link] = sym__link, - [sym_full_reference_link] = sym_full_reference_link, - [sym_collapsed_reference_link] = sym_collapsed_reference_link, - [sym_inline_link] = sym_inline_link, - [sym_link_text] = sym_link_text, - [sym__link_label] = sym__link_label, - [sym_inline_link_destination] = sym_inline_link_destination, - [sym_inline_attribute] = sym_inline_attribute, - [sym_comment] = sym_comment, - [sym__comment_with_spaces] = sym__comment_with_spaces, - [sym_span] = sym_span, - [sym__comment_with_newline] = sym__comment_with_newline, - [sym__comment_no_newline] = sym_comment, - [sym_raw_inline] = sym_raw_inline, - [sym_raw_inline_attribute] = sym_raw_inline_attribute, - [sym_math] = sym_math, - [sym_verbatim] = sym_verbatim, - [sym__todo_highlights] = sym__todo_highlights, - [sym_todo] = sym_todo, - [sym_note] = sym_note, [sym__symbol_fallback] = sym__symbol_fallback, - [aux_sym__text] = aux_sym__text, + [sym_reference_label] = sym_reference_label, + [sym__comment_no_newline] = sym__comment_no_newline, [aux_sym_document_repeat1] = aux_sym_document_repeat1, [aux_sym_frontmatter_content_repeat1] = aux_sym_frontmatter_content_repeat1, - [aux_sym__heading1_content_repeat1] = aux_sym__heading1_content_repeat1, - [aux_sym__heading2_content_repeat1] = aux_sym__heading2_content_repeat1, - [aux_sym__heading5_content_repeat1] = aux_sym__heading5_content_repeat1, - [aux_sym__heading6_content_repeat1] = aux_sym__heading6_content_repeat1, + [aux_sym__heading_content_repeat1] = aux_sym__heading_content_repeat1, [aux_sym__list_dash_repeat1] = aux_sym__list_dash_repeat1, [aux_sym__list_plus_repeat1] = aux_sym__list_plus_repeat1, [aux_sym__list_star_repeat1] = aux_sym__list_star_repeat1, @@ -991,34 +636,24 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_table_repeat1] = aux_sym_table_repeat1, [aux_sym_table_separator_repeat1] = aux_sym_table_separator_repeat1, [aux_sym_table_row_repeat1] = aux_sym_table_row_repeat1, - [aux_sym_table_cell_repeat1] = aux_sym_table_cell_repeat1, [aux_sym_table_caption_repeat1] = aux_sym_table_caption_repeat1, [aux_sym_footnote_content_repeat1] = aux_sym_footnote_content_repeat1, [aux_sym_code_repeat1] = aux_sym_code_repeat1, [aux_sym__block_quote_content_repeat1] = aux_sym__block_quote_content_repeat1, [aux_sym__block_quote_prefix_repeat1] = aux_sym__block_quote_prefix_repeat1, [aux_sym_block_attribute_repeat1] = aux_sym_block_attribute_repeat1, + [aux_sym__paragraph_content_repeat1] = aux_sym__paragraph_content_repeat1, [aux_sym__inline_repeat1] = aux_sym__inline_repeat1, - [aux_sym_emphasis_begin_repeat1] = aux_sym_emphasis_begin_repeat1, - [aux_sym_inline_attribute_repeat1] = aux_sym_inline_attribute_repeat1, - [aux_sym__comment_with_newline_repeat1] = aux_sym__comment_with_newline_repeat1, [aux_sym__comment_no_newline_repeat1] = aux_sym__comment_no_newline_repeat1, [alias_sym_args] = alias_sym_args, [anon_alias_sym_class] = anon_alias_sym_class, [alias_sym_definition] = alias_sym_definition, - [alias_sym_image_description] = alias_sym_image_description, [alias_sym_language_marker] = alias_sym_language_marker, - [alias_sym_link_label] = alias_sym_link_label, - [alias_sym_math_marker] = alias_sym_math_marker, - [alias_sym_math_marker_begin] = alias_sym_math_marker_begin, - [alias_sym_math_marker_end] = alias_sym_math_marker_end, [alias_sym_paragraph] = alias_sym_paragraph, [alias_sym_raw_block_marker_begin] = alias_sym_raw_block_marker_begin, [alias_sym_raw_block_marker_end] = alias_sym_raw_block_marker_end, [alias_sym_section_content] = alias_sym_section_content, [alias_sym_table_header] = alias_sym_table_header, - [alias_sym_verbatim_marker_begin] = alias_sym_verbatim_marker_begin, - [alias_sym_verbatim_marker_end] = alias_sym_verbatim_marker_end, }; static const TSSymbolMetadata ts_symbol_metadata[] = { @@ -1118,195 +753,27 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, - [anon_sym_BSLASH] = { - .visible = true, - .named = false, - }, - [sym_quotation_marks] = { - .visible = true, - .named = true, - }, - [sym_ellipsis] = { - .visible = true, - .named = true, - }, - [sym_em_dash] = { - .visible = true, - .named = true, - }, - [sym_en_dash] = { - .visible = true, - .named = true, - }, - [sym_backslash_escape] = { - .visible = true, - .named = true, - }, - [anon_sym_LT] = { - .visible = true, - .named = false, - }, - [aux_sym_autolink_token1] = { + [aux_sym__inline_token1] = { .visible = false, .named = false, }, - [anon_sym_GT] = { - .visible = true, - .named = false, - }, - [anon_sym_LBRACE_] = { - .visible = true, - .named = false, - }, - [anon_sym__] = { - .visible = true, - .named = false, - }, - [aux_sym_emphasis_end_token1] = { - .visible = false, - .named = false, - }, - [anon_sym_LBRACE_STAR] = { - .visible = true, - .named = false, - }, - [anon_sym_STAR] = { - .visible = true, - .named = false, - }, - [aux_sym_strong_end_token1] = { - .visible = false, - .named = false, - }, - [anon_sym_LBRACE_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_EQ_RBRACE] = { - .visible = true, - .named = false, - }, - [anon_sym_LBRACE_PLUS] = { - .visible = true, - .named = false, - }, - [anon_sym_PLUS_RBRACE] = { - .visible = true, - .named = false, - }, [anon_sym_LBRACE_DASH] = { .visible = true, .named = false, }, - [anon_sym_DASH_RBRACE] = { - .visible = true, - .named = false, - }, - [sym_symbol] = { + [sym_backslash_escape] = { .visible = true, .named = true, }, - [anon_sym_LBRACE_CARET] = { - .visible = true, - .named = false, - }, - [anon_sym_CARET] = { - .visible = true, - .named = false, - }, - [anon_sym_CARET_RBRACE] = { - .visible = true, - .named = false, - }, - [anon_sym_LBRACE_TILDE] = { - .visible = true, - .named = false, - }, - [anon_sym_TILDE] = { - .visible = true, - .named = false, - }, - [anon_sym_TILDE_RBRACE] = { - .visible = true, - .named = false, - }, - [anon_sym_LBRACK_CARET] = { - .visible = true, - .named = false, - }, [sym__id] = { .visible = false, .named = true, }, - [anon_sym_LBRACK_RBRACK] = { - .visible = true, - .named = false, - }, - [anon_sym_BANG_LBRACK] = { - .visible = true, - .named = false, - }, - [anon_sym_RBRACK2] = { - .visible = true, - .named = false, - }, - [anon_sym_LPAREN] = { - .visible = true, - .named = false, - }, - [aux_sym_inline_link_destination_token1] = { - .visible = false, - .named = false, - }, - [anon_sym_RPAREN] = { - .visible = true, - .named = false, - }, - [anon_sym_LBRACE2] = { - .visible = true, - .named = false, - }, [anon_sym_PERCENT] = { .visible = true, .named = false, }, - [aux_sym__comment_with_newline_token1] = { - .visible = false, - .named = false, - }, - [anon_sym_LBRACE_EQ2] = { - .visible = true, - .named = false, - }, - [anon_sym_DOLLAR] = { - .visible = true, - .named = false, - }, - [anon_sym_TODO] = { - .visible = true, - .named = false, - }, - [anon_sym_WIP] = { - .visible = true, - .named = false, - }, - [anon_sym_NOTE] = { - .visible = true, - .named = false, - }, - [anon_sym_INFO] = { - .visible = true, - .named = false, - }, - [anon_sym_XXX] = { - .visible = true, - .named = false, - }, - [sym_fixme] = { - .visible = true, - .named = true, - }, - [aux_sym__text_token1] = { + [aux_sym__comment_no_newline_token1] = { .visible = false, .named = false, }, @@ -1334,51 +801,11 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym__heading1_begin] = { - .visible = true, - .named = true, - }, - [sym__heading1_continuation] = { - .visible = true, - .named = true, - }, - [sym__heading2_begin] = { - .visible = true, - .named = true, - }, - [sym__heading2_continuation] = { - .visible = true, - .named = true, - }, - [sym__heading3_begin] = { - .visible = true, - .named = true, - }, - [sym__heading3_continuation] = { - .visible = true, - .named = true, - }, - [sym__heading4_begin] = { - .visible = true, - .named = true, - }, - [sym__heading4_continuation] = { - .visible = true, - .named = true, - }, - [sym__heading5_begin] = { - .visible = true, - .named = true, - }, - [sym__heading5_continuation] = { - .visible = true, - .named = true, - }, - [sym__heading6_begin] = { + [sym__heading_begin] = { .visible = true, .named = true, }, - [sym__heading6_continuation] = { + [sym__heading_continuation] = { .visible = true, .named = true, }, @@ -1523,15 +950,15 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .named = true, }, [sym__verbatim_begin] = { - .visible = true, + .visible = false, .named = true, }, [sym__verbatim_end] = { - .visible = true, + .visible = false, .named = true, }, [sym__verbatim_content] = { - .visible = true, + .visible = false, .named = true, }, [sym__error] = { @@ -1566,47 +993,11 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym__heading] = { - .visible = false, - .named = true, - }, - [sym_heading1] = { - .visible = true, - .named = true, - }, - [sym__heading1_content] = { - .visible = true, - .named = true, - }, - [sym_heading2] = { - .visible = true, - .named = true, - }, - [sym__heading2_content] = { - .visible = true, - .named = true, - }, - [sym_heading3] = { - .visible = true, - .named = true, - }, - [sym_heading4] = { + [sym_heading] = { .visible = true, .named = true, }, - [sym_heading5] = { - .visible = true, - .named = true, - }, - [sym__heading5_content] = { - .visible = true, - .named = true, - }, - [sym_heading6] = { - .visible = true, - .named = true, - }, - [sym__heading6_content] = { + [sym__heading_content] = { .visible = true, .named = true, }, @@ -1874,6 +1265,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_link_label] = { + .visible = true, + .named = true, + }, [sym_block_attribute] = { .visible = true, .named = true, @@ -1910,253 +1305,57 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, - [sym__inline_element_with_whitespace] = { - .visible = false, - .named = true, - }, - [sym__inline_element_with_whitespace_without_newline] = { + [sym__inline_line] = { .visible = false, .named = true, }, - [sym__inline_element_with_newline] = { + [sym__symbol_fallback] = { .visible = false, .named = true, }, - [sym__inline_core_element] = { - .visible = false, + [sym_reference_label] = { + .visible = true, .named = true, }, - [sym__inline_no_surrounding_spaces] = { + [sym__comment_no_newline] = { .visible = true, .named = true, }, - [sym__inline_line] = { + [aux_sym_document_repeat1] = { .visible = false, - .named = true, + .named = false, }, - [sym__hard_line_break] = { + [aux_sym_frontmatter_content_repeat1] = { .visible = false, - .named = true, - }, - [sym_hard_line_break] = { - .visible = true, - .named = true, + .named = false, }, - [sym__smart_punctuation] = { + [aux_sym__heading_content_repeat1] = { .visible = false, - .named = true, + .named = false, }, - [sym_autolink] = { - .visible = true, - .named = true, + [aux_sym__list_dash_repeat1] = { + .visible = false, + .named = false, }, - [sym_emphasis] = { - .visible = true, - .named = true, + [aux_sym__list_plus_repeat1] = { + .visible = false, + .named = false, }, - [sym_emphasis_begin] = { - .visible = true, - .named = true, + [aux_sym__list_star_repeat1] = { + .visible = false, + .named = false, }, - [sym_emphasis_end] = { - .visible = true, - .named = true, + [aux_sym__list_task_repeat1] = { + .visible = false, + .named = false, }, - [sym_strong] = { - .visible = true, - .named = true, + [aux_sym__list_definition_repeat1] = { + .visible = false, + .named = false, }, - [sym_strong_begin] = { - .visible = true, - .named = true, - }, - [sym_strong_end] = { - .visible = true, - .named = true, - }, - [sym_highlighted] = { - .visible = true, - .named = true, - }, - [sym_insert] = { - .visible = true, - .named = true, - }, - [sym_delete] = { - .visible = true, - .named = true, - }, - [sym_superscript] = { - .visible = true, - .named = true, - }, - [sym_subscript] = { - .visible = true, - .named = true, - }, - [sym_footnote_reference] = { - .visible = true, - .named = true, - }, - [sym_reference_label] = { - .visible = true, - .named = true, - }, - [sym__image] = { - .visible = false, - .named = true, - }, - [sym_full_reference_image] = { - .visible = true, - .named = true, - }, - [sym_collapsed_reference_image] = { - .visible = true, - .named = true, - }, - [sym_inline_image] = { - .visible = true, - .named = true, - }, - [sym__image_description] = { - .visible = false, - .named = true, - }, - [sym__link] = { - .visible = false, - .named = true, - }, - [sym_full_reference_link] = { - .visible = true, - .named = true, - }, - [sym_collapsed_reference_link] = { - .visible = true, - .named = true, - }, - [sym_inline_link] = { - .visible = true, - .named = true, - }, - [sym_link_text] = { - .visible = true, - .named = true, - }, - [sym__link_label] = { - .visible = false, - .named = true, - }, - [sym_inline_link_destination] = { - .visible = true, - .named = true, - }, - [sym_inline_attribute] = { - .visible = true, - .named = true, - }, - [sym_comment] = { - .visible = true, - .named = true, - }, - [sym__comment_with_spaces] = { - .visible = false, - .named = true, - }, - [sym_span] = { - .visible = true, - .named = true, - }, - [sym__comment_with_newline] = { - .visible = false, - .named = true, - }, - [sym__comment_no_newline] = { - .visible = true, - .named = true, - }, - [sym_raw_inline] = { - .visible = true, - .named = true, - }, - [sym_raw_inline_attribute] = { - .visible = true, - .named = true, - }, - [sym_math] = { - .visible = true, - .named = true, - }, - [sym_verbatim] = { - .visible = true, - .named = true, - }, - [sym__todo_highlights] = { - .visible = false, - .named = true, - }, - [sym_todo] = { - .visible = true, - .named = true, - }, - [sym_note] = { - .visible = true, - .named = true, - }, - [sym__symbol_fallback] = { - .visible = false, - .named = true, - }, - [aux_sym__text] = { - .visible = false, - .named = false, - }, - [aux_sym_document_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_frontmatter_content_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym__heading1_content_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym__heading2_content_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym__heading5_content_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym__heading6_content_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym__list_dash_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym__list_plus_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym__list_star_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym__list_task_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym__list_definition_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym__list_item_definition_repeat1] = { - .visible = false, - .named = false, + [aux_sym__list_item_definition_repeat1] = { + .visible = false, + .named = false, }, [aux_sym__list_decimal_period_repeat1] = { .visible = false, @@ -2230,10 +1429,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_table_cell_repeat1] = { - .visible = false, - .named = false, - }, [aux_sym_table_caption_repeat1] = { .visible = false, .named = false, @@ -2258,19 +1453,11 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym__inline_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_emphasis_begin_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_inline_attribute_repeat1] = { + [aux_sym__paragraph_content_repeat1] = { .visible = false, .named = false, }, - [aux_sym__comment_with_newline_repeat1] = { + [aux_sym__inline_repeat1] = { .visible = false, .named = false, }, @@ -2290,30 +1477,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [alias_sym_image_description] = { - .visible = true, - .named = true, - }, [alias_sym_language_marker] = { .visible = true, .named = true, }, - [alias_sym_link_label] = { - .visible = true, - .named = true, - }, - [alias_sym_math_marker] = { - .visible = true, - .named = true, - }, - [alias_sym_math_marker_begin] = { - .visible = true, - .named = true, - }, - [alias_sym_math_marker_end] = { - .visible = true, - .named = true, - }, [alias_sym_paragraph] = { .visible = true, .named = true, @@ -2334,14 +1501,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [alias_sym_verbatim_marker_begin] = { - .visible = true, - .named = true, - }, - [alias_sym_verbatim_marker_end] = { - .visible = true, - .named = true, - }, }; static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { @@ -2353,62 +1512,40 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [0] = alias_sym_paragraph, }, [3] = { - [0] = alias_sym_verbatim_marker_begin, - [2] = alias_sym_verbatim_marker_end, + [1] = anon_alias_sym_class, }, [4] = { - [1] = anon_alias_sym_class, + [1] = alias_sym_section_content, }, [5] = { - [0] = sym_comment, + [0] = alias_sym_language_marker, }, [6] = { - [1] = sym__verbatim_content, + [1] = sym__heading_content, }, [7] = { - [0] = sym__footnote_begin, - [2] = anon_sym_RBRACK_COLON, + [1] = alias_sym_args, }, [8] = { - [1] = alias_sym_image_description, + [2] = sym__heading_content, }, [9] = { - [1] = alias_sym_section_content, - }, - [10] = { - [0] = alias_sym_language_marker, - }, - [11] = { - [1] = alias_sym_args, - }, - [12] = { - [0] = alias_sym_math_marker, - [1] = alias_sym_math_marker_begin, - [3] = alias_sym_math_marker_end, - }, - [13] = { - [2] = sym__verbatim_content, - }, - [14] = { - [1] = alias_sym_link_label, - }, - [15] = { [0] = alias_sym_raw_block_marker_begin, }, - [16] = { + [10] = { [3] = alias_sym_definition, }, - [17] = { + [11] = { [0] = alias_sym_raw_block_marker_begin, - [4] = sym__verbatim_content, + [4] = sym__heading_content, }, - [18] = { + [12] = { [0] = alias_sym_raw_block_marker_begin, [5] = alias_sym_raw_block_marker_end, }, - [19] = { + [13] = { [0] = alias_sym_raw_block_marker_begin, - [4] = sym__verbatim_content, + [4] = sym__heading_content, [6] = alias_sym_raw_block_marker_end, }, }; @@ -2422,18 +1559,10 @@ static const uint16_t ts_non_terminal_alias_map[] = { anon_alias_sym_class, sym_code, 2, sym_code, - sym__verbatim_content, + sym__heading_content, sym__paragraph_content, 2, sym__paragraph_content, alias_sym_paragraph, - sym__inline, 4, - sym__inline, - alias_sym_image_description, - alias_sym_link_label, - sym__verbatim_content, - sym__comment_with_newline, 2, - sym__comment_with_newline, - sym_comment, aux_sym_document_repeat1, 2, aux_sym_document_repeat1, alias_sym_section_content, @@ -2442,22 +1571,16 @@ static const uint16_t ts_non_terminal_alias_map[] = { alias_sym_definition, aux_sym_table_caption_repeat1, 2, aux_sym_table_caption_repeat1, - sym__verbatim_content, + sym__heading_content, aux_sym_footnote_content_repeat1, 2, aux_sym_footnote_content_repeat1, - sym__verbatim_content, + sym__heading_content, aux_sym_block_attribute_repeat1, 2, aux_sym_block_attribute_repeat1, alias_sym_args, - aux_sym_inline_attribute_repeat1, 2, - aux_sym_inline_attribute_repeat1, - alias_sym_args, - aux_sym__comment_with_newline_repeat1, 2, - aux_sym__comment_with_newline_repeat1, - sym__verbatim_content, aux_sym__comment_no_newline_repeat1, 2, aux_sym__comment_no_newline_repeat1, - sym__verbatim_content, + sym__heading_content, 0, }; @@ -2466,31 +1589,31 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1] = 1, [2] = 2, [3] = 3, - [4] = 2, + [4] = 4, [5] = 5, - [6] = 3, - [7] = 7, - [8] = 8, - [9] = 8, - [10] = 10, + [6] = 6, + [7] = 6, + [8] = 4, + [9] = 9, + [10] = 5, [11] = 11, - [12] = 11, - [13] = 13, + [12] = 12, + [13] = 12, [14] = 14, - [15] = 15, - [16] = 13, - [17] = 14, - [18] = 15, + [15] = 14, + [16] = 12, + [17] = 17, + [18] = 18, [19] = 11, [20] = 14, [21] = 11, - [22] = 14, - [23] = 11, - [24] = 13, - [25] = 25, + [22] = 12, + [23] = 14, + [24] = 18, + [25] = 11, [26] = 14, - [27] = 13, - [28] = 13, + [27] = 12, + [28] = 11, [29] = 29, [30] = 30, [31] = 31, @@ -2523,2324 +1646,995 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [58] = 54, [59] = 59, [60] = 60, - [61] = 61, - [62] = 62, + [61] = 60, + [62] = 60, [63] = 63, - [64] = 61, - [65] = 61, - [66] = 60, - [67] = 60, - [68] = 61, - [69] = 61, - [70] = 70, - [71] = 63, - [72] = 63, + [64] = 63, + [65] = 63, + [66] = 66, + [67] = 66, + [68] = 66, + [69] = 69, + [70] = 69, + [71] = 69, + [72] = 72, [73] = 73, - [74] = 73, - [75] = 63, - [76] = 63, - [77] = 73, - [78] = 63, + [74] = 74, + [75] = 75, + [76] = 76, + [77] = 77, + [78] = 78, [79] = 79, [80] = 80, - [81] = 63, - [82] = 63, + [81] = 81, + [82] = 82, [83] = 83, [84] = 84, - [85] = 63, - [86] = 63, + [85] = 85, + [86] = 86, [87] = 87, - [88] = 79, - [89] = 70, - [90] = 80, - [91] = 84, - [92] = 87, - [93] = 87, - [94] = 70, - [95] = 83, - [96] = 63, - [97] = 70, - [98] = 98, - [99] = 99, - [100] = 79, - [101] = 101, - [102] = 80, - [103] = 84, - [104] = 98, - [105] = 105, - [106] = 87, - [107] = 70, - [108] = 83, - [109] = 109, - [110] = 110, - [111] = 111, - [112] = 112, - [113] = 109, - [114] = 105, - [115] = 101, - [116] = 112, - [117] = 111, - [118] = 98, - [119] = 84, - [120] = 80, - [121] = 98, - [122] = 83, - [123] = 79, - [124] = 110, - [125] = 111, - [126] = 112, - [127] = 109, - [128] = 105, - [129] = 101, - [130] = 79, - [131] = 80, - [132] = 98, - [133] = 79, - [134] = 80, - [135] = 84, - [136] = 63, - [137] = 84, - [138] = 110, - [139] = 111, - [140] = 112, - [141] = 109, - [142] = 105, - [143] = 101, - [144] = 87, - [145] = 79, - [146] = 70, - [147] = 87, - [148] = 83, - [149] = 83, - [150] = 83, - [151] = 110, - [152] = 83, - [153] = 79, - [154] = 83, - [155] = 80, + [88] = 88, + [89] = 89, + [90] = 86, + [91] = 87, + [92] = 86, + [93] = 89, + [94] = 88, + [95] = 72, + [96] = 73, + [97] = 74, + [98] = 75, + [99] = 76, + [100] = 77, + [101] = 78, + [102] = 84, + [103] = 79, + [104] = 80, + [105] = 81, + [106] = 82, + [107] = 83, + [108] = 82, + [109] = 83, + [110] = 81, + [111] = 84, + [112] = 80, + [113] = 79, + [114] = 78, + [115] = 77, + [116] = 76, + [117] = 87, + [118] = 85, + [119] = 75, + [120] = 74, + [121] = 73, + [122] = 72, + [123] = 88, + [124] = 89, + [125] = 125, + [126] = 126, + [127] = 127, + [128] = 128, + [129] = 129, + [130] = 130, + [131] = 131, + [132] = 132, + [133] = 126, + [134] = 134, + [135] = 135, + [136] = 136, + [137] = 137, + [138] = 138, + [139] = 139, + [140] = 140, + [141] = 141, + [142] = 128, + [143] = 143, + [144] = 126, + [145] = 145, + [146] = 146, + [147] = 147, + [148] = 148, + [149] = 149, + [150] = 150, + [151] = 151, + [152] = 127, + [153] = 153, + [154] = 154, + [155] = 155, [156] = 156, - [157] = 80, - [158] = 79, - [159] = 80, - [160] = 79, - [161] = 80, - [162] = 84, - [163] = 84, - [164] = 87, - [165] = 70, - [166] = 87, - [167] = 83, - [168] = 70, - [169] = 156, - [170] = 84, - [171] = 84, - [172] = 87, - [173] = 63, - [174] = 99, - [175] = 87, - [176] = 156, - [177] = 70, - [178] = 99, - [179] = 156, - [180] = 99, - [181] = 156, - [182] = 70, - [183] = 70, - [184] = 87, - [185] = 84, - [186] = 80, - [187] = 79, - [188] = 99, - [189] = 83, - [190] = 190, - [191] = 84, - [192] = 80, - [193] = 79, - [194] = 194, - [195] = 87, - [196] = 83, - [197] = 84, + [157] = 157, + [158] = 139, + [159] = 159, + [160] = 160, + [161] = 161, + [162] = 146, + [163] = 163, + [164] = 164, + [165] = 165, + [166] = 125, + [167] = 167, + [168] = 168, + [169] = 169, + [170] = 170, + [171] = 170, + [172] = 169, + [173] = 173, + [174] = 167, + [175] = 165, + [176] = 168, + [177] = 163, + [178] = 178, + [179] = 161, + [180] = 159, + [181] = 157, + [182] = 155, + [183] = 153, + [184] = 151, + [185] = 149, + [186] = 147, + [187] = 145, + [188] = 143, + [189] = 141, + [190] = 154, + [191] = 138, + [192] = 192, + [193] = 135, + [194] = 132, + [195] = 173, + [196] = 129, + [197] = 178, [198] = 198, - [199] = 70, - [200] = 87, - [201] = 70, - [202] = 83, + [199] = 148, + [200] = 200, + [201] = 201, + [202] = 131, [203] = 203, - [204] = 204, - [205] = 205, - [206] = 206, - [207] = 79, - [208] = 80, - [209] = 209, - [210] = 209, - [211] = 211, - [212] = 212, - [213] = 209, - [214] = 211, - [215] = 212, - [216] = 194, - [217] = 198, - [218] = 194, - [219] = 198, - [220] = 209, - [221] = 209, - [222] = 194, - [223] = 211, - [224] = 209, - [225] = 209, - [226] = 194, - [227] = 198, - [228] = 209, - [229] = 198, - [230] = 198, - [231] = 194, - [232] = 209, - [233] = 194, - [234] = 209, - [235] = 194, - [236] = 209, - [237] = 194, - [238] = 209, - [239] = 198, - [240] = 209, - [241] = 198, - [242] = 198, - [243] = 243, - [244] = 244, - [245] = 243, - [246] = 246, - [247] = 246, - [248] = 244, - [249] = 244, - [250] = 250, - [251] = 243, - [252] = 246, - [253] = 253, - [254] = 253, - [255] = 250, - [256] = 246, - [257] = 243, - [258] = 253, - [259] = 250, - [260] = 243, - [261] = 246, - [262] = 194, - [263] = 244, - [264] = 250, - [265] = 265, - [266] = 265, - [267] = 250, - [268] = 253, - [269] = 253, - [270] = 244, + [204] = 134, + [205] = 137, + [206] = 140, + [207] = 160, + [208] = 128, + [209] = 140, + [210] = 125, + [211] = 146, + [212] = 200, + [213] = 148, + [214] = 150, + [215] = 150, + [216] = 156, + [217] = 217, + [218] = 217, + [219] = 127, + [220] = 154, + [221] = 136, + [222] = 156, + [223] = 131, + [224] = 139, + [225] = 160, + [226] = 226, + [227] = 203, + [228] = 134, + [229] = 164, + [230] = 203, + [231] = 137, + [232] = 168, + [233] = 164, + [234] = 170, + [235] = 198, + [236] = 169, + [237] = 167, + [238] = 165, + [239] = 163, + [240] = 226, + [241] = 161, + [242] = 159, + [243] = 157, + [244] = 155, + [245] = 201, + [246] = 153, + [247] = 151, + [248] = 149, + [249] = 147, + [250] = 145, + [251] = 143, + [252] = 141, + [253] = 138, + [254] = 200, + [255] = 201, + [256] = 135, + [257] = 132, + [258] = 129, + [259] = 178, + [260] = 260, + [261] = 261, + [262] = 262, + [263] = 262, + [264] = 262, + [265] = 262, + [266] = 262, + [267] = 60, + [268] = 63, + [269] = 269, + [270] = 270, [271] = 271, - [272] = 272, - [273] = 272, - [274] = 271, - [275] = 272, - [276] = 272, - [277] = 271, - [278] = 272, - [279] = 271, - [280] = 272, - [281] = 271, - [282] = 272, - [283] = 271, + [272] = 270, + [273] = 270, + [274] = 60, + [275] = 269, + [276] = 269, + [277] = 269, + [278] = 269, + [279] = 270, + [280] = 270, + [281] = 281, + [282] = 281, + [283] = 283, [284] = 284, - [285] = 271, - [286] = 271, - [287] = 272, - [288] = 272, - [289] = 271, - [290] = 271, - [291] = 271, - [292] = 284, - [293] = 272, - [294] = 272, - [295] = 272, - [296] = 271, - [297] = 284, - [298] = 272, - [299] = 271, - [300] = 300, - [301] = 301, - [302] = 302, + [285] = 281, + [286] = 284, + [287] = 284, + [288] = 281, + [289] = 63, + [290] = 284, + [291] = 284, + [292] = 281, + [293] = 293, + [294] = 294, + [295] = 295, + [296] = 294, + [297] = 297, + [298] = 293, + [299] = 299, + [300] = 294, + [301] = 297, + [302] = 294, [303] = 303, - [304] = 304, - [305] = 305, + [304] = 297, + [305] = 303, [306] = 306, - [307] = 305, - [308] = 308, - [309] = 309, - [310] = 310, - [311] = 311, - [312] = 312, - [313] = 313, - [314] = 314, - [315] = 315, - [316] = 316, - [317] = 317, - [318] = 318, - [319] = 319, - [320] = 320, - [321] = 316, - [322] = 314, - [323] = 313, - [324] = 312, - [325] = 311, - [326] = 315, - [327] = 309, - [328] = 306, - [329] = 303, - [330] = 304, - [331] = 320, - [332] = 319, - [333] = 318, - [334] = 317, - [335] = 301, - [336] = 315, + [307] = 306, + [308] = 299, + [309] = 295, + [310] = 303, + [311] = 299, + [312] = 295, + [313] = 299, + [314] = 306, + [315] = 299, + [316] = 306, + [317] = 293, + [318] = 295, + [319] = 295, + [320] = 306, + [321] = 297, + [322] = 294, + [323] = 303, + [324] = 297, + [325] = 293, + [326] = 303, + [327] = 66, + [328] = 328, + [329] = 329, + [330] = 330, + [331] = 331, + [332] = 332, + [333] = 333, + [334] = 329, + [335] = 335, + [336] = 329, [337] = 337, - [338] = 302, - [339] = 339, - [340] = 340, - [341] = 341, - [342] = 304, - [343] = 305, - [344] = 303, - [345] = 306, - [346] = 309, + [338] = 338, + [339] = 338, + [340] = 333, + [341] = 333, + [342] = 338, + [343] = 337, + [344] = 66, + [345] = 335, + [346] = 261, [347] = 347, - [348] = 311, - [349] = 312, - [350] = 313, - [351] = 339, - [352] = 347, - [353] = 319, - [354] = 318, - [355] = 337, - [356] = 340, - [357] = 320, - [358] = 317, - [359] = 341, - [360] = 316, - [361] = 301, - [362] = 314, + [348] = 335, + [349] = 349, + [350] = 337, + [351] = 331, + [352] = 338, + [353] = 337, + [354] = 335, + [355] = 338, + [356] = 335, + [357] = 337, + [358] = 358, + [359] = 331, + [360] = 333, + [361] = 333, + [362] = 261, [363] = 363, [364] = 364, [365] = 365, - [366] = 366, + [366] = 364, [367] = 367, - [368] = 368, + [368] = 364, [369] = 369, [370] = 370, [371] = 371, [372] = 372, [373] = 373, - [374] = 374, - [375] = 375, - [376] = 376, - [377] = 377, - [378] = 378, + [374] = 369, + [375] = 370, + [376] = 329, + [377] = 363, + [378] = 367, [379] = 379, - [380] = 380, - [381] = 379, - [382] = 382, - [383] = 383, - [384] = 384, - [385] = 385, - [386] = 386, - [387] = 383, - [388] = 388, - [389] = 363, - [390] = 390, - [391] = 391, - [392] = 392, - [393] = 393, + [380] = 363, + [381] = 367, + [382] = 364, + [383] = 369, + [384] = 369, + [385] = 370, + [386] = 370, + [387] = 387, + [388] = 331, + [389] = 370, + [390] = 369, + [391] = 364, + [392] = 363, + [393] = 367, [394] = 394, - [395] = 395, - [396] = 372, - [397] = 373, + [395] = 363, + [396] = 367, + [397] = 349, [398] = 398, - [399] = 399, + [399] = 398, [400] = 400, - [401] = 401, - [402] = 402, + [401] = 76, + [402] = 75, [403] = 403, - [404] = 379, + [404] = 398, [405] = 405, - [406] = 384, - [407] = 385, - [408] = 408, - [409] = 386, - [410] = 410, - [411] = 391, - [412] = 392, - [413] = 410, - [414] = 405, - [415] = 415, - [416] = 394, + [406] = 403, + [407] = 398, + [408] = 403, + [409] = 88, + [410] = 89, + [411] = 398, + [412] = 412, + [413] = 413, + [414] = 403, + [415] = 87, + [416] = 403, [417] = 403, - [418] = 408, - [419] = 400, - [420] = 398, - [421] = 402, - [422] = 402, - [423] = 423, - [424] = 395, + [418] = 398, + [419] = 403, + [420] = 403, + [421] = 398, + [422] = 403, + [423] = 403, + [424] = 424, [425] = 398, - [426] = 426, - [427] = 394, - [428] = 428, - [429] = 408, - [430] = 430, - [431] = 410, - [432] = 432, - [433] = 433, - [434] = 392, - [435] = 435, - [436] = 393, - [437] = 428, - [438] = 405, - [439] = 435, - [440] = 403, - [441] = 400, - [442] = 363, - [443] = 395, - [444] = 391, - [445] = 445, - [446] = 378, - [447] = 426, - [448] = 386, - [449] = 449, - [450] = 393, - [451] = 388, - [452] = 382, - [453] = 423, + [426] = 398, + [427] = 427, + [428] = 398, + [429] = 403, + [430] = 403, + [431] = 424, + [432] = 81, + [433] = 398, + [434] = 82, + [435] = 424, + [436] = 424, + [437] = 398, + [438] = 398, + [439] = 403, + [440] = 398, + [441] = 403, + [442] = 403, + [443] = 398, + [444] = 398, + [445] = 424, + [446] = 446, + [447] = 398, + [448] = 403, + [449] = 403, + [450] = 450, + [451] = 398, + [452] = 403, + [453] = 453, [454] = 454, - [455] = 385, - [456] = 415, + [455] = 455, + [456] = 403, [457] = 457, - [458] = 365, - [459] = 384, - [460] = 388, - [461] = 383, - [462] = 462, - [463] = 367, - [464] = 457, - [465] = 371, - [466] = 380, - [467] = 374, - [468] = 375, - [469] = 376, - [470] = 377, - [471] = 401, - [472] = 415, - [473] = 428, - [474] = 432, - [475] = 435, - [476] = 430, - [477] = 380, - [478] = 426, - [479] = 454, - [480] = 457, - [481] = 373, - [482] = 365, - [483] = 367, - [484] = 372, - [485] = 371, - [486] = 382, - [487] = 423, - [488] = 378, - [489] = 454, - [490] = 390, - [491] = 401, - [492] = 449, - [493] = 364, - [494] = 370, - [495] = 433, - [496] = 366, - [497] = 368, - [498] = 374, - [499] = 390, - [500] = 377, - [501] = 369, - [502] = 375, - [503] = 376, - [504] = 399, - [505] = 505, - [506] = 506, - [507] = 507, - [508] = 507, - [509] = 507, - [510] = 507, - [511] = 507, + [458] = 398, + [459] = 69, + [460] = 460, + [461] = 89, + [462] = 88, + [463] = 75, + [464] = 76, + [465] = 81, + [466] = 82, + [467] = 467, + [468] = 87, + [469] = 469, + [470] = 470, + [471] = 471, + [472] = 472, + [473] = 473, + [474] = 474, + [475] = 475, + [476] = 476, + [477] = 477, + [478] = 470, + [479] = 471, + [480] = 480, + [481] = 481, + [482] = 482, + [483] = 483, + [484] = 472, + [485] = 485, + [486] = 486, + [487] = 475, + [488] = 488, + [489] = 486, + [490] = 490, + [491] = 476, + [492] = 471, + [493] = 493, + [494] = 494, + [495] = 480, + [496] = 481, + [497] = 482, + [498] = 483, + [499] = 485, + [500] = 486, + [501] = 501, + [502] = 490, + [503] = 69, + [504] = 493, + [505] = 488, + [506] = 477, + [507] = 474, + [508] = 493, + [509] = 494, + [510] = 474, + [511] = 511, [512] = 512, - [513] = 513, - [514] = 512, - [515] = 506, - [516] = 512, - [517] = 512, - [518] = 512, - [519] = 512, - [520] = 520, - [521] = 521, - [522] = 512, - [523] = 512, - [524] = 524, - [525] = 525, - [526] = 526, - [527] = 512, - [528] = 528, - [529] = 512, - [530] = 512, - [531] = 526, - [532] = 528, - [533] = 521, - [534] = 513, - [535] = 513, - [536] = 525, - [537] = 537, - [538] = 526, - [539] = 539, - [540] = 525, - [541] = 513, - [542] = 525, - [543] = 520, - [544] = 506, - [545] = 526, - [546] = 528, - [547] = 506, - [548] = 528, - [549] = 513, - [550] = 524, - [551] = 521, - [552] = 528, - [553] = 525, - [554] = 520, - [555] = 526, - [556] = 506, - [557] = 528, - [558] = 524, - [559] = 524, - [560] = 520, - [561] = 561, - [562] = 520, - [563] = 526, - [564] = 524, - [565] = 525, - [566] = 506, - [567] = 525, - [568] = 521, - [569] = 513, - [570] = 513, - [571] = 528, - [572] = 520, - [573] = 506, - [574] = 524, - [575] = 524, - [576] = 521, - [577] = 526, - [578] = 525, - [579] = 506, - [580] = 513, - [581] = 513, - [582] = 506, - [583] = 520, - [584] = 506, - [585] = 528, - [586] = 521, - [587] = 587, - [588] = 524, - [589] = 528, - [590] = 526, - [591] = 525, - [592] = 521, - [593] = 525, - [594] = 521, - [595] = 520, - [596] = 526, - [597] = 521, - [598] = 528, - [599] = 506, - [600] = 513, - [601] = 521, - [602] = 506, - [603] = 525, - [604] = 526, - [605] = 513, - [606] = 524, - [607] = 512, - [608] = 520, - [609] = 520, - [610] = 521, - [611] = 506, - [612] = 528, - [613] = 520, - [614] = 524, - [615] = 521, - [616] = 524, - [617] = 526, - [618] = 537, - [619] = 619, - [620] = 521, - [621] = 621, - [622] = 622, - [623] = 537, - [624] = 539, - [625] = 521, - [626] = 506, - [627] = 539, - [628] = 537, - [629] = 521, - [630] = 506, - [631] = 631, - [632] = 561, - [633] = 506, - [634] = 634, - [635] = 587, + [513] = 470, + [514] = 494, + [515] = 477, + [516] = 477, + [517] = 494, + [518] = 493, + [519] = 490, + [520] = 486, + [521] = 485, + [522] = 490, + [523] = 483, + [524] = 482, + [525] = 488, + [526] = 486, + [527] = 481, + [528] = 480, + [529] = 471, + [530] = 476, + [531] = 485, + [532] = 475, + [533] = 483, + [534] = 482, + [535] = 481, + [536] = 480, + [537] = 476, + [538] = 475, + [539] = 472, + [540] = 472, + [541] = 488, + [542] = 470, + [543] = 86, + [544] = 474, + [545] = 545, + [546] = 546, + [547] = 547, + [548] = 548, + [549] = 549, + [550] = 550, + [551] = 488, + [552] = 552, + [553] = 494, + [554] = 477, + [555] = 555, + [556] = 493, + [557] = 72, + [558] = 73, + [559] = 559, + [560] = 74, + [561] = 490, + [562] = 474, + [563] = 563, + [564] = 485, + [565] = 77, + [566] = 483, + [567] = 78, + [568] = 568, + [569] = 482, + [570] = 79, + [571] = 80, + [572] = 481, + [573] = 573, + [574] = 480, + [575] = 83, + [576] = 471, + [577] = 577, + [578] = 578, + [579] = 84, + [580] = 476, + [581] = 581, + [582] = 475, + [583] = 583, + [584] = 470, + [585] = 585, + [586] = 472, + [587] = 85, + [588] = 588, + [589] = 589, + [590] = 349, + [591] = 79, + [592] = 203, + [593] = 125, + [594] = 164, + [595] = 226, + [596] = 596, + [597] = 160, + [598] = 598, + [599] = 139, + [600] = 600, + [601] = 601, + [602] = 156, + [603] = 154, + [604] = 168, + [605] = 349, + [606] = 261, + [607] = 607, + [608] = 150, + [609] = 148, + [610] = 146, + [611] = 126, + [612] = 128, + [613] = 170, + [614] = 169, + [615] = 615, + [616] = 140, + [617] = 137, + [618] = 618, + [619] = 167, + [620] = 165, + [621] = 163, + [622] = 161, + [623] = 349, + [624] = 261, + [625] = 625, + [626] = 134, + [627] = 349, + [628] = 261, + [629] = 131, + [630] = 630, + [631] = 159, + [632] = 632, + [633] = 74, + [634] = 157, + [635] = 155, [636] = 636, - [637] = 561, - [638] = 638, + [637] = 637, + [638] = 601, [639] = 639, - [640] = 640, + [640] = 261, [641] = 641, - [642] = 642, + [642] = 349, [643] = 643, [644] = 644, - [645] = 645, - [646] = 646, - [647] = 537, - [648] = 648, - [649] = 649, - [650] = 650, - [651] = 587, - [652] = 506, - [653] = 561, - [654] = 521, - [655] = 506, - [656] = 656, + [645] = 261, + [646] = 127, + [647] = 647, + [648] = 153, + [649] = 151, + [650] = 149, + [651] = 147, + [652] = 145, + [653] = 143, + [654] = 141, + [655] = 138, + [656] = 135, [657] = 657, - [658] = 658, - [659] = 659, - [660] = 660, - [661] = 661, - [662] = 662, - [663] = 663, - [664] = 587, - [665] = 506, - [666] = 521, - [667] = 539, - [668] = 537, + [658] = 601, + [659] = 596, + [660] = 132, + [661] = 129, + [662] = 84, + [663] = 178, + [664] = 349, + [665] = 200, + [666] = 666, + [667] = 77, + [668] = 78, [669] = 669, - [670] = 670, - [671] = 671, - [672] = 521, - [673] = 506, - [674] = 674, - [675] = 675, - [676] = 676, - [677] = 521, - [678] = 506, - [679] = 561, - [680] = 587, - [681] = 521, - [682] = 539, - [683] = 561, - [684] = 506, - [685] = 521, - [686] = 561, - [687] = 587, - [688] = 539, - [689] = 587, - [690] = 506, - [691] = 521, - [692] = 692, - [693] = 693, - [694] = 561, - [695] = 587, - [696] = 539, - [697] = 528, - [698] = 537, - [699] = 506, - [700] = 521, - [701] = 561, - [702] = 587, - [703] = 539, - [704] = 537, - [705] = 513, - [706] = 525, - [707] = 526, - [708] = 520, - [709] = 561, - [710] = 587, - [711] = 512, - [712] = 539, - [713] = 537, - [714] = 561, - [715] = 537, - [716] = 539, - [717] = 587, - [718] = 524, - [719] = 525, - [720] = 539, - [721] = 537, - [722] = 526, - [723] = 634, - [724] = 659, - [725] = 676, - [726] = 675, - [727] = 674, - [728] = 671, - [729] = 670, - [730] = 639, - [731] = 638, - [732] = 669, - [733] = 619, - [734] = 621, - [735] = 636, - [736] = 622, - [737] = 634, - [738] = 634, - [739] = 636, - [740] = 622, - [741] = 621, - [742] = 638, - [743] = 639, - [744] = 640, - [745] = 641, - [746] = 642, - [747] = 643, - [748] = 644, - [749] = 645, - [750] = 646, - [751] = 631, - [752] = 648, - [753] = 619, - [754] = 649, - [755] = 650, - [756] = 656, - [757] = 657, - [758] = 658, - [759] = 659, - [760] = 660, - [761] = 661, - [762] = 662, - [763] = 643, - [764] = 663, - [765] = 642, - [766] = 676, - [767] = 641, - [768] = 640, - [769] = 669, - [770] = 670, - [771] = 671, - [772] = 772, - [773] = 513, - [774] = 674, - [775] = 675, - [776] = 676, - [777] = 619, - [778] = 621, - [779] = 640, - [780] = 641, - [781] = 520, - [782] = 642, - [783] = 643, - [784] = 622, - [785] = 634, - [786] = 644, - [787] = 636, - [788] = 638, - [789] = 639, - [790] = 645, - [791] = 646, - [792] = 640, - [793] = 641, - [794] = 642, - [795] = 643, - [796] = 644, - [797] = 645, - [798] = 646, - [799] = 631, - [800] = 631, - [801] = 648, - [802] = 649, - [803] = 650, - [804] = 648, - [805] = 649, - [806] = 650, - [807] = 674, - [808] = 644, - [809] = 645, - [810] = 646, - [811] = 631, - [812] = 656, - [813] = 657, - [814] = 658, - [815] = 659, - [816] = 660, - [817] = 661, - [818] = 662, - [819] = 648, - [820] = 663, - [821] = 671, - [822] = 670, - [823] = 669, - [824] = 669, - [825] = 670, - [826] = 671, - [827] = 649, - [828] = 828, - [829] = 650, - [830] = 663, - [831] = 674, - [832] = 663, - [833] = 662, - [834] = 528, - [835] = 675, - [836] = 661, - [837] = 660, - [838] = 639, - [839] = 659, - [840] = 619, - [841] = 621, - [842] = 622, - [843] = 638, - [844] = 636, - [845] = 638, - [846] = 639, - [847] = 658, - [848] = 640, - [849] = 641, - [850] = 642, - [851] = 643, - [852] = 644, + [670] = 596, + [671] = 261, + [672] = 672, + [673] = 80, + [674] = 601, + [675] = 85, + [676] = 596, + [677] = 349, + [678] = 83, + [679] = 86, + [680] = 261, + [681] = 72, + [682] = 201, + [683] = 683, + [684] = 684, + [685] = 685, + [686] = 73, + [687] = 687, + [688] = 688, + [689] = 689, + [690] = 690, + [691] = 691, + [692] = 379, + [693] = 690, + [694] = 690, + [695] = 601, + [696] = 696, + [697] = 690, + [698] = 698, + [699] = 596, + [700] = 601, + [701] = 701, + [702] = 702, + [703] = 596, + [704] = 704, + [705] = 601, + [706] = 706, + [707] = 707, + [708] = 708, + [709] = 691, + [710] = 708, + [711] = 711, + [712] = 596, + [713] = 707, + [714] = 687, + [715] = 688, + [716] = 716, + [717] = 698, + [718] = 718, + [719] = 696, + [720] = 601, + [721] = 596, + [722] = 601, + [723] = 596, + [724] = 601, + [725] = 596, + [726] = 601, + [727] = 596, + [728] = 601, + [729] = 596, + [730] = 730, + [731] = 596, + [732] = 601, + [733] = 596, + [734] = 601, + [735] = 596, + [736] = 601, + [737] = 596, + [738] = 601, + [739] = 596, + [740] = 701, + [741] = 601, + [742] = 704, + [743] = 706, + [744] = 707, + [745] = 596, + [746] = 708, + [747] = 691, + [748] = 748, + [749] = 749, + [750] = 750, + [751] = 706, + [752] = 704, + [753] = 753, + [754] = 754, + [755] = 687, + [756] = 696, + [757] = 702, + [758] = 758, + [759] = 759, + [760] = 760, + [761] = 761, + [762] = 698, + [763] = 701, + [764] = 704, + [765] = 706, + [766] = 711, + [767] = 596, + [768] = 707, + [769] = 708, + [770] = 770, + [771] = 687, + [772] = 688, + [773] = 718, + [774] = 696, + [775] = 775, + [776] = 776, + [777] = 777, + [778] = 601, + [779] = 779, + [780] = 780, + [781] = 154, + [782] = 782, + [783] = 783, + [784] = 131, + [785] = 134, + [786] = 137, + [787] = 140, + [788] = 128, + [789] = 126, + [790] = 146, + [791] = 148, + [792] = 150, + [793] = 127, + [794] = 794, + [795] = 795, + [796] = 156, + [797] = 698, + [798] = 701, + [799] = 139, + [800] = 160, + [801] = 226, + [802] = 691, + [803] = 164, + [804] = 704, + [805] = 125, + [806] = 706, + [807] = 203, + [808] = 707, + [809] = 168, + [810] = 170, + [811] = 708, + [812] = 702, + [813] = 169, + [814] = 690, + [815] = 167, + [816] = 687, + [817] = 688, + [818] = 702, + [819] = 819, + [820] = 820, + [821] = 711, + [822] = 165, + [823] = 823, + [824] = 601, + [825] = 701, + [826] = 698, + [827] = 600, + [828] = 718, + [829] = 696, + [830] = 163, + [831] = 161, + [832] = 159, + [833] = 157, + [834] = 155, + [835] = 153, + [836] = 151, + [837] = 149, + [838] = 147, + [839] = 145, + [840] = 143, + [841] = 141, + [842] = 138, + [843] = 135, + [844] = 132, + [845] = 129, + [846] = 178, + [847] = 200, + [848] = 201, + [849] = 849, + [850] = 850, + [851] = 688, + [852] = 852, [853] = 853, - [854] = 656, - [855] = 657, - [856] = 658, - [857] = 857, - [858] = 645, - [859] = 646, - [860] = 659, - [861] = 660, - [862] = 661, - [863] = 631, - [864] = 648, - [865] = 649, - [866] = 662, - [867] = 650, - [868] = 657, - [869] = 656, - [870] = 650, - [871] = 656, - [872] = 663, - [873] = 657, - [874] = 658, - [875] = 659, - [876] = 660, - [877] = 661, - [878] = 669, - [879] = 670, - [880] = 671, - [881] = 662, - [882] = 674, - [883] = 675, - [884] = 676, - [885] = 649, - [886] = 663, - [887] = 648, - [888] = 631, - [889] = 646, - [890] = 645, - [891] = 644, - [892] = 669, - [893] = 670, - [894] = 676, - [895] = 662, - [896] = 506, - [897] = 521, - [898] = 675, - [899] = 661, - [900] = 674, - [901] = 660, - [902] = 663, - [903] = 658, - [904] = 657, - [905] = 656, - [906] = 671, - [907] = 643, - [908] = 671, - [909] = 670, - [910] = 669, - [911] = 642, - [912] = 641, - [913] = 692, - [914] = 693, - [915] = 636, - [916] = 634, - [917] = 692, - [918] = 674, - [919] = 693, - [920] = 663, - [921] = 640, - [922] = 675, - [923] = 639, - [924] = 692, - [925] = 662, - [926] = 661, - [927] = 660, - [928] = 659, - [929] = 658, - [930] = 657, - [931] = 656, - [932] = 693, - [933] = 692, - [934] = 692, - [935] = 693, - [936] = 692, - [937] = 693, - [938] = 692, - [939] = 693, - [940] = 692, - [941] = 693, - [942] = 692, - [943] = 693, - [944] = 638, - [945] = 636, - [946] = 692, - [947] = 693, - [948] = 676, - [949] = 506, - [950] = 693, - [951] = 521, - [952] = 619, - [953] = 621, - [954] = 622, - [955] = 634, - [956] = 636, - [957] = 638, - [958] = 958, - [959] = 639, - [960] = 640, - [961] = 641, - [962] = 642, - [963] = 643, - [964] = 650, - [965] = 649, - [966] = 648, - [967] = 631, - [968] = 646, - [969] = 645, - [970] = 644, - [971] = 644, - [972] = 643, - [973] = 642, - [974] = 641, - [975] = 640, - [976] = 645, - [977] = 646, - [978] = 631, - [979] = 639, - [980] = 638, - [981] = 648, - [982] = 649, - [983] = 650, - [984] = 636, - [985] = 622, - [986] = 634, - [987] = 634, - [988] = 621, - [989] = 622, - [990] = 621, - [991] = 622, - [992] = 621, - [993] = 587, - [994] = 656, - [995] = 657, - [996] = 658, - [997] = 659, - [998] = 660, - [999] = 661, - [1000] = 662, - [1001] = 619, - [1002] = 619, - [1003] = 561, - [1004] = 663, - [1005] = 675, - [1006] = 674, - [1007] = 671, - [1008] = 670, - [1009] = 675, - [1010] = 669, - [1011] = 537, - [1012] = 1012, - [1013] = 539, - [1014] = 676, - [1015] = 1015, - [1016] = 670, - [1017] = 671, - [1018] = 675, - [1019] = 619, - [1020] = 674, - [1021] = 621, - [1022] = 622, - [1023] = 634, - [1024] = 692, - [1025] = 636, - [1026] = 638, - [1027] = 639, - [1028] = 671, - [1029] = 670, - [1030] = 669, - [1031] = 640, - [1032] = 619, - [1033] = 641, - [1034] = 642, - [1035] = 669, - [1036] = 643, - [1037] = 663, - [1038] = 644, - [1039] = 662, - [1040] = 661, - [1041] = 660, - [1042] = 659, - [1043] = 658, - [1044] = 657, - [1045] = 656, - [1046] = 645, - [1047] = 646, - [1048] = 631, - [1049] = 648, - [1050] = 649, - [1051] = 650, - [1052] = 649, - [1053] = 648, - [1054] = 631, - [1055] = 646, - [1056] = 645, - [1057] = 644, - [1058] = 643, - [1059] = 642, - [1060] = 641, - [1061] = 640, - [1062] = 650, - [1063] = 639, - [1064] = 638, - [1065] = 636, - [1066] = 634, - [1067] = 622, - [1068] = 621, - [1069] = 619, - [1070] = 693, - [1071] = 676, - [1072] = 656, - [1073] = 657, - [1074] = 658, - [1075] = 675, - [1076] = 659, - [1077] = 674, - [1078] = 660, - [1079] = 661, - [1080] = 662, - [1081] = 674, - [1082] = 1012, - [1083] = 692, - [1084] = 1012, - [1085] = 693, - [1086] = 692, - [1087] = 650, - [1088] = 1015, - [1089] = 1015, - [1090] = 692, - [1091] = 675, - [1092] = 693, - [1093] = 671, - [1094] = 670, - [1095] = 1015, - [1096] = 1096, - [1097] = 669, - [1098] = 663, - [1099] = 1012, - [1100] = 1012, - [1101] = 662, - [1102] = 661, - [1103] = 660, - [1104] = 659, - [1105] = 658, - [1106] = 657, - [1107] = 656, - [1108] = 693, - [1109] = 1015, - [1110] = 649, - [1111] = 648, - [1112] = 693, - [1113] = 692, - [1114] = 631, - [1115] = 646, - [1116] = 539, - [1117] = 645, - [1118] = 644, - [1119] = 643, - [1120] = 642, - [1121] = 693, - [1122] = 641, - [1123] = 640, - [1124] = 692, - [1125] = 639, - [1126] = 638, - [1127] = 636, - [1128] = 692, - [1129] = 692, - [1130] = 634, - [1131] = 622, - [1132] = 621, - [1133] = 1133, - [1134] = 619, - [1135] = 1096, - [1136] = 1015, - [1137] = 537, - [1138] = 1133, - [1139] = 1012, - [1140] = 675, - [1141] = 1015, - [1142] = 674, - [1143] = 692, - [1144] = 1015, - [1145] = 692, - [1146] = 561, - [1147] = 587, - [1148] = 693, - [1149] = 692, - [1150] = 693, - [1151] = 693, - [1152] = 1012, - [1153] = 1015, - [1154] = 1015, - [1155] = 1015, - [1156] = 1012, - [1157] = 676, - [1158] = 676, - [1159] = 1012, - [1160] = 1012, - [1161] = 692, - [1162] = 676, - [1163] = 693, - [1164] = 693, - [1165] = 693, - [1166] = 1012, - [1167] = 656, - [1168] = 1015, - [1169] = 1169, - [1170] = 1012, - [1171] = 621, - [1172] = 693, - [1173] = 622, - [1174] = 692, - [1175] = 634, - [1176] = 671, - [1177] = 670, - [1178] = 638, - [1179] = 639, - [1180] = 669, - [1181] = 693, - [1182] = 663, - [1183] = 692, - [1184] = 640, - [1185] = 641, - [1186] = 642, - [1187] = 643, - [1188] = 619, - [1189] = 662, - [1190] = 644, - [1191] = 645, - [1192] = 646, - [1193] = 631, - [1194] = 661, - [1195] = 648, - [1196] = 649, - [1197] = 650, - [1198] = 636, - [1199] = 660, - [1200] = 659, - [1201] = 658, - [1202] = 657, - [1203] = 693, - [1204] = 1012, - [1205] = 692, - [1206] = 60, - [1207] = 1207, - [1208] = 1208, - [1209] = 1207, - [1210] = 60, - [1211] = 1208, - [1212] = 1208, - [1213] = 1207, - [1214] = 1208, - [1215] = 1207, - [1216] = 1208, - [1217] = 1207, - [1218] = 1208, - [1219] = 1207, - [1220] = 1208, - [1221] = 1208, - [1222] = 1207, - [1223] = 1208, - [1224] = 1207, - [1225] = 1207, - [1226] = 1208, - [1227] = 1207, - [1228] = 1208, - [1229] = 1207, - [1230] = 1208, - [1231] = 1207, - [1232] = 1208, - [1233] = 1207, - [1234] = 1207, - [1235] = 1208, - [1236] = 1207, - [1237] = 1207, - [1238] = 1208, - [1239] = 1208, - [1240] = 1207, - [1241] = 1208, - [1242] = 1208, - [1243] = 1207, - [1244] = 1208, - [1245] = 1207, - [1246] = 1208, - [1247] = 1208, - [1248] = 1207, - [1249] = 1207, - [1250] = 1207, - [1251] = 1208, - [1252] = 1207, - [1253] = 1208, - [1254] = 1207, - [1255] = 1208, - [1256] = 1207, - [1257] = 1208, - [1258] = 1258, - [1259] = 1208, - [1260] = 1207, - [1261] = 73, - [1262] = 1262, - [1263] = 1263, - [1264] = 1263, - [1265] = 1263, - [1266] = 1263, - [1267] = 1263, - [1268] = 73, - [1269] = 211, - [1270] = 1270, - [1271] = 1271, - [1272] = 1272, - [1273] = 1271, - [1274] = 1271, - [1275] = 521, - [1276] = 1276, - [1277] = 1272, - [1278] = 506, - [1279] = 1272, - [1280] = 1276, - [1281] = 1276, - [1282] = 1272, - [1283] = 1270, - [1284] = 1272, - [1285] = 1270, - [1286] = 1270, - [1287] = 1270, - [1288] = 1276, - [1289] = 1271, - [1290] = 1276, - [1291] = 211, - [1292] = 1271, - [1293] = 1293, - [1294] = 1294, - [1295] = 1295, - [1296] = 1296, - [1297] = 506, - [1298] = 1298, - [1299] = 1299, - [1300] = 1300, - [1301] = 1301, - [1302] = 1302, - [1303] = 1303, - [1304] = 1304, - [1305] = 1305, - [1306] = 1306, - [1307] = 1307, - [1308] = 521, - [1309] = 1309, - [1310] = 1310, - [1311] = 1311, - [1312] = 1305, - [1313] = 1306, - [1314] = 1307, - [1315] = 1315, - [1316] = 1315, - [1317] = 1294, - [1318] = 1305, - [1319] = 1306, - [1320] = 1307, - [1321] = 1315, - [1322] = 1294, - [1323] = 1305, - [1324] = 1306, - [1325] = 1325, - [1326] = 1307, - [1327] = 1327, - [1328] = 1315, - [1329] = 1294, - [1330] = 1305, - [1331] = 1306, - [1332] = 1307, - [1333] = 1315, - [1334] = 1294, - [1335] = 1335, - [1336] = 1335, - [1337] = 1335, - [1338] = 1338, - [1339] = 1339, - [1340] = 1335, - [1341] = 1338, - [1342] = 1335, - [1343] = 1338, - [1344] = 1335, - [1345] = 1338, - [1346] = 1346, - [1347] = 1335, - [1348] = 1338, - [1349] = 1349, - [1350] = 1350, - [1351] = 1335, - [1352] = 1338, - [1353] = 1353, - [1354] = 1335, - [1355] = 1335, - [1356] = 1338, - [1357] = 1299, - [1358] = 1300, - [1359] = 1338, - [1360] = 1335, - [1361] = 1338, - [1362] = 1335, - [1363] = 1338, - [1364] = 1335, - [1365] = 1338, - [1366] = 1335, - [1367] = 1338, - [1368] = 1338, - [1369] = 1338, - [1370] = 1335, - [1371] = 1335, - [1372] = 1338, - [1373] = 304, - [1374] = 1338, - [1375] = 1335, - [1376] = 1338, - [1377] = 303, - [1378] = 1378, - [1379] = 1335, - [1380] = 1298, - [1381] = 1338, - [1382] = 1335, - [1383] = 1338, - [1384] = 312, - [1385] = 313, - [1386] = 1386, - [1387] = 1349, - [1388] = 1386, - [1389] = 1349, - [1390] = 1386, - [1391] = 1391, - [1392] = 1349, - [1393] = 318, - [1394] = 317, - [1395] = 1386, - [1396] = 1349, - [1397] = 1296, - [1398] = 1386, - [1399] = 305, - [1400] = 1310, - [1401] = 303, - [1402] = 284, - [1403] = 1403, - [1404] = 1404, - [1405] = 1403, - [1406] = 1406, - [1407] = 1404, - [1408] = 317, - [1409] = 318, - [1410] = 1410, - [1411] = 1404, - [1412] = 1403, - [1413] = 1404, - [1414] = 1403, - [1415] = 1410, - [1416] = 1403, - [1417] = 1404, - [1418] = 1410, - [1419] = 1404, - [1420] = 1420, - [1421] = 1403, - [1422] = 1410, - [1423] = 1404, - [1424] = 1403, - [1425] = 1410, - [1426] = 1404, - [1427] = 1403, - [1428] = 1410, - [1429] = 305, - [1430] = 1410, - [1431] = 1431, - [1432] = 1432, - [1433] = 1433, - [1434] = 1404, - [1435] = 304, - [1436] = 1403, - [1437] = 1410, - [1438] = 1410, - [1439] = 1404, - [1440] = 1403, - [1441] = 1406, - [1442] = 1410, - [1443] = 1404, - [1444] = 1410, - [1445] = 1403, - [1446] = 1433, - [1447] = 1410, - [1448] = 1403, - [1449] = 1410, - [1450] = 1403, - [1451] = 1404, - [1452] = 312, - [1453] = 1404, - [1454] = 313, - [1455] = 1455, - [1456] = 1456, - [1457] = 1457, - [1458] = 1458, - [1459] = 1459, - [1460] = 1460, - [1461] = 1461, - [1462] = 1462, - [1463] = 1463, - [1464] = 1464, - [1465] = 1465, - [1466] = 1466, - [1467] = 347, - [1468] = 1458, - [1469] = 1469, - [1470] = 340, - [1471] = 1457, - [1472] = 339, - [1473] = 302, - [1474] = 1474, - [1475] = 337, - [1476] = 1474, - [1477] = 1458, - [1478] = 1457, - [1479] = 1469, - [1480] = 1480, - [1481] = 1466, - [1482] = 1465, - [1483] = 1464, - [1484] = 1463, - [1485] = 1485, - [1486] = 1462, - [1487] = 1461, - [1488] = 1460, - [1489] = 315, - [1490] = 1458, - [1491] = 1459, - [1492] = 1465, - [1493] = 1493, - [1494] = 1466, - [1495] = 1495, - [1496] = 1496, - [1497] = 1497, - [1498] = 1498, - [1499] = 1499, - [1500] = 1458, - [1501] = 1501, - [1502] = 1502, - [1503] = 1502, - [1504] = 1504, - [1505] = 1505, - [1506] = 1496, - [1507] = 1497, - [1508] = 1501, - [1509] = 1502, - [1510] = 1510, - [1511] = 1511, - [1512] = 1512, - [1513] = 301, - [1514] = 1514, - [1515] = 341, - [1516] = 1516, - [1517] = 1517, - [1518] = 1474, - [1519] = 1495, - [1520] = 1520, - [1521] = 1521, - [1522] = 1474, - [1523] = 1469, - [1524] = 1524, - [1525] = 1525, - [1526] = 1466, - [1527] = 319, - [1528] = 1528, - [1529] = 320, - [1530] = 1465, - [1531] = 1464, - [1532] = 1532, - [1533] = 1457, - [1534] = 316, - [1535] = 1469, - [1536] = 1536, - [1537] = 1465, - [1538] = 314, - [1539] = 1464, - [1540] = 284, - [1541] = 1463, - [1542] = 1463, - [1543] = 1462, - [1544] = 1461, - [1545] = 1460, - [1546] = 1546, - [1547] = 311, - [1548] = 1462, - [1549] = 309, - [1550] = 306, - [1551] = 1461, - [1552] = 1552, - [1553] = 1459, - [1554] = 1495, - [1555] = 1496, - [1556] = 1466, - [1557] = 1469, - [1558] = 1457, - [1559] = 1474, - [1560] = 1497, - [1561] = 1460, - [1562] = 1501, - [1563] = 1459, - [1564] = 1564, - [1565] = 1502, - [1566] = 1495, - [1567] = 1567, - [1568] = 1496, - [1569] = 1497, - [1570] = 1501, - [1571] = 1502, - [1572] = 1501, - [1573] = 1497, - [1574] = 1496, - [1575] = 1495, - [1576] = 1459, - [1577] = 1460, - [1578] = 1461, - [1579] = 1462, - [1580] = 1463, - [1581] = 1464, - [1582] = 1582, - [1583] = 1583, - [1584] = 1584, - [1585] = 457, - [1586] = 365, - [1587] = 1587, - [1588] = 1588, - [1589] = 1589, - [1590] = 1583, - [1591] = 1591, - [1592] = 1584, - [1593] = 337, - [1594] = 302, - [1595] = 1583, - [1596] = 1584, - [1597] = 339, - [1598] = 1598, - [1599] = 521, - [1600] = 340, - [1601] = 1601, - [1602] = 1583, - [1603] = 1584, - [1604] = 341, - [1605] = 521, - [1606] = 1606, - [1607] = 1607, - [1608] = 315, - [1609] = 1583, - [1610] = 1584, - [1611] = 1583, - [1612] = 371, - [1613] = 1584, - [1614] = 347, - [1615] = 506, - [1616] = 1591, - [1617] = 521, - [1618] = 1618, - [1619] = 426, - [1620] = 320, - [1621] = 506, - [1622] = 1583, - [1623] = 1584, - [1624] = 521, - [1625] = 1625, - [1626] = 1626, - [1627] = 435, - [1628] = 1628, - [1629] = 1629, - [1630] = 374, - [1631] = 375, - [1632] = 1632, - [1633] = 1583, - [1634] = 1584, - [1635] = 428, - [1636] = 521, - [1637] = 1546, - [1638] = 1638, - [1639] = 1583, - [1640] = 1584, - [1641] = 415, - [1642] = 401, - [1643] = 306, - [1644] = 1644, - [1645] = 1583, - [1646] = 1584, - [1647] = 309, - [1648] = 311, - [1649] = 1589, - [1650] = 1589, - [1651] = 506, - [1652] = 1601, - [1653] = 1601, - [1654] = 376, - [1655] = 1583, - [1656] = 1584, - [1657] = 1588, - [1658] = 370, - [1659] = 1659, - [1660] = 506, - [1661] = 506, - [1662] = 377, - [1663] = 369, - [1664] = 368, - [1665] = 366, - [1666] = 433, - [1667] = 314, - [1668] = 449, - [1669] = 454, - [1670] = 316, - [1671] = 1671, - [1672] = 423, - [1673] = 1673, - [1674] = 1674, - [1675] = 1675, - [1676] = 1676, - [1677] = 382, - [1678] = 1588, - [1679] = 506, - [1680] = 1680, - [1681] = 1681, - [1682] = 388, - [1683] = 1683, - [1684] = 367, - [1685] = 395, - [1686] = 402, - [1687] = 400, - [1688] = 403, - [1689] = 405, - [1690] = 1690, - [1691] = 410, - [1692] = 1692, - [1693] = 319, - [1694] = 408, - [1695] = 393, - [1696] = 398, - [1697] = 394, - [1698] = 392, - [1699] = 1584, - [1700] = 1583, - [1701] = 1589, - [1702] = 521, - [1703] = 391, - [1704] = 386, - [1705] = 1583, - [1706] = 1584, - [1707] = 385, - [1708] = 384, - [1709] = 379, - [1710] = 373, - [1711] = 1711, - [1712] = 1712, - [1713] = 372, - [1714] = 390, - [1715] = 363, - [1716] = 1716, - [1717] = 383, - [1718] = 1588, - [1719] = 380, - [1720] = 378, - [1721] = 1589, - [1722] = 521, - [1723] = 1723, - [1724] = 506, - [1725] = 1725, - [1726] = 1601, - [1727] = 301, - [1728] = 1728, - [1729] = 1729, - [1730] = 1730, - [1731] = 1601, - [1732] = 1732, - [1733] = 1588, - [1734] = 1734, - [1735] = 1735, - [1736] = 1734, - [1737] = 394, - [1738] = 1738, - [1739] = 1739, - [1740] = 1740, - [1741] = 1734, - [1742] = 1742, - [1743] = 1743, - [1744] = 1601, - [1745] = 363, - [1746] = 1734, - [1747] = 1601, - [1748] = 1601, - [1749] = 369, - [1750] = 370, - [1751] = 1751, - [1752] = 1601, - [1753] = 383, - [1754] = 1742, - [1755] = 1588, - [1756] = 388, - [1757] = 1729, - [1758] = 1758, - [1759] = 1739, - [1760] = 1729, - [1761] = 1729, - [1762] = 1762, - [1763] = 1763, - [1764] = 1588, - [1765] = 1729, - [1766] = 401, - [1767] = 1601, - [1768] = 1729, - [1769] = 1769, - [1770] = 1729, - [1771] = 1729, - [1772] = 1729, - [1773] = 390, - [1774] = 1769, - [1775] = 1751, - [1776] = 1762, - [1777] = 1777, - [1778] = 1778, - [1779] = 1779, - [1780] = 1780, - [1781] = 1781, - [1782] = 958, - [1783] = 1729, - [1784] = 372, - [1785] = 1588, - [1786] = 1786, - [1787] = 373, - [1788] = 1788, - [1789] = 1789, - [1790] = 380, - [1791] = 368, - [1792] = 1792, - [1793] = 384, - [1794] = 1763, - [1795] = 1769, - [1796] = 385, - [1797] = 1751, - [1798] = 1762, - [1799] = 1588, - [1800] = 386, - [1801] = 1777, - [1802] = 1742, - [1803] = 1729, - [1804] = 1780, - [1805] = 1786, - [1806] = 1781, - [1807] = 1601, - [1808] = 958, - [1809] = 1729, - [1810] = 415, - [1811] = 1788, - [1812] = 1758, - [1813] = 391, - [1814] = 1789, - [1815] = 1601, - [1816] = 1601, - [1817] = 1588, - [1818] = 1818, - [1819] = 1777, - [1820] = 1588, - [1821] = 1739, - [1822] = 378, - [1823] = 1778, - [1824] = 1824, - [1825] = 1601, - [1826] = 1769, - [1827] = 392, - [1828] = 1751, - [1829] = 1779, - [1830] = 1778, - [1831] = 1762, - [1832] = 1777, - [1833] = 1780, - [1834] = 1781, - [1835] = 1588, - [1836] = 1836, - [1837] = 1729, - [1838] = 1601, - [1839] = 1788, - [1840] = 1789, - [1841] = 1588, - [1842] = 1842, - [1843] = 1763, - [1844] = 1763, - [1845] = 1845, - [1846] = 1846, - [1847] = 1847, - [1848] = 1848, - [1849] = 393, - [1850] = 1850, - [1851] = 1851, - [1852] = 1852, - [1853] = 1853, - [1854] = 1778, - [1855] = 1779, - [1856] = 1856, - [1857] = 1769, - [1858] = 1751, - [1859] = 1739, - [1860] = 398, - [1861] = 1762, - [1862] = 1786, - [1863] = 1777, - [1864] = 1780, - [1865] = 1781, - [1866] = 958, - [1867] = 1601, - [1868] = 1588, - [1869] = 1788, - [1870] = 1870, - [1871] = 1871, - [1872] = 1588, - [1873] = 1873, - [1874] = 1588, - [1875] = 402, - [1876] = 408, - [1877] = 1788, - [1878] = 1742, - [1879] = 1879, - [1880] = 1789, - [1881] = 1601, - [1882] = 1882, - [1883] = 1606, - [1884] = 1884, - [1885] = 1789, - [1886] = 428, - [1887] = 1601, - [1888] = 1758, - [1889] = 435, - [1890] = 1734, - [1891] = 1891, - [1892] = 426, - [1893] = 1588, - [1894] = 457, - [1895] = 365, - [1896] = 367, - [1897] = 371, - [1898] = 374, - [1899] = 1786, - [1900] = 375, - [1901] = 410, - [1902] = 376, - [1903] = 377, - [1904] = 1781, - [1905] = 379, - [1906] = 1778, - [1907] = 1779, - [1908] = 433, - [1909] = 1779, - [1910] = 1758, - [1911] = 1601, - [1912] = 1912, - [1913] = 405, - [1914] = 449, - [1915] = 454, - [1916] = 1780, - [1917] = 1917, - [1918] = 423, - [1919] = 1588, - [1920] = 382, - [1921] = 1921, - [1922] = 1922, - [1923] = 1739, - [1924] = 403, - [1925] = 1779, - [1926] = 1778, - [1927] = 1588, - [1928] = 1763, - [1929] = 1778, - [1930] = 1779, - [1931] = 1758, - [1932] = 1779, - [1933] = 1778, - [1934] = 1879, - [1935] = 1778, - [1936] = 400, - [1937] = 1779, - [1938] = 1778, - [1939] = 1779, - [1940] = 1917, - [1941] = 958, - [1942] = 366, - [1943] = 1786, - [1944] = 1779, - [1945] = 1778, - [1946] = 1946, - [1947] = 395, - [1948] = 1778, - [1949] = 1742, - [1950] = 1950, - [1951] = 1779, - [1952] = 1778, - [1953] = 1779, - [1954] = 1690, - [1955] = 1955, - [1956] = 1956, - [1957] = 1957, - [1958] = 1958, - [1959] = 1959, - [1960] = 1960, - [1961] = 1961, - [1962] = 1960, - [1963] = 1963, - [1964] = 1964, - [1965] = 1965, - [1966] = 1966, - [1967] = 1955, - [1968] = 1968, - [1969] = 1969, - [1970] = 1970, - [1971] = 1971, - [1972] = 1955, - [1973] = 1973, - [1974] = 1974, - [1975] = 1957, - [1976] = 1958, - [1977] = 1959, - [1978] = 1960, - [1979] = 1966, - [1980] = 1980, - [1981] = 1963, - [1982] = 1982, - [1983] = 1965, - [1984] = 1966, - [1985] = 1955, - [1986] = 1986, - [1987] = 1969, - [1988] = 1970, - [1989] = 1965, - [1990] = 1963, - [1991] = 1991, - [1992] = 1973, - [1993] = 1973, - [1994] = 1974, - [1995] = 1957, - [1996] = 1958, - [1997] = 1959, - [1998] = 1969, - [1999] = 1964, - [2000] = 1960, - [2001] = 1963, - [2002] = 2002, - [2003] = 2003, - [2004] = 1963, - [2005] = 1970, - [2006] = 1965, - [2007] = 1966, - [2008] = 1955, - [2009] = 1969, - [2010] = 1969, - [2011] = 1970, - [2012] = 2012, - [2013] = 2013, - [2014] = 1960, - [2015] = 1973, - [2016] = 2016, - [2017] = 1974, - [2018] = 1957, - [2019] = 1958, - [2020] = 1959, - [2021] = 1955, - [2022] = 1966, - [2023] = 1960, - [2024] = 1965, - [2025] = 1959, - [2026] = 1958, - [2027] = 1963, - [2028] = 1957, - [2029] = 1965, - [2030] = 1966, - [2031] = 1955, - [2032] = 1974, - [2033] = 1969, - [2034] = 1970, - [2035] = 1963, - [2036] = 2036, - [2037] = 1973, - [2038] = 1973, - [2039] = 1956, - [2040] = 1974, - [2041] = 1957, - [2042] = 1958, - [2043] = 1959, - [2044] = 2044, - [2045] = 2045, - [2046] = 1960, - [2047] = 2047, - [2048] = 2048, - [2049] = 2049, - [2050] = 1963, - [2051] = 2051, - [2052] = 1965, - [2053] = 1966, - [2054] = 1969, - [2055] = 2055, - [2056] = 1969, - [2057] = 1970, - [2058] = 2058, - [2059] = 1960, - [2060] = 1959, - [2061] = 1973, - [2062] = 2062, - [2063] = 1974, - [2064] = 1957, - [2065] = 1958, - [2066] = 1959, - [2067] = 1958, - [2068] = 1957, - [2069] = 1960, - [2070] = 1991, - [2071] = 2071, - [2072] = 1974, - [2073] = 1963, - [2074] = 1973, - [2075] = 1965, - [2076] = 1966, - [2077] = 1955, - [2078] = 1970, - [2079] = 1969, - [2080] = 2080, - [2081] = 2081, - [2082] = 2082, - [2083] = 1970, - [2084] = 1969, - [2085] = 2085, - [2086] = 2086, - [2087] = 1955, - [2088] = 1965, - [2089] = 1966, - [2090] = 1965, - [2091] = 1963, - [2092] = 2092, - [2093] = 1960, - [2094] = 2094, - [2095] = 1959, - [2096] = 2096, - [2097] = 1958, - [2098] = 2098, - [2099] = 1957, - [2100] = 2002, - [2101] = 1974, - [2102] = 1973, - [2103] = 2103, - [2104] = 2104, - [2105] = 2105, - [2106] = 2106, - [2107] = 2016, - [2108] = 1971, - [2109] = 1970, - [2110] = 2110, - [2111] = 2111, - [2112] = 2045, - [2113] = 2113, - [2114] = 2113, - [2115] = 2086, - [2116] = 1969, - [2117] = 2117, - [2118] = 2118, - [2119] = 2085, - [2120] = 2082, - [2121] = 2121, - [2122] = 1973, - [2123] = 2123, - [2124] = 2124, - [2125] = 2125, - [2126] = 1956, - [2127] = 2117, - [2128] = 2045, - [2129] = 2016, - [2130] = 2002, - [2131] = 2111, - [2132] = 1961, - [2133] = 2133, - [2134] = 1964, - [2135] = 2135, - [2136] = 1982, - [2137] = 2012, - [2138] = 1968, - [2139] = 2086, - [2140] = 1974, - [2141] = 1955, - [2142] = 2142, - [2143] = 2143, - [2144] = 2144, - [2145] = 1966, - [2146] = 1965, - [2147] = 1963, - [2148] = 1986, - [2149] = 1991, - [2150] = 1970, - [2151] = 2044, - [2152] = 2152, - [2153] = 1958, - [2154] = 2110, - [2155] = 2155, - [2156] = 2133, - [2157] = 1960, - [2158] = 1959, - [2159] = 1958, - [2160] = 1957, - [2161] = 1974, - [2162] = 2036, - [2163] = 2125, - [2164] = 1973, - [2165] = 2117, - [2166] = 1974, - [2167] = 2062, - [2168] = 2058, - [2169] = 2055, - [2170] = 2051, - [2171] = 2048, - [2172] = 2047, - [2173] = 1982, - [2174] = 2012, - [2175] = 1956, - [2176] = 2086, - [2177] = 2177, - [2178] = 1973, - [2179] = 2142, - [2180] = 2143, - [2181] = 2144, - [2182] = 2155, - [2183] = 2036, - [2184] = 1974, - [2185] = 1957, - [2186] = 1958, - [2187] = 2044, - [2188] = 1959, - [2189] = 1960, - [2190] = 2155, - [2191] = 1968, - [2192] = 2192, - [2193] = 1970, - [2194] = 2194, - [2195] = 2110, - [2196] = 2196, - [2197] = 2047, - [2198] = 2125, - [2199] = 2048, - [2200] = 2117, - [2201] = 2051, - [2202] = 2111, - [2203] = 2113, - [2204] = 2106, - [2205] = 2105, - [2206] = 2085, - [2207] = 2082, - [2208] = 1982, - [2209] = 2012, - [2210] = 2055, - [2211] = 2086, - [2212] = 1969, - [2213] = 2058, - [2214] = 2142, - [2215] = 2143, - [2216] = 2144, - [2217] = 2045, - [2218] = 2016, - [2219] = 2002, - [2220] = 1961, - [2221] = 1964, - [2222] = 2044, - [2223] = 1968, - [2224] = 1959, - [2225] = 2155, - [2226] = 1955, - [2227] = 2125, - [2228] = 2062, - [2229] = 2117, - [2230] = 1966, - [2231] = 1991, - [2232] = 2232, - [2233] = 1965, - [2234] = 1963, - [2235] = 1991, - [2236] = 2152, - [2237] = 1982, - [2238] = 2012, - [2239] = 2142, - [2240] = 2106, - [2241] = 1963, - [2242] = 2242, - [2243] = 2142, - [2244] = 2143, - [2245] = 2144, - [2246] = 2246, - [2247] = 1965, - [2248] = 2248, - [2249] = 1960, - [2250] = 1959, - [2251] = 2044, - [2252] = 2105, - [2253] = 1957, - [2254] = 2155, - [2255] = 2125, - [2256] = 2256, - [2257] = 2257, - [2258] = 1974, - [2259] = 1982, - [2260] = 2260, - [2261] = 2086, - [2262] = 2142, - [2263] = 2044, - [2264] = 2125, - [2265] = 2143, - [2266] = 2144, - [2267] = 2036, - [2268] = 1982, - [2269] = 2081, - [2270] = 2086, - [2271] = 2142, - [2272] = 2044, - [2273] = 2125, - [2274] = 2274, - [2275] = 2124, - [2276] = 1973, - [2277] = 1982, - [2278] = 2110, - [2279] = 2086, - [2280] = 2142, - [2281] = 2044, - [2282] = 2125, - [2283] = 2111, - [2284] = 2113, - [2285] = 1956, - [2286] = 1982, - [2287] = 1311, - [2288] = 2086, - [2289] = 2142, - [2290] = 2044, - [2291] = 2125, - [2292] = 2047, - [2293] = 2048, - [2294] = 2051, - [2295] = 1982, - [2296] = 2106, - [2297] = 2086, - [2298] = 2142, - [2299] = 2044, - [2300] = 2125, - [2301] = 2055, - [2302] = 2058, - [2303] = 2062, - [2304] = 1982, - [2305] = 2105, - [2306] = 2086, - [2307] = 2142, - [2308] = 2044, - [2309] = 2125, - [2310] = 2310, - [2311] = 2311, - [2312] = 1958, - [2313] = 1982, - [2314] = 1966, - [2315] = 2086, - [2316] = 2142, - [2317] = 2044, - [2318] = 2125, - [2319] = 1955, - [2320] = 2036, - [2321] = 1957, - [2322] = 1982, - [2323] = 2323, - [2324] = 2086, - [2325] = 2142, - [2326] = 2044, - [2327] = 2327, - [2328] = 2085, - [2329] = 2118, - [2330] = 1968, - [2331] = 2242, - [2332] = 2092, - [2333] = 2080, - [2334] = 2327, - [2335] = 2082, - [2336] = 2118, - [2337] = 1964, - [2338] = 2242, - [2339] = 2092, - [2340] = 2080, - [2341] = 2327, - [2342] = 1961, - [2343] = 2118, - [2344] = 1970, - [2345] = 2242, - [2346] = 2092, - [2347] = 2080, - [2348] = 2327, - [2349] = 2002, - [2350] = 2118, - [2351] = 2125, - [2352] = 2242, - [2353] = 2092, - [2354] = 2080, - [2355] = 2105, - [2356] = 2016, - [2357] = 2013, - [2358] = 2045, - [2359] = 1969, - [2360] = 2082, - [2361] = 2013, - [2362] = 1966, - [2363] = 1961, - [2364] = 2085, - [2365] = 2013, - [2366] = 1304, - [2367] = 1970, - [2368] = 2110, - [2369] = 2013, - [2370] = 1955, - [2371] = 2121, - [2372] = 2121, - [2373] = 2121, - [2374] = 2121, - [2375] = 2111, - [2376] = 2113, - [2377] = 2327, - [2378] = 2106, + [854] = 718, + [855] = 711, + [856] = 691, + [857] = 718, + [858] = 711, + [859] = 859, + [860] = 702, + [861] = 861, + [862] = 862, + [863] = 863, + [864] = 864, + [865] = 865, + [866] = 866, + [867] = 867, + [868] = 868, + [869] = 869, + [870] = 870, + [871] = 871, + [872] = 872, + [873] = 873, + [874] = 874, + [875] = 875, + [876] = 876, + [877] = 876, + [878] = 867, + [879] = 863, + [880] = 880, + [881] = 881, + [882] = 880, + [883] = 883, + [884] = 881, + [885] = 885, + [886] = 874, + [887] = 873, + [888] = 888, + [889] = 889, + [890] = 890, + [891] = 891, + [892] = 892, + [893] = 893, + [894] = 872, + [895] = 895, + [896] = 871, + [897] = 869, + [898] = 870, + [899] = 899, + [900] = 900, + [901] = 881, + [902] = 880, + [903] = 863, + [904] = 904, + [905] = 893, + [906] = 868, + [907] = 907, + [908] = 867, + [909] = 876, + [910] = 910, + [911] = 874, + [912] = 873, + [913] = 872, + [914] = 914, + [915] = 915, + [916] = 871, + [917] = 870, + [918] = 918, + [919] = 919, + [920] = 920, + [921] = 865, + [922] = 922, + [923] = 923, + [924] = 868, + [925] = 865, + [926] = 862, + [927] = 927, + [928] = 875, + [929] = 893, + [930] = 869, + [931] = 864, + [932] = 932, + [933] = 933, + [934] = 934, + [935] = 914, + [936] = 936, + [937] = 881, + [938] = 880, + [939] = 939, + [940] = 919, + [941] = 863, + [942] = 862, + [943] = 922, + [944] = 923, + [945] = 945, + [946] = 867, + [947] = 876, + [948] = 874, + [949] = 873, + [950] = 872, + [951] = 871, + [952] = 864, + [953] = 870, + [954] = 954, + [955] = 955, + [956] = 914, + [957] = 868, + [958] = 865, + [959] = 959, + [960] = 862, + [961] = 961, + [962] = 933, + [963] = 875, + [964] = 922, + [965] = 923, + [966] = 966, + [967] = 919, + [968] = 914, + [969] = 893, + [970] = 869, + [971] = 933, + [972] = 881, + [973] = 864, + [974] = 880, + [975] = 975, + [976] = 914, + [977] = 875, + [978] = 863, + [979] = 867, + [980] = 876, + [981] = 919, + [982] = 874, + [983] = 873, + [984] = 922, + [985] = 923, + [986] = 986, + [987] = 872, + [988] = 871, + [989] = 870, + [990] = 868, + [991] = 865, + [992] = 862, + [993] = 864, + [994] = 966, + [995] = 919, + [996] = 889, + [997] = 997, + [998] = 998, + [999] = 975, + [1000] = 892, + [1001] = 966, + [1002] = 1002, + [1003] = 889, + [1004] = 1004, + [1005] = 998, + [1006] = 975, + [1007] = 892, + [1008] = 966, + [1009] = 1009, + [1010] = 889, + [1011] = 923, + [1012] = 998, + [1013] = 975, + [1014] = 892, + [1015] = 966, + [1016] = 922, + [1017] = 889, + [1018] = 1018, + [1019] = 998, + [1020] = 975, + [1021] = 892, + [1022] = 955, + [1023] = 1023, + [1024] = 1009, + [1025] = 918, + [1026] = 961, + [1027] = 446, + [1028] = 1009, + [1029] = 918, + [1030] = 875, + [1031] = 893, + [1032] = 1009, + [1033] = 918, + [1034] = 869, + [1035] = 1035, + [1036] = 1009, + [1037] = 918, + [1038] = 986, + [1039] = 986, + [1040] = 986, + [1041] = 986, + [1042] = 891, + [1043] = 891, + [1044] = 891, + [1045] = 891, + [1046] = 998, + [1047] = 933, + [1048] = 1048, + [1049] = 1049, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -4848,94324 +2642,24705 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(160); - if (!eof && (lookahead == 0)) ADVANCE(183); - if (lookahead == '\t') ADVANCE(212); - if (lookahead == '\r') SKIP(157) - if (lookahead == ' ') ADVANCE(172); - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(204); - if (lookahead == '#') ADVANCE(380); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '%') ADVANCE(339); - if (lookahead == '(') ADVANCE(330); - if (lookahead == ')') ADVANCE(333); - if (lookahead == '*') ADVANCE(270); - if (lookahead == '+') ADVANCE(376); - if (lookahead == '-') ADVANCE(182); - if (lookahead == '.') ADVANCE(202); - if (lookahead == ':') ADVANCE(193); - if (lookahead == '<') ADVANCE(228); - if (lookahead == '=') ADVANCE(187); - if (lookahead == '>') ADVANCE(257); - if (lookahead == 'F') ADVANCE(311); - if (lookahead == 'I') ADVANCE(314); - if (lookahead == 'N') ADVANCE(315); - if (lookahead == 'T') ADVANCE(316); - if (lookahead == 'W') ADVANCE(312); - if (lookahead == 'X') ADVANCE(168); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(215); - if (lookahead == ']') ADVANCE(328); - if (lookahead == '^') ADVANCE(290); - if (lookahead == '_') ADVANCE(262); - if (lookahead == 'x') ADVANCE(166); - if (lookahead == '{') ADVANCE(335); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '}') ADVANCE(200); - if (lookahead == '~') ADVANCE(298); + if (eof) ADVANCE(20); + if (!eof && (lookahead == 0)) ADVANCE(32); + if (lookahead == '\t') ADVANCE(50); + if (lookahead == '\r') SKIP(18) + if (lookahead == ' ') ADVANCE(28); + if (lookahead == '"') ADVANCE(45); + if (lookahead == '#') ADVANCE(16); + if (lookahead == '%') ADVANCE(64); + if (lookahead == '.') ADVANCE(43); + if (lookahead == ':') ADVANCE(39); + if (lookahead == '=') ADVANCE(34); + if (lookahead == 'X') ADVANCE(25); + if (lookahead == '[') ADVANCE(21); + if (lookahead == '\\') ADVANCE(17); + if (lookahead == ']') ADVANCE(26); + if (lookahead == 'x') ADVANCE(23); + if (lookahead == '{') ADVANCE(41); + if (lookahead == '|') ADVANCE(29); + if (lookahead == '}') ADVANCE(42); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(324); - if (lookahead != 0 && - (lookahead < '\n' || '\f' < lookahead)) ADVANCE(364); + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(48); END_STATE(); case 1: - if (!eof && (lookahead == 0)) ADVANCE(183); - if (lookahead == '\t') ADVANCE(212); - if (lookahead == '\r') SKIP(10) - if (lookahead == ' ') ADVANCE(178); - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(366); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(369); - if (lookahead == 'I') ADVANCE(371); - if (lookahead == 'N') ADVANCE(372); - if (lookahead == 'T') ADVANCE(373); - if (lookahead == 'W') ADVANCE(370); - if (lookahead == 'X') ADVANCE(374); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '{') ADVANCE(337); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); + if (!eof && (lookahead == 0)) ADVANCE(32); + if (lookahead == '\r') ADVANCE(52); + if (lookahead == '[') ADVANCE(21); + if (lookahead == '{') ADVANCE(41); + if (lookahead == '|') ADVANCE(29); if (lookahead != 0 && - (lookahead < '\n' || '\f' < lookahead)) ADVANCE(364); + lookahead != '\n') ADVANCE(51); END_STATE(); case 2: - if (!eof && (lookahead == 0)) ADVANCE(183); - if (lookahead == '\r') SKIP(3) - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(366); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(369); - if (lookahead == 'I') ADVANCE(371); - if (lookahead == 'N') ADVANCE(372); - if (lookahead == 'T') ADVANCE(373); - if (lookahead == 'W') ADVANCE(370); - if (lookahead == 'X') ADVANCE(374); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '{') ADVANCE(198); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(212); - if (lookahead != 0 && - (lookahead < '\n' || '\f' < lookahead)) ADVANCE(364); + if (lookahead == '\n') ADVANCE(14); + if (lookahead == '\r') ADVANCE(53); + if (lookahead == '-') ADVANCE(30); + if (lookahead == ':') ADVANCE(57); + if (lookahead == '[') ADVANCE(21); + if (lookahead == '{') ADVANCE(41); + if (lookahead == '|') ADVANCE(29); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') ADVANCE(58); + if (lookahead != 0) ADVANCE(51); END_STATE(); case 3: - if (!eof && (lookahead == 0)) ADVANCE(183); - if (lookahead == '\r') SKIP(3) - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(366); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(369); - if (lookahead == 'I') ADVANCE(371); - if (lookahead == 'N') ADVANCE(372); - if (lookahead == 'T') ADVANCE(373); - if (lookahead == 'W') ADVANCE(370); - if (lookahead == 'X') ADVANCE(374); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '{') ADVANCE(198); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); + if (lookahead == '\r') ADVANCE(55); + if (lookahead == '#') ADVANCE(60); + if (lookahead == '%') ADVANCE(64); + if (lookahead == '.') ADVANCE(43); + if (lookahead == '[') ADVANCE(21); + if (lookahead == '{') ADVANCE(41); + if (lookahead == '|') ADVANCE(29); + if (lookahead == '}') ADVANCE(42); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(50); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(59); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(364); + lookahead != '\n') ADVANCE(51); END_STATE(); case 4: - if (!eof && (lookahead == 0)) ADVANCE(183); - if (lookahead == '\r') SKIP(3) - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(366); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(369); - if (lookahead == 'I') ADVANCE(371); - if (lookahead == 'N') ADVANCE(372); - if (lookahead == 'T') ADVANCE(373); - if (lookahead == 'W') ADVANCE(370); - if (lookahead == 'X') ADVANCE(374); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '{') ADVANCE(337); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); + if (lookahead == '\r') SKIP(5) + if (lookahead == '#') ADVANCE(16); + if (lookahead == '%') ADVANCE(64); + if (lookahead == '.') ADVANCE(43); + if (lookahead == ']') ADVANCE(15); + if (lookahead == '}') ADVANCE(42); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(212); - if (lookahead != 0 && - (lookahead < '\n' || '\f' < lookahead)) ADVANCE(364); + lookahead == ' ') ADVANCE(50); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(63); END_STATE(); case 5: - if (!eof && (lookahead == 0)) ADVANCE(183); - if (lookahead == '\r') SKIP(3) - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(366); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(369); - if (lookahead == 'I') ADVANCE(371); - if (lookahead == 'N') ADVANCE(372); - if (lookahead == 'T') ADVANCE(373); - if (lookahead == 'W') ADVANCE(370); - if (lookahead == 'X') ADVANCE(374); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '{') ADVANCE(336); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(212); - if (lookahead != 0 && - (lookahead < '\n' || '\f' < lookahead)) ADVANCE(364); + if (lookahead == '\r') SKIP(5) + if (lookahead == '#') ADVANCE(16); + if (lookahead == '%') ADVANCE(64); + if (lookahead == '.') ADVANCE(43); + if (lookahead == ']') ADVANCE(15); + if (lookahead == '}') ADVANCE(42); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(63); END_STATE(); case 6: - if (!eof && (lookahead == 0)) ADVANCE(183); - if (lookahead == '\r') SKIP(6) - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(366); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(369); - if (lookahead == 'I') ADVANCE(371); - if (lookahead == 'N') ADVANCE(372); - if (lookahead == 'T') ADVANCE(373); - if (lookahead == 'W') ADVANCE(370); - if (lookahead == 'X') ADVANCE(374); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == ']') ADVANCE(169); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '{') ADVANCE(198); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); + if (lookahead == '\r') ADVANCE(56); + if (lookahead == '[') ADVANCE(21); + if (lookahead == ']') ADVANCE(26); + if (lookahead == '{') ADVANCE(41); + if (lookahead == '|') ADVANCE(29); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(364); + lookahead != '\n') ADVANCE(51); END_STATE(); case 7: - if (!eof && (lookahead == 0)) ADVANCE(183); - if (lookahead == '\r') SKIP(6) - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(366); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(369); - if (lookahead == 'I') ADVANCE(371); - if (lookahead == 'N') ADVANCE(372); - if (lookahead == 'T') ADVANCE(373); - if (lookahead == 'W') ADVANCE(370); - if (lookahead == 'X') ADVANCE(374); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == ']') ADVANCE(169); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '{') ADVANCE(337); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(212); + if (lookahead == '\r') ADVANCE(35); + if (lookahead == '=') ADVANCE(34); if (lookahead != 0 && - (lookahead < '\n' || '\f' < lookahead)) ADVANCE(364); + lookahead != '\t' && + lookahead != '\n' && + lookahead != ' ' && + lookahead != '{' && + lookahead != '}') ADVANCE(36); END_STATE(); case 8: - if (!eof && (lookahead == 0)) ADVANCE(183); - if (lookahead == '\r') SKIP(8) - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(306); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(311); - if (lookahead == 'I') ADVANCE(314); - if (lookahead == 'N') ADVANCE(315); - if (lookahead == 'T') ADVANCE(316); - if (lookahead == 'W') ADVANCE(312); - if (lookahead == 'X') ADVANCE(323); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(264); - if (lookahead == '{') ADVANCE(198); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(324); + if (lookahead == '\r') ADVANCE(66); + if (lookahead == '%') ADVANCE(64); + if (lookahead == '\\') ADVANCE(67); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(364); + lookahead != '\n') ADVANCE(65); END_STATE(); case 9: - if (!eof && (lookahead == 0)) ADVANCE(183); - if (lookahead == '\r') SKIP(8) - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(306); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(311); - if (lookahead == 'I') ADVANCE(314); - if (lookahead == 'N') ADVANCE(315); - if (lookahead == 'T') ADVANCE(316); - if (lookahead == 'W') ADVANCE(312); - if (lookahead == 'X') ADVANCE(323); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(264); - if (lookahead == '{') ADVANCE(337); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(212); + if (lookahead == '\r') ADVANCE(9); + if (lookahead == '"') ADVANCE(45); + if (lookahead == '-') ADVANCE(30); + if (lookahead == ':') ADVANCE(13); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') ADVANCE(14); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(324); - if (lookahead != 0 && - (lookahead < '\n' || '\f' < lookahead)) ADVANCE(364); + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(48); END_STATE(); case 10: - if (!eof && (lookahead == 0)) ADVANCE(183); if (lookahead == '\r') SKIP(10) - if (lookahead == ' ') ADVANCE(171); - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(366); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(369); - if (lookahead == 'I') ADVANCE(371); - if (lookahead == 'N') ADVANCE(372); - if (lookahead == 'T') ADVANCE(373); - if (lookahead == 'W') ADVANCE(370); - if (lookahead == 'X') ADVANCE(374); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '{') ADVANCE(198); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(364); + if (lookahead == ' ') ADVANCE(27); + if (lookahead == 'X') ADVANCE(24); + if (lookahead == 'x') ADVANCE(22); END_STATE(); case 11: - if (!eof && (lookahead == 0)) ADVANCE(184); - if (lookahead == '\r') SKIP(12) - if (lookahead == '!') ADVANCE(252); - if (lookahead == '"') ADVANCE(253); - if (lookahead == '$') ADVANCE(345); - if (lookahead == '\'') ADVANCE(253); - if (lookahead == '*') ADVANCE(272); - if (lookahead == '-') ADVANCE(231); - if (lookahead == '.') ADVANCE(233); - if (lookahead == ':') ADVANCE(234); - if (lookahead == '<') ADVANCE(229); - if (lookahead == '>') ADVANCE(364); - if (lookahead == 'F') ADVANCE(240); - if (lookahead == 'I') ADVANCE(242); - if (lookahead == 'N') ADVANCE(243); - if (lookahead == 'T') ADVANCE(244); - if (lookahead == 'W') ADVANCE(239); - if (lookahead == 'X') ADVANCE(251); - if (lookahead == '[') ADVANCE(164); - if (lookahead == '\\') ADVANCE(214); - if (lookahead == '^') ADVANCE(292); - if (lookahead == '_') ADVANCE(265); - if (lookahead == '{') ADVANCE(338); - if (lookahead == '|') ADVANCE(180); - if (lookahead == '~') ADVANCE(300); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(212); + if (lookahead == '\r') SKIP(11) if (lookahead != 0 && - (lookahead < '\n' || '\f' < lookahead)) ADVANCE(256); + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(40); END_STATE(); case 12: - if (!eof && (lookahead == 0)) ADVANCE(184); - if (lookahead == '\r') SKIP(12) - if (lookahead == '!') ADVANCE(252); - if (lookahead == '"') ADVANCE(253); - if (lookahead == '$') ADVANCE(345); - if (lookahead == '\'') ADVANCE(253); - if (lookahead == '*') ADVANCE(272); - if (lookahead == '-') ADVANCE(231); - if (lookahead == '.') ADVANCE(233); - if (lookahead == ':') ADVANCE(234); - if (lookahead == '<') ADVANCE(229); - if (lookahead == '>') ADVANCE(364); - if (lookahead == 'F') ADVANCE(240); - if (lookahead == 'I') ADVANCE(242); - if (lookahead == 'N') ADVANCE(243); - if (lookahead == 'T') ADVANCE(244); - if (lookahead == 'W') ADVANCE(239); - if (lookahead == 'X') ADVANCE(251); - if (lookahead == '[') ADVANCE(164); - if (lookahead == '\\') ADVANCE(214); - if (lookahead == '^') ADVANCE(292); - if (lookahead == '_') ADVANCE(265); - if (lookahead == '{') ADVANCE(199); - if (lookahead == '|') ADVANCE(180); - if (lookahead == '~') ADVANCE(300); + if (lookahead == '\r') ADVANCE(46); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(256); + lookahead != '\n' && + lookahead != '"') ADVANCE(47); END_STATE(); case 13: - if (lookahead == '\t') ADVANCE(212); - if (lookahead == '\r') SKIP(42) - if (lookahead == ' ') ADVANCE(210); - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(366); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(369); - if (lookahead == 'I') ADVANCE(371); - if (lookahead == 'N') ADVANCE(372); - if (lookahead == 'T') ADVANCE(373); - if (lookahead == 'W') ADVANCE(370); - if (lookahead == 'X') ADVANCE(374); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == ']') ADVANCE(169); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(261); - if (lookahead == '{') ADVANCE(337); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); - if (lookahead != 0 && - (lookahead < '\n' || '\f' < lookahead)) ADVANCE(364); + if (lookahead == '-') ADVANCE(30); END_STATE(); case 14: - if (lookahead == '\t') ADVANCE(212); - if (lookahead == '\r') SKIP(51) - if (lookahead == ' ') ADVANCE(211); - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(270); - if (lookahead == '-') ADVANCE(366); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(369); - if (lookahead == 'I') ADVANCE(371); - if (lookahead == 'N') ADVANCE(372); - if (lookahead == 'T') ADVANCE(373); - if (lookahead == 'W') ADVANCE(370); - if (lookahead == 'X') ADVANCE(374); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '{') ADVANCE(198); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); - if (lookahead != 0 && - (lookahead < '\n' || '\f' < lookahead)) ADVANCE(364); + if (lookahead == '-') ADVANCE(30); + if (lookahead == ':') ADVANCE(13); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(14); END_STATE(); case 15: - if (lookahead == '\t') ADVANCE(212); - if (lookahead == '\r') SKIP(51) - if (lookahead == ' ') ADVANCE(211); - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(270); - if (lookahead == '-') ADVANCE(366); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(369); - if (lookahead == 'I') ADVANCE(371); - if (lookahead == 'N') ADVANCE(372); - if (lookahead == 'T') ADVANCE(373); - if (lookahead == 'W') ADVANCE(370); - if (lookahead == 'X') ADVANCE(374); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '{') ADVANCE(337); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); - if (lookahead != 0 && - (lookahead < '\n' || '\f' < lookahead)) ADVANCE(364); + if (lookahead == ':') ADVANCE(33); END_STATE(); case 16: - if (lookahead == '\t') ADVANCE(212); - if (lookahead == '\r') SKIP(51) - if (lookahead == ' ') ADVANCE(211); - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(270); - if (lookahead == '-') ADVANCE(366); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(369); - if (lookahead == 'I') ADVANCE(371); - if (lookahead == 'N') ADVANCE(372); - if (lookahead == 'T') ADVANCE(373); - if (lookahead == 'W') ADVANCE(370); - if (lookahead == 'X') ADVANCE(374); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '{') ADVANCE(336); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); if (lookahead != 0 && - (lookahead < '\n' || '\f' < lookahead)) ADVANCE(364); + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '}') ADVANCE(44); END_STATE(); case 17: - if (lookahead == '\t') ADVANCE(212); - if (lookahead == '\r') SKIP(62) - if (lookahead == ' ') ADVANCE(210); - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(306); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(311); - if (lookahead == 'I') ADVANCE(314); - if (lookahead == 'N') ADVANCE(315); - if (lookahead == 'T') ADVANCE(316); - if (lookahead == 'W') ADVANCE(312); - if (lookahead == 'X') ADVANCE(323); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(262); - if (lookahead == '{') ADVANCE(337); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(324); if (lookahead != 0 && - (lookahead < '\n' || '\f' < lookahead)) ADVANCE(364); + lookahead != '\n' && + lookahead != '\r' && + lookahead != '\\') ADVANCE(62); END_STATE(); case 18: - if (lookahead == '\t') ADVANCE(212); - if (lookahead == '\r') SKIP(66) - if (lookahead == ' ') ADVANCE(178); - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '+') ADVANCE(376); - if (lookahead == '-') ADVANCE(366); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(369); - if (lookahead == 'I') ADVANCE(371); - if (lookahead == 'N') ADVANCE(372); - if (lookahead == 'T') ADVANCE(373); - if (lookahead == 'W') ADVANCE(370); - if (lookahead == 'X') ADVANCE(374); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '{') ADVANCE(337); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); - if (lookahead != 0 && - (lookahead < '\n' || '\f' < lookahead)) ADVANCE(364); + if (eof) ADVANCE(20); + if (!eof && (lookahead == 0)) ADVANCE(32); + if (lookahead == '\r') SKIP(18) + if (lookahead == ' ') ADVANCE(27); + if (lookahead == '"') ADVANCE(45); + if (lookahead == '#') ADVANCE(16); + if (lookahead == '%') ADVANCE(64); + if (lookahead == '.') ADVANCE(43); + if (lookahead == ':') ADVANCE(39); + if (lookahead == '=') ADVANCE(34); + if (lookahead == 'X') ADVANCE(25); + if (lookahead == '[') ADVANCE(21); + if (lookahead == '\\') ADVANCE(17); + if (lookahead == ']') ADVANCE(26); + if (lookahead == 'x') ADVANCE(23); + if (lookahead == '{') ADVANCE(41); + if (lookahead == '|') ADVANCE(29); + if (lookahead == '}') ADVANCE(42); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(48); END_STATE(); case 19: - if (lookahead == '\t') ADVANCE(212); - if (lookahead == '\r') SKIP(73) - if (lookahead == ' ') ADVANCE(178); - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(366); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == '=') ADVANCE(377); - if (lookahead == 'F') ADVANCE(369); - if (lookahead == 'I') ADVANCE(371); - if (lookahead == 'N') ADVANCE(372); - if (lookahead == 'T') ADVANCE(373); - if (lookahead == 'W') ADVANCE(370); - if (lookahead == 'X') ADVANCE(374); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '{') ADVANCE(337); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); + if (eof) ADVANCE(20); + if (lookahead == '\r') ADVANCE(54); + if (lookahead == '[') ADVANCE(21); + if (lookahead == '{') ADVANCE(41); + if (lookahead == '|') ADVANCE(29); if (lookahead != 0 && - (lookahead < '\n' || '\f' < lookahead)) ADVANCE(364); + lookahead != '\n') ADVANCE(51); END_STATE(); case 20: - if (lookahead == '\t') ADVANCE(212); - if (lookahead == '\r') SKIP(82) - if (lookahead == ' ') ADVANCE(210); - if (lookahead == '!') ADVANCE(252); - if (lookahead == '"') ADVANCE(253); - if (lookahead == '$') ADVANCE(345); - if (lookahead == '\'') ADVANCE(253); - if (lookahead == '*') ADVANCE(272); - if (lookahead == '-') ADVANCE(231); - if (lookahead == '.') ADVANCE(233); - if (lookahead == ':') ADVANCE(234); - if (lookahead == '<') ADVANCE(229); - if (lookahead == '>') ADVANCE(364); - if (lookahead == 'F') ADVANCE(240); - if (lookahead == 'I') ADVANCE(242); - if (lookahead == 'N') ADVANCE(243); - if (lookahead == 'T') ADVANCE(244); - if (lookahead == 'W') ADVANCE(239); - if (lookahead == 'X') ADVANCE(251); - if (lookahead == '[') ADVANCE(164); - if (lookahead == '\\') ADVANCE(214); - if (lookahead == '^') ADVANCE(292); - if (lookahead == '_') ADVANCE(263); - if (lookahead == '{') ADVANCE(338); - if (lookahead == '|') ADVANCE(180); - if (lookahead == '~') ADVANCE(300); - if (lookahead != 0 && - (lookahead < '\n' || '\f' < lookahead)) ADVANCE(256); + ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); case 21: - if (lookahead == '\t') ADVANCE(212); - if (lookahead == '\r') SKIP(97) - if (lookahead == ' ') ADVANCE(211); - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(270); - if (lookahead == '-') ADVANCE(366); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(369); - if (lookahead == 'I') ADVANCE(371); - if (lookahead == 'N') ADVANCE(372); - if (lookahead == 'T') ADVANCE(373); - if (lookahead == 'W') ADVANCE(370); - if (lookahead == 'X') ADVANCE(374); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == ']') ADVANCE(169); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '{') ADVANCE(337); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); - if (lookahead != 0 && - (lookahead < '\n' || '\f' < lookahead)) ADVANCE(364); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 22: - if (lookahead == '\t') ADVANCE(212); - if (lookahead == '\r') SKIP(102) - if (lookahead == ' ') ADVANCE(210); - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(366); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(369); - if (lookahead == 'I') ADVANCE(371); - if (lookahead == 'N') ADVANCE(372); - if (lookahead == 'T') ADVANCE(373); - if (lookahead == 'W') ADVANCE(370); - if (lookahead == 'X') ADVANCE(374); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(261); - if (lookahead == '{') ADVANCE(198); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); - if (lookahead != 0 && - (lookahead < '\n' || '\f' < lookahead)) ADVANCE(364); + ACCEPT_TOKEN(anon_sym_x); END_STATE(); case 23: - if (lookahead == '\t') ADVANCE(212); - if (lookahead == '\r') SKIP(102) - if (lookahead == ' ') ADVANCE(210); - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(366); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(369); - if (lookahead == 'I') ADVANCE(371); - if (lookahead == 'N') ADVANCE(372); - if (lookahead == 'T') ADVANCE(373); - if (lookahead == 'W') ADVANCE(370); - if (lookahead == 'X') ADVANCE(374); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(261); - if (lookahead == '{') ADVANCE(337); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); - if (lookahead != 0 && - (lookahead < '\n' || '\f' < lookahead)) ADVANCE(364); + ACCEPT_TOKEN(anon_sym_x); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(48); END_STATE(); case 24: - if (lookahead == '\t') ADVANCE(212); - if (lookahead == '\r') SKIP(102) - if (lookahead == ' ') ADVANCE(210); - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(366); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(369); - if (lookahead == 'I') ADVANCE(371); - if (lookahead == 'N') ADVANCE(372); - if (lookahead == 'T') ADVANCE(373); - if (lookahead == 'W') ADVANCE(370); - if (lookahead == 'X') ADVANCE(374); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(261); - if (lookahead == '{') ADVANCE(336); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); - if (lookahead != 0 && - (lookahead < '\n' || '\f' < lookahead)) ADVANCE(364); + ACCEPT_TOKEN(anon_sym_X); END_STATE(); case 25: - if (lookahead == '\t') ADVANCE(212); - if (lookahead == '\r') SKIP(103) - if (lookahead == ' ') ADVANCE(211); - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(270); - if (lookahead == '-') ADVANCE(306); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(311); - if (lookahead == 'I') ADVANCE(314); - if (lookahead == 'N') ADVANCE(315); - if (lookahead == 'T') ADVANCE(316); - if (lookahead == 'W') ADVANCE(312); - if (lookahead == 'X') ADVANCE(323); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(264); - if (lookahead == '{') ADVANCE(337); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); + ACCEPT_TOKEN(anon_sym_X); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(324); - if (lookahead != 0 && - (lookahead < '\n' || '\f' < lookahead)) ADVANCE(364); + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(48); END_STATE(); case 26: - if (lookahead == '\t') ADVANCE(212); - if (lookahead == '\r') SKIP(108) - if (lookahead == ' ') ADVANCE(211); - if (lookahead == '!') ADVANCE(252); - if (lookahead == '"') ADVANCE(253); - if (lookahead == '$') ADVANCE(345); - if (lookahead == '\'') ADVANCE(253); - if (lookahead == '*') ADVANCE(271); - if (lookahead == '-') ADVANCE(231); - if (lookahead == '.') ADVANCE(233); - if (lookahead == ':') ADVANCE(234); - if (lookahead == '<') ADVANCE(229); - if (lookahead == '>') ADVANCE(364); - if (lookahead == 'F') ADVANCE(240); - if (lookahead == 'I') ADVANCE(242); - if (lookahead == 'N') ADVANCE(243); - if (lookahead == 'T') ADVANCE(244); - if (lookahead == 'W') ADVANCE(239); - if (lookahead == 'X') ADVANCE(251); - if (lookahead == '[') ADVANCE(164); - if (lookahead == '\\') ADVANCE(214); - if (lookahead == '^') ADVANCE(292); - if (lookahead == '_') ADVANCE(265); - if (lookahead == '{') ADVANCE(338); - if (lookahead == '|') ADVANCE(180); - if (lookahead == '~') ADVANCE(300); - if (lookahead != 0 && - (lookahead < '\n' || '\f' < lookahead)) ADVANCE(256); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 27: - if (lookahead == '\t') ADVANCE(212); - if (lookahead == '\r') SKIP(111) - if (lookahead == ' ') ADVANCE(178); - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(366); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(369); - if (lookahead == 'I') ADVANCE(371); - if (lookahead == 'N') ADVANCE(372); - if (lookahead == 'T') ADVANCE(373); - if (lookahead == 'W') ADVANCE(370); - if (lookahead == 'X') ADVANCE(374); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == ']') ADVANCE(169); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '{') ADVANCE(337); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); - if (lookahead != 0 && - (lookahead < '\n' || '\f' < lookahead)) ADVANCE(364); + ACCEPT_TOKEN(anon_sym_SPACE); END_STATE(); case 28: - if (lookahead == '\t') ADVANCE(212); - if (lookahead == '\r') SKIP(116) - if (lookahead == ' ') ADVANCE(178); - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(366); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(369); - if (lookahead == 'I') ADVANCE(371); - if (lookahead == 'N') ADVANCE(372); - if (lookahead == 'T') ADVANCE(373); - if (lookahead == 'W') ADVANCE(370); - if (lookahead == 'X') ADVANCE(374); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == ']') ADVANCE(328); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '{') ADVANCE(337); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); - if (lookahead != 0 && - (lookahead < '\n' || '\f' < lookahead)) ADVANCE(364); + ACCEPT_TOKEN(anon_sym_SPACE); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(50); END_STATE(); case 29: - if (lookahead == '\t') ADVANCE(212); - if (lookahead == '\r') SKIP(116) - if (lookahead == ' ') ADVANCE(178); - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(366); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(369); - if (lookahead == 'I') ADVANCE(371); - if (lookahead == 'N') ADVANCE(372); - if (lookahead == 'T') ADVANCE(373); - if (lookahead == 'W') ADVANCE(370); - if (lookahead == 'X') ADVANCE(374); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '{') ADVANCE(198); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); - if (lookahead != 0 && - (lookahead < '\n' || '\f' < lookahead)) ADVANCE(364); + ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); case 30: - if (lookahead == '\t') ADVANCE(212); - if (lookahead == '\r') SKIP(116) - if (lookahead == ' ') ADVANCE(178); - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(366); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(369); - if (lookahead == 'I') ADVANCE(371); - if (lookahead == 'N') ADVANCE(372); - if (lookahead == 'T') ADVANCE(373); - if (lookahead == 'W') ADVANCE(370); - if (lookahead == 'X') ADVANCE(374); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '{') ADVANCE(337); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); - if (lookahead != 0 && - (lookahead < '\n' || '\f' < lookahead)) ADVANCE(364); + ACCEPT_TOKEN(sym_table_cell_alignment); + if (lookahead == '-') ADVANCE(30); + if (lookahead == ':') ADVANCE(31); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(31); END_STATE(); case 31: - if (lookahead == '\t') ADVANCE(212); - if (lookahead == '\r') SKIP(127) - if (lookahead == ' ') ADVANCE(174); - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(270); - if (lookahead == '-') ADVANCE(366); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(369); - if (lookahead == 'I') ADVANCE(371); - if (lookahead == 'N') ADVANCE(372); - if (lookahead == 'T') ADVANCE(373); - if (lookahead == 'W') ADVANCE(370); - if (lookahead == 'X') ADVANCE(374); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '{') ADVANCE(337); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); - if (lookahead != 0 && - (lookahead < '\n' || '\f' < lookahead)) ADVANCE(364); + ACCEPT_TOKEN(sym_table_cell_alignment); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(31); END_STATE(); case 32: - if (lookahead == '\t') ADVANCE(212); - if (lookahead == '\r') SKIP(133) - if (lookahead == ' ') ADVANCE(173); - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(366); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(369); - if (lookahead == 'I') ADVANCE(371); - if (lookahead == 'N') ADVANCE(372); - if (lookahead == 'T') ADVANCE(373); - if (lookahead == 'W') ADVANCE(370); - if (lookahead == 'X') ADVANCE(374); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(261); - if (lookahead == '{') ADVANCE(337); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); - if (lookahead != 0 && - (lookahead < '\n' || '\f' < lookahead)) ADVANCE(364); + ACCEPT_TOKEN(anon_sym_NULL); END_STATE(); case 33: - if (lookahead == '\t') ADVANCE(212); - if (lookahead == '\r') SKIP(134) - if (lookahead == ' ') ADVANCE(178); - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(367); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(369); - if (lookahead == 'I') ADVANCE(371); - if (lookahead == 'N') ADVANCE(372); - if (lookahead == 'T') ADVANCE(373); - if (lookahead == 'W') ADVANCE(370); - if (lookahead == 'X') ADVANCE(374); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '{') ADVANCE(337); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); - if (lookahead != 0 && - (lookahead < '\n' || '\f' < lookahead)) ADVANCE(364); + ACCEPT_TOKEN(anon_sym_RBRACK_COLON); END_STATE(); case 34: - if (lookahead == '\t') ADVANCE(212); - if (lookahead == '\r') SKIP(135) - if (lookahead == ' ') ADVANCE(178); - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(366); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(369); - if (lookahead == 'I') ADVANCE(371); - if (lookahead == 'N') ADVANCE(372); - if (lookahead == 'T') ADVANCE(373); - if (lookahead == 'W') ADVANCE(370); - if (lookahead == 'X') ADVANCE(374); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == '^') ADVANCE(290); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '{') ADVANCE(337); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); - if (lookahead != 0 && - (lookahead < '\n' || '\f' < lookahead)) ADVANCE(364); + ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); case 35: - if (lookahead == '\t') ADVANCE(212); - if (lookahead == '\r') SKIP(136) - if (lookahead == ' ') ADVANCE(178); - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(366); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(369); - if (lookahead == 'I') ADVANCE(371); - if (lookahead == 'N') ADVANCE(372); - if (lookahead == 'T') ADVANCE(373); - if (lookahead == 'W') ADVANCE(370); - if (lookahead == 'X') ADVANCE(374); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '{') ADVANCE(337); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(298); + ACCEPT_TOKEN(sym_language); + if (lookahead == '\r') ADVANCE(35); if (lookahead != 0 && - (lookahead < '\n' || '\f' < lookahead)) ADVANCE(364); + lookahead != '\t' && + lookahead != '\n' && + lookahead != ' ' && + lookahead != '=' && + lookahead != '{' && + lookahead != '}') ADVANCE(36); END_STATE(); case 36: - if (lookahead == '\r') SKIP(36) - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(367); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(369); - if (lookahead == 'I') ADVANCE(371); - if (lookahead == 'N') ADVANCE(372); - if (lookahead == 'T') ADVANCE(373); - if (lookahead == 'W') ADVANCE(370); - if (lookahead == 'X') ADVANCE(374); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == ']') ADVANCE(169); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '{') ADVANCE(198); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); + ACCEPT_TOKEN(sym_language); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(364); + lookahead != '\t' && + lookahead != '\n' && + lookahead != ' ' && + lookahead != '=' && + lookahead != '{' && + lookahead != '}') ADVANCE(36); END_STATE(); case 37: - if (lookahead == '\r') SKIP(36) - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(367); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(369); - if (lookahead == 'I') ADVANCE(371); - if (lookahead == 'N') ADVANCE(372); - if (lookahead == 'T') ADVANCE(373); - if (lookahead == 'W') ADVANCE(370); - if (lookahead == 'X') ADVANCE(374); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == ']') ADVANCE(169); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '{') ADVANCE(337); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(212); + ACCEPT_TOKEN(aux_sym__line_token1); + if (lookahead == '\r') ADVANCE(37); if (lookahead != 0 && - (lookahead < '\n' || '\f' < lookahead)) ADVANCE(364); + lookahead != '\n') ADVANCE(38); END_STATE(); case 38: - if (lookahead == '\r') SKIP(38) - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(366); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == '=') ADVANCE(377); - if (lookahead == 'F') ADVANCE(369); - if (lookahead == 'I') ADVANCE(371); - if (lookahead == 'N') ADVANCE(372); - if (lookahead == 'T') ADVANCE(373); - if (lookahead == 'W') ADVANCE(370); - if (lookahead == 'X') ADVANCE(374); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == ']') ADVANCE(169); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '{') ADVANCE(198); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); + ACCEPT_TOKEN(aux_sym__line_token1); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(364); + lookahead != '\n') ADVANCE(38); END_STATE(); case 39: - if (lookahead == '\r') SKIP(38) - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(366); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == '=') ADVANCE(377); - if (lookahead == 'F') ADVANCE(369); - if (lookahead == 'I') ADVANCE(371); - if (lookahead == 'N') ADVANCE(372); - if (lookahead == 'T') ADVANCE(373); - if (lookahead == 'W') ADVANCE(370); - if (lookahead == 'X') ADVANCE(374); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == ']') ADVANCE(169); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '{') ADVANCE(337); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(212); - if (lookahead != 0 && - (lookahead < '\n' || '\f' < lookahead)) ADVANCE(364); + ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); case 40: - if (lookahead == '\r') SKIP(40) - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '+') ADVANCE(376); - if (lookahead == '-') ADVANCE(366); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(369); - if (lookahead == 'I') ADVANCE(371); - if (lookahead == 'N') ADVANCE(372); - if (lookahead == 'T') ADVANCE(373); - if (lookahead == 'W') ADVANCE(370); - if (lookahead == 'X') ADVANCE(374); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == ']') ADVANCE(169); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '{') ADVANCE(198); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); + ACCEPT_TOKEN(sym_link_destination); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(364); + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ') ADVANCE(40); END_STATE(); case 41: - if (lookahead == '\r') SKIP(40) - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '+') ADVANCE(376); - if (lookahead == '-') ADVANCE(366); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(369); - if (lookahead == 'I') ADVANCE(371); - if (lookahead == 'N') ADVANCE(372); - if (lookahead == 'T') ADVANCE(373); - if (lookahead == 'W') ADVANCE(370); - if (lookahead == 'X') ADVANCE(374); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == ']') ADVANCE(169); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '{') ADVANCE(337); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(212); - if (lookahead != 0 && - (lookahead < '\n' || '\f' < lookahead)) ADVANCE(364); + ACCEPT_TOKEN(anon_sym_LBRACE); + if (lookahead == '-') ADVANCE(61); END_STATE(); case 42: - if (lookahead == '\r') SKIP(42) - if (lookahead == ' ') ADVANCE(138); - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(366); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(369); - if (lookahead == 'I') ADVANCE(371); - if (lookahead == 'N') ADVANCE(372); - if (lookahead == 'T') ADVANCE(373); - if (lookahead == 'W') ADVANCE(370); - if (lookahead == 'X') ADVANCE(374); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == ']') ADVANCE(169); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(261); - if (lookahead == '{') ADVANCE(198); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(364); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 43: - if (lookahead == '\r') SKIP(48) - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(182); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(365); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(369); - if (lookahead == 'I') ADVANCE(371); - if (lookahead == 'N') ADVANCE(372); - if (lookahead == 'T') ADVANCE(373); - if (lookahead == 'W') ADVANCE(370); - if (lookahead == 'X') ADVANCE(374); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '{') ADVANCE(198); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(212); - if (lookahead != 0 && - (lookahead < '\n' || '\f' < lookahead)) ADVANCE(364); + ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); case 44: - if (lookahead == '\r') SKIP(48) - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(182); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(365); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(369); - if (lookahead == 'I') ADVANCE(371); - if (lookahead == 'N') ADVANCE(372); - if (lookahead == 'T') ADVANCE(373); - if (lookahead == 'W') ADVANCE(370); - if (lookahead == 'X') ADVANCE(374); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '{') ADVANCE(337); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(212); + ACCEPT_TOKEN(sym_identifier); if (lookahead != 0 && - (lookahead < '\n' || '\f' < lookahead)) ADVANCE(364); + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '}') ADVANCE(44); END_STATE(); case 45: - if (lookahead == '\r') SKIP(48) - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(366); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(369); - if (lookahead == 'I') ADVANCE(371); - if (lookahead == 'N') ADVANCE(372); - if (lookahead == 'T') ADVANCE(373); - if (lookahead == 'W') ADVANCE(370); - if (lookahead == 'X') ADVANCE(374); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == ']') ADVANCE(328); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '{') ADVANCE(198); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(212); - if (lookahead != 0 && - (lookahead < '\n' || '\f' < lookahead)) ADVANCE(364); + ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); case 46: - if (lookahead == '\r') SKIP(48) - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(366); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(369); - if (lookahead == 'I') ADVANCE(371); - if (lookahead == 'N') ADVANCE(372); - if (lookahead == 'T') ADVANCE(373); - if (lookahead == 'W') ADVANCE(370); - if (lookahead == 'X') ADVANCE(374); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == ']') ADVANCE(328); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '{') ADVANCE(337); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(212); + ACCEPT_TOKEN(aux_sym_value_token1); + if (lookahead == '\r') ADVANCE(46); if (lookahead != 0 && - (lookahead < '\n' || '\f' < lookahead)) ADVANCE(364); + lookahead != '\n' && + lookahead != '"') ADVANCE(47); END_STATE(); case 47: - if (lookahead == '\r') SKIP(48) - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(366); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(369); - if (lookahead == 'I') ADVANCE(371); - if (lookahead == 'N') ADVANCE(372); - if (lookahead == 'T') ADVANCE(373); - if (lookahead == 'W') ADVANCE(370); - if (lookahead == 'X') ADVANCE(374); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == ']') ADVANCE(328); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '{') ADVANCE(336); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(212); + ACCEPT_TOKEN(aux_sym_value_token1); if (lookahead != 0 && - (lookahead < '\n' || '\f' < lookahead)) ADVANCE(364); + lookahead != '\n' && + lookahead != '"') ADVANCE(47); END_STATE(); case 48: - if (lookahead == '\r') SKIP(48) - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(366); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(369); - if (lookahead == 'I') ADVANCE(371); - if (lookahead == 'N') ADVANCE(372); - if (lookahead == 'T') ADVANCE(373); - if (lookahead == 'W') ADVANCE(370); - if (lookahead == 'X') ADVANCE(374); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '{') ADVANCE(198); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(364); + ACCEPT_TOKEN(aux_sym_value_token2); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(48); END_STATE(); case 49: - if (lookahead == '\r') SKIP(48) - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(366); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(369); - if (lookahead == 'I') ADVANCE(371); - if (lookahead == 'N') ADVANCE(372); - if (lookahead == 'T') ADVANCE(373); - if (lookahead == 'W') ADVANCE(370); - if (lookahead == 'X') ADVANCE(374); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '{') ADVANCE(337); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); + ACCEPT_TOKEN(sym__whitespace); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(212); - if (lookahead != 0 && - (lookahead < '\n' || '\f' < lookahead)) ADVANCE(364); + lookahead == ' ') ADVANCE(49); END_STATE(); case 50: - if (lookahead == '\r') SKIP(48) - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(366); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(369); - if (lookahead == 'I') ADVANCE(371); - if (lookahead == 'N') ADVANCE(372); - if (lookahead == 'T') ADVANCE(373); - if (lookahead == 'W') ADVANCE(370); - if (lookahead == 'X') ADVANCE(374); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '{') ADVANCE(336); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); + ACCEPT_TOKEN(sym__whitespace1); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(212); - if (lookahead != 0 && - (lookahead < '\n' || '\f' < lookahead)) ADVANCE(364); + lookahead == ' ') ADVANCE(50); END_STATE(); case 51: - if (lookahead == '\r') SKIP(51) - if (lookahead == ' ') ADVANCE(139); - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(270); - if (lookahead == '-') ADVANCE(366); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(369); - if (lookahead == 'I') ADVANCE(371); - if (lookahead == 'N') ADVANCE(372); - if (lookahead == 'T') ADVANCE(373); - if (lookahead == 'W') ADVANCE(370); - if (lookahead == 'X') ADVANCE(374); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '{') ADVANCE(198); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(364); + ACCEPT_TOKEN(aux_sym__inline_token1); END_STATE(); case 52: - if (lookahead == '\r') SKIP(53) - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '+') ADVANCE(376); - if (lookahead == '-') ADVANCE(366); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(369); - if (lookahead == 'I') ADVANCE(371); - if (lookahead == 'N') ADVANCE(372); - if (lookahead == 'T') ADVANCE(373); - if (lookahead == 'W') ADVANCE(370); - if (lookahead == 'X') ADVANCE(374); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '{') ADVANCE(198); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(212); + ACCEPT_TOKEN(aux_sym__inline_token1); + if (!eof && (lookahead == 0)) ADVANCE(32); + if (lookahead == '\r') ADVANCE(52); + if (lookahead == '[') ADVANCE(21); + if (lookahead == '{') ADVANCE(41); + if (lookahead == '|') ADVANCE(29); if (lookahead != 0 && - (lookahead < '\n' || '\f' < lookahead)) ADVANCE(364); + lookahead != '\n') ADVANCE(51); END_STATE(); case 53: - if (lookahead == '\r') SKIP(53) - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '+') ADVANCE(376); - if (lookahead == '-') ADVANCE(366); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(369); - if (lookahead == 'I') ADVANCE(371); - if (lookahead == 'N') ADVANCE(372); - if (lookahead == 'T') ADVANCE(373); - if (lookahead == 'W') ADVANCE(370); - if (lookahead == 'X') ADVANCE(374); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '{') ADVANCE(198); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(364); + ACCEPT_TOKEN(aux_sym__inline_token1); + if (lookahead == '\n') ADVANCE(14); + if (lookahead == '\r') ADVANCE(53); + if (lookahead == '-') ADVANCE(30); + if (lookahead == ':') ADVANCE(57); + if (lookahead == '[') ADVANCE(21); + if (lookahead == '{') ADVANCE(41); + if (lookahead == '|') ADVANCE(29); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') ADVANCE(58); + if (lookahead != 0) ADVANCE(51); END_STATE(); case 54: - if (lookahead == '\r') SKIP(53) - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '+') ADVANCE(376); - if (lookahead == '-') ADVANCE(366); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(369); - if (lookahead == 'I') ADVANCE(371); - if (lookahead == 'N') ADVANCE(372); - if (lookahead == 'T') ADVANCE(373); - if (lookahead == 'W') ADVANCE(370); - if (lookahead == 'X') ADVANCE(374); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '{') ADVANCE(337); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(212); + ACCEPT_TOKEN(aux_sym__inline_token1); + if (lookahead == '\r') ADVANCE(54); + if (lookahead == '[') ADVANCE(21); + if (lookahead == '{') ADVANCE(41); + if (lookahead == '|') ADVANCE(29); if (lookahead != 0 && - (lookahead < '\n' || '\f' < lookahead)) ADVANCE(364); + lookahead != '\n') ADVANCE(51); END_STATE(); case 55: - if (lookahead == '\r') SKIP(53) - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '+') ADVANCE(376); - if (lookahead == '-') ADVANCE(366); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(369); - if (lookahead == 'I') ADVANCE(371); - if (lookahead == 'N') ADVANCE(372); - if (lookahead == 'T') ADVANCE(373); - if (lookahead == 'W') ADVANCE(370); - if (lookahead == 'X') ADVANCE(374); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '{') ADVANCE(336); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(212); + ACCEPT_TOKEN(aux_sym__inline_token1); + if (lookahead == '\r') ADVANCE(55); + if (lookahead == '#') ADVANCE(60); + if (lookahead == '%') ADVANCE(64); + if (lookahead == '.') ADVANCE(43); + if (lookahead == '[') ADVANCE(21); + if (lookahead == '{') ADVANCE(41); + if (lookahead == '|') ADVANCE(29); + if (lookahead == '}') ADVANCE(42); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(59); if (lookahead != 0 && - (lookahead < '\n' || '\f' < lookahead)) ADVANCE(364); + lookahead != '\n') ADVANCE(51); END_STATE(); case 56: - if (lookahead == '\r') SKIP(57) - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(366); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == '=') ADVANCE(377); - if (lookahead == 'F') ADVANCE(369); - if (lookahead == 'I') ADVANCE(371); - if (lookahead == 'N') ADVANCE(372); - if (lookahead == 'T') ADVANCE(373); - if (lookahead == 'W') ADVANCE(370); - if (lookahead == 'X') ADVANCE(374); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '{') ADVANCE(198); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(212); + ACCEPT_TOKEN(aux_sym__inline_token1); + if (lookahead == '\r') ADVANCE(56); + if (lookahead == '[') ADVANCE(21); + if (lookahead == ']') ADVANCE(26); + if (lookahead == '{') ADVANCE(41); + if (lookahead == '|') ADVANCE(29); if (lookahead != 0 && - (lookahead < '\n' || '\f' < lookahead)) ADVANCE(364); + lookahead != '\n') ADVANCE(51); END_STATE(); case 57: - if (lookahead == '\r') SKIP(57) - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(366); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == '=') ADVANCE(377); - if (lookahead == 'F') ADVANCE(369); - if (lookahead == 'I') ADVANCE(371); - if (lookahead == 'N') ADVANCE(372); - if (lookahead == 'T') ADVANCE(373); - if (lookahead == 'W') ADVANCE(370); - if (lookahead == 'X') ADVANCE(374); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '{') ADVANCE(198); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(364); + ACCEPT_TOKEN(aux_sym__inline_token1); + if (lookahead == '-') ADVANCE(30); END_STATE(); case 58: - if (lookahead == '\r') SKIP(57) - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(366); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == '=') ADVANCE(377); - if (lookahead == 'F') ADVANCE(369); - if (lookahead == 'I') ADVANCE(371); - if (lookahead == 'N') ADVANCE(372); - if (lookahead == 'T') ADVANCE(373); - if (lookahead == 'W') ADVANCE(370); - if (lookahead == 'X') ADVANCE(374); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '{') ADVANCE(337); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(212); - if (lookahead != 0 && - (lookahead < '\n' || '\f' < lookahead)) ADVANCE(364); + ACCEPT_TOKEN(aux_sym__inline_token1); + if (lookahead == '-') ADVANCE(30); + if (lookahead == ':') ADVANCE(13); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(14); END_STATE(); case 59: - if (lookahead == '\r') SKIP(57) - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(366); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == '=') ADVANCE(377); - if (lookahead == 'F') ADVANCE(369); - if (lookahead == 'I') ADVANCE(371); - if (lookahead == 'N') ADVANCE(372); - if (lookahead == 'T') ADVANCE(373); - if (lookahead == 'W') ADVANCE(370); - if (lookahead == 'X') ADVANCE(374); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '{') ADVANCE(336); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(212); - if (lookahead != 0 && - (lookahead < '\n' || '\f' < lookahead)) ADVANCE(364); + ACCEPT_TOKEN(aux_sym__inline_token1); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(63); END_STATE(); case 60: - if (lookahead == '\r') SKIP(60) - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '#') ADVANCE(380); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '%') ADVANCE(339); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(306); - if (lookahead == '.') ADVANCE(202); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(311); - if (lookahead == 'I') ADVANCE(314); - if (lookahead == 'N') ADVANCE(315); - if (lookahead == 'T') ADVANCE(316); - if (lookahead == 'W') ADVANCE(312); - if (lookahead == 'X') ADVANCE(323); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(264); - if (lookahead == '{') ADVANCE(198); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '}') ADVANCE(200); - if (lookahead == '~') ADVANCE(297); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(324); + ACCEPT_TOKEN(aux_sym__inline_token1); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(364); + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '}') ADVANCE(44); END_STATE(); case 61: - if (lookahead == '\r') SKIP(60) - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '#') ADVANCE(380); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '%') ADVANCE(339); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(306); - if (lookahead == '.') ADVANCE(202); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(311); - if (lookahead == 'I') ADVANCE(314); - if (lookahead == 'N') ADVANCE(315); - if (lookahead == 'T') ADVANCE(316); - if (lookahead == 'W') ADVANCE(312); - if (lookahead == 'X') ADVANCE(323); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(264); - if (lookahead == '{') ADVANCE(337); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '}') ADVANCE(200); - if (lookahead == '~') ADVANCE(297); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(212); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(324); - if (lookahead != 0 && - (lookahead < '\n' || '\f' < lookahead)) ADVANCE(364); + ACCEPT_TOKEN(anon_sym_LBRACE_DASH); END_STATE(); case 62: - if (lookahead == '\r') SKIP(62) - if (lookahead == ' ') ADVANCE(138); - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(306); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(311); - if (lookahead == 'I') ADVANCE(314); - if (lookahead == 'N') ADVANCE(315); - if (lookahead == 'T') ADVANCE(316); - if (lookahead == 'W') ADVANCE(312); - if (lookahead == 'X') ADVANCE(323); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(262); - if (lookahead == '{') ADVANCE(198); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(324); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(364); + ACCEPT_TOKEN(sym_backslash_escape); END_STATE(); case 63: - if (lookahead == '\r') SKIP(64) - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(306); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(311); - if (lookahead == 'I') ADVANCE(314); - if (lookahead == 'N') ADVANCE(315); - if (lookahead == 'T') ADVANCE(316); - if (lookahead == 'W') ADVANCE(312); - if (lookahead == 'X') ADVANCE(323); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == ']') ADVANCE(328); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(264); - if (lookahead == '{') ADVANCE(337); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(212); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(324); - if (lookahead != 0 && - (lookahead < '\n' || '\f' < lookahead)) ADVANCE(364); - END_STATE(); - case 64: - if (lookahead == '\r') SKIP(64) - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(306); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(311); - if (lookahead == 'I') ADVANCE(314); - if (lookahead == 'N') ADVANCE(315); - if (lookahead == 'T') ADVANCE(316); - if (lookahead == 'W') ADVANCE(312); - if (lookahead == 'X') ADVANCE(323); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(264); - if (lookahead == '{') ADVANCE(198); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(324); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(364); - END_STATE(); - case 65: - if (lookahead == '\r') SKIP(64) - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(306); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(311); - if (lookahead == 'I') ADVANCE(314); - if (lookahead == 'N') ADVANCE(315); - if (lookahead == 'T') ADVANCE(316); - if (lookahead == 'W') ADVANCE(312); - if (lookahead == 'X') ADVANCE(323); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(264); - if (lookahead == '{') ADVANCE(337); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(212); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(324); - if (lookahead != 0 && - (lookahead < '\n' || '\f' < lookahead)) ADVANCE(364); - END_STATE(); - case 66: - if (lookahead == '\r') SKIP(66) - if (lookahead == ' ') ADVANCE(171); - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '+') ADVANCE(376); - if (lookahead == '-') ADVANCE(366); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(369); - if (lookahead == 'I') ADVANCE(371); - if (lookahead == 'N') ADVANCE(372); - if (lookahead == 'T') ADVANCE(373); - if (lookahead == 'W') ADVANCE(370); - if (lookahead == 'X') ADVANCE(374); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '{') ADVANCE(198); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(364); - END_STATE(); - case 67: - if (lookahead == '\r') SKIP(67) - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '+') ADVANCE(376); - if (lookahead == '-') ADVANCE(306); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(311); - if (lookahead == 'I') ADVANCE(314); - if (lookahead == 'N') ADVANCE(315); - if (lookahead == 'T') ADVANCE(316); - if (lookahead == 'W') ADVANCE(312); - if (lookahead == 'X') ADVANCE(323); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(264); - if (lookahead == '{') ADVANCE(198); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(324); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(364); - END_STATE(); - case 68: - if (lookahead == '\r') SKIP(67) - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '+') ADVANCE(376); - if (lookahead == '-') ADVANCE(306); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(311); - if (lookahead == 'I') ADVANCE(314); - if (lookahead == 'N') ADVANCE(315); - if (lookahead == 'T') ADVANCE(316); - if (lookahead == 'W') ADVANCE(312); - if (lookahead == 'X') ADVANCE(323); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(264); - if (lookahead == '{') ADVANCE(337); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(212); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(324); - if (lookahead != 0 && - (lookahead < '\n' || '\f' < lookahead)) ADVANCE(364); - END_STATE(); - case 69: - if (lookahead == '\r') SKIP(69) - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(306); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(311); - if (lookahead == 'I') ADVANCE(314); - if (lookahead == 'N') ADVANCE(315); - if (lookahead == 'T') ADVANCE(316); - if (lookahead == 'W') ADVANCE(312); - if (lookahead == 'X') ADVANCE(323); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == ']') ADVANCE(169); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(264); - if (lookahead == '{') ADVANCE(198); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(324); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(364); - END_STATE(); - case 70: - if (lookahead == '\r') SKIP(69) - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(306); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(311); - if (lookahead == 'I') ADVANCE(314); - if (lookahead == 'N') ADVANCE(315); - if (lookahead == 'T') ADVANCE(316); - if (lookahead == 'W') ADVANCE(312); - if (lookahead == 'X') ADVANCE(323); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == ']') ADVANCE(169); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(264); - if (lookahead == '{') ADVANCE(337); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(212); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(324); - if (lookahead != 0 && - (lookahead < '\n' || '\f' < lookahead)) ADVANCE(364); - END_STATE(); - case 71: - if (lookahead == '\r') SKIP(71) - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(306); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == '=') ADVANCE(377); - if (lookahead == 'F') ADVANCE(311); - if (lookahead == 'I') ADVANCE(314); - if (lookahead == 'N') ADVANCE(315); - if (lookahead == 'T') ADVANCE(316); - if (lookahead == 'W') ADVANCE(312); - if (lookahead == 'X') ADVANCE(323); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(264); - if (lookahead == '{') ADVANCE(198); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(324); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(364); - END_STATE(); - case 72: - if (lookahead == '\r') SKIP(71) - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(306); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == '=') ADVANCE(377); - if (lookahead == 'F') ADVANCE(311); - if (lookahead == 'I') ADVANCE(314); - if (lookahead == 'N') ADVANCE(315); - if (lookahead == 'T') ADVANCE(316); - if (lookahead == 'W') ADVANCE(312); - if (lookahead == 'X') ADVANCE(323); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(264); - if (lookahead == '{') ADVANCE(337); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(212); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(324); - if (lookahead != 0 && - (lookahead < '\n' || '\f' < lookahead)) ADVANCE(364); - END_STATE(); - case 73: - if (lookahead == '\r') SKIP(73) - if (lookahead == ' ') ADVANCE(171); - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(366); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == '=') ADVANCE(377); - if (lookahead == 'F') ADVANCE(369); - if (lookahead == 'I') ADVANCE(371); - if (lookahead == 'N') ADVANCE(372); - if (lookahead == 'T') ADVANCE(373); - if (lookahead == 'W') ADVANCE(370); - if (lookahead == 'X') ADVANCE(374); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '{') ADVANCE(198); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(364); - END_STATE(); - case 74: - if (lookahead == '\r') SKIP(75) - if (lookahead == '!') ADVANCE(252); - if (lookahead == '"') ADVANCE(253); - if (lookahead == '$') ADVANCE(345); - if (lookahead == '\'') ADVANCE(253); - if (lookahead == '*') ADVANCE(272); - if (lookahead == '-') ADVANCE(231); - if (lookahead == '.') ADVANCE(233); - if (lookahead == ':') ADVANCE(234); - if (lookahead == '<') ADVANCE(229); - if (lookahead == '>') ADVANCE(364); - if (lookahead == 'F') ADVANCE(240); - if (lookahead == 'I') ADVANCE(242); - if (lookahead == 'N') ADVANCE(243); - if (lookahead == 'T') ADVANCE(244); - if (lookahead == 'W') ADVANCE(239); - if (lookahead == 'X') ADVANCE(251); - if (lookahead == '[') ADVANCE(164); - if (lookahead == '\\') ADVANCE(214); - if (lookahead == '^') ADVANCE(291); - if (lookahead == '_') ADVANCE(265); - if (lookahead == '{') ADVANCE(338); - if (lookahead == '|') ADVANCE(180); - if (lookahead == '~') ADVANCE(300); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(212); - if (lookahead != 0 && - (lookahead < '\n' || '\f' < lookahead)) ADVANCE(256); - END_STATE(); - case 75: - if (lookahead == '\r') SKIP(75) - if (lookahead == '!') ADVANCE(252); - if (lookahead == '"') ADVANCE(253); - if (lookahead == '$') ADVANCE(345); - if (lookahead == '\'') ADVANCE(253); - if (lookahead == '*') ADVANCE(272); - if (lookahead == '-') ADVANCE(231); - if (lookahead == '.') ADVANCE(233); - if (lookahead == ':') ADVANCE(234); - if (lookahead == '<') ADVANCE(229); - if (lookahead == '>') ADVANCE(364); - if (lookahead == 'F') ADVANCE(240); - if (lookahead == 'I') ADVANCE(242); - if (lookahead == 'N') ADVANCE(243); - if (lookahead == 'T') ADVANCE(244); - if (lookahead == 'W') ADVANCE(239); - if (lookahead == 'X') ADVANCE(251); - if (lookahead == '[') ADVANCE(164); - if (lookahead == '\\') ADVANCE(214); - if (lookahead == '^') ADVANCE(291); - if (lookahead == '_') ADVANCE(265); - if (lookahead == '{') ADVANCE(199); - if (lookahead == '|') ADVANCE(180); - if (lookahead == '~') ADVANCE(300); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(256); - END_STATE(); - case 76: - if (lookahead == '\r') SKIP(77) - if (lookahead == '!') ADVANCE(252); - if (lookahead == '"') ADVANCE(253); - if (lookahead == '$') ADVANCE(345); - if (lookahead == '\'') ADVANCE(253); - if (lookahead == '*') ADVANCE(272); - if (lookahead == '-') ADVANCE(231); - if (lookahead == '.') ADVANCE(233); - if (lookahead == ':') ADVANCE(234); - if (lookahead == '<') ADVANCE(229); - if (lookahead == '=') ADVANCE(254); - if (lookahead == '>') ADVANCE(364); - if (lookahead == 'F') ADVANCE(240); - if (lookahead == 'I') ADVANCE(242); - if (lookahead == 'N') ADVANCE(243); - if (lookahead == 'T') ADVANCE(244); - if (lookahead == 'W') ADVANCE(239); - if (lookahead == 'X') ADVANCE(251); - if (lookahead == '[') ADVANCE(164); - if (lookahead == '\\') ADVANCE(214); - if (lookahead == '^') ADVANCE(292); - if (lookahead == '_') ADVANCE(265); - if (lookahead == '{') ADVANCE(338); - if (lookahead == '|') ADVANCE(180); - if (lookahead == '~') ADVANCE(300); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(212); - if (lookahead != 0 && - (lookahead < '\n' || '\f' < lookahead)) ADVANCE(256); - END_STATE(); - case 77: - if (lookahead == '\r') SKIP(77) - if (lookahead == '!') ADVANCE(252); - if (lookahead == '"') ADVANCE(253); - if (lookahead == '$') ADVANCE(345); - if (lookahead == '\'') ADVANCE(253); - if (lookahead == '*') ADVANCE(272); - if (lookahead == '-') ADVANCE(231); - if (lookahead == '.') ADVANCE(233); - if (lookahead == ':') ADVANCE(234); - if (lookahead == '<') ADVANCE(229); - if (lookahead == '=') ADVANCE(254); - if (lookahead == '>') ADVANCE(364); - if (lookahead == 'F') ADVANCE(240); - if (lookahead == 'I') ADVANCE(242); - if (lookahead == 'N') ADVANCE(243); - if (lookahead == 'T') ADVANCE(244); - if (lookahead == 'W') ADVANCE(239); - if (lookahead == 'X') ADVANCE(251); - if (lookahead == '[') ADVANCE(164); - if (lookahead == '\\') ADVANCE(214); - if (lookahead == '^') ADVANCE(292); - if (lookahead == '_') ADVANCE(265); - if (lookahead == '{') ADVANCE(199); - if (lookahead == '|') ADVANCE(180); - if (lookahead == '~') ADVANCE(300); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(256); - END_STATE(); - case 78: - if (lookahead == '\r') SKIP(79) - if (lookahead == '!') ADVANCE(252); - if (lookahead == '"') ADVANCE(253); - if (lookahead == '$') ADVANCE(345); - if (lookahead == '\'') ADVANCE(253); - if (lookahead == '*') ADVANCE(272); - if (lookahead == '-') ADVANCE(231); - if (lookahead == '.') ADVANCE(233); - if (lookahead == ':') ADVANCE(234); - if (lookahead == '<') ADVANCE(229); - if (lookahead == '>') ADVANCE(364); - if (lookahead == 'F') ADVANCE(240); - if (lookahead == 'I') ADVANCE(242); - if (lookahead == 'N') ADVANCE(243); - if (lookahead == 'T') ADVANCE(244); - if (lookahead == 'W') ADVANCE(239); - if (lookahead == 'X') ADVANCE(251); - if (lookahead == '[') ADVANCE(164); - if (lookahead == '\\') ADVANCE(214); - if (lookahead == ']') ADVANCE(170); - if (lookahead == '^') ADVANCE(292); - if (lookahead == '_') ADVANCE(265); - if (lookahead == '{') ADVANCE(338); - if (lookahead == '|') ADVANCE(180); - if (lookahead == '~') ADVANCE(300); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(212); - if (lookahead != 0 && - (lookahead < '\n' || '\f' < lookahead)) ADVANCE(256); - END_STATE(); - case 79: - if (lookahead == '\r') SKIP(79) - if (lookahead == '!') ADVANCE(252); - if (lookahead == '"') ADVANCE(253); - if (lookahead == '$') ADVANCE(345); - if (lookahead == '\'') ADVANCE(253); - if (lookahead == '*') ADVANCE(272); - if (lookahead == '-') ADVANCE(231); - if (lookahead == '.') ADVANCE(233); - if (lookahead == ':') ADVANCE(234); - if (lookahead == '<') ADVANCE(229); - if (lookahead == '>') ADVANCE(364); - if (lookahead == 'F') ADVANCE(240); - if (lookahead == 'I') ADVANCE(242); - if (lookahead == 'N') ADVANCE(243); - if (lookahead == 'T') ADVANCE(244); - if (lookahead == 'W') ADVANCE(239); - if (lookahead == 'X') ADVANCE(251); - if (lookahead == '[') ADVANCE(164); - if (lookahead == '\\') ADVANCE(214); - if (lookahead == ']') ADVANCE(170); - if (lookahead == '^') ADVANCE(292); - if (lookahead == '_') ADVANCE(265); - if (lookahead == '{') ADVANCE(199); - if (lookahead == '|') ADVANCE(180); - if (lookahead == '~') ADVANCE(300); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(256); - END_STATE(); - case 80: - if (lookahead == '\r') SKIP(81) - if (lookahead == '!') ADVANCE(252); - if (lookahead == '"') ADVANCE(253); - if (lookahead == '$') ADVANCE(345); - if (lookahead == '\'') ADVANCE(253); - if (lookahead == '*') ADVANCE(272); - if (lookahead == '+') ADVANCE(255); - if (lookahead == '-') ADVANCE(231); - if (lookahead == '.') ADVANCE(233); - if (lookahead == ':') ADVANCE(234); - if (lookahead == '<') ADVANCE(229); - if (lookahead == '>') ADVANCE(364); - if (lookahead == 'F') ADVANCE(240); - if (lookahead == 'I') ADVANCE(242); - if (lookahead == 'N') ADVANCE(243); - if (lookahead == 'T') ADVANCE(244); - if (lookahead == 'W') ADVANCE(239); - if (lookahead == 'X') ADVANCE(251); - if (lookahead == '[') ADVANCE(164); - if (lookahead == '\\') ADVANCE(214); - if (lookahead == '^') ADVANCE(292); - if (lookahead == '_') ADVANCE(265); - if (lookahead == '{') ADVANCE(338); - if (lookahead == '|') ADVANCE(180); - if (lookahead == '~') ADVANCE(300); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(212); - if (lookahead != 0 && - (lookahead < '\n' || '\f' < lookahead)) ADVANCE(256); - END_STATE(); - case 81: - if (lookahead == '\r') SKIP(81) - if (lookahead == '!') ADVANCE(252); - if (lookahead == '"') ADVANCE(253); - if (lookahead == '$') ADVANCE(345); - if (lookahead == '\'') ADVANCE(253); - if (lookahead == '*') ADVANCE(272); - if (lookahead == '+') ADVANCE(255); - if (lookahead == '-') ADVANCE(231); - if (lookahead == '.') ADVANCE(233); - if (lookahead == ':') ADVANCE(234); - if (lookahead == '<') ADVANCE(229); - if (lookahead == '>') ADVANCE(364); - if (lookahead == 'F') ADVANCE(240); - if (lookahead == 'I') ADVANCE(242); - if (lookahead == 'N') ADVANCE(243); - if (lookahead == 'T') ADVANCE(244); - if (lookahead == 'W') ADVANCE(239); - if (lookahead == 'X') ADVANCE(251); - if (lookahead == '[') ADVANCE(164); - if (lookahead == '\\') ADVANCE(214); - if (lookahead == '^') ADVANCE(292); - if (lookahead == '_') ADVANCE(265); - if (lookahead == '{') ADVANCE(199); - if (lookahead == '|') ADVANCE(180); - if (lookahead == '~') ADVANCE(300); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(256); - END_STATE(); - case 82: - if (lookahead == '\r') SKIP(82) - if (lookahead == ' ') ADVANCE(138); - if (lookahead == '!') ADVANCE(252); - if (lookahead == '"') ADVANCE(253); - if (lookahead == '$') ADVANCE(345); - if (lookahead == '\'') ADVANCE(253); - if (lookahead == '*') ADVANCE(272); - if (lookahead == '-') ADVANCE(231); - if (lookahead == '.') ADVANCE(233); - if (lookahead == ':') ADVANCE(234); - if (lookahead == '<') ADVANCE(229); - if (lookahead == '>') ADVANCE(364); - if (lookahead == 'F') ADVANCE(240); - if (lookahead == 'I') ADVANCE(242); - if (lookahead == 'N') ADVANCE(243); - if (lookahead == 'T') ADVANCE(244); - if (lookahead == 'W') ADVANCE(239); - if (lookahead == 'X') ADVANCE(251); - if (lookahead == '[') ADVANCE(164); - if (lookahead == '\\') ADVANCE(214); - if (lookahead == '^') ADVANCE(292); - if (lookahead == '_') ADVANCE(263); - if (lookahead == '{') ADVANCE(199); - if (lookahead == '|') ADVANCE(180); - if (lookahead == '~') ADVANCE(300); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(256); - END_STATE(); - case 83: - if (lookahead == '\r') SKIP(84) - if (lookahead == '"') ADVANCE(204); - if (lookahead == '#') ADVANCE(156); - if (lookahead == '%') ADVANCE(339); - if (lookahead == '(') ADVANCE(330); - if (lookahead == ')') ADVANCE(333); - if (lookahead == '.') ADVANCE(201); - if (lookahead == ':') ADVANCE(192); - if (lookahead == '=') ADVANCE(186); - if (lookahead == '>') ADVANCE(257); - if (lookahead == '[') ADVANCE(162); - if (lookahead == ']') ADVANCE(142); - if (lookahead == '{') ADVANCE(334); - if (lookahead == '}') ADVANCE(200); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(212); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(324); - END_STATE(); - case 84: - if (lookahead == '\r') SKIP(84) - if (lookahead == '"') ADVANCE(204); - if (lookahead == '#') ADVANCE(156); - if (lookahead == '%') ADVANCE(339); - if (lookahead == '(') ADVANCE(330); - if (lookahead == ')') ADVANCE(333); - if (lookahead == '.') ADVANCE(201); - if (lookahead == ':') ADVANCE(192); - if (lookahead == '=') ADVANCE(186); - if (lookahead == '>') ADVANCE(257); - if (lookahead == '[') ADVANCE(161); - if (lookahead == ']') ADVANCE(142); - if (lookahead == '}') ADVANCE(200); + ACCEPT_TOKEN(sym__id); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(324); - END_STATE(); - case 85: - if (lookahead == '\r') ADVANCE(341); - if (lookahead == '%') ADVANCE(339); - if (lookahead == '\\') ADVANCE(342); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(340); - END_STATE(); - case 86: - if (lookahead == '\r') ADVANCE(188); - if (lookahead == '=') ADVANCE(186); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != ' ' && - lookahead != '{' && - lookahead != '}') ADVANCE(189); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(63); END_STATE(); - case 87: - if (lookahead == '\r') SKIP(87) - if (lookahead == '"') ADVANCE(204); - if (lookahead == '[') ADVANCE(161); - if (lookahead == '{') ADVANCE(196); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(207); + case 64: + ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); - case 88: - if (lookahead == '\r') SKIP(88) - if (lookahead == ' ') ADVANCE(171); - if (lookahead == 'X') ADVANCE(167); - if (lookahead == 'x') ADVANCE(165); + case 65: + ACCEPT_TOKEN(aux_sym__comment_no_newline_token1); END_STATE(); - case 89: - if (lookahead == '\r') ADVANCE(331); + case 66: + ACCEPT_TOKEN(aux_sym__comment_no_newline_token1); + if (lookahead == '\r') ADVANCE(66); + if (lookahead == '\\') ADVANCE(67); if (lookahead != 0 && lookahead != '\n' && - lookahead != ')') ADVANCE(332); + lookahead != '%') ADVANCE(65); END_STATE(); - case 90: - if (lookahead == '\r') ADVANCE(205); + case 67: + ACCEPT_TOKEN(aux_sym__comment_no_newline_token1); if (lookahead != 0 && lookahead != '\n' && - lookahead != '"') ADVANCE(206); - END_STATE(); - case 91: - if (lookahead == '\r') SKIP(91) - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(195); - END_STATE(); - case 92: - if (lookahead == '\r') SKIP(94) - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(366); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(369); - if (lookahead == 'I') ADVANCE(371); - if (lookahead == 'N') ADVANCE(372); - if (lookahead == 'T') ADVANCE(373); - if (lookahead == 'W') ADVANCE(370); - if (lookahead == 'X') ADVANCE(374); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == ']') ADVANCE(328); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '{') ADVANCE(337); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(212); - if (lookahead != 0 && - (lookahead < '\n' || '\f' < lookahead)) ADVANCE(364); - END_STATE(); - case 93: - if (lookahead == '\r') SKIP(94) - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(366); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(369); - if (lookahead == 'I') ADVANCE(371); - if (lookahead == 'N') ADVANCE(372); - if (lookahead == 'T') ADVANCE(373); - if (lookahead == 'W') ADVANCE(370); - if (lookahead == 'X') ADVANCE(374); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == ']') ADVANCE(169); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '{') ADVANCE(198); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(212); - if (lookahead != 0 && - (lookahead < '\n' || '\f' < lookahead)) ADVANCE(364); - END_STATE(); - case 94: - if (lookahead == '\r') SKIP(94) - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(366); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(369); - if (lookahead == 'I') ADVANCE(371); - if (lookahead == 'N') ADVANCE(372); - if (lookahead == 'T') ADVANCE(373); - if (lookahead == 'W') ADVANCE(370); - if (lookahead == 'X') ADVANCE(374); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == ']') ADVANCE(169); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '{') ADVANCE(198); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(364); - END_STATE(); - case 95: - if (lookahead == '\r') SKIP(94) - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(366); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(369); - if (lookahead == 'I') ADVANCE(371); - if (lookahead == 'N') ADVANCE(372); - if (lookahead == 'T') ADVANCE(373); - if (lookahead == 'W') ADVANCE(370); - if (lookahead == 'X') ADVANCE(374); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == ']') ADVANCE(169); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '{') ADVANCE(337); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(212); - if (lookahead != 0 && - (lookahead < '\n' || '\f' < lookahead)) ADVANCE(364); - END_STATE(); - case 96: - if (lookahead == '\r') SKIP(94) - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(366); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(369); - if (lookahead == 'I') ADVANCE(371); - if (lookahead == 'N') ADVANCE(372); - if (lookahead == 'T') ADVANCE(373); - if (lookahead == 'W') ADVANCE(370); - if (lookahead == 'X') ADVANCE(374); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == ']') ADVANCE(169); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '{') ADVANCE(336); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(212); - if (lookahead != 0 && - (lookahead < '\n' || '\f' < lookahead)) ADVANCE(364); - END_STATE(); - case 97: - if (lookahead == '\r') SKIP(97) - if (lookahead == ' ') ADVANCE(139); - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(270); - if (lookahead == '-') ADVANCE(366); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(369); - if (lookahead == 'I') ADVANCE(371); - if (lookahead == 'N') ADVANCE(372); - if (lookahead == 'T') ADVANCE(373); - if (lookahead == 'W') ADVANCE(370); - if (lookahead == 'X') ADVANCE(374); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == ']') ADVANCE(169); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '{') ADVANCE(198); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(364); + lookahead != '\r' && + lookahead != '\\') ADVANCE(62); END_STATE(); - case 98: - if (lookahead == '\r') SKIP(99) - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(366); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(369); - if (lookahead == 'I') ADVANCE(371); - if (lookahead == 'N') ADVANCE(372); - if (lookahead == 'T') ADVANCE(373); - if (lookahead == 'W') ADVANCE(370); - if (lookahead == 'X') ADVANCE(374); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '{') ADVANCE(198); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(298); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(212); - if (lookahead != 0 && - (lookahead < '\n' || '\f' < lookahead)) ADVANCE(364); - END_STATE(); - case 99: - if (lookahead == '\r') SKIP(99) - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(366); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(369); - if (lookahead == 'I') ADVANCE(371); - if (lookahead == 'N') ADVANCE(372); - if (lookahead == 'T') ADVANCE(373); - if (lookahead == 'W') ADVANCE(370); - if (lookahead == 'X') ADVANCE(374); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '{') ADVANCE(198); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(298); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(364); - END_STATE(); - case 100: - if (lookahead == '\r') SKIP(99) - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(366); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(369); - if (lookahead == 'I') ADVANCE(371); - if (lookahead == 'N') ADVANCE(372); - if (lookahead == 'T') ADVANCE(373); - if (lookahead == 'W') ADVANCE(370); - if (lookahead == 'X') ADVANCE(374); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '{') ADVANCE(337); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(298); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(212); - if (lookahead != 0 && - (lookahead < '\n' || '\f' < lookahead)) ADVANCE(364); - END_STATE(); - case 101: - if (lookahead == '\r') SKIP(99) - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(366); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(369); - if (lookahead == 'I') ADVANCE(371); - if (lookahead == 'N') ADVANCE(372); - if (lookahead == 'T') ADVANCE(373); - if (lookahead == 'W') ADVANCE(370); - if (lookahead == 'X') ADVANCE(374); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '{') ADVANCE(336); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(298); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(212); - if (lookahead != 0 && - (lookahead < '\n' || '\f' < lookahead)) ADVANCE(364); - END_STATE(); - case 102: - if (lookahead == '\r') SKIP(102) - if (lookahead == ' ') ADVANCE(138); - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(366); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(369); - if (lookahead == 'I') ADVANCE(371); - if (lookahead == 'N') ADVANCE(372); - if (lookahead == 'T') ADVANCE(373); - if (lookahead == 'W') ADVANCE(370); - if (lookahead == 'X') ADVANCE(374); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(261); - if (lookahead == '{') ADVANCE(198); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(364); - END_STATE(); - case 103: - if (lookahead == '\r') SKIP(103) - if (lookahead == ' ') ADVANCE(139); - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(270); - if (lookahead == '-') ADVANCE(306); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(311); - if (lookahead == 'I') ADVANCE(314); - if (lookahead == 'N') ADVANCE(315); - if (lookahead == 'T') ADVANCE(316); - if (lookahead == 'W') ADVANCE(312); - if (lookahead == 'X') ADVANCE(323); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(264); - if (lookahead == '{') ADVANCE(198); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(324); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(364); - END_STATE(); - case 104: - if (lookahead == '\r') SKIP(104) - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(305); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(311); - if (lookahead == 'I') ADVANCE(314); - if (lookahead == 'N') ADVANCE(315); - if (lookahead == 'T') ADVANCE(316); - if (lookahead == 'W') ADVANCE(312); - if (lookahead == 'X') ADVANCE(323); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(264); - if (lookahead == '{') ADVANCE(198); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(324); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(364); - END_STATE(); - case 105: - if (lookahead == '\r') SKIP(104) - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(305); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(311); - if (lookahead == 'I') ADVANCE(314); - if (lookahead == 'N') ADVANCE(315); - if (lookahead == 'T') ADVANCE(316); - if (lookahead == 'W') ADVANCE(312); - if (lookahead == 'X') ADVANCE(323); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(264); - if (lookahead == '{') ADVANCE(337); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(212); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(324); - if (lookahead != 0 && - (lookahead < '\n' || '\f' < lookahead)) ADVANCE(364); - END_STATE(); - case 106: - if (lookahead == '\r') SKIP(107) - if (lookahead == '!') ADVANCE(252); - if (lookahead == '"') ADVANCE(253); - if (lookahead == '$') ADVANCE(345); - if (lookahead == '\'') ADVANCE(253); - if (lookahead == '*') ADVANCE(272); - if (lookahead == '-') ADVANCE(230); - if (lookahead == '.') ADVANCE(233); - if (lookahead == ':') ADVANCE(234); - if (lookahead == '<') ADVANCE(229); - if (lookahead == '>') ADVANCE(364); - if (lookahead == 'F') ADVANCE(240); - if (lookahead == 'I') ADVANCE(242); - if (lookahead == 'N') ADVANCE(243); - if (lookahead == 'T') ADVANCE(244); - if (lookahead == 'W') ADVANCE(239); - if (lookahead == 'X') ADVANCE(251); - if (lookahead == '[') ADVANCE(164); - if (lookahead == '\\') ADVANCE(214); - if (lookahead == '^') ADVANCE(292); - if (lookahead == '_') ADVANCE(265); - if (lookahead == '{') ADVANCE(338); - if (lookahead == '|') ADVANCE(180); - if (lookahead == '~') ADVANCE(300); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(212); - if (lookahead != 0 && - (lookahead < '\n' || '\f' < lookahead)) ADVANCE(256); - END_STATE(); - case 107: - if (lookahead == '\r') SKIP(107) - if (lookahead == '!') ADVANCE(252); - if (lookahead == '"') ADVANCE(253); - if (lookahead == '$') ADVANCE(345); - if (lookahead == '\'') ADVANCE(253); - if (lookahead == '*') ADVANCE(272); - if (lookahead == '-') ADVANCE(230); - if (lookahead == '.') ADVANCE(233); - if (lookahead == ':') ADVANCE(234); - if (lookahead == '<') ADVANCE(229); - if (lookahead == '>') ADVANCE(364); - if (lookahead == 'F') ADVANCE(240); - if (lookahead == 'I') ADVANCE(242); - if (lookahead == 'N') ADVANCE(243); - if (lookahead == 'T') ADVANCE(244); - if (lookahead == 'W') ADVANCE(239); - if (lookahead == 'X') ADVANCE(251); - if (lookahead == '[') ADVANCE(164); - if (lookahead == '\\') ADVANCE(214); - if (lookahead == '^') ADVANCE(292); - if (lookahead == '_') ADVANCE(265); - if (lookahead == '{') ADVANCE(199); - if (lookahead == '|') ADVANCE(180); - if (lookahead == '~') ADVANCE(300); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(256); - END_STATE(); - case 108: - if (lookahead == '\r') SKIP(108) - if (lookahead == ' ') ADVANCE(139); - if (lookahead == '!') ADVANCE(252); - if (lookahead == '"') ADVANCE(253); - if (lookahead == '$') ADVANCE(345); - if (lookahead == '\'') ADVANCE(253); - if (lookahead == '*') ADVANCE(271); - if (lookahead == '-') ADVANCE(231); - if (lookahead == '.') ADVANCE(233); - if (lookahead == ':') ADVANCE(234); - if (lookahead == '<') ADVANCE(229); - if (lookahead == '>') ADVANCE(364); - if (lookahead == 'F') ADVANCE(240); - if (lookahead == 'I') ADVANCE(242); - if (lookahead == 'N') ADVANCE(243); - if (lookahead == 'T') ADVANCE(244); - if (lookahead == 'W') ADVANCE(239); - if (lookahead == 'X') ADVANCE(251); - if (lookahead == '[') ADVANCE(164); - if (lookahead == '\\') ADVANCE(214); - if (lookahead == '^') ADVANCE(292); - if (lookahead == '_') ADVANCE(265); - if (lookahead == '{') ADVANCE(199); - if (lookahead == '|') ADVANCE(180); - if (lookahead == '~') ADVANCE(300); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(256); - END_STATE(); - case 109: - if (lookahead == '\r') SKIP(109) - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(366); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(369); - if (lookahead == 'I') ADVANCE(371); - if (lookahead == 'N') ADVANCE(372); - if (lookahead == 'T') ADVANCE(373); - if (lookahead == 'W') ADVANCE(370); - if (lookahead == 'X') ADVANCE(374); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == ']') ADVANCE(169); - if (lookahead == '^') ADVANCE(290); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '{') ADVANCE(198); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(364); - END_STATE(); - case 110: - if (lookahead == '\r') SKIP(109) - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(366); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(369); - if (lookahead == 'I') ADVANCE(371); - if (lookahead == 'N') ADVANCE(372); - if (lookahead == 'T') ADVANCE(373); - if (lookahead == 'W') ADVANCE(370); - if (lookahead == 'X') ADVANCE(374); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == ']') ADVANCE(169); - if (lookahead == '^') ADVANCE(290); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '{') ADVANCE(337); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(212); - if (lookahead != 0 && - (lookahead < '\n' || '\f' < lookahead)) ADVANCE(364); - END_STATE(); - case 111: - if (lookahead == '\r') SKIP(111) - if (lookahead == ' ') ADVANCE(171); - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(366); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(369); - if (lookahead == 'I') ADVANCE(371); - if (lookahead == 'N') ADVANCE(372); - if (lookahead == 'T') ADVANCE(373); - if (lookahead == 'W') ADVANCE(370); - if (lookahead == 'X') ADVANCE(374); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == ']') ADVANCE(169); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '{') ADVANCE(198); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(364); - END_STATE(); - case 112: - if (lookahead == '\r') SKIP(113) - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(366); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(369); - if (lookahead == 'I') ADVANCE(371); - if (lookahead == 'N') ADVANCE(372); - if (lookahead == 'T') ADVANCE(373); - if (lookahead == 'W') ADVANCE(370); - if (lookahead == 'X') ADVANCE(374); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == '^') ADVANCE(290); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '{') ADVANCE(198); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(212); - if (lookahead != 0 && - (lookahead < '\n' || '\f' < lookahead)) ADVANCE(364); - END_STATE(); - case 113: - if (lookahead == '\r') SKIP(113) - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(366); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(369); - if (lookahead == 'I') ADVANCE(371); - if (lookahead == 'N') ADVANCE(372); - if (lookahead == 'T') ADVANCE(373); - if (lookahead == 'W') ADVANCE(370); - if (lookahead == 'X') ADVANCE(374); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == '^') ADVANCE(290); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '{') ADVANCE(198); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(364); - END_STATE(); - case 114: - if (lookahead == '\r') SKIP(113) - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(366); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(369); - if (lookahead == 'I') ADVANCE(371); - if (lookahead == 'N') ADVANCE(372); - if (lookahead == 'T') ADVANCE(373); - if (lookahead == 'W') ADVANCE(370); - if (lookahead == 'X') ADVANCE(374); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == '^') ADVANCE(290); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '{') ADVANCE(337); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(212); - if (lookahead != 0 && - (lookahead < '\n' || '\f' < lookahead)) ADVANCE(364); - END_STATE(); - case 115: - if (lookahead == '\r') SKIP(113) - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(366); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(369); - if (lookahead == 'I') ADVANCE(371); - if (lookahead == 'N') ADVANCE(372); - if (lookahead == 'T') ADVANCE(373); - if (lookahead == 'W') ADVANCE(370); - if (lookahead == 'X') ADVANCE(374); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == '^') ADVANCE(290); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '{') ADVANCE(336); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(212); - if (lookahead != 0 && - (lookahead < '\n' || '\f' < lookahead)) ADVANCE(364); - END_STATE(); - case 116: - if (lookahead == '\r') SKIP(116) - if (lookahead == ' ') ADVANCE(171); - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(366); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(369); - if (lookahead == 'I') ADVANCE(371); - if (lookahead == 'N') ADVANCE(372); - if (lookahead == 'T') ADVANCE(373); - if (lookahead == 'W') ADVANCE(370); - if (lookahead == 'X') ADVANCE(374); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '{') ADVANCE(198); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(364); - END_STATE(); - case 117: - if (lookahead == '\r') SKIP(117) - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(306); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(311); - if (lookahead == 'I') ADVANCE(314); - if (lookahead == 'N') ADVANCE(315); - if (lookahead == 'T') ADVANCE(316); - if (lookahead == 'W') ADVANCE(312); - if (lookahead == 'X') ADVANCE(323); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == '^') ADVANCE(290); - if (lookahead == '_') ADVANCE(264); - if (lookahead == '{') ADVANCE(198); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(324); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(364); - END_STATE(); - case 118: - if (lookahead == '\r') SKIP(117) - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(306); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(311); - if (lookahead == 'I') ADVANCE(314); - if (lookahead == 'N') ADVANCE(315); - if (lookahead == 'T') ADVANCE(316); - if (lookahead == 'W') ADVANCE(312); - if (lookahead == 'X') ADVANCE(323); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == '^') ADVANCE(290); - if (lookahead == '_') ADVANCE(264); - if (lookahead == '{') ADVANCE(337); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(212); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(324); - if (lookahead != 0 && - (lookahead < '\n' || '\f' < lookahead)) ADVANCE(364); - END_STATE(); - case 119: - if (lookahead == '\r') SKIP(120) - if (lookahead == '!') ADVANCE(252); - if (lookahead == '"') ADVANCE(253); - if (lookahead == '$') ADVANCE(345); - if (lookahead == '\'') ADVANCE(253); - if (lookahead == '*') ADVANCE(272); - if (lookahead == '-') ADVANCE(231); - if (lookahead == '.') ADVANCE(233); - if (lookahead == ':') ADVANCE(234); - if (lookahead == '<') ADVANCE(229); - if (lookahead == '>') ADVANCE(364); - if (lookahead == 'F') ADVANCE(240); - if (lookahead == 'I') ADVANCE(242); - if (lookahead == 'N') ADVANCE(243); - if (lookahead == 'T') ADVANCE(244); - if (lookahead == 'W') ADVANCE(239); - if (lookahead == 'X') ADVANCE(251); - if (lookahead == '[') ADVANCE(164); - if (lookahead == '\\') ADVANCE(214); - if (lookahead == '^') ADVANCE(292); - if (lookahead == '_') ADVANCE(265); - if (lookahead == '{') ADVANCE(338); - if (lookahead == '|') ADVANCE(180); - if (lookahead == '~') ADVANCE(299); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(212); - if (lookahead != 0 && - (lookahead < '\n' || '\f' < lookahead)) ADVANCE(256); - END_STATE(); - case 120: - if (lookahead == '\r') SKIP(120) - if (lookahead == '!') ADVANCE(252); - if (lookahead == '"') ADVANCE(253); - if (lookahead == '$') ADVANCE(345); - if (lookahead == '\'') ADVANCE(253); - if (lookahead == '*') ADVANCE(272); - if (lookahead == '-') ADVANCE(231); - if (lookahead == '.') ADVANCE(233); - if (lookahead == ':') ADVANCE(234); - if (lookahead == '<') ADVANCE(229); - if (lookahead == '>') ADVANCE(364); - if (lookahead == 'F') ADVANCE(240); - if (lookahead == 'I') ADVANCE(242); - if (lookahead == 'N') ADVANCE(243); - if (lookahead == 'T') ADVANCE(244); - if (lookahead == 'W') ADVANCE(239); - if (lookahead == 'X') ADVANCE(251); - if (lookahead == '[') ADVANCE(164); - if (lookahead == '\\') ADVANCE(214); - if (lookahead == '^') ADVANCE(292); - if (lookahead == '_') ADVANCE(265); - if (lookahead == '{') ADVANCE(199); - if (lookahead == '|') ADVANCE(180); - if (lookahead == '~') ADVANCE(299); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(256); - END_STATE(); - case 121: - if (lookahead == '\r') SKIP(121) - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(366); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(369); - if (lookahead == 'I') ADVANCE(371); - if (lookahead == 'N') ADVANCE(372); - if (lookahead == 'T') ADVANCE(373); - if (lookahead == 'W') ADVANCE(370); - if (lookahead == 'X') ADVANCE(374); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == ']') ADVANCE(169); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '{') ADVANCE(198); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(298); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(364); - END_STATE(); - case 122: - if (lookahead == '\r') SKIP(121) - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(366); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(369); - if (lookahead == 'I') ADVANCE(371); - if (lookahead == 'N') ADVANCE(372); - if (lookahead == 'T') ADVANCE(373); - if (lookahead == 'W') ADVANCE(370); - if (lookahead == 'X') ADVANCE(374); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == ']') ADVANCE(169); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '{') ADVANCE(337); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(298); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(212); - if (lookahead != 0 && - (lookahead < '\n' || '\f' < lookahead)) ADVANCE(364); - END_STATE(); - case 123: - if (lookahead == '\r') SKIP(124) - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(367); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(369); - if (lookahead == 'I') ADVANCE(371); - if (lookahead == 'N') ADVANCE(372); - if (lookahead == 'T') ADVANCE(373); - if (lookahead == 'W') ADVANCE(370); - if (lookahead == 'X') ADVANCE(374); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '{') ADVANCE(198); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(212); - if (lookahead != 0 && - (lookahead < '\n' || '\f' < lookahead)) ADVANCE(364); - END_STATE(); - case 124: - if (lookahead == '\r') SKIP(124) - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(367); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(369); - if (lookahead == 'I') ADVANCE(371); - if (lookahead == 'N') ADVANCE(372); - if (lookahead == 'T') ADVANCE(373); - if (lookahead == 'W') ADVANCE(370); - if (lookahead == 'X') ADVANCE(374); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '{') ADVANCE(198); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(364); - END_STATE(); - case 125: - if (lookahead == '\r') SKIP(124) - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(367); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(369); - if (lookahead == 'I') ADVANCE(371); - if (lookahead == 'N') ADVANCE(372); - if (lookahead == 'T') ADVANCE(373); - if (lookahead == 'W') ADVANCE(370); - if (lookahead == 'X') ADVANCE(374); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '{') ADVANCE(337); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(212); - if (lookahead != 0 && - (lookahead < '\n' || '\f' < lookahead)) ADVANCE(364); - END_STATE(); - case 126: - if (lookahead == '\r') SKIP(124) - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(367); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(369); - if (lookahead == 'I') ADVANCE(371); - if (lookahead == 'N') ADVANCE(372); - if (lookahead == 'T') ADVANCE(373); - if (lookahead == 'W') ADVANCE(370); - if (lookahead == 'X') ADVANCE(374); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '{') ADVANCE(336); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(212); - if (lookahead != 0 && - (lookahead < '\n' || '\f' < lookahead)) ADVANCE(364); - END_STATE(); - case 127: - if (lookahead == '\r') SKIP(127) - if (lookahead == ' ') ADVANCE(177); - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(270); - if (lookahead == '-') ADVANCE(366); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(369); - if (lookahead == 'I') ADVANCE(371); - if (lookahead == 'N') ADVANCE(372); - if (lookahead == 'T') ADVANCE(373); - if (lookahead == 'W') ADVANCE(370); - if (lookahead == 'X') ADVANCE(374); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '{') ADVANCE(198); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(364); - END_STATE(); - case 128: - if (lookahead == '\r') SKIP(128) - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(306); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(311); - if (lookahead == 'I') ADVANCE(314); - if (lookahead == 'N') ADVANCE(315); - if (lookahead == 'T') ADVANCE(316); - if (lookahead == 'W') ADVANCE(312); - if (lookahead == 'X') ADVANCE(323); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(264); - if (lookahead == '{') ADVANCE(198); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(298); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(324); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(364); - END_STATE(); - case 129: - if (lookahead == '\r') SKIP(128) - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(306); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(311); - if (lookahead == 'I') ADVANCE(314); - if (lookahead == 'N') ADVANCE(315); - if (lookahead == 'T') ADVANCE(316); - if (lookahead == 'W') ADVANCE(312); - if (lookahead == 'X') ADVANCE(323); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(264); - if (lookahead == '{') ADVANCE(337); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(298); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(212); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(324); - if (lookahead != 0 && - (lookahead < '\n' || '\f' < lookahead)) ADVANCE(364); - END_STATE(); - case 130: - if (lookahead == '\r') SKIP(132) - if (lookahead == '!') ADVANCE(252); - if (lookahead == '"') ADVANCE(253); - if (lookahead == '$') ADVANCE(345); - if (lookahead == '\'') ADVANCE(253); - if (lookahead == '*') ADVANCE(272); - if (lookahead == '-') ADVANCE(231); - if (lookahead == '.') ADVANCE(233); - if (lookahead == ':') ADVANCE(234); - if (lookahead == '<') ADVANCE(229); - if (lookahead == '>') ADVANCE(364); - if (lookahead == 'F') ADVANCE(240); - if (lookahead == 'I') ADVANCE(242); - if (lookahead == 'N') ADVANCE(243); - if (lookahead == 'T') ADVANCE(244); - if (lookahead == 'W') ADVANCE(239); - if (lookahead == 'X') ADVANCE(251); - if (lookahead == '[') ADVANCE(164); - if (lookahead == '\\') ADVANCE(214); - if (lookahead == ']') ADVANCE(329); - if (lookahead == '^') ADVANCE(292); - if (lookahead == '_') ADVANCE(265); - if (lookahead == '{') ADVANCE(338); - if (lookahead == '|') ADVANCE(180); - if (lookahead == '~') ADVANCE(300); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(212); - if (lookahead != 0 && - (lookahead < '\n' || '\f' < lookahead)) ADVANCE(256); - END_STATE(); - case 131: - if (lookahead == '\r') SKIP(132) - if (lookahead == '!') ADVANCE(252); - if (lookahead == '"') ADVANCE(253); - if (lookahead == '$') ADVANCE(345); - if (lookahead == '\'') ADVANCE(253); - if (lookahead == '*') ADVANCE(272); - if (lookahead == '-') ADVANCE(231); - if (lookahead == '.') ADVANCE(233); - if (lookahead == ':') ADVANCE(234); - if (lookahead == '<') ADVANCE(229); - if (lookahead == '>') ADVANCE(364); - if (lookahead == 'F') ADVANCE(240); - if (lookahead == 'I') ADVANCE(242); - if (lookahead == 'N') ADVANCE(243); - if (lookahead == 'T') ADVANCE(244); - if (lookahead == 'W') ADVANCE(239); - if (lookahead == 'X') ADVANCE(251); - if (lookahead == '[') ADVANCE(164); - if (lookahead == '\\') ADVANCE(214); - if (lookahead == '^') ADVANCE(292); - if (lookahead == '_') ADVANCE(265); - if (lookahead == '{') ADVANCE(338); - if (lookahead == '|') ADVANCE(180); - if (lookahead == '~') ADVANCE(300); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(212); - if (lookahead != 0 && - (lookahead < '\n' || '\f' < lookahead)) ADVANCE(256); - END_STATE(); - case 132: - if (lookahead == '\r') SKIP(132) - if (lookahead == '!') ADVANCE(252); - if (lookahead == '"') ADVANCE(253); - if (lookahead == '$') ADVANCE(345); - if (lookahead == '\'') ADVANCE(253); - if (lookahead == '*') ADVANCE(272); - if (lookahead == '-') ADVANCE(231); - if (lookahead == '.') ADVANCE(233); - if (lookahead == ':') ADVANCE(234); - if (lookahead == '<') ADVANCE(229); - if (lookahead == '>') ADVANCE(364); - if (lookahead == 'F') ADVANCE(240); - if (lookahead == 'I') ADVANCE(242); - if (lookahead == 'N') ADVANCE(243); - if (lookahead == 'T') ADVANCE(244); - if (lookahead == 'W') ADVANCE(239); - if (lookahead == 'X') ADVANCE(251); - if (lookahead == '[') ADVANCE(164); - if (lookahead == '\\') ADVANCE(214); - if (lookahead == '^') ADVANCE(292); - if (lookahead == '_') ADVANCE(265); - if (lookahead == '{') ADVANCE(199); - if (lookahead == '|') ADVANCE(180); - if (lookahead == '~') ADVANCE(300); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(256); - END_STATE(); - case 133: - if (lookahead == '\r') SKIP(133) - if (lookahead == ' ') ADVANCE(176); - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(366); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(369); - if (lookahead == 'I') ADVANCE(371); - if (lookahead == 'N') ADVANCE(372); - if (lookahead == 'T') ADVANCE(373); - if (lookahead == 'W') ADVANCE(370); - if (lookahead == 'X') ADVANCE(374); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(261); - if (lookahead == '{') ADVANCE(198); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(364); - END_STATE(); - case 134: - if (lookahead == '\r') SKIP(134) - if (lookahead == ' ') ADVANCE(171); - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(367); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(369); - if (lookahead == 'I') ADVANCE(371); - if (lookahead == 'N') ADVANCE(372); - if (lookahead == 'T') ADVANCE(373); - if (lookahead == 'W') ADVANCE(370); - if (lookahead == 'X') ADVANCE(374); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '{') ADVANCE(198); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(364); - END_STATE(); - case 135: - if (lookahead == '\r') SKIP(135) - if (lookahead == ' ') ADVANCE(171); - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(366); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(369); - if (lookahead == 'I') ADVANCE(371); - if (lookahead == 'N') ADVANCE(372); - if (lookahead == 'T') ADVANCE(373); - if (lookahead == 'W') ADVANCE(370); - if (lookahead == 'X') ADVANCE(374); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == '^') ADVANCE(290); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '{') ADVANCE(198); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(364); - END_STATE(); - case 136: - if (lookahead == '\r') SKIP(136) - if (lookahead == ' ') ADVANCE(171); - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(366); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(369); - if (lookahead == 'I') ADVANCE(371); - if (lookahead == 'N') ADVANCE(372); - if (lookahead == 'T') ADVANCE(373); - if (lookahead == 'W') ADVANCE(370); - if (lookahead == 'X') ADVANCE(374); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '{') ADVANCE(198); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(298); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(364); - END_STATE(); - case 137: - if (lookahead == ' ') ADVANCE(137); - if (lookahead == '*') ADVANCE(154); - if (lookahead == '_') ADVANCE(155); - END_STATE(); - case 138: - if (lookahead == ' ') ADVANCE(138); - if (lookahead == '_') ADVANCE(155); - END_STATE(); - case 139: - if (lookahead == ' ') ADVANCE(139); - if (lookahead == '*') ADVANCE(154); - END_STATE(); - case 140: - if (lookahead == '.') ADVANCE(218); - END_STATE(); - case 141: - if (lookahead == ':') ADVANCE(286); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ') ADVANCE(141); - END_STATE(); - case 142: - if (lookahead == ':') ADVANCE(185); - END_STATE(); - case 143: - if (lookahead == 'D') ADVANCE(149); - END_STATE(); - case 144: - if (lookahead == 'E') ADVANCE(352); - END_STATE(); - case 145: - if (lookahead == 'E') ADVANCE(361); - END_STATE(); - case 146: - if (lookahead == 'F') ADVANCE(148); - END_STATE(); - case 147: - if (lookahead == 'M') ADVANCE(145); - END_STATE(); - case 148: - if (lookahead == 'O') ADVANCE(355); - END_STATE(); - case 149: - if (lookahead == 'O') ADVANCE(346); - END_STATE(); - case 150: - if (lookahead == 'P') ADVANCE(349); - END_STATE(); - case 151: - if (lookahead == 'T') ADVANCE(144); - END_STATE(); - case 152: - if (lookahead == 'X') ADVANCE(147); - END_STATE(); - case 153: - if (lookahead == 'X') ADVANCE(358); - END_STATE(); - case 154: - if (lookahead == '}') ADVANCE(273); - END_STATE(); - case 155: - if (lookahead == '}') ADVANCE(266); - END_STATE(); - case 156: - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '}') ADVANCE(203); - END_STATE(); - case 157: - if (eof) ADVANCE(160); - if (!eof && (lookahead == 0)) ADVANCE(183); - if (lookahead == '\r') SKIP(157) - if (lookahead == ' ') ADVANCE(175); - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(204); - if (lookahead == '#') ADVANCE(380); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '%') ADVANCE(339); - if (lookahead == '(') ADVANCE(330); - if (lookahead == ')') ADVANCE(333); - if (lookahead == '*') ADVANCE(270); - if (lookahead == '+') ADVANCE(376); - if (lookahead == '-') ADVANCE(305); - if (lookahead == '.') ADVANCE(202); - if (lookahead == ':') ADVANCE(194); - if (lookahead == '<') ADVANCE(228); - if (lookahead == '=') ADVANCE(187); - if (lookahead == '>') ADVANCE(257); - if (lookahead == 'F') ADVANCE(311); - if (lookahead == 'I') ADVANCE(314); - if (lookahead == 'N') ADVANCE(315); - if (lookahead == 'T') ADVANCE(316); - if (lookahead == 'W') ADVANCE(312); - if (lookahead == 'X') ADVANCE(168); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(215); - if (lookahead == ']') ADVANCE(169); - if (lookahead == '^') ADVANCE(290); - if (lookahead == '_') ADVANCE(262); - if (lookahead == 'x') ADVANCE(166); - if (lookahead == '{') ADVANCE(197); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '}') ADVANCE(200); - if (lookahead == '~') ADVANCE(298); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(324); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(364); - END_STATE(); - case 158: - if (eof) ADVANCE(160); - if (lookahead == '\r') SKIP(159) - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(366); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(369); - if (lookahead == 'I') ADVANCE(371); - if (lookahead == 'N') ADVANCE(372); - if (lookahead == 'T') ADVANCE(373); - if (lookahead == 'W') ADVANCE(370); - if (lookahead == 'X') ADVANCE(374); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '{') ADVANCE(198); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(212); - if (lookahead != 0 && - (lookahead < '\n' || '\f' < lookahead)) ADVANCE(364); - END_STATE(); - case 159: - if (eof) ADVANCE(160); - if (lookahead == '\r') SKIP(159) - if (lookahead == '!') ADVANCE(375); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '$') ADVANCE(344); - if (lookahead == '\'') ADVANCE(378); - if (lookahead == '*') ADVANCE(269); - if (lookahead == '-') ADVANCE(366); - if (lookahead == '.') ADVANCE(368); - if (lookahead == ':') ADVANCE(379); - if (lookahead == '<') ADVANCE(228); - if (lookahead == 'F') ADVANCE(369); - if (lookahead == 'I') ADVANCE(371); - if (lookahead == 'N') ADVANCE(372); - if (lookahead == 'T') ADVANCE(373); - if (lookahead == 'W') ADVANCE(370); - if (lookahead == 'X') ADVANCE(374); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '{') ADVANCE(198); - if (lookahead == '|') ADVANCE(179); - if (lookahead == '~') ADVANCE(297); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(364); - END_STATE(); - case 160: - ACCEPT_TOKEN(ts_builtin_sym_end); - END_STATE(); - case 161: - ACCEPT_TOKEN(anon_sym_LBRACK); - END_STATE(); - case 162: - ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == ']') ADVANCE(325); - END_STATE(); - case 163: - ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '^') ADVANCE(303); - END_STATE(); - case 164: - ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '^') ADVANCE(304); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(256); - END_STATE(); - case 165: - ACCEPT_TOKEN(anon_sym_x); - END_STATE(); - case 166: - ACCEPT_TOKEN(anon_sym_x); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(324); - END_STATE(); - case 167: - ACCEPT_TOKEN(anon_sym_X); - END_STATE(); - case 168: - ACCEPT_TOKEN(anon_sym_X); - if (lookahead == 'X') ADVANCE(322); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(324); - END_STATE(); - case 169: - ACCEPT_TOKEN(anon_sym_RBRACK); - END_STATE(); - case 170: - ACCEPT_TOKEN(anon_sym_RBRACK); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(256); - END_STATE(); - case 171: - ACCEPT_TOKEN(anon_sym_SPACE); - END_STATE(); - case 172: - ACCEPT_TOKEN(anon_sym_SPACE); - if (lookahead == '\t') ADVANCE(212); - if (lookahead == ' ') ADVANCE(209); - if (lookahead == '*') ADVANCE(154); - if (lookahead == '_') ADVANCE(155); - END_STATE(); - case 173: - ACCEPT_TOKEN(anon_sym_SPACE); - if (lookahead == '\t') ADVANCE(212); - if (lookahead == ' ') ADVANCE(210); - if (lookahead == '_') ADVANCE(155); - END_STATE(); - case 174: - ACCEPT_TOKEN(anon_sym_SPACE); - if (lookahead == '\t') ADVANCE(212); - if (lookahead == ' ') ADVANCE(211); - if (lookahead == '*') ADVANCE(154); - END_STATE(); - case 175: - ACCEPT_TOKEN(anon_sym_SPACE); - if (lookahead == ' ') ADVANCE(137); - if (lookahead == '*') ADVANCE(154); - if (lookahead == '_') ADVANCE(155); - END_STATE(); - case 176: - ACCEPT_TOKEN(anon_sym_SPACE); - if (lookahead == ' ') ADVANCE(138); - if (lookahead == '_') ADVANCE(155); - END_STATE(); - case 177: - ACCEPT_TOKEN(anon_sym_SPACE); - if (lookahead == ' ') ADVANCE(139); - if (lookahead == '*') ADVANCE(154); - END_STATE(); - case 178: - ACCEPT_TOKEN(anon_sym_SPACE); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(212); - END_STATE(); - case 179: - ACCEPT_TOKEN(anon_sym_PIPE); - END_STATE(); - case 180: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(256); - END_STATE(); - case 181: - ACCEPT_TOKEN(sym_table_cell_alignment); - END_STATE(); - case 182: - ACCEPT_TOKEN(sym_table_cell_alignment); - if (lookahead == '-') ADVANCE(182); - if (lookahead == ':') ADVANCE(181); - END_STATE(); - case 183: - ACCEPT_TOKEN(anon_sym_NULL); - END_STATE(); - case 184: - ACCEPT_TOKEN(anon_sym_NULL); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(256); - END_STATE(); - case 185: - ACCEPT_TOKEN(anon_sym_RBRACK_COLON); - END_STATE(); - case 186: - ACCEPT_TOKEN(anon_sym_EQ); - END_STATE(); - case 187: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '}') ADVANCE(276); - END_STATE(); - case 188: - ACCEPT_TOKEN(sym_language); - if (lookahead == '\r') ADVANCE(188); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != ' ' && - lookahead != '=' && - lookahead != '{' && - lookahead != '}') ADVANCE(189); - END_STATE(); - case 189: - ACCEPT_TOKEN(sym_language); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != ' ' && - lookahead != '=' && - lookahead != '{' && - lookahead != '}') ADVANCE(189); - END_STATE(); - case 190: - ACCEPT_TOKEN(aux_sym__line_token1); - if (lookahead == '\r') ADVANCE(190); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(191); - END_STATE(); - case 191: - ACCEPT_TOKEN(aux_sym__line_token1); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(191); - END_STATE(); - case 192: - ACCEPT_TOKEN(anon_sym_COLON); - END_STATE(); - case 193: - ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == '-') ADVANCE(182); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != ':') ADVANCE(141); - END_STATE(); - case 194: - ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != ':') ADVANCE(141); - END_STATE(); - case 195: - ACCEPT_TOKEN(sym_link_destination); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ') ADVANCE(195); - END_STATE(); - case 196: - ACCEPT_TOKEN(anon_sym_LBRACE); - END_STATE(); - case 197: - ACCEPT_TOKEN(anon_sym_LBRACE); - if (lookahead == '*') ADVANCE(267); - if (lookahead == '+') ADVANCE(278); - if (lookahead == '-') ADVANCE(282); - if (lookahead == '=') ADVANCE(274); - if (lookahead == '^') ADVANCE(287); - if (lookahead == '_') ADVANCE(258); - if (lookahead == '~') ADVANCE(295); - END_STATE(); - case 198: - ACCEPT_TOKEN(anon_sym_LBRACE); - if (lookahead == '"' || - lookahead == '\'') ADVANCE(216); - if (lookahead == '*') ADVANCE(267); - if (lookahead == '+') ADVANCE(278); - if (lookahead == '-') ADVANCE(282); - if (lookahead == '=') ADVANCE(274); - if (lookahead == '^') ADVANCE(287); - if (lookahead == '_') ADVANCE(258); - if (lookahead == '~') ADVANCE(295); - END_STATE(); - case 199: - ACCEPT_TOKEN(anon_sym_LBRACE); - if (lookahead == '"' || - lookahead == '\'') ADVANCE(217); - if (lookahead == '*') ADVANCE(268); - if (lookahead == '+') ADVANCE(279); - if (lookahead == '-') ADVANCE(283); - if (lookahead == '=') ADVANCE(275); - if (lookahead == '^') ADVANCE(288); - if (lookahead == '_') ADVANCE(259); - if (lookahead == '~') ADVANCE(296); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(256); - END_STATE(); - case 200: - ACCEPT_TOKEN(anon_sym_RBRACE); - END_STATE(); - case 201: - ACCEPT_TOKEN(anon_sym_DOT); - END_STATE(); - case 202: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(140); - END_STATE(); - case 203: - ACCEPT_TOKEN(sym_identifier); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '}') ADVANCE(203); - END_STATE(); - case 204: - ACCEPT_TOKEN(anon_sym_DQUOTE); - END_STATE(); - case 205: - ACCEPT_TOKEN(aux_sym_value_token1); - if (lookahead == '\r') ADVANCE(205); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '"') ADVANCE(206); - END_STATE(); - case 206: - ACCEPT_TOKEN(aux_sym_value_token1); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '"') ADVANCE(206); - END_STATE(); - case 207: - ACCEPT_TOKEN(aux_sym_value_token2); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(207); - END_STATE(); - case 208: - ACCEPT_TOKEN(sym__whitespace); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(208); - END_STATE(); - case 209: - ACCEPT_TOKEN(sym__whitespace1); - if (lookahead == '\t') ADVANCE(212); - if (lookahead == ' ') ADVANCE(209); - if (lookahead == '*') ADVANCE(154); - if (lookahead == '_') ADVANCE(155); - END_STATE(); - case 210: - ACCEPT_TOKEN(sym__whitespace1); - if (lookahead == '\t') ADVANCE(212); - if (lookahead == ' ') ADVANCE(210); - if (lookahead == '_') ADVANCE(155); - END_STATE(); - case 211: - ACCEPT_TOKEN(sym__whitespace1); - if (lookahead == '\t') ADVANCE(212); - if (lookahead == ' ') ADVANCE(211); - if (lookahead == '*') ADVANCE(154); - END_STATE(); - case 212: - ACCEPT_TOKEN(sym__whitespace1); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(212); - END_STATE(); - case 213: - ACCEPT_TOKEN(anon_sym_BSLASH); - if (lookahead == '"' || - lookahead == '\'') ADVANCE(216); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r' && - lookahead != '\\') ADVANCE(226); - END_STATE(); - case 214: - ACCEPT_TOKEN(anon_sym_BSLASH); - if (lookahead == '"' || - lookahead == '\'') ADVANCE(217); - if (lookahead == '\\') ADVANCE(256); - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ' || - lookahead == '>') ADVANCE(226); - if (lookahead != 0 && - (lookahead < '\n' || '\r' < lookahead)) ADVANCE(227); - END_STATE(); - case 215: - ACCEPT_TOKEN(anon_sym_BSLASH); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r' && - lookahead != '\\') ADVANCE(226); - END_STATE(); - case 216: - ACCEPT_TOKEN(sym_quotation_marks); - END_STATE(); - case 217: - ACCEPT_TOKEN(sym_quotation_marks); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(256); - END_STATE(); - case 218: - ACCEPT_TOKEN(sym_ellipsis); - END_STATE(); - case 219: - ACCEPT_TOKEN(sym_ellipsis); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(256); - END_STATE(); - case 220: - ACCEPT_TOKEN(sym_em_dash); - END_STATE(); - case 221: - ACCEPT_TOKEN(sym_em_dash); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(324); - END_STATE(); - case 222: - ACCEPT_TOKEN(sym_em_dash); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(256); - END_STATE(); - case 223: - ACCEPT_TOKEN(sym_en_dash); - if (lookahead == '-') ADVANCE(221); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(324); - END_STATE(); - case 224: - ACCEPT_TOKEN(sym_en_dash); - if (lookahead == '-') ADVANCE(220); - END_STATE(); - case 225: - ACCEPT_TOKEN(sym_en_dash); - if (lookahead == '-') ADVANCE(222); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(256); - END_STATE(); - case 226: - ACCEPT_TOKEN(sym_backslash_escape); - END_STATE(); - case 227: - ACCEPT_TOKEN(sym_backslash_escape); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(256); - END_STATE(); - case 228: - ACCEPT_TOKEN(anon_sym_LT); - END_STATE(); - case 229: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(256); - END_STATE(); - case 230: - ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == '-') ADVANCE(225); - if (lookahead == '}') ADVANCE(285); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(256); - END_STATE(); - case 231: - ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == '-') ADVANCE(225); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(256); - END_STATE(); - case 232: - ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == '.') ADVANCE(219); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(256); - END_STATE(); - case 233: - ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == '.') ADVANCE(232); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(256); - END_STATE(); - case 234: - ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == ':') ADVANCE(256); - if (lookahead == '>') ADVANCE(141); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ') ADVANCE(234); - END_STATE(); - case 235: - ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'D') ADVANCE(246); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(256); - END_STATE(); - case 236: - ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'E') ADVANCE(354); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(256); - END_STATE(); - case 237: - ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'E') ADVANCE(363); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(256); - END_STATE(); - case 238: - ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'F') ADVANCE(245); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(256); - END_STATE(); - case 239: - ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'I') ADVANCE(247); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(256); - END_STATE(); - case 240: - ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'I') ADVANCE(249); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(256); - END_STATE(); - case 241: - ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'M') ADVANCE(237); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(256); - END_STATE(); - case 242: - ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'N') ADVANCE(238); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(256); - END_STATE(); - case 243: - ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'O') ADVANCE(248); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(256); - END_STATE(); - case 244: - ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'O') ADVANCE(235); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(256); - END_STATE(); - case 245: - ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'O') ADVANCE(357); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(256); - END_STATE(); - case 246: - ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'O') ADVANCE(348); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(256); - END_STATE(); - case 247: - ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'P') ADVANCE(351); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(256); - END_STATE(); - case 248: - ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'T') ADVANCE(236); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(256); - END_STATE(); - case 249: - ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'X') ADVANCE(241); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(256); - END_STATE(); - case 250: - ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'X') ADVANCE(360); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(256); - END_STATE(); - case 251: - ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'X') ADVANCE(250); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(256); - END_STATE(); - case 252: - ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == '[') ADVANCE(327); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(256); - END_STATE(); - case 253: - ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == '}') ADVANCE(217); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(256); - END_STATE(); - case 254: - ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == '}') ADVANCE(277); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(256); - END_STATE(); - case 255: - ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == '}') ADVANCE(281); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(256); - END_STATE(); - case 256: - ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(256); - END_STATE(); - case 257: - ACCEPT_TOKEN(anon_sym_GT); - END_STATE(); - case 258: - ACCEPT_TOKEN(anon_sym_LBRACE_); - END_STATE(); - case 259: - ACCEPT_TOKEN(anon_sym_LBRACE_); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(256); - END_STATE(); - case 260: - ACCEPT_TOKEN(anon_sym__); - END_STATE(); - case 261: - ACCEPT_TOKEN(anon_sym__); - if (lookahead == '}') ADVANCE(266); - END_STATE(); - case 262: - ACCEPT_TOKEN(anon_sym__); - if (lookahead == '}') ADVANCE(266); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(324); - END_STATE(); - case 263: - ACCEPT_TOKEN(anon_sym__); - if (lookahead == '}') ADVANCE(256); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(256); - END_STATE(); - case 264: - ACCEPT_TOKEN(anon_sym__); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(324); - END_STATE(); - case 265: - ACCEPT_TOKEN(anon_sym__); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(256); - END_STATE(); - case 266: - ACCEPT_TOKEN(aux_sym_emphasis_end_token1); - END_STATE(); - case 267: - ACCEPT_TOKEN(anon_sym_LBRACE_STAR); - END_STATE(); - case 268: - ACCEPT_TOKEN(anon_sym_LBRACE_STAR); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(256); - END_STATE(); - case 269: - ACCEPT_TOKEN(anon_sym_STAR); - END_STATE(); - case 270: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '}') ADVANCE(273); - END_STATE(); - case 271: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '}') ADVANCE(256); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(256); - END_STATE(); - case 272: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(256); - END_STATE(); - case 273: - ACCEPT_TOKEN(aux_sym_strong_end_token1); - END_STATE(); - case 274: - ACCEPT_TOKEN(anon_sym_LBRACE_EQ); - END_STATE(); - case 275: - ACCEPT_TOKEN(anon_sym_LBRACE_EQ); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(256); - END_STATE(); - case 276: - ACCEPT_TOKEN(anon_sym_EQ_RBRACE); - END_STATE(); - case 277: - ACCEPT_TOKEN(anon_sym_EQ_RBRACE); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(256); - END_STATE(); - case 278: - ACCEPT_TOKEN(anon_sym_LBRACE_PLUS); - END_STATE(); - case 279: - ACCEPT_TOKEN(anon_sym_LBRACE_PLUS); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(256); - END_STATE(); - case 280: - ACCEPT_TOKEN(anon_sym_PLUS_RBRACE); - END_STATE(); - case 281: - ACCEPT_TOKEN(anon_sym_PLUS_RBRACE); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(256); - END_STATE(); - case 282: - ACCEPT_TOKEN(anon_sym_LBRACE_DASH); - END_STATE(); - case 283: - ACCEPT_TOKEN(anon_sym_LBRACE_DASH); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(256); - END_STATE(); - case 284: - ACCEPT_TOKEN(anon_sym_DASH_RBRACE); - END_STATE(); - case 285: - ACCEPT_TOKEN(anon_sym_DASH_RBRACE); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(256); - END_STATE(); - case 286: - ACCEPT_TOKEN(sym_symbol); - END_STATE(); - case 287: - ACCEPT_TOKEN(anon_sym_LBRACE_CARET); - END_STATE(); - case 288: - ACCEPT_TOKEN(anon_sym_LBRACE_CARET); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(256); - END_STATE(); - case 289: - ACCEPT_TOKEN(anon_sym_CARET); - END_STATE(); - case 290: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '}') ADVANCE(293); - END_STATE(); - case 291: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '}') ADVANCE(294); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(256); - END_STATE(); - case 292: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(256); - END_STATE(); - case 293: - ACCEPT_TOKEN(anon_sym_CARET_RBRACE); - END_STATE(); - case 294: - ACCEPT_TOKEN(anon_sym_CARET_RBRACE); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(256); - END_STATE(); - case 295: - ACCEPT_TOKEN(anon_sym_LBRACE_TILDE); - END_STATE(); - case 296: - ACCEPT_TOKEN(anon_sym_LBRACE_TILDE); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(256); - END_STATE(); - case 297: - ACCEPT_TOKEN(anon_sym_TILDE); - END_STATE(); - case 298: - ACCEPT_TOKEN(anon_sym_TILDE); - if (lookahead == '}') ADVANCE(301); - END_STATE(); - case 299: - ACCEPT_TOKEN(anon_sym_TILDE); - if (lookahead == '}') ADVANCE(302); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(256); - END_STATE(); - case 300: - ACCEPT_TOKEN(anon_sym_TILDE); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(256); - END_STATE(); - case 301: - ACCEPT_TOKEN(anon_sym_TILDE_RBRACE); - END_STATE(); - case 302: - ACCEPT_TOKEN(anon_sym_TILDE_RBRACE); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(256); - END_STATE(); - case 303: - ACCEPT_TOKEN(anon_sym_LBRACK_CARET); - END_STATE(); - case 304: - ACCEPT_TOKEN(anon_sym_LBRACK_CARET); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(256); - END_STATE(); - case 305: - ACCEPT_TOKEN(sym__id); - if (lookahead == '-') ADVANCE(223); - if (lookahead == '}') ADVANCE(284); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(324); - END_STATE(); - case 306: - ACCEPT_TOKEN(sym__id); - if (lookahead == '-') ADVANCE(223); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(324); - END_STATE(); - case 307: - ACCEPT_TOKEN(sym__id); - if (lookahead == 'D') ADVANCE(318); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(324); - END_STATE(); - case 308: - ACCEPT_TOKEN(sym__id); - if (lookahead == 'E') ADVANCE(353); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(324); - END_STATE(); - case 309: - ACCEPT_TOKEN(sym__id); - if (lookahead == 'E') ADVANCE(362); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(324); - END_STATE(); - case 310: - ACCEPT_TOKEN(sym__id); - if (lookahead == 'F') ADVANCE(317); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(324); - END_STATE(); - case 311: - ACCEPT_TOKEN(sym__id); - if (lookahead == 'I') ADVANCE(321); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(324); - END_STATE(); - case 312: - ACCEPT_TOKEN(sym__id); - if (lookahead == 'I') ADVANCE(319); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(324); - END_STATE(); - case 313: - ACCEPT_TOKEN(sym__id); - if (lookahead == 'M') ADVANCE(309); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(324); - END_STATE(); - case 314: - ACCEPT_TOKEN(sym__id); - if (lookahead == 'N') ADVANCE(310); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(324); - END_STATE(); - case 315: - ACCEPT_TOKEN(sym__id); - if (lookahead == 'O') ADVANCE(320); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(324); - END_STATE(); - case 316: - ACCEPT_TOKEN(sym__id); - if (lookahead == 'O') ADVANCE(307); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(324); - END_STATE(); - case 317: - ACCEPT_TOKEN(sym__id); - if (lookahead == 'O') ADVANCE(356); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(324); - END_STATE(); - case 318: - ACCEPT_TOKEN(sym__id); - if (lookahead == 'O') ADVANCE(347); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(324); - END_STATE(); - case 319: - ACCEPT_TOKEN(sym__id); - if (lookahead == 'P') ADVANCE(350); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(324); - END_STATE(); - case 320: - ACCEPT_TOKEN(sym__id); - if (lookahead == 'T') ADVANCE(308); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(324); - END_STATE(); - case 321: - ACCEPT_TOKEN(sym__id); - if (lookahead == 'X') ADVANCE(313); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(324); - END_STATE(); - case 322: - ACCEPT_TOKEN(sym__id); - if (lookahead == 'X') ADVANCE(359); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(324); - END_STATE(); - case 323: - ACCEPT_TOKEN(sym__id); - if (lookahead == 'X') ADVANCE(322); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(324); - END_STATE(); - case 324: - ACCEPT_TOKEN(sym__id); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(324); - END_STATE(); - case 325: - ACCEPT_TOKEN(anon_sym_LBRACK_RBRACK); - END_STATE(); - case 326: - ACCEPT_TOKEN(anon_sym_BANG_LBRACK); - END_STATE(); - case 327: - ACCEPT_TOKEN(anon_sym_BANG_LBRACK); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(256); - END_STATE(); - case 328: - ACCEPT_TOKEN(anon_sym_RBRACK2); - END_STATE(); - case 329: - ACCEPT_TOKEN(anon_sym_RBRACK2); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(256); - END_STATE(); - case 330: - ACCEPT_TOKEN(anon_sym_LPAREN); - END_STATE(); - case 331: - ACCEPT_TOKEN(aux_sym_inline_link_destination_token1); - if (lookahead == '\r') ADVANCE(331); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != ')') ADVANCE(332); - END_STATE(); - case 332: - ACCEPT_TOKEN(aux_sym_inline_link_destination_token1); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != ')') ADVANCE(332); - END_STATE(); - case 333: - ACCEPT_TOKEN(anon_sym_RPAREN); - END_STATE(); - case 334: - ACCEPT_TOKEN(anon_sym_LBRACE2); - END_STATE(); - case 335: - ACCEPT_TOKEN(anon_sym_LBRACE2); - if (lookahead == '*') ADVANCE(267); - if (lookahead == '+') ADVANCE(278); - if (lookahead == '-') ADVANCE(282); - if (lookahead == '=') ADVANCE(343); - if (lookahead == '^') ADVANCE(287); - if (lookahead == '_') ADVANCE(258); - if (lookahead == '~') ADVANCE(295); - END_STATE(); - case 336: - ACCEPT_TOKEN(anon_sym_LBRACE2); - if (lookahead == '"' || - lookahead == '\'') ADVANCE(216); - if (lookahead == '*') ADVANCE(267); - if (lookahead == '+') ADVANCE(278); - if (lookahead == '-') ADVANCE(282); - if (lookahead == '=') ADVANCE(343); - if (lookahead == '^') ADVANCE(287); - if (lookahead == '_') ADVANCE(258); - if (lookahead == '~') ADVANCE(295); - END_STATE(); - case 337: - ACCEPT_TOKEN(anon_sym_LBRACE2); - if (lookahead == '"' || - lookahead == '\'') ADVANCE(216); - if (lookahead == '*') ADVANCE(267); - if (lookahead == '+') ADVANCE(278); - if (lookahead == '-') ADVANCE(282); - if (lookahead == '=') ADVANCE(274); - if (lookahead == '^') ADVANCE(287); - if (lookahead == '_') ADVANCE(258); - if (lookahead == '~') ADVANCE(295); - END_STATE(); - case 338: - ACCEPT_TOKEN(anon_sym_LBRACE2); - if (lookahead == '"' || - lookahead == '\'') ADVANCE(217); - if (lookahead == '*') ADVANCE(268); - if (lookahead == '+') ADVANCE(279); - if (lookahead == '-') ADVANCE(283); - if (lookahead == '=') ADVANCE(275); - if (lookahead == '^') ADVANCE(288); - if (lookahead == '_') ADVANCE(259); - if (lookahead == '~') ADVANCE(296); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(256); - END_STATE(); - case 339: - ACCEPT_TOKEN(anon_sym_PERCENT); - END_STATE(); - case 340: - ACCEPT_TOKEN(aux_sym__comment_with_newline_token1); - END_STATE(); - case 341: - ACCEPT_TOKEN(aux_sym__comment_with_newline_token1); - if (lookahead == '\r') ADVANCE(341); - if (lookahead == '\\') ADVANCE(342); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '%') ADVANCE(340); - END_STATE(); - case 342: - ACCEPT_TOKEN(aux_sym__comment_with_newline_token1); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r' && - lookahead != '\\') ADVANCE(226); - END_STATE(); - case 343: - ACCEPT_TOKEN(anon_sym_LBRACE_EQ2); - END_STATE(); - case 344: - ACCEPT_TOKEN(anon_sym_DOLLAR); - END_STATE(); - case 345: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(256); - END_STATE(); - case 346: - ACCEPT_TOKEN(anon_sym_TODO); - END_STATE(); - case 347: - ACCEPT_TOKEN(anon_sym_TODO); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(324); - END_STATE(); - case 348: - ACCEPT_TOKEN(anon_sym_TODO); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(256); - END_STATE(); - case 349: - ACCEPT_TOKEN(anon_sym_WIP); - END_STATE(); - case 350: - ACCEPT_TOKEN(anon_sym_WIP); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(324); - END_STATE(); - case 351: - ACCEPT_TOKEN(anon_sym_WIP); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(256); - END_STATE(); - case 352: - ACCEPT_TOKEN(anon_sym_NOTE); - END_STATE(); - case 353: - ACCEPT_TOKEN(anon_sym_NOTE); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(324); - END_STATE(); - case 354: - ACCEPT_TOKEN(anon_sym_NOTE); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(256); - END_STATE(); - case 355: - ACCEPT_TOKEN(anon_sym_INFO); - END_STATE(); - case 356: - ACCEPT_TOKEN(anon_sym_INFO); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(324); - END_STATE(); - case 357: - ACCEPT_TOKEN(anon_sym_INFO); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(256); - END_STATE(); - case 358: - ACCEPT_TOKEN(anon_sym_XXX); - END_STATE(); - case 359: - ACCEPT_TOKEN(anon_sym_XXX); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(324); - END_STATE(); - case 360: - ACCEPT_TOKEN(anon_sym_XXX); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(256); - END_STATE(); - case 361: - ACCEPT_TOKEN(sym_fixme); - END_STATE(); - case 362: - ACCEPT_TOKEN(sym_fixme); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(324); - END_STATE(); - case 363: - ACCEPT_TOKEN(sym_fixme); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(256); - END_STATE(); - case 364: - ACCEPT_TOKEN(aux_sym__text_token1); - END_STATE(); - case 365: - ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == '-') ADVANCE(182); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != ':') ADVANCE(141); - END_STATE(); - case 366: - ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == '-') ADVANCE(224); - END_STATE(); - case 367: - ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == '-') ADVANCE(224); - if (lookahead == '}') ADVANCE(284); - END_STATE(); - case 368: - ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == '.') ADVANCE(140); - END_STATE(); - case 369: - ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'I') ADVANCE(152); - END_STATE(); - case 370: - ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'I') ADVANCE(150); - END_STATE(); - case 371: - ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'N') ADVANCE(146); - END_STATE(); - case 372: - ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'O') ADVANCE(151); - END_STATE(); - case 373: - ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'O') ADVANCE(143); - END_STATE(); - case 374: - ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'X') ADVANCE(153); - END_STATE(); - case 375: - ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == '[') ADVANCE(326); - END_STATE(); - case 376: - ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == '}') ADVANCE(280); - END_STATE(); - case 377: - ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == '}') ADVANCE(276); - END_STATE(); - case 378: - ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == '}') ADVANCE(216); - END_STATE(); - case 379: - ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != ':') ADVANCE(141); - END_STATE(); - case 380: - ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '}') ADVANCE(203); - END_STATE(); - default: - return false; - } -} - -static const TSLexMode ts_lex_modes[STATE_COUNT] = { - [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 158, .external_lex_state = 2}, - [2] = {.lex_state = 158, .external_lex_state = 3}, - [3] = {.lex_state = 158, .external_lex_state = 3}, - [4] = {.lex_state = 158, .external_lex_state = 3}, - [5] = {.lex_state = 158, .external_lex_state = 4}, - [6] = {.lex_state = 158, .external_lex_state = 3}, - [7] = {.lex_state = 158, .external_lex_state = 4}, - [8] = {.lex_state = 158, .external_lex_state = 3}, - [9] = {.lex_state = 158, .external_lex_state = 4}, - [10] = {.lex_state = 158, .external_lex_state = 4}, - [11] = {.lex_state = 158, .external_lex_state = 3}, - [12] = {.lex_state = 158, .external_lex_state = 3}, - [13] = {.lex_state = 158, .external_lex_state = 4}, - [14] = {.lex_state = 158, .external_lex_state = 3}, - [15] = {.lex_state = 158, .external_lex_state = 3}, - [16] = {.lex_state = 158, .external_lex_state = 4}, - [17] = {.lex_state = 158, .external_lex_state = 3}, - [18] = {.lex_state = 158, .external_lex_state = 5}, - [19] = {.lex_state = 158, .external_lex_state = 3}, - [20] = {.lex_state = 158, .external_lex_state = 3}, - [21] = {.lex_state = 158, .external_lex_state = 3}, - [22] = {.lex_state = 158, .external_lex_state = 3}, - [23] = {.lex_state = 158, .external_lex_state = 3}, - [24] = {.lex_state = 158, .external_lex_state = 4}, - [25] = {.lex_state = 158, .external_lex_state = 5}, - [26] = {.lex_state = 158, .external_lex_state = 3}, - [27] = {.lex_state = 158, .external_lex_state = 4}, - [28] = {.lex_state = 158, .external_lex_state = 4}, - [29] = {.lex_state = 158, .external_lex_state = 4}, - [30] = {.lex_state = 158, .external_lex_state = 4}, - [31] = {.lex_state = 158, .external_lex_state = 4}, - [32] = {.lex_state = 158, .external_lex_state = 4}, - [33] = {.lex_state = 158, .external_lex_state = 4}, - [34] = {.lex_state = 158, .external_lex_state = 4}, - [35] = {.lex_state = 158, .external_lex_state = 4}, - [36] = {.lex_state = 158, .external_lex_state = 4}, - [37] = {.lex_state = 158, .external_lex_state = 4}, - [38] = {.lex_state = 158, .external_lex_state = 4}, - [39] = {.lex_state = 158, .external_lex_state = 4}, - [40] = {.lex_state = 158, .external_lex_state = 4}, - [41] = {.lex_state = 158, .external_lex_state = 4}, - [42] = {.lex_state = 158, .external_lex_state = 4}, - [43] = {.lex_state = 158, .external_lex_state = 4}, - [44] = {.lex_state = 158, .external_lex_state = 4}, - [45] = {.lex_state = 158, .external_lex_state = 4}, - [46] = {.lex_state = 158, .external_lex_state = 4}, - [47] = {.lex_state = 158, .external_lex_state = 4}, - [48] = {.lex_state = 158, .external_lex_state = 4}, - [49] = {.lex_state = 158, .external_lex_state = 4}, - [50] = {.lex_state = 158, .external_lex_state = 4}, - [51] = {.lex_state = 158, .external_lex_state = 4}, - [52] = {.lex_state = 158, .external_lex_state = 4}, - [53] = {.lex_state = 158, .external_lex_state = 4}, - [54] = {.lex_state = 158, .external_lex_state = 6}, - [55] = {.lex_state = 158, .external_lex_state = 6}, - [56] = {.lex_state = 158, .external_lex_state = 6}, - [57] = {.lex_state = 158, .external_lex_state = 6}, - [58] = {.lex_state = 158, .external_lex_state = 6}, - [59] = {.lex_state = 158, .external_lex_state = 7}, - [60] = {.lex_state = 158, .external_lex_state = 8}, - [61] = {.lex_state = 2, .external_lex_state = 9}, - [62] = {.lex_state = 2, .external_lex_state = 9}, - [63] = {.lex_state = 7, .external_lex_state = 10}, - [64] = {.lex_state = 2, .external_lex_state = 9}, - [65] = {.lex_state = 2, .external_lex_state = 9}, - [66] = {.lex_state = 158, .external_lex_state = 11}, - [67] = {.lex_state = 158, .external_lex_state = 12}, - [68] = {.lex_state = 2, .external_lex_state = 9}, - [69] = {.lex_state = 2, .external_lex_state = 9}, - [70] = {.lex_state = 4, .external_lex_state = 10}, - [71] = {.lex_state = 37, .external_lex_state = 13}, - [72] = {.lex_state = 95, .external_lex_state = 14}, - [73] = {.lex_state = 158, .external_lex_state = 8}, - [74] = {.lex_state = 158, .external_lex_state = 11}, - [75] = {.lex_state = 110, .external_lex_state = 13}, - [76] = {.lex_state = 39, .external_lex_state = 13}, - [77] = {.lex_state = 158, .external_lex_state = 12}, - [78] = {.lex_state = 41, .external_lex_state = 13}, - [79] = {.lex_state = 4, .external_lex_state = 10}, - [80] = {.lex_state = 4, .external_lex_state = 10}, - [81] = {.lex_state = 92, .external_lex_state = 13}, - [82] = {.lex_state = 13, .external_lex_state = 13}, - [83] = {.lex_state = 4, .external_lex_state = 10}, - [84] = {.lex_state = 4, .external_lex_state = 10}, - [85] = {.lex_state = 122, .external_lex_state = 13}, - [86] = {.lex_state = 21, .external_lex_state = 13}, - [87] = {.lex_state = 4, .external_lex_state = 10}, - [88] = {.lex_state = 49, .external_lex_state = 14}, - [89] = {.lex_state = 15, .external_lex_state = 13}, - [90] = {.lex_state = 54, .external_lex_state = 13}, - [91] = {.lex_state = 54, .external_lex_state = 13}, - [92] = {.lex_state = 23, .external_lex_state = 13}, - [93] = {.lex_state = 54, .external_lex_state = 13}, - [94] = {.lex_state = 23, .external_lex_state = 13}, - [95] = {.lex_state = 100, .external_lex_state = 13}, - [96] = {.lex_state = 95, .external_lex_state = 13}, - [97] = {.lex_state = 54, .external_lex_state = 13}, - [98] = {.lex_state = 158, .external_lex_state = 13}, - [99] = {.lex_state = 49, .external_lex_state = 14}, - [100] = {.lex_state = 100, .external_lex_state = 13}, - [101] = {.lex_state = 158, .external_lex_state = 13}, - [102] = {.lex_state = 100, .external_lex_state = 13}, - [103] = {.lex_state = 100, .external_lex_state = 13}, - [104] = {.lex_state = 158, .external_lex_state = 13}, - [105] = {.lex_state = 158, .external_lex_state = 13}, - [106] = {.lex_state = 100, .external_lex_state = 13}, - [107] = {.lex_state = 100, .external_lex_state = 13}, - [108] = {.lex_state = 95, .external_lex_state = 13}, - [109] = {.lex_state = 158, .external_lex_state = 13}, - [110] = {.lex_state = 158, .external_lex_state = 13}, - [111] = {.lex_state = 158, .external_lex_state = 13}, - [112] = {.lex_state = 158, .external_lex_state = 13}, - [113] = {.lex_state = 158, .external_lex_state = 13}, - [114] = {.lex_state = 158, .external_lex_state = 13}, - [115] = {.lex_state = 158, .external_lex_state = 13}, - [116] = {.lex_state = 158, .external_lex_state = 13}, - [117] = {.lex_state = 158, .external_lex_state = 13}, - [118] = {.lex_state = 158, .external_lex_state = 13}, - [119] = {.lex_state = 23, .external_lex_state = 13}, - [120] = {.lex_state = 23, .external_lex_state = 13}, - [121] = {.lex_state = 158, .external_lex_state = 13}, - [122] = {.lex_state = 114, .external_lex_state = 13}, - [123] = {.lex_state = 15, .external_lex_state = 13}, - [124] = {.lex_state = 158, .external_lex_state = 13}, - [125] = {.lex_state = 158, .external_lex_state = 13}, - [126] = {.lex_state = 158, .external_lex_state = 13}, - [127] = {.lex_state = 158, .external_lex_state = 13}, - [128] = {.lex_state = 158, .external_lex_state = 13}, - [129] = {.lex_state = 158, .external_lex_state = 13}, - [130] = {.lex_state = 23, .external_lex_state = 13}, - [131] = {.lex_state = 15, .external_lex_state = 13}, - [132] = {.lex_state = 158, .external_lex_state = 13}, - [133] = {.lex_state = 114, .external_lex_state = 13}, - [134] = {.lex_state = 114, .external_lex_state = 13}, - [135] = {.lex_state = 114, .external_lex_state = 13}, - [136] = {.lex_state = 95, .external_lex_state = 13}, - [137] = {.lex_state = 15, .external_lex_state = 13}, - [138] = {.lex_state = 158, .external_lex_state = 13}, - [139] = {.lex_state = 158, .external_lex_state = 13}, - [140] = {.lex_state = 158, .external_lex_state = 13}, - [141] = {.lex_state = 158, .external_lex_state = 13}, - [142] = {.lex_state = 158, .external_lex_state = 13}, - [143] = {.lex_state = 158, .external_lex_state = 13}, - [144] = {.lex_state = 114, .external_lex_state = 13}, - [145] = {.lex_state = 95, .external_lex_state = 13}, - [146] = {.lex_state = 114, .external_lex_state = 13}, - [147] = {.lex_state = 15, .external_lex_state = 13}, - [148] = {.lex_state = 46, .external_lex_state = 13}, - [149] = {.lex_state = 49, .external_lex_state = 14}, - [150] = {.lex_state = 15, .external_lex_state = 13}, - [151] = {.lex_state = 158, .external_lex_state = 13}, - [152] = {.lex_state = 125, .external_lex_state = 13}, - [153] = {.lex_state = 46, .external_lex_state = 13}, - [154] = {.lex_state = 23, .external_lex_state = 13}, - [155] = {.lex_state = 95, .external_lex_state = 13}, - [156] = {.lex_state = 44, .external_lex_state = 14}, - [157] = {.lex_state = 46, .external_lex_state = 13}, - [158] = {.lex_state = 125, .external_lex_state = 13}, - [159] = {.lex_state = 125, .external_lex_state = 13}, - [160] = {.lex_state = 54, .external_lex_state = 13}, - [161] = {.lex_state = 49, .external_lex_state = 14}, - [162] = {.lex_state = 125, .external_lex_state = 13}, - [163] = {.lex_state = 49, .external_lex_state = 14}, - [164] = {.lex_state = 125, .external_lex_state = 13}, - [165] = {.lex_state = 125, .external_lex_state = 13}, - [166] = {.lex_state = 49, .external_lex_state = 14}, - [167] = {.lex_state = 54, .external_lex_state = 13}, - [168] = {.lex_state = 49, .external_lex_state = 14}, - [169] = {.lex_state = 44, .external_lex_state = 14}, - [170] = {.lex_state = 46, .external_lex_state = 13}, - [171] = {.lex_state = 95, .external_lex_state = 13}, - [172] = {.lex_state = 46, .external_lex_state = 13}, - [173] = {.lex_state = 95, .external_lex_state = 13}, - [174] = {.lex_state = 49, .external_lex_state = 14}, - [175] = {.lex_state = 95, .external_lex_state = 13}, - [176] = {.lex_state = 44, .external_lex_state = 14}, - [177] = {.lex_state = 46, .external_lex_state = 13}, - [178] = {.lex_state = 49, .external_lex_state = 14}, - [179] = {.lex_state = 44, .external_lex_state = 14}, - [180] = {.lex_state = 49, .external_lex_state = 14}, - [181] = {.lex_state = 44, .external_lex_state = 14}, - [182] = {.lex_state = 95, .external_lex_state = 13}, - [183] = {.lex_state = 58, .external_lex_state = 13}, - [184] = {.lex_state = 58, .external_lex_state = 13}, - [185] = {.lex_state = 58, .external_lex_state = 13}, - [186] = {.lex_state = 58, .external_lex_state = 13}, - [187] = {.lex_state = 58, .external_lex_state = 13}, - [188] = {.lex_state = 49, .external_lex_state = 14}, - [189] = {.lex_state = 58, .external_lex_state = 13}, - [190] = {.lex_state = 158, .external_lex_state = 13}, - [191] = {.lex_state = 49, .external_lex_state = 13}, - [192] = {.lex_state = 49, .external_lex_state = 13}, - [193] = {.lex_state = 49, .external_lex_state = 13}, - [194] = {.lex_state = 2, .external_lex_state = 10}, - [195] = {.lex_state = 49, .external_lex_state = 13}, - [196] = {.lex_state = 49, .external_lex_state = 13}, - [197] = {.lex_state = 49, .external_lex_state = 13}, - [198] = {.lex_state = 2, .external_lex_state = 10}, - [199] = {.lex_state = 49, .external_lex_state = 13}, - [200] = {.lex_state = 49, .external_lex_state = 13}, - [201] = {.lex_state = 49, .external_lex_state = 13}, - [202] = {.lex_state = 49, .external_lex_state = 13}, - [203] = {.lex_state = 158, .external_lex_state = 13}, - [204] = {.lex_state = 158, .external_lex_state = 13}, - [205] = {.lex_state = 158, .external_lex_state = 13}, - [206] = {.lex_state = 158, .external_lex_state = 13}, - [207] = {.lex_state = 49, .external_lex_state = 13}, - [208] = {.lex_state = 49, .external_lex_state = 13}, - [209] = {.lex_state = 158, .external_lex_state = 13}, - [210] = {.lex_state = 158, .external_lex_state = 13}, - [211] = {.lex_state = 158, .external_lex_state = 12}, - [212] = {.lex_state = 14, .external_lex_state = 13}, - [213] = {.lex_state = 158, .external_lex_state = 13}, - [214] = {.lex_state = 158, .external_lex_state = 11}, - [215] = {.lex_state = 22, .external_lex_state = 13}, - [216] = {.lex_state = 52, .external_lex_state = 13}, - [217] = {.lex_state = 52, .external_lex_state = 13}, - [218] = {.lex_state = 45, .external_lex_state = 13}, - [219] = {.lex_state = 123, .external_lex_state = 13}, - [220] = {.lex_state = 158, .external_lex_state = 13}, - [221] = {.lex_state = 158, .external_lex_state = 13}, - [222] = {.lex_state = 123, .external_lex_state = 13}, - [223] = {.lex_state = 158, .external_lex_state = 8}, - [224] = {.lex_state = 158, .external_lex_state = 13}, - [225] = {.lex_state = 158, .external_lex_state = 13}, - [226] = {.lex_state = 98, .external_lex_state = 13}, - [227] = {.lex_state = 45, .external_lex_state = 13}, - [228] = {.lex_state = 158, .external_lex_state = 13}, - [229] = {.lex_state = 158, .external_lex_state = 14}, - [230] = {.lex_state = 112, .external_lex_state = 13}, - [231] = {.lex_state = 56, .external_lex_state = 13}, - [232] = {.lex_state = 158, .external_lex_state = 13}, - [233] = {.lex_state = 112, .external_lex_state = 13}, - [234] = {.lex_state = 158, .external_lex_state = 13}, - [235] = {.lex_state = 158, .external_lex_state = 14}, - [236] = {.lex_state = 158, .external_lex_state = 13}, - [237] = {.lex_state = 93, .external_lex_state = 13}, - [238] = {.lex_state = 158, .external_lex_state = 13}, - [239] = {.lex_state = 56, .external_lex_state = 13}, - [240] = {.lex_state = 158, .external_lex_state = 13}, - [241] = {.lex_state = 98, .external_lex_state = 13}, - [242] = {.lex_state = 93, .external_lex_state = 13}, - [243] = {.lex_state = 158, .external_lex_state = 15}, - [244] = {.lex_state = 43, .external_lex_state = 16}, - [245] = {.lex_state = 158, .external_lex_state = 15}, - [246] = {.lex_state = 43, .external_lex_state = 16}, - [247] = {.lex_state = 43, .external_lex_state = 16}, - [248] = {.lex_state = 43, .external_lex_state = 16}, - [249] = {.lex_state = 43, .external_lex_state = 16}, - [250] = {.lex_state = 158, .external_lex_state = 15}, - [251] = {.lex_state = 158, .external_lex_state = 15}, - [252] = {.lex_state = 43, .external_lex_state = 16}, - [253] = {.lex_state = 158, .external_lex_state = 15}, - [254] = {.lex_state = 158, .external_lex_state = 15}, - [255] = {.lex_state = 158, .external_lex_state = 15}, - [256] = {.lex_state = 43, .external_lex_state = 16}, - [257] = {.lex_state = 158, .external_lex_state = 15}, - [258] = {.lex_state = 158, .external_lex_state = 15}, - [259] = {.lex_state = 158, .external_lex_state = 15}, - [260] = {.lex_state = 158, .external_lex_state = 15}, - [261] = {.lex_state = 43, .external_lex_state = 16}, - [262] = {.lex_state = 158, .external_lex_state = 13}, - [263] = {.lex_state = 43, .external_lex_state = 16}, - [264] = {.lex_state = 158, .external_lex_state = 15}, - [265] = {.lex_state = 158, .external_lex_state = 13}, - [266] = {.lex_state = 158, .external_lex_state = 13}, - [267] = {.lex_state = 158, .external_lex_state = 15}, - [268] = {.lex_state = 158, .external_lex_state = 15}, - [269] = {.lex_state = 158, .external_lex_state = 15}, - [270] = {.lex_state = 43, .external_lex_state = 16}, - [271] = {.lex_state = 158, .external_lex_state = 13}, - [272] = {.lex_state = 158, .external_lex_state = 13}, - [273] = {.lex_state = 158, .external_lex_state = 13}, - [274] = {.lex_state = 158, .external_lex_state = 13}, - [275] = {.lex_state = 158, .external_lex_state = 13}, - [276] = {.lex_state = 158, .external_lex_state = 13}, - [277] = {.lex_state = 158, .external_lex_state = 13}, - [278] = {.lex_state = 158, .external_lex_state = 13}, - [279] = {.lex_state = 158, .external_lex_state = 13}, - [280] = {.lex_state = 158, .external_lex_state = 13}, - [281] = {.lex_state = 158, .external_lex_state = 13}, - [282] = {.lex_state = 158, .external_lex_state = 13}, - [283] = {.lex_state = 158, .external_lex_state = 13}, - [284] = {.lex_state = 158, .external_lex_state = 8}, - [285] = {.lex_state = 158, .external_lex_state = 13}, - [286] = {.lex_state = 158, .external_lex_state = 13}, - [287] = {.lex_state = 158, .external_lex_state = 13}, - [288] = {.lex_state = 158, .external_lex_state = 13}, - [289] = {.lex_state = 158, .external_lex_state = 13}, - [290] = {.lex_state = 158, .external_lex_state = 13}, - [291] = {.lex_state = 158, .external_lex_state = 13}, - [292] = {.lex_state = 158, .external_lex_state = 11}, - [293] = {.lex_state = 158, .external_lex_state = 13}, - [294] = {.lex_state = 158, .external_lex_state = 13}, - [295] = {.lex_state = 158, .external_lex_state = 13}, - [296] = {.lex_state = 158, .external_lex_state = 13}, - [297] = {.lex_state = 158, .external_lex_state = 12}, - [298] = {.lex_state = 158, .external_lex_state = 13}, - [299] = {.lex_state = 158, .external_lex_state = 13}, - [300] = {.lex_state = 158, .external_lex_state = 16}, - [301] = {.lex_state = 158, .external_lex_state = 17}, - [302] = {.lex_state = 158, .external_lex_state = 18}, - [303] = {.lex_state = 158, .external_lex_state = 8}, - [304] = {.lex_state = 158, .external_lex_state = 8}, - [305] = {.lex_state = 158, .external_lex_state = 11}, - [306] = {.lex_state = 158, .external_lex_state = 19}, - [307] = {.lex_state = 158, .external_lex_state = 12}, - [308] = {.lex_state = 158, .external_lex_state = 16}, - [309] = {.lex_state = 158, .external_lex_state = 19}, - [310] = {.lex_state = 158, .external_lex_state = 16}, - [311] = {.lex_state = 158, .external_lex_state = 20}, - [312] = {.lex_state = 158, .external_lex_state = 8}, - [313] = {.lex_state = 158, .external_lex_state = 8}, - [314] = {.lex_state = 158, .external_lex_state = 19}, - [315] = {.lex_state = 158, .external_lex_state = 21}, - [316] = {.lex_state = 158, .external_lex_state = 19}, - [317] = {.lex_state = 158, .external_lex_state = 11}, - [318] = {.lex_state = 158, .external_lex_state = 11}, - [319] = {.lex_state = 158, .external_lex_state = 21}, - [320] = {.lex_state = 158, .external_lex_state = 21}, - [321] = {.lex_state = 158, .external_lex_state = 17}, - [322] = {.lex_state = 158, .external_lex_state = 17}, - [323] = {.lex_state = 158, .external_lex_state = 11}, - [324] = {.lex_state = 158, .external_lex_state = 11}, - [325] = {.lex_state = 158, .external_lex_state = 21}, - [326] = {.lex_state = 158, .external_lex_state = 22}, - [327] = {.lex_state = 158, .external_lex_state = 17}, - [328] = {.lex_state = 158, .external_lex_state = 17}, - [329] = {.lex_state = 158, .external_lex_state = 11}, - [330] = {.lex_state = 158, .external_lex_state = 11}, - [331] = {.lex_state = 158, .external_lex_state = 20}, - [332] = {.lex_state = 158, .external_lex_state = 20}, - [333] = {.lex_state = 158, .external_lex_state = 8}, - [334] = {.lex_state = 158, .external_lex_state = 8}, - [335] = {.lex_state = 158, .external_lex_state = 19}, - [336] = {.lex_state = 158, .external_lex_state = 20}, - [337] = {.lex_state = 158, .external_lex_state = 23}, - [338] = {.lex_state = 158, .external_lex_state = 23}, - [339] = {.lex_state = 158, .external_lex_state = 23}, - [340] = {.lex_state = 158, .external_lex_state = 23}, - [341] = {.lex_state = 158, .external_lex_state = 23}, - [342] = {.lex_state = 158, .external_lex_state = 12}, - [343] = {.lex_state = 158, .external_lex_state = 8}, - [344] = {.lex_state = 158, .external_lex_state = 12}, - [345] = {.lex_state = 158, .external_lex_state = 24}, - [346] = {.lex_state = 158, .external_lex_state = 24}, - [347] = {.lex_state = 158, .external_lex_state = 23}, - [348] = {.lex_state = 158, .external_lex_state = 22}, - [349] = {.lex_state = 158, .external_lex_state = 12}, - [350] = {.lex_state = 158, .external_lex_state = 12}, - [351] = {.lex_state = 158, .external_lex_state = 18}, - [352] = {.lex_state = 158, .external_lex_state = 18}, - [353] = {.lex_state = 158, .external_lex_state = 22}, - [354] = {.lex_state = 158, .external_lex_state = 12}, - [355] = {.lex_state = 158, .external_lex_state = 18}, - [356] = {.lex_state = 158, .external_lex_state = 18}, - [357] = {.lex_state = 158, .external_lex_state = 22}, - [358] = {.lex_state = 158, .external_lex_state = 12}, - [359] = {.lex_state = 158, .external_lex_state = 18}, - [360] = {.lex_state = 158, .external_lex_state = 24}, - [361] = {.lex_state = 158, .external_lex_state = 24}, - [362] = {.lex_state = 158, .external_lex_state = 24}, - [363] = {.lex_state = 158, .external_lex_state = 4}, - [364] = {.lex_state = 158, .external_lex_state = 3}, - [365] = {.lex_state = 158, .external_lex_state = 3}, - [366] = {.lex_state = 158, .external_lex_state = 3}, - [367] = {.lex_state = 158, .external_lex_state = 3}, - [368] = {.lex_state = 158, .external_lex_state = 3}, - [369] = {.lex_state = 158, .external_lex_state = 3}, - [370] = {.lex_state = 158, .external_lex_state = 3}, - [371] = {.lex_state = 158, .external_lex_state = 3}, - [372] = {.lex_state = 158, .external_lex_state = 3}, - [373] = {.lex_state = 158, .external_lex_state = 3}, - [374] = {.lex_state = 158, .external_lex_state = 3}, - [375] = {.lex_state = 158, .external_lex_state = 3}, - [376] = {.lex_state = 158, .external_lex_state = 3}, - [377] = {.lex_state = 158, .external_lex_state = 3}, - [378] = {.lex_state = 158, .external_lex_state = 5}, - [379] = {.lex_state = 158, .external_lex_state = 4}, - [380] = {.lex_state = 158, .external_lex_state = 5}, - [381] = {.lex_state = 158, .external_lex_state = 3}, - [382] = {.lex_state = 158, .external_lex_state = 4}, - [383] = {.lex_state = 158, .external_lex_state = 5}, - [384] = {.lex_state = 158, .external_lex_state = 3}, - [385] = {.lex_state = 158, .external_lex_state = 3}, - [386] = {.lex_state = 158, .external_lex_state = 3}, - [387] = {.lex_state = 158, .external_lex_state = 4}, - [388] = {.lex_state = 158, .external_lex_state = 5}, - [389] = {.lex_state = 158, .external_lex_state = 5}, - [390] = {.lex_state = 158, .external_lex_state = 5}, - [391] = {.lex_state = 158, .external_lex_state = 3}, - [392] = {.lex_state = 158, .external_lex_state = 3}, - [393] = {.lex_state = 158, .external_lex_state = 4}, - [394] = {.lex_state = 158, .external_lex_state = 3}, - [395] = {.lex_state = 158, .external_lex_state = 4}, - [396] = {.lex_state = 158, .external_lex_state = 5}, - [397] = {.lex_state = 158, .external_lex_state = 5}, - [398] = {.lex_state = 158, .external_lex_state = 3}, - [399] = {.lex_state = 158, .external_lex_state = 4}, - [400] = {.lex_state = 158, .external_lex_state = 4}, - [401] = {.lex_state = 158, .external_lex_state = 4}, - [402] = {.lex_state = 158, .external_lex_state = 3}, - [403] = {.lex_state = 158, .external_lex_state = 4}, - [404] = {.lex_state = 158, .external_lex_state = 5}, - [405] = {.lex_state = 158, .external_lex_state = 4}, - [406] = {.lex_state = 158, .external_lex_state = 5}, - [407] = {.lex_state = 158, .external_lex_state = 5}, - [408] = {.lex_state = 158, .external_lex_state = 3}, - [409] = {.lex_state = 158, .external_lex_state = 5}, - [410] = {.lex_state = 158, .external_lex_state = 3}, - [411] = {.lex_state = 158, .external_lex_state = 5}, - [412] = {.lex_state = 158, .external_lex_state = 5}, - [413] = {.lex_state = 158, .external_lex_state = 4}, - [414] = {.lex_state = 158, .external_lex_state = 3}, - [415] = {.lex_state = 158, .external_lex_state = 4}, - [416] = {.lex_state = 158, .external_lex_state = 5}, - [417] = {.lex_state = 158, .external_lex_state = 3}, - [418] = {.lex_state = 158, .external_lex_state = 4}, - [419] = {.lex_state = 158, .external_lex_state = 3}, - [420] = {.lex_state = 158, .external_lex_state = 5}, - [421] = {.lex_state = 158, .external_lex_state = 5}, - [422] = {.lex_state = 158, .external_lex_state = 4}, - [423] = {.lex_state = 158, .external_lex_state = 4}, - [424] = {.lex_state = 158, .external_lex_state = 3}, - [425] = {.lex_state = 158, .external_lex_state = 4}, - [426] = {.lex_state = 158, .external_lex_state = 3}, - [427] = {.lex_state = 158, .external_lex_state = 4}, - [428] = {.lex_state = 158, .external_lex_state = 4}, - [429] = {.lex_state = 158, .external_lex_state = 5}, - [430] = {.lex_state = 158, .external_lex_state = 5}, - [431] = {.lex_state = 158, .external_lex_state = 5}, - [432] = {.lex_state = 158, .external_lex_state = 3}, - [433] = {.lex_state = 158, .external_lex_state = 3}, - [434] = {.lex_state = 158, .external_lex_state = 4}, - [435] = {.lex_state = 158, .external_lex_state = 3}, - [436] = {.lex_state = 158, .external_lex_state = 3}, - [437] = {.lex_state = 158, .external_lex_state = 3}, - [438] = {.lex_state = 158, .external_lex_state = 5}, - [439] = {.lex_state = 158, .external_lex_state = 4}, - [440] = {.lex_state = 158, .external_lex_state = 5}, - [441] = {.lex_state = 158, .external_lex_state = 5}, - [442] = {.lex_state = 158, .external_lex_state = 3}, - [443] = {.lex_state = 158, .external_lex_state = 5}, - [444] = {.lex_state = 158, .external_lex_state = 4}, - [445] = {.lex_state = 158, .external_lex_state = 4}, - [446] = {.lex_state = 158, .external_lex_state = 3}, - [447] = {.lex_state = 158, .external_lex_state = 4}, - [448] = {.lex_state = 158, .external_lex_state = 4}, - [449] = {.lex_state = 158, .external_lex_state = 3}, - [450] = {.lex_state = 158, .external_lex_state = 5}, - [451] = {.lex_state = 158, .external_lex_state = 4}, - [452] = {.lex_state = 158, .external_lex_state = 5}, - [453] = {.lex_state = 158, .external_lex_state = 5}, - [454] = {.lex_state = 158, .external_lex_state = 5}, - [455] = {.lex_state = 158, .external_lex_state = 4}, - [456] = {.lex_state = 158, .external_lex_state = 3}, - [457] = {.lex_state = 158, .external_lex_state = 4}, - [458] = {.lex_state = 158, .external_lex_state = 4}, - [459] = {.lex_state = 158, .external_lex_state = 4}, - [460] = {.lex_state = 158, .external_lex_state = 3}, - [461] = {.lex_state = 158, .external_lex_state = 3}, - [462] = {.lex_state = 158, .external_lex_state = 4}, - [463] = {.lex_state = 158, .external_lex_state = 4}, - [464] = {.lex_state = 158, .external_lex_state = 3}, - [465] = {.lex_state = 158, .external_lex_state = 4}, - [466] = {.lex_state = 158, .external_lex_state = 3}, - [467] = {.lex_state = 158, .external_lex_state = 4}, - [468] = {.lex_state = 158, .external_lex_state = 4}, - [469] = {.lex_state = 158, .external_lex_state = 4}, - [470] = {.lex_state = 158, .external_lex_state = 4}, - [471] = {.lex_state = 158, .external_lex_state = 5}, - [472] = {.lex_state = 158, .external_lex_state = 5}, - [473] = {.lex_state = 158, .external_lex_state = 5}, - [474] = {.lex_state = 158, .external_lex_state = 4}, - [475] = {.lex_state = 158, .external_lex_state = 5}, - [476] = {.lex_state = 158, .external_lex_state = 3}, - [477] = {.lex_state = 158, .external_lex_state = 4}, - [478] = {.lex_state = 158, .external_lex_state = 5}, - [479] = {.lex_state = 158, .external_lex_state = 4}, - [480] = {.lex_state = 158, .external_lex_state = 5}, - [481] = {.lex_state = 158, .external_lex_state = 4}, - [482] = {.lex_state = 158, .external_lex_state = 5}, - [483] = {.lex_state = 158, .external_lex_state = 5}, - [484] = {.lex_state = 158, .external_lex_state = 4}, - [485] = {.lex_state = 158, .external_lex_state = 5}, - [486] = {.lex_state = 158, .external_lex_state = 3}, - [487] = {.lex_state = 158, .external_lex_state = 3}, - [488] = {.lex_state = 158, .external_lex_state = 4}, - [489] = {.lex_state = 158, .external_lex_state = 3}, - [490] = {.lex_state = 158, .external_lex_state = 3}, - [491] = {.lex_state = 158, .external_lex_state = 3}, - [492] = {.lex_state = 158, .external_lex_state = 5}, - [493] = {.lex_state = 158, .external_lex_state = 4}, - [494] = {.lex_state = 158, .external_lex_state = 5}, - [495] = {.lex_state = 158, .external_lex_state = 5}, - [496] = {.lex_state = 158, .external_lex_state = 5}, - [497] = {.lex_state = 158, .external_lex_state = 5}, - [498] = {.lex_state = 158, .external_lex_state = 5}, - [499] = {.lex_state = 158, .external_lex_state = 4}, - [500] = {.lex_state = 158, .external_lex_state = 5}, - [501] = {.lex_state = 158, .external_lex_state = 5}, - [502] = {.lex_state = 158, .external_lex_state = 5}, - [503] = {.lex_state = 158, .external_lex_state = 5}, - [504] = {.lex_state = 158, .external_lex_state = 3}, - [505] = {.lex_state = 158, .external_lex_state = 4}, - [506] = {.lex_state = 158, .external_lex_state = 7}, - [507] = {.lex_state = 61, .external_lex_state = 14}, - [508] = {.lex_state = 61, .external_lex_state = 14}, - [509] = {.lex_state = 61, .external_lex_state = 14}, - [510] = {.lex_state = 61, .external_lex_state = 14}, - [511] = {.lex_state = 61, .external_lex_state = 14}, - [512] = {.lex_state = 4, .external_lex_state = 25}, - [513] = {.lex_state = 9, .external_lex_state = 10}, - [514] = {.lex_state = 46, .external_lex_state = 26}, - [515] = {.lex_state = 4, .external_lex_state = 25}, - [516] = {.lex_state = 114, .external_lex_state = 26}, - [517] = {.lex_state = 49, .external_lex_state = 27}, - [518] = {.lex_state = 125, .external_lex_state = 26}, - [519] = {.lex_state = 23, .external_lex_state = 26}, - [520] = {.lex_state = 4, .external_lex_state = 10}, - [521] = {.lex_state = 4, .external_lex_state = 25}, - [522] = {.lex_state = 15, .external_lex_state = 26}, - [523] = {.lex_state = 95, .external_lex_state = 26}, - [524] = {.lex_state = 2, .external_lex_state = 25}, - [525] = {.lex_state = 1, .external_lex_state = 10}, - [526] = {.lex_state = 1, .external_lex_state = 10}, - [527] = {.lex_state = 58, .external_lex_state = 26}, - [528] = {.lex_state = 5, .external_lex_state = 10}, - [529] = {.lex_state = 54, .external_lex_state = 26}, - [530] = {.lex_state = 100, .external_lex_state = 26}, - [531] = {.lex_state = 28, .external_lex_state = 13}, - [532] = {.lex_state = 126, .external_lex_state = 13}, - [533] = {.lex_state = 114, .external_lex_state = 26}, - [534] = {.lex_state = 17, .external_lex_state = 13}, - [535] = {.lex_state = 65, .external_lex_state = 14}, - [536] = {.lex_state = 30, .external_lex_state = 14}, - [537] = {.lex_state = 11, .external_lex_state = 10}, - [538] = {.lex_state = 31, .external_lex_state = 13}, - [539] = {.lex_state = 4, .external_lex_state = 10}, - [540] = {.lex_state = 31, .external_lex_state = 13}, - [541] = {.lex_state = 25, .external_lex_state = 13}, - [542] = {.lex_state = 18, .external_lex_state = 13}, - [543] = {.lex_state = 15, .external_lex_state = 13}, - [544] = {.lex_state = 23, .external_lex_state = 26}, - [545] = {.lex_state = 30, .external_lex_state = 14}, - [546] = {.lex_state = 47, .external_lex_state = 13}, - [547] = {.lex_state = 125, .external_lex_state = 26}, - [548] = {.lex_state = 16, .external_lex_state = 13}, - [549] = {.lex_state = 68, .external_lex_state = 13}, - [550] = {.lex_state = 56, .external_lex_state = 26}, - [551] = {.lex_state = 125, .external_lex_state = 26}, - [552] = {.lex_state = 59, .external_lex_state = 13}, - [553] = {.lex_state = 32, .external_lex_state = 13}, - [554] = {.lex_state = 54, .external_lex_state = 13}, - [555] = {.lex_state = 32, .external_lex_state = 13}, - [556] = {.lex_state = 49, .external_lex_state = 27}, - [557] = {.lex_state = 55, .external_lex_state = 13}, - [558] = {.lex_state = 158, .external_lex_state = 27}, - [559] = {.lex_state = 112, .external_lex_state = 26}, - [560] = {.lex_state = 95, .external_lex_state = 13}, - [561] = {.lex_state = 4, .external_lex_state = 25}, - [562] = {.lex_state = 49, .external_lex_state = 14}, - [563] = {.lex_state = 33, .external_lex_state = 13}, - [564] = {.lex_state = 123, .external_lex_state = 26}, - [565] = {.lex_state = 33, .external_lex_state = 13}, - [566] = {.lex_state = 54, .external_lex_state = 26}, - [567] = {.lex_state = 28, .external_lex_state = 13}, - [568] = {.lex_state = 54, .external_lex_state = 26}, - [569] = {.lex_state = 105, .external_lex_state = 13}, - [570] = {.lex_state = 63, .external_lex_state = 13}, - [571] = {.lex_state = 24, .external_lex_state = 13}, - [572] = {.lex_state = 125, .external_lex_state = 13}, - [573] = {.lex_state = 58, .external_lex_state = 26}, - [574] = {.lex_state = 45, .external_lex_state = 26}, - [575] = {.lex_state = 98, .external_lex_state = 26}, - [576] = {.lex_state = 58, .external_lex_state = 26}, - [577] = {.lex_state = 34, .external_lex_state = 13}, - [578] = {.lex_state = 34, .external_lex_state = 13}, - [579] = {.lex_state = 114, .external_lex_state = 26}, - [580] = {.lex_state = 70, .external_lex_state = 13}, - [581] = {.lex_state = 118, .external_lex_state = 13}, - [582] = {.lex_state = 100, .external_lex_state = 26}, - [583] = {.lex_state = 114, .external_lex_state = 13}, - [584] = {.lex_state = 95, .external_lex_state = 26}, - [585] = {.lex_state = 115, .external_lex_state = 13}, - [586] = {.lex_state = 95, .external_lex_state = 26}, - [587] = {.lex_state = 4, .external_lex_state = 10}, - [588] = {.lex_state = 22, .external_lex_state = 26}, - [589] = {.lex_state = 50, .external_lex_state = 14}, - [590] = {.lex_state = 35, .external_lex_state = 13}, - [591] = {.lex_state = 35, .external_lex_state = 13}, - [592] = {.lex_state = 23, .external_lex_state = 26}, - [593] = {.lex_state = 27, .external_lex_state = 13}, - [594] = {.lex_state = 49, .external_lex_state = 27}, - [595] = {.lex_state = 58, .external_lex_state = 13}, - [596] = {.lex_state = 18, .external_lex_state = 13}, - [597] = {.lex_state = 15, .external_lex_state = 26}, - [598] = {.lex_state = 96, .external_lex_state = 13}, - [599] = {.lex_state = 15, .external_lex_state = 26}, - [600] = {.lex_state = 72, .external_lex_state = 13}, - [601] = {.lex_state = 46, .external_lex_state = 26}, - [602] = {.lex_state = 46, .external_lex_state = 26}, - [603] = {.lex_state = 19, .external_lex_state = 13}, - [604] = {.lex_state = 19, .external_lex_state = 13}, - [605] = {.lex_state = 129, .external_lex_state = 13}, - [606] = {.lex_state = 52, .external_lex_state = 26}, - [607] = {.lex_state = 49, .external_lex_state = 26}, - [608] = {.lex_state = 23, .external_lex_state = 13}, - [609] = {.lex_state = 100, .external_lex_state = 13}, - [610] = {.lex_state = 2, .external_lex_state = 25}, - [611] = {.lex_state = 2, .external_lex_state = 25}, - [612] = {.lex_state = 101, .external_lex_state = 13}, - [613] = {.lex_state = 46, .external_lex_state = 13}, - [614] = {.lex_state = 93, .external_lex_state = 26}, - [615] = {.lex_state = 100, .external_lex_state = 26}, - [616] = {.lex_state = 14, .external_lex_state = 26}, - [617] = {.lex_state = 27, .external_lex_state = 13}, - [618] = {.lex_state = 74, .external_lex_state = 13}, - [619] = {.lex_state = 4, .external_lex_state = 10}, - [620] = {.lex_state = 49, .external_lex_state = 26}, - [621] = {.lex_state = 4, .external_lex_state = 10}, - [622] = {.lex_state = 4, .external_lex_state = 10}, - [623] = {.lex_state = 76, .external_lex_state = 13}, - [624] = {.lex_state = 58, .external_lex_state = 13}, - [625] = {.lex_state = 45, .external_lex_state = 26}, - [626] = {.lex_state = 45, .external_lex_state = 26}, - [627] = {.lex_state = 95, .external_lex_state = 13}, - [628] = {.lex_state = 78, .external_lex_state = 13}, - [629] = {.lex_state = 14, .external_lex_state = 26}, - [630] = {.lex_state = 14, .external_lex_state = 26}, - [631] = {.lex_state = 4, .external_lex_state = 10}, - [632] = {.lex_state = 58, .external_lex_state = 26}, - [633] = {.lex_state = 49, .external_lex_state = 26}, - [634] = {.lex_state = 4, .external_lex_state = 10}, - [635] = {.lex_state = 58, .external_lex_state = 13}, - [636] = {.lex_state = 4, .external_lex_state = 10}, - [637] = {.lex_state = 49, .external_lex_state = 27}, - [638] = {.lex_state = 4, .external_lex_state = 10}, - [639] = {.lex_state = 4, .external_lex_state = 10}, - [640] = {.lex_state = 4, .external_lex_state = 10}, - [641] = {.lex_state = 4, .external_lex_state = 10}, - [642] = {.lex_state = 4, .external_lex_state = 10}, - [643] = {.lex_state = 4, .external_lex_state = 10}, - [644] = {.lex_state = 4, .external_lex_state = 10}, - [645] = {.lex_state = 4, .external_lex_state = 10}, - [646] = {.lex_state = 4, .external_lex_state = 10}, - [647] = {.lex_state = 106, .external_lex_state = 13}, - [648] = {.lex_state = 4, .external_lex_state = 10}, - [649] = {.lex_state = 4, .external_lex_state = 10}, - [650] = {.lex_state = 4, .external_lex_state = 10}, - [651] = {.lex_state = 49, .external_lex_state = 14}, - [652] = {.lex_state = 22, .external_lex_state = 26}, - [653] = {.lex_state = 95, .external_lex_state = 26}, - [654] = {.lex_state = 22, .external_lex_state = 26}, - [655] = {.lex_state = 158, .external_lex_state = 27}, - [656] = {.lex_state = 4, .external_lex_state = 10}, - [657] = {.lex_state = 4, .external_lex_state = 10}, - [658] = {.lex_state = 4, .external_lex_state = 10}, - [659] = {.lex_state = 4, .external_lex_state = 10}, - [660] = {.lex_state = 4, .external_lex_state = 10}, - [661] = {.lex_state = 4, .external_lex_state = 10}, - [662] = {.lex_state = 4, .external_lex_state = 10}, - [663] = {.lex_state = 4, .external_lex_state = 10}, - [664] = {.lex_state = 95, .external_lex_state = 13}, - [665] = {.lex_state = 98, .external_lex_state = 26}, - [666] = {.lex_state = 158, .external_lex_state = 27}, - [667] = {.lex_state = 54, .external_lex_state = 13}, - [668] = {.lex_state = 80, .external_lex_state = 13}, - [669] = {.lex_state = 4, .external_lex_state = 10}, - [670] = {.lex_state = 4, .external_lex_state = 10}, - [671] = {.lex_state = 4, .external_lex_state = 10}, - [672] = {.lex_state = 98, .external_lex_state = 26}, - [673] = {.lex_state = 112, .external_lex_state = 26}, - [674] = {.lex_state = 4, .external_lex_state = 10}, - [675] = {.lex_state = 4, .external_lex_state = 10}, - [676] = {.lex_state = 2, .external_lex_state = 10}, - [677] = {.lex_state = 112, .external_lex_state = 26}, - [678] = {.lex_state = 123, .external_lex_state = 26}, - [679] = {.lex_state = 54, .external_lex_state = 26}, - [680] = {.lex_state = 54, .external_lex_state = 13}, - [681] = {.lex_state = 123, .external_lex_state = 26}, - [682] = {.lex_state = 125, .external_lex_state = 13}, - [683] = {.lex_state = 46, .external_lex_state = 26}, - [684] = {.lex_state = 52, .external_lex_state = 26}, - [685] = {.lex_state = 52, .external_lex_state = 26}, - [686] = {.lex_state = 125, .external_lex_state = 26}, - [687] = {.lex_state = 125, .external_lex_state = 13}, - [688] = {.lex_state = 114, .external_lex_state = 13}, - [689] = {.lex_state = 46, .external_lex_state = 13}, - [690] = {.lex_state = 56, .external_lex_state = 26}, - [691] = {.lex_state = 56, .external_lex_state = 26}, - [692] = {.lex_state = 4, .external_lex_state = 10}, - [693] = {.lex_state = 4, .external_lex_state = 10}, - [694] = {.lex_state = 114, .external_lex_state = 26}, - [695] = {.lex_state = 114, .external_lex_state = 13}, - [696] = {.lex_state = 100, .external_lex_state = 13}, - [697] = {.lex_state = 50, .external_lex_state = 13}, - [698] = {.lex_state = 119, .external_lex_state = 13}, - [699] = {.lex_state = 93, .external_lex_state = 26}, - [700] = {.lex_state = 93, .external_lex_state = 26}, - [701] = {.lex_state = 100, .external_lex_state = 26}, - [702] = {.lex_state = 100, .external_lex_state = 13}, - [703] = {.lex_state = 23, .external_lex_state = 13}, - [704] = {.lex_state = 20, .external_lex_state = 13}, - [705] = {.lex_state = 65, .external_lex_state = 13}, - [706] = {.lex_state = 30, .external_lex_state = 13}, - [707] = {.lex_state = 30, .external_lex_state = 13}, - [708] = {.lex_state = 49, .external_lex_state = 13}, - [709] = {.lex_state = 23, .external_lex_state = 26}, - [710] = {.lex_state = 23, .external_lex_state = 13}, - [711] = {.lex_state = 49, .external_lex_state = 28}, - [712] = {.lex_state = 15, .external_lex_state = 13}, - [713] = {.lex_state = 26, .external_lex_state = 13}, - [714] = {.lex_state = 15, .external_lex_state = 26}, - [715] = {.lex_state = 131, .external_lex_state = 14}, - [716] = {.lex_state = 49, .external_lex_state = 14}, - [717] = {.lex_state = 15, .external_lex_state = 13}, - [718] = {.lex_state = 158, .external_lex_state = 26}, - [719] = {.lex_state = 30, .external_lex_state = 13}, - [720] = {.lex_state = 46, .external_lex_state = 13}, - [721] = {.lex_state = 130, .external_lex_state = 13}, - [722] = {.lex_state = 30, .external_lex_state = 13}, - [723] = {.lex_state = 114, .external_lex_state = 13}, - [724] = {.lex_state = 49, .external_lex_state = 14}, - [725] = {.lex_state = 158, .external_lex_state = 14}, - [726] = {.lex_state = 49, .external_lex_state = 14}, - [727] = {.lex_state = 49, .external_lex_state = 14}, - [728] = {.lex_state = 49, .external_lex_state = 14}, - [729] = {.lex_state = 49, .external_lex_state = 14}, - [730] = {.lex_state = 95, .external_lex_state = 13}, - [731] = {.lex_state = 95, .external_lex_state = 13}, - [732] = {.lex_state = 49, .external_lex_state = 14}, - [733] = {.lex_state = 23, .external_lex_state = 13}, - [734] = {.lex_state = 23, .external_lex_state = 13}, - [735] = {.lex_state = 95, .external_lex_state = 13}, - [736] = {.lex_state = 23, .external_lex_state = 13}, - [737] = {.lex_state = 95, .external_lex_state = 13}, - [738] = {.lex_state = 23, .external_lex_state = 13}, - [739] = {.lex_state = 23, .external_lex_state = 13}, - [740] = {.lex_state = 95, .external_lex_state = 13}, - [741] = {.lex_state = 95, .external_lex_state = 13}, - [742] = {.lex_state = 23, .external_lex_state = 13}, - [743] = {.lex_state = 23, .external_lex_state = 13}, - [744] = {.lex_state = 23, .external_lex_state = 13}, - [745] = {.lex_state = 23, .external_lex_state = 13}, - [746] = {.lex_state = 23, .external_lex_state = 13}, - [747] = {.lex_state = 23, .external_lex_state = 13}, - [748] = {.lex_state = 23, .external_lex_state = 13}, - [749] = {.lex_state = 23, .external_lex_state = 13}, - [750] = {.lex_state = 23, .external_lex_state = 13}, - [751] = {.lex_state = 23, .external_lex_state = 13}, - [752] = {.lex_state = 23, .external_lex_state = 13}, - [753] = {.lex_state = 95, .external_lex_state = 13}, - [754] = {.lex_state = 23, .external_lex_state = 13}, - [755] = {.lex_state = 23, .external_lex_state = 13}, - [756] = {.lex_state = 23, .external_lex_state = 13}, - [757] = {.lex_state = 23, .external_lex_state = 13}, - [758] = {.lex_state = 23, .external_lex_state = 13}, - [759] = {.lex_state = 23, .external_lex_state = 13}, - [760] = {.lex_state = 23, .external_lex_state = 13}, - [761] = {.lex_state = 23, .external_lex_state = 13}, - [762] = {.lex_state = 23, .external_lex_state = 13}, - [763] = {.lex_state = 49, .external_lex_state = 14}, - [764] = {.lex_state = 23, .external_lex_state = 13}, - [765] = {.lex_state = 49, .external_lex_state = 14}, - [766] = {.lex_state = 56, .external_lex_state = 13}, - [767] = {.lex_state = 49, .external_lex_state = 14}, - [768] = {.lex_state = 49, .external_lex_state = 14}, - [769] = {.lex_state = 23, .external_lex_state = 13}, - [770] = {.lex_state = 23, .external_lex_state = 13}, - [771] = {.lex_state = 23, .external_lex_state = 13}, - [772] = {.lex_state = 2, .external_lex_state = 9}, - [773] = {.lex_state = 65, .external_lex_state = 16}, - [774] = {.lex_state = 23, .external_lex_state = 13}, - [775] = {.lex_state = 23, .external_lex_state = 13}, - [776] = {.lex_state = 45, .external_lex_state = 13}, - [777] = {.lex_state = 100, .external_lex_state = 13}, - [778] = {.lex_state = 100, .external_lex_state = 13}, - [779] = {.lex_state = 95, .external_lex_state = 13}, - [780] = {.lex_state = 95, .external_lex_state = 13}, - [781] = {.lex_state = 49, .external_lex_state = 16}, - [782] = {.lex_state = 95, .external_lex_state = 13}, - [783] = {.lex_state = 95, .external_lex_state = 13}, - [784] = {.lex_state = 100, .external_lex_state = 13}, - [785] = {.lex_state = 100, .external_lex_state = 13}, - [786] = {.lex_state = 95, .external_lex_state = 13}, - [787] = {.lex_state = 100, .external_lex_state = 13}, - [788] = {.lex_state = 100, .external_lex_state = 13}, - [789] = {.lex_state = 100, .external_lex_state = 13}, - [790] = {.lex_state = 95, .external_lex_state = 13}, - [791] = {.lex_state = 95, .external_lex_state = 13}, - [792] = {.lex_state = 100, .external_lex_state = 13}, - [793] = {.lex_state = 100, .external_lex_state = 13}, - [794] = {.lex_state = 100, .external_lex_state = 13}, - [795] = {.lex_state = 100, .external_lex_state = 13}, - [796] = {.lex_state = 100, .external_lex_state = 13}, - [797] = {.lex_state = 100, .external_lex_state = 13}, - [798] = {.lex_state = 100, .external_lex_state = 13}, - [799] = {.lex_state = 100, .external_lex_state = 13}, - [800] = {.lex_state = 95, .external_lex_state = 13}, - [801] = {.lex_state = 95, .external_lex_state = 13}, - [802] = {.lex_state = 95, .external_lex_state = 13}, - [803] = {.lex_state = 95, .external_lex_state = 13}, - [804] = {.lex_state = 100, .external_lex_state = 13}, - [805] = {.lex_state = 100, .external_lex_state = 13}, - [806] = {.lex_state = 100, .external_lex_state = 13}, - [807] = {.lex_state = 15, .external_lex_state = 13}, - [808] = {.lex_state = 49, .external_lex_state = 14}, - [809] = {.lex_state = 49, .external_lex_state = 14}, - [810] = {.lex_state = 49, .external_lex_state = 14}, - [811] = {.lex_state = 49, .external_lex_state = 14}, - [812] = {.lex_state = 100, .external_lex_state = 13}, - [813] = {.lex_state = 100, .external_lex_state = 13}, - [814] = {.lex_state = 100, .external_lex_state = 13}, - [815] = {.lex_state = 100, .external_lex_state = 13}, - [816] = {.lex_state = 100, .external_lex_state = 13}, - [817] = {.lex_state = 100, .external_lex_state = 13}, - [818] = {.lex_state = 100, .external_lex_state = 13}, - [819] = {.lex_state = 49, .external_lex_state = 14}, - [820] = {.lex_state = 100, .external_lex_state = 13}, - [821] = {.lex_state = 15, .external_lex_state = 13}, - [822] = {.lex_state = 15, .external_lex_state = 13}, - [823] = {.lex_state = 15, .external_lex_state = 13}, - [824] = {.lex_state = 100, .external_lex_state = 13}, - [825] = {.lex_state = 100, .external_lex_state = 13}, - [826] = {.lex_state = 100, .external_lex_state = 13}, - [827] = {.lex_state = 49, .external_lex_state = 14}, - [828] = {.lex_state = 29, .external_lex_state = 13}, - [829] = {.lex_state = 49, .external_lex_state = 14}, - [830] = {.lex_state = 15, .external_lex_state = 13}, - [831] = {.lex_state = 100, .external_lex_state = 13}, - [832] = {.lex_state = 49, .external_lex_state = 14}, - [833] = {.lex_state = 15, .external_lex_state = 13}, - [834] = {.lex_state = 50, .external_lex_state = 16}, - [835] = {.lex_state = 100, .external_lex_state = 13}, - [836] = {.lex_state = 15, .external_lex_state = 13}, - [837] = {.lex_state = 15, .external_lex_state = 13}, - [838] = {.lex_state = 49, .external_lex_state = 14}, - [839] = {.lex_state = 15, .external_lex_state = 13}, - [840] = {.lex_state = 114, .external_lex_state = 13}, - [841] = {.lex_state = 114, .external_lex_state = 13}, - [842] = {.lex_state = 114, .external_lex_state = 13}, - [843] = {.lex_state = 49, .external_lex_state = 14}, - [844] = {.lex_state = 114, .external_lex_state = 13}, - [845] = {.lex_state = 114, .external_lex_state = 13}, - [846] = {.lex_state = 114, .external_lex_state = 13}, - [847] = {.lex_state = 15, .external_lex_state = 13}, - [848] = {.lex_state = 114, .external_lex_state = 13}, - [849] = {.lex_state = 114, .external_lex_state = 13}, - [850] = {.lex_state = 114, .external_lex_state = 13}, - [851] = {.lex_state = 114, .external_lex_state = 13}, - [852] = {.lex_state = 114, .external_lex_state = 13}, - [853] = {.lex_state = 29, .external_lex_state = 13}, - [854] = {.lex_state = 95, .external_lex_state = 13}, - [855] = {.lex_state = 95, .external_lex_state = 13}, - [856] = {.lex_state = 95, .external_lex_state = 13}, - [857] = {.lex_state = 29, .external_lex_state = 13}, - [858] = {.lex_state = 114, .external_lex_state = 13}, - [859] = {.lex_state = 114, .external_lex_state = 13}, - [860] = {.lex_state = 95, .external_lex_state = 13}, - [861] = {.lex_state = 95, .external_lex_state = 13}, - [862] = {.lex_state = 95, .external_lex_state = 13}, - [863] = {.lex_state = 114, .external_lex_state = 13}, - [864] = {.lex_state = 114, .external_lex_state = 13}, - [865] = {.lex_state = 114, .external_lex_state = 13}, - [866] = {.lex_state = 95, .external_lex_state = 13}, - [867] = {.lex_state = 114, .external_lex_state = 13}, - [868] = {.lex_state = 15, .external_lex_state = 13}, - [869] = {.lex_state = 15, .external_lex_state = 13}, - [870] = {.lex_state = 15, .external_lex_state = 13}, - [871] = {.lex_state = 114, .external_lex_state = 13}, - [872] = {.lex_state = 95, .external_lex_state = 13}, - [873] = {.lex_state = 114, .external_lex_state = 13}, - [874] = {.lex_state = 114, .external_lex_state = 13}, - [875] = {.lex_state = 114, .external_lex_state = 13}, - [876] = {.lex_state = 114, .external_lex_state = 13}, - [877] = {.lex_state = 114, .external_lex_state = 13}, - [878] = {.lex_state = 95, .external_lex_state = 13}, - [879] = {.lex_state = 95, .external_lex_state = 13}, - [880] = {.lex_state = 95, .external_lex_state = 13}, - [881] = {.lex_state = 114, .external_lex_state = 13}, - [882] = {.lex_state = 95, .external_lex_state = 13}, - [883] = {.lex_state = 95, .external_lex_state = 13}, - [884] = {.lex_state = 93, .external_lex_state = 13}, - [885] = {.lex_state = 15, .external_lex_state = 13}, - [886] = {.lex_state = 114, .external_lex_state = 13}, - [887] = {.lex_state = 15, .external_lex_state = 13}, - [888] = {.lex_state = 15, .external_lex_state = 13}, - [889] = {.lex_state = 15, .external_lex_state = 13}, - [890] = {.lex_state = 15, .external_lex_state = 13}, - [891] = {.lex_state = 15, .external_lex_state = 13}, - [892] = {.lex_state = 114, .external_lex_state = 13}, - [893] = {.lex_state = 114, .external_lex_state = 13}, - [894] = {.lex_state = 52, .external_lex_state = 13}, - [895] = {.lex_state = 49, .external_lex_state = 14}, - [896] = {.lex_state = 158, .external_lex_state = 26}, - [897] = {.lex_state = 158, .external_lex_state = 26}, - [898] = {.lex_state = 58, .external_lex_state = 13}, - [899] = {.lex_state = 49, .external_lex_state = 14}, - [900] = {.lex_state = 58, .external_lex_state = 13}, - [901] = {.lex_state = 49, .external_lex_state = 14}, - [902] = {.lex_state = 46, .external_lex_state = 13}, - [903] = {.lex_state = 49, .external_lex_state = 14}, - [904] = {.lex_state = 49, .external_lex_state = 14}, - [905] = {.lex_state = 49, .external_lex_state = 14}, - [906] = {.lex_state = 114, .external_lex_state = 13}, - [907] = {.lex_state = 15, .external_lex_state = 13}, - [908] = {.lex_state = 58, .external_lex_state = 13}, - [909] = {.lex_state = 58, .external_lex_state = 13}, - [910] = {.lex_state = 58, .external_lex_state = 13}, - [911] = {.lex_state = 15, .external_lex_state = 13}, - [912] = {.lex_state = 15, .external_lex_state = 13}, - [913] = {.lex_state = 46, .external_lex_state = 13}, - [914] = {.lex_state = 46, .external_lex_state = 13}, - [915] = {.lex_state = 49, .external_lex_state = 14}, - [916] = {.lex_state = 49, .external_lex_state = 14}, - [917] = {.lex_state = 15, .external_lex_state = 13}, - [918] = {.lex_state = 114, .external_lex_state = 13}, - [919] = {.lex_state = 15, .external_lex_state = 13}, - [920] = {.lex_state = 58, .external_lex_state = 13}, - [921] = {.lex_state = 15, .external_lex_state = 13}, - [922] = {.lex_state = 114, .external_lex_state = 13}, - [923] = {.lex_state = 15, .external_lex_state = 13}, - [924] = {.lex_state = 23, .external_lex_state = 13}, - [925] = {.lex_state = 58, .external_lex_state = 13}, - [926] = {.lex_state = 58, .external_lex_state = 13}, - [927] = {.lex_state = 58, .external_lex_state = 13}, - [928] = {.lex_state = 58, .external_lex_state = 13}, - [929] = {.lex_state = 58, .external_lex_state = 13}, - [930] = {.lex_state = 58, .external_lex_state = 13}, - [931] = {.lex_state = 58, .external_lex_state = 13}, - [932] = {.lex_state = 23, .external_lex_state = 13}, - [933] = {.lex_state = 2, .external_lex_state = 10}, - [934] = {.lex_state = 100, .external_lex_state = 13}, - [935] = {.lex_state = 100, .external_lex_state = 13}, - [936] = {.lex_state = 114, .external_lex_state = 13}, - [937] = {.lex_state = 114, .external_lex_state = 13}, - [938] = {.lex_state = 125, .external_lex_state = 13}, - [939] = {.lex_state = 125, .external_lex_state = 13}, - [940] = {.lex_state = 54, .external_lex_state = 13}, - [941] = {.lex_state = 54, .external_lex_state = 13}, - [942] = {.lex_state = 58, .external_lex_state = 13}, - [943] = {.lex_state = 58, .external_lex_state = 13}, - [944] = {.lex_state = 15, .external_lex_state = 13}, - [945] = {.lex_state = 15, .external_lex_state = 13}, - [946] = {.lex_state = 95, .external_lex_state = 13}, - [947] = {.lex_state = 95, .external_lex_state = 13}, - [948] = {.lex_state = 98, .external_lex_state = 13}, - [949] = {.lex_state = 49, .external_lex_state = 28}, - [950] = {.lex_state = 2, .external_lex_state = 10}, - [951] = {.lex_state = 49, .external_lex_state = 28}, - [952] = {.lex_state = 125, .external_lex_state = 13}, - [953] = {.lex_state = 125, .external_lex_state = 13}, - [954] = {.lex_state = 125, .external_lex_state = 13}, - [955] = {.lex_state = 125, .external_lex_state = 13}, - [956] = {.lex_state = 125, .external_lex_state = 13}, - [957] = {.lex_state = 125, .external_lex_state = 13}, - [958] = {.lex_state = 2, .external_lex_state = 9}, - [959] = {.lex_state = 125, .external_lex_state = 13}, - [960] = {.lex_state = 125, .external_lex_state = 13}, - [961] = {.lex_state = 125, .external_lex_state = 13}, - [962] = {.lex_state = 125, .external_lex_state = 13}, - [963] = {.lex_state = 125, .external_lex_state = 13}, - [964] = {.lex_state = 58, .external_lex_state = 13}, - [965] = {.lex_state = 58, .external_lex_state = 13}, - [966] = {.lex_state = 58, .external_lex_state = 13}, - [967] = {.lex_state = 58, .external_lex_state = 13}, - [968] = {.lex_state = 58, .external_lex_state = 13}, - [969] = {.lex_state = 58, .external_lex_state = 13}, - [970] = {.lex_state = 58, .external_lex_state = 13}, - [971] = {.lex_state = 125, .external_lex_state = 13}, - [972] = {.lex_state = 58, .external_lex_state = 13}, - [973] = {.lex_state = 58, .external_lex_state = 13}, - [974] = {.lex_state = 58, .external_lex_state = 13}, - [975] = {.lex_state = 58, .external_lex_state = 13}, - [976] = {.lex_state = 125, .external_lex_state = 13}, - [977] = {.lex_state = 125, .external_lex_state = 13}, - [978] = {.lex_state = 125, .external_lex_state = 13}, - [979] = {.lex_state = 58, .external_lex_state = 13}, - [980] = {.lex_state = 58, .external_lex_state = 13}, - [981] = {.lex_state = 125, .external_lex_state = 13}, - [982] = {.lex_state = 125, .external_lex_state = 13}, - [983] = {.lex_state = 125, .external_lex_state = 13}, - [984] = {.lex_state = 58, .external_lex_state = 13}, - [985] = {.lex_state = 49, .external_lex_state = 14}, - [986] = {.lex_state = 58, .external_lex_state = 13}, - [987] = {.lex_state = 15, .external_lex_state = 13}, - [988] = {.lex_state = 49, .external_lex_state = 14}, - [989] = {.lex_state = 58, .external_lex_state = 13}, - [990] = {.lex_state = 58, .external_lex_state = 13}, - [991] = {.lex_state = 15, .external_lex_state = 13}, - [992] = {.lex_state = 15, .external_lex_state = 13}, - [993] = {.lex_state = 49, .external_lex_state = 13}, - [994] = {.lex_state = 125, .external_lex_state = 13}, - [995] = {.lex_state = 125, .external_lex_state = 13}, - [996] = {.lex_state = 125, .external_lex_state = 13}, - [997] = {.lex_state = 125, .external_lex_state = 13}, - [998] = {.lex_state = 125, .external_lex_state = 13}, - [999] = {.lex_state = 125, .external_lex_state = 13}, - [1000] = {.lex_state = 125, .external_lex_state = 13}, - [1001] = {.lex_state = 15, .external_lex_state = 13}, - [1002] = {.lex_state = 58, .external_lex_state = 13}, - [1003] = {.lex_state = 49, .external_lex_state = 26}, - [1004] = {.lex_state = 125, .external_lex_state = 13}, - [1005] = {.lex_state = 46, .external_lex_state = 13}, - [1006] = {.lex_state = 46, .external_lex_state = 13}, - [1007] = {.lex_state = 46, .external_lex_state = 13}, - [1008] = {.lex_state = 46, .external_lex_state = 13}, - [1009] = {.lex_state = 15, .external_lex_state = 13}, - [1010] = {.lex_state = 125, .external_lex_state = 13}, - [1011] = {.lex_state = 131, .external_lex_state = 13}, - [1012] = {.lex_state = 2, .external_lex_state = 10}, - [1013] = {.lex_state = 49, .external_lex_state = 13}, - [1014] = {.lex_state = 123, .external_lex_state = 13}, - [1015] = {.lex_state = 2, .external_lex_state = 10}, - [1016] = {.lex_state = 125, .external_lex_state = 13}, - [1017] = {.lex_state = 125, .external_lex_state = 13}, - [1018] = {.lex_state = 54, .external_lex_state = 13}, - [1019] = {.lex_state = 46, .external_lex_state = 13}, - [1020] = {.lex_state = 54, .external_lex_state = 13}, - [1021] = {.lex_state = 46, .external_lex_state = 13}, - [1022] = {.lex_state = 46, .external_lex_state = 13}, - [1023] = {.lex_state = 46, .external_lex_state = 13}, - [1024] = {.lex_state = 49, .external_lex_state = 14}, - [1025] = {.lex_state = 46, .external_lex_state = 13}, - [1026] = {.lex_state = 46, .external_lex_state = 13}, - [1027] = {.lex_state = 46, .external_lex_state = 13}, - [1028] = {.lex_state = 54, .external_lex_state = 13}, - [1029] = {.lex_state = 54, .external_lex_state = 13}, - [1030] = {.lex_state = 54, .external_lex_state = 13}, - [1031] = {.lex_state = 46, .external_lex_state = 13}, - [1032] = {.lex_state = 49, .external_lex_state = 14}, - [1033] = {.lex_state = 46, .external_lex_state = 13}, - [1034] = {.lex_state = 46, .external_lex_state = 13}, - [1035] = {.lex_state = 46, .external_lex_state = 13}, - [1036] = {.lex_state = 46, .external_lex_state = 13}, - [1037] = {.lex_state = 54, .external_lex_state = 13}, - [1038] = {.lex_state = 46, .external_lex_state = 13}, - [1039] = {.lex_state = 54, .external_lex_state = 13}, - [1040] = {.lex_state = 54, .external_lex_state = 13}, - [1041] = {.lex_state = 54, .external_lex_state = 13}, - [1042] = {.lex_state = 54, .external_lex_state = 13}, - [1043] = {.lex_state = 54, .external_lex_state = 13}, - [1044] = {.lex_state = 54, .external_lex_state = 13}, - [1045] = {.lex_state = 54, .external_lex_state = 13}, - [1046] = {.lex_state = 46, .external_lex_state = 13}, - [1047] = {.lex_state = 46, .external_lex_state = 13}, - [1048] = {.lex_state = 46, .external_lex_state = 13}, - [1049] = {.lex_state = 46, .external_lex_state = 13}, - [1050] = {.lex_state = 46, .external_lex_state = 13}, - [1051] = {.lex_state = 54, .external_lex_state = 13}, - [1052] = {.lex_state = 54, .external_lex_state = 13}, - [1053] = {.lex_state = 54, .external_lex_state = 13}, - [1054] = {.lex_state = 54, .external_lex_state = 13}, - [1055] = {.lex_state = 54, .external_lex_state = 13}, - [1056] = {.lex_state = 54, .external_lex_state = 13}, - [1057] = {.lex_state = 54, .external_lex_state = 13}, - [1058] = {.lex_state = 54, .external_lex_state = 13}, - [1059] = {.lex_state = 54, .external_lex_state = 13}, - [1060] = {.lex_state = 54, .external_lex_state = 13}, - [1061] = {.lex_state = 54, .external_lex_state = 13}, - [1062] = {.lex_state = 46, .external_lex_state = 13}, - [1063] = {.lex_state = 54, .external_lex_state = 13}, - [1064] = {.lex_state = 54, .external_lex_state = 13}, - [1065] = {.lex_state = 54, .external_lex_state = 13}, - [1066] = {.lex_state = 54, .external_lex_state = 13}, - [1067] = {.lex_state = 54, .external_lex_state = 13}, - [1068] = {.lex_state = 54, .external_lex_state = 13}, - [1069] = {.lex_state = 54, .external_lex_state = 13}, - [1070] = {.lex_state = 49, .external_lex_state = 14}, - [1071] = {.lex_state = 112, .external_lex_state = 13}, - [1072] = {.lex_state = 46, .external_lex_state = 13}, - [1073] = {.lex_state = 46, .external_lex_state = 13}, - [1074] = {.lex_state = 46, .external_lex_state = 13}, - [1075] = {.lex_state = 125, .external_lex_state = 13}, - [1076] = {.lex_state = 46, .external_lex_state = 13}, - [1077] = {.lex_state = 125, .external_lex_state = 13}, - [1078] = {.lex_state = 46, .external_lex_state = 13}, - [1079] = {.lex_state = 46, .external_lex_state = 13}, - [1080] = {.lex_state = 46, .external_lex_state = 13}, - [1081] = {.lex_state = 49, .external_lex_state = 13}, - [1082] = {.lex_state = 158, .external_lex_state = 14}, - [1083] = {.lex_state = 52, .external_lex_state = 13}, - [1084] = {.lex_state = 45, .external_lex_state = 13}, - [1085] = {.lex_state = 52, .external_lex_state = 13}, - [1086] = {.lex_state = 93, .external_lex_state = 13}, - [1087] = {.lex_state = 49, .external_lex_state = 13}, - [1088] = {.lex_state = 123, .external_lex_state = 13}, - [1089] = {.lex_state = 158, .external_lex_state = 14}, - [1090] = {.lex_state = 22, .external_lex_state = 13}, - [1091] = {.lex_state = 49, .external_lex_state = 13}, - [1092] = {.lex_state = 22, .external_lex_state = 13}, - [1093] = {.lex_state = 49, .external_lex_state = 13}, - [1094] = {.lex_state = 49, .external_lex_state = 13}, - [1095] = {.lex_state = 112, .external_lex_state = 13}, - [1096] = {.lex_state = 22, .external_lex_state = 13}, - [1097] = {.lex_state = 49, .external_lex_state = 13}, - [1098] = {.lex_state = 49, .external_lex_state = 13}, - [1099] = {.lex_state = 123, .external_lex_state = 13}, - [1100] = {.lex_state = 22, .external_lex_state = 13}, - [1101] = {.lex_state = 49, .external_lex_state = 13}, - [1102] = {.lex_state = 49, .external_lex_state = 13}, - [1103] = {.lex_state = 49, .external_lex_state = 13}, - [1104] = {.lex_state = 49, .external_lex_state = 13}, - [1105] = {.lex_state = 49, .external_lex_state = 13}, - [1106] = {.lex_state = 49, .external_lex_state = 13}, - [1107] = {.lex_state = 49, .external_lex_state = 13}, - [1108] = {.lex_state = 45, .external_lex_state = 13}, - [1109] = {.lex_state = 93, .external_lex_state = 13}, - [1110] = {.lex_state = 49, .external_lex_state = 13}, - [1111] = {.lex_state = 49, .external_lex_state = 13}, - [1112] = {.lex_state = 123, .external_lex_state = 13}, - [1113] = {.lex_state = 56, .external_lex_state = 13}, - [1114] = {.lex_state = 49, .external_lex_state = 13}, - [1115] = {.lex_state = 49, .external_lex_state = 13}, - [1116] = {.lex_state = 49, .external_lex_state = 16}, - [1117] = {.lex_state = 49, .external_lex_state = 13}, - [1118] = {.lex_state = 49, .external_lex_state = 13}, - [1119] = {.lex_state = 49, .external_lex_state = 13}, - [1120] = {.lex_state = 49, .external_lex_state = 13}, - [1121] = {.lex_state = 56, .external_lex_state = 13}, - [1122] = {.lex_state = 49, .external_lex_state = 13}, - [1123] = {.lex_state = 49, .external_lex_state = 13}, - [1124] = {.lex_state = 14, .external_lex_state = 13}, - [1125] = {.lex_state = 49, .external_lex_state = 13}, - [1126] = {.lex_state = 49, .external_lex_state = 13}, - [1127] = {.lex_state = 49, .external_lex_state = 13}, - [1128] = {.lex_state = 123, .external_lex_state = 13}, - [1129] = {.lex_state = 45, .external_lex_state = 13}, - [1130] = {.lex_state = 49, .external_lex_state = 13}, - [1131] = {.lex_state = 49, .external_lex_state = 13}, - [1132] = {.lex_state = 49, .external_lex_state = 13}, - [1133] = {.lex_state = 22, .external_lex_state = 13}, - [1134] = {.lex_state = 49, .external_lex_state = 13}, - [1135] = {.lex_state = 14, .external_lex_state = 13}, - [1136] = {.lex_state = 14, .external_lex_state = 13}, - [1137] = {.lex_state = 131, .external_lex_state = 16}, - [1138] = {.lex_state = 14, .external_lex_state = 13}, - [1139] = {.lex_state = 56, .external_lex_state = 13}, - [1140] = {.lex_state = 49, .external_lex_state = 13}, - [1141] = {.lex_state = 52, .external_lex_state = 13}, - [1142] = {.lex_state = 49, .external_lex_state = 13}, - [1143] = {.lex_state = 158, .external_lex_state = 14}, - [1144] = {.lex_state = 56, .external_lex_state = 13}, - [1145] = {.lex_state = 98, .external_lex_state = 13}, - [1146] = {.lex_state = 49, .external_lex_state = 28}, - [1147] = {.lex_state = 49, .external_lex_state = 16}, - [1148] = {.lex_state = 49, .external_lex_state = 13}, - [1149] = {.lex_state = 49, .external_lex_state = 13}, - [1150] = {.lex_state = 93, .external_lex_state = 13}, - [1151] = {.lex_state = 98, .external_lex_state = 13}, - [1152] = {.lex_state = 98, .external_lex_state = 13}, - [1153] = {.lex_state = 22, .external_lex_state = 13}, - [1154] = {.lex_state = 45, .external_lex_state = 13}, - [1155] = {.lex_state = 98, .external_lex_state = 13}, - [1156] = {.lex_state = 14, .external_lex_state = 13}, - [1157] = {.lex_state = 158, .external_lex_state = 13}, - [1158] = {.lex_state = 158, .external_lex_state = 13}, - [1159] = {.lex_state = 112, .external_lex_state = 13}, - [1160] = {.lex_state = 52, .external_lex_state = 13}, - [1161] = {.lex_state = 112, .external_lex_state = 13}, - [1162] = {.lex_state = 158, .external_lex_state = 13}, - [1163] = {.lex_state = 112, .external_lex_state = 13}, - [1164] = {.lex_state = 158, .external_lex_state = 14}, - [1165] = {.lex_state = 14, .external_lex_state = 13}, - [1166] = {.lex_state = 93, .external_lex_state = 13}, - [1167] = {.lex_state = 49, .external_lex_state = 16}, - [1168] = {.lex_state = 158, .external_lex_state = 13}, - [1169] = {.lex_state = 158, .external_lex_state = 16}, - [1170] = {.lex_state = 158, .external_lex_state = 13}, - [1171] = {.lex_state = 49, .external_lex_state = 16}, - [1172] = {.lex_state = 49, .external_lex_state = 16}, - [1173] = {.lex_state = 49, .external_lex_state = 16}, - [1174] = {.lex_state = 49, .external_lex_state = 16}, - [1175] = {.lex_state = 49, .external_lex_state = 16}, - [1176] = {.lex_state = 49, .external_lex_state = 16}, - [1177] = {.lex_state = 49, .external_lex_state = 16}, - [1178] = {.lex_state = 49, .external_lex_state = 16}, - [1179] = {.lex_state = 49, .external_lex_state = 16}, - [1180] = {.lex_state = 49, .external_lex_state = 16}, - [1181] = {.lex_state = 158, .external_lex_state = 13}, - [1182] = {.lex_state = 49, .external_lex_state = 16}, - [1183] = {.lex_state = 158, .external_lex_state = 13}, - [1184] = {.lex_state = 49, .external_lex_state = 16}, - [1185] = {.lex_state = 49, .external_lex_state = 16}, - [1186] = {.lex_state = 49, .external_lex_state = 16}, - [1187] = {.lex_state = 49, .external_lex_state = 16}, - [1188] = {.lex_state = 49, .external_lex_state = 16}, - [1189] = {.lex_state = 49, .external_lex_state = 16}, - [1190] = {.lex_state = 49, .external_lex_state = 16}, - [1191] = {.lex_state = 49, .external_lex_state = 16}, - [1192] = {.lex_state = 49, .external_lex_state = 16}, - [1193] = {.lex_state = 49, .external_lex_state = 16}, - [1194] = {.lex_state = 49, .external_lex_state = 16}, - [1195] = {.lex_state = 49, .external_lex_state = 16}, - [1196] = {.lex_state = 49, .external_lex_state = 16}, - [1197] = {.lex_state = 49, .external_lex_state = 16}, - [1198] = {.lex_state = 49, .external_lex_state = 16}, - [1199] = {.lex_state = 49, .external_lex_state = 16}, - [1200] = {.lex_state = 49, .external_lex_state = 16}, - [1201] = {.lex_state = 49, .external_lex_state = 16}, - [1202] = {.lex_state = 49, .external_lex_state = 16}, - [1203] = {.lex_state = 158, .external_lex_state = 16}, - [1204] = {.lex_state = 158, .external_lex_state = 16}, - [1205] = {.lex_state = 158, .external_lex_state = 16}, - [1206] = {.lex_state = 0, .external_lex_state = 29}, - [1207] = {.lex_state = 83, .external_lex_state = 30}, - [1208] = {.lex_state = 83, .external_lex_state = 30}, - [1209] = {.lex_state = 83, .external_lex_state = 30}, - [1210] = {.lex_state = 0, .external_lex_state = 31}, - [1211] = {.lex_state = 83, .external_lex_state = 30}, - [1212] = {.lex_state = 83, .external_lex_state = 30}, - [1213] = {.lex_state = 83, .external_lex_state = 30}, - [1214] = {.lex_state = 83, .external_lex_state = 30}, - [1215] = {.lex_state = 83, .external_lex_state = 30}, - [1216] = {.lex_state = 83, .external_lex_state = 30}, - [1217] = {.lex_state = 83, .external_lex_state = 30}, - [1218] = {.lex_state = 83, .external_lex_state = 30}, - [1219] = {.lex_state = 83, .external_lex_state = 30}, - [1220] = {.lex_state = 83, .external_lex_state = 30}, - [1221] = {.lex_state = 83, .external_lex_state = 30}, - [1222] = {.lex_state = 83, .external_lex_state = 30}, - [1223] = {.lex_state = 83, .external_lex_state = 30}, - [1224] = {.lex_state = 83, .external_lex_state = 30}, - [1225] = {.lex_state = 83, .external_lex_state = 30}, - [1226] = {.lex_state = 83, .external_lex_state = 30}, - [1227] = {.lex_state = 83, .external_lex_state = 30}, - [1228] = {.lex_state = 83, .external_lex_state = 30}, - [1229] = {.lex_state = 83, .external_lex_state = 30}, - [1230] = {.lex_state = 83, .external_lex_state = 30}, - [1231] = {.lex_state = 83, .external_lex_state = 30}, - [1232] = {.lex_state = 83, .external_lex_state = 30}, - [1233] = {.lex_state = 83, .external_lex_state = 30}, - [1234] = {.lex_state = 83, .external_lex_state = 30}, - [1235] = {.lex_state = 83, .external_lex_state = 30}, - [1236] = {.lex_state = 83, .external_lex_state = 30}, - [1237] = {.lex_state = 83, .external_lex_state = 30}, - [1238] = {.lex_state = 83, .external_lex_state = 30}, - [1239] = {.lex_state = 83, .external_lex_state = 30}, - [1240] = {.lex_state = 83, .external_lex_state = 30}, - [1241] = {.lex_state = 83, .external_lex_state = 30}, - [1242] = {.lex_state = 83, .external_lex_state = 30}, - [1243] = {.lex_state = 83, .external_lex_state = 30}, - [1244] = {.lex_state = 83, .external_lex_state = 30}, - [1245] = {.lex_state = 83, .external_lex_state = 30}, - [1246] = {.lex_state = 83, .external_lex_state = 30}, - [1247] = {.lex_state = 83, .external_lex_state = 30}, - [1248] = {.lex_state = 83, .external_lex_state = 30}, - [1249] = {.lex_state = 83, .external_lex_state = 30}, - [1250] = {.lex_state = 83, .external_lex_state = 30}, - [1251] = {.lex_state = 83, .external_lex_state = 30}, - [1252] = {.lex_state = 83, .external_lex_state = 30}, - [1253] = {.lex_state = 83, .external_lex_state = 30}, - [1254] = {.lex_state = 83, .external_lex_state = 30}, - [1255] = {.lex_state = 83, .external_lex_state = 30}, - [1256] = {.lex_state = 83, .external_lex_state = 30}, - [1257] = {.lex_state = 83, .external_lex_state = 30}, - [1258] = {.lex_state = 83, .external_lex_state = 30}, - [1259] = {.lex_state = 83, .external_lex_state = 30}, - [1260] = {.lex_state = 83, .external_lex_state = 30}, - [1261] = {.lex_state = 0, .external_lex_state = 29}, - [1262] = {.lex_state = 83}, - [1263] = {.lex_state = 83}, - [1264] = {.lex_state = 83}, - [1265] = {.lex_state = 83}, - [1266] = {.lex_state = 83}, - [1267] = {.lex_state = 83}, - [1268] = {.lex_state = 0, .external_lex_state = 31}, - [1269] = {.lex_state = 0, .external_lex_state = 29}, - [1270] = {.lex_state = 190, .external_lex_state = 32}, - [1271] = {.lex_state = 190, .external_lex_state = 32}, - [1272] = {.lex_state = 190, .external_lex_state = 32}, - [1273] = {.lex_state = 190, .external_lex_state = 32}, - [1274] = {.lex_state = 190, .external_lex_state = 32}, - [1275] = {.lex_state = 0, .external_lex_state = 33}, - [1276] = {.lex_state = 0, .external_lex_state = 34}, - [1277] = {.lex_state = 190, .external_lex_state = 32}, - [1278] = {.lex_state = 0, .external_lex_state = 33}, - [1279] = {.lex_state = 190, .external_lex_state = 32}, - [1280] = {.lex_state = 0, .external_lex_state = 34}, - [1281] = {.lex_state = 0, .external_lex_state = 34}, - [1282] = {.lex_state = 190, .external_lex_state = 32}, - [1283] = {.lex_state = 190, .external_lex_state = 32}, - [1284] = {.lex_state = 190, .external_lex_state = 32}, - [1285] = {.lex_state = 190, .external_lex_state = 32}, - [1286] = {.lex_state = 190, .external_lex_state = 32}, - [1287] = {.lex_state = 190, .external_lex_state = 32}, - [1288] = {.lex_state = 0, .external_lex_state = 34}, - [1289] = {.lex_state = 190, .external_lex_state = 32}, - [1290] = {.lex_state = 0, .external_lex_state = 34}, - [1291] = {.lex_state = 0, .external_lex_state = 31}, - [1292] = {.lex_state = 190, .external_lex_state = 32}, - [1293] = {.lex_state = 0, .external_lex_state = 34}, - [1294] = {.lex_state = 0, .external_lex_state = 35}, - [1295] = {.lex_state = 83, .external_lex_state = 30}, - [1296] = {.lex_state = 83, .external_lex_state = 30}, - [1297] = {.lex_state = 0, .external_lex_state = 36}, - [1298] = {.lex_state = 83, .external_lex_state = 30}, - [1299] = {.lex_state = 83, .external_lex_state = 30}, - [1300] = {.lex_state = 83, .external_lex_state = 30}, - [1301] = {.lex_state = 0, .external_lex_state = 37}, - [1302] = {.lex_state = 190, .external_lex_state = 32}, - [1303] = {.lex_state = 0, .external_lex_state = 38}, - [1304] = {.lex_state = 83, .external_lex_state = 30}, - [1305] = {.lex_state = 0, .external_lex_state = 39}, - [1306] = {.lex_state = 0, .external_lex_state = 38}, - [1307] = {.lex_state = 0, .external_lex_state = 37}, - [1308] = {.lex_state = 0, .external_lex_state = 36}, - [1309] = {.lex_state = 0, .external_lex_state = 39}, - [1310] = {.lex_state = 83, .external_lex_state = 30}, - [1311] = {.lex_state = 83, .external_lex_state = 30}, - [1312] = {.lex_state = 0, .external_lex_state = 39}, - [1313] = {.lex_state = 0, .external_lex_state = 38}, - [1314] = {.lex_state = 0, .external_lex_state = 37}, - [1315] = {.lex_state = 0, .external_lex_state = 35}, - [1316] = {.lex_state = 0, .external_lex_state = 35}, - [1317] = {.lex_state = 0, .external_lex_state = 35}, - [1318] = {.lex_state = 0, .external_lex_state = 39}, - [1319] = {.lex_state = 0, .external_lex_state = 38}, - [1320] = {.lex_state = 0, .external_lex_state = 37}, - [1321] = {.lex_state = 0, .external_lex_state = 35}, - [1322] = {.lex_state = 0, .external_lex_state = 35}, - [1323] = {.lex_state = 0, .external_lex_state = 39}, - [1324] = {.lex_state = 0, .external_lex_state = 38}, - [1325] = {.lex_state = 83, .external_lex_state = 30}, - [1326] = {.lex_state = 0, .external_lex_state = 37}, - [1327] = {.lex_state = 190, .external_lex_state = 32}, - [1328] = {.lex_state = 0, .external_lex_state = 35}, - [1329] = {.lex_state = 0, .external_lex_state = 35}, - [1330] = {.lex_state = 0, .external_lex_state = 39}, - [1331] = {.lex_state = 0, .external_lex_state = 38}, - [1332] = {.lex_state = 0, .external_lex_state = 37}, - [1333] = {.lex_state = 0, .external_lex_state = 35}, - [1334] = {.lex_state = 0, .external_lex_state = 35}, - [1335] = {.lex_state = 0, .external_lex_state = 40}, - [1336] = {.lex_state = 0, .external_lex_state = 40}, - [1337] = {.lex_state = 0, .external_lex_state = 40}, - [1338] = {.lex_state = 0, .external_lex_state = 40}, - [1339] = {.lex_state = 0, .external_lex_state = 40}, - [1340] = {.lex_state = 0, .external_lex_state = 40}, - [1341] = {.lex_state = 0, .external_lex_state = 40}, - [1342] = {.lex_state = 0, .external_lex_state = 40}, - [1343] = {.lex_state = 0, .external_lex_state = 40}, - [1344] = {.lex_state = 0, .external_lex_state = 40}, - [1345] = {.lex_state = 0, .external_lex_state = 40}, - [1346] = {.lex_state = 83}, - [1347] = {.lex_state = 0, .external_lex_state = 40}, - [1348] = {.lex_state = 0, .external_lex_state = 40}, - [1349] = {.lex_state = 83}, - [1350] = {.lex_state = 0, .external_lex_state = 40}, - [1351] = {.lex_state = 0, .external_lex_state = 40}, - [1352] = {.lex_state = 0, .external_lex_state = 40}, - [1353] = {.lex_state = 83}, - [1354] = {.lex_state = 0, .external_lex_state = 40}, - [1355] = {.lex_state = 0, .external_lex_state = 40}, - [1356] = {.lex_state = 0, .external_lex_state = 40}, - [1357] = {.lex_state = 83}, - [1358] = {.lex_state = 83}, - [1359] = {.lex_state = 0, .external_lex_state = 40}, - [1360] = {.lex_state = 0, .external_lex_state = 40}, - [1361] = {.lex_state = 0, .external_lex_state = 40}, - [1362] = {.lex_state = 0, .external_lex_state = 40}, - [1363] = {.lex_state = 0, .external_lex_state = 40}, - [1364] = {.lex_state = 0, .external_lex_state = 40}, - [1365] = {.lex_state = 0, .external_lex_state = 40}, - [1366] = {.lex_state = 0, .external_lex_state = 40}, - [1367] = {.lex_state = 0, .external_lex_state = 40}, - [1368] = {.lex_state = 0, .external_lex_state = 40}, - [1369] = {.lex_state = 0, .external_lex_state = 40}, - [1370] = {.lex_state = 0, .external_lex_state = 40}, - [1371] = {.lex_state = 0, .external_lex_state = 40}, - [1372] = {.lex_state = 0, .external_lex_state = 40}, - [1373] = {.lex_state = 0, .external_lex_state = 29}, - [1374] = {.lex_state = 0, .external_lex_state = 40}, - [1375] = {.lex_state = 0, .external_lex_state = 40}, - [1376] = {.lex_state = 0, .external_lex_state = 40}, - [1377] = {.lex_state = 0, .external_lex_state = 29}, - [1378] = {.lex_state = 83}, - [1379] = {.lex_state = 0, .external_lex_state = 40}, - [1380] = {.lex_state = 83}, - [1381] = {.lex_state = 0, .external_lex_state = 40}, - [1382] = {.lex_state = 0, .external_lex_state = 40}, - [1383] = {.lex_state = 0, .external_lex_state = 40}, - [1384] = {.lex_state = 0, .external_lex_state = 29}, - [1385] = {.lex_state = 0, .external_lex_state = 29}, - [1386] = {.lex_state = 0, .external_lex_state = 41}, - [1387] = {.lex_state = 83}, - [1388] = {.lex_state = 0, .external_lex_state = 41}, - [1389] = {.lex_state = 83}, - [1390] = {.lex_state = 0, .external_lex_state = 41}, - [1391] = {.lex_state = 0, .external_lex_state = 40}, - [1392] = {.lex_state = 83}, - [1393] = {.lex_state = 0, .external_lex_state = 29}, - [1394] = {.lex_state = 0, .external_lex_state = 29}, - [1395] = {.lex_state = 0, .external_lex_state = 41}, - [1396] = {.lex_state = 83}, - [1397] = {.lex_state = 83}, - [1398] = {.lex_state = 0, .external_lex_state = 41}, - [1399] = {.lex_state = 0, .external_lex_state = 29}, - [1400] = {.lex_state = 83}, - [1401] = {.lex_state = 0, .external_lex_state = 31}, - [1402] = {.lex_state = 0, .external_lex_state = 42}, - [1403] = {.lex_state = 83}, - [1404] = {.lex_state = 83}, - [1405] = {.lex_state = 83}, - [1406] = {.lex_state = 85, .external_lex_state = 30}, - [1407] = {.lex_state = 83}, - [1408] = {.lex_state = 0, .external_lex_state = 31}, - [1409] = {.lex_state = 0, .external_lex_state = 31}, - [1410] = {.lex_state = 83}, - [1411] = {.lex_state = 83}, - [1412] = {.lex_state = 83}, - [1413] = {.lex_state = 83}, - [1414] = {.lex_state = 83}, - [1415] = {.lex_state = 83}, - [1416] = {.lex_state = 83}, - [1417] = {.lex_state = 83}, - [1418] = {.lex_state = 83}, - [1419] = {.lex_state = 83}, - [1420] = {.lex_state = 85, .external_lex_state = 30}, - [1421] = {.lex_state = 83}, - [1422] = {.lex_state = 83}, - [1423] = {.lex_state = 83}, - [1424] = {.lex_state = 83}, - [1425] = {.lex_state = 83}, - [1426] = {.lex_state = 83}, - [1427] = {.lex_state = 83}, - [1428] = {.lex_state = 83}, - [1429] = {.lex_state = 0, .external_lex_state = 31}, - [1430] = {.lex_state = 83}, - [1431] = {.lex_state = 0, .external_lex_state = 32}, - [1432] = {.lex_state = 0, .external_lex_state = 32}, - [1433] = {.lex_state = 85, .external_lex_state = 30}, - [1434] = {.lex_state = 83}, - [1435] = {.lex_state = 0, .external_lex_state = 31}, - [1436] = {.lex_state = 83}, - [1437] = {.lex_state = 83}, - [1438] = {.lex_state = 83}, - [1439] = {.lex_state = 83}, - [1440] = {.lex_state = 83}, - [1441] = {.lex_state = 85, .external_lex_state = 30}, - [1442] = {.lex_state = 83}, - [1443] = {.lex_state = 83}, - [1444] = {.lex_state = 83}, - [1445] = {.lex_state = 83}, - [1446] = {.lex_state = 85, .external_lex_state = 30}, - [1447] = {.lex_state = 83}, - [1448] = {.lex_state = 83}, - [1449] = {.lex_state = 83}, - [1450] = {.lex_state = 83}, - [1451] = {.lex_state = 83}, - [1452] = {.lex_state = 0, .external_lex_state = 31}, - [1453] = {.lex_state = 83}, - [1454] = {.lex_state = 0, .external_lex_state = 31}, - [1455] = {.lex_state = 0, .external_lex_state = 32}, - [1456] = {.lex_state = 0, .external_lex_state = 43}, - [1457] = {.lex_state = 0, .external_lex_state = 43}, - [1458] = {.lex_state = 86, .external_lex_state = 30}, - [1459] = {.lex_state = 0, .external_lex_state = 44}, - [1460] = {.lex_state = 0, .external_lex_state = 45}, - [1461] = {.lex_state = 0, .external_lex_state = 46}, - [1462] = {.lex_state = 0, .external_lex_state = 47}, - [1463] = {.lex_state = 0, .external_lex_state = 48}, - [1464] = {.lex_state = 0, .external_lex_state = 49}, - [1465] = {.lex_state = 0, .external_lex_state = 50}, - [1466] = {.lex_state = 0, .external_lex_state = 51}, - [1467] = {.lex_state = 0, .external_lex_state = 52}, - [1468] = {.lex_state = 86, .external_lex_state = 30}, - [1469] = {.lex_state = 0, .external_lex_state = 53}, - [1470] = {.lex_state = 0, .external_lex_state = 52}, - [1471] = {.lex_state = 0, .external_lex_state = 43}, - [1472] = {.lex_state = 0, .external_lex_state = 52}, - [1473] = {.lex_state = 0, .external_lex_state = 52}, - [1474] = {.lex_state = 0, .external_lex_state = 54}, - [1475] = {.lex_state = 0, .external_lex_state = 52}, - [1476] = {.lex_state = 0, .external_lex_state = 54}, - [1477] = {.lex_state = 86, .external_lex_state = 30}, - [1478] = {.lex_state = 0, .external_lex_state = 43}, - [1479] = {.lex_state = 0, .external_lex_state = 53}, - [1480] = {.lex_state = 190}, - [1481] = {.lex_state = 0, .external_lex_state = 51}, - [1482] = {.lex_state = 0, .external_lex_state = 50}, - [1483] = {.lex_state = 0, .external_lex_state = 49}, - [1484] = {.lex_state = 0, .external_lex_state = 48}, - [1485] = {.lex_state = 0, .external_lex_state = 54}, - [1486] = {.lex_state = 0, .external_lex_state = 47}, - [1487] = {.lex_state = 0, .external_lex_state = 46}, - [1488] = {.lex_state = 0, .external_lex_state = 45}, - [1489] = {.lex_state = 0, .external_lex_state = 55}, - [1490] = {.lex_state = 86, .external_lex_state = 30}, - [1491] = {.lex_state = 0, .external_lex_state = 44}, - [1492] = {.lex_state = 0, .external_lex_state = 50}, - [1493] = {.lex_state = 0, .external_lex_state = 53}, - [1494] = {.lex_state = 0, .external_lex_state = 51}, - [1495] = {.lex_state = 0, .external_lex_state = 56}, - [1496] = {.lex_state = 0, .external_lex_state = 57}, - [1497] = {.lex_state = 0, .external_lex_state = 58}, - [1498] = {.lex_state = 0, .external_lex_state = 51}, - [1499] = {.lex_state = 0, .external_lex_state = 50}, - [1500] = {.lex_state = 86, .external_lex_state = 30}, - [1501] = {.lex_state = 0, .external_lex_state = 59}, - [1502] = {.lex_state = 0, .external_lex_state = 60}, - [1503] = {.lex_state = 0, .external_lex_state = 60}, - [1504] = {.lex_state = 0, .external_lex_state = 49}, - [1505] = {.lex_state = 0, .external_lex_state = 48}, - [1506] = {.lex_state = 0, .external_lex_state = 57}, - [1507] = {.lex_state = 0, .external_lex_state = 58}, - [1508] = {.lex_state = 0, .external_lex_state = 59}, - [1509] = {.lex_state = 0, .external_lex_state = 60}, - [1510] = {.lex_state = 0, .external_lex_state = 47}, - [1511] = {.lex_state = 0, .external_lex_state = 46}, - [1512] = {.lex_state = 85}, - [1513] = {.lex_state = 0, .external_lex_state = 61}, - [1514] = {.lex_state = 85}, - [1515] = {.lex_state = 0, .external_lex_state = 52}, - [1516] = {.lex_state = 0, .external_lex_state = 45}, - [1517] = {.lex_state = 0, .external_lex_state = 44}, - [1518] = {.lex_state = 0, .external_lex_state = 54}, - [1519] = {.lex_state = 0, .external_lex_state = 56}, - [1520] = {.lex_state = 0, .external_lex_state = 56}, - [1521] = {.lex_state = 0, .external_lex_state = 57}, - [1522] = {.lex_state = 0, .external_lex_state = 54}, - [1523] = {.lex_state = 0, .external_lex_state = 53}, - [1524] = {.lex_state = 0, .external_lex_state = 58}, - [1525] = {.lex_state = 0, .external_lex_state = 59}, - [1526] = {.lex_state = 0, .external_lex_state = 51}, - [1527] = {.lex_state = 0, .external_lex_state = 55}, - [1528] = {.lex_state = 0, .external_lex_state = 60}, - [1529] = {.lex_state = 0, .external_lex_state = 55}, - [1530] = {.lex_state = 0, .external_lex_state = 50}, - [1531] = {.lex_state = 0, .external_lex_state = 49}, - [1532] = {.lex_state = 85, .external_lex_state = 30}, - [1533] = {.lex_state = 0, .external_lex_state = 43}, - [1534] = {.lex_state = 0, .external_lex_state = 61}, - [1535] = {.lex_state = 0, .external_lex_state = 53}, - [1536] = {.lex_state = 190, .external_lex_state = 62}, - [1537] = {.lex_state = 0, .external_lex_state = 50}, - [1538] = {.lex_state = 0, .external_lex_state = 61}, - [1539] = {.lex_state = 0, .external_lex_state = 49}, - [1540] = {.lex_state = 0, .external_lex_state = 63}, - [1541] = {.lex_state = 0, .external_lex_state = 48}, - [1542] = {.lex_state = 0, .external_lex_state = 48}, - [1543] = {.lex_state = 0, .external_lex_state = 47}, - [1544] = {.lex_state = 0, .external_lex_state = 46}, - [1545] = {.lex_state = 0, .external_lex_state = 45}, - [1546] = {.lex_state = 0, .external_lex_state = 64}, - [1547] = {.lex_state = 0, .external_lex_state = 55}, - [1548] = {.lex_state = 0, .external_lex_state = 47}, - [1549] = {.lex_state = 0, .external_lex_state = 61}, - [1550] = {.lex_state = 0, .external_lex_state = 61}, - [1551] = {.lex_state = 0, .external_lex_state = 46}, - [1552] = {.lex_state = 190}, - [1553] = {.lex_state = 0, .external_lex_state = 44}, - [1554] = {.lex_state = 0, .external_lex_state = 56}, - [1555] = {.lex_state = 0, .external_lex_state = 57}, - [1556] = {.lex_state = 0, .external_lex_state = 51}, - [1557] = {.lex_state = 0, .external_lex_state = 53}, - [1558] = {.lex_state = 0, .external_lex_state = 43}, - [1559] = {.lex_state = 0, .external_lex_state = 54}, - [1560] = {.lex_state = 0, .external_lex_state = 58}, - [1561] = {.lex_state = 0, .external_lex_state = 45}, - [1562] = {.lex_state = 0, .external_lex_state = 59}, - [1563] = {.lex_state = 0, .external_lex_state = 44}, - [1564] = {.lex_state = 190, .external_lex_state = 62}, - [1565] = {.lex_state = 0, .external_lex_state = 60}, - [1566] = {.lex_state = 0, .external_lex_state = 56}, - [1567] = {.lex_state = 85}, - [1568] = {.lex_state = 0, .external_lex_state = 57}, - [1569] = {.lex_state = 0, .external_lex_state = 58}, - [1570] = {.lex_state = 0, .external_lex_state = 59}, - [1571] = {.lex_state = 0, .external_lex_state = 60}, - [1572] = {.lex_state = 0, .external_lex_state = 59}, - [1573] = {.lex_state = 0, .external_lex_state = 58}, - [1574] = {.lex_state = 0, .external_lex_state = 57}, - [1575] = {.lex_state = 0, .external_lex_state = 56}, - [1576] = {.lex_state = 0, .external_lex_state = 44}, - [1577] = {.lex_state = 0, .external_lex_state = 45}, - [1578] = {.lex_state = 0, .external_lex_state = 46}, - [1579] = {.lex_state = 0, .external_lex_state = 47}, - [1580] = {.lex_state = 0, .external_lex_state = 48}, - [1581] = {.lex_state = 0, .external_lex_state = 49}, - [1582] = {.lex_state = 0, .external_lex_state = 65}, - [1583] = {.lex_state = 0}, - [1584] = {.lex_state = 13}, - [1585] = {.lex_state = 0, .external_lex_state = 40}, - [1586] = {.lex_state = 0, .external_lex_state = 40}, - [1587] = {.lex_state = 85}, - [1588] = {.lex_state = 0, .external_lex_state = 38}, - [1589] = {.lex_state = 0, .external_lex_state = 30}, - [1590] = {.lex_state = 0}, - [1591] = {.lex_state = 87}, - [1592] = {.lex_state = 13}, - [1593] = {.lex_state = 0, .external_lex_state = 66}, - [1594] = {.lex_state = 0, .external_lex_state = 66}, - [1595] = {.lex_state = 0}, - [1596] = {.lex_state = 13}, - [1597] = {.lex_state = 0, .external_lex_state = 66}, - [1598] = {.lex_state = 0, .external_lex_state = 40}, - [1599] = {.lex_state = 0, .external_lex_state = 67}, - [1600] = {.lex_state = 0, .external_lex_state = 66}, - [1601] = {.lex_state = 0, .external_lex_state = 39}, - [1602] = {.lex_state = 0}, - [1603] = {.lex_state = 13}, - [1604] = {.lex_state = 0, .external_lex_state = 66}, - [1605] = {.lex_state = 0, .external_lex_state = 68}, - [1606] = {.lex_state = 190, .external_lex_state = 32}, - [1607] = {.lex_state = 0, .external_lex_state = 69}, - [1608] = {.lex_state = 0, .external_lex_state = 70}, - [1609] = {.lex_state = 0}, - [1610] = {.lex_state = 13}, - [1611] = {.lex_state = 0}, - [1612] = {.lex_state = 0, .external_lex_state = 40}, - [1613] = {.lex_state = 13}, - [1614] = {.lex_state = 0, .external_lex_state = 66}, - [1615] = {.lex_state = 190, .external_lex_state = 67}, - [1616] = {.lex_state = 87}, - [1617] = {.lex_state = 190, .external_lex_state = 67}, - [1618] = {.lex_state = 83}, - [1619] = {.lex_state = 0, .external_lex_state = 40}, - [1620] = {.lex_state = 0, .external_lex_state = 70}, - [1621] = {.lex_state = 0, .external_lex_state = 67}, - [1622] = {.lex_state = 0}, - [1623] = {.lex_state = 13}, - [1624] = {.lex_state = 0, .external_lex_state = 71}, - [1625] = {.lex_state = 0, .external_lex_state = 39}, - [1626] = {.lex_state = 83}, - [1627] = {.lex_state = 0, .external_lex_state = 40}, - [1628] = {.lex_state = 0, .external_lex_state = 37}, - [1629] = {.lex_state = 190, .external_lex_state = 32}, - [1630] = {.lex_state = 0, .external_lex_state = 40}, - [1631] = {.lex_state = 0, .external_lex_state = 40}, - [1632] = {.lex_state = 0, .external_lex_state = 38}, - [1633] = {.lex_state = 0}, - [1634] = {.lex_state = 13}, - [1635] = {.lex_state = 0, .external_lex_state = 40}, - [1636] = {.lex_state = 0, .external_lex_state = 72}, - [1637] = {.lex_state = 0, .external_lex_state = 73}, - [1638] = {.lex_state = 87}, - [1639] = {.lex_state = 0}, - [1640] = {.lex_state = 13}, - [1641] = {.lex_state = 0, .external_lex_state = 40}, - [1642] = {.lex_state = 0, .external_lex_state = 40}, - [1643] = {.lex_state = 0, .external_lex_state = 74}, - [1644] = {.lex_state = 0, .external_lex_state = 40}, - [1645] = {.lex_state = 0}, - [1646] = {.lex_state = 13}, - [1647] = {.lex_state = 0, .external_lex_state = 74}, - [1648] = {.lex_state = 0, .external_lex_state = 70}, - [1649] = {.lex_state = 0, .external_lex_state = 30}, - [1650] = {.lex_state = 0, .external_lex_state = 30}, - [1651] = {.lex_state = 0, .external_lex_state = 68}, - [1652] = {.lex_state = 0, .external_lex_state = 37}, - [1653] = {.lex_state = 0, .external_lex_state = 34}, - [1654] = {.lex_state = 0, .external_lex_state = 40}, - [1655] = {.lex_state = 0}, - [1656] = {.lex_state = 13}, - [1657] = {.lex_state = 0, .external_lex_state = 34}, - [1658] = {.lex_state = 0, .external_lex_state = 40}, - [1659] = {.lex_state = 0, .external_lex_state = 75}, - [1660] = {.lex_state = 0, .external_lex_state = 76}, - [1661] = {.lex_state = 0, .external_lex_state = 71}, - [1662] = {.lex_state = 0, .external_lex_state = 40}, - [1663] = {.lex_state = 0, .external_lex_state = 40}, - [1664] = {.lex_state = 0, .external_lex_state = 40}, - [1665] = {.lex_state = 0, .external_lex_state = 40}, - [1666] = {.lex_state = 0, .external_lex_state = 40}, - [1667] = {.lex_state = 0, .external_lex_state = 74}, - [1668] = {.lex_state = 0, .external_lex_state = 40}, - [1669] = {.lex_state = 0, .external_lex_state = 40}, - [1670] = {.lex_state = 0, .external_lex_state = 74}, - [1671] = {.lex_state = 88}, - [1672] = {.lex_state = 0, .external_lex_state = 40}, - [1673] = {.lex_state = 0, .external_lex_state = 38}, - [1674] = {.lex_state = 0, .external_lex_state = 34}, - [1675] = {.lex_state = 0, .external_lex_state = 37}, - [1676] = {.lex_state = 0, .external_lex_state = 39}, - [1677] = {.lex_state = 0, .external_lex_state = 40}, - [1678] = {.lex_state = 0, .external_lex_state = 37}, - [1679] = {.lex_state = 0, .external_lex_state = 72}, - [1680] = {.lex_state = 0, .external_lex_state = 65}, - [1681] = {.lex_state = 0, .external_lex_state = 69}, - [1682] = {.lex_state = 0, .external_lex_state = 40}, - [1683] = {.lex_state = 0, .external_lex_state = 75}, - [1684] = {.lex_state = 0, .external_lex_state = 40}, - [1685] = {.lex_state = 0, .external_lex_state = 40}, - [1686] = {.lex_state = 0, .external_lex_state = 40}, - [1687] = {.lex_state = 0, .external_lex_state = 40}, - [1688] = {.lex_state = 0, .external_lex_state = 40}, - [1689] = {.lex_state = 0, .external_lex_state = 40}, - [1690] = {.lex_state = 0, .external_lex_state = 40}, - [1691] = {.lex_state = 0, .external_lex_state = 40}, - [1692] = {.lex_state = 0, .external_lex_state = 77}, - [1693] = {.lex_state = 0, .external_lex_state = 70}, - [1694] = {.lex_state = 0, .external_lex_state = 40}, - [1695] = {.lex_state = 0, .external_lex_state = 40}, - [1696] = {.lex_state = 0, .external_lex_state = 40}, - [1697] = {.lex_state = 0, .external_lex_state = 40}, - [1698] = {.lex_state = 0, .external_lex_state = 40}, - [1699] = {.lex_state = 13}, - [1700] = {.lex_state = 0}, - [1701] = {.lex_state = 0, .external_lex_state = 30}, - [1702] = {.lex_state = 0, .external_lex_state = 76}, - [1703] = {.lex_state = 0, .external_lex_state = 40}, - [1704] = {.lex_state = 0, .external_lex_state = 40}, - [1705] = {.lex_state = 0}, - [1706] = {.lex_state = 13}, - [1707] = {.lex_state = 0, .external_lex_state = 40}, - [1708] = {.lex_state = 0, .external_lex_state = 40}, - [1709] = {.lex_state = 0, .external_lex_state = 40}, - [1710] = {.lex_state = 0, .external_lex_state = 40}, - [1711] = {.lex_state = 0, .external_lex_state = 77}, - [1712] = {.lex_state = 0, .external_lex_state = 69}, - [1713] = {.lex_state = 0, .external_lex_state = 40}, - [1714] = {.lex_state = 0, .external_lex_state = 40}, - [1715] = {.lex_state = 0, .external_lex_state = 40}, - [1716] = {.lex_state = 0, .external_lex_state = 65}, - [1717] = {.lex_state = 0, .external_lex_state = 40}, - [1718] = {.lex_state = 0, .external_lex_state = 39}, - [1719] = {.lex_state = 0, .external_lex_state = 40}, - [1720] = {.lex_state = 0, .external_lex_state = 40}, - [1721] = {.lex_state = 0, .external_lex_state = 30}, - [1722] = {.lex_state = 0, .external_lex_state = 78}, - [1723] = {.lex_state = 0, .external_lex_state = 75}, - [1724] = {.lex_state = 0, .external_lex_state = 78}, - [1725] = {.lex_state = 0, .external_lex_state = 34}, - [1726] = {.lex_state = 0, .external_lex_state = 38}, - [1727] = {.lex_state = 0, .external_lex_state = 74}, - [1728] = {.lex_state = 0, .external_lex_state = 77}, - [1729] = {.lex_state = 0}, - [1730] = {.lex_state = 0, .external_lex_state = 60}, - [1731] = {.lex_state = 0, .external_lex_state = 59}, - [1732] = {.lex_state = 158, .external_lex_state = 30}, - [1733] = {.lex_state = 0, .external_lex_state = 50}, - [1734] = {.lex_state = 83}, - [1735] = {.lex_state = 0, .external_lex_state = 75}, - [1736] = {.lex_state = 83}, - [1737] = {.lex_state = 0, .external_lex_state = 32}, - [1738] = {.lex_state = 0, .external_lex_state = 69}, - [1739] = {.lex_state = 0, .external_lex_state = 79}, - [1740] = {.lex_state = 0}, - [1741] = {.lex_state = 83}, - [1742] = {.lex_state = 44, .external_lex_state = 30}, - [1743] = {.lex_state = 0, .external_lex_state = 77}, - [1744] = {.lex_state = 0, .external_lex_state = 47}, - [1745] = {.lex_state = 0, .external_lex_state = 32}, - [1746] = {.lex_state = 83}, - [1747] = {.lex_state = 0, .external_lex_state = 44}, - [1748] = {.lex_state = 0, .external_lex_state = 58}, - [1749] = {.lex_state = 0, .external_lex_state = 32}, - [1750] = {.lex_state = 0, .external_lex_state = 32}, - [1751] = {.lex_state = 0}, - [1752] = {.lex_state = 0, .external_lex_state = 46}, - [1753] = {.lex_state = 0, .external_lex_state = 32}, - [1754] = {.lex_state = 44, .external_lex_state = 30}, - [1755] = {.lex_state = 0, .external_lex_state = 46}, - [1756] = {.lex_state = 0, .external_lex_state = 32}, - [1757] = {.lex_state = 0}, - [1758] = {.lex_state = 44, .external_lex_state = 30}, - [1759] = {.lex_state = 0, .external_lex_state = 79}, - [1760] = {.lex_state = 0}, - [1761] = {.lex_state = 0}, - [1762] = {.lex_state = 0}, - [1763] = {.lex_state = 0, .external_lex_state = 30}, - [1764] = {.lex_state = 0, .external_lex_state = 44}, - [1765] = {.lex_state = 0}, - [1766] = {.lex_state = 0, .external_lex_state = 32}, - [1767] = {.lex_state = 0, .external_lex_state = 50}, - [1768] = {.lex_state = 0}, - [1769] = {.lex_state = 0}, - [1770] = {.lex_state = 0}, - [1771] = {.lex_state = 0}, - [1772] = {.lex_state = 0}, - [1773] = {.lex_state = 0, .external_lex_state = 32}, - [1774] = {.lex_state = 0}, - [1775] = {.lex_state = 0}, - [1776] = {.lex_state = 0}, - [1777] = {.lex_state = 0}, - [1778] = {.lex_state = 0}, - [1779] = {.lex_state = 0}, - [1780] = {.lex_state = 0}, - [1781] = {.lex_state = 0}, - [1782] = {.lex_state = 0, .external_lex_state = 77}, - [1783] = {.lex_state = 0}, - [1784] = {.lex_state = 0, .external_lex_state = 32}, - [1785] = {.lex_state = 0, .external_lex_state = 43}, - [1786] = {.lex_state = 44, .external_lex_state = 30}, - [1787] = {.lex_state = 0, .external_lex_state = 32}, - [1788] = {.lex_state = 0}, - [1789] = {.lex_state = 0}, - [1790] = {.lex_state = 0, .external_lex_state = 32}, - [1791] = {.lex_state = 0, .external_lex_state = 32}, - [1792] = {.lex_state = 86, .external_lex_state = 30}, - [1793] = {.lex_state = 0, .external_lex_state = 32}, - [1794] = {.lex_state = 0, .external_lex_state = 30}, - [1795] = {.lex_state = 0}, - [1796] = {.lex_state = 0, .external_lex_state = 32}, - [1797] = {.lex_state = 0}, - [1798] = {.lex_state = 0}, - [1799] = {.lex_state = 0, .external_lex_state = 59}, - [1800] = {.lex_state = 0, .external_lex_state = 32}, - [1801] = {.lex_state = 0}, - [1802] = {.lex_state = 44, .external_lex_state = 30}, - [1803] = {.lex_state = 0}, - [1804] = {.lex_state = 0}, - [1805] = {.lex_state = 44, .external_lex_state = 30}, - [1806] = {.lex_state = 0}, - [1807] = {.lex_state = 0, .external_lex_state = 56}, - [1808] = {.lex_state = 0, .external_lex_state = 75}, - [1809] = {.lex_state = 0}, - [1810] = {.lex_state = 0, .external_lex_state = 32}, - [1811] = {.lex_state = 0}, - [1812] = {.lex_state = 44, .external_lex_state = 30}, - [1813] = {.lex_state = 0, .external_lex_state = 32}, - [1814] = {.lex_state = 0}, - [1815] = {.lex_state = 0, .external_lex_state = 43}, - [1816] = {.lex_state = 0, .external_lex_state = 49}, - [1817] = {.lex_state = 0, .external_lex_state = 56}, - [1818] = {.lex_state = 83}, - [1819] = {.lex_state = 0}, - [1820] = {.lex_state = 0, .external_lex_state = 57}, - [1821] = {.lex_state = 0, .external_lex_state = 79}, - [1822] = {.lex_state = 0, .external_lex_state = 32}, - [1823] = {.lex_state = 0}, - [1824] = {.lex_state = 0}, - [1825] = {.lex_state = 0, .external_lex_state = 57}, - [1826] = {.lex_state = 0}, - [1827] = {.lex_state = 0, .external_lex_state = 32}, - [1828] = {.lex_state = 0}, - [1829] = {.lex_state = 0}, - [1830] = {.lex_state = 0}, - [1831] = {.lex_state = 0}, - [1832] = {.lex_state = 0}, - [1833] = {.lex_state = 0}, - [1834] = {.lex_state = 0}, - [1835] = {.lex_state = 0, .external_lex_state = 45}, - [1836] = {.lex_state = 0, .external_lex_state = 79}, - [1837] = {.lex_state = 0}, - [1838] = {.lex_state = 0, .external_lex_state = 45}, - [1839] = {.lex_state = 0}, - [1840] = {.lex_state = 0}, - [1841] = {.lex_state = 0, .external_lex_state = 48}, - [1842] = {.lex_state = 0, .external_lex_state = 59}, - [1843] = {.lex_state = 0, .external_lex_state = 30}, - [1844] = {.lex_state = 0, .external_lex_state = 30}, - [1845] = {.lex_state = 0, .external_lex_state = 56}, - [1846] = {.lex_state = 0, .external_lex_state = 46}, - [1847] = {.lex_state = 0, .external_lex_state = 49}, - [1848] = {.lex_state = 0, .external_lex_state = 53}, - [1849] = {.lex_state = 0, .external_lex_state = 32}, - [1850] = {.lex_state = 0, .external_lex_state = 58}, - [1851] = {.lex_state = 0, .external_lex_state = 44}, - [1852] = {.lex_state = 0, .external_lex_state = 47}, - [1853] = {.lex_state = 0, .external_lex_state = 50}, - [1854] = {.lex_state = 0}, - [1855] = {.lex_state = 0}, - [1856] = {.lex_state = 0, .external_lex_state = 43}, - [1857] = {.lex_state = 0}, - [1858] = {.lex_state = 0}, - [1859] = {.lex_state = 0, .external_lex_state = 79}, - [1860] = {.lex_state = 0, .external_lex_state = 32}, - [1861] = {.lex_state = 0}, - [1862] = {.lex_state = 44, .external_lex_state = 30}, - [1863] = {.lex_state = 0}, - [1864] = {.lex_state = 0}, - [1865] = {.lex_state = 0}, - [1866] = {.lex_state = 0, .external_lex_state = 65}, - [1867] = {.lex_state = 0, .external_lex_state = 48}, - [1868] = {.lex_state = 0, .external_lex_state = 53}, - [1869] = {.lex_state = 0}, - [1870] = {.lex_state = 0, .external_lex_state = 45}, - [1871] = {.lex_state = 0, .external_lex_state = 48}, - [1872] = {.lex_state = 0, .external_lex_state = 47}, - [1873] = {.lex_state = 0, .external_lex_state = 51}, - [1874] = {.lex_state = 0, .external_lex_state = 51}, - [1875] = {.lex_state = 0, .external_lex_state = 32}, - [1876] = {.lex_state = 0, .external_lex_state = 32}, - [1877] = {.lex_state = 0}, - [1878] = {.lex_state = 44, .external_lex_state = 30}, - [1879] = {.lex_state = 83}, - [1880] = {.lex_state = 0}, - [1881] = {.lex_state = 0, .external_lex_state = 51}, - [1882] = {.lex_state = 0, .external_lex_state = 54}, - [1883] = {.lex_state = 190, .external_lex_state = 62}, - [1884] = {.lex_state = 0, .external_lex_state = 57}, - [1885] = {.lex_state = 0}, - [1886] = {.lex_state = 0, .external_lex_state = 32}, - [1887] = {.lex_state = 0, .external_lex_state = 54}, - [1888] = {.lex_state = 44, .external_lex_state = 30}, - [1889] = {.lex_state = 0, .external_lex_state = 32}, - [1890] = {.lex_state = 83}, - [1891] = {.lex_state = 0, .external_lex_state = 60}, - [1892] = {.lex_state = 0, .external_lex_state = 32}, - [1893] = {.lex_state = 0, .external_lex_state = 54}, - [1894] = {.lex_state = 0, .external_lex_state = 32}, - [1895] = {.lex_state = 0, .external_lex_state = 32}, - [1896] = {.lex_state = 0, .external_lex_state = 32}, - [1897] = {.lex_state = 0, .external_lex_state = 32}, - [1898] = {.lex_state = 0, .external_lex_state = 32}, - [1899] = {.lex_state = 44, .external_lex_state = 30}, - [1900] = {.lex_state = 0, .external_lex_state = 32}, - [1901] = {.lex_state = 0, .external_lex_state = 32}, - [1902] = {.lex_state = 0, .external_lex_state = 32}, - [1903] = {.lex_state = 0, .external_lex_state = 32}, - [1904] = {.lex_state = 0}, - [1905] = {.lex_state = 0, .external_lex_state = 32}, - [1906] = {.lex_state = 0}, - [1907] = {.lex_state = 0}, - [1908] = {.lex_state = 0, .external_lex_state = 32}, - [1909] = {.lex_state = 0}, - [1910] = {.lex_state = 44, .external_lex_state = 30}, - [1911] = {.lex_state = 0, .external_lex_state = 53}, - [1912] = {.lex_state = 190}, - [1913] = {.lex_state = 0, .external_lex_state = 32}, - [1914] = {.lex_state = 0, .external_lex_state = 32}, - [1915] = {.lex_state = 0, .external_lex_state = 32}, - [1916] = {.lex_state = 0}, - [1917] = {.lex_state = 87}, - [1918] = {.lex_state = 0, .external_lex_state = 32}, - [1919] = {.lex_state = 0, .external_lex_state = 58}, - [1920] = {.lex_state = 0, .external_lex_state = 32}, - [1921] = {.lex_state = 0, .external_lex_state = 65}, - [1922] = {.lex_state = 0, .external_lex_state = 79}, - [1923] = {.lex_state = 0, .external_lex_state = 79}, - [1924] = {.lex_state = 0, .external_lex_state = 32}, - [1925] = {.lex_state = 0}, - [1926] = {.lex_state = 0}, - [1927] = {.lex_state = 0, .external_lex_state = 49}, - [1928] = {.lex_state = 0, .external_lex_state = 30}, - [1929] = {.lex_state = 0}, - [1930] = {.lex_state = 0}, - [1931] = {.lex_state = 44, .external_lex_state = 30}, - [1932] = {.lex_state = 0}, - [1933] = {.lex_state = 0}, - [1934] = {.lex_state = 83}, - [1935] = {.lex_state = 0}, - [1936] = {.lex_state = 0, .external_lex_state = 32}, - [1937] = {.lex_state = 0}, - [1938] = {.lex_state = 0}, - [1939] = {.lex_state = 0}, - [1940] = {.lex_state = 87}, - [1941] = {.lex_state = 0, .external_lex_state = 69}, - [1942] = {.lex_state = 0, .external_lex_state = 32}, - [1943] = {.lex_state = 44, .external_lex_state = 30}, - [1944] = {.lex_state = 0}, - [1945] = {.lex_state = 0}, - [1946] = {.lex_state = 0, .external_lex_state = 80}, - [1947] = {.lex_state = 0, .external_lex_state = 32}, - [1948] = {.lex_state = 0}, - [1949] = {.lex_state = 44, .external_lex_state = 30}, - [1950] = {.lex_state = 0, .external_lex_state = 32}, - [1951] = {.lex_state = 0}, - [1952] = {.lex_state = 0}, - [1953] = {.lex_state = 0}, - [1954] = {.lex_state = 0, .external_lex_state = 32}, - [1955] = {.lex_state = 83}, - [1956] = {.lex_state = 0, .external_lex_state = 81}, - [1957] = {.lex_state = 39}, - [1958] = {.lex_state = 0}, - [1959] = {.lex_state = 37}, - [1960] = {.lex_state = 7}, - [1961] = {.lex_state = 0, .external_lex_state = 30}, - [1962] = {.lex_state = 7}, - [1963] = {.lex_state = 0}, - [1964] = {.lex_state = 0, .external_lex_state = 82}, - [1965] = {.lex_state = 0, .external_lex_state = 83}, - [1966] = {.lex_state = 0}, - [1967] = {.lex_state = 83}, - [1968] = {.lex_state = 0, .external_lex_state = 81}, - [1969] = {.lex_state = 0}, - [1970] = {.lex_state = 0, .external_lex_state = 30}, - [1971] = {.lex_state = 0, .external_lex_state = 30}, - [1972] = {.lex_state = 83}, - [1973] = {.lex_state = 0, .external_lex_state = 83}, - [1974] = {.lex_state = 83}, - [1975] = {.lex_state = 39}, - [1976] = {.lex_state = 0}, - [1977] = {.lex_state = 37}, - [1978] = {.lex_state = 7}, - [1979] = {.lex_state = 0}, - [1980] = {.lex_state = 7}, - [1981] = {.lex_state = 0}, - [1982] = {.lex_state = 0, .external_lex_state = 84}, - [1983] = {.lex_state = 0, .external_lex_state = 83}, - [1984] = {.lex_state = 0}, - [1985] = {.lex_state = 83}, - [1986] = {.lex_state = 208}, - [1987] = {.lex_state = 0}, - [1988] = {.lex_state = 0, .external_lex_state = 30}, - [1989] = {.lex_state = 0, .external_lex_state = 83}, - [1990] = {.lex_state = 0}, - [1991] = {.lex_state = 0, .external_lex_state = 30}, - [1992] = {.lex_state = 0, .external_lex_state = 83}, - [1993] = {.lex_state = 0, .external_lex_state = 83}, - [1994] = {.lex_state = 83}, - [1995] = {.lex_state = 39}, - [1996] = {.lex_state = 0}, - [1997] = {.lex_state = 37}, - [1998] = {.lex_state = 0}, - [1999] = {.lex_state = 0, .external_lex_state = 82}, - [2000] = {.lex_state = 7}, - [2001] = {.lex_state = 0}, - [2002] = {.lex_state = 0, .external_lex_state = 30}, - [2003] = {.lex_state = 158}, - [2004] = {.lex_state = 0}, - [2005] = {.lex_state = 0, .external_lex_state = 30}, - [2006] = {.lex_state = 0, .external_lex_state = 83}, - [2007] = {.lex_state = 0}, - [2008] = {.lex_state = 83}, - [2009] = {.lex_state = 0}, - [2010] = {.lex_state = 0}, - [2011] = {.lex_state = 0, .external_lex_state = 30}, - [2012] = {.lex_state = 44}, - [2013] = {.lex_state = 0}, - [2014] = {.lex_state = 7}, - [2015] = {.lex_state = 0, .external_lex_state = 83}, - [2016] = {.lex_state = 0, .external_lex_state = 81}, - [2017] = {.lex_state = 83}, - [2018] = {.lex_state = 39}, - [2019] = {.lex_state = 0}, - [2020] = {.lex_state = 37}, - [2021] = {.lex_state = 83}, - [2022] = {.lex_state = 0}, - [2023] = {.lex_state = 7}, - [2024] = {.lex_state = 0, .external_lex_state = 83}, - [2025] = {.lex_state = 37}, - [2026] = {.lex_state = 0}, - [2027] = {.lex_state = 0}, - [2028] = {.lex_state = 39}, - [2029] = {.lex_state = 0, .external_lex_state = 83}, - [2030] = {.lex_state = 0}, - [2031] = {.lex_state = 83}, - [2032] = {.lex_state = 83}, - [2033] = {.lex_state = 0}, - [2034] = {.lex_state = 0, .external_lex_state = 30}, - [2035] = {.lex_state = 0}, - [2036] = {.lex_state = 0, .external_lex_state = 30}, - [2037] = {.lex_state = 0, .external_lex_state = 83}, - [2038] = {.lex_state = 0, .external_lex_state = 83}, - [2039] = {.lex_state = 0, .external_lex_state = 81}, - [2040] = {.lex_state = 83}, - [2041] = {.lex_state = 39}, - [2042] = {.lex_state = 0}, - [2043] = {.lex_state = 37}, - [2044] = {.lex_state = 86}, - [2045] = {.lex_state = 0, .external_lex_state = 81}, - [2046] = {.lex_state = 7}, - [2047] = {.lex_state = 0, .external_lex_state = 81}, - [2048] = {.lex_state = 0, .external_lex_state = 81}, - [2049] = {.lex_state = 0, .external_lex_state = 30}, - [2050] = {.lex_state = 0}, - [2051] = {.lex_state = 0, .external_lex_state = 81}, - [2052] = {.lex_state = 0, .external_lex_state = 83}, - [2053] = {.lex_state = 0}, - [2054] = {.lex_state = 0}, - [2055] = {.lex_state = 0, .external_lex_state = 81}, - [2056] = {.lex_state = 0}, - [2057] = {.lex_state = 0, .external_lex_state = 30}, - [2058] = {.lex_state = 0, .external_lex_state = 81}, - [2059] = {.lex_state = 7}, - [2060] = {.lex_state = 37}, - [2061] = {.lex_state = 0, .external_lex_state = 83}, - [2062] = {.lex_state = 0, .external_lex_state = 81}, - [2063] = {.lex_state = 83}, - [2064] = {.lex_state = 39}, - [2065] = {.lex_state = 0}, - [2066] = {.lex_state = 37}, - [2067] = {.lex_state = 0}, - [2068] = {.lex_state = 39}, - [2069] = {.lex_state = 7}, - [2070] = {.lex_state = 0, .external_lex_state = 30}, - [2071] = {.lex_state = 0, .external_lex_state = 62}, - [2072] = {.lex_state = 83}, - [2073] = {.lex_state = 0}, - [2074] = {.lex_state = 0, .external_lex_state = 83}, - [2075] = {.lex_state = 0, .external_lex_state = 83}, - [2076] = {.lex_state = 0}, - [2077] = {.lex_state = 83}, - [2078] = {.lex_state = 0, .external_lex_state = 30}, - [2079] = {.lex_state = 0}, - [2080] = {.lex_state = 158}, - [2081] = {.lex_state = 83}, - [2082] = {.lex_state = 0, .external_lex_state = 30}, - [2083] = {.lex_state = 0, .external_lex_state = 30}, - [2084] = {.lex_state = 0}, - [2085] = {.lex_state = 0, .external_lex_state = 30}, - [2086] = {.lex_state = 89}, - [2087] = {.lex_state = 83}, - [2088] = {.lex_state = 0, .external_lex_state = 83}, - [2089] = {.lex_state = 0}, - [2090] = {.lex_state = 0, .external_lex_state = 83}, - [2091] = {.lex_state = 0}, - [2092] = {.lex_state = 44}, - [2093] = {.lex_state = 7}, - [2094] = {.lex_state = 0, .external_lex_state = 62}, - [2095] = {.lex_state = 37}, - [2096] = {.lex_state = 0, .external_lex_state = 85}, - [2097] = {.lex_state = 0}, - [2098] = {.lex_state = 0, .external_lex_state = 86}, - [2099] = {.lex_state = 39}, - [2100] = {.lex_state = 0, .external_lex_state = 30}, - [2101] = {.lex_state = 83}, - [2102] = {.lex_state = 0, .external_lex_state = 83}, - [2103] = {.lex_state = 0}, - [2104] = {.lex_state = 0, .external_lex_state = 87}, - [2105] = {.lex_state = 0, .external_lex_state = 30}, - [2106] = {.lex_state = 0, .external_lex_state = 30}, - [2107] = {.lex_state = 0, .external_lex_state = 81}, - [2108] = {.lex_state = 0, .external_lex_state = 30}, - [2109] = {.lex_state = 0, .external_lex_state = 30}, - [2110] = {.lex_state = 0, .external_lex_state = 30}, - [2111] = {.lex_state = 0, .external_lex_state = 30}, - [2112] = {.lex_state = 0, .external_lex_state = 81}, - [2113] = {.lex_state = 0, .external_lex_state = 30}, - [2114] = {.lex_state = 0, .external_lex_state = 30}, - [2115] = {.lex_state = 89}, - [2116] = {.lex_state = 0}, - [2117] = {.lex_state = 0, .external_lex_state = 30}, - [2118] = {.lex_state = 83}, - [2119] = {.lex_state = 0, .external_lex_state = 30}, - [2120] = {.lex_state = 0, .external_lex_state = 30}, - [2121] = {.lex_state = 7}, - [2122] = {.lex_state = 0, .external_lex_state = 83}, - [2123] = {.lex_state = 158}, - [2124] = {.lex_state = 83}, - [2125] = {.lex_state = 0, .external_lex_state = 84}, - [2126] = {.lex_state = 0, .external_lex_state = 81}, - [2127] = {.lex_state = 0, .external_lex_state = 30}, - [2128] = {.lex_state = 0, .external_lex_state = 81}, - [2129] = {.lex_state = 0, .external_lex_state = 81}, - [2130] = {.lex_state = 0, .external_lex_state = 30}, - [2131] = {.lex_state = 0, .external_lex_state = 30}, - [2132] = {.lex_state = 0, .external_lex_state = 30}, - [2133] = {.lex_state = 83}, - [2134] = {.lex_state = 0, .external_lex_state = 82}, - [2135] = {.lex_state = 7}, - [2136] = {.lex_state = 0, .external_lex_state = 84}, - [2137] = {.lex_state = 44}, - [2138] = {.lex_state = 0, .external_lex_state = 81}, - [2139] = {.lex_state = 89}, - [2140] = {.lex_state = 83}, - [2141] = {.lex_state = 83}, - [2142] = {.lex_state = 7}, - [2143] = {.lex_state = 0, .external_lex_state = 30}, - [2144] = {.lex_state = 0, .external_lex_state = 30}, - [2145] = {.lex_state = 0}, - [2146] = {.lex_state = 0, .external_lex_state = 83}, - [2147] = {.lex_state = 0}, - [2148] = {.lex_state = 208}, - [2149] = {.lex_state = 0, .external_lex_state = 30}, - [2150] = {.lex_state = 0, .external_lex_state = 30}, - [2151] = {.lex_state = 86}, - [2152] = {.lex_state = 90}, - [2153] = {.lex_state = 0}, - [2154] = {.lex_state = 0, .external_lex_state = 30}, - [2155] = {.lex_state = 91}, - [2156] = {.lex_state = 83}, - [2157] = {.lex_state = 7}, - [2158] = {.lex_state = 37}, - [2159] = {.lex_state = 0}, - [2160] = {.lex_state = 39}, - [2161] = {.lex_state = 83}, - [2162] = {.lex_state = 0, .external_lex_state = 30}, - [2163] = {.lex_state = 0, .external_lex_state = 84}, - [2164] = {.lex_state = 0, .external_lex_state = 83}, - [2165] = {.lex_state = 0, .external_lex_state = 30}, - [2166] = {.lex_state = 83}, - [2167] = {.lex_state = 0, .external_lex_state = 81}, - [2168] = {.lex_state = 0, .external_lex_state = 81}, - [2169] = {.lex_state = 0, .external_lex_state = 81}, - [2170] = {.lex_state = 0, .external_lex_state = 81}, - [2171] = {.lex_state = 0, .external_lex_state = 81}, - [2172] = {.lex_state = 0, .external_lex_state = 81}, - [2173] = {.lex_state = 0, .external_lex_state = 84}, - [2174] = {.lex_state = 44}, - [2175] = {.lex_state = 0, .external_lex_state = 81}, - [2176] = {.lex_state = 89}, - [2177] = {.lex_state = 158}, - [2178] = {.lex_state = 0, .external_lex_state = 83}, - [2179] = {.lex_state = 7}, - [2180] = {.lex_state = 0, .external_lex_state = 30}, - [2181] = {.lex_state = 0, .external_lex_state = 30}, - [2182] = {.lex_state = 91}, - [2183] = {.lex_state = 0, .external_lex_state = 30}, - [2184] = {.lex_state = 83}, - [2185] = {.lex_state = 39}, - [2186] = {.lex_state = 0}, - [2187] = {.lex_state = 86}, - [2188] = {.lex_state = 37}, - [2189] = {.lex_state = 7}, - [2190] = {.lex_state = 91}, - [2191] = {.lex_state = 0, .external_lex_state = 81}, - [2192] = {.lex_state = 0}, - [2193] = {.lex_state = 0, .external_lex_state = 30}, - [2194] = {.lex_state = 44}, - [2195] = {.lex_state = 0, .external_lex_state = 30}, - [2196] = {.lex_state = 0, .external_lex_state = 30}, - [2197] = {.lex_state = 0, .external_lex_state = 81}, - [2198] = {.lex_state = 0, .external_lex_state = 84}, - [2199] = {.lex_state = 0, .external_lex_state = 81}, - [2200] = {.lex_state = 0, .external_lex_state = 30}, - [2201] = {.lex_state = 0, .external_lex_state = 81}, - [2202] = {.lex_state = 0, .external_lex_state = 30}, - [2203] = {.lex_state = 0, .external_lex_state = 30}, - [2204] = {.lex_state = 0, .external_lex_state = 30}, - [2205] = {.lex_state = 0, .external_lex_state = 30}, - [2206] = {.lex_state = 0, .external_lex_state = 30}, - [2207] = {.lex_state = 0, .external_lex_state = 30}, - [2208] = {.lex_state = 0, .external_lex_state = 84}, - [2209] = {.lex_state = 44}, - [2210] = {.lex_state = 0, .external_lex_state = 81}, - [2211] = {.lex_state = 89}, - [2212] = {.lex_state = 0}, - [2213] = {.lex_state = 0, .external_lex_state = 81}, - [2214] = {.lex_state = 7}, - [2215] = {.lex_state = 0, .external_lex_state = 30}, - [2216] = {.lex_state = 0, .external_lex_state = 30}, - [2217] = {.lex_state = 0, .external_lex_state = 81}, - [2218] = {.lex_state = 0, .external_lex_state = 81}, - [2219] = {.lex_state = 0, .external_lex_state = 30}, - [2220] = {.lex_state = 0, .external_lex_state = 30}, - [2221] = {.lex_state = 0, .external_lex_state = 82}, - [2222] = {.lex_state = 86}, - [2223] = {.lex_state = 0, .external_lex_state = 81}, - [2224] = {.lex_state = 37}, - [2225] = {.lex_state = 91}, - [2226] = {.lex_state = 83}, - [2227] = {.lex_state = 0, .external_lex_state = 84}, - [2228] = {.lex_state = 0, .external_lex_state = 81}, - [2229] = {.lex_state = 0, .external_lex_state = 30}, - [2230] = {.lex_state = 0}, - [2231] = {.lex_state = 0, .external_lex_state = 30}, - [2232] = {.lex_state = 0, .external_lex_state = 30}, - [2233] = {.lex_state = 0, .external_lex_state = 83}, - [2234] = {.lex_state = 0}, - [2235] = {.lex_state = 0, .external_lex_state = 30}, - [2236] = {.lex_state = 90}, - [2237] = {.lex_state = 0, .external_lex_state = 84}, - [2238] = {.lex_state = 44}, - [2239] = {.lex_state = 7}, - [2240] = {.lex_state = 0, .external_lex_state = 30}, - [2241] = {.lex_state = 0}, - [2242] = {.lex_state = 0}, - [2243] = {.lex_state = 7}, - [2244] = {.lex_state = 0, .external_lex_state = 30}, - [2245] = {.lex_state = 0, .external_lex_state = 30}, - [2246] = {.lex_state = 0, .external_lex_state = 30}, - [2247] = {.lex_state = 0, .external_lex_state = 83}, - [2248] = {.lex_state = 83}, - [2249] = {.lex_state = 7}, - [2250] = {.lex_state = 37}, - [2251] = {.lex_state = 86}, - [2252] = {.lex_state = 0, .external_lex_state = 30}, - [2253] = {.lex_state = 39}, - [2254] = {.lex_state = 91}, - [2255] = {.lex_state = 0, .external_lex_state = 84}, - [2256] = {.lex_state = 208}, - [2257] = {.lex_state = 7}, - [2258] = {.lex_state = 83}, - [2259] = {.lex_state = 0, .external_lex_state = 84}, - [2260] = {.lex_state = 86}, - [2261] = {.lex_state = 89}, - [2262] = {.lex_state = 7}, - [2263] = {.lex_state = 86}, - [2264] = {.lex_state = 0, .external_lex_state = 84}, - [2265] = {.lex_state = 0, .external_lex_state = 30}, - [2266] = {.lex_state = 0, .external_lex_state = 30}, - [2267] = {.lex_state = 0, .external_lex_state = 30}, - [2268] = {.lex_state = 0, .external_lex_state = 84}, - [2269] = {.lex_state = 83}, - [2270] = {.lex_state = 89}, - [2271] = {.lex_state = 7}, - [2272] = {.lex_state = 86}, - [2273] = {.lex_state = 0, .external_lex_state = 84}, - [2274] = {.lex_state = 0, .external_lex_state = 88}, - [2275] = {.lex_state = 7}, - [2276] = {.lex_state = 0, .external_lex_state = 83}, - [2277] = {.lex_state = 0, .external_lex_state = 84}, - [2278] = {.lex_state = 0, .external_lex_state = 30}, - [2279] = {.lex_state = 89}, - [2280] = {.lex_state = 7}, - [2281] = {.lex_state = 86}, - [2282] = {.lex_state = 0, .external_lex_state = 84}, - [2283] = {.lex_state = 0, .external_lex_state = 30}, - [2284] = {.lex_state = 0, .external_lex_state = 30}, - [2285] = {.lex_state = 0, .external_lex_state = 81}, - [2286] = {.lex_state = 0, .external_lex_state = 84}, - [2287] = {.lex_state = 0}, - [2288] = {.lex_state = 89}, - [2289] = {.lex_state = 7}, - [2290] = {.lex_state = 86}, - [2291] = {.lex_state = 0, .external_lex_state = 84}, - [2292] = {.lex_state = 0, .external_lex_state = 81}, - [2293] = {.lex_state = 0, .external_lex_state = 81}, - [2294] = {.lex_state = 0, .external_lex_state = 81}, - [2295] = {.lex_state = 0, .external_lex_state = 84}, - [2296] = {.lex_state = 0, .external_lex_state = 30}, - [2297] = {.lex_state = 89}, - [2298] = {.lex_state = 7}, - [2299] = {.lex_state = 86}, - [2300] = {.lex_state = 0, .external_lex_state = 84}, - [2301] = {.lex_state = 0, .external_lex_state = 81}, - [2302] = {.lex_state = 0, .external_lex_state = 81}, - [2303] = {.lex_state = 0, .external_lex_state = 81}, - [2304] = {.lex_state = 0, .external_lex_state = 84}, - [2305] = {.lex_state = 0, .external_lex_state = 30}, - [2306] = {.lex_state = 89}, - [2307] = {.lex_state = 7}, - [2308] = {.lex_state = 86}, - [2309] = {.lex_state = 0, .external_lex_state = 84}, - [2310] = {.lex_state = 0, .external_lex_state = 30}, - [2311] = {.lex_state = 0, .external_lex_state = 89}, - [2312] = {.lex_state = 0}, - [2313] = {.lex_state = 0, .external_lex_state = 84}, - [2314] = {.lex_state = 0}, - [2315] = {.lex_state = 89}, - [2316] = {.lex_state = 7}, - [2317] = {.lex_state = 86}, - [2318] = {.lex_state = 0, .external_lex_state = 84}, - [2319] = {.lex_state = 83}, - [2320] = {.lex_state = 0, .external_lex_state = 30}, - [2321] = {.lex_state = 39}, - [2322] = {.lex_state = 0, .external_lex_state = 84}, - [2323] = {.lex_state = 0}, - [2324] = {.lex_state = 89}, - [2325] = {.lex_state = 7}, - [2326] = {.lex_state = 86}, - [2327] = {.lex_state = 208}, - [2328] = {.lex_state = 0, .external_lex_state = 30}, - [2329] = {.lex_state = 83}, - [2330] = {.lex_state = 0, .external_lex_state = 81}, - [2331] = {.lex_state = 0}, - [2332] = {.lex_state = 44}, - [2333] = {.lex_state = 158}, - [2334] = {.lex_state = 208}, - [2335] = {.lex_state = 0, .external_lex_state = 30}, - [2336] = {.lex_state = 83}, - [2337] = {.lex_state = 0, .external_lex_state = 82}, - [2338] = {.lex_state = 0}, - [2339] = {.lex_state = 44}, - [2340] = {.lex_state = 158}, - [2341] = {.lex_state = 208}, - [2342] = {.lex_state = 0, .external_lex_state = 30}, - [2343] = {.lex_state = 83}, - [2344] = {.lex_state = 0, .external_lex_state = 30}, - [2345] = {.lex_state = 0}, - [2346] = {.lex_state = 44}, - [2347] = {.lex_state = 158}, - [2348] = {.lex_state = 208}, - [2349] = {.lex_state = 0, .external_lex_state = 30}, - [2350] = {.lex_state = 83}, - [2351] = {.lex_state = 0, .external_lex_state = 84}, - [2352] = {.lex_state = 0}, - [2353] = {.lex_state = 44}, - [2354] = {.lex_state = 158}, - [2355] = {.lex_state = 0, .external_lex_state = 30}, - [2356] = {.lex_state = 0, .external_lex_state = 81}, - [2357] = {.lex_state = 0}, - [2358] = {.lex_state = 0, .external_lex_state = 81}, - [2359] = {.lex_state = 0}, - [2360] = {.lex_state = 0, .external_lex_state = 30}, - [2361] = {.lex_state = 0}, - [2362] = {.lex_state = 0}, - [2363] = {.lex_state = 0, .external_lex_state = 30}, - [2364] = {.lex_state = 0, .external_lex_state = 30}, - [2365] = {.lex_state = 0}, - [2366] = {.lex_state = 0}, - [2367] = {.lex_state = 0, .external_lex_state = 30}, - [2368] = {.lex_state = 0, .external_lex_state = 30}, - [2369] = {.lex_state = 0}, - [2370] = {.lex_state = 83}, - [2371] = {.lex_state = 7}, - [2372] = {.lex_state = 7}, - [2373] = {.lex_state = 7}, - [2374] = {.lex_state = 7}, - [2375] = {.lex_state = 0, .external_lex_state = 30}, - [2376] = {.lex_state = 0, .external_lex_state = 30}, - [2377] = {.lex_state = 208}, - [2378] = {.lex_state = 0, .external_lex_state = 30}, -}; - -static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { - [0] = { - [ts_builtin_sym_end] = ACTIONS(1), - [anon_sym_LBRACK] = ACTIONS(1), - [anon_sym_x] = ACTIONS(1), - [anon_sym_X] = ACTIONS(1), - [anon_sym_RBRACK] = ACTIONS(1), - [anon_sym_SPACE] = ACTIONS(1), - [anon_sym_PIPE] = ACTIONS(1), - [sym_table_cell_alignment] = ACTIONS(1), - [anon_sym_NULL] = ACTIONS(1), - [anon_sym_EQ] = ACTIONS(1), - [anon_sym_COLON] = ACTIONS(1), - [anon_sym_LBRACE] = ACTIONS(1), - [anon_sym_RBRACE] = ACTIONS(1), - [anon_sym_DOT] = ACTIONS(1), - [sym_identifier] = ACTIONS(1), - [anon_sym_DQUOTE] = ACTIONS(1), - [sym__whitespace1] = ACTIONS(1), - [anon_sym_BSLASH] = ACTIONS(1), - [sym_ellipsis] = ACTIONS(1), - [sym_em_dash] = ACTIONS(1), - [sym_en_dash] = ACTIONS(1), - [sym_backslash_escape] = ACTIONS(1), - [anon_sym_LT] = ACTIONS(1), - [anon_sym_GT] = ACTIONS(1), - [anon_sym_LBRACE_] = ACTIONS(1), - [anon_sym__] = ACTIONS(1), - [aux_sym_emphasis_end_token1] = ACTIONS(1), - [anon_sym_LBRACE_STAR] = ACTIONS(1), - [anon_sym_STAR] = ACTIONS(1), - [aux_sym_strong_end_token1] = ACTIONS(1), - [anon_sym_LBRACE_EQ] = ACTIONS(1), - [anon_sym_EQ_RBRACE] = ACTIONS(1), - [anon_sym_LBRACE_PLUS] = ACTIONS(1), - [anon_sym_PLUS_RBRACE] = ACTIONS(1), - [anon_sym_LBRACE_DASH] = ACTIONS(1), - [anon_sym_DASH_RBRACE] = ACTIONS(1), - [sym_symbol] = ACTIONS(1), - [anon_sym_LBRACE_CARET] = ACTIONS(1), - [anon_sym_CARET] = ACTIONS(1), - [anon_sym_CARET_RBRACE] = ACTIONS(1), - [anon_sym_LBRACE_TILDE] = ACTIONS(1), - [anon_sym_TILDE] = ACTIONS(1), - [anon_sym_TILDE_RBRACE] = ACTIONS(1), - [anon_sym_LBRACK_CARET] = ACTIONS(1), - [sym__id] = ACTIONS(1), - [anon_sym_BANG_LBRACK] = ACTIONS(1), - [anon_sym_RBRACK2] = ACTIONS(1), - [anon_sym_LPAREN] = ACTIONS(1), - [anon_sym_RPAREN] = ACTIONS(1), - [anon_sym_LBRACE2] = ACTIONS(1), - [anon_sym_PERCENT] = ACTIONS(1), - [anon_sym_LBRACE_EQ2] = ACTIONS(1), - [anon_sym_DOLLAR] = ACTIONS(1), - [anon_sym_TODO] = ACTIONS(1), - [anon_sym_WIP] = ACTIONS(1), - [anon_sym_NOTE] = ACTIONS(1), - [anon_sym_INFO] = ACTIONS(1), - [anon_sym_XXX] = ACTIONS(1), - [sym_fixme] = ACTIONS(1), - [aux_sym__text_token1] = ACTIONS(1), - [sym__ignored] = ACTIONS(1), - [sym__block_close] = ACTIONS(1), - [sym__eof_or_newline] = ACTIONS(1), - [sym__newline] = ACTIONS(1), - [sym__newline_inline] = ACTIONS(1), - [sym_frontmatter_marker] = ACTIONS(1), - [sym__heading1_begin] = ACTIONS(1), - [sym__heading1_continuation] = ACTIONS(1), - [sym__heading2_begin] = ACTIONS(1), - [sym__heading2_continuation] = ACTIONS(1), - [sym__heading3_begin] = ACTIONS(1), - [sym__heading3_continuation] = ACTIONS(1), - [sym__heading4_begin] = ACTIONS(1), - [sym__heading4_continuation] = ACTIONS(1), - [sym__heading5_begin] = ACTIONS(1), - [sym__heading5_continuation] = ACTIONS(1), - [sym__heading6_begin] = ACTIONS(1), - [sym__heading6_continuation] = ACTIONS(1), - [sym__div_begin] = ACTIONS(1), - [sym__div_end] = ACTIONS(1), - [sym__code_block_begin] = ACTIONS(1), - [sym__code_block_end] = ACTIONS(1), - [sym_list_marker_dash] = ACTIONS(1), - [sym_list_marker_star] = ACTIONS(1), - [sym_list_marker_plus] = ACTIONS(1), - [sym__list_marker_task_begin] = ACTIONS(1), - [sym_list_marker_definition] = ACTIONS(1), - [sym_list_marker_decimal_period] = ACTIONS(1), - [sym_list_marker_lower_alpha_period] = ACTIONS(1), - [sym_list_marker_upper_alpha_period] = ACTIONS(1), - [sym_list_marker_lower_roman_period] = ACTIONS(1), - [sym_list_marker_upper_roman_period] = ACTIONS(1), - [sym_list_marker_decimal_paren] = ACTIONS(1), - [sym_list_marker_lower_alpha_paren] = ACTIONS(1), - [sym_list_marker_upper_alpha_paren] = ACTIONS(1), - [sym_list_marker_lower_roman_paren] = ACTIONS(1), - [sym_list_marker_upper_roman_paren] = ACTIONS(1), - [sym_list_marker_decimal_parens] = ACTIONS(1), - [sym_list_marker_lower_alpha_parens] = ACTIONS(1), - [sym_list_marker_upper_alpha_parens] = ACTIONS(1), - [sym_list_marker_lower_roman_parens] = ACTIONS(1), - [sym_list_marker_upper_roman_parens] = ACTIONS(1), - [sym__list_item_continuation] = ACTIONS(1), - [sym__list_item_end] = ACTIONS(1), - [sym__close_paragraph] = ACTIONS(1), - [sym__block_quote_begin] = ACTIONS(1), - [sym__block_quote_continuation] = ACTIONS(1), - [sym__thematic_break_dash] = ACTIONS(1), - [sym__thematic_break_star] = ACTIONS(1), - [sym__footnote_begin] = ACTIONS(1), - [sym__footnote_end] = ACTIONS(1), - [sym__table_caption_begin] = ACTIONS(1), - [sym__table_caption_end] = ACTIONS(1), - [sym__verbatim_begin] = ACTIONS(1), - [sym__verbatim_end] = ACTIONS(1), - [sym__verbatim_content] = ACTIONS(1), - [sym__error] = ACTIONS(1), - }, - [1] = { - [sym_document] = STATE(2323), - [sym_frontmatter] = STATE(10), - [sym__block_with_section] = STATE(493), - [sym__block_element] = STATE(493), - [sym_section] = STATE(493), - [sym__heading] = STATE(2), - [sym_heading1] = STATE(2), - [sym_heading2] = STATE(2), - [sym_heading3] = STATE(2), - [sym_heading4] = STATE(2), - [sym_heading5] = STATE(2), - [sym_heading6] = STATE(2), - [sym_list] = STATE(493), - [sym__list_dash] = STATE(477), - [sym__list_item_dash] = STATE(1305), - [sym__list_plus] = STATE(477), - [sym__list_item_plus] = STATE(1306), - [sym__list_star] = STATE(477), - [sym__list_item_star] = STATE(1307), - [sym__list_task] = STATE(477), - [sym__list_item_task] = STATE(1290), - [sym_list_marker_task] = STATE(49), - [sym__list_definition] = STATE(477), - [sym__list_item_definition] = STATE(1565), - [sym__list_decimal_period] = STATE(477), - [sym__list_item_decimal_period] = STATE(1562), - [sym__list_decimal_paren] = STATE(477), - [sym__list_item_decimal_paren] = STATE(1560), - [sym__list_decimal_parens] = STATE(477), - [sym__list_item_decimal_parens] = STATE(1555), - [sym__list_lower_alpha_period] = STATE(477), - [sym__list_item_lower_alpha_period] = STATE(1554), - [sym__list_lower_alpha_paren] = STATE(477), - [sym__list_item_lower_alpha_paren] = STATE(1553), - [sym__list_lower_alpha_parens] = STATE(477), - [sym__list_item_lower_alpha_parens] = STATE(1545), - [sym__list_upper_alpha_period] = STATE(477), - [sym__list_item_upper_alpha_period] = STATE(1544), - [sym__list_upper_alpha_paren] = STATE(477), - [sym__list_item_upper_alpha_paren] = STATE(1543), - [sym__list_upper_alpha_parens] = STATE(477), - [sym__list_item_upper_alpha_parens] = STATE(1541), - [sym__list_lower_roman_period] = STATE(477), - [sym__list_item_lower_roman_period] = STATE(1539), - [sym__list_lower_roman_paren] = STATE(477), - [sym__list_item_lower_roman_paren] = STATE(1537), - [sym__list_lower_roman_parens] = STATE(477), - [sym__list_item_lower_roman_parens] = STATE(1494), - [sym__list_upper_roman_period] = STATE(477), - [sym__list_item_upper_roman_period] = STATE(1535), - [sym__list_upper_roman_paren] = STATE(477), - [sym__list_item_upper_roman_paren] = STATE(1533), - [sym__list_upper_roman_parens] = STATE(477), - [sym__list_item_upper_roman_parens] = STATE(1522), - [sym_table] = STATE(493), - [sym__table_content] = STATE(67), - [sym_table_separator] = STATE(67), - [sym_table_row] = STATE(211), - [sym_footnote] = STATE(493), - [sym_div] = STATE(493), - [sym_div_marker_begin] = STATE(2117), - [sym_code_block] = STATE(493), - [sym_raw_block] = STATE(493), - [sym_thematic_break] = STATE(493), - [sym_block_quote] = STATE(493), - [sym__block_quote_prefix] = STATE(1386), - [sym_link_reference_definition] = STATE(493), - [sym_block_attribute] = STATE(493), - [sym__paragraph] = STATE(493), - [sym__paragraph_content] = STATE(1759), - [sym__inline] = STATE(2311), - [sym__inline_element_with_whitespace] = STATE(229), - [sym__inline_element_with_newline] = STATE(229), - [sym__inline_core_element] = STATE(229), - [sym__hard_line_break] = STATE(716), - [sym_hard_line_break] = STATE(517), - [sym__smart_punctuation] = STATE(716), - [sym_autolink] = STATE(716), - [sym_emphasis] = STATE(716), - [sym_emphasis_begin] = STATE(283), - [sym_strong] = STATE(716), - [sym_strong_begin] = STATE(282), - [sym_highlighted] = STATE(716), - [sym_insert] = STATE(716), - [sym_delete] = STATE(716), - [sym_superscript] = STATE(716), - [sym_subscript] = STATE(716), - [sym_footnote_reference] = STATE(716), - [sym__image] = STATE(716), - [sym_full_reference_image] = STATE(716), - [sym_collapsed_reference_image] = STATE(716), - [sym_inline_image] = STATE(716), - [sym__image_description] = STATE(1412), - [sym__link] = STATE(716), - [sym_full_reference_link] = STATE(716), - [sym_collapsed_reference_link] = STATE(716), - [sym_inline_link] = STATE(716), - [sym_link_text] = STATE(1413), - [sym__comment_with_spaces] = STATE(716), - [sym_span] = STATE(716), - [sym_raw_inline] = STATE(716), - [sym_math] = STATE(716), - [sym_verbatim] = STATE(716), - [sym__todo_highlights] = STATE(716), - [sym_todo] = STATE(716), - [sym_note] = STATE(716), - [sym__symbol_fallback] = STATE(716), - [aux_sym__text] = STATE(562), - [aux_sym_document_repeat1] = STATE(7), - [aux_sym__list_dash_repeat1] = STATE(1305), - [aux_sym__list_plus_repeat1] = STATE(1306), - [aux_sym__list_star_repeat1] = STATE(1307), - [aux_sym__list_task_repeat1] = STATE(1290), - [aux_sym__list_definition_repeat1] = STATE(1565), - [aux_sym__list_decimal_period_repeat1] = STATE(1562), - [aux_sym__list_decimal_paren_repeat1] = STATE(1560), - [aux_sym__list_decimal_parens_repeat1] = STATE(1555), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(1554), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(1553), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(1545), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(1544), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(1543), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(1541), - [aux_sym__list_lower_roman_period_repeat1] = STATE(1539), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(1537), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(1494), - [aux_sym__list_upper_roman_period_repeat1] = STATE(1535), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(1533), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(1522), - [aux_sym_table_repeat1] = STATE(67), - [aux_sym__block_quote_prefix_repeat1] = STATE(1308), - [aux_sym__inline_repeat1] = STATE(229), - [ts_builtin_sym_end] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(9), - [sym__whitespace1] = ACTIONS(11), - [anon_sym_BSLASH] = ACTIONS(13), - [sym_quotation_marks] = ACTIONS(15), - [sym_ellipsis] = ACTIONS(15), - [sym_em_dash] = ACTIONS(15), - [sym_en_dash] = ACTIONS(17), - [sym_backslash_escape] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(19), - [anon_sym_LBRACE_] = ACTIONS(21), - [anon_sym__] = ACTIONS(23), - [anon_sym_LBRACE_STAR] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_LBRACE_EQ] = ACTIONS(29), - [anon_sym_LBRACE_PLUS] = ACTIONS(31), - [anon_sym_LBRACE_DASH] = ACTIONS(33), - [sym_symbol] = ACTIONS(15), - [anon_sym_LBRACE_CARET] = ACTIONS(35), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_LBRACE_TILDE] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(37), - [anon_sym_LBRACK_CARET] = ACTIONS(39), - [anon_sym_BANG_LBRACK] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [anon_sym_TODO] = ACTIONS(45), - [anon_sym_WIP] = ACTIONS(45), - [anon_sym_NOTE] = ACTIONS(47), - [anon_sym_INFO] = ACTIONS(47), - [anon_sym_XXX] = ACTIONS(47), - [sym_fixme] = ACTIONS(15), - [aux_sym__text_token1] = ACTIONS(49), - [sym__newline] = ACTIONS(51), - [sym__newline_inline] = ACTIONS(53), - [sym_frontmatter_marker] = ACTIONS(55), - [sym__heading1_begin] = ACTIONS(57), - [sym__heading2_begin] = ACTIONS(59), - [sym__heading3_begin] = ACTIONS(61), - [sym__heading4_begin] = ACTIONS(63), - [sym__heading5_begin] = ACTIONS(65), - [sym__heading6_begin] = ACTIONS(67), - [sym__div_begin] = ACTIONS(69), - [sym__code_block_begin] = ACTIONS(71), - [sym_list_marker_dash] = ACTIONS(73), - [sym_list_marker_star] = ACTIONS(75), - [sym_list_marker_plus] = ACTIONS(77), - [sym__list_marker_task_begin] = ACTIONS(79), - [sym_list_marker_definition] = ACTIONS(81), - [sym_list_marker_decimal_period] = ACTIONS(83), - [sym_list_marker_lower_alpha_period] = ACTIONS(85), - [sym_list_marker_upper_alpha_period] = ACTIONS(87), - [sym_list_marker_lower_roman_period] = ACTIONS(89), - [sym_list_marker_upper_roman_period] = ACTIONS(91), - [sym_list_marker_decimal_paren] = ACTIONS(93), - [sym_list_marker_lower_alpha_paren] = ACTIONS(95), - [sym_list_marker_upper_alpha_paren] = ACTIONS(97), - [sym_list_marker_lower_roman_paren] = ACTIONS(99), - [sym_list_marker_upper_roman_paren] = ACTIONS(101), - [sym_list_marker_decimal_parens] = ACTIONS(103), - [sym_list_marker_lower_alpha_parens] = ACTIONS(105), - [sym_list_marker_upper_alpha_parens] = ACTIONS(107), - [sym_list_marker_lower_roman_parens] = ACTIONS(109), - [sym_list_marker_upper_roman_parens] = ACTIONS(111), - [sym__block_quote_begin] = ACTIONS(113), - [sym__block_quote_continuation] = ACTIONS(115), - [sym__thematic_break_dash] = ACTIONS(117), - [sym__thematic_break_star] = ACTIONS(117), - [sym__footnote_begin] = ACTIONS(119), - [sym__verbatim_begin] = ACTIONS(121), - }, - [2] = { - [sym__block_with_section] = STATE(364), - [sym__block_element] = STATE(364), - [sym_section] = STATE(364), - [sym__heading] = STATE(4), - [sym_heading1] = STATE(4), - [sym_heading2] = STATE(4), - [sym_heading3] = STATE(4), - [sym_heading4] = STATE(4), - [sym_heading5] = STATE(4), - [sym_heading6] = STATE(4), - [sym_list] = STATE(364), - [sym__list_dash] = STATE(466), - [sym__list_item_dash] = STATE(1323), - [sym__list_plus] = STATE(466), - [sym__list_item_plus] = STATE(1324), - [sym__list_star] = STATE(466), - [sym__list_item_star] = STATE(1326), - [sym__list_task] = STATE(466), - [sym__list_item_task] = STATE(1288), - [sym_list_marker_task] = STATE(49), - [sym__list_definition] = STATE(466), - [sym__list_item_definition] = STATE(1502), - [sym__list_decimal_period] = STATE(466), - [sym__list_item_decimal_period] = STATE(1570), - [sym__list_decimal_paren] = STATE(466), - [sym__list_item_decimal_paren] = STATE(1569), - [sym__list_decimal_parens] = STATE(466), - [sym__list_item_decimal_parens] = STATE(1568), - [sym__list_lower_alpha_period] = STATE(466), - [sym__list_item_lower_alpha_period] = STATE(1566), - [sym__list_lower_alpha_paren] = STATE(466), - [sym__list_item_lower_alpha_paren] = STATE(1563), - [sym__list_lower_alpha_parens] = STATE(466), - [sym__list_item_lower_alpha_parens] = STATE(1561), - [sym__list_upper_alpha_period] = STATE(466), - [sym__list_item_upper_alpha_period] = STATE(1551), - [sym__list_upper_alpha_paren] = STATE(466), - [sym__list_item_upper_alpha_paren] = STATE(1548), - [sym__list_upper_alpha_parens] = STATE(466), - [sym__list_item_upper_alpha_parens] = STATE(1542), - [sym__list_lower_roman_period] = STATE(466), - [sym__list_item_lower_roman_period] = STATE(1531), - [sym__list_lower_roman_paren] = STATE(466), - [sym__list_item_lower_roman_paren] = STATE(1530), - [sym__list_lower_roman_parens] = STATE(466), - [sym__list_item_lower_roman_parens] = STATE(1526), - [sym__list_upper_roman_period] = STATE(466), - [sym__list_item_upper_roman_period] = STATE(1523), - [sym__list_upper_roman_paren] = STATE(466), - [sym__list_item_upper_roman_paren] = STATE(1457), - [sym__list_upper_roman_parens] = STATE(466), - [sym__list_item_upper_roman_parens] = STATE(1518), - [sym_table] = STATE(364), - [sym__table_content] = STATE(60), - [sym_table_separator] = STATE(60), - [sym_table_row] = STATE(223), - [sym_footnote] = STATE(364), - [sym_div] = STATE(364), - [sym_div_marker_begin] = STATE(2200), - [sym_code_block] = STATE(364), - [sym_raw_block] = STATE(364), - [sym_thematic_break] = STATE(364), - [sym_block_quote] = STATE(364), - [sym__block_quote_prefix] = STATE(1395), - [sym_link_reference_definition] = STATE(364), - [sym_block_attribute] = STATE(364), - [sym__paragraph] = STATE(364), - [sym__paragraph_content] = STATE(1739), - [sym__inline] = STATE(2311), - [sym__inline_element_with_whitespace] = STATE(229), - [sym__inline_element_with_newline] = STATE(229), - [sym__inline_core_element] = STATE(229), - [sym__hard_line_break] = STATE(716), - [sym_hard_line_break] = STATE(517), - [sym__smart_punctuation] = STATE(716), - [sym_autolink] = STATE(716), - [sym_emphasis] = STATE(716), - [sym_emphasis_begin] = STATE(283), - [sym_strong] = STATE(716), - [sym_strong_begin] = STATE(282), - [sym_highlighted] = STATE(716), - [sym_insert] = STATE(716), - [sym_delete] = STATE(716), - [sym_superscript] = STATE(716), - [sym_subscript] = STATE(716), - [sym_footnote_reference] = STATE(716), - [sym__image] = STATE(716), - [sym_full_reference_image] = STATE(716), - [sym_collapsed_reference_image] = STATE(716), - [sym_inline_image] = STATE(716), - [sym__image_description] = STATE(1412), - [sym__link] = STATE(716), - [sym_full_reference_link] = STATE(716), - [sym_collapsed_reference_link] = STATE(716), - [sym_inline_link] = STATE(716), - [sym_link_text] = STATE(1413), - [sym__comment_with_spaces] = STATE(716), - [sym_span] = STATE(716), - [sym_raw_inline] = STATE(716), - [sym_math] = STATE(716), - [sym_verbatim] = STATE(716), - [sym__todo_highlights] = STATE(716), - [sym_todo] = STATE(716), - [sym_note] = STATE(716), - [sym__symbol_fallback] = STATE(716), - [aux_sym__text] = STATE(562), - [aux_sym_document_repeat1] = STATE(6), - [aux_sym__list_dash_repeat1] = STATE(1323), - [aux_sym__list_plus_repeat1] = STATE(1324), - [aux_sym__list_star_repeat1] = STATE(1326), - [aux_sym__list_task_repeat1] = STATE(1288), - [aux_sym__list_definition_repeat1] = STATE(1502), - [aux_sym__list_decimal_period_repeat1] = STATE(1570), - [aux_sym__list_decimal_paren_repeat1] = STATE(1569), - [aux_sym__list_decimal_parens_repeat1] = STATE(1568), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(1566), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(1563), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(1561), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(1551), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(1548), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(1542), - [aux_sym__list_lower_roman_period_repeat1] = STATE(1531), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(1530), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(1526), - [aux_sym__list_upper_roman_period_repeat1] = STATE(1523), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(1457), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(1518), - [aux_sym_table_repeat1] = STATE(60), - [aux_sym__block_quote_prefix_repeat1] = STATE(1308), - [aux_sym__inline_repeat1] = STATE(229), - [anon_sym_LBRACK] = ACTIONS(123), - [anon_sym_PIPE] = ACTIONS(125), - [anon_sym_LBRACE] = ACTIONS(127), - [sym__whitespace1] = ACTIONS(11), - [anon_sym_BSLASH] = ACTIONS(13), - [sym_quotation_marks] = ACTIONS(15), - [sym_ellipsis] = ACTIONS(15), - [sym_em_dash] = ACTIONS(15), - [sym_en_dash] = ACTIONS(17), - [sym_backslash_escape] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(19), - [anon_sym_LBRACE_] = ACTIONS(21), - [anon_sym__] = ACTIONS(23), - [anon_sym_LBRACE_STAR] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_LBRACE_EQ] = ACTIONS(29), - [anon_sym_LBRACE_PLUS] = ACTIONS(31), - [anon_sym_LBRACE_DASH] = ACTIONS(33), - [sym_symbol] = ACTIONS(15), - [anon_sym_LBRACE_CARET] = ACTIONS(35), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_LBRACE_TILDE] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(37), - [anon_sym_LBRACK_CARET] = ACTIONS(39), - [anon_sym_BANG_LBRACK] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [anon_sym_TODO] = ACTIONS(45), - [anon_sym_WIP] = ACTIONS(45), - [anon_sym_NOTE] = ACTIONS(47), - [anon_sym_INFO] = ACTIONS(47), - [anon_sym_XXX] = ACTIONS(47), - [sym_fixme] = ACTIONS(15), - [aux_sym__text_token1] = ACTIONS(49), - [sym__block_close] = ACTIONS(129), - [sym__newline] = ACTIONS(131), - [sym__newline_inline] = ACTIONS(53), - [sym__heading1_begin] = ACTIONS(57), - [sym__heading2_begin] = ACTIONS(59), - [sym__heading3_begin] = ACTIONS(61), - [sym__heading4_begin] = ACTIONS(63), - [sym__heading5_begin] = ACTIONS(65), - [sym__heading6_begin] = ACTIONS(67), - [sym__div_begin] = ACTIONS(69), - [sym__code_block_begin] = ACTIONS(133), - [sym_list_marker_dash] = ACTIONS(73), - [sym_list_marker_star] = ACTIONS(75), - [sym_list_marker_plus] = ACTIONS(77), - [sym__list_marker_task_begin] = ACTIONS(79), - [sym_list_marker_definition] = ACTIONS(81), - [sym_list_marker_decimal_period] = ACTIONS(83), - [sym_list_marker_lower_alpha_period] = ACTIONS(85), - [sym_list_marker_upper_alpha_period] = ACTIONS(87), - [sym_list_marker_lower_roman_period] = ACTIONS(89), - [sym_list_marker_upper_roman_period] = ACTIONS(91), - [sym_list_marker_decimal_paren] = ACTIONS(93), - [sym_list_marker_lower_alpha_paren] = ACTIONS(95), - [sym_list_marker_upper_alpha_paren] = ACTIONS(97), - [sym_list_marker_lower_roman_paren] = ACTIONS(99), - [sym_list_marker_upper_roman_paren] = ACTIONS(101), - [sym_list_marker_decimal_parens] = ACTIONS(103), - [sym_list_marker_lower_alpha_parens] = ACTIONS(105), - [sym_list_marker_upper_alpha_parens] = ACTIONS(107), - [sym_list_marker_lower_roman_parens] = ACTIONS(109), - [sym_list_marker_upper_roman_parens] = ACTIONS(111), - [sym__block_quote_begin] = ACTIONS(135), - [sym__block_quote_continuation] = ACTIONS(115), - [sym__thematic_break_dash] = ACTIONS(137), - [sym__thematic_break_star] = ACTIONS(137), - [sym__footnote_begin] = ACTIONS(139), - [sym__verbatim_begin] = ACTIONS(121), - }, - [3] = { - [sym__block_with_section] = STATE(364), - [sym__block_element] = STATE(364), - [sym_section] = STATE(364), - [sym__heading] = STATE(4), - [sym_heading1] = STATE(4), - [sym_heading2] = STATE(4), - [sym_heading3] = STATE(4), - [sym_heading4] = STATE(4), - [sym_heading5] = STATE(4), - [sym_heading6] = STATE(4), - [sym_list] = STATE(364), - [sym__list_dash] = STATE(466), - [sym__list_item_dash] = STATE(1323), - [sym__list_plus] = STATE(466), - [sym__list_item_plus] = STATE(1324), - [sym__list_star] = STATE(466), - [sym__list_item_star] = STATE(1326), - [sym__list_task] = STATE(466), - [sym__list_item_task] = STATE(1288), - [sym_list_marker_task] = STATE(49), - [sym__list_definition] = STATE(466), - [sym__list_item_definition] = STATE(1502), - [sym__list_decimal_period] = STATE(466), - [sym__list_item_decimal_period] = STATE(1570), - [sym__list_decimal_paren] = STATE(466), - [sym__list_item_decimal_paren] = STATE(1569), - [sym__list_decimal_parens] = STATE(466), - [sym__list_item_decimal_parens] = STATE(1568), - [sym__list_lower_alpha_period] = STATE(466), - [sym__list_item_lower_alpha_period] = STATE(1566), - [sym__list_lower_alpha_paren] = STATE(466), - [sym__list_item_lower_alpha_paren] = STATE(1563), - [sym__list_lower_alpha_parens] = STATE(466), - [sym__list_item_lower_alpha_parens] = STATE(1561), - [sym__list_upper_alpha_period] = STATE(466), - [sym__list_item_upper_alpha_period] = STATE(1551), - [sym__list_upper_alpha_paren] = STATE(466), - [sym__list_item_upper_alpha_paren] = STATE(1548), - [sym__list_upper_alpha_parens] = STATE(466), - [sym__list_item_upper_alpha_parens] = STATE(1542), - [sym__list_lower_roman_period] = STATE(466), - [sym__list_item_lower_roman_period] = STATE(1531), - [sym__list_lower_roman_paren] = STATE(466), - [sym__list_item_lower_roman_paren] = STATE(1530), - [sym__list_lower_roman_parens] = STATE(466), - [sym__list_item_lower_roman_parens] = STATE(1526), - [sym__list_upper_roman_period] = STATE(466), - [sym__list_item_upper_roman_period] = STATE(1523), - [sym__list_upper_roman_paren] = STATE(466), - [sym__list_item_upper_roman_paren] = STATE(1457), - [sym__list_upper_roman_parens] = STATE(466), - [sym__list_item_upper_roman_parens] = STATE(1518), - [sym_table] = STATE(364), - [sym__table_content] = STATE(60), - [sym_table_separator] = STATE(60), - [sym_table_row] = STATE(223), - [sym_footnote] = STATE(364), - [sym_div] = STATE(364), - [sym_div_marker_begin] = STATE(2200), - [sym_code_block] = STATE(364), - [sym_raw_block] = STATE(364), - [sym_thematic_break] = STATE(364), - [sym_block_quote] = STATE(364), - [sym__block_quote_prefix] = STATE(1395), - [sym_link_reference_definition] = STATE(364), - [sym_block_attribute] = STATE(364), - [sym__paragraph] = STATE(364), - [sym__paragraph_content] = STATE(1739), - [sym__inline] = STATE(2311), - [sym__inline_element_with_whitespace] = STATE(229), - [sym__inline_element_with_newline] = STATE(229), - [sym__inline_core_element] = STATE(229), - [sym__hard_line_break] = STATE(716), - [sym_hard_line_break] = STATE(517), - [sym__smart_punctuation] = STATE(716), - [sym_autolink] = STATE(716), - [sym_emphasis] = STATE(716), - [sym_emphasis_begin] = STATE(283), - [sym_strong] = STATE(716), - [sym_strong_begin] = STATE(282), - [sym_highlighted] = STATE(716), - [sym_insert] = STATE(716), - [sym_delete] = STATE(716), - [sym_superscript] = STATE(716), - [sym_subscript] = STATE(716), - [sym_footnote_reference] = STATE(716), - [sym__image] = STATE(716), - [sym_full_reference_image] = STATE(716), - [sym_collapsed_reference_image] = STATE(716), - [sym_inline_image] = STATE(716), - [sym__image_description] = STATE(1412), - [sym__link] = STATE(716), - [sym_full_reference_link] = STATE(716), - [sym_collapsed_reference_link] = STATE(716), - [sym_inline_link] = STATE(716), - [sym_link_text] = STATE(1413), - [sym__comment_with_spaces] = STATE(716), - [sym_span] = STATE(716), - [sym_raw_inline] = STATE(716), - [sym_math] = STATE(716), - [sym_verbatim] = STATE(716), - [sym__todo_highlights] = STATE(716), - [sym_todo] = STATE(716), - [sym_note] = STATE(716), - [sym__symbol_fallback] = STATE(716), - [aux_sym__text] = STATE(562), - [aux_sym_document_repeat1] = STATE(8), - [aux_sym__list_dash_repeat1] = STATE(1323), - [aux_sym__list_plus_repeat1] = STATE(1324), - [aux_sym__list_star_repeat1] = STATE(1326), - [aux_sym__list_task_repeat1] = STATE(1288), - [aux_sym__list_definition_repeat1] = STATE(1502), - [aux_sym__list_decimal_period_repeat1] = STATE(1570), - [aux_sym__list_decimal_paren_repeat1] = STATE(1569), - [aux_sym__list_decimal_parens_repeat1] = STATE(1568), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(1566), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(1563), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(1561), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(1551), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(1548), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(1542), - [aux_sym__list_lower_roman_period_repeat1] = STATE(1531), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(1530), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(1526), - [aux_sym__list_upper_roman_period_repeat1] = STATE(1523), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(1457), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(1518), - [aux_sym_table_repeat1] = STATE(60), - [aux_sym__block_quote_prefix_repeat1] = STATE(1308), - [aux_sym__inline_repeat1] = STATE(229), - [anon_sym_LBRACK] = ACTIONS(123), - [anon_sym_PIPE] = ACTIONS(125), - [anon_sym_LBRACE] = ACTIONS(127), - [sym__whitespace1] = ACTIONS(11), - [anon_sym_BSLASH] = ACTIONS(13), - [sym_quotation_marks] = ACTIONS(15), - [sym_ellipsis] = ACTIONS(15), - [sym_em_dash] = ACTIONS(15), - [sym_en_dash] = ACTIONS(17), - [sym_backslash_escape] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(19), - [anon_sym_LBRACE_] = ACTIONS(21), - [anon_sym__] = ACTIONS(23), - [anon_sym_LBRACE_STAR] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_LBRACE_EQ] = ACTIONS(29), - [anon_sym_LBRACE_PLUS] = ACTIONS(31), - [anon_sym_LBRACE_DASH] = ACTIONS(33), - [sym_symbol] = ACTIONS(15), - [anon_sym_LBRACE_CARET] = ACTIONS(35), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_LBRACE_TILDE] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(37), - [anon_sym_LBRACK_CARET] = ACTIONS(39), - [anon_sym_BANG_LBRACK] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [anon_sym_TODO] = ACTIONS(45), - [anon_sym_WIP] = ACTIONS(45), - [anon_sym_NOTE] = ACTIONS(47), - [anon_sym_INFO] = ACTIONS(47), - [anon_sym_XXX] = ACTIONS(47), - [sym_fixme] = ACTIONS(15), - [aux_sym__text_token1] = ACTIONS(49), - [sym__block_close] = ACTIONS(141), - [sym__newline] = ACTIONS(131), - [sym__newline_inline] = ACTIONS(53), - [sym__heading1_begin] = ACTIONS(57), - [sym__heading2_begin] = ACTIONS(59), - [sym__heading3_begin] = ACTIONS(61), - [sym__heading4_begin] = ACTIONS(63), - [sym__heading5_begin] = ACTIONS(65), - [sym__heading6_begin] = ACTIONS(67), - [sym__div_begin] = ACTIONS(69), - [sym__code_block_begin] = ACTIONS(133), - [sym_list_marker_dash] = ACTIONS(73), - [sym_list_marker_star] = ACTIONS(75), - [sym_list_marker_plus] = ACTIONS(77), - [sym__list_marker_task_begin] = ACTIONS(79), - [sym_list_marker_definition] = ACTIONS(81), - [sym_list_marker_decimal_period] = ACTIONS(83), - [sym_list_marker_lower_alpha_period] = ACTIONS(85), - [sym_list_marker_upper_alpha_period] = ACTIONS(87), - [sym_list_marker_lower_roman_period] = ACTIONS(89), - [sym_list_marker_upper_roman_period] = ACTIONS(91), - [sym_list_marker_decimal_paren] = ACTIONS(93), - [sym_list_marker_lower_alpha_paren] = ACTIONS(95), - [sym_list_marker_upper_alpha_paren] = ACTIONS(97), - [sym_list_marker_lower_roman_paren] = ACTIONS(99), - [sym_list_marker_upper_roman_paren] = ACTIONS(101), - [sym_list_marker_decimal_parens] = ACTIONS(103), - [sym_list_marker_lower_alpha_parens] = ACTIONS(105), - [sym_list_marker_upper_alpha_parens] = ACTIONS(107), - [sym_list_marker_lower_roman_parens] = ACTIONS(109), - [sym_list_marker_upper_roman_parens] = ACTIONS(111), - [sym__block_quote_begin] = ACTIONS(135), - [sym__block_quote_continuation] = ACTIONS(115), - [sym__thematic_break_dash] = ACTIONS(137), - [sym__thematic_break_star] = ACTIONS(137), - [sym__footnote_begin] = ACTIONS(139), - [sym__verbatim_begin] = ACTIONS(121), - }, - [4] = { - [sym__block_with_section] = STATE(364), - [sym__block_element] = STATE(364), - [sym_section] = STATE(364), - [sym__heading] = STATE(4), - [sym_heading1] = STATE(4), - [sym_heading2] = STATE(4), - [sym_heading3] = STATE(4), - [sym_heading4] = STATE(4), - [sym_heading5] = STATE(4), - [sym_heading6] = STATE(4), - [sym_list] = STATE(364), - [sym__list_dash] = STATE(466), - [sym__list_item_dash] = STATE(1323), - [sym__list_plus] = STATE(466), - [sym__list_item_plus] = STATE(1324), - [sym__list_star] = STATE(466), - [sym__list_item_star] = STATE(1326), - [sym__list_task] = STATE(466), - [sym__list_item_task] = STATE(1288), - [sym_list_marker_task] = STATE(49), - [sym__list_definition] = STATE(466), - [sym__list_item_definition] = STATE(1502), - [sym__list_decimal_period] = STATE(466), - [sym__list_item_decimal_period] = STATE(1570), - [sym__list_decimal_paren] = STATE(466), - [sym__list_item_decimal_paren] = STATE(1569), - [sym__list_decimal_parens] = STATE(466), - [sym__list_item_decimal_parens] = STATE(1568), - [sym__list_lower_alpha_period] = STATE(466), - [sym__list_item_lower_alpha_period] = STATE(1566), - [sym__list_lower_alpha_paren] = STATE(466), - [sym__list_item_lower_alpha_paren] = STATE(1563), - [sym__list_lower_alpha_parens] = STATE(466), - [sym__list_item_lower_alpha_parens] = STATE(1561), - [sym__list_upper_alpha_period] = STATE(466), - [sym__list_item_upper_alpha_period] = STATE(1551), - [sym__list_upper_alpha_paren] = STATE(466), - [sym__list_item_upper_alpha_paren] = STATE(1548), - [sym__list_upper_alpha_parens] = STATE(466), - [sym__list_item_upper_alpha_parens] = STATE(1542), - [sym__list_lower_roman_period] = STATE(466), - [sym__list_item_lower_roman_period] = STATE(1531), - [sym__list_lower_roman_paren] = STATE(466), - [sym__list_item_lower_roman_paren] = STATE(1530), - [sym__list_lower_roman_parens] = STATE(466), - [sym__list_item_lower_roman_parens] = STATE(1526), - [sym__list_upper_roman_period] = STATE(466), - [sym__list_item_upper_roman_period] = STATE(1523), - [sym__list_upper_roman_paren] = STATE(466), - [sym__list_item_upper_roman_paren] = STATE(1457), - [sym__list_upper_roman_parens] = STATE(466), - [sym__list_item_upper_roman_parens] = STATE(1518), - [sym_table] = STATE(364), - [sym__table_content] = STATE(60), - [sym_table_separator] = STATE(60), - [sym_table_row] = STATE(223), - [sym_footnote] = STATE(364), - [sym_div] = STATE(364), - [sym_div_marker_begin] = STATE(2200), - [sym_code_block] = STATE(364), - [sym_raw_block] = STATE(364), - [sym_thematic_break] = STATE(364), - [sym_block_quote] = STATE(364), - [sym__block_quote_prefix] = STATE(1395), - [sym_link_reference_definition] = STATE(364), - [sym_block_attribute] = STATE(364), - [sym__paragraph] = STATE(364), - [sym__paragraph_content] = STATE(1739), - [sym__inline] = STATE(2311), - [sym__inline_element_with_whitespace] = STATE(229), - [sym__inline_element_with_newline] = STATE(229), - [sym__inline_core_element] = STATE(229), - [sym__hard_line_break] = STATE(716), - [sym_hard_line_break] = STATE(517), - [sym__smart_punctuation] = STATE(716), - [sym_autolink] = STATE(716), - [sym_emphasis] = STATE(716), - [sym_emphasis_begin] = STATE(283), - [sym_strong] = STATE(716), - [sym_strong_begin] = STATE(282), - [sym_highlighted] = STATE(716), - [sym_insert] = STATE(716), - [sym_delete] = STATE(716), - [sym_superscript] = STATE(716), - [sym_subscript] = STATE(716), - [sym_footnote_reference] = STATE(716), - [sym__image] = STATE(716), - [sym_full_reference_image] = STATE(716), - [sym_collapsed_reference_image] = STATE(716), - [sym_inline_image] = STATE(716), - [sym__image_description] = STATE(1412), - [sym__link] = STATE(716), - [sym_full_reference_link] = STATE(716), - [sym_collapsed_reference_link] = STATE(716), - [sym_inline_link] = STATE(716), - [sym_link_text] = STATE(1413), - [sym__comment_with_spaces] = STATE(716), - [sym_span] = STATE(716), - [sym_raw_inline] = STATE(716), - [sym_math] = STATE(716), - [sym_verbatim] = STATE(716), - [sym__todo_highlights] = STATE(716), - [sym_todo] = STATE(716), - [sym_note] = STATE(716), - [sym__symbol_fallback] = STATE(716), - [aux_sym__text] = STATE(562), - [aux_sym_document_repeat1] = STATE(3), - [aux_sym__list_dash_repeat1] = STATE(1323), - [aux_sym__list_plus_repeat1] = STATE(1324), - [aux_sym__list_star_repeat1] = STATE(1326), - [aux_sym__list_task_repeat1] = STATE(1288), - [aux_sym__list_definition_repeat1] = STATE(1502), - [aux_sym__list_decimal_period_repeat1] = STATE(1570), - [aux_sym__list_decimal_paren_repeat1] = STATE(1569), - [aux_sym__list_decimal_parens_repeat1] = STATE(1568), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(1566), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(1563), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(1561), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(1551), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(1548), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(1542), - [aux_sym__list_lower_roman_period_repeat1] = STATE(1531), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(1530), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(1526), - [aux_sym__list_upper_roman_period_repeat1] = STATE(1523), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(1457), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(1518), - [aux_sym_table_repeat1] = STATE(60), - [aux_sym__block_quote_prefix_repeat1] = STATE(1308), - [aux_sym__inline_repeat1] = STATE(229), - [anon_sym_LBRACK] = ACTIONS(123), - [anon_sym_PIPE] = ACTIONS(125), - [anon_sym_LBRACE] = ACTIONS(127), - [sym__whitespace1] = ACTIONS(11), - [anon_sym_BSLASH] = ACTIONS(13), - [sym_quotation_marks] = ACTIONS(15), - [sym_ellipsis] = ACTIONS(15), - [sym_em_dash] = ACTIONS(15), - [sym_en_dash] = ACTIONS(17), - [sym_backslash_escape] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(19), - [anon_sym_LBRACE_] = ACTIONS(21), - [anon_sym__] = ACTIONS(23), - [anon_sym_LBRACE_STAR] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_LBRACE_EQ] = ACTIONS(29), - [anon_sym_LBRACE_PLUS] = ACTIONS(31), - [anon_sym_LBRACE_DASH] = ACTIONS(33), - [sym_symbol] = ACTIONS(15), - [anon_sym_LBRACE_CARET] = ACTIONS(35), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_LBRACE_TILDE] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(37), - [anon_sym_LBRACK_CARET] = ACTIONS(39), - [anon_sym_BANG_LBRACK] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [anon_sym_TODO] = ACTIONS(45), - [anon_sym_WIP] = ACTIONS(45), - [anon_sym_NOTE] = ACTIONS(47), - [anon_sym_INFO] = ACTIONS(47), - [anon_sym_XXX] = ACTIONS(47), - [sym_fixme] = ACTIONS(15), - [aux_sym__text_token1] = ACTIONS(49), - [sym__block_close] = ACTIONS(143), - [sym__newline] = ACTIONS(131), - [sym__newline_inline] = ACTIONS(53), - [sym__heading1_begin] = ACTIONS(57), - [sym__heading2_begin] = ACTIONS(59), - [sym__heading3_begin] = ACTIONS(61), - [sym__heading4_begin] = ACTIONS(63), - [sym__heading5_begin] = ACTIONS(65), - [sym__heading6_begin] = ACTIONS(67), - [sym__div_begin] = ACTIONS(69), - [sym__code_block_begin] = ACTIONS(133), - [sym_list_marker_dash] = ACTIONS(73), - [sym_list_marker_star] = ACTIONS(75), - [sym_list_marker_plus] = ACTIONS(77), - [sym__list_marker_task_begin] = ACTIONS(79), - [sym_list_marker_definition] = ACTIONS(81), - [sym_list_marker_decimal_period] = ACTIONS(83), - [sym_list_marker_lower_alpha_period] = ACTIONS(85), - [sym_list_marker_upper_alpha_period] = ACTIONS(87), - [sym_list_marker_lower_roman_period] = ACTIONS(89), - [sym_list_marker_upper_roman_period] = ACTIONS(91), - [sym_list_marker_decimal_paren] = ACTIONS(93), - [sym_list_marker_lower_alpha_paren] = ACTIONS(95), - [sym_list_marker_upper_alpha_paren] = ACTIONS(97), - [sym_list_marker_lower_roman_paren] = ACTIONS(99), - [sym_list_marker_upper_roman_paren] = ACTIONS(101), - [sym_list_marker_decimal_parens] = ACTIONS(103), - [sym_list_marker_lower_alpha_parens] = ACTIONS(105), - [sym_list_marker_upper_alpha_parens] = ACTIONS(107), - [sym_list_marker_lower_roman_parens] = ACTIONS(109), - [sym_list_marker_upper_roman_parens] = ACTIONS(111), - [sym__block_quote_begin] = ACTIONS(135), - [sym__block_quote_continuation] = ACTIONS(115), - [sym__thematic_break_dash] = ACTIONS(137), - [sym__thematic_break_star] = ACTIONS(137), - [sym__footnote_begin] = ACTIONS(139), - [sym__verbatim_begin] = ACTIONS(121), - }, - [5] = { - [sym__block_with_section] = STATE(493), - [sym__block_element] = STATE(493), - [sym_section] = STATE(493), - [sym__heading] = STATE(2), - [sym_heading1] = STATE(2), - [sym_heading2] = STATE(2), - [sym_heading3] = STATE(2), - [sym_heading4] = STATE(2), - [sym_heading5] = STATE(2), - [sym_heading6] = STATE(2), - [sym_list] = STATE(493), - [sym__list_dash] = STATE(477), - [sym__list_item_dash] = STATE(1305), - [sym__list_plus] = STATE(477), - [sym__list_item_plus] = STATE(1306), - [sym__list_star] = STATE(477), - [sym__list_item_star] = STATE(1307), - [sym__list_task] = STATE(477), - [sym__list_item_task] = STATE(1290), - [sym_list_marker_task] = STATE(49), - [sym__list_definition] = STATE(477), - [sym__list_item_definition] = STATE(1565), - [sym__list_decimal_period] = STATE(477), - [sym__list_item_decimal_period] = STATE(1562), - [sym__list_decimal_paren] = STATE(477), - [sym__list_item_decimal_paren] = STATE(1560), - [sym__list_decimal_parens] = STATE(477), - [sym__list_item_decimal_parens] = STATE(1555), - [sym__list_lower_alpha_period] = STATE(477), - [sym__list_item_lower_alpha_period] = STATE(1554), - [sym__list_lower_alpha_paren] = STATE(477), - [sym__list_item_lower_alpha_paren] = STATE(1553), - [sym__list_lower_alpha_parens] = STATE(477), - [sym__list_item_lower_alpha_parens] = STATE(1545), - [sym__list_upper_alpha_period] = STATE(477), - [sym__list_item_upper_alpha_period] = STATE(1544), - [sym__list_upper_alpha_paren] = STATE(477), - [sym__list_item_upper_alpha_paren] = STATE(1543), - [sym__list_upper_alpha_parens] = STATE(477), - [sym__list_item_upper_alpha_parens] = STATE(1541), - [sym__list_lower_roman_period] = STATE(477), - [sym__list_item_lower_roman_period] = STATE(1539), - [sym__list_lower_roman_paren] = STATE(477), - [sym__list_item_lower_roman_paren] = STATE(1537), - [sym__list_lower_roman_parens] = STATE(477), - [sym__list_item_lower_roman_parens] = STATE(1494), - [sym__list_upper_roman_period] = STATE(477), - [sym__list_item_upper_roman_period] = STATE(1535), - [sym__list_upper_roman_paren] = STATE(477), - [sym__list_item_upper_roman_paren] = STATE(1533), - [sym__list_upper_roman_parens] = STATE(477), - [sym__list_item_upper_roman_parens] = STATE(1522), - [sym_table] = STATE(493), - [sym__table_content] = STATE(67), - [sym_table_separator] = STATE(67), - [sym_table_row] = STATE(211), - [sym_footnote] = STATE(493), - [sym_div] = STATE(493), - [sym_div_marker_begin] = STATE(2117), - [sym_code_block] = STATE(493), - [sym_raw_block] = STATE(493), - [sym_thematic_break] = STATE(493), - [sym_block_quote] = STATE(493), - [sym__block_quote_prefix] = STATE(1386), - [sym_link_reference_definition] = STATE(493), - [sym_block_attribute] = STATE(493), - [sym__paragraph] = STATE(493), - [sym__paragraph_content] = STATE(1759), - [sym__inline] = STATE(2311), - [sym__inline_element_with_whitespace] = STATE(229), - [sym__inline_element_with_newline] = STATE(229), - [sym__inline_core_element] = STATE(229), - [sym__hard_line_break] = STATE(716), - [sym_hard_line_break] = STATE(517), - [sym__smart_punctuation] = STATE(716), - [sym_autolink] = STATE(716), - [sym_emphasis] = STATE(716), - [sym_emphasis_begin] = STATE(283), - [sym_strong] = STATE(716), - [sym_strong_begin] = STATE(282), - [sym_highlighted] = STATE(716), - [sym_insert] = STATE(716), - [sym_delete] = STATE(716), - [sym_superscript] = STATE(716), - [sym_subscript] = STATE(716), - [sym_footnote_reference] = STATE(716), - [sym__image] = STATE(716), - [sym_full_reference_image] = STATE(716), - [sym_collapsed_reference_image] = STATE(716), - [sym_inline_image] = STATE(716), - [sym__image_description] = STATE(1412), - [sym__link] = STATE(716), - [sym_full_reference_link] = STATE(716), - [sym_collapsed_reference_link] = STATE(716), - [sym_inline_link] = STATE(716), - [sym_link_text] = STATE(1413), - [sym__comment_with_spaces] = STATE(716), - [sym_span] = STATE(716), - [sym_raw_inline] = STATE(716), - [sym_math] = STATE(716), - [sym_verbatim] = STATE(716), - [sym__todo_highlights] = STATE(716), - [sym_todo] = STATE(716), - [sym_note] = STATE(716), - [sym__symbol_fallback] = STATE(716), - [aux_sym__text] = STATE(562), - [aux_sym_document_repeat1] = STATE(9), - [aux_sym__list_dash_repeat1] = STATE(1305), - [aux_sym__list_plus_repeat1] = STATE(1306), - [aux_sym__list_star_repeat1] = STATE(1307), - [aux_sym__list_task_repeat1] = STATE(1290), - [aux_sym__list_definition_repeat1] = STATE(1565), - [aux_sym__list_decimal_period_repeat1] = STATE(1562), - [aux_sym__list_decimal_paren_repeat1] = STATE(1560), - [aux_sym__list_decimal_parens_repeat1] = STATE(1555), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(1554), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(1553), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(1545), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(1544), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(1543), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(1541), - [aux_sym__list_lower_roman_period_repeat1] = STATE(1539), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(1537), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(1494), - [aux_sym__list_upper_roman_period_repeat1] = STATE(1535), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(1533), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(1522), - [aux_sym_table_repeat1] = STATE(67), - [aux_sym__block_quote_prefix_repeat1] = STATE(1308), - [aux_sym__inline_repeat1] = STATE(229), - [ts_builtin_sym_end] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(9), - [sym__whitespace1] = ACTIONS(11), - [anon_sym_BSLASH] = ACTIONS(13), - [sym_quotation_marks] = ACTIONS(15), - [sym_ellipsis] = ACTIONS(15), - [sym_em_dash] = ACTIONS(15), - [sym_en_dash] = ACTIONS(17), - [sym_backslash_escape] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(19), - [anon_sym_LBRACE_] = ACTIONS(21), - [anon_sym__] = ACTIONS(23), - [anon_sym_LBRACE_STAR] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_LBRACE_EQ] = ACTIONS(29), - [anon_sym_LBRACE_PLUS] = ACTIONS(31), - [anon_sym_LBRACE_DASH] = ACTIONS(33), - [sym_symbol] = ACTIONS(15), - [anon_sym_LBRACE_CARET] = ACTIONS(35), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_LBRACE_TILDE] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(37), - [anon_sym_LBRACK_CARET] = ACTIONS(39), - [anon_sym_BANG_LBRACK] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [anon_sym_TODO] = ACTIONS(45), - [anon_sym_WIP] = ACTIONS(45), - [anon_sym_NOTE] = ACTIONS(47), - [anon_sym_INFO] = ACTIONS(47), - [anon_sym_XXX] = ACTIONS(47), - [sym_fixme] = ACTIONS(15), - [aux_sym__text_token1] = ACTIONS(49), - [sym__newline] = ACTIONS(51), - [sym__newline_inline] = ACTIONS(53), - [sym__heading1_begin] = ACTIONS(57), - [sym__heading2_begin] = ACTIONS(59), - [sym__heading3_begin] = ACTIONS(61), - [sym__heading4_begin] = ACTIONS(63), - [sym__heading5_begin] = ACTIONS(65), - [sym__heading6_begin] = ACTIONS(67), - [sym__div_begin] = ACTIONS(69), - [sym__code_block_begin] = ACTIONS(71), - [sym_list_marker_dash] = ACTIONS(73), - [sym_list_marker_star] = ACTIONS(75), - [sym_list_marker_plus] = ACTIONS(77), - [sym__list_marker_task_begin] = ACTIONS(79), - [sym_list_marker_definition] = ACTIONS(81), - [sym_list_marker_decimal_period] = ACTIONS(83), - [sym_list_marker_lower_alpha_period] = ACTIONS(85), - [sym_list_marker_upper_alpha_period] = ACTIONS(87), - [sym_list_marker_lower_roman_period] = ACTIONS(89), - [sym_list_marker_upper_roman_period] = ACTIONS(91), - [sym_list_marker_decimal_paren] = ACTIONS(93), - [sym_list_marker_lower_alpha_paren] = ACTIONS(95), - [sym_list_marker_upper_alpha_paren] = ACTIONS(97), - [sym_list_marker_lower_roman_paren] = ACTIONS(99), - [sym_list_marker_upper_roman_paren] = ACTIONS(101), - [sym_list_marker_decimal_parens] = ACTIONS(103), - [sym_list_marker_lower_alpha_parens] = ACTIONS(105), - [sym_list_marker_upper_alpha_parens] = ACTIONS(107), - [sym_list_marker_lower_roman_parens] = ACTIONS(109), - [sym_list_marker_upper_roman_parens] = ACTIONS(111), - [sym__block_quote_begin] = ACTIONS(113), - [sym__block_quote_continuation] = ACTIONS(115), - [sym__thematic_break_dash] = ACTIONS(117), - [sym__thematic_break_star] = ACTIONS(117), - [sym__footnote_begin] = ACTIONS(119), - [sym__verbatim_begin] = ACTIONS(121), - }, - [6] = { - [sym__block_with_section] = STATE(364), - [sym__block_element] = STATE(364), - [sym_section] = STATE(364), - [sym__heading] = STATE(4), - [sym_heading1] = STATE(4), - [sym_heading2] = STATE(4), - [sym_heading3] = STATE(4), - [sym_heading4] = STATE(4), - [sym_heading5] = STATE(4), - [sym_heading6] = STATE(4), - [sym_list] = STATE(364), - [sym__list_dash] = STATE(466), - [sym__list_item_dash] = STATE(1323), - [sym__list_plus] = STATE(466), - [sym__list_item_plus] = STATE(1324), - [sym__list_star] = STATE(466), - [sym__list_item_star] = STATE(1326), - [sym__list_task] = STATE(466), - [sym__list_item_task] = STATE(1288), - [sym_list_marker_task] = STATE(49), - [sym__list_definition] = STATE(466), - [sym__list_item_definition] = STATE(1502), - [sym__list_decimal_period] = STATE(466), - [sym__list_item_decimal_period] = STATE(1570), - [sym__list_decimal_paren] = STATE(466), - [sym__list_item_decimal_paren] = STATE(1569), - [sym__list_decimal_parens] = STATE(466), - [sym__list_item_decimal_parens] = STATE(1568), - [sym__list_lower_alpha_period] = STATE(466), - [sym__list_item_lower_alpha_period] = STATE(1566), - [sym__list_lower_alpha_paren] = STATE(466), - [sym__list_item_lower_alpha_paren] = STATE(1563), - [sym__list_lower_alpha_parens] = STATE(466), - [sym__list_item_lower_alpha_parens] = STATE(1561), - [sym__list_upper_alpha_period] = STATE(466), - [sym__list_item_upper_alpha_period] = STATE(1551), - [sym__list_upper_alpha_paren] = STATE(466), - [sym__list_item_upper_alpha_paren] = STATE(1548), - [sym__list_upper_alpha_parens] = STATE(466), - [sym__list_item_upper_alpha_parens] = STATE(1542), - [sym__list_lower_roman_period] = STATE(466), - [sym__list_item_lower_roman_period] = STATE(1531), - [sym__list_lower_roman_paren] = STATE(466), - [sym__list_item_lower_roman_paren] = STATE(1530), - [sym__list_lower_roman_parens] = STATE(466), - [sym__list_item_lower_roman_parens] = STATE(1526), - [sym__list_upper_roman_period] = STATE(466), - [sym__list_item_upper_roman_period] = STATE(1523), - [sym__list_upper_roman_paren] = STATE(466), - [sym__list_item_upper_roman_paren] = STATE(1457), - [sym__list_upper_roman_parens] = STATE(466), - [sym__list_item_upper_roman_parens] = STATE(1518), - [sym_table] = STATE(364), - [sym__table_content] = STATE(60), - [sym_table_separator] = STATE(60), - [sym_table_row] = STATE(223), - [sym_footnote] = STATE(364), - [sym_div] = STATE(364), - [sym_div_marker_begin] = STATE(2200), - [sym_code_block] = STATE(364), - [sym_raw_block] = STATE(364), - [sym_thematic_break] = STATE(364), - [sym_block_quote] = STATE(364), - [sym__block_quote_prefix] = STATE(1395), - [sym_link_reference_definition] = STATE(364), - [sym_block_attribute] = STATE(364), - [sym__paragraph] = STATE(364), - [sym__paragraph_content] = STATE(1739), - [sym__inline] = STATE(2311), - [sym__inline_element_with_whitespace] = STATE(229), - [sym__inline_element_with_newline] = STATE(229), - [sym__inline_core_element] = STATE(229), - [sym__hard_line_break] = STATE(716), - [sym_hard_line_break] = STATE(517), - [sym__smart_punctuation] = STATE(716), - [sym_autolink] = STATE(716), - [sym_emphasis] = STATE(716), - [sym_emphasis_begin] = STATE(283), - [sym_strong] = STATE(716), - [sym_strong_begin] = STATE(282), - [sym_highlighted] = STATE(716), - [sym_insert] = STATE(716), - [sym_delete] = STATE(716), - [sym_superscript] = STATE(716), - [sym_subscript] = STATE(716), - [sym_footnote_reference] = STATE(716), - [sym__image] = STATE(716), - [sym_full_reference_image] = STATE(716), - [sym_collapsed_reference_image] = STATE(716), - [sym_inline_image] = STATE(716), - [sym__image_description] = STATE(1412), - [sym__link] = STATE(716), - [sym_full_reference_link] = STATE(716), - [sym_collapsed_reference_link] = STATE(716), - [sym_inline_link] = STATE(716), - [sym_link_text] = STATE(1413), - [sym__comment_with_spaces] = STATE(716), - [sym_span] = STATE(716), - [sym_raw_inline] = STATE(716), - [sym_math] = STATE(716), - [sym_verbatim] = STATE(716), - [sym__todo_highlights] = STATE(716), - [sym_todo] = STATE(716), - [sym_note] = STATE(716), - [sym__symbol_fallback] = STATE(716), - [aux_sym__text] = STATE(562), - [aux_sym_document_repeat1] = STATE(8), - [aux_sym__list_dash_repeat1] = STATE(1323), - [aux_sym__list_plus_repeat1] = STATE(1324), - [aux_sym__list_star_repeat1] = STATE(1326), - [aux_sym__list_task_repeat1] = STATE(1288), - [aux_sym__list_definition_repeat1] = STATE(1502), - [aux_sym__list_decimal_period_repeat1] = STATE(1570), - [aux_sym__list_decimal_paren_repeat1] = STATE(1569), - [aux_sym__list_decimal_parens_repeat1] = STATE(1568), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(1566), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(1563), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(1561), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(1551), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(1548), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(1542), - [aux_sym__list_lower_roman_period_repeat1] = STATE(1531), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(1530), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(1526), - [aux_sym__list_upper_roman_period_repeat1] = STATE(1523), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(1457), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(1518), - [aux_sym_table_repeat1] = STATE(60), - [aux_sym__block_quote_prefix_repeat1] = STATE(1308), - [aux_sym__inline_repeat1] = STATE(229), - [anon_sym_LBRACK] = ACTIONS(123), - [anon_sym_PIPE] = ACTIONS(125), - [anon_sym_LBRACE] = ACTIONS(127), - [sym__whitespace1] = ACTIONS(11), - [anon_sym_BSLASH] = ACTIONS(13), - [sym_quotation_marks] = ACTIONS(15), - [sym_ellipsis] = ACTIONS(15), - [sym_em_dash] = ACTIONS(15), - [sym_en_dash] = ACTIONS(17), - [sym_backslash_escape] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(19), - [anon_sym_LBRACE_] = ACTIONS(21), - [anon_sym__] = ACTIONS(23), - [anon_sym_LBRACE_STAR] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_LBRACE_EQ] = ACTIONS(29), - [anon_sym_LBRACE_PLUS] = ACTIONS(31), - [anon_sym_LBRACE_DASH] = ACTIONS(33), - [sym_symbol] = ACTIONS(15), - [anon_sym_LBRACE_CARET] = ACTIONS(35), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_LBRACE_TILDE] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(37), - [anon_sym_LBRACK_CARET] = ACTIONS(39), - [anon_sym_BANG_LBRACK] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [anon_sym_TODO] = ACTIONS(45), - [anon_sym_WIP] = ACTIONS(45), - [anon_sym_NOTE] = ACTIONS(47), - [anon_sym_INFO] = ACTIONS(47), - [anon_sym_XXX] = ACTIONS(47), - [sym_fixme] = ACTIONS(15), - [aux_sym__text_token1] = ACTIONS(49), - [sym__block_close] = ACTIONS(147), - [sym__newline] = ACTIONS(131), - [sym__newline_inline] = ACTIONS(53), - [sym__heading1_begin] = ACTIONS(57), - [sym__heading2_begin] = ACTIONS(59), - [sym__heading3_begin] = ACTIONS(61), - [sym__heading4_begin] = ACTIONS(63), - [sym__heading5_begin] = ACTIONS(65), - [sym__heading6_begin] = ACTIONS(67), - [sym__div_begin] = ACTIONS(69), - [sym__code_block_begin] = ACTIONS(133), - [sym_list_marker_dash] = ACTIONS(73), - [sym_list_marker_star] = ACTIONS(75), - [sym_list_marker_plus] = ACTIONS(77), - [sym__list_marker_task_begin] = ACTIONS(79), - [sym_list_marker_definition] = ACTIONS(81), - [sym_list_marker_decimal_period] = ACTIONS(83), - [sym_list_marker_lower_alpha_period] = ACTIONS(85), - [sym_list_marker_upper_alpha_period] = ACTIONS(87), - [sym_list_marker_lower_roman_period] = ACTIONS(89), - [sym_list_marker_upper_roman_period] = ACTIONS(91), - [sym_list_marker_decimal_paren] = ACTIONS(93), - [sym_list_marker_lower_alpha_paren] = ACTIONS(95), - [sym_list_marker_upper_alpha_paren] = ACTIONS(97), - [sym_list_marker_lower_roman_paren] = ACTIONS(99), - [sym_list_marker_upper_roman_paren] = ACTIONS(101), - [sym_list_marker_decimal_parens] = ACTIONS(103), - [sym_list_marker_lower_alpha_parens] = ACTIONS(105), - [sym_list_marker_upper_alpha_parens] = ACTIONS(107), - [sym_list_marker_lower_roman_parens] = ACTIONS(109), - [sym_list_marker_upper_roman_parens] = ACTIONS(111), - [sym__block_quote_begin] = ACTIONS(135), - [sym__block_quote_continuation] = ACTIONS(115), - [sym__thematic_break_dash] = ACTIONS(137), - [sym__thematic_break_star] = ACTIONS(137), - [sym__footnote_begin] = ACTIONS(139), - [sym__verbatim_begin] = ACTIONS(121), - }, - [7] = { - [sym__block_with_section] = STATE(493), - [sym__block_element] = STATE(493), - [sym_section] = STATE(493), - [sym__heading] = STATE(2), - [sym_heading1] = STATE(2), - [sym_heading2] = STATE(2), - [sym_heading3] = STATE(2), - [sym_heading4] = STATE(2), - [sym_heading5] = STATE(2), - [sym_heading6] = STATE(2), - [sym_list] = STATE(493), - [sym__list_dash] = STATE(477), - [sym__list_item_dash] = STATE(1305), - [sym__list_plus] = STATE(477), - [sym__list_item_plus] = STATE(1306), - [sym__list_star] = STATE(477), - [sym__list_item_star] = STATE(1307), - [sym__list_task] = STATE(477), - [sym__list_item_task] = STATE(1290), - [sym_list_marker_task] = STATE(49), - [sym__list_definition] = STATE(477), - [sym__list_item_definition] = STATE(1565), - [sym__list_decimal_period] = STATE(477), - [sym__list_item_decimal_period] = STATE(1562), - [sym__list_decimal_paren] = STATE(477), - [sym__list_item_decimal_paren] = STATE(1560), - [sym__list_decimal_parens] = STATE(477), - [sym__list_item_decimal_parens] = STATE(1555), - [sym__list_lower_alpha_period] = STATE(477), - [sym__list_item_lower_alpha_period] = STATE(1554), - [sym__list_lower_alpha_paren] = STATE(477), - [sym__list_item_lower_alpha_paren] = STATE(1553), - [sym__list_lower_alpha_parens] = STATE(477), - [sym__list_item_lower_alpha_parens] = STATE(1545), - [sym__list_upper_alpha_period] = STATE(477), - [sym__list_item_upper_alpha_period] = STATE(1544), - [sym__list_upper_alpha_paren] = STATE(477), - [sym__list_item_upper_alpha_paren] = STATE(1543), - [sym__list_upper_alpha_parens] = STATE(477), - [sym__list_item_upper_alpha_parens] = STATE(1541), - [sym__list_lower_roman_period] = STATE(477), - [sym__list_item_lower_roman_period] = STATE(1539), - [sym__list_lower_roman_paren] = STATE(477), - [sym__list_item_lower_roman_paren] = STATE(1537), - [sym__list_lower_roman_parens] = STATE(477), - [sym__list_item_lower_roman_parens] = STATE(1494), - [sym__list_upper_roman_period] = STATE(477), - [sym__list_item_upper_roman_period] = STATE(1535), - [sym__list_upper_roman_paren] = STATE(477), - [sym__list_item_upper_roman_paren] = STATE(1533), - [sym__list_upper_roman_parens] = STATE(477), - [sym__list_item_upper_roman_parens] = STATE(1522), - [sym_table] = STATE(493), - [sym__table_content] = STATE(67), - [sym_table_separator] = STATE(67), - [sym_table_row] = STATE(211), - [sym_footnote] = STATE(493), - [sym_div] = STATE(493), - [sym_div_marker_begin] = STATE(2117), - [sym_code_block] = STATE(493), - [sym_raw_block] = STATE(493), - [sym_thematic_break] = STATE(493), - [sym_block_quote] = STATE(493), - [sym__block_quote_prefix] = STATE(1386), - [sym_link_reference_definition] = STATE(493), - [sym_block_attribute] = STATE(493), - [sym__paragraph] = STATE(493), - [sym__paragraph_content] = STATE(1759), - [sym__inline] = STATE(2311), - [sym__inline_element_with_whitespace] = STATE(229), - [sym__inline_element_with_newline] = STATE(229), - [sym__inline_core_element] = STATE(229), - [sym__hard_line_break] = STATE(716), - [sym_hard_line_break] = STATE(517), - [sym__smart_punctuation] = STATE(716), - [sym_autolink] = STATE(716), - [sym_emphasis] = STATE(716), - [sym_emphasis_begin] = STATE(283), - [sym_strong] = STATE(716), - [sym_strong_begin] = STATE(282), - [sym_highlighted] = STATE(716), - [sym_insert] = STATE(716), - [sym_delete] = STATE(716), - [sym_superscript] = STATE(716), - [sym_subscript] = STATE(716), - [sym_footnote_reference] = STATE(716), - [sym__image] = STATE(716), - [sym_full_reference_image] = STATE(716), - [sym_collapsed_reference_image] = STATE(716), - [sym_inline_image] = STATE(716), - [sym__image_description] = STATE(1412), - [sym__link] = STATE(716), - [sym_full_reference_link] = STATE(716), - [sym_collapsed_reference_link] = STATE(716), - [sym_inline_link] = STATE(716), - [sym_link_text] = STATE(1413), - [sym__comment_with_spaces] = STATE(716), - [sym_span] = STATE(716), - [sym_raw_inline] = STATE(716), - [sym_math] = STATE(716), - [sym_verbatim] = STATE(716), - [sym__todo_highlights] = STATE(716), - [sym_todo] = STATE(716), - [sym_note] = STATE(716), - [sym__symbol_fallback] = STATE(716), - [aux_sym__text] = STATE(562), - [aux_sym_document_repeat1] = STATE(9), - [aux_sym__list_dash_repeat1] = STATE(1305), - [aux_sym__list_plus_repeat1] = STATE(1306), - [aux_sym__list_star_repeat1] = STATE(1307), - [aux_sym__list_task_repeat1] = STATE(1290), - [aux_sym__list_definition_repeat1] = STATE(1565), - [aux_sym__list_decimal_period_repeat1] = STATE(1562), - [aux_sym__list_decimal_paren_repeat1] = STATE(1560), - [aux_sym__list_decimal_parens_repeat1] = STATE(1555), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(1554), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(1553), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(1545), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(1544), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(1543), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(1541), - [aux_sym__list_lower_roman_period_repeat1] = STATE(1539), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(1537), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(1494), - [aux_sym__list_upper_roman_period_repeat1] = STATE(1535), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(1533), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(1522), - [aux_sym_table_repeat1] = STATE(67), - [aux_sym__block_quote_prefix_repeat1] = STATE(1308), - [aux_sym__inline_repeat1] = STATE(229), - [ts_builtin_sym_end] = ACTIONS(149), - [anon_sym_LBRACK] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(9), - [sym__whitespace1] = ACTIONS(11), - [anon_sym_BSLASH] = ACTIONS(13), - [sym_quotation_marks] = ACTIONS(15), - [sym_ellipsis] = ACTIONS(15), - [sym_em_dash] = ACTIONS(15), - [sym_en_dash] = ACTIONS(17), - [sym_backslash_escape] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(19), - [anon_sym_LBRACE_] = ACTIONS(21), - [anon_sym__] = ACTIONS(23), - [anon_sym_LBRACE_STAR] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_LBRACE_EQ] = ACTIONS(29), - [anon_sym_LBRACE_PLUS] = ACTIONS(31), - [anon_sym_LBRACE_DASH] = ACTIONS(33), - [sym_symbol] = ACTIONS(15), - [anon_sym_LBRACE_CARET] = ACTIONS(35), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_LBRACE_TILDE] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(37), - [anon_sym_LBRACK_CARET] = ACTIONS(39), - [anon_sym_BANG_LBRACK] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [anon_sym_TODO] = ACTIONS(45), - [anon_sym_WIP] = ACTIONS(45), - [anon_sym_NOTE] = ACTIONS(47), - [anon_sym_INFO] = ACTIONS(47), - [anon_sym_XXX] = ACTIONS(47), - [sym_fixme] = ACTIONS(15), - [aux_sym__text_token1] = ACTIONS(49), - [sym__newline] = ACTIONS(51), - [sym__newline_inline] = ACTIONS(53), - [sym__heading1_begin] = ACTIONS(57), - [sym__heading2_begin] = ACTIONS(59), - [sym__heading3_begin] = ACTIONS(61), - [sym__heading4_begin] = ACTIONS(63), - [sym__heading5_begin] = ACTIONS(65), - [sym__heading6_begin] = ACTIONS(67), - [sym__div_begin] = ACTIONS(69), - [sym__code_block_begin] = ACTIONS(71), - [sym_list_marker_dash] = ACTIONS(73), - [sym_list_marker_star] = ACTIONS(75), - [sym_list_marker_plus] = ACTIONS(77), - [sym__list_marker_task_begin] = ACTIONS(79), - [sym_list_marker_definition] = ACTIONS(81), - [sym_list_marker_decimal_period] = ACTIONS(83), - [sym_list_marker_lower_alpha_period] = ACTIONS(85), - [sym_list_marker_upper_alpha_period] = ACTIONS(87), - [sym_list_marker_lower_roman_period] = ACTIONS(89), - [sym_list_marker_upper_roman_period] = ACTIONS(91), - [sym_list_marker_decimal_paren] = ACTIONS(93), - [sym_list_marker_lower_alpha_paren] = ACTIONS(95), - [sym_list_marker_upper_alpha_paren] = ACTIONS(97), - [sym_list_marker_lower_roman_paren] = ACTIONS(99), - [sym_list_marker_upper_roman_paren] = ACTIONS(101), - [sym_list_marker_decimal_parens] = ACTIONS(103), - [sym_list_marker_lower_alpha_parens] = ACTIONS(105), - [sym_list_marker_upper_alpha_parens] = ACTIONS(107), - [sym_list_marker_lower_roman_parens] = ACTIONS(109), - [sym_list_marker_upper_roman_parens] = ACTIONS(111), - [sym__block_quote_begin] = ACTIONS(113), - [sym__block_quote_continuation] = ACTIONS(115), - [sym__thematic_break_dash] = ACTIONS(117), - [sym__thematic_break_star] = ACTIONS(117), - [sym__footnote_begin] = ACTIONS(119), - [sym__verbatim_begin] = ACTIONS(121), - }, - [8] = { - [sym__block_with_section] = STATE(364), - [sym__block_element] = STATE(364), - [sym_section] = STATE(364), - [sym__heading] = STATE(4), - [sym_heading1] = STATE(4), - [sym_heading2] = STATE(4), - [sym_heading3] = STATE(4), - [sym_heading4] = STATE(4), - [sym_heading5] = STATE(4), - [sym_heading6] = STATE(4), - [sym_list] = STATE(364), - [sym__list_dash] = STATE(466), - [sym__list_item_dash] = STATE(1323), - [sym__list_plus] = STATE(466), - [sym__list_item_plus] = STATE(1324), - [sym__list_star] = STATE(466), - [sym__list_item_star] = STATE(1326), - [sym__list_task] = STATE(466), - [sym__list_item_task] = STATE(1288), - [sym_list_marker_task] = STATE(49), - [sym__list_definition] = STATE(466), - [sym__list_item_definition] = STATE(1502), - [sym__list_decimal_period] = STATE(466), - [sym__list_item_decimal_period] = STATE(1570), - [sym__list_decimal_paren] = STATE(466), - [sym__list_item_decimal_paren] = STATE(1569), - [sym__list_decimal_parens] = STATE(466), - [sym__list_item_decimal_parens] = STATE(1568), - [sym__list_lower_alpha_period] = STATE(466), - [sym__list_item_lower_alpha_period] = STATE(1566), - [sym__list_lower_alpha_paren] = STATE(466), - [sym__list_item_lower_alpha_paren] = STATE(1563), - [sym__list_lower_alpha_parens] = STATE(466), - [sym__list_item_lower_alpha_parens] = STATE(1561), - [sym__list_upper_alpha_period] = STATE(466), - [sym__list_item_upper_alpha_period] = STATE(1551), - [sym__list_upper_alpha_paren] = STATE(466), - [sym__list_item_upper_alpha_paren] = STATE(1548), - [sym__list_upper_alpha_parens] = STATE(466), - [sym__list_item_upper_alpha_parens] = STATE(1542), - [sym__list_lower_roman_period] = STATE(466), - [sym__list_item_lower_roman_period] = STATE(1531), - [sym__list_lower_roman_paren] = STATE(466), - [sym__list_item_lower_roman_paren] = STATE(1530), - [sym__list_lower_roman_parens] = STATE(466), - [sym__list_item_lower_roman_parens] = STATE(1526), - [sym__list_upper_roman_period] = STATE(466), - [sym__list_item_upper_roman_period] = STATE(1523), - [sym__list_upper_roman_paren] = STATE(466), - [sym__list_item_upper_roman_paren] = STATE(1457), - [sym__list_upper_roman_parens] = STATE(466), - [sym__list_item_upper_roman_parens] = STATE(1518), - [sym_table] = STATE(364), - [sym__table_content] = STATE(60), - [sym_table_separator] = STATE(60), - [sym_table_row] = STATE(223), - [sym_footnote] = STATE(364), - [sym_div] = STATE(364), - [sym_div_marker_begin] = STATE(2200), - [sym_code_block] = STATE(364), - [sym_raw_block] = STATE(364), - [sym_thematic_break] = STATE(364), - [sym_block_quote] = STATE(364), - [sym__block_quote_prefix] = STATE(1395), - [sym_link_reference_definition] = STATE(364), - [sym_block_attribute] = STATE(364), - [sym__paragraph] = STATE(364), - [sym__paragraph_content] = STATE(1739), - [sym__inline] = STATE(2311), - [sym__inline_element_with_whitespace] = STATE(229), - [sym__inline_element_with_newline] = STATE(229), - [sym__inline_core_element] = STATE(229), - [sym__hard_line_break] = STATE(716), - [sym_hard_line_break] = STATE(517), - [sym__smart_punctuation] = STATE(716), - [sym_autolink] = STATE(716), - [sym_emphasis] = STATE(716), - [sym_emphasis_begin] = STATE(283), - [sym_strong] = STATE(716), - [sym_strong_begin] = STATE(282), - [sym_highlighted] = STATE(716), - [sym_insert] = STATE(716), - [sym_delete] = STATE(716), - [sym_superscript] = STATE(716), - [sym_subscript] = STATE(716), - [sym_footnote_reference] = STATE(716), - [sym__image] = STATE(716), - [sym_full_reference_image] = STATE(716), - [sym_collapsed_reference_image] = STATE(716), - [sym_inline_image] = STATE(716), - [sym__image_description] = STATE(1412), - [sym__link] = STATE(716), - [sym_full_reference_link] = STATE(716), - [sym_collapsed_reference_link] = STATE(716), - [sym_inline_link] = STATE(716), - [sym_link_text] = STATE(1413), - [sym__comment_with_spaces] = STATE(716), - [sym_span] = STATE(716), - [sym_raw_inline] = STATE(716), - [sym_math] = STATE(716), - [sym_verbatim] = STATE(716), - [sym__todo_highlights] = STATE(716), - [sym_todo] = STATE(716), - [sym_note] = STATE(716), - [sym__symbol_fallback] = STATE(716), - [aux_sym__text] = STATE(562), - [aux_sym_document_repeat1] = STATE(8), - [aux_sym__list_dash_repeat1] = STATE(1323), - [aux_sym__list_plus_repeat1] = STATE(1324), - [aux_sym__list_star_repeat1] = STATE(1326), - [aux_sym__list_task_repeat1] = STATE(1288), - [aux_sym__list_definition_repeat1] = STATE(1502), - [aux_sym__list_decimal_period_repeat1] = STATE(1570), - [aux_sym__list_decimal_paren_repeat1] = STATE(1569), - [aux_sym__list_decimal_parens_repeat1] = STATE(1568), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(1566), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(1563), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(1561), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(1551), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(1548), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(1542), - [aux_sym__list_lower_roman_period_repeat1] = STATE(1531), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(1530), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(1526), - [aux_sym__list_upper_roman_period_repeat1] = STATE(1523), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(1457), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(1518), - [aux_sym_table_repeat1] = STATE(60), - [aux_sym__block_quote_prefix_repeat1] = STATE(1308), - [aux_sym__inline_repeat1] = STATE(229), - [anon_sym_LBRACK] = ACTIONS(151), - [anon_sym_PIPE] = ACTIONS(154), - [anon_sym_LBRACE] = ACTIONS(157), - [sym__whitespace1] = ACTIONS(160), - [anon_sym_BSLASH] = ACTIONS(163), - [sym_quotation_marks] = ACTIONS(166), - [sym_ellipsis] = ACTIONS(166), - [sym_em_dash] = ACTIONS(166), - [sym_en_dash] = ACTIONS(169), - [sym_backslash_escape] = ACTIONS(169), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_LBRACE_] = ACTIONS(175), - [anon_sym__] = ACTIONS(178), - [anon_sym_LBRACE_STAR] = ACTIONS(181), - [anon_sym_STAR] = ACTIONS(184), - [anon_sym_LBRACE_EQ] = ACTIONS(187), - [anon_sym_LBRACE_PLUS] = ACTIONS(190), - [anon_sym_LBRACE_DASH] = ACTIONS(193), - [sym_symbol] = ACTIONS(166), - [anon_sym_LBRACE_CARET] = ACTIONS(196), - [anon_sym_CARET] = ACTIONS(196), - [anon_sym_LBRACE_TILDE] = ACTIONS(199), - [anon_sym_TILDE] = ACTIONS(199), - [anon_sym_LBRACK_CARET] = ACTIONS(202), - [anon_sym_BANG_LBRACK] = ACTIONS(205), - [anon_sym_DOLLAR] = ACTIONS(208), - [anon_sym_TODO] = ACTIONS(211), - [anon_sym_WIP] = ACTIONS(211), - [anon_sym_NOTE] = ACTIONS(214), - [anon_sym_INFO] = ACTIONS(214), - [anon_sym_XXX] = ACTIONS(214), - [sym_fixme] = ACTIONS(166), - [aux_sym__text_token1] = ACTIONS(217), - [sym__block_close] = ACTIONS(220), - [sym__newline] = ACTIONS(222), - [sym__newline_inline] = ACTIONS(225), - [sym__heading1_begin] = ACTIONS(228), - [sym__heading2_begin] = ACTIONS(231), - [sym__heading3_begin] = ACTIONS(234), - [sym__heading4_begin] = ACTIONS(237), - [sym__heading5_begin] = ACTIONS(240), - [sym__heading6_begin] = ACTIONS(243), - [sym__div_begin] = ACTIONS(246), - [sym__code_block_begin] = ACTIONS(249), - [sym_list_marker_dash] = ACTIONS(252), - [sym_list_marker_star] = ACTIONS(255), - [sym_list_marker_plus] = ACTIONS(258), - [sym__list_marker_task_begin] = ACTIONS(261), - [sym_list_marker_definition] = ACTIONS(264), - [sym_list_marker_decimal_period] = ACTIONS(267), - [sym_list_marker_lower_alpha_period] = ACTIONS(270), - [sym_list_marker_upper_alpha_period] = ACTIONS(273), - [sym_list_marker_lower_roman_period] = ACTIONS(276), - [sym_list_marker_upper_roman_period] = ACTIONS(279), - [sym_list_marker_decimal_paren] = ACTIONS(282), - [sym_list_marker_lower_alpha_paren] = ACTIONS(285), - [sym_list_marker_upper_alpha_paren] = ACTIONS(288), - [sym_list_marker_lower_roman_paren] = ACTIONS(291), - [sym_list_marker_upper_roman_paren] = ACTIONS(294), - [sym_list_marker_decimal_parens] = ACTIONS(297), - [sym_list_marker_lower_alpha_parens] = ACTIONS(300), - [sym_list_marker_upper_alpha_parens] = ACTIONS(303), - [sym_list_marker_lower_roman_parens] = ACTIONS(306), - [sym_list_marker_upper_roman_parens] = ACTIONS(309), - [sym__block_quote_begin] = ACTIONS(312), - [sym__block_quote_continuation] = ACTIONS(315), - [sym__thematic_break_dash] = ACTIONS(318), - [sym__thematic_break_star] = ACTIONS(318), - [sym__footnote_begin] = ACTIONS(321), - [sym__verbatim_begin] = ACTIONS(324), - }, - [9] = { - [sym__block_with_section] = STATE(493), - [sym__block_element] = STATE(493), - [sym_section] = STATE(493), - [sym__heading] = STATE(2), - [sym_heading1] = STATE(2), - [sym_heading2] = STATE(2), - [sym_heading3] = STATE(2), - [sym_heading4] = STATE(2), - [sym_heading5] = STATE(2), - [sym_heading6] = STATE(2), - [sym_list] = STATE(493), - [sym__list_dash] = STATE(477), - [sym__list_item_dash] = STATE(1305), - [sym__list_plus] = STATE(477), - [sym__list_item_plus] = STATE(1306), - [sym__list_star] = STATE(477), - [sym__list_item_star] = STATE(1307), - [sym__list_task] = STATE(477), - [sym__list_item_task] = STATE(1290), - [sym_list_marker_task] = STATE(49), - [sym__list_definition] = STATE(477), - [sym__list_item_definition] = STATE(1565), - [sym__list_decimal_period] = STATE(477), - [sym__list_item_decimal_period] = STATE(1562), - [sym__list_decimal_paren] = STATE(477), - [sym__list_item_decimal_paren] = STATE(1560), - [sym__list_decimal_parens] = STATE(477), - [sym__list_item_decimal_parens] = STATE(1555), - [sym__list_lower_alpha_period] = STATE(477), - [sym__list_item_lower_alpha_period] = STATE(1554), - [sym__list_lower_alpha_paren] = STATE(477), - [sym__list_item_lower_alpha_paren] = STATE(1553), - [sym__list_lower_alpha_parens] = STATE(477), - [sym__list_item_lower_alpha_parens] = STATE(1545), - [sym__list_upper_alpha_period] = STATE(477), - [sym__list_item_upper_alpha_period] = STATE(1544), - [sym__list_upper_alpha_paren] = STATE(477), - [sym__list_item_upper_alpha_paren] = STATE(1543), - [sym__list_upper_alpha_parens] = STATE(477), - [sym__list_item_upper_alpha_parens] = STATE(1541), - [sym__list_lower_roman_period] = STATE(477), - [sym__list_item_lower_roman_period] = STATE(1539), - [sym__list_lower_roman_paren] = STATE(477), - [sym__list_item_lower_roman_paren] = STATE(1537), - [sym__list_lower_roman_parens] = STATE(477), - [sym__list_item_lower_roman_parens] = STATE(1494), - [sym__list_upper_roman_period] = STATE(477), - [sym__list_item_upper_roman_period] = STATE(1535), - [sym__list_upper_roman_paren] = STATE(477), - [sym__list_item_upper_roman_paren] = STATE(1533), - [sym__list_upper_roman_parens] = STATE(477), - [sym__list_item_upper_roman_parens] = STATE(1522), - [sym_table] = STATE(493), - [sym__table_content] = STATE(67), - [sym_table_separator] = STATE(67), - [sym_table_row] = STATE(211), - [sym_footnote] = STATE(493), - [sym_div] = STATE(493), - [sym_div_marker_begin] = STATE(2117), - [sym_code_block] = STATE(493), - [sym_raw_block] = STATE(493), - [sym_thematic_break] = STATE(493), - [sym_block_quote] = STATE(493), - [sym__block_quote_prefix] = STATE(1386), - [sym_link_reference_definition] = STATE(493), - [sym_block_attribute] = STATE(493), - [sym__paragraph] = STATE(493), - [sym__paragraph_content] = STATE(1759), - [sym__inline] = STATE(2311), - [sym__inline_element_with_whitespace] = STATE(229), - [sym__inline_element_with_newline] = STATE(229), - [sym__inline_core_element] = STATE(229), - [sym__hard_line_break] = STATE(716), - [sym_hard_line_break] = STATE(517), - [sym__smart_punctuation] = STATE(716), - [sym_autolink] = STATE(716), - [sym_emphasis] = STATE(716), - [sym_emphasis_begin] = STATE(283), - [sym_strong] = STATE(716), - [sym_strong_begin] = STATE(282), - [sym_highlighted] = STATE(716), - [sym_insert] = STATE(716), - [sym_delete] = STATE(716), - [sym_superscript] = STATE(716), - [sym_subscript] = STATE(716), - [sym_footnote_reference] = STATE(716), - [sym__image] = STATE(716), - [sym_full_reference_image] = STATE(716), - [sym_collapsed_reference_image] = STATE(716), - [sym_inline_image] = STATE(716), - [sym__image_description] = STATE(1412), - [sym__link] = STATE(716), - [sym_full_reference_link] = STATE(716), - [sym_collapsed_reference_link] = STATE(716), - [sym_inline_link] = STATE(716), - [sym_link_text] = STATE(1413), - [sym__comment_with_spaces] = STATE(716), - [sym_span] = STATE(716), - [sym_raw_inline] = STATE(716), - [sym_math] = STATE(716), - [sym_verbatim] = STATE(716), - [sym__todo_highlights] = STATE(716), - [sym_todo] = STATE(716), - [sym_note] = STATE(716), - [sym__symbol_fallback] = STATE(716), - [aux_sym__text] = STATE(562), - [aux_sym_document_repeat1] = STATE(9), - [aux_sym__list_dash_repeat1] = STATE(1305), - [aux_sym__list_plus_repeat1] = STATE(1306), - [aux_sym__list_star_repeat1] = STATE(1307), - [aux_sym__list_task_repeat1] = STATE(1290), - [aux_sym__list_definition_repeat1] = STATE(1565), - [aux_sym__list_decimal_period_repeat1] = STATE(1562), - [aux_sym__list_decimal_paren_repeat1] = STATE(1560), - [aux_sym__list_decimal_parens_repeat1] = STATE(1555), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(1554), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(1553), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(1545), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(1544), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(1543), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(1541), - [aux_sym__list_lower_roman_period_repeat1] = STATE(1539), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(1537), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(1494), - [aux_sym__list_upper_roman_period_repeat1] = STATE(1535), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(1533), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(1522), - [aux_sym_table_repeat1] = STATE(67), - [aux_sym__block_quote_prefix_repeat1] = STATE(1308), - [aux_sym__inline_repeat1] = STATE(229), - [ts_builtin_sym_end] = ACTIONS(220), - [anon_sym_LBRACK] = ACTIONS(327), - [anon_sym_PIPE] = ACTIONS(330), - [anon_sym_LBRACE] = ACTIONS(333), - [sym__whitespace1] = ACTIONS(160), - [anon_sym_BSLASH] = ACTIONS(163), - [sym_quotation_marks] = ACTIONS(166), - [sym_ellipsis] = ACTIONS(166), - [sym_em_dash] = ACTIONS(166), - [sym_en_dash] = ACTIONS(169), - [sym_backslash_escape] = ACTIONS(169), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_LBRACE_] = ACTIONS(175), - [anon_sym__] = ACTIONS(178), - [anon_sym_LBRACE_STAR] = ACTIONS(181), - [anon_sym_STAR] = ACTIONS(184), - [anon_sym_LBRACE_EQ] = ACTIONS(187), - [anon_sym_LBRACE_PLUS] = ACTIONS(190), - [anon_sym_LBRACE_DASH] = ACTIONS(193), - [sym_symbol] = ACTIONS(166), - [anon_sym_LBRACE_CARET] = ACTIONS(196), - [anon_sym_CARET] = ACTIONS(196), - [anon_sym_LBRACE_TILDE] = ACTIONS(199), - [anon_sym_TILDE] = ACTIONS(199), - [anon_sym_LBRACK_CARET] = ACTIONS(202), - [anon_sym_BANG_LBRACK] = ACTIONS(205), - [anon_sym_DOLLAR] = ACTIONS(208), - [anon_sym_TODO] = ACTIONS(211), - [anon_sym_WIP] = ACTIONS(211), - [anon_sym_NOTE] = ACTIONS(214), - [anon_sym_INFO] = ACTIONS(214), - [anon_sym_XXX] = ACTIONS(214), - [sym_fixme] = ACTIONS(166), - [aux_sym__text_token1] = ACTIONS(217), - [sym__newline] = ACTIONS(336), - [sym__newline_inline] = ACTIONS(225), - [sym__heading1_begin] = ACTIONS(228), - [sym__heading2_begin] = ACTIONS(231), - [sym__heading3_begin] = ACTIONS(234), - [sym__heading4_begin] = ACTIONS(237), - [sym__heading5_begin] = ACTIONS(240), - [sym__heading6_begin] = ACTIONS(243), - [sym__div_begin] = ACTIONS(246), - [sym__code_block_begin] = ACTIONS(339), - [sym_list_marker_dash] = ACTIONS(252), - [sym_list_marker_star] = ACTIONS(255), - [sym_list_marker_plus] = ACTIONS(258), - [sym__list_marker_task_begin] = ACTIONS(261), - [sym_list_marker_definition] = ACTIONS(264), - [sym_list_marker_decimal_period] = ACTIONS(267), - [sym_list_marker_lower_alpha_period] = ACTIONS(270), - [sym_list_marker_upper_alpha_period] = ACTIONS(273), - [sym_list_marker_lower_roman_period] = ACTIONS(276), - [sym_list_marker_upper_roman_period] = ACTIONS(279), - [sym_list_marker_decimal_paren] = ACTIONS(282), - [sym_list_marker_lower_alpha_paren] = ACTIONS(285), - [sym_list_marker_upper_alpha_paren] = ACTIONS(288), - [sym_list_marker_lower_roman_paren] = ACTIONS(291), - [sym_list_marker_upper_roman_paren] = ACTIONS(294), - [sym_list_marker_decimal_parens] = ACTIONS(297), - [sym_list_marker_lower_alpha_parens] = ACTIONS(300), - [sym_list_marker_upper_alpha_parens] = ACTIONS(303), - [sym_list_marker_lower_roman_parens] = ACTIONS(306), - [sym_list_marker_upper_roman_parens] = ACTIONS(309), - [sym__block_quote_begin] = ACTIONS(342), - [sym__block_quote_continuation] = ACTIONS(315), - [sym__thematic_break_dash] = ACTIONS(345), - [sym__thematic_break_star] = ACTIONS(345), - [sym__footnote_begin] = ACTIONS(348), - [sym__verbatim_begin] = ACTIONS(324), - }, - [10] = { - [sym__block_with_section] = STATE(493), - [sym__block_element] = STATE(493), - [sym_section] = STATE(493), - [sym__heading] = STATE(2), - [sym_heading1] = STATE(2), - [sym_heading2] = STATE(2), - [sym_heading3] = STATE(2), - [sym_heading4] = STATE(2), - [sym_heading5] = STATE(2), - [sym_heading6] = STATE(2), - [sym_list] = STATE(493), - [sym__list_dash] = STATE(477), - [sym__list_item_dash] = STATE(1305), - [sym__list_plus] = STATE(477), - [sym__list_item_plus] = STATE(1306), - [sym__list_star] = STATE(477), - [sym__list_item_star] = STATE(1307), - [sym__list_task] = STATE(477), - [sym__list_item_task] = STATE(1290), - [sym_list_marker_task] = STATE(49), - [sym__list_definition] = STATE(477), - [sym__list_item_definition] = STATE(1565), - [sym__list_decimal_period] = STATE(477), - [sym__list_item_decimal_period] = STATE(1562), - [sym__list_decimal_paren] = STATE(477), - [sym__list_item_decimal_paren] = STATE(1560), - [sym__list_decimal_parens] = STATE(477), - [sym__list_item_decimal_parens] = STATE(1555), - [sym__list_lower_alpha_period] = STATE(477), - [sym__list_item_lower_alpha_period] = STATE(1554), - [sym__list_lower_alpha_paren] = STATE(477), - [sym__list_item_lower_alpha_paren] = STATE(1553), - [sym__list_lower_alpha_parens] = STATE(477), - [sym__list_item_lower_alpha_parens] = STATE(1545), - [sym__list_upper_alpha_period] = STATE(477), - [sym__list_item_upper_alpha_period] = STATE(1544), - [sym__list_upper_alpha_paren] = STATE(477), - [sym__list_item_upper_alpha_paren] = STATE(1543), - [sym__list_upper_alpha_parens] = STATE(477), - [sym__list_item_upper_alpha_parens] = STATE(1541), - [sym__list_lower_roman_period] = STATE(477), - [sym__list_item_lower_roman_period] = STATE(1539), - [sym__list_lower_roman_paren] = STATE(477), - [sym__list_item_lower_roman_paren] = STATE(1537), - [sym__list_lower_roman_parens] = STATE(477), - [sym__list_item_lower_roman_parens] = STATE(1494), - [sym__list_upper_roman_period] = STATE(477), - [sym__list_item_upper_roman_period] = STATE(1535), - [sym__list_upper_roman_paren] = STATE(477), - [sym__list_item_upper_roman_paren] = STATE(1533), - [sym__list_upper_roman_parens] = STATE(477), - [sym__list_item_upper_roman_parens] = STATE(1522), - [sym_table] = STATE(493), - [sym__table_content] = STATE(67), - [sym_table_separator] = STATE(67), - [sym_table_row] = STATE(211), - [sym_footnote] = STATE(493), - [sym_div] = STATE(493), - [sym_div_marker_begin] = STATE(2117), - [sym_code_block] = STATE(493), - [sym_raw_block] = STATE(493), - [sym_thematic_break] = STATE(493), - [sym_block_quote] = STATE(493), - [sym__block_quote_prefix] = STATE(1386), - [sym_link_reference_definition] = STATE(493), - [sym_block_attribute] = STATE(493), - [sym__paragraph] = STATE(493), - [sym__paragraph_content] = STATE(1759), - [sym__inline] = STATE(2311), - [sym__inline_element_with_whitespace] = STATE(229), - [sym__inline_element_with_newline] = STATE(229), - [sym__inline_core_element] = STATE(229), - [sym__hard_line_break] = STATE(716), - [sym_hard_line_break] = STATE(517), - [sym__smart_punctuation] = STATE(716), - [sym_autolink] = STATE(716), - [sym_emphasis] = STATE(716), - [sym_emphasis_begin] = STATE(283), - [sym_strong] = STATE(716), - [sym_strong_begin] = STATE(282), - [sym_highlighted] = STATE(716), - [sym_insert] = STATE(716), - [sym_delete] = STATE(716), - [sym_superscript] = STATE(716), - [sym_subscript] = STATE(716), - [sym_footnote_reference] = STATE(716), - [sym__image] = STATE(716), - [sym_full_reference_image] = STATE(716), - [sym_collapsed_reference_image] = STATE(716), - [sym_inline_image] = STATE(716), - [sym__image_description] = STATE(1412), - [sym__link] = STATE(716), - [sym_full_reference_link] = STATE(716), - [sym_collapsed_reference_link] = STATE(716), - [sym_inline_link] = STATE(716), - [sym_link_text] = STATE(1413), - [sym__comment_with_spaces] = STATE(716), - [sym_span] = STATE(716), - [sym_raw_inline] = STATE(716), - [sym_math] = STATE(716), - [sym_verbatim] = STATE(716), - [sym__todo_highlights] = STATE(716), - [sym_todo] = STATE(716), - [sym_note] = STATE(716), - [sym__symbol_fallback] = STATE(716), - [aux_sym__text] = STATE(562), - [aux_sym_document_repeat1] = STATE(5), - [aux_sym__list_dash_repeat1] = STATE(1305), - [aux_sym__list_plus_repeat1] = STATE(1306), - [aux_sym__list_star_repeat1] = STATE(1307), - [aux_sym__list_task_repeat1] = STATE(1290), - [aux_sym__list_definition_repeat1] = STATE(1565), - [aux_sym__list_decimal_period_repeat1] = STATE(1562), - [aux_sym__list_decimal_paren_repeat1] = STATE(1560), - [aux_sym__list_decimal_parens_repeat1] = STATE(1555), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(1554), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(1553), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(1545), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(1544), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(1543), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(1541), - [aux_sym__list_lower_roman_period_repeat1] = STATE(1539), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(1537), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(1494), - [aux_sym__list_upper_roman_period_repeat1] = STATE(1535), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(1533), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(1522), - [aux_sym_table_repeat1] = STATE(67), - [aux_sym__block_quote_prefix_repeat1] = STATE(1308), - [aux_sym__inline_repeat1] = STATE(229), - [ts_builtin_sym_end] = ACTIONS(149), - [anon_sym_LBRACK] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(9), - [sym__whitespace1] = ACTIONS(11), - [anon_sym_BSLASH] = ACTIONS(13), - [sym_quotation_marks] = ACTIONS(15), - [sym_ellipsis] = ACTIONS(15), - [sym_em_dash] = ACTIONS(15), - [sym_en_dash] = ACTIONS(17), - [sym_backslash_escape] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(19), - [anon_sym_LBRACE_] = ACTIONS(21), - [anon_sym__] = ACTIONS(23), - [anon_sym_LBRACE_STAR] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_LBRACE_EQ] = ACTIONS(29), - [anon_sym_LBRACE_PLUS] = ACTIONS(31), - [anon_sym_LBRACE_DASH] = ACTIONS(33), - [sym_symbol] = ACTIONS(15), - [anon_sym_LBRACE_CARET] = ACTIONS(35), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_LBRACE_TILDE] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(37), - [anon_sym_LBRACK_CARET] = ACTIONS(39), - [anon_sym_BANG_LBRACK] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [anon_sym_TODO] = ACTIONS(45), - [anon_sym_WIP] = ACTIONS(45), - [anon_sym_NOTE] = ACTIONS(47), - [anon_sym_INFO] = ACTIONS(47), - [anon_sym_XXX] = ACTIONS(47), - [sym_fixme] = ACTIONS(15), - [aux_sym__text_token1] = ACTIONS(49), - [sym__newline] = ACTIONS(51), - [sym__newline_inline] = ACTIONS(53), - [sym__heading1_begin] = ACTIONS(57), - [sym__heading2_begin] = ACTIONS(59), - [sym__heading3_begin] = ACTIONS(61), - [sym__heading4_begin] = ACTIONS(63), - [sym__heading5_begin] = ACTIONS(65), - [sym__heading6_begin] = ACTIONS(67), - [sym__div_begin] = ACTIONS(69), - [sym__code_block_begin] = ACTIONS(71), - [sym_list_marker_dash] = ACTIONS(73), - [sym_list_marker_star] = ACTIONS(75), - [sym_list_marker_plus] = ACTIONS(77), - [sym__list_marker_task_begin] = ACTIONS(79), - [sym_list_marker_definition] = ACTIONS(81), - [sym_list_marker_decimal_period] = ACTIONS(83), - [sym_list_marker_lower_alpha_period] = ACTIONS(85), - [sym_list_marker_upper_alpha_period] = ACTIONS(87), - [sym_list_marker_lower_roman_period] = ACTIONS(89), - [sym_list_marker_upper_roman_period] = ACTIONS(91), - [sym_list_marker_decimal_paren] = ACTIONS(93), - [sym_list_marker_lower_alpha_paren] = ACTIONS(95), - [sym_list_marker_upper_alpha_paren] = ACTIONS(97), - [sym_list_marker_lower_roman_paren] = ACTIONS(99), - [sym_list_marker_upper_roman_paren] = ACTIONS(101), - [sym_list_marker_decimal_parens] = ACTIONS(103), - [sym_list_marker_lower_alpha_parens] = ACTIONS(105), - [sym_list_marker_upper_alpha_parens] = ACTIONS(107), - [sym_list_marker_lower_roman_parens] = ACTIONS(109), - [sym_list_marker_upper_roman_parens] = ACTIONS(111), - [sym__block_quote_begin] = ACTIONS(113), - [sym__block_quote_continuation] = ACTIONS(115), - [sym__thematic_break_dash] = ACTIONS(117), - [sym__thematic_break_star] = ACTIONS(117), - [sym__footnote_begin] = ACTIONS(119), - [sym__verbatim_begin] = ACTIONS(121), - }, - [11] = { - [sym__block_with_heading] = STATE(476), - [sym__block_element] = STATE(476), - [sym__heading] = STATE(476), - [sym_heading1] = STATE(476), - [sym_heading2] = STATE(476), - [sym_heading3] = STATE(476), - [sym_heading4] = STATE(476), - [sym_heading5] = STATE(476), - [sym_heading6] = STATE(476), - [sym_list] = STATE(476), - [sym__list_dash] = STATE(466), - [sym__list_item_dash] = STATE(1323), - [sym__list_plus] = STATE(466), - [sym__list_item_plus] = STATE(1324), - [sym__list_star] = STATE(466), - [sym__list_item_star] = STATE(1326), - [sym__list_task] = STATE(466), - [sym__list_item_task] = STATE(1288), - [sym_list_marker_task] = STATE(49), - [sym__list_definition] = STATE(466), - [sym__list_item_definition] = STATE(1502), - [sym__list_decimal_period] = STATE(466), - [sym__list_item_decimal_period] = STATE(1570), - [sym__list_decimal_paren] = STATE(466), - [sym__list_item_decimal_paren] = STATE(1569), - [sym__list_decimal_parens] = STATE(466), - [sym__list_item_decimal_parens] = STATE(1568), - [sym__list_lower_alpha_period] = STATE(466), - [sym__list_item_lower_alpha_period] = STATE(1566), - [sym__list_lower_alpha_paren] = STATE(466), - [sym__list_item_lower_alpha_paren] = STATE(1563), - [sym__list_lower_alpha_parens] = STATE(466), - [sym__list_item_lower_alpha_parens] = STATE(1561), - [sym__list_upper_alpha_period] = STATE(466), - [sym__list_item_upper_alpha_period] = STATE(1551), - [sym__list_upper_alpha_paren] = STATE(466), - [sym__list_item_upper_alpha_paren] = STATE(1548), - [sym__list_upper_alpha_parens] = STATE(466), - [sym__list_item_upper_alpha_parens] = STATE(1542), - [sym__list_lower_roman_period] = STATE(466), - [sym__list_item_lower_roman_period] = STATE(1531), - [sym__list_lower_roman_paren] = STATE(466), - [sym__list_item_lower_roman_paren] = STATE(1530), - [sym__list_lower_roman_parens] = STATE(466), - [sym__list_item_lower_roman_parens] = STATE(1526), - [sym__list_upper_roman_period] = STATE(466), - [sym__list_item_upper_roman_period] = STATE(1523), - [sym__list_upper_roman_paren] = STATE(466), - [sym__list_item_upper_roman_paren] = STATE(1457), - [sym__list_upper_roman_parens] = STATE(466), - [sym__list_item_upper_roman_parens] = STATE(1518), - [sym_table] = STATE(476), - [sym__table_content] = STATE(60), - [sym_table_separator] = STATE(60), - [sym_table_row] = STATE(223), - [sym_footnote] = STATE(476), - [sym_div] = STATE(476), - [sym_div_marker_begin] = STATE(2200), - [sym_code_block] = STATE(476), - [sym_raw_block] = STATE(476), - [sym_thematic_break] = STATE(476), - [sym_block_quote] = STATE(476), - [sym__block_quote_prefix] = STATE(1294), - [sym_link_reference_definition] = STATE(476), - [sym_block_attribute] = STATE(476), - [sym__paragraph] = STATE(476), - [sym__paragraph_content] = STATE(1739), - [sym__inline] = STATE(2311), - [sym__inline_element_with_whitespace] = STATE(229), - [sym__inline_element_with_newline] = STATE(229), - [sym__inline_core_element] = STATE(229), - [sym__hard_line_break] = STATE(716), - [sym_hard_line_break] = STATE(517), - [sym__smart_punctuation] = STATE(716), - [sym_autolink] = STATE(716), - [sym_emphasis] = STATE(716), - [sym_emphasis_begin] = STATE(283), - [sym_strong] = STATE(716), - [sym_strong_begin] = STATE(282), - [sym_highlighted] = STATE(716), - [sym_insert] = STATE(716), - [sym_delete] = STATE(716), - [sym_superscript] = STATE(716), - [sym_subscript] = STATE(716), - [sym_footnote_reference] = STATE(716), - [sym__image] = STATE(716), - [sym_full_reference_image] = STATE(716), - [sym_collapsed_reference_image] = STATE(716), - [sym_inline_image] = STATE(716), - [sym__image_description] = STATE(1412), - [sym__link] = STATE(716), - [sym_full_reference_link] = STATE(716), - [sym_collapsed_reference_link] = STATE(716), - [sym_inline_link] = STATE(716), - [sym_link_text] = STATE(1413), - [sym__comment_with_spaces] = STATE(716), - [sym_span] = STATE(716), - [sym_raw_inline] = STATE(716), - [sym_math] = STATE(716), - [sym_verbatim] = STATE(716), - [sym__todo_highlights] = STATE(716), - [sym_todo] = STATE(716), - [sym_note] = STATE(716), - [sym__symbol_fallback] = STATE(716), - [aux_sym__text] = STATE(562), - [aux_sym__list_dash_repeat1] = STATE(1323), - [aux_sym__list_plus_repeat1] = STATE(1324), - [aux_sym__list_star_repeat1] = STATE(1326), - [aux_sym__list_task_repeat1] = STATE(1288), - [aux_sym__list_definition_repeat1] = STATE(1502), - [aux_sym__list_decimal_period_repeat1] = STATE(1570), - [aux_sym__list_decimal_paren_repeat1] = STATE(1569), - [aux_sym__list_decimal_parens_repeat1] = STATE(1568), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(1566), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(1563), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(1561), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(1551), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(1548), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(1542), - [aux_sym__list_lower_roman_period_repeat1] = STATE(1531), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(1530), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(1526), - [aux_sym__list_upper_roman_period_repeat1] = STATE(1523), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(1457), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(1518), - [aux_sym_table_repeat1] = STATE(60), - [aux_sym_footnote_content_repeat1] = STATE(15), - [aux_sym__block_quote_prefix_repeat1] = STATE(1275), - [aux_sym__inline_repeat1] = STATE(229), - [anon_sym_LBRACK] = ACTIONS(123), - [anon_sym_PIPE] = ACTIONS(125), - [anon_sym_LBRACE] = ACTIONS(127), - [sym__whitespace1] = ACTIONS(11), - [anon_sym_BSLASH] = ACTIONS(13), - [sym_quotation_marks] = ACTIONS(15), - [sym_ellipsis] = ACTIONS(15), - [sym_em_dash] = ACTIONS(15), - [sym_en_dash] = ACTIONS(17), - [sym_backslash_escape] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(19), - [anon_sym_LBRACE_] = ACTIONS(21), - [anon_sym__] = ACTIONS(23), - [anon_sym_LBRACE_STAR] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_LBRACE_EQ] = ACTIONS(29), - [anon_sym_LBRACE_PLUS] = ACTIONS(31), - [anon_sym_LBRACE_DASH] = ACTIONS(33), - [sym_symbol] = ACTIONS(15), - [anon_sym_LBRACE_CARET] = ACTIONS(35), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_LBRACE_TILDE] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(37), - [anon_sym_LBRACK_CARET] = ACTIONS(39), - [anon_sym_BANG_LBRACK] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [anon_sym_TODO] = ACTIONS(45), - [anon_sym_WIP] = ACTIONS(45), - [anon_sym_NOTE] = ACTIONS(47), - [anon_sym_INFO] = ACTIONS(47), - [anon_sym_XXX] = ACTIONS(47), - [sym_fixme] = ACTIONS(15), - [aux_sym__text_token1] = ACTIONS(49), - [sym__block_close] = ACTIONS(351), - [sym__newline] = ACTIONS(353), - [sym__newline_inline] = ACTIONS(53), - [sym__heading1_begin] = ACTIONS(57), - [sym__heading2_begin] = ACTIONS(59), - [sym__heading3_begin] = ACTIONS(61), - [sym__heading4_begin] = ACTIONS(63), - [sym__heading5_begin] = ACTIONS(65), - [sym__heading6_begin] = ACTIONS(67), - [sym__div_begin] = ACTIONS(69), - [sym__code_block_begin] = ACTIONS(133), - [sym_list_marker_dash] = ACTIONS(73), - [sym_list_marker_star] = ACTIONS(75), - [sym_list_marker_plus] = ACTIONS(77), - [sym__list_marker_task_begin] = ACTIONS(79), - [sym_list_marker_definition] = ACTIONS(81), - [sym_list_marker_decimal_period] = ACTIONS(83), - [sym_list_marker_lower_alpha_period] = ACTIONS(85), - [sym_list_marker_upper_alpha_period] = ACTIONS(87), - [sym_list_marker_lower_roman_period] = ACTIONS(89), - [sym_list_marker_upper_roman_period] = ACTIONS(91), - [sym_list_marker_decimal_paren] = ACTIONS(93), - [sym_list_marker_lower_alpha_paren] = ACTIONS(95), - [sym_list_marker_upper_alpha_paren] = ACTIONS(97), - [sym_list_marker_lower_roman_paren] = ACTIONS(99), - [sym_list_marker_upper_roman_paren] = ACTIONS(101), - [sym_list_marker_decimal_parens] = ACTIONS(103), - [sym_list_marker_lower_alpha_parens] = ACTIONS(105), - [sym_list_marker_upper_alpha_parens] = ACTIONS(107), - [sym_list_marker_lower_roman_parens] = ACTIONS(109), - [sym_list_marker_upper_roman_parens] = ACTIONS(111), - [sym__block_quote_begin] = ACTIONS(135), - [sym__block_quote_continuation] = ACTIONS(355), - [sym__thematic_break_dash] = ACTIONS(137), - [sym__thematic_break_star] = ACTIONS(137), - [sym__footnote_begin] = ACTIONS(139), - [sym__verbatim_begin] = ACTIONS(121), - }, - [12] = { - [sym__block_with_heading] = STATE(476), - [sym__block_element] = STATE(476), - [sym__heading] = STATE(476), - [sym_heading1] = STATE(476), - [sym_heading2] = STATE(476), - [sym_heading3] = STATE(476), - [sym_heading4] = STATE(476), - [sym_heading5] = STATE(476), - [sym_heading6] = STATE(476), - [sym_list] = STATE(476), - [sym__list_dash] = STATE(466), - [sym__list_item_dash] = STATE(1323), - [sym__list_plus] = STATE(466), - [sym__list_item_plus] = STATE(1324), - [sym__list_star] = STATE(466), - [sym__list_item_star] = STATE(1326), - [sym__list_task] = STATE(466), - [sym__list_item_task] = STATE(1288), - [sym_list_marker_task] = STATE(49), - [sym__list_definition] = STATE(466), - [sym__list_item_definition] = STATE(1502), - [sym__list_decimal_period] = STATE(466), - [sym__list_item_decimal_period] = STATE(1570), - [sym__list_decimal_paren] = STATE(466), - [sym__list_item_decimal_paren] = STATE(1569), - [sym__list_decimal_parens] = STATE(466), - [sym__list_item_decimal_parens] = STATE(1568), - [sym__list_lower_alpha_period] = STATE(466), - [sym__list_item_lower_alpha_period] = STATE(1566), - [sym__list_lower_alpha_paren] = STATE(466), - [sym__list_item_lower_alpha_paren] = STATE(1563), - [sym__list_lower_alpha_parens] = STATE(466), - [sym__list_item_lower_alpha_parens] = STATE(1561), - [sym__list_upper_alpha_period] = STATE(466), - [sym__list_item_upper_alpha_period] = STATE(1551), - [sym__list_upper_alpha_paren] = STATE(466), - [sym__list_item_upper_alpha_paren] = STATE(1548), - [sym__list_upper_alpha_parens] = STATE(466), - [sym__list_item_upper_alpha_parens] = STATE(1542), - [sym__list_lower_roman_period] = STATE(466), - [sym__list_item_lower_roman_period] = STATE(1531), - [sym__list_lower_roman_paren] = STATE(466), - [sym__list_item_lower_roman_paren] = STATE(1530), - [sym__list_lower_roman_parens] = STATE(466), - [sym__list_item_lower_roman_parens] = STATE(1526), - [sym__list_upper_roman_period] = STATE(466), - [sym__list_item_upper_roman_period] = STATE(1523), - [sym__list_upper_roman_paren] = STATE(466), - [sym__list_item_upper_roman_paren] = STATE(1457), - [sym__list_upper_roman_parens] = STATE(466), - [sym__list_item_upper_roman_parens] = STATE(1518), - [sym_table] = STATE(476), - [sym__table_content] = STATE(60), - [sym_table_separator] = STATE(60), - [sym_table_row] = STATE(223), - [sym_footnote] = STATE(476), - [sym_div] = STATE(476), - [sym_div_marker_begin] = STATE(2200), - [sym_code_block] = STATE(476), - [sym_raw_block] = STATE(476), - [sym_thematic_break] = STATE(476), - [sym_block_quote] = STATE(476), - [sym__block_quote_prefix] = STATE(1334), - [sym_link_reference_definition] = STATE(476), - [sym_block_attribute] = STATE(476), - [sym__paragraph] = STATE(476), - [sym__paragraph_content] = STATE(1739), - [sym__inline] = STATE(2311), - [sym__inline_element_with_whitespace] = STATE(229), - [sym__inline_element_with_newline] = STATE(229), - [sym__inline_core_element] = STATE(229), - [sym__hard_line_break] = STATE(716), - [sym_hard_line_break] = STATE(517), - [sym__smart_punctuation] = STATE(716), - [sym_autolink] = STATE(716), - [sym_emphasis] = STATE(716), - [sym_emphasis_begin] = STATE(283), - [sym_strong] = STATE(716), - [sym_strong_begin] = STATE(282), - [sym_highlighted] = STATE(716), - [sym_insert] = STATE(716), - [sym_delete] = STATE(716), - [sym_superscript] = STATE(716), - [sym_subscript] = STATE(716), - [sym_footnote_reference] = STATE(716), - [sym__image] = STATE(716), - [sym_full_reference_image] = STATE(716), - [sym_collapsed_reference_image] = STATE(716), - [sym_inline_image] = STATE(716), - [sym__image_description] = STATE(1412), - [sym__link] = STATE(716), - [sym_full_reference_link] = STATE(716), - [sym_collapsed_reference_link] = STATE(716), - [sym_inline_link] = STATE(716), - [sym_link_text] = STATE(1413), - [sym__comment_with_spaces] = STATE(716), - [sym_span] = STATE(716), - [sym_raw_inline] = STATE(716), - [sym_math] = STATE(716), - [sym_verbatim] = STATE(716), - [sym__todo_highlights] = STATE(716), - [sym_todo] = STATE(716), - [sym_note] = STATE(716), - [sym__symbol_fallback] = STATE(716), - [aux_sym__text] = STATE(562), - [aux_sym__list_dash_repeat1] = STATE(1323), - [aux_sym__list_plus_repeat1] = STATE(1324), - [aux_sym__list_star_repeat1] = STATE(1326), - [aux_sym__list_task_repeat1] = STATE(1288), - [aux_sym__list_definition_repeat1] = STATE(1502), - [aux_sym__list_decimal_period_repeat1] = STATE(1570), - [aux_sym__list_decimal_paren_repeat1] = STATE(1569), - [aux_sym__list_decimal_parens_repeat1] = STATE(1568), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(1566), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(1563), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(1561), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(1551), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(1548), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(1542), - [aux_sym__list_lower_roman_period_repeat1] = STATE(1531), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(1530), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(1526), - [aux_sym__list_upper_roman_period_repeat1] = STATE(1523), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(1457), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(1518), - [aux_sym_table_repeat1] = STATE(60), - [aux_sym_footnote_content_repeat1] = STATE(15), - [aux_sym__block_quote_prefix_repeat1] = STATE(1275), - [aux_sym__inline_repeat1] = STATE(229), - [anon_sym_LBRACK] = ACTIONS(123), - [anon_sym_PIPE] = ACTIONS(125), - [anon_sym_LBRACE] = ACTIONS(127), - [sym__whitespace1] = ACTIONS(11), - [anon_sym_BSLASH] = ACTIONS(13), - [sym_quotation_marks] = ACTIONS(15), - [sym_ellipsis] = ACTIONS(15), - [sym_em_dash] = ACTIONS(15), - [sym_en_dash] = ACTIONS(17), - [sym_backslash_escape] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(19), - [anon_sym_LBRACE_] = ACTIONS(21), - [anon_sym__] = ACTIONS(23), - [anon_sym_LBRACE_STAR] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_LBRACE_EQ] = ACTIONS(29), - [anon_sym_LBRACE_PLUS] = ACTIONS(31), - [anon_sym_LBRACE_DASH] = ACTIONS(33), - [sym_symbol] = ACTIONS(15), - [anon_sym_LBRACE_CARET] = ACTIONS(35), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_LBRACE_TILDE] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(37), - [anon_sym_LBRACK_CARET] = ACTIONS(39), - [anon_sym_BANG_LBRACK] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [anon_sym_TODO] = ACTIONS(45), - [anon_sym_WIP] = ACTIONS(45), - [anon_sym_NOTE] = ACTIONS(47), - [anon_sym_INFO] = ACTIONS(47), - [anon_sym_XXX] = ACTIONS(47), - [sym_fixme] = ACTIONS(15), - [aux_sym__text_token1] = ACTIONS(49), - [sym__block_close] = ACTIONS(357), - [sym__newline] = ACTIONS(353), - [sym__newline_inline] = ACTIONS(53), - [sym__heading1_begin] = ACTIONS(57), - [sym__heading2_begin] = ACTIONS(59), - [sym__heading3_begin] = ACTIONS(61), - [sym__heading4_begin] = ACTIONS(63), - [sym__heading5_begin] = ACTIONS(65), - [sym__heading6_begin] = ACTIONS(67), - [sym__div_begin] = ACTIONS(69), - [sym__code_block_begin] = ACTIONS(133), - [sym_list_marker_dash] = ACTIONS(73), - [sym_list_marker_star] = ACTIONS(75), - [sym_list_marker_plus] = ACTIONS(77), - [sym__list_marker_task_begin] = ACTIONS(79), - [sym_list_marker_definition] = ACTIONS(81), - [sym_list_marker_decimal_period] = ACTIONS(83), - [sym_list_marker_lower_alpha_period] = ACTIONS(85), - [sym_list_marker_upper_alpha_period] = ACTIONS(87), - [sym_list_marker_lower_roman_period] = ACTIONS(89), - [sym_list_marker_upper_roman_period] = ACTIONS(91), - [sym_list_marker_decimal_paren] = ACTIONS(93), - [sym_list_marker_lower_alpha_paren] = ACTIONS(95), - [sym_list_marker_upper_alpha_paren] = ACTIONS(97), - [sym_list_marker_lower_roman_paren] = ACTIONS(99), - [sym_list_marker_upper_roman_paren] = ACTIONS(101), - [sym_list_marker_decimal_parens] = ACTIONS(103), - [sym_list_marker_lower_alpha_parens] = ACTIONS(105), - [sym_list_marker_upper_alpha_parens] = ACTIONS(107), - [sym_list_marker_lower_roman_parens] = ACTIONS(109), - [sym_list_marker_upper_roman_parens] = ACTIONS(111), - [sym__block_quote_begin] = ACTIONS(135), - [sym__block_quote_continuation] = ACTIONS(355), - [sym__thematic_break_dash] = ACTIONS(137), - [sym__thematic_break_star] = ACTIONS(137), - [sym__footnote_begin] = ACTIONS(139), - [sym__verbatim_begin] = ACTIONS(121), - }, - [13] = { - [sym__block_with_heading] = STATE(430), - [sym__block_element] = STATE(430), - [sym__heading] = STATE(430), - [sym_heading1] = STATE(430), - [sym_heading2] = STATE(430), - [sym_heading3] = STATE(430), - [sym_heading4] = STATE(430), - [sym_heading5] = STATE(430), - [sym_heading6] = STATE(430), - [sym_list] = STATE(430), - [sym__list_dash] = STATE(380), - [sym__list_item_dash] = STATE(1330), - [sym__list_plus] = STATE(380), - [sym__list_item_plus] = STATE(1331), - [sym__list_star] = STATE(380), - [sym__list_item_star] = STATE(1332), - [sym__list_task] = STATE(380), - [sym__list_item_task] = STATE(1281), - [sym_list_marker_task] = STATE(49), - [sym__list_definition] = STATE(380), - [sym__list_item_definition] = STATE(1509), - [sym__list_decimal_period] = STATE(380), - [sym__list_item_decimal_period] = STATE(1508), - [sym__list_decimal_paren] = STATE(380), - [sym__list_item_decimal_paren] = STATE(1507), - [sym__list_decimal_parens] = STATE(380), - [sym__list_item_decimal_parens] = STATE(1506), - [sym__list_lower_alpha_period] = STATE(380), - [sym__list_item_lower_alpha_period] = STATE(1519), - [sym__list_lower_alpha_paren] = STATE(380), - [sym__list_item_lower_alpha_paren] = STATE(1459), - [sym__list_lower_alpha_parens] = STATE(380), - [sym__list_item_lower_alpha_parens] = STATE(1460), - [sym__list_upper_alpha_period] = STATE(380), - [sym__list_item_upper_alpha_period] = STATE(1461), - [sym__list_upper_alpha_paren] = STATE(380), - [sym__list_item_upper_alpha_paren] = STATE(1462), - [sym__list_upper_alpha_parens] = STATE(380), - [sym__list_item_upper_alpha_parens] = STATE(1463), - [sym__list_lower_roman_period] = STATE(380), - [sym__list_item_lower_roman_period] = STATE(1464), - [sym__list_lower_roman_paren] = STATE(380), - [sym__list_item_lower_roman_paren] = STATE(1465), - [sym__list_lower_roman_parens] = STATE(380), - [sym__list_item_lower_roman_parens] = STATE(1466), - [sym__list_upper_roman_period] = STATE(380), - [sym__list_item_upper_roman_period] = STATE(1469), - [sym__list_upper_roman_paren] = STATE(380), - [sym__list_item_upper_roman_paren] = STATE(1471), - [sym__list_upper_roman_parens] = STATE(380), - [sym__list_item_upper_roman_parens] = STATE(1474), - [sym_table] = STATE(430), - [sym__table_content] = STATE(66), - [sym_table_separator] = STATE(66), - [sym_table_row] = STATE(214), - [sym_footnote] = STATE(430), - [sym_footnote_content] = STATE(1999), - [sym_div] = STATE(430), - [sym_div_marker_begin] = STATE(2229), - [sym_code_block] = STATE(430), - [sym_raw_block] = STATE(430), - [sym_thematic_break] = STATE(430), - [sym_block_quote] = STATE(430), - [sym__block_quote_prefix] = STATE(1398), - [sym_link_reference_definition] = STATE(430), - [sym_block_attribute] = STATE(430), - [sym__paragraph] = STATE(430), - [sym__paragraph_content] = STATE(1821), - [sym__inline] = STATE(2311), - [sym__inline_element_with_whitespace] = STATE(229), - [sym__inline_element_with_newline] = STATE(229), - [sym__inline_core_element] = STATE(229), - [sym__hard_line_break] = STATE(716), - [sym_hard_line_break] = STATE(517), - [sym__smart_punctuation] = STATE(716), - [sym_autolink] = STATE(716), - [sym_emphasis] = STATE(716), - [sym_emphasis_begin] = STATE(283), - [sym_strong] = STATE(716), - [sym_strong_begin] = STATE(282), - [sym_highlighted] = STATE(716), - [sym_insert] = STATE(716), - [sym_delete] = STATE(716), - [sym_superscript] = STATE(716), - [sym_subscript] = STATE(716), - [sym_footnote_reference] = STATE(716), - [sym__image] = STATE(716), - [sym_full_reference_image] = STATE(716), - [sym_collapsed_reference_image] = STATE(716), - [sym_inline_image] = STATE(716), - [sym__image_description] = STATE(1412), - [sym__link] = STATE(716), - [sym_full_reference_link] = STATE(716), - [sym_collapsed_reference_link] = STATE(716), - [sym_inline_link] = STATE(716), - [sym_link_text] = STATE(1413), - [sym__comment_with_spaces] = STATE(716), - [sym_span] = STATE(716), - [sym_raw_inline] = STATE(716), - [sym_math] = STATE(716), - [sym_verbatim] = STATE(716), - [sym__todo_highlights] = STATE(716), - [sym_todo] = STATE(716), - [sym_note] = STATE(716), - [sym__symbol_fallback] = STATE(716), - [aux_sym__text] = STATE(562), - [aux_sym__list_dash_repeat1] = STATE(1330), - [aux_sym__list_plus_repeat1] = STATE(1331), - [aux_sym__list_star_repeat1] = STATE(1332), - [aux_sym__list_task_repeat1] = STATE(1281), - [aux_sym__list_definition_repeat1] = STATE(1509), - [aux_sym__list_decimal_period_repeat1] = STATE(1508), - [aux_sym__list_decimal_paren_repeat1] = STATE(1507), - [aux_sym__list_decimal_parens_repeat1] = STATE(1506), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(1519), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(1459), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(1460), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(1461), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(1462), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(1463), - [aux_sym__list_lower_roman_period_repeat1] = STATE(1464), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(1465), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(1466), - [aux_sym__list_upper_roman_period_repeat1] = STATE(1469), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(1471), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(1474), - [aux_sym_table_repeat1] = STATE(66), - [aux_sym_footnote_content_repeat1] = STATE(25), - [aux_sym__block_quote_prefix_repeat1] = STATE(1308), - [aux_sym__inline_repeat1] = STATE(229), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_PIPE] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [sym__whitespace1] = ACTIONS(11), - [anon_sym_BSLASH] = ACTIONS(13), - [sym_quotation_marks] = ACTIONS(15), - [sym_ellipsis] = ACTIONS(15), - [sym_em_dash] = ACTIONS(15), - [sym_en_dash] = ACTIONS(17), - [sym_backslash_escape] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(19), - [anon_sym_LBRACE_] = ACTIONS(21), - [anon_sym__] = ACTIONS(23), - [anon_sym_LBRACE_STAR] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_LBRACE_EQ] = ACTIONS(29), - [anon_sym_LBRACE_PLUS] = ACTIONS(31), - [anon_sym_LBRACE_DASH] = ACTIONS(33), - [sym_symbol] = ACTIONS(15), - [anon_sym_LBRACE_CARET] = ACTIONS(35), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_LBRACE_TILDE] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(37), - [anon_sym_LBRACK_CARET] = ACTIONS(39), - [anon_sym_BANG_LBRACK] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [anon_sym_TODO] = ACTIONS(45), - [anon_sym_WIP] = ACTIONS(45), - [anon_sym_NOTE] = ACTIONS(47), - [anon_sym_INFO] = ACTIONS(47), - [anon_sym_XXX] = ACTIONS(47), - [sym_fixme] = ACTIONS(15), - [aux_sym__text_token1] = ACTIONS(49), - [sym__newline] = ACTIONS(365), - [sym__newline_inline] = ACTIONS(53), - [sym__heading1_begin] = ACTIONS(367), - [sym__heading2_begin] = ACTIONS(369), - [sym__heading3_begin] = ACTIONS(371), - [sym__heading4_begin] = ACTIONS(373), - [sym__heading5_begin] = ACTIONS(375), - [sym__heading6_begin] = ACTIONS(377), - [sym__div_begin] = ACTIONS(69), - [sym__code_block_begin] = ACTIONS(379), - [sym_list_marker_dash] = ACTIONS(73), - [sym_list_marker_star] = ACTIONS(75), - [sym_list_marker_plus] = ACTIONS(77), - [sym__list_marker_task_begin] = ACTIONS(79), - [sym_list_marker_definition] = ACTIONS(81), - [sym_list_marker_decimal_period] = ACTIONS(83), - [sym_list_marker_lower_alpha_period] = ACTIONS(85), - [sym_list_marker_upper_alpha_period] = ACTIONS(87), - [sym_list_marker_lower_roman_period] = ACTIONS(89), - [sym_list_marker_upper_roman_period] = ACTIONS(91), - [sym_list_marker_decimal_paren] = ACTIONS(93), - [sym_list_marker_lower_alpha_paren] = ACTIONS(95), - [sym_list_marker_upper_alpha_paren] = ACTIONS(97), - [sym_list_marker_lower_roman_paren] = ACTIONS(99), - [sym_list_marker_upper_roman_paren] = ACTIONS(101), - [sym_list_marker_decimal_parens] = ACTIONS(103), - [sym_list_marker_lower_alpha_parens] = ACTIONS(105), - [sym_list_marker_upper_alpha_parens] = ACTIONS(107), - [sym_list_marker_lower_roman_parens] = ACTIONS(109), - [sym_list_marker_upper_roman_parens] = ACTIONS(111), - [sym__block_quote_begin] = ACTIONS(381), - [sym__block_quote_continuation] = ACTIONS(115), - [sym__thematic_break_dash] = ACTIONS(383), - [sym__thematic_break_star] = ACTIONS(383), - [sym__footnote_begin] = ACTIONS(385), - [sym__verbatim_begin] = ACTIONS(121), - }, - [14] = { - [sym__block_with_heading] = STATE(476), - [sym__block_element] = STATE(476), - [sym__heading] = STATE(476), - [sym_heading1] = STATE(476), - [sym_heading2] = STATE(476), - [sym_heading3] = STATE(476), - [sym_heading4] = STATE(476), - [sym_heading5] = STATE(476), - [sym_heading6] = STATE(476), - [sym_list] = STATE(476), - [sym__list_dash] = STATE(466), - [sym__list_item_dash] = STATE(1323), - [sym__list_plus] = STATE(466), - [sym__list_item_plus] = STATE(1324), - [sym__list_star] = STATE(466), - [sym__list_item_star] = STATE(1326), - [sym__list_task] = STATE(466), - [sym__list_item_task] = STATE(1288), - [sym_list_marker_task] = STATE(49), - [sym__list_definition] = STATE(466), - [sym__list_item_definition] = STATE(1502), - [sym__list_decimal_period] = STATE(466), - [sym__list_item_decimal_period] = STATE(1570), - [sym__list_decimal_paren] = STATE(466), - [sym__list_item_decimal_paren] = STATE(1569), - [sym__list_decimal_parens] = STATE(466), - [sym__list_item_decimal_parens] = STATE(1568), - [sym__list_lower_alpha_period] = STATE(466), - [sym__list_item_lower_alpha_period] = STATE(1566), - [sym__list_lower_alpha_paren] = STATE(466), - [sym__list_item_lower_alpha_paren] = STATE(1563), - [sym__list_lower_alpha_parens] = STATE(466), - [sym__list_item_lower_alpha_parens] = STATE(1561), - [sym__list_upper_alpha_period] = STATE(466), - [sym__list_item_upper_alpha_period] = STATE(1551), - [sym__list_upper_alpha_paren] = STATE(466), - [sym__list_item_upper_alpha_paren] = STATE(1548), - [sym__list_upper_alpha_parens] = STATE(466), - [sym__list_item_upper_alpha_parens] = STATE(1542), - [sym__list_lower_roman_period] = STATE(466), - [sym__list_item_lower_roman_period] = STATE(1531), - [sym__list_lower_roman_paren] = STATE(466), - [sym__list_item_lower_roman_paren] = STATE(1530), - [sym__list_lower_roman_parens] = STATE(466), - [sym__list_item_lower_roman_parens] = STATE(1526), - [sym__list_upper_roman_period] = STATE(466), - [sym__list_item_upper_roman_period] = STATE(1523), - [sym__list_upper_roman_paren] = STATE(466), - [sym__list_item_upper_roman_paren] = STATE(1457), - [sym__list_upper_roman_parens] = STATE(466), - [sym__list_item_upper_roman_parens] = STATE(1518), - [sym_table] = STATE(476), - [sym__table_content] = STATE(60), - [sym_table_separator] = STATE(60), - [sym_table_row] = STATE(223), - [sym_footnote] = STATE(476), - [sym_div] = STATE(476), - [sym_div_marker_begin] = STATE(2200), - [sym_code_block] = STATE(476), - [sym_raw_block] = STATE(476), - [sym_thematic_break] = STATE(476), - [sym_block_quote] = STATE(476), - [sym__block_quote_prefix] = STATE(1316), - [sym_link_reference_definition] = STATE(476), - [sym_block_attribute] = STATE(476), - [sym__paragraph] = STATE(476), - [sym__paragraph_content] = STATE(1739), - [sym__inline] = STATE(2311), - [sym__inline_element_with_whitespace] = STATE(229), - [sym__inline_element_with_newline] = STATE(229), - [sym__inline_core_element] = STATE(229), - [sym__hard_line_break] = STATE(716), - [sym_hard_line_break] = STATE(517), - [sym__smart_punctuation] = STATE(716), - [sym_autolink] = STATE(716), - [sym_emphasis] = STATE(716), - [sym_emphasis_begin] = STATE(283), - [sym_strong] = STATE(716), - [sym_strong_begin] = STATE(282), - [sym_highlighted] = STATE(716), - [sym_insert] = STATE(716), - [sym_delete] = STATE(716), - [sym_superscript] = STATE(716), - [sym_subscript] = STATE(716), - [sym_footnote_reference] = STATE(716), - [sym__image] = STATE(716), - [sym_full_reference_image] = STATE(716), - [sym_collapsed_reference_image] = STATE(716), - [sym_inline_image] = STATE(716), - [sym__image_description] = STATE(1412), - [sym__link] = STATE(716), - [sym_full_reference_link] = STATE(716), - [sym_collapsed_reference_link] = STATE(716), - [sym_inline_link] = STATE(716), - [sym_link_text] = STATE(1413), - [sym__comment_with_spaces] = STATE(716), - [sym_span] = STATE(716), - [sym_raw_inline] = STATE(716), - [sym_math] = STATE(716), - [sym_verbatim] = STATE(716), - [sym__todo_highlights] = STATE(716), - [sym_todo] = STATE(716), - [sym_note] = STATE(716), - [sym__symbol_fallback] = STATE(716), - [aux_sym__text] = STATE(562), - [aux_sym__list_dash_repeat1] = STATE(1323), - [aux_sym__list_plus_repeat1] = STATE(1324), - [aux_sym__list_star_repeat1] = STATE(1326), - [aux_sym__list_task_repeat1] = STATE(1288), - [aux_sym__list_definition_repeat1] = STATE(1502), - [aux_sym__list_decimal_period_repeat1] = STATE(1570), - [aux_sym__list_decimal_paren_repeat1] = STATE(1569), - [aux_sym__list_decimal_parens_repeat1] = STATE(1568), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(1566), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(1563), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(1561), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(1551), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(1548), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(1542), - [aux_sym__list_lower_roman_period_repeat1] = STATE(1531), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(1530), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(1526), - [aux_sym__list_upper_roman_period_repeat1] = STATE(1523), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(1457), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(1518), - [aux_sym_table_repeat1] = STATE(60), - [aux_sym_footnote_content_repeat1] = STATE(23), - [aux_sym__block_quote_prefix_repeat1] = STATE(1275), - [aux_sym__inline_repeat1] = STATE(229), - [anon_sym_LBRACK] = ACTIONS(123), - [anon_sym_PIPE] = ACTIONS(125), - [anon_sym_LBRACE] = ACTIONS(127), - [sym__whitespace1] = ACTIONS(11), - [anon_sym_BSLASH] = ACTIONS(13), - [sym_quotation_marks] = ACTIONS(15), - [sym_ellipsis] = ACTIONS(15), - [sym_em_dash] = ACTIONS(15), - [sym_en_dash] = ACTIONS(17), - [sym_backslash_escape] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(19), - [anon_sym_LBRACE_] = ACTIONS(21), - [anon_sym__] = ACTIONS(23), - [anon_sym_LBRACE_STAR] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_LBRACE_EQ] = ACTIONS(29), - [anon_sym_LBRACE_PLUS] = ACTIONS(31), - [anon_sym_LBRACE_DASH] = ACTIONS(33), - [sym_symbol] = ACTIONS(15), - [anon_sym_LBRACE_CARET] = ACTIONS(35), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_LBRACE_TILDE] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(37), - [anon_sym_LBRACK_CARET] = ACTIONS(39), - [anon_sym_BANG_LBRACK] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [anon_sym_TODO] = ACTIONS(45), - [anon_sym_WIP] = ACTIONS(45), - [anon_sym_NOTE] = ACTIONS(47), - [anon_sym_INFO] = ACTIONS(47), - [anon_sym_XXX] = ACTIONS(47), - [sym_fixme] = ACTIONS(15), - [aux_sym__text_token1] = ACTIONS(49), - [sym__block_close] = ACTIONS(387), - [sym__newline] = ACTIONS(353), - [sym__newline_inline] = ACTIONS(53), - [sym__heading1_begin] = ACTIONS(57), - [sym__heading2_begin] = ACTIONS(59), - [sym__heading3_begin] = ACTIONS(61), - [sym__heading4_begin] = ACTIONS(63), - [sym__heading5_begin] = ACTIONS(65), - [sym__heading6_begin] = ACTIONS(67), - [sym__div_begin] = ACTIONS(69), - [sym__code_block_begin] = ACTIONS(133), - [sym_list_marker_dash] = ACTIONS(73), - [sym_list_marker_star] = ACTIONS(75), - [sym_list_marker_plus] = ACTIONS(77), - [sym__list_marker_task_begin] = ACTIONS(79), - [sym_list_marker_definition] = ACTIONS(81), - [sym_list_marker_decimal_period] = ACTIONS(83), - [sym_list_marker_lower_alpha_period] = ACTIONS(85), - [sym_list_marker_upper_alpha_period] = ACTIONS(87), - [sym_list_marker_lower_roman_period] = ACTIONS(89), - [sym_list_marker_upper_roman_period] = ACTIONS(91), - [sym_list_marker_decimal_paren] = ACTIONS(93), - [sym_list_marker_lower_alpha_paren] = ACTIONS(95), - [sym_list_marker_upper_alpha_paren] = ACTIONS(97), - [sym_list_marker_lower_roman_paren] = ACTIONS(99), - [sym_list_marker_upper_roman_paren] = ACTIONS(101), - [sym_list_marker_decimal_parens] = ACTIONS(103), - [sym_list_marker_lower_alpha_parens] = ACTIONS(105), - [sym_list_marker_upper_alpha_parens] = ACTIONS(107), - [sym_list_marker_lower_roman_parens] = ACTIONS(109), - [sym_list_marker_upper_roman_parens] = ACTIONS(111), - [sym__block_quote_begin] = ACTIONS(135), - [sym__block_quote_continuation] = ACTIONS(355), - [sym__thematic_break_dash] = ACTIONS(137), - [sym__thematic_break_star] = ACTIONS(137), - [sym__footnote_begin] = ACTIONS(139), - [sym__verbatim_begin] = ACTIONS(121), - }, - [15] = { - [sym__block_with_heading] = STATE(476), - [sym__block_element] = STATE(476), - [sym__heading] = STATE(476), - [sym_heading1] = STATE(476), - [sym_heading2] = STATE(476), - [sym_heading3] = STATE(476), - [sym_heading4] = STATE(476), - [sym_heading5] = STATE(476), - [sym_heading6] = STATE(476), - [sym_list] = STATE(476), - [sym__list_dash] = STATE(466), - [sym__list_item_dash] = STATE(1323), - [sym__list_plus] = STATE(466), - [sym__list_item_plus] = STATE(1324), - [sym__list_star] = STATE(466), - [sym__list_item_star] = STATE(1326), - [sym__list_task] = STATE(466), - [sym__list_item_task] = STATE(1288), - [sym_list_marker_task] = STATE(49), - [sym__list_definition] = STATE(466), - [sym__list_item_definition] = STATE(1502), - [sym__list_decimal_period] = STATE(466), - [sym__list_item_decimal_period] = STATE(1570), - [sym__list_decimal_paren] = STATE(466), - [sym__list_item_decimal_paren] = STATE(1569), - [sym__list_decimal_parens] = STATE(466), - [sym__list_item_decimal_parens] = STATE(1568), - [sym__list_lower_alpha_period] = STATE(466), - [sym__list_item_lower_alpha_period] = STATE(1566), - [sym__list_lower_alpha_paren] = STATE(466), - [sym__list_item_lower_alpha_paren] = STATE(1563), - [sym__list_lower_alpha_parens] = STATE(466), - [sym__list_item_lower_alpha_parens] = STATE(1561), - [sym__list_upper_alpha_period] = STATE(466), - [sym__list_item_upper_alpha_period] = STATE(1551), - [sym__list_upper_alpha_paren] = STATE(466), - [sym__list_item_upper_alpha_paren] = STATE(1548), - [sym__list_upper_alpha_parens] = STATE(466), - [sym__list_item_upper_alpha_parens] = STATE(1542), - [sym__list_lower_roman_period] = STATE(466), - [sym__list_item_lower_roman_period] = STATE(1531), - [sym__list_lower_roman_paren] = STATE(466), - [sym__list_item_lower_roman_paren] = STATE(1530), - [sym__list_lower_roman_parens] = STATE(466), - [sym__list_item_lower_roman_parens] = STATE(1526), - [sym__list_upper_roman_period] = STATE(466), - [sym__list_item_upper_roman_period] = STATE(1523), - [sym__list_upper_roman_paren] = STATE(466), - [sym__list_item_upper_roman_paren] = STATE(1457), - [sym__list_upper_roman_parens] = STATE(466), - [sym__list_item_upper_roman_parens] = STATE(1518), - [sym_table] = STATE(476), - [sym__table_content] = STATE(60), - [sym_table_separator] = STATE(60), - [sym_table_row] = STATE(223), - [sym_footnote] = STATE(476), - [sym_div] = STATE(476), - [sym_div_marker_begin] = STATE(2200), - [sym_code_block] = STATE(476), - [sym_raw_block] = STATE(476), - [sym_thematic_break] = STATE(476), - [sym_block_quote] = STATE(476), - [sym__block_quote_prefix] = STATE(1395), - [sym_link_reference_definition] = STATE(476), - [sym_block_attribute] = STATE(476), - [sym__paragraph] = STATE(476), - [sym__paragraph_content] = STATE(1739), - [sym__inline] = STATE(2311), - [sym__inline_element_with_whitespace] = STATE(229), - [sym__inline_element_with_newline] = STATE(229), - [sym__inline_core_element] = STATE(229), - [sym__hard_line_break] = STATE(716), - [sym_hard_line_break] = STATE(517), - [sym__smart_punctuation] = STATE(716), - [sym_autolink] = STATE(716), - [sym_emphasis] = STATE(716), - [sym_emphasis_begin] = STATE(283), - [sym_strong] = STATE(716), - [sym_strong_begin] = STATE(282), - [sym_highlighted] = STATE(716), - [sym_insert] = STATE(716), - [sym_delete] = STATE(716), - [sym_superscript] = STATE(716), - [sym_subscript] = STATE(716), - [sym_footnote_reference] = STATE(716), - [sym__image] = STATE(716), - [sym_full_reference_image] = STATE(716), - [sym_collapsed_reference_image] = STATE(716), - [sym_inline_image] = STATE(716), - [sym__image_description] = STATE(1412), - [sym__link] = STATE(716), - [sym_full_reference_link] = STATE(716), - [sym_collapsed_reference_link] = STATE(716), - [sym_inline_link] = STATE(716), - [sym_link_text] = STATE(1413), - [sym__comment_with_spaces] = STATE(716), - [sym_span] = STATE(716), - [sym_raw_inline] = STATE(716), - [sym_math] = STATE(716), - [sym_verbatim] = STATE(716), - [sym__todo_highlights] = STATE(716), - [sym_todo] = STATE(716), - [sym_note] = STATE(716), - [sym__symbol_fallback] = STATE(716), - [aux_sym__text] = STATE(562), - [aux_sym__list_dash_repeat1] = STATE(1323), - [aux_sym__list_plus_repeat1] = STATE(1324), - [aux_sym__list_star_repeat1] = STATE(1326), - [aux_sym__list_task_repeat1] = STATE(1288), - [aux_sym__list_definition_repeat1] = STATE(1502), - [aux_sym__list_decimal_period_repeat1] = STATE(1570), - [aux_sym__list_decimal_paren_repeat1] = STATE(1569), - [aux_sym__list_decimal_parens_repeat1] = STATE(1568), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(1566), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(1563), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(1561), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(1551), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(1548), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(1542), - [aux_sym__list_lower_roman_period_repeat1] = STATE(1531), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(1530), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(1526), - [aux_sym__list_upper_roman_period_repeat1] = STATE(1523), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(1457), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(1518), - [aux_sym_table_repeat1] = STATE(60), - [aux_sym_footnote_content_repeat1] = STATE(15), - [aux_sym__block_quote_prefix_repeat1] = STATE(1308), - [aux_sym__inline_repeat1] = STATE(229), - [anon_sym_LBRACK] = ACTIONS(389), - [anon_sym_PIPE] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(395), - [sym__whitespace1] = ACTIONS(398), - [anon_sym_BSLASH] = ACTIONS(401), - [sym_quotation_marks] = ACTIONS(404), - [sym_ellipsis] = ACTIONS(404), - [sym_em_dash] = ACTIONS(404), - [sym_en_dash] = ACTIONS(407), - [sym_backslash_escape] = ACTIONS(407), - [anon_sym_LT] = ACTIONS(410), - [anon_sym_LBRACE_] = ACTIONS(413), - [anon_sym__] = ACTIONS(416), - [anon_sym_LBRACE_STAR] = ACTIONS(419), - [anon_sym_STAR] = ACTIONS(422), - [anon_sym_LBRACE_EQ] = ACTIONS(425), - [anon_sym_LBRACE_PLUS] = ACTIONS(428), - [anon_sym_LBRACE_DASH] = ACTIONS(431), - [sym_symbol] = ACTIONS(404), - [anon_sym_LBRACE_CARET] = ACTIONS(434), - [anon_sym_CARET] = ACTIONS(434), - [anon_sym_LBRACE_TILDE] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_LBRACK_CARET] = ACTIONS(440), - [anon_sym_BANG_LBRACK] = ACTIONS(443), - [anon_sym_DOLLAR] = ACTIONS(446), - [anon_sym_TODO] = ACTIONS(449), - [anon_sym_WIP] = ACTIONS(449), - [anon_sym_NOTE] = ACTIONS(452), - [anon_sym_INFO] = ACTIONS(452), - [anon_sym_XXX] = ACTIONS(452), - [sym_fixme] = ACTIONS(404), - [aux_sym__text_token1] = ACTIONS(455), - [sym__block_close] = ACTIONS(458), - [sym__newline] = ACTIONS(460), - [sym__newline_inline] = ACTIONS(463), - [sym__heading1_begin] = ACTIONS(466), - [sym__heading2_begin] = ACTIONS(469), - [sym__heading3_begin] = ACTIONS(472), - [sym__heading4_begin] = ACTIONS(475), - [sym__heading5_begin] = ACTIONS(478), - [sym__heading6_begin] = ACTIONS(481), - [sym__div_begin] = ACTIONS(484), - [sym__code_block_begin] = ACTIONS(487), - [sym_list_marker_dash] = ACTIONS(490), - [sym_list_marker_star] = ACTIONS(493), - [sym_list_marker_plus] = ACTIONS(496), - [sym__list_marker_task_begin] = ACTIONS(499), - [sym_list_marker_definition] = ACTIONS(502), - [sym_list_marker_decimal_period] = ACTIONS(505), - [sym_list_marker_lower_alpha_period] = ACTIONS(508), - [sym_list_marker_upper_alpha_period] = ACTIONS(511), - [sym_list_marker_lower_roman_period] = ACTIONS(514), - [sym_list_marker_upper_roman_period] = ACTIONS(517), - [sym_list_marker_decimal_paren] = ACTIONS(520), - [sym_list_marker_lower_alpha_paren] = ACTIONS(523), - [sym_list_marker_upper_alpha_paren] = ACTIONS(526), - [sym_list_marker_lower_roman_paren] = ACTIONS(529), - [sym_list_marker_upper_roman_paren] = ACTIONS(532), - [sym_list_marker_decimal_parens] = ACTIONS(535), - [sym_list_marker_lower_alpha_parens] = ACTIONS(538), - [sym_list_marker_upper_alpha_parens] = ACTIONS(541), - [sym_list_marker_lower_roman_parens] = ACTIONS(544), - [sym_list_marker_upper_roman_parens] = ACTIONS(547), - [sym__block_quote_begin] = ACTIONS(550), - [sym__block_quote_continuation] = ACTIONS(553), - [sym__thematic_break_dash] = ACTIONS(556), - [sym__thematic_break_star] = ACTIONS(556), - [sym__footnote_begin] = ACTIONS(559), - [sym__verbatim_begin] = ACTIONS(562), - }, - [16] = { - [sym__block_with_heading] = STATE(430), - [sym__block_element] = STATE(430), - [sym__heading] = STATE(430), - [sym_heading1] = STATE(430), - [sym_heading2] = STATE(430), - [sym_heading3] = STATE(430), - [sym_heading4] = STATE(430), - [sym_heading5] = STATE(430), - [sym_heading6] = STATE(430), - [sym_list] = STATE(430), - [sym__list_dash] = STATE(380), - [sym__list_item_dash] = STATE(1330), - [sym__list_plus] = STATE(380), - [sym__list_item_plus] = STATE(1331), - [sym__list_star] = STATE(380), - [sym__list_item_star] = STATE(1332), - [sym__list_task] = STATE(380), - [sym__list_item_task] = STATE(1281), - [sym_list_marker_task] = STATE(49), - [sym__list_definition] = STATE(380), - [sym__list_item_definition] = STATE(1509), - [sym__list_decimal_period] = STATE(380), - [sym__list_item_decimal_period] = STATE(1508), - [sym__list_decimal_paren] = STATE(380), - [sym__list_item_decimal_paren] = STATE(1507), - [sym__list_decimal_parens] = STATE(380), - [sym__list_item_decimal_parens] = STATE(1506), - [sym__list_lower_alpha_period] = STATE(380), - [sym__list_item_lower_alpha_period] = STATE(1519), - [sym__list_lower_alpha_paren] = STATE(380), - [sym__list_item_lower_alpha_paren] = STATE(1459), - [sym__list_lower_alpha_parens] = STATE(380), - [sym__list_item_lower_alpha_parens] = STATE(1460), - [sym__list_upper_alpha_period] = STATE(380), - [sym__list_item_upper_alpha_period] = STATE(1461), - [sym__list_upper_alpha_paren] = STATE(380), - [sym__list_item_upper_alpha_paren] = STATE(1462), - [sym__list_upper_alpha_parens] = STATE(380), - [sym__list_item_upper_alpha_parens] = STATE(1463), - [sym__list_lower_roman_period] = STATE(380), - [sym__list_item_lower_roman_period] = STATE(1464), - [sym__list_lower_roman_paren] = STATE(380), - [sym__list_item_lower_roman_paren] = STATE(1465), - [sym__list_lower_roman_parens] = STATE(380), - [sym__list_item_lower_roman_parens] = STATE(1466), - [sym__list_upper_roman_period] = STATE(380), - [sym__list_item_upper_roman_period] = STATE(1469), - [sym__list_upper_roman_paren] = STATE(380), - [sym__list_item_upper_roman_paren] = STATE(1471), - [sym__list_upper_roman_parens] = STATE(380), - [sym__list_item_upper_roman_parens] = STATE(1474), - [sym_table] = STATE(430), - [sym__table_content] = STATE(66), - [sym_table_separator] = STATE(66), - [sym_table_row] = STATE(214), - [sym_footnote] = STATE(430), - [sym_footnote_content] = STATE(2221), - [sym_div] = STATE(430), - [sym_div_marker_begin] = STATE(2229), - [sym_code_block] = STATE(430), - [sym_raw_block] = STATE(430), - [sym_thematic_break] = STATE(430), - [sym_block_quote] = STATE(430), - [sym__block_quote_prefix] = STATE(1398), - [sym_link_reference_definition] = STATE(430), - [sym_block_attribute] = STATE(430), - [sym__paragraph] = STATE(430), - [sym__paragraph_content] = STATE(1821), - [sym__inline] = STATE(2311), - [sym__inline_element_with_whitespace] = STATE(229), - [sym__inline_element_with_newline] = STATE(229), - [sym__inline_core_element] = STATE(229), - [sym__hard_line_break] = STATE(716), - [sym_hard_line_break] = STATE(517), - [sym__smart_punctuation] = STATE(716), - [sym_autolink] = STATE(716), - [sym_emphasis] = STATE(716), - [sym_emphasis_begin] = STATE(283), - [sym_strong] = STATE(716), - [sym_strong_begin] = STATE(282), - [sym_highlighted] = STATE(716), - [sym_insert] = STATE(716), - [sym_delete] = STATE(716), - [sym_superscript] = STATE(716), - [sym_subscript] = STATE(716), - [sym_footnote_reference] = STATE(716), - [sym__image] = STATE(716), - [sym_full_reference_image] = STATE(716), - [sym_collapsed_reference_image] = STATE(716), - [sym_inline_image] = STATE(716), - [sym__image_description] = STATE(1412), - [sym__link] = STATE(716), - [sym_full_reference_link] = STATE(716), - [sym_collapsed_reference_link] = STATE(716), - [sym_inline_link] = STATE(716), - [sym_link_text] = STATE(1413), - [sym__comment_with_spaces] = STATE(716), - [sym_span] = STATE(716), - [sym_raw_inline] = STATE(716), - [sym_math] = STATE(716), - [sym_verbatim] = STATE(716), - [sym__todo_highlights] = STATE(716), - [sym_todo] = STATE(716), - [sym_note] = STATE(716), - [sym__symbol_fallback] = STATE(716), - [aux_sym__text] = STATE(562), - [aux_sym__list_dash_repeat1] = STATE(1330), - [aux_sym__list_plus_repeat1] = STATE(1331), - [aux_sym__list_star_repeat1] = STATE(1332), - [aux_sym__list_task_repeat1] = STATE(1281), - [aux_sym__list_definition_repeat1] = STATE(1509), - [aux_sym__list_decimal_period_repeat1] = STATE(1508), - [aux_sym__list_decimal_paren_repeat1] = STATE(1507), - [aux_sym__list_decimal_parens_repeat1] = STATE(1506), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(1519), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(1459), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(1460), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(1461), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(1462), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(1463), - [aux_sym__list_lower_roman_period_repeat1] = STATE(1464), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(1465), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(1466), - [aux_sym__list_upper_roman_period_repeat1] = STATE(1469), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(1471), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(1474), - [aux_sym_table_repeat1] = STATE(66), - [aux_sym_footnote_content_repeat1] = STATE(25), - [aux_sym__block_quote_prefix_repeat1] = STATE(1308), - [aux_sym__inline_repeat1] = STATE(229), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_PIPE] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [sym__whitespace1] = ACTIONS(11), - [anon_sym_BSLASH] = ACTIONS(13), - [sym_quotation_marks] = ACTIONS(15), - [sym_ellipsis] = ACTIONS(15), - [sym_em_dash] = ACTIONS(15), - [sym_en_dash] = ACTIONS(17), - [sym_backslash_escape] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(19), - [anon_sym_LBRACE_] = ACTIONS(21), - [anon_sym__] = ACTIONS(23), - [anon_sym_LBRACE_STAR] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_LBRACE_EQ] = ACTIONS(29), - [anon_sym_LBRACE_PLUS] = ACTIONS(31), - [anon_sym_LBRACE_DASH] = ACTIONS(33), - [sym_symbol] = ACTIONS(15), - [anon_sym_LBRACE_CARET] = ACTIONS(35), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_LBRACE_TILDE] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(37), - [anon_sym_LBRACK_CARET] = ACTIONS(39), - [anon_sym_BANG_LBRACK] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [anon_sym_TODO] = ACTIONS(45), - [anon_sym_WIP] = ACTIONS(45), - [anon_sym_NOTE] = ACTIONS(47), - [anon_sym_INFO] = ACTIONS(47), - [anon_sym_XXX] = ACTIONS(47), - [sym_fixme] = ACTIONS(15), - [aux_sym__text_token1] = ACTIONS(49), - [sym__newline] = ACTIONS(365), - [sym__newline_inline] = ACTIONS(53), - [sym__heading1_begin] = ACTIONS(367), - [sym__heading2_begin] = ACTIONS(369), - [sym__heading3_begin] = ACTIONS(371), - [sym__heading4_begin] = ACTIONS(373), - [sym__heading5_begin] = ACTIONS(375), - [sym__heading6_begin] = ACTIONS(377), - [sym__div_begin] = ACTIONS(69), - [sym__code_block_begin] = ACTIONS(379), - [sym_list_marker_dash] = ACTIONS(73), - [sym_list_marker_star] = ACTIONS(75), - [sym_list_marker_plus] = ACTIONS(77), - [sym__list_marker_task_begin] = ACTIONS(79), - [sym_list_marker_definition] = ACTIONS(81), - [sym_list_marker_decimal_period] = ACTIONS(83), - [sym_list_marker_lower_alpha_period] = ACTIONS(85), - [sym_list_marker_upper_alpha_period] = ACTIONS(87), - [sym_list_marker_lower_roman_period] = ACTIONS(89), - [sym_list_marker_upper_roman_period] = ACTIONS(91), - [sym_list_marker_decimal_paren] = ACTIONS(93), - [sym_list_marker_lower_alpha_paren] = ACTIONS(95), - [sym_list_marker_upper_alpha_paren] = ACTIONS(97), - [sym_list_marker_lower_roman_paren] = ACTIONS(99), - [sym_list_marker_upper_roman_paren] = ACTIONS(101), - [sym_list_marker_decimal_parens] = ACTIONS(103), - [sym_list_marker_lower_alpha_parens] = ACTIONS(105), - [sym_list_marker_upper_alpha_parens] = ACTIONS(107), - [sym_list_marker_lower_roman_parens] = ACTIONS(109), - [sym_list_marker_upper_roman_parens] = ACTIONS(111), - [sym__block_quote_begin] = ACTIONS(381), - [sym__block_quote_continuation] = ACTIONS(115), - [sym__thematic_break_dash] = ACTIONS(383), - [sym__thematic_break_star] = ACTIONS(383), - [sym__footnote_begin] = ACTIONS(385), - [sym__verbatim_begin] = ACTIONS(121), - }, - [17] = { - [sym__block_with_heading] = STATE(476), - [sym__block_element] = STATE(476), - [sym__heading] = STATE(476), - [sym_heading1] = STATE(476), - [sym_heading2] = STATE(476), - [sym_heading3] = STATE(476), - [sym_heading4] = STATE(476), - [sym_heading5] = STATE(476), - [sym_heading6] = STATE(476), - [sym_list] = STATE(476), - [sym__list_dash] = STATE(466), - [sym__list_item_dash] = STATE(1323), - [sym__list_plus] = STATE(466), - [sym__list_item_plus] = STATE(1324), - [sym__list_star] = STATE(466), - [sym__list_item_star] = STATE(1326), - [sym__list_task] = STATE(466), - [sym__list_item_task] = STATE(1288), - [sym_list_marker_task] = STATE(49), - [sym__list_definition] = STATE(466), - [sym__list_item_definition] = STATE(1502), - [sym__list_decimal_period] = STATE(466), - [sym__list_item_decimal_period] = STATE(1570), - [sym__list_decimal_paren] = STATE(466), - [sym__list_item_decimal_paren] = STATE(1569), - [sym__list_decimal_parens] = STATE(466), - [sym__list_item_decimal_parens] = STATE(1568), - [sym__list_lower_alpha_period] = STATE(466), - [sym__list_item_lower_alpha_period] = STATE(1566), - [sym__list_lower_alpha_paren] = STATE(466), - [sym__list_item_lower_alpha_paren] = STATE(1563), - [sym__list_lower_alpha_parens] = STATE(466), - [sym__list_item_lower_alpha_parens] = STATE(1561), - [sym__list_upper_alpha_period] = STATE(466), - [sym__list_item_upper_alpha_period] = STATE(1551), - [sym__list_upper_alpha_paren] = STATE(466), - [sym__list_item_upper_alpha_paren] = STATE(1548), - [sym__list_upper_alpha_parens] = STATE(466), - [sym__list_item_upper_alpha_parens] = STATE(1542), - [sym__list_lower_roman_period] = STATE(466), - [sym__list_item_lower_roman_period] = STATE(1531), - [sym__list_lower_roman_paren] = STATE(466), - [sym__list_item_lower_roman_paren] = STATE(1530), - [sym__list_lower_roman_parens] = STATE(466), - [sym__list_item_lower_roman_parens] = STATE(1526), - [sym__list_upper_roman_period] = STATE(466), - [sym__list_item_upper_roman_period] = STATE(1523), - [sym__list_upper_roman_paren] = STATE(466), - [sym__list_item_upper_roman_paren] = STATE(1457), - [sym__list_upper_roman_parens] = STATE(466), - [sym__list_item_upper_roman_parens] = STATE(1518), - [sym_table] = STATE(476), - [sym__table_content] = STATE(60), - [sym_table_separator] = STATE(60), - [sym_table_row] = STATE(223), - [sym_footnote] = STATE(476), - [sym_div] = STATE(476), - [sym_div_marker_begin] = STATE(2200), - [sym_code_block] = STATE(476), - [sym_raw_block] = STATE(476), - [sym_thematic_break] = STATE(476), - [sym_block_quote] = STATE(476), - [sym__block_quote_prefix] = STATE(1333), - [sym_link_reference_definition] = STATE(476), - [sym_block_attribute] = STATE(476), - [sym__paragraph] = STATE(476), - [sym__paragraph_content] = STATE(1739), - [sym__inline] = STATE(2311), - [sym__inline_element_with_whitespace] = STATE(229), - [sym__inline_element_with_newline] = STATE(229), - [sym__inline_core_element] = STATE(229), - [sym__hard_line_break] = STATE(716), - [sym_hard_line_break] = STATE(517), - [sym__smart_punctuation] = STATE(716), - [sym_autolink] = STATE(716), - [sym_emphasis] = STATE(716), - [sym_emphasis_begin] = STATE(283), - [sym_strong] = STATE(716), - [sym_strong_begin] = STATE(282), - [sym_highlighted] = STATE(716), - [sym_insert] = STATE(716), - [sym_delete] = STATE(716), - [sym_superscript] = STATE(716), - [sym_subscript] = STATE(716), - [sym_footnote_reference] = STATE(716), - [sym__image] = STATE(716), - [sym_full_reference_image] = STATE(716), - [sym_collapsed_reference_image] = STATE(716), - [sym_inline_image] = STATE(716), - [sym__image_description] = STATE(1412), - [sym__link] = STATE(716), - [sym_full_reference_link] = STATE(716), - [sym_collapsed_reference_link] = STATE(716), - [sym_inline_link] = STATE(716), - [sym_link_text] = STATE(1413), - [sym__comment_with_spaces] = STATE(716), - [sym_span] = STATE(716), - [sym_raw_inline] = STATE(716), - [sym_math] = STATE(716), - [sym_verbatim] = STATE(716), - [sym__todo_highlights] = STATE(716), - [sym_todo] = STATE(716), - [sym_note] = STATE(716), - [sym__symbol_fallback] = STATE(716), - [aux_sym__text] = STATE(562), - [aux_sym__list_dash_repeat1] = STATE(1323), - [aux_sym__list_plus_repeat1] = STATE(1324), - [aux_sym__list_star_repeat1] = STATE(1326), - [aux_sym__list_task_repeat1] = STATE(1288), - [aux_sym__list_definition_repeat1] = STATE(1502), - [aux_sym__list_decimal_period_repeat1] = STATE(1570), - [aux_sym__list_decimal_paren_repeat1] = STATE(1569), - [aux_sym__list_decimal_parens_repeat1] = STATE(1568), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(1566), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(1563), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(1561), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(1551), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(1548), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(1542), - [aux_sym__list_lower_roman_period_repeat1] = STATE(1531), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(1530), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(1526), - [aux_sym__list_upper_roman_period_repeat1] = STATE(1523), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(1457), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(1518), - [aux_sym_table_repeat1] = STATE(60), - [aux_sym_footnote_content_repeat1] = STATE(12), - [aux_sym__block_quote_prefix_repeat1] = STATE(1275), - [aux_sym__inline_repeat1] = STATE(229), - [anon_sym_LBRACK] = ACTIONS(123), - [anon_sym_PIPE] = ACTIONS(125), - [anon_sym_LBRACE] = ACTIONS(127), - [sym__whitespace1] = ACTIONS(11), - [anon_sym_BSLASH] = ACTIONS(13), - [sym_quotation_marks] = ACTIONS(15), - [sym_ellipsis] = ACTIONS(15), - [sym_em_dash] = ACTIONS(15), - [sym_en_dash] = ACTIONS(17), - [sym_backslash_escape] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(19), - [anon_sym_LBRACE_] = ACTIONS(21), - [anon_sym__] = ACTIONS(23), - [anon_sym_LBRACE_STAR] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_LBRACE_EQ] = ACTIONS(29), - [anon_sym_LBRACE_PLUS] = ACTIONS(31), - [anon_sym_LBRACE_DASH] = ACTIONS(33), - [sym_symbol] = ACTIONS(15), - [anon_sym_LBRACE_CARET] = ACTIONS(35), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_LBRACE_TILDE] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(37), - [anon_sym_LBRACK_CARET] = ACTIONS(39), - [anon_sym_BANG_LBRACK] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [anon_sym_TODO] = ACTIONS(45), - [anon_sym_WIP] = ACTIONS(45), - [anon_sym_NOTE] = ACTIONS(47), - [anon_sym_INFO] = ACTIONS(47), - [anon_sym_XXX] = ACTIONS(47), - [sym_fixme] = ACTIONS(15), - [aux_sym__text_token1] = ACTIONS(49), - [sym__block_close] = ACTIONS(565), - [sym__newline] = ACTIONS(353), - [sym__newline_inline] = ACTIONS(53), - [sym__heading1_begin] = ACTIONS(57), - [sym__heading2_begin] = ACTIONS(59), - [sym__heading3_begin] = ACTIONS(61), - [sym__heading4_begin] = ACTIONS(63), - [sym__heading5_begin] = ACTIONS(65), - [sym__heading6_begin] = ACTIONS(67), - [sym__div_begin] = ACTIONS(69), - [sym__code_block_begin] = ACTIONS(133), - [sym_list_marker_dash] = ACTIONS(73), - [sym_list_marker_star] = ACTIONS(75), - [sym_list_marker_plus] = ACTIONS(77), - [sym__list_marker_task_begin] = ACTIONS(79), - [sym_list_marker_definition] = ACTIONS(81), - [sym_list_marker_decimal_period] = ACTIONS(83), - [sym_list_marker_lower_alpha_period] = ACTIONS(85), - [sym_list_marker_upper_alpha_period] = ACTIONS(87), - [sym_list_marker_lower_roman_period] = ACTIONS(89), - [sym_list_marker_upper_roman_period] = ACTIONS(91), - [sym_list_marker_decimal_paren] = ACTIONS(93), - [sym_list_marker_lower_alpha_paren] = ACTIONS(95), - [sym_list_marker_upper_alpha_paren] = ACTIONS(97), - [sym_list_marker_lower_roman_paren] = ACTIONS(99), - [sym_list_marker_upper_roman_paren] = ACTIONS(101), - [sym_list_marker_decimal_parens] = ACTIONS(103), - [sym_list_marker_lower_alpha_parens] = ACTIONS(105), - [sym_list_marker_upper_alpha_parens] = ACTIONS(107), - [sym_list_marker_lower_roman_parens] = ACTIONS(109), - [sym_list_marker_upper_roman_parens] = ACTIONS(111), - [sym__block_quote_begin] = ACTIONS(135), - [sym__block_quote_continuation] = ACTIONS(355), - [sym__thematic_break_dash] = ACTIONS(137), - [sym__thematic_break_star] = ACTIONS(137), - [sym__footnote_begin] = ACTIONS(139), - [sym__verbatim_begin] = ACTIONS(121), - }, - [18] = { - [sym__block_with_heading] = STATE(430), - [sym__block_element] = STATE(430), - [sym__heading] = STATE(430), - [sym_heading1] = STATE(430), - [sym_heading2] = STATE(430), - [sym_heading3] = STATE(430), - [sym_heading4] = STATE(430), - [sym_heading5] = STATE(430), - [sym_heading6] = STATE(430), - [sym_list] = STATE(430), - [sym__list_dash] = STATE(380), - [sym__list_item_dash] = STATE(1330), - [sym__list_plus] = STATE(380), - [sym__list_item_plus] = STATE(1331), - [sym__list_star] = STATE(380), - [sym__list_item_star] = STATE(1332), - [sym__list_task] = STATE(380), - [sym__list_item_task] = STATE(1281), - [sym_list_marker_task] = STATE(49), - [sym__list_definition] = STATE(380), - [sym__list_item_definition] = STATE(1509), - [sym__list_decimal_period] = STATE(380), - [sym__list_item_decimal_period] = STATE(1508), - [sym__list_decimal_paren] = STATE(380), - [sym__list_item_decimal_paren] = STATE(1507), - [sym__list_decimal_parens] = STATE(380), - [sym__list_item_decimal_parens] = STATE(1506), - [sym__list_lower_alpha_period] = STATE(380), - [sym__list_item_lower_alpha_period] = STATE(1519), - [sym__list_lower_alpha_paren] = STATE(380), - [sym__list_item_lower_alpha_paren] = STATE(1459), - [sym__list_lower_alpha_parens] = STATE(380), - [sym__list_item_lower_alpha_parens] = STATE(1460), - [sym__list_upper_alpha_period] = STATE(380), - [sym__list_item_upper_alpha_period] = STATE(1461), - [sym__list_upper_alpha_paren] = STATE(380), - [sym__list_item_upper_alpha_paren] = STATE(1462), - [sym__list_upper_alpha_parens] = STATE(380), - [sym__list_item_upper_alpha_parens] = STATE(1463), - [sym__list_lower_roman_period] = STATE(380), - [sym__list_item_lower_roman_period] = STATE(1464), - [sym__list_lower_roman_paren] = STATE(380), - [sym__list_item_lower_roman_paren] = STATE(1465), - [sym__list_lower_roman_parens] = STATE(380), - [sym__list_item_lower_roman_parens] = STATE(1466), - [sym__list_upper_roman_period] = STATE(380), - [sym__list_item_upper_roman_period] = STATE(1469), - [sym__list_upper_roman_paren] = STATE(380), - [sym__list_item_upper_roman_paren] = STATE(1471), - [sym__list_upper_roman_parens] = STATE(380), - [sym__list_item_upper_roman_parens] = STATE(1474), - [sym_table] = STATE(430), - [sym__table_content] = STATE(66), - [sym_table_separator] = STATE(66), - [sym_table_row] = STATE(214), - [sym_footnote] = STATE(430), - [sym_div] = STATE(430), - [sym_div_marker_begin] = STATE(2229), - [sym_code_block] = STATE(430), - [sym_raw_block] = STATE(430), - [sym_thematic_break] = STATE(430), - [sym_block_quote] = STATE(430), - [sym__block_quote_prefix] = STATE(1398), - [sym_link_reference_definition] = STATE(430), - [sym_block_attribute] = STATE(430), - [sym__paragraph] = STATE(430), - [sym__paragraph_content] = STATE(1821), - [sym__inline] = STATE(2311), - [sym__inline_element_with_whitespace] = STATE(229), - [sym__inline_element_with_newline] = STATE(229), - [sym__inline_core_element] = STATE(229), - [sym__hard_line_break] = STATE(716), - [sym_hard_line_break] = STATE(517), - [sym__smart_punctuation] = STATE(716), - [sym_autolink] = STATE(716), - [sym_emphasis] = STATE(716), - [sym_emphasis_begin] = STATE(283), - [sym_strong] = STATE(716), - [sym_strong_begin] = STATE(282), - [sym_highlighted] = STATE(716), - [sym_insert] = STATE(716), - [sym_delete] = STATE(716), - [sym_superscript] = STATE(716), - [sym_subscript] = STATE(716), - [sym_footnote_reference] = STATE(716), - [sym__image] = STATE(716), - [sym_full_reference_image] = STATE(716), - [sym_collapsed_reference_image] = STATE(716), - [sym_inline_image] = STATE(716), - [sym__image_description] = STATE(1412), - [sym__link] = STATE(716), - [sym_full_reference_link] = STATE(716), - [sym_collapsed_reference_link] = STATE(716), - [sym_inline_link] = STATE(716), - [sym_link_text] = STATE(1413), - [sym__comment_with_spaces] = STATE(716), - [sym_span] = STATE(716), - [sym_raw_inline] = STATE(716), - [sym_math] = STATE(716), - [sym_verbatim] = STATE(716), - [sym__todo_highlights] = STATE(716), - [sym_todo] = STATE(716), - [sym_note] = STATE(716), - [sym__symbol_fallback] = STATE(716), - [aux_sym__text] = STATE(562), - [aux_sym__list_dash_repeat1] = STATE(1330), - [aux_sym__list_plus_repeat1] = STATE(1331), - [aux_sym__list_star_repeat1] = STATE(1332), - [aux_sym__list_task_repeat1] = STATE(1281), - [aux_sym__list_definition_repeat1] = STATE(1509), - [aux_sym__list_decimal_period_repeat1] = STATE(1508), - [aux_sym__list_decimal_paren_repeat1] = STATE(1507), - [aux_sym__list_decimal_parens_repeat1] = STATE(1506), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(1519), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(1459), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(1460), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(1461), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(1462), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(1463), - [aux_sym__list_lower_roman_period_repeat1] = STATE(1464), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(1465), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(1466), - [aux_sym__list_upper_roman_period_repeat1] = STATE(1469), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(1471), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(1474), - [aux_sym_table_repeat1] = STATE(66), - [aux_sym_footnote_content_repeat1] = STATE(18), - [aux_sym__block_quote_prefix_repeat1] = STATE(1308), - [aux_sym__inline_repeat1] = STATE(229), - [anon_sym_LBRACK] = ACTIONS(567), - [anon_sym_PIPE] = ACTIONS(570), - [anon_sym_LBRACE] = ACTIONS(573), - [sym__whitespace1] = ACTIONS(398), - [anon_sym_BSLASH] = ACTIONS(401), - [sym_quotation_marks] = ACTIONS(404), - [sym_ellipsis] = ACTIONS(404), - [sym_em_dash] = ACTIONS(404), - [sym_en_dash] = ACTIONS(407), - [sym_backslash_escape] = ACTIONS(407), - [anon_sym_LT] = ACTIONS(410), - [anon_sym_LBRACE_] = ACTIONS(413), - [anon_sym__] = ACTIONS(416), - [anon_sym_LBRACE_STAR] = ACTIONS(419), - [anon_sym_STAR] = ACTIONS(422), - [anon_sym_LBRACE_EQ] = ACTIONS(425), - [anon_sym_LBRACE_PLUS] = ACTIONS(428), - [anon_sym_LBRACE_DASH] = ACTIONS(431), - [sym_symbol] = ACTIONS(404), - [anon_sym_LBRACE_CARET] = ACTIONS(434), - [anon_sym_CARET] = ACTIONS(434), - [anon_sym_LBRACE_TILDE] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_LBRACK_CARET] = ACTIONS(440), - [anon_sym_BANG_LBRACK] = ACTIONS(443), - [anon_sym_DOLLAR] = ACTIONS(446), - [anon_sym_TODO] = ACTIONS(449), - [anon_sym_WIP] = ACTIONS(449), - [anon_sym_NOTE] = ACTIONS(452), - [anon_sym_INFO] = ACTIONS(452), - [anon_sym_XXX] = ACTIONS(452), - [sym_fixme] = ACTIONS(404), - [aux_sym__text_token1] = ACTIONS(455), - [sym__newline] = ACTIONS(576), - [sym__newline_inline] = ACTIONS(463), - [sym__heading1_begin] = ACTIONS(579), - [sym__heading2_begin] = ACTIONS(582), - [sym__heading3_begin] = ACTIONS(585), - [sym__heading4_begin] = ACTIONS(588), - [sym__heading5_begin] = ACTIONS(591), - [sym__heading6_begin] = ACTIONS(594), - [sym__div_begin] = ACTIONS(484), - [sym__code_block_begin] = ACTIONS(597), - [sym_list_marker_dash] = ACTIONS(490), - [sym_list_marker_star] = ACTIONS(493), - [sym_list_marker_plus] = ACTIONS(496), - [sym__list_marker_task_begin] = ACTIONS(499), - [sym_list_marker_definition] = ACTIONS(502), - [sym_list_marker_decimal_period] = ACTIONS(505), - [sym_list_marker_lower_alpha_period] = ACTIONS(508), - [sym_list_marker_upper_alpha_period] = ACTIONS(511), - [sym_list_marker_lower_roman_period] = ACTIONS(514), - [sym_list_marker_upper_roman_period] = ACTIONS(517), - [sym_list_marker_decimal_paren] = ACTIONS(520), - [sym_list_marker_lower_alpha_paren] = ACTIONS(523), - [sym_list_marker_upper_alpha_paren] = ACTIONS(526), - [sym_list_marker_lower_roman_paren] = ACTIONS(529), - [sym_list_marker_upper_roman_paren] = ACTIONS(532), - [sym_list_marker_decimal_parens] = ACTIONS(535), - [sym_list_marker_lower_alpha_parens] = ACTIONS(538), - [sym_list_marker_upper_alpha_parens] = ACTIONS(541), - [sym_list_marker_lower_roman_parens] = ACTIONS(544), - [sym_list_marker_upper_roman_parens] = ACTIONS(547), - [sym__block_quote_begin] = ACTIONS(600), - [sym__block_quote_continuation] = ACTIONS(553), - [sym__thematic_break_dash] = ACTIONS(603), - [sym__thematic_break_star] = ACTIONS(603), - [sym__footnote_begin] = ACTIONS(606), - [sym__footnote_end] = ACTIONS(458), - [sym__verbatim_begin] = ACTIONS(562), - }, - [19] = { - [sym__block_with_heading] = STATE(476), - [sym__block_element] = STATE(476), - [sym__heading] = STATE(476), - [sym_heading1] = STATE(476), - [sym_heading2] = STATE(476), - [sym_heading3] = STATE(476), - [sym_heading4] = STATE(476), - [sym_heading5] = STATE(476), - [sym_heading6] = STATE(476), - [sym_list] = STATE(476), - [sym__list_dash] = STATE(466), - [sym__list_item_dash] = STATE(1323), - [sym__list_plus] = STATE(466), - [sym__list_item_plus] = STATE(1324), - [sym__list_star] = STATE(466), - [sym__list_item_star] = STATE(1326), - [sym__list_task] = STATE(466), - [sym__list_item_task] = STATE(1288), - [sym_list_marker_task] = STATE(49), - [sym__list_definition] = STATE(466), - [sym__list_item_definition] = STATE(1502), - [sym__list_decimal_period] = STATE(466), - [sym__list_item_decimal_period] = STATE(1570), - [sym__list_decimal_paren] = STATE(466), - [sym__list_item_decimal_paren] = STATE(1569), - [sym__list_decimal_parens] = STATE(466), - [sym__list_item_decimal_parens] = STATE(1568), - [sym__list_lower_alpha_period] = STATE(466), - [sym__list_item_lower_alpha_period] = STATE(1566), - [sym__list_lower_alpha_paren] = STATE(466), - [sym__list_item_lower_alpha_paren] = STATE(1563), - [sym__list_lower_alpha_parens] = STATE(466), - [sym__list_item_lower_alpha_parens] = STATE(1561), - [sym__list_upper_alpha_period] = STATE(466), - [sym__list_item_upper_alpha_period] = STATE(1551), - [sym__list_upper_alpha_paren] = STATE(466), - [sym__list_item_upper_alpha_paren] = STATE(1548), - [sym__list_upper_alpha_parens] = STATE(466), - [sym__list_item_upper_alpha_parens] = STATE(1542), - [sym__list_lower_roman_period] = STATE(466), - [sym__list_item_lower_roman_period] = STATE(1531), - [sym__list_lower_roman_paren] = STATE(466), - [sym__list_item_lower_roman_paren] = STATE(1530), - [sym__list_lower_roman_parens] = STATE(466), - [sym__list_item_lower_roman_parens] = STATE(1526), - [sym__list_upper_roman_period] = STATE(466), - [sym__list_item_upper_roman_period] = STATE(1523), - [sym__list_upper_roman_paren] = STATE(466), - [sym__list_item_upper_roman_paren] = STATE(1457), - [sym__list_upper_roman_parens] = STATE(466), - [sym__list_item_upper_roman_parens] = STATE(1518), - [sym_table] = STATE(476), - [sym__table_content] = STATE(60), - [sym_table_separator] = STATE(60), - [sym_table_row] = STATE(223), - [sym_footnote] = STATE(476), - [sym_div] = STATE(476), - [sym_div_marker_begin] = STATE(2200), - [sym_code_block] = STATE(476), - [sym_raw_block] = STATE(476), - [sym_thematic_break] = STATE(476), - [sym_block_quote] = STATE(476), - [sym__block_quote_prefix] = STATE(1329), - [sym_link_reference_definition] = STATE(476), - [sym_block_attribute] = STATE(476), - [sym__paragraph] = STATE(476), - [sym__paragraph_content] = STATE(1739), - [sym__inline] = STATE(2311), - [sym__inline_element_with_whitespace] = STATE(229), - [sym__inline_element_with_newline] = STATE(229), - [sym__inline_core_element] = STATE(229), - [sym__hard_line_break] = STATE(716), - [sym_hard_line_break] = STATE(517), - [sym__smart_punctuation] = STATE(716), - [sym_autolink] = STATE(716), - [sym_emphasis] = STATE(716), - [sym_emphasis_begin] = STATE(283), - [sym_strong] = STATE(716), - [sym_strong_begin] = STATE(282), - [sym_highlighted] = STATE(716), - [sym_insert] = STATE(716), - [sym_delete] = STATE(716), - [sym_superscript] = STATE(716), - [sym_subscript] = STATE(716), - [sym_footnote_reference] = STATE(716), - [sym__image] = STATE(716), - [sym_full_reference_image] = STATE(716), - [sym_collapsed_reference_image] = STATE(716), - [sym_inline_image] = STATE(716), - [sym__image_description] = STATE(1412), - [sym__link] = STATE(716), - [sym_full_reference_link] = STATE(716), - [sym_collapsed_reference_link] = STATE(716), - [sym_inline_link] = STATE(716), - [sym_link_text] = STATE(1413), - [sym__comment_with_spaces] = STATE(716), - [sym_span] = STATE(716), - [sym_raw_inline] = STATE(716), - [sym_math] = STATE(716), - [sym_verbatim] = STATE(716), - [sym__todo_highlights] = STATE(716), - [sym_todo] = STATE(716), - [sym_note] = STATE(716), - [sym__symbol_fallback] = STATE(716), - [aux_sym__text] = STATE(562), - [aux_sym__list_dash_repeat1] = STATE(1323), - [aux_sym__list_plus_repeat1] = STATE(1324), - [aux_sym__list_star_repeat1] = STATE(1326), - [aux_sym__list_task_repeat1] = STATE(1288), - [aux_sym__list_definition_repeat1] = STATE(1502), - [aux_sym__list_decimal_period_repeat1] = STATE(1570), - [aux_sym__list_decimal_paren_repeat1] = STATE(1569), - [aux_sym__list_decimal_parens_repeat1] = STATE(1568), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(1566), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(1563), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(1561), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(1551), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(1548), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(1542), - [aux_sym__list_lower_roman_period_repeat1] = STATE(1531), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(1530), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(1526), - [aux_sym__list_upper_roman_period_repeat1] = STATE(1523), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(1457), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(1518), - [aux_sym_table_repeat1] = STATE(60), - [aux_sym_footnote_content_repeat1] = STATE(15), - [aux_sym__block_quote_prefix_repeat1] = STATE(1275), - [aux_sym__inline_repeat1] = STATE(229), - [anon_sym_LBRACK] = ACTIONS(123), - [anon_sym_PIPE] = ACTIONS(125), - [anon_sym_LBRACE] = ACTIONS(127), - [sym__whitespace1] = ACTIONS(11), - [anon_sym_BSLASH] = ACTIONS(13), - [sym_quotation_marks] = ACTIONS(15), - [sym_ellipsis] = ACTIONS(15), - [sym_em_dash] = ACTIONS(15), - [sym_en_dash] = ACTIONS(17), - [sym_backslash_escape] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(19), - [anon_sym_LBRACE_] = ACTIONS(21), - [anon_sym__] = ACTIONS(23), - [anon_sym_LBRACE_STAR] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_LBRACE_EQ] = ACTIONS(29), - [anon_sym_LBRACE_PLUS] = ACTIONS(31), - [anon_sym_LBRACE_DASH] = ACTIONS(33), - [sym_symbol] = ACTIONS(15), - [anon_sym_LBRACE_CARET] = ACTIONS(35), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_LBRACE_TILDE] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(37), - [anon_sym_LBRACK_CARET] = ACTIONS(39), - [anon_sym_BANG_LBRACK] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [anon_sym_TODO] = ACTIONS(45), - [anon_sym_WIP] = ACTIONS(45), - [anon_sym_NOTE] = ACTIONS(47), - [anon_sym_INFO] = ACTIONS(47), - [anon_sym_XXX] = ACTIONS(47), - [sym_fixme] = ACTIONS(15), - [aux_sym__text_token1] = ACTIONS(49), - [sym__block_close] = ACTIONS(609), - [sym__newline] = ACTIONS(353), - [sym__newline_inline] = ACTIONS(53), - [sym__heading1_begin] = ACTIONS(57), - [sym__heading2_begin] = ACTIONS(59), - [sym__heading3_begin] = ACTIONS(61), - [sym__heading4_begin] = ACTIONS(63), - [sym__heading5_begin] = ACTIONS(65), - [sym__heading6_begin] = ACTIONS(67), - [sym__div_begin] = ACTIONS(69), - [sym__code_block_begin] = ACTIONS(133), - [sym_list_marker_dash] = ACTIONS(73), - [sym_list_marker_star] = ACTIONS(75), - [sym_list_marker_plus] = ACTIONS(77), - [sym__list_marker_task_begin] = ACTIONS(79), - [sym_list_marker_definition] = ACTIONS(81), - [sym_list_marker_decimal_period] = ACTIONS(83), - [sym_list_marker_lower_alpha_period] = ACTIONS(85), - [sym_list_marker_upper_alpha_period] = ACTIONS(87), - [sym_list_marker_lower_roman_period] = ACTIONS(89), - [sym_list_marker_upper_roman_period] = ACTIONS(91), - [sym_list_marker_decimal_paren] = ACTIONS(93), - [sym_list_marker_lower_alpha_paren] = ACTIONS(95), - [sym_list_marker_upper_alpha_paren] = ACTIONS(97), - [sym_list_marker_lower_roman_paren] = ACTIONS(99), - [sym_list_marker_upper_roman_paren] = ACTIONS(101), - [sym_list_marker_decimal_parens] = ACTIONS(103), - [sym_list_marker_lower_alpha_parens] = ACTIONS(105), - [sym_list_marker_upper_alpha_parens] = ACTIONS(107), - [sym_list_marker_lower_roman_parens] = ACTIONS(109), - [sym_list_marker_upper_roman_parens] = ACTIONS(111), - [sym__block_quote_begin] = ACTIONS(135), - [sym__block_quote_continuation] = ACTIONS(355), - [sym__thematic_break_dash] = ACTIONS(137), - [sym__thematic_break_star] = ACTIONS(137), - [sym__footnote_begin] = ACTIONS(139), - [sym__verbatim_begin] = ACTIONS(121), - }, - [20] = { - [sym__block_with_heading] = STATE(476), - [sym__block_element] = STATE(476), - [sym__heading] = STATE(476), - [sym_heading1] = STATE(476), - [sym_heading2] = STATE(476), - [sym_heading3] = STATE(476), - [sym_heading4] = STATE(476), - [sym_heading5] = STATE(476), - [sym_heading6] = STATE(476), - [sym_list] = STATE(476), - [sym__list_dash] = STATE(466), - [sym__list_item_dash] = STATE(1323), - [sym__list_plus] = STATE(466), - [sym__list_item_plus] = STATE(1324), - [sym__list_star] = STATE(466), - [sym__list_item_star] = STATE(1326), - [sym__list_task] = STATE(466), - [sym__list_item_task] = STATE(1288), - [sym_list_marker_task] = STATE(49), - [sym__list_definition] = STATE(466), - [sym__list_item_definition] = STATE(1502), - [sym__list_decimal_period] = STATE(466), - [sym__list_item_decimal_period] = STATE(1570), - [sym__list_decimal_paren] = STATE(466), - [sym__list_item_decimal_paren] = STATE(1569), - [sym__list_decimal_parens] = STATE(466), - [sym__list_item_decimal_parens] = STATE(1568), - [sym__list_lower_alpha_period] = STATE(466), - [sym__list_item_lower_alpha_period] = STATE(1566), - [sym__list_lower_alpha_paren] = STATE(466), - [sym__list_item_lower_alpha_paren] = STATE(1563), - [sym__list_lower_alpha_parens] = STATE(466), - [sym__list_item_lower_alpha_parens] = STATE(1561), - [sym__list_upper_alpha_period] = STATE(466), - [sym__list_item_upper_alpha_period] = STATE(1551), - [sym__list_upper_alpha_paren] = STATE(466), - [sym__list_item_upper_alpha_paren] = STATE(1548), - [sym__list_upper_alpha_parens] = STATE(466), - [sym__list_item_upper_alpha_parens] = STATE(1542), - [sym__list_lower_roman_period] = STATE(466), - [sym__list_item_lower_roman_period] = STATE(1531), - [sym__list_lower_roman_paren] = STATE(466), - [sym__list_item_lower_roman_paren] = STATE(1530), - [sym__list_lower_roman_parens] = STATE(466), - [sym__list_item_lower_roman_parens] = STATE(1526), - [sym__list_upper_roman_period] = STATE(466), - [sym__list_item_upper_roman_period] = STATE(1523), - [sym__list_upper_roman_paren] = STATE(466), - [sym__list_item_upper_roman_paren] = STATE(1457), - [sym__list_upper_roman_parens] = STATE(466), - [sym__list_item_upper_roman_parens] = STATE(1518), - [sym_table] = STATE(476), - [sym__table_content] = STATE(60), - [sym_table_separator] = STATE(60), - [sym_table_row] = STATE(223), - [sym_footnote] = STATE(476), - [sym_div] = STATE(476), - [sym_div_marker_begin] = STATE(2200), - [sym_code_block] = STATE(476), - [sym_raw_block] = STATE(476), - [sym_thematic_break] = STATE(476), - [sym_block_quote] = STATE(476), - [sym__block_quote_prefix] = STATE(1328), - [sym_link_reference_definition] = STATE(476), - [sym_block_attribute] = STATE(476), - [sym__paragraph] = STATE(476), - [sym__paragraph_content] = STATE(1739), - [sym__inline] = STATE(2311), - [sym__inline_element_with_whitespace] = STATE(229), - [sym__inline_element_with_newline] = STATE(229), - [sym__inline_core_element] = STATE(229), - [sym__hard_line_break] = STATE(716), - [sym_hard_line_break] = STATE(517), - [sym__smart_punctuation] = STATE(716), - [sym_autolink] = STATE(716), - [sym_emphasis] = STATE(716), - [sym_emphasis_begin] = STATE(283), - [sym_strong] = STATE(716), - [sym_strong_begin] = STATE(282), - [sym_highlighted] = STATE(716), - [sym_insert] = STATE(716), - [sym_delete] = STATE(716), - [sym_superscript] = STATE(716), - [sym_subscript] = STATE(716), - [sym_footnote_reference] = STATE(716), - [sym__image] = STATE(716), - [sym_full_reference_image] = STATE(716), - [sym_collapsed_reference_image] = STATE(716), - [sym_inline_image] = STATE(716), - [sym__image_description] = STATE(1412), - [sym__link] = STATE(716), - [sym_full_reference_link] = STATE(716), - [sym_collapsed_reference_link] = STATE(716), - [sym_inline_link] = STATE(716), - [sym_link_text] = STATE(1413), - [sym__comment_with_spaces] = STATE(716), - [sym_span] = STATE(716), - [sym_raw_inline] = STATE(716), - [sym_math] = STATE(716), - [sym_verbatim] = STATE(716), - [sym__todo_highlights] = STATE(716), - [sym_todo] = STATE(716), - [sym_note] = STATE(716), - [sym__symbol_fallback] = STATE(716), - [aux_sym__text] = STATE(562), - [aux_sym__list_dash_repeat1] = STATE(1323), - [aux_sym__list_plus_repeat1] = STATE(1324), - [aux_sym__list_star_repeat1] = STATE(1326), - [aux_sym__list_task_repeat1] = STATE(1288), - [aux_sym__list_definition_repeat1] = STATE(1502), - [aux_sym__list_decimal_period_repeat1] = STATE(1570), - [aux_sym__list_decimal_paren_repeat1] = STATE(1569), - [aux_sym__list_decimal_parens_repeat1] = STATE(1568), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(1566), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(1563), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(1561), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(1551), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(1548), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(1542), - [aux_sym__list_lower_roman_period_repeat1] = STATE(1531), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(1530), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(1526), - [aux_sym__list_upper_roman_period_repeat1] = STATE(1523), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(1457), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(1518), - [aux_sym_table_repeat1] = STATE(60), - [aux_sym_footnote_content_repeat1] = STATE(19), - [aux_sym__block_quote_prefix_repeat1] = STATE(1275), - [aux_sym__inline_repeat1] = STATE(229), - [anon_sym_LBRACK] = ACTIONS(123), - [anon_sym_PIPE] = ACTIONS(125), - [anon_sym_LBRACE] = ACTIONS(127), - [sym__whitespace1] = ACTIONS(11), - [anon_sym_BSLASH] = ACTIONS(13), - [sym_quotation_marks] = ACTIONS(15), - [sym_ellipsis] = ACTIONS(15), - [sym_em_dash] = ACTIONS(15), - [sym_en_dash] = ACTIONS(17), - [sym_backslash_escape] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(19), - [anon_sym_LBRACE_] = ACTIONS(21), - [anon_sym__] = ACTIONS(23), - [anon_sym_LBRACE_STAR] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_LBRACE_EQ] = ACTIONS(29), - [anon_sym_LBRACE_PLUS] = ACTIONS(31), - [anon_sym_LBRACE_DASH] = ACTIONS(33), - [sym_symbol] = ACTIONS(15), - [anon_sym_LBRACE_CARET] = ACTIONS(35), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_LBRACE_TILDE] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(37), - [anon_sym_LBRACK_CARET] = ACTIONS(39), - [anon_sym_BANG_LBRACK] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [anon_sym_TODO] = ACTIONS(45), - [anon_sym_WIP] = ACTIONS(45), - [anon_sym_NOTE] = ACTIONS(47), - [anon_sym_INFO] = ACTIONS(47), - [anon_sym_XXX] = ACTIONS(47), - [sym_fixme] = ACTIONS(15), - [aux_sym__text_token1] = ACTIONS(49), - [sym__block_close] = ACTIONS(611), - [sym__newline] = ACTIONS(353), - [sym__newline_inline] = ACTIONS(53), - [sym__heading1_begin] = ACTIONS(57), - [sym__heading2_begin] = ACTIONS(59), - [sym__heading3_begin] = ACTIONS(61), - [sym__heading4_begin] = ACTIONS(63), - [sym__heading5_begin] = ACTIONS(65), - [sym__heading6_begin] = ACTIONS(67), - [sym__div_begin] = ACTIONS(69), - [sym__code_block_begin] = ACTIONS(133), - [sym_list_marker_dash] = ACTIONS(73), - [sym_list_marker_star] = ACTIONS(75), - [sym_list_marker_plus] = ACTIONS(77), - [sym__list_marker_task_begin] = ACTIONS(79), - [sym_list_marker_definition] = ACTIONS(81), - [sym_list_marker_decimal_period] = ACTIONS(83), - [sym_list_marker_lower_alpha_period] = ACTIONS(85), - [sym_list_marker_upper_alpha_period] = ACTIONS(87), - [sym_list_marker_lower_roman_period] = ACTIONS(89), - [sym_list_marker_upper_roman_period] = ACTIONS(91), - [sym_list_marker_decimal_paren] = ACTIONS(93), - [sym_list_marker_lower_alpha_paren] = ACTIONS(95), - [sym_list_marker_upper_alpha_paren] = ACTIONS(97), - [sym_list_marker_lower_roman_paren] = ACTIONS(99), - [sym_list_marker_upper_roman_paren] = ACTIONS(101), - [sym_list_marker_decimal_parens] = ACTIONS(103), - [sym_list_marker_lower_alpha_parens] = ACTIONS(105), - [sym_list_marker_upper_alpha_parens] = ACTIONS(107), - [sym_list_marker_lower_roman_parens] = ACTIONS(109), - [sym_list_marker_upper_roman_parens] = ACTIONS(111), - [sym__block_quote_begin] = ACTIONS(135), - [sym__block_quote_continuation] = ACTIONS(355), - [sym__thematic_break_dash] = ACTIONS(137), - [sym__thematic_break_star] = ACTIONS(137), - [sym__footnote_begin] = ACTIONS(139), - [sym__verbatim_begin] = ACTIONS(121), - }, - [21] = { - [sym__block_with_heading] = STATE(476), - [sym__block_element] = STATE(476), - [sym__heading] = STATE(476), - [sym_heading1] = STATE(476), - [sym_heading2] = STATE(476), - [sym_heading3] = STATE(476), - [sym_heading4] = STATE(476), - [sym_heading5] = STATE(476), - [sym_heading6] = STATE(476), - [sym_list] = STATE(476), - [sym__list_dash] = STATE(466), - [sym__list_item_dash] = STATE(1323), - [sym__list_plus] = STATE(466), - [sym__list_item_plus] = STATE(1324), - [sym__list_star] = STATE(466), - [sym__list_item_star] = STATE(1326), - [sym__list_task] = STATE(466), - [sym__list_item_task] = STATE(1288), - [sym_list_marker_task] = STATE(49), - [sym__list_definition] = STATE(466), - [sym__list_item_definition] = STATE(1502), - [sym__list_decimal_period] = STATE(466), - [sym__list_item_decimal_period] = STATE(1570), - [sym__list_decimal_paren] = STATE(466), - [sym__list_item_decimal_paren] = STATE(1569), - [sym__list_decimal_parens] = STATE(466), - [sym__list_item_decimal_parens] = STATE(1568), - [sym__list_lower_alpha_period] = STATE(466), - [sym__list_item_lower_alpha_period] = STATE(1566), - [sym__list_lower_alpha_paren] = STATE(466), - [sym__list_item_lower_alpha_paren] = STATE(1563), - [sym__list_lower_alpha_parens] = STATE(466), - [sym__list_item_lower_alpha_parens] = STATE(1561), - [sym__list_upper_alpha_period] = STATE(466), - [sym__list_item_upper_alpha_period] = STATE(1551), - [sym__list_upper_alpha_paren] = STATE(466), - [sym__list_item_upper_alpha_paren] = STATE(1548), - [sym__list_upper_alpha_parens] = STATE(466), - [sym__list_item_upper_alpha_parens] = STATE(1542), - [sym__list_lower_roman_period] = STATE(466), - [sym__list_item_lower_roman_period] = STATE(1531), - [sym__list_lower_roman_paren] = STATE(466), - [sym__list_item_lower_roman_paren] = STATE(1530), - [sym__list_lower_roman_parens] = STATE(466), - [sym__list_item_lower_roman_parens] = STATE(1526), - [sym__list_upper_roman_period] = STATE(466), - [sym__list_item_upper_roman_period] = STATE(1523), - [sym__list_upper_roman_paren] = STATE(466), - [sym__list_item_upper_roman_paren] = STATE(1457), - [sym__list_upper_roman_parens] = STATE(466), - [sym__list_item_upper_roman_parens] = STATE(1518), - [sym_table] = STATE(476), - [sym__table_content] = STATE(60), - [sym_table_separator] = STATE(60), - [sym_table_row] = STATE(223), - [sym_footnote] = STATE(476), - [sym_div] = STATE(476), - [sym_div_marker_begin] = STATE(2200), - [sym_code_block] = STATE(476), - [sym_raw_block] = STATE(476), - [sym_thematic_break] = STATE(476), - [sym_block_quote] = STATE(476), - [sym__block_quote_prefix] = STATE(1322), - [sym_link_reference_definition] = STATE(476), - [sym_block_attribute] = STATE(476), - [sym__paragraph] = STATE(476), - [sym__paragraph_content] = STATE(1739), - [sym__inline] = STATE(2311), - [sym__inline_element_with_whitespace] = STATE(229), - [sym__inline_element_with_newline] = STATE(229), - [sym__inline_core_element] = STATE(229), - [sym__hard_line_break] = STATE(716), - [sym_hard_line_break] = STATE(517), - [sym__smart_punctuation] = STATE(716), - [sym_autolink] = STATE(716), - [sym_emphasis] = STATE(716), - [sym_emphasis_begin] = STATE(283), - [sym_strong] = STATE(716), - [sym_strong_begin] = STATE(282), - [sym_highlighted] = STATE(716), - [sym_insert] = STATE(716), - [sym_delete] = STATE(716), - [sym_superscript] = STATE(716), - [sym_subscript] = STATE(716), - [sym_footnote_reference] = STATE(716), - [sym__image] = STATE(716), - [sym_full_reference_image] = STATE(716), - [sym_collapsed_reference_image] = STATE(716), - [sym_inline_image] = STATE(716), - [sym__image_description] = STATE(1412), - [sym__link] = STATE(716), - [sym_full_reference_link] = STATE(716), - [sym_collapsed_reference_link] = STATE(716), - [sym_inline_link] = STATE(716), - [sym_link_text] = STATE(1413), - [sym__comment_with_spaces] = STATE(716), - [sym_span] = STATE(716), - [sym_raw_inline] = STATE(716), - [sym_math] = STATE(716), - [sym_verbatim] = STATE(716), - [sym__todo_highlights] = STATE(716), - [sym_todo] = STATE(716), - [sym_note] = STATE(716), - [sym__symbol_fallback] = STATE(716), - [aux_sym__text] = STATE(562), - [aux_sym__list_dash_repeat1] = STATE(1323), - [aux_sym__list_plus_repeat1] = STATE(1324), - [aux_sym__list_star_repeat1] = STATE(1326), - [aux_sym__list_task_repeat1] = STATE(1288), - [aux_sym__list_definition_repeat1] = STATE(1502), - [aux_sym__list_decimal_period_repeat1] = STATE(1570), - [aux_sym__list_decimal_paren_repeat1] = STATE(1569), - [aux_sym__list_decimal_parens_repeat1] = STATE(1568), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(1566), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(1563), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(1561), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(1551), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(1548), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(1542), - [aux_sym__list_lower_roman_period_repeat1] = STATE(1531), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(1530), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(1526), - [aux_sym__list_upper_roman_period_repeat1] = STATE(1523), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(1457), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(1518), - [aux_sym_table_repeat1] = STATE(60), - [aux_sym_footnote_content_repeat1] = STATE(15), - [aux_sym__block_quote_prefix_repeat1] = STATE(1275), - [aux_sym__inline_repeat1] = STATE(229), - [anon_sym_LBRACK] = ACTIONS(123), - [anon_sym_PIPE] = ACTIONS(125), - [anon_sym_LBRACE] = ACTIONS(127), - [sym__whitespace1] = ACTIONS(11), - [anon_sym_BSLASH] = ACTIONS(13), - [sym_quotation_marks] = ACTIONS(15), - [sym_ellipsis] = ACTIONS(15), - [sym_em_dash] = ACTIONS(15), - [sym_en_dash] = ACTIONS(17), - [sym_backslash_escape] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(19), - [anon_sym_LBRACE_] = ACTIONS(21), - [anon_sym__] = ACTIONS(23), - [anon_sym_LBRACE_STAR] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_LBRACE_EQ] = ACTIONS(29), - [anon_sym_LBRACE_PLUS] = ACTIONS(31), - [anon_sym_LBRACE_DASH] = ACTIONS(33), - [sym_symbol] = ACTIONS(15), - [anon_sym_LBRACE_CARET] = ACTIONS(35), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_LBRACE_TILDE] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(37), - [anon_sym_LBRACK_CARET] = ACTIONS(39), - [anon_sym_BANG_LBRACK] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [anon_sym_TODO] = ACTIONS(45), - [anon_sym_WIP] = ACTIONS(45), - [anon_sym_NOTE] = ACTIONS(47), - [anon_sym_INFO] = ACTIONS(47), - [anon_sym_XXX] = ACTIONS(47), - [sym_fixme] = ACTIONS(15), - [aux_sym__text_token1] = ACTIONS(49), - [sym__block_close] = ACTIONS(613), - [sym__newline] = ACTIONS(353), - [sym__newline_inline] = ACTIONS(53), - [sym__heading1_begin] = ACTIONS(57), - [sym__heading2_begin] = ACTIONS(59), - [sym__heading3_begin] = ACTIONS(61), - [sym__heading4_begin] = ACTIONS(63), - [sym__heading5_begin] = ACTIONS(65), - [sym__heading6_begin] = ACTIONS(67), - [sym__div_begin] = ACTIONS(69), - [sym__code_block_begin] = ACTIONS(133), - [sym_list_marker_dash] = ACTIONS(73), - [sym_list_marker_star] = ACTIONS(75), - [sym_list_marker_plus] = ACTIONS(77), - [sym__list_marker_task_begin] = ACTIONS(79), - [sym_list_marker_definition] = ACTIONS(81), - [sym_list_marker_decimal_period] = ACTIONS(83), - [sym_list_marker_lower_alpha_period] = ACTIONS(85), - [sym_list_marker_upper_alpha_period] = ACTIONS(87), - [sym_list_marker_lower_roman_period] = ACTIONS(89), - [sym_list_marker_upper_roman_period] = ACTIONS(91), - [sym_list_marker_decimal_paren] = ACTIONS(93), - [sym_list_marker_lower_alpha_paren] = ACTIONS(95), - [sym_list_marker_upper_alpha_paren] = ACTIONS(97), - [sym_list_marker_lower_roman_paren] = ACTIONS(99), - [sym_list_marker_upper_roman_paren] = ACTIONS(101), - [sym_list_marker_decimal_parens] = ACTIONS(103), - [sym_list_marker_lower_alpha_parens] = ACTIONS(105), - [sym_list_marker_upper_alpha_parens] = ACTIONS(107), - [sym_list_marker_lower_roman_parens] = ACTIONS(109), - [sym_list_marker_upper_roman_parens] = ACTIONS(111), - [sym__block_quote_begin] = ACTIONS(135), - [sym__block_quote_continuation] = ACTIONS(355), - [sym__thematic_break_dash] = ACTIONS(137), - [sym__thematic_break_star] = ACTIONS(137), - [sym__footnote_begin] = ACTIONS(139), - [sym__verbatim_begin] = ACTIONS(121), - }, - [22] = { - [sym__block_with_heading] = STATE(476), - [sym__block_element] = STATE(476), - [sym__heading] = STATE(476), - [sym_heading1] = STATE(476), - [sym_heading2] = STATE(476), - [sym_heading3] = STATE(476), - [sym_heading4] = STATE(476), - [sym_heading5] = STATE(476), - [sym_heading6] = STATE(476), - [sym_list] = STATE(476), - [sym__list_dash] = STATE(466), - [sym__list_item_dash] = STATE(1323), - [sym__list_plus] = STATE(466), - [sym__list_item_plus] = STATE(1324), - [sym__list_star] = STATE(466), - [sym__list_item_star] = STATE(1326), - [sym__list_task] = STATE(466), - [sym__list_item_task] = STATE(1288), - [sym_list_marker_task] = STATE(49), - [sym__list_definition] = STATE(466), - [sym__list_item_definition] = STATE(1502), - [sym__list_decimal_period] = STATE(466), - [sym__list_item_decimal_period] = STATE(1570), - [sym__list_decimal_paren] = STATE(466), - [sym__list_item_decimal_paren] = STATE(1569), - [sym__list_decimal_parens] = STATE(466), - [sym__list_item_decimal_parens] = STATE(1568), - [sym__list_lower_alpha_period] = STATE(466), - [sym__list_item_lower_alpha_period] = STATE(1566), - [sym__list_lower_alpha_paren] = STATE(466), - [sym__list_item_lower_alpha_paren] = STATE(1563), - [sym__list_lower_alpha_parens] = STATE(466), - [sym__list_item_lower_alpha_parens] = STATE(1561), - [sym__list_upper_alpha_period] = STATE(466), - [sym__list_item_upper_alpha_period] = STATE(1551), - [sym__list_upper_alpha_paren] = STATE(466), - [sym__list_item_upper_alpha_paren] = STATE(1548), - [sym__list_upper_alpha_parens] = STATE(466), - [sym__list_item_upper_alpha_parens] = STATE(1542), - [sym__list_lower_roman_period] = STATE(466), - [sym__list_item_lower_roman_period] = STATE(1531), - [sym__list_lower_roman_paren] = STATE(466), - [sym__list_item_lower_roman_paren] = STATE(1530), - [sym__list_lower_roman_parens] = STATE(466), - [sym__list_item_lower_roman_parens] = STATE(1526), - [sym__list_upper_roman_period] = STATE(466), - [sym__list_item_upper_roman_period] = STATE(1523), - [sym__list_upper_roman_paren] = STATE(466), - [sym__list_item_upper_roman_paren] = STATE(1457), - [sym__list_upper_roman_parens] = STATE(466), - [sym__list_item_upper_roman_parens] = STATE(1518), - [sym_table] = STATE(476), - [sym__table_content] = STATE(60), - [sym_table_separator] = STATE(60), - [sym_table_row] = STATE(223), - [sym_footnote] = STATE(476), - [sym_div] = STATE(476), - [sym_div_marker_begin] = STATE(2200), - [sym_code_block] = STATE(476), - [sym_raw_block] = STATE(476), - [sym_thematic_break] = STATE(476), - [sym_block_quote] = STATE(476), - [sym__block_quote_prefix] = STATE(1321), - [sym_link_reference_definition] = STATE(476), - [sym_block_attribute] = STATE(476), - [sym__paragraph] = STATE(476), - [sym__paragraph_content] = STATE(1739), - [sym__inline] = STATE(2311), - [sym__inline_element_with_whitespace] = STATE(229), - [sym__inline_element_with_newline] = STATE(229), - [sym__inline_core_element] = STATE(229), - [sym__hard_line_break] = STATE(716), - [sym_hard_line_break] = STATE(517), - [sym__smart_punctuation] = STATE(716), - [sym_autolink] = STATE(716), - [sym_emphasis] = STATE(716), - [sym_emphasis_begin] = STATE(283), - [sym_strong] = STATE(716), - [sym_strong_begin] = STATE(282), - [sym_highlighted] = STATE(716), - [sym_insert] = STATE(716), - [sym_delete] = STATE(716), - [sym_superscript] = STATE(716), - [sym_subscript] = STATE(716), - [sym_footnote_reference] = STATE(716), - [sym__image] = STATE(716), - [sym_full_reference_image] = STATE(716), - [sym_collapsed_reference_image] = STATE(716), - [sym_inline_image] = STATE(716), - [sym__image_description] = STATE(1412), - [sym__link] = STATE(716), - [sym_full_reference_link] = STATE(716), - [sym_collapsed_reference_link] = STATE(716), - [sym_inline_link] = STATE(716), - [sym_link_text] = STATE(1413), - [sym__comment_with_spaces] = STATE(716), - [sym_span] = STATE(716), - [sym_raw_inline] = STATE(716), - [sym_math] = STATE(716), - [sym_verbatim] = STATE(716), - [sym__todo_highlights] = STATE(716), - [sym_todo] = STATE(716), - [sym_note] = STATE(716), - [sym__symbol_fallback] = STATE(716), - [aux_sym__text] = STATE(562), - [aux_sym__list_dash_repeat1] = STATE(1323), - [aux_sym__list_plus_repeat1] = STATE(1324), - [aux_sym__list_star_repeat1] = STATE(1326), - [aux_sym__list_task_repeat1] = STATE(1288), - [aux_sym__list_definition_repeat1] = STATE(1502), - [aux_sym__list_decimal_period_repeat1] = STATE(1570), - [aux_sym__list_decimal_paren_repeat1] = STATE(1569), - [aux_sym__list_decimal_parens_repeat1] = STATE(1568), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(1566), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(1563), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(1561), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(1551), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(1548), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(1542), - [aux_sym__list_lower_roman_period_repeat1] = STATE(1531), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(1530), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(1526), - [aux_sym__list_upper_roman_period_repeat1] = STATE(1523), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(1457), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(1518), - [aux_sym_table_repeat1] = STATE(60), - [aux_sym_footnote_content_repeat1] = STATE(21), - [aux_sym__block_quote_prefix_repeat1] = STATE(1275), - [aux_sym__inline_repeat1] = STATE(229), - [anon_sym_LBRACK] = ACTIONS(123), - [anon_sym_PIPE] = ACTIONS(125), - [anon_sym_LBRACE] = ACTIONS(127), - [sym__whitespace1] = ACTIONS(11), - [anon_sym_BSLASH] = ACTIONS(13), - [sym_quotation_marks] = ACTIONS(15), - [sym_ellipsis] = ACTIONS(15), - [sym_em_dash] = ACTIONS(15), - [sym_en_dash] = ACTIONS(17), - [sym_backslash_escape] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(19), - [anon_sym_LBRACE_] = ACTIONS(21), - [anon_sym__] = ACTIONS(23), - [anon_sym_LBRACE_STAR] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_LBRACE_EQ] = ACTIONS(29), - [anon_sym_LBRACE_PLUS] = ACTIONS(31), - [anon_sym_LBRACE_DASH] = ACTIONS(33), - [sym_symbol] = ACTIONS(15), - [anon_sym_LBRACE_CARET] = ACTIONS(35), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_LBRACE_TILDE] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(37), - [anon_sym_LBRACK_CARET] = ACTIONS(39), - [anon_sym_BANG_LBRACK] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [anon_sym_TODO] = ACTIONS(45), - [anon_sym_WIP] = ACTIONS(45), - [anon_sym_NOTE] = ACTIONS(47), - [anon_sym_INFO] = ACTIONS(47), - [anon_sym_XXX] = ACTIONS(47), - [sym_fixme] = ACTIONS(15), - [aux_sym__text_token1] = ACTIONS(49), - [sym__block_close] = ACTIONS(615), - [sym__newline] = ACTIONS(353), - [sym__newline_inline] = ACTIONS(53), - [sym__heading1_begin] = ACTIONS(57), - [sym__heading2_begin] = ACTIONS(59), - [sym__heading3_begin] = ACTIONS(61), - [sym__heading4_begin] = ACTIONS(63), - [sym__heading5_begin] = ACTIONS(65), - [sym__heading6_begin] = ACTIONS(67), - [sym__div_begin] = ACTIONS(69), - [sym__code_block_begin] = ACTIONS(133), - [sym_list_marker_dash] = ACTIONS(73), - [sym_list_marker_star] = ACTIONS(75), - [sym_list_marker_plus] = ACTIONS(77), - [sym__list_marker_task_begin] = ACTIONS(79), - [sym_list_marker_definition] = ACTIONS(81), - [sym_list_marker_decimal_period] = ACTIONS(83), - [sym_list_marker_lower_alpha_period] = ACTIONS(85), - [sym_list_marker_upper_alpha_period] = ACTIONS(87), - [sym_list_marker_lower_roman_period] = ACTIONS(89), - [sym_list_marker_upper_roman_period] = ACTIONS(91), - [sym_list_marker_decimal_paren] = ACTIONS(93), - [sym_list_marker_lower_alpha_paren] = ACTIONS(95), - [sym_list_marker_upper_alpha_paren] = ACTIONS(97), - [sym_list_marker_lower_roman_paren] = ACTIONS(99), - [sym_list_marker_upper_roman_paren] = ACTIONS(101), - [sym_list_marker_decimal_parens] = ACTIONS(103), - [sym_list_marker_lower_alpha_parens] = ACTIONS(105), - [sym_list_marker_upper_alpha_parens] = ACTIONS(107), - [sym_list_marker_lower_roman_parens] = ACTIONS(109), - [sym_list_marker_upper_roman_parens] = ACTIONS(111), - [sym__block_quote_begin] = ACTIONS(135), - [sym__block_quote_continuation] = ACTIONS(355), - [sym__thematic_break_dash] = ACTIONS(137), - [sym__thematic_break_star] = ACTIONS(137), - [sym__footnote_begin] = ACTIONS(139), - [sym__verbatim_begin] = ACTIONS(121), - }, - [23] = { - [sym__block_with_heading] = STATE(476), - [sym__block_element] = STATE(476), - [sym__heading] = STATE(476), - [sym_heading1] = STATE(476), - [sym_heading2] = STATE(476), - [sym_heading3] = STATE(476), - [sym_heading4] = STATE(476), - [sym_heading5] = STATE(476), - [sym_heading6] = STATE(476), - [sym_list] = STATE(476), - [sym__list_dash] = STATE(466), - [sym__list_item_dash] = STATE(1323), - [sym__list_plus] = STATE(466), - [sym__list_item_plus] = STATE(1324), - [sym__list_star] = STATE(466), - [sym__list_item_star] = STATE(1326), - [sym__list_task] = STATE(466), - [sym__list_item_task] = STATE(1288), - [sym_list_marker_task] = STATE(49), - [sym__list_definition] = STATE(466), - [sym__list_item_definition] = STATE(1502), - [sym__list_decimal_period] = STATE(466), - [sym__list_item_decimal_period] = STATE(1570), - [sym__list_decimal_paren] = STATE(466), - [sym__list_item_decimal_paren] = STATE(1569), - [sym__list_decimal_parens] = STATE(466), - [sym__list_item_decimal_parens] = STATE(1568), - [sym__list_lower_alpha_period] = STATE(466), - [sym__list_item_lower_alpha_period] = STATE(1566), - [sym__list_lower_alpha_paren] = STATE(466), - [sym__list_item_lower_alpha_paren] = STATE(1563), - [sym__list_lower_alpha_parens] = STATE(466), - [sym__list_item_lower_alpha_parens] = STATE(1561), - [sym__list_upper_alpha_period] = STATE(466), - [sym__list_item_upper_alpha_period] = STATE(1551), - [sym__list_upper_alpha_paren] = STATE(466), - [sym__list_item_upper_alpha_paren] = STATE(1548), - [sym__list_upper_alpha_parens] = STATE(466), - [sym__list_item_upper_alpha_parens] = STATE(1542), - [sym__list_lower_roman_period] = STATE(466), - [sym__list_item_lower_roman_period] = STATE(1531), - [sym__list_lower_roman_paren] = STATE(466), - [sym__list_item_lower_roman_paren] = STATE(1530), - [sym__list_lower_roman_parens] = STATE(466), - [sym__list_item_lower_roman_parens] = STATE(1526), - [sym__list_upper_roman_period] = STATE(466), - [sym__list_item_upper_roman_period] = STATE(1523), - [sym__list_upper_roman_paren] = STATE(466), - [sym__list_item_upper_roman_paren] = STATE(1457), - [sym__list_upper_roman_parens] = STATE(466), - [sym__list_item_upper_roman_parens] = STATE(1518), - [sym_table] = STATE(476), - [sym__table_content] = STATE(60), - [sym_table_separator] = STATE(60), - [sym_table_row] = STATE(223), - [sym_footnote] = STATE(476), - [sym_div] = STATE(476), - [sym_div_marker_begin] = STATE(2200), - [sym_code_block] = STATE(476), - [sym_raw_block] = STATE(476), - [sym_thematic_break] = STATE(476), - [sym_block_quote] = STATE(476), - [sym__block_quote_prefix] = STATE(1317), - [sym_link_reference_definition] = STATE(476), - [sym_block_attribute] = STATE(476), - [sym__paragraph] = STATE(476), - [sym__paragraph_content] = STATE(1739), - [sym__inline] = STATE(2311), - [sym__inline_element_with_whitespace] = STATE(229), - [sym__inline_element_with_newline] = STATE(229), - [sym__inline_core_element] = STATE(229), - [sym__hard_line_break] = STATE(716), - [sym_hard_line_break] = STATE(517), - [sym__smart_punctuation] = STATE(716), - [sym_autolink] = STATE(716), - [sym_emphasis] = STATE(716), - [sym_emphasis_begin] = STATE(283), - [sym_strong] = STATE(716), - [sym_strong_begin] = STATE(282), - [sym_highlighted] = STATE(716), - [sym_insert] = STATE(716), - [sym_delete] = STATE(716), - [sym_superscript] = STATE(716), - [sym_subscript] = STATE(716), - [sym_footnote_reference] = STATE(716), - [sym__image] = STATE(716), - [sym_full_reference_image] = STATE(716), - [sym_collapsed_reference_image] = STATE(716), - [sym_inline_image] = STATE(716), - [sym__image_description] = STATE(1412), - [sym__link] = STATE(716), - [sym_full_reference_link] = STATE(716), - [sym_collapsed_reference_link] = STATE(716), - [sym_inline_link] = STATE(716), - [sym_link_text] = STATE(1413), - [sym__comment_with_spaces] = STATE(716), - [sym_span] = STATE(716), - [sym_raw_inline] = STATE(716), - [sym_math] = STATE(716), - [sym_verbatim] = STATE(716), - [sym__todo_highlights] = STATE(716), - [sym_todo] = STATE(716), - [sym_note] = STATE(716), - [sym__symbol_fallback] = STATE(716), - [aux_sym__text] = STATE(562), - [aux_sym__list_dash_repeat1] = STATE(1323), - [aux_sym__list_plus_repeat1] = STATE(1324), - [aux_sym__list_star_repeat1] = STATE(1326), - [aux_sym__list_task_repeat1] = STATE(1288), - [aux_sym__list_definition_repeat1] = STATE(1502), - [aux_sym__list_decimal_period_repeat1] = STATE(1570), - [aux_sym__list_decimal_paren_repeat1] = STATE(1569), - [aux_sym__list_decimal_parens_repeat1] = STATE(1568), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(1566), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(1563), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(1561), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(1551), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(1548), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(1542), - [aux_sym__list_lower_roman_period_repeat1] = STATE(1531), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(1530), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(1526), - [aux_sym__list_upper_roman_period_repeat1] = STATE(1523), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(1457), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(1518), - [aux_sym_table_repeat1] = STATE(60), - [aux_sym_footnote_content_repeat1] = STATE(15), - [aux_sym__block_quote_prefix_repeat1] = STATE(1275), - [aux_sym__inline_repeat1] = STATE(229), - [anon_sym_LBRACK] = ACTIONS(123), - [anon_sym_PIPE] = ACTIONS(125), - [anon_sym_LBRACE] = ACTIONS(127), - [sym__whitespace1] = ACTIONS(11), - [anon_sym_BSLASH] = ACTIONS(13), - [sym_quotation_marks] = ACTIONS(15), - [sym_ellipsis] = ACTIONS(15), - [sym_em_dash] = ACTIONS(15), - [sym_en_dash] = ACTIONS(17), - [sym_backslash_escape] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(19), - [anon_sym_LBRACE_] = ACTIONS(21), - [anon_sym__] = ACTIONS(23), - [anon_sym_LBRACE_STAR] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_LBRACE_EQ] = ACTIONS(29), - [anon_sym_LBRACE_PLUS] = ACTIONS(31), - [anon_sym_LBRACE_DASH] = ACTIONS(33), - [sym_symbol] = ACTIONS(15), - [anon_sym_LBRACE_CARET] = ACTIONS(35), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_LBRACE_TILDE] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(37), - [anon_sym_LBRACK_CARET] = ACTIONS(39), - [anon_sym_BANG_LBRACK] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [anon_sym_TODO] = ACTIONS(45), - [anon_sym_WIP] = ACTIONS(45), - [anon_sym_NOTE] = ACTIONS(47), - [anon_sym_INFO] = ACTIONS(47), - [anon_sym_XXX] = ACTIONS(47), - [sym_fixme] = ACTIONS(15), - [aux_sym__text_token1] = ACTIONS(49), - [sym__block_close] = ACTIONS(617), - [sym__newline] = ACTIONS(353), - [sym__newline_inline] = ACTIONS(53), - [sym__heading1_begin] = ACTIONS(57), - [sym__heading2_begin] = ACTIONS(59), - [sym__heading3_begin] = ACTIONS(61), - [sym__heading4_begin] = ACTIONS(63), - [sym__heading5_begin] = ACTIONS(65), - [sym__heading6_begin] = ACTIONS(67), - [sym__div_begin] = ACTIONS(69), - [sym__code_block_begin] = ACTIONS(133), - [sym_list_marker_dash] = ACTIONS(73), - [sym_list_marker_star] = ACTIONS(75), - [sym_list_marker_plus] = ACTIONS(77), - [sym__list_marker_task_begin] = ACTIONS(79), - [sym_list_marker_definition] = ACTIONS(81), - [sym_list_marker_decimal_period] = ACTIONS(83), - [sym_list_marker_lower_alpha_period] = ACTIONS(85), - [sym_list_marker_upper_alpha_period] = ACTIONS(87), - [sym_list_marker_lower_roman_period] = ACTIONS(89), - [sym_list_marker_upper_roman_period] = ACTIONS(91), - [sym_list_marker_decimal_paren] = ACTIONS(93), - [sym_list_marker_lower_alpha_paren] = ACTIONS(95), - [sym_list_marker_upper_alpha_paren] = ACTIONS(97), - [sym_list_marker_lower_roman_paren] = ACTIONS(99), - [sym_list_marker_upper_roman_paren] = ACTIONS(101), - [sym_list_marker_decimal_parens] = ACTIONS(103), - [sym_list_marker_lower_alpha_parens] = ACTIONS(105), - [sym_list_marker_upper_alpha_parens] = ACTIONS(107), - [sym_list_marker_lower_roman_parens] = ACTIONS(109), - [sym_list_marker_upper_roman_parens] = ACTIONS(111), - [sym__block_quote_begin] = ACTIONS(135), - [sym__block_quote_continuation] = ACTIONS(355), - [sym__thematic_break_dash] = ACTIONS(137), - [sym__thematic_break_star] = ACTIONS(137), - [sym__footnote_begin] = ACTIONS(139), - [sym__verbatim_begin] = ACTIONS(121), - }, - [24] = { - [sym__block_with_heading] = STATE(430), - [sym__block_element] = STATE(430), - [sym__heading] = STATE(430), - [sym_heading1] = STATE(430), - [sym_heading2] = STATE(430), - [sym_heading3] = STATE(430), - [sym_heading4] = STATE(430), - [sym_heading5] = STATE(430), - [sym_heading6] = STATE(430), - [sym_list] = STATE(430), - [sym__list_dash] = STATE(380), - [sym__list_item_dash] = STATE(1330), - [sym__list_plus] = STATE(380), - [sym__list_item_plus] = STATE(1331), - [sym__list_star] = STATE(380), - [sym__list_item_star] = STATE(1332), - [sym__list_task] = STATE(380), - [sym__list_item_task] = STATE(1281), - [sym_list_marker_task] = STATE(49), - [sym__list_definition] = STATE(380), - [sym__list_item_definition] = STATE(1509), - [sym__list_decimal_period] = STATE(380), - [sym__list_item_decimal_period] = STATE(1508), - [sym__list_decimal_paren] = STATE(380), - [sym__list_item_decimal_paren] = STATE(1507), - [sym__list_decimal_parens] = STATE(380), - [sym__list_item_decimal_parens] = STATE(1506), - [sym__list_lower_alpha_period] = STATE(380), - [sym__list_item_lower_alpha_period] = STATE(1519), - [sym__list_lower_alpha_paren] = STATE(380), - [sym__list_item_lower_alpha_paren] = STATE(1459), - [sym__list_lower_alpha_parens] = STATE(380), - [sym__list_item_lower_alpha_parens] = STATE(1460), - [sym__list_upper_alpha_period] = STATE(380), - [sym__list_item_upper_alpha_period] = STATE(1461), - [sym__list_upper_alpha_paren] = STATE(380), - [sym__list_item_upper_alpha_paren] = STATE(1462), - [sym__list_upper_alpha_parens] = STATE(380), - [sym__list_item_upper_alpha_parens] = STATE(1463), - [sym__list_lower_roman_period] = STATE(380), - [sym__list_item_lower_roman_period] = STATE(1464), - [sym__list_lower_roman_paren] = STATE(380), - [sym__list_item_lower_roman_paren] = STATE(1465), - [sym__list_lower_roman_parens] = STATE(380), - [sym__list_item_lower_roman_parens] = STATE(1466), - [sym__list_upper_roman_period] = STATE(380), - [sym__list_item_upper_roman_period] = STATE(1469), - [sym__list_upper_roman_paren] = STATE(380), - [sym__list_item_upper_roman_paren] = STATE(1471), - [sym__list_upper_roman_parens] = STATE(380), - [sym__list_item_upper_roman_parens] = STATE(1474), - [sym_table] = STATE(430), - [sym__table_content] = STATE(66), - [sym_table_separator] = STATE(66), - [sym_table_row] = STATE(214), - [sym_footnote] = STATE(430), - [sym_footnote_content] = STATE(1964), - [sym_div] = STATE(430), - [sym_div_marker_begin] = STATE(2229), - [sym_code_block] = STATE(430), - [sym_raw_block] = STATE(430), - [sym_thematic_break] = STATE(430), - [sym_block_quote] = STATE(430), - [sym__block_quote_prefix] = STATE(1398), - [sym_link_reference_definition] = STATE(430), - [sym_block_attribute] = STATE(430), - [sym__paragraph] = STATE(430), - [sym__paragraph_content] = STATE(1821), - [sym__inline] = STATE(2311), - [sym__inline_element_with_whitespace] = STATE(229), - [sym__inline_element_with_newline] = STATE(229), - [sym__inline_core_element] = STATE(229), - [sym__hard_line_break] = STATE(716), - [sym_hard_line_break] = STATE(517), - [sym__smart_punctuation] = STATE(716), - [sym_autolink] = STATE(716), - [sym_emphasis] = STATE(716), - [sym_emphasis_begin] = STATE(283), - [sym_strong] = STATE(716), - [sym_strong_begin] = STATE(282), - [sym_highlighted] = STATE(716), - [sym_insert] = STATE(716), - [sym_delete] = STATE(716), - [sym_superscript] = STATE(716), - [sym_subscript] = STATE(716), - [sym_footnote_reference] = STATE(716), - [sym__image] = STATE(716), - [sym_full_reference_image] = STATE(716), - [sym_collapsed_reference_image] = STATE(716), - [sym_inline_image] = STATE(716), - [sym__image_description] = STATE(1412), - [sym__link] = STATE(716), - [sym_full_reference_link] = STATE(716), - [sym_collapsed_reference_link] = STATE(716), - [sym_inline_link] = STATE(716), - [sym_link_text] = STATE(1413), - [sym__comment_with_spaces] = STATE(716), - [sym_span] = STATE(716), - [sym_raw_inline] = STATE(716), - [sym_math] = STATE(716), - [sym_verbatim] = STATE(716), - [sym__todo_highlights] = STATE(716), - [sym_todo] = STATE(716), - [sym_note] = STATE(716), - [sym__symbol_fallback] = STATE(716), - [aux_sym__text] = STATE(562), - [aux_sym__list_dash_repeat1] = STATE(1330), - [aux_sym__list_plus_repeat1] = STATE(1331), - [aux_sym__list_star_repeat1] = STATE(1332), - [aux_sym__list_task_repeat1] = STATE(1281), - [aux_sym__list_definition_repeat1] = STATE(1509), - [aux_sym__list_decimal_period_repeat1] = STATE(1508), - [aux_sym__list_decimal_paren_repeat1] = STATE(1507), - [aux_sym__list_decimal_parens_repeat1] = STATE(1506), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(1519), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(1459), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(1460), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(1461), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(1462), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(1463), - [aux_sym__list_lower_roman_period_repeat1] = STATE(1464), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(1465), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(1466), - [aux_sym__list_upper_roman_period_repeat1] = STATE(1469), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(1471), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(1474), - [aux_sym_table_repeat1] = STATE(66), - [aux_sym_footnote_content_repeat1] = STATE(25), - [aux_sym__block_quote_prefix_repeat1] = STATE(1308), - [aux_sym__inline_repeat1] = STATE(229), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_PIPE] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [sym__whitespace1] = ACTIONS(11), - [anon_sym_BSLASH] = ACTIONS(13), - [sym_quotation_marks] = ACTIONS(15), - [sym_ellipsis] = ACTIONS(15), - [sym_em_dash] = ACTIONS(15), - [sym_en_dash] = ACTIONS(17), - [sym_backslash_escape] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(19), - [anon_sym_LBRACE_] = ACTIONS(21), - [anon_sym__] = ACTIONS(23), - [anon_sym_LBRACE_STAR] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_LBRACE_EQ] = ACTIONS(29), - [anon_sym_LBRACE_PLUS] = ACTIONS(31), - [anon_sym_LBRACE_DASH] = ACTIONS(33), - [sym_symbol] = ACTIONS(15), - [anon_sym_LBRACE_CARET] = ACTIONS(35), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_LBRACE_TILDE] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(37), - [anon_sym_LBRACK_CARET] = ACTIONS(39), - [anon_sym_BANG_LBRACK] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [anon_sym_TODO] = ACTIONS(45), - [anon_sym_WIP] = ACTIONS(45), - [anon_sym_NOTE] = ACTIONS(47), - [anon_sym_INFO] = ACTIONS(47), - [anon_sym_XXX] = ACTIONS(47), - [sym_fixme] = ACTIONS(15), - [aux_sym__text_token1] = ACTIONS(49), - [sym__newline] = ACTIONS(365), - [sym__newline_inline] = ACTIONS(53), - [sym__heading1_begin] = ACTIONS(367), - [sym__heading2_begin] = ACTIONS(369), - [sym__heading3_begin] = ACTIONS(371), - [sym__heading4_begin] = ACTIONS(373), - [sym__heading5_begin] = ACTIONS(375), - [sym__heading6_begin] = ACTIONS(377), - [sym__div_begin] = ACTIONS(69), - [sym__code_block_begin] = ACTIONS(379), - [sym_list_marker_dash] = ACTIONS(73), - [sym_list_marker_star] = ACTIONS(75), - [sym_list_marker_plus] = ACTIONS(77), - [sym__list_marker_task_begin] = ACTIONS(79), - [sym_list_marker_definition] = ACTIONS(81), - [sym_list_marker_decimal_period] = ACTIONS(83), - [sym_list_marker_lower_alpha_period] = ACTIONS(85), - [sym_list_marker_upper_alpha_period] = ACTIONS(87), - [sym_list_marker_lower_roman_period] = ACTIONS(89), - [sym_list_marker_upper_roman_period] = ACTIONS(91), - [sym_list_marker_decimal_paren] = ACTIONS(93), - [sym_list_marker_lower_alpha_paren] = ACTIONS(95), - [sym_list_marker_upper_alpha_paren] = ACTIONS(97), - [sym_list_marker_lower_roman_paren] = ACTIONS(99), - [sym_list_marker_upper_roman_paren] = ACTIONS(101), - [sym_list_marker_decimal_parens] = ACTIONS(103), - [sym_list_marker_lower_alpha_parens] = ACTIONS(105), - [sym_list_marker_upper_alpha_parens] = ACTIONS(107), - [sym_list_marker_lower_roman_parens] = ACTIONS(109), - [sym_list_marker_upper_roman_parens] = ACTIONS(111), - [sym__block_quote_begin] = ACTIONS(381), - [sym__block_quote_continuation] = ACTIONS(115), - [sym__thematic_break_dash] = ACTIONS(383), - [sym__thematic_break_star] = ACTIONS(383), - [sym__footnote_begin] = ACTIONS(385), - [sym__verbatim_begin] = ACTIONS(121), - }, - [25] = { - [sym__block_with_heading] = STATE(430), - [sym__block_element] = STATE(430), - [sym__heading] = STATE(430), - [sym_heading1] = STATE(430), - [sym_heading2] = STATE(430), - [sym_heading3] = STATE(430), - [sym_heading4] = STATE(430), - [sym_heading5] = STATE(430), - [sym_heading6] = STATE(430), - [sym_list] = STATE(430), - [sym__list_dash] = STATE(380), - [sym__list_item_dash] = STATE(1330), - [sym__list_plus] = STATE(380), - [sym__list_item_plus] = STATE(1331), - [sym__list_star] = STATE(380), - [sym__list_item_star] = STATE(1332), - [sym__list_task] = STATE(380), - [sym__list_item_task] = STATE(1281), - [sym_list_marker_task] = STATE(49), - [sym__list_definition] = STATE(380), - [sym__list_item_definition] = STATE(1509), - [sym__list_decimal_period] = STATE(380), - [sym__list_item_decimal_period] = STATE(1508), - [sym__list_decimal_paren] = STATE(380), - [sym__list_item_decimal_paren] = STATE(1507), - [sym__list_decimal_parens] = STATE(380), - [sym__list_item_decimal_parens] = STATE(1506), - [sym__list_lower_alpha_period] = STATE(380), - [sym__list_item_lower_alpha_period] = STATE(1519), - [sym__list_lower_alpha_paren] = STATE(380), - [sym__list_item_lower_alpha_paren] = STATE(1459), - [sym__list_lower_alpha_parens] = STATE(380), - [sym__list_item_lower_alpha_parens] = STATE(1460), - [sym__list_upper_alpha_period] = STATE(380), - [sym__list_item_upper_alpha_period] = STATE(1461), - [sym__list_upper_alpha_paren] = STATE(380), - [sym__list_item_upper_alpha_paren] = STATE(1462), - [sym__list_upper_alpha_parens] = STATE(380), - [sym__list_item_upper_alpha_parens] = STATE(1463), - [sym__list_lower_roman_period] = STATE(380), - [sym__list_item_lower_roman_period] = STATE(1464), - [sym__list_lower_roman_paren] = STATE(380), - [sym__list_item_lower_roman_paren] = STATE(1465), - [sym__list_lower_roman_parens] = STATE(380), - [sym__list_item_lower_roman_parens] = STATE(1466), - [sym__list_upper_roman_period] = STATE(380), - [sym__list_item_upper_roman_period] = STATE(1469), - [sym__list_upper_roman_paren] = STATE(380), - [sym__list_item_upper_roman_paren] = STATE(1471), - [sym__list_upper_roman_parens] = STATE(380), - [sym__list_item_upper_roman_parens] = STATE(1474), - [sym_table] = STATE(430), - [sym__table_content] = STATE(66), - [sym_table_separator] = STATE(66), - [sym_table_row] = STATE(214), - [sym_footnote] = STATE(430), - [sym_div] = STATE(430), - [sym_div_marker_begin] = STATE(2229), - [sym_code_block] = STATE(430), - [sym_raw_block] = STATE(430), - [sym_thematic_break] = STATE(430), - [sym_block_quote] = STATE(430), - [sym__block_quote_prefix] = STATE(1398), - [sym_link_reference_definition] = STATE(430), - [sym_block_attribute] = STATE(430), - [sym__paragraph] = STATE(430), - [sym__paragraph_content] = STATE(1821), - [sym__inline] = STATE(2311), - [sym__inline_element_with_whitespace] = STATE(229), - [sym__inline_element_with_newline] = STATE(229), - [sym__inline_core_element] = STATE(229), - [sym__hard_line_break] = STATE(716), - [sym_hard_line_break] = STATE(517), - [sym__smart_punctuation] = STATE(716), - [sym_autolink] = STATE(716), - [sym_emphasis] = STATE(716), - [sym_emphasis_begin] = STATE(283), - [sym_strong] = STATE(716), - [sym_strong_begin] = STATE(282), - [sym_highlighted] = STATE(716), - [sym_insert] = STATE(716), - [sym_delete] = STATE(716), - [sym_superscript] = STATE(716), - [sym_subscript] = STATE(716), - [sym_footnote_reference] = STATE(716), - [sym__image] = STATE(716), - [sym_full_reference_image] = STATE(716), - [sym_collapsed_reference_image] = STATE(716), - [sym_inline_image] = STATE(716), - [sym__image_description] = STATE(1412), - [sym__link] = STATE(716), - [sym_full_reference_link] = STATE(716), - [sym_collapsed_reference_link] = STATE(716), - [sym_inline_link] = STATE(716), - [sym_link_text] = STATE(1413), - [sym__comment_with_spaces] = STATE(716), - [sym_span] = STATE(716), - [sym_raw_inline] = STATE(716), - [sym_math] = STATE(716), - [sym_verbatim] = STATE(716), - [sym__todo_highlights] = STATE(716), - [sym_todo] = STATE(716), - [sym_note] = STATE(716), - [sym__symbol_fallback] = STATE(716), - [aux_sym__text] = STATE(562), - [aux_sym__list_dash_repeat1] = STATE(1330), - [aux_sym__list_plus_repeat1] = STATE(1331), - [aux_sym__list_star_repeat1] = STATE(1332), - [aux_sym__list_task_repeat1] = STATE(1281), - [aux_sym__list_definition_repeat1] = STATE(1509), - [aux_sym__list_decimal_period_repeat1] = STATE(1508), - [aux_sym__list_decimal_paren_repeat1] = STATE(1507), - [aux_sym__list_decimal_parens_repeat1] = STATE(1506), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(1519), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(1459), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(1460), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(1461), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(1462), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(1463), - [aux_sym__list_lower_roman_period_repeat1] = STATE(1464), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(1465), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(1466), - [aux_sym__list_upper_roman_period_repeat1] = STATE(1469), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(1471), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(1474), - [aux_sym_table_repeat1] = STATE(66), - [aux_sym_footnote_content_repeat1] = STATE(18), - [aux_sym__block_quote_prefix_repeat1] = STATE(1308), - [aux_sym__inline_repeat1] = STATE(229), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_PIPE] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [sym__whitespace1] = ACTIONS(11), - [anon_sym_BSLASH] = ACTIONS(13), - [sym_quotation_marks] = ACTIONS(15), - [sym_ellipsis] = ACTIONS(15), - [sym_em_dash] = ACTIONS(15), - [sym_en_dash] = ACTIONS(17), - [sym_backslash_escape] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(19), - [anon_sym_LBRACE_] = ACTIONS(21), - [anon_sym__] = ACTIONS(23), - [anon_sym_LBRACE_STAR] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_LBRACE_EQ] = ACTIONS(29), - [anon_sym_LBRACE_PLUS] = ACTIONS(31), - [anon_sym_LBRACE_DASH] = ACTIONS(33), - [sym_symbol] = ACTIONS(15), - [anon_sym_LBRACE_CARET] = ACTIONS(35), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_LBRACE_TILDE] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(37), - [anon_sym_LBRACK_CARET] = ACTIONS(39), - [anon_sym_BANG_LBRACK] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [anon_sym_TODO] = ACTIONS(45), - [anon_sym_WIP] = ACTIONS(45), - [anon_sym_NOTE] = ACTIONS(47), - [anon_sym_INFO] = ACTIONS(47), - [anon_sym_XXX] = ACTIONS(47), - [sym_fixme] = ACTIONS(15), - [aux_sym__text_token1] = ACTIONS(49), - [sym__newline] = ACTIONS(365), - [sym__newline_inline] = ACTIONS(53), - [sym__heading1_begin] = ACTIONS(367), - [sym__heading2_begin] = ACTIONS(369), - [sym__heading3_begin] = ACTIONS(371), - [sym__heading4_begin] = ACTIONS(373), - [sym__heading5_begin] = ACTIONS(375), - [sym__heading6_begin] = ACTIONS(377), - [sym__div_begin] = ACTIONS(69), - [sym__code_block_begin] = ACTIONS(379), - [sym_list_marker_dash] = ACTIONS(73), - [sym_list_marker_star] = ACTIONS(75), - [sym_list_marker_plus] = ACTIONS(77), - [sym__list_marker_task_begin] = ACTIONS(79), - [sym_list_marker_definition] = ACTIONS(81), - [sym_list_marker_decimal_period] = ACTIONS(83), - [sym_list_marker_lower_alpha_period] = ACTIONS(85), - [sym_list_marker_upper_alpha_period] = ACTIONS(87), - [sym_list_marker_lower_roman_period] = ACTIONS(89), - [sym_list_marker_upper_roman_period] = ACTIONS(91), - [sym_list_marker_decimal_paren] = ACTIONS(93), - [sym_list_marker_lower_alpha_paren] = ACTIONS(95), - [sym_list_marker_upper_alpha_paren] = ACTIONS(97), - [sym_list_marker_lower_roman_paren] = ACTIONS(99), - [sym_list_marker_upper_roman_paren] = ACTIONS(101), - [sym_list_marker_decimal_parens] = ACTIONS(103), - [sym_list_marker_lower_alpha_parens] = ACTIONS(105), - [sym_list_marker_upper_alpha_parens] = ACTIONS(107), - [sym_list_marker_lower_roman_parens] = ACTIONS(109), - [sym_list_marker_upper_roman_parens] = ACTIONS(111), - [sym__block_quote_begin] = ACTIONS(381), - [sym__block_quote_continuation] = ACTIONS(115), - [sym__thematic_break_dash] = ACTIONS(383), - [sym__thematic_break_star] = ACTIONS(383), - [sym__footnote_begin] = ACTIONS(385), - [sym__footnote_end] = ACTIONS(619), - [sym__verbatim_begin] = ACTIONS(121), - }, - [26] = { - [sym__block_with_heading] = STATE(476), - [sym__block_element] = STATE(476), - [sym__heading] = STATE(476), - [sym_heading1] = STATE(476), - [sym_heading2] = STATE(476), - [sym_heading3] = STATE(476), - [sym_heading4] = STATE(476), - [sym_heading5] = STATE(476), - [sym_heading6] = STATE(476), - [sym_list] = STATE(476), - [sym__list_dash] = STATE(466), - [sym__list_item_dash] = STATE(1323), - [sym__list_plus] = STATE(466), - [sym__list_item_plus] = STATE(1324), - [sym__list_star] = STATE(466), - [sym__list_item_star] = STATE(1326), - [sym__list_task] = STATE(466), - [sym__list_item_task] = STATE(1288), - [sym_list_marker_task] = STATE(49), - [sym__list_definition] = STATE(466), - [sym__list_item_definition] = STATE(1502), - [sym__list_decimal_period] = STATE(466), - [sym__list_item_decimal_period] = STATE(1570), - [sym__list_decimal_paren] = STATE(466), - [sym__list_item_decimal_paren] = STATE(1569), - [sym__list_decimal_parens] = STATE(466), - [sym__list_item_decimal_parens] = STATE(1568), - [sym__list_lower_alpha_period] = STATE(466), - [sym__list_item_lower_alpha_period] = STATE(1566), - [sym__list_lower_alpha_paren] = STATE(466), - [sym__list_item_lower_alpha_paren] = STATE(1563), - [sym__list_lower_alpha_parens] = STATE(466), - [sym__list_item_lower_alpha_parens] = STATE(1561), - [sym__list_upper_alpha_period] = STATE(466), - [sym__list_item_upper_alpha_period] = STATE(1551), - [sym__list_upper_alpha_paren] = STATE(466), - [sym__list_item_upper_alpha_paren] = STATE(1548), - [sym__list_upper_alpha_parens] = STATE(466), - [sym__list_item_upper_alpha_parens] = STATE(1542), - [sym__list_lower_roman_period] = STATE(466), - [sym__list_item_lower_roman_period] = STATE(1531), - [sym__list_lower_roman_paren] = STATE(466), - [sym__list_item_lower_roman_paren] = STATE(1530), - [sym__list_lower_roman_parens] = STATE(466), - [sym__list_item_lower_roman_parens] = STATE(1526), - [sym__list_upper_roman_period] = STATE(466), - [sym__list_item_upper_roman_period] = STATE(1523), - [sym__list_upper_roman_paren] = STATE(466), - [sym__list_item_upper_roman_paren] = STATE(1457), - [sym__list_upper_roman_parens] = STATE(466), - [sym__list_item_upper_roman_parens] = STATE(1518), - [sym_table] = STATE(476), - [sym__table_content] = STATE(60), - [sym_table_separator] = STATE(60), - [sym_table_row] = STATE(223), - [sym_footnote] = STATE(476), - [sym_div] = STATE(476), - [sym_div_marker_begin] = STATE(2200), - [sym_code_block] = STATE(476), - [sym_raw_block] = STATE(476), - [sym_thematic_break] = STATE(476), - [sym_block_quote] = STATE(476), - [sym__block_quote_prefix] = STATE(1315), - [sym_link_reference_definition] = STATE(476), - [sym_block_attribute] = STATE(476), - [sym__paragraph] = STATE(476), - [sym__paragraph_content] = STATE(1739), - [sym__inline] = STATE(2311), - [sym__inline_element_with_whitespace] = STATE(229), - [sym__inline_element_with_newline] = STATE(229), - [sym__inline_core_element] = STATE(229), - [sym__hard_line_break] = STATE(716), - [sym_hard_line_break] = STATE(517), - [sym__smart_punctuation] = STATE(716), - [sym_autolink] = STATE(716), - [sym_emphasis] = STATE(716), - [sym_emphasis_begin] = STATE(283), - [sym_strong] = STATE(716), - [sym_strong_begin] = STATE(282), - [sym_highlighted] = STATE(716), - [sym_insert] = STATE(716), - [sym_delete] = STATE(716), - [sym_superscript] = STATE(716), - [sym_subscript] = STATE(716), - [sym_footnote_reference] = STATE(716), - [sym__image] = STATE(716), - [sym_full_reference_image] = STATE(716), - [sym_collapsed_reference_image] = STATE(716), - [sym_inline_image] = STATE(716), - [sym__image_description] = STATE(1412), - [sym__link] = STATE(716), - [sym_full_reference_link] = STATE(716), - [sym_collapsed_reference_link] = STATE(716), - [sym_inline_link] = STATE(716), - [sym_link_text] = STATE(1413), - [sym__comment_with_spaces] = STATE(716), - [sym_span] = STATE(716), - [sym_raw_inline] = STATE(716), - [sym_math] = STATE(716), - [sym_verbatim] = STATE(716), - [sym__todo_highlights] = STATE(716), - [sym_todo] = STATE(716), - [sym_note] = STATE(716), - [sym__symbol_fallback] = STATE(716), - [aux_sym__text] = STATE(562), - [aux_sym__list_dash_repeat1] = STATE(1323), - [aux_sym__list_plus_repeat1] = STATE(1324), - [aux_sym__list_star_repeat1] = STATE(1326), - [aux_sym__list_task_repeat1] = STATE(1288), - [aux_sym__list_definition_repeat1] = STATE(1502), - [aux_sym__list_decimal_period_repeat1] = STATE(1570), - [aux_sym__list_decimal_paren_repeat1] = STATE(1569), - [aux_sym__list_decimal_parens_repeat1] = STATE(1568), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(1566), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(1563), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(1561), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(1551), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(1548), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(1542), - [aux_sym__list_lower_roman_period_repeat1] = STATE(1531), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(1530), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(1526), - [aux_sym__list_upper_roman_period_repeat1] = STATE(1523), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(1457), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(1518), - [aux_sym_table_repeat1] = STATE(60), - [aux_sym_footnote_content_repeat1] = STATE(11), - [aux_sym__block_quote_prefix_repeat1] = STATE(1275), - [aux_sym__inline_repeat1] = STATE(229), - [anon_sym_LBRACK] = ACTIONS(123), - [anon_sym_PIPE] = ACTIONS(125), - [anon_sym_LBRACE] = ACTIONS(127), - [sym__whitespace1] = ACTIONS(11), - [anon_sym_BSLASH] = ACTIONS(13), - [sym_quotation_marks] = ACTIONS(15), - [sym_ellipsis] = ACTIONS(15), - [sym_em_dash] = ACTIONS(15), - [sym_en_dash] = ACTIONS(17), - [sym_backslash_escape] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(19), - [anon_sym_LBRACE_] = ACTIONS(21), - [anon_sym__] = ACTIONS(23), - [anon_sym_LBRACE_STAR] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_LBRACE_EQ] = ACTIONS(29), - [anon_sym_LBRACE_PLUS] = ACTIONS(31), - [anon_sym_LBRACE_DASH] = ACTIONS(33), - [sym_symbol] = ACTIONS(15), - [anon_sym_LBRACE_CARET] = ACTIONS(35), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_LBRACE_TILDE] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(37), - [anon_sym_LBRACK_CARET] = ACTIONS(39), - [anon_sym_BANG_LBRACK] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [anon_sym_TODO] = ACTIONS(45), - [anon_sym_WIP] = ACTIONS(45), - [anon_sym_NOTE] = ACTIONS(47), - [anon_sym_INFO] = ACTIONS(47), - [anon_sym_XXX] = ACTIONS(47), - [sym_fixme] = ACTIONS(15), - [aux_sym__text_token1] = ACTIONS(49), - [sym__block_close] = ACTIONS(621), - [sym__newline] = ACTIONS(353), - [sym__newline_inline] = ACTIONS(53), - [sym__heading1_begin] = ACTIONS(57), - [sym__heading2_begin] = ACTIONS(59), - [sym__heading3_begin] = ACTIONS(61), - [sym__heading4_begin] = ACTIONS(63), - [sym__heading5_begin] = ACTIONS(65), - [sym__heading6_begin] = ACTIONS(67), - [sym__div_begin] = ACTIONS(69), - [sym__code_block_begin] = ACTIONS(133), - [sym_list_marker_dash] = ACTIONS(73), - [sym_list_marker_star] = ACTIONS(75), - [sym_list_marker_plus] = ACTIONS(77), - [sym__list_marker_task_begin] = ACTIONS(79), - [sym_list_marker_definition] = ACTIONS(81), - [sym_list_marker_decimal_period] = ACTIONS(83), - [sym_list_marker_lower_alpha_period] = ACTIONS(85), - [sym_list_marker_upper_alpha_period] = ACTIONS(87), - [sym_list_marker_lower_roman_period] = ACTIONS(89), - [sym_list_marker_upper_roman_period] = ACTIONS(91), - [sym_list_marker_decimal_paren] = ACTIONS(93), - [sym_list_marker_lower_alpha_paren] = ACTIONS(95), - [sym_list_marker_upper_alpha_paren] = ACTIONS(97), - [sym_list_marker_lower_roman_paren] = ACTIONS(99), - [sym_list_marker_upper_roman_paren] = ACTIONS(101), - [sym_list_marker_decimal_parens] = ACTIONS(103), - [sym_list_marker_lower_alpha_parens] = ACTIONS(105), - [sym_list_marker_upper_alpha_parens] = ACTIONS(107), - [sym_list_marker_lower_roman_parens] = ACTIONS(109), - [sym_list_marker_upper_roman_parens] = ACTIONS(111), - [sym__block_quote_begin] = ACTIONS(135), - [sym__block_quote_continuation] = ACTIONS(355), - [sym__thematic_break_dash] = ACTIONS(137), - [sym__thematic_break_star] = ACTIONS(137), - [sym__footnote_begin] = ACTIONS(139), - [sym__verbatim_begin] = ACTIONS(121), - }, - [27] = { - [sym__block_with_heading] = STATE(430), - [sym__block_element] = STATE(430), - [sym__heading] = STATE(430), - [sym_heading1] = STATE(430), - [sym_heading2] = STATE(430), - [sym_heading3] = STATE(430), - [sym_heading4] = STATE(430), - [sym_heading5] = STATE(430), - [sym_heading6] = STATE(430), - [sym_list] = STATE(430), - [sym__list_dash] = STATE(380), - [sym__list_item_dash] = STATE(1330), - [sym__list_plus] = STATE(380), - [sym__list_item_plus] = STATE(1331), - [sym__list_star] = STATE(380), - [sym__list_item_star] = STATE(1332), - [sym__list_task] = STATE(380), - [sym__list_item_task] = STATE(1281), - [sym_list_marker_task] = STATE(49), - [sym__list_definition] = STATE(380), - [sym__list_item_definition] = STATE(1509), - [sym__list_decimal_period] = STATE(380), - [sym__list_item_decimal_period] = STATE(1508), - [sym__list_decimal_paren] = STATE(380), - [sym__list_item_decimal_paren] = STATE(1507), - [sym__list_decimal_parens] = STATE(380), - [sym__list_item_decimal_parens] = STATE(1506), - [sym__list_lower_alpha_period] = STATE(380), - [sym__list_item_lower_alpha_period] = STATE(1519), - [sym__list_lower_alpha_paren] = STATE(380), - [sym__list_item_lower_alpha_paren] = STATE(1459), - [sym__list_lower_alpha_parens] = STATE(380), - [sym__list_item_lower_alpha_parens] = STATE(1460), - [sym__list_upper_alpha_period] = STATE(380), - [sym__list_item_upper_alpha_period] = STATE(1461), - [sym__list_upper_alpha_paren] = STATE(380), - [sym__list_item_upper_alpha_paren] = STATE(1462), - [sym__list_upper_alpha_parens] = STATE(380), - [sym__list_item_upper_alpha_parens] = STATE(1463), - [sym__list_lower_roman_period] = STATE(380), - [sym__list_item_lower_roman_period] = STATE(1464), - [sym__list_lower_roman_paren] = STATE(380), - [sym__list_item_lower_roman_paren] = STATE(1465), - [sym__list_lower_roman_parens] = STATE(380), - [sym__list_item_lower_roman_parens] = STATE(1466), - [sym__list_upper_roman_period] = STATE(380), - [sym__list_item_upper_roman_period] = STATE(1469), - [sym__list_upper_roman_paren] = STATE(380), - [sym__list_item_upper_roman_paren] = STATE(1471), - [sym__list_upper_roman_parens] = STATE(380), - [sym__list_item_upper_roman_parens] = STATE(1474), - [sym_table] = STATE(430), - [sym__table_content] = STATE(66), - [sym_table_separator] = STATE(66), - [sym_table_row] = STATE(214), - [sym_footnote] = STATE(430), - [sym_footnote_content] = STATE(2337), - [sym_div] = STATE(430), - [sym_div_marker_begin] = STATE(2229), - [sym_code_block] = STATE(430), - [sym_raw_block] = STATE(430), - [sym_thematic_break] = STATE(430), - [sym_block_quote] = STATE(430), - [sym__block_quote_prefix] = STATE(1398), - [sym_link_reference_definition] = STATE(430), - [sym_block_attribute] = STATE(430), - [sym__paragraph] = STATE(430), - [sym__paragraph_content] = STATE(1821), - [sym__inline] = STATE(2311), - [sym__inline_element_with_whitespace] = STATE(229), - [sym__inline_element_with_newline] = STATE(229), - [sym__inline_core_element] = STATE(229), - [sym__hard_line_break] = STATE(716), - [sym_hard_line_break] = STATE(517), - [sym__smart_punctuation] = STATE(716), - [sym_autolink] = STATE(716), - [sym_emphasis] = STATE(716), - [sym_emphasis_begin] = STATE(283), - [sym_strong] = STATE(716), - [sym_strong_begin] = STATE(282), - [sym_highlighted] = STATE(716), - [sym_insert] = STATE(716), - [sym_delete] = STATE(716), - [sym_superscript] = STATE(716), - [sym_subscript] = STATE(716), - [sym_footnote_reference] = STATE(716), - [sym__image] = STATE(716), - [sym_full_reference_image] = STATE(716), - [sym_collapsed_reference_image] = STATE(716), - [sym_inline_image] = STATE(716), - [sym__image_description] = STATE(1412), - [sym__link] = STATE(716), - [sym_full_reference_link] = STATE(716), - [sym_collapsed_reference_link] = STATE(716), - [sym_inline_link] = STATE(716), - [sym_link_text] = STATE(1413), - [sym__comment_with_spaces] = STATE(716), - [sym_span] = STATE(716), - [sym_raw_inline] = STATE(716), - [sym_math] = STATE(716), - [sym_verbatim] = STATE(716), - [sym__todo_highlights] = STATE(716), - [sym_todo] = STATE(716), - [sym_note] = STATE(716), - [sym__symbol_fallback] = STATE(716), - [aux_sym__text] = STATE(562), - [aux_sym__list_dash_repeat1] = STATE(1330), - [aux_sym__list_plus_repeat1] = STATE(1331), - [aux_sym__list_star_repeat1] = STATE(1332), - [aux_sym__list_task_repeat1] = STATE(1281), - [aux_sym__list_definition_repeat1] = STATE(1509), - [aux_sym__list_decimal_period_repeat1] = STATE(1508), - [aux_sym__list_decimal_paren_repeat1] = STATE(1507), - [aux_sym__list_decimal_parens_repeat1] = STATE(1506), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(1519), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(1459), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(1460), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(1461), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(1462), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(1463), - [aux_sym__list_lower_roman_period_repeat1] = STATE(1464), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(1465), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(1466), - [aux_sym__list_upper_roman_period_repeat1] = STATE(1469), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(1471), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(1474), - [aux_sym_table_repeat1] = STATE(66), - [aux_sym_footnote_content_repeat1] = STATE(25), - [aux_sym__block_quote_prefix_repeat1] = STATE(1308), - [aux_sym__inline_repeat1] = STATE(229), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_PIPE] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [sym__whitespace1] = ACTIONS(11), - [anon_sym_BSLASH] = ACTIONS(13), - [sym_quotation_marks] = ACTIONS(15), - [sym_ellipsis] = ACTIONS(15), - [sym_em_dash] = ACTIONS(15), - [sym_en_dash] = ACTIONS(17), - [sym_backslash_escape] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(19), - [anon_sym_LBRACE_] = ACTIONS(21), - [anon_sym__] = ACTIONS(23), - [anon_sym_LBRACE_STAR] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_LBRACE_EQ] = ACTIONS(29), - [anon_sym_LBRACE_PLUS] = ACTIONS(31), - [anon_sym_LBRACE_DASH] = ACTIONS(33), - [sym_symbol] = ACTIONS(15), - [anon_sym_LBRACE_CARET] = ACTIONS(35), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_LBRACE_TILDE] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(37), - [anon_sym_LBRACK_CARET] = ACTIONS(39), - [anon_sym_BANG_LBRACK] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [anon_sym_TODO] = ACTIONS(45), - [anon_sym_WIP] = ACTIONS(45), - [anon_sym_NOTE] = ACTIONS(47), - [anon_sym_INFO] = ACTIONS(47), - [anon_sym_XXX] = ACTIONS(47), - [sym_fixme] = ACTIONS(15), - [aux_sym__text_token1] = ACTIONS(49), - [sym__newline] = ACTIONS(365), - [sym__newline_inline] = ACTIONS(53), - [sym__heading1_begin] = ACTIONS(367), - [sym__heading2_begin] = ACTIONS(369), - [sym__heading3_begin] = ACTIONS(371), - [sym__heading4_begin] = ACTIONS(373), - [sym__heading5_begin] = ACTIONS(375), - [sym__heading6_begin] = ACTIONS(377), - [sym__div_begin] = ACTIONS(69), - [sym__code_block_begin] = ACTIONS(379), - [sym_list_marker_dash] = ACTIONS(73), - [sym_list_marker_star] = ACTIONS(75), - [sym_list_marker_plus] = ACTIONS(77), - [sym__list_marker_task_begin] = ACTIONS(79), - [sym_list_marker_definition] = ACTIONS(81), - [sym_list_marker_decimal_period] = ACTIONS(83), - [sym_list_marker_lower_alpha_period] = ACTIONS(85), - [sym_list_marker_upper_alpha_period] = ACTIONS(87), - [sym_list_marker_lower_roman_period] = ACTIONS(89), - [sym_list_marker_upper_roman_period] = ACTIONS(91), - [sym_list_marker_decimal_paren] = ACTIONS(93), - [sym_list_marker_lower_alpha_paren] = ACTIONS(95), - [sym_list_marker_upper_alpha_paren] = ACTIONS(97), - [sym_list_marker_lower_roman_paren] = ACTIONS(99), - [sym_list_marker_upper_roman_paren] = ACTIONS(101), - [sym_list_marker_decimal_parens] = ACTIONS(103), - [sym_list_marker_lower_alpha_parens] = ACTIONS(105), - [sym_list_marker_upper_alpha_parens] = ACTIONS(107), - [sym_list_marker_lower_roman_parens] = ACTIONS(109), - [sym_list_marker_upper_roman_parens] = ACTIONS(111), - [sym__block_quote_begin] = ACTIONS(381), - [sym__block_quote_continuation] = ACTIONS(115), - [sym__thematic_break_dash] = ACTIONS(383), - [sym__thematic_break_star] = ACTIONS(383), - [sym__footnote_begin] = ACTIONS(385), - [sym__verbatim_begin] = ACTIONS(121), - }, - [28] = { - [sym__block_with_heading] = STATE(430), - [sym__block_element] = STATE(430), - [sym__heading] = STATE(430), - [sym_heading1] = STATE(430), - [sym_heading2] = STATE(430), - [sym_heading3] = STATE(430), - [sym_heading4] = STATE(430), - [sym_heading5] = STATE(430), - [sym_heading6] = STATE(430), - [sym_list] = STATE(430), - [sym__list_dash] = STATE(380), - [sym__list_item_dash] = STATE(1330), - [sym__list_plus] = STATE(380), - [sym__list_item_plus] = STATE(1331), - [sym__list_star] = STATE(380), - [sym__list_item_star] = STATE(1332), - [sym__list_task] = STATE(380), - [sym__list_item_task] = STATE(1281), - [sym_list_marker_task] = STATE(49), - [sym__list_definition] = STATE(380), - [sym__list_item_definition] = STATE(1509), - [sym__list_decimal_period] = STATE(380), - [sym__list_item_decimal_period] = STATE(1508), - [sym__list_decimal_paren] = STATE(380), - [sym__list_item_decimal_paren] = STATE(1507), - [sym__list_decimal_parens] = STATE(380), - [sym__list_item_decimal_parens] = STATE(1506), - [sym__list_lower_alpha_period] = STATE(380), - [sym__list_item_lower_alpha_period] = STATE(1519), - [sym__list_lower_alpha_paren] = STATE(380), - [sym__list_item_lower_alpha_paren] = STATE(1459), - [sym__list_lower_alpha_parens] = STATE(380), - [sym__list_item_lower_alpha_parens] = STATE(1460), - [sym__list_upper_alpha_period] = STATE(380), - [sym__list_item_upper_alpha_period] = STATE(1461), - [sym__list_upper_alpha_paren] = STATE(380), - [sym__list_item_upper_alpha_paren] = STATE(1462), - [sym__list_upper_alpha_parens] = STATE(380), - [sym__list_item_upper_alpha_parens] = STATE(1463), - [sym__list_lower_roman_period] = STATE(380), - [sym__list_item_lower_roman_period] = STATE(1464), - [sym__list_lower_roman_paren] = STATE(380), - [sym__list_item_lower_roman_paren] = STATE(1465), - [sym__list_lower_roman_parens] = STATE(380), - [sym__list_item_lower_roman_parens] = STATE(1466), - [sym__list_upper_roman_period] = STATE(380), - [sym__list_item_upper_roman_period] = STATE(1469), - [sym__list_upper_roman_paren] = STATE(380), - [sym__list_item_upper_roman_paren] = STATE(1471), - [sym__list_upper_roman_parens] = STATE(380), - [sym__list_item_upper_roman_parens] = STATE(1474), - [sym_table] = STATE(430), - [sym__table_content] = STATE(66), - [sym_table_separator] = STATE(66), - [sym_table_row] = STATE(214), - [sym_footnote] = STATE(430), - [sym_footnote_content] = STATE(2134), - [sym_div] = STATE(430), - [sym_div_marker_begin] = STATE(2229), - [sym_code_block] = STATE(430), - [sym_raw_block] = STATE(430), - [sym_thematic_break] = STATE(430), - [sym_block_quote] = STATE(430), - [sym__block_quote_prefix] = STATE(1398), - [sym_link_reference_definition] = STATE(430), - [sym_block_attribute] = STATE(430), - [sym__paragraph] = STATE(430), - [sym__paragraph_content] = STATE(1821), - [sym__inline] = STATE(2311), - [sym__inline_element_with_whitespace] = STATE(229), - [sym__inline_element_with_newline] = STATE(229), - [sym__inline_core_element] = STATE(229), - [sym__hard_line_break] = STATE(716), - [sym_hard_line_break] = STATE(517), - [sym__smart_punctuation] = STATE(716), - [sym_autolink] = STATE(716), - [sym_emphasis] = STATE(716), - [sym_emphasis_begin] = STATE(283), - [sym_strong] = STATE(716), - [sym_strong_begin] = STATE(282), - [sym_highlighted] = STATE(716), - [sym_insert] = STATE(716), - [sym_delete] = STATE(716), - [sym_superscript] = STATE(716), - [sym_subscript] = STATE(716), - [sym_footnote_reference] = STATE(716), - [sym__image] = STATE(716), - [sym_full_reference_image] = STATE(716), - [sym_collapsed_reference_image] = STATE(716), - [sym_inline_image] = STATE(716), - [sym__image_description] = STATE(1412), - [sym__link] = STATE(716), - [sym_full_reference_link] = STATE(716), - [sym_collapsed_reference_link] = STATE(716), - [sym_inline_link] = STATE(716), - [sym_link_text] = STATE(1413), - [sym__comment_with_spaces] = STATE(716), - [sym_span] = STATE(716), - [sym_raw_inline] = STATE(716), - [sym_math] = STATE(716), - [sym_verbatim] = STATE(716), - [sym__todo_highlights] = STATE(716), - [sym_todo] = STATE(716), - [sym_note] = STATE(716), - [sym__symbol_fallback] = STATE(716), - [aux_sym__text] = STATE(562), - [aux_sym__list_dash_repeat1] = STATE(1330), - [aux_sym__list_plus_repeat1] = STATE(1331), - [aux_sym__list_star_repeat1] = STATE(1332), - [aux_sym__list_task_repeat1] = STATE(1281), - [aux_sym__list_definition_repeat1] = STATE(1509), - [aux_sym__list_decimal_period_repeat1] = STATE(1508), - [aux_sym__list_decimal_paren_repeat1] = STATE(1507), - [aux_sym__list_decimal_parens_repeat1] = STATE(1506), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(1519), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(1459), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(1460), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(1461), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(1462), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(1463), - [aux_sym__list_lower_roman_period_repeat1] = STATE(1464), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(1465), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(1466), - [aux_sym__list_upper_roman_period_repeat1] = STATE(1469), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(1471), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(1474), - [aux_sym_table_repeat1] = STATE(66), - [aux_sym_footnote_content_repeat1] = STATE(25), - [aux_sym__block_quote_prefix_repeat1] = STATE(1308), - [aux_sym__inline_repeat1] = STATE(229), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_PIPE] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [sym__whitespace1] = ACTIONS(11), - [anon_sym_BSLASH] = ACTIONS(13), - [sym_quotation_marks] = ACTIONS(15), - [sym_ellipsis] = ACTIONS(15), - [sym_em_dash] = ACTIONS(15), - [sym_en_dash] = ACTIONS(17), - [sym_backslash_escape] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(19), - [anon_sym_LBRACE_] = ACTIONS(21), - [anon_sym__] = ACTIONS(23), - [anon_sym_LBRACE_STAR] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_LBRACE_EQ] = ACTIONS(29), - [anon_sym_LBRACE_PLUS] = ACTIONS(31), - [anon_sym_LBRACE_DASH] = ACTIONS(33), - [sym_symbol] = ACTIONS(15), - [anon_sym_LBRACE_CARET] = ACTIONS(35), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_LBRACE_TILDE] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(37), - [anon_sym_LBRACK_CARET] = ACTIONS(39), - [anon_sym_BANG_LBRACK] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [anon_sym_TODO] = ACTIONS(45), - [anon_sym_WIP] = ACTIONS(45), - [anon_sym_NOTE] = ACTIONS(47), - [anon_sym_INFO] = ACTIONS(47), - [anon_sym_XXX] = ACTIONS(47), - [sym_fixme] = ACTIONS(15), - [aux_sym__text_token1] = ACTIONS(49), - [sym__newline] = ACTIONS(365), - [sym__newline_inline] = ACTIONS(53), - [sym__heading1_begin] = ACTIONS(367), - [sym__heading2_begin] = ACTIONS(369), - [sym__heading3_begin] = ACTIONS(371), - [sym__heading4_begin] = ACTIONS(373), - [sym__heading5_begin] = ACTIONS(375), - [sym__heading6_begin] = ACTIONS(377), - [sym__div_begin] = ACTIONS(69), - [sym__code_block_begin] = ACTIONS(379), - [sym_list_marker_dash] = ACTIONS(73), - [sym_list_marker_star] = ACTIONS(75), - [sym_list_marker_plus] = ACTIONS(77), - [sym__list_marker_task_begin] = ACTIONS(79), - [sym_list_marker_definition] = ACTIONS(81), - [sym_list_marker_decimal_period] = ACTIONS(83), - [sym_list_marker_lower_alpha_period] = ACTIONS(85), - [sym_list_marker_upper_alpha_period] = ACTIONS(87), - [sym_list_marker_lower_roman_period] = ACTIONS(89), - [sym_list_marker_upper_roman_period] = ACTIONS(91), - [sym_list_marker_decimal_paren] = ACTIONS(93), - [sym_list_marker_lower_alpha_paren] = ACTIONS(95), - [sym_list_marker_upper_alpha_paren] = ACTIONS(97), - [sym_list_marker_lower_roman_paren] = ACTIONS(99), - [sym_list_marker_upper_roman_paren] = ACTIONS(101), - [sym_list_marker_decimal_parens] = ACTIONS(103), - [sym_list_marker_lower_alpha_parens] = ACTIONS(105), - [sym_list_marker_upper_alpha_parens] = ACTIONS(107), - [sym_list_marker_lower_roman_parens] = ACTIONS(109), - [sym_list_marker_upper_roman_parens] = ACTIONS(111), - [sym__block_quote_begin] = ACTIONS(381), - [sym__block_quote_continuation] = ACTIONS(115), - [sym__thematic_break_dash] = ACTIONS(383), - [sym__thematic_break_star] = ACTIONS(383), - [sym__footnote_begin] = ACTIONS(385), - [sym__verbatim_begin] = ACTIONS(121), - }, - [29] = { - [sym__block_with_heading] = STATE(1338), - [sym__block_element] = STATE(1338), - [sym__heading] = STATE(1338), - [sym_heading1] = STATE(1338), - [sym_heading2] = STATE(1338), - [sym_heading3] = STATE(1338), - [sym_heading4] = STATE(1338), - [sym_heading5] = STATE(1338), - [sym_heading6] = STATE(1338), - [sym_list] = STATE(1338), - [sym__list_dash] = STATE(1719), - [sym__list_item_dash] = STATE(1312), - [sym__list_plus] = STATE(1719), - [sym__list_item_plus] = STATE(1313), - [sym__list_star] = STATE(1719), - [sym__list_item_star] = STATE(1314), - [sym__list_task] = STATE(1719), - [sym__list_item_task] = STATE(1280), - [sym_list_marker_task] = STATE(49), - [sym__list_definition] = STATE(1719), - [sym__list_item_definition] = STATE(1571), - [sym__list_decimal_period] = STATE(1719), - [sym__list_item_decimal_period] = STATE(1572), - [sym__list_decimal_paren] = STATE(1719), - [sym__list_item_decimal_paren] = STATE(1573), - [sym__list_decimal_parens] = STATE(1719), - [sym__list_item_decimal_parens] = STATE(1574), - [sym__list_lower_alpha_period] = STATE(1719), - [sym__list_item_lower_alpha_period] = STATE(1575), - [sym__list_lower_alpha_paren] = STATE(1719), - [sym__list_item_lower_alpha_paren] = STATE(1576), - [sym__list_lower_alpha_parens] = STATE(1719), - [sym__list_item_lower_alpha_parens] = STATE(1577), - [sym__list_upper_alpha_period] = STATE(1719), - [sym__list_item_upper_alpha_period] = STATE(1578), - [sym__list_upper_alpha_paren] = STATE(1719), - [sym__list_item_upper_alpha_paren] = STATE(1579), - [sym__list_upper_alpha_parens] = STATE(1719), - [sym__list_item_upper_alpha_parens] = STATE(1580), - [sym__list_lower_roman_period] = STATE(1719), - [sym__list_item_lower_roman_period] = STATE(1581), - [sym__list_lower_roman_paren] = STATE(1719), - [sym__list_item_lower_roman_paren] = STATE(1492), - [sym__list_lower_roman_parens] = STATE(1719), - [sym__list_item_lower_roman_parens] = STATE(1556), - [sym__list_upper_roman_period] = STATE(1719), - [sym__list_item_upper_roman_period] = STATE(1557), - [sym__list_upper_roman_paren] = STATE(1719), - [sym__list_item_upper_roman_paren] = STATE(1558), - [sym__list_upper_roman_parens] = STATE(1719), - [sym__list_item_upper_roman_parens] = STATE(1559), - [sym_list_item_content] = STATE(1850), - [sym_table] = STATE(1338), - [sym__table_content] = STATE(1206), - [sym_table_separator] = STATE(1206), - [sym_table_row] = STATE(1269), - [sym_footnote] = STATE(1338), - [sym_div] = STATE(1338), - [sym_div_marker_begin] = STATE(2127), - [sym_code_block] = STATE(1338), - [sym_raw_block] = STATE(1338), - [sym_thematic_break] = STATE(1338), - [sym_block_quote] = STATE(1338), - [sym__block_quote_prefix] = STATE(1388), - [sym_link_reference_definition] = STATE(1338), - [sym_block_attribute] = STATE(1338), - [sym__paragraph] = STATE(1338), - [sym__paragraph_content] = STATE(1923), - [sym__inline] = STATE(2311), - [sym__inline_element_with_whitespace] = STATE(229), - [sym__inline_element_with_newline] = STATE(229), - [sym__inline_core_element] = STATE(229), - [sym__hard_line_break] = STATE(716), - [sym_hard_line_break] = STATE(517), - [sym__smart_punctuation] = STATE(716), - [sym_autolink] = STATE(716), - [sym_emphasis] = STATE(716), - [sym_emphasis_begin] = STATE(283), - [sym_strong] = STATE(716), - [sym_strong_begin] = STATE(282), - [sym_highlighted] = STATE(716), - [sym_insert] = STATE(716), - [sym_delete] = STATE(716), - [sym_superscript] = STATE(716), - [sym_subscript] = STATE(716), - [sym_footnote_reference] = STATE(716), - [sym__image] = STATE(716), - [sym_full_reference_image] = STATE(716), - [sym_collapsed_reference_image] = STATE(716), - [sym_inline_image] = STATE(716), - [sym__image_description] = STATE(1412), - [sym__link] = STATE(716), - [sym_full_reference_link] = STATE(716), - [sym_collapsed_reference_link] = STATE(716), - [sym_inline_link] = STATE(716), - [sym_link_text] = STATE(1413), - [sym__comment_with_spaces] = STATE(716), - [sym_span] = STATE(716), - [sym_raw_inline] = STATE(716), - [sym_math] = STATE(716), - [sym_verbatim] = STATE(716), - [sym__todo_highlights] = STATE(716), - [sym_todo] = STATE(716), - [sym_note] = STATE(716), - [sym__symbol_fallback] = STATE(716), - [aux_sym__text] = STATE(562), - [aux_sym__list_dash_repeat1] = STATE(1312), - [aux_sym__list_plus_repeat1] = STATE(1313), - [aux_sym__list_star_repeat1] = STATE(1314), - [aux_sym__list_task_repeat1] = STATE(1280), - [aux_sym__list_definition_repeat1] = STATE(1571), - [aux_sym__list_decimal_period_repeat1] = STATE(1572), - [aux_sym__list_decimal_paren_repeat1] = STATE(1573), - [aux_sym__list_decimal_parens_repeat1] = STATE(1574), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(1575), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(1576), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(1577), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(1578), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(1579), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(1580), - [aux_sym__list_lower_roman_period_repeat1] = STATE(1581), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(1492), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(1556), - [aux_sym__list_upper_roman_period_repeat1] = STATE(1557), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(1558), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(1559), - [aux_sym_table_repeat1] = STATE(1206), - [aux_sym__block_quote_prefix_repeat1] = STATE(1308), - [aux_sym__inline_repeat1] = STATE(229), - [anon_sym_LBRACK] = ACTIONS(623), - [anon_sym_PIPE] = ACTIONS(625), - [anon_sym_LBRACE] = ACTIONS(627), - [sym__whitespace1] = ACTIONS(11), - [anon_sym_BSLASH] = ACTIONS(13), - [sym_quotation_marks] = ACTIONS(15), - [sym_ellipsis] = ACTIONS(15), - [sym_em_dash] = ACTIONS(15), - [sym_en_dash] = ACTIONS(17), - [sym_backslash_escape] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(19), - [anon_sym_LBRACE_] = ACTIONS(21), - [anon_sym__] = ACTIONS(23), - [anon_sym_LBRACE_STAR] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_LBRACE_EQ] = ACTIONS(29), - [anon_sym_LBRACE_PLUS] = ACTIONS(31), - [anon_sym_LBRACE_DASH] = ACTIONS(33), - [sym_symbol] = ACTIONS(15), - [anon_sym_LBRACE_CARET] = ACTIONS(35), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_LBRACE_TILDE] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(37), - [anon_sym_LBRACK_CARET] = ACTIONS(39), - [anon_sym_BANG_LBRACK] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [anon_sym_TODO] = ACTIONS(45), - [anon_sym_WIP] = ACTIONS(45), - [anon_sym_NOTE] = ACTIONS(47), - [anon_sym_INFO] = ACTIONS(47), - [anon_sym_XXX] = ACTIONS(47), - [sym_fixme] = ACTIONS(15), - [aux_sym__text_token1] = ACTIONS(49), - [sym__newline] = ACTIONS(629), - [sym__newline_inline] = ACTIONS(53), - [sym__heading1_begin] = ACTIONS(631), - [sym__heading2_begin] = ACTIONS(633), - [sym__heading3_begin] = ACTIONS(635), - [sym__heading4_begin] = ACTIONS(637), - [sym__heading5_begin] = ACTIONS(639), - [sym__heading6_begin] = ACTIONS(641), - [sym__div_begin] = ACTIONS(69), - [sym__code_block_begin] = ACTIONS(643), - [sym_list_marker_dash] = ACTIONS(73), - [sym_list_marker_star] = ACTIONS(75), - [sym_list_marker_plus] = ACTIONS(77), - [sym__list_marker_task_begin] = ACTIONS(79), - [sym_list_marker_definition] = ACTIONS(81), - [sym_list_marker_decimal_period] = ACTIONS(83), - [sym_list_marker_lower_alpha_period] = ACTIONS(85), - [sym_list_marker_upper_alpha_period] = ACTIONS(87), - [sym_list_marker_lower_roman_period] = ACTIONS(89), - [sym_list_marker_upper_roman_period] = ACTIONS(91), - [sym_list_marker_decimal_paren] = ACTIONS(93), - [sym_list_marker_lower_alpha_paren] = ACTIONS(95), - [sym_list_marker_upper_alpha_paren] = ACTIONS(97), - [sym_list_marker_lower_roman_paren] = ACTIONS(99), - [sym_list_marker_upper_roman_paren] = ACTIONS(101), - [sym_list_marker_decimal_parens] = ACTIONS(103), - [sym_list_marker_lower_alpha_parens] = ACTIONS(105), - [sym_list_marker_upper_alpha_parens] = ACTIONS(107), - [sym_list_marker_lower_roman_parens] = ACTIONS(109), - [sym_list_marker_upper_roman_parens] = ACTIONS(111), - [sym__block_quote_begin] = ACTIONS(645), - [sym__block_quote_continuation] = ACTIONS(115), - [sym__thematic_break_dash] = ACTIONS(647), - [sym__thematic_break_star] = ACTIONS(647), - [sym__footnote_begin] = ACTIONS(649), - [sym__verbatim_begin] = ACTIONS(121), - }, - [30] = { - [sym__block_with_heading] = STATE(1372), - [sym__block_element] = STATE(1372), - [sym__heading] = STATE(1372), - [sym_heading1] = STATE(1372), - [sym_heading2] = STATE(1372), - [sym_heading3] = STATE(1372), - [sym_heading4] = STATE(1372), - [sym_heading5] = STATE(1372), - [sym_heading6] = STATE(1372), - [sym_list] = STATE(1372), - [sym__list_dash] = STATE(1719), - [sym__list_item_dash] = STATE(1312), - [sym__list_plus] = STATE(1719), - [sym__list_item_plus] = STATE(1313), - [sym__list_star] = STATE(1719), - [sym__list_item_star] = STATE(1314), - [sym__list_task] = STATE(1719), - [sym__list_item_task] = STATE(1280), - [sym_list_marker_task] = STATE(49), - [sym__list_definition] = STATE(1719), - [sym__list_item_definition] = STATE(1571), - [sym__list_decimal_period] = STATE(1719), - [sym__list_item_decimal_period] = STATE(1572), - [sym__list_decimal_paren] = STATE(1719), - [sym__list_item_decimal_paren] = STATE(1573), - [sym__list_decimal_parens] = STATE(1719), - [sym__list_item_decimal_parens] = STATE(1574), - [sym__list_lower_alpha_period] = STATE(1719), - [sym__list_item_lower_alpha_period] = STATE(1575), - [sym__list_lower_alpha_paren] = STATE(1719), - [sym__list_item_lower_alpha_paren] = STATE(1576), - [sym__list_lower_alpha_parens] = STATE(1719), - [sym__list_item_lower_alpha_parens] = STATE(1577), - [sym__list_upper_alpha_period] = STATE(1719), - [sym__list_item_upper_alpha_period] = STATE(1578), - [sym__list_upper_alpha_paren] = STATE(1719), - [sym__list_item_upper_alpha_paren] = STATE(1579), - [sym__list_upper_alpha_parens] = STATE(1719), - [sym__list_item_upper_alpha_parens] = STATE(1580), - [sym__list_lower_roman_period] = STATE(1719), - [sym__list_item_lower_roman_period] = STATE(1581), - [sym__list_lower_roman_paren] = STATE(1719), - [sym__list_item_lower_roman_paren] = STATE(1492), - [sym__list_lower_roman_parens] = STATE(1719), - [sym__list_item_lower_roman_parens] = STATE(1556), - [sym__list_upper_roman_period] = STATE(1719), - [sym__list_item_upper_roman_period] = STATE(1557), - [sym__list_upper_roman_paren] = STATE(1719), - [sym__list_item_upper_roman_paren] = STATE(1558), - [sym__list_upper_roman_parens] = STATE(1719), - [sym__list_item_upper_roman_parens] = STATE(1559), - [sym_list_item_content] = STATE(1628), - [sym_table] = STATE(1372), - [sym__table_content] = STATE(1206), - [sym_table_separator] = STATE(1206), - [sym_table_row] = STATE(1269), - [sym_footnote] = STATE(1372), - [sym_div] = STATE(1372), - [sym_div_marker_begin] = STATE(2127), - [sym_code_block] = STATE(1372), - [sym_raw_block] = STATE(1372), - [sym_thematic_break] = STATE(1372), - [sym_block_quote] = STATE(1372), - [sym__block_quote_prefix] = STATE(1388), - [sym_link_reference_definition] = STATE(1372), - [sym_block_attribute] = STATE(1372), - [sym__paragraph] = STATE(1372), - [sym__paragraph_content] = STATE(1923), - [sym__inline] = STATE(2311), - [sym__inline_element_with_whitespace] = STATE(229), - [sym__inline_element_with_newline] = STATE(229), - [sym__inline_core_element] = STATE(229), - [sym__hard_line_break] = STATE(716), - [sym_hard_line_break] = STATE(517), - [sym__smart_punctuation] = STATE(716), - [sym_autolink] = STATE(716), - [sym_emphasis] = STATE(716), - [sym_emphasis_begin] = STATE(283), - [sym_strong] = STATE(716), - [sym_strong_begin] = STATE(282), - [sym_highlighted] = STATE(716), - [sym_insert] = STATE(716), - [sym_delete] = STATE(716), - [sym_superscript] = STATE(716), - [sym_subscript] = STATE(716), - [sym_footnote_reference] = STATE(716), - [sym__image] = STATE(716), - [sym_full_reference_image] = STATE(716), - [sym_collapsed_reference_image] = STATE(716), - [sym_inline_image] = STATE(716), - [sym__image_description] = STATE(1412), - [sym__link] = STATE(716), - [sym_full_reference_link] = STATE(716), - [sym_collapsed_reference_link] = STATE(716), - [sym_inline_link] = STATE(716), - [sym_link_text] = STATE(1413), - [sym__comment_with_spaces] = STATE(716), - [sym_span] = STATE(716), - [sym_raw_inline] = STATE(716), - [sym_math] = STATE(716), - [sym_verbatim] = STATE(716), - [sym__todo_highlights] = STATE(716), - [sym_todo] = STATE(716), - [sym_note] = STATE(716), - [sym__symbol_fallback] = STATE(716), - [aux_sym__text] = STATE(562), - [aux_sym__list_dash_repeat1] = STATE(1312), - [aux_sym__list_plus_repeat1] = STATE(1313), - [aux_sym__list_star_repeat1] = STATE(1314), - [aux_sym__list_task_repeat1] = STATE(1280), - [aux_sym__list_definition_repeat1] = STATE(1571), - [aux_sym__list_decimal_period_repeat1] = STATE(1572), - [aux_sym__list_decimal_paren_repeat1] = STATE(1573), - [aux_sym__list_decimal_parens_repeat1] = STATE(1574), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(1575), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(1576), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(1577), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(1578), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(1579), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(1580), - [aux_sym__list_lower_roman_period_repeat1] = STATE(1581), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(1492), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(1556), - [aux_sym__list_upper_roman_period_repeat1] = STATE(1557), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(1558), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(1559), - [aux_sym_table_repeat1] = STATE(1206), - [aux_sym__block_quote_prefix_repeat1] = STATE(1308), - [aux_sym__inline_repeat1] = STATE(229), - [anon_sym_LBRACK] = ACTIONS(623), - [anon_sym_PIPE] = ACTIONS(625), - [anon_sym_LBRACE] = ACTIONS(627), - [sym__whitespace1] = ACTIONS(11), - [anon_sym_BSLASH] = ACTIONS(13), - [sym_quotation_marks] = ACTIONS(15), - [sym_ellipsis] = ACTIONS(15), - [sym_em_dash] = ACTIONS(15), - [sym_en_dash] = ACTIONS(17), - [sym_backslash_escape] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(19), - [anon_sym_LBRACE_] = ACTIONS(21), - [anon_sym__] = ACTIONS(23), - [anon_sym_LBRACE_STAR] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_LBRACE_EQ] = ACTIONS(29), - [anon_sym_LBRACE_PLUS] = ACTIONS(31), - [anon_sym_LBRACE_DASH] = ACTIONS(33), - [sym_symbol] = ACTIONS(15), - [anon_sym_LBRACE_CARET] = ACTIONS(35), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_LBRACE_TILDE] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(37), - [anon_sym_LBRACK_CARET] = ACTIONS(39), - [anon_sym_BANG_LBRACK] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [anon_sym_TODO] = ACTIONS(45), - [anon_sym_WIP] = ACTIONS(45), - [anon_sym_NOTE] = ACTIONS(47), - [anon_sym_INFO] = ACTIONS(47), - [anon_sym_XXX] = ACTIONS(47), - [sym_fixme] = ACTIONS(15), - [aux_sym__text_token1] = ACTIONS(49), - [sym__newline] = ACTIONS(651), - [sym__newline_inline] = ACTIONS(53), - [sym__heading1_begin] = ACTIONS(631), - [sym__heading2_begin] = ACTIONS(633), - [sym__heading3_begin] = ACTIONS(635), - [sym__heading4_begin] = ACTIONS(637), - [sym__heading5_begin] = ACTIONS(639), - [sym__heading6_begin] = ACTIONS(641), - [sym__div_begin] = ACTIONS(69), - [sym__code_block_begin] = ACTIONS(643), - [sym_list_marker_dash] = ACTIONS(73), - [sym_list_marker_star] = ACTIONS(75), - [sym_list_marker_plus] = ACTIONS(77), - [sym__list_marker_task_begin] = ACTIONS(79), - [sym_list_marker_definition] = ACTIONS(81), - [sym_list_marker_decimal_period] = ACTIONS(83), - [sym_list_marker_lower_alpha_period] = ACTIONS(85), - [sym_list_marker_upper_alpha_period] = ACTIONS(87), - [sym_list_marker_lower_roman_period] = ACTIONS(89), - [sym_list_marker_upper_roman_period] = ACTIONS(91), - [sym_list_marker_decimal_paren] = ACTIONS(93), - [sym_list_marker_lower_alpha_paren] = ACTIONS(95), - [sym_list_marker_upper_alpha_paren] = ACTIONS(97), - [sym_list_marker_lower_roman_paren] = ACTIONS(99), - [sym_list_marker_upper_roman_paren] = ACTIONS(101), - [sym_list_marker_decimal_parens] = ACTIONS(103), - [sym_list_marker_lower_alpha_parens] = ACTIONS(105), - [sym_list_marker_upper_alpha_parens] = ACTIONS(107), - [sym_list_marker_lower_roman_parens] = ACTIONS(109), - [sym_list_marker_upper_roman_parens] = ACTIONS(111), - [sym__block_quote_begin] = ACTIONS(645), - [sym__block_quote_continuation] = ACTIONS(115), - [sym__thematic_break_dash] = ACTIONS(647), - [sym__thematic_break_star] = ACTIONS(647), - [sym__footnote_begin] = ACTIONS(649), - [sym__verbatim_begin] = ACTIONS(121), - }, - [31] = { - [sym__block_with_heading] = STATE(1359), - [sym__block_element] = STATE(1359), - [sym__heading] = STATE(1359), - [sym_heading1] = STATE(1359), - [sym_heading2] = STATE(1359), - [sym_heading3] = STATE(1359), - [sym_heading4] = STATE(1359), - [sym_heading5] = STATE(1359), - [sym_heading6] = STATE(1359), - [sym_list] = STATE(1359), - [sym__list_dash] = STATE(1719), - [sym__list_item_dash] = STATE(1312), - [sym__list_plus] = STATE(1719), - [sym__list_item_plus] = STATE(1313), - [sym__list_star] = STATE(1719), - [sym__list_item_star] = STATE(1314), - [sym__list_task] = STATE(1719), - [sym__list_item_task] = STATE(1280), - [sym_list_marker_task] = STATE(49), - [sym__list_definition] = STATE(1719), - [sym__list_item_definition] = STATE(1571), - [sym__list_decimal_period] = STATE(1719), - [sym__list_item_decimal_period] = STATE(1572), - [sym__list_decimal_paren] = STATE(1719), - [sym__list_item_decimal_paren] = STATE(1573), - [sym__list_decimal_parens] = STATE(1719), - [sym__list_item_decimal_parens] = STATE(1574), - [sym__list_lower_alpha_period] = STATE(1719), - [sym__list_item_lower_alpha_period] = STATE(1575), - [sym__list_lower_alpha_paren] = STATE(1719), - [sym__list_item_lower_alpha_paren] = STATE(1576), - [sym__list_lower_alpha_parens] = STATE(1719), - [sym__list_item_lower_alpha_parens] = STATE(1577), - [sym__list_upper_alpha_period] = STATE(1719), - [sym__list_item_upper_alpha_period] = STATE(1578), - [sym__list_upper_alpha_paren] = STATE(1719), - [sym__list_item_upper_alpha_paren] = STATE(1579), - [sym__list_upper_alpha_parens] = STATE(1719), - [sym__list_item_upper_alpha_parens] = STATE(1580), - [sym__list_lower_roman_period] = STATE(1719), - [sym__list_item_lower_roman_period] = STATE(1581), - [sym__list_lower_roman_paren] = STATE(1719), - [sym__list_item_lower_roman_paren] = STATE(1492), - [sym__list_lower_roman_parens] = STATE(1719), - [sym__list_item_lower_roman_parens] = STATE(1556), - [sym__list_upper_roman_period] = STATE(1719), - [sym__list_item_upper_roman_period] = STATE(1557), - [sym__list_upper_roman_paren] = STATE(1719), - [sym__list_item_upper_roman_paren] = STATE(1558), - [sym__list_upper_roman_parens] = STATE(1719), - [sym__list_item_upper_roman_parens] = STATE(1559), - [sym_list_item_content] = STATE(1853), - [sym_table] = STATE(1359), - [sym__table_content] = STATE(1206), - [sym_table_separator] = STATE(1206), - [sym_table_row] = STATE(1269), - [sym_footnote] = STATE(1359), - [sym_div] = STATE(1359), - [sym_div_marker_begin] = STATE(2127), - [sym_code_block] = STATE(1359), - [sym_raw_block] = STATE(1359), - [sym_thematic_break] = STATE(1359), - [sym_block_quote] = STATE(1359), - [sym__block_quote_prefix] = STATE(1388), - [sym_link_reference_definition] = STATE(1359), - [sym_block_attribute] = STATE(1359), - [sym__paragraph] = STATE(1359), - [sym__paragraph_content] = STATE(1923), - [sym__inline] = STATE(2311), - [sym__inline_element_with_whitespace] = STATE(229), - [sym__inline_element_with_newline] = STATE(229), - [sym__inline_core_element] = STATE(229), - [sym__hard_line_break] = STATE(716), - [sym_hard_line_break] = STATE(517), - [sym__smart_punctuation] = STATE(716), - [sym_autolink] = STATE(716), - [sym_emphasis] = STATE(716), - [sym_emphasis_begin] = STATE(283), - [sym_strong] = STATE(716), - [sym_strong_begin] = STATE(282), - [sym_highlighted] = STATE(716), - [sym_insert] = STATE(716), - [sym_delete] = STATE(716), - [sym_superscript] = STATE(716), - [sym_subscript] = STATE(716), - [sym_footnote_reference] = STATE(716), - [sym__image] = STATE(716), - [sym_full_reference_image] = STATE(716), - [sym_collapsed_reference_image] = STATE(716), - [sym_inline_image] = STATE(716), - [sym__image_description] = STATE(1412), - [sym__link] = STATE(716), - [sym_full_reference_link] = STATE(716), - [sym_collapsed_reference_link] = STATE(716), - [sym_inline_link] = STATE(716), - [sym_link_text] = STATE(1413), - [sym__comment_with_spaces] = STATE(716), - [sym_span] = STATE(716), - [sym_raw_inline] = STATE(716), - [sym_math] = STATE(716), - [sym_verbatim] = STATE(716), - [sym__todo_highlights] = STATE(716), - [sym_todo] = STATE(716), - [sym_note] = STATE(716), - [sym__symbol_fallback] = STATE(716), - [aux_sym__text] = STATE(562), - [aux_sym__list_dash_repeat1] = STATE(1312), - [aux_sym__list_plus_repeat1] = STATE(1313), - [aux_sym__list_star_repeat1] = STATE(1314), - [aux_sym__list_task_repeat1] = STATE(1280), - [aux_sym__list_definition_repeat1] = STATE(1571), - [aux_sym__list_decimal_period_repeat1] = STATE(1572), - [aux_sym__list_decimal_paren_repeat1] = STATE(1573), - [aux_sym__list_decimal_parens_repeat1] = STATE(1574), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(1575), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(1576), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(1577), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(1578), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(1579), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(1580), - [aux_sym__list_lower_roman_period_repeat1] = STATE(1581), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(1492), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(1556), - [aux_sym__list_upper_roman_period_repeat1] = STATE(1557), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(1558), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(1559), - [aux_sym_table_repeat1] = STATE(1206), - [aux_sym__block_quote_prefix_repeat1] = STATE(1308), - [aux_sym__inline_repeat1] = STATE(229), - [anon_sym_LBRACK] = ACTIONS(623), - [anon_sym_PIPE] = ACTIONS(625), - [anon_sym_LBRACE] = ACTIONS(627), - [sym__whitespace1] = ACTIONS(11), - [anon_sym_BSLASH] = ACTIONS(13), - [sym_quotation_marks] = ACTIONS(15), - [sym_ellipsis] = ACTIONS(15), - [sym_em_dash] = ACTIONS(15), - [sym_en_dash] = ACTIONS(17), - [sym_backslash_escape] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(19), - [anon_sym_LBRACE_] = ACTIONS(21), - [anon_sym__] = ACTIONS(23), - [anon_sym_LBRACE_STAR] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_LBRACE_EQ] = ACTIONS(29), - [anon_sym_LBRACE_PLUS] = ACTIONS(31), - [anon_sym_LBRACE_DASH] = ACTIONS(33), - [sym_symbol] = ACTIONS(15), - [anon_sym_LBRACE_CARET] = ACTIONS(35), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_LBRACE_TILDE] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(37), - [anon_sym_LBRACK_CARET] = ACTIONS(39), - [anon_sym_BANG_LBRACK] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [anon_sym_TODO] = ACTIONS(45), - [anon_sym_WIP] = ACTIONS(45), - [anon_sym_NOTE] = ACTIONS(47), - [anon_sym_INFO] = ACTIONS(47), - [anon_sym_XXX] = ACTIONS(47), - [sym_fixme] = ACTIONS(15), - [aux_sym__text_token1] = ACTIONS(49), - [sym__newline] = ACTIONS(653), - [sym__newline_inline] = ACTIONS(53), - [sym__heading1_begin] = ACTIONS(631), - [sym__heading2_begin] = ACTIONS(633), - [sym__heading3_begin] = ACTIONS(635), - [sym__heading4_begin] = ACTIONS(637), - [sym__heading5_begin] = ACTIONS(639), - [sym__heading6_begin] = ACTIONS(641), - [sym__div_begin] = ACTIONS(69), - [sym__code_block_begin] = ACTIONS(643), - [sym_list_marker_dash] = ACTIONS(73), - [sym_list_marker_star] = ACTIONS(75), - [sym_list_marker_plus] = ACTIONS(77), - [sym__list_marker_task_begin] = ACTIONS(79), - [sym_list_marker_definition] = ACTIONS(81), - [sym_list_marker_decimal_period] = ACTIONS(83), - [sym_list_marker_lower_alpha_period] = ACTIONS(85), - [sym_list_marker_upper_alpha_period] = ACTIONS(87), - [sym_list_marker_lower_roman_period] = ACTIONS(89), - [sym_list_marker_upper_roman_period] = ACTIONS(91), - [sym_list_marker_decimal_paren] = ACTIONS(93), - [sym_list_marker_lower_alpha_paren] = ACTIONS(95), - [sym_list_marker_upper_alpha_paren] = ACTIONS(97), - [sym_list_marker_lower_roman_paren] = ACTIONS(99), - [sym_list_marker_upper_roman_paren] = ACTIONS(101), - [sym_list_marker_decimal_parens] = ACTIONS(103), - [sym_list_marker_lower_alpha_parens] = ACTIONS(105), - [sym_list_marker_upper_alpha_parens] = ACTIONS(107), - [sym_list_marker_lower_roman_parens] = ACTIONS(109), - [sym_list_marker_upper_roman_parens] = ACTIONS(111), - [sym__block_quote_begin] = ACTIONS(645), - [sym__block_quote_continuation] = ACTIONS(115), - [sym__thematic_break_dash] = ACTIONS(647), - [sym__thematic_break_star] = ACTIONS(647), - [sym__footnote_begin] = ACTIONS(649), - [sym__verbatim_begin] = ACTIONS(121), - }, - [32] = { - [sym__block_with_heading] = STATE(1361), - [sym__block_element] = STATE(1361), - [sym__heading] = STATE(1361), - [sym_heading1] = STATE(1361), - [sym_heading2] = STATE(1361), - [sym_heading3] = STATE(1361), - [sym_heading4] = STATE(1361), - [sym_heading5] = STATE(1361), - [sym_heading6] = STATE(1361), - [sym_list] = STATE(1361), - [sym__list_dash] = STATE(1719), - [sym__list_item_dash] = STATE(1312), - [sym__list_plus] = STATE(1719), - [sym__list_item_plus] = STATE(1313), - [sym__list_star] = STATE(1719), - [sym__list_item_star] = STATE(1314), - [sym__list_task] = STATE(1719), - [sym__list_item_task] = STATE(1280), - [sym_list_marker_task] = STATE(49), - [sym__list_definition] = STATE(1719), - [sym__list_item_definition] = STATE(1571), - [sym__list_decimal_period] = STATE(1719), - [sym__list_item_decimal_period] = STATE(1572), - [sym__list_decimal_paren] = STATE(1719), - [sym__list_item_decimal_paren] = STATE(1573), - [sym__list_decimal_parens] = STATE(1719), - [sym__list_item_decimal_parens] = STATE(1574), - [sym__list_lower_alpha_period] = STATE(1719), - [sym__list_item_lower_alpha_period] = STATE(1575), - [sym__list_lower_alpha_paren] = STATE(1719), - [sym__list_item_lower_alpha_paren] = STATE(1576), - [sym__list_lower_alpha_parens] = STATE(1719), - [sym__list_item_lower_alpha_parens] = STATE(1577), - [sym__list_upper_alpha_period] = STATE(1719), - [sym__list_item_upper_alpha_period] = STATE(1578), - [sym__list_upper_alpha_paren] = STATE(1719), - [sym__list_item_upper_alpha_paren] = STATE(1579), - [sym__list_upper_alpha_parens] = STATE(1719), - [sym__list_item_upper_alpha_parens] = STATE(1580), - [sym__list_lower_roman_period] = STATE(1719), - [sym__list_item_lower_roman_period] = STATE(1581), - [sym__list_lower_roman_paren] = STATE(1719), - [sym__list_item_lower_roman_paren] = STATE(1492), - [sym__list_lower_roman_parens] = STATE(1719), - [sym__list_item_lower_roman_parens] = STATE(1556), - [sym__list_upper_roman_period] = STATE(1719), - [sym__list_item_upper_roman_period] = STATE(1557), - [sym__list_upper_roman_paren] = STATE(1719), - [sym__list_item_upper_roman_paren] = STATE(1558), - [sym__list_upper_roman_parens] = STATE(1719), - [sym__list_item_upper_roman_parens] = STATE(1559), - [sym_list_item_content] = STATE(1856), - [sym_table] = STATE(1361), - [sym__table_content] = STATE(1206), - [sym_table_separator] = STATE(1206), - [sym_table_row] = STATE(1269), - [sym_footnote] = STATE(1361), - [sym_div] = STATE(1361), - [sym_div_marker_begin] = STATE(2127), - [sym_code_block] = STATE(1361), - [sym_raw_block] = STATE(1361), - [sym_thematic_break] = STATE(1361), - [sym_block_quote] = STATE(1361), - [sym__block_quote_prefix] = STATE(1388), - [sym_link_reference_definition] = STATE(1361), - [sym_block_attribute] = STATE(1361), - [sym__paragraph] = STATE(1361), - [sym__paragraph_content] = STATE(1923), - [sym__inline] = STATE(2311), - [sym__inline_element_with_whitespace] = STATE(229), - [sym__inline_element_with_newline] = STATE(229), - [sym__inline_core_element] = STATE(229), - [sym__hard_line_break] = STATE(716), - [sym_hard_line_break] = STATE(517), - [sym__smart_punctuation] = STATE(716), - [sym_autolink] = STATE(716), - [sym_emphasis] = STATE(716), - [sym_emphasis_begin] = STATE(283), - [sym_strong] = STATE(716), - [sym_strong_begin] = STATE(282), - [sym_highlighted] = STATE(716), - [sym_insert] = STATE(716), - [sym_delete] = STATE(716), - [sym_superscript] = STATE(716), - [sym_subscript] = STATE(716), - [sym_footnote_reference] = STATE(716), - [sym__image] = STATE(716), - [sym_full_reference_image] = STATE(716), - [sym_collapsed_reference_image] = STATE(716), - [sym_inline_image] = STATE(716), - [sym__image_description] = STATE(1412), - [sym__link] = STATE(716), - [sym_full_reference_link] = STATE(716), - [sym_collapsed_reference_link] = STATE(716), - [sym_inline_link] = STATE(716), - [sym_link_text] = STATE(1413), - [sym__comment_with_spaces] = STATE(716), - [sym_span] = STATE(716), - [sym_raw_inline] = STATE(716), - [sym_math] = STATE(716), - [sym_verbatim] = STATE(716), - [sym__todo_highlights] = STATE(716), - [sym_todo] = STATE(716), - [sym_note] = STATE(716), - [sym__symbol_fallback] = STATE(716), - [aux_sym__text] = STATE(562), - [aux_sym__list_dash_repeat1] = STATE(1312), - [aux_sym__list_plus_repeat1] = STATE(1313), - [aux_sym__list_star_repeat1] = STATE(1314), - [aux_sym__list_task_repeat1] = STATE(1280), - [aux_sym__list_definition_repeat1] = STATE(1571), - [aux_sym__list_decimal_period_repeat1] = STATE(1572), - [aux_sym__list_decimal_paren_repeat1] = STATE(1573), - [aux_sym__list_decimal_parens_repeat1] = STATE(1574), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(1575), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(1576), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(1577), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(1578), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(1579), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(1580), - [aux_sym__list_lower_roman_period_repeat1] = STATE(1581), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(1492), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(1556), - [aux_sym__list_upper_roman_period_repeat1] = STATE(1557), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(1558), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(1559), - [aux_sym_table_repeat1] = STATE(1206), - [aux_sym__block_quote_prefix_repeat1] = STATE(1308), - [aux_sym__inline_repeat1] = STATE(229), - [anon_sym_LBRACK] = ACTIONS(623), - [anon_sym_PIPE] = ACTIONS(625), - [anon_sym_LBRACE] = ACTIONS(627), - [sym__whitespace1] = ACTIONS(11), - [anon_sym_BSLASH] = ACTIONS(13), - [sym_quotation_marks] = ACTIONS(15), - [sym_ellipsis] = ACTIONS(15), - [sym_em_dash] = ACTIONS(15), - [sym_en_dash] = ACTIONS(17), - [sym_backslash_escape] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(19), - [anon_sym_LBRACE_] = ACTIONS(21), - [anon_sym__] = ACTIONS(23), - [anon_sym_LBRACE_STAR] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_LBRACE_EQ] = ACTIONS(29), - [anon_sym_LBRACE_PLUS] = ACTIONS(31), - [anon_sym_LBRACE_DASH] = ACTIONS(33), - [sym_symbol] = ACTIONS(15), - [anon_sym_LBRACE_CARET] = ACTIONS(35), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_LBRACE_TILDE] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(37), - [anon_sym_LBRACK_CARET] = ACTIONS(39), - [anon_sym_BANG_LBRACK] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [anon_sym_TODO] = ACTIONS(45), - [anon_sym_WIP] = ACTIONS(45), - [anon_sym_NOTE] = ACTIONS(47), - [anon_sym_INFO] = ACTIONS(47), - [anon_sym_XXX] = ACTIONS(47), - [sym_fixme] = ACTIONS(15), - [aux_sym__text_token1] = ACTIONS(49), - [sym__newline] = ACTIONS(655), - [sym__newline_inline] = ACTIONS(53), - [sym__heading1_begin] = ACTIONS(631), - [sym__heading2_begin] = ACTIONS(633), - [sym__heading3_begin] = ACTIONS(635), - [sym__heading4_begin] = ACTIONS(637), - [sym__heading5_begin] = ACTIONS(639), - [sym__heading6_begin] = ACTIONS(641), - [sym__div_begin] = ACTIONS(69), - [sym__code_block_begin] = ACTIONS(643), - [sym_list_marker_dash] = ACTIONS(73), - [sym_list_marker_star] = ACTIONS(75), - [sym_list_marker_plus] = ACTIONS(77), - [sym__list_marker_task_begin] = ACTIONS(79), - [sym_list_marker_definition] = ACTIONS(81), - [sym_list_marker_decimal_period] = ACTIONS(83), - [sym_list_marker_lower_alpha_period] = ACTIONS(85), - [sym_list_marker_upper_alpha_period] = ACTIONS(87), - [sym_list_marker_lower_roman_period] = ACTIONS(89), - [sym_list_marker_upper_roman_period] = ACTIONS(91), - [sym_list_marker_decimal_paren] = ACTIONS(93), - [sym_list_marker_lower_alpha_paren] = ACTIONS(95), - [sym_list_marker_upper_alpha_paren] = ACTIONS(97), - [sym_list_marker_lower_roman_paren] = ACTIONS(99), - [sym_list_marker_upper_roman_paren] = ACTIONS(101), - [sym_list_marker_decimal_parens] = ACTIONS(103), - [sym_list_marker_lower_alpha_parens] = ACTIONS(105), - [sym_list_marker_upper_alpha_parens] = ACTIONS(107), - [sym_list_marker_lower_roman_parens] = ACTIONS(109), - [sym_list_marker_upper_roman_parens] = ACTIONS(111), - [sym__block_quote_begin] = ACTIONS(645), - [sym__block_quote_continuation] = ACTIONS(115), - [sym__thematic_break_dash] = ACTIONS(647), - [sym__thematic_break_star] = ACTIONS(647), - [sym__footnote_begin] = ACTIONS(649), - [sym__verbatim_begin] = ACTIONS(121), - }, - [33] = { - [sym__block_with_heading] = STATE(1363), - [sym__block_element] = STATE(1363), - [sym__heading] = STATE(1363), - [sym_heading1] = STATE(1363), - [sym_heading2] = STATE(1363), - [sym_heading3] = STATE(1363), - [sym_heading4] = STATE(1363), - [sym_heading5] = STATE(1363), - [sym_heading6] = STATE(1363), - [sym_list] = STATE(1363), - [sym__list_dash] = STATE(1719), - [sym__list_item_dash] = STATE(1312), - [sym__list_plus] = STATE(1719), - [sym__list_item_plus] = STATE(1313), - [sym__list_star] = STATE(1719), - [sym__list_item_star] = STATE(1314), - [sym__list_task] = STATE(1719), - [sym__list_item_task] = STATE(1280), - [sym_list_marker_task] = STATE(49), - [sym__list_definition] = STATE(1719), - [sym__list_item_definition] = STATE(1571), - [sym__list_decimal_period] = STATE(1719), - [sym__list_item_decimal_period] = STATE(1572), - [sym__list_decimal_paren] = STATE(1719), - [sym__list_item_decimal_paren] = STATE(1573), - [sym__list_decimal_parens] = STATE(1719), - [sym__list_item_decimal_parens] = STATE(1574), - [sym__list_lower_alpha_period] = STATE(1719), - [sym__list_item_lower_alpha_period] = STATE(1575), - [sym__list_lower_alpha_paren] = STATE(1719), - [sym__list_item_lower_alpha_paren] = STATE(1576), - [sym__list_lower_alpha_parens] = STATE(1719), - [sym__list_item_lower_alpha_parens] = STATE(1577), - [sym__list_upper_alpha_period] = STATE(1719), - [sym__list_item_upper_alpha_period] = STATE(1578), - [sym__list_upper_alpha_paren] = STATE(1719), - [sym__list_item_upper_alpha_paren] = STATE(1579), - [sym__list_upper_alpha_parens] = STATE(1719), - [sym__list_item_upper_alpha_parens] = STATE(1580), - [sym__list_lower_roman_period] = STATE(1719), - [sym__list_item_lower_roman_period] = STATE(1581), - [sym__list_lower_roman_paren] = STATE(1719), - [sym__list_item_lower_roman_paren] = STATE(1492), - [sym__list_lower_roman_parens] = STATE(1719), - [sym__list_item_lower_roman_parens] = STATE(1556), - [sym__list_upper_roman_period] = STATE(1719), - [sym__list_item_upper_roman_period] = STATE(1557), - [sym__list_upper_roman_paren] = STATE(1719), - [sym__list_item_upper_roman_paren] = STATE(1558), - [sym__list_upper_roman_parens] = STATE(1719), - [sym__list_item_upper_roman_parens] = STATE(1559), - [sym_list_item_content] = STATE(1884), - [sym_table] = STATE(1363), - [sym__table_content] = STATE(1206), - [sym_table_separator] = STATE(1206), - [sym_table_row] = STATE(1269), - [sym_footnote] = STATE(1363), - [sym_div] = STATE(1363), - [sym_div_marker_begin] = STATE(2127), - [sym_code_block] = STATE(1363), - [sym_raw_block] = STATE(1363), - [sym_thematic_break] = STATE(1363), - [sym_block_quote] = STATE(1363), - [sym__block_quote_prefix] = STATE(1388), - [sym_link_reference_definition] = STATE(1363), - [sym_block_attribute] = STATE(1363), - [sym__paragraph] = STATE(1363), - [sym__paragraph_content] = STATE(1923), - [sym__inline] = STATE(2311), - [sym__inline_element_with_whitespace] = STATE(229), - [sym__inline_element_with_newline] = STATE(229), - [sym__inline_core_element] = STATE(229), - [sym__hard_line_break] = STATE(716), - [sym_hard_line_break] = STATE(517), - [sym__smart_punctuation] = STATE(716), - [sym_autolink] = STATE(716), - [sym_emphasis] = STATE(716), - [sym_emphasis_begin] = STATE(283), - [sym_strong] = STATE(716), - [sym_strong_begin] = STATE(282), - [sym_highlighted] = STATE(716), - [sym_insert] = STATE(716), - [sym_delete] = STATE(716), - [sym_superscript] = STATE(716), - [sym_subscript] = STATE(716), - [sym_footnote_reference] = STATE(716), - [sym__image] = STATE(716), - [sym_full_reference_image] = STATE(716), - [sym_collapsed_reference_image] = STATE(716), - [sym_inline_image] = STATE(716), - [sym__image_description] = STATE(1412), - [sym__link] = STATE(716), - [sym_full_reference_link] = STATE(716), - [sym_collapsed_reference_link] = STATE(716), - [sym_inline_link] = STATE(716), - [sym_link_text] = STATE(1413), - [sym__comment_with_spaces] = STATE(716), - [sym_span] = STATE(716), - [sym_raw_inline] = STATE(716), - [sym_math] = STATE(716), - [sym_verbatim] = STATE(716), - [sym__todo_highlights] = STATE(716), - [sym_todo] = STATE(716), - [sym_note] = STATE(716), - [sym__symbol_fallback] = STATE(716), - [aux_sym__text] = STATE(562), - [aux_sym__list_dash_repeat1] = STATE(1312), - [aux_sym__list_plus_repeat1] = STATE(1313), - [aux_sym__list_star_repeat1] = STATE(1314), - [aux_sym__list_task_repeat1] = STATE(1280), - [aux_sym__list_definition_repeat1] = STATE(1571), - [aux_sym__list_decimal_period_repeat1] = STATE(1572), - [aux_sym__list_decimal_paren_repeat1] = STATE(1573), - [aux_sym__list_decimal_parens_repeat1] = STATE(1574), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(1575), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(1576), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(1577), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(1578), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(1579), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(1580), - [aux_sym__list_lower_roman_period_repeat1] = STATE(1581), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(1492), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(1556), - [aux_sym__list_upper_roman_period_repeat1] = STATE(1557), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(1558), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(1559), - [aux_sym_table_repeat1] = STATE(1206), - [aux_sym__block_quote_prefix_repeat1] = STATE(1308), - [aux_sym__inline_repeat1] = STATE(229), - [anon_sym_LBRACK] = ACTIONS(623), - [anon_sym_PIPE] = ACTIONS(625), - [anon_sym_LBRACE] = ACTIONS(627), - [sym__whitespace1] = ACTIONS(11), - [anon_sym_BSLASH] = ACTIONS(13), - [sym_quotation_marks] = ACTIONS(15), - [sym_ellipsis] = ACTIONS(15), - [sym_em_dash] = ACTIONS(15), - [sym_en_dash] = ACTIONS(17), - [sym_backslash_escape] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(19), - [anon_sym_LBRACE_] = ACTIONS(21), - [anon_sym__] = ACTIONS(23), - [anon_sym_LBRACE_STAR] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_LBRACE_EQ] = ACTIONS(29), - [anon_sym_LBRACE_PLUS] = ACTIONS(31), - [anon_sym_LBRACE_DASH] = ACTIONS(33), - [sym_symbol] = ACTIONS(15), - [anon_sym_LBRACE_CARET] = ACTIONS(35), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_LBRACE_TILDE] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(37), - [anon_sym_LBRACK_CARET] = ACTIONS(39), - [anon_sym_BANG_LBRACK] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [anon_sym_TODO] = ACTIONS(45), - [anon_sym_WIP] = ACTIONS(45), - [anon_sym_NOTE] = ACTIONS(47), - [anon_sym_INFO] = ACTIONS(47), - [anon_sym_XXX] = ACTIONS(47), - [sym_fixme] = ACTIONS(15), - [aux_sym__text_token1] = ACTIONS(49), - [sym__newline] = ACTIONS(657), - [sym__newline_inline] = ACTIONS(53), - [sym__heading1_begin] = ACTIONS(631), - [sym__heading2_begin] = ACTIONS(633), - [sym__heading3_begin] = ACTIONS(635), - [sym__heading4_begin] = ACTIONS(637), - [sym__heading5_begin] = ACTIONS(639), - [sym__heading6_begin] = ACTIONS(641), - [sym__div_begin] = ACTIONS(69), - [sym__code_block_begin] = ACTIONS(643), - [sym_list_marker_dash] = ACTIONS(73), - [sym_list_marker_star] = ACTIONS(75), - [sym_list_marker_plus] = ACTIONS(77), - [sym__list_marker_task_begin] = ACTIONS(79), - [sym_list_marker_definition] = ACTIONS(81), - [sym_list_marker_decimal_period] = ACTIONS(83), - [sym_list_marker_lower_alpha_period] = ACTIONS(85), - [sym_list_marker_upper_alpha_period] = ACTIONS(87), - [sym_list_marker_lower_roman_period] = ACTIONS(89), - [sym_list_marker_upper_roman_period] = ACTIONS(91), - [sym_list_marker_decimal_paren] = ACTIONS(93), - [sym_list_marker_lower_alpha_paren] = ACTIONS(95), - [sym_list_marker_upper_alpha_paren] = ACTIONS(97), - [sym_list_marker_lower_roman_paren] = ACTIONS(99), - [sym_list_marker_upper_roman_paren] = ACTIONS(101), - [sym_list_marker_decimal_parens] = ACTIONS(103), - [sym_list_marker_lower_alpha_parens] = ACTIONS(105), - [sym_list_marker_upper_alpha_parens] = ACTIONS(107), - [sym_list_marker_lower_roman_parens] = ACTIONS(109), - [sym_list_marker_upper_roman_parens] = ACTIONS(111), - [sym__block_quote_begin] = ACTIONS(645), - [sym__block_quote_continuation] = ACTIONS(115), - [sym__thematic_break_dash] = ACTIONS(647), - [sym__thematic_break_star] = ACTIONS(647), - [sym__footnote_begin] = ACTIONS(649), - [sym__verbatim_begin] = ACTIONS(121), - }, - [34] = { - [sym__block_with_heading] = STATE(1367), - [sym__block_element] = STATE(1367), - [sym__heading] = STATE(1367), - [sym_heading1] = STATE(1367), - [sym_heading2] = STATE(1367), - [sym_heading3] = STATE(1367), - [sym_heading4] = STATE(1367), - [sym_heading5] = STATE(1367), - [sym_heading6] = STATE(1367), - [sym_list] = STATE(1367), - [sym__list_dash] = STATE(1719), - [sym__list_item_dash] = STATE(1312), - [sym__list_plus] = STATE(1719), - [sym__list_item_plus] = STATE(1313), - [sym__list_star] = STATE(1719), - [sym__list_item_star] = STATE(1314), - [sym__list_task] = STATE(1719), - [sym__list_item_task] = STATE(1280), - [sym_list_marker_task] = STATE(49), - [sym__list_definition] = STATE(1719), - [sym__list_item_definition] = STATE(1571), - [sym__list_decimal_period] = STATE(1719), - [sym__list_item_decimal_period] = STATE(1572), - [sym__list_decimal_paren] = STATE(1719), - [sym__list_item_decimal_paren] = STATE(1573), - [sym__list_decimal_parens] = STATE(1719), - [sym__list_item_decimal_parens] = STATE(1574), - [sym__list_lower_alpha_period] = STATE(1719), - [sym__list_item_lower_alpha_period] = STATE(1575), - [sym__list_lower_alpha_paren] = STATE(1719), - [sym__list_item_lower_alpha_paren] = STATE(1576), - [sym__list_lower_alpha_parens] = STATE(1719), - [sym__list_item_lower_alpha_parens] = STATE(1577), - [sym__list_upper_alpha_period] = STATE(1719), - [sym__list_item_upper_alpha_period] = STATE(1578), - [sym__list_upper_alpha_paren] = STATE(1719), - [sym__list_item_upper_alpha_paren] = STATE(1579), - [sym__list_upper_alpha_parens] = STATE(1719), - [sym__list_item_upper_alpha_parens] = STATE(1580), - [sym__list_lower_roman_period] = STATE(1719), - [sym__list_item_lower_roman_period] = STATE(1581), - [sym__list_lower_roman_paren] = STATE(1719), - [sym__list_item_lower_roman_paren] = STATE(1492), - [sym__list_lower_roman_parens] = STATE(1719), - [sym__list_item_lower_roman_parens] = STATE(1556), - [sym__list_upper_roman_period] = STATE(1719), - [sym__list_item_upper_roman_period] = STATE(1557), - [sym__list_upper_roman_paren] = STATE(1719), - [sym__list_item_upper_roman_paren] = STATE(1558), - [sym__list_upper_roman_parens] = STATE(1719), - [sym__list_item_upper_roman_parens] = STATE(1559), - [sym_list_item_content] = STATE(1870), - [sym_table] = STATE(1367), - [sym__table_content] = STATE(1206), - [sym_table_separator] = STATE(1206), - [sym_table_row] = STATE(1269), - [sym_footnote] = STATE(1367), - [sym_div] = STATE(1367), - [sym_div_marker_begin] = STATE(2127), - [sym_code_block] = STATE(1367), - [sym_raw_block] = STATE(1367), - [sym_thematic_break] = STATE(1367), - [sym_block_quote] = STATE(1367), - [sym__block_quote_prefix] = STATE(1388), - [sym_link_reference_definition] = STATE(1367), - [sym_block_attribute] = STATE(1367), - [sym__paragraph] = STATE(1367), - [sym__paragraph_content] = STATE(1923), - [sym__inline] = STATE(2311), - [sym__inline_element_with_whitespace] = STATE(229), - [sym__inline_element_with_newline] = STATE(229), - [sym__inline_core_element] = STATE(229), - [sym__hard_line_break] = STATE(716), - [sym_hard_line_break] = STATE(517), - [sym__smart_punctuation] = STATE(716), - [sym_autolink] = STATE(716), - [sym_emphasis] = STATE(716), - [sym_emphasis_begin] = STATE(283), - [sym_strong] = STATE(716), - [sym_strong_begin] = STATE(282), - [sym_highlighted] = STATE(716), - [sym_insert] = STATE(716), - [sym_delete] = STATE(716), - [sym_superscript] = STATE(716), - [sym_subscript] = STATE(716), - [sym_footnote_reference] = STATE(716), - [sym__image] = STATE(716), - [sym_full_reference_image] = STATE(716), - [sym_collapsed_reference_image] = STATE(716), - [sym_inline_image] = STATE(716), - [sym__image_description] = STATE(1412), - [sym__link] = STATE(716), - [sym_full_reference_link] = STATE(716), - [sym_collapsed_reference_link] = STATE(716), - [sym_inline_link] = STATE(716), - [sym_link_text] = STATE(1413), - [sym__comment_with_spaces] = STATE(716), - [sym_span] = STATE(716), - [sym_raw_inline] = STATE(716), - [sym_math] = STATE(716), - [sym_verbatim] = STATE(716), - [sym__todo_highlights] = STATE(716), - [sym_todo] = STATE(716), - [sym_note] = STATE(716), - [sym__symbol_fallback] = STATE(716), - [aux_sym__text] = STATE(562), - [aux_sym__list_dash_repeat1] = STATE(1312), - [aux_sym__list_plus_repeat1] = STATE(1313), - [aux_sym__list_star_repeat1] = STATE(1314), - [aux_sym__list_task_repeat1] = STATE(1280), - [aux_sym__list_definition_repeat1] = STATE(1571), - [aux_sym__list_decimal_period_repeat1] = STATE(1572), - [aux_sym__list_decimal_paren_repeat1] = STATE(1573), - [aux_sym__list_decimal_parens_repeat1] = STATE(1574), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(1575), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(1576), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(1577), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(1578), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(1579), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(1580), - [aux_sym__list_lower_roman_period_repeat1] = STATE(1581), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(1492), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(1556), - [aux_sym__list_upper_roman_period_repeat1] = STATE(1557), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(1558), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(1559), - [aux_sym_table_repeat1] = STATE(1206), - [aux_sym__block_quote_prefix_repeat1] = STATE(1308), - [aux_sym__inline_repeat1] = STATE(229), - [anon_sym_LBRACK] = ACTIONS(623), - [anon_sym_PIPE] = ACTIONS(625), - [anon_sym_LBRACE] = ACTIONS(627), - [sym__whitespace1] = ACTIONS(11), - [anon_sym_BSLASH] = ACTIONS(13), - [sym_quotation_marks] = ACTIONS(15), - [sym_ellipsis] = ACTIONS(15), - [sym_em_dash] = ACTIONS(15), - [sym_en_dash] = ACTIONS(17), - [sym_backslash_escape] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(19), - [anon_sym_LBRACE_] = ACTIONS(21), - [anon_sym__] = ACTIONS(23), - [anon_sym_LBRACE_STAR] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_LBRACE_EQ] = ACTIONS(29), - [anon_sym_LBRACE_PLUS] = ACTIONS(31), - [anon_sym_LBRACE_DASH] = ACTIONS(33), - [sym_symbol] = ACTIONS(15), - [anon_sym_LBRACE_CARET] = ACTIONS(35), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_LBRACE_TILDE] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(37), - [anon_sym_LBRACK_CARET] = ACTIONS(39), - [anon_sym_BANG_LBRACK] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [anon_sym_TODO] = ACTIONS(45), - [anon_sym_WIP] = ACTIONS(45), - [anon_sym_NOTE] = ACTIONS(47), - [anon_sym_INFO] = ACTIONS(47), - [anon_sym_XXX] = ACTIONS(47), - [sym_fixme] = ACTIONS(15), - [aux_sym__text_token1] = ACTIONS(49), - [sym__newline] = ACTIONS(659), - [sym__newline_inline] = ACTIONS(53), - [sym__heading1_begin] = ACTIONS(631), - [sym__heading2_begin] = ACTIONS(633), - [sym__heading3_begin] = ACTIONS(635), - [sym__heading4_begin] = ACTIONS(637), - [sym__heading5_begin] = ACTIONS(639), - [sym__heading6_begin] = ACTIONS(641), - [sym__div_begin] = ACTIONS(69), - [sym__code_block_begin] = ACTIONS(643), - [sym_list_marker_dash] = ACTIONS(73), - [sym_list_marker_star] = ACTIONS(75), - [sym_list_marker_plus] = ACTIONS(77), - [sym__list_marker_task_begin] = ACTIONS(79), - [sym_list_marker_definition] = ACTIONS(81), - [sym_list_marker_decimal_period] = ACTIONS(83), - [sym_list_marker_lower_alpha_period] = ACTIONS(85), - [sym_list_marker_upper_alpha_period] = ACTIONS(87), - [sym_list_marker_lower_roman_period] = ACTIONS(89), - [sym_list_marker_upper_roman_period] = ACTIONS(91), - [sym_list_marker_decimal_paren] = ACTIONS(93), - [sym_list_marker_lower_alpha_paren] = ACTIONS(95), - [sym_list_marker_upper_alpha_paren] = ACTIONS(97), - [sym_list_marker_lower_roman_paren] = ACTIONS(99), - [sym_list_marker_upper_roman_paren] = ACTIONS(101), - [sym_list_marker_decimal_parens] = ACTIONS(103), - [sym_list_marker_lower_alpha_parens] = ACTIONS(105), - [sym_list_marker_upper_alpha_parens] = ACTIONS(107), - [sym_list_marker_lower_roman_parens] = ACTIONS(109), - [sym_list_marker_upper_roman_parens] = ACTIONS(111), - [sym__block_quote_begin] = ACTIONS(645), - [sym__block_quote_continuation] = ACTIONS(115), - [sym__thematic_break_dash] = ACTIONS(647), - [sym__thematic_break_star] = ACTIONS(647), - [sym__footnote_begin] = ACTIONS(649), - [sym__verbatim_begin] = ACTIONS(121), - }, - [35] = { - [sym__block_with_heading] = STATE(1369), - [sym__block_element] = STATE(1369), - [sym__heading] = STATE(1369), - [sym_heading1] = STATE(1369), - [sym_heading2] = STATE(1369), - [sym_heading3] = STATE(1369), - [sym_heading4] = STATE(1369), - [sym_heading5] = STATE(1369), - [sym_heading6] = STATE(1369), - [sym_list] = STATE(1369), - [sym__list_dash] = STATE(1719), - [sym__list_item_dash] = STATE(1312), - [sym__list_plus] = STATE(1719), - [sym__list_item_plus] = STATE(1313), - [sym__list_star] = STATE(1719), - [sym__list_item_star] = STATE(1314), - [sym__list_task] = STATE(1719), - [sym__list_item_task] = STATE(1280), - [sym_list_marker_task] = STATE(49), - [sym__list_definition] = STATE(1719), - [sym__list_item_definition] = STATE(1571), - [sym__list_decimal_period] = STATE(1719), - [sym__list_item_decimal_period] = STATE(1572), - [sym__list_decimal_paren] = STATE(1719), - [sym__list_item_decimal_paren] = STATE(1573), - [sym__list_decimal_parens] = STATE(1719), - [sym__list_item_decimal_parens] = STATE(1574), - [sym__list_lower_alpha_period] = STATE(1719), - [sym__list_item_lower_alpha_period] = STATE(1575), - [sym__list_lower_alpha_paren] = STATE(1719), - [sym__list_item_lower_alpha_paren] = STATE(1576), - [sym__list_lower_alpha_parens] = STATE(1719), - [sym__list_item_lower_alpha_parens] = STATE(1577), - [sym__list_upper_alpha_period] = STATE(1719), - [sym__list_item_upper_alpha_period] = STATE(1578), - [sym__list_upper_alpha_paren] = STATE(1719), - [sym__list_item_upper_alpha_paren] = STATE(1579), - [sym__list_upper_alpha_parens] = STATE(1719), - [sym__list_item_upper_alpha_parens] = STATE(1580), - [sym__list_lower_roman_period] = STATE(1719), - [sym__list_item_lower_roman_period] = STATE(1581), - [sym__list_lower_roman_paren] = STATE(1719), - [sym__list_item_lower_roman_paren] = STATE(1492), - [sym__list_lower_roman_parens] = STATE(1719), - [sym__list_item_lower_roman_parens] = STATE(1556), - [sym__list_upper_roman_period] = STATE(1719), - [sym__list_item_upper_roman_period] = STATE(1557), - [sym__list_upper_roman_paren] = STATE(1719), - [sym__list_item_upper_roman_paren] = STATE(1558), - [sym__list_upper_roman_parens] = STATE(1719), - [sym__list_item_upper_roman_parens] = STATE(1559), - [sym_list_item_content] = STATE(1871), - [sym_table] = STATE(1369), - [sym__table_content] = STATE(1206), - [sym_table_separator] = STATE(1206), - [sym_table_row] = STATE(1269), - [sym_footnote] = STATE(1369), - [sym_div] = STATE(1369), - [sym_div_marker_begin] = STATE(2127), - [sym_code_block] = STATE(1369), - [sym_raw_block] = STATE(1369), - [sym_thematic_break] = STATE(1369), - [sym_block_quote] = STATE(1369), - [sym__block_quote_prefix] = STATE(1388), - [sym_link_reference_definition] = STATE(1369), - [sym_block_attribute] = STATE(1369), - [sym__paragraph] = STATE(1369), - [sym__paragraph_content] = STATE(1923), - [sym__inline] = STATE(2311), - [sym__inline_element_with_whitespace] = STATE(229), - [sym__inline_element_with_newline] = STATE(229), - [sym__inline_core_element] = STATE(229), - [sym__hard_line_break] = STATE(716), - [sym_hard_line_break] = STATE(517), - [sym__smart_punctuation] = STATE(716), - [sym_autolink] = STATE(716), - [sym_emphasis] = STATE(716), - [sym_emphasis_begin] = STATE(283), - [sym_strong] = STATE(716), - [sym_strong_begin] = STATE(282), - [sym_highlighted] = STATE(716), - [sym_insert] = STATE(716), - [sym_delete] = STATE(716), - [sym_superscript] = STATE(716), - [sym_subscript] = STATE(716), - [sym_footnote_reference] = STATE(716), - [sym__image] = STATE(716), - [sym_full_reference_image] = STATE(716), - [sym_collapsed_reference_image] = STATE(716), - [sym_inline_image] = STATE(716), - [sym__image_description] = STATE(1412), - [sym__link] = STATE(716), - [sym_full_reference_link] = STATE(716), - [sym_collapsed_reference_link] = STATE(716), - [sym_inline_link] = STATE(716), - [sym_link_text] = STATE(1413), - [sym__comment_with_spaces] = STATE(716), - [sym_span] = STATE(716), - [sym_raw_inline] = STATE(716), - [sym_math] = STATE(716), - [sym_verbatim] = STATE(716), - [sym__todo_highlights] = STATE(716), - [sym_todo] = STATE(716), - [sym_note] = STATE(716), - [sym__symbol_fallback] = STATE(716), - [aux_sym__text] = STATE(562), - [aux_sym__list_dash_repeat1] = STATE(1312), - [aux_sym__list_plus_repeat1] = STATE(1313), - [aux_sym__list_star_repeat1] = STATE(1314), - [aux_sym__list_task_repeat1] = STATE(1280), - [aux_sym__list_definition_repeat1] = STATE(1571), - [aux_sym__list_decimal_period_repeat1] = STATE(1572), - [aux_sym__list_decimal_paren_repeat1] = STATE(1573), - [aux_sym__list_decimal_parens_repeat1] = STATE(1574), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(1575), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(1576), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(1577), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(1578), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(1579), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(1580), - [aux_sym__list_lower_roman_period_repeat1] = STATE(1581), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(1492), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(1556), - [aux_sym__list_upper_roman_period_repeat1] = STATE(1557), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(1558), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(1559), - [aux_sym_table_repeat1] = STATE(1206), - [aux_sym__block_quote_prefix_repeat1] = STATE(1308), - [aux_sym__inline_repeat1] = STATE(229), - [anon_sym_LBRACK] = ACTIONS(623), - [anon_sym_PIPE] = ACTIONS(625), - [anon_sym_LBRACE] = ACTIONS(627), - [sym__whitespace1] = ACTIONS(11), - [anon_sym_BSLASH] = ACTIONS(13), - [sym_quotation_marks] = ACTIONS(15), - [sym_ellipsis] = ACTIONS(15), - [sym_em_dash] = ACTIONS(15), - [sym_en_dash] = ACTIONS(17), - [sym_backslash_escape] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(19), - [anon_sym_LBRACE_] = ACTIONS(21), - [anon_sym__] = ACTIONS(23), - [anon_sym_LBRACE_STAR] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_LBRACE_EQ] = ACTIONS(29), - [anon_sym_LBRACE_PLUS] = ACTIONS(31), - [anon_sym_LBRACE_DASH] = ACTIONS(33), - [sym_symbol] = ACTIONS(15), - [anon_sym_LBRACE_CARET] = ACTIONS(35), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_LBRACE_TILDE] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(37), - [anon_sym_LBRACK_CARET] = ACTIONS(39), - [anon_sym_BANG_LBRACK] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [anon_sym_TODO] = ACTIONS(45), - [anon_sym_WIP] = ACTIONS(45), - [anon_sym_NOTE] = ACTIONS(47), - [anon_sym_INFO] = ACTIONS(47), - [anon_sym_XXX] = ACTIONS(47), - [sym_fixme] = ACTIONS(15), - [aux_sym__text_token1] = ACTIONS(49), - [sym__newline] = ACTIONS(661), - [sym__newline_inline] = ACTIONS(53), - [sym__heading1_begin] = ACTIONS(631), - [sym__heading2_begin] = ACTIONS(633), - [sym__heading3_begin] = ACTIONS(635), - [sym__heading4_begin] = ACTIONS(637), - [sym__heading5_begin] = ACTIONS(639), - [sym__heading6_begin] = ACTIONS(641), - [sym__div_begin] = ACTIONS(69), - [sym__code_block_begin] = ACTIONS(643), - [sym_list_marker_dash] = ACTIONS(73), - [sym_list_marker_star] = ACTIONS(75), - [sym_list_marker_plus] = ACTIONS(77), - [sym__list_marker_task_begin] = ACTIONS(79), - [sym_list_marker_definition] = ACTIONS(81), - [sym_list_marker_decimal_period] = ACTIONS(83), - [sym_list_marker_lower_alpha_period] = ACTIONS(85), - [sym_list_marker_upper_alpha_period] = ACTIONS(87), - [sym_list_marker_lower_roman_period] = ACTIONS(89), - [sym_list_marker_upper_roman_period] = ACTIONS(91), - [sym_list_marker_decimal_paren] = ACTIONS(93), - [sym_list_marker_lower_alpha_paren] = ACTIONS(95), - [sym_list_marker_upper_alpha_paren] = ACTIONS(97), - [sym_list_marker_lower_roman_paren] = ACTIONS(99), - [sym_list_marker_upper_roman_paren] = ACTIONS(101), - [sym_list_marker_decimal_parens] = ACTIONS(103), - [sym_list_marker_lower_alpha_parens] = ACTIONS(105), - [sym_list_marker_upper_alpha_parens] = ACTIONS(107), - [sym_list_marker_lower_roman_parens] = ACTIONS(109), - [sym_list_marker_upper_roman_parens] = ACTIONS(111), - [sym__block_quote_begin] = ACTIONS(645), - [sym__block_quote_continuation] = ACTIONS(115), - [sym__thematic_break_dash] = ACTIONS(647), - [sym__thematic_break_star] = ACTIONS(647), - [sym__footnote_begin] = ACTIONS(649), - [sym__verbatim_begin] = ACTIONS(121), - }, - [36] = { - [sym__block_with_heading] = STATE(1374), - [sym__block_element] = STATE(1374), - [sym__heading] = STATE(1374), - [sym_heading1] = STATE(1374), - [sym_heading2] = STATE(1374), - [sym_heading3] = STATE(1374), - [sym_heading4] = STATE(1374), - [sym_heading5] = STATE(1374), - [sym_heading6] = STATE(1374), - [sym_list] = STATE(1374), - [sym__list_dash] = STATE(1719), - [sym__list_item_dash] = STATE(1312), - [sym__list_plus] = STATE(1719), - [sym__list_item_plus] = STATE(1313), - [sym__list_star] = STATE(1719), - [sym__list_item_star] = STATE(1314), - [sym__list_task] = STATE(1719), - [sym__list_item_task] = STATE(1280), - [sym_list_marker_task] = STATE(49), - [sym__list_definition] = STATE(1719), - [sym__list_item_definition] = STATE(1571), - [sym__list_decimal_period] = STATE(1719), - [sym__list_item_decimal_period] = STATE(1572), - [sym__list_decimal_paren] = STATE(1719), - [sym__list_item_decimal_paren] = STATE(1573), - [sym__list_decimal_parens] = STATE(1719), - [sym__list_item_decimal_parens] = STATE(1574), - [sym__list_lower_alpha_period] = STATE(1719), - [sym__list_item_lower_alpha_period] = STATE(1575), - [sym__list_lower_alpha_paren] = STATE(1719), - [sym__list_item_lower_alpha_paren] = STATE(1576), - [sym__list_lower_alpha_parens] = STATE(1719), - [sym__list_item_lower_alpha_parens] = STATE(1577), - [sym__list_upper_alpha_period] = STATE(1719), - [sym__list_item_upper_alpha_period] = STATE(1578), - [sym__list_upper_alpha_paren] = STATE(1719), - [sym__list_item_upper_alpha_paren] = STATE(1579), - [sym__list_upper_alpha_parens] = STATE(1719), - [sym__list_item_upper_alpha_parens] = STATE(1580), - [sym__list_lower_roman_period] = STATE(1719), - [sym__list_item_lower_roman_period] = STATE(1581), - [sym__list_lower_roman_paren] = STATE(1719), - [sym__list_item_lower_roman_paren] = STATE(1492), - [sym__list_lower_roman_parens] = STATE(1719), - [sym__list_item_lower_roman_parens] = STATE(1556), - [sym__list_upper_roman_period] = STATE(1719), - [sym__list_item_upper_roman_period] = STATE(1557), - [sym__list_upper_roman_paren] = STATE(1719), - [sym__list_item_upper_roman_paren] = STATE(1558), - [sym__list_upper_roman_parens] = STATE(1719), - [sym__list_item_upper_roman_parens] = STATE(1559), - [sym_list_item_content] = STATE(1873), - [sym_table] = STATE(1374), - [sym__table_content] = STATE(1206), - [sym_table_separator] = STATE(1206), - [sym_table_row] = STATE(1269), - [sym_footnote] = STATE(1374), - [sym_div] = STATE(1374), - [sym_div_marker_begin] = STATE(2127), - [sym_code_block] = STATE(1374), - [sym_raw_block] = STATE(1374), - [sym_thematic_break] = STATE(1374), - [sym_block_quote] = STATE(1374), - [sym__block_quote_prefix] = STATE(1388), - [sym_link_reference_definition] = STATE(1374), - [sym_block_attribute] = STATE(1374), - [sym__paragraph] = STATE(1374), - [sym__paragraph_content] = STATE(1923), - [sym__inline] = STATE(2311), - [sym__inline_element_with_whitespace] = STATE(229), - [sym__inline_element_with_newline] = STATE(229), - [sym__inline_core_element] = STATE(229), - [sym__hard_line_break] = STATE(716), - [sym_hard_line_break] = STATE(517), - [sym__smart_punctuation] = STATE(716), - [sym_autolink] = STATE(716), - [sym_emphasis] = STATE(716), - [sym_emphasis_begin] = STATE(283), - [sym_strong] = STATE(716), - [sym_strong_begin] = STATE(282), - [sym_highlighted] = STATE(716), - [sym_insert] = STATE(716), - [sym_delete] = STATE(716), - [sym_superscript] = STATE(716), - [sym_subscript] = STATE(716), - [sym_footnote_reference] = STATE(716), - [sym__image] = STATE(716), - [sym_full_reference_image] = STATE(716), - [sym_collapsed_reference_image] = STATE(716), - [sym_inline_image] = STATE(716), - [sym__image_description] = STATE(1412), - [sym__link] = STATE(716), - [sym_full_reference_link] = STATE(716), - [sym_collapsed_reference_link] = STATE(716), - [sym_inline_link] = STATE(716), - [sym_link_text] = STATE(1413), - [sym__comment_with_spaces] = STATE(716), - [sym_span] = STATE(716), - [sym_raw_inline] = STATE(716), - [sym_math] = STATE(716), - [sym_verbatim] = STATE(716), - [sym__todo_highlights] = STATE(716), - [sym_todo] = STATE(716), - [sym_note] = STATE(716), - [sym__symbol_fallback] = STATE(716), - [aux_sym__text] = STATE(562), - [aux_sym__list_dash_repeat1] = STATE(1312), - [aux_sym__list_plus_repeat1] = STATE(1313), - [aux_sym__list_star_repeat1] = STATE(1314), - [aux_sym__list_task_repeat1] = STATE(1280), - [aux_sym__list_definition_repeat1] = STATE(1571), - [aux_sym__list_decimal_period_repeat1] = STATE(1572), - [aux_sym__list_decimal_paren_repeat1] = STATE(1573), - [aux_sym__list_decimal_parens_repeat1] = STATE(1574), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(1575), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(1576), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(1577), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(1578), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(1579), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(1580), - [aux_sym__list_lower_roman_period_repeat1] = STATE(1581), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(1492), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(1556), - [aux_sym__list_upper_roman_period_repeat1] = STATE(1557), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(1558), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(1559), - [aux_sym_table_repeat1] = STATE(1206), - [aux_sym__block_quote_prefix_repeat1] = STATE(1308), - [aux_sym__inline_repeat1] = STATE(229), - [anon_sym_LBRACK] = ACTIONS(623), - [anon_sym_PIPE] = ACTIONS(625), - [anon_sym_LBRACE] = ACTIONS(627), - [sym__whitespace1] = ACTIONS(11), - [anon_sym_BSLASH] = ACTIONS(13), - [sym_quotation_marks] = ACTIONS(15), - [sym_ellipsis] = ACTIONS(15), - [sym_em_dash] = ACTIONS(15), - [sym_en_dash] = ACTIONS(17), - [sym_backslash_escape] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(19), - [anon_sym_LBRACE_] = ACTIONS(21), - [anon_sym__] = ACTIONS(23), - [anon_sym_LBRACE_STAR] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_LBRACE_EQ] = ACTIONS(29), - [anon_sym_LBRACE_PLUS] = ACTIONS(31), - [anon_sym_LBRACE_DASH] = ACTIONS(33), - [sym_symbol] = ACTIONS(15), - [anon_sym_LBRACE_CARET] = ACTIONS(35), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_LBRACE_TILDE] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(37), - [anon_sym_LBRACK_CARET] = ACTIONS(39), - [anon_sym_BANG_LBRACK] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [anon_sym_TODO] = ACTIONS(45), - [anon_sym_WIP] = ACTIONS(45), - [anon_sym_NOTE] = ACTIONS(47), - [anon_sym_INFO] = ACTIONS(47), - [anon_sym_XXX] = ACTIONS(47), - [sym_fixme] = ACTIONS(15), - [aux_sym__text_token1] = ACTIONS(49), - [sym__newline] = ACTIONS(663), - [sym__newline_inline] = ACTIONS(53), - [sym__heading1_begin] = ACTIONS(631), - [sym__heading2_begin] = ACTIONS(633), - [sym__heading3_begin] = ACTIONS(635), - [sym__heading4_begin] = ACTIONS(637), - [sym__heading5_begin] = ACTIONS(639), - [sym__heading6_begin] = ACTIONS(641), - [sym__div_begin] = ACTIONS(69), - [sym__code_block_begin] = ACTIONS(643), - [sym_list_marker_dash] = ACTIONS(73), - [sym_list_marker_star] = ACTIONS(75), - [sym_list_marker_plus] = ACTIONS(77), - [sym__list_marker_task_begin] = ACTIONS(79), - [sym_list_marker_definition] = ACTIONS(81), - [sym_list_marker_decimal_period] = ACTIONS(83), - [sym_list_marker_lower_alpha_period] = ACTIONS(85), - [sym_list_marker_upper_alpha_period] = ACTIONS(87), - [sym_list_marker_lower_roman_period] = ACTIONS(89), - [sym_list_marker_upper_roman_period] = ACTIONS(91), - [sym_list_marker_decimal_paren] = ACTIONS(93), - [sym_list_marker_lower_alpha_paren] = ACTIONS(95), - [sym_list_marker_upper_alpha_paren] = ACTIONS(97), - [sym_list_marker_lower_roman_paren] = ACTIONS(99), - [sym_list_marker_upper_roman_paren] = ACTIONS(101), - [sym_list_marker_decimal_parens] = ACTIONS(103), - [sym_list_marker_lower_alpha_parens] = ACTIONS(105), - [sym_list_marker_upper_alpha_parens] = ACTIONS(107), - [sym_list_marker_lower_roman_parens] = ACTIONS(109), - [sym_list_marker_upper_roman_parens] = ACTIONS(111), - [sym__block_quote_begin] = ACTIONS(645), - [sym__block_quote_continuation] = ACTIONS(115), - [sym__thematic_break_dash] = ACTIONS(647), - [sym__thematic_break_star] = ACTIONS(647), - [sym__footnote_begin] = ACTIONS(649), - [sym__verbatim_begin] = ACTIONS(121), - }, - [37] = { - [sym__block_with_heading] = STATE(1376), - [sym__block_element] = STATE(1376), - [sym__heading] = STATE(1376), - [sym_heading1] = STATE(1376), - [sym_heading2] = STATE(1376), - [sym_heading3] = STATE(1376), - [sym_heading4] = STATE(1376), - [sym_heading5] = STATE(1376), - [sym_heading6] = STATE(1376), - [sym_list] = STATE(1376), - [sym__list_dash] = STATE(1719), - [sym__list_item_dash] = STATE(1312), - [sym__list_plus] = STATE(1719), - [sym__list_item_plus] = STATE(1313), - [sym__list_star] = STATE(1719), - [sym__list_item_star] = STATE(1314), - [sym__list_task] = STATE(1719), - [sym__list_item_task] = STATE(1280), - [sym_list_marker_task] = STATE(49), - [sym__list_definition] = STATE(1719), - [sym__list_item_definition] = STATE(1571), - [sym__list_decimal_period] = STATE(1719), - [sym__list_item_decimal_period] = STATE(1572), - [sym__list_decimal_paren] = STATE(1719), - [sym__list_item_decimal_paren] = STATE(1573), - [sym__list_decimal_parens] = STATE(1719), - [sym__list_item_decimal_parens] = STATE(1574), - [sym__list_lower_alpha_period] = STATE(1719), - [sym__list_item_lower_alpha_period] = STATE(1575), - [sym__list_lower_alpha_paren] = STATE(1719), - [sym__list_item_lower_alpha_paren] = STATE(1576), - [sym__list_lower_alpha_parens] = STATE(1719), - [sym__list_item_lower_alpha_parens] = STATE(1577), - [sym__list_upper_alpha_period] = STATE(1719), - [sym__list_item_upper_alpha_period] = STATE(1578), - [sym__list_upper_alpha_paren] = STATE(1719), - [sym__list_item_upper_alpha_paren] = STATE(1579), - [sym__list_upper_alpha_parens] = STATE(1719), - [sym__list_item_upper_alpha_parens] = STATE(1580), - [sym__list_lower_roman_period] = STATE(1719), - [sym__list_item_lower_roman_period] = STATE(1581), - [sym__list_lower_roman_paren] = STATE(1719), - [sym__list_item_lower_roman_paren] = STATE(1492), - [sym__list_lower_roman_parens] = STATE(1719), - [sym__list_item_lower_roman_parens] = STATE(1556), - [sym__list_upper_roman_period] = STATE(1719), - [sym__list_item_upper_roman_period] = STATE(1557), - [sym__list_upper_roman_paren] = STATE(1719), - [sym__list_item_upper_roman_paren] = STATE(1558), - [sym__list_upper_roman_parens] = STATE(1719), - [sym__list_item_upper_roman_parens] = STATE(1559), - [sym_list_item_content] = STATE(1882), - [sym_table] = STATE(1376), - [sym__table_content] = STATE(1206), - [sym_table_separator] = STATE(1206), - [sym_table_row] = STATE(1269), - [sym_footnote] = STATE(1376), - [sym_div] = STATE(1376), - [sym_div_marker_begin] = STATE(2127), - [sym_code_block] = STATE(1376), - [sym_raw_block] = STATE(1376), - [sym_thematic_break] = STATE(1376), - [sym_block_quote] = STATE(1376), - [sym__block_quote_prefix] = STATE(1388), - [sym_link_reference_definition] = STATE(1376), - [sym_block_attribute] = STATE(1376), - [sym__paragraph] = STATE(1376), - [sym__paragraph_content] = STATE(1923), - [sym__inline] = STATE(2311), - [sym__inline_element_with_whitespace] = STATE(229), - [sym__inline_element_with_newline] = STATE(229), - [sym__inline_core_element] = STATE(229), - [sym__hard_line_break] = STATE(716), - [sym_hard_line_break] = STATE(517), - [sym__smart_punctuation] = STATE(716), - [sym_autolink] = STATE(716), - [sym_emphasis] = STATE(716), - [sym_emphasis_begin] = STATE(283), - [sym_strong] = STATE(716), - [sym_strong_begin] = STATE(282), - [sym_highlighted] = STATE(716), - [sym_insert] = STATE(716), - [sym_delete] = STATE(716), - [sym_superscript] = STATE(716), - [sym_subscript] = STATE(716), - [sym_footnote_reference] = STATE(716), - [sym__image] = STATE(716), - [sym_full_reference_image] = STATE(716), - [sym_collapsed_reference_image] = STATE(716), - [sym_inline_image] = STATE(716), - [sym__image_description] = STATE(1412), - [sym__link] = STATE(716), - [sym_full_reference_link] = STATE(716), - [sym_collapsed_reference_link] = STATE(716), - [sym_inline_link] = STATE(716), - [sym_link_text] = STATE(1413), - [sym__comment_with_spaces] = STATE(716), - [sym_span] = STATE(716), - [sym_raw_inline] = STATE(716), - [sym_math] = STATE(716), - [sym_verbatim] = STATE(716), - [sym__todo_highlights] = STATE(716), - [sym_todo] = STATE(716), - [sym_note] = STATE(716), - [sym__symbol_fallback] = STATE(716), - [aux_sym__text] = STATE(562), - [aux_sym__list_dash_repeat1] = STATE(1312), - [aux_sym__list_plus_repeat1] = STATE(1313), - [aux_sym__list_star_repeat1] = STATE(1314), - [aux_sym__list_task_repeat1] = STATE(1280), - [aux_sym__list_definition_repeat1] = STATE(1571), - [aux_sym__list_decimal_period_repeat1] = STATE(1572), - [aux_sym__list_decimal_paren_repeat1] = STATE(1573), - [aux_sym__list_decimal_parens_repeat1] = STATE(1574), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(1575), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(1576), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(1577), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(1578), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(1579), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(1580), - [aux_sym__list_lower_roman_period_repeat1] = STATE(1581), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(1492), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(1556), - [aux_sym__list_upper_roman_period_repeat1] = STATE(1557), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(1558), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(1559), - [aux_sym_table_repeat1] = STATE(1206), - [aux_sym__block_quote_prefix_repeat1] = STATE(1308), - [aux_sym__inline_repeat1] = STATE(229), - [anon_sym_LBRACK] = ACTIONS(623), - [anon_sym_PIPE] = ACTIONS(625), - [anon_sym_LBRACE] = ACTIONS(627), - [sym__whitespace1] = ACTIONS(11), - [anon_sym_BSLASH] = ACTIONS(13), - [sym_quotation_marks] = ACTIONS(15), - [sym_ellipsis] = ACTIONS(15), - [sym_em_dash] = ACTIONS(15), - [sym_en_dash] = ACTIONS(17), - [sym_backslash_escape] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(19), - [anon_sym_LBRACE_] = ACTIONS(21), - [anon_sym__] = ACTIONS(23), - [anon_sym_LBRACE_STAR] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_LBRACE_EQ] = ACTIONS(29), - [anon_sym_LBRACE_PLUS] = ACTIONS(31), - [anon_sym_LBRACE_DASH] = ACTIONS(33), - [sym_symbol] = ACTIONS(15), - [anon_sym_LBRACE_CARET] = ACTIONS(35), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_LBRACE_TILDE] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(37), - [anon_sym_LBRACK_CARET] = ACTIONS(39), - [anon_sym_BANG_LBRACK] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [anon_sym_TODO] = ACTIONS(45), - [anon_sym_WIP] = ACTIONS(45), - [anon_sym_NOTE] = ACTIONS(47), - [anon_sym_INFO] = ACTIONS(47), - [anon_sym_XXX] = ACTIONS(47), - [sym_fixme] = ACTIONS(15), - [aux_sym__text_token1] = ACTIONS(49), - [sym__newline] = ACTIONS(665), - [sym__newline_inline] = ACTIONS(53), - [sym__heading1_begin] = ACTIONS(631), - [sym__heading2_begin] = ACTIONS(633), - [sym__heading3_begin] = ACTIONS(635), - [sym__heading4_begin] = ACTIONS(637), - [sym__heading5_begin] = ACTIONS(639), - [sym__heading6_begin] = ACTIONS(641), - [sym__div_begin] = ACTIONS(69), - [sym__code_block_begin] = ACTIONS(643), - [sym_list_marker_dash] = ACTIONS(73), - [sym_list_marker_star] = ACTIONS(75), - [sym_list_marker_plus] = ACTIONS(77), - [sym__list_marker_task_begin] = ACTIONS(79), - [sym_list_marker_definition] = ACTIONS(81), - [sym_list_marker_decimal_period] = ACTIONS(83), - [sym_list_marker_lower_alpha_period] = ACTIONS(85), - [sym_list_marker_upper_alpha_period] = ACTIONS(87), - [sym_list_marker_lower_roman_period] = ACTIONS(89), - [sym_list_marker_upper_roman_period] = ACTIONS(91), - [sym_list_marker_decimal_paren] = ACTIONS(93), - [sym_list_marker_lower_alpha_paren] = ACTIONS(95), - [sym_list_marker_upper_alpha_paren] = ACTIONS(97), - [sym_list_marker_lower_roman_paren] = ACTIONS(99), - [sym_list_marker_upper_roman_paren] = ACTIONS(101), - [sym_list_marker_decimal_parens] = ACTIONS(103), - [sym_list_marker_lower_alpha_parens] = ACTIONS(105), - [sym_list_marker_upper_alpha_parens] = ACTIONS(107), - [sym_list_marker_lower_roman_parens] = ACTIONS(109), - [sym_list_marker_upper_roman_parens] = ACTIONS(111), - [sym__block_quote_begin] = ACTIONS(645), - [sym__block_quote_continuation] = ACTIONS(115), - [sym__thematic_break_dash] = ACTIONS(647), - [sym__thematic_break_star] = ACTIONS(647), - [sym__footnote_begin] = ACTIONS(649), - [sym__verbatim_begin] = ACTIONS(121), - }, - [38] = { - [sym__block_with_heading] = STATE(1345), - [sym__block_element] = STATE(1345), - [sym__heading] = STATE(1345), - [sym_heading1] = STATE(1345), - [sym_heading2] = STATE(1345), - [sym_heading3] = STATE(1345), - [sym_heading4] = STATE(1345), - [sym_heading5] = STATE(1345), - [sym_heading6] = STATE(1345), - [sym_list] = STATE(1345), - [sym__list_dash] = STATE(1719), - [sym__list_item_dash] = STATE(1312), - [sym__list_plus] = STATE(1719), - [sym__list_item_plus] = STATE(1313), - [sym__list_star] = STATE(1719), - [sym__list_item_star] = STATE(1314), - [sym__list_task] = STATE(1719), - [sym__list_item_task] = STATE(1280), - [sym_list_marker_task] = STATE(49), - [sym__list_definition] = STATE(1719), - [sym__list_item_definition] = STATE(1571), - [sym__list_decimal_period] = STATE(1719), - [sym__list_item_decimal_period] = STATE(1572), - [sym__list_decimal_paren] = STATE(1719), - [sym__list_item_decimal_paren] = STATE(1573), - [sym__list_decimal_parens] = STATE(1719), - [sym__list_item_decimal_parens] = STATE(1574), - [sym__list_lower_alpha_period] = STATE(1719), - [sym__list_item_lower_alpha_period] = STATE(1575), - [sym__list_lower_alpha_paren] = STATE(1719), - [sym__list_item_lower_alpha_paren] = STATE(1576), - [sym__list_lower_alpha_parens] = STATE(1719), - [sym__list_item_lower_alpha_parens] = STATE(1577), - [sym__list_upper_alpha_period] = STATE(1719), - [sym__list_item_upper_alpha_period] = STATE(1578), - [sym__list_upper_alpha_paren] = STATE(1719), - [sym__list_item_upper_alpha_paren] = STATE(1579), - [sym__list_upper_alpha_parens] = STATE(1719), - [sym__list_item_upper_alpha_parens] = STATE(1580), - [sym__list_lower_roman_period] = STATE(1719), - [sym__list_item_lower_roman_period] = STATE(1581), - [sym__list_lower_roman_paren] = STATE(1719), - [sym__list_item_lower_roman_paren] = STATE(1492), - [sym__list_lower_roman_parens] = STATE(1719), - [sym__list_item_lower_roman_parens] = STATE(1556), - [sym__list_upper_roman_period] = STATE(1719), - [sym__list_item_upper_roman_period] = STATE(1557), - [sym__list_upper_roman_paren] = STATE(1719), - [sym__list_item_upper_roman_paren] = STATE(1558), - [sym__list_upper_roman_parens] = STATE(1719), - [sym__list_item_upper_roman_parens] = STATE(1559), - [sym_list_item_content] = STATE(1846), - [sym_table] = STATE(1345), - [sym__table_content] = STATE(1206), - [sym_table_separator] = STATE(1206), - [sym_table_row] = STATE(1269), - [sym_footnote] = STATE(1345), - [sym_div] = STATE(1345), - [sym_div_marker_begin] = STATE(2127), - [sym_code_block] = STATE(1345), - [sym_raw_block] = STATE(1345), - [sym_thematic_break] = STATE(1345), - [sym_block_quote] = STATE(1345), - [sym__block_quote_prefix] = STATE(1388), - [sym_link_reference_definition] = STATE(1345), - [sym_block_attribute] = STATE(1345), - [sym__paragraph] = STATE(1345), - [sym__paragraph_content] = STATE(1923), - [sym__inline] = STATE(2311), - [sym__inline_element_with_whitespace] = STATE(229), - [sym__inline_element_with_newline] = STATE(229), - [sym__inline_core_element] = STATE(229), - [sym__hard_line_break] = STATE(716), - [sym_hard_line_break] = STATE(517), - [sym__smart_punctuation] = STATE(716), - [sym_autolink] = STATE(716), - [sym_emphasis] = STATE(716), - [sym_emphasis_begin] = STATE(283), - [sym_strong] = STATE(716), - [sym_strong_begin] = STATE(282), - [sym_highlighted] = STATE(716), - [sym_insert] = STATE(716), - [sym_delete] = STATE(716), - [sym_superscript] = STATE(716), - [sym_subscript] = STATE(716), - [sym_footnote_reference] = STATE(716), - [sym__image] = STATE(716), - [sym_full_reference_image] = STATE(716), - [sym_collapsed_reference_image] = STATE(716), - [sym_inline_image] = STATE(716), - [sym__image_description] = STATE(1412), - [sym__link] = STATE(716), - [sym_full_reference_link] = STATE(716), - [sym_collapsed_reference_link] = STATE(716), - [sym_inline_link] = STATE(716), - [sym_link_text] = STATE(1413), - [sym__comment_with_spaces] = STATE(716), - [sym_span] = STATE(716), - [sym_raw_inline] = STATE(716), - [sym_math] = STATE(716), - [sym_verbatim] = STATE(716), - [sym__todo_highlights] = STATE(716), - [sym_todo] = STATE(716), - [sym_note] = STATE(716), - [sym__symbol_fallback] = STATE(716), - [aux_sym__text] = STATE(562), - [aux_sym__list_dash_repeat1] = STATE(1312), - [aux_sym__list_plus_repeat1] = STATE(1313), - [aux_sym__list_star_repeat1] = STATE(1314), - [aux_sym__list_task_repeat1] = STATE(1280), - [aux_sym__list_definition_repeat1] = STATE(1571), - [aux_sym__list_decimal_period_repeat1] = STATE(1572), - [aux_sym__list_decimal_paren_repeat1] = STATE(1573), - [aux_sym__list_decimal_parens_repeat1] = STATE(1574), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(1575), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(1576), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(1577), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(1578), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(1579), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(1580), - [aux_sym__list_lower_roman_period_repeat1] = STATE(1581), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(1492), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(1556), - [aux_sym__list_upper_roman_period_repeat1] = STATE(1557), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(1558), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(1559), - [aux_sym_table_repeat1] = STATE(1206), - [aux_sym__block_quote_prefix_repeat1] = STATE(1308), - [aux_sym__inline_repeat1] = STATE(229), - [anon_sym_LBRACK] = ACTIONS(623), - [anon_sym_PIPE] = ACTIONS(625), - [anon_sym_LBRACE] = ACTIONS(627), - [sym__whitespace1] = ACTIONS(11), - [anon_sym_BSLASH] = ACTIONS(13), - [sym_quotation_marks] = ACTIONS(15), - [sym_ellipsis] = ACTIONS(15), - [sym_em_dash] = ACTIONS(15), - [sym_en_dash] = ACTIONS(17), - [sym_backslash_escape] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(19), - [anon_sym_LBRACE_] = ACTIONS(21), - [anon_sym__] = ACTIONS(23), - [anon_sym_LBRACE_STAR] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_LBRACE_EQ] = ACTIONS(29), - [anon_sym_LBRACE_PLUS] = ACTIONS(31), - [anon_sym_LBRACE_DASH] = ACTIONS(33), - [sym_symbol] = ACTIONS(15), - [anon_sym_LBRACE_CARET] = ACTIONS(35), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_LBRACE_TILDE] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(37), - [anon_sym_LBRACK_CARET] = ACTIONS(39), - [anon_sym_BANG_LBRACK] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [anon_sym_TODO] = ACTIONS(45), - [anon_sym_WIP] = ACTIONS(45), - [anon_sym_NOTE] = ACTIONS(47), - [anon_sym_INFO] = ACTIONS(47), - [anon_sym_XXX] = ACTIONS(47), - [sym_fixme] = ACTIONS(15), - [aux_sym__text_token1] = ACTIONS(49), - [sym__newline] = ACTIONS(667), - [sym__newline_inline] = ACTIONS(53), - [sym__heading1_begin] = ACTIONS(631), - [sym__heading2_begin] = ACTIONS(633), - [sym__heading3_begin] = ACTIONS(635), - [sym__heading4_begin] = ACTIONS(637), - [sym__heading5_begin] = ACTIONS(639), - [sym__heading6_begin] = ACTIONS(641), - [sym__div_begin] = ACTIONS(69), - [sym__code_block_begin] = ACTIONS(643), - [sym_list_marker_dash] = ACTIONS(73), - [sym_list_marker_star] = ACTIONS(75), - [sym_list_marker_plus] = ACTIONS(77), - [sym__list_marker_task_begin] = ACTIONS(79), - [sym_list_marker_definition] = ACTIONS(81), - [sym_list_marker_decimal_period] = ACTIONS(83), - [sym_list_marker_lower_alpha_period] = ACTIONS(85), - [sym_list_marker_upper_alpha_period] = ACTIONS(87), - [sym_list_marker_lower_roman_period] = ACTIONS(89), - [sym_list_marker_upper_roman_period] = ACTIONS(91), - [sym_list_marker_decimal_paren] = ACTIONS(93), - [sym_list_marker_lower_alpha_paren] = ACTIONS(95), - [sym_list_marker_upper_alpha_paren] = ACTIONS(97), - [sym_list_marker_lower_roman_paren] = ACTIONS(99), - [sym_list_marker_upper_roman_paren] = ACTIONS(101), - [sym_list_marker_decimal_parens] = ACTIONS(103), - [sym_list_marker_lower_alpha_parens] = ACTIONS(105), - [sym_list_marker_upper_alpha_parens] = ACTIONS(107), - [sym_list_marker_lower_roman_parens] = ACTIONS(109), - [sym_list_marker_upper_roman_parens] = ACTIONS(111), - [sym__block_quote_begin] = ACTIONS(645), - [sym__block_quote_continuation] = ACTIONS(115), - [sym__thematic_break_dash] = ACTIONS(647), - [sym__thematic_break_star] = ACTIONS(647), - [sym__footnote_begin] = ACTIONS(649), - [sym__verbatim_begin] = ACTIONS(121), - }, - [39] = { - [sym__block_with_heading] = STATE(1381), - [sym__block_element] = STATE(1381), - [sym__heading] = STATE(1381), - [sym_heading1] = STATE(1381), - [sym_heading2] = STATE(1381), - [sym_heading3] = STATE(1381), - [sym_heading4] = STATE(1381), - [sym_heading5] = STATE(1381), - [sym_heading6] = STATE(1381), - [sym_list] = STATE(1381), - [sym__list_dash] = STATE(1719), - [sym__list_item_dash] = STATE(1312), - [sym__list_plus] = STATE(1719), - [sym__list_item_plus] = STATE(1313), - [sym__list_star] = STATE(1719), - [sym__list_item_star] = STATE(1314), - [sym__list_task] = STATE(1719), - [sym__list_item_task] = STATE(1280), - [sym_list_marker_task] = STATE(49), - [sym__list_definition] = STATE(1719), - [sym__list_item_definition] = STATE(1571), - [sym__list_decimal_period] = STATE(1719), - [sym__list_item_decimal_period] = STATE(1572), - [sym__list_decimal_paren] = STATE(1719), - [sym__list_item_decimal_paren] = STATE(1573), - [sym__list_decimal_parens] = STATE(1719), - [sym__list_item_decimal_parens] = STATE(1574), - [sym__list_lower_alpha_period] = STATE(1719), - [sym__list_item_lower_alpha_period] = STATE(1575), - [sym__list_lower_alpha_paren] = STATE(1719), - [sym__list_item_lower_alpha_paren] = STATE(1576), - [sym__list_lower_alpha_parens] = STATE(1719), - [sym__list_item_lower_alpha_parens] = STATE(1577), - [sym__list_upper_alpha_period] = STATE(1719), - [sym__list_item_upper_alpha_period] = STATE(1578), - [sym__list_upper_alpha_paren] = STATE(1719), - [sym__list_item_upper_alpha_paren] = STATE(1579), - [sym__list_upper_alpha_parens] = STATE(1719), - [sym__list_item_upper_alpha_parens] = STATE(1580), - [sym__list_lower_roman_period] = STATE(1719), - [sym__list_item_lower_roman_period] = STATE(1581), - [sym__list_lower_roman_paren] = STATE(1719), - [sym__list_item_lower_roman_paren] = STATE(1492), - [sym__list_lower_roman_parens] = STATE(1719), - [sym__list_item_lower_roman_parens] = STATE(1556), - [sym__list_upper_roman_period] = STATE(1719), - [sym__list_item_upper_roman_period] = STATE(1557), - [sym__list_upper_roman_paren] = STATE(1719), - [sym__list_item_upper_roman_paren] = STATE(1558), - [sym__list_upper_roman_parens] = STATE(1719), - [sym__list_item_upper_roman_parens] = STATE(1559), - [sym_list_item_content] = STATE(1725), - [sym_table] = STATE(1381), - [sym__table_content] = STATE(1206), - [sym_table_separator] = STATE(1206), - [sym_table_row] = STATE(1269), - [sym_footnote] = STATE(1381), - [sym_div] = STATE(1381), - [sym_div_marker_begin] = STATE(2127), - [sym_code_block] = STATE(1381), - [sym_raw_block] = STATE(1381), - [sym_thematic_break] = STATE(1381), - [sym_block_quote] = STATE(1381), - [sym__block_quote_prefix] = STATE(1388), - [sym_link_reference_definition] = STATE(1381), - [sym_block_attribute] = STATE(1381), - [sym__paragraph] = STATE(1381), - [sym__paragraph_content] = STATE(1923), - [sym__inline] = STATE(2311), - [sym__inline_element_with_whitespace] = STATE(229), - [sym__inline_element_with_newline] = STATE(229), - [sym__inline_core_element] = STATE(229), - [sym__hard_line_break] = STATE(716), - [sym_hard_line_break] = STATE(517), - [sym__smart_punctuation] = STATE(716), - [sym_autolink] = STATE(716), - [sym_emphasis] = STATE(716), - [sym_emphasis_begin] = STATE(283), - [sym_strong] = STATE(716), - [sym_strong_begin] = STATE(282), - [sym_highlighted] = STATE(716), - [sym_insert] = STATE(716), - [sym_delete] = STATE(716), - [sym_superscript] = STATE(716), - [sym_subscript] = STATE(716), - [sym_footnote_reference] = STATE(716), - [sym__image] = STATE(716), - [sym_full_reference_image] = STATE(716), - [sym_collapsed_reference_image] = STATE(716), - [sym_inline_image] = STATE(716), - [sym__image_description] = STATE(1412), - [sym__link] = STATE(716), - [sym_full_reference_link] = STATE(716), - [sym_collapsed_reference_link] = STATE(716), - [sym_inline_link] = STATE(716), - [sym_link_text] = STATE(1413), - [sym__comment_with_spaces] = STATE(716), - [sym_span] = STATE(716), - [sym_raw_inline] = STATE(716), - [sym_math] = STATE(716), - [sym_verbatim] = STATE(716), - [sym__todo_highlights] = STATE(716), - [sym_todo] = STATE(716), - [sym_note] = STATE(716), - [sym__symbol_fallback] = STATE(716), - [aux_sym__text] = STATE(562), - [aux_sym__list_dash_repeat1] = STATE(1312), - [aux_sym__list_plus_repeat1] = STATE(1313), - [aux_sym__list_star_repeat1] = STATE(1314), - [aux_sym__list_task_repeat1] = STATE(1280), - [aux_sym__list_definition_repeat1] = STATE(1571), - [aux_sym__list_decimal_period_repeat1] = STATE(1572), - [aux_sym__list_decimal_paren_repeat1] = STATE(1573), - [aux_sym__list_decimal_parens_repeat1] = STATE(1574), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(1575), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(1576), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(1577), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(1578), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(1579), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(1580), - [aux_sym__list_lower_roman_period_repeat1] = STATE(1581), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(1492), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(1556), - [aux_sym__list_upper_roman_period_repeat1] = STATE(1557), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(1558), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(1559), - [aux_sym_table_repeat1] = STATE(1206), - [aux_sym__block_quote_prefix_repeat1] = STATE(1308), - [aux_sym__inline_repeat1] = STATE(229), - [anon_sym_LBRACK] = ACTIONS(623), - [anon_sym_PIPE] = ACTIONS(625), - [anon_sym_LBRACE] = ACTIONS(627), - [sym__whitespace1] = ACTIONS(11), - [anon_sym_BSLASH] = ACTIONS(13), - [sym_quotation_marks] = ACTIONS(15), - [sym_ellipsis] = ACTIONS(15), - [sym_em_dash] = ACTIONS(15), - [sym_en_dash] = ACTIONS(17), - [sym_backslash_escape] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(19), - [anon_sym_LBRACE_] = ACTIONS(21), - [anon_sym__] = ACTIONS(23), - [anon_sym_LBRACE_STAR] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_LBRACE_EQ] = ACTIONS(29), - [anon_sym_LBRACE_PLUS] = ACTIONS(31), - [anon_sym_LBRACE_DASH] = ACTIONS(33), - [sym_symbol] = ACTIONS(15), - [anon_sym_LBRACE_CARET] = ACTIONS(35), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_LBRACE_TILDE] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(37), - [anon_sym_LBRACK_CARET] = ACTIONS(39), - [anon_sym_BANG_LBRACK] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [anon_sym_TODO] = ACTIONS(45), - [anon_sym_WIP] = ACTIONS(45), - [anon_sym_NOTE] = ACTIONS(47), - [anon_sym_INFO] = ACTIONS(47), - [anon_sym_XXX] = ACTIONS(47), - [sym_fixme] = ACTIONS(15), - [aux_sym__text_token1] = ACTIONS(49), - [sym__newline] = ACTIONS(669), - [sym__newline_inline] = ACTIONS(53), - [sym__heading1_begin] = ACTIONS(631), - [sym__heading2_begin] = ACTIONS(633), - [sym__heading3_begin] = ACTIONS(635), - [sym__heading4_begin] = ACTIONS(637), - [sym__heading5_begin] = ACTIONS(639), - [sym__heading6_begin] = ACTIONS(641), - [sym__div_begin] = ACTIONS(69), - [sym__code_block_begin] = ACTIONS(643), - [sym_list_marker_dash] = ACTIONS(73), - [sym_list_marker_star] = ACTIONS(75), - [sym_list_marker_plus] = ACTIONS(77), - [sym__list_marker_task_begin] = ACTIONS(79), - [sym_list_marker_definition] = ACTIONS(81), - [sym_list_marker_decimal_period] = ACTIONS(83), - [sym_list_marker_lower_alpha_period] = ACTIONS(85), - [sym_list_marker_upper_alpha_period] = ACTIONS(87), - [sym_list_marker_lower_roman_period] = ACTIONS(89), - [sym_list_marker_upper_roman_period] = ACTIONS(91), - [sym_list_marker_decimal_paren] = ACTIONS(93), - [sym_list_marker_lower_alpha_paren] = ACTIONS(95), - [sym_list_marker_upper_alpha_paren] = ACTIONS(97), - [sym_list_marker_lower_roman_paren] = ACTIONS(99), - [sym_list_marker_upper_roman_paren] = ACTIONS(101), - [sym_list_marker_decimal_parens] = ACTIONS(103), - [sym_list_marker_lower_alpha_parens] = ACTIONS(105), - [sym_list_marker_upper_alpha_parens] = ACTIONS(107), - [sym_list_marker_lower_roman_parens] = ACTIONS(109), - [sym_list_marker_upper_roman_parens] = ACTIONS(111), - [sym__block_quote_begin] = ACTIONS(645), - [sym__block_quote_continuation] = ACTIONS(115), - [sym__thematic_break_dash] = ACTIONS(647), - [sym__thematic_break_star] = ACTIONS(647), - [sym__footnote_begin] = ACTIONS(649), - [sym__verbatim_begin] = ACTIONS(121), - }, - [40] = { - [sym__block_with_heading] = STATE(1343), - [sym__block_element] = STATE(1343), - [sym__heading] = STATE(1343), - [sym_heading1] = STATE(1343), - [sym_heading2] = STATE(1343), - [sym_heading3] = STATE(1343), - [sym_heading4] = STATE(1343), - [sym_heading5] = STATE(1343), - [sym_heading6] = STATE(1343), - [sym_list] = STATE(1343), - [sym__list_dash] = STATE(1719), - [sym__list_item_dash] = STATE(1312), - [sym__list_plus] = STATE(1719), - [sym__list_item_plus] = STATE(1313), - [sym__list_star] = STATE(1719), - [sym__list_item_star] = STATE(1314), - [sym__list_task] = STATE(1719), - [sym__list_item_task] = STATE(1280), - [sym_list_marker_task] = STATE(49), - [sym__list_definition] = STATE(1719), - [sym__list_item_definition] = STATE(1571), - [sym__list_decimal_period] = STATE(1719), - [sym__list_item_decimal_period] = STATE(1572), - [sym__list_decimal_paren] = STATE(1719), - [sym__list_item_decimal_paren] = STATE(1573), - [sym__list_decimal_parens] = STATE(1719), - [sym__list_item_decimal_parens] = STATE(1574), - [sym__list_lower_alpha_period] = STATE(1719), - [sym__list_item_lower_alpha_period] = STATE(1575), - [sym__list_lower_alpha_paren] = STATE(1719), - [sym__list_item_lower_alpha_paren] = STATE(1576), - [sym__list_lower_alpha_parens] = STATE(1719), - [sym__list_item_lower_alpha_parens] = STATE(1577), - [sym__list_upper_alpha_period] = STATE(1719), - [sym__list_item_upper_alpha_period] = STATE(1578), - [sym__list_upper_alpha_paren] = STATE(1719), - [sym__list_item_upper_alpha_paren] = STATE(1579), - [sym__list_upper_alpha_parens] = STATE(1719), - [sym__list_item_upper_alpha_parens] = STATE(1580), - [sym__list_lower_roman_period] = STATE(1719), - [sym__list_item_lower_roman_period] = STATE(1581), - [sym__list_lower_roman_paren] = STATE(1719), - [sym__list_item_lower_roman_paren] = STATE(1492), - [sym__list_lower_roman_parens] = STATE(1719), - [sym__list_item_lower_roman_parens] = STATE(1556), - [sym__list_upper_roman_period] = STATE(1719), - [sym__list_item_upper_roman_period] = STATE(1557), - [sym__list_upper_roman_paren] = STATE(1719), - [sym__list_item_upper_roman_paren] = STATE(1558), - [sym__list_upper_roman_parens] = STATE(1719), - [sym__list_item_upper_roman_parens] = STATE(1559), - [sym_list_item_content] = STATE(1847), - [sym_table] = STATE(1343), - [sym__table_content] = STATE(1206), - [sym_table_separator] = STATE(1206), - [sym_table_row] = STATE(1269), - [sym_footnote] = STATE(1343), - [sym_div] = STATE(1343), - [sym_div_marker_begin] = STATE(2127), - [sym_code_block] = STATE(1343), - [sym_raw_block] = STATE(1343), - [sym_thematic_break] = STATE(1343), - [sym_block_quote] = STATE(1343), - [sym__block_quote_prefix] = STATE(1388), - [sym_link_reference_definition] = STATE(1343), - [sym_block_attribute] = STATE(1343), - [sym__paragraph] = STATE(1343), - [sym__paragraph_content] = STATE(1923), - [sym__inline] = STATE(2311), - [sym__inline_element_with_whitespace] = STATE(229), - [sym__inline_element_with_newline] = STATE(229), - [sym__inline_core_element] = STATE(229), - [sym__hard_line_break] = STATE(716), - [sym_hard_line_break] = STATE(517), - [sym__smart_punctuation] = STATE(716), - [sym_autolink] = STATE(716), - [sym_emphasis] = STATE(716), - [sym_emphasis_begin] = STATE(283), - [sym_strong] = STATE(716), - [sym_strong_begin] = STATE(282), - [sym_highlighted] = STATE(716), - [sym_insert] = STATE(716), - [sym_delete] = STATE(716), - [sym_superscript] = STATE(716), - [sym_subscript] = STATE(716), - [sym_footnote_reference] = STATE(716), - [sym__image] = STATE(716), - [sym_full_reference_image] = STATE(716), - [sym_collapsed_reference_image] = STATE(716), - [sym_inline_image] = STATE(716), - [sym__image_description] = STATE(1412), - [sym__link] = STATE(716), - [sym_full_reference_link] = STATE(716), - [sym_collapsed_reference_link] = STATE(716), - [sym_inline_link] = STATE(716), - [sym_link_text] = STATE(1413), - [sym__comment_with_spaces] = STATE(716), - [sym_span] = STATE(716), - [sym_raw_inline] = STATE(716), - [sym_math] = STATE(716), - [sym_verbatim] = STATE(716), - [sym__todo_highlights] = STATE(716), - [sym_todo] = STATE(716), - [sym_note] = STATE(716), - [sym__symbol_fallback] = STATE(716), - [aux_sym__text] = STATE(562), - [aux_sym__list_dash_repeat1] = STATE(1312), - [aux_sym__list_plus_repeat1] = STATE(1313), - [aux_sym__list_star_repeat1] = STATE(1314), - [aux_sym__list_task_repeat1] = STATE(1280), - [aux_sym__list_definition_repeat1] = STATE(1571), - [aux_sym__list_decimal_period_repeat1] = STATE(1572), - [aux_sym__list_decimal_paren_repeat1] = STATE(1573), - [aux_sym__list_decimal_parens_repeat1] = STATE(1574), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(1575), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(1576), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(1577), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(1578), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(1579), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(1580), - [aux_sym__list_lower_roman_period_repeat1] = STATE(1581), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(1492), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(1556), - [aux_sym__list_upper_roman_period_repeat1] = STATE(1557), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(1558), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(1559), - [aux_sym_table_repeat1] = STATE(1206), - [aux_sym__block_quote_prefix_repeat1] = STATE(1308), - [aux_sym__inline_repeat1] = STATE(229), - [anon_sym_LBRACK] = ACTIONS(623), - [anon_sym_PIPE] = ACTIONS(625), - [anon_sym_LBRACE] = ACTIONS(627), - [sym__whitespace1] = ACTIONS(11), - [anon_sym_BSLASH] = ACTIONS(13), - [sym_quotation_marks] = ACTIONS(15), - [sym_ellipsis] = ACTIONS(15), - [sym_em_dash] = ACTIONS(15), - [sym_en_dash] = ACTIONS(17), - [sym_backslash_escape] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(19), - [anon_sym_LBRACE_] = ACTIONS(21), - [anon_sym__] = ACTIONS(23), - [anon_sym_LBRACE_STAR] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_LBRACE_EQ] = ACTIONS(29), - [anon_sym_LBRACE_PLUS] = ACTIONS(31), - [anon_sym_LBRACE_DASH] = ACTIONS(33), - [sym_symbol] = ACTIONS(15), - [anon_sym_LBRACE_CARET] = ACTIONS(35), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_LBRACE_TILDE] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(37), - [anon_sym_LBRACK_CARET] = ACTIONS(39), - [anon_sym_BANG_LBRACK] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [anon_sym_TODO] = ACTIONS(45), - [anon_sym_WIP] = ACTIONS(45), - [anon_sym_NOTE] = ACTIONS(47), - [anon_sym_INFO] = ACTIONS(47), - [anon_sym_XXX] = ACTIONS(47), - [sym_fixme] = ACTIONS(15), - [aux_sym__text_token1] = ACTIONS(49), - [sym__newline] = ACTIONS(671), - [sym__newline_inline] = ACTIONS(53), - [sym__heading1_begin] = ACTIONS(631), - [sym__heading2_begin] = ACTIONS(633), - [sym__heading3_begin] = ACTIONS(635), - [sym__heading4_begin] = ACTIONS(637), - [sym__heading5_begin] = ACTIONS(639), - [sym__heading6_begin] = ACTIONS(641), - [sym__div_begin] = ACTIONS(69), - [sym__code_block_begin] = ACTIONS(643), - [sym_list_marker_dash] = ACTIONS(73), - [sym_list_marker_star] = ACTIONS(75), - [sym_list_marker_plus] = ACTIONS(77), - [sym__list_marker_task_begin] = ACTIONS(79), - [sym_list_marker_definition] = ACTIONS(81), - [sym_list_marker_decimal_period] = ACTIONS(83), - [sym_list_marker_lower_alpha_period] = ACTIONS(85), - [sym_list_marker_upper_alpha_period] = ACTIONS(87), - [sym_list_marker_lower_roman_period] = ACTIONS(89), - [sym_list_marker_upper_roman_period] = ACTIONS(91), - [sym_list_marker_decimal_paren] = ACTIONS(93), - [sym_list_marker_lower_alpha_paren] = ACTIONS(95), - [sym_list_marker_upper_alpha_paren] = ACTIONS(97), - [sym_list_marker_lower_roman_paren] = ACTIONS(99), - [sym_list_marker_upper_roman_paren] = ACTIONS(101), - [sym_list_marker_decimal_parens] = ACTIONS(103), - [sym_list_marker_lower_alpha_parens] = ACTIONS(105), - [sym_list_marker_upper_alpha_parens] = ACTIONS(107), - [sym_list_marker_lower_roman_parens] = ACTIONS(109), - [sym_list_marker_upper_roman_parens] = ACTIONS(111), - [sym__block_quote_begin] = ACTIONS(645), - [sym__block_quote_continuation] = ACTIONS(115), - [sym__thematic_break_dash] = ACTIONS(647), - [sym__thematic_break_star] = ACTIONS(647), - [sym__footnote_begin] = ACTIONS(649), - [sym__verbatim_begin] = ACTIONS(121), - }, - [41] = { - [sym__block_with_heading] = STATE(1365), - [sym__block_element] = STATE(1365), - [sym__heading] = STATE(1365), - [sym_heading1] = STATE(1365), - [sym_heading2] = STATE(1365), - [sym_heading3] = STATE(1365), - [sym_heading4] = STATE(1365), - [sym_heading5] = STATE(1365), - [sym_heading6] = STATE(1365), - [sym_list] = STATE(1365), - [sym__list_dash] = STATE(1719), - [sym__list_item_dash] = STATE(1312), - [sym__list_plus] = STATE(1719), - [sym__list_item_plus] = STATE(1313), - [sym__list_star] = STATE(1719), - [sym__list_item_star] = STATE(1314), - [sym__list_task] = STATE(1719), - [sym__list_item_task] = STATE(1280), - [sym_list_marker_task] = STATE(49), - [sym__list_definition] = STATE(1719), - [sym__list_item_definition] = STATE(1571), - [sym__list_decimal_period] = STATE(1719), - [sym__list_item_decimal_period] = STATE(1572), - [sym__list_decimal_paren] = STATE(1719), - [sym__list_item_decimal_paren] = STATE(1573), - [sym__list_decimal_parens] = STATE(1719), - [sym__list_item_decimal_parens] = STATE(1574), - [sym__list_lower_alpha_period] = STATE(1719), - [sym__list_item_lower_alpha_period] = STATE(1575), - [sym__list_lower_alpha_paren] = STATE(1719), - [sym__list_item_lower_alpha_paren] = STATE(1576), - [sym__list_lower_alpha_parens] = STATE(1719), - [sym__list_item_lower_alpha_parens] = STATE(1577), - [sym__list_upper_alpha_period] = STATE(1719), - [sym__list_item_upper_alpha_period] = STATE(1578), - [sym__list_upper_alpha_paren] = STATE(1719), - [sym__list_item_upper_alpha_paren] = STATE(1579), - [sym__list_upper_alpha_parens] = STATE(1719), - [sym__list_item_upper_alpha_parens] = STATE(1580), - [sym__list_lower_roman_period] = STATE(1719), - [sym__list_item_lower_roman_period] = STATE(1581), - [sym__list_lower_roman_paren] = STATE(1719), - [sym__list_item_lower_roman_paren] = STATE(1492), - [sym__list_lower_roman_parens] = STATE(1719), - [sym__list_item_lower_roman_parens] = STATE(1556), - [sym__list_upper_roman_period] = STATE(1719), - [sym__list_item_upper_roman_period] = STATE(1557), - [sym__list_upper_roman_paren] = STATE(1719), - [sym__list_item_upper_roman_paren] = STATE(1558), - [sym__list_upper_roman_parens] = STATE(1719), - [sym__list_item_upper_roman_parens] = STATE(1559), - [sym_list_item_content] = STATE(1632), - [sym_table] = STATE(1365), - [sym__table_content] = STATE(1206), - [sym_table_separator] = STATE(1206), - [sym_table_row] = STATE(1269), - [sym_footnote] = STATE(1365), - [sym_div] = STATE(1365), - [sym_div_marker_begin] = STATE(2127), - [sym_code_block] = STATE(1365), - [sym_raw_block] = STATE(1365), - [sym_thematic_break] = STATE(1365), - [sym_block_quote] = STATE(1365), - [sym__block_quote_prefix] = STATE(1388), - [sym_link_reference_definition] = STATE(1365), - [sym_block_attribute] = STATE(1365), - [sym__paragraph] = STATE(1365), - [sym__paragraph_content] = STATE(1923), - [sym__inline] = STATE(2311), - [sym__inline_element_with_whitespace] = STATE(229), - [sym__inline_element_with_newline] = STATE(229), - [sym__inline_core_element] = STATE(229), - [sym__hard_line_break] = STATE(716), - [sym_hard_line_break] = STATE(517), - [sym__smart_punctuation] = STATE(716), - [sym_autolink] = STATE(716), - [sym_emphasis] = STATE(716), - [sym_emphasis_begin] = STATE(283), - [sym_strong] = STATE(716), - [sym_strong_begin] = STATE(282), - [sym_highlighted] = STATE(716), - [sym_insert] = STATE(716), - [sym_delete] = STATE(716), - [sym_superscript] = STATE(716), - [sym_subscript] = STATE(716), - [sym_footnote_reference] = STATE(716), - [sym__image] = STATE(716), - [sym_full_reference_image] = STATE(716), - [sym_collapsed_reference_image] = STATE(716), - [sym_inline_image] = STATE(716), - [sym__image_description] = STATE(1412), - [sym__link] = STATE(716), - [sym_full_reference_link] = STATE(716), - [sym_collapsed_reference_link] = STATE(716), - [sym_inline_link] = STATE(716), - [sym_link_text] = STATE(1413), - [sym__comment_with_spaces] = STATE(716), - [sym_span] = STATE(716), - [sym_raw_inline] = STATE(716), - [sym_math] = STATE(716), - [sym_verbatim] = STATE(716), - [sym__todo_highlights] = STATE(716), - [sym_todo] = STATE(716), - [sym_note] = STATE(716), - [sym__symbol_fallback] = STATE(716), - [aux_sym__text] = STATE(562), - [aux_sym__list_dash_repeat1] = STATE(1312), - [aux_sym__list_plus_repeat1] = STATE(1313), - [aux_sym__list_star_repeat1] = STATE(1314), - [aux_sym__list_task_repeat1] = STATE(1280), - [aux_sym__list_definition_repeat1] = STATE(1571), - [aux_sym__list_decimal_period_repeat1] = STATE(1572), - [aux_sym__list_decimal_paren_repeat1] = STATE(1573), - [aux_sym__list_decimal_parens_repeat1] = STATE(1574), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(1575), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(1576), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(1577), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(1578), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(1579), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(1580), - [aux_sym__list_lower_roman_period_repeat1] = STATE(1581), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(1492), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(1556), - [aux_sym__list_upper_roman_period_repeat1] = STATE(1557), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(1558), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(1559), - [aux_sym_table_repeat1] = STATE(1206), - [aux_sym__block_quote_prefix_repeat1] = STATE(1308), - [aux_sym__inline_repeat1] = STATE(229), - [anon_sym_LBRACK] = ACTIONS(623), - [anon_sym_PIPE] = ACTIONS(625), - [anon_sym_LBRACE] = ACTIONS(627), - [sym__whitespace1] = ACTIONS(11), - [anon_sym_BSLASH] = ACTIONS(13), - [sym_quotation_marks] = ACTIONS(15), - [sym_ellipsis] = ACTIONS(15), - [sym_em_dash] = ACTIONS(15), - [sym_en_dash] = ACTIONS(17), - [sym_backslash_escape] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(19), - [anon_sym_LBRACE_] = ACTIONS(21), - [anon_sym__] = ACTIONS(23), - [anon_sym_LBRACE_STAR] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_LBRACE_EQ] = ACTIONS(29), - [anon_sym_LBRACE_PLUS] = ACTIONS(31), - [anon_sym_LBRACE_DASH] = ACTIONS(33), - [sym_symbol] = ACTIONS(15), - [anon_sym_LBRACE_CARET] = ACTIONS(35), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_LBRACE_TILDE] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(37), - [anon_sym_LBRACK_CARET] = ACTIONS(39), - [anon_sym_BANG_LBRACK] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [anon_sym_TODO] = ACTIONS(45), - [anon_sym_WIP] = ACTIONS(45), - [anon_sym_NOTE] = ACTIONS(47), - [anon_sym_INFO] = ACTIONS(47), - [anon_sym_XXX] = ACTIONS(47), - [sym_fixme] = ACTIONS(15), - [aux_sym__text_token1] = ACTIONS(49), - [sym__newline] = ACTIONS(673), - [sym__newline_inline] = ACTIONS(53), - [sym__heading1_begin] = ACTIONS(631), - [sym__heading2_begin] = ACTIONS(633), - [sym__heading3_begin] = ACTIONS(635), - [sym__heading4_begin] = ACTIONS(637), - [sym__heading5_begin] = ACTIONS(639), - [sym__heading6_begin] = ACTIONS(641), - [sym__div_begin] = ACTIONS(69), - [sym__code_block_begin] = ACTIONS(643), - [sym_list_marker_dash] = ACTIONS(73), - [sym_list_marker_star] = ACTIONS(75), - [sym_list_marker_plus] = ACTIONS(77), - [sym__list_marker_task_begin] = ACTIONS(79), - [sym_list_marker_definition] = ACTIONS(81), - [sym_list_marker_decimal_period] = ACTIONS(83), - [sym_list_marker_lower_alpha_period] = ACTIONS(85), - [sym_list_marker_upper_alpha_period] = ACTIONS(87), - [sym_list_marker_lower_roman_period] = ACTIONS(89), - [sym_list_marker_upper_roman_period] = ACTIONS(91), - [sym_list_marker_decimal_paren] = ACTIONS(93), - [sym_list_marker_lower_alpha_paren] = ACTIONS(95), - [sym_list_marker_upper_alpha_paren] = ACTIONS(97), - [sym_list_marker_lower_roman_paren] = ACTIONS(99), - [sym_list_marker_upper_roman_paren] = ACTIONS(101), - [sym_list_marker_decimal_parens] = ACTIONS(103), - [sym_list_marker_lower_alpha_parens] = ACTIONS(105), - [sym_list_marker_upper_alpha_parens] = ACTIONS(107), - [sym_list_marker_lower_roman_parens] = ACTIONS(109), - [sym_list_marker_upper_roman_parens] = ACTIONS(111), - [sym__block_quote_begin] = ACTIONS(645), - [sym__block_quote_continuation] = ACTIONS(115), - [sym__thematic_break_dash] = ACTIONS(647), - [sym__thematic_break_star] = ACTIONS(647), - [sym__footnote_begin] = ACTIONS(649), - [sym__verbatim_begin] = ACTIONS(121), - }, - [42] = { - [sym__block_with_heading] = STATE(1348), - [sym__block_element] = STATE(1348), - [sym__heading] = STATE(1348), - [sym_heading1] = STATE(1348), - [sym_heading2] = STATE(1348), - [sym_heading3] = STATE(1348), - [sym_heading4] = STATE(1348), - [sym_heading5] = STATE(1348), - [sym_heading6] = STATE(1348), - [sym_list] = STATE(1348), - [sym__list_dash] = STATE(1719), - [sym__list_item_dash] = STATE(1312), - [sym__list_plus] = STATE(1719), - [sym__list_item_plus] = STATE(1313), - [sym__list_star] = STATE(1719), - [sym__list_item_star] = STATE(1314), - [sym__list_task] = STATE(1719), - [sym__list_item_task] = STATE(1280), - [sym_list_marker_task] = STATE(49), - [sym__list_definition] = STATE(1719), - [sym__list_item_definition] = STATE(1571), - [sym__list_decimal_period] = STATE(1719), - [sym__list_item_decimal_period] = STATE(1572), - [sym__list_decimal_paren] = STATE(1719), - [sym__list_item_decimal_paren] = STATE(1573), - [sym__list_decimal_parens] = STATE(1719), - [sym__list_item_decimal_parens] = STATE(1574), - [sym__list_lower_alpha_period] = STATE(1719), - [sym__list_item_lower_alpha_period] = STATE(1575), - [sym__list_lower_alpha_paren] = STATE(1719), - [sym__list_item_lower_alpha_paren] = STATE(1576), - [sym__list_lower_alpha_parens] = STATE(1719), - [sym__list_item_lower_alpha_parens] = STATE(1577), - [sym__list_upper_alpha_period] = STATE(1719), - [sym__list_item_upper_alpha_period] = STATE(1578), - [sym__list_upper_alpha_paren] = STATE(1719), - [sym__list_item_upper_alpha_paren] = STATE(1579), - [sym__list_upper_alpha_parens] = STATE(1719), - [sym__list_item_upper_alpha_parens] = STATE(1580), - [sym__list_lower_roman_period] = STATE(1719), - [sym__list_item_lower_roman_period] = STATE(1581), - [sym__list_lower_roman_paren] = STATE(1719), - [sym__list_item_lower_roman_paren] = STATE(1492), - [sym__list_lower_roman_parens] = STATE(1719), - [sym__list_item_lower_roman_parens] = STATE(1556), - [sym__list_upper_roman_period] = STATE(1719), - [sym__list_item_upper_roman_period] = STATE(1557), - [sym__list_upper_roman_paren] = STATE(1719), - [sym__list_item_upper_roman_paren] = STATE(1558), - [sym__list_upper_roman_parens] = STATE(1719), - [sym__list_item_upper_roman_parens] = STATE(1559), - [sym_list_item_content] = STATE(1845), - [sym_table] = STATE(1348), - [sym__table_content] = STATE(1206), - [sym_table_separator] = STATE(1206), - [sym_table_row] = STATE(1269), - [sym_footnote] = STATE(1348), - [sym_div] = STATE(1348), - [sym_div_marker_begin] = STATE(2127), - [sym_code_block] = STATE(1348), - [sym_raw_block] = STATE(1348), - [sym_thematic_break] = STATE(1348), - [sym_block_quote] = STATE(1348), - [sym__block_quote_prefix] = STATE(1388), - [sym_link_reference_definition] = STATE(1348), - [sym_block_attribute] = STATE(1348), - [sym__paragraph] = STATE(1348), - [sym__paragraph_content] = STATE(1923), - [sym__inline] = STATE(2311), - [sym__inline_element_with_whitespace] = STATE(229), - [sym__inline_element_with_newline] = STATE(229), - [sym__inline_core_element] = STATE(229), - [sym__hard_line_break] = STATE(716), - [sym_hard_line_break] = STATE(517), - [sym__smart_punctuation] = STATE(716), - [sym_autolink] = STATE(716), - [sym_emphasis] = STATE(716), - [sym_emphasis_begin] = STATE(283), - [sym_strong] = STATE(716), - [sym_strong_begin] = STATE(282), - [sym_highlighted] = STATE(716), - [sym_insert] = STATE(716), - [sym_delete] = STATE(716), - [sym_superscript] = STATE(716), - [sym_subscript] = STATE(716), - [sym_footnote_reference] = STATE(716), - [sym__image] = STATE(716), - [sym_full_reference_image] = STATE(716), - [sym_collapsed_reference_image] = STATE(716), - [sym_inline_image] = STATE(716), - [sym__image_description] = STATE(1412), - [sym__link] = STATE(716), - [sym_full_reference_link] = STATE(716), - [sym_collapsed_reference_link] = STATE(716), - [sym_inline_link] = STATE(716), - [sym_link_text] = STATE(1413), - [sym__comment_with_spaces] = STATE(716), - [sym_span] = STATE(716), - [sym_raw_inline] = STATE(716), - [sym_math] = STATE(716), - [sym_verbatim] = STATE(716), - [sym__todo_highlights] = STATE(716), - [sym_todo] = STATE(716), - [sym_note] = STATE(716), - [sym__symbol_fallback] = STATE(716), - [aux_sym__text] = STATE(562), - [aux_sym__list_dash_repeat1] = STATE(1312), - [aux_sym__list_plus_repeat1] = STATE(1313), - [aux_sym__list_star_repeat1] = STATE(1314), - [aux_sym__list_task_repeat1] = STATE(1280), - [aux_sym__list_definition_repeat1] = STATE(1571), - [aux_sym__list_decimal_period_repeat1] = STATE(1572), - [aux_sym__list_decimal_paren_repeat1] = STATE(1573), - [aux_sym__list_decimal_parens_repeat1] = STATE(1574), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(1575), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(1576), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(1577), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(1578), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(1579), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(1580), - [aux_sym__list_lower_roman_period_repeat1] = STATE(1581), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(1492), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(1556), - [aux_sym__list_upper_roman_period_repeat1] = STATE(1557), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(1558), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(1559), - [aux_sym_table_repeat1] = STATE(1206), - [aux_sym__block_quote_prefix_repeat1] = STATE(1308), - [aux_sym__inline_repeat1] = STATE(229), - [anon_sym_LBRACK] = ACTIONS(623), - [anon_sym_PIPE] = ACTIONS(625), - [anon_sym_LBRACE] = ACTIONS(627), - [sym__whitespace1] = ACTIONS(11), - [anon_sym_BSLASH] = ACTIONS(13), - [sym_quotation_marks] = ACTIONS(15), - [sym_ellipsis] = ACTIONS(15), - [sym_em_dash] = ACTIONS(15), - [sym_en_dash] = ACTIONS(17), - [sym_backslash_escape] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(19), - [anon_sym_LBRACE_] = ACTIONS(21), - [anon_sym__] = ACTIONS(23), - [anon_sym_LBRACE_STAR] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_LBRACE_EQ] = ACTIONS(29), - [anon_sym_LBRACE_PLUS] = ACTIONS(31), - [anon_sym_LBRACE_DASH] = ACTIONS(33), - [sym_symbol] = ACTIONS(15), - [anon_sym_LBRACE_CARET] = ACTIONS(35), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_LBRACE_TILDE] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(37), - [anon_sym_LBRACK_CARET] = ACTIONS(39), - [anon_sym_BANG_LBRACK] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [anon_sym_TODO] = ACTIONS(45), - [anon_sym_WIP] = ACTIONS(45), - [anon_sym_NOTE] = ACTIONS(47), - [anon_sym_INFO] = ACTIONS(47), - [anon_sym_XXX] = ACTIONS(47), - [sym_fixme] = ACTIONS(15), - [aux_sym__text_token1] = ACTIONS(49), - [sym__newline] = ACTIONS(675), - [sym__newline_inline] = ACTIONS(53), - [sym__heading1_begin] = ACTIONS(631), - [sym__heading2_begin] = ACTIONS(633), - [sym__heading3_begin] = ACTIONS(635), - [sym__heading4_begin] = ACTIONS(637), - [sym__heading5_begin] = ACTIONS(639), - [sym__heading6_begin] = ACTIONS(641), - [sym__div_begin] = ACTIONS(69), - [sym__code_block_begin] = ACTIONS(643), - [sym_list_marker_dash] = ACTIONS(73), - [sym_list_marker_star] = ACTIONS(75), - [sym_list_marker_plus] = ACTIONS(77), - [sym__list_marker_task_begin] = ACTIONS(79), - [sym_list_marker_definition] = ACTIONS(81), - [sym_list_marker_decimal_period] = ACTIONS(83), - [sym_list_marker_lower_alpha_period] = ACTIONS(85), - [sym_list_marker_upper_alpha_period] = ACTIONS(87), - [sym_list_marker_lower_roman_period] = ACTIONS(89), - [sym_list_marker_upper_roman_period] = ACTIONS(91), - [sym_list_marker_decimal_paren] = ACTIONS(93), - [sym_list_marker_lower_alpha_paren] = ACTIONS(95), - [sym_list_marker_upper_alpha_paren] = ACTIONS(97), - [sym_list_marker_lower_roman_paren] = ACTIONS(99), - [sym_list_marker_upper_roman_paren] = ACTIONS(101), - [sym_list_marker_decimal_parens] = ACTIONS(103), - [sym_list_marker_lower_alpha_parens] = ACTIONS(105), - [sym_list_marker_upper_alpha_parens] = ACTIONS(107), - [sym_list_marker_lower_roman_parens] = ACTIONS(109), - [sym_list_marker_upper_roman_parens] = ACTIONS(111), - [sym__block_quote_begin] = ACTIONS(645), - [sym__block_quote_continuation] = ACTIONS(115), - [sym__thematic_break_dash] = ACTIONS(647), - [sym__thematic_break_star] = ACTIONS(647), - [sym__footnote_begin] = ACTIONS(649), - [sym__verbatim_begin] = ACTIONS(121), - }, - [43] = { - [sym__block_with_heading] = STATE(1383), - [sym__block_element] = STATE(1383), - [sym__heading] = STATE(1383), - [sym_heading1] = STATE(1383), - [sym_heading2] = STATE(1383), - [sym_heading3] = STATE(1383), - [sym_heading4] = STATE(1383), - [sym_heading5] = STATE(1383), - [sym_heading6] = STATE(1383), - [sym_list] = STATE(1383), - [sym__list_dash] = STATE(1719), - [sym__list_item_dash] = STATE(1312), - [sym__list_plus] = STATE(1719), - [sym__list_item_plus] = STATE(1313), - [sym__list_star] = STATE(1719), - [sym__list_item_star] = STATE(1314), - [sym__list_task] = STATE(1719), - [sym__list_item_task] = STATE(1280), - [sym_list_marker_task] = STATE(49), - [sym__list_definition] = STATE(1719), - [sym__list_item_definition] = STATE(1571), - [sym__list_decimal_period] = STATE(1719), - [sym__list_item_decimal_period] = STATE(1572), - [sym__list_decimal_paren] = STATE(1719), - [sym__list_item_decimal_paren] = STATE(1573), - [sym__list_decimal_parens] = STATE(1719), - [sym__list_item_decimal_parens] = STATE(1574), - [sym__list_lower_alpha_period] = STATE(1719), - [sym__list_item_lower_alpha_period] = STATE(1575), - [sym__list_lower_alpha_paren] = STATE(1719), - [sym__list_item_lower_alpha_paren] = STATE(1576), - [sym__list_lower_alpha_parens] = STATE(1719), - [sym__list_item_lower_alpha_parens] = STATE(1577), - [sym__list_upper_alpha_period] = STATE(1719), - [sym__list_item_upper_alpha_period] = STATE(1578), - [sym__list_upper_alpha_paren] = STATE(1719), - [sym__list_item_upper_alpha_paren] = STATE(1579), - [sym__list_upper_alpha_parens] = STATE(1719), - [sym__list_item_upper_alpha_parens] = STATE(1580), - [sym__list_lower_roman_period] = STATE(1719), - [sym__list_item_lower_roman_period] = STATE(1581), - [sym__list_lower_roman_paren] = STATE(1719), - [sym__list_item_lower_roman_paren] = STATE(1492), - [sym__list_lower_roman_parens] = STATE(1719), - [sym__list_item_lower_roman_parens] = STATE(1556), - [sym__list_upper_roman_period] = STATE(1719), - [sym__list_item_upper_roman_period] = STATE(1557), - [sym__list_upper_roman_paren] = STATE(1719), - [sym__list_item_upper_roman_paren] = STATE(1558), - [sym__list_upper_roman_parens] = STATE(1719), - [sym__list_item_upper_roman_parens] = STATE(1559), - [sym_list_item_content] = STATE(1625), - [sym_table] = STATE(1383), - [sym__table_content] = STATE(1206), - [sym_table_separator] = STATE(1206), - [sym_table_row] = STATE(1269), - [sym_footnote] = STATE(1383), - [sym_div] = STATE(1383), - [sym_div_marker_begin] = STATE(2127), - [sym_code_block] = STATE(1383), - [sym_raw_block] = STATE(1383), - [sym_thematic_break] = STATE(1383), - [sym_block_quote] = STATE(1383), - [sym__block_quote_prefix] = STATE(1388), - [sym_link_reference_definition] = STATE(1383), - [sym_block_attribute] = STATE(1383), - [sym__paragraph] = STATE(1383), - [sym__paragraph_content] = STATE(1923), - [sym__inline] = STATE(2311), - [sym__inline_element_with_whitespace] = STATE(229), - [sym__inline_element_with_newline] = STATE(229), - [sym__inline_core_element] = STATE(229), - [sym__hard_line_break] = STATE(716), - [sym_hard_line_break] = STATE(517), - [sym__smart_punctuation] = STATE(716), - [sym_autolink] = STATE(716), - [sym_emphasis] = STATE(716), - [sym_emphasis_begin] = STATE(283), - [sym_strong] = STATE(716), - [sym_strong_begin] = STATE(282), - [sym_highlighted] = STATE(716), - [sym_insert] = STATE(716), - [sym_delete] = STATE(716), - [sym_superscript] = STATE(716), - [sym_subscript] = STATE(716), - [sym_footnote_reference] = STATE(716), - [sym__image] = STATE(716), - [sym_full_reference_image] = STATE(716), - [sym_collapsed_reference_image] = STATE(716), - [sym_inline_image] = STATE(716), - [sym__image_description] = STATE(1412), - [sym__link] = STATE(716), - [sym_full_reference_link] = STATE(716), - [sym_collapsed_reference_link] = STATE(716), - [sym_inline_link] = STATE(716), - [sym_link_text] = STATE(1413), - [sym__comment_with_spaces] = STATE(716), - [sym_span] = STATE(716), - [sym_raw_inline] = STATE(716), - [sym_math] = STATE(716), - [sym_verbatim] = STATE(716), - [sym__todo_highlights] = STATE(716), - [sym_todo] = STATE(716), - [sym_note] = STATE(716), - [sym__symbol_fallback] = STATE(716), - [aux_sym__text] = STATE(562), - [aux_sym__list_dash_repeat1] = STATE(1312), - [aux_sym__list_plus_repeat1] = STATE(1313), - [aux_sym__list_star_repeat1] = STATE(1314), - [aux_sym__list_task_repeat1] = STATE(1280), - [aux_sym__list_definition_repeat1] = STATE(1571), - [aux_sym__list_decimal_period_repeat1] = STATE(1572), - [aux_sym__list_decimal_paren_repeat1] = STATE(1573), - [aux_sym__list_decimal_parens_repeat1] = STATE(1574), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(1575), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(1576), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(1577), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(1578), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(1579), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(1580), - [aux_sym__list_lower_roman_period_repeat1] = STATE(1581), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(1492), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(1556), - [aux_sym__list_upper_roman_period_repeat1] = STATE(1557), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(1558), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(1559), - [aux_sym_table_repeat1] = STATE(1206), - [aux_sym__block_quote_prefix_repeat1] = STATE(1308), - [aux_sym__inline_repeat1] = STATE(229), - [anon_sym_LBRACK] = ACTIONS(623), - [anon_sym_PIPE] = ACTIONS(625), - [anon_sym_LBRACE] = ACTIONS(627), - [sym__whitespace1] = ACTIONS(11), - [anon_sym_BSLASH] = ACTIONS(13), - [sym_quotation_marks] = ACTIONS(15), - [sym_ellipsis] = ACTIONS(15), - [sym_em_dash] = ACTIONS(15), - [sym_en_dash] = ACTIONS(17), - [sym_backslash_escape] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(19), - [anon_sym_LBRACE_] = ACTIONS(21), - [anon_sym__] = ACTIONS(23), - [anon_sym_LBRACE_STAR] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_LBRACE_EQ] = ACTIONS(29), - [anon_sym_LBRACE_PLUS] = ACTIONS(31), - [anon_sym_LBRACE_DASH] = ACTIONS(33), - [sym_symbol] = ACTIONS(15), - [anon_sym_LBRACE_CARET] = ACTIONS(35), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_LBRACE_TILDE] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(37), - [anon_sym_LBRACK_CARET] = ACTIONS(39), - [anon_sym_BANG_LBRACK] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [anon_sym_TODO] = ACTIONS(45), - [anon_sym_WIP] = ACTIONS(45), - [anon_sym_NOTE] = ACTIONS(47), - [anon_sym_INFO] = ACTIONS(47), - [anon_sym_XXX] = ACTIONS(47), - [sym_fixme] = ACTIONS(15), - [aux_sym__text_token1] = ACTIONS(49), - [sym__newline] = ACTIONS(677), - [sym__newline_inline] = ACTIONS(53), - [sym__heading1_begin] = ACTIONS(631), - [sym__heading2_begin] = ACTIONS(633), - [sym__heading3_begin] = ACTIONS(635), - [sym__heading4_begin] = ACTIONS(637), - [sym__heading5_begin] = ACTIONS(639), - [sym__heading6_begin] = ACTIONS(641), - [sym__div_begin] = ACTIONS(69), - [sym__code_block_begin] = ACTIONS(643), - [sym_list_marker_dash] = ACTIONS(73), - [sym_list_marker_star] = ACTIONS(75), - [sym_list_marker_plus] = ACTIONS(77), - [sym__list_marker_task_begin] = ACTIONS(79), - [sym_list_marker_definition] = ACTIONS(81), - [sym_list_marker_decimal_period] = ACTIONS(83), - [sym_list_marker_lower_alpha_period] = ACTIONS(85), - [sym_list_marker_upper_alpha_period] = ACTIONS(87), - [sym_list_marker_lower_roman_period] = ACTIONS(89), - [sym_list_marker_upper_roman_period] = ACTIONS(91), - [sym_list_marker_decimal_paren] = ACTIONS(93), - [sym_list_marker_lower_alpha_paren] = ACTIONS(95), - [sym_list_marker_upper_alpha_paren] = ACTIONS(97), - [sym_list_marker_lower_roman_paren] = ACTIONS(99), - [sym_list_marker_upper_roman_paren] = ACTIONS(101), - [sym_list_marker_decimal_parens] = ACTIONS(103), - [sym_list_marker_lower_alpha_parens] = ACTIONS(105), - [sym_list_marker_upper_alpha_parens] = ACTIONS(107), - [sym_list_marker_lower_roman_parens] = ACTIONS(109), - [sym_list_marker_upper_roman_parens] = ACTIONS(111), - [sym__block_quote_begin] = ACTIONS(645), - [sym__block_quote_continuation] = ACTIONS(115), - [sym__thematic_break_dash] = ACTIONS(647), - [sym__thematic_break_star] = ACTIONS(647), - [sym__footnote_begin] = ACTIONS(649), - [sym__verbatim_begin] = ACTIONS(121), - }, - [44] = { - [sym__block_with_heading] = STATE(1352), - [sym__block_element] = STATE(1352), - [sym__heading] = STATE(1352), - [sym_heading1] = STATE(1352), - [sym_heading2] = STATE(1352), - [sym_heading3] = STATE(1352), - [sym_heading4] = STATE(1352), - [sym_heading5] = STATE(1352), - [sym_heading6] = STATE(1352), - [sym_list] = STATE(1352), - [sym__list_dash] = STATE(1719), - [sym__list_item_dash] = STATE(1312), - [sym__list_plus] = STATE(1719), - [sym__list_item_plus] = STATE(1313), - [sym__list_star] = STATE(1719), - [sym__list_item_star] = STATE(1314), - [sym__list_task] = STATE(1719), - [sym__list_item_task] = STATE(1280), - [sym_list_marker_task] = STATE(49), - [sym__list_definition] = STATE(1719), - [sym__list_item_definition] = STATE(1571), - [sym__list_decimal_period] = STATE(1719), - [sym__list_item_decimal_period] = STATE(1572), - [sym__list_decimal_paren] = STATE(1719), - [sym__list_item_decimal_paren] = STATE(1573), - [sym__list_decimal_parens] = STATE(1719), - [sym__list_item_decimal_parens] = STATE(1574), - [sym__list_lower_alpha_period] = STATE(1719), - [sym__list_item_lower_alpha_period] = STATE(1575), - [sym__list_lower_alpha_paren] = STATE(1719), - [sym__list_item_lower_alpha_paren] = STATE(1576), - [sym__list_lower_alpha_parens] = STATE(1719), - [sym__list_item_lower_alpha_parens] = STATE(1577), - [sym__list_upper_alpha_period] = STATE(1719), - [sym__list_item_upper_alpha_period] = STATE(1578), - [sym__list_upper_alpha_paren] = STATE(1719), - [sym__list_item_upper_alpha_paren] = STATE(1579), - [sym__list_upper_alpha_parens] = STATE(1719), - [sym__list_item_upper_alpha_parens] = STATE(1580), - [sym__list_lower_roman_period] = STATE(1719), - [sym__list_item_lower_roman_period] = STATE(1581), - [sym__list_lower_roman_paren] = STATE(1719), - [sym__list_item_lower_roman_paren] = STATE(1492), - [sym__list_lower_roman_parens] = STATE(1719), - [sym__list_item_lower_roman_parens] = STATE(1556), - [sym__list_upper_roman_period] = STATE(1719), - [sym__list_item_upper_roman_period] = STATE(1557), - [sym__list_upper_roman_paren] = STATE(1719), - [sym__list_item_upper_roman_paren] = STATE(1558), - [sym__list_upper_roman_parens] = STATE(1719), - [sym__list_item_upper_roman_parens] = STATE(1559), - [sym_list_item_content] = STATE(1852), - [sym_table] = STATE(1352), - [sym__table_content] = STATE(1206), - [sym_table_separator] = STATE(1206), - [sym_table_row] = STATE(1269), - [sym_footnote] = STATE(1352), - [sym_div] = STATE(1352), - [sym_div_marker_begin] = STATE(2127), - [sym_code_block] = STATE(1352), - [sym_raw_block] = STATE(1352), - [sym_thematic_break] = STATE(1352), - [sym_block_quote] = STATE(1352), - [sym__block_quote_prefix] = STATE(1388), - [sym_link_reference_definition] = STATE(1352), - [sym_block_attribute] = STATE(1352), - [sym__paragraph] = STATE(1352), - [sym__paragraph_content] = STATE(1923), - [sym__inline] = STATE(2311), - [sym__inline_element_with_whitespace] = STATE(229), - [sym__inline_element_with_newline] = STATE(229), - [sym__inline_core_element] = STATE(229), - [sym__hard_line_break] = STATE(716), - [sym_hard_line_break] = STATE(517), - [sym__smart_punctuation] = STATE(716), - [sym_autolink] = STATE(716), - [sym_emphasis] = STATE(716), - [sym_emphasis_begin] = STATE(283), - [sym_strong] = STATE(716), - [sym_strong_begin] = STATE(282), - [sym_highlighted] = STATE(716), - [sym_insert] = STATE(716), - [sym_delete] = STATE(716), - [sym_superscript] = STATE(716), - [sym_subscript] = STATE(716), - [sym_footnote_reference] = STATE(716), - [sym__image] = STATE(716), - [sym_full_reference_image] = STATE(716), - [sym_collapsed_reference_image] = STATE(716), - [sym_inline_image] = STATE(716), - [sym__image_description] = STATE(1412), - [sym__link] = STATE(716), - [sym_full_reference_link] = STATE(716), - [sym_collapsed_reference_link] = STATE(716), - [sym_inline_link] = STATE(716), - [sym_link_text] = STATE(1413), - [sym__comment_with_spaces] = STATE(716), - [sym_span] = STATE(716), - [sym_raw_inline] = STATE(716), - [sym_math] = STATE(716), - [sym_verbatim] = STATE(716), - [sym__todo_highlights] = STATE(716), - [sym_todo] = STATE(716), - [sym_note] = STATE(716), - [sym__symbol_fallback] = STATE(716), - [aux_sym__text] = STATE(562), - [aux_sym__list_dash_repeat1] = STATE(1312), - [aux_sym__list_plus_repeat1] = STATE(1313), - [aux_sym__list_star_repeat1] = STATE(1314), - [aux_sym__list_task_repeat1] = STATE(1280), - [aux_sym__list_definition_repeat1] = STATE(1571), - [aux_sym__list_decimal_period_repeat1] = STATE(1572), - [aux_sym__list_decimal_paren_repeat1] = STATE(1573), - [aux_sym__list_decimal_parens_repeat1] = STATE(1574), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(1575), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(1576), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(1577), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(1578), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(1579), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(1580), - [aux_sym__list_lower_roman_period_repeat1] = STATE(1581), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(1492), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(1556), - [aux_sym__list_upper_roman_period_repeat1] = STATE(1557), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(1558), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(1559), - [aux_sym_table_repeat1] = STATE(1206), - [aux_sym__block_quote_prefix_repeat1] = STATE(1308), - [aux_sym__inline_repeat1] = STATE(229), - [anon_sym_LBRACK] = ACTIONS(623), - [anon_sym_PIPE] = ACTIONS(625), - [anon_sym_LBRACE] = ACTIONS(627), - [sym__whitespace1] = ACTIONS(11), - [anon_sym_BSLASH] = ACTIONS(13), - [sym_quotation_marks] = ACTIONS(15), - [sym_ellipsis] = ACTIONS(15), - [sym_em_dash] = ACTIONS(15), - [sym_en_dash] = ACTIONS(17), - [sym_backslash_escape] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(19), - [anon_sym_LBRACE_] = ACTIONS(21), - [anon_sym__] = ACTIONS(23), - [anon_sym_LBRACE_STAR] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_LBRACE_EQ] = ACTIONS(29), - [anon_sym_LBRACE_PLUS] = ACTIONS(31), - [anon_sym_LBRACE_DASH] = ACTIONS(33), - [sym_symbol] = ACTIONS(15), - [anon_sym_LBRACE_CARET] = ACTIONS(35), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_LBRACE_TILDE] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(37), - [anon_sym_LBRACK_CARET] = ACTIONS(39), - [anon_sym_BANG_LBRACK] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [anon_sym_TODO] = ACTIONS(45), - [anon_sym_WIP] = ACTIONS(45), - [anon_sym_NOTE] = ACTIONS(47), - [anon_sym_INFO] = ACTIONS(47), - [anon_sym_XXX] = ACTIONS(47), - [sym_fixme] = ACTIONS(15), - [aux_sym__text_token1] = ACTIONS(49), - [sym__newline] = ACTIONS(679), - [sym__newline_inline] = ACTIONS(53), - [sym__heading1_begin] = ACTIONS(631), - [sym__heading2_begin] = ACTIONS(633), - [sym__heading3_begin] = ACTIONS(635), - [sym__heading4_begin] = ACTIONS(637), - [sym__heading5_begin] = ACTIONS(639), - [sym__heading6_begin] = ACTIONS(641), - [sym__div_begin] = ACTIONS(69), - [sym__code_block_begin] = ACTIONS(643), - [sym_list_marker_dash] = ACTIONS(73), - [sym_list_marker_star] = ACTIONS(75), - [sym_list_marker_plus] = ACTIONS(77), - [sym__list_marker_task_begin] = ACTIONS(79), - [sym_list_marker_definition] = ACTIONS(81), - [sym_list_marker_decimal_period] = ACTIONS(83), - [sym_list_marker_lower_alpha_period] = ACTIONS(85), - [sym_list_marker_upper_alpha_period] = ACTIONS(87), - [sym_list_marker_lower_roman_period] = ACTIONS(89), - [sym_list_marker_upper_roman_period] = ACTIONS(91), - [sym_list_marker_decimal_paren] = ACTIONS(93), - [sym_list_marker_lower_alpha_paren] = ACTIONS(95), - [sym_list_marker_upper_alpha_paren] = ACTIONS(97), - [sym_list_marker_lower_roman_paren] = ACTIONS(99), - [sym_list_marker_upper_roman_paren] = ACTIONS(101), - [sym_list_marker_decimal_parens] = ACTIONS(103), - [sym_list_marker_lower_alpha_parens] = ACTIONS(105), - [sym_list_marker_upper_alpha_parens] = ACTIONS(107), - [sym_list_marker_lower_roman_parens] = ACTIONS(109), - [sym_list_marker_upper_roman_parens] = ACTIONS(111), - [sym__block_quote_begin] = ACTIONS(645), - [sym__block_quote_continuation] = ACTIONS(115), - [sym__thematic_break_dash] = ACTIONS(647), - [sym__thematic_break_star] = ACTIONS(647), - [sym__footnote_begin] = ACTIONS(649), - [sym__verbatim_begin] = ACTIONS(121), - }, - [45] = { - [sym__block_with_heading] = STATE(1383), - [sym__block_element] = STATE(1383), - [sym__heading] = STATE(1383), - [sym_heading1] = STATE(1383), - [sym_heading2] = STATE(1383), - [sym_heading3] = STATE(1383), - [sym_heading4] = STATE(1383), - [sym_heading5] = STATE(1383), - [sym_heading6] = STATE(1383), - [sym_list] = STATE(1383), - [sym__list_dash] = STATE(1719), - [sym__list_item_dash] = STATE(1312), - [sym__list_plus] = STATE(1719), - [sym__list_item_plus] = STATE(1313), - [sym__list_star] = STATE(1719), - [sym__list_item_star] = STATE(1314), - [sym__list_task] = STATE(1719), - [sym__list_item_task] = STATE(1280), - [sym_list_marker_task] = STATE(49), - [sym__list_definition] = STATE(1719), - [sym__list_item_definition] = STATE(1571), - [sym__list_decimal_period] = STATE(1719), - [sym__list_item_decimal_period] = STATE(1572), - [sym__list_decimal_paren] = STATE(1719), - [sym__list_item_decimal_paren] = STATE(1573), - [sym__list_decimal_parens] = STATE(1719), - [sym__list_item_decimal_parens] = STATE(1574), - [sym__list_lower_alpha_period] = STATE(1719), - [sym__list_item_lower_alpha_period] = STATE(1575), - [sym__list_lower_alpha_paren] = STATE(1719), - [sym__list_item_lower_alpha_paren] = STATE(1576), - [sym__list_lower_alpha_parens] = STATE(1719), - [sym__list_item_lower_alpha_parens] = STATE(1577), - [sym__list_upper_alpha_period] = STATE(1719), - [sym__list_item_upper_alpha_period] = STATE(1578), - [sym__list_upper_alpha_paren] = STATE(1719), - [sym__list_item_upper_alpha_paren] = STATE(1579), - [sym__list_upper_alpha_parens] = STATE(1719), - [sym__list_item_upper_alpha_parens] = STATE(1580), - [sym__list_lower_roman_period] = STATE(1719), - [sym__list_item_lower_roman_period] = STATE(1581), - [sym__list_lower_roman_paren] = STATE(1719), - [sym__list_item_lower_roman_paren] = STATE(1492), - [sym__list_lower_roman_parens] = STATE(1719), - [sym__list_item_lower_roman_parens] = STATE(1556), - [sym__list_upper_roman_period] = STATE(1719), - [sym__list_item_upper_roman_period] = STATE(1557), - [sym__list_upper_roman_paren] = STATE(1719), - [sym__list_item_upper_roman_paren] = STATE(1558), - [sym__list_upper_roman_parens] = STATE(1719), - [sym__list_item_upper_roman_parens] = STATE(1559), - [sym_list_item_content] = STATE(1676), - [sym_table] = STATE(1383), - [sym__table_content] = STATE(1206), - [sym_table_separator] = STATE(1206), - [sym_table_row] = STATE(1269), - [sym_footnote] = STATE(1383), - [sym_div] = STATE(1383), - [sym_div_marker_begin] = STATE(2127), - [sym_code_block] = STATE(1383), - [sym_raw_block] = STATE(1383), - [sym_thematic_break] = STATE(1383), - [sym_block_quote] = STATE(1383), - [sym__block_quote_prefix] = STATE(1388), - [sym_link_reference_definition] = STATE(1383), - [sym_block_attribute] = STATE(1383), - [sym__paragraph] = STATE(1383), - [sym__paragraph_content] = STATE(1923), - [sym__inline] = STATE(2311), - [sym__inline_element_with_whitespace] = STATE(229), - [sym__inline_element_with_newline] = STATE(229), - [sym__inline_core_element] = STATE(229), - [sym__hard_line_break] = STATE(716), - [sym_hard_line_break] = STATE(517), - [sym__smart_punctuation] = STATE(716), - [sym_autolink] = STATE(716), - [sym_emphasis] = STATE(716), - [sym_emphasis_begin] = STATE(283), - [sym_strong] = STATE(716), - [sym_strong_begin] = STATE(282), - [sym_highlighted] = STATE(716), - [sym_insert] = STATE(716), - [sym_delete] = STATE(716), - [sym_superscript] = STATE(716), - [sym_subscript] = STATE(716), - [sym_footnote_reference] = STATE(716), - [sym__image] = STATE(716), - [sym_full_reference_image] = STATE(716), - [sym_collapsed_reference_image] = STATE(716), - [sym_inline_image] = STATE(716), - [sym__image_description] = STATE(1412), - [sym__link] = STATE(716), - [sym_full_reference_link] = STATE(716), - [sym_collapsed_reference_link] = STATE(716), - [sym_inline_link] = STATE(716), - [sym_link_text] = STATE(1413), - [sym__comment_with_spaces] = STATE(716), - [sym_span] = STATE(716), - [sym_raw_inline] = STATE(716), - [sym_math] = STATE(716), - [sym_verbatim] = STATE(716), - [sym__todo_highlights] = STATE(716), - [sym_todo] = STATE(716), - [sym_note] = STATE(716), - [sym__symbol_fallback] = STATE(716), - [aux_sym__text] = STATE(562), - [aux_sym__list_dash_repeat1] = STATE(1312), - [aux_sym__list_plus_repeat1] = STATE(1313), - [aux_sym__list_star_repeat1] = STATE(1314), - [aux_sym__list_task_repeat1] = STATE(1280), - [aux_sym__list_definition_repeat1] = STATE(1571), - [aux_sym__list_decimal_period_repeat1] = STATE(1572), - [aux_sym__list_decimal_paren_repeat1] = STATE(1573), - [aux_sym__list_decimal_parens_repeat1] = STATE(1574), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(1575), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(1576), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(1577), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(1578), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(1579), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(1580), - [aux_sym__list_lower_roman_period_repeat1] = STATE(1581), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(1492), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(1556), - [aux_sym__list_upper_roman_period_repeat1] = STATE(1557), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(1558), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(1559), - [aux_sym_table_repeat1] = STATE(1206), - [aux_sym__block_quote_prefix_repeat1] = STATE(1308), - [aux_sym__inline_repeat1] = STATE(229), - [anon_sym_LBRACK] = ACTIONS(623), - [anon_sym_PIPE] = ACTIONS(625), - [anon_sym_LBRACE] = ACTIONS(627), - [sym__whitespace1] = ACTIONS(11), - [anon_sym_BSLASH] = ACTIONS(13), - [sym_quotation_marks] = ACTIONS(15), - [sym_ellipsis] = ACTIONS(15), - [sym_em_dash] = ACTIONS(15), - [sym_en_dash] = ACTIONS(17), - [sym_backslash_escape] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(19), - [anon_sym_LBRACE_] = ACTIONS(21), - [anon_sym__] = ACTIONS(23), - [anon_sym_LBRACE_STAR] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_LBRACE_EQ] = ACTIONS(29), - [anon_sym_LBRACE_PLUS] = ACTIONS(31), - [anon_sym_LBRACE_DASH] = ACTIONS(33), - [sym_symbol] = ACTIONS(15), - [anon_sym_LBRACE_CARET] = ACTIONS(35), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_LBRACE_TILDE] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(37), - [anon_sym_LBRACK_CARET] = ACTIONS(39), - [anon_sym_BANG_LBRACK] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [anon_sym_TODO] = ACTIONS(45), - [anon_sym_WIP] = ACTIONS(45), - [anon_sym_NOTE] = ACTIONS(47), - [anon_sym_INFO] = ACTIONS(47), - [anon_sym_XXX] = ACTIONS(47), - [sym_fixme] = ACTIONS(15), - [aux_sym__text_token1] = ACTIONS(49), - [sym__newline] = ACTIONS(677), - [sym__newline_inline] = ACTIONS(53), - [sym__heading1_begin] = ACTIONS(631), - [sym__heading2_begin] = ACTIONS(633), - [sym__heading3_begin] = ACTIONS(635), - [sym__heading4_begin] = ACTIONS(637), - [sym__heading5_begin] = ACTIONS(639), - [sym__heading6_begin] = ACTIONS(641), - [sym__div_begin] = ACTIONS(69), - [sym__code_block_begin] = ACTIONS(643), - [sym_list_marker_dash] = ACTIONS(73), - [sym_list_marker_star] = ACTIONS(75), - [sym_list_marker_plus] = ACTIONS(77), - [sym__list_marker_task_begin] = ACTIONS(79), - [sym_list_marker_definition] = ACTIONS(81), - [sym_list_marker_decimal_period] = ACTIONS(83), - [sym_list_marker_lower_alpha_period] = ACTIONS(85), - [sym_list_marker_upper_alpha_period] = ACTIONS(87), - [sym_list_marker_lower_roman_period] = ACTIONS(89), - [sym_list_marker_upper_roman_period] = ACTIONS(91), - [sym_list_marker_decimal_paren] = ACTIONS(93), - [sym_list_marker_lower_alpha_paren] = ACTIONS(95), - [sym_list_marker_upper_alpha_paren] = ACTIONS(97), - [sym_list_marker_lower_roman_paren] = ACTIONS(99), - [sym_list_marker_upper_roman_paren] = ACTIONS(101), - [sym_list_marker_decimal_parens] = ACTIONS(103), - [sym_list_marker_lower_alpha_parens] = ACTIONS(105), - [sym_list_marker_upper_alpha_parens] = ACTIONS(107), - [sym_list_marker_lower_roman_parens] = ACTIONS(109), - [sym_list_marker_upper_roman_parens] = ACTIONS(111), - [sym__block_quote_begin] = ACTIONS(645), - [sym__block_quote_continuation] = ACTIONS(115), - [sym__thematic_break_dash] = ACTIONS(647), - [sym__thematic_break_star] = ACTIONS(647), - [sym__footnote_begin] = ACTIONS(649), - [sym__verbatim_begin] = ACTIONS(121), - }, - [46] = { - [sym__block_with_heading] = STATE(1372), - [sym__block_element] = STATE(1372), - [sym__heading] = STATE(1372), - [sym_heading1] = STATE(1372), - [sym_heading2] = STATE(1372), - [sym_heading3] = STATE(1372), - [sym_heading4] = STATE(1372), - [sym_heading5] = STATE(1372), - [sym_heading6] = STATE(1372), - [sym_list] = STATE(1372), - [sym__list_dash] = STATE(1719), - [sym__list_item_dash] = STATE(1312), - [sym__list_plus] = STATE(1719), - [sym__list_item_plus] = STATE(1313), - [sym__list_star] = STATE(1719), - [sym__list_item_star] = STATE(1314), - [sym__list_task] = STATE(1719), - [sym__list_item_task] = STATE(1280), - [sym_list_marker_task] = STATE(49), - [sym__list_definition] = STATE(1719), - [sym__list_item_definition] = STATE(1571), - [sym__list_decimal_period] = STATE(1719), - [sym__list_item_decimal_period] = STATE(1572), - [sym__list_decimal_paren] = STATE(1719), - [sym__list_item_decimal_paren] = STATE(1573), - [sym__list_decimal_parens] = STATE(1719), - [sym__list_item_decimal_parens] = STATE(1574), - [sym__list_lower_alpha_period] = STATE(1719), - [sym__list_item_lower_alpha_period] = STATE(1575), - [sym__list_lower_alpha_paren] = STATE(1719), - [sym__list_item_lower_alpha_paren] = STATE(1576), - [sym__list_lower_alpha_parens] = STATE(1719), - [sym__list_item_lower_alpha_parens] = STATE(1577), - [sym__list_upper_alpha_period] = STATE(1719), - [sym__list_item_upper_alpha_period] = STATE(1578), - [sym__list_upper_alpha_paren] = STATE(1719), - [sym__list_item_upper_alpha_paren] = STATE(1579), - [sym__list_upper_alpha_parens] = STATE(1719), - [sym__list_item_upper_alpha_parens] = STATE(1580), - [sym__list_lower_roman_period] = STATE(1719), - [sym__list_item_lower_roman_period] = STATE(1581), - [sym__list_lower_roman_paren] = STATE(1719), - [sym__list_item_lower_roman_paren] = STATE(1492), - [sym__list_lower_roman_parens] = STATE(1719), - [sym__list_item_lower_roman_parens] = STATE(1556), - [sym__list_upper_roman_period] = STATE(1719), - [sym__list_item_upper_roman_period] = STATE(1557), - [sym__list_upper_roman_paren] = STATE(1719), - [sym__list_item_upper_roman_paren] = STATE(1558), - [sym__list_upper_roman_parens] = STATE(1719), - [sym__list_item_upper_roman_parens] = STATE(1559), - [sym_list_item_content] = STATE(1675), - [sym_table] = STATE(1372), - [sym__table_content] = STATE(1206), - [sym_table_separator] = STATE(1206), - [sym_table_row] = STATE(1269), - [sym_footnote] = STATE(1372), - [sym_div] = STATE(1372), - [sym_div_marker_begin] = STATE(2127), - [sym_code_block] = STATE(1372), - [sym_raw_block] = STATE(1372), - [sym_thematic_break] = STATE(1372), - [sym_block_quote] = STATE(1372), - [sym__block_quote_prefix] = STATE(1388), - [sym_link_reference_definition] = STATE(1372), - [sym_block_attribute] = STATE(1372), - [sym__paragraph] = STATE(1372), - [sym__paragraph_content] = STATE(1923), - [sym__inline] = STATE(2311), - [sym__inline_element_with_whitespace] = STATE(229), - [sym__inline_element_with_newline] = STATE(229), - [sym__inline_core_element] = STATE(229), - [sym__hard_line_break] = STATE(716), - [sym_hard_line_break] = STATE(517), - [sym__smart_punctuation] = STATE(716), - [sym_autolink] = STATE(716), - [sym_emphasis] = STATE(716), - [sym_emphasis_begin] = STATE(283), - [sym_strong] = STATE(716), - [sym_strong_begin] = STATE(282), - [sym_highlighted] = STATE(716), - [sym_insert] = STATE(716), - [sym_delete] = STATE(716), - [sym_superscript] = STATE(716), - [sym_subscript] = STATE(716), - [sym_footnote_reference] = STATE(716), - [sym__image] = STATE(716), - [sym_full_reference_image] = STATE(716), - [sym_collapsed_reference_image] = STATE(716), - [sym_inline_image] = STATE(716), - [sym__image_description] = STATE(1412), - [sym__link] = STATE(716), - [sym_full_reference_link] = STATE(716), - [sym_collapsed_reference_link] = STATE(716), - [sym_inline_link] = STATE(716), - [sym_link_text] = STATE(1413), - [sym__comment_with_spaces] = STATE(716), - [sym_span] = STATE(716), - [sym_raw_inline] = STATE(716), - [sym_math] = STATE(716), - [sym_verbatim] = STATE(716), - [sym__todo_highlights] = STATE(716), - [sym_todo] = STATE(716), - [sym_note] = STATE(716), - [sym__symbol_fallback] = STATE(716), - [aux_sym__text] = STATE(562), - [aux_sym__list_dash_repeat1] = STATE(1312), - [aux_sym__list_plus_repeat1] = STATE(1313), - [aux_sym__list_star_repeat1] = STATE(1314), - [aux_sym__list_task_repeat1] = STATE(1280), - [aux_sym__list_definition_repeat1] = STATE(1571), - [aux_sym__list_decimal_period_repeat1] = STATE(1572), - [aux_sym__list_decimal_paren_repeat1] = STATE(1573), - [aux_sym__list_decimal_parens_repeat1] = STATE(1574), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(1575), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(1576), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(1577), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(1578), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(1579), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(1580), - [aux_sym__list_lower_roman_period_repeat1] = STATE(1581), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(1492), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(1556), - [aux_sym__list_upper_roman_period_repeat1] = STATE(1557), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(1558), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(1559), - [aux_sym_table_repeat1] = STATE(1206), - [aux_sym__block_quote_prefix_repeat1] = STATE(1308), - [aux_sym__inline_repeat1] = STATE(229), - [anon_sym_LBRACK] = ACTIONS(623), - [anon_sym_PIPE] = ACTIONS(625), - [anon_sym_LBRACE] = ACTIONS(627), - [sym__whitespace1] = ACTIONS(11), - [anon_sym_BSLASH] = ACTIONS(13), - [sym_quotation_marks] = ACTIONS(15), - [sym_ellipsis] = ACTIONS(15), - [sym_em_dash] = ACTIONS(15), - [sym_en_dash] = ACTIONS(17), - [sym_backslash_escape] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(19), - [anon_sym_LBRACE_] = ACTIONS(21), - [anon_sym__] = ACTIONS(23), - [anon_sym_LBRACE_STAR] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_LBRACE_EQ] = ACTIONS(29), - [anon_sym_LBRACE_PLUS] = ACTIONS(31), - [anon_sym_LBRACE_DASH] = ACTIONS(33), - [sym_symbol] = ACTIONS(15), - [anon_sym_LBRACE_CARET] = ACTIONS(35), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_LBRACE_TILDE] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(37), - [anon_sym_LBRACK_CARET] = ACTIONS(39), - [anon_sym_BANG_LBRACK] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [anon_sym_TODO] = ACTIONS(45), - [anon_sym_WIP] = ACTIONS(45), - [anon_sym_NOTE] = ACTIONS(47), - [anon_sym_INFO] = ACTIONS(47), - [anon_sym_XXX] = ACTIONS(47), - [sym_fixme] = ACTIONS(15), - [aux_sym__text_token1] = ACTIONS(49), - [sym__newline] = ACTIONS(651), - [sym__newline_inline] = ACTIONS(53), - [sym__heading1_begin] = ACTIONS(631), - [sym__heading2_begin] = ACTIONS(633), - [sym__heading3_begin] = ACTIONS(635), - [sym__heading4_begin] = ACTIONS(637), - [sym__heading5_begin] = ACTIONS(639), - [sym__heading6_begin] = ACTIONS(641), - [sym__div_begin] = ACTIONS(69), - [sym__code_block_begin] = ACTIONS(643), - [sym_list_marker_dash] = ACTIONS(73), - [sym_list_marker_star] = ACTIONS(75), - [sym_list_marker_plus] = ACTIONS(77), - [sym__list_marker_task_begin] = ACTIONS(79), - [sym_list_marker_definition] = ACTIONS(81), - [sym_list_marker_decimal_period] = ACTIONS(83), - [sym_list_marker_lower_alpha_period] = ACTIONS(85), - [sym_list_marker_upper_alpha_period] = ACTIONS(87), - [sym_list_marker_lower_roman_period] = ACTIONS(89), - [sym_list_marker_upper_roman_period] = ACTIONS(91), - [sym_list_marker_decimal_paren] = ACTIONS(93), - [sym_list_marker_lower_alpha_paren] = ACTIONS(95), - [sym_list_marker_upper_alpha_paren] = ACTIONS(97), - [sym_list_marker_lower_roman_paren] = ACTIONS(99), - [sym_list_marker_upper_roman_paren] = ACTIONS(101), - [sym_list_marker_decimal_parens] = ACTIONS(103), - [sym_list_marker_lower_alpha_parens] = ACTIONS(105), - [sym_list_marker_upper_alpha_parens] = ACTIONS(107), - [sym_list_marker_lower_roman_parens] = ACTIONS(109), - [sym_list_marker_upper_roman_parens] = ACTIONS(111), - [sym__block_quote_begin] = ACTIONS(645), - [sym__block_quote_continuation] = ACTIONS(115), - [sym__thematic_break_dash] = ACTIONS(647), - [sym__thematic_break_star] = ACTIONS(647), - [sym__footnote_begin] = ACTIONS(649), - [sym__verbatim_begin] = ACTIONS(121), - }, - [47] = { - [sym__block_with_heading] = STATE(1365), - [sym__block_element] = STATE(1365), - [sym__heading] = STATE(1365), - [sym_heading1] = STATE(1365), - [sym_heading2] = STATE(1365), - [sym_heading3] = STATE(1365), - [sym_heading4] = STATE(1365), - [sym_heading5] = STATE(1365), - [sym_heading6] = STATE(1365), - [sym_list] = STATE(1365), - [sym__list_dash] = STATE(1719), - [sym__list_item_dash] = STATE(1312), - [sym__list_plus] = STATE(1719), - [sym__list_item_plus] = STATE(1313), - [sym__list_star] = STATE(1719), - [sym__list_item_star] = STATE(1314), - [sym__list_task] = STATE(1719), - [sym__list_item_task] = STATE(1280), - [sym_list_marker_task] = STATE(49), - [sym__list_definition] = STATE(1719), - [sym__list_item_definition] = STATE(1571), - [sym__list_decimal_period] = STATE(1719), - [sym__list_item_decimal_period] = STATE(1572), - [sym__list_decimal_paren] = STATE(1719), - [sym__list_item_decimal_paren] = STATE(1573), - [sym__list_decimal_parens] = STATE(1719), - [sym__list_item_decimal_parens] = STATE(1574), - [sym__list_lower_alpha_period] = STATE(1719), - [sym__list_item_lower_alpha_period] = STATE(1575), - [sym__list_lower_alpha_paren] = STATE(1719), - [sym__list_item_lower_alpha_paren] = STATE(1576), - [sym__list_lower_alpha_parens] = STATE(1719), - [sym__list_item_lower_alpha_parens] = STATE(1577), - [sym__list_upper_alpha_period] = STATE(1719), - [sym__list_item_upper_alpha_period] = STATE(1578), - [sym__list_upper_alpha_paren] = STATE(1719), - [sym__list_item_upper_alpha_paren] = STATE(1579), - [sym__list_upper_alpha_parens] = STATE(1719), - [sym__list_item_upper_alpha_parens] = STATE(1580), - [sym__list_lower_roman_period] = STATE(1719), - [sym__list_item_lower_roman_period] = STATE(1581), - [sym__list_lower_roman_paren] = STATE(1719), - [sym__list_item_lower_roman_paren] = STATE(1492), - [sym__list_lower_roman_parens] = STATE(1719), - [sym__list_item_lower_roman_parens] = STATE(1556), - [sym__list_upper_roman_period] = STATE(1719), - [sym__list_item_upper_roman_period] = STATE(1557), - [sym__list_upper_roman_paren] = STATE(1719), - [sym__list_item_upper_roman_paren] = STATE(1558), - [sym__list_upper_roman_parens] = STATE(1719), - [sym__list_item_upper_roman_parens] = STATE(1559), - [sym_list_item_content] = STATE(1673), - [sym_table] = STATE(1365), - [sym__table_content] = STATE(1206), - [sym_table_separator] = STATE(1206), - [sym_table_row] = STATE(1269), - [sym_footnote] = STATE(1365), - [sym_div] = STATE(1365), - [sym_div_marker_begin] = STATE(2127), - [sym_code_block] = STATE(1365), - [sym_raw_block] = STATE(1365), - [sym_thematic_break] = STATE(1365), - [sym_block_quote] = STATE(1365), - [sym__block_quote_prefix] = STATE(1388), - [sym_link_reference_definition] = STATE(1365), - [sym_block_attribute] = STATE(1365), - [sym__paragraph] = STATE(1365), - [sym__paragraph_content] = STATE(1923), - [sym__inline] = STATE(2311), - [sym__inline_element_with_whitespace] = STATE(229), - [sym__inline_element_with_newline] = STATE(229), - [sym__inline_core_element] = STATE(229), - [sym__hard_line_break] = STATE(716), - [sym_hard_line_break] = STATE(517), - [sym__smart_punctuation] = STATE(716), - [sym_autolink] = STATE(716), - [sym_emphasis] = STATE(716), - [sym_emphasis_begin] = STATE(283), - [sym_strong] = STATE(716), - [sym_strong_begin] = STATE(282), - [sym_highlighted] = STATE(716), - [sym_insert] = STATE(716), - [sym_delete] = STATE(716), - [sym_superscript] = STATE(716), - [sym_subscript] = STATE(716), - [sym_footnote_reference] = STATE(716), - [sym__image] = STATE(716), - [sym_full_reference_image] = STATE(716), - [sym_collapsed_reference_image] = STATE(716), - [sym_inline_image] = STATE(716), - [sym__image_description] = STATE(1412), - [sym__link] = STATE(716), - [sym_full_reference_link] = STATE(716), - [sym_collapsed_reference_link] = STATE(716), - [sym_inline_link] = STATE(716), - [sym_link_text] = STATE(1413), - [sym__comment_with_spaces] = STATE(716), - [sym_span] = STATE(716), - [sym_raw_inline] = STATE(716), - [sym_math] = STATE(716), - [sym_verbatim] = STATE(716), - [sym__todo_highlights] = STATE(716), - [sym_todo] = STATE(716), - [sym_note] = STATE(716), - [sym__symbol_fallback] = STATE(716), - [aux_sym__text] = STATE(562), - [aux_sym__list_dash_repeat1] = STATE(1312), - [aux_sym__list_plus_repeat1] = STATE(1313), - [aux_sym__list_star_repeat1] = STATE(1314), - [aux_sym__list_task_repeat1] = STATE(1280), - [aux_sym__list_definition_repeat1] = STATE(1571), - [aux_sym__list_decimal_period_repeat1] = STATE(1572), - [aux_sym__list_decimal_paren_repeat1] = STATE(1573), - [aux_sym__list_decimal_parens_repeat1] = STATE(1574), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(1575), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(1576), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(1577), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(1578), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(1579), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(1580), - [aux_sym__list_lower_roman_period_repeat1] = STATE(1581), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(1492), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(1556), - [aux_sym__list_upper_roman_period_repeat1] = STATE(1557), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(1558), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(1559), - [aux_sym_table_repeat1] = STATE(1206), - [aux_sym__block_quote_prefix_repeat1] = STATE(1308), - [aux_sym__inline_repeat1] = STATE(229), - [anon_sym_LBRACK] = ACTIONS(623), - [anon_sym_PIPE] = ACTIONS(625), - [anon_sym_LBRACE] = ACTIONS(627), - [sym__whitespace1] = ACTIONS(11), - [anon_sym_BSLASH] = ACTIONS(13), - [sym_quotation_marks] = ACTIONS(15), - [sym_ellipsis] = ACTIONS(15), - [sym_em_dash] = ACTIONS(15), - [sym_en_dash] = ACTIONS(17), - [sym_backslash_escape] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(19), - [anon_sym_LBRACE_] = ACTIONS(21), - [anon_sym__] = ACTIONS(23), - [anon_sym_LBRACE_STAR] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_LBRACE_EQ] = ACTIONS(29), - [anon_sym_LBRACE_PLUS] = ACTIONS(31), - [anon_sym_LBRACE_DASH] = ACTIONS(33), - [sym_symbol] = ACTIONS(15), - [anon_sym_LBRACE_CARET] = ACTIONS(35), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_LBRACE_TILDE] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(37), - [anon_sym_LBRACK_CARET] = ACTIONS(39), - [anon_sym_BANG_LBRACK] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [anon_sym_TODO] = ACTIONS(45), - [anon_sym_WIP] = ACTIONS(45), - [anon_sym_NOTE] = ACTIONS(47), - [anon_sym_INFO] = ACTIONS(47), - [anon_sym_XXX] = ACTIONS(47), - [sym_fixme] = ACTIONS(15), - [aux_sym__text_token1] = ACTIONS(49), - [sym__newline] = ACTIONS(673), - [sym__newline_inline] = ACTIONS(53), - [sym__heading1_begin] = ACTIONS(631), - [sym__heading2_begin] = ACTIONS(633), - [sym__heading3_begin] = ACTIONS(635), - [sym__heading4_begin] = ACTIONS(637), - [sym__heading5_begin] = ACTIONS(639), - [sym__heading6_begin] = ACTIONS(641), - [sym__div_begin] = ACTIONS(69), - [sym__code_block_begin] = ACTIONS(643), - [sym_list_marker_dash] = ACTIONS(73), - [sym_list_marker_star] = ACTIONS(75), - [sym_list_marker_plus] = ACTIONS(77), - [sym__list_marker_task_begin] = ACTIONS(79), - [sym_list_marker_definition] = ACTIONS(81), - [sym_list_marker_decimal_period] = ACTIONS(83), - [sym_list_marker_lower_alpha_period] = ACTIONS(85), - [sym_list_marker_upper_alpha_period] = ACTIONS(87), - [sym_list_marker_lower_roman_period] = ACTIONS(89), - [sym_list_marker_upper_roman_period] = ACTIONS(91), - [sym_list_marker_decimal_paren] = ACTIONS(93), - [sym_list_marker_lower_alpha_paren] = ACTIONS(95), - [sym_list_marker_upper_alpha_paren] = ACTIONS(97), - [sym_list_marker_lower_roman_paren] = ACTIONS(99), - [sym_list_marker_upper_roman_paren] = ACTIONS(101), - [sym_list_marker_decimal_parens] = ACTIONS(103), - [sym_list_marker_lower_alpha_parens] = ACTIONS(105), - [sym_list_marker_upper_alpha_parens] = ACTIONS(107), - [sym_list_marker_lower_roman_parens] = ACTIONS(109), - [sym_list_marker_upper_roman_parens] = ACTIONS(111), - [sym__block_quote_begin] = ACTIONS(645), - [sym__block_quote_continuation] = ACTIONS(115), - [sym__thematic_break_dash] = ACTIONS(647), - [sym__thematic_break_star] = ACTIONS(647), - [sym__footnote_begin] = ACTIONS(649), - [sym__verbatim_begin] = ACTIONS(121), - }, - [48] = { - [sym__block_with_heading] = STATE(1368), - [sym__block_element] = STATE(1368), - [sym__heading] = STATE(1368), - [sym_heading1] = STATE(1368), - [sym_heading2] = STATE(1368), - [sym_heading3] = STATE(1368), - [sym_heading4] = STATE(1368), - [sym_heading5] = STATE(1368), - [sym_heading6] = STATE(1368), - [sym_list] = STATE(1368), - [sym__list_dash] = STATE(1719), - [sym__list_item_dash] = STATE(1312), - [sym__list_plus] = STATE(1719), - [sym__list_item_plus] = STATE(1313), - [sym__list_star] = STATE(1719), - [sym__list_item_star] = STATE(1314), - [sym__list_task] = STATE(1719), - [sym__list_item_task] = STATE(1280), - [sym_list_marker_task] = STATE(49), - [sym__list_definition] = STATE(1719), - [sym__list_item_definition] = STATE(1571), - [sym__list_decimal_period] = STATE(1719), - [sym__list_item_decimal_period] = STATE(1572), - [sym__list_decimal_paren] = STATE(1719), - [sym__list_item_decimal_paren] = STATE(1573), - [sym__list_decimal_parens] = STATE(1719), - [sym__list_item_decimal_parens] = STATE(1574), - [sym__list_lower_alpha_period] = STATE(1719), - [sym__list_item_lower_alpha_period] = STATE(1575), - [sym__list_lower_alpha_paren] = STATE(1719), - [sym__list_item_lower_alpha_paren] = STATE(1576), - [sym__list_lower_alpha_parens] = STATE(1719), - [sym__list_item_lower_alpha_parens] = STATE(1577), - [sym__list_upper_alpha_period] = STATE(1719), - [sym__list_item_upper_alpha_period] = STATE(1578), - [sym__list_upper_alpha_paren] = STATE(1719), - [sym__list_item_upper_alpha_paren] = STATE(1579), - [sym__list_upper_alpha_parens] = STATE(1719), - [sym__list_item_upper_alpha_parens] = STATE(1580), - [sym__list_lower_roman_period] = STATE(1719), - [sym__list_item_lower_roman_period] = STATE(1581), - [sym__list_lower_roman_paren] = STATE(1719), - [sym__list_item_lower_roman_paren] = STATE(1492), - [sym__list_lower_roman_parens] = STATE(1719), - [sym__list_item_lower_roman_parens] = STATE(1556), - [sym__list_upper_roman_period] = STATE(1719), - [sym__list_item_upper_roman_period] = STATE(1557), - [sym__list_upper_roman_paren] = STATE(1719), - [sym__list_item_upper_roman_paren] = STATE(1558), - [sym__list_upper_roman_parens] = STATE(1719), - [sym__list_item_upper_roman_parens] = STATE(1559), - [sym_list_item_content] = STATE(1851), - [sym_table] = STATE(1368), - [sym__table_content] = STATE(1206), - [sym_table_separator] = STATE(1206), - [sym_table_row] = STATE(1269), - [sym_footnote] = STATE(1368), - [sym_div] = STATE(1368), - [sym_div_marker_begin] = STATE(2127), - [sym_code_block] = STATE(1368), - [sym_raw_block] = STATE(1368), - [sym_thematic_break] = STATE(1368), - [sym_block_quote] = STATE(1368), - [sym__block_quote_prefix] = STATE(1388), - [sym_link_reference_definition] = STATE(1368), - [sym_block_attribute] = STATE(1368), - [sym__paragraph] = STATE(1368), - [sym__paragraph_content] = STATE(1923), - [sym__inline] = STATE(2311), - [sym__inline_element_with_whitespace] = STATE(229), - [sym__inline_element_with_newline] = STATE(229), - [sym__inline_core_element] = STATE(229), - [sym__hard_line_break] = STATE(716), - [sym_hard_line_break] = STATE(517), - [sym__smart_punctuation] = STATE(716), - [sym_autolink] = STATE(716), - [sym_emphasis] = STATE(716), - [sym_emphasis_begin] = STATE(283), - [sym_strong] = STATE(716), - [sym_strong_begin] = STATE(282), - [sym_highlighted] = STATE(716), - [sym_insert] = STATE(716), - [sym_delete] = STATE(716), - [sym_superscript] = STATE(716), - [sym_subscript] = STATE(716), - [sym_footnote_reference] = STATE(716), - [sym__image] = STATE(716), - [sym_full_reference_image] = STATE(716), - [sym_collapsed_reference_image] = STATE(716), - [sym_inline_image] = STATE(716), - [sym__image_description] = STATE(1412), - [sym__link] = STATE(716), - [sym_full_reference_link] = STATE(716), - [sym_collapsed_reference_link] = STATE(716), - [sym_inline_link] = STATE(716), - [sym_link_text] = STATE(1413), - [sym__comment_with_spaces] = STATE(716), - [sym_span] = STATE(716), - [sym_raw_inline] = STATE(716), - [sym_math] = STATE(716), - [sym_verbatim] = STATE(716), - [sym__todo_highlights] = STATE(716), - [sym_todo] = STATE(716), - [sym_note] = STATE(716), - [sym__symbol_fallback] = STATE(716), - [aux_sym__text] = STATE(562), - [aux_sym__list_dash_repeat1] = STATE(1312), - [aux_sym__list_plus_repeat1] = STATE(1313), - [aux_sym__list_star_repeat1] = STATE(1314), - [aux_sym__list_task_repeat1] = STATE(1280), - [aux_sym__list_definition_repeat1] = STATE(1571), - [aux_sym__list_decimal_period_repeat1] = STATE(1572), - [aux_sym__list_decimal_paren_repeat1] = STATE(1573), - [aux_sym__list_decimal_parens_repeat1] = STATE(1574), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(1575), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(1576), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(1577), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(1578), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(1579), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(1580), - [aux_sym__list_lower_roman_period_repeat1] = STATE(1581), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(1492), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(1556), - [aux_sym__list_upper_roman_period_repeat1] = STATE(1557), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(1558), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(1559), - [aux_sym_table_repeat1] = STATE(1206), - [aux_sym__block_quote_prefix_repeat1] = STATE(1308), - [aux_sym__inline_repeat1] = STATE(229), - [anon_sym_LBRACK] = ACTIONS(623), - [anon_sym_PIPE] = ACTIONS(625), - [anon_sym_LBRACE] = ACTIONS(627), - [sym__whitespace1] = ACTIONS(11), - [anon_sym_BSLASH] = ACTIONS(13), - [sym_quotation_marks] = ACTIONS(15), - [sym_ellipsis] = ACTIONS(15), - [sym_em_dash] = ACTIONS(15), - [sym_en_dash] = ACTIONS(17), - [sym_backslash_escape] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(19), - [anon_sym_LBRACE_] = ACTIONS(21), - [anon_sym__] = ACTIONS(23), - [anon_sym_LBRACE_STAR] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_LBRACE_EQ] = ACTIONS(29), - [anon_sym_LBRACE_PLUS] = ACTIONS(31), - [anon_sym_LBRACE_DASH] = ACTIONS(33), - [sym_symbol] = ACTIONS(15), - [anon_sym_LBRACE_CARET] = ACTIONS(35), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_LBRACE_TILDE] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(37), - [anon_sym_LBRACK_CARET] = ACTIONS(39), - [anon_sym_BANG_LBRACK] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [anon_sym_TODO] = ACTIONS(45), - [anon_sym_WIP] = ACTIONS(45), - [anon_sym_NOTE] = ACTIONS(47), - [anon_sym_INFO] = ACTIONS(47), - [anon_sym_XXX] = ACTIONS(47), - [sym_fixme] = ACTIONS(15), - [aux_sym__text_token1] = ACTIONS(49), - [sym__newline] = ACTIONS(681), - [sym__newline_inline] = ACTIONS(53), - [sym__heading1_begin] = ACTIONS(631), - [sym__heading2_begin] = ACTIONS(633), - [sym__heading3_begin] = ACTIONS(635), - [sym__heading4_begin] = ACTIONS(637), - [sym__heading5_begin] = ACTIONS(639), - [sym__heading6_begin] = ACTIONS(641), - [sym__div_begin] = ACTIONS(69), - [sym__code_block_begin] = ACTIONS(643), - [sym_list_marker_dash] = ACTIONS(73), - [sym_list_marker_star] = ACTIONS(75), - [sym_list_marker_plus] = ACTIONS(77), - [sym__list_marker_task_begin] = ACTIONS(79), - [sym_list_marker_definition] = ACTIONS(81), - [sym_list_marker_decimal_period] = ACTIONS(83), - [sym_list_marker_lower_alpha_period] = ACTIONS(85), - [sym_list_marker_upper_alpha_period] = ACTIONS(87), - [sym_list_marker_lower_roman_period] = ACTIONS(89), - [sym_list_marker_upper_roman_period] = ACTIONS(91), - [sym_list_marker_decimal_paren] = ACTIONS(93), - [sym_list_marker_lower_alpha_paren] = ACTIONS(95), - [sym_list_marker_upper_alpha_paren] = ACTIONS(97), - [sym_list_marker_lower_roman_paren] = ACTIONS(99), - [sym_list_marker_upper_roman_paren] = ACTIONS(101), - [sym_list_marker_decimal_parens] = ACTIONS(103), - [sym_list_marker_lower_alpha_parens] = ACTIONS(105), - [sym_list_marker_upper_alpha_parens] = ACTIONS(107), - [sym_list_marker_lower_roman_parens] = ACTIONS(109), - [sym_list_marker_upper_roman_parens] = ACTIONS(111), - [sym__block_quote_begin] = ACTIONS(645), - [sym__block_quote_continuation] = ACTIONS(115), - [sym__thematic_break_dash] = ACTIONS(647), - [sym__thematic_break_star] = ACTIONS(647), - [sym__footnote_begin] = ACTIONS(649), - [sym__verbatim_begin] = ACTIONS(121), - }, - [49] = { - [sym__block_with_heading] = STATE(1381), - [sym__block_element] = STATE(1381), - [sym__heading] = STATE(1381), - [sym_heading1] = STATE(1381), - [sym_heading2] = STATE(1381), - [sym_heading3] = STATE(1381), - [sym_heading4] = STATE(1381), - [sym_heading5] = STATE(1381), - [sym_heading6] = STATE(1381), - [sym_list] = STATE(1381), - [sym__list_dash] = STATE(1719), - [sym__list_item_dash] = STATE(1312), - [sym__list_plus] = STATE(1719), - [sym__list_item_plus] = STATE(1313), - [sym__list_star] = STATE(1719), - [sym__list_item_star] = STATE(1314), - [sym__list_task] = STATE(1719), - [sym__list_item_task] = STATE(1280), - [sym_list_marker_task] = STATE(49), - [sym__list_definition] = STATE(1719), - [sym__list_item_definition] = STATE(1571), - [sym__list_decimal_period] = STATE(1719), - [sym__list_item_decimal_period] = STATE(1572), - [sym__list_decimal_paren] = STATE(1719), - [sym__list_item_decimal_paren] = STATE(1573), - [sym__list_decimal_parens] = STATE(1719), - [sym__list_item_decimal_parens] = STATE(1574), - [sym__list_lower_alpha_period] = STATE(1719), - [sym__list_item_lower_alpha_period] = STATE(1575), - [sym__list_lower_alpha_paren] = STATE(1719), - [sym__list_item_lower_alpha_paren] = STATE(1576), - [sym__list_lower_alpha_parens] = STATE(1719), - [sym__list_item_lower_alpha_parens] = STATE(1577), - [sym__list_upper_alpha_period] = STATE(1719), - [sym__list_item_upper_alpha_period] = STATE(1578), - [sym__list_upper_alpha_paren] = STATE(1719), - [sym__list_item_upper_alpha_paren] = STATE(1579), - [sym__list_upper_alpha_parens] = STATE(1719), - [sym__list_item_upper_alpha_parens] = STATE(1580), - [sym__list_lower_roman_period] = STATE(1719), - [sym__list_item_lower_roman_period] = STATE(1581), - [sym__list_lower_roman_paren] = STATE(1719), - [sym__list_item_lower_roman_paren] = STATE(1492), - [sym__list_lower_roman_parens] = STATE(1719), - [sym__list_item_lower_roman_parens] = STATE(1556), - [sym__list_upper_roman_period] = STATE(1719), - [sym__list_item_upper_roman_period] = STATE(1557), - [sym__list_upper_roman_paren] = STATE(1719), - [sym__list_item_upper_roman_paren] = STATE(1558), - [sym__list_upper_roman_parens] = STATE(1719), - [sym__list_item_upper_roman_parens] = STATE(1559), - [sym_list_item_content] = STATE(1674), - [sym_table] = STATE(1381), - [sym__table_content] = STATE(1206), - [sym_table_separator] = STATE(1206), - [sym_table_row] = STATE(1269), - [sym_footnote] = STATE(1381), - [sym_div] = STATE(1381), - [sym_div_marker_begin] = STATE(2127), - [sym_code_block] = STATE(1381), - [sym_raw_block] = STATE(1381), - [sym_thematic_break] = STATE(1381), - [sym_block_quote] = STATE(1381), - [sym__block_quote_prefix] = STATE(1388), - [sym_link_reference_definition] = STATE(1381), - [sym_block_attribute] = STATE(1381), - [sym__paragraph] = STATE(1381), - [sym__paragraph_content] = STATE(1923), - [sym__inline] = STATE(2311), - [sym__inline_element_with_whitespace] = STATE(229), - [sym__inline_element_with_newline] = STATE(229), - [sym__inline_core_element] = STATE(229), - [sym__hard_line_break] = STATE(716), - [sym_hard_line_break] = STATE(517), - [sym__smart_punctuation] = STATE(716), - [sym_autolink] = STATE(716), - [sym_emphasis] = STATE(716), - [sym_emphasis_begin] = STATE(283), - [sym_strong] = STATE(716), - [sym_strong_begin] = STATE(282), - [sym_highlighted] = STATE(716), - [sym_insert] = STATE(716), - [sym_delete] = STATE(716), - [sym_superscript] = STATE(716), - [sym_subscript] = STATE(716), - [sym_footnote_reference] = STATE(716), - [sym__image] = STATE(716), - [sym_full_reference_image] = STATE(716), - [sym_collapsed_reference_image] = STATE(716), - [sym_inline_image] = STATE(716), - [sym__image_description] = STATE(1412), - [sym__link] = STATE(716), - [sym_full_reference_link] = STATE(716), - [sym_collapsed_reference_link] = STATE(716), - [sym_inline_link] = STATE(716), - [sym_link_text] = STATE(1413), - [sym__comment_with_spaces] = STATE(716), - [sym_span] = STATE(716), - [sym_raw_inline] = STATE(716), - [sym_math] = STATE(716), - [sym_verbatim] = STATE(716), - [sym__todo_highlights] = STATE(716), - [sym_todo] = STATE(716), - [sym_note] = STATE(716), - [sym__symbol_fallback] = STATE(716), - [aux_sym__text] = STATE(562), - [aux_sym__list_dash_repeat1] = STATE(1312), - [aux_sym__list_plus_repeat1] = STATE(1313), - [aux_sym__list_star_repeat1] = STATE(1314), - [aux_sym__list_task_repeat1] = STATE(1280), - [aux_sym__list_definition_repeat1] = STATE(1571), - [aux_sym__list_decimal_period_repeat1] = STATE(1572), - [aux_sym__list_decimal_paren_repeat1] = STATE(1573), - [aux_sym__list_decimal_parens_repeat1] = STATE(1574), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(1575), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(1576), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(1577), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(1578), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(1579), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(1580), - [aux_sym__list_lower_roman_period_repeat1] = STATE(1581), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(1492), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(1556), - [aux_sym__list_upper_roman_period_repeat1] = STATE(1557), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(1558), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(1559), - [aux_sym_table_repeat1] = STATE(1206), - [aux_sym__block_quote_prefix_repeat1] = STATE(1308), - [aux_sym__inline_repeat1] = STATE(229), - [anon_sym_LBRACK] = ACTIONS(623), - [anon_sym_PIPE] = ACTIONS(625), - [anon_sym_LBRACE] = ACTIONS(627), - [sym__whitespace1] = ACTIONS(11), - [anon_sym_BSLASH] = ACTIONS(13), - [sym_quotation_marks] = ACTIONS(15), - [sym_ellipsis] = ACTIONS(15), - [sym_em_dash] = ACTIONS(15), - [sym_en_dash] = ACTIONS(17), - [sym_backslash_escape] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(19), - [anon_sym_LBRACE_] = ACTIONS(21), - [anon_sym__] = ACTIONS(23), - [anon_sym_LBRACE_STAR] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_LBRACE_EQ] = ACTIONS(29), - [anon_sym_LBRACE_PLUS] = ACTIONS(31), - [anon_sym_LBRACE_DASH] = ACTIONS(33), - [sym_symbol] = ACTIONS(15), - [anon_sym_LBRACE_CARET] = ACTIONS(35), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_LBRACE_TILDE] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(37), - [anon_sym_LBRACK_CARET] = ACTIONS(39), - [anon_sym_BANG_LBRACK] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [anon_sym_TODO] = ACTIONS(45), - [anon_sym_WIP] = ACTIONS(45), - [anon_sym_NOTE] = ACTIONS(47), - [anon_sym_INFO] = ACTIONS(47), - [anon_sym_XXX] = ACTIONS(47), - [sym_fixme] = ACTIONS(15), - [aux_sym__text_token1] = ACTIONS(49), - [sym__newline] = ACTIONS(669), - [sym__newline_inline] = ACTIONS(53), - [sym__heading1_begin] = ACTIONS(631), - [sym__heading2_begin] = ACTIONS(633), - [sym__heading3_begin] = ACTIONS(635), - [sym__heading4_begin] = ACTIONS(637), - [sym__heading5_begin] = ACTIONS(639), - [sym__heading6_begin] = ACTIONS(641), - [sym__div_begin] = ACTIONS(69), - [sym__code_block_begin] = ACTIONS(643), - [sym_list_marker_dash] = ACTIONS(73), - [sym_list_marker_star] = ACTIONS(75), - [sym_list_marker_plus] = ACTIONS(77), - [sym__list_marker_task_begin] = ACTIONS(79), - [sym_list_marker_definition] = ACTIONS(81), - [sym_list_marker_decimal_period] = ACTIONS(83), - [sym_list_marker_lower_alpha_period] = ACTIONS(85), - [sym_list_marker_upper_alpha_period] = ACTIONS(87), - [sym_list_marker_lower_roman_period] = ACTIONS(89), - [sym_list_marker_upper_roman_period] = ACTIONS(91), - [sym_list_marker_decimal_paren] = ACTIONS(93), - [sym_list_marker_lower_alpha_paren] = ACTIONS(95), - [sym_list_marker_upper_alpha_paren] = ACTIONS(97), - [sym_list_marker_lower_roman_paren] = ACTIONS(99), - [sym_list_marker_upper_roman_paren] = ACTIONS(101), - [sym_list_marker_decimal_parens] = ACTIONS(103), - [sym_list_marker_lower_alpha_parens] = ACTIONS(105), - [sym_list_marker_upper_alpha_parens] = ACTIONS(107), - [sym_list_marker_lower_roman_parens] = ACTIONS(109), - [sym_list_marker_upper_roman_parens] = ACTIONS(111), - [sym__block_quote_begin] = ACTIONS(645), - [sym__block_quote_continuation] = ACTIONS(115), - [sym__thematic_break_dash] = ACTIONS(647), - [sym__thematic_break_star] = ACTIONS(647), - [sym__footnote_begin] = ACTIONS(649), - [sym__verbatim_begin] = ACTIONS(121), - }, - [50] = { - [sym__block_with_heading] = STATE(1356), - [sym__block_element] = STATE(1356), - [sym__heading] = STATE(1356), - [sym_heading1] = STATE(1356), - [sym_heading2] = STATE(1356), - [sym_heading3] = STATE(1356), - [sym_heading4] = STATE(1356), - [sym_heading5] = STATE(1356), - [sym_heading6] = STATE(1356), - [sym_list] = STATE(1356), - [sym__list_dash] = STATE(1719), - [sym__list_item_dash] = STATE(1312), - [sym__list_plus] = STATE(1719), - [sym__list_item_plus] = STATE(1313), - [sym__list_star] = STATE(1719), - [sym__list_item_star] = STATE(1314), - [sym__list_task] = STATE(1719), - [sym__list_item_task] = STATE(1280), - [sym_list_marker_task] = STATE(49), - [sym__list_definition] = STATE(1719), - [sym__list_item_definition] = STATE(1571), - [sym__list_decimal_period] = STATE(1719), - [sym__list_item_decimal_period] = STATE(1572), - [sym__list_decimal_paren] = STATE(1719), - [sym__list_item_decimal_paren] = STATE(1573), - [sym__list_decimal_parens] = STATE(1719), - [sym__list_item_decimal_parens] = STATE(1574), - [sym__list_lower_alpha_period] = STATE(1719), - [sym__list_item_lower_alpha_period] = STATE(1575), - [sym__list_lower_alpha_paren] = STATE(1719), - [sym__list_item_lower_alpha_paren] = STATE(1576), - [sym__list_lower_alpha_parens] = STATE(1719), - [sym__list_item_lower_alpha_parens] = STATE(1577), - [sym__list_upper_alpha_period] = STATE(1719), - [sym__list_item_upper_alpha_period] = STATE(1578), - [sym__list_upper_alpha_paren] = STATE(1719), - [sym__list_item_upper_alpha_paren] = STATE(1579), - [sym__list_upper_alpha_parens] = STATE(1719), - [sym__list_item_upper_alpha_parens] = STATE(1580), - [sym__list_lower_roman_period] = STATE(1719), - [sym__list_item_lower_roman_period] = STATE(1581), - [sym__list_lower_roman_paren] = STATE(1719), - [sym__list_item_lower_roman_paren] = STATE(1492), - [sym__list_lower_roman_parens] = STATE(1719), - [sym__list_item_lower_roman_parens] = STATE(1556), - [sym__list_upper_roman_period] = STATE(1719), - [sym__list_item_upper_roman_period] = STATE(1557), - [sym__list_upper_roman_paren] = STATE(1719), - [sym__list_item_upper_roman_paren] = STATE(1558), - [sym__list_upper_roman_parens] = STATE(1719), - [sym__list_item_upper_roman_parens] = STATE(1559), - [sym_list_item_content] = STATE(1842), - [sym_table] = STATE(1356), - [sym__table_content] = STATE(1206), - [sym_table_separator] = STATE(1206), - [sym_table_row] = STATE(1269), - [sym_footnote] = STATE(1356), - [sym_div] = STATE(1356), - [sym_div_marker_begin] = STATE(2127), - [sym_code_block] = STATE(1356), - [sym_raw_block] = STATE(1356), - [sym_thematic_break] = STATE(1356), - [sym_block_quote] = STATE(1356), - [sym__block_quote_prefix] = STATE(1388), - [sym_link_reference_definition] = STATE(1356), - [sym_block_attribute] = STATE(1356), - [sym__paragraph] = STATE(1356), - [sym__paragraph_content] = STATE(1923), - [sym__inline] = STATE(2311), - [sym__inline_element_with_whitespace] = STATE(229), - [sym__inline_element_with_newline] = STATE(229), - [sym__inline_core_element] = STATE(229), - [sym__hard_line_break] = STATE(716), - [sym_hard_line_break] = STATE(517), - [sym__smart_punctuation] = STATE(716), - [sym_autolink] = STATE(716), - [sym_emphasis] = STATE(716), - [sym_emphasis_begin] = STATE(283), - [sym_strong] = STATE(716), - [sym_strong_begin] = STATE(282), - [sym_highlighted] = STATE(716), - [sym_insert] = STATE(716), - [sym_delete] = STATE(716), - [sym_superscript] = STATE(716), - [sym_subscript] = STATE(716), - [sym_footnote_reference] = STATE(716), - [sym__image] = STATE(716), - [sym_full_reference_image] = STATE(716), - [sym_collapsed_reference_image] = STATE(716), - [sym_inline_image] = STATE(716), - [sym__image_description] = STATE(1412), - [sym__link] = STATE(716), - [sym_full_reference_link] = STATE(716), - [sym_collapsed_reference_link] = STATE(716), - [sym_inline_link] = STATE(716), - [sym_link_text] = STATE(1413), - [sym__comment_with_spaces] = STATE(716), - [sym_span] = STATE(716), - [sym_raw_inline] = STATE(716), - [sym_math] = STATE(716), - [sym_verbatim] = STATE(716), - [sym__todo_highlights] = STATE(716), - [sym_todo] = STATE(716), - [sym_note] = STATE(716), - [sym__symbol_fallback] = STATE(716), - [aux_sym__text] = STATE(562), - [aux_sym__list_dash_repeat1] = STATE(1312), - [aux_sym__list_plus_repeat1] = STATE(1313), - [aux_sym__list_star_repeat1] = STATE(1314), - [aux_sym__list_task_repeat1] = STATE(1280), - [aux_sym__list_definition_repeat1] = STATE(1571), - [aux_sym__list_decimal_period_repeat1] = STATE(1572), - [aux_sym__list_decimal_paren_repeat1] = STATE(1573), - [aux_sym__list_decimal_parens_repeat1] = STATE(1574), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(1575), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(1576), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(1577), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(1578), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(1579), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(1580), - [aux_sym__list_lower_roman_period_repeat1] = STATE(1581), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(1492), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(1556), - [aux_sym__list_upper_roman_period_repeat1] = STATE(1557), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(1558), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(1559), - [aux_sym_table_repeat1] = STATE(1206), - [aux_sym__block_quote_prefix_repeat1] = STATE(1308), - [aux_sym__inline_repeat1] = STATE(229), - [anon_sym_LBRACK] = ACTIONS(623), - [anon_sym_PIPE] = ACTIONS(625), - [anon_sym_LBRACE] = ACTIONS(627), - [sym__whitespace1] = ACTIONS(11), - [anon_sym_BSLASH] = ACTIONS(13), - [sym_quotation_marks] = ACTIONS(15), - [sym_ellipsis] = ACTIONS(15), - [sym_em_dash] = ACTIONS(15), - [sym_en_dash] = ACTIONS(17), - [sym_backslash_escape] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(19), - [anon_sym_LBRACE_] = ACTIONS(21), - [anon_sym__] = ACTIONS(23), - [anon_sym_LBRACE_STAR] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_LBRACE_EQ] = ACTIONS(29), - [anon_sym_LBRACE_PLUS] = ACTIONS(31), - [anon_sym_LBRACE_DASH] = ACTIONS(33), - [sym_symbol] = ACTIONS(15), - [anon_sym_LBRACE_CARET] = ACTIONS(35), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_LBRACE_TILDE] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(37), - [anon_sym_LBRACK_CARET] = ACTIONS(39), - [anon_sym_BANG_LBRACK] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [anon_sym_TODO] = ACTIONS(45), - [anon_sym_WIP] = ACTIONS(45), - [anon_sym_NOTE] = ACTIONS(47), - [anon_sym_INFO] = ACTIONS(47), - [anon_sym_XXX] = ACTIONS(47), - [sym_fixme] = ACTIONS(15), - [aux_sym__text_token1] = ACTIONS(49), - [sym__newline] = ACTIONS(683), - [sym__newline_inline] = ACTIONS(53), - [sym__heading1_begin] = ACTIONS(631), - [sym__heading2_begin] = ACTIONS(633), - [sym__heading3_begin] = ACTIONS(635), - [sym__heading4_begin] = ACTIONS(637), - [sym__heading5_begin] = ACTIONS(639), - [sym__heading6_begin] = ACTIONS(641), - [sym__div_begin] = ACTIONS(69), - [sym__code_block_begin] = ACTIONS(643), - [sym_list_marker_dash] = ACTIONS(73), - [sym_list_marker_star] = ACTIONS(75), - [sym_list_marker_plus] = ACTIONS(77), - [sym__list_marker_task_begin] = ACTIONS(79), - [sym_list_marker_definition] = ACTIONS(81), - [sym_list_marker_decimal_period] = ACTIONS(83), - [sym_list_marker_lower_alpha_period] = ACTIONS(85), - [sym_list_marker_upper_alpha_period] = ACTIONS(87), - [sym_list_marker_lower_roman_period] = ACTIONS(89), - [sym_list_marker_upper_roman_period] = ACTIONS(91), - [sym_list_marker_decimal_paren] = ACTIONS(93), - [sym_list_marker_lower_alpha_paren] = ACTIONS(95), - [sym_list_marker_upper_alpha_paren] = ACTIONS(97), - [sym_list_marker_lower_roman_paren] = ACTIONS(99), - [sym_list_marker_upper_roman_paren] = ACTIONS(101), - [sym_list_marker_decimal_parens] = ACTIONS(103), - [sym_list_marker_lower_alpha_parens] = ACTIONS(105), - [sym_list_marker_upper_alpha_parens] = ACTIONS(107), - [sym_list_marker_lower_roman_parens] = ACTIONS(109), - [sym_list_marker_upper_roman_parens] = ACTIONS(111), - [sym__block_quote_begin] = ACTIONS(645), - [sym__block_quote_continuation] = ACTIONS(115), - [sym__thematic_break_dash] = ACTIONS(647), - [sym__thematic_break_star] = ACTIONS(647), - [sym__footnote_begin] = ACTIONS(649), - [sym__verbatim_begin] = ACTIONS(121), - }, - [51] = { - [sym__block_with_heading] = STATE(1341), - [sym__block_element] = STATE(1341), - [sym__heading] = STATE(1341), - [sym_heading1] = STATE(1341), - [sym_heading2] = STATE(1341), - [sym_heading3] = STATE(1341), - [sym_heading4] = STATE(1341), - [sym_heading5] = STATE(1341), - [sym_heading6] = STATE(1341), - [sym_list] = STATE(1341), - [sym__list_dash] = STATE(1719), - [sym__list_item_dash] = STATE(1312), - [sym__list_plus] = STATE(1719), - [sym__list_item_plus] = STATE(1313), - [sym__list_star] = STATE(1719), - [sym__list_item_star] = STATE(1314), - [sym__list_task] = STATE(1719), - [sym__list_item_task] = STATE(1280), - [sym_list_marker_task] = STATE(49), - [sym__list_definition] = STATE(1719), - [sym__list_item_definition] = STATE(1571), - [sym__list_decimal_period] = STATE(1719), - [sym__list_item_decimal_period] = STATE(1572), - [sym__list_decimal_paren] = STATE(1719), - [sym__list_item_decimal_paren] = STATE(1573), - [sym__list_decimal_parens] = STATE(1719), - [sym__list_item_decimal_parens] = STATE(1574), - [sym__list_lower_alpha_period] = STATE(1719), - [sym__list_item_lower_alpha_period] = STATE(1575), - [sym__list_lower_alpha_paren] = STATE(1719), - [sym__list_item_lower_alpha_paren] = STATE(1576), - [sym__list_lower_alpha_parens] = STATE(1719), - [sym__list_item_lower_alpha_parens] = STATE(1577), - [sym__list_upper_alpha_period] = STATE(1719), - [sym__list_item_upper_alpha_period] = STATE(1578), - [sym__list_upper_alpha_paren] = STATE(1719), - [sym__list_item_upper_alpha_paren] = STATE(1579), - [sym__list_upper_alpha_parens] = STATE(1719), - [sym__list_item_upper_alpha_parens] = STATE(1580), - [sym__list_lower_roman_period] = STATE(1719), - [sym__list_item_lower_roman_period] = STATE(1581), - [sym__list_lower_roman_paren] = STATE(1719), - [sym__list_item_lower_roman_paren] = STATE(1492), - [sym__list_lower_roman_parens] = STATE(1719), - [sym__list_item_lower_roman_parens] = STATE(1556), - [sym__list_upper_roman_period] = STATE(1719), - [sym__list_item_upper_roman_period] = STATE(1557), - [sym__list_upper_roman_paren] = STATE(1719), - [sym__list_item_upper_roman_paren] = STATE(1558), - [sym__list_upper_roman_parens] = STATE(1719), - [sym__list_item_upper_roman_parens] = STATE(1559), - [sym_list_item_content] = STATE(1848), - [sym_table] = STATE(1341), - [sym__table_content] = STATE(1206), - [sym_table_separator] = STATE(1206), - [sym_table_row] = STATE(1269), - [sym_footnote] = STATE(1341), - [sym_div] = STATE(1341), - [sym_div_marker_begin] = STATE(2127), - [sym_code_block] = STATE(1341), - [sym_raw_block] = STATE(1341), - [sym_thematic_break] = STATE(1341), - [sym_block_quote] = STATE(1341), - [sym__block_quote_prefix] = STATE(1388), - [sym_link_reference_definition] = STATE(1341), - [sym_block_attribute] = STATE(1341), - [sym__paragraph] = STATE(1341), - [sym__paragraph_content] = STATE(1923), - [sym__inline] = STATE(2311), - [sym__inline_element_with_whitespace] = STATE(229), - [sym__inline_element_with_newline] = STATE(229), - [sym__inline_core_element] = STATE(229), - [sym__hard_line_break] = STATE(716), - [sym_hard_line_break] = STATE(517), - [sym__smart_punctuation] = STATE(716), - [sym_autolink] = STATE(716), - [sym_emphasis] = STATE(716), - [sym_emphasis_begin] = STATE(283), - [sym_strong] = STATE(716), - [sym_strong_begin] = STATE(282), - [sym_highlighted] = STATE(716), - [sym_insert] = STATE(716), - [sym_delete] = STATE(716), - [sym_superscript] = STATE(716), - [sym_subscript] = STATE(716), - [sym_footnote_reference] = STATE(716), - [sym__image] = STATE(716), - [sym_full_reference_image] = STATE(716), - [sym_collapsed_reference_image] = STATE(716), - [sym_inline_image] = STATE(716), - [sym__image_description] = STATE(1412), - [sym__link] = STATE(716), - [sym_full_reference_link] = STATE(716), - [sym_collapsed_reference_link] = STATE(716), - [sym_inline_link] = STATE(716), - [sym_link_text] = STATE(1413), - [sym__comment_with_spaces] = STATE(716), - [sym_span] = STATE(716), - [sym_raw_inline] = STATE(716), - [sym_math] = STATE(716), - [sym_verbatim] = STATE(716), - [sym__todo_highlights] = STATE(716), - [sym_todo] = STATE(716), - [sym_note] = STATE(716), - [sym__symbol_fallback] = STATE(716), - [aux_sym__text] = STATE(562), - [aux_sym__list_dash_repeat1] = STATE(1312), - [aux_sym__list_plus_repeat1] = STATE(1313), - [aux_sym__list_star_repeat1] = STATE(1314), - [aux_sym__list_task_repeat1] = STATE(1280), - [aux_sym__list_definition_repeat1] = STATE(1571), - [aux_sym__list_decimal_period_repeat1] = STATE(1572), - [aux_sym__list_decimal_paren_repeat1] = STATE(1573), - [aux_sym__list_decimal_parens_repeat1] = STATE(1574), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(1575), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(1576), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(1577), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(1578), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(1579), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(1580), - [aux_sym__list_lower_roman_period_repeat1] = STATE(1581), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(1492), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(1556), - [aux_sym__list_upper_roman_period_repeat1] = STATE(1557), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(1558), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(1559), - [aux_sym_table_repeat1] = STATE(1206), - [aux_sym__block_quote_prefix_repeat1] = STATE(1308), - [aux_sym__inline_repeat1] = STATE(229), - [anon_sym_LBRACK] = ACTIONS(623), - [anon_sym_PIPE] = ACTIONS(625), - [anon_sym_LBRACE] = ACTIONS(627), - [sym__whitespace1] = ACTIONS(11), - [anon_sym_BSLASH] = ACTIONS(13), - [sym_quotation_marks] = ACTIONS(15), - [sym_ellipsis] = ACTIONS(15), - [sym_em_dash] = ACTIONS(15), - [sym_en_dash] = ACTIONS(17), - [sym_backslash_escape] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(19), - [anon_sym_LBRACE_] = ACTIONS(21), - [anon_sym__] = ACTIONS(23), - [anon_sym_LBRACE_STAR] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_LBRACE_EQ] = ACTIONS(29), - [anon_sym_LBRACE_PLUS] = ACTIONS(31), - [anon_sym_LBRACE_DASH] = ACTIONS(33), - [sym_symbol] = ACTIONS(15), - [anon_sym_LBRACE_CARET] = ACTIONS(35), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_LBRACE_TILDE] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(37), - [anon_sym_LBRACK_CARET] = ACTIONS(39), - [anon_sym_BANG_LBRACK] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [anon_sym_TODO] = ACTIONS(45), - [anon_sym_WIP] = ACTIONS(45), - [anon_sym_NOTE] = ACTIONS(47), - [anon_sym_INFO] = ACTIONS(47), - [anon_sym_XXX] = ACTIONS(47), - [sym_fixme] = ACTIONS(15), - [aux_sym__text_token1] = ACTIONS(49), - [sym__newline] = ACTIONS(685), - [sym__newline_inline] = ACTIONS(53), - [sym__heading1_begin] = ACTIONS(631), - [sym__heading2_begin] = ACTIONS(633), - [sym__heading3_begin] = ACTIONS(635), - [sym__heading4_begin] = ACTIONS(637), - [sym__heading5_begin] = ACTIONS(639), - [sym__heading6_begin] = ACTIONS(641), - [sym__div_begin] = ACTIONS(69), - [sym__code_block_begin] = ACTIONS(643), - [sym_list_marker_dash] = ACTIONS(73), - [sym_list_marker_star] = ACTIONS(75), - [sym_list_marker_plus] = ACTIONS(77), - [sym__list_marker_task_begin] = ACTIONS(79), - [sym_list_marker_definition] = ACTIONS(81), - [sym_list_marker_decimal_period] = ACTIONS(83), - [sym_list_marker_lower_alpha_period] = ACTIONS(85), - [sym_list_marker_upper_alpha_period] = ACTIONS(87), - [sym_list_marker_lower_roman_period] = ACTIONS(89), - [sym_list_marker_upper_roman_period] = ACTIONS(91), - [sym_list_marker_decimal_paren] = ACTIONS(93), - [sym_list_marker_lower_alpha_paren] = ACTIONS(95), - [sym_list_marker_upper_alpha_paren] = ACTIONS(97), - [sym_list_marker_lower_roman_paren] = ACTIONS(99), - [sym_list_marker_upper_roman_paren] = ACTIONS(101), - [sym_list_marker_decimal_parens] = ACTIONS(103), - [sym_list_marker_lower_alpha_parens] = ACTIONS(105), - [sym_list_marker_upper_alpha_parens] = ACTIONS(107), - [sym_list_marker_lower_roman_parens] = ACTIONS(109), - [sym_list_marker_upper_roman_parens] = ACTIONS(111), - [sym__block_quote_begin] = ACTIONS(645), - [sym__block_quote_continuation] = ACTIONS(115), - [sym__thematic_break_dash] = ACTIONS(647), - [sym__thematic_break_star] = ACTIONS(647), - [sym__footnote_begin] = ACTIONS(649), - [sym__verbatim_begin] = ACTIONS(121), - }, - [52] = { - [sym__block_with_heading] = STATE(1598), - [sym__block_element] = STATE(1598), - [sym__heading] = STATE(1598), - [sym_heading1] = STATE(1598), - [sym_heading2] = STATE(1598), - [sym_heading3] = STATE(1598), - [sym_heading4] = STATE(1598), - [sym_heading5] = STATE(1598), - [sym_heading6] = STATE(1598), - [sym_list] = STATE(1598), - [sym__list_dash] = STATE(1719), - [sym__list_item_dash] = STATE(1312), - [sym__list_plus] = STATE(1719), - [sym__list_item_plus] = STATE(1313), - [sym__list_star] = STATE(1719), - [sym__list_item_star] = STATE(1314), - [sym__list_task] = STATE(1719), - [sym__list_item_task] = STATE(1280), - [sym_list_marker_task] = STATE(49), - [sym__list_definition] = STATE(1719), - [sym__list_item_definition] = STATE(1571), - [sym__list_decimal_period] = STATE(1719), - [sym__list_item_decimal_period] = STATE(1572), - [sym__list_decimal_paren] = STATE(1719), - [sym__list_item_decimal_paren] = STATE(1573), - [sym__list_decimal_parens] = STATE(1719), - [sym__list_item_decimal_parens] = STATE(1574), - [sym__list_lower_alpha_period] = STATE(1719), - [sym__list_item_lower_alpha_period] = STATE(1575), - [sym__list_lower_alpha_paren] = STATE(1719), - [sym__list_item_lower_alpha_paren] = STATE(1576), - [sym__list_lower_alpha_parens] = STATE(1719), - [sym__list_item_lower_alpha_parens] = STATE(1577), - [sym__list_upper_alpha_period] = STATE(1719), - [sym__list_item_upper_alpha_period] = STATE(1578), - [sym__list_upper_alpha_paren] = STATE(1719), - [sym__list_item_upper_alpha_paren] = STATE(1579), - [sym__list_upper_alpha_parens] = STATE(1719), - [sym__list_item_upper_alpha_parens] = STATE(1580), - [sym__list_lower_roman_period] = STATE(1719), - [sym__list_item_lower_roman_period] = STATE(1581), - [sym__list_lower_roman_paren] = STATE(1719), - [sym__list_item_lower_roman_paren] = STATE(1492), - [sym__list_lower_roman_parens] = STATE(1719), - [sym__list_item_lower_roman_parens] = STATE(1556), - [sym__list_upper_roman_period] = STATE(1719), - [sym__list_item_upper_roman_period] = STATE(1557), - [sym__list_upper_roman_paren] = STATE(1719), - [sym__list_item_upper_roman_paren] = STATE(1558), - [sym__list_upper_roman_parens] = STATE(1719), - [sym__list_item_upper_roman_parens] = STATE(1559), - [sym_table] = STATE(1598), - [sym__table_content] = STATE(1206), - [sym_table_separator] = STATE(1206), - [sym_table_row] = STATE(1269), - [sym_footnote] = STATE(1598), - [sym_div] = STATE(1598), - [sym_div_marker_begin] = STATE(2127), - [sym_code_block] = STATE(1598), - [sym_raw_block] = STATE(1598), - [sym_thematic_break] = STATE(1598), - [sym_block_quote] = STATE(1598), - [sym__block_quote_prefix] = STATE(1388), - [sym_link_reference_definition] = STATE(1598), - [sym_block_attribute] = STATE(1598), - [sym__paragraph] = STATE(1598), - [sym__paragraph_content] = STATE(1923), - [sym__inline] = STATE(2311), - [sym__inline_element_with_whitespace] = STATE(229), - [sym__inline_element_with_newline] = STATE(229), - [sym__inline_core_element] = STATE(229), - [sym__hard_line_break] = STATE(716), - [sym_hard_line_break] = STATE(517), - [sym__smart_punctuation] = STATE(716), - [sym_autolink] = STATE(716), - [sym_emphasis] = STATE(716), - [sym_emphasis_begin] = STATE(283), - [sym_strong] = STATE(716), - [sym_strong_begin] = STATE(282), - [sym_highlighted] = STATE(716), - [sym_insert] = STATE(716), - [sym_delete] = STATE(716), - [sym_superscript] = STATE(716), - [sym_subscript] = STATE(716), - [sym_footnote_reference] = STATE(716), - [sym__image] = STATE(716), - [sym_full_reference_image] = STATE(716), - [sym_collapsed_reference_image] = STATE(716), - [sym_inline_image] = STATE(716), - [sym__image_description] = STATE(1412), - [sym__link] = STATE(716), - [sym_full_reference_link] = STATE(716), - [sym_collapsed_reference_link] = STATE(716), - [sym_inline_link] = STATE(716), - [sym_link_text] = STATE(1413), - [sym__comment_with_spaces] = STATE(716), - [sym_span] = STATE(716), - [sym_raw_inline] = STATE(716), - [sym_math] = STATE(716), - [sym_verbatim] = STATE(716), - [sym__todo_highlights] = STATE(716), - [sym_todo] = STATE(716), - [sym_note] = STATE(716), - [sym__symbol_fallback] = STATE(716), - [aux_sym__text] = STATE(562), - [aux_sym__list_dash_repeat1] = STATE(1312), - [aux_sym__list_plus_repeat1] = STATE(1313), - [aux_sym__list_star_repeat1] = STATE(1314), - [aux_sym__list_task_repeat1] = STATE(1280), - [aux_sym__list_definition_repeat1] = STATE(1571), - [aux_sym__list_decimal_period_repeat1] = STATE(1572), - [aux_sym__list_decimal_paren_repeat1] = STATE(1573), - [aux_sym__list_decimal_parens_repeat1] = STATE(1574), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(1575), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(1576), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(1577), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(1578), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(1579), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(1580), - [aux_sym__list_lower_roman_period_repeat1] = STATE(1581), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(1492), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(1556), - [aux_sym__list_upper_roman_period_repeat1] = STATE(1557), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(1558), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(1559), - [aux_sym_table_repeat1] = STATE(1206), - [aux_sym__block_quote_prefix_repeat1] = STATE(1308), - [aux_sym__inline_repeat1] = STATE(229), - [anon_sym_LBRACK] = ACTIONS(623), - [anon_sym_PIPE] = ACTIONS(625), - [anon_sym_LBRACE] = ACTIONS(627), - [sym__whitespace1] = ACTIONS(11), - [anon_sym_BSLASH] = ACTIONS(13), - [sym_quotation_marks] = ACTIONS(15), - [sym_ellipsis] = ACTIONS(15), - [sym_em_dash] = ACTIONS(15), - [sym_en_dash] = ACTIONS(17), - [sym_backslash_escape] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(19), - [anon_sym_LBRACE_] = ACTIONS(21), - [anon_sym__] = ACTIONS(23), - [anon_sym_LBRACE_STAR] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_LBRACE_EQ] = ACTIONS(29), - [anon_sym_LBRACE_PLUS] = ACTIONS(31), - [anon_sym_LBRACE_DASH] = ACTIONS(33), - [sym_symbol] = ACTIONS(15), - [anon_sym_LBRACE_CARET] = ACTIONS(35), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_LBRACE_TILDE] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(37), - [anon_sym_LBRACK_CARET] = ACTIONS(39), - [anon_sym_BANG_LBRACK] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [anon_sym_TODO] = ACTIONS(45), - [anon_sym_WIP] = ACTIONS(45), - [anon_sym_NOTE] = ACTIONS(47), - [anon_sym_INFO] = ACTIONS(47), - [anon_sym_XXX] = ACTIONS(47), - [sym_fixme] = ACTIONS(15), - [aux_sym__text_token1] = ACTIONS(49), - [sym__newline] = ACTIONS(687), - [sym__newline_inline] = ACTIONS(53), - [sym__heading1_begin] = ACTIONS(631), - [sym__heading2_begin] = ACTIONS(633), - [sym__heading3_begin] = ACTIONS(635), - [sym__heading4_begin] = ACTIONS(637), - [sym__heading5_begin] = ACTIONS(639), - [sym__heading6_begin] = ACTIONS(641), - [sym__div_begin] = ACTIONS(69), - [sym__code_block_begin] = ACTIONS(643), - [sym_list_marker_dash] = ACTIONS(73), - [sym_list_marker_star] = ACTIONS(75), - [sym_list_marker_plus] = ACTIONS(77), - [sym__list_marker_task_begin] = ACTIONS(79), - [sym_list_marker_definition] = ACTIONS(81), - [sym_list_marker_decimal_period] = ACTIONS(83), - [sym_list_marker_lower_alpha_period] = ACTIONS(85), - [sym_list_marker_upper_alpha_period] = ACTIONS(87), - [sym_list_marker_lower_roman_period] = ACTIONS(89), - [sym_list_marker_upper_roman_period] = ACTIONS(91), - [sym_list_marker_decimal_paren] = ACTIONS(93), - [sym_list_marker_lower_alpha_paren] = ACTIONS(95), - [sym_list_marker_upper_alpha_paren] = ACTIONS(97), - [sym_list_marker_lower_roman_paren] = ACTIONS(99), - [sym_list_marker_upper_roman_paren] = ACTIONS(101), - [sym_list_marker_decimal_parens] = ACTIONS(103), - [sym_list_marker_lower_alpha_parens] = ACTIONS(105), - [sym_list_marker_upper_alpha_parens] = ACTIONS(107), - [sym_list_marker_lower_roman_parens] = ACTIONS(109), - [sym_list_marker_upper_roman_parens] = ACTIONS(111), - [sym__block_quote_begin] = ACTIONS(645), - [sym__block_quote_continuation] = ACTIONS(115), - [sym__thematic_break_dash] = ACTIONS(647), - [sym__thematic_break_star] = ACTIONS(647), - [sym__footnote_begin] = ACTIONS(649), - [sym__verbatim_begin] = ACTIONS(121), - }, - [53] = { - [sym__block_with_heading] = STATE(1644), - [sym__block_element] = STATE(1644), - [sym__heading] = STATE(1644), - [sym_heading1] = STATE(1644), - [sym_heading2] = STATE(1644), - [sym_heading3] = STATE(1644), - [sym_heading4] = STATE(1644), - [sym_heading5] = STATE(1644), - [sym_heading6] = STATE(1644), - [sym_list] = STATE(1644), - [sym__list_dash] = STATE(1719), - [sym__list_item_dash] = STATE(1312), - [sym__list_plus] = STATE(1719), - [sym__list_item_plus] = STATE(1313), - [sym__list_star] = STATE(1719), - [sym__list_item_star] = STATE(1314), - [sym__list_task] = STATE(1719), - [sym__list_item_task] = STATE(1280), - [sym_list_marker_task] = STATE(49), - [sym__list_definition] = STATE(1719), - [sym__list_item_definition] = STATE(1571), - [sym__list_decimal_period] = STATE(1719), - [sym__list_item_decimal_period] = STATE(1572), - [sym__list_decimal_paren] = STATE(1719), - [sym__list_item_decimal_paren] = STATE(1573), - [sym__list_decimal_parens] = STATE(1719), - [sym__list_item_decimal_parens] = STATE(1574), - [sym__list_lower_alpha_period] = STATE(1719), - [sym__list_item_lower_alpha_period] = STATE(1575), - [sym__list_lower_alpha_paren] = STATE(1719), - [sym__list_item_lower_alpha_paren] = STATE(1576), - [sym__list_lower_alpha_parens] = STATE(1719), - [sym__list_item_lower_alpha_parens] = STATE(1577), - [sym__list_upper_alpha_period] = STATE(1719), - [sym__list_item_upper_alpha_period] = STATE(1578), - [sym__list_upper_alpha_paren] = STATE(1719), - [sym__list_item_upper_alpha_paren] = STATE(1579), - [sym__list_upper_alpha_parens] = STATE(1719), - [sym__list_item_upper_alpha_parens] = STATE(1580), - [sym__list_lower_roman_period] = STATE(1719), - [sym__list_item_lower_roman_period] = STATE(1581), - [sym__list_lower_roman_paren] = STATE(1719), - [sym__list_item_lower_roman_paren] = STATE(1492), - [sym__list_lower_roman_parens] = STATE(1719), - [sym__list_item_lower_roman_parens] = STATE(1556), - [sym__list_upper_roman_period] = STATE(1719), - [sym__list_item_upper_roman_period] = STATE(1557), - [sym__list_upper_roman_paren] = STATE(1719), - [sym__list_item_upper_roman_paren] = STATE(1558), - [sym__list_upper_roman_parens] = STATE(1719), - [sym__list_item_upper_roman_parens] = STATE(1559), - [sym_table] = STATE(1644), - [sym__table_content] = STATE(1206), - [sym_table_separator] = STATE(1206), - [sym_table_row] = STATE(1269), - [sym_footnote] = STATE(1644), - [sym_div] = STATE(1644), - [sym_div_marker_begin] = STATE(2127), - [sym_code_block] = STATE(1644), - [sym_raw_block] = STATE(1644), - [sym_thematic_break] = STATE(1644), - [sym_block_quote] = STATE(1644), - [sym__block_quote_prefix] = STATE(1388), - [sym_link_reference_definition] = STATE(1644), - [sym_block_attribute] = STATE(1644), - [sym__paragraph] = STATE(1644), - [sym__paragraph_content] = STATE(1923), - [sym__inline] = STATE(2311), - [sym__inline_element_with_whitespace] = STATE(229), - [sym__inline_element_with_newline] = STATE(229), - [sym__inline_core_element] = STATE(229), - [sym__hard_line_break] = STATE(716), - [sym_hard_line_break] = STATE(517), - [sym__smart_punctuation] = STATE(716), - [sym_autolink] = STATE(716), - [sym_emphasis] = STATE(716), - [sym_emphasis_begin] = STATE(283), - [sym_strong] = STATE(716), - [sym_strong_begin] = STATE(282), - [sym_highlighted] = STATE(716), - [sym_insert] = STATE(716), - [sym_delete] = STATE(716), - [sym_superscript] = STATE(716), - [sym_subscript] = STATE(716), - [sym_footnote_reference] = STATE(716), - [sym__image] = STATE(716), - [sym_full_reference_image] = STATE(716), - [sym_collapsed_reference_image] = STATE(716), - [sym_inline_image] = STATE(716), - [sym__image_description] = STATE(1412), - [sym__link] = STATE(716), - [sym_full_reference_link] = STATE(716), - [sym_collapsed_reference_link] = STATE(716), - [sym_inline_link] = STATE(716), - [sym_link_text] = STATE(1413), - [sym__comment_with_spaces] = STATE(716), - [sym_span] = STATE(716), - [sym_raw_inline] = STATE(716), - [sym_math] = STATE(716), - [sym_verbatim] = STATE(716), - [sym__todo_highlights] = STATE(716), - [sym_todo] = STATE(716), - [sym_note] = STATE(716), - [sym__symbol_fallback] = STATE(716), - [aux_sym__text] = STATE(562), - [aux_sym__list_dash_repeat1] = STATE(1312), - [aux_sym__list_plus_repeat1] = STATE(1313), - [aux_sym__list_star_repeat1] = STATE(1314), - [aux_sym__list_task_repeat1] = STATE(1280), - [aux_sym__list_definition_repeat1] = STATE(1571), - [aux_sym__list_decimal_period_repeat1] = STATE(1572), - [aux_sym__list_decimal_paren_repeat1] = STATE(1573), - [aux_sym__list_decimal_parens_repeat1] = STATE(1574), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(1575), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(1576), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(1577), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(1578), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(1579), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(1580), - [aux_sym__list_lower_roman_period_repeat1] = STATE(1581), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(1492), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(1556), - [aux_sym__list_upper_roman_period_repeat1] = STATE(1557), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(1558), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(1559), - [aux_sym_table_repeat1] = STATE(1206), - [aux_sym__block_quote_prefix_repeat1] = STATE(1308), - [aux_sym__inline_repeat1] = STATE(229), - [anon_sym_LBRACK] = ACTIONS(623), - [anon_sym_PIPE] = ACTIONS(625), - [anon_sym_LBRACE] = ACTIONS(627), - [sym__whitespace1] = ACTIONS(11), - [anon_sym_BSLASH] = ACTIONS(13), - [sym_quotation_marks] = ACTIONS(15), - [sym_ellipsis] = ACTIONS(15), - [sym_em_dash] = ACTIONS(15), - [sym_en_dash] = ACTIONS(17), - [sym_backslash_escape] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(19), - [anon_sym_LBRACE_] = ACTIONS(21), - [anon_sym__] = ACTIONS(23), - [anon_sym_LBRACE_STAR] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_LBRACE_EQ] = ACTIONS(29), - [anon_sym_LBRACE_PLUS] = ACTIONS(31), - [anon_sym_LBRACE_DASH] = ACTIONS(33), - [sym_symbol] = ACTIONS(15), - [anon_sym_LBRACE_CARET] = ACTIONS(35), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_LBRACE_TILDE] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(37), - [anon_sym_LBRACK_CARET] = ACTIONS(39), - [anon_sym_BANG_LBRACK] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [anon_sym_TODO] = ACTIONS(45), - [anon_sym_WIP] = ACTIONS(45), - [anon_sym_NOTE] = ACTIONS(47), - [anon_sym_INFO] = ACTIONS(47), - [anon_sym_XXX] = ACTIONS(47), - [sym_fixme] = ACTIONS(15), - [aux_sym__text_token1] = ACTIONS(49), - [sym__newline] = ACTIONS(689), - [sym__newline_inline] = ACTIONS(53), - [sym__heading1_begin] = ACTIONS(631), - [sym__heading2_begin] = ACTIONS(633), - [sym__heading3_begin] = ACTIONS(635), - [sym__heading4_begin] = ACTIONS(637), - [sym__heading5_begin] = ACTIONS(639), - [sym__heading6_begin] = ACTIONS(641), - [sym__div_begin] = ACTIONS(69), - [sym__code_block_begin] = ACTIONS(643), - [sym_list_marker_dash] = ACTIONS(73), - [sym_list_marker_star] = ACTIONS(75), - [sym_list_marker_plus] = ACTIONS(77), - [sym__list_marker_task_begin] = ACTIONS(79), - [sym_list_marker_definition] = ACTIONS(81), - [sym_list_marker_decimal_period] = ACTIONS(83), - [sym_list_marker_lower_alpha_period] = ACTIONS(85), - [sym_list_marker_upper_alpha_period] = ACTIONS(87), - [sym_list_marker_lower_roman_period] = ACTIONS(89), - [sym_list_marker_upper_roman_period] = ACTIONS(91), - [sym_list_marker_decimal_paren] = ACTIONS(93), - [sym_list_marker_lower_alpha_paren] = ACTIONS(95), - [sym_list_marker_upper_alpha_paren] = ACTIONS(97), - [sym_list_marker_lower_roman_paren] = ACTIONS(99), - [sym_list_marker_upper_roman_paren] = ACTIONS(101), - [sym_list_marker_decimal_parens] = ACTIONS(103), - [sym_list_marker_lower_alpha_parens] = ACTIONS(105), - [sym_list_marker_upper_alpha_parens] = ACTIONS(107), - [sym_list_marker_lower_roman_parens] = ACTIONS(109), - [sym_list_marker_upper_roman_parens] = ACTIONS(111), - [sym__block_quote_begin] = ACTIONS(645), - [sym__block_quote_continuation] = ACTIONS(115), - [sym__thematic_break_dash] = ACTIONS(647), - [sym__thematic_break_star] = ACTIONS(647), - [sym__footnote_begin] = ACTIONS(649), - [sym__verbatim_begin] = ACTIONS(121), - }, - [54] = { - [sym__block_element] = STATE(1455), - [sym__heading] = STATE(1455), - [sym_heading1] = STATE(1455), - [sym_heading2] = STATE(1455), - [sym_heading3] = STATE(1455), - [sym_heading4] = STATE(1455), - [sym_heading5] = STATE(1455), - [sym_heading6] = STATE(1455), - [sym_list] = STATE(1455), - [sym__list_dash] = STATE(1790), - [sym__list_item_dash] = STATE(1318), - [sym__list_plus] = STATE(1790), - [sym__list_item_plus] = STATE(1319), - [sym__list_star] = STATE(1790), - [sym__list_item_star] = STATE(1320), - [sym__list_task] = STATE(1790), - [sym__list_item_task] = STATE(1276), - [sym_list_marker_task] = STATE(49), - [sym__list_definition] = STATE(1790), - [sym__list_item_definition] = STATE(1503), - [sym__list_decimal_period] = STATE(1790), - [sym__list_item_decimal_period] = STATE(1501), - [sym__list_decimal_paren] = STATE(1790), - [sym__list_item_decimal_paren] = STATE(1497), - [sym__list_decimal_parens] = STATE(1790), - [sym__list_item_decimal_parens] = STATE(1496), - [sym__list_lower_alpha_period] = STATE(1790), - [sym__list_item_lower_alpha_period] = STATE(1495), - [sym__list_lower_alpha_paren] = STATE(1790), - [sym__list_item_lower_alpha_paren] = STATE(1491), - [sym__list_lower_alpha_parens] = STATE(1790), - [sym__list_item_lower_alpha_parens] = STATE(1488), - [sym__list_upper_alpha_period] = STATE(1790), - [sym__list_item_upper_alpha_period] = STATE(1487), - [sym__list_upper_alpha_paren] = STATE(1790), - [sym__list_item_upper_alpha_paren] = STATE(1486), - [sym__list_upper_alpha_parens] = STATE(1790), - [sym__list_item_upper_alpha_parens] = STATE(1484), - [sym__list_lower_roman_period] = STATE(1790), - [sym__list_item_lower_roman_period] = STATE(1483), - [sym__list_lower_roman_paren] = STATE(1790), - [sym__list_item_lower_roman_paren] = STATE(1482), - [sym__list_lower_roman_parens] = STATE(1790), - [sym__list_item_lower_roman_parens] = STATE(1481), - [sym__list_upper_roman_period] = STATE(1790), - [sym__list_item_upper_roman_period] = STATE(1479), - [sym__list_upper_roman_paren] = STATE(1790), - [sym__list_item_upper_roman_paren] = STATE(1478), - [sym__list_upper_roman_parens] = STATE(1790), - [sym__list_item_upper_roman_parens] = STATE(1476), - [sym_table] = STATE(1455), - [sym__table_content] = STATE(1210), - [sym_table_separator] = STATE(1210), - [sym_table_row] = STATE(1291), - [sym_footnote] = STATE(1455), - [sym_div] = STATE(1455), - [sym_div_marker_begin] = STATE(2165), - [sym_code_block] = STATE(1455), - [sym_raw_block] = STATE(1455), - [sym_thematic_break] = STATE(1455), - [sym_block_quote] = STATE(1455), - [sym__block_quote_content] = STATE(2175), - [sym__block_quote_prefix] = STATE(1390), - [sym_link_reference_definition] = STATE(1455), - [sym_block_attribute] = STATE(1455), - [sym__paragraph] = STATE(1455), - [sym__paragraph_content] = STATE(1859), - [sym__inline] = STATE(2311), - [sym__inline_element_with_whitespace] = STATE(229), - [sym__inline_element_with_newline] = STATE(229), - [sym__inline_core_element] = STATE(229), - [sym__hard_line_break] = STATE(716), - [sym_hard_line_break] = STATE(517), - [sym__smart_punctuation] = STATE(716), - [sym_autolink] = STATE(716), - [sym_emphasis] = STATE(716), - [sym_emphasis_begin] = STATE(283), - [sym_strong] = STATE(716), - [sym_strong_begin] = STATE(282), - [sym_highlighted] = STATE(716), - [sym_insert] = STATE(716), - [sym_delete] = STATE(716), - [sym_superscript] = STATE(716), - [sym_subscript] = STATE(716), - [sym_footnote_reference] = STATE(716), - [sym__image] = STATE(716), - [sym_full_reference_image] = STATE(716), - [sym_collapsed_reference_image] = STATE(716), - [sym_inline_image] = STATE(716), - [sym__image_description] = STATE(1412), - [sym__link] = STATE(716), - [sym_full_reference_link] = STATE(716), - [sym_collapsed_reference_link] = STATE(716), - [sym_inline_link] = STATE(716), - [sym_link_text] = STATE(1413), - [sym__comment_with_spaces] = STATE(716), - [sym_span] = STATE(716), - [sym_raw_inline] = STATE(716), - [sym_math] = STATE(716), - [sym_verbatim] = STATE(716), - [sym__todo_highlights] = STATE(716), - [sym_todo] = STATE(716), - [sym_note] = STATE(716), - [sym__symbol_fallback] = STATE(716), - [aux_sym__text] = STATE(562), - [aux_sym__list_dash_repeat1] = STATE(1318), - [aux_sym__list_plus_repeat1] = STATE(1319), - [aux_sym__list_star_repeat1] = STATE(1320), - [aux_sym__list_task_repeat1] = STATE(1276), - [aux_sym__list_definition_repeat1] = STATE(1503), - [aux_sym__list_decimal_period_repeat1] = STATE(1501), - [aux_sym__list_decimal_paren_repeat1] = STATE(1497), - [aux_sym__list_decimal_parens_repeat1] = STATE(1496), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(1495), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(1491), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(1488), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(1487), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(1486), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(1484), - [aux_sym__list_lower_roman_period_repeat1] = STATE(1483), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(1482), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(1481), - [aux_sym__list_upper_roman_period_repeat1] = STATE(1479), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(1478), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(1476), - [aux_sym_table_repeat1] = STATE(1210), - [aux_sym__block_quote_prefix_repeat1] = STATE(1308), - [aux_sym__inline_repeat1] = STATE(229), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_PIPE] = ACTIONS(693), - [anon_sym_LBRACE] = ACTIONS(695), - [sym__whitespace1] = ACTIONS(11), - [anon_sym_BSLASH] = ACTIONS(13), - [sym_quotation_marks] = ACTIONS(15), - [sym_ellipsis] = ACTIONS(15), - [sym_em_dash] = ACTIONS(15), - [sym_en_dash] = ACTIONS(17), - [sym_backslash_escape] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(19), - [anon_sym_LBRACE_] = ACTIONS(21), - [anon_sym__] = ACTIONS(23), - [anon_sym_LBRACE_STAR] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_LBRACE_EQ] = ACTIONS(29), - [anon_sym_LBRACE_PLUS] = ACTIONS(31), - [anon_sym_LBRACE_DASH] = ACTIONS(33), - [sym_symbol] = ACTIONS(15), - [anon_sym_LBRACE_CARET] = ACTIONS(35), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_LBRACE_TILDE] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(37), - [anon_sym_LBRACK_CARET] = ACTIONS(39), - [anon_sym_BANG_LBRACK] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [anon_sym_TODO] = ACTIONS(45), - [anon_sym_WIP] = ACTIONS(45), - [anon_sym_NOTE] = ACTIONS(47), - [anon_sym_INFO] = ACTIONS(47), - [anon_sym_XXX] = ACTIONS(47), - [sym_fixme] = ACTIONS(15), - [aux_sym__text_token1] = ACTIONS(49), - [sym__newline_inline] = ACTIONS(53), - [sym__heading1_begin] = ACTIONS(697), - [sym__heading2_begin] = ACTIONS(699), - [sym__heading3_begin] = ACTIONS(701), - [sym__heading4_begin] = ACTIONS(703), - [sym__heading5_begin] = ACTIONS(705), - [sym__heading6_begin] = ACTIONS(707), - [sym__div_begin] = ACTIONS(69), - [sym__code_block_begin] = ACTIONS(709), - [sym_list_marker_dash] = ACTIONS(73), - [sym_list_marker_star] = ACTIONS(75), - [sym_list_marker_plus] = ACTIONS(77), - [sym__list_marker_task_begin] = ACTIONS(79), - [sym_list_marker_definition] = ACTIONS(81), - [sym_list_marker_decimal_period] = ACTIONS(83), - [sym_list_marker_lower_alpha_period] = ACTIONS(85), - [sym_list_marker_upper_alpha_period] = ACTIONS(87), - [sym_list_marker_lower_roman_period] = ACTIONS(89), - [sym_list_marker_upper_roman_period] = ACTIONS(91), - [sym_list_marker_decimal_paren] = ACTIONS(93), - [sym_list_marker_lower_alpha_paren] = ACTIONS(95), - [sym_list_marker_upper_alpha_paren] = ACTIONS(97), - [sym_list_marker_lower_roman_paren] = ACTIONS(99), - [sym_list_marker_upper_roman_paren] = ACTIONS(101), - [sym_list_marker_decimal_parens] = ACTIONS(103), - [sym_list_marker_lower_alpha_parens] = ACTIONS(105), - [sym_list_marker_upper_alpha_parens] = ACTIONS(107), - [sym_list_marker_lower_roman_parens] = ACTIONS(109), - [sym_list_marker_upper_roman_parens] = ACTIONS(111), - [sym__block_quote_begin] = ACTIONS(711), - [sym__block_quote_continuation] = ACTIONS(115), - [sym__thematic_break_dash] = ACTIONS(713), - [sym__thematic_break_star] = ACTIONS(713), - [sym__footnote_begin] = ACTIONS(715), - [sym__verbatim_begin] = ACTIONS(121), - }, - [55] = { - [sym__block_element] = STATE(1455), - [sym__heading] = STATE(1455), - [sym_heading1] = STATE(1455), - [sym_heading2] = STATE(1455), - [sym_heading3] = STATE(1455), - [sym_heading4] = STATE(1455), - [sym_heading5] = STATE(1455), - [sym_heading6] = STATE(1455), - [sym_list] = STATE(1455), - [sym__list_dash] = STATE(1790), - [sym__list_item_dash] = STATE(1318), - [sym__list_plus] = STATE(1790), - [sym__list_item_plus] = STATE(1319), - [sym__list_star] = STATE(1790), - [sym__list_item_star] = STATE(1320), - [sym__list_task] = STATE(1790), - [sym__list_item_task] = STATE(1276), - [sym_list_marker_task] = STATE(49), - [sym__list_definition] = STATE(1790), - [sym__list_item_definition] = STATE(1503), - [sym__list_decimal_period] = STATE(1790), - [sym__list_item_decimal_period] = STATE(1501), - [sym__list_decimal_paren] = STATE(1790), - [sym__list_item_decimal_paren] = STATE(1497), - [sym__list_decimal_parens] = STATE(1790), - [sym__list_item_decimal_parens] = STATE(1496), - [sym__list_lower_alpha_period] = STATE(1790), - [sym__list_item_lower_alpha_period] = STATE(1495), - [sym__list_lower_alpha_paren] = STATE(1790), - [sym__list_item_lower_alpha_paren] = STATE(1491), - [sym__list_lower_alpha_parens] = STATE(1790), - [sym__list_item_lower_alpha_parens] = STATE(1488), - [sym__list_upper_alpha_period] = STATE(1790), - [sym__list_item_upper_alpha_period] = STATE(1487), - [sym__list_upper_alpha_paren] = STATE(1790), - [sym__list_item_upper_alpha_paren] = STATE(1486), - [sym__list_upper_alpha_parens] = STATE(1790), - [sym__list_item_upper_alpha_parens] = STATE(1484), - [sym__list_lower_roman_period] = STATE(1790), - [sym__list_item_lower_roman_period] = STATE(1483), - [sym__list_lower_roman_paren] = STATE(1790), - [sym__list_item_lower_roman_paren] = STATE(1482), - [sym__list_lower_roman_parens] = STATE(1790), - [sym__list_item_lower_roman_parens] = STATE(1481), - [sym__list_upper_roman_period] = STATE(1790), - [sym__list_item_upper_roman_period] = STATE(1479), - [sym__list_upper_roman_paren] = STATE(1790), - [sym__list_item_upper_roman_paren] = STATE(1478), - [sym__list_upper_roman_parens] = STATE(1790), - [sym__list_item_upper_roman_parens] = STATE(1476), - [sym_table] = STATE(1455), - [sym__table_content] = STATE(1210), - [sym_table_separator] = STATE(1210), - [sym_table_row] = STATE(1291), - [sym_footnote] = STATE(1455), - [sym_div] = STATE(1455), - [sym_div_marker_begin] = STATE(2165), - [sym_code_block] = STATE(1455), - [sym_raw_block] = STATE(1455), - [sym_thematic_break] = STATE(1455), - [sym_block_quote] = STATE(1455), - [sym__block_quote_content] = STATE(1956), - [sym__block_quote_prefix] = STATE(1390), - [sym_link_reference_definition] = STATE(1455), - [sym_block_attribute] = STATE(1455), - [sym__paragraph] = STATE(1455), - [sym__paragraph_content] = STATE(1859), - [sym__inline] = STATE(2311), - [sym__inline_element_with_whitespace] = STATE(229), - [sym__inline_element_with_newline] = STATE(229), - [sym__inline_core_element] = STATE(229), - [sym__hard_line_break] = STATE(716), - [sym_hard_line_break] = STATE(517), - [sym__smart_punctuation] = STATE(716), - [sym_autolink] = STATE(716), - [sym_emphasis] = STATE(716), - [sym_emphasis_begin] = STATE(283), - [sym_strong] = STATE(716), - [sym_strong_begin] = STATE(282), - [sym_highlighted] = STATE(716), - [sym_insert] = STATE(716), - [sym_delete] = STATE(716), - [sym_superscript] = STATE(716), - [sym_subscript] = STATE(716), - [sym_footnote_reference] = STATE(716), - [sym__image] = STATE(716), - [sym_full_reference_image] = STATE(716), - [sym_collapsed_reference_image] = STATE(716), - [sym_inline_image] = STATE(716), - [sym__image_description] = STATE(1412), - [sym__link] = STATE(716), - [sym_full_reference_link] = STATE(716), - [sym_collapsed_reference_link] = STATE(716), - [sym_inline_link] = STATE(716), - [sym_link_text] = STATE(1413), - [sym__comment_with_spaces] = STATE(716), - [sym_span] = STATE(716), - [sym_raw_inline] = STATE(716), - [sym_math] = STATE(716), - [sym_verbatim] = STATE(716), - [sym__todo_highlights] = STATE(716), - [sym_todo] = STATE(716), - [sym_note] = STATE(716), - [sym__symbol_fallback] = STATE(716), - [aux_sym__text] = STATE(562), - [aux_sym__list_dash_repeat1] = STATE(1318), - [aux_sym__list_plus_repeat1] = STATE(1319), - [aux_sym__list_star_repeat1] = STATE(1320), - [aux_sym__list_task_repeat1] = STATE(1276), - [aux_sym__list_definition_repeat1] = STATE(1503), - [aux_sym__list_decimal_period_repeat1] = STATE(1501), - [aux_sym__list_decimal_paren_repeat1] = STATE(1497), - [aux_sym__list_decimal_parens_repeat1] = STATE(1496), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(1495), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(1491), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(1488), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(1487), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(1486), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(1484), - [aux_sym__list_lower_roman_period_repeat1] = STATE(1483), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(1482), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(1481), - [aux_sym__list_upper_roman_period_repeat1] = STATE(1479), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(1478), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(1476), - [aux_sym_table_repeat1] = STATE(1210), - [aux_sym__block_quote_prefix_repeat1] = STATE(1308), - [aux_sym__inline_repeat1] = STATE(229), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_PIPE] = ACTIONS(693), - [anon_sym_LBRACE] = ACTIONS(695), - [sym__whitespace1] = ACTIONS(11), - [anon_sym_BSLASH] = ACTIONS(13), - [sym_quotation_marks] = ACTIONS(15), - [sym_ellipsis] = ACTIONS(15), - [sym_em_dash] = ACTIONS(15), - [sym_en_dash] = ACTIONS(17), - [sym_backslash_escape] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(19), - [anon_sym_LBRACE_] = ACTIONS(21), - [anon_sym__] = ACTIONS(23), - [anon_sym_LBRACE_STAR] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_LBRACE_EQ] = ACTIONS(29), - [anon_sym_LBRACE_PLUS] = ACTIONS(31), - [anon_sym_LBRACE_DASH] = ACTIONS(33), - [sym_symbol] = ACTIONS(15), - [anon_sym_LBRACE_CARET] = ACTIONS(35), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_LBRACE_TILDE] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(37), - [anon_sym_LBRACK_CARET] = ACTIONS(39), - [anon_sym_BANG_LBRACK] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [anon_sym_TODO] = ACTIONS(45), - [anon_sym_WIP] = ACTIONS(45), - [anon_sym_NOTE] = ACTIONS(47), - [anon_sym_INFO] = ACTIONS(47), - [anon_sym_XXX] = ACTIONS(47), - [sym_fixme] = ACTIONS(15), - [aux_sym__text_token1] = ACTIONS(49), - [sym__newline_inline] = ACTIONS(53), - [sym__heading1_begin] = ACTIONS(697), - [sym__heading2_begin] = ACTIONS(699), - [sym__heading3_begin] = ACTIONS(701), - [sym__heading4_begin] = ACTIONS(703), - [sym__heading5_begin] = ACTIONS(705), - [sym__heading6_begin] = ACTIONS(707), - [sym__div_begin] = ACTIONS(69), - [sym__code_block_begin] = ACTIONS(709), - [sym_list_marker_dash] = ACTIONS(73), - [sym_list_marker_star] = ACTIONS(75), - [sym_list_marker_plus] = ACTIONS(77), - [sym__list_marker_task_begin] = ACTIONS(79), - [sym_list_marker_definition] = ACTIONS(81), - [sym_list_marker_decimal_period] = ACTIONS(83), - [sym_list_marker_lower_alpha_period] = ACTIONS(85), - [sym_list_marker_upper_alpha_period] = ACTIONS(87), - [sym_list_marker_lower_roman_period] = ACTIONS(89), - [sym_list_marker_upper_roman_period] = ACTIONS(91), - [sym_list_marker_decimal_paren] = ACTIONS(93), - [sym_list_marker_lower_alpha_paren] = ACTIONS(95), - [sym_list_marker_upper_alpha_paren] = ACTIONS(97), - [sym_list_marker_lower_roman_paren] = ACTIONS(99), - [sym_list_marker_upper_roman_paren] = ACTIONS(101), - [sym_list_marker_decimal_parens] = ACTIONS(103), - [sym_list_marker_lower_alpha_parens] = ACTIONS(105), - [sym_list_marker_upper_alpha_parens] = ACTIONS(107), - [sym_list_marker_lower_roman_parens] = ACTIONS(109), - [sym_list_marker_upper_roman_parens] = ACTIONS(111), - [sym__block_quote_begin] = ACTIONS(711), - [sym__block_quote_continuation] = ACTIONS(115), - [sym__thematic_break_dash] = ACTIONS(713), - [sym__thematic_break_star] = ACTIONS(713), - [sym__footnote_begin] = ACTIONS(715), - [sym__verbatim_begin] = ACTIONS(121), - }, - [56] = { - [sym__block_element] = STATE(1455), - [sym__heading] = STATE(1455), - [sym_heading1] = STATE(1455), - [sym_heading2] = STATE(1455), - [sym_heading3] = STATE(1455), - [sym_heading4] = STATE(1455), - [sym_heading5] = STATE(1455), - [sym_heading6] = STATE(1455), - [sym_list] = STATE(1455), - [sym__list_dash] = STATE(1790), - [sym__list_item_dash] = STATE(1318), - [sym__list_plus] = STATE(1790), - [sym__list_item_plus] = STATE(1319), - [sym__list_star] = STATE(1790), - [sym__list_item_star] = STATE(1320), - [sym__list_task] = STATE(1790), - [sym__list_item_task] = STATE(1276), - [sym_list_marker_task] = STATE(49), - [sym__list_definition] = STATE(1790), - [sym__list_item_definition] = STATE(1503), - [sym__list_decimal_period] = STATE(1790), - [sym__list_item_decimal_period] = STATE(1501), - [sym__list_decimal_paren] = STATE(1790), - [sym__list_item_decimal_paren] = STATE(1497), - [sym__list_decimal_parens] = STATE(1790), - [sym__list_item_decimal_parens] = STATE(1496), - [sym__list_lower_alpha_period] = STATE(1790), - [sym__list_item_lower_alpha_period] = STATE(1495), - [sym__list_lower_alpha_paren] = STATE(1790), - [sym__list_item_lower_alpha_paren] = STATE(1491), - [sym__list_lower_alpha_parens] = STATE(1790), - [sym__list_item_lower_alpha_parens] = STATE(1488), - [sym__list_upper_alpha_period] = STATE(1790), - [sym__list_item_upper_alpha_period] = STATE(1487), - [sym__list_upper_alpha_paren] = STATE(1790), - [sym__list_item_upper_alpha_paren] = STATE(1486), - [sym__list_upper_alpha_parens] = STATE(1790), - [sym__list_item_upper_alpha_parens] = STATE(1484), - [sym__list_lower_roman_period] = STATE(1790), - [sym__list_item_lower_roman_period] = STATE(1483), - [sym__list_lower_roman_paren] = STATE(1790), - [sym__list_item_lower_roman_paren] = STATE(1482), - [sym__list_lower_roman_parens] = STATE(1790), - [sym__list_item_lower_roman_parens] = STATE(1481), - [sym__list_upper_roman_period] = STATE(1790), - [sym__list_item_upper_roman_period] = STATE(1479), - [sym__list_upper_roman_paren] = STATE(1790), - [sym__list_item_upper_roman_paren] = STATE(1478), - [sym__list_upper_roman_parens] = STATE(1790), - [sym__list_item_upper_roman_parens] = STATE(1476), - [sym_table] = STATE(1455), - [sym__table_content] = STATE(1210), - [sym_table_separator] = STATE(1210), - [sym_table_row] = STATE(1291), - [sym_footnote] = STATE(1455), - [sym_div] = STATE(1455), - [sym_div_marker_begin] = STATE(2165), - [sym_code_block] = STATE(1455), - [sym_raw_block] = STATE(1455), - [sym_thematic_break] = STATE(1455), - [sym_block_quote] = STATE(1455), - [sym__block_quote_content] = STATE(2285), - [sym__block_quote_prefix] = STATE(1390), - [sym_link_reference_definition] = STATE(1455), - [sym_block_attribute] = STATE(1455), - [sym__paragraph] = STATE(1455), - [sym__paragraph_content] = STATE(1859), - [sym__inline] = STATE(2311), - [sym__inline_element_with_whitespace] = STATE(229), - [sym__inline_element_with_newline] = STATE(229), - [sym__inline_core_element] = STATE(229), - [sym__hard_line_break] = STATE(716), - [sym_hard_line_break] = STATE(517), - [sym__smart_punctuation] = STATE(716), - [sym_autolink] = STATE(716), - [sym_emphasis] = STATE(716), - [sym_emphasis_begin] = STATE(283), - [sym_strong] = STATE(716), - [sym_strong_begin] = STATE(282), - [sym_highlighted] = STATE(716), - [sym_insert] = STATE(716), - [sym_delete] = STATE(716), - [sym_superscript] = STATE(716), - [sym_subscript] = STATE(716), - [sym_footnote_reference] = STATE(716), - [sym__image] = STATE(716), - [sym_full_reference_image] = STATE(716), - [sym_collapsed_reference_image] = STATE(716), - [sym_inline_image] = STATE(716), - [sym__image_description] = STATE(1412), - [sym__link] = STATE(716), - [sym_full_reference_link] = STATE(716), - [sym_collapsed_reference_link] = STATE(716), - [sym_inline_link] = STATE(716), - [sym_link_text] = STATE(1413), - [sym__comment_with_spaces] = STATE(716), - [sym_span] = STATE(716), - [sym_raw_inline] = STATE(716), - [sym_math] = STATE(716), - [sym_verbatim] = STATE(716), - [sym__todo_highlights] = STATE(716), - [sym_todo] = STATE(716), - [sym_note] = STATE(716), - [sym__symbol_fallback] = STATE(716), - [aux_sym__text] = STATE(562), - [aux_sym__list_dash_repeat1] = STATE(1318), - [aux_sym__list_plus_repeat1] = STATE(1319), - [aux_sym__list_star_repeat1] = STATE(1320), - [aux_sym__list_task_repeat1] = STATE(1276), - [aux_sym__list_definition_repeat1] = STATE(1503), - [aux_sym__list_decimal_period_repeat1] = STATE(1501), - [aux_sym__list_decimal_paren_repeat1] = STATE(1497), - [aux_sym__list_decimal_parens_repeat1] = STATE(1496), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(1495), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(1491), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(1488), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(1487), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(1486), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(1484), - [aux_sym__list_lower_roman_period_repeat1] = STATE(1483), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(1482), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(1481), - [aux_sym__list_upper_roman_period_repeat1] = STATE(1479), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(1478), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(1476), - [aux_sym_table_repeat1] = STATE(1210), - [aux_sym__block_quote_prefix_repeat1] = STATE(1308), - [aux_sym__inline_repeat1] = STATE(229), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_PIPE] = ACTIONS(693), - [anon_sym_LBRACE] = ACTIONS(695), - [sym__whitespace1] = ACTIONS(11), - [anon_sym_BSLASH] = ACTIONS(13), - [sym_quotation_marks] = ACTIONS(15), - [sym_ellipsis] = ACTIONS(15), - [sym_em_dash] = ACTIONS(15), - [sym_en_dash] = ACTIONS(17), - [sym_backslash_escape] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(19), - [anon_sym_LBRACE_] = ACTIONS(21), - [anon_sym__] = ACTIONS(23), - [anon_sym_LBRACE_STAR] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_LBRACE_EQ] = ACTIONS(29), - [anon_sym_LBRACE_PLUS] = ACTIONS(31), - [anon_sym_LBRACE_DASH] = ACTIONS(33), - [sym_symbol] = ACTIONS(15), - [anon_sym_LBRACE_CARET] = ACTIONS(35), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_LBRACE_TILDE] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(37), - [anon_sym_LBRACK_CARET] = ACTIONS(39), - [anon_sym_BANG_LBRACK] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [anon_sym_TODO] = ACTIONS(45), - [anon_sym_WIP] = ACTIONS(45), - [anon_sym_NOTE] = ACTIONS(47), - [anon_sym_INFO] = ACTIONS(47), - [anon_sym_XXX] = ACTIONS(47), - [sym_fixme] = ACTIONS(15), - [aux_sym__text_token1] = ACTIONS(49), - [sym__newline_inline] = ACTIONS(53), - [sym__heading1_begin] = ACTIONS(697), - [sym__heading2_begin] = ACTIONS(699), - [sym__heading3_begin] = ACTIONS(701), - [sym__heading4_begin] = ACTIONS(703), - [sym__heading5_begin] = ACTIONS(705), - [sym__heading6_begin] = ACTIONS(707), - [sym__div_begin] = ACTIONS(69), - [sym__code_block_begin] = ACTIONS(709), - [sym_list_marker_dash] = ACTIONS(73), - [sym_list_marker_star] = ACTIONS(75), - [sym_list_marker_plus] = ACTIONS(77), - [sym__list_marker_task_begin] = ACTIONS(79), - [sym_list_marker_definition] = ACTIONS(81), - [sym_list_marker_decimal_period] = ACTIONS(83), - [sym_list_marker_lower_alpha_period] = ACTIONS(85), - [sym_list_marker_upper_alpha_period] = ACTIONS(87), - [sym_list_marker_lower_roman_period] = ACTIONS(89), - [sym_list_marker_upper_roman_period] = ACTIONS(91), - [sym_list_marker_decimal_paren] = ACTIONS(93), - [sym_list_marker_lower_alpha_paren] = ACTIONS(95), - [sym_list_marker_upper_alpha_paren] = ACTIONS(97), - [sym_list_marker_lower_roman_paren] = ACTIONS(99), - [sym_list_marker_upper_roman_paren] = ACTIONS(101), - [sym_list_marker_decimal_parens] = ACTIONS(103), - [sym_list_marker_lower_alpha_parens] = ACTIONS(105), - [sym_list_marker_upper_alpha_parens] = ACTIONS(107), - [sym_list_marker_lower_roman_parens] = ACTIONS(109), - [sym_list_marker_upper_roman_parens] = ACTIONS(111), - [sym__block_quote_begin] = ACTIONS(711), - [sym__block_quote_continuation] = ACTIONS(115), - [sym__thematic_break_dash] = ACTIONS(713), - [sym__thematic_break_star] = ACTIONS(713), - [sym__footnote_begin] = ACTIONS(715), - [sym__verbatim_begin] = ACTIONS(121), - }, - [57] = { - [sym__block_element] = STATE(1455), - [sym__heading] = STATE(1455), - [sym_heading1] = STATE(1455), - [sym_heading2] = STATE(1455), - [sym_heading3] = STATE(1455), - [sym_heading4] = STATE(1455), - [sym_heading5] = STATE(1455), - [sym_heading6] = STATE(1455), - [sym_list] = STATE(1455), - [sym__list_dash] = STATE(1790), - [sym__list_item_dash] = STATE(1318), - [sym__list_plus] = STATE(1790), - [sym__list_item_plus] = STATE(1319), - [sym__list_star] = STATE(1790), - [sym__list_item_star] = STATE(1320), - [sym__list_task] = STATE(1790), - [sym__list_item_task] = STATE(1276), - [sym_list_marker_task] = STATE(49), - [sym__list_definition] = STATE(1790), - [sym__list_item_definition] = STATE(1503), - [sym__list_decimal_period] = STATE(1790), - [sym__list_item_decimal_period] = STATE(1501), - [sym__list_decimal_paren] = STATE(1790), - [sym__list_item_decimal_paren] = STATE(1497), - [sym__list_decimal_parens] = STATE(1790), - [sym__list_item_decimal_parens] = STATE(1496), - [sym__list_lower_alpha_period] = STATE(1790), - [sym__list_item_lower_alpha_period] = STATE(1495), - [sym__list_lower_alpha_paren] = STATE(1790), - [sym__list_item_lower_alpha_paren] = STATE(1491), - [sym__list_lower_alpha_parens] = STATE(1790), - [sym__list_item_lower_alpha_parens] = STATE(1488), - [sym__list_upper_alpha_period] = STATE(1790), - [sym__list_item_upper_alpha_period] = STATE(1487), - [sym__list_upper_alpha_paren] = STATE(1790), - [sym__list_item_upper_alpha_paren] = STATE(1486), - [sym__list_upper_alpha_parens] = STATE(1790), - [sym__list_item_upper_alpha_parens] = STATE(1484), - [sym__list_lower_roman_period] = STATE(1790), - [sym__list_item_lower_roman_period] = STATE(1483), - [sym__list_lower_roman_paren] = STATE(1790), - [sym__list_item_lower_roman_paren] = STATE(1482), - [sym__list_lower_roman_parens] = STATE(1790), - [sym__list_item_lower_roman_parens] = STATE(1481), - [sym__list_upper_roman_period] = STATE(1790), - [sym__list_item_upper_roman_period] = STATE(1479), - [sym__list_upper_roman_paren] = STATE(1790), - [sym__list_item_upper_roman_paren] = STATE(1478), - [sym__list_upper_roman_parens] = STATE(1790), - [sym__list_item_upper_roman_parens] = STATE(1476), - [sym_table] = STATE(1455), - [sym__table_content] = STATE(1210), - [sym_table_separator] = STATE(1210), - [sym_table_row] = STATE(1291), - [sym_footnote] = STATE(1455), - [sym_div] = STATE(1455), - [sym_div_marker_begin] = STATE(2165), - [sym_code_block] = STATE(1455), - [sym_raw_block] = STATE(1455), - [sym_thematic_break] = STATE(1455), - [sym_block_quote] = STATE(1455), - [sym__block_quote_content] = STATE(2126), - [sym__block_quote_prefix] = STATE(1390), - [sym_link_reference_definition] = STATE(1455), - [sym_block_attribute] = STATE(1455), - [sym__paragraph] = STATE(1455), - [sym__paragraph_content] = STATE(1859), - [sym__inline] = STATE(2311), - [sym__inline_element_with_whitespace] = STATE(229), - [sym__inline_element_with_newline] = STATE(229), - [sym__inline_core_element] = STATE(229), - [sym__hard_line_break] = STATE(716), - [sym_hard_line_break] = STATE(517), - [sym__smart_punctuation] = STATE(716), - [sym_autolink] = STATE(716), - [sym_emphasis] = STATE(716), - [sym_emphasis_begin] = STATE(283), - [sym_strong] = STATE(716), - [sym_strong_begin] = STATE(282), - [sym_highlighted] = STATE(716), - [sym_insert] = STATE(716), - [sym_delete] = STATE(716), - [sym_superscript] = STATE(716), - [sym_subscript] = STATE(716), - [sym_footnote_reference] = STATE(716), - [sym__image] = STATE(716), - [sym_full_reference_image] = STATE(716), - [sym_collapsed_reference_image] = STATE(716), - [sym_inline_image] = STATE(716), - [sym__image_description] = STATE(1412), - [sym__link] = STATE(716), - [sym_full_reference_link] = STATE(716), - [sym_collapsed_reference_link] = STATE(716), - [sym_inline_link] = STATE(716), - [sym_link_text] = STATE(1413), - [sym__comment_with_spaces] = STATE(716), - [sym_span] = STATE(716), - [sym_raw_inline] = STATE(716), - [sym_math] = STATE(716), - [sym_verbatim] = STATE(716), - [sym__todo_highlights] = STATE(716), - [sym_todo] = STATE(716), - [sym_note] = STATE(716), - [sym__symbol_fallback] = STATE(716), - [aux_sym__text] = STATE(562), - [aux_sym__list_dash_repeat1] = STATE(1318), - [aux_sym__list_plus_repeat1] = STATE(1319), - [aux_sym__list_star_repeat1] = STATE(1320), - [aux_sym__list_task_repeat1] = STATE(1276), - [aux_sym__list_definition_repeat1] = STATE(1503), - [aux_sym__list_decimal_period_repeat1] = STATE(1501), - [aux_sym__list_decimal_paren_repeat1] = STATE(1497), - [aux_sym__list_decimal_parens_repeat1] = STATE(1496), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(1495), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(1491), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(1488), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(1487), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(1486), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(1484), - [aux_sym__list_lower_roman_period_repeat1] = STATE(1483), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(1482), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(1481), - [aux_sym__list_upper_roman_period_repeat1] = STATE(1479), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(1478), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(1476), - [aux_sym_table_repeat1] = STATE(1210), - [aux_sym__block_quote_prefix_repeat1] = STATE(1308), - [aux_sym__inline_repeat1] = STATE(229), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_PIPE] = ACTIONS(693), - [anon_sym_LBRACE] = ACTIONS(695), - [sym__whitespace1] = ACTIONS(11), - [anon_sym_BSLASH] = ACTIONS(13), - [sym_quotation_marks] = ACTIONS(15), - [sym_ellipsis] = ACTIONS(15), - [sym_em_dash] = ACTIONS(15), - [sym_en_dash] = ACTIONS(17), - [sym_backslash_escape] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(19), - [anon_sym_LBRACE_] = ACTIONS(21), - [anon_sym__] = ACTIONS(23), - [anon_sym_LBRACE_STAR] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_LBRACE_EQ] = ACTIONS(29), - [anon_sym_LBRACE_PLUS] = ACTIONS(31), - [anon_sym_LBRACE_DASH] = ACTIONS(33), - [sym_symbol] = ACTIONS(15), - [anon_sym_LBRACE_CARET] = ACTIONS(35), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_LBRACE_TILDE] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(37), - [anon_sym_LBRACK_CARET] = ACTIONS(39), - [anon_sym_BANG_LBRACK] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [anon_sym_TODO] = ACTIONS(45), - [anon_sym_WIP] = ACTIONS(45), - [anon_sym_NOTE] = ACTIONS(47), - [anon_sym_INFO] = ACTIONS(47), - [anon_sym_XXX] = ACTIONS(47), - [sym_fixme] = ACTIONS(15), - [aux_sym__text_token1] = ACTIONS(49), - [sym__newline_inline] = ACTIONS(53), - [sym__heading1_begin] = ACTIONS(697), - [sym__heading2_begin] = ACTIONS(699), - [sym__heading3_begin] = ACTIONS(701), - [sym__heading4_begin] = ACTIONS(703), - [sym__heading5_begin] = ACTIONS(705), - [sym__heading6_begin] = ACTIONS(707), - [sym__div_begin] = ACTIONS(69), - [sym__code_block_begin] = ACTIONS(709), - [sym_list_marker_dash] = ACTIONS(73), - [sym_list_marker_star] = ACTIONS(75), - [sym_list_marker_plus] = ACTIONS(77), - [sym__list_marker_task_begin] = ACTIONS(79), - [sym_list_marker_definition] = ACTIONS(81), - [sym_list_marker_decimal_period] = ACTIONS(83), - [sym_list_marker_lower_alpha_period] = ACTIONS(85), - [sym_list_marker_upper_alpha_period] = ACTIONS(87), - [sym_list_marker_lower_roman_period] = ACTIONS(89), - [sym_list_marker_upper_roman_period] = ACTIONS(91), - [sym_list_marker_decimal_paren] = ACTIONS(93), - [sym_list_marker_lower_alpha_paren] = ACTIONS(95), - [sym_list_marker_upper_alpha_paren] = ACTIONS(97), - [sym_list_marker_lower_roman_paren] = ACTIONS(99), - [sym_list_marker_upper_roman_paren] = ACTIONS(101), - [sym_list_marker_decimal_parens] = ACTIONS(103), - [sym_list_marker_lower_alpha_parens] = ACTIONS(105), - [sym_list_marker_upper_alpha_parens] = ACTIONS(107), - [sym_list_marker_lower_roman_parens] = ACTIONS(109), - [sym_list_marker_upper_roman_parens] = ACTIONS(111), - [sym__block_quote_begin] = ACTIONS(711), - [sym__block_quote_continuation] = ACTIONS(115), - [sym__thematic_break_dash] = ACTIONS(713), - [sym__thematic_break_star] = ACTIONS(713), - [sym__footnote_begin] = ACTIONS(715), - [sym__verbatim_begin] = ACTIONS(121), - }, - [58] = { - [sym__block_element] = STATE(1455), - [sym__heading] = STATE(1455), - [sym_heading1] = STATE(1455), - [sym_heading2] = STATE(1455), - [sym_heading3] = STATE(1455), - [sym_heading4] = STATE(1455), - [sym_heading5] = STATE(1455), - [sym_heading6] = STATE(1455), - [sym_list] = STATE(1455), - [sym__list_dash] = STATE(1790), - [sym__list_item_dash] = STATE(1318), - [sym__list_plus] = STATE(1790), - [sym__list_item_plus] = STATE(1319), - [sym__list_star] = STATE(1790), - [sym__list_item_star] = STATE(1320), - [sym__list_task] = STATE(1790), - [sym__list_item_task] = STATE(1276), - [sym_list_marker_task] = STATE(49), - [sym__list_definition] = STATE(1790), - [sym__list_item_definition] = STATE(1503), - [sym__list_decimal_period] = STATE(1790), - [sym__list_item_decimal_period] = STATE(1501), - [sym__list_decimal_paren] = STATE(1790), - [sym__list_item_decimal_paren] = STATE(1497), - [sym__list_decimal_parens] = STATE(1790), - [sym__list_item_decimal_parens] = STATE(1496), - [sym__list_lower_alpha_period] = STATE(1790), - [sym__list_item_lower_alpha_period] = STATE(1495), - [sym__list_lower_alpha_paren] = STATE(1790), - [sym__list_item_lower_alpha_paren] = STATE(1491), - [sym__list_lower_alpha_parens] = STATE(1790), - [sym__list_item_lower_alpha_parens] = STATE(1488), - [sym__list_upper_alpha_period] = STATE(1790), - [sym__list_item_upper_alpha_period] = STATE(1487), - [sym__list_upper_alpha_paren] = STATE(1790), - [sym__list_item_upper_alpha_paren] = STATE(1486), - [sym__list_upper_alpha_parens] = STATE(1790), - [sym__list_item_upper_alpha_parens] = STATE(1484), - [sym__list_lower_roman_period] = STATE(1790), - [sym__list_item_lower_roman_period] = STATE(1483), - [sym__list_lower_roman_paren] = STATE(1790), - [sym__list_item_lower_roman_paren] = STATE(1482), - [sym__list_lower_roman_parens] = STATE(1790), - [sym__list_item_lower_roman_parens] = STATE(1481), - [sym__list_upper_roman_period] = STATE(1790), - [sym__list_item_upper_roman_period] = STATE(1479), - [sym__list_upper_roman_paren] = STATE(1790), - [sym__list_item_upper_roman_paren] = STATE(1478), - [sym__list_upper_roman_parens] = STATE(1790), - [sym__list_item_upper_roman_parens] = STATE(1476), - [sym_table] = STATE(1455), - [sym__table_content] = STATE(1210), - [sym_table_separator] = STATE(1210), - [sym_table_row] = STATE(1291), - [sym_footnote] = STATE(1455), - [sym_div] = STATE(1455), - [sym_div_marker_begin] = STATE(2165), - [sym_code_block] = STATE(1455), - [sym_raw_block] = STATE(1455), - [sym_thematic_break] = STATE(1455), - [sym_block_quote] = STATE(1455), - [sym__block_quote_content] = STATE(2039), - [sym__block_quote_prefix] = STATE(1390), - [sym_link_reference_definition] = STATE(1455), - [sym_block_attribute] = STATE(1455), - [sym__paragraph] = STATE(1455), - [sym__paragraph_content] = STATE(1859), - [sym__inline] = STATE(2311), - [sym__inline_element_with_whitespace] = STATE(229), - [sym__inline_element_with_newline] = STATE(229), - [sym__inline_core_element] = STATE(229), - [sym__hard_line_break] = STATE(716), - [sym_hard_line_break] = STATE(517), - [sym__smart_punctuation] = STATE(716), - [sym_autolink] = STATE(716), - [sym_emphasis] = STATE(716), - [sym_emphasis_begin] = STATE(283), - [sym_strong] = STATE(716), - [sym_strong_begin] = STATE(282), - [sym_highlighted] = STATE(716), - [sym_insert] = STATE(716), - [sym_delete] = STATE(716), - [sym_superscript] = STATE(716), - [sym_subscript] = STATE(716), - [sym_footnote_reference] = STATE(716), - [sym__image] = STATE(716), - [sym_full_reference_image] = STATE(716), - [sym_collapsed_reference_image] = STATE(716), - [sym_inline_image] = STATE(716), - [sym__image_description] = STATE(1412), - [sym__link] = STATE(716), - [sym_full_reference_link] = STATE(716), - [sym_collapsed_reference_link] = STATE(716), - [sym_inline_link] = STATE(716), - [sym_link_text] = STATE(1413), - [sym__comment_with_spaces] = STATE(716), - [sym_span] = STATE(716), - [sym_raw_inline] = STATE(716), - [sym_math] = STATE(716), - [sym_verbatim] = STATE(716), - [sym__todo_highlights] = STATE(716), - [sym_todo] = STATE(716), - [sym_note] = STATE(716), - [sym__symbol_fallback] = STATE(716), - [aux_sym__text] = STATE(562), - [aux_sym__list_dash_repeat1] = STATE(1318), - [aux_sym__list_plus_repeat1] = STATE(1319), - [aux_sym__list_star_repeat1] = STATE(1320), - [aux_sym__list_task_repeat1] = STATE(1276), - [aux_sym__list_definition_repeat1] = STATE(1503), - [aux_sym__list_decimal_period_repeat1] = STATE(1501), - [aux_sym__list_decimal_paren_repeat1] = STATE(1497), - [aux_sym__list_decimal_parens_repeat1] = STATE(1496), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(1495), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(1491), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(1488), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(1487), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(1486), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(1484), - [aux_sym__list_lower_roman_period_repeat1] = STATE(1483), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(1482), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(1481), - [aux_sym__list_upper_roman_period_repeat1] = STATE(1479), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(1478), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(1476), - [aux_sym_table_repeat1] = STATE(1210), - [aux_sym__block_quote_prefix_repeat1] = STATE(1308), - [aux_sym__inline_repeat1] = STATE(229), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_PIPE] = ACTIONS(693), - [anon_sym_LBRACE] = ACTIONS(695), - [sym__whitespace1] = ACTIONS(11), - [anon_sym_BSLASH] = ACTIONS(13), - [sym_quotation_marks] = ACTIONS(15), - [sym_ellipsis] = ACTIONS(15), - [sym_em_dash] = ACTIONS(15), - [sym_en_dash] = ACTIONS(17), - [sym_backslash_escape] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(19), - [anon_sym_LBRACE_] = ACTIONS(21), - [anon_sym__] = ACTIONS(23), - [anon_sym_LBRACE_STAR] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_LBRACE_EQ] = ACTIONS(29), - [anon_sym_LBRACE_PLUS] = ACTIONS(31), - [anon_sym_LBRACE_DASH] = ACTIONS(33), - [sym_symbol] = ACTIONS(15), - [anon_sym_LBRACE_CARET] = ACTIONS(35), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_LBRACE_TILDE] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(37), - [anon_sym_LBRACK_CARET] = ACTIONS(39), - [anon_sym_BANG_LBRACK] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [anon_sym_TODO] = ACTIONS(45), - [anon_sym_WIP] = ACTIONS(45), - [anon_sym_NOTE] = ACTIONS(47), - [anon_sym_INFO] = ACTIONS(47), - [anon_sym_XXX] = ACTIONS(47), - [sym_fixme] = ACTIONS(15), - [aux_sym__text_token1] = ACTIONS(49), - [sym__newline_inline] = ACTIONS(53), - [sym__heading1_begin] = ACTIONS(697), - [sym__heading2_begin] = ACTIONS(699), - [sym__heading3_begin] = ACTIONS(701), - [sym__heading4_begin] = ACTIONS(703), - [sym__heading5_begin] = ACTIONS(705), - [sym__heading6_begin] = ACTIONS(707), - [sym__div_begin] = ACTIONS(69), - [sym__code_block_begin] = ACTIONS(709), - [sym_list_marker_dash] = ACTIONS(73), - [sym_list_marker_star] = ACTIONS(75), - [sym_list_marker_plus] = ACTIONS(77), - [sym__list_marker_task_begin] = ACTIONS(79), - [sym_list_marker_definition] = ACTIONS(81), - [sym_list_marker_decimal_period] = ACTIONS(83), - [sym_list_marker_lower_alpha_period] = ACTIONS(85), - [sym_list_marker_upper_alpha_period] = ACTIONS(87), - [sym_list_marker_lower_roman_period] = ACTIONS(89), - [sym_list_marker_upper_roman_period] = ACTIONS(91), - [sym_list_marker_decimal_paren] = ACTIONS(93), - [sym_list_marker_lower_alpha_paren] = ACTIONS(95), - [sym_list_marker_upper_alpha_paren] = ACTIONS(97), - [sym_list_marker_lower_roman_paren] = ACTIONS(99), - [sym_list_marker_upper_roman_paren] = ACTIONS(101), - [sym_list_marker_decimal_parens] = ACTIONS(103), - [sym_list_marker_lower_alpha_parens] = ACTIONS(105), - [sym_list_marker_upper_alpha_parens] = ACTIONS(107), - [sym_list_marker_lower_roman_parens] = ACTIONS(109), - [sym_list_marker_upper_roman_parens] = ACTIONS(111), - [sym__block_quote_begin] = ACTIONS(711), - [sym__block_quote_continuation] = ACTIONS(115), - [sym__thematic_break_dash] = ACTIONS(713), - [sym__thematic_break_star] = ACTIONS(713), - [sym__footnote_begin] = ACTIONS(715), - [sym__verbatim_begin] = ACTIONS(121), - }, - [59] = { - [sym__block_element] = STATE(1950), - [sym_list] = STATE(1950), - [sym__list_dash] = STATE(1790), - [sym__list_item_dash] = STATE(1318), - [sym__list_plus] = STATE(1790), - [sym__list_item_plus] = STATE(1319), - [sym__list_star] = STATE(1790), - [sym__list_item_star] = STATE(1320), - [sym__list_task] = STATE(1790), - [sym__list_item_task] = STATE(1276), - [sym_list_marker_task] = STATE(49), - [sym__list_definition] = STATE(1790), - [sym__list_item_definition] = STATE(1503), - [sym__list_decimal_period] = STATE(1790), - [sym__list_item_decimal_period] = STATE(1501), - [sym__list_decimal_paren] = STATE(1790), - [sym__list_item_decimal_paren] = STATE(1497), - [sym__list_decimal_parens] = STATE(1790), - [sym__list_item_decimal_parens] = STATE(1496), - [sym__list_lower_alpha_period] = STATE(1790), - [sym__list_item_lower_alpha_period] = STATE(1495), - [sym__list_lower_alpha_paren] = STATE(1790), - [sym__list_item_lower_alpha_paren] = STATE(1491), - [sym__list_lower_alpha_parens] = STATE(1790), - [sym__list_item_lower_alpha_parens] = STATE(1488), - [sym__list_upper_alpha_period] = STATE(1790), - [sym__list_item_upper_alpha_period] = STATE(1487), - [sym__list_upper_alpha_paren] = STATE(1790), - [sym__list_item_upper_alpha_paren] = STATE(1486), - [sym__list_upper_alpha_parens] = STATE(1790), - [sym__list_item_upper_alpha_parens] = STATE(1484), - [sym__list_lower_roman_period] = STATE(1790), - [sym__list_item_lower_roman_period] = STATE(1483), - [sym__list_lower_roman_paren] = STATE(1790), - [sym__list_item_lower_roman_paren] = STATE(1482), - [sym__list_lower_roman_parens] = STATE(1790), - [sym__list_item_lower_roman_parens] = STATE(1481), - [sym__list_upper_roman_period] = STATE(1790), - [sym__list_item_upper_roman_period] = STATE(1479), - [sym__list_upper_roman_paren] = STATE(1790), - [sym__list_item_upper_roman_paren] = STATE(1478), - [sym__list_upper_roman_parens] = STATE(1790), - [sym__list_item_upper_roman_parens] = STATE(1476), - [sym_table] = STATE(1950), - [sym__table_content] = STATE(1210), - [sym_table_separator] = STATE(1210), - [sym_table_row] = STATE(1291), - [sym_footnote] = STATE(1950), - [sym_div] = STATE(1950), - [sym_div_marker_begin] = STATE(2165), - [sym_code_block] = STATE(1950), - [sym_raw_block] = STATE(1950), - [sym_thematic_break] = STATE(1950), - [sym_block_quote] = STATE(1950), - [sym__block_quote_prefix] = STATE(1390), - [sym_link_reference_definition] = STATE(1950), - [sym_block_attribute] = STATE(1950), - [sym__paragraph] = STATE(1950), - [sym__paragraph_content] = STATE(1859), - [sym__inline] = STATE(2311), - [sym__inline_element_with_whitespace] = STATE(229), - [sym__inline_element_with_newline] = STATE(229), - [sym__inline_core_element] = STATE(229), - [sym__hard_line_break] = STATE(716), - [sym_hard_line_break] = STATE(517), - [sym__smart_punctuation] = STATE(716), - [sym_autolink] = STATE(716), - [sym_emphasis] = STATE(716), - [sym_emphasis_begin] = STATE(283), - [sym_strong] = STATE(716), - [sym_strong_begin] = STATE(282), - [sym_highlighted] = STATE(716), - [sym_insert] = STATE(716), - [sym_delete] = STATE(716), - [sym_superscript] = STATE(716), - [sym_subscript] = STATE(716), - [sym_footnote_reference] = STATE(716), - [sym__image] = STATE(716), - [sym_full_reference_image] = STATE(716), - [sym_collapsed_reference_image] = STATE(716), - [sym_inline_image] = STATE(716), - [sym__image_description] = STATE(1412), - [sym__link] = STATE(716), - [sym_full_reference_link] = STATE(716), - [sym_collapsed_reference_link] = STATE(716), - [sym_inline_link] = STATE(716), - [sym_link_text] = STATE(1413), - [sym__comment_with_spaces] = STATE(716), - [sym_span] = STATE(716), - [sym_raw_inline] = STATE(716), - [sym_math] = STATE(716), - [sym_verbatim] = STATE(716), - [sym__todo_highlights] = STATE(716), - [sym_todo] = STATE(716), - [sym_note] = STATE(716), - [sym__symbol_fallback] = STATE(716), - [aux_sym__text] = STATE(562), - [aux_sym__list_dash_repeat1] = STATE(1318), - [aux_sym__list_plus_repeat1] = STATE(1319), - [aux_sym__list_star_repeat1] = STATE(1320), - [aux_sym__list_task_repeat1] = STATE(1276), - [aux_sym__list_definition_repeat1] = STATE(1503), - [aux_sym__list_decimal_period_repeat1] = STATE(1501), - [aux_sym__list_decimal_paren_repeat1] = STATE(1497), - [aux_sym__list_decimal_parens_repeat1] = STATE(1496), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(1495), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(1491), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(1488), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(1487), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(1486), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(1484), - [aux_sym__list_lower_roman_period_repeat1] = STATE(1483), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(1482), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(1481), - [aux_sym__list_upper_roman_period_repeat1] = STATE(1479), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(1478), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(1476), - [aux_sym_table_repeat1] = STATE(1210), - [aux_sym__block_quote_prefix_repeat1] = STATE(1308), - [aux_sym__inline_repeat1] = STATE(229), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_PIPE] = ACTIONS(693), - [anon_sym_LBRACE] = ACTIONS(695), - [sym__whitespace1] = ACTIONS(11), - [anon_sym_BSLASH] = ACTIONS(13), - [sym_quotation_marks] = ACTIONS(15), - [sym_ellipsis] = ACTIONS(15), - [sym_em_dash] = ACTIONS(15), - [sym_en_dash] = ACTIONS(17), - [sym_backslash_escape] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(19), - [anon_sym_LBRACE_] = ACTIONS(21), - [anon_sym__] = ACTIONS(23), - [anon_sym_LBRACE_STAR] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_LBRACE_EQ] = ACTIONS(29), - [anon_sym_LBRACE_PLUS] = ACTIONS(31), - [anon_sym_LBRACE_DASH] = ACTIONS(33), - [sym_symbol] = ACTIONS(15), - [anon_sym_LBRACE_CARET] = ACTIONS(35), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_LBRACE_TILDE] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(37), - [anon_sym_LBRACK_CARET] = ACTIONS(39), - [anon_sym_BANG_LBRACK] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [anon_sym_TODO] = ACTIONS(45), - [anon_sym_WIP] = ACTIONS(45), - [anon_sym_NOTE] = ACTIONS(47), - [anon_sym_INFO] = ACTIONS(47), - [anon_sym_XXX] = ACTIONS(47), - [sym_fixme] = ACTIONS(15), - [aux_sym__text_token1] = ACTIONS(49), - [sym__block_close] = ACTIONS(717), - [sym__newline_inline] = ACTIONS(53), - [sym__div_begin] = ACTIONS(69), - [sym__code_block_begin] = ACTIONS(709), - [sym_list_marker_dash] = ACTIONS(73), - [sym_list_marker_star] = ACTIONS(75), - [sym_list_marker_plus] = ACTIONS(77), - [sym__list_marker_task_begin] = ACTIONS(79), - [sym_list_marker_definition] = ACTIONS(81), - [sym_list_marker_decimal_period] = ACTIONS(83), - [sym_list_marker_lower_alpha_period] = ACTIONS(85), - [sym_list_marker_upper_alpha_period] = ACTIONS(87), - [sym_list_marker_lower_roman_period] = ACTIONS(89), - [sym_list_marker_upper_roman_period] = ACTIONS(91), - [sym_list_marker_decimal_paren] = ACTIONS(93), - [sym_list_marker_lower_alpha_paren] = ACTIONS(95), - [sym_list_marker_upper_alpha_paren] = ACTIONS(97), - [sym_list_marker_lower_roman_paren] = ACTIONS(99), - [sym_list_marker_upper_roman_paren] = ACTIONS(101), - [sym_list_marker_decimal_parens] = ACTIONS(103), - [sym_list_marker_lower_alpha_parens] = ACTIONS(105), - [sym_list_marker_upper_alpha_parens] = ACTIONS(107), - [sym_list_marker_lower_roman_parens] = ACTIONS(109), - [sym_list_marker_upper_roman_parens] = ACTIONS(111), - [sym__block_quote_begin] = ACTIONS(711), - [sym__block_quote_continuation] = ACTIONS(719), - [sym__thematic_break_dash] = ACTIONS(713), - [sym__thematic_break_star] = ACTIONS(713), - [sym__footnote_begin] = ACTIONS(715), - [sym__verbatim_begin] = ACTIONS(121), - }, - [60] = { - [sym__table_content] = STATE(73), - [sym_table_separator] = STATE(73), - [sym_table_row] = STATE(223), - [sym_table_caption] = STATE(436), - [sym__block_quote_prefix] = STATE(2345), - [aux_sym_table_repeat1] = STATE(73), - [aux_sym__block_quote_prefix_repeat1] = STATE(1599), - [anon_sym_LBRACK] = ACTIONS(722), - [anon_sym_PIPE] = ACTIONS(724), - [anon_sym_LBRACE] = ACTIONS(722), - [sym__whitespace1] = ACTIONS(726), - [anon_sym_BSLASH] = ACTIONS(722), - [sym_quotation_marks] = ACTIONS(726), - [sym_ellipsis] = ACTIONS(726), - [sym_em_dash] = ACTIONS(726), - [sym_en_dash] = ACTIONS(722), - [sym_backslash_escape] = ACTIONS(722), - [anon_sym_LT] = ACTIONS(726), - [anon_sym_LBRACE_] = ACTIONS(726), - [anon_sym__] = ACTIONS(726), - [anon_sym_LBRACE_STAR] = ACTIONS(726), - [anon_sym_STAR] = ACTIONS(726), - [anon_sym_LBRACE_EQ] = ACTIONS(726), - [anon_sym_LBRACE_PLUS] = ACTIONS(726), - [anon_sym_LBRACE_DASH] = ACTIONS(726), - [sym_symbol] = ACTIONS(726), - [anon_sym_LBRACE_CARET] = ACTIONS(726), - [anon_sym_CARET] = ACTIONS(726), - [anon_sym_LBRACE_TILDE] = ACTIONS(726), - [anon_sym_TILDE] = ACTIONS(726), - [anon_sym_LBRACK_CARET] = ACTIONS(726), - [anon_sym_BANG_LBRACK] = ACTIONS(726), - [anon_sym_DOLLAR] = ACTIONS(726), - [anon_sym_TODO] = ACTIONS(726), - [anon_sym_WIP] = ACTIONS(726), - [anon_sym_NOTE] = ACTIONS(726), - [anon_sym_INFO] = ACTIONS(726), - [anon_sym_XXX] = ACTIONS(726), - [sym_fixme] = ACTIONS(726), - [aux_sym__text_token1] = ACTIONS(722), - [sym__block_close] = ACTIONS(726), - [sym__newline] = ACTIONS(728), - [sym__newline_inline] = ACTIONS(726), - [sym__heading1_begin] = ACTIONS(726), - [sym__heading2_begin] = ACTIONS(726), - [sym__heading3_begin] = ACTIONS(726), - [sym__heading4_begin] = ACTIONS(726), - [sym__heading5_begin] = ACTIONS(726), - [sym__heading6_begin] = ACTIONS(726), - [sym__div_begin] = ACTIONS(726), - [sym__code_block_begin] = ACTIONS(726), - [sym_list_marker_dash] = ACTIONS(726), - [sym_list_marker_star] = ACTIONS(726), - [sym_list_marker_plus] = ACTIONS(726), - [sym__list_marker_task_begin] = ACTIONS(726), - [sym_list_marker_definition] = ACTIONS(726), - [sym_list_marker_decimal_period] = ACTIONS(726), - [sym_list_marker_lower_alpha_period] = ACTIONS(726), - [sym_list_marker_upper_alpha_period] = ACTIONS(726), - [sym_list_marker_lower_roman_period] = ACTIONS(726), - [sym_list_marker_upper_roman_period] = ACTIONS(726), - [sym_list_marker_decimal_paren] = ACTIONS(726), - [sym_list_marker_lower_alpha_paren] = ACTIONS(726), - [sym_list_marker_upper_alpha_paren] = ACTIONS(726), - [sym_list_marker_lower_roman_paren] = ACTIONS(726), - [sym_list_marker_upper_roman_paren] = ACTIONS(726), - [sym_list_marker_decimal_parens] = ACTIONS(726), - [sym_list_marker_lower_alpha_parens] = ACTIONS(726), - [sym_list_marker_upper_alpha_parens] = ACTIONS(726), - [sym_list_marker_lower_roman_parens] = ACTIONS(726), - [sym_list_marker_upper_roman_parens] = ACTIONS(726), - [sym__block_quote_begin] = ACTIONS(726), - [sym__block_quote_continuation] = ACTIONS(730), - [sym__thematic_break_dash] = ACTIONS(726), - [sym__thematic_break_star] = ACTIONS(726), - [sym__footnote_begin] = ACTIONS(726), - [sym__table_caption_begin] = ACTIONS(732), - [sym__verbatim_begin] = ACTIONS(726), - }, - [61] = { - [sym__inline] = STATE(1844), - [sym__inline_element_with_whitespace] = STATE(198), - [sym__inline_element_with_newline] = STATE(198), - [sym__inline_core_element] = STATE(198), - [sym__inline_line] = STATE(772), - [sym__hard_line_break] = STATE(539), - [sym_hard_line_break] = STATE(512), - [sym__smart_punctuation] = STATE(539), - [sym_autolink] = STATE(539), - [sym_emphasis] = STATE(539), - [sym_emphasis_begin] = STATE(299), - [sym_strong] = STATE(539), - [sym_strong_begin] = STATE(298), - [sym_highlighted] = STATE(539), - [sym_insert] = STATE(539), - [sym_delete] = STATE(539), - [sym_superscript] = STATE(539), - [sym_subscript] = STATE(539), - [sym_footnote_reference] = STATE(539), - [sym__image] = STATE(539), - [sym_full_reference_image] = STATE(539), - [sym_collapsed_reference_image] = STATE(539), - [sym_inline_image] = STATE(539), - [sym__image_description] = STATE(1414), - [sym__link] = STATE(539), - [sym_full_reference_link] = STATE(539), - [sym_collapsed_reference_link] = STATE(539), - [sym_inline_link] = STATE(539), - [sym_link_text] = STATE(1411), - [sym__comment_with_spaces] = STATE(539), - [sym_span] = STATE(539), - [sym_raw_inline] = STATE(539), - [sym_math] = STATE(539), - [sym_verbatim] = STATE(539), - [sym__todo_highlights] = STATE(539), - [sym_todo] = STATE(539), - [sym_note] = STATE(539), - [sym__symbol_fallback] = STATE(539), - [aux_sym__text] = STATE(520), - [aux_sym_table_caption_repeat1] = STATE(62), - [aux_sym__inline_repeat1] = STATE(198), - [anon_sym_LBRACK] = ACTIONS(734), - [anon_sym_PIPE] = ACTIONS(736), - [anon_sym_NULL] = ACTIONS(738), - [anon_sym_LBRACE] = ACTIONS(740), - [sym__whitespace1] = ACTIONS(742), - [anon_sym_BSLASH] = ACTIONS(744), - [sym_quotation_marks] = ACTIONS(736), - [sym_ellipsis] = ACTIONS(736), - [sym_em_dash] = ACTIONS(736), - [sym_en_dash] = ACTIONS(740), - [sym_backslash_escape] = ACTIONS(740), - [anon_sym_LT] = ACTIONS(746), - [anon_sym_LBRACE_] = ACTIONS(748), - [anon_sym__] = ACTIONS(750), - [anon_sym_LBRACE_STAR] = ACTIONS(752), - [anon_sym_STAR] = ACTIONS(754), - [anon_sym_LBRACE_EQ] = ACTIONS(756), - [anon_sym_LBRACE_PLUS] = ACTIONS(758), - [anon_sym_LBRACE_DASH] = ACTIONS(760), - [sym_symbol] = ACTIONS(736), - [anon_sym_LBRACE_CARET] = ACTIONS(762), - [anon_sym_CARET] = ACTIONS(762), - [anon_sym_LBRACE_TILDE] = ACTIONS(764), - [anon_sym_TILDE] = ACTIONS(764), - [anon_sym_LBRACK_CARET] = ACTIONS(766), - [anon_sym_BANG_LBRACK] = ACTIONS(768), - [anon_sym_DOLLAR] = ACTIONS(770), - [anon_sym_TODO] = ACTIONS(772), - [anon_sym_WIP] = ACTIONS(772), - [anon_sym_NOTE] = ACTIONS(774), - [anon_sym_INFO] = ACTIONS(774), - [anon_sym_XXX] = ACTIONS(774), - [sym_fixme] = ACTIONS(736), - [aux_sym__text_token1] = ACTIONS(776), - [sym__newline_inline] = ACTIONS(778), - [sym__table_caption_end] = ACTIONS(738), - [sym__verbatim_begin] = ACTIONS(780), - }, - [62] = { - [sym__inline] = STATE(1844), - [sym__inline_element_with_whitespace] = STATE(198), - [sym__inline_element_with_newline] = STATE(198), - [sym__inline_core_element] = STATE(198), - [sym__inline_line] = STATE(772), - [sym__hard_line_break] = STATE(539), - [sym_hard_line_break] = STATE(512), - [sym__smart_punctuation] = STATE(539), - [sym_autolink] = STATE(539), - [sym_emphasis] = STATE(539), - [sym_emphasis_begin] = STATE(299), - [sym_strong] = STATE(539), - [sym_strong_begin] = STATE(298), - [sym_highlighted] = STATE(539), - [sym_insert] = STATE(539), - [sym_delete] = STATE(539), - [sym_superscript] = STATE(539), - [sym_subscript] = STATE(539), - [sym_footnote_reference] = STATE(539), - [sym__image] = STATE(539), - [sym_full_reference_image] = STATE(539), - [sym_collapsed_reference_image] = STATE(539), - [sym_inline_image] = STATE(539), - [sym__image_description] = STATE(1414), - [sym__link] = STATE(539), - [sym_full_reference_link] = STATE(539), - [sym_collapsed_reference_link] = STATE(539), - [sym_inline_link] = STATE(539), - [sym_link_text] = STATE(1411), - [sym__comment_with_spaces] = STATE(539), - [sym_span] = STATE(539), - [sym_raw_inline] = STATE(539), - [sym_math] = STATE(539), - [sym_verbatim] = STATE(539), - [sym__todo_highlights] = STATE(539), - [sym_todo] = STATE(539), - [sym_note] = STATE(539), - [sym__symbol_fallback] = STATE(539), - [aux_sym__text] = STATE(520), - [aux_sym_table_caption_repeat1] = STATE(62), - [aux_sym__inline_repeat1] = STATE(198), - [anon_sym_LBRACK] = ACTIONS(782), - [anon_sym_PIPE] = ACTIONS(785), - [anon_sym_NULL] = ACTIONS(788), - [anon_sym_LBRACE] = ACTIONS(790), - [sym__whitespace1] = ACTIONS(793), - [anon_sym_BSLASH] = ACTIONS(796), - [sym_quotation_marks] = ACTIONS(785), - [sym_ellipsis] = ACTIONS(785), - [sym_em_dash] = ACTIONS(785), - [sym_en_dash] = ACTIONS(790), - [sym_backslash_escape] = ACTIONS(790), - [anon_sym_LT] = ACTIONS(799), - [anon_sym_LBRACE_] = ACTIONS(802), - [anon_sym__] = ACTIONS(805), - [anon_sym_LBRACE_STAR] = ACTIONS(808), - [anon_sym_STAR] = ACTIONS(811), - [anon_sym_LBRACE_EQ] = ACTIONS(814), - [anon_sym_LBRACE_PLUS] = ACTIONS(817), - [anon_sym_LBRACE_DASH] = ACTIONS(820), - [sym_symbol] = ACTIONS(785), - [anon_sym_LBRACE_CARET] = ACTIONS(823), - [anon_sym_CARET] = ACTIONS(823), - [anon_sym_LBRACE_TILDE] = ACTIONS(826), - [anon_sym_TILDE] = ACTIONS(826), - [anon_sym_LBRACK_CARET] = ACTIONS(829), - [anon_sym_BANG_LBRACK] = ACTIONS(832), - [anon_sym_DOLLAR] = ACTIONS(835), - [anon_sym_TODO] = ACTIONS(838), - [anon_sym_WIP] = ACTIONS(838), - [anon_sym_NOTE] = ACTIONS(841), - [anon_sym_INFO] = ACTIONS(841), - [anon_sym_XXX] = ACTIONS(841), - [sym_fixme] = ACTIONS(785), - [aux_sym__text_token1] = ACTIONS(844), - [sym__newline_inline] = ACTIONS(847), - [sym__table_caption_end] = ACTIONS(788), - [sym__verbatim_begin] = ACTIONS(850), - }, - [63] = { - [sym__inline] = STATE(1980), - [sym__inline_element_with_whitespace] = STATE(242), - [sym__inline_element_with_newline] = STATE(242), - [sym__inline_core_element] = STATE(242), - [sym__hard_line_break] = STATE(627), - [sym_hard_line_break] = STATE(523), - [sym__smart_punctuation] = STATE(627), - [sym_autolink] = STATE(627), - [sym_emphasis] = STATE(627), - [sym_emphasis_begin] = STATE(296), - [sym_strong] = STATE(627), - [sym_strong_begin] = STATE(295), - [sym_highlighted] = STATE(627), - [sym_insert] = STATE(627), - [sym_delete] = STATE(627), - [sym_superscript] = STATE(627), - [sym_subscript] = STATE(627), - [sym_footnote_reference] = STATE(627), - [sym__image] = STATE(627), - [sym_full_reference_image] = STATE(627), - [sym_collapsed_reference_image] = STATE(627), - [sym_inline_image] = STATE(627), - [sym__image_description] = STATE(1448), - [sym__link] = STATE(627), - [sym_full_reference_link] = STATE(627), - [sym_collapsed_reference_link] = STATE(627), - [sym_inline_link] = STATE(627), - [sym_link_text] = STATE(1453), - [sym__comment_with_spaces] = STATE(627), - [sym_span] = STATE(627), - [sym_raw_inline] = STATE(627), - [sym_math] = STATE(627), - [sym_verbatim] = STATE(627), - [sym__todo_highlights] = STATE(627), - [sym_todo] = STATE(627), - [sym_note] = STATE(627), - [sym__symbol_fallback] = STATE(627), - [aux_sym__text] = STATE(560), - [aux_sym__inline_repeat1] = STATE(242), - [anon_sym_LBRACK] = ACTIONS(853), - [anon_sym_RBRACK] = ACTIONS(856), - [anon_sym_PIPE] = ACTIONS(858), - [anon_sym_NULL] = ACTIONS(861), - [anon_sym_LBRACE] = ACTIONS(863), - [sym__whitespace1] = ACTIONS(866), - [anon_sym_BSLASH] = ACTIONS(869), - [sym_quotation_marks] = ACTIONS(858), - [sym_ellipsis] = ACTIONS(858), - [sym_em_dash] = ACTIONS(858), - [sym_en_dash] = ACTIONS(863), - [sym_backslash_escape] = ACTIONS(863), - [anon_sym_LT] = ACTIONS(872), - [anon_sym_LBRACE_] = ACTIONS(875), - [anon_sym__] = ACTIONS(878), - [anon_sym_LBRACE_STAR] = ACTIONS(881), - [anon_sym_STAR] = ACTIONS(884), - [anon_sym_LBRACE_EQ] = ACTIONS(887), - [anon_sym_LBRACE_PLUS] = ACTIONS(890), - [anon_sym_LBRACE_DASH] = ACTIONS(893), - [sym_symbol] = ACTIONS(858), - [anon_sym_LBRACE_CARET] = ACTIONS(896), - [anon_sym_CARET] = ACTIONS(896), - [anon_sym_LBRACE_TILDE] = ACTIONS(899), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_LBRACK_CARET] = ACTIONS(902), - [anon_sym_BANG_LBRACK] = ACTIONS(905), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(910), - [anon_sym_TODO] = ACTIONS(913), - [anon_sym_WIP] = ACTIONS(913), - [anon_sym_NOTE] = ACTIONS(916), - [anon_sym_INFO] = ACTIONS(916), - [anon_sym_XXX] = ACTIONS(916), - [sym_fixme] = ACTIONS(858), - [aux_sym__text_token1] = ACTIONS(919), - [sym__newline] = ACTIONS(861), - [sym__newline_inline] = ACTIONS(922), - [sym__verbatim_begin] = ACTIONS(925), - }, - [64] = { - [sym__inline] = STATE(1844), - [sym__inline_element_with_whitespace] = STATE(198), - [sym__inline_element_with_newline] = STATE(198), - [sym__inline_core_element] = STATE(198), - [sym__inline_line] = STATE(772), - [sym__hard_line_break] = STATE(539), - [sym_hard_line_break] = STATE(512), - [sym__smart_punctuation] = STATE(539), - [sym_autolink] = STATE(539), - [sym_emphasis] = STATE(539), - [sym_emphasis_begin] = STATE(299), - [sym_strong] = STATE(539), - [sym_strong_begin] = STATE(298), - [sym_highlighted] = STATE(539), - [sym_insert] = STATE(539), - [sym_delete] = STATE(539), - [sym_superscript] = STATE(539), - [sym_subscript] = STATE(539), - [sym_footnote_reference] = STATE(539), - [sym__image] = STATE(539), - [sym_full_reference_image] = STATE(539), - [sym_collapsed_reference_image] = STATE(539), - [sym_inline_image] = STATE(539), - [sym__image_description] = STATE(1414), - [sym__link] = STATE(539), - [sym_full_reference_link] = STATE(539), - [sym_collapsed_reference_link] = STATE(539), - [sym_inline_link] = STATE(539), - [sym_link_text] = STATE(1411), - [sym__comment_with_spaces] = STATE(539), - [sym_span] = STATE(539), - [sym_raw_inline] = STATE(539), - [sym_math] = STATE(539), - [sym_verbatim] = STATE(539), - [sym__todo_highlights] = STATE(539), - [sym_todo] = STATE(539), - [sym_note] = STATE(539), - [sym__symbol_fallback] = STATE(539), - [aux_sym__text] = STATE(520), - [aux_sym_table_caption_repeat1] = STATE(62), - [aux_sym__inline_repeat1] = STATE(198), - [anon_sym_LBRACK] = ACTIONS(734), - [anon_sym_PIPE] = ACTIONS(736), - [anon_sym_NULL] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(740), - [sym__whitespace1] = ACTIONS(742), - [anon_sym_BSLASH] = ACTIONS(744), - [sym_quotation_marks] = ACTIONS(736), - [sym_ellipsis] = ACTIONS(736), - [sym_em_dash] = ACTIONS(736), - [sym_en_dash] = ACTIONS(740), - [sym_backslash_escape] = ACTIONS(740), - [anon_sym_LT] = ACTIONS(746), - [anon_sym_LBRACE_] = ACTIONS(748), - [anon_sym__] = ACTIONS(750), - [anon_sym_LBRACE_STAR] = ACTIONS(752), - [anon_sym_STAR] = ACTIONS(754), - [anon_sym_LBRACE_EQ] = ACTIONS(756), - [anon_sym_LBRACE_PLUS] = ACTIONS(758), - [anon_sym_LBRACE_DASH] = ACTIONS(760), - [sym_symbol] = ACTIONS(736), - [anon_sym_LBRACE_CARET] = ACTIONS(762), - [anon_sym_CARET] = ACTIONS(762), - [anon_sym_LBRACE_TILDE] = ACTIONS(764), - [anon_sym_TILDE] = ACTIONS(764), - [anon_sym_LBRACK_CARET] = ACTIONS(766), - [anon_sym_BANG_LBRACK] = ACTIONS(768), - [anon_sym_DOLLAR] = ACTIONS(770), - [anon_sym_TODO] = ACTIONS(772), - [anon_sym_WIP] = ACTIONS(772), - [anon_sym_NOTE] = ACTIONS(774), - [anon_sym_INFO] = ACTIONS(774), - [anon_sym_XXX] = ACTIONS(774), - [sym_fixme] = ACTIONS(736), - [aux_sym__text_token1] = ACTIONS(776), - [sym__newline_inline] = ACTIONS(778), - [sym__table_caption_end] = ACTIONS(928), - [sym__verbatim_begin] = ACTIONS(780), - }, - [65] = { - [sym__inline] = STATE(1844), - [sym__inline_element_with_whitespace] = STATE(198), - [sym__inline_element_with_newline] = STATE(198), - [sym__inline_core_element] = STATE(198), - [sym__inline_line] = STATE(772), - [sym__hard_line_break] = STATE(539), - [sym_hard_line_break] = STATE(512), - [sym__smart_punctuation] = STATE(539), - [sym_autolink] = STATE(539), - [sym_emphasis] = STATE(539), - [sym_emphasis_begin] = STATE(299), - [sym_strong] = STATE(539), - [sym_strong_begin] = STATE(298), - [sym_highlighted] = STATE(539), - [sym_insert] = STATE(539), - [sym_delete] = STATE(539), - [sym_superscript] = STATE(539), - [sym_subscript] = STATE(539), - [sym_footnote_reference] = STATE(539), - [sym__image] = STATE(539), - [sym_full_reference_image] = STATE(539), - [sym_collapsed_reference_image] = STATE(539), - [sym_inline_image] = STATE(539), - [sym__image_description] = STATE(1414), - [sym__link] = STATE(539), - [sym_full_reference_link] = STATE(539), - [sym_collapsed_reference_link] = STATE(539), - [sym_inline_link] = STATE(539), - [sym_link_text] = STATE(1411), - [sym__comment_with_spaces] = STATE(539), - [sym_span] = STATE(539), - [sym_raw_inline] = STATE(539), - [sym_math] = STATE(539), - [sym_verbatim] = STATE(539), - [sym__todo_highlights] = STATE(539), - [sym_todo] = STATE(539), - [sym_note] = STATE(539), - [sym__symbol_fallback] = STATE(539), - [aux_sym__text] = STATE(520), - [aux_sym_table_caption_repeat1] = STATE(62), - [aux_sym__inline_repeat1] = STATE(198), - [anon_sym_LBRACK] = ACTIONS(734), - [anon_sym_PIPE] = ACTIONS(736), - [anon_sym_NULL] = ACTIONS(930), - [anon_sym_LBRACE] = ACTIONS(740), - [sym__whitespace1] = ACTIONS(742), - [anon_sym_BSLASH] = ACTIONS(744), - [sym_quotation_marks] = ACTIONS(736), - [sym_ellipsis] = ACTIONS(736), - [sym_em_dash] = ACTIONS(736), - [sym_en_dash] = ACTIONS(740), - [sym_backslash_escape] = ACTIONS(740), - [anon_sym_LT] = ACTIONS(746), - [anon_sym_LBRACE_] = ACTIONS(748), - [anon_sym__] = ACTIONS(750), - [anon_sym_LBRACE_STAR] = ACTIONS(752), - [anon_sym_STAR] = ACTIONS(754), - [anon_sym_LBRACE_EQ] = ACTIONS(756), - [anon_sym_LBRACE_PLUS] = ACTIONS(758), - [anon_sym_LBRACE_DASH] = ACTIONS(760), - [sym_symbol] = ACTIONS(736), - [anon_sym_LBRACE_CARET] = ACTIONS(762), - [anon_sym_CARET] = ACTIONS(762), - [anon_sym_LBRACE_TILDE] = ACTIONS(764), - [anon_sym_TILDE] = ACTIONS(764), - [anon_sym_LBRACK_CARET] = ACTIONS(766), - [anon_sym_BANG_LBRACK] = ACTIONS(768), - [anon_sym_DOLLAR] = ACTIONS(770), - [anon_sym_TODO] = ACTIONS(772), - [anon_sym_WIP] = ACTIONS(772), - [anon_sym_NOTE] = ACTIONS(774), - [anon_sym_INFO] = ACTIONS(774), - [anon_sym_XXX] = ACTIONS(774), - [sym_fixme] = ACTIONS(736), - [aux_sym__text_token1] = ACTIONS(776), - [sym__newline_inline] = ACTIONS(778), - [sym__table_caption_end] = ACTIONS(930), - [sym__verbatim_begin] = ACTIONS(780), - }, - [66] = { - [sym__table_content] = STATE(74), - [sym_table_separator] = STATE(74), - [sym_table_row] = STATE(214), - [sym_table_caption] = STATE(450), - [sym__block_quote_prefix] = STATE(2352), - [aux_sym_table_repeat1] = STATE(74), - [aux_sym__block_quote_prefix_repeat1] = STATE(1599), - [anon_sym_LBRACK] = ACTIONS(722), - [anon_sym_PIPE] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(722), - [sym__whitespace1] = ACTIONS(726), - [anon_sym_BSLASH] = ACTIONS(722), - [sym_quotation_marks] = ACTIONS(726), - [sym_ellipsis] = ACTIONS(726), - [sym_em_dash] = ACTIONS(726), - [sym_en_dash] = ACTIONS(722), - [sym_backslash_escape] = ACTIONS(722), - [anon_sym_LT] = ACTIONS(726), - [anon_sym_LBRACE_] = ACTIONS(726), - [anon_sym__] = ACTIONS(726), - [anon_sym_LBRACE_STAR] = ACTIONS(726), - [anon_sym_STAR] = ACTIONS(726), - [anon_sym_LBRACE_EQ] = ACTIONS(726), - [anon_sym_LBRACE_PLUS] = ACTIONS(726), - [anon_sym_LBRACE_DASH] = ACTIONS(726), - [sym_symbol] = ACTIONS(726), - [anon_sym_LBRACE_CARET] = ACTIONS(726), - [anon_sym_CARET] = ACTIONS(726), - [anon_sym_LBRACE_TILDE] = ACTIONS(726), - [anon_sym_TILDE] = ACTIONS(726), - [anon_sym_LBRACK_CARET] = ACTIONS(726), - [anon_sym_BANG_LBRACK] = ACTIONS(726), - [anon_sym_DOLLAR] = ACTIONS(726), - [anon_sym_TODO] = ACTIONS(726), - [anon_sym_WIP] = ACTIONS(726), - [anon_sym_NOTE] = ACTIONS(726), - [anon_sym_INFO] = ACTIONS(726), - [anon_sym_XXX] = ACTIONS(726), - [sym_fixme] = ACTIONS(726), - [aux_sym__text_token1] = ACTIONS(722), - [sym__newline] = ACTIONS(934), - [sym__newline_inline] = ACTIONS(726), - [sym__heading1_begin] = ACTIONS(726), - [sym__heading2_begin] = ACTIONS(726), - [sym__heading3_begin] = ACTIONS(726), - [sym__heading4_begin] = ACTIONS(726), - [sym__heading5_begin] = ACTIONS(726), - [sym__heading6_begin] = ACTIONS(726), - [sym__div_begin] = ACTIONS(726), - [sym__code_block_begin] = ACTIONS(726), - [sym_list_marker_dash] = ACTIONS(726), - [sym_list_marker_star] = ACTIONS(726), - [sym_list_marker_plus] = ACTIONS(726), - [sym__list_marker_task_begin] = ACTIONS(726), - [sym_list_marker_definition] = ACTIONS(726), - [sym_list_marker_decimal_period] = ACTIONS(726), - [sym_list_marker_lower_alpha_period] = ACTIONS(726), - [sym_list_marker_upper_alpha_period] = ACTIONS(726), - [sym_list_marker_lower_roman_period] = ACTIONS(726), - [sym_list_marker_upper_roman_period] = ACTIONS(726), - [sym_list_marker_decimal_paren] = ACTIONS(726), - [sym_list_marker_lower_alpha_paren] = ACTIONS(726), - [sym_list_marker_upper_alpha_paren] = ACTIONS(726), - [sym_list_marker_lower_roman_paren] = ACTIONS(726), - [sym_list_marker_upper_roman_paren] = ACTIONS(726), - [sym_list_marker_decimal_parens] = ACTIONS(726), - [sym_list_marker_lower_alpha_parens] = ACTIONS(726), - [sym_list_marker_upper_alpha_parens] = ACTIONS(726), - [sym_list_marker_lower_roman_parens] = ACTIONS(726), - [sym_list_marker_upper_roman_parens] = ACTIONS(726), - [sym__block_quote_begin] = ACTIONS(726), - [sym__block_quote_continuation] = ACTIONS(730), - [sym__thematic_break_dash] = ACTIONS(726), - [sym__thematic_break_star] = ACTIONS(726), - [sym__footnote_begin] = ACTIONS(726), - [sym__footnote_end] = ACTIONS(726), - [sym__table_caption_begin] = ACTIONS(936), - [sym__verbatim_begin] = ACTIONS(726), - }, - [67] = { - [sym__table_content] = STATE(77), - [sym_table_separator] = STATE(77), - [sym_table_row] = STATE(211), - [sym_table_caption] = STATE(393), - [sym__block_quote_prefix] = STATE(2242), - [aux_sym_table_repeat1] = STATE(77), - [aux_sym__block_quote_prefix_repeat1] = STATE(1599), - [ts_builtin_sym_end] = ACTIONS(726), - [anon_sym_LBRACK] = ACTIONS(722), - [anon_sym_PIPE] = ACTIONS(938), - [anon_sym_LBRACE] = ACTIONS(722), - [sym__whitespace1] = ACTIONS(726), - [anon_sym_BSLASH] = ACTIONS(722), - [sym_quotation_marks] = ACTIONS(726), - [sym_ellipsis] = ACTIONS(726), - [sym_em_dash] = ACTIONS(726), - [sym_en_dash] = ACTIONS(722), - [sym_backslash_escape] = ACTIONS(722), - [anon_sym_LT] = ACTIONS(726), - [anon_sym_LBRACE_] = ACTIONS(726), - [anon_sym__] = ACTIONS(726), - [anon_sym_LBRACE_STAR] = ACTIONS(726), - [anon_sym_STAR] = ACTIONS(726), - [anon_sym_LBRACE_EQ] = ACTIONS(726), - [anon_sym_LBRACE_PLUS] = ACTIONS(726), - [anon_sym_LBRACE_DASH] = ACTIONS(726), - [sym_symbol] = ACTIONS(726), - [anon_sym_LBRACE_CARET] = ACTIONS(726), - [anon_sym_CARET] = ACTIONS(726), - [anon_sym_LBRACE_TILDE] = ACTIONS(726), - [anon_sym_TILDE] = ACTIONS(726), - [anon_sym_LBRACK_CARET] = ACTIONS(726), - [anon_sym_BANG_LBRACK] = ACTIONS(726), - [anon_sym_DOLLAR] = ACTIONS(726), - [anon_sym_TODO] = ACTIONS(726), - [anon_sym_WIP] = ACTIONS(726), - [anon_sym_NOTE] = ACTIONS(726), - [anon_sym_INFO] = ACTIONS(726), - [anon_sym_XXX] = ACTIONS(726), - [sym_fixme] = ACTIONS(726), - [aux_sym__text_token1] = ACTIONS(722), - [sym__newline] = ACTIONS(940), - [sym__newline_inline] = ACTIONS(726), - [sym__heading1_begin] = ACTIONS(726), - [sym__heading2_begin] = ACTIONS(726), - [sym__heading3_begin] = ACTIONS(726), - [sym__heading4_begin] = ACTIONS(726), - [sym__heading5_begin] = ACTIONS(726), - [sym__heading6_begin] = ACTIONS(726), - [sym__div_begin] = ACTIONS(726), - [sym__code_block_begin] = ACTIONS(726), - [sym_list_marker_dash] = ACTIONS(726), - [sym_list_marker_star] = ACTIONS(726), - [sym_list_marker_plus] = ACTIONS(726), - [sym__list_marker_task_begin] = ACTIONS(726), - [sym_list_marker_definition] = ACTIONS(726), - [sym_list_marker_decimal_period] = ACTIONS(726), - [sym_list_marker_lower_alpha_period] = ACTIONS(726), - [sym_list_marker_upper_alpha_period] = ACTIONS(726), - [sym_list_marker_lower_roman_period] = ACTIONS(726), - [sym_list_marker_upper_roman_period] = ACTIONS(726), - [sym_list_marker_decimal_paren] = ACTIONS(726), - [sym_list_marker_lower_alpha_paren] = ACTIONS(726), - [sym_list_marker_upper_alpha_paren] = ACTIONS(726), - [sym_list_marker_lower_roman_paren] = ACTIONS(726), - [sym_list_marker_upper_roman_paren] = ACTIONS(726), - [sym_list_marker_decimal_parens] = ACTIONS(726), - [sym_list_marker_lower_alpha_parens] = ACTIONS(726), - [sym_list_marker_upper_alpha_parens] = ACTIONS(726), - [sym_list_marker_lower_roman_parens] = ACTIONS(726), - [sym_list_marker_upper_roman_parens] = ACTIONS(726), - [sym__block_quote_begin] = ACTIONS(726), - [sym__block_quote_continuation] = ACTIONS(730), - [sym__thematic_break_dash] = ACTIONS(726), - [sym__thematic_break_star] = ACTIONS(726), - [sym__footnote_begin] = ACTIONS(726), - [sym__table_caption_begin] = ACTIONS(942), - [sym__verbatim_begin] = ACTIONS(726), - }, - [68] = { - [sym__inline] = STATE(1844), - [sym__inline_element_with_whitespace] = STATE(198), - [sym__inline_element_with_newline] = STATE(198), - [sym__inline_core_element] = STATE(198), - [sym__inline_line] = STATE(772), - [sym__hard_line_break] = STATE(539), - [sym_hard_line_break] = STATE(512), - [sym__smart_punctuation] = STATE(539), - [sym_autolink] = STATE(539), - [sym_emphasis] = STATE(539), - [sym_emphasis_begin] = STATE(299), - [sym_strong] = STATE(539), - [sym_strong_begin] = STATE(298), - [sym_highlighted] = STATE(539), - [sym_insert] = STATE(539), - [sym_delete] = STATE(539), - [sym_superscript] = STATE(539), - [sym_subscript] = STATE(539), - [sym_footnote_reference] = STATE(539), - [sym__image] = STATE(539), - [sym_full_reference_image] = STATE(539), - [sym_collapsed_reference_image] = STATE(539), - [sym_inline_image] = STATE(539), - [sym__image_description] = STATE(1414), - [sym__link] = STATE(539), - [sym_full_reference_link] = STATE(539), - [sym_collapsed_reference_link] = STATE(539), - [sym_inline_link] = STATE(539), - [sym_link_text] = STATE(1411), - [sym__comment_with_spaces] = STATE(539), - [sym_span] = STATE(539), - [sym_raw_inline] = STATE(539), - [sym_math] = STATE(539), - [sym_verbatim] = STATE(539), - [sym__todo_highlights] = STATE(539), - [sym_todo] = STATE(539), - [sym_note] = STATE(539), - [sym__symbol_fallback] = STATE(539), - [aux_sym__text] = STATE(520), - [aux_sym_table_caption_repeat1] = STATE(62), - [aux_sym__inline_repeat1] = STATE(198), - [anon_sym_LBRACK] = ACTIONS(734), - [anon_sym_PIPE] = ACTIONS(736), - [anon_sym_NULL] = ACTIONS(944), - [anon_sym_LBRACE] = ACTIONS(740), - [sym__whitespace1] = ACTIONS(742), - [anon_sym_BSLASH] = ACTIONS(744), - [sym_quotation_marks] = ACTIONS(736), - [sym_ellipsis] = ACTIONS(736), - [sym_em_dash] = ACTIONS(736), - [sym_en_dash] = ACTIONS(740), - [sym_backslash_escape] = ACTIONS(740), - [anon_sym_LT] = ACTIONS(746), - [anon_sym_LBRACE_] = ACTIONS(748), - [anon_sym__] = ACTIONS(750), - [anon_sym_LBRACE_STAR] = ACTIONS(752), - [anon_sym_STAR] = ACTIONS(754), - [anon_sym_LBRACE_EQ] = ACTIONS(756), - [anon_sym_LBRACE_PLUS] = ACTIONS(758), - [anon_sym_LBRACE_DASH] = ACTIONS(760), - [sym_symbol] = ACTIONS(736), - [anon_sym_LBRACE_CARET] = ACTIONS(762), - [anon_sym_CARET] = ACTIONS(762), - [anon_sym_LBRACE_TILDE] = ACTIONS(764), - [anon_sym_TILDE] = ACTIONS(764), - [anon_sym_LBRACK_CARET] = ACTIONS(766), - [anon_sym_BANG_LBRACK] = ACTIONS(768), - [anon_sym_DOLLAR] = ACTIONS(770), - [anon_sym_TODO] = ACTIONS(772), - [anon_sym_WIP] = ACTIONS(772), - [anon_sym_NOTE] = ACTIONS(774), - [anon_sym_INFO] = ACTIONS(774), - [anon_sym_XXX] = ACTIONS(774), - [sym_fixme] = ACTIONS(736), - [aux_sym__text_token1] = ACTIONS(776), - [sym__newline_inline] = ACTIONS(778), - [sym__table_caption_end] = ACTIONS(944), - [sym__verbatim_begin] = ACTIONS(780), - }, - [69] = { - [sym__inline] = STATE(1844), - [sym__inline_element_with_whitespace] = STATE(198), - [sym__inline_element_with_newline] = STATE(198), - [sym__inline_core_element] = STATE(198), - [sym__inline_line] = STATE(772), - [sym__hard_line_break] = STATE(539), - [sym_hard_line_break] = STATE(512), - [sym__smart_punctuation] = STATE(539), - [sym_autolink] = STATE(539), - [sym_emphasis] = STATE(539), - [sym_emphasis_begin] = STATE(299), - [sym_strong] = STATE(539), - [sym_strong_begin] = STATE(298), - [sym_highlighted] = STATE(539), - [sym_insert] = STATE(539), - [sym_delete] = STATE(539), - [sym_superscript] = STATE(539), - [sym_subscript] = STATE(539), - [sym_footnote_reference] = STATE(539), - [sym__image] = STATE(539), - [sym_full_reference_image] = STATE(539), - [sym_collapsed_reference_image] = STATE(539), - [sym_inline_image] = STATE(539), - [sym__image_description] = STATE(1414), - [sym__link] = STATE(539), - [sym_full_reference_link] = STATE(539), - [sym_collapsed_reference_link] = STATE(539), - [sym_inline_link] = STATE(539), - [sym_link_text] = STATE(1411), - [sym__comment_with_spaces] = STATE(539), - [sym_span] = STATE(539), - [sym_raw_inline] = STATE(539), - [sym_math] = STATE(539), - [sym_verbatim] = STATE(539), - [sym__todo_highlights] = STATE(539), - [sym_todo] = STATE(539), - [sym_note] = STATE(539), - [sym__symbol_fallback] = STATE(539), - [aux_sym__text] = STATE(520), - [aux_sym_table_caption_repeat1] = STATE(62), - [aux_sym__inline_repeat1] = STATE(198), - [anon_sym_LBRACK] = ACTIONS(734), - [anon_sym_PIPE] = ACTIONS(736), - [anon_sym_NULL] = ACTIONS(946), - [anon_sym_LBRACE] = ACTIONS(740), - [sym__whitespace1] = ACTIONS(742), - [anon_sym_BSLASH] = ACTIONS(744), - [sym_quotation_marks] = ACTIONS(736), - [sym_ellipsis] = ACTIONS(736), - [sym_em_dash] = ACTIONS(736), - [sym_en_dash] = ACTIONS(740), - [sym_backslash_escape] = ACTIONS(740), - [anon_sym_LT] = ACTIONS(746), - [anon_sym_LBRACE_] = ACTIONS(748), - [anon_sym__] = ACTIONS(750), - [anon_sym_LBRACE_STAR] = ACTIONS(752), - [anon_sym_STAR] = ACTIONS(754), - [anon_sym_LBRACE_EQ] = ACTIONS(756), - [anon_sym_LBRACE_PLUS] = ACTIONS(758), - [anon_sym_LBRACE_DASH] = ACTIONS(760), - [sym_symbol] = ACTIONS(736), - [anon_sym_LBRACE_CARET] = ACTIONS(762), - [anon_sym_CARET] = ACTIONS(762), - [anon_sym_LBRACE_TILDE] = ACTIONS(764), - [anon_sym_TILDE] = ACTIONS(764), - [anon_sym_LBRACK_CARET] = ACTIONS(766), - [anon_sym_BANG_LBRACK] = ACTIONS(768), - [anon_sym_DOLLAR] = ACTIONS(770), - [anon_sym_TODO] = ACTIONS(772), - [anon_sym_WIP] = ACTIONS(772), - [anon_sym_NOTE] = ACTIONS(774), - [anon_sym_INFO] = ACTIONS(774), - [anon_sym_XXX] = ACTIONS(774), - [sym_fixme] = ACTIONS(736), - [aux_sym__text_token1] = ACTIONS(776), - [sym__newline_inline] = ACTIONS(778), - [sym__table_caption_end] = ACTIONS(946), - [sym__verbatim_begin] = ACTIONS(780), - }, - [70] = { - [sym__inline] = STATE(2028), - [sym__inline_element_with_whitespace] = STATE(239), - [sym__inline_element_with_newline] = STATE(239), - [sym__inline_core_element] = STATE(239), - [sym__hard_line_break] = STATE(624), - [sym_hard_line_break] = STATE(527), - [sym__smart_punctuation] = STATE(624), - [sym_autolink] = STATE(624), - [sym_emphasis] = STATE(624), - [sym_emphasis_begin] = STATE(281), - [sym_strong] = STATE(624), - [sym_strong_begin] = STATE(276), - [sym_highlighted] = STATE(624), - [sym_insert] = STATE(624), - [sym_delete] = STATE(624), - [sym_superscript] = STATE(624), - [sym_subscript] = STATE(624), - [sym_footnote_reference] = STATE(624), - [sym__image] = STATE(624), - [sym_full_reference_image] = STATE(624), - [sym_collapsed_reference_image] = STATE(624), - [sym_inline_image] = STATE(624), - [sym__image_description] = STATE(1450), - [sym__link] = STATE(624), - [sym_full_reference_link] = STATE(624), - [sym_collapsed_reference_link] = STATE(624), - [sym_inline_link] = STATE(624), - [sym_link_text] = STATE(1451), - [sym__comment_with_spaces] = STATE(624), - [sym_span] = STATE(624), - [sym_raw_inline] = STATE(624), - [sym_math] = STATE(624), - [sym_verbatim] = STATE(624), - [sym__todo_highlights] = STATE(624), - [sym_todo] = STATE(624), - [sym_note] = STATE(624), - [sym__symbol_fallback] = STATE(624), - [aux_sym__text] = STATE(595), - [aux_sym__inline_repeat1] = STATE(239), - [anon_sym_LBRACK] = ACTIONS(948), - [anon_sym_PIPE] = ACTIONS(951), - [anon_sym_NULL] = ACTIONS(861), - [anon_sym_LBRACE] = ACTIONS(954), - [sym__whitespace1] = ACTIONS(957), - [anon_sym_BSLASH] = ACTIONS(960), - [sym_quotation_marks] = ACTIONS(951), - [sym_ellipsis] = ACTIONS(951), - [sym_em_dash] = ACTIONS(951), - [sym_en_dash] = ACTIONS(954), - [sym_backslash_escape] = ACTIONS(954), - [anon_sym_LT] = ACTIONS(963), - [anon_sym_LBRACE_] = ACTIONS(966), - [anon_sym__] = ACTIONS(969), - [anon_sym_LBRACE_STAR] = ACTIONS(972), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_LBRACE_EQ] = ACTIONS(978), - [anon_sym_LBRACE_PLUS] = ACTIONS(981), - [anon_sym_LBRACE_DASH] = ACTIONS(984), - [sym_symbol] = ACTIONS(951), - [anon_sym_LBRACE_CARET] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_LBRACE_TILDE] = ACTIONS(990), - [anon_sym_TILDE] = ACTIONS(990), - [anon_sym_LBRACK_CARET] = ACTIONS(993), - [anon_sym_BANG_LBRACK] = ACTIONS(996), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(999), - [anon_sym_TODO] = ACTIONS(1002), - [anon_sym_WIP] = ACTIONS(1002), - [anon_sym_NOTE] = ACTIONS(1005), - [anon_sym_INFO] = ACTIONS(1005), - [anon_sym_XXX] = ACTIONS(1005), - [sym_fixme] = ACTIONS(951), - [aux_sym__text_token1] = ACTIONS(1008), - [sym__newline] = ACTIONS(861), - [sym__newline_inline] = ACTIONS(1011), - [sym__verbatim_begin] = ACTIONS(1014), - }, - [71] = { - [sym__inline] = STATE(1980), - [sym__inline_element_with_whitespace] = STATE(242), - [sym__inline_element_with_newline] = STATE(242), - [sym__inline_core_element] = STATE(242), - [sym__hard_line_break] = STATE(627), - [sym_hard_line_break] = STATE(523), - [sym__smart_punctuation] = STATE(627), - [sym_autolink] = STATE(627), - [sym_emphasis] = STATE(627), - [sym_emphasis_begin] = STATE(296), - [sym_strong] = STATE(627), - [sym_strong_begin] = STATE(295), - [sym_highlighted] = STATE(627), - [sym_insert] = STATE(627), - [sym_delete] = STATE(627), - [sym_superscript] = STATE(627), - [sym_subscript] = STATE(627), - [sym_footnote_reference] = STATE(627), - [sym__image] = STATE(627), - [sym_full_reference_image] = STATE(627), - [sym_collapsed_reference_image] = STATE(627), - [sym_inline_image] = STATE(627), - [sym__image_description] = STATE(1448), - [sym__link] = STATE(627), - [sym_full_reference_link] = STATE(627), - [sym_collapsed_reference_link] = STATE(627), - [sym_inline_link] = STATE(627), - [sym_link_text] = STATE(1453), - [sym__comment_with_spaces] = STATE(627), - [sym_span] = STATE(627), - [sym_raw_inline] = STATE(627), - [sym_math] = STATE(627), - [sym_verbatim] = STATE(627), - [sym__todo_highlights] = STATE(627), - [sym_todo] = STATE(627), - [sym_note] = STATE(627), - [sym__symbol_fallback] = STATE(627), - [aux_sym__text] = STATE(560), - [aux_sym__inline_repeat1] = STATE(242), - [anon_sym_LBRACK] = ACTIONS(853), - [anon_sym_RBRACK] = ACTIONS(856), - [anon_sym_PIPE] = ACTIONS(858), - [anon_sym_LBRACE] = ACTIONS(863), - [sym__whitespace1] = ACTIONS(866), - [anon_sym_BSLASH] = ACTIONS(869), - [sym_quotation_marks] = ACTIONS(858), - [sym_ellipsis] = ACTIONS(858), - [sym_em_dash] = ACTIONS(858), - [sym_en_dash] = ACTIONS(863), - [sym_backslash_escape] = ACTIONS(863), - [anon_sym_LT] = ACTIONS(872), - [anon_sym_LBRACE_] = ACTIONS(875), - [anon_sym__] = ACTIONS(878), - [anon_sym_LBRACE_STAR] = ACTIONS(881), - [anon_sym_STAR] = ACTIONS(884), - [anon_sym_LBRACE_EQ] = ACTIONS(887), - [anon_sym_LBRACE_PLUS] = ACTIONS(890), - [anon_sym_LBRACE_DASH] = ACTIONS(893), - [anon_sym_DASH_RBRACE] = ACTIONS(861), - [sym_symbol] = ACTIONS(858), - [anon_sym_LBRACE_CARET] = ACTIONS(896), - [anon_sym_CARET] = ACTIONS(896), - [anon_sym_LBRACE_TILDE] = ACTIONS(899), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_LBRACK_CARET] = ACTIONS(902), - [anon_sym_BANG_LBRACK] = ACTIONS(905), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(910), - [anon_sym_TODO] = ACTIONS(913), - [anon_sym_WIP] = ACTIONS(913), - [anon_sym_NOTE] = ACTIONS(916), - [anon_sym_INFO] = ACTIONS(916), - [anon_sym_XXX] = ACTIONS(916), - [sym_fixme] = ACTIONS(858), - [aux_sym__text_token1] = ACTIONS(919), - [sym__newline_inline] = ACTIONS(922), - [sym__verbatim_begin] = ACTIONS(925), - }, - [72] = { - [sym__inline] = STATE(1980), - [sym__inline_element_with_whitespace] = STATE(242), - [sym__inline_element_with_newline] = STATE(242), - [sym__inline_core_element] = STATE(242), - [sym__hard_line_break] = STATE(627), - [sym_hard_line_break] = STATE(523), - [sym__smart_punctuation] = STATE(627), - [sym_autolink] = STATE(627), - [sym_emphasis] = STATE(627), - [sym_emphasis_begin] = STATE(296), - [sym_strong] = STATE(627), - [sym_strong_begin] = STATE(295), - [sym_highlighted] = STATE(627), - [sym_insert] = STATE(627), - [sym_delete] = STATE(627), - [sym_superscript] = STATE(627), - [sym_subscript] = STATE(627), - [sym_footnote_reference] = STATE(627), - [sym__image] = STATE(627), - [sym_full_reference_image] = STATE(627), - [sym_collapsed_reference_image] = STATE(627), - [sym_inline_image] = STATE(627), - [sym__image_description] = STATE(1448), - [sym__link] = STATE(627), - [sym_full_reference_link] = STATE(627), - [sym_collapsed_reference_link] = STATE(627), - [sym_inline_link] = STATE(627), - [sym_link_text] = STATE(1453), - [sym__comment_with_spaces] = STATE(627), - [sym_span] = STATE(627), - [sym_raw_inline] = STATE(627), - [sym_math] = STATE(627), - [sym_verbatim] = STATE(627), - [sym__todo_highlights] = STATE(627), - [sym_todo] = STATE(627), - [sym_note] = STATE(627), - [sym__symbol_fallback] = STATE(627), - [aux_sym__text] = STATE(560), - [aux_sym__inline_repeat1] = STATE(242), - [anon_sym_LBRACK] = ACTIONS(853), - [anon_sym_RBRACK] = ACTIONS(856), - [anon_sym_PIPE] = ACTIONS(858), - [anon_sym_LBRACE] = ACTIONS(863), - [sym__whitespace1] = ACTIONS(866), - [anon_sym_BSLASH] = ACTIONS(869), - [sym_quotation_marks] = ACTIONS(858), - [sym_ellipsis] = ACTIONS(858), - [sym_em_dash] = ACTIONS(858), - [sym_en_dash] = ACTIONS(863), - [sym_backslash_escape] = ACTIONS(863), - [anon_sym_LT] = ACTIONS(872), - [anon_sym_LBRACE_] = ACTIONS(875), - [anon_sym__] = ACTIONS(878), - [anon_sym_LBRACE_STAR] = ACTIONS(881), - [anon_sym_STAR] = ACTIONS(884), - [anon_sym_LBRACE_EQ] = ACTIONS(887), - [anon_sym_LBRACE_PLUS] = ACTIONS(890), - [anon_sym_LBRACE_DASH] = ACTIONS(893), - [sym_symbol] = ACTIONS(858), - [anon_sym_LBRACE_CARET] = ACTIONS(896), - [anon_sym_CARET] = ACTIONS(896), - [anon_sym_LBRACE_TILDE] = ACTIONS(899), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_LBRACK_CARET] = ACTIONS(902), - [anon_sym_BANG_LBRACK] = ACTIONS(905), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(910), - [anon_sym_TODO] = ACTIONS(913), - [anon_sym_WIP] = ACTIONS(913), - [anon_sym_NOTE] = ACTIONS(916), - [anon_sym_INFO] = ACTIONS(916), - [anon_sym_XXX] = ACTIONS(916), - [sym_fixme] = ACTIONS(858), - [aux_sym__text_token1] = ACTIONS(919), - [sym__eof_or_newline] = ACTIONS(861), - [sym__newline_inline] = ACTIONS(922), - [sym__verbatim_begin] = ACTIONS(925), - }, - [73] = { - [sym__table_content] = STATE(73), - [sym_table_separator] = STATE(73), - [sym_table_row] = STATE(223), - [sym__block_quote_prefix] = STATE(2345), - [aux_sym_table_repeat1] = STATE(73), - [aux_sym__block_quote_prefix_repeat1] = STATE(1599), - [anon_sym_LBRACK] = ACTIONS(1017), - [anon_sym_PIPE] = ACTIONS(1019), - [anon_sym_LBRACE] = ACTIONS(1017), - [sym__whitespace1] = ACTIONS(1022), - [anon_sym_BSLASH] = ACTIONS(1017), - [sym_quotation_marks] = ACTIONS(1022), - [sym_ellipsis] = ACTIONS(1022), - [sym_em_dash] = ACTIONS(1022), - [sym_en_dash] = ACTIONS(1017), - [sym_backslash_escape] = ACTIONS(1017), - [anon_sym_LT] = ACTIONS(1022), - [anon_sym_LBRACE_] = ACTIONS(1022), - [anon_sym__] = ACTIONS(1022), - [anon_sym_LBRACE_STAR] = ACTIONS(1022), - [anon_sym_STAR] = ACTIONS(1022), - [anon_sym_LBRACE_EQ] = ACTIONS(1022), - [anon_sym_LBRACE_PLUS] = ACTIONS(1022), - [anon_sym_LBRACE_DASH] = ACTIONS(1022), - [sym_symbol] = ACTIONS(1022), - [anon_sym_LBRACE_CARET] = ACTIONS(1022), - [anon_sym_CARET] = ACTIONS(1022), - [anon_sym_LBRACE_TILDE] = ACTIONS(1022), - [anon_sym_TILDE] = ACTIONS(1022), - [anon_sym_LBRACK_CARET] = ACTIONS(1022), - [anon_sym_BANG_LBRACK] = ACTIONS(1022), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_TODO] = ACTIONS(1022), - [anon_sym_WIP] = ACTIONS(1022), - [anon_sym_NOTE] = ACTIONS(1022), - [anon_sym_INFO] = ACTIONS(1022), - [anon_sym_XXX] = ACTIONS(1022), - [sym_fixme] = ACTIONS(1022), - [aux_sym__text_token1] = ACTIONS(1017), - [sym__block_close] = ACTIONS(1022), - [sym__newline] = ACTIONS(1022), - [sym__newline_inline] = ACTIONS(1022), - [sym__heading1_begin] = ACTIONS(1022), - [sym__heading2_begin] = ACTIONS(1022), - [sym__heading3_begin] = ACTIONS(1022), - [sym__heading4_begin] = ACTIONS(1022), - [sym__heading5_begin] = ACTIONS(1022), - [sym__heading6_begin] = ACTIONS(1022), - [sym__div_begin] = ACTIONS(1022), - [sym__code_block_begin] = ACTIONS(1022), - [sym_list_marker_dash] = ACTIONS(1022), - [sym_list_marker_star] = ACTIONS(1022), - [sym_list_marker_plus] = ACTIONS(1022), - [sym__list_marker_task_begin] = ACTIONS(1022), - [sym_list_marker_definition] = ACTIONS(1022), - [sym_list_marker_decimal_period] = ACTIONS(1022), - [sym_list_marker_lower_alpha_period] = ACTIONS(1022), - [sym_list_marker_upper_alpha_period] = ACTIONS(1022), - [sym_list_marker_lower_roman_period] = ACTIONS(1022), - [sym_list_marker_upper_roman_period] = ACTIONS(1022), - [sym_list_marker_decimal_paren] = ACTIONS(1022), - [sym_list_marker_lower_alpha_paren] = ACTIONS(1022), - [sym_list_marker_upper_alpha_paren] = ACTIONS(1022), - [sym_list_marker_lower_roman_paren] = ACTIONS(1022), - [sym_list_marker_upper_roman_paren] = ACTIONS(1022), - [sym_list_marker_decimal_parens] = ACTIONS(1022), - [sym_list_marker_lower_alpha_parens] = ACTIONS(1022), - [sym_list_marker_upper_alpha_parens] = ACTIONS(1022), - [sym_list_marker_lower_roman_parens] = ACTIONS(1022), - [sym_list_marker_upper_roman_parens] = ACTIONS(1022), - [sym__block_quote_begin] = ACTIONS(1022), - [sym__block_quote_continuation] = ACTIONS(1024), - [sym__thematic_break_dash] = ACTIONS(1022), - [sym__thematic_break_star] = ACTIONS(1022), - [sym__footnote_begin] = ACTIONS(1022), - [sym__table_caption_begin] = ACTIONS(1022), - [sym__verbatim_begin] = ACTIONS(1022), - }, - [74] = { - [sym__table_content] = STATE(74), - [sym_table_separator] = STATE(74), - [sym_table_row] = STATE(214), - [sym__block_quote_prefix] = STATE(2352), - [aux_sym_table_repeat1] = STATE(74), - [aux_sym__block_quote_prefix_repeat1] = STATE(1599), - [anon_sym_LBRACK] = ACTIONS(1017), - [anon_sym_PIPE] = ACTIONS(1027), - [anon_sym_LBRACE] = ACTIONS(1017), - [sym__whitespace1] = ACTIONS(1022), - [anon_sym_BSLASH] = ACTIONS(1017), - [sym_quotation_marks] = ACTIONS(1022), - [sym_ellipsis] = ACTIONS(1022), - [sym_em_dash] = ACTIONS(1022), - [sym_en_dash] = ACTIONS(1017), - [sym_backslash_escape] = ACTIONS(1017), - [anon_sym_LT] = ACTIONS(1022), - [anon_sym_LBRACE_] = ACTIONS(1022), - [anon_sym__] = ACTIONS(1022), - [anon_sym_LBRACE_STAR] = ACTIONS(1022), - [anon_sym_STAR] = ACTIONS(1022), - [anon_sym_LBRACE_EQ] = ACTIONS(1022), - [anon_sym_LBRACE_PLUS] = ACTIONS(1022), - [anon_sym_LBRACE_DASH] = ACTIONS(1022), - [sym_symbol] = ACTIONS(1022), - [anon_sym_LBRACE_CARET] = ACTIONS(1022), - [anon_sym_CARET] = ACTIONS(1022), - [anon_sym_LBRACE_TILDE] = ACTIONS(1022), - [anon_sym_TILDE] = ACTIONS(1022), - [anon_sym_LBRACK_CARET] = ACTIONS(1022), - [anon_sym_BANG_LBRACK] = ACTIONS(1022), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_TODO] = ACTIONS(1022), - [anon_sym_WIP] = ACTIONS(1022), - [anon_sym_NOTE] = ACTIONS(1022), - [anon_sym_INFO] = ACTIONS(1022), - [anon_sym_XXX] = ACTIONS(1022), - [sym_fixme] = ACTIONS(1022), - [aux_sym__text_token1] = ACTIONS(1017), - [sym__newline] = ACTIONS(1022), - [sym__newline_inline] = ACTIONS(1022), - [sym__heading1_begin] = ACTIONS(1022), - [sym__heading2_begin] = ACTIONS(1022), - [sym__heading3_begin] = ACTIONS(1022), - [sym__heading4_begin] = ACTIONS(1022), - [sym__heading5_begin] = ACTIONS(1022), - [sym__heading6_begin] = ACTIONS(1022), - [sym__div_begin] = ACTIONS(1022), - [sym__code_block_begin] = ACTIONS(1022), - [sym_list_marker_dash] = ACTIONS(1022), - [sym_list_marker_star] = ACTIONS(1022), - [sym_list_marker_plus] = ACTIONS(1022), - [sym__list_marker_task_begin] = ACTIONS(1022), - [sym_list_marker_definition] = ACTIONS(1022), - [sym_list_marker_decimal_period] = ACTIONS(1022), - [sym_list_marker_lower_alpha_period] = ACTIONS(1022), - [sym_list_marker_upper_alpha_period] = ACTIONS(1022), - [sym_list_marker_lower_roman_period] = ACTIONS(1022), - [sym_list_marker_upper_roman_period] = ACTIONS(1022), - [sym_list_marker_decimal_paren] = ACTIONS(1022), - [sym_list_marker_lower_alpha_paren] = ACTIONS(1022), - [sym_list_marker_upper_alpha_paren] = ACTIONS(1022), - [sym_list_marker_lower_roman_paren] = ACTIONS(1022), - [sym_list_marker_upper_roman_paren] = ACTIONS(1022), - [sym_list_marker_decimal_parens] = ACTIONS(1022), - [sym_list_marker_lower_alpha_parens] = ACTIONS(1022), - [sym_list_marker_upper_alpha_parens] = ACTIONS(1022), - [sym_list_marker_lower_roman_parens] = ACTIONS(1022), - [sym_list_marker_upper_roman_parens] = ACTIONS(1022), - [sym__block_quote_begin] = ACTIONS(1022), - [sym__block_quote_continuation] = ACTIONS(1024), - [sym__thematic_break_dash] = ACTIONS(1022), - [sym__thematic_break_star] = ACTIONS(1022), - [sym__footnote_begin] = ACTIONS(1022), - [sym__footnote_end] = ACTIONS(1022), - [sym__table_caption_begin] = ACTIONS(1022), - [sym__verbatim_begin] = ACTIONS(1022), - }, - [75] = { - [sym__inline] = STATE(1980), - [sym__inline_element_with_whitespace] = STATE(242), - [sym__inline_element_with_newline] = STATE(242), - [sym__inline_core_element] = STATE(242), - [sym__hard_line_break] = STATE(627), - [sym_hard_line_break] = STATE(523), - [sym__smart_punctuation] = STATE(627), - [sym_autolink] = STATE(627), - [sym_emphasis] = STATE(627), - [sym_emphasis_begin] = STATE(296), - [sym_strong] = STATE(627), - [sym_strong_begin] = STATE(295), - [sym_highlighted] = STATE(627), - [sym_insert] = STATE(627), - [sym_delete] = STATE(627), - [sym_superscript] = STATE(627), - [sym_subscript] = STATE(627), - [sym_footnote_reference] = STATE(627), - [sym__image] = STATE(627), - [sym_full_reference_image] = STATE(627), - [sym_collapsed_reference_image] = STATE(627), - [sym_inline_image] = STATE(627), - [sym__image_description] = STATE(1448), - [sym__link] = STATE(627), - [sym_full_reference_link] = STATE(627), - [sym_collapsed_reference_link] = STATE(627), - [sym_inline_link] = STATE(627), - [sym_link_text] = STATE(1453), - [sym__comment_with_spaces] = STATE(627), - [sym_span] = STATE(627), - [sym_raw_inline] = STATE(627), - [sym_math] = STATE(627), - [sym_verbatim] = STATE(627), - [sym__todo_highlights] = STATE(627), - [sym_todo] = STATE(627), - [sym_note] = STATE(627), - [sym__symbol_fallback] = STATE(627), - [aux_sym__text] = STATE(560), - [aux_sym__inline_repeat1] = STATE(242), - [anon_sym_LBRACK] = ACTIONS(853), - [anon_sym_RBRACK] = ACTIONS(856), - [anon_sym_PIPE] = ACTIONS(858), - [anon_sym_LBRACE] = ACTIONS(863), - [sym__whitespace1] = ACTIONS(866), - [anon_sym_BSLASH] = ACTIONS(869), - [sym_quotation_marks] = ACTIONS(858), - [sym_ellipsis] = ACTIONS(858), - [sym_em_dash] = ACTIONS(858), - [sym_en_dash] = ACTIONS(863), - [sym_backslash_escape] = ACTIONS(863), - [anon_sym_LT] = ACTIONS(872), - [anon_sym_LBRACE_] = ACTIONS(875), - [anon_sym__] = ACTIONS(878), - [anon_sym_LBRACE_STAR] = ACTIONS(881), - [anon_sym_STAR] = ACTIONS(884), - [anon_sym_LBRACE_EQ] = ACTIONS(887), - [anon_sym_LBRACE_PLUS] = ACTIONS(890), - [anon_sym_LBRACE_DASH] = ACTIONS(893), - [sym_symbol] = ACTIONS(858), - [anon_sym_LBRACE_CARET] = ACTIONS(896), - [anon_sym_CARET] = ACTIONS(1030), - [anon_sym_CARET_RBRACE] = ACTIONS(861), - [anon_sym_LBRACE_TILDE] = ACTIONS(899), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_LBRACK_CARET] = ACTIONS(902), - [anon_sym_BANG_LBRACK] = ACTIONS(905), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(910), - [anon_sym_TODO] = ACTIONS(913), - [anon_sym_WIP] = ACTIONS(913), - [anon_sym_NOTE] = ACTIONS(916), - [anon_sym_INFO] = ACTIONS(916), - [anon_sym_XXX] = ACTIONS(916), - [sym_fixme] = ACTIONS(858), - [aux_sym__text_token1] = ACTIONS(919), - [sym__newline_inline] = ACTIONS(922), - [sym__verbatim_begin] = ACTIONS(925), - }, - [76] = { - [sym__inline] = STATE(1980), - [sym__inline_element_with_whitespace] = STATE(242), - [sym__inline_element_with_newline] = STATE(242), - [sym__inline_core_element] = STATE(242), - [sym__hard_line_break] = STATE(627), - [sym_hard_line_break] = STATE(523), - [sym__smart_punctuation] = STATE(627), - [sym_autolink] = STATE(627), - [sym_emphasis] = STATE(627), - [sym_emphasis_begin] = STATE(296), - [sym_strong] = STATE(627), - [sym_strong_begin] = STATE(295), - [sym_highlighted] = STATE(627), - [sym_insert] = STATE(627), - [sym_delete] = STATE(627), - [sym_superscript] = STATE(627), - [sym_subscript] = STATE(627), - [sym_footnote_reference] = STATE(627), - [sym__image] = STATE(627), - [sym_full_reference_image] = STATE(627), - [sym_collapsed_reference_image] = STATE(627), - [sym_inline_image] = STATE(627), - [sym__image_description] = STATE(1448), - [sym__link] = STATE(627), - [sym_full_reference_link] = STATE(627), - [sym_collapsed_reference_link] = STATE(627), - [sym_inline_link] = STATE(627), - [sym_link_text] = STATE(1453), - [sym__comment_with_spaces] = STATE(627), - [sym_span] = STATE(627), - [sym_raw_inline] = STATE(627), - [sym_math] = STATE(627), - [sym_verbatim] = STATE(627), - [sym__todo_highlights] = STATE(627), - [sym_todo] = STATE(627), - [sym_note] = STATE(627), - [sym__symbol_fallback] = STATE(627), - [aux_sym__text] = STATE(560), - [aux_sym__inline_repeat1] = STATE(242), - [anon_sym_LBRACK] = ACTIONS(853), - [anon_sym_RBRACK] = ACTIONS(856), - [anon_sym_PIPE] = ACTIONS(858), - [anon_sym_LBRACE] = ACTIONS(863), - [sym__whitespace1] = ACTIONS(866), - [anon_sym_BSLASH] = ACTIONS(869), - [sym_quotation_marks] = ACTIONS(858), - [sym_ellipsis] = ACTIONS(858), - [sym_em_dash] = ACTIONS(858), - [sym_en_dash] = ACTIONS(863), - [sym_backslash_escape] = ACTIONS(863), - [anon_sym_LT] = ACTIONS(872), - [anon_sym_LBRACE_] = ACTIONS(875), - [anon_sym__] = ACTIONS(878), - [anon_sym_LBRACE_STAR] = ACTIONS(881), - [anon_sym_STAR] = ACTIONS(884), - [anon_sym_LBRACE_EQ] = ACTIONS(887), - [anon_sym_EQ_RBRACE] = ACTIONS(861), - [anon_sym_LBRACE_PLUS] = ACTIONS(890), - [anon_sym_LBRACE_DASH] = ACTIONS(893), - [sym_symbol] = ACTIONS(858), - [anon_sym_LBRACE_CARET] = ACTIONS(896), - [anon_sym_CARET] = ACTIONS(896), - [anon_sym_LBRACE_TILDE] = ACTIONS(899), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_LBRACK_CARET] = ACTIONS(902), - [anon_sym_BANG_LBRACK] = ACTIONS(905), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(910), - [anon_sym_TODO] = ACTIONS(913), - [anon_sym_WIP] = ACTIONS(913), - [anon_sym_NOTE] = ACTIONS(916), - [anon_sym_INFO] = ACTIONS(916), - [anon_sym_XXX] = ACTIONS(916), - [sym_fixme] = ACTIONS(858), - [aux_sym__text_token1] = ACTIONS(919), - [sym__newline_inline] = ACTIONS(922), - [sym__verbatim_begin] = ACTIONS(925), - }, - [77] = { - [sym__table_content] = STATE(77), - [sym_table_separator] = STATE(77), - [sym_table_row] = STATE(211), - [sym__block_quote_prefix] = STATE(2242), - [aux_sym_table_repeat1] = STATE(77), - [aux_sym__block_quote_prefix_repeat1] = STATE(1599), - [ts_builtin_sym_end] = ACTIONS(1022), - [anon_sym_LBRACK] = ACTIONS(1017), - [anon_sym_PIPE] = ACTIONS(1033), - [anon_sym_LBRACE] = ACTIONS(1017), - [sym__whitespace1] = ACTIONS(1022), - [anon_sym_BSLASH] = ACTIONS(1017), - [sym_quotation_marks] = ACTIONS(1022), - [sym_ellipsis] = ACTIONS(1022), - [sym_em_dash] = ACTIONS(1022), - [sym_en_dash] = ACTIONS(1017), - [sym_backslash_escape] = ACTIONS(1017), - [anon_sym_LT] = ACTIONS(1022), - [anon_sym_LBRACE_] = ACTIONS(1022), - [anon_sym__] = ACTIONS(1022), - [anon_sym_LBRACE_STAR] = ACTIONS(1022), - [anon_sym_STAR] = ACTIONS(1022), - [anon_sym_LBRACE_EQ] = ACTIONS(1022), - [anon_sym_LBRACE_PLUS] = ACTIONS(1022), - [anon_sym_LBRACE_DASH] = ACTIONS(1022), - [sym_symbol] = ACTIONS(1022), - [anon_sym_LBRACE_CARET] = ACTIONS(1022), - [anon_sym_CARET] = ACTIONS(1022), - [anon_sym_LBRACE_TILDE] = ACTIONS(1022), - [anon_sym_TILDE] = ACTIONS(1022), - [anon_sym_LBRACK_CARET] = ACTIONS(1022), - [anon_sym_BANG_LBRACK] = ACTIONS(1022), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_TODO] = ACTIONS(1022), - [anon_sym_WIP] = ACTIONS(1022), - [anon_sym_NOTE] = ACTIONS(1022), - [anon_sym_INFO] = ACTIONS(1022), - [anon_sym_XXX] = ACTIONS(1022), - [sym_fixme] = ACTIONS(1022), - [aux_sym__text_token1] = ACTIONS(1017), - [sym__newline] = ACTIONS(1022), - [sym__newline_inline] = ACTIONS(1022), - [sym__heading1_begin] = ACTIONS(1022), - [sym__heading2_begin] = ACTIONS(1022), - [sym__heading3_begin] = ACTIONS(1022), - [sym__heading4_begin] = ACTIONS(1022), - [sym__heading5_begin] = ACTIONS(1022), - [sym__heading6_begin] = ACTIONS(1022), - [sym__div_begin] = ACTIONS(1022), - [sym__code_block_begin] = ACTIONS(1022), - [sym_list_marker_dash] = ACTIONS(1022), - [sym_list_marker_star] = ACTIONS(1022), - [sym_list_marker_plus] = ACTIONS(1022), - [sym__list_marker_task_begin] = ACTIONS(1022), - [sym_list_marker_definition] = ACTIONS(1022), - [sym_list_marker_decimal_period] = ACTIONS(1022), - [sym_list_marker_lower_alpha_period] = ACTIONS(1022), - [sym_list_marker_upper_alpha_period] = ACTIONS(1022), - [sym_list_marker_lower_roman_period] = ACTIONS(1022), - [sym_list_marker_upper_roman_period] = ACTIONS(1022), - [sym_list_marker_decimal_paren] = ACTIONS(1022), - [sym_list_marker_lower_alpha_paren] = ACTIONS(1022), - [sym_list_marker_upper_alpha_paren] = ACTIONS(1022), - [sym_list_marker_lower_roman_paren] = ACTIONS(1022), - [sym_list_marker_upper_roman_paren] = ACTIONS(1022), - [sym_list_marker_decimal_parens] = ACTIONS(1022), - [sym_list_marker_lower_alpha_parens] = ACTIONS(1022), - [sym_list_marker_upper_alpha_parens] = ACTIONS(1022), - [sym_list_marker_lower_roman_parens] = ACTIONS(1022), - [sym_list_marker_upper_roman_parens] = ACTIONS(1022), - [sym__block_quote_begin] = ACTIONS(1022), - [sym__block_quote_continuation] = ACTIONS(1024), - [sym__thematic_break_dash] = ACTIONS(1022), - [sym__thematic_break_star] = ACTIONS(1022), - [sym__footnote_begin] = ACTIONS(1022), - [sym__table_caption_begin] = ACTIONS(1022), - [sym__verbatim_begin] = ACTIONS(1022), - }, - [78] = { - [sym__inline] = STATE(1980), - [sym__inline_element_with_whitespace] = STATE(242), - [sym__inline_element_with_newline] = STATE(242), - [sym__inline_core_element] = STATE(242), - [sym__hard_line_break] = STATE(627), - [sym_hard_line_break] = STATE(523), - [sym__smart_punctuation] = STATE(627), - [sym_autolink] = STATE(627), - [sym_emphasis] = STATE(627), - [sym_emphasis_begin] = STATE(296), - [sym_strong] = STATE(627), - [sym_strong_begin] = STATE(295), - [sym_highlighted] = STATE(627), - [sym_insert] = STATE(627), - [sym_delete] = STATE(627), - [sym_superscript] = STATE(627), - [sym_subscript] = STATE(627), - [sym_footnote_reference] = STATE(627), - [sym__image] = STATE(627), - [sym_full_reference_image] = STATE(627), - [sym_collapsed_reference_image] = STATE(627), - [sym_inline_image] = STATE(627), - [sym__image_description] = STATE(1448), - [sym__link] = STATE(627), - [sym_full_reference_link] = STATE(627), - [sym_collapsed_reference_link] = STATE(627), - [sym_inline_link] = STATE(627), - [sym_link_text] = STATE(1453), - [sym__comment_with_spaces] = STATE(627), - [sym_span] = STATE(627), - [sym_raw_inline] = STATE(627), - [sym_math] = STATE(627), - [sym_verbatim] = STATE(627), - [sym__todo_highlights] = STATE(627), - [sym_todo] = STATE(627), - [sym_note] = STATE(627), - [sym__symbol_fallback] = STATE(627), - [aux_sym__text] = STATE(560), - [aux_sym__inline_repeat1] = STATE(242), - [anon_sym_LBRACK] = ACTIONS(853), - [anon_sym_RBRACK] = ACTIONS(856), - [anon_sym_PIPE] = ACTIONS(858), - [anon_sym_LBRACE] = ACTIONS(863), - [sym__whitespace1] = ACTIONS(866), - [anon_sym_BSLASH] = ACTIONS(869), - [sym_quotation_marks] = ACTIONS(858), - [sym_ellipsis] = ACTIONS(858), - [sym_em_dash] = ACTIONS(858), - [sym_en_dash] = ACTIONS(863), - [sym_backslash_escape] = ACTIONS(863), - [anon_sym_LT] = ACTIONS(872), - [anon_sym_LBRACE_] = ACTIONS(875), - [anon_sym__] = ACTIONS(878), - [anon_sym_LBRACE_STAR] = ACTIONS(881), - [anon_sym_STAR] = ACTIONS(884), - [anon_sym_LBRACE_EQ] = ACTIONS(887), - [anon_sym_LBRACE_PLUS] = ACTIONS(890), - [anon_sym_PLUS_RBRACE] = ACTIONS(861), - [anon_sym_LBRACE_DASH] = ACTIONS(893), - [sym_symbol] = ACTIONS(858), - [anon_sym_LBRACE_CARET] = ACTIONS(896), - [anon_sym_CARET] = ACTIONS(896), - [anon_sym_LBRACE_TILDE] = ACTIONS(899), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_LBRACK_CARET] = ACTIONS(902), - [anon_sym_BANG_LBRACK] = ACTIONS(905), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(910), - [anon_sym_TODO] = ACTIONS(913), - [anon_sym_WIP] = ACTIONS(913), - [anon_sym_NOTE] = ACTIONS(916), - [anon_sym_INFO] = ACTIONS(916), - [anon_sym_XXX] = ACTIONS(916), - [sym_fixme] = ACTIONS(858), - [aux_sym__text_token1] = ACTIONS(919), - [sym__newline_inline] = ACTIONS(922), - [sym__verbatim_begin] = ACTIONS(925), - }, - [79] = { - [sym__inline] = STATE(1939), - [sym__inline_element_with_whitespace] = STATE(241), - [sym__inline_element_with_newline] = STATE(241), - [sym__inline_core_element] = STATE(241), - [sym__hard_line_break] = STATE(696), - [sym_hard_line_break] = STATE(530), - [sym__smart_punctuation] = STATE(696), - [sym_autolink] = STATE(696), - [sym_emphasis] = STATE(696), - [sym_emphasis_begin] = STATE(274), - [sym_strong] = STATE(696), - [sym_strong_begin] = STATE(275), - [sym_highlighted] = STATE(696), - [sym_insert] = STATE(696), - [sym_delete] = STATE(696), - [sym_superscript] = STATE(696), - [sym_subscript] = STATE(696), - [sym_footnote_reference] = STATE(696), - [sym__image] = STATE(696), - [sym_full_reference_image] = STATE(696), - [sym_collapsed_reference_image] = STATE(696), - [sym_inline_image] = STATE(696), - [sym__image_description] = STATE(1427), - [sym__link] = STATE(696), - [sym_full_reference_link] = STATE(696), - [sym_collapsed_reference_link] = STATE(696), - [sym_inline_link] = STATE(696), - [sym_link_text] = STATE(1426), - [sym__comment_with_spaces] = STATE(696), - [sym_span] = STATE(696), - [sym_raw_inline] = STATE(696), - [sym_math] = STATE(696), - [sym_verbatim] = STATE(696), - [sym__todo_highlights] = STATE(696), - [sym_todo] = STATE(696), - [sym_note] = STATE(696), - [sym__symbol_fallback] = STATE(696), - [aux_sym__text] = STATE(609), - [aux_sym__inline_repeat1] = STATE(241), - [anon_sym_LBRACK] = ACTIONS(1036), - [anon_sym_PIPE] = ACTIONS(1039), - [anon_sym_NULL] = ACTIONS(861), - [anon_sym_LBRACE] = ACTIONS(1042), - [sym__whitespace1] = ACTIONS(1045), - [anon_sym_BSLASH] = ACTIONS(1048), - [sym_quotation_marks] = ACTIONS(1039), - [sym_ellipsis] = ACTIONS(1039), - [sym_em_dash] = ACTIONS(1039), - [sym_en_dash] = ACTIONS(1042), - [sym_backslash_escape] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1051), - [anon_sym_LBRACE_] = ACTIONS(1054), - [anon_sym__] = ACTIONS(1057), - [anon_sym_LBRACE_STAR] = ACTIONS(1060), - [anon_sym_STAR] = ACTIONS(1063), - [anon_sym_LBRACE_EQ] = ACTIONS(1066), - [anon_sym_LBRACE_PLUS] = ACTIONS(1069), - [anon_sym_LBRACE_DASH] = ACTIONS(1072), - [sym_symbol] = ACTIONS(1039), - [anon_sym_LBRACE_CARET] = ACTIONS(1075), - [anon_sym_CARET] = ACTIONS(1075), - [anon_sym_LBRACE_TILDE] = ACTIONS(1078), - [anon_sym_TILDE] = ACTIONS(1078), - [anon_sym_LBRACK_CARET] = ACTIONS(1081), - [anon_sym_BANG_LBRACK] = ACTIONS(1084), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(1087), - [anon_sym_TODO] = ACTIONS(1090), - [anon_sym_WIP] = ACTIONS(1090), - [anon_sym_NOTE] = ACTIONS(1093), - [anon_sym_INFO] = ACTIONS(1093), - [anon_sym_XXX] = ACTIONS(1093), - [sym_fixme] = ACTIONS(1039), - [aux_sym__text_token1] = ACTIONS(1096), - [sym__newline] = ACTIONS(861), - [sym__newline_inline] = ACTIONS(1099), - [sym__verbatim_begin] = ACTIONS(1102), - }, - [80] = { - [sym__inline] = STATE(1935), - [sym__inline_element_with_whitespace] = STATE(230), - [sym__inline_element_with_newline] = STATE(230), - [sym__inline_core_element] = STATE(230), - [sym__hard_line_break] = STATE(688), - [sym_hard_line_break] = STATE(516), - [sym__smart_punctuation] = STATE(688), - [sym_autolink] = STATE(688), - [sym_emphasis] = STATE(688), - [sym_emphasis_begin] = STATE(291), - [sym_strong] = STATE(688), - [sym_strong_begin] = STATE(272), - [sym_highlighted] = STATE(688), - [sym_insert] = STATE(688), - [sym_delete] = STATE(688), - [sym_superscript] = STATE(688), - [sym_subscript] = STATE(688), - [sym_footnote_reference] = STATE(688), - [sym__image] = STATE(688), - [sym_full_reference_image] = STATE(688), - [sym_collapsed_reference_image] = STATE(688), - [sym_inline_image] = STATE(688), - [sym__image_description] = STATE(1436), - [sym__link] = STATE(688), - [sym_full_reference_link] = STATE(688), - [sym_collapsed_reference_link] = STATE(688), - [sym_inline_link] = STATE(688), - [sym_link_text] = STATE(1434), - [sym__comment_with_spaces] = STATE(688), - [sym_span] = STATE(688), - [sym_raw_inline] = STATE(688), - [sym_math] = STATE(688), - [sym_verbatim] = STATE(688), - [sym__todo_highlights] = STATE(688), - [sym_todo] = STATE(688), - [sym_note] = STATE(688), - [sym__symbol_fallback] = STATE(688), - [aux_sym__text] = STATE(583), - [aux_sym__inline_repeat1] = STATE(230), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_PIPE] = ACTIONS(1108), - [anon_sym_NULL] = ACTIONS(861), - [anon_sym_LBRACE] = ACTIONS(1111), - [sym__whitespace1] = ACTIONS(1114), - [anon_sym_BSLASH] = ACTIONS(1117), - [sym_quotation_marks] = ACTIONS(1108), - [sym_ellipsis] = ACTIONS(1108), - [sym_em_dash] = ACTIONS(1108), - [sym_en_dash] = ACTIONS(1111), - [sym_backslash_escape] = ACTIONS(1111), - [anon_sym_LT] = ACTIONS(1120), - [anon_sym_LBRACE_] = ACTIONS(1123), - [anon_sym__] = ACTIONS(1126), - [anon_sym_LBRACE_STAR] = ACTIONS(1129), - [anon_sym_STAR] = ACTIONS(1132), - [anon_sym_LBRACE_EQ] = ACTIONS(1135), - [anon_sym_LBRACE_PLUS] = ACTIONS(1138), - [anon_sym_LBRACE_DASH] = ACTIONS(1141), - [sym_symbol] = ACTIONS(1108), - [anon_sym_LBRACE_CARET] = ACTIONS(1144), - [anon_sym_CARET] = ACTIONS(1144), - [anon_sym_LBRACE_TILDE] = ACTIONS(1147), - [anon_sym_TILDE] = ACTIONS(1147), - [anon_sym_LBRACK_CARET] = ACTIONS(1150), - [anon_sym_BANG_LBRACK] = ACTIONS(1153), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(1156), - [anon_sym_TODO] = ACTIONS(1159), - [anon_sym_WIP] = ACTIONS(1159), - [anon_sym_NOTE] = ACTIONS(1162), - [anon_sym_INFO] = ACTIONS(1162), - [anon_sym_XXX] = ACTIONS(1162), - [sym_fixme] = ACTIONS(1108), - [aux_sym__text_token1] = ACTIONS(1165), - [sym__newline] = ACTIONS(861), - [sym__newline_inline] = ACTIONS(1168), - [sym__verbatim_begin] = ACTIONS(1171), - }, - [81] = { - [sym__inline] = STATE(1980), - [sym__inline_element_with_whitespace] = STATE(242), - [sym__inline_element_with_newline] = STATE(242), - [sym__inline_core_element] = STATE(242), - [sym__hard_line_break] = STATE(627), - [sym_hard_line_break] = STATE(523), - [sym__smart_punctuation] = STATE(627), - [sym_autolink] = STATE(627), - [sym_emphasis] = STATE(627), - [sym_emphasis_begin] = STATE(296), - [sym_strong] = STATE(627), - [sym_strong_begin] = STATE(295), - [sym_highlighted] = STATE(627), - [sym_insert] = STATE(627), - [sym_delete] = STATE(627), - [sym_superscript] = STATE(627), - [sym_subscript] = STATE(627), - [sym_footnote_reference] = STATE(627), - [sym__image] = STATE(627), - [sym_full_reference_image] = STATE(627), - [sym_collapsed_reference_image] = STATE(627), - [sym_inline_image] = STATE(627), - [sym__image_description] = STATE(1448), - [sym__link] = STATE(627), - [sym_full_reference_link] = STATE(627), - [sym_collapsed_reference_link] = STATE(627), - [sym_inline_link] = STATE(627), - [sym_link_text] = STATE(1453), - [sym__comment_with_spaces] = STATE(627), - [sym_span] = STATE(627), - [sym_raw_inline] = STATE(627), - [sym_math] = STATE(627), - [sym_verbatim] = STATE(627), - [sym__todo_highlights] = STATE(627), - [sym_todo] = STATE(627), - [sym_note] = STATE(627), - [sym__symbol_fallback] = STATE(627), - [aux_sym__text] = STATE(560), - [aux_sym__inline_repeat1] = STATE(242), - [anon_sym_LBRACK] = ACTIONS(853), - [anon_sym_RBRACK] = ACTIONS(1174), - [anon_sym_PIPE] = ACTIONS(858), - [anon_sym_LBRACE] = ACTIONS(863), - [sym__whitespace1] = ACTIONS(866), - [anon_sym_BSLASH] = ACTIONS(869), - [sym_quotation_marks] = ACTIONS(858), - [sym_ellipsis] = ACTIONS(858), - [sym_em_dash] = ACTIONS(858), - [sym_en_dash] = ACTIONS(863), - [sym_backslash_escape] = ACTIONS(863), - [anon_sym_LT] = ACTIONS(872), - [anon_sym_LBRACE_] = ACTIONS(875), - [anon_sym__] = ACTIONS(878), - [anon_sym_LBRACE_STAR] = ACTIONS(881), - [anon_sym_STAR] = ACTIONS(884), - [anon_sym_LBRACE_EQ] = ACTIONS(887), - [anon_sym_LBRACE_PLUS] = ACTIONS(890), - [anon_sym_LBRACE_DASH] = ACTIONS(893), - [sym_symbol] = ACTIONS(858), - [anon_sym_LBRACE_CARET] = ACTIONS(896), - [anon_sym_CARET] = ACTIONS(896), - [anon_sym_LBRACE_TILDE] = ACTIONS(899), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_LBRACK_CARET] = ACTIONS(902), - [anon_sym_BANG_LBRACK] = ACTIONS(905), - [anon_sym_RBRACK2] = ACTIONS(861), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(910), - [anon_sym_TODO] = ACTIONS(913), - [anon_sym_WIP] = ACTIONS(913), - [anon_sym_NOTE] = ACTIONS(916), - [anon_sym_INFO] = ACTIONS(916), - [anon_sym_XXX] = ACTIONS(916), - [sym_fixme] = ACTIONS(858), - [aux_sym__text_token1] = ACTIONS(919), - [sym__newline_inline] = ACTIONS(922), - [sym__verbatim_begin] = ACTIONS(925), - }, - [82] = { - [sym__inline] = STATE(1980), - [sym__inline_element_with_whitespace] = STATE(242), - [sym__inline_element_with_newline] = STATE(242), - [sym__inline_core_element] = STATE(242), - [sym__hard_line_break] = STATE(627), - [sym_hard_line_break] = STATE(523), - [sym__smart_punctuation] = STATE(627), - [sym_autolink] = STATE(627), - [sym_emphasis] = STATE(627), - [sym_emphasis_begin] = STATE(296), - [sym_strong] = STATE(627), - [sym_strong_begin] = STATE(295), - [sym_highlighted] = STATE(627), - [sym_insert] = STATE(627), - [sym_delete] = STATE(627), - [sym_superscript] = STATE(627), - [sym_subscript] = STATE(627), - [sym_footnote_reference] = STATE(627), - [sym__image] = STATE(627), - [sym_full_reference_image] = STATE(627), - [sym_collapsed_reference_image] = STATE(627), - [sym_inline_image] = STATE(627), - [sym__image_description] = STATE(1448), - [sym__link] = STATE(627), - [sym_full_reference_link] = STATE(627), - [sym_collapsed_reference_link] = STATE(627), - [sym_inline_link] = STATE(627), - [sym_link_text] = STATE(1453), - [sym__comment_with_spaces] = STATE(627), - [sym_span] = STATE(627), - [sym_raw_inline] = STATE(627), - [sym_math] = STATE(627), - [sym_verbatim] = STATE(627), - [sym__todo_highlights] = STATE(627), - [sym_todo] = STATE(627), - [sym_note] = STATE(627), - [sym__symbol_fallback] = STATE(627), - [aux_sym__text] = STATE(560), - [aux_sym__inline_repeat1] = STATE(242), - [anon_sym_LBRACK] = ACTIONS(853), - [anon_sym_RBRACK] = ACTIONS(856), - [anon_sym_PIPE] = ACTIONS(858), - [anon_sym_LBRACE] = ACTIONS(863), - [sym__whitespace1] = ACTIONS(1176), - [anon_sym_BSLASH] = ACTIONS(869), - [sym_quotation_marks] = ACTIONS(858), - [sym_ellipsis] = ACTIONS(858), - [sym_em_dash] = ACTIONS(858), - [sym_en_dash] = ACTIONS(863), - [sym_backslash_escape] = ACTIONS(863), - [anon_sym_LT] = ACTIONS(872), - [anon_sym_LBRACE_] = ACTIONS(875), - [anon_sym__] = ACTIONS(1179), - [aux_sym_emphasis_end_token1] = ACTIONS(861), - [anon_sym_LBRACE_STAR] = ACTIONS(881), - [anon_sym_STAR] = ACTIONS(884), - [anon_sym_LBRACE_EQ] = ACTIONS(887), - [anon_sym_LBRACE_PLUS] = ACTIONS(890), - [anon_sym_LBRACE_DASH] = ACTIONS(893), - [sym_symbol] = ACTIONS(858), - [anon_sym_LBRACE_CARET] = ACTIONS(896), - [anon_sym_CARET] = ACTIONS(896), - [anon_sym_LBRACE_TILDE] = ACTIONS(899), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_LBRACK_CARET] = ACTIONS(902), - [anon_sym_BANG_LBRACK] = ACTIONS(905), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(910), - [anon_sym_TODO] = ACTIONS(913), - [anon_sym_WIP] = ACTIONS(913), - [anon_sym_NOTE] = ACTIONS(916), - [anon_sym_INFO] = ACTIONS(916), - [anon_sym_XXX] = ACTIONS(916), - [sym_fixme] = ACTIONS(858), - [aux_sym__text_token1] = ACTIONS(919), - [sym__newline_inline] = ACTIONS(922), - [sym__verbatim_begin] = ACTIONS(925), - }, - [83] = { - [sym__inline] = STATE(2239), - [sym__inline_element_with_whitespace] = STATE(242), - [sym__inline_element_with_newline] = STATE(242), - [sym__inline_core_element] = STATE(242), - [sym__hard_line_break] = STATE(627), - [sym_hard_line_break] = STATE(523), - [sym__smart_punctuation] = STATE(627), - [sym_autolink] = STATE(627), - [sym_emphasis] = STATE(627), - [sym_emphasis_begin] = STATE(296), - [sym_strong] = STATE(627), - [sym_strong_begin] = STATE(295), - [sym_highlighted] = STATE(627), - [sym_insert] = STATE(627), - [sym_delete] = STATE(627), - [sym_superscript] = STATE(627), - [sym_subscript] = STATE(627), - [sym_footnote_reference] = STATE(627), - [sym__image] = STATE(627), - [sym_full_reference_image] = STATE(627), - [sym_collapsed_reference_image] = STATE(627), - [sym_inline_image] = STATE(627), - [sym__image_description] = STATE(1448), - [sym__link] = STATE(627), - [sym_full_reference_link] = STATE(627), - [sym_collapsed_reference_link] = STATE(627), - [sym_inline_link] = STATE(627), - [sym_link_text] = STATE(1453), - [sym__comment_with_spaces] = STATE(627), - [sym_span] = STATE(627), - [sym_raw_inline] = STATE(627), - [sym_math] = STATE(627), - [sym_verbatim] = STATE(627), - [sym__todo_highlights] = STATE(627), - [sym_todo] = STATE(627), - [sym_note] = STATE(627), - [sym__symbol_fallback] = STATE(627), - [aux_sym__text] = STATE(560), - [aux_sym__inline_repeat1] = STATE(242), - [anon_sym_LBRACK] = ACTIONS(853), - [anon_sym_PIPE] = ACTIONS(858), - [anon_sym_NULL] = ACTIONS(861), - [anon_sym_LBRACE] = ACTIONS(863), - [sym__whitespace1] = ACTIONS(866), - [anon_sym_BSLASH] = ACTIONS(869), - [sym_quotation_marks] = ACTIONS(858), - [sym_ellipsis] = ACTIONS(858), - [sym_em_dash] = ACTIONS(858), - [sym_en_dash] = ACTIONS(863), - [sym_backslash_escape] = ACTIONS(863), - [anon_sym_LT] = ACTIONS(872), - [anon_sym_LBRACE_] = ACTIONS(875), - [anon_sym__] = ACTIONS(878), - [anon_sym_LBRACE_STAR] = ACTIONS(881), - [anon_sym_STAR] = ACTIONS(884), - [anon_sym_LBRACE_EQ] = ACTIONS(887), - [anon_sym_LBRACE_PLUS] = ACTIONS(890), - [anon_sym_LBRACE_DASH] = ACTIONS(893), - [sym_symbol] = ACTIONS(858), - [anon_sym_LBRACE_CARET] = ACTIONS(896), - [anon_sym_CARET] = ACTIONS(896), - [anon_sym_LBRACE_TILDE] = ACTIONS(899), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_LBRACK_CARET] = ACTIONS(902), - [anon_sym_BANG_LBRACK] = ACTIONS(905), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(910), - [anon_sym_TODO] = ACTIONS(913), - [anon_sym_WIP] = ACTIONS(913), - [anon_sym_NOTE] = ACTIONS(916), - [anon_sym_INFO] = ACTIONS(916), - [anon_sym_XXX] = ACTIONS(916), - [sym_fixme] = ACTIONS(858), - [aux_sym__text_token1] = ACTIONS(919), - [sym__newline] = ACTIONS(861), - [sym__newline_inline] = ACTIONS(922), - [sym__verbatim_begin] = ACTIONS(925), - }, - [84] = { - [sym__inline] = STATE(2025), - [sym__inline_element_with_whitespace] = STATE(219), - [sym__inline_element_with_newline] = STATE(219), - [sym__inline_core_element] = STATE(219), - [sym__hard_line_break] = STATE(682), - [sym_hard_line_break] = STATE(518), - [sym__smart_punctuation] = STATE(682), - [sym_autolink] = STATE(682), - [sym_emphasis] = STATE(682), - [sym_emphasis_begin] = STATE(286), - [sym_strong] = STATE(682), - [sym_strong_begin] = STATE(288), - [sym_highlighted] = STATE(682), - [sym_insert] = STATE(682), - [sym_delete] = STATE(682), - [sym_superscript] = STATE(682), - [sym_subscript] = STATE(682), - [sym_footnote_reference] = STATE(682), - [sym__image] = STATE(682), - [sym_full_reference_image] = STATE(682), - [sym_collapsed_reference_image] = STATE(682), - [sym_inline_image] = STATE(682), - [sym__image_description] = STATE(1440), - [sym__link] = STATE(682), - [sym_full_reference_link] = STATE(682), - [sym_collapsed_reference_link] = STATE(682), - [sym_inline_link] = STATE(682), - [sym_link_text] = STATE(1439), - [sym__comment_with_spaces] = STATE(682), - [sym_span] = STATE(682), - [sym_raw_inline] = STATE(682), - [sym_math] = STATE(682), - [sym_verbatim] = STATE(682), - [sym__todo_highlights] = STATE(682), - [sym_todo] = STATE(682), - [sym_note] = STATE(682), - [sym__symbol_fallback] = STATE(682), - [aux_sym__text] = STATE(572), - [aux_sym__inline_repeat1] = STATE(219), - [anon_sym_LBRACK] = ACTIONS(1182), - [anon_sym_PIPE] = ACTIONS(1185), - [anon_sym_NULL] = ACTIONS(861), - [anon_sym_LBRACE] = ACTIONS(1188), - [sym__whitespace1] = ACTIONS(1191), - [anon_sym_BSLASH] = ACTIONS(1194), - [sym_quotation_marks] = ACTIONS(1185), - [sym_ellipsis] = ACTIONS(1185), - [sym_em_dash] = ACTIONS(1185), - [sym_en_dash] = ACTIONS(1188), - [sym_backslash_escape] = ACTIONS(1188), - [anon_sym_LT] = ACTIONS(1197), - [anon_sym_LBRACE_] = ACTIONS(1200), - [anon_sym__] = ACTIONS(1203), - [anon_sym_LBRACE_STAR] = ACTIONS(1206), - [anon_sym_STAR] = ACTIONS(1209), - [anon_sym_LBRACE_EQ] = ACTIONS(1212), - [anon_sym_LBRACE_PLUS] = ACTIONS(1215), - [anon_sym_LBRACE_DASH] = ACTIONS(1218), - [sym_symbol] = ACTIONS(1185), - [anon_sym_LBRACE_CARET] = ACTIONS(1221), - [anon_sym_CARET] = ACTIONS(1221), - [anon_sym_LBRACE_TILDE] = ACTIONS(1224), - [anon_sym_TILDE] = ACTIONS(1224), - [anon_sym_LBRACK_CARET] = ACTIONS(1227), - [anon_sym_BANG_LBRACK] = ACTIONS(1230), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(1233), - [anon_sym_TODO] = ACTIONS(1236), - [anon_sym_WIP] = ACTIONS(1236), - [anon_sym_NOTE] = ACTIONS(1239), - [anon_sym_INFO] = ACTIONS(1239), - [anon_sym_XXX] = ACTIONS(1239), - [sym_fixme] = ACTIONS(1185), - [aux_sym__text_token1] = ACTIONS(1242), - [sym__newline] = ACTIONS(861), - [sym__newline_inline] = ACTIONS(1245), - [sym__verbatim_begin] = ACTIONS(1248), - }, - [85] = { - [sym__inline] = STATE(1980), - [sym__inline_element_with_whitespace] = STATE(242), - [sym__inline_element_with_newline] = STATE(242), - [sym__inline_core_element] = STATE(242), - [sym__hard_line_break] = STATE(627), - [sym_hard_line_break] = STATE(523), - [sym__smart_punctuation] = STATE(627), - [sym_autolink] = STATE(627), - [sym_emphasis] = STATE(627), - [sym_emphasis_begin] = STATE(296), - [sym_strong] = STATE(627), - [sym_strong_begin] = STATE(295), - [sym_highlighted] = STATE(627), - [sym_insert] = STATE(627), - [sym_delete] = STATE(627), - [sym_superscript] = STATE(627), - [sym_subscript] = STATE(627), - [sym_footnote_reference] = STATE(627), - [sym__image] = STATE(627), - [sym_full_reference_image] = STATE(627), - [sym_collapsed_reference_image] = STATE(627), - [sym_inline_image] = STATE(627), - [sym__image_description] = STATE(1448), - [sym__link] = STATE(627), - [sym_full_reference_link] = STATE(627), - [sym_collapsed_reference_link] = STATE(627), - [sym_inline_link] = STATE(627), - [sym_link_text] = STATE(1453), - [sym__comment_with_spaces] = STATE(627), - [sym_span] = STATE(627), - [sym_raw_inline] = STATE(627), - [sym_math] = STATE(627), - [sym_verbatim] = STATE(627), - [sym__todo_highlights] = STATE(627), - [sym_todo] = STATE(627), - [sym_note] = STATE(627), - [sym__symbol_fallback] = STATE(627), - [aux_sym__text] = STATE(560), - [aux_sym__inline_repeat1] = STATE(242), - [anon_sym_LBRACK] = ACTIONS(853), - [anon_sym_RBRACK] = ACTIONS(856), - [anon_sym_PIPE] = ACTIONS(858), - [anon_sym_LBRACE] = ACTIONS(863), - [sym__whitespace1] = ACTIONS(866), - [anon_sym_BSLASH] = ACTIONS(869), - [sym_quotation_marks] = ACTIONS(858), - [sym_ellipsis] = ACTIONS(858), - [sym_em_dash] = ACTIONS(858), - [sym_en_dash] = ACTIONS(863), - [sym_backslash_escape] = ACTIONS(863), - [anon_sym_LT] = ACTIONS(872), - [anon_sym_LBRACE_] = ACTIONS(875), - [anon_sym__] = ACTIONS(878), - [anon_sym_LBRACE_STAR] = ACTIONS(881), - [anon_sym_STAR] = ACTIONS(884), - [anon_sym_LBRACE_EQ] = ACTIONS(887), - [anon_sym_LBRACE_PLUS] = ACTIONS(890), - [anon_sym_LBRACE_DASH] = ACTIONS(893), - [sym_symbol] = ACTIONS(858), - [anon_sym_LBRACE_CARET] = ACTIONS(896), - [anon_sym_CARET] = ACTIONS(896), - [anon_sym_LBRACE_TILDE] = ACTIONS(899), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_TILDE_RBRACE] = ACTIONS(861), - [anon_sym_LBRACK_CARET] = ACTIONS(902), - [anon_sym_BANG_LBRACK] = ACTIONS(905), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(910), - [anon_sym_TODO] = ACTIONS(913), - [anon_sym_WIP] = ACTIONS(913), - [anon_sym_NOTE] = ACTIONS(916), - [anon_sym_INFO] = ACTIONS(916), - [anon_sym_XXX] = ACTIONS(916), - [sym_fixme] = ACTIONS(858), - [aux_sym__text_token1] = ACTIONS(919), - [sym__newline_inline] = ACTIONS(922), - [sym__verbatim_begin] = ACTIONS(925), - }, - [86] = { - [sym__inline] = STATE(1980), - [sym__inline_element_with_whitespace] = STATE(242), - [sym__inline_element_with_newline] = STATE(242), - [sym__inline_core_element] = STATE(242), - [sym__hard_line_break] = STATE(627), - [sym_hard_line_break] = STATE(523), - [sym__smart_punctuation] = STATE(627), - [sym_autolink] = STATE(627), - [sym_emphasis] = STATE(627), - [sym_emphasis_begin] = STATE(296), - [sym_strong] = STATE(627), - [sym_strong_begin] = STATE(295), - [sym_highlighted] = STATE(627), - [sym_insert] = STATE(627), - [sym_delete] = STATE(627), - [sym_superscript] = STATE(627), - [sym_subscript] = STATE(627), - [sym_footnote_reference] = STATE(627), - [sym__image] = STATE(627), - [sym_full_reference_image] = STATE(627), - [sym_collapsed_reference_image] = STATE(627), - [sym_inline_image] = STATE(627), - [sym__image_description] = STATE(1448), - [sym__link] = STATE(627), - [sym_full_reference_link] = STATE(627), - [sym_collapsed_reference_link] = STATE(627), - [sym_inline_link] = STATE(627), - [sym_link_text] = STATE(1453), - [sym__comment_with_spaces] = STATE(627), - [sym_span] = STATE(627), - [sym_raw_inline] = STATE(627), - [sym_math] = STATE(627), - [sym_verbatim] = STATE(627), - [sym__todo_highlights] = STATE(627), - [sym_todo] = STATE(627), - [sym_note] = STATE(627), - [sym__symbol_fallback] = STATE(627), - [aux_sym__text] = STATE(560), - [aux_sym__inline_repeat1] = STATE(242), - [anon_sym_LBRACK] = ACTIONS(853), - [anon_sym_RBRACK] = ACTIONS(856), - [anon_sym_PIPE] = ACTIONS(858), - [anon_sym_LBRACE] = ACTIONS(863), - [sym__whitespace1] = ACTIONS(1176), - [anon_sym_BSLASH] = ACTIONS(869), - [sym_quotation_marks] = ACTIONS(858), - [sym_ellipsis] = ACTIONS(858), - [sym_em_dash] = ACTIONS(858), - [sym_en_dash] = ACTIONS(863), - [sym_backslash_escape] = ACTIONS(863), - [anon_sym_LT] = ACTIONS(872), - [anon_sym_LBRACE_] = ACTIONS(875), - [anon_sym__] = ACTIONS(878), - [anon_sym_LBRACE_STAR] = ACTIONS(881), - [anon_sym_STAR] = ACTIONS(1254), - [aux_sym_strong_end_token1] = ACTIONS(861), - [anon_sym_LBRACE_EQ] = ACTIONS(887), - [anon_sym_LBRACE_PLUS] = ACTIONS(890), - [anon_sym_LBRACE_DASH] = ACTIONS(893), - [sym_symbol] = ACTIONS(858), - [anon_sym_LBRACE_CARET] = ACTIONS(896), - [anon_sym_CARET] = ACTIONS(896), - [anon_sym_LBRACE_TILDE] = ACTIONS(899), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_LBRACK_CARET] = ACTIONS(902), - [anon_sym_BANG_LBRACK] = ACTIONS(905), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(910), - [anon_sym_TODO] = ACTIONS(913), - [anon_sym_WIP] = ACTIONS(913), - [anon_sym_NOTE] = ACTIONS(916), - [anon_sym_INFO] = ACTIONS(916), - [anon_sym_XXX] = ACTIONS(916), - [sym_fixme] = ACTIONS(858), - [aux_sym__text_token1] = ACTIONS(919), - [sym__newline_inline] = ACTIONS(922), - [sym__verbatim_begin] = ACTIONS(925), - }, - [87] = { - [sym__inline] = STATE(2026), - [sym__inline_element_with_whitespace] = STATE(217), - [sym__inline_element_with_newline] = STATE(217), - [sym__inline_core_element] = STATE(217), - [sym__hard_line_break] = STATE(667), - [sym_hard_line_break] = STATE(529), - [sym__smart_punctuation] = STATE(667), - [sym_autolink] = STATE(667), - [sym_emphasis] = STATE(667), - [sym_emphasis_begin] = STATE(290), - [sym_strong] = STATE(667), - [sym_strong_begin] = STATE(273), - [sym_highlighted] = STATE(667), - [sym_insert] = STATE(667), - [sym_delete] = STATE(667), - [sym_superscript] = STATE(667), - [sym_subscript] = STATE(667), - [sym_footnote_reference] = STATE(667), - [sym__image] = STATE(667), - [sym_full_reference_image] = STATE(667), - [sym_collapsed_reference_image] = STATE(667), - [sym_inline_image] = STATE(667), - [sym__image_description] = STATE(1445), - [sym__link] = STATE(667), - [sym_full_reference_link] = STATE(667), - [sym_collapsed_reference_link] = STATE(667), - [sym_inline_link] = STATE(667), - [sym_link_text] = STATE(1443), - [sym__comment_with_spaces] = STATE(667), - [sym_span] = STATE(667), - [sym_raw_inline] = STATE(667), - [sym_math] = STATE(667), - [sym_verbatim] = STATE(667), - [sym__todo_highlights] = STATE(667), - [sym_todo] = STATE(667), - [sym_note] = STATE(667), - [sym__symbol_fallback] = STATE(667), - [aux_sym__text] = STATE(554), - [aux_sym__inline_repeat1] = STATE(217), - [anon_sym_LBRACK] = ACTIONS(1257), - [anon_sym_PIPE] = ACTIONS(1260), - [anon_sym_NULL] = ACTIONS(861), - [anon_sym_LBRACE] = ACTIONS(1263), - [sym__whitespace1] = ACTIONS(1266), - [anon_sym_BSLASH] = ACTIONS(1269), - [sym_quotation_marks] = ACTIONS(1260), - [sym_ellipsis] = ACTIONS(1260), - [sym_em_dash] = ACTIONS(1260), - [sym_en_dash] = ACTIONS(1263), - [sym_backslash_escape] = ACTIONS(1263), - [anon_sym_LT] = ACTIONS(1272), - [anon_sym_LBRACE_] = ACTIONS(1275), - [anon_sym__] = ACTIONS(1278), - [anon_sym_LBRACE_STAR] = ACTIONS(1281), - [anon_sym_STAR] = ACTIONS(1284), - [anon_sym_LBRACE_EQ] = ACTIONS(1287), - [anon_sym_LBRACE_PLUS] = ACTIONS(1290), - [anon_sym_LBRACE_DASH] = ACTIONS(1293), - [sym_symbol] = ACTIONS(1260), - [anon_sym_LBRACE_CARET] = ACTIONS(1296), - [anon_sym_CARET] = ACTIONS(1296), - [anon_sym_LBRACE_TILDE] = ACTIONS(1299), - [anon_sym_TILDE] = ACTIONS(1299), - [anon_sym_LBRACK_CARET] = ACTIONS(1302), - [anon_sym_BANG_LBRACK] = ACTIONS(1305), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(1308), - [anon_sym_TODO] = ACTIONS(1311), - [anon_sym_WIP] = ACTIONS(1311), - [anon_sym_NOTE] = ACTIONS(1314), - [anon_sym_INFO] = ACTIONS(1314), - [anon_sym_XXX] = ACTIONS(1314), - [sym_fixme] = ACTIONS(1260), - [aux_sym__text_token1] = ACTIONS(1317), - [sym__newline] = ACTIONS(861), - [sym__newline_inline] = ACTIONS(1320), - [sym__verbatim_begin] = ACTIONS(1323), - }, - [88] = { - [sym__inline] = STATE(1909), - [sym__inline_element_with_whitespace] = STATE(241), - [sym__inline_element_with_newline] = STATE(241), - [sym__inline_core_element] = STATE(241), - [sym__hard_line_break] = STATE(696), - [sym_hard_line_break] = STATE(530), - [sym__smart_punctuation] = STATE(696), - [sym_autolink] = STATE(696), - [sym_emphasis] = STATE(696), - [sym_emphasis_begin] = STATE(274), - [sym_strong] = STATE(696), - [sym_strong_begin] = STATE(275), - [sym_highlighted] = STATE(696), - [sym_insert] = STATE(696), - [sym_delete] = STATE(696), - [sym_superscript] = STATE(696), - [sym_subscript] = STATE(696), - [sym_footnote_reference] = STATE(696), - [sym__image] = STATE(696), - [sym_full_reference_image] = STATE(696), - [sym_collapsed_reference_image] = STATE(696), - [sym_inline_image] = STATE(696), - [sym__image_description] = STATE(1427), - [sym__link] = STATE(696), - [sym_full_reference_link] = STATE(696), - [sym_collapsed_reference_link] = STATE(696), - [sym_inline_link] = STATE(696), - [sym_link_text] = STATE(1426), - [sym__comment_with_spaces] = STATE(696), - [sym_span] = STATE(696), - [sym_raw_inline] = STATE(696), - [sym_math] = STATE(696), - [sym_verbatim] = STATE(696), - [sym__todo_highlights] = STATE(696), - [sym_todo] = STATE(696), - [sym_note] = STATE(696), - [sym__symbol_fallback] = STATE(696), - [aux_sym__text] = STATE(609), - [aux_sym__inline_repeat1] = STATE(241), - [anon_sym_LBRACK] = ACTIONS(1036), - [anon_sym_PIPE] = ACTIONS(1039), - [anon_sym_LBRACE] = ACTIONS(1042), - [sym__whitespace1] = ACTIONS(1045), - [anon_sym_BSLASH] = ACTIONS(1048), - [sym_quotation_marks] = ACTIONS(1039), - [sym_ellipsis] = ACTIONS(1039), - [sym_em_dash] = ACTIONS(1039), - [sym_en_dash] = ACTIONS(1042), - [sym_backslash_escape] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1051), - [anon_sym_LBRACE_] = ACTIONS(1054), - [anon_sym__] = ACTIONS(1057), - [anon_sym_LBRACE_STAR] = ACTIONS(1060), - [anon_sym_STAR] = ACTIONS(1063), - [anon_sym_LBRACE_EQ] = ACTIONS(1066), - [anon_sym_LBRACE_PLUS] = ACTIONS(1069), - [anon_sym_LBRACE_DASH] = ACTIONS(1072), - [sym_symbol] = ACTIONS(1039), - [anon_sym_LBRACE_CARET] = ACTIONS(1075), - [anon_sym_CARET] = ACTIONS(1075), - [anon_sym_LBRACE_TILDE] = ACTIONS(1078), - [anon_sym_TILDE] = ACTIONS(1078), - [anon_sym_LBRACK_CARET] = ACTIONS(1081), - [anon_sym_BANG_LBRACK] = ACTIONS(1084), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(1087), - [anon_sym_TODO] = ACTIONS(1090), - [anon_sym_WIP] = ACTIONS(1090), - [anon_sym_NOTE] = ACTIONS(1093), - [anon_sym_INFO] = ACTIONS(1093), - [anon_sym_XXX] = ACTIONS(1093), - [sym_fixme] = ACTIONS(1039), - [aux_sym__text_token1] = ACTIONS(1096), - [sym__eof_or_newline] = ACTIONS(861), - [sym__newline_inline] = ACTIONS(1099), - [sym__verbatim_begin] = ACTIONS(1102), - }, - [89] = { - [sym__inline] = STATE(2018), - [sym__inline_element_with_whitespace] = STATE(239), - [sym__inline_element_with_newline] = STATE(239), - [sym__inline_core_element] = STATE(239), - [sym__hard_line_break] = STATE(624), - [sym_hard_line_break] = STATE(527), - [sym__smart_punctuation] = STATE(624), - [sym_autolink] = STATE(624), - [sym_emphasis] = STATE(624), - [sym_emphasis_begin] = STATE(281), - [sym_strong] = STATE(624), - [sym_strong_begin] = STATE(276), - [sym_highlighted] = STATE(624), - [sym_insert] = STATE(624), - [sym_delete] = STATE(624), - [sym_superscript] = STATE(624), - [sym_subscript] = STATE(624), - [sym_footnote_reference] = STATE(624), - [sym__image] = STATE(624), - [sym_full_reference_image] = STATE(624), - [sym_collapsed_reference_image] = STATE(624), - [sym_inline_image] = STATE(624), - [sym__image_description] = STATE(1450), - [sym__link] = STATE(624), - [sym_full_reference_link] = STATE(624), - [sym_collapsed_reference_link] = STATE(624), - [sym_inline_link] = STATE(624), - [sym_link_text] = STATE(1451), - [sym__comment_with_spaces] = STATE(624), - [sym_span] = STATE(624), - [sym_raw_inline] = STATE(624), - [sym_math] = STATE(624), - [sym_verbatim] = STATE(624), - [sym__todo_highlights] = STATE(624), - [sym_todo] = STATE(624), - [sym_note] = STATE(624), - [sym__symbol_fallback] = STATE(624), - [aux_sym__text] = STATE(595), - [aux_sym__inline_repeat1] = STATE(239), - [anon_sym_LBRACK] = ACTIONS(948), - [anon_sym_PIPE] = ACTIONS(951), - [anon_sym_LBRACE] = ACTIONS(954), - [sym__whitespace1] = ACTIONS(1326), - [anon_sym_BSLASH] = ACTIONS(960), - [sym_quotation_marks] = ACTIONS(951), - [sym_ellipsis] = ACTIONS(951), - [sym_em_dash] = ACTIONS(951), - [sym_en_dash] = ACTIONS(954), - [sym_backslash_escape] = ACTIONS(954), - [anon_sym_LT] = ACTIONS(963), - [anon_sym_LBRACE_] = ACTIONS(966), - [anon_sym__] = ACTIONS(969), - [anon_sym_LBRACE_STAR] = ACTIONS(972), - [anon_sym_STAR] = ACTIONS(1329), - [aux_sym_strong_end_token1] = ACTIONS(861), - [anon_sym_LBRACE_EQ] = ACTIONS(978), - [anon_sym_LBRACE_PLUS] = ACTIONS(981), - [anon_sym_LBRACE_DASH] = ACTIONS(984), - [sym_symbol] = ACTIONS(951), - [anon_sym_LBRACE_CARET] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_LBRACE_TILDE] = ACTIONS(990), - [anon_sym_TILDE] = ACTIONS(990), - [anon_sym_LBRACK_CARET] = ACTIONS(993), - [anon_sym_BANG_LBRACK] = ACTIONS(996), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(999), - [anon_sym_TODO] = ACTIONS(1002), - [anon_sym_WIP] = ACTIONS(1002), - [anon_sym_NOTE] = ACTIONS(1005), - [anon_sym_INFO] = ACTIONS(1005), - [anon_sym_XXX] = ACTIONS(1005), - [sym_fixme] = ACTIONS(951), - [aux_sym__text_token1] = ACTIONS(1008), - [sym__newline_inline] = ACTIONS(1011), - [sym__verbatim_begin] = ACTIONS(1014), - }, - [90] = { - [sym__inline] = STATE(1906), - [sym__inline_element_with_whitespace] = STATE(230), - [sym__inline_element_with_newline] = STATE(230), - [sym__inline_core_element] = STATE(230), - [sym__hard_line_break] = STATE(688), - [sym_hard_line_break] = STATE(516), - [sym__smart_punctuation] = STATE(688), - [sym_autolink] = STATE(688), - [sym_emphasis] = STATE(688), - [sym_emphasis_begin] = STATE(291), - [sym_strong] = STATE(688), - [sym_strong_begin] = STATE(272), - [sym_highlighted] = STATE(688), - [sym_insert] = STATE(688), - [sym_delete] = STATE(688), - [sym_superscript] = STATE(688), - [sym_subscript] = STATE(688), - [sym_footnote_reference] = STATE(688), - [sym__image] = STATE(688), - [sym_full_reference_image] = STATE(688), - [sym_collapsed_reference_image] = STATE(688), - [sym_inline_image] = STATE(688), - [sym__image_description] = STATE(1436), - [sym__link] = STATE(688), - [sym_full_reference_link] = STATE(688), - [sym_collapsed_reference_link] = STATE(688), - [sym_inline_link] = STATE(688), - [sym_link_text] = STATE(1434), - [sym__comment_with_spaces] = STATE(688), - [sym_span] = STATE(688), - [sym_raw_inline] = STATE(688), - [sym_math] = STATE(688), - [sym_verbatim] = STATE(688), - [sym__todo_highlights] = STATE(688), - [sym_todo] = STATE(688), - [sym_note] = STATE(688), - [sym__symbol_fallback] = STATE(688), - [aux_sym__text] = STATE(583), - [aux_sym__inline_repeat1] = STATE(230), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_PIPE] = ACTIONS(1108), - [anon_sym_LBRACE] = ACTIONS(1111), - [sym__whitespace1] = ACTIONS(1114), - [anon_sym_BSLASH] = ACTIONS(1117), - [sym_quotation_marks] = ACTIONS(1108), - [sym_ellipsis] = ACTIONS(1108), - [sym_em_dash] = ACTIONS(1108), - [sym_en_dash] = ACTIONS(1111), - [sym_backslash_escape] = ACTIONS(1111), - [anon_sym_LT] = ACTIONS(1120), - [anon_sym_LBRACE_] = ACTIONS(1123), - [anon_sym__] = ACTIONS(1126), - [anon_sym_LBRACE_STAR] = ACTIONS(1129), - [anon_sym_STAR] = ACTIONS(1132), - [anon_sym_LBRACE_EQ] = ACTIONS(1135), - [anon_sym_LBRACE_PLUS] = ACTIONS(1138), - [anon_sym_PLUS_RBRACE] = ACTIONS(861), - [anon_sym_LBRACE_DASH] = ACTIONS(1141), - [sym_symbol] = ACTIONS(1108), - [anon_sym_LBRACE_CARET] = ACTIONS(1144), - [anon_sym_CARET] = ACTIONS(1144), - [anon_sym_LBRACE_TILDE] = ACTIONS(1147), - [anon_sym_TILDE] = ACTIONS(1147), - [anon_sym_LBRACK_CARET] = ACTIONS(1150), - [anon_sym_BANG_LBRACK] = ACTIONS(1153), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(1156), - [anon_sym_TODO] = ACTIONS(1159), - [anon_sym_WIP] = ACTIONS(1159), - [anon_sym_NOTE] = ACTIONS(1162), - [anon_sym_INFO] = ACTIONS(1162), - [anon_sym_XXX] = ACTIONS(1162), - [sym_fixme] = ACTIONS(1108), - [aux_sym__text_token1] = ACTIONS(1165), - [sym__newline_inline] = ACTIONS(1168), - [sym__verbatim_begin] = ACTIONS(1171), - }, - [91] = { - [sym__inline] = STATE(2095), - [sym__inline_element_with_whitespace] = STATE(219), - [sym__inline_element_with_newline] = STATE(219), - [sym__inline_core_element] = STATE(219), - [sym__hard_line_break] = STATE(682), - [sym_hard_line_break] = STATE(518), - [sym__smart_punctuation] = STATE(682), - [sym_autolink] = STATE(682), - [sym_emphasis] = STATE(682), - [sym_emphasis_begin] = STATE(286), - [sym_strong] = STATE(682), - [sym_strong_begin] = STATE(288), - [sym_highlighted] = STATE(682), - [sym_insert] = STATE(682), - [sym_delete] = STATE(682), - [sym_superscript] = STATE(682), - [sym_subscript] = STATE(682), - [sym_footnote_reference] = STATE(682), - [sym__image] = STATE(682), - [sym_full_reference_image] = STATE(682), - [sym_collapsed_reference_image] = STATE(682), - [sym_inline_image] = STATE(682), - [sym__image_description] = STATE(1440), - [sym__link] = STATE(682), - [sym_full_reference_link] = STATE(682), - [sym_collapsed_reference_link] = STATE(682), - [sym_inline_link] = STATE(682), - [sym_link_text] = STATE(1439), - [sym__comment_with_spaces] = STATE(682), - [sym_span] = STATE(682), - [sym_raw_inline] = STATE(682), - [sym_math] = STATE(682), - [sym_verbatim] = STATE(682), - [sym__todo_highlights] = STATE(682), - [sym_todo] = STATE(682), - [sym_note] = STATE(682), - [sym__symbol_fallback] = STATE(682), - [aux_sym__text] = STATE(572), - [aux_sym__inline_repeat1] = STATE(219), - [anon_sym_LBRACK] = ACTIONS(1182), - [anon_sym_PIPE] = ACTIONS(1185), - [anon_sym_LBRACE] = ACTIONS(1188), - [sym__whitespace1] = ACTIONS(1191), - [anon_sym_BSLASH] = ACTIONS(1194), - [sym_quotation_marks] = ACTIONS(1185), - [sym_ellipsis] = ACTIONS(1185), - [sym_em_dash] = ACTIONS(1185), - [sym_en_dash] = ACTIONS(1188), - [sym_backslash_escape] = ACTIONS(1188), - [anon_sym_LT] = ACTIONS(1197), - [anon_sym_LBRACE_] = ACTIONS(1200), - [anon_sym__] = ACTIONS(1203), - [anon_sym_LBRACE_STAR] = ACTIONS(1206), - [anon_sym_STAR] = ACTIONS(1209), - [anon_sym_LBRACE_EQ] = ACTIONS(1212), - [anon_sym_LBRACE_PLUS] = ACTIONS(1215), - [anon_sym_PLUS_RBRACE] = ACTIONS(861), - [anon_sym_LBRACE_DASH] = ACTIONS(1218), - [sym_symbol] = ACTIONS(1185), - [anon_sym_LBRACE_CARET] = ACTIONS(1221), - [anon_sym_CARET] = ACTIONS(1221), - [anon_sym_LBRACE_TILDE] = ACTIONS(1224), - [anon_sym_TILDE] = ACTIONS(1224), - [anon_sym_LBRACK_CARET] = ACTIONS(1227), - [anon_sym_BANG_LBRACK] = ACTIONS(1230), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(1233), - [anon_sym_TODO] = ACTIONS(1236), - [anon_sym_WIP] = ACTIONS(1236), - [anon_sym_NOTE] = ACTIONS(1239), - [anon_sym_INFO] = ACTIONS(1239), - [anon_sym_XXX] = ACTIONS(1239), - [sym_fixme] = ACTIONS(1185), - [aux_sym__text_token1] = ACTIONS(1242), - [sym__newline_inline] = ACTIONS(1245), - [sym__verbatim_begin] = ACTIONS(1248), - }, - [92] = { - [sym__inline] = STATE(1996), - [sym__inline_element_with_whitespace] = STATE(217), - [sym__inline_element_with_newline] = STATE(217), - [sym__inline_core_element] = STATE(217), - [sym__hard_line_break] = STATE(667), - [sym_hard_line_break] = STATE(529), - [sym__smart_punctuation] = STATE(667), - [sym_autolink] = STATE(667), - [sym_emphasis] = STATE(667), - [sym_emphasis_begin] = STATE(290), - [sym_strong] = STATE(667), - [sym_strong_begin] = STATE(273), - [sym_highlighted] = STATE(667), - [sym_insert] = STATE(667), - [sym_delete] = STATE(667), - [sym_superscript] = STATE(667), - [sym_subscript] = STATE(667), - [sym_footnote_reference] = STATE(667), - [sym__image] = STATE(667), - [sym_full_reference_image] = STATE(667), - [sym_collapsed_reference_image] = STATE(667), - [sym_inline_image] = STATE(667), - [sym__image_description] = STATE(1445), - [sym__link] = STATE(667), - [sym_full_reference_link] = STATE(667), - [sym_collapsed_reference_link] = STATE(667), - [sym_inline_link] = STATE(667), - [sym_link_text] = STATE(1443), - [sym__comment_with_spaces] = STATE(667), - [sym_span] = STATE(667), - [sym_raw_inline] = STATE(667), - [sym_math] = STATE(667), - [sym_verbatim] = STATE(667), - [sym__todo_highlights] = STATE(667), - [sym_todo] = STATE(667), - [sym_note] = STATE(667), - [sym__symbol_fallback] = STATE(667), - [aux_sym__text] = STATE(554), - [aux_sym__inline_repeat1] = STATE(217), - [anon_sym_LBRACK] = ACTIONS(1257), - [anon_sym_PIPE] = ACTIONS(1260), - [anon_sym_LBRACE] = ACTIONS(1263), - [sym__whitespace1] = ACTIONS(1332), - [anon_sym_BSLASH] = ACTIONS(1269), - [sym_quotation_marks] = ACTIONS(1260), - [sym_ellipsis] = ACTIONS(1260), - [sym_em_dash] = ACTIONS(1260), - [sym_en_dash] = ACTIONS(1263), - [sym_backslash_escape] = ACTIONS(1263), - [anon_sym_LT] = ACTIONS(1272), - [anon_sym_LBRACE_] = ACTIONS(1275), - [anon_sym__] = ACTIONS(1335), - [aux_sym_emphasis_end_token1] = ACTIONS(861), - [anon_sym_LBRACE_STAR] = ACTIONS(1281), - [anon_sym_STAR] = ACTIONS(1284), - [anon_sym_LBRACE_EQ] = ACTIONS(1287), - [anon_sym_LBRACE_PLUS] = ACTIONS(1290), - [anon_sym_LBRACE_DASH] = ACTIONS(1293), - [sym_symbol] = ACTIONS(1260), - [anon_sym_LBRACE_CARET] = ACTIONS(1296), - [anon_sym_CARET] = ACTIONS(1296), - [anon_sym_LBRACE_TILDE] = ACTIONS(1299), - [anon_sym_TILDE] = ACTIONS(1299), - [anon_sym_LBRACK_CARET] = ACTIONS(1302), - [anon_sym_BANG_LBRACK] = ACTIONS(1305), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(1308), - [anon_sym_TODO] = ACTIONS(1311), - [anon_sym_WIP] = ACTIONS(1311), - [anon_sym_NOTE] = ACTIONS(1314), - [anon_sym_INFO] = ACTIONS(1314), - [anon_sym_XXX] = ACTIONS(1314), - [sym_fixme] = ACTIONS(1260), - [aux_sym__text_token1] = ACTIONS(1317), - [sym__newline_inline] = ACTIONS(1320), - [sym__verbatim_begin] = ACTIONS(1323), - }, - [93] = { - [sym__inline] = STATE(2097), - [sym__inline_element_with_whitespace] = STATE(217), - [sym__inline_element_with_newline] = STATE(217), - [sym__inline_core_element] = STATE(217), - [sym__hard_line_break] = STATE(667), - [sym_hard_line_break] = STATE(529), - [sym__smart_punctuation] = STATE(667), - [sym_autolink] = STATE(667), - [sym_emphasis] = STATE(667), - [sym_emphasis_begin] = STATE(290), - [sym_strong] = STATE(667), - [sym_strong_begin] = STATE(273), - [sym_highlighted] = STATE(667), - [sym_insert] = STATE(667), - [sym_delete] = STATE(667), - [sym_superscript] = STATE(667), - [sym_subscript] = STATE(667), - [sym_footnote_reference] = STATE(667), - [sym__image] = STATE(667), - [sym_full_reference_image] = STATE(667), - [sym_collapsed_reference_image] = STATE(667), - [sym_inline_image] = STATE(667), - [sym__image_description] = STATE(1445), - [sym__link] = STATE(667), - [sym_full_reference_link] = STATE(667), - [sym_collapsed_reference_link] = STATE(667), - [sym_inline_link] = STATE(667), - [sym_link_text] = STATE(1443), - [sym__comment_with_spaces] = STATE(667), - [sym_span] = STATE(667), - [sym_raw_inline] = STATE(667), - [sym_math] = STATE(667), - [sym_verbatim] = STATE(667), - [sym__todo_highlights] = STATE(667), - [sym_todo] = STATE(667), - [sym_note] = STATE(667), - [sym__symbol_fallback] = STATE(667), - [aux_sym__text] = STATE(554), - [aux_sym__inline_repeat1] = STATE(217), - [anon_sym_LBRACK] = ACTIONS(1257), - [anon_sym_PIPE] = ACTIONS(1260), - [anon_sym_LBRACE] = ACTIONS(1263), - [sym__whitespace1] = ACTIONS(1266), - [anon_sym_BSLASH] = ACTIONS(1269), - [sym_quotation_marks] = ACTIONS(1260), - [sym_ellipsis] = ACTIONS(1260), - [sym_em_dash] = ACTIONS(1260), - [sym_en_dash] = ACTIONS(1263), - [sym_backslash_escape] = ACTIONS(1263), - [anon_sym_LT] = ACTIONS(1272), - [anon_sym_LBRACE_] = ACTIONS(1275), - [anon_sym__] = ACTIONS(1278), - [anon_sym_LBRACE_STAR] = ACTIONS(1281), - [anon_sym_STAR] = ACTIONS(1284), - [anon_sym_LBRACE_EQ] = ACTIONS(1287), - [anon_sym_LBRACE_PLUS] = ACTIONS(1290), - [anon_sym_PLUS_RBRACE] = ACTIONS(861), - [anon_sym_LBRACE_DASH] = ACTIONS(1293), - [sym_symbol] = ACTIONS(1260), - [anon_sym_LBRACE_CARET] = ACTIONS(1296), - [anon_sym_CARET] = ACTIONS(1296), - [anon_sym_LBRACE_TILDE] = ACTIONS(1299), - [anon_sym_TILDE] = ACTIONS(1299), - [anon_sym_LBRACK_CARET] = ACTIONS(1302), - [anon_sym_BANG_LBRACK] = ACTIONS(1305), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(1308), - [anon_sym_TODO] = ACTIONS(1311), - [anon_sym_WIP] = ACTIONS(1311), - [anon_sym_NOTE] = ACTIONS(1314), - [anon_sym_INFO] = ACTIONS(1314), - [anon_sym_XXX] = ACTIONS(1314), - [sym_fixme] = ACTIONS(1260), - [aux_sym__text_token1] = ACTIONS(1317), - [sym__newline_inline] = ACTIONS(1320), - [sym__verbatim_begin] = ACTIONS(1323), - }, - [94] = { - [sym__inline] = STATE(1995), - [sym__inline_element_with_whitespace] = STATE(239), - [sym__inline_element_with_newline] = STATE(239), - [sym__inline_core_element] = STATE(239), - [sym__hard_line_break] = STATE(624), - [sym_hard_line_break] = STATE(527), - [sym__smart_punctuation] = STATE(624), - [sym_autolink] = STATE(624), - [sym_emphasis] = STATE(624), - [sym_emphasis_begin] = STATE(281), - [sym_strong] = STATE(624), - [sym_strong_begin] = STATE(276), - [sym_highlighted] = STATE(624), - [sym_insert] = STATE(624), - [sym_delete] = STATE(624), - [sym_superscript] = STATE(624), - [sym_subscript] = STATE(624), - [sym_footnote_reference] = STATE(624), - [sym__image] = STATE(624), - [sym_full_reference_image] = STATE(624), - [sym_collapsed_reference_image] = STATE(624), - [sym_inline_image] = STATE(624), - [sym__image_description] = STATE(1450), - [sym__link] = STATE(624), - [sym_full_reference_link] = STATE(624), - [sym_collapsed_reference_link] = STATE(624), - [sym_inline_link] = STATE(624), - [sym_link_text] = STATE(1451), - [sym__comment_with_spaces] = STATE(624), - [sym_span] = STATE(624), - [sym_raw_inline] = STATE(624), - [sym_math] = STATE(624), - [sym_verbatim] = STATE(624), - [sym__todo_highlights] = STATE(624), - [sym_todo] = STATE(624), - [sym_note] = STATE(624), - [sym__symbol_fallback] = STATE(624), - [aux_sym__text] = STATE(595), - [aux_sym__inline_repeat1] = STATE(239), - [anon_sym_LBRACK] = ACTIONS(948), - [anon_sym_PIPE] = ACTIONS(951), - [anon_sym_LBRACE] = ACTIONS(954), - [sym__whitespace1] = ACTIONS(1326), - [anon_sym_BSLASH] = ACTIONS(960), - [sym_quotation_marks] = ACTIONS(951), - [sym_ellipsis] = ACTIONS(951), - [sym_em_dash] = ACTIONS(951), - [sym_en_dash] = ACTIONS(954), - [sym_backslash_escape] = ACTIONS(954), - [anon_sym_LT] = ACTIONS(963), - [anon_sym_LBRACE_] = ACTIONS(966), - [anon_sym__] = ACTIONS(1338), - [aux_sym_emphasis_end_token1] = ACTIONS(861), - [anon_sym_LBRACE_STAR] = ACTIONS(972), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_LBRACE_EQ] = ACTIONS(978), - [anon_sym_LBRACE_PLUS] = ACTIONS(981), - [anon_sym_LBRACE_DASH] = ACTIONS(984), - [sym_symbol] = ACTIONS(951), - [anon_sym_LBRACE_CARET] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_LBRACE_TILDE] = ACTIONS(990), - [anon_sym_TILDE] = ACTIONS(990), - [anon_sym_LBRACK_CARET] = ACTIONS(993), - [anon_sym_BANG_LBRACK] = ACTIONS(996), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(999), - [anon_sym_TODO] = ACTIONS(1002), - [anon_sym_WIP] = ACTIONS(1002), - [anon_sym_NOTE] = ACTIONS(1005), - [anon_sym_INFO] = ACTIONS(1005), - [anon_sym_XXX] = ACTIONS(1005), - [sym_fixme] = ACTIONS(951), - [aux_sym__text_token1] = ACTIONS(1008), - [sym__newline_inline] = ACTIONS(1011), - [sym__verbatim_begin] = ACTIONS(1014), - }, - [95] = { - [sym__inline] = STATE(2289), - [sym__inline_element_with_whitespace] = STATE(242), - [sym__inline_element_with_newline] = STATE(242), - [sym__inline_core_element] = STATE(242), - [sym__hard_line_break] = STATE(627), - [sym_hard_line_break] = STATE(523), - [sym__smart_punctuation] = STATE(627), - [sym_autolink] = STATE(627), - [sym_emphasis] = STATE(627), - [sym_emphasis_begin] = STATE(296), - [sym_strong] = STATE(627), - [sym_strong_begin] = STATE(295), - [sym_highlighted] = STATE(627), - [sym_insert] = STATE(627), - [sym_delete] = STATE(627), - [sym_superscript] = STATE(627), - [sym_subscript] = STATE(627), - [sym_footnote_reference] = STATE(627), - [sym__image] = STATE(627), - [sym_full_reference_image] = STATE(627), - [sym_collapsed_reference_image] = STATE(627), - [sym_inline_image] = STATE(627), - [sym__image_description] = STATE(1448), - [sym__link] = STATE(627), - [sym_full_reference_link] = STATE(627), - [sym_collapsed_reference_link] = STATE(627), - [sym_inline_link] = STATE(627), - [sym_link_text] = STATE(1453), - [sym__comment_with_spaces] = STATE(627), - [sym_span] = STATE(627), - [sym_raw_inline] = STATE(627), - [sym_math] = STATE(627), - [sym_verbatim] = STATE(627), - [sym__todo_highlights] = STATE(627), - [sym_todo] = STATE(627), - [sym_note] = STATE(627), - [sym__symbol_fallback] = STATE(627), - [aux_sym__text] = STATE(560), - [aux_sym__inline_repeat1] = STATE(242), - [anon_sym_LBRACK] = ACTIONS(853), - [anon_sym_PIPE] = ACTIONS(858), - [anon_sym_LBRACE] = ACTIONS(863), - [sym__whitespace1] = ACTIONS(866), - [anon_sym_BSLASH] = ACTIONS(869), - [sym_quotation_marks] = ACTIONS(858), - [sym_ellipsis] = ACTIONS(858), - [sym_em_dash] = ACTIONS(858), - [sym_en_dash] = ACTIONS(863), - [sym_backslash_escape] = ACTIONS(863), - [anon_sym_LT] = ACTIONS(872), - [anon_sym_LBRACE_] = ACTIONS(875), - [anon_sym__] = ACTIONS(878), - [anon_sym_LBRACE_STAR] = ACTIONS(881), - [anon_sym_STAR] = ACTIONS(884), - [anon_sym_LBRACE_EQ] = ACTIONS(887), - [anon_sym_LBRACE_PLUS] = ACTIONS(890), - [anon_sym_LBRACE_DASH] = ACTIONS(893), - [sym_symbol] = ACTIONS(858), - [anon_sym_LBRACE_CARET] = ACTIONS(896), - [anon_sym_CARET] = ACTIONS(896), - [anon_sym_LBRACE_TILDE] = ACTIONS(899), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_TILDE_RBRACE] = ACTIONS(861), - [anon_sym_LBRACK_CARET] = ACTIONS(902), - [anon_sym_BANG_LBRACK] = ACTIONS(905), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(910), - [anon_sym_TODO] = ACTIONS(913), - [anon_sym_WIP] = ACTIONS(913), - [anon_sym_NOTE] = ACTIONS(916), - [anon_sym_INFO] = ACTIONS(916), - [anon_sym_XXX] = ACTIONS(916), - [sym_fixme] = ACTIONS(858), - [aux_sym__text_token1] = ACTIONS(919), - [sym__newline_inline] = ACTIONS(922), - [sym__verbatim_begin] = ACTIONS(925), - }, - [96] = { - [sym__inline] = STATE(1980), - [sym__inline_element_with_whitespace] = STATE(242), - [sym__inline_element_with_newline] = STATE(242), - [sym__inline_core_element] = STATE(242), - [sym__hard_line_break] = STATE(627), - [sym_hard_line_break] = STATE(523), - [sym__smart_punctuation] = STATE(627), - [sym_autolink] = STATE(627), - [sym_emphasis] = STATE(627), - [sym_emphasis_begin] = STATE(296), - [sym_strong] = STATE(627), - [sym_strong_begin] = STATE(295), - [sym_highlighted] = STATE(627), - [sym_insert] = STATE(627), - [sym_delete] = STATE(627), - [sym_superscript] = STATE(627), - [sym_subscript] = STATE(627), - [sym_footnote_reference] = STATE(627), - [sym__image] = STATE(627), - [sym_full_reference_image] = STATE(627), - [sym_collapsed_reference_image] = STATE(627), - [sym_inline_image] = STATE(627), - [sym__image_description] = STATE(1448), - [sym__link] = STATE(627), - [sym_full_reference_link] = STATE(627), - [sym_collapsed_reference_link] = STATE(627), - [sym_inline_link] = STATE(627), - [sym_link_text] = STATE(1453), - [sym__comment_with_spaces] = STATE(627), - [sym_span] = STATE(627), - [sym_raw_inline] = STATE(627), - [sym_math] = STATE(627), - [sym_verbatim] = STATE(627), - [sym__todo_highlights] = STATE(627), - [sym_todo] = STATE(627), - [sym_note] = STATE(627), - [sym__symbol_fallback] = STATE(627), - [aux_sym__text] = STATE(560), - [aux_sym__inline_repeat1] = STATE(242), - [anon_sym_LBRACK] = ACTIONS(853), - [anon_sym_RBRACK] = ACTIONS(856), - [anon_sym_PIPE] = ACTIONS(858), - [anon_sym_LBRACE] = ACTIONS(863), - [sym__whitespace1] = ACTIONS(866), - [anon_sym_BSLASH] = ACTIONS(869), - [sym_quotation_marks] = ACTIONS(858), - [sym_ellipsis] = ACTIONS(858), - [sym_em_dash] = ACTIONS(858), - [sym_en_dash] = ACTIONS(863), - [sym_backslash_escape] = ACTIONS(863), - [anon_sym_LT] = ACTIONS(872), - [anon_sym_LBRACE_] = ACTIONS(875), - [anon_sym__] = ACTIONS(878), - [anon_sym_LBRACE_STAR] = ACTIONS(881), - [anon_sym_STAR] = ACTIONS(884), - [anon_sym_LBRACE_EQ] = ACTIONS(887), - [anon_sym_LBRACE_PLUS] = ACTIONS(890), - [anon_sym_LBRACE_DASH] = ACTIONS(893), - [sym_symbol] = ACTIONS(858), - [anon_sym_LBRACE_CARET] = ACTIONS(896), - [anon_sym_CARET] = ACTIONS(896), - [anon_sym_LBRACE_TILDE] = ACTIONS(899), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_LBRACK_CARET] = ACTIONS(902), - [anon_sym_BANG_LBRACK] = ACTIONS(905), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(910), - [anon_sym_TODO] = ACTIONS(913), - [anon_sym_WIP] = ACTIONS(913), - [anon_sym_NOTE] = ACTIONS(916), - [anon_sym_INFO] = ACTIONS(916), - [anon_sym_XXX] = ACTIONS(916), - [sym_fixme] = ACTIONS(858), - [aux_sym__text_token1] = ACTIONS(919), - [sym__newline_inline] = ACTIONS(922), - [sym__verbatim_begin] = ACTIONS(925), - }, - [97] = { - [sym__inline] = STATE(2099), - [sym__inline_element_with_whitespace] = STATE(239), - [sym__inline_element_with_newline] = STATE(239), - [sym__inline_core_element] = STATE(239), - [sym__hard_line_break] = STATE(624), - [sym_hard_line_break] = STATE(527), - [sym__smart_punctuation] = STATE(624), - [sym_autolink] = STATE(624), - [sym_emphasis] = STATE(624), - [sym_emphasis_begin] = STATE(281), - [sym_strong] = STATE(624), - [sym_strong_begin] = STATE(276), - [sym_highlighted] = STATE(624), - [sym_insert] = STATE(624), - [sym_delete] = STATE(624), - [sym_superscript] = STATE(624), - [sym_subscript] = STATE(624), - [sym_footnote_reference] = STATE(624), - [sym__image] = STATE(624), - [sym_full_reference_image] = STATE(624), - [sym_collapsed_reference_image] = STATE(624), - [sym_inline_image] = STATE(624), - [sym__image_description] = STATE(1450), - [sym__link] = STATE(624), - [sym_full_reference_link] = STATE(624), - [sym_collapsed_reference_link] = STATE(624), - [sym_inline_link] = STATE(624), - [sym_link_text] = STATE(1451), - [sym__comment_with_spaces] = STATE(624), - [sym_span] = STATE(624), - [sym_raw_inline] = STATE(624), - [sym_math] = STATE(624), - [sym_verbatim] = STATE(624), - [sym__todo_highlights] = STATE(624), - [sym_todo] = STATE(624), - [sym_note] = STATE(624), - [sym__symbol_fallback] = STATE(624), - [aux_sym__text] = STATE(595), - [aux_sym__inline_repeat1] = STATE(239), - [anon_sym_LBRACK] = ACTIONS(948), - [anon_sym_PIPE] = ACTIONS(951), - [anon_sym_LBRACE] = ACTIONS(954), - [sym__whitespace1] = ACTIONS(957), - [anon_sym_BSLASH] = ACTIONS(960), - [sym_quotation_marks] = ACTIONS(951), - [sym_ellipsis] = ACTIONS(951), - [sym_em_dash] = ACTIONS(951), - [sym_en_dash] = ACTIONS(954), - [sym_backslash_escape] = ACTIONS(954), - [anon_sym_LT] = ACTIONS(963), - [anon_sym_LBRACE_] = ACTIONS(966), - [anon_sym__] = ACTIONS(969), - [anon_sym_LBRACE_STAR] = ACTIONS(972), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_LBRACE_EQ] = ACTIONS(978), - [anon_sym_LBRACE_PLUS] = ACTIONS(981), - [anon_sym_PLUS_RBRACE] = ACTIONS(861), - [anon_sym_LBRACE_DASH] = ACTIONS(984), - [sym_symbol] = ACTIONS(951), - [anon_sym_LBRACE_CARET] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_LBRACE_TILDE] = ACTIONS(990), - [anon_sym_TILDE] = ACTIONS(990), - [anon_sym_LBRACK_CARET] = ACTIONS(993), - [anon_sym_BANG_LBRACK] = ACTIONS(996), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(999), - [anon_sym_TODO] = ACTIONS(1002), - [anon_sym_WIP] = ACTIONS(1002), - [anon_sym_NOTE] = ACTIONS(1005), - [anon_sym_INFO] = ACTIONS(1005), - [anon_sym_XXX] = ACTIONS(1005), - [sym_fixme] = ACTIONS(951), - [aux_sym__text_token1] = ACTIONS(1008), - [sym__newline_inline] = ACTIONS(1011), - [sym__verbatim_begin] = ACTIONS(1014), - }, - [98] = { - [sym__inline] = STATE(1844), - [sym__inline_element_with_whitespace] = STATE(198), - [sym__inline_element_with_newline] = STATE(198), - [sym__inline_core_element] = STATE(198), - [sym__inline_line] = STATE(772), - [sym__hard_line_break] = STATE(539), - [sym_hard_line_break] = STATE(512), - [sym__smart_punctuation] = STATE(539), - [sym_autolink] = STATE(539), - [sym_emphasis] = STATE(539), - [sym_emphasis_begin] = STATE(299), - [sym_strong] = STATE(539), - [sym_strong_begin] = STATE(298), - [sym_highlighted] = STATE(539), - [sym_insert] = STATE(539), - [sym_delete] = STATE(539), - [sym_superscript] = STATE(539), - [sym_subscript] = STATE(539), - [sym_footnote_reference] = STATE(539), - [sym__image] = STATE(539), - [sym_full_reference_image] = STATE(539), - [sym_collapsed_reference_image] = STATE(539), - [sym_inline_image] = STATE(539), - [sym__image_description] = STATE(1414), - [sym__link] = STATE(539), - [sym_full_reference_link] = STATE(539), - [sym_collapsed_reference_link] = STATE(539), - [sym_inline_link] = STATE(539), - [sym_link_text] = STATE(1411), - [sym__comment_with_spaces] = STATE(539), - [sym_span] = STATE(539), - [sym_raw_inline] = STATE(539), - [sym_math] = STATE(539), - [sym_verbatim] = STATE(539), - [sym__todo_highlights] = STATE(539), - [sym_todo] = STATE(539), - [sym_note] = STATE(539), - [sym__symbol_fallback] = STATE(539), - [aux_sym__text] = STATE(520), - [aux_sym_table_caption_repeat1] = STATE(69), - [aux_sym__inline_repeat1] = STATE(198), - [anon_sym_LBRACK] = ACTIONS(734), - [anon_sym_PIPE] = ACTIONS(736), - [anon_sym_LBRACE] = ACTIONS(740), - [sym__whitespace1] = ACTIONS(742), - [anon_sym_BSLASH] = ACTIONS(744), - [sym_quotation_marks] = ACTIONS(736), - [sym_ellipsis] = ACTIONS(736), - [sym_em_dash] = ACTIONS(736), - [sym_en_dash] = ACTIONS(740), - [sym_backslash_escape] = ACTIONS(740), - [anon_sym_LT] = ACTIONS(746), - [anon_sym_LBRACE_] = ACTIONS(748), - [anon_sym__] = ACTIONS(750), - [anon_sym_LBRACE_STAR] = ACTIONS(752), - [anon_sym_STAR] = ACTIONS(754), - [anon_sym_LBRACE_EQ] = ACTIONS(756), - [anon_sym_LBRACE_PLUS] = ACTIONS(758), - [anon_sym_LBRACE_DASH] = ACTIONS(760), - [sym_symbol] = ACTIONS(736), - [anon_sym_LBRACE_CARET] = ACTIONS(762), - [anon_sym_CARET] = ACTIONS(762), - [anon_sym_LBRACE_TILDE] = ACTIONS(764), - [anon_sym_TILDE] = ACTIONS(764), - [anon_sym_LBRACK_CARET] = ACTIONS(766), - [anon_sym_BANG_LBRACK] = ACTIONS(768), - [anon_sym_DOLLAR] = ACTIONS(770), - [anon_sym_TODO] = ACTIONS(772), - [anon_sym_WIP] = ACTIONS(772), - [anon_sym_NOTE] = ACTIONS(774), - [anon_sym_INFO] = ACTIONS(774), - [anon_sym_XXX] = ACTIONS(774), - [sym_fixme] = ACTIONS(736), - [aux_sym__text_token1] = ACTIONS(776), - [sym__newline_inline] = ACTIONS(778), - [sym__verbatim_begin] = ACTIONS(780), - }, - [99] = { - [sym__inline] = STATE(2374), - [sym__inline_element_with_whitespace] = STATE(242), - [sym__inline_element_with_newline] = STATE(242), - [sym__inline_core_element] = STATE(242), - [sym__hard_line_break] = STATE(627), - [sym_hard_line_break] = STATE(523), - [sym__smart_punctuation] = STATE(627), - [sym_autolink] = STATE(627), - [sym_emphasis] = STATE(627), - [sym_emphasis_begin] = STATE(296), - [sym_strong] = STATE(627), - [sym_strong_begin] = STATE(295), - [sym_highlighted] = STATE(627), - [sym_insert] = STATE(627), - [sym_delete] = STATE(627), - [sym_superscript] = STATE(627), - [sym_subscript] = STATE(627), - [sym_footnote_reference] = STATE(627), - [sym__image] = STATE(627), - [sym_full_reference_image] = STATE(627), - [sym_collapsed_reference_image] = STATE(627), - [sym_inline_image] = STATE(627), - [sym__image_description] = STATE(1448), - [sym__link] = STATE(627), - [sym_full_reference_link] = STATE(627), - [sym_collapsed_reference_link] = STATE(627), - [sym_inline_link] = STATE(627), - [sym_link_text] = STATE(1453), - [sym__comment_with_spaces] = STATE(627), - [sym_span] = STATE(627), - [sym_raw_inline] = STATE(627), - [sym_math] = STATE(627), - [sym_verbatim] = STATE(627), - [sym__todo_highlights] = STATE(627), - [sym_todo] = STATE(627), - [sym_note] = STATE(627), - [sym__symbol_fallback] = STATE(627), - [aux_sym__text] = STATE(560), - [aux_sym__inline_repeat1] = STATE(242), - [anon_sym_LBRACK] = ACTIONS(853), - [anon_sym_PIPE] = ACTIONS(858), - [anon_sym_LBRACE] = ACTIONS(863), - [sym__whitespace1] = ACTIONS(866), - [anon_sym_BSLASH] = ACTIONS(869), - [sym_quotation_marks] = ACTIONS(858), - [sym_ellipsis] = ACTIONS(858), - [sym_em_dash] = ACTIONS(858), - [sym_en_dash] = ACTIONS(863), - [sym_backslash_escape] = ACTIONS(863), - [anon_sym_LT] = ACTIONS(872), - [anon_sym_LBRACE_] = ACTIONS(875), - [anon_sym__] = ACTIONS(878), - [anon_sym_LBRACE_STAR] = ACTIONS(881), - [anon_sym_STAR] = ACTIONS(884), - [anon_sym_LBRACE_EQ] = ACTIONS(887), - [anon_sym_LBRACE_PLUS] = ACTIONS(890), - [anon_sym_LBRACE_DASH] = ACTIONS(893), - [sym_symbol] = ACTIONS(858), - [anon_sym_LBRACE_CARET] = ACTIONS(896), - [anon_sym_CARET] = ACTIONS(896), - [anon_sym_LBRACE_TILDE] = ACTIONS(899), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_LBRACK_CARET] = ACTIONS(902), - [anon_sym_BANG_LBRACK] = ACTIONS(905), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(910), - [anon_sym_TODO] = ACTIONS(913), - [anon_sym_WIP] = ACTIONS(913), - [anon_sym_NOTE] = ACTIONS(916), - [anon_sym_INFO] = ACTIONS(916), - [anon_sym_XXX] = ACTIONS(916), - [sym_fixme] = ACTIONS(858), - [aux_sym__text_token1] = ACTIONS(919), - [sym__eof_or_newline] = ACTIONS(861), - [sym__newline_inline] = ACTIONS(922), - [sym__verbatim_begin] = ACTIONS(925), - }, - [100] = { - [sym__inline] = STATE(1951), - [sym__inline_element_with_whitespace] = STATE(241), - [sym__inline_element_with_newline] = STATE(241), - [sym__inline_core_element] = STATE(241), - [sym__hard_line_break] = STATE(696), - [sym_hard_line_break] = STATE(530), - [sym__smart_punctuation] = STATE(696), - [sym_autolink] = STATE(696), - [sym_emphasis] = STATE(696), - [sym_emphasis_begin] = STATE(274), - [sym_strong] = STATE(696), - [sym_strong_begin] = STATE(275), - [sym_highlighted] = STATE(696), - [sym_insert] = STATE(696), - [sym_delete] = STATE(696), - [sym_superscript] = STATE(696), - [sym_subscript] = STATE(696), - [sym_footnote_reference] = STATE(696), - [sym__image] = STATE(696), - [sym_full_reference_image] = STATE(696), - [sym_collapsed_reference_image] = STATE(696), - [sym_inline_image] = STATE(696), - [sym__image_description] = STATE(1427), - [sym__link] = STATE(696), - [sym_full_reference_link] = STATE(696), - [sym_collapsed_reference_link] = STATE(696), - [sym_inline_link] = STATE(696), - [sym_link_text] = STATE(1426), - [sym__comment_with_spaces] = STATE(696), - [sym_span] = STATE(696), - [sym_raw_inline] = STATE(696), - [sym_math] = STATE(696), - [sym_verbatim] = STATE(696), - [sym__todo_highlights] = STATE(696), - [sym_todo] = STATE(696), - [sym_note] = STATE(696), - [sym__symbol_fallback] = STATE(696), - [aux_sym__text] = STATE(609), - [aux_sym__inline_repeat1] = STATE(241), - [anon_sym_LBRACK] = ACTIONS(1036), - [anon_sym_PIPE] = ACTIONS(1039), - [anon_sym_LBRACE] = ACTIONS(1042), - [sym__whitespace1] = ACTIONS(1045), - [anon_sym_BSLASH] = ACTIONS(1048), - [sym_quotation_marks] = ACTIONS(1039), - [sym_ellipsis] = ACTIONS(1039), - [sym_em_dash] = ACTIONS(1039), - [sym_en_dash] = ACTIONS(1042), - [sym_backslash_escape] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1051), - [anon_sym_LBRACE_] = ACTIONS(1054), - [anon_sym__] = ACTIONS(1057), - [anon_sym_LBRACE_STAR] = ACTIONS(1060), - [anon_sym_STAR] = ACTIONS(1063), - [anon_sym_LBRACE_EQ] = ACTIONS(1066), - [anon_sym_LBRACE_PLUS] = ACTIONS(1069), - [anon_sym_LBRACE_DASH] = ACTIONS(1072), - [sym_symbol] = ACTIONS(1039), - [anon_sym_LBRACE_CARET] = ACTIONS(1075), - [anon_sym_CARET] = ACTIONS(1075), - [anon_sym_LBRACE_TILDE] = ACTIONS(1078), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_TILDE_RBRACE] = ACTIONS(861), - [anon_sym_LBRACK_CARET] = ACTIONS(1081), - [anon_sym_BANG_LBRACK] = ACTIONS(1084), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(1087), - [anon_sym_TODO] = ACTIONS(1090), - [anon_sym_WIP] = ACTIONS(1090), - [anon_sym_NOTE] = ACTIONS(1093), - [anon_sym_INFO] = ACTIONS(1093), - [anon_sym_XXX] = ACTIONS(1093), - [sym_fixme] = ACTIONS(1039), - [aux_sym__text_token1] = ACTIONS(1096), - [sym__newline_inline] = ACTIONS(1099), - [sym__verbatim_begin] = ACTIONS(1102), - }, - [101] = { - [sym__heading1_content] = STATE(2228), - [sym__inline] = STATE(1794), - [sym__inline_element_with_whitespace] = STATE(198), - [sym__inline_element_with_newline] = STATE(198), - [sym__inline_core_element] = STATE(198), - [sym__inline_line] = STATE(1692), - [sym__hard_line_break] = STATE(539), - [sym_hard_line_break] = STATE(512), - [sym__smart_punctuation] = STATE(539), - [sym_autolink] = STATE(539), - [sym_emphasis] = STATE(539), - [sym_emphasis_begin] = STATE(299), - [sym_strong] = STATE(539), - [sym_strong_begin] = STATE(298), - [sym_highlighted] = STATE(539), - [sym_insert] = STATE(539), - [sym_delete] = STATE(539), - [sym_superscript] = STATE(539), - [sym_subscript] = STATE(539), - [sym_footnote_reference] = STATE(539), - [sym__image] = STATE(539), - [sym_full_reference_image] = STATE(539), - [sym_collapsed_reference_image] = STATE(539), - [sym_inline_image] = STATE(539), - [sym__image_description] = STATE(1414), - [sym__link] = STATE(539), - [sym_full_reference_link] = STATE(539), - [sym_collapsed_reference_link] = STATE(539), - [sym_inline_link] = STATE(539), - [sym_link_text] = STATE(1411), - [sym__comment_with_spaces] = STATE(539), - [sym_span] = STATE(539), - [sym_raw_inline] = STATE(539), - [sym_math] = STATE(539), - [sym_verbatim] = STATE(539), - [sym__todo_highlights] = STATE(539), - [sym_todo] = STATE(539), - [sym_note] = STATE(539), - [sym__symbol_fallback] = STATE(539), - [aux_sym__text] = STATE(520), - [aux_sym__inline_repeat1] = STATE(198), - [anon_sym_LBRACK] = ACTIONS(734), - [anon_sym_PIPE] = ACTIONS(736), - [anon_sym_LBRACE] = ACTIONS(740), - [sym__whitespace1] = ACTIONS(742), - [anon_sym_BSLASH] = ACTIONS(744), - [sym_quotation_marks] = ACTIONS(736), - [sym_ellipsis] = ACTIONS(736), - [sym_em_dash] = ACTIONS(736), - [sym_en_dash] = ACTIONS(740), - [sym_backslash_escape] = ACTIONS(740), - [anon_sym_LT] = ACTIONS(746), - [anon_sym_LBRACE_] = ACTIONS(748), - [anon_sym__] = ACTIONS(750), - [anon_sym_LBRACE_STAR] = ACTIONS(752), - [anon_sym_STAR] = ACTIONS(754), - [anon_sym_LBRACE_EQ] = ACTIONS(756), - [anon_sym_LBRACE_PLUS] = ACTIONS(758), - [anon_sym_LBRACE_DASH] = ACTIONS(760), - [sym_symbol] = ACTIONS(736), - [anon_sym_LBRACE_CARET] = ACTIONS(762), - [anon_sym_CARET] = ACTIONS(762), - [anon_sym_LBRACE_TILDE] = ACTIONS(764), - [anon_sym_TILDE] = ACTIONS(764), - [anon_sym_LBRACK_CARET] = ACTIONS(766), - [anon_sym_BANG_LBRACK] = ACTIONS(768), - [anon_sym_DOLLAR] = ACTIONS(770), - [anon_sym_TODO] = ACTIONS(772), - [anon_sym_WIP] = ACTIONS(772), - [anon_sym_NOTE] = ACTIONS(774), - [anon_sym_INFO] = ACTIONS(774), - [anon_sym_XXX] = ACTIONS(774), - [sym_fixme] = ACTIONS(736), - [aux_sym__text_token1] = ACTIONS(776), - [sym__newline_inline] = ACTIONS(778), - [sym__verbatim_begin] = ACTIONS(780), - }, - [102] = { - [sym__inline] = STATE(1948), - [sym__inline_element_with_whitespace] = STATE(230), - [sym__inline_element_with_newline] = STATE(230), - [sym__inline_core_element] = STATE(230), - [sym__hard_line_break] = STATE(688), - [sym_hard_line_break] = STATE(516), - [sym__smart_punctuation] = STATE(688), - [sym_autolink] = STATE(688), - [sym_emphasis] = STATE(688), - [sym_emphasis_begin] = STATE(291), - [sym_strong] = STATE(688), - [sym_strong_begin] = STATE(272), - [sym_highlighted] = STATE(688), - [sym_insert] = STATE(688), - [sym_delete] = STATE(688), - [sym_superscript] = STATE(688), - [sym_subscript] = STATE(688), - [sym_footnote_reference] = STATE(688), - [sym__image] = STATE(688), - [sym_full_reference_image] = STATE(688), - [sym_collapsed_reference_image] = STATE(688), - [sym_inline_image] = STATE(688), - [sym__image_description] = STATE(1436), - [sym__link] = STATE(688), - [sym_full_reference_link] = STATE(688), - [sym_collapsed_reference_link] = STATE(688), - [sym_inline_link] = STATE(688), - [sym_link_text] = STATE(1434), - [sym__comment_with_spaces] = STATE(688), - [sym_span] = STATE(688), - [sym_raw_inline] = STATE(688), - [sym_math] = STATE(688), - [sym_verbatim] = STATE(688), - [sym__todo_highlights] = STATE(688), - [sym_todo] = STATE(688), - [sym_note] = STATE(688), - [sym__symbol_fallback] = STATE(688), - [aux_sym__text] = STATE(583), - [aux_sym__inline_repeat1] = STATE(230), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_PIPE] = ACTIONS(1108), - [anon_sym_LBRACE] = ACTIONS(1111), - [sym__whitespace1] = ACTIONS(1114), - [anon_sym_BSLASH] = ACTIONS(1117), - [sym_quotation_marks] = ACTIONS(1108), - [sym_ellipsis] = ACTIONS(1108), - [sym_em_dash] = ACTIONS(1108), - [sym_en_dash] = ACTIONS(1111), - [sym_backslash_escape] = ACTIONS(1111), - [anon_sym_LT] = ACTIONS(1120), - [anon_sym_LBRACE_] = ACTIONS(1123), - [anon_sym__] = ACTIONS(1126), - [anon_sym_LBRACE_STAR] = ACTIONS(1129), - [anon_sym_STAR] = ACTIONS(1132), - [anon_sym_LBRACE_EQ] = ACTIONS(1135), - [anon_sym_LBRACE_PLUS] = ACTIONS(1138), - [anon_sym_LBRACE_DASH] = ACTIONS(1141), - [sym_symbol] = ACTIONS(1108), - [anon_sym_LBRACE_CARET] = ACTIONS(1144), - [anon_sym_CARET] = ACTIONS(1144), - [anon_sym_LBRACE_TILDE] = ACTIONS(1147), - [anon_sym_TILDE] = ACTIONS(1344), - [anon_sym_TILDE_RBRACE] = ACTIONS(861), - [anon_sym_LBRACK_CARET] = ACTIONS(1150), - [anon_sym_BANG_LBRACK] = ACTIONS(1153), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(1156), - [anon_sym_TODO] = ACTIONS(1159), - [anon_sym_WIP] = ACTIONS(1159), - [anon_sym_NOTE] = ACTIONS(1162), - [anon_sym_INFO] = ACTIONS(1162), - [anon_sym_XXX] = ACTIONS(1162), - [sym_fixme] = ACTIONS(1108), - [aux_sym__text_token1] = ACTIONS(1165), - [sym__newline_inline] = ACTIONS(1168), - [sym__verbatim_begin] = ACTIONS(1171), - }, - [103] = { - [sym__inline] = STATE(1977), - [sym__inline_element_with_whitespace] = STATE(219), - [sym__inline_element_with_newline] = STATE(219), - [sym__inline_core_element] = STATE(219), - [sym__hard_line_break] = STATE(682), - [sym_hard_line_break] = STATE(518), - [sym__smart_punctuation] = STATE(682), - [sym_autolink] = STATE(682), - [sym_emphasis] = STATE(682), - [sym_emphasis_begin] = STATE(286), - [sym_strong] = STATE(682), - [sym_strong_begin] = STATE(288), - [sym_highlighted] = STATE(682), - [sym_insert] = STATE(682), - [sym_delete] = STATE(682), - [sym_superscript] = STATE(682), - [sym_subscript] = STATE(682), - [sym_footnote_reference] = STATE(682), - [sym__image] = STATE(682), - [sym_full_reference_image] = STATE(682), - [sym_collapsed_reference_image] = STATE(682), - [sym_inline_image] = STATE(682), - [sym__image_description] = STATE(1440), - [sym__link] = STATE(682), - [sym_full_reference_link] = STATE(682), - [sym_collapsed_reference_link] = STATE(682), - [sym_inline_link] = STATE(682), - [sym_link_text] = STATE(1439), - [sym__comment_with_spaces] = STATE(682), - [sym_span] = STATE(682), - [sym_raw_inline] = STATE(682), - [sym_math] = STATE(682), - [sym_verbatim] = STATE(682), - [sym__todo_highlights] = STATE(682), - [sym_todo] = STATE(682), - [sym_note] = STATE(682), - [sym__symbol_fallback] = STATE(682), - [aux_sym__text] = STATE(572), - [aux_sym__inline_repeat1] = STATE(219), - [anon_sym_LBRACK] = ACTIONS(1182), - [anon_sym_PIPE] = ACTIONS(1185), - [anon_sym_LBRACE] = ACTIONS(1188), - [sym__whitespace1] = ACTIONS(1191), - [anon_sym_BSLASH] = ACTIONS(1194), - [sym_quotation_marks] = ACTIONS(1185), - [sym_ellipsis] = ACTIONS(1185), - [sym_em_dash] = ACTIONS(1185), - [sym_en_dash] = ACTIONS(1188), - [sym_backslash_escape] = ACTIONS(1188), - [anon_sym_LT] = ACTIONS(1197), - [anon_sym_LBRACE_] = ACTIONS(1200), - [anon_sym__] = ACTIONS(1203), - [anon_sym_LBRACE_STAR] = ACTIONS(1206), - [anon_sym_STAR] = ACTIONS(1209), - [anon_sym_LBRACE_EQ] = ACTIONS(1212), - [anon_sym_LBRACE_PLUS] = ACTIONS(1215), - [anon_sym_LBRACE_DASH] = ACTIONS(1218), - [sym_symbol] = ACTIONS(1185), - [anon_sym_LBRACE_CARET] = ACTIONS(1221), - [anon_sym_CARET] = ACTIONS(1221), - [anon_sym_LBRACE_TILDE] = ACTIONS(1224), - [anon_sym_TILDE] = ACTIONS(1347), - [anon_sym_TILDE_RBRACE] = ACTIONS(861), - [anon_sym_LBRACK_CARET] = ACTIONS(1227), - [anon_sym_BANG_LBRACK] = ACTIONS(1230), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(1233), - [anon_sym_TODO] = ACTIONS(1236), - [anon_sym_WIP] = ACTIONS(1236), - [anon_sym_NOTE] = ACTIONS(1239), - [anon_sym_INFO] = ACTIONS(1239), - [anon_sym_XXX] = ACTIONS(1239), - [sym_fixme] = ACTIONS(1185), - [aux_sym__text_token1] = ACTIONS(1242), - [sym__newline_inline] = ACTIONS(1245), - [sym__verbatim_begin] = ACTIONS(1248), - }, - [104] = { - [sym__inline] = STATE(1844), - [sym__inline_element_with_whitespace] = STATE(198), - [sym__inline_element_with_newline] = STATE(198), - [sym__inline_core_element] = STATE(198), - [sym__inline_line] = STATE(772), - [sym__hard_line_break] = STATE(539), - [sym_hard_line_break] = STATE(512), - [sym__smart_punctuation] = STATE(539), - [sym_autolink] = STATE(539), - [sym_emphasis] = STATE(539), - [sym_emphasis_begin] = STATE(299), - [sym_strong] = STATE(539), - [sym_strong_begin] = STATE(298), - [sym_highlighted] = STATE(539), - [sym_insert] = STATE(539), - [sym_delete] = STATE(539), - [sym_superscript] = STATE(539), - [sym_subscript] = STATE(539), - [sym_footnote_reference] = STATE(539), - [sym__image] = STATE(539), - [sym_full_reference_image] = STATE(539), - [sym_collapsed_reference_image] = STATE(539), - [sym_inline_image] = STATE(539), - [sym__image_description] = STATE(1414), - [sym__link] = STATE(539), - [sym_full_reference_link] = STATE(539), - [sym_collapsed_reference_link] = STATE(539), - [sym_inline_link] = STATE(539), - [sym_link_text] = STATE(1411), - [sym__comment_with_spaces] = STATE(539), - [sym_span] = STATE(539), - [sym_raw_inline] = STATE(539), - [sym_math] = STATE(539), - [sym_verbatim] = STATE(539), - [sym__todo_highlights] = STATE(539), - [sym_todo] = STATE(539), - [sym_note] = STATE(539), - [sym__symbol_fallback] = STATE(539), - [aux_sym__text] = STATE(520), - [aux_sym_table_caption_repeat1] = STATE(61), - [aux_sym__inline_repeat1] = STATE(198), - [anon_sym_LBRACK] = ACTIONS(734), - [anon_sym_PIPE] = ACTIONS(736), - [anon_sym_LBRACE] = ACTIONS(740), - [sym__whitespace1] = ACTIONS(742), - [anon_sym_BSLASH] = ACTIONS(744), - [sym_quotation_marks] = ACTIONS(736), - [sym_ellipsis] = ACTIONS(736), - [sym_em_dash] = ACTIONS(736), - [sym_en_dash] = ACTIONS(740), - [sym_backslash_escape] = ACTIONS(740), - [anon_sym_LT] = ACTIONS(746), - [anon_sym_LBRACE_] = ACTIONS(748), - [anon_sym__] = ACTIONS(750), - [anon_sym_LBRACE_STAR] = ACTIONS(752), - [anon_sym_STAR] = ACTIONS(754), - [anon_sym_LBRACE_EQ] = ACTIONS(756), - [anon_sym_LBRACE_PLUS] = ACTIONS(758), - [anon_sym_LBRACE_DASH] = ACTIONS(760), - [sym_symbol] = ACTIONS(736), - [anon_sym_LBRACE_CARET] = ACTIONS(762), - [anon_sym_CARET] = ACTIONS(762), - [anon_sym_LBRACE_TILDE] = ACTIONS(764), - [anon_sym_TILDE] = ACTIONS(764), - [anon_sym_LBRACK_CARET] = ACTIONS(766), - [anon_sym_BANG_LBRACK] = ACTIONS(768), - [anon_sym_DOLLAR] = ACTIONS(770), - [anon_sym_TODO] = ACTIONS(772), - [anon_sym_WIP] = ACTIONS(772), - [anon_sym_NOTE] = ACTIONS(774), - [anon_sym_INFO] = ACTIONS(774), - [anon_sym_XXX] = ACTIONS(774), - [sym_fixme] = ACTIONS(736), - [aux_sym__text_token1] = ACTIONS(776), - [sym__newline_inline] = ACTIONS(778), - [sym__verbatim_begin] = ACTIONS(780), - }, - [105] = { - [sym__heading2_content] = STATE(2213), - [sym__inline] = STATE(1928), - [sym__inline_element_with_whitespace] = STATE(198), - [sym__inline_element_with_newline] = STATE(198), - [sym__inline_core_element] = STATE(198), - [sym__inline_line] = STATE(1683), - [sym__hard_line_break] = STATE(539), - [sym_hard_line_break] = STATE(512), - [sym__smart_punctuation] = STATE(539), - [sym_autolink] = STATE(539), - [sym_emphasis] = STATE(539), - [sym_emphasis_begin] = STATE(299), - [sym_strong] = STATE(539), - [sym_strong_begin] = STATE(298), - [sym_highlighted] = STATE(539), - [sym_insert] = STATE(539), - [sym_delete] = STATE(539), - [sym_superscript] = STATE(539), - [sym_subscript] = STATE(539), - [sym_footnote_reference] = STATE(539), - [sym__image] = STATE(539), - [sym_full_reference_image] = STATE(539), - [sym_collapsed_reference_image] = STATE(539), - [sym_inline_image] = STATE(539), - [sym__image_description] = STATE(1414), - [sym__link] = STATE(539), - [sym_full_reference_link] = STATE(539), - [sym_collapsed_reference_link] = STATE(539), - [sym_inline_link] = STATE(539), - [sym_link_text] = STATE(1411), - [sym__comment_with_spaces] = STATE(539), - [sym_span] = STATE(539), - [sym_raw_inline] = STATE(539), - [sym_math] = STATE(539), - [sym_verbatim] = STATE(539), - [sym__todo_highlights] = STATE(539), - [sym_todo] = STATE(539), - [sym_note] = STATE(539), - [sym__symbol_fallback] = STATE(539), - [aux_sym__text] = STATE(520), - [aux_sym__inline_repeat1] = STATE(198), - [anon_sym_LBRACK] = ACTIONS(734), - [anon_sym_PIPE] = ACTIONS(736), - [anon_sym_LBRACE] = ACTIONS(740), - [sym__whitespace1] = ACTIONS(742), - [anon_sym_BSLASH] = ACTIONS(744), - [sym_quotation_marks] = ACTIONS(736), - [sym_ellipsis] = ACTIONS(736), - [sym_em_dash] = ACTIONS(736), - [sym_en_dash] = ACTIONS(740), - [sym_backslash_escape] = ACTIONS(740), - [anon_sym_LT] = ACTIONS(746), - [anon_sym_LBRACE_] = ACTIONS(748), - [anon_sym__] = ACTIONS(750), - [anon_sym_LBRACE_STAR] = ACTIONS(752), - [anon_sym_STAR] = ACTIONS(754), - [anon_sym_LBRACE_EQ] = ACTIONS(756), - [anon_sym_LBRACE_PLUS] = ACTIONS(758), - [anon_sym_LBRACE_DASH] = ACTIONS(760), - [sym_symbol] = ACTIONS(736), - [anon_sym_LBRACE_CARET] = ACTIONS(762), - [anon_sym_CARET] = ACTIONS(762), - [anon_sym_LBRACE_TILDE] = ACTIONS(764), - [anon_sym_TILDE] = ACTIONS(764), - [anon_sym_LBRACK_CARET] = ACTIONS(766), - [anon_sym_BANG_LBRACK] = ACTIONS(768), - [anon_sym_DOLLAR] = ACTIONS(770), - [anon_sym_TODO] = ACTIONS(772), - [anon_sym_WIP] = ACTIONS(772), - [anon_sym_NOTE] = ACTIONS(774), - [anon_sym_INFO] = ACTIONS(774), - [anon_sym_XXX] = ACTIONS(774), - [sym_fixme] = ACTIONS(736), - [aux_sym__text_token1] = ACTIONS(776), - [sym__newline_inline] = ACTIONS(778), - [sym__verbatim_begin] = ACTIONS(780), - }, - [106] = { - [sym__inline] = STATE(1976), - [sym__inline_element_with_whitespace] = STATE(217), - [sym__inline_element_with_newline] = STATE(217), - [sym__inline_core_element] = STATE(217), - [sym__hard_line_break] = STATE(667), - [sym_hard_line_break] = STATE(529), - [sym__smart_punctuation] = STATE(667), - [sym_autolink] = STATE(667), - [sym_emphasis] = STATE(667), - [sym_emphasis_begin] = STATE(290), - [sym_strong] = STATE(667), - [sym_strong_begin] = STATE(273), - [sym_highlighted] = STATE(667), - [sym_insert] = STATE(667), - [sym_delete] = STATE(667), - [sym_superscript] = STATE(667), - [sym_subscript] = STATE(667), - [sym_footnote_reference] = STATE(667), - [sym__image] = STATE(667), - [sym_full_reference_image] = STATE(667), - [sym_collapsed_reference_image] = STATE(667), - [sym_inline_image] = STATE(667), - [sym__image_description] = STATE(1445), - [sym__link] = STATE(667), - [sym_full_reference_link] = STATE(667), - [sym_collapsed_reference_link] = STATE(667), - [sym_inline_link] = STATE(667), - [sym_link_text] = STATE(1443), - [sym__comment_with_spaces] = STATE(667), - [sym_span] = STATE(667), - [sym_raw_inline] = STATE(667), - [sym_math] = STATE(667), - [sym_verbatim] = STATE(667), - [sym__todo_highlights] = STATE(667), - [sym_todo] = STATE(667), - [sym_note] = STATE(667), - [sym__symbol_fallback] = STATE(667), - [aux_sym__text] = STATE(554), - [aux_sym__inline_repeat1] = STATE(217), - [anon_sym_LBRACK] = ACTIONS(1257), - [anon_sym_PIPE] = ACTIONS(1260), - [anon_sym_LBRACE] = ACTIONS(1263), - [sym__whitespace1] = ACTIONS(1266), - [anon_sym_BSLASH] = ACTIONS(1269), - [sym_quotation_marks] = ACTIONS(1260), - [sym_ellipsis] = ACTIONS(1260), - [sym_em_dash] = ACTIONS(1260), - [sym_en_dash] = ACTIONS(1263), - [sym_backslash_escape] = ACTIONS(1263), - [anon_sym_LT] = ACTIONS(1272), - [anon_sym_LBRACE_] = ACTIONS(1275), - [anon_sym__] = ACTIONS(1278), - [anon_sym_LBRACE_STAR] = ACTIONS(1281), - [anon_sym_STAR] = ACTIONS(1284), - [anon_sym_LBRACE_EQ] = ACTIONS(1287), - [anon_sym_LBRACE_PLUS] = ACTIONS(1290), - [anon_sym_LBRACE_DASH] = ACTIONS(1293), - [sym_symbol] = ACTIONS(1260), - [anon_sym_LBRACE_CARET] = ACTIONS(1296), - [anon_sym_CARET] = ACTIONS(1296), - [anon_sym_LBRACE_TILDE] = ACTIONS(1299), - [anon_sym_TILDE] = ACTIONS(1350), - [anon_sym_TILDE_RBRACE] = ACTIONS(861), - [anon_sym_LBRACK_CARET] = ACTIONS(1302), - [anon_sym_BANG_LBRACK] = ACTIONS(1305), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(1308), - [anon_sym_TODO] = ACTIONS(1311), - [anon_sym_WIP] = ACTIONS(1311), - [anon_sym_NOTE] = ACTIONS(1314), - [anon_sym_INFO] = ACTIONS(1314), - [anon_sym_XXX] = ACTIONS(1314), - [sym_fixme] = ACTIONS(1260), - [aux_sym__text_token1] = ACTIONS(1317), - [sym__newline_inline] = ACTIONS(1320), - [sym__verbatim_begin] = ACTIONS(1323), - }, - [107] = { - [sym__inline] = STATE(1975), - [sym__inline_element_with_whitespace] = STATE(239), - [sym__inline_element_with_newline] = STATE(239), - [sym__inline_core_element] = STATE(239), - [sym__hard_line_break] = STATE(624), - [sym_hard_line_break] = STATE(527), - [sym__smart_punctuation] = STATE(624), - [sym_autolink] = STATE(624), - [sym_emphasis] = STATE(624), - [sym_emphasis_begin] = STATE(281), - [sym_strong] = STATE(624), - [sym_strong_begin] = STATE(276), - [sym_highlighted] = STATE(624), - [sym_insert] = STATE(624), - [sym_delete] = STATE(624), - [sym_superscript] = STATE(624), - [sym_subscript] = STATE(624), - [sym_footnote_reference] = STATE(624), - [sym__image] = STATE(624), - [sym_full_reference_image] = STATE(624), - [sym_collapsed_reference_image] = STATE(624), - [sym_inline_image] = STATE(624), - [sym__image_description] = STATE(1450), - [sym__link] = STATE(624), - [sym_full_reference_link] = STATE(624), - [sym_collapsed_reference_link] = STATE(624), - [sym_inline_link] = STATE(624), - [sym_link_text] = STATE(1451), - [sym__comment_with_spaces] = STATE(624), - [sym_span] = STATE(624), - [sym_raw_inline] = STATE(624), - [sym_math] = STATE(624), - [sym_verbatim] = STATE(624), - [sym__todo_highlights] = STATE(624), - [sym_todo] = STATE(624), - [sym_note] = STATE(624), - [sym__symbol_fallback] = STATE(624), - [aux_sym__text] = STATE(595), - [aux_sym__inline_repeat1] = STATE(239), - [anon_sym_LBRACK] = ACTIONS(948), - [anon_sym_PIPE] = ACTIONS(951), - [anon_sym_LBRACE] = ACTIONS(954), - [sym__whitespace1] = ACTIONS(957), - [anon_sym_BSLASH] = ACTIONS(960), - [sym_quotation_marks] = ACTIONS(951), - [sym_ellipsis] = ACTIONS(951), - [sym_em_dash] = ACTIONS(951), - [sym_en_dash] = ACTIONS(954), - [sym_backslash_escape] = ACTIONS(954), - [anon_sym_LT] = ACTIONS(963), - [anon_sym_LBRACE_] = ACTIONS(966), - [anon_sym__] = ACTIONS(969), - [anon_sym_LBRACE_STAR] = ACTIONS(972), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_LBRACE_EQ] = ACTIONS(978), - [anon_sym_LBRACE_PLUS] = ACTIONS(981), - [anon_sym_LBRACE_DASH] = ACTIONS(984), - [sym_symbol] = ACTIONS(951), - [anon_sym_LBRACE_CARET] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_LBRACE_TILDE] = ACTIONS(990), - [anon_sym_TILDE] = ACTIONS(1353), - [anon_sym_TILDE_RBRACE] = ACTIONS(861), - [anon_sym_LBRACK_CARET] = ACTIONS(993), - [anon_sym_BANG_LBRACK] = ACTIONS(996), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(999), - [anon_sym_TODO] = ACTIONS(1002), - [anon_sym_WIP] = ACTIONS(1002), - [anon_sym_NOTE] = ACTIONS(1005), - [anon_sym_INFO] = ACTIONS(1005), - [anon_sym_XXX] = ACTIONS(1005), - [sym_fixme] = ACTIONS(951), - [aux_sym__text_token1] = ACTIONS(1008), - [sym__newline_inline] = ACTIONS(1011), - [sym__verbatim_begin] = ACTIONS(1014), - }, - [108] = { - [sym__inline] = STATE(2179), - [sym__inline_element_with_whitespace] = STATE(242), - [sym__inline_element_with_newline] = STATE(242), - [sym__inline_core_element] = STATE(242), - [sym__hard_line_break] = STATE(627), - [sym_hard_line_break] = STATE(523), - [sym__smart_punctuation] = STATE(627), - [sym_autolink] = STATE(627), - [sym_emphasis] = STATE(627), - [sym_emphasis_begin] = STATE(296), - [sym_strong] = STATE(627), - [sym_strong_begin] = STATE(295), - [sym_highlighted] = STATE(627), - [sym_insert] = STATE(627), - [sym_delete] = STATE(627), - [sym_superscript] = STATE(627), - [sym_subscript] = STATE(627), - [sym_footnote_reference] = STATE(627), - [sym__image] = STATE(627), - [sym_full_reference_image] = STATE(627), - [sym_collapsed_reference_image] = STATE(627), - [sym_inline_image] = STATE(627), - [sym__image_description] = STATE(1448), - [sym__link] = STATE(627), - [sym_full_reference_link] = STATE(627), - [sym_collapsed_reference_link] = STATE(627), - [sym_inline_link] = STATE(627), - [sym_link_text] = STATE(1453), - [sym__comment_with_spaces] = STATE(627), - [sym_span] = STATE(627), - [sym_raw_inline] = STATE(627), - [sym_math] = STATE(627), - [sym_verbatim] = STATE(627), - [sym__todo_highlights] = STATE(627), - [sym_todo] = STATE(627), - [sym_note] = STATE(627), - [sym__symbol_fallback] = STATE(627), - [aux_sym__text] = STATE(560), - [aux_sym__inline_repeat1] = STATE(242), - [anon_sym_LBRACK] = ACTIONS(853), - [anon_sym_RBRACK] = ACTIONS(861), - [anon_sym_PIPE] = ACTIONS(858), - [anon_sym_LBRACE] = ACTIONS(863), - [sym__whitespace1] = ACTIONS(866), - [anon_sym_BSLASH] = ACTIONS(869), - [sym_quotation_marks] = ACTIONS(858), - [sym_ellipsis] = ACTIONS(858), - [sym_em_dash] = ACTIONS(858), - [sym_en_dash] = ACTIONS(863), - [sym_backslash_escape] = ACTIONS(863), - [anon_sym_LT] = ACTIONS(872), - [anon_sym_LBRACE_] = ACTIONS(875), - [anon_sym__] = ACTIONS(878), - [anon_sym_LBRACE_STAR] = ACTIONS(881), - [anon_sym_STAR] = ACTIONS(884), - [anon_sym_LBRACE_EQ] = ACTIONS(887), - [anon_sym_LBRACE_PLUS] = ACTIONS(890), - [anon_sym_LBRACE_DASH] = ACTIONS(893), - [sym_symbol] = ACTIONS(858), - [anon_sym_LBRACE_CARET] = ACTIONS(896), - [anon_sym_CARET] = ACTIONS(896), - [anon_sym_LBRACE_TILDE] = ACTIONS(899), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_LBRACK_CARET] = ACTIONS(902), - [anon_sym_BANG_LBRACK] = ACTIONS(905), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(910), - [anon_sym_TODO] = ACTIONS(913), - [anon_sym_WIP] = ACTIONS(913), - [anon_sym_NOTE] = ACTIONS(916), - [anon_sym_INFO] = ACTIONS(916), - [anon_sym_XXX] = ACTIONS(916), - [sym_fixme] = ACTIONS(858), - [aux_sym__text_token1] = ACTIONS(919), - [sym__newline_inline] = ACTIONS(922), - [sym__verbatim_begin] = ACTIONS(925), - }, - [109] = { - [sym__heading5_content] = STATE(2210), - [sym__inline] = STATE(1843), - [sym__inline_element_with_whitespace] = STATE(198), - [sym__inline_element_with_newline] = STATE(198), - [sym__inline_core_element] = STATE(198), - [sym__inline_line] = STATE(1681), - [sym__hard_line_break] = STATE(539), - [sym_hard_line_break] = STATE(512), - [sym__smart_punctuation] = STATE(539), - [sym_autolink] = STATE(539), - [sym_emphasis] = STATE(539), - [sym_emphasis_begin] = STATE(299), - [sym_strong] = STATE(539), - [sym_strong_begin] = STATE(298), - [sym_highlighted] = STATE(539), - [sym_insert] = STATE(539), - [sym_delete] = STATE(539), - [sym_superscript] = STATE(539), - [sym_subscript] = STATE(539), - [sym_footnote_reference] = STATE(539), - [sym__image] = STATE(539), - [sym_full_reference_image] = STATE(539), - [sym_collapsed_reference_image] = STATE(539), - [sym_inline_image] = STATE(539), - [sym__image_description] = STATE(1414), - [sym__link] = STATE(539), - [sym_full_reference_link] = STATE(539), - [sym_collapsed_reference_link] = STATE(539), - [sym_inline_link] = STATE(539), - [sym_link_text] = STATE(1411), - [sym__comment_with_spaces] = STATE(539), - [sym_span] = STATE(539), - [sym_raw_inline] = STATE(539), - [sym_math] = STATE(539), - [sym_verbatim] = STATE(539), - [sym__todo_highlights] = STATE(539), - [sym_todo] = STATE(539), - [sym_note] = STATE(539), - [sym__symbol_fallback] = STATE(539), - [aux_sym__text] = STATE(520), - [aux_sym__inline_repeat1] = STATE(198), - [anon_sym_LBRACK] = ACTIONS(734), - [anon_sym_PIPE] = ACTIONS(736), - [anon_sym_LBRACE] = ACTIONS(740), - [sym__whitespace1] = ACTIONS(742), - [anon_sym_BSLASH] = ACTIONS(744), - [sym_quotation_marks] = ACTIONS(736), - [sym_ellipsis] = ACTIONS(736), - [sym_em_dash] = ACTIONS(736), - [sym_en_dash] = ACTIONS(740), - [sym_backslash_escape] = ACTIONS(740), - [anon_sym_LT] = ACTIONS(746), - [anon_sym_LBRACE_] = ACTIONS(748), - [anon_sym__] = ACTIONS(750), - [anon_sym_LBRACE_STAR] = ACTIONS(752), - [anon_sym_STAR] = ACTIONS(754), - [anon_sym_LBRACE_EQ] = ACTIONS(756), - [anon_sym_LBRACE_PLUS] = ACTIONS(758), - [anon_sym_LBRACE_DASH] = ACTIONS(760), - [sym_symbol] = ACTIONS(736), - [anon_sym_LBRACE_CARET] = ACTIONS(762), - [anon_sym_CARET] = ACTIONS(762), - [anon_sym_LBRACE_TILDE] = ACTIONS(764), - [anon_sym_TILDE] = ACTIONS(764), - [anon_sym_LBRACK_CARET] = ACTIONS(766), - [anon_sym_BANG_LBRACK] = ACTIONS(768), - [anon_sym_DOLLAR] = ACTIONS(770), - [anon_sym_TODO] = ACTIONS(772), - [anon_sym_WIP] = ACTIONS(772), - [anon_sym_NOTE] = ACTIONS(774), - [anon_sym_INFO] = ACTIONS(774), - [anon_sym_XXX] = ACTIONS(774), - [sym_fixme] = ACTIONS(736), - [aux_sym__text_token1] = ACTIONS(776), - [sym__newline_inline] = ACTIONS(778), - [sym__verbatim_begin] = ACTIONS(780), - }, - [110] = { - [sym__heading6_content] = STATE(2292), - [sym__inline] = STATE(1763), - [sym__inline_element_with_whitespace] = STATE(198), - [sym__inline_element_with_newline] = STATE(198), - [sym__inline_core_element] = STATE(198), - [sym__inline_line] = STATE(1680), - [sym__hard_line_break] = STATE(539), - [sym_hard_line_break] = STATE(512), - [sym__smart_punctuation] = STATE(539), - [sym_autolink] = STATE(539), - [sym_emphasis] = STATE(539), - [sym_emphasis_begin] = STATE(299), - [sym_strong] = STATE(539), - [sym_strong_begin] = STATE(298), - [sym_highlighted] = STATE(539), - [sym_insert] = STATE(539), - [sym_delete] = STATE(539), - [sym_superscript] = STATE(539), - [sym_subscript] = STATE(539), - [sym_footnote_reference] = STATE(539), - [sym__image] = STATE(539), - [sym_full_reference_image] = STATE(539), - [sym_collapsed_reference_image] = STATE(539), - [sym_inline_image] = STATE(539), - [sym__image_description] = STATE(1414), - [sym__link] = STATE(539), - [sym_full_reference_link] = STATE(539), - [sym_collapsed_reference_link] = STATE(539), - [sym_inline_link] = STATE(539), - [sym_link_text] = STATE(1411), - [sym__comment_with_spaces] = STATE(539), - [sym_span] = STATE(539), - [sym_raw_inline] = STATE(539), - [sym_math] = STATE(539), - [sym_verbatim] = STATE(539), - [sym__todo_highlights] = STATE(539), - [sym_todo] = STATE(539), - [sym_note] = STATE(539), - [sym__symbol_fallback] = STATE(539), - [aux_sym__text] = STATE(520), - [aux_sym__inline_repeat1] = STATE(198), - [anon_sym_LBRACK] = ACTIONS(734), - [anon_sym_PIPE] = ACTIONS(736), - [anon_sym_LBRACE] = ACTIONS(740), - [sym__whitespace1] = ACTIONS(742), - [anon_sym_BSLASH] = ACTIONS(744), - [sym_quotation_marks] = ACTIONS(736), - [sym_ellipsis] = ACTIONS(736), - [sym_em_dash] = ACTIONS(736), - [sym_en_dash] = ACTIONS(740), - [sym_backslash_escape] = ACTIONS(740), - [anon_sym_LT] = ACTIONS(746), - [anon_sym_LBRACE_] = ACTIONS(748), - [anon_sym__] = ACTIONS(750), - [anon_sym_LBRACE_STAR] = ACTIONS(752), - [anon_sym_STAR] = ACTIONS(754), - [anon_sym_LBRACE_EQ] = ACTIONS(756), - [anon_sym_LBRACE_PLUS] = ACTIONS(758), - [anon_sym_LBRACE_DASH] = ACTIONS(760), - [sym_symbol] = ACTIONS(736), - [anon_sym_LBRACE_CARET] = ACTIONS(762), - [anon_sym_CARET] = ACTIONS(762), - [anon_sym_LBRACE_TILDE] = ACTIONS(764), - [anon_sym_TILDE] = ACTIONS(764), - [anon_sym_LBRACK_CARET] = ACTIONS(766), - [anon_sym_BANG_LBRACK] = ACTIONS(768), - [anon_sym_DOLLAR] = ACTIONS(770), - [anon_sym_TODO] = ACTIONS(772), - [anon_sym_WIP] = ACTIONS(772), - [anon_sym_NOTE] = ACTIONS(774), - [anon_sym_INFO] = ACTIONS(774), - [anon_sym_XXX] = ACTIONS(774), - [sym_fixme] = ACTIONS(736), - [aux_sym__text_token1] = ACTIONS(776), - [sym__newline_inline] = ACTIONS(778), - [sym__verbatim_begin] = ACTIONS(780), - }, - [111] = { - [sym__heading5_content] = STATE(2293), - [sym__inline] = STATE(1843), - [sym__inline_element_with_whitespace] = STATE(198), - [sym__inline_element_with_newline] = STATE(198), - [sym__inline_core_element] = STATE(198), - [sym__inline_line] = STATE(1681), - [sym__hard_line_break] = STATE(539), - [sym_hard_line_break] = STATE(512), - [sym__smart_punctuation] = STATE(539), - [sym_autolink] = STATE(539), - [sym_emphasis] = STATE(539), - [sym_emphasis_begin] = STATE(299), - [sym_strong] = STATE(539), - [sym_strong_begin] = STATE(298), - [sym_highlighted] = STATE(539), - [sym_insert] = STATE(539), - [sym_delete] = STATE(539), - [sym_superscript] = STATE(539), - [sym_subscript] = STATE(539), - [sym_footnote_reference] = STATE(539), - [sym__image] = STATE(539), - [sym_full_reference_image] = STATE(539), - [sym_collapsed_reference_image] = STATE(539), - [sym_inline_image] = STATE(539), - [sym__image_description] = STATE(1414), - [sym__link] = STATE(539), - [sym_full_reference_link] = STATE(539), - [sym_collapsed_reference_link] = STATE(539), - [sym_inline_link] = STATE(539), - [sym_link_text] = STATE(1411), - [sym__comment_with_spaces] = STATE(539), - [sym_span] = STATE(539), - [sym_raw_inline] = STATE(539), - [sym_math] = STATE(539), - [sym_verbatim] = STATE(539), - [sym__todo_highlights] = STATE(539), - [sym_todo] = STATE(539), - [sym_note] = STATE(539), - [sym__symbol_fallback] = STATE(539), - [aux_sym__text] = STATE(520), - [aux_sym__inline_repeat1] = STATE(198), - [anon_sym_LBRACK] = ACTIONS(734), - [anon_sym_PIPE] = ACTIONS(736), - [anon_sym_LBRACE] = ACTIONS(740), - [sym__whitespace1] = ACTIONS(742), - [anon_sym_BSLASH] = ACTIONS(744), - [sym_quotation_marks] = ACTIONS(736), - [sym_ellipsis] = ACTIONS(736), - [sym_em_dash] = ACTIONS(736), - [sym_en_dash] = ACTIONS(740), - [sym_backslash_escape] = ACTIONS(740), - [anon_sym_LT] = ACTIONS(746), - [anon_sym_LBRACE_] = ACTIONS(748), - [anon_sym__] = ACTIONS(750), - [anon_sym_LBRACE_STAR] = ACTIONS(752), - [anon_sym_STAR] = ACTIONS(754), - [anon_sym_LBRACE_EQ] = ACTIONS(756), - [anon_sym_LBRACE_PLUS] = ACTIONS(758), - [anon_sym_LBRACE_DASH] = ACTIONS(760), - [sym_symbol] = ACTIONS(736), - [anon_sym_LBRACE_CARET] = ACTIONS(762), - [anon_sym_CARET] = ACTIONS(762), - [anon_sym_LBRACE_TILDE] = ACTIONS(764), - [anon_sym_TILDE] = ACTIONS(764), - [anon_sym_LBRACK_CARET] = ACTIONS(766), - [anon_sym_BANG_LBRACK] = ACTIONS(768), - [anon_sym_DOLLAR] = ACTIONS(770), - [anon_sym_TODO] = ACTIONS(772), - [anon_sym_WIP] = ACTIONS(772), - [anon_sym_NOTE] = ACTIONS(774), - [anon_sym_INFO] = ACTIONS(774), - [anon_sym_XXX] = ACTIONS(774), - [sym_fixme] = ACTIONS(736), - [aux_sym__text_token1] = ACTIONS(776), - [sym__newline_inline] = ACTIONS(778), - [sym__verbatim_begin] = ACTIONS(780), - }, - [112] = { - [sym__heading5_content] = STATE(2294), - [sym__inline] = STATE(1843), - [sym__inline_element_with_whitespace] = STATE(198), - [sym__inline_element_with_newline] = STATE(198), - [sym__inline_core_element] = STATE(198), - [sym__inline_line] = STATE(1681), - [sym__hard_line_break] = STATE(539), - [sym_hard_line_break] = STATE(512), - [sym__smart_punctuation] = STATE(539), - [sym_autolink] = STATE(539), - [sym_emphasis] = STATE(539), - [sym_emphasis_begin] = STATE(299), - [sym_strong] = STATE(539), - [sym_strong_begin] = STATE(298), - [sym_highlighted] = STATE(539), - [sym_insert] = STATE(539), - [sym_delete] = STATE(539), - [sym_superscript] = STATE(539), - [sym_subscript] = STATE(539), - [sym_footnote_reference] = STATE(539), - [sym__image] = STATE(539), - [sym_full_reference_image] = STATE(539), - [sym_collapsed_reference_image] = STATE(539), - [sym_inline_image] = STATE(539), - [sym__image_description] = STATE(1414), - [sym__link] = STATE(539), - [sym_full_reference_link] = STATE(539), - [sym_collapsed_reference_link] = STATE(539), - [sym_inline_link] = STATE(539), - [sym_link_text] = STATE(1411), - [sym__comment_with_spaces] = STATE(539), - [sym_span] = STATE(539), - [sym_raw_inline] = STATE(539), - [sym_math] = STATE(539), - [sym_verbatim] = STATE(539), - [sym__todo_highlights] = STATE(539), - [sym_todo] = STATE(539), - [sym_note] = STATE(539), - [sym__symbol_fallback] = STATE(539), - [aux_sym__text] = STATE(520), - [aux_sym__inline_repeat1] = STATE(198), - [anon_sym_LBRACK] = ACTIONS(734), - [anon_sym_PIPE] = ACTIONS(736), - [anon_sym_LBRACE] = ACTIONS(740), - [sym__whitespace1] = ACTIONS(742), - [anon_sym_BSLASH] = ACTIONS(744), - [sym_quotation_marks] = ACTIONS(736), - [sym_ellipsis] = ACTIONS(736), - [sym_em_dash] = ACTIONS(736), - [sym_en_dash] = ACTIONS(740), - [sym_backslash_escape] = ACTIONS(740), - [anon_sym_LT] = ACTIONS(746), - [anon_sym_LBRACE_] = ACTIONS(748), - [anon_sym__] = ACTIONS(750), - [anon_sym_LBRACE_STAR] = ACTIONS(752), - [anon_sym_STAR] = ACTIONS(754), - [anon_sym_LBRACE_EQ] = ACTIONS(756), - [anon_sym_LBRACE_PLUS] = ACTIONS(758), - [anon_sym_LBRACE_DASH] = ACTIONS(760), - [sym_symbol] = ACTIONS(736), - [anon_sym_LBRACE_CARET] = ACTIONS(762), - [anon_sym_CARET] = ACTIONS(762), - [anon_sym_LBRACE_TILDE] = ACTIONS(764), - [anon_sym_TILDE] = ACTIONS(764), - [anon_sym_LBRACK_CARET] = ACTIONS(766), - [anon_sym_BANG_LBRACK] = ACTIONS(768), - [anon_sym_DOLLAR] = ACTIONS(770), - [anon_sym_TODO] = ACTIONS(772), - [anon_sym_WIP] = ACTIONS(772), - [anon_sym_NOTE] = ACTIONS(774), - [anon_sym_INFO] = ACTIONS(774), - [anon_sym_XXX] = ACTIONS(774), - [sym_fixme] = ACTIONS(736), - [aux_sym__text_token1] = ACTIONS(776), - [sym__newline_inline] = ACTIONS(778), - [sym__verbatim_begin] = ACTIONS(780), - }, - [113] = { - [sym__heading5_content] = STATE(2301), - [sym__inline] = STATE(1843), - [sym__inline_element_with_whitespace] = STATE(198), - [sym__inline_element_with_newline] = STATE(198), - [sym__inline_core_element] = STATE(198), - [sym__inline_line] = STATE(1681), - [sym__hard_line_break] = STATE(539), - [sym_hard_line_break] = STATE(512), - [sym__smart_punctuation] = STATE(539), - [sym_autolink] = STATE(539), - [sym_emphasis] = STATE(539), - [sym_emphasis_begin] = STATE(299), - [sym_strong] = STATE(539), - [sym_strong_begin] = STATE(298), - [sym_highlighted] = STATE(539), - [sym_insert] = STATE(539), - [sym_delete] = STATE(539), - [sym_superscript] = STATE(539), - [sym_subscript] = STATE(539), - [sym_footnote_reference] = STATE(539), - [sym__image] = STATE(539), - [sym_full_reference_image] = STATE(539), - [sym_collapsed_reference_image] = STATE(539), - [sym_inline_image] = STATE(539), - [sym__image_description] = STATE(1414), - [sym__link] = STATE(539), - [sym_full_reference_link] = STATE(539), - [sym_collapsed_reference_link] = STATE(539), - [sym_inline_link] = STATE(539), - [sym_link_text] = STATE(1411), - [sym__comment_with_spaces] = STATE(539), - [sym_span] = STATE(539), - [sym_raw_inline] = STATE(539), - [sym_math] = STATE(539), - [sym_verbatim] = STATE(539), - [sym__todo_highlights] = STATE(539), - [sym_todo] = STATE(539), - [sym_note] = STATE(539), - [sym__symbol_fallback] = STATE(539), - [aux_sym__text] = STATE(520), - [aux_sym__inline_repeat1] = STATE(198), - [anon_sym_LBRACK] = ACTIONS(734), - [anon_sym_PIPE] = ACTIONS(736), - [anon_sym_LBRACE] = ACTIONS(740), - [sym__whitespace1] = ACTIONS(742), - [anon_sym_BSLASH] = ACTIONS(744), - [sym_quotation_marks] = ACTIONS(736), - [sym_ellipsis] = ACTIONS(736), - [sym_em_dash] = ACTIONS(736), - [sym_en_dash] = ACTIONS(740), - [sym_backslash_escape] = ACTIONS(740), - [anon_sym_LT] = ACTIONS(746), - [anon_sym_LBRACE_] = ACTIONS(748), - [anon_sym__] = ACTIONS(750), - [anon_sym_LBRACE_STAR] = ACTIONS(752), - [anon_sym_STAR] = ACTIONS(754), - [anon_sym_LBRACE_EQ] = ACTIONS(756), - [anon_sym_LBRACE_PLUS] = ACTIONS(758), - [anon_sym_LBRACE_DASH] = ACTIONS(760), - [sym_symbol] = ACTIONS(736), - [anon_sym_LBRACE_CARET] = ACTIONS(762), - [anon_sym_CARET] = ACTIONS(762), - [anon_sym_LBRACE_TILDE] = ACTIONS(764), - [anon_sym_TILDE] = ACTIONS(764), - [anon_sym_LBRACK_CARET] = ACTIONS(766), - [anon_sym_BANG_LBRACK] = ACTIONS(768), - [anon_sym_DOLLAR] = ACTIONS(770), - [anon_sym_TODO] = ACTIONS(772), - [anon_sym_WIP] = ACTIONS(772), - [anon_sym_NOTE] = ACTIONS(774), - [anon_sym_INFO] = ACTIONS(774), - [anon_sym_XXX] = ACTIONS(774), - [sym_fixme] = ACTIONS(736), - [aux_sym__text_token1] = ACTIONS(776), - [sym__newline_inline] = ACTIONS(778), - [sym__verbatim_begin] = ACTIONS(780), - }, - [114] = { - [sym__heading2_content] = STATE(2302), - [sym__inline] = STATE(1928), - [sym__inline_element_with_whitespace] = STATE(198), - [sym__inline_element_with_newline] = STATE(198), - [sym__inline_core_element] = STATE(198), - [sym__inline_line] = STATE(1683), - [sym__hard_line_break] = STATE(539), - [sym_hard_line_break] = STATE(512), - [sym__smart_punctuation] = STATE(539), - [sym_autolink] = STATE(539), - [sym_emphasis] = STATE(539), - [sym_emphasis_begin] = STATE(299), - [sym_strong] = STATE(539), - [sym_strong_begin] = STATE(298), - [sym_highlighted] = STATE(539), - [sym_insert] = STATE(539), - [sym_delete] = STATE(539), - [sym_superscript] = STATE(539), - [sym_subscript] = STATE(539), - [sym_footnote_reference] = STATE(539), - [sym__image] = STATE(539), - [sym_full_reference_image] = STATE(539), - [sym_collapsed_reference_image] = STATE(539), - [sym_inline_image] = STATE(539), - [sym__image_description] = STATE(1414), - [sym__link] = STATE(539), - [sym_full_reference_link] = STATE(539), - [sym_collapsed_reference_link] = STATE(539), - [sym_inline_link] = STATE(539), - [sym_link_text] = STATE(1411), - [sym__comment_with_spaces] = STATE(539), - [sym_span] = STATE(539), - [sym_raw_inline] = STATE(539), - [sym_math] = STATE(539), - [sym_verbatim] = STATE(539), - [sym__todo_highlights] = STATE(539), - [sym_todo] = STATE(539), - [sym_note] = STATE(539), - [sym__symbol_fallback] = STATE(539), - [aux_sym__text] = STATE(520), - [aux_sym__inline_repeat1] = STATE(198), - [anon_sym_LBRACK] = ACTIONS(734), - [anon_sym_PIPE] = ACTIONS(736), - [anon_sym_LBRACE] = ACTIONS(740), - [sym__whitespace1] = ACTIONS(742), - [anon_sym_BSLASH] = ACTIONS(744), - [sym_quotation_marks] = ACTIONS(736), - [sym_ellipsis] = ACTIONS(736), - [sym_em_dash] = ACTIONS(736), - [sym_en_dash] = ACTIONS(740), - [sym_backslash_escape] = ACTIONS(740), - [anon_sym_LT] = ACTIONS(746), - [anon_sym_LBRACE_] = ACTIONS(748), - [anon_sym__] = ACTIONS(750), - [anon_sym_LBRACE_STAR] = ACTIONS(752), - [anon_sym_STAR] = ACTIONS(754), - [anon_sym_LBRACE_EQ] = ACTIONS(756), - [anon_sym_LBRACE_PLUS] = ACTIONS(758), - [anon_sym_LBRACE_DASH] = ACTIONS(760), - [sym_symbol] = ACTIONS(736), - [anon_sym_LBRACE_CARET] = ACTIONS(762), - [anon_sym_CARET] = ACTIONS(762), - [anon_sym_LBRACE_TILDE] = ACTIONS(764), - [anon_sym_TILDE] = ACTIONS(764), - [anon_sym_LBRACK_CARET] = ACTIONS(766), - [anon_sym_BANG_LBRACK] = ACTIONS(768), - [anon_sym_DOLLAR] = ACTIONS(770), - [anon_sym_TODO] = ACTIONS(772), - [anon_sym_WIP] = ACTIONS(772), - [anon_sym_NOTE] = ACTIONS(774), - [anon_sym_INFO] = ACTIONS(774), - [anon_sym_XXX] = ACTIONS(774), - [sym_fixme] = ACTIONS(736), - [aux_sym__text_token1] = ACTIONS(776), - [sym__newline_inline] = ACTIONS(778), - [sym__verbatim_begin] = ACTIONS(780), - }, - [115] = { - [sym__heading1_content] = STATE(2303), - [sym__inline] = STATE(1794), - [sym__inline_element_with_whitespace] = STATE(198), - [sym__inline_element_with_newline] = STATE(198), - [sym__inline_core_element] = STATE(198), - [sym__inline_line] = STATE(1692), - [sym__hard_line_break] = STATE(539), - [sym_hard_line_break] = STATE(512), - [sym__smart_punctuation] = STATE(539), - [sym_autolink] = STATE(539), - [sym_emphasis] = STATE(539), - [sym_emphasis_begin] = STATE(299), - [sym_strong] = STATE(539), - [sym_strong_begin] = STATE(298), - [sym_highlighted] = STATE(539), - [sym_insert] = STATE(539), - [sym_delete] = STATE(539), - [sym_superscript] = STATE(539), - [sym_subscript] = STATE(539), - [sym_footnote_reference] = STATE(539), - [sym__image] = STATE(539), - [sym_full_reference_image] = STATE(539), - [sym_collapsed_reference_image] = STATE(539), - [sym_inline_image] = STATE(539), - [sym__image_description] = STATE(1414), - [sym__link] = STATE(539), - [sym_full_reference_link] = STATE(539), - [sym_collapsed_reference_link] = STATE(539), - [sym_inline_link] = STATE(539), - [sym_link_text] = STATE(1411), - [sym__comment_with_spaces] = STATE(539), - [sym_span] = STATE(539), - [sym_raw_inline] = STATE(539), - [sym_math] = STATE(539), - [sym_verbatim] = STATE(539), - [sym__todo_highlights] = STATE(539), - [sym_todo] = STATE(539), - [sym_note] = STATE(539), - [sym__symbol_fallback] = STATE(539), - [aux_sym__text] = STATE(520), - [aux_sym__inline_repeat1] = STATE(198), - [anon_sym_LBRACK] = ACTIONS(734), - [anon_sym_PIPE] = ACTIONS(736), - [anon_sym_LBRACE] = ACTIONS(740), - [sym__whitespace1] = ACTIONS(742), - [anon_sym_BSLASH] = ACTIONS(744), - [sym_quotation_marks] = ACTIONS(736), - [sym_ellipsis] = ACTIONS(736), - [sym_em_dash] = ACTIONS(736), - [sym_en_dash] = ACTIONS(740), - [sym_backslash_escape] = ACTIONS(740), - [anon_sym_LT] = ACTIONS(746), - [anon_sym_LBRACE_] = ACTIONS(748), - [anon_sym__] = ACTIONS(750), - [anon_sym_LBRACE_STAR] = ACTIONS(752), - [anon_sym_STAR] = ACTIONS(754), - [anon_sym_LBRACE_EQ] = ACTIONS(756), - [anon_sym_LBRACE_PLUS] = ACTIONS(758), - [anon_sym_LBRACE_DASH] = ACTIONS(760), - [sym_symbol] = ACTIONS(736), - [anon_sym_LBRACE_CARET] = ACTIONS(762), - [anon_sym_CARET] = ACTIONS(762), - [anon_sym_LBRACE_TILDE] = ACTIONS(764), - [anon_sym_TILDE] = ACTIONS(764), - [anon_sym_LBRACK_CARET] = ACTIONS(766), - [anon_sym_BANG_LBRACK] = ACTIONS(768), - [anon_sym_DOLLAR] = ACTIONS(770), - [anon_sym_TODO] = ACTIONS(772), - [anon_sym_WIP] = ACTIONS(772), - [anon_sym_NOTE] = ACTIONS(774), - [anon_sym_INFO] = ACTIONS(774), - [anon_sym_XXX] = ACTIONS(774), - [sym_fixme] = ACTIONS(736), - [aux_sym__text_token1] = ACTIONS(776), - [sym__newline_inline] = ACTIONS(778), - [sym__verbatim_begin] = ACTIONS(780), - }, - [116] = { - [sym__heading5_content] = STATE(2201), - [sym__inline] = STATE(1843), - [sym__inline_element_with_whitespace] = STATE(198), - [sym__inline_element_with_newline] = STATE(198), - [sym__inline_core_element] = STATE(198), - [sym__inline_line] = STATE(1681), - [sym__hard_line_break] = STATE(539), - [sym_hard_line_break] = STATE(512), - [sym__smart_punctuation] = STATE(539), - [sym_autolink] = STATE(539), - [sym_emphasis] = STATE(539), - [sym_emphasis_begin] = STATE(299), - [sym_strong] = STATE(539), - [sym_strong_begin] = STATE(298), - [sym_highlighted] = STATE(539), - [sym_insert] = STATE(539), - [sym_delete] = STATE(539), - [sym_superscript] = STATE(539), - [sym_subscript] = STATE(539), - [sym_footnote_reference] = STATE(539), - [sym__image] = STATE(539), - [sym_full_reference_image] = STATE(539), - [sym_collapsed_reference_image] = STATE(539), - [sym_inline_image] = STATE(539), - [sym__image_description] = STATE(1414), - [sym__link] = STATE(539), - [sym_full_reference_link] = STATE(539), - [sym_collapsed_reference_link] = STATE(539), - [sym_inline_link] = STATE(539), - [sym_link_text] = STATE(1411), - [sym__comment_with_spaces] = STATE(539), - [sym_span] = STATE(539), - [sym_raw_inline] = STATE(539), - [sym_math] = STATE(539), - [sym_verbatim] = STATE(539), - [sym__todo_highlights] = STATE(539), - [sym_todo] = STATE(539), - [sym_note] = STATE(539), - [sym__symbol_fallback] = STATE(539), - [aux_sym__text] = STATE(520), - [aux_sym__inline_repeat1] = STATE(198), - [anon_sym_LBRACK] = ACTIONS(734), - [anon_sym_PIPE] = ACTIONS(736), - [anon_sym_LBRACE] = ACTIONS(740), - [sym__whitespace1] = ACTIONS(742), - [anon_sym_BSLASH] = ACTIONS(744), - [sym_quotation_marks] = ACTIONS(736), - [sym_ellipsis] = ACTIONS(736), - [sym_em_dash] = ACTIONS(736), - [sym_en_dash] = ACTIONS(740), - [sym_backslash_escape] = ACTIONS(740), - [anon_sym_LT] = ACTIONS(746), - [anon_sym_LBRACE_] = ACTIONS(748), - [anon_sym__] = ACTIONS(750), - [anon_sym_LBRACE_STAR] = ACTIONS(752), - [anon_sym_STAR] = ACTIONS(754), - [anon_sym_LBRACE_EQ] = ACTIONS(756), - [anon_sym_LBRACE_PLUS] = ACTIONS(758), - [anon_sym_LBRACE_DASH] = ACTIONS(760), - [sym_symbol] = ACTIONS(736), - [anon_sym_LBRACE_CARET] = ACTIONS(762), - [anon_sym_CARET] = ACTIONS(762), - [anon_sym_LBRACE_TILDE] = ACTIONS(764), - [anon_sym_TILDE] = ACTIONS(764), - [anon_sym_LBRACK_CARET] = ACTIONS(766), - [anon_sym_BANG_LBRACK] = ACTIONS(768), - [anon_sym_DOLLAR] = ACTIONS(770), - [anon_sym_TODO] = ACTIONS(772), - [anon_sym_WIP] = ACTIONS(772), - [anon_sym_NOTE] = ACTIONS(774), - [anon_sym_INFO] = ACTIONS(774), - [anon_sym_XXX] = ACTIONS(774), - [sym_fixme] = ACTIONS(736), - [aux_sym__text_token1] = ACTIONS(776), - [sym__newline_inline] = ACTIONS(778), - [sym__verbatim_begin] = ACTIONS(780), - }, - [117] = { - [sym__heading5_content] = STATE(2199), - [sym__inline] = STATE(1843), - [sym__inline_element_with_whitespace] = STATE(198), - [sym__inline_element_with_newline] = STATE(198), - [sym__inline_core_element] = STATE(198), - [sym__inline_line] = STATE(1681), - [sym__hard_line_break] = STATE(539), - [sym_hard_line_break] = STATE(512), - [sym__smart_punctuation] = STATE(539), - [sym_autolink] = STATE(539), - [sym_emphasis] = STATE(539), - [sym_emphasis_begin] = STATE(299), - [sym_strong] = STATE(539), - [sym_strong_begin] = STATE(298), - [sym_highlighted] = STATE(539), - [sym_insert] = STATE(539), - [sym_delete] = STATE(539), - [sym_superscript] = STATE(539), - [sym_subscript] = STATE(539), - [sym_footnote_reference] = STATE(539), - [sym__image] = STATE(539), - [sym_full_reference_image] = STATE(539), - [sym_collapsed_reference_image] = STATE(539), - [sym_inline_image] = STATE(539), - [sym__image_description] = STATE(1414), - [sym__link] = STATE(539), - [sym_full_reference_link] = STATE(539), - [sym_collapsed_reference_link] = STATE(539), - [sym_inline_link] = STATE(539), - [sym_link_text] = STATE(1411), - [sym__comment_with_spaces] = STATE(539), - [sym_span] = STATE(539), - [sym_raw_inline] = STATE(539), - [sym_math] = STATE(539), - [sym_verbatim] = STATE(539), - [sym__todo_highlights] = STATE(539), - [sym_todo] = STATE(539), - [sym_note] = STATE(539), - [sym__symbol_fallback] = STATE(539), - [aux_sym__text] = STATE(520), - [aux_sym__inline_repeat1] = STATE(198), - [anon_sym_LBRACK] = ACTIONS(734), - [anon_sym_PIPE] = ACTIONS(736), - [anon_sym_LBRACE] = ACTIONS(740), - [sym__whitespace1] = ACTIONS(742), - [anon_sym_BSLASH] = ACTIONS(744), - [sym_quotation_marks] = ACTIONS(736), - [sym_ellipsis] = ACTIONS(736), - [sym_em_dash] = ACTIONS(736), - [sym_en_dash] = ACTIONS(740), - [sym_backslash_escape] = ACTIONS(740), - [anon_sym_LT] = ACTIONS(746), - [anon_sym_LBRACE_] = ACTIONS(748), - [anon_sym__] = ACTIONS(750), - [anon_sym_LBRACE_STAR] = ACTIONS(752), - [anon_sym_STAR] = ACTIONS(754), - [anon_sym_LBRACE_EQ] = ACTIONS(756), - [anon_sym_LBRACE_PLUS] = ACTIONS(758), - [anon_sym_LBRACE_DASH] = ACTIONS(760), - [sym_symbol] = ACTIONS(736), - [anon_sym_LBRACE_CARET] = ACTIONS(762), - [anon_sym_CARET] = ACTIONS(762), - [anon_sym_LBRACE_TILDE] = ACTIONS(764), - [anon_sym_TILDE] = ACTIONS(764), - [anon_sym_LBRACK_CARET] = ACTIONS(766), - [anon_sym_BANG_LBRACK] = ACTIONS(768), - [anon_sym_DOLLAR] = ACTIONS(770), - [anon_sym_TODO] = ACTIONS(772), - [anon_sym_WIP] = ACTIONS(772), - [anon_sym_NOTE] = ACTIONS(774), - [anon_sym_INFO] = ACTIONS(774), - [anon_sym_XXX] = ACTIONS(774), - [sym_fixme] = ACTIONS(736), - [aux_sym__text_token1] = ACTIONS(776), - [sym__newline_inline] = ACTIONS(778), - [sym__verbatim_begin] = ACTIONS(780), - }, - [118] = { - [sym__inline] = STATE(1844), - [sym__inline_element_with_whitespace] = STATE(198), - [sym__inline_element_with_newline] = STATE(198), - [sym__inline_core_element] = STATE(198), - [sym__inline_line] = STATE(772), - [sym__hard_line_break] = STATE(539), - [sym_hard_line_break] = STATE(512), - [sym__smart_punctuation] = STATE(539), - [sym_autolink] = STATE(539), - [sym_emphasis] = STATE(539), - [sym_emphasis_begin] = STATE(299), - [sym_strong] = STATE(539), - [sym_strong_begin] = STATE(298), - [sym_highlighted] = STATE(539), - [sym_insert] = STATE(539), - [sym_delete] = STATE(539), - [sym_superscript] = STATE(539), - [sym_subscript] = STATE(539), - [sym_footnote_reference] = STATE(539), - [sym__image] = STATE(539), - [sym_full_reference_image] = STATE(539), - [sym_collapsed_reference_image] = STATE(539), - [sym_inline_image] = STATE(539), - [sym__image_description] = STATE(1414), - [sym__link] = STATE(539), - [sym_full_reference_link] = STATE(539), - [sym_collapsed_reference_link] = STATE(539), - [sym_inline_link] = STATE(539), - [sym_link_text] = STATE(1411), - [sym__comment_with_spaces] = STATE(539), - [sym_span] = STATE(539), - [sym_raw_inline] = STATE(539), - [sym_math] = STATE(539), - [sym_verbatim] = STATE(539), - [sym__todo_highlights] = STATE(539), - [sym_todo] = STATE(539), - [sym_note] = STATE(539), - [sym__symbol_fallback] = STATE(539), - [aux_sym__text] = STATE(520), - [aux_sym_table_caption_repeat1] = STATE(64), - [aux_sym__inline_repeat1] = STATE(198), - [anon_sym_LBRACK] = ACTIONS(734), - [anon_sym_PIPE] = ACTIONS(736), - [anon_sym_LBRACE] = ACTIONS(740), - [sym__whitespace1] = ACTIONS(742), - [anon_sym_BSLASH] = ACTIONS(744), - [sym_quotation_marks] = ACTIONS(736), - [sym_ellipsis] = ACTIONS(736), - [sym_em_dash] = ACTIONS(736), - [sym_en_dash] = ACTIONS(740), - [sym_backslash_escape] = ACTIONS(740), - [anon_sym_LT] = ACTIONS(746), - [anon_sym_LBRACE_] = ACTIONS(748), - [anon_sym__] = ACTIONS(750), - [anon_sym_LBRACE_STAR] = ACTIONS(752), - [anon_sym_STAR] = ACTIONS(754), - [anon_sym_LBRACE_EQ] = ACTIONS(756), - [anon_sym_LBRACE_PLUS] = ACTIONS(758), - [anon_sym_LBRACE_DASH] = ACTIONS(760), - [sym_symbol] = ACTIONS(736), - [anon_sym_LBRACE_CARET] = ACTIONS(762), - [anon_sym_CARET] = ACTIONS(762), - [anon_sym_LBRACE_TILDE] = ACTIONS(764), - [anon_sym_TILDE] = ACTIONS(764), - [anon_sym_LBRACK_CARET] = ACTIONS(766), - [anon_sym_BANG_LBRACK] = ACTIONS(768), - [anon_sym_DOLLAR] = ACTIONS(770), - [anon_sym_TODO] = ACTIONS(772), - [anon_sym_WIP] = ACTIONS(772), - [anon_sym_NOTE] = ACTIONS(774), - [anon_sym_INFO] = ACTIONS(774), - [anon_sym_XXX] = ACTIONS(774), - [sym_fixme] = ACTIONS(736), - [aux_sym__text_token1] = ACTIONS(776), - [sym__newline_inline] = ACTIONS(778), - [sym__verbatim_begin] = ACTIONS(780), - }, - [119] = { - [sym__inline] = STATE(1997), - [sym__inline_element_with_whitespace] = STATE(219), - [sym__inline_element_with_newline] = STATE(219), - [sym__inline_core_element] = STATE(219), - [sym__hard_line_break] = STATE(682), - [sym_hard_line_break] = STATE(518), - [sym__smart_punctuation] = STATE(682), - [sym_autolink] = STATE(682), - [sym_emphasis] = STATE(682), - [sym_emphasis_begin] = STATE(286), - [sym_strong] = STATE(682), - [sym_strong_begin] = STATE(288), - [sym_highlighted] = STATE(682), - [sym_insert] = STATE(682), - [sym_delete] = STATE(682), - [sym_superscript] = STATE(682), - [sym_subscript] = STATE(682), - [sym_footnote_reference] = STATE(682), - [sym__image] = STATE(682), - [sym_full_reference_image] = STATE(682), - [sym_collapsed_reference_image] = STATE(682), - [sym_inline_image] = STATE(682), - [sym__image_description] = STATE(1440), - [sym__link] = STATE(682), - [sym_full_reference_link] = STATE(682), - [sym_collapsed_reference_link] = STATE(682), - [sym_inline_link] = STATE(682), - [sym_link_text] = STATE(1439), - [sym__comment_with_spaces] = STATE(682), - [sym_span] = STATE(682), - [sym_raw_inline] = STATE(682), - [sym_math] = STATE(682), - [sym_verbatim] = STATE(682), - [sym__todo_highlights] = STATE(682), - [sym_todo] = STATE(682), - [sym_note] = STATE(682), - [sym__symbol_fallback] = STATE(682), - [aux_sym__text] = STATE(572), - [aux_sym__inline_repeat1] = STATE(219), - [anon_sym_LBRACK] = ACTIONS(1182), - [anon_sym_PIPE] = ACTIONS(1185), - [anon_sym_LBRACE] = ACTIONS(1188), - [sym__whitespace1] = ACTIONS(1356), - [anon_sym_BSLASH] = ACTIONS(1194), - [sym_quotation_marks] = ACTIONS(1185), - [sym_ellipsis] = ACTIONS(1185), - [sym_em_dash] = ACTIONS(1185), - [sym_en_dash] = ACTIONS(1188), - [sym_backslash_escape] = ACTIONS(1188), - [anon_sym_LT] = ACTIONS(1197), - [anon_sym_LBRACE_] = ACTIONS(1200), - [anon_sym__] = ACTIONS(1359), - [aux_sym_emphasis_end_token1] = ACTIONS(861), - [anon_sym_LBRACE_STAR] = ACTIONS(1206), - [anon_sym_STAR] = ACTIONS(1209), - [anon_sym_LBRACE_EQ] = ACTIONS(1212), - [anon_sym_LBRACE_PLUS] = ACTIONS(1215), - [anon_sym_LBRACE_DASH] = ACTIONS(1218), - [sym_symbol] = ACTIONS(1185), - [anon_sym_LBRACE_CARET] = ACTIONS(1221), - [anon_sym_CARET] = ACTIONS(1221), - [anon_sym_LBRACE_TILDE] = ACTIONS(1224), - [anon_sym_TILDE] = ACTIONS(1224), - [anon_sym_LBRACK_CARET] = ACTIONS(1227), - [anon_sym_BANG_LBRACK] = ACTIONS(1230), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(1233), - [anon_sym_TODO] = ACTIONS(1236), - [anon_sym_WIP] = ACTIONS(1236), - [anon_sym_NOTE] = ACTIONS(1239), - [anon_sym_INFO] = ACTIONS(1239), - [anon_sym_XXX] = ACTIONS(1239), - [sym_fixme] = ACTIONS(1185), - [aux_sym__text_token1] = ACTIONS(1242), - [sym__newline_inline] = ACTIONS(1245), - [sym__verbatim_begin] = ACTIONS(1248), - }, - [120] = { - [sym__inline] = STATE(1945), - [sym__inline_element_with_whitespace] = STATE(230), - [sym__inline_element_with_newline] = STATE(230), - [sym__inline_core_element] = STATE(230), - [sym__hard_line_break] = STATE(688), - [sym_hard_line_break] = STATE(516), - [sym__smart_punctuation] = STATE(688), - [sym_autolink] = STATE(688), - [sym_emphasis] = STATE(688), - [sym_emphasis_begin] = STATE(291), - [sym_strong] = STATE(688), - [sym_strong_begin] = STATE(272), - [sym_highlighted] = STATE(688), - [sym_insert] = STATE(688), - [sym_delete] = STATE(688), - [sym_superscript] = STATE(688), - [sym_subscript] = STATE(688), - [sym_footnote_reference] = STATE(688), - [sym__image] = STATE(688), - [sym_full_reference_image] = STATE(688), - [sym_collapsed_reference_image] = STATE(688), - [sym_inline_image] = STATE(688), - [sym__image_description] = STATE(1436), - [sym__link] = STATE(688), - [sym_full_reference_link] = STATE(688), - [sym_collapsed_reference_link] = STATE(688), - [sym_inline_link] = STATE(688), - [sym_link_text] = STATE(1434), - [sym__comment_with_spaces] = STATE(688), - [sym_span] = STATE(688), - [sym_raw_inline] = STATE(688), - [sym_math] = STATE(688), - [sym_verbatim] = STATE(688), - [sym__todo_highlights] = STATE(688), - [sym_todo] = STATE(688), - [sym_note] = STATE(688), - [sym__symbol_fallback] = STATE(688), - [aux_sym__text] = STATE(583), - [aux_sym__inline_repeat1] = STATE(230), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_PIPE] = ACTIONS(1108), - [anon_sym_LBRACE] = ACTIONS(1111), - [sym__whitespace1] = ACTIONS(1362), - [anon_sym_BSLASH] = ACTIONS(1117), - [sym_quotation_marks] = ACTIONS(1108), - [sym_ellipsis] = ACTIONS(1108), - [sym_em_dash] = ACTIONS(1108), - [sym_en_dash] = ACTIONS(1111), - [sym_backslash_escape] = ACTIONS(1111), - [anon_sym_LT] = ACTIONS(1120), - [anon_sym_LBRACE_] = ACTIONS(1123), - [anon_sym__] = ACTIONS(1365), - [aux_sym_emphasis_end_token1] = ACTIONS(861), - [anon_sym_LBRACE_STAR] = ACTIONS(1129), - [anon_sym_STAR] = ACTIONS(1132), - [anon_sym_LBRACE_EQ] = ACTIONS(1135), - [anon_sym_LBRACE_PLUS] = ACTIONS(1138), - [anon_sym_LBRACE_DASH] = ACTIONS(1141), - [sym_symbol] = ACTIONS(1108), - [anon_sym_LBRACE_CARET] = ACTIONS(1144), - [anon_sym_CARET] = ACTIONS(1144), - [anon_sym_LBRACE_TILDE] = ACTIONS(1147), - [anon_sym_TILDE] = ACTIONS(1147), - [anon_sym_LBRACK_CARET] = ACTIONS(1150), - [anon_sym_BANG_LBRACK] = ACTIONS(1153), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(1156), - [anon_sym_TODO] = ACTIONS(1159), - [anon_sym_WIP] = ACTIONS(1159), - [anon_sym_NOTE] = ACTIONS(1162), - [anon_sym_INFO] = ACTIONS(1162), - [anon_sym_XXX] = ACTIONS(1162), - [sym_fixme] = ACTIONS(1108), - [aux_sym__text_token1] = ACTIONS(1165), - [sym__newline_inline] = ACTIONS(1168), - [sym__verbatim_begin] = ACTIONS(1171), - }, - [121] = { - [sym__inline] = STATE(1844), - [sym__inline_element_with_whitespace] = STATE(198), - [sym__inline_element_with_newline] = STATE(198), - [sym__inline_core_element] = STATE(198), - [sym__inline_line] = STATE(772), - [sym__hard_line_break] = STATE(539), - [sym_hard_line_break] = STATE(512), - [sym__smart_punctuation] = STATE(539), - [sym_autolink] = STATE(539), - [sym_emphasis] = STATE(539), - [sym_emphasis_begin] = STATE(299), - [sym_strong] = STATE(539), - [sym_strong_begin] = STATE(298), - [sym_highlighted] = STATE(539), - [sym_insert] = STATE(539), - [sym_delete] = STATE(539), - [sym_superscript] = STATE(539), - [sym_subscript] = STATE(539), - [sym_footnote_reference] = STATE(539), - [sym__image] = STATE(539), - [sym_full_reference_image] = STATE(539), - [sym_collapsed_reference_image] = STATE(539), - [sym_inline_image] = STATE(539), - [sym__image_description] = STATE(1414), - [sym__link] = STATE(539), - [sym_full_reference_link] = STATE(539), - [sym_collapsed_reference_link] = STATE(539), - [sym_inline_link] = STATE(539), - [sym_link_text] = STATE(1411), - [sym__comment_with_spaces] = STATE(539), - [sym_span] = STATE(539), - [sym_raw_inline] = STATE(539), - [sym_math] = STATE(539), - [sym_verbatim] = STATE(539), - [sym__todo_highlights] = STATE(539), - [sym_todo] = STATE(539), - [sym_note] = STATE(539), - [sym__symbol_fallback] = STATE(539), - [aux_sym__text] = STATE(520), - [aux_sym_table_caption_repeat1] = STATE(65), - [aux_sym__inline_repeat1] = STATE(198), - [anon_sym_LBRACK] = ACTIONS(734), - [anon_sym_PIPE] = ACTIONS(736), - [anon_sym_LBRACE] = ACTIONS(740), - [sym__whitespace1] = ACTIONS(742), - [anon_sym_BSLASH] = ACTIONS(744), - [sym_quotation_marks] = ACTIONS(736), - [sym_ellipsis] = ACTIONS(736), - [sym_em_dash] = ACTIONS(736), - [sym_en_dash] = ACTIONS(740), - [sym_backslash_escape] = ACTIONS(740), - [anon_sym_LT] = ACTIONS(746), - [anon_sym_LBRACE_] = ACTIONS(748), - [anon_sym__] = ACTIONS(750), - [anon_sym_LBRACE_STAR] = ACTIONS(752), - [anon_sym_STAR] = ACTIONS(754), - [anon_sym_LBRACE_EQ] = ACTIONS(756), - [anon_sym_LBRACE_PLUS] = ACTIONS(758), - [anon_sym_LBRACE_DASH] = ACTIONS(760), - [sym_symbol] = ACTIONS(736), - [anon_sym_LBRACE_CARET] = ACTIONS(762), - [anon_sym_CARET] = ACTIONS(762), - [anon_sym_LBRACE_TILDE] = ACTIONS(764), - [anon_sym_TILDE] = ACTIONS(764), - [anon_sym_LBRACK_CARET] = ACTIONS(766), - [anon_sym_BANG_LBRACK] = ACTIONS(768), - [anon_sym_DOLLAR] = ACTIONS(770), - [anon_sym_TODO] = ACTIONS(772), - [anon_sym_WIP] = ACTIONS(772), - [anon_sym_NOTE] = ACTIONS(774), - [anon_sym_INFO] = ACTIONS(774), - [anon_sym_XXX] = ACTIONS(774), - [sym_fixme] = ACTIONS(736), - [aux_sym__text_token1] = ACTIONS(776), - [sym__newline_inline] = ACTIONS(778), - [sym__verbatim_begin] = ACTIONS(780), - }, - [122] = { - [sym__inline] = STATE(2280), - [sym__inline_element_with_whitespace] = STATE(242), - [sym__inline_element_with_newline] = STATE(242), - [sym__inline_core_element] = STATE(242), - [sym__hard_line_break] = STATE(627), - [sym_hard_line_break] = STATE(523), - [sym__smart_punctuation] = STATE(627), - [sym_autolink] = STATE(627), - [sym_emphasis] = STATE(627), - [sym_emphasis_begin] = STATE(296), - [sym_strong] = STATE(627), - [sym_strong_begin] = STATE(295), - [sym_highlighted] = STATE(627), - [sym_insert] = STATE(627), - [sym_delete] = STATE(627), - [sym_superscript] = STATE(627), - [sym_subscript] = STATE(627), - [sym_footnote_reference] = STATE(627), - [sym__image] = STATE(627), - [sym_full_reference_image] = STATE(627), - [sym_collapsed_reference_image] = STATE(627), - [sym_inline_image] = STATE(627), - [sym__image_description] = STATE(1448), - [sym__link] = STATE(627), - [sym_full_reference_link] = STATE(627), - [sym_collapsed_reference_link] = STATE(627), - [sym_inline_link] = STATE(627), - [sym_link_text] = STATE(1453), - [sym__comment_with_spaces] = STATE(627), - [sym_span] = STATE(627), - [sym_raw_inline] = STATE(627), - [sym_math] = STATE(627), - [sym_verbatim] = STATE(627), - [sym__todo_highlights] = STATE(627), - [sym_todo] = STATE(627), - [sym_note] = STATE(627), - [sym__symbol_fallback] = STATE(627), - [aux_sym__text] = STATE(560), - [aux_sym__inline_repeat1] = STATE(242), - [anon_sym_LBRACK] = ACTIONS(853), - [anon_sym_PIPE] = ACTIONS(858), - [anon_sym_LBRACE] = ACTIONS(863), - [sym__whitespace1] = ACTIONS(866), - [anon_sym_BSLASH] = ACTIONS(869), - [sym_quotation_marks] = ACTIONS(858), - [sym_ellipsis] = ACTIONS(858), - [sym_em_dash] = ACTIONS(858), - [sym_en_dash] = ACTIONS(863), - [sym_backslash_escape] = ACTIONS(863), - [anon_sym_LT] = ACTIONS(872), - [anon_sym_LBRACE_] = ACTIONS(875), - [anon_sym__] = ACTIONS(878), - [anon_sym_LBRACE_STAR] = ACTIONS(881), - [anon_sym_STAR] = ACTIONS(884), - [anon_sym_LBRACE_EQ] = ACTIONS(887), - [anon_sym_LBRACE_PLUS] = ACTIONS(890), - [anon_sym_LBRACE_DASH] = ACTIONS(893), - [sym_symbol] = ACTIONS(858), - [anon_sym_LBRACE_CARET] = ACTIONS(896), - [anon_sym_CARET] = ACTIONS(1030), - [anon_sym_CARET_RBRACE] = ACTIONS(861), - [anon_sym_LBRACE_TILDE] = ACTIONS(899), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_LBRACK_CARET] = ACTIONS(902), - [anon_sym_BANG_LBRACK] = ACTIONS(905), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(910), - [anon_sym_TODO] = ACTIONS(913), - [anon_sym_WIP] = ACTIONS(913), - [anon_sym_NOTE] = ACTIONS(916), - [anon_sym_INFO] = ACTIONS(916), - [anon_sym_XXX] = ACTIONS(916), - [sym_fixme] = ACTIONS(858), - [aux_sym__text_token1] = ACTIONS(919), - [sym__newline_inline] = ACTIONS(922), - [sym__verbatim_begin] = ACTIONS(925), - }, - [123] = { - [sym__inline] = STATE(1937), - [sym__inline_element_with_whitespace] = STATE(241), - [sym__inline_element_with_newline] = STATE(241), - [sym__inline_core_element] = STATE(241), - [sym__hard_line_break] = STATE(696), - [sym_hard_line_break] = STATE(530), - [sym__smart_punctuation] = STATE(696), - [sym_autolink] = STATE(696), - [sym_emphasis] = STATE(696), - [sym_emphasis_begin] = STATE(274), - [sym_strong] = STATE(696), - [sym_strong_begin] = STATE(275), - [sym_highlighted] = STATE(696), - [sym_insert] = STATE(696), - [sym_delete] = STATE(696), - [sym_superscript] = STATE(696), - [sym_subscript] = STATE(696), - [sym_footnote_reference] = STATE(696), - [sym__image] = STATE(696), - [sym_full_reference_image] = STATE(696), - [sym_collapsed_reference_image] = STATE(696), - [sym_inline_image] = STATE(696), - [sym__image_description] = STATE(1427), - [sym__link] = STATE(696), - [sym_full_reference_link] = STATE(696), - [sym_collapsed_reference_link] = STATE(696), - [sym_inline_link] = STATE(696), - [sym_link_text] = STATE(1426), - [sym__comment_with_spaces] = STATE(696), - [sym_span] = STATE(696), - [sym_raw_inline] = STATE(696), - [sym_math] = STATE(696), - [sym_verbatim] = STATE(696), - [sym__todo_highlights] = STATE(696), - [sym_todo] = STATE(696), - [sym_note] = STATE(696), - [sym__symbol_fallback] = STATE(696), - [aux_sym__text] = STATE(609), - [aux_sym__inline_repeat1] = STATE(241), - [anon_sym_LBRACK] = ACTIONS(1036), - [anon_sym_PIPE] = ACTIONS(1039), - [anon_sym_LBRACE] = ACTIONS(1042), - [sym__whitespace1] = ACTIONS(1368), - [anon_sym_BSLASH] = ACTIONS(1048), - [sym_quotation_marks] = ACTIONS(1039), - [sym_ellipsis] = ACTIONS(1039), - [sym_em_dash] = ACTIONS(1039), - [sym_en_dash] = ACTIONS(1042), - [sym_backslash_escape] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1051), - [anon_sym_LBRACE_] = ACTIONS(1054), - [anon_sym__] = ACTIONS(1057), - [anon_sym_LBRACE_STAR] = ACTIONS(1060), - [anon_sym_STAR] = ACTIONS(1371), - [aux_sym_strong_end_token1] = ACTIONS(861), - [anon_sym_LBRACE_EQ] = ACTIONS(1066), - [anon_sym_LBRACE_PLUS] = ACTIONS(1069), - [anon_sym_LBRACE_DASH] = ACTIONS(1072), - [sym_symbol] = ACTIONS(1039), - [anon_sym_LBRACE_CARET] = ACTIONS(1075), - [anon_sym_CARET] = ACTIONS(1075), - [anon_sym_LBRACE_TILDE] = ACTIONS(1078), - [anon_sym_TILDE] = ACTIONS(1078), - [anon_sym_LBRACK_CARET] = ACTIONS(1081), - [anon_sym_BANG_LBRACK] = ACTIONS(1084), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(1087), - [anon_sym_TODO] = ACTIONS(1090), - [anon_sym_WIP] = ACTIONS(1090), - [anon_sym_NOTE] = ACTIONS(1093), - [anon_sym_INFO] = ACTIONS(1093), - [anon_sym_XXX] = ACTIONS(1093), - [sym_fixme] = ACTIONS(1039), - [aux_sym__text_token1] = ACTIONS(1096), - [sym__newline_inline] = ACTIONS(1099), - [sym__verbatim_begin] = ACTIONS(1102), - }, - [124] = { - [sym__heading6_content] = STATE(2172), - [sym__inline] = STATE(1763), - [sym__inline_element_with_whitespace] = STATE(198), - [sym__inline_element_with_newline] = STATE(198), - [sym__inline_core_element] = STATE(198), - [sym__inline_line] = STATE(1680), - [sym__hard_line_break] = STATE(539), - [sym_hard_line_break] = STATE(512), - [sym__smart_punctuation] = STATE(539), - [sym_autolink] = STATE(539), - [sym_emphasis] = STATE(539), - [sym_emphasis_begin] = STATE(299), - [sym_strong] = STATE(539), - [sym_strong_begin] = STATE(298), - [sym_highlighted] = STATE(539), - [sym_insert] = STATE(539), - [sym_delete] = STATE(539), - [sym_superscript] = STATE(539), - [sym_subscript] = STATE(539), - [sym_footnote_reference] = STATE(539), - [sym__image] = STATE(539), - [sym_full_reference_image] = STATE(539), - [sym_collapsed_reference_image] = STATE(539), - [sym_inline_image] = STATE(539), - [sym__image_description] = STATE(1414), - [sym__link] = STATE(539), - [sym_full_reference_link] = STATE(539), - [sym_collapsed_reference_link] = STATE(539), - [sym_inline_link] = STATE(539), - [sym_link_text] = STATE(1411), - [sym__comment_with_spaces] = STATE(539), - [sym_span] = STATE(539), - [sym_raw_inline] = STATE(539), - [sym_math] = STATE(539), - [sym_verbatim] = STATE(539), - [sym__todo_highlights] = STATE(539), - [sym_todo] = STATE(539), - [sym_note] = STATE(539), - [sym__symbol_fallback] = STATE(539), - [aux_sym__text] = STATE(520), - [aux_sym__inline_repeat1] = STATE(198), - [anon_sym_LBRACK] = ACTIONS(734), - [anon_sym_PIPE] = ACTIONS(736), - [anon_sym_LBRACE] = ACTIONS(740), - [sym__whitespace1] = ACTIONS(742), - [anon_sym_BSLASH] = ACTIONS(744), - [sym_quotation_marks] = ACTIONS(736), - [sym_ellipsis] = ACTIONS(736), - [sym_em_dash] = ACTIONS(736), - [sym_en_dash] = ACTIONS(740), - [sym_backslash_escape] = ACTIONS(740), - [anon_sym_LT] = ACTIONS(746), - [anon_sym_LBRACE_] = ACTIONS(748), - [anon_sym__] = ACTIONS(750), - [anon_sym_LBRACE_STAR] = ACTIONS(752), - [anon_sym_STAR] = ACTIONS(754), - [anon_sym_LBRACE_EQ] = ACTIONS(756), - [anon_sym_LBRACE_PLUS] = ACTIONS(758), - [anon_sym_LBRACE_DASH] = ACTIONS(760), - [sym_symbol] = ACTIONS(736), - [anon_sym_LBRACE_CARET] = ACTIONS(762), - [anon_sym_CARET] = ACTIONS(762), - [anon_sym_LBRACE_TILDE] = ACTIONS(764), - [anon_sym_TILDE] = ACTIONS(764), - [anon_sym_LBRACK_CARET] = ACTIONS(766), - [anon_sym_BANG_LBRACK] = ACTIONS(768), - [anon_sym_DOLLAR] = ACTIONS(770), - [anon_sym_TODO] = ACTIONS(772), - [anon_sym_WIP] = ACTIONS(772), - [anon_sym_NOTE] = ACTIONS(774), - [anon_sym_INFO] = ACTIONS(774), - [anon_sym_XXX] = ACTIONS(774), - [sym_fixme] = ACTIONS(736), - [aux_sym__text_token1] = ACTIONS(776), - [sym__newline_inline] = ACTIONS(778), - [sym__verbatim_begin] = ACTIONS(780), - }, - [125] = { - [sym__heading5_content] = STATE(2171), - [sym__inline] = STATE(1843), - [sym__inline_element_with_whitespace] = STATE(198), - [sym__inline_element_with_newline] = STATE(198), - [sym__inline_core_element] = STATE(198), - [sym__inline_line] = STATE(1681), - [sym__hard_line_break] = STATE(539), - [sym_hard_line_break] = STATE(512), - [sym__smart_punctuation] = STATE(539), - [sym_autolink] = STATE(539), - [sym_emphasis] = STATE(539), - [sym_emphasis_begin] = STATE(299), - [sym_strong] = STATE(539), - [sym_strong_begin] = STATE(298), - [sym_highlighted] = STATE(539), - [sym_insert] = STATE(539), - [sym_delete] = STATE(539), - [sym_superscript] = STATE(539), - [sym_subscript] = STATE(539), - [sym_footnote_reference] = STATE(539), - [sym__image] = STATE(539), - [sym_full_reference_image] = STATE(539), - [sym_collapsed_reference_image] = STATE(539), - [sym_inline_image] = STATE(539), - [sym__image_description] = STATE(1414), - [sym__link] = STATE(539), - [sym_full_reference_link] = STATE(539), - [sym_collapsed_reference_link] = STATE(539), - [sym_inline_link] = STATE(539), - [sym_link_text] = STATE(1411), - [sym__comment_with_spaces] = STATE(539), - [sym_span] = STATE(539), - [sym_raw_inline] = STATE(539), - [sym_math] = STATE(539), - [sym_verbatim] = STATE(539), - [sym__todo_highlights] = STATE(539), - [sym_todo] = STATE(539), - [sym_note] = STATE(539), - [sym__symbol_fallback] = STATE(539), - [aux_sym__text] = STATE(520), - [aux_sym__inline_repeat1] = STATE(198), - [anon_sym_LBRACK] = ACTIONS(734), - [anon_sym_PIPE] = ACTIONS(736), - [anon_sym_LBRACE] = ACTIONS(740), - [sym__whitespace1] = ACTIONS(742), - [anon_sym_BSLASH] = ACTIONS(744), - [sym_quotation_marks] = ACTIONS(736), - [sym_ellipsis] = ACTIONS(736), - [sym_em_dash] = ACTIONS(736), - [sym_en_dash] = ACTIONS(740), - [sym_backslash_escape] = ACTIONS(740), - [anon_sym_LT] = ACTIONS(746), - [anon_sym_LBRACE_] = ACTIONS(748), - [anon_sym__] = ACTIONS(750), - [anon_sym_LBRACE_STAR] = ACTIONS(752), - [anon_sym_STAR] = ACTIONS(754), - [anon_sym_LBRACE_EQ] = ACTIONS(756), - [anon_sym_LBRACE_PLUS] = ACTIONS(758), - [anon_sym_LBRACE_DASH] = ACTIONS(760), - [sym_symbol] = ACTIONS(736), - [anon_sym_LBRACE_CARET] = ACTIONS(762), - [anon_sym_CARET] = ACTIONS(762), - [anon_sym_LBRACE_TILDE] = ACTIONS(764), - [anon_sym_TILDE] = ACTIONS(764), - [anon_sym_LBRACK_CARET] = ACTIONS(766), - [anon_sym_BANG_LBRACK] = ACTIONS(768), - [anon_sym_DOLLAR] = ACTIONS(770), - [anon_sym_TODO] = ACTIONS(772), - [anon_sym_WIP] = ACTIONS(772), - [anon_sym_NOTE] = ACTIONS(774), - [anon_sym_INFO] = ACTIONS(774), - [anon_sym_XXX] = ACTIONS(774), - [sym_fixme] = ACTIONS(736), - [aux_sym__text_token1] = ACTIONS(776), - [sym__newline_inline] = ACTIONS(778), - [sym__verbatim_begin] = ACTIONS(780), - }, - [126] = { - [sym__heading5_content] = STATE(2170), - [sym__inline] = STATE(1843), - [sym__inline_element_with_whitespace] = STATE(198), - [sym__inline_element_with_newline] = STATE(198), - [sym__inline_core_element] = STATE(198), - [sym__inline_line] = STATE(1681), - [sym__hard_line_break] = STATE(539), - [sym_hard_line_break] = STATE(512), - [sym__smart_punctuation] = STATE(539), - [sym_autolink] = STATE(539), - [sym_emphasis] = STATE(539), - [sym_emphasis_begin] = STATE(299), - [sym_strong] = STATE(539), - [sym_strong_begin] = STATE(298), - [sym_highlighted] = STATE(539), - [sym_insert] = STATE(539), - [sym_delete] = STATE(539), - [sym_superscript] = STATE(539), - [sym_subscript] = STATE(539), - [sym_footnote_reference] = STATE(539), - [sym__image] = STATE(539), - [sym_full_reference_image] = STATE(539), - [sym_collapsed_reference_image] = STATE(539), - [sym_inline_image] = STATE(539), - [sym__image_description] = STATE(1414), - [sym__link] = STATE(539), - [sym_full_reference_link] = STATE(539), - [sym_collapsed_reference_link] = STATE(539), - [sym_inline_link] = STATE(539), - [sym_link_text] = STATE(1411), - [sym__comment_with_spaces] = STATE(539), - [sym_span] = STATE(539), - [sym_raw_inline] = STATE(539), - [sym_math] = STATE(539), - [sym_verbatim] = STATE(539), - [sym__todo_highlights] = STATE(539), - [sym_todo] = STATE(539), - [sym_note] = STATE(539), - [sym__symbol_fallback] = STATE(539), - [aux_sym__text] = STATE(520), - [aux_sym__inline_repeat1] = STATE(198), - [anon_sym_LBRACK] = ACTIONS(734), - [anon_sym_PIPE] = ACTIONS(736), - [anon_sym_LBRACE] = ACTIONS(740), - [sym__whitespace1] = ACTIONS(742), - [anon_sym_BSLASH] = ACTIONS(744), - [sym_quotation_marks] = ACTIONS(736), - [sym_ellipsis] = ACTIONS(736), - [sym_em_dash] = ACTIONS(736), - [sym_en_dash] = ACTIONS(740), - [sym_backslash_escape] = ACTIONS(740), - [anon_sym_LT] = ACTIONS(746), - [anon_sym_LBRACE_] = ACTIONS(748), - [anon_sym__] = ACTIONS(750), - [anon_sym_LBRACE_STAR] = ACTIONS(752), - [anon_sym_STAR] = ACTIONS(754), - [anon_sym_LBRACE_EQ] = ACTIONS(756), - [anon_sym_LBRACE_PLUS] = ACTIONS(758), - [anon_sym_LBRACE_DASH] = ACTIONS(760), - [sym_symbol] = ACTIONS(736), - [anon_sym_LBRACE_CARET] = ACTIONS(762), - [anon_sym_CARET] = ACTIONS(762), - [anon_sym_LBRACE_TILDE] = ACTIONS(764), - [anon_sym_TILDE] = ACTIONS(764), - [anon_sym_LBRACK_CARET] = ACTIONS(766), - [anon_sym_BANG_LBRACK] = ACTIONS(768), - [anon_sym_DOLLAR] = ACTIONS(770), - [anon_sym_TODO] = ACTIONS(772), - [anon_sym_WIP] = ACTIONS(772), - [anon_sym_NOTE] = ACTIONS(774), - [anon_sym_INFO] = ACTIONS(774), - [anon_sym_XXX] = ACTIONS(774), - [sym_fixme] = ACTIONS(736), - [aux_sym__text_token1] = ACTIONS(776), - [sym__newline_inline] = ACTIONS(778), - [sym__verbatim_begin] = ACTIONS(780), - }, - [127] = { - [sym__heading5_content] = STATE(2169), - [sym__inline] = STATE(1843), - [sym__inline_element_with_whitespace] = STATE(198), - [sym__inline_element_with_newline] = STATE(198), - [sym__inline_core_element] = STATE(198), - [sym__inline_line] = STATE(1681), - [sym__hard_line_break] = STATE(539), - [sym_hard_line_break] = STATE(512), - [sym__smart_punctuation] = STATE(539), - [sym_autolink] = STATE(539), - [sym_emphasis] = STATE(539), - [sym_emphasis_begin] = STATE(299), - [sym_strong] = STATE(539), - [sym_strong_begin] = STATE(298), - [sym_highlighted] = STATE(539), - [sym_insert] = STATE(539), - [sym_delete] = STATE(539), - [sym_superscript] = STATE(539), - [sym_subscript] = STATE(539), - [sym_footnote_reference] = STATE(539), - [sym__image] = STATE(539), - [sym_full_reference_image] = STATE(539), - [sym_collapsed_reference_image] = STATE(539), - [sym_inline_image] = STATE(539), - [sym__image_description] = STATE(1414), - [sym__link] = STATE(539), - [sym_full_reference_link] = STATE(539), - [sym_collapsed_reference_link] = STATE(539), - [sym_inline_link] = STATE(539), - [sym_link_text] = STATE(1411), - [sym__comment_with_spaces] = STATE(539), - [sym_span] = STATE(539), - [sym_raw_inline] = STATE(539), - [sym_math] = STATE(539), - [sym_verbatim] = STATE(539), - [sym__todo_highlights] = STATE(539), - [sym_todo] = STATE(539), - [sym_note] = STATE(539), - [sym__symbol_fallback] = STATE(539), - [aux_sym__text] = STATE(520), - [aux_sym__inline_repeat1] = STATE(198), - [anon_sym_LBRACK] = ACTIONS(734), - [anon_sym_PIPE] = ACTIONS(736), - [anon_sym_LBRACE] = ACTIONS(740), - [sym__whitespace1] = ACTIONS(742), - [anon_sym_BSLASH] = ACTIONS(744), - [sym_quotation_marks] = ACTIONS(736), - [sym_ellipsis] = ACTIONS(736), - [sym_em_dash] = ACTIONS(736), - [sym_en_dash] = ACTIONS(740), - [sym_backslash_escape] = ACTIONS(740), - [anon_sym_LT] = ACTIONS(746), - [anon_sym_LBRACE_] = ACTIONS(748), - [anon_sym__] = ACTIONS(750), - [anon_sym_LBRACE_STAR] = ACTIONS(752), - [anon_sym_STAR] = ACTIONS(754), - [anon_sym_LBRACE_EQ] = ACTIONS(756), - [anon_sym_LBRACE_PLUS] = ACTIONS(758), - [anon_sym_LBRACE_DASH] = ACTIONS(760), - [sym_symbol] = ACTIONS(736), - [anon_sym_LBRACE_CARET] = ACTIONS(762), - [anon_sym_CARET] = ACTIONS(762), - [anon_sym_LBRACE_TILDE] = ACTIONS(764), - [anon_sym_TILDE] = ACTIONS(764), - [anon_sym_LBRACK_CARET] = ACTIONS(766), - [anon_sym_BANG_LBRACK] = ACTIONS(768), - [anon_sym_DOLLAR] = ACTIONS(770), - [anon_sym_TODO] = ACTIONS(772), - [anon_sym_WIP] = ACTIONS(772), - [anon_sym_NOTE] = ACTIONS(774), - [anon_sym_INFO] = ACTIONS(774), - [anon_sym_XXX] = ACTIONS(774), - [sym_fixme] = ACTIONS(736), - [aux_sym__text_token1] = ACTIONS(776), - [sym__newline_inline] = ACTIONS(778), - [sym__verbatim_begin] = ACTIONS(780), - }, - [128] = { - [sym__heading2_content] = STATE(2168), - [sym__inline] = STATE(1928), - [sym__inline_element_with_whitespace] = STATE(198), - [sym__inline_element_with_newline] = STATE(198), - [sym__inline_core_element] = STATE(198), - [sym__inline_line] = STATE(1683), - [sym__hard_line_break] = STATE(539), - [sym_hard_line_break] = STATE(512), - [sym__smart_punctuation] = STATE(539), - [sym_autolink] = STATE(539), - [sym_emphasis] = STATE(539), - [sym_emphasis_begin] = STATE(299), - [sym_strong] = STATE(539), - [sym_strong_begin] = STATE(298), - [sym_highlighted] = STATE(539), - [sym_insert] = STATE(539), - [sym_delete] = STATE(539), - [sym_superscript] = STATE(539), - [sym_subscript] = STATE(539), - [sym_footnote_reference] = STATE(539), - [sym__image] = STATE(539), - [sym_full_reference_image] = STATE(539), - [sym_collapsed_reference_image] = STATE(539), - [sym_inline_image] = STATE(539), - [sym__image_description] = STATE(1414), - [sym__link] = STATE(539), - [sym_full_reference_link] = STATE(539), - [sym_collapsed_reference_link] = STATE(539), - [sym_inline_link] = STATE(539), - [sym_link_text] = STATE(1411), - [sym__comment_with_spaces] = STATE(539), - [sym_span] = STATE(539), - [sym_raw_inline] = STATE(539), - [sym_math] = STATE(539), - [sym_verbatim] = STATE(539), - [sym__todo_highlights] = STATE(539), - [sym_todo] = STATE(539), - [sym_note] = STATE(539), - [sym__symbol_fallback] = STATE(539), - [aux_sym__text] = STATE(520), - [aux_sym__inline_repeat1] = STATE(198), - [anon_sym_LBRACK] = ACTIONS(734), - [anon_sym_PIPE] = ACTIONS(736), - [anon_sym_LBRACE] = ACTIONS(740), - [sym__whitespace1] = ACTIONS(742), - [anon_sym_BSLASH] = ACTIONS(744), - [sym_quotation_marks] = ACTIONS(736), - [sym_ellipsis] = ACTIONS(736), - [sym_em_dash] = ACTIONS(736), - [sym_en_dash] = ACTIONS(740), - [sym_backslash_escape] = ACTIONS(740), - [anon_sym_LT] = ACTIONS(746), - [anon_sym_LBRACE_] = ACTIONS(748), - [anon_sym__] = ACTIONS(750), - [anon_sym_LBRACE_STAR] = ACTIONS(752), - [anon_sym_STAR] = ACTIONS(754), - [anon_sym_LBRACE_EQ] = ACTIONS(756), - [anon_sym_LBRACE_PLUS] = ACTIONS(758), - [anon_sym_LBRACE_DASH] = ACTIONS(760), - [sym_symbol] = ACTIONS(736), - [anon_sym_LBRACE_CARET] = ACTIONS(762), - [anon_sym_CARET] = ACTIONS(762), - [anon_sym_LBRACE_TILDE] = ACTIONS(764), - [anon_sym_TILDE] = ACTIONS(764), - [anon_sym_LBRACK_CARET] = ACTIONS(766), - [anon_sym_BANG_LBRACK] = ACTIONS(768), - [anon_sym_DOLLAR] = ACTIONS(770), - [anon_sym_TODO] = ACTIONS(772), - [anon_sym_WIP] = ACTIONS(772), - [anon_sym_NOTE] = ACTIONS(774), - [anon_sym_INFO] = ACTIONS(774), - [anon_sym_XXX] = ACTIONS(774), - [sym_fixme] = ACTIONS(736), - [aux_sym__text_token1] = ACTIONS(776), - [sym__newline_inline] = ACTIONS(778), - [sym__verbatim_begin] = ACTIONS(780), - }, - [129] = { - [sym__heading1_content] = STATE(2167), - [sym__inline] = STATE(1794), - [sym__inline_element_with_whitespace] = STATE(198), - [sym__inline_element_with_newline] = STATE(198), - [sym__inline_core_element] = STATE(198), - [sym__inline_line] = STATE(1692), - [sym__hard_line_break] = STATE(539), - [sym_hard_line_break] = STATE(512), - [sym__smart_punctuation] = STATE(539), - [sym_autolink] = STATE(539), - [sym_emphasis] = STATE(539), - [sym_emphasis_begin] = STATE(299), - [sym_strong] = STATE(539), - [sym_strong_begin] = STATE(298), - [sym_highlighted] = STATE(539), - [sym_insert] = STATE(539), - [sym_delete] = STATE(539), - [sym_superscript] = STATE(539), - [sym_subscript] = STATE(539), - [sym_footnote_reference] = STATE(539), - [sym__image] = STATE(539), - [sym_full_reference_image] = STATE(539), - [sym_collapsed_reference_image] = STATE(539), - [sym_inline_image] = STATE(539), - [sym__image_description] = STATE(1414), - [sym__link] = STATE(539), - [sym_full_reference_link] = STATE(539), - [sym_collapsed_reference_link] = STATE(539), - [sym_inline_link] = STATE(539), - [sym_link_text] = STATE(1411), - [sym__comment_with_spaces] = STATE(539), - [sym_span] = STATE(539), - [sym_raw_inline] = STATE(539), - [sym_math] = STATE(539), - [sym_verbatim] = STATE(539), - [sym__todo_highlights] = STATE(539), - [sym_todo] = STATE(539), - [sym_note] = STATE(539), - [sym__symbol_fallback] = STATE(539), - [aux_sym__text] = STATE(520), - [aux_sym__inline_repeat1] = STATE(198), - [anon_sym_LBRACK] = ACTIONS(734), - [anon_sym_PIPE] = ACTIONS(736), - [anon_sym_LBRACE] = ACTIONS(740), - [sym__whitespace1] = ACTIONS(742), - [anon_sym_BSLASH] = ACTIONS(744), - [sym_quotation_marks] = ACTIONS(736), - [sym_ellipsis] = ACTIONS(736), - [sym_em_dash] = ACTIONS(736), - [sym_en_dash] = ACTIONS(740), - [sym_backslash_escape] = ACTIONS(740), - [anon_sym_LT] = ACTIONS(746), - [anon_sym_LBRACE_] = ACTIONS(748), - [anon_sym__] = ACTIONS(750), - [anon_sym_LBRACE_STAR] = ACTIONS(752), - [anon_sym_STAR] = ACTIONS(754), - [anon_sym_LBRACE_EQ] = ACTIONS(756), - [anon_sym_LBRACE_PLUS] = ACTIONS(758), - [anon_sym_LBRACE_DASH] = ACTIONS(760), - [sym_symbol] = ACTIONS(736), - [anon_sym_LBRACE_CARET] = ACTIONS(762), - [anon_sym_CARET] = ACTIONS(762), - [anon_sym_LBRACE_TILDE] = ACTIONS(764), - [anon_sym_TILDE] = ACTIONS(764), - [anon_sym_LBRACK_CARET] = ACTIONS(766), - [anon_sym_BANG_LBRACK] = ACTIONS(768), - [anon_sym_DOLLAR] = ACTIONS(770), - [anon_sym_TODO] = ACTIONS(772), - [anon_sym_WIP] = ACTIONS(772), - [anon_sym_NOTE] = ACTIONS(774), - [anon_sym_INFO] = ACTIONS(774), - [anon_sym_XXX] = ACTIONS(774), - [sym_fixme] = ACTIONS(736), - [aux_sym__text_token1] = ACTIONS(776), - [sym__newline_inline] = ACTIONS(778), - [sym__verbatim_begin] = ACTIONS(780), - }, - [130] = { - [sym__inline] = STATE(1944), - [sym__inline_element_with_whitespace] = STATE(241), - [sym__inline_element_with_newline] = STATE(241), - [sym__inline_core_element] = STATE(241), - [sym__hard_line_break] = STATE(696), - [sym_hard_line_break] = STATE(530), - [sym__smart_punctuation] = STATE(696), - [sym_autolink] = STATE(696), - [sym_emphasis] = STATE(696), - [sym_emphasis_begin] = STATE(274), - [sym_strong] = STATE(696), - [sym_strong_begin] = STATE(275), - [sym_highlighted] = STATE(696), - [sym_insert] = STATE(696), - [sym_delete] = STATE(696), - [sym_superscript] = STATE(696), - [sym_subscript] = STATE(696), - [sym_footnote_reference] = STATE(696), - [sym__image] = STATE(696), - [sym_full_reference_image] = STATE(696), - [sym_collapsed_reference_image] = STATE(696), - [sym_inline_image] = STATE(696), - [sym__image_description] = STATE(1427), - [sym__link] = STATE(696), - [sym_full_reference_link] = STATE(696), - [sym_collapsed_reference_link] = STATE(696), - [sym_inline_link] = STATE(696), - [sym_link_text] = STATE(1426), - [sym__comment_with_spaces] = STATE(696), - [sym_span] = STATE(696), - [sym_raw_inline] = STATE(696), - [sym_math] = STATE(696), - [sym_verbatim] = STATE(696), - [sym__todo_highlights] = STATE(696), - [sym_todo] = STATE(696), - [sym_note] = STATE(696), - [sym__symbol_fallback] = STATE(696), - [aux_sym__text] = STATE(609), - [aux_sym__inline_repeat1] = STATE(241), - [anon_sym_LBRACK] = ACTIONS(1036), - [anon_sym_PIPE] = ACTIONS(1039), - [anon_sym_LBRACE] = ACTIONS(1042), - [sym__whitespace1] = ACTIONS(1368), - [anon_sym_BSLASH] = ACTIONS(1048), - [sym_quotation_marks] = ACTIONS(1039), - [sym_ellipsis] = ACTIONS(1039), - [sym_em_dash] = ACTIONS(1039), - [sym_en_dash] = ACTIONS(1042), - [sym_backslash_escape] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1051), - [anon_sym_LBRACE_] = ACTIONS(1054), - [anon_sym__] = ACTIONS(1374), - [aux_sym_emphasis_end_token1] = ACTIONS(861), - [anon_sym_LBRACE_STAR] = ACTIONS(1060), - [anon_sym_STAR] = ACTIONS(1063), - [anon_sym_LBRACE_EQ] = ACTIONS(1066), - [anon_sym_LBRACE_PLUS] = ACTIONS(1069), - [anon_sym_LBRACE_DASH] = ACTIONS(1072), - [sym_symbol] = ACTIONS(1039), - [anon_sym_LBRACE_CARET] = ACTIONS(1075), - [anon_sym_CARET] = ACTIONS(1075), - [anon_sym_LBRACE_TILDE] = ACTIONS(1078), - [anon_sym_TILDE] = ACTIONS(1078), - [anon_sym_LBRACK_CARET] = ACTIONS(1081), - [anon_sym_BANG_LBRACK] = ACTIONS(1084), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(1087), - [anon_sym_TODO] = ACTIONS(1090), - [anon_sym_WIP] = ACTIONS(1090), - [anon_sym_NOTE] = ACTIONS(1093), - [anon_sym_INFO] = ACTIONS(1093), - [anon_sym_XXX] = ACTIONS(1093), - [sym_fixme] = ACTIONS(1039), - [aux_sym__text_token1] = ACTIONS(1096), - [sym__newline_inline] = ACTIONS(1099), - [sym__verbatim_begin] = ACTIONS(1102), - }, - [131] = { - [sym__inline] = STATE(1938), - [sym__inline_element_with_whitespace] = STATE(230), - [sym__inline_element_with_newline] = STATE(230), - [sym__inline_core_element] = STATE(230), - [sym__hard_line_break] = STATE(688), - [sym_hard_line_break] = STATE(516), - [sym__smart_punctuation] = STATE(688), - [sym_autolink] = STATE(688), - [sym_emphasis] = STATE(688), - [sym_emphasis_begin] = STATE(291), - [sym_strong] = STATE(688), - [sym_strong_begin] = STATE(272), - [sym_highlighted] = STATE(688), - [sym_insert] = STATE(688), - [sym_delete] = STATE(688), - [sym_superscript] = STATE(688), - [sym_subscript] = STATE(688), - [sym_footnote_reference] = STATE(688), - [sym__image] = STATE(688), - [sym_full_reference_image] = STATE(688), - [sym_collapsed_reference_image] = STATE(688), - [sym_inline_image] = STATE(688), - [sym__image_description] = STATE(1436), - [sym__link] = STATE(688), - [sym_full_reference_link] = STATE(688), - [sym_collapsed_reference_link] = STATE(688), - [sym_inline_link] = STATE(688), - [sym_link_text] = STATE(1434), - [sym__comment_with_spaces] = STATE(688), - [sym_span] = STATE(688), - [sym_raw_inline] = STATE(688), - [sym_math] = STATE(688), - [sym_verbatim] = STATE(688), - [sym__todo_highlights] = STATE(688), - [sym_todo] = STATE(688), - [sym_note] = STATE(688), - [sym__symbol_fallback] = STATE(688), - [aux_sym__text] = STATE(583), - [aux_sym__inline_repeat1] = STATE(230), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_PIPE] = ACTIONS(1108), - [anon_sym_LBRACE] = ACTIONS(1111), - [sym__whitespace1] = ACTIONS(1362), - [anon_sym_BSLASH] = ACTIONS(1117), - [sym_quotation_marks] = ACTIONS(1108), - [sym_ellipsis] = ACTIONS(1108), - [sym_em_dash] = ACTIONS(1108), - [sym_en_dash] = ACTIONS(1111), - [sym_backslash_escape] = ACTIONS(1111), - [anon_sym_LT] = ACTIONS(1120), - [anon_sym_LBRACE_] = ACTIONS(1123), - [anon_sym__] = ACTIONS(1126), - [anon_sym_LBRACE_STAR] = ACTIONS(1129), - [anon_sym_STAR] = ACTIONS(1377), - [aux_sym_strong_end_token1] = ACTIONS(861), - [anon_sym_LBRACE_EQ] = ACTIONS(1135), - [anon_sym_LBRACE_PLUS] = ACTIONS(1138), - [anon_sym_LBRACE_DASH] = ACTIONS(1141), - [sym_symbol] = ACTIONS(1108), - [anon_sym_LBRACE_CARET] = ACTIONS(1144), - [anon_sym_CARET] = ACTIONS(1144), - [anon_sym_LBRACE_TILDE] = ACTIONS(1147), - [anon_sym_TILDE] = ACTIONS(1147), - [anon_sym_LBRACK_CARET] = ACTIONS(1150), - [anon_sym_BANG_LBRACK] = ACTIONS(1153), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(1156), - [anon_sym_TODO] = ACTIONS(1159), - [anon_sym_WIP] = ACTIONS(1159), - [anon_sym_NOTE] = ACTIONS(1162), - [anon_sym_INFO] = ACTIONS(1162), - [anon_sym_XXX] = ACTIONS(1162), - [sym_fixme] = ACTIONS(1108), - [aux_sym__text_token1] = ACTIONS(1165), - [sym__newline_inline] = ACTIONS(1168), - [sym__verbatim_begin] = ACTIONS(1171), - }, - [132] = { - [sym__inline] = STATE(1844), - [sym__inline_element_with_whitespace] = STATE(198), - [sym__inline_element_with_newline] = STATE(198), - [sym__inline_core_element] = STATE(198), - [sym__inline_line] = STATE(772), - [sym__hard_line_break] = STATE(539), - [sym_hard_line_break] = STATE(512), - [sym__smart_punctuation] = STATE(539), - [sym_autolink] = STATE(539), - [sym_emphasis] = STATE(539), - [sym_emphasis_begin] = STATE(299), - [sym_strong] = STATE(539), - [sym_strong_begin] = STATE(298), - [sym_highlighted] = STATE(539), - [sym_insert] = STATE(539), - [sym_delete] = STATE(539), - [sym_superscript] = STATE(539), - [sym_subscript] = STATE(539), - [sym_footnote_reference] = STATE(539), - [sym__image] = STATE(539), - [sym_full_reference_image] = STATE(539), - [sym_collapsed_reference_image] = STATE(539), - [sym_inline_image] = STATE(539), - [sym__image_description] = STATE(1414), - [sym__link] = STATE(539), - [sym_full_reference_link] = STATE(539), - [sym_collapsed_reference_link] = STATE(539), - [sym_inline_link] = STATE(539), - [sym_link_text] = STATE(1411), - [sym__comment_with_spaces] = STATE(539), - [sym_span] = STATE(539), - [sym_raw_inline] = STATE(539), - [sym_math] = STATE(539), - [sym_verbatim] = STATE(539), - [sym__todo_highlights] = STATE(539), - [sym_todo] = STATE(539), - [sym_note] = STATE(539), - [sym__symbol_fallback] = STATE(539), - [aux_sym__text] = STATE(520), - [aux_sym_table_caption_repeat1] = STATE(68), - [aux_sym__inline_repeat1] = STATE(198), - [anon_sym_LBRACK] = ACTIONS(734), - [anon_sym_PIPE] = ACTIONS(736), - [anon_sym_LBRACE] = ACTIONS(740), - [sym__whitespace1] = ACTIONS(742), - [anon_sym_BSLASH] = ACTIONS(744), - [sym_quotation_marks] = ACTIONS(736), - [sym_ellipsis] = ACTIONS(736), - [sym_em_dash] = ACTIONS(736), - [sym_en_dash] = ACTIONS(740), - [sym_backslash_escape] = ACTIONS(740), - [anon_sym_LT] = ACTIONS(746), - [anon_sym_LBRACE_] = ACTIONS(748), - [anon_sym__] = ACTIONS(750), - [anon_sym_LBRACE_STAR] = ACTIONS(752), - [anon_sym_STAR] = ACTIONS(754), - [anon_sym_LBRACE_EQ] = ACTIONS(756), - [anon_sym_LBRACE_PLUS] = ACTIONS(758), - [anon_sym_LBRACE_DASH] = ACTIONS(760), - [sym_symbol] = ACTIONS(736), - [anon_sym_LBRACE_CARET] = ACTIONS(762), - [anon_sym_CARET] = ACTIONS(762), - [anon_sym_LBRACE_TILDE] = ACTIONS(764), - [anon_sym_TILDE] = ACTIONS(764), - [anon_sym_LBRACK_CARET] = ACTIONS(766), - [anon_sym_BANG_LBRACK] = ACTIONS(768), - [anon_sym_DOLLAR] = ACTIONS(770), - [anon_sym_TODO] = ACTIONS(772), - [anon_sym_WIP] = ACTIONS(772), - [anon_sym_NOTE] = ACTIONS(774), - [anon_sym_INFO] = ACTIONS(774), - [anon_sym_XXX] = ACTIONS(774), - [sym_fixme] = ACTIONS(736), - [aux_sym__text_token1] = ACTIONS(776), - [sym__newline_inline] = ACTIONS(778), - [sym__verbatim_begin] = ACTIONS(780), - }, - [133] = { - [sym__inline] = STATE(1953), - [sym__inline_element_with_whitespace] = STATE(241), - [sym__inline_element_with_newline] = STATE(241), - [sym__inline_core_element] = STATE(241), - [sym__hard_line_break] = STATE(696), - [sym_hard_line_break] = STATE(530), - [sym__smart_punctuation] = STATE(696), - [sym_autolink] = STATE(696), - [sym_emphasis] = STATE(696), - [sym_emphasis_begin] = STATE(274), - [sym_strong] = STATE(696), - [sym_strong_begin] = STATE(275), - [sym_highlighted] = STATE(696), - [sym_insert] = STATE(696), - [sym_delete] = STATE(696), - [sym_superscript] = STATE(696), - [sym_subscript] = STATE(696), - [sym_footnote_reference] = STATE(696), - [sym__image] = STATE(696), - [sym_full_reference_image] = STATE(696), - [sym_collapsed_reference_image] = STATE(696), - [sym_inline_image] = STATE(696), - [sym__image_description] = STATE(1427), - [sym__link] = STATE(696), - [sym_full_reference_link] = STATE(696), - [sym_collapsed_reference_link] = STATE(696), - [sym_inline_link] = STATE(696), - [sym_link_text] = STATE(1426), - [sym__comment_with_spaces] = STATE(696), - [sym_span] = STATE(696), - [sym_raw_inline] = STATE(696), - [sym_math] = STATE(696), - [sym_verbatim] = STATE(696), - [sym__todo_highlights] = STATE(696), - [sym_todo] = STATE(696), - [sym_note] = STATE(696), - [sym__symbol_fallback] = STATE(696), - [aux_sym__text] = STATE(609), - [aux_sym__inline_repeat1] = STATE(241), - [anon_sym_LBRACK] = ACTIONS(1036), - [anon_sym_PIPE] = ACTIONS(1039), - [anon_sym_LBRACE] = ACTIONS(1042), - [sym__whitespace1] = ACTIONS(1045), - [anon_sym_BSLASH] = ACTIONS(1048), - [sym_quotation_marks] = ACTIONS(1039), - [sym_ellipsis] = ACTIONS(1039), - [sym_em_dash] = ACTIONS(1039), - [sym_en_dash] = ACTIONS(1042), - [sym_backslash_escape] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1051), - [anon_sym_LBRACE_] = ACTIONS(1054), - [anon_sym__] = ACTIONS(1057), - [anon_sym_LBRACE_STAR] = ACTIONS(1060), - [anon_sym_STAR] = ACTIONS(1063), - [anon_sym_LBRACE_EQ] = ACTIONS(1066), - [anon_sym_LBRACE_PLUS] = ACTIONS(1069), - [anon_sym_LBRACE_DASH] = ACTIONS(1072), - [sym_symbol] = ACTIONS(1039), - [anon_sym_LBRACE_CARET] = ACTIONS(1075), - [anon_sym_CARET] = ACTIONS(1380), - [anon_sym_CARET_RBRACE] = ACTIONS(861), - [anon_sym_LBRACE_TILDE] = ACTIONS(1078), - [anon_sym_TILDE] = ACTIONS(1078), - [anon_sym_LBRACK_CARET] = ACTIONS(1081), - [anon_sym_BANG_LBRACK] = ACTIONS(1084), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(1087), - [anon_sym_TODO] = ACTIONS(1090), - [anon_sym_WIP] = ACTIONS(1090), - [anon_sym_NOTE] = ACTIONS(1093), - [anon_sym_INFO] = ACTIONS(1093), - [anon_sym_XXX] = ACTIONS(1093), - [sym_fixme] = ACTIONS(1039), - [aux_sym__text_token1] = ACTIONS(1096), - [sym__newline_inline] = ACTIONS(1099), - [sym__verbatim_begin] = ACTIONS(1102), - }, - [134] = { - [sym__inline] = STATE(1952), - [sym__inline_element_with_whitespace] = STATE(230), - [sym__inline_element_with_newline] = STATE(230), - [sym__inline_core_element] = STATE(230), - [sym__hard_line_break] = STATE(688), - [sym_hard_line_break] = STATE(516), - [sym__smart_punctuation] = STATE(688), - [sym_autolink] = STATE(688), - [sym_emphasis] = STATE(688), - [sym_emphasis_begin] = STATE(291), - [sym_strong] = STATE(688), - [sym_strong_begin] = STATE(272), - [sym_highlighted] = STATE(688), - [sym_insert] = STATE(688), - [sym_delete] = STATE(688), - [sym_superscript] = STATE(688), - [sym_subscript] = STATE(688), - [sym_footnote_reference] = STATE(688), - [sym__image] = STATE(688), - [sym_full_reference_image] = STATE(688), - [sym_collapsed_reference_image] = STATE(688), - [sym_inline_image] = STATE(688), - [sym__image_description] = STATE(1436), - [sym__link] = STATE(688), - [sym_full_reference_link] = STATE(688), - [sym_collapsed_reference_link] = STATE(688), - [sym_inline_link] = STATE(688), - [sym_link_text] = STATE(1434), - [sym__comment_with_spaces] = STATE(688), - [sym_span] = STATE(688), - [sym_raw_inline] = STATE(688), - [sym_math] = STATE(688), - [sym_verbatim] = STATE(688), - [sym__todo_highlights] = STATE(688), - [sym_todo] = STATE(688), - [sym_note] = STATE(688), - [sym__symbol_fallback] = STATE(688), - [aux_sym__text] = STATE(583), - [aux_sym__inline_repeat1] = STATE(230), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_PIPE] = ACTIONS(1108), - [anon_sym_LBRACE] = ACTIONS(1111), - [sym__whitespace1] = ACTIONS(1114), - [anon_sym_BSLASH] = ACTIONS(1117), - [sym_quotation_marks] = ACTIONS(1108), - [sym_ellipsis] = ACTIONS(1108), - [sym_em_dash] = ACTIONS(1108), - [sym_en_dash] = ACTIONS(1111), - [sym_backslash_escape] = ACTIONS(1111), - [anon_sym_LT] = ACTIONS(1120), - [anon_sym_LBRACE_] = ACTIONS(1123), - [anon_sym__] = ACTIONS(1126), - [anon_sym_LBRACE_STAR] = ACTIONS(1129), - [anon_sym_STAR] = ACTIONS(1132), - [anon_sym_LBRACE_EQ] = ACTIONS(1135), - [anon_sym_LBRACE_PLUS] = ACTIONS(1138), - [anon_sym_LBRACE_DASH] = ACTIONS(1141), - [sym_symbol] = ACTIONS(1108), - [anon_sym_LBRACE_CARET] = ACTIONS(1144), - [anon_sym_CARET] = ACTIONS(1383), - [anon_sym_CARET_RBRACE] = ACTIONS(861), - [anon_sym_LBRACE_TILDE] = ACTIONS(1147), - [anon_sym_TILDE] = ACTIONS(1147), - [anon_sym_LBRACK_CARET] = ACTIONS(1150), - [anon_sym_BANG_LBRACK] = ACTIONS(1153), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(1156), - [anon_sym_TODO] = ACTIONS(1159), - [anon_sym_WIP] = ACTIONS(1159), - [anon_sym_NOTE] = ACTIONS(1162), - [anon_sym_INFO] = ACTIONS(1162), - [anon_sym_XXX] = ACTIONS(1162), - [sym_fixme] = ACTIONS(1108), - [aux_sym__text_token1] = ACTIONS(1165), - [sym__newline_inline] = ACTIONS(1168), - [sym__verbatim_begin] = ACTIONS(1171), - }, - [135] = { - [sym__inline] = STATE(1959), - [sym__inline_element_with_whitespace] = STATE(219), - [sym__inline_element_with_newline] = STATE(219), - [sym__inline_core_element] = STATE(219), - [sym__hard_line_break] = STATE(682), - [sym_hard_line_break] = STATE(518), - [sym__smart_punctuation] = STATE(682), - [sym_autolink] = STATE(682), - [sym_emphasis] = STATE(682), - [sym_emphasis_begin] = STATE(286), - [sym_strong] = STATE(682), - [sym_strong_begin] = STATE(288), - [sym_highlighted] = STATE(682), - [sym_insert] = STATE(682), - [sym_delete] = STATE(682), - [sym_superscript] = STATE(682), - [sym_subscript] = STATE(682), - [sym_footnote_reference] = STATE(682), - [sym__image] = STATE(682), - [sym_full_reference_image] = STATE(682), - [sym_collapsed_reference_image] = STATE(682), - [sym_inline_image] = STATE(682), - [sym__image_description] = STATE(1440), - [sym__link] = STATE(682), - [sym_full_reference_link] = STATE(682), - [sym_collapsed_reference_link] = STATE(682), - [sym_inline_link] = STATE(682), - [sym_link_text] = STATE(1439), - [sym__comment_with_spaces] = STATE(682), - [sym_span] = STATE(682), - [sym_raw_inline] = STATE(682), - [sym_math] = STATE(682), - [sym_verbatim] = STATE(682), - [sym__todo_highlights] = STATE(682), - [sym_todo] = STATE(682), - [sym_note] = STATE(682), - [sym__symbol_fallback] = STATE(682), - [aux_sym__text] = STATE(572), - [aux_sym__inline_repeat1] = STATE(219), - [anon_sym_LBRACK] = ACTIONS(1182), - [anon_sym_PIPE] = ACTIONS(1185), - [anon_sym_LBRACE] = ACTIONS(1188), - [sym__whitespace1] = ACTIONS(1191), - [anon_sym_BSLASH] = ACTIONS(1194), - [sym_quotation_marks] = ACTIONS(1185), - [sym_ellipsis] = ACTIONS(1185), - [sym_em_dash] = ACTIONS(1185), - [sym_en_dash] = ACTIONS(1188), - [sym_backslash_escape] = ACTIONS(1188), - [anon_sym_LT] = ACTIONS(1197), - [anon_sym_LBRACE_] = ACTIONS(1200), - [anon_sym__] = ACTIONS(1203), - [anon_sym_LBRACE_STAR] = ACTIONS(1206), - [anon_sym_STAR] = ACTIONS(1209), - [anon_sym_LBRACE_EQ] = ACTIONS(1212), - [anon_sym_LBRACE_PLUS] = ACTIONS(1215), - [anon_sym_LBRACE_DASH] = ACTIONS(1218), - [sym_symbol] = ACTIONS(1185), - [anon_sym_LBRACE_CARET] = ACTIONS(1221), - [anon_sym_CARET] = ACTIONS(1386), - [anon_sym_CARET_RBRACE] = ACTIONS(861), - [anon_sym_LBRACE_TILDE] = ACTIONS(1224), - [anon_sym_TILDE] = ACTIONS(1224), - [anon_sym_LBRACK_CARET] = ACTIONS(1227), - [anon_sym_BANG_LBRACK] = ACTIONS(1230), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(1233), - [anon_sym_TODO] = ACTIONS(1236), - [anon_sym_WIP] = ACTIONS(1236), - [anon_sym_NOTE] = ACTIONS(1239), - [anon_sym_INFO] = ACTIONS(1239), - [anon_sym_XXX] = ACTIONS(1239), - [sym_fixme] = ACTIONS(1185), - [aux_sym__text_token1] = ACTIONS(1242), - [sym__newline_inline] = ACTIONS(1245), - [sym__verbatim_begin] = ACTIONS(1248), - }, - [136] = { - [sym__inline] = STATE(1980), - [sym__inline_element_with_whitespace] = STATE(242), - [sym__inline_element_with_newline] = STATE(242), - [sym__inline_core_element] = STATE(242), - [sym__hard_line_break] = STATE(627), - [sym_hard_line_break] = STATE(523), - [sym__smart_punctuation] = STATE(627), - [sym_autolink] = STATE(627), - [sym_emphasis] = STATE(627), - [sym_emphasis_begin] = STATE(296), - [sym_strong] = STATE(627), - [sym_strong_begin] = STATE(295), - [sym_highlighted] = STATE(627), - [sym_insert] = STATE(627), - [sym_delete] = STATE(627), - [sym_superscript] = STATE(627), - [sym_subscript] = STATE(627), - [sym_footnote_reference] = STATE(627), - [sym__image] = STATE(627), - [sym_full_reference_image] = STATE(627), - [sym_collapsed_reference_image] = STATE(627), - [sym_inline_image] = STATE(627), - [sym__image_description] = STATE(1448), - [sym__link] = STATE(627), - [sym_full_reference_link] = STATE(627), - [sym_collapsed_reference_link] = STATE(627), - [sym_inline_link] = STATE(627), - [sym_link_text] = STATE(1453), - [sym__comment_with_spaces] = STATE(627), - [sym_span] = STATE(627), - [sym_raw_inline] = STATE(627), - [sym_math] = STATE(627), - [sym_verbatim] = STATE(627), - [sym__todo_highlights] = STATE(627), - [sym_todo] = STATE(627), - [sym_note] = STATE(627), - [sym__symbol_fallback] = STATE(627), - [aux_sym__text] = STATE(560), - [aux_sym__inline_repeat1] = STATE(242), - [anon_sym_LBRACK] = ACTIONS(853), - [anon_sym_RBRACK] = ACTIONS(1389), - [anon_sym_PIPE] = ACTIONS(858), - [anon_sym_LBRACE] = ACTIONS(863), - [sym__whitespace1] = ACTIONS(866), - [anon_sym_BSLASH] = ACTIONS(869), - [sym_quotation_marks] = ACTIONS(858), - [sym_ellipsis] = ACTIONS(858), - [sym_em_dash] = ACTIONS(858), - [sym_en_dash] = ACTIONS(863), - [sym_backslash_escape] = ACTIONS(863), - [anon_sym_LT] = ACTIONS(872), - [anon_sym_LBRACE_] = ACTIONS(875), - [anon_sym__] = ACTIONS(878), - [anon_sym_LBRACE_STAR] = ACTIONS(881), - [anon_sym_STAR] = ACTIONS(884), - [anon_sym_LBRACE_EQ] = ACTIONS(887), - [anon_sym_LBRACE_PLUS] = ACTIONS(890), - [anon_sym_LBRACE_DASH] = ACTIONS(893), - [sym_symbol] = ACTIONS(858), - [anon_sym_LBRACE_CARET] = ACTIONS(896), - [anon_sym_CARET] = ACTIONS(896), - [anon_sym_LBRACE_TILDE] = ACTIONS(899), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_LBRACK_CARET] = ACTIONS(902), - [anon_sym_BANG_LBRACK] = ACTIONS(905), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(910), - [anon_sym_TODO] = ACTIONS(913), - [anon_sym_WIP] = ACTIONS(913), - [anon_sym_NOTE] = ACTIONS(916), - [anon_sym_INFO] = ACTIONS(916), - [anon_sym_XXX] = ACTIONS(916), - [sym_fixme] = ACTIONS(858), - [aux_sym__text_token1] = ACTIONS(919), - [sym__newline_inline] = ACTIONS(922), - [sym__verbatim_begin] = ACTIONS(925), - }, - [137] = { - [sym__inline] = STATE(2020), - [sym__inline_element_with_whitespace] = STATE(219), - [sym__inline_element_with_newline] = STATE(219), - [sym__inline_core_element] = STATE(219), - [sym__hard_line_break] = STATE(682), - [sym_hard_line_break] = STATE(518), - [sym__smart_punctuation] = STATE(682), - [sym_autolink] = STATE(682), - [sym_emphasis] = STATE(682), - [sym_emphasis_begin] = STATE(286), - [sym_strong] = STATE(682), - [sym_strong_begin] = STATE(288), - [sym_highlighted] = STATE(682), - [sym_insert] = STATE(682), - [sym_delete] = STATE(682), - [sym_superscript] = STATE(682), - [sym_subscript] = STATE(682), - [sym_footnote_reference] = STATE(682), - [sym__image] = STATE(682), - [sym_full_reference_image] = STATE(682), - [sym_collapsed_reference_image] = STATE(682), - [sym_inline_image] = STATE(682), - [sym__image_description] = STATE(1440), - [sym__link] = STATE(682), - [sym_full_reference_link] = STATE(682), - [sym_collapsed_reference_link] = STATE(682), - [sym_inline_link] = STATE(682), - [sym_link_text] = STATE(1439), - [sym__comment_with_spaces] = STATE(682), - [sym_span] = STATE(682), - [sym_raw_inline] = STATE(682), - [sym_math] = STATE(682), - [sym_verbatim] = STATE(682), - [sym__todo_highlights] = STATE(682), - [sym_todo] = STATE(682), - [sym_note] = STATE(682), - [sym__symbol_fallback] = STATE(682), - [aux_sym__text] = STATE(572), - [aux_sym__inline_repeat1] = STATE(219), - [anon_sym_LBRACK] = ACTIONS(1182), - [anon_sym_PIPE] = ACTIONS(1185), - [anon_sym_LBRACE] = ACTIONS(1188), - [sym__whitespace1] = ACTIONS(1356), - [anon_sym_BSLASH] = ACTIONS(1194), - [sym_quotation_marks] = ACTIONS(1185), - [sym_ellipsis] = ACTIONS(1185), - [sym_em_dash] = ACTIONS(1185), - [sym_en_dash] = ACTIONS(1188), - [sym_backslash_escape] = ACTIONS(1188), - [anon_sym_LT] = ACTIONS(1197), - [anon_sym_LBRACE_] = ACTIONS(1200), - [anon_sym__] = ACTIONS(1203), - [anon_sym_LBRACE_STAR] = ACTIONS(1206), - [anon_sym_STAR] = ACTIONS(1392), - [aux_sym_strong_end_token1] = ACTIONS(861), - [anon_sym_LBRACE_EQ] = ACTIONS(1212), - [anon_sym_LBRACE_PLUS] = ACTIONS(1215), - [anon_sym_LBRACE_DASH] = ACTIONS(1218), - [sym_symbol] = ACTIONS(1185), - [anon_sym_LBRACE_CARET] = ACTIONS(1221), - [anon_sym_CARET] = ACTIONS(1221), - [anon_sym_LBRACE_TILDE] = ACTIONS(1224), - [anon_sym_TILDE] = ACTIONS(1224), - [anon_sym_LBRACK_CARET] = ACTIONS(1227), - [anon_sym_BANG_LBRACK] = ACTIONS(1230), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(1233), - [anon_sym_TODO] = ACTIONS(1236), - [anon_sym_WIP] = ACTIONS(1236), - [anon_sym_NOTE] = ACTIONS(1239), - [anon_sym_INFO] = ACTIONS(1239), - [anon_sym_XXX] = ACTIONS(1239), - [sym_fixme] = ACTIONS(1185), - [aux_sym__text_token1] = ACTIONS(1242), - [sym__newline_inline] = ACTIONS(1245), - [sym__verbatim_begin] = ACTIONS(1248), - }, - [138] = { - [sym__heading6_content] = STATE(2047), - [sym__inline] = STATE(1763), - [sym__inline_element_with_whitespace] = STATE(198), - [sym__inline_element_with_newline] = STATE(198), - [sym__inline_core_element] = STATE(198), - [sym__inline_line] = STATE(1680), - [sym__hard_line_break] = STATE(539), - [sym_hard_line_break] = STATE(512), - [sym__smart_punctuation] = STATE(539), - [sym_autolink] = STATE(539), - [sym_emphasis] = STATE(539), - [sym_emphasis_begin] = STATE(299), - [sym_strong] = STATE(539), - [sym_strong_begin] = STATE(298), - [sym_highlighted] = STATE(539), - [sym_insert] = STATE(539), - [sym_delete] = STATE(539), - [sym_superscript] = STATE(539), - [sym_subscript] = STATE(539), - [sym_footnote_reference] = STATE(539), - [sym__image] = STATE(539), - [sym_full_reference_image] = STATE(539), - [sym_collapsed_reference_image] = STATE(539), - [sym_inline_image] = STATE(539), - [sym__image_description] = STATE(1414), - [sym__link] = STATE(539), - [sym_full_reference_link] = STATE(539), - [sym_collapsed_reference_link] = STATE(539), - [sym_inline_link] = STATE(539), - [sym_link_text] = STATE(1411), - [sym__comment_with_spaces] = STATE(539), - [sym_span] = STATE(539), - [sym_raw_inline] = STATE(539), - [sym_math] = STATE(539), - [sym_verbatim] = STATE(539), - [sym__todo_highlights] = STATE(539), - [sym_todo] = STATE(539), - [sym_note] = STATE(539), - [sym__symbol_fallback] = STATE(539), - [aux_sym__text] = STATE(520), - [aux_sym__inline_repeat1] = STATE(198), - [anon_sym_LBRACK] = ACTIONS(734), - [anon_sym_PIPE] = ACTIONS(736), - [anon_sym_LBRACE] = ACTIONS(740), - [sym__whitespace1] = ACTIONS(742), - [anon_sym_BSLASH] = ACTIONS(744), - [sym_quotation_marks] = ACTIONS(736), - [sym_ellipsis] = ACTIONS(736), - [sym_em_dash] = ACTIONS(736), - [sym_en_dash] = ACTIONS(740), - [sym_backslash_escape] = ACTIONS(740), - [anon_sym_LT] = ACTIONS(746), - [anon_sym_LBRACE_] = ACTIONS(748), - [anon_sym__] = ACTIONS(750), - [anon_sym_LBRACE_STAR] = ACTIONS(752), - [anon_sym_STAR] = ACTIONS(754), - [anon_sym_LBRACE_EQ] = ACTIONS(756), - [anon_sym_LBRACE_PLUS] = ACTIONS(758), - [anon_sym_LBRACE_DASH] = ACTIONS(760), - [sym_symbol] = ACTIONS(736), - [anon_sym_LBRACE_CARET] = ACTIONS(762), - [anon_sym_CARET] = ACTIONS(762), - [anon_sym_LBRACE_TILDE] = ACTIONS(764), - [anon_sym_TILDE] = ACTIONS(764), - [anon_sym_LBRACK_CARET] = ACTIONS(766), - [anon_sym_BANG_LBRACK] = ACTIONS(768), - [anon_sym_DOLLAR] = ACTIONS(770), - [anon_sym_TODO] = ACTIONS(772), - [anon_sym_WIP] = ACTIONS(772), - [anon_sym_NOTE] = ACTIONS(774), - [anon_sym_INFO] = ACTIONS(774), - [anon_sym_XXX] = ACTIONS(774), - [sym_fixme] = ACTIONS(736), - [aux_sym__text_token1] = ACTIONS(776), - [sym__newline_inline] = ACTIONS(778), - [sym__verbatim_begin] = ACTIONS(780), - }, - [139] = { - [sym__heading5_content] = STATE(2048), - [sym__inline] = STATE(1843), - [sym__inline_element_with_whitespace] = STATE(198), - [sym__inline_element_with_newline] = STATE(198), - [sym__inline_core_element] = STATE(198), - [sym__inline_line] = STATE(1681), - [sym__hard_line_break] = STATE(539), - [sym_hard_line_break] = STATE(512), - [sym__smart_punctuation] = STATE(539), - [sym_autolink] = STATE(539), - [sym_emphasis] = STATE(539), - [sym_emphasis_begin] = STATE(299), - [sym_strong] = STATE(539), - [sym_strong_begin] = STATE(298), - [sym_highlighted] = STATE(539), - [sym_insert] = STATE(539), - [sym_delete] = STATE(539), - [sym_superscript] = STATE(539), - [sym_subscript] = STATE(539), - [sym_footnote_reference] = STATE(539), - [sym__image] = STATE(539), - [sym_full_reference_image] = STATE(539), - [sym_collapsed_reference_image] = STATE(539), - [sym_inline_image] = STATE(539), - [sym__image_description] = STATE(1414), - [sym__link] = STATE(539), - [sym_full_reference_link] = STATE(539), - [sym_collapsed_reference_link] = STATE(539), - [sym_inline_link] = STATE(539), - [sym_link_text] = STATE(1411), - [sym__comment_with_spaces] = STATE(539), - [sym_span] = STATE(539), - [sym_raw_inline] = STATE(539), - [sym_math] = STATE(539), - [sym_verbatim] = STATE(539), - [sym__todo_highlights] = STATE(539), - [sym_todo] = STATE(539), - [sym_note] = STATE(539), - [sym__symbol_fallback] = STATE(539), - [aux_sym__text] = STATE(520), - [aux_sym__inline_repeat1] = STATE(198), - [anon_sym_LBRACK] = ACTIONS(734), - [anon_sym_PIPE] = ACTIONS(736), - [anon_sym_LBRACE] = ACTIONS(740), - [sym__whitespace1] = ACTIONS(742), - [anon_sym_BSLASH] = ACTIONS(744), - [sym_quotation_marks] = ACTIONS(736), - [sym_ellipsis] = ACTIONS(736), - [sym_em_dash] = ACTIONS(736), - [sym_en_dash] = ACTIONS(740), - [sym_backslash_escape] = ACTIONS(740), - [anon_sym_LT] = ACTIONS(746), - [anon_sym_LBRACE_] = ACTIONS(748), - [anon_sym__] = ACTIONS(750), - [anon_sym_LBRACE_STAR] = ACTIONS(752), - [anon_sym_STAR] = ACTIONS(754), - [anon_sym_LBRACE_EQ] = ACTIONS(756), - [anon_sym_LBRACE_PLUS] = ACTIONS(758), - [anon_sym_LBRACE_DASH] = ACTIONS(760), - [sym_symbol] = ACTIONS(736), - [anon_sym_LBRACE_CARET] = ACTIONS(762), - [anon_sym_CARET] = ACTIONS(762), - [anon_sym_LBRACE_TILDE] = ACTIONS(764), - [anon_sym_TILDE] = ACTIONS(764), - [anon_sym_LBRACK_CARET] = ACTIONS(766), - [anon_sym_BANG_LBRACK] = ACTIONS(768), - [anon_sym_DOLLAR] = ACTIONS(770), - [anon_sym_TODO] = ACTIONS(772), - [anon_sym_WIP] = ACTIONS(772), - [anon_sym_NOTE] = ACTIONS(774), - [anon_sym_INFO] = ACTIONS(774), - [anon_sym_XXX] = ACTIONS(774), - [sym_fixme] = ACTIONS(736), - [aux_sym__text_token1] = ACTIONS(776), - [sym__newline_inline] = ACTIONS(778), - [sym__verbatim_begin] = ACTIONS(780), - }, - [140] = { - [sym__heading5_content] = STATE(2051), - [sym__inline] = STATE(1843), - [sym__inline_element_with_whitespace] = STATE(198), - [sym__inline_element_with_newline] = STATE(198), - [sym__inline_core_element] = STATE(198), - [sym__inline_line] = STATE(1681), - [sym__hard_line_break] = STATE(539), - [sym_hard_line_break] = STATE(512), - [sym__smart_punctuation] = STATE(539), - [sym_autolink] = STATE(539), - [sym_emphasis] = STATE(539), - [sym_emphasis_begin] = STATE(299), - [sym_strong] = STATE(539), - [sym_strong_begin] = STATE(298), - [sym_highlighted] = STATE(539), - [sym_insert] = STATE(539), - [sym_delete] = STATE(539), - [sym_superscript] = STATE(539), - [sym_subscript] = STATE(539), - [sym_footnote_reference] = STATE(539), - [sym__image] = STATE(539), - [sym_full_reference_image] = STATE(539), - [sym_collapsed_reference_image] = STATE(539), - [sym_inline_image] = STATE(539), - [sym__image_description] = STATE(1414), - [sym__link] = STATE(539), - [sym_full_reference_link] = STATE(539), - [sym_collapsed_reference_link] = STATE(539), - [sym_inline_link] = STATE(539), - [sym_link_text] = STATE(1411), - [sym__comment_with_spaces] = STATE(539), - [sym_span] = STATE(539), - [sym_raw_inline] = STATE(539), - [sym_math] = STATE(539), - [sym_verbatim] = STATE(539), - [sym__todo_highlights] = STATE(539), - [sym_todo] = STATE(539), - [sym_note] = STATE(539), - [sym__symbol_fallback] = STATE(539), - [aux_sym__text] = STATE(520), - [aux_sym__inline_repeat1] = STATE(198), - [anon_sym_LBRACK] = ACTIONS(734), - [anon_sym_PIPE] = ACTIONS(736), - [anon_sym_LBRACE] = ACTIONS(740), - [sym__whitespace1] = ACTIONS(742), - [anon_sym_BSLASH] = ACTIONS(744), - [sym_quotation_marks] = ACTIONS(736), - [sym_ellipsis] = ACTIONS(736), - [sym_em_dash] = ACTIONS(736), - [sym_en_dash] = ACTIONS(740), - [sym_backslash_escape] = ACTIONS(740), - [anon_sym_LT] = ACTIONS(746), - [anon_sym_LBRACE_] = ACTIONS(748), - [anon_sym__] = ACTIONS(750), - [anon_sym_LBRACE_STAR] = ACTIONS(752), - [anon_sym_STAR] = ACTIONS(754), - [anon_sym_LBRACE_EQ] = ACTIONS(756), - [anon_sym_LBRACE_PLUS] = ACTIONS(758), - [anon_sym_LBRACE_DASH] = ACTIONS(760), - [sym_symbol] = ACTIONS(736), - [anon_sym_LBRACE_CARET] = ACTIONS(762), - [anon_sym_CARET] = ACTIONS(762), - [anon_sym_LBRACE_TILDE] = ACTIONS(764), - [anon_sym_TILDE] = ACTIONS(764), - [anon_sym_LBRACK_CARET] = ACTIONS(766), - [anon_sym_BANG_LBRACK] = ACTIONS(768), - [anon_sym_DOLLAR] = ACTIONS(770), - [anon_sym_TODO] = ACTIONS(772), - [anon_sym_WIP] = ACTIONS(772), - [anon_sym_NOTE] = ACTIONS(774), - [anon_sym_INFO] = ACTIONS(774), - [anon_sym_XXX] = ACTIONS(774), - [sym_fixme] = ACTIONS(736), - [aux_sym__text_token1] = ACTIONS(776), - [sym__newline_inline] = ACTIONS(778), - [sym__verbatim_begin] = ACTIONS(780), - }, - [141] = { - [sym__heading5_content] = STATE(2055), - [sym__inline] = STATE(1843), - [sym__inline_element_with_whitespace] = STATE(198), - [sym__inline_element_with_newline] = STATE(198), - [sym__inline_core_element] = STATE(198), - [sym__inline_line] = STATE(1681), - [sym__hard_line_break] = STATE(539), - [sym_hard_line_break] = STATE(512), - [sym__smart_punctuation] = STATE(539), - [sym_autolink] = STATE(539), - [sym_emphasis] = STATE(539), - [sym_emphasis_begin] = STATE(299), - [sym_strong] = STATE(539), - [sym_strong_begin] = STATE(298), - [sym_highlighted] = STATE(539), - [sym_insert] = STATE(539), - [sym_delete] = STATE(539), - [sym_superscript] = STATE(539), - [sym_subscript] = STATE(539), - [sym_footnote_reference] = STATE(539), - [sym__image] = STATE(539), - [sym_full_reference_image] = STATE(539), - [sym_collapsed_reference_image] = STATE(539), - [sym_inline_image] = STATE(539), - [sym__image_description] = STATE(1414), - [sym__link] = STATE(539), - [sym_full_reference_link] = STATE(539), - [sym_collapsed_reference_link] = STATE(539), - [sym_inline_link] = STATE(539), - [sym_link_text] = STATE(1411), - [sym__comment_with_spaces] = STATE(539), - [sym_span] = STATE(539), - [sym_raw_inline] = STATE(539), - [sym_math] = STATE(539), - [sym_verbatim] = STATE(539), - [sym__todo_highlights] = STATE(539), - [sym_todo] = STATE(539), - [sym_note] = STATE(539), - [sym__symbol_fallback] = STATE(539), - [aux_sym__text] = STATE(520), - [aux_sym__inline_repeat1] = STATE(198), - [anon_sym_LBRACK] = ACTIONS(734), - [anon_sym_PIPE] = ACTIONS(736), - [anon_sym_LBRACE] = ACTIONS(740), - [sym__whitespace1] = ACTIONS(742), - [anon_sym_BSLASH] = ACTIONS(744), - [sym_quotation_marks] = ACTIONS(736), - [sym_ellipsis] = ACTIONS(736), - [sym_em_dash] = ACTIONS(736), - [sym_en_dash] = ACTIONS(740), - [sym_backslash_escape] = ACTIONS(740), - [anon_sym_LT] = ACTIONS(746), - [anon_sym_LBRACE_] = ACTIONS(748), - [anon_sym__] = ACTIONS(750), - [anon_sym_LBRACE_STAR] = ACTIONS(752), - [anon_sym_STAR] = ACTIONS(754), - [anon_sym_LBRACE_EQ] = ACTIONS(756), - [anon_sym_LBRACE_PLUS] = ACTIONS(758), - [anon_sym_LBRACE_DASH] = ACTIONS(760), - [sym_symbol] = ACTIONS(736), - [anon_sym_LBRACE_CARET] = ACTIONS(762), - [anon_sym_CARET] = ACTIONS(762), - [anon_sym_LBRACE_TILDE] = ACTIONS(764), - [anon_sym_TILDE] = ACTIONS(764), - [anon_sym_LBRACK_CARET] = ACTIONS(766), - [anon_sym_BANG_LBRACK] = ACTIONS(768), - [anon_sym_DOLLAR] = ACTIONS(770), - [anon_sym_TODO] = ACTIONS(772), - [anon_sym_WIP] = ACTIONS(772), - [anon_sym_NOTE] = ACTIONS(774), - [anon_sym_INFO] = ACTIONS(774), - [anon_sym_XXX] = ACTIONS(774), - [sym_fixme] = ACTIONS(736), - [aux_sym__text_token1] = ACTIONS(776), - [sym__newline_inline] = ACTIONS(778), - [sym__verbatim_begin] = ACTIONS(780), - }, - [142] = { - [sym__heading2_content] = STATE(2058), - [sym__inline] = STATE(1928), - [sym__inline_element_with_whitespace] = STATE(198), - [sym__inline_element_with_newline] = STATE(198), - [sym__inline_core_element] = STATE(198), - [sym__inline_line] = STATE(1683), - [sym__hard_line_break] = STATE(539), - [sym_hard_line_break] = STATE(512), - [sym__smart_punctuation] = STATE(539), - [sym_autolink] = STATE(539), - [sym_emphasis] = STATE(539), - [sym_emphasis_begin] = STATE(299), - [sym_strong] = STATE(539), - [sym_strong_begin] = STATE(298), - [sym_highlighted] = STATE(539), - [sym_insert] = STATE(539), - [sym_delete] = STATE(539), - [sym_superscript] = STATE(539), - [sym_subscript] = STATE(539), - [sym_footnote_reference] = STATE(539), - [sym__image] = STATE(539), - [sym_full_reference_image] = STATE(539), - [sym_collapsed_reference_image] = STATE(539), - [sym_inline_image] = STATE(539), - [sym__image_description] = STATE(1414), - [sym__link] = STATE(539), - [sym_full_reference_link] = STATE(539), - [sym_collapsed_reference_link] = STATE(539), - [sym_inline_link] = STATE(539), - [sym_link_text] = STATE(1411), - [sym__comment_with_spaces] = STATE(539), - [sym_span] = STATE(539), - [sym_raw_inline] = STATE(539), - [sym_math] = STATE(539), - [sym_verbatim] = STATE(539), - [sym__todo_highlights] = STATE(539), - [sym_todo] = STATE(539), - [sym_note] = STATE(539), - [sym__symbol_fallback] = STATE(539), - [aux_sym__text] = STATE(520), - [aux_sym__inline_repeat1] = STATE(198), - [anon_sym_LBRACK] = ACTIONS(734), - [anon_sym_PIPE] = ACTIONS(736), - [anon_sym_LBRACE] = ACTIONS(740), - [sym__whitespace1] = ACTIONS(742), - [anon_sym_BSLASH] = ACTIONS(744), - [sym_quotation_marks] = ACTIONS(736), - [sym_ellipsis] = ACTIONS(736), - [sym_em_dash] = ACTIONS(736), - [sym_en_dash] = ACTIONS(740), - [sym_backslash_escape] = ACTIONS(740), - [anon_sym_LT] = ACTIONS(746), - [anon_sym_LBRACE_] = ACTIONS(748), - [anon_sym__] = ACTIONS(750), - [anon_sym_LBRACE_STAR] = ACTIONS(752), - [anon_sym_STAR] = ACTIONS(754), - [anon_sym_LBRACE_EQ] = ACTIONS(756), - [anon_sym_LBRACE_PLUS] = ACTIONS(758), - [anon_sym_LBRACE_DASH] = ACTIONS(760), - [sym_symbol] = ACTIONS(736), - [anon_sym_LBRACE_CARET] = ACTIONS(762), - [anon_sym_CARET] = ACTIONS(762), - [anon_sym_LBRACE_TILDE] = ACTIONS(764), - [anon_sym_TILDE] = ACTIONS(764), - [anon_sym_LBRACK_CARET] = ACTIONS(766), - [anon_sym_BANG_LBRACK] = ACTIONS(768), - [anon_sym_DOLLAR] = ACTIONS(770), - [anon_sym_TODO] = ACTIONS(772), - [anon_sym_WIP] = ACTIONS(772), - [anon_sym_NOTE] = ACTIONS(774), - [anon_sym_INFO] = ACTIONS(774), - [anon_sym_XXX] = ACTIONS(774), - [sym_fixme] = ACTIONS(736), - [aux_sym__text_token1] = ACTIONS(776), - [sym__newline_inline] = ACTIONS(778), - [sym__verbatim_begin] = ACTIONS(780), - }, - [143] = { - [sym__heading1_content] = STATE(2062), - [sym__inline] = STATE(1794), - [sym__inline_element_with_whitespace] = STATE(198), - [sym__inline_element_with_newline] = STATE(198), - [sym__inline_core_element] = STATE(198), - [sym__inline_line] = STATE(1692), - [sym__hard_line_break] = STATE(539), - [sym_hard_line_break] = STATE(512), - [sym__smart_punctuation] = STATE(539), - [sym_autolink] = STATE(539), - [sym_emphasis] = STATE(539), - [sym_emphasis_begin] = STATE(299), - [sym_strong] = STATE(539), - [sym_strong_begin] = STATE(298), - [sym_highlighted] = STATE(539), - [sym_insert] = STATE(539), - [sym_delete] = STATE(539), - [sym_superscript] = STATE(539), - [sym_subscript] = STATE(539), - [sym_footnote_reference] = STATE(539), - [sym__image] = STATE(539), - [sym_full_reference_image] = STATE(539), - [sym_collapsed_reference_image] = STATE(539), - [sym_inline_image] = STATE(539), - [sym__image_description] = STATE(1414), - [sym__link] = STATE(539), - [sym_full_reference_link] = STATE(539), - [sym_collapsed_reference_link] = STATE(539), - [sym_inline_link] = STATE(539), - [sym_link_text] = STATE(1411), - [sym__comment_with_spaces] = STATE(539), - [sym_span] = STATE(539), - [sym_raw_inline] = STATE(539), - [sym_math] = STATE(539), - [sym_verbatim] = STATE(539), - [sym__todo_highlights] = STATE(539), - [sym_todo] = STATE(539), - [sym_note] = STATE(539), - [sym__symbol_fallback] = STATE(539), - [aux_sym__text] = STATE(520), - [aux_sym__inline_repeat1] = STATE(198), - [anon_sym_LBRACK] = ACTIONS(734), - [anon_sym_PIPE] = ACTIONS(736), - [anon_sym_LBRACE] = ACTIONS(740), - [sym__whitespace1] = ACTIONS(742), - [anon_sym_BSLASH] = ACTIONS(744), - [sym_quotation_marks] = ACTIONS(736), - [sym_ellipsis] = ACTIONS(736), - [sym_em_dash] = ACTIONS(736), - [sym_en_dash] = ACTIONS(740), - [sym_backslash_escape] = ACTIONS(740), - [anon_sym_LT] = ACTIONS(746), - [anon_sym_LBRACE_] = ACTIONS(748), - [anon_sym__] = ACTIONS(750), - [anon_sym_LBRACE_STAR] = ACTIONS(752), - [anon_sym_STAR] = ACTIONS(754), - [anon_sym_LBRACE_EQ] = ACTIONS(756), - [anon_sym_LBRACE_PLUS] = ACTIONS(758), - [anon_sym_LBRACE_DASH] = ACTIONS(760), - [sym_symbol] = ACTIONS(736), - [anon_sym_LBRACE_CARET] = ACTIONS(762), - [anon_sym_CARET] = ACTIONS(762), - [anon_sym_LBRACE_TILDE] = ACTIONS(764), - [anon_sym_TILDE] = ACTIONS(764), - [anon_sym_LBRACK_CARET] = ACTIONS(766), - [anon_sym_BANG_LBRACK] = ACTIONS(768), - [anon_sym_DOLLAR] = ACTIONS(770), - [anon_sym_TODO] = ACTIONS(772), - [anon_sym_WIP] = ACTIONS(772), - [anon_sym_NOTE] = ACTIONS(774), - [anon_sym_INFO] = ACTIONS(774), - [anon_sym_XXX] = ACTIONS(774), - [sym_fixme] = ACTIONS(736), - [aux_sym__text_token1] = ACTIONS(776), - [sym__newline_inline] = ACTIONS(778), - [sym__verbatim_begin] = ACTIONS(780), - }, - [144] = { - [sym__inline] = STATE(1958), - [sym__inline_element_with_whitespace] = STATE(217), - [sym__inline_element_with_newline] = STATE(217), - [sym__inline_core_element] = STATE(217), - [sym__hard_line_break] = STATE(667), - [sym_hard_line_break] = STATE(529), - [sym__smart_punctuation] = STATE(667), - [sym_autolink] = STATE(667), - [sym_emphasis] = STATE(667), - [sym_emphasis_begin] = STATE(290), - [sym_strong] = STATE(667), - [sym_strong_begin] = STATE(273), - [sym_highlighted] = STATE(667), - [sym_insert] = STATE(667), - [sym_delete] = STATE(667), - [sym_superscript] = STATE(667), - [sym_subscript] = STATE(667), - [sym_footnote_reference] = STATE(667), - [sym__image] = STATE(667), - [sym_full_reference_image] = STATE(667), - [sym_collapsed_reference_image] = STATE(667), - [sym_inline_image] = STATE(667), - [sym__image_description] = STATE(1445), - [sym__link] = STATE(667), - [sym_full_reference_link] = STATE(667), - [sym_collapsed_reference_link] = STATE(667), - [sym_inline_link] = STATE(667), - [sym_link_text] = STATE(1443), - [sym__comment_with_spaces] = STATE(667), - [sym_span] = STATE(667), - [sym_raw_inline] = STATE(667), - [sym_math] = STATE(667), - [sym_verbatim] = STATE(667), - [sym__todo_highlights] = STATE(667), - [sym_todo] = STATE(667), - [sym_note] = STATE(667), - [sym__symbol_fallback] = STATE(667), - [aux_sym__text] = STATE(554), - [aux_sym__inline_repeat1] = STATE(217), - [anon_sym_LBRACK] = ACTIONS(1257), - [anon_sym_PIPE] = ACTIONS(1260), - [anon_sym_LBRACE] = ACTIONS(1263), - [sym__whitespace1] = ACTIONS(1266), - [anon_sym_BSLASH] = ACTIONS(1269), - [sym_quotation_marks] = ACTIONS(1260), - [sym_ellipsis] = ACTIONS(1260), - [sym_em_dash] = ACTIONS(1260), - [sym_en_dash] = ACTIONS(1263), - [sym_backslash_escape] = ACTIONS(1263), - [anon_sym_LT] = ACTIONS(1272), - [anon_sym_LBRACE_] = ACTIONS(1275), - [anon_sym__] = ACTIONS(1278), - [anon_sym_LBRACE_STAR] = ACTIONS(1281), - [anon_sym_STAR] = ACTIONS(1284), - [anon_sym_LBRACE_EQ] = ACTIONS(1287), - [anon_sym_LBRACE_PLUS] = ACTIONS(1290), - [anon_sym_LBRACE_DASH] = ACTIONS(1293), - [sym_symbol] = ACTIONS(1260), - [anon_sym_LBRACE_CARET] = ACTIONS(1296), - [anon_sym_CARET] = ACTIONS(1395), - [anon_sym_CARET_RBRACE] = ACTIONS(861), - [anon_sym_LBRACE_TILDE] = ACTIONS(1299), - [anon_sym_TILDE] = ACTIONS(1299), - [anon_sym_LBRACK_CARET] = ACTIONS(1302), - [anon_sym_BANG_LBRACK] = ACTIONS(1305), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(1308), - [anon_sym_TODO] = ACTIONS(1311), - [anon_sym_WIP] = ACTIONS(1311), - [anon_sym_NOTE] = ACTIONS(1314), - [anon_sym_INFO] = ACTIONS(1314), - [anon_sym_XXX] = ACTIONS(1314), - [sym_fixme] = ACTIONS(1260), - [aux_sym__text_token1] = ACTIONS(1317), - [sym__newline_inline] = ACTIONS(1320), - [sym__verbatim_begin] = ACTIONS(1323), - }, - [145] = { - [sym__inline] = STATE(1829), - [sym__inline_element_with_whitespace] = STATE(241), - [sym__inline_element_with_newline] = STATE(241), - [sym__inline_core_element] = STATE(241), - [sym__hard_line_break] = STATE(696), - [sym_hard_line_break] = STATE(530), - [sym__smart_punctuation] = STATE(696), - [sym_autolink] = STATE(696), - [sym_emphasis] = STATE(696), - [sym_emphasis_begin] = STATE(274), - [sym_strong] = STATE(696), - [sym_strong_begin] = STATE(275), - [sym_highlighted] = STATE(696), - [sym_insert] = STATE(696), - [sym_delete] = STATE(696), - [sym_superscript] = STATE(696), - [sym_subscript] = STATE(696), - [sym_footnote_reference] = STATE(696), - [sym__image] = STATE(696), - [sym_full_reference_image] = STATE(696), - [sym_collapsed_reference_image] = STATE(696), - [sym_inline_image] = STATE(696), - [sym__image_description] = STATE(1427), - [sym__link] = STATE(696), - [sym_full_reference_link] = STATE(696), - [sym_collapsed_reference_link] = STATE(696), - [sym_inline_link] = STATE(696), - [sym_link_text] = STATE(1426), - [sym__comment_with_spaces] = STATE(696), - [sym_span] = STATE(696), - [sym_raw_inline] = STATE(696), - [sym_math] = STATE(696), - [sym_verbatim] = STATE(696), - [sym__todo_highlights] = STATE(696), - [sym_todo] = STATE(696), - [sym_note] = STATE(696), - [sym__symbol_fallback] = STATE(696), - [aux_sym__text] = STATE(609), - [aux_sym__inline_repeat1] = STATE(241), - [anon_sym_LBRACK] = ACTIONS(1036), - [anon_sym_RBRACK] = ACTIONS(861), - [anon_sym_PIPE] = ACTIONS(1039), - [anon_sym_LBRACE] = ACTIONS(1042), - [sym__whitespace1] = ACTIONS(1045), - [anon_sym_BSLASH] = ACTIONS(1048), - [sym_quotation_marks] = ACTIONS(1039), - [sym_ellipsis] = ACTIONS(1039), - [sym_em_dash] = ACTIONS(1039), - [sym_en_dash] = ACTIONS(1042), - [sym_backslash_escape] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1051), - [anon_sym_LBRACE_] = ACTIONS(1054), - [anon_sym__] = ACTIONS(1057), - [anon_sym_LBRACE_STAR] = ACTIONS(1060), - [anon_sym_STAR] = ACTIONS(1063), - [anon_sym_LBRACE_EQ] = ACTIONS(1066), - [anon_sym_LBRACE_PLUS] = ACTIONS(1069), - [anon_sym_LBRACE_DASH] = ACTIONS(1072), - [sym_symbol] = ACTIONS(1039), - [anon_sym_LBRACE_CARET] = ACTIONS(1075), - [anon_sym_CARET] = ACTIONS(1075), - [anon_sym_LBRACE_TILDE] = ACTIONS(1078), - [anon_sym_TILDE] = ACTIONS(1078), - [anon_sym_LBRACK_CARET] = ACTIONS(1081), - [anon_sym_BANG_LBRACK] = ACTIONS(1084), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(1087), - [anon_sym_TODO] = ACTIONS(1090), - [anon_sym_WIP] = ACTIONS(1090), - [anon_sym_NOTE] = ACTIONS(1093), - [anon_sym_INFO] = ACTIONS(1093), - [anon_sym_XXX] = ACTIONS(1093), - [sym_fixme] = ACTIONS(1039), - [aux_sym__text_token1] = ACTIONS(1096), - [sym__newline_inline] = ACTIONS(1099), - [sym__verbatim_begin] = ACTIONS(1102), - }, - [146] = { - [sym__inline] = STATE(1957), - [sym__inline_element_with_whitespace] = STATE(239), - [sym__inline_element_with_newline] = STATE(239), - [sym__inline_core_element] = STATE(239), - [sym__hard_line_break] = STATE(624), - [sym_hard_line_break] = STATE(527), - [sym__smart_punctuation] = STATE(624), - [sym_autolink] = STATE(624), - [sym_emphasis] = STATE(624), - [sym_emphasis_begin] = STATE(281), - [sym_strong] = STATE(624), - [sym_strong_begin] = STATE(276), - [sym_highlighted] = STATE(624), - [sym_insert] = STATE(624), - [sym_delete] = STATE(624), - [sym_superscript] = STATE(624), - [sym_subscript] = STATE(624), - [sym_footnote_reference] = STATE(624), - [sym__image] = STATE(624), - [sym_full_reference_image] = STATE(624), - [sym_collapsed_reference_image] = STATE(624), - [sym_inline_image] = STATE(624), - [sym__image_description] = STATE(1450), - [sym__link] = STATE(624), - [sym_full_reference_link] = STATE(624), - [sym_collapsed_reference_link] = STATE(624), - [sym_inline_link] = STATE(624), - [sym_link_text] = STATE(1451), - [sym__comment_with_spaces] = STATE(624), - [sym_span] = STATE(624), - [sym_raw_inline] = STATE(624), - [sym_math] = STATE(624), - [sym_verbatim] = STATE(624), - [sym__todo_highlights] = STATE(624), - [sym_todo] = STATE(624), - [sym_note] = STATE(624), - [sym__symbol_fallback] = STATE(624), - [aux_sym__text] = STATE(595), - [aux_sym__inline_repeat1] = STATE(239), - [anon_sym_LBRACK] = ACTIONS(948), - [anon_sym_PIPE] = ACTIONS(951), - [anon_sym_LBRACE] = ACTIONS(954), - [sym__whitespace1] = ACTIONS(957), - [anon_sym_BSLASH] = ACTIONS(960), - [sym_quotation_marks] = ACTIONS(951), - [sym_ellipsis] = ACTIONS(951), - [sym_em_dash] = ACTIONS(951), - [sym_en_dash] = ACTIONS(954), - [sym_backslash_escape] = ACTIONS(954), - [anon_sym_LT] = ACTIONS(963), - [anon_sym_LBRACE_] = ACTIONS(966), - [anon_sym__] = ACTIONS(969), - [anon_sym_LBRACE_STAR] = ACTIONS(972), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_LBRACE_EQ] = ACTIONS(978), - [anon_sym_LBRACE_PLUS] = ACTIONS(981), - [anon_sym_LBRACE_DASH] = ACTIONS(984), - [sym_symbol] = ACTIONS(951), - [anon_sym_LBRACE_CARET] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(1398), - [anon_sym_CARET_RBRACE] = ACTIONS(861), - [anon_sym_LBRACE_TILDE] = ACTIONS(990), - [anon_sym_TILDE] = ACTIONS(990), - [anon_sym_LBRACK_CARET] = ACTIONS(993), - [anon_sym_BANG_LBRACK] = ACTIONS(996), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(999), - [anon_sym_TODO] = ACTIONS(1002), - [anon_sym_WIP] = ACTIONS(1002), - [anon_sym_NOTE] = ACTIONS(1005), - [anon_sym_INFO] = ACTIONS(1005), - [anon_sym_XXX] = ACTIONS(1005), - [sym_fixme] = ACTIONS(951), - [aux_sym__text_token1] = ACTIONS(1008), - [sym__newline_inline] = ACTIONS(1011), - [sym__verbatim_begin] = ACTIONS(1014), - }, - [147] = { - [sym__inline] = STATE(2019), - [sym__inline_element_with_whitespace] = STATE(217), - [sym__inline_element_with_newline] = STATE(217), - [sym__inline_core_element] = STATE(217), - [sym__hard_line_break] = STATE(667), - [sym_hard_line_break] = STATE(529), - [sym__smart_punctuation] = STATE(667), - [sym_autolink] = STATE(667), - [sym_emphasis] = STATE(667), - [sym_emphasis_begin] = STATE(290), - [sym_strong] = STATE(667), - [sym_strong_begin] = STATE(273), - [sym_highlighted] = STATE(667), - [sym_insert] = STATE(667), - [sym_delete] = STATE(667), - [sym_superscript] = STATE(667), - [sym_subscript] = STATE(667), - [sym_footnote_reference] = STATE(667), - [sym__image] = STATE(667), - [sym_full_reference_image] = STATE(667), - [sym_collapsed_reference_image] = STATE(667), - [sym_inline_image] = STATE(667), - [sym__image_description] = STATE(1445), - [sym__link] = STATE(667), - [sym_full_reference_link] = STATE(667), - [sym_collapsed_reference_link] = STATE(667), - [sym_inline_link] = STATE(667), - [sym_link_text] = STATE(1443), - [sym__comment_with_spaces] = STATE(667), - [sym_span] = STATE(667), - [sym_raw_inline] = STATE(667), - [sym_math] = STATE(667), - [sym_verbatim] = STATE(667), - [sym__todo_highlights] = STATE(667), - [sym_todo] = STATE(667), - [sym_note] = STATE(667), - [sym__symbol_fallback] = STATE(667), - [aux_sym__text] = STATE(554), - [aux_sym__inline_repeat1] = STATE(217), - [anon_sym_LBRACK] = ACTIONS(1257), - [anon_sym_PIPE] = ACTIONS(1260), - [anon_sym_LBRACE] = ACTIONS(1263), - [sym__whitespace1] = ACTIONS(1332), - [anon_sym_BSLASH] = ACTIONS(1269), - [sym_quotation_marks] = ACTIONS(1260), - [sym_ellipsis] = ACTIONS(1260), - [sym_em_dash] = ACTIONS(1260), - [sym_en_dash] = ACTIONS(1263), - [sym_backslash_escape] = ACTIONS(1263), - [anon_sym_LT] = ACTIONS(1272), - [anon_sym_LBRACE_] = ACTIONS(1275), - [anon_sym__] = ACTIONS(1278), - [anon_sym_LBRACE_STAR] = ACTIONS(1281), - [anon_sym_STAR] = ACTIONS(1401), - [aux_sym_strong_end_token1] = ACTIONS(861), - [anon_sym_LBRACE_EQ] = ACTIONS(1287), - [anon_sym_LBRACE_PLUS] = ACTIONS(1290), - [anon_sym_LBRACE_DASH] = ACTIONS(1293), - [sym_symbol] = ACTIONS(1260), - [anon_sym_LBRACE_CARET] = ACTIONS(1296), - [anon_sym_CARET] = ACTIONS(1296), - [anon_sym_LBRACE_TILDE] = ACTIONS(1299), - [anon_sym_TILDE] = ACTIONS(1299), - [anon_sym_LBRACK_CARET] = ACTIONS(1302), - [anon_sym_BANG_LBRACK] = ACTIONS(1305), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(1308), - [anon_sym_TODO] = ACTIONS(1311), - [anon_sym_WIP] = ACTIONS(1311), - [anon_sym_NOTE] = ACTIONS(1314), - [anon_sym_INFO] = ACTIONS(1314), - [anon_sym_XXX] = ACTIONS(1314), - [sym_fixme] = ACTIONS(1260), - [aux_sym__text_token1] = ACTIONS(1317), - [sym__newline_inline] = ACTIONS(1320), - [sym__verbatim_begin] = ACTIONS(1323), - }, - [148] = { - [sym__inline] = STATE(2316), - [sym__inline_element_with_whitespace] = STATE(242), - [sym__inline_element_with_newline] = STATE(242), - [sym__inline_core_element] = STATE(242), - [sym__hard_line_break] = STATE(627), - [sym_hard_line_break] = STATE(523), - [sym__smart_punctuation] = STATE(627), - [sym_autolink] = STATE(627), - [sym_emphasis] = STATE(627), - [sym_emphasis_begin] = STATE(296), - [sym_strong] = STATE(627), - [sym_strong_begin] = STATE(295), - [sym_highlighted] = STATE(627), - [sym_insert] = STATE(627), - [sym_delete] = STATE(627), - [sym_superscript] = STATE(627), - [sym_subscript] = STATE(627), - [sym_footnote_reference] = STATE(627), - [sym__image] = STATE(627), - [sym_full_reference_image] = STATE(627), - [sym_collapsed_reference_image] = STATE(627), - [sym_inline_image] = STATE(627), - [sym__image_description] = STATE(1448), - [sym__link] = STATE(627), - [sym_full_reference_link] = STATE(627), - [sym_collapsed_reference_link] = STATE(627), - [sym_inline_link] = STATE(627), - [sym_link_text] = STATE(1453), - [sym__comment_with_spaces] = STATE(627), - [sym_span] = STATE(627), - [sym_raw_inline] = STATE(627), - [sym_math] = STATE(627), - [sym_verbatim] = STATE(627), - [sym__todo_highlights] = STATE(627), - [sym_todo] = STATE(627), - [sym_note] = STATE(627), - [sym__symbol_fallback] = STATE(627), - [aux_sym__text] = STATE(560), - [aux_sym__inline_repeat1] = STATE(242), - [anon_sym_LBRACK] = ACTIONS(853), - [anon_sym_PIPE] = ACTIONS(858), - [anon_sym_LBRACE] = ACTIONS(863), - [sym__whitespace1] = ACTIONS(866), - [anon_sym_BSLASH] = ACTIONS(869), - [sym_quotation_marks] = ACTIONS(858), - [sym_ellipsis] = ACTIONS(858), - [sym_em_dash] = ACTIONS(858), - [sym_en_dash] = ACTIONS(863), - [sym_backslash_escape] = ACTIONS(863), - [anon_sym_LT] = ACTIONS(872), - [anon_sym_LBRACE_] = ACTIONS(875), - [anon_sym__] = ACTIONS(878), - [anon_sym_LBRACE_STAR] = ACTIONS(881), - [anon_sym_STAR] = ACTIONS(884), - [anon_sym_LBRACE_EQ] = ACTIONS(887), - [anon_sym_LBRACE_PLUS] = ACTIONS(890), - [anon_sym_LBRACE_DASH] = ACTIONS(893), - [sym_symbol] = ACTIONS(858), - [anon_sym_LBRACE_CARET] = ACTIONS(896), - [anon_sym_CARET] = ACTIONS(896), - [anon_sym_LBRACE_TILDE] = ACTIONS(899), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_LBRACK_CARET] = ACTIONS(902), - [anon_sym_BANG_LBRACK] = ACTIONS(905), - [anon_sym_RBRACK2] = ACTIONS(861), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(910), - [anon_sym_TODO] = ACTIONS(913), - [anon_sym_WIP] = ACTIONS(913), - [anon_sym_NOTE] = ACTIONS(916), - [anon_sym_INFO] = ACTIONS(916), - [anon_sym_XXX] = ACTIONS(916), - [sym_fixme] = ACTIONS(858), - [aux_sym__text_token1] = ACTIONS(919), - [sym__newline_inline] = ACTIONS(922), - [sym__verbatim_begin] = ACTIONS(925), - }, - [149] = { - [sym__inline] = STATE(2142), - [sym__inline_element_with_whitespace] = STATE(242), - [sym__inline_element_with_newline] = STATE(242), - [sym__inline_core_element] = STATE(242), - [sym__hard_line_break] = STATE(627), - [sym_hard_line_break] = STATE(523), - [sym__smart_punctuation] = STATE(627), - [sym_autolink] = STATE(627), - [sym_emphasis] = STATE(627), - [sym_emphasis_begin] = STATE(296), - [sym_strong] = STATE(627), - [sym_strong_begin] = STATE(295), - [sym_highlighted] = STATE(627), - [sym_insert] = STATE(627), - [sym_delete] = STATE(627), - [sym_superscript] = STATE(627), - [sym_subscript] = STATE(627), - [sym_footnote_reference] = STATE(627), - [sym__image] = STATE(627), - [sym_full_reference_image] = STATE(627), - [sym_collapsed_reference_image] = STATE(627), - [sym_inline_image] = STATE(627), - [sym__image_description] = STATE(1448), - [sym__link] = STATE(627), - [sym_full_reference_link] = STATE(627), - [sym_collapsed_reference_link] = STATE(627), - [sym_inline_link] = STATE(627), - [sym_link_text] = STATE(1453), - [sym__comment_with_spaces] = STATE(627), - [sym_span] = STATE(627), - [sym_raw_inline] = STATE(627), - [sym_math] = STATE(627), - [sym_verbatim] = STATE(627), - [sym__todo_highlights] = STATE(627), - [sym_todo] = STATE(627), - [sym_note] = STATE(627), - [sym__symbol_fallback] = STATE(627), - [aux_sym__text] = STATE(560), - [aux_sym__inline_repeat1] = STATE(242), - [anon_sym_LBRACK] = ACTIONS(853), - [anon_sym_PIPE] = ACTIONS(858), - [anon_sym_LBRACE] = ACTIONS(863), - [sym__whitespace1] = ACTIONS(866), - [anon_sym_BSLASH] = ACTIONS(869), - [sym_quotation_marks] = ACTIONS(858), - [sym_ellipsis] = ACTIONS(858), - [sym_em_dash] = ACTIONS(858), - [sym_en_dash] = ACTIONS(863), - [sym_backslash_escape] = ACTIONS(863), - [anon_sym_LT] = ACTIONS(872), - [anon_sym_LBRACE_] = ACTIONS(875), - [anon_sym__] = ACTIONS(878), - [anon_sym_LBRACE_STAR] = ACTIONS(881), - [anon_sym_STAR] = ACTIONS(884), - [anon_sym_LBRACE_EQ] = ACTIONS(887), - [anon_sym_LBRACE_PLUS] = ACTIONS(890), - [anon_sym_LBRACE_DASH] = ACTIONS(893), - [sym_symbol] = ACTIONS(858), - [anon_sym_LBRACE_CARET] = ACTIONS(896), - [anon_sym_CARET] = ACTIONS(896), - [anon_sym_LBRACE_TILDE] = ACTIONS(899), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_LBRACK_CARET] = ACTIONS(902), - [anon_sym_BANG_LBRACK] = ACTIONS(905), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(910), - [anon_sym_TODO] = ACTIONS(913), - [anon_sym_WIP] = ACTIONS(913), - [anon_sym_NOTE] = ACTIONS(916), - [anon_sym_INFO] = ACTIONS(916), - [anon_sym_XXX] = ACTIONS(916), - [sym_fixme] = ACTIONS(858), - [aux_sym__text_token1] = ACTIONS(919), - [sym__eof_or_newline] = ACTIONS(861), - [sym__newline_inline] = ACTIONS(922), - [sym__verbatim_begin] = ACTIONS(925), - }, - [150] = { - [sym__inline] = STATE(2307), - [sym__inline_element_with_whitespace] = STATE(242), - [sym__inline_element_with_newline] = STATE(242), - [sym__inline_core_element] = STATE(242), - [sym__hard_line_break] = STATE(627), - [sym_hard_line_break] = STATE(523), - [sym__smart_punctuation] = STATE(627), - [sym_autolink] = STATE(627), - [sym_emphasis] = STATE(627), - [sym_emphasis_begin] = STATE(296), - [sym_strong] = STATE(627), - [sym_strong_begin] = STATE(295), - [sym_highlighted] = STATE(627), - [sym_insert] = STATE(627), - [sym_delete] = STATE(627), - [sym_superscript] = STATE(627), - [sym_subscript] = STATE(627), - [sym_footnote_reference] = STATE(627), - [sym__image] = STATE(627), - [sym_full_reference_image] = STATE(627), - [sym_collapsed_reference_image] = STATE(627), - [sym_inline_image] = STATE(627), - [sym__image_description] = STATE(1448), - [sym__link] = STATE(627), - [sym_full_reference_link] = STATE(627), - [sym_collapsed_reference_link] = STATE(627), - [sym_inline_link] = STATE(627), - [sym_link_text] = STATE(1453), - [sym__comment_with_spaces] = STATE(627), - [sym_span] = STATE(627), - [sym_raw_inline] = STATE(627), - [sym_math] = STATE(627), - [sym_verbatim] = STATE(627), - [sym__todo_highlights] = STATE(627), - [sym_todo] = STATE(627), - [sym_note] = STATE(627), - [sym__symbol_fallback] = STATE(627), - [aux_sym__text] = STATE(560), - [aux_sym__inline_repeat1] = STATE(242), - [anon_sym_LBRACK] = ACTIONS(853), - [anon_sym_PIPE] = ACTIONS(858), - [anon_sym_LBRACE] = ACTIONS(863), - [sym__whitespace1] = ACTIONS(1176), - [anon_sym_BSLASH] = ACTIONS(869), - [sym_quotation_marks] = ACTIONS(858), - [sym_ellipsis] = ACTIONS(858), - [sym_em_dash] = ACTIONS(858), - [sym_en_dash] = ACTIONS(863), - [sym_backslash_escape] = ACTIONS(863), - [anon_sym_LT] = ACTIONS(872), - [anon_sym_LBRACE_] = ACTIONS(875), - [anon_sym__] = ACTIONS(878), - [anon_sym_LBRACE_STAR] = ACTIONS(881), - [anon_sym_STAR] = ACTIONS(1254), - [aux_sym_strong_end_token1] = ACTIONS(861), - [anon_sym_LBRACE_EQ] = ACTIONS(887), - [anon_sym_LBRACE_PLUS] = ACTIONS(890), - [anon_sym_LBRACE_DASH] = ACTIONS(893), - [sym_symbol] = ACTIONS(858), - [anon_sym_LBRACE_CARET] = ACTIONS(896), - [anon_sym_CARET] = ACTIONS(896), - [anon_sym_LBRACE_TILDE] = ACTIONS(899), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_LBRACK_CARET] = ACTIONS(902), - [anon_sym_BANG_LBRACK] = ACTIONS(905), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(910), - [anon_sym_TODO] = ACTIONS(913), - [anon_sym_WIP] = ACTIONS(913), - [anon_sym_NOTE] = ACTIONS(916), - [anon_sym_INFO] = ACTIONS(916), - [anon_sym_XXX] = ACTIONS(916), - [sym_fixme] = ACTIONS(858), - [aux_sym__text_token1] = ACTIONS(919), - [sym__newline_inline] = ACTIONS(922), - [sym__verbatim_begin] = ACTIONS(925), - }, - [151] = { - [sym__heading6_content] = STATE(2197), - [sym__inline] = STATE(1763), - [sym__inline_element_with_whitespace] = STATE(198), - [sym__inline_element_with_newline] = STATE(198), - [sym__inline_core_element] = STATE(198), - [sym__inline_line] = STATE(1680), - [sym__hard_line_break] = STATE(539), - [sym_hard_line_break] = STATE(512), - [sym__smart_punctuation] = STATE(539), - [sym_autolink] = STATE(539), - [sym_emphasis] = STATE(539), - [sym_emphasis_begin] = STATE(299), - [sym_strong] = STATE(539), - [sym_strong_begin] = STATE(298), - [sym_highlighted] = STATE(539), - [sym_insert] = STATE(539), - [sym_delete] = STATE(539), - [sym_superscript] = STATE(539), - [sym_subscript] = STATE(539), - [sym_footnote_reference] = STATE(539), - [sym__image] = STATE(539), - [sym_full_reference_image] = STATE(539), - [sym_collapsed_reference_image] = STATE(539), - [sym_inline_image] = STATE(539), - [sym__image_description] = STATE(1414), - [sym__link] = STATE(539), - [sym_full_reference_link] = STATE(539), - [sym_collapsed_reference_link] = STATE(539), - [sym_inline_link] = STATE(539), - [sym_link_text] = STATE(1411), - [sym__comment_with_spaces] = STATE(539), - [sym_span] = STATE(539), - [sym_raw_inline] = STATE(539), - [sym_math] = STATE(539), - [sym_verbatim] = STATE(539), - [sym__todo_highlights] = STATE(539), - [sym_todo] = STATE(539), - [sym_note] = STATE(539), - [sym__symbol_fallback] = STATE(539), - [aux_sym__text] = STATE(520), - [aux_sym__inline_repeat1] = STATE(198), - [anon_sym_LBRACK] = ACTIONS(734), - [anon_sym_PIPE] = ACTIONS(736), - [anon_sym_LBRACE] = ACTIONS(740), - [sym__whitespace1] = ACTIONS(742), - [anon_sym_BSLASH] = ACTIONS(744), - [sym_quotation_marks] = ACTIONS(736), - [sym_ellipsis] = ACTIONS(736), - [sym_em_dash] = ACTIONS(736), - [sym_en_dash] = ACTIONS(740), - [sym_backslash_escape] = ACTIONS(740), - [anon_sym_LT] = ACTIONS(746), - [anon_sym_LBRACE_] = ACTIONS(748), - [anon_sym__] = ACTIONS(750), - [anon_sym_LBRACE_STAR] = ACTIONS(752), - [anon_sym_STAR] = ACTIONS(754), - [anon_sym_LBRACE_EQ] = ACTIONS(756), - [anon_sym_LBRACE_PLUS] = ACTIONS(758), - [anon_sym_LBRACE_DASH] = ACTIONS(760), - [sym_symbol] = ACTIONS(736), - [anon_sym_LBRACE_CARET] = ACTIONS(762), - [anon_sym_CARET] = ACTIONS(762), - [anon_sym_LBRACE_TILDE] = ACTIONS(764), - [anon_sym_TILDE] = ACTIONS(764), - [anon_sym_LBRACK_CARET] = ACTIONS(766), - [anon_sym_BANG_LBRACK] = ACTIONS(768), - [anon_sym_DOLLAR] = ACTIONS(770), - [anon_sym_TODO] = ACTIONS(772), - [anon_sym_WIP] = ACTIONS(772), - [anon_sym_NOTE] = ACTIONS(774), - [anon_sym_INFO] = ACTIONS(774), - [anon_sym_XXX] = ACTIONS(774), - [sym_fixme] = ACTIONS(736), - [aux_sym__text_token1] = ACTIONS(776), - [sym__newline_inline] = ACTIONS(778), - [sym__verbatim_begin] = ACTIONS(780), - }, - [152] = { - [sym__inline] = STATE(2271), - [sym__inline_element_with_whitespace] = STATE(242), - [sym__inline_element_with_newline] = STATE(242), - [sym__inline_core_element] = STATE(242), - [sym__hard_line_break] = STATE(627), - [sym_hard_line_break] = STATE(523), - [sym__smart_punctuation] = STATE(627), - [sym_autolink] = STATE(627), - [sym_emphasis] = STATE(627), - [sym_emphasis_begin] = STATE(296), - [sym_strong] = STATE(627), - [sym_strong_begin] = STATE(295), - [sym_highlighted] = STATE(627), - [sym_insert] = STATE(627), - [sym_delete] = STATE(627), - [sym_superscript] = STATE(627), - [sym_subscript] = STATE(627), - [sym_footnote_reference] = STATE(627), - [sym__image] = STATE(627), - [sym_full_reference_image] = STATE(627), - [sym_collapsed_reference_image] = STATE(627), - [sym_inline_image] = STATE(627), - [sym__image_description] = STATE(1448), - [sym__link] = STATE(627), - [sym_full_reference_link] = STATE(627), - [sym_collapsed_reference_link] = STATE(627), - [sym_inline_link] = STATE(627), - [sym_link_text] = STATE(1453), - [sym__comment_with_spaces] = STATE(627), - [sym_span] = STATE(627), - [sym_raw_inline] = STATE(627), - [sym_math] = STATE(627), - [sym_verbatim] = STATE(627), - [sym__todo_highlights] = STATE(627), - [sym_todo] = STATE(627), - [sym_note] = STATE(627), - [sym__symbol_fallback] = STATE(627), - [aux_sym__text] = STATE(560), - [aux_sym__inline_repeat1] = STATE(242), - [anon_sym_LBRACK] = ACTIONS(853), - [anon_sym_PIPE] = ACTIONS(858), - [anon_sym_LBRACE] = ACTIONS(863), - [sym__whitespace1] = ACTIONS(866), - [anon_sym_BSLASH] = ACTIONS(869), - [sym_quotation_marks] = ACTIONS(858), - [sym_ellipsis] = ACTIONS(858), - [sym_em_dash] = ACTIONS(858), - [sym_en_dash] = ACTIONS(863), - [sym_backslash_escape] = ACTIONS(863), - [anon_sym_LT] = ACTIONS(872), - [anon_sym_LBRACE_] = ACTIONS(875), - [anon_sym__] = ACTIONS(878), - [anon_sym_LBRACE_STAR] = ACTIONS(881), - [anon_sym_STAR] = ACTIONS(884), - [anon_sym_LBRACE_EQ] = ACTIONS(887), - [anon_sym_LBRACE_PLUS] = ACTIONS(890), - [anon_sym_LBRACE_DASH] = ACTIONS(893), - [anon_sym_DASH_RBRACE] = ACTIONS(861), - [sym_symbol] = ACTIONS(858), - [anon_sym_LBRACE_CARET] = ACTIONS(896), - [anon_sym_CARET] = ACTIONS(896), - [anon_sym_LBRACE_TILDE] = ACTIONS(899), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_LBRACK_CARET] = ACTIONS(902), - [anon_sym_BANG_LBRACK] = ACTIONS(905), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(910), - [anon_sym_TODO] = ACTIONS(913), - [anon_sym_WIP] = ACTIONS(913), - [anon_sym_NOTE] = ACTIONS(916), - [anon_sym_INFO] = ACTIONS(916), - [anon_sym_XXX] = ACTIONS(916), - [sym_fixme] = ACTIONS(858), - [aux_sym__text_token1] = ACTIONS(919), - [sym__newline_inline] = ACTIONS(922), - [sym__verbatim_begin] = ACTIONS(925), - }, - [153] = { - [sym__inline] = STATE(1932), - [sym__inline_element_with_whitespace] = STATE(241), - [sym__inline_element_with_newline] = STATE(241), - [sym__inline_core_element] = STATE(241), - [sym__hard_line_break] = STATE(696), - [sym_hard_line_break] = STATE(530), - [sym__smart_punctuation] = STATE(696), - [sym_autolink] = STATE(696), - [sym_emphasis] = STATE(696), - [sym_emphasis_begin] = STATE(274), - [sym_strong] = STATE(696), - [sym_strong_begin] = STATE(275), - [sym_highlighted] = STATE(696), - [sym_insert] = STATE(696), - [sym_delete] = STATE(696), - [sym_superscript] = STATE(696), - [sym_subscript] = STATE(696), - [sym_footnote_reference] = STATE(696), - [sym__image] = STATE(696), - [sym_full_reference_image] = STATE(696), - [sym_collapsed_reference_image] = STATE(696), - [sym_inline_image] = STATE(696), - [sym__image_description] = STATE(1427), - [sym__link] = STATE(696), - [sym_full_reference_link] = STATE(696), - [sym_collapsed_reference_link] = STATE(696), - [sym_inline_link] = STATE(696), - [sym_link_text] = STATE(1426), - [sym__comment_with_spaces] = STATE(696), - [sym_span] = STATE(696), - [sym_raw_inline] = STATE(696), - [sym_math] = STATE(696), - [sym_verbatim] = STATE(696), - [sym__todo_highlights] = STATE(696), - [sym_todo] = STATE(696), - [sym_note] = STATE(696), - [sym__symbol_fallback] = STATE(696), - [aux_sym__text] = STATE(609), - [aux_sym__inline_repeat1] = STATE(241), - [anon_sym_LBRACK] = ACTIONS(1036), - [anon_sym_PIPE] = ACTIONS(1039), - [anon_sym_LBRACE] = ACTIONS(1042), - [sym__whitespace1] = ACTIONS(1045), - [anon_sym_BSLASH] = ACTIONS(1048), - [sym_quotation_marks] = ACTIONS(1039), - [sym_ellipsis] = ACTIONS(1039), - [sym_em_dash] = ACTIONS(1039), - [sym_en_dash] = ACTIONS(1042), - [sym_backslash_escape] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1051), - [anon_sym_LBRACE_] = ACTIONS(1054), - [anon_sym__] = ACTIONS(1057), - [anon_sym_LBRACE_STAR] = ACTIONS(1060), - [anon_sym_STAR] = ACTIONS(1063), - [anon_sym_LBRACE_EQ] = ACTIONS(1066), - [anon_sym_LBRACE_PLUS] = ACTIONS(1069), - [anon_sym_LBRACE_DASH] = ACTIONS(1072), - [sym_symbol] = ACTIONS(1039), - [anon_sym_LBRACE_CARET] = ACTIONS(1075), - [anon_sym_CARET] = ACTIONS(1075), - [anon_sym_LBRACE_TILDE] = ACTIONS(1078), - [anon_sym_TILDE] = ACTIONS(1078), - [anon_sym_LBRACK_CARET] = ACTIONS(1081), - [anon_sym_BANG_LBRACK] = ACTIONS(1084), - [anon_sym_RBRACK2] = ACTIONS(861), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(1087), - [anon_sym_TODO] = ACTIONS(1090), - [anon_sym_WIP] = ACTIONS(1090), - [anon_sym_NOTE] = ACTIONS(1093), - [anon_sym_INFO] = ACTIONS(1093), - [anon_sym_XXX] = ACTIONS(1093), - [sym_fixme] = ACTIONS(1039), - [aux_sym__text_token1] = ACTIONS(1096), - [sym__newline_inline] = ACTIONS(1099), - [sym__verbatim_begin] = ACTIONS(1102), - }, - [154] = { - [sym__inline] = STATE(2298), - [sym__inline_element_with_whitespace] = STATE(242), - [sym__inline_element_with_newline] = STATE(242), - [sym__inline_core_element] = STATE(242), - [sym__hard_line_break] = STATE(627), - [sym_hard_line_break] = STATE(523), - [sym__smart_punctuation] = STATE(627), - [sym_autolink] = STATE(627), - [sym_emphasis] = STATE(627), - [sym_emphasis_begin] = STATE(296), - [sym_strong] = STATE(627), - [sym_strong_begin] = STATE(295), - [sym_highlighted] = STATE(627), - [sym_insert] = STATE(627), - [sym_delete] = STATE(627), - [sym_superscript] = STATE(627), - [sym_subscript] = STATE(627), - [sym_footnote_reference] = STATE(627), - [sym__image] = STATE(627), - [sym_full_reference_image] = STATE(627), - [sym_collapsed_reference_image] = STATE(627), - [sym_inline_image] = STATE(627), - [sym__image_description] = STATE(1448), - [sym__link] = STATE(627), - [sym_full_reference_link] = STATE(627), - [sym_collapsed_reference_link] = STATE(627), - [sym_inline_link] = STATE(627), - [sym_link_text] = STATE(1453), - [sym__comment_with_spaces] = STATE(627), - [sym_span] = STATE(627), - [sym_raw_inline] = STATE(627), - [sym_math] = STATE(627), - [sym_verbatim] = STATE(627), - [sym__todo_highlights] = STATE(627), - [sym_todo] = STATE(627), - [sym_note] = STATE(627), - [sym__symbol_fallback] = STATE(627), - [aux_sym__text] = STATE(560), - [aux_sym__inline_repeat1] = STATE(242), - [anon_sym_LBRACK] = ACTIONS(853), - [anon_sym_PIPE] = ACTIONS(858), - [anon_sym_LBRACE] = ACTIONS(863), - [sym__whitespace1] = ACTIONS(1176), - [anon_sym_BSLASH] = ACTIONS(869), - [sym_quotation_marks] = ACTIONS(858), - [sym_ellipsis] = ACTIONS(858), - [sym_em_dash] = ACTIONS(858), - [sym_en_dash] = ACTIONS(863), - [sym_backslash_escape] = ACTIONS(863), - [anon_sym_LT] = ACTIONS(872), - [anon_sym_LBRACE_] = ACTIONS(875), - [anon_sym__] = ACTIONS(1179), - [aux_sym_emphasis_end_token1] = ACTIONS(861), - [anon_sym_LBRACE_STAR] = ACTIONS(881), - [anon_sym_STAR] = ACTIONS(884), - [anon_sym_LBRACE_EQ] = ACTIONS(887), - [anon_sym_LBRACE_PLUS] = ACTIONS(890), - [anon_sym_LBRACE_DASH] = ACTIONS(893), - [sym_symbol] = ACTIONS(858), - [anon_sym_LBRACE_CARET] = ACTIONS(896), - [anon_sym_CARET] = ACTIONS(896), - [anon_sym_LBRACE_TILDE] = ACTIONS(899), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_LBRACK_CARET] = ACTIONS(902), - [anon_sym_BANG_LBRACK] = ACTIONS(905), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(910), - [anon_sym_TODO] = ACTIONS(913), - [anon_sym_WIP] = ACTIONS(913), - [anon_sym_NOTE] = ACTIONS(916), - [anon_sym_INFO] = ACTIONS(916), - [anon_sym_XXX] = ACTIONS(916), - [sym_fixme] = ACTIONS(858), - [aux_sym__text_token1] = ACTIONS(919), - [sym__newline_inline] = ACTIONS(922), - [sym__verbatim_begin] = ACTIONS(925), - }, - [155] = { - [sym__inline] = STATE(1830), - [sym__inline_element_with_whitespace] = STATE(230), - [sym__inline_element_with_newline] = STATE(230), - [sym__inline_core_element] = STATE(230), - [sym__hard_line_break] = STATE(688), - [sym_hard_line_break] = STATE(516), - [sym__smart_punctuation] = STATE(688), - [sym_autolink] = STATE(688), - [sym_emphasis] = STATE(688), - [sym_emphasis_begin] = STATE(291), - [sym_strong] = STATE(688), - [sym_strong_begin] = STATE(272), - [sym_highlighted] = STATE(688), - [sym_insert] = STATE(688), - [sym_delete] = STATE(688), - [sym_superscript] = STATE(688), - [sym_subscript] = STATE(688), - [sym_footnote_reference] = STATE(688), - [sym__image] = STATE(688), - [sym_full_reference_image] = STATE(688), - [sym_collapsed_reference_image] = STATE(688), - [sym_inline_image] = STATE(688), - [sym__image_description] = STATE(1436), - [sym__link] = STATE(688), - [sym_full_reference_link] = STATE(688), - [sym_collapsed_reference_link] = STATE(688), - [sym_inline_link] = STATE(688), - [sym_link_text] = STATE(1434), - [sym__comment_with_spaces] = STATE(688), - [sym_span] = STATE(688), - [sym_raw_inline] = STATE(688), - [sym_math] = STATE(688), - [sym_verbatim] = STATE(688), - [sym__todo_highlights] = STATE(688), - [sym_todo] = STATE(688), - [sym_note] = STATE(688), - [sym__symbol_fallback] = STATE(688), - [aux_sym__text] = STATE(583), - [aux_sym__inline_repeat1] = STATE(230), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_RBRACK] = ACTIONS(861), - [anon_sym_PIPE] = ACTIONS(1108), - [anon_sym_LBRACE] = ACTIONS(1111), - [sym__whitespace1] = ACTIONS(1114), - [anon_sym_BSLASH] = ACTIONS(1117), - [sym_quotation_marks] = ACTIONS(1108), - [sym_ellipsis] = ACTIONS(1108), - [sym_em_dash] = ACTIONS(1108), - [sym_en_dash] = ACTIONS(1111), - [sym_backslash_escape] = ACTIONS(1111), - [anon_sym_LT] = ACTIONS(1120), - [anon_sym_LBRACE_] = ACTIONS(1123), - [anon_sym__] = ACTIONS(1126), - [anon_sym_LBRACE_STAR] = ACTIONS(1129), - [anon_sym_STAR] = ACTIONS(1132), - [anon_sym_LBRACE_EQ] = ACTIONS(1135), - [anon_sym_LBRACE_PLUS] = ACTIONS(1138), - [anon_sym_LBRACE_DASH] = ACTIONS(1141), - [sym_symbol] = ACTIONS(1108), - [anon_sym_LBRACE_CARET] = ACTIONS(1144), - [anon_sym_CARET] = ACTIONS(1144), - [anon_sym_LBRACE_TILDE] = ACTIONS(1147), - [anon_sym_TILDE] = ACTIONS(1147), - [anon_sym_LBRACK_CARET] = ACTIONS(1150), - [anon_sym_BANG_LBRACK] = ACTIONS(1153), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(1156), - [anon_sym_TODO] = ACTIONS(1159), - [anon_sym_WIP] = ACTIONS(1159), - [anon_sym_NOTE] = ACTIONS(1162), - [anon_sym_INFO] = ACTIONS(1162), - [anon_sym_XXX] = ACTIONS(1162), - [sym_fixme] = ACTIONS(1108), - [aux_sym__text_token1] = ACTIONS(1165), - [sym__newline_inline] = ACTIONS(1168), - [sym__verbatim_begin] = ACTIONS(1171), - }, - [156] = { - [sym_table_cell] = STATE(1877), - [sym__inline_element_with_whitespace_without_newline] = STATE(308), - [sym__inline_core_element] = STATE(308), - [sym__hard_line_break] = STATE(1116), - [sym_hard_line_break] = STATE(711), - [sym__smart_punctuation] = STATE(1116), - [sym_autolink] = STATE(1116), - [sym_emphasis] = STATE(1116), - [sym_emphasis_begin] = STATE(271), - [sym_strong] = STATE(1116), - [sym_strong_begin] = STATE(293), - [sym_highlighted] = STATE(1116), - [sym_insert] = STATE(1116), - [sym_delete] = STATE(1116), - [sym_superscript] = STATE(1116), - [sym_subscript] = STATE(1116), - [sym_footnote_reference] = STATE(1116), - [sym__image] = STATE(1116), - [sym_full_reference_image] = STATE(1116), - [sym_collapsed_reference_image] = STATE(1116), - [sym_inline_image] = STATE(1116), - [sym__image_description] = STATE(1403), - [sym__link] = STATE(1116), - [sym_full_reference_link] = STATE(1116), - [sym_collapsed_reference_link] = STATE(1116), - [sym_inline_link] = STATE(1116), - [sym_link_text] = STATE(1404), - [sym__comment_with_spaces] = STATE(1116), - [sym_span] = STATE(1116), - [sym_raw_inline] = STATE(1116), - [sym_math] = STATE(1116), - [sym_verbatim] = STATE(1116), - [sym__todo_highlights] = STATE(1116), - [sym_todo] = STATE(1116), - [sym_note] = STATE(1116), - [sym__symbol_fallback] = STATE(1116), - [aux_sym__text] = STATE(781), - [aux_sym_table_cell_repeat1] = STATE(308), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_PIPE] = ACTIONS(1407), - [sym_table_cell_alignment] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [sym__whitespace1] = ACTIONS(1415), - [anon_sym_BSLASH] = ACTIONS(1418), - [sym_quotation_marks] = ACTIONS(1407), - [sym_ellipsis] = ACTIONS(1407), - [sym_em_dash] = ACTIONS(1412), - [sym_en_dash] = ACTIONS(1412), - [sym_backslash_escape] = ACTIONS(1412), - [anon_sym_LT] = ACTIONS(1421), - [anon_sym_LBRACE_] = ACTIONS(1424), - [anon_sym__] = ACTIONS(1427), - [anon_sym_LBRACE_STAR] = ACTIONS(1430), - [anon_sym_STAR] = ACTIONS(1433), - [anon_sym_LBRACE_EQ] = ACTIONS(1436), - [anon_sym_LBRACE_PLUS] = ACTIONS(1439), - [anon_sym_LBRACE_DASH] = ACTIONS(1442), - [sym_symbol] = ACTIONS(1412), - [anon_sym_LBRACE_CARET] = ACTIONS(1445), - [anon_sym_CARET] = ACTIONS(1445), - [anon_sym_LBRACE_TILDE] = ACTIONS(1448), - [anon_sym_TILDE] = ACTIONS(1448), - [anon_sym_LBRACK_CARET] = ACTIONS(1451), - [anon_sym_BANG_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(1457), - [anon_sym_TODO] = ACTIONS(1460), - [anon_sym_WIP] = ACTIONS(1460), - [anon_sym_NOTE] = ACTIONS(1463), - [anon_sym_INFO] = ACTIONS(1463), - [anon_sym_XXX] = ACTIONS(1463), - [sym_fixme] = ACTIONS(1407), - [aux_sym__text_token1] = ACTIONS(1466), - [sym__eof_or_newline] = ACTIONS(861), - [sym__newline_inline] = ACTIONS(861), - [sym__verbatim_begin] = ACTIONS(1469), - }, - [157] = { - [sym__inline] = STATE(1933), - [sym__inline_element_with_whitespace] = STATE(230), - [sym__inline_element_with_newline] = STATE(230), - [sym__inline_core_element] = STATE(230), - [sym__hard_line_break] = STATE(688), - [sym_hard_line_break] = STATE(516), - [sym__smart_punctuation] = STATE(688), - [sym_autolink] = STATE(688), - [sym_emphasis] = STATE(688), - [sym_emphasis_begin] = STATE(291), - [sym_strong] = STATE(688), - [sym_strong_begin] = STATE(272), - [sym_highlighted] = STATE(688), - [sym_insert] = STATE(688), - [sym_delete] = STATE(688), - [sym_superscript] = STATE(688), - [sym_subscript] = STATE(688), - [sym_footnote_reference] = STATE(688), - [sym__image] = STATE(688), - [sym_full_reference_image] = STATE(688), - [sym_collapsed_reference_image] = STATE(688), - [sym_inline_image] = STATE(688), - [sym__image_description] = STATE(1436), - [sym__link] = STATE(688), - [sym_full_reference_link] = STATE(688), - [sym_collapsed_reference_link] = STATE(688), - [sym_inline_link] = STATE(688), - [sym_link_text] = STATE(1434), - [sym__comment_with_spaces] = STATE(688), - [sym_span] = STATE(688), - [sym_raw_inline] = STATE(688), - [sym_math] = STATE(688), - [sym_verbatim] = STATE(688), - [sym__todo_highlights] = STATE(688), - [sym_todo] = STATE(688), - [sym_note] = STATE(688), - [sym__symbol_fallback] = STATE(688), - [aux_sym__text] = STATE(583), - [aux_sym__inline_repeat1] = STATE(230), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_PIPE] = ACTIONS(1108), - [anon_sym_LBRACE] = ACTIONS(1111), - [sym__whitespace1] = ACTIONS(1114), - [anon_sym_BSLASH] = ACTIONS(1117), - [sym_quotation_marks] = ACTIONS(1108), - [sym_ellipsis] = ACTIONS(1108), - [sym_em_dash] = ACTIONS(1108), - [sym_en_dash] = ACTIONS(1111), - [sym_backslash_escape] = ACTIONS(1111), - [anon_sym_LT] = ACTIONS(1120), - [anon_sym_LBRACE_] = ACTIONS(1123), - [anon_sym__] = ACTIONS(1126), - [anon_sym_LBRACE_STAR] = ACTIONS(1129), - [anon_sym_STAR] = ACTIONS(1132), - [anon_sym_LBRACE_EQ] = ACTIONS(1135), - [anon_sym_LBRACE_PLUS] = ACTIONS(1138), - [anon_sym_LBRACE_DASH] = ACTIONS(1141), - [sym_symbol] = ACTIONS(1108), - [anon_sym_LBRACE_CARET] = ACTIONS(1144), - [anon_sym_CARET] = ACTIONS(1144), - [anon_sym_LBRACE_TILDE] = ACTIONS(1147), - [anon_sym_TILDE] = ACTIONS(1147), - [anon_sym_LBRACK_CARET] = ACTIONS(1150), - [anon_sym_BANG_LBRACK] = ACTIONS(1153), - [anon_sym_RBRACK2] = ACTIONS(861), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(1156), - [anon_sym_TODO] = ACTIONS(1159), - [anon_sym_WIP] = ACTIONS(1159), - [anon_sym_NOTE] = ACTIONS(1162), - [anon_sym_INFO] = ACTIONS(1162), - [anon_sym_XXX] = ACTIONS(1162), - [sym_fixme] = ACTIONS(1108), - [aux_sym__text_token1] = ACTIONS(1165), - [sym__newline_inline] = ACTIONS(1168), - [sym__verbatim_begin] = ACTIONS(1171), - }, - [158] = { - [sym__inline] = STATE(1930), - [sym__inline_element_with_whitespace] = STATE(241), - [sym__inline_element_with_newline] = STATE(241), - [sym__inline_core_element] = STATE(241), - [sym__hard_line_break] = STATE(696), - [sym_hard_line_break] = STATE(530), - [sym__smart_punctuation] = STATE(696), - [sym_autolink] = STATE(696), - [sym_emphasis] = STATE(696), - [sym_emphasis_begin] = STATE(274), - [sym_strong] = STATE(696), - [sym_strong_begin] = STATE(275), - [sym_highlighted] = STATE(696), - [sym_insert] = STATE(696), - [sym_delete] = STATE(696), - [sym_superscript] = STATE(696), - [sym_subscript] = STATE(696), - [sym_footnote_reference] = STATE(696), - [sym__image] = STATE(696), - [sym_full_reference_image] = STATE(696), - [sym_collapsed_reference_image] = STATE(696), - [sym_inline_image] = STATE(696), - [sym__image_description] = STATE(1427), - [sym__link] = STATE(696), - [sym_full_reference_link] = STATE(696), - [sym_collapsed_reference_link] = STATE(696), - [sym_inline_link] = STATE(696), - [sym_link_text] = STATE(1426), - [sym__comment_with_spaces] = STATE(696), - [sym_span] = STATE(696), - [sym_raw_inline] = STATE(696), - [sym_math] = STATE(696), - [sym_verbatim] = STATE(696), - [sym__todo_highlights] = STATE(696), - [sym_todo] = STATE(696), - [sym_note] = STATE(696), - [sym__symbol_fallback] = STATE(696), - [aux_sym__text] = STATE(609), - [aux_sym__inline_repeat1] = STATE(241), - [anon_sym_LBRACK] = ACTIONS(1036), - [anon_sym_PIPE] = ACTIONS(1039), - [anon_sym_LBRACE] = ACTIONS(1042), - [sym__whitespace1] = ACTIONS(1045), - [anon_sym_BSLASH] = ACTIONS(1048), - [sym_quotation_marks] = ACTIONS(1039), - [sym_ellipsis] = ACTIONS(1039), - [sym_em_dash] = ACTIONS(1039), - [sym_en_dash] = ACTIONS(1042), - [sym_backslash_escape] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1051), - [anon_sym_LBRACE_] = ACTIONS(1054), - [anon_sym__] = ACTIONS(1057), - [anon_sym_LBRACE_STAR] = ACTIONS(1060), - [anon_sym_STAR] = ACTIONS(1063), - [anon_sym_LBRACE_EQ] = ACTIONS(1066), - [anon_sym_LBRACE_PLUS] = ACTIONS(1069), - [anon_sym_LBRACE_DASH] = ACTIONS(1072), - [anon_sym_DASH_RBRACE] = ACTIONS(861), - [sym_symbol] = ACTIONS(1039), - [anon_sym_LBRACE_CARET] = ACTIONS(1075), - [anon_sym_CARET] = ACTIONS(1075), - [anon_sym_LBRACE_TILDE] = ACTIONS(1078), - [anon_sym_TILDE] = ACTIONS(1078), - [anon_sym_LBRACK_CARET] = ACTIONS(1081), - [anon_sym_BANG_LBRACK] = ACTIONS(1084), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(1087), - [anon_sym_TODO] = ACTIONS(1090), - [anon_sym_WIP] = ACTIONS(1090), - [anon_sym_NOTE] = ACTIONS(1093), - [anon_sym_INFO] = ACTIONS(1093), - [anon_sym_XXX] = ACTIONS(1093), - [sym_fixme] = ACTIONS(1039), - [aux_sym__text_token1] = ACTIONS(1096), - [sym__newline_inline] = ACTIONS(1099), - [sym__verbatim_begin] = ACTIONS(1102), - }, - [159] = { - [sym__inline] = STATE(1929), - [sym__inline_element_with_whitespace] = STATE(230), - [sym__inline_element_with_newline] = STATE(230), - [sym__inline_core_element] = STATE(230), - [sym__hard_line_break] = STATE(688), - [sym_hard_line_break] = STATE(516), - [sym__smart_punctuation] = STATE(688), - [sym_autolink] = STATE(688), - [sym_emphasis] = STATE(688), - [sym_emphasis_begin] = STATE(291), - [sym_strong] = STATE(688), - [sym_strong_begin] = STATE(272), - [sym_highlighted] = STATE(688), - [sym_insert] = STATE(688), - [sym_delete] = STATE(688), - [sym_superscript] = STATE(688), - [sym_subscript] = STATE(688), - [sym_footnote_reference] = STATE(688), - [sym__image] = STATE(688), - [sym_full_reference_image] = STATE(688), - [sym_collapsed_reference_image] = STATE(688), - [sym_inline_image] = STATE(688), - [sym__image_description] = STATE(1436), - [sym__link] = STATE(688), - [sym_full_reference_link] = STATE(688), - [sym_collapsed_reference_link] = STATE(688), - [sym_inline_link] = STATE(688), - [sym_link_text] = STATE(1434), - [sym__comment_with_spaces] = STATE(688), - [sym_span] = STATE(688), - [sym_raw_inline] = STATE(688), - [sym_math] = STATE(688), - [sym_verbatim] = STATE(688), - [sym__todo_highlights] = STATE(688), - [sym_todo] = STATE(688), - [sym_note] = STATE(688), - [sym__symbol_fallback] = STATE(688), - [aux_sym__text] = STATE(583), - [aux_sym__inline_repeat1] = STATE(230), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_PIPE] = ACTIONS(1108), - [anon_sym_LBRACE] = ACTIONS(1111), - [sym__whitespace1] = ACTIONS(1114), - [anon_sym_BSLASH] = ACTIONS(1117), - [sym_quotation_marks] = ACTIONS(1108), - [sym_ellipsis] = ACTIONS(1108), - [sym_em_dash] = ACTIONS(1108), - [sym_en_dash] = ACTIONS(1111), - [sym_backslash_escape] = ACTIONS(1111), - [anon_sym_LT] = ACTIONS(1120), - [anon_sym_LBRACE_] = ACTIONS(1123), - [anon_sym__] = ACTIONS(1126), - [anon_sym_LBRACE_STAR] = ACTIONS(1129), - [anon_sym_STAR] = ACTIONS(1132), - [anon_sym_LBRACE_EQ] = ACTIONS(1135), - [anon_sym_LBRACE_PLUS] = ACTIONS(1138), - [anon_sym_LBRACE_DASH] = ACTIONS(1141), - [anon_sym_DASH_RBRACE] = ACTIONS(861), - [sym_symbol] = ACTIONS(1108), - [anon_sym_LBRACE_CARET] = ACTIONS(1144), - [anon_sym_CARET] = ACTIONS(1144), - [anon_sym_LBRACE_TILDE] = ACTIONS(1147), - [anon_sym_TILDE] = ACTIONS(1147), - [anon_sym_LBRACK_CARET] = ACTIONS(1150), - [anon_sym_BANG_LBRACK] = ACTIONS(1153), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(1156), - [anon_sym_TODO] = ACTIONS(1159), - [anon_sym_WIP] = ACTIONS(1159), - [anon_sym_NOTE] = ACTIONS(1162), - [anon_sym_INFO] = ACTIONS(1162), - [anon_sym_XXX] = ACTIONS(1162), - [sym_fixme] = ACTIONS(1108), - [aux_sym__text_token1] = ACTIONS(1165), - [sym__newline_inline] = ACTIONS(1168), - [sym__verbatim_begin] = ACTIONS(1171), - }, - [160] = { - [sym__inline] = STATE(1907), - [sym__inline_element_with_whitespace] = STATE(241), - [sym__inline_element_with_newline] = STATE(241), - [sym__inline_core_element] = STATE(241), - [sym__hard_line_break] = STATE(696), - [sym_hard_line_break] = STATE(530), - [sym__smart_punctuation] = STATE(696), - [sym_autolink] = STATE(696), - [sym_emphasis] = STATE(696), - [sym_emphasis_begin] = STATE(274), - [sym_strong] = STATE(696), - [sym_strong_begin] = STATE(275), - [sym_highlighted] = STATE(696), - [sym_insert] = STATE(696), - [sym_delete] = STATE(696), - [sym_superscript] = STATE(696), - [sym_subscript] = STATE(696), - [sym_footnote_reference] = STATE(696), - [sym__image] = STATE(696), - [sym_full_reference_image] = STATE(696), - [sym_collapsed_reference_image] = STATE(696), - [sym_inline_image] = STATE(696), - [sym__image_description] = STATE(1427), - [sym__link] = STATE(696), - [sym_full_reference_link] = STATE(696), - [sym_collapsed_reference_link] = STATE(696), - [sym_inline_link] = STATE(696), - [sym_link_text] = STATE(1426), - [sym__comment_with_spaces] = STATE(696), - [sym_span] = STATE(696), - [sym_raw_inline] = STATE(696), - [sym_math] = STATE(696), - [sym_verbatim] = STATE(696), - [sym__todo_highlights] = STATE(696), - [sym_todo] = STATE(696), - [sym_note] = STATE(696), - [sym__symbol_fallback] = STATE(696), - [aux_sym__text] = STATE(609), - [aux_sym__inline_repeat1] = STATE(241), - [anon_sym_LBRACK] = ACTIONS(1036), - [anon_sym_PIPE] = ACTIONS(1039), - [anon_sym_LBRACE] = ACTIONS(1042), - [sym__whitespace1] = ACTIONS(1045), - [anon_sym_BSLASH] = ACTIONS(1048), - [sym_quotation_marks] = ACTIONS(1039), - [sym_ellipsis] = ACTIONS(1039), - [sym_em_dash] = ACTIONS(1039), - [sym_en_dash] = ACTIONS(1042), - [sym_backslash_escape] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1051), - [anon_sym_LBRACE_] = ACTIONS(1054), - [anon_sym__] = ACTIONS(1057), - [anon_sym_LBRACE_STAR] = ACTIONS(1060), - [anon_sym_STAR] = ACTIONS(1063), - [anon_sym_LBRACE_EQ] = ACTIONS(1066), - [anon_sym_LBRACE_PLUS] = ACTIONS(1069), - [anon_sym_PLUS_RBRACE] = ACTIONS(861), - [anon_sym_LBRACE_DASH] = ACTIONS(1072), - [sym_symbol] = ACTIONS(1039), - [anon_sym_LBRACE_CARET] = ACTIONS(1075), - [anon_sym_CARET] = ACTIONS(1075), - [anon_sym_LBRACE_TILDE] = ACTIONS(1078), - [anon_sym_TILDE] = ACTIONS(1078), - [anon_sym_LBRACK_CARET] = ACTIONS(1081), - [anon_sym_BANG_LBRACK] = ACTIONS(1084), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(1087), - [anon_sym_TODO] = ACTIONS(1090), - [anon_sym_WIP] = ACTIONS(1090), - [anon_sym_NOTE] = ACTIONS(1093), - [anon_sym_INFO] = ACTIONS(1093), - [anon_sym_XXX] = ACTIONS(1093), - [sym_fixme] = ACTIONS(1039), - [aux_sym__text_token1] = ACTIONS(1096), - [sym__newline_inline] = ACTIONS(1099), - [sym__verbatim_begin] = ACTIONS(1102), - }, - [161] = { - [sym__inline] = STATE(1823), - [sym__inline_element_with_whitespace] = STATE(230), - [sym__inline_element_with_newline] = STATE(230), - [sym__inline_core_element] = STATE(230), - [sym__hard_line_break] = STATE(688), - [sym_hard_line_break] = STATE(516), - [sym__smart_punctuation] = STATE(688), - [sym_autolink] = STATE(688), - [sym_emphasis] = STATE(688), - [sym_emphasis_begin] = STATE(291), - [sym_strong] = STATE(688), - [sym_strong_begin] = STATE(272), - [sym_highlighted] = STATE(688), - [sym_insert] = STATE(688), - [sym_delete] = STATE(688), - [sym_superscript] = STATE(688), - [sym_subscript] = STATE(688), - [sym_footnote_reference] = STATE(688), - [sym__image] = STATE(688), - [sym_full_reference_image] = STATE(688), - [sym_collapsed_reference_image] = STATE(688), - [sym_inline_image] = STATE(688), - [sym__image_description] = STATE(1436), - [sym__link] = STATE(688), - [sym_full_reference_link] = STATE(688), - [sym_collapsed_reference_link] = STATE(688), - [sym_inline_link] = STATE(688), - [sym_link_text] = STATE(1434), - [sym__comment_with_spaces] = STATE(688), - [sym_span] = STATE(688), - [sym_raw_inline] = STATE(688), - [sym_math] = STATE(688), - [sym_verbatim] = STATE(688), - [sym__todo_highlights] = STATE(688), - [sym_todo] = STATE(688), - [sym_note] = STATE(688), - [sym__symbol_fallback] = STATE(688), - [aux_sym__text] = STATE(583), - [aux_sym__inline_repeat1] = STATE(230), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_PIPE] = ACTIONS(1108), - [anon_sym_LBRACE] = ACTIONS(1111), - [sym__whitespace1] = ACTIONS(1114), - [anon_sym_BSLASH] = ACTIONS(1117), - [sym_quotation_marks] = ACTIONS(1108), - [sym_ellipsis] = ACTIONS(1108), - [sym_em_dash] = ACTIONS(1108), - [sym_en_dash] = ACTIONS(1111), - [sym_backslash_escape] = ACTIONS(1111), - [anon_sym_LT] = ACTIONS(1120), - [anon_sym_LBRACE_] = ACTIONS(1123), - [anon_sym__] = ACTIONS(1126), - [anon_sym_LBRACE_STAR] = ACTIONS(1129), - [anon_sym_STAR] = ACTIONS(1132), - [anon_sym_LBRACE_EQ] = ACTIONS(1135), - [anon_sym_LBRACE_PLUS] = ACTIONS(1138), - [anon_sym_LBRACE_DASH] = ACTIONS(1141), - [sym_symbol] = ACTIONS(1108), - [anon_sym_LBRACE_CARET] = ACTIONS(1144), - [anon_sym_CARET] = ACTIONS(1144), - [anon_sym_LBRACE_TILDE] = ACTIONS(1147), - [anon_sym_TILDE] = ACTIONS(1147), - [anon_sym_LBRACK_CARET] = ACTIONS(1150), - [anon_sym_BANG_LBRACK] = ACTIONS(1153), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(1156), - [anon_sym_TODO] = ACTIONS(1159), - [anon_sym_WIP] = ACTIONS(1159), - [anon_sym_NOTE] = ACTIONS(1162), - [anon_sym_INFO] = ACTIONS(1162), - [anon_sym_XXX] = ACTIONS(1162), - [sym_fixme] = ACTIONS(1108), - [aux_sym__text_token1] = ACTIONS(1165), - [sym__eof_or_newline] = ACTIONS(861), - [sym__newline_inline] = ACTIONS(1168), - [sym__verbatim_begin] = ACTIONS(1171), - }, - [162] = { - [sym__inline] = STATE(2060), - [sym__inline_element_with_whitespace] = STATE(219), - [sym__inline_element_with_newline] = STATE(219), - [sym__inline_core_element] = STATE(219), - [sym__hard_line_break] = STATE(682), - [sym_hard_line_break] = STATE(518), - [sym__smart_punctuation] = STATE(682), - [sym_autolink] = STATE(682), - [sym_emphasis] = STATE(682), - [sym_emphasis_begin] = STATE(286), - [sym_strong] = STATE(682), - [sym_strong_begin] = STATE(288), - [sym_highlighted] = STATE(682), - [sym_insert] = STATE(682), - [sym_delete] = STATE(682), - [sym_superscript] = STATE(682), - [sym_subscript] = STATE(682), - [sym_footnote_reference] = STATE(682), - [sym__image] = STATE(682), - [sym_full_reference_image] = STATE(682), - [sym_collapsed_reference_image] = STATE(682), - [sym_inline_image] = STATE(682), - [sym__image_description] = STATE(1440), - [sym__link] = STATE(682), - [sym_full_reference_link] = STATE(682), - [sym_collapsed_reference_link] = STATE(682), - [sym_inline_link] = STATE(682), - [sym_link_text] = STATE(1439), - [sym__comment_with_spaces] = STATE(682), - [sym_span] = STATE(682), - [sym_raw_inline] = STATE(682), - [sym_math] = STATE(682), - [sym_verbatim] = STATE(682), - [sym__todo_highlights] = STATE(682), - [sym_todo] = STATE(682), - [sym_note] = STATE(682), - [sym__symbol_fallback] = STATE(682), - [aux_sym__text] = STATE(572), - [aux_sym__inline_repeat1] = STATE(219), - [anon_sym_LBRACK] = ACTIONS(1182), - [anon_sym_PIPE] = ACTIONS(1185), - [anon_sym_LBRACE] = ACTIONS(1188), - [sym__whitespace1] = ACTIONS(1191), - [anon_sym_BSLASH] = ACTIONS(1194), - [sym_quotation_marks] = ACTIONS(1185), - [sym_ellipsis] = ACTIONS(1185), - [sym_em_dash] = ACTIONS(1185), - [sym_en_dash] = ACTIONS(1188), - [sym_backslash_escape] = ACTIONS(1188), - [anon_sym_LT] = ACTIONS(1197), - [anon_sym_LBRACE_] = ACTIONS(1200), - [anon_sym__] = ACTIONS(1203), - [anon_sym_LBRACE_STAR] = ACTIONS(1206), - [anon_sym_STAR] = ACTIONS(1209), - [anon_sym_LBRACE_EQ] = ACTIONS(1212), - [anon_sym_LBRACE_PLUS] = ACTIONS(1215), - [anon_sym_LBRACE_DASH] = ACTIONS(1218), - [anon_sym_DASH_RBRACE] = ACTIONS(861), - [sym_symbol] = ACTIONS(1185), - [anon_sym_LBRACE_CARET] = ACTIONS(1221), - [anon_sym_CARET] = ACTIONS(1221), - [anon_sym_LBRACE_TILDE] = ACTIONS(1224), - [anon_sym_TILDE] = ACTIONS(1224), - [anon_sym_LBRACK_CARET] = ACTIONS(1227), - [anon_sym_BANG_LBRACK] = ACTIONS(1230), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(1233), - [anon_sym_TODO] = ACTIONS(1236), - [anon_sym_WIP] = ACTIONS(1236), - [anon_sym_NOTE] = ACTIONS(1239), - [anon_sym_INFO] = ACTIONS(1239), - [anon_sym_XXX] = ACTIONS(1239), - [sym_fixme] = ACTIONS(1185), - [aux_sym__text_token1] = ACTIONS(1242), - [sym__newline_inline] = ACTIONS(1245), - [sym__verbatim_begin] = ACTIONS(1248), - }, - [163] = { - [sym__inline] = STATE(2224), - [sym__inline_element_with_whitespace] = STATE(219), - [sym__inline_element_with_newline] = STATE(219), - [sym__inline_core_element] = STATE(219), - [sym__hard_line_break] = STATE(682), - [sym_hard_line_break] = STATE(518), - [sym__smart_punctuation] = STATE(682), - [sym_autolink] = STATE(682), - [sym_emphasis] = STATE(682), - [sym_emphasis_begin] = STATE(286), - [sym_strong] = STATE(682), - [sym_strong_begin] = STATE(288), - [sym_highlighted] = STATE(682), - [sym_insert] = STATE(682), - [sym_delete] = STATE(682), - [sym_superscript] = STATE(682), - [sym_subscript] = STATE(682), - [sym_footnote_reference] = STATE(682), - [sym__image] = STATE(682), - [sym_full_reference_image] = STATE(682), - [sym_collapsed_reference_image] = STATE(682), - [sym_inline_image] = STATE(682), - [sym__image_description] = STATE(1440), - [sym__link] = STATE(682), - [sym_full_reference_link] = STATE(682), - [sym_collapsed_reference_link] = STATE(682), - [sym_inline_link] = STATE(682), - [sym_link_text] = STATE(1439), - [sym__comment_with_spaces] = STATE(682), - [sym_span] = STATE(682), - [sym_raw_inline] = STATE(682), - [sym_math] = STATE(682), - [sym_verbatim] = STATE(682), - [sym__todo_highlights] = STATE(682), - [sym_todo] = STATE(682), - [sym_note] = STATE(682), - [sym__symbol_fallback] = STATE(682), - [aux_sym__text] = STATE(572), - [aux_sym__inline_repeat1] = STATE(219), - [anon_sym_LBRACK] = ACTIONS(1182), - [anon_sym_PIPE] = ACTIONS(1185), - [anon_sym_LBRACE] = ACTIONS(1188), - [sym__whitespace1] = ACTIONS(1191), - [anon_sym_BSLASH] = ACTIONS(1194), - [sym_quotation_marks] = ACTIONS(1185), - [sym_ellipsis] = ACTIONS(1185), - [sym_em_dash] = ACTIONS(1185), - [sym_en_dash] = ACTIONS(1188), - [sym_backslash_escape] = ACTIONS(1188), - [anon_sym_LT] = ACTIONS(1197), - [anon_sym_LBRACE_] = ACTIONS(1200), - [anon_sym__] = ACTIONS(1203), - [anon_sym_LBRACE_STAR] = ACTIONS(1206), - [anon_sym_STAR] = ACTIONS(1209), - [anon_sym_LBRACE_EQ] = ACTIONS(1212), - [anon_sym_LBRACE_PLUS] = ACTIONS(1215), - [anon_sym_LBRACE_DASH] = ACTIONS(1218), - [sym_symbol] = ACTIONS(1185), - [anon_sym_LBRACE_CARET] = ACTIONS(1221), - [anon_sym_CARET] = ACTIONS(1221), - [anon_sym_LBRACE_TILDE] = ACTIONS(1224), - [anon_sym_TILDE] = ACTIONS(1224), - [anon_sym_LBRACK_CARET] = ACTIONS(1227), - [anon_sym_BANG_LBRACK] = ACTIONS(1230), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(1233), - [anon_sym_TODO] = ACTIONS(1236), - [anon_sym_WIP] = ACTIONS(1236), - [anon_sym_NOTE] = ACTIONS(1239), - [anon_sym_INFO] = ACTIONS(1239), - [anon_sym_XXX] = ACTIONS(1239), - [sym_fixme] = ACTIONS(1185), - [aux_sym__text_token1] = ACTIONS(1242), - [sym__eof_or_newline] = ACTIONS(861), - [sym__newline_inline] = ACTIONS(1245), - [sym__verbatim_begin] = ACTIONS(1248), - }, - [164] = { - [sym__inline] = STATE(2067), - [sym__inline_element_with_whitespace] = STATE(217), - [sym__inline_element_with_newline] = STATE(217), - [sym__inline_core_element] = STATE(217), - [sym__hard_line_break] = STATE(667), - [sym_hard_line_break] = STATE(529), - [sym__smart_punctuation] = STATE(667), - [sym_autolink] = STATE(667), - [sym_emphasis] = STATE(667), - [sym_emphasis_begin] = STATE(290), - [sym_strong] = STATE(667), - [sym_strong_begin] = STATE(273), - [sym_highlighted] = STATE(667), - [sym_insert] = STATE(667), - [sym_delete] = STATE(667), - [sym_superscript] = STATE(667), - [sym_subscript] = STATE(667), - [sym_footnote_reference] = STATE(667), - [sym__image] = STATE(667), - [sym_full_reference_image] = STATE(667), - [sym_collapsed_reference_image] = STATE(667), - [sym_inline_image] = STATE(667), - [sym__image_description] = STATE(1445), - [sym__link] = STATE(667), - [sym_full_reference_link] = STATE(667), - [sym_collapsed_reference_link] = STATE(667), - [sym_inline_link] = STATE(667), - [sym_link_text] = STATE(1443), - [sym__comment_with_spaces] = STATE(667), - [sym_span] = STATE(667), - [sym_raw_inline] = STATE(667), - [sym_math] = STATE(667), - [sym_verbatim] = STATE(667), - [sym__todo_highlights] = STATE(667), - [sym_todo] = STATE(667), - [sym_note] = STATE(667), - [sym__symbol_fallback] = STATE(667), - [aux_sym__text] = STATE(554), - [aux_sym__inline_repeat1] = STATE(217), - [anon_sym_LBRACK] = ACTIONS(1257), - [anon_sym_PIPE] = ACTIONS(1260), - [anon_sym_LBRACE] = ACTIONS(1263), - [sym__whitespace1] = ACTIONS(1266), - [anon_sym_BSLASH] = ACTIONS(1269), - [sym_quotation_marks] = ACTIONS(1260), - [sym_ellipsis] = ACTIONS(1260), - [sym_em_dash] = ACTIONS(1260), - [sym_en_dash] = ACTIONS(1263), - [sym_backslash_escape] = ACTIONS(1263), - [anon_sym_LT] = ACTIONS(1272), - [anon_sym_LBRACE_] = ACTIONS(1275), - [anon_sym__] = ACTIONS(1278), - [anon_sym_LBRACE_STAR] = ACTIONS(1281), - [anon_sym_STAR] = ACTIONS(1284), - [anon_sym_LBRACE_EQ] = ACTIONS(1287), - [anon_sym_LBRACE_PLUS] = ACTIONS(1290), - [anon_sym_LBRACE_DASH] = ACTIONS(1293), - [anon_sym_DASH_RBRACE] = ACTIONS(861), - [sym_symbol] = ACTIONS(1260), - [anon_sym_LBRACE_CARET] = ACTIONS(1296), - [anon_sym_CARET] = ACTIONS(1296), - [anon_sym_LBRACE_TILDE] = ACTIONS(1299), - [anon_sym_TILDE] = ACTIONS(1299), - [anon_sym_LBRACK_CARET] = ACTIONS(1302), - [anon_sym_BANG_LBRACK] = ACTIONS(1305), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(1308), - [anon_sym_TODO] = ACTIONS(1311), - [anon_sym_WIP] = ACTIONS(1311), - [anon_sym_NOTE] = ACTIONS(1314), - [anon_sym_INFO] = ACTIONS(1314), - [anon_sym_XXX] = ACTIONS(1314), - [sym_fixme] = ACTIONS(1260), - [aux_sym__text_token1] = ACTIONS(1317), - [sym__newline_inline] = ACTIONS(1320), - [sym__verbatim_begin] = ACTIONS(1323), - }, - [165] = { - [sym__inline] = STATE(2068), - [sym__inline_element_with_whitespace] = STATE(239), - [sym__inline_element_with_newline] = STATE(239), - [sym__inline_core_element] = STATE(239), - [sym__hard_line_break] = STATE(624), - [sym_hard_line_break] = STATE(527), - [sym__smart_punctuation] = STATE(624), - [sym_autolink] = STATE(624), - [sym_emphasis] = STATE(624), - [sym_emphasis_begin] = STATE(281), - [sym_strong] = STATE(624), - [sym_strong_begin] = STATE(276), - [sym_highlighted] = STATE(624), - [sym_insert] = STATE(624), - [sym_delete] = STATE(624), - [sym_superscript] = STATE(624), - [sym_subscript] = STATE(624), - [sym_footnote_reference] = STATE(624), - [sym__image] = STATE(624), - [sym_full_reference_image] = STATE(624), - [sym_collapsed_reference_image] = STATE(624), - [sym_inline_image] = STATE(624), - [sym__image_description] = STATE(1450), - [sym__link] = STATE(624), - [sym_full_reference_link] = STATE(624), - [sym_collapsed_reference_link] = STATE(624), - [sym_inline_link] = STATE(624), - [sym_link_text] = STATE(1451), - [sym__comment_with_spaces] = STATE(624), - [sym_span] = STATE(624), - [sym_raw_inline] = STATE(624), - [sym_math] = STATE(624), - [sym_verbatim] = STATE(624), - [sym__todo_highlights] = STATE(624), - [sym_todo] = STATE(624), - [sym_note] = STATE(624), - [sym__symbol_fallback] = STATE(624), - [aux_sym__text] = STATE(595), - [aux_sym__inline_repeat1] = STATE(239), - [anon_sym_LBRACK] = ACTIONS(948), - [anon_sym_PIPE] = ACTIONS(951), - [anon_sym_LBRACE] = ACTIONS(954), - [sym__whitespace1] = ACTIONS(957), - [anon_sym_BSLASH] = ACTIONS(960), - [sym_quotation_marks] = ACTIONS(951), - [sym_ellipsis] = ACTIONS(951), - [sym_em_dash] = ACTIONS(951), - [sym_en_dash] = ACTIONS(954), - [sym_backslash_escape] = ACTIONS(954), - [anon_sym_LT] = ACTIONS(963), - [anon_sym_LBRACE_] = ACTIONS(966), - [anon_sym__] = ACTIONS(969), - [anon_sym_LBRACE_STAR] = ACTIONS(972), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_LBRACE_EQ] = ACTIONS(978), - [anon_sym_LBRACE_PLUS] = ACTIONS(981), - [anon_sym_LBRACE_DASH] = ACTIONS(984), - [anon_sym_DASH_RBRACE] = ACTIONS(861), - [sym_symbol] = ACTIONS(951), - [anon_sym_LBRACE_CARET] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_LBRACE_TILDE] = ACTIONS(990), - [anon_sym_TILDE] = ACTIONS(990), - [anon_sym_LBRACK_CARET] = ACTIONS(993), - [anon_sym_BANG_LBRACK] = ACTIONS(996), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(999), - [anon_sym_TODO] = ACTIONS(1002), - [anon_sym_WIP] = ACTIONS(1002), - [anon_sym_NOTE] = ACTIONS(1005), - [anon_sym_INFO] = ACTIONS(1005), - [anon_sym_XXX] = ACTIONS(1005), - [sym_fixme] = ACTIONS(951), - [aux_sym__text_token1] = ACTIONS(1008), - [sym__newline_inline] = ACTIONS(1011), - [sym__verbatim_begin] = ACTIONS(1014), - }, - [166] = { - [sym__inline] = STATE(2312), - [sym__inline_element_with_whitespace] = STATE(217), - [sym__inline_element_with_newline] = STATE(217), - [sym__inline_core_element] = STATE(217), - [sym__hard_line_break] = STATE(667), - [sym_hard_line_break] = STATE(529), - [sym__smart_punctuation] = STATE(667), - [sym_autolink] = STATE(667), - [sym_emphasis] = STATE(667), - [sym_emphasis_begin] = STATE(290), - [sym_strong] = STATE(667), - [sym_strong_begin] = STATE(273), - [sym_highlighted] = STATE(667), - [sym_insert] = STATE(667), - [sym_delete] = STATE(667), - [sym_superscript] = STATE(667), - [sym_subscript] = STATE(667), - [sym_footnote_reference] = STATE(667), - [sym__image] = STATE(667), - [sym_full_reference_image] = STATE(667), - [sym_collapsed_reference_image] = STATE(667), - [sym_inline_image] = STATE(667), - [sym__image_description] = STATE(1445), - [sym__link] = STATE(667), - [sym_full_reference_link] = STATE(667), - [sym_collapsed_reference_link] = STATE(667), - [sym_inline_link] = STATE(667), - [sym_link_text] = STATE(1443), - [sym__comment_with_spaces] = STATE(667), - [sym_span] = STATE(667), - [sym_raw_inline] = STATE(667), - [sym_math] = STATE(667), - [sym_verbatim] = STATE(667), - [sym__todo_highlights] = STATE(667), - [sym_todo] = STATE(667), - [sym_note] = STATE(667), - [sym__symbol_fallback] = STATE(667), - [aux_sym__text] = STATE(554), - [aux_sym__inline_repeat1] = STATE(217), - [anon_sym_LBRACK] = ACTIONS(1257), - [anon_sym_PIPE] = ACTIONS(1260), - [anon_sym_LBRACE] = ACTIONS(1263), - [sym__whitespace1] = ACTIONS(1266), - [anon_sym_BSLASH] = ACTIONS(1269), - [sym_quotation_marks] = ACTIONS(1260), - [sym_ellipsis] = ACTIONS(1260), - [sym_em_dash] = ACTIONS(1260), - [sym_en_dash] = ACTIONS(1263), - [sym_backslash_escape] = ACTIONS(1263), - [anon_sym_LT] = ACTIONS(1272), - [anon_sym_LBRACE_] = ACTIONS(1275), - [anon_sym__] = ACTIONS(1278), - [anon_sym_LBRACE_STAR] = ACTIONS(1281), - [anon_sym_STAR] = ACTIONS(1284), - [anon_sym_LBRACE_EQ] = ACTIONS(1287), - [anon_sym_LBRACE_PLUS] = ACTIONS(1290), - [anon_sym_LBRACE_DASH] = ACTIONS(1293), - [sym_symbol] = ACTIONS(1260), - [anon_sym_LBRACE_CARET] = ACTIONS(1296), - [anon_sym_CARET] = ACTIONS(1296), - [anon_sym_LBRACE_TILDE] = ACTIONS(1299), - [anon_sym_TILDE] = ACTIONS(1299), - [anon_sym_LBRACK_CARET] = ACTIONS(1302), - [anon_sym_BANG_LBRACK] = ACTIONS(1305), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(1308), - [anon_sym_TODO] = ACTIONS(1311), - [anon_sym_WIP] = ACTIONS(1311), - [anon_sym_NOTE] = ACTIONS(1314), - [anon_sym_INFO] = ACTIONS(1314), - [anon_sym_XXX] = ACTIONS(1314), - [sym_fixme] = ACTIONS(1260), - [aux_sym__text_token1] = ACTIONS(1317), - [sym__eof_or_newline] = ACTIONS(861), - [sym__newline_inline] = ACTIONS(1320), - [sym__verbatim_begin] = ACTIONS(1323), - }, - [167] = { - [sym__inline] = STATE(2262), - [sym__inline_element_with_whitespace] = STATE(242), - [sym__inline_element_with_newline] = STATE(242), - [sym__inline_core_element] = STATE(242), - [sym__hard_line_break] = STATE(627), - [sym_hard_line_break] = STATE(523), - [sym__smart_punctuation] = STATE(627), - [sym_autolink] = STATE(627), - [sym_emphasis] = STATE(627), - [sym_emphasis_begin] = STATE(296), - [sym_strong] = STATE(627), - [sym_strong_begin] = STATE(295), - [sym_highlighted] = STATE(627), - [sym_insert] = STATE(627), - [sym_delete] = STATE(627), - [sym_superscript] = STATE(627), - [sym_subscript] = STATE(627), - [sym_footnote_reference] = STATE(627), - [sym__image] = STATE(627), - [sym_full_reference_image] = STATE(627), - [sym_collapsed_reference_image] = STATE(627), - [sym_inline_image] = STATE(627), - [sym__image_description] = STATE(1448), - [sym__link] = STATE(627), - [sym_full_reference_link] = STATE(627), - [sym_collapsed_reference_link] = STATE(627), - [sym_inline_link] = STATE(627), - [sym_link_text] = STATE(1453), - [sym__comment_with_spaces] = STATE(627), - [sym_span] = STATE(627), - [sym_raw_inline] = STATE(627), - [sym_math] = STATE(627), - [sym_verbatim] = STATE(627), - [sym__todo_highlights] = STATE(627), - [sym_todo] = STATE(627), - [sym_note] = STATE(627), - [sym__symbol_fallback] = STATE(627), - [aux_sym__text] = STATE(560), - [aux_sym__inline_repeat1] = STATE(242), - [anon_sym_LBRACK] = ACTIONS(853), - [anon_sym_PIPE] = ACTIONS(858), - [anon_sym_LBRACE] = ACTIONS(863), - [sym__whitespace1] = ACTIONS(866), - [anon_sym_BSLASH] = ACTIONS(869), - [sym_quotation_marks] = ACTIONS(858), - [sym_ellipsis] = ACTIONS(858), - [sym_em_dash] = ACTIONS(858), - [sym_en_dash] = ACTIONS(863), - [sym_backslash_escape] = ACTIONS(863), - [anon_sym_LT] = ACTIONS(872), - [anon_sym_LBRACE_] = ACTIONS(875), - [anon_sym__] = ACTIONS(878), - [anon_sym_LBRACE_STAR] = ACTIONS(881), - [anon_sym_STAR] = ACTIONS(884), - [anon_sym_LBRACE_EQ] = ACTIONS(887), - [anon_sym_LBRACE_PLUS] = ACTIONS(890), - [anon_sym_PLUS_RBRACE] = ACTIONS(861), - [anon_sym_LBRACE_DASH] = ACTIONS(893), - [sym_symbol] = ACTIONS(858), - [anon_sym_LBRACE_CARET] = ACTIONS(896), - [anon_sym_CARET] = ACTIONS(896), - [anon_sym_LBRACE_TILDE] = ACTIONS(899), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_LBRACK_CARET] = ACTIONS(902), - [anon_sym_BANG_LBRACK] = ACTIONS(905), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(910), - [anon_sym_TODO] = ACTIONS(913), - [anon_sym_WIP] = ACTIONS(913), - [anon_sym_NOTE] = ACTIONS(916), - [anon_sym_INFO] = ACTIONS(916), - [anon_sym_XXX] = ACTIONS(916), - [sym_fixme] = ACTIONS(858), - [aux_sym__text_token1] = ACTIONS(919), - [sym__newline_inline] = ACTIONS(922), - [sym__verbatim_begin] = ACTIONS(925), - }, - [168] = { - [sym__inline] = STATE(2321), - [sym__inline_element_with_whitespace] = STATE(239), - [sym__inline_element_with_newline] = STATE(239), - [sym__inline_core_element] = STATE(239), - [sym__hard_line_break] = STATE(624), - [sym_hard_line_break] = STATE(527), - [sym__smart_punctuation] = STATE(624), - [sym_autolink] = STATE(624), - [sym_emphasis] = STATE(624), - [sym_emphasis_begin] = STATE(281), - [sym_strong] = STATE(624), - [sym_strong_begin] = STATE(276), - [sym_highlighted] = STATE(624), - [sym_insert] = STATE(624), - [sym_delete] = STATE(624), - [sym_superscript] = STATE(624), - [sym_subscript] = STATE(624), - [sym_footnote_reference] = STATE(624), - [sym__image] = STATE(624), - [sym_full_reference_image] = STATE(624), - [sym_collapsed_reference_image] = STATE(624), - [sym_inline_image] = STATE(624), - [sym__image_description] = STATE(1450), - [sym__link] = STATE(624), - [sym_full_reference_link] = STATE(624), - [sym_collapsed_reference_link] = STATE(624), - [sym_inline_link] = STATE(624), - [sym_link_text] = STATE(1451), - [sym__comment_with_spaces] = STATE(624), - [sym_span] = STATE(624), - [sym_raw_inline] = STATE(624), - [sym_math] = STATE(624), - [sym_verbatim] = STATE(624), - [sym__todo_highlights] = STATE(624), - [sym_todo] = STATE(624), - [sym_note] = STATE(624), - [sym__symbol_fallback] = STATE(624), - [aux_sym__text] = STATE(595), - [aux_sym__inline_repeat1] = STATE(239), - [anon_sym_LBRACK] = ACTIONS(948), - [anon_sym_PIPE] = ACTIONS(951), - [anon_sym_LBRACE] = ACTIONS(954), - [sym__whitespace1] = ACTIONS(957), - [anon_sym_BSLASH] = ACTIONS(960), - [sym_quotation_marks] = ACTIONS(951), - [sym_ellipsis] = ACTIONS(951), - [sym_em_dash] = ACTIONS(951), - [sym_en_dash] = ACTIONS(954), - [sym_backslash_escape] = ACTIONS(954), - [anon_sym_LT] = ACTIONS(963), - [anon_sym_LBRACE_] = ACTIONS(966), - [anon_sym__] = ACTIONS(969), - [anon_sym_LBRACE_STAR] = ACTIONS(972), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_LBRACE_EQ] = ACTIONS(978), - [anon_sym_LBRACE_PLUS] = ACTIONS(981), - [anon_sym_LBRACE_DASH] = ACTIONS(984), - [sym_symbol] = ACTIONS(951), - [anon_sym_LBRACE_CARET] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_LBRACE_TILDE] = ACTIONS(990), - [anon_sym_TILDE] = ACTIONS(990), - [anon_sym_LBRACK_CARET] = ACTIONS(993), - [anon_sym_BANG_LBRACK] = ACTIONS(996), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(999), - [anon_sym_TODO] = ACTIONS(1002), - [anon_sym_WIP] = ACTIONS(1002), - [anon_sym_NOTE] = ACTIONS(1005), - [anon_sym_INFO] = ACTIONS(1005), - [anon_sym_XXX] = ACTIONS(1005), - [sym_fixme] = ACTIONS(951), - [aux_sym__text_token1] = ACTIONS(1008), - [sym__eof_or_newline] = ACTIONS(861), - [sym__newline_inline] = ACTIONS(1011), - [sym__verbatim_begin] = ACTIONS(1014), - }, - [169] = { - [sym_table_cell] = STATE(1839), - [sym__inline_element_with_whitespace_without_newline] = STATE(308), - [sym__inline_core_element] = STATE(308), - [sym__hard_line_break] = STATE(1116), - [sym_hard_line_break] = STATE(711), - [sym__smart_punctuation] = STATE(1116), - [sym_autolink] = STATE(1116), - [sym_emphasis] = STATE(1116), - [sym_emphasis_begin] = STATE(271), - [sym_strong] = STATE(1116), - [sym_strong_begin] = STATE(293), - [sym_highlighted] = STATE(1116), - [sym_insert] = STATE(1116), - [sym_delete] = STATE(1116), - [sym_superscript] = STATE(1116), - [sym_subscript] = STATE(1116), - [sym_footnote_reference] = STATE(1116), - [sym__image] = STATE(1116), - [sym_full_reference_image] = STATE(1116), - [sym_collapsed_reference_image] = STATE(1116), - [sym_inline_image] = STATE(1116), - [sym__image_description] = STATE(1403), - [sym__link] = STATE(1116), - [sym_full_reference_link] = STATE(1116), - [sym_collapsed_reference_link] = STATE(1116), - [sym_inline_link] = STATE(1116), - [sym_link_text] = STATE(1404), - [sym__comment_with_spaces] = STATE(1116), - [sym_span] = STATE(1116), - [sym_raw_inline] = STATE(1116), - [sym_math] = STATE(1116), - [sym_verbatim] = STATE(1116), - [sym__todo_highlights] = STATE(1116), - [sym_todo] = STATE(1116), - [sym_note] = STATE(1116), - [sym__symbol_fallback] = STATE(1116), - [aux_sym__text] = STATE(781), - [aux_sym_table_cell_repeat1] = STATE(308), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_PIPE] = ACTIONS(1407), - [sym_table_cell_alignment] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1412), - [sym__whitespace1] = ACTIONS(1415), - [anon_sym_BSLASH] = ACTIONS(1418), - [sym_quotation_marks] = ACTIONS(1407), - [sym_ellipsis] = ACTIONS(1407), - [sym_em_dash] = ACTIONS(1412), - [sym_en_dash] = ACTIONS(1412), - [sym_backslash_escape] = ACTIONS(1412), - [anon_sym_LT] = ACTIONS(1421), - [anon_sym_LBRACE_] = ACTIONS(1424), - [anon_sym__] = ACTIONS(1427), - [anon_sym_LBRACE_STAR] = ACTIONS(1430), - [anon_sym_STAR] = ACTIONS(1433), - [anon_sym_LBRACE_EQ] = ACTIONS(1436), - [anon_sym_LBRACE_PLUS] = ACTIONS(1439), - [anon_sym_LBRACE_DASH] = ACTIONS(1442), - [sym_symbol] = ACTIONS(1412), - [anon_sym_LBRACE_CARET] = ACTIONS(1445), - [anon_sym_CARET] = ACTIONS(1445), - [anon_sym_LBRACE_TILDE] = ACTIONS(1448), - [anon_sym_TILDE] = ACTIONS(1448), - [anon_sym_LBRACK_CARET] = ACTIONS(1451), - [anon_sym_BANG_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(1457), - [anon_sym_TODO] = ACTIONS(1460), - [anon_sym_WIP] = ACTIONS(1460), - [anon_sym_NOTE] = ACTIONS(1463), - [anon_sym_INFO] = ACTIONS(1463), - [anon_sym_XXX] = ACTIONS(1463), - [sym_fixme] = ACTIONS(1407), - [aux_sym__text_token1] = ACTIONS(1466), - [sym__eof_or_newline] = ACTIONS(861), - [sym__newline_inline] = ACTIONS(861), - [sym__verbatim_begin] = ACTIONS(1469), - }, - [170] = { - [sym__inline] = STATE(2043), - [sym__inline_element_with_whitespace] = STATE(219), - [sym__inline_element_with_newline] = STATE(219), - [sym__inline_core_element] = STATE(219), - [sym__hard_line_break] = STATE(682), - [sym_hard_line_break] = STATE(518), - [sym__smart_punctuation] = STATE(682), - [sym_autolink] = STATE(682), - [sym_emphasis] = STATE(682), - [sym_emphasis_begin] = STATE(286), - [sym_strong] = STATE(682), - [sym_strong_begin] = STATE(288), - [sym_highlighted] = STATE(682), - [sym_insert] = STATE(682), - [sym_delete] = STATE(682), - [sym_superscript] = STATE(682), - [sym_subscript] = STATE(682), - [sym_footnote_reference] = STATE(682), - [sym__image] = STATE(682), - [sym_full_reference_image] = STATE(682), - [sym_collapsed_reference_image] = STATE(682), - [sym_inline_image] = STATE(682), - [sym__image_description] = STATE(1440), - [sym__link] = STATE(682), - [sym_full_reference_link] = STATE(682), - [sym_collapsed_reference_link] = STATE(682), - [sym_inline_link] = STATE(682), - [sym_link_text] = STATE(1439), - [sym__comment_with_spaces] = STATE(682), - [sym_span] = STATE(682), - [sym_raw_inline] = STATE(682), - [sym_math] = STATE(682), - [sym_verbatim] = STATE(682), - [sym__todo_highlights] = STATE(682), - [sym_todo] = STATE(682), - [sym_note] = STATE(682), - [sym__symbol_fallback] = STATE(682), - [aux_sym__text] = STATE(572), - [aux_sym__inline_repeat1] = STATE(219), - [anon_sym_LBRACK] = ACTIONS(1182), - [anon_sym_PIPE] = ACTIONS(1185), - [anon_sym_LBRACE] = ACTIONS(1188), - [sym__whitespace1] = ACTIONS(1191), - [anon_sym_BSLASH] = ACTIONS(1194), - [sym_quotation_marks] = ACTIONS(1185), - [sym_ellipsis] = ACTIONS(1185), - [sym_em_dash] = ACTIONS(1185), - [sym_en_dash] = ACTIONS(1188), - [sym_backslash_escape] = ACTIONS(1188), - [anon_sym_LT] = ACTIONS(1197), - [anon_sym_LBRACE_] = ACTIONS(1200), - [anon_sym__] = ACTIONS(1203), - [anon_sym_LBRACE_STAR] = ACTIONS(1206), - [anon_sym_STAR] = ACTIONS(1209), - [anon_sym_LBRACE_EQ] = ACTIONS(1212), - [anon_sym_LBRACE_PLUS] = ACTIONS(1215), - [anon_sym_LBRACE_DASH] = ACTIONS(1218), - [sym_symbol] = ACTIONS(1185), - [anon_sym_LBRACE_CARET] = ACTIONS(1221), - [anon_sym_CARET] = ACTIONS(1221), - [anon_sym_LBRACE_TILDE] = ACTIONS(1224), - [anon_sym_TILDE] = ACTIONS(1224), - [anon_sym_LBRACK_CARET] = ACTIONS(1227), - [anon_sym_BANG_LBRACK] = ACTIONS(1230), - [anon_sym_RBRACK2] = ACTIONS(861), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(1233), - [anon_sym_TODO] = ACTIONS(1236), - [anon_sym_WIP] = ACTIONS(1236), - [anon_sym_NOTE] = ACTIONS(1239), - [anon_sym_INFO] = ACTIONS(1239), - [anon_sym_XXX] = ACTIONS(1239), - [sym_fixme] = ACTIONS(1185), - [aux_sym__text_token1] = ACTIONS(1242), - [sym__newline_inline] = ACTIONS(1245), - [sym__verbatim_begin] = ACTIONS(1248), - }, - [171] = { - [sym__inline] = STATE(2188), - [sym__inline_element_with_whitespace] = STATE(219), - [sym__inline_element_with_newline] = STATE(219), - [sym__inline_core_element] = STATE(219), - [sym__hard_line_break] = STATE(682), - [sym_hard_line_break] = STATE(518), - [sym__smart_punctuation] = STATE(682), - [sym_autolink] = STATE(682), - [sym_emphasis] = STATE(682), - [sym_emphasis_begin] = STATE(286), - [sym_strong] = STATE(682), - [sym_strong_begin] = STATE(288), - [sym_highlighted] = STATE(682), - [sym_insert] = STATE(682), - [sym_delete] = STATE(682), - [sym_superscript] = STATE(682), - [sym_subscript] = STATE(682), - [sym_footnote_reference] = STATE(682), - [sym__image] = STATE(682), - [sym_full_reference_image] = STATE(682), - [sym_collapsed_reference_image] = STATE(682), - [sym_inline_image] = STATE(682), - [sym__image_description] = STATE(1440), - [sym__link] = STATE(682), - [sym_full_reference_link] = STATE(682), - [sym_collapsed_reference_link] = STATE(682), - [sym_inline_link] = STATE(682), - [sym_link_text] = STATE(1439), - [sym__comment_with_spaces] = STATE(682), - [sym_span] = STATE(682), - [sym_raw_inline] = STATE(682), - [sym_math] = STATE(682), - [sym_verbatim] = STATE(682), - [sym__todo_highlights] = STATE(682), - [sym_todo] = STATE(682), - [sym_note] = STATE(682), - [sym__symbol_fallback] = STATE(682), - [aux_sym__text] = STATE(572), - [aux_sym__inline_repeat1] = STATE(219), - [anon_sym_LBRACK] = ACTIONS(1182), - [anon_sym_RBRACK] = ACTIONS(861), - [anon_sym_PIPE] = ACTIONS(1185), - [anon_sym_LBRACE] = ACTIONS(1188), - [sym__whitespace1] = ACTIONS(1191), - [anon_sym_BSLASH] = ACTIONS(1194), - [sym_quotation_marks] = ACTIONS(1185), - [sym_ellipsis] = ACTIONS(1185), - [sym_em_dash] = ACTIONS(1185), - [sym_en_dash] = ACTIONS(1188), - [sym_backslash_escape] = ACTIONS(1188), - [anon_sym_LT] = ACTIONS(1197), - [anon_sym_LBRACE_] = ACTIONS(1200), - [anon_sym__] = ACTIONS(1203), - [anon_sym_LBRACE_STAR] = ACTIONS(1206), - [anon_sym_STAR] = ACTIONS(1209), - [anon_sym_LBRACE_EQ] = ACTIONS(1212), - [anon_sym_LBRACE_PLUS] = ACTIONS(1215), - [anon_sym_LBRACE_DASH] = ACTIONS(1218), - [sym_symbol] = ACTIONS(1185), - [anon_sym_LBRACE_CARET] = ACTIONS(1221), - [anon_sym_CARET] = ACTIONS(1221), - [anon_sym_LBRACE_TILDE] = ACTIONS(1224), - [anon_sym_TILDE] = ACTIONS(1224), - [anon_sym_LBRACK_CARET] = ACTIONS(1227), - [anon_sym_BANG_LBRACK] = ACTIONS(1230), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(1233), - [anon_sym_TODO] = ACTIONS(1236), - [anon_sym_WIP] = ACTIONS(1236), - [anon_sym_NOTE] = ACTIONS(1239), - [anon_sym_INFO] = ACTIONS(1239), - [anon_sym_XXX] = ACTIONS(1239), - [sym_fixme] = ACTIONS(1185), - [aux_sym__text_token1] = ACTIONS(1242), - [sym__newline_inline] = ACTIONS(1245), - [sym__verbatim_begin] = ACTIONS(1248), - }, - [172] = { - [sym__inline] = STATE(2042), - [sym__inline_element_with_whitespace] = STATE(217), - [sym__inline_element_with_newline] = STATE(217), - [sym__inline_core_element] = STATE(217), - [sym__hard_line_break] = STATE(667), - [sym_hard_line_break] = STATE(529), - [sym__smart_punctuation] = STATE(667), - [sym_autolink] = STATE(667), - [sym_emphasis] = STATE(667), - [sym_emphasis_begin] = STATE(290), - [sym_strong] = STATE(667), - [sym_strong_begin] = STATE(273), - [sym_highlighted] = STATE(667), - [sym_insert] = STATE(667), - [sym_delete] = STATE(667), - [sym_superscript] = STATE(667), - [sym_subscript] = STATE(667), - [sym_footnote_reference] = STATE(667), - [sym__image] = STATE(667), - [sym_full_reference_image] = STATE(667), - [sym_collapsed_reference_image] = STATE(667), - [sym_inline_image] = STATE(667), - [sym__image_description] = STATE(1445), - [sym__link] = STATE(667), - [sym_full_reference_link] = STATE(667), - [sym_collapsed_reference_link] = STATE(667), - [sym_inline_link] = STATE(667), - [sym_link_text] = STATE(1443), - [sym__comment_with_spaces] = STATE(667), - [sym_span] = STATE(667), - [sym_raw_inline] = STATE(667), - [sym_math] = STATE(667), - [sym_verbatim] = STATE(667), - [sym__todo_highlights] = STATE(667), - [sym_todo] = STATE(667), - [sym_note] = STATE(667), - [sym__symbol_fallback] = STATE(667), - [aux_sym__text] = STATE(554), - [aux_sym__inline_repeat1] = STATE(217), - [anon_sym_LBRACK] = ACTIONS(1257), - [anon_sym_PIPE] = ACTIONS(1260), - [anon_sym_LBRACE] = ACTIONS(1263), - [sym__whitespace1] = ACTIONS(1266), - [anon_sym_BSLASH] = ACTIONS(1269), - [sym_quotation_marks] = ACTIONS(1260), - [sym_ellipsis] = ACTIONS(1260), - [sym_em_dash] = ACTIONS(1260), - [sym_en_dash] = ACTIONS(1263), - [sym_backslash_escape] = ACTIONS(1263), - [anon_sym_LT] = ACTIONS(1272), - [anon_sym_LBRACE_] = ACTIONS(1275), - [anon_sym__] = ACTIONS(1278), - [anon_sym_LBRACE_STAR] = ACTIONS(1281), - [anon_sym_STAR] = ACTIONS(1284), - [anon_sym_LBRACE_EQ] = ACTIONS(1287), - [anon_sym_LBRACE_PLUS] = ACTIONS(1290), - [anon_sym_LBRACE_DASH] = ACTIONS(1293), - [sym_symbol] = ACTIONS(1260), - [anon_sym_LBRACE_CARET] = ACTIONS(1296), - [anon_sym_CARET] = ACTIONS(1296), - [anon_sym_LBRACE_TILDE] = ACTIONS(1299), - [anon_sym_TILDE] = ACTIONS(1299), - [anon_sym_LBRACK_CARET] = ACTIONS(1302), - [anon_sym_BANG_LBRACK] = ACTIONS(1305), - [anon_sym_RBRACK2] = ACTIONS(861), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(1308), - [anon_sym_TODO] = ACTIONS(1311), - [anon_sym_WIP] = ACTIONS(1311), - [anon_sym_NOTE] = ACTIONS(1314), - [anon_sym_INFO] = ACTIONS(1314), - [anon_sym_XXX] = ACTIONS(1314), - [sym_fixme] = ACTIONS(1260), - [aux_sym__text_token1] = ACTIONS(1317), - [sym__newline_inline] = ACTIONS(1320), - [sym__verbatim_begin] = ACTIONS(1323), - }, - [173] = { - [sym__inline] = STATE(1980), - [sym__inline_element_with_whitespace] = STATE(242), - [sym__inline_element_with_newline] = STATE(242), - [sym__inline_core_element] = STATE(242), - [sym__hard_line_break] = STATE(627), - [sym_hard_line_break] = STATE(523), - [sym__smart_punctuation] = STATE(627), - [sym_autolink] = STATE(627), - [sym_emphasis] = STATE(627), - [sym_emphasis_begin] = STATE(296), - [sym_strong] = STATE(627), - [sym_strong_begin] = STATE(295), - [sym_highlighted] = STATE(627), - [sym_insert] = STATE(627), - [sym_delete] = STATE(627), - [sym_superscript] = STATE(627), - [sym_subscript] = STATE(627), - [sym_footnote_reference] = STATE(627), - [sym__image] = STATE(627), - [sym_full_reference_image] = STATE(627), - [sym_collapsed_reference_image] = STATE(627), - [sym_inline_image] = STATE(627), - [sym__image_description] = STATE(1448), - [sym__link] = STATE(627), - [sym_full_reference_link] = STATE(627), - [sym_collapsed_reference_link] = STATE(627), - [sym_inline_link] = STATE(627), - [sym_link_text] = STATE(1453), - [sym__comment_with_spaces] = STATE(627), - [sym_span] = STATE(627), - [sym_raw_inline] = STATE(627), - [sym_math] = STATE(627), - [sym_verbatim] = STATE(627), - [sym__todo_highlights] = STATE(627), - [sym_todo] = STATE(627), - [sym_note] = STATE(627), - [sym__symbol_fallback] = STATE(627), - [aux_sym__text] = STATE(560), - [aux_sym__inline_repeat1] = STATE(242), - [anon_sym_LBRACK] = ACTIONS(853), - [anon_sym_RBRACK] = ACTIONS(856), - [anon_sym_PIPE] = ACTIONS(858), - [anon_sym_LBRACE] = ACTIONS(863), - [sym__whitespace1] = ACTIONS(866), - [anon_sym_BSLASH] = ACTIONS(869), - [sym_quotation_marks] = ACTIONS(858), - [sym_ellipsis] = ACTIONS(858), - [sym_em_dash] = ACTIONS(858), - [sym_en_dash] = ACTIONS(863), - [sym_backslash_escape] = ACTIONS(863), - [anon_sym_LT] = ACTIONS(872), - [anon_sym_LBRACE_] = ACTIONS(875), - [anon_sym__] = ACTIONS(878), - [anon_sym_LBRACE_STAR] = ACTIONS(881), - [anon_sym_STAR] = ACTIONS(884), - [anon_sym_LBRACE_EQ] = ACTIONS(887), - [anon_sym_LBRACE_PLUS] = ACTIONS(890), - [anon_sym_LBRACE_DASH] = ACTIONS(893), - [sym_symbol] = ACTIONS(858), - [anon_sym_LBRACE_CARET] = ACTIONS(896), - [anon_sym_CARET] = ACTIONS(896), - [anon_sym_LBRACE_TILDE] = ACTIONS(899), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_LBRACK_CARET] = ACTIONS(902), - [anon_sym_BANG_LBRACK] = ACTIONS(905), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(910), - [anon_sym_TODO] = ACTIONS(913), - [anon_sym_WIP] = ACTIONS(913), - [anon_sym_NOTE] = ACTIONS(916), - [anon_sym_INFO] = ACTIONS(916), - [anon_sym_XXX] = ACTIONS(916), - [sym_fixme] = ACTIONS(858), - [aux_sym__text_token1] = ACTIONS(919), - [sym__newline_inline] = ACTIONS(1474), - [sym__verbatim_begin] = ACTIONS(925), - }, - [174] = { - [sym__inline] = STATE(2373), - [sym__inline_element_with_whitespace] = STATE(242), - [sym__inline_element_with_newline] = STATE(242), - [sym__inline_core_element] = STATE(242), - [sym__hard_line_break] = STATE(627), - [sym_hard_line_break] = STATE(523), - [sym__smart_punctuation] = STATE(627), - [sym_autolink] = STATE(627), - [sym_emphasis] = STATE(627), - [sym_emphasis_begin] = STATE(296), - [sym_strong] = STATE(627), - [sym_strong_begin] = STATE(295), - [sym_highlighted] = STATE(627), - [sym_insert] = STATE(627), - [sym_delete] = STATE(627), - [sym_superscript] = STATE(627), - [sym_subscript] = STATE(627), - [sym_footnote_reference] = STATE(627), - [sym__image] = STATE(627), - [sym_full_reference_image] = STATE(627), - [sym_collapsed_reference_image] = STATE(627), - [sym_inline_image] = STATE(627), - [sym__image_description] = STATE(1448), - [sym__link] = STATE(627), - [sym_full_reference_link] = STATE(627), - [sym_collapsed_reference_link] = STATE(627), - [sym_inline_link] = STATE(627), - [sym_link_text] = STATE(1453), - [sym__comment_with_spaces] = STATE(627), - [sym_span] = STATE(627), - [sym_raw_inline] = STATE(627), - [sym_math] = STATE(627), - [sym_verbatim] = STATE(627), - [sym__todo_highlights] = STATE(627), - [sym_todo] = STATE(627), - [sym_note] = STATE(627), - [sym__symbol_fallback] = STATE(627), - [aux_sym__text] = STATE(560), - [aux_sym__inline_repeat1] = STATE(242), - [anon_sym_LBRACK] = ACTIONS(853), - [anon_sym_PIPE] = ACTIONS(858), - [anon_sym_LBRACE] = ACTIONS(863), - [sym__whitespace1] = ACTIONS(866), - [anon_sym_BSLASH] = ACTIONS(869), - [sym_quotation_marks] = ACTIONS(858), - [sym_ellipsis] = ACTIONS(858), - [sym_em_dash] = ACTIONS(858), - [sym_en_dash] = ACTIONS(863), - [sym_backslash_escape] = ACTIONS(863), - [anon_sym_LT] = ACTIONS(872), - [anon_sym_LBRACE_] = ACTIONS(875), - [anon_sym__] = ACTIONS(878), - [anon_sym_LBRACE_STAR] = ACTIONS(881), - [anon_sym_STAR] = ACTIONS(884), - [anon_sym_LBRACE_EQ] = ACTIONS(887), - [anon_sym_LBRACE_PLUS] = ACTIONS(890), - [anon_sym_LBRACE_DASH] = ACTIONS(893), - [sym_symbol] = ACTIONS(858), - [anon_sym_LBRACE_CARET] = ACTIONS(896), - [anon_sym_CARET] = ACTIONS(896), - [anon_sym_LBRACE_TILDE] = ACTIONS(899), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_LBRACK_CARET] = ACTIONS(902), - [anon_sym_BANG_LBRACK] = ACTIONS(905), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(910), - [anon_sym_TODO] = ACTIONS(913), - [anon_sym_WIP] = ACTIONS(913), - [anon_sym_NOTE] = ACTIONS(916), - [anon_sym_INFO] = ACTIONS(916), - [anon_sym_XXX] = ACTIONS(916), - [sym_fixme] = ACTIONS(858), - [aux_sym__text_token1] = ACTIONS(919), - [sym__eof_or_newline] = ACTIONS(861), - [sym__newline_inline] = ACTIONS(922), - [sym__verbatim_begin] = ACTIONS(925), - }, - [175] = { - [sym__inline] = STATE(2186), - [sym__inline_element_with_whitespace] = STATE(217), - [sym__inline_element_with_newline] = STATE(217), - [sym__inline_core_element] = STATE(217), - [sym__hard_line_break] = STATE(667), - [sym_hard_line_break] = STATE(529), - [sym__smart_punctuation] = STATE(667), - [sym_autolink] = STATE(667), - [sym_emphasis] = STATE(667), - [sym_emphasis_begin] = STATE(290), - [sym_strong] = STATE(667), - [sym_strong_begin] = STATE(273), - [sym_highlighted] = STATE(667), - [sym_insert] = STATE(667), - [sym_delete] = STATE(667), - [sym_superscript] = STATE(667), - [sym_subscript] = STATE(667), - [sym_footnote_reference] = STATE(667), - [sym__image] = STATE(667), - [sym_full_reference_image] = STATE(667), - [sym_collapsed_reference_image] = STATE(667), - [sym_inline_image] = STATE(667), - [sym__image_description] = STATE(1445), - [sym__link] = STATE(667), - [sym_full_reference_link] = STATE(667), - [sym_collapsed_reference_link] = STATE(667), - [sym_inline_link] = STATE(667), - [sym_link_text] = STATE(1443), - [sym__comment_with_spaces] = STATE(667), - [sym_span] = STATE(667), - [sym_raw_inline] = STATE(667), - [sym_math] = STATE(667), - [sym_verbatim] = STATE(667), - [sym__todo_highlights] = STATE(667), - [sym_todo] = STATE(667), - [sym_note] = STATE(667), - [sym__symbol_fallback] = STATE(667), - [aux_sym__text] = STATE(554), - [aux_sym__inline_repeat1] = STATE(217), - [anon_sym_LBRACK] = ACTIONS(1257), - [anon_sym_RBRACK] = ACTIONS(861), - [anon_sym_PIPE] = ACTIONS(1260), - [anon_sym_LBRACE] = ACTIONS(1263), - [sym__whitespace1] = ACTIONS(1266), - [anon_sym_BSLASH] = ACTIONS(1269), - [sym_quotation_marks] = ACTIONS(1260), - [sym_ellipsis] = ACTIONS(1260), - [sym_em_dash] = ACTIONS(1260), - [sym_en_dash] = ACTIONS(1263), - [sym_backslash_escape] = ACTIONS(1263), - [anon_sym_LT] = ACTIONS(1272), - [anon_sym_LBRACE_] = ACTIONS(1275), - [anon_sym__] = ACTIONS(1278), - [anon_sym_LBRACE_STAR] = ACTIONS(1281), - [anon_sym_STAR] = ACTIONS(1284), - [anon_sym_LBRACE_EQ] = ACTIONS(1287), - [anon_sym_LBRACE_PLUS] = ACTIONS(1290), - [anon_sym_LBRACE_DASH] = ACTIONS(1293), - [sym_symbol] = ACTIONS(1260), - [anon_sym_LBRACE_CARET] = ACTIONS(1296), - [anon_sym_CARET] = ACTIONS(1296), - [anon_sym_LBRACE_TILDE] = ACTIONS(1299), - [anon_sym_TILDE] = ACTIONS(1299), - [anon_sym_LBRACK_CARET] = ACTIONS(1302), - [anon_sym_BANG_LBRACK] = ACTIONS(1305), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(1308), - [anon_sym_TODO] = ACTIONS(1311), - [anon_sym_WIP] = ACTIONS(1311), - [anon_sym_NOTE] = ACTIONS(1314), - [anon_sym_INFO] = ACTIONS(1314), - [anon_sym_XXX] = ACTIONS(1314), - [sym_fixme] = ACTIONS(1260), - [aux_sym__text_token1] = ACTIONS(1317), - [sym__newline_inline] = ACTIONS(1320), - [sym__verbatim_begin] = ACTIONS(1323), - }, - [176] = { - [sym_table_cell] = STATE(1811), - [sym__inline_element_with_whitespace_without_newline] = STATE(308), - [sym__inline_core_element] = STATE(308), - [sym__hard_line_break] = STATE(1116), - [sym_hard_line_break] = STATE(711), - [sym__smart_punctuation] = STATE(1116), - [sym_autolink] = STATE(1116), - [sym_emphasis] = STATE(1116), - [sym_emphasis_begin] = STATE(271), - [sym_strong] = STATE(1116), - [sym_strong_begin] = STATE(293), - [sym_highlighted] = STATE(1116), - [sym_insert] = STATE(1116), - [sym_delete] = STATE(1116), - [sym_superscript] = STATE(1116), - [sym_subscript] = STATE(1116), - [sym_footnote_reference] = STATE(1116), - [sym__image] = STATE(1116), - [sym_full_reference_image] = STATE(1116), - [sym_collapsed_reference_image] = STATE(1116), - [sym_inline_image] = STATE(1116), - [sym__image_description] = STATE(1403), - [sym__link] = STATE(1116), - [sym_full_reference_link] = STATE(1116), - [sym_collapsed_reference_link] = STATE(1116), - [sym_inline_link] = STATE(1116), - [sym_link_text] = STATE(1404), - [sym__comment_with_spaces] = STATE(1116), - [sym_span] = STATE(1116), - [sym_raw_inline] = STATE(1116), - [sym_math] = STATE(1116), - [sym_verbatim] = STATE(1116), - [sym__todo_highlights] = STATE(1116), - [sym_todo] = STATE(1116), - [sym_note] = STATE(1116), - [sym__symbol_fallback] = STATE(1116), - [aux_sym__text] = STATE(781), - [aux_sym_table_cell_repeat1] = STATE(308), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_PIPE] = ACTIONS(1407), - [sym_table_cell_alignment] = ACTIONS(1476), - [anon_sym_LBRACE] = ACTIONS(1412), - [sym__whitespace1] = ACTIONS(1415), - [anon_sym_BSLASH] = ACTIONS(1418), - [sym_quotation_marks] = ACTIONS(1407), - [sym_ellipsis] = ACTIONS(1407), - [sym_em_dash] = ACTIONS(1412), - [sym_en_dash] = ACTIONS(1412), - [sym_backslash_escape] = ACTIONS(1412), - [anon_sym_LT] = ACTIONS(1421), - [anon_sym_LBRACE_] = ACTIONS(1424), - [anon_sym__] = ACTIONS(1427), - [anon_sym_LBRACE_STAR] = ACTIONS(1430), - [anon_sym_STAR] = ACTIONS(1433), - [anon_sym_LBRACE_EQ] = ACTIONS(1436), - [anon_sym_LBRACE_PLUS] = ACTIONS(1439), - [anon_sym_LBRACE_DASH] = ACTIONS(1442), - [sym_symbol] = ACTIONS(1412), - [anon_sym_LBRACE_CARET] = ACTIONS(1445), - [anon_sym_CARET] = ACTIONS(1445), - [anon_sym_LBRACE_TILDE] = ACTIONS(1448), - [anon_sym_TILDE] = ACTIONS(1448), - [anon_sym_LBRACK_CARET] = ACTIONS(1451), - [anon_sym_BANG_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(1457), - [anon_sym_TODO] = ACTIONS(1460), - [anon_sym_WIP] = ACTIONS(1460), - [anon_sym_NOTE] = ACTIONS(1463), - [anon_sym_INFO] = ACTIONS(1463), - [anon_sym_XXX] = ACTIONS(1463), - [sym_fixme] = ACTIONS(1407), - [aux_sym__text_token1] = ACTIONS(1466), - [sym__eof_or_newline] = ACTIONS(861), - [sym__newline_inline] = ACTIONS(861), - [sym__verbatim_begin] = ACTIONS(1469), - }, - [177] = { - [sym__inline] = STATE(2041), - [sym__inline_element_with_whitespace] = STATE(239), - [sym__inline_element_with_newline] = STATE(239), - [sym__inline_core_element] = STATE(239), - [sym__hard_line_break] = STATE(624), - [sym_hard_line_break] = STATE(527), - [sym__smart_punctuation] = STATE(624), - [sym_autolink] = STATE(624), - [sym_emphasis] = STATE(624), - [sym_emphasis_begin] = STATE(281), - [sym_strong] = STATE(624), - [sym_strong_begin] = STATE(276), - [sym_highlighted] = STATE(624), - [sym_insert] = STATE(624), - [sym_delete] = STATE(624), - [sym_superscript] = STATE(624), - [sym_subscript] = STATE(624), - [sym_footnote_reference] = STATE(624), - [sym__image] = STATE(624), - [sym_full_reference_image] = STATE(624), - [sym_collapsed_reference_image] = STATE(624), - [sym_inline_image] = STATE(624), - [sym__image_description] = STATE(1450), - [sym__link] = STATE(624), - [sym_full_reference_link] = STATE(624), - [sym_collapsed_reference_link] = STATE(624), - [sym_inline_link] = STATE(624), - [sym_link_text] = STATE(1451), - [sym__comment_with_spaces] = STATE(624), - [sym_span] = STATE(624), - [sym_raw_inline] = STATE(624), - [sym_math] = STATE(624), - [sym_verbatim] = STATE(624), - [sym__todo_highlights] = STATE(624), - [sym_todo] = STATE(624), - [sym_note] = STATE(624), - [sym__symbol_fallback] = STATE(624), - [aux_sym__text] = STATE(595), - [aux_sym__inline_repeat1] = STATE(239), - [anon_sym_LBRACK] = ACTIONS(948), - [anon_sym_PIPE] = ACTIONS(951), - [anon_sym_LBRACE] = ACTIONS(954), - [sym__whitespace1] = ACTIONS(957), - [anon_sym_BSLASH] = ACTIONS(960), - [sym_quotation_marks] = ACTIONS(951), - [sym_ellipsis] = ACTIONS(951), - [sym_em_dash] = ACTIONS(951), - [sym_en_dash] = ACTIONS(954), - [sym_backslash_escape] = ACTIONS(954), - [anon_sym_LT] = ACTIONS(963), - [anon_sym_LBRACE_] = ACTIONS(966), - [anon_sym__] = ACTIONS(969), - [anon_sym_LBRACE_STAR] = ACTIONS(972), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_LBRACE_EQ] = ACTIONS(978), - [anon_sym_LBRACE_PLUS] = ACTIONS(981), - [anon_sym_LBRACE_DASH] = ACTIONS(984), - [sym_symbol] = ACTIONS(951), - [anon_sym_LBRACE_CARET] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_LBRACE_TILDE] = ACTIONS(990), - [anon_sym_TILDE] = ACTIONS(990), - [anon_sym_LBRACK_CARET] = ACTIONS(993), - [anon_sym_BANG_LBRACK] = ACTIONS(996), - [anon_sym_RBRACK2] = ACTIONS(861), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(999), - [anon_sym_TODO] = ACTIONS(1002), - [anon_sym_WIP] = ACTIONS(1002), - [anon_sym_NOTE] = ACTIONS(1005), - [anon_sym_INFO] = ACTIONS(1005), - [anon_sym_XXX] = ACTIONS(1005), - [sym_fixme] = ACTIONS(951), - [aux_sym__text_token1] = ACTIONS(1008), - [sym__newline_inline] = ACTIONS(1011), - [sym__verbatim_begin] = ACTIONS(1014), - }, - [178] = { - [sym__inline] = STATE(2372), - [sym__inline_element_with_whitespace] = STATE(242), - [sym__inline_element_with_newline] = STATE(242), - [sym__inline_core_element] = STATE(242), - [sym__hard_line_break] = STATE(627), - [sym_hard_line_break] = STATE(523), - [sym__smart_punctuation] = STATE(627), - [sym_autolink] = STATE(627), - [sym_emphasis] = STATE(627), - [sym_emphasis_begin] = STATE(296), - [sym_strong] = STATE(627), - [sym_strong_begin] = STATE(295), - [sym_highlighted] = STATE(627), - [sym_insert] = STATE(627), - [sym_delete] = STATE(627), - [sym_superscript] = STATE(627), - [sym_subscript] = STATE(627), - [sym_footnote_reference] = STATE(627), - [sym__image] = STATE(627), - [sym_full_reference_image] = STATE(627), - [sym_collapsed_reference_image] = STATE(627), - [sym_inline_image] = STATE(627), - [sym__image_description] = STATE(1448), - [sym__link] = STATE(627), - [sym_full_reference_link] = STATE(627), - [sym_collapsed_reference_link] = STATE(627), - [sym_inline_link] = STATE(627), - [sym_link_text] = STATE(1453), - [sym__comment_with_spaces] = STATE(627), - [sym_span] = STATE(627), - [sym_raw_inline] = STATE(627), - [sym_math] = STATE(627), - [sym_verbatim] = STATE(627), - [sym__todo_highlights] = STATE(627), - [sym_todo] = STATE(627), - [sym_note] = STATE(627), - [sym__symbol_fallback] = STATE(627), - [aux_sym__text] = STATE(560), - [aux_sym__inline_repeat1] = STATE(242), - [anon_sym_LBRACK] = ACTIONS(853), - [anon_sym_PIPE] = ACTIONS(858), - [anon_sym_LBRACE] = ACTIONS(863), - [sym__whitespace1] = ACTIONS(866), - [anon_sym_BSLASH] = ACTIONS(869), - [sym_quotation_marks] = ACTIONS(858), - [sym_ellipsis] = ACTIONS(858), - [sym_em_dash] = ACTIONS(858), - [sym_en_dash] = ACTIONS(863), - [sym_backslash_escape] = ACTIONS(863), - [anon_sym_LT] = ACTIONS(872), - [anon_sym_LBRACE_] = ACTIONS(875), - [anon_sym__] = ACTIONS(878), - [anon_sym_LBRACE_STAR] = ACTIONS(881), - [anon_sym_STAR] = ACTIONS(884), - [anon_sym_LBRACE_EQ] = ACTIONS(887), - [anon_sym_LBRACE_PLUS] = ACTIONS(890), - [anon_sym_LBRACE_DASH] = ACTIONS(893), - [sym_symbol] = ACTIONS(858), - [anon_sym_LBRACE_CARET] = ACTIONS(896), - [anon_sym_CARET] = ACTIONS(896), - [anon_sym_LBRACE_TILDE] = ACTIONS(899), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_LBRACK_CARET] = ACTIONS(902), - [anon_sym_BANG_LBRACK] = ACTIONS(905), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(910), - [anon_sym_TODO] = ACTIONS(913), - [anon_sym_WIP] = ACTIONS(913), - [anon_sym_NOTE] = ACTIONS(916), - [anon_sym_INFO] = ACTIONS(916), - [anon_sym_XXX] = ACTIONS(916), - [sym_fixme] = ACTIONS(858), - [aux_sym__text_token1] = ACTIONS(919), - [sym__eof_or_newline] = ACTIONS(861), - [sym__newline_inline] = ACTIONS(922), - [sym__verbatim_begin] = ACTIONS(925), - }, - [179] = { - [sym_table_cell] = STATE(1869), - [sym__inline_element_with_whitespace_without_newline] = STATE(308), - [sym__inline_core_element] = STATE(308), - [sym__hard_line_break] = STATE(1116), - [sym_hard_line_break] = STATE(711), - [sym__smart_punctuation] = STATE(1116), - [sym_autolink] = STATE(1116), - [sym_emphasis] = STATE(1116), - [sym_emphasis_begin] = STATE(271), - [sym_strong] = STATE(1116), - [sym_strong_begin] = STATE(293), - [sym_highlighted] = STATE(1116), - [sym_insert] = STATE(1116), - [sym_delete] = STATE(1116), - [sym_superscript] = STATE(1116), - [sym_subscript] = STATE(1116), - [sym_footnote_reference] = STATE(1116), - [sym__image] = STATE(1116), - [sym_full_reference_image] = STATE(1116), - [sym_collapsed_reference_image] = STATE(1116), - [sym_inline_image] = STATE(1116), - [sym__image_description] = STATE(1403), - [sym__link] = STATE(1116), - [sym_full_reference_link] = STATE(1116), - [sym_collapsed_reference_link] = STATE(1116), - [sym_inline_link] = STATE(1116), - [sym_link_text] = STATE(1404), - [sym__comment_with_spaces] = STATE(1116), - [sym_span] = STATE(1116), - [sym_raw_inline] = STATE(1116), - [sym_math] = STATE(1116), - [sym_verbatim] = STATE(1116), - [sym__todo_highlights] = STATE(1116), - [sym_todo] = STATE(1116), - [sym_note] = STATE(1116), - [sym__symbol_fallback] = STATE(1116), - [aux_sym__text] = STATE(781), - [aux_sym_table_cell_repeat1] = STATE(308), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_PIPE] = ACTIONS(1407), - [sym_table_cell_alignment] = ACTIONS(1478), - [anon_sym_LBRACE] = ACTIONS(1412), - [sym__whitespace1] = ACTIONS(1415), - [anon_sym_BSLASH] = ACTIONS(1418), - [sym_quotation_marks] = ACTIONS(1407), - [sym_ellipsis] = ACTIONS(1407), - [sym_em_dash] = ACTIONS(1412), - [sym_en_dash] = ACTIONS(1412), - [sym_backslash_escape] = ACTIONS(1412), - [anon_sym_LT] = ACTIONS(1421), - [anon_sym_LBRACE_] = ACTIONS(1424), - [anon_sym__] = ACTIONS(1427), - [anon_sym_LBRACE_STAR] = ACTIONS(1430), - [anon_sym_STAR] = ACTIONS(1433), - [anon_sym_LBRACE_EQ] = ACTIONS(1436), - [anon_sym_LBRACE_PLUS] = ACTIONS(1439), - [anon_sym_LBRACE_DASH] = ACTIONS(1442), - [sym_symbol] = ACTIONS(1412), - [anon_sym_LBRACE_CARET] = ACTIONS(1445), - [anon_sym_CARET] = ACTIONS(1445), - [anon_sym_LBRACE_TILDE] = ACTIONS(1448), - [anon_sym_TILDE] = ACTIONS(1448), - [anon_sym_LBRACK_CARET] = ACTIONS(1451), - [anon_sym_BANG_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(1457), - [anon_sym_TODO] = ACTIONS(1460), - [anon_sym_WIP] = ACTIONS(1460), - [anon_sym_NOTE] = ACTIONS(1463), - [anon_sym_INFO] = ACTIONS(1463), - [anon_sym_XXX] = ACTIONS(1463), - [sym_fixme] = ACTIONS(1407), - [aux_sym__text_token1] = ACTIONS(1466), - [sym__eof_or_newline] = ACTIONS(861), - [sym__newline_inline] = ACTIONS(861), - [sym__verbatim_begin] = ACTIONS(1469), - }, - [180] = { - [sym__inline] = STATE(2121), - [sym__inline_element_with_whitespace] = STATE(242), - [sym__inline_element_with_newline] = STATE(242), - [sym__inline_core_element] = STATE(242), - [sym__hard_line_break] = STATE(627), - [sym_hard_line_break] = STATE(523), - [sym__smart_punctuation] = STATE(627), - [sym_autolink] = STATE(627), - [sym_emphasis] = STATE(627), - [sym_emphasis_begin] = STATE(296), - [sym_strong] = STATE(627), - [sym_strong_begin] = STATE(295), - [sym_highlighted] = STATE(627), - [sym_insert] = STATE(627), - [sym_delete] = STATE(627), - [sym_superscript] = STATE(627), - [sym_subscript] = STATE(627), - [sym_footnote_reference] = STATE(627), - [sym__image] = STATE(627), - [sym_full_reference_image] = STATE(627), - [sym_collapsed_reference_image] = STATE(627), - [sym_inline_image] = STATE(627), - [sym__image_description] = STATE(1448), - [sym__link] = STATE(627), - [sym_full_reference_link] = STATE(627), - [sym_collapsed_reference_link] = STATE(627), - [sym_inline_link] = STATE(627), - [sym_link_text] = STATE(1453), - [sym__comment_with_spaces] = STATE(627), - [sym_span] = STATE(627), - [sym_raw_inline] = STATE(627), - [sym_math] = STATE(627), - [sym_verbatim] = STATE(627), - [sym__todo_highlights] = STATE(627), - [sym_todo] = STATE(627), - [sym_note] = STATE(627), - [sym__symbol_fallback] = STATE(627), - [aux_sym__text] = STATE(560), - [aux_sym__inline_repeat1] = STATE(242), - [anon_sym_LBRACK] = ACTIONS(853), - [anon_sym_PIPE] = ACTIONS(858), - [anon_sym_LBRACE] = ACTIONS(863), - [sym__whitespace1] = ACTIONS(866), - [anon_sym_BSLASH] = ACTIONS(869), - [sym_quotation_marks] = ACTIONS(858), - [sym_ellipsis] = ACTIONS(858), - [sym_em_dash] = ACTIONS(858), - [sym_en_dash] = ACTIONS(863), - [sym_backslash_escape] = ACTIONS(863), - [anon_sym_LT] = ACTIONS(872), - [anon_sym_LBRACE_] = ACTIONS(875), - [anon_sym__] = ACTIONS(878), - [anon_sym_LBRACE_STAR] = ACTIONS(881), - [anon_sym_STAR] = ACTIONS(884), - [anon_sym_LBRACE_EQ] = ACTIONS(887), - [anon_sym_LBRACE_PLUS] = ACTIONS(890), - [anon_sym_LBRACE_DASH] = ACTIONS(893), - [sym_symbol] = ACTIONS(858), - [anon_sym_LBRACE_CARET] = ACTIONS(896), - [anon_sym_CARET] = ACTIONS(896), - [anon_sym_LBRACE_TILDE] = ACTIONS(899), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_LBRACK_CARET] = ACTIONS(902), - [anon_sym_BANG_LBRACK] = ACTIONS(905), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(910), - [anon_sym_TODO] = ACTIONS(913), - [anon_sym_WIP] = ACTIONS(913), - [anon_sym_NOTE] = ACTIONS(916), - [anon_sym_INFO] = ACTIONS(916), - [anon_sym_XXX] = ACTIONS(916), - [sym_fixme] = ACTIONS(858), - [aux_sym__text_token1] = ACTIONS(919), - [sym__eof_or_newline] = ACTIONS(861), - [sym__newline_inline] = ACTIONS(922), - [sym__verbatim_begin] = ACTIONS(925), - }, - [181] = { - [sym_table_cell] = STATE(1788), - [sym__inline_element_with_whitespace_without_newline] = STATE(308), - [sym__inline_core_element] = STATE(308), - [sym__hard_line_break] = STATE(1116), - [sym_hard_line_break] = STATE(711), - [sym__smart_punctuation] = STATE(1116), - [sym_autolink] = STATE(1116), - [sym_emphasis] = STATE(1116), - [sym_emphasis_begin] = STATE(271), - [sym_strong] = STATE(1116), - [sym_strong_begin] = STATE(293), - [sym_highlighted] = STATE(1116), - [sym_insert] = STATE(1116), - [sym_delete] = STATE(1116), - [sym_superscript] = STATE(1116), - [sym_subscript] = STATE(1116), - [sym_footnote_reference] = STATE(1116), - [sym__image] = STATE(1116), - [sym_full_reference_image] = STATE(1116), - [sym_collapsed_reference_image] = STATE(1116), - [sym_inline_image] = STATE(1116), - [sym__image_description] = STATE(1403), - [sym__link] = STATE(1116), - [sym_full_reference_link] = STATE(1116), - [sym_collapsed_reference_link] = STATE(1116), - [sym_inline_link] = STATE(1116), - [sym_link_text] = STATE(1404), - [sym__comment_with_spaces] = STATE(1116), - [sym_span] = STATE(1116), - [sym_raw_inline] = STATE(1116), - [sym_math] = STATE(1116), - [sym_verbatim] = STATE(1116), - [sym__todo_highlights] = STATE(1116), - [sym_todo] = STATE(1116), - [sym_note] = STATE(1116), - [sym__symbol_fallback] = STATE(1116), - [aux_sym__text] = STATE(781), - [aux_sym_table_cell_repeat1] = STATE(308), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_PIPE] = ACTIONS(1407), - [sym_table_cell_alignment] = ACTIONS(1480), - [anon_sym_LBRACE] = ACTIONS(1412), - [sym__whitespace1] = ACTIONS(1415), - [anon_sym_BSLASH] = ACTIONS(1418), - [sym_quotation_marks] = ACTIONS(1407), - [sym_ellipsis] = ACTIONS(1407), - [sym_em_dash] = ACTIONS(1412), - [sym_en_dash] = ACTIONS(1412), - [sym_backslash_escape] = ACTIONS(1412), - [anon_sym_LT] = ACTIONS(1421), - [anon_sym_LBRACE_] = ACTIONS(1424), - [anon_sym__] = ACTIONS(1427), - [anon_sym_LBRACE_STAR] = ACTIONS(1430), - [anon_sym_STAR] = ACTIONS(1433), - [anon_sym_LBRACE_EQ] = ACTIONS(1436), - [anon_sym_LBRACE_PLUS] = ACTIONS(1439), - [anon_sym_LBRACE_DASH] = ACTIONS(1442), - [sym_symbol] = ACTIONS(1412), - [anon_sym_LBRACE_CARET] = ACTIONS(1445), - [anon_sym_CARET] = ACTIONS(1445), - [anon_sym_LBRACE_TILDE] = ACTIONS(1448), - [anon_sym_TILDE] = ACTIONS(1448), - [anon_sym_LBRACK_CARET] = ACTIONS(1451), - [anon_sym_BANG_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(1457), - [anon_sym_TODO] = ACTIONS(1460), - [anon_sym_WIP] = ACTIONS(1460), - [anon_sym_NOTE] = ACTIONS(1463), - [anon_sym_INFO] = ACTIONS(1463), - [anon_sym_XXX] = ACTIONS(1463), - [sym_fixme] = ACTIONS(1407), - [aux_sym__text_token1] = ACTIONS(1466), - [sym__eof_or_newline] = ACTIONS(861), - [sym__newline_inline] = ACTIONS(861), - [sym__verbatim_begin] = ACTIONS(1469), - }, - [182] = { - [sym__inline] = STATE(2185), - [sym__inline_element_with_whitespace] = STATE(239), - [sym__inline_element_with_newline] = STATE(239), - [sym__inline_core_element] = STATE(239), - [sym__hard_line_break] = STATE(624), - [sym_hard_line_break] = STATE(527), - [sym__smart_punctuation] = STATE(624), - [sym_autolink] = STATE(624), - [sym_emphasis] = STATE(624), - [sym_emphasis_begin] = STATE(281), - [sym_strong] = STATE(624), - [sym_strong_begin] = STATE(276), - [sym_highlighted] = STATE(624), - [sym_insert] = STATE(624), - [sym_delete] = STATE(624), - [sym_superscript] = STATE(624), - [sym_subscript] = STATE(624), - [sym_footnote_reference] = STATE(624), - [sym__image] = STATE(624), - [sym_full_reference_image] = STATE(624), - [sym_collapsed_reference_image] = STATE(624), - [sym_inline_image] = STATE(624), - [sym__image_description] = STATE(1450), - [sym__link] = STATE(624), - [sym_full_reference_link] = STATE(624), - [sym_collapsed_reference_link] = STATE(624), - [sym_inline_link] = STATE(624), - [sym_link_text] = STATE(1451), - [sym__comment_with_spaces] = STATE(624), - [sym_span] = STATE(624), - [sym_raw_inline] = STATE(624), - [sym_math] = STATE(624), - [sym_verbatim] = STATE(624), - [sym__todo_highlights] = STATE(624), - [sym_todo] = STATE(624), - [sym_note] = STATE(624), - [sym__symbol_fallback] = STATE(624), - [aux_sym__text] = STATE(595), - [aux_sym__inline_repeat1] = STATE(239), - [anon_sym_LBRACK] = ACTIONS(948), - [anon_sym_RBRACK] = ACTIONS(861), - [anon_sym_PIPE] = ACTIONS(951), - [anon_sym_LBRACE] = ACTIONS(954), - [sym__whitespace1] = ACTIONS(957), - [anon_sym_BSLASH] = ACTIONS(960), - [sym_quotation_marks] = ACTIONS(951), - [sym_ellipsis] = ACTIONS(951), - [sym_em_dash] = ACTIONS(951), - [sym_en_dash] = ACTIONS(954), - [sym_backslash_escape] = ACTIONS(954), - [anon_sym_LT] = ACTIONS(963), - [anon_sym_LBRACE_] = ACTIONS(966), - [anon_sym__] = ACTIONS(969), - [anon_sym_LBRACE_STAR] = ACTIONS(972), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_LBRACE_EQ] = ACTIONS(978), - [anon_sym_LBRACE_PLUS] = ACTIONS(981), - [anon_sym_LBRACE_DASH] = ACTIONS(984), - [sym_symbol] = ACTIONS(951), - [anon_sym_LBRACE_CARET] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_LBRACE_TILDE] = ACTIONS(990), - [anon_sym_TILDE] = ACTIONS(990), - [anon_sym_LBRACK_CARET] = ACTIONS(993), - [anon_sym_BANG_LBRACK] = ACTIONS(996), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(999), - [anon_sym_TODO] = ACTIONS(1002), - [anon_sym_WIP] = ACTIONS(1002), - [anon_sym_NOTE] = ACTIONS(1005), - [anon_sym_INFO] = ACTIONS(1005), - [anon_sym_XXX] = ACTIONS(1005), - [sym_fixme] = ACTIONS(951), - [aux_sym__text_token1] = ACTIONS(1008), - [sym__newline_inline] = ACTIONS(1011), - [sym__verbatim_begin] = ACTIONS(1014), - }, - [183] = { - [sym__inline] = STATE(2160), - [sym__inline_element_with_whitespace] = STATE(239), - [sym__inline_element_with_newline] = STATE(239), - [sym__inline_core_element] = STATE(239), - [sym__hard_line_break] = STATE(624), - [sym_hard_line_break] = STATE(527), - [sym__smart_punctuation] = STATE(624), - [sym_autolink] = STATE(624), - [sym_emphasis] = STATE(624), - [sym_emphasis_begin] = STATE(281), - [sym_strong] = STATE(624), - [sym_strong_begin] = STATE(276), - [sym_highlighted] = STATE(624), - [sym_insert] = STATE(624), - [sym_delete] = STATE(624), - [sym_superscript] = STATE(624), - [sym_subscript] = STATE(624), - [sym_footnote_reference] = STATE(624), - [sym__image] = STATE(624), - [sym_full_reference_image] = STATE(624), - [sym_collapsed_reference_image] = STATE(624), - [sym_inline_image] = STATE(624), - [sym__image_description] = STATE(1450), - [sym__link] = STATE(624), - [sym_full_reference_link] = STATE(624), - [sym_collapsed_reference_link] = STATE(624), - [sym_inline_link] = STATE(624), - [sym_link_text] = STATE(1451), - [sym__comment_with_spaces] = STATE(624), - [sym_span] = STATE(624), - [sym_raw_inline] = STATE(624), - [sym_math] = STATE(624), - [sym_verbatim] = STATE(624), - [sym__todo_highlights] = STATE(624), - [sym_todo] = STATE(624), - [sym_note] = STATE(624), - [sym__symbol_fallback] = STATE(624), - [aux_sym__text] = STATE(595), - [aux_sym__inline_repeat1] = STATE(239), - [anon_sym_LBRACK] = ACTIONS(948), - [anon_sym_PIPE] = ACTIONS(951), - [anon_sym_LBRACE] = ACTIONS(954), - [sym__whitespace1] = ACTIONS(957), - [anon_sym_BSLASH] = ACTIONS(960), - [sym_quotation_marks] = ACTIONS(951), - [sym_ellipsis] = ACTIONS(951), - [sym_em_dash] = ACTIONS(951), - [sym_en_dash] = ACTIONS(954), - [sym_backslash_escape] = ACTIONS(954), - [anon_sym_LT] = ACTIONS(963), - [anon_sym_LBRACE_] = ACTIONS(966), - [anon_sym__] = ACTIONS(969), - [anon_sym_LBRACE_STAR] = ACTIONS(972), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_LBRACE_EQ] = ACTIONS(978), - [anon_sym_EQ_RBRACE] = ACTIONS(861), - [anon_sym_LBRACE_PLUS] = ACTIONS(981), - [anon_sym_LBRACE_DASH] = ACTIONS(984), - [sym_symbol] = ACTIONS(951), - [anon_sym_LBRACE_CARET] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_LBRACE_TILDE] = ACTIONS(990), - [anon_sym_TILDE] = ACTIONS(990), - [anon_sym_LBRACK_CARET] = ACTIONS(993), - [anon_sym_BANG_LBRACK] = ACTIONS(996), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(999), - [anon_sym_TODO] = ACTIONS(1002), - [anon_sym_WIP] = ACTIONS(1002), - [anon_sym_NOTE] = ACTIONS(1005), - [anon_sym_INFO] = ACTIONS(1005), - [anon_sym_XXX] = ACTIONS(1005), - [sym_fixme] = ACTIONS(951), - [aux_sym__text_token1] = ACTIONS(1008), - [sym__newline_inline] = ACTIONS(1011), - [sym__verbatim_begin] = ACTIONS(1014), - }, - [184] = { - [sym__inline] = STATE(2159), - [sym__inline_element_with_whitespace] = STATE(217), - [sym__inline_element_with_newline] = STATE(217), - [sym__inline_core_element] = STATE(217), - [sym__hard_line_break] = STATE(667), - [sym_hard_line_break] = STATE(529), - [sym__smart_punctuation] = STATE(667), - [sym_autolink] = STATE(667), - [sym_emphasis] = STATE(667), - [sym_emphasis_begin] = STATE(290), - [sym_strong] = STATE(667), - [sym_strong_begin] = STATE(273), - [sym_highlighted] = STATE(667), - [sym_insert] = STATE(667), - [sym_delete] = STATE(667), - [sym_superscript] = STATE(667), - [sym_subscript] = STATE(667), - [sym_footnote_reference] = STATE(667), - [sym__image] = STATE(667), - [sym_full_reference_image] = STATE(667), - [sym_collapsed_reference_image] = STATE(667), - [sym_inline_image] = STATE(667), - [sym__image_description] = STATE(1445), - [sym__link] = STATE(667), - [sym_full_reference_link] = STATE(667), - [sym_collapsed_reference_link] = STATE(667), - [sym_inline_link] = STATE(667), - [sym_link_text] = STATE(1443), - [sym__comment_with_spaces] = STATE(667), - [sym_span] = STATE(667), - [sym_raw_inline] = STATE(667), - [sym_math] = STATE(667), - [sym_verbatim] = STATE(667), - [sym__todo_highlights] = STATE(667), - [sym_todo] = STATE(667), - [sym_note] = STATE(667), - [sym__symbol_fallback] = STATE(667), - [aux_sym__text] = STATE(554), - [aux_sym__inline_repeat1] = STATE(217), - [anon_sym_LBRACK] = ACTIONS(1257), - [anon_sym_PIPE] = ACTIONS(1260), - [anon_sym_LBRACE] = ACTIONS(1263), - [sym__whitespace1] = ACTIONS(1266), - [anon_sym_BSLASH] = ACTIONS(1269), - [sym_quotation_marks] = ACTIONS(1260), - [sym_ellipsis] = ACTIONS(1260), - [sym_em_dash] = ACTIONS(1260), - [sym_en_dash] = ACTIONS(1263), - [sym_backslash_escape] = ACTIONS(1263), - [anon_sym_LT] = ACTIONS(1272), - [anon_sym_LBRACE_] = ACTIONS(1275), - [anon_sym__] = ACTIONS(1278), - [anon_sym_LBRACE_STAR] = ACTIONS(1281), - [anon_sym_STAR] = ACTIONS(1284), - [anon_sym_LBRACE_EQ] = ACTIONS(1287), - [anon_sym_EQ_RBRACE] = ACTIONS(861), - [anon_sym_LBRACE_PLUS] = ACTIONS(1290), - [anon_sym_LBRACE_DASH] = ACTIONS(1293), - [sym_symbol] = ACTIONS(1260), - [anon_sym_LBRACE_CARET] = ACTIONS(1296), - [anon_sym_CARET] = ACTIONS(1296), - [anon_sym_LBRACE_TILDE] = ACTIONS(1299), - [anon_sym_TILDE] = ACTIONS(1299), - [anon_sym_LBRACK_CARET] = ACTIONS(1302), - [anon_sym_BANG_LBRACK] = ACTIONS(1305), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(1308), - [anon_sym_TODO] = ACTIONS(1311), - [anon_sym_WIP] = ACTIONS(1311), - [anon_sym_NOTE] = ACTIONS(1314), - [anon_sym_INFO] = ACTIONS(1314), - [anon_sym_XXX] = ACTIONS(1314), - [sym_fixme] = ACTIONS(1260), - [aux_sym__text_token1] = ACTIONS(1317), - [sym__newline_inline] = ACTIONS(1320), - [sym__verbatim_begin] = ACTIONS(1323), - }, - [185] = { - [sym__inline] = STATE(2158), - [sym__inline_element_with_whitespace] = STATE(219), - [sym__inline_element_with_newline] = STATE(219), - [sym__inline_core_element] = STATE(219), - [sym__hard_line_break] = STATE(682), - [sym_hard_line_break] = STATE(518), - [sym__smart_punctuation] = STATE(682), - [sym_autolink] = STATE(682), - [sym_emphasis] = STATE(682), - [sym_emphasis_begin] = STATE(286), - [sym_strong] = STATE(682), - [sym_strong_begin] = STATE(288), - [sym_highlighted] = STATE(682), - [sym_insert] = STATE(682), - [sym_delete] = STATE(682), - [sym_superscript] = STATE(682), - [sym_subscript] = STATE(682), - [sym_footnote_reference] = STATE(682), - [sym__image] = STATE(682), - [sym_full_reference_image] = STATE(682), - [sym_collapsed_reference_image] = STATE(682), - [sym_inline_image] = STATE(682), - [sym__image_description] = STATE(1440), - [sym__link] = STATE(682), - [sym_full_reference_link] = STATE(682), - [sym_collapsed_reference_link] = STATE(682), - [sym_inline_link] = STATE(682), - [sym_link_text] = STATE(1439), - [sym__comment_with_spaces] = STATE(682), - [sym_span] = STATE(682), - [sym_raw_inline] = STATE(682), - [sym_math] = STATE(682), - [sym_verbatim] = STATE(682), - [sym__todo_highlights] = STATE(682), - [sym_todo] = STATE(682), - [sym_note] = STATE(682), - [sym__symbol_fallback] = STATE(682), - [aux_sym__text] = STATE(572), - [aux_sym__inline_repeat1] = STATE(219), - [anon_sym_LBRACK] = ACTIONS(1182), - [anon_sym_PIPE] = ACTIONS(1185), - [anon_sym_LBRACE] = ACTIONS(1188), - [sym__whitespace1] = ACTIONS(1191), - [anon_sym_BSLASH] = ACTIONS(1194), - [sym_quotation_marks] = ACTIONS(1185), - [sym_ellipsis] = ACTIONS(1185), - [sym_em_dash] = ACTIONS(1185), - [sym_en_dash] = ACTIONS(1188), - [sym_backslash_escape] = ACTIONS(1188), - [anon_sym_LT] = ACTIONS(1197), - [anon_sym_LBRACE_] = ACTIONS(1200), - [anon_sym__] = ACTIONS(1203), - [anon_sym_LBRACE_STAR] = ACTIONS(1206), - [anon_sym_STAR] = ACTIONS(1209), - [anon_sym_LBRACE_EQ] = ACTIONS(1212), - [anon_sym_EQ_RBRACE] = ACTIONS(861), - [anon_sym_LBRACE_PLUS] = ACTIONS(1215), - [anon_sym_LBRACE_DASH] = ACTIONS(1218), - [sym_symbol] = ACTIONS(1185), - [anon_sym_LBRACE_CARET] = ACTIONS(1221), - [anon_sym_CARET] = ACTIONS(1221), - [anon_sym_LBRACE_TILDE] = ACTIONS(1224), - [anon_sym_TILDE] = ACTIONS(1224), - [anon_sym_LBRACK_CARET] = ACTIONS(1227), - [anon_sym_BANG_LBRACK] = ACTIONS(1230), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(1233), - [anon_sym_TODO] = ACTIONS(1236), - [anon_sym_WIP] = ACTIONS(1236), - [anon_sym_NOTE] = ACTIONS(1239), - [anon_sym_INFO] = ACTIONS(1239), - [anon_sym_XXX] = ACTIONS(1239), - [sym_fixme] = ACTIONS(1185), - [aux_sym__text_token1] = ACTIONS(1242), - [sym__newline_inline] = ACTIONS(1245), - [sym__verbatim_begin] = ACTIONS(1248), - }, - [186] = { - [sym__inline] = STATE(1854), - [sym__inline_element_with_whitespace] = STATE(230), - [sym__inline_element_with_newline] = STATE(230), - [sym__inline_core_element] = STATE(230), - [sym__hard_line_break] = STATE(688), - [sym_hard_line_break] = STATE(516), - [sym__smart_punctuation] = STATE(688), - [sym_autolink] = STATE(688), - [sym_emphasis] = STATE(688), - [sym_emphasis_begin] = STATE(291), - [sym_strong] = STATE(688), - [sym_strong_begin] = STATE(272), - [sym_highlighted] = STATE(688), - [sym_insert] = STATE(688), - [sym_delete] = STATE(688), - [sym_superscript] = STATE(688), - [sym_subscript] = STATE(688), - [sym_footnote_reference] = STATE(688), - [sym__image] = STATE(688), - [sym_full_reference_image] = STATE(688), - [sym_collapsed_reference_image] = STATE(688), - [sym_inline_image] = STATE(688), - [sym__image_description] = STATE(1436), - [sym__link] = STATE(688), - [sym_full_reference_link] = STATE(688), - [sym_collapsed_reference_link] = STATE(688), - [sym_inline_link] = STATE(688), - [sym_link_text] = STATE(1434), - [sym__comment_with_spaces] = STATE(688), - [sym_span] = STATE(688), - [sym_raw_inline] = STATE(688), - [sym_math] = STATE(688), - [sym_verbatim] = STATE(688), - [sym__todo_highlights] = STATE(688), - [sym_todo] = STATE(688), - [sym_note] = STATE(688), - [sym__symbol_fallback] = STATE(688), - [aux_sym__text] = STATE(583), - [aux_sym__inline_repeat1] = STATE(230), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_PIPE] = ACTIONS(1108), - [anon_sym_LBRACE] = ACTIONS(1111), - [sym__whitespace1] = ACTIONS(1114), - [anon_sym_BSLASH] = ACTIONS(1117), - [sym_quotation_marks] = ACTIONS(1108), - [sym_ellipsis] = ACTIONS(1108), - [sym_em_dash] = ACTIONS(1108), - [sym_en_dash] = ACTIONS(1111), - [sym_backslash_escape] = ACTIONS(1111), - [anon_sym_LT] = ACTIONS(1120), - [anon_sym_LBRACE_] = ACTIONS(1123), - [anon_sym__] = ACTIONS(1126), - [anon_sym_LBRACE_STAR] = ACTIONS(1129), - [anon_sym_STAR] = ACTIONS(1132), - [anon_sym_LBRACE_EQ] = ACTIONS(1135), - [anon_sym_EQ_RBRACE] = ACTIONS(861), - [anon_sym_LBRACE_PLUS] = ACTIONS(1138), - [anon_sym_LBRACE_DASH] = ACTIONS(1141), - [sym_symbol] = ACTIONS(1108), - [anon_sym_LBRACE_CARET] = ACTIONS(1144), - [anon_sym_CARET] = ACTIONS(1144), - [anon_sym_LBRACE_TILDE] = ACTIONS(1147), - [anon_sym_TILDE] = ACTIONS(1147), - [anon_sym_LBRACK_CARET] = ACTIONS(1150), - [anon_sym_BANG_LBRACK] = ACTIONS(1153), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(1156), - [anon_sym_TODO] = ACTIONS(1159), - [anon_sym_WIP] = ACTIONS(1159), - [anon_sym_NOTE] = ACTIONS(1162), - [anon_sym_INFO] = ACTIONS(1162), - [anon_sym_XXX] = ACTIONS(1162), - [sym_fixme] = ACTIONS(1108), - [aux_sym__text_token1] = ACTIONS(1165), - [sym__newline_inline] = ACTIONS(1168), - [sym__verbatim_begin] = ACTIONS(1171), - }, - [187] = { - [sym__inline] = STATE(1855), - [sym__inline_element_with_whitespace] = STATE(241), - [sym__inline_element_with_newline] = STATE(241), - [sym__inline_core_element] = STATE(241), - [sym__hard_line_break] = STATE(696), - [sym_hard_line_break] = STATE(530), - [sym__smart_punctuation] = STATE(696), - [sym_autolink] = STATE(696), - [sym_emphasis] = STATE(696), - [sym_emphasis_begin] = STATE(274), - [sym_strong] = STATE(696), - [sym_strong_begin] = STATE(275), - [sym_highlighted] = STATE(696), - [sym_insert] = STATE(696), - [sym_delete] = STATE(696), - [sym_superscript] = STATE(696), - [sym_subscript] = STATE(696), - [sym_footnote_reference] = STATE(696), - [sym__image] = STATE(696), - [sym_full_reference_image] = STATE(696), - [sym_collapsed_reference_image] = STATE(696), - [sym_inline_image] = STATE(696), - [sym__image_description] = STATE(1427), - [sym__link] = STATE(696), - [sym_full_reference_link] = STATE(696), - [sym_collapsed_reference_link] = STATE(696), - [sym_inline_link] = STATE(696), - [sym_link_text] = STATE(1426), - [sym__comment_with_spaces] = STATE(696), - [sym_span] = STATE(696), - [sym_raw_inline] = STATE(696), - [sym_math] = STATE(696), - [sym_verbatim] = STATE(696), - [sym__todo_highlights] = STATE(696), - [sym_todo] = STATE(696), - [sym_note] = STATE(696), - [sym__symbol_fallback] = STATE(696), - [aux_sym__text] = STATE(609), - [aux_sym__inline_repeat1] = STATE(241), - [anon_sym_LBRACK] = ACTIONS(1036), - [anon_sym_PIPE] = ACTIONS(1039), - [anon_sym_LBRACE] = ACTIONS(1042), - [sym__whitespace1] = ACTIONS(1045), - [anon_sym_BSLASH] = ACTIONS(1048), - [sym_quotation_marks] = ACTIONS(1039), - [sym_ellipsis] = ACTIONS(1039), - [sym_em_dash] = ACTIONS(1039), - [sym_en_dash] = ACTIONS(1042), - [sym_backslash_escape] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1051), - [anon_sym_LBRACE_] = ACTIONS(1054), - [anon_sym__] = ACTIONS(1057), - [anon_sym_LBRACE_STAR] = ACTIONS(1060), - [anon_sym_STAR] = ACTIONS(1063), - [anon_sym_LBRACE_EQ] = ACTIONS(1066), - [anon_sym_EQ_RBRACE] = ACTIONS(861), - [anon_sym_LBRACE_PLUS] = ACTIONS(1069), - [anon_sym_LBRACE_DASH] = ACTIONS(1072), - [sym_symbol] = ACTIONS(1039), - [anon_sym_LBRACE_CARET] = ACTIONS(1075), - [anon_sym_CARET] = ACTIONS(1075), - [anon_sym_LBRACE_TILDE] = ACTIONS(1078), - [anon_sym_TILDE] = ACTIONS(1078), - [anon_sym_LBRACK_CARET] = ACTIONS(1081), - [anon_sym_BANG_LBRACK] = ACTIONS(1084), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(1087), - [anon_sym_TODO] = ACTIONS(1090), - [anon_sym_WIP] = ACTIONS(1090), - [anon_sym_NOTE] = ACTIONS(1093), - [anon_sym_INFO] = ACTIONS(1093), - [anon_sym_XXX] = ACTIONS(1093), - [sym_fixme] = ACTIONS(1039), - [aux_sym__text_token1] = ACTIONS(1096), - [sym__newline_inline] = ACTIONS(1099), - [sym__verbatim_begin] = ACTIONS(1102), - }, - [188] = { - [sym__inline] = STATE(2371), - [sym__inline_element_with_whitespace] = STATE(242), - [sym__inline_element_with_newline] = STATE(242), - [sym__inline_core_element] = STATE(242), - [sym__hard_line_break] = STATE(627), - [sym_hard_line_break] = STATE(523), - [sym__smart_punctuation] = STATE(627), - [sym_autolink] = STATE(627), - [sym_emphasis] = STATE(627), - [sym_emphasis_begin] = STATE(296), - [sym_strong] = STATE(627), - [sym_strong_begin] = STATE(295), - [sym_highlighted] = STATE(627), - [sym_insert] = STATE(627), - [sym_delete] = STATE(627), - [sym_superscript] = STATE(627), - [sym_subscript] = STATE(627), - [sym_footnote_reference] = STATE(627), - [sym__image] = STATE(627), - [sym_full_reference_image] = STATE(627), - [sym_collapsed_reference_image] = STATE(627), - [sym_inline_image] = STATE(627), - [sym__image_description] = STATE(1448), - [sym__link] = STATE(627), - [sym_full_reference_link] = STATE(627), - [sym_collapsed_reference_link] = STATE(627), - [sym_inline_link] = STATE(627), - [sym_link_text] = STATE(1453), - [sym__comment_with_spaces] = STATE(627), - [sym_span] = STATE(627), - [sym_raw_inline] = STATE(627), - [sym_math] = STATE(627), - [sym_verbatim] = STATE(627), - [sym__todo_highlights] = STATE(627), - [sym_todo] = STATE(627), - [sym_note] = STATE(627), - [sym__symbol_fallback] = STATE(627), - [aux_sym__text] = STATE(560), - [aux_sym__inline_repeat1] = STATE(242), - [anon_sym_LBRACK] = ACTIONS(853), - [anon_sym_PIPE] = ACTIONS(858), - [anon_sym_LBRACE] = ACTIONS(863), - [sym__whitespace1] = ACTIONS(866), - [anon_sym_BSLASH] = ACTIONS(869), - [sym_quotation_marks] = ACTIONS(858), - [sym_ellipsis] = ACTIONS(858), - [sym_em_dash] = ACTIONS(858), - [sym_en_dash] = ACTIONS(863), - [sym_backslash_escape] = ACTIONS(863), - [anon_sym_LT] = ACTIONS(872), - [anon_sym_LBRACE_] = ACTIONS(875), - [anon_sym__] = ACTIONS(878), - [anon_sym_LBRACE_STAR] = ACTIONS(881), - [anon_sym_STAR] = ACTIONS(884), - [anon_sym_LBRACE_EQ] = ACTIONS(887), - [anon_sym_LBRACE_PLUS] = ACTIONS(890), - [anon_sym_LBRACE_DASH] = ACTIONS(893), - [sym_symbol] = ACTIONS(858), - [anon_sym_LBRACE_CARET] = ACTIONS(896), - [anon_sym_CARET] = ACTIONS(896), - [anon_sym_LBRACE_TILDE] = ACTIONS(899), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_LBRACK_CARET] = ACTIONS(902), - [anon_sym_BANG_LBRACK] = ACTIONS(905), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(910), - [anon_sym_TODO] = ACTIONS(913), - [anon_sym_WIP] = ACTIONS(913), - [anon_sym_NOTE] = ACTIONS(916), - [anon_sym_INFO] = ACTIONS(916), - [anon_sym_XXX] = ACTIONS(916), - [sym_fixme] = ACTIONS(858), - [aux_sym__text_token1] = ACTIONS(919), - [sym__eof_or_newline] = ACTIONS(861), - [sym__newline_inline] = ACTIONS(922), - [sym__verbatim_begin] = ACTIONS(925), - }, - [189] = { - [sym__inline] = STATE(2243), - [sym__inline_element_with_whitespace] = STATE(242), - [sym__inline_element_with_newline] = STATE(242), - [sym__inline_core_element] = STATE(242), - [sym__hard_line_break] = STATE(627), - [sym_hard_line_break] = STATE(523), - [sym__smart_punctuation] = STATE(627), - [sym_autolink] = STATE(627), - [sym_emphasis] = STATE(627), - [sym_emphasis_begin] = STATE(296), - [sym_strong] = STATE(627), - [sym_strong_begin] = STATE(295), - [sym_highlighted] = STATE(627), - [sym_insert] = STATE(627), - [sym_delete] = STATE(627), - [sym_superscript] = STATE(627), - [sym_subscript] = STATE(627), - [sym_footnote_reference] = STATE(627), - [sym__image] = STATE(627), - [sym_full_reference_image] = STATE(627), - [sym_collapsed_reference_image] = STATE(627), - [sym_inline_image] = STATE(627), - [sym__image_description] = STATE(1448), - [sym__link] = STATE(627), - [sym_full_reference_link] = STATE(627), - [sym_collapsed_reference_link] = STATE(627), - [sym_inline_link] = STATE(627), - [sym_link_text] = STATE(1453), - [sym__comment_with_spaces] = STATE(627), - [sym_span] = STATE(627), - [sym_raw_inline] = STATE(627), - [sym_math] = STATE(627), - [sym_verbatim] = STATE(627), - [sym__todo_highlights] = STATE(627), - [sym_todo] = STATE(627), - [sym_note] = STATE(627), - [sym__symbol_fallback] = STATE(627), - [aux_sym__text] = STATE(560), - [aux_sym__inline_repeat1] = STATE(242), - [anon_sym_LBRACK] = ACTIONS(853), - [anon_sym_PIPE] = ACTIONS(858), - [anon_sym_LBRACE] = ACTIONS(863), - [sym__whitespace1] = ACTIONS(866), - [anon_sym_BSLASH] = ACTIONS(869), - [sym_quotation_marks] = ACTIONS(858), - [sym_ellipsis] = ACTIONS(858), - [sym_em_dash] = ACTIONS(858), - [sym_en_dash] = ACTIONS(863), - [sym_backslash_escape] = ACTIONS(863), - [anon_sym_LT] = ACTIONS(872), - [anon_sym_LBRACE_] = ACTIONS(875), - [anon_sym__] = ACTIONS(878), - [anon_sym_LBRACE_STAR] = ACTIONS(881), - [anon_sym_STAR] = ACTIONS(884), - [anon_sym_LBRACE_EQ] = ACTIONS(887), - [anon_sym_EQ_RBRACE] = ACTIONS(861), - [anon_sym_LBRACE_PLUS] = ACTIONS(890), - [anon_sym_LBRACE_DASH] = ACTIONS(893), - [sym_symbol] = ACTIONS(858), - [anon_sym_LBRACE_CARET] = ACTIONS(896), - [anon_sym_CARET] = ACTIONS(896), - [anon_sym_LBRACE_TILDE] = ACTIONS(899), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_LBRACK_CARET] = ACTIONS(902), - [anon_sym_BANG_LBRACK] = ACTIONS(905), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(910), - [anon_sym_TODO] = ACTIONS(913), - [anon_sym_WIP] = ACTIONS(913), - [anon_sym_NOTE] = ACTIONS(916), - [anon_sym_INFO] = ACTIONS(916), - [anon_sym_XXX] = ACTIONS(916), - [sym_fixme] = ACTIONS(858), - [aux_sym__text_token1] = ACTIONS(919), - [sym__newline_inline] = ACTIONS(922), - [sym__verbatim_begin] = ACTIONS(925), - }, - [190] = { - [sym__paragraph_content] = STATE(1836), - [sym__inline] = STATE(2311), - [sym__inline_element_with_whitespace] = STATE(229), - [sym__inline_element_with_newline] = STATE(229), - [sym__inline_core_element] = STATE(229), - [sym__hard_line_break] = STATE(716), - [sym_hard_line_break] = STATE(517), - [sym__smart_punctuation] = STATE(716), - [sym_autolink] = STATE(716), - [sym_emphasis] = STATE(716), - [sym_emphasis_begin] = STATE(283), - [sym_strong] = STATE(716), - [sym_strong_begin] = STATE(282), - [sym_highlighted] = STATE(716), - [sym_insert] = STATE(716), - [sym_delete] = STATE(716), - [sym_superscript] = STATE(716), - [sym_subscript] = STATE(716), - [sym_footnote_reference] = STATE(716), - [sym__image] = STATE(716), - [sym_full_reference_image] = STATE(716), - [sym_collapsed_reference_image] = STATE(716), - [sym_inline_image] = STATE(716), - [sym__image_description] = STATE(1412), - [sym__link] = STATE(716), - [sym_full_reference_link] = STATE(716), - [sym_collapsed_reference_link] = STATE(716), - [sym_inline_link] = STATE(716), - [sym_link_text] = STATE(1413), - [sym__comment_with_spaces] = STATE(716), - [sym_span] = STATE(716), - [sym_raw_inline] = STATE(716), - [sym_math] = STATE(716), - [sym_verbatim] = STATE(716), - [sym__todo_highlights] = STATE(716), - [sym_todo] = STATE(716), - [sym_note] = STATE(716), - [sym__symbol_fallback] = STATE(716), - [aux_sym__text] = STATE(562), - [aux_sym__inline_repeat1] = STATE(229), - [anon_sym_LBRACK] = ACTIONS(1482), - [anon_sym_PIPE] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), - [sym__whitespace1] = ACTIONS(11), - [anon_sym_BSLASH] = ACTIONS(13), - [sym_quotation_marks] = ACTIONS(15), - [sym_ellipsis] = ACTIONS(15), - [sym_em_dash] = ACTIONS(15), - [sym_en_dash] = ACTIONS(17), - [sym_backslash_escape] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(19), - [anon_sym_LBRACE_] = ACTIONS(21), - [anon_sym__] = ACTIONS(23), - [anon_sym_LBRACE_STAR] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_LBRACE_EQ] = ACTIONS(29), - [anon_sym_LBRACE_PLUS] = ACTIONS(31), - [anon_sym_LBRACE_DASH] = ACTIONS(33), - [sym_symbol] = ACTIONS(15), - [anon_sym_LBRACE_CARET] = ACTIONS(35), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_LBRACE_TILDE] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(37), - [anon_sym_LBRACK_CARET] = ACTIONS(39), - [anon_sym_BANG_LBRACK] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [anon_sym_TODO] = ACTIONS(45), - [anon_sym_WIP] = ACTIONS(45), - [anon_sym_NOTE] = ACTIONS(47), - [anon_sym_INFO] = ACTIONS(47), - [anon_sym_XXX] = ACTIONS(47), - [sym_fixme] = ACTIONS(15), - [aux_sym__text_token1] = ACTIONS(49), - [sym__newline_inline] = ACTIONS(53), - [sym__verbatim_begin] = ACTIONS(121), - }, - [191] = { - [sym__inline] = STATE(2250), - [sym__inline_element_with_whitespace] = STATE(219), - [sym__inline_element_with_newline] = STATE(219), - [sym__inline_core_element] = STATE(219), - [sym__hard_line_break] = STATE(682), - [sym_hard_line_break] = STATE(518), - [sym__smart_punctuation] = STATE(682), - [sym_autolink] = STATE(682), - [sym_emphasis] = STATE(682), - [sym_emphasis_begin] = STATE(286), - [sym_strong] = STATE(682), - [sym_strong_begin] = STATE(288), - [sym_highlighted] = STATE(682), - [sym_insert] = STATE(682), - [sym_delete] = STATE(682), - [sym_superscript] = STATE(682), - [sym_subscript] = STATE(682), - [sym_footnote_reference] = STATE(682), - [sym__image] = STATE(682), - [sym_full_reference_image] = STATE(682), - [sym_collapsed_reference_image] = STATE(682), - [sym_inline_image] = STATE(682), - [sym__image_description] = STATE(1440), - [sym__link] = STATE(682), - [sym_full_reference_link] = STATE(682), - [sym_collapsed_reference_link] = STATE(682), - [sym_inline_link] = STATE(682), - [sym_link_text] = STATE(1439), - [sym__comment_with_spaces] = STATE(682), - [sym_span] = STATE(682), - [sym_raw_inline] = STATE(682), - [sym_math] = STATE(682), - [sym_verbatim] = STATE(682), - [sym__todo_highlights] = STATE(682), - [sym_todo] = STATE(682), - [sym_note] = STATE(682), - [sym__symbol_fallback] = STATE(682), - [aux_sym__text] = STATE(572), - [aux_sym__inline_repeat1] = STATE(219), - [anon_sym_LBRACK] = ACTIONS(1182), - [anon_sym_PIPE] = ACTIONS(1185), - [anon_sym_LBRACE] = ACTIONS(1188), - [sym__whitespace1] = ACTIONS(1191), - [anon_sym_BSLASH] = ACTIONS(1194), - [sym_quotation_marks] = ACTIONS(1185), - [sym_ellipsis] = ACTIONS(1185), - [sym_em_dash] = ACTIONS(1185), - [sym_en_dash] = ACTIONS(1188), - [sym_backslash_escape] = ACTIONS(1188), - [anon_sym_LT] = ACTIONS(1197), - [anon_sym_LBRACE_] = ACTIONS(1200), - [anon_sym__] = ACTIONS(1203), - [anon_sym_LBRACE_STAR] = ACTIONS(1206), - [anon_sym_STAR] = ACTIONS(1209), - [anon_sym_LBRACE_EQ] = ACTIONS(1212), - [anon_sym_LBRACE_PLUS] = ACTIONS(1215), - [anon_sym_LBRACE_DASH] = ACTIONS(1218), - [sym_symbol] = ACTIONS(1185), - [anon_sym_LBRACE_CARET] = ACTIONS(1221), - [anon_sym_CARET] = ACTIONS(1221), - [anon_sym_LBRACE_TILDE] = ACTIONS(1224), - [anon_sym_TILDE] = ACTIONS(1224), - [anon_sym_LBRACK_CARET] = ACTIONS(1227), - [anon_sym_BANG_LBRACK] = ACTIONS(1230), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(1233), - [anon_sym_TODO] = ACTIONS(1236), - [anon_sym_WIP] = ACTIONS(1236), - [anon_sym_NOTE] = ACTIONS(1239), - [anon_sym_INFO] = ACTIONS(1239), - [anon_sym_XXX] = ACTIONS(1239), - [sym_fixme] = ACTIONS(1185), - [aux_sym__text_token1] = ACTIONS(1242), - [sym__newline_inline] = ACTIONS(1484), - [sym__verbatim_begin] = ACTIONS(1248), - }, - [192] = { - [sym__inline] = STATE(1778), - [sym__inline_element_with_whitespace] = STATE(230), - [sym__inline_element_with_newline] = STATE(230), - [sym__inline_core_element] = STATE(230), - [sym__hard_line_break] = STATE(688), - [sym_hard_line_break] = STATE(516), - [sym__smart_punctuation] = STATE(688), - [sym_autolink] = STATE(688), - [sym_emphasis] = STATE(688), - [sym_emphasis_begin] = STATE(291), - [sym_strong] = STATE(688), - [sym_strong_begin] = STATE(272), - [sym_highlighted] = STATE(688), - [sym_insert] = STATE(688), - [sym_delete] = STATE(688), - [sym_superscript] = STATE(688), - [sym_subscript] = STATE(688), - [sym_footnote_reference] = STATE(688), - [sym__image] = STATE(688), - [sym_full_reference_image] = STATE(688), - [sym_collapsed_reference_image] = STATE(688), - [sym_inline_image] = STATE(688), - [sym__image_description] = STATE(1436), - [sym__link] = STATE(688), - [sym_full_reference_link] = STATE(688), - [sym_collapsed_reference_link] = STATE(688), - [sym_inline_link] = STATE(688), - [sym_link_text] = STATE(1434), - [sym__comment_with_spaces] = STATE(688), - [sym_span] = STATE(688), - [sym_raw_inline] = STATE(688), - [sym_math] = STATE(688), - [sym_verbatim] = STATE(688), - [sym__todo_highlights] = STATE(688), - [sym_todo] = STATE(688), - [sym_note] = STATE(688), - [sym__symbol_fallback] = STATE(688), - [aux_sym__text] = STATE(583), - [aux_sym__inline_repeat1] = STATE(230), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_PIPE] = ACTIONS(1108), - [anon_sym_LBRACE] = ACTIONS(1111), - [sym__whitespace1] = ACTIONS(1114), - [anon_sym_BSLASH] = ACTIONS(1117), - [sym_quotation_marks] = ACTIONS(1108), - [sym_ellipsis] = ACTIONS(1108), - [sym_em_dash] = ACTIONS(1108), - [sym_en_dash] = ACTIONS(1111), - [sym_backslash_escape] = ACTIONS(1111), - [anon_sym_LT] = ACTIONS(1120), - [anon_sym_LBRACE_] = ACTIONS(1123), - [anon_sym__] = ACTIONS(1126), - [anon_sym_LBRACE_STAR] = ACTIONS(1129), - [anon_sym_STAR] = ACTIONS(1132), - [anon_sym_LBRACE_EQ] = ACTIONS(1135), - [anon_sym_LBRACE_PLUS] = ACTIONS(1138), - [anon_sym_LBRACE_DASH] = ACTIONS(1141), - [sym_symbol] = ACTIONS(1108), - [anon_sym_LBRACE_CARET] = ACTIONS(1144), - [anon_sym_CARET] = ACTIONS(1144), - [anon_sym_LBRACE_TILDE] = ACTIONS(1147), - [anon_sym_TILDE] = ACTIONS(1147), - [anon_sym_LBRACK_CARET] = ACTIONS(1150), - [anon_sym_BANG_LBRACK] = ACTIONS(1153), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(1156), - [anon_sym_TODO] = ACTIONS(1159), - [anon_sym_WIP] = ACTIONS(1159), - [anon_sym_NOTE] = ACTIONS(1162), - [anon_sym_INFO] = ACTIONS(1162), - [anon_sym_XXX] = ACTIONS(1162), - [sym_fixme] = ACTIONS(1108), - [aux_sym__text_token1] = ACTIONS(1165), - [sym__newline_inline] = ACTIONS(1486), - [sym__verbatim_begin] = ACTIONS(1171), - }, - [193] = { - [sym__inline] = STATE(1779), - [sym__inline_element_with_whitespace] = STATE(241), - [sym__inline_element_with_newline] = STATE(241), - [sym__inline_core_element] = STATE(241), - [sym__hard_line_break] = STATE(696), - [sym_hard_line_break] = STATE(530), - [sym__smart_punctuation] = STATE(696), - [sym_autolink] = STATE(696), - [sym_emphasis] = STATE(696), - [sym_emphasis_begin] = STATE(274), - [sym_strong] = STATE(696), - [sym_strong_begin] = STATE(275), - [sym_highlighted] = STATE(696), - [sym_insert] = STATE(696), - [sym_delete] = STATE(696), - [sym_superscript] = STATE(696), - [sym_subscript] = STATE(696), - [sym_footnote_reference] = STATE(696), - [sym__image] = STATE(696), - [sym_full_reference_image] = STATE(696), - [sym_collapsed_reference_image] = STATE(696), - [sym_inline_image] = STATE(696), - [sym__image_description] = STATE(1427), - [sym__link] = STATE(696), - [sym_full_reference_link] = STATE(696), - [sym_collapsed_reference_link] = STATE(696), - [sym_inline_link] = STATE(696), - [sym_link_text] = STATE(1426), - [sym__comment_with_spaces] = STATE(696), - [sym_span] = STATE(696), - [sym_raw_inline] = STATE(696), - [sym_math] = STATE(696), - [sym_verbatim] = STATE(696), - [sym__todo_highlights] = STATE(696), - [sym_todo] = STATE(696), - [sym_note] = STATE(696), - [sym__symbol_fallback] = STATE(696), - [aux_sym__text] = STATE(609), - [aux_sym__inline_repeat1] = STATE(241), - [anon_sym_LBRACK] = ACTIONS(1036), - [anon_sym_PIPE] = ACTIONS(1039), - [anon_sym_LBRACE] = ACTIONS(1042), - [sym__whitespace1] = ACTIONS(1045), - [anon_sym_BSLASH] = ACTIONS(1048), - [sym_quotation_marks] = ACTIONS(1039), - [sym_ellipsis] = ACTIONS(1039), - [sym_em_dash] = ACTIONS(1039), - [sym_en_dash] = ACTIONS(1042), - [sym_backslash_escape] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1051), - [anon_sym_LBRACE_] = ACTIONS(1054), - [anon_sym__] = ACTIONS(1057), - [anon_sym_LBRACE_STAR] = ACTIONS(1060), - [anon_sym_STAR] = ACTIONS(1063), - [anon_sym_LBRACE_EQ] = ACTIONS(1066), - [anon_sym_LBRACE_PLUS] = ACTIONS(1069), - [anon_sym_LBRACE_DASH] = ACTIONS(1072), - [sym_symbol] = ACTIONS(1039), - [anon_sym_LBRACE_CARET] = ACTIONS(1075), - [anon_sym_CARET] = ACTIONS(1075), - [anon_sym_LBRACE_TILDE] = ACTIONS(1078), - [anon_sym_TILDE] = ACTIONS(1078), - [anon_sym_LBRACK_CARET] = ACTIONS(1081), - [anon_sym_BANG_LBRACK] = ACTIONS(1084), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(1087), - [anon_sym_TODO] = ACTIONS(1090), - [anon_sym_WIP] = ACTIONS(1090), - [anon_sym_NOTE] = ACTIONS(1093), - [anon_sym_INFO] = ACTIONS(1093), - [anon_sym_XXX] = ACTIONS(1093), - [sym_fixme] = ACTIONS(1039), - [aux_sym__text_token1] = ACTIONS(1096), - [sym__newline_inline] = ACTIONS(1488), - [sym__verbatim_begin] = ACTIONS(1102), - }, - [194] = { - [sym__inline_element_with_whitespace] = STATE(194), - [sym__inline_element_with_newline] = STATE(194), - [sym__inline_core_element] = STATE(194), - [sym__hard_line_break] = STATE(539), - [sym_hard_line_break] = STATE(512), - [sym__smart_punctuation] = STATE(539), - [sym_autolink] = STATE(539), - [sym_emphasis] = STATE(539), - [sym_emphasis_begin] = STATE(299), - [sym_strong] = STATE(539), - [sym_strong_begin] = STATE(298), - [sym_highlighted] = STATE(539), - [sym_insert] = STATE(539), - [sym_delete] = STATE(539), - [sym_superscript] = STATE(539), - [sym_subscript] = STATE(539), - [sym_footnote_reference] = STATE(539), - [sym__image] = STATE(539), - [sym_full_reference_image] = STATE(539), - [sym_collapsed_reference_image] = STATE(539), - [sym_inline_image] = STATE(539), - [sym__image_description] = STATE(1414), - [sym__link] = STATE(539), - [sym_full_reference_link] = STATE(539), - [sym_collapsed_reference_link] = STATE(539), - [sym_inline_link] = STATE(539), - [sym_link_text] = STATE(1411), - [sym__comment_with_spaces] = STATE(539), - [sym_span] = STATE(539), - [sym_raw_inline] = STATE(539), - [sym_math] = STATE(539), - [sym_verbatim] = STATE(539), - [sym__todo_highlights] = STATE(539), - [sym_todo] = STATE(539), - [sym_note] = STATE(539), - [sym__symbol_fallback] = STATE(539), - [aux_sym__text] = STATE(520), - [aux_sym__inline_repeat1] = STATE(194), - [anon_sym_LBRACK] = ACTIONS(1490), - [anon_sym_PIPE] = ACTIONS(1493), - [anon_sym_NULL] = ACTIONS(1496), - [anon_sym_LBRACE] = ACTIONS(1498), - [sym__whitespace1] = ACTIONS(1501), - [anon_sym_BSLASH] = ACTIONS(1504), - [sym_quotation_marks] = ACTIONS(1493), - [sym_ellipsis] = ACTIONS(1493), - [sym_em_dash] = ACTIONS(1493), - [sym_en_dash] = ACTIONS(1498), - [sym_backslash_escape] = ACTIONS(1498), - [anon_sym_LT] = ACTIONS(1507), - [anon_sym_LBRACE_] = ACTIONS(1510), - [anon_sym__] = ACTIONS(1513), - [anon_sym_LBRACE_STAR] = ACTIONS(1516), - [anon_sym_STAR] = ACTIONS(1519), - [anon_sym_LBRACE_EQ] = ACTIONS(1522), - [anon_sym_LBRACE_PLUS] = ACTIONS(1525), - [anon_sym_LBRACE_DASH] = ACTIONS(1528), - [sym_symbol] = ACTIONS(1493), - [anon_sym_LBRACE_CARET] = ACTIONS(1531), - [anon_sym_CARET] = ACTIONS(1531), - [anon_sym_LBRACE_TILDE] = ACTIONS(1534), - [anon_sym_TILDE] = ACTIONS(1534), - [anon_sym_LBRACK_CARET] = ACTIONS(1537), - [anon_sym_BANG_LBRACK] = ACTIONS(1540), - [anon_sym_DOLLAR] = ACTIONS(1543), - [anon_sym_TODO] = ACTIONS(1546), - [anon_sym_WIP] = ACTIONS(1546), - [anon_sym_NOTE] = ACTIONS(1549), - [anon_sym_INFO] = ACTIONS(1549), - [anon_sym_XXX] = ACTIONS(1549), - [sym_fixme] = ACTIONS(1493), - [aux_sym__text_token1] = ACTIONS(1552), - [sym__newline] = ACTIONS(1496), - [sym__newline_inline] = ACTIONS(1555), - [sym__verbatim_begin] = ACTIONS(1558), - }, - [195] = { - [sym__inline] = STATE(2153), - [sym__inline_element_with_whitespace] = STATE(217), - [sym__inline_element_with_newline] = STATE(217), - [sym__inline_core_element] = STATE(217), - [sym__hard_line_break] = STATE(667), - [sym_hard_line_break] = STATE(529), - [sym__smart_punctuation] = STATE(667), - [sym_autolink] = STATE(667), - [sym_emphasis] = STATE(667), - [sym_emphasis_begin] = STATE(290), - [sym_strong] = STATE(667), - [sym_strong_begin] = STATE(273), - [sym_highlighted] = STATE(667), - [sym_insert] = STATE(667), - [sym_delete] = STATE(667), - [sym_superscript] = STATE(667), - [sym_subscript] = STATE(667), - [sym_footnote_reference] = STATE(667), - [sym__image] = STATE(667), - [sym_full_reference_image] = STATE(667), - [sym_collapsed_reference_image] = STATE(667), - [sym_inline_image] = STATE(667), - [sym__image_description] = STATE(1445), - [sym__link] = STATE(667), - [sym_full_reference_link] = STATE(667), - [sym_collapsed_reference_link] = STATE(667), - [sym_inline_link] = STATE(667), - [sym_link_text] = STATE(1443), - [sym__comment_with_spaces] = STATE(667), - [sym_span] = STATE(667), - [sym_raw_inline] = STATE(667), - [sym_math] = STATE(667), - [sym_verbatim] = STATE(667), - [sym__todo_highlights] = STATE(667), - [sym_todo] = STATE(667), - [sym_note] = STATE(667), - [sym__symbol_fallback] = STATE(667), - [aux_sym__text] = STATE(554), - [aux_sym__inline_repeat1] = STATE(217), - [anon_sym_LBRACK] = ACTIONS(1257), - [anon_sym_PIPE] = ACTIONS(1260), - [anon_sym_LBRACE] = ACTIONS(1263), - [sym__whitespace1] = ACTIONS(1266), - [anon_sym_BSLASH] = ACTIONS(1269), - [sym_quotation_marks] = ACTIONS(1260), - [sym_ellipsis] = ACTIONS(1260), - [sym_em_dash] = ACTIONS(1260), - [sym_en_dash] = ACTIONS(1263), - [sym_backslash_escape] = ACTIONS(1263), - [anon_sym_LT] = ACTIONS(1272), - [anon_sym_LBRACE_] = ACTIONS(1275), - [anon_sym__] = ACTIONS(1278), - [anon_sym_LBRACE_STAR] = ACTIONS(1281), - [anon_sym_STAR] = ACTIONS(1284), - [anon_sym_LBRACE_EQ] = ACTIONS(1287), - [anon_sym_LBRACE_PLUS] = ACTIONS(1290), - [anon_sym_LBRACE_DASH] = ACTIONS(1293), - [sym_symbol] = ACTIONS(1260), - [anon_sym_LBRACE_CARET] = ACTIONS(1296), - [anon_sym_CARET] = ACTIONS(1296), - [anon_sym_LBRACE_TILDE] = ACTIONS(1299), - [anon_sym_TILDE] = ACTIONS(1299), - [anon_sym_LBRACK_CARET] = ACTIONS(1302), - [anon_sym_BANG_LBRACK] = ACTIONS(1305), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(1308), - [anon_sym_TODO] = ACTIONS(1311), - [anon_sym_WIP] = ACTIONS(1311), - [anon_sym_NOTE] = ACTIONS(1314), - [anon_sym_INFO] = ACTIONS(1314), - [anon_sym_XXX] = ACTIONS(1314), - [sym_fixme] = ACTIONS(1260), - [aux_sym__text_token1] = ACTIONS(1317), - [sym__newline_inline] = ACTIONS(1561), - [sym__verbatim_begin] = ACTIONS(1323), - }, - [196] = { - [sym__inline] = STATE(2214), - [sym__inline_element_with_whitespace] = STATE(242), - [sym__inline_element_with_newline] = STATE(242), - [sym__inline_core_element] = STATE(242), - [sym__hard_line_break] = STATE(627), - [sym_hard_line_break] = STATE(523), - [sym__smart_punctuation] = STATE(627), - [sym_autolink] = STATE(627), - [sym_emphasis] = STATE(627), - [sym_emphasis_begin] = STATE(296), - [sym_strong] = STATE(627), - [sym_strong_begin] = STATE(295), - [sym_highlighted] = STATE(627), - [sym_insert] = STATE(627), - [sym_delete] = STATE(627), - [sym_superscript] = STATE(627), - [sym_subscript] = STATE(627), - [sym_footnote_reference] = STATE(627), - [sym__image] = STATE(627), - [sym_full_reference_image] = STATE(627), - [sym_collapsed_reference_image] = STATE(627), - [sym_inline_image] = STATE(627), - [sym__image_description] = STATE(1448), - [sym__link] = STATE(627), - [sym_full_reference_link] = STATE(627), - [sym_collapsed_reference_link] = STATE(627), - [sym_inline_link] = STATE(627), - [sym_link_text] = STATE(1453), - [sym__comment_with_spaces] = STATE(627), - [sym_span] = STATE(627), - [sym_raw_inline] = STATE(627), - [sym_math] = STATE(627), - [sym_verbatim] = STATE(627), - [sym__todo_highlights] = STATE(627), - [sym_todo] = STATE(627), - [sym_note] = STATE(627), - [sym__symbol_fallback] = STATE(627), - [aux_sym__text] = STATE(560), - [aux_sym__inline_repeat1] = STATE(242), - [anon_sym_LBRACK] = ACTIONS(853), - [anon_sym_PIPE] = ACTIONS(858), - [anon_sym_LBRACE] = ACTIONS(863), - [sym__whitespace1] = ACTIONS(866), - [anon_sym_BSLASH] = ACTIONS(869), - [sym_quotation_marks] = ACTIONS(858), - [sym_ellipsis] = ACTIONS(858), - [sym_em_dash] = ACTIONS(858), - [sym_en_dash] = ACTIONS(863), - [sym_backslash_escape] = ACTIONS(863), - [anon_sym_LT] = ACTIONS(872), - [anon_sym_LBRACE_] = ACTIONS(875), - [anon_sym__] = ACTIONS(878), - [anon_sym_LBRACE_STAR] = ACTIONS(881), - [anon_sym_STAR] = ACTIONS(884), - [anon_sym_LBRACE_EQ] = ACTIONS(887), - [anon_sym_LBRACE_PLUS] = ACTIONS(890), - [anon_sym_LBRACE_DASH] = ACTIONS(893), - [sym_symbol] = ACTIONS(858), - [anon_sym_LBRACE_CARET] = ACTIONS(896), - [anon_sym_CARET] = ACTIONS(896), - [anon_sym_LBRACE_TILDE] = ACTIONS(899), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_LBRACK_CARET] = ACTIONS(902), - [anon_sym_BANG_LBRACK] = ACTIONS(905), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(910), - [anon_sym_TODO] = ACTIONS(913), - [anon_sym_WIP] = ACTIONS(913), - [anon_sym_NOTE] = ACTIONS(916), - [anon_sym_INFO] = ACTIONS(916), - [anon_sym_XXX] = ACTIONS(916), - [sym_fixme] = ACTIONS(858), - [aux_sym__text_token1] = ACTIONS(919), - [sym__newline_inline] = ACTIONS(1474), - [sym__verbatim_begin] = ACTIONS(925), - }, - [197] = { - [sym__inline] = STATE(2066), - [sym__inline_element_with_whitespace] = STATE(219), - [sym__inline_element_with_newline] = STATE(219), - [sym__inline_core_element] = STATE(219), - [sym__hard_line_break] = STATE(682), - [sym_hard_line_break] = STATE(518), - [sym__smart_punctuation] = STATE(682), - [sym_autolink] = STATE(682), - [sym_emphasis] = STATE(682), - [sym_emphasis_begin] = STATE(286), - [sym_strong] = STATE(682), - [sym_strong_begin] = STATE(288), - [sym_highlighted] = STATE(682), - [sym_insert] = STATE(682), - [sym_delete] = STATE(682), - [sym_superscript] = STATE(682), - [sym_subscript] = STATE(682), - [sym_footnote_reference] = STATE(682), - [sym__image] = STATE(682), - [sym_full_reference_image] = STATE(682), - [sym_collapsed_reference_image] = STATE(682), - [sym_inline_image] = STATE(682), - [sym__image_description] = STATE(1440), - [sym__link] = STATE(682), - [sym_full_reference_link] = STATE(682), - [sym_collapsed_reference_link] = STATE(682), - [sym_inline_link] = STATE(682), - [sym_link_text] = STATE(1439), - [sym__comment_with_spaces] = STATE(682), - [sym_span] = STATE(682), - [sym_raw_inline] = STATE(682), - [sym_math] = STATE(682), - [sym_verbatim] = STATE(682), - [sym__todo_highlights] = STATE(682), - [sym_todo] = STATE(682), - [sym_note] = STATE(682), - [sym__symbol_fallback] = STATE(682), - [aux_sym__text] = STATE(572), - [aux_sym__inline_repeat1] = STATE(219), - [anon_sym_LBRACK] = ACTIONS(1182), - [anon_sym_PIPE] = ACTIONS(1185), - [anon_sym_LBRACE] = ACTIONS(1188), - [sym__whitespace1] = ACTIONS(1191), - [anon_sym_BSLASH] = ACTIONS(1194), - [sym_quotation_marks] = ACTIONS(1185), - [sym_ellipsis] = ACTIONS(1185), - [sym_em_dash] = ACTIONS(1185), - [sym_en_dash] = ACTIONS(1188), - [sym_backslash_escape] = ACTIONS(1188), - [anon_sym_LT] = ACTIONS(1197), - [anon_sym_LBRACE_] = ACTIONS(1200), - [anon_sym__] = ACTIONS(1203), - [anon_sym_LBRACE_STAR] = ACTIONS(1206), - [anon_sym_STAR] = ACTIONS(1209), - [anon_sym_LBRACE_EQ] = ACTIONS(1212), - [anon_sym_LBRACE_PLUS] = ACTIONS(1215), - [anon_sym_LBRACE_DASH] = ACTIONS(1218), - [sym_symbol] = ACTIONS(1185), - [anon_sym_LBRACE_CARET] = ACTIONS(1221), - [anon_sym_CARET] = ACTIONS(1221), - [anon_sym_LBRACE_TILDE] = ACTIONS(1224), - [anon_sym_TILDE] = ACTIONS(1224), - [anon_sym_LBRACK_CARET] = ACTIONS(1227), - [anon_sym_BANG_LBRACK] = ACTIONS(1230), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(1233), - [anon_sym_TODO] = ACTIONS(1236), - [anon_sym_WIP] = ACTIONS(1236), - [anon_sym_NOTE] = ACTIONS(1239), - [anon_sym_INFO] = ACTIONS(1239), - [anon_sym_XXX] = ACTIONS(1239), - [sym_fixme] = ACTIONS(1185), - [aux_sym__text_token1] = ACTIONS(1242), - [sym__newline_inline] = ACTIONS(1245), - [sym__verbatim_begin] = ACTIONS(1248), - }, - [198] = { - [sym__inline_element_with_whitespace] = STATE(194), - [sym__inline_element_with_newline] = STATE(194), - [sym__inline_core_element] = STATE(194), - [sym__hard_line_break] = STATE(539), - [sym_hard_line_break] = STATE(512), - [sym__smart_punctuation] = STATE(539), - [sym_autolink] = STATE(539), - [sym_emphasis] = STATE(539), - [sym_emphasis_begin] = STATE(299), - [sym_strong] = STATE(539), - [sym_strong_begin] = STATE(298), - [sym_highlighted] = STATE(539), - [sym_insert] = STATE(539), - [sym_delete] = STATE(539), - [sym_superscript] = STATE(539), - [sym_subscript] = STATE(539), - [sym_footnote_reference] = STATE(539), - [sym__image] = STATE(539), - [sym_full_reference_image] = STATE(539), - [sym_collapsed_reference_image] = STATE(539), - [sym_inline_image] = STATE(539), - [sym__image_description] = STATE(1414), - [sym__link] = STATE(539), - [sym_full_reference_link] = STATE(539), - [sym_collapsed_reference_link] = STATE(539), - [sym_inline_link] = STATE(539), - [sym_link_text] = STATE(1411), - [sym__comment_with_spaces] = STATE(539), - [sym_span] = STATE(539), - [sym_raw_inline] = STATE(539), - [sym_math] = STATE(539), - [sym_verbatim] = STATE(539), - [sym__todo_highlights] = STATE(539), - [sym_todo] = STATE(539), - [sym_note] = STATE(539), - [sym__symbol_fallback] = STATE(539), - [aux_sym__text] = STATE(520), - [aux_sym__inline_repeat1] = STATE(194), - [anon_sym_LBRACK] = ACTIONS(734), - [anon_sym_PIPE] = ACTIONS(736), - [anon_sym_NULL] = ACTIONS(1563), - [anon_sym_LBRACE] = ACTIONS(740), - [sym__whitespace1] = ACTIONS(742), - [anon_sym_BSLASH] = ACTIONS(744), - [sym_quotation_marks] = ACTIONS(736), - [sym_ellipsis] = ACTIONS(736), - [sym_em_dash] = ACTIONS(736), - [sym_en_dash] = ACTIONS(740), - [sym_backslash_escape] = ACTIONS(740), - [anon_sym_LT] = ACTIONS(746), - [anon_sym_LBRACE_] = ACTIONS(748), - [anon_sym__] = ACTIONS(750), - [anon_sym_LBRACE_STAR] = ACTIONS(752), - [anon_sym_STAR] = ACTIONS(754), - [anon_sym_LBRACE_EQ] = ACTIONS(756), - [anon_sym_LBRACE_PLUS] = ACTIONS(758), - [anon_sym_LBRACE_DASH] = ACTIONS(760), - [sym_symbol] = ACTIONS(736), - [anon_sym_LBRACE_CARET] = ACTIONS(762), - [anon_sym_CARET] = ACTIONS(762), - [anon_sym_LBRACE_TILDE] = ACTIONS(764), - [anon_sym_TILDE] = ACTIONS(764), - [anon_sym_LBRACK_CARET] = ACTIONS(766), - [anon_sym_BANG_LBRACK] = ACTIONS(768), - [anon_sym_DOLLAR] = ACTIONS(770), - [anon_sym_TODO] = ACTIONS(772), - [anon_sym_WIP] = ACTIONS(772), - [anon_sym_NOTE] = ACTIONS(774), - [anon_sym_INFO] = ACTIONS(774), - [anon_sym_XXX] = ACTIONS(774), - [sym_fixme] = ACTIONS(736), - [aux_sym__text_token1] = ACTIONS(776), - [sym__newline] = ACTIONS(1563), - [sym__newline_inline] = ACTIONS(778), - [sym__verbatim_begin] = ACTIONS(780), - }, - [199] = { - [sym__inline] = STATE(2064), - [sym__inline_element_with_whitespace] = STATE(239), - [sym__inline_element_with_newline] = STATE(239), - [sym__inline_core_element] = STATE(239), - [sym__hard_line_break] = STATE(624), - [sym_hard_line_break] = STATE(527), - [sym__smart_punctuation] = STATE(624), - [sym_autolink] = STATE(624), - [sym_emphasis] = STATE(624), - [sym_emphasis_begin] = STATE(281), - [sym_strong] = STATE(624), - [sym_strong_begin] = STATE(276), - [sym_highlighted] = STATE(624), - [sym_insert] = STATE(624), - [sym_delete] = STATE(624), - [sym_superscript] = STATE(624), - [sym_subscript] = STATE(624), - [sym_footnote_reference] = STATE(624), - [sym__image] = STATE(624), - [sym_full_reference_image] = STATE(624), - [sym_collapsed_reference_image] = STATE(624), - [sym_inline_image] = STATE(624), - [sym__image_description] = STATE(1450), - [sym__link] = STATE(624), - [sym_full_reference_link] = STATE(624), - [sym_collapsed_reference_link] = STATE(624), - [sym_inline_link] = STATE(624), - [sym_link_text] = STATE(1451), - [sym__comment_with_spaces] = STATE(624), - [sym_span] = STATE(624), - [sym_raw_inline] = STATE(624), - [sym_math] = STATE(624), - [sym_verbatim] = STATE(624), - [sym__todo_highlights] = STATE(624), - [sym_todo] = STATE(624), - [sym_note] = STATE(624), - [sym__symbol_fallback] = STATE(624), - [aux_sym__text] = STATE(595), - [aux_sym__inline_repeat1] = STATE(239), - [anon_sym_LBRACK] = ACTIONS(948), - [anon_sym_PIPE] = ACTIONS(951), - [anon_sym_LBRACE] = ACTIONS(954), - [sym__whitespace1] = ACTIONS(957), - [anon_sym_BSLASH] = ACTIONS(960), - [sym_quotation_marks] = ACTIONS(951), - [sym_ellipsis] = ACTIONS(951), - [sym_em_dash] = ACTIONS(951), - [sym_en_dash] = ACTIONS(954), - [sym_backslash_escape] = ACTIONS(954), - [anon_sym_LT] = ACTIONS(963), - [anon_sym_LBRACE_] = ACTIONS(966), - [anon_sym__] = ACTIONS(969), - [anon_sym_LBRACE_STAR] = ACTIONS(972), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_LBRACE_EQ] = ACTIONS(978), - [anon_sym_LBRACE_PLUS] = ACTIONS(981), - [anon_sym_LBRACE_DASH] = ACTIONS(984), - [sym_symbol] = ACTIONS(951), - [anon_sym_LBRACE_CARET] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_LBRACE_TILDE] = ACTIONS(990), - [anon_sym_TILDE] = ACTIONS(990), - [anon_sym_LBRACK_CARET] = ACTIONS(993), - [anon_sym_BANG_LBRACK] = ACTIONS(996), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(999), - [anon_sym_TODO] = ACTIONS(1002), - [anon_sym_WIP] = ACTIONS(1002), - [anon_sym_NOTE] = ACTIONS(1005), - [anon_sym_INFO] = ACTIONS(1005), - [anon_sym_XXX] = ACTIONS(1005), - [sym_fixme] = ACTIONS(951), - [aux_sym__text_token1] = ACTIONS(1008), - [sym__newline_inline] = ACTIONS(1011), - [sym__verbatim_begin] = ACTIONS(1014), - }, - [200] = { - [sym__inline] = STATE(2065), - [sym__inline_element_with_whitespace] = STATE(217), - [sym__inline_element_with_newline] = STATE(217), - [sym__inline_core_element] = STATE(217), - [sym__hard_line_break] = STATE(667), - [sym_hard_line_break] = STATE(529), - [sym__smart_punctuation] = STATE(667), - [sym_autolink] = STATE(667), - [sym_emphasis] = STATE(667), - [sym_emphasis_begin] = STATE(290), - [sym_strong] = STATE(667), - [sym_strong_begin] = STATE(273), - [sym_highlighted] = STATE(667), - [sym_insert] = STATE(667), - [sym_delete] = STATE(667), - [sym_superscript] = STATE(667), - [sym_subscript] = STATE(667), - [sym_footnote_reference] = STATE(667), - [sym__image] = STATE(667), - [sym_full_reference_image] = STATE(667), - [sym_collapsed_reference_image] = STATE(667), - [sym_inline_image] = STATE(667), - [sym__image_description] = STATE(1445), - [sym__link] = STATE(667), - [sym_full_reference_link] = STATE(667), - [sym_collapsed_reference_link] = STATE(667), - [sym_inline_link] = STATE(667), - [sym_link_text] = STATE(1443), - [sym__comment_with_spaces] = STATE(667), - [sym_span] = STATE(667), - [sym_raw_inline] = STATE(667), - [sym_math] = STATE(667), - [sym_verbatim] = STATE(667), - [sym__todo_highlights] = STATE(667), - [sym_todo] = STATE(667), - [sym_note] = STATE(667), - [sym__symbol_fallback] = STATE(667), - [aux_sym__text] = STATE(554), - [aux_sym__inline_repeat1] = STATE(217), - [anon_sym_LBRACK] = ACTIONS(1257), - [anon_sym_PIPE] = ACTIONS(1260), - [anon_sym_LBRACE] = ACTIONS(1263), - [sym__whitespace1] = ACTIONS(1266), - [anon_sym_BSLASH] = ACTIONS(1269), - [sym_quotation_marks] = ACTIONS(1260), - [sym_ellipsis] = ACTIONS(1260), - [sym_em_dash] = ACTIONS(1260), - [sym_en_dash] = ACTIONS(1263), - [sym_backslash_escape] = ACTIONS(1263), - [anon_sym_LT] = ACTIONS(1272), - [anon_sym_LBRACE_] = ACTIONS(1275), - [anon_sym__] = ACTIONS(1278), - [anon_sym_LBRACE_STAR] = ACTIONS(1281), - [anon_sym_STAR] = ACTIONS(1284), - [anon_sym_LBRACE_EQ] = ACTIONS(1287), - [anon_sym_LBRACE_PLUS] = ACTIONS(1290), - [anon_sym_LBRACE_DASH] = ACTIONS(1293), - [sym_symbol] = ACTIONS(1260), - [anon_sym_LBRACE_CARET] = ACTIONS(1296), - [anon_sym_CARET] = ACTIONS(1296), - [anon_sym_LBRACE_TILDE] = ACTIONS(1299), - [anon_sym_TILDE] = ACTIONS(1299), - [anon_sym_LBRACK_CARET] = ACTIONS(1302), - [anon_sym_BANG_LBRACK] = ACTIONS(1305), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(1308), - [anon_sym_TODO] = ACTIONS(1311), - [anon_sym_WIP] = ACTIONS(1311), - [anon_sym_NOTE] = ACTIONS(1314), - [anon_sym_INFO] = ACTIONS(1314), - [anon_sym_XXX] = ACTIONS(1314), - [sym_fixme] = ACTIONS(1260), - [aux_sym__text_token1] = ACTIONS(1317), - [sym__newline_inline] = ACTIONS(1320), - [sym__verbatim_begin] = ACTIONS(1323), - }, - [201] = { - [sym__inline] = STATE(2253), - [sym__inline_element_with_whitespace] = STATE(239), - [sym__inline_element_with_newline] = STATE(239), - [sym__inline_core_element] = STATE(239), - [sym__hard_line_break] = STATE(624), - [sym_hard_line_break] = STATE(527), - [sym__smart_punctuation] = STATE(624), - [sym_autolink] = STATE(624), - [sym_emphasis] = STATE(624), - [sym_emphasis_begin] = STATE(281), - [sym_strong] = STATE(624), - [sym_strong_begin] = STATE(276), - [sym_highlighted] = STATE(624), - [sym_insert] = STATE(624), - [sym_delete] = STATE(624), - [sym_superscript] = STATE(624), - [sym_subscript] = STATE(624), - [sym_footnote_reference] = STATE(624), - [sym__image] = STATE(624), - [sym_full_reference_image] = STATE(624), - [sym_collapsed_reference_image] = STATE(624), - [sym_inline_image] = STATE(624), - [sym__image_description] = STATE(1450), - [sym__link] = STATE(624), - [sym_full_reference_link] = STATE(624), - [sym_collapsed_reference_link] = STATE(624), - [sym_inline_link] = STATE(624), - [sym_link_text] = STATE(1451), - [sym__comment_with_spaces] = STATE(624), - [sym_span] = STATE(624), - [sym_raw_inline] = STATE(624), - [sym_math] = STATE(624), - [sym_verbatim] = STATE(624), - [sym__todo_highlights] = STATE(624), - [sym_todo] = STATE(624), - [sym_note] = STATE(624), - [sym__symbol_fallback] = STATE(624), - [aux_sym__text] = STATE(595), - [aux_sym__inline_repeat1] = STATE(239), - [anon_sym_LBRACK] = ACTIONS(948), - [anon_sym_PIPE] = ACTIONS(951), - [anon_sym_LBRACE] = ACTIONS(954), - [sym__whitespace1] = ACTIONS(957), - [anon_sym_BSLASH] = ACTIONS(960), - [sym_quotation_marks] = ACTIONS(951), - [sym_ellipsis] = ACTIONS(951), - [sym_em_dash] = ACTIONS(951), - [sym_en_dash] = ACTIONS(954), - [sym_backslash_escape] = ACTIONS(954), - [anon_sym_LT] = ACTIONS(963), - [anon_sym_LBRACE_] = ACTIONS(966), - [anon_sym__] = ACTIONS(969), - [anon_sym_LBRACE_STAR] = ACTIONS(972), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_LBRACE_EQ] = ACTIONS(978), - [anon_sym_LBRACE_PLUS] = ACTIONS(981), - [anon_sym_LBRACE_DASH] = ACTIONS(984), - [sym_symbol] = ACTIONS(951), - [anon_sym_LBRACE_CARET] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_LBRACE_TILDE] = ACTIONS(990), - [anon_sym_TILDE] = ACTIONS(990), - [anon_sym_LBRACK_CARET] = ACTIONS(993), - [anon_sym_BANG_LBRACK] = ACTIONS(996), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(999), - [anon_sym_TODO] = ACTIONS(1002), - [anon_sym_WIP] = ACTIONS(1002), - [anon_sym_NOTE] = ACTIONS(1005), - [anon_sym_INFO] = ACTIONS(1005), - [anon_sym_XXX] = ACTIONS(1005), - [sym_fixme] = ACTIONS(951), - [aux_sym__text_token1] = ACTIONS(1008), - [sym__newline_inline] = ACTIONS(1565), - [sym__verbatim_begin] = ACTIONS(1014), - }, - [202] = { - [sym__inline] = STATE(2325), - [sym__inline_element_with_whitespace] = STATE(242), - [sym__inline_element_with_newline] = STATE(242), - [sym__inline_core_element] = STATE(242), - [sym__hard_line_break] = STATE(627), - [sym_hard_line_break] = STATE(523), - [sym__smart_punctuation] = STATE(627), - [sym_autolink] = STATE(627), - [sym_emphasis] = STATE(627), - [sym_emphasis_begin] = STATE(296), - [sym_strong] = STATE(627), - [sym_strong_begin] = STATE(295), - [sym_highlighted] = STATE(627), - [sym_insert] = STATE(627), - [sym_delete] = STATE(627), - [sym_superscript] = STATE(627), - [sym_subscript] = STATE(627), - [sym_footnote_reference] = STATE(627), - [sym__image] = STATE(627), - [sym_full_reference_image] = STATE(627), - [sym_collapsed_reference_image] = STATE(627), - [sym_inline_image] = STATE(627), - [sym__image_description] = STATE(1448), - [sym__link] = STATE(627), - [sym_full_reference_link] = STATE(627), - [sym_collapsed_reference_link] = STATE(627), - [sym_inline_link] = STATE(627), - [sym_link_text] = STATE(1453), - [sym__comment_with_spaces] = STATE(627), - [sym_span] = STATE(627), - [sym_raw_inline] = STATE(627), - [sym_math] = STATE(627), - [sym_verbatim] = STATE(627), - [sym__todo_highlights] = STATE(627), - [sym_todo] = STATE(627), - [sym_note] = STATE(627), - [sym__symbol_fallback] = STATE(627), - [aux_sym__text] = STATE(560), - [aux_sym__inline_repeat1] = STATE(242), - [anon_sym_LBRACK] = ACTIONS(853), - [anon_sym_PIPE] = ACTIONS(858), - [anon_sym_LBRACE] = ACTIONS(863), - [sym__whitespace1] = ACTIONS(866), - [anon_sym_BSLASH] = ACTIONS(869), - [sym_quotation_marks] = ACTIONS(858), - [sym_ellipsis] = ACTIONS(858), - [sym_em_dash] = ACTIONS(858), - [sym_en_dash] = ACTIONS(863), - [sym_backslash_escape] = ACTIONS(863), - [anon_sym_LT] = ACTIONS(872), - [anon_sym_LBRACE_] = ACTIONS(875), - [anon_sym__] = ACTIONS(878), - [anon_sym_LBRACE_STAR] = ACTIONS(881), - [anon_sym_STAR] = ACTIONS(884), - [anon_sym_LBRACE_EQ] = ACTIONS(887), - [anon_sym_LBRACE_PLUS] = ACTIONS(890), - [anon_sym_LBRACE_DASH] = ACTIONS(893), - [sym_symbol] = ACTIONS(858), - [anon_sym_LBRACE_CARET] = ACTIONS(896), - [anon_sym_CARET] = ACTIONS(896), - [anon_sym_LBRACE_TILDE] = ACTIONS(899), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_LBRACK_CARET] = ACTIONS(902), - [anon_sym_BANG_LBRACK] = ACTIONS(905), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(910), - [anon_sym_TODO] = ACTIONS(913), - [anon_sym_WIP] = ACTIONS(913), - [anon_sym_NOTE] = ACTIONS(916), - [anon_sym_INFO] = ACTIONS(916), - [anon_sym_XXX] = ACTIONS(916), - [sym_fixme] = ACTIONS(858), - [aux_sym__text_token1] = ACTIONS(919), - [sym__newline_inline] = ACTIONS(922), - [sym__verbatim_begin] = ACTIONS(925), - }, - [203] = { - [sym__inline] = STATE(1794), - [sym__inline_element_with_whitespace] = STATE(198), - [sym__inline_element_with_newline] = STATE(198), - [sym__inline_core_element] = STATE(198), - [sym__inline_line] = STATE(1743), - [sym__hard_line_break] = STATE(539), - [sym_hard_line_break] = STATE(512), - [sym__smart_punctuation] = STATE(539), - [sym_autolink] = STATE(539), - [sym_emphasis] = STATE(539), - [sym_emphasis_begin] = STATE(299), - [sym_strong] = STATE(539), - [sym_strong_begin] = STATE(298), - [sym_highlighted] = STATE(539), - [sym_insert] = STATE(539), - [sym_delete] = STATE(539), - [sym_superscript] = STATE(539), - [sym_subscript] = STATE(539), - [sym_footnote_reference] = STATE(539), - [sym__image] = STATE(539), - [sym_full_reference_image] = STATE(539), - [sym_collapsed_reference_image] = STATE(539), - [sym_inline_image] = STATE(539), - [sym__image_description] = STATE(1414), - [sym__link] = STATE(539), - [sym_full_reference_link] = STATE(539), - [sym_collapsed_reference_link] = STATE(539), - [sym_inline_link] = STATE(539), - [sym_link_text] = STATE(1411), - [sym__comment_with_spaces] = STATE(539), - [sym_span] = STATE(539), - [sym_raw_inline] = STATE(539), - [sym_math] = STATE(539), - [sym_verbatim] = STATE(539), - [sym__todo_highlights] = STATE(539), - [sym_todo] = STATE(539), - [sym_note] = STATE(539), - [sym__symbol_fallback] = STATE(539), - [aux_sym__text] = STATE(520), - [aux_sym__inline_repeat1] = STATE(198), - [anon_sym_LBRACK] = ACTIONS(734), - [anon_sym_PIPE] = ACTIONS(736), - [anon_sym_LBRACE] = ACTIONS(740), - [sym__whitespace1] = ACTIONS(742), - [anon_sym_BSLASH] = ACTIONS(744), - [sym_quotation_marks] = ACTIONS(736), - [sym_ellipsis] = ACTIONS(736), - [sym_em_dash] = ACTIONS(736), - [sym_en_dash] = ACTIONS(740), - [sym_backslash_escape] = ACTIONS(740), - [anon_sym_LT] = ACTIONS(746), - [anon_sym_LBRACE_] = ACTIONS(748), - [anon_sym__] = ACTIONS(750), - [anon_sym_LBRACE_STAR] = ACTIONS(752), - [anon_sym_STAR] = ACTIONS(754), - [anon_sym_LBRACE_EQ] = ACTIONS(756), - [anon_sym_LBRACE_PLUS] = ACTIONS(758), - [anon_sym_LBRACE_DASH] = ACTIONS(760), - [sym_symbol] = ACTIONS(736), - [anon_sym_LBRACE_CARET] = ACTIONS(762), - [anon_sym_CARET] = ACTIONS(762), - [anon_sym_LBRACE_TILDE] = ACTIONS(764), - [anon_sym_TILDE] = ACTIONS(764), - [anon_sym_LBRACK_CARET] = ACTIONS(766), - [anon_sym_BANG_LBRACK] = ACTIONS(768), - [anon_sym_DOLLAR] = ACTIONS(770), - [anon_sym_TODO] = ACTIONS(772), - [anon_sym_WIP] = ACTIONS(772), - [anon_sym_NOTE] = ACTIONS(774), - [anon_sym_INFO] = ACTIONS(774), - [anon_sym_XXX] = ACTIONS(774), - [sym_fixme] = ACTIONS(736), - [aux_sym__text_token1] = ACTIONS(776), - [sym__newline_inline] = ACTIONS(778), - [sym__verbatim_begin] = ACTIONS(780), - }, - [204] = { - [sym__inline] = STATE(1928), - [sym__inline_element_with_whitespace] = STATE(198), - [sym__inline_element_with_newline] = STATE(198), - [sym__inline_core_element] = STATE(198), - [sym__inline_line] = STATE(1735), - [sym__hard_line_break] = STATE(539), - [sym_hard_line_break] = STATE(512), - [sym__smart_punctuation] = STATE(539), - [sym_autolink] = STATE(539), - [sym_emphasis] = STATE(539), - [sym_emphasis_begin] = STATE(299), - [sym_strong] = STATE(539), - [sym_strong_begin] = STATE(298), - [sym_highlighted] = STATE(539), - [sym_insert] = STATE(539), - [sym_delete] = STATE(539), - [sym_superscript] = STATE(539), - [sym_subscript] = STATE(539), - [sym_footnote_reference] = STATE(539), - [sym__image] = STATE(539), - [sym_full_reference_image] = STATE(539), - [sym_collapsed_reference_image] = STATE(539), - [sym_inline_image] = STATE(539), - [sym__image_description] = STATE(1414), - [sym__link] = STATE(539), - [sym_full_reference_link] = STATE(539), - [sym_collapsed_reference_link] = STATE(539), - [sym_inline_link] = STATE(539), - [sym_link_text] = STATE(1411), - [sym__comment_with_spaces] = STATE(539), - [sym_span] = STATE(539), - [sym_raw_inline] = STATE(539), - [sym_math] = STATE(539), - [sym_verbatim] = STATE(539), - [sym__todo_highlights] = STATE(539), - [sym_todo] = STATE(539), - [sym_note] = STATE(539), - [sym__symbol_fallback] = STATE(539), - [aux_sym__text] = STATE(520), - [aux_sym__inline_repeat1] = STATE(198), - [anon_sym_LBRACK] = ACTIONS(734), - [anon_sym_PIPE] = ACTIONS(736), - [anon_sym_LBRACE] = ACTIONS(740), - [sym__whitespace1] = ACTIONS(742), - [anon_sym_BSLASH] = ACTIONS(744), - [sym_quotation_marks] = ACTIONS(736), - [sym_ellipsis] = ACTIONS(736), - [sym_em_dash] = ACTIONS(736), - [sym_en_dash] = ACTIONS(740), - [sym_backslash_escape] = ACTIONS(740), - [anon_sym_LT] = ACTIONS(746), - [anon_sym_LBRACE_] = ACTIONS(748), - [anon_sym__] = ACTIONS(750), - [anon_sym_LBRACE_STAR] = ACTIONS(752), - [anon_sym_STAR] = ACTIONS(754), - [anon_sym_LBRACE_EQ] = ACTIONS(756), - [anon_sym_LBRACE_PLUS] = ACTIONS(758), - [anon_sym_LBRACE_DASH] = ACTIONS(760), - [sym_symbol] = ACTIONS(736), - [anon_sym_LBRACE_CARET] = ACTIONS(762), - [anon_sym_CARET] = ACTIONS(762), - [anon_sym_LBRACE_TILDE] = ACTIONS(764), - [anon_sym_TILDE] = ACTIONS(764), - [anon_sym_LBRACK_CARET] = ACTIONS(766), - [anon_sym_BANG_LBRACK] = ACTIONS(768), - [anon_sym_DOLLAR] = ACTIONS(770), - [anon_sym_TODO] = ACTIONS(772), - [anon_sym_WIP] = ACTIONS(772), - [anon_sym_NOTE] = ACTIONS(774), - [anon_sym_INFO] = ACTIONS(774), - [anon_sym_XXX] = ACTIONS(774), - [sym_fixme] = ACTIONS(736), - [aux_sym__text_token1] = ACTIONS(776), - [sym__newline_inline] = ACTIONS(778), - [sym__verbatim_begin] = ACTIONS(780), - }, - [205] = { - [sym__inline] = STATE(1843), - [sym__inline_element_with_whitespace] = STATE(198), - [sym__inline_element_with_newline] = STATE(198), - [sym__inline_core_element] = STATE(198), - [sym__inline_line] = STATE(1738), - [sym__hard_line_break] = STATE(539), - [sym_hard_line_break] = STATE(512), - [sym__smart_punctuation] = STATE(539), - [sym_autolink] = STATE(539), - [sym_emphasis] = STATE(539), - [sym_emphasis_begin] = STATE(299), - [sym_strong] = STATE(539), - [sym_strong_begin] = STATE(298), - [sym_highlighted] = STATE(539), - [sym_insert] = STATE(539), - [sym_delete] = STATE(539), - [sym_superscript] = STATE(539), - [sym_subscript] = STATE(539), - [sym_footnote_reference] = STATE(539), - [sym__image] = STATE(539), - [sym_full_reference_image] = STATE(539), - [sym_collapsed_reference_image] = STATE(539), - [sym_inline_image] = STATE(539), - [sym__image_description] = STATE(1414), - [sym__link] = STATE(539), - [sym_full_reference_link] = STATE(539), - [sym_collapsed_reference_link] = STATE(539), - [sym_inline_link] = STATE(539), - [sym_link_text] = STATE(1411), - [sym__comment_with_spaces] = STATE(539), - [sym_span] = STATE(539), - [sym_raw_inline] = STATE(539), - [sym_math] = STATE(539), - [sym_verbatim] = STATE(539), - [sym__todo_highlights] = STATE(539), - [sym_todo] = STATE(539), - [sym_note] = STATE(539), - [sym__symbol_fallback] = STATE(539), - [aux_sym__text] = STATE(520), - [aux_sym__inline_repeat1] = STATE(198), - [anon_sym_LBRACK] = ACTIONS(734), - [anon_sym_PIPE] = ACTIONS(736), - [anon_sym_LBRACE] = ACTIONS(740), - [sym__whitespace1] = ACTIONS(742), - [anon_sym_BSLASH] = ACTIONS(744), - [sym_quotation_marks] = ACTIONS(736), - [sym_ellipsis] = ACTIONS(736), - [sym_em_dash] = ACTIONS(736), - [sym_en_dash] = ACTIONS(740), - [sym_backslash_escape] = ACTIONS(740), - [anon_sym_LT] = ACTIONS(746), - [anon_sym_LBRACE_] = ACTIONS(748), - [anon_sym__] = ACTIONS(750), - [anon_sym_LBRACE_STAR] = ACTIONS(752), - [anon_sym_STAR] = ACTIONS(754), - [anon_sym_LBRACE_EQ] = ACTIONS(756), - [anon_sym_LBRACE_PLUS] = ACTIONS(758), - [anon_sym_LBRACE_DASH] = ACTIONS(760), - [sym_symbol] = ACTIONS(736), - [anon_sym_LBRACE_CARET] = ACTIONS(762), - [anon_sym_CARET] = ACTIONS(762), - [anon_sym_LBRACE_TILDE] = ACTIONS(764), - [anon_sym_TILDE] = ACTIONS(764), - [anon_sym_LBRACK_CARET] = ACTIONS(766), - [anon_sym_BANG_LBRACK] = ACTIONS(768), - [anon_sym_DOLLAR] = ACTIONS(770), - [anon_sym_TODO] = ACTIONS(772), - [anon_sym_WIP] = ACTIONS(772), - [anon_sym_NOTE] = ACTIONS(774), - [anon_sym_INFO] = ACTIONS(774), - [anon_sym_XXX] = ACTIONS(774), - [sym_fixme] = ACTIONS(736), - [aux_sym__text_token1] = ACTIONS(776), - [sym__newline_inline] = ACTIONS(778), - [sym__verbatim_begin] = ACTIONS(780), - }, - [206] = { - [sym__inline] = STATE(1763), - [sym__inline_element_with_whitespace] = STATE(198), - [sym__inline_element_with_newline] = STATE(198), - [sym__inline_core_element] = STATE(198), - [sym__inline_line] = STATE(1921), - [sym__hard_line_break] = STATE(539), - [sym_hard_line_break] = STATE(512), - [sym__smart_punctuation] = STATE(539), - [sym_autolink] = STATE(539), - [sym_emphasis] = STATE(539), - [sym_emphasis_begin] = STATE(299), - [sym_strong] = STATE(539), - [sym_strong_begin] = STATE(298), - [sym_highlighted] = STATE(539), - [sym_insert] = STATE(539), - [sym_delete] = STATE(539), - [sym_superscript] = STATE(539), - [sym_subscript] = STATE(539), - [sym_footnote_reference] = STATE(539), - [sym__image] = STATE(539), - [sym_full_reference_image] = STATE(539), - [sym_collapsed_reference_image] = STATE(539), - [sym_inline_image] = STATE(539), - [sym__image_description] = STATE(1414), - [sym__link] = STATE(539), - [sym_full_reference_link] = STATE(539), - [sym_collapsed_reference_link] = STATE(539), - [sym_inline_link] = STATE(539), - [sym_link_text] = STATE(1411), - [sym__comment_with_spaces] = STATE(539), - [sym_span] = STATE(539), - [sym_raw_inline] = STATE(539), - [sym_math] = STATE(539), - [sym_verbatim] = STATE(539), - [sym__todo_highlights] = STATE(539), - [sym_todo] = STATE(539), - [sym_note] = STATE(539), - [sym__symbol_fallback] = STATE(539), - [aux_sym__text] = STATE(520), - [aux_sym__inline_repeat1] = STATE(198), - [anon_sym_LBRACK] = ACTIONS(734), - [anon_sym_PIPE] = ACTIONS(736), - [anon_sym_LBRACE] = ACTIONS(740), - [sym__whitespace1] = ACTIONS(742), - [anon_sym_BSLASH] = ACTIONS(744), - [sym_quotation_marks] = ACTIONS(736), - [sym_ellipsis] = ACTIONS(736), - [sym_em_dash] = ACTIONS(736), - [sym_en_dash] = ACTIONS(740), - [sym_backslash_escape] = ACTIONS(740), - [anon_sym_LT] = ACTIONS(746), - [anon_sym_LBRACE_] = ACTIONS(748), - [anon_sym__] = ACTIONS(750), - [anon_sym_LBRACE_STAR] = ACTIONS(752), - [anon_sym_STAR] = ACTIONS(754), - [anon_sym_LBRACE_EQ] = ACTIONS(756), - [anon_sym_LBRACE_PLUS] = ACTIONS(758), - [anon_sym_LBRACE_DASH] = ACTIONS(760), - [sym_symbol] = ACTIONS(736), - [anon_sym_LBRACE_CARET] = ACTIONS(762), - [anon_sym_CARET] = ACTIONS(762), - [anon_sym_LBRACE_TILDE] = ACTIONS(764), - [anon_sym_TILDE] = ACTIONS(764), - [anon_sym_LBRACK_CARET] = ACTIONS(766), - [anon_sym_BANG_LBRACK] = ACTIONS(768), - [anon_sym_DOLLAR] = ACTIONS(770), - [anon_sym_TODO] = ACTIONS(772), - [anon_sym_WIP] = ACTIONS(772), - [anon_sym_NOTE] = ACTIONS(774), - [anon_sym_INFO] = ACTIONS(774), - [anon_sym_XXX] = ACTIONS(774), - [sym_fixme] = ACTIONS(736), - [aux_sym__text_token1] = ACTIONS(776), - [sym__newline_inline] = ACTIONS(778), - [sym__verbatim_begin] = ACTIONS(780), - }, - [207] = { - [sym__inline] = STATE(1925), - [sym__inline_element_with_whitespace] = STATE(241), - [sym__inline_element_with_newline] = STATE(241), - [sym__inline_core_element] = STATE(241), - [sym__hard_line_break] = STATE(696), - [sym_hard_line_break] = STATE(530), - [sym__smart_punctuation] = STATE(696), - [sym_autolink] = STATE(696), - [sym_emphasis] = STATE(696), - [sym_emphasis_begin] = STATE(274), - [sym_strong] = STATE(696), - [sym_strong_begin] = STATE(275), - [sym_highlighted] = STATE(696), - [sym_insert] = STATE(696), - [sym_delete] = STATE(696), - [sym_superscript] = STATE(696), - [sym_subscript] = STATE(696), - [sym_footnote_reference] = STATE(696), - [sym__image] = STATE(696), - [sym_full_reference_image] = STATE(696), - [sym_collapsed_reference_image] = STATE(696), - [sym_inline_image] = STATE(696), - [sym__image_description] = STATE(1427), - [sym__link] = STATE(696), - [sym_full_reference_link] = STATE(696), - [sym_collapsed_reference_link] = STATE(696), - [sym_inline_link] = STATE(696), - [sym_link_text] = STATE(1426), - [sym__comment_with_spaces] = STATE(696), - [sym_span] = STATE(696), - [sym_raw_inline] = STATE(696), - [sym_math] = STATE(696), - [sym_verbatim] = STATE(696), - [sym__todo_highlights] = STATE(696), - [sym_todo] = STATE(696), - [sym_note] = STATE(696), - [sym__symbol_fallback] = STATE(696), - [aux_sym__text] = STATE(609), - [aux_sym__inline_repeat1] = STATE(241), - [anon_sym_LBRACK] = ACTIONS(1036), - [anon_sym_PIPE] = ACTIONS(1039), - [anon_sym_LBRACE] = ACTIONS(1042), - [sym__whitespace1] = ACTIONS(1045), - [anon_sym_BSLASH] = ACTIONS(1048), - [sym_quotation_marks] = ACTIONS(1039), - [sym_ellipsis] = ACTIONS(1039), - [sym_em_dash] = ACTIONS(1039), - [sym_en_dash] = ACTIONS(1042), - [sym_backslash_escape] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1051), - [anon_sym_LBRACE_] = ACTIONS(1054), - [anon_sym__] = ACTIONS(1057), - [anon_sym_LBRACE_STAR] = ACTIONS(1060), - [anon_sym_STAR] = ACTIONS(1063), - [anon_sym_LBRACE_EQ] = ACTIONS(1066), - [anon_sym_LBRACE_PLUS] = ACTIONS(1069), - [anon_sym_LBRACE_DASH] = ACTIONS(1072), - [sym_symbol] = ACTIONS(1039), - [anon_sym_LBRACE_CARET] = ACTIONS(1075), - [anon_sym_CARET] = ACTIONS(1075), - [anon_sym_LBRACE_TILDE] = ACTIONS(1078), - [anon_sym_TILDE] = ACTIONS(1078), - [anon_sym_LBRACK_CARET] = ACTIONS(1081), - [anon_sym_BANG_LBRACK] = ACTIONS(1084), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(1087), - [anon_sym_TODO] = ACTIONS(1090), - [anon_sym_WIP] = ACTIONS(1090), - [anon_sym_NOTE] = ACTIONS(1093), - [anon_sym_INFO] = ACTIONS(1093), - [anon_sym_XXX] = ACTIONS(1093), - [sym_fixme] = ACTIONS(1039), - [aux_sym__text_token1] = ACTIONS(1096), - [sym__newline_inline] = ACTIONS(1099), - [sym__verbatim_begin] = ACTIONS(1102), - }, - [208] = { - [sym__inline] = STATE(1926), - [sym__inline_element_with_whitespace] = STATE(230), - [sym__inline_element_with_newline] = STATE(230), - [sym__inline_core_element] = STATE(230), - [sym__hard_line_break] = STATE(688), - [sym_hard_line_break] = STATE(516), - [sym__smart_punctuation] = STATE(688), - [sym_autolink] = STATE(688), - [sym_emphasis] = STATE(688), - [sym_emphasis_begin] = STATE(291), - [sym_strong] = STATE(688), - [sym_strong_begin] = STATE(272), - [sym_highlighted] = STATE(688), - [sym_insert] = STATE(688), - [sym_delete] = STATE(688), - [sym_superscript] = STATE(688), - [sym_subscript] = STATE(688), - [sym_footnote_reference] = STATE(688), - [sym__image] = STATE(688), - [sym_full_reference_image] = STATE(688), - [sym_collapsed_reference_image] = STATE(688), - [sym_inline_image] = STATE(688), - [sym__image_description] = STATE(1436), - [sym__link] = STATE(688), - [sym_full_reference_link] = STATE(688), - [sym_collapsed_reference_link] = STATE(688), - [sym_inline_link] = STATE(688), - [sym_link_text] = STATE(1434), - [sym__comment_with_spaces] = STATE(688), - [sym_span] = STATE(688), - [sym_raw_inline] = STATE(688), - [sym_math] = STATE(688), - [sym_verbatim] = STATE(688), - [sym__todo_highlights] = STATE(688), - [sym_todo] = STATE(688), - [sym_note] = STATE(688), - [sym__symbol_fallback] = STATE(688), - [aux_sym__text] = STATE(583), - [aux_sym__inline_repeat1] = STATE(230), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_PIPE] = ACTIONS(1108), - [anon_sym_LBRACE] = ACTIONS(1111), - [sym__whitespace1] = ACTIONS(1114), - [anon_sym_BSLASH] = ACTIONS(1117), - [sym_quotation_marks] = ACTIONS(1108), - [sym_ellipsis] = ACTIONS(1108), - [sym_em_dash] = ACTIONS(1108), - [sym_en_dash] = ACTIONS(1111), - [sym_backslash_escape] = ACTIONS(1111), - [anon_sym_LT] = ACTIONS(1120), - [anon_sym_LBRACE_] = ACTIONS(1123), - [anon_sym__] = ACTIONS(1126), - [anon_sym_LBRACE_STAR] = ACTIONS(1129), - [anon_sym_STAR] = ACTIONS(1132), - [anon_sym_LBRACE_EQ] = ACTIONS(1135), - [anon_sym_LBRACE_PLUS] = ACTIONS(1138), - [anon_sym_LBRACE_DASH] = ACTIONS(1141), - [sym_symbol] = ACTIONS(1108), - [anon_sym_LBRACE_CARET] = ACTIONS(1144), - [anon_sym_CARET] = ACTIONS(1144), - [anon_sym_LBRACE_TILDE] = ACTIONS(1147), - [anon_sym_TILDE] = ACTIONS(1147), - [anon_sym_LBRACK_CARET] = ACTIONS(1150), - [anon_sym_BANG_LBRACK] = ACTIONS(1153), - [anon_sym_LBRACE2] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(1156), - [anon_sym_TODO] = ACTIONS(1159), - [anon_sym_WIP] = ACTIONS(1159), - [anon_sym_NOTE] = ACTIONS(1162), - [anon_sym_INFO] = ACTIONS(1162), - [anon_sym_XXX] = ACTIONS(1162), - [sym_fixme] = ACTIONS(1108), - [aux_sym__text_token1] = ACTIONS(1165), - [sym__newline_inline] = ACTIONS(1168), - [sym__verbatim_begin] = ACTIONS(1171), - }, - [209] = { - [sym__inline] = STATE(2007), - [sym__inline_element_with_whitespace] = STATE(227), - [sym__inline_element_with_newline] = STATE(227), - [sym__inline_core_element] = STATE(227), - [sym__hard_line_break] = STATE(720), - [sym_hard_line_break] = STATE(514), - [sym__smart_punctuation] = STATE(720), - [sym_autolink] = STATE(720), - [sym_emphasis] = STATE(720), - [sym_emphasis_begin] = STATE(285), - [sym_strong] = STATE(720), - [sym_strong_begin] = STATE(287), - [sym_highlighted] = STATE(720), - [sym_insert] = STATE(720), - [sym_delete] = STATE(720), - [sym_superscript] = STATE(720), - [sym_subscript] = STATE(720), - [sym_footnote_reference] = STATE(720), - [sym__image] = STATE(720), - [sym_full_reference_image] = STATE(720), - [sym_collapsed_reference_image] = STATE(720), - [sym_inline_image] = STATE(720), - [sym__image_description] = STATE(1405), - [sym__link] = STATE(720), - [sym_full_reference_link] = STATE(720), - [sym_collapsed_reference_link] = STATE(720), - [sym_inline_link] = STATE(720), - [sym_link_text] = STATE(1407), - [sym__comment_with_spaces] = STATE(720), - [sym_span] = STATE(720), - [sym_raw_inline] = STATE(720), - [sym_math] = STATE(720), - [sym_verbatim] = STATE(720), - [sym__todo_highlights] = STATE(720), - [sym_todo] = STATE(720), - [sym_note] = STATE(720), - [sym__symbol_fallback] = STATE(720), - [aux_sym__text] = STATE(613), - [aux_sym__inline_repeat1] = STATE(227), - [anon_sym_LBRACK] = ACTIONS(1567), - [anon_sym_PIPE] = ACTIONS(1569), - [anon_sym_LBRACE] = ACTIONS(1571), - [sym__whitespace1] = ACTIONS(1573), - [anon_sym_BSLASH] = ACTIONS(1575), - [sym_quotation_marks] = ACTIONS(1569), - [sym_ellipsis] = ACTIONS(1569), - [sym_em_dash] = ACTIONS(1569), - [sym_en_dash] = ACTIONS(1571), - [sym_backslash_escape] = ACTIONS(1571), - [anon_sym_LT] = ACTIONS(1577), - [anon_sym_LBRACE_] = ACTIONS(1579), - [anon_sym__] = ACTIONS(1581), - [anon_sym_LBRACE_STAR] = ACTIONS(1583), - [anon_sym_STAR] = ACTIONS(1585), - [anon_sym_LBRACE_EQ] = ACTIONS(1587), - [anon_sym_LBRACE_PLUS] = ACTIONS(1589), - [anon_sym_LBRACE_DASH] = ACTIONS(1591), - [sym_symbol] = ACTIONS(1569), - [anon_sym_LBRACE_CARET] = ACTIONS(1593), - [anon_sym_CARET] = ACTIONS(1593), - [anon_sym_LBRACE_TILDE] = ACTIONS(1595), - [anon_sym_TILDE] = ACTIONS(1595), - [anon_sym_LBRACK_CARET] = ACTIONS(1597), - [anon_sym_BANG_LBRACK] = ACTIONS(1599), - [anon_sym_DOLLAR] = ACTIONS(1601), - [anon_sym_TODO] = ACTIONS(1603), - [anon_sym_WIP] = ACTIONS(1603), - [anon_sym_NOTE] = ACTIONS(1605), - [anon_sym_INFO] = ACTIONS(1605), - [anon_sym_XXX] = ACTIONS(1605), - [sym_fixme] = ACTIONS(1569), - [aux_sym__text_token1] = ACTIONS(1607), - [sym__newline_inline] = ACTIONS(1609), - [sym__verbatim_begin] = ACTIONS(1611), - }, - [210] = { - [sym__inline] = STATE(2089), - [sym__inline_element_with_whitespace] = STATE(227), - [sym__inline_element_with_newline] = STATE(227), - [sym__inline_core_element] = STATE(227), - [sym__hard_line_break] = STATE(720), - [sym_hard_line_break] = STATE(514), - [sym__smart_punctuation] = STATE(720), - [sym_autolink] = STATE(720), - [sym_emphasis] = STATE(720), - [sym_emphasis_begin] = STATE(285), - [sym_strong] = STATE(720), - [sym_strong_begin] = STATE(287), - [sym_highlighted] = STATE(720), - [sym_insert] = STATE(720), - [sym_delete] = STATE(720), - [sym_superscript] = STATE(720), - [sym_subscript] = STATE(720), - [sym_footnote_reference] = STATE(720), - [sym__image] = STATE(720), - [sym_full_reference_image] = STATE(720), - [sym_collapsed_reference_image] = STATE(720), - [sym_inline_image] = STATE(720), - [sym__image_description] = STATE(1405), - [sym__link] = STATE(720), - [sym_full_reference_link] = STATE(720), - [sym_collapsed_reference_link] = STATE(720), - [sym_inline_link] = STATE(720), - [sym_link_text] = STATE(1407), - [sym__comment_with_spaces] = STATE(720), - [sym_span] = STATE(720), - [sym_raw_inline] = STATE(720), - [sym_math] = STATE(720), - [sym_verbatim] = STATE(720), - [sym__todo_highlights] = STATE(720), - [sym_todo] = STATE(720), - [sym_note] = STATE(720), - [sym__symbol_fallback] = STATE(720), - [aux_sym__text] = STATE(613), - [aux_sym__inline_repeat1] = STATE(227), - [anon_sym_LBRACK] = ACTIONS(1567), - [anon_sym_PIPE] = ACTIONS(1569), - [anon_sym_LBRACE] = ACTIONS(1571), - [sym__whitespace1] = ACTIONS(1573), - [anon_sym_BSLASH] = ACTIONS(1575), - [sym_quotation_marks] = ACTIONS(1569), - [sym_ellipsis] = ACTIONS(1569), - [sym_em_dash] = ACTIONS(1569), - [sym_en_dash] = ACTIONS(1571), - [sym_backslash_escape] = ACTIONS(1571), - [anon_sym_LT] = ACTIONS(1577), - [anon_sym_LBRACE_] = ACTIONS(1579), - [anon_sym__] = ACTIONS(1581), - [anon_sym_LBRACE_STAR] = ACTIONS(1583), - [anon_sym_STAR] = ACTIONS(1585), - [anon_sym_LBRACE_EQ] = ACTIONS(1587), - [anon_sym_LBRACE_PLUS] = ACTIONS(1589), - [anon_sym_LBRACE_DASH] = ACTIONS(1591), - [sym_symbol] = ACTIONS(1569), - [anon_sym_LBRACE_CARET] = ACTIONS(1593), - [anon_sym_CARET] = ACTIONS(1593), - [anon_sym_LBRACE_TILDE] = ACTIONS(1595), - [anon_sym_TILDE] = ACTIONS(1595), - [anon_sym_LBRACK_CARET] = ACTIONS(1597), - [anon_sym_BANG_LBRACK] = ACTIONS(1599), - [anon_sym_DOLLAR] = ACTIONS(1601), - [anon_sym_TODO] = ACTIONS(1603), - [anon_sym_WIP] = ACTIONS(1603), - [anon_sym_NOTE] = ACTIONS(1605), - [anon_sym_INFO] = ACTIONS(1605), - [anon_sym_XXX] = ACTIONS(1605), - [sym_fixme] = ACTIONS(1569), - [aux_sym__text_token1] = ACTIONS(1607), - [sym__newline_inline] = ACTIONS(1609), - [sym__verbatim_begin] = ACTIONS(1611), - }, - [211] = { - [sym_table_separator] = STATE(307), - [sym__block_quote_prefix] = STATE(2013), - [aux_sym__block_quote_prefix_repeat1] = STATE(1599), - [ts_builtin_sym_end] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_PIPE] = ACTIONS(1617), - [anon_sym_LBRACE] = ACTIONS(1615), - [sym__whitespace1] = ACTIONS(1613), - [anon_sym_BSLASH] = ACTIONS(1615), - [sym_quotation_marks] = ACTIONS(1613), - [sym_ellipsis] = ACTIONS(1613), - [sym_em_dash] = ACTIONS(1613), - [sym_en_dash] = ACTIONS(1615), - [sym_backslash_escape] = ACTIONS(1615), - [anon_sym_LT] = ACTIONS(1613), - [anon_sym_LBRACE_] = ACTIONS(1613), - [anon_sym__] = ACTIONS(1613), - [anon_sym_LBRACE_STAR] = ACTIONS(1613), - [anon_sym_STAR] = ACTIONS(1613), - [anon_sym_LBRACE_EQ] = ACTIONS(1613), - [anon_sym_LBRACE_PLUS] = ACTIONS(1613), - [anon_sym_LBRACE_DASH] = ACTIONS(1613), - [sym_symbol] = ACTIONS(1613), - [anon_sym_LBRACE_CARET] = ACTIONS(1613), - [anon_sym_CARET] = ACTIONS(1613), - [anon_sym_LBRACE_TILDE] = ACTIONS(1613), - [anon_sym_TILDE] = ACTIONS(1613), - [anon_sym_LBRACK_CARET] = ACTIONS(1613), - [anon_sym_BANG_LBRACK] = ACTIONS(1613), - [anon_sym_DOLLAR] = ACTIONS(1613), - [anon_sym_TODO] = ACTIONS(1613), - [anon_sym_WIP] = ACTIONS(1613), - [anon_sym_NOTE] = ACTIONS(1613), - [anon_sym_INFO] = ACTIONS(1613), - [anon_sym_XXX] = ACTIONS(1613), - [sym_fixme] = ACTIONS(1613), - [aux_sym__text_token1] = ACTIONS(1615), - [sym__newline] = ACTIONS(1613), - [sym__newline_inline] = ACTIONS(1613), - [sym__heading1_begin] = ACTIONS(1613), - [sym__heading2_begin] = ACTIONS(1613), - [sym__heading3_begin] = ACTIONS(1613), - [sym__heading4_begin] = ACTIONS(1613), - [sym__heading5_begin] = ACTIONS(1613), - [sym__heading6_begin] = ACTIONS(1613), - [sym__div_begin] = ACTIONS(1613), - [sym__code_block_begin] = ACTIONS(1613), - [sym_list_marker_dash] = ACTIONS(1613), - [sym_list_marker_star] = ACTIONS(1613), - [sym_list_marker_plus] = ACTIONS(1613), - [sym__list_marker_task_begin] = ACTIONS(1613), - [sym_list_marker_definition] = ACTIONS(1613), - [sym_list_marker_decimal_period] = ACTIONS(1613), - [sym_list_marker_lower_alpha_period] = ACTIONS(1613), - [sym_list_marker_upper_alpha_period] = ACTIONS(1613), - [sym_list_marker_lower_roman_period] = ACTIONS(1613), - [sym_list_marker_upper_roman_period] = ACTIONS(1613), - [sym_list_marker_decimal_paren] = ACTIONS(1613), - [sym_list_marker_lower_alpha_paren] = ACTIONS(1613), - [sym_list_marker_upper_alpha_paren] = ACTIONS(1613), - [sym_list_marker_lower_roman_paren] = ACTIONS(1613), - [sym_list_marker_upper_roman_paren] = ACTIONS(1613), - [sym_list_marker_decimal_parens] = ACTIONS(1613), - [sym_list_marker_lower_alpha_parens] = ACTIONS(1613), - [sym_list_marker_upper_alpha_parens] = ACTIONS(1613), - [sym_list_marker_lower_roman_parens] = ACTIONS(1613), - [sym_list_marker_upper_roman_parens] = ACTIONS(1613), - [sym__block_quote_begin] = ACTIONS(1613), - [sym__block_quote_continuation] = ACTIONS(1620), - [sym__thematic_break_dash] = ACTIONS(1613), - [sym__thematic_break_star] = ACTIONS(1613), - [sym__footnote_begin] = ACTIONS(1613), - [sym__table_caption_begin] = ACTIONS(1613), - [sym__verbatim_begin] = ACTIONS(1613), - }, - [212] = { - [sym__inline_element_with_whitespace] = STATE(266), - [sym__inline_element_with_newline] = STATE(1135), - [sym__inline_core_element] = STATE(1135), - [sym__hard_line_break] = STATE(712), - [sym_hard_line_break] = STATE(522), - [sym__smart_punctuation] = STATE(712), - [sym_autolink] = STATE(712), - [sym_emphasis] = STATE(712), - [sym_emphasis_begin] = STATE(279), - [sym_strong] = STATE(712), - [sym_strong_begin] = STATE(280), - [sym_highlighted] = STATE(712), - [sym_insert] = STATE(712), - [sym_delete] = STATE(712), - [sym_superscript] = STATE(712), - [sym_subscript] = STATE(712), - [sym_footnote_reference] = STATE(712), - [sym__image] = STATE(712), - [sym_full_reference_image] = STATE(712), - [sym_collapsed_reference_image] = STATE(712), - [sym_inline_image] = STATE(712), - [sym__image_description] = STATE(1421), - [sym__link] = STATE(712), - [sym_full_reference_link] = STATE(712), - [sym_collapsed_reference_link] = STATE(712), - [sym_inline_link] = STATE(712), - [sym_link_text] = STATE(1419), - [sym__comment_with_spaces] = STATE(712), - [sym_span] = STATE(712), - [sym_raw_inline] = STATE(712), - [sym_math] = STATE(712), - [sym_verbatim] = STATE(712), - [sym__todo_highlights] = STATE(712), - [sym_todo] = STATE(712), - [sym_note] = STATE(712), - [sym__symbol_fallback] = STATE(712), - [aux_sym__text] = STATE(543), - [aux_sym__inline_repeat1] = STATE(266), - [anon_sym_LBRACK] = ACTIONS(1623), - [anon_sym_PIPE] = ACTIONS(1625), - [anon_sym_LBRACE] = ACTIONS(1627), - [sym__whitespace1] = ACTIONS(1629), - [anon_sym_BSLASH] = ACTIONS(1631), - [sym_quotation_marks] = ACTIONS(1625), - [sym_ellipsis] = ACTIONS(1625), - [sym_em_dash] = ACTIONS(1625), - [sym_en_dash] = ACTIONS(1627), - [sym_backslash_escape] = ACTIONS(1627), - [anon_sym_LT] = ACTIONS(1633), - [anon_sym_LBRACE_] = ACTIONS(1635), - [anon_sym__] = ACTIONS(1637), - [anon_sym_LBRACE_STAR] = ACTIONS(1639), - [anon_sym_STAR] = ACTIONS(1641), - [aux_sym_strong_end_token1] = ACTIONS(1644), - [anon_sym_LBRACE_EQ] = ACTIONS(1646), - [anon_sym_LBRACE_PLUS] = ACTIONS(1648), - [anon_sym_LBRACE_DASH] = ACTIONS(1650), - [sym_symbol] = ACTIONS(1625), - [anon_sym_LBRACE_CARET] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_LBRACE_TILDE] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1654), - [anon_sym_LBRACK_CARET] = ACTIONS(1656), - [anon_sym_BANG_LBRACK] = ACTIONS(1658), - [anon_sym_DOLLAR] = ACTIONS(1660), - [anon_sym_TODO] = ACTIONS(1662), - [anon_sym_WIP] = ACTIONS(1662), - [anon_sym_NOTE] = ACTIONS(1664), - [anon_sym_INFO] = ACTIONS(1664), - [anon_sym_XXX] = ACTIONS(1664), - [sym_fixme] = ACTIONS(1625), - [aux_sym__text_token1] = ACTIONS(1666), - [sym__newline_inline] = ACTIONS(1668), - [sym__verbatim_begin] = ACTIONS(1670), - }, - [213] = { - [sym__inline] = STATE(2053), - [sym__inline_element_with_whitespace] = STATE(227), - [sym__inline_element_with_newline] = STATE(227), - [sym__inline_core_element] = STATE(227), - [sym__hard_line_break] = STATE(720), - [sym_hard_line_break] = STATE(514), - [sym__smart_punctuation] = STATE(720), - [sym_autolink] = STATE(720), - [sym_emphasis] = STATE(720), - [sym_emphasis_begin] = STATE(285), - [sym_strong] = STATE(720), - [sym_strong_begin] = STATE(287), - [sym_highlighted] = STATE(720), - [sym_insert] = STATE(720), - [sym_delete] = STATE(720), - [sym_superscript] = STATE(720), - [sym_subscript] = STATE(720), - [sym_footnote_reference] = STATE(720), - [sym__image] = STATE(720), - [sym_full_reference_image] = STATE(720), - [sym_collapsed_reference_image] = STATE(720), - [sym_inline_image] = STATE(720), - [sym__image_description] = STATE(1405), - [sym__link] = STATE(720), - [sym_full_reference_link] = STATE(720), - [sym_collapsed_reference_link] = STATE(720), - [sym_inline_link] = STATE(720), - [sym_link_text] = STATE(1407), - [sym__comment_with_spaces] = STATE(720), - [sym_span] = STATE(720), - [sym_raw_inline] = STATE(720), - [sym_math] = STATE(720), - [sym_verbatim] = STATE(720), - [sym__todo_highlights] = STATE(720), - [sym_todo] = STATE(720), - [sym_note] = STATE(720), - [sym__symbol_fallback] = STATE(720), - [aux_sym__text] = STATE(613), - [aux_sym__inline_repeat1] = STATE(227), - [anon_sym_LBRACK] = ACTIONS(1567), - [anon_sym_PIPE] = ACTIONS(1569), - [anon_sym_LBRACE] = ACTIONS(1571), - [sym__whitespace1] = ACTIONS(1573), - [anon_sym_BSLASH] = ACTIONS(1575), - [sym_quotation_marks] = ACTIONS(1569), - [sym_ellipsis] = ACTIONS(1569), - [sym_em_dash] = ACTIONS(1569), - [sym_en_dash] = ACTIONS(1571), - [sym_backslash_escape] = ACTIONS(1571), - [anon_sym_LT] = ACTIONS(1577), - [anon_sym_LBRACE_] = ACTIONS(1579), - [anon_sym__] = ACTIONS(1581), - [anon_sym_LBRACE_STAR] = ACTIONS(1583), - [anon_sym_STAR] = ACTIONS(1585), - [anon_sym_LBRACE_EQ] = ACTIONS(1587), - [anon_sym_LBRACE_PLUS] = ACTIONS(1589), - [anon_sym_LBRACE_DASH] = ACTIONS(1591), - [sym_symbol] = ACTIONS(1569), - [anon_sym_LBRACE_CARET] = ACTIONS(1593), - [anon_sym_CARET] = ACTIONS(1593), - [anon_sym_LBRACE_TILDE] = ACTIONS(1595), - [anon_sym_TILDE] = ACTIONS(1595), - [anon_sym_LBRACK_CARET] = ACTIONS(1597), - [anon_sym_BANG_LBRACK] = ACTIONS(1599), - [anon_sym_DOLLAR] = ACTIONS(1601), - [anon_sym_TODO] = ACTIONS(1603), - [anon_sym_WIP] = ACTIONS(1603), - [anon_sym_NOTE] = ACTIONS(1605), - [anon_sym_INFO] = ACTIONS(1605), - [anon_sym_XXX] = ACTIONS(1605), - [sym_fixme] = ACTIONS(1569), - [aux_sym__text_token1] = ACTIONS(1607), - [sym__newline_inline] = ACTIONS(1609), - [sym__verbatim_begin] = ACTIONS(1611), - }, - [214] = { - [sym_table_separator] = STATE(305), - [sym__block_quote_prefix] = STATE(2369), - [aux_sym__block_quote_prefix_repeat1] = STATE(1599), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_PIPE] = ACTIONS(1672), - [anon_sym_LBRACE] = ACTIONS(1615), - [sym__whitespace1] = ACTIONS(1613), - [anon_sym_BSLASH] = ACTIONS(1615), - [sym_quotation_marks] = ACTIONS(1613), - [sym_ellipsis] = ACTIONS(1613), - [sym_em_dash] = ACTIONS(1613), - [sym_en_dash] = ACTIONS(1615), - [sym_backslash_escape] = ACTIONS(1615), - [anon_sym_LT] = ACTIONS(1613), - [anon_sym_LBRACE_] = ACTIONS(1613), - [anon_sym__] = ACTIONS(1613), - [anon_sym_LBRACE_STAR] = ACTIONS(1613), - [anon_sym_STAR] = ACTIONS(1613), - [anon_sym_LBRACE_EQ] = ACTIONS(1613), - [anon_sym_LBRACE_PLUS] = ACTIONS(1613), - [anon_sym_LBRACE_DASH] = ACTIONS(1613), - [sym_symbol] = ACTIONS(1613), - [anon_sym_LBRACE_CARET] = ACTIONS(1613), - [anon_sym_CARET] = ACTIONS(1613), - [anon_sym_LBRACE_TILDE] = ACTIONS(1613), - [anon_sym_TILDE] = ACTIONS(1613), - [anon_sym_LBRACK_CARET] = ACTIONS(1613), - [anon_sym_BANG_LBRACK] = ACTIONS(1613), - [anon_sym_DOLLAR] = ACTIONS(1613), - [anon_sym_TODO] = ACTIONS(1613), - [anon_sym_WIP] = ACTIONS(1613), - [anon_sym_NOTE] = ACTIONS(1613), - [anon_sym_INFO] = ACTIONS(1613), - [anon_sym_XXX] = ACTIONS(1613), - [sym_fixme] = ACTIONS(1613), - [aux_sym__text_token1] = ACTIONS(1615), - [sym__newline] = ACTIONS(1613), - [sym__newline_inline] = ACTIONS(1613), - [sym__heading1_begin] = ACTIONS(1613), - [sym__heading2_begin] = ACTIONS(1613), - [sym__heading3_begin] = ACTIONS(1613), - [sym__heading4_begin] = ACTIONS(1613), - [sym__heading5_begin] = ACTIONS(1613), - [sym__heading6_begin] = ACTIONS(1613), - [sym__div_begin] = ACTIONS(1613), - [sym__code_block_begin] = ACTIONS(1613), - [sym_list_marker_dash] = ACTIONS(1613), - [sym_list_marker_star] = ACTIONS(1613), - [sym_list_marker_plus] = ACTIONS(1613), - [sym__list_marker_task_begin] = ACTIONS(1613), - [sym_list_marker_definition] = ACTIONS(1613), - [sym_list_marker_decimal_period] = ACTIONS(1613), - [sym_list_marker_lower_alpha_period] = ACTIONS(1613), - [sym_list_marker_upper_alpha_period] = ACTIONS(1613), - [sym_list_marker_lower_roman_period] = ACTIONS(1613), - [sym_list_marker_upper_roman_period] = ACTIONS(1613), - [sym_list_marker_decimal_paren] = ACTIONS(1613), - [sym_list_marker_lower_alpha_paren] = ACTIONS(1613), - [sym_list_marker_upper_alpha_paren] = ACTIONS(1613), - [sym_list_marker_lower_roman_paren] = ACTIONS(1613), - [sym_list_marker_upper_roman_paren] = ACTIONS(1613), - [sym_list_marker_decimal_parens] = ACTIONS(1613), - [sym_list_marker_lower_alpha_parens] = ACTIONS(1613), - [sym_list_marker_upper_alpha_parens] = ACTIONS(1613), - [sym_list_marker_lower_roman_parens] = ACTIONS(1613), - [sym_list_marker_upper_roman_parens] = ACTIONS(1613), - [sym__block_quote_begin] = ACTIONS(1613), - [sym__block_quote_continuation] = ACTIONS(1620), - [sym__thematic_break_dash] = ACTIONS(1613), - [sym__thematic_break_star] = ACTIONS(1613), - [sym__footnote_begin] = ACTIONS(1613), - [sym__footnote_end] = ACTIONS(1613), - [sym__table_caption_begin] = ACTIONS(1613), - [sym__verbatim_begin] = ACTIONS(1613), - }, - [215] = { - [sym__inline_element_with_whitespace] = STATE(265), - [sym__inline_element_with_newline] = STATE(1096), - [sym__inline_core_element] = STATE(1096), - [sym__hard_line_break] = STATE(703), - [sym_hard_line_break] = STATE(519), - [sym__smart_punctuation] = STATE(703), - [sym_autolink] = STATE(703), - [sym_emphasis] = STATE(703), - [sym_emphasis_begin] = STATE(277), - [sym_strong] = STATE(703), - [sym_strong_begin] = STATE(278), - [sym_highlighted] = STATE(703), - [sym_insert] = STATE(703), - [sym_delete] = STATE(703), - [sym_superscript] = STATE(703), - [sym_subscript] = STATE(703), - [sym_footnote_reference] = STATE(703), - [sym__image] = STATE(703), - [sym_full_reference_image] = STATE(703), - [sym_collapsed_reference_image] = STATE(703), - [sym_inline_image] = STATE(703), - [sym__image_description] = STATE(1424), - [sym__link] = STATE(703), - [sym_full_reference_link] = STATE(703), - [sym_collapsed_reference_link] = STATE(703), - [sym_inline_link] = STATE(703), - [sym_link_text] = STATE(1423), - [sym__comment_with_spaces] = STATE(703), - [sym_span] = STATE(703), - [sym_raw_inline] = STATE(703), - [sym_math] = STATE(703), - [sym_verbatim] = STATE(703), - [sym__todo_highlights] = STATE(703), - [sym_todo] = STATE(703), - [sym_note] = STATE(703), - [sym__symbol_fallback] = STATE(703), - [aux_sym__text] = STATE(608), - [aux_sym__inline_repeat1] = STATE(265), - [anon_sym_LBRACK] = ACTIONS(1675), - [anon_sym_PIPE] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(1679), - [sym__whitespace1] = ACTIONS(1681), - [anon_sym_BSLASH] = ACTIONS(1683), - [sym_quotation_marks] = ACTIONS(1677), - [sym_ellipsis] = ACTIONS(1677), - [sym_em_dash] = ACTIONS(1677), - [sym_en_dash] = ACTIONS(1679), - [sym_backslash_escape] = ACTIONS(1679), - [anon_sym_LT] = ACTIONS(1685), - [anon_sym_LBRACE_] = ACTIONS(1687), - [anon_sym__] = ACTIONS(1689), - [aux_sym_emphasis_end_token1] = ACTIONS(1644), - [anon_sym_LBRACE_STAR] = ACTIONS(1692), - [anon_sym_STAR] = ACTIONS(1694), - [anon_sym_LBRACE_EQ] = ACTIONS(1696), - [anon_sym_LBRACE_PLUS] = ACTIONS(1698), - [anon_sym_LBRACE_DASH] = ACTIONS(1700), - [sym_symbol] = ACTIONS(1677), - [anon_sym_LBRACE_CARET] = ACTIONS(1702), - [anon_sym_CARET] = ACTIONS(1702), - [anon_sym_LBRACE_TILDE] = ACTIONS(1704), - [anon_sym_TILDE] = ACTIONS(1704), - [anon_sym_LBRACK_CARET] = ACTIONS(1706), - [anon_sym_BANG_LBRACK] = ACTIONS(1708), - [anon_sym_DOLLAR] = ACTIONS(1710), - [anon_sym_TODO] = ACTIONS(1712), - [anon_sym_WIP] = ACTIONS(1712), - [anon_sym_NOTE] = ACTIONS(1714), - [anon_sym_INFO] = ACTIONS(1714), - [anon_sym_XXX] = ACTIONS(1714), - [sym_fixme] = ACTIONS(1677), - [aux_sym__text_token1] = ACTIONS(1716), - [sym__newline_inline] = ACTIONS(1718), - [sym__verbatim_begin] = ACTIONS(1720), - }, - [216] = { - [sym__inline_element_with_whitespace] = STATE(216), - [sym__inline_element_with_newline] = STATE(216), - [sym__inline_core_element] = STATE(216), - [sym__hard_line_break] = STATE(667), - [sym_hard_line_break] = STATE(529), - [sym__smart_punctuation] = STATE(667), - [sym_autolink] = STATE(667), - [sym_emphasis] = STATE(667), - [sym_emphasis_begin] = STATE(290), - [sym_strong] = STATE(667), - [sym_strong_begin] = STATE(273), - [sym_highlighted] = STATE(667), - [sym_insert] = STATE(667), - [sym_delete] = STATE(667), - [sym_superscript] = STATE(667), - [sym_subscript] = STATE(667), - [sym_footnote_reference] = STATE(667), - [sym__image] = STATE(667), - [sym_full_reference_image] = STATE(667), - [sym_collapsed_reference_image] = STATE(667), - [sym_inline_image] = STATE(667), - [sym__image_description] = STATE(1445), - [sym__link] = STATE(667), - [sym_full_reference_link] = STATE(667), - [sym_collapsed_reference_link] = STATE(667), - [sym_inline_link] = STATE(667), - [sym_link_text] = STATE(1443), - [sym__comment_with_spaces] = STATE(667), - [sym_span] = STATE(667), - [sym_raw_inline] = STATE(667), - [sym_math] = STATE(667), - [sym_verbatim] = STATE(667), - [sym__todo_highlights] = STATE(667), - [sym_todo] = STATE(667), - [sym_note] = STATE(667), - [sym__symbol_fallback] = STATE(667), - [aux_sym__text] = STATE(554), - [aux_sym__inline_repeat1] = STATE(216), - [anon_sym_LBRACK] = ACTIONS(1722), - [anon_sym_PIPE] = ACTIONS(1725), - [anon_sym_LBRACE] = ACTIONS(1728), - [sym__whitespace1] = ACTIONS(1731), - [anon_sym_BSLASH] = ACTIONS(1734), - [sym_quotation_marks] = ACTIONS(1725), - [sym_ellipsis] = ACTIONS(1725), - [sym_em_dash] = ACTIONS(1725), - [sym_en_dash] = ACTIONS(1728), - [sym_backslash_escape] = ACTIONS(1728), - [anon_sym_LT] = ACTIONS(1737), - [anon_sym_LBRACE_] = ACTIONS(1740), - [anon_sym__] = ACTIONS(1743), - [anon_sym_LBRACE_STAR] = ACTIONS(1746), - [anon_sym_STAR] = ACTIONS(1749), - [anon_sym_LBRACE_EQ] = ACTIONS(1752), - [anon_sym_LBRACE_PLUS] = ACTIONS(1755), - [anon_sym_PLUS_RBRACE] = ACTIONS(1496), - [anon_sym_LBRACE_DASH] = ACTIONS(1758), - [sym_symbol] = ACTIONS(1725), - [anon_sym_LBRACE_CARET] = ACTIONS(1761), - [anon_sym_CARET] = ACTIONS(1761), - [anon_sym_LBRACE_TILDE] = ACTIONS(1764), - [anon_sym_TILDE] = ACTIONS(1764), - [anon_sym_LBRACK_CARET] = ACTIONS(1767), - [anon_sym_BANG_LBRACK] = ACTIONS(1770), - [anon_sym_DOLLAR] = ACTIONS(1773), - [anon_sym_TODO] = ACTIONS(1776), - [anon_sym_WIP] = ACTIONS(1776), - [anon_sym_NOTE] = ACTIONS(1779), - [anon_sym_INFO] = ACTIONS(1779), - [anon_sym_XXX] = ACTIONS(1779), - [sym_fixme] = ACTIONS(1725), - [aux_sym__text_token1] = ACTIONS(1782), - [sym__newline_inline] = ACTIONS(1785), - [sym__verbatim_begin] = ACTIONS(1788), - }, - [217] = { - [sym__inline_element_with_whitespace] = STATE(216), - [sym__inline_element_with_newline] = STATE(216), - [sym__inline_core_element] = STATE(216), - [sym__hard_line_break] = STATE(667), - [sym_hard_line_break] = STATE(529), - [sym__smart_punctuation] = STATE(667), - [sym_autolink] = STATE(667), - [sym_emphasis] = STATE(667), - [sym_emphasis_begin] = STATE(290), - [sym_strong] = STATE(667), - [sym_strong_begin] = STATE(273), - [sym_highlighted] = STATE(667), - [sym_insert] = STATE(667), - [sym_delete] = STATE(667), - [sym_superscript] = STATE(667), - [sym_subscript] = STATE(667), - [sym_footnote_reference] = STATE(667), - [sym__image] = STATE(667), - [sym_full_reference_image] = STATE(667), - [sym_collapsed_reference_image] = STATE(667), - [sym_inline_image] = STATE(667), - [sym__image_description] = STATE(1445), - [sym__link] = STATE(667), - [sym_full_reference_link] = STATE(667), - [sym_collapsed_reference_link] = STATE(667), - [sym_inline_link] = STATE(667), - [sym_link_text] = STATE(1443), - [sym__comment_with_spaces] = STATE(667), - [sym_span] = STATE(667), - [sym_raw_inline] = STATE(667), - [sym_math] = STATE(667), - [sym_verbatim] = STATE(667), - [sym__todo_highlights] = STATE(667), - [sym_todo] = STATE(667), - [sym_note] = STATE(667), - [sym__symbol_fallback] = STATE(667), - [aux_sym__text] = STATE(554), - [aux_sym__inline_repeat1] = STATE(216), - [anon_sym_LBRACK] = ACTIONS(1791), - [anon_sym_PIPE] = ACTIONS(1793), - [anon_sym_LBRACE] = ACTIONS(1795), - [sym__whitespace1] = ACTIONS(1797), - [anon_sym_BSLASH] = ACTIONS(1799), - [sym_quotation_marks] = ACTIONS(1793), - [sym_ellipsis] = ACTIONS(1793), - [sym_em_dash] = ACTIONS(1793), - [sym_en_dash] = ACTIONS(1795), - [sym_backslash_escape] = ACTIONS(1795), - [anon_sym_LT] = ACTIONS(1801), - [anon_sym_LBRACE_] = ACTIONS(1803), - [anon_sym__] = ACTIONS(1805), - [anon_sym_LBRACE_STAR] = ACTIONS(1807), - [anon_sym_STAR] = ACTIONS(1809), - [anon_sym_LBRACE_EQ] = ACTIONS(1811), - [anon_sym_LBRACE_PLUS] = ACTIONS(1813), - [anon_sym_PLUS_RBRACE] = ACTIONS(1563), - [anon_sym_LBRACE_DASH] = ACTIONS(1815), - [sym_symbol] = ACTIONS(1793), - [anon_sym_LBRACE_CARET] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_LBRACE_TILDE] = ACTIONS(1819), - [anon_sym_TILDE] = ACTIONS(1819), - [anon_sym_LBRACK_CARET] = ACTIONS(1821), - [anon_sym_BANG_LBRACK] = ACTIONS(1823), - [anon_sym_DOLLAR] = ACTIONS(1825), - [anon_sym_TODO] = ACTIONS(1827), - [anon_sym_WIP] = ACTIONS(1827), - [anon_sym_NOTE] = ACTIONS(1829), - [anon_sym_INFO] = ACTIONS(1829), - [anon_sym_XXX] = ACTIONS(1829), - [sym_fixme] = ACTIONS(1793), - [aux_sym__text_token1] = ACTIONS(1831), - [sym__newline_inline] = ACTIONS(1561), - [sym__verbatim_begin] = ACTIONS(1833), - }, - [218] = { - [sym__inline_element_with_whitespace] = STATE(218), - [sym__inline_element_with_newline] = STATE(218), - [sym__inline_core_element] = STATE(218), - [sym__hard_line_break] = STATE(720), - [sym_hard_line_break] = STATE(514), - [sym__smart_punctuation] = STATE(720), - [sym_autolink] = STATE(720), - [sym_emphasis] = STATE(720), - [sym_emphasis_begin] = STATE(285), - [sym_strong] = STATE(720), - [sym_strong_begin] = STATE(287), - [sym_highlighted] = STATE(720), - [sym_insert] = STATE(720), - [sym_delete] = STATE(720), - [sym_superscript] = STATE(720), - [sym_subscript] = STATE(720), - [sym_footnote_reference] = STATE(720), - [sym__image] = STATE(720), - [sym_full_reference_image] = STATE(720), - [sym_collapsed_reference_image] = STATE(720), - [sym_inline_image] = STATE(720), - [sym__image_description] = STATE(1405), - [sym__link] = STATE(720), - [sym_full_reference_link] = STATE(720), - [sym_collapsed_reference_link] = STATE(720), - [sym_inline_link] = STATE(720), - [sym_link_text] = STATE(1407), - [sym__comment_with_spaces] = STATE(720), - [sym_span] = STATE(720), - [sym_raw_inline] = STATE(720), - [sym_math] = STATE(720), - [sym_verbatim] = STATE(720), - [sym__todo_highlights] = STATE(720), - [sym_todo] = STATE(720), - [sym_note] = STATE(720), - [sym__symbol_fallback] = STATE(720), - [aux_sym__text] = STATE(613), - [aux_sym__inline_repeat1] = STATE(218), - [anon_sym_LBRACK] = ACTIONS(1835), - [anon_sym_PIPE] = ACTIONS(1838), - [anon_sym_LBRACE] = ACTIONS(1841), - [sym__whitespace1] = ACTIONS(1844), - [anon_sym_BSLASH] = ACTIONS(1847), - [sym_quotation_marks] = ACTIONS(1838), - [sym_ellipsis] = ACTIONS(1838), - [sym_em_dash] = ACTIONS(1838), - [sym_en_dash] = ACTIONS(1841), - [sym_backslash_escape] = ACTIONS(1841), - [anon_sym_LT] = ACTIONS(1850), - [anon_sym_LBRACE_] = ACTIONS(1853), - [anon_sym__] = ACTIONS(1856), - [anon_sym_LBRACE_STAR] = ACTIONS(1859), - [anon_sym_STAR] = ACTIONS(1862), - [anon_sym_LBRACE_EQ] = ACTIONS(1865), - [anon_sym_LBRACE_PLUS] = ACTIONS(1868), - [anon_sym_LBRACE_DASH] = ACTIONS(1871), - [sym_symbol] = ACTIONS(1838), - [anon_sym_LBRACE_CARET] = ACTIONS(1874), - [anon_sym_CARET] = ACTIONS(1874), - [anon_sym_LBRACE_TILDE] = ACTIONS(1877), - [anon_sym_TILDE] = ACTIONS(1877), - [anon_sym_LBRACK_CARET] = ACTIONS(1880), - [anon_sym_BANG_LBRACK] = ACTIONS(1883), - [anon_sym_RBRACK2] = ACTIONS(1496), - [anon_sym_DOLLAR] = ACTIONS(1886), - [anon_sym_TODO] = ACTIONS(1889), - [anon_sym_WIP] = ACTIONS(1889), - [anon_sym_NOTE] = ACTIONS(1892), - [anon_sym_INFO] = ACTIONS(1892), - [anon_sym_XXX] = ACTIONS(1892), - [sym_fixme] = ACTIONS(1838), - [aux_sym__text_token1] = ACTIONS(1895), - [sym__newline_inline] = ACTIONS(1898), - [sym__verbatim_begin] = ACTIONS(1901), - }, - [219] = { - [sym__inline_element_with_whitespace] = STATE(222), - [sym__inline_element_with_newline] = STATE(222), - [sym__inline_core_element] = STATE(222), - [sym__hard_line_break] = STATE(682), - [sym_hard_line_break] = STATE(518), - [sym__smart_punctuation] = STATE(682), - [sym_autolink] = STATE(682), - [sym_emphasis] = STATE(682), - [sym_emphasis_begin] = STATE(286), - [sym_strong] = STATE(682), - [sym_strong_begin] = STATE(288), - [sym_highlighted] = STATE(682), - [sym_insert] = STATE(682), - [sym_delete] = STATE(682), - [sym_superscript] = STATE(682), - [sym_subscript] = STATE(682), - [sym_footnote_reference] = STATE(682), - [sym__image] = STATE(682), - [sym_full_reference_image] = STATE(682), - [sym_collapsed_reference_image] = STATE(682), - [sym_inline_image] = STATE(682), - [sym__image_description] = STATE(1440), - [sym__link] = STATE(682), - [sym_full_reference_link] = STATE(682), - [sym_collapsed_reference_link] = STATE(682), - [sym_inline_link] = STATE(682), - [sym_link_text] = STATE(1439), - [sym__comment_with_spaces] = STATE(682), - [sym_span] = STATE(682), - [sym_raw_inline] = STATE(682), - [sym_math] = STATE(682), - [sym_verbatim] = STATE(682), - [sym__todo_highlights] = STATE(682), - [sym_todo] = STATE(682), - [sym_note] = STATE(682), - [sym__symbol_fallback] = STATE(682), - [aux_sym__text] = STATE(572), - [aux_sym__inline_repeat1] = STATE(222), - [anon_sym_LBRACK] = ACTIONS(1904), - [anon_sym_PIPE] = ACTIONS(1906), - [anon_sym_LBRACE] = ACTIONS(1908), - [sym__whitespace1] = ACTIONS(1910), - [anon_sym_BSLASH] = ACTIONS(1912), - [sym_quotation_marks] = ACTIONS(1906), - [sym_ellipsis] = ACTIONS(1906), - [sym_em_dash] = ACTIONS(1906), - [sym_en_dash] = ACTIONS(1908), - [sym_backslash_escape] = ACTIONS(1908), - [anon_sym_LT] = ACTIONS(1914), - [anon_sym_LBRACE_] = ACTIONS(1916), - [anon_sym__] = ACTIONS(1918), - [anon_sym_LBRACE_STAR] = ACTIONS(1920), - [anon_sym_STAR] = ACTIONS(1922), - [anon_sym_LBRACE_EQ] = ACTIONS(1924), - [anon_sym_LBRACE_PLUS] = ACTIONS(1926), - [anon_sym_LBRACE_DASH] = ACTIONS(1928), - [anon_sym_DASH_RBRACE] = ACTIONS(1563), - [sym_symbol] = ACTIONS(1906), - [anon_sym_LBRACE_CARET] = ACTIONS(1930), - [anon_sym_CARET] = ACTIONS(1930), - [anon_sym_LBRACE_TILDE] = ACTIONS(1932), - [anon_sym_TILDE] = ACTIONS(1932), - [anon_sym_LBRACK_CARET] = ACTIONS(1934), - [anon_sym_BANG_LBRACK] = ACTIONS(1936), - [anon_sym_DOLLAR] = ACTIONS(1938), - [anon_sym_TODO] = ACTIONS(1940), - [anon_sym_WIP] = ACTIONS(1940), - [anon_sym_NOTE] = ACTIONS(1942), - [anon_sym_INFO] = ACTIONS(1942), - [anon_sym_XXX] = ACTIONS(1942), - [sym_fixme] = ACTIONS(1906), - [aux_sym__text_token1] = ACTIONS(1944), - [sym__newline_inline] = ACTIONS(1484), - [sym__verbatim_begin] = ACTIONS(1946), - }, - [220] = { - [sym__inline] = STATE(2030), - [sym__inline_element_with_whitespace] = STATE(227), - [sym__inline_element_with_newline] = STATE(227), - [sym__inline_core_element] = STATE(227), - [sym__hard_line_break] = STATE(720), - [sym_hard_line_break] = STATE(514), - [sym__smart_punctuation] = STATE(720), - [sym_autolink] = STATE(720), - [sym_emphasis] = STATE(720), - [sym_emphasis_begin] = STATE(285), - [sym_strong] = STATE(720), - [sym_strong_begin] = STATE(287), - [sym_highlighted] = STATE(720), - [sym_insert] = STATE(720), - [sym_delete] = STATE(720), - [sym_superscript] = STATE(720), - [sym_subscript] = STATE(720), - [sym_footnote_reference] = STATE(720), - [sym__image] = STATE(720), - [sym_full_reference_image] = STATE(720), - [sym_collapsed_reference_image] = STATE(720), - [sym_inline_image] = STATE(720), - [sym__image_description] = STATE(1405), - [sym__link] = STATE(720), - [sym_full_reference_link] = STATE(720), - [sym_collapsed_reference_link] = STATE(720), - [sym_inline_link] = STATE(720), - [sym_link_text] = STATE(1407), - [sym__comment_with_spaces] = STATE(720), - [sym_span] = STATE(720), - [sym_raw_inline] = STATE(720), - [sym_math] = STATE(720), - [sym_verbatim] = STATE(720), - [sym__todo_highlights] = STATE(720), - [sym_todo] = STATE(720), - [sym_note] = STATE(720), - [sym__symbol_fallback] = STATE(720), - [aux_sym__text] = STATE(613), - [aux_sym__inline_repeat1] = STATE(227), - [anon_sym_LBRACK] = ACTIONS(1567), - [anon_sym_PIPE] = ACTIONS(1569), - [anon_sym_LBRACE] = ACTIONS(1571), - [sym__whitespace1] = ACTIONS(1573), - [anon_sym_BSLASH] = ACTIONS(1575), - [sym_quotation_marks] = ACTIONS(1569), - [sym_ellipsis] = ACTIONS(1569), - [sym_em_dash] = ACTIONS(1569), - [sym_en_dash] = ACTIONS(1571), - [sym_backslash_escape] = ACTIONS(1571), - [anon_sym_LT] = ACTIONS(1577), - [anon_sym_LBRACE_] = ACTIONS(1579), - [anon_sym__] = ACTIONS(1581), - [anon_sym_LBRACE_STAR] = ACTIONS(1583), - [anon_sym_STAR] = ACTIONS(1585), - [anon_sym_LBRACE_EQ] = ACTIONS(1587), - [anon_sym_LBRACE_PLUS] = ACTIONS(1589), - [anon_sym_LBRACE_DASH] = ACTIONS(1591), - [sym_symbol] = ACTIONS(1569), - [anon_sym_LBRACE_CARET] = ACTIONS(1593), - [anon_sym_CARET] = ACTIONS(1593), - [anon_sym_LBRACE_TILDE] = ACTIONS(1595), - [anon_sym_TILDE] = ACTIONS(1595), - [anon_sym_LBRACK_CARET] = ACTIONS(1597), - [anon_sym_BANG_LBRACK] = ACTIONS(1599), - [anon_sym_DOLLAR] = ACTIONS(1601), - [anon_sym_TODO] = ACTIONS(1603), - [anon_sym_WIP] = ACTIONS(1603), - [anon_sym_NOTE] = ACTIONS(1605), - [anon_sym_INFO] = ACTIONS(1605), - [anon_sym_XXX] = ACTIONS(1605), - [sym_fixme] = ACTIONS(1569), - [aux_sym__text_token1] = ACTIONS(1607), - [sym__newline_inline] = ACTIONS(1609), - [sym__verbatim_begin] = ACTIONS(1611), - }, - [221] = { - [sym__inline] = STATE(1984), - [sym__inline_element_with_whitespace] = STATE(227), - [sym__inline_element_with_newline] = STATE(227), - [sym__inline_core_element] = STATE(227), - [sym__hard_line_break] = STATE(720), - [sym_hard_line_break] = STATE(514), - [sym__smart_punctuation] = STATE(720), - [sym_autolink] = STATE(720), - [sym_emphasis] = STATE(720), - [sym_emphasis_begin] = STATE(285), - [sym_strong] = STATE(720), - [sym_strong_begin] = STATE(287), - [sym_highlighted] = STATE(720), - [sym_insert] = STATE(720), - [sym_delete] = STATE(720), - [sym_superscript] = STATE(720), - [sym_subscript] = STATE(720), - [sym_footnote_reference] = STATE(720), - [sym__image] = STATE(720), - [sym_full_reference_image] = STATE(720), - [sym_collapsed_reference_image] = STATE(720), - [sym_inline_image] = STATE(720), - [sym__image_description] = STATE(1405), - [sym__link] = STATE(720), - [sym_full_reference_link] = STATE(720), - [sym_collapsed_reference_link] = STATE(720), - [sym_inline_link] = STATE(720), - [sym_link_text] = STATE(1407), - [sym__comment_with_spaces] = STATE(720), - [sym_span] = STATE(720), - [sym_raw_inline] = STATE(720), - [sym_math] = STATE(720), - [sym_verbatim] = STATE(720), - [sym__todo_highlights] = STATE(720), - [sym_todo] = STATE(720), - [sym_note] = STATE(720), - [sym__symbol_fallback] = STATE(720), - [aux_sym__text] = STATE(613), - [aux_sym__inline_repeat1] = STATE(227), - [anon_sym_LBRACK] = ACTIONS(1567), - [anon_sym_PIPE] = ACTIONS(1569), - [anon_sym_LBRACE] = ACTIONS(1571), - [sym__whitespace1] = ACTIONS(1573), - [anon_sym_BSLASH] = ACTIONS(1575), - [sym_quotation_marks] = ACTIONS(1569), - [sym_ellipsis] = ACTIONS(1569), - [sym_em_dash] = ACTIONS(1569), - [sym_en_dash] = ACTIONS(1571), - [sym_backslash_escape] = ACTIONS(1571), - [anon_sym_LT] = ACTIONS(1577), - [anon_sym_LBRACE_] = ACTIONS(1579), - [anon_sym__] = ACTIONS(1581), - [anon_sym_LBRACE_STAR] = ACTIONS(1583), - [anon_sym_STAR] = ACTIONS(1585), - [anon_sym_LBRACE_EQ] = ACTIONS(1587), - [anon_sym_LBRACE_PLUS] = ACTIONS(1589), - [anon_sym_LBRACE_DASH] = ACTIONS(1591), - [sym_symbol] = ACTIONS(1569), - [anon_sym_LBRACE_CARET] = ACTIONS(1593), - [anon_sym_CARET] = ACTIONS(1593), - [anon_sym_LBRACE_TILDE] = ACTIONS(1595), - [anon_sym_TILDE] = ACTIONS(1595), - [anon_sym_LBRACK_CARET] = ACTIONS(1597), - [anon_sym_BANG_LBRACK] = ACTIONS(1599), - [anon_sym_DOLLAR] = ACTIONS(1601), - [anon_sym_TODO] = ACTIONS(1603), - [anon_sym_WIP] = ACTIONS(1603), - [anon_sym_NOTE] = ACTIONS(1605), - [anon_sym_INFO] = ACTIONS(1605), - [anon_sym_XXX] = ACTIONS(1605), - [sym_fixme] = ACTIONS(1569), - [aux_sym__text_token1] = ACTIONS(1607), - [sym__newline_inline] = ACTIONS(1609), - [sym__verbatim_begin] = ACTIONS(1611), - }, - [222] = { - [sym__inline_element_with_whitespace] = STATE(222), - [sym__inline_element_with_newline] = STATE(222), - [sym__inline_core_element] = STATE(222), - [sym__hard_line_break] = STATE(682), - [sym_hard_line_break] = STATE(518), - [sym__smart_punctuation] = STATE(682), - [sym_autolink] = STATE(682), - [sym_emphasis] = STATE(682), - [sym_emphasis_begin] = STATE(286), - [sym_strong] = STATE(682), - [sym_strong_begin] = STATE(288), - [sym_highlighted] = STATE(682), - [sym_insert] = STATE(682), - [sym_delete] = STATE(682), - [sym_superscript] = STATE(682), - [sym_subscript] = STATE(682), - [sym_footnote_reference] = STATE(682), - [sym__image] = STATE(682), - [sym_full_reference_image] = STATE(682), - [sym_collapsed_reference_image] = STATE(682), - [sym_inline_image] = STATE(682), - [sym__image_description] = STATE(1440), - [sym__link] = STATE(682), - [sym_full_reference_link] = STATE(682), - [sym_collapsed_reference_link] = STATE(682), - [sym_inline_link] = STATE(682), - [sym_link_text] = STATE(1439), - [sym__comment_with_spaces] = STATE(682), - [sym_span] = STATE(682), - [sym_raw_inline] = STATE(682), - [sym_math] = STATE(682), - [sym_verbatim] = STATE(682), - [sym__todo_highlights] = STATE(682), - [sym_todo] = STATE(682), - [sym_note] = STATE(682), - [sym__symbol_fallback] = STATE(682), - [aux_sym__text] = STATE(572), - [aux_sym__inline_repeat1] = STATE(222), - [anon_sym_LBRACK] = ACTIONS(1948), - [anon_sym_PIPE] = ACTIONS(1951), - [anon_sym_LBRACE] = ACTIONS(1954), - [sym__whitespace1] = ACTIONS(1957), - [anon_sym_BSLASH] = ACTIONS(1960), - [sym_quotation_marks] = ACTIONS(1951), - [sym_ellipsis] = ACTIONS(1951), - [sym_em_dash] = ACTIONS(1951), - [sym_en_dash] = ACTIONS(1954), - [sym_backslash_escape] = ACTIONS(1954), - [anon_sym_LT] = ACTIONS(1963), - [anon_sym_LBRACE_] = ACTIONS(1966), - [anon_sym__] = ACTIONS(1969), - [anon_sym_LBRACE_STAR] = ACTIONS(1972), - [anon_sym_STAR] = ACTIONS(1975), - [anon_sym_LBRACE_EQ] = ACTIONS(1978), - [anon_sym_LBRACE_PLUS] = ACTIONS(1981), - [anon_sym_LBRACE_DASH] = ACTIONS(1984), - [anon_sym_DASH_RBRACE] = ACTIONS(1496), - [sym_symbol] = ACTIONS(1951), - [anon_sym_LBRACE_CARET] = ACTIONS(1987), - [anon_sym_CARET] = ACTIONS(1987), - [anon_sym_LBRACE_TILDE] = ACTIONS(1990), - [anon_sym_TILDE] = ACTIONS(1990), - [anon_sym_LBRACK_CARET] = ACTIONS(1993), - [anon_sym_BANG_LBRACK] = ACTIONS(1996), - [anon_sym_DOLLAR] = ACTIONS(1999), - [anon_sym_TODO] = ACTIONS(2002), - [anon_sym_WIP] = ACTIONS(2002), - [anon_sym_NOTE] = ACTIONS(2005), - [anon_sym_INFO] = ACTIONS(2005), - [anon_sym_XXX] = ACTIONS(2005), - [sym_fixme] = ACTIONS(1951), - [aux_sym__text_token1] = ACTIONS(2008), - [sym__newline_inline] = ACTIONS(2011), - [sym__verbatim_begin] = ACTIONS(2014), - }, - [223] = { - [sym_table_separator] = STATE(343), - [sym__block_quote_prefix] = STATE(2365), - [aux_sym__block_quote_prefix_repeat1] = STATE(1599), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_PIPE] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(1615), - [sym__whitespace1] = ACTIONS(1613), - [anon_sym_BSLASH] = ACTIONS(1615), - [sym_quotation_marks] = ACTIONS(1613), - [sym_ellipsis] = ACTIONS(1613), - [sym_em_dash] = ACTIONS(1613), - [sym_en_dash] = ACTIONS(1615), - [sym_backslash_escape] = ACTIONS(1615), - [anon_sym_LT] = ACTIONS(1613), - [anon_sym_LBRACE_] = ACTIONS(1613), - [anon_sym__] = ACTIONS(1613), - [anon_sym_LBRACE_STAR] = ACTIONS(1613), - [anon_sym_STAR] = ACTIONS(1613), - [anon_sym_LBRACE_EQ] = ACTIONS(1613), - [anon_sym_LBRACE_PLUS] = ACTIONS(1613), - [anon_sym_LBRACE_DASH] = ACTIONS(1613), - [sym_symbol] = ACTIONS(1613), - [anon_sym_LBRACE_CARET] = ACTIONS(1613), - [anon_sym_CARET] = ACTIONS(1613), - [anon_sym_LBRACE_TILDE] = ACTIONS(1613), - [anon_sym_TILDE] = ACTIONS(1613), - [anon_sym_LBRACK_CARET] = ACTIONS(1613), - [anon_sym_BANG_LBRACK] = ACTIONS(1613), - [anon_sym_DOLLAR] = ACTIONS(1613), - [anon_sym_TODO] = ACTIONS(1613), - [anon_sym_WIP] = ACTIONS(1613), - [anon_sym_NOTE] = ACTIONS(1613), - [anon_sym_INFO] = ACTIONS(1613), - [anon_sym_XXX] = ACTIONS(1613), - [sym_fixme] = ACTIONS(1613), - [aux_sym__text_token1] = ACTIONS(1615), - [sym__block_close] = ACTIONS(1613), - [sym__newline] = ACTIONS(1613), - [sym__newline_inline] = ACTIONS(1613), - [sym__heading1_begin] = ACTIONS(1613), - [sym__heading2_begin] = ACTIONS(1613), - [sym__heading3_begin] = ACTIONS(1613), - [sym__heading4_begin] = ACTIONS(1613), - [sym__heading5_begin] = ACTIONS(1613), - [sym__heading6_begin] = ACTIONS(1613), - [sym__div_begin] = ACTIONS(1613), - [sym__code_block_begin] = ACTIONS(1613), - [sym_list_marker_dash] = ACTIONS(1613), - [sym_list_marker_star] = ACTIONS(1613), - [sym_list_marker_plus] = ACTIONS(1613), - [sym__list_marker_task_begin] = ACTIONS(1613), - [sym_list_marker_definition] = ACTIONS(1613), - [sym_list_marker_decimal_period] = ACTIONS(1613), - [sym_list_marker_lower_alpha_period] = ACTIONS(1613), - [sym_list_marker_upper_alpha_period] = ACTIONS(1613), - [sym_list_marker_lower_roman_period] = ACTIONS(1613), - [sym_list_marker_upper_roman_period] = ACTIONS(1613), - [sym_list_marker_decimal_paren] = ACTIONS(1613), - [sym_list_marker_lower_alpha_paren] = ACTIONS(1613), - [sym_list_marker_upper_alpha_paren] = ACTIONS(1613), - [sym_list_marker_lower_roman_paren] = ACTIONS(1613), - [sym_list_marker_upper_roman_paren] = ACTIONS(1613), - [sym_list_marker_decimal_parens] = ACTIONS(1613), - [sym_list_marker_lower_alpha_parens] = ACTIONS(1613), - [sym_list_marker_upper_alpha_parens] = ACTIONS(1613), - [sym_list_marker_lower_roman_parens] = ACTIONS(1613), - [sym_list_marker_upper_roman_parens] = ACTIONS(1613), - [sym__block_quote_begin] = ACTIONS(1613), - [sym__block_quote_continuation] = ACTIONS(1620), - [sym__thematic_break_dash] = ACTIONS(1613), - [sym__thematic_break_star] = ACTIONS(1613), - [sym__footnote_begin] = ACTIONS(1613), - [sym__table_caption_begin] = ACTIONS(1613), - [sym__verbatim_begin] = ACTIONS(1613), - }, - [224] = { - [sym__inline] = STATE(1966), - [sym__inline_element_with_whitespace] = STATE(227), - [sym__inline_element_with_newline] = STATE(227), - [sym__inline_core_element] = STATE(227), - [sym__hard_line_break] = STATE(720), - [sym_hard_line_break] = STATE(514), - [sym__smart_punctuation] = STATE(720), - [sym_autolink] = STATE(720), - [sym_emphasis] = STATE(720), - [sym_emphasis_begin] = STATE(285), - [sym_strong] = STATE(720), - [sym_strong_begin] = STATE(287), - [sym_highlighted] = STATE(720), - [sym_insert] = STATE(720), - [sym_delete] = STATE(720), - [sym_superscript] = STATE(720), - [sym_subscript] = STATE(720), - [sym_footnote_reference] = STATE(720), - [sym__image] = STATE(720), - [sym_full_reference_image] = STATE(720), - [sym_collapsed_reference_image] = STATE(720), - [sym_inline_image] = STATE(720), - [sym__image_description] = STATE(1405), - [sym__link] = STATE(720), - [sym_full_reference_link] = STATE(720), - [sym_collapsed_reference_link] = STATE(720), - [sym_inline_link] = STATE(720), - [sym_link_text] = STATE(1407), - [sym__comment_with_spaces] = STATE(720), - [sym_span] = STATE(720), - [sym_raw_inline] = STATE(720), - [sym_math] = STATE(720), - [sym_verbatim] = STATE(720), - [sym__todo_highlights] = STATE(720), - [sym_todo] = STATE(720), - [sym_note] = STATE(720), - [sym__symbol_fallback] = STATE(720), - [aux_sym__text] = STATE(613), - [aux_sym__inline_repeat1] = STATE(227), - [anon_sym_LBRACK] = ACTIONS(1567), - [anon_sym_PIPE] = ACTIONS(1569), - [anon_sym_LBRACE] = ACTIONS(1571), - [sym__whitespace1] = ACTIONS(1573), - [anon_sym_BSLASH] = ACTIONS(1575), - [sym_quotation_marks] = ACTIONS(1569), - [sym_ellipsis] = ACTIONS(1569), - [sym_em_dash] = ACTIONS(1569), - [sym_en_dash] = ACTIONS(1571), - [sym_backslash_escape] = ACTIONS(1571), - [anon_sym_LT] = ACTIONS(1577), - [anon_sym_LBRACE_] = ACTIONS(1579), - [anon_sym__] = ACTIONS(1581), - [anon_sym_LBRACE_STAR] = ACTIONS(1583), - [anon_sym_STAR] = ACTIONS(1585), - [anon_sym_LBRACE_EQ] = ACTIONS(1587), - [anon_sym_LBRACE_PLUS] = ACTIONS(1589), - [anon_sym_LBRACE_DASH] = ACTIONS(1591), - [sym_symbol] = ACTIONS(1569), - [anon_sym_LBRACE_CARET] = ACTIONS(1593), - [anon_sym_CARET] = ACTIONS(1593), - [anon_sym_LBRACE_TILDE] = ACTIONS(1595), - [anon_sym_TILDE] = ACTIONS(1595), - [anon_sym_LBRACK_CARET] = ACTIONS(1597), - [anon_sym_BANG_LBRACK] = ACTIONS(1599), - [anon_sym_DOLLAR] = ACTIONS(1601), - [anon_sym_TODO] = ACTIONS(1603), - [anon_sym_WIP] = ACTIONS(1603), - [anon_sym_NOTE] = ACTIONS(1605), - [anon_sym_INFO] = ACTIONS(1605), - [anon_sym_XXX] = ACTIONS(1605), - [sym_fixme] = ACTIONS(1569), - [aux_sym__text_token1] = ACTIONS(1607), - [sym__newline_inline] = ACTIONS(1609), - [sym__verbatim_begin] = ACTIONS(1611), - }, - [225] = { - [sym__inline] = STATE(2022), - [sym__inline_element_with_whitespace] = STATE(227), - [sym__inline_element_with_newline] = STATE(227), - [sym__inline_core_element] = STATE(227), - [sym__hard_line_break] = STATE(720), - [sym_hard_line_break] = STATE(514), - [sym__smart_punctuation] = STATE(720), - [sym_autolink] = STATE(720), - [sym_emphasis] = STATE(720), - [sym_emphasis_begin] = STATE(285), - [sym_strong] = STATE(720), - [sym_strong_begin] = STATE(287), - [sym_highlighted] = STATE(720), - [sym_insert] = STATE(720), - [sym_delete] = STATE(720), - [sym_superscript] = STATE(720), - [sym_subscript] = STATE(720), - [sym_footnote_reference] = STATE(720), - [sym__image] = STATE(720), - [sym_full_reference_image] = STATE(720), - [sym_collapsed_reference_image] = STATE(720), - [sym_inline_image] = STATE(720), - [sym__image_description] = STATE(1405), - [sym__link] = STATE(720), - [sym_full_reference_link] = STATE(720), - [sym_collapsed_reference_link] = STATE(720), - [sym_inline_link] = STATE(720), - [sym_link_text] = STATE(1407), - [sym__comment_with_spaces] = STATE(720), - [sym_span] = STATE(720), - [sym_raw_inline] = STATE(720), - [sym_math] = STATE(720), - [sym_verbatim] = STATE(720), - [sym__todo_highlights] = STATE(720), - [sym_todo] = STATE(720), - [sym_note] = STATE(720), - [sym__symbol_fallback] = STATE(720), - [aux_sym__text] = STATE(613), - [aux_sym__inline_repeat1] = STATE(227), - [anon_sym_LBRACK] = ACTIONS(1567), - [anon_sym_PIPE] = ACTIONS(1569), - [anon_sym_LBRACE] = ACTIONS(1571), - [sym__whitespace1] = ACTIONS(1573), - [anon_sym_BSLASH] = ACTIONS(1575), - [sym_quotation_marks] = ACTIONS(1569), - [sym_ellipsis] = ACTIONS(1569), - [sym_em_dash] = ACTIONS(1569), - [sym_en_dash] = ACTIONS(1571), - [sym_backslash_escape] = ACTIONS(1571), - [anon_sym_LT] = ACTIONS(1577), - [anon_sym_LBRACE_] = ACTIONS(1579), - [anon_sym__] = ACTIONS(1581), - [anon_sym_LBRACE_STAR] = ACTIONS(1583), - [anon_sym_STAR] = ACTIONS(1585), - [anon_sym_LBRACE_EQ] = ACTIONS(1587), - [anon_sym_LBRACE_PLUS] = ACTIONS(1589), - [anon_sym_LBRACE_DASH] = ACTIONS(1591), - [sym_symbol] = ACTIONS(1569), - [anon_sym_LBRACE_CARET] = ACTIONS(1593), - [anon_sym_CARET] = ACTIONS(1593), - [anon_sym_LBRACE_TILDE] = ACTIONS(1595), - [anon_sym_TILDE] = ACTIONS(1595), - [anon_sym_LBRACK_CARET] = ACTIONS(1597), - [anon_sym_BANG_LBRACK] = ACTIONS(1599), - [anon_sym_DOLLAR] = ACTIONS(1601), - [anon_sym_TODO] = ACTIONS(1603), - [anon_sym_WIP] = ACTIONS(1603), - [anon_sym_NOTE] = ACTIONS(1605), - [anon_sym_INFO] = ACTIONS(1605), - [anon_sym_XXX] = ACTIONS(1605), - [sym_fixme] = ACTIONS(1569), - [aux_sym__text_token1] = ACTIONS(1607), - [sym__newline_inline] = ACTIONS(1609), - [sym__verbatim_begin] = ACTIONS(1611), - }, - [226] = { - [sym__inline_element_with_whitespace] = STATE(226), - [sym__inline_element_with_newline] = STATE(226), - [sym__inline_core_element] = STATE(226), - [sym__hard_line_break] = STATE(696), - [sym_hard_line_break] = STATE(530), - [sym__smart_punctuation] = STATE(696), - [sym_autolink] = STATE(696), - [sym_emphasis] = STATE(696), - [sym_emphasis_begin] = STATE(274), - [sym_strong] = STATE(696), - [sym_strong_begin] = STATE(275), - [sym_highlighted] = STATE(696), - [sym_insert] = STATE(696), - [sym_delete] = STATE(696), - [sym_superscript] = STATE(696), - [sym_subscript] = STATE(696), - [sym_footnote_reference] = STATE(696), - [sym__image] = STATE(696), - [sym_full_reference_image] = STATE(696), - [sym_collapsed_reference_image] = STATE(696), - [sym_inline_image] = STATE(696), - [sym__image_description] = STATE(1427), - [sym__link] = STATE(696), - [sym_full_reference_link] = STATE(696), - [sym_collapsed_reference_link] = STATE(696), - [sym_inline_link] = STATE(696), - [sym_link_text] = STATE(1426), - [sym__comment_with_spaces] = STATE(696), - [sym_span] = STATE(696), - [sym_raw_inline] = STATE(696), - [sym_math] = STATE(696), - [sym_verbatim] = STATE(696), - [sym__todo_highlights] = STATE(696), - [sym_todo] = STATE(696), - [sym_note] = STATE(696), - [sym__symbol_fallback] = STATE(696), - [aux_sym__text] = STATE(609), - [aux_sym__inline_repeat1] = STATE(226), - [anon_sym_LBRACK] = ACTIONS(2020), - [anon_sym_PIPE] = ACTIONS(2023), - [anon_sym_LBRACE] = ACTIONS(2026), - [sym__whitespace1] = ACTIONS(2029), - [anon_sym_BSLASH] = ACTIONS(2032), - [sym_quotation_marks] = ACTIONS(2023), - [sym_ellipsis] = ACTIONS(2023), - [sym_em_dash] = ACTIONS(2023), - [sym_en_dash] = ACTIONS(2026), - [sym_backslash_escape] = ACTIONS(2026), - [anon_sym_LT] = ACTIONS(2035), - [anon_sym_LBRACE_] = ACTIONS(2038), - [anon_sym__] = ACTIONS(2041), - [anon_sym_LBRACE_STAR] = ACTIONS(2044), - [anon_sym_STAR] = ACTIONS(2047), - [anon_sym_LBRACE_EQ] = ACTIONS(2050), - [anon_sym_LBRACE_PLUS] = ACTIONS(2053), - [anon_sym_LBRACE_DASH] = ACTIONS(2056), - [sym_symbol] = ACTIONS(2023), - [anon_sym_LBRACE_CARET] = ACTIONS(2059), - [anon_sym_CARET] = ACTIONS(2059), - [anon_sym_LBRACE_TILDE] = ACTIONS(2062), - [anon_sym_TILDE] = ACTIONS(2065), - [anon_sym_TILDE_RBRACE] = ACTIONS(1496), - [anon_sym_LBRACK_CARET] = ACTIONS(2068), - [anon_sym_BANG_LBRACK] = ACTIONS(2071), - [anon_sym_DOLLAR] = ACTIONS(2074), - [anon_sym_TODO] = ACTIONS(2077), - [anon_sym_WIP] = ACTIONS(2077), - [anon_sym_NOTE] = ACTIONS(2080), - [anon_sym_INFO] = ACTIONS(2080), - [anon_sym_XXX] = ACTIONS(2080), - [sym_fixme] = ACTIONS(2023), - [aux_sym__text_token1] = ACTIONS(2083), - [sym__newline_inline] = ACTIONS(2086), - [sym__verbatim_begin] = ACTIONS(2089), - }, - [227] = { - [sym__inline_element_with_whitespace] = STATE(218), - [sym__inline_element_with_newline] = STATE(218), - [sym__inline_core_element] = STATE(218), - [sym__hard_line_break] = STATE(720), - [sym_hard_line_break] = STATE(514), - [sym__smart_punctuation] = STATE(720), - [sym_autolink] = STATE(720), - [sym_emphasis] = STATE(720), - [sym_emphasis_begin] = STATE(285), - [sym_strong] = STATE(720), - [sym_strong_begin] = STATE(287), - [sym_highlighted] = STATE(720), - [sym_insert] = STATE(720), - [sym_delete] = STATE(720), - [sym_superscript] = STATE(720), - [sym_subscript] = STATE(720), - [sym_footnote_reference] = STATE(720), - [sym__image] = STATE(720), - [sym_full_reference_image] = STATE(720), - [sym_collapsed_reference_image] = STATE(720), - [sym_inline_image] = STATE(720), - [sym__image_description] = STATE(1405), - [sym__link] = STATE(720), - [sym_full_reference_link] = STATE(720), - [sym_collapsed_reference_link] = STATE(720), - [sym_inline_link] = STATE(720), - [sym_link_text] = STATE(1407), - [sym__comment_with_spaces] = STATE(720), - [sym_span] = STATE(720), - [sym_raw_inline] = STATE(720), - [sym_math] = STATE(720), - [sym_verbatim] = STATE(720), - [sym__todo_highlights] = STATE(720), - [sym_todo] = STATE(720), - [sym_note] = STATE(720), - [sym__symbol_fallback] = STATE(720), - [aux_sym__text] = STATE(613), - [aux_sym__inline_repeat1] = STATE(218), - [anon_sym_LBRACK] = ACTIONS(1567), - [anon_sym_PIPE] = ACTIONS(1569), - [anon_sym_LBRACE] = ACTIONS(1571), - [sym__whitespace1] = ACTIONS(1573), - [anon_sym_BSLASH] = ACTIONS(1575), - [sym_quotation_marks] = ACTIONS(1569), - [sym_ellipsis] = ACTIONS(1569), - [sym_em_dash] = ACTIONS(1569), - [sym_en_dash] = ACTIONS(1571), - [sym_backslash_escape] = ACTIONS(1571), - [anon_sym_LT] = ACTIONS(1577), - [anon_sym_LBRACE_] = ACTIONS(1579), - [anon_sym__] = ACTIONS(1581), - [anon_sym_LBRACE_STAR] = ACTIONS(1583), - [anon_sym_STAR] = ACTIONS(1585), - [anon_sym_LBRACE_EQ] = ACTIONS(1587), - [anon_sym_LBRACE_PLUS] = ACTIONS(1589), - [anon_sym_LBRACE_DASH] = ACTIONS(1591), - [sym_symbol] = ACTIONS(1569), - [anon_sym_LBRACE_CARET] = ACTIONS(1593), - [anon_sym_CARET] = ACTIONS(1593), - [anon_sym_LBRACE_TILDE] = ACTIONS(1595), - [anon_sym_TILDE] = ACTIONS(1595), - [anon_sym_LBRACK_CARET] = ACTIONS(1597), - [anon_sym_BANG_LBRACK] = ACTIONS(1599), - [anon_sym_RBRACK2] = ACTIONS(1563), - [anon_sym_DOLLAR] = ACTIONS(1601), - [anon_sym_TODO] = ACTIONS(1603), - [anon_sym_WIP] = ACTIONS(1603), - [anon_sym_NOTE] = ACTIONS(1605), - [anon_sym_INFO] = ACTIONS(1605), - [anon_sym_XXX] = ACTIONS(1605), - [sym_fixme] = ACTIONS(1569), - [aux_sym__text_token1] = ACTIONS(1607), - [sym__newline_inline] = ACTIONS(1609), - [sym__verbatim_begin] = ACTIONS(1611), - }, - [228] = { - [sym__inline] = STATE(2145), - [sym__inline_element_with_whitespace] = STATE(227), - [sym__inline_element_with_newline] = STATE(227), - [sym__inline_core_element] = STATE(227), - [sym__hard_line_break] = STATE(720), - [sym_hard_line_break] = STATE(514), - [sym__smart_punctuation] = STATE(720), - [sym_autolink] = STATE(720), - [sym_emphasis] = STATE(720), - [sym_emphasis_begin] = STATE(285), - [sym_strong] = STATE(720), - [sym_strong_begin] = STATE(287), - [sym_highlighted] = STATE(720), - [sym_insert] = STATE(720), - [sym_delete] = STATE(720), - [sym_superscript] = STATE(720), - [sym_subscript] = STATE(720), - [sym_footnote_reference] = STATE(720), - [sym__image] = STATE(720), - [sym_full_reference_image] = STATE(720), - [sym_collapsed_reference_image] = STATE(720), - [sym_inline_image] = STATE(720), - [sym__image_description] = STATE(1405), - [sym__link] = STATE(720), - [sym_full_reference_link] = STATE(720), - [sym_collapsed_reference_link] = STATE(720), - [sym_inline_link] = STATE(720), - [sym_link_text] = STATE(1407), - [sym__comment_with_spaces] = STATE(720), - [sym_span] = STATE(720), - [sym_raw_inline] = STATE(720), - [sym_math] = STATE(720), - [sym_verbatim] = STATE(720), - [sym__todo_highlights] = STATE(720), - [sym_todo] = STATE(720), - [sym_note] = STATE(720), - [sym__symbol_fallback] = STATE(720), - [aux_sym__text] = STATE(613), - [aux_sym__inline_repeat1] = STATE(227), - [anon_sym_LBRACK] = ACTIONS(1567), - [anon_sym_PIPE] = ACTIONS(1569), - [anon_sym_LBRACE] = ACTIONS(1571), - [sym__whitespace1] = ACTIONS(1573), - [anon_sym_BSLASH] = ACTIONS(1575), - [sym_quotation_marks] = ACTIONS(1569), - [sym_ellipsis] = ACTIONS(1569), - [sym_em_dash] = ACTIONS(1569), - [sym_en_dash] = ACTIONS(1571), - [sym_backslash_escape] = ACTIONS(1571), - [anon_sym_LT] = ACTIONS(1577), - [anon_sym_LBRACE_] = ACTIONS(1579), - [anon_sym__] = ACTIONS(1581), - [anon_sym_LBRACE_STAR] = ACTIONS(1583), - [anon_sym_STAR] = ACTIONS(1585), - [anon_sym_LBRACE_EQ] = ACTIONS(1587), - [anon_sym_LBRACE_PLUS] = ACTIONS(1589), - [anon_sym_LBRACE_DASH] = ACTIONS(1591), - [sym_symbol] = ACTIONS(1569), - [anon_sym_LBRACE_CARET] = ACTIONS(1593), - [anon_sym_CARET] = ACTIONS(1593), - [anon_sym_LBRACE_TILDE] = ACTIONS(1595), - [anon_sym_TILDE] = ACTIONS(1595), - [anon_sym_LBRACK_CARET] = ACTIONS(1597), - [anon_sym_BANG_LBRACK] = ACTIONS(1599), - [anon_sym_DOLLAR] = ACTIONS(1601), - [anon_sym_TODO] = ACTIONS(1603), - [anon_sym_WIP] = ACTIONS(1603), - [anon_sym_NOTE] = ACTIONS(1605), - [anon_sym_INFO] = ACTIONS(1605), - [anon_sym_XXX] = ACTIONS(1605), - [sym_fixme] = ACTIONS(1569), - [aux_sym__text_token1] = ACTIONS(1607), - [sym__newline_inline] = ACTIONS(1609), - [sym__verbatim_begin] = ACTIONS(1611), - }, - [229] = { - [sym__inline_element_with_whitespace] = STATE(235), - [sym__inline_element_with_newline] = STATE(235), - [sym__inline_core_element] = STATE(235), - [sym__hard_line_break] = STATE(716), - [sym_hard_line_break] = STATE(517), - [sym__smart_punctuation] = STATE(716), - [sym_autolink] = STATE(716), - [sym_emphasis] = STATE(716), - [sym_emphasis_begin] = STATE(283), - [sym_strong] = STATE(716), - [sym_strong_begin] = STATE(282), - [sym_highlighted] = STATE(716), - [sym_insert] = STATE(716), - [sym_delete] = STATE(716), - [sym_superscript] = STATE(716), - [sym_subscript] = STATE(716), - [sym_footnote_reference] = STATE(716), - [sym__image] = STATE(716), - [sym_full_reference_image] = STATE(716), - [sym_collapsed_reference_image] = STATE(716), - [sym_inline_image] = STATE(716), - [sym__image_description] = STATE(1412), - [sym__link] = STATE(716), - [sym_full_reference_link] = STATE(716), - [sym_collapsed_reference_link] = STATE(716), - [sym_inline_link] = STATE(716), - [sym_link_text] = STATE(1413), - [sym__comment_with_spaces] = STATE(716), - [sym_span] = STATE(716), - [sym_raw_inline] = STATE(716), - [sym_math] = STATE(716), - [sym_verbatim] = STATE(716), - [sym__todo_highlights] = STATE(716), - [sym_todo] = STATE(716), - [sym_note] = STATE(716), - [sym__symbol_fallback] = STATE(716), - [aux_sym__text] = STATE(562), - [aux_sym__inline_repeat1] = STATE(235), - [anon_sym_LBRACK] = ACTIONS(1482), - [anon_sym_PIPE] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), - [sym__whitespace1] = ACTIONS(11), - [anon_sym_BSLASH] = ACTIONS(13), - [sym_quotation_marks] = ACTIONS(15), - [sym_ellipsis] = ACTIONS(15), - [sym_em_dash] = ACTIONS(15), - [sym_en_dash] = ACTIONS(17), - [sym_backslash_escape] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(19), - [anon_sym_LBRACE_] = ACTIONS(21), - [anon_sym__] = ACTIONS(23), - [anon_sym_LBRACE_STAR] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_LBRACE_EQ] = ACTIONS(29), - [anon_sym_LBRACE_PLUS] = ACTIONS(31), - [anon_sym_LBRACE_DASH] = ACTIONS(33), - [sym_symbol] = ACTIONS(15), - [anon_sym_LBRACE_CARET] = ACTIONS(35), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_LBRACE_TILDE] = ACTIONS(37), - [anon_sym_TILDE] = ACTIONS(37), - [anon_sym_LBRACK_CARET] = ACTIONS(39), - [anon_sym_BANG_LBRACK] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [anon_sym_TODO] = ACTIONS(45), - [anon_sym_WIP] = ACTIONS(45), - [anon_sym_NOTE] = ACTIONS(47), - [anon_sym_INFO] = ACTIONS(47), - [anon_sym_XXX] = ACTIONS(47), - [sym_fixme] = ACTIONS(15), - [aux_sym__text_token1] = ACTIONS(49), - [sym__eof_or_newline] = ACTIONS(1563), - [sym__newline_inline] = ACTIONS(53), - [sym__verbatim_begin] = ACTIONS(121), - }, - [230] = { - [sym__inline_element_with_whitespace] = STATE(233), - [sym__inline_element_with_newline] = STATE(233), - [sym__inline_core_element] = STATE(233), - [sym__hard_line_break] = STATE(688), - [sym_hard_line_break] = STATE(516), - [sym__smart_punctuation] = STATE(688), - [sym_autolink] = STATE(688), - [sym_emphasis] = STATE(688), - [sym_emphasis_begin] = STATE(291), - [sym_strong] = STATE(688), - [sym_strong_begin] = STATE(272), - [sym_highlighted] = STATE(688), - [sym_insert] = STATE(688), - [sym_delete] = STATE(688), - [sym_superscript] = STATE(688), - [sym_subscript] = STATE(688), - [sym_footnote_reference] = STATE(688), - [sym__image] = STATE(688), - [sym_full_reference_image] = STATE(688), - [sym_collapsed_reference_image] = STATE(688), - [sym_inline_image] = STATE(688), - [sym__image_description] = STATE(1436), - [sym__link] = STATE(688), - [sym_full_reference_link] = STATE(688), - [sym_collapsed_reference_link] = STATE(688), - [sym_inline_link] = STATE(688), - [sym_link_text] = STATE(1434), - [sym__comment_with_spaces] = STATE(688), - [sym_span] = STATE(688), - [sym_raw_inline] = STATE(688), - [sym_math] = STATE(688), - [sym_verbatim] = STATE(688), - [sym__todo_highlights] = STATE(688), - [sym_todo] = STATE(688), - [sym_note] = STATE(688), - [sym__symbol_fallback] = STATE(688), - [aux_sym__text] = STATE(583), - [aux_sym__inline_repeat1] = STATE(233), - [anon_sym_LBRACK] = ACTIONS(2092), - [anon_sym_PIPE] = ACTIONS(2094), - [anon_sym_LBRACE] = ACTIONS(2096), - [sym__whitespace1] = ACTIONS(2098), - [anon_sym_BSLASH] = ACTIONS(2100), - [sym_quotation_marks] = ACTIONS(2094), - [sym_ellipsis] = ACTIONS(2094), - [sym_em_dash] = ACTIONS(2094), - [sym_en_dash] = ACTIONS(2096), - [sym_backslash_escape] = ACTIONS(2096), - [anon_sym_LT] = ACTIONS(2102), - [anon_sym_LBRACE_] = ACTIONS(2104), - [anon_sym__] = ACTIONS(2106), - [anon_sym_LBRACE_STAR] = ACTIONS(2108), - [anon_sym_STAR] = ACTIONS(2110), - [anon_sym_LBRACE_EQ] = ACTIONS(2112), - [anon_sym_LBRACE_PLUS] = ACTIONS(2114), - [anon_sym_LBRACE_DASH] = ACTIONS(2116), - [sym_symbol] = ACTIONS(2094), - [anon_sym_LBRACE_CARET] = ACTIONS(2118), - [anon_sym_CARET] = ACTIONS(2120), - [anon_sym_CARET_RBRACE] = ACTIONS(1563), - [anon_sym_LBRACE_TILDE] = ACTIONS(2122), - [anon_sym_TILDE] = ACTIONS(2122), - [anon_sym_LBRACK_CARET] = ACTIONS(2124), - [anon_sym_BANG_LBRACK] = ACTIONS(2126), - [anon_sym_DOLLAR] = ACTIONS(2128), - [anon_sym_TODO] = ACTIONS(2130), - [anon_sym_WIP] = ACTIONS(2130), - [anon_sym_NOTE] = ACTIONS(2132), - [anon_sym_INFO] = ACTIONS(2132), - [anon_sym_XXX] = ACTIONS(2132), - [sym_fixme] = ACTIONS(2094), - [aux_sym__text_token1] = ACTIONS(2134), - [sym__newline_inline] = ACTIONS(1486), - [sym__verbatim_begin] = ACTIONS(2136), - }, - [231] = { - [sym__inline_element_with_whitespace] = STATE(231), - [sym__inline_element_with_newline] = STATE(231), - [sym__inline_core_element] = STATE(231), - [sym__hard_line_break] = STATE(624), - [sym_hard_line_break] = STATE(527), - [sym__smart_punctuation] = STATE(624), - [sym_autolink] = STATE(624), - [sym_emphasis] = STATE(624), - [sym_emphasis_begin] = STATE(281), - [sym_strong] = STATE(624), - [sym_strong_begin] = STATE(276), - [sym_highlighted] = STATE(624), - [sym_insert] = STATE(624), - [sym_delete] = STATE(624), - [sym_superscript] = STATE(624), - [sym_subscript] = STATE(624), - [sym_footnote_reference] = STATE(624), - [sym__image] = STATE(624), - [sym_full_reference_image] = STATE(624), - [sym_collapsed_reference_image] = STATE(624), - [sym_inline_image] = STATE(624), - [sym__image_description] = STATE(1450), - [sym__link] = STATE(624), - [sym_full_reference_link] = STATE(624), - [sym_collapsed_reference_link] = STATE(624), - [sym_inline_link] = STATE(624), - [sym_link_text] = STATE(1451), - [sym__comment_with_spaces] = STATE(624), - [sym_span] = STATE(624), - [sym_raw_inline] = STATE(624), - [sym_math] = STATE(624), - [sym_verbatim] = STATE(624), - [sym__todo_highlights] = STATE(624), - [sym_todo] = STATE(624), - [sym_note] = STATE(624), - [sym__symbol_fallback] = STATE(624), - [aux_sym__text] = STATE(595), - [aux_sym__inline_repeat1] = STATE(231), - [anon_sym_LBRACK] = ACTIONS(2138), - [anon_sym_PIPE] = ACTIONS(2141), - [anon_sym_LBRACE] = ACTIONS(2144), - [sym__whitespace1] = ACTIONS(2147), - [anon_sym_BSLASH] = ACTIONS(2150), - [sym_quotation_marks] = ACTIONS(2141), - [sym_ellipsis] = ACTIONS(2141), - [sym_em_dash] = ACTIONS(2141), - [sym_en_dash] = ACTIONS(2144), - [sym_backslash_escape] = ACTIONS(2144), - [anon_sym_LT] = ACTIONS(2153), - [anon_sym_LBRACE_] = ACTIONS(2156), - [anon_sym__] = ACTIONS(2159), - [anon_sym_LBRACE_STAR] = ACTIONS(2162), - [anon_sym_STAR] = ACTIONS(2165), - [anon_sym_LBRACE_EQ] = ACTIONS(2168), - [anon_sym_EQ_RBRACE] = ACTIONS(1496), - [anon_sym_LBRACE_PLUS] = ACTIONS(2171), - [anon_sym_LBRACE_DASH] = ACTIONS(2174), - [sym_symbol] = ACTIONS(2141), - [anon_sym_LBRACE_CARET] = ACTIONS(2177), - [anon_sym_CARET] = ACTIONS(2177), - [anon_sym_LBRACE_TILDE] = ACTIONS(2180), - [anon_sym_TILDE] = ACTIONS(2180), - [anon_sym_LBRACK_CARET] = ACTIONS(2183), - [anon_sym_BANG_LBRACK] = ACTIONS(2186), - [anon_sym_DOLLAR] = ACTIONS(2189), - [anon_sym_TODO] = ACTIONS(2192), - [anon_sym_WIP] = ACTIONS(2192), - [anon_sym_NOTE] = ACTIONS(2195), - [anon_sym_INFO] = ACTIONS(2195), - [anon_sym_XXX] = ACTIONS(2195), - [sym_fixme] = ACTIONS(2141), - [aux_sym__text_token1] = ACTIONS(2198), - [sym__newline_inline] = ACTIONS(2201), - [sym__verbatim_begin] = ACTIONS(2204), - }, - [232] = { - [sym__inline] = STATE(2230), - [sym__inline_element_with_whitespace] = STATE(227), - [sym__inline_element_with_newline] = STATE(227), - [sym__inline_core_element] = STATE(227), - [sym__hard_line_break] = STATE(720), - [sym_hard_line_break] = STATE(514), - [sym__smart_punctuation] = STATE(720), - [sym_autolink] = STATE(720), - [sym_emphasis] = STATE(720), - [sym_emphasis_begin] = STATE(285), - [sym_strong] = STATE(720), - [sym_strong_begin] = STATE(287), - [sym_highlighted] = STATE(720), - [sym_insert] = STATE(720), - [sym_delete] = STATE(720), - [sym_superscript] = STATE(720), - [sym_subscript] = STATE(720), - [sym_footnote_reference] = STATE(720), - [sym__image] = STATE(720), - [sym_full_reference_image] = STATE(720), - [sym_collapsed_reference_image] = STATE(720), - [sym_inline_image] = STATE(720), - [sym__image_description] = STATE(1405), - [sym__link] = STATE(720), - [sym_full_reference_link] = STATE(720), - [sym_collapsed_reference_link] = STATE(720), - [sym_inline_link] = STATE(720), - [sym_link_text] = STATE(1407), - [sym__comment_with_spaces] = STATE(720), - [sym_span] = STATE(720), - [sym_raw_inline] = STATE(720), - [sym_math] = STATE(720), - [sym_verbatim] = STATE(720), - [sym__todo_highlights] = STATE(720), - [sym_todo] = STATE(720), - [sym_note] = STATE(720), - [sym__symbol_fallback] = STATE(720), - [aux_sym__text] = STATE(613), - [aux_sym__inline_repeat1] = STATE(227), - [anon_sym_LBRACK] = ACTIONS(1567), - [anon_sym_PIPE] = ACTIONS(1569), - [anon_sym_LBRACE] = ACTIONS(1571), - [sym__whitespace1] = ACTIONS(1573), - [anon_sym_BSLASH] = ACTIONS(1575), - [sym_quotation_marks] = ACTIONS(1569), - [sym_ellipsis] = ACTIONS(1569), - [sym_em_dash] = ACTIONS(1569), - [sym_en_dash] = ACTIONS(1571), - [sym_backslash_escape] = ACTIONS(1571), - [anon_sym_LT] = ACTIONS(1577), - [anon_sym_LBRACE_] = ACTIONS(1579), - [anon_sym__] = ACTIONS(1581), - [anon_sym_LBRACE_STAR] = ACTIONS(1583), - [anon_sym_STAR] = ACTIONS(1585), - [anon_sym_LBRACE_EQ] = ACTIONS(1587), - [anon_sym_LBRACE_PLUS] = ACTIONS(1589), - [anon_sym_LBRACE_DASH] = ACTIONS(1591), - [sym_symbol] = ACTIONS(1569), - [anon_sym_LBRACE_CARET] = ACTIONS(1593), - [anon_sym_CARET] = ACTIONS(1593), - [anon_sym_LBRACE_TILDE] = ACTIONS(1595), - [anon_sym_TILDE] = ACTIONS(1595), - [anon_sym_LBRACK_CARET] = ACTIONS(1597), - [anon_sym_BANG_LBRACK] = ACTIONS(1599), - [anon_sym_DOLLAR] = ACTIONS(1601), - [anon_sym_TODO] = ACTIONS(1603), - [anon_sym_WIP] = ACTIONS(1603), - [anon_sym_NOTE] = ACTIONS(1605), - [anon_sym_INFO] = ACTIONS(1605), - [anon_sym_XXX] = ACTIONS(1605), - [sym_fixme] = ACTIONS(1569), - [aux_sym__text_token1] = ACTIONS(1607), - [sym__newline_inline] = ACTIONS(1609), - [sym__verbatim_begin] = ACTIONS(1611), - }, - [233] = { - [sym__inline_element_with_whitespace] = STATE(233), - [sym__inline_element_with_newline] = STATE(233), - [sym__inline_core_element] = STATE(233), - [sym__hard_line_break] = STATE(688), - [sym_hard_line_break] = STATE(516), - [sym__smart_punctuation] = STATE(688), - [sym_autolink] = STATE(688), - [sym_emphasis] = STATE(688), - [sym_emphasis_begin] = STATE(291), - [sym_strong] = STATE(688), - [sym_strong_begin] = STATE(272), - [sym_highlighted] = STATE(688), - [sym_insert] = STATE(688), - [sym_delete] = STATE(688), - [sym_superscript] = STATE(688), - [sym_subscript] = STATE(688), - [sym_footnote_reference] = STATE(688), - [sym__image] = STATE(688), - [sym_full_reference_image] = STATE(688), - [sym_collapsed_reference_image] = STATE(688), - [sym_inline_image] = STATE(688), - [sym__image_description] = STATE(1436), - [sym__link] = STATE(688), - [sym_full_reference_link] = STATE(688), - [sym_collapsed_reference_link] = STATE(688), - [sym_inline_link] = STATE(688), - [sym_link_text] = STATE(1434), - [sym__comment_with_spaces] = STATE(688), - [sym_span] = STATE(688), - [sym_raw_inline] = STATE(688), - [sym_math] = STATE(688), - [sym_verbatim] = STATE(688), - [sym__todo_highlights] = STATE(688), - [sym_todo] = STATE(688), - [sym_note] = STATE(688), - [sym__symbol_fallback] = STATE(688), - [aux_sym__text] = STATE(583), - [aux_sym__inline_repeat1] = STATE(233), - [anon_sym_LBRACK] = ACTIONS(2207), - [anon_sym_PIPE] = ACTIONS(2210), - [anon_sym_LBRACE] = ACTIONS(2213), - [sym__whitespace1] = ACTIONS(2216), - [anon_sym_BSLASH] = ACTIONS(2219), - [sym_quotation_marks] = ACTIONS(2210), - [sym_ellipsis] = ACTIONS(2210), - [sym_em_dash] = ACTIONS(2210), - [sym_en_dash] = ACTIONS(2213), - [sym_backslash_escape] = ACTIONS(2213), - [anon_sym_LT] = ACTIONS(2222), - [anon_sym_LBRACE_] = ACTIONS(2225), - [anon_sym__] = ACTIONS(2228), - [anon_sym_LBRACE_STAR] = ACTIONS(2231), - [anon_sym_STAR] = ACTIONS(2234), - [anon_sym_LBRACE_EQ] = ACTIONS(2237), - [anon_sym_LBRACE_PLUS] = ACTIONS(2240), - [anon_sym_LBRACE_DASH] = ACTIONS(2243), - [sym_symbol] = ACTIONS(2210), - [anon_sym_LBRACE_CARET] = ACTIONS(2246), - [anon_sym_CARET] = ACTIONS(2249), - [anon_sym_CARET_RBRACE] = ACTIONS(1496), - [anon_sym_LBRACE_TILDE] = ACTIONS(2252), - [anon_sym_TILDE] = ACTIONS(2252), - [anon_sym_LBRACK_CARET] = ACTIONS(2255), - [anon_sym_BANG_LBRACK] = ACTIONS(2258), - [anon_sym_DOLLAR] = ACTIONS(2261), - [anon_sym_TODO] = ACTIONS(2264), - [anon_sym_WIP] = ACTIONS(2264), - [anon_sym_NOTE] = ACTIONS(2267), - [anon_sym_INFO] = ACTIONS(2267), - [anon_sym_XXX] = ACTIONS(2267), - [sym_fixme] = ACTIONS(2210), - [aux_sym__text_token1] = ACTIONS(2270), - [sym__newline_inline] = ACTIONS(2273), - [sym__verbatim_begin] = ACTIONS(2276), - }, - [234] = { - [sym__inline] = STATE(2362), - [sym__inline_element_with_whitespace] = STATE(227), - [sym__inline_element_with_newline] = STATE(227), - [sym__inline_core_element] = STATE(227), - [sym__hard_line_break] = STATE(720), - [sym_hard_line_break] = STATE(514), - [sym__smart_punctuation] = STATE(720), - [sym_autolink] = STATE(720), - [sym_emphasis] = STATE(720), - [sym_emphasis_begin] = STATE(285), - [sym_strong] = STATE(720), - [sym_strong_begin] = STATE(287), - [sym_highlighted] = STATE(720), - [sym_insert] = STATE(720), - [sym_delete] = STATE(720), - [sym_superscript] = STATE(720), - [sym_subscript] = STATE(720), - [sym_footnote_reference] = STATE(720), - [sym__image] = STATE(720), - [sym_full_reference_image] = STATE(720), - [sym_collapsed_reference_image] = STATE(720), - [sym_inline_image] = STATE(720), - [sym__image_description] = STATE(1405), - [sym__link] = STATE(720), - [sym_full_reference_link] = STATE(720), - [sym_collapsed_reference_link] = STATE(720), - [sym_inline_link] = STATE(720), - [sym_link_text] = STATE(1407), - [sym__comment_with_spaces] = STATE(720), - [sym_span] = STATE(720), - [sym_raw_inline] = STATE(720), - [sym_math] = STATE(720), - [sym_verbatim] = STATE(720), - [sym__todo_highlights] = STATE(720), - [sym_todo] = STATE(720), - [sym_note] = STATE(720), - [sym__symbol_fallback] = STATE(720), - [aux_sym__text] = STATE(613), - [aux_sym__inline_repeat1] = STATE(227), - [anon_sym_LBRACK] = ACTIONS(1567), - [anon_sym_PIPE] = ACTIONS(1569), - [anon_sym_LBRACE] = ACTIONS(1571), - [sym__whitespace1] = ACTIONS(1573), - [anon_sym_BSLASH] = ACTIONS(1575), - [sym_quotation_marks] = ACTIONS(1569), - [sym_ellipsis] = ACTIONS(1569), - [sym_em_dash] = ACTIONS(1569), - [sym_en_dash] = ACTIONS(1571), - [sym_backslash_escape] = ACTIONS(1571), - [anon_sym_LT] = ACTIONS(1577), - [anon_sym_LBRACE_] = ACTIONS(1579), - [anon_sym__] = ACTIONS(1581), - [anon_sym_LBRACE_STAR] = ACTIONS(1583), - [anon_sym_STAR] = ACTIONS(1585), - [anon_sym_LBRACE_EQ] = ACTIONS(1587), - [anon_sym_LBRACE_PLUS] = ACTIONS(1589), - [anon_sym_LBRACE_DASH] = ACTIONS(1591), - [sym_symbol] = ACTIONS(1569), - [anon_sym_LBRACE_CARET] = ACTIONS(1593), - [anon_sym_CARET] = ACTIONS(1593), - [anon_sym_LBRACE_TILDE] = ACTIONS(1595), - [anon_sym_TILDE] = ACTIONS(1595), - [anon_sym_LBRACK_CARET] = ACTIONS(1597), - [anon_sym_BANG_LBRACK] = ACTIONS(1599), - [anon_sym_DOLLAR] = ACTIONS(1601), - [anon_sym_TODO] = ACTIONS(1603), - [anon_sym_WIP] = ACTIONS(1603), - [anon_sym_NOTE] = ACTIONS(1605), - [anon_sym_INFO] = ACTIONS(1605), - [anon_sym_XXX] = ACTIONS(1605), - [sym_fixme] = ACTIONS(1569), - [aux_sym__text_token1] = ACTIONS(1607), - [sym__newline_inline] = ACTIONS(1609), - [sym__verbatim_begin] = ACTIONS(1611), - }, - [235] = { - [sym__inline_element_with_whitespace] = STATE(235), - [sym__inline_element_with_newline] = STATE(235), - [sym__inline_core_element] = STATE(235), - [sym__hard_line_break] = STATE(716), - [sym_hard_line_break] = STATE(517), - [sym__smart_punctuation] = STATE(716), - [sym_autolink] = STATE(716), - [sym_emphasis] = STATE(716), - [sym_emphasis_begin] = STATE(283), - [sym_strong] = STATE(716), - [sym_strong_begin] = STATE(282), - [sym_highlighted] = STATE(716), - [sym_insert] = STATE(716), - [sym_delete] = STATE(716), - [sym_superscript] = STATE(716), - [sym_subscript] = STATE(716), - [sym_footnote_reference] = STATE(716), - [sym__image] = STATE(716), - [sym_full_reference_image] = STATE(716), - [sym_collapsed_reference_image] = STATE(716), - [sym_inline_image] = STATE(716), - [sym__image_description] = STATE(1412), - [sym__link] = STATE(716), - [sym_full_reference_link] = STATE(716), - [sym_collapsed_reference_link] = STATE(716), - [sym_inline_link] = STATE(716), - [sym_link_text] = STATE(1413), - [sym__comment_with_spaces] = STATE(716), - [sym_span] = STATE(716), - [sym_raw_inline] = STATE(716), - [sym_math] = STATE(716), - [sym_verbatim] = STATE(716), - [sym__todo_highlights] = STATE(716), - [sym_todo] = STATE(716), - [sym_note] = STATE(716), - [sym__symbol_fallback] = STATE(716), - [aux_sym__text] = STATE(562), - [aux_sym__inline_repeat1] = STATE(235), - [anon_sym_LBRACK] = ACTIONS(2279), - [anon_sym_PIPE] = ACTIONS(2282), - [anon_sym_LBRACE] = ACTIONS(2285), - [sym__whitespace1] = ACTIONS(2288), - [anon_sym_BSLASH] = ACTIONS(2291), - [sym_quotation_marks] = ACTIONS(2282), - [sym_ellipsis] = ACTIONS(2282), - [sym_em_dash] = ACTIONS(2282), - [sym_en_dash] = ACTIONS(2285), - [sym_backslash_escape] = ACTIONS(2285), - [anon_sym_LT] = ACTIONS(2294), - [anon_sym_LBRACE_] = ACTIONS(2297), - [anon_sym__] = ACTIONS(2300), - [anon_sym_LBRACE_STAR] = ACTIONS(2303), - [anon_sym_STAR] = ACTIONS(2306), - [anon_sym_LBRACE_EQ] = ACTIONS(2309), - [anon_sym_LBRACE_PLUS] = ACTIONS(2312), - [anon_sym_LBRACE_DASH] = ACTIONS(2315), - [sym_symbol] = ACTIONS(2282), - [anon_sym_LBRACE_CARET] = ACTIONS(2318), - [anon_sym_CARET] = ACTIONS(2318), - [anon_sym_LBRACE_TILDE] = ACTIONS(2321), - [anon_sym_TILDE] = ACTIONS(2321), - [anon_sym_LBRACK_CARET] = ACTIONS(2324), - [anon_sym_BANG_LBRACK] = ACTIONS(2327), - [anon_sym_DOLLAR] = ACTIONS(2330), - [anon_sym_TODO] = ACTIONS(2333), - [anon_sym_WIP] = ACTIONS(2333), - [anon_sym_NOTE] = ACTIONS(2336), - [anon_sym_INFO] = ACTIONS(2336), - [anon_sym_XXX] = ACTIONS(2336), - [sym_fixme] = ACTIONS(2282), - [aux_sym__text_token1] = ACTIONS(2339), - [sym__eof_or_newline] = ACTIONS(1496), - [sym__newline_inline] = ACTIONS(2342), - [sym__verbatim_begin] = ACTIONS(2345), - }, - [236] = { - [sym__inline] = STATE(2314), - [sym__inline_element_with_whitespace] = STATE(227), - [sym__inline_element_with_newline] = STATE(227), - [sym__inline_core_element] = STATE(227), - [sym__hard_line_break] = STATE(720), - [sym_hard_line_break] = STATE(514), - [sym__smart_punctuation] = STATE(720), - [sym_autolink] = STATE(720), - [sym_emphasis] = STATE(720), - [sym_emphasis_begin] = STATE(285), - [sym_strong] = STATE(720), - [sym_strong_begin] = STATE(287), - [sym_highlighted] = STATE(720), - [sym_insert] = STATE(720), - [sym_delete] = STATE(720), - [sym_superscript] = STATE(720), - [sym_subscript] = STATE(720), - [sym_footnote_reference] = STATE(720), - [sym__image] = STATE(720), - [sym_full_reference_image] = STATE(720), - [sym_collapsed_reference_image] = STATE(720), - [sym_inline_image] = STATE(720), - [sym__image_description] = STATE(1405), - [sym__link] = STATE(720), - [sym_full_reference_link] = STATE(720), - [sym_collapsed_reference_link] = STATE(720), - [sym_inline_link] = STATE(720), - [sym_link_text] = STATE(1407), - [sym__comment_with_spaces] = STATE(720), - [sym_span] = STATE(720), - [sym_raw_inline] = STATE(720), - [sym_math] = STATE(720), - [sym_verbatim] = STATE(720), - [sym__todo_highlights] = STATE(720), - [sym_todo] = STATE(720), - [sym_note] = STATE(720), - [sym__symbol_fallback] = STATE(720), - [aux_sym__text] = STATE(613), - [aux_sym__inline_repeat1] = STATE(227), - [anon_sym_LBRACK] = ACTIONS(1567), - [anon_sym_PIPE] = ACTIONS(1569), - [anon_sym_LBRACE] = ACTIONS(1571), - [sym__whitespace1] = ACTIONS(1573), - [anon_sym_BSLASH] = ACTIONS(1575), - [sym_quotation_marks] = ACTIONS(1569), - [sym_ellipsis] = ACTIONS(1569), - [sym_em_dash] = ACTIONS(1569), - [sym_en_dash] = ACTIONS(1571), - [sym_backslash_escape] = ACTIONS(1571), - [anon_sym_LT] = ACTIONS(1577), - [anon_sym_LBRACE_] = ACTIONS(1579), - [anon_sym__] = ACTIONS(1581), - [anon_sym_LBRACE_STAR] = ACTIONS(1583), - [anon_sym_STAR] = ACTIONS(1585), - [anon_sym_LBRACE_EQ] = ACTIONS(1587), - [anon_sym_LBRACE_PLUS] = ACTIONS(1589), - [anon_sym_LBRACE_DASH] = ACTIONS(1591), - [sym_symbol] = ACTIONS(1569), - [anon_sym_LBRACE_CARET] = ACTIONS(1593), - [anon_sym_CARET] = ACTIONS(1593), - [anon_sym_LBRACE_TILDE] = ACTIONS(1595), - [anon_sym_TILDE] = ACTIONS(1595), - [anon_sym_LBRACK_CARET] = ACTIONS(1597), - [anon_sym_BANG_LBRACK] = ACTIONS(1599), - [anon_sym_DOLLAR] = ACTIONS(1601), - [anon_sym_TODO] = ACTIONS(1603), - [anon_sym_WIP] = ACTIONS(1603), - [anon_sym_NOTE] = ACTIONS(1605), - [anon_sym_INFO] = ACTIONS(1605), - [anon_sym_XXX] = ACTIONS(1605), - [sym_fixme] = ACTIONS(1569), - [aux_sym__text_token1] = ACTIONS(1607), - [sym__newline_inline] = ACTIONS(1609), - [sym__verbatim_begin] = ACTIONS(1611), - }, - [237] = { - [sym__inline_element_with_whitespace] = STATE(237), - [sym__inline_element_with_newline] = STATE(237), - [sym__inline_core_element] = STATE(237), - [sym__hard_line_break] = STATE(627), - [sym_hard_line_break] = STATE(523), - [sym__smart_punctuation] = STATE(627), - [sym_autolink] = STATE(627), - [sym_emphasis] = STATE(627), - [sym_emphasis_begin] = STATE(296), - [sym_strong] = STATE(627), - [sym_strong_begin] = STATE(295), - [sym_highlighted] = STATE(627), - [sym_insert] = STATE(627), - [sym_delete] = STATE(627), - [sym_superscript] = STATE(627), - [sym_subscript] = STATE(627), - [sym_footnote_reference] = STATE(627), - [sym__image] = STATE(627), - [sym_full_reference_image] = STATE(627), - [sym_collapsed_reference_image] = STATE(627), - [sym_inline_image] = STATE(627), - [sym__image_description] = STATE(1448), - [sym__link] = STATE(627), - [sym_full_reference_link] = STATE(627), - [sym_collapsed_reference_link] = STATE(627), - [sym_inline_link] = STATE(627), - [sym_link_text] = STATE(1453), - [sym__comment_with_spaces] = STATE(627), - [sym_span] = STATE(627), - [sym_raw_inline] = STATE(627), - [sym_math] = STATE(627), - [sym_verbatim] = STATE(627), - [sym__todo_highlights] = STATE(627), - [sym_todo] = STATE(627), - [sym_note] = STATE(627), - [sym__symbol_fallback] = STATE(627), - [aux_sym__text] = STATE(560), - [aux_sym__inline_repeat1] = STATE(237), - [anon_sym_LBRACK] = ACTIONS(2348), - [anon_sym_RBRACK] = ACTIONS(1496), - [anon_sym_PIPE] = ACTIONS(2351), - [anon_sym_LBRACE] = ACTIONS(2354), - [sym__whitespace1] = ACTIONS(2357), - [anon_sym_BSLASH] = ACTIONS(2360), - [sym_quotation_marks] = ACTIONS(2351), - [sym_ellipsis] = ACTIONS(2351), - [sym_em_dash] = ACTIONS(2351), - [sym_en_dash] = ACTIONS(2354), - [sym_backslash_escape] = ACTIONS(2354), - [anon_sym_LT] = ACTIONS(2363), - [anon_sym_LBRACE_] = ACTIONS(2366), - [anon_sym__] = ACTIONS(2369), - [anon_sym_LBRACE_STAR] = ACTIONS(2372), - [anon_sym_STAR] = ACTIONS(2375), - [anon_sym_LBRACE_EQ] = ACTIONS(2378), - [anon_sym_LBRACE_PLUS] = ACTIONS(2381), - [anon_sym_LBRACE_DASH] = ACTIONS(2384), - [sym_symbol] = ACTIONS(2351), - [anon_sym_LBRACE_CARET] = ACTIONS(2387), - [anon_sym_CARET] = ACTIONS(2387), - [anon_sym_LBRACE_TILDE] = ACTIONS(2390), - [anon_sym_TILDE] = ACTIONS(2390), - [anon_sym_LBRACK_CARET] = ACTIONS(2393), - [anon_sym_BANG_LBRACK] = ACTIONS(2396), - [anon_sym_DOLLAR] = ACTIONS(2399), - [anon_sym_TODO] = ACTIONS(2402), - [anon_sym_WIP] = ACTIONS(2402), - [anon_sym_NOTE] = ACTIONS(2405), - [anon_sym_INFO] = ACTIONS(2405), - [anon_sym_XXX] = ACTIONS(2405), - [sym_fixme] = ACTIONS(2351), - [aux_sym__text_token1] = ACTIONS(2408), - [sym__newline_inline] = ACTIONS(2411), - [sym__verbatim_begin] = ACTIONS(2414), - }, - [238] = { - [sym__inline] = STATE(2076), - [sym__inline_element_with_whitespace] = STATE(227), - [sym__inline_element_with_newline] = STATE(227), - [sym__inline_core_element] = STATE(227), - [sym__hard_line_break] = STATE(720), - [sym_hard_line_break] = STATE(514), - [sym__smart_punctuation] = STATE(720), - [sym_autolink] = STATE(720), - [sym_emphasis] = STATE(720), - [sym_emphasis_begin] = STATE(285), - [sym_strong] = STATE(720), - [sym_strong_begin] = STATE(287), - [sym_highlighted] = STATE(720), - [sym_insert] = STATE(720), - [sym_delete] = STATE(720), - [sym_superscript] = STATE(720), - [sym_subscript] = STATE(720), - [sym_footnote_reference] = STATE(720), - [sym__image] = STATE(720), - [sym_full_reference_image] = STATE(720), - [sym_collapsed_reference_image] = STATE(720), - [sym_inline_image] = STATE(720), - [sym__image_description] = STATE(1405), - [sym__link] = STATE(720), - [sym_full_reference_link] = STATE(720), - [sym_collapsed_reference_link] = STATE(720), - [sym_inline_link] = STATE(720), - [sym_link_text] = STATE(1407), - [sym__comment_with_spaces] = STATE(720), - [sym_span] = STATE(720), - [sym_raw_inline] = STATE(720), - [sym_math] = STATE(720), - [sym_verbatim] = STATE(720), - [sym__todo_highlights] = STATE(720), - [sym_todo] = STATE(720), - [sym_note] = STATE(720), - [sym__symbol_fallback] = STATE(720), - [aux_sym__text] = STATE(613), - [aux_sym__inline_repeat1] = STATE(227), - [anon_sym_LBRACK] = ACTIONS(1567), - [anon_sym_PIPE] = ACTIONS(1569), - [anon_sym_LBRACE] = ACTIONS(1571), - [sym__whitespace1] = ACTIONS(1573), - [anon_sym_BSLASH] = ACTIONS(1575), - [sym_quotation_marks] = ACTIONS(1569), - [sym_ellipsis] = ACTIONS(1569), - [sym_em_dash] = ACTIONS(1569), - [sym_en_dash] = ACTIONS(1571), - [sym_backslash_escape] = ACTIONS(1571), - [anon_sym_LT] = ACTIONS(1577), - [anon_sym_LBRACE_] = ACTIONS(1579), - [anon_sym__] = ACTIONS(1581), - [anon_sym_LBRACE_STAR] = ACTIONS(1583), - [anon_sym_STAR] = ACTIONS(1585), - [anon_sym_LBRACE_EQ] = ACTIONS(1587), - [anon_sym_LBRACE_PLUS] = ACTIONS(1589), - [anon_sym_LBRACE_DASH] = ACTIONS(1591), - [sym_symbol] = ACTIONS(1569), - [anon_sym_LBRACE_CARET] = ACTIONS(1593), - [anon_sym_CARET] = ACTIONS(1593), - [anon_sym_LBRACE_TILDE] = ACTIONS(1595), - [anon_sym_TILDE] = ACTIONS(1595), - [anon_sym_LBRACK_CARET] = ACTIONS(1597), - [anon_sym_BANG_LBRACK] = ACTIONS(1599), - [anon_sym_DOLLAR] = ACTIONS(1601), - [anon_sym_TODO] = ACTIONS(1603), - [anon_sym_WIP] = ACTIONS(1603), - [anon_sym_NOTE] = ACTIONS(1605), - [anon_sym_INFO] = ACTIONS(1605), - [anon_sym_XXX] = ACTIONS(1605), - [sym_fixme] = ACTIONS(1569), - [aux_sym__text_token1] = ACTIONS(1607), - [sym__newline_inline] = ACTIONS(1609), - [sym__verbatim_begin] = ACTIONS(1611), - }, - [239] = { - [sym__inline_element_with_whitespace] = STATE(231), - [sym__inline_element_with_newline] = STATE(231), - [sym__inline_core_element] = STATE(231), - [sym__hard_line_break] = STATE(624), - [sym_hard_line_break] = STATE(527), - [sym__smart_punctuation] = STATE(624), - [sym_autolink] = STATE(624), - [sym_emphasis] = STATE(624), - [sym_emphasis_begin] = STATE(281), - [sym_strong] = STATE(624), - [sym_strong_begin] = STATE(276), - [sym_highlighted] = STATE(624), - [sym_insert] = STATE(624), - [sym_delete] = STATE(624), - [sym_superscript] = STATE(624), - [sym_subscript] = STATE(624), - [sym_footnote_reference] = STATE(624), - [sym__image] = STATE(624), - [sym_full_reference_image] = STATE(624), - [sym_collapsed_reference_image] = STATE(624), - [sym_inline_image] = STATE(624), - [sym__image_description] = STATE(1450), - [sym__link] = STATE(624), - [sym_full_reference_link] = STATE(624), - [sym_collapsed_reference_link] = STATE(624), - [sym_inline_link] = STATE(624), - [sym_link_text] = STATE(1451), - [sym__comment_with_spaces] = STATE(624), - [sym_span] = STATE(624), - [sym_raw_inline] = STATE(624), - [sym_math] = STATE(624), - [sym_verbatim] = STATE(624), - [sym__todo_highlights] = STATE(624), - [sym_todo] = STATE(624), - [sym_note] = STATE(624), - [sym__symbol_fallback] = STATE(624), - [aux_sym__text] = STATE(595), - [aux_sym__inline_repeat1] = STATE(231), - [anon_sym_LBRACK] = ACTIONS(2417), - [anon_sym_PIPE] = ACTIONS(2419), - [anon_sym_LBRACE] = ACTIONS(2421), - [sym__whitespace1] = ACTIONS(2423), - [anon_sym_BSLASH] = ACTIONS(2425), - [sym_quotation_marks] = ACTIONS(2419), - [sym_ellipsis] = ACTIONS(2419), - [sym_em_dash] = ACTIONS(2419), - [sym_en_dash] = ACTIONS(2421), - [sym_backslash_escape] = ACTIONS(2421), - [anon_sym_LT] = ACTIONS(2427), - [anon_sym_LBRACE_] = ACTIONS(2429), - [anon_sym__] = ACTIONS(2431), - [anon_sym_LBRACE_STAR] = ACTIONS(2433), - [anon_sym_STAR] = ACTIONS(2435), - [anon_sym_LBRACE_EQ] = ACTIONS(2437), - [anon_sym_EQ_RBRACE] = ACTIONS(1563), - [anon_sym_LBRACE_PLUS] = ACTIONS(2439), - [anon_sym_LBRACE_DASH] = ACTIONS(2441), - [sym_symbol] = ACTIONS(2419), - [anon_sym_LBRACE_CARET] = ACTIONS(2443), - [anon_sym_CARET] = ACTIONS(2443), - [anon_sym_LBRACE_TILDE] = ACTIONS(2445), - [anon_sym_TILDE] = ACTIONS(2445), - [anon_sym_LBRACK_CARET] = ACTIONS(2447), - [anon_sym_BANG_LBRACK] = ACTIONS(2449), - [anon_sym_DOLLAR] = ACTIONS(2451), - [anon_sym_TODO] = ACTIONS(2453), - [anon_sym_WIP] = ACTIONS(2453), - [anon_sym_NOTE] = ACTIONS(2455), - [anon_sym_INFO] = ACTIONS(2455), - [anon_sym_XXX] = ACTIONS(2455), - [sym_fixme] = ACTIONS(2419), - [aux_sym__text_token1] = ACTIONS(2457), - [sym__newline_inline] = ACTIONS(1565), - [sym__verbatim_begin] = ACTIONS(2459), - }, - [240] = { - [sym__inline] = STATE(1979), - [sym__inline_element_with_whitespace] = STATE(227), - [sym__inline_element_with_newline] = STATE(227), - [sym__inline_core_element] = STATE(227), - [sym__hard_line_break] = STATE(720), - [sym_hard_line_break] = STATE(514), - [sym__smart_punctuation] = STATE(720), - [sym_autolink] = STATE(720), - [sym_emphasis] = STATE(720), - [sym_emphasis_begin] = STATE(285), - [sym_strong] = STATE(720), - [sym_strong_begin] = STATE(287), - [sym_highlighted] = STATE(720), - [sym_insert] = STATE(720), - [sym_delete] = STATE(720), - [sym_superscript] = STATE(720), - [sym_subscript] = STATE(720), - [sym_footnote_reference] = STATE(720), - [sym__image] = STATE(720), - [sym_full_reference_image] = STATE(720), - [sym_collapsed_reference_image] = STATE(720), - [sym_inline_image] = STATE(720), - [sym__image_description] = STATE(1405), - [sym__link] = STATE(720), - [sym_full_reference_link] = STATE(720), - [sym_collapsed_reference_link] = STATE(720), - [sym_inline_link] = STATE(720), - [sym_link_text] = STATE(1407), - [sym__comment_with_spaces] = STATE(720), - [sym_span] = STATE(720), - [sym_raw_inline] = STATE(720), - [sym_math] = STATE(720), - [sym_verbatim] = STATE(720), - [sym__todo_highlights] = STATE(720), - [sym_todo] = STATE(720), - [sym_note] = STATE(720), - [sym__symbol_fallback] = STATE(720), - [aux_sym__text] = STATE(613), - [aux_sym__inline_repeat1] = STATE(227), - [anon_sym_LBRACK] = ACTIONS(1567), - [anon_sym_PIPE] = ACTIONS(1569), - [anon_sym_LBRACE] = ACTIONS(1571), - [sym__whitespace1] = ACTIONS(1573), - [anon_sym_BSLASH] = ACTIONS(1575), - [sym_quotation_marks] = ACTIONS(1569), - [sym_ellipsis] = ACTIONS(1569), - [sym_em_dash] = ACTIONS(1569), - [sym_en_dash] = ACTIONS(1571), - [sym_backslash_escape] = ACTIONS(1571), - [anon_sym_LT] = ACTIONS(1577), - [anon_sym_LBRACE_] = ACTIONS(1579), - [anon_sym__] = ACTIONS(1581), - [anon_sym_LBRACE_STAR] = ACTIONS(1583), - [anon_sym_STAR] = ACTIONS(1585), - [anon_sym_LBRACE_EQ] = ACTIONS(1587), - [anon_sym_LBRACE_PLUS] = ACTIONS(1589), - [anon_sym_LBRACE_DASH] = ACTIONS(1591), - [sym_symbol] = ACTIONS(1569), - [anon_sym_LBRACE_CARET] = ACTIONS(1593), - [anon_sym_CARET] = ACTIONS(1593), - [anon_sym_LBRACE_TILDE] = ACTIONS(1595), - [anon_sym_TILDE] = ACTIONS(1595), - [anon_sym_LBRACK_CARET] = ACTIONS(1597), - [anon_sym_BANG_LBRACK] = ACTIONS(1599), - [anon_sym_DOLLAR] = ACTIONS(1601), - [anon_sym_TODO] = ACTIONS(1603), - [anon_sym_WIP] = ACTIONS(1603), - [anon_sym_NOTE] = ACTIONS(1605), - [anon_sym_INFO] = ACTIONS(1605), - [anon_sym_XXX] = ACTIONS(1605), - [sym_fixme] = ACTIONS(1569), - [aux_sym__text_token1] = ACTIONS(1607), - [sym__newline_inline] = ACTIONS(1609), - [sym__verbatim_begin] = ACTIONS(1611), - }, - [241] = { - [sym__inline_element_with_whitespace] = STATE(226), - [sym__inline_element_with_newline] = STATE(226), - [sym__inline_core_element] = STATE(226), - [sym__hard_line_break] = STATE(696), - [sym_hard_line_break] = STATE(530), - [sym__smart_punctuation] = STATE(696), - [sym_autolink] = STATE(696), - [sym_emphasis] = STATE(696), - [sym_emphasis_begin] = STATE(274), - [sym_strong] = STATE(696), - [sym_strong_begin] = STATE(275), - [sym_highlighted] = STATE(696), - [sym_insert] = STATE(696), - [sym_delete] = STATE(696), - [sym_superscript] = STATE(696), - [sym_subscript] = STATE(696), - [sym_footnote_reference] = STATE(696), - [sym__image] = STATE(696), - [sym_full_reference_image] = STATE(696), - [sym_collapsed_reference_image] = STATE(696), - [sym_inline_image] = STATE(696), - [sym__image_description] = STATE(1427), - [sym__link] = STATE(696), - [sym_full_reference_link] = STATE(696), - [sym_collapsed_reference_link] = STATE(696), - [sym_inline_link] = STATE(696), - [sym_link_text] = STATE(1426), - [sym__comment_with_spaces] = STATE(696), - [sym_span] = STATE(696), - [sym_raw_inline] = STATE(696), - [sym_math] = STATE(696), - [sym_verbatim] = STATE(696), - [sym__todo_highlights] = STATE(696), - [sym_todo] = STATE(696), - [sym_note] = STATE(696), - [sym__symbol_fallback] = STATE(696), - [aux_sym__text] = STATE(609), - [aux_sym__inline_repeat1] = STATE(226), - [anon_sym_LBRACK] = ACTIONS(2461), - [anon_sym_PIPE] = ACTIONS(2463), - [anon_sym_LBRACE] = ACTIONS(2465), - [sym__whitespace1] = ACTIONS(2467), - [anon_sym_BSLASH] = ACTIONS(2469), - [sym_quotation_marks] = ACTIONS(2463), - [sym_ellipsis] = ACTIONS(2463), - [sym_em_dash] = ACTIONS(2463), - [sym_en_dash] = ACTIONS(2465), - [sym_backslash_escape] = ACTIONS(2465), - [anon_sym_LT] = ACTIONS(2471), - [anon_sym_LBRACE_] = ACTIONS(2473), - [anon_sym__] = ACTIONS(2475), - [anon_sym_LBRACE_STAR] = ACTIONS(2477), - [anon_sym_STAR] = ACTIONS(2479), - [anon_sym_LBRACE_EQ] = ACTIONS(2481), - [anon_sym_LBRACE_PLUS] = ACTIONS(2483), - [anon_sym_LBRACE_DASH] = ACTIONS(2485), - [sym_symbol] = ACTIONS(2463), - [anon_sym_LBRACE_CARET] = ACTIONS(2487), - [anon_sym_CARET] = ACTIONS(2487), - [anon_sym_LBRACE_TILDE] = ACTIONS(2489), - [anon_sym_TILDE] = ACTIONS(2120), - [anon_sym_TILDE_RBRACE] = ACTIONS(1563), - [anon_sym_LBRACK_CARET] = ACTIONS(2491), - [anon_sym_BANG_LBRACK] = ACTIONS(2493), - [anon_sym_DOLLAR] = ACTIONS(2495), - [anon_sym_TODO] = ACTIONS(2497), - [anon_sym_WIP] = ACTIONS(2497), - [anon_sym_NOTE] = ACTIONS(2499), - [anon_sym_INFO] = ACTIONS(2499), - [anon_sym_XXX] = ACTIONS(2499), - [sym_fixme] = ACTIONS(2463), - [aux_sym__text_token1] = ACTIONS(2501), - [sym__newline_inline] = ACTIONS(1488), - [sym__verbatim_begin] = ACTIONS(2503), - }, - [242] = { - [sym__inline_element_with_whitespace] = STATE(237), - [sym__inline_element_with_newline] = STATE(237), - [sym__inline_core_element] = STATE(237), - [sym__hard_line_break] = STATE(627), - [sym_hard_line_break] = STATE(523), - [sym__smart_punctuation] = STATE(627), - [sym_autolink] = STATE(627), - [sym_emphasis] = STATE(627), - [sym_emphasis_begin] = STATE(296), - [sym_strong] = STATE(627), - [sym_strong_begin] = STATE(295), - [sym_highlighted] = STATE(627), - [sym_insert] = STATE(627), - [sym_delete] = STATE(627), - [sym_superscript] = STATE(627), - [sym_subscript] = STATE(627), - [sym_footnote_reference] = STATE(627), - [sym__image] = STATE(627), - [sym_full_reference_image] = STATE(627), - [sym_collapsed_reference_image] = STATE(627), - [sym_inline_image] = STATE(627), - [sym__image_description] = STATE(1448), - [sym__link] = STATE(627), - [sym_full_reference_link] = STATE(627), - [sym_collapsed_reference_link] = STATE(627), - [sym_inline_link] = STATE(627), - [sym_link_text] = STATE(1453), - [sym__comment_with_spaces] = STATE(627), - [sym_span] = STATE(627), - [sym_raw_inline] = STATE(627), - [sym_math] = STATE(627), - [sym_verbatim] = STATE(627), - [sym__todo_highlights] = STATE(627), - [sym_todo] = STATE(627), - [sym_note] = STATE(627), - [sym__symbol_fallback] = STATE(627), - [aux_sym__text] = STATE(560), - [aux_sym__inline_repeat1] = STATE(237), - [anon_sym_LBRACK] = ACTIONS(2505), - [anon_sym_RBRACK] = ACTIONS(1563), - [anon_sym_PIPE] = ACTIONS(2507), - [anon_sym_LBRACE] = ACTIONS(2509), - [sym__whitespace1] = ACTIONS(2511), - [anon_sym_BSLASH] = ACTIONS(2513), - [sym_quotation_marks] = ACTIONS(2507), - [sym_ellipsis] = ACTIONS(2507), - [sym_em_dash] = ACTIONS(2507), - [sym_en_dash] = ACTIONS(2509), - [sym_backslash_escape] = ACTIONS(2509), - [anon_sym_LT] = ACTIONS(2515), - [anon_sym_LBRACE_] = ACTIONS(2517), - [anon_sym__] = ACTIONS(2519), - [anon_sym_LBRACE_STAR] = ACTIONS(2521), - [anon_sym_STAR] = ACTIONS(2523), - [anon_sym_LBRACE_EQ] = ACTIONS(2525), - [anon_sym_LBRACE_PLUS] = ACTIONS(2527), - [anon_sym_LBRACE_DASH] = ACTIONS(2529), - [sym_symbol] = ACTIONS(2507), - [anon_sym_LBRACE_CARET] = ACTIONS(2531), - [anon_sym_CARET] = ACTIONS(2531), - [anon_sym_LBRACE_TILDE] = ACTIONS(2533), - [anon_sym_TILDE] = ACTIONS(2533), - [anon_sym_LBRACK_CARET] = ACTIONS(2535), - [anon_sym_BANG_LBRACK] = ACTIONS(2537), - [anon_sym_DOLLAR] = ACTIONS(2539), - [anon_sym_TODO] = ACTIONS(2541), - [anon_sym_WIP] = ACTIONS(2541), - [anon_sym_NOTE] = ACTIONS(2543), - [anon_sym_INFO] = ACTIONS(2543), - [anon_sym_XXX] = ACTIONS(2543), - [sym_fixme] = ACTIONS(2507), - [aux_sym__text_token1] = ACTIONS(2545), - [sym__newline_inline] = ACTIONS(1474), - [sym__verbatim_begin] = ACTIONS(2547), - }, - [243] = { - [sym_table_cell] = STATE(2192), - [sym__inline_element_with_whitespace_without_newline] = STATE(308), - [sym__inline_core_element] = STATE(308), - [sym__hard_line_break] = STATE(1116), - [sym_hard_line_break] = STATE(711), - [sym__smart_punctuation] = STATE(1116), - [sym_autolink] = STATE(1116), - [sym_emphasis] = STATE(1116), - [sym_emphasis_begin] = STATE(271), - [sym_strong] = STATE(1116), - [sym_strong_begin] = STATE(293), - [sym_highlighted] = STATE(1116), - [sym_insert] = STATE(1116), - [sym_delete] = STATE(1116), - [sym_superscript] = STATE(1116), - [sym_subscript] = STATE(1116), - [sym_footnote_reference] = STATE(1116), - [sym__image] = STATE(1116), - [sym_full_reference_image] = STATE(1116), - [sym_collapsed_reference_image] = STATE(1116), - [sym_inline_image] = STATE(1116), - [sym__image_description] = STATE(1403), - [sym__link] = STATE(1116), - [sym_full_reference_link] = STATE(1116), - [sym_collapsed_reference_link] = STATE(1116), - [sym_inline_link] = STATE(1116), - [sym_link_text] = STATE(1404), - [sym__comment_with_spaces] = STATE(1116), - [sym_span] = STATE(1116), - [sym_raw_inline] = STATE(1116), - [sym_math] = STATE(1116), - [sym_verbatim] = STATE(1116), - [sym__todo_highlights] = STATE(1116), - [sym_todo] = STATE(1116), - [sym_note] = STATE(1116), - [sym__symbol_fallback] = STATE(1116), - [aux_sym__text] = STATE(781), - [aux_sym_table_cell_repeat1] = STATE(308), - [anon_sym_LBRACK] = ACTIONS(2549), - [anon_sym_PIPE] = ACTIONS(2551), - [anon_sym_LBRACE] = ACTIONS(2553), - [sym__whitespace1] = ACTIONS(2555), - [anon_sym_BSLASH] = ACTIONS(2557), - [sym_quotation_marks] = ACTIONS(2551), - [sym_ellipsis] = ACTIONS(2551), - [sym_em_dash] = ACTIONS(2551), - [sym_en_dash] = ACTIONS(2553), - [sym_backslash_escape] = ACTIONS(2553), - [anon_sym_LT] = ACTIONS(2559), - [anon_sym_LBRACE_] = ACTIONS(2561), - [anon_sym__] = ACTIONS(2563), - [anon_sym_LBRACE_STAR] = ACTIONS(2565), - [anon_sym_STAR] = ACTIONS(2567), - [anon_sym_LBRACE_EQ] = ACTIONS(2569), - [anon_sym_LBRACE_PLUS] = ACTIONS(2571), - [anon_sym_LBRACE_DASH] = ACTIONS(2573), - [sym_symbol] = ACTIONS(2551), - [anon_sym_LBRACE_CARET] = ACTIONS(2575), - [anon_sym_CARET] = ACTIONS(2575), - [anon_sym_LBRACE_TILDE] = ACTIONS(2577), - [anon_sym_TILDE] = ACTIONS(2577), - [anon_sym_LBRACK_CARET] = ACTIONS(2579), - [anon_sym_BANG_LBRACK] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(2583), - [anon_sym_TODO] = ACTIONS(2585), - [anon_sym_WIP] = ACTIONS(2585), - [anon_sym_NOTE] = ACTIONS(2587), - [anon_sym_INFO] = ACTIONS(2587), - [anon_sym_XXX] = ACTIONS(2587), - [sym_fixme] = ACTIONS(2551), - [aux_sym__text_token1] = ACTIONS(2589), - [sym__newline] = ACTIONS(2591), - [sym__verbatim_begin] = ACTIONS(2593), - }, - [244] = { - [sym_table_cell] = STATE(1861), - [sym__inline_element_with_whitespace_without_newline] = STATE(308), - [sym__inline_core_element] = STATE(308), - [sym__hard_line_break] = STATE(1116), - [sym_hard_line_break] = STATE(711), - [sym__smart_punctuation] = STATE(1116), - [sym_autolink] = STATE(1116), - [sym_emphasis] = STATE(1116), - [sym_emphasis_begin] = STATE(271), - [sym_strong] = STATE(1116), - [sym_strong_begin] = STATE(293), - [sym_highlighted] = STATE(1116), - [sym_insert] = STATE(1116), - [sym_delete] = STATE(1116), - [sym_superscript] = STATE(1116), - [sym_subscript] = STATE(1116), - [sym_footnote_reference] = STATE(1116), - [sym__image] = STATE(1116), - [sym_full_reference_image] = STATE(1116), - [sym_collapsed_reference_image] = STATE(1116), - [sym_inline_image] = STATE(1116), - [sym__image_description] = STATE(1403), - [sym__link] = STATE(1116), - [sym_full_reference_link] = STATE(1116), - [sym_collapsed_reference_link] = STATE(1116), - [sym_inline_link] = STATE(1116), - [sym_link_text] = STATE(1404), - [sym__comment_with_spaces] = STATE(1116), - [sym_span] = STATE(1116), - [sym_raw_inline] = STATE(1116), - [sym_math] = STATE(1116), - [sym_verbatim] = STATE(1116), - [sym__todo_highlights] = STATE(1116), - [sym_todo] = STATE(1116), - [sym_note] = STATE(1116), - [sym__symbol_fallback] = STATE(1116), - [aux_sym__text] = STATE(781), - [aux_sym_table_cell_repeat1] = STATE(308), - [anon_sym_LBRACK] = ACTIONS(2549), - [anon_sym_PIPE] = ACTIONS(2551), - [sym_table_cell_alignment] = ACTIONS(2595), - [anon_sym_LBRACE] = ACTIONS(2553), - [sym__whitespace1] = ACTIONS(2555), - [anon_sym_BSLASH] = ACTIONS(2557), - [sym_quotation_marks] = ACTIONS(2551), - [sym_ellipsis] = ACTIONS(2551), - [sym_em_dash] = ACTIONS(2553), - [sym_en_dash] = ACTIONS(2553), - [sym_backslash_escape] = ACTIONS(2553), - [anon_sym_LT] = ACTIONS(2559), - [anon_sym_LBRACE_] = ACTIONS(2561), - [anon_sym__] = ACTIONS(2563), - [anon_sym_LBRACE_STAR] = ACTIONS(2565), - [anon_sym_STAR] = ACTIONS(2567), - [anon_sym_LBRACE_EQ] = ACTIONS(2569), - [anon_sym_LBRACE_PLUS] = ACTIONS(2571), - [anon_sym_LBRACE_DASH] = ACTIONS(2573), - [sym_symbol] = ACTIONS(2553), - [anon_sym_LBRACE_CARET] = ACTIONS(2575), - [anon_sym_CARET] = ACTIONS(2575), - [anon_sym_LBRACE_TILDE] = ACTIONS(2577), - [anon_sym_TILDE] = ACTIONS(2577), - [anon_sym_LBRACK_CARET] = ACTIONS(2579), - [anon_sym_BANG_LBRACK] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(2583), - [anon_sym_TODO] = ACTIONS(2585), - [anon_sym_WIP] = ACTIONS(2585), - [anon_sym_NOTE] = ACTIONS(2587), - [anon_sym_INFO] = ACTIONS(2587), - [anon_sym_XXX] = ACTIONS(2587), - [sym_fixme] = ACTIONS(2551), - [aux_sym__text_token1] = ACTIONS(2589), - [sym__verbatim_begin] = ACTIONS(2593), - }, - [245] = { - [sym_table_cell] = STATE(2192), - [sym__inline_element_with_whitespace_without_newline] = STATE(308), - [sym__inline_core_element] = STATE(308), - [sym__hard_line_break] = STATE(1116), - [sym_hard_line_break] = STATE(711), - [sym__smart_punctuation] = STATE(1116), - [sym_autolink] = STATE(1116), - [sym_emphasis] = STATE(1116), - [sym_emphasis_begin] = STATE(271), - [sym_strong] = STATE(1116), - [sym_strong_begin] = STATE(293), - [sym_highlighted] = STATE(1116), - [sym_insert] = STATE(1116), - [sym_delete] = STATE(1116), - [sym_superscript] = STATE(1116), - [sym_subscript] = STATE(1116), - [sym_footnote_reference] = STATE(1116), - [sym__image] = STATE(1116), - [sym_full_reference_image] = STATE(1116), - [sym_collapsed_reference_image] = STATE(1116), - [sym_inline_image] = STATE(1116), - [sym__image_description] = STATE(1403), - [sym__link] = STATE(1116), - [sym_full_reference_link] = STATE(1116), - [sym_collapsed_reference_link] = STATE(1116), - [sym_inline_link] = STATE(1116), - [sym_link_text] = STATE(1404), - [sym__comment_with_spaces] = STATE(1116), - [sym_span] = STATE(1116), - [sym_raw_inline] = STATE(1116), - [sym_math] = STATE(1116), - [sym_verbatim] = STATE(1116), - [sym__todo_highlights] = STATE(1116), - [sym_todo] = STATE(1116), - [sym_note] = STATE(1116), - [sym__symbol_fallback] = STATE(1116), - [aux_sym__text] = STATE(781), - [aux_sym_table_cell_repeat1] = STATE(308), - [anon_sym_LBRACK] = ACTIONS(2549), - [anon_sym_PIPE] = ACTIONS(2551), - [anon_sym_LBRACE] = ACTIONS(2553), - [sym__whitespace1] = ACTIONS(2555), - [anon_sym_BSLASH] = ACTIONS(2557), - [sym_quotation_marks] = ACTIONS(2551), - [sym_ellipsis] = ACTIONS(2551), - [sym_em_dash] = ACTIONS(2551), - [sym_en_dash] = ACTIONS(2553), - [sym_backslash_escape] = ACTIONS(2553), - [anon_sym_LT] = ACTIONS(2559), - [anon_sym_LBRACE_] = ACTIONS(2561), - [anon_sym__] = ACTIONS(2563), - [anon_sym_LBRACE_STAR] = ACTIONS(2565), - [anon_sym_STAR] = ACTIONS(2567), - [anon_sym_LBRACE_EQ] = ACTIONS(2569), - [anon_sym_LBRACE_PLUS] = ACTIONS(2571), - [anon_sym_LBRACE_DASH] = ACTIONS(2573), - [sym_symbol] = ACTIONS(2551), - [anon_sym_LBRACE_CARET] = ACTIONS(2575), - [anon_sym_CARET] = ACTIONS(2575), - [anon_sym_LBRACE_TILDE] = ACTIONS(2577), - [anon_sym_TILDE] = ACTIONS(2577), - [anon_sym_LBRACK_CARET] = ACTIONS(2579), - [anon_sym_BANG_LBRACK] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(2583), - [anon_sym_TODO] = ACTIONS(2585), - [anon_sym_WIP] = ACTIONS(2585), - [anon_sym_NOTE] = ACTIONS(2587), - [anon_sym_INFO] = ACTIONS(2587), - [anon_sym_XXX] = ACTIONS(2587), - [sym_fixme] = ACTIONS(2551), - [aux_sym__text_token1] = ACTIONS(2589), - [sym__newline] = ACTIONS(2597), - [sym__verbatim_begin] = ACTIONS(2593), - }, - [246] = { - [sym_table_cell] = STATE(1869), - [sym__inline_element_with_whitespace_without_newline] = STATE(308), - [sym__inline_core_element] = STATE(308), - [sym__hard_line_break] = STATE(1116), - [sym_hard_line_break] = STATE(711), - [sym__smart_punctuation] = STATE(1116), - [sym_autolink] = STATE(1116), - [sym_emphasis] = STATE(1116), - [sym_emphasis_begin] = STATE(271), - [sym_strong] = STATE(1116), - [sym_strong_begin] = STATE(293), - [sym_highlighted] = STATE(1116), - [sym_insert] = STATE(1116), - [sym_delete] = STATE(1116), - [sym_superscript] = STATE(1116), - [sym_subscript] = STATE(1116), - [sym_footnote_reference] = STATE(1116), - [sym__image] = STATE(1116), - [sym_full_reference_image] = STATE(1116), - [sym_collapsed_reference_image] = STATE(1116), - [sym_inline_image] = STATE(1116), - [sym__image_description] = STATE(1403), - [sym__link] = STATE(1116), - [sym_full_reference_link] = STATE(1116), - [sym_collapsed_reference_link] = STATE(1116), - [sym_inline_link] = STATE(1116), - [sym_link_text] = STATE(1404), - [sym__comment_with_spaces] = STATE(1116), - [sym_span] = STATE(1116), - [sym_raw_inline] = STATE(1116), - [sym_math] = STATE(1116), - [sym_verbatim] = STATE(1116), - [sym__todo_highlights] = STATE(1116), - [sym_todo] = STATE(1116), - [sym_note] = STATE(1116), - [sym__symbol_fallback] = STATE(1116), - [aux_sym__text] = STATE(781), - [aux_sym_table_cell_repeat1] = STATE(308), - [anon_sym_LBRACK] = ACTIONS(2549), - [anon_sym_PIPE] = ACTIONS(2551), - [sym_table_cell_alignment] = ACTIONS(1478), - [anon_sym_LBRACE] = ACTIONS(2553), - [sym__whitespace1] = ACTIONS(2555), - [anon_sym_BSLASH] = ACTIONS(2557), - [sym_quotation_marks] = ACTIONS(2551), - [sym_ellipsis] = ACTIONS(2551), - [sym_em_dash] = ACTIONS(2553), - [sym_en_dash] = ACTIONS(2553), - [sym_backslash_escape] = ACTIONS(2553), - [anon_sym_LT] = ACTIONS(2559), - [anon_sym_LBRACE_] = ACTIONS(2561), - [anon_sym__] = ACTIONS(2563), - [anon_sym_LBRACE_STAR] = ACTIONS(2565), - [anon_sym_STAR] = ACTIONS(2567), - [anon_sym_LBRACE_EQ] = ACTIONS(2569), - [anon_sym_LBRACE_PLUS] = ACTIONS(2571), - [anon_sym_LBRACE_DASH] = ACTIONS(2573), - [sym_symbol] = ACTIONS(2553), - [anon_sym_LBRACE_CARET] = ACTIONS(2575), - [anon_sym_CARET] = ACTIONS(2575), - [anon_sym_LBRACE_TILDE] = ACTIONS(2577), - [anon_sym_TILDE] = ACTIONS(2577), - [anon_sym_LBRACK_CARET] = ACTIONS(2579), - [anon_sym_BANG_LBRACK] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(2583), - [anon_sym_TODO] = ACTIONS(2585), - [anon_sym_WIP] = ACTIONS(2585), - [anon_sym_NOTE] = ACTIONS(2587), - [anon_sym_INFO] = ACTIONS(2587), - [anon_sym_XXX] = ACTIONS(2587), - [sym_fixme] = ACTIONS(2551), - [aux_sym__text_token1] = ACTIONS(2589), - [sym__verbatim_begin] = ACTIONS(2593), - }, - [247] = { - [sym_table_cell] = STATE(1877), - [sym__inline_element_with_whitespace_without_newline] = STATE(308), - [sym__inline_core_element] = STATE(308), - [sym__hard_line_break] = STATE(1116), - [sym_hard_line_break] = STATE(711), - [sym__smart_punctuation] = STATE(1116), - [sym_autolink] = STATE(1116), - [sym_emphasis] = STATE(1116), - [sym_emphasis_begin] = STATE(271), - [sym_strong] = STATE(1116), - [sym_strong_begin] = STATE(293), - [sym_highlighted] = STATE(1116), - [sym_insert] = STATE(1116), - [sym_delete] = STATE(1116), - [sym_superscript] = STATE(1116), - [sym_subscript] = STATE(1116), - [sym_footnote_reference] = STATE(1116), - [sym__image] = STATE(1116), - [sym_full_reference_image] = STATE(1116), - [sym_collapsed_reference_image] = STATE(1116), - [sym_inline_image] = STATE(1116), - [sym__image_description] = STATE(1403), - [sym__link] = STATE(1116), - [sym_full_reference_link] = STATE(1116), - [sym_collapsed_reference_link] = STATE(1116), - [sym_inline_link] = STATE(1116), - [sym_link_text] = STATE(1404), - [sym__comment_with_spaces] = STATE(1116), - [sym_span] = STATE(1116), - [sym_raw_inline] = STATE(1116), - [sym_math] = STATE(1116), - [sym_verbatim] = STATE(1116), - [sym__todo_highlights] = STATE(1116), - [sym_todo] = STATE(1116), - [sym_note] = STATE(1116), - [sym__symbol_fallback] = STATE(1116), - [aux_sym__text] = STATE(781), - [aux_sym_table_cell_repeat1] = STATE(308), - [anon_sym_LBRACK] = ACTIONS(2549), - [anon_sym_PIPE] = ACTIONS(2551), - [sym_table_cell_alignment] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(2553), - [sym__whitespace1] = ACTIONS(2555), - [anon_sym_BSLASH] = ACTIONS(2557), - [sym_quotation_marks] = ACTIONS(2551), - [sym_ellipsis] = ACTIONS(2551), - [sym_em_dash] = ACTIONS(2553), - [sym_en_dash] = ACTIONS(2553), - [sym_backslash_escape] = ACTIONS(2553), - [anon_sym_LT] = ACTIONS(2559), - [anon_sym_LBRACE_] = ACTIONS(2561), - [anon_sym__] = ACTIONS(2563), - [anon_sym_LBRACE_STAR] = ACTIONS(2565), - [anon_sym_STAR] = ACTIONS(2567), - [anon_sym_LBRACE_EQ] = ACTIONS(2569), - [anon_sym_LBRACE_PLUS] = ACTIONS(2571), - [anon_sym_LBRACE_DASH] = ACTIONS(2573), - [sym_symbol] = ACTIONS(2553), - [anon_sym_LBRACE_CARET] = ACTIONS(2575), - [anon_sym_CARET] = ACTIONS(2575), - [anon_sym_LBRACE_TILDE] = ACTIONS(2577), - [anon_sym_TILDE] = ACTIONS(2577), - [anon_sym_LBRACK_CARET] = ACTIONS(2579), - [anon_sym_BANG_LBRACK] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(2583), - [anon_sym_TODO] = ACTIONS(2585), - [anon_sym_WIP] = ACTIONS(2585), - [anon_sym_NOTE] = ACTIONS(2587), - [anon_sym_INFO] = ACTIONS(2587), - [anon_sym_XXX] = ACTIONS(2587), - [sym_fixme] = ACTIONS(2551), - [aux_sym__text_token1] = ACTIONS(2589), - [sym__verbatim_begin] = ACTIONS(2593), - }, - [248] = { - [sym_table_cell] = STATE(1762), - [sym__inline_element_with_whitespace_without_newline] = STATE(308), - [sym__inline_core_element] = STATE(308), - [sym__hard_line_break] = STATE(1116), - [sym_hard_line_break] = STATE(711), - [sym__smart_punctuation] = STATE(1116), - [sym_autolink] = STATE(1116), - [sym_emphasis] = STATE(1116), - [sym_emphasis_begin] = STATE(271), - [sym_strong] = STATE(1116), - [sym_strong_begin] = STATE(293), - [sym_highlighted] = STATE(1116), - [sym_insert] = STATE(1116), - [sym_delete] = STATE(1116), - [sym_superscript] = STATE(1116), - [sym_subscript] = STATE(1116), - [sym_footnote_reference] = STATE(1116), - [sym__image] = STATE(1116), - [sym_full_reference_image] = STATE(1116), - [sym_collapsed_reference_image] = STATE(1116), - [sym_inline_image] = STATE(1116), - [sym__image_description] = STATE(1403), - [sym__link] = STATE(1116), - [sym_full_reference_link] = STATE(1116), - [sym_collapsed_reference_link] = STATE(1116), - [sym_inline_link] = STATE(1116), - [sym_link_text] = STATE(1404), - [sym__comment_with_spaces] = STATE(1116), - [sym_span] = STATE(1116), - [sym_raw_inline] = STATE(1116), - [sym_math] = STATE(1116), - [sym_verbatim] = STATE(1116), - [sym__todo_highlights] = STATE(1116), - [sym_todo] = STATE(1116), - [sym_note] = STATE(1116), - [sym__symbol_fallback] = STATE(1116), - [aux_sym__text] = STATE(781), - [aux_sym_table_cell_repeat1] = STATE(308), - [anon_sym_LBRACK] = ACTIONS(2549), - [anon_sym_PIPE] = ACTIONS(2551), - [sym_table_cell_alignment] = ACTIONS(2599), - [anon_sym_LBRACE] = ACTIONS(2553), - [sym__whitespace1] = ACTIONS(2555), - [anon_sym_BSLASH] = ACTIONS(2557), - [sym_quotation_marks] = ACTIONS(2551), - [sym_ellipsis] = ACTIONS(2551), - [sym_em_dash] = ACTIONS(2553), - [sym_en_dash] = ACTIONS(2553), - [sym_backslash_escape] = ACTIONS(2553), - [anon_sym_LT] = ACTIONS(2559), - [anon_sym_LBRACE_] = ACTIONS(2561), - [anon_sym__] = ACTIONS(2563), - [anon_sym_LBRACE_STAR] = ACTIONS(2565), - [anon_sym_STAR] = ACTIONS(2567), - [anon_sym_LBRACE_EQ] = ACTIONS(2569), - [anon_sym_LBRACE_PLUS] = ACTIONS(2571), - [anon_sym_LBRACE_DASH] = ACTIONS(2573), - [sym_symbol] = ACTIONS(2553), - [anon_sym_LBRACE_CARET] = ACTIONS(2575), - [anon_sym_CARET] = ACTIONS(2575), - [anon_sym_LBRACE_TILDE] = ACTIONS(2577), - [anon_sym_TILDE] = ACTIONS(2577), - [anon_sym_LBRACK_CARET] = ACTIONS(2579), - [anon_sym_BANG_LBRACK] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(2583), - [anon_sym_TODO] = ACTIONS(2585), - [anon_sym_WIP] = ACTIONS(2585), - [anon_sym_NOTE] = ACTIONS(2587), - [anon_sym_INFO] = ACTIONS(2587), - [anon_sym_XXX] = ACTIONS(2587), - [sym_fixme] = ACTIONS(2551), - [aux_sym__text_token1] = ACTIONS(2589), - [sym__verbatim_begin] = ACTIONS(2593), - }, - [249] = { - [sym_table_cell] = STATE(1831), - [sym__inline_element_with_whitespace_without_newline] = STATE(308), - [sym__inline_core_element] = STATE(308), - [sym__hard_line_break] = STATE(1116), - [sym_hard_line_break] = STATE(711), - [sym__smart_punctuation] = STATE(1116), - [sym_autolink] = STATE(1116), - [sym_emphasis] = STATE(1116), - [sym_emphasis_begin] = STATE(271), - [sym_strong] = STATE(1116), - [sym_strong_begin] = STATE(293), - [sym_highlighted] = STATE(1116), - [sym_insert] = STATE(1116), - [sym_delete] = STATE(1116), - [sym_superscript] = STATE(1116), - [sym_subscript] = STATE(1116), - [sym_footnote_reference] = STATE(1116), - [sym__image] = STATE(1116), - [sym_full_reference_image] = STATE(1116), - [sym_collapsed_reference_image] = STATE(1116), - [sym_inline_image] = STATE(1116), - [sym__image_description] = STATE(1403), - [sym__link] = STATE(1116), - [sym_full_reference_link] = STATE(1116), - [sym_collapsed_reference_link] = STATE(1116), - [sym_inline_link] = STATE(1116), - [sym_link_text] = STATE(1404), - [sym__comment_with_spaces] = STATE(1116), - [sym_span] = STATE(1116), - [sym_raw_inline] = STATE(1116), - [sym_math] = STATE(1116), - [sym_verbatim] = STATE(1116), - [sym__todo_highlights] = STATE(1116), - [sym_todo] = STATE(1116), - [sym_note] = STATE(1116), - [sym__symbol_fallback] = STATE(1116), - [aux_sym__text] = STATE(781), - [aux_sym_table_cell_repeat1] = STATE(308), - [anon_sym_LBRACK] = ACTIONS(2549), - [anon_sym_PIPE] = ACTIONS(2551), - [sym_table_cell_alignment] = ACTIONS(2601), - [anon_sym_LBRACE] = ACTIONS(2553), - [sym__whitespace1] = ACTIONS(2555), - [anon_sym_BSLASH] = ACTIONS(2557), - [sym_quotation_marks] = ACTIONS(2551), - [sym_ellipsis] = ACTIONS(2551), - [sym_em_dash] = ACTIONS(2553), - [sym_en_dash] = ACTIONS(2553), - [sym_backslash_escape] = ACTIONS(2553), - [anon_sym_LT] = ACTIONS(2559), - [anon_sym_LBRACE_] = ACTIONS(2561), - [anon_sym__] = ACTIONS(2563), - [anon_sym_LBRACE_STAR] = ACTIONS(2565), - [anon_sym_STAR] = ACTIONS(2567), - [anon_sym_LBRACE_EQ] = ACTIONS(2569), - [anon_sym_LBRACE_PLUS] = ACTIONS(2571), - [anon_sym_LBRACE_DASH] = ACTIONS(2573), - [sym_symbol] = ACTIONS(2553), - [anon_sym_LBRACE_CARET] = ACTIONS(2575), - [anon_sym_CARET] = ACTIONS(2575), - [anon_sym_LBRACE_TILDE] = ACTIONS(2577), - [anon_sym_TILDE] = ACTIONS(2577), - [anon_sym_LBRACK_CARET] = ACTIONS(2579), - [anon_sym_BANG_LBRACK] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(2583), - [anon_sym_TODO] = ACTIONS(2585), - [anon_sym_WIP] = ACTIONS(2585), - [anon_sym_NOTE] = ACTIONS(2587), - [anon_sym_INFO] = ACTIONS(2587), - [anon_sym_XXX] = ACTIONS(2587), - [sym_fixme] = ACTIONS(2551), - [aux_sym__text_token1] = ACTIONS(2589), - [sym__verbatim_begin] = ACTIONS(2593), - }, - [250] = { - [sym_table_cell] = STATE(2192), - [sym__inline_element_with_whitespace_without_newline] = STATE(308), - [sym__inline_core_element] = STATE(308), - [sym__hard_line_break] = STATE(1116), - [sym_hard_line_break] = STATE(711), - [sym__smart_punctuation] = STATE(1116), - [sym_autolink] = STATE(1116), - [sym_emphasis] = STATE(1116), - [sym_emphasis_begin] = STATE(271), - [sym_strong] = STATE(1116), - [sym_strong_begin] = STATE(293), - [sym_highlighted] = STATE(1116), - [sym_insert] = STATE(1116), - [sym_delete] = STATE(1116), - [sym_superscript] = STATE(1116), - [sym_subscript] = STATE(1116), - [sym_footnote_reference] = STATE(1116), - [sym__image] = STATE(1116), - [sym_full_reference_image] = STATE(1116), - [sym_collapsed_reference_image] = STATE(1116), - [sym_inline_image] = STATE(1116), - [sym__image_description] = STATE(1403), - [sym__link] = STATE(1116), - [sym_full_reference_link] = STATE(1116), - [sym_collapsed_reference_link] = STATE(1116), - [sym_inline_link] = STATE(1116), - [sym_link_text] = STATE(1404), - [sym__comment_with_spaces] = STATE(1116), - [sym_span] = STATE(1116), - [sym_raw_inline] = STATE(1116), - [sym_math] = STATE(1116), - [sym_verbatim] = STATE(1116), - [sym__todo_highlights] = STATE(1116), - [sym_todo] = STATE(1116), - [sym_note] = STATE(1116), - [sym__symbol_fallback] = STATE(1116), - [aux_sym__text] = STATE(781), - [aux_sym_table_cell_repeat1] = STATE(308), - [anon_sym_LBRACK] = ACTIONS(2549), - [anon_sym_PIPE] = ACTIONS(2551), - [anon_sym_LBRACE] = ACTIONS(2553), - [sym__whitespace1] = ACTIONS(2555), - [anon_sym_BSLASH] = ACTIONS(2557), - [sym_quotation_marks] = ACTIONS(2551), - [sym_ellipsis] = ACTIONS(2551), - [sym_em_dash] = ACTIONS(2551), - [sym_en_dash] = ACTIONS(2553), - [sym_backslash_escape] = ACTIONS(2553), - [anon_sym_LT] = ACTIONS(2559), - [anon_sym_LBRACE_] = ACTIONS(2561), - [anon_sym__] = ACTIONS(2563), - [anon_sym_LBRACE_STAR] = ACTIONS(2565), - [anon_sym_STAR] = ACTIONS(2567), - [anon_sym_LBRACE_EQ] = ACTIONS(2569), - [anon_sym_LBRACE_PLUS] = ACTIONS(2571), - [anon_sym_LBRACE_DASH] = ACTIONS(2573), - [sym_symbol] = ACTIONS(2551), - [anon_sym_LBRACE_CARET] = ACTIONS(2575), - [anon_sym_CARET] = ACTIONS(2575), - [anon_sym_LBRACE_TILDE] = ACTIONS(2577), - [anon_sym_TILDE] = ACTIONS(2577), - [anon_sym_LBRACK_CARET] = ACTIONS(2579), - [anon_sym_BANG_LBRACK] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(2583), - [anon_sym_TODO] = ACTIONS(2585), - [anon_sym_WIP] = ACTIONS(2585), - [anon_sym_NOTE] = ACTIONS(2587), - [anon_sym_INFO] = ACTIONS(2587), - [anon_sym_XXX] = ACTIONS(2587), - [sym_fixme] = ACTIONS(2551), - [aux_sym__text_token1] = ACTIONS(2589), - [sym__newline] = ACTIONS(2603), - [sym__verbatim_begin] = ACTIONS(2593), - }, - [251] = { - [sym_table_cell] = STATE(2192), - [sym__inline_element_with_whitespace_without_newline] = STATE(308), - [sym__inline_core_element] = STATE(308), - [sym__hard_line_break] = STATE(1116), - [sym_hard_line_break] = STATE(711), - [sym__smart_punctuation] = STATE(1116), - [sym_autolink] = STATE(1116), - [sym_emphasis] = STATE(1116), - [sym_emphasis_begin] = STATE(271), - [sym_strong] = STATE(1116), - [sym_strong_begin] = STATE(293), - [sym_highlighted] = STATE(1116), - [sym_insert] = STATE(1116), - [sym_delete] = STATE(1116), - [sym_superscript] = STATE(1116), - [sym_subscript] = STATE(1116), - [sym_footnote_reference] = STATE(1116), - [sym__image] = STATE(1116), - [sym_full_reference_image] = STATE(1116), - [sym_collapsed_reference_image] = STATE(1116), - [sym_inline_image] = STATE(1116), - [sym__image_description] = STATE(1403), - [sym__link] = STATE(1116), - [sym_full_reference_link] = STATE(1116), - [sym_collapsed_reference_link] = STATE(1116), - [sym_inline_link] = STATE(1116), - [sym_link_text] = STATE(1404), - [sym__comment_with_spaces] = STATE(1116), - [sym_span] = STATE(1116), - [sym_raw_inline] = STATE(1116), - [sym_math] = STATE(1116), - [sym_verbatim] = STATE(1116), - [sym__todo_highlights] = STATE(1116), - [sym_todo] = STATE(1116), - [sym_note] = STATE(1116), - [sym__symbol_fallback] = STATE(1116), - [aux_sym__text] = STATE(781), - [aux_sym_table_cell_repeat1] = STATE(308), - [anon_sym_LBRACK] = ACTIONS(2549), - [anon_sym_PIPE] = ACTIONS(2551), - [anon_sym_LBRACE] = ACTIONS(2553), - [sym__whitespace1] = ACTIONS(2555), - [anon_sym_BSLASH] = ACTIONS(2557), - [sym_quotation_marks] = ACTIONS(2551), - [sym_ellipsis] = ACTIONS(2551), - [sym_em_dash] = ACTIONS(2551), - [sym_en_dash] = ACTIONS(2553), - [sym_backslash_escape] = ACTIONS(2553), - [anon_sym_LT] = ACTIONS(2559), - [anon_sym_LBRACE_] = ACTIONS(2561), - [anon_sym__] = ACTIONS(2563), - [anon_sym_LBRACE_STAR] = ACTIONS(2565), - [anon_sym_STAR] = ACTIONS(2567), - [anon_sym_LBRACE_EQ] = ACTIONS(2569), - [anon_sym_LBRACE_PLUS] = ACTIONS(2571), - [anon_sym_LBRACE_DASH] = ACTIONS(2573), - [sym_symbol] = ACTIONS(2551), - [anon_sym_LBRACE_CARET] = ACTIONS(2575), - [anon_sym_CARET] = ACTIONS(2575), - [anon_sym_LBRACE_TILDE] = ACTIONS(2577), - [anon_sym_TILDE] = ACTIONS(2577), - [anon_sym_LBRACK_CARET] = ACTIONS(2579), - [anon_sym_BANG_LBRACK] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(2583), - [anon_sym_TODO] = ACTIONS(2585), - [anon_sym_WIP] = ACTIONS(2585), - [anon_sym_NOTE] = ACTIONS(2587), - [anon_sym_INFO] = ACTIONS(2587), - [anon_sym_XXX] = ACTIONS(2587), - [sym_fixme] = ACTIONS(2551), - [aux_sym__text_token1] = ACTIONS(2589), - [sym__newline] = ACTIONS(2605), - [sym__verbatim_begin] = ACTIONS(2593), - }, - [252] = { - [sym_table_cell] = STATE(1839), - [sym__inline_element_with_whitespace_without_newline] = STATE(308), - [sym__inline_core_element] = STATE(308), - [sym__hard_line_break] = STATE(1116), - [sym_hard_line_break] = STATE(711), - [sym__smart_punctuation] = STATE(1116), - [sym_autolink] = STATE(1116), - [sym_emphasis] = STATE(1116), - [sym_emphasis_begin] = STATE(271), - [sym_strong] = STATE(1116), - [sym_strong_begin] = STATE(293), - [sym_highlighted] = STATE(1116), - [sym_insert] = STATE(1116), - [sym_delete] = STATE(1116), - [sym_superscript] = STATE(1116), - [sym_subscript] = STATE(1116), - [sym_footnote_reference] = STATE(1116), - [sym__image] = STATE(1116), - [sym_full_reference_image] = STATE(1116), - [sym_collapsed_reference_image] = STATE(1116), - [sym_inline_image] = STATE(1116), - [sym__image_description] = STATE(1403), - [sym__link] = STATE(1116), - [sym_full_reference_link] = STATE(1116), - [sym_collapsed_reference_link] = STATE(1116), - [sym_inline_link] = STATE(1116), - [sym_link_text] = STATE(1404), - [sym__comment_with_spaces] = STATE(1116), - [sym_span] = STATE(1116), - [sym_raw_inline] = STATE(1116), - [sym_math] = STATE(1116), - [sym_verbatim] = STATE(1116), - [sym__todo_highlights] = STATE(1116), - [sym_todo] = STATE(1116), - [sym_note] = STATE(1116), - [sym__symbol_fallback] = STATE(1116), - [aux_sym__text] = STATE(781), - [aux_sym_table_cell_repeat1] = STATE(308), - [anon_sym_LBRACK] = ACTIONS(2549), - [anon_sym_PIPE] = ACTIONS(2551), - [sym_table_cell_alignment] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(2553), - [sym__whitespace1] = ACTIONS(2555), - [anon_sym_BSLASH] = ACTIONS(2557), - [sym_quotation_marks] = ACTIONS(2551), - [sym_ellipsis] = ACTIONS(2551), - [sym_em_dash] = ACTIONS(2553), - [sym_en_dash] = ACTIONS(2553), - [sym_backslash_escape] = ACTIONS(2553), - [anon_sym_LT] = ACTIONS(2559), - [anon_sym_LBRACE_] = ACTIONS(2561), - [anon_sym__] = ACTIONS(2563), - [anon_sym_LBRACE_STAR] = ACTIONS(2565), - [anon_sym_STAR] = ACTIONS(2567), - [anon_sym_LBRACE_EQ] = ACTIONS(2569), - [anon_sym_LBRACE_PLUS] = ACTIONS(2571), - [anon_sym_LBRACE_DASH] = ACTIONS(2573), - [sym_symbol] = ACTIONS(2553), - [anon_sym_LBRACE_CARET] = ACTIONS(2575), - [anon_sym_CARET] = ACTIONS(2575), - [anon_sym_LBRACE_TILDE] = ACTIONS(2577), - [anon_sym_TILDE] = ACTIONS(2577), - [anon_sym_LBRACK_CARET] = ACTIONS(2579), - [anon_sym_BANG_LBRACK] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(2583), - [anon_sym_TODO] = ACTIONS(2585), - [anon_sym_WIP] = ACTIONS(2585), - [anon_sym_NOTE] = ACTIONS(2587), - [anon_sym_INFO] = ACTIONS(2587), - [anon_sym_XXX] = ACTIONS(2587), - [sym_fixme] = ACTIONS(2551), - [aux_sym__text_token1] = ACTIONS(2589), - [sym__verbatim_begin] = ACTIONS(2593), - }, - [253] = { - [sym_table_cell] = STATE(2192), - [sym__inline_element_with_whitespace_without_newline] = STATE(308), - [sym__inline_core_element] = STATE(308), - [sym__hard_line_break] = STATE(1116), - [sym_hard_line_break] = STATE(711), - [sym__smart_punctuation] = STATE(1116), - [sym_autolink] = STATE(1116), - [sym_emphasis] = STATE(1116), - [sym_emphasis_begin] = STATE(271), - [sym_strong] = STATE(1116), - [sym_strong_begin] = STATE(293), - [sym_highlighted] = STATE(1116), - [sym_insert] = STATE(1116), - [sym_delete] = STATE(1116), - [sym_superscript] = STATE(1116), - [sym_subscript] = STATE(1116), - [sym_footnote_reference] = STATE(1116), - [sym__image] = STATE(1116), - [sym_full_reference_image] = STATE(1116), - [sym_collapsed_reference_image] = STATE(1116), - [sym_inline_image] = STATE(1116), - [sym__image_description] = STATE(1403), - [sym__link] = STATE(1116), - [sym_full_reference_link] = STATE(1116), - [sym_collapsed_reference_link] = STATE(1116), - [sym_inline_link] = STATE(1116), - [sym_link_text] = STATE(1404), - [sym__comment_with_spaces] = STATE(1116), - [sym_span] = STATE(1116), - [sym_raw_inline] = STATE(1116), - [sym_math] = STATE(1116), - [sym_verbatim] = STATE(1116), - [sym__todo_highlights] = STATE(1116), - [sym_todo] = STATE(1116), - [sym_note] = STATE(1116), - [sym__symbol_fallback] = STATE(1116), - [aux_sym__text] = STATE(781), - [aux_sym_table_cell_repeat1] = STATE(308), - [anon_sym_LBRACK] = ACTIONS(2549), - [anon_sym_PIPE] = ACTIONS(2551), - [anon_sym_LBRACE] = ACTIONS(2553), - [sym__whitespace1] = ACTIONS(2555), - [anon_sym_BSLASH] = ACTIONS(2557), - [sym_quotation_marks] = ACTIONS(2551), - [sym_ellipsis] = ACTIONS(2551), - [sym_em_dash] = ACTIONS(2551), - [sym_en_dash] = ACTIONS(2553), - [sym_backslash_escape] = ACTIONS(2553), - [anon_sym_LT] = ACTIONS(2559), - [anon_sym_LBRACE_] = ACTIONS(2561), - [anon_sym__] = ACTIONS(2563), - [anon_sym_LBRACE_STAR] = ACTIONS(2565), - [anon_sym_STAR] = ACTIONS(2567), - [anon_sym_LBRACE_EQ] = ACTIONS(2569), - [anon_sym_LBRACE_PLUS] = ACTIONS(2571), - [anon_sym_LBRACE_DASH] = ACTIONS(2573), - [sym_symbol] = ACTIONS(2551), - [anon_sym_LBRACE_CARET] = ACTIONS(2575), - [anon_sym_CARET] = ACTIONS(2575), - [anon_sym_LBRACE_TILDE] = ACTIONS(2577), - [anon_sym_TILDE] = ACTIONS(2577), - [anon_sym_LBRACK_CARET] = ACTIONS(2579), - [anon_sym_BANG_LBRACK] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(2583), - [anon_sym_TODO] = ACTIONS(2585), - [anon_sym_WIP] = ACTIONS(2585), - [anon_sym_NOTE] = ACTIONS(2587), - [anon_sym_INFO] = ACTIONS(2587), - [anon_sym_XXX] = ACTIONS(2587), - [sym_fixme] = ACTIONS(2551), - [aux_sym__text_token1] = ACTIONS(2589), - [sym__newline] = ACTIONS(2607), - [sym__verbatim_begin] = ACTIONS(2593), - }, - [254] = { - [sym_table_cell] = STATE(2192), - [sym__inline_element_with_whitespace_without_newline] = STATE(308), - [sym__inline_core_element] = STATE(308), - [sym__hard_line_break] = STATE(1116), - [sym_hard_line_break] = STATE(711), - [sym__smart_punctuation] = STATE(1116), - [sym_autolink] = STATE(1116), - [sym_emphasis] = STATE(1116), - [sym_emphasis_begin] = STATE(271), - [sym_strong] = STATE(1116), - [sym_strong_begin] = STATE(293), - [sym_highlighted] = STATE(1116), - [sym_insert] = STATE(1116), - [sym_delete] = STATE(1116), - [sym_superscript] = STATE(1116), - [sym_subscript] = STATE(1116), - [sym_footnote_reference] = STATE(1116), - [sym__image] = STATE(1116), - [sym_full_reference_image] = STATE(1116), - [sym_collapsed_reference_image] = STATE(1116), - [sym_inline_image] = STATE(1116), - [sym__image_description] = STATE(1403), - [sym__link] = STATE(1116), - [sym_full_reference_link] = STATE(1116), - [sym_collapsed_reference_link] = STATE(1116), - [sym_inline_link] = STATE(1116), - [sym_link_text] = STATE(1404), - [sym__comment_with_spaces] = STATE(1116), - [sym_span] = STATE(1116), - [sym_raw_inline] = STATE(1116), - [sym_math] = STATE(1116), - [sym_verbatim] = STATE(1116), - [sym__todo_highlights] = STATE(1116), - [sym_todo] = STATE(1116), - [sym_note] = STATE(1116), - [sym__symbol_fallback] = STATE(1116), - [aux_sym__text] = STATE(781), - [aux_sym_table_cell_repeat1] = STATE(308), - [anon_sym_LBRACK] = ACTIONS(2549), - [anon_sym_PIPE] = ACTIONS(2551), - [anon_sym_LBRACE] = ACTIONS(2553), - [sym__whitespace1] = ACTIONS(2555), - [anon_sym_BSLASH] = ACTIONS(2557), - [sym_quotation_marks] = ACTIONS(2551), - [sym_ellipsis] = ACTIONS(2551), - [sym_em_dash] = ACTIONS(2551), - [sym_en_dash] = ACTIONS(2553), - [sym_backslash_escape] = ACTIONS(2553), - [anon_sym_LT] = ACTIONS(2559), - [anon_sym_LBRACE_] = ACTIONS(2561), - [anon_sym__] = ACTIONS(2563), - [anon_sym_LBRACE_STAR] = ACTIONS(2565), - [anon_sym_STAR] = ACTIONS(2567), - [anon_sym_LBRACE_EQ] = ACTIONS(2569), - [anon_sym_LBRACE_PLUS] = ACTIONS(2571), - [anon_sym_LBRACE_DASH] = ACTIONS(2573), - [sym_symbol] = ACTIONS(2551), - [anon_sym_LBRACE_CARET] = ACTIONS(2575), - [anon_sym_CARET] = ACTIONS(2575), - [anon_sym_LBRACE_TILDE] = ACTIONS(2577), - [anon_sym_TILDE] = ACTIONS(2577), - [anon_sym_LBRACK_CARET] = ACTIONS(2579), - [anon_sym_BANG_LBRACK] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(2583), - [anon_sym_TODO] = ACTIONS(2585), - [anon_sym_WIP] = ACTIONS(2585), - [anon_sym_NOTE] = ACTIONS(2587), - [anon_sym_INFO] = ACTIONS(2587), - [anon_sym_XXX] = ACTIONS(2587), - [sym_fixme] = ACTIONS(2551), - [aux_sym__text_token1] = ACTIONS(2589), - [sym__newline] = ACTIONS(2609), - [sym__verbatim_begin] = ACTIONS(2593), - }, - [255] = { - [sym_table_cell] = STATE(2192), - [sym__inline_element_with_whitespace_without_newline] = STATE(308), - [sym__inline_core_element] = STATE(308), - [sym__hard_line_break] = STATE(1116), - [sym_hard_line_break] = STATE(711), - [sym__smart_punctuation] = STATE(1116), - [sym_autolink] = STATE(1116), - [sym_emphasis] = STATE(1116), - [sym_emphasis_begin] = STATE(271), - [sym_strong] = STATE(1116), - [sym_strong_begin] = STATE(293), - [sym_highlighted] = STATE(1116), - [sym_insert] = STATE(1116), - [sym_delete] = STATE(1116), - [sym_superscript] = STATE(1116), - [sym_subscript] = STATE(1116), - [sym_footnote_reference] = STATE(1116), - [sym__image] = STATE(1116), - [sym_full_reference_image] = STATE(1116), - [sym_collapsed_reference_image] = STATE(1116), - [sym_inline_image] = STATE(1116), - [sym__image_description] = STATE(1403), - [sym__link] = STATE(1116), - [sym_full_reference_link] = STATE(1116), - [sym_collapsed_reference_link] = STATE(1116), - [sym_inline_link] = STATE(1116), - [sym_link_text] = STATE(1404), - [sym__comment_with_spaces] = STATE(1116), - [sym_span] = STATE(1116), - [sym_raw_inline] = STATE(1116), - [sym_math] = STATE(1116), - [sym_verbatim] = STATE(1116), - [sym__todo_highlights] = STATE(1116), - [sym_todo] = STATE(1116), - [sym_note] = STATE(1116), - [sym__symbol_fallback] = STATE(1116), - [aux_sym__text] = STATE(781), - [aux_sym_table_cell_repeat1] = STATE(308), - [anon_sym_LBRACK] = ACTIONS(2549), - [anon_sym_PIPE] = ACTIONS(2551), - [anon_sym_LBRACE] = ACTIONS(2553), - [sym__whitespace1] = ACTIONS(2555), - [anon_sym_BSLASH] = ACTIONS(2557), - [sym_quotation_marks] = ACTIONS(2551), - [sym_ellipsis] = ACTIONS(2551), - [sym_em_dash] = ACTIONS(2551), - [sym_en_dash] = ACTIONS(2553), - [sym_backslash_escape] = ACTIONS(2553), - [anon_sym_LT] = ACTIONS(2559), - [anon_sym_LBRACE_] = ACTIONS(2561), - [anon_sym__] = ACTIONS(2563), - [anon_sym_LBRACE_STAR] = ACTIONS(2565), - [anon_sym_STAR] = ACTIONS(2567), - [anon_sym_LBRACE_EQ] = ACTIONS(2569), - [anon_sym_LBRACE_PLUS] = ACTIONS(2571), - [anon_sym_LBRACE_DASH] = ACTIONS(2573), - [sym_symbol] = ACTIONS(2551), - [anon_sym_LBRACE_CARET] = ACTIONS(2575), - [anon_sym_CARET] = ACTIONS(2575), - [anon_sym_LBRACE_TILDE] = ACTIONS(2577), - [anon_sym_TILDE] = ACTIONS(2577), - [anon_sym_LBRACK_CARET] = ACTIONS(2579), - [anon_sym_BANG_LBRACK] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(2583), - [anon_sym_TODO] = ACTIONS(2585), - [anon_sym_WIP] = ACTIONS(2585), - [anon_sym_NOTE] = ACTIONS(2587), - [anon_sym_INFO] = ACTIONS(2587), - [anon_sym_XXX] = ACTIONS(2587), - [sym_fixme] = ACTIONS(2551), - [aux_sym__text_token1] = ACTIONS(2589), - [sym__newline] = ACTIONS(2611), - [sym__verbatim_begin] = ACTIONS(2593), - }, - [256] = { - [sym_table_cell] = STATE(1811), - [sym__inline_element_with_whitespace_without_newline] = STATE(308), - [sym__inline_core_element] = STATE(308), - [sym__hard_line_break] = STATE(1116), - [sym_hard_line_break] = STATE(711), - [sym__smart_punctuation] = STATE(1116), - [sym_autolink] = STATE(1116), - [sym_emphasis] = STATE(1116), - [sym_emphasis_begin] = STATE(271), - [sym_strong] = STATE(1116), - [sym_strong_begin] = STATE(293), - [sym_highlighted] = STATE(1116), - [sym_insert] = STATE(1116), - [sym_delete] = STATE(1116), - [sym_superscript] = STATE(1116), - [sym_subscript] = STATE(1116), - [sym_footnote_reference] = STATE(1116), - [sym__image] = STATE(1116), - [sym_full_reference_image] = STATE(1116), - [sym_collapsed_reference_image] = STATE(1116), - [sym_inline_image] = STATE(1116), - [sym__image_description] = STATE(1403), - [sym__link] = STATE(1116), - [sym_full_reference_link] = STATE(1116), - [sym_collapsed_reference_link] = STATE(1116), - [sym_inline_link] = STATE(1116), - [sym_link_text] = STATE(1404), - [sym__comment_with_spaces] = STATE(1116), - [sym_span] = STATE(1116), - [sym_raw_inline] = STATE(1116), - [sym_math] = STATE(1116), - [sym_verbatim] = STATE(1116), - [sym__todo_highlights] = STATE(1116), - [sym_todo] = STATE(1116), - [sym_note] = STATE(1116), - [sym__symbol_fallback] = STATE(1116), - [aux_sym__text] = STATE(781), - [aux_sym_table_cell_repeat1] = STATE(308), - [anon_sym_LBRACK] = ACTIONS(2549), - [anon_sym_PIPE] = ACTIONS(2551), - [sym_table_cell_alignment] = ACTIONS(1476), - [anon_sym_LBRACE] = ACTIONS(2553), - [sym__whitespace1] = ACTIONS(2555), - [anon_sym_BSLASH] = ACTIONS(2557), - [sym_quotation_marks] = ACTIONS(2551), - [sym_ellipsis] = ACTIONS(2551), - [sym_em_dash] = ACTIONS(2553), - [sym_en_dash] = ACTIONS(2553), - [sym_backslash_escape] = ACTIONS(2553), - [anon_sym_LT] = ACTIONS(2559), - [anon_sym_LBRACE_] = ACTIONS(2561), - [anon_sym__] = ACTIONS(2563), - [anon_sym_LBRACE_STAR] = ACTIONS(2565), - [anon_sym_STAR] = ACTIONS(2567), - [anon_sym_LBRACE_EQ] = ACTIONS(2569), - [anon_sym_LBRACE_PLUS] = ACTIONS(2571), - [anon_sym_LBRACE_DASH] = ACTIONS(2573), - [sym_symbol] = ACTIONS(2553), - [anon_sym_LBRACE_CARET] = ACTIONS(2575), - [anon_sym_CARET] = ACTIONS(2575), - [anon_sym_LBRACE_TILDE] = ACTIONS(2577), - [anon_sym_TILDE] = ACTIONS(2577), - [anon_sym_LBRACK_CARET] = ACTIONS(2579), - [anon_sym_BANG_LBRACK] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(2583), - [anon_sym_TODO] = ACTIONS(2585), - [anon_sym_WIP] = ACTIONS(2585), - [anon_sym_NOTE] = ACTIONS(2587), - [anon_sym_INFO] = ACTIONS(2587), - [anon_sym_XXX] = ACTIONS(2587), - [sym_fixme] = ACTIONS(2551), - [aux_sym__text_token1] = ACTIONS(2589), - [sym__verbatim_begin] = ACTIONS(2593), - }, - [257] = { - [sym_table_cell] = STATE(2192), - [sym__inline_element_with_whitespace_without_newline] = STATE(308), - [sym__inline_core_element] = STATE(308), - [sym__hard_line_break] = STATE(1116), - [sym_hard_line_break] = STATE(711), - [sym__smart_punctuation] = STATE(1116), - [sym_autolink] = STATE(1116), - [sym_emphasis] = STATE(1116), - [sym_emphasis_begin] = STATE(271), - [sym_strong] = STATE(1116), - [sym_strong_begin] = STATE(293), - [sym_highlighted] = STATE(1116), - [sym_insert] = STATE(1116), - [sym_delete] = STATE(1116), - [sym_superscript] = STATE(1116), - [sym_subscript] = STATE(1116), - [sym_footnote_reference] = STATE(1116), - [sym__image] = STATE(1116), - [sym_full_reference_image] = STATE(1116), - [sym_collapsed_reference_image] = STATE(1116), - [sym_inline_image] = STATE(1116), - [sym__image_description] = STATE(1403), - [sym__link] = STATE(1116), - [sym_full_reference_link] = STATE(1116), - [sym_collapsed_reference_link] = STATE(1116), - [sym_inline_link] = STATE(1116), - [sym_link_text] = STATE(1404), - [sym__comment_with_spaces] = STATE(1116), - [sym_span] = STATE(1116), - [sym_raw_inline] = STATE(1116), - [sym_math] = STATE(1116), - [sym_verbatim] = STATE(1116), - [sym__todo_highlights] = STATE(1116), - [sym_todo] = STATE(1116), - [sym_note] = STATE(1116), - [sym__symbol_fallback] = STATE(1116), - [aux_sym__text] = STATE(781), - [aux_sym_table_cell_repeat1] = STATE(308), - [anon_sym_LBRACK] = ACTIONS(2549), - [anon_sym_PIPE] = ACTIONS(2551), - [anon_sym_LBRACE] = ACTIONS(2553), - [sym__whitespace1] = ACTIONS(2555), - [anon_sym_BSLASH] = ACTIONS(2557), - [sym_quotation_marks] = ACTIONS(2551), - [sym_ellipsis] = ACTIONS(2551), - [sym_em_dash] = ACTIONS(2551), - [sym_en_dash] = ACTIONS(2553), - [sym_backslash_escape] = ACTIONS(2553), - [anon_sym_LT] = ACTIONS(2559), - [anon_sym_LBRACE_] = ACTIONS(2561), - [anon_sym__] = ACTIONS(2563), - [anon_sym_LBRACE_STAR] = ACTIONS(2565), - [anon_sym_STAR] = ACTIONS(2567), - [anon_sym_LBRACE_EQ] = ACTIONS(2569), - [anon_sym_LBRACE_PLUS] = ACTIONS(2571), - [anon_sym_LBRACE_DASH] = ACTIONS(2573), - [sym_symbol] = ACTIONS(2551), - [anon_sym_LBRACE_CARET] = ACTIONS(2575), - [anon_sym_CARET] = ACTIONS(2575), - [anon_sym_LBRACE_TILDE] = ACTIONS(2577), - [anon_sym_TILDE] = ACTIONS(2577), - [anon_sym_LBRACK_CARET] = ACTIONS(2579), - [anon_sym_BANG_LBRACK] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(2583), - [anon_sym_TODO] = ACTIONS(2585), - [anon_sym_WIP] = ACTIONS(2585), - [anon_sym_NOTE] = ACTIONS(2587), - [anon_sym_INFO] = ACTIONS(2587), - [anon_sym_XXX] = ACTIONS(2587), - [sym_fixme] = ACTIONS(2551), - [aux_sym__text_token1] = ACTIONS(2589), - [sym__newline] = ACTIONS(2613), - [sym__verbatim_begin] = ACTIONS(2593), - }, - [258] = { - [sym_table_cell] = STATE(2192), - [sym__inline_element_with_whitespace_without_newline] = STATE(308), - [sym__inline_core_element] = STATE(308), - [sym__hard_line_break] = STATE(1116), - [sym_hard_line_break] = STATE(711), - [sym__smart_punctuation] = STATE(1116), - [sym_autolink] = STATE(1116), - [sym_emphasis] = STATE(1116), - [sym_emphasis_begin] = STATE(271), - [sym_strong] = STATE(1116), - [sym_strong_begin] = STATE(293), - [sym_highlighted] = STATE(1116), - [sym_insert] = STATE(1116), - [sym_delete] = STATE(1116), - [sym_superscript] = STATE(1116), - [sym_subscript] = STATE(1116), - [sym_footnote_reference] = STATE(1116), - [sym__image] = STATE(1116), - [sym_full_reference_image] = STATE(1116), - [sym_collapsed_reference_image] = STATE(1116), - [sym_inline_image] = STATE(1116), - [sym__image_description] = STATE(1403), - [sym__link] = STATE(1116), - [sym_full_reference_link] = STATE(1116), - [sym_collapsed_reference_link] = STATE(1116), - [sym_inline_link] = STATE(1116), - [sym_link_text] = STATE(1404), - [sym__comment_with_spaces] = STATE(1116), - [sym_span] = STATE(1116), - [sym_raw_inline] = STATE(1116), - [sym_math] = STATE(1116), - [sym_verbatim] = STATE(1116), - [sym__todo_highlights] = STATE(1116), - [sym_todo] = STATE(1116), - [sym_note] = STATE(1116), - [sym__symbol_fallback] = STATE(1116), - [aux_sym__text] = STATE(781), - [aux_sym_table_cell_repeat1] = STATE(308), - [anon_sym_LBRACK] = ACTIONS(2549), - [anon_sym_PIPE] = ACTIONS(2551), - [anon_sym_LBRACE] = ACTIONS(2553), - [sym__whitespace1] = ACTIONS(2555), - [anon_sym_BSLASH] = ACTIONS(2557), - [sym_quotation_marks] = ACTIONS(2551), - [sym_ellipsis] = ACTIONS(2551), - [sym_em_dash] = ACTIONS(2551), - [sym_en_dash] = ACTIONS(2553), - [sym_backslash_escape] = ACTIONS(2553), - [anon_sym_LT] = ACTIONS(2559), - [anon_sym_LBRACE_] = ACTIONS(2561), - [anon_sym__] = ACTIONS(2563), - [anon_sym_LBRACE_STAR] = ACTIONS(2565), - [anon_sym_STAR] = ACTIONS(2567), - [anon_sym_LBRACE_EQ] = ACTIONS(2569), - [anon_sym_LBRACE_PLUS] = ACTIONS(2571), - [anon_sym_LBRACE_DASH] = ACTIONS(2573), - [sym_symbol] = ACTIONS(2551), - [anon_sym_LBRACE_CARET] = ACTIONS(2575), - [anon_sym_CARET] = ACTIONS(2575), - [anon_sym_LBRACE_TILDE] = ACTIONS(2577), - [anon_sym_TILDE] = ACTIONS(2577), - [anon_sym_LBRACK_CARET] = ACTIONS(2579), - [anon_sym_BANG_LBRACK] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(2583), - [anon_sym_TODO] = ACTIONS(2585), - [anon_sym_WIP] = ACTIONS(2585), - [anon_sym_NOTE] = ACTIONS(2587), - [anon_sym_INFO] = ACTIONS(2587), - [anon_sym_XXX] = ACTIONS(2587), - [sym_fixme] = ACTIONS(2551), - [aux_sym__text_token1] = ACTIONS(2589), - [sym__newline] = ACTIONS(2615), - [sym__verbatim_begin] = ACTIONS(2593), - }, - [259] = { - [sym_table_cell] = STATE(2192), - [sym__inline_element_with_whitespace_without_newline] = STATE(308), - [sym__inline_core_element] = STATE(308), - [sym__hard_line_break] = STATE(1116), - [sym_hard_line_break] = STATE(711), - [sym__smart_punctuation] = STATE(1116), - [sym_autolink] = STATE(1116), - [sym_emphasis] = STATE(1116), - [sym_emphasis_begin] = STATE(271), - [sym_strong] = STATE(1116), - [sym_strong_begin] = STATE(293), - [sym_highlighted] = STATE(1116), - [sym_insert] = STATE(1116), - [sym_delete] = STATE(1116), - [sym_superscript] = STATE(1116), - [sym_subscript] = STATE(1116), - [sym_footnote_reference] = STATE(1116), - [sym__image] = STATE(1116), - [sym_full_reference_image] = STATE(1116), - [sym_collapsed_reference_image] = STATE(1116), - [sym_inline_image] = STATE(1116), - [sym__image_description] = STATE(1403), - [sym__link] = STATE(1116), - [sym_full_reference_link] = STATE(1116), - [sym_collapsed_reference_link] = STATE(1116), - [sym_inline_link] = STATE(1116), - [sym_link_text] = STATE(1404), - [sym__comment_with_spaces] = STATE(1116), - [sym_span] = STATE(1116), - [sym_raw_inline] = STATE(1116), - [sym_math] = STATE(1116), - [sym_verbatim] = STATE(1116), - [sym__todo_highlights] = STATE(1116), - [sym_todo] = STATE(1116), - [sym_note] = STATE(1116), - [sym__symbol_fallback] = STATE(1116), - [aux_sym__text] = STATE(781), - [aux_sym_table_cell_repeat1] = STATE(308), - [anon_sym_LBRACK] = ACTIONS(2549), - [anon_sym_PIPE] = ACTIONS(2551), - [anon_sym_LBRACE] = ACTIONS(2553), - [sym__whitespace1] = ACTIONS(2555), - [anon_sym_BSLASH] = ACTIONS(2557), - [sym_quotation_marks] = ACTIONS(2551), - [sym_ellipsis] = ACTIONS(2551), - [sym_em_dash] = ACTIONS(2551), - [sym_en_dash] = ACTIONS(2553), - [sym_backslash_escape] = ACTIONS(2553), - [anon_sym_LT] = ACTIONS(2559), - [anon_sym_LBRACE_] = ACTIONS(2561), - [anon_sym__] = ACTIONS(2563), - [anon_sym_LBRACE_STAR] = ACTIONS(2565), - [anon_sym_STAR] = ACTIONS(2567), - [anon_sym_LBRACE_EQ] = ACTIONS(2569), - [anon_sym_LBRACE_PLUS] = ACTIONS(2571), - [anon_sym_LBRACE_DASH] = ACTIONS(2573), - [sym_symbol] = ACTIONS(2551), - [anon_sym_LBRACE_CARET] = ACTIONS(2575), - [anon_sym_CARET] = ACTIONS(2575), - [anon_sym_LBRACE_TILDE] = ACTIONS(2577), - [anon_sym_TILDE] = ACTIONS(2577), - [anon_sym_LBRACK_CARET] = ACTIONS(2579), - [anon_sym_BANG_LBRACK] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(2583), - [anon_sym_TODO] = ACTIONS(2585), - [anon_sym_WIP] = ACTIONS(2585), - [anon_sym_NOTE] = ACTIONS(2587), - [anon_sym_INFO] = ACTIONS(2587), - [anon_sym_XXX] = ACTIONS(2587), - [sym_fixme] = ACTIONS(2551), - [aux_sym__text_token1] = ACTIONS(2589), - [sym__newline] = ACTIONS(2617), - [sym__verbatim_begin] = ACTIONS(2593), - }, - [260] = { - [sym_table_cell] = STATE(2192), - [sym__inline_element_with_whitespace_without_newline] = STATE(308), - [sym__inline_core_element] = STATE(308), - [sym__hard_line_break] = STATE(1116), - [sym_hard_line_break] = STATE(711), - [sym__smart_punctuation] = STATE(1116), - [sym_autolink] = STATE(1116), - [sym_emphasis] = STATE(1116), - [sym_emphasis_begin] = STATE(271), - [sym_strong] = STATE(1116), - [sym_strong_begin] = STATE(293), - [sym_highlighted] = STATE(1116), - [sym_insert] = STATE(1116), - [sym_delete] = STATE(1116), - [sym_superscript] = STATE(1116), - [sym_subscript] = STATE(1116), - [sym_footnote_reference] = STATE(1116), - [sym__image] = STATE(1116), - [sym_full_reference_image] = STATE(1116), - [sym_collapsed_reference_image] = STATE(1116), - [sym_inline_image] = STATE(1116), - [sym__image_description] = STATE(1403), - [sym__link] = STATE(1116), - [sym_full_reference_link] = STATE(1116), - [sym_collapsed_reference_link] = STATE(1116), - [sym_inline_link] = STATE(1116), - [sym_link_text] = STATE(1404), - [sym__comment_with_spaces] = STATE(1116), - [sym_span] = STATE(1116), - [sym_raw_inline] = STATE(1116), - [sym_math] = STATE(1116), - [sym_verbatim] = STATE(1116), - [sym__todo_highlights] = STATE(1116), - [sym_todo] = STATE(1116), - [sym_note] = STATE(1116), - [sym__symbol_fallback] = STATE(1116), - [aux_sym__text] = STATE(781), - [aux_sym_table_cell_repeat1] = STATE(308), - [anon_sym_LBRACK] = ACTIONS(2549), - [anon_sym_PIPE] = ACTIONS(2551), - [anon_sym_LBRACE] = ACTIONS(2553), - [sym__whitespace1] = ACTIONS(2555), - [anon_sym_BSLASH] = ACTIONS(2557), - [sym_quotation_marks] = ACTIONS(2551), - [sym_ellipsis] = ACTIONS(2551), - [sym_em_dash] = ACTIONS(2551), - [sym_en_dash] = ACTIONS(2553), - [sym_backslash_escape] = ACTIONS(2553), - [anon_sym_LT] = ACTIONS(2559), - [anon_sym_LBRACE_] = ACTIONS(2561), - [anon_sym__] = ACTIONS(2563), - [anon_sym_LBRACE_STAR] = ACTIONS(2565), - [anon_sym_STAR] = ACTIONS(2567), - [anon_sym_LBRACE_EQ] = ACTIONS(2569), - [anon_sym_LBRACE_PLUS] = ACTIONS(2571), - [anon_sym_LBRACE_DASH] = ACTIONS(2573), - [sym_symbol] = ACTIONS(2551), - [anon_sym_LBRACE_CARET] = ACTIONS(2575), - [anon_sym_CARET] = ACTIONS(2575), - [anon_sym_LBRACE_TILDE] = ACTIONS(2577), - [anon_sym_TILDE] = ACTIONS(2577), - [anon_sym_LBRACK_CARET] = ACTIONS(2579), - [anon_sym_BANG_LBRACK] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(2583), - [anon_sym_TODO] = ACTIONS(2585), - [anon_sym_WIP] = ACTIONS(2585), - [anon_sym_NOTE] = ACTIONS(2587), - [anon_sym_INFO] = ACTIONS(2587), - [anon_sym_XXX] = ACTIONS(2587), - [sym_fixme] = ACTIONS(2551), - [aux_sym__text_token1] = ACTIONS(2589), - [sym__newline] = ACTIONS(2619), - [sym__verbatim_begin] = ACTIONS(2593), - }, - [261] = { - [sym_table_cell] = STATE(1788), - [sym__inline_element_with_whitespace_without_newline] = STATE(308), - [sym__inline_core_element] = STATE(308), - [sym__hard_line_break] = STATE(1116), - [sym_hard_line_break] = STATE(711), - [sym__smart_punctuation] = STATE(1116), - [sym_autolink] = STATE(1116), - [sym_emphasis] = STATE(1116), - [sym_emphasis_begin] = STATE(271), - [sym_strong] = STATE(1116), - [sym_strong_begin] = STATE(293), - [sym_highlighted] = STATE(1116), - [sym_insert] = STATE(1116), - [sym_delete] = STATE(1116), - [sym_superscript] = STATE(1116), - [sym_subscript] = STATE(1116), - [sym_footnote_reference] = STATE(1116), - [sym__image] = STATE(1116), - [sym_full_reference_image] = STATE(1116), - [sym_collapsed_reference_image] = STATE(1116), - [sym_inline_image] = STATE(1116), - [sym__image_description] = STATE(1403), - [sym__link] = STATE(1116), - [sym_full_reference_link] = STATE(1116), - [sym_collapsed_reference_link] = STATE(1116), - [sym_inline_link] = STATE(1116), - [sym_link_text] = STATE(1404), - [sym__comment_with_spaces] = STATE(1116), - [sym_span] = STATE(1116), - [sym_raw_inline] = STATE(1116), - [sym_math] = STATE(1116), - [sym_verbatim] = STATE(1116), - [sym__todo_highlights] = STATE(1116), - [sym_todo] = STATE(1116), - [sym_note] = STATE(1116), - [sym__symbol_fallback] = STATE(1116), - [aux_sym__text] = STATE(781), - [aux_sym_table_cell_repeat1] = STATE(308), - [anon_sym_LBRACK] = ACTIONS(2549), - [anon_sym_PIPE] = ACTIONS(2551), - [sym_table_cell_alignment] = ACTIONS(1480), - [anon_sym_LBRACE] = ACTIONS(2553), - [sym__whitespace1] = ACTIONS(2555), - [anon_sym_BSLASH] = ACTIONS(2557), - [sym_quotation_marks] = ACTIONS(2551), - [sym_ellipsis] = ACTIONS(2551), - [sym_em_dash] = ACTIONS(2553), - [sym_en_dash] = ACTIONS(2553), - [sym_backslash_escape] = ACTIONS(2553), - [anon_sym_LT] = ACTIONS(2559), - [anon_sym_LBRACE_] = ACTIONS(2561), - [anon_sym__] = ACTIONS(2563), - [anon_sym_LBRACE_STAR] = ACTIONS(2565), - [anon_sym_STAR] = ACTIONS(2567), - [anon_sym_LBRACE_EQ] = ACTIONS(2569), - [anon_sym_LBRACE_PLUS] = ACTIONS(2571), - [anon_sym_LBRACE_DASH] = ACTIONS(2573), - [sym_symbol] = ACTIONS(2553), - [anon_sym_LBRACE_CARET] = ACTIONS(2575), - [anon_sym_CARET] = ACTIONS(2575), - [anon_sym_LBRACE_TILDE] = ACTIONS(2577), - [anon_sym_TILDE] = ACTIONS(2577), - [anon_sym_LBRACK_CARET] = ACTIONS(2579), - [anon_sym_BANG_LBRACK] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(2583), - [anon_sym_TODO] = ACTIONS(2585), - [anon_sym_WIP] = ACTIONS(2585), - [anon_sym_NOTE] = ACTIONS(2587), - [anon_sym_INFO] = ACTIONS(2587), - [anon_sym_XXX] = ACTIONS(2587), - [sym_fixme] = ACTIONS(2551), - [aux_sym__text_token1] = ACTIONS(2589), - [sym__verbatim_begin] = ACTIONS(2593), - }, - [262] = { - [sym__inline_element_with_whitespace] = STATE(262), - [sym__inline_element_with_newline] = STATE(262), - [sym__inline_core_element] = STATE(262), - [sym__hard_line_break] = STATE(1013), - [sym_hard_line_break] = STATE(607), - [sym__smart_punctuation] = STATE(1013), - [sym_autolink] = STATE(1013), - [sym_emphasis] = STATE(1013), - [sym_emphasis_begin] = STATE(289), - [sym_strong] = STATE(1013), - [sym_strong_begin] = STATE(294), - [sym_highlighted] = STATE(1013), - [sym_insert] = STATE(1013), - [sym_delete] = STATE(1013), - [sym_superscript] = STATE(1013), - [sym_subscript] = STATE(1013), - [sym_footnote_reference] = STATE(1013), - [sym__image] = STATE(1013), - [sym_full_reference_image] = STATE(1013), - [sym_collapsed_reference_image] = STATE(1013), - [sym_inline_image] = STATE(1013), - [sym__image_description] = STATE(1416), - [sym__link] = STATE(1013), - [sym_full_reference_link] = STATE(1013), - [sym_collapsed_reference_link] = STATE(1013), - [sym_inline_link] = STATE(1013), - [sym_link_text] = STATE(1417), - [sym__comment_with_spaces] = STATE(1013), - [sym_span] = STATE(1013), - [sym_raw_inline] = STATE(1013), - [sym_math] = STATE(1013), - [sym_verbatim] = STATE(1013), - [sym__todo_highlights] = STATE(1013), - [sym_todo] = STATE(1013), - [sym_note] = STATE(1013), - [sym__symbol_fallback] = STATE(1013), - [aux_sym__text] = STATE(708), - [aux_sym__inline_repeat1] = STATE(262), - [anon_sym_LBRACK] = ACTIONS(2621), - [anon_sym_PIPE] = ACTIONS(2624), - [anon_sym_LBRACE] = ACTIONS(2627), - [sym__whitespace1] = ACTIONS(2630), - [anon_sym_BSLASH] = ACTIONS(2633), - [sym_quotation_marks] = ACTIONS(2624), - [sym_ellipsis] = ACTIONS(2624), - [sym_em_dash] = ACTIONS(2624), - [sym_en_dash] = ACTIONS(2627), - [sym_backslash_escape] = ACTIONS(2627), - [anon_sym_LT] = ACTIONS(2636), - [anon_sym_LBRACE_] = ACTIONS(2639), - [anon_sym__] = ACTIONS(2642), - [anon_sym_LBRACE_STAR] = ACTIONS(2645), - [anon_sym_STAR] = ACTIONS(2648), - [anon_sym_LBRACE_EQ] = ACTIONS(2651), - [anon_sym_LBRACE_PLUS] = ACTIONS(2654), - [anon_sym_LBRACE_DASH] = ACTIONS(2657), - [sym_symbol] = ACTIONS(2624), - [anon_sym_LBRACE_CARET] = ACTIONS(2660), - [anon_sym_CARET] = ACTIONS(2660), - [anon_sym_LBRACE_TILDE] = ACTIONS(2663), - [anon_sym_TILDE] = ACTIONS(2663), - [anon_sym_LBRACK_CARET] = ACTIONS(2666), - [anon_sym_BANG_LBRACK] = ACTIONS(2669), - [anon_sym_DOLLAR] = ACTIONS(2672), - [anon_sym_TODO] = ACTIONS(2675), - [anon_sym_WIP] = ACTIONS(2675), - [anon_sym_NOTE] = ACTIONS(2678), - [anon_sym_INFO] = ACTIONS(2678), - [anon_sym_XXX] = ACTIONS(2678), - [sym_fixme] = ACTIONS(2624), - [aux_sym__text_token1] = ACTIONS(2681), - [sym__newline_inline] = ACTIONS(2684), - [sym__verbatim_begin] = ACTIONS(2687), - }, - [263] = { - [sym_table_cell] = STATE(1776), - [sym__inline_element_with_whitespace_without_newline] = STATE(308), - [sym__inline_core_element] = STATE(308), - [sym__hard_line_break] = STATE(1116), - [sym_hard_line_break] = STATE(711), - [sym__smart_punctuation] = STATE(1116), - [sym_autolink] = STATE(1116), - [sym_emphasis] = STATE(1116), - [sym_emphasis_begin] = STATE(271), - [sym_strong] = STATE(1116), - [sym_strong_begin] = STATE(293), - [sym_highlighted] = STATE(1116), - [sym_insert] = STATE(1116), - [sym_delete] = STATE(1116), - [sym_superscript] = STATE(1116), - [sym_subscript] = STATE(1116), - [sym_footnote_reference] = STATE(1116), - [sym__image] = STATE(1116), - [sym_full_reference_image] = STATE(1116), - [sym_collapsed_reference_image] = STATE(1116), - [sym_inline_image] = STATE(1116), - [sym__image_description] = STATE(1403), - [sym__link] = STATE(1116), - [sym_full_reference_link] = STATE(1116), - [sym_collapsed_reference_link] = STATE(1116), - [sym_inline_link] = STATE(1116), - [sym_link_text] = STATE(1404), - [sym__comment_with_spaces] = STATE(1116), - [sym_span] = STATE(1116), - [sym_raw_inline] = STATE(1116), - [sym_math] = STATE(1116), - [sym_verbatim] = STATE(1116), - [sym__todo_highlights] = STATE(1116), - [sym_todo] = STATE(1116), - [sym_note] = STATE(1116), - [sym__symbol_fallback] = STATE(1116), - [aux_sym__text] = STATE(781), - [aux_sym_table_cell_repeat1] = STATE(308), - [anon_sym_LBRACK] = ACTIONS(2549), - [anon_sym_PIPE] = ACTIONS(2551), - [sym_table_cell_alignment] = ACTIONS(2690), - [anon_sym_LBRACE] = ACTIONS(2553), - [sym__whitespace1] = ACTIONS(2555), - [anon_sym_BSLASH] = ACTIONS(2557), - [sym_quotation_marks] = ACTIONS(2551), - [sym_ellipsis] = ACTIONS(2551), - [sym_em_dash] = ACTIONS(2553), - [sym_en_dash] = ACTIONS(2553), - [sym_backslash_escape] = ACTIONS(2553), - [anon_sym_LT] = ACTIONS(2559), - [anon_sym_LBRACE_] = ACTIONS(2561), - [anon_sym__] = ACTIONS(2563), - [anon_sym_LBRACE_STAR] = ACTIONS(2565), - [anon_sym_STAR] = ACTIONS(2567), - [anon_sym_LBRACE_EQ] = ACTIONS(2569), - [anon_sym_LBRACE_PLUS] = ACTIONS(2571), - [anon_sym_LBRACE_DASH] = ACTIONS(2573), - [sym_symbol] = ACTIONS(2553), - [anon_sym_LBRACE_CARET] = ACTIONS(2575), - [anon_sym_CARET] = ACTIONS(2575), - [anon_sym_LBRACE_TILDE] = ACTIONS(2577), - [anon_sym_TILDE] = ACTIONS(2577), - [anon_sym_LBRACK_CARET] = ACTIONS(2579), - [anon_sym_BANG_LBRACK] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(2583), - [anon_sym_TODO] = ACTIONS(2585), - [anon_sym_WIP] = ACTIONS(2585), - [anon_sym_NOTE] = ACTIONS(2587), - [anon_sym_INFO] = ACTIONS(2587), - [anon_sym_XXX] = ACTIONS(2587), - [sym_fixme] = ACTIONS(2551), - [aux_sym__text_token1] = ACTIONS(2589), - [sym__verbatim_begin] = ACTIONS(2593), - }, - [264] = { - [sym_table_cell] = STATE(2192), - [sym__inline_element_with_whitespace_without_newline] = STATE(308), - [sym__inline_core_element] = STATE(308), - [sym__hard_line_break] = STATE(1116), - [sym_hard_line_break] = STATE(711), - [sym__smart_punctuation] = STATE(1116), - [sym_autolink] = STATE(1116), - [sym_emphasis] = STATE(1116), - [sym_emphasis_begin] = STATE(271), - [sym_strong] = STATE(1116), - [sym_strong_begin] = STATE(293), - [sym_highlighted] = STATE(1116), - [sym_insert] = STATE(1116), - [sym_delete] = STATE(1116), - [sym_superscript] = STATE(1116), - [sym_subscript] = STATE(1116), - [sym_footnote_reference] = STATE(1116), - [sym__image] = STATE(1116), - [sym_full_reference_image] = STATE(1116), - [sym_collapsed_reference_image] = STATE(1116), - [sym_inline_image] = STATE(1116), - [sym__image_description] = STATE(1403), - [sym__link] = STATE(1116), - [sym_full_reference_link] = STATE(1116), - [sym_collapsed_reference_link] = STATE(1116), - [sym_inline_link] = STATE(1116), - [sym_link_text] = STATE(1404), - [sym__comment_with_spaces] = STATE(1116), - [sym_span] = STATE(1116), - [sym_raw_inline] = STATE(1116), - [sym_math] = STATE(1116), - [sym_verbatim] = STATE(1116), - [sym__todo_highlights] = STATE(1116), - [sym_todo] = STATE(1116), - [sym_note] = STATE(1116), - [sym__symbol_fallback] = STATE(1116), - [aux_sym__text] = STATE(781), - [aux_sym_table_cell_repeat1] = STATE(308), - [anon_sym_LBRACK] = ACTIONS(2549), - [anon_sym_PIPE] = ACTIONS(2551), - [anon_sym_LBRACE] = ACTIONS(2553), - [sym__whitespace1] = ACTIONS(2555), - [anon_sym_BSLASH] = ACTIONS(2557), - [sym_quotation_marks] = ACTIONS(2551), - [sym_ellipsis] = ACTIONS(2551), - [sym_em_dash] = ACTIONS(2551), - [sym_en_dash] = ACTIONS(2553), - [sym_backslash_escape] = ACTIONS(2553), - [anon_sym_LT] = ACTIONS(2559), - [anon_sym_LBRACE_] = ACTIONS(2561), - [anon_sym__] = ACTIONS(2563), - [anon_sym_LBRACE_STAR] = ACTIONS(2565), - [anon_sym_STAR] = ACTIONS(2567), - [anon_sym_LBRACE_EQ] = ACTIONS(2569), - [anon_sym_LBRACE_PLUS] = ACTIONS(2571), - [anon_sym_LBRACE_DASH] = ACTIONS(2573), - [sym_symbol] = ACTIONS(2551), - [anon_sym_LBRACE_CARET] = ACTIONS(2575), - [anon_sym_CARET] = ACTIONS(2575), - [anon_sym_LBRACE_TILDE] = ACTIONS(2577), - [anon_sym_TILDE] = ACTIONS(2577), - [anon_sym_LBRACK_CARET] = ACTIONS(2579), - [anon_sym_BANG_LBRACK] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(2583), - [anon_sym_TODO] = ACTIONS(2585), - [anon_sym_WIP] = ACTIONS(2585), - [anon_sym_NOTE] = ACTIONS(2587), - [anon_sym_INFO] = ACTIONS(2587), - [anon_sym_XXX] = ACTIONS(2587), - [sym_fixme] = ACTIONS(2551), - [aux_sym__text_token1] = ACTIONS(2589), - [sym__newline] = ACTIONS(2692), - [sym__verbatim_begin] = ACTIONS(2593), - }, - [265] = { - [sym__inline_element_with_whitespace] = STATE(262), - [sym__inline_element_with_newline] = STATE(1133), - [sym__inline_core_element] = STATE(1133), - [sym__hard_line_break] = STATE(703), - [sym_hard_line_break] = STATE(519), - [sym__smart_punctuation] = STATE(703), - [sym_autolink] = STATE(703), - [sym_emphasis] = STATE(703), - [sym_emphasis_begin] = STATE(277), - [sym_strong] = STATE(703), - [sym_strong_begin] = STATE(278), - [sym_highlighted] = STATE(703), - [sym_insert] = STATE(703), - [sym_delete] = STATE(703), - [sym_superscript] = STATE(703), - [sym_subscript] = STATE(703), - [sym_footnote_reference] = STATE(703), - [sym__image] = STATE(703), - [sym_full_reference_image] = STATE(703), - [sym_collapsed_reference_image] = STATE(703), - [sym_inline_image] = STATE(703), - [sym__image_description] = STATE(1424), - [sym__link] = STATE(703), - [sym_full_reference_link] = STATE(703), - [sym_collapsed_reference_link] = STATE(703), - [sym_inline_link] = STATE(703), - [sym_link_text] = STATE(1423), - [sym__comment_with_spaces] = STATE(703), - [sym_span] = STATE(703), - [sym_raw_inline] = STATE(703), - [sym_math] = STATE(703), - [sym_verbatim] = STATE(703), - [sym__todo_highlights] = STATE(703), - [sym_todo] = STATE(703), - [sym_note] = STATE(703), - [sym__symbol_fallback] = STATE(703), - [aux_sym__text] = STATE(608), - [aux_sym__inline_repeat1] = STATE(262), - [anon_sym_LBRACK] = ACTIONS(1675), - [anon_sym_PIPE] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(1679), - [sym__whitespace1] = ACTIONS(2694), - [anon_sym_BSLASH] = ACTIONS(1683), - [sym_quotation_marks] = ACTIONS(1677), - [sym_ellipsis] = ACTIONS(1677), - [sym_em_dash] = ACTIONS(1677), - [sym_en_dash] = ACTIONS(1679), - [sym_backslash_escape] = ACTIONS(1679), - [anon_sym_LT] = ACTIONS(1685), - [anon_sym_LBRACE_] = ACTIONS(1687), - [anon_sym__] = ACTIONS(2696), - [anon_sym_LBRACE_STAR] = ACTIONS(1692), - [anon_sym_STAR] = ACTIONS(1694), - [anon_sym_LBRACE_EQ] = ACTIONS(1696), - [anon_sym_LBRACE_PLUS] = ACTIONS(1698), - [anon_sym_LBRACE_DASH] = ACTIONS(1700), - [sym_symbol] = ACTIONS(1677), - [anon_sym_LBRACE_CARET] = ACTIONS(1702), - [anon_sym_CARET] = ACTIONS(1702), - [anon_sym_LBRACE_TILDE] = ACTIONS(1704), - [anon_sym_TILDE] = ACTIONS(1704), - [anon_sym_LBRACK_CARET] = ACTIONS(1706), - [anon_sym_BANG_LBRACK] = ACTIONS(1708), - [anon_sym_DOLLAR] = ACTIONS(1710), - [anon_sym_TODO] = ACTIONS(1712), - [anon_sym_WIP] = ACTIONS(1712), - [anon_sym_NOTE] = ACTIONS(1714), - [anon_sym_INFO] = ACTIONS(1714), - [anon_sym_XXX] = ACTIONS(1714), - [sym_fixme] = ACTIONS(1677), - [aux_sym__text_token1] = ACTIONS(1716), - [sym__newline_inline] = ACTIONS(1718), - [sym__verbatim_begin] = ACTIONS(1720), - }, - [266] = { - [sym__inline_element_with_whitespace] = STATE(262), - [sym__inline_element_with_newline] = STATE(1138), - [sym__inline_core_element] = STATE(1138), - [sym__hard_line_break] = STATE(712), - [sym_hard_line_break] = STATE(522), - [sym__smart_punctuation] = STATE(712), - [sym_autolink] = STATE(712), - [sym_emphasis] = STATE(712), - [sym_emphasis_begin] = STATE(279), - [sym_strong] = STATE(712), - [sym_strong_begin] = STATE(280), - [sym_highlighted] = STATE(712), - [sym_insert] = STATE(712), - [sym_delete] = STATE(712), - [sym_superscript] = STATE(712), - [sym_subscript] = STATE(712), - [sym_footnote_reference] = STATE(712), - [sym__image] = STATE(712), - [sym_full_reference_image] = STATE(712), - [sym_collapsed_reference_image] = STATE(712), - [sym_inline_image] = STATE(712), - [sym__image_description] = STATE(1421), - [sym__link] = STATE(712), - [sym_full_reference_link] = STATE(712), - [sym_collapsed_reference_link] = STATE(712), - [sym_inline_link] = STATE(712), - [sym_link_text] = STATE(1419), - [sym__comment_with_spaces] = STATE(712), - [sym_span] = STATE(712), - [sym_raw_inline] = STATE(712), - [sym_math] = STATE(712), - [sym_verbatim] = STATE(712), - [sym__todo_highlights] = STATE(712), - [sym_todo] = STATE(712), - [sym_note] = STATE(712), - [sym__symbol_fallback] = STATE(712), - [aux_sym__text] = STATE(543), - [aux_sym__inline_repeat1] = STATE(262), - [anon_sym_LBRACK] = ACTIONS(1623), - [anon_sym_PIPE] = ACTIONS(1625), - [anon_sym_LBRACE] = ACTIONS(1627), - [sym__whitespace1] = ACTIONS(2698), - [anon_sym_BSLASH] = ACTIONS(1631), - [sym_quotation_marks] = ACTIONS(1625), - [sym_ellipsis] = ACTIONS(1625), - [sym_em_dash] = ACTIONS(1625), - [sym_en_dash] = ACTIONS(1627), - [sym_backslash_escape] = ACTIONS(1627), - [anon_sym_LT] = ACTIONS(1633), - [anon_sym_LBRACE_] = ACTIONS(1635), - [anon_sym__] = ACTIONS(1637), - [anon_sym_LBRACE_STAR] = ACTIONS(1639), - [anon_sym_STAR] = ACTIONS(2700), - [anon_sym_LBRACE_EQ] = ACTIONS(1646), - [anon_sym_LBRACE_PLUS] = ACTIONS(1648), - [anon_sym_LBRACE_DASH] = ACTIONS(1650), - [sym_symbol] = ACTIONS(1625), - [anon_sym_LBRACE_CARET] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_LBRACE_TILDE] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1654), - [anon_sym_LBRACK_CARET] = ACTIONS(1656), - [anon_sym_BANG_LBRACK] = ACTIONS(1658), - [anon_sym_DOLLAR] = ACTIONS(1660), - [anon_sym_TODO] = ACTIONS(1662), - [anon_sym_WIP] = ACTIONS(1662), - [anon_sym_NOTE] = ACTIONS(1664), - [anon_sym_INFO] = ACTIONS(1664), - [anon_sym_XXX] = ACTIONS(1664), - [sym_fixme] = ACTIONS(1625), - [aux_sym__text_token1] = ACTIONS(1666), - [sym__newline_inline] = ACTIONS(1668), - [sym__verbatim_begin] = ACTIONS(1670), - }, - [267] = { - [sym_table_cell] = STATE(2192), - [sym__inline_element_with_whitespace_without_newline] = STATE(308), - [sym__inline_core_element] = STATE(308), - [sym__hard_line_break] = STATE(1116), - [sym_hard_line_break] = STATE(711), - [sym__smart_punctuation] = STATE(1116), - [sym_autolink] = STATE(1116), - [sym_emphasis] = STATE(1116), - [sym_emphasis_begin] = STATE(271), - [sym_strong] = STATE(1116), - [sym_strong_begin] = STATE(293), - [sym_highlighted] = STATE(1116), - [sym_insert] = STATE(1116), - [sym_delete] = STATE(1116), - [sym_superscript] = STATE(1116), - [sym_subscript] = STATE(1116), - [sym_footnote_reference] = STATE(1116), - [sym__image] = STATE(1116), - [sym_full_reference_image] = STATE(1116), - [sym_collapsed_reference_image] = STATE(1116), - [sym_inline_image] = STATE(1116), - [sym__image_description] = STATE(1403), - [sym__link] = STATE(1116), - [sym_full_reference_link] = STATE(1116), - [sym_collapsed_reference_link] = STATE(1116), - [sym_inline_link] = STATE(1116), - [sym_link_text] = STATE(1404), - [sym__comment_with_spaces] = STATE(1116), - [sym_span] = STATE(1116), - [sym_raw_inline] = STATE(1116), - [sym_math] = STATE(1116), - [sym_verbatim] = STATE(1116), - [sym__todo_highlights] = STATE(1116), - [sym_todo] = STATE(1116), - [sym_note] = STATE(1116), - [sym__symbol_fallback] = STATE(1116), - [aux_sym__text] = STATE(781), - [aux_sym_table_cell_repeat1] = STATE(308), - [anon_sym_LBRACK] = ACTIONS(2549), - [anon_sym_PIPE] = ACTIONS(2551), - [anon_sym_LBRACE] = ACTIONS(2553), - [sym__whitespace1] = ACTIONS(2555), - [anon_sym_BSLASH] = ACTIONS(2557), - [sym_quotation_marks] = ACTIONS(2551), - [sym_ellipsis] = ACTIONS(2551), - [sym_em_dash] = ACTIONS(2551), - [sym_en_dash] = ACTIONS(2553), - [sym_backslash_escape] = ACTIONS(2553), - [anon_sym_LT] = ACTIONS(2559), - [anon_sym_LBRACE_] = ACTIONS(2561), - [anon_sym__] = ACTIONS(2563), - [anon_sym_LBRACE_STAR] = ACTIONS(2565), - [anon_sym_STAR] = ACTIONS(2567), - [anon_sym_LBRACE_EQ] = ACTIONS(2569), - [anon_sym_LBRACE_PLUS] = ACTIONS(2571), - [anon_sym_LBRACE_DASH] = ACTIONS(2573), - [sym_symbol] = ACTIONS(2551), - [anon_sym_LBRACE_CARET] = ACTIONS(2575), - [anon_sym_CARET] = ACTIONS(2575), - [anon_sym_LBRACE_TILDE] = ACTIONS(2577), - [anon_sym_TILDE] = ACTIONS(2577), - [anon_sym_LBRACK_CARET] = ACTIONS(2579), - [anon_sym_BANG_LBRACK] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(2583), - [anon_sym_TODO] = ACTIONS(2585), - [anon_sym_WIP] = ACTIONS(2585), - [anon_sym_NOTE] = ACTIONS(2587), - [anon_sym_INFO] = ACTIONS(2587), - [anon_sym_XXX] = ACTIONS(2587), - [sym_fixme] = ACTIONS(2551), - [aux_sym__text_token1] = ACTIONS(2589), - [sym__newline] = ACTIONS(2702), - [sym__verbatim_begin] = ACTIONS(2593), - }, - [268] = { - [sym_table_cell] = STATE(2192), - [sym__inline_element_with_whitespace_without_newline] = STATE(308), - [sym__inline_core_element] = STATE(308), - [sym__hard_line_break] = STATE(1116), - [sym_hard_line_break] = STATE(711), - [sym__smart_punctuation] = STATE(1116), - [sym_autolink] = STATE(1116), - [sym_emphasis] = STATE(1116), - [sym_emphasis_begin] = STATE(271), - [sym_strong] = STATE(1116), - [sym_strong_begin] = STATE(293), - [sym_highlighted] = STATE(1116), - [sym_insert] = STATE(1116), - [sym_delete] = STATE(1116), - [sym_superscript] = STATE(1116), - [sym_subscript] = STATE(1116), - [sym_footnote_reference] = STATE(1116), - [sym__image] = STATE(1116), - [sym_full_reference_image] = STATE(1116), - [sym_collapsed_reference_image] = STATE(1116), - [sym_inline_image] = STATE(1116), - [sym__image_description] = STATE(1403), - [sym__link] = STATE(1116), - [sym_full_reference_link] = STATE(1116), - [sym_collapsed_reference_link] = STATE(1116), - [sym_inline_link] = STATE(1116), - [sym_link_text] = STATE(1404), - [sym__comment_with_spaces] = STATE(1116), - [sym_span] = STATE(1116), - [sym_raw_inline] = STATE(1116), - [sym_math] = STATE(1116), - [sym_verbatim] = STATE(1116), - [sym__todo_highlights] = STATE(1116), - [sym_todo] = STATE(1116), - [sym_note] = STATE(1116), - [sym__symbol_fallback] = STATE(1116), - [aux_sym__text] = STATE(781), - [aux_sym_table_cell_repeat1] = STATE(308), - [anon_sym_LBRACK] = ACTIONS(2549), - [anon_sym_PIPE] = ACTIONS(2551), - [anon_sym_LBRACE] = ACTIONS(2553), - [sym__whitespace1] = ACTIONS(2555), - [anon_sym_BSLASH] = ACTIONS(2557), - [sym_quotation_marks] = ACTIONS(2551), - [sym_ellipsis] = ACTIONS(2551), - [sym_em_dash] = ACTIONS(2551), - [sym_en_dash] = ACTIONS(2553), - [sym_backslash_escape] = ACTIONS(2553), - [anon_sym_LT] = ACTIONS(2559), - [anon_sym_LBRACE_] = ACTIONS(2561), - [anon_sym__] = ACTIONS(2563), - [anon_sym_LBRACE_STAR] = ACTIONS(2565), - [anon_sym_STAR] = ACTIONS(2567), - [anon_sym_LBRACE_EQ] = ACTIONS(2569), - [anon_sym_LBRACE_PLUS] = ACTIONS(2571), - [anon_sym_LBRACE_DASH] = ACTIONS(2573), - [sym_symbol] = ACTIONS(2551), - [anon_sym_LBRACE_CARET] = ACTIONS(2575), - [anon_sym_CARET] = ACTIONS(2575), - [anon_sym_LBRACE_TILDE] = ACTIONS(2577), - [anon_sym_TILDE] = ACTIONS(2577), - [anon_sym_LBRACK_CARET] = ACTIONS(2579), - [anon_sym_BANG_LBRACK] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(2583), - [anon_sym_TODO] = ACTIONS(2585), - [anon_sym_WIP] = ACTIONS(2585), - [anon_sym_NOTE] = ACTIONS(2587), - [anon_sym_INFO] = ACTIONS(2587), - [anon_sym_XXX] = ACTIONS(2587), - [sym_fixme] = ACTIONS(2551), - [aux_sym__text_token1] = ACTIONS(2589), - [sym__newline] = ACTIONS(2704), - [sym__verbatim_begin] = ACTIONS(2593), - }, - [269] = { - [sym_table_cell] = STATE(2192), - [sym__inline_element_with_whitespace_without_newline] = STATE(308), - [sym__inline_core_element] = STATE(308), - [sym__hard_line_break] = STATE(1116), - [sym_hard_line_break] = STATE(711), - [sym__smart_punctuation] = STATE(1116), - [sym_autolink] = STATE(1116), - [sym_emphasis] = STATE(1116), - [sym_emphasis_begin] = STATE(271), - [sym_strong] = STATE(1116), - [sym_strong_begin] = STATE(293), - [sym_highlighted] = STATE(1116), - [sym_insert] = STATE(1116), - [sym_delete] = STATE(1116), - [sym_superscript] = STATE(1116), - [sym_subscript] = STATE(1116), - [sym_footnote_reference] = STATE(1116), - [sym__image] = STATE(1116), - [sym_full_reference_image] = STATE(1116), - [sym_collapsed_reference_image] = STATE(1116), - [sym_inline_image] = STATE(1116), - [sym__image_description] = STATE(1403), - [sym__link] = STATE(1116), - [sym_full_reference_link] = STATE(1116), - [sym_collapsed_reference_link] = STATE(1116), - [sym_inline_link] = STATE(1116), - [sym_link_text] = STATE(1404), - [sym__comment_with_spaces] = STATE(1116), - [sym_span] = STATE(1116), - [sym_raw_inline] = STATE(1116), - [sym_math] = STATE(1116), - [sym_verbatim] = STATE(1116), - [sym__todo_highlights] = STATE(1116), - [sym_todo] = STATE(1116), - [sym_note] = STATE(1116), - [sym__symbol_fallback] = STATE(1116), - [aux_sym__text] = STATE(781), - [aux_sym_table_cell_repeat1] = STATE(308), - [anon_sym_LBRACK] = ACTIONS(2549), - [anon_sym_PIPE] = ACTIONS(2551), - [anon_sym_LBRACE] = ACTIONS(2553), - [sym__whitespace1] = ACTIONS(2555), - [anon_sym_BSLASH] = ACTIONS(2557), - [sym_quotation_marks] = ACTIONS(2551), - [sym_ellipsis] = ACTIONS(2551), - [sym_em_dash] = ACTIONS(2551), - [sym_en_dash] = ACTIONS(2553), - [sym_backslash_escape] = ACTIONS(2553), - [anon_sym_LT] = ACTIONS(2559), - [anon_sym_LBRACE_] = ACTIONS(2561), - [anon_sym__] = ACTIONS(2563), - [anon_sym_LBRACE_STAR] = ACTIONS(2565), - [anon_sym_STAR] = ACTIONS(2567), - [anon_sym_LBRACE_EQ] = ACTIONS(2569), - [anon_sym_LBRACE_PLUS] = ACTIONS(2571), - [anon_sym_LBRACE_DASH] = ACTIONS(2573), - [sym_symbol] = ACTIONS(2551), - [anon_sym_LBRACE_CARET] = ACTIONS(2575), - [anon_sym_CARET] = ACTIONS(2575), - [anon_sym_LBRACE_TILDE] = ACTIONS(2577), - [anon_sym_TILDE] = ACTIONS(2577), - [anon_sym_LBRACK_CARET] = ACTIONS(2579), - [anon_sym_BANG_LBRACK] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(2583), - [anon_sym_TODO] = ACTIONS(2585), - [anon_sym_WIP] = ACTIONS(2585), - [anon_sym_NOTE] = ACTIONS(2587), - [anon_sym_INFO] = ACTIONS(2587), - [anon_sym_XXX] = ACTIONS(2587), - [sym_fixme] = ACTIONS(2551), - [aux_sym__text_token1] = ACTIONS(2589), - [sym__newline] = ACTIONS(2706), - [sym__verbatim_begin] = ACTIONS(2593), - }, - [270] = { - [sym_table_cell] = STATE(1798), - [sym__inline_element_with_whitespace_without_newline] = STATE(308), - [sym__inline_core_element] = STATE(308), - [sym__hard_line_break] = STATE(1116), - [sym_hard_line_break] = STATE(711), - [sym__smart_punctuation] = STATE(1116), - [sym_autolink] = STATE(1116), - [sym_emphasis] = STATE(1116), - [sym_emphasis_begin] = STATE(271), - [sym_strong] = STATE(1116), - [sym_strong_begin] = STATE(293), - [sym_highlighted] = STATE(1116), - [sym_insert] = STATE(1116), - [sym_delete] = STATE(1116), - [sym_superscript] = STATE(1116), - [sym_subscript] = STATE(1116), - [sym_footnote_reference] = STATE(1116), - [sym__image] = STATE(1116), - [sym_full_reference_image] = STATE(1116), - [sym_collapsed_reference_image] = STATE(1116), - [sym_inline_image] = STATE(1116), - [sym__image_description] = STATE(1403), - [sym__link] = STATE(1116), - [sym_full_reference_link] = STATE(1116), - [sym_collapsed_reference_link] = STATE(1116), - [sym_inline_link] = STATE(1116), - [sym_link_text] = STATE(1404), - [sym__comment_with_spaces] = STATE(1116), - [sym_span] = STATE(1116), - [sym_raw_inline] = STATE(1116), - [sym_math] = STATE(1116), - [sym_verbatim] = STATE(1116), - [sym__todo_highlights] = STATE(1116), - [sym_todo] = STATE(1116), - [sym_note] = STATE(1116), - [sym__symbol_fallback] = STATE(1116), - [aux_sym__text] = STATE(781), - [aux_sym_table_cell_repeat1] = STATE(308), - [anon_sym_LBRACK] = ACTIONS(2549), - [anon_sym_PIPE] = ACTIONS(2551), - [sym_table_cell_alignment] = ACTIONS(2708), - [anon_sym_LBRACE] = ACTIONS(2553), - [sym__whitespace1] = ACTIONS(2555), - [anon_sym_BSLASH] = ACTIONS(2557), - [sym_quotation_marks] = ACTIONS(2551), - [sym_ellipsis] = ACTIONS(2551), - [sym_em_dash] = ACTIONS(2553), - [sym_en_dash] = ACTIONS(2553), - [sym_backslash_escape] = ACTIONS(2553), - [anon_sym_LT] = ACTIONS(2559), - [anon_sym_LBRACE_] = ACTIONS(2561), - [anon_sym__] = ACTIONS(2563), - [anon_sym_LBRACE_STAR] = ACTIONS(2565), - [anon_sym_STAR] = ACTIONS(2567), - [anon_sym_LBRACE_EQ] = ACTIONS(2569), - [anon_sym_LBRACE_PLUS] = ACTIONS(2571), - [anon_sym_LBRACE_DASH] = ACTIONS(2573), - [sym_symbol] = ACTIONS(2553), - [anon_sym_LBRACE_CARET] = ACTIONS(2575), - [anon_sym_CARET] = ACTIONS(2575), - [anon_sym_LBRACE_TILDE] = ACTIONS(2577), - [anon_sym_TILDE] = ACTIONS(2577), - [anon_sym_LBRACK_CARET] = ACTIONS(2579), - [anon_sym_BANG_LBRACK] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(2583), - [anon_sym_TODO] = ACTIONS(2585), - [anon_sym_WIP] = ACTIONS(2585), - [anon_sym_NOTE] = ACTIONS(2587), - [anon_sym_INFO] = ACTIONS(2587), - [anon_sym_XXX] = ACTIONS(2587), - [sym_fixme] = ACTIONS(2551), - [aux_sym__text_token1] = ACTIONS(2589), - [sym__verbatim_begin] = ACTIONS(2593), - }, - [271] = { - [sym__inline_element_with_newline] = STATE(215), - [sym__inline_core_element] = STATE(215), - [sym__inline_no_surrounding_spaces] = STATE(1706), - [sym__hard_line_break] = STATE(703), - [sym_hard_line_break] = STATE(519), - [sym__smart_punctuation] = STATE(703), - [sym_autolink] = STATE(703), - [sym_emphasis] = STATE(703), - [sym_emphasis_begin] = STATE(277), - [sym_strong] = STATE(703), - [sym_strong_begin] = STATE(278), - [sym_highlighted] = STATE(703), - [sym_insert] = STATE(703), - [sym_delete] = STATE(703), - [sym_superscript] = STATE(703), - [sym_subscript] = STATE(703), - [sym_footnote_reference] = STATE(703), - [sym__image] = STATE(703), - [sym_full_reference_image] = STATE(703), - [sym_collapsed_reference_image] = STATE(703), - [sym_inline_image] = STATE(703), - [sym__image_description] = STATE(1424), - [sym__link] = STATE(703), - [sym_full_reference_link] = STATE(703), - [sym_collapsed_reference_link] = STATE(703), - [sym_inline_link] = STATE(703), - [sym_link_text] = STATE(1423), - [sym__comment_with_spaces] = STATE(703), - [sym_span] = STATE(703), - [sym_raw_inline] = STATE(703), - [sym_math] = STATE(703), - [sym_verbatim] = STATE(703), - [sym__todo_highlights] = STATE(703), - [sym_todo] = STATE(703), - [sym_note] = STATE(703), - [sym__symbol_fallback] = STATE(703), - [aux_sym__text] = STATE(608), - [anon_sym_LBRACK] = ACTIONS(1675), - [anon_sym_PIPE] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(1679), - [sym__whitespace1] = ACTIONS(2710), - [anon_sym_BSLASH] = ACTIONS(1683), - [sym_quotation_marks] = ACTIONS(1677), - [sym_ellipsis] = ACTIONS(1677), - [sym_em_dash] = ACTIONS(1677), - [sym_en_dash] = ACTIONS(1679), - [sym_backslash_escape] = ACTIONS(1679), - [anon_sym_LT] = ACTIONS(1685), - [anon_sym_LBRACE_] = ACTIONS(1687), - [anon_sym__] = ACTIONS(2696), - [anon_sym_LBRACE_STAR] = ACTIONS(1692), - [anon_sym_STAR] = ACTIONS(1694), - [anon_sym_LBRACE_EQ] = ACTIONS(1696), - [anon_sym_LBRACE_PLUS] = ACTIONS(1698), - [anon_sym_LBRACE_DASH] = ACTIONS(1700), - [sym_symbol] = ACTIONS(1677), - [anon_sym_LBRACE_CARET] = ACTIONS(1702), - [anon_sym_CARET] = ACTIONS(1702), - [anon_sym_LBRACE_TILDE] = ACTIONS(1704), - [anon_sym_TILDE] = ACTIONS(1704), - [anon_sym_LBRACK_CARET] = ACTIONS(1706), - [anon_sym_BANG_LBRACK] = ACTIONS(1708), - [anon_sym_DOLLAR] = ACTIONS(1710), - [anon_sym_TODO] = ACTIONS(1712), - [anon_sym_WIP] = ACTIONS(1712), - [anon_sym_NOTE] = ACTIONS(1714), - [anon_sym_INFO] = ACTIONS(1714), - [anon_sym_XXX] = ACTIONS(1714), - [sym_fixme] = ACTIONS(1677), - [aux_sym__text_token1] = ACTIONS(1716), - [sym__newline_inline] = ACTIONS(1718), - [sym__verbatim_begin] = ACTIONS(1720), - }, - [272] = { - [sym__inline_element_with_newline] = STATE(212), - [sym__inline_core_element] = STATE(212), - [sym__inline_no_surrounding_spaces] = STATE(1633), - [sym__hard_line_break] = STATE(712), - [sym_hard_line_break] = STATE(522), - [sym__smart_punctuation] = STATE(712), - [sym_autolink] = STATE(712), - [sym_emphasis] = STATE(712), - [sym_emphasis_begin] = STATE(279), - [sym_strong] = STATE(712), - [sym_strong_begin] = STATE(280), - [sym_highlighted] = STATE(712), - [sym_insert] = STATE(712), - [sym_delete] = STATE(712), - [sym_superscript] = STATE(712), - [sym_subscript] = STATE(712), - [sym_footnote_reference] = STATE(712), - [sym__image] = STATE(712), - [sym_full_reference_image] = STATE(712), - [sym_collapsed_reference_image] = STATE(712), - [sym_inline_image] = STATE(712), - [sym__image_description] = STATE(1421), - [sym__link] = STATE(712), - [sym_full_reference_link] = STATE(712), - [sym_collapsed_reference_link] = STATE(712), - [sym_inline_link] = STATE(712), - [sym_link_text] = STATE(1419), - [sym__comment_with_spaces] = STATE(712), - [sym_span] = STATE(712), - [sym_raw_inline] = STATE(712), - [sym_math] = STATE(712), - [sym_verbatim] = STATE(712), - [sym__todo_highlights] = STATE(712), - [sym_todo] = STATE(712), - [sym_note] = STATE(712), - [sym__symbol_fallback] = STATE(712), - [aux_sym__text] = STATE(543), - [anon_sym_LBRACK] = ACTIONS(1623), - [anon_sym_PIPE] = ACTIONS(1625), - [anon_sym_LBRACE] = ACTIONS(1627), - [sym__whitespace1] = ACTIONS(2712), - [anon_sym_BSLASH] = ACTIONS(1631), - [sym_quotation_marks] = ACTIONS(1625), - [sym_ellipsis] = ACTIONS(1625), - [sym_em_dash] = ACTIONS(1625), - [sym_en_dash] = ACTIONS(1627), - [sym_backslash_escape] = ACTIONS(1627), - [anon_sym_LT] = ACTIONS(1633), - [anon_sym_LBRACE_] = ACTIONS(1635), - [anon_sym__] = ACTIONS(1637), - [anon_sym_LBRACE_STAR] = ACTIONS(1639), - [anon_sym_STAR] = ACTIONS(2700), - [anon_sym_LBRACE_EQ] = ACTIONS(1646), - [anon_sym_LBRACE_PLUS] = ACTIONS(1648), - [anon_sym_LBRACE_DASH] = ACTIONS(1650), - [sym_symbol] = ACTIONS(1625), - [anon_sym_LBRACE_CARET] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_LBRACE_TILDE] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1654), - [anon_sym_LBRACK_CARET] = ACTIONS(1656), - [anon_sym_BANG_LBRACK] = ACTIONS(1658), - [anon_sym_DOLLAR] = ACTIONS(1660), - [anon_sym_TODO] = ACTIONS(1662), - [anon_sym_WIP] = ACTIONS(1662), - [anon_sym_NOTE] = ACTIONS(1664), - [anon_sym_INFO] = ACTIONS(1664), - [anon_sym_XXX] = ACTIONS(1664), - [sym_fixme] = ACTIONS(1625), - [aux_sym__text_token1] = ACTIONS(1666), - [sym__newline_inline] = ACTIONS(1668), - [sym__verbatim_begin] = ACTIONS(1670), - }, - [273] = { - [sym__inline_element_with_newline] = STATE(212), - [sym__inline_core_element] = STATE(212), - [sym__inline_no_surrounding_spaces] = STATE(1645), - [sym__hard_line_break] = STATE(712), - [sym_hard_line_break] = STATE(522), - [sym__smart_punctuation] = STATE(712), - [sym_autolink] = STATE(712), - [sym_emphasis] = STATE(712), - [sym_emphasis_begin] = STATE(279), - [sym_strong] = STATE(712), - [sym_strong_begin] = STATE(280), - [sym_highlighted] = STATE(712), - [sym_insert] = STATE(712), - [sym_delete] = STATE(712), - [sym_superscript] = STATE(712), - [sym_subscript] = STATE(712), - [sym_footnote_reference] = STATE(712), - [sym__image] = STATE(712), - [sym_full_reference_image] = STATE(712), - [sym_collapsed_reference_image] = STATE(712), - [sym_inline_image] = STATE(712), - [sym__image_description] = STATE(1421), - [sym__link] = STATE(712), - [sym_full_reference_link] = STATE(712), - [sym_collapsed_reference_link] = STATE(712), - [sym_inline_link] = STATE(712), - [sym_link_text] = STATE(1419), - [sym__comment_with_spaces] = STATE(712), - [sym_span] = STATE(712), - [sym_raw_inline] = STATE(712), - [sym_math] = STATE(712), - [sym_verbatim] = STATE(712), - [sym__todo_highlights] = STATE(712), - [sym_todo] = STATE(712), - [sym_note] = STATE(712), - [sym__symbol_fallback] = STATE(712), - [aux_sym__text] = STATE(543), - [anon_sym_LBRACK] = ACTIONS(1623), - [anon_sym_PIPE] = ACTIONS(1625), - [anon_sym_LBRACE] = ACTIONS(1627), - [sym__whitespace1] = ACTIONS(2712), - [anon_sym_BSLASH] = ACTIONS(1631), - [sym_quotation_marks] = ACTIONS(1625), - [sym_ellipsis] = ACTIONS(1625), - [sym_em_dash] = ACTIONS(1625), - [sym_en_dash] = ACTIONS(1627), - [sym_backslash_escape] = ACTIONS(1627), - [anon_sym_LT] = ACTIONS(1633), - [anon_sym_LBRACE_] = ACTIONS(1635), - [anon_sym__] = ACTIONS(1637), - [anon_sym_LBRACE_STAR] = ACTIONS(1639), - [anon_sym_STAR] = ACTIONS(2700), - [anon_sym_LBRACE_EQ] = ACTIONS(1646), - [anon_sym_LBRACE_PLUS] = ACTIONS(1648), - [anon_sym_LBRACE_DASH] = ACTIONS(1650), - [sym_symbol] = ACTIONS(1625), - [anon_sym_LBRACE_CARET] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_LBRACE_TILDE] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1654), - [anon_sym_LBRACK_CARET] = ACTIONS(1656), - [anon_sym_BANG_LBRACK] = ACTIONS(1658), - [anon_sym_DOLLAR] = ACTIONS(1660), - [anon_sym_TODO] = ACTIONS(1662), - [anon_sym_WIP] = ACTIONS(1662), - [anon_sym_NOTE] = ACTIONS(1664), - [anon_sym_INFO] = ACTIONS(1664), - [anon_sym_XXX] = ACTIONS(1664), - [sym_fixme] = ACTIONS(1625), - [aux_sym__text_token1] = ACTIONS(1666), - [sym__newline_inline] = ACTIONS(1668), - [sym__verbatim_begin] = ACTIONS(1670), - }, - [274] = { - [sym__inline_element_with_newline] = STATE(215), - [sym__inline_core_element] = STATE(215), - [sym__inline_no_surrounding_spaces] = STATE(1623), - [sym__hard_line_break] = STATE(703), - [sym_hard_line_break] = STATE(519), - [sym__smart_punctuation] = STATE(703), - [sym_autolink] = STATE(703), - [sym_emphasis] = STATE(703), - [sym_emphasis_begin] = STATE(277), - [sym_strong] = STATE(703), - [sym_strong_begin] = STATE(278), - [sym_highlighted] = STATE(703), - [sym_insert] = STATE(703), - [sym_delete] = STATE(703), - [sym_superscript] = STATE(703), - [sym_subscript] = STATE(703), - [sym_footnote_reference] = STATE(703), - [sym__image] = STATE(703), - [sym_full_reference_image] = STATE(703), - [sym_collapsed_reference_image] = STATE(703), - [sym_inline_image] = STATE(703), - [sym__image_description] = STATE(1424), - [sym__link] = STATE(703), - [sym_full_reference_link] = STATE(703), - [sym_collapsed_reference_link] = STATE(703), - [sym_inline_link] = STATE(703), - [sym_link_text] = STATE(1423), - [sym__comment_with_spaces] = STATE(703), - [sym_span] = STATE(703), - [sym_raw_inline] = STATE(703), - [sym_math] = STATE(703), - [sym_verbatim] = STATE(703), - [sym__todo_highlights] = STATE(703), - [sym_todo] = STATE(703), - [sym_note] = STATE(703), - [sym__symbol_fallback] = STATE(703), - [aux_sym__text] = STATE(608), - [anon_sym_LBRACK] = ACTIONS(1675), - [anon_sym_PIPE] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(1679), - [sym__whitespace1] = ACTIONS(2710), - [anon_sym_BSLASH] = ACTIONS(1683), - [sym_quotation_marks] = ACTIONS(1677), - [sym_ellipsis] = ACTIONS(1677), - [sym_em_dash] = ACTIONS(1677), - [sym_en_dash] = ACTIONS(1679), - [sym_backslash_escape] = ACTIONS(1679), - [anon_sym_LT] = ACTIONS(1685), - [anon_sym_LBRACE_] = ACTIONS(1687), - [anon_sym__] = ACTIONS(2696), - [anon_sym_LBRACE_STAR] = ACTIONS(1692), - [anon_sym_STAR] = ACTIONS(1694), - [anon_sym_LBRACE_EQ] = ACTIONS(1696), - [anon_sym_LBRACE_PLUS] = ACTIONS(1698), - [anon_sym_LBRACE_DASH] = ACTIONS(1700), - [sym_symbol] = ACTIONS(1677), - [anon_sym_LBRACE_CARET] = ACTIONS(1702), - [anon_sym_CARET] = ACTIONS(1702), - [anon_sym_LBRACE_TILDE] = ACTIONS(1704), - [anon_sym_TILDE] = ACTIONS(1704), - [anon_sym_LBRACK_CARET] = ACTIONS(1706), - [anon_sym_BANG_LBRACK] = ACTIONS(1708), - [anon_sym_DOLLAR] = ACTIONS(1710), - [anon_sym_TODO] = ACTIONS(1712), - [anon_sym_WIP] = ACTIONS(1712), - [anon_sym_NOTE] = ACTIONS(1714), - [anon_sym_INFO] = ACTIONS(1714), - [anon_sym_XXX] = ACTIONS(1714), - [sym_fixme] = ACTIONS(1677), - [aux_sym__text_token1] = ACTIONS(1716), - [sym__newline_inline] = ACTIONS(1718), - [sym__verbatim_begin] = ACTIONS(1720), - }, - [275] = { - [sym__inline_element_with_newline] = STATE(212), - [sym__inline_core_element] = STATE(212), - [sym__inline_no_surrounding_spaces] = STATE(1622), - [sym__hard_line_break] = STATE(712), - [sym_hard_line_break] = STATE(522), - [sym__smart_punctuation] = STATE(712), - [sym_autolink] = STATE(712), - [sym_emphasis] = STATE(712), - [sym_emphasis_begin] = STATE(279), - [sym_strong] = STATE(712), - [sym_strong_begin] = STATE(280), - [sym_highlighted] = STATE(712), - [sym_insert] = STATE(712), - [sym_delete] = STATE(712), - [sym_superscript] = STATE(712), - [sym_subscript] = STATE(712), - [sym_footnote_reference] = STATE(712), - [sym__image] = STATE(712), - [sym_full_reference_image] = STATE(712), - [sym_collapsed_reference_image] = STATE(712), - [sym_inline_image] = STATE(712), - [sym__image_description] = STATE(1421), - [sym__link] = STATE(712), - [sym_full_reference_link] = STATE(712), - [sym_collapsed_reference_link] = STATE(712), - [sym_inline_link] = STATE(712), - [sym_link_text] = STATE(1419), - [sym__comment_with_spaces] = STATE(712), - [sym_span] = STATE(712), - [sym_raw_inline] = STATE(712), - [sym_math] = STATE(712), - [sym_verbatim] = STATE(712), - [sym__todo_highlights] = STATE(712), - [sym_todo] = STATE(712), - [sym_note] = STATE(712), - [sym__symbol_fallback] = STATE(712), - [aux_sym__text] = STATE(543), - [anon_sym_LBRACK] = ACTIONS(1623), - [anon_sym_PIPE] = ACTIONS(1625), - [anon_sym_LBRACE] = ACTIONS(1627), - [sym__whitespace1] = ACTIONS(2712), - [anon_sym_BSLASH] = ACTIONS(1631), - [sym_quotation_marks] = ACTIONS(1625), - [sym_ellipsis] = ACTIONS(1625), - [sym_em_dash] = ACTIONS(1625), - [sym_en_dash] = ACTIONS(1627), - [sym_backslash_escape] = ACTIONS(1627), - [anon_sym_LT] = ACTIONS(1633), - [anon_sym_LBRACE_] = ACTIONS(1635), - [anon_sym__] = ACTIONS(1637), - [anon_sym_LBRACE_STAR] = ACTIONS(1639), - [anon_sym_STAR] = ACTIONS(2700), - [anon_sym_LBRACE_EQ] = ACTIONS(1646), - [anon_sym_LBRACE_PLUS] = ACTIONS(1648), - [anon_sym_LBRACE_DASH] = ACTIONS(1650), - [sym_symbol] = ACTIONS(1625), - [anon_sym_LBRACE_CARET] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_LBRACE_TILDE] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1654), - [anon_sym_LBRACK_CARET] = ACTIONS(1656), - [anon_sym_BANG_LBRACK] = ACTIONS(1658), - [anon_sym_DOLLAR] = ACTIONS(1660), - [anon_sym_TODO] = ACTIONS(1662), - [anon_sym_WIP] = ACTIONS(1662), - [anon_sym_NOTE] = ACTIONS(1664), - [anon_sym_INFO] = ACTIONS(1664), - [anon_sym_XXX] = ACTIONS(1664), - [sym_fixme] = ACTIONS(1625), - [aux_sym__text_token1] = ACTIONS(1666), - [sym__newline_inline] = ACTIONS(1668), - [sym__verbatim_begin] = ACTIONS(1670), - }, - [276] = { - [sym__inline_element_with_newline] = STATE(212), - [sym__inline_core_element] = STATE(212), - [sym__inline_no_surrounding_spaces] = STATE(1655), - [sym__hard_line_break] = STATE(712), - [sym_hard_line_break] = STATE(522), - [sym__smart_punctuation] = STATE(712), - [sym_autolink] = STATE(712), - [sym_emphasis] = STATE(712), - [sym_emphasis_begin] = STATE(279), - [sym_strong] = STATE(712), - [sym_strong_begin] = STATE(280), - [sym_highlighted] = STATE(712), - [sym_insert] = STATE(712), - [sym_delete] = STATE(712), - [sym_superscript] = STATE(712), - [sym_subscript] = STATE(712), - [sym_footnote_reference] = STATE(712), - [sym__image] = STATE(712), - [sym_full_reference_image] = STATE(712), - [sym_collapsed_reference_image] = STATE(712), - [sym_inline_image] = STATE(712), - [sym__image_description] = STATE(1421), - [sym__link] = STATE(712), - [sym_full_reference_link] = STATE(712), - [sym_collapsed_reference_link] = STATE(712), - [sym_inline_link] = STATE(712), - [sym_link_text] = STATE(1419), - [sym__comment_with_spaces] = STATE(712), - [sym_span] = STATE(712), - [sym_raw_inline] = STATE(712), - [sym_math] = STATE(712), - [sym_verbatim] = STATE(712), - [sym__todo_highlights] = STATE(712), - [sym_todo] = STATE(712), - [sym_note] = STATE(712), - [sym__symbol_fallback] = STATE(712), - [aux_sym__text] = STATE(543), - [anon_sym_LBRACK] = ACTIONS(1623), - [anon_sym_PIPE] = ACTIONS(1625), - [anon_sym_LBRACE] = ACTIONS(1627), - [sym__whitespace1] = ACTIONS(2712), - [anon_sym_BSLASH] = ACTIONS(1631), - [sym_quotation_marks] = ACTIONS(1625), - [sym_ellipsis] = ACTIONS(1625), - [sym_em_dash] = ACTIONS(1625), - [sym_en_dash] = ACTIONS(1627), - [sym_backslash_escape] = ACTIONS(1627), - [anon_sym_LT] = ACTIONS(1633), - [anon_sym_LBRACE_] = ACTIONS(1635), - [anon_sym__] = ACTIONS(1637), - [anon_sym_LBRACE_STAR] = ACTIONS(1639), - [anon_sym_STAR] = ACTIONS(2700), - [anon_sym_LBRACE_EQ] = ACTIONS(1646), - [anon_sym_LBRACE_PLUS] = ACTIONS(1648), - [anon_sym_LBRACE_DASH] = ACTIONS(1650), - [sym_symbol] = ACTIONS(1625), - [anon_sym_LBRACE_CARET] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_LBRACE_TILDE] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1654), - [anon_sym_LBRACK_CARET] = ACTIONS(1656), - [anon_sym_BANG_LBRACK] = ACTIONS(1658), - [anon_sym_DOLLAR] = ACTIONS(1660), - [anon_sym_TODO] = ACTIONS(1662), - [anon_sym_WIP] = ACTIONS(1662), - [anon_sym_NOTE] = ACTIONS(1664), - [anon_sym_INFO] = ACTIONS(1664), - [anon_sym_XXX] = ACTIONS(1664), - [sym_fixme] = ACTIONS(1625), - [aux_sym__text_token1] = ACTIONS(1666), - [sym__newline_inline] = ACTIONS(1668), - [sym__verbatim_begin] = ACTIONS(1670), - }, - [277] = { - [sym__inline_element_with_newline] = STATE(215), - [sym__inline_core_element] = STATE(215), - [sym__inline_no_surrounding_spaces] = STATE(1613), - [sym__hard_line_break] = STATE(703), - [sym_hard_line_break] = STATE(519), - [sym__smart_punctuation] = STATE(703), - [sym_autolink] = STATE(703), - [sym_emphasis] = STATE(703), - [sym_emphasis_begin] = STATE(277), - [sym_strong] = STATE(703), - [sym_strong_begin] = STATE(278), - [sym_highlighted] = STATE(703), - [sym_insert] = STATE(703), - [sym_delete] = STATE(703), - [sym_superscript] = STATE(703), - [sym_subscript] = STATE(703), - [sym_footnote_reference] = STATE(703), - [sym__image] = STATE(703), - [sym_full_reference_image] = STATE(703), - [sym_collapsed_reference_image] = STATE(703), - [sym_inline_image] = STATE(703), - [sym__image_description] = STATE(1424), - [sym__link] = STATE(703), - [sym_full_reference_link] = STATE(703), - [sym_collapsed_reference_link] = STATE(703), - [sym_inline_link] = STATE(703), - [sym_link_text] = STATE(1423), - [sym__comment_with_spaces] = STATE(703), - [sym_span] = STATE(703), - [sym_raw_inline] = STATE(703), - [sym_math] = STATE(703), - [sym_verbatim] = STATE(703), - [sym__todo_highlights] = STATE(703), - [sym_todo] = STATE(703), - [sym_note] = STATE(703), - [sym__symbol_fallback] = STATE(703), - [aux_sym__text] = STATE(608), - [anon_sym_LBRACK] = ACTIONS(1675), - [anon_sym_PIPE] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(1679), - [sym__whitespace1] = ACTIONS(2710), - [anon_sym_BSLASH] = ACTIONS(1683), - [sym_quotation_marks] = ACTIONS(1677), - [sym_ellipsis] = ACTIONS(1677), - [sym_em_dash] = ACTIONS(1677), - [sym_en_dash] = ACTIONS(1679), - [sym_backslash_escape] = ACTIONS(1679), - [anon_sym_LT] = ACTIONS(1685), - [anon_sym_LBRACE_] = ACTIONS(1687), - [anon_sym__] = ACTIONS(2696), - [anon_sym_LBRACE_STAR] = ACTIONS(1692), - [anon_sym_STAR] = ACTIONS(1694), - [anon_sym_LBRACE_EQ] = ACTIONS(1696), - [anon_sym_LBRACE_PLUS] = ACTIONS(1698), - [anon_sym_LBRACE_DASH] = ACTIONS(1700), - [sym_symbol] = ACTIONS(1677), - [anon_sym_LBRACE_CARET] = ACTIONS(1702), - [anon_sym_CARET] = ACTIONS(1702), - [anon_sym_LBRACE_TILDE] = ACTIONS(1704), - [anon_sym_TILDE] = ACTIONS(1704), - [anon_sym_LBRACK_CARET] = ACTIONS(1706), - [anon_sym_BANG_LBRACK] = ACTIONS(1708), - [anon_sym_DOLLAR] = ACTIONS(1710), - [anon_sym_TODO] = ACTIONS(1712), - [anon_sym_WIP] = ACTIONS(1712), - [anon_sym_NOTE] = ACTIONS(1714), - [anon_sym_INFO] = ACTIONS(1714), - [anon_sym_XXX] = ACTIONS(1714), - [sym_fixme] = ACTIONS(1677), - [aux_sym__text_token1] = ACTIONS(1716), - [sym__newline_inline] = ACTIONS(1718), - [sym__verbatim_begin] = ACTIONS(1720), - }, - [278] = { - [sym__inline_element_with_newline] = STATE(212), - [sym__inline_core_element] = STATE(212), - [sym__inline_no_surrounding_spaces] = STATE(1609), - [sym__hard_line_break] = STATE(712), - [sym_hard_line_break] = STATE(522), - [sym__smart_punctuation] = STATE(712), - [sym_autolink] = STATE(712), - [sym_emphasis] = STATE(712), - [sym_emphasis_begin] = STATE(279), - [sym_strong] = STATE(712), - [sym_strong_begin] = STATE(280), - [sym_highlighted] = STATE(712), - [sym_insert] = STATE(712), - [sym_delete] = STATE(712), - [sym_superscript] = STATE(712), - [sym_subscript] = STATE(712), - [sym_footnote_reference] = STATE(712), - [sym__image] = STATE(712), - [sym_full_reference_image] = STATE(712), - [sym_collapsed_reference_image] = STATE(712), - [sym_inline_image] = STATE(712), - [sym__image_description] = STATE(1421), - [sym__link] = STATE(712), - [sym_full_reference_link] = STATE(712), - [sym_collapsed_reference_link] = STATE(712), - [sym_inline_link] = STATE(712), - [sym_link_text] = STATE(1419), - [sym__comment_with_spaces] = STATE(712), - [sym_span] = STATE(712), - [sym_raw_inline] = STATE(712), - [sym_math] = STATE(712), - [sym_verbatim] = STATE(712), - [sym__todo_highlights] = STATE(712), - [sym_todo] = STATE(712), - [sym_note] = STATE(712), - [sym__symbol_fallback] = STATE(712), - [aux_sym__text] = STATE(543), - [anon_sym_LBRACK] = ACTIONS(1623), - [anon_sym_PIPE] = ACTIONS(1625), - [anon_sym_LBRACE] = ACTIONS(1627), - [sym__whitespace1] = ACTIONS(2712), - [anon_sym_BSLASH] = ACTIONS(1631), - [sym_quotation_marks] = ACTIONS(1625), - [sym_ellipsis] = ACTIONS(1625), - [sym_em_dash] = ACTIONS(1625), - [sym_en_dash] = ACTIONS(1627), - [sym_backslash_escape] = ACTIONS(1627), - [anon_sym_LT] = ACTIONS(1633), - [anon_sym_LBRACE_] = ACTIONS(1635), - [anon_sym__] = ACTIONS(1637), - [anon_sym_LBRACE_STAR] = ACTIONS(1639), - [anon_sym_STAR] = ACTIONS(2700), - [anon_sym_LBRACE_EQ] = ACTIONS(1646), - [anon_sym_LBRACE_PLUS] = ACTIONS(1648), - [anon_sym_LBRACE_DASH] = ACTIONS(1650), - [sym_symbol] = ACTIONS(1625), - [anon_sym_LBRACE_CARET] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_LBRACE_TILDE] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1654), - [anon_sym_LBRACK_CARET] = ACTIONS(1656), - [anon_sym_BANG_LBRACK] = ACTIONS(1658), - [anon_sym_DOLLAR] = ACTIONS(1660), - [anon_sym_TODO] = ACTIONS(1662), - [anon_sym_WIP] = ACTIONS(1662), - [anon_sym_NOTE] = ACTIONS(1664), - [anon_sym_INFO] = ACTIONS(1664), - [anon_sym_XXX] = ACTIONS(1664), - [sym_fixme] = ACTIONS(1625), - [aux_sym__text_token1] = ACTIONS(1666), - [sym__newline_inline] = ACTIONS(1668), - [sym__verbatim_begin] = ACTIONS(1670), - }, - [279] = { - [sym__inline_element_with_newline] = STATE(215), - [sym__inline_core_element] = STATE(215), - [sym__inline_no_surrounding_spaces] = STATE(1603), - [sym__hard_line_break] = STATE(703), - [sym_hard_line_break] = STATE(519), - [sym__smart_punctuation] = STATE(703), - [sym_autolink] = STATE(703), - [sym_emphasis] = STATE(703), - [sym_emphasis_begin] = STATE(277), - [sym_strong] = STATE(703), - [sym_strong_begin] = STATE(278), - [sym_highlighted] = STATE(703), - [sym_insert] = STATE(703), - [sym_delete] = STATE(703), - [sym_superscript] = STATE(703), - [sym_subscript] = STATE(703), - [sym_footnote_reference] = STATE(703), - [sym__image] = STATE(703), - [sym_full_reference_image] = STATE(703), - [sym_collapsed_reference_image] = STATE(703), - [sym_inline_image] = STATE(703), - [sym__image_description] = STATE(1424), - [sym__link] = STATE(703), - [sym_full_reference_link] = STATE(703), - [sym_collapsed_reference_link] = STATE(703), - [sym_inline_link] = STATE(703), - [sym_link_text] = STATE(1423), - [sym__comment_with_spaces] = STATE(703), - [sym_span] = STATE(703), - [sym_raw_inline] = STATE(703), - [sym_math] = STATE(703), - [sym_verbatim] = STATE(703), - [sym__todo_highlights] = STATE(703), - [sym_todo] = STATE(703), - [sym_note] = STATE(703), - [sym__symbol_fallback] = STATE(703), - [aux_sym__text] = STATE(608), - [anon_sym_LBRACK] = ACTIONS(1675), - [anon_sym_PIPE] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(1679), - [sym__whitespace1] = ACTIONS(2710), - [anon_sym_BSLASH] = ACTIONS(1683), - [sym_quotation_marks] = ACTIONS(1677), - [sym_ellipsis] = ACTIONS(1677), - [sym_em_dash] = ACTIONS(1677), - [sym_en_dash] = ACTIONS(1679), - [sym_backslash_escape] = ACTIONS(1679), - [anon_sym_LT] = ACTIONS(1685), - [anon_sym_LBRACE_] = ACTIONS(1687), - [anon_sym__] = ACTIONS(2696), - [anon_sym_LBRACE_STAR] = ACTIONS(1692), - [anon_sym_STAR] = ACTIONS(1694), - [anon_sym_LBRACE_EQ] = ACTIONS(1696), - [anon_sym_LBRACE_PLUS] = ACTIONS(1698), - [anon_sym_LBRACE_DASH] = ACTIONS(1700), - [sym_symbol] = ACTIONS(1677), - [anon_sym_LBRACE_CARET] = ACTIONS(1702), - [anon_sym_CARET] = ACTIONS(1702), - [anon_sym_LBRACE_TILDE] = ACTIONS(1704), - [anon_sym_TILDE] = ACTIONS(1704), - [anon_sym_LBRACK_CARET] = ACTIONS(1706), - [anon_sym_BANG_LBRACK] = ACTIONS(1708), - [anon_sym_DOLLAR] = ACTIONS(1710), - [anon_sym_TODO] = ACTIONS(1712), - [anon_sym_WIP] = ACTIONS(1712), - [anon_sym_NOTE] = ACTIONS(1714), - [anon_sym_INFO] = ACTIONS(1714), - [anon_sym_XXX] = ACTIONS(1714), - [sym_fixme] = ACTIONS(1677), - [aux_sym__text_token1] = ACTIONS(1716), - [sym__newline_inline] = ACTIONS(1718), - [sym__verbatim_begin] = ACTIONS(1720), - }, - [280] = { - [sym__inline_element_with_newline] = STATE(212), - [sym__inline_core_element] = STATE(212), - [sym__inline_no_surrounding_spaces] = STATE(1602), - [sym__hard_line_break] = STATE(712), - [sym_hard_line_break] = STATE(522), - [sym__smart_punctuation] = STATE(712), - [sym_autolink] = STATE(712), - [sym_emphasis] = STATE(712), - [sym_emphasis_begin] = STATE(279), - [sym_strong] = STATE(712), - [sym_strong_begin] = STATE(280), - [sym_highlighted] = STATE(712), - [sym_insert] = STATE(712), - [sym_delete] = STATE(712), - [sym_superscript] = STATE(712), - [sym_subscript] = STATE(712), - [sym_footnote_reference] = STATE(712), - [sym__image] = STATE(712), - [sym_full_reference_image] = STATE(712), - [sym_collapsed_reference_image] = STATE(712), - [sym_inline_image] = STATE(712), - [sym__image_description] = STATE(1421), - [sym__link] = STATE(712), - [sym_full_reference_link] = STATE(712), - [sym_collapsed_reference_link] = STATE(712), - [sym_inline_link] = STATE(712), - [sym_link_text] = STATE(1419), - [sym__comment_with_spaces] = STATE(712), - [sym_span] = STATE(712), - [sym_raw_inline] = STATE(712), - [sym_math] = STATE(712), - [sym_verbatim] = STATE(712), - [sym__todo_highlights] = STATE(712), - [sym_todo] = STATE(712), - [sym_note] = STATE(712), - [sym__symbol_fallback] = STATE(712), - [aux_sym__text] = STATE(543), - [anon_sym_LBRACK] = ACTIONS(1623), - [anon_sym_PIPE] = ACTIONS(1625), - [anon_sym_LBRACE] = ACTIONS(1627), - [sym__whitespace1] = ACTIONS(2712), - [anon_sym_BSLASH] = ACTIONS(1631), - [sym_quotation_marks] = ACTIONS(1625), - [sym_ellipsis] = ACTIONS(1625), - [sym_em_dash] = ACTIONS(1625), - [sym_en_dash] = ACTIONS(1627), - [sym_backslash_escape] = ACTIONS(1627), - [anon_sym_LT] = ACTIONS(1633), - [anon_sym_LBRACE_] = ACTIONS(1635), - [anon_sym__] = ACTIONS(1637), - [anon_sym_LBRACE_STAR] = ACTIONS(1639), - [anon_sym_STAR] = ACTIONS(2700), - [anon_sym_LBRACE_EQ] = ACTIONS(1646), - [anon_sym_LBRACE_PLUS] = ACTIONS(1648), - [anon_sym_LBRACE_DASH] = ACTIONS(1650), - [sym_symbol] = ACTIONS(1625), - [anon_sym_LBRACE_CARET] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_LBRACE_TILDE] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1654), - [anon_sym_LBRACK_CARET] = ACTIONS(1656), - [anon_sym_BANG_LBRACK] = ACTIONS(1658), - [anon_sym_DOLLAR] = ACTIONS(1660), - [anon_sym_TODO] = ACTIONS(1662), - [anon_sym_WIP] = ACTIONS(1662), - [anon_sym_NOTE] = ACTIONS(1664), - [anon_sym_INFO] = ACTIONS(1664), - [anon_sym_XXX] = ACTIONS(1664), - [sym_fixme] = ACTIONS(1625), - [aux_sym__text_token1] = ACTIONS(1666), - [sym__newline_inline] = ACTIONS(1668), - [sym__verbatim_begin] = ACTIONS(1670), - }, - [281] = { - [sym__inline_element_with_newline] = STATE(215), - [sym__inline_core_element] = STATE(215), - [sym__inline_no_surrounding_spaces] = STATE(1656), - [sym__hard_line_break] = STATE(703), - [sym_hard_line_break] = STATE(519), - [sym__smart_punctuation] = STATE(703), - [sym_autolink] = STATE(703), - [sym_emphasis] = STATE(703), - [sym_emphasis_begin] = STATE(277), - [sym_strong] = STATE(703), - [sym_strong_begin] = STATE(278), - [sym_highlighted] = STATE(703), - [sym_insert] = STATE(703), - [sym_delete] = STATE(703), - [sym_superscript] = STATE(703), - [sym_subscript] = STATE(703), - [sym_footnote_reference] = STATE(703), - [sym__image] = STATE(703), - [sym_full_reference_image] = STATE(703), - [sym_collapsed_reference_image] = STATE(703), - [sym_inline_image] = STATE(703), - [sym__image_description] = STATE(1424), - [sym__link] = STATE(703), - [sym_full_reference_link] = STATE(703), - [sym_collapsed_reference_link] = STATE(703), - [sym_inline_link] = STATE(703), - [sym_link_text] = STATE(1423), - [sym__comment_with_spaces] = STATE(703), - [sym_span] = STATE(703), - [sym_raw_inline] = STATE(703), - [sym_math] = STATE(703), - [sym_verbatim] = STATE(703), - [sym__todo_highlights] = STATE(703), - [sym_todo] = STATE(703), - [sym_note] = STATE(703), - [sym__symbol_fallback] = STATE(703), - [aux_sym__text] = STATE(608), - [anon_sym_LBRACK] = ACTIONS(1675), - [anon_sym_PIPE] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(1679), - [sym__whitespace1] = ACTIONS(2710), - [anon_sym_BSLASH] = ACTIONS(1683), - [sym_quotation_marks] = ACTIONS(1677), - [sym_ellipsis] = ACTIONS(1677), - [sym_em_dash] = ACTIONS(1677), - [sym_en_dash] = ACTIONS(1679), - [sym_backslash_escape] = ACTIONS(1679), - [anon_sym_LT] = ACTIONS(1685), - [anon_sym_LBRACE_] = ACTIONS(1687), - [anon_sym__] = ACTIONS(2696), - [anon_sym_LBRACE_STAR] = ACTIONS(1692), - [anon_sym_STAR] = ACTIONS(1694), - [anon_sym_LBRACE_EQ] = ACTIONS(1696), - [anon_sym_LBRACE_PLUS] = ACTIONS(1698), - [anon_sym_LBRACE_DASH] = ACTIONS(1700), - [sym_symbol] = ACTIONS(1677), - [anon_sym_LBRACE_CARET] = ACTIONS(1702), - [anon_sym_CARET] = ACTIONS(1702), - [anon_sym_LBRACE_TILDE] = ACTIONS(1704), - [anon_sym_TILDE] = ACTIONS(1704), - [anon_sym_LBRACK_CARET] = ACTIONS(1706), - [anon_sym_BANG_LBRACK] = ACTIONS(1708), - [anon_sym_DOLLAR] = ACTIONS(1710), - [anon_sym_TODO] = ACTIONS(1712), - [anon_sym_WIP] = ACTIONS(1712), - [anon_sym_NOTE] = ACTIONS(1714), - [anon_sym_INFO] = ACTIONS(1714), - [anon_sym_XXX] = ACTIONS(1714), - [sym_fixme] = ACTIONS(1677), - [aux_sym__text_token1] = ACTIONS(1716), - [sym__newline_inline] = ACTIONS(1718), - [sym__verbatim_begin] = ACTIONS(1720), - }, - [282] = { - [sym__inline_element_with_newline] = STATE(212), - [sym__inline_core_element] = STATE(212), - [sym__inline_no_surrounding_spaces] = STATE(1583), - [sym__hard_line_break] = STATE(712), - [sym_hard_line_break] = STATE(522), - [sym__smart_punctuation] = STATE(712), - [sym_autolink] = STATE(712), - [sym_emphasis] = STATE(712), - [sym_emphasis_begin] = STATE(279), - [sym_strong] = STATE(712), - [sym_strong_begin] = STATE(280), - [sym_highlighted] = STATE(712), - [sym_insert] = STATE(712), - [sym_delete] = STATE(712), - [sym_superscript] = STATE(712), - [sym_subscript] = STATE(712), - [sym_footnote_reference] = STATE(712), - [sym__image] = STATE(712), - [sym_full_reference_image] = STATE(712), - [sym_collapsed_reference_image] = STATE(712), - [sym_inline_image] = STATE(712), - [sym__image_description] = STATE(1421), - [sym__link] = STATE(712), - [sym_full_reference_link] = STATE(712), - [sym_collapsed_reference_link] = STATE(712), - [sym_inline_link] = STATE(712), - [sym_link_text] = STATE(1419), - [sym__comment_with_spaces] = STATE(712), - [sym_span] = STATE(712), - [sym_raw_inline] = STATE(712), - [sym_math] = STATE(712), - [sym_verbatim] = STATE(712), - [sym__todo_highlights] = STATE(712), - [sym_todo] = STATE(712), - [sym_note] = STATE(712), - [sym__symbol_fallback] = STATE(712), - [aux_sym__text] = STATE(543), - [anon_sym_LBRACK] = ACTIONS(1623), - [anon_sym_PIPE] = ACTIONS(1625), - [anon_sym_LBRACE] = ACTIONS(1627), - [sym__whitespace1] = ACTIONS(2712), - [anon_sym_BSLASH] = ACTIONS(1631), - [sym_quotation_marks] = ACTIONS(1625), - [sym_ellipsis] = ACTIONS(1625), - [sym_em_dash] = ACTIONS(1625), - [sym_en_dash] = ACTIONS(1627), - [sym_backslash_escape] = ACTIONS(1627), - [anon_sym_LT] = ACTIONS(1633), - [anon_sym_LBRACE_] = ACTIONS(1635), - [anon_sym__] = ACTIONS(1637), - [anon_sym_LBRACE_STAR] = ACTIONS(1639), - [anon_sym_STAR] = ACTIONS(2700), - [anon_sym_LBRACE_EQ] = ACTIONS(1646), - [anon_sym_LBRACE_PLUS] = ACTIONS(1648), - [anon_sym_LBRACE_DASH] = ACTIONS(1650), - [sym_symbol] = ACTIONS(1625), - [anon_sym_LBRACE_CARET] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_LBRACE_TILDE] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1654), - [anon_sym_LBRACK_CARET] = ACTIONS(1656), - [anon_sym_BANG_LBRACK] = ACTIONS(1658), - [anon_sym_DOLLAR] = ACTIONS(1660), - [anon_sym_TODO] = ACTIONS(1662), - [anon_sym_WIP] = ACTIONS(1662), - [anon_sym_NOTE] = ACTIONS(1664), - [anon_sym_INFO] = ACTIONS(1664), - [anon_sym_XXX] = ACTIONS(1664), - [sym_fixme] = ACTIONS(1625), - [aux_sym__text_token1] = ACTIONS(1666), - [sym__newline_inline] = ACTIONS(1668), - [sym__verbatim_begin] = ACTIONS(1670), - }, - [283] = { - [sym__inline_element_with_newline] = STATE(215), - [sym__inline_core_element] = STATE(215), - [sym__inline_no_surrounding_spaces] = STATE(1584), - [sym__hard_line_break] = STATE(703), - [sym_hard_line_break] = STATE(519), - [sym__smart_punctuation] = STATE(703), - [sym_autolink] = STATE(703), - [sym_emphasis] = STATE(703), - [sym_emphasis_begin] = STATE(277), - [sym_strong] = STATE(703), - [sym_strong_begin] = STATE(278), - [sym_highlighted] = STATE(703), - [sym_insert] = STATE(703), - [sym_delete] = STATE(703), - [sym_superscript] = STATE(703), - [sym_subscript] = STATE(703), - [sym_footnote_reference] = STATE(703), - [sym__image] = STATE(703), - [sym_full_reference_image] = STATE(703), - [sym_collapsed_reference_image] = STATE(703), - [sym_inline_image] = STATE(703), - [sym__image_description] = STATE(1424), - [sym__link] = STATE(703), - [sym_full_reference_link] = STATE(703), - [sym_collapsed_reference_link] = STATE(703), - [sym_inline_link] = STATE(703), - [sym_link_text] = STATE(1423), - [sym__comment_with_spaces] = STATE(703), - [sym_span] = STATE(703), - [sym_raw_inline] = STATE(703), - [sym_math] = STATE(703), - [sym_verbatim] = STATE(703), - [sym__todo_highlights] = STATE(703), - [sym_todo] = STATE(703), - [sym_note] = STATE(703), - [sym__symbol_fallback] = STATE(703), - [aux_sym__text] = STATE(608), - [anon_sym_LBRACK] = ACTIONS(1675), - [anon_sym_PIPE] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(1679), - [sym__whitespace1] = ACTIONS(2710), - [anon_sym_BSLASH] = ACTIONS(1683), - [sym_quotation_marks] = ACTIONS(1677), - [sym_ellipsis] = ACTIONS(1677), - [sym_em_dash] = ACTIONS(1677), - [sym_en_dash] = ACTIONS(1679), - [sym_backslash_escape] = ACTIONS(1679), - [anon_sym_LT] = ACTIONS(1685), - [anon_sym_LBRACE_] = ACTIONS(1687), - [anon_sym__] = ACTIONS(2696), - [anon_sym_LBRACE_STAR] = ACTIONS(1692), - [anon_sym_STAR] = ACTIONS(1694), - [anon_sym_LBRACE_EQ] = ACTIONS(1696), - [anon_sym_LBRACE_PLUS] = ACTIONS(1698), - [anon_sym_LBRACE_DASH] = ACTIONS(1700), - [sym_symbol] = ACTIONS(1677), - [anon_sym_LBRACE_CARET] = ACTIONS(1702), - [anon_sym_CARET] = ACTIONS(1702), - [anon_sym_LBRACE_TILDE] = ACTIONS(1704), - [anon_sym_TILDE] = ACTIONS(1704), - [anon_sym_LBRACK_CARET] = ACTIONS(1706), - [anon_sym_BANG_LBRACK] = ACTIONS(1708), - [anon_sym_DOLLAR] = ACTIONS(1710), - [anon_sym_TODO] = ACTIONS(1712), - [anon_sym_WIP] = ACTIONS(1712), - [anon_sym_NOTE] = ACTIONS(1714), - [anon_sym_INFO] = ACTIONS(1714), - [anon_sym_XXX] = ACTIONS(1714), - [sym_fixme] = ACTIONS(1677), - [aux_sym__text_token1] = ACTIONS(1716), - [sym__newline_inline] = ACTIONS(1718), - [sym__verbatim_begin] = ACTIONS(1720), - }, - [284] = { - [sym_table_caption] = STATE(489), - [anon_sym_LBRACK] = ACTIONS(2714), - [anon_sym_PIPE] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2714), - [sym__whitespace1] = ACTIONS(2716), - [anon_sym_BSLASH] = ACTIONS(2714), - [sym_quotation_marks] = ACTIONS(2716), - [sym_ellipsis] = ACTIONS(2716), - [sym_em_dash] = ACTIONS(2716), - [sym_en_dash] = ACTIONS(2714), - [sym_backslash_escape] = ACTIONS(2714), - [anon_sym_LT] = ACTIONS(2716), - [anon_sym_LBRACE_] = ACTIONS(2716), - [anon_sym__] = ACTIONS(2716), - [anon_sym_LBRACE_STAR] = ACTIONS(2716), - [anon_sym_STAR] = ACTIONS(2716), - [anon_sym_LBRACE_EQ] = ACTIONS(2716), - [anon_sym_LBRACE_PLUS] = ACTIONS(2716), - [anon_sym_LBRACE_DASH] = ACTIONS(2716), - [sym_symbol] = ACTIONS(2716), - [anon_sym_LBRACE_CARET] = ACTIONS(2716), - [anon_sym_CARET] = ACTIONS(2716), - [anon_sym_LBRACE_TILDE] = ACTIONS(2716), - [anon_sym_TILDE] = ACTIONS(2716), - [anon_sym_LBRACK_CARET] = ACTIONS(2716), - [anon_sym_BANG_LBRACK] = ACTIONS(2716), - [anon_sym_DOLLAR] = ACTIONS(2716), - [anon_sym_TODO] = ACTIONS(2716), - [anon_sym_WIP] = ACTIONS(2716), - [anon_sym_NOTE] = ACTIONS(2716), - [anon_sym_INFO] = ACTIONS(2716), - [anon_sym_XXX] = ACTIONS(2716), - [sym_fixme] = ACTIONS(2716), - [aux_sym__text_token1] = ACTIONS(2714), - [sym__block_close] = ACTIONS(2716), - [sym__newline] = ACTIONS(2716), - [sym__newline_inline] = ACTIONS(2716), - [sym__heading1_begin] = ACTIONS(2716), - [sym__heading2_begin] = ACTIONS(2716), - [sym__heading3_begin] = ACTIONS(2716), - [sym__heading4_begin] = ACTIONS(2716), - [sym__heading5_begin] = ACTIONS(2716), - [sym__heading6_begin] = ACTIONS(2716), - [sym__div_begin] = ACTIONS(2716), - [sym__code_block_begin] = ACTIONS(2716), - [sym_list_marker_dash] = ACTIONS(2716), - [sym_list_marker_star] = ACTIONS(2716), - [sym_list_marker_plus] = ACTIONS(2716), - [sym__list_marker_task_begin] = ACTIONS(2716), - [sym_list_marker_definition] = ACTIONS(2716), - [sym_list_marker_decimal_period] = ACTIONS(2716), - [sym_list_marker_lower_alpha_period] = ACTIONS(2716), - [sym_list_marker_upper_alpha_period] = ACTIONS(2716), - [sym_list_marker_lower_roman_period] = ACTIONS(2716), - [sym_list_marker_upper_roman_period] = ACTIONS(2716), - [sym_list_marker_decimal_paren] = ACTIONS(2716), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2716), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2716), - [sym_list_marker_lower_roman_paren] = ACTIONS(2716), - [sym_list_marker_upper_roman_paren] = ACTIONS(2716), - [sym_list_marker_decimal_parens] = ACTIONS(2716), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2716), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2716), - [sym_list_marker_lower_roman_parens] = ACTIONS(2716), - [sym_list_marker_upper_roman_parens] = ACTIONS(2716), - [sym__block_quote_begin] = ACTIONS(2716), - [sym__block_quote_continuation] = ACTIONS(2716), - [sym__thematic_break_dash] = ACTIONS(2716), - [sym__thematic_break_star] = ACTIONS(2716), - [sym__footnote_begin] = ACTIONS(2716), - [sym__table_caption_begin] = ACTIONS(732), - [sym__verbatim_begin] = ACTIONS(2716), - }, - [285] = { - [sym__inline_element_with_newline] = STATE(215), - [sym__inline_core_element] = STATE(215), - [sym__inline_no_surrounding_spaces] = STATE(1596), - [sym__hard_line_break] = STATE(703), - [sym_hard_line_break] = STATE(519), - [sym__smart_punctuation] = STATE(703), - [sym_autolink] = STATE(703), - [sym_emphasis] = STATE(703), - [sym_emphasis_begin] = STATE(277), - [sym_strong] = STATE(703), - [sym_strong_begin] = STATE(278), - [sym_highlighted] = STATE(703), - [sym_insert] = STATE(703), - [sym_delete] = STATE(703), - [sym_superscript] = STATE(703), - [sym_subscript] = STATE(703), - [sym_footnote_reference] = STATE(703), - [sym__image] = STATE(703), - [sym_full_reference_image] = STATE(703), - [sym_collapsed_reference_image] = STATE(703), - [sym_inline_image] = STATE(703), - [sym__image_description] = STATE(1424), - [sym__link] = STATE(703), - [sym_full_reference_link] = STATE(703), - [sym_collapsed_reference_link] = STATE(703), - [sym_inline_link] = STATE(703), - [sym_link_text] = STATE(1423), - [sym__comment_with_spaces] = STATE(703), - [sym_span] = STATE(703), - [sym_raw_inline] = STATE(703), - [sym_math] = STATE(703), - [sym_verbatim] = STATE(703), - [sym__todo_highlights] = STATE(703), - [sym_todo] = STATE(703), - [sym_note] = STATE(703), - [sym__symbol_fallback] = STATE(703), - [aux_sym__text] = STATE(608), - [anon_sym_LBRACK] = ACTIONS(1675), - [anon_sym_PIPE] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(1679), - [sym__whitespace1] = ACTIONS(2710), - [anon_sym_BSLASH] = ACTIONS(1683), - [sym_quotation_marks] = ACTIONS(1677), - [sym_ellipsis] = ACTIONS(1677), - [sym_em_dash] = ACTIONS(1677), - [sym_en_dash] = ACTIONS(1679), - [sym_backslash_escape] = ACTIONS(1679), - [anon_sym_LT] = ACTIONS(1685), - [anon_sym_LBRACE_] = ACTIONS(1687), - [anon_sym__] = ACTIONS(2696), - [anon_sym_LBRACE_STAR] = ACTIONS(1692), - [anon_sym_STAR] = ACTIONS(1694), - [anon_sym_LBRACE_EQ] = ACTIONS(1696), - [anon_sym_LBRACE_PLUS] = ACTIONS(1698), - [anon_sym_LBRACE_DASH] = ACTIONS(1700), - [sym_symbol] = ACTIONS(1677), - [anon_sym_LBRACE_CARET] = ACTIONS(1702), - [anon_sym_CARET] = ACTIONS(1702), - [anon_sym_LBRACE_TILDE] = ACTIONS(1704), - [anon_sym_TILDE] = ACTIONS(1704), - [anon_sym_LBRACK_CARET] = ACTIONS(1706), - [anon_sym_BANG_LBRACK] = ACTIONS(1708), - [anon_sym_DOLLAR] = ACTIONS(1710), - [anon_sym_TODO] = ACTIONS(1712), - [anon_sym_WIP] = ACTIONS(1712), - [anon_sym_NOTE] = ACTIONS(1714), - [anon_sym_INFO] = ACTIONS(1714), - [anon_sym_XXX] = ACTIONS(1714), - [sym_fixme] = ACTIONS(1677), - [aux_sym__text_token1] = ACTIONS(1716), - [sym__newline_inline] = ACTIONS(1718), - [sym__verbatim_begin] = ACTIONS(1720), - }, - [286] = { - [sym__inline_element_with_newline] = STATE(215), - [sym__inline_core_element] = STATE(215), - [sym__inline_no_surrounding_spaces] = STATE(1640), - [sym__hard_line_break] = STATE(703), - [sym_hard_line_break] = STATE(519), - [sym__smart_punctuation] = STATE(703), - [sym_autolink] = STATE(703), - [sym_emphasis] = STATE(703), - [sym_emphasis_begin] = STATE(277), - [sym_strong] = STATE(703), - [sym_strong_begin] = STATE(278), - [sym_highlighted] = STATE(703), - [sym_insert] = STATE(703), - [sym_delete] = STATE(703), - [sym_superscript] = STATE(703), - [sym_subscript] = STATE(703), - [sym_footnote_reference] = STATE(703), - [sym__image] = STATE(703), - [sym_full_reference_image] = STATE(703), - [sym_collapsed_reference_image] = STATE(703), - [sym_inline_image] = STATE(703), - [sym__image_description] = STATE(1424), - [sym__link] = STATE(703), - [sym_full_reference_link] = STATE(703), - [sym_collapsed_reference_link] = STATE(703), - [sym_inline_link] = STATE(703), - [sym_link_text] = STATE(1423), - [sym__comment_with_spaces] = STATE(703), - [sym_span] = STATE(703), - [sym_raw_inline] = STATE(703), - [sym_math] = STATE(703), - [sym_verbatim] = STATE(703), - [sym__todo_highlights] = STATE(703), - [sym_todo] = STATE(703), - [sym_note] = STATE(703), - [sym__symbol_fallback] = STATE(703), - [aux_sym__text] = STATE(608), - [anon_sym_LBRACK] = ACTIONS(1675), - [anon_sym_PIPE] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(1679), - [sym__whitespace1] = ACTIONS(2710), - [anon_sym_BSLASH] = ACTIONS(1683), - [sym_quotation_marks] = ACTIONS(1677), - [sym_ellipsis] = ACTIONS(1677), - [sym_em_dash] = ACTIONS(1677), - [sym_en_dash] = ACTIONS(1679), - [sym_backslash_escape] = ACTIONS(1679), - [anon_sym_LT] = ACTIONS(1685), - [anon_sym_LBRACE_] = ACTIONS(1687), - [anon_sym__] = ACTIONS(2696), - [anon_sym_LBRACE_STAR] = ACTIONS(1692), - [anon_sym_STAR] = ACTIONS(1694), - [anon_sym_LBRACE_EQ] = ACTIONS(1696), - [anon_sym_LBRACE_PLUS] = ACTIONS(1698), - [anon_sym_LBRACE_DASH] = ACTIONS(1700), - [sym_symbol] = ACTIONS(1677), - [anon_sym_LBRACE_CARET] = ACTIONS(1702), - [anon_sym_CARET] = ACTIONS(1702), - [anon_sym_LBRACE_TILDE] = ACTIONS(1704), - [anon_sym_TILDE] = ACTIONS(1704), - [anon_sym_LBRACK_CARET] = ACTIONS(1706), - [anon_sym_BANG_LBRACK] = ACTIONS(1708), - [anon_sym_DOLLAR] = ACTIONS(1710), - [anon_sym_TODO] = ACTIONS(1712), - [anon_sym_WIP] = ACTIONS(1712), - [anon_sym_NOTE] = ACTIONS(1714), - [anon_sym_INFO] = ACTIONS(1714), - [anon_sym_XXX] = ACTIONS(1714), - [sym_fixme] = ACTIONS(1677), - [aux_sym__text_token1] = ACTIONS(1716), - [sym__newline_inline] = ACTIONS(1718), - [sym__verbatim_begin] = ACTIONS(1720), - }, - [287] = { - [sym__inline_element_with_newline] = STATE(212), - [sym__inline_core_element] = STATE(212), - [sym__inline_no_surrounding_spaces] = STATE(1595), - [sym__hard_line_break] = STATE(712), - [sym_hard_line_break] = STATE(522), - [sym__smart_punctuation] = STATE(712), - [sym_autolink] = STATE(712), - [sym_emphasis] = STATE(712), - [sym_emphasis_begin] = STATE(279), - [sym_strong] = STATE(712), - [sym_strong_begin] = STATE(280), - [sym_highlighted] = STATE(712), - [sym_insert] = STATE(712), - [sym_delete] = STATE(712), - [sym_superscript] = STATE(712), - [sym_subscript] = STATE(712), - [sym_footnote_reference] = STATE(712), - [sym__image] = STATE(712), - [sym_full_reference_image] = STATE(712), - [sym_collapsed_reference_image] = STATE(712), - [sym_inline_image] = STATE(712), - [sym__image_description] = STATE(1421), - [sym__link] = STATE(712), - [sym_full_reference_link] = STATE(712), - [sym_collapsed_reference_link] = STATE(712), - [sym_inline_link] = STATE(712), - [sym_link_text] = STATE(1419), - [sym__comment_with_spaces] = STATE(712), - [sym_span] = STATE(712), - [sym_raw_inline] = STATE(712), - [sym_math] = STATE(712), - [sym_verbatim] = STATE(712), - [sym__todo_highlights] = STATE(712), - [sym_todo] = STATE(712), - [sym_note] = STATE(712), - [sym__symbol_fallback] = STATE(712), - [aux_sym__text] = STATE(543), - [anon_sym_LBRACK] = ACTIONS(1623), - [anon_sym_PIPE] = ACTIONS(1625), - [anon_sym_LBRACE] = ACTIONS(1627), - [sym__whitespace1] = ACTIONS(2712), - [anon_sym_BSLASH] = ACTIONS(1631), - [sym_quotation_marks] = ACTIONS(1625), - [sym_ellipsis] = ACTIONS(1625), - [sym_em_dash] = ACTIONS(1625), - [sym_en_dash] = ACTIONS(1627), - [sym_backslash_escape] = ACTIONS(1627), - [anon_sym_LT] = ACTIONS(1633), - [anon_sym_LBRACE_] = ACTIONS(1635), - [anon_sym__] = ACTIONS(1637), - [anon_sym_LBRACE_STAR] = ACTIONS(1639), - [anon_sym_STAR] = ACTIONS(2700), - [anon_sym_LBRACE_EQ] = ACTIONS(1646), - [anon_sym_LBRACE_PLUS] = ACTIONS(1648), - [anon_sym_LBRACE_DASH] = ACTIONS(1650), - [sym_symbol] = ACTIONS(1625), - [anon_sym_LBRACE_CARET] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_LBRACE_TILDE] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1654), - [anon_sym_LBRACK_CARET] = ACTIONS(1656), - [anon_sym_BANG_LBRACK] = ACTIONS(1658), - [anon_sym_DOLLAR] = ACTIONS(1660), - [anon_sym_TODO] = ACTIONS(1662), - [anon_sym_WIP] = ACTIONS(1662), - [anon_sym_NOTE] = ACTIONS(1664), - [anon_sym_INFO] = ACTIONS(1664), - [anon_sym_XXX] = ACTIONS(1664), - [sym_fixme] = ACTIONS(1625), - [aux_sym__text_token1] = ACTIONS(1666), - [sym__newline_inline] = ACTIONS(1668), - [sym__verbatim_begin] = ACTIONS(1670), - }, - [288] = { - [sym__inline_element_with_newline] = STATE(212), - [sym__inline_core_element] = STATE(212), - [sym__inline_no_surrounding_spaces] = STATE(1639), - [sym__hard_line_break] = STATE(712), - [sym_hard_line_break] = STATE(522), - [sym__smart_punctuation] = STATE(712), - [sym_autolink] = STATE(712), - [sym_emphasis] = STATE(712), - [sym_emphasis_begin] = STATE(279), - [sym_strong] = STATE(712), - [sym_strong_begin] = STATE(280), - [sym_highlighted] = STATE(712), - [sym_insert] = STATE(712), - [sym_delete] = STATE(712), - [sym_superscript] = STATE(712), - [sym_subscript] = STATE(712), - [sym_footnote_reference] = STATE(712), - [sym__image] = STATE(712), - [sym_full_reference_image] = STATE(712), - [sym_collapsed_reference_image] = STATE(712), - [sym_inline_image] = STATE(712), - [sym__image_description] = STATE(1421), - [sym__link] = STATE(712), - [sym_full_reference_link] = STATE(712), - [sym_collapsed_reference_link] = STATE(712), - [sym_inline_link] = STATE(712), - [sym_link_text] = STATE(1419), - [sym__comment_with_spaces] = STATE(712), - [sym_span] = STATE(712), - [sym_raw_inline] = STATE(712), - [sym_math] = STATE(712), - [sym_verbatim] = STATE(712), - [sym__todo_highlights] = STATE(712), - [sym_todo] = STATE(712), - [sym_note] = STATE(712), - [sym__symbol_fallback] = STATE(712), - [aux_sym__text] = STATE(543), - [anon_sym_LBRACK] = ACTIONS(1623), - [anon_sym_PIPE] = ACTIONS(1625), - [anon_sym_LBRACE] = ACTIONS(1627), - [sym__whitespace1] = ACTIONS(2712), - [anon_sym_BSLASH] = ACTIONS(1631), - [sym_quotation_marks] = ACTIONS(1625), - [sym_ellipsis] = ACTIONS(1625), - [sym_em_dash] = ACTIONS(1625), - [sym_en_dash] = ACTIONS(1627), - [sym_backslash_escape] = ACTIONS(1627), - [anon_sym_LT] = ACTIONS(1633), - [anon_sym_LBRACE_] = ACTIONS(1635), - [anon_sym__] = ACTIONS(1637), - [anon_sym_LBRACE_STAR] = ACTIONS(1639), - [anon_sym_STAR] = ACTIONS(2700), - [anon_sym_LBRACE_EQ] = ACTIONS(1646), - [anon_sym_LBRACE_PLUS] = ACTIONS(1648), - [anon_sym_LBRACE_DASH] = ACTIONS(1650), - [sym_symbol] = ACTIONS(1625), - [anon_sym_LBRACE_CARET] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_LBRACE_TILDE] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1654), - [anon_sym_LBRACK_CARET] = ACTIONS(1656), - [anon_sym_BANG_LBRACK] = ACTIONS(1658), - [anon_sym_DOLLAR] = ACTIONS(1660), - [anon_sym_TODO] = ACTIONS(1662), - [anon_sym_WIP] = ACTIONS(1662), - [anon_sym_NOTE] = ACTIONS(1664), - [anon_sym_INFO] = ACTIONS(1664), - [anon_sym_XXX] = ACTIONS(1664), - [sym_fixme] = ACTIONS(1625), - [aux_sym__text_token1] = ACTIONS(1666), - [sym__newline_inline] = ACTIONS(1668), - [sym__verbatim_begin] = ACTIONS(1670), - }, - [289] = { - [sym__inline_element_with_newline] = STATE(215), - [sym__inline_core_element] = STATE(215), - [sym__inline_no_surrounding_spaces] = STATE(1592), - [sym__hard_line_break] = STATE(703), - [sym_hard_line_break] = STATE(519), - [sym__smart_punctuation] = STATE(703), - [sym_autolink] = STATE(703), - [sym_emphasis] = STATE(703), - [sym_emphasis_begin] = STATE(277), - [sym_strong] = STATE(703), - [sym_strong_begin] = STATE(278), - [sym_highlighted] = STATE(703), - [sym_insert] = STATE(703), - [sym_delete] = STATE(703), - [sym_superscript] = STATE(703), - [sym_subscript] = STATE(703), - [sym_footnote_reference] = STATE(703), - [sym__image] = STATE(703), - [sym_full_reference_image] = STATE(703), - [sym_collapsed_reference_image] = STATE(703), - [sym_inline_image] = STATE(703), - [sym__image_description] = STATE(1424), - [sym__link] = STATE(703), - [sym_full_reference_link] = STATE(703), - [sym_collapsed_reference_link] = STATE(703), - [sym_inline_link] = STATE(703), - [sym_link_text] = STATE(1423), - [sym__comment_with_spaces] = STATE(703), - [sym_span] = STATE(703), - [sym_raw_inline] = STATE(703), - [sym_math] = STATE(703), - [sym_verbatim] = STATE(703), - [sym__todo_highlights] = STATE(703), - [sym_todo] = STATE(703), - [sym_note] = STATE(703), - [sym__symbol_fallback] = STATE(703), - [aux_sym__text] = STATE(608), - [anon_sym_LBRACK] = ACTIONS(1675), - [anon_sym_PIPE] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(1679), - [sym__whitespace1] = ACTIONS(2710), - [anon_sym_BSLASH] = ACTIONS(1683), - [sym_quotation_marks] = ACTIONS(1677), - [sym_ellipsis] = ACTIONS(1677), - [sym_em_dash] = ACTIONS(1677), - [sym_en_dash] = ACTIONS(1679), - [sym_backslash_escape] = ACTIONS(1679), - [anon_sym_LT] = ACTIONS(1685), - [anon_sym_LBRACE_] = ACTIONS(1687), - [anon_sym__] = ACTIONS(2696), - [anon_sym_LBRACE_STAR] = ACTIONS(1692), - [anon_sym_STAR] = ACTIONS(1694), - [anon_sym_LBRACE_EQ] = ACTIONS(1696), - [anon_sym_LBRACE_PLUS] = ACTIONS(1698), - [anon_sym_LBRACE_DASH] = ACTIONS(1700), - [sym_symbol] = ACTIONS(1677), - [anon_sym_LBRACE_CARET] = ACTIONS(1702), - [anon_sym_CARET] = ACTIONS(1702), - [anon_sym_LBRACE_TILDE] = ACTIONS(1704), - [anon_sym_TILDE] = ACTIONS(1704), - [anon_sym_LBRACK_CARET] = ACTIONS(1706), - [anon_sym_BANG_LBRACK] = ACTIONS(1708), - [anon_sym_DOLLAR] = ACTIONS(1710), - [anon_sym_TODO] = ACTIONS(1712), - [anon_sym_WIP] = ACTIONS(1712), - [anon_sym_NOTE] = ACTIONS(1714), - [anon_sym_INFO] = ACTIONS(1714), - [anon_sym_XXX] = ACTIONS(1714), - [sym_fixme] = ACTIONS(1677), - [aux_sym__text_token1] = ACTIONS(1716), - [sym__newline_inline] = ACTIONS(1718), - [sym__verbatim_begin] = ACTIONS(1720), - }, - [290] = { - [sym__inline_element_with_newline] = STATE(215), - [sym__inline_core_element] = STATE(215), - [sym__inline_no_surrounding_spaces] = STATE(1646), - [sym__hard_line_break] = STATE(703), - [sym_hard_line_break] = STATE(519), - [sym__smart_punctuation] = STATE(703), - [sym_autolink] = STATE(703), - [sym_emphasis] = STATE(703), - [sym_emphasis_begin] = STATE(277), - [sym_strong] = STATE(703), - [sym_strong_begin] = STATE(278), - [sym_highlighted] = STATE(703), - [sym_insert] = STATE(703), - [sym_delete] = STATE(703), - [sym_superscript] = STATE(703), - [sym_subscript] = STATE(703), - [sym_footnote_reference] = STATE(703), - [sym__image] = STATE(703), - [sym_full_reference_image] = STATE(703), - [sym_collapsed_reference_image] = STATE(703), - [sym_inline_image] = STATE(703), - [sym__image_description] = STATE(1424), - [sym__link] = STATE(703), - [sym_full_reference_link] = STATE(703), - [sym_collapsed_reference_link] = STATE(703), - [sym_inline_link] = STATE(703), - [sym_link_text] = STATE(1423), - [sym__comment_with_spaces] = STATE(703), - [sym_span] = STATE(703), - [sym_raw_inline] = STATE(703), - [sym_math] = STATE(703), - [sym_verbatim] = STATE(703), - [sym__todo_highlights] = STATE(703), - [sym_todo] = STATE(703), - [sym_note] = STATE(703), - [sym__symbol_fallback] = STATE(703), - [aux_sym__text] = STATE(608), - [anon_sym_LBRACK] = ACTIONS(1675), - [anon_sym_PIPE] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(1679), - [sym__whitespace1] = ACTIONS(2710), - [anon_sym_BSLASH] = ACTIONS(1683), - [sym_quotation_marks] = ACTIONS(1677), - [sym_ellipsis] = ACTIONS(1677), - [sym_em_dash] = ACTIONS(1677), - [sym_en_dash] = ACTIONS(1679), - [sym_backslash_escape] = ACTIONS(1679), - [anon_sym_LT] = ACTIONS(1685), - [anon_sym_LBRACE_] = ACTIONS(1687), - [anon_sym__] = ACTIONS(2696), - [anon_sym_LBRACE_STAR] = ACTIONS(1692), - [anon_sym_STAR] = ACTIONS(1694), - [anon_sym_LBRACE_EQ] = ACTIONS(1696), - [anon_sym_LBRACE_PLUS] = ACTIONS(1698), - [anon_sym_LBRACE_DASH] = ACTIONS(1700), - [sym_symbol] = ACTIONS(1677), - [anon_sym_LBRACE_CARET] = ACTIONS(1702), - [anon_sym_CARET] = ACTIONS(1702), - [anon_sym_LBRACE_TILDE] = ACTIONS(1704), - [anon_sym_TILDE] = ACTIONS(1704), - [anon_sym_LBRACK_CARET] = ACTIONS(1706), - [anon_sym_BANG_LBRACK] = ACTIONS(1708), - [anon_sym_DOLLAR] = ACTIONS(1710), - [anon_sym_TODO] = ACTIONS(1712), - [anon_sym_WIP] = ACTIONS(1712), - [anon_sym_NOTE] = ACTIONS(1714), - [anon_sym_INFO] = ACTIONS(1714), - [anon_sym_XXX] = ACTIONS(1714), - [sym_fixme] = ACTIONS(1677), - [aux_sym__text_token1] = ACTIONS(1716), - [sym__newline_inline] = ACTIONS(1718), - [sym__verbatim_begin] = ACTIONS(1720), - }, - [291] = { - [sym__inline_element_with_newline] = STATE(215), - [sym__inline_core_element] = STATE(215), - [sym__inline_no_surrounding_spaces] = STATE(1634), - [sym__hard_line_break] = STATE(703), - [sym_hard_line_break] = STATE(519), - [sym__smart_punctuation] = STATE(703), - [sym_autolink] = STATE(703), - [sym_emphasis] = STATE(703), - [sym_emphasis_begin] = STATE(277), - [sym_strong] = STATE(703), - [sym_strong_begin] = STATE(278), - [sym_highlighted] = STATE(703), - [sym_insert] = STATE(703), - [sym_delete] = STATE(703), - [sym_superscript] = STATE(703), - [sym_subscript] = STATE(703), - [sym_footnote_reference] = STATE(703), - [sym__image] = STATE(703), - [sym_full_reference_image] = STATE(703), - [sym_collapsed_reference_image] = STATE(703), - [sym_inline_image] = STATE(703), - [sym__image_description] = STATE(1424), - [sym__link] = STATE(703), - [sym_full_reference_link] = STATE(703), - [sym_collapsed_reference_link] = STATE(703), - [sym_inline_link] = STATE(703), - [sym_link_text] = STATE(1423), - [sym__comment_with_spaces] = STATE(703), - [sym_span] = STATE(703), - [sym_raw_inline] = STATE(703), - [sym_math] = STATE(703), - [sym_verbatim] = STATE(703), - [sym__todo_highlights] = STATE(703), - [sym_todo] = STATE(703), - [sym_note] = STATE(703), - [sym__symbol_fallback] = STATE(703), - [aux_sym__text] = STATE(608), - [anon_sym_LBRACK] = ACTIONS(1675), - [anon_sym_PIPE] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(1679), - [sym__whitespace1] = ACTIONS(2710), - [anon_sym_BSLASH] = ACTIONS(1683), - [sym_quotation_marks] = ACTIONS(1677), - [sym_ellipsis] = ACTIONS(1677), - [sym_em_dash] = ACTIONS(1677), - [sym_en_dash] = ACTIONS(1679), - [sym_backslash_escape] = ACTIONS(1679), - [anon_sym_LT] = ACTIONS(1685), - [anon_sym_LBRACE_] = ACTIONS(1687), - [anon_sym__] = ACTIONS(2696), - [anon_sym_LBRACE_STAR] = ACTIONS(1692), - [anon_sym_STAR] = ACTIONS(1694), - [anon_sym_LBRACE_EQ] = ACTIONS(1696), - [anon_sym_LBRACE_PLUS] = ACTIONS(1698), - [anon_sym_LBRACE_DASH] = ACTIONS(1700), - [sym_symbol] = ACTIONS(1677), - [anon_sym_LBRACE_CARET] = ACTIONS(1702), - [anon_sym_CARET] = ACTIONS(1702), - [anon_sym_LBRACE_TILDE] = ACTIONS(1704), - [anon_sym_TILDE] = ACTIONS(1704), - [anon_sym_LBRACK_CARET] = ACTIONS(1706), - [anon_sym_BANG_LBRACK] = ACTIONS(1708), - [anon_sym_DOLLAR] = ACTIONS(1710), - [anon_sym_TODO] = ACTIONS(1712), - [anon_sym_WIP] = ACTIONS(1712), - [anon_sym_NOTE] = ACTIONS(1714), - [anon_sym_INFO] = ACTIONS(1714), - [anon_sym_XXX] = ACTIONS(1714), - [sym_fixme] = ACTIONS(1677), - [aux_sym__text_token1] = ACTIONS(1716), - [sym__newline_inline] = ACTIONS(1718), - [sym__verbatim_begin] = ACTIONS(1720), - }, - [292] = { - [sym_table_caption] = STATE(454), - [anon_sym_LBRACK] = ACTIONS(2714), - [anon_sym_PIPE] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2714), - [sym__whitespace1] = ACTIONS(2716), - [anon_sym_BSLASH] = ACTIONS(2714), - [sym_quotation_marks] = ACTIONS(2716), - [sym_ellipsis] = ACTIONS(2716), - [sym_em_dash] = ACTIONS(2716), - [sym_en_dash] = ACTIONS(2714), - [sym_backslash_escape] = ACTIONS(2714), - [anon_sym_LT] = ACTIONS(2716), - [anon_sym_LBRACE_] = ACTIONS(2716), - [anon_sym__] = ACTIONS(2716), - [anon_sym_LBRACE_STAR] = ACTIONS(2716), - [anon_sym_STAR] = ACTIONS(2716), - [anon_sym_LBRACE_EQ] = ACTIONS(2716), - [anon_sym_LBRACE_PLUS] = ACTIONS(2716), - [anon_sym_LBRACE_DASH] = ACTIONS(2716), - [sym_symbol] = ACTIONS(2716), - [anon_sym_LBRACE_CARET] = ACTIONS(2716), - [anon_sym_CARET] = ACTIONS(2716), - [anon_sym_LBRACE_TILDE] = ACTIONS(2716), - [anon_sym_TILDE] = ACTIONS(2716), - [anon_sym_LBRACK_CARET] = ACTIONS(2716), - [anon_sym_BANG_LBRACK] = ACTIONS(2716), - [anon_sym_DOLLAR] = ACTIONS(2716), - [anon_sym_TODO] = ACTIONS(2716), - [anon_sym_WIP] = ACTIONS(2716), - [anon_sym_NOTE] = ACTIONS(2716), - [anon_sym_INFO] = ACTIONS(2716), - [anon_sym_XXX] = ACTIONS(2716), - [sym_fixme] = ACTIONS(2716), - [aux_sym__text_token1] = ACTIONS(2714), - [sym__newline] = ACTIONS(2716), - [sym__newline_inline] = ACTIONS(2716), - [sym__heading1_begin] = ACTIONS(2716), - [sym__heading2_begin] = ACTIONS(2716), - [sym__heading3_begin] = ACTIONS(2716), - [sym__heading4_begin] = ACTIONS(2716), - [sym__heading5_begin] = ACTIONS(2716), - [sym__heading6_begin] = ACTIONS(2716), - [sym__div_begin] = ACTIONS(2716), - [sym__code_block_begin] = ACTIONS(2716), - [sym_list_marker_dash] = ACTIONS(2716), - [sym_list_marker_star] = ACTIONS(2716), - [sym_list_marker_plus] = ACTIONS(2716), - [sym__list_marker_task_begin] = ACTIONS(2716), - [sym_list_marker_definition] = ACTIONS(2716), - [sym_list_marker_decimal_period] = ACTIONS(2716), - [sym_list_marker_lower_alpha_period] = ACTIONS(2716), - [sym_list_marker_upper_alpha_period] = ACTIONS(2716), - [sym_list_marker_lower_roman_period] = ACTIONS(2716), - [sym_list_marker_upper_roman_period] = ACTIONS(2716), - [sym_list_marker_decimal_paren] = ACTIONS(2716), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2716), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2716), - [sym_list_marker_lower_roman_paren] = ACTIONS(2716), - [sym_list_marker_upper_roman_paren] = ACTIONS(2716), - [sym_list_marker_decimal_parens] = ACTIONS(2716), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2716), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2716), - [sym_list_marker_lower_roman_parens] = ACTIONS(2716), - [sym_list_marker_upper_roman_parens] = ACTIONS(2716), - [sym__block_quote_begin] = ACTIONS(2716), - [sym__block_quote_continuation] = ACTIONS(2716), - [sym__thematic_break_dash] = ACTIONS(2716), - [sym__thematic_break_star] = ACTIONS(2716), - [sym__footnote_begin] = ACTIONS(2716), - [sym__footnote_end] = ACTIONS(2716), - [sym__table_caption_begin] = ACTIONS(936), - [sym__verbatim_begin] = ACTIONS(2716), - }, - [293] = { - [sym__inline_element_with_newline] = STATE(212), - [sym__inline_core_element] = STATE(212), - [sym__inline_no_surrounding_spaces] = STATE(1705), - [sym__hard_line_break] = STATE(712), - [sym_hard_line_break] = STATE(522), - [sym__smart_punctuation] = STATE(712), - [sym_autolink] = STATE(712), - [sym_emphasis] = STATE(712), - [sym_emphasis_begin] = STATE(279), - [sym_strong] = STATE(712), - [sym_strong_begin] = STATE(280), - [sym_highlighted] = STATE(712), - [sym_insert] = STATE(712), - [sym_delete] = STATE(712), - [sym_superscript] = STATE(712), - [sym_subscript] = STATE(712), - [sym_footnote_reference] = STATE(712), - [sym__image] = STATE(712), - [sym_full_reference_image] = STATE(712), - [sym_collapsed_reference_image] = STATE(712), - [sym_inline_image] = STATE(712), - [sym__image_description] = STATE(1421), - [sym__link] = STATE(712), - [sym_full_reference_link] = STATE(712), - [sym_collapsed_reference_link] = STATE(712), - [sym_inline_link] = STATE(712), - [sym_link_text] = STATE(1419), - [sym__comment_with_spaces] = STATE(712), - [sym_span] = STATE(712), - [sym_raw_inline] = STATE(712), - [sym_math] = STATE(712), - [sym_verbatim] = STATE(712), - [sym__todo_highlights] = STATE(712), - [sym_todo] = STATE(712), - [sym_note] = STATE(712), - [sym__symbol_fallback] = STATE(712), - [aux_sym__text] = STATE(543), - [anon_sym_LBRACK] = ACTIONS(1623), - [anon_sym_PIPE] = ACTIONS(1625), - [anon_sym_LBRACE] = ACTIONS(1627), - [sym__whitespace1] = ACTIONS(2712), - [anon_sym_BSLASH] = ACTIONS(1631), - [sym_quotation_marks] = ACTIONS(1625), - [sym_ellipsis] = ACTIONS(1625), - [sym_em_dash] = ACTIONS(1625), - [sym_en_dash] = ACTIONS(1627), - [sym_backslash_escape] = ACTIONS(1627), - [anon_sym_LT] = ACTIONS(1633), - [anon_sym_LBRACE_] = ACTIONS(1635), - [anon_sym__] = ACTIONS(1637), - [anon_sym_LBRACE_STAR] = ACTIONS(1639), - [anon_sym_STAR] = ACTIONS(2700), - [anon_sym_LBRACE_EQ] = ACTIONS(1646), - [anon_sym_LBRACE_PLUS] = ACTIONS(1648), - [anon_sym_LBRACE_DASH] = ACTIONS(1650), - [sym_symbol] = ACTIONS(1625), - [anon_sym_LBRACE_CARET] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_LBRACE_TILDE] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1654), - [anon_sym_LBRACK_CARET] = ACTIONS(1656), - [anon_sym_BANG_LBRACK] = ACTIONS(1658), - [anon_sym_DOLLAR] = ACTIONS(1660), - [anon_sym_TODO] = ACTIONS(1662), - [anon_sym_WIP] = ACTIONS(1662), - [anon_sym_NOTE] = ACTIONS(1664), - [anon_sym_INFO] = ACTIONS(1664), - [anon_sym_XXX] = ACTIONS(1664), - [sym_fixme] = ACTIONS(1625), - [aux_sym__text_token1] = ACTIONS(1666), - [sym__newline_inline] = ACTIONS(1668), - [sym__verbatim_begin] = ACTIONS(1670), - }, - [294] = { - [sym__inline_element_with_newline] = STATE(212), - [sym__inline_core_element] = STATE(212), - [sym__inline_no_surrounding_spaces] = STATE(1590), - [sym__hard_line_break] = STATE(712), - [sym_hard_line_break] = STATE(522), - [sym__smart_punctuation] = STATE(712), - [sym_autolink] = STATE(712), - [sym_emphasis] = STATE(712), - [sym_emphasis_begin] = STATE(279), - [sym_strong] = STATE(712), - [sym_strong_begin] = STATE(280), - [sym_highlighted] = STATE(712), - [sym_insert] = STATE(712), - [sym_delete] = STATE(712), - [sym_superscript] = STATE(712), - [sym_subscript] = STATE(712), - [sym_footnote_reference] = STATE(712), - [sym__image] = STATE(712), - [sym_full_reference_image] = STATE(712), - [sym_collapsed_reference_image] = STATE(712), - [sym_inline_image] = STATE(712), - [sym__image_description] = STATE(1421), - [sym__link] = STATE(712), - [sym_full_reference_link] = STATE(712), - [sym_collapsed_reference_link] = STATE(712), - [sym_inline_link] = STATE(712), - [sym_link_text] = STATE(1419), - [sym__comment_with_spaces] = STATE(712), - [sym_span] = STATE(712), - [sym_raw_inline] = STATE(712), - [sym_math] = STATE(712), - [sym_verbatim] = STATE(712), - [sym__todo_highlights] = STATE(712), - [sym_todo] = STATE(712), - [sym_note] = STATE(712), - [sym__symbol_fallback] = STATE(712), - [aux_sym__text] = STATE(543), - [anon_sym_LBRACK] = ACTIONS(1623), - [anon_sym_PIPE] = ACTIONS(1625), - [anon_sym_LBRACE] = ACTIONS(1627), - [sym__whitespace1] = ACTIONS(2712), - [anon_sym_BSLASH] = ACTIONS(1631), - [sym_quotation_marks] = ACTIONS(1625), - [sym_ellipsis] = ACTIONS(1625), - [sym_em_dash] = ACTIONS(1625), - [sym_en_dash] = ACTIONS(1627), - [sym_backslash_escape] = ACTIONS(1627), - [anon_sym_LT] = ACTIONS(1633), - [anon_sym_LBRACE_] = ACTIONS(1635), - [anon_sym__] = ACTIONS(1637), - [anon_sym_LBRACE_STAR] = ACTIONS(1639), - [anon_sym_STAR] = ACTIONS(2700), - [anon_sym_LBRACE_EQ] = ACTIONS(1646), - [anon_sym_LBRACE_PLUS] = ACTIONS(1648), - [anon_sym_LBRACE_DASH] = ACTIONS(1650), - [sym_symbol] = ACTIONS(1625), - [anon_sym_LBRACE_CARET] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_LBRACE_TILDE] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1654), - [anon_sym_LBRACK_CARET] = ACTIONS(1656), - [anon_sym_BANG_LBRACK] = ACTIONS(1658), - [anon_sym_DOLLAR] = ACTIONS(1660), - [anon_sym_TODO] = ACTIONS(1662), - [anon_sym_WIP] = ACTIONS(1662), - [anon_sym_NOTE] = ACTIONS(1664), - [anon_sym_INFO] = ACTIONS(1664), - [anon_sym_XXX] = ACTIONS(1664), - [sym_fixme] = ACTIONS(1625), - [aux_sym__text_token1] = ACTIONS(1666), - [sym__newline_inline] = ACTIONS(1668), - [sym__verbatim_begin] = ACTIONS(1670), - }, - [295] = { - [sym__inline_element_with_newline] = STATE(212), - [sym__inline_core_element] = STATE(212), - [sym__inline_no_surrounding_spaces] = STATE(1700), - [sym__hard_line_break] = STATE(712), - [sym_hard_line_break] = STATE(522), - [sym__smart_punctuation] = STATE(712), - [sym_autolink] = STATE(712), - [sym_emphasis] = STATE(712), - [sym_emphasis_begin] = STATE(279), - [sym_strong] = STATE(712), - [sym_strong_begin] = STATE(280), - [sym_highlighted] = STATE(712), - [sym_insert] = STATE(712), - [sym_delete] = STATE(712), - [sym_superscript] = STATE(712), - [sym_subscript] = STATE(712), - [sym_footnote_reference] = STATE(712), - [sym__image] = STATE(712), - [sym_full_reference_image] = STATE(712), - [sym_collapsed_reference_image] = STATE(712), - [sym_inline_image] = STATE(712), - [sym__image_description] = STATE(1421), - [sym__link] = STATE(712), - [sym_full_reference_link] = STATE(712), - [sym_collapsed_reference_link] = STATE(712), - [sym_inline_link] = STATE(712), - [sym_link_text] = STATE(1419), - [sym__comment_with_spaces] = STATE(712), - [sym_span] = STATE(712), - [sym_raw_inline] = STATE(712), - [sym_math] = STATE(712), - [sym_verbatim] = STATE(712), - [sym__todo_highlights] = STATE(712), - [sym_todo] = STATE(712), - [sym_note] = STATE(712), - [sym__symbol_fallback] = STATE(712), - [aux_sym__text] = STATE(543), - [anon_sym_LBRACK] = ACTIONS(1623), - [anon_sym_PIPE] = ACTIONS(1625), - [anon_sym_LBRACE] = ACTIONS(1627), - [sym__whitespace1] = ACTIONS(2712), - [anon_sym_BSLASH] = ACTIONS(1631), - [sym_quotation_marks] = ACTIONS(1625), - [sym_ellipsis] = ACTIONS(1625), - [sym_em_dash] = ACTIONS(1625), - [sym_en_dash] = ACTIONS(1627), - [sym_backslash_escape] = ACTIONS(1627), - [anon_sym_LT] = ACTIONS(1633), - [anon_sym_LBRACE_] = ACTIONS(1635), - [anon_sym__] = ACTIONS(1637), - [anon_sym_LBRACE_STAR] = ACTIONS(1639), - [anon_sym_STAR] = ACTIONS(2700), - [anon_sym_LBRACE_EQ] = ACTIONS(1646), - [anon_sym_LBRACE_PLUS] = ACTIONS(1648), - [anon_sym_LBRACE_DASH] = ACTIONS(1650), - [sym_symbol] = ACTIONS(1625), - [anon_sym_LBRACE_CARET] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_LBRACE_TILDE] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1654), - [anon_sym_LBRACK_CARET] = ACTIONS(1656), - [anon_sym_BANG_LBRACK] = ACTIONS(1658), - [anon_sym_DOLLAR] = ACTIONS(1660), - [anon_sym_TODO] = ACTIONS(1662), - [anon_sym_WIP] = ACTIONS(1662), - [anon_sym_NOTE] = ACTIONS(1664), - [anon_sym_INFO] = ACTIONS(1664), - [anon_sym_XXX] = ACTIONS(1664), - [sym_fixme] = ACTIONS(1625), - [aux_sym__text_token1] = ACTIONS(1666), - [sym__newline_inline] = ACTIONS(1668), - [sym__verbatim_begin] = ACTIONS(1670), - }, - [296] = { - [sym__inline_element_with_newline] = STATE(215), - [sym__inline_core_element] = STATE(215), - [sym__inline_no_surrounding_spaces] = STATE(1699), - [sym__hard_line_break] = STATE(703), - [sym_hard_line_break] = STATE(519), - [sym__smart_punctuation] = STATE(703), - [sym_autolink] = STATE(703), - [sym_emphasis] = STATE(703), - [sym_emphasis_begin] = STATE(277), - [sym_strong] = STATE(703), - [sym_strong_begin] = STATE(278), - [sym_highlighted] = STATE(703), - [sym_insert] = STATE(703), - [sym_delete] = STATE(703), - [sym_superscript] = STATE(703), - [sym_subscript] = STATE(703), - [sym_footnote_reference] = STATE(703), - [sym__image] = STATE(703), - [sym_full_reference_image] = STATE(703), - [sym_collapsed_reference_image] = STATE(703), - [sym_inline_image] = STATE(703), - [sym__image_description] = STATE(1424), - [sym__link] = STATE(703), - [sym_full_reference_link] = STATE(703), - [sym_collapsed_reference_link] = STATE(703), - [sym_inline_link] = STATE(703), - [sym_link_text] = STATE(1423), - [sym__comment_with_spaces] = STATE(703), - [sym_span] = STATE(703), - [sym_raw_inline] = STATE(703), - [sym_math] = STATE(703), - [sym_verbatim] = STATE(703), - [sym__todo_highlights] = STATE(703), - [sym_todo] = STATE(703), - [sym_note] = STATE(703), - [sym__symbol_fallback] = STATE(703), - [aux_sym__text] = STATE(608), - [anon_sym_LBRACK] = ACTIONS(1675), - [anon_sym_PIPE] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(1679), - [sym__whitespace1] = ACTIONS(2710), - [anon_sym_BSLASH] = ACTIONS(1683), - [sym_quotation_marks] = ACTIONS(1677), - [sym_ellipsis] = ACTIONS(1677), - [sym_em_dash] = ACTIONS(1677), - [sym_en_dash] = ACTIONS(1679), - [sym_backslash_escape] = ACTIONS(1679), - [anon_sym_LT] = ACTIONS(1685), - [anon_sym_LBRACE_] = ACTIONS(1687), - [anon_sym__] = ACTIONS(2696), - [anon_sym_LBRACE_STAR] = ACTIONS(1692), - [anon_sym_STAR] = ACTIONS(1694), - [anon_sym_LBRACE_EQ] = ACTIONS(1696), - [anon_sym_LBRACE_PLUS] = ACTIONS(1698), - [anon_sym_LBRACE_DASH] = ACTIONS(1700), - [sym_symbol] = ACTIONS(1677), - [anon_sym_LBRACE_CARET] = ACTIONS(1702), - [anon_sym_CARET] = ACTIONS(1702), - [anon_sym_LBRACE_TILDE] = ACTIONS(1704), - [anon_sym_TILDE] = ACTIONS(1704), - [anon_sym_LBRACK_CARET] = ACTIONS(1706), - [anon_sym_BANG_LBRACK] = ACTIONS(1708), - [anon_sym_DOLLAR] = ACTIONS(1710), - [anon_sym_TODO] = ACTIONS(1712), - [anon_sym_WIP] = ACTIONS(1712), - [anon_sym_NOTE] = ACTIONS(1714), - [anon_sym_INFO] = ACTIONS(1714), - [anon_sym_XXX] = ACTIONS(1714), - [sym_fixme] = ACTIONS(1677), - [aux_sym__text_token1] = ACTIONS(1716), - [sym__newline_inline] = ACTIONS(1718), - [sym__verbatim_begin] = ACTIONS(1720), - }, - [297] = { - [sym_table_caption] = STATE(479), - [ts_builtin_sym_end] = ACTIONS(2716), - [anon_sym_LBRACK] = ACTIONS(2714), - [anon_sym_PIPE] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2714), - [sym__whitespace1] = ACTIONS(2716), - [anon_sym_BSLASH] = ACTIONS(2714), - [sym_quotation_marks] = ACTIONS(2716), - [sym_ellipsis] = ACTIONS(2716), - [sym_em_dash] = ACTIONS(2716), - [sym_en_dash] = ACTIONS(2714), - [sym_backslash_escape] = ACTIONS(2714), - [anon_sym_LT] = ACTIONS(2716), - [anon_sym_LBRACE_] = ACTIONS(2716), - [anon_sym__] = ACTIONS(2716), - [anon_sym_LBRACE_STAR] = ACTIONS(2716), - [anon_sym_STAR] = ACTIONS(2716), - [anon_sym_LBRACE_EQ] = ACTIONS(2716), - [anon_sym_LBRACE_PLUS] = ACTIONS(2716), - [anon_sym_LBRACE_DASH] = ACTIONS(2716), - [sym_symbol] = ACTIONS(2716), - [anon_sym_LBRACE_CARET] = ACTIONS(2716), - [anon_sym_CARET] = ACTIONS(2716), - [anon_sym_LBRACE_TILDE] = ACTIONS(2716), - [anon_sym_TILDE] = ACTIONS(2716), - [anon_sym_LBRACK_CARET] = ACTIONS(2716), - [anon_sym_BANG_LBRACK] = ACTIONS(2716), - [anon_sym_DOLLAR] = ACTIONS(2716), - [anon_sym_TODO] = ACTIONS(2716), - [anon_sym_WIP] = ACTIONS(2716), - [anon_sym_NOTE] = ACTIONS(2716), - [anon_sym_INFO] = ACTIONS(2716), - [anon_sym_XXX] = ACTIONS(2716), - [sym_fixme] = ACTIONS(2716), - [aux_sym__text_token1] = ACTIONS(2714), - [sym__newline] = ACTIONS(2716), - [sym__newline_inline] = ACTIONS(2716), - [sym__heading1_begin] = ACTIONS(2716), - [sym__heading2_begin] = ACTIONS(2716), - [sym__heading3_begin] = ACTIONS(2716), - [sym__heading4_begin] = ACTIONS(2716), - [sym__heading5_begin] = ACTIONS(2716), - [sym__heading6_begin] = ACTIONS(2716), - [sym__div_begin] = ACTIONS(2716), - [sym__code_block_begin] = ACTIONS(2716), - [sym_list_marker_dash] = ACTIONS(2716), - [sym_list_marker_star] = ACTIONS(2716), - [sym_list_marker_plus] = ACTIONS(2716), - [sym__list_marker_task_begin] = ACTIONS(2716), - [sym_list_marker_definition] = ACTIONS(2716), - [sym_list_marker_decimal_period] = ACTIONS(2716), - [sym_list_marker_lower_alpha_period] = ACTIONS(2716), - [sym_list_marker_upper_alpha_period] = ACTIONS(2716), - [sym_list_marker_lower_roman_period] = ACTIONS(2716), - [sym_list_marker_upper_roman_period] = ACTIONS(2716), - [sym_list_marker_decimal_paren] = ACTIONS(2716), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2716), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2716), - [sym_list_marker_lower_roman_paren] = ACTIONS(2716), - [sym_list_marker_upper_roman_paren] = ACTIONS(2716), - [sym_list_marker_decimal_parens] = ACTIONS(2716), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2716), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2716), - [sym_list_marker_lower_roman_parens] = ACTIONS(2716), - [sym_list_marker_upper_roman_parens] = ACTIONS(2716), - [sym__block_quote_begin] = ACTIONS(2716), - [sym__block_quote_continuation] = ACTIONS(2716), - [sym__thematic_break_dash] = ACTIONS(2716), - [sym__thematic_break_star] = ACTIONS(2716), - [sym__footnote_begin] = ACTIONS(2716), - [sym__table_caption_begin] = ACTIONS(942), - [sym__verbatim_begin] = ACTIONS(2716), - }, - [298] = { - [sym__inline_element_with_newline] = STATE(212), - [sym__inline_core_element] = STATE(212), - [sym__inline_no_surrounding_spaces] = STATE(1611), - [sym__hard_line_break] = STATE(712), - [sym_hard_line_break] = STATE(522), - [sym__smart_punctuation] = STATE(712), - [sym_autolink] = STATE(712), - [sym_emphasis] = STATE(712), - [sym_emphasis_begin] = STATE(279), - [sym_strong] = STATE(712), - [sym_strong_begin] = STATE(280), - [sym_highlighted] = STATE(712), - [sym_insert] = STATE(712), - [sym_delete] = STATE(712), - [sym_superscript] = STATE(712), - [sym_subscript] = STATE(712), - [sym_footnote_reference] = STATE(712), - [sym__image] = STATE(712), - [sym_full_reference_image] = STATE(712), - [sym_collapsed_reference_image] = STATE(712), - [sym_inline_image] = STATE(712), - [sym__image_description] = STATE(1421), - [sym__link] = STATE(712), - [sym_full_reference_link] = STATE(712), - [sym_collapsed_reference_link] = STATE(712), - [sym_inline_link] = STATE(712), - [sym_link_text] = STATE(1419), - [sym__comment_with_spaces] = STATE(712), - [sym_span] = STATE(712), - [sym_raw_inline] = STATE(712), - [sym_math] = STATE(712), - [sym_verbatim] = STATE(712), - [sym__todo_highlights] = STATE(712), - [sym_todo] = STATE(712), - [sym_note] = STATE(712), - [sym__symbol_fallback] = STATE(712), - [aux_sym__text] = STATE(543), - [anon_sym_LBRACK] = ACTIONS(1623), - [anon_sym_PIPE] = ACTIONS(1625), - [anon_sym_LBRACE] = ACTIONS(1627), - [sym__whitespace1] = ACTIONS(2712), - [anon_sym_BSLASH] = ACTIONS(1631), - [sym_quotation_marks] = ACTIONS(1625), - [sym_ellipsis] = ACTIONS(1625), - [sym_em_dash] = ACTIONS(1625), - [sym_en_dash] = ACTIONS(1627), - [sym_backslash_escape] = ACTIONS(1627), - [anon_sym_LT] = ACTIONS(1633), - [anon_sym_LBRACE_] = ACTIONS(1635), - [anon_sym__] = ACTIONS(1637), - [anon_sym_LBRACE_STAR] = ACTIONS(1639), - [anon_sym_STAR] = ACTIONS(2700), - [anon_sym_LBRACE_EQ] = ACTIONS(1646), - [anon_sym_LBRACE_PLUS] = ACTIONS(1648), - [anon_sym_LBRACE_DASH] = ACTIONS(1650), - [sym_symbol] = ACTIONS(1625), - [anon_sym_LBRACE_CARET] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_LBRACE_TILDE] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1654), - [anon_sym_LBRACK_CARET] = ACTIONS(1656), - [anon_sym_BANG_LBRACK] = ACTIONS(1658), - [anon_sym_DOLLAR] = ACTIONS(1660), - [anon_sym_TODO] = ACTIONS(1662), - [anon_sym_WIP] = ACTIONS(1662), - [anon_sym_NOTE] = ACTIONS(1664), - [anon_sym_INFO] = ACTIONS(1664), - [anon_sym_XXX] = ACTIONS(1664), - [sym_fixme] = ACTIONS(1625), - [aux_sym__text_token1] = ACTIONS(1666), - [sym__newline_inline] = ACTIONS(1668), - [sym__verbatim_begin] = ACTIONS(1670), - }, - [299] = { - [sym__inline_element_with_newline] = STATE(215), - [sym__inline_core_element] = STATE(215), - [sym__inline_no_surrounding_spaces] = STATE(1610), - [sym__hard_line_break] = STATE(703), - [sym_hard_line_break] = STATE(519), - [sym__smart_punctuation] = STATE(703), - [sym_autolink] = STATE(703), - [sym_emphasis] = STATE(703), - [sym_emphasis_begin] = STATE(277), - [sym_strong] = STATE(703), - [sym_strong_begin] = STATE(278), - [sym_highlighted] = STATE(703), - [sym_insert] = STATE(703), - [sym_delete] = STATE(703), - [sym_superscript] = STATE(703), - [sym_subscript] = STATE(703), - [sym_footnote_reference] = STATE(703), - [sym__image] = STATE(703), - [sym_full_reference_image] = STATE(703), - [sym_collapsed_reference_image] = STATE(703), - [sym_inline_image] = STATE(703), - [sym__image_description] = STATE(1424), - [sym__link] = STATE(703), - [sym_full_reference_link] = STATE(703), - [sym_collapsed_reference_link] = STATE(703), - [sym_inline_link] = STATE(703), - [sym_link_text] = STATE(1423), - [sym__comment_with_spaces] = STATE(703), - [sym_span] = STATE(703), - [sym_raw_inline] = STATE(703), - [sym_math] = STATE(703), - [sym_verbatim] = STATE(703), - [sym__todo_highlights] = STATE(703), - [sym_todo] = STATE(703), - [sym_note] = STATE(703), - [sym__symbol_fallback] = STATE(703), - [aux_sym__text] = STATE(608), - [anon_sym_LBRACK] = ACTIONS(1675), - [anon_sym_PIPE] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(1679), - [sym__whitespace1] = ACTIONS(2710), - [anon_sym_BSLASH] = ACTIONS(1683), - [sym_quotation_marks] = ACTIONS(1677), - [sym_ellipsis] = ACTIONS(1677), - [sym_em_dash] = ACTIONS(1677), - [sym_en_dash] = ACTIONS(1679), - [sym_backslash_escape] = ACTIONS(1679), - [anon_sym_LT] = ACTIONS(1685), - [anon_sym_LBRACE_] = ACTIONS(1687), - [anon_sym__] = ACTIONS(2696), - [anon_sym_LBRACE_STAR] = ACTIONS(1692), - [anon_sym_STAR] = ACTIONS(1694), - [anon_sym_LBRACE_EQ] = ACTIONS(1696), - [anon_sym_LBRACE_PLUS] = ACTIONS(1698), - [anon_sym_LBRACE_DASH] = ACTIONS(1700), - [sym_symbol] = ACTIONS(1677), - [anon_sym_LBRACE_CARET] = ACTIONS(1702), - [anon_sym_CARET] = ACTIONS(1702), - [anon_sym_LBRACE_TILDE] = ACTIONS(1704), - [anon_sym_TILDE] = ACTIONS(1704), - [anon_sym_LBRACK_CARET] = ACTIONS(1706), - [anon_sym_BANG_LBRACK] = ACTIONS(1708), - [anon_sym_DOLLAR] = ACTIONS(1710), - [anon_sym_TODO] = ACTIONS(1712), - [anon_sym_WIP] = ACTIONS(1712), - [anon_sym_NOTE] = ACTIONS(1714), - [anon_sym_INFO] = ACTIONS(1714), - [anon_sym_XXX] = ACTIONS(1714), - [sym_fixme] = ACTIONS(1677), - [aux_sym__text_token1] = ACTIONS(1716), - [sym__newline_inline] = ACTIONS(1718), - [sym__verbatim_begin] = ACTIONS(1720), - }, - [300] = { - [sym_table_cell] = STATE(2192), - [sym__inline_element_with_whitespace_without_newline] = STATE(308), - [sym__inline_core_element] = STATE(308), - [sym__hard_line_break] = STATE(1116), - [sym_hard_line_break] = STATE(711), - [sym__smart_punctuation] = STATE(1116), - [sym_autolink] = STATE(1116), - [sym_emphasis] = STATE(1116), - [sym_emphasis_begin] = STATE(271), - [sym_strong] = STATE(1116), - [sym_strong_begin] = STATE(293), - [sym_highlighted] = STATE(1116), - [sym_insert] = STATE(1116), - [sym_delete] = STATE(1116), - [sym_superscript] = STATE(1116), - [sym_subscript] = STATE(1116), - [sym_footnote_reference] = STATE(1116), - [sym__image] = STATE(1116), - [sym_full_reference_image] = STATE(1116), - [sym_collapsed_reference_image] = STATE(1116), - [sym_inline_image] = STATE(1116), - [sym__image_description] = STATE(1403), - [sym__link] = STATE(1116), - [sym_full_reference_link] = STATE(1116), - [sym_collapsed_reference_link] = STATE(1116), - [sym_inline_link] = STATE(1116), - [sym_link_text] = STATE(1404), - [sym__comment_with_spaces] = STATE(1116), - [sym_span] = STATE(1116), - [sym_raw_inline] = STATE(1116), - [sym_math] = STATE(1116), - [sym_verbatim] = STATE(1116), - [sym__todo_highlights] = STATE(1116), - [sym_todo] = STATE(1116), - [sym_note] = STATE(1116), - [sym__symbol_fallback] = STATE(1116), - [aux_sym__text] = STATE(781), - [aux_sym_table_cell_repeat1] = STATE(308), - [anon_sym_LBRACK] = ACTIONS(2549), - [anon_sym_PIPE] = ACTIONS(2551), - [anon_sym_LBRACE] = ACTIONS(2553), - [sym__whitespace1] = ACTIONS(2555), - [anon_sym_BSLASH] = ACTIONS(2557), - [sym_quotation_marks] = ACTIONS(2551), - [sym_ellipsis] = ACTIONS(2551), - [sym_em_dash] = ACTIONS(2551), - [sym_en_dash] = ACTIONS(2553), - [sym_backslash_escape] = ACTIONS(2553), - [anon_sym_LT] = ACTIONS(2559), - [anon_sym_LBRACE_] = ACTIONS(2561), - [anon_sym__] = ACTIONS(2563), - [anon_sym_LBRACE_STAR] = ACTIONS(2565), - [anon_sym_STAR] = ACTIONS(2567), - [anon_sym_LBRACE_EQ] = ACTIONS(2569), - [anon_sym_LBRACE_PLUS] = ACTIONS(2571), - [anon_sym_LBRACE_DASH] = ACTIONS(2573), - [sym_symbol] = ACTIONS(2551), - [anon_sym_LBRACE_CARET] = ACTIONS(2575), - [anon_sym_CARET] = ACTIONS(2575), - [anon_sym_LBRACE_TILDE] = ACTIONS(2577), - [anon_sym_TILDE] = ACTIONS(2577), - [anon_sym_LBRACK_CARET] = ACTIONS(2579), - [anon_sym_BANG_LBRACK] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(2583), - [anon_sym_TODO] = ACTIONS(2585), - [anon_sym_WIP] = ACTIONS(2585), - [anon_sym_NOTE] = ACTIONS(2587), - [anon_sym_INFO] = ACTIONS(2587), - [anon_sym_XXX] = ACTIONS(2587), - [sym_fixme] = ACTIONS(2551), - [aux_sym__text_token1] = ACTIONS(2589), - [sym__verbatim_begin] = ACTIONS(2593), - }, - [301] = { - [anon_sym_LBRACK] = ACTIONS(2718), - [anon_sym_PIPE] = ACTIONS(2720), - [anon_sym_LBRACE] = ACTIONS(2718), - [sym__whitespace1] = ACTIONS(2720), - [anon_sym_BSLASH] = ACTIONS(2718), - [sym_quotation_marks] = ACTIONS(2720), - [sym_ellipsis] = ACTIONS(2720), - [sym_em_dash] = ACTIONS(2720), - [sym_en_dash] = ACTIONS(2718), - [sym_backslash_escape] = ACTIONS(2718), - [anon_sym_LT] = ACTIONS(2720), - [anon_sym_LBRACE_] = ACTIONS(2720), - [anon_sym__] = ACTIONS(2720), - [anon_sym_LBRACE_STAR] = ACTIONS(2720), - [anon_sym_STAR] = ACTIONS(2720), - [anon_sym_LBRACE_EQ] = ACTIONS(2720), - [anon_sym_LBRACE_PLUS] = ACTIONS(2720), - [anon_sym_LBRACE_DASH] = ACTIONS(2720), - [sym_symbol] = ACTIONS(2720), - [anon_sym_LBRACE_CARET] = ACTIONS(2720), - [anon_sym_CARET] = ACTIONS(2720), - [anon_sym_LBRACE_TILDE] = ACTIONS(2720), - [anon_sym_TILDE] = ACTIONS(2720), - [anon_sym_LBRACK_CARET] = ACTIONS(2720), - [anon_sym_BANG_LBRACK] = ACTIONS(2720), - [anon_sym_DOLLAR] = ACTIONS(2720), - [anon_sym_TODO] = ACTIONS(2720), - [anon_sym_WIP] = ACTIONS(2720), - [anon_sym_NOTE] = ACTIONS(2720), - [anon_sym_INFO] = ACTIONS(2720), - [anon_sym_XXX] = ACTIONS(2720), - [sym_fixme] = ACTIONS(2720), - [aux_sym__text_token1] = ACTIONS(2718), - [sym__newline] = ACTIONS(2720), - [sym__newline_inline] = ACTIONS(2720), - [sym__heading1_begin] = ACTIONS(2720), - [sym__heading2_begin] = ACTIONS(2720), - [sym__heading3_begin] = ACTIONS(2720), - [sym__heading4_begin] = ACTIONS(2720), - [sym__heading5_begin] = ACTIONS(2720), - [sym__heading6_begin] = ACTIONS(2720), - [sym__div_begin] = ACTIONS(2720), - [sym__code_block_begin] = ACTIONS(2720), - [sym__code_block_end] = ACTIONS(2722), - [sym_list_marker_dash] = ACTIONS(2720), - [sym_list_marker_star] = ACTIONS(2720), - [sym_list_marker_plus] = ACTIONS(2720), - [sym__list_marker_task_begin] = ACTIONS(2720), - [sym_list_marker_definition] = ACTIONS(2720), - [sym_list_marker_decimal_period] = ACTIONS(2720), - [sym_list_marker_lower_alpha_period] = ACTIONS(2720), - [sym_list_marker_upper_alpha_period] = ACTIONS(2720), - [sym_list_marker_lower_roman_period] = ACTIONS(2720), - [sym_list_marker_upper_roman_period] = ACTIONS(2720), - [sym_list_marker_decimal_paren] = ACTIONS(2720), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2720), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2720), - [sym_list_marker_lower_roman_paren] = ACTIONS(2720), - [sym_list_marker_upper_roman_paren] = ACTIONS(2720), - [sym_list_marker_decimal_parens] = ACTIONS(2720), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2720), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2720), - [sym_list_marker_lower_roman_parens] = ACTIONS(2720), - [sym_list_marker_upper_roman_parens] = ACTIONS(2720), - [sym__block_quote_begin] = ACTIONS(2720), - [sym__block_quote_continuation] = ACTIONS(2720), - [sym__thematic_break_dash] = ACTIONS(2720), - [sym__thematic_break_star] = ACTIONS(2720), - [sym__footnote_begin] = ACTIONS(2720), - [sym__footnote_end] = ACTIONS(2720), - [sym__verbatim_begin] = ACTIONS(2720), - }, - [302] = { - [anon_sym_LBRACK] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2726), - [anon_sym_LBRACE] = ACTIONS(2724), - [sym__whitespace1] = ACTIONS(2726), - [anon_sym_BSLASH] = ACTIONS(2724), - [sym_quotation_marks] = ACTIONS(2726), - [sym_ellipsis] = ACTIONS(2726), - [sym_em_dash] = ACTIONS(2726), - [sym_en_dash] = ACTIONS(2724), - [sym_backslash_escape] = ACTIONS(2724), - [anon_sym_LT] = ACTIONS(2726), - [anon_sym_LBRACE_] = ACTIONS(2726), - [anon_sym__] = ACTIONS(2726), - [anon_sym_LBRACE_STAR] = ACTIONS(2726), - [anon_sym_STAR] = ACTIONS(2726), - [anon_sym_LBRACE_EQ] = ACTIONS(2726), - [anon_sym_LBRACE_PLUS] = ACTIONS(2726), - [anon_sym_LBRACE_DASH] = ACTIONS(2726), - [sym_symbol] = ACTIONS(2726), - [anon_sym_LBRACE_CARET] = ACTIONS(2726), - [anon_sym_CARET] = ACTIONS(2726), - [anon_sym_LBRACE_TILDE] = ACTIONS(2726), - [anon_sym_TILDE] = ACTIONS(2726), - [anon_sym_LBRACK_CARET] = ACTIONS(2726), - [anon_sym_BANG_LBRACK] = ACTIONS(2726), - [anon_sym_DOLLAR] = ACTIONS(2726), - [anon_sym_TODO] = ACTIONS(2726), - [anon_sym_WIP] = ACTIONS(2726), - [anon_sym_NOTE] = ACTIONS(2726), - [anon_sym_INFO] = ACTIONS(2726), - [anon_sym_XXX] = ACTIONS(2726), - [sym_fixme] = ACTIONS(2726), - [aux_sym__text_token1] = ACTIONS(2724), - [sym__block_close] = ACTIONS(2726), - [sym__eof_or_newline] = ACTIONS(2728), - [sym__newline] = ACTIONS(2726), - [sym__newline_inline] = ACTIONS(2726), - [sym__heading1_begin] = ACTIONS(2726), - [sym__heading2_begin] = ACTIONS(2726), - [sym__heading3_begin] = ACTIONS(2726), - [sym__heading4_begin] = ACTIONS(2726), - [sym__heading5_begin] = ACTIONS(2726), - [sym__heading6_begin] = ACTIONS(2726), - [sym__div_begin] = ACTIONS(2726), - [sym__code_block_begin] = ACTIONS(2726), - [sym_list_marker_dash] = ACTIONS(2726), - [sym_list_marker_star] = ACTIONS(2726), - [sym_list_marker_plus] = ACTIONS(2726), - [sym__list_marker_task_begin] = ACTIONS(2726), - [sym_list_marker_definition] = ACTIONS(2726), - [sym_list_marker_decimal_period] = ACTIONS(2726), - [sym_list_marker_lower_alpha_period] = ACTIONS(2726), - [sym_list_marker_upper_alpha_period] = ACTIONS(2726), - [sym_list_marker_lower_roman_period] = ACTIONS(2726), - [sym_list_marker_upper_roman_period] = ACTIONS(2726), - [sym_list_marker_decimal_paren] = ACTIONS(2726), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2726), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2726), - [sym_list_marker_lower_roman_paren] = ACTIONS(2726), - [sym_list_marker_upper_roman_paren] = ACTIONS(2726), - [sym_list_marker_decimal_parens] = ACTIONS(2726), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2726), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2726), - [sym_list_marker_lower_roman_parens] = ACTIONS(2726), - [sym_list_marker_upper_roman_parens] = ACTIONS(2726), - [sym__block_quote_begin] = ACTIONS(2726), - [sym__block_quote_continuation] = ACTIONS(2726), - [sym__thematic_break_dash] = ACTIONS(2726), - [sym__thematic_break_star] = ACTIONS(2726), - [sym__footnote_begin] = ACTIONS(2726), - [sym__verbatim_begin] = ACTIONS(2726), - }, - [303] = { - [anon_sym_LBRACK] = ACTIONS(2730), - [anon_sym_PIPE] = ACTIONS(2732), - [anon_sym_LBRACE] = ACTIONS(2730), - [sym__whitespace1] = ACTIONS(2732), - [anon_sym_BSLASH] = ACTIONS(2730), - [sym_quotation_marks] = ACTIONS(2732), - [sym_ellipsis] = ACTIONS(2732), - [sym_em_dash] = ACTIONS(2732), - [sym_en_dash] = ACTIONS(2730), - [sym_backslash_escape] = ACTIONS(2730), - [anon_sym_LT] = ACTIONS(2732), - [anon_sym_LBRACE_] = ACTIONS(2732), - [anon_sym__] = ACTIONS(2732), - [anon_sym_LBRACE_STAR] = ACTIONS(2732), - [anon_sym_STAR] = ACTIONS(2732), - [anon_sym_LBRACE_EQ] = ACTIONS(2732), - [anon_sym_LBRACE_PLUS] = ACTIONS(2732), - [anon_sym_LBRACE_DASH] = ACTIONS(2732), - [sym_symbol] = ACTIONS(2732), - [anon_sym_LBRACE_CARET] = ACTIONS(2732), - [anon_sym_CARET] = ACTIONS(2732), - [anon_sym_LBRACE_TILDE] = ACTIONS(2732), - [anon_sym_TILDE] = ACTIONS(2732), - [anon_sym_LBRACK_CARET] = ACTIONS(2732), - [anon_sym_BANG_LBRACK] = ACTIONS(2732), - [anon_sym_DOLLAR] = ACTIONS(2732), - [anon_sym_TODO] = ACTIONS(2732), - [anon_sym_WIP] = ACTIONS(2732), - [anon_sym_NOTE] = ACTIONS(2732), - [anon_sym_INFO] = ACTIONS(2732), - [anon_sym_XXX] = ACTIONS(2732), - [sym_fixme] = ACTIONS(2732), - [aux_sym__text_token1] = ACTIONS(2730), - [sym__block_close] = ACTIONS(2732), - [sym__newline] = ACTIONS(2732), - [sym__newline_inline] = ACTIONS(2732), - [sym__heading1_begin] = ACTIONS(2732), - [sym__heading2_begin] = ACTIONS(2732), - [sym__heading3_begin] = ACTIONS(2732), - [sym__heading4_begin] = ACTIONS(2732), - [sym__heading5_begin] = ACTIONS(2732), - [sym__heading6_begin] = ACTIONS(2732), - [sym__div_begin] = ACTIONS(2732), - [sym__code_block_begin] = ACTIONS(2732), - [sym_list_marker_dash] = ACTIONS(2732), - [sym_list_marker_star] = ACTIONS(2732), - [sym_list_marker_plus] = ACTIONS(2732), - [sym__list_marker_task_begin] = ACTIONS(2732), - [sym_list_marker_definition] = ACTIONS(2732), - [sym_list_marker_decimal_period] = ACTIONS(2732), - [sym_list_marker_lower_alpha_period] = ACTIONS(2732), - [sym_list_marker_upper_alpha_period] = ACTIONS(2732), - [sym_list_marker_lower_roman_period] = ACTIONS(2732), - [sym_list_marker_upper_roman_period] = ACTIONS(2732), - [sym_list_marker_decimal_paren] = ACTIONS(2732), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2732), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2732), - [sym_list_marker_lower_roman_paren] = ACTIONS(2732), - [sym_list_marker_upper_roman_paren] = ACTIONS(2732), - [sym_list_marker_decimal_parens] = ACTIONS(2732), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2732), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2732), - [sym_list_marker_lower_roman_parens] = ACTIONS(2732), - [sym_list_marker_upper_roman_parens] = ACTIONS(2732), - [sym__block_quote_begin] = ACTIONS(2732), - [sym__block_quote_continuation] = ACTIONS(2732), - [sym__thematic_break_dash] = ACTIONS(2732), - [sym__thematic_break_star] = ACTIONS(2732), - [sym__footnote_begin] = ACTIONS(2732), - [sym__table_caption_begin] = ACTIONS(2732), - [sym__verbatim_begin] = ACTIONS(2732), - }, - [304] = { - [anon_sym_LBRACK] = ACTIONS(2734), - [anon_sym_PIPE] = ACTIONS(2736), - [anon_sym_LBRACE] = ACTIONS(2734), - [sym__whitespace1] = ACTIONS(2736), - [anon_sym_BSLASH] = ACTIONS(2734), - [sym_quotation_marks] = ACTIONS(2736), - [sym_ellipsis] = ACTIONS(2736), - [sym_em_dash] = ACTIONS(2736), - [sym_en_dash] = ACTIONS(2734), - [sym_backslash_escape] = ACTIONS(2734), - [anon_sym_LT] = ACTIONS(2736), - [anon_sym_LBRACE_] = ACTIONS(2736), - [anon_sym__] = ACTIONS(2736), - [anon_sym_LBRACE_STAR] = ACTIONS(2736), - [anon_sym_STAR] = ACTIONS(2736), - [anon_sym_LBRACE_EQ] = ACTIONS(2736), - [anon_sym_LBRACE_PLUS] = ACTIONS(2736), - [anon_sym_LBRACE_DASH] = ACTIONS(2736), - [sym_symbol] = ACTIONS(2736), - [anon_sym_LBRACE_CARET] = ACTIONS(2736), - [anon_sym_CARET] = ACTIONS(2736), - [anon_sym_LBRACE_TILDE] = ACTIONS(2736), - [anon_sym_TILDE] = ACTIONS(2736), - [anon_sym_LBRACK_CARET] = ACTIONS(2736), - [anon_sym_BANG_LBRACK] = ACTIONS(2736), - [anon_sym_DOLLAR] = ACTIONS(2736), - [anon_sym_TODO] = ACTIONS(2736), - [anon_sym_WIP] = ACTIONS(2736), - [anon_sym_NOTE] = ACTIONS(2736), - [anon_sym_INFO] = ACTIONS(2736), - [anon_sym_XXX] = ACTIONS(2736), - [sym_fixme] = ACTIONS(2736), - [aux_sym__text_token1] = ACTIONS(2734), - [sym__block_close] = ACTIONS(2736), - [sym__newline] = ACTIONS(2736), - [sym__newline_inline] = ACTIONS(2736), - [sym__heading1_begin] = ACTIONS(2736), - [sym__heading2_begin] = ACTIONS(2736), - [sym__heading3_begin] = ACTIONS(2736), - [sym__heading4_begin] = ACTIONS(2736), - [sym__heading5_begin] = ACTIONS(2736), - [sym__heading6_begin] = ACTIONS(2736), - [sym__div_begin] = ACTIONS(2736), - [sym__code_block_begin] = ACTIONS(2736), - [sym_list_marker_dash] = ACTIONS(2736), - [sym_list_marker_star] = ACTIONS(2736), - [sym_list_marker_plus] = ACTIONS(2736), - [sym__list_marker_task_begin] = ACTIONS(2736), - [sym_list_marker_definition] = ACTIONS(2736), - [sym_list_marker_decimal_period] = ACTIONS(2736), - [sym_list_marker_lower_alpha_period] = ACTIONS(2736), - [sym_list_marker_upper_alpha_period] = ACTIONS(2736), - [sym_list_marker_lower_roman_period] = ACTIONS(2736), - [sym_list_marker_upper_roman_period] = ACTIONS(2736), - [sym_list_marker_decimal_paren] = ACTIONS(2736), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2736), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2736), - [sym_list_marker_lower_roman_paren] = ACTIONS(2736), - [sym_list_marker_upper_roman_paren] = ACTIONS(2736), - [sym_list_marker_decimal_parens] = ACTIONS(2736), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2736), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2736), - [sym_list_marker_lower_roman_parens] = ACTIONS(2736), - [sym_list_marker_upper_roman_parens] = ACTIONS(2736), - [sym__block_quote_begin] = ACTIONS(2736), - [sym__block_quote_continuation] = ACTIONS(2736), - [sym__thematic_break_dash] = ACTIONS(2736), - [sym__thematic_break_star] = ACTIONS(2736), - [sym__footnote_begin] = ACTIONS(2736), - [sym__table_caption_begin] = ACTIONS(2736), - [sym__verbatim_begin] = ACTIONS(2736), - }, - [305] = { - [anon_sym_LBRACK] = ACTIONS(2738), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_LBRACE] = ACTIONS(2738), - [sym__whitespace1] = ACTIONS(2740), - [anon_sym_BSLASH] = ACTIONS(2738), - [sym_quotation_marks] = ACTIONS(2740), - [sym_ellipsis] = ACTIONS(2740), - [sym_em_dash] = ACTIONS(2740), - [sym_en_dash] = ACTIONS(2738), - [sym_backslash_escape] = ACTIONS(2738), - [anon_sym_LT] = ACTIONS(2740), - [anon_sym_LBRACE_] = ACTIONS(2740), - [anon_sym__] = ACTIONS(2740), - [anon_sym_LBRACE_STAR] = ACTIONS(2740), - [anon_sym_STAR] = ACTIONS(2740), - [anon_sym_LBRACE_EQ] = ACTIONS(2740), - [anon_sym_LBRACE_PLUS] = ACTIONS(2740), - [anon_sym_LBRACE_DASH] = ACTIONS(2740), - [sym_symbol] = ACTIONS(2740), - [anon_sym_LBRACE_CARET] = ACTIONS(2740), - [anon_sym_CARET] = ACTIONS(2740), - [anon_sym_LBRACE_TILDE] = ACTIONS(2740), - [anon_sym_TILDE] = ACTIONS(2740), - [anon_sym_LBRACK_CARET] = ACTIONS(2740), - [anon_sym_BANG_LBRACK] = ACTIONS(2740), - [anon_sym_DOLLAR] = ACTIONS(2740), - [anon_sym_TODO] = ACTIONS(2740), - [anon_sym_WIP] = ACTIONS(2740), - [anon_sym_NOTE] = ACTIONS(2740), - [anon_sym_INFO] = ACTIONS(2740), - [anon_sym_XXX] = ACTIONS(2740), - [sym_fixme] = ACTIONS(2740), - [aux_sym__text_token1] = ACTIONS(2738), - [sym__newline] = ACTIONS(2740), - [sym__newline_inline] = ACTIONS(2740), - [sym__heading1_begin] = ACTIONS(2740), - [sym__heading2_begin] = ACTIONS(2740), - [sym__heading3_begin] = ACTIONS(2740), - [sym__heading4_begin] = ACTIONS(2740), - [sym__heading5_begin] = ACTIONS(2740), - [sym__heading6_begin] = ACTIONS(2740), - [sym__div_begin] = ACTIONS(2740), - [sym__code_block_begin] = ACTIONS(2740), - [sym_list_marker_dash] = ACTIONS(2740), - [sym_list_marker_star] = ACTIONS(2740), - [sym_list_marker_plus] = ACTIONS(2740), - [sym__list_marker_task_begin] = ACTIONS(2740), - [sym_list_marker_definition] = ACTIONS(2740), - [sym_list_marker_decimal_period] = ACTIONS(2740), - [sym_list_marker_lower_alpha_period] = ACTIONS(2740), - [sym_list_marker_upper_alpha_period] = ACTIONS(2740), - [sym_list_marker_lower_roman_period] = ACTIONS(2740), - [sym_list_marker_upper_roman_period] = ACTIONS(2740), - [sym_list_marker_decimal_paren] = ACTIONS(2740), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2740), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2740), - [sym_list_marker_lower_roman_paren] = ACTIONS(2740), - [sym_list_marker_upper_roman_paren] = ACTIONS(2740), - [sym_list_marker_decimal_parens] = ACTIONS(2740), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2740), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2740), - [sym_list_marker_lower_roman_parens] = ACTIONS(2740), - [sym_list_marker_upper_roman_parens] = ACTIONS(2740), - [sym__block_quote_begin] = ACTIONS(2740), - [sym__block_quote_continuation] = ACTIONS(2740), - [sym__thematic_break_dash] = ACTIONS(2740), - [sym__thematic_break_star] = ACTIONS(2740), - [sym__footnote_begin] = ACTIONS(2740), - [sym__footnote_end] = ACTIONS(2740), - [sym__table_caption_begin] = ACTIONS(2740), - [sym__verbatim_begin] = ACTIONS(2740), - }, - [306] = { - [anon_sym_LBRACK] = ACTIONS(2742), - [anon_sym_PIPE] = ACTIONS(2744), - [anon_sym_LBRACE] = ACTIONS(2742), - [sym__whitespace1] = ACTIONS(2744), - [anon_sym_BSLASH] = ACTIONS(2742), - [sym_quotation_marks] = ACTIONS(2744), - [sym_ellipsis] = ACTIONS(2744), - [sym_em_dash] = ACTIONS(2744), - [sym_en_dash] = ACTIONS(2742), - [sym_backslash_escape] = ACTIONS(2742), - [anon_sym_LT] = ACTIONS(2744), - [anon_sym_LBRACE_] = ACTIONS(2744), - [anon_sym__] = ACTIONS(2744), - [anon_sym_LBRACE_STAR] = ACTIONS(2744), - [anon_sym_STAR] = ACTIONS(2744), - [anon_sym_LBRACE_EQ] = ACTIONS(2744), - [anon_sym_LBRACE_PLUS] = ACTIONS(2744), - [anon_sym_LBRACE_DASH] = ACTIONS(2744), - [sym_symbol] = ACTIONS(2744), - [anon_sym_LBRACE_CARET] = ACTIONS(2744), - [anon_sym_CARET] = ACTIONS(2744), - [anon_sym_LBRACE_TILDE] = ACTIONS(2744), - [anon_sym_TILDE] = ACTIONS(2744), - [anon_sym_LBRACK_CARET] = ACTIONS(2744), - [anon_sym_BANG_LBRACK] = ACTIONS(2744), - [anon_sym_DOLLAR] = ACTIONS(2744), - [anon_sym_TODO] = ACTIONS(2744), - [anon_sym_WIP] = ACTIONS(2744), - [anon_sym_NOTE] = ACTIONS(2744), - [anon_sym_INFO] = ACTIONS(2744), - [anon_sym_XXX] = ACTIONS(2744), - [sym_fixme] = ACTIONS(2744), - [aux_sym__text_token1] = ACTIONS(2742), - [sym__block_close] = ACTIONS(2744), - [sym__newline] = ACTIONS(2744), - [sym__newline_inline] = ACTIONS(2744), - [sym__heading1_begin] = ACTIONS(2744), - [sym__heading2_begin] = ACTIONS(2744), - [sym__heading3_begin] = ACTIONS(2744), - [sym__heading4_begin] = ACTIONS(2744), - [sym__heading5_begin] = ACTIONS(2744), - [sym__heading6_begin] = ACTIONS(2744), - [sym__div_begin] = ACTIONS(2744), - [sym__code_block_begin] = ACTIONS(2744), - [sym__code_block_end] = ACTIONS(2746), - [sym_list_marker_dash] = ACTIONS(2744), - [sym_list_marker_star] = ACTIONS(2744), - [sym_list_marker_plus] = ACTIONS(2744), - [sym__list_marker_task_begin] = ACTIONS(2744), - [sym_list_marker_definition] = ACTIONS(2744), - [sym_list_marker_decimal_period] = ACTIONS(2744), - [sym_list_marker_lower_alpha_period] = ACTIONS(2744), - [sym_list_marker_upper_alpha_period] = ACTIONS(2744), - [sym_list_marker_lower_roman_period] = ACTIONS(2744), - [sym_list_marker_upper_roman_period] = ACTIONS(2744), - [sym_list_marker_decimal_paren] = ACTIONS(2744), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2744), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2744), - [sym_list_marker_lower_roman_paren] = ACTIONS(2744), - [sym_list_marker_upper_roman_paren] = ACTIONS(2744), - [sym_list_marker_decimal_parens] = ACTIONS(2744), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2744), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2744), - [sym_list_marker_lower_roman_parens] = ACTIONS(2744), - [sym_list_marker_upper_roman_parens] = ACTIONS(2744), - [sym__block_quote_begin] = ACTIONS(2744), - [sym__block_quote_continuation] = ACTIONS(2744), - [sym__thematic_break_dash] = ACTIONS(2744), - [sym__thematic_break_star] = ACTIONS(2744), - [sym__footnote_begin] = ACTIONS(2744), - [sym__verbatim_begin] = ACTIONS(2744), - }, - [307] = { - [ts_builtin_sym_end] = ACTIONS(2740), - [anon_sym_LBRACK] = ACTIONS(2738), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_LBRACE] = ACTIONS(2738), - [sym__whitespace1] = ACTIONS(2740), - [anon_sym_BSLASH] = ACTIONS(2738), - [sym_quotation_marks] = ACTIONS(2740), - [sym_ellipsis] = ACTIONS(2740), - [sym_em_dash] = ACTIONS(2740), - [sym_en_dash] = ACTIONS(2738), - [sym_backslash_escape] = ACTIONS(2738), - [anon_sym_LT] = ACTIONS(2740), - [anon_sym_LBRACE_] = ACTIONS(2740), - [anon_sym__] = ACTIONS(2740), - [anon_sym_LBRACE_STAR] = ACTIONS(2740), - [anon_sym_STAR] = ACTIONS(2740), - [anon_sym_LBRACE_EQ] = ACTIONS(2740), - [anon_sym_LBRACE_PLUS] = ACTIONS(2740), - [anon_sym_LBRACE_DASH] = ACTIONS(2740), - [sym_symbol] = ACTIONS(2740), - [anon_sym_LBRACE_CARET] = ACTIONS(2740), - [anon_sym_CARET] = ACTIONS(2740), - [anon_sym_LBRACE_TILDE] = ACTIONS(2740), - [anon_sym_TILDE] = ACTIONS(2740), - [anon_sym_LBRACK_CARET] = ACTIONS(2740), - [anon_sym_BANG_LBRACK] = ACTIONS(2740), - [anon_sym_DOLLAR] = ACTIONS(2740), - [anon_sym_TODO] = ACTIONS(2740), - [anon_sym_WIP] = ACTIONS(2740), - [anon_sym_NOTE] = ACTIONS(2740), - [anon_sym_INFO] = ACTIONS(2740), - [anon_sym_XXX] = ACTIONS(2740), - [sym_fixme] = ACTIONS(2740), - [aux_sym__text_token1] = ACTIONS(2738), - [sym__newline] = ACTIONS(2740), - [sym__newline_inline] = ACTIONS(2740), - [sym__heading1_begin] = ACTIONS(2740), - [sym__heading2_begin] = ACTIONS(2740), - [sym__heading3_begin] = ACTIONS(2740), - [sym__heading4_begin] = ACTIONS(2740), - [sym__heading5_begin] = ACTIONS(2740), - [sym__heading6_begin] = ACTIONS(2740), - [sym__div_begin] = ACTIONS(2740), - [sym__code_block_begin] = ACTIONS(2740), - [sym_list_marker_dash] = ACTIONS(2740), - [sym_list_marker_star] = ACTIONS(2740), - [sym_list_marker_plus] = ACTIONS(2740), - [sym__list_marker_task_begin] = ACTIONS(2740), - [sym_list_marker_definition] = ACTIONS(2740), - [sym_list_marker_decimal_period] = ACTIONS(2740), - [sym_list_marker_lower_alpha_period] = ACTIONS(2740), - [sym_list_marker_upper_alpha_period] = ACTIONS(2740), - [sym_list_marker_lower_roman_period] = ACTIONS(2740), - [sym_list_marker_upper_roman_period] = ACTIONS(2740), - [sym_list_marker_decimal_paren] = ACTIONS(2740), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2740), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2740), - [sym_list_marker_lower_roman_paren] = ACTIONS(2740), - [sym_list_marker_upper_roman_paren] = ACTIONS(2740), - [sym_list_marker_decimal_parens] = ACTIONS(2740), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2740), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2740), - [sym_list_marker_lower_roman_parens] = ACTIONS(2740), - [sym_list_marker_upper_roman_parens] = ACTIONS(2740), - [sym__block_quote_begin] = ACTIONS(2740), - [sym__block_quote_continuation] = ACTIONS(2740), - [sym__thematic_break_dash] = ACTIONS(2740), - [sym__thematic_break_star] = ACTIONS(2740), - [sym__footnote_begin] = ACTIONS(2740), - [sym__table_caption_begin] = ACTIONS(2740), - [sym__verbatim_begin] = ACTIONS(2740), - }, - [308] = { - [sym__inline_element_with_whitespace_without_newline] = STATE(310), - [sym__inline_core_element] = STATE(310), - [sym__hard_line_break] = STATE(1116), - [sym_hard_line_break] = STATE(711), - [sym__smart_punctuation] = STATE(1116), - [sym_autolink] = STATE(1116), - [sym_emphasis] = STATE(1116), - [sym_emphasis_begin] = STATE(271), - [sym_strong] = STATE(1116), - [sym_strong_begin] = STATE(293), - [sym_highlighted] = STATE(1116), - [sym_insert] = STATE(1116), - [sym_delete] = STATE(1116), - [sym_superscript] = STATE(1116), - [sym_subscript] = STATE(1116), - [sym_footnote_reference] = STATE(1116), - [sym__image] = STATE(1116), - [sym_full_reference_image] = STATE(1116), - [sym_collapsed_reference_image] = STATE(1116), - [sym_inline_image] = STATE(1116), - [sym__image_description] = STATE(1403), - [sym__link] = STATE(1116), - [sym_full_reference_link] = STATE(1116), - [sym_collapsed_reference_link] = STATE(1116), - [sym_inline_link] = STATE(1116), - [sym_link_text] = STATE(1404), - [sym__comment_with_spaces] = STATE(1116), - [sym_span] = STATE(1116), - [sym_raw_inline] = STATE(1116), - [sym_math] = STATE(1116), - [sym_verbatim] = STATE(1116), - [sym__todo_highlights] = STATE(1116), - [sym_todo] = STATE(1116), - [sym_note] = STATE(1116), - [sym__symbol_fallback] = STATE(1116), - [aux_sym__text] = STATE(781), - [aux_sym_table_cell_repeat1] = STATE(310), - [anon_sym_LBRACK] = ACTIONS(2549), - [anon_sym_PIPE] = ACTIONS(2748), - [anon_sym_LBRACE] = ACTIONS(2553), - [sym__whitespace1] = ACTIONS(2555), - [anon_sym_BSLASH] = ACTIONS(2557), - [sym_quotation_marks] = ACTIONS(2551), - [sym_ellipsis] = ACTIONS(2551), - [sym_em_dash] = ACTIONS(2551), - [sym_en_dash] = ACTIONS(2553), - [sym_backslash_escape] = ACTIONS(2553), - [anon_sym_LT] = ACTIONS(2559), - [anon_sym_LBRACE_] = ACTIONS(2561), - [anon_sym__] = ACTIONS(2563), - [anon_sym_LBRACE_STAR] = ACTIONS(2565), - [anon_sym_STAR] = ACTIONS(2567), - [anon_sym_LBRACE_EQ] = ACTIONS(2569), - [anon_sym_LBRACE_PLUS] = ACTIONS(2571), - [anon_sym_LBRACE_DASH] = ACTIONS(2573), - [sym_symbol] = ACTIONS(2551), - [anon_sym_LBRACE_CARET] = ACTIONS(2575), - [anon_sym_CARET] = ACTIONS(2575), - [anon_sym_LBRACE_TILDE] = ACTIONS(2577), - [anon_sym_TILDE] = ACTIONS(2577), - [anon_sym_LBRACK_CARET] = ACTIONS(2579), - [anon_sym_BANG_LBRACK] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(2583), - [anon_sym_TODO] = ACTIONS(2585), - [anon_sym_WIP] = ACTIONS(2585), - [anon_sym_NOTE] = ACTIONS(2587), - [anon_sym_INFO] = ACTIONS(2587), - [anon_sym_XXX] = ACTIONS(2587), - [sym_fixme] = ACTIONS(2551), - [aux_sym__text_token1] = ACTIONS(2589), - [sym__verbatim_begin] = ACTIONS(2593), - }, - [309] = { - [anon_sym_LBRACK] = ACTIONS(2750), - [anon_sym_PIPE] = ACTIONS(2752), - [anon_sym_LBRACE] = ACTIONS(2750), - [sym__whitespace1] = ACTIONS(2752), - [anon_sym_BSLASH] = ACTIONS(2750), - [sym_quotation_marks] = ACTIONS(2752), - [sym_ellipsis] = ACTIONS(2752), - [sym_em_dash] = ACTIONS(2752), - [sym_en_dash] = ACTIONS(2750), - [sym_backslash_escape] = ACTIONS(2750), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_LBRACE_] = ACTIONS(2752), - [anon_sym__] = ACTIONS(2752), - [anon_sym_LBRACE_STAR] = ACTIONS(2752), - [anon_sym_STAR] = ACTIONS(2752), - [anon_sym_LBRACE_EQ] = ACTIONS(2752), - [anon_sym_LBRACE_PLUS] = ACTIONS(2752), - [anon_sym_LBRACE_DASH] = ACTIONS(2752), - [sym_symbol] = ACTIONS(2752), - [anon_sym_LBRACE_CARET] = ACTIONS(2752), - [anon_sym_CARET] = ACTIONS(2752), - [anon_sym_LBRACE_TILDE] = ACTIONS(2752), - [anon_sym_TILDE] = ACTIONS(2752), - [anon_sym_LBRACK_CARET] = ACTIONS(2752), - [anon_sym_BANG_LBRACK] = ACTIONS(2752), - [anon_sym_DOLLAR] = ACTIONS(2752), - [anon_sym_TODO] = ACTIONS(2752), - [anon_sym_WIP] = ACTIONS(2752), - [anon_sym_NOTE] = ACTIONS(2752), - [anon_sym_INFO] = ACTIONS(2752), - [anon_sym_XXX] = ACTIONS(2752), - [sym_fixme] = ACTIONS(2752), - [aux_sym__text_token1] = ACTIONS(2750), - [sym__block_close] = ACTIONS(2752), - [sym__newline] = ACTIONS(2752), - [sym__newline_inline] = ACTIONS(2752), - [sym__heading1_begin] = ACTIONS(2752), - [sym__heading2_begin] = ACTIONS(2752), - [sym__heading3_begin] = ACTIONS(2752), - [sym__heading4_begin] = ACTIONS(2752), - [sym__heading5_begin] = ACTIONS(2752), - [sym__heading6_begin] = ACTIONS(2752), - [sym__div_begin] = ACTIONS(2752), - [sym__code_block_begin] = ACTIONS(2752), - [sym__code_block_end] = ACTIONS(2754), - [sym_list_marker_dash] = ACTIONS(2752), - [sym_list_marker_star] = ACTIONS(2752), - [sym_list_marker_plus] = ACTIONS(2752), - [sym__list_marker_task_begin] = ACTIONS(2752), - [sym_list_marker_definition] = ACTIONS(2752), - [sym_list_marker_decimal_period] = ACTIONS(2752), - [sym_list_marker_lower_alpha_period] = ACTIONS(2752), - [sym_list_marker_upper_alpha_period] = ACTIONS(2752), - [sym_list_marker_lower_roman_period] = ACTIONS(2752), - [sym_list_marker_upper_roman_period] = ACTIONS(2752), - [sym_list_marker_decimal_paren] = ACTIONS(2752), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2752), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2752), - [sym_list_marker_lower_roman_paren] = ACTIONS(2752), - [sym_list_marker_upper_roman_paren] = ACTIONS(2752), - [sym_list_marker_decimal_parens] = ACTIONS(2752), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2752), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2752), - [sym_list_marker_lower_roman_parens] = ACTIONS(2752), - [sym_list_marker_upper_roman_parens] = ACTIONS(2752), - [sym__block_quote_begin] = ACTIONS(2752), - [sym__block_quote_continuation] = ACTIONS(2752), - [sym__thematic_break_dash] = ACTIONS(2752), - [sym__thematic_break_star] = ACTIONS(2752), - [sym__footnote_begin] = ACTIONS(2752), - [sym__verbatim_begin] = ACTIONS(2752), - }, - [310] = { - [sym__inline_element_with_whitespace_without_newline] = STATE(310), - [sym__inline_core_element] = STATE(310), - [sym__hard_line_break] = STATE(1116), - [sym_hard_line_break] = STATE(711), - [sym__smart_punctuation] = STATE(1116), - [sym_autolink] = STATE(1116), - [sym_emphasis] = STATE(1116), - [sym_emphasis_begin] = STATE(271), - [sym_strong] = STATE(1116), - [sym_strong_begin] = STATE(293), - [sym_highlighted] = STATE(1116), - [sym_insert] = STATE(1116), - [sym_delete] = STATE(1116), - [sym_superscript] = STATE(1116), - [sym_subscript] = STATE(1116), - [sym_footnote_reference] = STATE(1116), - [sym__image] = STATE(1116), - [sym_full_reference_image] = STATE(1116), - [sym_collapsed_reference_image] = STATE(1116), - [sym_inline_image] = STATE(1116), - [sym__image_description] = STATE(1403), - [sym__link] = STATE(1116), - [sym_full_reference_link] = STATE(1116), - [sym_collapsed_reference_link] = STATE(1116), - [sym_inline_link] = STATE(1116), - [sym_link_text] = STATE(1404), - [sym__comment_with_spaces] = STATE(1116), - [sym_span] = STATE(1116), - [sym_raw_inline] = STATE(1116), - [sym_math] = STATE(1116), - [sym_verbatim] = STATE(1116), - [sym__todo_highlights] = STATE(1116), - [sym_todo] = STATE(1116), - [sym_note] = STATE(1116), - [sym__symbol_fallback] = STATE(1116), - [aux_sym__text] = STATE(781), - [aux_sym_table_cell_repeat1] = STATE(310), - [anon_sym_LBRACK] = ACTIONS(2756), - [anon_sym_PIPE] = ACTIONS(2759), - [anon_sym_LBRACE] = ACTIONS(2762), - [sym__whitespace1] = ACTIONS(2765), - [anon_sym_BSLASH] = ACTIONS(2768), - [sym_quotation_marks] = ACTIONS(2759), - [sym_ellipsis] = ACTIONS(2759), - [sym_em_dash] = ACTIONS(2759), - [sym_en_dash] = ACTIONS(2762), - [sym_backslash_escape] = ACTIONS(2762), - [anon_sym_LT] = ACTIONS(2771), - [anon_sym_LBRACE_] = ACTIONS(2774), - [anon_sym__] = ACTIONS(2777), - [anon_sym_LBRACE_STAR] = ACTIONS(2780), - [anon_sym_STAR] = ACTIONS(2783), - [anon_sym_LBRACE_EQ] = ACTIONS(2786), - [anon_sym_LBRACE_PLUS] = ACTIONS(2789), - [anon_sym_LBRACE_DASH] = ACTIONS(2792), - [sym_symbol] = ACTIONS(2759), - [anon_sym_LBRACE_CARET] = ACTIONS(2795), - [anon_sym_CARET] = ACTIONS(2795), - [anon_sym_LBRACE_TILDE] = ACTIONS(2798), - [anon_sym_TILDE] = ACTIONS(2798), - [anon_sym_LBRACK_CARET] = ACTIONS(2801), - [anon_sym_BANG_LBRACK] = ACTIONS(2804), - [anon_sym_DOLLAR] = ACTIONS(2807), - [anon_sym_TODO] = ACTIONS(2810), - [anon_sym_WIP] = ACTIONS(2810), - [anon_sym_NOTE] = ACTIONS(2813), - [anon_sym_INFO] = ACTIONS(2813), - [anon_sym_XXX] = ACTIONS(2813), - [sym_fixme] = ACTIONS(2759), - [aux_sym__text_token1] = ACTIONS(2816), - [sym__verbatim_begin] = ACTIONS(2819), - }, - [311] = { - [anon_sym_LBRACK] = ACTIONS(2822), - [anon_sym_PIPE] = ACTIONS(2824), - [anon_sym_LBRACE] = ACTIONS(2822), - [sym__whitespace1] = ACTIONS(2824), - [anon_sym_BSLASH] = ACTIONS(2822), - [sym_quotation_marks] = ACTIONS(2824), - [sym_ellipsis] = ACTIONS(2824), - [sym_em_dash] = ACTIONS(2824), - [sym_en_dash] = ACTIONS(2822), - [sym_backslash_escape] = ACTIONS(2822), - [anon_sym_LT] = ACTIONS(2824), - [anon_sym_LBRACE_] = ACTIONS(2824), - [anon_sym__] = ACTIONS(2824), - [anon_sym_LBRACE_STAR] = ACTIONS(2824), - [anon_sym_STAR] = ACTIONS(2824), - [anon_sym_LBRACE_EQ] = ACTIONS(2824), - [anon_sym_LBRACE_PLUS] = ACTIONS(2824), - [anon_sym_LBRACE_DASH] = ACTIONS(2824), - [sym_symbol] = ACTIONS(2824), - [anon_sym_LBRACE_CARET] = ACTIONS(2824), - [anon_sym_CARET] = ACTIONS(2824), - [anon_sym_LBRACE_TILDE] = ACTIONS(2824), - [anon_sym_TILDE] = ACTIONS(2824), - [anon_sym_LBRACK_CARET] = ACTIONS(2824), - [anon_sym_BANG_LBRACK] = ACTIONS(2824), - [anon_sym_DOLLAR] = ACTIONS(2824), - [anon_sym_TODO] = ACTIONS(2824), - [anon_sym_WIP] = ACTIONS(2824), - [anon_sym_NOTE] = ACTIONS(2824), - [anon_sym_INFO] = ACTIONS(2824), - [anon_sym_XXX] = ACTIONS(2824), - [sym_fixme] = ACTIONS(2824), - [aux_sym__text_token1] = ACTIONS(2822), - [sym__block_close] = ACTIONS(2824), - [sym__newline] = ACTIONS(2824), - [sym__newline_inline] = ACTIONS(2824), - [sym__heading1_begin] = ACTIONS(2824), - [sym__heading2_begin] = ACTIONS(2824), - [sym__heading3_begin] = ACTIONS(2824), - [sym__heading4_begin] = ACTIONS(2824), - [sym__heading5_begin] = ACTIONS(2824), - [sym__heading6_begin] = ACTIONS(2824), - [sym__div_begin] = ACTIONS(2824), - [sym__div_end] = ACTIONS(2826), - [sym__code_block_begin] = ACTIONS(2824), - [sym_list_marker_dash] = ACTIONS(2824), - [sym_list_marker_star] = ACTIONS(2824), - [sym_list_marker_plus] = ACTIONS(2824), - [sym__list_marker_task_begin] = ACTIONS(2824), - [sym_list_marker_definition] = ACTIONS(2824), - [sym_list_marker_decimal_period] = ACTIONS(2824), - [sym_list_marker_lower_alpha_period] = ACTIONS(2824), - [sym_list_marker_upper_alpha_period] = ACTIONS(2824), - [sym_list_marker_lower_roman_period] = ACTIONS(2824), - [sym_list_marker_upper_roman_period] = ACTIONS(2824), - [sym_list_marker_decimal_paren] = ACTIONS(2824), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2824), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2824), - [sym_list_marker_lower_roman_paren] = ACTIONS(2824), - [sym_list_marker_upper_roman_paren] = ACTIONS(2824), - [sym_list_marker_decimal_parens] = ACTIONS(2824), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2824), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2824), - [sym_list_marker_lower_roman_parens] = ACTIONS(2824), - [sym_list_marker_upper_roman_parens] = ACTIONS(2824), - [sym__block_quote_begin] = ACTIONS(2824), - [sym__block_quote_continuation] = ACTIONS(2824), - [sym__thematic_break_dash] = ACTIONS(2824), - [sym__thematic_break_star] = ACTIONS(2824), - [sym__footnote_begin] = ACTIONS(2824), - [sym__verbatim_begin] = ACTIONS(2824), - }, - [312] = { - [anon_sym_LBRACK] = ACTIONS(2828), - [anon_sym_PIPE] = ACTIONS(2830), - [anon_sym_LBRACE] = ACTIONS(2828), - [sym__whitespace1] = ACTIONS(2830), - [anon_sym_BSLASH] = ACTIONS(2828), - [sym_quotation_marks] = ACTIONS(2830), - [sym_ellipsis] = ACTIONS(2830), - [sym_em_dash] = ACTIONS(2830), - [sym_en_dash] = ACTIONS(2828), - [sym_backslash_escape] = ACTIONS(2828), - [anon_sym_LT] = ACTIONS(2830), - [anon_sym_LBRACE_] = ACTIONS(2830), - [anon_sym__] = ACTIONS(2830), - [anon_sym_LBRACE_STAR] = ACTIONS(2830), - [anon_sym_STAR] = ACTIONS(2830), - [anon_sym_LBRACE_EQ] = ACTIONS(2830), - [anon_sym_LBRACE_PLUS] = ACTIONS(2830), - [anon_sym_LBRACE_DASH] = ACTIONS(2830), - [sym_symbol] = ACTIONS(2830), - [anon_sym_LBRACE_CARET] = ACTIONS(2830), - [anon_sym_CARET] = ACTIONS(2830), - [anon_sym_LBRACE_TILDE] = ACTIONS(2830), - [anon_sym_TILDE] = ACTIONS(2830), - [anon_sym_LBRACK_CARET] = ACTIONS(2830), - [anon_sym_BANG_LBRACK] = ACTIONS(2830), - [anon_sym_DOLLAR] = ACTIONS(2830), - [anon_sym_TODO] = ACTIONS(2830), - [anon_sym_WIP] = ACTIONS(2830), - [anon_sym_NOTE] = ACTIONS(2830), - [anon_sym_INFO] = ACTIONS(2830), - [anon_sym_XXX] = ACTIONS(2830), - [sym_fixme] = ACTIONS(2830), - [aux_sym__text_token1] = ACTIONS(2828), - [sym__block_close] = ACTIONS(2830), - [sym__newline] = ACTIONS(2830), - [sym__newline_inline] = ACTIONS(2830), - [sym__heading1_begin] = ACTIONS(2830), - [sym__heading2_begin] = ACTIONS(2830), - [sym__heading3_begin] = ACTIONS(2830), - [sym__heading4_begin] = ACTIONS(2830), - [sym__heading5_begin] = ACTIONS(2830), - [sym__heading6_begin] = ACTIONS(2830), - [sym__div_begin] = ACTIONS(2830), - [sym__code_block_begin] = ACTIONS(2830), - [sym_list_marker_dash] = ACTIONS(2830), - [sym_list_marker_star] = ACTIONS(2830), - [sym_list_marker_plus] = ACTIONS(2830), - [sym__list_marker_task_begin] = ACTIONS(2830), - [sym_list_marker_definition] = ACTIONS(2830), - [sym_list_marker_decimal_period] = ACTIONS(2830), - [sym_list_marker_lower_alpha_period] = ACTIONS(2830), - [sym_list_marker_upper_alpha_period] = ACTIONS(2830), - [sym_list_marker_lower_roman_period] = ACTIONS(2830), - [sym_list_marker_upper_roman_period] = ACTIONS(2830), - [sym_list_marker_decimal_paren] = ACTIONS(2830), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2830), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2830), - [sym_list_marker_lower_roman_paren] = ACTIONS(2830), - [sym_list_marker_upper_roman_paren] = ACTIONS(2830), - [sym_list_marker_decimal_parens] = ACTIONS(2830), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2830), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2830), - [sym_list_marker_lower_roman_parens] = ACTIONS(2830), - [sym_list_marker_upper_roman_parens] = ACTIONS(2830), - [sym__block_quote_begin] = ACTIONS(2830), - [sym__block_quote_continuation] = ACTIONS(2830), - [sym__thematic_break_dash] = ACTIONS(2830), - [sym__thematic_break_star] = ACTIONS(2830), - [sym__footnote_begin] = ACTIONS(2830), - [sym__table_caption_begin] = ACTIONS(2830), - [sym__verbatim_begin] = ACTIONS(2830), - }, - [313] = { - [anon_sym_LBRACK] = ACTIONS(2832), - [anon_sym_PIPE] = ACTIONS(2834), - [anon_sym_LBRACE] = ACTIONS(2832), - [sym__whitespace1] = ACTIONS(2834), - [anon_sym_BSLASH] = ACTIONS(2832), - [sym_quotation_marks] = ACTIONS(2834), - [sym_ellipsis] = ACTIONS(2834), - [sym_em_dash] = ACTIONS(2834), - [sym_en_dash] = ACTIONS(2832), - [sym_backslash_escape] = ACTIONS(2832), - [anon_sym_LT] = ACTIONS(2834), - [anon_sym_LBRACE_] = ACTIONS(2834), - [anon_sym__] = ACTIONS(2834), - [anon_sym_LBRACE_STAR] = ACTIONS(2834), - [anon_sym_STAR] = ACTIONS(2834), - [anon_sym_LBRACE_EQ] = ACTIONS(2834), - [anon_sym_LBRACE_PLUS] = ACTIONS(2834), - [anon_sym_LBRACE_DASH] = ACTIONS(2834), - [sym_symbol] = ACTIONS(2834), - [anon_sym_LBRACE_CARET] = ACTIONS(2834), - [anon_sym_CARET] = ACTIONS(2834), - [anon_sym_LBRACE_TILDE] = ACTIONS(2834), - [anon_sym_TILDE] = ACTIONS(2834), - [anon_sym_LBRACK_CARET] = ACTIONS(2834), - [anon_sym_BANG_LBRACK] = ACTIONS(2834), - [anon_sym_DOLLAR] = ACTIONS(2834), - [anon_sym_TODO] = ACTIONS(2834), - [anon_sym_WIP] = ACTIONS(2834), - [anon_sym_NOTE] = ACTIONS(2834), - [anon_sym_INFO] = ACTIONS(2834), - [anon_sym_XXX] = ACTIONS(2834), - [sym_fixme] = ACTIONS(2834), - [aux_sym__text_token1] = ACTIONS(2832), - [sym__block_close] = ACTIONS(2834), - [sym__newline] = ACTIONS(2834), - [sym__newline_inline] = ACTIONS(2834), - [sym__heading1_begin] = ACTIONS(2834), - [sym__heading2_begin] = ACTIONS(2834), - [sym__heading3_begin] = ACTIONS(2834), - [sym__heading4_begin] = ACTIONS(2834), - [sym__heading5_begin] = ACTIONS(2834), - [sym__heading6_begin] = ACTIONS(2834), - [sym__div_begin] = ACTIONS(2834), - [sym__code_block_begin] = ACTIONS(2834), - [sym_list_marker_dash] = ACTIONS(2834), - [sym_list_marker_star] = ACTIONS(2834), - [sym_list_marker_plus] = ACTIONS(2834), - [sym__list_marker_task_begin] = ACTIONS(2834), - [sym_list_marker_definition] = ACTIONS(2834), - [sym_list_marker_decimal_period] = ACTIONS(2834), - [sym_list_marker_lower_alpha_period] = ACTIONS(2834), - [sym_list_marker_upper_alpha_period] = ACTIONS(2834), - [sym_list_marker_lower_roman_period] = ACTIONS(2834), - [sym_list_marker_upper_roman_period] = ACTIONS(2834), - [sym_list_marker_decimal_paren] = ACTIONS(2834), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2834), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2834), - [sym_list_marker_lower_roman_paren] = ACTIONS(2834), - [sym_list_marker_upper_roman_paren] = ACTIONS(2834), - [sym_list_marker_decimal_parens] = ACTIONS(2834), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2834), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2834), - [sym_list_marker_lower_roman_parens] = ACTIONS(2834), - [sym_list_marker_upper_roman_parens] = ACTIONS(2834), - [sym__block_quote_begin] = ACTIONS(2834), - [sym__block_quote_continuation] = ACTIONS(2834), - [sym__thematic_break_dash] = ACTIONS(2834), - [sym__thematic_break_star] = ACTIONS(2834), - [sym__footnote_begin] = ACTIONS(2834), - [sym__table_caption_begin] = ACTIONS(2834), - [sym__verbatim_begin] = ACTIONS(2834), - }, - [314] = { - [anon_sym_LBRACK] = ACTIONS(2836), - [anon_sym_PIPE] = ACTIONS(2838), - [anon_sym_LBRACE] = ACTIONS(2836), - [sym__whitespace1] = ACTIONS(2838), - [anon_sym_BSLASH] = ACTIONS(2836), - [sym_quotation_marks] = ACTIONS(2838), - [sym_ellipsis] = ACTIONS(2838), - [sym_em_dash] = ACTIONS(2838), - [sym_en_dash] = ACTIONS(2836), - [sym_backslash_escape] = ACTIONS(2836), - [anon_sym_LT] = ACTIONS(2838), - [anon_sym_LBRACE_] = ACTIONS(2838), - [anon_sym__] = ACTIONS(2838), - [anon_sym_LBRACE_STAR] = ACTIONS(2838), - [anon_sym_STAR] = ACTIONS(2838), - [anon_sym_LBRACE_EQ] = ACTIONS(2838), - [anon_sym_LBRACE_PLUS] = ACTIONS(2838), - [anon_sym_LBRACE_DASH] = ACTIONS(2838), - [sym_symbol] = ACTIONS(2838), - [anon_sym_LBRACE_CARET] = ACTIONS(2838), - [anon_sym_CARET] = ACTIONS(2838), - [anon_sym_LBRACE_TILDE] = ACTIONS(2838), - [anon_sym_TILDE] = ACTIONS(2838), - [anon_sym_LBRACK_CARET] = ACTIONS(2838), - [anon_sym_BANG_LBRACK] = ACTIONS(2838), - [anon_sym_DOLLAR] = ACTIONS(2838), - [anon_sym_TODO] = ACTIONS(2838), - [anon_sym_WIP] = ACTIONS(2838), - [anon_sym_NOTE] = ACTIONS(2838), - [anon_sym_INFO] = ACTIONS(2838), - [anon_sym_XXX] = ACTIONS(2838), - [sym_fixme] = ACTIONS(2838), - [aux_sym__text_token1] = ACTIONS(2836), - [sym__block_close] = ACTIONS(2838), - [sym__newline] = ACTIONS(2838), - [sym__newline_inline] = ACTIONS(2838), - [sym__heading1_begin] = ACTIONS(2838), - [sym__heading2_begin] = ACTIONS(2838), - [sym__heading3_begin] = ACTIONS(2838), - [sym__heading4_begin] = ACTIONS(2838), - [sym__heading5_begin] = ACTIONS(2838), - [sym__heading6_begin] = ACTIONS(2838), - [sym__div_begin] = ACTIONS(2838), - [sym__code_block_begin] = ACTIONS(2838), - [sym__code_block_end] = ACTIONS(2840), - [sym_list_marker_dash] = ACTIONS(2838), - [sym_list_marker_star] = ACTIONS(2838), - [sym_list_marker_plus] = ACTIONS(2838), - [sym__list_marker_task_begin] = ACTIONS(2838), - [sym_list_marker_definition] = ACTIONS(2838), - [sym_list_marker_decimal_period] = ACTIONS(2838), - [sym_list_marker_lower_alpha_period] = ACTIONS(2838), - [sym_list_marker_upper_alpha_period] = ACTIONS(2838), - [sym_list_marker_lower_roman_period] = ACTIONS(2838), - [sym_list_marker_upper_roman_period] = ACTIONS(2838), - [sym_list_marker_decimal_paren] = ACTIONS(2838), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2838), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2838), - [sym_list_marker_lower_roman_paren] = ACTIONS(2838), - [sym_list_marker_upper_roman_paren] = ACTIONS(2838), - [sym_list_marker_decimal_parens] = ACTIONS(2838), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2838), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2838), - [sym_list_marker_lower_roman_parens] = ACTIONS(2838), - [sym_list_marker_upper_roman_parens] = ACTIONS(2838), - [sym__block_quote_begin] = ACTIONS(2838), - [sym__block_quote_continuation] = ACTIONS(2838), - [sym__thematic_break_dash] = ACTIONS(2838), - [sym__thematic_break_star] = ACTIONS(2838), - [sym__footnote_begin] = ACTIONS(2838), - [sym__verbatim_begin] = ACTIONS(2838), - }, - [315] = { - [anon_sym_LBRACK] = ACTIONS(2842), - [anon_sym_PIPE] = ACTIONS(2844), - [anon_sym_LBRACE] = ACTIONS(2842), - [sym__whitespace1] = ACTIONS(2844), - [anon_sym_BSLASH] = ACTIONS(2842), - [sym_quotation_marks] = ACTIONS(2844), - [sym_ellipsis] = ACTIONS(2844), - [sym_em_dash] = ACTIONS(2844), - [sym_en_dash] = ACTIONS(2842), - [sym_backslash_escape] = ACTIONS(2842), - [anon_sym_LT] = ACTIONS(2844), - [anon_sym_LBRACE_] = ACTIONS(2844), - [anon_sym__] = ACTIONS(2844), - [anon_sym_LBRACE_STAR] = ACTIONS(2844), - [anon_sym_STAR] = ACTIONS(2844), - [anon_sym_LBRACE_EQ] = ACTIONS(2844), - [anon_sym_LBRACE_PLUS] = ACTIONS(2844), - [anon_sym_LBRACE_DASH] = ACTIONS(2844), - [sym_symbol] = ACTIONS(2844), - [anon_sym_LBRACE_CARET] = ACTIONS(2844), - [anon_sym_CARET] = ACTIONS(2844), - [anon_sym_LBRACE_TILDE] = ACTIONS(2844), - [anon_sym_TILDE] = ACTIONS(2844), - [anon_sym_LBRACK_CARET] = ACTIONS(2844), - [anon_sym_BANG_LBRACK] = ACTIONS(2844), - [anon_sym_DOLLAR] = ACTIONS(2844), - [anon_sym_TODO] = ACTIONS(2844), - [anon_sym_WIP] = ACTIONS(2844), - [anon_sym_NOTE] = ACTIONS(2844), - [anon_sym_INFO] = ACTIONS(2844), - [anon_sym_XXX] = ACTIONS(2844), - [sym_fixme] = ACTIONS(2844), - [aux_sym__text_token1] = ACTIONS(2842), - [sym__newline] = ACTIONS(2844), - [sym__newline_inline] = ACTIONS(2844), - [sym__heading1_begin] = ACTIONS(2844), - [sym__heading2_begin] = ACTIONS(2844), - [sym__heading3_begin] = ACTIONS(2844), - [sym__heading4_begin] = ACTIONS(2844), - [sym__heading5_begin] = ACTIONS(2844), - [sym__heading6_begin] = ACTIONS(2844), - [sym__div_begin] = ACTIONS(2844), - [sym__div_end] = ACTIONS(2846), - [sym__code_block_begin] = ACTIONS(2844), - [sym_list_marker_dash] = ACTIONS(2844), - [sym_list_marker_star] = ACTIONS(2844), - [sym_list_marker_plus] = ACTIONS(2844), - [sym__list_marker_task_begin] = ACTIONS(2844), - [sym_list_marker_definition] = ACTIONS(2844), - [sym_list_marker_decimal_period] = ACTIONS(2844), - [sym_list_marker_lower_alpha_period] = ACTIONS(2844), - [sym_list_marker_upper_alpha_period] = ACTIONS(2844), - [sym_list_marker_lower_roman_period] = ACTIONS(2844), - [sym_list_marker_upper_roman_period] = ACTIONS(2844), - [sym_list_marker_decimal_paren] = ACTIONS(2844), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2844), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2844), - [sym_list_marker_lower_roman_paren] = ACTIONS(2844), - [sym_list_marker_upper_roman_paren] = ACTIONS(2844), - [sym_list_marker_decimal_parens] = ACTIONS(2844), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2844), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2844), - [sym_list_marker_lower_roman_parens] = ACTIONS(2844), - [sym_list_marker_upper_roman_parens] = ACTIONS(2844), - [sym__block_quote_begin] = ACTIONS(2844), - [sym__block_quote_continuation] = ACTIONS(2844), - [sym__thematic_break_dash] = ACTIONS(2844), - [sym__thematic_break_star] = ACTIONS(2844), - [sym__footnote_begin] = ACTIONS(2844), - [sym__footnote_end] = ACTIONS(2844), - [sym__verbatim_begin] = ACTIONS(2844), - }, - [316] = { - [anon_sym_LBRACK] = ACTIONS(2848), - [anon_sym_PIPE] = ACTIONS(2850), - [anon_sym_LBRACE] = ACTIONS(2848), - [sym__whitespace1] = ACTIONS(2850), - [anon_sym_BSLASH] = ACTIONS(2848), - [sym_quotation_marks] = ACTIONS(2850), - [sym_ellipsis] = ACTIONS(2850), - [sym_em_dash] = ACTIONS(2850), - [sym_en_dash] = ACTIONS(2848), - [sym_backslash_escape] = ACTIONS(2848), - [anon_sym_LT] = ACTIONS(2850), - [anon_sym_LBRACE_] = ACTIONS(2850), - [anon_sym__] = ACTIONS(2850), - [anon_sym_LBRACE_STAR] = ACTIONS(2850), - [anon_sym_STAR] = ACTIONS(2850), - [anon_sym_LBRACE_EQ] = ACTIONS(2850), - [anon_sym_LBRACE_PLUS] = ACTIONS(2850), - [anon_sym_LBRACE_DASH] = ACTIONS(2850), - [sym_symbol] = ACTIONS(2850), - [anon_sym_LBRACE_CARET] = ACTIONS(2850), - [anon_sym_CARET] = ACTIONS(2850), - [anon_sym_LBRACE_TILDE] = ACTIONS(2850), - [anon_sym_TILDE] = ACTIONS(2850), - [anon_sym_LBRACK_CARET] = ACTIONS(2850), - [anon_sym_BANG_LBRACK] = ACTIONS(2850), - [anon_sym_DOLLAR] = ACTIONS(2850), - [anon_sym_TODO] = ACTIONS(2850), - [anon_sym_WIP] = ACTIONS(2850), - [anon_sym_NOTE] = ACTIONS(2850), - [anon_sym_INFO] = ACTIONS(2850), - [anon_sym_XXX] = ACTIONS(2850), - [sym_fixme] = ACTIONS(2850), - [aux_sym__text_token1] = ACTIONS(2848), - [sym__block_close] = ACTIONS(2850), - [sym__newline] = ACTIONS(2850), - [sym__newline_inline] = ACTIONS(2850), - [sym__heading1_begin] = ACTIONS(2850), - [sym__heading2_begin] = ACTIONS(2850), - [sym__heading3_begin] = ACTIONS(2850), - [sym__heading4_begin] = ACTIONS(2850), - [sym__heading5_begin] = ACTIONS(2850), - [sym__heading6_begin] = ACTIONS(2850), - [sym__div_begin] = ACTIONS(2850), - [sym__code_block_begin] = ACTIONS(2850), - [sym__code_block_end] = ACTIONS(2852), - [sym_list_marker_dash] = ACTIONS(2850), - [sym_list_marker_star] = ACTIONS(2850), - [sym_list_marker_plus] = ACTIONS(2850), - [sym__list_marker_task_begin] = ACTIONS(2850), - [sym_list_marker_definition] = ACTIONS(2850), - [sym_list_marker_decimal_period] = ACTIONS(2850), - [sym_list_marker_lower_alpha_period] = ACTIONS(2850), - [sym_list_marker_upper_alpha_period] = ACTIONS(2850), - [sym_list_marker_lower_roman_period] = ACTIONS(2850), - [sym_list_marker_upper_roman_period] = ACTIONS(2850), - [sym_list_marker_decimal_paren] = ACTIONS(2850), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2850), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2850), - [sym_list_marker_lower_roman_paren] = ACTIONS(2850), - [sym_list_marker_upper_roman_paren] = ACTIONS(2850), - [sym_list_marker_decimal_parens] = ACTIONS(2850), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2850), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2850), - [sym_list_marker_lower_roman_parens] = ACTIONS(2850), - [sym_list_marker_upper_roman_parens] = ACTIONS(2850), - [sym__block_quote_begin] = ACTIONS(2850), - [sym__block_quote_continuation] = ACTIONS(2850), - [sym__thematic_break_dash] = ACTIONS(2850), - [sym__thematic_break_star] = ACTIONS(2850), - [sym__footnote_begin] = ACTIONS(2850), - [sym__verbatim_begin] = ACTIONS(2850), - }, - [317] = { - [anon_sym_LBRACK] = ACTIONS(2854), - [anon_sym_PIPE] = ACTIONS(2856), - [anon_sym_LBRACE] = ACTIONS(2854), - [sym__whitespace1] = ACTIONS(2856), - [anon_sym_BSLASH] = ACTIONS(2854), - [sym_quotation_marks] = ACTIONS(2856), - [sym_ellipsis] = ACTIONS(2856), - [sym_em_dash] = ACTIONS(2856), - [sym_en_dash] = ACTIONS(2854), - [sym_backslash_escape] = ACTIONS(2854), - [anon_sym_LT] = ACTIONS(2856), - [anon_sym_LBRACE_] = ACTIONS(2856), - [anon_sym__] = ACTIONS(2856), - [anon_sym_LBRACE_STAR] = ACTIONS(2856), - [anon_sym_STAR] = ACTIONS(2856), - [anon_sym_LBRACE_EQ] = ACTIONS(2856), - [anon_sym_LBRACE_PLUS] = ACTIONS(2856), - [anon_sym_LBRACE_DASH] = ACTIONS(2856), - [sym_symbol] = ACTIONS(2856), - [anon_sym_LBRACE_CARET] = ACTIONS(2856), - [anon_sym_CARET] = ACTIONS(2856), - [anon_sym_LBRACE_TILDE] = ACTIONS(2856), - [anon_sym_TILDE] = ACTIONS(2856), - [anon_sym_LBRACK_CARET] = ACTIONS(2856), - [anon_sym_BANG_LBRACK] = ACTIONS(2856), - [anon_sym_DOLLAR] = ACTIONS(2856), - [anon_sym_TODO] = ACTIONS(2856), - [anon_sym_WIP] = ACTIONS(2856), - [anon_sym_NOTE] = ACTIONS(2856), - [anon_sym_INFO] = ACTIONS(2856), - [anon_sym_XXX] = ACTIONS(2856), - [sym_fixme] = ACTIONS(2856), - [aux_sym__text_token1] = ACTIONS(2854), - [sym__newline] = ACTIONS(2856), - [sym__newline_inline] = ACTIONS(2856), - [sym__heading1_begin] = ACTIONS(2856), - [sym__heading2_begin] = ACTIONS(2856), - [sym__heading3_begin] = ACTIONS(2856), - [sym__heading4_begin] = ACTIONS(2856), - [sym__heading5_begin] = ACTIONS(2856), - [sym__heading6_begin] = ACTIONS(2856), - [sym__div_begin] = ACTIONS(2856), - [sym__code_block_begin] = ACTIONS(2856), - [sym_list_marker_dash] = ACTIONS(2856), - [sym_list_marker_star] = ACTIONS(2856), - [sym_list_marker_plus] = ACTIONS(2856), - [sym__list_marker_task_begin] = ACTIONS(2856), - [sym_list_marker_definition] = ACTIONS(2856), - [sym_list_marker_decimal_period] = ACTIONS(2856), - [sym_list_marker_lower_alpha_period] = ACTIONS(2856), - [sym_list_marker_upper_alpha_period] = ACTIONS(2856), - [sym_list_marker_lower_roman_period] = ACTIONS(2856), - [sym_list_marker_upper_roman_period] = ACTIONS(2856), - [sym_list_marker_decimal_paren] = ACTIONS(2856), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2856), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2856), - [sym_list_marker_lower_roman_paren] = ACTIONS(2856), - [sym_list_marker_upper_roman_paren] = ACTIONS(2856), - [sym_list_marker_decimal_parens] = ACTIONS(2856), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2856), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2856), - [sym_list_marker_lower_roman_parens] = ACTIONS(2856), - [sym_list_marker_upper_roman_parens] = ACTIONS(2856), - [sym__block_quote_begin] = ACTIONS(2856), - [sym__block_quote_continuation] = ACTIONS(2856), - [sym__thematic_break_dash] = ACTIONS(2856), - [sym__thematic_break_star] = ACTIONS(2856), - [sym__footnote_begin] = ACTIONS(2856), - [sym__footnote_end] = ACTIONS(2856), - [sym__table_caption_begin] = ACTIONS(2856), - [sym__verbatim_begin] = ACTIONS(2856), - }, - [318] = { - [anon_sym_LBRACK] = ACTIONS(2858), - [anon_sym_PIPE] = ACTIONS(2860), - [anon_sym_LBRACE] = ACTIONS(2858), - [sym__whitespace1] = ACTIONS(2860), - [anon_sym_BSLASH] = ACTIONS(2858), - [sym_quotation_marks] = ACTIONS(2860), - [sym_ellipsis] = ACTIONS(2860), - [sym_em_dash] = ACTIONS(2860), - [sym_en_dash] = ACTIONS(2858), - [sym_backslash_escape] = ACTIONS(2858), - [anon_sym_LT] = ACTIONS(2860), - [anon_sym_LBRACE_] = ACTIONS(2860), - [anon_sym__] = ACTIONS(2860), - [anon_sym_LBRACE_STAR] = ACTIONS(2860), - [anon_sym_STAR] = ACTIONS(2860), - [anon_sym_LBRACE_EQ] = ACTIONS(2860), - [anon_sym_LBRACE_PLUS] = ACTIONS(2860), - [anon_sym_LBRACE_DASH] = ACTIONS(2860), - [sym_symbol] = ACTIONS(2860), - [anon_sym_LBRACE_CARET] = ACTIONS(2860), - [anon_sym_CARET] = ACTIONS(2860), - [anon_sym_LBRACE_TILDE] = ACTIONS(2860), - [anon_sym_TILDE] = ACTIONS(2860), - [anon_sym_LBRACK_CARET] = ACTIONS(2860), - [anon_sym_BANG_LBRACK] = ACTIONS(2860), - [anon_sym_DOLLAR] = ACTIONS(2860), - [anon_sym_TODO] = ACTIONS(2860), - [anon_sym_WIP] = ACTIONS(2860), - [anon_sym_NOTE] = ACTIONS(2860), - [anon_sym_INFO] = ACTIONS(2860), - [anon_sym_XXX] = ACTIONS(2860), - [sym_fixme] = ACTIONS(2860), - [aux_sym__text_token1] = ACTIONS(2858), - [sym__newline] = ACTIONS(2860), - [sym__newline_inline] = ACTIONS(2860), - [sym__heading1_begin] = ACTIONS(2860), - [sym__heading2_begin] = ACTIONS(2860), - [sym__heading3_begin] = ACTIONS(2860), - [sym__heading4_begin] = ACTIONS(2860), - [sym__heading5_begin] = ACTIONS(2860), - [sym__heading6_begin] = ACTIONS(2860), - [sym__div_begin] = ACTIONS(2860), - [sym__code_block_begin] = ACTIONS(2860), - [sym_list_marker_dash] = ACTIONS(2860), - [sym_list_marker_star] = ACTIONS(2860), - [sym_list_marker_plus] = ACTIONS(2860), - [sym__list_marker_task_begin] = ACTIONS(2860), - [sym_list_marker_definition] = ACTIONS(2860), - [sym_list_marker_decimal_period] = ACTIONS(2860), - [sym_list_marker_lower_alpha_period] = ACTIONS(2860), - [sym_list_marker_upper_alpha_period] = ACTIONS(2860), - [sym_list_marker_lower_roman_period] = ACTIONS(2860), - [sym_list_marker_upper_roman_period] = ACTIONS(2860), - [sym_list_marker_decimal_paren] = ACTIONS(2860), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2860), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2860), - [sym_list_marker_lower_roman_paren] = ACTIONS(2860), - [sym_list_marker_upper_roman_paren] = ACTIONS(2860), - [sym_list_marker_decimal_parens] = ACTIONS(2860), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2860), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2860), - [sym_list_marker_lower_roman_parens] = ACTIONS(2860), - [sym_list_marker_upper_roman_parens] = ACTIONS(2860), - [sym__block_quote_begin] = ACTIONS(2860), - [sym__block_quote_continuation] = ACTIONS(2860), - [sym__thematic_break_dash] = ACTIONS(2860), - [sym__thematic_break_star] = ACTIONS(2860), - [sym__footnote_begin] = ACTIONS(2860), - [sym__footnote_end] = ACTIONS(2860), - [sym__table_caption_begin] = ACTIONS(2860), - [sym__verbatim_begin] = ACTIONS(2860), - }, - [319] = { - [anon_sym_LBRACK] = ACTIONS(2862), - [anon_sym_PIPE] = ACTIONS(2864), - [anon_sym_LBRACE] = ACTIONS(2862), - [sym__whitespace1] = ACTIONS(2864), - [anon_sym_BSLASH] = ACTIONS(2862), - [sym_quotation_marks] = ACTIONS(2864), - [sym_ellipsis] = ACTIONS(2864), - [sym_em_dash] = ACTIONS(2864), - [sym_en_dash] = ACTIONS(2862), - [sym_backslash_escape] = ACTIONS(2862), - [anon_sym_LT] = ACTIONS(2864), - [anon_sym_LBRACE_] = ACTIONS(2864), - [anon_sym__] = ACTIONS(2864), - [anon_sym_LBRACE_STAR] = ACTIONS(2864), - [anon_sym_STAR] = ACTIONS(2864), - [anon_sym_LBRACE_EQ] = ACTIONS(2864), - [anon_sym_LBRACE_PLUS] = ACTIONS(2864), - [anon_sym_LBRACE_DASH] = ACTIONS(2864), - [sym_symbol] = ACTIONS(2864), - [anon_sym_LBRACE_CARET] = ACTIONS(2864), - [anon_sym_CARET] = ACTIONS(2864), - [anon_sym_LBRACE_TILDE] = ACTIONS(2864), - [anon_sym_TILDE] = ACTIONS(2864), - [anon_sym_LBRACK_CARET] = ACTIONS(2864), - [anon_sym_BANG_LBRACK] = ACTIONS(2864), - [anon_sym_DOLLAR] = ACTIONS(2864), - [anon_sym_TODO] = ACTIONS(2864), - [anon_sym_WIP] = ACTIONS(2864), - [anon_sym_NOTE] = ACTIONS(2864), - [anon_sym_INFO] = ACTIONS(2864), - [anon_sym_XXX] = ACTIONS(2864), - [sym_fixme] = ACTIONS(2864), - [aux_sym__text_token1] = ACTIONS(2862), - [sym__newline] = ACTIONS(2864), - [sym__newline_inline] = ACTIONS(2864), - [sym__heading1_begin] = ACTIONS(2864), - [sym__heading2_begin] = ACTIONS(2864), - [sym__heading3_begin] = ACTIONS(2864), - [sym__heading4_begin] = ACTIONS(2864), - [sym__heading5_begin] = ACTIONS(2864), - [sym__heading6_begin] = ACTIONS(2864), - [sym__div_begin] = ACTIONS(2864), - [sym__div_end] = ACTIONS(2866), - [sym__code_block_begin] = ACTIONS(2864), - [sym_list_marker_dash] = ACTIONS(2864), - [sym_list_marker_star] = ACTIONS(2864), - [sym_list_marker_plus] = ACTIONS(2864), - [sym__list_marker_task_begin] = ACTIONS(2864), - [sym_list_marker_definition] = ACTIONS(2864), - [sym_list_marker_decimal_period] = ACTIONS(2864), - [sym_list_marker_lower_alpha_period] = ACTIONS(2864), - [sym_list_marker_upper_alpha_period] = ACTIONS(2864), - [sym_list_marker_lower_roman_period] = ACTIONS(2864), - [sym_list_marker_upper_roman_period] = ACTIONS(2864), - [sym_list_marker_decimal_paren] = ACTIONS(2864), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2864), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2864), - [sym_list_marker_lower_roman_paren] = ACTIONS(2864), - [sym_list_marker_upper_roman_paren] = ACTIONS(2864), - [sym_list_marker_decimal_parens] = ACTIONS(2864), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2864), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2864), - [sym_list_marker_lower_roman_parens] = ACTIONS(2864), - [sym_list_marker_upper_roman_parens] = ACTIONS(2864), - [sym__block_quote_begin] = ACTIONS(2864), - [sym__block_quote_continuation] = ACTIONS(2864), - [sym__thematic_break_dash] = ACTIONS(2864), - [sym__thematic_break_star] = ACTIONS(2864), - [sym__footnote_begin] = ACTIONS(2864), - [sym__footnote_end] = ACTIONS(2864), - [sym__verbatim_begin] = ACTIONS(2864), - }, - [320] = { - [anon_sym_LBRACK] = ACTIONS(2868), - [anon_sym_PIPE] = ACTIONS(2870), - [anon_sym_LBRACE] = ACTIONS(2868), - [sym__whitespace1] = ACTIONS(2870), - [anon_sym_BSLASH] = ACTIONS(2868), - [sym_quotation_marks] = ACTIONS(2870), - [sym_ellipsis] = ACTIONS(2870), - [sym_em_dash] = ACTIONS(2870), - [sym_en_dash] = ACTIONS(2868), - [sym_backslash_escape] = ACTIONS(2868), - [anon_sym_LT] = ACTIONS(2870), - [anon_sym_LBRACE_] = ACTIONS(2870), - [anon_sym__] = ACTIONS(2870), - [anon_sym_LBRACE_STAR] = ACTIONS(2870), - [anon_sym_STAR] = ACTIONS(2870), - [anon_sym_LBRACE_EQ] = ACTIONS(2870), - [anon_sym_LBRACE_PLUS] = ACTIONS(2870), - [anon_sym_LBRACE_DASH] = ACTIONS(2870), - [sym_symbol] = ACTIONS(2870), - [anon_sym_LBRACE_CARET] = ACTIONS(2870), - [anon_sym_CARET] = ACTIONS(2870), - [anon_sym_LBRACE_TILDE] = ACTIONS(2870), - [anon_sym_TILDE] = ACTIONS(2870), - [anon_sym_LBRACK_CARET] = ACTIONS(2870), - [anon_sym_BANG_LBRACK] = ACTIONS(2870), - [anon_sym_DOLLAR] = ACTIONS(2870), - [anon_sym_TODO] = ACTIONS(2870), - [anon_sym_WIP] = ACTIONS(2870), - [anon_sym_NOTE] = ACTIONS(2870), - [anon_sym_INFO] = ACTIONS(2870), - [anon_sym_XXX] = ACTIONS(2870), - [sym_fixme] = ACTIONS(2870), - [aux_sym__text_token1] = ACTIONS(2868), - [sym__newline] = ACTIONS(2870), - [sym__newline_inline] = ACTIONS(2870), - [sym__heading1_begin] = ACTIONS(2870), - [sym__heading2_begin] = ACTIONS(2870), - [sym__heading3_begin] = ACTIONS(2870), - [sym__heading4_begin] = ACTIONS(2870), - [sym__heading5_begin] = ACTIONS(2870), - [sym__heading6_begin] = ACTIONS(2870), - [sym__div_begin] = ACTIONS(2870), - [sym__div_end] = ACTIONS(2872), - [sym__code_block_begin] = ACTIONS(2870), - [sym_list_marker_dash] = ACTIONS(2870), - [sym_list_marker_star] = ACTIONS(2870), - [sym_list_marker_plus] = ACTIONS(2870), - [sym__list_marker_task_begin] = ACTIONS(2870), - [sym_list_marker_definition] = ACTIONS(2870), - [sym_list_marker_decimal_period] = ACTIONS(2870), - [sym_list_marker_lower_alpha_period] = ACTIONS(2870), - [sym_list_marker_upper_alpha_period] = ACTIONS(2870), - [sym_list_marker_lower_roman_period] = ACTIONS(2870), - [sym_list_marker_upper_roman_period] = ACTIONS(2870), - [sym_list_marker_decimal_paren] = ACTIONS(2870), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2870), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2870), - [sym_list_marker_lower_roman_paren] = ACTIONS(2870), - [sym_list_marker_upper_roman_paren] = ACTIONS(2870), - [sym_list_marker_decimal_parens] = ACTIONS(2870), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2870), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2870), - [sym_list_marker_lower_roman_parens] = ACTIONS(2870), - [sym_list_marker_upper_roman_parens] = ACTIONS(2870), - [sym__block_quote_begin] = ACTIONS(2870), - [sym__block_quote_continuation] = ACTIONS(2870), - [sym__thematic_break_dash] = ACTIONS(2870), - [sym__thematic_break_star] = ACTIONS(2870), - [sym__footnote_begin] = ACTIONS(2870), - [sym__footnote_end] = ACTIONS(2870), - [sym__verbatim_begin] = ACTIONS(2870), - }, - [321] = { - [anon_sym_LBRACK] = ACTIONS(2848), - [anon_sym_PIPE] = ACTIONS(2850), - [anon_sym_LBRACE] = ACTIONS(2848), - [sym__whitespace1] = ACTIONS(2850), - [anon_sym_BSLASH] = ACTIONS(2848), - [sym_quotation_marks] = ACTIONS(2850), - [sym_ellipsis] = ACTIONS(2850), - [sym_em_dash] = ACTIONS(2850), - [sym_en_dash] = ACTIONS(2848), - [sym_backslash_escape] = ACTIONS(2848), - [anon_sym_LT] = ACTIONS(2850), - [anon_sym_LBRACE_] = ACTIONS(2850), - [anon_sym__] = ACTIONS(2850), - [anon_sym_LBRACE_STAR] = ACTIONS(2850), - [anon_sym_STAR] = ACTIONS(2850), - [anon_sym_LBRACE_EQ] = ACTIONS(2850), - [anon_sym_LBRACE_PLUS] = ACTIONS(2850), - [anon_sym_LBRACE_DASH] = ACTIONS(2850), - [sym_symbol] = ACTIONS(2850), - [anon_sym_LBRACE_CARET] = ACTIONS(2850), - [anon_sym_CARET] = ACTIONS(2850), - [anon_sym_LBRACE_TILDE] = ACTIONS(2850), - [anon_sym_TILDE] = ACTIONS(2850), - [anon_sym_LBRACK_CARET] = ACTIONS(2850), - [anon_sym_BANG_LBRACK] = ACTIONS(2850), - [anon_sym_DOLLAR] = ACTIONS(2850), - [anon_sym_TODO] = ACTIONS(2850), - [anon_sym_WIP] = ACTIONS(2850), - [anon_sym_NOTE] = ACTIONS(2850), - [anon_sym_INFO] = ACTIONS(2850), - [anon_sym_XXX] = ACTIONS(2850), - [sym_fixme] = ACTIONS(2850), - [aux_sym__text_token1] = ACTIONS(2848), - [sym__newline] = ACTIONS(2850), - [sym__newline_inline] = ACTIONS(2850), - [sym__heading1_begin] = ACTIONS(2850), - [sym__heading2_begin] = ACTIONS(2850), - [sym__heading3_begin] = ACTIONS(2850), - [sym__heading4_begin] = ACTIONS(2850), - [sym__heading5_begin] = ACTIONS(2850), - [sym__heading6_begin] = ACTIONS(2850), - [sym__div_begin] = ACTIONS(2850), - [sym__code_block_begin] = ACTIONS(2850), - [sym__code_block_end] = ACTIONS(2874), - [sym_list_marker_dash] = ACTIONS(2850), - [sym_list_marker_star] = ACTIONS(2850), - [sym_list_marker_plus] = ACTIONS(2850), - [sym__list_marker_task_begin] = ACTIONS(2850), - [sym_list_marker_definition] = ACTIONS(2850), - [sym_list_marker_decimal_period] = ACTIONS(2850), - [sym_list_marker_lower_alpha_period] = ACTIONS(2850), - [sym_list_marker_upper_alpha_period] = ACTIONS(2850), - [sym_list_marker_lower_roman_period] = ACTIONS(2850), - [sym_list_marker_upper_roman_period] = ACTIONS(2850), - [sym_list_marker_decimal_paren] = ACTIONS(2850), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2850), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2850), - [sym_list_marker_lower_roman_paren] = ACTIONS(2850), - [sym_list_marker_upper_roman_paren] = ACTIONS(2850), - [sym_list_marker_decimal_parens] = ACTIONS(2850), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2850), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2850), - [sym_list_marker_lower_roman_parens] = ACTIONS(2850), - [sym_list_marker_upper_roman_parens] = ACTIONS(2850), - [sym__block_quote_begin] = ACTIONS(2850), - [sym__block_quote_continuation] = ACTIONS(2850), - [sym__thematic_break_dash] = ACTIONS(2850), - [sym__thematic_break_star] = ACTIONS(2850), - [sym__footnote_begin] = ACTIONS(2850), - [sym__footnote_end] = ACTIONS(2850), - [sym__verbatim_begin] = ACTIONS(2850), - }, - [322] = { - [anon_sym_LBRACK] = ACTIONS(2836), - [anon_sym_PIPE] = ACTIONS(2838), - [anon_sym_LBRACE] = ACTIONS(2836), - [sym__whitespace1] = ACTIONS(2838), - [anon_sym_BSLASH] = ACTIONS(2836), - [sym_quotation_marks] = ACTIONS(2838), - [sym_ellipsis] = ACTIONS(2838), - [sym_em_dash] = ACTIONS(2838), - [sym_en_dash] = ACTIONS(2836), - [sym_backslash_escape] = ACTIONS(2836), - [anon_sym_LT] = ACTIONS(2838), - [anon_sym_LBRACE_] = ACTIONS(2838), - [anon_sym__] = ACTIONS(2838), - [anon_sym_LBRACE_STAR] = ACTIONS(2838), - [anon_sym_STAR] = ACTIONS(2838), - [anon_sym_LBRACE_EQ] = ACTIONS(2838), - [anon_sym_LBRACE_PLUS] = ACTIONS(2838), - [anon_sym_LBRACE_DASH] = ACTIONS(2838), - [sym_symbol] = ACTIONS(2838), - [anon_sym_LBRACE_CARET] = ACTIONS(2838), - [anon_sym_CARET] = ACTIONS(2838), - [anon_sym_LBRACE_TILDE] = ACTIONS(2838), - [anon_sym_TILDE] = ACTIONS(2838), - [anon_sym_LBRACK_CARET] = ACTIONS(2838), - [anon_sym_BANG_LBRACK] = ACTIONS(2838), - [anon_sym_DOLLAR] = ACTIONS(2838), - [anon_sym_TODO] = ACTIONS(2838), - [anon_sym_WIP] = ACTIONS(2838), - [anon_sym_NOTE] = ACTIONS(2838), - [anon_sym_INFO] = ACTIONS(2838), - [anon_sym_XXX] = ACTIONS(2838), - [sym_fixme] = ACTIONS(2838), - [aux_sym__text_token1] = ACTIONS(2836), - [sym__newline] = ACTIONS(2838), - [sym__newline_inline] = ACTIONS(2838), - [sym__heading1_begin] = ACTIONS(2838), - [sym__heading2_begin] = ACTIONS(2838), - [sym__heading3_begin] = ACTIONS(2838), - [sym__heading4_begin] = ACTIONS(2838), - [sym__heading5_begin] = ACTIONS(2838), - [sym__heading6_begin] = ACTIONS(2838), - [sym__div_begin] = ACTIONS(2838), - [sym__code_block_begin] = ACTIONS(2838), - [sym__code_block_end] = ACTIONS(2876), - [sym_list_marker_dash] = ACTIONS(2838), - [sym_list_marker_star] = ACTIONS(2838), - [sym_list_marker_plus] = ACTIONS(2838), - [sym__list_marker_task_begin] = ACTIONS(2838), - [sym_list_marker_definition] = ACTIONS(2838), - [sym_list_marker_decimal_period] = ACTIONS(2838), - [sym_list_marker_lower_alpha_period] = ACTIONS(2838), - [sym_list_marker_upper_alpha_period] = ACTIONS(2838), - [sym_list_marker_lower_roman_period] = ACTIONS(2838), - [sym_list_marker_upper_roman_period] = ACTIONS(2838), - [sym_list_marker_decimal_paren] = ACTIONS(2838), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2838), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2838), - [sym_list_marker_lower_roman_paren] = ACTIONS(2838), - [sym_list_marker_upper_roman_paren] = ACTIONS(2838), - [sym_list_marker_decimal_parens] = ACTIONS(2838), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2838), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2838), - [sym_list_marker_lower_roman_parens] = ACTIONS(2838), - [sym_list_marker_upper_roman_parens] = ACTIONS(2838), - [sym__block_quote_begin] = ACTIONS(2838), - [sym__block_quote_continuation] = ACTIONS(2838), - [sym__thematic_break_dash] = ACTIONS(2838), - [sym__thematic_break_star] = ACTIONS(2838), - [sym__footnote_begin] = ACTIONS(2838), - [sym__footnote_end] = ACTIONS(2838), - [sym__verbatim_begin] = ACTIONS(2838), - }, - [323] = { - [anon_sym_LBRACK] = ACTIONS(2832), - [anon_sym_PIPE] = ACTIONS(2834), - [anon_sym_LBRACE] = ACTIONS(2832), - [sym__whitespace1] = ACTIONS(2834), - [anon_sym_BSLASH] = ACTIONS(2832), - [sym_quotation_marks] = ACTIONS(2834), - [sym_ellipsis] = ACTIONS(2834), - [sym_em_dash] = ACTIONS(2834), - [sym_en_dash] = ACTIONS(2832), - [sym_backslash_escape] = ACTIONS(2832), - [anon_sym_LT] = ACTIONS(2834), - [anon_sym_LBRACE_] = ACTIONS(2834), - [anon_sym__] = ACTIONS(2834), - [anon_sym_LBRACE_STAR] = ACTIONS(2834), - [anon_sym_STAR] = ACTIONS(2834), - [anon_sym_LBRACE_EQ] = ACTIONS(2834), - [anon_sym_LBRACE_PLUS] = ACTIONS(2834), - [anon_sym_LBRACE_DASH] = ACTIONS(2834), - [sym_symbol] = ACTIONS(2834), - [anon_sym_LBRACE_CARET] = ACTIONS(2834), - [anon_sym_CARET] = ACTIONS(2834), - [anon_sym_LBRACE_TILDE] = ACTIONS(2834), - [anon_sym_TILDE] = ACTIONS(2834), - [anon_sym_LBRACK_CARET] = ACTIONS(2834), - [anon_sym_BANG_LBRACK] = ACTIONS(2834), - [anon_sym_DOLLAR] = ACTIONS(2834), - [anon_sym_TODO] = ACTIONS(2834), - [anon_sym_WIP] = ACTIONS(2834), - [anon_sym_NOTE] = ACTIONS(2834), - [anon_sym_INFO] = ACTIONS(2834), - [anon_sym_XXX] = ACTIONS(2834), - [sym_fixme] = ACTIONS(2834), - [aux_sym__text_token1] = ACTIONS(2832), - [sym__newline] = ACTIONS(2834), - [sym__newline_inline] = ACTIONS(2834), - [sym__heading1_begin] = ACTIONS(2834), - [sym__heading2_begin] = ACTIONS(2834), - [sym__heading3_begin] = ACTIONS(2834), - [sym__heading4_begin] = ACTIONS(2834), - [sym__heading5_begin] = ACTIONS(2834), - [sym__heading6_begin] = ACTIONS(2834), - [sym__div_begin] = ACTIONS(2834), - [sym__code_block_begin] = ACTIONS(2834), - [sym_list_marker_dash] = ACTIONS(2834), - [sym_list_marker_star] = ACTIONS(2834), - [sym_list_marker_plus] = ACTIONS(2834), - [sym__list_marker_task_begin] = ACTIONS(2834), - [sym_list_marker_definition] = ACTIONS(2834), - [sym_list_marker_decimal_period] = ACTIONS(2834), - [sym_list_marker_lower_alpha_period] = ACTIONS(2834), - [sym_list_marker_upper_alpha_period] = ACTIONS(2834), - [sym_list_marker_lower_roman_period] = ACTIONS(2834), - [sym_list_marker_upper_roman_period] = ACTIONS(2834), - [sym_list_marker_decimal_paren] = ACTIONS(2834), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2834), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2834), - [sym_list_marker_lower_roman_paren] = ACTIONS(2834), - [sym_list_marker_upper_roman_paren] = ACTIONS(2834), - [sym_list_marker_decimal_parens] = ACTIONS(2834), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2834), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2834), - [sym_list_marker_lower_roman_parens] = ACTIONS(2834), - [sym_list_marker_upper_roman_parens] = ACTIONS(2834), - [sym__block_quote_begin] = ACTIONS(2834), - [sym__block_quote_continuation] = ACTIONS(2834), - [sym__thematic_break_dash] = ACTIONS(2834), - [sym__thematic_break_star] = ACTIONS(2834), - [sym__footnote_begin] = ACTIONS(2834), - [sym__footnote_end] = ACTIONS(2834), - [sym__table_caption_begin] = ACTIONS(2834), - [sym__verbatim_begin] = ACTIONS(2834), - }, - [324] = { - [anon_sym_LBRACK] = ACTIONS(2828), - [anon_sym_PIPE] = ACTIONS(2830), - [anon_sym_LBRACE] = ACTIONS(2828), - [sym__whitespace1] = ACTIONS(2830), - [anon_sym_BSLASH] = ACTIONS(2828), - [sym_quotation_marks] = ACTIONS(2830), - [sym_ellipsis] = ACTIONS(2830), - [sym_em_dash] = ACTIONS(2830), - [sym_en_dash] = ACTIONS(2828), - [sym_backslash_escape] = ACTIONS(2828), - [anon_sym_LT] = ACTIONS(2830), - [anon_sym_LBRACE_] = ACTIONS(2830), - [anon_sym__] = ACTIONS(2830), - [anon_sym_LBRACE_STAR] = ACTIONS(2830), - [anon_sym_STAR] = ACTIONS(2830), - [anon_sym_LBRACE_EQ] = ACTIONS(2830), - [anon_sym_LBRACE_PLUS] = ACTIONS(2830), - [anon_sym_LBRACE_DASH] = ACTIONS(2830), - [sym_symbol] = ACTIONS(2830), - [anon_sym_LBRACE_CARET] = ACTIONS(2830), - [anon_sym_CARET] = ACTIONS(2830), - [anon_sym_LBRACE_TILDE] = ACTIONS(2830), - [anon_sym_TILDE] = ACTIONS(2830), - [anon_sym_LBRACK_CARET] = ACTIONS(2830), - [anon_sym_BANG_LBRACK] = ACTIONS(2830), - [anon_sym_DOLLAR] = ACTIONS(2830), - [anon_sym_TODO] = ACTIONS(2830), - [anon_sym_WIP] = ACTIONS(2830), - [anon_sym_NOTE] = ACTIONS(2830), - [anon_sym_INFO] = ACTIONS(2830), - [anon_sym_XXX] = ACTIONS(2830), - [sym_fixme] = ACTIONS(2830), - [aux_sym__text_token1] = ACTIONS(2828), - [sym__newline] = ACTIONS(2830), - [sym__newline_inline] = ACTIONS(2830), - [sym__heading1_begin] = ACTIONS(2830), - [sym__heading2_begin] = ACTIONS(2830), - [sym__heading3_begin] = ACTIONS(2830), - [sym__heading4_begin] = ACTIONS(2830), - [sym__heading5_begin] = ACTIONS(2830), - [sym__heading6_begin] = ACTIONS(2830), - [sym__div_begin] = ACTIONS(2830), - [sym__code_block_begin] = ACTIONS(2830), - [sym_list_marker_dash] = ACTIONS(2830), - [sym_list_marker_star] = ACTIONS(2830), - [sym_list_marker_plus] = ACTIONS(2830), - [sym__list_marker_task_begin] = ACTIONS(2830), - [sym_list_marker_definition] = ACTIONS(2830), - [sym_list_marker_decimal_period] = ACTIONS(2830), - [sym_list_marker_lower_alpha_period] = ACTIONS(2830), - [sym_list_marker_upper_alpha_period] = ACTIONS(2830), - [sym_list_marker_lower_roman_period] = ACTIONS(2830), - [sym_list_marker_upper_roman_period] = ACTIONS(2830), - [sym_list_marker_decimal_paren] = ACTIONS(2830), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2830), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2830), - [sym_list_marker_lower_roman_paren] = ACTIONS(2830), - [sym_list_marker_upper_roman_paren] = ACTIONS(2830), - [sym_list_marker_decimal_parens] = ACTIONS(2830), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2830), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2830), - [sym_list_marker_lower_roman_parens] = ACTIONS(2830), - [sym_list_marker_upper_roman_parens] = ACTIONS(2830), - [sym__block_quote_begin] = ACTIONS(2830), - [sym__block_quote_continuation] = ACTIONS(2830), - [sym__thematic_break_dash] = ACTIONS(2830), - [sym__thematic_break_star] = ACTIONS(2830), - [sym__footnote_begin] = ACTIONS(2830), - [sym__footnote_end] = ACTIONS(2830), - [sym__table_caption_begin] = ACTIONS(2830), - [sym__verbatim_begin] = ACTIONS(2830), - }, - [325] = { - [anon_sym_LBRACK] = ACTIONS(2822), - [anon_sym_PIPE] = ACTIONS(2824), - [anon_sym_LBRACE] = ACTIONS(2822), - [sym__whitespace1] = ACTIONS(2824), - [anon_sym_BSLASH] = ACTIONS(2822), - [sym_quotation_marks] = ACTIONS(2824), - [sym_ellipsis] = ACTIONS(2824), - [sym_em_dash] = ACTIONS(2824), - [sym_en_dash] = ACTIONS(2822), - [sym_backslash_escape] = ACTIONS(2822), - [anon_sym_LT] = ACTIONS(2824), - [anon_sym_LBRACE_] = ACTIONS(2824), - [anon_sym__] = ACTIONS(2824), - [anon_sym_LBRACE_STAR] = ACTIONS(2824), - [anon_sym_STAR] = ACTIONS(2824), - [anon_sym_LBRACE_EQ] = ACTIONS(2824), - [anon_sym_LBRACE_PLUS] = ACTIONS(2824), - [anon_sym_LBRACE_DASH] = ACTIONS(2824), - [sym_symbol] = ACTIONS(2824), - [anon_sym_LBRACE_CARET] = ACTIONS(2824), - [anon_sym_CARET] = ACTIONS(2824), - [anon_sym_LBRACE_TILDE] = ACTIONS(2824), - [anon_sym_TILDE] = ACTIONS(2824), - [anon_sym_LBRACK_CARET] = ACTIONS(2824), - [anon_sym_BANG_LBRACK] = ACTIONS(2824), - [anon_sym_DOLLAR] = ACTIONS(2824), - [anon_sym_TODO] = ACTIONS(2824), - [anon_sym_WIP] = ACTIONS(2824), - [anon_sym_NOTE] = ACTIONS(2824), - [anon_sym_INFO] = ACTIONS(2824), - [anon_sym_XXX] = ACTIONS(2824), - [sym_fixme] = ACTIONS(2824), - [aux_sym__text_token1] = ACTIONS(2822), - [sym__newline] = ACTIONS(2824), - [sym__newline_inline] = ACTIONS(2824), - [sym__heading1_begin] = ACTIONS(2824), - [sym__heading2_begin] = ACTIONS(2824), - [sym__heading3_begin] = ACTIONS(2824), - [sym__heading4_begin] = ACTIONS(2824), - [sym__heading5_begin] = ACTIONS(2824), - [sym__heading6_begin] = ACTIONS(2824), - [sym__div_begin] = ACTIONS(2824), - [sym__div_end] = ACTIONS(2878), - [sym__code_block_begin] = ACTIONS(2824), - [sym_list_marker_dash] = ACTIONS(2824), - [sym_list_marker_star] = ACTIONS(2824), - [sym_list_marker_plus] = ACTIONS(2824), - [sym__list_marker_task_begin] = ACTIONS(2824), - [sym_list_marker_definition] = ACTIONS(2824), - [sym_list_marker_decimal_period] = ACTIONS(2824), - [sym_list_marker_lower_alpha_period] = ACTIONS(2824), - [sym_list_marker_upper_alpha_period] = ACTIONS(2824), - [sym_list_marker_lower_roman_period] = ACTIONS(2824), - [sym_list_marker_upper_roman_period] = ACTIONS(2824), - [sym_list_marker_decimal_paren] = ACTIONS(2824), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2824), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2824), - [sym_list_marker_lower_roman_paren] = ACTIONS(2824), - [sym_list_marker_upper_roman_paren] = ACTIONS(2824), - [sym_list_marker_decimal_parens] = ACTIONS(2824), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2824), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2824), - [sym_list_marker_lower_roman_parens] = ACTIONS(2824), - [sym_list_marker_upper_roman_parens] = ACTIONS(2824), - [sym__block_quote_begin] = ACTIONS(2824), - [sym__block_quote_continuation] = ACTIONS(2824), - [sym__thematic_break_dash] = ACTIONS(2824), - [sym__thematic_break_star] = ACTIONS(2824), - [sym__footnote_begin] = ACTIONS(2824), - [sym__footnote_end] = ACTIONS(2824), - [sym__verbatim_begin] = ACTIONS(2824), - }, - [326] = { - [ts_builtin_sym_end] = ACTIONS(2844), - [anon_sym_LBRACK] = ACTIONS(2842), - [anon_sym_PIPE] = ACTIONS(2844), - [anon_sym_LBRACE] = ACTIONS(2842), - [sym__whitespace1] = ACTIONS(2844), - [anon_sym_BSLASH] = ACTIONS(2842), - [sym_quotation_marks] = ACTIONS(2844), - [sym_ellipsis] = ACTIONS(2844), - [sym_em_dash] = ACTIONS(2844), - [sym_en_dash] = ACTIONS(2842), - [sym_backslash_escape] = ACTIONS(2842), - [anon_sym_LT] = ACTIONS(2844), - [anon_sym_LBRACE_] = ACTIONS(2844), - [anon_sym__] = ACTIONS(2844), - [anon_sym_LBRACE_STAR] = ACTIONS(2844), - [anon_sym_STAR] = ACTIONS(2844), - [anon_sym_LBRACE_EQ] = ACTIONS(2844), - [anon_sym_LBRACE_PLUS] = ACTIONS(2844), - [anon_sym_LBRACE_DASH] = ACTIONS(2844), - [sym_symbol] = ACTIONS(2844), - [anon_sym_LBRACE_CARET] = ACTIONS(2844), - [anon_sym_CARET] = ACTIONS(2844), - [anon_sym_LBRACE_TILDE] = ACTIONS(2844), - [anon_sym_TILDE] = ACTIONS(2844), - [anon_sym_LBRACK_CARET] = ACTIONS(2844), - [anon_sym_BANG_LBRACK] = ACTIONS(2844), - [anon_sym_DOLLAR] = ACTIONS(2844), - [anon_sym_TODO] = ACTIONS(2844), - [anon_sym_WIP] = ACTIONS(2844), - [anon_sym_NOTE] = ACTIONS(2844), - [anon_sym_INFO] = ACTIONS(2844), - [anon_sym_XXX] = ACTIONS(2844), - [sym_fixme] = ACTIONS(2844), - [aux_sym__text_token1] = ACTIONS(2842), - [sym__newline] = ACTIONS(2844), - [sym__newline_inline] = ACTIONS(2844), - [sym__heading1_begin] = ACTIONS(2844), - [sym__heading2_begin] = ACTIONS(2844), - [sym__heading3_begin] = ACTIONS(2844), - [sym__heading4_begin] = ACTIONS(2844), - [sym__heading5_begin] = ACTIONS(2844), - [sym__heading6_begin] = ACTIONS(2844), - [sym__div_begin] = ACTIONS(2844), - [sym__div_end] = ACTIONS(2880), - [sym__code_block_begin] = ACTIONS(2844), - [sym_list_marker_dash] = ACTIONS(2844), - [sym_list_marker_star] = ACTIONS(2844), - [sym_list_marker_plus] = ACTIONS(2844), - [sym__list_marker_task_begin] = ACTIONS(2844), - [sym_list_marker_definition] = ACTIONS(2844), - [sym_list_marker_decimal_period] = ACTIONS(2844), - [sym_list_marker_lower_alpha_period] = ACTIONS(2844), - [sym_list_marker_upper_alpha_period] = ACTIONS(2844), - [sym_list_marker_lower_roman_period] = ACTIONS(2844), - [sym_list_marker_upper_roman_period] = ACTIONS(2844), - [sym_list_marker_decimal_paren] = ACTIONS(2844), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2844), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2844), - [sym_list_marker_lower_roman_paren] = ACTIONS(2844), - [sym_list_marker_upper_roman_paren] = ACTIONS(2844), - [sym_list_marker_decimal_parens] = ACTIONS(2844), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2844), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2844), - [sym_list_marker_lower_roman_parens] = ACTIONS(2844), - [sym_list_marker_upper_roman_parens] = ACTIONS(2844), - [sym__block_quote_begin] = ACTIONS(2844), - [sym__block_quote_continuation] = ACTIONS(2844), - [sym__thematic_break_dash] = ACTIONS(2844), - [sym__thematic_break_star] = ACTIONS(2844), - [sym__footnote_begin] = ACTIONS(2844), - [sym__verbatim_begin] = ACTIONS(2844), - }, - [327] = { - [anon_sym_LBRACK] = ACTIONS(2750), - [anon_sym_PIPE] = ACTIONS(2752), - [anon_sym_LBRACE] = ACTIONS(2750), - [sym__whitespace1] = ACTIONS(2752), - [anon_sym_BSLASH] = ACTIONS(2750), - [sym_quotation_marks] = ACTIONS(2752), - [sym_ellipsis] = ACTIONS(2752), - [sym_em_dash] = ACTIONS(2752), - [sym_en_dash] = ACTIONS(2750), - [sym_backslash_escape] = ACTIONS(2750), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_LBRACE_] = ACTIONS(2752), - [anon_sym__] = ACTIONS(2752), - [anon_sym_LBRACE_STAR] = ACTIONS(2752), - [anon_sym_STAR] = ACTIONS(2752), - [anon_sym_LBRACE_EQ] = ACTIONS(2752), - [anon_sym_LBRACE_PLUS] = ACTIONS(2752), - [anon_sym_LBRACE_DASH] = ACTIONS(2752), - [sym_symbol] = ACTIONS(2752), - [anon_sym_LBRACE_CARET] = ACTIONS(2752), - [anon_sym_CARET] = ACTIONS(2752), - [anon_sym_LBRACE_TILDE] = ACTIONS(2752), - [anon_sym_TILDE] = ACTIONS(2752), - [anon_sym_LBRACK_CARET] = ACTIONS(2752), - [anon_sym_BANG_LBRACK] = ACTIONS(2752), - [anon_sym_DOLLAR] = ACTIONS(2752), - [anon_sym_TODO] = ACTIONS(2752), - [anon_sym_WIP] = ACTIONS(2752), - [anon_sym_NOTE] = ACTIONS(2752), - [anon_sym_INFO] = ACTIONS(2752), - [anon_sym_XXX] = ACTIONS(2752), - [sym_fixme] = ACTIONS(2752), - [aux_sym__text_token1] = ACTIONS(2750), - [sym__newline] = ACTIONS(2752), - [sym__newline_inline] = ACTIONS(2752), - [sym__heading1_begin] = ACTIONS(2752), - [sym__heading2_begin] = ACTIONS(2752), - [sym__heading3_begin] = ACTIONS(2752), - [sym__heading4_begin] = ACTIONS(2752), - [sym__heading5_begin] = ACTIONS(2752), - [sym__heading6_begin] = ACTIONS(2752), - [sym__div_begin] = ACTIONS(2752), - [sym__code_block_begin] = ACTIONS(2752), - [sym__code_block_end] = ACTIONS(2882), - [sym_list_marker_dash] = ACTIONS(2752), - [sym_list_marker_star] = ACTIONS(2752), - [sym_list_marker_plus] = ACTIONS(2752), - [sym__list_marker_task_begin] = ACTIONS(2752), - [sym_list_marker_definition] = ACTIONS(2752), - [sym_list_marker_decimal_period] = ACTIONS(2752), - [sym_list_marker_lower_alpha_period] = ACTIONS(2752), - [sym_list_marker_upper_alpha_period] = ACTIONS(2752), - [sym_list_marker_lower_roman_period] = ACTIONS(2752), - [sym_list_marker_upper_roman_period] = ACTIONS(2752), - [sym_list_marker_decimal_paren] = ACTIONS(2752), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2752), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2752), - [sym_list_marker_lower_roman_paren] = ACTIONS(2752), - [sym_list_marker_upper_roman_paren] = ACTIONS(2752), - [sym_list_marker_decimal_parens] = ACTIONS(2752), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2752), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2752), - [sym_list_marker_lower_roman_parens] = ACTIONS(2752), - [sym_list_marker_upper_roman_parens] = ACTIONS(2752), - [sym__block_quote_begin] = ACTIONS(2752), - [sym__block_quote_continuation] = ACTIONS(2752), - [sym__thematic_break_dash] = ACTIONS(2752), - [sym__thematic_break_star] = ACTIONS(2752), - [sym__footnote_begin] = ACTIONS(2752), - [sym__footnote_end] = ACTIONS(2752), - [sym__verbatim_begin] = ACTIONS(2752), - }, - [328] = { - [anon_sym_LBRACK] = ACTIONS(2742), - [anon_sym_PIPE] = ACTIONS(2744), - [anon_sym_LBRACE] = ACTIONS(2742), - [sym__whitespace1] = ACTIONS(2744), - [anon_sym_BSLASH] = ACTIONS(2742), - [sym_quotation_marks] = ACTIONS(2744), - [sym_ellipsis] = ACTIONS(2744), - [sym_em_dash] = ACTIONS(2744), - [sym_en_dash] = ACTIONS(2742), - [sym_backslash_escape] = ACTIONS(2742), - [anon_sym_LT] = ACTIONS(2744), - [anon_sym_LBRACE_] = ACTIONS(2744), - [anon_sym__] = ACTIONS(2744), - [anon_sym_LBRACE_STAR] = ACTIONS(2744), - [anon_sym_STAR] = ACTIONS(2744), - [anon_sym_LBRACE_EQ] = ACTIONS(2744), - [anon_sym_LBRACE_PLUS] = ACTIONS(2744), - [anon_sym_LBRACE_DASH] = ACTIONS(2744), - [sym_symbol] = ACTIONS(2744), - [anon_sym_LBRACE_CARET] = ACTIONS(2744), - [anon_sym_CARET] = ACTIONS(2744), - [anon_sym_LBRACE_TILDE] = ACTIONS(2744), - [anon_sym_TILDE] = ACTIONS(2744), - [anon_sym_LBRACK_CARET] = ACTIONS(2744), - [anon_sym_BANG_LBRACK] = ACTIONS(2744), - [anon_sym_DOLLAR] = ACTIONS(2744), - [anon_sym_TODO] = ACTIONS(2744), - [anon_sym_WIP] = ACTIONS(2744), - [anon_sym_NOTE] = ACTIONS(2744), - [anon_sym_INFO] = ACTIONS(2744), - [anon_sym_XXX] = ACTIONS(2744), - [sym_fixme] = ACTIONS(2744), - [aux_sym__text_token1] = ACTIONS(2742), - [sym__newline] = ACTIONS(2744), - [sym__newline_inline] = ACTIONS(2744), - [sym__heading1_begin] = ACTIONS(2744), - [sym__heading2_begin] = ACTIONS(2744), - [sym__heading3_begin] = ACTIONS(2744), - [sym__heading4_begin] = ACTIONS(2744), - [sym__heading5_begin] = ACTIONS(2744), - [sym__heading6_begin] = ACTIONS(2744), - [sym__div_begin] = ACTIONS(2744), - [sym__code_block_begin] = ACTIONS(2744), - [sym__code_block_end] = ACTIONS(2884), - [sym_list_marker_dash] = ACTIONS(2744), - [sym_list_marker_star] = ACTIONS(2744), - [sym_list_marker_plus] = ACTIONS(2744), - [sym__list_marker_task_begin] = ACTIONS(2744), - [sym_list_marker_definition] = ACTIONS(2744), - [sym_list_marker_decimal_period] = ACTIONS(2744), - [sym_list_marker_lower_alpha_period] = ACTIONS(2744), - [sym_list_marker_upper_alpha_period] = ACTIONS(2744), - [sym_list_marker_lower_roman_period] = ACTIONS(2744), - [sym_list_marker_upper_roman_period] = ACTIONS(2744), - [sym_list_marker_decimal_paren] = ACTIONS(2744), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2744), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2744), - [sym_list_marker_lower_roman_paren] = ACTIONS(2744), - [sym_list_marker_upper_roman_paren] = ACTIONS(2744), - [sym_list_marker_decimal_parens] = ACTIONS(2744), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2744), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2744), - [sym_list_marker_lower_roman_parens] = ACTIONS(2744), - [sym_list_marker_upper_roman_parens] = ACTIONS(2744), - [sym__block_quote_begin] = ACTIONS(2744), - [sym__block_quote_continuation] = ACTIONS(2744), - [sym__thematic_break_dash] = ACTIONS(2744), - [sym__thematic_break_star] = ACTIONS(2744), - [sym__footnote_begin] = ACTIONS(2744), - [sym__footnote_end] = ACTIONS(2744), - [sym__verbatim_begin] = ACTIONS(2744), - }, - [329] = { - [anon_sym_LBRACK] = ACTIONS(2730), - [anon_sym_PIPE] = ACTIONS(2732), - [anon_sym_LBRACE] = ACTIONS(2730), - [sym__whitespace1] = ACTIONS(2732), - [anon_sym_BSLASH] = ACTIONS(2730), - [sym_quotation_marks] = ACTIONS(2732), - [sym_ellipsis] = ACTIONS(2732), - [sym_em_dash] = ACTIONS(2732), - [sym_en_dash] = ACTIONS(2730), - [sym_backslash_escape] = ACTIONS(2730), - [anon_sym_LT] = ACTIONS(2732), - [anon_sym_LBRACE_] = ACTIONS(2732), - [anon_sym__] = ACTIONS(2732), - [anon_sym_LBRACE_STAR] = ACTIONS(2732), - [anon_sym_STAR] = ACTIONS(2732), - [anon_sym_LBRACE_EQ] = ACTIONS(2732), - [anon_sym_LBRACE_PLUS] = ACTIONS(2732), - [anon_sym_LBRACE_DASH] = ACTIONS(2732), - [sym_symbol] = ACTIONS(2732), - [anon_sym_LBRACE_CARET] = ACTIONS(2732), - [anon_sym_CARET] = ACTIONS(2732), - [anon_sym_LBRACE_TILDE] = ACTIONS(2732), - [anon_sym_TILDE] = ACTIONS(2732), - [anon_sym_LBRACK_CARET] = ACTIONS(2732), - [anon_sym_BANG_LBRACK] = ACTIONS(2732), - [anon_sym_DOLLAR] = ACTIONS(2732), - [anon_sym_TODO] = ACTIONS(2732), - [anon_sym_WIP] = ACTIONS(2732), - [anon_sym_NOTE] = ACTIONS(2732), - [anon_sym_INFO] = ACTIONS(2732), - [anon_sym_XXX] = ACTIONS(2732), - [sym_fixme] = ACTIONS(2732), - [aux_sym__text_token1] = ACTIONS(2730), - [sym__newline] = ACTIONS(2732), - [sym__newline_inline] = ACTIONS(2732), - [sym__heading1_begin] = ACTIONS(2732), - [sym__heading2_begin] = ACTIONS(2732), - [sym__heading3_begin] = ACTIONS(2732), - [sym__heading4_begin] = ACTIONS(2732), - [sym__heading5_begin] = ACTIONS(2732), - [sym__heading6_begin] = ACTIONS(2732), - [sym__div_begin] = ACTIONS(2732), - [sym__code_block_begin] = ACTIONS(2732), - [sym_list_marker_dash] = ACTIONS(2732), - [sym_list_marker_star] = ACTIONS(2732), - [sym_list_marker_plus] = ACTIONS(2732), - [sym__list_marker_task_begin] = ACTIONS(2732), - [sym_list_marker_definition] = ACTIONS(2732), - [sym_list_marker_decimal_period] = ACTIONS(2732), - [sym_list_marker_lower_alpha_period] = ACTIONS(2732), - [sym_list_marker_upper_alpha_period] = ACTIONS(2732), - [sym_list_marker_lower_roman_period] = ACTIONS(2732), - [sym_list_marker_upper_roman_period] = ACTIONS(2732), - [sym_list_marker_decimal_paren] = ACTIONS(2732), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2732), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2732), - [sym_list_marker_lower_roman_paren] = ACTIONS(2732), - [sym_list_marker_upper_roman_paren] = ACTIONS(2732), - [sym_list_marker_decimal_parens] = ACTIONS(2732), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2732), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2732), - [sym_list_marker_lower_roman_parens] = ACTIONS(2732), - [sym_list_marker_upper_roman_parens] = ACTIONS(2732), - [sym__block_quote_begin] = ACTIONS(2732), - [sym__block_quote_continuation] = ACTIONS(2732), - [sym__thematic_break_dash] = ACTIONS(2732), - [sym__thematic_break_star] = ACTIONS(2732), - [sym__footnote_begin] = ACTIONS(2732), - [sym__footnote_end] = ACTIONS(2732), - [sym__table_caption_begin] = ACTIONS(2732), - [sym__verbatim_begin] = ACTIONS(2732), - }, - [330] = { - [anon_sym_LBRACK] = ACTIONS(2734), - [anon_sym_PIPE] = ACTIONS(2736), - [anon_sym_LBRACE] = ACTIONS(2734), - [sym__whitespace1] = ACTIONS(2736), - [anon_sym_BSLASH] = ACTIONS(2734), - [sym_quotation_marks] = ACTIONS(2736), - [sym_ellipsis] = ACTIONS(2736), - [sym_em_dash] = ACTIONS(2736), - [sym_en_dash] = ACTIONS(2734), - [sym_backslash_escape] = ACTIONS(2734), - [anon_sym_LT] = ACTIONS(2736), - [anon_sym_LBRACE_] = ACTIONS(2736), - [anon_sym__] = ACTIONS(2736), - [anon_sym_LBRACE_STAR] = ACTIONS(2736), - [anon_sym_STAR] = ACTIONS(2736), - [anon_sym_LBRACE_EQ] = ACTIONS(2736), - [anon_sym_LBRACE_PLUS] = ACTIONS(2736), - [anon_sym_LBRACE_DASH] = ACTIONS(2736), - [sym_symbol] = ACTIONS(2736), - [anon_sym_LBRACE_CARET] = ACTIONS(2736), - [anon_sym_CARET] = ACTIONS(2736), - [anon_sym_LBRACE_TILDE] = ACTIONS(2736), - [anon_sym_TILDE] = ACTIONS(2736), - [anon_sym_LBRACK_CARET] = ACTIONS(2736), - [anon_sym_BANG_LBRACK] = ACTIONS(2736), - [anon_sym_DOLLAR] = ACTIONS(2736), - [anon_sym_TODO] = ACTIONS(2736), - [anon_sym_WIP] = ACTIONS(2736), - [anon_sym_NOTE] = ACTIONS(2736), - [anon_sym_INFO] = ACTIONS(2736), - [anon_sym_XXX] = ACTIONS(2736), - [sym_fixme] = ACTIONS(2736), - [aux_sym__text_token1] = ACTIONS(2734), - [sym__newline] = ACTIONS(2736), - [sym__newline_inline] = ACTIONS(2736), - [sym__heading1_begin] = ACTIONS(2736), - [sym__heading2_begin] = ACTIONS(2736), - [sym__heading3_begin] = ACTIONS(2736), - [sym__heading4_begin] = ACTIONS(2736), - [sym__heading5_begin] = ACTIONS(2736), - [sym__heading6_begin] = ACTIONS(2736), - [sym__div_begin] = ACTIONS(2736), - [sym__code_block_begin] = ACTIONS(2736), - [sym_list_marker_dash] = ACTIONS(2736), - [sym_list_marker_star] = ACTIONS(2736), - [sym_list_marker_plus] = ACTIONS(2736), - [sym__list_marker_task_begin] = ACTIONS(2736), - [sym_list_marker_definition] = ACTIONS(2736), - [sym_list_marker_decimal_period] = ACTIONS(2736), - [sym_list_marker_lower_alpha_period] = ACTIONS(2736), - [sym_list_marker_upper_alpha_period] = ACTIONS(2736), - [sym_list_marker_lower_roman_period] = ACTIONS(2736), - [sym_list_marker_upper_roman_period] = ACTIONS(2736), - [sym_list_marker_decimal_paren] = ACTIONS(2736), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2736), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2736), - [sym_list_marker_lower_roman_paren] = ACTIONS(2736), - [sym_list_marker_upper_roman_paren] = ACTIONS(2736), - [sym_list_marker_decimal_parens] = ACTIONS(2736), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2736), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2736), - [sym_list_marker_lower_roman_parens] = ACTIONS(2736), - [sym_list_marker_upper_roman_parens] = ACTIONS(2736), - [sym__block_quote_begin] = ACTIONS(2736), - [sym__block_quote_continuation] = ACTIONS(2736), - [sym__thematic_break_dash] = ACTIONS(2736), - [sym__thematic_break_star] = ACTIONS(2736), - [sym__footnote_begin] = ACTIONS(2736), - [sym__footnote_end] = ACTIONS(2736), - [sym__table_caption_begin] = ACTIONS(2736), - [sym__verbatim_begin] = ACTIONS(2736), - }, - [331] = { - [anon_sym_LBRACK] = ACTIONS(2868), - [anon_sym_PIPE] = ACTIONS(2870), - [anon_sym_LBRACE] = ACTIONS(2868), - [sym__whitespace1] = ACTIONS(2870), - [anon_sym_BSLASH] = ACTIONS(2868), - [sym_quotation_marks] = ACTIONS(2870), - [sym_ellipsis] = ACTIONS(2870), - [sym_em_dash] = ACTIONS(2870), - [sym_en_dash] = ACTIONS(2868), - [sym_backslash_escape] = ACTIONS(2868), - [anon_sym_LT] = ACTIONS(2870), - [anon_sym_LBRACE_] = ACTIONS(2870), - [anon_sym__] = ACTIONS(2870), - [anon_sym_LBRACE_STAR] = ACTIONS(2870), - [anon_sym_STAR] = ACTIONS(2870), - [anon_sym_LBRACE_EQ] = ACTIONS(2870), - [anon_sym_LBRACE_PLUS] = ACTIONS(2870), - [anon_sym_LBRACE_DASH] = ACTIONS(2870), - [sym_symbol] = ACTIONS(2870), - [anon_sym_LBRACE_CARET] = ACTIONS(2870), - [anon_sym_CARET] = ACTIONS(2870), - [anon_sym_LBRACE_TILDE] = ACTIONS(2870), - [anon_sym_TILDE] = ACTIONS(2870), - [anon_sym_LBRACK_CARET] = ACTIONS(2870), - [anon_sym_BANG_LBRACK] = ACTIONS(2870), - [anon_sym_DOLLAR] = ACTIONS(2870), - [anon_sym_TODO] = ACTIONS(2870), - [anon_sym_WIP] = ACTIONS(2870), - [anon_sym_NOTE] = ACTIONS(2870), - [anon_sym_INFO] = ACTIONS(2870), - [anon_sym_XXX] = ACTIONS(2870), - [sym_fixme] = ACTIONS(2870), - [aux_sym__text_token1] = ACTIONS(2868), - [sym__block_close] = ACTIONS(2870), - [sym__newline] = ACTIONS(2870), - [sym__newline_inline] = ACTIONS(2870), - [sym__heading1_begin] = ACTIONS(2870), - [sym__heading2_begin] = ACTIONS(2870), - [sym__heading3_begin] = ACTIONS(2870), - [sym__heading4_begin] = ACTIONS(2870), - [sym__heading5_begin] = ACTIONS(2870), - [sym__heading6_begin] = ACTIONS(2870), - [sym__div_begin] = ACTIONS(2870), - [sym__div_end] = ACTIONS(2886), - [sym__code_block_begin] = ACTIONS(2870), - [sym_list_marker_dash] = ACTIONS(2870), - [sym_list_marker_star] = ACTIONS(2870), - [sym_list_marker_plus] = ACTIONS(2870), - [sym__list_marker_task_begin] = ACTIONS(2870), - [sym_list_marker_definition] = ACTIONS(2870), - [sym_list_marker_decimal_period] = ACTIONS(2870), - [sym_list_marker_lower_alpha_period] = ACTIONS(2870), - [sym_list_marker_upper_alpha_period] = ACTIONS(2870), - [sym_list_marker_lower_roman_period] = ACTIONS(2870), - [sym_list_marker_upper_roman_period] = ACTIONS(2870), - [sym_list_marker_decimal_paren] = ACTIONS(2870), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2870), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2870), - [sym_list_marker_lower_roman_paren] = ACTIONS(2870), - [sym_list_marker_upper_roman_paren] = ACTIONS(2870), - [sym_list_marker_decimal_parens] = ACTIONS(2870), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2870), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2870), - [sym_list_marker_lower_roman_parens] = ACTIONS(2870), - [sym_list_marker_upper_roman_parens] = ACTIONS(2870), - [sym__block_quote_begin] = ACTIONS(2870), - [sym__block_quote_continuation] = ACTIONS(2870), - [sym__thematic_break_dash] = ACTIONS(2870), - [sym__thematic_break_star] = ACTIONS(2870), - [sym__footnote_begin] = ACTIONS(2870), - [sym__verbatim_begin] = ACTIONS(2870), - }, - [332] = { - [anon_sym_LBRACK] = ACTIONS(2862), - [anon_sym_PIPE] = ACTIONS(2864), - [anon_sym_LBRACE] = ACTIONS(2862), - [sym__whitespace1] = ACTIONS(2864), - [anon_sym_BSLASH] = ACTIONS(2862), - [sym_quotation_marks] = ACTIONS(2864), - [sym_ellipsis] = ACTIONS(2864), - [sym_em_dash] = ACTIONS(2864), - [sym_en_dash] = ACTIONS(2862), - [sym_backslash_escape] = ACTIONS(2862), - [anon_sym_LT] = ACTIONS(2864), - [anon_sym_LBRACE_] = ACTIONS(2864), - [anon_sym__] = ACTIONS(2864), - [anon_sym_LBRACE_STAR] = ACTIONS(2864), - [anon_sym_STAR] = ACTIONS(2864), - [anon_sym_LBRACE_EQ] = ACTIONS(2864), - [anon_sym_LBRACE_PLUS] = ACTIONS(2864), - [anon_sym_LBRACE_DASH] = ACTIONS(2864), - [sym_symbol] = ACTIONS(2864), - [anon_sym_LBRACE_CARET] = ACTIONS(2864), - [anon_sym_CARET] = ACTIONS(2864), - [anon_sym_LBRACE_TILDE] = ACTIONS(2864), - [anon_sym_TILDE] = ACTIONS(2864), - [anon_sym_LBRACK_CARET] = ACTIONS(2864), - [anon_sym_BANG_LBRACK] = ACTIONS(2864), - [anon_sym_DOLLAR] = ACTIONS(2864), - [anon_sym_TODO] = ACTIONS(2864), - [anon_sym_WIP] = ACTIONS(2864), - [anon_sym_NOTE] = ACTIONS(2864), - [anon_sym_INFO] = ACTIONS(2864), - [anon_sym_XXX] = ACTIONS(2864), - [sym_fixme] = ACTIONS(2864), - [aux_sym__text_token1] = ACTIONS(2862), - [sym__block_close] = ACTIONS(2864), - [sym__newline] = ACTIONS(2864), - [sym__newline_inline] = ACTIONS(2864), - [sym__heading1_begin] = ACTIONS(2864), - [sym__heading2_begin] = ACTIONS(2864), - [sym__heading3_begin] = ACTIONS(2864), - [sym__heading4_begin] = ACTIONS(2864), - [sym__heading5_begin] = ACTIONS(2864), - [sym__heading6_begin] = ACTIONS(2864), - [sym__div_begin] = ACTIONS(2864), - [sym__div_end] = ACTIONS(2888), - [sym__code_block_begin] = ACTIONS(2864), - [sym_list_marker_dash] = ACTIONS(2864), - [sym_list_marker_star] = ACTIONS(2864), - [sym_list_marker_plus] = ACTIONS(2864), - [sym__list_marker_task_begin] = ACTIONS(2864), - [sym_list_marker_definition] = ACTIONS(2864), - [sym_list_marker_decimal_period] = ACTIONS(2864), - [sym_list_marker_lower_alpha_period] = ACTIONS(2864), - [sym_list_marker_upper_alpha_period] = ACTIONS(2864), - [sym_list_marker_lower_roman_period] = ACTIONS(2864), - [sym_list_marker_upper_roman_period] = ACTIONS(2864), - [sym_list_marker_decimal_paren] = ACTIONS(2864), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2864), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2864), - [sym_list_marker_lower_roman_paren] = ACTIONS(2864), - [sym_list_marker_upper_roman_paren] = ACTIONS(2864), - [sym_list_marker_decimal_parens] = ACTIONS(2864), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2864), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2864), - [sym_list_marker_lower_roman_parens] = ACTIONS(2864), - [sym_list_marker_upper_roman_parens] = ACTIONS(2864), - [sym__block_quote_begin] = ACTIONS(2864), - [sym__block_quote_continuation] = ACTIONS(2864), - [sym__thematic_break_dash] = ACTIONS(2864), - [sym__thematic_break_star] = ACTIONS(2864), - [sym__footnote_begin] = ACTIONS(2864), - [sym__verbatim_begin] = ACTIONS(2864), - }, - [333] = { - [anon_sym_LBRACK] = ACTIONS(2858), - [anon_sym_PIPE] = ACTIONS(2860), - [anon_sym_LBRACE] = ACTIONS(2858), - [sym__whitespace1] = ACTIONS(2860), - [anon_sym_BSLASH] = ACTIONS(2858), - [sym_quotation_marks] = ACTIONS(2860), - [sym_ellipsis] = ACTIONS(2860), - [sym_em_dash] = ACTIONS(2860), - [sym_en_dash] = ACTIONS(2858), - [sym_backslash_escape] = ACTIONS(2858), - [anon_sym_LT] = ACTIONS(2860), - [anon_sym_LBRACE_] = ACTIONS(2860), - [anon_sym__] = ACTIONS(2860), - [anon_sym_LBRACE_STAR] = ACTIONS(2860), - [anon_sym_STAR] = ACTIONS(2860), - [anon_sym_LBRACE_EQ] = ACTIONS(2860), - [anon_sym_LBRACE_PLUS] = ACTIONS(2860), - [anon_sym_LBRACE_DASH] = ACTIONS(2860), - [sym_symbol] = ACTIONS(2860), - [anon_sym_LBRACE_CARET] = ACTIONS(2860), - [anon_sym_CARET] = ACTIONS(2860), - [anon_sym_LBRACE_TILDE] = ACTIONS(2860), - [anon_sym_TILDE] = ACTIONS(2860), - [anon_sym_LBRACK_CARET] = ACTIONS(2860), - [anon_sym_BANG_LBRACK] = ACTIONS(2860), - [anon_sym_DOLLAR] = ACTIONS(2860), - [anon_sym_TODO] = ACTIONS(2860), - [anon_sym_WIP] = ACTIONS(2860), - [anon_sym_NOTE] = ACTIONS(2860), - [anon_sym_INFO] = ACTIONS(2860), - [anon_sym_XXX] = ACTIONS(2860), - [sym_fixme] = ACTIONS(2860), - [aux_sym__text_token1] = ACTIONS(2858), - [sym__block_close] = ACTIONS(2860), - [sym__newline] = ACTIONS(2860), - [sym__newline_inline] = ACTIONS(2860), - [sym__heading1_begin] = ACTIONS(2860), - [sym__heading2_begin] = ACTIONS(2860), - [sym__heading3_begin] = ACTIONS(2860), - [sym__heading4_begin] = ACTIONS(2860), - [sym__heading5_begin] = ACTIONS(2860), - [sym__heading6_begin] = ACTIONS(2860), - [sym__div_begin] = ACTIONS(2860), - [sym__code_block_begin] = ACTIONS(2860), - [sym_list_marker_dash] = ACTIONS(2860), - [sym_list_marker_star] = ACTIONS(2860), - [sym_list_marker_plus] = ACTIONS(2860), - [sym__list_marker_task_begin] = ACTIONS(2860), - [sym_list_marker_definition] = ACTIONS(2860), - [sym_list_marker_decimal_period] = ACTIONS(2860), - [sym_list_marker_lower_alpha_period] = ACTIONS(2860), - [sym_list_marker_upper_alpha_period] = ACTIONS(2860), - [sym_list_marker_lower_roman_period] = ACTIONS(2860), - [sym_list_marker_upper_roman_period] = ACTIONS(2860), - [sym_list_marker_decimal_paren] = ACTIONS(2860), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2860), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2860), - [sym_list_marker_lower_roman_paren] = ACTIONS(2860), - [sym_list_marker_upper_roman_paren] = ACTIONS(2860), - [sym_list_marker_decimal_parens] = ACTIONS(2860), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2860), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2860), - [sym_list_marker_lower_roman_parens] = ACTIONS(2860), - [sym_list_marker_upper_roman_parens] = ACTIONS(2860), - [sym__block_quote_begin] = ACTIONS(2860), - [sym__block_quote_continuation] = ACTIONS(2860), - [sym__thematic_break_dash] = ACTIONS(2860), - [sym__thematic_break_star] = ACTIONS(2860), - [sym__footnote_begin] = ACTIONS(2860), - [sym__table_caption_begin] = ACTIONS(2860), - [sym__verbatim_begin] = ACTIONS(2860), - }, - [334] = { - [anon_sym_LBRACK] = ACTIONS(2854), - [anon_sym_PIPE] = ACTIONS(2856), - [anon_sym_LBRACE] = ACTIONS(2854), - [sym__whitespace1] = ACTIONS(2856), - [anon_sym_BSLASH] = ACTIONS(2854), - [sym_quotation_marks] = ACTIONS(2856), - [sym_ellipsis] = ACTIONS(2856), - [sym_em_dash] = ACTIONS(2856), - [sym_en_dash] = ACTIONS(2854), - [sym_backslash_escape] = ACTIONS(2854), - [anon_sym_LT] = ACTIONS(2856), - [anon_sym_LBRACE_] = ACTIONS(2856), - [anon_sym__] = ACTIONS(2856), - [anon_sym_LBRACE_STAR] = ACTIONS(2856), - [anon_sym_STAR] = ACTIONS(2856), - [anon_sym_LBRACE_EQ] = ACTIONS(2856), - [anon_sym_LBRACE_PLUS] = ACTIONS(2856), - [anon_sym_LBRACE_DASH] = ACTIONS(2856), - [sym_symbol] = ACTIONS(2856), - [anon_sym_LBRACE_CARET] = ACTIONS(2856), - [anon_sym_CARET] = ACTIONS(2856), - [anon_sym_LBRACE_TILDE] = ACTIONS(2856), - [anon_sym_TILDE] = ACTIONS(2856), - [anon_sym_LBRACK_CARET] = ACTIONS(2856), - [anon_sym_BANG_LBRACK] = ACTIONS(2856), - [anon_sym_DOLLAR] = ACTIONS(2856), - [anon_sym_TODO] = ACTIONS(2856), - [anon_sym_WIP] = ACTIONS(2856), - [anon_sym_NOTE] = ACTIONS(2856), - [anon_sym_INFO] = ACTIONS(2856), - [anon_sym_XXX] = ACTIONS(2856), - [sym_fixme] = ACTIONS(2856), - [aux_sym__text_token1] = ACTIONS(2854), - [sym__block_close] = ACTIONS(2856), - [sym__newline] = ACTIONS(2856), - [sym__newline_inline] = ACTIONS(2856), - [sym__heading1_begin] = ACTIONS(2856), - [sym__heading2_begin] = ACTIONS(2856), - [sym__heading3_begin] = ACTIONS(2856), - [sym__heading4_begin] = ACTIONS(2856), - [sym__heading5_begin] = ACTIONS(2856), - [sym__heading6_begin] = ACTIONS(2856), - [sym__div_begin] = ACTIONS(2856), - [sym__code_block_begin] = ACTIONS(2856), - [sym_list_marker_dash] = ACTIONS(2856), - [sym_list_marker_star] = ACTIONS(2856), - [sym_list_marker_plus] = ACTIONS(2856), - [sym__list_marker_task_begin] = ACTIONS(2856), - [sym_list_marker_definition] = ACTIONS(2856), - [sym_list_marker_decimal_period] = ACTIONS(2856), - [sym_list_marker_lower_alpha_period] = ACTIONS(2856), - [sym_list_marker_upper_alpha_period] = ACTIONS(2856), - [sym_list_marker_lower_roman_period] = ACTIONS(2856), - [sym_list_marker_upper_roman_period] = ACTIONS(2856), - [sym_list_marker_decimal_paren] = ACTIONS(2856), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2856), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2856), - [sym_list_marker_lower_roman_paren] = ACTIONS(2856), - [sym_list_marker_upper_roman_paren] = ACTIONS(2856), - [sym_list_marker_decimal_parens] = ACTIONS(2856), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2856), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2856), - [sym_list_marker_lower_roman_parens] = ACTIONS(2856), - [sym_list_marker_upper_roman_parens] = ACTIONS(2856), - [sym__block_quote_begin] = ACTIONS(2856), - [sym__block_quote_continuation] = ACTIONS(2856), - [sym__thematic_break_dash] = ACTIONS(2856), - [sym__thematic_break_star] = ACTIONS(2856), - [sym__footnote_begin] = ACTIONS(2856), - [sym__table_caption_begin] = ACTIONS(2856), - [sym__verbatim_begin] = ACTIONS(2856), - }, - [335] = { - [anon_sym_LBRACK] = ACTIONS(2718), - [anon_sym_PIPE] = ACTIONS(2720), - [anon_sym_LBRACE] = ACTIONS(2718), - [sym__whitespace1] = ACTIONS(2720), - [anon_sym_BSLASH] = ACTIONS(2718), - [sym_quotation_marks] = ACTIONS(2720), - [sym_ellipsis] = ACTIONS(2720), - [sym_em_dash] = ACTIONS(2720), - [sym_en_dash] = ACTIONS(2718), - [sym_backslash_escape] = ACTIONS(2718), - [anon_sym_LT] = ACTIONS(2720), - [anon_sym_LBRACE_] = ACTIONS(2720), - [anon_sym__] = ACTIONS(2720), - [anon_sym_LBRACE_STAR] = ACTIONS(2720), - [anon_sym_STAR] = ACTIONS(2720), - [anon_sym_LBRACE_EQ] = ACTIONS(2720), - [anon_sym_LBRACE_PLUS] = ACTIONS(2720), - [anon_sym_LBRACE_DASH] = ACTIONS(2720), - [sym_symbol] = ACTIONS(2720), - [anon_sym_LBRACE_CARET] = ACTIONS(2720), - [anon_sym_CARET] = ACTIONS(2720), - [anon_sym_LBRACE_TILDE] = ACTIONS(2720), - [anon_sym_TILDE] = ACTIONS(2720), - [anon_sym_LBRACK_CARET] = ACTIONS(2720), - [anon_sym_BANG_LBRACK] = ACTIONS(2720), - [anon_sym_DOLLAR] = ACTIONS(2720), - [anon_sym_TODO] = ACTIONS(2720), - [anon_sym_WIP] = ACTIONS(2720), - [anon_sym_NOTE] = ACTIONS(2720), - [anon_sym_INFO] = ACTIONS(2720), - [anon_sym_XXX] = ACTIONS(2720), - [sym_fixme] = ACTIONS(2720), - [aux_sym__text_token1] = ACTIONS(2718), - [sym__block_close] = ACTIONS(2720), - [sym__newline] = ACTIONS(2720), - [sym__newline_inline] = ACTIONS(2720), - [sym__heading1_begin] = ACTIONS(2720), - [sym__heading2_begin] = ACTIONS(2720), - [sym__heading3_begin] = ACTIONS(2720), - [sym__heading4_begin] = ACTIONS(2720), - [sym__heading5_begin] = ACTIONS(2720), - [sym__heading6_begin] = ACTIONS(2720), - [sym__div_begin] = ACTIONS(2720), - [sym__code_block_begin] = ACTIONS(2720), - [sym__code_block_end] = ACTIONS(2890), - [sym_list_marker_dash] = ACTIONS(2720), - [sym_list_marker_star] = ACTIONS(2720), - [sym_list_marker_plus] = ACTIONS(2720), - [sym__list_marker_task_begin] = ACTIONS(2720), - [sym_list_marker_definition] = ACTIONS(2720), - [sym_list_marker_decimal_period] = ACTIONS(2720), - [sym_list_marker_lower_alpha_period] = ACTIONS(2720), - [sym_list_marker_upper_alpha_period] = ACTIONS(2720), - [sym_list_marker_lower_roman_period] = ACTIONS(2720), - [sym_list_marker_upper_roman_period] = ACTIONS(2720), - [sym_list_marker_decimal_paren] = ACTIONS(2720), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2720), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2720), - [sym_list_marker_lower_roman_paren] = ACTIONS(2720), - [sym_list_marker_upper_roman_paren] = ACTIONS(2720), - [sym_list_marker_decimal_parens] = ACTIONS(2720), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2720), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2720), - [sym_list_marker_lower_roman_parens] = ACTIONS(2720), - [sym_list_marker_upper_roman_parens] = ACTIONS(2720), - [sym__block_quote_begin] = ACTIONS(2720), - [sym__block_quote_continuation] = ACTIONS(2720), - [sym__thematic_break_dash] = ACTIONS(2720), - [sym__thematic_break_star] = ACTIONS(2720), - [sym__footnote_begin] = ACTIONS(2720), - [sym__verbatim_begin] = ACTIONS(2720), - }, - [336] = { - [anon_sym_LBRACK] = ACTIONS(2842), - [anon_sym_PIPE] = ACTIONS(2844), - [anon_sym_LBRACE] = ACTIONS(2842), - [sym__whitespace1] = ACTIONS(2844), - [anon_sym_BSLASH] = ACTIONS(2842), - [sym_quotation_marks] = ACTIONS(2844), - [sym_ellipsis] = ACTIONS(2844), - [sym_em_dash] = ACTIONS(2844), - [sym_en_dash] = ACTIONS(2842), - [sym_backslash_escape] = ACTIONS(2842), - [anon_sym_LT] = ACTIONS(2844), - [anon_sym_LBRACE_] = ACTIONS(2844), - [anon_sym__] = ACTIONS(2844), - [anon_sym_LBRACE_STAR] = ACTIONS(2844), - [anon_sym_STAR] = ACTIONS(2844), - [anon_sym_LBRACE_EQ] = ACTIONS(2844), - [anon_sym_LBRACE_PLUS] = ACTIONS(2844), - [anon_sym_LBRACE_DASH] = ACTIONS(2844), - [sym_symbol] = ACTIONS(2844), - [anon_sym_LBRACE_CARET] = ACTIONS(2844), - [anon_sym_CARET] = ACTIONS(2844), - [anon_sym_LBRACE_TILDE] = ACTIONS(2844), - [anon_sym_TILDE] = ACTIONS(2844), - [anon_sym_LBRACK_CARET] = ACTIONS(2844), - [anon_sym_BANG_LBRACK] = ACTIONS(2844), - [anon_sym_DOLLAR] = ACTIONS(2844), - [anon_sym_TODO] = ACTIONS(2844), - [anon_sym_WIP] = ACTIONS(2844), - [anon_sym_NOTE] = ACTIONS(2844), - [anon_sym_INFO] = ACTIONS(2844), - [anon_sym_XXX] = ACTIONS(2844), - [sym_fixme] = ACTIONS(2844), - [aux_sym__text_token1] = ACTIONS(2842), - [sym__block_close] = ACTIONS(2844), - [sym__newline] = ACTIONS(2844), - [sym__newline_inline] = ACTIONS(2844), - [sym__heading1_begin] = ACTIONS(2844), - [sym__heading2_begin] = ACTIONS(2844), - [sym__heading3_begin] = ACTIONS(2844), - [sym__heading4_begin] = ACTIONS(2844), - [sym__heading5_begin] = ACTIONS(2844), - [sym__heading6_begin] = ACTIONS(2844), - [sym__div_begin] = ACTIONS(2844), - [sym__div_end] = ACTIONS(2892), - [sym__code_block_begin] = ACTIONS(2844), - [sym_list_marker_dash] = ACTIONS(2844), - [sym_list_marker_star] = ACTIONS(2844), - [sym_list_marker_plus] = ACTIONS(2844), - [sym__list_marker_task_begin] = ACTIONS(2844), - [sym_list_marker_definition] = ACTIONS(2844), - [sym_list_marker_decimal_period] = ACTIONS(2844), - [sym_list_marker_lower_alpha_period] = ACTIONS(2844), - [sym_list_marker_upper_alpha_period] = ACTIONS(2844), - [sym_list_marker_lower_roman_period] = ACTIONS(2844), - [sym_list_marker_upper_roman_period] = ACTIONS(2844), - [sym_list_marker_decimal_paren] = ACTIONS(2844), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2844), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2844), - [sym_list_marker_lower_roman_paren] = ACTIONS(2844), - [sym_list_marker_upper_roman_paren] = ACTIONS(2844), - [sym_list_marker_decimal_parens] = ACTIONS(2844), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2844), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2844), - [sym_list_marker_lower_roman_parens] = ACTIONS(2844), - [sym_list_marker_upper_roman_parens] = ACTIONS(2844), - [sym__block_quote_begin] = ACTIONS(2844), - [sym__block_quote_continuation] = ACTIONS(2844), - [sym__thematic_break_dash] = ACTIONS(2844), - [sym__thematic_break_star] = ACTIONS(2844), - [sym__footnote_begin] = ACTIONS(2844), - [sym__verbatim_begin] = ACTIONS(2844), - }, - [337] = { - [anon_sym_LBRACK] = ACTIONS(2894), - [anon_sym_PIPE] = ACTIONS(2896), - [anon_sym_LBRACE] = ACTIONS(2894), - [sym__whitespace1] = ACTIONS(2896), - [anon_sym_BSLASH] = ACTIONS(2894), - [sym_quotation_marks] = ACTIONS(2896), - [sym_ellipsis] = ACTIONS(2896), - [sym_em_dash] = ACTIONS(2896), - [sym_en_dash] = ACTIONS(2894), - [sym_backslash_escape] = ACTIONS(2894), - [anon_sym_LT] = ACTIONS(2896), - [anon_sym_LBRACE_] = ACTIONS(2896), - [anon_sym__] = ACTIONS(2896), - [anon_sym_LBRACE_STAR] = ACTIONS(2896), - [anon_sym_STAR] = ACTIONS(2896), - [anon_sym_LBRACE_EQ] = ACTIONS(2896), - [anon_sym_LBRACE_PLUS] = ACTIONS(2896), - [anon_sym_LBRACE_DASH] = ACTIONS(2896), - [sym_symbol] = ACTIONS(2896), - [anon_sym_LBRACE_CARET] = ACTIONS(2896), - [anon_sym_CARET] = ACTIONS(2896), - [anon_sym_LBRACE_TILDE] = ACTIONS(2896), - [anon_sym_TILDE] = ACTIONS(2896), - [anon_sym_LBRACK_CARET] = ACTIONS(2896), - [anon_sym_BANG_LBRACK] = ACTIONS(2896), - [anon_sym_DOLLAR] = ACTIONS(2896), - [anon_sym_TODO] = ACTIONS(2896), - [anon_sym_WIP] = ACTIONS(2896), - [anon_sym_NOTE] = ACTIONS(2896), - [anon_sym_INFO] = ACTIONS(2896), - [anon_sym_XXX] = ACTIONS(2896), - [sym_fixme] = ACTIONS(2896), - [aux_sym__text_token1] = ACTIONS(2894), - [sym__eof_or_newline] = ACTIONS(2898), - [sym__newline] = ACTIONS(2896), - [sym__newline_inline] = ACTIONS(2896), - [sym__heading1_begin] = ACTIONS(2896), - [sym__heading2_begin] = ACTIONS(2896), - [sym__heading3_begin] = ACTIONS(2896), - [sym__heading4_begin] = ACTIONS(2896), - [sym__heading5_begin] = ACTIONS(2896), - [sym__heading6_begin] = ACTIONS(2896), - [sym__div_begin] = ACTIONS(2896), - [sym__code_block_begin] = ACTIONS(2896), - [sym_list_marker_dash] = ACTIONS(2896), - [sym_list_marker_star] = ACTIONS(2896), - [sym_list_marker_plus] = ACTIONS(2896), - [sym__list_marker_task_begin] = ACTIONS(2896), - [sym_list_marker_definition] = ACTIONS(2896), - [sym_list_marker_decimal_period] = ACTIONS(2896), - [sym_list_marker_lower_alpha_period] = ACTIONS(2896), - [sym_list_marker_upper_alpha_period] = ACTIONS(2896), - [sym_list_marker_lower_roman_period] = ACTIONS(2896), - [sym_list_marker_upper_roman_period] = ACTIONS(2896), - [sym_list_marker_decimal_paren] = ACTIONS(2896), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2896), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2896), - [sym_list_marker_lower_roman_paren] = ACTIONS(2896), - [sym_list_marker_upper_roman_paren] = ACTIONS(2896), - [sym_list_marker_decimal_parens] = ACTIONS(2896), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2896), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2896), - [sym_list_marker_lower_roman_parens] = ACTIONS(2896), - [sym_list_marker_upper_roman_parens] = ACTIONS(2896), - [sym__block_quote_begin] = ACTIONS(2896), - [sym__block_quote_continuation] = ACTIONS(2896), - [sym__thematic_break_dash] = ACTIONS(2896), - [sym__thematic_break_star] = ACTIONS(2896), - [sym__footnote_begin] = ACTIONS(2896), - [sym__footnote_end] = ACTIONS(2896), - [sym__verbatim_begin] = ACTIONS(2896), - }, - [338] = { - [anon_sym_LBRACK] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2726), - [anon_sym_LBRACE] = ACTIONS(2724), - [sym__whitespace1] = ACTIONS(2726), - [anon_sym_BSLASH] = ACTIONS(2724), - [sym_quotation_marks] = ACTIONS(2726), - [sym_ellipsis] = ACTIONS(2726), - [sym_em_dash] = ACTIONS(2726), - [sym_en_dash] = ACTIONS(2724), - [sym_backslash_escape] = ACTIONS(2724), - [anon_sym_LT] = ACTIONS(2726), - [anon_sym_LBRACE_] = ACTIONS(2726), - [anon_sym__] = ACTIONS(2726), - [anon_sym_LBRACE_STAR] = ACTIONS(2726), - [anon_sym_STAR] = ACTIONS(2726), - [anon_sym_LBRACE_EQ] = ACTIONS(2726), - [anon_sym_LBRACE_PLUS] = ACTIONS(2726), - [anon_sym_LBRACE_DASH] = ACTIONS(2726), - [sym_symbol] = ACTIONS(2726), - [anon_sym_LBRACE_CARET] = ACTIONS(2726), - [anon_sym_CARET] = ACTIONS(2726), - [anon_sym_LBRACE_TILDE] = ACTIONS(2726), - [anon_sym_TILDE] = ACTIONS(2726), - [anon_sym_LBRACK_CARET] = ACTIONS(2726), - [anon_sym_BANG_LBRACK] = ACTIONS(2726), - [anon_sym_DOLLAR] = ACTIONS(2726), - [anon_sym_TODO] = ACTIONS(2726), - [anon_sym_WIP] = ACTIONS(2726), - [anon_sym_NOTE] = ACTIONS(2726), - [anon_sym_INFO] = ACTIONS(2726), - [anon_sym_XXX] = ACTIONS(2726), - [sym_fixme] = ACTIONS(2726), - [aux_sym__text_token1] = ACTIONS(2724), - [sym__eof_or_newline] = ACTIONS(2900), - [sym__newline] = ACTIONS(2726), - [sym__newline_inline] = ACTIONS(2726), - [sym__heading1_begin] = ACTIONS(2726), - [sym__heading2_begin] = ACTIONS(2726), - [sym__heading3_begin] = ACTIONS(2726), - [sym__heading4_begin] = ACTIONS(2726), - [sym__heading5_begin] = ACTIONS(2726), - [sym__heading6_begin] = ACTIONS(2726), - [sym__div_begin] = ACTIONS(2726), - [sym__code_block_begin] = ACTIONS(2726), - [sym_list_marker_dash] = ACTIONS(2726), - [sym_list_marker_star] = ACTIONS(2726), - [sym_list_marker_plus] = ACTIONS(2726), - [sym__list_marker_task_begin] = ACTIONS(2726), - [sym_list_marker_definition] = ACTIONS(2726), - [sym_list_marker_decimal_period] = ACTIONS(2726), - [sym_list_marker_lower_alpha_period] = ACTIONS(2726), - [sym_list_marker_upper_alpha_period] = ACTIONS(2726), - [sym_list_marker_lower_roman_period] = ACTIONS(2726), - [sym_list_marker_upper_roman_period] = ACTIONS(2726), - [sym_list_marker_decimal_paren] = ACTIONS(2726), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2726), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2726), - [sym_list_marker_lower_roman_paren] = ACTIONS(2726), - [sym_list_marker_upper_roman_paren] = ACTIONS(2726), - [sym_list_marker_decimal_parens] = ACTIONS(2726), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2726), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2726), - [sym_list_marker_lower_roman_parens] = ACTIONS(2726), - [sym_list_marker_upper_roman_parens] = ACTIONS(2726), - [sym__block_quote_begin] = ACTIONS(2726), - [sym__block_quote_continuation] = ACTIONS(2726), - [sym__thematic_break_dash] = ACTIONS(2726), - [sym__thematic_break_star] = ACTIONS(2726), - [sym__footnote_begin] = ACTIONS(2726), - [sym__footnote_end] = ACTIONS(2726), - [sym__verbatim_begin] = ACTIONS(2726), - }, - [339] = { - [anon_sym_LBRACK] = ACTIONS(2902), - [anon_sym_PIPE] = ACTIONS(2904), - [anon_sym_LBRACE] = ACTIONS(2902), - [sym__whitespace1] = ACTIONS(2904), - [anon_sym_BSLASH] = ACTIONS(2902), - [sym_quotation_marks] = ACTIONS(2904), - [sym_ellipsis] = ACTIONS(2904), - [sym_em_dash] = ACTIONS(2904), - [sym_en_dash] = ACTIONS(2902), - [sym_backslash_escape] = ACTIONS(2902), - [anon_sym_LT] = ACTIONS(2904), - [anon_sym_LBRACE_] = ACTIONS(2904), - [anon_sym__] = ACTIONS(2904), - [anon_sym_LBRACE_STAR] = ACTIONS(2904), - [anon_sym_STAR] = ACTIONS(2904), - [anon_sym_LBRACE_EQ] = ACTIONS(2904), - [anon_sym_LBRACE_PLUS] = ACTIONS(2904), - [anon_sym_LBRACE_DASH] = ACTIONS(2904), - [sym_symbol] = ACTIONS(2904), - [anon_sym_LBRACE_CARET] = ACTIONS(2904), - [anon_sym_CARET] = ACTIONS(2904), - [anon_sym_LBRACE_TILDE] = ACTIONS(2904), - [anon_sym_TILDE] = ACTIONS(2904), - [anon_sym_LBRACK_CARET] = ACTIONS(2904), - [anon_sym_BANG_LBRACK] = ACTIONS(2904), - [anon_sym_DOLLAR] = ACTIONS(2904), - [anon_sym_TODO] = ACTIONS(2904), - [anon_sym_WIP] = ACTIONS(2904), - [anon_sym_NOTE] = ACTIONS(2904), - [anon_sym_INFO] = ACTIONS(2904), - [anon_sym_XXX] = ACTIONS(2904), - [sym_fixme] = ACTIONS(2904), - [aux_sym__text_token1] = ACTIONS(2902), - [sym__eof_or_newline] = ACTIONS(2906), - [sym__newline] = ACTIONS(2904), - [sym__newline_inline] = ACTIONS(2904), - [sym__heading1_begin] = ACTIONS(2904), - [sym__heading2_begin] = ACTIONS(2904), - [sym__heading3_begin] = ACTIONS(2904), - [sym__heading4_begin] = ACTIONS(2904), - [sym__heading5_begin] = ACTIONS(2904), - [sym__heading6_begin] = ACTIONS(2904), - [sym__div_begin] = ACTIONS(2904), - [sym__code_block_begin] = ACTIONS(2904), - [sym_list_marker_dash] = ACTIONS(2904), - [sym_list_marker_star] = ACTIONS(2904), - [sym_list_marker_plus] = ACTIONS(2904), - [sym__list_marker_task_begin] = ACTIONS(2904), - [sym_list_marker_definition] = ACTIONS(2904), - [sym_list_marker_decimal_period] = ACTIONS(2904), - [sym_list_marker_lower_alpha_period] = ACTIONS(2904), - [sym_list_marker_upper_alpha_period] = ACTIONS(2904), - [sym_list_marker_lower_roman_period] = ACTIONS(2904), - [sym_list_marker_upper_roman_period] = ACTIONS(2904), - [sym_list_marker_decimal_paren] = ACTIONS(2904), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2904), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2904), - [sym_list_marker_lower_roman_paren] = ACTIONS(2904), - [sym_list_marker_upper_roman_paren] = ACTIONS(2904), - [sym_list_marker_decimal_parens] = ACTIONS(2904), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2904), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2904), - [sym_list_marker_lower_roman_parens] = ACTIONS(2904), - [sym_list_marker_upper_roman_parens] = ACTIONS(2904), - [sym__block_quote_begin] = ACTIONS(2904), - [sym__block_quote_continuation] = ACTIONS(2904), - [sym__thematic_break_dash] = ACTIONS(2904), - [sym__thematic_break_star] = ACTIONS(2904), - [sym__footnote_begin] = ACTIONS(2904), - [sym__footnote_end] = ACTIONS(2904), - [sym__verbatim_begin] = ACTIONS(2904), - }, - [340] = { - [anon_sym_LBRACK] = ACTIONS(2908), - [anon_sym_PIPE] = ACTIONS(2910), - [anon_sym_LBRACE] = ACTIONS(2908), - [sym__whitespace1] = ACTIONS(2910), - [anon_sym_BSLASH] = ACTIONS(2908), - [sym_quotation_marks] = ACTIONS(2910), - [sym_ellipsis] = ACTIONS(2910), - [sym_em_dash] = ACTIONS(2910), - [sym_en_dash] = ACTIONS(2908), - [sym_backslash_escape] = ACTIONS(2908), - [anon_sym_LT] = ACTIONS(2910), - [anon_sym_LBRACE_] = ACTIONS(2910), - [anon_sym__] = ACTIONS(2910), - [anon_sym_LBRACE_STAR] = ACTIONS(2910), - [anon_sym_STAR] = ACTIONS(2910), - [anon_sym_LBRACE_EQ] = ACTIONS(2910), - [anon_sym_LBRACE_PLUS] = ACTIONS(2910), - [anon_sym_LBRACE_DASH] = ACTIONS(2910), - [sym_symbol] = ACTIONS(2910), - [anon_sym_LBRACE_CARET] = ACTIONS(2910), - [anon_sym_CARET] = ACTIONS(2910), - [anon_sym_LBRACE_TILDE] = ACTIONS(2910), - [anon_sym_TILDE] = ACTIONS(2910), - [anon_sym_LBRACK_CARET] = ACTIONS(2910), - [anon_sym_BANG_LBRACK] = ACTIONS(2910), - [anon_sym_DOLLAR] = ACTIONS(2910), - [anon_sym_TODO] = ACTIONS(2910), - [anon_sym_WIP] = ACTIONS(2910), - [anon_sym_NOTE] = ACTIONS(2910), - [anon_sym_INFO] = ACTIONS(2910), - [anon_sym_XXX] = ACTIONS(2910), - [sym_fixme] = ACTIONS(2910), - [aux_sym__text_token1] = ACTIONS(2908), - [sym__eof_or_newline] = ACTIONS(2912), - [sym__newline] = ACTIONS(2910), - [sym__newline_inline] = ACTIONS(2910), - [sym__heading1_begin] = ACTIONS(2910), - [sym__heading2_begin] = ACTIONS(2910), - [sym__heading3_begin] = ACTIONS(2910), - [sym__heading4_begin] = ACTIONS(2910), - [sym__heading5_begin] = ACTIONS(2910), - [sym__heading6_begin] = ACTIONS(2910), - [sym__div_begin] = ACTIONS(2910), - [sym__code_block_begin] = ACTIONS(2910), - [sym_list_marker_dash] = ACTIONS(2910), - [sym_list_marker_star] = ACTIONS(2910), - [sym_list_marker_plus] = ACTIONS(2910), - [sym__list_marker_task_begin] = ACTIONS(2910), - [sym_list_marker_definition] = ACTIONS(2910), - [sym_list_marker_decimal_period] = ACTIONS(2910), - [sym_list_marker_lower_alpha_period] = ACTIONS(2910), - [sym_list_marker_upper_alpha_period] = ACTIONS(2910), - [sym_list_marker_lower_roman_period] = ACTIONS(2910), - [sym_list_marker_upper_roman_period] = ACTIONS(2910), - [sym_list_marker_decimal_paren] = ACTIONS(2910), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2910), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2910), - [sym_list_marker_lower_roman_paren] = ACTIONS(2910), - [sym_list_marker_upper_roman_paren] = ACTIONS(2910), - [sym_list_marker_decimal_parens] = ACTIONS(2910), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2910), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2910), - [sym_list_marker_lower_roman_parens] = ACTIONS(2910), - [sym_list_marker_upper_roman_parens] = ACTIONS(2910), - [sym__block_quote_begin] = ACTIONS(2910), - [sym__block_quote_continuation] = ACTIONS(2910), - [sym__thematic_break_dash] = ACTIONS(2910), - [sym__thematic_break_star] = ACTIONS(2910), - [sym__footnote_begin] = ACTIONS(2910), - [sym__footnote_end] = ACTIONS(2910), - [sym__verbatim_begin] = ACTIONS(2910), - }, - [341] = { - [anon_sym_LBRACK] = ACTIONS(2914), - [anon_sym_PIPE] = ACTIONS(2916), - [anon_sym_LBRACE] = ACTIONS(2914), - [sym__whitespace1] = ACTIONS(2916), - [anon_sym_BSLASH] = ACTIONS(2914), - [sym_quotation_marks] = ACTIONS(2916), - [sym_ellipsis] = ACTIONS(2916), - [sym_em_dash] = ACTIONS(2916), - [sym_en_dash] = ACTIONS(2914), - [sym_backslash_escape] = ACTIONS(2914), - [anon_sym_LT] = ACTIONS(2916), - [anon_sym_LBRACE_] = ACTIONS(2916), - [anon_sym__] = ACTIONS(2916), - [anon_sym_LBRACE_STAR] = ACTIONS(2916), - [anon_sym_STAR] = ACTIONS(2916), - [anon_sym_LBRACE_EQ] = ACTIONS(2916), - [anon_sym_LBRACE_PLUS] = ACTIONS(2916), - [anon_sym_LBRACE_DASH] = ACTIONS(2916), - [sym_symbol] = ACTIONS(2916), - [anon_sym_LBRACE_CARET] = ACTIONS(2916), - [anon_sym_CARET] = ACTIONS(2916), - [anon_sym_LBRACE_TILDE] = ACTIONS(2916), - [anon_sym_TILDE] = ACTIONS(2916), - [anon_sym_LBRACK_CARET] = ACTIONS(2916), - [anon_sym_BANG_LBRACK] = ACTIONS(2916), - [anon_sym_DOLLAR] = ACTIONS(2916), - [anon_sym_TODO] = ACTIONS(2916), - [anon_sym_WIP] = ACTIONS(2916), - [anon_sym_NOTE] = ACTIONS(2916), - [anon_sym_INFO] = ACTIONS(2916), - [anon_sym_XXX] = ACTIONS(2916), - [sym_fixme] = ACTIONS(2916), - [aux_sym__text_token1] = ACTIONS(2914), - [sym__eof_or_newline] = ACTIONS(2918), - [sym__newline] = ACTIONS(2916), - [sym__newline_inline] = ACTIONS(2916), - [sym__heading1_begin] = ACTIONS(2916), - [sym__heading2_begin] = ACTIONS(2916), - [sym__heading3_begin] = ACTIONS(2916), - [sym__heading4_begin] = ACTIONS(2916), - [sym__heading5_begin] = ACTIONS(2916), - [sym__heading6_begin] = ACTIONS(2916), - [sym__div_begin] = ACTIONS(2916), - [sym__code_block_begin] = ACTIONS(2916), - [sym_list_marker_dash] = ACTIONS(2916), - [sym_list_marker_star] = ACTIONS(2916), - [sym_list_marker_plus] = ACTIONS(2916), - [sym__list_marker_task_begin] = ACTIONS(2916), - [sym_list_marker_definition] = ACTIONS(2916), - [sym_list_marker_decimal_period] = ACTIONS(2916), - [sym_list_marker_lower_alpha_period] = ACTIONS(2916), - [sym_list_marker_upper_alpha_period] = ACTIONS(2916), - [sym_list_marker_lower_roman_period] = ACTIONS(2916), - [sym_list_marker_upper_roman_period] = ACTIONS(2916), - [sym_list_marker_decimal_paren] = ACTIONS(2916), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2916), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2916), - [sym_list_marker_lower_roman_paren] = ACTIONS(2916), - [sym_list_marker_upper_roman_paren] = ACTIONS(2916), - [sym_list_marker_decimal_parens] = ACTIONS(2916), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2916), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2916), - [sym_list_marker_lower_roman_parens] = ACTIONS(2916), - [sym_list_marker_upper_roman_parens] = ACTIONS(2916), - [sym__block_quote_begin] = ACTIONS(2916), - [sym__block_quote_continuation] = ACTIONS(2916), - [sym__thematic_break_dash] = ACTIONS(2916), - [sym__thematic_break_star] = ACTIONS(2916), - [sym__footnote_begin] = ACTIONS(2916), - [sym__footnote_end] = ACTIONS(2916), - [sym__verbatim_begin] = ACTIONS(2916), - }, - [342] = { - [ts_builtin_sym_end] = ACTIONS(2736), - [anon_sym_LBRACK] = ACTIONS(2734), - [anon_sym_PIPE] = ACTIONS(2736), - [anon_sym_LBRACE] = ACTIONS(2734), - [sym__whitespace1] = ACTIONS(2736), - [anon_sym_BSLASH] = ACTIONS(2734), - [sym_quotation_marks] = ACTIONS(2736), - [sym_ellipsis] = ACTIONS(2736), - [sym_em_dash] = ACTIONS(2736), - [sym_en_dash] = ACTIONS(2734), - [sym_backslash_escape] = ACTIONS(2734), - [anon_sym_LT] = ACTIONS(2736), - [anon_sym_LBRACE_] = ACTIONS(2736), - [anon_sym__] = ACTIONS(2736), - [anon_sym_LBRACE_STAR] = ACTIONS(2736), - [anon_sym_STAR] = ACTIONS(2736), - [anon_sym_LBRACE_EQ] = ACTIONS(2736), - [anon_sym_LBRACE_PLUS] = ACTIONS(2736), - [anon_sym_LBRACE_DASH] = ACTIONS(2736), - [sym_symbol] = ACTIONS(2736), - [anon_sym_LBRACE_CARET] = ACTIONS(2736), - [anon_sym_CARET] = ACTIONS(2736), - [anon_sym_LBRACE_TILDE] = ACTIONS(2736), - [anon_sym_TILDE] = ACTIONS(2736), - [anon_sym_LBRACK_CARET] = ACTIONS(2736), - [anon_sym_BANG_LBRACK] = ACTIONS(2736), - [anon_sym_DOLLAR] = ACTIONS(2736), - [anon_sym_TODO] = ACTIONS(2736), - [anon_sym_WIP] = ACTIONS(2736), - [anon_sym_NOTE] = ACTIONS(2736), - [anon_sym_INFO] = ACTIONS(2736), - [anon_sym_XXX] = ACTIONS(2736), - [sym_fixme] = ACTIONS(2736), - [aux_sym__text_token1] = ACTIONS(2734), - [sym__newline] = ACTIONS(2736), - [sym__newline_inline] = ACTIONS(2736), - [sym__heading1_begin] = ACTIONS(2736), - [sym__heading2_begin] = ACTIONS(2736), - [sym__heading3_begin] = ACTIONS(2736), - [sym__heading4_begin] = ACTIONS(2736), - [sym__heading5_begin] = ACTIONS(2736), - [sym__heading6_begin] = ACTIONS(2736), - [sym__div_begin] = ACTIONS(2736), - [sym__code_block_begin] = ACTIONS(2736), - [sym_list_marker_dash] = ACTIONS(2736), - [sym_list_marker_star] = ACTIONS(2736), - [sym_list_marker_plus] = ACTIONS(2736), - [sym__list_marker_task_begin] = ACTIONS(2736), - [sym_list_marker_definition] = ACTIONS(2736), - [sym_list_marker_decimal_period] = ACTIONS(2736), - [sym_list_marker_lower_alpha_period] = ACTIONS(2736), - [sym_list_marker_upper_alpha_period] = ACTIONS(2736), - [sym_list_marker_lower_roman_period] = ACTIONS(2736), - [sym_list_marker_upper_roman_period] = ACTIONS(2736), - [sym_list_marker_decimal_paren] = ACTIONS(2736), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2736), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2736), - [sym_list_marker_lower_roman_paren] = ACTIONS(2736), - [sym_list_marker_upper_roman_paren] = ACTIONS(2736), - [sym_list_marker_decimal_parens] = ACTIONS(2736), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2736), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2736), - [sym_list_marker_lower_roman_parens] = ACTIONS(2736), - [sym_list_marker_upper_roman_parens] = ACTIONS(2736), - [sym__block_quote_begin] = ACTIONS(2736), - [sym__block_quote_continuation] = ACTIONS(2736), - [sym__thematic_break_dash] = ACTIONS(2736), - [sym__thematic_break_star] = ACTIONS(2736), - [sym__footnote_begin] = ACTIONS(2736), - [sym__table_caption_begin] = ACTIONS(2736), - [sym__verbatim_begin] = ACTIONS(2736), - }, - [343] = { - [anon_sym_LBRACK] = ACTIONS(2738), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_LBRACE] = ACTIONS(2738), - [sym__whitespace1] = ACTIONS(2740), - [anon_sym_BSLASH] = ACTIONS(2738), - [sym_quotation_marks] = ACTIONS(2740), - [sym_ellipsis] = ACTIONS(2740), - [sym_em_dash] = ACTIONS(2740), - [sym_en_dash] = ACTIONS(2738), - [sym_backslash_escape] = ACTIONS(2738), - [anon_sym_LT] = ACTIONS(2740), - [anon_sym_LBRACE_] = ACTIONS(2740), - [anon_sym__] = ACTIONS(2740), - [anon_sym_LBRACE_STAR] = ACTIONS(2740), - [anon_sym_STAR] = ACTIONS(2740), - [anon_sym_LBRACE_EQ] = ACTIONS(2740), - [anon_sym_LBRACE_PLUS] = ACTIONS(2740), - [anon_sym_LBRACE_DASH] = ACTIONS(2740), - [sym_symbol] = ACTIONS(2740), - [anon_sym_LBRACE_CARET] = ACTIONS(2740), - [anon_sym_CARET] = ACTIONS(2740), - [anon_sym_LBRACE_TILDE] = ACTIONS(2740), - [anon_sym_TILDE] = ACTIONS(2740), - [anon_sym_LBRACK_CARET] = ACTIONS(2740), - [anon_sym_BANG_LBRACK] = ACTIONS(2740), - [anon_sym_DOLLAR] = ACTIONS(2740), - [anon_sym_TODO] = ACTIONS(2740), - [anon_sym_WIP] = ACTIONS(2740), - [anon_sym_NOTE] = ACTIONS(2740), - [anon_sym_INFO] = ACTIONS(2740), - [anon_sym_XXX] = ACTIONS(2740), - [sym_fixme] = ACTIONS(2740), - [aux_sym__text_token1] = ACTIONS(2738), - [sym__block_close] = ACTIONS(2740), - [sym__newline] = ACTIONS(2740), - [sym__newline_inline] = ACTIONS(2740), - [sym__heading1_begin] = ACTIONS(2740), - [sym__heading2_begin] = ACTIONS(2740), - [sym__heading3_begin] = ACTIONS(2740), - [sym__heading4_begin] = ACTIONS(2740), - [sym__heading5_begin] = ACTIONS(2740), - [sym__heading6_begin] = ACTIONS(2740), - [sym__div_begin] = ACTIONS(2740), - [sym__code_block_begin] = ACTIONS(2740), - [sym_list_marker_dash] = ACTIONS(2740), - [sym_list_marker_star] = ACTIONS(2740), - [sym_list_marker_plus] = ACTIONS(2740), - [sym__list_marker_task_begin] = ACTIONS(2740), - [sym_list_marker_definition] = ACTIONS(2740), - [sym_list_marker_decimal_period] = ACTIONS(2740), - [sym_list_marker_lower_alpha_period] = ACTIONS(2740), - [sym_list_marker_upper_alpha_period] = ACTIONS(2740), - [sym_list_marker_lower_roman_period] = ACTIONS(2740), - [sym_list_marker_upper_roman_period] = ACTIONS(2740), - [sym_list_marker_decimal_paren] = ACTIONS(2740), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2740), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2740), - [sym_list_marker_lower_roman_paren] = ACTIONS(2740), - [sym_list_marker_upper_roman_paren] = ACTIONS(2740), - [sym_list_marker_decimal_parens] = ACTIONS(2740), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2740), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2740), - [sym_list_marker_lower_roman_parens] = ACTIONS(2740), - [sym_list_marker_upper_roman_parens] = ACTIONS(2740), - [sym__block_quote_begin] = ACTIONS(2740), - [sym__block_quote_continuation] = ACTIONS(2740), - [sym__thematic_break_dash] = ACTIONS(2740), - [sym__thematic_break_star] = ACTIONS(2740), - [sym__footnote_begin] = ACTIONS(2740), - [sym__table_caption_begin] = ACTIONS(2740), - [sym__verbatim_begin] = ACTIONS(2740), - }, - [344] = { - [ts_builtin_sym_end] = ACTIONS(2732), - [anon_sym_LBRACK] = ACTIONS(2730), - [anon_sym_PIPE] = ACTIONS(2732), - [anon_sym_LBRACE] = ACTIONS(2730), - [sym__whitespace1] = ACTIONS(2732), - [anon_sym_BSLASH] = ACTIONS(2730), - [sym_quotation_marks] = ACTIONS(2732), - [sym_ellipsis] = ACTIONS(2732), - [sym_em_dash] = ACTIONS(2732), - [sym_en_dash] = ACTIONS(2730), - [sym_backslash_escape] = ACTIONS(2730), - [anon_sym_LT] = ACTIONS(2732), - [anon_sym_LBRACE_] = ACTIONS(2732), - [anon_sym__] = ACTIONS(2732), - [anon_sym_LBRACE_STAR] = ACTIONS(2732), - [anon_sym_STAR] = ACTIONS(2732), - [anon_sym_LBRACE_EQ] = ACTIONS(2732), - [anon_sym_LBRACE_PLUS] = ACTIONS(2732), - [anon_sym_LBRACE_DASH] = ACTIONS(2732), - [sym_symbol] = ACTIONS(2732), - [anon_sym_LBRACE_CARET] = ACTIONS(2732), - [anon_sym_CARET] = ACTIONS(2732), - [anon_sym_LBRACE_TILDE] = ACTIONS(2732), - [anon_sym_TILDE] = ACTIONS(2732), - [anon_sym_LBRACK_CARET] = ACTIONS(2732), - [anon_sym_BANG_LBRACK] = ACTIONS(2732), - [anon_sym_DOLLAR] = ACTIONS(2732), - [anon_sym_TODO] = ACTIONS(2732), - [anon_sym_WIP] = ACTIONS(2732), - [anon_sym_NOTE] = ACTIONS(2732), - [anon_sym_INFO] = ACTIONS(2732), - [anon_sym_XXX] = ACTIONS(2732), - [sym_fixme] = ACTIONS(2732), - [aux_sym__text_token1] = ACTIONS(2730), - [sym__newline] = ACTIONS(2732), - [sym__newline_inline] = ACTIONS(2732), - [sym__heading1_begin] = ACTIONS(2732), - [sym__heading2_begin] = ACTIONS(2732), - [sym__heading3_begin] = ACTIONS(2732), - [sym__heading4_begin] = ACTIONS(2732), - [sym__heading5_begin] = ACTIONS(2732), - [sym__heading6_begin] = ACTIONS(2732), - [sym__div_begin] = ACTIONS(2732), - [sym__code_block_begin] = ACTIONS(2732), - [sym_list_marker_dash] = ACTIONS(2732), - [sym_list_marker_star] = ACTIONS(2732), - [sym_list_marker_plus] = ACTIONS(2732), - [sym__list_marker_task_begin] = ACTIONS(2732), - [sym_list_marker_definition] = ACTIONS(2732), - [sym_list_marker_decimal_period] = ACTIONS(2732), - [sym_list_marker_lower_alpha_period] = ACTIONS(2732), - [sym_list_marker_upper_alpha_period] = ACTIONS(2732), - [sym_list_marker_lower_roman_period] = ACTIONS(2732), - [sym_list_marker_upper_roman_period] = ACTIONS(2732), - [sym_list_marker_decimal_paren] = ACTIONS(2732), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2732), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2732), - [sym_list_marker_lower_roman_paren] = ACTIONS(2732), - [sym_list_marker_upper_roman_paren] = ACTIONS(2732), - [sym_list_marker_decimal_parens] = ACTIONS(2732), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2732), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2732), - [sym_list_marker_lower_roman_parens] = ACTIONS(2732), - [sym_list_marker_upper_roman_parens] = ACTIONS(2732), - [sym__block_quote_begin] = ACTIONS(2732), - [sym__block_quote_continuation] = ACTIONS(2732), - [sym__thematic_break_dash] = ACTIONS(2732), - [sym__thematic_break_star] = ACTIONS(2732), - [sym__footnote_begin] = ACTIONS(2732), - [sym__table_caption_begin] = ACTIONS(2732), - [sym__verbatim_begin] = ACTIONS(2732), - }, - [345] = { - [ts_builtin_sym_end] = ACTIONS(2744), - [anon_sym_LBRACK] = ACTIONS(2742), - [anon_sym_PIPE] = ACTIONS(2744), - [anon_sym_LBRACE] = ACTIONS(2742), - [sym__whitespace1] = ACTIONS(2744), - [anon_sym_BSLASH] = ACTIONS(2742), - [sym_quotation_marks] = ACTIONS(2744), - [sym_ellipsis] = ACTIONS(2744), - [sym_em_dash] = ACTIONS(2744), - [sym_en_dash] = ACTIONS(2742), - [sym_backslash_escape] = ACTIONS(2742), - [anon_sym_LT] = ACTIONS(2744), - [anon_sym_LBRACE_] = ACTIONS(2744), - [anon_sym__] = ACTIONS(2744), - [anon_sym_LBRACE_STAR] = ACTIONS(2744), - [anon_sym_STAR] = ACTIONS(2744), - [anon_sym_LBRACE_EQ] = ACTIONS(2744), - [anon_sym_LBRACE_PLUS] = ACTIONS(2744), - [anon_sym_LBRACE_DASH] = ACTIONS(2744), - [sym_symbol] = ACTIONS(2744), - [anon_sym_LBRACE_CARET] = ACTIONS(2744), - [anon_sym_CARET] = ACTIONS(2744), - [anon_sym_LBRACE_TILDE] = ACTIONS(2744), - [anon_sym_TILDE] = ACTIONS(2744), - [anon_sym_LBRACK_CARET] = ACTIONS(2744), - [anon_sym_BANG_LBRACK] = ACTIONS(2744), - [anon_sym_DOLLAR] = ACTIONS(2744), - [anon_sym_TODO] = ACTIONS(2744), - [anon_sym_WIP] = ACTIONS(2744), - [anon_sym_NOTE] = ACTIONS(2744), - [anon_sym_INFO] = ACTIONS(2744), - [anon_sym_XXX] = ACTIONS(2744), - [sym_fixme] = ACTIONS(2744), - [aux_sym__text_token1] = ACTIONS(2742), - [sym__newline] = ACTIONS(2744), - [sym__newline_inline] = ACTIONS(2744), - [sym__heading1_begin] = ACTIONS(2744), - [sym__heading2_begin] = ACTIONS(2744), - [sym__heading3_begin] = ACTIONS(2744), - [sym__heading4_begin] = ACTIONS(2744), - [sym__heading5_begin] = ACTIONS(2744), - [sym__heading6_begin] = ACTIONS(2744), - [sym__div_begin] = ACTIONS(2744), - [sym__code_block_begin] = ACTIONS(2744), - [sym__code_block_end] = ACTIONS(2920), - [sym_list_marker_dash] = ACTIONS(2744), - [sym_list_marker_star] = ACTIONS(2744), - [sym_list_marker_plus] = ACTIONS(2744), - [sym__list_marker_task_begin] = ACTIONS(2744), - [sym_list_marker_definition] = ACTIONS(2744), - [sym_list_marker_decimal_period] = ACTIONS(2744), - [sym_list_marker_lower_alpha_period] = ACTIONS(2744), - [sym_list_marker_upper_alpha_period] = ACTIONS(2744), - [sym_list_marker_lower_roman_period] = ACTIONS(2744), - [sym_list_marker_upper_roman_period] = ACTIONS(2744), - [sym_list_marker_decimal_paren] = ACTIONS(2744), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2744), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2744), - [sym_list_marker_lower_roman_paren] = ACTIONS(2744), - [sym_list_marker_upper_roman_paren] = ACTIONS(2744), - [sym_list_marker_decimal_parens] = ACTIONS(2744), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2744), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2744), - [sym_list_marker_lower_roman_parens] = ACTIONS(2744), - [sym_list_marker_upper_roman_parens] = ACTIONS(2744), - [sym__block_quote_begin] = ACTIONS(2744), - [sym__block_quote_continuation] = ACTIONS(2744), - [sym__thematic_break_dash] = ACTIONS(2744), - [sym__thematic_break_star] = ACTIONS(2744), - [sym__footnote_begin] = ACTIONS(2744), - [sym__verbatim_begin] = ACTIONS(2744), - }, - [346] = { - [ts_builtin_sym_end] = ACTIONS(2752), - [anon_sym_LBRACK] = ACTIONS(2750), - [anon_sym_PIPE] = ACTIONS(2752), - [anon_sym_LBRACE] = ACTIONS(2750), - [sym__whitespace1] = ACTIONS(2752), - [anon_sym_BSLASH] = ACTIONS(2750), - [sym_quotation_marks] = ACTIONS(2752), - [sym_ellipsis] = ACTIONS(2752), - [sym_em_dash] = ACTIONS(2752), - [sym_en_dash] = ACTIONS(2750), - [sym_backslash_escape] = ACTIONS(2750), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_LBRACE_] = ACTIONS(2752), - [anon_sym__] = ACTIONS(2752), - [anon_sym_LBRACE_STAR] = ACTIONS(2752), - [anon_sym_STAR] = ACTIONS(2752), - [anon_sym_LBRACE_EQ] = ACTIONS(2752), - [anon_sym_LBRACE_PLUS] = ACTIONS(2752), - [anon_sym_LBRACE_DASH] = ACTIONS(2752), - [sym_symbol] = ACTIONS(2752), - [anon_sym_LBRACE_CARET] = ACTIONS(2752), - [anon_sym_CARET] = ACTIONS(2752), - [anon_sym_LBRACE_TILDE] = ACTIONS(2752), - [anon_sym_TILDE] = ACTIONS(2752), - [anon_sym_LBRACK_CARET] = ACTIONS(2752), - [anon_sym_BANG_LBRACK] = ACTIONS(2752), - [anon_sym_DOLLAR] = ACTIONS(2752), - [anon_sym_TODO] = ACTIONS(2752), - [anon_sym_WIP] = ACTIONS(2752), - [anon_sym_NOTE] = ACTIONS(2752), - [anon_sym_INFO] = ACTIONS(2752), - [anon_sym_XXX] = ACTIONS(2752), - [sym_fixme] = ACTIONS(2752), - [aux_sym__text_token1] = ACTIONS(2750), - [sym__newline] = ACTIONS(2752), - [sym__newline_inline] = ACTIONS(2752), - [sym__heading1_begin] = ACTIONS(2752), - [sym__heading2_begin] = ACTIONS(2752), - [sym__heading3_begin] = ACTIONS(2752), - [sym__heading4_begin] = ACTIONS(2752), - [sym__heading5_begin] = ACTIONS(2752), - [sym__heading6_begin] = ACTIONS(2752), - [sym__div_begin] = ACTIONS(2752), - [sym__code_block_begin] = ACTIONS(2752), - [sym__code_block_end] = ACTIONS(2922), - [sym_list_marker_dash] = ACTIONS(2752), - [sym_list_marker_star] = ACTIONS(2752), - [sym_list_marker_plus] = ACTIONS(2752), - [sym__list_marker_task_begin] = ACTIONS(2752), - [sym_list_marker_definition] = ACTIONS(2752), - [sym_list_marker_decimal_period] = ACTIONS(2752), - [sym_list_marker_lower_alpha_period] = ACTIONS(2752), - [sym_list_marker_upper_alpha_period] = ACTIONS(2752), - [sym_list_marker_lower_roman_period] = ACTIONS(2752), - [sym_list_marker_upper_roman_period] = ACTIONS(2752), - [sym_list_marker_decimal_paren] = ACTIONS(2752), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2752), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2752), - [sym_list_marker_lower_roman_paren] = ACTIONS(2752), - [sym_list_marker_upper_roman_paren] = ACTIONS(2752), - [sym_list_marker_decimal_parens] = ACTIONS(2752), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2752), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2752), - [sym_list_marker_lower_roman_parens] = ACTIONS(2752), - [sym_list_marker_upper_roman_parens] = ACTIONS(2752), - [sym__block_quote_begin] = ACTIONS(2752), - [sym__block_quote_continuation] = ACTIONS(2752), - [sym__thematic_break_dash] = ACTIONS(2752), - [sym__thematic_break_star] = ACTIONS(2752), - [sym__footnote_begin] = ACTIONS(2752), - [sym__verbatim_begin] = ACTIONS(2752), - }, - [347] = { - [anon_sym_LBRACK] = ACTIONS(2924), - [anon_sym_PIPE] = ACTIONS(2926), - [anon_sym_LBRACE] = ACTIONS(2924), - [sym__whitespace1] = ACTIONS(2926), - [anon_sym_BSLASH] = ACTIONS(2924), - [sym_quotation_marks] = ACTIONS(2926), - [sym_ellipsis] = ACTIONS(2926), - [sym_em_dash] = ACTIONS(2926), - [sym_en_dash] = ACTIONS(2924), - [sym_backslash_escape] = ACTIONS(2924), - [anon_sym_LT] = ACTIONS(2926), - [anon_sym_LBRACE_] = ACTIONS(2926), - [anon_sym__] = ACTIONS(2926), - [anon_sym_LBRACE_STAR] = ACTIONS(2926), - [anon_sym_STAR] = ACTIONS(2926), - [anon_sym_LBRACE_EQ] = ACTIONS(2926), - [anon_sym_LBRACE_PLUS] = ACTIONS(2926), - [anon_sym_LBRACE_DASH] = ACTIONS(2926), - [sym_symbol] = ACTIONS(2926), - [anon_sym_LBRACE_CARET] = ACTIONS(2926), - [anon_sym_CARET] = ACTIONS(2926), - [anon_sym_LBRACE_TILDE] = ACTIONS(2926), - [anon_sym_TILDE] = ACTIONS(2926), - [anon_sym_LBRACK_CARET] = ACTIONS(2926), - [anon_sym_BANG_LBRACK] = ACTIONS(2926), - [anon_sym_DOLLAR] = ACTIONS(2926), - [anon_sym_TODO] = ACTIONS(2926), - [anon_sym_WIP] = ACTIONS(2926), - [anon_sym_NOTE] = ACTIONS(2926), - [anon_sym_INFO] = ACTIONS(2926), - [anon_sym_XXX] = ACTIONS(2926), - [sym_fixme] = ACTIONS(2926), - [aux_sym__text_token1] = ACTIONS(2924), - [sym__eof_or_newline] = ACTIONS(2928), - [sym__newline] = ACTIONS(2926), - [sym__newline_inline] = ACTIONS(2926), - [sym__heading1_begin] = ACTIONS(2926), - [sym__heading2_begin] = ACTIONS(2926), - [sym__heading3_begin] = ACTIONS(2926), - [sym__heading4_begin] = ACTIONS(2926), - [sym__heading5_begin] = ACTIONS(2926), - [sym__heading6_begin] = ACTIONS(2926), - [sym__div_begin] = ACTIONS(2926), - [sym__code_block_begin] = ACTIONS(2926), - [sym_list_marker_dash] = ACTIONS(2926), - [sym_list_marker_star] = ACTIONS(2926), - [sym_list_marker_plus] = ACTIONS(2926), - [sym__list_marker_task_begin] = ACTIONS(2926), - [sym_list_marker_definition] = ACTIONS(2926), - [sym_list_marker_decimal_period] = ACTIONS(2926), - [sym_list_marker_lower_alpha_period] = ACTIONS(2926), - [sym_list_marker_upper_alpha_period] = ACTIONS(2926), - [sym_list_marker_lower_roman_period] = ACTIONS(2926), - [sym_list_marker_upper_roman_period] = ACTIONS(2926), - [sym_list_marker_decimal_paren] = ACTIONS(2926), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2926), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2926), - [sym_list_marker_lower_roman_paren] = ACTIONS(2926), - [sym_list_marker_upper_roman_paren] = ACTIONS(2926), - [sym_list_marker_decimal_parens] = ACTIONS(2926), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2926), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2926), - [sym_list_marker_lower_roman_parens] = ACTIONS(2926), - [sym_list_marker_upper_roman_parens] = ACTIONS(2926), - [sym__block_quote_begin] = ACTIONS(2926), - [sym__block_quote_continuation] = ACTIONS(2926), - [sym__thematic_break_dash] = ACTIONS(2926), - [sym__thematic_break_star] = ACTIONS(2926), - [sym__footnote_begin] = ACTIONS(2926), - [sym__footnote_end] = ACTIONS(2926), - [sym__verbatim_begin] = ACTIONS(2926), - }, - [348] = { - [ts_builtin_sym_end] = ACTIONS(2824), - [anon_sym_LBRACK] = ACTIONS(2822), - [anon_sym_PIPE] = ACTIONS(2824), - [anon_sym_LBRACE] = ACTIONS(2822), - [sym__whitespace1] = ACTIONS(2824), - [anon_sym_BSLASH] = ACTIONS(2822), - [sym_quotation_marks] = ACTIONS(2824), - [sym_ellipsis] = ACTIONS(2824), - [sym_em_dash] = ACTIONS(2824), - [sym_en_dash] = ACTIONS(2822), - [sym_backslash_escape] = ACTIONS(2822), - [anon_sym_LT] = ACTIONS(2824), - [anon_sym_LBRACE_] = ACTIONS(2824), - [anon_sym__] = ACTIONS(2824), - [anon_sym_LBRACE_STAR] = ACTIONS(2824), - [anon_sym_STAR] = ACTIONS(2824), - [anon_sym_LBRACE_EQ] = ACTIONS(2824), - [anon_sym_LBRACE_PLUS] = ACTIONS(2824), - [anon_sym_LBRACE_DASH] = ACTIONS(2824), - [sym_symbol] = ACTIONS(2824), - [anon_sym_LBRACE_CARET] = ACTIONS(2824), - [anon_sym_CARET] = ACTIONS(2824), - [anon_sym_LBRACE_TILDE] = ACTIONS(2824), - [anon_sym_TILDE] = ACTIONS(2824), - [anon_sym_LBRACK_CARET] = ACTIONS(2824), - [anon_sym_BANG_LBRACK] = ACTIONS(2824), - [anon_sym_DOLLAR] = ACTIONS(2824), - [anon_sym_TODO] = ACTIONS(2824), - [anon_sym_WIP] = ACTIONS(2824), - [anon_sym_NOTE] = ACTIONS(2824), - [anon_sym_INFO] = ACTIONS(2824), - [anon_sym_XXX] = ACTIONS(2824), - [sym_fixme] = ACTIONS(2824), - [aux_sym__text_token1] = ACTIONS(2822), - [sym__newline] = ACTIONS(2824), - [sym__newline_inline] = ACTIONS(2824), - [sym__heading1_begin] = ACTIONS(2824), - [sym__heading2_begin] = ACTIONS(2824), - [sym__heading3_begin] = ACTIONS(2824), - [sym__heading4_begin] = ACTIONS(2824), - [sym__heading5_begin] = ACTIONS(2824), - [sym__heading6_begin] = ACTIONS(2824), - [sym__div_begin] = ACTIONS(2824), - [sym__div_end] = ACTIONS(2930), - [sym__code_block_begin] = ACTIONS(2824), - [sym_list_marker_dash] = ACTIONS(2824), - [sym_list_marker_star] = ACTIONS(2824), - [sym_list_marker_plus] = ACTIONS(2824), - [sym__list_marker_task_begin] = ACTIONS(2824), - [sym_list_marker_definition] = ACTIONS(2824), - [sym_list_marker_decimal_period] = ACTIONS(2824), - [sym_list_marker_lower_alpha_period] = ACTIONS(2824), - [sym_list_marker_upper_alpha_period] = ACTIONS(2824), - [sym_list_marker_lower_roman_period] = ACTIONS(2824), - [sym_list_marker_upper_roman_period] = ACTIONS(2824), - [sym_list_marker_decimal_paren] = ACTIONS(2824), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2824), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2824), - [sym_list_marker_lower_roman_paren] = ACTIONS(2824), - [sym_list_marker_upper_roman_paren] = ACTIONS(2824), - [sym_list_marker_decimal_parens] = ACTIONS(2824), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2824), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2824), - [sym_list_marker_lower_roman_parens] = ACTIONS(2824), - [sym_list_marker_upper_roman_parens] = ACTIONS(2824), - [sym__block_quote_begin] = ACTIONS(2824), - [sym__block_quote_continuation] = ACTIONS(2824), - [sym__thematic_break_dash] = ACTIONS(2824), - [sym__thematic_break_star] = ACTIONS(2824), - [sym__footnote_begin] = ACTIONS(2824), - [sym__verbatim_begin] = ACTIONS(2824), - }, - [349] = { - [ts_builtin_sym_end] = ACTIONS(2830), - [anon_sym_LBRACK] = ACTIONS(2828), - [anon_sym_PIPE] = ACTIONS(2830), - [anon_sym_LBRACE] = ACTIONS(2828), - [sym__whitespace1] = ACTIONS(2830), - [anon_sym_BSLASH] = ACTIONS(2828), - [sym_quotation_marks] = ACTIONS(2830), - [sym_ellipsis] = ACTIONS(2830), - [sym_em_dash] = ACTIONS(2830), - [sym_en_dash] = ACTIONS(2828), - [sym_backslash_escape] = ACTIONS(2828), - [anon_sym_LT] = ACTIONS(2830), - [anon_sym_LBRACE_] = ACTIONS(2830), - [anon_sym__] = ACTIONS(2830), - [anon_sym_LBRACE_STAR] = ACTIONS(2830), - [anon_sym_STAR] = ACTIONS(2830), - [anon_sym_LBRACE_EQ] = ACTIONS(2830), - [anon_sym_LBRACE_PLUS] = ACTIONS(2830), - [anon_sym_LBRACE_DASH] = ACTIONS(2830), - [sym_symbol] = ACTIONS(2830), - [anon_sym_LBRACE_CARET] = ACTIONS(2830), - [anon_sym_CARET] = ACTIONS(2830), - [anon_sym_LBRACE_TILDE] = ACTIONS(2830), - [anon_sym_TILDE] = ACTIONS(2830), - [anon_sym_LBRACK_CARET] = ACTIONS(2830), - [anon_sym_BANG_LBRACK] = ACTIONS(2830), - [anon_sym_DOLLAR] = ACTIONS(2830), - [anon_sym_TODO] = ACTIONS(2830), - [anon_sym_WIP] = ACTIONS(2830), - [anon_sym_NOTE] = ACTIONS(2830), - [anon_sym_INFO] = ACTIONS(2830), - [anon_sym_XXX] = ACTIONS(2830), - [sym_fixme] = ACTIONS(2830), - [aux_sym__text_token1] = ACTIONS(2828), - [sym__newline] = ACTIONS(2830), - [sym__newline_inline] = ACTIONS(2830), - [sym__heading1_begin] = ACTIONS(2830), - [sym__heading2_begin] = ACTIONS(2830), - [sym__heading3_begin] = ACTIONS(2830), - [sym__heading4_begin] = ACTIONS(2830), - [sym__heading5_begin] = ACTIONS(2830), - [sym__heading6_begin] = ACTIONS(2830), - [sym__div_begin] = ACTIONS(2830), - [sym__code_block_begin] = ACTIONS(2830), - [sym_list_marker_dash] = ACTIONS(2830), - [sym_list_marker_star] = ACTIONS(2830), - [sym_list_marker_plus] = ACTIONS(2830), - [sym__list_marker_task_begin] = ACTIONS(2830), - [sym_list_marker_definition] = ACTIONS(2830), - [sym_list_marker_decimal_period] = ACTIONS(2830), - [sym_list_marker_lower_alpha_period] = ACTIONS(2830), - [sym_list_marker_upper_alpha_period] = ACTIONS(2830), - [sym_list_marker_lower_roman_period] = ACTIONS(2830), - [sym_list_marker_upper_roman_period] = ACTIONS(2830), - [sym_list_marker_decimal_paren] = ACTIONS(2830), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2830), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2830), - [sym_list_marker_lower_roman_paren] = ACTIONS(2830), - [sym_list_marker_upper_roman_paren] = ACTIONS(2830), - [sym_list_marker_decimal_parens] = ACTIONS(2830), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2830), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2830), - [sym_list_marker_lower_roman_parens] = ACTIONS(2830), - [sym_list_marker_upper_roman_parens] = ACTIONS(2830), - [sym__block_quote_begin] = ACTIONS(2830), - [sym__block_quote_continuation] = ACTIONS(2830), - [sym__thematic_break_dash] = ACTIONS(2830), - [sym__thematic_break_star] = ACTIONS(2830), - [sym__footnote_begin] = ACTIONS(2830), - [sym__table_caption_begin] = ACTIONS(2830), - [sym__verbatim_begin] = ACTIONS(2830), - }, - [350] = { - [ts_builtin_sym_end] = ACTIONS(2834), - [anon_sym_LBRACK] = ACTIONS(2832), - [anon_sym_PIPE] = ACTIONS(2834), - [anon_sym_LBRACE] = ACTIONS(2832), - [sym__whitespace1] = ACTIONS(2834), - [anon_sym_BSLASH] = ACTIONS(2832), - [sym_quotation_marks] = ACTIONS(2834), - [sym_ellipsis] = ACTIONS(2834), - [sym_em_dash] = ACTIONS(2834), - [sym_en_dash] = ACTIONS(2832), - [sym_backslash_escape] = ACTIONS(2832), - [anon_sym_LT] = ACTIONS(2834), - [anon_sym_LBRACE_] = ACTIONS(2834), - [anon_sym__] = ACTIONS(2834), - [anon_sym_LBRACE_STAR] = ACTIONS(2834), - [anon_sym_STAR] = ACTIONS(2834), - [anon_sym_LBRACE_EQ] = ACTIONS(2834), - [anon_sym_LBRACE_PLUS] = ACTIONS(2834), - [anon_sym_LBRACE_DASH] = ACTIONS(2834), - [sym_symbol] = ACTIONS(2834), - [anon_sym_LBRACE_CARET] = ACTIONS(2834), - [anon_sym_CARET] = ACTIONS(2834), - [anon_sym_LBRACE_TILDE] = ACTIONS(2834), - [anon_sym_TILDE] = ACTIONS(2834), - [anon_sym_LBRACK_CARET] = ACTIONS(2834), - [anon_sym_BANG_LBRACK] = ACTIONS(2834), - [anon_sym_DOLLAR] = ACTIONS(2834), - [anon_sym_TODO] = ACTIONS(2834), - [anon_sym_WIP] = ACTIONS(2834), - [anon_sym_NOTE] = ACTIONS(2834), - [anon_sym_INFO] = ACTIONS(2834), - [anon_sym_XXX] = ACTIONS(2834), - [sym_fixme] = ACTIONS(2834), - [aux_sym__text_token1] = ACTIONS(2832), - [sym__newline] = ACTIONS(2834), - [sym__newline_inline] = ACTIONS(2834), - [sym__heading1_begin] = ACTIONS(2834), - [sym__heading2_begin] = ACTIONS(2834), - [sym__heading3_begin] = ACTIONS(2834), - [sym__heading4_begin] = ACTIONS(2834), - [sym__heading5_begin] = ACTIONS(2834), - [sym__heading6_begin] = ACTIONS(2834), - [sym__div_begin] = ACTIONS(2834), - [sym__code_block_begin] = ACTIONS(2834), - [sym_list_marker_dash] = ACTIONS(2834), - [sym_list_marker_star] = ACTIONS(2834), - [sym_list_marker_plus] = ACTIONS(2834), - [sym__list_marker_task_begin] = ACTIONS(2834), - [sym_list_marker_definition] = ACTIONS(2834), - [sym_list_marker_decimal_period] = ACTIONS(2834), - [sym_list_marker_lower_alpha_period] = ACTIONS(2834), - [sym_list_marker_upper_alpha_period] = ACTIONS(2834), - [sym_list_marker_lower_roman_period] = ACTIONS(2834), - [sym_list_marker_upper_roman_period] = ACTIONS(2834), - [sym_list_marker_decimal_paren] = ACTIONS(2834), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2834), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2834), - [sym_list_marker_lower_roman_paren] = ACTIONS(2834), - [sym_list_marker_upper_roman_paren] = ACTIONS(2834), - [sym_list_marker_decimal_parens] = ACTIONS(2834), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2834), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2834), - [sym_list_marker_lower_roman_parens] = ACTIONS(2834), - [sym_list_marker_upper_roman_parens] = ACTIONS(2834), - [sym__block_quote_begin] = ACTIONS(2834), - [sym__block_quote_continuation] = ACTIONS(2834), - [sym__thematic_break_dash] = ACTIONS(2834), - [sym__thematic_break_star] = ACTIONS(2834), - [sym__footnote_begin] = ACTIONS(2834), - [sym__table_caption_begin] = ACTIONS(2834), - [sym__verbatim_begin] = ACTIONS(2834), - }, - [351] = { - [anon_sym_LBRACK] = ACTIONS(2902), - [anon_sym_PIPE] = ACTIONS(2904), - [anon_sym_LBRACE] = ACTIONS(2902), - [sym__whitespace1] = ACTIONS(2904), - [anon_sym_BSLASH] = ACTIONS(2902), - [sym_quotation_marks] = ACTIONS(2904), - [sym_ellipsis] = ACTIONS(2904), - [sym_em_dash] = ACTIONS(2904), - [sym_en_dash] = ACTIONS(2902), - [sym_backslash_escape] = ACTIONS(2902), - [anon_sym_LT] = ACTIONS(2904), - [anon_sym_LBRACE_] = ACTIONS(2904), - [anon_sym__] = ACTIONS(2904), - [anon_sym_LBRACE_STAR] = ACTIONS(2904), - [anon_sym_STAR] = ACTIONS(2904), - [anon_sym_LBRACE_EQ] = ACTIONS(2904), - [anon_sym_LBRACE_PLUS] = ACTIONS(2904), - [anon_sym_LBRACE_DASH] = ACTIONS(2904), - [sym_symbol] = ACTIONS(2904), - [anon_sym_LBRACE_CARET] = ACTIONS(2904), - [anon_sym_CARET] = ACTIONS(2904), - [anon_sym_LBRACE_TILDE] = ACTIONS(2904), - [anon_sym_TILDE] = ACTIONS(2904), - [anon_sym_LBRACK_CARET] = ACTIONS(2904), - [anon_sym_BANG_LBRACK] = ACTIONS(2904), - [anon_sym_DOLLAR] = ACTIONS(2904), - [anon_sym_TODO] = ACTIONS(2904), - [anon_sym_WIP] = ACTIONS(2904), - [anon_sym_NOTE] = ACTIONS(2904), - [anon_sym_INFO] = ACTIONS(2904), - [anon_sym_XXX] = ACTIONS(2904), - [sym_fixme] = ACTIONS(2904), - [aux_sym__text_token1] = ACTIONS(2902), - [sym__block_close] = ACTIONS(2904), - [sym__eof_or_newline] = ACTIONS(2932), - [sym__newline] = ACTIONS(2904), - [sym__newline_inline] = ACTIONS(2904), - [sym__heading1_begin] = ACTIONS(2904), - [sym__heading2_begin] = ACTIONS(2904), - [sym__heading3_begin] = ACTIONS(2904), - [sym__heading4_begin] = ACTIONS(2904), - [sym__heading5_begin] = ACTIONS(2904), - [sym__heading6_begin] = ACTIONS(2904), - [sym__div_begin] = ACTIONS(2904), - [sym__code_block_begin] = ACTIONS(2904), - [sym_list_marker_dash] = ACTIONS(2904), - [sym_list_marker_star] = ACTIONS(2904), - [sym_list_marker_plus] = ACTIONS(2904), - [sym__list_marker_task_begin] = ACTIONS(2904), - [sym_list_marker_definition] = ACTIONS(2904), - [sym_list_marker_decimal_period] = ACTIONS(2904), - [sym_list_marker_lower_alpha_period] = ACTIONS(2904), - [sym_list_marker_upper_alpha_period] = ACTIONS(2904), - [sym_list_marker_lower_roman_period] = ACTIONS(2904), - [sym_list_marker_upper_roman_period] = ACTIONS(2904), - [sym_list_marker_decimal_paren] = ACTIONS(2904), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2904), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2904), - [sym_list_marker_lower_roman_paren] = ACTIONS(2904), - [sym_list_marker_upper_roman_paren] = ACTIONS(2904), - [sym_list_marker_decimal_parens] = ACTIONS(2904), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2904), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2904), - [sym_list_marker_lower_roman_parens] = ACTIONS(2904), - [sym_list_marker_upper_roman_parens] = ACTIONS(2904), - [sym__block_quote_begin] = ACTIONS(2904), - [sym__block_quote_continuation] = ACTIONS(2904), - [sym__thematic_break_dash] = ACTIONS(2904), - [sym__thematic_break_star] = ACTIONS(2904), - [sym__footnote_begin] = ACTIONS(2904), - [sym__verbatim_begin] = ACTIONS(2904), - }, - [352] = { - [anon_sym_LBRACK] = ACTIONS(2924), - [anon_sym_PIPE] = ACTIONS(2926), - [anon_sym_LBRACE] = ACTIONS(2924), - [sym__whitespace1] = ACTIONS(2926), - [anon_sym_BSLASH] = ACTIONS(2924), - [sym_quotation_marks] = ACTIONS(2926), - [sym_ellipsis] = ACTIONS(2926), - [sym_em_dash] = ACTIONS(2926), - [sym_en_dash] = ACTIONS(2924), - [sym_backslash_escape] = ACTIONS(2924), - [anon_sym_LT] = ACTIONS(2926), - [anon_sym_LBRACE_] = ACTIONS(2926), - [anon_sym__] = ACTIONS(2926), - [anon_sym_LBRACE_STAR] = ACTIONS(2926), - [anon_sym_STAR] = ACTIONS(2926), - [anon_sym_LBRACE_EQ] = ACTIONS(2926), - [anon_sym_LBRACE_PLUS] = ACTIONS(2926), - [anon_sym_LBRACE_DASH] = ACTIONS(2926), - [sym_symbol] = ACTIONS(2926), - [anon_sym_LBRACE_CARET] = ACTIONS(2926), - [anon_sym_CARET] = ACTIONS(2926), - [anon_sym_LBRACE_TILDE] = ACTIONS(2926), - [anon_sym_TILDE] = ACTIONS(2926), - [anon_sym_LBRACK_CARET] = ACTIONS(2926), - [anon_sym_BANG_LBRACK] = ACTIONS(2926), - [anon_sym_DOLLAR] = ACTIONS(2926), - [anon_sym_TODO] = ACTIONS(2926), - [anon_sym_WIP] = ACTIONS(2926), - [anon_sym_NOTE] = ACTIONS(2926), - [anon_sym_INFO] = ACTIONS(2926), - [anon_sym_XXX] = ACTIONS(2926), - [sym_fixme] = ACTIONS(2926), - [aux_sym__text_token1] = ACTIONS(2924), - [sym__block_close] = ACTIONS(2926), - [sym__eof_or_newline] = ACTIONS(2934), - [sym__newline] = ACTIONS(2926), - [sym__newline_inline] = ACTIONS(2926), - [sym__heading1_begin] = ACTIONS(2926), - [sym__heading2_begin] = ACTIONS(2926), - [sym__heading3_begin] = ACTIONS(2926), - [sym__heading4_begin] = ACTIONS(2926), - [sym__heading5_begin] = ACTIONS(2926), - [sym__heading6_begin] = ACTIONS(2926), - [sym__div_begin] = ACTIONS(2926), - [sym__code_block_begin] = ACTIONS(2926), - [sym_list_marker_dash] = ACTIONS(2926), - [sym_list_marker_star] = ACTIONS(2926), - [sym_list_marker_plus] = ACTIONS(2926), - [sym__list_marker_task_begin] = ACTIONS(2926), - [sym_list_marker_definition] = ACTIONS(2926), - [sym_list_marker_decimal_period] = ACTIONS(2926), - [sym_list_marker_lower_alpha_period] = ACTIONS(2926), - [sym_list_marker_upper_alpha_period] = ACTIONS(2926), - [sym_list_marker_lower_roman_period] = ACTIONS(2926), - [sym_list_marker_upper_roman_period] = ACTIONS(2926), - [sym_list_marker_decimal_paren] = ACTIONS(2926), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2926), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2926), - [sym_list_marker_lower_roman_paren] = ACTIONS(2926), - [sym_list_marker_upper_roman_paren] = ACTIONS(2926), - [sym_list_marker_decimal_parens] = ACTIONS(2926), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2926), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2926), - [sym_list_marker_lower_roman_parens] = ACTIONS(2926), - [sym_list_marker_upper_roman_parens] = ACTIONS(2926), - [sym__block_quote_begin] = ACTIONS(2926), - [sym__block_quote_continuation] = ACTIONS(2926), - [sym__thematic_break_dash] = ACTIONS(2926), - [sym__thematic_break_star] = ACTIONS(2926), - [sym__footnote_begin] = ACTIONS(2926), - [sym__verbatim_begin] = ACTIONS(2926), - }, - [353] = { - [ts_builtin_sym_end] = ACTIONS(2864), - [anon_sym_LBRACK] = ACTIONS(2862), - [anon_sym_PIPE] = ACTIONS(2864), - [anon_sym_LBRACE] = ACTIONS(2862), - [sym__whitespace1] = ACTIONS(2864), - [anon_sym_BSLASH] = ACTIONS(2862), - [sym_quotation_marks] = ACTIONS(2864), - [sym_ellipsis] = ACTIONS(2864), - [sym_em_dash] = ACTIONS(2864), - [sym_en_dash] = ACTIONS(2862), - [sym_backslash_escape] = ACTIONS(2862), - [anon_sym_LT] = ACTIONS(2864), - [anon_sym_LBRACE_] = ACTIONS(2864), - [anon_sym__] = ACTIONS(2864), - [anon_sym_LBRACE_STAR] = ACTIONS(2864), - [anon_sym_STAR] = ACTIONS(2864), - [anon_sym_LBRACE_EQ] = ACTIONS(2864), - [anon_sym_LBRACE_PLUS] = ACTIONS(2864), - [anon_sym_LBRACE_DASH] = ACTIONS(2864), - [sym_symbol] = ACTIONS(2864), - [anon_sym_LBRACE_CARET] = ACTIONS(2864), - [anon_sym_CARET] = ACTIONS(2864), - [anon_sym_LBRACE_TILDE] = ACTIONS(2864), - [anon_sym_TILDE] = ACTIONS(2864), - [anon_sym_LBRACK_CARET] = ACTIONS(2864), - [anon_sym_BANG_LBRACK] = ACTIONS(2864), - [anon_sym_DOLLAR] = ACTIONS(2864), - [anon_sym_TODO] = ACTIONS(2864), - [anon_sym_WIP] = ACTIONS(2864), - [anon_sym_NOTE] = ACTIONS(2864), - [anon_sym_INFO] = ACTIONS(2864), - [anon_sym_XXX] = ACTIONS(2864), - [sym_fixme] = ACTIONS(2864), - [aux_sym__text_token1] = ACTIONS(2862), - [sym__newline] = ACTIONS(2864), - [sym__newline_inline] = ACTIONS(2864), - [sym__heading1_begin] = ACTIONS(2864), - [sym__heading2_begin] = ACTIONS(2864), - [sym__heading3_begin] = ACTIONS(2864), - [sym__heading4_begin] = ACTIONS(2864), - [sym__heading5_begin] = ACTIONS(2864), - [sym__heading6_begin] = ACTIONS(2864), - [sym__div_begin] = ACTIONS(2864), - [sym__div_end] = ACTIONS(2936), - [sym__code_block_begin] = ACTIONS(2864), - [sym_list_marker_dash] = ACTIONS(2864), - [sym_list_marker_star] = ACTIONS(2864), - [sym_list_marker_plus] = ACTIONS(2864), - [sym__list_marker_task_begin] = ACTIONS(2864), - [sym_list_marker_definition] = ACTIONS(2864), - [sym_list_marker_decimal_period] = ACTIONS(2864), - [sym_list_marker_lower_alpha_period] = ACTIONS(2864), - [sym_list_marker_upper_alpha_period] = ACTIONS(2864), - [sym_list_marker_lower_roman_period] = ACTIONS(2864), - [sym_list_marker_upper_roman_period] = ACTIONS(2864), - [sym_list_marker_decimal_paren] = ACTIONS(2864), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2864), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2864), - [sym_list_marker_lower_roman_paren] = ACTIONS(2864), - [sym_list_marker_upper_roman_paren] = ACTIONS(2864), - [sym_list_marker_decimal_parens] = ACTIONS(2864), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2864), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2864), - [sym_list_marker_lower_roman_parens] = ACTIONS(2864), - [sym_list_marker_upper_roman_parens] = ACTIONS(2864), - [sym__block_quote_begin] = ACTIONS(2864), - [sym__block_quote_continuation] = ACTIONS(2864), - [sym__thematic_break_dash] = ACTIONS(2864), - [sym__thematic_break_star] = ACTIONS(2864), - [sym__footnote_begin] = ACTIONS(2864), - [sym__verbatim_begin] = ACTIONS(2864), - }, - [354] = { - [ts_builtin_sym_end] = ACTIONS(2860), - [anon_sym_LBRACK] = ACTIONS(2858), - [anon_sym_PIPE] = ACTIONS(2860), - [anon_sym_LBRACE] = ACTIONS(2858), - [sym__whitespace1] = ACTIONS(2860), - [anon_sym_BSLASH] = ACTIONS(2858), - [sym_quotation_marks] = ACTIONS(2860), - [sym_ellipsis] = ACTIONS(2860), - [sym_em_dash] = ACTIONS(2860), - [sym_en_dash] = ACTIONS(2858), - [sym_backslash_escape] = ACTIONS(2858), - [anon_sym_LT] = ACTIONS(2860), - [anon_sym_LBRACE_] = ACTIONS(2860), - [anon_sym__] = ACTIONS(2860), - [anon_sym_LBRACE_STAR] = ACTIONS(2860), - [anon_sym_STAR] = ACTIONS(2860), - [anon_sym_LBRACE_EQ] = ACTIONS(2860), - [anon_sym_LBRACE_PLUS] = ACTIONS(2860), - [anon_sym_LBRACE_DASH] = ACTIONS(2860), - [sym_symbol] = ACTIONS(2860), - [anon_sym_LBRACE_CARET] = ACTIONS(2860), - [anon_sym_CARET] = ACTIONS(2860), - [anon_sym_LBRACE_TILDE] = ACTIONS(2860), - [anon_sym_TILDE] = ACTIONS(2860), - [anon_sym_LBRACK_CARET] = ACTIONS(2860), - [anon_sym_BANG_LBRACK] = ACTIONS(2860), - [anon_sym_DOLLAR] = ACTIONS(2860), - [anon_sym_TODO] = ACTIONS(2860), - [anon_sym_WIP] = ACTIONS(2860), - [anon_sym_NOTE] = ACTIONS(2860), - [anon_sym_INFO] = ACTIONS(2860), - [anon_sym_XXX] = ACTIONS(2860), - [sym_fixme] = ACTIONS(2860), - [aux_sym__text_token1] = ACTIONS(2858), - [sym__newline] = ACTIONS(2860), - [sym__newline_inline] = ACTIONS(2860), - [sym__heading1_begin] = ACTIONS(2860), - [sym__heading2_begin] = ACTIONS(2860), - [sym__heading3_begin] = ACTIONS(2860), - [sym__heading4_begin] = ACTIONS(2860), - [sym__heading5_begin] = ACTIONS(2860), - [sym__heading6_begin] = ACTIONS(2860), - [sym__div_begin] = ACTIONS(2860), - [sym__code_block_begin] = ACTIONS(2860), - [sym_list_marker_dash] = ACTIONS(2860), - [sym_list_marker_star] = ACTIONS(2860), - [sym_list_marker_plus] = ACTIONS(2860), - [sym__list_marker_task_begin] = ACTIONS(2860), - [sym_list_marker_definition] = ACTIONS(2860), - [sym_list_marker_decimal_period] = ACTIONS(2860), - [sym_list_marker_lower_alpha_period] = ACTIONS(2860), - [sym_list_marker_upper_alpha_period] = ACTIONS(2860), - [sym_list_marker_lower_roman_period] = ACTIONS(2860), - [sym_list_marker_upper_roman_period] = ACTIONS(2860), - [sym_list_marker_decimal_paren] = ACTIONS(2860), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2860), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2860), - [sym_list_marker_lower_roman_paren] = ACTIONS(2860), - [sym_list_marker_upper_roman_paren] = ACTIONS(2860), - [sym_list_marker_decimal_parens] = ACTIONS(2860), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2860), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2860), - [sym_list_marker_lower_roman_parens] = ACTIONS(2860), - [sym_list_marker_upper_roman_parens] = ACTIONS(2860), - [sym__block_quote_begin] = ACTIONS(2860), - [sym__block_quote_continuation] = ACTIONS(2860), - [sym__thematic_break_dash] = ACTIONS(2860), - [sym__thematic_break_star] = ACTIONS(2860), - [sym__footnote_begin] = ACTIONS(2860), - [sym__table_caption_begin] = ACTIONS(2860), - [sym__verbatim_begin] = ACTIONS(2860), - }, - [355] = { - [anon_sym_LBRACK] = ACTIONS(2894), - [anon_sym_PIPE] = ACTIONS(2896), - [anon_sym_LBRACE] = ACTIONS(2894), - [sym__whitespace1] = ACTIONS(2896), - [anon_sym_BSLASH] = ACTIONS(2894), - [sym_quotation_marks] = ACTIONS(2896), - [sym_ellipsis] = ACTIONS(2896), - [sym_em_dash] = ACTIONS(2896), - [sym_en_dash] = ACTIONS(2894), - [sym_backslash_escape] = ACTIONS(2894), - [anon_sym_LT] = ACTIONS(2896), - [anon_sym_LBRACE_] = ACTIONS(2896), - [anon_sym__] = ACTIONS(2896), - [anon_sym_LBRACE_STAR] = ACTIONS(2896), - [anon_sym_STAR] = ACTIONS(2896), - [anon_sym_LBRACE_EQ] = ACTIONS(2896), - [anon_sym_LBRACE_PLUS] = ACTIONS(2896), - [anon_sym_LBRACE_DASH] = ACTIONS(2896), - [sym_symbol] = ACTIONS(2896), - [anon_sym_LBRACE_CARET] = ACTIONS(2896), - [anon_sym_CARET] = ACTIONS(2896), - [anon_sym_LBRACE_TILDE] = ACTIONS(2896), - [anon_sym_TILDE] = ACTIONS(2896), - [anon_sym_LBRACK_CARET] = ACTIONS(2896), - [anon_sym_BANG_LBRACK] = ACTIONS(2896), - [anon_sym_DOLLAR] = ACTIONS(2896), - [anon_sym_TODO] = ACTIONS(2896), - [anon_sym_WIP] = ACTIONS(2896), - [anon_sym_NOTE] = ACTIONS(2896), - [anon_sym_INFO] = ACTIONS(2896), - [anon_sym_XXX] = ACTIONS(2896), - [sym_fixme] = ACTIONS(2896), - [aux_sym__text_token1] = ACTIONS(2894), - [sym__block_close] = ACTIONS(2896), - [sym__eof_or_newline] = ACTIONS(2938), - [sym__newline] = ACTIONS(2896), - [sym__newline_inline] = ACTIONS(2896), - [sym__heading1_begin] = ACTIONS(2896), - [sym__heading2_begin] = ACTIONS(2896), - [sym__heading3_begin] = ACTIONS(2896), - [sym__heading4_begin] = ACTIONS(2896), - [sym__heading5_begin] = ACTIONS(2896), - [sym__heading6_begin] = ACTIONS(2896), - [sym__div_begin] = ACTIONS(2896), - [sym__code_block_begin] = ACTIONS(2896), - [sym_list_marker_dash] = ACTIONS(2896), - [sym_list_marker_star] = ACTIONS(2896), - [sym_list_marker_plus] = ACTIONS(2896), - [sym__list_marker_task_begin] = ACTIONS(2896), - [sym_list_marker_definition] = ACTIONS(2896), - [sym_list_marker_decimal_period] = ACTIONS(2896), - [sym_list_marker_lower_alpha_period] = ACTIONS(2896), - [sym_list_marker_upper_alpha_period] = ACTIONS(2896), - [sym_list_marker_lower_roman_period] = ACTIONS(2896), - [sym_list_marker_upper_roman_period] = ACTIONS(2896), - [sym_list_marker_decimal_paren] = ACTIONS(2896), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2896), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2896), - [sym_list_marker_lower_roman_paren] = ACTIONS(2896), - [sym_list_marker_upper_roman_paren] = ACTIONS(2896), - [sym_list_marker_decimal_parens] = ACTIONS(2896), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2896), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2896), - [sym_list_marker_lower_roman_parens] = ACTIONS(2896), - [sym_list_marker_upper_roman_parens] = ACTIONS(2896), - [sym__block_quote_begin] = ACTIONS(2896), - [sym__block_quote_continuation] = ACTIONS(2896), - [sym__thematic_break_dash] = ACTIONS(2896), - [sym__thematic_break_star] = ACTIONS(2896), - [sym__footnote_begin] = ACTIONS(2896), - [sym__verbatim_begin] = ACTIONS(2896), - }, - [356] = { - [anon_sym_LBRACK] = ACTIONS(2908), - [anon_sym_PIPE] = ACTIONS(2910), - [anon_sym_LBRACE] = ACTIONS(2908), - [sym__whitespace1] = ACTIONS(2910), - [anon_sym_BSLASH] = ACTIONS(2908), - [sym_quotation_marks] = ACTIONS(2910), - [sym_ellipsis] = ACTIONS(2910), - [sym_em_dash] = ACTIONS(2910), - [sym_en_dash] = ACTIONS(2908), - [sym_backslash_escape] = ACTIONS(2908), - [anon_sym_LT] = ACTIONS(2910), - [anon_sym_LBRACE_] = ACTIONS(2910), - [anon_sym__] = ACTIONS(2910), - [anon_sym_LBRACE_STAR] = ACTIONS(2910), - [anon_sym_STAR] = ACTIONS(2910), - [anon_sym_LBRACE_EQ] = ACTIONS(2910), - [anon_sym_LBRACE_PLUS] = ACTIONS(2910), - [anon_sym_LBRACE_DASH] = ACTIONS(2910), - [sym_symbol] = ACTIONS(2910), - [anon_sym_LBRACE_CARET] = ACTIONS(2910), - [anon_sym_CARET] = ACTIONS(2910), - [anon_sym_LBRACE_TILDE] = ACTIONS(2910), - [anon_sym_TILDE] = ACTIONS(2910), - [anon_sym_LBRACK_CARET] = ACTIONS(2910), - [anon_sym_BANG_LBRACK] = ACTIONS(2910), - [anon_sym_DOLLAR] = ACTIONS(2910), - [anon_sym_TODO] = ACTIONS(2910), - [anon_sym_WIP] = ACTIONS(2910), - [anon_sym_NOTE] = ACTIONS(2910), - [anon_sym_INFO] = ACTIONS(2910), - [anon_sym_XXX] = ACTIONS(2910), - [sym_fixme] = ACTIONS(2910), - [aux_sym__text_token1] = ACTIONS(2908), - [sym__block_close] = ACTIONS(2910), - [sym__eof_or_newline] = ACTIONS(2940), - [sym__newline] = ACTIONS(2910), - [sym__newline_inline] = ACTIONS(2910), - [sym__heading1_begin] = ACTIONS(2910), - [sym__heading2_begin] = ACTIONS(2910), - [sym__heading3_begin] = ACTIONS(2910), - [sym__heading4_begin] = ACTIONS(2910), - [sym__heading5_begin] = ACTIONS(2910), - [sym__heading6_begin] = ACTIONS(2910), - [sym__div_begin] = ACTIONS(2910), - [sym__code_block_begin] = ACTIONS(2910), - [sym_list_marker_dash] = ACTIONS(2910), - [sym_list_marker_star] = ACTIONS(2910), - [sym_list_marker_plus] = ACTIONS(2910), - [sym__list_marker_task_begin] = ACTIONS(2910), - [sym_list_marker_definition] = ACTIONS(2910), - [sym_list_marker_decimal_period] = ACTIONS(2910), - [sym_list_marker_lower_alpha_period] = ACTIONS(2910), - [sym_list_marker_upper_alpha_period] = ACTIONS(2910), - [sym_list_marker_lower_roman_period] = ACTIONS(2910), - [sym_list_marker_upper_roman_period] = ACTIONS(2910), - [sym_list_marker_decimal_paren] = ACTIONS(2910), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2910), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2910), - [sym_list_marker_lower_roman_paren] = ACTIONS(2910), - [sym_list_marker_upper_roman_paren] = ACTIONS(2910), - [sym_list_marker_decimal_parens] = ACTIONS(2910), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2910), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2910), - [sym_list_marker_lower_roman_parens] = ACTIONS(2910), - [sym_list_marker_upper_roman_parens] = ACTIONS(2910), - [sym__block_quote_begin] = ACTIONS(2910), - [sym__block_quote_continuation] = ACTIONS(2910), - [sym__thematic_break_dash] = ACTIONS(2910), - [sym__thematic_break_star] = ACTIONS(2910), - [sym__footnote_begin] = ACTIONS(2910), - [sym__verbatim_begin] = ACTIONS(2910), - }, - [357] = { - [ts_builtin_sym_end] = ACTIONS(2870), - [anon_sym_LBRACK] = ACTIONS(2868), - [anon_sym_PIPE] = ACTIONS(2870), - [anon_sym_LBRACE] = ACTIONS(2868), - [sym__whitespace1] = ACTIONS(2870), - [anon_sym_BSLASH] = ACTIONS(2868), - [sym_quotation_marks] = ACTIONS(2870), - [sym_ellipsis] = ACTIONS(2870), - [sym_em_dash] = ACTIONS(2870), - [sym_en_dash] = ACTIONS(2868), - [sym_backslash_escape] = ACTIONS(2868), - [anon_sym_LT] = ACTIONS(2870), - [anon_sym_LBRACE_] = ACTIONS(2870), - [anon_sym__] = ACTIONS(2870), - [anon_sym_LBRACE_STAR] = ACTIONS(2870), - [anon_sym_STAR] = ACTIONS(2870), - [anon_sym_LBRACE_EQ] = ACTIONS(2870), - [anon_sym_LBRACE_PLUS] = ACTIONS(2870), - [anon_sym_LBRACE_DASH] = ACTIONS(2870), - [sym_symbol] = ACTIONS(2870), - [anon_sym_LBRACE_CARET] = ACTIONS(2870), - [anon_sym_CARET] = ACTIONS(2870), - [anon_sym_LBRACE_TILDE] = ACTIONS(2870), - [anon_sym_TILDE] = ACTIONS(2870), - [anon_sym_LBRACK_CARET] = ACTIONS(2870), - [anon_sym_BANG_LBRACK] = ACTIONS(2870), - [anon_sym_DOLLAR] = ACTIONS(2870), - [anon_sym_TODO] = ACTIONS(2870), - [anon_sym_WIP] = ACTIONS(2870), - [anon_sym_NOTE] = ACTIONS(2870), - [anon_sym_INFO] = ACTIONS(2870), - [anon_sym_XXX] = ACTIONS(2870), - [sym_fixme] = ACTIONS(2870), - [aux_sym__text_token1] = ACTIONS(2868), - [sym__newline] = ACTIONS(2870), - [sym__newline_inline] = ACTIONS(2870), - [sym__heading1_begin] = ACTIONS(2870), - [sym__heading2_begin] = ACTIONS(2870), - [sym__heading3_begin] = ACTIONS(2870), - [sym__heading4_begin] = ACTIONS(2870), - [sym__heading5_begin] = ACTIONS(2870), - [sym__heading6_begin] = ACTIONS(2870), - [sym__div_begin] = ACTIONS(2870), - [sym__div_end] = ACTIONS(2942), - [sym__code_block_begin] = ACTIONS(2870), - [sym_list_marker_dash] = ACTIONS(2870), - [sym_list_marker_star] = ACTIONS(2870), - [sym_list_marker_plus] = ACTIONS(2870), - [sym__list_marker_task_begin] = ACTIONS(2870), - [sym_list_marker_definition] = ACTIONS(2870), - [sym_list_marker_decimal_period] = ACTIONS(2870), - [sym_list_marker_lower_alpha_period] = ACTIONS(2870), - [sym_list_marker_upper_alpha_period] = ACTIONS(2870), - [sym_list_marker_lower_roman_period] = ACTIONS(2870), - [sym_list_marker_upper_roman_period] = ACTIONS(2870), - [sym_list_marker_decimal_paren] = ACTIONS(2870), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2870), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2870), - [sym_list_marker_lower_roman_paren] = ACTIONS(2870), - [sym_list_marker_upper_roman_paren] = ACTIONS(2870), - [sym_list_marker_decimal_parens] = ACTIONS(2870), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2870), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2870), - [sym_list_marker_lower_roman_parens] = ACTIONS(2870), - [sym_list_marker_upper_roman_parens] = ACTIONS(2870), - [sym__block_quote_begin] = ACTIONS(2870), - [sym__block_quote_continuation] = ACTIONS(2870), - [sym__thematic_break_dash] = ACTIONS(2870), - [sym__thematic_break_star] = ACTIONS(2870), - [sym__footnote_begin] = ACTIONS(2870), - [sym__verbatim_begin] = ACTIONS(2870), - }, - [358] = { - [ts_builtin_sym_end] = ACTIONS(2856), - [anon_sym_LBRACK] = ACTIONS(2854), - [anon_sym_PIPE] = ACTIONS(2856), - [anon_sym_LBRACE] = ACTIONS(2854), - [sym__whitespace1] = ACTIONS(2856), - [anon_sym_BSLASH] = ACTIONS(2854), - [sym_quotation_marks] = ACTIONS(2856), - [sym_ellipsis] = ACTIONS(2856), - [sym_em_dash] = ACTIONS(2856), - [sym_en_dash] = ACTIONS(2854), - [sym_backslash_escape] = ACTIONS(2854), - [anon_sym_LT] = ACTIONS(2856), - [anon_sym_LBRACE_] = ACTIONS(2856), - [anon_sym__] = ACTIONS(2856), - [anon_sym_LBRACE_STAR] = ACTIONS(2856), - [anon_sym_STAR] = ACTIONS(2856), - [anon_sym_LBRACE_EQ] = ACTIONS(2856), - [anon_sym_LBRACE_PLUS] = ACTIONS(2856), - [anon_sym_LBRACE_DASH] = ACTIONS(2856), - [sym_symbol] = ACTIONS(2856), - [anon_sym_LBRACE_CARET] = ACTIONS(2856), - [anon_sym_CARET] = ACTIONS(2856), - [anon_sym_LBRACE_TILDE] = ACTIONS(2856), - [anon_sym_TILDE] = ACTIONS(2856), - [anon_sym_LBRACK_CARET] = ACTIONS(2856), - [anon_sym_BANG_LBRACK] = ACTIONS(2856), - [anon_sym_DOLLAR] = ACTIONS(2856), - [anon_sym_TODO] = ACTIONS(2856), - [anon_sym_WIP] = ACTIONS(2856), - [anon_sym_NOTE] = ACTIONS(2856), - [anon_sym_INFO] = ACTIONS(2856), - [anon_sym_XXX] = ACTIONS(2856), - [sym_fixme] = ACTIONS(2856), - [aux_sym__text_token1] = ACTIONS(2854), - [sym__newline] = ACTIONS(2856), - [sym__newline_inline] = ACTIONS(2856), - [sym__heading1_begin] = ACTIONS(2856), - [sym__heading2_begin] = ACTIONS(2856), - [sym__heading3_begin] = ACTIONS(2856), - [sym__heading4_begin] = ACTIONS(2856), - [sym__heading5_begin] = ACTIONS(2856), - [sym__heading6_begin] = ACTIONS(2856), - [sym__div_begin] = ACTIONS(2856), - [sym__code_block_begin] = ACTIONS(2856), - [sym_list_marker_dash] = ACTIONS(2856), - [sym_list_marker_star] = ACTIONS(2856), - [sym_list_marker_plus] = ACTIONS(2856), - [sym__list_marker_task_begin] = ACTIONS(2856), - [sym_list_marker_definition] = ACTIONS(2856), - [sym_list_marker_decimal_period] = ACTIONS(2856), - [sym_list_marker_lower_alpha_period] = ACTIONS(2856), - [sym_list_marker_upper_alpha_period] = ACTIONS(2856), - [sym_list_marker_lower_roman_period] = ACTIONS(2856), - [sym_list_marker_upper_roman_period] = ACTIONS(2856), - [sym_list_marker_decimal_paren] = ACTIONS(2856), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2856), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2856), - [sym_list_marker_lower_roman_paren] = ACTIONS(2856), - [sym_list_marker_upper_roman_paren] = ACTIONS(2856), - [sym_list_marker_decimal_parens] = ACTIONS(2856), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2856), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2856), - [sym_list_marker_lower_roman_parens] = ACTIONS(2856), - [sym_list_marker_upper_roman_parens] = ACTIONS(2856), - [sym__block_quote_begin] = ACTIONS(2856), - [sym__block_quote_continuation] = ACTIONS(2856), - [sym__thematic_break_dash] = ACTIONS(2856), - [sym__thematic_break_star] = ACTIONS(2856), - [sym__footnote_begin] = ACTIONS(2856), - [sym__table_caption_begin] = ACTIONS(2856), - [sym__verbatim_begin] = ACTIONS(2856), - }, - [359] = { - [anon_sym_LBRACK] = ACTIONS(2914), - [anon_sym_PIPE] = ACTIONS(2916), - [anon_sym_LBRACE] = ACTIONS(2914), - [sym__whitespace1] = ACTIONS(2916), - [anon_sym_BSLASH] = ACTIONS(2914), - [sym_quotation_marks] = ACTIONS(2916), - [sym_ellipsis] = ACTIONS(2916), - [sym_em_dash] = ACTIONS(2916), - [sym_en_dash] = ACTIONS(2914), - [sym_backslash_escape] = ACTIONS(2914), - [anon_sym_LT] = ACTIONS(2916), - [anon_sym_LBRACE_] = ACTIONS(2916), - [anon_sym__] = ACTIONS(2916), - [anon_sym_LBRACE_STAR] = ACTIONS(2916), - [anon_sym_STAR] = ACTIONS(2916), - [anon_sym_LBRACE_EQ] = ACTIONS(2916), - [anon_sym_LBRACE_PLUS] = ACTIONS(2916), - [anon_sym_LBRACE_DASH] = ACTIONS(2916), - [sym_symbol] = ACTIONS(2916), - [anon_sym_LBRACE_CARET] = ACTIONS(2916), - [anon_sym_CARET] = ACTIONS(2916), - [anon_sym_LBRACE_TILDE] = ACTIONS(2916), - [anon_sym_TILDE] = ACTIONS(2916), - [anon_sym_LBRACK_CARET] = ACTIONS(2916), - [anon_sym_BANG_LBRACK] = ACTIONS(2916), - [anon_sym_DOLLAR] = ACTIONS(2916), - [anon_sym_TODO] = ACTIONS(2916), - [anon_sym_WIP] = ACTIONS(2916), - [anon_sym_NOTE] = ACTIONS(2916), - [anon_sym_INFO] = ACTIONS(2916), - [anon_sym_XXX] = ACTIONS(2916), - [sym_fixme] = ACTIONS(2916), - [aux_sym__text_token1] = ACTIONS(2914), - [sym__block_close] = ACTIONS(2916), - [sym__eof_or_newline] = ACTIONS(2944), - [sym__newline] = ACTIONS(2916), - [sym__newline_inline] = ACTIONS(2916), - [sym__heading1_begin] = ACTIONS(2916), - [sym__heading2_begin] = ACTIONS(2916), - [sym__heading3_begin] = ACTIONS(2916), - [sym__heading4_begin] = ACTIONS(2916), - [sym__heading5_begin] = ACTIONS(2916), - [sym__heading6_begin] = ACTIONS(2916), - [sym__div_begin] = ACTIONS(2916), - [sym__code_block_begin] = ACTIONS(2916), - [sym_list_marker_dash] = ACTIONS(2916), - [sym_list_marker_star] = ACTIONS(2916), - [sym_list_marker_plus] = ACTIONS(2916), - [sym__list_marker_task_begin] = ACTIONS(2916), - [sym_list_marker_definition] = ACTIONS(2916), - [sym_list_marker_decimal_period] = ACTIONS(2916), - [sym_list_marker_lower_alpha_period] = ACTIONS(2916), - [sym_list_marker_upper_alpha_period] = ACTIONS(2916), - [sym_list_marker_lower_roman_period] = ACTIONS(2916), - [sym_list_marker_upper_roman_period] = ACTIONS(2916), - [sym_list_marker_decimal_paren] = ACTIONS(2916), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2916), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2916), - [sym_list_marker_lower_roman_paren] = ACTIONS(2916), - [sym_list_marker_upper_roman_paren] = ACTIONS(2916), - [sym_list_marker_decimal_parens] = ACTIONS(2916), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2916), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2916), - [sym_list_marker_lower_roman_parens] = ACTIONS(2916), - [sym_list_marker_upper_roman_parens] = ACTIONS(2916), - [sym__block_quote_begin] = ACTIONS(2916), - [sym__block_quote_continuation] = ACTIONS(2916), - [sym__thematic_break_dash] = ACTIONS(2916), - [sym__thematic_break_star] = ACTIONS(2916), - [sym__footnote_begin] = ACTIONS(2916), - [sym__verbatim_begin] = ACTIONS(2916), - }, - [360] = { - [ts_builtin_sym_end] = ACTIONS(2850), - [anon_sym_LBRACK] = ACTIONS(2848), - [anon_sym_PIPE] = ACTIONS(2850), - [anon_sym_LBRACE] = ACTIONS(2848), - [sym__whitespace1] = ACTIONS(2850), - [anon_sym_BSLASH] = ACTIONS(2848), - [sym_quotation_marks] = ACTIONS(2850), - [sym_ellipsis] = ACTIONS(2850), - [sym_em_dash] = ACTIONS(2850), - [sym_en_dash] = ACTIONS(2848), - [sym_backslash_escape] = ACTIONS(2848), - [anon_sym_LT] = ACTIONS(2850), - [anon_sym_LBRACE_] = ACTIONS(2850), - [anon_sym__] = ACTIONS(2850), - [anon_sym_LBRACE_STAR] = ACTIONS(2850), - [anon_sym_STAR] = ACTIONS(2850), - [anon_sym_LBRACE_EQ] = ACTIONS(2850), - [anon_sym_LBRACE_PLUS] = ACTIONS(2850), - [anon_sym_LBRACE_DASH] = ACTIONS(2850), - [sym_symbol] = ACTIONS(2850), - [anon_sym_LBRACE_CARET] = ACTIONS(2850), - [anon_sym_CARET] = ACTIONS(2850), - [anon_sym_LBRACE_TILDE] = ACTIONS(2850), - [anon_sym_TILDE] = ACTIONS(2850), - [anon_sym_LBRACK_CARET] = ACTIONS(2850), - [anon_sym_BANG_LBRACK] = ACTIONS(2850), - [anon_sym_DOLLAR] = ACTIONS(2850), - [anon_sym_TODO] = ACTIONS(2850), - [anon_sym_WIP] = ACTIONS(2850), - [anon_sym_NOTE] = ACTIONS(2850), - [anon_sym_INFO] = ACTIONS(2850), - [anon_sym_XXX] = ACTIONS(2850), - [sym_fixme] = ACTIONS(2850), - [aux_sym__text_token1] = ACTIONS(2848), - [sym__newline] = ACTIONS(2850), - [sym__newline_inline] = ACTIONS(2850), - [sym__heading1_begin] = ACTIONS(2850), - [sym__heading2_begin] = ACTIONS(2850), - [sym__heading3_begin] = ACTIONS(2850), - [sym__heading4_begin] = ACTIONS(2850), - [sym__heading5_begin] = ACTIONS(2850), - [sym__heading6_begin] = ACTIONS(2850), - [sym__div_begin] = ACTIONS(2850), - [sym__code_block_begin] = ACTIONS(2850), - [sym__code_block_end] = ACTIONS(2946), - [sym_list_marker_dash] = ACTIONS(2850), - [sym_list_marker_star] = ACTIONS(2850), - [sym_list_marker_plus] = ACTIONS(2850), - [sym__list_marker_task_begin] = ACTIONS(2850), - [sym_list_marker_definition] = ACTIONS(2850), - [sym_list_marker_decimal_period] = ACTIONS(2850), - [sym_list_marker_lower_alpha_period] = ACTIONS(2850), - [sym_list_marker_upper_alpha_period] = ACTIONS(2850), - [sym_list_marker_lower_roman_period] = ACTIONS(2850), - [sym_list_marker_upper_roman_period] = ACTIONS(2850), - [sym_list_marker_decimal_paren] = ACTIONS(2850), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2850), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2850), - [sym_list_marker_lower_roman_paren] = ACTIONS(2850), - [sym_list_marker_upper_roman_paren] = ACTIONS(2850), - [sym_list_marker_decimal_parens] = ACTIONS(2850), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2850), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2850), - [sym_list_marker_lower_roman_parens] = ACTIONS(2850), - [sym_list_marker_upper_roman_parens] = ACTIONS(2850), - [sym__block_quote_begin] = ACTIONS(2850), - [sym__block_quote_continuation] = ACTIONS(2850), - [sym__thematic_break_dash] = ACTIONS(2850), - [sym__thematic_break_star] = ACTIONS(2850), - [sym__footnote_begin] = ACTIONS(2850), - [sym__verbatim_begin] = ACTIONS(2850), - }, - [361] = { - [ts_builtin_sym_end] = ACTIONS(2720), - [anon_sym_LBRACK] = ACTIONS(2718), - [anon_sym_PIPE] = ACTIONS(2720), - [anon_sym_LBRACE] = ACTIONS(2718), - [sym__whitespace1] = ACTIONS(2720), - [anon_sym_BSLASH] = ACTIONS(2718), - [sym_quotation_marks] = ACTIONS(2720), - [sym_ellipsis] = ACTIONS(2720), - [sym_em_dash] = ACTIONS(2720), - [sym_en_dash] = ACTIONS(2718), - [sym_backslash_escape] = ACTIONS(2718), - [anon_sym_LT] = ACTIONS(2720), - [anon_sym_LBRACE_] = ACTIONS(2720), - [anon_sym__] = ACTIONS(2720), - [anon_sym_LBRACE_STAR] = ACTIONS(2720), - [anon_sym_STAR] = ACTIONS(2720), - [anon_sym_LBRACE_EQ] = ACTIONS(2720), - [anon_sym_LBRACE_PLUS] = ACTIONS(2720), - [anon_sym_LBRACE_DASH] = ACTIONS(2720), - [sym_symbol] = ACTIONS(2720), - [anon_sym_LBRACE_CARET] = ACTIONS(2720), - [anon_sym_CARET] = ACTIONS(2720), - [anon_sym_LBRACE_TILDE] = ACTIONS(2720), - [anon_sym_TILDE] = ACTIONS(2720), - [anon_sym_LBRACK_CARET] = ACTIONS(2720), - [anon_sym_BANG_LBRACK] = ACTIONS(2720), - [anon_sym_DOLLAR] = ACTIONS(2720), - [anon_sym_TODO] = ACTIONS(2720), - [anon_sym_WIP] = ACTIONS(2720), - [anon_sym_NOTE] = ACTIONS(2720), - [anon_sym_INFO] = ACTIONS(2720), - [anon_sym_XXX] = ACTIONS(2720), - [sym_fixme] = ACTIONS(2720), - [aux_sym__text_token1] = ACTIONS(2718), - [sym__newline] = ACTIONS(2720), - [sym__newline_inline] = ACTIONS(2720), - [sym__heading1_begin] = ACTIONS(2720), - [sym__heading2_begin] = ACTIONS(2720), - [sym__heading3_begin] = ACTIONS(2720), - [sym__heading4_begin] = ACTIONS(2720), - [sym__heading5_begin] = ACTIONS(2720), - [sym__heading6_begin] = ACTIONS(2720), - [sym__div_begin] = ACTIONS(2720), - [sym__code_block_begin] = ACTIONS(2720), - [sym__code_block_end] = ACTIONS(2948), - [sym_list_marker_dash] = ACTIONS(2720), - [sym_list_marker_star] = ACTIONS(2720), - [sym_list_marker_plus] = ACTIONS(2720), - [sym__list_marker_task_begin] = ACTIONS(2720), - [sym_list_marker_definition] = ACTIONS(2720), - [sym_list_marker_decimal_period] = ACTIONS(2720), - [sym_list_marker_lower_alpha_period] = ACTIONS(2720), - [sym_list_marker_upper_alpha_period] = ACTIONS(2720), - [sym_list_marker_lower_roman_period] = ACTIONS(2720), - [sym_list_marker_upper_roman_period] = ACTIONS(2720), - [sym_list_marker_decimal_paren] = ACTIONS(2720), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2720), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2720), - [sym_list_marker_lower_roman_paren] = ACTIONS(2720), - [sym_list_marker_upper_roman_paren] = ACTIONS(2720), - [sym_list_marker_decimal_parens] = ACTIONS(2720), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2720), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2720), - [sym_list_marker_lower_roman_parens] = ACTIONS(2720), - [sym_list_marker_upper_roman_parens] = ACTIONS(2720), - [sym__block_quote_begin] = ACTIONS(2720), - [sym__block_quote_continuation] = ACTIONS(2720), - [sym__thematic_break_dash] = ACTIONS(2720), - [sym__thematic_break_star] = ACTIONS(2720), - [sym__footnote_begin] = ACTIONS(2720), - [sym__verbatim_begin] = ACTIONS(2720), - }, - [362] = { - [ts_builtin_sym_end] = ACTIONS(2838), - [anon_sym_LBRACK] = ACTIONS(2836), - [anon_sym_PIPE] = ACTIONS(2838), - [anon_sym_LBRACE] = ACTIONS(2836), - [sym__whitespace1] = ACTIONS(2838), - [anon_sym_BSLASH] = ACTIONS(2836), - [sym_quotation_marks] = ACTIONS(2838), - [sym_ellipsis] = ACTIONS(2838), - [sym_em_dash] = ACTIONS(2838), - [sym_en_dash] = ACTIONS(2836), - [sym_backslash_escape] = ACTIONS(2836), - [anon_sym_LT] = ACTIONS(2838), - [anon_sym_LBRACE_] = ACTIONS(2838), - [anon_sym__] = ACTIONS(2838), - [anon_sym_LBRACE_STAR] = ACTIONS(2838), - [anon_sym_STAR] = ACTIONS(2838), - [anon_sym_LBRACE_EQ] = ACTIONS(2838), - [anon_sym_LBRACE_PLUS] = ACTIONS(2838), - [anon_sym_LBRACE_DASH] = ACTIONS(2838), - [sym_symbol] = ACTIONS(2838), - [anon_sym_LBRACE_CARET] = ACTIONS(2838), - [anon_sym_CARET] = ACTIONS(2838), - [anon_sym_LBRACE_TILDE] = ACTIONS(2838), - [anon_sym_TILDE] = ACTIONS(2838), - [anon_sym_LBRACK_CARET] = ACTIONS(2838), - [anon_sym_BANG_LBRACK] = ACTIONS(2838), - [anon_sym_DOLLAR] = ACTIONS(2838), - [anon_sym_TODO] = ACTIONS(2838), - [anon_sym_WIP] = ACTIONS(2838), - [anon_sym_NOTE] = ACTIONS(2838), - [anon_sym_INFO] = ACTIONS(2838), - [anon_sym_XXX] = ACTIONS(2838), - [sym_fixme] = ACTIONS(2838), - [aux_sym__text_token1] = ACTIONS(2836), - [sym__newline] = ACTIONS(2838), - [sym__newline_inline] = ACTIONS(2838), - [sym__heading1_begin] = ACTIONS(2838), - [sym__heading2_begin] = ACTIONS(2838), - [sym__heading3_begin] = ACTIONS(2838), - [sym__heading4_begin] = ACTIONS(2838), - [sym__heading5_begin] = ACTIONS(2838), - [sym__heading6_begin] = ACTIONS(2838), - [sym__div_begin] = ACTIONS(2838), - [sym__code_block_begin] = ACTIONS(2838), - [sym__code_block_end] = ACTIONS(2950), - [sym_list_marker_dash] = ACTIONS(2838), - [sym_list_marker_star] = ACTIONS(2838), - [sym_list_marker_plus] = ACTIONS(2838), - [sym__list_marker_task_begin] = ACTIONS(2838), - [sym_list_marker_definition] = ACTIONS(2838), - [sym_list_marker_decimal_period] = ACTIONS(2838), - [sym_list_marker_lower_alpha_period] = ACTIONS(2838), - [sym_list_marker_upper_alpha_period] = ACTIONS(2838), - [sym_list_marker_lower_roman_period] = ACTIONS(2838), - [sym_list_marker_upper_roman_period] = ACTIONS(2838), - [sym_list_marker_decimal_paren] = ACTIONS(2838), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2838), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2838), - [sym_list_marker_lower_roman_paren] = ACTIONS(2838), - [sym_list_marker_upper_roman_paren] = ACTIONS(2838), - [sym_list_marker_decimal_parens] = ACTIONS(2838), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2838), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2838), - [sym_list_marker_lower_roman_parens] = ACTIONS(2838), - [sym_list_marker_upper_roman_parens] = ACTIONS(2838), - [sym__block_quote_begin] = ACTIONS(2838), - [sym__block_quote_continuation] = ACTIONS(2838), - [sym__thematic_break_dash] = ACTIONS(2838), - [sym__thematic_break_star] = ACTIONS(2838), - [sym__footnote_begin] = ACTIONS(2838), - [sym__verbatim_begin] = ACTIONS(2838), - }, - [363] = { - [ts_builtin_sym_end] = ACTIONS(2952), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_PIPE] = ACTIONS(2952), - [anon_sym_LBRACE] = ACTIONS(2954), - [sym__whitespace1] = ACTIONS(2952), - [anon_sym_BSLASH] = ACTIONS(2954), - [sym_quotation_marks] = ACTIONS(2952), - [sym_ellipsis] = ACTIONS(2952), - [sym_em_dash] = ACTIONS(2952), - [sym_en_dash] = ACTIONS(2954), - [sym_backslash_escape] = ACTIONS(2954), - [anon_sym_LT] = ACTIONS(2952), - [anon_sym_LBRACE_] = ACTIONS(2952), - [anon_sym__] = ACTIONS(2952), - [anon_sym_LBRACE_STAR] = ACTIONS(2952), - [anon_sym_STAR] = ACTIONS(2952), - [anon_sym_LBRACE_EQ] = ACTIONS(2952), - [anon_sym_LBRACE_PLUS] = ACTIONS(2952), - [anon_sym_LBRACE_DASH] = ACTIONS(2952), - [sym_symbol] = ACTIONS(2952), - [anon_sym_LBRACE_CARET] = ACTIONS(2952), - [anon_sym_CARET] = ACTIONS(2952), - [anon_sym_LBRACE_TILDE] = ACTIONS(2952), - [anon_sym_TILDE] = ACTIONS(2952), - [anon_sym_LBRACK_CARET] = ACTIONS(2952), - [anon_sym_BANG_LBRACK] = ACTIONS(2952), - [anon_sym_DOLLAR] = ACTIONS(2952), - [anon_sym_TODO] = ACTIONS(2952), - [anon_sym_WIP] = ACTIONS(2952), - [anon_sym_NOTE] = ACTIONS(2952), - [anon_sym_INFO] = ACTIONS(2952), - [anon_sym_XXX] = ACTIONS(2952), - [sym_fixme] = ACTIONS(2952), - [aux_sym__text_token1] = ACTIONS(2954), - [sym__newline] = ACTIONS(2952), - [sym__newline_inline] = ACTIONS(2952), - [sym__heading1_begin] = ACTIONS(2952), - [sym__heading2_begin] = ACTIONS(2952), - [sym__heading3_begin] = ACTIONS(2952), - [sym__heading4_begin] = ACTIONS(2952), - [sym__heading5_begin] = ACTIONS(2952), - [sym__heading6_begin] = ACTIONS(2952), - [sym__div_begin] = ACTIONS(2952), - [sym__code_block_begin] = ACTIONS(2952), - [sym_list_marker_dash] = ACTIONS(2952), - [sym_list_marker_star] = ACTIONS(2952), - [sym_list_marker_plus] = ACTIONS(2952), - [sym__list_marker_task_begin] = ACTIONS(2952), - [sym_list_marker_definition] = ACTIONS(2952), - [sym_list_marker_decimal_period] = ACTIONS(2952), - [sym_list_marker_lower_alpha_period] = ACTIONS(2952), - [sym_list_marker_upper_alpha_period] = ACTIONS(2952), - [sym_list_marker_lower_roman_period] = ACTIONS(2952), - [sym_list_marker_upper_roman_period] = ACTIONS(2952), - [sym_list_marker_decimal_paren] = ACTIONS(2952), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2952), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2952), - [sym_list_marker_lower_roman_paren] = ACTIONS(2952), - [sym_list_marker_upper_roman_paren] = ACTIONS(2952), - [sym_list_marker_decimal_parens] = ACTIONS(2952), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2952), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2952), - [sym_list_marker_lower_roman_parens] = ACTIONS(2952), - [sym_list_marker_upper_roman_parens] = ACTIONS(2952), - [sym__block_quote_begin] = ACTIONS(2952), - [sym__block_quote_continuation] = ACTIONS(2952), - [sym__thematic_break_dash] = ACTIONS(2952), - [sym__thematic_break_star] = ACTIONS(2952), - [sym__footnote_begin] = ACTIONS(2952), - [sym__verbatim_begin] = ACTIONS(2952), - }, - [364] = { - [anon_sym_LBRACK] = ACTIONS(2956), - [anon_sym_PIPE] = ACTIONS(2958), - [anon_sym_LBRACE] = ACTIONS(2956), - [sym__whitespace1] = ACTIONS(2958), - [anon_sym_BSLASH] = ACTIONS(2956), - [sym_quotation_marks] = ACTIONS(2958), - [sym_ellipsis] = ACTIONS(2958), - [sym_em_dash] = ACTIONS(2958), - [sym_en_dash] = ACTIONS(2956), - [sym_backslash_escape] = ACTIONS(2956), - [anon_sym_LT] = ACTIONS(2958), - [anon_sym_LBRACE_] = ACTIONS(2958), - [anon_sym__] = ACTIONS(2958), - [anon_sym_LBRACE_STAR] = ACTIONS(2958), - [anon_sym_STAR] = ACTIONS(2958), - [anon_sym_LBRACE_EQ] = ACTIONS(2958), - [anon_sym_LBRACE_PLUS] = ACTIONS(2958), - [anon_sym_LBRACE_DASH] = ACTIONS(2958), - [sym_symbol] = ACTIONS(2958), - [anon_sym_LBRACE_CARET] = ACTIONS(2958), - [anon_sym_CARET] = ACTIONS(2958), - [anon_sym_LBRACE_TILDE] = ACTIONS(2958), - [anon_sym_TILDE] = ACTIONS(2958), - [anon_sym_LBRACK_CARET] = ACTIONS(2958), - [anon_sym_BANG_LBRACK] = ACTIONS(2958), - [anon_sym_DOLLAR] = ACTIONS(2958), - [anon_sym_TODO] = ACTIONS(2958), - [anon_sym_WIP] = ACTIONS(2958), - [anon_sym_NOTE] = ACTIONS(2958), - [anon_sym_INFO] = ACTIONS(2958), - [anon_sym_XXX] = ACTIONS(2958), - [sym_fixme] = ACTIONS(2958), - [aux_sym__text_token1] = ACTIONS(2956), - [sym__block_close] = ACTIONS(2958), - [sym__newline] = ACTIONS(2958), - [sym__newline_inline] = ACTIONS(2958), - [sym__heading1_begin] = ACTIONS(2958), - [sym__heading2_begin] = ACTIONS(2958), - [sym__heading3_begin] = ACTIONS(2958), - [sym__heading4_begin] = ACTIONS(2958), - [sym__heading5_begin] = ACTIONS(2958), - [sym__heading6_begin] = ACTIONS(2958), - [sym__div_begin] = ACTIONS(2958), - [sym__code_block_begin] = ACTIONS(2958), - [sym_list_marker_dash] = ACTIONS(2958), - [sym_list_marker_star] = ACTIONS(2958), - [sym_list_marker_plus] = ACTIONS(2958), - [sym__list_marker_task_begin] = ACTIONS(2958), - [sym_list_marker_definition] = ACTIONS(2958), - [sym_list_marker_decimal_period] = ACTIONS(2958), - [sym_list_marker_lower_alpha_period] = ACTIONS(2958), - [sym_list_marker_upper_alpha_period] = ACTIONS(2958), - [sym_list_marker_lower_roman_period] = ACTIONS(2958), - [sym_list_marker_upper_roman_period] = ACTIONS(2958), - [sym_list_marker_decimal_paren] = ACTIONS(2958), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2958), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2958), - [sym_list_marker_lower_roman_paren] = ACTIONS(2958), - [sym_list_marker_upper_roman_paren] = ACTIONS(2958), - [sym_list_marker_decimal_parens] = ACTIONS(2958), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2958), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2958), - [sym_list_marker_lower_roman_parens] = ACTIONS(2958), - [sym_list_marker_upper_roman_parens] = ACTIONS(2958), - [sym__block_quote_begin] = ACTIONS(2958), - [sym__block_quote_continuation] = ACTIONS(2958), - [sym__thematic_break_dash] = ACTIONS(2958), - [sym__thematic_break_star] = ACTIONS(2958), - [sym__footnote_begin] = ACTIONS(2958), - [sym__verbatim_begin] = ACTIONS(2958), - }, - [365] = { - [anon_sym_LBRACK] = ACTIONS(2960), - [anon_sym_PIPE] = ACTIONS(2962), - [anon_sym_LBRACE] = ACTIONS(2960), - [sym__whitespace1] = ACTIONS(2962), - [anon_sym_BSLASH] = ACTIONS(2960), - [sym_quotation_marks] = ACTIONS(2962), - [sym_ellipsis] = ACTIONS(2962), - [sym_em_dash] = ACTIONS(2962), - [sym_en_dash] = ACTIONS(2960), - [sym_backslash_escape] = ACTIONS(2960), - [anon_sym_LT] = ACTIONS(2962), - [anon_sym_LBRACE_] = ACTIONS(2962), - [anon_sym__] = ACTIONS(2962), - [anon_sym_LBRACE_STAR] = ACTIONS(2962), - [anon_sym_STAR] = ACTIONS(2962), - [anon_sym_LBRACE_EQ] = ACTIONS(2962), - [anon_sym_LBRACE_PLUS] = ACTIONS(2962), - [anon_sym_LBRACE_DASH] = ACTIONS(2962), - [sym_symbol] = ACTIONS(2962), - [anon_sym_LBRACE_CARET] = ACTIONS(2962), - [anon_sym_CARET] = ACTIONS(2962), - [anon_sym_LBRACE_TILDE] = ACTIONS(2962), - [anon_sym_TILDE] = ACTIONS(2962), - [anon_sym_LBRACK_CARET] = ACTIONS(2962), - [anon_sym_BANG_LBRACK] = ACTIONS(2962), - [anon_sym_DOLLAR] = ACTIONS(2962), - [anon_sym_TODO] = ACTIONS(2962), - [anon_sym_WIP] = ACTIONS(2962), - [anon_sym_NOTE] = ACTIONS(2962), - [anon_sym_INFO] = ACTIONS(2962), - [anon_sym_XXX] = ACTIONS(2962), - [sym_fixme] = ACTIONS(2962), - [aux_sym__text_token1] = ACTIONS(2960), - [sym__block_close] = ACTIONS(2962), - [sym__newline] = ACTIONS(2962), - [sym__newline_inline] = ACTIONS(2962), - [sym__heading1_begin] = ACTIONS(2962), - [sym__heading2_begin] = ACTIONS(2962), - [sym__heading3_begin] = ACTIONS(2962), - [sym__heading4_begin] = ACTIONS(2962), - [sym__heading5_begin] = ACTIONS(2962), - [sym__heading6_begin] = ACTIONS(2962), - [sym__div_begin] = ACTIONS(2962), - [sym__code_block_begin] = ACTIONS(2962), - [sym_list_marker_dash] = ACTIONS(2962), - [sym_list_marker_star] = ACTIONS(2962), - [sym_list_marker_plus] = ACTIONS(2962), - [sym__list_marker_task_begin] = ACTIONS(2962), - [sym_list_marker_definition] = ACTIONS(2962), - [sym_list_marker_decimal_period] = ACTIONS(2962), - [sym_list_marker_lower_alpha_period] = ACTIONS(2962), - [sym_list_marker_upper_alpha_period] = ACTIONS(2962), - [sym_list_marker_lower_roman_period] = ACTIONS(2962), - [sym_list_marker_upper_roman_period] = ACTIONS(2962), - [sym_list_marker_decimal_paren] = ACTIONS(2962), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2962), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2962), - [sym_list_marker_lower_roman_paren] = ACTIONS(2962), - [sym_list_marker_upper_roman_paren] = ACTIONS(2962), - [sym_list_marker_decimal_parens] = ACTIONS(2962), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2962), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2962), - [sym_list_marker_lower_roman_parens] = ACTIONS(2962), - [sym_list_marker_upper_roman_parens] = ACTIONS(2962), - [sym__block_quote_begin] = ACTIONS(2962), - [sym__block_quote_continuation] = ACTIONS(2962), - [sym__thematic_break_dash] = ACTIONS(2962), - [sym__thematic_break_star] = ACTIONS(2962), - [sym__footnote_begin] = ACTIONS(2962), - [sym__verbatim_begin] = ACTIONS(2962), - }, - [366] = { - [anon_sym_LBRACK] = ACTIONS(2964), - [anon_sym_PIPE] = ACTIONS(2966), - [anon_sym_LBRACE] = ACTIONS(2964), - [sym__whitespace1] = ACTIONS(2966), - [anon_sym_BSLASH] = ACTIONS(2964), - [sym_quotation_marks] = ACTIONS(2966), - [sym_ellipsis] = ACTIONS(2966), - [sym_em_dash] = ACTIONS(2966), - [sym_en_dash] = ACTIONS(2964), - [sym_backslash_escape] = ACTIONS(2964), - [anon_sym_LT] = ACTIONS(2966), - [anon_sym_LBRACE_] = ACTIONS(2966), - [anon_sym__] = ACTIONS(2966), - [anon_sym_LBRACE_STAR] = ACTIONS(2966), - [anon_sym_STAR] = ACTIONS(2966), - [anon_sym_LBRACE_EQ] = ACTIONS(2966), - [anon_sym_LBRACE_PLUS] = ACTIONS(2966), - [anon_sym_LBRACE_DASH] = ACTIONS(2966), - [sym_symbol] = ACTIONS(2966), - [anon_sym_LBRACE_CARET] = ACTIONS(2966), - [anon_sym_CARET] = ACTIONS(2966), - [anon_sym_LBRACE_TILDE] = ACTIONS(2966), - [anon_sym_TILDE] = ACTIONS(2966), - [anon_sym_LBRACK_CARET] = ACTIONS(2966), - [anon_sym_BANG_LBRACK] = ACTIONS(2966), - [anon_sym_DOLLAR] = ACTIONS(2966), - [anon_sym_TODO] = ACTIONS(2966), - [anon_sym_WIP] = ACTIONS(2966), - [anon_sym_NOTE] = ACTIONS(2966), - [anon_sym_INFO] = ACTIONS(2966), - [anon_sym_XXX] = ACTIONS(2966), - [sym_fixme] = ACTIONS(2966), - [aux_sym__text_token1] = ACTIONS(2964), - [sym__block_close] = ACTIONS(2966), - [sym__newline] = ACTIONS(2966), - [sym__newline_inline] = ACTIONS(2966), - [sym__heading1_begin] = ACTIONS(2966), - [sym__heading2_begin] = ACTIONS(2966), - [sym__heading3_begin] = ACTIONS(2966), - [sym__heading4_begin] = ACTIONS(2966), - [sym__heading5_begin] = ACTIONS(2966), - [sym__heading6_begin] = ACTIONS(2966), - [sym__div_begin] = ACTIONS(2966), - [sym__code_block_begin] = ACTIONS(2966), - [sym_list_marker_dash] = ACTIONS(2966), - [sym_list_marker_star] = ACTIONS(2966), - [sym_list_marker_plus] = ACTIONS(2966), - [sym__list_marker_task_begin] = ACTIONS(2966), - [sym_list_marker_definition] = ACTIONS(2966), - [sym_list_marker_decimal_period] = ACTIONS(2966), - [sym_list_marker_lower_alpha_period] = ACTIONS(2966), - [sym_list_marker_upper_alpha_period] = ACTIONS(2966), - [sym_list_marker_lower_roman_period] = ACTIONS(2966), - [sym_list_marker_upper_roman_period] = ACTIONS(2966), - [sym_list_marker_decimal_paren] = ACTIONS(2966), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2966), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2966), - [sym_list_marker_lower_roman_paren] = ACTIONS(2966), - [sym_list_marker_upper_roman_paren] = ACTIONS(2966), - [sym_list_marker_decimal_parens] = ACTIONS(2966), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2966), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2966), - [sym_list_marker_lower_roman_parens] = ACTIONS(2966), - [sym_list_marker_upper_roman_parens] = ACTIONS(2966), - [sym__block_quote_begin] = ACTIONS(2966), - [sym__block_quote_continuation] = ACTIONS(2966), - [sym__thematic_break_dash] = ACTIONS(2966), - [sym__thematic_break_star] = ACTIONS(2966), - [sym__footnote_begin] = ACTIONS(2966), - [sym__verbatim_begin] = ACTIONS(2966), - }, - [367] = { - [anon_sym_LBRACK] = ACTIONS(2968), - [anon_sym_PIPE] = ACTIONS(2970), - [anon_sym_LBRACE] = ACTIONS(2968), - [sym__whitespace1] = ACTIONS(2970), - [anon_sym_BSLASH] = ACTIONS(2968), - [sym_quotation_marks] = ACTIONS(2970), - [sym_ellipsis] = ACTIONS(2970), - [sym_em_dash] = ACTIONS(2970), - [sym_en_dash] = ACTIONS(2968), - [sym_backslash_escape] = ACTIONS(2968), - [anon_sym_LT] = ACTIONS(2970), - [anon_sym_LBRACE_] = ACTIONS(2970), - [anon_sym__] = ACTIONS(2970), - [anon_sym_LBRACE_STAR] = ACTIONS(2970), - [anon_sym_STAR] = ACTIONS(2970), - [anon_sym_LBRACE_EQ] = ACTIONS(2970), - [anon_sym_LBRACE_PLUS] = ACTIONS(2970), - [anon_sym_LBRACE_DASH] = ACTIONS(2970), - [sym_symbol] = ACTIONS(2970), - [anon_sym_LBRACE_CARET] = ACTIONS(2970), - [anon_sym_CARET] = ACTIONS(2970), - [anon_sym_LBRACE_TILDE] = ACTIONS(2970), - [anon_sym_TILDE] = ACTIONS(2970), - [anon_sym_LBRACK_CARET] = ACTIONS(2970), - [anon_sym_BANG_LBRACK] = ACTIONS(2970), - [anon_sym_DOLLAR] = ACTIONS(2970), - [anon_sym_TODO] = ACTIONS(2970), - [anon_sym_WIP] = ACTIONS(2970), - [anon_sym_NOTE] = ACTIONS(2970), - [anon_sym_INFO] = ACTIONS(2970), - [anon_sym_XXX] = ACTIONS(2970), - [sym_fixme] = ACTIONS(2970), - [aux_sym__text_token1] = ACTIONS(2968), - [sym__block_close] = ACTIONS(2970), - [sym__newline] = ACTIONS(2970), - [sym__newline_inline] = ACTIONS(2970), - [sym__heading1_begin] = ACTIONS(2970), - [sym__heading2_begin] = ACTIONS(2970), - [sym__heading3_begin] = ACTIONS(2970), - [sym__heading4_begin] = ACTIONS(2970), - [sym__heading5_begin] = ACTIONS(2970), - [sym__heading6_begin] = ACTIONS(2970), - [sym__div_begin] = ACTIONS(2970), - [sym__code_block_begin] = ACTIONS(2970), - [sym_list_marker_dash] = ACTIONS(2970), - [sym_list_marker_star] = ACTIONS(2970), - [sym_list_marker_plus] = ACTIONS(2970), - [sym__list_marker_task_begin] = ACTIONS(2970), - [sym_list_marker_definition] = ACTIONS(2970), - [sym_list_marker_decimal_period] = ACTIONS(2970), - [sym_list_marker_lower_alpha_period] = ACTIONS(2970), - [sym_list_marker_upper_alpha_period] = ACTIONS(2970), - [sym_list_marker_lower_roman_period] = ACTIONS(2970), - [sym_list_marker_upper_roman_period] = ACTIONS(2970), - [sym_list_marker_decimal_paren] = ACTIONS(2970), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2970), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2970), - [sym_list_marker_lower_roman_paren] = ACTIONS(2970), - [sym_list_marker_upper_roman_paren] = ACTIONS(2970), - [sym_list_marker_decimal_parens] = ACTIONS(2970), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2970), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2970), - [sym_list_marker_lower_roman_parens] = ACTIONS(2970), - [sym_list_marker_upper_roman_parens] = ACTIONS(2970), - [sym__block_quote_begin] = ACTIONS(2970), - [sym__block_quote_continuation] = ACTIONS(2970), - [sym__thematic_break_dash] = ACTIONS(2970), - [sym__thematic_break_star] = ACTIONS(2970), - [sym__footnote_begin] = ACTIONS(2970), - [sym__verbatim_begin] = ACTIONS(2970), - }, - [368] = { - [anon_sym_LBRACK] = ACTIONS(2972), - [anon_sym_PIPE] = ACTIONS(2974), - [anon_sym_LBRACE] = ACTIONS(2972), - [sym__whitespace1] = ACTIONS(2974), - [anon_sym_BSLASH] = ACTIONS(2972), - [sym_quotation_marks] = ACTIONS(2974), - [sym_ellipsis] = ACTIONS(2974), - [sym_em_dash] = ACTIONS(2974), - [sym_en_dash] = ACTIONS(2972), - [sym_backslash_escape] = ACTIONS(2972), - [anon_sym_LT] = ACTIONS(2974), - [anon_sym_LBRACE_] = ACTIONS(2974), - [anon_sym__] = ACTIONS(2974), - [anon_sym_LBRACE_STAR] = ACTIONS(2974), - [anon_sym_STAR] = ACTIONS(2974), - [anon_sym_LBRACE_EQ] = ACTIONS(2974), - [anon_sym_LBRACE_PLUS] = ACTIONS(2974), - [anon_sym_LBRACE_DASH] = ACTIONS(2974), - [sym_symbol] = ACTIONS(2974), - [anon_sym_LBRACE_CARET] = ACTIONS(2974), - [anon_sym_CARET] = ACTIONS(2974), - [anon_sym_LBRACE_TILDE] = ACTIONS(2974), - [anon_sym_TILDE] = ACTIONS(2974), - [anon_sym_LBRACK_CARET] = ACTIONS(2974), - [anon_sym_BANG_LBRACK] = ACTIONS(2974), - [anon_sym_DOLLAR] = ACTIONS(2974), - [anon_sym_TODO] = ACTIONS(2974), - [anon_sym_WIP] = ACTIONS(2974), - [anon_sym_NOTE] = ACTIONS(2974), - [anon_sym_INFO] = ACTIONS(2974), - [anon_sym_XXX] = ACTIONS(2974), - [sym_fixme] = ACTIONS(2974), - [aux_sym__text_token1] = ACTIONS(2972), - [sym__block_close] = ACTIONS(2974), - [sym__newline] = ACTIONS(2974), - [sym__newline_inline] = ACTIONS(2974), - [sym__heading1_begin] = ACTIONS(2974), - [sym__heading2_begin] = ACTIONS(2974), - [sym__heading3_begin] = ACTIONS(2974), - [sym__heading4_begin] = ACTIONS(2974), - [sym__heading5_begin] = ACTIONS(2974), - [sym__heading6_begin] = ACTIONS(2974), - [sym__div_begin] = ACTIONS(2974), - [sym__code_block_begin] = ACTIONS(2974), - [sym_list_marker_dash] = ACTIONS(2974), - [sym_list_marker_star] = ACTIONS(2974), - [sym_list_marker_plus] = ACTIONS(2974), - [sym__list_marker_task_begin] = ACTIONS(2974), - [sym_list_marker_definition] = ACTIONS(2974), - [sym_list_marker_decimal_period] = ACTIONS(2974), - [sym_list_marker_lower_alpha_period] = ACTIONS(2974), - [sym_list_marker_upper_alpha_period] = ACTIONS(2974), - [sym_list_marker_lower_roman_period] = ACTIONS(2974), - [sym_list_marker_upper_roman_period] = ACTIONS(2974), - [sym_list_marker_decimal_paren] = ACTIONS(2974), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2974), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2974), - [sym_list_marker_lower_roman_paren] = ACTIONS(2974), - [sym_list_marker_upper_roman_paren] = ACTIONS(2974), - [sym_list_marker_decimal_parens] = ACTIONS(2974), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2974), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2974), - [sym_list_marker_lower_roman_parens] = ACTIONS(2974), - [sym_list_marker_upper_roman_parens] = ACTIONS(2974), - [sym__block_quote_begin] = ACTIONS(2974), - [sym__block_quote_continuation] = ACTIONS(2974), - [sym__thematic_break_dash] = ACTIONS(2974), - [sym__thematic_break_star] = ACTIONS(2974), - [sym__footnote_begin] = ACTIONS(2974), - [sym__verbatim_begin] = ACTIONS(2974), - }, - [369] = { - [anon_sym_LBRACK] = ACTIONS(2976), - [anon_sym_PIPE] = ACTIONS(2978), - [anon_sym_LBRACE] = ACTIONS(2976), - [sym__whitespace1] = ACTIONS(2978), - [anon_sym_BSLASH] = ACTIONS(2976), - [sym_quotation_marks] = ACTIONS(2978), - [sym_ellipsis] = ACTIONS(2978), - [sym_em_dash] = ACTIONS(2978), - [sym_en_dash] = ACTIONS(2976), - [sym_backslash_escape] = ACTIONS(2976), - [anon_sym_LT] = ACTIONS(2978), - [anon_sym_LBRACE_] = ACTIONS(2978), - [anon_sym__] = ACTIONS(2978), - [anon_sym_LBRACE_STAR] = ACTIONS(2978), - [anon_sym_STAR] = ACTIONS(2978), - [anon_sym_LBRACE_EQ] = ACTIONS(2978), - [anon_sym_LBRACE_PLUS] = ACTIONS(2978), - [anon_sym_LBRACE_DASH] = ACTIONS(2978), - [sym_symbol] = ACTIONS(2978), - [anon_sym_LBRACE_CARET] = ACTIONS(2978), - [anon_sym_CARET] = ACTIONS(2978), - [anon_sym_LBRACE_TILDE] = ACTIONS(2978), - [anon_sym_TILDE] = ACTIONS(2978), - [anon_sym_LBRACK_CARET] = ACTIONS(2978), - [anon_sym_BANG_LBRACK] = ACTIONS(2978), - [anon_sym_DOLLAR] = ACTIONS(2978), - [anon_sym_TODO] = ACTIONS(2978), - [anon_sym_WIP] = ACTIONS(2978), - [anon_sym_NOTE] = ACTIONS(2978), - [anon_sym_INFO] = ACTIONS(2978), - [anon_sym_XXX] = ACTIONS(2978), - [sym_fixme] = ACTIONS(2978), - [aux_sym__text_token1] = ACTIONS(2976), - [sym__block_close] = ACTIONS(2978), - [sym__newline] = ACTIONS(2978), - [sym__newline_inline] = ACTIONS(2978), - [sym__heading1_begin] = ACTIONS(2978), - [sym__heading2_begin] = ACTIONS(2978), - [sym__heading3_begin] = ACTIONS(2978), - [sym__heading4_begin] = ACTIONS(2978), - [sym__heading5_begin] = ACTIONS(2978), - [sym__heading6_begin] = ACTIONS(2978), - [sym__div_begin] = ACTIONS(2978), - [sym__code_block_begin] = ACTIONS(2978), - [sym_list_marker_dash] = ACTIONS(2978), - [sym_list_marker_star] = ACTIONS(2978), - [sym_list_marker_plus] = ACTIONS(2978), - [sym__list_marker_task_begin] = ACTIONS(2978), - [sym_list_marker_definition] = ACTIONS(2978), - [sym_list_marker_decimal_period] = ACTIONS(2978), - [sym_list_marker_lower_alpha_period] = ACTIONS(2978), - [sym_list_marker_upper_alpha_period] = ACTIONS(2978), - [sym_list_marker_lower_roman_period] = ACTIONS(2978), - [sym_list_marker_upper_roman_period] = ACTIONS(2978), - [sym_list_marker_decimal_paren] = ACTIONS(2978), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2978), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2978), - [sym_list_marker_lower_roman_paren] = ACTIONS(2978), - [sym_list_marker_upper_roman_paren] = ACTIONS(2978), - [sym_list_marker_decimal_parens] = ACTIONS(2978), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2978), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2978), - [sym_list_marker_lower_roman_parens] = ACTIONS(2978), - [sym_list_marker_upper_roman_parens] = ACTIONS(2978), - [sym__block_quote_begin] = ACTIONS(2978), - [sym__block_quote_continuation] = ACTIONS(2978), - [sym__thematic_break_dash] = ACTIONS(2978), - [sym__thematic_break_star] = ACTIONS(2978), - [sym__footnote_begin] = ACTIONS(2978), - [sym__verbatim_begin] = ACTIONS(2978), - }, - [370] = { - [anon_sym_LBRACK] = ACTIONS(2980), - [anon_sym_PIPE] = ACTIONS(2982), - [anon_sym_LBRACE] = ACTIONS(2980), - [sym__whitespace1] = ACTIONS(2982), - [anon_sym_BSLASH] = ACTIONS(2980), - [sym_quotation_marks] = ACTIONS(2982), - [sym_ellipsis] = ACTIONS(2982), - [sym_em_dash] = ACTIONS(2982), - [sym_en_dash] = ACTIONS(2980), - [sym_backslash_escape] = ACTIONS(2980), - [anon_sym_LT] = ACTIONS(2982), - [anon_sym_LBRACE_] = ACTIONS(2982), - [anon_sym__] = ACTIONS(2982), - [anon_sym_LBRACE_STAR] = ACTIONS(2982), - [anon_sym_STAR] = ACTIONS(2982), - [anon_sym_LBRACE_EQ] = ACTIONS(2982), - [anon_sym_LBRACE_PLUS] = ACTIONS(2982), - [anon_sym_LBRACE_DASH] = ACTIONS(2982), - [sym_symbol] = ACTIONS(2982), - [anon_sym_LBRACE_CARET] = ACTIONS(2982), - [anon_sym_CARET] = ACTIONS(2982), - [anon_sym_LBRACE_TILDE] = ACTIONS(2982), - [anon_sym_TILDE] = ACTIONS(2982), - [anon_sym_LBRACK_CARET] = ACTIONS(2982), - [anon_sym_BANG_LBRACK] = ACTIONS(2982), - [anon_sym_DOLLAR] = ACTIONS(2982), - [anon_sym_TODO] = ACTIONS(2982), - [anon_sym_WIP] = ACTIONS(2982), - [anon_sym_NOTE] = ACTIONS(2982), - [anon_sym_INFO] = ACTIONS(2982), - [anon_sym_XXX] = ACTIONS(2982), - [sym_fixme] = ACTIONS(2982), - [aux_sym__text_token1] = ACTIONS(2980), - [sym__block_close] = ACTIONS(2982), - [sym__newline] = ACTIONS(2982), - [sym__newline_inline] = ACTIONS(2982), - [sym__heading1_begin] = ACTIONS(2982), - [sym__heading2_begin] = ACTIONS(2982), - [sym__heading3_begin] = ACTIONS(2982), - [sym__heading4_begin] = ACTIONS(2982), - [sym__heading5_begin] = ACTIONS(2982), - [sym__heading6_begin] = ACTIONS(2982), - [sym__div_begin] = ACTIONS(2982), - [sym__code_block_begin] = ACTIONS(2982), - [sym_list_marker_dash] = ACTIONS(2982), - [sym_list_marker_star] = ACTIONS(2982), - [sym_list_marker_plus] = ACTIONS(2982), - [sym__list_marker_task_begin] = ACTIONS(2982), - [sym_list_marker_definition] = ACTIONS(2982), - [sym_list_marker_decimal_period] = ACTIONS(2982), - [sym_list_marker_lower_alpha_period] = ACTIONS(2982), - [sym_list_marker_upper_alpha_period] = ACTIONS(2982), - [sym_list_marker_lower_roman_period] = ACTIONS(2982), - [sym_list_marker_upper_roman_period] = ACTIONS(2982), - [sym_list_marker_decimal_paren] = ACTIONS(2982), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2982), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2982), - [sym_list_marker_lower_roman_paren] = ACTIONS(2982), - [sym_list_marker_upper_roman_paren] = ACTIONS(2982), - [sym_list_marker_decimal_parens] = ACTIONS(2982), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2982), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2982), - [sym_list_marker_lower_roman_parens] = ACTIONS(2982), - [sym_list_marker_upper_roman_parens] = ACTIONS(2982), - [sym__block_quote_begin] = ACTIONS(2982), - [sym__block_quote_continuation] = ACTIONS(2982), - [sym__thematic_break_dash] = ACTIONS(2982), - [sym__thematic_break_star] = ACTIONS(2982), - [sym__footnote_begin] = ACTIONS(2982), - [sym__verbatim_begin] = ACTIONS(2982), - }, - [371] = { - [anon_sym_LBRACK] = ACTIONS(2984), - [anon_sym_PIPE] = ACTIONS(2986), - [anon_sym_LBRACE] = ACTIONS(2984), - [sym__whitespace1] = ACTIONS(2986), - [anon_sym_BSLASH] = ACTIONS(2984), - [sym_quotation_marks] = ACTIONS(2986), - [sym_ellipsis] = ACTIONS(2986), - [sym_em_dash] = ACTIONS(2986), - [sym_en_dash] = ACTIONS(2984), - [sym_backslash_escape] = ACTIONS(2984), - [anon_sym_LT] = ACTIONS(2986), - [anon_sym_LBRACE_] = ACTIONS(2986), - [anon_sym__] = ACTIONS(2986), - [anon_sym_LBRACE_STAR] = ACTIONS(2986), - [anon_sym_STAR] = ACTIONS(2986), - [anon_sym_LBRACE_EQ] = ACTIONS(2986), - [anon_sym_LBRACE_PLUS] = ACTIONS(2986), - [anon_sym_LBRACE_DASH] = ACTIONS(2986), - [sym_symbol] = ACTIONS(2986), - [anon_sym_LBRACE_CARET] = ACTIONS(2986), - [anon_sym_CARET] = ACTIONS(2986), - [anon_sym_LBRACE_TILDE] = ACTIONS(2986), - [anon_sym_TILDE] = ACTIONS(2986), - [anon_sym_LBRACK_CARET] = ACTIONS(2986), - [anon_sym_BANG_LBRACK] = ACTIONS(2986), - [anon_sym_DOLLAR] = ACTIONS(2986), - [anon_sym_TODO] = ACTIONS(2986), - [anon_sym_WIP] = ACTIONS(2986), - [anon_sym_NOTE] = ACTIONS(2986), - [anon_sym_INFO] = ACTIONS(2986), - [anon_sym_XXX] = ACTIONS(2986), - [sym_fixme] = ACTIONS(2986), - [aux_sym__text_token1] = ACTIONS(2984), - [sym__block_close] = ACTIONS(2986), - [sym__newline] = ACTIONS(2986), - [sym__newline_inline] = ACTIONS(2986), - [sym__heading1_begin] = ACTIONS(2986), - [sym__heading2_begin] = ACTIONS(2986), - [sym__heading3_begin] = ACTIONS(2986), - [sym__heading4_begin] = ACTIONS(2986), - [sym__heading5_begin] = ACTIONS(2986), - [sym__heading6_begin] = ACTIONS(2986), - [sym__div_begin] = ACTIONS(2986), - [sym__code_block_begin] = ACTIONS(2986), - [sym_list_marker_dash] = ACTIONS(2986), - [sym_list_marker_star] = ACTIONS(2986), - [sym_list_marker_plus] = ACTIONS(2986), - [sym__list_marker_task_begin] = ACTIONS(2986), - [sym_list_marker_definition] = ACTIONS(2986), - [sym_list_marker_decimal_period] = ACTIONS(2986), - [sym_list_marker_lower_alpha_period] = ACTIONS(2986), - [sym_list_marker_upper_alpha_period] = ACTIONS(2986), - [sym_list_marker_lower_roman_period] = ACTIONS(2986), - [sym_list_marker_upper_roman_period] = ACTIONS(2986), - [sym_list_marker_decimal_paren] = ACTIONS(2986), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2986), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2986), - [sym_list_marker_lower_roman_paren] = ACTIONS(2986), - [sym_list_marker_upper_roman_paren] = ACTIONS(2986), - [sym_list_marker_decimal_parens] = ACTIONS(2986), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2986), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2986), - [sym_list_marker_lower_roman_parens] = ACTIONS(2986), - [sym_list_marker_upper_roman_parens] = ACTIONS(2986), - [sym__block_quote_begin] = ACTIONS(2986), - [sym__block_quote_continuation] = ACTIONS(2986), - [sym__thematic_break_dash] = ACTIONS(2986), - [sym__thematic_break_star] = ACTIONS(2986), - [sym__footnote_begin] = ACTIONS(2986), - [sym__verbatim_begin] = ACTIONS(2986), - }, - [372] = { - [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_PIPE] = ACTIONS(2990), - [anon_sym_LBRACE] = ACTIONS(2988), - [sym__whitespace1] = ACTIONS(2990), - [anon_sym_BSLASH] = ACTIONS(2988), - [sym_quotation_marks] = ACTIONS(2990), - [sym_ellipsis] = ACTIONS(2990), - [sym_em_dash] = ACTIONS(2990), - [sym_en_dash] = ACTIONS(2988), - [sym_backslash_escape] = ACTIONS(2988), - [anon_sym_LT] = ACTIONS(2990), - [anon_sym_LBRACE_] = ACTIONS(2990), - [anon_sym__] = ACTIONS(2990), - [anon_sym_LBRACE_STAR] = ACTIONS(2990), - [anon_sym_STAR] = ACTIONS(2990), - [anon_sym_LBRACE_EQ] = ACTIONS(2990), - [anon_sym_LBRACE_PLUS] = ACTIONS(2990), - [anon_sym_LBRACE_DASH] = ACTIONS(2990), - [sym_symbol] = ACTIONS(2990), - [anon_sym_LBRACE_CARET] = ACTIONS(2990), - [anon_sym_CARET] = ACTIONS(2990), - [anon_sym_LBRACE_TILDE] = ACTIONS(2990), - [anon_sym_TILDE] = ACTIONS(2990), - [anon_sym_LBRACK_CARET] = ACTIONS(2990), - [anon_sym_BANG_LBRACK] = ACTIONS(2990), - [anon_sym_DOLLAR] = ACTIONS(2990), - [anon_sym_TODO] = ACTIONS(2990), - [anon_sym_WIP] = ACTIONS(2990), - [anon_sym_NOTE] = ACTIONS(2990), - [anon_sym_INFO] = ACTIONS(2990), - [anon_sym_XXX] = ACTIONS(2990), - [sym_fixme] = ACTIONS(2990), - [aux_sym__text_token1] = ACTIONS(2988), - [sym__block_close] = ACTIONS(2990), - [sym__newline] = ACTIONS(2990), - [sym__newline_inline] = ACTIONS(2990), - [sym__heading1_begin] = ACTIONS(2990), - [sym__heading2_begin] = ACTIONS(2990), - [sym__heading3_begin] = ACTIONS(2990), - [sym__heading4_begin] = ACTIONS(2990), - [sym__heading5_begin] = ACTIONS(2990), - [sym__heading6_begin] = ACTIONS(2990), - [sym__div_begin] = ACTIONS(2990), - [sym__code_block_begin] = ACTIONS(2990), - [sym_list_marker_dash] = ACTIONS(2990), - [sym_list_marker_star] = ACTIONS(2990), - [sym_list_marker_plus] = ACTIONS(2990), - [sym__list_marker_task_begin] = ACTIONS(2990), - [sym_list_marker_definition] = ACTIONS(2990), - [sym_list_marker_decimal_period] = ACTIONS(2990), - [sym_list_marker_lower_alpha_period] = ACTIONS(2990), - [sym_list_marker_upper_alpha_period] = ACTIONS(2990), - [sym_list_marker_lower_roman_period] = ACTIONS(2990), - [sym_list_marker_upper_roman_period] = ACTIONS(2990), - [sym_list_marker_decimal_paren] = ACTIONS(2990), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2990), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2990), - [sym_list_marker_lower_roman_paren] = ACTIONS(2990), - [sym_list_marker_upper_roman_paren] = ACTIONS(2990), - [sym_list_marker_decimal_parens] = ACTIONS(2990), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2990), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2990), - [sym_list_marker_lower_roman_parens] = ACTIONS(2990), - [sym_list_marker_upper_roman_parens] = ACTIONS(2990), - [sym__block_quote_begin] = ACTIONS(2990), - [sym__block_quote_continuation] = ACTIONS(2990), - [sym__thematic_break_dash] = ACTIONS(2990), - [sym__thematic_break_star] = ACTIONS(2990), - [sym__footnote_begin] = ACTIONS(2990), - [sym__verbatim_begin] = ACTIONS(2990), - }, - [373] = { - [anon_sym_LBRACK] = ACTIONS(2992), - [anon_sym_PIPE] = ACTIONS(2994), - [anon_sym_LBRACE] = ACTIONS(2992), - [sym__whitespace1] = ACTIONS(2994), - [anon_sym_BSLASH] = ACTIONS(2992), - [sym_quotation_marks] = ACTIONS(2994), - [sym_ellipsis] = ACTIONS(2994), - [sym_em_dash] = ACTIONS(2994), - [sym_en_dash] = ACTIONS(2992), - [sym_backslash_escape] = ACTIONS(2992), - [anon_sym_LT] = ACTIONS(2994), - [anon_sym_LBRACE_] = ACTIONS(2994), - [anon_sym__] = ACTIONS(2994), - [anon_sym_LBRACE_STAR] = ACTIONS(2994), - [anon_sym_STAR] = ACTIONS(2994), - [anon_sym_LBRACE_EQ] = ACTIONS(2994), - [anon_sym_LBRACE_PLUS] = ACTIONS(2994), - [anon_sym_LBRACE_DASH] = ACTIONS(2994), - [sym_symbol] = ACTIONS(2994), - [anon_sym_LBRACE_CARET] = ACTIONS(2994), - [anon_sym_CARET] = ACTIONS(2994), - [anon_sym_LBRACE_TILDE] = ACTIONS(2994), - [anon_sym_TILDE] = ACTIONS(2994), - [anon_sym_LBRACK_CARET] = ACTIONS(2994), - [anon_sym_BANG_LBRACK] = ACTIONS(2994), - [anon_sym_DOLLAR] = ACTIONS(2994), - [anon_sym_TODO] = ACTIONS(2994), - [anon_sym_WIP] = ACTIONS(2994), - [anon_sym_NOTE] = ACTIONS(2994), - [anon_sym_INFO] = ACTIONS(2994), - [anon_sym_XXX] = ACTIONS(2994), - [sym_fixme] = ACTIONS(2994), - [aux_sym__text_token1] = ACTIONS(2992), - [sym__block_close] = ACTIONS(2994), - [sym__newline] = ACTIONS(2994), - [sym__newline_inline] = ACTIONS(2994), - [sym__heading1_begin] = ACTIONS(2994), - [sym__heading2_begin] = ACTIONS(2994), - [sym__heading3_begin] = ACTIONS(2994), - [sym__heading4_begin] = ACTIONS(2994), - [sym__heading5_begin] = ACTIONS(2994), - [sym__heading6_begin] = ACTIONS(2994), - [sym__div_begin] = ACTIONS(2994), - [sym__code_block_begin] = ACTIONS(2994), - [sym_list_marker_dash] = ACTIONS(2994), - [sym_list_marker_star] = ACTIONS(2994), - [sym_list_marker_plus] = ACTIONS(2994), - [sym__list_marker_task_begin] = ACTIONS(2994), - [sym_list_marker_definition] = ACTIONS(2994), - [sym_list_marker_decimal_period] = ACTIONS(2994), - [sym_list_marker_lower_alpha_period] = ACTIONS(2994), - [sym_list_marker_upper_alpha_period] = ACTIONS(2994), - [sym_list_marker_lower_roman_period] = ACTIONS(2994), - [sym_list_marker_upper_roman_period] = ACTIONS(2994), - [sym_list_marker_decimal_paren] = ACTIONS(2994), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2994), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2994), - [sym_list_marker_lower_roman_paren] = ACTIONS(2994), - [sym_list_marker_upper_roman_paren] = ACTIONS(2994), - [sym_list_marker_decimal_parens] = ACTIONS(2994), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2994), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2994), - [sym_list_marker_lower_roman_parens] = ACTIONS(2994), - [sym_list_marker_upper_roman_parens] = ACTIONS(2994), - [sym__block_quote_begin] = ACTIONS(2994), - [sym__block_quote_continuation] = ACTIONS(2994), - [sym__thematic_break_dash] = ACTIONS(2994), - [sym__thematic_break_star] = ACTIONS(2994), - [sym__footnote_begin] = ACTIONS(2994), - [sym__verbatim_begin] = ACTIONS(2994), - }, - [374] = { - [anon_sym_LBRACK] = ACTIONS(2996), - [anon_sym_PIPE] = ACTIONS(2998), - [anon_sym_LBRACE] = ACTIONS(2996), - [sym__whitespace1] = ACTIONS(2998), - [anon_sym_BSLASH] = ACTIONS(2996), - [sym_quotation_marks] = ACTIONS(2998), - [sym_ellipsis] = ACTIONS(2998), - [sym_em_dash] = ACTIONS(2998), - [sym_en_dash] = ACTIONS(2996), - [sym_backslash_escape] = ACTIONS(2996), - [anon_sym_LT] = ACTIONS(2998), - [anon_sym_LBRACE_] = ACTIONS(2998), - [anon_sym__] = ACTIONS(2998), - [anon_sym_LBRACE_STAR] = ACTIONS(2998), - [anon_sym_STAR] = ACTIONS(2998), - [anon_sym_LBRACE_EQ] = ACTIONS(2998), - [anon_sym_LBRACE_PLUS] = ACTIONS(2998), - [anon_sym_LBRACE_DASH] = ACTIONS(2998), - [sym_symbol] = ACTIONS(2998), - [anon_sym_LBRACE_CARET] = ACTIONS(2998), - [anon_sym_CARET] = ACTIONS(2998), - [anon_sym_LBRACE_TILDE] = ACTIONS(2998), - [anon_sym_TILDE] = ACTIONS(2998), - [anon_sym_LBRACK_CARET] = ACTIONS(2998), - [anon_sym_BANG_LBRACK] = ACTIONS(2998), - [anon_sym_DOLLAR] = ACTIONS(2998), - [anon_sym_TODO] = ACTIONS(2998), - [anon_sym_WIP] = ACTIONS(2998), - [anon_sym_NOTE] = ACTIONS(2998), - [anon_sym_INFO] = ACTIONS(2998), - [anon_sym_XXX] = ACTIONS(2998), - [sym_fixme] = ACTIONS(2998), - [aux_sym__text_token1] = ACTIONS(2996), - [sym__block_close] = ACTIONS(2998), - [sym__newline] = ACTIONS(2998), - [sym__newline_inline] = ACTIONS(2998), - [sym__heading1_begin] = ACTIONS(2998), - [sym__heading2_begin] = ACTIONS(2998), - [sym__heading3_begin] = ACTIONS(2998), - [sym__heading4_begin] = ACTIONS(2998), - [sym__heading5_begin] = ACTIONS(2998), - [sym__heading6_begin] = ACTIONS(2998), - [sym__div_begin] = ACTIONS(2998), - [sym__code_block_begin] = ACTIONS(2998), - [sym_list_marker_dash] = ACTIONS(2998), - [sym_list_marker_star] = ACTIONS(2998), - [sym_list_marker_plus] = ACTIONS(2998), - [sym__list_marker_task_begin] = ACTIONS(2998), - [sym_list_marker_definition] = ACTIONS(2998), - [sym_list_marker_decimal_period] = ACTIONS(2998), - [sym_list_marker_lower_alpha_period] = ACTIONS(2998), - [sym_list_marker_upper_alpha_period] = ACTIONS(2998), - [sym_list_marker_lower_roman_period] = ACTIONS(2998), - [sym_list_marker_upper_roman_period] = ACTIONS(2998), - [sym_list_marker_decimal_paren] = ACTIONS(2998), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2998), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2998), - [sym_list_marker_lower_roman_paren] = ACTIONS(2998), - [sym_list_marker_upper_roman_paren] = ACTIONS(2998), - [sym_list_marker_decimal_parens] = ACTIONS(2998), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2998), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2998), - [sym_list_marker_lower_roman_parens] = ACTIONS(2998), - [sym_list_marker_upper_roman_parens] = ACTIONS(2998), - [sym__block_quote_begin] = ACTIONS(2998), - [sym__block_quote_continuation] = ACTIONS(2998), - [sym__thematic_break_dash] = ACTIONS(2998), - [sym__thematic_break_star] = ACTIONS(2998), - [sym__footnote_begin] = ACTIONS(2998), - [sym__verbatim_begin] = ACTIONS(2998), - }, - [375] = { - [anon_sym_LBRACK] = ACTIONS(3000), - [anon_sym_PIPE] = ACTIONS(3002), - [anon_sym_LBRACE] = ACTIONS(3000), - [sym__whitespace1] = ACTIONS(3002), - [anon_sym_BSLASH] = ACTIONS(3000), - [sym_quotation_marks] = ACTIONS(3002), - [sym_ellipsis] = ACTIONS(3002), - [sym_em_dash] = ACTIONS(3002), - [sym_en_dash] = ACTIONS(3000), - [sym_backslash_escape] = ACTIONS(3000), - [anon_sym_LT] = ACTIONS(3002), - [anon_sym_LBRACE_] = ACTIONS(3002), - [anon_sym__] = ACTIONS(3002), - [anon_sym_LBRACE_STAR] = ACTIONS(3002), - [anon_sym_STAR] = ACTIONS(3002), - [anon_sym_LBRACE_EQ] = ACTIONS(3002), - [anon_sym_LBRACE_PLUS] = ACTIONS(3002), - [anon_sym_LBRACE_DASH] = ACTIONS(3002), - [sym_symbol] = ACTIONS(3002), - [anon_sym_LBRACE_CARET] = ACTIONS(3002), - [anon_sym_CARET] = ACTIONS(3002), - [anon_sym_LBRACE_TILDE] = ACTIONS(3002), - [anon_sym_TILDE] = ACTIONS(3002), - [anon_sym_LBRACK_CARET] = ACTIONS(3002), - [anon_sym_BANG_LBRACK] = ACTIONS(3002), - [anon_sym_DOLLAR] = ACTIONS(3002), - [anon_sym_TODO] = ACTIONS(3002), - [anon_sym_WIP] = ACTIONS(3002), - [anon_sym_NOTE] = ACTIONS(3002), - [anon_sym_INFO] = ACTIONS(3002), - [anon_sym_XXX] = ACTIONS(3002), - [sym_fixme] = ACTIONS(3002), - [aux_sym__text_token1] = ACTIONS(3000), - [sym__block_close] = ACTIONS(3002), - [sym__newline] = ACTIONS(3002), - [sym__newline_inline] = ACTIONS(3002), - [sym__heading1_begin] = ACTIONS(3002), - [sym__heading2_begin] = ACTIONS(3002), - [sym__heading3_begin] = ACTIONS(3002), - [sym__heading4_begin] = ACTIONS(3002), - [sym__heading5_begin] = ACTIONS(3002), - [sym__heading6_begin] = ACTIONS(3002), - [sym__div_begin] = ACTIONS(3002), - [sym__code_block_begin] = ACTIONS(3002), - [sym_list_marker_dash] = ACTIONS(3002), - [sym_list_marker_star] = ACTIONS(3002), - [sym_list_marker_plus] = ACTIONS(3002), - [sym__list_marker_task_begin] = ACTIONS(3002), - [sym_list_marker_definition] = ACTIONS(3002), - [sym_list_marker_decimal_period] = ACTIONS(3002), - [sym_list_marker_lower_alpha_period] = ACTIONS(3002), - [sym_list_marker_upper_alpha_period] = ACTIONS(3002), - [sym_list_marker_lower_roman_period] = ACTIONS(3002), - [sym_list_marker_upper_roman_period] = ACTIONS(3002), - [sym_list_marker_decimal_paren] = ACTIONS(3002), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3002), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3002), - [sym_list_marker_lower_roman_paren] = ACTIONS(3002), - [sym_list_marker_upper_roman_paren] = ACTIONS(3002), - [sym_list_marker_decimal_parens] = ACTIONS(3002), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3002), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3002), - [sym_list_marker_lower_roman_parens] = ACTIONS(3002), - [sym_list_marker_upper_roman_parens] = ACTIONS(3002), - [sym__block_quote_begin] = ACTIONS(3002), - [sym__block_quote_continuation] = ACTIONS(3002), - [sym__thematic_break_dash] = ACTIONS(3002), - [sym__thematic_break_star] = ACTIONS(3002), - [sym__footnote_begin] = ACTIONS(3002), - [sym__verbatim_begin] = ACTIONS(3002), - }, - [376] = { - [anon_sym_LBRACK] = ACTIONS(3004), - [anon_sym_PIPE] = ACTIONS(3006), - [anon_sym_LBRACE] = ACTIONS(3004), - [sym__whitespace1] = ACTIONS(3006), - [anon_sym_BSLASH] = ACTIONS(3004), - [sym_quotation_marks] = ACTIONS(3006), - [sym_ellipsis] = ACTIONS(3006), - [sym_em_dash] = ACTIONS(3006), - [sym_en_dash] = ACTIONS(3004), - [sym_backslash_escape] = ACTIONS(3004), - [anon_sym_LT] = ACTIONS(3006), - [anon_sym_LBRACE_] = ACTIONS(3006), - [anon_sym__] = ACTIONS(3006), - [anon_sym_LBRACE_STAR] = ACTIONS(3006), - [anon_sym_STAR] = ACTIONS(3006), - [anon_sym_LBRACE_EQ] = ACTIONS(3006), - [anon_sym_LBRACE_PLUS] = ACTIONS(3006), - [anon_sym_LBRACE_DASH] = ACTIONS(3006), - [sym_symbol] = ACTIONS(3006), - [anon_sym_LBRACE_CARET] = ACTIONS(3006), - [anon_sym_CARET] = ACTIONS(3006), - [anon_sym_LBRACE_TILDE] = ACTIONS(3006), - [anon_sym_TILDE] = ACTIONS(3006), - [anon_sym_LBRACK_CARET] = ACTIONS(3006), - [anon_sym_BANG_LBRACK] = ACTIONS(3006), - [anon_sym_DOLLAR] = ACTIONS(3006), - [anon_sym_TODO] = ACTIONS(3006), - [anon_sym_WIP] = ACTIONS(3006), - [anon_sym_NOTE] = ACTIONS(3006), - [anon_sym_INFO] = ACTIONS(3006), - [anon_sym_XXX] = ACTIONS(3006), - [sym_fixme] = ACTIONS(3006), - [aux_sym__text_token1] = ACTIONS(3004), - [sym__block_close] = ACTIONS(3006), - [sym__newline] = ACTIONS(3006), - [sym__newline_inline] = ACTIONS(3006), - [sym__heading1_begin] = ACTIONS(3006), - [sym__heading2_begin] = ACTIONS(3006), - [sym__heading3_begin] = ACTIONS(3006), - [sym__heading4_begin] = ACTIONS(3006), - [sym__heading5_begin] = ACTIONS(3006), - [sym__heading6_begin] = ACTIONS(3006), - [sym__div_begin] = ACTIONS(3006), - [sym__code_block_begin] = ACTIONS(3006), - [sym_list_marker_dash] = ACTIONS(3006), - [sym_list_marker_star] = ACTIONS(3006), - [sym_list_marker_plus] = ACTIONS(3006), - [sym__list_marker_task_begin] = ACTIONS(3006), - [sym_list_marker_definition] = ACTIONS(3006), - [sym_list_marker_decimal_period] = ACTIONS(3006), - [sym_list_marker_lower_alpha_period] = ACTIONS(3006), - [sym_list_marker_upper_alpha_period] = ACTIONS(3006), - [sym_list_marker_lower_roman_period] = ACTIONS(3006), - [sym_list_marker_upper_roman_period] = ACTIONS(3006), - [sym_list_marker_decimal_paren] = ACTIONS(3006), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3006), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3006), - [sym_list_marker_lower_roman_paren] = ACTIONS(3006), - [sym_list_marker_upper_roman_paren] = ACTIONS(3006), - [sym_list_marker_decimal_parens] = ACTIONS(3006), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3006), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3006), - [sym_list_marker_lower_roman_parens] = ACTIONS(3006), - [sym_list_marker_upper_roman_parens] = ACTIONS(3006), - [sym__block_quote_begin] = ACTIONS(3006), - [sym__block_quote_continuation] = ACTIONS(3006), - [sym__thematic_break_dash] = ACTIONS(3006), - [sym__thematic_break_star] = ACTIONS(3006), - [sym__footnote_begin] = ACTIONS(3006), - [sym__verbatim_begin] = ACTIONS(3006), - }, - [377] = { - [anon_sym_LBRACK] = ACTIONS(3008), - [anon_sym_PIPE] = ACTIONS(3010), - [anon_sym_LBRACE] = ACTIONS(3008), - [sym__whitespace1] = ACTIONS(3010), - [anon_sym_BSLASH] = ACTIONS(3008), - [sym_quotation_marks] = ACTIONS(3010), - [sym_ellipsis] = ACTIONS(3010), - [sym_em_dash] = ACTIONS(3010), - [sym_en_dash] = ACTIONS(3008), - [sym_backslash_escape] = ACTIONS(3008), - [anon_sym_LT] = ACTIONS(3010), - [anon_sym_LBRACE_] = ACTIONS(3010), - [anon_sym__] = ACTIONS(3010), - [anon_sym_LBRACE_STAR] = ACTIONS(3010), - [anon_sym_STAR] = ACTIONS(3010), - [anon_sym_LBRACE_EQ] = ACTIONS(3010), - [anon_sym_LBRACE_PLUS] = ACTIONS(3010), - [anon_sym_LBRACE_DASH] = ACTIONS(3010), - [sym_symbol] = ACTIONS(3010), - [anon_sym_LBRACE_CARET] = ACTIONS(3010), - [anon_sym_CARET] = ACTIONS(3010), - [anon_sym_LBRACE_TILDE] = ACTIONS(3010), - [anon_sym_TILDE] = ACTIONS(3010), - [anon_sym_LBRACK_CARET] = ACTIONS(3010), - [anon_sym_BANG_LBRACK] = ACTIONS(3010), - [anon_sym_DOLLAR] = ACTIONS(3010), - [anon_sym_TODO] = ACTIONS(3010), - [anon_sym_WIP] = ACTIONS(3010), - [anon_sym_NOTE] = ACTIONS(3010), - [anon_sym_INFO] = ACTIONS(3010), - [anon_sym_XXX] = ACTIONS(3010), - [sym_fixme] = ACTIONS(3010), - [aux_sym__text_token1] = ACTIONS(3008), - [sym__block_close] = ACTIONS(3010), - [sym__newline] = ACTIONS(3010), - [sym__newline_inline] = ACTIONS(3010), - [sym__heading1_begin] = ACTIONS(3010), - [sym__heading2_begin] = ACTIONS(3010), - [sym__heading3_begin] = ACTIONS(3010), - [sym__heading4_begin] = ACTIONS(3010), - [sym__heading5_begin] = ACTIONS(3010), - [sym__heading6_begin] = ACTIONS(3010), - [sym__div_begin] = ACTIONS(3010), - [sym__code_block_begin] = ACTIONS(3010), - [sym_list_marker_dash] = ACTIONS(3010), - [sym_list_marker_star] = ACTIONS(3010), - [sym_list_marker_plus] = ACTIONS(3010), - [sym__list_marker_task_begin] = ACTIONS(3010), - [sym_list_marker_definition] = ACTIONS(3010), - [sym_list_marker_decimal_period] = ACTIONS(3010), - [sym_list_marker_lower_alpha_period] = ACTIONS(3010), - [sym_list_marker_upper_alpha_period] = ACTIONS(3010), - [sym_list_marker_lower_roman_period] = ACTIONS(3010), - [sym_list_marker_upper_roman_period] = ACTIONS(3010), - [sym_list_marker_decimal_paren] = ACTIONS(3010), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3010), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3010), - [sym_list_marker_lower_roman_paren] = ACTIONS(3010), - [sym_list_marker_upper_roman_paren] = ACTIONS(3010), - [sym_list_marker_decimal_parens] = ACTIONS(3010), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3010), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3010), - [sym_list_marker_lower_roman_parens] = ACTIONS(3010), - [sym_list_marker_upper_roman_parens] = ACTIONS(3010), - [sym__block_quote_begin] = ACTIONS(3010), - [sym__block_quote_continuation] = ACTIONS(3010), - [sym__thematic_break_dash] = ACTIONS(3010), - [sym__thematic_break_star] = ACTIONS(3010), - [sym__footnote_begin] = ACTIONS(3010), - [sym__verbatim_begin] = ACTIONS(3010), - }, - [378] = { - [anon_sym_LBRACK] = ACTIONS(3012), - [anon_sym_PIPE] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3012), - [sym__whitespace1] = ACTIONS(3014), - [anon_sym_BSLASH] = ACTIONS(3012), - [sym_quotation_marks] = ACTIONS(3014), - [sym_ellipsis] = ACTIONS(3014), - [sym_em_dash] = ACTIONS(3014), - [sym_en_dash] = ACTIONS(3012), - [sym_backslash_escape] = ACTIONS(3012), - [anon_sym_LT] = ACTIONS(3014), - [anon_sym_LBRACE_] = ACTIONS(3014), - [anon_sym__] = ACTIONS(3014), - [anon_sym_LBRACE_STAR] = ACTIONS(3014), - [anon_sym_STAR] = ACTIONS(3014), - [anon_sym_LBRACE_EQ] = ACTIONS(3014), - [anon_sym_LBRACE_PLUS] = ACTIONS(3014), - [anon_sym_LBRACE_DASH] = ACTIONS(3014), - [sym_symbol] = ACTIONS(3014), - [anon_sym_LBRACE_CARET] = ACTIONS(3014), - [anon_sym_CARET] = ACTIONS(3014), - [anon_sym_LBRACE_TILDE] = ACTIONS(3014), - [anon_sym_TILDE] = ACTIONS(3014), - [anon_sym_LBRACK_CARET] = ACTIONS(3014), - [anon_sym_BANG_LBRACK] = ACTIONS(3014), - [anon_sym_DOLLAR] = ACTIONS(3014), - [anon_sym_TODO] = ACTIONS(3014), - [anon_sym_WIP] = ACTIONS(3014), - [anon_sym_NOTE] = ACTIONS(3014), - [anon_sym_INFO] = ACTIONS(3014), - [anon_sym_XXX] = ACTIONS(3014), - [sym_fixme] = ACTIONS(3014), - [aux_sym__text_token1] = ACTIONS(3012), - [sym__newline] = ACTIONS(3014), - [sym__newline_inline] = ACTIONS(3014), - [sym__heading1_begin] = ACTIONS(3014), - [sym__heading2_begin] = ACTIONS(3014), - [sym__heading3_begin] = ACTIONS(3014), - [sym__heading4_begin] = ACTIONS(3014), - [sym__heading5_begin] = ACTIONS(3014), - [sym__heading6_begin] = ACTIONS(3014), - [sym__div_begin] = ACTIONS(3014), - [sym__code_block_begin] = ACTIONS(3014), - [sym_list_marker_dash] = ACTIONS(3014), - [sym_list_marker_star] = ACTIONS(3014), - [sym_list_marker_plus] = ACTIONS(3014), - [sym__list_marker_task_begin] = ACTIONS(3014), - [sym_list_marker_definition] = ACTIONS(3014), - [sym_list_marker_decimal_period] = ACTIONS(3014), - [sym_list_marker_lower_alpha_period] = ACTIONS(3014), - [sym_list_marker_upper_alpha_period] = ACTIONS(3014), - [sym_list_marker_lower_roman_period] = ACTIONS(3014), - [sym_list_marker_upper_roman_period] = ACTIONS(3014), - [sym_list_marker_decimal_paren] = ACTIONS(3014), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3014), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3014), - [sym_list_marker_lower_roman_paren] = ACTIONS(3014), - [sym_list_marker_upper_roman_paren] = ACTIONS(3014), - [sym_list_marker_decimal_parens] = ACTIONS(3014), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3014), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3014), - [sym_list_marker_lower_roman_parens] = ACTIONS(3014), - [sym_list_marker_upper_roman_parens] = ACTIONS(3014), - [sym__block_quote_begin] = ACTIONS(3014), - [sym__block_quote_continuation] = ACTIONS(3014), - [sym__thematic_break_dash] = ACTIONS(3014), - [sym__thematic_break_star] = ACTIONS(3014), - [sym__footnote_begin] = ACTIONS(3014), - [sym__footnote_end] = ACTIONS(3014), - [sym__verbatim_begin] = ACTIONS(3014), - }, - [379] = { - [ts_builtin_sym_end] = ACTIONS(3016), - [anon_sym_LBRACK] = ACTIONS(3018), - [anon_sym_PIPE] = ACTIONS(3016), - [anon_sym_LBRACE] = ACTIONS(3018), - [sym__whitespace1] = ACTIONS(3016), - [anon_sym_BSLASH] = ACTIONS(3018), - [sym_quotation_marks] = ACTIONS(3016), - [sym_ellipsis] = ACTIONS(3016), - [sym_em_dash] = ACTIONS(3016), - [sym_en_dash] = ACTIONS(3018), - [sym_backslash_escape] = ACTIONS(3018), - [anon_sym_LT] = ACTIONS(3016), - [anon_sym_LBRACE_] = ACTIONS(3016), - [anon_sym__] = ACTIONS(3016), - [anon_sym_LBRACE_STAR] = ACTIONS(3016), - [anon_sym_STAR] = ACTIONS(3016), - [anon_sym_LBRACE_EQ] = ACTIONS(3016), - [anon_sym_LBRACE_PLUS] = ACTIONS(3016), - [anon_sym_LBRACE_DASH] = ACTIONS(3016), - [sym_symbol] = ACTIONS(3016), - [anon_sym_LBRACE_CARET] = ACTIONS(3016), - [anon_sym_CARET] = ACTIONS(3016), - [anon_sym_LBRACE_TILDE] = ACTIONS(3016), - [anon_sym_TILDE] = ACTIONS(3016), - [anon_sym_LBRACK_CARET] = ACTIONS(3016), - [anon_sym_BANG_LBRACK] = ACTIONS(3016), - [anon_sym_DOLLAR] = ACTIONS(3016), - [anon_sym_TODO] = ACTIONS(3016), - [anon_sym_WIP] = ACTIONS(3016), - [anon_sym_NOTE] = ACTIONS(3016), - [anon_sym_INFO] = ACTIONS(3016), - [anon_sym_XXX] = ACTIONS(3016), - [sym_fixme] = ACTIONS(3016), - [aux_sym__text_token1] = ACTIONS(3018), - [sym__newline] = ACTIONS(3016), - [sym__newline_inline] = ACTIONS(3016), - [sym__heading1_begin] = ACTIONS(3016), - [sym__heading2_begin] = ACTIONS(3016), - [sym__heading3_begin] = ACTIONS(3016), - [sym__heading4_begin] = ACTIONS(3016), - [sym__heading5_begin] = ACTIONS(3016), - [sym__heading6_begin] = ACTIONS(3016), - [sym__div_begin] = ACTIONS(3016), - [sym__code_block_begin] = ACTIONS(3016), - [sym_list_marker_dash] = ACTIONS(3016), - [sym_list_marker_star] = ACTIONS(3016), - [sym_list_marker_plus] = ACTIONS(3016), - [sym__list_marker_task_begin] = ACTIONS(3016), - [sym_list_marker_definition] = ACTIONS(3016), - [sym_list_marker_decimal_period] = ACTIONS(3016), - [sym_list_marker_lower_alpha_period] = ACTIONS(3016), - [sym_list_marker_upper_alpha_period] = ACTIONS(3016), - [sym_list_marker_lower_roman_period] = ACTIONS(3016), - [sym_list_marker_upper_roman_period] = ACTIONS(3016), - [sym_list_marker_decimal_paren] = ACTIONS(3016), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3016), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3016), - [sym_list_marker_lower_roman_paren] = ACTIONS(3016), - [sym_list_marker_upper_roman_paren] = ACTIONS(3016), - [sym_list_marker_decimal_parens] = ACTIONS(3016), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3016), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3016), - [sym_list_marker_lower_roman_parens] = ACTIONS(3016), - [sym_list_marker_upper_roman_parens] = ACTIONS(3016), - [sym__block_quote_begin] = ACTIONS(3016), - [sym__block_quote_continuation] = ACTIONS(3016), - [sym__thematic_break_dash] = ACTIONS(3016), - [sym__thematic_break_star] = ACTIONS(3016), - [sym__footnote_begin] = ACTIONS(3016), - [sym__verbatim_begin] = ACTIONS(3016), - }, - [380] = { - [anon_sym_LBRACK] = ACTIONS(3020), - [anon_sym_PIPE] = ACTIONS(3022), - [anon_sym_LBRACE] = ACTIONS(3020), - [sym__whitespace1] = ACTIONS(3022), - [anon_sym_BSLASH] = ACTIONS(3020), - [sym_quotation_marks] = ACTIONS(3022), - [sym_ellipsis] = ACTIONS(3022), - [sym_em_dash] = ACTIONS(3022), - [sym_en_dash] = ACTIONS(3020), - [sym_backslash_escape] = ACTIONS(3020), - [anon_sym_LT] = ACTIONS(3022), - [anon_sym_LBRACE_] = ACTIONS(3022), - [anon_sym__] = ACTIONS(3022), - [anon_sym_LBRACE_STAR] = ACTIONS(3022), - [anon_sym_STAR] = ACTIONS(3022), - [anon_sym_LBRACE_EQ] = ACTIONS(3022), - [anon_sym_LBRACE_PLUS] = ACTIONS(3022), - [anon_sym_LBRACE_DASH] = ACTIONS(3022), - [sym_symbol] = ACTIONS(3022), - [anon_sym_LBRACE_CARET] = ACTIONS(3022), - [anon_sym_CARET] = ACTIONS(3022), - [anon_sym_LBRACE_TILDE] = ACTIONS(3022), - [anon_sym_TILDE] = ACTIONS(3022), - [anon_sym_LBRACK_CARET] = ACTIONS(3022), - [anon_sym_BANG_LBRACK] = ACTIONS(3022), - [anon_sym_DOLLAR] = ACTIONS(3022), - [anon_sym_TODO] = ACTIONS(3022), - [anon_sym_WIP] = ACTIONS(3022), - [anon_sym_NOTE] = ACTIONS(3022), - [anon_sym_INFO] = ACTIONS(3022), - [anon_sym_XXX] = ACTIONS(3022), - [sym_fixme] = ACTIONS(3022), - [aux_sym__text_token1] = ACTIONS(3020), - [sym__newline] = ACTIONS(3022), - [sym__newline_inline] = ACTIONS(3022), - [sym__heading1_begin] = ACTIONS(3022), - [sym__heading2_begin] = ACTIONS(3022), - [sym__heading3_begin] = ACTIONS(3022), - [sym__heading4_begin] = ACTIONS(3022), - [sym__heading5_begin] = ACTIONS(3022), - [sym__heading6_begin] = ACTIONS(3022), - [sym__div_begin] = ACTIONS(3022), - [sym__code_block_begin] = ACTIONS(3022), - [sym_list_marker_dash] = ACTIONS(3022), - [sym_list_marker_star] = ACTIONS(3022), - [sym_list_marker_plus] = ACTIONS(3022), - [sym__list_marker_task_begin] = ACTIONS(3022), - [sym_list_marker_definition] = ACTIONS(3022), - [sym_list_marker_decimal_period] = ACTIONS(3022), - [sym_list_marker_lower_alpha_period] = ACTIONS(3022), - [sym_list_marker_upper_alpha_period] = ACTIONS(3022), - [sym_list_marker_lower_roman_period] = ACTIONS(3022), - [sym_list_marker_upper_roman_period] = ACTIONS(3022), - [sym_list_marker_decimal_paren] = ACTIONS(3022), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3022), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3022), - [sym_list_marker_lower_roman_paren] = ACTIONS(3022), - [sym_list_marker_upper_roman_paren] = ACTIONS(3022), - [sym_list_marker_decimal_parens] = ACTIONS(3022), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3022), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3022), - [sym_list_marker_lower_roman_parens] = ACTIONS(3022), - [sym_list_marker_upper_roman_parens] = ACTIONS(3022), - [sym__block_quote_begin] = ACTIONS(3022), - [sym__block_quote_continuation] = ACTIONS(3022), - [sym__thematic_break_dash] = ACTIONS(3022), - [sym__thematic_break_star] = ACTIONS(3022), - [sym__footnote_begin] = ACTIONS(3022), - [sym__footnote_end] = ACTIONS(3022), - [sym__verbatim_begin] = ACTIONS(3022), - }, - [381] = { - [anon_sym_LBRACK] = ACTIONS(3018), - [anon_sym_PIPE] = ACTIONS(3016), - [anon_sym_LBRACE] = ACTIONS(3018), - [sym__whitespace1] = ACTIONS(3016), - [anon_sym_BSLASH] = ACTIONS(3018), - [sym_quotation_marks] = ACTIONS(3016), - [sym_ellipsis] = ACTIONS(3016), - [sym_em_dash] = ACTIONS(3016), - [sym_en_dash] = ACTIONS(3018), - [sym_backslash_escape] = ACTIONS(3018), - [anon_sym_LT] = ACTIONS(3016), - [anon_sym_LBRACE_] = ACTIONS(3016), - [anon_sym__] = ACTIONS(3016), - [anon_sym_LBRACE_STAR] = ACTIONS(3016), - [anon_sym_STAR] = ACTIONS(3016), - [anon_sym_LBRACE_EQ] = ACTIONS(3016), - [anon_sym_LBRACE_PLUS] = ACTIONS(3016), - [anon_sym_LBRACE_DASH] = ACTIONS(3016), - [sym_symbol] = ACTIONS(3016), - [anon_sym_LBRACE_CARET] = ACTIONS(3016), - [anon_sym_CARET] = ACTIONS(3016), - [anon_sym_LBRACE_TILDE] = ACTIONS(3016), - [anon_sym_TILDE] = ACTIONS(3016), - [anon_sym_LBRACK_CARET] = ACTIONS(3016), - [anon_sym_BANG_LBRACK] = ACTIONS(3016), - [anon_sym_DOLLAR] = ACTIONS(3016), - [anon_sym_TODO] = ACTIONS(3016), - [anon_sym_WIP] = ACTIONS(3016), - [anon_sym_NOTE] = ACTIONS(3016), - [anon_sym_INFO] = ACTIONS(3016), - [anon_sym_XXX] = ACTIONS(3016), - [sym_fixme] = ACTIONS(3016), - [aux_sym__text_token1] = ACTIONS(3018), - [sym__block_close] = ACTIONS(3016), - [sym__newline] = ACTIONS(3016), - [sym__newline_inline] = ACTIONS(3016), - [sym__heading1_begin] = ACTIONS(3016), - [sym__heading2_begin] = ACTIONS(3016), - [sym__heading3_begin] = ACTIONS(3016), - [sym__heading4_begin] = ACTIONS(3016), - [sym__heading5_begin] = ACTIONS(3016), - [sym__heading6_begin] = ACTIONS(3016), - [sym__div_begin] = ACTIONS(3016), - [sym__code_block_begin] = ACTIONS(3016), - [sym_list_marker_dash] = ACTIONS(3016), - [sym_list_marker_star] = ACTIONS(3016), - [sym_list_marker_plus] = ACTIONS(3016), - [sym__list_marker_task_begin] = ACTIONS(3016), - [sym_list_marker_definition] = ACTIONS(3016), - [sym_list_marker_decimal_period] = ACTIONS(3016), - [sym_list_marker_lower_alpha_period] = ACTIONS(3016), - [sym_list_marker_upper_alpha_period] = ACTIONS(3016), - [sym_list_marker_lower_roman_period] = ACTIONS(3016), - [sym_list_marker_upper_roman_period] = ACTIONS(3016), - [sym_list_marker_decimal_paren] = ACTIONS(3016), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3016), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3016), - [sym_list_marker_lower_roman_paren] = ACTIONS(3016), - [sym_list_marker_upper_roman_paren] = ACTIONS(3016), - [sym_list_marker_decimal_parens] = ACTIONS(3016), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3016), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3016), - [sym_list_marker_lower_roman_parens] = ACTIONS(3016), - [sym_list_marker_upper_roman_parens] = ACTIONS(3016), - [sym__block_quote_begin] = ACTIONS(3016), - [sym__block_quote_continuation] = ACTIONS(3016), - [sym__thematic_break_dash] = ACTIONS(3016), - [sym__thematic_break_star] = ACTIONS(3016), - [sym__footnote_begin] = ACTIONS(3016), - [sym__verbatim_begin] = ACTIONS(3016), - }, - [382] = { - [ts_builtin_sym_end] = ACTIONS(3024), - [anon_sym_LBRACK] = ACTIONS(3026), - [anon_sym_PIPE] = ACTIONS(3024), - [anon_sym_LBRACE] = ACTIONS(3026), - [sym__whitespace1] = ACTIONS(3024), - [anon_sym_BSLASH] = ACTIONS(3026), - [sym_quotation_marks] = ACTIONS(3024), - [sym_ellipsis] = ACTIONS(3024), - [sym_em_dash] = ACTIONS(3024), - [sym_en_dash] = ACTIONS(3026), - [sym_backslash_escape] = ACTIONS(3026), - [anon_sym_LT] = ACTIONS(3024), - [anon_sym_LBRACE_] = ACTIONS(3024), - [anon_sym__] = ACTIONS(3024), - [anon_sym_LBRACE_STAR] = ACTIONS(3024), - [anon_sym_STAR] = ACTIONS(3024), - [anon_sym_LBRACE_EQ] = ACTIONS(3024), - [anon_sym_LBRACE_PLUS] = ACTIONS(3024), - [anon_sym_LBRACE_DASH] = ACTIONS(3024), - [sym_symbol] = ACTIONS(3024), - [anon_sym_LBRACE_CARET] = ACTIONS(3024), - [anon_sym_CARET] = ACTIONS(3024), - [anon_sym_LBRACE_TILDE] = ACTIONS(3024), - [anon_sym_TILDE] = ACTIONS(3024), - [anon_sym_LBRACK_CARET] = ACTIONS(3024), - [anon_sym_BANG_LBRACK] = ACTIONS(3024), - [anon_sym_DOLLAR] = ACTIONS(3024), - [anon_sym_TODO] = ACTIONS(3024), - [anon_sym_WIP] = ACTIONS(3024), - [anon_sym_NOTE] = ACTIONS(3024), - [anon_sym_INFO] = ACTIONS(3024), - [anon_sym_XXX] = ACTIONS(3024), - [sym_fixme] = ACTIONS(3024), - [aux_sym__text_token1] = ACTIONS(3026), - [sym__newline] = ACTIONS(3024), - [sym__newline_inline] = ACTIONS(3024), - [sym__heading1_begin] = ACTIONS(3024), - [sym__heading2_begin] = ACTIONS(3024), - [sym__heading3_begin] = ACTIONS(3024), - [sym__heading4_begin] = ACTIONS(3024), - [sym__heading5_begin] = ACTIONS(3024), - [sym__heading6_begin] = ACTIONS(3024), - [sym__div_begin] = ACTIONS(3024), - [sym__code_block_begin] = ACTIONS(3024), - [sym_list_marker_dash] = ACTIONS(3024), - [sym_list_marker_star] = ACTIONS(3024), - [sym_list_marker_plus] = ACTIONS(3024), - [sym__list_marker_task_begin] = ACTIONS(3024), - [sym_list_marker_definition] = ACTIONS(3024), - [sym_list_marker_decimal_period] = ACTIONS(3024), - [sym_list_marker_lower_alpha_period] = ACTIONS(3024), - [sym_list_marker_upper_alpha_period] = ACTIONS(3024), - [sym_list_marker_lower_roman_period] = ACTIONS(3024), - [sym_list_marker_upper_roman_period] = ACTIONS(3024), - [sym_list_marker_decimal_paren] = ACTIONS(3024), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3024), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3024), - [sym_list_marker_lower_roman_paren] = ACTIONS(3024), - [sym_list_marker_upper_roman_paren] = ACTIONS(3024), - [sym_list_marker_decimal_parens] = ACTIONS(3024), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3024), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3024), - [sym_list_marker_lower_roman_parens] = ACTIONS(3024), - [sym_list_marker_upper_roman_parens] = ACTIONS(3024), - [sym__block_quote_begin] = ACTIONS(3024), - [sym__block_quote_continuation] = ACTIONS(3024), - [sym__thematic_break_dash] = ACTIONS(3024), - [sym__thematic_break_star] = ACTIONS(3024), - [sym__footnote_begin] = ACTIONS(3024), - [sym__verbatim_begin] = ACTIONS(3024), - }, - [383] = { - [anon_sym_LBRACK] = ACTIONS(3028), - [anon_sym_PIPE] = ACTIONS(3030), - [anon_sym_LBRACE] = ACTIONS(3028), - [sym__whitespace1] = ACTIONS(3030), - [anon_sym_BSLASH] = ACTIONS(3028), - [sym_quotation_marks] = ACTIONS(3030), - [sym_ellipsis] = ACTIONS(3030), - [sym_em_dash] = ACTIONS(3030), - [sym_en_dash] = ACTIONS(3028), - [sym_backslash_escape] = ACTIONS(3028), - [anon_sym_LT] = ACTIONS(3030), - [anon_sym_LBRACE_] = ACTIONS(3030), - [anon_sym__] = ACTIONS(3030), - [anon_sym_LBRACE_STAR] = ACTIONS(3030), - [anon_sym_STAR] = ACTIONS(3030), - [anon_sym_LBRACE_EQ] = ACTIONS(3030), - [anon_sym_LBRACE_PLUS] = ACTIONS(3030), - [anon_sym_LBRACE_DASH] = ACTIONS(3030), - [sym_symbol] = ACTIONS(3030), - [anon_sym_LBRACE_CARET] = ACTIONS(3030), - [anon_sym_CARET] = ACTIONS(3030), - [anon_sym_LBRACE_TILDE] = ACTIONS(3030), - [anon_sym_TILDE] = ACTIONS(3030), - [anon_sym_LBRACK_CARET] = ACTIONS(3030), - [anon_sym_BANG_LBRACK] = ACTIONS(3030), - [anon_sym_DOLLAR] = ACTIONS(3030), - [anon_sym_TODO] = ACTIONS(3030), - [anon_sym_WIP] = ACTIONS(3030), - [anon_sym_NOTE] = ACTIONS(3030), - [anon_sym_INFO] = ACTIONS(3030), - [anon_sym_XXX] = ACTIONS(3030), - [sym_fixme] = ACTIONS(3030), - [aux_sym__text_token1] = ACTIONS(3028), - [sym__newline] = ACTIONS(3030), - [sym__newline_inline] = ACTIONS(3030), - [sym__heading1_begin] = ACTIONS(3030), - [sym__heading2_begin] = ACTIONS(3030), - [sym__heading3_begin] = ACTIONS(3030), - [sym__heading4_begin] = ACTIONS(3030), - [sym__heading5_begin] = ACTIONS(3030), - [sym__heading6_begin] = ACTIONS(3030), - [sym__div_begin] = ACTIONS(3030), - [sym__code_block_begin] = ACTIONS(3030), - [sym_list_marker_dash] = ACTIONS(3030), - [sym_list_marker_star] = ACTIONS(3030), - [sym_list_marker_plus] = ACTIONS(3030), - [sym__list_marker_task_begin] = ACTIONS(3030), - [sym_list_marker_definition] = ACTIONS(3030), - [sym_list_marker_decimal_period] = ACTIONS(3030), - [sym_list_marker_lower_alpha_period] = ACTIONS(3030), - [sym_list_marker_upper_alpha_period] = ACTIONS(3030), - [sym_list_marker_lower_roman_period] = ACTIONS(3030), - [sym_list_marker_upper_roman_period] = ACTIONS(3030), - [sym_list_marker_decimal_paren] = ACTIONS(3030), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3030), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3030), - [sym_list_marker_lower_roman_paren] = ACTIONS(3030), - [sym_list_marker_upper_roman_paren] = ACTIONS(3030), - [sym_list_marker_decimal_parens] = ACTIONS(3030), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3030), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3030), - [sym_list_marker_lower_roman_parens] = ACTIONS(3030), - [sym_list_marker_upper_roman_parens] = ACTIONS(3030), - [sym__block_quote_begin] = ACTIONS(3030), - [sym__block_quote_continuation] = ACTIONS(3030), - [sym__thematic_break_dash] = ACTIONS(3030), - [sym__thematic_break_star] = ACTIONS(3030), - [sym__footnote_begin] = ACTIONS(3030), - [sym__footnote_end] = ACTIONS(3030), - [sym__verbatim_begin] = ACTIONS(3030), - }, - [384] = { - [anon_sym_LBRACK] = ACTIONS(3032), - [anon_sym_PIPE] = ACTIONS(3034), - [anon_sym_LBRACE] = ACTIONS(3032), - [sym__whitespace1] = ACTIONS(3034), - [anon_sym_BSLASH] = ACTIONS(3032), - [sym_quotation_marks] = ACTIONS(3034), - [sym_ellipsis] = ACTIONS(3034), - [sym_em_dash] = ACTIONS(3034), - [sym_en_dash] = ACTIONS(3032), - [sym_backslash_escape] = ACTIONS(3032), - [anon_sym_LT] = ACTIONS(3034), - [anon_sym_LBRACE_] = ACTIONS(3034), - [anon_sym__] = ACTIONS(3034), - [anon_sym_LBRACE_STAR] = ACTIONS(3034), - [anon_sym_STAR] = ACTIONS(3034), - [anon_sym_LBRACE_EQ] = ACTIONS(3034), - [anon_sym_LBRACE_PLUS] = ACTIONS(3034), - [anon_sym_LBRACE_DASH] = ACTIONS(3034), - [sym_symbol] = ACTIONS(3034), - [anon_sym_LBRACE_CARET] = ACTIONS(3034), - [anon_sym_CARET] = ACTIONS(3034), - [anon_sym_LBRACE_TILDE] = ACTIONS(3034), - [anon_sym_TILDE] = ACTIONS(3034), - [anon_sym_LBRACK_CARET] = ACTIONS(3034), - [anon_sym_BANG_LBRACK] = ACTIONS(3034), - [anon_sym_DOLLAR] = ACTIONS(3034), - [anon_sym_TODO] = ACTIONS(3034), - [anon_sym_WIP] = ACTIONS(3034), - [anon_sym_NOTE] = ACTIONS(3034), - [anon_sym_INFO] = ACTIONS(3034), - [anon_sym_XXX] = ACTIONS(3034), - [sym_fixme] = ACTIONS(3034), - [aux_sym__text_token1] = ACTIONS(3032), - [sym__block_close] = ACTIONS(3034), - [sym__newline] = ACTIONS(3034), - [sym__newline_inline] = ACTIONS(3034), - [sym__heading1_begin] = ACTIONS(3034), - [sym__heading2_begin] = ACTIONS(3034), - [sym__heading3_begin] = ACTIONS(3034), - [sym__heading4_begin] = ACTIONS(3034), - [sym__heading5_begin] = ACTIONS(3034), - [sym__heading6_begin] = ACTIONS(3034), - [sym__div_begin] = ACTIONS(3034), - [sym__code_block_begin] = ACTIONS(3034), - [sym_list_marker_dash] = ACTIONS(3034), - [sym_list_marker_star] = ACTIONS(3034), - [sym_list_marker_plus] = ACTIONS(3034), - [sym__list_marker_task_begin] = ACTIONS(3034), - [sym_list_marker_definition] = ACTIONS(3034), - [sym_list_marker_decimal_period] = ACTIONS(3034), - [sym_list_marker_lower_alpha_period] = ACTIONS(3034), - [sym_list_marker_upper_alpha_period] = ACTIONS(3034), - [sym_list_marker_lower_roman_period] = ACTIONS(3034), - [sym_list_marker_upper_roman_period] = ACTIONS(3034), - [sym_list_marker_decimal_paren] = ACTIONS(3034), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3034), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3034), - [sym_list_marker_lower_roman_paren] = ACTIONS(3034), - [sym_list_marker_upper_roman_paren] = ACTIONS(3034), - [sym_list_marker_decimal_parens] = ACTIONS(3034), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3034), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3034), - [sym_list_marker_lower_roman_parens] = ACTIONS(3034), - [sym_list_marker_upper_roman_parens] = ACTIONS(3034), - [sym__block_quote_begin] = ACTIONS(3034), - [sym__block_quote_continuation] = ACTIONS(3034), - [sym__thematic_break_dash] = ACTIONS(3034), - [sym__thematic_break_star] = ACTIONS(3034), - [sym__footnote_begin] = ACTIONS(3034), - [sym__verbatim_begin] = ACTIONS(3034), - }, - [385] = { - [anon_sym_LBRACK] = ACTIONS(3036), - [anon_sym_PIPE] = ACTIONS(3038), - [anon_sym_LBRACE] = ACTIONS(3036), - [sym__whitespace1] = ACTIONS(3038), - [anon_sym_BSLASH] = ACTIONS(3036), - [sym_quotation_marks] = ACTIONS(3038), - [sym_ellipsis] = ACTIONS(3038), - [sym_em_dash] = ACTIONS(3038), - [sym_en_dash] = ACTIONS(3036), - [sym_backslash_escape] = ACTIONS(3036), - [anon_sym_LT] = ACTIONS(3038), - [anon_sym_LBRACE_] = ACTIONS(3038), - [anon_sym__] = ACTIONS(3038), - [anon_sym_LBRACE_STAR] = ACTIONS(3038), - [anon_sym_STAR] = ACTIONS(3038), - [anon_sym_LBRACE_EQ] = ACTIONS(3038), - [anon_sym_LBRACE_PLUS] = ACTIONS(3038), - [anon_sym_LBRACE_DASH] = ACTIONS(3038), - [sym_symbol] = ACTIONS(3038), - [anon_sym_LBRACE_CARET] = ACTIONS(3038), - [anon_sym_CARET] = ACTIONS(3038), - [anon_sym_LBRACE_TILDE] = ACTIONS(3038), - [anon_sym_TILDE] = ACTIONS(3038), - [anon_sym_LBRACK_CARET] = ACTIONS(3038), - [anon_sym_BANG_LBRACK] = ACTIONS(3038), - [anon_sym_DOLLAR] = ACTIONS(3038), - [anon_sym_TODO] = ACTIONS(3038), - [anon_sym_WIP] = ACTIONS(3038), - [anon_sym_NOTE] = ACTIONS(3038), - [anon_sym_INFO] = ACTIONS(3038), - [anon_sym_XXX] = ACTIONS(3038), - [sym_fixme] = ACTIONS(3038), - [aux_sym__text_token1] = ACTIONS(3036), - [sym__block_close] = ACTIONS(3038), - [sym__newline] = ACTIONS(3038), - [sym__newline_inline] = ACTIONS(3038), - [sym__heading1_begin] = ACTIONS(3038), - [sym__heading2_begin] = ACTIONS(3038), - [sym__heading3_begin] = ACTIONS(3038), - [sym__heading4_begin] = ACTIONS(3038), - [sym__heading5_begin] = ACTIONS(3038), - [sym__heading6_begin] = ACTIONS(3038), - [sym__div_begin] = ACTIONS(3038), - [sym__code_block_begin] = ACTIONS(3038), - [sym_list_marker_dash] = ACTIONS(3038), - [sym_list_marker_star] = ACTIONS(3038), - [sym_list_marker_plus] = ACTIONS(3038), - [sym__list_marker_task_begin] = ACTIONS(3038), - [sym_list_marker_definition] = ACTIONS(3038), - [sym_list_marker_decimal_period] = ACTIONS(3038), - [sym_list_marker_lower_alpha_period] = ACTIONS(3038), - [sym_list_marker_upper_alpha_period] = ACTIONS(3038), - [sym_list_marker_lower_roman_period] = ACTIONS(3038), - [sym_list_marker_upper_roman_period] = ACTIONS(3038), - [sym_list_marker_decimal_paren] = ACTIONS(3038), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3038), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3038), - [sym_list_marker_lower_roman_paren] = ACTIONS(3038), - [sym_list_marker_upper_roman_paren] = ACTIONS(3038), - [sym_list_marker_decimal_parens] = ACTIONS(3038), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3038), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3038), - [sym_list_marker_lower_roman_parens] = ACTIONS(3038), - [sym_list_marker_upper_roman_parens] = ACTIONS(3038), - [sym__block_quote_begin] = ACTIONS(3038), - [sym__block_quote_continuation] = ACTIONS(3038), - [sym__thematic_break_dash] = ACTIONS(3038), - [sym__thematic_break_star] = ACTIONS(3038), - [sym__footnote_begin] = ACTIONS(3038), - [sym__verbatim_begin] = ACTIONS(3038), - }, - [386] = { - [anon_sym_LBRACK] = ACTIONS(3040), - [anon_sym_PIPE] = ACTIONS(3042), - [anon_sym_LBRACE] = ACTIONS(3040), - [sym__whitespace1] = ACTIONS(3042), - [anon_sym_BSLASH] = ACTIONS(3040), - [sym_quotation_marks] = ACTIONS(3042), - [sym_ellipsis] = ACTIONS(3042), - [sym_em_dash] = ACTIONS(3042), - [sym_en_dash] = ACTIONS(3040), - [sym_backslash_escape] = ACTIONS(3040), - [anon_sym_LT] = ACTIONS(3042), - [anon_sym_LBRACE_] = ACTIONS(3042), - [anon_sym__] = ACTIONS(3042), - [anon_sym_LBRACE_STAR] = ACTIONS(3042), - [anon_sym_STAR] = ACTIONS(3042), - [anon_sym_LBRACE_EQ] = ACTIONS(3042), - [anon_sym_LBRACE_PLUS] = ACTIONS(3042), - [anon_sym_LBRACE_DASH] = ACTIONS(3042), - [sym_symbol] = ACTIONS(3042), - [anon_sym_LBRACE_CARET] = ACTIONS(3042), - [anon_sym_CARET] = ACTIONS(3042), - [anon_sym_LBRACE_TILDE] = ACTIONS(3042), - [anon_sym_TILDE] = ACTIONS(3042), - [anon_sym_LBRACK_CARET] = ACTIONS(3042), - [anon_sym_BANG_LBRACK] = ACTIONS(3042), - [anon_sym_DOLLAR] = ACTIONS(3042), - [anon_sym_TODO] = ACTIONS(3042), - [anon_sym_WIP] = ACTIONS(3042), - [anon_sym_NOTE] = ACTIONS(3042), - [anon_sym_INFO] = ACTIONS(3042), - [anon_sym_XXX] = ACTIONS(3042), - [sym_fixme] = ACTIONS(3042), - [aux_sym__text_token1] = ACTIONS(3040), - [sym__block_close] = ACTIONS(3042), - [sym__newline] = ACTIONS(3042), - [sym__newline_inline] = ACTIONS(3042), - [sym__heading1_begin] = ACTIONS(3042), - [sym__heading2_begin] = ACTIONS(3042), - [sym__heading3_begin] = ACTIONS(3042), - [sym__heading4_begin] = ACTIONS(3042), - [sym__heading5_begin] = ACTIONS(3042), - [sym__heading6_begin] = ACTIONS(3042), - [sym__div_begin] = ACTIONS(3042), - [sym__code_block_begin] = ACTIONS(3042), - [sym_list_marker_dash] = ACTIONS(3042), - [sym_list_marker_star] = ACTIONS(3042), - [sym_list_marker_plus] = ACTIONS(3042), - [sym__list_marker_task_begin] = ACTIONS(3042), - [sym_list_marker_definition] = ACTIONS(3042), - [sym_list_marker_decimal_period] = ACTIONS(3042), - [sym_list_marker_lower_alpha_period] = ACTIONS(3042), - [sym_list_marker_upper_alpha_period] = ACTIONS(3042), - [sym_list_marker_lower_roman_period] = ACTIONS(3042), - [sym_list_marker_upper_roman_period] = ACTIONS(3042), - [sym_list_marker_decimal_paren] = ACTIONS(3042), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3042), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3042), - [sym_list_marker_lower_roman_paren] = ACTIONS(3042), - [sym_list_marker_upper_roman_paren] = ACTIONS(3042), - [sym_list_marker_decimal_parens] = ACTIONS(3042), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3042), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3042), - [sym_list_marker_lower_roman_parens] = ACTIONS(3042), - [sym_list_marker_upper_roman_parens] = ACTIONS(3042), - [sym__block_quote_begin] = ACTIONS(3042), - [sym__block_quote_continuation] = ACTIONS(3042), - [sym__thematic_break_dash] = ACTIONS(3042), - [sym__thematic_break_star] = ACTIONS(3042), - [sym__footnote_begin] = ACTIONS(3042), - [sym__verbatim_begin] = ACTIONS(3042), - }, - [387] = { - [ts_builtin_sym_end] = ACTIONS(3030), - [anon_sym_LBRACK] = ACTIONS(3028), - [anon_sym_PIPE] = ACTIONS(3030), - [anon_sym_LBRACE] = ACTIONS(3028), - [sym__whitespace1] = ACTIONS(3030), - [anon_sym_BSLASH] = ACTIONS(3028), - [sym_quotation_marks] = ACTIONS(3030), - [sym_ellipsis] = ACTIONS(3030), - [sym_em_dash] = ACTIONS(3030), - [sym_en_dash] = ACTIONS(3028), - [sym_backslash_escape] = ACTIONS(3028), - [anon_sym_LT] = ACTIONS(3030), - [anon_sym_LBRACE_] = ACTIONS(3030), - [anon_sym__] = ACTIONS(3030), - [anon_sym_LBRACE_STAR] = ACTIONS(3030), - [anon_sym_STAR] = ACTIONS(3030), - [anon_sym_LBRACE_EQ] = ACTIONS(3030), - [anon_sym_LBRACE_PLUS] = ACTIONS(3030), - [anon_sym_LBRACE_DASH] = ACTIONS(3030), - [sym_symbol] = ACTIONS(3030), - [anon_sym_LBRACE_CARET] = ACTIONS(3030), - [anon_sym_CARET] = ACTIONS(3030), - [anon_sym_LBRACE_TILDE] = ACTIONS(3030), - [anon_sym_TILDE] = ACTIONS(3030), - [anon_sym_LBRACK_CARET] = ACTIONS(3030), - [anon_sym_BANG_LBRACK] = ACTIONS(3030), - [anon_sym_DOLLAR] = ACTIONS(3030), - [anon_sym_TODO] = ACTIONS(3030), - [anon_sym_WIP] = ACTIONS(3030), - [anon_sym_NOTE] = ACTIONS(3030), - [anon_sym_INFO] = ACTIONS(3030), - [anon_sym_XXX] = ACTIONS(3030), - [sym_fixme] = ACTIONS(3030), - [aux_sym__text_token1] = ACTIONS(3028), - [sym__newline] = ACTIONS(3030), - [sym__newline_inline] = ACTIONS(3030), - [sym__heading1_begin] = ACTIONS(3030), - [sym__heading2_begin] = ACTIONS(3030), - [sym__heading3_begin] = ACTIONS(3030), - [sym__heading4_begin] = ACTIONS(3030), - [sym__heading5_begin] = ACTIONS(3030), - [sym__heading6_begin] = ACTIONS(3030), - [sym__div_begin] = ACTIONS(3030), - [sym__code_block_begin] = ACTIONS(3030), - [sym_list_marker_dash] = ACTIONS(3030), - [sym_list_marker_star] = ACTIONS(3030), - [sym_list_marker_plus] = ACTIONS(3030), - [sym__list_marker_task_begin] = ACTIONS(3030), - [sym_list_marker_definition] = ACTIONS(3030), - [sym_list_marker_decimal_period] = ACTIONS(3030), - [sym_list_marker_lower_alpha_period] = ACTIONS(3030), - [sym_list_marker_upper_alpha_period] = ACTIONS(3030), - [sym_list_marker_lower_roman_period] = ACTIONS(3030), - [sym_list_marker_upper_roman_period] = ACTIONS(3030), - [sym_list_marker_decimal_paren] = ACTIONS(3030), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3030), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3030), - [sym_list_marker_lower_roman_paren] = ACTIONS(3030), - [sym_list_marker_upper_roman_paren] = ACTIONS(3030), - [sym_list_marker_decimal_parens] = ACTIONS(3030), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3030), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3030), - [sym_list_marker_lower_roman_parens] = ACTIONS(3030), - [sym_list_marker_upper_roman_parens] = ACTIONS(3030), - [sym__block_quote_begin] = ACTIONS(3030), - [sym__block_quote_continuation] = ACTIONS(3030), - [sym__thematic_break_dash] = ACTIONS(3030), - [sym__thematic_break_star] = ACTIONS(3030), - [sym__footnote_begin] = ACTIONS(3030), - [sym__verbatim_begin] = ACTIONS(3030), - }, - [388] = { - [anon_sym_LBRACK] = ACTIONS(3044), - [anon_sym_PIPE] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3044), - [sym__whitespace1] = ACTIONS(3046), - [anon_sym_BSLASH] = ACTIONS(3044), - [sym_quotation_marks] = ACTIONS(3046), - [sym_ellipsis] = ACTIONS(3046), - [sym_em_dash] = ACTIONS(3046), - [sym_en_dash] = ACTIONS(3044), - [sym_backslash_escape] = ACTIONS(3044), - [anon_sym_LT] = ACTIONS(3046), - [anon_sym_LBRACE_] = ACTIONS(3046), - [anon_sym__] = ACTIONS(3046), - [anon_sym_LBRACE_STAR] = ACTIONS(3046), - [anon_sym_STAR] = ACTIONS(3046), - [anon_sym_LBRACE_EQ] = ACTIONS(3046), - [anon_sym_LBRACE_PLUS] = ACTIONS(3046), - [anon_sym_LBRACE_DASH] = ACTIONS(3046), - [sym_symbol] = ACTIONS(3046), - [anon_sym_LBRACE_CARET] = ACTIONS(3046), - [anon_sym_CARET] = ACTIONS(3046), - [anon_sym_LBRACE_TILDE] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_LBRACK_CARET] = ACTIONS(3046), - [anon_sym_BANG_LBRACK] = ACTIONS(3046), - [anon_sym_DOLLAR] = ACTIONS(3046), - [anon_sym_TODO] = ACTIONS(3046), - [anon_sym_WIP] = ACTIONS(3046), - [anon_sym_NOTE] = ACTIONS(3046), - [anon_sym_INFO] = ACTIONS(3046), - [anon_sym_XXX] = ACTIONS(3046), - [sym_fixme] = ACTIONS(3046), - [aux_sym__text_token1] = ACTIONS(3044), - [sym__newline] = ACTIONS(3046), - [sym__newline_inline] = ACTIONS(3046), - [sym__heading1_begin] = ACTIONS(3046), - [sym__heading2_begin] = ACTIONS(3046), - [sym__heading3_begin] = ACTIONS(3046), - [sym__heading4_begin] = ACTIONS(3046), - [sym__heading5_begin] = ACTIONS(3046), - [sym__heading6_begin] = ACTIONS(3046), - [sym__div_begin] = ACTIONS(3046), - [sym__code_block_begin] = ACTIONS(3046), - [sym_list_marker_dash] = ACTIONS(3046), - [sym_list_marker_star] = ACTIONS(3046), - [sym_list_marker_plus] = ACTIONS(3046), - [sym__list_marker_task_begin] = ACTIONS(3046), - [sym_list_marker_definition] = ACTIONS(3046), - [sym_list_marker_decimal_period] = ACTIONS(3046), - [sym_list_marker_lower_alpha_period] = ACTIONS(3046), - [sym_list_marker_upper_alpha_period] = ACTIONS(3046), - [sym_list_marker_lower_roman_period] = ACTIONS(3046), - [sym_list_marker_upper_roman_period] = ACTIONS(3046), - [sym_list_marker_decimal_paren] = ACTIONS(3046), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3046), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3046), - [sym_list_marker_lower_roman_paren] = ACTIONS(3046), - [sym_list_marker_upper_roman_paren] = ACTIONS(3046), - [sym_list_marker_decimal_parens] = ACTIONS(3046), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3046), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3046), - [sym_list_marker_lower_roman_parens] = ACTIONS(3046), - [sym_list_marker_upper_roman_parens] = ACTIONS(3046), - [sym__block_quote_begin] = ACTIONS(3046), - [sym__block_quote_continuation] = ACTIONS(3046), - [sym__thematic_break_dash] = ACTIONS(3046), - [sym__thematic_break_star] = ACTIONS(3046), - [sym__footnote_begin] = ACTIONS(3046), - [sym__footnote_end] = ACTIONS(3046), - [sym__verbatim_begin] = ACTIONS(3046), - }, - [389] = { - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_PIPE] = ACTIONS(2952), - [anon_sym_LBRACE] = ACTIONS(2954), - [sym__whitespace1] = ACTIONS(2952), - [anon_sym_BSLASH] = ACTIONS(2954), - [sym_quotation_marks] = ACTIONS(2952), - [sym_ellipsis] = ACTIONS(2952), - [sym_em_dash] = ACTIONS(2952), - [sym_en_dash] = ACTIONS(2954), - [sym_backslash_escape] = ACTIONS(2954), - [anon_sym_LT] = ACTIONS(2952), - [anon_sym_LBRACE_] = ACTIONS(2952), - [anon_sym__] = ACTIONS(2952), - [anon_sym_LBRACE_STAR] = ACTIONS(2952), - [anon_sym_STAR] = ACTIONS(2952), - [anon_sym_LBRACE_EQ] = ACTIONS(2952), - [anon_sym_LBRACE_PLUS] = ACTIONS(2952), - [anon_sym_LBRACE_DASH] = ACTIONS(2952), - [sym_symbol] = ACTIONS(2952), - [anon_sym_LBRACE_CARET] = ACTIONS(2952), - [anon_sym_CARET] = ACTIONS(2952), - [anon_sym_LBRACE_TILDE] = ACTIONS(2952), - [anon_sym_TILDE] = ACTIONS(2952), - [anon_sym_LBRACK_CARET] = ACTIONS(2952), - [anon_sym_BANG_LBRACK] = ACTIONS(2952), - [anon_sym_DOLLAR] = ACTIONS(2952), - [anon_sym_TODO] = ACTIONS(2952), - [anon_sym_WIP] = ACTIONS(2952), - [anon_sym_NOTE] = ACTIONS(2952), - [anon_sym_INFO] = ACTIONS(2952), - [anon_sym_XXX] = ACTIONS(2952), - [sym_fixme] = ACTIONS(2952), - [aux_sym__text_token1] = ACTIONS(2954), - [sym__newline] = ACTIONS(2952), - [sym__newline_inline] = ACTIONS(2952), - [sym__heading1_begin] = ACTIONS(2952), - [sym__heading2_begin] = ACTIONS(2952), - [sym__heading3_begin] = ACTIONS(2952), - [sym__heading4_begin] = ACTIONS(2952), - [sym__heading5_begin] = ACTIONS(2952), - [sym__heading6_begin] = ACTIONS(2952), - [sym__div_begin] = ACTIONS(2952), - [sym__code_block_begin] = ACTIONS(2952), - [sym_list_marker_dash] = ACTIONS(2952), - [sym_list_marker_star] = ACTIONS(2952), - [sym_list_marker_plus] = ACTIONS(2952), - [sym__list_marker_task_begin] = ACTIONS(2952), - [sym_list_marker_definition] = ACTIONS(2952), - [sym_list_marker_decimal_period] = ACTIONS(2952), - [sym_list_marker_lower_alpha_period] = ACTIONS(2952), - [sym_list_marker_upper_alpha_period] = ACTIONS(2952), - [sym_list_marker_lower_roman_period] = ACTIONS(2952), - [sym_list_marker_upper_roman_period] = ACTIONS(2952), - [sym_list_marker_decimal_paren] = ACTIONS(2952), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2952), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2952), - [sym_list_marker_lower_roman_paren] = ACTIONS(2952), - [sym_list_marker_upper_roman_paren] = ACTIONS(2952), - [sym_list_marker_decimal_parens] = ACTIONS(2952), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2952), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2952), - [sym_list_marker_lower_roman_parens] = ACTIONS(2952), - [sym_list_marker_upper_roman_parens] = ACTIONS(2952), - [sym__block_quote_begin] = ACTIONS(2952), - [sym__block_quote_continuation] = ACTIONS(2952), - [sym__thematic_break_dash] = ACTIONS(2952), - [sym__thematic_break_star] = ACTIONS(2952), - [sym__footnote_begin] = ACTIONS(2952), - [sym__footnote_end] = ACTIONS(2952), - [sym__verbatim_begin] = ACTIONS(2952), - }, - [390] = { - [anon_sym_LBRACK] = ACTIONS(3048), - [anon_sym_PIPE] = ACTIONS(3050), - [anon_sym_LBRACE] = ACTIONS(3048), - [sym__whitespace1] = ACTIONS(3050), - [anon_sym_BSLASH] = ACTIONS(3048), - [sym_quotation_marks] = ACTIONS(3050), - [sym_ellipsis] = ACTIONS(3050), - [sym_em_dash] = ACTIONS(3050), - [sym_en_dash] = ACTIONS(3048), - [sym_backslash_escape] = ACTIONS(3048), - [anon_sym_LT] = ACTIONS(3050), - [anon_sym_LBRACE_] = ACTIONS(3050), - [anon_sym__] = ACTIONS(3050), - [anon_sym_LBRACE_STAR] = ACTIONS(3050), - [anon_sym_STAR] = ACTIONS(3050), - [anon_sym_LBRACE_EQ] = ACTIONS(3050), - [anon_sym_LBRACE_PLUS] = ACTIONS(3050), - [anon_sym_LBRACE_DASH] = ACTIONS(3050), - [sym_symbol] = ACTIONS(3050), - [anon_sym_LBRACE_CARET] = ACTIONS(3050), - [anon_sym_CARET] = ACTIONS(3050), - [anon_sym_LBRACE_TILDE] = ACTIONS(3050), - [anon_sym_TILDE] = ACTIONS(3050), - [anon_sym_LBRACK_CARET] = ACTIONS(3050), - [anon_sym_BANG_LBRACK] = ACTIONS(3050), - [anon_sym_DOLLAR] = ACTIONS(3050), - [anon_sym_TODO] = ACTIONS(3050), - [anon_sym_WIP] = ACTIONS(3050), - [anon_sym_NOTE] = ACTIONS(3050), - [anon_sym_INFO] = ACTIONS(3050), - [anon_sym_XXX] = ACTIONS(3050), - [sym_fixme] = ACTIONS(3050), - [aux_sym__text_token1] = ACTIONS(3048), - [sym__newline] = ACTIONS(3050), - [sym__newline_inline] = ACTIONS(3050), - [sym__heading1_begin] = ACTIONS(3050), - [sym__heading2_begin] = ACTIONS(3050), - [sym__heading3_begin] = ACTIONS(3050), - [sym__heading4_begin] = ACTIONS(3050), - [sym__heading5_begin] = ACTIONS(3050), - [sym__heading6_begin] = ACTIONS(3050), - [sym__div_begin] = ACTIONS(3050), - [sym__code_block_begin] = ACTIONS(3050), - [sym_list_marker_dash] = ACTIONS(3050), - [sym_list_marker_star] = ACTIONS(3050), - [sym_list_marker_plus] = ACTIONS(3050), - [sym__list_marker_task_begin] = ACTIONS(3050), - [sym_list_marker_definition] = ACTIONS(3050), - [sym_list_marker_decimal_period] = ACTIONS(3050), - [sym_list_marker_lower_alpha_period] = ACTIONS(3050), - [sym_list_marker_upper_alpha_period] = ACTIONS(3050), - [sym_list_marker_lower_roman_period] = ACTIONS(3050), - [sym_list_marker_upper_roman_period] = ACTIONS(3050), - [sym_list_marker_decimal_paren] = ACTIONS(3050), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3050), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3050), - [sym_list_marker_lower_roman_paren] = ACTIONS(3050), - [sym_list_marker_upper_roman_paren] = ACTIONS(3050), - [sym_list_marker_decimal_parens] = ACTIONS(3050), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3050), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3050), - [sym_list_marker_lower_roman_parens] = ACTIONS(3050), - [sym_list_marker_upper_roman_parens] = ACTIONS(3050), - [sym__block_quote_begin] = ACTIONS(3050), - [sym__block_quote_continuation] = ACTIONS(3050), - [sym__thematic_break_dash] = ACTIONS(3050), - [sym__thematic_break_star] = ACTIONS(3050), - [sym__footnote_begin] = ACTIONS(3050), - [sym__footnote_end] = ACTIONS(3050), - [sym__verbatim_begin] = ACTIONS(3050), - }, - [391] = { - [anon_sym_LBRACK] = ACTIONS(3052), - [anon_sym_PIPE] = ACTIONS(3054), - [anon_sym_LBRACE] = ACTIONS(3052), - [sym__whitespace1] = ACTIONS(3054), - [anon_sym_BSLASH] = ACTIONS(3052), - [sym_quotation_marks] = ACTIONS(3054), - [sym_ellipsis] = ACTIONS(3054), - [sym_em_dash] = ACTIONS(3054), - [sym_en_dash] = ACTIONS(3052), - [sym_backslash_escape] = ACTIONS(3052), - [anon_sym_LT] = ACTIONS(3054), - [anon_sym_LBRACE_] = ACTIONS(3054), - [anon_sym__] = ACTIONS(3054), - [anon_sym_LBRACE_STAR] = ACTIONS(3054), - [anon_sym_STAR] = ACTIONS(3054), - [anon_sym_LBRACE_EQ] = ACTIONS(3054), - [anon_sym_LBRACE_PLUS] = ACTIONS(3054), - [anon_sym_LBRACE_DASH] = ACTIONS(3054), - [sym_symbol] = ACTIONS(3054), - [anon_sym_LBRACE_CARET] = ACTIONS(3054), - [anon_sym_CARET] = ACTIONS(3054), - [anon_sym_LBRACE_TILDE] = ACTIONS(3054), - [anon_sym_TILDE] = ACTIONS(3054), - [anon_sym_LBRACK_CARET] = ACTIONS(3054), - [anon_sym_BANG_LBRACK] = ACTIONS(3054), - [anon_sym_DOLLAR] = ACTIONS(3054), - [anon_sym_TODO] = ACTIONS(3054), - [anon_sym_WIP] = ACTIONS(3054), - [anon_sym_NOTE] = ACTIONS(3054), - [anon_sym_INFO] = ACTIONS(3054), - [anon_sym_XXX] = ACTIONS(3054), - [sym_fixme] = ACTIONS(3054), - [aux_sym__text_token1] = ACTIONS(3052), - [sym__block_close] = ACTIONS(3054), - [sym__newline] = ACTIONS(3054), - [sym__newline_inline] = ACTIONS(3054), - [sym__heading1_begin] = ACTIONS(3054), - [sym__heading2_begin] = ACTIONS(3054), - [sym__heading3_begin] = ACTIONS(3054), - [sym__heading4_begin] = ACTIONS(3054), - [sym__heading5_begin] = ACTIONS(3054), - [sym__heading6_begin] = ACTIONS(3054), - [sym__div_begin] = ACTIONS(3054), - [sym__code_block_begin] = ACTIONS(3054), - [sym_list_marker_dash] = ACTIONS(3054), - [sym_list_marker_star] = ACTIONS(3054), - [sym_list_marker_plus] = ACTIONS(3054), - [sym__list_marker_task_begin] = ACTIONS(3054), - [sym_list_marker_definition] = ACTIONS(3054), - [sym_list_marker_decimal_period] = ACTIONS(3054), - [sym_list_marker_lower_alpha_period] = ACTIONS(3054), - [sym_list_marker_upper_alpha_period] = ACTIONS(3054), - [sym_list_marker_lower_roman_period] = ACTIONS(3054), - [sym_list_marker_upper_roman_period] = ACTIONS(3054), - [sym_list_marker_decimal_paren] = ACTIONS(3054), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3054), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3054), - [sym_list_marker_lower_roman_paren] = ACTIONS(3054), - [sym_list_marker_upper_roman_paren] = ACTIONS(3054), - [sym_list_marker_decimal_parens] = ACTIONS(3054), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3054), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3054), - [sym_list_marker_lower_roman_parens] = ACTIONS(3054), - [sym_list_marker_upper_roman_parens] = ACTIONS(3054), - [sym__block_quote_begin] = ACTIONS(3054), - [sym__block_quote_continuation] = ACTIONS(3054), - [sym__thematic_break_dash] = ACTIONS(3054), - [sym__thematic_break_star] = ACTIONS(3054), - [sym__footnote_begin] = ACTIONS(3054), - [sym__verbatim_begin] = ACTIONS(3054), - }, - [392] = { - [anon_sym_LBRACK] = ACTIONS(3056), - [anon_sym_PIPE] = ACTIONS(3058), - [anon_sym_LBRACE] = ACTIONS(3056), - [sym__whitespace1] = ACTIONS(3058), - [anon_sym_BSLASH] = ACTIONS(3056), - [sym_quotation_marks] = ACTIONS(3058), - [sym_ellipsis] = ACTIONS(3058), - [sym_em_dash] = ACTIONS(3058), - [sym_en_dash] = ACTIONS(3056), - [sym_backslash_escape] = ACTIONS(3056), - [anon_sym_LT] = ACTIONS(3058), - [anon_sym_LBRACE_] = ACTIONS(3058), - [anon_sym__] = ACTIONS(3058), - [anon_sym_LBRACE_STAR] = ACTIONS(3058), - [anon_sym_STAR] = ACTIONS(3058), - [anon_sym_LBRACE_EQ] = ACTIONS(3058), - [anon_sym_LBRACE_PLUS] = ACTIONS(3058), - [anon_sym_LBRACE_DASH] = ACTIONS(3058), - [sym_symbol] = ACTIONS(3058), - [anon_sym_LBRACE_CARET] = ACTIONS(3058), - [anon_sym_CARET] = ACTIONS(3058), - [anon_sym_LBRACE_TILDE] = ACTIONS(3058), - [anon_sym_TILDE] = ACTIONS(3058), - [anon_sym_LBRACK_CARET] = ACTIONS(3058), - [anon_sym_BANG_LBRACK] = ACTIONS(3058), - [anon_sym_DOLLAR] = ACTIONS(3058), - [anon_sym_TODO] = ACTIONS(3058), - [anon_sym_WIP] = ACTIONS(3058), - [anon_sym_NOTE] = ACTIONS(3058), - [anon_sym_INFO] = ACTIONS(3058), - [anon_sym_XXX] = ACTIONS(3058), - [sym_fixme] = ACTIONS(3058), - [aux_sym__text_token1] = ACTIONS(3056), - [sym__block_close] = ACTIONS(3058), - [sym__newline] = ACTIONS(3058), - [sym__newline_inline] = ACTIONS(3058), - [sym__heading1_begin] = ACTIONS(3058), - [sym__heading2_begin] = ACTIONS(3058), - [sym__heading3_begin] = ACTIONS(3058), - [sym__heading4_begin] = ACTIONS(3058), - [sym__heading5_begin] = ACTIONS(3058), - [sym__heading6_begin] = ACTIONS(3058), - [sym__div_begin] = ACTIONS(3058), - [sym__code_block_begin] = ACTIONS(3058), - [sym_list_marker_dash] = ACTIONS(3058), - [sym_list_marker_star] = ACTIONS(3058), - [sym_list_marker_plus] = ACTIONS(3058), - [sym__list_marker_task_begin] = ACTIONS(3058), - [sym_list_marker_definition] = ACTIONS(3058), - [sym_list_marker_decimal_period] = ACTIONS(3058), - [sym_list_marker_lower_alpha_period] = ACTIONS(3058), - [sym_list_marker_upper_alpha_period] = ACTIONS(3058), - [sym_list_marker_lower_roman_period] = ACTIONS(3058), - [sym_list_marker_upper_roman_period] = ACTIONS(3058), - [sym_list_marker_decimal_paren] = ACTIONS(3058), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3058), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3058), - [sym_list_marker_lower_roman_paren] = ACTIONS(3058), - [sym_list_marker_upper_roman_paren] = ACTIONS(3058), - [sym_list_marker_decimal_parens] = ACTIONS(3058), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3058), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3058), - [sym_list_marker_lower_roman_parens] = ACTIONS(3058), - [sym_list_marker_upper_roman_parens] = ACTIONS(3058), - [sym__block_quote_begin] = ACTIONS(3058), - [sym__block_quote_continuation] = ACTIONS(3058), - [sym__thematic_break_dash] = ACTIONS(3058), - [sym__thematic_break_star] = ACTIONS(3058), - [sym__footnote_begin] = ACTIONS(3058), - [sym__verbatim_begin] = ACTIONS(3058), - }, - [393] = { - [ts_builtin_sym_end] = ACTIONS(2716), - [anon_sym_LBRACK] = ACTIONS(2714), - [anon_sym_PIPE] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2714), - [sym__whitespace1] = ACTIONS(2716), - [anon_sym_BSLASH] = ACTIONS(2714), - [sym_quotation_marks] = ACTIONS(2716), - [sym_ellipsis] = ACTIONS(2716), - [sym_em_dash] = ACTIONS(2716), - [sym_en_dash] = ACTIONS(2714), - [sym_backslash_escape] = ACTIONS(2714), - [anon_sym_LT] = ACTIONS(2716), - [anon_sym_LBRACE_] = ACTIONS(2716), - [anon_sym__] = ACTIONS(2716), - [anon_sym_LBRACE_STAR] = ACTIONS(2716), - [anon_sym_STAR] = ACTIONS(2716), - [anon_sym_LBRACE_EQ] = ACTIONS(2716), - [anon_sym_LBRACE_PLUS] = ACTIONS(2716), - [anon_sym_LBRACE_DASH] = ACTIONS(2716), - [sym_symbol] = ACTIONS(2716), - [anon_sym_LBRACE_CARET] = ACTIONS(2716), - [anon_sym_CARET] = ACTIONS(2716), - [anon_sym_LBRACE_TILDE] = ACTIONS(2716), - [anon_sym_TILDE] = ACTIONS(2716), - [anon_sym_LBRACK_CARET] = ACTIONS(2716), - [anon_sym_BANG_LBRACK] = ACTIONS(2716), - [anon_sym_DOLLAR] = ACTIONS(2716), - [anon_sym_TODO] = ACTIONS(2716), - [anon_sym_WIP] = ACTIONS(2716), - [anon_sym_NOTE] = ACTIONS(2716), - [anon_sym_INFO] = ACTIONS(2716), - [anon_sym_XXX] = ACTIONS(2716), - [sym_fixme] = ACTIONS(2716), - [aux_sym__text_token1] = ACTIONS(2714), - [sym__newline] = ACTIONS(2716), - [sym__newline_inline] = ACTIONS(2716), - [sym__heading1_begin] = ACTIONS(2716), - [sym__heading2_begin] = ACTIONS(2716), - [sym__heading3_begin] = ACTIONS(2716), - [sym__heading4_begin] = ACTIONS(2716), - [sym__heading5_begin] = ACTIONS(2716), - [sym__heading6_begin] = ACTIONS(2716), - [sym__div_begin] = ACTIONS(2716), - [sym__code_block_begin] = ACTIONS(2716), - [sym_list_marker_dash] = ACTIONS(2716), - [sym_list_marker_star] = ACTIONS(2716), - [sym_list_marker_plus] = ACTIONS(2716), - [sym__list_marker_task_begin] = ACTIONS(2716), - [sym_list_marker_definition] = ACTIONS(2716), - [sym_list_marker_decimal_period] = ACTIONS(2716), - [sym_list_marker_lower_alpha_period] = ACTIONS(2716), - [sym_list_marker_upper_alpha_period] = ACTIONS(2716), - [sym_list_marker_lower_roman_period] = ACTIONS(2716), - [sym_list_marker_upper_roman_period] = ACTIONS(2716), - [sym_list_marker_decimal_paren] = ACTIONS(2716), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2716), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2716), - [sym_list_marker_lower_roman_paren] = ACTIONS(2716), - [sym_list_marker_upper_roman_paren] = ACTIONS(2716), - [sym_list_marker_decimal_parens] = ACTIONS(2716), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2716), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2716), - [sym_list_marker_lower_roman_parens] = ACTIONS(2716), - [sym_list_marker_upper_roman_parens] = ACTIONS(2716), - [sym__block_quote_begin] = ACTIONS(2716), - [sym__block_quote_continuation] = ACTIONS(2716), - [sym__thematic_break_dash] = ACTIONS(2716), - [sym__thematic_break_star] = ACTIONS(2716), - [sym__footnote_begin] = ACTIONS(2716), - [sym__verbatim_begin] = ACTIONS(2716), - }, - [394] = { - [anon_sym_LBRACK] = ACTIONS(3060), - [anon_sym_PIPE] = ACTIONS(3062), - [anon_sym_LBRACE] = ACTIONS(3060), - [sym__whitespace1] = ACTIONS(3062), - [anon_sym_BSLASH] = ACTIONS(3060), - [sym_quotation_marks] = ACTIONS(3062), - [sym_ellipsis] = ACTIONS(3062), - [sym_em_dash] = ACTIONS(3062), - [sym_en_dash] = ACTIONS(3060), - [sym_backslash_escape] = ACTIONS(3060), - [anon_sym_LT] = ACTIONS(3062), - [anon_sym_LBRACE_] = ACTIONS(3062), - [anon_sym__] = ACTIONS(3062), - [anon_sym_LBRACE_STAR] = ACTIONS(3062), - [anon_sym_STAR] = ACTIONS(3062), - [anon_sym_LBRACE_EQ] = ACTIONS(3062), - [anon_sym_LBRACE_PLUS] = ACTIONS(3062), - [anon_sym_LBRACE_DASH] = ACTIONS(3062), - [sym_symbol] = ACTIONS(3062), - [anon_sym_LBRACE_CARET] = ACTIONS(3062), - [anon_sym_CARET] = ACTIONS(3062), - [anon_sym_LBRACE_TILDE] = ACTIONS(3062), - [anon_sym_TILDE] = ACTIONS(3062), - [anon_sym_LBRACK_CARET] = ACTIONS(3062), - [anon_sym_BANG_LBRACK] = ACTIONS(3062), - [anon_sym_DOLLAR] = ACTIONS(3062), - [anon_sym_TODO] = ACTIONS(3062), - [anon_sym_WIP] = ACTIONS(3062), - [anon_sym_NOTE] = ACTIONS(3062), - [anon_sym_INFO] = ACTIONS(3062), - [anon_sym_XXX] = ACTIONS(3062), - [sym_fixme] = ACTIONS(3062), - [aux_sym__text_token1] = ACTIONS(3060), - [sym__block_close] = ACTIONS(3062), - [sym__newline] = ACTIONS(3062), - [sym__newline_inline] = ACTIONS(3062), - [sym__heading1_begin] = ACTIONS(3062), - [sym__heading2_begin] = ACTIONS(3062), - [sym__heading3_begin] = ACTIONS(3062), - [sym__heading4_begin] = ACTIONS(3062), - [sym__heading5_begin] = ACTIONS(3062), - [sym__heading6_begin] = ACTIONS(3062), - [sym__div_begin] = ACTIONS(3062), - [sym__code_block_begin] = ACTIONS(3062), - [sym_list_marker_dash] = ACTIONS(3062), - [sym_list_marker_star] = ACTIONS(3062), - [sym_list_marker_plus] = ACTIONS(3062), - [sym__list_marker_task_begin] = ACTIONS(3062), - [sym_list_marker_definition] = ACTIONS(3062), - [sym_list_marker_decimal_period] = ACTIONS(3062), - [sym_list_marker_lower_alpha_period] = ACTIONS(3062), - [sym_list_marker_upper_alpha_period] = ACTIONS(3062), - [sym_list_marker_lower_roman_period] = ACTIONS(3062), - [sym_list_marker_upper_roman_period] = ACTIONS(3062), - [sym_list_marker_decimal_paren] = ACTIONS(3062), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3062), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3062), - [sym_list_marker_lower_roman_paren] = ACTIONS(3062), - [sym_list_marker_upper_roman_paren] = ACTIONS(3062), - [sym_list_marker_decimal_parens] = ACTIONS(3062), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3062), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3062), - [sym_list_marker_lower_roman_parens] = ACTIONS(3062), - [sym_list_marker_upper_roman_parens] = ACTIONS(3062), - [sym__block_quote_begin] = ACTIONS(3062), - [sym__block_quote_continuation] = ACTIONS(3062), - [sym__thematic_break_dash] = ACTIONS(3062), - [sym__thematic_break_star] = ACTIONS(3062), - [sym__footnote_begin] = ACTIONS(3062), - [sym__verbatim_begin] = ACTIONS(3062), - }, - [395] = { - [ts_builtin_sym_end] = ACTIONS(3064), - [anon_sym_LBRACK] = ACTIONS(3066), - [anon_sym_PIPE] = ACTIONS(3064), - [anon_sym_LBRACE] = ACTIONS(3066), - [sym__whitespace1] = ACTIONS(3064), - [anon_sym_BSLASH] = ACTIONS(3066), - [sym_quotation_marks] = ACTIONS(3064), - [sym_ellipsis] = ACTIONS(3064), - [sym_em_dash] = ACTIONS(3064), - [sym_en_dash] = ACTIONS(3066), - [sym_backslash_escape] = ACTIONS(3066), - [anon_sym_LT] = ACTIONS(3064), - [anon_sym_LBRACE_] = ACTIONS(3064), - [anon_sym__] = ACTIONS(3064), - [anon_sym_LBRACE_STAR] = ACTIONS(3064), - [anon_sym_STAR] = ACTIONS(3064), - [anon_sym_LBRACE_EQ] = ACTIONS(3064), - [anon_sym_LBRACE_PLUS] = ACTIONS(3064), - [anon_sym_LBRACE_DASH] = ACTIONS(3064), - [sym_symbol] = ACTIONS(3064), - [anon_sym_LBRACE_CARET] = ACTIONS(3064), - [anon_sym_CARET] = ACTIONS(3064), - [anon_sym_LBRACE_TILDE] = ACTIONS(3064), - [anon_sym_TILDE] = ACTIONS(3064), - [anon_sym_LBRACK_CARET] = ACTIONS(3064), - [anon_sym_BANG_LBRACK] = ACTIONS(3064), - [anon_sym_DOLLAR] = ACTIONS(3064), - [anon_sym_TODO] = ACTIONS(3064), - [anon_sym_WIP] = ACTIONS(3064), - [anon_sym_NOTE] = ACTIONS(3064), - [anon_sym_INFO] = ACTIONS(3064), - [anon_sym_XXX] = ACTIONS(3064), - [sym_fixme] = ACTIONS(3064), - [aux_sym__text_token1] = ACTIONS(3066), - [sym__newline] = ACTIONS(3064), - [sym__newline_inline] = ACTIONS(3064), - [sym__heading1_begin] = ACTIONS(3064), - [sym__heading2_begin] = ACTIONS(3064), - [sym__heading3_begin] = ACTIONS(3064), - [sym__heading4_begin] = ACTIONS(3064), - [sym__heading5_begin] = ACTIONS(3064), - [sym__heading6_begin] = ACTIONS(3064), - [sym__div_begin] = ACTIONS(3064), - [sym__code_block_begin] = ACTIONS(3064), - [sym_list_marker_dash] = ACTIONS(3064), - [sym_list_marker_star] = ACTIONS(3064), - [sym_list_marker_plus] = ACTIONS(3064), - [sym__list_marker_task_begin] = ACTIONS(3064), - [sym_list_marker_definition] = ACTIONS(3064), - [sym_list_marker_decimal_period] = ACTIONS(3064), - [sym_list_marker_lower_alpha_period] = ACTIONS(3064), - [sym_list_marker_upper_alpha_period] = ACTIONS(3064), - [sym_list_marker_lower_roman_period] = ACTIONS(3064), - [sym_list_marker_upper_roman_period] = ACTIONS(3064), - [sym_list_marker_decimal_paren] = ACTIONS(3064), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3064), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3064), - [sym_list_marker_lower_roman_paren] = ACTIONS(3064), - [sym_list_marker_upper_roman_paren] = ACTIONS(3064), - [sym_list_marker_decimal_parens] = ACTIONS(3064), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3064), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3064), - [sym_list_marker_lower_roman_parens] = ACTIONS(3064), - [sym_list_marker_upper_roman_parens] = ACTIONS(3064), - [sym__block_quote_begin] = ACTIONS(3064), - [sym__block_quote_continuation] = ACTIONS(3064), - [sym__thematic_break_dash] = ACTIONS(3064), - [sym__thematic_break_star] = ACTIONS(3064), - [sym__footnote_begin] = ACTIONS(3064), - [sym__verbatim_begin] = ACTIONS(3064), - }, - [396] = { - [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_PIPE] = ACTIONS(2990), - [anon_sym_LBRACE] = ACTIONS(2988), - [sym__whitespace1] = ACTIONS(2990), - [anon_sym_BSLASH] = ACTIONS(2988), - [sym_quotation_marks] = ACTIONS(2990), - [sym_ellipsis] = ACTIONS(2990), - [sym_em_dash] = ACTIONS(2990), - [sym_en_dash] = ACTIONS(2988), - [sym_backslash_escape] = ACTIONS(2988), - [anon_sym_LT] = ACTIONS(2990), - [anon_sym_LBRACE_] = ACTIONS(2990), - [anon_sym__] = ACTIONS(2990), - [anon_sym_LBRACE_STAR] = ACTIONS(2990), - [anon_sym_STAR] = ACTIONS(2990), - [anon_sym_LBRACE_EQ] = ACTIONS(2990), - [anon_sym_LBRACE_PLUS] = ACTIONS(2990), - [anon_sym_LBRACE_DASH] = ACTIONS(2990), - [sym_symbol] = ACTIONS(2990), - [anon_sym_LBRACE_CARET] = ACTIONS(2990), - [anon_sym_CARET] = ACTIONS(2990), - [anon_sym_LBRACE_TILDE] = ACTIONS(2990), - [anon_sym_TILDE] = ACTIONS(2990), - [anon_sym_LBRACK_CARET] = ACTIONS(2990), - [anon_sym_BANG_LBRACK] = ACTIONS(2990), - [anon_sym_DOLLAR] = ACTIONS(2990), - [anon_sym_TODO] = ACTIONS(2990), - [anon_sym_WIP] = ACTIONS(2990), - [anon_sym_NOTE] = ACTIONS(2990), - [anon_sym_INFO] = ACTIONS(2990), - [anon_sym_XXX] = ACTIONS(2990), - [sym_fixme] = ACTIONS(2990), - [aux_sym__text_token1] = ACTIONS(2988), - [sym__newline] = ACTIONS(2990), - [sym__newline_inline] = ACTIONS(2990), - [sym__heading1_begin] = ACTIONS(2990), - [sym__heading2_begin] = ACTIONS(2990), - [sym__heading3_begin] = ACTIONS(2990), - [sym__heading4_begin] = ACTIONS(2990), - [sym__heading5_begin] = ACTIONS(2990), - [sym__heading6_begin] = ACTIONS(2990), - [sym__div_begin] = ACTIONS(2990), - [sym__code_block_begin] = ACTIONS(2990), - [sym_list_marker_dash] = ACTIONS(2990), - [sym_list_marker_star] = ACTIONS(2990), - [sym_list_marker_plus] = ACTIONS(2990), - [sym__list_marker_task_begin] = ACTIONS(2990), - [sym_list_marker_definition] = ACTIONS(2990), - [sym_list_marker_decimal_period] = ACTIONS(2990), - [sym_list_marker_lower_alpha_period] = ACTIONS(2990), - [sym_list_marker_upper_alpha_period] = ACTIONS(2990), - [sym_list_marker_lower_roman_period] = ACTIONS(2990), - [sym_list_marker_upper_roman_period] = ACTIONS(2990), - [sym_list_marker_decimal_paren] = ACTIONS(2990), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2990), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2990), - [sym_list_marker_lower_roman_paren] = ACTIONS(2990), - [sym_list_marker_upper_roman_paren] = ACTIONS(2990), - [sym_list_marker_decimal_parens] = ACTIONS(2990), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2990), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2990), - [sym_list_marker_lower_roman_parens] = ACTIONS(2990), - [sym_list_marker_upper_roman_parens] = ACTIONS(2990), - [sym__block_quote_begin] = ACTIONS(2990), - [sym__block_quote_continuation] = ACTIONS(2990), - [sym__thematic_break_dash] = ACTIONS(2990), - [sym__thematic_break_star] = ACTIONS(2990), - [sym__footnote_begin] = ACTIONS(2990), - [sym__footnote_end] = ACTIONS(2990), - [sym__verbatim_begin] = ACTIONS(2990), - }, - [397] = { - [anon_sym_LBRACK] = ACTIONS(2992), - [anon_sym_PIPE] = ACTIONS(2994), - [anon_sym_LBRACE] = ACTIONS(2992), - [sym__whitespace1] = ACTIONS(2994), - [anon_sym_BSLASH] = ACTIONS(2992), - [sym_quotation_marks] = ACTIONS(2994), - [sym_ellipsis] = ACTIONS(2994), - [sym_em_dash] = ACTIONS(2994), - [sym_en_dash] = ACTIONS(2992), - [sym_backslash_escape] = ACTIONS(2992), - [anon_sym_LT] = ACTIONS(2994), - [anon_sym_LBRACE_] = ACTIONS(2994), - [anon_sym__] = ACTIONS(2994), - [anon_sym_LBRACE_STAR] = ACTIONS(2994), - [anon_sym_STAR] = ACTIONS(2994), - [anon_sym_LBRACE_EQ] = ACTIONS(2994), - [anon_sym_LBRACE_PLUS] = ACTIONS(2994), - [anon_sym_LBRACE_DASH] = ACTIONS(2994), - [sym_symbol] = ACTIONS(2994), - [anon_sym_LBRACE_CARET] = ACTIONS(2994), - [anon_sym_CARET] = ACTIONS(2994), - [anon_sym_LBRACE_TILDE] = ACTIONS(2994), - [anon_sym_TILDE] = ACTIONS(2994), - [anon_sym_LBRACK_CARET] = ACTIONS(2994), - [anon_sym_BANG_LBRACK] = ACTIONS(2994), - [anon_sym_DOLLAR] = ACTIONS(2994), - [anon_sym_TODO] = ACTIONS(2994), - [anon_sym_WIP] = ACTIONS(2994), - [anon_sym_NOTE] = ACTIONS(2994), - [anon_sym_INFO] = ACTIONS(2994), - [anon_sym_XXX] = ACTIONS(2994), - [sym_fixme] = ACTIONS(2994), - [aux_sym__text_token1] = ACTIONS(2992), - [sym__newline] = ACTIONS(2994), - [sym__newline_inline] = ACTIONS(2994), - [sym__heading1_begin] = ACTIONS(2994), - [sym__heading2_begin] = ACTIONS(2994), - [sym__heading3_begin] = ACTIONS(2994), - [sym__heading4_begin] = ACTIONS(2994), - [sym__heading5_begin] = ACTIONS(2994), - [sym__heading6_begin] = ACTIONS(2994), - [sym__div_begin] = ACTIONS(2994), - [sym__code_block_begin] = ACTIONS(2994), - [sym_list_marker_dash] = ACTIONS(2994), - [sym_list_marker_star] = ACTIONS(2994), - [sym_list_marker_plus] = ACTIONS(2994), - [sym__list_marker_task_begin] = ACTIONS(2994), - [sym_list_marker_definition] = ACTIONS(2994), - [sym_list_marker_decimal_period] = ACTIONS(2994), - [sym_list_marker_lower_alpha_period] = ACTIONS(2994), - [sym_list_marker_upper_alpha_period] = ACTIONS(2994), - [sym_list_marker_lower_roman_period] = ACTIONS(2994), - [sym_list_marker_upper_roman_period] = ACTIONS(2994), - [sym_list_marker_decimal_paren] = ACTIONS(2994), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2994), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2994), - [sym_list_marker_lower_roman_paren] = ACTIONS(2994), - [sym_list_marker_upper_roman_paren] = ACTIONS(2994), - [sym_list_marker_decimal_parens] = ACTIONS(2994), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2994), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2994), - [sym_list_marker_lower_roman_parens] = ACTIONS(2994), - [sym_list_marker_upper_roman_parens] = ACTIONS(2994), - [sym__block_quote_begin] = ACTIONS(2994), - [sym__block_quote_continuation] = ACTIONS(2994), - [sym__thematic_break_dash] = ACTIONS(2994), - [sym__thematic_break_star] = ACTIONS(2994), - [sym__footnote_begin] = ACTIONS(2994), - [sym__footnote_end] = ACTIONS(2994), - [sym__verbatim_begin] = ACTIONS(2994), - }, - [398] = { - [anon_sym_LBRACK] = ACTIONS(3068), - [anon_sym_PIPE] = ACTIONS(3070), - [anon_sym_LBRACE] = ACTIONS(3068), - [sym__whitespace1] = ACTIONS(3070), - [anon_sym_BSLASH] = ACTIONS(3068), - [sym_quotation_marks] = ACTIONS(3070), - [sym_ellipsis] = ACTIONS(3070), - [sym_em_dash] = ACTIONS(3070), - [sym_en_dash] = ACTIONS(3068), - [sym_backslash_escape] = ACTIONS(3068), - [anon_sym_LT] = ACTIONS(3070), - [anon_sym_LBRACE_] = ACTIONS(3070), - [anon_sym__] = ACTIONS(3070), - [anon_sym_LBRACE_STAR] = ACTIONS(3070), - [anon_sym_STAR] = ACTIONS(3070), - [anon_sym_LBRACE_EQ] = ACTIONS(3070), - [anon_sym_LBRACE_PLUS] = ACTIONS(3070), - [anon_sym_LBRACE_DASH] = ACTIONS(3070), - [sym_symbol] = ACTIONS(3070), - [anon_sym_LBRACE_CARET] = ACTIONS(3070), - [anon_sym_CARET] = ACTIONS(3070), - [anon_sym_LBRACE_TILDE] = ACTIONS(3070), - [anon_sym_TILDE] = ACTIONS(3070), - [anon_sym_LBRACK_CARET] = ACTIONS(3070), - [anon_sym_BANG_LBRACK] = ACTIONS(3070), - [anon_sym_DOLLAR] = ACTIONS(3070), - [anon_sym_TODO] = ACTIONS(3070), - [anon_sym_WIP] = ACTIONS(3070), - [anon_sym_NOTE] = ACTIONS(3070), - [anon_sym_INFO] = ACTIONS(3070), - [anon_sym_XXX] = ACTIONS(3070), - [sym_fixme] = ACTIONS(3070), - [aux_sym__text_token1] = ACTIONS(3068), - [sym__block_close] = ACTIONS(3070), - [sym__newline] = ACTIONS(3070), - [sym__newline_inline] = ACTIONS(3070), - [sym__heading1_begin] = ACTIONS(3070), - [sym__heading2_begin] = ACTIONS(3070), - [sym__heading3_begin] = ACTIONS(3070), - [sym__heading4_begin] = ACTIONS(3070), - [sym__heading5_begin] = ACTIONS(3070), - [sym__heading6_begin] = ACTIONS(3070), - [sym__div_begin] = ACTIONS(3070), - [sym__code_block_begin] = ACTIONS(3070), - [sym_list_marker_dash] = ACTIONS(3070), - [sym_list_marker_star] = ACTIONS(3070), - [sym_list_marker_plus] = ACTIONS(3070), - [sym__list_marker_task_begin] = ACTIONS(3070), - [sym_list_marker_definition] = ACTIONS(3070), - [sym_list_marker_decimal_period] = ACTIONS(3070), - [sym_list_marker_lower_alpha_period] = ACTIONS(3070), - [sym_list_marker_upper_alpha_period] = ACTIONS(3070), - [sym_list_marker_lower_roman_period] = ACTIONS(3070), - [sym_list_marker_upper_roman_period] = ACTIONS(3070), - [sym_list_marker_decimal_paren] = ACTIONS(3070), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3070), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3070), - [sym_list_marker_lower_roman_paren] = ACTIONS(3070), - [sym_list_marker_upper_roman_paren] = ACTIONS(3070), - [sym_list_marker_decimal_parens] = ACTIONS(3070), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3070), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3070), - [sym_list_marker_lower_roman_parens] = ACTIONS(3070), - [sym_list_marker_upper_roman_parens] = ACTIONS(3070), - [sym__block_quote_begin] = ACTIONS(3070), - [sym__block_quote_continuation] = ACTIONS(3070), - [sym__thematic_break_dash] = ACTIONS(3070), - [sym__thematic_break_star] = ACTIONS(3070), - [sym__footnote_begin] = ACTIONS(3070), - [sym__verbatim_begin] = ACTIONS(3070), - }, - [399] = { - [ts_builtin_sym_end] = ACTIONS(3072), - [anon_sym_LBRACK] = ACTIONS(3074), - [anon_sym_PIPE] = ACTIONS(3072), - [anon_sym_LBRACE] = ACTIONS(3074), - [sym__whitespace1] = ACTIONS(3072), - [anon_sym_BSLASH] = ACTIONS(3074), - [sym_quotation_marks] = ACTIONS(3072), - [sym_ellipsis] = ACTIONS(3072), - [sym_em_dash] = ACTIONS(3072), - [sym_en_dash] = ACTIONS(3074), - [sym_backslash_escape] = ACTIONS(3074), - [anon_sym_LT] = ACTIONS(3072), - [anon_sym_LBRACE_] = ACTIONS(3072), - [anon_sym__] = ACTIONS(3072), - [anon_sym_LBRACE_STAR] = ACTIONS(3072), - [anon_sym_STAR] = ACTIONS(3072), - [anon_sym_LBRACE_EQ] = ACTIONS(3072), - [anon_sym_LBRACE_PLUS] = ACTIONS(3072), - [anon_sym_LBRACE_DASH] = ACTIONS(3072), - [sym_symbol] = ACTIONS(3072), - [anon_sym_LBRACE_CARET] = ACTIONS(3072), - [anon_sym_CARET] = ACTIONS(3072), - [anon_sym_LBRACE_TILDE] = ACTIONS(3072), - [anon_sym_TILDE] = ACTIONS(3072), - [anon_sym_LBRACK_CARET] = ACTIONS(3072), - [anon_sym_BANG_LBRACK] = ACTIONS(3072), - [anon_sym_DOLLAR] = ACTIONS(3072), - [anon_sym_TODO] = ACTIONS(3072), - [anon_sym_WIP] = ACTIONS(3072), - [anon_sym_NOTE] = ACTIONS(3072), - [anon_sym_INFO] = ACTIONS(3072), - [anon_sym_XXX] = ACTIONS(3072), - [sym_fixme] = ACTIONS(3072), - [aux_sym__text_token1] = ACTIONS(3074), - [sym__newline] = ACTIONS(3072), - [sym__newline_inline] = ACTIONS(3072), - [sym__heading1_begin] = ACTIONS(3072), - [sym__heading2_begin] = ACTIONS(3072), - [sym__heading3_begin] = ACTIONS(3072), - [sym__heading4_begin] = ACTIONS(3072), - [sym__heading5_begin] = ACTIONS(3072), - [sym__heading6_begin] = ACTIONS(3072), - [sym__div_begin] = ACTIONS(3072), - [sym__code_block_begin] = ACTIONS(3072), - [sym_list_marker_dash] = ACTIONS(3072), - [sym_list_marker_star] = ACTIONS(3072), - [sym_list_marker_plus] = ACTIONS(3072), - [sym__list_marker_task_begin] = ACTIONS(3072), - [sym_list_marker_definition] = ACTIONS(3072), - [sym_list_marker_decimal_period] = ACTIONS(3072), - [sym_list_marker_lower_alpha_period] = ACTIONS(3072), - [sym_list_marker_upper_alpha_period] = ACTIONS(3072), - [sym_list_marker_lower_roman_period] = ACTIONS(3072), - [sym_list_marker_upper_roman_period] = ACTIONS(3072), - [sym_list_marker_decimal_paren] = ACTIONS(3072), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3072), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3072), - [sym_list_marker_lower_roman_paren] = ACTIONS(3072), - [sym_list_marker_upper_roman_paren] = ACTIONS(3072), - [sym_list_marker_decimal_parens] = ACTIONS(3072), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3072), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3072), - [sym_list_marker_lower_roman_parens] = ACTIONS(3072), - [sym_list_marker_upper_roman_parens] = ACTIONS(3072), - [sym__block_quote_begin] = ACTIONS(3072), - [sym__block_quote_continuation] = ACTIONS(3072), - [sym__thematic_break_dash] = ACTIONS(3072), - [sym__thematic_break_star] = ACTIONS(3072), - [sym__footnote_begin] = ACTIONS(3072), - [sym__verbatim_begin] = ACTIONS(3072), - }, - [400] = { - [ts_builtin_sym_end] = ACTIONS(3076), - [anon_sym_LBRACK] = ACTIONS(3078), - [anon_sym_PIPE] = ACTIONS(3076), - [anon_sym_LBRACE] = ACTIONS(3078), - [sym__whitespace1] = ACTIONS(3076), - [anon_sym_BSLASH] = ACTIONS(3078), - [sym_quotation_marks] = ACTIONS(3076), - [sym_ellipsis] = ACTIONS(3076), - [sym_em_dash] = ACTIONS(3076), - [sym_en_dash] = ACTIONS(3078), - [sym_backslash_escape] = ACTIONS(3078), - [anon_sym_LT] = ACTIONS(3076), - [anon_sym_LBRACE_] = ACTIONS(3076), - [anon_sym__] = ACTIONS(3076), - [anon_sym_LBRACE_STAR] = ACTIONS(3076), - [anon_sym_STAR] = ACTIONS(3076), - [anon_sym_LBRACE_EQ] = ACTIONS(3076), - [anon_sym_LBRACE_PLUS] = ACTIONS(3076), - [anon_sym_LBRACE_DASH] = ACTIONS(3076), - [sym_symbol] = ACTIONS(3076), - [anon_sym_LBRACE_CARET] = ACTIONS(3076), - [anon_sym_CARET] = ACTIONS(3076), - [anon_sym_LBRACE_TILDE] = ACTIONS(3076), - [anon_sym_TILDE] = ACTIONS(3076), - [anon_sym_LBRACK_CARET] = ACTIONS(3076), - [anon_sym_BANG_LBRACK] = ACTIONS(3076), - [anon_sym_DOLLAR] = ACTIONS(3076), - [anon_sym_TODO] = ACTIONS(3076), - [anon_sym_WIP] = ACTIONS(3076), - [anon_sym_NOTE] = ACTIONS(3076), - [anon_sym_INFO] = ACTIONS(3076), - [anon_sym_XXX] = ACTIONS(3076), - [sym_fixme] = ACTIONS(3076), - [aux_sym__text_token1] = ACTIONS(3078), - [sym__newline] = ACTIONS(3076), - [sym__newline_inline] = ACTIONS(3076), - [sym__heading1_begin] = ACTIONS(3076), - [sym__heading2_begin] = ACTIONS(3076), - [sym__heading3_begin] = ACTIONS(3076), - [sym__heading4_begin] = ACTIONS(3076), - [sym__heading5_begin] = ACTIONS(3076), - [sym__heading6_begin] = ACTIONS(3076), - [sym__div_begin] = ACTIONS(3076), - [sym__code_block_begin] = ACTIONS(3076), - [sym_list_marker_dash] = ACTIONS(3076), - [sym_list_marker_star] = ACTIONS(3076), - [sym_list_marker_plus] = ACTIONS(3076), - [sym__list_marker_task_begin] = ACTIONS(3076), - [sym_list_marker_definition] = ACTIONS(3076), - [sym_list_marker_decimal_period] = ACTIONS(3076), - [sym_list_marker_lower_alpha_period] = ACTIONS(3076), - [sym_list_marker_upper_alpha_period] = ACTIONS(3076), - [sym_list_marker_lower_roman_period] = ACTIONS(3076), - [sym_list_marker_upper_roman_period] = ACTIONS(3076), - [sym_list_marker_decimal_paren] = ACTIONS(3076), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3076), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3076), - [sym_list_marker_lower_roman_paren] = ACTIONS(3076), - [sym_list_marker_upper_roman_paren] = ACTIONS(3076), - [sym_list_marker_decimal_parens] = ACTIONS(3076), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3076), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3076), - [sym_list_marker_lower_roman_parens] = ACTIONS(3076), - [sym_list_marker_upper_roman_parens] = ACTIONS(3076), - [sym__block_quote_begin] = ACTIONS(3076), - [sym__block_quote_continuation] = ACTIONS(3076), - [sym__thematic_break_dash] = ACTIONS(3076), - [sym__thematic_break_star] = ACTIONS(3076), - [sym__footnote_begin] = ACTIONS(3076), - [sym__verbatim_begin] = ACTIONS(3076), - }, - [401] = { - [ts_builtin_sym_end] = ACTIONS(3080), - [anon_sym_LBRACK] = ACTIONS(3082), - [anon_sym_PIPE] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(3082), - [sym__whitespace1] = ACTIONS(3080), - [anon_sym_BSLASH] = ACTIONS(3082), - [sym_quotation_marks] = ACTIONS(3080), - [sym_ellipsis] = ACTIONS(3080), - [sym_em_dash] = ACTIONS(3080), - [sym_en_dash] = ACTIONS(3082), - [sym_backslash_escape] = ACTIONS(3082), - [anon_sym_LT] = ACTIONS(3080), - [anon_sym_LBRACE_] = ACTIONS(3080), - [anon_sym__] = ACTIONS(3080), - [anon_sym_LBRACE_STAR] = ACTIONS(3080), - [anon_sym_STAR] = ACTIONS(3080), - [anon_sym_LBRACE_EQ] = ACTIONS(3080), - [anon_sym_LBRACE_PLUS] = ACTIONS(3080), - [anon_sym_LBRACE_DASH] = ACTIONS(3080), - [sym_symbol] = ACTIONS(3080), - [anon_sym_LBRACE_CARET] = ACTIONS(3080), - [anon_sym_CARET] = ACTIONS(3080), - [anon_sym_LBRACE_TILDE] = ACTIONS(3080), - [anon_sym_TILDE] = ACTIONS(3080), - [anon_sym_LBRACK_CARET] = ACTIONS(3080), - [anon_sym_BANG_LBRACK] = ACTIONS(3080), - [anon_sym_DOLLAR] = ACTIONS(3080), - [anon_sym_TODO] = ACTIONS(3080), - [anon_sym_WIP] = ACTIONS(3080), - [anon_sym_NOTE] = ACTIONS(3080), - [anon_sym_INFO] = ACTIONS(3080), - [anon_sym_XXX] = ACTIONS(3080), - [sym_fixme] = ACTIONS(3080), - [aux_sym__text_token1] = ACTIONS(3082), - [sym__newline] = ACTIONS(3080), - [sym__newline_inline] = ACTIONS(3080), - [sym__heading1_begin] = ACTIONS(3080), - [sym__heading2_begin] = ACTIONS(3080), - [sym__heading3_begin] = ACTIONS(3080), - [sym__heading4_begin] = ACTIONS(3080), - [sym__heading5_begin] = ACTIONS(3080), - [sym__heading6_begin] = ACTIONS(3080), - [sym__div_begin] = ACTIONS(3080), - [sym__code_block_begin] = ACTIONS(3080), - [sym_list_marker_dash] = ACTIONS(3080), - [sym_list_marker_star] = ACTIONS(3080), - [sym_list_marker_plus] = ACTIONS(3080), - [sym__list_marker_task_begin] = ACTIONS(3080), - [sym_list_marker_definition] = ACTIONS(3080), - [sym_list_marker_decimal_period] = ACTIONS(3080), - [sym_list_marker_lower_alpha_period] = ACTIONS(3080), - [sym_list_marker_upper_alpha_period] = ACTIONS(3080), - [sym_list_marker_lower_roman_period] = ACTIONS(3080), - [sym_list_marker_upper_roman_period] = ACTIONS(3080), - [sym_list_marker_decimal_paren] = ACTIONS(3080), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3080), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3080), - [sym_list_marker_lower_roman_paren] = ACTIONS(3080), - [sym_list_marker_upper_roman_paren] = ACTIONS(3080), - [sym_list_marker_decimal_parens] = ACTIONS(3080), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3080), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3080), - [sym_list_marker_lower_roman_parens] = ACTIONS(3080), - [sym_list_marker_upper_roman_parens] = ACTIONS(3080), - [sym__block_quote_begin] = ACTIONS(3080), - [sym__block_quote_continuation] = ACTIONS(3080), - [sym__thematic_break_dash] = ACTIONS(3080), - [sym__thematic_break_star] = ACTIONS(3080), - [sym__footnote_begin] = ACTIONS(3080), - [sym__verbatim_begin] = ACTIONS(3080), - }, - [402] = { - [anon_sym_LBRACK] = ACTIONS(3084), - [anon_sym_PIPE] = ACTIONS(3086), - [anon_sym_LBRACE] = ACTIONS(3084), - [sym__whitespace1] = ACTIONS(3086), - [anon_sym_BSLASH] = ACTIONS(3084), - [sym_quotation_marks] = ACTIONS(3086), - [sym_ellipsis] = ACTIONS(3086), - [sym_em_dash] = ACTIONS(3086), - [sym_en_dash] = ACTIONS(3084), - [sym_backslash_escape] = ACTIONS(3084), - [anon_sym_LT] = ACTIONS(3086), - [anon_sym_LBRACE_] = ACTIONS(3086), - [anon_sym__] = ACTIONS(3086), - [anon_sym_LBRACE_STAR] = ACTIONS(3086), - [anon_sym_STAR] = ACTIONS(3086), - [anon_sym_LBRACE_EQ] = ACTIONS(3086), - [anon_sym_LBRACE_PLUS] = ACTIONS(3086), - [anon_sym_LBRACE_DASH] = ACTIONS(3086), - [sym_symbol] = ACTIONS(3086), - [anon_sym_LBRACE_CARET] = ACTIONS(3086), - [anon_sym_CARET] = ACTIONS(3086), - [anon_sym_LBRACE_TILDE] = ACTIONS(3086), - [anon_sym_TILDE] = ACTIONS(3086), - [anon_sym_LBRACK_CARET] = ACTIONS(3086), - [anon_sym_BANG_LBRACK] = ACTIONS(3086), - [anon_sym_DOLLAR] = ACTIONS(3086), - [anon_sym_TODO] = ACTIONS(3086), - [anon_sym_WIP] = ACTIONS(3086), - [anon_sym_NOTE] = ACTIONS(3086), - [anon_sym_INFO] = ACTIONS(3086), - [anon_sym_XXX] = ACTIONS(3086), - [sym_fixme] = ACTIONS(3086), - [aux_sym__text_token1] = ACTIONS(3084), - [sym__block_close] = ACTIONS(3086), - [sym__newline] = ACTIONS(3086), - [sym__newline_inline] = ACTIONS(3086), - [sym__heading1_begin] = ACTIONS(3086), - [sym__heading2_begin] = ACTIONS(3086), - [sym__heading3_begin] = ACTIONS(3086), - [sym__heading4_begin] = ACTIONS(3086), - [sym__heading5_begin] = ACTIONS(3086), - [sym__heading6_begin] = ACTIONS(3086), - [sym__div_begin] = ACTIONS(3086), - [sym__code_block_begin] = ACTIONS(3086), - [sym_list_marker_dash] = ACTIONS(3086), - [sym_list_marker_star] = ACTIONS(3086), - [sym_list_marker_plus] = ACTIONS(3086), - [sym__list_marker_task_begin] = ACTIONS(3086), - [sym_list_marker_definition] = ACTIONS(3086), - [sym_list_marker_decimal_period] = ACTIONS(3086), - [sym_list_marker_lower_alpha_period] = ACTIONS(3086), - [sym_list_marker_upper_alpha_period] = ACTIONS(3086), - [sym_list_marker_lower_roman_period] = ACTIONS(3086), - [sym_list_marker_upper_roman_period] = ACTIONS(3086), - [sym_list_marker_decimal_paren] = ACTIONS(3086), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3086), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3086), - [sym_list_marker_lower_roman_paren] = ACTIONS(3086), - [sym_list_marker_upper_roman_paren] = ACTIONS(3086), - [sym_list_marker_decimal_parens] = ACTIONS(3086), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3086), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3086), - [sym_list_marker_lower_roman_parens] = ACTIONS(3086), - [sym_list_marker_upper_roman_parens] = ACTIONS(3086), - [sym__block_quote_begin] = ACTIONS(3086), - [sym__block_quote_continuation] = ACTIONS(3086), - [sym__thematic_break_dash] = ACTIONS(3086), - [sym__thematic_break_star] = ACTIONS(3086), - [sym__footnote_begin] = ACTIONS(3086), - [sym__verbatim_begin] = ACTIONS(3086), - }, - [403] = { - [ts_builtin_sym_end] = ACTIONS(3088), - [anon_sym_LBRACK] = ACTIONS(3090), - [anon_sym_PIPE] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(3090), - [sym__whitespace1] = ACTIONS(3088), - [anon_sym_BSLASH] = ACTIONS(3090), - [sym_quotation_marks] = ACTIONS(3088), - [sym_ellipsis] = ACTIONS(3088), - [sym_em_dash] = ACTIONS(3088), - [sym_en_dash] = ACTIONS(3090), - [sym_backslash_escape] = ACTIONS(3090), - [anon_sym_LT] = ACTIONS(3088), - [anon_sym_LBRACE_] = ACTIONS(3088), - [anon_sym__] = ACTIONS(3088), - [anon_sym_LBRACE_STAR] = ACTIONS(3088), - [anon_sym_STAR] = ACTIONS(3088), - [anon_sym_LBRACE_EQ] = ACTIONS(3088), - [anon_sym_LBRACE_PLUS] = ACTIONS(3088), - [anon_sym_LBRACE_DASH] = ACTIONS(3088), - [sym_symbol] = ACTIONS(3088), - [anon_sym_LBRACE_CARET] = ACTIONS(3088), - [anon_sym_CARET] = ACTIONS(3088), - [anon_sym_LBRACE_TILDE] = ACTIONS(3088), - [anon_sym_TILDE] = ACTIONS(3088), - [anon_sym_LBRACK_CARET] = ACTIONS(3088), - [anon_sym_BANG_LBRACK] = ACTIONS(3088), - [anon_sym_DOLLAR] = ACTIONS(3088), - [anon_sym_TODO] = ACTIONS(3088), - [anon_sym_WIP] = ACTIONS(3088), - [anon_sym_NOTE] = ACTIONS(3088), - [anon_sym_INFO] = ACTIONS(3088), - [anon_sym_XXX] = ACTIONS(3088), - [sym_fixme] = ACTIONS(3088), - [aux_sym__text_token1] = ACTIONS(3090), - [sym__newline] = ACTIONS(3088), - [sym__newline_inline] = ACTIONS(3088), - [sym__heading1_begin] = ACTIONS(3088), - [sym__heading2_begin] = ACTIONS(3088), - [sym__heading3_begin] = ACTIONS(3088), - [sym__heading4_begin] = ACTIONS(3088), - [sym__heading5_begin] = ACTIONS(3088), - [sym__heading6_begin] = ACTIONS(3088), - [sym__div_begin] = ACTIONS(3088), - [sym__code_block_begin] = ACTIONS(3088), - [sym_list_marker_dash] = ACTIONS(3088), - [sym_list_marker_star] = ACTIONS(3088), - [sym_list_marker_plus] = ACTIONS(3088), - [sym__list_marker_task_begin] = ACTIONS(3088), - [sym_list_marker_definition] = ACTIONS(3088), - [sym_list_marker_decimal_period] = ACTIONS(3088), - [sym_list_marker_lower_alpha_period] = ACTIONS(3088), - [sym_list_marker_upper_alpha_period] = ACTIONS(3088), - [sym_list_marker_lower_roman_period] = ACTIONS(3088), - [sym_list_marker_upper_roman_period] = ACTIONS(3088), - [sym_list_marker_decimal_paren] = ACTIONS(3088), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3088), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3088), - [sym_list_marker_lower_roman_paren] = ACTIONS(3088), - [sym_list_marker_upper_roman_paren] = ACTIONS(3088), - [sym_list_marker_decimal_parens] = ACTIONS(3088), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3088), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3088), - [sym_list_marker_lower_roman_parens] = ACTIONS(3088), - [sym_list_marker_upper_roman_parens] = ACTIONS(3088), - [sym__block_quote_begin] = ACTIONS(3088), - [sym__block_quote_continuation] = ACTIONS(3088), - [sym__thematic_break_dash] = ACTIONS(3088), - [sym__thematic_break_star] = ACTIONS(3088), - [sym__footnote_begin] = ACTIONS(3088), - [sym__verbatim_begin] = ACTIONS(3088), - }, - [404] = { - [anon_sym_LBRACK] = ACTIONS(3018), - [anon_sym_PIPE] = ACTIONS(3016), - [anon_sym_LBRACE] = ACTIONS(3018), - [sym__whitespace1] = ACTIONS(3016), - [anon_sym_BSLASH] = ACTIONS(3018), - [sym_quotation_marks] = ACTIONS(3016), - [sym_ellipsis] = ACTIONS(3016), - [sym_em_dash] = ACTIONS(3016), - [sym_en_dash] = ACTIONS(3018), - [sym_backslash_escape] = ACTIONS(3018), - [anon_sym_LT] = ACTIONS(3016), - [anon_sym_LBRACE_] = ACTIONS(3016), - [anon_sym__] = ACTIONS(3016), - [anon_sym_LBRACE_STAR] = ACTIONS(3016), - [anon_sym_STAR] = ACTIONS(3016), - [anon_sym_LBRACE_EQ] = ACTIONS(3016), - [anon_sym_LBRACE_PLUS] = ACTIONS(3016), - [anon_sym_LBRACE_DASH] = ACTIONS(3016), - [sym_symbol] = ACTIONS(3016), - [anon_sym_LBRACE_CARET] = ACTIONS(3016), - [anon_sym_CARET] = ACTIONS(3016), - [anon_sym_LBRACE_TILDE] = ACTIONS(3016), - [anon_sym_TILDE] = ACTIONS(3016), - [anon_sym_LBRACK_CARET] = ACTIONS(3016), - [anon_sym_BANG_LBRACK] = ACTIONS(3016), - [anon_sym_DOLLAR] = ACTIONS(3016), - [anon_sym_TODO] = ACTIONS(3016), - [anon_sym_WIP] = ACTIONS(3016), - [anon_sym_NOTE] = ACTIONS(3016), - [anon_sym_INFO] = ACTIONS(3016), - [anon_sym_XXX] = ACTIONS(3016), - [sym_fixme] = ACTIONS(3016), - [aux_sym__text_token1] = ACTIONS(3018), - [sym__newline] = ACTIONS(3016), - [sym__newline_inline] = ACTIONS(3016), - [sym__heading1_begin] = ACTIONS(3016), - [sym__heading2_begin] = ACTIONS(3016), - [sym__heading3_begin] = ACTIONS(3016), - [sym__heading4_begin] = ACTIONS(3016), - [sym__heading5_begin] = ACTIONS(3016), - [sym__heading6_begin] = ACTIONS(3016), - [sym__div_begin] = ACTIONS(3016), - [sym__code_block_begin] = ACTIONS(3016), - [sym_list_marker_dash] = ACTIONS(3016), - [sym_list_marker_star] = ACTIONS(3016), - [sym_list_marker_plus] = ACTIONS(3016), - [sym__list_marker_task_begin] = ACTIONS(3016), - [sym_list_marker_definition] = ACTIONS(3016), - [sym_list_marker_decimal_period] = ACTIONS(3016), - [sym_list_marker_lower_alpha_period] = ACTIONS(3016), - [sym_list_marker_upper_alpha_period] = ACTIONS(3016), - [sym_list_marker_lower_roman_period] = ACTIONS(3016), - [sym_list_marker_upper_roman_period] = ACTIONS(3016), - [sym_list_marker_decimal_paren] = ACTIONS(3016), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3016), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3016), - [sym_list_marker_lower_roman_paren] = ACTIONS(3016), - [sym_list_marker_upper_roman_paren] = ACTIONS(3016), - [sym_list_marker_decimal_parens] = ACTIONS(3016), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3016), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3016), - [sym_list_marker_lower_roman_parens] = ACTIONS(3016), - [sym_list_marker_upper_roman_parens] = ACTIONS(3016), - [sym__block_quote_begin] = ACTIONS(3016), - [sym__block_quote_continuation] = ACTIONS(3016), - [sym__thematic_break_dash] = ACTIONS(3016), - [sym__thematic_break_star] = ACTIONS(3016), - [sym__footnote_begin] = ACTIONS(3016), - [sym__footnote_end] = ACTIONS(3016), - [sym__verbatim_begin] = ACTIONS(3016), - }, - [405] = { - [ts_builtin_sym_end] = ACTIONS(3092), - [anon_sym_LBRACK] = ACTIONS(3094), - [anon_sym_PIPE] = ACTIONS(3092), - [anon_sym_LBRACE] = ACTIONS(3094), - [sym__whitespace1] = ACTIONS(3092), - [anon_sym_BSLASH] = ACTIONS(3094), - [sym_quotation_marks] = ACTIONS(3092), - [sym_ellipsis] = ACTIONS(3092), - [sym_em_dash] = ACTIONS(3092), - [sym_en_dash] = ACTIONS(3094), - [sym_backslash_escape] = ACTIONS(3094), - [anon_sym_LT] = ACTIONS(3092), - [anon_sym_LBRACE_] = ACTIONS(3092), - [anon_sym__] = ACTIONS(3092), - [anon_sym_LBRACE_STAR] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(3092), - [anon_sym_LBRACE_EQ] = ACTIONS(3092), - [anon_sym_LBRACE_PLUS] = ACTIONS(3092), - [anon_sym_LBRACE_DASH] = ACTIONS(3092), - [sym_symbol] = ACTIONS(3092), - [anon_sym_LBRACE_CARET] = ACTIONS(3092), - [anon_sym_CARET] = ACTIONS(3092), - [anon_sym_LBRACE_TILDE] = ACTIONS(3092), - [anon_sym_TILDE] = ACTIONS(3092), - [anon_sym_LBRACK_CARET] = ACTIONS(3092), - [anon_sym_BANG_LBRACK] = ACTIONS(3092), - [anon_sym_DOLLAR] = ACTIONS(3092), - [anon_sym_TODO] = ACTIONS(3092), - [anon_sym_WIP] = ACTIONS(3092), - [anon_sym_NOTE] = ACTIONS(3092), - [anon_sym_INFO] = ACTIONS(3092), - [anon_sym_XXX] = ACTIONS(3092), - [sym_fixme] = ACTIONS(3092), - [aux_sym__text_token1] = ACTIONS(3094), - [sym__newline] = ACTIONS(3092), - [sym__newline_inline] = ACTIONS(3092), - [sym__heading1_begin] = ACTIONS(3092), - [sym__heading2_begin] = ACTIONS(3092), - [sym__heading3_begin] = ACTIONS(3092), - [sym__heading4_begin] = ACTIONS(3092), - [sym__heading5_begin] = ACTIONS(3092), - [sym__heading6_begin] = ACTIONS(3092), - [sym__div_begin] = ACTIONS(3092), - [sym__code_block_begin] = ACTIONS(3092), - [sym_list_marker_dash] = ACTIONS(3092), - [sym_list_marker_star] = ACTIONS(3092), - [sym_list_marker_plus] = ACTIONS(3092), - [sym__list_marker_task_begin] = ACTIONS(3092), - [sym_list_marker_definition] = ACTIONS(3092), - [sym_list_marker_decimal_period] = ACTIONS(3092), - [sym_list_marker_lower_alpha_period] = ACTIONS(3092), - [sym_list_marker_upper_alpha_period] = ACTIONS(3092), - [sym_list_marker_lower_roman_period] = ACTIONS(3092), - [sym_list_marker_upper_roman_period] = ACTIONS(3092), - [sym_list_marker_decimal_paren] = ACTIONS(3092), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3092), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3092), - [sym_list_marker_lower_roman_paren] = ACTIONS(3092), - [sym_list_marker_upper_roman_paren] = ACTIONS(3092), - [sym_list_marker_decimal_parens] = ACTIONS(3092), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3092), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3092), - [sym_list_marker_lower_roman_parens] = ACTIONS(3092), - [sym_list_marker_upper_roman_parens] = ACTIONS(3092), - [sym__block_quote_begin] = ACTIONS(3092), - [sym__block_quote_continuation] = ACTIONS(3092), - [sym__thematic_break_dash] = ACTIONS(3092), - [sym__thematic_break_star] = ACTIONS(3092), - [sym__footnote_begin] = ACTIONS(3092), - [sym__verbatim_begin] = ACTIONS(3092), - }, - [406] = { - [anon_sym_LBRACK] = ACTIONS(3032), - [anon_sym_PIPE] = ACTIONS(3034), - [anon_sym_LBRACE] = ACTIONS(3032), - [sym__whitespace1] = ACTIONS(3034), - [anon_sym_BSLASH] = ACTIONS(3032), - [sym_quotation_marks] = ACTIONS(3034), - [sym_ellipsis] = ACTIONS(3034), - [sym_em_dash] = ACTIONS(3034), - [sym_en_dash] = ACTIONS(3032), - [sym_backslash_escape] = ACTIONS(3032), - [anon_sym_LT] = ACTIONS(3034), - [anon_sym_LBRACE_] = ACTIONS(3034), - [anon_sym__] = ACTIONS(3034), - [anon_sym_LBRACE_STAR] = ACTIONS(3034), - [anon_sym_STAR] = ACTIONS(3034), - [anon_sym_LBRACE_EQ] = ACTIONS(3034), - [anon_sym_LBRACE_PLUS] = ACTIONS(3034), - [anon_sym_LBRACE_DASH] = ACTIONS(3034), - [sym_symbol] = ACTIONS(3034), - [anon_sym_LBRACE_CARET] = ACTIONS(3034), - [anon_sym_CARET] = ACTIONS(3034), - [anon_sym_LBRACE_TILDE] = ACTIONS(3034), - [anon_sym_TILDE] = ACTIONS(3034), - [anon_sym_LBRACK_CARET] = ACTIONS(3034), - [anon_sym_BANG_LBRACK] = ACTIONS(3034), - [anon_sym_DOLLAR] = ACTIONS(3034), - [anon_sym_TODO] = ACTIONS(3034), - [anon_sym_WIP] = ACTIONS(3034), - [anon_sym_NOTE] = ACTIONS(3034), - [anon_sym_INFO] = ACTIONS(3034), - [anon_sym_XXX] = ACTIONS(3034), - [sym_fixme] = ACTIONS(3034), - [aux_sym__text_token1] = ACTIONS(3032), - [sym__newline] = ACTIONS(3034), - [sym__newline_inline] = ACTIONS(3034), - [sym__heading1_begin] = ACTIONS(3034), - [sym__heading2_begin] = ACTIONS(3034), - [sym__heading3_begin] = ACTIONS(3034), - [sym__heading4_begin] = ACTIONS(3034), - [sym__heading5_begin] = ACTIONS(3034), - [sym__heading6_begin] = ACTIONS(3034), - [sym__div_begin] = ACTIONS(3034), - [sym__code_block_begin] = ACTIONS(3034), - [sym_list_marker_dash] = ACTIONS(3034), - [sym_list_marker_star] = ACTIONS(3034), - [sym_list_marker_plus] = ACTIONS(3034), - [sym__list_marker_task_begin] = ACTIONS(3034), - [sym_list_marker_definition] = ACTIONS(3034), - [sym_list_marker_decimal_period] = ACTIONS(3034), - [sym_list_marker_lower_alpha_period] = ACTIONS(3034), - [sym_list_marker_upper_alpha_period] = ACTIONS(3034), - [sym_list_marker_lower_roman_period] = ACTIONS(3034), - [sym_list_marker_upper_roman_period] = ACTIONS(3034), - [sym_list_marker_decimal_paren] = ACTIONS(3034), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3034), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3034), - [sym_list_marker_lower_roman_paren] = ACTIONS(3034), - [sym_list_marker_upper_roman_paren] = ACTIONS(3034), - [sym_list_marker_decimal_parens] = ACTIONS(3034), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3034), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3034), - [sym_list_marker_lower_roman_parens] = ACTIONS(3034), - [sym_list_marker_upper_roman_parens] = ACTIONS(3034), - [sym__block_quote_begin] = ACTIONS(3034), - [sym__block_quote_continuation] = ACTIONS(3034), - [sym__thematic_break_dash] = ACTIONS(3034), - [sym__thematic_break_star] = ACTIONS(3034), - [sym__footnote_begin] = ACTIONS(3034), - [sym__footnote_end] = ACTIONS(3034), - [sym__verbatim_begin] = ACTIONS(3034), - }, - [407] = { - [anon_sym_LBRACK] = ACTIONS(3036), - [anon_sym_PIPE] = ACTIONS(3038), - [anon_sym_LBRACE] = ACTIONS(3036), - [sym__whitespace1] = ACTIONS(3038), - [anon_sym_BSLASH] = ACTIONS(3036), - [sym_quotation_marks] = ACTIONS(3038), - [sym_ellipsis] = ACTIONS(3038), - [sym_em_dash] = ACTIONS(3038), - [sym_en_dash] = ACTIONS(3036), - [sym_backslash_escape] = ACTIONS(3036), - [anon_sym_LT] = ACTIONS(3038), - [anon_sym_LBRACE_] = ACTIONS(3038), - [anon_sym__] = ACTIONS(3038), - [anon_sym_LBRACE_STAR] = ACTIONS(3038), - [anon_sym_STAR] = ACTIONS(3038), - [anon_sym_LBRACE_EQ] = ACTIONS(3038), - [anon_sym_LBRACE_PLUS] = ACTIONS(3038), - [anon_sym_LBRACE_DASH] = ACTIONS(3038), - [sym_symbol] = ACTIONS(3038), - [anon_sym_LBRACE_CARET] = ACTIONS(3038), - [anon_sym_CARET] = ACTIONS(3038), - [anon_sym_LBRACE_TILDE] = ACTIONS(3038), - [anon_sym_TILDE] = ACTIONS(3038), - [anon_sym_LBRACK_CARET] = ACTIONS(3038), - [anon_sym_BANG_LBRACK] = ACTIONS(3038), - [anon_sym_DOLLAR] = ACTIONS(3038), - [anon_sym_TODO] = ACTIONS(3038), - [anon_sym_WIP] = ACTIONS(3038), - [anon_sym_NOTE] = ACTIONS(3038), - [anon_sym_INFO] = ACTIONS(3038), - [anon_sym_XXX] = ACTIONS(3038), - [sym_fixme] = ACTIONS(3038), - [aux_sym__text_token1] = ACTIONS(3036), - [sym__newline] = ACTIONS(3038), - [sym__newline_inline] = ACTIONS(3038), - [sym__heading1_begin] = ACTIONS(3038), - [sym__heading2_begin] = ACTIONS(3038), - [sym__heading3_begin] = ACTIONS(3038), - [sym__heading4_begin] = ACTIONS(3038), - [sym__heading5_begin] = ACTIONS(3038), - [sym__heading6_begin] = ACTIONS(3038), - [sym__div_begin] = ACTIONS(3038), - [sym__code_block_begin] = ACTIONS(3038), - [sym_list_marker_dash] = ACTIONS(3038), - [sym_list_marker_star] = ACTIONS(3038), - [sym_list_marker_plus] = ACTIONS(3038), - [sym__list_marker_task_begin] = ACTIONS(3038), - [sym_list_marker_definition] = ACTIONS(3038), - [sym_list_marker_decimal_period] = ACTIONS(3038), - [sym_list_marker_lower_alpha_period] = ACTIONS(3038), - [sym_list_marker_upper_alpha_period] = ACTIONS(3038), - [sym_list_marker_lower_roman_period] = ACTIONS(3038), - [sym_list_marker_upper_roman_period] = ACTIONS(3038), - [sym_list_marker_decimal_paren] = ACTIONS(3038), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3038), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3038), - [sym_list_marker_lower_roman_paren] = ACTIONS(3038), - [sym_list_marker_upper_roman_paren] = ACTIONS(3038), - [sym_list_marker_decimal_parens] = ACTIONS(3038), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3038), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3038), - [sym_list_marker_lower_roman_parens] = ACTIONS(3038), - [sym_list_marker_upper_roman_parens] = ACTIONS(3038), - [sym__block_quote_begin] = ACTIONS(3038), - [sym__block_quote_continuation] = ACTIONS(3038), - [sym__thematic_break_dash] = ACTIONS(3038), - [sym__thematic_break_star] = ACTIONS(3038), - [sym__footnote_begin] = ACTIONS(3038), - [sym__footnote_end] = ACTIONS(3038), - [sym__verbatim_begin] = ACTIONS(3038), - }, - [408] = { - [anon_sym_LBRACK] = ACTIONS(3096), - [anon_sym_PIPE] = ACTIONS(3098), - [anon_sym_LBRACE] = ACTIONS(3096), - [sym__whitespace1] = ACTIONS(3098), - [anon_sym_BSLASH] = ACTIONS(3096), - [sym_quotation_marks] = ACTIONS(3098), - [sym_ellipsis] = ACTIONS(3098), - [sym_em_dash] = ACTIONS(3098), - [sym_en_dash] = ACTIONS(3096), - [sym_backslash_escape] = ACTIONS(3096), - [anon_sym_LT] = ACTIONS(3098), - [anon_sym_LBRACE_] = ACTIONS(3098), - [anon_sym__] = ACTIONS(3098), - [anon_sym_LBRACE_STAR] = ACTIONS(3098), - [anon_sym_STAR] = ACTIONS(3098), - [anon_sym_LBRACE_EQ] = ACTIONS(3098), - [anon_sym_LBRACE_PLUS] = ACTIONS(3098), - [anon_sym_LBRACE_DASH] = ACTIONS(3098), - [sym_symbol] = ACTIONS(3098), - [anon_sym_LBRACE_CARET] = ACTIONS(3098), - [anon_sym_CARET] = ACTIONS(3098), - [anon_sym_LBRACE_TILDE] = ACTIONS(3098), - [anon_sym_TILDE] = ACTIONS(3098), - [anon_sym_LBRACK_CARET] = ACTIONS(3098), - [anon_sym_BANG_LBRACK] = ACTIONS(3098), - [anon_sym_DOLLAR] = ACTIONS(3098), - [anon_sym_TODO] = ACTIONS(3098), - [anon_sym_WIP] = ACTIONS(3098), - [anon_sym_NOTE] = ACTIONS(3098), - [anon_sym_INFO] = ACTIONS(3098), - [anon_sym_XXX] = ACTIONS(3098), - [sym_fixme] = ACTIONS(3098), - [aux_sym__text_token1] = ACTIONS(3096), - [sym__block_close] = ACTIONS(3098), - [sym__newline] = ACTIONS(3098), - [sym__newline_inline] = ACTIONS(3098), - [sym__heading1_begin] = ACTIONS(3098), - [sym__heading2_begin] = ACTIONS(3098), - [sym__heading3_begin] = ACTIONS(3098), - [sym__heading4_begin] = ACTIONS(3098), - [sym__heading5_begin] = ACTIONS(3098), - [sym__heading6_begin] = ACTIONS(3098), - [sym__div_begin] = ACTIONS(3098), - [sym__code_block_begin] = ACTIONS(3098), - [sym_list_marker_dash] = ACTIONS(3098), - [sym_list_marker_star] = ACTIONS(3098), - [sym_list_marker_plus] = ACTIONS(3098), - [sym__list_marker_task_begin] = ACTIONS(3098), - [sym_list_marker_definition] = ACTIONS(3098), - [sym_list_marker_decimal_period] = ACTIONS(3098), - [sym_list_marker_lower_alpha_period] = ACTIONS(3098), - [sym_list_marker_upper_alpha_period] = ACTIONS(3098), - [sym_list_marker_lower_roman_period] = ACTIONS(3098), - [sym_list_marker_upper_roman_period] = ACTIONS(3098), - [sym_list_marker_decimal_paren] = ACTIONS(3098), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3098), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3098), - [sym_list_marker_lower_roman_paren] = ACTIONS(3098), - [sym_list_marker_upper_roman_paren] = ACTIONS(3098), - [sym_list_marker_decimal_parens] = ACTIONS(3098), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3098), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3098), - [sym_list_marker_lower_roman_parens] = ACTIONS(3098), - [sym_list_marker_upper_roman_parens] = ACTIONS(3098), - [sym__block_quote_begin] = ACTIONS(3098), - [sym__block_quote_continuation] = ACTIONS(3098), - [sym__thematic_break_dash] = ACTIONS(3098), - [sym__thematic_break_star] = ACTIONS(3098), - [sym__footnote_begin] = ACTIONS(3098), - [sym__verbatim_begin] = ACTIONS(3098), - }, - [409] = { - [anon_sym_LBRACK] = ACTIONS(3040), - [anon_sym_PIPE] = ACTIONS(3042), - [anon_sym_LBRACE] = ACTIONS(3040), - [sym__whitespace1] = ACTIONS(3042), - [anon_sym_BSLASH] = ACTIONS(3040), - [sym_quotation_marks] = ACTIONS(3042), - [sym_ellipsis] = ACTIONS(3042), - [sym_em_dash] = ACTIONS(3042), - [sym_en_dash] = ACTIONS(3040), - [sym_backslash_escape] = ACTIONS(3040), - [anon_sym_LT] = ACTIONS(3042), - [anon_sym_LBRACE_] = ACTIONS(3042), - [anon_sym__] = ACTIONS(3042), - [anon_sym_LBRACE_STAR] = ACTIONS(3042), - [anon_sym_STAR] = ACTIONS(3042), - [anon_sym_LBRACE_EQ] = ACTIONS(3042), - [anon_sym_LBRACE_PLUS] = ACTIONS(3042), - [anon_sym_LBRACE_DASH] = ACTIONS(3042), - [sym_symbol] = ACTIONS(3042), - [anon_sym_LBRACE_CARET] = ACTIONS(3042), - [anon_sym_CARET] = ACTIONS(3042), - [anon_sym_LBRACE_TILDE] = ACTIONS(3042), - [anon_sym_TILDE] = ACTIONS(3042), - [anon_sym_LBRACK_CARET] = ACTIONS(3042), - [anon_sym_BANG_LBRACK] = ACTIONS(3042), - [anon_sym_DOLLAR] = ACTIONS(3042), - [anon_sym_TODO] = ACTIONS(3042), - [anon_sym_WIP] = ACTIONS(3042), - [anon_sym_NOTE] = ACTIONS(3042), - [anon_sym_INFO] = ACTIONS(3042), - [anon_sym_XXX] = ACTIONS(3042), - [sym_fixme] = ACTIONS(3042), - [aux_sym__text_token1] = ACTIONS(3040), - [sym__newline] = ACTIONS(3042), - [sym__newline_inline] = ACTIONS(3042), - [sym__heading1_begin] = ACTIONS(3042), - [sym__heading2_begin] = ACTIONS(3042), - [sym__heading3_begin] = ACTIONS(3042), - [sym__heading4_begin] = ACTIONS(3042), - [sym__heading5_begin] = ACTIONS(3042), - [sym__heading6_begin] = ACTIONS(3042), - [sym__div_begin] = ACTIONS(3042), - [sym__code_block_begin] = ACTIONS(3042), - [sym_list_marker_dash] = ACTIONS(3042), - [sym_list_marker_star] = ACTIONS(3042), - [sym_list_marker_plus] = ACTIONS(3042), - [sym__list_marker_task_begin] = ACTIONS(3042), - [sym_list_marker_definition] = ACTIONS(3042), - [sym_list_marker_decimal_period] = ACTIONS(3042), - [sym_list_marker_lower_alpha_period] = ACTIONS(3042), - [sym_list_marker_upper_alpha_period] = ACTIONS(3042), - [sym_list_marker_lower_roman_period] = ACTIONS(3042), - [sym_list_marker_upper_roman_period] = ACTIONS(3042), - [sym_list_marker_decimal_paren] = ACTIONS(3042), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3042), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3042), - [sym_list_marker_lower_roman_paren] = ACTIONS(3042), - [sym_list_marker_upper_roman_paren] = ACTIONS(3042), - [sym_list_marker_decimal_parens] = ACTIONS(3042), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3042), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3042), - [sym_list_marker_lower_roman_parens] = ACTIONS(3042), - [sym_list_marker_upper_roman_parens] = ACTIONS(3042), - [sym__block_quote_begin] = ACTIONS(3042), - [sym__block_quote_continuation] = ACTIONS(3042), - [sym__thematic_break_dash] = ACTIONS(3042), - [sym__thematic_break_star] = ACTIONS(3042), - [sym__footnote_begin] = ACTIONS(3042), - [sym__footnote_end] = ACTIONS(3042), - [sym__verbatim_begin] = ACTIONS(3042), - }, - [410] = { - [anon_sym_LBRACK] = ACTIONS(3100), - [anon_sym_PIPE] = ACTIONS(3102), - [anon_sym_LBRACE] = ACTIONS(3100), - [sym__whitespace1] = ACTIONS(3102), - [anon_sym_BSLASH] = ACTIONS(3100), - [sym_quotation_marks] = ACTIONS(3102), - [sym_ellipsis] = ACTIONS(3102), - [sym_em_dash] = ACTIONS(3102), - [sym_en_dash] = ACTIONS(3100), - [sym_backslash_escape] = ACTIONS(3100), - [anon_sym_LT] = ACTIONS(3102), - [anon_sym_LBRACE_] = ACTIONS(3102), - [anon_sym__] = ACTIONS(3102), - [anon_sym_LBRACE_STAR] = ACTIONS(3102), - [anon_sym_STAR] = ACTIONS(3102), - [anon_sym_LBRACE_EQ] = ACTIONS(3102), - [anon_sym_LBRACE_PLUS] = ACTIONS(3102), - [anon_sym_LBRACE_DASH] = ACTIONS(3102), - [sym_symbol] = ACTIONS(3102), - [anon_sym_LBRACE_CARET] = ACTIONS(3102), - [anon_sym_CARET] = ACTIONS(3102), - [anon_sym_LBRACE_TILDE] = ACTIONS(3102), - [anon_sym_TILDE] = ACTIONS(3102), - [anon_sym_LBRACK_CARET] = ACTIONS(3102), - [anon_sym_BANG_LBRACK] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3102), - [anon_sym_TODO] = ACTIONS(3102), - [anon_sym_WIP] = ACTIONS(3102), - [anon_sym_NOTE] = ACTIONS(3102), - [anon_sym_INFO] = ACTIONS(3102), - [anon_sym_XXX] = ACTIONS(3102), - [sym_fixme] = ACTIONS(3102), - [aux_sym__text_token1] = ACTIONS(3100), - [sym__block_close] = ACTIONS(3102), - [sym__newline] = ACTIONS(3102), - [sym__newline_inline] = ACTIONS(3102), - [sym__heading1_begin] = ACTIONS(3102), - [sym__heading2_begin] = ACTIONS(3102), - [sym__heading3_begin] = ACTIONS(3102), - [sym__heading4_begin] = ACTIONS(3102), - [sym__heading5_begin] = ACTIONS(3102), - [sym__heading6_begin] = ACTIONS(3102), - [sym__div_begin] = ACTIONS(3102), - [sym__code_block_begin] = ACTIONS(3102), - [sym_list_marker_dash] = ACTIONS(3102), - [sym_list_marker_star] = ACTIONS(3102), - [sym_list_marker_plus] = ACTIONS(3102), - [sym__list_marker_task_begin] = ACTIONS(3102), - [sym_list_marker_definition] = ACTIONS(3102), - [sym_list_marker_decimal_period] = ACTIONS(3102), - [sym_list_marker_lower_alpha_period] = ACTIONS(3102), - [sym_list_marker_upper_alpha_period] = ACTIONS(3102), - [sym_list_marker_lower_roman_period] = ACTIONS(3102), - [sym_list_marker_upper_roman_period] = ACTIONS(3102), - [sym_list_marker_decimal_paren] = ACTIONS(3102), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3102), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3102), - [sym_list_marker_lower_roman_paren] = ACTIONS(3102), - [sym_list_marker_upper_roman_paren] = ACTIONS(3102), - [sym_list_marker_decimal_parens] = ACTIONS(3102), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3102), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3102), - [sym_list_marker_lower_roman_parens] = ACTIONS(3102), - [sym_list_marker_upper_roman_parens] = ACTIONS(3102), - [sym__block_quote_begin] = ACTIONS(3102), - [sym__block_quote_continuation] = ACTIONS(3102), - [sym__thematic_break_dash] = ACTIONS(3102), - [sym__thematic_break_star] = ACTIONS(3102), - [sym__footnote_begin] = ACTIONS(3102), - [sym__verbatim_begin] = ACTIONS(3102), - }, - [411] = { - [anon_sym_LBRACK] = ACTIONS(3052), - [anon_sym_PIPE] = ACTIONS(3054), - [anon_sym_LBRACE] = ACTIONS(3052), - [sym__whitespace1] = ACTIONS(3054), - [anon_sym_BSLASH] = ACTIONS(3052), - [sym_quotation_marks] = ACTIONS(3054), - [sym_ellipsis] = ACTIONS(3054), - [sym_em_dash] = ACTIONS(3054), - [sym_en_dash] = ACTIONS(3052), - [sym_backslash_escape] = ACTIONS(3052), - [anon_sym_LT] = ACTIONS(3054), - [anon_sym_LBRACE_] = ACTIONS(3054), - [anon_sym__] = ACTIONS(3054), - [anon_sym_LBRACE_STAR] = ACTIONS(3054), - [anon_sym_STAR] = ACTIONS(3054), - [anon_sym_LBRACE_EQ] = ACTIONS(3054), - [anon_sym_LBRACE_PLUS] = ACTIONS(3054), - [anon_sym_LBRACE_DASH] = ACTIONS(3054), - [sym_symbol] = ACTIONS(3054), - [anon_sym_LBRACE_CARET] = ACTIONS(3054), - [anon_sym_CARET] = ACTIONS(3054), - [anon_sym_LBRACE_TILDE] = ACTIONS(3054), - [anon_sym_TILDE] = ACTIONS(3054), - [anon_sym_LBRACK_CARET] = ACTIONS(3054), - [anon_sym_BANG_LBRACK] = ACTIONS(3054), - [anon_sym_DOLLAR] = ACTIONS(3054), - [anon_sym_TODO] = ACTIONS(3054), - [anon_sym_WIP] = ACTIONS(3054), - [anon_sym_NOTE] = ACTIONS(3054), - [anon_sym_INFO] = ACTIONS(3054), - [anon_sym_XXX] = ACTIONS(3054), - [sym_fixme] = ACTIONS(3054), - [aux_sym__text_token1] = ACTIONS(3052), - [sym__newline] = ACTIONS(3054), - [sym__newline_inline] = ACTIONS(3054), - [sym__heading1_begin] = ACTIONS(3054), - [sym__heading2_begin] = ACTIONS(3054), - [sym__heading3_begin] = ACTIONS(3054), - [sym__heading4_begin] = ACTIONS(3054), - [sym__heading5_begin] = ACTIONS(3054), - [sym__heading6_begin] = ACTIONS(3054), - [sym__div_begin] = ACTIONS(3054), - [sym__code_block_begin] = ACTIONS(3054), - [sym_list_marker_dash] = ACTIONS(3054), - [sym_list_marker_star] = ACTIONS(3054), - [sym_list_marker_plus] = ACTIONS(3054), - [sym__list_marker_task_begin] = ACTIONS(3054), - [sym_list_marker_definition] = ACTIONS(3054), - [sym_list_marker_decimal_period] = ACTIONS(3054), - [sym_list_marker_lower_alpha_period] = ACTIONS(3054), - [sym_list_marker_upper_alpha_period] = ACTIONS(3054), - [sym_list_marker_lower_roman_period] = ACTIONS(3054), - [sym_list_marker_upper_roman_period] = ACTIONS(3054), - [sym_list_marker_decimal_paren] = ACTIONS(3054), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3054), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3054), - [sym_list_marker_lower_roman_paren] = ACTIONS(3054), - [sym_list_marker_upper_roman_paren] = ACTIONS(3054), - [sym_list_marker_decimal_parens] = ACTIONS(3054), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3054), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3054), - [sym_list_marker_lower_roman_parens] = ACTIONS(3054), - [sym_list_marker_upper_roman_parens] = ACTIONS(3054), - [sym__block_quote_begin] = ACTIONS(3054), - [sym__block_quote_continuation] = ACTIONS(3054), - [sym__thematic_break_dash] = ACTIONS(3054), - [sym__thematic_break_star] = ACTIONS(3054), - [sym__footnote_begin] = ACTIONS(3054), - [sym__footnote_end] = ACTIONS(3054), - [sym__verbatim_begin] = ACTIONS(3054), - }, - [412] = { - [anon_sym_LBRACK] = ACTIONS(3056), - [anon_sym_PIPE] = ACTIONS(3058), - [anon_sym_LBRACE] = ACTIONS(3056), - [sym__whitespace1] = ACTIONS(3058), - [anon_sym_BSLASH] = ACTIONS(3056), - [sym_quotation_marks] = ACTIONS(3058), - [sym_ellipsis] = ACTIONS(3058), - [sym_em_dash] = ACTIONS(3058), - [sym_en_dash] = ACTIONS(3056), - [sym_backslash_escape] = ACTIONS(3056), - [anon_sym_LT] = ACTIONS(3058), - [anon_sym_LBRACE_] = ACTIONS(3058), - [anon_sym__] = ACTIONS(3058), - [anon_sym_LBRACE_STAR] = ACTIONS(3058), - [anon_sym_STAR] = ACTIONS(3058), - [anon_sym_LBRACE_EQ] = ACTIONS(3058), - [anon_sym_LBRACE_PLUS] = ACTIONS(3058), - [anon_sym_LBRACE_DASH] = ACTIONS(3058), - [sym_symbol] = ACTIONS(3058), - [anon_sym_LBRACE_CARET] = ACTIONS(3058), - [anon_sym_CARET] = ACTIONS(3058), - [anon_sym_LBRACE_TILDE] = ACTIONS(3058), - [anon_sym_TILDE] = ACTIONS(3058), - [anon_sym_LBRACK_CARET] = ACTIONS(3058), - [anon_sym_BANG_LBRACK] = ACTIONS(3058), - [anon_sym_DOLLAR] = ACTIONS(3058), - [anon_sym_TODO] = ACTIONS(3058), - [anon_sym_WIP] = ACTIONS(3058), - [anon_sym_NOTE] = ACTIONS(3058), - [anon_sym_INFO] = ACTIONS(3058), - [anon_sym_XXX] = ACTIONS(3058), - [sym_fixme] = ACTIONS(3058), - [aux_sym__text_token1] = ACTIONS(3056), - [sym__newline] = ACTIONS(3058), - [sym__newline_inline] = ACTIONS(3058), - [sym__heading1_begin] = ACTIONS(3058), - [sym__heading2_begin] = ACTIONS(3058), - [sym__heading3_begin] = ACTIONS(3058), - [sym__heading4_begin] = ACTIONS(3058), - [sym__heading5_begin] = ACTIONS(3058), - [sym__heading6_begin] = ACTIONS(3058), - [sym__div_begin] = ACTIONS(3058), - [sym__code_block_begin] = ACTIONS(3058), - [sym_list_marker_dash] = ACTIONS(3058), - [sym_list_marker_star] = ACTIONS(3058), - [sym_list_marker_plus] = ACTIONS(3058), - [sym__list_marker_task_begin] = ACTIONS(3058), - [sym_list_marker_definition] = ACTIONS(3058), - [sym_list_marker_decimal_period] = ACTIONS(3058), - [sym_list_marker_lower_alpha_period] = ACTIONS(3058), - [sym_list_marker_upper_alpha_period] = ACTIONS(3058), - [sym_list_marker_lower_roman_period] = ACTIONS(3058), - [sym_list_marker_upper_roman_period] = ACTIONS(3058), - [sym_list_marker_decimal_paren] = ACTIONS(3058), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3058), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3058), - [sym_list_marker_lower_roman_paren] = ACTIONS(3058), - [sym_list_marker_upper_roman_paren] = ACTIONS(3058), - [sym_list_marker_decimal_parens] = ACTIONS(3058), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3058), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3058), - [sym_list_marker_lower_roman_parens] = ACTIONS(3058), - [sym_list_marker_upper_roman_parens] = ACTIONS(3058), - [sym__block_quote_begin] = ACTIONS(3058), - [sym__block_quote_continuation] = ACTIONS(3058), - [sym__thematic_break_dash] = ACTIONS(3058), - [sym__thematic_break_star] = ACTIONS(3058), - [sym__footnote_begin] = ACTIONS(3058), - [sym__footnote_end] = ACTIONS(3058), - [sym__verbatim_begin] = ACTIONS(3058), - }, - [413] = { - [ts_builtin_sym_end] = ACTIONS(3102), - [anon_sym_LBRACK] = ACTIONS(3100), - [anon_sym_PIPE] = ACTIONS(3102), - [anon_sym_LBRACE] = ACTIONS(3100), - [sym__whitespace1] = ACTIONS(3102), - [anon_sym_BSLASH] = ACTIONS(3100), - [sym_quotation_marks] = ACTIONS(3102), - [sym_ellipsis] = ACTIONS(3102), - [sym_em_dash] = ACTIONS(3102), - [sym_en_dash] = ACTIONS(3100), - [sym_backslash_escape] = ACTIONS(3100), - [anon_sym_LT] = ACTIONS(3102), - [anon_sym_LBRACE_] = ACTIONS(3102), - [anon_sym__] = ACTIONS(3102), - [anon_sym_LBRACE_STAR] = ACTIONS(3102), - [anon_sym_STAR] = ACTIONS(3102), - [anon_sym_LBRACE_EQ] = ACTIONS(3102), - [anon_sym_LBRACE_PLUS] = ACTIONS(3102), - [anon_sym_LBRACE_DASH] = ACTIONS(3102), - [sym_symbol] = ACTIONS(3102), - [anon_sym_LBRACE_CARET] = ACTIONS(3102), - [anon_sym_CARET] = ACTIONS(3102), - [anon_sym_LBRACE_TILDE] = ACTIONS(3102), - [anon_sym_TILDE] = ACTIONS(3102), - [anon_sym_LBRACK_CARET] = ACTIONS(3102), - [anon_sym_BANG_LBRACK] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3102), - [anon_sym_TODO] = ACTIONS(3102), - [anon_sym_WIP] = ACTIONS(3102), - [anon_sym_NOTE] = ACTIONS(3102), - [anon_sym_INFO] = ACTIONS(3102), - [anon_sym_XXX] = ACTIONS(3102), - [sym_fixme] = ACTIONS(3102), - [aux_sym__text_token1] = ACTIONS(3100), - [sym__newline] = ACTIONS(3102), - [sym__newline_inline] = ACTIONS(3102), - [sym__heading1_begin] = ACTIONS(3102), - [sym__heading2_begin] = ACTIONS(3102), - [sym__heading3_begin] = ACTIONS(3102), - [sym__heading4_begin] = ACTIONS(3102), - [sym__heading5_begin] = ACTIONS(3102), - [sym__heading6_begin] = ACTIONS(3102), - [sym__div_begin] = ACTIONS(3102), - [sym__code_block_begin] = ACTIONS(3102), - [sym_list_marker_dash] = ACTIONS(3102), - [sym_list_marker_star] = ACTIONS(3102), - [sym_list_marker_plus] = ACTIONS(3102), - [sym__list_marker_task_begin] = ACTIONS(3102), - [sym_list_marker_definition] = ACTIONS(3102), - [sym_list_marker_decimal_period] = ACTIONS(3102), - [sym_list_marker_lower_alpha_period] = ACTIONS(3102), - [sym_list_marker_upper_alpha_period] = ACTIONS(3102), - [sym_list_marker_lower_roman_period] = ACTIONS(3102), - [sym_list_marker_upper_roman_period] = ACTIONS(3102), - [sym_list_marker_decimal_paren] = ACTIONS(3102), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3102), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3102), - [sym_list_marker_lower_roman_paren] = ACTIONS(3102), - [sym_list_marker_upper_roman_paren] = ACTIONS(3102), - [sym_list_marker_decimal_parens] = ACTIONS(3102), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3102), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3102), - [sym_list_marker_lower_roman_parens] = ACTIONS(3102), - [sym_list_marker_upper_roman_parens] = ACTIONS(3102), - [sym__block_quote_begin] = ACTIONS(3102), - [sym__block_quote_continuation] = ACTIONS(3102), - [sym__thematic_break_dash] = ACTIONS(3102), - [sym__thematic_break_star] = ACTIONS(3102), - [sym__footnote_begin] = ACTIONS(3102), - [sym__verbatim_begin] = ACTIONS(3102), - }, - [414] = { - [anon_sym_LBRACK] = ACTIONS(3094), - [anon_sym_PIPE] = ACTIONS(3092), - [anon_sym_LBRACE] = ACTIONS(3094), - [sym__whitespace1] = ACTIONS(3092), - [anon_sym_BSLASH] = ACTIONS(3094), - [sym_quotation_marks] = ACTIONS(3092), - [sym_ellipsis] = ACTIONS(3092), - [sym_em_dash] = ACTIONS(3092), - [sym_en_dash] = ACTIONS(3094), - [sym_backslash_escape] = ACTIONS(3094), - [anon_sym_LT] = ACTIONS(3092), - [anon_sym_LBRACE_] = ACTIONS(3092), - [anon_sym__] = ACTIONS(3092), - [anon_sym_LBRACE_STAR] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(3092), - [anon_sym_LBRACE_EQ] = ACTIONS(3092), - [anon_sym_LBRACE_PLUS] = ACTIONS(3092), - [anon_sym_LBRACE_DASH] = ACTIONS(3092), - [sym_symbol] = ACTIONS(3092), - [anon_sym_LBRACE_CARET] = ACTIONS(3092), - [anon_sym_CARET] = ACTIONS(3092), - [anon_sym_LBRACE_TILDE] = ACTIONS(3092), - [anon_sym_TILDE] = ACTIONS(3092), - [anon_sym_LBRACK_CARET] = ACTIONS(3092), - [anon_sym_BANG_LBRACK] = ACTIONS(3092), - [anon_sym_DOLLAR] = ACTIONS(3092), - [anon_sym_TODO] = ACTIONS(3092), - [anon_sym_WIP] = ACTIONS(3092), - [anon_sym_NOTE] = ACTIONS(3092), - [anon_sym_INFO] = ACTIONS(3092), - [anon_sym_XXX] = ACTIONS(3092), - [sym_fixme] = ACTIONS(3092), - [aux_sym__text_token1] = ACTIONS(3094), - [sym__block_close] = ACTIONS(3092), - [sym__newline] = ACTIONS(3092), - [sym__newline_inline] = ACTIONS(3092), - [sym__heading1_begin] = ACTIONS(3092), - [sym__heading2_begin] = ACTIONS(3092), - [sym__heading3_begin] = ACTIONS(3092), - [sym__heading4_begin] = ACTIONS(3092), - [sym__heading5_begin] = ACTIONS(3092), - [sym__heading6_begin] = ACTIONS(3092), - [sym__div_begin] = ACTIONS(3092), - [sym__code_block_begin] = ACTIONS(3092), - [sym_list_marker_dash] = ACTIONS(3092), - [sym_list_marker_star] = ACTIONS(3092), - [sym_list_marker_plus] = ACTIONS(3092), - [sym__list_marker_task_begin] = ACTIONS(3092), - [sym_list_marker_definition] = ACTIONS(3092), - [sym_list_marker_decimal_period] = ACTIONS(3092), - [sym_list_marker_lower_alpha_period] = ACTIONS(3092), - [sym_list_marker_upper_alpha_period] = ACTIONS(3092), - [sym_list_marker_lower_roman_period] = ACTIONS(3092), - [sym_list_marker_upper_roman_period] = ACTIONS(3092), - [sym_list_marker_decimal_paren] = ACTIONS(3092), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3092), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3092), - [sym_list_marker_lower_roman_paren] = ACTIONS(3092), - [sym_list_marker_upper_roman_paren] = ACTIONS(3092), - [sym_list_marker_decimal_parens] = ACTIONS(3092), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3092), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3092), - [sym_list_marker_lower_roman_parens] = ACTIONS(3092), - [sym_list_marker_upper_roman_parens] = ACTIONS(3092), - [sym__block_quote_begin] = ACTIONS(3092), - [sym__block_quote_continuation] = ACTIONS(3092), - [sym__thematic_break_dash] = ACTIONS(3092), - [sym__thematic_break_star] = ACTIONS(3092), - [sym__footnote_begin] = ACTIONS(3092), - [sym__verbatim_begin] = ACTIONS(3092), - }, - [415] = { - [ts_builtin_sym_end] = ACTIONS(3104), - [anon_sym_LBRACK] = ACTIONS(3106), - [anon_sym_PIPE] = ACTIONS(3104), - [anon_sym_LBRACE] = ACTIONS(3106), - [sym__whitespace1] = ACTIONS(3104), - [anon_sym_BSLASH] = ACTIONS(3106), - [sym_quotation_marks] = ACTIONS(3104), - [sym_ellipsis] = ACTIONS(3104), - [sym_em_dash] = ACTIONS(3104), - [sym_en_dash] = ACTIONS(3106), - [sym_backslash_escape] = ACTIONS(3106), - [anon_sym_LT] = ACTIONS(3104), - [anon_sym_LBRACE_] = ACTIONS(3104), - [anon_sym__] = ACTIONS(3104), - [anon_sym_LBRACE_STAR] = ACTIONS(3104), - [anon_sym_STAR] = ACTIONS(3104), - [anon_sym_LBRACE_EQ] = ACTIONS(3104), - [anon_sym_LBRACE_PLUS] = ACTIONS(3104), - [anon_sym_LBRACE_DASH] = ACTIONS(3104), - [sym_symbol] = ACTIONS(3104), - [anon_sym_LBRACE_CARET] = ACTIONS(3104), - [anon_sym_CARET] = ACTIONS(3104), - [anon_sym_LBRACE_TILDE] = ACTIONS(3104), - [anon_sym_TILDE] = ACTIONS(3104), - [anon_sym_LBRACK_CARET] = ACTIONS(3104), - [anon_sym_BANG_LBRACK] = ACTIONS(3104), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_TODO] = ACTIONS(3104), - [anon_sym_WIP] = ACTIONS(3104), - [anon_sym_NOTE] = ACTIONS(3104), - [anon_sym_INFO] = ACTIONS(3104), - [anon_sym_XXX] = ACTIONS(3104), - [sym_fixme] = ACTIONS(3104), - [aux_sym__text_token1] = ACTIONS(3106), - [sym__newline] = ACTIONS(3104), - [sym__newline_inline] = ACTIONS(3104), - [sym__heading1_begin] = ACTIONS(3104), - [sym__heading2_begin] = ACTIONS(3104), - [sym__heading3_begin] = ACTIONS(3104), - [sym__heading4_begin] = ACTIONS(3104), - [sym__heading5_begin] = ACTIONS(3104), - [sym__heading6_begin] = ACTIONS(3104), - [sym__div_begin] = ACTIONS(3104), - [sym__code_block_begin] = ACTIONS(3104), - [sym_list_marker_dash] = ACTIONS(3104), - [sym_list_marker_star] = ACTIONS(3104), - [sym_list_marker_plus] = ACTIONS(3104), - [sym__list_marker_task_begin] = ACTIONS(3104), - [sym_list_marker_definition] = ACTIONS(3104), - [sym_list_marker_decimal_period] = ACTIONS(3104), - [sym_list_marker_lower_alpha_period] = ACTIONS(3104), - [sym_list_marker_upper_alpha_period] = ACTIONS(3104), - [sym_list_marker_lower_roman_period] = ACTIONS(3104), - [sym_list_marker_upper_roman_period] = ACTIONS(3104), - [sym_list_marker_decimal_paren] = ACTIONS(3104), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3104), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3104), - [sym_list_marker_lower_roman_paren] = ACTIONS(3104), - [sym_list_marker_upper_roman_paren] = ACTIONS(3104), - [sym_list_marker_decimal_parens] = ACTIONS(3104), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3104), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3104), - [sym_list_marker_lower_roman_parens] = ACTIONS(3104), - [sym_list_marker_upper_roman_parens] = ACTIONS(3104), - [sym__block_quote_begin] = ACTIONS(3104), - [sym__block_quote_continuation] = ACTIONS(3104), - [sym__thematic_break_dash] = ACTIONS(3104), - [sym__thematic_break_star] = ACTIONS(3104), - [sym__footnote_begin] = ACTIONS(3104), - [sym__verbatim_begin] = ACTIONS(3104), - }, - [416] = { - [anon_sym_LBRACK] = ACTIONS(3060), - [anon_sym_PIPE] = ACTIONS(3062), - [anon_sym_LBRACE] = ACTIONS(3060), - [sym__whitespace1] = ACTIONS(3062), - [anon_sym_BSLASH] = ACTIONS(3060), - [sym_quotation_marks] = ACTIONS(3062), - [sym_ellipsis] = ACTIONS(3062), - [sym_em_dash] = ACTIONS(3062), - [sym_en_dash] = ACTIONS(3060), - [sym_backslash_escape] = ACTIONS(3060), - [anon_sym_LT] = ACTIONS(3062), - [anon_sym_LBRACE_] = ACTIONS(3062), - [anon_sym__] = ACTIONS(3062), - [anon_sym_LBRACE_STAR] = ACTIONS(3062), - [anon_sym_STAR] = ACTIONS(3062), - [anon_sym_LBRACE_EQ] = ACTIONS(3062), - [anon_sym_LBRACE_PLUS] = ACTIONS(3062), - [anon_sym_LBRACE_DASH] = ACTIONS(3062), - [sym_symbol] = ACTIONS(3062), - [anon_sym_LBRACE_CARET] = ACTIONS(3062), - [anon_sym_CARET] = ACTIONS(3062), - [anon_sym_LBRACE_TILDE] = ACTIONS(3062), - [anon_sym_TILDE] = ACTIONS(3062), - [anon_sym_LBRACK_CARET] = ACTIONS(3062), - [anon_sym_BANG_LBRACK] = ACTIONS(3062), - [anon_sym_DOLLAR] = ACTIONS(3062), - [anon_sym_TODO] = ACTIONS(3062), - [anon_sym_WIP] = ACTIONS(3062), - [anon_sym_NOTE] = ACTIONS(3062), - [anon_sym_INFO] = ACTIONS(3062), - [anon_sym_XXX] = ACTIONS(3062), - [sym_fixme] = ACTIONS(3062), - [aux_sym__text_token1] = ACTIONS(3060), - [sym__newline] = ACTIONS(3062), - [sym__newline_inline] = ACTIONS(3062), - [sym__heading1_begin] = ACTIONS(3062), - [sym__heading2_begin] = ACTIONS(3062), - [sym__heading3_begin] = ACTIONS(3062), - [sym__heading4_begin] = ACTIONS(3062), - [sym__heading5_begin] = ACTIONS(3062), - [sym__heading6_begin] = ACTIONS(3062), - [sym__div_begin] = ACTIONS(3062), - [sym__code_block_begin] = ACTIONS(3062), - [sym_list_marker_dash] = ACTIONS(3062), - [sym_list_marker_star] = ACTIONS(3062), - [sym_list_marker_plus] = ACTIONS(3062), - [sym__list_marker_task_begin] = ACTIONS(3062), - [sym_list_marker_definition] = ACTIONS(3062), - [sym_list_marker_decimal_period] = ACTIONS(3062), - [sym_list_marker_lower_alpha_period] = ACTIONS(3062), - [sym_list_marker_upper_alpha_period] = ACTIONS(3062), - [sym_list_marker_lower_roman_period] = ACTIONS(3062), - [sym_list_marker_upper_roman_period] = ACTIONS(3062), - [sym_list_marker_decimal_paren] = ACTIONS(3062), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3062), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3062), - [sym_list_marker_lower_roman_paren] = ACTIONS(3062), - [sym_list_marker_upper_roman_paren] = ACTIONS(3062), - [sym_list_marker_decimal_parens] = ACTIONS(3062), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3062), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3062), - [sym_list_marker_lower_roman_parens] = ACTIONS(3062), - [sym_list_marker_upper_roman_parens] = ACTIONS(3062), - [sym__block_quote_begin] = ACTIONS(3062), - [sym__block_quote_continuation] = ACTIONS(3062), - [sym__thematic_break_dash] = ACTIONS(3062), - [sym__thematic_break_star] = ACTIONS(3062), - [sym__footnote_begin] = ACTIONS(3062), - [sym__footnote_end] = ACTIONS(3062), - [sym__verbatim_begin] = ACTIONS(3062), - }, - [417] = { - [anon_sym_LBRACK] = ACTIONS(3090), - [anon_sym_PIPE] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(3090), - [sym__whitespace1] = ACTIONS(3088), - [anon_sym_BSLASH] = ACTIONS(3090), - [sym_quotation_marks] = ACTIONS(3088), - [sym_ellipsis] = ACTIONS(3088), - [sym_em_dash] = ACTIONS(3088), - [sym_en_dash] = ACTIONS(3090), - [sym_backslash_escape] = ACTIONS(3090), - [anon_sym_LT] = ACTIONS(3088), - [anon_sym_LBRACE_] = ACTIONS(3088), - [anon_sym__] = ACTIONS(3088), - [anon_sym_LBRACE_STAR] = ACTIONS(3088), - [anon_sym_STAR] = ACTIONS(3088), - [anon_sym_LBRACE_EQ] = ACTIONS(3088), - [anon_sym_LBRACE_PLUS] = ACTIONS(3088), - [anon_sym_LBRACE_DASH] = ACTIONS(3088), - [sym_symbol] = ACTIONS(3088), - [anon_sym_LBRACE_CARET] = ACTIONS(3088), - [anon_sym_CARET] = ACTIONS(3088), - [anon_sym_LBRACE_TILDE] = ACTIONS(3088), - [anon_sym_TILDE] = ACTIONS(3088), - [anon_sym_LBRACK_CARET] = ACTIONS(3088), - [anon_sym_BANG_LBRACK] = ACTIONS(3088), - [anon_sym_DOLLAR] = ACTIONS(3088), - [anon_sym_TODO] = ACTIONS(3088), - [anon_sym_WIP] = ACTIONS(3088), - [anon_sym_NOTE] = ACTIONS(3088), - [anon_sym_INFO] = ACTIONS(3088), - [anon_sym_XXX] = ACTIONS(3088), - [sym_fixme] = ACTIONS(3088), - [aux_sym__text_token1] = ACTIONS(3090), - [sym__block_close] = ACTIONS(3088), - [sym__newline] = ACTIONS(3088), - [sym__newline_inline] = ACTIONS(3088), - [sym__heading1_begin] = ACTIONS(3088), - [sym__heading2_begin] = ACTIONS(3088), - [sym__heading3_begin] = ACTIONS(3088), - [sym__heading4_begin] = ACTIONS(3088), - [sym__heading5_begin] = ACTIONS(3088), - [sym__heading6_begin] = ACTIONS(3088), - [sym__div_begin] = ACTIONS(3088), - [sym__code_block_begin] = ACTIONS(3088), - [sym_list_marker_dash] = ACTIONS(3088), - [sym_list_marker_star] = ACTIONS(3088), - [sym_list_marker_plus] = ACTIONS(3088), - [sym__list_marker_task_begin] = ACTIONS(3088), - [sym_list_marker_definition] = ACTIONS(3088), - [sym_list_marker_decimal_period] = ACTIONS(3088), - [sym_list_marker_lower_alpha_period] = ACTIONS(3088), - [sym_list_marker_upper_alpha_period] = ACTIONS(3088), - [sym_list_marker_lower_roman_period] = ACTIONS(3088), - [sym_list_marker_upper_roman_period] = ACTIONS(3088), - [sym_list_marker_decimal_paren] = ACTIONS(3088), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3088), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3088), - [sym_list_marker_lower_roman_paren] = ACTIONS(3088), - [sym_list_marker_upper_roman_paren] = ACTIONS(3088), - [sym_list_marker_decimal_parens] = ACTIONS(3088), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3088), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3088), - [sym_list_marker_lower_roman_parens] = ACTIONS(3088), - [sym_list_marker_upper_roman_parens] = ACTIONS(3088), - [sym__block_quote_begin] = ACTIONS(3088), - [sym__block_quote_continuation] = ACTIONS(3088), - [sym__thematic_break_dash] = ACTIONS(3088), - [sym__thematic_break_star] = ACTIONS(3088), - [sym__footnote_begin] = ACTIONS(3088), - [sym__verbatim_begin] = ACTIONS(3088), - }, - [418] = { - [ts_builtin_sym_end] = ACTIONS(3098), - [anon_sym_LBRACK] = ACTIONS(3096), - [anon_sym_PIPE] = ACTIONS(3098), - [anon_sym_LBRACE] = ACTIONS(3096), - [sym__whitespace1] = ACTIONS(3098), - [anon_sym_BSLASH] = ACTIONS(3096), - [sym_quotation_marks] = ACTIONS(3098), - [sym_ellipsis] = ACTIONS(3098), - [sym_em_dash] = ACTIONS(3098), - [sym_en_dash] = ACTIONS(3096), - [sym_backslash_escape] = ACTIONS(3096), - [anon_sym_LT] = ACTIONS(3098), - [anon_sym_LBRACE_] = ACTIONS(3098), - [anon_sym__] = ACTIONS(3098), - [anon_sym_LBRACE_STAR] = ACTIONS(3098), - [anon_sym_STAR] = ACTIONS(3098), - [anon_sym_LBRACE_EQ] = ACTIONS(3098), - [anon_sym_LBRACE_PLUS] = ACTIONS(3098), - [anon_sym_LBRACE_DASH] = ACTIONS(3098), - [sym_symbol] = ACTIONS(3098), - [anon_sym_LBRACE_CARET] = ACTIONS(3098), - [anon_sym_CARET] = ACTIONS(3098), - [anon_sym_LBRACE_TILDE] = ACTIONS(3098), - [anon_sym_TILDE] = ACTIONS(3098), - [anon_sym_LBRACK_CARET] = ACTIONS(3098), - [anon_sym_BANG_LBRACK] = ACTIONS(3098), - [anon_sym_DOLLAR] = ACTIONS(3098), - [anon_sym_TODO] = ACTIONS(3098), - [anon_sym_WIP] = ACTIONS(3098), - [anon_sym_NOTE] = ACTIONS(3098), - [anon_sym_INFO] = ACTIONS(3098), - [anon_sym_XXX] = ACTIONS(3098), - [sym_fixme] = ACTIONS(3098), - [aux_sym__text_token1] = ACTIONS(3096), - [sym__newline] = ACTIONS(3098), - [sym__newline_inline] = ACTIONS(3098), - [sym__heading1_begin] = ACTIONS(3098), - [sym__heading2_begin] = ACTIONS(3098), - [sym__heading3_begin] = ACTIONS(3098), - [sym__heading4_begin] = ACTIONS(3098), - [sym__heading5_begin] = ACTIONS(3098), - [sym__heading6_begin] = ACTIONS(3098), - [sym__div_begin] = ACTIONS(3098), - [sym__code_block_begin] = ACTIONS(3098), - [sym_list_marker_dash] = ACTIONS(3098), - [sym_list_marker_star] = ACTIONS(3098), - [sym_list_marker_plus] = ACTIONS(3098), - [sym__list_marker_task_begin] = ACTIONS(3098), - [sym_list_marker_definition] = ACTIONS(3098), - [sym_list_marker_decimal_period] = ACTIONS(3098), - [sym_list_marker_lower_alpha_period] = ACTIONS(3098), - [sym_list_marker_upper_alpha_period] = ACTIONS(3098), - [sym_list_marker_lower_roman_period] = ACTIONS(3098), - [sym_list_marker_upper_roman_period] = ACTIONS(3098), - [sym_list_marker_decimal_paren] = ACTIONS(3098), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3098), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3098), - [sym_list_marker_lower_roman_paren] = ACTIONS(3098), - [sym_list_marker_upper_roman_paren] = ACTIONS(3098), - [sym_list_marker_decimal_parens] = ACTIONS(3098), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3098), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3098), - [sym_list_marker_lower_roman_parens] = ACTIONS(3098), - [sym_list_marker_upper_roman_parens] = ACTIONS(3098), - [sym__block_quote_begin] = ACTIONS(3098), - [sym__block_quote_continuation] = ACTIONS(3098), - [sym__thematic_break_dash] = ACTIONS(3098), - [sym__thematic_break_star] = ACTIONS(3098), - [sym__footnote_begin] = ACTIONS(3098), - [sym__verbatim_begin] = ACTIONS(3098), - }, - [419] = { - [anon_sym_LBRACK] = ACTIONS(3078), - [anon_sym_PIPE] = ACTIONS(3076), - [anon_sym_LBRACE] = ACTIONS(3078), - [sym__whitespace1] = ACTIONS(3076), - [anon_sym_BSLASH] = ACTIONS(3078), - [sym_quotation_marks] = ACTIONS(3076), - [sym_ellipsis] = ACTIONS(3076), - [sym_em_dash] = ACTIONS(3076), - [sym_en_dash] = ACTIONS(3078), - [sym_backslash_escape] = ACTIONS(3078), - [anon_sym_LT] = ACTIONS(3076), - [anon_sym_LBRACE_] = ACTIONS(3076), - [anon_sym__] = ACTIONS(3076), - [anon_sym_LBRACE_STAR] = ACTIONS(3076), - [anon_sym_STAR] = ACTIONS(3076), - [anon_sym_LBRACE_EQ] = ACTIONS(3076), - [anon_sym_LBRACE_PLUS] = ACTIONS(3076), - [anon_sym_LBRACE_DASH] = ACTIONS(3076), - [sym_symbol] = ACTIONS(3076), - [anon_sym_LBRACE_CARET] = ACTIONS(3076), - [anon_sym_CARET] = ACTIONS(3076), - [anon_sym_LBRACE_TILDE] = ACTIONS(3076), - [anon_sym_TILDE] = ACTIONS(3076), - [anon_sym_LBRACK_CARET] = ACTIONS(3076), - [anon_sym_BANG_LBRACK] = ACTIONS(3076), - [anon_sym_DOLLAR] = ACTIONS(3076), - [anon_sym_TODO] = ACTIONS(3076), - [anon_sym_WIP] = ACTIONS(3076), - [anon_sym_NOTE] = ACTIONS(3076), - [anon_sym_INFO] = ACTIONS(3076), - [anon_sym_XXX] = ACTIONS(3076), - [sym_fixme] = ACTIONS(3076), - [aux_sym__text_token1] = ACTIONS(3078), - [sym__block_close] = ACTIONS(3076), - [sym__newline] = ACTIONS(3076), - [sym__newline_inline] = ACTIONS(3076), - [sym__heading1_begin] = ACTIONS(3076), - [sym__heading2_begin] = ACTIONS(3076), - [sym__heading3_begin] = ACTIONS(3076), - [sym__heading4_begin] = ACTIONS(3076), - [sym__heading5_begin] = ACTIONS(3076), - [sym__heading6_begin] = ACTIONS(3076), - [sym__div_begin] = ACTIONS(3076), - [sym__code_block_begin] = ACTIONS(3076), - [sym_list_marker_dash] = ACTIONS(3076), - [sym_list_marker_star] = ACTIONS(3076), - [sym_list_marker_plus] = ACTIONS(3076), - [sym__list_marker_task_begin] = ACTIONS(3076), - [sym_list_marker_definition] = ACTIONS(3076), - [sym_list_marker_decimal_period] = ACTIONS(3076), - [sym_list_marker_lower_alpha_period] = ACTIONS(3076), - [sym_list_marker_upper_alpha_period] = ACTIONS(3076), - [sym_list_marker_lower_roman_period] = ACTIONS(3076), - [sym_list_marker_upper_roman_period] = ACTIONS(3076), - [sym_list_marker_decimal_paren] = ACTIONS(3076), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3076), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3076), - [sym_list_marker_lower_roman_paren] = ACTIONS(3076), - [sym_list_marker_upper_roman_paren] = ACTIONS(3076), - [sym_list_marker_decimal_parens] = ACTIONS(3076), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3076), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3076), - [sym_list_marker_lower_roman_parens] = ACTIONS(3076), - [sym_list_marker_upper_roman_parens] = ACTIONS(3076), - [sym__block_quote_begin] = ACTIONS(3076), - [sym__block_quote_continuation] = ACTIONS(3076), - [sym__thematic_break_dash] = ACTIONS(3076), - [sym__thematic_break_star] = ACTIONS(3076), - [sym__footnote_begin] = ACTIONS(3076), - [sym__verbatim_begin] = ACTIONS(3076), - }, - [420] = { - [anon_sym_LBRACK] = ACTIONS(3068), - [anon_sym_PIPE] = ACTIONS(3070), - [anon_sym_LBRACE] = ACTIONS(3068), - [sym__whitespace1] = ACTIONS(3070), - [anon_sym_BSLASH] = ACTIONS(3068), - [sym_quotation_marks] = ACTIONS(3070), - [sym_ellipsis] = ACTIONS(3070), - [sym_em_dash] = ACTIONS(3070), - [sym_en_dash] = ACTIONS(3068), - [sym_backslash_escape] = ACTIONS(3068), - [anon_sym_LT] = ACTIONS(3070), - [anon_sym_LBRACE_] = ACTIONS(3070), - [anon_sym__] = ACTIONS(3070), - [anon_sym_LBRACE_STAR] = ACTIONS(3070), - [anon_sym_STAR] = ACTIONS(3070), - [anon_sym_LBRACE_EQ] = ACTIONS(3070), - [anon_sym_LBRACE_PLUS] = ACTIONS(3070), - [anon_sym_LBRACE_DASH] = ACTIONS(3070), - [sym_symbol] = ACTIONS(3070), - [anon_sym_LBRACE_CARET] = ACTIONS(3070), - [anon_sym_CARET] = ACTIONS(3070), - [anon_sym_LBRACE_TILDE] = ACTIONS(3070), - [anon_sym_TILDE] = ACTIONS(3070), - [anon_sym_LBRACK_CARET] = ACTIONS(3070), - [anon_sym_BANG_LBRACK] = ACTIONS(3070), - [anon_sym_DOLLAR] = ACTIONS(3070), - [anon_sym_TODO] = ACTIONS(3070), - [anon_sym_WIP] = ACTIONS(3070), - [anon_sym_NOTE] = ACTIONS(3070), - [anon_sym_INFO] = ACTIONS(3070), - [anon_sym_XXX] = ACTIONS(3070), - [sym_fixme] = ACTIONS(3070), - [aux_sym__text_token1] = ACTIONS(3068), - [sym__newline] = ACTIONS(3070), - [sym__newline_inline] = ACTIONS(3070), - [sym__heading1_begin] = ACTIONS(3070), - [sym__heading2_begin] = ACTIONS(3070), - [sym__heading3_begin] = ACTIONS(3070), - [sym__heading4_begin] = ACTIONS(3070), - [sym__heading5_begin] = ACTIONS(3070), - [sym__heading6_begin] = ACTIONS(3070), - [sym__div_begin] = ACTIONS(3070), - [sym__code_block_begin] = ACTIONS(3070), - [sym_list_marker_dash] = ACTIONS(3070), - [sym_list_marker_star] = ACTIONS(3070), - [sym_list_marker_plus] = ACTIONS(3070), - [sym__list_marker_task_begin] = ACTIONS(3070), - [sym_list_marker_definition] = ACTIONS(3070), - [sym_list_marker_decimal_period] = ACTIONS(3070), - [sym_list_marker_lower_alpha_period] = ACTIONS(3070), - [sym_list_marker_upper_alpha_period] = ACTIONS(3070), - [sym_list_marker_lower_roman_period] = ACTIONS(3070), - [sym_list_marker_upper_roman_period] = ACTIONS(3070), - [sym_list_marker_decimal_paren] = ACTIONS(3070), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3070), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3070), - [sym_list_marker_lower_roman_paren] = ACTIONS(3070), - [sym_list_marker_upper_roman_paren] = ACTIONS(3070), - [sym_list_marker_decimal_parens] = ACTIONS(3070), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3070), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3070), - [sym_list_marker_lower_roman_parens] = ACTIONS(3070), - [sym_list_marker_upper_roman_parens] = ACTIONS(3070), - [sym__block_quote_begin] = ACTIONS(3070), - [sym__block_quote_continuation] = ACTIONS(3070), - [sym__thematic_break_dash] = ACTIONS(3070), - [sym__thematic_break_star] = ACTIONS(3070), - [sym__footnote_begin] = ACTIONS(3070), - [sym__footnote_end] = ACTIONS(3070), - [sym__verbatim_begin] = ACTIONS(3070), - }, - [421] = { - [anon_sym_LBRACK] = ACTIONS(3084), - [anon_sym_PIPE] = ACTIONS(3086), - [anon_sym_LBRACE] = ACTIONS(3084), - [sym__whitespace1] = ACTIONS(3086), - [anon_sym_BSLASH] = ACTIONS(3084), - [sym_quotation_marks] = ACTIONS(3086), - [sym_ellipsis] = ACTIONS(3086), - [sym_em_dash] = ACTIONS(3086), - [sym_en_dash] = ACTIONS(3084), - [sym_backslash_escape] = ACTIONS(3084), - [anon_sym_LT] = ACTIONS(3086), - [anon_sym_LBRACE_] = ACTIONS(3086), - [anon_sym__] = ACTIONS(3086), - [anon_sym_LBRACE_STAR] = ACTIONS(3086), - [anon_sym_STAR] = ACTIONS(3086), - [anon_sym_LBRACE_EQ] = ACTIONS(3086), - [anon_sym_LBRACE_PLUS] = ACTIONS(3086), - [anon_sym_LBRACE_DASH] = ACTIONS(3086), - [sym_symbol] = ACTIONS(3086), - [anon_sym_LBRACE_CARET] = ACTIONS(3086), - [anon_sym_CARET] = ACTIONS(3086), - [anon_sym_LBRACE_TILDE] = ACTIONS(3086), - [anon_sym_TILDE] = ACTIONS(3086), - [anon_sym_LBRACK_CARET] = ACTIONS(3086), - [anon_sym_BANG_LBRACK] = ACTIONS(3086), - [anon_sym_DOLLAR] = ACTIONS(3086), - [anon_sym_TODO] = ACTIONS(3086), - [anon_sym_WIP] = ACTIONS(3086), - [anon_sym_NOTE] = ACTIONS(3086), - [anon_sym_INFO] = ACTIONS(3086), - [anon_sym_XXX] = ACTIONS(3086), - [sym_fixme] = ACTIONS(3086), - [aux_sym__text_token1] = ACTIONS(3084), - [sym__newline] = ACTIONS(3086), - [sym__newline_inline] = ACTIONS(3086), - [sym__heading1_begin] = ACTIONS(3086), - [sym__heading2_begin] = ACTIONS(3086), - [sym__heading3_begin] = ACTIONS(3086), - [sym__heading4_begin] = ACTIONS(3086), - [sym__heading5_begin] = ACTIONS(3086), - [sym__heading6_begin] = ACTIONS(3086), - [sym__div_begin] = ACTIONS(3086), - [sym__code_block_begin] = ACTIONS(3086), - [sym_list_marker_dash] = ACTIONS(3086), - [sym_list_marker_star] = ACTIONS(3086), - [sym_list_marker_plus] = ACTIONS(3086), - [sym__list_marker_task_begin] = ACTIONS(3086), - [sym_list_marker_definition] = ACTIONS(3086), - [sym_list_marker_decimal_period] = ACTIONS(3086), - [sym_list_marker_lower_alpha_period] = ACTIONS(3086), - [sym_list_marker_upper_alpha_period] = ACTIONS(3086), - [sym_list_marker_lower_roman_period] = ACTIONS(3086), - [sym_list_marker_upper_roman_period] = ACTIONS(3086), - [sym_list_marker_decimal_paren] = ACTIONS(3086), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3086), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3086), - [sym_list_marker_lower_roman_paren] = ACTIONS(3086), - [sym_list_marker_upper_roman_paren] = ACTIONS(3086), - [sym_list_marker_decimal_parens] = ACTIONS(3086), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3086), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3086), - [sym_list_marker_lower_roman_parens] = ACTIONS(3086), - [sym_list_marker_upper_roman_parens] = ACTIONS(3086), - [sym__block_quote_begin] = ACTIONS(3086), - [sym__block_quote_continuation] = ACTIONS(3086), - [sym__thematic_break_dash] = ACTIONS(3086), - [sym__thematic_break_star] = ACTIONS(3086), - [sym__footnote_begin] = ACTIONS(3086), - [sym__footnote_end] = ACTIONS(3086), - [sym__verbatim_begin] = ACTIONS(3086), - }, - [422] = { - [ts_builtin_sym_end] = ACTIONS(3086), - [anon_sym_LBRACK] = ACTIONS(3084), - [anon_sym_PIPE] = ACTIONS(3086), - [anon_sym_LBRACE] = ACTIONS(3084), - [sym__whitespace1] = ACTIONS(3086), - [anon_sym_BSLASH] = ACTIONS(3084), - [sym_quotation_marks] = ACTIONS(3086), - [sym_ellipsis] = ACTIONS(3086), - [sym_em_dash] = ACTIONS(3086), - [sym_en_dash] = ACTIONS(3084), - [sym_backslash_escape] = ACTIONS(3084), - [anon_sym_LT] = ACTIONS(3086), - [anon_sym_LBRACE_] = ACTIONS(3086), - [anon_sym__] = ACTIONS(3086), - [anon_sym_LBRACE_STAR] = ACTIONS(3086), - [anon_sym_STAR] = ACTIONS(3086), - [anon_sym_LBRACE_EQ] = ACTIONS(3086), - [anon_sym_LBRACE_PLUS] = ACTIONS(3086), - [anon_sym_LBRACE_DASH] = ACTIONS(3086), - [sym_symbol] = ACTIONS(3086), - [anon_sym_LBRACE_CARET] = ACTIONS(3086), - [anon_sym_CARET] = ACTIONS(3086), - [anon_sym_LBRACE_TILDE] = ACTIONS(3086), - [anon_sym_TILDE] = ACTIONS(3086), - [anon_sym_LBRACK_CARET] = ACTIONS(3086), - [anon_sym_BANG_LBRACK] = ACTIONS(3086), - [anon_sym_DOLLAR] = ACTIONS(3086), - [anon_sym_TODO] = ACTIONS(3086), - [anon_sym_WIP] = ACTIONS(3086), - [anon_sym_NOTE] = ACTIONS(3086), - [anon_sym_INFO] = ACTIONS(3086), - [anon_sym_XXX] = ACTIONS(3086), - [sym_fixme] = ACTIONS(3086), - [aux_sym__text_token1] = ACTIONS(3084), - [sym__newline] = ACTIONS(3086), - [sym__newline_inline] = ACTIONS(3086), - [sym__heading1_begin] = ACTIONS(3086), - [sym__heading2_begin] = ACTIONS(3086), - [sym__heading3_begin] = ACTIONS(3086), - [sym__heading4_begin] = ACTIONS(3086), - [sym__heading5_begin] = ACTIONS(3086), - [sym__heading6_begin] = ACTIONS(3086), - [sym__div_begin] = ACTIONS(3086), - [sym__code_block_begin] = ACTIONS(3086), - [sym_list_marker_dash] = ACTIONS(3086), - [sym_list_marker_star] = ACTIONS(3086), - [sym_list_marker_plus] = ACTIONS(3086), - [sym__list_marker_task_begin] = ACTIONS(3086), - [sym_list_marker_definition] = ACTIONS(3086), - [sym_list_marker_decimal_period] = ACTIONS(3086), - [sym_list_marker_lower_alpha_period] = ACTIONS(3086), - [sym_list_marker_upper_alpha_period] = ACTIONS(3086), - [sym_list_marker_lower_roman_period] = ACTIONS(3086), - [sym_list_marker_upper_roman_period] = ACTIONS(3086), - [sym_list_marker_decimal_paren] = ACTIONS(3086), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3086), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3086), - [sym_list_marker_lower_roman_paren] = ACTIONS(3086), - [sym_list_marker_upper_roman_paren] = ACTIONS(3086), - [sym_list_marker_decimal_parens] = ACTIONS(3086), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3086), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3086), - [sym_list_marker_lower_roman_parens] = ACTIONS(3086), - [sym_list_marker_upper_roman_parens] = ACTIONS(3086), - [sym__block_quote_begin] = ACTIONS(3086), - [sym__block_quote_continuation] = ACTIONS(3086), - [sym__thematic_break_dash] = ACTIONS(3086), - [sym__thematic_break_star] = ACTIONS(3086), - [sym__footnote_begin] = ACTIONS(3086), - [sym__verbatim_begin] = ACTIONS(3086), - }, - [423] = { - [ts_builtin_sym_end] = ACTIONS(3108), - [anon_sym_LBRACK] = ACTIONS(3110), - [anon_sym_PIPE] = ACTIONS(3108), - [anon_sym_LBRACE] = ACTIONS(3110), - [sym__whitespace1] = ACTIONS(3108), - [anon_sym_BSLASH] = ACTIONS(3110), - [sym_quotation_marks] = ACTIONS(3108), - [sym_ellipsis] = ACTIONS(3108), - [sym_em_dash] = ACTIONS(3108), - [sym_en_dash] = ACTIONS(3110), - [sym_backslash_escape] = ACTIONS(3110), - [anon_sym_LT] = ACTIONS(3108), - [anon_sym_LBRACE_] = ACTIONS(3108), - [anon_sym__] = ACTIONS(3108), - [anon_sym_LBRACE_STAR] = ACTIONS(3108), - [anon_sym_STAR] = ACTIONS(3108), - [anon_sym_LBRACE_EQ] = ACTIONS(3108), - [anon_sym_LBRACE_PLUS] = ACTIONS(3108), - [anon_sym_LBRACE_DASH] = ACTIONS(3108), - [sym_symbol] = ACTIONS(3108), - [anon_sym_LBRACE_CARET] = ACTIONS(3108), - [anon_sym_CARET] = ACTIONS(3108), - [anon_sym_LBRACE_TILDE] = ACTIONS(3108), - [anon_sym_TILDE] = ACTIONS(3108), - [anon_sym_LBRACK_CARET] = ACTIONS(3108), - [anon_sym_BANG_LBRACK] = ACTIONS(3108), - [anon_sym_DOLLAR] = ACTIONS(3108), - [anon_sym_TODO] = ACTIONS(3108), - [anon_sym_WIP] = ACTIONS(3108), - [anon_sym_NOTE] = ACTIONS(3108), - [anon_sym_INFO] = ACTIONS(3108), - [anon_sym_XXX] = ACTIONS(3108), - [sym_fixme] = ACTIONS(3108), - [aux_sym__text_token1] = ACTIONS(3110), - [sym__newline] = ACTIONS(3108), - [sym__newline_inline] = ACTIONS(3108), - [sym__heading1_begin] = ACTIONS(3108), - [sym__heading2_begin] = ACTIONS(3108), - [sym__heading3_begin] = ACTIONS(3108), - [sym__heading4_begin] = ACTIONS(3108), - [sym__heading5_begin] = ACTIONS(3108), - [sym__heading6_begin] = ACTIONS(3108), - [sym__div_begin] = ACTIONS(3108), - [sym__code_block_begin] = ACTIONS(3108), - [sym_list_marker_dash] = ACTIONS(3108), - [sym_list_marker_star] = ACTIONS(3108), - [sym_list_marker_plus] = ACTIONS(3108), - [sym__list_marker_task_begin] = ACTIONS(3108), - [sym_list_marker_definition] = ACTIONS(3108), - [sym_list_marker_decimal_period] = ACTIONS(3108), - [sym_list_marker_lower_alpha_period] = ACTIONS(3108), - [sym_list_marker_upper_alpha_period] = ACTIONS(3108), - [sym_list_marker_lower_roman_period] = ACTIONS(3108), - [sym_list_marker_upper_roman_period] = ACTIONS(3108), - [sym_list_marker_decimal_paren] = ACTIONS(3108), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3108), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3108), - [sym_list_marker_lower_roman_paren] = ACTIONS(3108), - [sym_list_marker_upper_roman_paren] = ACTIONS(3108), - [sym_list_marker_decimal_parens] = ACTIONS(3108), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3108), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3108), - [sym_list_marker_lower_roman_parens] = ACTIONS(3108), - [sym_list_marker_upper_roman_parens] = ACTIONS(3108), - [sym__block_quote_begin] = ACTIONS(3108), - [sym__block_quote_continuation] = ACTIONS(3108), - [sym__thematic_break_dash] = ACTIONS(3108), - [sym__thematic_break_star] = ACTIONS(3108), - [sym__footnote_begin] = ACTIONS(3108), - [sym__verbatim_begin] = ACTIONS(3108), - }, - [424] = { - [anon_sym_LBRACK] = ACTIONS(3066), - [anon_sym_PIPE] = ACTIONS(3064), - [anon_sym_LBRACE] = ACTIONS(3066), - [sym__whitespace1] = ACTIONS(3064), - [anon_sym_BSLASH] = ACTIONS(3066), - [sym_quotation_marks] = ACTIONS(3064), - [sym_ellipsis] = ACTIONS(3064), - [sym_em_dash] = ACTIONS(3064), - [sym_en_dash] = ACTIONS(3066), - [sym_backslash_escape] = ACTIONS(3066), - [anon_sym_LT] = ACTIONS(3064), - [anon_sym_LBRACE_] = ACTIONS(3064), - [anon_sym__] = ACTIONS(3064), - [anon_sym_LBRACE_STAR] = ACTIONS(3064), - [anon_sym_STAR] = ACTIONS(3064), - [anon_sym_LBRACE_EQ] = ACTIONS(3064), - [anon_sym_LBRACE_PLUS] = ACTIONS(3064), - [anon_sym_LBRACE_DASH] = ACTIONS(3064), - [sym_symbol] = ACTIONS(3064), - [anon_sym_LBRACE_CARET] = ACTIONS(3064), - [anon_sym_CARET] = ACTIONS(3064), - [anon_sym_LBRACE_TILDE] = ACTIONS(3064), - [anon_sym_TILDE] = ACTIONS(3064), - [anon_sym_LBRACK_CARET] = ACTIONS(3064), - [anon_sym_BANG_LBRACK] = ACTIONS(3064), - [anon_sym_DOLLAR] = ACTIONS(3064), - [anon_sym_TODO] = ACTIONS(3064), - [anon_sym_WIP] = ACTIONS(3064), - [anon_sym_NOTE] = ACTIONS(3064), - [anon_sym_INFO] = ACTIONS(3064), - [anon_sym_XXX] = ACTIONS(3064), - [sym_fixme] = ACTIONS(3064), - [aux_sym__text_token1] = ACTIONS(3066), - [sym__block_close] = ACTIONS(3064), - [sym__newline] = ACTIONS(3064), - [sym__newline_inline] = ACTIONS(3064), - [sym__heading1_begin] = ACTIONS(3064), - [sym__heading2_begin] = ACTIONS(3064), - [sym__heading3_begin] = ACTIONS(3064), - [sym__heading4_begin] = ACTIONS(3064), - [sym__heading5_begin] = ACTIONS(3064), - [sym__heading6_begin] = ACTIONS(3064), - [sym__div_begin] = ACTIONS(3064), - [sym__code_block_begin] = ACTIONS(3064), - [sym_list_marker_dash] = ACTIONS(3064), - [sym_list_marker_star] = ACTIONS(3064), - [sym_list_marker_plus] = ACTIONS(3064), - [sym__list_marker_task_begin] = ACTIONS(3064), - [sym_list_marker_definition] = ACTIONS(3064), - [sym_list_marker_decimal_period] = ACTIONS(3064), - [sym_list_marker_lower_alpha_period] = ACTIONS(3064), - [sym_list_marker_upper_alpha_period] = ACTIONS(3064), - [sym_list_marker_lower_roman_period] = ACTIONS(3064), - [sym_list_marker_upper_roman_period] = ACTIONS(3064), - [sym_list_marker_decimal_paren] = ACTIONS(3064), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3064), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3064), - [sym_list_marker_lower_roman_paren] = ACTIONS(3064), - [sym_list_marker_upper_roman_paren] = ACTIONS(3064), - [sym_list_marker_decimal_parens] = ACTIONS(3064), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3064), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3064), - [sym_list_marker_lower_roman_parens] = ACTIONS(3064), - [sym_list_marker_upper_roman_parens] = ACTIONS(3064), - [sym__block_quote_begin] = ACTIONS(3064), - [sym__block_quote_continuation] = ACTIONS(3064), - [sym__thematic_break_dash] = ACTIONS(3064), - [sym__thematic_break_star] = ACTIONS(3064), - [sym__footnote_begin] = ACTIONS(3064), - [sym__verbatim_begin] = ACTIONS(3064), - }, - [425] = { - [ts_builtin_sym_end] = ACTIONS(3070), - [anon_sym_LBRACK] = ACTIONS(3068), - [anon_sym_PIPE] = ACTIONS(3070), - [anon_sym_LBRACE] = ACTIONS(3068), - [sym__whitespace1] = ACTIONS(3070), - [anon_sym_BSLASH] = ACTIONS(3068), - [sym_quotation_marks] = ACTIONS(3070), - [sym_ellipsis] = ACTIONS(3070), - [sym_em_dash] = ACTIONS(3070), - [sym_en_dash] = ACTIONS(3068), - [sym_backslash_escape] = ACTIONS(3068), - [anon_sym_LT] = ACTIONS(3070), - [anon_sym_LBRACE_] = ACTIONS(3070), - [anon_sym__] = ACTIONS(3070), - [anon_sym_LBRACE_STAR] = ACTIONS(3070), - [anon_sym_STAR] = ACTIONS(3070), - [anon_sym_LBRACE_EQ] = ACTIONS(3070), - [anon_sym_LBRACE_PLUS] = ACTIONS(3070), - [anon_sym_LBRACE_DASH] = ACTIONS(3070), - [sym_symbol] = ACTIONS(3070), - [anon_sym_LBRACE_CARET] = ACTIONS(3070), - [anon_sym_CARET] = ACTIONS(3070), - [anon_sym_LBRACE_TILDE] = ACTIONS(3070), - [anon_sym_TILDE] = ACTIONS(3070), - [anon_sym_LBRACK_CARET] = ACTIONS(3070), - [anon_sym_BANG_LBRACK] = ACTIONS(3070), - [anon_sym_DOLLAR] = ACTIONS(3070), - [anon_sym_TODO] = ACTIONS(3070), - [anon_sym_WIP] = ACTIONS(3070), - [anon_sym_NOTE] = ACTIONS(3070), - [anon_sym_INFO] = ACTIONS(3070), - [anon_sym_XXX] = ACTIONS(3070), - [sym_fixme] = ACTIONS(3070), - [aux_sym__text_token1] = ACTIONS(3068), - [sym__newline] = ACTIONS(3070), - [sym__newline_inline] = ACTIONS(3070), - [sym__heading1_begin] = ACTIONS(3070), - [sym__heading2_begin] = ACTIONS(3070), - [sym__heading3_begin] = ACTIONS(3070), - [sym__heading4_begin] = ACTIONS(3070), - [sym__heading5_begin] = ACTIONS(3070), - [sym__heading6_begin] = ACTIONS(3070), - [sym__div_begin] = ACTIONS(3070), - [sym__code_block_begin] = ACTIONS(3070), - [sym_list_marker_dash] = ACTIONS(3070), - [sym_list_marker_star] = ACTIONS(3070), - [sym_list_marker_plus] = ACTIONS(3070), - [sym__list_marker_task_begin] = ACTIONS(3070), - [sym_list_marker_definition] = ACTIONS(3070), - [sym_list_marker_decimal_period] = ACTIONS(3070), - [sym_list_marker_lower_alpha_period] = ACTIONS(3070), - [sym_list_marker_upper_alpha_period] = ACTIONS(3070), - [sym_list_marker_lower_roman_period] = ACTIONS(3070), - [sym_list_marker_upper_roman_period] = ACTIONS(3070), - [sym_list_marker_decimal_paren] = ACTIONS(3070), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3070), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3070), - [sym_list_marker_lower_roman_paren] = ACTIONS(3070), - [sym_list_marker_upper_roman_paren] = ACTIONS(3070), - [sym_list_marker_decimal_parens] = ACTIONS(3070), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3070), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3070), - [sym_list_marker_lower_roman_parens] = ACTIONS(3070), - [sym_list_marker_upper_roman_parens] = ACTIONS(3070), - [sym__block_quote_begin] = ACTIONS(3070), - [sym__block_quote_continuation] = ACTIONS(3070), - [sym__thematic_break_dash] = ACTIONS(3070), - [sym__thematic_break_star] = ACTIONS(3070), - [sym__footnote_begin] = ACTIONS(3070), - [sym__verbatim_begin] = ACTIONS(3070), - }, - [426] = { - [anon_sym_LBRACK] = ACTIONS(2750), - [anon_sym_PIPE] = ACTIONS(2752), - [anon_sym_LBRACE] = ACTIONS(2750), - [sym__whitespace1] = ACTIONS(2752), - [anon_sym_BSLASH] = ACTIONS(2750), - [sym_quotation_marks] = ACTIONS(2752), - [sym_ellipsis] = ACTIONS(2752), - [sym_em_dash] = ACTIONS(2752), - [sym_en_dash] = ACTIONS(2750), - [sym_backslash_escape] = ACTIONS(2750), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_LBRACE_] = ACTIONS(2752), - [anon_sym__] = ACTIONS(2752), - [anon_sym_LBRACE_STAR] = ACTIONS(2752), - [anon_sym_STAR] = ACTIONS(2752), - [anon_sym_LBRACE_EQ] = ACTIONS(2752), - [anon_sym_LBRACE_PLUS] = ACTIONS(2752), - [anon_sym_LBRACE_DASH] = ACTIONS(2752), - [sym_symbol] = ACTIONS(2752), - [anon_sym_LBRACE_CARET] = ACTIONS(2752), - [anon_sym_CARET] = ACTIONS(2752), - [anon_sym_LBRACE_TILDE] = ACTIONS(2752), - [anon_sym_TILDE] = ACTIONS(2752), - [anon_sym_LBRACK_CARET] = ACTIONS(2752), - [anon_sym_BANG_LBRACK] = ACTIONS(2752), - [anon_sym_DOLLAR] = ACTIONS(2752), - [anon_sym_TODO] = ACTIONS(2752), - [anon_sym_WIP] = ACTIONS(2752), - [anon_sym_NOTE] = ACTIONS(2752), - [anon_sym_INFO] = ACTIONS(2752), - [anon_sym_XXX] = ACTIONS(2752), - [sym_fixme] = ACTIONS(2752), - [aux_sym__text_token1] = ACTIONS(2750), - [sym__block_close] = ACTIONS(2752), - [sym__newline] = ACTIONS(2752), - [sym__newline_inline] = ACTIONS(2752), - [sym__heading1_begin] = ACTIONS(2752), - [sym__heading2_begin] = ACTIONS(2752), - [sym__heading3_begin] = ACTIONS(2752), - [sym__heading4_begin] = ACTIONS(2752), - [sym__heading5_begin] = ACTIONS(2752), - [sym__heading6_begin] = ACTIONS(2752), - [sym__div_begin] = ACTIONS(2752), - [sym__code_block_begin] = ACTIONS(2752), - [sym_list_marker_dash] = ACTIONS(2752), - [sym_list_marker_star] = ACTIONS(2752), - [sym_list_marker_plus] = ACTIONS(2752), - [sym__list_marker_task_begin] = ACTIONS(2752), - [sym_list_marker_definition] = ACTIONS(2752), - [sym_list_marker_decimal_period] = ACTIONS(2752), - [sym_list_marker_lower_alpha_period] = ACTIONS(2752), - [sym_list_marker_upper_alpha_period] = ACTIONS(2752), - [sym_list_marker_lower_roman_period] = ACTIONS(2752), - [sym_list_marker_upper_roman_period] = ACTIONS(2752), - [sym_list_marker_decimal_paren] = ACTIONS(2752), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2752), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2752), - [sym_list_marker_lower_roman_paren] = ACTIONS(2752), - [sym_list_marker_upper_roman_paren] = ACTIONS(2752), - [sym_list_marker_decimal_parens] = ACTIONS(2752), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2752), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2752), - [sym_list_marker_lower_roman_parens] = ACTIONS(2752), - [sym_list_marker_upper_roman_parens] = ACTIONS(2752), - [sym__block_quote_begin] = ACTIONS(2752), - [sym__block_quote_continuation] = ACTIONS(2752), - [sym__thematic_break_dash] = ACTIONS(2752), - [sym__thematic_break_star] = ACTIONS(2752), - [sym__footnote_begin] = ACTIONS(2752), - [sym__verbatim_begin] = ACTIONS(2752), - }, - [427] = { - [ts_builtin_sym_end] = ACTIONS(3062), - [anon_sym_LBRACK] = ACTIONS(3060), - [anon_sym_PIPE] = ACTIONS(3062), - [anon_sym_LBRACE] = ACTIONS(3060), - [sym__whitespace1] = ACTIONS(3062), - [anon_sym_BSLASH] = ACTIONS(3060), - [sym_quotation_marks] = ACTIONS(3062), - [sym_ellipsis] = ACTIONS(3062), - [sym_em_dash] = ACTIONS(3062), - [sym_en_dash] = ACTIONS(3060), - [sym_backslash_escape] = ACTIONS(3060), - [anon_sym_LT] = ACTIONS(3062), - [anon_sym_LBRACE_] = ACTIONS(3062), - [anon_sym__] = ACTIONS(3062), - [anon_sym_LBRACE_STAR] = ACTIONS(3062), - [anon_sym_STAR] = ACTIONS(3062), - [anon_sym_LBRACE_EQ] = ACTIONS(3062), - [anon_sym_LBRACE_PLUS] = ACTIONS(3062), - [anon_sym_LBRACE_DASH] = ACTIONS(3062), - [sym_symbol] = ACTIONS(3062), - [anon_sym_LBRACE_CARET] = ACTIONS(3062), - [anon_sym_CARET] = ACTIONS(3062), - [anon_sym_LBRACE_TILDE] = ACTIONS(3062), - [anon_sym_TILDE] = ACTIONS(3062), - [anon_sym_LBRACK_CARET] = ACTIONS(3062), - [anon_sym_BANG_LBRACK] = ACTIONS(3062), - [anon_sym_DOLLAR] = ACTIONS(3062), - [anon_sym_TODO] = ACTIONS(3062), - [anon_sym_WIP] = ACTIONS(3062), - [anon_sym_NOTE] = ACTIONS(3062), - [anon_sym_INFO] = ACTIONS(3062), - [anon_sym_XXX] = ACTIONS(3062), - [sym_fixme] = ACTIONS(3062), - [aux_sym__text_token1] = ACTIONS(3060), - [sym__newline] = ACTIONS(3062), - [sym__newline_inline] = ACTIONS(3062), - [sym__heading1_begin] = ACTIONS(3062), - [sym__heading2_begin] = ACTIONS(3062), - [sym__heading3_begin] = ACTIONS(3062), - [sym__heading4_begin] = ACTIONS(3062), - [sym__heading5_begin] = ACTIONS(3062), - [sym__heading6_begin] = ACTIONS(3062), - [sym__div_begin] = ACTIONS(3062), - [sym__code_block_begin] = ACTIONS(3062), - [sym_list_marker_dash] = ACTIONS(3062), - [sym_list_marker_star] = ACTIONS(3062), - [sym_list_marker_plus] = ACTIONS(3062), - [sym__list_marker_task_begin] = ACTIONS(3062), - [sym_list_marker_definition] = ACTIONS(3062), - [sym_list_marker_decimal_period] = ACTIONS(3062), - [sym_list_marker_lower_alpha_period] = ACTIONS(3062), - [sym_list_marker_upper_alpha_period] = ACTIONS(3062), - [sym_list_marker_lower_roman_period] = ACTIONS(3062), - [sym_list_marker_upper_roman_period] = ACTIONS(3062), - [sym_list_marker_decimal_paren] = ACTIONS(3062), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3062), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3062), - [sym_list_marker_lower_roman_paren] = ACTIONS(3062), - [sym_list_marker_upper_roman_paren] = ACTIONS(3062), - [sym_list_marker_decimal_parens] = ACTIONS(3062), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3062), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3062), - [sym_list_marker_lower_roman_parens] = ACTIONS(3062), - [sym_list_marker_upper_roman_parens] = ACTIONS(3062), - [sym__block_quote_begin] = ACTIONS(3062), - [sym__block_quote_continuation] = ACTIONS(3062), - [sym__thematic_break_dash] = ACTIONS(3062), - [sym__thematic_break_star] = ACTIONS(3062), - [sym__footnote_begin] = ACTIONS(3062), - [sym__verbatim_begin] = ACTIONS(3062), - }, - [428] = { - [ts_builtin_sym_end] = ACTIONS(3112), - [anon_sym_LBRACK] = ACTIONS(3114), - [anon_sym_PIPE] = ACTIONS(3112), - [anon_sym_LBRACE] = ACTIONS(3114), - [sym__whitespace1] = ACTIONS(3112), - [anon_sym_BSLASH] = ACTIONS(3114), - [sym_quotation_marks] = ACTIONS(3112), - [sym_ellipsis] = ACTIONS(3112), - [sym_em_dash] = ACTIONS(3112), - [sym_en_dash] = ACTIONS(3114), - [sym_backslash_escape] = ACTIONS(3114), - [anon_sym_LT] = ACTIONS(3112), - [anon_sym_LBRACE_] = ACTIONS(3112), - [anon_sym__] = ACTIONS(3112), - [anon_sym_LBRACE_STAR] = ACTIONS(3112), - [anon_sym_STAR] = ACTIONS(3112), - [anon_sym_LBRACE_EQ] = ACTIONS(3112), - [anon_sym_LBRACE_PLUS] = ACTIONS(3112), - [anon_sym_LBRACE_DASH] = ACTIONS(3112), - [sym_symbol] = ACTIONS(3112), - [anon_sym_LBRACE_CARET] = ACTIONS(3112), - [anon_sym_CARET] = ACTIONS(3112), - [anon_sym_LBRACE_TILDE] = ACTIONS(3112), - [anon_sym_TILDE] = ACTIONS(3112), - [anon_sym_LBRACK_CARET] = ACTIONS(3112), - [anon_sym_BANG_LBRACK] = ACTIONS(3112), - [anon_sym_DOLLAR] = ACTIONS(3112), - [anon_sym_TODO] = ACTIONS(3112), - [anon_sym_WIP] = ACTIONS(3112), - [anon_sym_NOTE] = ACTIONS(3112), - [anon_sym_INFO] = ACTIONS(3112), - [anon_sym_XXX] = ACTIONS(3112), - [sym_fixme] = ACTIONS(3112), - [aux_sym__text_token1] = ACTIONS(3114), - [sym__newline] = ACTIONS(3112), - [sym__newline_inline] = ACTIONS(3112), - [sym__heading1_begin] = ACTIONS(3112), - [sym__heading2_begin] = ACTIONS(3112), - [sym__heading3_begin] = ACTIONS(3112), - [sym__heading4_begin] = ACTIONS(3112), - [sym__heading5_begin] = ACTIONS(3112), - [sym__heading6_begin] = ACTIONS(3112), - [sym__div_begin] = ACTIONS(3112), - [sym__code_block_begin] = ACTIONS(3112), - [sym_list_marker_dash] = ACTIONS(3112), - [sym_list_marker_star] = ACTIONS(3112), - [sym_list_marker_plus] = ACTIONS(3112), - [sym__list_marker_task_begin] = ACTIONS(3112), - [sym_list_marker_definition] = ACTIONS(3112), - [sym_list_marker_decimal_period] = ACTIONS(3112), - [sym_list_marker_lower_alpha_period] = ACTIONS(3112), - [sym_list_marker_upper_alpha_period] = ACTIONS(3112), - [sym_list_marker_lower_roman_period] = ACTIONS(3112), - [sym_list_marker_upper_roman_period] = ACTIONS(3112), - [sym_list_marker_decimal_paren] = ACTIONS(3112), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3112), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3112), - [sym_list_marker_lower_roman_paren] = ACTIONS(3112), - [sym_list_marker_upper_roman_paren] = ACTIONS(3112), - [sym_list_marker_decimal_parens] = ACTIONS(3112), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3112), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3112), - [sym_list_marker_lower_roman_parens] = ACTIONS(3112), - [sym_list_marker_upper_roman_parens] = ACTIONS(3112), - [sym__block_quote_begin] = ACTIONS(3112), - [sym__block_quote_continuation] = ACTIONS(3112), - [sym__thematic_break_dash] = ACTIONS(3112), - [sym__thematic_break_star] = ACTIONS(3112), - [sym__footnote_begin] = ACTIONS(3112), - [sym__verbatim_begin] = ACTIONS(3112), - }, - [429] = { - [anon_sym_LBRACK] = ACTIONS(3096), - [anon_sym_PIPE] = ACTIONS(3098), - [anon_sym_LBRACE] = ACTIONS(3096), - [sym__whitespace1] = ACTIONS(3098), - [anon_sym_BSLASH] = ACTIONS(3096), - [sym_quotation_marks] = ACTIONS(3098), - [sym_ellipsis] = ACTIONS(3098), - [sym_em_dash] = ACTIONS(3098), - [sym_en_dash] = ACTIONS(3096), - [sym_backslash_escape] = ACTIONS(3096), - [anon_sym_LT] = ACTIONS(3098), - [anon_sym_LBRACE_] = ACTIONS(3098), - [anon_sym__] = ACTIONS(3098), - [anon_sym_LBRACE_STAR] = ACTIONS(3098), - [anon_sym_STAR] = ACTIONS(3098), - [anon_sym_LBRACE_EQ] = ACTIONS(3098), - [anon_sym_LBRACE_PLUS] = ACTIONS(3098), - [anon_sym_LBRACE_DASH] = ACTIONS(3098), - [sym_symbol] = ACTIONS(3098), - [anon_sym_LBRACE_CARET] = ACTIONS(3098), - [anon_sym_CARET] = ACTIONS(3098), - [anon_sym_LBRACE_TILDE] = ACTIONS(3098), - [anon_sym_TILDE] = ACTIONS(3098), - [anon_sym_LBRACK_CARET] = ACTIONS(3098), - [anon_sym_BANG_LBRACK] = ACTIONS(3098), - [anon_sym_DOLLAR] = ACTIONS(3098), - [anon_sym_TODO] = ACTIONS(3098), - [anon_sym_WIP] = ACTIONS(3098), - [anon_sym_NOTE] = ACTIONS(3098), - [anon_sym_INFO] = ACTIONS(3098), - [anon_sym_XXX] = ACTIONS(3098), - [sym_fixme] = ACTIONS(3098), - [aux_sym__text_token1] = ACTIONS(3096), - [sym__newline] = ACTIONS(3098), - [sym__newline_inline] = ACTIONS(3098), - [sym__heading1_begin] = ACTIONS(3098), - [sym__heading2_begin] = ACTIONS(3098), - [sym__heading3_begin] = ACTIONS(3098), - [sym__heading4_begin] = ACTIONS(3098), - [sym__heading5_begin] = ACTIONS(3098), - [sym__heading6_begin] = ACTIONS(3098), - [sym__div_begin] = ACTIONS(3098), - [sym__code_block_begin] = ACTIONS(3098), - [sym_list_marker_dash] = ACTIONS(3098), - [sym_list_marker_star] = ACTIONS(3098), - [sym_list_marker_plus] = ACTIONS(3098), - [sym__list_marker_task_begin] = ACTIONS(3098), - [sym_list_marker_definition] = ACTIONS(3098), - [sym_list_marker_decimal_period] = ACTIONS(3098), - [sym_list_marker_lower_alpha_period] = ACTIONS(3098), - [sym_list_marker_upper_alpha_period] = ACTIONS(3098), - [sym_list_marker_lower_roman_period] = ACTIONS(3098), - [sym_list_marker_upper_roman_period] = ACTIONS(3098), - [sym_list_marker_decimal_paren] = ACTIONS(3098), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3098), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3098), - [sym_list_marker_lower_roman_paren] = ACTIONS(3098), - [sym_list_marker_upper_roman_paren] = ACTIONS(3098), - [sym_list_marker_decimal_parens] = ACTIONS(3098), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3098), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3098), - [sym_list_marker_lower_roman_parens] = ACTIONS(3098), - [sym_list_marker_upper_roman_parens] = ACTIONS(3098), - [sym__block_quote_begin] = ACTIONS(3098), - [sym__block_quote_continuation] = ACTIONS(3098), - [sym__thematic_break_dash] = ACTIONS(3098), - [sym__thematic_break_star] = ACTIONS(3098), - [sym__footnote_begin] = ACTIONS(3098), - [sym__footnote_end] = ACTIONS(3098), - [sym__verbatim_begin] = ACTIONS(3098), - }, - [430] = { - [anon_sym_LBRACK] = ACTIONS(3116), - [anon_sym_PIPE] = ACTIONS(3118), - [anon_sym_LBRACE] = ACTIONS(3116), - [sym__whitespace1] = ACTIONS(3118), - [anon_sym_BSLASH] = ACTIONS(3116), - [sym_quotation_marks] = ACTIONS(3118), - [sym_ellipsis] = ACTIONS(3118), - [sym_em_dash] = ACTIONS(3118), - [sym_en_dash] = ACTIONS(3116), - [sym_backslash_escape] = ACTIONS(3116), - [anon_sym_LT] = ACTIONS(3118), - [anon_sym_LBRACE_] = ACTIONS(3118), - [anon_sym__] = ACTIONS(3118), - [anon_sym_LBRACE_STAR] = ACTIONS(3118), - [anon_sym_STAR] = ACTIONS(3118), - [anon_sym_LBRACE_EQ] = ACTIONS(3118), - [anon_sym_LBRACE_PLUS] = ACTIONS(3118), - [anon_sym_LBRACE_DASH] = ACTIONS(3118), - [sym_symbol] = ACTIONS(3118), - [anon_sym_LBRACE_CARET] = ACTIONS(3118), - [anon_sym_CARET] = ACTIONS(3118), - [anon_sym_LBRACE_TILDE] = ACTIONS(3118), - [anon_sym_TILDE] = ACTIONS(3118), - [anon_sym_LBRACK_CARET] = ACTIONS(3118), - [anon_sym_BANG_LBRACK] = ACTIONS(3118), - [anon_sym_DOLLAR] = ACTIONS(3118), - [anon_sym_TODO] = ACTIONS(3118), - [anon_sym_WIP] = ACTIONS(3118), - [anon_sym_NOTE] = ACTIONS(3118), - [anon_sym_INFO] = ACTIONS(3118), - [anon_sym_XXX] = ACTIONS(3118), - [sym_fixme] = ACTIONS(3118), - [aux_sym__text_token1] = ACTIONS(3116), - [sym__newline] = ACTIONS(3118), - [sym__newline_inline] = ACTIONS(3118), - [sym__heading1_begin] = ACTIONS(3118), - [sym__heading2_begin] = ACTIONS(3118), - [sym__heading3_begin] = ACTIONS(3118), - [sym__heading4_begin] = ACTIONS(3118), - [sym__heading5_begin] = ACTIONS(3118), - [sym__heading6_begin] = ACTIONS(3118), - [sym__div_begin] = ACTIONS(3118), - [sym__code_block_begin] = ACTIONS(3118), - [sym_list_marker_dash] = ACTIONS(3118), - [sym_list_marker_star] = ACTIONS(3118), - [sym_list_marker_plus] = ACTIONS(3118), - [sym__list_marker_task_begin] = ACTIONS(3118), - [sym_list_marker_definition] = ACTIONS(3118), - [sym_list_marker_decimal_period] = ACTIONS(3118), - [sym_list_marker_lower_alpha_period] = ACTIONS(3118), - [sym_list_marker_upper_alpha_period] = ACTIONS(3118), - [sym_list_marker_lower_roman_period] = ACTIONS(3118), - [sym_list_marker_upper_roman_period] = ACTIONS(3118), - [sym_list_marker_decimal_paren] = ACTIONS(3118), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3118), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3118), - [sym_list_marker_lower_roman_paren] = ACTIONS(3118), - [sym_list_marker_upper_roman_paren] = ACTIONS(3118), - [sym_list_marker_decimal_parens] = ACTIONS(3118), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3118), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3118), - [sym_list_marker_lower_roman_parens] = ACTIONS(3118), - [sym_list_marker_upper_roman_parens] = ACTIONS(3118), - [sym__block_quote_begin] = ACTIONS(3118), - [sym__block_quote_continuation] = ACTIONS(3118), - [sym__thematic_break_dash] = ACTIONS(3118), - [sym__thematic_break_star] = ACTIONS(3118), - [sym__footnote_begin] = ACTIONS(3118), - [sym__footnote_end] = ACTIONS(3118), - [sym__verbatim_begin] = ACTIONS(3118), - }, - [431] = { - [anon_sym_LBRACK] = ACTIONS(3100), - [anon_sym_PIPE] = ACTIONS(3102), - [anon_sym_LBRACE] = ACTIONS(3100), - [sym__whitespace1] = ACTIONS(3102), - [anon_sym_BSLASH] = ACTIONS(3100), - [sym_quotation_marks] = ACTIONS(3102), - [sym_ellipsis] = ACTIONS(3102), - [sym_em_dash] = ACTIONS(3102), - [sym_en_dash] = ACTIONS(3100), - [sym_backslash_escape] = ACTIONS(3100), - [anon_sym_LT] = ACTIONS(3102), - [anon_sym_LBRACE_] = ACTIONS(3102), - [anon_sym__] = ACTIONS(3102), - [anon_sym_LBRACE_STAR] = ACTIONS(3102), - [anon_sym_STAR] = ACTIONS(3102), - [anon_sym_LBRACE_EQ] = ACTIONS(3102), - [anon_sym_LBRACE_PLUS] = ACTIONS(3102), - [anon_sym_LBRACE_DASH] = ACTIONS(3102), - [sym_symbol] = ACTIONS(3102), - [anon_sym_LBRACE_CARET] = ACTIONS(3102), - [anon_sym_CARET] = ACTIONS(3102), - [anon_sym_LBRACE_TILDE] = ACTIONS(3102), - [anon_sym_TILDE] = ACTIONS(3102), - [anon_sym_LBRACK_CARET] = ACTIONS(3102), - [anon_sym_BANG_LBRACK] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3102), - [anon_sym_TODO] = ACTIONS(3102), - [anon_sym_WIP] = ACTIONS(3102), - [anon_sym_NOTE] = ACTIONS(3102), - [anon_sym_INFO] = ACTIONS(3102), - [anon_sym_XXX] = ACTIONS(3102), - [sym_fixme] = ACTIONS(3102), - [aux_sym__text_token1] = ACTIONS(3100), - [sym__newline] = ACTIONS(3102), - [sym__newline_inline] = ACTIONS(3102), - [sym__heading1_begin] = ACTIONS(3102), - [sym__heading2_begin] = ACTIONS(3102), - [sym__heading3_begin] = ACTIONS(3102), - [sym__heading4_begin] = ACTIONS(3102), - [sym__heading5_begin] = ACTIONS(3102), - [sym__heading6_begin] = ACTIONS(3102), - [sym__div_begin] = ACTIONS(3102), - [sym__code_block_begin] = ACTIONS(3102), - [sym_list_marker_dash] = ACTIONS(3102), - [sym_list_marker_star] = ACTIONS(3102), - [sym_list_marker_plus] = ACTIONS(3102), - [sym__list_marker_task_begin] = ACTIONS(3102), - [sym_list_marker_definition] = ACTIONS(3102), - [sym_list_marker_decimal_period] = ACTIONS(3102), - [sym_list_marker_lower_alpha_period] = ACTIONS(3102), - [sym_list_marker_upper_alpha_period] = ACTIONS(3102), - [sym_list_marker_lower_roman_period] = ACTIONS(3102), - [sym_list_marker_upper_roman_period] = ACTIONS(3102), - [sym_list_marker_decimal_paren] = ACTIONS(3102), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3102), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3102), - [sym_list_marker_lower_roman_paren] = ACTIONS(3102), - [sym_list_marker_upper_roman_paren] = ACTIONS(3102), - [sym_list_marker_decimal_parens] = ACTIONS(3102), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3102), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3102), - [sym_list_marker_lower_roman_parens] = ACTIONS(3102), - [sym_list_marker_upper_roman_parens] = ACTIONS(3102), - [sym__block_quote_begin] = ACTIONS(3102), - [sym__block_quote_continuation] = ACTIONS(3102), - [sym__thematic_break_dash] = ACTIONS(3102), - [sym__thematic_break_star] = ACTIONS(3102), - [sym__footnote_begin] = ACTIONS(3102), - [sym__footnote_end] = ACTIONS(3102), - [sym__verbatim_begin] = ACTIONS(3102), - }, - [432] = { - [anon_sym_LBRACK] = ACTIONS(3120), - [anon_sym_PIPE] = ACTIONS(3122), - [anon_sym_LBRACE] = ACTIONS(3120), - [sym__whitespace1] = ACTIONS(3122), - [anon_sym_BSLASH] = ACTIONS(3120), - [sym_quotation_marks] = ACTIONS(3122), - [sym_ellipsis] = ACTIONS(3122), - [sym_em_dash] = ACTIONS(3122), - [sym_en_dash] = ACTIONS(3120), - [sym_backslash_escape] = ACTIONS(3120), - [anon_sym_LT] = ACTIONS(3122), - [anon_sym_LBRACE_] = ACTIONS(3122), - [anon_sym__] = ACTIONS(3122), - [anon_sym_LBRACE_STAR] = ACTIONS(3122), - [anon_sym_STAR] = ACTIONS(3122), - [anon_sym_LBRACE_EQ] = ACTIONS(3122), - [anon_sym_LBRACE_PLUS] = ACTIONS(3122), - [anon_sym_LBRACE_DASH] = ACTIONS(3122), - [sym_symbol] = ACTIONS(3122), - [anon_sym_LBRACE_CARET] = ACTIONS(3122), - [anon_sym_CARET] = ACTIONS(3122), - [anon_sym_LBRACE_TILDE] = ACTIONS(3122), - [anon_sym_TILDE] = ACTIONS(3122), - [anon_sym_LBRACK_CARET] = ACTIONS(3122), - [anon_sym_BANG_LBRACK] = ACTIONS(3122), - [anon_sym_DOLLAR] = ACTIONS(3122), - [anon_sym_TODO] = ACTIONS(3122), - [anon_sym_WIP] = ACTIONS(3122), - [anon_sym_NOTE] = ACTIONS(3122), - [anon_sym_INFO] = ACTIONS(3122), - [anon_sym_XXX] = ACTIONS(3122), - [sym_fixme] = ACTIONS(3122), - [aux_sym__text_token1] = ACTIONS(3120), - [sym__block_close] = ACTIONS(3122), - [sym__newline] = ACTIONS(3122), - [sym__newline_inline] = ACTIONS(3122), - [sym__heading1_begin] = ACTIONS(3122), - [sym__heading2_begin] = ACTIONS(3122), - [sym__heading3_begin] = ACTIONS(3122), - [sym__heading4_begin] = ACTIONS(3122), - [sym__heading5_begin] = ACTIONS(3122), - [sym__heading6_begin] = ACTIONS(3122), - [sym__div_begin] = ACTIONS(3122), - [sym__code_block_begin] = ACTIONS(3122), - [sym_list_marker_dash] = ACTIONS(3122), - [sym_list_marker_star] = ACTIONS(3122), - [sym_list_marker_plus] = ACTIONS(3122), - [sym__list_marker_task_begin] = ACTIONS(3122), - [sym_list_marker_definition] = ACTIONS(3122), - [sym_list_marker_decimal_period] = ACTIONS(3122), - [sym_list_marker_lower_alpha_period] = ACTIONS(3122), - [sym_list_marker_upper_alpha_period] = ACTIONS(3122), - [sym_list_marker_lower_roman_period] = ACTIONS(3122), - [sym_list_marker_upper_roman_period] = ACTIONS(3122), - [sym_list_marker_decimal_paren] = ACTIONS(3122), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3122), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3122), - [sym_list_marker_lower_roman_paren] = ACTIONS(3122), - [sym_list_marker_upper_roman_paren] = ACTIONS(3122), - [sym_list_marker_decimal_parens] = ACTIONS(3122), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3122), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3122), - [sym_list_marker_lower_roman_parens] = ACTIONS(3122), - [sym_list_marker_upper_roman_parens] = ACTIONS(3122), - [sym__block_quote_begin] = ACTIONS(3122), - [sym__block_quote_continuation] = ACTIONS(3122), - [sym__thematic_break_dash] = ACTIONS(3122), - [sym__thematic_break_star] = ACTIONS(3122), - [sym__footnote_begin] = ACTIONS(3122), - [sym__verbatim_begin] = ACTIONS(3122), - }, - [433] = { - [anon_sym_LBRACK] = ACTIONS(3124), - [anon_sym_PIPE] = ACTIONS(3126), - [anon_sym_LBRACE] = ACTIONS(3124), - [sym__whitespace1] = ACTIONS(3126), - [anon_sym_BSLASH] = ACTIONS(3124), - [sym_quotation_marks] = ACTIONS(3126), - [sym_ellipsis] = ACTIONS(3126), - [sym_em_dash] = ACTIONS(3126), - [sym_en_dash] = ACTIONS(3124), - [sym_backslash_escape] = ACTIONS(3124), - [anon_sym_LT] = ACTIONS(3126), - [anon_sym_LBRACE_] = ACTIONS(3126), - [anon_sym__] = ACTIONS(3126), - [anon_sym_LBRACE_STAR] = ACTIONS(3126), - [anon_sym_STAR] = ACTIONS(3126), - [anon_sym_LBRACE_EQ] = ACTIONS(3126), - [anon_sym_LBRACE_PLUS] = ACTIONS(3126), - [anon_sym_LBRACE_DASH] = ACTIONS(3126), - [sym_symbol] = ACTIONS(3126), - [anon_sym_LBRACE_CARET] = ACTIONS(3126), - [anon_sym_CARET] = ACTIONS(3126), - [anon_sym_LBRACE_TILDE] = ACTIONS(3126), - [anon_sym_TILDE] = ACTIONS(3126), - [anon_sym_LBRACK_CARET] = ACTIONS(3126), - [anon_sym_BANG_LBRACK] = ACTIONS(3126), - [anon_sym_DOLLAR] = ACTIONS(3126), - [anon_sym_TODO] = ACTIONS(3126), - [anon_sym_WIP] = ACTIONS(3126), - [anon_sym_NOTE] = ACTIONS(3126), - [anon_sym_INFO] = ACTIONS(3126), - [anon_sym_XXX] = ACTIONS(3126), - [sym_fixme] = ACTIONS(3126), - [aux_sym__text_token1] = ACTIONS(3124), - [sym__block_close] = ACTIONS(3126), - [sym__newline] = ACTIONS(3126), - [sym__newline_inline] = ACTIONS(3126), - [sym__heading1_begin] = ACTIONS(3126), - [sym__heading2_begin] = ACTIONS(3126), - [sym__heading3_begin] = ACTIONS(3126), - [sym__heading4_begin] = ACTIONS(3126), - [sym__heading5_begin] = ACTIONS(3126), - [sym__heading6_begin] = ACTIONS(3126), - [sym__div_begin] = ACTIONS(3126), - [sym__code_block_begin] = ACTIONS(3126), - [sym_list_marker_dash] = ACTIONS(3126), - [sym_list_marker_star] = ACTIONS(3126), - [sym_list_marker_plus] = ACTIONS(3126), - [sym__list_marker_task_begin] = ACTIONS(3126), - [sym_list_marker_definition] = ACTIONS(3126), - [sym_list_marker_decimal_period] = ACTIONS(3126), - [sym_list_marker_lower_alpha_period] = ACTIONS(3126), - [sym_list_marker_upper_alpha_period] = ACTIONS(3126), - [sym_list_marker_lower_roman_period] = ACTIONS(3126), - [sym_list_marker_upper_roman_period] = ACTIONS(3126), - [sym_list_marker_decimal_paren] = ACTIONS(3126), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3126), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3126), - [sym_list_marker_lower_roman_paren] = ACTIONS(3126), - [sym_list_marker_upper_roman_paren] = ACTIONS(3126), - [sym_list_marker_decimal_parens] = ACTIONS(3126), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3126), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3126), - [sym_list_marker_lower_roman_parens] = ACTIONS(3126), - [sym_list_marker_upper_roman_parens] = ACTIONS(3126), - [sym__block_quote_begin] = ACTIONS(3126), - [sym__block_quote_continuation] = ACTIONS(3126), - [sym__thematic_break_dash] = ACTIONS(3126), - [sym__thematic_break_star] = ACTIONS(3126), - [sym__footnote_begin] = ACTIONS(3126), - [sym__verbatim_begin] = ACTIONS(3126), - }, - [434] = { - [ts_builtin_sym_end] = ACTIONS(3058), - [anon_sym_LBRACK] = ACTIONS(3056), - [anon_sym_PIPE] = ACTIONS(3058), - [anon_sym_LBRACE] = ACTIONS(3056), - [sym__whitespace1] = ACTIONS(3058), - [anon_sym_BSLASH] = ACTIONS(3056), - [sym_quotation_marks] = ACTIONS(3058), - [sym_ellipsis] = ACTIONS(3058), - [sym_em_dash] = ACTIONS(3058), - [sym_en_dash] = ACTIONS(3056), - [sym_backslash_escape] = ACTIONS(3056), - [anon_sym_LT] = ACTIONS(3058), - [anon_sym_LBRACE_] = ACTIONS(3058), - [anon_sym__] = ACTIONS(3058), - [anon_sym_LBRACE_STAR] = ACTIONS(3058), - [anon_sym_STAR] = ACTIONS(3058), - [anon_sym_LBRACE_EQ] = ACTIONS(3058), - [anon_sym_LBRACE_PLUS] = ACTIONS(3058), - [anon_sym_LBRACE_DASH] = ACTIONS(3058), - [sym_symbol] = ACTIONS(3058), - [anon_sym_LBRACE_CARET] = ACTIONS(3058), - [anon_sym_CARET] = ACTIONS(3058), - [anon_sym_LBRACE_TILDE] = ACTIONS(3058), - [anon_sym_TILDE] = ACTIONS(3058), - [anon_sym_LBRACK_CARET] = ACTIONS(3058), - [anon_sym_BANG_LBRACK] = ACTIONS(3058), - [anon_sym_DOLLAR] = ACTIONS(3058), - [anon_sym_TODO] = ACTIONS(3058), - [anon_sym_WIP] = ACTIONS(3058), - [anon_sym_NOTE] = ACTIONS(3058), - [anon_sym_INFO] = ACTIONS(3058), - [anon_sym_XXX] = ACTIONS(3058), - [sym_fixme] = ACTIONS(3058), - [aux_sym__text_token1] = ACTIONS(3056), - [sym__newline] = ACTIONS(3058), - [sym__newline_inline] = ACTIONS(3058), - [sym__heading1_begin] = ACTIONS(3058), - [sym__heading2_begin] = ACTIONS(3058), - [sym__heading3_begin] = ACTIONS(3058), - [sym__heading4_begin] = ACTIONS(3058), - [sym__heading5_begin] = ACTIONS(3058), - [sym__heading6_begin] = ACTIONS(3058), - [sym__div_begin] = ACTIONS(3058), - [sym__code_block_begin] = ACTIONS(3058), - [sym_list_marker_dash] = ACTIONS(3058), - [sym_list_marker_star] = ACTIONS(3058), - [sym_list_marker_plus] = ACTIONS(3058), - [sym__list_marker_task_begin] = ACTIONS(3058), - [sym_list_marker_definition] = ACTIONS(3058), - [sym_list_marker_decimal_period] = ACTIONS(3058), - [sym_list_marker_lower_alpha_period] = ACTIONS(3058), - [sym_list_marker_upper_alpha_period] = ACTIONS(3058), - [sym_list_marker_lower_roman_period] = ACTIONS(3058), - [sym_list_marker_upper_roman_period] = ACTIONS(3058), - [sym_list_marker_decimal_paren] = ACTIONS(3058), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3058), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3058), - [sym_list_marker_lower_roman_paren] = ACTIONS(3058), - [sym_list_marker_upper_roman_paren] = ACTIONS(3058), - [sym_list_marker_decimal_parens] = ACTIONS(3058), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3058), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3058), - [sym_list_marker_lower_roman_parens] = ACTIONS(3058), - [sym_list_marker_upper_roman_parens] = ACTIONS(3058), - [sym__block_quote_begin] = ACTIONS(3058), - [sym__block_quote_continuation] = ACTIONS(3058), - [sym__thematic_break_dash] = ACTIONS(3058), - [sym__thematic_break_star] = ACTIONS(3058), - [sym__footnote_begin] = ACTIONS(3058), - [sym__verbatim_begin] = ACTIONS(3058), - }, - [435] = { - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_PIPE] = ACTIONS(3130), - [anon_sym_LBRACE] = ACTIONS(3128), - [sym__whitespace1] = ACTIONS(3130), - [anon_sym_BSLASH] = ACTIONS(3128), - [sym_quotation_marks] = ACTIONS(3130), - [sym_ellipsis] = ACTIONS(3130), - [sym_em_dash] = ACTIONS(3130), - [sym_en_dash] = ACTIONS(3128), - [sym_backslash_escape] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(3130), - [anon_sym_LBRACE_] = ACTIONS(3130), - [anon_sym__] = ACTIONS(3130), - [anon_sym_LBRACE_STAR] = ACTIONS(3130), - [anon_sym_STAR] = ACTIONS(3130), - [anon_sym_LBRACE_EQ] = ACTIONS(3130), - [anon_sym_LBRACE_PLUS] = ACTIONS(3130), - [anon_sym_LBRACE_DASH] = ACTIONS(3130), - [sym_symbol] = ACTIONS(3130), - [anon_sym_LBRACE_CARET] = ACTIONS(3130), - [anon_sym_CARET] = ACTIONS(3130), - [anon_sym_LBRACE_TILDE] = ACTIONS(3130), - [anon_sym_TILDE] = ACTIONS(3130), - [anon_sym_LBRACK_CARET] = ACTIONS(3130), - [anon_sym_BANG_LBRACK] = ACTIONS(3130), - [anon_sym_DOLLAR] = ACTIONS(3130), - [anon_sym_TODO] = ACTIONS(3130), - [anon_sym_WIP] = ACTIONS(3130), - [anon_sym_NOTE] = ACTIONS(3130), - [anon_sym_INFO] = ACTIONS(3130), - [anon_sym_XXX] = ACTIONS(3130), - [sym_fixme] = ACTIONS(3130), - [aux_sym__text_token1] = ACTIONS(3128), - [sym__block_close] = ACTIONS(3130), - [sym__newline] = ACTIONS(3130), - [sym__newline_inline] = ACTIONS(3130), - [sym__heading1_begin] = ACTIONS(3130), - [sym__heading2_begin] = ACTIONS(3130), - [sym__heading3_begin] = ACTIONS(3130), - [sym__heading4_begin] = ACTIONS(3130), - [sym__heading5_begin] = ACTIONS(3130), - [sym__heading6_begin] = ACTIONS(3130), - [sym__div_begin] = ACTIONS(3130), - [sym__code_block_begin] = ACTIONS(3130), - [sym_list_marker_dash] = ACTIONS(3130), - [sym_list_marker_star] = ACTIONS(3130), - [sym_list_marker_plus] = ACTIONS(3130), - [sym__list_marker_task_begin] = ACTIONS(3130), - [sym_list_marker_definition] = ACTIONS(3130), - [sym_list_marker_decimal_period] = ACTIONS(3130), - [sym_list_marker_lower_alpha_period] = ACTIONS(3130), - [sym_list_marker_upper_alpha_period] = ACTIONS(3130), - [sym_list_marker_lower_roman_period] = ACTIONS(3130), - [sym_list_marker_upper_roman_period] = ACTIONS(3130), - [sym_list_marker_decimal_paren] = ACTIONS(3130), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3130), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3130), - [sym_list_marker_lower_roman_paren] = ACTIONS(3130), - [sym_list_marker_upper_roman_paren] = ACTIONS(3130), - [sym_list_marker_decimal_parens] = ACTIONS(3130), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3130), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3130), - [sym_list_marker_lower_roman_parens] = ACTIONS(3130), - [sym_list_marker_upper_roman_parens] = ACTIONS(3130), - [sym__block_quote_begin] = ACTIONS(3130), - [sym__block_quote_continuation] = ACTIONS(3130), - [sym__thematic_break_dash] = ACTIONS(3130), - [sym__thematic_break_star] = ACTIONS(3130), - [sym__footnote_begin] = ACTIONS(3130), - [sym__verbatim_begin] = ACTIONS(3130), - }, - [436] = { - [anon_sym_LBRACK] = ACTIONS(2714), - [anon_sym_PIPE] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2714), - [sym__whitespace1] = ACTIONS(2716), - [anon_sym_BSLASH] = ACTIONS(2714), - [sym_quotation_marks] = ACTIONS(2716), - [sym_ellipsis] = ACTIONS(2716), - [sym_em_dash] = ACTIONS(2716), - [sym_en_dash] = ACTIONS(2714), - [sym_backslash_escape] = ACTIONS(2714), - [anon_sym_LT] = ACTIONS(2716), - [anon_sym_LBRACE_] = ACTIONS(2716), - [anon_sym__] = ACTIONS(2716), - [anon_sym_LBRACE_STAR] = ACTIONS(2716), - [anon_sym_STAR] = ACTIONS(2716), - [anon_sym_LBRACE_EQ] = ACTIONS(2716), - [anon_sym_LBRACE_PLUS] = ACTIONS(2716), - [anon_sym_LBRACE_DASH] = ACTIONS(2716), - [sym_symbol] = ACTIONS(2716), - [anon_sym_LBRACE_CARET] = ACTIONS(2716), - [anon_sym_CARET] = ACTIONS(2716), - [anon_sym_LBRACE_TILDE] = ACTIONS(2716), - [anon_sym_TILDE] = ACTIONS(2716), - [anon_sym_LBRACK_CARET] = ACTIONS(2716), - [anon_sym_BANG_LBRACK] = ACTIONS(2716), - [anon_sym_DOLLAR] = ACTIONS(2716), - [anon_sym_TODO] = ACTIONS(2716), - [anon_sym_WIP] = ACTIONS(2716), - [anon_sym_NOTE] = ACTIONS(2716), - [anon_sym_INFO] = ACTIONS(2716), - [anon_sym_XXX] = ACTIONS(2716), - [sym_fixme] = ACTIONS(2716), - [aux_sym__text_token1] = ACTIONS(2714), - [sym__block_close] = ACTIONS(2716), - [sym__newline] = ACTIONS(2716), - [sym__newline_inline] = ACTIONS(2716), - [sym__heading1_begin] = ACTIONS(2716), - [sym__heading2_begin] = ACTIONS(2716), - [sym__heading3_begin] = ACTIONS(2716), - [sym__heading4_begin] = ACTIONS(2716), - [sym__heading5_begin] = ACTIONS(2716), - [sym__heading6_begin] = ACTIONS(2716), - [sym__div_begin] = ACTIONS(2716), - [sym__code_block_begin] = ACTIONS(2716), - [sym_list_marker_dash] = ACTIONS(2716), - [sym_list_marker_star] = ACTIONS(2716), - [sym_list_marker_plus] = ACTIONS(2716), - [sym__list_marker_task_begin] = ACTIONS(2716), - [sym_list_marker_definition] = ACTIONS(2716), - [sym_list_marker_decimal_period] = ACTIONS(2716), - [sym_list_marker_lower_alpha_period] = ACTIONS(2716), - [sym_list_marker_upper_alpha_period] = ACTIONS(2716), - [sym_list_marker_lower_roman_period] = ACTIONS(2716), - [sym_list_marker_upper_roman_period] = ACTIONS(2716), - [sym_list_marker_decimal_paren] = ACTIONS(2716), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2716), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2716), - [sym_list_marker_lower_roman_paren] = ACTIONS(2716), - [sym_list_marker_upper_roman_paren] = ACTIONS(2716), - [sym_list_marker_decimal_parens] = ACTIONS(2716), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2716), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2716), - [sym_list_marker_lower_roman_parens] = ACTIONS(2716), - [sym_list_marker_upper_roman_parens] = ACTIONS(2716), - [sym__block_quote_begin] = ACTIONS(2716), - [sym__block_quote_continuation] = ACTIONS(2716), - [sym__thematic_break_dash] = ACTIONS(2716), - [sym__thematic_break_star] = ACTIONS(2716), - [sym__footnote_begin] = ACTIONS(2716), - [sym__verbatim_begin] = ACTIONS(2716), - }, - [437] = { - [anon_sym_LBRACK] = ACTIONS(3114), - [anon_sym_PIPE] = ACTIONS(3112), - [anon_sym_LBRACE] = ACTIONS(3114), - [sym__whitespace1] = ACTIONS(3112), - [anon_sym_BSLASH] = ACTIONS(3114), - [sym_quotation_marks] = ACTIONS(3112), - [sym_ellipsis] = ACTIONS(3112), - [sym_em_dash] = ACTIONS(3112), - [sym_en_dash] = ACTIONS(3114), - [sym_backslash_escape] = ACTIONS(3114), - [anon_sym_LT] = ACTIONS(3112), - [anon_sym_LBRACE_] = ACTIONS(3112), - [anon_sym__] = ACTIONS(3112), - [anon_sym_LBRACE_STAR] = ACTIONS(3112), - [anon_sym_STAR] = ACTIONS(3112), - [anon_sym_LBRACE_EQ] = ACTIONS(3112), - [anon_sym_LBRACE_PLUS] = ACTIONS(3112), - [anon_sym_LBRACE_DASH] = ACTIONS(3112), - [sym_symbol] = ACTIONS(3112), - [anon_sym_LBRACE_CARET] = ACTIONS(3112), - [anon_sym_CARET] = ACTIONS(3112), - [anon_sym_LBRACE_TILDE] = ACTIONS(3112), - [anon_sym_TILDE] = ACTIONS(3112), - [anon_sym_LBRACK_CARET] = ACTIONS(3112), - [anon_sym_BANG_LBRACK] = ACTIONS(3112), - [anon_sym_DOLLAR] = ACTIONS(3112), - [anon_sym_TODO] = ACTIONS(3112), - [anon_sym_WIP] = ACTIONS(3112), - [anon_sym_NOTE] = ACTIONS(3112), - [anon_sym_INFO] = ACTIONS(3112), - [anon_sym_XXX] = ACTIONS(3112), - [sym_fixme] = ACTIONS(3112), - [aux_sym__text_token1] = ACTIONS(3114), - [sym__block_close] = ACTIONS(3112), - [sym__newline] = ACTIONS(3112), - [sym__newline_inline] = ACTIONS(3112), - [sym__heading1_begin] = ACTIONS(3112), - [sym__heading2_begin] = ACTIONS(3112), - [sym__heading3_begin] = ACTIONS(3112), - [sym__heading4_begin] = ACTIONS(3112), - [sym__heading5_begin] = ACTIONS(3112), - [sym__heading6_begin] = ACTIONS(3112), - [sym__div_begin] = ACTIONS(3112), - [sym__code_block_begin] = ACTIONS(3112), - [sym_list_marker_dash] = ACTIONS(3112), - [sym_list_marker_star] = ACTIONS(3112), - [sym_list_marker_plus] = ACTIONS(3112), - [sym__list_marker_task_begin] = ACTIONS(3112), - [sym_list_marker_definition] = ACTIONS(3112), - [sym_list_marker_decimal_period] = ACTIONS(3112), - [sym_list_marker_lower_alpha_period] = ACTIONS(3112), - [sym_list_marker_upper_alpha_period] = ACTIONS(3112), - [sym_list_marker_lower_roman_period] = ACTIONS(3112), - [sym_list_marker_upper_roman_period] = ACTIONS(3112), - [sym_list_marker_decimal_paren] = ACTIONS(3112), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3112), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3112), - [sym_list_marker_lower_roman_paren] = ACTIONS(3112), - [sym_list_marker_upper_roman_paren] = ACTIONS(3112), - [sym_list_marker_decimal_parens] = ACTIONS(3112), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3112), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3112), - [sym_list_marker_lower_roman_parens] = ACTIONS(3112), - [sym_list_marker_upper_roman_parens] = ACTIONS(3112), - [sym__block_quote_begin] = ACTIONS(3112), - [sym__block_quote_continuation] = ACTIONS(3112), - [sym__thematic_break_dash] = ACTIONS(3112), - [sym__thematic_break_star] = ACTIONS(3112), - [sym__footnote_begin] = ACTIONS(3112), - [sym__verbatim_begin] = ACTIONS(3112), - }, - [438] = { - [anon_sym_LBRACK] = ACTIONS(3094), - [anon_sym_PIPE] = ACTIONS(3092), - [anon_sym_LBRACE] = ACTIONS(3094), - [sym__whitespace1] = ACTIONS(3092), - [anon_sym_BSLASH] = ACTIONS(3094), - [sym_quotation_marks] = ACTIONS(3092), - [sym_ellipsis] = ACTIONS(3092), - [sym_em_dash] = ACTIONS(3092), - [sym_en_dash] = ACTIONS(3094), - [sym_backslash_escape] = ACTIONS(3094), - [anon_sym_LT] = ACTIONS(3092), - [anon_sym_LBRACE_] = ACTIONS(3092), - [anon_sym__] = ACTIONS(3092), - [anon_sym_LBRACE_STAR] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(3092), - [anon_sym_LBRACE_EQ] = ACTIONS(3092), - [anon_sym_LBRACE_PLUS] = ACTIONS(3092), - [anon_sym_LBRACE_DASH] = ACTIONS(3092), - [sym_symbol] = ACTIONS(3092), - [anon_sym_LBRACE_CARET] = ACTIONS(3092), - [anon_sym_CARET] = ACTIONS(3092), - [anon_sym_LBRACE_TILDE] = ACTIONS(3092), - [anon_sym_TILDE] = ACTIONS(3092), - [anon_sym_LBRACK_CARET] = ACTIONS(3092), - [anon_sym_BANG_LBRACK] = ACTIONS(3092), - [anon_sym_DOLLAR] = ACTIONS(3092), - [anon_sym_TODO] = ACTIONS(3092), - [anon_sym_WIP] = ACTIONS(3092), - [anon_sym_NOTE] = ACTIONS(3092), - [anon_sym_INFO] = ACTIONS(3092), - [anon_sym_XXX] = ACTIONS(3092), - [sym_fixme] = ACTIONS(3092), - [aux_sym__text_token1] = ACTIONS(3094), - [sym__newline] = ACTIONS(3092), - [sym__newline_inline] = ACTIONS(3092), - [sym__heading1_begin] = ACTIONS(3092), - [sym__heading2_begin] = ACTIONS(3092), - [sym__heading3_begin] = ACTIONS(3092), - [sym__heading4_begin] = ACTIONS(3092), - [sym__heading5_begin] = ACTIONS(3092), - [sym__heading6_begin] = ACTIONS(3092), - [sym__div_begin] = ACTIONS(3092), - [sym__code_block_begin] = ACTIONS(3092), - [sym_list_marker_dash] = ACTIONS(3092), - [sym_list_marker_star] = ACTIONS(3092), - [sym_list_marker_plus] = ACTIONS(3092), - [sym__list_marker_task_begin] = ACTIONS(3092), - [sym_list_marker_definition] = ACTIONS(3092), - [sym_list_marker_decimal_period] = ACTIONS(3092), - [sym_list_marker_lower_alpha_period] = ACTIONS(3092), - [sym_list_marker_upper_alpha_period] = ACTIONS(3092), - [sym_list_marker_lower_roman_period] = ACTIONS(3092), - [sym_list_marker_upper_roman_period] = ACTIONS(3092), - [sym_list_marker_decimal_paren] = ACTIONS(3092), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3092), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3092), - [sym_list_marker_lower_roman_paren] = ACTIONS(3092), - [sym_list_marker_upper_roman_paren] = ACTIONS(3092), - [sym_list_marker_decimal_parens] = ACTIONS(3092), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3092), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3092), - [sym_list_marker_lower_roman_parens] = ACTIONS(3092), - [sym_list_marker_upper_roman_parens] = ACTIONS(3092), - [sym__block_quote_begin] = ACTIONS(3092), - [sym__block_quote_continuation] = ACTIONS(3092), - [sym__thematic_break_dash] = ACTIONS(3092), - [sym__thematic_break_star] = ACTIONS(3092), - [sym__footnote_begin] = ACTIONS(3092), - [sym__footnote_end] = ACTIONS(3092), - [sym__verbatim_begin] = ACTIONS(3092), - }, - [439] = { - [ts_builtin_sym_end] = ACTIONS(3130), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_PIPE] = ACTIONS(3130), - [anon_sym_LBRACE] = ACTIONS(3128), - [sym__whitespace1] = ACTIONS(3130), - [anon_sym_BSLASH] = ACTIONS(3128), - [sym_quotation_marks] = ACTIONS(3130), - [sym_ellipsis] = ACTIONS(3130), - [sym_em_dash] = ACTIONS(3130), - [sym_en_dash] = ACTIONS(3128), - [sym_backslash_escape] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(3130), - [anon_sym_LBRACE_] = ACTIONS(3130), - [anon_sym__] = ACTIONS(3130), - [anon_sym_LBRACE_STAR] = ACTIONS(3130), - [anon_sym_STAR] = ACTIONS(3130), - [anon_sym_LBRACE_EQ] = ACTIONS(3130), - [anon_sym_LBRACE_PLUS] = ACTIONS(3130), - [anon_sym_LBRACE_DASH] = ACTIONS(3130), - [sym_symbol] = ACTIONS(3130), - [anon_sym_LBRACE_CARET] = ACTIONS(3130), - [anon_sym_CARET] = ACTIONS(3130), - [anon_sym_LBRACE_TILDE] = ACTIONS(3130), - [anon_sym_TILDE] = ACTIONS(3130), - [anon_sym_LBRACK_CARET] = ACTIONS(3130), - [anon_sym_BANG_LBRACK] = ACTIONS(3130), - [anon_sym_DOLLAR] = ACTIONS(3130), - [anon_sym_TODO] = ACTIONS(3130), - [anon_sym_WIP] = ACTIONS(3130), - [anon_sym_NOTE] = ACTIONS(3130), - [anon_sym_INFO] = ACTIONS(3130), - [anon_sym_XXX] = ACTIONS(3130), - [sym_fixme] = ACTIONS(3130), - [aux_sym__text_token1] = ACTIONS(3128), - [sym__newline] = ACTIONS(3130), - [sym__newline_inline] = ACTIONS(3130), - [sym__heading1_begin] = ACTIONS(3130), - [sym__heading2_begin] = ACTIONS(3130), - [sym__heading3_begin] = ACTIONS(3130), - [sym__heading4_begin] = ACTIONS(3130), - [sym__heading5_begin] = ACTIONS(3130), - [sym__heading6_begin] = ACTIONS(3130), - [sym__div_begin] = ACTIONS(3130), - [sym__code_block_begin] = ACTIONS(3130), - [sym_list_marker_dash] = ACTIONS(3130), - [sym_list_marker_star] = ACTIONS(3130), - [sym_list_marker_plus] = ACTIONS(3130), - [sym__list_marker_task_begin] = ACTIONS(3130), - [sym_list_marker_definition] = ACTIONS(3130), - [sym_list_marker_decimal_period] = ACTIONS(3130), - [sym_list_marker_lower_alpha_period] = ACTIONS(3130), - [sym_list_marker_upper_alpha_period] = ACTIONS(3130), - [sym_list_marker_lower_roman_period] = ACTIONS(3130), - [sym_list_marker_upper_roman_period] = ACTIONS(3130), - [sym_list_marker_decimal_paren] = ACTIONS(3130), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3130), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3130), - [sym_list_marker_lower_roman_paren] = ACTIONS(3130), - [sym_list_marker_upper_roman_paren] = ACTIONS(3130), - [sym_list_marker_decimal_parens] = ACTIONS(3130), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3130), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3130), - [sym_list_marker_lower_roman_parens] = ACTIONS(3130), - [sym_list_marker_upper_roman_parens] = ACTIONS(3130), - [sym__block_quote_begin] = ACTIONS(3130), - [sym__block_quote_continuation] = ACTIONS(3130), - [sym__thematic_break_dash] = ACTIONS(3130), - [sym__thematic_break_star] = ACTIONS(3130), - [sym__footnote_begin] = ACTIONS(3130), - [sym__verbatim_begin] = ACTIONS(3130), - }, - [440] = { - [anon_sym_LBRACK] = ACTIONS(3090), - [anon_sym_PIPE] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(3090), - [sym__whitespace1] = ACTIONS(3088), - [anon_sym_BSLASH] = ACTIONS(3090), - [sym_quotation_marks] = ACTIONS(3088), - [sym_ellipsis] = ACTIONS(3088), - [sym_em_dash] = ACTIONS(3088), - [sym_en_dash] = ACTIONS(3090), - [sym_backslash_escape] = ACTIONS(3090), - [anon_sym_LT] = ACTIONS(3088), - [anon_sym_LBRACE_] = ACTIONS(3088), - [anon_sym__] = ACTIONS(3088), - [anon_sym_LBRACE_STAR] = ACTIONS(3088), - [anon_sym_STAR] = ACTIONS(3088), - [anon_sym_LBRACE_EQ] = ACTIONS(3088), - [anon_sym_LBRACE_PLUS] = ACTIONS(3088), - [anon_sym_LBRACE_DASH] = ACTIONS(3088), - [sym_symbol] = ACTIONS(3088), - [anon_sym_LBRACE_CARET] = ACTIONS(3088), - [anon_sym_CARET] = ACTIONS(3088), - [anon_sym_LBRACE_TILDE] = ACTIONS(3088), - [anon_sym_TILDE] = ACTIONS(3088), - [anon_sym_LBRACK_CARET] = ACTIONS(3088), - [anon_sym_BANG_LBRACK] = ACTIONS(3088), - [anon_sym_DOLLAR] = ACTIONS(3088), - [anon_sym_TODO] = ACTIONS(3088), - [anon_sym_WIP] = ACTIONS(3088), - [anon_sym_NOTE] = ACTIONS(3088), - [anon_sym_INFO] = ACTIONS(3088), - [anon_sym_XXX] = ACTIONS(3088), - [sym_fixme] = ACTIONS(3088), - [aux_sym__text_token1] = ACTIONS(3090), - [sym__newline] = ACTIONS(3088), - [sym__newline_inline] = ACTIONS(3088), - [sym__heading1_begin] = ACTIONS(3088), - [sym__heading2_begin] = ACTIONS(3088), - [sym__heading3_begin] = ACTIONS(3088), - [sym__heading4_begin] = ACTIONS(3088), - [sym__heading5_begin] = ACTIONS(3088), - [sym__heading6_begin] = ACTIONS(3088), - [sym__div_begin] = ACTIONS(3088), - [sym__code_block_begin] = ACTIONS(3088), - [sym_list_marker_dash] = ACTIONS(3088), - [sym_list_marker_star] = ACTIONS(3088), - [sym_list_marker_plus] = ACTIONS(3088), - [sym__list_marker_task_begin] = ACTIONS(3088), - [sym_list_marker_definition] = ACTIONS(3088), - [sym_list_marker_decimal_period] = ACTIONS(3088), - [sym_list_marker_lower_alpha_period] = ACTIONS(3088), - [sym_list_marker_upper_alpha_period] = ACTIONS(3088), - [sym_list_marker_lower_roman_period] = ACTIONS(3088), - [sym_list_marker_upper_roman_period] = ACTIONS(3088), - [sym_list_marker_decimal_paren] = ACTIONS(3088), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3088), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3088), - [sym_list_marker_lower_roman_paren] = ACTIONS(3088), - [sym_list_marker_upper_roman_paren] = ACTIONS(3088), - [sym_list_marker_decimal_parens] = ACTIONS(3088), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3088), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3088), - [sym_list_marker_lower_roman_parens] = ACTIONS(3088), - [sym_list_marker_upper_roman_parens] = ACTIONS(3088), - [sym__block_quote_begin] = ACTIONS(3088), - [sym__block_quote_continuation] = ACTIONS(3088), - [sym__thematic_break_dash] = ACTIONS(3088), - [sym__thematic_break_star] = ACTIONS(3088), - [sym__footnote_begin] = ACTIONS(3088), - [sym__footnote_end] = ACTIONS(3088), - [sym__verbatim_begin] = ACTIONS(3088), - }, - [441] = { - [anon_sym_LBRACK] = ACTIONS(3078), - [anon_sym_PIPE] = ACTIONS(3076), - [anon_sym_LBRACE] = ACTIONS(3078), - [sym__whitespace1] = ACTIONS(3076), - [anon_sym_BSLASH] = ACTIONS(3078), - [sym_quotation_marks] = ACTIONS(3076), - [sym_ellipsis] = ACTIONS(3076), - [sym_em_dash] = ACTIONS(3076), - [sym_en_dash] = ACTIONS(3078), - [sym_backslash_escape] = ACTIONS(3078), - [anon_sym_LT] = ACTIONS(3076), - [anon_sym_LBRACE_] = ACTIONS(3076), - [anon_sym__] = ACTIONS(3076), - [anon_sym_LBRACE_STAR] = ACTIONS(3076), - [anon_sym_STAR] = ACTIONS(3076), - [anon_sym_LBRACE_EQ] = ACTIONS(3076), - [anon_sym_LBRACE_PLUS] = ACTIONS(3076), - [anon_sym_LBRACE_DASH] = ACTIONS(3076), - [sym_symbol] = ACTIONS(3076), - [anon_sym_LBRACE_CARET] = ACTIONS(3076), - [anon_sym_CARET] = ACTIONS(3076), - [anon_sym_LBRACE_TILDE] = ACTIONS(3076), - [anon_sym_TILDE] = ACTIONS(3076), - [anon_sym_LBRACK_CARET] = ACTIONS(3076), - [anon_sym_BANG_LBRACK] = ACTIONS(3076), - [anon_sym_DOLLAR] = ACTIONS(3076), - [anon_sym_TODO] = ACTIONS(3076), - [anon_sym_WIP] = ACTIONS(3076), - [anon_sym_NOTE] = ACTIONS(3076), - [anon_sym_INFO] = ACTIONS(3076), - [anon_sym_XXX] = ACTIONS(3076), - [sym_fixme] = ACTIONS(3076), - [aux_sym__text_token1] = ACTIONS(3078), - [sym__newline] = ACTIONS(3076), - [sym__newline_inline] = ACTIONS(3076), - [sym__heading1_begin] = ACTIONS(3076), - [sym__heading2_begin] = ACTIONS(3076), - [sym__heading3_begin] = ACTIONS(3076), - [sym__heading4_begin] = ACTIONS(3076), - [sym__heading5_begin] = ACTIONS(3076), - [sym__heading6_begin] = ACTIONS(3076), - [sym__div_begin] = ACTIONS(3076), - [sym__code_block_begin] = ACTIONS(3076), - [sym_list_marker_dash] = ACTIONS(3076), - [sym_list_marker_star] = ACTIONS(3076), - [sym_list_marker_plus] = ACTIONS(3076), - [sym__list_marker_task_begin] = ACTIONS(3076), - [sym_list_marker_definition] = ACTIONS(3076), - [sym_list_marker_decimal_period] = ACTIONS(3076), - [sym_list_marker_lower_alpha_period] = ACTIONS(3076), - [sym_list_marker_upper_alpha_period] = ACTIONS(3076), - [sym_list_marker_lower_roman_period] = ACTIONS(3076), - [sym_list_marker_upper_roman_period] = ACTIONS(3076), - [sym_list_marker_decimal_paren] = ACTIONS(3076), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3076), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3076), - [sym_list_marker_lower_roman_paren] = ACTIONS(3076), - [sym_list_marker_upper_roman_paren] = ACTIONS(3076), - [sym_list_marker_decimal_parens] = ACTIONS(3076), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3076), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3076), - [sym_list_marker_lower_roman_parens] = ACTIONS(3076), - [sym_list_marker_upper_roman_parens] = ACTIONS(3076), - [sym__block_quote_begin] = ACTIONS(3076), - [sym__block_quote_continuation] = ACTIONS(3076), - [sym__thematic_break_dash] = ACTIONS(3076), - [sym__thematic_break_star] = ACTIONS(3076), - [sym__footnote_begin] = ACTIONS(3076), - [sym__footnote_end] = ACTIONS(3076), - [sym__verbatim_begin] = ACTIONS(3076), - }, - [442] = { - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_PIPE] = ACTIONS(2952), - [anon_sym_LBRACE] = ACTIONS(2954), - [sym__whitespace1] = ACTIONS(2952), - [anon_sym_BSLASH] = ACTIONS(2954), - [sym_quotation_marks] = ACTIONS(2952), - [sym_ellipsis] = ACTIONS(2952), - [sym_em_dash] = ACTIONS(2952), - [sym_en_dash] = ACTIONS(2954), - [sym_backslash_escape] = ACTIONS(2954), - [anon_sym_LT] = ACTIONS(2952), - [anon_sym_LBRACE_] = ACTIONS(2952), - [anon_sym__] = ACTIONS(2952), - [anon_sym_LBRACE_STAR] = ACTIONS(2952), - [anon_sym_STAR] = ACTIONS(2952), - [anon_sym_LBRACE_EQ] = ACTIONS(2952), - [anon_sym_LBRACE_PLUS] = ACTIONS(2952), - [anon_sym_LBRACE_DASH] = ACTIONS(2952), - [sym_symbol] = ACTIONS(2952), - [anon_sym_LBRACE_CARET] = ACTIONS(2952), - [anon_sym_CARET] = ACTIONS(2952), - [anon_sym_LBRACE_TILDE] = ACTIONS(2952), - [anon_sym_TILDE] = ACTIONS(2952), - [anon_sym_LBRACK_CARET] = ACTIONS(2952), - [anon_sym_BANG_LBRACK] = ACTIONS(2952), - [anon_sym_DOLLAR] = ACTIONS(2952), - [anon_sym_TODO] = ACTIONS(2952), - [anon_sym_WIP] = ACTIONS(2952), - [anon_sym_NOTE] = ACTIONS(2952), - [anon_sym_INFO] = ACTIONS(2952), - [anon_sym_XXX] = ACTIONS(2952), - [sym_fixme] = ACTIONS(2952), - [aux_sym__text_token1] = ACTIONS(2954), - [sym__block_close] = ACTIONS(2952), - [sym__newline] = ACTIONS(2952), - [sym__newline_inline] = ACTIONS(2952), - [sym__heading1_begin] = ACTIONS(2952), - [sym__heading2_begin] = ACTIONS(2952), - [sym__heading3_begin] = ACTIONS(2952), - [sym__heading4_begin] = ACTIONS(2952), - [sym__heading5_begin] = ACTIONS(2952), - [sym__heading6_begin] = ACTIONS(2952), - [sym__div_begin] = ACTIONS(2952), - [sym__code_block_begin] = ACTIONS(2952), - [sym_list_marker_dash] = ACTIONS(2952), - [sym_list_marker_star] = ACTIONS(2952), - [sym_list_marker_plus] = ACTIONS(2952), - [sym__list_marker_task_begin] = ACTIONS(2952), - [sym_list_marker_definition] = ACTIONS(2952), - [sym_list_marker_decimal_period] = ACTIONS(2952), - [sym_list_marker_lower_alpha_period] = ACTIONS(2952), - [sym_list_marker_upper_alpha_period] = ACTIONS(2952), - [sym_list_marker_lower_roman_period] = ACTIONS(2952), - [sym_list_marker_upper_roman_period] = ACTIONS(2952), - [sym_list_marker_decimal_paren] = ACTIONS(2952), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2952), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2952), - [sym_list_marker_lower_roman_paren] = ACTIONS(2952), - [sym_list_marker_upper_roman_paren] = ACTIONS(2952), - [sym_list_marker_decimal_parens] = ACTIONS(2952), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2952), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2952), - [sym_list_marker_lower_roman_parens] = ACTIONS(2952), - [sym_list_marker_upper_roman_parens] = ACTIONS(2952), - [sym__block_quote_begin] = ACTIONS(2952), - [sym__block_quote_continuation] = ACTIONS(2952), - [sym__thematic_break_dash] = ACTIONS(2952), - [sym__thematic_break_star] = ACTIONS(2952), - [sym__footnote_begin] = ACTIONS(2952), - [sym__verbatim_begin] = ACTIONS(2952), - }, - [443] = { - [anon_sym_LBRACK] = ACTIONS(3066), - [anon_sym_PIPE] = ACTIONS(3064), - [anon_sym_LBRACE] = ACTIONS(3066), - [sym__whitespace1] = ACTIONS(3064), - [anon_sym_BSLASH] = ACTIONS(3066), - [sym_quotation_marks] = ACTIONS(3064), - [sym_ellipsis] = ACTIONS(3064), - [sym_em_dash] = ACTIONS(3064), - [sym_en_dash] = ACTIONS(3066), - [sym_backslash_escape] = ACTIONS(3066), - [anon_sym_LT] = ACTIONS(3064), - [anon_sym_LBRACE_] = ACTIONS(3064), - [anon_sym__] = ACTIONS(3064), - [anon_sym_LBRACE_STAR] = ACTIONS(3064), - [anon_sym_STAR] = ACTIONS(3064), - [anon_sym_LBRACE_EQ] = ACTIONS(3064), - [anon_sym_LBRACE_PLUS] = ACTIONS(3064), - [anon_sym_LBRACE_DASH] = ACTIONS(3064), - [sym_symbol] = ACTIONS(3064), - [anon_sym_LBRACE_CARET] = ACTIONS(3064), - [anon_sym_CARET] = ACTIONS(3064), - [anon_sym_LBRACE_TILDE] = ACTIONS(3064), - [anon_sym_TILDE] = ACTIONS(3064), - [anon_sym_LBRACK_CARET] = ACTIONS(3064), - [anon_sym_BANG_LBRACK] = ACTIONS(3064), - [anon_sym_DOLLAR] = ACTIONS(3064), - [anon_sym_TODO] = ACTIONS(3064), - [anon_sym_WIP] = ACTIONS(3064), - [anon_sym_NOTE] = ACTIONS(3064), - [anon_sym_INFO] = ACTIONS(3064), - [anon_sym_XXX] = ACTIONS(3064), - [sym_fixme] = ACTIONS(3064), - [aux_sym__text_token1] = ACTIONS(3066), - [sym__newline] = ACTIONS(3064), - [sym__newline_inline] = ACTIONS(3064), - [sym__heading1_begin] = ACTIONS(3064), - [sym__heading2_begin] = ACTIONS(3064), - [sym__heading3_begin] = ACTIONS(3064), - [sym__heading4_begin] = ACTIONS(3064), - [sym__heading5_begin] = ACTIONS(3064), - [sym__heading6_begin] = ACTIONS(3064), - [sym__div_begin] = ACTIONS(3064), - [sym__code_block_begin] = ACTIONS(3064), - [sym_list_marker_dash] = ACTIONS(3064), - [sym_list_marker_star] = ACTIONS(3064), - [sym_list_marker_plus] = ACTIONS(3064), - [sym__list_marker_task_begin] = ACTIONS(3064), - [sym_list_marker_definition] = ACTIONS(3064), - [sym_list_marker_decimal_period] = ACTIONS(3064), - [sym_list_marker_lower_alpha_period] = ACTIONS(3064), - [sym_list_marker_upper_alpha_period] = ACTIONS(3064), - [sym_list_marker_lower_roman_period] = ACTIONS(3064), - [sym_list_marker_upper_roman_period] = ACTIONS(3064), - [sym_list_marker_decimal_paren] = ACTIONS(3064), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3064), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3064), - [sym_list_marker_lower_roman_paren] = ACTIONS(3064), - [sym_list_marker_upper_roman_paren] = ACTIONS(3064), - [sym_list_marker_decimal_parens] = ACTIONS(3064), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3064), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3064), - [sym_list_marker_lower_roman_parens] = ACTIONS(3064), - [sym_list_marker_upper_roman_parens] = ACTIONS(3064), - [sym__block_quote_begin] = ACTIONS(3064), - [sym__block_quote_continuation] = ACTIONS(3064), - [sym__thematic_break_dash] = ACTIONS(3064), - [sym__thematic_break_star] = ACTIONS(3064), - [sym__footnote_begin] = ACTIONS(3064), - [sym__footnote_end] = ACTIONS(3064), - [sym__verbatim_begin] = ACTIONS(3064), - }, - [444] = { - [ts_builtin_sym_end] = ACTIONS(3054), - [anon_sym_LBRACK] = ACTIONS(3052), - [anon_sym_PIPE] = ACTIONS(3054), - [anon_sym_LBRACE] = ACTIONS(3052), - [sym__whitespace1] = ACTIONS(3054), - [anon_sym_BSLASH] = ACTIONS(3052), - [sym_quotation_marks] = ACTIONS(3054), - [sym_ellipsis] = ACTIONS(3054), - [sym_em_dash] = ACTIONS(3054), - [sym_en_dash] = ACTIONS(3052), - [sym_backslash_escape] = ACTIONS(3052), - [anon_sym_LT] = ACTIONS(3054), - [anon_sym_LBRACE_] = ACTIONS(3054), - [anon_sym__] = ACTIONS(3054), - [anon_sym_LBRACE_STAR] = ACTIONS(3054), - [anon_sym_STAR] = ACTIONS(3054), - [anon_sym_LBRACE_EQ] = ACTIONS(3054), - [anon_sym_LBRACE_PLUS] = ACTIONS(3054), - [anon_sym_LBRACE_DASH] = ACTIONS(3054), - [sym_symbol] = ACTIONS(3054), - [anon_sym_LBRACE_CARET] = ACTIONS(3054), - [anon_sym_CARET] = ACTIONS(3054), - [anon_sym_LBRACE_TILDE] = ACTIONS(3054), - [anon_sym_TILDE] = ACTIONS(3054), - [anon_sym_LBRACK_CARET] = ACTIONS(3054), - [anon_sym_BANG_LBRACK] = ACTIONS(3054), - [anon_sym_DOLLAR] = ACTIONS(3054), - [anon_sym_TODO] = ACTIONS(3054), - [anon_sym_WIP] = ACTIONS(3054), - [anon_sym_NOTE] = ACTIONS(3054), - [anon_sym_INFO] = ACTIONS(3054), - [anon_sym_XXX] = ACTIONS(3054), - [sym_fixme] = ACTIONS(3054), - [aux_sym__text_token1] = ACTIONS(3052), - [sym__newline] = ACTIONS(3054), - [sym__newline_inline] = ACTIONS(3054), - [sym__heading1_begin] = ACTIONS(3054), - [sym__heading2_begin] = ACTIONS(3054), - [sym__heading3_begin] = ACTIONS(3054), - [sym__heading4_begin] = ACTIONS(3054), - [sym__heading5_begin] = ACTIONS(3054), - [sym__heading6_begin] = ACTIONS(3054), - [sym__div_begin] = ACTIONS(3054), - [sym__code_block_begin] = ACTIONS(3054), - [sym_list_marker_dash] = ACTIONS(3054), - [sym_list_marker_star] = ACTIONS(3054), - [sym_list_marker_plus] = ACTIONS(3054), - [sym__list_marker_task_begin] = ACTIONS(3054), - [sym_list_marker_definition] = ACTIONS(3054), - [sym_list_marker_decimal_period] = ACTIONS(3054), - [sym_list_marker_lower_alpha_period] = ACTIONS(3054), - [sym_list_marker_upper_alpha_period] = ACTIONS(3054), - [sym_list_marker_lower_roman_period] = ACTIONS(3054), - [sym_list_marker_upper_roman_period] = ACTIONS(3054), - [sym_list_marker_decimal_paren] = ACTIONS(3054), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3054), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3054), - [sym_list_marker_lower_roman_paren] = ACTIONS(3054), - [sym_list_marker_upper_roman_paren] = ACTIONS(3054), - [sym_list_marker_decimal_parens] = ACTIONS(3054), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3054), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3054), - [sym_list_marker_lower_roman_parens] = ACTIONS(3054), - [sym_list_marker_upper_roman_parens] = ACTIONS(3054), - [sym__block_quote_begin] = ACTIONS(3054), - [sym__block_quote_continuation] = ACTIONS(3054), - [sym__thematic_break_dash] = ACTIONS(3054), - [sym__thematic_break_star] = ACTIONS(3054), - [sym__footnote_begin] = ACTIONS(3054), - [sym__verbatim_begin] = ACTIONS(3054), - }, - [445] = { - [ts_builtin_sym_end] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(3134), - [anon_sym_PIPE] = ACTIONS(3132), - [anon_sym_LBRACE] = ACTIONS(3134), - [sym__whitespace1] = ACTIONS(3132), - [anon_sym_BSLASH] = ACTIONS(3134), - [sym_quotation_marks] = ACTIONS(3132), - [sym_ellipsis] = ACTIONS(3132), - [sym_em_dash] = ACTIONS(3132), - [sym_en_dash] = ACTIONS(3134), - [sym_backslash_escape] = ACTIONS(3134), - [anon_sym_LT] = ACTIONS(3132), - [anon_sym_LBRACE_] = ACTIONS(3132), - [anon_sym__] = ACTIONS(3132), - [anon_sym_LBRACE_STAR] = ACTIONS(3132), - [anon_sym_STAR] = ACTIONS(3132), - [anon_sym_LBRACE_EQ] = ACTIONS(3132), - [anon_sym_LBRACE_PLUS] = ACTIONS(3132), - [anon_sym_LBRACE_DASH] = ACTIONS(3132), - [sym_symbol] = ACTIONS(3132), - [anon_sym_LBRACE_CARET] = ACTIONS(3132), - [anon_sym_CARET] = ACTIONS(3132), - [anon_sym_LBRACE_TILDE] = ACTIONS(3132), - [anon_sym_TILDE] = ACTIONS(3132), - [anon_sym_LBRACK_CARET] = ACTIONS(3132), - [anon_sym_BANG_LBRACK] = ACTIONS(3132), - [anon_sym_DOLLAR] = ACTIONS(3132), - [anon_sym_TODO] = ACTIONS(3132), - [anon_sym_WIP] = ACTIONS(3132), - [anon_sym_NOTE] = ACTIONS(3132), - [anon_sym_INFO] = ACTIONS(3132), - [anon_sym_XXX] = ACTIONS(3132), - [sym_fixme] = ACTIONS(3132), - [aux_sym__text_token1] = ACTIONS(3134), - [sym__newline] = ACTIONS(3132), - [sym__newline_inline] = ACTIONS(3132), - [sym__heading1_begin] = ACTIONS(3132), - [sym__heading2_begin] = ACTIONS(3132), - [sym__heading3_begin] = ACTIONS(3132), - [sym__heading4_begin] = ACTIONS(3132), - [sym__heading5_begin] = ACTIONS(3132), - [sym__heading6_begin] = ACTIONS(3132), - [sym__div_begin] = ACTIONS(3132), - [sym__code_block_begin] = ACTIONS(3132), - [sym_list_marker_dash] = ACTIONS(3132), - [sym_list_marker_star] = ACTIONS(3132), - [sym_list_marker_plus] = ACTIONS(3132), - [sym__list_marker_task_begin] = ACTIONS(3132), - [sym_list_marker_definition] = ACTIONS(3132), - [sym_list_marker_decimal_period] = ACTIONS(3132), - [sym_list_marker_lower_alpha_period] = ACTIONS(3132), - [sym_list_marker_upper_alpha_period] = ACTIONS(3132), - [sym_list_marker_lower_roman_period] = ACTIONS(3132), - [sym_list_marker_upper_roman_period] = ACTIONS(3132), - [sym_list_marker_decimal_paren] = ACTIONS(3132), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3132), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3132), - [sym_list_marker_lower_roman_paren] = ACTIONS(3132), - [sym_list_marker_upper_roman_paren] = ACTIONS(3132), - [sym_list_marker_decimal_parens] = ACTIONS(3132), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3132), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3132), - [sym_list_marker_lower_roman_parens] = ACTIONS(3132), - [sym_list_marker_upper_roman_parens] = ACTIONS(3132), - [sym__block_quote_begin] = ACTIONS(3132), - [sym__block_quote_continuation] = ACTIONS(3132), - [sym__thematic_break_dash] = ACTIONS(3132), - [sym__thematic_break_star] = ACTIONS(3132), - [sym__footnote_begin] = ACTIONS(3132), - [sym__verbatim_begin] = ACTIONS(3132), - }, - [446] = { - [anon_sym_LBRACK] = ACTIONS(3012), - [anon_sym_PIPE] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3012), - [sym__whitespace1] = ACTIONS(3014), - [anon_sym_BSLASH] = ACTIONS(3012), - [sym_quotation_marks] = ACTIONS(3014), - [sym_ellipsis] = ACTIONS(3014), - [sym_em_dash] = ACTIONS(3014), - [sym_en_dash] = ACTIONS(3012), - [sym_backslash_escape] = ACTIONS(3012), - [anon_sym_LT] = ACTIONS(3014), - [anon_sym_LBRACE_] = ACTIONS(3014), - [anon_sym__] = ACTIONS(3014), - [anon_sym_LBRACE_STAR] = ACTIONS(3014), - [anon_sym_STAR] = ACTIONS(3014), - [anon_sym_LBRACE_EQ] = ACTIONS(3014), - [anon_sym_LBRACE_PLUS] = ACTIONS(3014), - [anon_sym_LBRACE_DASH] = ACTIONS(3014), - [sym_symbol] = ACTIONS(3014), - [anon_sym_LBRACE_CARET] = ACTIONS(3014), - [anon_sym_CARET] = ACTIONS(3014), - [anon_sym_LBRACE_TILDE] = ACTIONS(3014), - [anon_sym_TILDE] = ACTIONS(3014), - [anon_sym_LBRACK_CARET] = ACTIONS(3014), - [anon_sym_BANG_LBRACK] = ACTIONS(3014), - [anon_sym_DOLLAR] = ACTIONS(3014), - [anon_sym_TODO] = ACTIONS(3014), - [anon_sym_WIP] = ACTIONS(3014), - [anon_sym_NOTE] = ACTIONS(3014), - [anon_sym_INFO] = ACTIONS(3014), - [anon_sym_XXX] = ACTIONS(3014), - [sym_fixme] = ACTIONS(3014), - [aux_sym__text_token1] = ACTIONS(3012), - [sym__block_close] = ACTIONS(3014), - [sym__newline] = ACTIONS(3014), - [sym__newline_inline] = ACTIONS(3014), - [sym__heading1_begin] = ACTIONS(3014), - [sym__heading2_begin] = ACTIONS(3014), - [sym__heading3_begin] = ACTIONS(3014), - [sym__heading4_begin] = ACTIONS(3014), - [sym__heading5_begin] = ACTIONS(3014), - [sym__heading6_begin] = ACTIONS(3014), - [sym__div_begin] = ACTIONS(3014), - [sym__code_block_begin] = ACTIONS(3014), - [sym_list_marker_dash] = ACTIONS(3014), - [sym_list_marker_star] = ACTIONS(3014), - [sym_list_marker_plus] = ACTIONS(3014), - [sym__list_marker_task_begin] = ACTIONS(3014), - [sym_list_marker_definition] = ACTIONS(3014), - [sym_list_marker_decimal_period] = ACTIONS(3014), - [sym_list_marker_lower_alpha_period] = ACTIONS(3014), - [sym_list_marker_upper_alpha_period] = ACTIONS(3014), - [sym_list_marker_lower_roman_period] = ACTIONS(3014), - [sym_list_marker_upper_roman_period] = ACTIONS(3014), - [sym_list_marker_decimal_paren] = ACTIONS(3014), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3014), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3014), - [sym_list_marker_lower_roman_paren] = ACTIONS(3014), - [sym_list_marker_upper_roman_paren] = ACTIONS(3014), - [sym_list_marker_decimal_parens] = ACTIONS(3014), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3014), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3014), - [sym_list_marker_lower_roman_parens] = ACTIONS(3014), - [sym_list_marker_upper_roman_parens] = ACTIONS(3014), - [sym__block_quote_begin] = ACTIONS(3014), - [sym__block_quote_continuation] = ACTIONS(3014), - [sym__thematic_break_dash] = ACTIONS(3014), - [sym__thematic_break_star] = ACTIONS(3014), - [sym__footnote_begin] = ACTIONS(3014), - [sym__verbatim_begin] = ACTIONS(3014), - }, - [447] = { - [ts_builtin_sym_end] = ACTIONS(2752), - [anon_sym_LBRACK] = ACTIONS(2750), - [anon_sym_PIPE] = ACTIONS(2752), - [anon_sym_LBRACE] = ACTIONS(2750), - [sym__whitespace1] = ACTIONS(2752), - [anon_sym_BSLASH] = ACTIONS(2750), - [sym_quotation_marks] = ACTIONS(2752), - [sym_ellipsis] = ACTIONS(2752), - [sym_em_dash] = ACTIONS(2752), - [sym_en_dash] = ACTIONS(2750), - [sym_backslash_escape] = ACTIONS(2750), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_LBRACE_] = ACTIONS(2752), - [anon_sym__] = ACTIONS(2752), - [anon_sym_LBRACE_STAR] = ACTIONS(2752), - [anon_sym_STAR] = ACTIONS(2752), - [anon_sym_LBRACE_EQ] = ACTIONS(2752), - [anon_sym_LBRACE_PLUS] = ACTIONS(2752), - [anon_sym_LBRACE_DASH] = ACTIONS(2752), - [sym_symbol] = ACTIONS(2752), - [anon_sym_LBRACE_CARET] = ACTIONS(2752), - [anon_sym_CARET] = ACTIONS(2752), - [anon_sym_LBRACE_TILDE] = ACTIONS(2752), - [anon_sym_TILDE] = ACTIONS(2752), - [anon_sym_LBRACK_CARET] = ACTIONS(2752), - [anon_sym_BANG_LBRACK] = ACTIONS(2752), - [anon_sym_DOLLAR] = ACTIONS(2752), - [anon_sym_TODO] = ACTIONS(2752), - [anon_sym_WIP] = ACTIONS(2752), - [anon_sym_NOTE] = ACTIONS(2752), - [anon_sym_INFO] = ACTIONS(2752), - [anon_sym_XXX] = ACTIONS(2752), - [sym_fixme] = ACTIONS(2752), - [aux_sym__text_token1] = ACTIONS(2750), - [sym__newline] = ACTIONS(2752), - [sym__newline_inline] = ACTIONS(2752), - [sym__heading1_begin] = ACTIONS(2752), - [sym__heading2_begin] = ACTIONS(2752), - [sym__heading3_begin] = ACTIONS(2752), - [sym__heading4_begin] = ACTIONS(2752), - [sym__heading5_begin] = ACTIONS(2752), - [sym__heading6_begin] = ACTIONS(2752), - [sym__div_begin] = ACTIONS(2752), - [sym__code_block_begin] = ACTIONS(2752), - [sym_list_marker_dash] = ACTIONS(2752), - [sym_list_marker_star] = ACTIONS(2752), - [sym_list_marker_plus] = ACTIONS(2752), - [sym__list_marker_task_begin] = ACTIONS(2752), - [sym_list_marker_definition] = ACTIONS(2752), - [sym_list_marker_decimal_period] = ACTIONS(2752), - [sym_list_marker_lower_alpha_period] = ACTIONS(2752), - [sym_list_marker_upper_alpha_period] = ACTIONS(2752), - [sym_list_marker_lower_roman_period] = ACTIONS(2752), - [sym_list_marker_upper_roman_period] = ACTIONS(2752), - [sym_list_marker_decimal_paren] = ACTIONS(2752), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2752), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2752), - [sym_list_marker_lower_roman_paren] = ACTIONS(2752), - [sym_list_marker_upper_roman_paren] = ACTIONS(2752), - [sym_list_marker_decimal_parens] = ACTIONS(2752), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2752), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2752), - [sym_list_marker_lower_roman_parens] = ACTIONS(2752), - [sym_list_marker_upper_roman_parens] = ACTIONS(2752), - [sym__block_quote_begin] = ACTIONS(2752), - [sym__block_quote_continuation] = ACTIONS(2752), - [sym__thematic_break_dash] = ACTIONS(2752), - [sym__thematic_break_star] = ACTIONS(2752), - [sym__footnote_begin] = ACTIONS(2752), - [sym__verbatim_begin] = ACTIONS(2752), - }, - [448] = { - [ts_builtin_sym_end] = ACTIONS(3042), - [anon_sym_LBRACK] = ACTIONS(3040), - [anon_sym_PIPE] = ACTIONS(3042), - [anon_sym_LBRACE] = ACTIONS(3040), - [sym__whitespace1] = ACTIONS(3042), - [anon_sym_BSLASH] = ACTIONS(3040), - [sym_quotation_marks] = ACTIONS(3042), - [sym_ellipsis] = ACTIONS(3042), - [sym_em_dash] = ACTIONS(3042), - [sym_en_dash] = ACTIONS(3040), - [sym_backslash_escape] = ACTIONS(3040), - [anon_sym_LT] = ACTIONS(3042), - [anon_sym_LBRACE_] = ACTIONS(3042), - [anon_sym__] = ACTIONS(3042), - [anon_sym_LBRACE_STAR] = ACTIONS(3042), - [anon_sym_STAR] = ACTIONS(3042), - [anon_sym_LBRACE_EQ] = ACTIONS(3042), - [anon_sym_LBRACE_PLUS] = ACTIONS(3042), - [anon_sym_LBRACE_DASH] = ACTIONS(3042), - [sym_symbol] = ACTIONS(3042), - [anon_sym_LBRACE_CARET] = ACTIONS(3042), - [anon_sym_CARET] = ACTIONS(3042), - [anon_sym_LBRACE_TILDE] = ACTIONS(3042), - [anon_sym_TILDE] = ACTIONS(3042), - [anon_sym_LBRACK_CARET] = ACTIONS(3042), - [anon_sym_BANG_LBRACK] = ACTIONS(3042), - [anon_sym_DOLLAR] = ACTIONS(3042), - [anon_sym_TODO] = ACTIONS(3042), - [anon_sym_WIP] = ACTIONS(3042), - [anon_sym_NOTE] = ACTIONS(3042), - [anon_sym_INFO] = ACTIONS(3042), - [anon_sym_XXX] = ACTIONS(3042), - [sym_fixme] = ACTIONS(3042), - [aux_sym__text_token1] = ACTIONS(3040), - [sym__newline] = ACTIONS(3042), - [sym__newline_inline] = ACTIONS(3042), - [sym__heading1_begin] = ACTIONS(3042), - [sym__heading2_begin] = ACTIONS(3042), - [sym__heading3_begin] = ACTIONS(3042), - [sym__heading4_begin] = ACTIONS(3042), - [sym__heading5_begin] = ACTIONS(3042), - [sym__heading6_begin] = ACTIONS(3042), - [sym__div_begin] = ACTIONS(3042), - [sym__code_block_begin] = ACTIONS(3042), - [sym_list_marker_dash] = ACTIONS(3042), - [sym_list_marker_star] = ACTIONS(3042), - [sym_list_marker_plus] = ACTIONS(3042), - [sym__list_marker_task_begin] = ACTIONS(3042), - [sym_list_marker_definition] = ACTIONS(3042), - [sym_list_marker_decimal_period] = ACTIONS(3042), - [sym_list_marker_lower_alpha_period] = ACTIONS(3042), - [sym_list_marker_upper_alpha_period] = ACTIONS(3042), - [sym_list_marker_lower_roman_period] = ACTIONS(3042), - [sym_list_marker_upper_roman_period] = ACTIONS(3042), - [sym_list_marker_decimal_paren] = ACTIONS(3042), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3042), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3042), - [sym_list_marker_lower_roman_paren] = ACTIONS(3042), - [sym_list_marker_upper_roman_paren] = ACTIONS(3042), - [sym_list_marker_decimal_parens] = ACTIONS(3042), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3042), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3042), - [sym_list_marker_lower_roman_parens] = ACTIONS(3042), - [sym_list_marker_upper_roman_parens] = ACTIONS(3042), - [sym__block_quote_begin] = ACTIONS(3042), - [sym__block_quote_continuation] = ACTIONS(3042), - [sym__thematic_break_dash] = ACTIONS(3042), - [sym__thematic_break_star] = ACTIONS(3042), - [sym__footnote_begin] = ACTIONS(3042), - [sym__verbatim_begin] = ACTIONS(3042), - }, - [449] = { - [anon_sym_LBRACK] = ACTIONS(3136), - [anon_sym_PIPE] = ACTIONS(3138), - [anon_sym_LBRACE] = ACTIONS(3136), - [sym__whitespace1] = ACTIONS(3138), - [anon_sym_BSLASH] = ACTIONS(3136), - [sym_quotation_marks] = ACTIONS(3138), - [sym_ellipsis] = ACTIONS(3138), - [sym_em_dash] = ACTIONS(3138), - [sym_en_dash] = ACTIONS(3136), - [sym_backslash_escape] = ACTIONS(3136), - [anon_sym_LT] = ACTIONS(3138), - [anon_sym_LBRACE_] = ACTIONS(3138), - [anon_sym__] = ACTIONS(3138), - [anon_sym_LBRACE_STAR] = ACTIONS(3138), - [anon_sym_STAR] = ACTIONS(3138), - [anon_sym_LBRACE_EQ] = ACTIONS(3138), - [anon_sym_LBRACE_PLUS] = ACTIONS(3138), - [anon_sym_LBRACE_DASH] = ACTIONS(3138), - [sym_symbol] = ACTIONS(3138), - [anon_sym_LBRACE_CARET] = ACTIONS(3138), - [anon_sym_CARET] = ACTIONS(3138), - [anon_sym_LBRACE_TILDE] = ACTIONS(3138), - [anon_sym_TILDE] = ACTIONS(3138), - [anon_sym_LBRACK_CARET] = ACTIONS(3138), - [anon_sym_BANG_LBRACK] = ACTIONS(3138), - [anon_sym_DOLLAR] = ACTIONS(3138), - [anon_sym_TODO] = ACTIONS(3138), - [anon_sym_WIP] = ACTIONS(3138), - [anon_sym_NOTE] = ACTIONS(3138), - [anon_sym_INFO] = ACTIONS(3138), - [anon_sym_XXX] = ACTIONS(3138), - [sym_fixme] = ACTIONS(3138), - [aux_sym__text_token1] = ACTIONS(3136), - [sym__block_close] = ACTIONS(3138), - [sym__newline] = ACTIONS(3138), - [sym__newline_inline] = ACTIONS(3138), - [sym__heading1_begin] = ACTIONS(3138), - [sym__heading2_begin] = ACTIONS(3138), - [sym__heading3_begin] = ACTIONS(3138), - [sym__heading4_begin] = ACTIONS(3138), - [sym__heading5_begin] = ACTIONS(3138), - [sym__heading6_begin] = ACTIONS(3138), - [sym__div_begin] = ACTIONS(3138), - [sym__code_block_begin] = ACTIONS(3138), - [sym_list_marker_dash] = ACTIONS(3138), - [sym_list_marker_star] = ACTIONS(3138), - [sym_list_marker_plus] = ACTIONS(3138), - [sym__list_marker_task_begin] = ACTIONS(3138), - [sym_list_marker_definition] = ACTIONS(3138), - [sym_list_marker_decimal_period] = ACTIONS(3138), - [sym_list_marker_lower_alpha_period] = ACTIONS(3138), - [sym_list_marker_upper_alpha_period] = ACTIONS(3138), - [sym_list_marker_lower_roman_period] = ACTIONS(3138), - [sym_list_marker_upper_roman_period] = ACTIONS(3138), - [sym_list_marker_decimal_paren] = ACTIONS(3138), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3138), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3138), - [sym_list_marker_lower_roman_paren] = ACTIONS(3138), - [sym_list_marker_upper_roman_paren] = ACTIONS(3138), - [sym_list_marker_decimal_parens] = ACTIONS(3138), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3138), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3138), - [sym_list_marker_lower_roman_parens] = ACTIONS(3138), - [sym_list_marker_upper_roman_parens] = ACTIONS(3138), - [sym__block_quote_begin] = ACTIONS(3138), - [sym__block_quote_continuation] = ACTIONS(3138), - [sym__thematic_break_dash] = ACTIONS(3138), - [sym__thematic_break_star] = ACTIONS(3138), - [sym__footnote_begin] = ACTIONS(3138), - [sym__verbatim_begin] = ACTIONS(3138), - }, - [450] = { - [anon_sym_LBRACK] = ACTIONS(2714), - [anon_sym_PIPE] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2714), - [sym__whitespace1] = ACTIONS(2716), - [anon_sym_BSLASH] = ACTIONS(2714), - [sym_quotation_marks] = ACTIONS(2716), - [sym_ellipsis] = ACTIONS(2716), - [sym_em_dash] = ACTIONS(2716), - [sym_en_dash] = ACTIONS(2714), - [sym_backslash_escape] = ACTIONS(2714), - [anon_sym_LT] = ACTIONS(2716), - [anon_sym_LBRACE_] = ACTIONS(2716), - [anon_sym__] = ACTIONS(2716), - [anon_sym_LBRACE_STAR] = ACTIONS(2716), - [anon_sym_STAR] = ACTIONS(2716), - [anon_sym_LBRACE_EQ] = ACTIONS(2716), - [anon_sym_LBRACE_PLUS] = ACTIONS(2716), - [anon_sym_LBRACE_DASH] = ACTIONS(2716), - [sym_symbol] = ACTIONS(2716), - [anon_sym_LBRACE_CARET] = ACTIONS(2716), - [anon_sym_CARET] = ACTIONS(2716), - [anon_sym_LBRACE_TILDE] = ACTIONS(2716), - [anon_sym_TILDE] = ACTIONS(2716), - [anon_sym_LBRACK_CARET] = ACTIONS(2716), - [anon_sym_BANG_LBRACK] = ACTIONS(2716), - [anon_sym_DOLLAR] = ACTIONS(2716), - [anon_sym_TODO] = ACTIONS(2716), - [anon_sym_WIP] = ACTIONS(2716), - [anon_sym_NOTE] = ACTIONS(2716), - [anon_sym_INFO] = ACTIONS(2716), - [anon_sym_XXX] = ACTIONS(2716), - [sym_fixme] = ACTIONS(2716), - [aux_sym__text_token1] = ACTIONS(2714), - [sym__newline] = ACTIONS(2716), - [sym__newline_inline] = ACTIONS(2716), - [sym__heading1_begin] = ACTIONS(2716), - [sym__heading2_begin] = ACTIONS(2716), - [sym__heading3_begin] = ACTIONS(2716), - [sym__heading4_begin] = ACTIONS(2716), - [sym__heading5_begin] = ACTIONS(2716), - [sym__heading6_begin] = ACTIONS(2716), - [sym__div_begin] = ACTIONS(2716), - [sym__code_block_begin] = ACTIONS(2716), - [sym_list_marker_dash] = ACTIONS(2716), - [sym_list_marker_star] = ACTIONS(2716), - [sym_list_marker_plus] = ACTIONS(2716), - [sym__list_marker_task_begin] = ACTIONS(2716), - [sym_list_marker_definition] = ACTIONS(2716), - [sym_list_marker_decimal_period] = ACTIONS(2716), - [sym_list_marker_lower_alpha_period] = ACTIONS(2716), - [sym_list_marker_upper_alpha_period] = ACTIONS(2716), - [sym_list_marker_lower_roman_period] = ACTIONS(2716), - [sym_list_marker_upper_roman_period] = ACTIONS(2716), - [sym_list_marker_decimal_paren] = ACTIONS(2716), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2716), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2716), - [sym_list_marker_lower_roman_paren] = ACTIONS(2716), - [sym_list_marker_upper_roman_paren] = ACTIONS(2716), - [sym_list_marker_decimal_parens] = ACTIONS(2716), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2716), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2716), - [sym_list_marker_lower_roman_parens] = ACTIONS(2716), - [sym_list_marker_upper_roman_parens] = ACTIONS(2716), - [sym__block_quote_begin] = ACTIONS(2716), - [sym__block_quote_continuation] = ACTIONS(2716), - [sym__thematic_break_dash] = ACTIONS(2716), - [sym__thematic_break_star] = ACTIONS(2716), - [sym__footnote_begin] = ACTIONS(2716), - [sym__footnote_end] = ACTIONS(2716), - [sym__verbatim_begin] = ACTIONS(2716), - }, - [451] = { - [ts_builtin_sym_end] = ACTIONS(3046), - [anon_sym_LBRACK] = ACTIONS(3044), - [anon_sym_PIPE] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3044), - [sym__whitespace1] = ACTIONS(3046), - [anon_sym_BSLASH] = ACTIONS(3044), - [sym_quotation_marks] = ACTIONS(3046), - [sym_ellipsis] = ACTIONS(3046), - [sym_em_dash] = ACTIONS(3046), - [sym_en_dash] = ACTIONS(3044), - [sym_backslash_escape] = ACTIONS(3044), - [anon_sym_LT] = ACTIONS(3046), - [anon_sym_LBRACE_] = ACTIONS(3046), - [anon_sym__] = ACTIONS(3046), - [anon_sym_LBRACE_STAR] = ACTIONS(3046), - [anon_sym_STAR] = ACTIONS(3046), - [anon_sym_LBRACE_EQ] = ACTIONS(3046), - [anon_sym_LBRACE_PLUS] = ACTIONS(3046), - [anon_sym_LBRACE_DASH] = ACTIONS(3046), - [sym_symbol] = ACTIONS(3046), - [anon_sym_LBRACE_CARET] = ACTIONS(3046), - [anon_sym_CARET] = ACTIONS(3046), - [anon_sym_LBRACE_TILDE] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_LBRACK_CARET] = ACTIONS(3046), - [anon_sym_BANG_LBRACK] = ACTIONS(3046), - [anon_sym_DOLLAR] = ACTIONS(3046), - [anon_sym_TODO] = ACTIONS(3046), - [anon_sym_WIP] = ACTIONS(3046), - [anon_sym_NOTE] = ACTIONS(3046), - [anon_sym_INFO] = ACTIONS(3046), - [anon_sym_XXX] = ACTIONS(3046), - [sym_fixme] = ACTIONS(3046), - [aux_sym__text_token1] = ACTIONS(3044), - [sym__newline] = ACTIONS(3046), - [sym__newline_inline] = ACTIONS(3046), - [sym__heading1_begin] = ACTIONS(3046), - [sym__heading2_begin] = ACTIONS(3046), - [sym__heading3_begin] = ACTIONS(3046), - [sym__heading4_begin] = ACTIONS(3046), - [sym__heading5_begin] = ACTIONS(3046), - [sym__heading6_begin] = ACTIONS(3046), - [sym__div_begin] = ACTIONS(3046), - [sym__code_block_begin] = ACTIONS(3046), - [sym_list_marker_dash] = ACTIONS(3046), - [sym_list_marker_star] = ACTIONS(3046), - [sym_list_marker_plus] = ACTIONS(3046), - [sym__list_marker_task_begin] = ACTIONS(3046), - [sym_list_marker_definition] = ACTIONS(3046), - [sym_list_marker_decimal_period] = ACTIONS(3046), - [sym_list_marker_lower_alpha_period] = ACTIONS(3046), - [sym_list_marker_upper_alpha_period] = ACTIONS(3046), - [sym_list_marker_lower_roman_period] = ACTIONS(3046), - [sym_list_marker_upper_roman_period] = ACTIONS(3046), - [sym_list_marker_decimal_paren] = ACTIONS(3046), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3046), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3046), - [sym_list_marker_lower_roman_paren] = ACTIONS(3046), - [sym_list_marker_upper_roman_paren] = ACTIONS(3046), - [sym_list_marker_decimal_parens] = ACTIONS(3046), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3046), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3046), - [sym_list_marker_lower_roman_parens] = ACTIONS(3046), - [sym_list_marker_upper_roman_parens] = ACTIONS(3046), - [sym__block_quote_begin] = ACTIONS(3046), - [sym__block_quote_continuation] = ACTIONS(3046), - [sym__thematic_break_dash] = ACTIONS(3046), - [sym__thematic_break_star] = ACTIONS(3046), - [sym__footnote_begin] = ACTIONS(3046), - [sym__verbatim_begin] = ACTIONS(3046), - }, - [452] = { - [anon_sym_LBRACK] = ACTIONS(3026), - [anon_sym_PIPE] = ACTIONS(3024), - [anon_sym_LBRACE] = ACTIONS(3026), - [sym__whitespace1] = ACTIONS(3024), - [anon_sym_BSLASH] = ACTIONS(3026), - [sym_quotation_marks] = ACTIONS(3024), - [sym_ellipsis] = ACTIONS(3024), - [sym_em_dash] = ACTIONS(3024), - [sym_en_dash] = ACTIONS(3026), - [sym_backslash_escape] = ACTIONS(3026), - [anon_sym_LT] = ACTIONS(3024), - [anon_sym_LBRACE_] = ACTIONS(3024), - [anon_sym__] = ACTIONS(3024), - [anon_sym_LBRACE_STAR] = ACTIONS(3024), - [anon_sym_STAR] = ACTIONS(3024), - [anon_sym_LBRACE_EQ] = ACTIONS(3024), - [anon_sym_LBRACE_PLUS] = ACTIONS(3024), - [anon_sym_LBRACE_DASH] = ACTIONS(3024), - [sym_symbol] = ACTIONS(3024), - [anon_sym_LBRACE_CARET] = ACTIONS(3024), - [anon_sym_CARET] = ACTIONS(3024), - [anon_sym_LBRACE_TILDE] = ACTIONS(3024), - [anon_sym_TILDE] = ACTIONS(3024), - [anon_sym_LBRACK_CARET] = ACTIONS(3024), - [anon_sym_BANG_LBRACK] = ACTIONS(3024), - [anon_sym_DOLLAR] = ACTIONS(3024), - [anon_sym_TODO] = ACTIONS(3024), - [anon_sym_WIP] = ACTIONS(3024), - [anon_sym_NOTE] = ACTIONS(3024), - [anon_sym_INFO] = ACTIONS(3024), - [anon_sym_XXX] = ACTIONS(3024), - [sym_fixme] = ACTIONS(3024), - [aux_sym__text_token1] = ACTIONS(3026), - [sym__newline] = ACTIONS(3024), - [sym__newline_inline] = ACTIONS(3024), - [sym__heading1_begin] = ACTIONS(3024), - [sym__heading2_begin] = ACTIONS(3024), - [sym__heading3_begin] = ACTIONS(3024), - [sym__heading4_begin] = ACTIONS(3024), - [sym__heading5_begin] = ACTIONS(3024), - [sym__heading6_begin] = ACTIONS(3024), - [sym__div_begin] = ACTIONS(3024), - [sym__code_block_begin] = ACTIONS(3024), - [sym_list_marker_dash] = ACTIONS(3024), - [sym_list_marker_star] = ACTIONS(3024), - [sym_list_marker_plus] = ACTIONS(3024), - [sym__list_marker_task_begin] = ACTIONS(3024), - [sym_list_marker_definition] = ACTIONS(3024), - [sym_list_marker_decimal_period] = ACTIONS(3024), - [sym_list_marker_lower_alpha_period] = ACTIONS(3024), - [sym_list_marker_upper_alpha_period] = ACTIONS(3024), - [sym_list_marker_lower_roman_period] = ACTIONS(3024), - [sym_list_marker_upper_roman_period] = ACTIONS(3024), - [sym_list_marker_decimal_paren] = ACTIONS(3024), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3024), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3024), - [sym_list_marker_lower_roman_paren] = ACTIONS(3024), - [sym_list_marker_upper_roman_paren] = ACTIONS(3024), - [sym_list_marker_decimal_parens] = ACTIONS(3024), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3024), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3024), - [sym_list_marker_lower_roman_parens] = ACTIONS(3024), - [sym_list_marker_upper_roman_parens] = ACTIONS(3024), - [sym__block_quote_begin] = ACTIONS(3024), - [sym__block_quote_continuation] = ACTIONS(3024), - [sym__thematic_break_dash] = ACTIONS(3024), - [sym__thematic_break_star] = ACTIONS(3024), - [sym__footnote_begin] = ACTIONS(3024), - [sym__footnote_end] = ACTIONS(3024), - [sym__verbatim_begin] = ACTIONS(3024), - }, - [453] = { - [anon_sym_LBRACK] = ACTIONS(3110), - [anon_sym_PIPE] = ACTIONS(3108), - [anon_sym_LBRACE] = ACTIONS(3110), - [sym__whitespace1] = ACTIONS(3108), - [anon_sym_BSLASH] = ACTIONS(3110), - [sym_quotation_marks] = ACTIONS(3108), - [sym_ellipsis] = ACTIONS(3108), - [sym_em_dash] = ACTIONS(3108), - [sym_en_dash] = ACTIONS(3110), - [sym_backslash_escape] = ACTIONS(3110), - [anon_sym_LT] = ACTIONS(3108), - [anon_sym_LBRACE_] = ACTIONS(3108), - [anon_sym__] = ACTIONS(3108), - [anon_sym_LBRACE_STAR] = ACTIONS(3108), - [anon_sym_STAR] = ACTIONS(3108), - [anon_sym_LBRACE_EQ] = ACTIONS(3108), - [anon_sym_LBRACE_PLUS] = ACTIONS(3108), - [anon_sym_LBRACE_DASH] = ACTIONS(3108), - [sym_symbol] = ACTIONS(3108), - [anon_sym_LBRACE_CARET] = ACTIONS(3108), - [anon_sym_CARET] = ACTIONS(3108), - [anon_sym_LBRACE_TILDE] = ACTIONS(3108), - [anon_sym_TILDE] = ACTIONS(3108), - [anon_sym_LBRACK_CARET] = ACTIONS(3108), - [anon_sym_BANG_LBRACK] = ACTIONS(3108), - [anon_sym_DOLLAR] = ACTIONS(3108), - [anon_sym_TODO] = ACTIONS(3108), - [anon_sym_WIP] = ACTIONS(3108), - [anon_sym_NOTE] = ACTIONS(3108), - [anon_sym_INFO] = ACTIONS(3108), - [anon_sym_XXX] = ACTIONS(3108), - [sym_fixme] = ACTIONS(3108), - [aux_sym__text_token1] = ACTIONS(3110), - [sym__newline] = ACTIONS(3108), - [sym__newline_inline] = ACTIONS(3108), - [sym__heading1_begin] = ACTIONS(3108), - [sym__heading2_begin] = ACTIONS(3108), - [sym__heading3_begin] = ACTIONS(3108), - [sym__heading4_begin] = ACTIONS(3108), - [sym__heading5_begin] = ACTIONS(3108), - [sym__heading6_begin] = ACTIONS(3108), - [sym__div_begin] = ACTIONS(3108), - [sym__code_block_begin] = ACTIONS(3108), - [sym_list_marker_dash] = ACTIONS(3108), - [sym_list_marker_star] = ACTIONS(3108), - [sym_list_marker_plus] = ACTIONS(3108), - [sym__list_marker_task_begin] = ACTIONS(3108), - [sym_list_marker_definition] = ACTIONS(3108), - [sym_list_marker_decimal_period] = ACTIONS(3108), - [sym_list_marker_lower_alpha_period] = ACTIONS(3108), - [sym_list_marker_upper_alpha_period] = ACTIONS(3108), - [sym_list_marker_lower_roman_period] = ACTIONS(3108), - [sym_list_marker_upper_roman_period] = ACTIONS(3108), - [sym_list_marker_decimal_paren] = ACTIONS(3108), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3108), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3108), - [sym_list_marker_lower_roman_paren] = ACTIONS(3108), - [sym_list_marker_upper_roman_paren] = ACTIONS(3108), - [sym_list_marker_decimal_parens] = ACTIONS(3108), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3108), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3108), - [sym_list_marker_lower_roman_parens] = ACTIONS(3108), - [sym_list_marker_upper_roman_parens] = ACTIONS(3108), - [sym__block_quote_begin] = ACTIONS(3108), - [sym__block_quote_continuation] = ACTIONS(3108), - [sym__thematic_break_dash] = ACTIONS(3108), - [sym__thematic_break_star] = ACTIONS(3108), - [sym__footnote_begin] = ACTIONS(3108), - [sym__footnote_end] = ACTIONS(3108), - [sym__verbatim_begin] = ACTIONS(3108), - }, - [454] = { - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_PIPE] = ACTIONS(3142), - [anon_sym_LBRACE] = ACTIONS(3140), - [sym__whitespace1] = ACTIONS(3142), - [anon_sym_BSLASH] = ACTIONS(3140), - [sym_quotation_marks] = ACTIONS(3142), - [sym_ellipsis] = ACTIONS(3142), - [sym_em_dash] = ACTIONS(3142), - [sym_en_dash] = ACTIONS(3140), - [sym_backslash_escape] = ACTIONS(3140), - [anon_sym_LT] = ACTIONS(3142), - [anon_sym_LBRACE_] = ACTIONS(3142), - [anon_sym__] = ACTIONS(3142), - [anon_sym_LBRACE_STAR] = ACTIONS(3142), - [anon_sym_STAR] = ACTIONS(3142), - [anon_sym_LBRACE_EQ] = ACTIONS(3142), - [anon_sym_LBRACE_PLUS] = ACTIONS(3142), - [anon_sym_LBRACE_DASH] = ACTIONS(3142), - [sym_symbol] = ACTIONS(3142), - [anon_sym_LBRACE_CARET] = ACTIONS(3142), - [anon_sym_CARET] = ACTIONS(3142), - [anon_sym_LBRACE_TILDE] = ACTIONS(3142), - [anon_sym_TILDE] = ACTIONS(3142), - [anon_sym_LBRACK_CARET] = ACTIONS(3142), - [anon_sym_BANG_LBRACK] = ACTIONS(3142), - [anon_sym_DOLLAR] = ACTIONS(3142), - [anon_sym_TODO] = ACTIONS(3142), - [anon_sym_WIP] = ACTIONS(3142), - [anon_sym_NOTE] = ACTIONS(3142), - [anon_sym_INFO] = ACTIONS(3142), - [anon_sym_XXX] = ACTIONS(3142), - [sym_fixme] = ACTIONS(3142), - [aux_sym__text_token1] = ACTIONS(3140), - [sym__newline] = ACTIONS(3142), - [sym__newline_inline] = ACTIONS(3142), - [sym__heading1_begin] = ACTIONS(3142), - [sym__heading2_begin] = ACTIONS(3142), - [sym__heading3_begin] = ACTIONS(3142), - [sym__heading4_begin] = ACTIONS(3142), - [sym__heading5_begin] = ACTIONS(3142), - [sym__heading6_begin] = ACTIONS(3142), - [sym__div_begin] = ACTIONS(3142), - [sym__code_block_begin] = ACTIONS(3142), - [sym_list_marker_dash] = ACTIONS(3142), - [sym_list_marker_star] = ACTIONS(3142), - [sym_list_marker_plus] = ACTIONS(3142), - [sym__list_marker_task_begin] = ACTIONS(3142), - [sym_list_marker_definition] = ACTIONS(3142), - [sym_list_marker_decimal_period] = ACTIONS(3142), - [sym_list_marker_lower_alpha_period] = ACTIONS(3142), - [sym_list_marker_upper_alpha_period] = ACTIONS(3142), - [sym_list_marker_lower_roman_period] = ACTIONS(3142), - [sym_list_marker_upper_roman_period] = ACTIONS(3142), - [sym_list_marker_decimal_paren] = ACTIONS(3142), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3142), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3142), - [sym_list_marker_lower_roman_paren] = ACTIONS(3142), - [sym_list_marker_upper_roman_paren] = ACTIONS(3142), - [sym_list_marker_decimal_parens] = ACTIONS(3142), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3142), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3142), - [sym_list_marker_lower_roman_parens] = ACTIONS(3142), - [sym_list_marker_upper_roman_parens] = ACTIONS(3142), - [sym__block_quote_begin] = ACTIONS(3142), - [sym__block_quote_continuation] = ACTIONS(3142), - [sym__thematic_break_dash] = ACTIONS(3142), - [sym__thematic_break_star] = ACTIONS(3142), - [sym__footnote_begin] = ACTIONS(3142), - [sym__footnote_end] = ACTIONS(3142), - [sym__verbatim_begin] = ACTIONS(3142), - }, - [455] = { - [ts_builtin_sym_end] = ACTIONS(3038), - [anon_sym_LBRACK] = ACTIONS(3036), - [anon_sym_PIPE] = ACTIONS(3038), - [anon_sym_LBRACE] = ACTIONS(3036), - [sym__whitespace1] = ACTIONS(3038), - [anon_sym_BSLASH] = ACTIONS(3036), - [sym_quotation_marks] = ACTIONS(3038), - [sym_ellipsis] = ACTIONS(3038), - [sym_em_dash] = ACTIONS(3038), - [sym_en_dash] = ACTIONS(3036), - [sym_backslash_escape] = ACTIONS(3036), - [anon_sym_LT] = ACTIONS(3038), - [anon_sym_LBRACE_] = ACTIONS(3038), - [anon_sym__] = ACTIONS(3038), - [anon_sym_LBRACE_STAR] = ACTIONS(3038), - [anon_sym_STAR] = ACTIONS(3038), - [anon_sym_LBRACE_EQ] = ACTIONS(3038), - [anon_sym_LBRACE_PLUS] = ACTIONS(3038), - [anon_sym_LBRACE_DASH] = ACTIONS(3038), - [sym_symbol] = ACTIONS(3038), - [anon_sym_LBRACE_CARET] = ACTIONS(3038), - [anon_sym_CARET] = ACTIONS(3038), - [anon_sym_LBRACE_TILDE] = ACTIONS(3038), - [anon_sym_TILDE] = ACTIONS(3038), - [anon_sym_LBRACK_CARET] = ACTIONS(3038), - [anon_sym_BANG_LBRACK] = ACTIONS(3038), - [anon_sym_DOLLAR] = ACTIONS(3038), - [anon_sym_TODO] = ACTIONS(3038), - [anon_sym_WIP] = ACTIONS(3038), - [anon_sym_NOTE] = ACTIONS(3038), - [anon_sym_INFO] = ACTIONS(3038), - [anon_sym_XXX] = ACTIONS(3038), - [sym_fixme] = ACTIONS(3038), - [aux_sym__text_token1] = ACTIONS(3036), - [sym__newline] = ACTIONS(3038), - [sym__newline_inline] = ACTIONS(3038), - [sym__heading1_begin] = ACTIONS(3038), - [sym__heading2_begin] = ACTIONS(3038), - [sym__heading3_begin] = ACTIONS(3038), - [sym__heading4_begin] = ACTIONS(3038), - [sym__heading5_begin] = ACTIONS(3038), - [sym__heading6_begin] = ACTIONS(3038), - [sym__div_begin] = ACTIONS(3038), - [sym__code_block_begin] = ACTIONS(3038), - [sym_list_marker_dash] = ACTIONS(3038), - [sym_list_marker_star] = ACTIONS(3038), - [sym_list_marker_plus] = ACTIONS(3038), - [sym__list_marker_task_begin] = ACTIONS(3038), - [sym_list_marker_definition] = ACTIONS(3038), - [sym_list_marker_decimal_period] = ACTIONS(3038), - [sym_list_marker_lower_alpha_period] = ACTIONS(3038), - [sym_list_marker_upper_alpha_period] = ACTIONS(3038), - [sym_list_marker_lower_roman_period] = ACTIONS(3038), - [sym_list_marker_upper_roman_period] = ACTIONS(3038), - [sym_list_marker_decimal_paren] = ACTIONS(3038), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3038), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3038), - [sym_list_marker_lower_roman_paren] = ACTIONS(3038), - [sym_list_marker_upper_roman_paren] = ACTIONS(3038), - [sym_list_marker_decimal_parens] = ACTIONS(3038), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3038), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3038), - [sym_list_marker_lower_roman_parens] = ACTIONS(3038), - [sym_list_marker_upper_roman_parens] = ACTIONS(3038), - [sym__block_quote_begin] = ACTIONS(3038), - [sym__block_quote_continuation] = ACTIONS(3038), - [sym__thematic_break_dash] = ACTIONS(3038), - [sym__thematic_break_star] = ACTIONS(3038), - [sym__footnote_begin] = ACTIONS(3038), - [sym__verbatim_begin] = ACTIONS(3038), - }, - [456] = { - [anon_sym_LBRACK] = ACTIONS(3106), - [anon_sym_PIPE] = ACTIONS(3104), - [anon_sym_LBRACE] = ACTIONS(3106), - [sym__whitespace1] = ACTIONS(3104), - [anon_sym_BSLASH] = ACTIONS(3106), - [sym_quotation_marks] = ACTIONS(3104), - [sym_ellipsis] = ACTIONS(3104), - [sym_em_dash] = ACTIONS(3104), - [sym_en_dash] = ACTIONS(3106), - [sym_backslash_escape] = ACTIONS(3106), - [anon_sym_LT] = ACTIONS(3104), - [anon_sym_LBRACE_] = ACTIONS(3104), - [anon_sym__] = ACTIONS(3104), - [anon_sym_LBRACE_STAR] = ACTIONS(3104), - [anon_sym_STAR] = ACTIONS(3104), - [anon_sym_LBRACE_EQ] = ACTIONS(3104), - [anon_sym_LBRACE_PLUS] = ACTIONS(3104), - [anon_sym_LBRACE_DASH] = ACTIONS(3104), - [sym_symbol] = ACTIONS(3104), - [anon_sym_LBRACE_CARET] = ACTIONS(3104), - [anon_sym_CARET] = ACTIONS(3104), - [anon_sym_LBRACE_TILDE] = ACTIONS(3104), - [anon_sym_TILDE] = ACTIONS(3104), - [anon_sym_LBRACK_CARET] = ACTIONS(3104), - [anon_sym_BANG_LBRACK] = ACTIONS(3104), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_TODO] = ACTIONS(3104), - [anon_sym_WIP] = ACTIONS(3104), - [anon_sym_NOTE] = ACTIONS(3104), - [anon_sym_INFO] = ACTIONS(3104), - [anon_sym_XXX] = ACTIONS(3104), - [sym_fixme] = ACTIONS(3104), - [aux_sym__text_token1] = ACTIONS(3106), - [sym__block_close] = ACTIONS(3104), - [sym__newline] = ACTIONS(3104), - [sym__newline_inline] = ACTIONS(3104), - [sym__heading1_begin] = ACTIONS(3104), - [sym__heading2_begin] = ACTIONS(3104), - [sym__heading3_begin] = ACTIONS(3104), - [sym__heading4_begin] = ACTIONS(3104), - [sym__heading5_begin] = ACTIONS(3104), - [sym__heading6_begin] = ACTIONS(3104), - [sym__div_begin] = ACTIONS(3104), - [sym__code_block_begin] = ACTIONS(3104), - [sym_list_marker_dash] = ACTIONS(3104), - [sym_list_marker_star] = ACTIONS(3104), - [sym_list_marker_plus] = ACTIONS(3104), - [sym__list_marker_task_begin] = ACTIONS(3104), - [sym_list_marker_definition] = ACTIONS(3104), - [sym_list_marker_decimal_period] = ACTIONS(3104), - [sym_list_marker_lower_alpha_period] = ACTIONS(3104), - [sym_list_marker_upper_alpha_period] = ACTIONS(3104), - [sym_list_marker_lower_roman_period] = ACTIONS(3104), - [sym_list_marker_upper_roman_period] = ACTIONS(3104), - [sym_list_marker_decimal_paren] = ACTIONS(3104), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3104), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3104), - [sym_list_marker_lower_roman_paren] = ACTIONS(3104), - [sym_list_marker_upper_roman_paren] = ACTIONS(3104), - [sym_list_marker_decimal_parens] = ACTIONS(3104), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3104), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3104), - [sym_list_marker_lower_roman_parens] = ACTIONS(3104), - [sym_list_marker_upper_roman_parens] = ACTIONS(3104), - [sym__block_quote_begin] = ACTIONS(3104), - [sym__block_quote_continuation] = ACTIONS(3104), - [sym__thematic_break_dash] = ACTIONS(3104), - [sym__thematic_break_star] = ACTIONS(3104), - [sym__footnote_begin] = ACTIONS(3104), - [sym__verbatim_begin] = ACTIONS(3104), - }, - [457] = { - [ts_builtin_sym_end] = ACTIONS(3144), - [anon_sym_LBRACK] = ACTIONS(3146), - [anon_sym_PIPE] = ACTIONS(3144), - [anon_sym_LBRACE] = ACTIONS(3146), - [sym__whitespace1] = ACTIONS(3144), - [anon_sym_BSLASH] = ACTIONS(3146), - [sym_quotation_marks] = ACTIONS(3144), - [sym_ellipsis] = ACTIONS(3144), - [sym_em_dash] = ACTIONS(3144), - [sym_en_dash] = ACTIONS(3146), - [sym_backslash_escape] = ACTIONS(3146), - [anon_sym_LT] = ACTIONS(3144), - [anon_sym_LBRACE_] = ACTIONS(3144), - [anon_sym__] = ACTIONS(3144), - [anon_sym_LBRACE_STAR] = ACTIONS(3144), - [anon_sym_STAR] = ACTIONS(3144), - [anon_sym_LBRACE_EQ] = ACTIONS(3144), - [anon_sym_LBRACE_PLUS] = ACTIONS(3144), - [anon_sym_LBRACE_DASH] = ACTIONS(3144), - [sym_symbol] = ACTIONS(3144), - [anon_sym_LBRACE_CARET] = ACTIONS(3144), - [anon_sym_CARET] = ACTIONS(3144), - [anon_sym_LBRACE_TILDE] = ACTIONS(3144), - [anon_sym_TILDE] = ACTIONS(3144), - [anon_sym_LBRACK_CARET] = ACTIONS(3144), - [anon_sym_BANG_LBRACK] = ACTIONS(3144), - [anon_sym_DOLLAR] = ACTIONS(3144), - [anon_sym_TODO] = ACTIONS(3144), - [anon_sym_WIP] = ACTIONS(3144), - [anon_sym_NOTE] = ACTIONS(3144), - [anon_sym_INFO] = ACTIONS(3144), - [anon_sym_XXX] = ACTIONS(3144), - [sym_fixme] = ACTIONS(3144), - [aux_sym__text_token1] = ACTIONS(3146), - [sym__newline] = ACTIONS(3144), - [sym__newline_inline] = ACTIONS(3144), - [sym__heading1_begin] = ACTIONS(3144), - [sym__heading2_begin] = ACTIONS(3144), - [sym__heading3_begin] = ACTIONS(3144), - [sym__heading4_begin] = ACTIONS(3144), - [sym__heading5_begin] = ACTIONS(3144), - [sym__heading6_begin] = ACTIONS(3144), - [sym__div_begin] = ACTIONS(3144), - [sym__code_block_begin] = ACTIONS(3144), - [sym_list_marker_dash] = ACTIONS(3144), - [sym_list_marker_star] = ACTIONS(3144), - [sym_list_marker_plus] = ACTIONS(3144), - [sym__list_marker_task_begin] = ACTIONS(3144), - [sym_list_marker_definition] = ACTIONS(3144), - [sym_list_marker_decimal_period] = ACTIONS(3144), - [sym_list_marker_lower_alpha_period] = ACTIONS(3144), - [sym_list_marker_upper_alpha_period] = ACTIONS(3144), - [sym_list_marker_lower_roman_period] = ACTIONS(3144), - [sym_list_marker_upper_roman_period] = ACTIONS(3144), - [sym_list_marker_decimal_paren] = ACTIONS(3144), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3144), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3144), - [sym_list_marker_lower_roman_paren] = ACTIONS(3144), - [sym_list_marker_upper_roman_paren] = ACTIONS(3144), - [sym_list_marker_decimal_parens] = ACTIONS(3144), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3144), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3144), - [sym_list_marker_lower_roman_parens] = ACTIONS(3144), - [sym_list_marker_upper_roman_parens] = ACTIONS(3144), - [sym__block_quote_begin] = ACTIONS(3144), - [sym__block_quote_continuation] = ACTIONS(3144), - [sym__thematic_break_dash] = ACTIONS(3144), - [sym__thematic_break_star] = ACTIONS(3144), - [sym__footnote_begin] = ACTIONS(3144), - [sym__verbatim_begin] = ACTIONS(3144), - }, - [458] = { - [ts_builtin_sym_end] = ACTIONS(2962), - [anon_sym_LBRACK] = ACTIONS(2960), - [anon_sym_PIPE] = ACTIONS(2962), - [anon_sym_LBRACE] = ACTIONS(2960), - [sym__whitespace1] = ACTIONS(2962), - [anon_sym_BSLASH] = ACTIONS(2960), - [sym_quotation_marks] = ACTIONS(2962), - [sym_ellipsis] = ACTIONS(2962), - [sym_em_dash] = ACTIONS(2962), - [sym_en_dash] = ACTIONS(2960), - [sym_backslash_escape] = ACTIONS(2960), - [anon_sym_LT] = ACTIONS(2962), - [anon_sym_LBRACE_] = ACTIONS(2962), - [anon_sym__] = ACTIONS(2962), - [anon_sym_LBRACE_STAR] = ACTIONS(2962), - [anon_sym_STAR] = ACTIONS(2962), - [anon_sym_LBRACE_EQ] = ACTIONS(2962), - [anon_sym_LBRACE_PLUS] = ACTIONS(2962), - [anon_sym_LBRACE_DASH] = ACTIONS(2962), - [sym_symbol] = ACTIONS(2962), - [anon_sym_LBRACE_CARET] = ACTIONS(2962), - [anon_sym_CARET] = ACTIONS(2962), - [anon_sym_LBRACE_TILDE] = ACTIONS(2962), - [anon_sym_TILDE] = ACTIONS(2962), - [anon_sym_LBRACK_CARET] = ACTIONS(2962), - [anon_sym_BANG_LBRACK] = ACTIONS(2962), - [anon_sym_DOLLAR] = ACTIONS(2962), - [anon_sym_TODO] = ACTIONS(2962), - [anon_sym_WIP] = ACTIONS(2962), - [anon_sym_NOTE] = ACTIONS(2962), - [anon_sym_INFO] = ACTIONS(2962), - [anon_sym_XXX] = ACTIONS(2962), - [sym_fixme] = ACTIONS(2962), - [aux_sym__text_token1] = ACTIONS(2960), - [sym__newline] = ACTIONS(2962), - [sym__newline_inline] = ACTIONS(2962), - [sym__heading1_begin] = ACTIONS(2962), - [sym__heading2_begin] = ACTIONS(2962), - [sym__heading3_begin] = ACTIONS(2962), - [sym__heading4_begin] = ACTIONS(2962), - [sym__heading5_begin] = ACTIONS(2962), - [sym__heading6_begin] = ACTIONS(2962), - [sym__div_begin] = ACTIONS(2962), - [sym__code_block_begin] = ACTIONS(2962), - [sym_list_marker_dash] = ACTIONS(2962), - [sym_list_marker_star] = ACTIONS(2962), - [sym_list_marker_plus] = ACTIONS(2962), - [sym__list_marker_task_begin] = ACTIONS(2962), - [sym_list_marker_definition] = ACTIONS(2962), - [sym_list_marker_decimal_period] = ACTIONS(2962), - [sym_list_marker_lower_alpha_period] = ACTIONS(2962), - [sym_list_marker_upper_alpha_period] = ACTIONS(2962), - [sym_list_marker_lower_roman_period] = ACTIONS(2962), - [sym_list_marker_upper_roman_period] = ACTIONS(2962), - [sym_list_marker_decimal_paren] = ACTIONS(2962), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2962), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2962), - [sym_list_marker_lower_roman_paren] = ACTIONS(2962), - [sym_list_marker_upper_roman_paren] = ACTIONS(2962), - [sym_list_marker_decimal_parens] = ACTIONS(2962), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2962), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2962), - [sym_list_marker_lower_roman_parens] = ACTIONS(2962), - [sym_list_marker_upper_roman_parens] = ACTIONS(2962), - [sym__block_quote_begin] = ACTIONS(2962), - [sym__block_quote_continuation] = ACTIONS(2962), - [sym__thematic_break_dash] = ACTIONS(2962), - [sym__thematic_break_star] = ACTIONS(2962), - [sym__footnote_begin] = ACTIONS(2962), - [sym__verbatim_begin] = ACTIONS(2962), - }, - [459] = { - [ts_builtin_sym_end] = ACTIONS(3034), - [anon_sym_LBRACK] = ACTIONS(3032), - [anon_sym_PIPE] = ACTIONS(3034), - [anon_sym_LBRACE] = ACTIONS(3032), - [sym__whitespace1] = ACTIONS(3034), - [anon_sym_BSLASH] = ACTIONS(3032), - [sym_quotation_marks] = ACTIONS(3034), - [sym_ellipsis] = ACTIONS(3034), - [sym_em_dash] = ACTIONS(3034), - [sym_en_dash] = ACTIONS(3032), - [sym_backslash_escape] = ACTIONS(3032), - [anon_sym_LT] = ACTIONS(3034), - [anon_sym_LBRACE_] = ACTIONS(3034), - [anon_sym__] = ACTIONS(3034), - [anon_sym_LBRACE_STAR] = ACTIONS(3034), - [anon_sym_STAR] = ACTIONS(3034), - [anon_sym_LBRACE_EQ] = ACTIONS(3034), - [anon_sym_LBRACE_PLUS] = ACTIONS(3034), - [anon_sym_LBRACE_DASH] = ACTIONS(3034), - [sym_symbol] = ACTIONS(3034), - [anon_sym_LBRACE_CARET] = ACTIONS(3034), - [anon_sym_CARET] = ACTIONS(3034), - [anon_sym_LBRACE_TILDE] = ACTIONS(3034), - [anon_sym_TILDE] = ACTIONS(3034), - [anon_sym_LBRACK_CARET] = ACTIONS(3034), - [anon_sym_BANG_LBRACK] = ACTIONS(3034), - [anon_sym_DOLLAR] = ACTIONS(3034), - [anon_sym_TODO] = ACTIONS(3034), - [anon_sym_WIP] = ACTIONS(3034), - [anon_sym_NOTE] = ACTIONS(3034), - [anon_sym_INFO] = ACTIONS(3034), - [anon_sym_XXX] = ACTIONS(3034), - [sym_fixme] = ACTIONS(3034), - [aux_sym__text_token1] = ACTIONS(3032), - [sym__newline] = ACTIONS(3034), - [sym__newline_inline] = ACTIONS(3034), - [sym__heading1_begin] = ACTIONS(3034), - [sym__heading2_begin] = ACTIONS(3034), - [sym__heading3_begin] = ACTIONS(3034), - [sym__heading4_begin] = ACTIONS(3034), - [sym__heading5_begin] = ACTIONS(3034), - [sym__heading6_begin] = ACTIONS(3034), - [sym__div_begin] = ACTIONS(3034), - [sym__code_block_begin] = ACTIONS(3034), - [sym_list_marker_dash] = ACTIONS(3034), - [sym_list_marker_star] = ACTIONS(3034), - [sym_list_marker_plus] = ACTIONS(3034), - [sym__list_marker_task_begin] = ACTIONS(3034), - [sym_list_marker_definition] = ACTIONS(3034), - [sym_list_marker_decimal_period] = ACTIONS(3034), - [sym_list_marker_lower_alpha_period] = ACTIONS(3034), - [sym_list_marker_upper_alpha_period] = ACTIONS(3034), - [sym_list_marker_lower_roman_period] = ACTIONS(3034), - [sym_list_marker_upper_roman_period] = ACTIONS(3034), - [sym_list_marker_decimal_paren] = ACTIONS(3034), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3034), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3034), - [sym_list_marker_lower_roman_paren] = ACTIONS(3034), - [sym_list_marker_upper_roman_paren] = ACTIONS(3034), - [sym_list_marker_decimal_parens] = ACTIONS(3034), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3034), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3034), - [sym_list_marker_lower_roman_parens] = ACTIONS(3034), - [sym_list_marker_upper_roman_parens] = ACTIONS(3034), - [sym__block_quote_begin] = ACTIONS(3034), - [sym__block_quote_continuation] = ACTIONS(3034), - [sym__thematic_break_dash] = ACTIONS(3034), - [sym__thematic_break_star] = ACTIONS(3034), - [sym__footnote_begin] = ACTIONS(3034), - [sym__verbatim_begin] = ACTIONS(3034), - }, - [460] = { - [anon_sym_LBRACK] = ACTIONS(3044), - [anon_sym_PIPE] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3044), - [sym__whitespace1] = ACTIONS(3046), - [anon_sym_BSLASH] = ACTIONS(3044), - [sym_quotation_marks] = ACTIONS(3046), - [sym_ellipsis] = ACTIONS(3046), - [sym_em_dash] = ACTIONS(3046), - [sym_en_dash] = ACTIONS(3044), - [sym_backslash_escape] = ACTIONS(3044), - [anon_sym_LT] = ACTIONS(3046), - [anon_sym_LBRACE_] = ACTIONS(3046), - [anon_sym__] = ACTIONS(3046), - [anon_sym_LBRACE_STAR] = ACTIONS(3046), - [anon_sym_STAR] = ACTIONS(3046), - [anon_sym_LBRACE_EQ] = ACTIONS(3046), - [anon_sym_LBRACE_PLUS] = ACTIONS(3046), - [anon_sym_LBRACE_DASH] = ACTIONS(3046), - [sym_symbol] = ACTIONS(3046), - [anon_sym_LBRACE_CARET] = ACTIONS(3046), - [anon_sym_CARET] = ACTIONS(3046), - [anon_sym_LBRACE_TILDE] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_LBRACK_CARET] = ACTIONS(3046), - [anon_sym_BANG_LBRACK] = ACTIONS(3046), - [anon_sym_DOLLAR] = ACTIONS(3046), - [anon_sym_TODO] = ACTIONS(3046), - [anon_sym_WIP] = ACTIONS(3046), - [anon_sym_NOTE] = ACTIONS(3046), - [anon_sym_INFO] = ACTIONS(3046), - [anon_sym_XXX] = ACTIONS(3046), - [sym_fixme] = ACTIONS(3046), - [aux_sym__text_token1] = ACTIONS(3044), - [sym__block_close] = ACTIONS(3046), - [sym__newline] = ACTIONS(3046), - [sym__newline_inline] = ACTIONS(3046), - [sym__heading1_begin] = ACTIONS(3046), - [sym__heading2_begin] = ACTIONS(3046), - [sym__heading3_begin] = ACTIONS(3046), - [sym__heading4_begin] = ACTIONS(3046), - [sym__heading5_begin] = ACTIONS(3046), - [sym__heading6_begin] = ACTIONS(3046), - [sym__div_begin] = ACTIONS(3046), - [sym__code_block_begin] = ACTIONS(3046), - [sym_list_marker_dash] = ACTIONS(3046), - [sym_list_marker_star] = ACTIONS(3046), - [sym_list_marker_plus] = ACTIONS(3046), - [sym__list_marker_task_begin] = ACTIONS(3046), - [sym_list_marker_definition] = ACTIONS(3046), - [sym_list_marker_decimal_period] = ACTIONS(3046), - [sym_list_marker_lower_alpha_period] = ACTIONS(3046), - [sym_list_marker_upper_alpha_period] = ACTIONS(3046), - [sym_list_marker_lower_roman_period] = ACTIONS(3046), - [sym_list_marker_upper_roman_period] = ACTIONS(3046), - [sym_list_marker_decimal_paren] = ACTIONS(3046), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3046), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3046), - [sym_list_marker_lower_roman_paren] = ACTIONS(3046), - [sym_list_marker_upper_roman_paren] = ACTIONS(3046), - [sym_list_marker_decimal_parens] = ACTIONS(3046), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3046), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3046), - [sym_list_marker_lower_roman_parens] = ACTIONS(3046), - [sym_list_marker_upper_roman_parens] = ACTIONS(3046), - [sym__block_quote_begin] = ACTIONS(3046), - [sym__block_quote_continuation] = ACTIONS(3046), - [sym__thematic_break_dash] = ACTIONS(3046), - [sym__thematic_break_star] = ACTIONS(3046), - [sym__footnote_begin] = ACTIONS(3046), - [sym__verbatim_begin] = ACTIONS(3046), - }, - [461] = { - [anon_sym_LBRACK] = ACTIONS(3028), - [anon_sym_PIPE] = ACTIONS(3030), - [anon_sym_LBRACE] = ACTIONS(3028), - [sym__whitespace1] = ACTIONS(3030), - [anon_sym_BSLASH] = ACTIONS(3028), - [sym_quotation_marks] = ACTIONS(3030), - [sym_ellipsis] = ACTIONS(3030), - [sym_em_dash] = ACTIONS(3030), - [sym_en_dash] = ACTIONS(3028), - [sym_backslash_escape] = ACTIONS(3028), - [anon_sym_LT] = ACTIONS(3030), - [anon_sym_LBRACE_] = ACTIONS(3030), - [anon_sym__] = ACTIONS(3030), - [anon_sym_LBRACE_STAR] = ACTIONS(3030), - [anon_sym_STAR] = ACTIONS(3030), - [anon_sym_LBRACE_EQ] = ACTIONS(3030), - [anon_sym_LBRACE_PLUS] = ACTIONS(3030), - [anon_sym_LBRACE_DASH] = ACTIONS(3030), - [sym_symbol] = ACTIONS(3030), - [anon_sym_LBRACE_CARET] = ACTIONS(3030), - [anon_sym_CARET] = ACTIONS(3030), - [anon_sym_LBRACE_TILDE] = ACTIONS(3030), - [anon_sym_TILDE] = ACTIONS(3030), - [anon_sym_LBRACK_CARET] = ACTIONS(3030), - [anon_sym_BANG_LBRACK] = ACTIONS(3030), - [anon_sym_DOLLAR] = ACTIONS(3030), - [anon_sym_TODO] = ACTIONS(3030), - [anon_sym_WIP] = ACTIONS(3030), - [anon_sym_NOTE] = ACTIONS(3030), - [anon_sym_INFO] = ACTIONS(3030), - [anon_sym_XXX] = ACTIONS(3030), - [sym_fixme] = ACTIONS(3030), - [aux_sym__text_token1] = ACTIONS(3028), - [sym__block_close] = ACTIONS(3030), - [sym__newline] = ACTIONS(3030), - [sym__newline_inline] = ACTIONS(3030), - [sym__heading1_begin] = ACTIONS(3030), - [sym__heading2_begin] = ACTIONS(3030), - [sym__heading3_begin] = ACTIONS(3030), - [sym__heading4_begin] = ACTIONS(3030), - [sym__heading5_begin] = ACTIONS(3030), - [sym__heading6_begin] = ACTIONS(3030), - [sym__div_begin] = ACTIONS(3030), - [sym__code_block_begin] = ACTIONS(3030), - [sym_list_marker_dash] = ACTIONS(3030), - [sym_list_marker_star] = ACTIONS(3030), - [sym_list_marker_plus] = ACTIONS(3030), - [sym__list_marker_task_begin] = ACTIONS(3030), - [sym_list_marker_definition] = ACTIONS(3030), - [sym_list_marker_decimal_period] = ACTIONS(3030), - [sym_list_marker_lower_alpha_period] = ACTIONS(3030), - [sym_list_marker_upper_alpha_period] = ACTIONS(3030), - [sym_list_marker_lower_roman_period] = ACTIONS(3030), - [sym_list_marker_upper_roman_period] = ACTIONS(3030), - [sym_list_marker_decimal_paren] = ACTIONS(3030), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3030), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3030), - [sym_list_marker_lower_roman_paren] = ACTIONS(3030), - [sym_list_marker_upper_roman_paren] = ACTIONS(3030), - [sym_list_marker_decimal_parens] = ACTIONS(3030), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3030), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3030), - [sym_list_marker_lower_roman_parens] = ACTIONS(3030), - [sym_list_marker_upper_roman_parens] = ACTIONS(3030), - [sym__block_quote_begin] = ACTIONS(3030), - [sym__block_quote_continuation] = ACTIONS(3030), - [sym__thematic_break_dash] = ACTIONS(3030), - [sym__thematic_break_star] = ACTIONS(3030), - [sym__footnote_begin] = ACTIONS(3030), - [sym__verbatim_begin] = ACTIONS(3030), - }, - [462] = { - [ts_builtin_sym_end] = ACTIONS(3148), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_PIPE] = ACTIONS(3148), - [anon_sym_LBRACE] = ACTIONS(3150), - [sym__whitespace1] = ACTIONS(3148), - [anon_sym_BSLASH] = ACTIONS(3150), - [sym_quotation_marks] = ACTIONS(3148), - [sym_ellipsis] = ACTIONS(3148), - [sym_em_dash] = ACTIONS(3148), - [sym_en_dash] = ACTIONS(3150), - [sym_backslash_escape] = ACTIONS(3150), - [anon_sym_LT] = ACTIONS(3148), - [anon_sym_LBRACE_] = ACTIONS(3148), - [anon_sym__] = ACTIONS(3148), - [anon_sym_LBRACE_STAR] = ACTIONS(3148), - [anon_sym_STAR] = ACTIONS(3148), - [anon_sym_LBRACE_EQ] = ACTIONS(3148), - [anon_sym_LBRACE_PLUS] = ACTIONS(3148), - [anon_sym_LBRACE_DASH] = ACTIONS(3148), - [sym_symbol] = ACTIONS(3148), - [anon_sym_LBRACE_CARET] = ACTIONS(3148), - [anon_sym_CARET] = ACTIONS(3148), - [anon_sym_LBRACE_TILDE] = ACTIONS(3148), - [anon_sym_TILDE] = ACTIONS(3148), - [anon_sym_LBRACK_CARET] = ACTIONS(3148), - [anon_sym_BANG_LBRACK] = ACTIONS(3148), - [anon_sym_DOLLAR] = ACTIONS(3148), - [anon_sym_TODO] = ACTIONS(3148), - [anon_sym_WIP] = ACTIONS(3148), - [anon_sym_NOTE] = ACTIONS(3148), - [anon_sym_INFO] = ACTIONS(3148), - [anon_sym_XXX] = ACTIONS(3148), - [sym_fixme] = ACTIONS(3148), - [aux_sym__text_token1] = ACTIONS(3150), - [sym__newline] = ACTIONS(3148), - [sym__newline_inline] = ACTIONS(3148), - [sym__heading1_begin] = ACTIONS(3148), - [sym__heading2_begin] = ACTIONS(3148), - [sym__heading3_begin] = ACTIONS(3148), - [sym__heading4_begin] = ACTIONS(3148), - [sym__heading5_begin] = ACTIONS(3148), - [sym__heading6_begin] = ACTIONS(3148), - [sym__div_begin] = ACTIONS(3148), - [sym__code_block_begin] = ACTIONS(3148), - [sym_list_marker_dash] = ACTIONS(3148), - [sym_list_marker_star] = ACTIONS(3148), - [sym_list_marker_plus] = ACTIONS(3148), - [sym__list_marker_task_begin] = ACTIONS(3148), - [sym_list_marker_definition] = ACTIONS(3148), - [sym_list_marker_decimal_period] = ACTIONS(3148), - [sym_list_marker_lower_alpha_period] = ACTIONS(3148), - [sym_list_marker_upper_alpha_period] = ACTIONS(3148), - [sym_list_marker_lower_roman_period] = ACTIONS(3148), - [sym_list_marker_upper_roman_period] = ACTIONS(3148), - [sym_list_marker_decimal_paren] = ACTIONS(3148), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3148), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3148), - [sym_list_marker_lower_roman_paren] = ACTIONS(3148), - [sym_list_marker_upper_roman_paren] = ACTIONS(3148), - [sym_list_marker_decimal_parens] = ACTIONS(3148), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3148), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3148), - [sym_list_marker_lower_roman_parens] = ACTIONS(3148), - [sym_list_marker_upper_roman_parens] = ACTIONS(3148), - [sym__block_quote_begin] = ACTIONS(3148), - [sym__block_quote_continuation] = ACTIONS(3148), - [sym__thematic_break_dash] = ACTIONS(3148), - [sym__thematic_break_star] = ACTIONS(3148), - [sym__footnote_begin] = ACTIONS(3148), - [sym__verbatim_begin] = ACTIONS(3148), - }, - [463] = { - [ts_builtin_sym_end] = ACTIONS(2970), - [anon_sym_LBRACK] = ACTIONS(2968), - [anon_sym_PIPE] = ACTIONS(2970), - [anon_sym_LBRACE] = ACTIONS(2968), - [sym__whitespace1] = ACTIONS(2970), - [anon_sym_BSLASH] = ACTIONS(2968), - [sym_quotation_marks] = ACTIONS(2970), - [sym_ellipsis] = ACTIONS(2970), - [sym_em_dash] = ACTIONS(2970), - [sym_en_dash] = ACTIONS(2968), - [sym_backslash_escape] = ACTIONS(2968), - [anon_sym_LT] = ACTIONS(2970), - [anon_sym_LBRACE_] = ACTIONS(2970), - [anon_sym__] = ACTIONS(2970), - [anon_sym_LBRACE_STAR] = ACTIONS(2970), - [anon_sym_STAR] = ACTIONS(2970), - [anon_sym_LBRACE_EQ] = ACTIONS(2970), - [anon_sym_LBRACE_PLUS] = ACTIONS(2970), - [anon_sym_LBRACE_DASH] = ACTIONS(2970), - [sym_symbol] = ACTIONS(2970), - [anon_sym_LBRACE_CARET] = ACTIONS(2970), - [anon_sym_CARET] = ACTIONS(2970), - [anon_sym_LBRACE_TILDE] = ACTIONS(2970), - [anon_sym_TILDE] = ACTIONS(2970), - [anon_sym_LBRACK_CARET] = ACTIONS(2970), - [anon_sym_BANG_LBRACK] = ACTIONS(2970), - [anon_sym_DOLLAR] = ACTIONS(2970), - [anon_sym_TODO] = ACTIONS(2970), - [anon_sym_WIP] = ACTIONS(2970), - [anon_sym_NOTE] = ACTIONS(2970), - [anon_sym_INFO] = ACTIONS(2970), - [anon_sym_XXX] = ACTIONS(2970), - [sym_fixme] = ACTIONS(2970), - [aux_sym__text_token1] = ACTIONS(2968), - [sym__newline] = ACTIONS(2970), - [sym__newline_inline] = ACTIONS(2970), - [sym__heading1_begin] = ACTIONS(2970), - [sym__heading2_begin] = ACTIONS(2970), - [sym__heading3_begin] = ACTIONS(2970), - [sym__heading4_begin] = ACTIONS(2970), - [sym__heading5_begin] = ACTIONS(2970), - [sym__heading6_begin] = ACTIONS(2970), - [sym__div_begin] = ACTIONS(2970), - [sym__code_block_begin] = ACTIONS(2970), - [sym_list_marker_dash] = ACTIONS(2970), - [sym_list_marker_star] = ACTIONS(2970), - [sym_list_marker_plus] = ACTIONS(2970), - [sym__list_marker_task_begin] = ACTIONS(2970), - [sym_list_marker_definition] = ACTIONS(2970), - [sym_list_marker_decimal_period] = ACTIONS(2970), - [sym_list_marker_lower_alpha_period] = ACTIONS(2970), - [sym_list_marker_upper_alpha_period] = ACTIONS(2970), - [sym_list_marker_lower_roman_period] = ACTIONS(2970), - [sym_list_marker_upper_roman_period] = ACTIONS(2970), - [sym_list_marker_decimal_paren] = ACTIONS(2970), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2970), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2970), - [sym_list_marker_lower_roman_paren] = ACTIONS(2970), - [sym_list_marker_upper_roman_paren] = ACTIONS(2970), - [sym_list_marker_decimal_parens] = ACTIONS(2970), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2970), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2970), - [sym_list_marker_lower_roman_parens] = ACTIONS(2970), - [sym_list_marker_upper_roman_parens] = ACTIONS(2970), - [sym__block_quote_begin] = ACTIONS(2970), - [sym__block_quote_continuation] = ACTIONS(2970), - [sym__thematic_break_dash] = ACTIONS(2970), - [sym__thematic_break_star] = ACTIONS(2970), - [sym__footnote_begin] = ACTIONS(2970), - [sym__verbatim_begin] = ACTIONS(2970), - }, - [464] = { - [anon_sym_LBRACK] = ACTIONS(3146), - [anon_sym_PIPE] = ACTIONS(3144), - [anon_sym_LBRACE] = ACTIONS(3146), - [sym__whitespace1] = ACTIONS(3144), - [anon_sym_BSLASH] = ACTIONS(3146), - [sym_quotation_marks] = ACTIONS(3144), - [sym_ellipsis] = ACTIONS(3144), - [sym_em_dash] = ACTIONS(3144), - [sym_en_dash] = ACTIONS(3146), - [sym_backslash_escape] = ACTIONS(3146), - [anon_sym_LT] = ACTIONS(3144), - [anon_sym_LBRACE_] = ACTIONS(3144), - [anon_sym__] = ACTIONS(3144), - [anon_sym_LBRACE_STAR] = ACTIONS(3144), - [anon_sym_STAR] = ACTIONS(3144), - [anon_sym_LBRACE_EQ] = ACTIONS(3144), - [anon_sym_LBRACE_PLUS] = ACTIONS(3144), - [anon_sym_LBRACE_DASH] = ACTIONS(3144), - [sym_symbol] = ACTIONS(3144), - [anon_sym_LBRACE_CARET] = ACTIONS(3144), - [anon_sym_CARET] = ACTIONS(3144), - [anon_sym_LBRACE_TILDE] = ACTIONS(3144), - [anon_sym_TILDE] = ACTIONS(3144), - [anon_sym_LBRACK_CARET] = ACTIONS(3144), - [anon_sym_BANG_LBRACK] = ACTIONS(3144), - [anon_sym_DOLLAR] = ACTIONS(3144), - [anon_sym_TODO] = ACTIONS(3144), - [anon_sym_WIP] = ACTIONS(3144), - [anon_sym_NOTE] = ACTIONS(3144), - [anon_sym_INFO] = ACTIONS(3144), - [anon_sym_XXX] = ACTIONS(3144), - [sym_fixme] = ACTIONS(3144), - [aux_sym__text_token1] = ACTIONS(3146), - [sym__block_close] = ACTIONS(3144), - [sym__newline] = ACTIONS(3144), - [sym__newline_inline] = ACTIONS(3144), - [sym__heading1_begin] = ACTIONS(3144), - [sym__heading2_begin] = ACTIONS(3144), - [sym__heading3_begin] = ACTIONS(3144), - [sym__heading4_begin] = ACTIONS(3144), - [sym__heading5_begin] = ACTIONS(3144), - [sym__heading6_begin] = ACTIONS(3144), - [sym__div_begin] = ACTIONS(3144), - [sym__code_block_begin] = ACTIONS(3144), - [sym_list_marker_dash] = ACTIONS(3144), - [sym_list_marker_star] = ACTIONS(3144), - [sym_list_marker_plus] = ACTIONS(3144), - [sym__list_marker_task_begin] = ACTIONS(3144), - [sym_list_marker_definition] = ACTIONS(3144), - [sym_list_marker_decimal_period] = ACTIONS(3144), - [sym_list_marker_lower_alpha_period] = ACTIONS(3144), - [sym_list_marker_upper_alpha_period] = ACTIONS(3144), - [sym_list_marker_lower_roman_period] = ACTIONS(3144), - [sym_list_marker_upper_roman_period] = ACTIONS(3144), - [sym_list_marker_decimal_paren] = ACTIONS(3144), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3144), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3144), - [sym_list_marker_lower_roman_paren] = ACTIONS(3144), - [sym_list_marker_upper_roman_paren] = ACTIONS(3144), - [sym_list_marker_decimal_parens] = ACTIONS(3144), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3144), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3144), - [sym_list_marker_lower_roman_parens] = ACTIONS(3144), - [sym_list_marker_upper_roman_parens] = ACTIONS(3144), - [sym__block_quote_begin] = ACTIONS(3144), - [sym__block_quote_continuation] = ACTIONS(3144), - [sym__thematic_break_dash] = ACTIONS(3144), - [sym__thematic_break_star] = ACTIONS(3144), - [sym__footnote_begin] = ACTIONS(3144), - [sym__verbatim_begin] = ACTIONS(3144), - }, - [465] = { - [ts_builtin_sym_end] = ACTIONS(2986), - [anon_sym_LBRACK] = ACTIONS(2984), - [anon_sym_PIPE] = ACTIONS(2986), - [anon_sym_LBRACE] = ACTIONS(2984), - [sym__whitespace1] = ACTIONS(2986), - [anon_sym_BSLASH] = ACTIONS(2984), - [sym_quotation_marks] = ACTIONS(2986), - [sym_ellipsis] = ACTIONS(2986), - [sym_em_dash] = ACTIONS(2986), - [sym_en_dash] = ACTIONS(2984), - [sym_backslash_escape] = ACTIONS(2984), - [anon_sym_LT] = ACTIONS(2986), - [anon_sym_LBRACE_] = ACTIONS(2986), - [anon_sym__] = ACTIONS(2986), - [anon_sym_LBRACE_STAR] = ACTIONS(2986), - [anon_sym_STAR] = ACTIONS(2986), - [anon_sym_LBRACE_EQ] = ACTIONS(2986), - [anon_sym_LBRACE_PLUS] = ACTIONS(2986), - [anon_sym_LBRACE_DASH] = ACTIONS(2986), - [sym_symbol] = ACTIONS(2986), - [anon_sym_LBRACE_CARET] = ACTIONS(2986), - [anon_sym_CARET] = ACTIONS(2986), - [anon_sym_LBRACE_TILDE] = ACTIONS(2986), - [anon_sym_TILDE] = ACTIONS(2986), - [anon_sym_LBRACK_CARET] = ACTIONS(2986), - [anon_sym_BANG_LBRACK] = ACTIONS(2986), - [anon_sym_DOLLAR] = ACTIONS(2986), - [anon_sym_TODO] = ACTIONS(2986), - [anon_sym_WIP] = ACTIONS(2986), - [anon_sym_NOTE] = ACTIONS(2986), - [anon_sym_INFO] = ACTIONS(2986), - [anon_sym_XXX] = ACTIONS(2986), - [sym_fixme] = ACTIONS(2986), - [aux_sym__text_token1] = ACTIONS(2984), - [sym__newline] = ACTIONS(2986), - [sym__newline_inline] = ACTIONS(2986), - [sym__heading1_begin] = ACTIONS(2986), - [sym__heading2_begin] = ACTIONS(2986), - [sym__heading3_begin] = ACTIONS(2986), - [sym__heading4_begin] = ACTIONS(2986), - [sym__heading5_begin] = ACTIONS(2986), - [sym__heading6_begin] = ACTIONS(2986), - [sym__div_begin] = ACTIONS(2986), - [sym__code_block_begin] = ACTIONS(2986), - [sym_list_marker_dash] = ACTIONS(2986), - [sym_list_marker_star] = ACTIONS(2986), - [sym_list_marker_plus] = ACTIONS(2986), - [sym__list_marker_task_begin] = ACTIONS(2986), - [sym_list_marker_definition] = ACTIONS(2986), - [sym_list_marker_decimal_period] = ACTIONS(2986), - [sym_list_marker_lower_alpha_period] = ACTIONS(2986), - [sym_list_marker_upper_alpha_period] = ACTIONS(2986), - [sym_list_marker_lower_roman_period] = ACTIONS(2986), - [sym_list_marker_upper_roman_period] = ACTIONS(2986), - [sym_list_marker_decimal_paren] = ACTIONS(2986), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2986), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2986), - [sym_list_marker_lower_roman_paren] = ACTIONS(2986), - [sym_list_marker_upper_roman_paren] = ACTIONS(2986), - [sym_list_marker_decimal_parens] = ACTIONS(2986), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2986), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2986), - [sym_list_marker_lower_roman_parens] = ACTIONS(2986), - [sym_list_marker_upper_roman_parens] = ACTIONS(2986), - [sym__block_quote_begin] = ACTIONS(2986), - [sym__block_quote_continuation] = ACTIONS(2986), - [sym__thematic_break_dash] = ACTIONS(2986), - [sym__thematic_break_star] = ACTIONS(2986), - [sym__footnote_begin] = ACTIONS(2986), - [sym__verbatim_begin] = ACTIONS(2986), - }, - [466] = { - [anon_sym_LBRACK] = ACTIONS(3020), - [anon_sym_PIPE] = ACTIONS(3022), - [anon_sym_LBRACE] = ACTIONS(3020), - [sym__whitespace1] = ACTIONS(3022), - [anon_sym_BSLASH] = ACTIONS(3020), - [sym_quotation_marks] = ACTIONS(3022), - [sym_ellipsis] = ACTIONS(3022), - [sym_em_dash] = ACTIONS(3022), - [sym_en_dash] = ACTIONS(3020), - [sym_backslash_escape] = ACTIONS(3020), - [anon_sym_LT] = ACTIONS(3022), - [anon_sym_LBRACE_] = ACTIONS(3022), - [anon_sym__] = ACTIONS(3022), - [anon_sym_LBRACE_STAR] = ACTIONS(3022), - [anon_sym_STAR] = ACTIONS(3022), - [anon_sym_LBRACE_EQ] = ACTIONS(3022), - [anon_sym_LBRACE_PLUS] = ACTIONS(3022), - [anon_sym_LBRACE_DASH] = ACTIONS(3022), - [sym_symbol] = ACTIONS(3022), - [anon_sym_LBRACE_CARET] = ACTIONS(3022), - [anon_sym_CARET] = ACTIONS(3022), - [anon_sym_LBRACE_TILDE] = ACTIONS(3022), - [anon_sym_TILDE] = ACTIONS(3022), - [anon_sym_LBRACK_CARET] = ACTIONS(3022), - [anon_sym_BANG_LBRACK] = ACTIONS(3022), - [anon_sym_DOLLAR] = ACTIONS(3022), - [anon_sym_TODO] = ACTIONS(3022), - [anon_sym_WIP] = ACTIONS(3022), - [anon_sym_NOTE] = ACTIONS(3022), - [anon_sym_INFO] = ACTIONS(3022), - [anon_sym_XXX] = ACTIONS(3022), - [sym_fixme] = ACTIONS(3022), - [aux_sym__text_token1] = ACTIONS(3020), - [sym__block_close] = ACTIONS(3022), - [sym__newline] = ACTIONS(3022), - [sym__newline_inline] = ACTIONS(3022), - [sym__heading1_begin] = ACTIONS(3022), - [sym__heading2_begin] = ACTIONS(3022), - [sym__heading3_begin] = ACTIONS(3022), - [sym__heading4_begin] = ACTIONS(3022), - [sym__heading5_begin] = ACTIONS(3022), - [sym__heading6_begin] = ACTIONS(3022), - [sym__div_begin] = ACTIONS(3022), - [sym__code_block_begin] = ACTIONS(3022), - [sym_list_marker_dash] = ACTIONS(3022), - [sym_list_marker_star] = ACTIONS(3022), - [sym_list_marker_plus] = ACTIONS(3022), - [sym__list_marker_task_begin] = ACTIONS(3022), - [sym_list_marker_definition] = ACTIONS(3022), - [sym_list_marker_decimal_period] = ACTIONS(3022), - [sym_list_marker_lower_alpha_period] = ACTIONS(3022), - [sym_list_marker_upper_alpha_period] = ACTIONS(3022), - [sym_list_marker_lower_roman_period] = ACTIONS(3022), - [sym_list_marker_upper_roman_period] = ACTIONS(3022), - [sym_list_marker_decimal_paren] = ACTIONS(3022), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3022), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3022), - [sym_list_marker_lower_roman_paren] = ACTIONS(3022), - [sym_list_marker_upper_roman_paren] = ACTIONS(3022), - [sym_list_marker_decimal_parens] = ACTIONS(3022), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3022), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3022), - [sym_list_marker_lower_roman_parens] = ACTIONS(3022), - [sym_list_marker_upper_roman_parens] = ACTIONS(3022), - [sym__block_quote_begin] = ACTIONS(3022), - [sym__block_quote_continuation] = ACTIONS(3022), - [sym__thematic_break_dash] = ACTIONS(3022), - [sym__thematic_break_star] = ACTIONS(3022), - [sym__footnote_begin] = ACTIONS(3022), - [sym__verbatim_begin] = ACTIONS(3022), - }, - [467] = { - [ts_builtin_sym_end] = ACTIONS(2998), - [anon_sym_LBRACK] = ACTIONS(2996), - [anon_sym_PIPE] = ACTIONS(2998), - [anon_sym_LBRACE] = ACTIONS(2996), - [sym__whitespace1] = ACTIONS(2998), - [anon_sym_BSLASH] = ACTIONS(2996), - [sym_quotation_marks] = ACTIONS(2998), - [sym_ellipsis] = ACTIONS(2998), - [sym_em_dash] = ACTIONS(2998), - [sym_en_dash] = ACTIONS(2996), - [sym_backslash_escape] = ACTIONS(2996), - [anon_sym_LT] = ACTIONS(2998), - [anon_sym_LBRACE_] = ACTIONS(2998), - [anon_sym__] = ACTIONS(2998), - [anon_sym_LBRACE_STAR] = ACTIONS(2998), - [anon_sym_STAR] = ACTIONS(2998), - [anon_sym_LBRACE_EQ] = ACTIONS(2998), - [anon_sym_LBRACE_PLUS] = ACTIONS(2998), - [anon_sym_LBRACE_DASH] = ACTIONS(2998), - [sym_symbol] = ACTIONS(2998), - [anon_sym_LBRACE_CARET] = ACTIONS(2998), - [anon_sym_CARET] = ACTIONS(2998), - [anon_sym_LBRACE_TILDE] = ACTIONS(2998), - [anon_sym_TILDE] = ACTIONS(2998), - [anon_sym_LBRACK_CARET] = ACTIONS(2998), - [anon_sym_BANG_LBRACK] = ACTIONS(2998), - [anon_sym_DOLLAR] = ACTIONS(2998), - [anon_sym_TODO] = ACTIONS(2998), - [anon_sym_WIP] = ACTIONS(2998), - [anon_sym_NOTE] = ACTIONS(2998), - [anon_sym_INFO] = ACTIONS(2998), - [anon_sym_XXX] = ACTIONS(2998), - [sym_fixme] = ACTIONS(2998), - [aux_sym__text_token1] = ACTIONS(2996), - [sym__newline] = ACTIONS(2998), - [sym__newline_inline] = ACTIONS(2998), - [sym__heading1_begin] = ACTIONS(2998), - [sym__heading2_begin] = ACTIONS(2998), - [sym__heading3_begin] = ACTIONS(2998), - [sym__heading4_begin] = ACTIONS(2998), - [sym__heading5_begin] = ACTIONS(2998), - [sym__heading6_begin] = ACTIONS(2998), - [sym__div_begin] = ACTIONS(2998), - [sym__code_block_begin] = ACTIONS(2998), - [sym_list_marker_dash] = ACTIONS(2998), - [sym_list_marker_star] = ACTIONS(2998), - [sym_list_marker_plus] = ACTIONS(2998), - [sym__list_marker_task_begin] = ACTIONS(2998), - [sym_list_marker_definition] = ACTIONS(2998), - [sym_list_marker_decimal_period] = ACTIONS(2998), - [sym_list_marker_lower_alpha_period] = ACTIONS(2998), - [sym_list_marker_upper_alpha_period] = ACTIONS(2998), - [sym_list_marker_lower_roman_period] = ACTIONS(2998), - [sym_list_marker_upper_roman_period] = ACTIONS(2998), - [sym_list_marker_decimal_paren] = ACTIONS(2998), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2998), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2998), - [sym_list_marker_lower_roman_paren] = ACTIONS(2998), - [sym_list_marker_upper_roman_paren] = ACTIONS(2998), - [sym_list_marker_decimal_parens] = ACTIONS(2998), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2998), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2998), - [sym_list_marker_lower_roman_parens] = ACTIONS(2998), - [sym_list_marker_upper_roman_parens] = ACTIONS(2998), - [sym__block_quote_begin] = ACTIONS(2998), - [sym__block_quote_continuation] = ACTIONS(2998), - [sym__thematic_break_dash] = ACTIONS(2998), - [sym__thematic_break_star] = ACTIONS(2998), - [sym__footnote_begin] = ACTIONS(2998), - [sym__verbatim_begin] = ACTIONS(2998), - }, - [468] = { - [ts_builtin_sym_end] = ACTIONS(3002), - [anon_sym_LBRACK] = ACTIONS(3000), - [anon_sym_PIPE] = ACTIONS(3002), - [anon_sym_LBRACE] = ACTIONS(3000), - [sym__whitespace1] = ACTIONS(3002), - [anon_sym_BSLASH] = ACTIONS(3000), - [sym_quotation_marks] = ACTIONS(3002), - [sym_ellipsis] = ACTIONS(3002), - [sym_em_dash] = ACTIONS(3002), - [sym_en_dash] = ACTIONS(3000), - [sym_backslash_escape] = ACTIONS(3000), - [anon_sym_LT] = ACTIONS(3002), - [anon_sym_LBRACE_] = ACTIONS(3002), - [anon_sym__] = ACTIONS(3002), - [anon_sym_LBRACE_STAR] = ACTIONS(3002), - [anon_sym_STAR] = ACTIONS(3002), - [anon_sym_LBRACE_EQ] = ACTIONS(3002), - [anon_sym_LBRACE_PLUS] = ACTIONS(3002), - [anon_sym_LBRACE_DASH] = ACTIONS(3002), - [sym_symbol] = ACTIONS(3002), - [anon_sym_LBRACE_CARET] = ACTIONS(3002), - [anon_sym_CARET] = ACTIONS(3002), - [anon_sym_LBRACE_TILDE] = ACTIONS(3002), - [anon_sym_TILDE] = ACTIONS(3002), - [anon_sym_LBRACK_CARET] = ACTIONS(3002), - [anon_sym_BANG_LBRACK] = ACTIONS(3002), - [anon_sym_DOLLAR] = ACTIONS(3002), - [anon_sym_TODO] = ACTIONS(3002), - [anon_sym_WIP] = ACTIONS(3002), - [anon_sym_NOTE] = ACTIONS(3002), - [anon_sym_INFO] = ACTIONS(3002), - [anon_sym_XXX] = ACTIONS(3002), - [sym_fixme] = ACTIONS(3002), - [aux_sym__text_token1] = ACTIONS(3000), - [sym__newline] = ACTIONS(3002), - [sym__newline_inline] = ACTIONS(3002), - [sym__heading1_begin] = ACTIONS(3002), - [sym__heading2_begin] = ACTIONS(3002), - [sym__heading3_begin] = ACTIONS(3002), - [sym__heading4_begin] = ACTIONS(3002), - [sym__heading5_begin] = ACTIONS(3002), - [sym__heading6_begin] = ACTIONS(3002), - [sym__div_begin] = ACTIONS(3002), - [sym__code_block_begin] = ACTIONS(3002), - [sym_list_marker_dash] = ACTIONS(3002), - [sym_list_marker_star] = ACTIONS(3002), - [sym_list_marker_plus] = ACTIONS(3002), - [sym__list_marker_task_begin] = ACTIONS(3002), - [sym_list_marker_definition] = ACTIONS(3002), - [sym_list_marker_decimal_period] = ACTIONS(3002), - [sym_list_marker_lower_alpha_period] = ACTIONS(3002), - [sym_list_marker_upper_alpha_period] = ACTIONS(3002), - [sym_list_marker_lower_roman_period] = ACTIONS(3002), - [sym_list_marker_upper_roman_period] = ACTIONS(3002), - [sym_list_marker_decimal_paren] = ACTIONS(3002), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3002), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3002), - [sym_list_marker_lower_roman_paren] = ACTIONS(3002), - [sym_list_marker_upper_roman_paren] = ACTIONS(3002), - [sym_list_marker_decimal_parens] = ACTIONS(3002), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3002), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3002), - [sym_list_marker_lower_roman_parens] = ACTIONS(3002), - [sym_list_marker_upper_roman_parens] = ACTIONS(3002), - [sym__block_quote_begin] = ACTIONS(3002), - [sym__block_quote_continuation] = ACTIONS(3002), - [sym__thematic_break_dash] = ACTIONS(3002), - [sym__thematic_break_star] = ACTIONS(3002), - [sym__footnote_begin] = ACTIONS(3002), - [sym__verbatim_begin] = ACTIONS(3002), - }, - [469] = { - [ts_builtin_sym_end] = ACTIONS(3006), - [anon_sym_LBRACK] = ACTIONS(3004), - [anon_sym_PIPE] = ACTIONS(3006), - [anon_sym_LBRACE] = ACTIONS(3004), - [sym__whitespace1] = ACTIONS(3006), - [anon_sym_BSLASH] = ACTIONS(3004), - [sym_quotation_marks] = ACTIONS(3006), - [sym_ellipsis] = ACTIONS(3006), - [sym_em_dash] = ACTIONS(3006), - [sym_en_dash] = ACTIONS(3004), - [sym_backslash_escape] = ACTIONS(3004), - [anon_sym_LT] = ACTIONS(3006), - [anon_sym_LBRACE_] = ACTIONS(3006), - [anon_sym__] = ACTIONS(3006), - [anon_sym_LBRACE_STAR] = ACTIONS(3006), - [anon_sym_STAR] = ACTIONS(3006), - [anon_sym_LBRACE_EQ] = ACTIONS(3006), - [anon_sym_LBRACE_PLUS] = ACTIONS(3006), - [anon_sym_LBRACE_DASH] = ACTIONS(3006), - [sym_symbol] = ACTIONS(3006), - [anon_sym_LBRACE_CARET] = ACTIONS(3006), - [anon_sym_CARET] = ACTIONS(3006), - [anon_sym_LBRACE_TILDE] = ACTIONS(3006), - [anon_sym_TILDE] = ACTIONS(3006), - [anon_sym_LBRACK_CARET] = ACTIONS(3006), - [anon_sym_BANG_LBRACK] = ACTIONS(3006), - [anon_sym_DOLLAR] = ACTIONS(3006), - [anon_sym_TODO] = ACTIONS(3006), - [anon_sym_WIP] = ACTIONS(3006), - [anon_sym_NOTE] = ACTIONS(3006), - [anon_sym_INFO] = ACTIONS(3006), - [anon_sym_XXX] = ACTIONS(3006), - [sym_fixme] = ACTIONS(3006), - [aux_sym__text_token1] = ACTIONS(3004), - [sym__newline] = ACTIONS(3006), - [sym__newline_inline] = ACTIONS(3006), - [sym__heading1_begin] = ACTIONS(3006), - [sym__heading2_begin] = ACTIONS(3006), - [sym__heading3_begin] = ACTIONS(3006), - [sym__heading4_begin] = ACTIONS(3006), - [sym__heading5_begin] = ACTIONS(3006), - [sym__heading6_begin] = ACTIONS(3006), - [sym__div_begin] = ACTIONS(3006), - [sym__code_block_begin] = ACTIONS(3006), - [sym_list_marker_dash] = ACTIONS(3006), - [sym_list_marker_star] = ACTIONS(3006), - [sym_list_marker_plus] = ACTIONS(3006), - [sym__list_marker_task_begin] = ACTIONS(3006), - [sym_list_marker_definition] = ACTIONS(3006), - [sym_list_marker_decimal_period] = ACTIONS(3006), - [sym_list_marker_lower_alpha_period] = ACTIONS(3006), - [sym_list_marker_upper_alpha_period] = ACTIONS(3006), - [sym_list_marker_lower_roman_period] = ACTIONS(3006), - [sym_list_marker_upper_roman_period] = ACTIONS(3006), - [sym_list_marker_decimal_paren] = ACTIONS(3006), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3006), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3006), - [sym_list_marker_lower_roman_paren] = ACTIONS(3006), - [sym_list_marker_upper_roman_paren] = ACTIONS(3006), - [sym_list_marker_decimal_parens] = ACTIONS(3006), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3006), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3006), - [sym_list_marker_lower_roman_parens] = ACTIONS(3006), - [sym_list_marker_upper_roman_parens] = ACTIONS(3006), - [sym__block_quote_begin] = ACTIONS(3006), - [sym__block_quote_continuation] = ACTIONS(3006), - [sym__thematic_break_dash] = ACTIONS(3006), - [sym__thematic_break_star] = ACTIONS(3006), - [sym__footnote_begin] = ACTIONS(3006), - [sym__verbatim_begin] = ACTIONS(3006), - }, - [470] = { - [ts_builtin_sym_end] = ACTIONS(3010), - [anon_sym_LBRACK] = ACTIONS(3008), - [anon_sym_PIPE] = ACTIONS(3010), - [anon_sym_LBRACE] = ACTIONS(3008), - [sym__whitespace1] = ACTIONS(3010), - [anon_sym_BSLASH] = ACTIONS(3008), - [sym_quotation_marks] = ACTIONS(3010), - [sym_ellipsis] = ACTIONS(3010), - [sym_em_dash] = ACTIONS(3010), - [sym_en_dash] = ACTIONS(3008), - [sym_backslash_escape] = ACTIONS(3008), - [anon_sym_LT] = ACTIONS(3010), - [anon_sym_LBRACE_] = ACTIONS(3010), - [anon_sym__] = ACTIONS(3010), - [anon_sym_LBRACE_STAR] = ACTIONS(3010), - [anon_sym_STAR] = ACTIONS(3010), - [anon_sym_LBRACE_EQ] = ACTIONS(3010), - [anon_sym_LBRACE_PLUS] = ACTIONS(3010), - [anon_sym_LBRACE_DASH] = ACTIONS(3010), - [sym_symbol] = ACTIONS(3010), - [anon_sym_LBRACE_CARET] = ACTIONS(3010), - [anon_sym_CARET] = ACTIONS(3010), - [anon_sym_LBRACE_TILDE] = ACTIONS(3010), - [anon_sym_TILDE] = ACTIONS(3010), - [anon_sym_LBRACK_CARET] = ACTIONS(3010), - [anon_sym_BANG_LBRACK] = ACTIONS(3010), - [anon_sym_DOLLAR] = ACTIONS(3010), - [anon_sym_TODO] = ACTIONS(3010), - [anon_sym_WIP] = ACTIONS(3010), - [anon_sym_NOTE] = ACTIONS(3010), - [anon_sym_INFO] = ACTIONS(3010), - [anon_sym_XXX] = ACTIONS(3010), - [sym_fixme] = ACTIONS(3010), - [aux_sym__text_token1] = ACTIONS(3008), - [sym__newline] = ACTIONS(3010), - [sym__newline_inline] = ACTIONS(3010), - [sym__heading1_begin] = ACTIONS(3010), - [sym__heading2_begin] = ACTIONS(3010), - [sym__heading3_begin] = ACTIONS(3010), - [sym__heading4_begin] = ACTIONS(3010), - [sym__heading5_begin] = ACTIONS(3010), - [sym__heading6_begin] = ACTIONS(3010), - [sym__div_begin] = ACTIONS(3010), - [sym__code_block_begin] = ACTIONS(3010), - [sym_list_marker_dash] = ACTIONS(3010), - [sym_list_marker_star] = ACTIONS(3010), - [sym_list_marker_plus] = ACTIONS(3010), - [sym__list_marker_task_begin] = ACTIONS(3010), - [sym_list_marker_definition] = ACTIONS(3010), - [sym_list_marker_decimal_period] = ACTIONS(3010), - [sym_list_marker_lower_alpha_period] = ACTIONS(3010), - [sym_list_marker_upper_alpha_period] = ACTIONS(3010), - [sym_list_marker_lower_roman_period] = ACTIONS(3010), - [sym_list_marker_upper_roman_period] = ACTIONS(3010), - [sym_list_marker_decimal_paren] = ACTIONS(3010), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3010), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3010), - [sym_list_marker_lower_roman_paren] = ACTIONS(3010), - [sym_list_marker_upper_roman_paren] = ACTIONS(3010), - [sym_list_marker_decimal_parens] = ACTIONS(3010), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3010), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3010), - [sym_list_marker_lower_roman_parens] = ACTIONS(3010), - [sym_list_marker_upper_roman_parens] = ACTIONS(3010), - [sym__block_quote_begin] = ACTIONS(3010), - [sym__block_quote_continuation] = ACTIONS(3010), - [sym__thematic_break_dash] = ACTIONS(3010), - [sym__thematic_break_star] = ACTIONS(3010), - [sym__footnote_begin] = ACTIONS(3010), - [sym__verbatim_begin] = ACTIONS(3010), - }, - [471] = { - [anon_sym_LBRACK] = ACTIONS(3082), - [anon_sym_PIPE] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(3082), - [sym__whitespace1] = ACTIONS(3080), - [anon_sym_BSLASH] = ACTIONS(3082), - [sym_quotation_marks] = ACTIONS(3080), - [sym_ellipsis] = ACTIONS(3080), - [sym_em_dash] = ACTIONS(3080), - [sym_en_dash] = ACTIONS(3082), - [sym_backslash_escape] = ACTIONS(3082), - [anon_sym_LT] = ACTIONS(3080), - [anon_sym_LBRACE_] = ACTIONS(3080), - [anon_sym__] = ACTIONS(3080), - [anon_sym_LBRACE_STAR] = ACTIONS(3080), - [anon_sym_STAR] = ACTIONS(3080), - [anon_sym_LBRACE_EQ] = ACTIONS(3080), - [anon_sym_LBRACE_PLUS] = ACTIONS(3080), - [anon_sym_LBRACE_DASH] = ACTIONS(3080), - [sym_symbol] = ACTIONS(3080), - [anon_sym_LBRACE_CARET] = ACTIONS(3080), - [anon_sym_CARET] = ACTIONS(3080), - [anon_sym_LBRACE_TILDE] = ACTIONS(3080), - [anon_sym_TILDE] = ACTIONS(3080), - [anon_sym_LBRACK_CARET] = ACTIONS(3080), - [anon_sym_BANG_LBRACK] = ACTIONS(3080), - [anon_sym_DOLLAR] = ACTIONS(3080), - [anon_sym_TODO] = ACTIONS(3080), - [anon_sym_WIP] = ACTIONS(3080), - [anon_sym_NOTE] = ACTIONS(3080), - [anon_sym_INFO] = ACTIONS(3080), - [anon_sym_XXX] = ACTIONS(3080), - [sym_fixme] = ACTIONS(3080), - [aux_sym__text_token1] = ACTIONS(3082), - [sym__newline] = ACTIONS(3080), - [sym__newline_inline] = ACTIONS(3080), - [sym__heading1_begin] = ACTIONS(3080), - [sym__heading2_begin] = ACTIONS(3080), - [sym__heading3_begin] = ACTIONS(3080), - [sym__heading4_begin] = ACTIONS(3080), - [sym__heading5_begin] = ACTIONS(3080), - [sym__heading6_begin] = ACTIONS(3080), - [sym__div_begin] = ACTIONS(3080), - [sym__code_block_begin] = ACTIONS(3080), - [sym_list_marker_dash] = ACTIONS(3080), - [sym_list_marker_star] = ACTIONS(3080), - [sym_list_marker_plus] = ACTIONS(3080), - [sym__list_marker_task_begin] = ACTIONS(3080), - [sym_list_marker_definition] = ACTIONS(3080), - [sym_list_marker_decimal_period] = ACTIONS(3080), - [sym_list_marker_lower_alpha_period] = ACTIONS(3080), - [sym_list_marker_upper_alpha_period] = ACTIONS(3080), - [sym_list_marker_lower_roman_period] = ACTIONS(3080), - [sym_list_marker_upper_roman_period] = ACTIONS(3080), - [sym_list_marker_decimal_paren] = ACTIONS(3080), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3080), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3080), - [sym_list_marker_lower_roman_paren] = ACTIONS(3080), - [sym_list_marker_upper_roman_paren] = ACTIONS(3080), - [sym_list_marker_decimal_parens] = ACTIONS(3080), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3080), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3080), - [sym_list_marker_lower_roman_parens] = ACTIONS(3080), - [sym_list_marker_upper_roman_parens] = ACTIONS(3080), - [sym__block_quote_begin] = ACTIONS(3080), - [sym__block_quote_continuation] = ACTIONS(3080), - [sym__thematic_break_dash] = ACTIONS(3080), - [sym__thematic_break_star] = ACTIONS(3080), - [sym__footnote_begin] = ACTIONS(3080), - [sym__footnote_end] = ACTIONS(3080), - [sym__verbatim_begin] = ACTIONS(3080), - }, - [472] = { - [anon_sym_LBRACK] = ACTIONS(3106), - [anon_sym_PIPE] = ACTIONS(3104), - [anon_sym_LBRACE] = ACTIONS(3106), - [sym__whitespace1] = ACTIONS(3104), - [anon_sym_BSLASH] = ACTIONS(3106), - [sym_quotation_marks] = ACTIONS(3104), - [sym_ellipsis] = ACTIONS(3104), - [sym_em_dash] = ACTIONS(3104), - [sym_en_dash] = ACTIONS(3106), - [sym_backslash_escape] = ACTIONS(3106), - [anon_sym_LT] = ACTIONS(3104), - [anon_sym_LBRACE_] = ACTIONS(3104), - [anon_sym__] = ACTIONS(3104), - [anon_sym_LBRACE_STAR] = ACTIONS(3104), - [anon_sym_STAR] = ACTIONS(3104), - [anon_sym_LBRACE_EQ] = ACTIONS(3104), - [anon_sym_LBRACE_PLUS] = ACTIONS(3104), - [anon_sym_LBRACE_DASH] = ACTIONS(3104), - [sym_symbol] = ACTIONS(3104), - [anon_sym_LBRACE_CARET] = ACTIONS(3104), - [anon_sym_CARET] = ACTIONS(3104), - [anon_sym_LBRACE_TILDE] = ACTIONS(3104), - [anon_sym_TILDE] = ACTIONS(3104), - [anon_sym_LBRACK_CARET] = ACTIONS(3104), - [anon_sym_BANG_LBRACK] = ACTIONS(3104), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_TODO] = ACTIONS(3104), - [anon_sym_WIP] = ACTIONS(3104), - [anon_sym_NOTE] = ACTIONS(3104), - [anon_sym_INFO] = ACTIONS(3104), - [anon_sym_XXX] = ACTIONS(3104), - [sym_fixme] = ACTIONS(3104), - [aux_sym__text_token1] = ACTIONS(3106), - [sym__newline] = ACTIONS(3104), - [sym__newline_inline] = ACTIONS(3104), - [sym__heading1_begin] = ACTIONS(3104), - [sym__heading2_begin] = ACTIONS(3104), - [sym__heading3_begin] = ACTIONS(3104), - [sym__heading4_begin] = ACTIONS(3104), - [sym__heading5_begin] = ACTIONS(3104), - [sym__heading6_begin] = ACTIONS(3104), - [sym__div_begin] = ACTIONS(3104), - [sym__code_block_begin] = ACTIONS(3104), - [sym_list_marker_dash] = ACTIONS(3104), - [sym_list_marker_star] = ACTIONS(3104), - [sym_list_marker_plus] = ACTIONS(3104), - [sym__list_marker_task_begin] = ACTIONS(3104), - [sym_list_marker_definition] = ACTIONS(3104), - [sym_list_marker_decimal_period] = ACTIONS(3104), - [sym_list_marker_lower_alpha_period] = ACTIONS(3104), - [sym_list_marker_upper_alpha_period] = ACTIONS(3104), - [sym_list_marker_lower_roman_period] = ACTIONS(3104), - [sym_list_marker_upper_roman_period] = ACTIONS(3104), - [sym_list_marker_decimal_paren] = ACTIONS(3104), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3104), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3104), - [sym_list_marker_lower_roman_paren] = ACTIONS(3104), - [sym_list_marker_upper_roman_paren] = ACTIONS(3104), - [sym_list_marker_decimal_parens] = ACTIONS(3104), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3104), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3104), - [sym_list_marker_lower_roman_parens] = ACTIONS(3104), - [sym_list_marker_upper_roman_parens] = ACTIONS(3104), - [sym__block_quote_begin] = ACTIONS(3104), - [sym__block_quote_continuation] = ACTIONS(3104), - [sym__thematic_break_dash] = ACTIONS(3104), - [sym__thematic_break_star] = ACTIONS(3104), - [sym__footnote_begin] = ACTIONS(3104), - [sym__footnote_end] = ACTIONS(3104), - [sym__verbatim_begin] = ACTIONS(3104), - }, - [473] = { - [anon_sym_LBRACK] = ACTIONS(3114), - [anon_sym_PIPE] = ACTIONS(3112), - [anon_sym_LBRACE] = ACTIONS(3114), - [sym__whitespace1] = ACTIONS(3112), - [anon_sym_BSLASH] = ACTIONS(3114), - [sym_quotation_marks] = ACTIONS(3112), - [sym_ellipsis] = ACTIONS(3112), - [sym_em_dash] = ACTIONS(3112), - [sym_en_dash] = ACTIONS(3114), - [sym_backslash_escape] = ACTIONS(3114), - [anon_sym_LT] = ACTIONS(3112), - [anon_sym_LBRACE_] = ACTIONS(3112), - [anon_sym__] = ACTIONS(3112), - [anon_sym_LBRACE_STAR] = ACTIONS(3112), - [anon_sym_STAR] = ACTIONS(3112), - [anon_sym_LBRACE_EQ] = ACTIONS(3112), - [anon_sym_LBRACE_PLUS] = ACTIONS(3112), - [anon_sym_LBRACE_DASH] = ACTIONS(3112), - [sym_symbol] = ACTIONS(3112), - [anon_sym_LBRACE_CARET] = ACTIONS(3112), - [anon_sym_CARET] = ACTIONS(3112), - [anon_sym_LBRACE_TILDE] = ACTIONS(3112), - [anon_sym_TILDE] = ACTIONS(3112), - [anon_sym_LBRACK_CARET] = ACTIONS(3112), - [anon_sym_BANG_LBRACK] = ACTIONS(3112), - [anon_sym_DOLLAR] = ACTIONS(3112), - [anon_sym_TODO] = ACTIONS(3112), - [anon_sym_WIP] = ACTIONS(3112), - [anon_sym_NOTE] = ACTIONS(3112), - [anon_sym_INFO] = ACTIONS(3112), - [anon_sym_XXX] = ACTIONS(3112), - [sym_fixme] = ACTIONS(3112), - [aux_sym__text_token1] = ACTIONS(3114), - [sym__newline] = ACTIONS(3112), - [sym__newline_inline] = ACTIONS(3112), - [sym__heading1_begin] = ACTIONS(3112), - [sym__heading2_begin] = ACTIONS(3112), - [sym__heading3_begin] = ACTIONS(3112), - [sym__heading4_begin] = ACTIONS(3112), - [sym__heading5_begin] = ACTIONS(3112), - [sym__heading6_begin] = ACTIONS(3112), - [sym__div_begin] = ACTIONS(3112), - [sym__code_block_begin] = ACTIONS(3112), - [sym_list_marker_dash] = ACTIONS(3112), - [sym_list_marker_star] = ACTIONS(3112), - [sym_list_marker_plus] = ACTIONS(3112), - [sym__list_marker_task_begin] = ACTIONS(3112), - [sym_list_marker_definition] = ACTIONS(3112), - [sym_list_marker_decimal_period] = ACTIONS(3112), - [sym_list_marker_lower_alpha_period] = ACTIONS(3112), - [sym_list_marker_upper_alpha_period] = ACTIONS(3112), - [sym_list_marker_lower_roman_period] = ACTIONS(3112), - [sym_list_marker_upper_roman_period] = ACTIONS(3112), - [sym_list_marker_decimal_paren] = ACTIONS(3112), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3112), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3112), - [sym_list_marker_lower_roman_paren] = ACTIONS(3112), - [sym_list_marker_upper_roman_paren] = ACTIONS(3112), - [sym_list_marker_decimal_parens] = ACTIONS(3112), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3112), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3112), - [sym_list_marker_lower_roman_parens] = ACTIONS(3112), - [sym_list_marker_upper_roman_parens] = ACTIONS(3112), - [sym__block_quote_begin] = ACTIONS(3112), - [sym__block_quote_continuation] = ACTIONS(3112), - [sym__thematic_break_dash] = ACTIONS(3112), - [sym__thematic_break_star] = ACTIONS(3112), - [sym__footnote_begin] = ACTIONS(3112), - [sym__footnote_end] = ACTIONS(3112), - [sym__verbatim_begin] = ACTIONS(3112), - }, - [474] = { - [ts_builtin_sym_end] = ACTIONS(3122), - [anon_sym_LBRACK] = ACTIONS(3120), - [anon_sym_PIPE] = ACTIONS(3122), - [anon_sym_LBRACE] = ACTIONS(3120), - [sym__whitespace1] = ACTIONS(3122), - [anon_sym_BSLASH] = ACTIONS(3120), - [sym_quotation_marks] = ACTIONS(3122), - [sym_ellipsis] = ACTIONS(3122), - [sym_em_dash] = ACTIONS(3122), - [sym_en_dash] = ACTIONS(3120), - [sym_backslash_escape] = ACTIONS(3120), - [anon_sym_LT] = ACTIONS(3122), - [anon_sym_LBRACE_] = ACTIONS(3122), - [anon_sym__] = ACTIONS(3122), - [anon_sym_LBRACE_STAR] = ACTIONS(3122), - [anon_sym_STAR] = ACTIONS(3122), - [anon_sym_LBRACE_EQ] = ACTIONS(3122), - [anon_sym_LBRACE_PLUS] = ACTIONS(3122), - [anon_sym_LBRACE_DASH] = ACTIONS(3122), - [sym_symbol] = ACTIONS(3122), - [anon_sym_LBRACE_CARET] = ACTIONS(3122), - [anon_sym_CARET] = ACTIONS(3122), - [anon_sym_LBRACE_TILDE] = ACTIONS(3122), - [anon_sym_TILDE] = ACTIONS(3122), - [anon_sym_LBRACK_CARET] = ACTIONS(3122), - [anon_sym_BANG_LBRACK] = ACTIONS(3122), - [anon_sym_DOLLAR] = ACTIONS(3122), - [anon_sym_TODO] = ACTIONS(3122), - [anon_sym_WIP] = ACTIONS(3122), - [anon_sym_NOTE] = ACTIONS(3122), - [anon_sym_INFO] = ACTIONS(3122), - [anon_sym_XXX] = ACTIONS(3122), - [sym_fixme] = ACTIONS(3122), - [aux_sym__text_token1] = ACTIONS(3120), - [sym__newline] = ACTIONS(3122), - [sym__newline_inline] = ACTIONS(3122), - [sym__heading1_begin] = ACTIONS(3122), - [sym__heading2_begin] = ACTIONS(3122), - [sym__heading3_begin] = ACTIONS(3122), - [sym__heading4_begin] = ACTIONS(3122), - [sym__heading5_begin] = ACTIONS(3122), - [sym__heading6_begin] = ACTIONS(3122), - [sym__div_begin] = ACTIONS(3122), - [sym__code_block_begin] = ACTIONS(3122), - [sym_list_marker_dash] = ACTIONS(3122), - [sym_list_marker_star] = ACTIONS(3122), - [sym_list_marker_plus] = ACTIONS(3122), - [sym__list_marker_task_begin] = ACTIONS(3122), - [sym_list_marker_definition] = ACTIONS(3122), - [sym_list_marker_decimal_period] = ACTIONS(3122), - [sym_list_marker_lower_alpha_period] = ACTIONS(3122), - [sym_list_marker_upper_alpha_period] = ACTIONS(3122), - [sym_list_marker_lower_roman_period] = ACTIONS(3122), - [sym_list_marker_upper_roman_period] = ACTIONS(3122), - [sym_list_marker_decimal_paren] = ACTIONS(3122), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3122), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3122), - [sym_list_marker_lower_roman_paren] = ACTIONS(3122), - [sym_list_marker_upper_roman_paren] = ACTIONS(3122), - [sym_list_marker_decimal_parens] = ACTIONS(3122), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3122), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3122), - [sym_list_marker_lower_roman_parens] = ACTIONS(3122), - [sym_list_marker_upper_roman_parens] = ACTIONS(3122), - [sym__block_quote_begin] = ACTIONS(3122), - [sym__block_quote_continuation] = ACTIONS(3122), - [sym__thematic_break_dash] = ACTIONS(3122), - [sym__thematic_break_star] = ACTIONS(3122), - [sym__footnote_begin] = ACTIONS(3122), - [sym__verbatim_begin] = ACTIONS(3122), - }, - [475] = { - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_PIPE] = ACTIONS(3130), - [anon_sym_LBRACE] = ACTIONS(3128), - [sym__whitespace1] = ACTIONS(3130), - [anon_sym_BSLASH] = ACTIONS(3128), - [sym_quotation_marks] = ACTIONS(3130), - [sym_ellipsis] = ACTIONS(3130), - [sym_em_dash] = ACTIONS(3130), - [sym_en_dash] = ACTIONS(3128), - [sym_backslash_escape] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(3130), - [anon_sym_LBRACE_] = ACTIONS(3130), - [anon_sym__] = ACTIONS(3130), - [anon_sym_LBRACE_STAR] = ACTIONS(3130), - [anon_sym_STAR] = ACTIONS(3130), - [anon_sym_LBRACE_EQ] = ACTIONS(3130), - [anon_sym_LBRACE_PLUS] = ACTIONS(3130), - [anon_sym_LBRACE_DASH] = ACTIONS(3130), - [sym_symbol] = ACTIONS(3130), - [anon_sym_LBRACE_CARET] = ACTIONS(3130), - [anon_sym_CARET] = ACTIONS(3130), - [anon_sym_LBRACE_TILDE] = ACTIONS(3130), - [anon_sym_TILDE] = ACTIONS(3130), - [anon_sym_LBRACK_CARET] = ACTIONS(3130), - [anon_sym_BANG_LBRACK] = ACTIONS(3130), - [anon_sym_DOLLAR] = ACTIONS(3130), - [anon_sym_TODO] = ACTIONS(3130), - [anon_sym_WIP] = ACTIONS(3130), - [anon_sym_NOTE] = ACTIONS(3130), - [anon_sym_INFO] = ACTIONS(3130), - [anon_sym_XXX] = ACTIONS(3130), - [sym_fixme] = ACTIONS(3130), - [aux_sym__text_token1] = ACTIONS(3128), - [sym__newline] = ACTIONS(3130), - [sym__newline_inline] = ACTIONS(3130), - [sym__heading1_begin] = ACTIONS(3130), - [sym__heading2_begin] = ACTIONS(3130), - [sym__heading3_begin] = ACTIONS(3130), - [sym__heading4_begin] = ACTIONS(3130), - [sym__heading5_begin] = ACTIONS(3130), - [sym__heading6_begin] = ACTIONS(3130), - [sym__div_begin] = ACTIONS(3130), - [sym__code_block_begin] = ACTIONS(3130), - [sym_list_marker_dash] = ACTIONS(3130), - [sym_list_marker_star] = ACTIONS(3130), - [sym_list_marker_plus] = ACTIONS(3130), - [sym__list_marker_task_begin] = ACTIONS(3130), - [sym_list_marker_definition] = ACTIONS(3130), - [sym_list_marker_decimal_period] = ACTIONS(3130), - [sym_list_marker_lower_alpha_period] = ACTIONS(3130), - [sym_list_marker_upper_alpha_period] = ACTIONS(3130), - [sym_list_marker_lower_roman_period] = ACTIONS(3130), - [sym_list_marker_upper_roman_period] = ACTIONS(3130), - [sym_list_marker_decimal_paren] = ACTIONS(3130), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3130), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3130), - [sym_list_marker_lower_roman_paren] = ACTIONS(3130), - [sym_list_marker_upper_roman_paren] = ACTIONS(3130), - [sym_list_marker_decimal_parens] = ACTIONS(3130), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3130), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3130), - [sym_list_marker_lower_roman_parens] = ACTIONS(3130), - [sym_list_marker_upper_roman_parens] = ACTIONS(3130), - [sym__block_quote_begin] = ACTIONS(3130), - [sym__block_quote_continuation] = ACTIONS(3130), - [sym__thematic_break_dash] = ACTIONS(3130), - [sym__thematic_break_star] = ACTIONS(3130), - [sym__footnote_begin] = ACTIONS(3130), - [sym__footnote_end] = ACTIONS(3130), - [sym__verbatim_begin] = ACTIONS(3130), - }, - [476] = { - [anon_sym_LBRACK] = ACTIONS(3116), - [anon_sym_PIPE] = ACTIONS(3118), - [anon_sym_LBRACE] = ACTIONS(3116), - [sym__whitespace1] = ACTIONS(3118), - [anon_sym_BSLASH] = ACTIONS(3116), - [sym_quotation_marks] = ACTIONS(3118), - [sym_ellipsis] = ACTIONS(3118), - [sym_em_dash] = ACTIONS(3118), - [sym_en_dash] = ACTIONS(3116), - [sym_backslash_escape] = ACTIONS(3116), - [anon_sym_LT] = ACTIONS(3118), - [anon_sym_LBRACE_] = ACTIONS(3118), - [anon_sym__] = ACTIONS(3118), - [anon_sym_LBRACE_STAR] = ACTIONS(3118), - [anon_sym_STAR] = ACTIONS(3118), - [anon_sym_LBRACE_EQ] = ACTIONS(3118), - [anon_sym_LBRACE_PLUS] = ACTIONS(3118), - [anon_sym_LBRACE_DASH] = ACTIONS(3118), - [sym_symbol] = ACTIONS(3118), - [anon_sym_LBRACE_CARET] = ACTIONS(3118), - [anon_sym_CARET] = ACTIONS(3118), - [anon_sym_LBRACE_TILDE] = ACTIONS(3118), - [anon_sym_TILDE] = ACTIONS(3118), - [anon_sym_LBRACK_CARET] = ACTIONS(3118), - [anon_sym_BANG_LBRACK] = ACTIONS(3118), - [anon_sym_DOLLAR] = ACTIONS(3118), - [anon_sym_TODO] = ACTIONS(3118), - [anon_sym_WIP] = ACTIONS(3118), - [anon_sym_NOTE] = ACTIONS(3118), - [anon_sym_INFO] = ACTIONS(3118), - [anon_sym_XXX] = ACTIONS(3118), - [sym_fixme] = ACTIONS(3118), - [aux_sym__text_token1] = ACTIONS(3116), - [sym__block_close] = ACTIONS(3118), - [sym__newline] = ACTIONS(3118), - [sym__newline_inline] = ACTIONS(3118), - [sym__heading1_begin] = ACTIONS(3118), - [sym__heading2_begin] = ACTIONS(3118), - [sym__heading3_begin] = ACTIONS(3118), - [sym__heading4_begin] = ACTIONS(3118), - [sym__heading5_begin] = ACTIONS(3118), - [sym__heading6_begin] = ACTIONS(3118), - [sym__div_begin] = ACTIONS(3118), - [sym__code_block_begin] = ACTIONS(3118), - [sym_list_marker_dash] = ACTIONS(3118), - [sym_list_marker_star] = ACTIONS(3118), - [sym_list_marker_plus] = ACTIONS(3118), - [sym__list_marker_task_begin] = ACTIONS(3118), - [sym_list_marker_definition] = ACTIONS(3118), - [sym_list_marker_decimal_period] = ACTIONS(3118), - [sym_list_marker_lower_alpha_period] = ACTIONS(3118), - [sym_list_marker_upper_alpha_period] = ACTIONS(3118), - [sym_list_marker_lower_roman_period] = ACTIONS(3118), - [sym_list_marker_upper_roman_period] = ACTIONS(3118), - [sym_list_marker_decimal_paren] = ACTIONS(3118), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3118), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3118), - [sym_list_marker_lower_roman_paren] = ACTIONS(3118), - [sym_list_marker_upper_roman_paren] = ACTIONS(3118), - [sym_list_marker_decimal_parens] = ACTIONS(3118), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3118), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3118), - [sym_list_marker_lower_roman_parens] = ACTIONS(3118), - [sym_list_marker_upper_roman_parens] = ACTIONS(3118), - [sym__block_quote_begin] = ACTIONS(3118), - [sym__block_quote_continuation] = ACTIONS(3118), - [sym__thematic_break_dash] = ACTIONS(3118), - [sym__thematic_break_star] = ACTIONS(3118), - [sym__footnote_begin] = ACTIONS(3118), - [sym__verbatim_begin] = ACTIONS(3118), - }, - [477] = { - [ts_builtin_sym_end] = ACTIONS(3022), - [anon_sym_LBRACK] = ACTIONS(3020), - [anon_sym_PIPE] = ACTIONS(3022), - [anon_sym_LBRACE] = ACTIONS(3020), - [sym__whitespace1] = ACTIONS(3022), - [anon_sym_BSLASH] = ACTIONS(3020), - [sym_quotation_marks] = ACTIONS(3022), - [sym_ellipsis] = ACTIONS(3022), - [sym_em_dash] = ACTIONS(3022), - [sym_en_dash] = ACTIONS(3020), - [sym_backslash_escape] = ACTIONS(3020), - [anon_sym_LT] = ACTIONS(3022), - [anon_sym_LBRACE_] = ACTIONS(3022), - [anon_sym__] = ACTIONS(3022), - [anon_sym_LBRACE_STAR] = ACTIONS(3022), - [anon_sym_STAR] = ACTIONS(3022), - [anon_sym_LBRACE_EQ] = ACTIONS(3022), - [anon_sym_LBRACE_PLUS] = ACTIONS(3022), - [anon_sym_LBRACE_DASH] = ACTIONS(3022), - [sym_symbol] = ACTIONS(3022), - [anon_sym_LBRACE_CARET] = ACTIONS(3022), - [anon_sym_CARET] = ACTIONS(3022), - [anon_sym_LBRACE_TILDE] = ACTIONS(3022), - [anon_sym_TILDE] = ACTIONS(3022), - [anon_sym_LBRACK_CARET] = ACTIONS(3022), - [anon_sym_BANG_LBRACK] = ACTIONS(3022), - [anon_sym_DOLLAR] = ACTIONS(3022), - [anon_sym_TODO] = ACTIONS(3022), - [anon_sym_WIP] = ACTIONS(3022), - [anon_sym_NOTE] = ACTIONS(3022), - [anon_sym_INFO] = ACTIONS(3022), - [anon_sym_XXX] = ACTIONS(3022), - [sym_fixme] = ACTIONS(3022), - [aux_sym__text_token1] = ACTIONS(3020), - [sym__newline] = ACTIONS(3022), - [sym__newline_inline] = ACTIONS(3022), - [sym__heading1_begin] = ACTIONS(3022), - [sym__heading2_begin] = ACTIONS(3022), - [sym__heading3_begin] = ACTIONS(3022), - [sym__heading4_begin] = ACTIONS(3022), - [sym__heading5_begin] = ACTIONS(3022), - [sym__heading6_begin] = ACTIONS(3022), - [sym__div_begin] = ACTIONS(3022), - [sym__code_block_begin] = ACTIONS(3022), - [sym_list_marker_dash] = ACTIONS(3022), - [sym_list_marker_star] = ACTIONS(3022), - [sym_list_marker_plus] = ACTIONS(3022), - [sym__list_marker_task_begin] = ACTIONS(3022), - [sym_list_marker_definition] = ACTIONS(3022), - [sym_list_marker_decimal_period] = ACTIONS(3022), - [sym_list_marker_lower_alpha_period] = ACTIONS(3022), - [sym_list_marker_upper_alpha_period] = ACTIONS(3022), - [sym_list_marker_lower_roman_period] = ACTIONS(3022), - [sym_list_marker_upper_roman_period] = ACTIONS(3022), - [sym_list_marker_decimal_paren] = ACTIONS(3022), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3022), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3022), - [sym_list_marker_lower_roman_paren] = ACTIONS(3022), - [sym_list_marker_upper_roman_paren] = ACTIONS(3022), - [sym_list_marker_decimal_parens] = ACTIONS(3022), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3022), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3022), - [sym_list_marker_lower_roman_parens] = ACTIONS(3022), - [sym_list_marker_upper_roman_parens] = ACTIONS(3022), - [sym__block_quote_begin] = ACTIONS(3022), - [sym__block_quote_continuation] = ACTIONS(3022), - [sym__thematic_break_dash] = ACTIONS(3022), - [sym__thematic_break_star] = ACTIONS(3022), - [sym__footnote_begin] = ACTIONS(3022), - [sym__verbatim_begin] = ACTIONS(3022), - }, - [478] = { - [anon_sym_LBRACK] = ACTIONS(2750), - [anon_sym_PIPE] = ACTIONS(2752), - [anon_sym_LBRACE] = ACTIONS(2750), - [sym__whitespace1] = ACTIONS(2752), - [anon_sym_BSLASH] = ACTIONS(2750), - [sym_quotation_marks] = ACTIONS(2752), - [sym_ellipsis] = ACTIONS(2752), - [sym_em_dash] = ACTIONS(2752), - [sym_en_dash] = ACTIONS(2750), - [sym_backslash_escape] = ACTIONS(2750), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_LBRACE_] = ACTIONS(2752), - [anon_sym__] = ACTIONS(2752), - [anon_sym_LBRACE_STAR] = ACTIONS(2752), - [anon_sym_STAR] = ACTIONS(2752), - [anon_sym_LBRACE_EQ] = ACTIONS(2752), - [anon_sym_LBRACE_PLUS] = ACTIONS(2752), - [anon_sym_LBRACE_DASH] = ACTIONS(2752), - [sym_symbol] = ACTIONS(2752), - [anon_sym_LBRACE_CARET] = ACTIONS(2752), - [anon_sym_CARET] = ACTIONS(2752), - [anon_sym_LBRACE_TILDE] = ACTIONS(2752), - [anon_sym_TILDE] = ACTIONS(2752), - [anon_sym_LBRACK_CARET] = ACTIONS(2752), - [anon_sym_BANG_LBRACK] = ACTIONS(2752), - [anon_sym_DOLLAR] = ACTIONS(2752), - [anon_sym_TODO] = ACTIONS(2752), - [anon_sym_WIP] = ACTIONS(2752), - [anon_sym_NOTE] = ACTIONS(2752), - [anon_sym_INFO] = ACTIONS(2752), - [anon_sym_XXX] = ACTIONS(2752), - [sym_fixme] = ACTIONS(2752), - [aux_sym__text_token1] = ACTIONS(2750), - [sym__newline] = ACTIONS(2752), - [sym__newline_inline] = ACTIONS(2752), - [sym__heading1_begin] = ACTIONS(2752), - [sym__heading2_begin] = ACTIONS(2752), - [sym__heading3_begin] = ACTIONS(2752), - [sym__heading4_begin] = ACTIONS(2752), - [sym__heading5_begin] = ACTIONS(2752), - [sym__heading6_begin] = ACTIONS(2752), - [sym__div_begin] = ACTIONS(2752), - [sym__code_block_begin] = ACTIONS(2752), - [sym_list_marker_dash] = ACTIONS(2752), - [sym_list_marker_star] = ACTIONS(2752), - [sym_list_marker_plus] = ACTIONS(2752), - [sym__list_marker_task_begin] = ACTIONS(2752), - [sym_list_marker_definition] = ACTIONS(2752), - [sym_list_marker_decimal_period] = ACTIONS(2752), - [sym_list_marker_lower_alpha_period] = ACTIONS(2752), - [sym_list_marker_upper_alpha_period] = ACTIONS(2752), - [sym_list_marker_lower_roman_period] = ACTIONS(2752), - [sym_list_marker_upper_roman_period] = ACTIONS(2752), - [sym_list_marker_decimal_paren] = ACTIONS(2752), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2752), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2752), - [sym_list_marker_lower_roman_paren] = ACTIONS(2752), - [sym_list_marker_upper_roman_paren] = ACTIONS(2752), - [sym_list_marker_decimal_parens] = ACTIONS(2752), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2752), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2752), - [sym_list_marker_lower_roman_parens] = ACTIONS(2752), - [sym_list_marker_upper_roman_parens] = ACTIONS(2752), - [sym__block_quote_begin] = ACTIONS(2752), - [sym__block_quote_continuation] = ACTIONS(2752), - [sym__thematic_break_dash] = ACTIONS(2752), - [sym__thematic_break_star] = ACTIONS(2752), - [sym__footnote_begin] = ACTIONS(2752), - [sym__footnote_end] = ACTIONS(2752), - [sym__verbatim_begin] = ACTIONS(2752), - }, - [479] = { - [ts_builtin_sym_end] = ACTIONS(3142), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_PIPE] = ACTIONS(3142), - [anon_sym_LBRACE] = ACTIONS(3140), - [sym__whitespace1] = ACTIONS(3142), - [anon_sym_BSLASH] = ACTIONS(3140), - [sym_quotation_marks] = ACTIONS(3142), - [sym_ellipsis] = ACTIONS(3142), - [sym_em_dash] = ACTIONS(3142), - [sym_en_dash] = ACTIONS(3140), - [sym_backslash_escape] = ACTIONS(3140), - [anon_sym_LT] = ACTIONS(3142), - [anon_sym_LBRACE_] = ACTIONS(3142), - [anon_sym__] = ACTIONS(3142), - [anon_sym_LBRACE_STAR] = ACTIONS(3142), - [anon_sym_STAR] = ACTIONS(3142), - [anon_sym_LBRACE_EQ] = ACTIONS(3142), - [anon_sym_LBRACE_PLUS] = ACTIONS(3142), - [anon_sym_LBRACE_DASH] = ACTIONS(3142), - [sym_symbol] = ACTIONS(3142), - [anon_sym_LBRACE_CARET] = ACTIONS(3142), - [anon_sym_CARET] = ACTIONS(3142), - [anon_sym_LBRACE_TILDE] = ACTIONS(3142), - [anon_sym_TILDE] = ACTIONS(3142), - [anon_sym_LBRACK_CARET] = ACTIONS(3142), - [anon_sym_BANG_LBRACK] = ACTIONS(3142), - [anon_sym_DOLLAR] = ACTIONS(3142), - [anon_sym_TODO] = ACTIONS(3142), - [anon_sym_WIP] = ACTIONS(3142), - [anon_sym_NOTE] = ACTIONS(3142), - [anon_sym_INFO] = ACTIONS(3142), - [anon_sym_XXX] = ACTIONS(3142), - [sym_fixme] = ACTIONS(3142), - [aux_sym__text_token1] = ACTIONS(3140), - [sym__newline] = ACTIONS(3142), - [sym__newline_inline] = ACTIONS(3142), - [sym__heading1_begin] = ACTIONS(3142), - [sym__heading2_begin] = ACTIONS(3142), - [sym__heading3_begin] = ACTIONS(3142), - [sym__heading4_begin] = ACTIONS(3142), - [sym__heading5_begin] = ACTIONS(3142), - [sym__heading6_begin] = ACTIONS(3142), - [sym__div_begin] = ACTIONS(3142), - [sym__code_block_begin] = ACTIONS(3142), - [sym_list_marker_dash] = ACTIONS(3142), - [sym_list_marker_star] = ACTIONS(3142), - [sym_list_marker_plus] = ACTIONS(3142), - [sym__list_marker_task_begin] = ACTIONS(3142), - [sym_list_marker_definition] = ACTIONS(3142), - [sym_list_marker_decimal_period] = ACTIONS(3142), - [sym_list_marker_lower_alpha_period] = ACTIONS(3142), - [sym_list_marker_upper_alpha_period] = ACTIONS(3142), - [sym_list_marker_lower_roman_period] = ACTIONS(3142), - [sym_list_marker_upper_roman_period] = ACTIONS(3142), - [sym_list_marker_decimal_paren] = ACTIONS(3142), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3142), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3142), - [sym_list_marker_lower_roman_paren] = ACTIONS(3142), - [sym_list_marker_upper_roman_paren] = ACTIONS(3142), - [sym_list_marker_decimal_parens] = ACTIONS(3142), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3142), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3142), - [sym_list_marker_lower_roman_parens] = ACTIONS(3142), - [sym_list_marker_upper_roman_parens] = ACTIONS(3142), - [sym__block_quote_begin] = ACTIONS(3142), - [sym__block_quote_continuation] = ACTIONS(3142), - [sym__thematic_break_dash] = ACTIONS(3142), - [sym__thematic_break_star] = ACTIONS(3142), - [sym__footnote_begin] = ACTIONS(3142), - [sym__verbatim_begin] = ACTIONS(3142), - }, - [480] = { - [anon_sym_LBRACK] = ACTIONS(3146), - [anon_sym_PIPE] = ACTIONS(3144), - [anon_sym_LBRACE] = ACTIONS(3146), - [sym__whitespace1] = ACTIONS(3144), - [anon_sym_BSLASH] = ACTIONS(3146), - [sym_quotation_marks] = ACTIONS(3144), - [sym_ellipsis] = ACTIONS(3144), - [sym_em_dash] = ACTIONS(3144), - [sym_en_dash] = ACTIONS(3146), - [sym_backslash_escape] = ACTIONS(3146), - [anon_sym_LT] = ACTIONS(3144), - [anon_sym_LBRACE_] = ACTIONS(3144), - [anon_sym__] = ACTIONS(3144), - [anon_sym_LBRACE_STAR] = ACTIONS(3144), - [anon_sym_STAR] = ACTIONS(3144), - [anon_sym_LBRACE_EQ] = ACTIONS(3144), - [anon_sym_LBRACE_PLUS] = ACTIONS(3144), - [anon_sym_LBRACE_DASH] = ACTIONS(3144), - [sym_symbol] = ACTIONS(3144), - [anon_sym_LBRACE_CARET] = ACTIONS(3144), - [anon_sym_CARET] = ACTIONS(3144), - [anon_sym_LBRACE_TILDE] = ACTIONS(3144), - [anon_sym_TILDE] = ACTIONS(3144), - [anon_sym_LBRACK_CARET] = ACTIONS(3144), - [anon_sym_BANG_LBRACK] = ACTIONS(3144), - [anon_sym_DOLLAR] = ACTIONS(3144), - [anon_sym_TODO] = ACTIONS(3144), - [anon_sym_WIP] = ACTIONS(3144), - [anon_sym_NOTE] = ACTIONS(3144), - [anon_sym_INFO] = ACTIONS(3144), - [anon_sym_XXX] = ACTIONS(3144), - [sym_fixme] = ACTIONS(3144), - [aux_sym__text_token1] = ACTIONS(3146), - [sym__newline] = ACTIONS(3144), - [sym__newline_inline] = ACTIONS(3144), - [sym__heading1_begin] = ACTIONS(3144), - [sym__heading2_begin] = ACTIONS(3144), - [sym__heading3_begin] = ACTIONS(3144), - [sym__heading4_begin] = ACTIONS(3144), - [sym__heading5_begin] = ACTIONS(3144), - [sym__heading6_begin] = ACTIONS(3144), - [sym__div_begin] = ACTIONS(3144), - [sym__code_block_begin] = ACTIONS(3144), - [sym_list_marker_dash] = ACTIONS(3144), - [sym_list_marker_star] = ACTIONS(3144), - [sym_list_marker_plus] = ACTIONS(3144), - [sym__list_marker_task_begin] = ACTIONS(3144), - [sym_list_marker_definition] = ACTIONS(3144), - [sym_list_marker_decimal_period] = ACTIONS(3144), - [sym_list_marker_lower_alpha_period] = ACTIONS(3144), - [sym_list_marker_upper_alpha_period] = ACTIONS(3144), - [sym_list_marker_lower_roman_period] = ACTIONS(3144), - [sym_list_marker_upper_roman_period] = ACTIONS(3144), - [sym_list_marker_decimal_paren] = ACTIONS(3144), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3144), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3144), - [sym_list_marker_lower_roman_paren] = ACTIONS(3144), - [sym_list_marker_upper_roman_paren] = ACTIONS(3144), - [sym_list_marker_decimal_parens] = ACTIONS(3144), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3144), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3144), - [sym_list_marker_lower_roman_parens] = ACTIONS(3144), - [sym_list_marker_upper_roman_parens] = ACTIONS(3144), - [sym__block_quote_begin] = ACTIONS(3144), - [sym__block_quote_continuation] = ACTIONS(3144), - [sym__thematic_break_dash] = ACTIONS(3144), - [sym__thematic_break_star] = ACTIONS(3144), - [sym__footnote_begin] = ACTIONS(3144), - [sym__footnote_end] = ACTIONS(3144), - [sym__verbatim_begin] = ACTIONS(3144), - }, - [481] = { - [ts_builtin_sym_end] = ACTIONS(2994), - [anon_sym_LBRACK] = ACTIONS(2992), - [anon_sym_PIPE] = ACTIONS(2994), - [anon_sym_LBRACE] = ACTIONS(2992), - [sym__whitespace1] = ACTIONS(2994), - [anon_sym_BSLASH] = ACTIONS(2992), - [sym_quotation_marks] = ACTIONS(2994), - [sym_ellipsis] = ACTIONS(2994), - [sym_em_dash] = ACTIONS(2994), - [sym_en_dash] = ACTIONS(2992), - [sym_backslash_escape] = ACTIONS(2992), - [anon_sym_LT] = ACTIONS(2994), - [anon_sym_LBRACE_] = ACTIONS(2994), - [anon_sym__] = ACTIONS(2994), - [anon_sym_LBRACE_STAR] = ACTIONS(2994), - [anon_sym_STAR] = ACTIONS(2994), - [anon_sym_LBRACE_EQ] = ACTIONS(2994), - [anon_sym_LBRACE_PLUS] = ACTIONS(2994), - [anon_sym_LBRACE_DASH] = ACTIONS(2994), - [sym_symbol] = ACTIONS(2994), - [anon_sym_LBRACE_CARET] = ACTIONS(2994), - [anon_sym_CARET] = ACTIONS(2994), - [anon_sym_LBRACE_TILDE] = ACTIONS(2994), - [anon_sym_TILDE] = ACTIONS(2994), - [anon_sym_LBRACK_CARET] = ACTIONS(2994), - [anon_sym_BANG_LBRACK] = ACTIONS(2994), - [anon_sym_DOLLAR] = ACTIONS(2994), - [anon_sym_TODO] = ACTIONS(2994), - [anon_sym_WIP] = ACTIONS(2994), - [anon_sym_NOTE] = ACTIONS(2994), - [anon_sym_INFO] = ACTIONS(2994), - [anon_sym_XXX] = ACTIONS(2994), - [sym_fixme] = ACTIONS(2994), - [aux_sym__text_token1] = ACTIONS(2992), - [sym__newline] = ACTIONS(2994), - [sym__newline_inline] = ACTIONS(2994), - [sym__heading1_begin] = ACTIONS(2994), - [sym__heading2_begin] = ACTIONS(2994), - [sym__heading3_begin] = ACTIONS(2994), - [sym__heading4_begin] = ACTIONS(2994), - [sym__heading5_begin] = ACTIONS(2994), - [sym__heading6_begin] = ACTIONS(2994), - [sym__div_begin] = ACTIONS(2994), - [sym__code_block_begin] = ACTIONS(2994), - [sym_list_marker_dash] = ACTIONS(2994), - [sym_list_marker_star] = ACTIONS(2994), - [sym_list_marker_plus] = ACTIONS(2994), - [sym__list_marker_task_begin] = ACTIONS(2994), - [sym_list_marker_definition] = ACTIONS(2994), - [sym_list_marker_decimal_period] = ACTIONS(2994), - [sym_list_marker_lower_alpha_period] = ACTIONS(2994), - [sym_list_marker_upper_alpha_period] = ACTIONS(2994), - [sym_list_marker_lower_roman_period] = ACTIONS(2994), - [sym_list_marker_upper_roman_period] = ACTIONS(2994), - [sym_list_marker_decimal_paren] = ACTIONS(2994), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2994), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2994), - [sym_list_marker_lower_roman_paren] = ACTIONS(2994), - [sym_list_marker_upper_roman_paren] = ACTIONS(2994), - [sym_list_marker_decimal_parens] = ACTIONS(2994), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2994), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2994), - [sym_list_marker_lower_roman_parens] = ACTIONS(2994), - [sym_list_marker_upper_roman_parens] = ACTIONS(2994), - [sym__block_quote_begin] = ACTIONS(2994), - [sym__block_quote_continuation] = ACTIONS(2994), - [sym__thematic_break_dash] = ACTIONS(2994), - [sym__thematic_break_star] = ACTIONS(2994), - [sym__footnote_begin] = ACTIONS(2994), - [sym__verbatim_begin] = ACTIONS(2994), - }, - [482] = { - [anon_sym_LBRACK] = ACTIONS(2960), - [anon_sym_PIPE] = ACTIONS(2962), - [anon_sym_LBRACE] = ACTIONS(2960), - [sym__whitespace1] = ACTIONS(2962), - [anon_sym_BSLASH] = ACTIONS(2960), - [sym_quotation_marks] = ACTIONS(2962), - [sym_ellipsis] = ACTIONS(2962), - [sym_em_dash] = ACTIONS(2962), - [sym_en_dash] = ACTIONS(2960), - [sym_backslash_escape] = ACTIONS(2960), - [anon_sym_LT] = ACTIONS(2962), - [anon_sym_LBRACE_] = ACTIONS(2962), - [anon_sym__] = ACTIONS(2962), - [anon_sym_LBRACE_STAR] = ACTIONS(2962), - [anon_sym_STAR] = ACTIONS(2962), - [anon_sym_LBRACE_EQ] = ACTIONS(2962), - [anon_sym_LBRACE_PLUS] = ACTIONS(2962), - [anon_sym_LBRACE_DASH] = ACTIONS(2962), - [sym_symbol] = ACTIONS(2962), - [anon_sym_LBRACE_CARET] = ACTIONS(2962), - [anon_sym_CARET] = ACTIONS(2962), - [anon_sym_LBRACE_TILDE] = ACTIONS(2962), - [anon_sym_TILDE] = ACTIONS(2962), - [anon_sym_LBRACK_CARET] = ACTIONS(2962), - [anon_sym_BANG_LBRACK] = ACTIONS(2962), - [anon_sym_DOLLAR] = ACTIONS(2962), - [anon_sym_TODO] = ACTIONS(2962), - [anon_sym_WIP] = ACTIONS(2962), - [anon_sym_NOTE] = ACTIONS(2962), - [anon_sym_INFO] = ACTIONS(2962), - [anon_sym_XXX] = ACTIONS(2962), - [sym_fixme] = ACTIONS(2962), - [aux_sym__text_token1] = ACTIONS(2960), - [sym__newline] = ACTIONS(2962), - [sym__newline_inline] = ACTIONS(2962), - [sym__heading1_begin] = ACTIONS(2962), - [sym__heading2_begin] = ACTIONS(2962), - [sym__heading3_begin] = ACTIONS(2962), - [sym__heading4_begin] = ACTIONS(2962), - [sym__heading5_begin] = ACTIONS(2962), - [sym__heading6_begin] = ACTIONS(2962), - [sym__div_begin] = ACTIONS(2962), - [sym__code_block_begin] = ACTIONS(2962), - [sym_list_marker_dash] = ACTIONS(2962), - [sym_list_marker_star] = ACTIONS(2962), - [sym_list_marker_plus] = ACTIONS(2962), - [sym__list_marker_task_begin] = ACTIONS(2962), - [sym_list_marker_definition] = ACTIONS(2962), - [sym_list_marker_decimal_period] = ACTIONS(2962), - [sym_list_marker_lower_alpha_period] = ACTIONS(2962), - [sym_list_marker_upper_alpha_period] = ACTIONS(2962), - [sym_list_marker_lower_roman_period] = ACTIONS(2962), - [sym_list_marker_upper_roman_period] = ACTIONS(2962), - [sym_list_marker_decimal_paren] = ACTIONS(2962), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2962), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2962), - [sym_list_marker_lower_roman_paren] = ACTIONS(2962), - [sym_list_marker_upper_roman_paren] = ACTIONS(2962), - [sym_list_marker_decimal_parens] = ACTIONS(2962), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2962), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2962), - [sym_list_marker_lower_roman_parens] = ACTIONS(2962), - [sym_list_marker_upper_roman_parens] = ACTIONS(2962), - [sym__block_quote_begin] = ACTIONS(2962), - [sym__block_quote_continuation] = ACTIONS(2962), - [sym__thematic_break_dash] = ACTIONS(2962), - [sym__thematic_break_star] = ACTIONS(2962), - [sym__footnote_begin] = ACTIONS(2962), - [sym__footnote_end] = ACTIONS(2962), - [sym__verbatim_begin] = ACTIONS(2962), - }, - [483] = { - [anon_sym_LBRACK] = ACTIONS(2968), - [anon_sym_PIPE] = ACTIONS(2970), - [anon_sym_LBRACE] = ACTIONS(2968), - [sym__whitespace1] = ACTIONS(2970), - [anon_sym_BSLASH] = ACTIONS(2968), - [sym_quotation_marks] = ACTIONS(2970), - [sym_ellipsis] = ACTIONS(2970), - [sym_em_dash] = ACTIONS(2970), - [sym_en_dash] = ACTIONS(2968), - [sym_backslash_escape] = ACTIONS(2968), - [anon_sym_LT] = ACTIONS(2970), - [anon_sym_LBRACE_] = ACTIONS(2970), - [anon_sym__] = ACTIONS(2970), - [anon_sym_LBRACE_STAR] = ACTIONS(2970), - [anon_sym_STAR] = ACTIONS(2970), - [anon_sym_LBRACE_EQ] = ACTIONS(2970), - [anon_sym_LBRACE_PLUS] = ACTIONS(2970), - [anon_sym_LBRACE_DASH] = ACTIONS(2970), - [sym_symbol] = ACTIONS(2970), - [anon_sym_LBRACE_CARET] = ACTIONS(2970), - [anon_sym_CARET] = ACTIONS(2970), - [anon_sym_LBRACE_TILDE] = ACTIONS(2970), - [anon_sym_TILDE] = ACTIONS(2970), - [anon_sym_LBRACK_CARET] = ACTIONS(2970), - [anon_sym_BANG_LBRACK] = ACTIONS(2970), - [anon_sym_DOLLAR] = ACTIONS(2970), - [anon_sym_TODO] = ACTIONS(2970), - [anon_sym_WIP] = ACTIONS(2970), - [anon_sym_NOTE] = ACTIONS(2970), - [anon_sym_INFO] = ACTIONS(2970), - [anon_sym_XXX] = ACTIONS(2970), - [sym_fixme] = ACTIONS(2970), - [aux_sym__text_token1] = ACTIONS(2968), - [sym__newline] = ACTIONS(2970), - [sym__newline_inline] = ACTIONS(2970), - [sym__heading1_begin] = ACTIONS(2970), - [sym__heading2_begin] = ACTIONS(2970), - [sym__heading3_begin] = ACTIONS(2970), - [sym__heading4_begin] = ACTIONS(2970), - [sym__heading5_begin] = ACTIONS(2970), - [sym__heading6_begin] = ACTIONS(2970), - [sym__div_begin] = ACTIONS(2970), - [sym__code_block_begin] = ACTIONS(2970), - [sym_list_marker_dash] = ACTIONS(2970), - [sym_list_marker_star] = ACTIONS(2970), - [sym_list_marker_plus] = ACTIONS(2970), - [sym__list_marker_task_begin] = ACTIONS(2970), - [sym_list_marker_definition] = ACTIONS(2970), - [sym_list_marker_decimal_period] = ACTIONS(2970), - [sym_list_marker_lower_alpha_period] = ACTIONS(2970), - [sym_list_marker_upper_alpha_period] = ACTIONS(2970), - [sym_list_marker_lower_roman_period] = ACTIONS(2970), - [sym_list_marker_upper_roman_period] = ACTIONS(2970), - [sym_list_marker_decimal_paren] = ACTIONS(2970), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2970), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2970), - [sym_list_marker_lower_roman_paren] = ACTIONS(2970), - [sym_list_marker_upper_roman_paren] = ACTIONS(2970), - [sym_list_marker_decimal_parens] = ACTIONS(2970), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2970), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2970), - [sym_list_marker_lower_roman_parens] = ACTIONS(2970), - [sym_list_marker_upper_roman_parens] = ACTIONS(2970), - [sym__block_quote_begin] = ACTIONS(2970), - [sym__block_quote_continuation] = ACTIONS(2970), - [sym__thematic_break_dash] = ACTIONS(2970), - [sym__thematic_break_star] = ACTIONS(2970), - [sym__footnote_begin] = ACTIONS(2970), - [sym__footnote_end] = ACTIONS(2970), - [sym__verbatim_begin] = ACTIONS(2970), - }, - [484] = { - [ts_builtin_sym_end] = ACTIONS(2990), - [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_PIPE] = ACTIONS(2990), - [anon_sym_LBRACE] = ACTIONS(2988), - [sym__whitespace1] = ACTIONS(2990), - [anon_sym_BSLASH] = ACTIONS(2988), - [sym_quotation_marks] = ACTIONS(2990), - [sym_ellipsis] = ACTIONS(2990), - [sym_em_dash] = ACTIONS(2990), - [sym_en_dash] = ACTIONS(2988), - [sym_backslash_escape] = ACTIONS(2988), - [anon_sym_LT] = ACTIONS(2990), - [anon_sym_LBRACE_] = ACTIONS(2990), - [anon_sym__] = ACTIONS(2990), - [anon_sym_LBRACE_STAR] = ACTIONS(2990), - [anon_sym_STAR] = ACTIONS(2990), - [anon_sym_LBRACE_EQ] = ACTIONS(2990), - [anon_sym_LBRACE_PLUS] = ACTIONS(2990), - [anon_sym_LBRACE_DASH] = ACTIONS(2990), - [sym_symbol] = ACTIONS(2990), - [anon_sym_LBRACE_CARET] = ACTIONS(2990), - [anon_sym_CARET] = ACTIONS(2990), - [anon_sym_LBRACE_TILDE] = ACTIONS(2990), - [anon_sym_TILDE] = ACTIONS(2990), - [anon_sym_LBRACK_CARET] = ACTIONS(2990), - [anon_sym_BANG_LBRACK] = ACTIONS(2990), - [anon_sym_DOLLAR] = ACTIONS(2990), - [anon_sym_TODO] = ACTIONS(2990), - [anon_sym_WIP] = ACTIONS(2990), - [anon_sym_NOTE] = ACTIONS(2990), - [anon_sym_INFO] = ACTIONS(2990), - [anon_sym_XXX] = ACTIONS(2990), - [sym_fixme] = ACTIONS(2990), - [aux_sym__text_token1] = ACTIONS(2988), - [sym__newline] = ACTIONS(2990), - [sym__newline_inline] = ACTIONS(2990), - [sym__heading1_begin] = ACTIONS(2990), - [sym__heading2_begin] = ACTIONS(2990), - [sym__heading3_begin] = ACTIONS(2990), - [sym__heading4_begin] = ACTIONS(2990), - [sym__heading5_begin] = ACTIONS(2990), - [sym__heading6_begin] = ACTIONS(2990), - [sym__div_begin] = ACTIONS(2990), - [sym__code_block_begin] = ACTIONS(2990), - [sym_list_marker_dash] = ACTIONS(2990), - [sym_list_marker_star] = ACTIONS(2990), - [sym_list_marker_plus] = ACTIONS(2990), - [sym__list_marker_task_begin] = ACTIONS(2990), - [sym_list_marker_definition] = ACTIONS(2990), - [sym_list_marker_decimal_period] = ACTIONS(2990), - [sym_list_marker_lower_alpha_period] = ACTIONS(2990), - [sym_list_marker_upper_alpha_period] = ACTIONS(2990), - [sym_list_marker_lower_roman_period] = ACTIONS(2990), - [sym_list_marker_upper_roman_period] = ACTIONS(2990), - [sym_list_marker_decimal_paren] = ACTIONS(2990), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2990), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2990), - [sym_list_marker_lower_roman_paren] = ACTIONS(2990), - [sym_list_marker_upper_roman_paren] = ACTIONS(2990), - [sym_list_marker_decimal_parens] = ACTIONS(2990), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2990), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2990), - [sym_list_marker_lower_roman_parens] = ACTIONS(2990), - [sym_list_marker_upper_roman_parens] = ACTIONS(2990), - [sym__block_quote_begin] = ACTIONS(2990), - [sym__block_quote_continuation] = ACTIONS(2990), - [sym__thematic_break_dash] = ACTIONS(2990), - [sym__thematic_break_star] = ACTIONS(2990), - [sym__footnote_begin] = ACTIONS(2990), - [sym__verbatim_begin] = ACTIONS(2990), - }, - [485] = { - [anon_sym_LBRACK] = ACTIONS(2984), - [anon_sym_PIPE] = ACTIONS(2986), - [anon_sym_LBRACE] = ACTIONS(2984), - [sym__whitespace1] = ACTIONS(2986), - [anon_sym_BSLASH] = ACTIONS(2984), - [sym_quotation_marks] = ACTIONS(2986), - [sym_ellipsis] = ACTIONS(2986), - [sym_em_dash] = ACTIONS(2986), - [sym_en_dash] = ACTIONS(2984), - [sym_backslash_escape] = ACTIONS(2984), - [anon_sym_LT] = ACTIONS(2986), - [anon_sym_LBRACE_] = ACTIONS(2986), - [anon_sym__] = ACTIONS(2986), - [anon_sym_LBRACE_STAR] = ACTIONS(2986), - [anon_sym_STAR] = ACTIONS(2986), - [anon_sym_LBRACE_EQ] = ACTIONS(2986), - [anon_sym_LBRACE_PLUS] = ACTIONS(2986), - [anon_sym_LBRACE_DASH] = ACTIONS(2986), - [sym_symbol] = ACTIONS(2986), - [anon_sym_LBRACE_CARET] = ACTIONS(2986), - [anon_sym_CARET] = ACTIONS(2986), - [anon_sym_LBRACE_TILDE] = ACTIONS(2986), - [anon_sym_TILDE] = ACTIONS(2986), - [anon_sym_LBRACK_CARET] = ACTIONS(2986), - [anon_sym_BANG_LBRACK] = ACTIONS(2986), - [anon_sym_DOLLAR] = ACTIONS(2986), - [anon_sym_TODO] = ACTIONS(2986), - [anon_sym_WIP] = ACTIONS(2986), - [anon_sym_NOTE] = ACTIONS(2986), - [anon_sym_INFO] = ACTIONS(2986), - [anon_sym_XXX] = ACTIONS(2986), - [sym_fixme] = ACTIONS(2986), - [aux_sym__text_token1] = ACTIONS(2984), - [sym__newline] = ACTIONS(2986), - [sym__newline_inline] = ACTIONS(2986), - [sym__heading1_begin] = ACTIONS(2986), - [sym__heading2_begin] = ACTIONS(2986), - [sym__heading3_begin] = ACTIONS(2986), - [sym__heading4_begin] = ACTIONS(2986), - [sym__heading5_begin] = ACTIONS(2986), - [sym__heading6_begin] = ACTIONS(2986), - [sym__div_begin] = ACTIONS(2986), - [sym__code_block_begin] = ACTIONS(2986), - [sym_list_marker_dash] = ACTIONS(2986), - [sym_list_marker_star] = ACTIONS(2986), - [sym_list_marker_plus] = ACTIONS(2986), - [sym__list_marker_task_begin] = ACTIONS(2986), - [sym_list_marker_definition] = ACTIONS(2986), - [sym_list_marker_decimal_period] = ACTIONS(2986), - [sym_list_marker_lower_alpha_period] = ACTIONS(2986), - [sym_list_marker_upper_alpha_period] = ACTIONS(2986), - [sym_list_marker_lower_roman_period] = ACTIONS(2986), - [sym_list_marker_upper_roman_period] = ACTIONS(2986), - [sym_list_marker_decimal_paren] = ACTIONS(2986), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2986), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2986), - [sym_list_marker_lower_roman_paren] = ACTIONS(2986), - [sym_list_marker_upper_roman_paren] = ACTIONS(2986), - [sym_list_marker_decimal_parens] = ACTIONS(2986), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2986), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2986), - [sym_list_marker_lower_roman_parens] = ACTIONS(2986), - [sym_list_marker_upper_roman_parens] = ACTIONS(2986), - [sym__block_quote_begin] = ACTIONS(2986), - [sym__block_quote_continuation] = ACTIONS(2986), - [sym__thematic_break_dash] = ACTIONS(2986), - [sym__thematic_break_star] = ACTIONS(2986), - [sym__footnote_begin] = ACTIONS(2986), - [sym__footnote_end] = ACTIONS(2986), - [sym__verbatim_begin] = ACTIONS(2986), - }, - [486] = { - [anon_sym_LBRACK] = ACTIONS(3026), - [anon_sym_PIPE] = ACTIONS(3024), - [anon_sym_LBRACE] = ACTIONS(3026), - [sym__whitespace1] = ACTIONS(3024), - [anon_sym_BSLASH] = ACTIONS(3026), - [sym_quotation_marks] = ACTIONS(3024), - [sym_ellipsis] = ACTIONS(3024), - [sym_em_dash] = ACTIONS(3024), - [sym_en_dash] = ACTIONS(3026), - [sym_backslash_escape] = ACTIONS(3026), - [anon_sym_LT] = ACTIONS(3024), - [anon_sym_LBRACE_] = ACTIONS(3024), - [anon_sym__] = ACTIONS(3024), - [anon_sym_LBRACE_STAR] = ACTIONS(3024), - [anon_sym_STAR] = ACTIONS(3024), - [anon_sym_LBRACE_EQ] = ACTIONS(3024), - [anon_sym_LBRACE_PLUS] = ACTIONS(3024), - [anon_sym_LBRACE_DASH] = ACTIONS(3024), - [sym_symbol] = ACTIONS(3024), - [anon_sym_LBRACE_CARET] = ACTIONS(3024), - [anon_sym_CARET] = ACTIONS(3024), - [anon_sym_LBRACE_TILDE] = ACTIONS(3024), - [anon_sym_TILDE] = ACTIONS(3024), - [anon_sym_LBRACK_CARET] = ACTIONS(3024), - [anon_sym_BANG_LBRACK] = ACTIONS(3024), - [anon_sym_DOLLAR] = ACTIONS(3024), - [anon_sym_TODO] = ACTIONS(3024), - [anon_sym_WIP] = ACTIONS(3024), - [anon_sym_NOTE] = ACTIONS(3024), - [anon_sym_INFO] = ACTIONS(3024), - [anon_sym_XXX] = ACTIONS(3024), - [sym_fixme] = ACTIONS(3024), - [aux_sym__text_token1] = ACTIONS(3026), - [sym__block_close] = ACTIONS(3024), - [sym__newline] = ACTIONS(3024), - [sym__newline_inline] = ACTIONS(3024), - [sym__heading1_begin] = ACTIONS(3024), - [sym__heading2_begin] = ACTIONS(3024), - [sym__heading3_begin] = ACTIONS(3024), - [sym__heading4_begin] = ACTIONS(3024), - [sym__heading5_begin] = ACTIONS(3024), - [sym__heading6_begin] = ACTIONS(3024), - [sym__div_begin] = ACTIONS(3024), - [sym__code_block_begin] = ACTIONS(3024), - [sym_list_marker_dash] = ACTIONS(3024), - [sym_list_marker_star] = ACTIONS(3024), - [sym_list_marker_plus] = ACTIONS(3024), - [sym__list_marker_task_begin] = ACTIONS(3024), - [sym_list_marker_definition] = ACTIONS(3024), - [sym_list_marker_decimal_period] = ACTIONS(3024), - [sym_list_marker_lower_alpha_period] = ACTIONS(3024), - [sym_list_marker_upper_alpha_period] = ACTIONS(3024), - [sym_list_marker_lower_roman_period] = ACTIONS(3024), - [sym_list_marker_upper_roman_period] = ACTIONS(3024), - [sym_list_marker_decimal_paren] = ACTIONS(3024), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3024), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3024), - [sym_list_marker_lower_roman_paren] = ACTIONS(3024), - [sym_list_marker_upper_roman_paren] = ACTIONS(3024), - [sym_list_marker_decimal_parens] = ACTIONS(3024), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3024), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3024), - [sym_list_marker_lower_roman_parens] = ACTIONS(3024), - [sym_list_marker_upper_roman_parens] = ACTIONS(3024), - [sym__block_quote_begin] = ACTIONS(3024), - [sym__block_quote_continuation] = ACTIONS(3024), - [sym__thematic_break_dash] = ACTIONS(3024), - [sym__thematic_break_star] = ACTIONS(3024), - [sym__footnote_begin] = ACTIONS(3024), - [sym__verbatim_begin] = ACTIONS(3024), - }, - [487] = { - [anon_sym_LBRACK] = ACTIONS(3110), - [anon_sym_PIPE] = ACTIONS(3108), - [anon_sym_LBRACE] = ACTIONS(3110), - [sym__whitespace1] = ACTIONS(3108), - [anon_sym_BSLASH] = ACTIONS(3110), - [sym_quotation_marks] = ACTIONS(3108), - [sym_ellipsis] = ACTIONS(3108), - [sym_em_dash] = ACTIONS(3108), - [sym_en_dash] = ACTIONS(3110), - [sym_backslash_escape] = ACTIONS(3110), - [anon_sym_LT] = ACTIONS(3108), - [anon_sym_LBRACE_] = ACTIONS(3108), - [anon_sym__] = ACTIONS(3108), - [anon_sym_LBRACE_STAR] = ACTIONS(3108), - [anon_sym_STAR] = ACTIONS(3108), - [anon_sym_LBRACE_EQ] = ACTIONS(3108), - [anon_sym_LBRACE_PLUS] = ACTIONS(3108), - [anon_sym_LBRACE_DASH] = ACTIONS(3108), - [sym_symbol] = ACTIONS(3108), - [anon_sym_LBRACE_CARET] = ACTIONS(3108), - [anon_sym_CARET] = ACTIONS(3108), - [anon_sym_LBRACE_TILDE] = ACTIONS(3108), - [anon_sym_TILDE] = ACTIONS(3108), - [anon_sym_LBRACK_CARET] = ACTIONS(3108), - [anon_sym_BANG_LBRACK] = ACTIONS(3108), - [anon_sym_DOLLAR] = ACTIONS(3108), - [anon_sym_TODO] = ACTIONS(3108), - [anon_sym_WIP] = ACTIONS(3108), - [anon_sym_NOTE] = ACTIONS(3108), - [anon_sym_INFO] = ACTIONS(3108), - [anon_sym_XXX] = ACTIONS(3108), - [sym_fixme] = ACTIONS(3108), - [aux_sym__text_token1] = ACTIONS(3110), - [sym__block_close] = ACTIONS(3108), - [sym__newline] = ACTIONS(3108), - [sym__newline_inline] = ACTIONS(3108), - [sym__heading1_begin] = ACTIONS(3108), - [sym__heading2_begin] = ACTIONS(3108), - [sym__heading3_begin] = ACTIONS(3108), - [sym__heading4_begin] = ACTIONS(3108), - [sym__heading5_begin] = ACTIONS(3108), - [sym__heading6_begin] = ACTIONS(3108), - [sym__div_begin] = ACTIONS(3108), - [sym__code_block_begin] = ACTIONS(3108), - [sym_list_marker_dash] = ACTIONS(3108), - [sym_list_marker_star] = ACTIONS(3108), - [sym_list_marker_plus] = ACTIONS(3108), - [sym__list_marker_task_begin] = ACTIONS(3108), - [sym_list_marker_definition] = ACTIONS(3108), - [sym_list_marker_decimal_period] = ACTIONS(3108), - [sym_list_marker_lower_alpha_period] = ACTIONS(3108), - [sym_list_marker_upper_alpha_period] = ACTIONS(3108), - [sym_list_marker_lower_roman_period] = ACTIONS(3108), - [sym_list_marker_upper_roman_period] = ACTIONS(3108), - [sym_list_marker_decimal_paren] = ACTIONS(3108), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3108), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3108), - [sym_list_marker_lower_roman_paren] = ACTIONS(3108), - [sym_list_marker_upper_roman_paren] = ACTIONS(3108), - [sym_list_marker_decimal_parens] = ACTIONS(3108), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3108), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3108), - [sym_list_marker_lower_roman_parens] = ACTIONS(3108), - [sym_list_marker_upper_roman_parens] = ACTIONS(3108), - [sym__block_quote_begin] = ACTIONS(3108), - [sym__block_quote_continuation] = ACTIONS(3108), - [sym__thematic_break_dash] = ACTIONS(3108), - [sym__thematic_break_star] = ACTIONS(3108), - [sym__footnote_begin] = ACTIONS(3108), - [sym__verbatim_begin] = ACTIONS(3108), - }, - [488] = { - [ts_builtin_sym_end] = ACTIONS(3014), - [anon_sym_LBRACK] = ACTIONS(3012), - [anon_sym_PIPE] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3012), - [sym__whitespace1] = ACTIONS(3014), - [anon_sym_BSLASH] = ACTIONS(3012), - [sym_quotation_marks] = ACTIONS(3014), - [sym_ellipsis] = ACTIONS(3014), - [sym_em_dash] = ACTIONS(3014), - [sym_en_dash] = ACTIONS(3012), - [sym_backslash_escape] = ACTIONS(3012), - [anon_sym_LT] = ACTIONS(3014), - [anon_sym_LBRACE_] = ACTIONS(3014), - [anon_sym__] = ACTIONS(3014), - [anon_sym_LBRACE_STAR] = ACTIONS(3014), - [anon_sym_STAR] = ACTIONS(3014), - [anon_sym_LBRACE_EQ] = ACTIONS(3014), - [anon_sym_LBRACE_PLUS] = ACTIONS(3014), - [anon_sym_LBRACE_DASH] = ACTIONS(3014), - [sym_symbol] = ACTIONS(3014), - [anon_sym_LBRACE_CARET] = ACTIONS(3014), - [anon_sym_CARET] = ACTIONS(3014), - [anon_sym_LBRACE_TILDE] = ACTIONS(3014), - [anon_sym_TILDE] = ACTIONS(3014), - [anon_sym_LBRACK_CARET] = ACTIONS(3014), - [anon_sym_BANG_LBRACK] = ACTIONS(3014), - [anon_sym_DOLLAR] = ACTIONS(3014), - [anon_sym_TODO] = ACTIONS(3014), - [anon_sym_WIP] = ACTIONS(3014), - [anon_sym_NOTE] = ACTIONS(3014), - [anon_sym_INFO] = ACTIONS(3014), - [anon_sym_XXX] = ACTIONS(3014), - [sym_fixme] = ACTIONS(3014), - [aux_sym__text_token1] = ACTIONS(3012), - [sym__newline] = ACTIONS(3014), - [sym__newline_inline] = ACTIONS(3014), - [sym__heading1_begin] = ACTIONS(3014), - [sym__heading2_begin] = ACTIONS(3014), - [sym__heading3_begin] = ACTIONS(3014), - [sym__heading4_begin] = ACTIONS(3014), - [sym__heading5_begin] = ACTIONS(3014), - [sym__heading6_begin] = ACTIONS(3014), - [sym__div_begin] = ACTIONS(3014), - [sym__code_block_begin] = ACTIONS(3014), - [sym_list_marker_dash] = ACTIONS(3014), - [sym_list_marker_star] = ACTIONS(3014), - [sym_list_marker_plus] = ACTIONS(3014), - [sym__list_marker_task_begin] = ACTIONS(3014), - [sym_list_marker_definition] = ACTIONS(3014), - [sym_list_marker_decimal_period] = ACTIONS(3014), - [sym_list_marker_lower_alpha_period] = ACTIONS(3014), - [sym_list_marker_upper_alpha_period] = ACTIONS(3014), - [sym_list_marker_lower_roman_period] = ACTIONS(3014), - [sym_list_marker_upper_roman_period] = ACTIONS(3014), - [sym_list_marker_decimal_paren] = ACTIONS(3014), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3014), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3014), - [sym_list_marker_lower_roman_paren] = ACTIONS(3014), - [sym_list_marker_upper_roman_paren] = ACTIONS(3014), - [sym_list_marker_decimal_parens] = ACTIONS(3014), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3014), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3014), - [sym_list_marker_lower_roman_parens] = ACTIONS(3014), - [sym_list_marker_upper_roman_parens] = ACTIONS(3014), - [sym__block_quote_begin] = ACTIONS(3014), - [sym__block_quote_continuation] = ACTIONS(3014), - [sym__thematic_break_dash] = ACTIONS(3014), - [sym__thematic_break_star] = ACTIONS(3014), - [sym__footnote_begin] = ACTIONS(3014), - [sym__verbatim_begin] = ACTIONS(3014), - }, - [489] = { - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_PIPE] = ACTIONS(3142), - [anon_sym_LBRACE] = ACTIONS(3140), - [sym__whitespace1] = ACTIONS(3142), - [anon_sym_BSLASH] = ACTIONS(3140), - [sym_quotation_marks] = ACTIONS(3142), - [sym_ellipsis] = ACTIONS(3142), - [sym_em_dash] = ACTIONS(3142), - [sym_en_dash] = ACTIONS(3140), - [sym_backslash_escape] = ACTIONS(3140), - [anon_sym_LT] = ACTIONS(3142), - [anon_sym_LBRACE_] = ACTIONS(3142), - [anon_sym__] = ACTIONS(3142), - [anon_sym_LBRACE_STAR] = ACTIONS(3142), - [anon_sym_STAR] = ACTIONS(3142), - [anon_sym_LBRACE_EQ] = ACTIONS(3142), - [anon_sym_LBRACE_PLUS] = ACTIONS(3142), - [anon_sym_LBRACE_DASH] = ACTIONS(3142), - [sym_symbol] = ACTIONS(3142), - [anon_sym_LBRACE_CARET] = ACTIONS(3142), - [anon_sym_CARET] = ACTIONS(3142), - [anon_sym_LBRACE_TILDE] = ACTIONS(3142), - [anon_sym_TILDE] = ACTIONS(3142), - [anon_sym_LBRACK_CARET] = ACTIONS(3142), - [anon_sym_BANG_LBRACK] = ACTIONS(3142), - [anon_sym_DOLLAR] = ACTIONS(3142), - [anon_sym_TODO] = ACTIONS(3142), - [anon_sym_WIP] = ACTIONS(3142), - [anon_sym_NOTE] = ACTIONS(3142), - [anon_sym_INFO] = ACTIONS(3142), - [anon_sym_XXX] = ACTIONS(3142), - [sym_fixme] = ACTIONS(3142), - [aux_sym__text_token1] = ACTIONS(3140), - [sym__block_close] = ACTIONS(3142), - [sym__newline] = ACTIONS(3142), - [sym__newline_inline] = ACTIONS(3142), - [sym__heading1_begin] = ACTIONS(3142), - [sym__heading2_begin] = ACTIONS(3142), - [sym__heading3_begin] = ACTIONS(3142), - [sym__heading4_begin] = ACTIONS(3142), - [sym__heading5_begin] = ACTIONS(3142), - [sym__heading6_begin] = ACTIONS(3142), - [sym__div_begin] = ACTIONS(3142), - [sym__code_block_begin] = ACTIONS(3142), - [sym_list_marker_dash] = ACTIONS(3142), - [sym_list_marker_star] = ACTIONS(3142), - [sym_list_marker_plus] = ACTIONS(3142), - [sym__list_marker_task_begin] = ACTIONS(3142), - [sym_list_marker_definition] = ACTIONS(3142), - [sym_list_marker_decimal_period] = ACTIONS(3142), - [sym_list_marker_lower_alpha_period] = ACTIONS(3142), - [sym_list_marker_upper_alpha_period] = ACTIONS(3142), - [sym_list_marker_lower_roman_period] = ACTIONS(3142), - [sym_list_marker_upper_roman_period] = ACTIONS(3142), - [sym_list_marker_decimal_paren] = ACTIONS(3142), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3142), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3142), - [sym_list_marker_lower_roman_paren] = ACTIONS(3142), - [sym_list_marker_upper_roman_paren] = ACTIONS(3142), - [sym_list_marker_decimal_parens] = ACTIONS(3142), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3142), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3142), - [sym_list_marker_lower_roman_parens] = ACTIONS(3142), - [sym_list_marker_upper_roman_parens] = ACTIONS(3142), - [sym__block_quote_begin] = ACTIONS(3142), - [sym__block_quote_continuation] = ACTIONS(3142), - [sym__thematic_break_dash] = ACTIONS(3142), - [sym__thematic_break_star] = ACTIONS(3142), - [sym__footnote_begin] = ACTIONS(3142), - [sym__verbatim_begin] = ACTIONS(3142), - }, - [490] = { - [anon_sym_LBRACK] = ACTIONS(3048), - [anon_sym_PIPE] = ACTIONS(3050), - [anon_sym_LBRACE] = ACTIONS(3048), - [sym__whitespace1] = ACTIONS(3050), - [anon_sym_BSLASH] = ACTIONS(3048), - [sym_quotation_marks] = ACTIONS(3050), - [sym_ellipsis] = ACTIONS(3050), - [sym_em_dash] = ACTIONS(3050), - [sym_en_dash] = ACTIONS(3048), - [sym_backslash_escape] = ACTIONS(3048), - [anon_sym_LT] = ACTIONS(3050), - [anon_sym_LBRACE_] = ACTIONS(3050), - [anon_sym__] = ACTIONS(3050), - [anon_sym_LBRACE_STAR] = ACTIONS(3050), - [anon_sym_STAR] = ACTIONS(3050), - [anon_sym_LBRACE_EQ] = ACTIONS(3050), - [anon_sym_LBRACE_PLUS] = ACTIONS(3050), - [anon_sym_LBRACE_DASH] = ACTIONS(3050), - [sym_symbol] = ACTIONS(3050), - [anon_sym_LBRACE_CARET] = ACTIONS(3050), - [anon_sym_CARET] = ACTIONS(3050), - [anon_sym_LBRACE_TILDE] = ACTIONS(3050), - [anon_sym_TILDE] = ACTIONS(3050), - [anon_sym_LBRACK_CARET] = ACTIONS(3050), - [anon_sym_BANG_LBRACK] = ACTIONS(3050), - [anon_sym_DOLLAR] = ACTIONS(3050), - [anon_sym_TODO] = ACTIONS(3050), - [anon_sym_WIP] = ACTIONS(3050), - [anon_sym_NOTE] = ACTIONS(3050), - [anon_sym_INFO] = ACTIONS(3050), - [anon_sym_XXX] = ACTIONS(3050), - [sym_fixme] = ACTIONS(3050), - [aux_sym__text_token1] = ACTIONS(3048), - [sym__block_close] = ACTIONS(3050), - [sym__newline] = ACTIONS(3050), - [sym__newline_inline] = ACTIONS(3050), - [sym__heading1_begin] = ACTIONS(3050), - [sym__heading2_begin] = ACTIONS(3050), - [sym__heading3_begin] = ACTIONS(3050), - [sym__heading4_begin] = ACTIONS(3050), - [sym__heading5_begin] = ACTIONS(3050), - [sym__heading6_begin] = ACTIONS(3050), - [sym__div_begin] = ACTIONS(3050), - [sym__code_block_begin] = ACTIONS(3050), - [sym_list_marker_dash] = ACTIONS(3050), - [sym_list_marker_star] = ACTIONS(3050), - [sym_list_marker_plus] = ACTIONS(3050), - [sym__list_marker_task_begin] = ACTIONS(3050), - [sym_list_marker_definition] = ACTIONS(3050), - [sym_list_marker_decimal_period] = ACTIONS(3050), - [sym_list_marker_lower_alpha_period] = ACTIONS(3050), - [sym_list_marker_upper_alpha_period] = ACTIONS(3050), - [sym_list_marker_lower_roman_period] = ACTIONS(3050), - [sym_list_marker_upper_roman_period] = ACTIONS(3050), - [sym_list_marker_decimal_paren] = ACTIONS(3050), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3050), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3050), - [sym_list_marker_lower_roman_paren] = ACTIONS(3050), - [sym_list_marker_upper_roman_paren] = ACTIONS(3050), - [sym_list_marker_decimal_parens] = ACTIONS(3050), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3050), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3050), - [sym_list_marker_lower_roman_parens] = ACTIONS(3050), - [sym_list_marker_upper_roman_parens] = ACTIONS(3050), - [sym__block_quote_begin] = ACTIONS(3050), - [sym__block_quote_continuation] = ACTIONS(3050), - [sym__thematic_break_dash] = ACTIONS(3050), - [sym__thematic_break_star] = ACTIONS(3050), - [sym__footnote_begin] = ACTIONS(3050), - [sym__verbatim_begin] = ACTIONS(3050), - }, - [491] = { - [anon_sym_LBRACK] = ACTIONS(3082), - [anon_sym_PIPE] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(3082), - [sym__whitespace1] = ACTIONS(3080), - [anon_sym_BSLASH] = ACTIONS(3082), - [sym_quotation_marks] = ACTIONS(3080), - [sym_ellipsis] = ACTIONS(3080), - [sym_em_dash] = ACTIONS(3080), - [sym_en_dash] = ACTIONS(3082), - [sym_backslash_escape] = ACTIONS(3082), - [anon_sym_LT] = ACTIONS(3080), - [anon_sym_LBRACE_] = ACTIONS(3080), - [anon_sym__] = ACTIONS(3080), - [anon_sym_LBRACE_STAR] = ACTIONS(3080), - [anon_sym_STAR] = ACTIONS(3080), - [anon_sym_LBRACE_EQ] = ACTIONS(3080), - [anon_sym_LBRACE_PLUS] = ACTIONS(3080), - [anon_sym_LBRACE_DASH] = ACTIONS(3080), - [sym_symbol] = ACTIONS(3080), - [anon_sym_LBRACE_CARET] = ACTIONS(3080), - [anon_sym_CARET] = ACTIONS(3080), - [anon_sym_LBRACE_TILDE] = ACTIONS(3080), - [anon_sym_TILDE] = ACTIONS(3080), - [anon_sym_LBRACK_CARET] = ACTIONS(3080), - [anon_sym_BANG_LBRACK] = ACTIONS(3080), - [anon_sym_DOLLAR] = ACTIONS(3080), - [anon_sym_TODO] = ACTIONS(3080), - [anon_sym_WIP] = ACTIONS(3080), - [anon_sym_NOTE] = ACTIONS(3080), - [anon_sym_INFO] = ACTIONS(3080), - [anon_sym_XXX] = ACTIONS(3080), - [sym_fixme] = ACTIONS(3080), - [aux_sym__text_token1] = ACTIONS(3082), - [sym__block_close] = ACTIONS(3080), - [sym__newline] = ACTIONS(3080), - [sym__newline_inline] = ACTIONS(3080), - [sym__heading1_begin] = ACTIONS(3080), - [sym__heading2_begin] = ACTIONS(3080), - [sym__heading3_begin] = ACTIONS(3080), - [sym__heading4_begin] = ACTIONS(3080), - [sym__heading5_begin] = ACTIONS(3080), - [sym__heading6_begin] = ACTIONS(3080), - [sym__div_begin] = ACTIONS(3080), - [sym__code_block_begin] = ACTIONS(3080), - [sym_list_marker_dash] = ACTIONS(3080), - [sym_list_marker_star] = ACTIONS(3080), - [sym_list_marker_plus] = ACTIONS(3080), - [sym__list_marker_task_begin] = ACTIONS(3080), - [sym_list_marker_definition] = ACTIONS(3080), - [sym_list_marker_decimal_period] = ACTIONS(3080), - [sym_list_marker_lower_alpha_period] = ACTIONS(3080), - [sym_list_marker_upper_alpha_period] = ACTIONS(3080), - [sym_list_marker_lower_roman_period] = ACTIONS(3080), - [sym_list_marker_upper_roman_period] = ACTIONS(3080), - [sym_list_marker_decimal_paren] = ACTIONS(3080), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3080), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3080), - [sym_list_marker_lower_roman_paren] = ACTIONS(3080), - [sym_list_marker_upper_roman_paren] = ACTIONS(3080), - [sym_list_marker_decimal_parens] = ACTIONS(3080), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3080), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3080), - [sym_list_marker_lower_roman_parens] = ACTIONS(3080), - [sym_list_marker_upper_roman_parens] = ACTIONS(3080), - [sym__block_quote_begin] = ACTIONS(3080), - [sym__block_quote_continuation] = ACTIONS(3080), - [sym__thematic_break_dash] = ACTIONS(3080), - [sym__thematic_break_star] = ACTIONS(3080), - [sym__footnote_begin] = ACTIONS(3080), - [sym__verbatim_begin] = ACTIONS(3080), - }, - [492] = { - [anon_sym_LBRACK] = ACTIONS(3136), - [anon_sym_PIPE] = ACTIONS(3138), - [anon_sym_LBRACE] = ACTIONS(3136), - [sym__whitespace1] = ACTIONS(3138), - [anon_sym_BSLASH] = ACTIONS(3136), - [sym_quotation_marks] = ACTIONS(3138), - [sym_ellipsis] = ACTIONS(3138), - [sym_em_dash] = ACTIONS(3138), - [sym_en_dash] = ACTIONS(3136), - [sym_backslash_escape] = ACTIONS(3136), - [anon_sym_LT] = ACTIONS(3138), - [anon_sym_LBRACE_] = ACTIONS(3138), - [anon_sym__] = ACTIONS(3138), - [anon_sym_LBRACE_STAR] = ACTIONS(3138), - [anon_sym_STAR] = ACTIONS(3138), - [anon_sym_LBRACE_EQ] = ACTIONS(3138), - [anon_sym_LBRACE_PLUS] = ACTIONS(3138), - [anon_sym_LBRACE_DASH] = ACTIONS(3138), - [sym_symbol] = ACTIONS(3138), - [anon_sym_LBRACE_CARET] = ACTIONS(3138), - [anon_sym_CARET] = ACTIONS(3138), - [anon_sym_LBRACE_TILDE] = ACTIONS(3138), - [anon_sym_TILDE] = ACTIONS(3138), - [anon_sym_LBRACK_CARET] = ACTIONS(3138), - [anon_sym_BANG_LBRACK] = ACTIONS(3138), - [anon_sym_DOLLAR] = ACTIONS(3138), - [anon_sym_TODO] = ACTIONS(3138), - [anon_sym_WIP] = ACTIONS(3138), - [anon_sym_NOTE] = ACTIONS(3138), - [anon_sym_INFO] = ACTIONS(3138), - [anon_sym_XXX] = ACTIONS(3138), - [sym_fixme] = ACTIONS(3138), - [aux_sym__text_token1] = ACTIONS(3136), - [sym__newline] = ACTIONS(3138), - [sym__newline_inline] = ACTIONS(3138), - [sym__heading1_begin] = ACTIONS(3138), - [sym__heading2_begin] = ACTIONS(3138), - [sym__heading3_begin] = ACTIONS(3138), - [sym__heading4_begin] = ACTIONS(3138), - [sym__heading5_begin] = ACTIONS(3138), - [sym__heading6_begin] = ACTIONS(3138), - [sym__div_begin] = ACTIONS(3138), - [sym__code_block_begin] = ACTIONS(3138), - [sym_list_marker_dash] = ACTIONS(3138), - [sym_list_marker_star] = ACTIONS(3138), - [sym_list_marker_plus] = ACTIONS(3138), - [sym__list_marker_task_begin] = ACTIONS(3138), - [sym_list_marker_definition] = ACTIONS(3138), - [sym_list_marker_decimal_period] = ACTIONS(3138), - [sym_list_marker_lower_alpha_period] = ACTIONS(3138), - [sym_list_marker_upper_alpha_period] = ACTIONS(3138), - [sym_list_marker_lower_roman_period] = ACTIONS(3138), - [sym_list_marker_upper_roman_period] = ACTIONS(3138), - [sym_list_marker_decimal_paren] = ACTIONS(3138), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3138), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3138), - [sym_list_marker_lower_roman_paren] = ACTIONS(3138), - [sym_list_marker_upper_roman_paren] = ACTIONS(3138), - [sym_list_marker_decimal_parens] = ACTIONS(3138), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3138), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3138), - [sym_list_marker_lower_roman_parens] = ACTIONS(3138), - [sym_list_marker_upper_roman_parens] = ACTIONS(3138), - [sym__block_quote_begin] = ACTIONS(3138), - [sym__block_quote_continuation] = ACTIONS(3138), - [sym__thematic_break_dash] = ACTIONS(3138), - [sym__thematic_break_star] = ACTIONS(3138), - [sym__footnote_begin] = ACTIONS(3138), - [sym__footnote_end] = ACTIONS(3138), - [sym__verbatim_begin] = ACTIONS(3138), - }, - [493] = { - [ts_builtin_sym_end] = ACTIONS(2958), - [anon_sym_LBRACK] = ACTIONS(2956), - [anon_sym_PIPE] = ACTIONS(2958), - [anon_sym_LBRACE] = ACTIONS(2956), - [sym__whitespace1] = ACTIONS(2958), - [anon_sym_BSLASH] = ACTIONS(2956), - [sym_quotation_marks] = ACTIONS(2958), - [sym_ellipsis] = ACTIONS(2958), - [sym_em_dash] = ACTIONS(2958), - [sym_en_dash] = ACTIONS(2956), - [sym_backslash_escape] = ACTIONS(2956), - [anon_sym_LT] = ACTIONS(2958), - [anon_sym_LBRACE_] = ACTIONS(2958), - [anon_sym__] = ACTIONS(2958), - [anon_sym_LBRACE_STAR] = ACTIONS(2958), - [anon_sym_STAR] = ACTIONS(2958), - [anon_sym_LBRACE_EQ] = ACTIONS(2958), - [anon_sym_LBRACE_PLUS] = ACTIONS(2958), - [anon_sym_LBRACE_DASH] = ACTIONS(2958), - [sym_symbol] = ACTIONS(2958), - [anon_sym_LBRACE_CARET] = ACTIONS(2958), - [anon_sym_CARET] = ACTIONS(2958), - [anon_sym_LBRACE_TILDE] = ACTIONS(2958), - [anon_sym_TILDE] = ACTIONS(2958), - [anon_sym_LBRACK_CARET] = ACTIONS(2958), - [anon_sym_BANG_LBRACK] = ACTIONS(2958), - [anon_sym_DOLLAR] = ACTIONS(2958), - [anon_sym_TODO] = ACTIONS(2958), - [anon_sym_WIP] = ACTIONS(2958), - [anon_sym_NOTE] = ACTIONS(2958), - [anon_sym_INFO] = ACTIONS(2958), - [anon_sym_XXX] = ACTIONS(2958), - [sym_fixme] = ACTIONS(2958), - [aux_sym__text_token1] = ACTIONS(2956), - [sym__newline] = ACTIONS(2958), - [sym__newline_inline] = ACTIONS(2958), - [sym__heading1_begin] = ACTIONS(2958), - [sym__heading2_begin] = ACTIONS(2958), - [sym__heading3_begin] = ACTIONS(2958), - [sym__heading4_begin] = ACTIONS(2958), - [sym__heading5_begin] = ACTIONS(2958), - [sym__heading6_begin] = ACTIONS(2958), - [sym__div_begin] = ACTIONS(2958), - [sym__code_block_begin] = ACTIONS(2958), - [sym_list_marker_dash] = ACTIONS(2958), - [sym_list_marker_star] = ACTIONS(2958), - [sym_list_marker_plus] = ACTIONS(2958), - [sym__list_marker_task_begin] = ACTIONS(2958), - [sym_list_marker_definition] = ACTIONS(2958), - [sym_list_marker_decimal_period] = ACTIONS(2958), - [sym_list_marker_lower_alpha_period] = ACTIONS(2958), - [sym_list_marker_upper_alpha_period] = ACTIONS(2958), - [sym_list_marker_lower_roman_period] = ACTIONS(2958), - [sym_list_marker_upper_roman_period] = ACTIONS(2958), - [sym_list_marker_decimal_paren] = ACTIONS(2958), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2958), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2958), - [sym_list_marker_lower_roman_paren] = ACTIONS(2958), - [sym_list_marker_upper_roman_paren] = ACTIONS(2958), - [sym_list_marker_decimal_parens] = ACTIONS(2958), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2958), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2958), - [sym_list_marker_lower_roman_parens] = ACTIONS(2958), - [sym_list_marker_upper_roman_parens] = ACTIONS(2958), - [sym__block_quote_begin] = ACTIONS(2958), - [sym__block_quote_continuation] = ACTIONS(2958), - [sym__thematic_break_dash] = ACTIONS(2958), - [sym__thematic_break_star] = ACTIONS(2958), - [sym__footnote_begin] = ACTIONS(2958), - [sym__verbatim_begin] = ACTIONS(2958), - }, - [494] = { - [anon_sym_LBRACK] = ACTIONS(2980), - [anon_sym_PIPE] = ACTIONS(2982), - [anon_sym_LBRACE] = ACTIONS(2980), - [sym__whitespace1] = ACTIONS(2982), - [anon_sym_BSLASH] = ACTIONS(2980), - [sym_quotation_marks] = ACTIONS(2982), - [sym_ellipsis] = ACTIONS(2982), - [sym_em_dash] = ACTIONS(2982), - [sym_en_dash] = ACTIONS(2980), - [sym_backslash_escape] = ACTIONS(2980), - [anon_sym_LT] = ACTIONS(2982), - [anon_sym_LBRACE_] = ACTIONS(2982), - [anon_sym__] = ACTIONS(2982), - [anon_sym_LBRACE_STAR] = ACTIONS(2982), - [anon_sym_STAR] = ACTIONS(2982), - [anon_sym_LBRACE_EQ] = ACTIONS(2982), - [anon_sym_LBRACE_PLUS] = ACTIONS(2982), - [anon_sym_LBRACE_DASH] = ACTIONS(2982), - [sym_symbol] = ACTIONS(2982), - [anon_sym_LBRACE_CARET] = ACTIONS(2982), - [anon_sym_CARET] = ACTIONS(2982), - [anon_sym_LBRACE_TILDE] = ACTIONS(2982), - [anon_sym_TILDE] = ACTIONS(2982), - [anon_sym_LBRACK_CARET] = ACTIONS(2982), - [anon_sym_BANG_LBRACK] = ACTIONS(2982), - [anon_sym_DOLLAR] = ACTIONS(2982), - [anon_sym_TODO] = ACTIONS(2982), - [anon_sym_WIP] = ACTIONS(2982), - [anon_sym_NOTE] = ACTIONS(2982), - [anon_sym_INFO] = ACTIONS(2982), - [anon_sym_XXX] = ACTIONS(2982), - [sym_fixme] = ACTIONS(2982), - [aux_sym__text_token1] = ACTIONS(2980), - [sym__newline] = ACTIONS(2982), - [sym__newline_inline] = ACTIONS(2982), - [sym__heading1_begin] = ACTIONS(2982), - [sym__heading2_begin] = ACTIONS(2982), - [sym__heading3_begin] = ACTIONS(2982), - [sym__heading4_begin] = ACTIONS(2982), - [sym__heading5_begin] = ACTIONS(2982), - [sym__heading6_begin] = ACTIONS(2982), - [sym__div_begin] = ACTIONS(2982), - [sym__code_block_begin] = ACTIONS(2982), - [sym_list_marker_dash] = ACTIONS(2982), - [sym_list_marker_star] = ACTIONS(2982), - [sym_list_marker_plus] = ACTIONS(2982), - [sym__list_marker_task_begin] = ACTIONS(2982), - [sym_list_marker_definition] = ACTIONS(2982), - [sym_list_marker_decimal_period] = ACTIONS(2982), - [sym_list_marker_lower_alpha_period] = ACTIONS(2982), - [sym_list_marker_upper_alpha_period] = ACTIONS(2982), - [sym_list_marker_lower_roman_period] = ACTIONS(2982), - [sym_list_marker_upper_roman_period] = ACTIONS(2982), - [sym_list_marker_decimal_paren] = ACTIONS(2982), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2982), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2982), - [sym_list_marker_lower_roman_paren] = ACTIONS(2982), - [sym_list_marker_upper_roman_paren] = ACTIONS(2982), - [sym_list_marker_decimal_parens] = ACTIONS(2982), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2982), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2982), - [sym_list_marker_lower_roman_parens] = ACTIONS(2982), - [sym_list_marker_upper_roman_parens] = ACTIONS(2982), - [sym__block_quote_begin] = ACTIONS(2982), - [sym__block_quote_continuation] = ACTIONS(2982), - [sym__thematic_break_dash] = ACTIONS(2982), - [sym__thematic_break_star] = ACTIONS(2982), - [sym__footnote_begin] = ACTIONS(2982), - [sym__footnote_end] = ACTIONS(2982), - [sym__verbatim_begin] = ACTIONS(2982), - }, - [495] = { - [anon_sym_LBRACK] = ACTIONS(3124), - [anon_sym_PIPE] = ACTIONS(3126), - [anon_sym_LBRACE] = ACTIONS(3124), - [sym__whitespace1] = ACTIONS(3126), - [anon_sym_BSLASH] = ACTIONS(3124), - [sym_quotation_marks] = ACTIONS(3126), - [sym_ellipsis] = ACTIONS(3126), - [sym_em_dash] = ACTIONS(3126), - [sym_en_dash] = ACTIONS(3124), - [sym_backslash_escape] = ACTIONS(3124), - [anon_sym_LT] = ACTIONS(3126), - [anon_sym_LBRACE_] = ACTIONS(3126), - [anon_sym__] = ACTIONS(3126), - [anon_sym_LBRACE_STAR] = ACTIONS(3126), - [anon_sym_STAR] = ACTIONS(3126), - [anon_sym_LBRACE_EQ] = ACTIONS(3126), - [anon_sym_LBRACE_PLUS] = ACTIONS(3126), - [anon_sym_LBRACE_DASH] = ACTIONS(3126), - [sym_symbol] = ACTIONS(3126), - [anon_sym_LBRACE_CARET] = ACTIONS(3126), - [anon_sym_CARET] = ACTIONS(3126), - [anon_sym_LBRACE_TILDE] = ACTIONS(3126), - [anon_sym_TILDE] = ACTIONS(3126), - [anon_sym_LBRACK_CARET] = ACTIONS(3126), - [anon_sym_BANG_LBRACK] = ACTIONS(3126), - [anon_sym_DOLLAR] = ACTIONS(3126), - [anon_sym_TODO] = ACTIONS(3126), - [anon_sym_WIP] = ACTIONS(3126), - [anon_sym_NOTE] = ACTIONS(3126), - [anon_sym_INFO] = ACTIONS(3126), - [anon_sym_XXX] = ACTIONS(3126), - [sym_fixme] = ACTIONS(3126), - [aux_sym__text_token1] = ACTIONS(3124), - [sym__newline] = ACTIONS(3126), - [sym__newline_inline] = ACTIONS(3126), - [sym__heading1_begin] = ACTIONS(3126), - [sym__heading2_begin] = ACTIONS(3126), - [sym__heading3_begin] = ACTIONS(3126), - [sym__heading4_begin] = ACTIONS(3126), - [sym__heading5_begin] = ACTIONS(3126), - [sym__heading6_begin] = ACTIONS(3126), - [sym__div_begin] = ACTIONS(3126), - [sym__code_block_begin] = ACTIONS(3126), - [sym_list_marker_dash] = ACTIONS(3126), - [sym_list_marker_star] = ACTIONS(3126), - [sym_list_marker_plus] = ACTIONS(3126), - [sym__list_marker_task_begin] = ACTIONS(3126), - [sym_list_marker_definition] = ACTIONS(3126), - [sym_list_marker_decimal_period] = ACTIONS(3126), - [sym_list_marker_lower_alpha_period] = ACTIONS(3126), - [sym_list_marker_upper_alpha_period] = ACTIONS(3126), - [sym_list_marker_lower_roman_period] = ACTIONS(3126), - [sym_list_marker_upper_roman_period] = ACTIONS(3126), - [sym_list_marker_decimal_paren] = ACTIONS(3126), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3126), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3126), - [sym_list_marker_lower_roman_paren] = ACTIONS(3126), - [sym_list_marker_upper_roman_paren] = ACTIONS(3126), - [sym_list_marker_decimal_parens] = ACTIONS(3126), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3126), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3126), - [sym_list_marker_lower_roman_parens] = ACTIONS(3126), - [sym_list_marker_upper_roman_parens] = ACTIONS(3126), - [sym__block_quote_begin] = ACTIONS(3126), - [sym__block_quote_continuation] = ACTIONS(3126), - [sym__thematic_break_dash] = ACTIONS(3126), - [sym__thematic_break_star] = ACTIONS(3126), - [sym__footnote_begin] = ACTIONS(3126), - [sym__footnote_end] = ACTIONS(3126), - [sym__verbatim_begin] = ACTIONS(3126), - }, - [496] = { - [anon_sym_LBRACK] = ACTIONS(2964), - [anon_sym_PIPE] = ACTIONS(2966), - [anon_sym_LBRACE] = ACTIONS(2964), - [sym__whitespace1] = ACTIONS(2966), - [anon_sym_BSLASH] = ACTIONS(2964), - [sym_quotation_marks] = ACTIONS(2966), - [sym_ellipsis] = ACTIONS(2966), - [sym_em_dash] = ACTIONS(2966), - [sym_en_dash] = ACTIONS(2964), - [sym_backslash_escape] = ACTIONS(2964), - [anon_sym_LT] = ACTIONS(2966), - [anon_sym_LBRACE_] = ACTIONS(2966), - [anon_sym__] = ACTIONS(2966), - [anon_sym_LBRACE_STAR] = ACTIONS(2966), - [anon_sym_STAR] = ACTIONS(2966), - [anon_sym_LBRACE_EQ] = ACTIONS(2966), - [anon_sym_LBRACE_PLUS] = ACTIONS(2966), - [anon_sym_LBRACE_DASH] = ACTIONS(2966), - [sym_symbol] = ACTIONS(2966), - [anon_sym_LBRACE_CARET] = ACTIONS(2966), - [anon_sym_CARET] = ACTIONS(2966), - [anon_sym_LBRACE_TILDE] = ACTIONS(2966), - [anon_sym_TILDE] = ACTIONS(2966), - [anon_sym_LBRACK_CARET] = ACTIONS(2966), - [anon_sym_BANG_LBRACK] = ACTIONS(2966), - [anon_sym_DOLLAR] = ACTIONS(2966), - [anon_sym_TODO] = ACTIONS(2966), - [anon_sym_WIP] = ACTIONS(2966), - [anon_sym_NOTE] = ACTIONS(2966), - [anon_sym_INFO] = ACTIONS(2966), - [anon_sym_XXX] = ACTIONS(2966), - [sym_fixme] = ACTIONS(2966), - [aux_sym__text_token1] = ACTIONS(2964), - [sym__newline] = ACTIONS(2966), - [sym__newline_inline] = ACTIONS(2966), - [sym__heading1_begin] = ACTIONS(2966), - [sym__heading2_begin] = ACTIONS(2966), - [sym__heading3_begin] = ACTIONS(2966), - [sym__heading4_begin] = ACTIONS(2966), - [sym__heading5_begin] = ACTIONS(2966), - [sym__heading6_begin] = ACTIONS(2966), - [sym__div_begin] = ACTIONS(2966), - [sym__code_block_begin] = ACTIONS(2966), - [sym_list_marker_dash] = ACTIONS(2966), - [sym_list_marker_star] = ACTIONS(2966), - [sym_list_marker_plus] = ACTIONS(2966), - [sym__list_marker_task_begin] = ACTIONS(2966), - [sym_list_marker_definition] = ACTIONS(2966), - [sym_list_marker_decimal_period] = ACTIONS(2966), - [sym_list_marker_lower_alpha_period] = ACTIONS(2966), - [sym_list_marker_upper_alpha_period] = ACTIONS(2966), - [sym_list_marker_lower_roman_period] = ACTIONS(2966), - [sym_list_marker_upper_roman_period] = ACTIONS(2966), - [sym_list_marker_decimal_paren] = ACTIONS(2966), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2966), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2966), - [sym_list_marker_lower_roman_paren] = ACTIONS(2966), - [sym_list_marker_upper_roman_paren] = ACTIONS(2966), - [sym_list_marker_decimal_parens] = ACTIONS(2966), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2966), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2966), - [sym_list_marker_lower_roman_parens] = ACTIONS(2966), - [sym_list_marker_upper_roman_parens] = ACTIONS(2966), - [sym__block_quote_begin] = ACTIONS(2966), - [sym__block_quote_continuation] = ACTIONS(2966), - [sym__thematic_break_dash] = ACTIONS(2966), - [sym__thematic_break_star] = ACTIONS(2966), - [sym__footnote_begin] = ACTIONS(2966), - [sym__footnote_end] = ACTIONS(2966), - [sym__verbatim_begin] = ACTIONS(2966), - }, - [497] = { - [anon_sym_LBRACK] = ACTIONS(2972), - [anon_sym_PIPE] = ACTIONS(2974), - [anon_sym_LBRACE] = ACTIONS(2972), - [sym__whitespace1] = ACTIONS(2974), - [anon_sym_BSLASH] = ACTIONS(2972), - [sym_quotation_marks] = ACTIONS(2974), - [sym_ellipsis] = ACTIONS(2974), - [sym_em_dash] = ACTIONS(2974), - [sym_en_dash] = ACTIONS(2972), - [sym_backslash_escape] = ACTIONS(2972), - [anon_sym_LT] = ACTIONS(2974), - [anon_sym_LBRACE_] = ACTIONS(2974), - [anon_sym__] = ACTIONS(2974), - [anon_sym_LBRACE_STAR] = ACTIONS(2974), - [anon_sym_STAR] = ACTIONS(2974), - [anon_sym_LBRACE_EQ] = ACTIONS(2974), - [anon_sym_LBRACE_PLUS] = ACTIONS(2974), - [anon_sym_LBRACE_DASH] = ACTIONS(2974), - [sym_symbol] = ACTIONS(2974), - [anon_sym_LBRACE_CARET] = ACTIONS(2974), - [anon_sym_CARET] = ACTIONS(2974), - [anon_sym_LBRACE_TILDE] = ACTIONS(2974), - [anon_sym_TILDE] = ACTIONS(2974), - [anon_sym_LBRACK_CARET] = ACTIONS(2974), - [anon_sym_BANG_LBRACK] = ACTIONS(2974), - [anon_sym_DOLLAR] = ACTIONS(2974), - [anon_sym_TODO] = ACTIONS(2974), - [anon_sym_WIP] = ACTIONS(2974), - [anon_sym_NOTE] = ACTIONS(2974), - [anon_sym_INFO] = ACTIONS(2974), - [anon_sym_XXX] = ACTIONS(2974), - [sym_fixme] = ACTIONS(2974), - [aux_sym__text_token1] = ACTIONS(2972), - [sym__newline] = ACTIONS(2974), - [sym__newline_inline] = ACTIONS(2974), - [sym__heading1_begin] = ACTIONS(2974), - [sym__heading2_begin] = ACTIONS(2974), - [sym__heading3_begin] = ACTIONS(2974), - [sym__heading4_begin] = ACTIONS(2974), - [sym__heading5_begin] = ACTIONS(2974), - [sym__heading6_begin] = ACTIONS(2974), - [sym__div_begin] = ACTIONS(2974), - [sym__code_block_begin] = ACTIONS(2974), - [sym_list_marker_dash] = ACTIONS(2974), - [sym_list_marker_star] = ACTIONS(2974), - [sym_list_marker_plus] = ACTIONS(2974), - [sym__list_marker_task_begin] = ACTIONS(2974), - [sym_list_marker_definition] = ACTIONS(2974), - [sym_list_marker_decimal_period] = ACTIONS(2974), - [sym_list_marker_lower_alpha_period] = ACTIONS(2974), - [sym_list_marker_upper_alpha_period] = ACTIONS(2974), - [sym_list_marker_lower_roman_period] = ACTIONS(2974), - [sym_list_marker_upper_roman_period] = ACTIONS(2974), - [sym_list_marker_decimal_paren] = ACTIONS(2974), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2974), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2974), - [sym_list_marker_lower_roman_paren] = ACTIONS(2974), - [sym_list_marker_upper_roman_paren] = ACTIONS(2974), - [sym_list_marker_decimal_parens] = ACTIONS(2974), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2974), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2974), - [sym_list_marker_lower_roman_parens] = ACTIONS(2974), - [sym_list_marker_upper_roman_parens] = ACTIONS(2974), - [sym__block_quote_begin] = ACTIONS(2974), - [sym__block_quote_continuation] = ACTIONS(2974), - [sym__thematic_break_dash] = ACTIONS(2974), - [sym__thematic_break_star] = ACTIONS(2974), - [sym__footnote_begin] = ACTIONS(2974), - [sym__footnote_end] = ACTIONS(2974), - [sym__verbatim_begin] = ACTIONS(2974), - }, - [498] = { - [anon_sym_LBRACK] = ACTIONS(2996), - [anon_sym_PIPE] = ACTIONS(2998), - [anon_sym_LBRACE] = ACTIONS(2996), - [sym__whitespace1] = ACTIONS(2998), - [anon_sym_BSLASH] = ACTIONS(2996), - [sym_quotation_marks] = ACTIONS(2998), - [sym_ellipsis] = ACTIONS(2998), - [sym_em_dash] = ACTIONS(2998), - [sym_en_dash] = ACTIONS(2996), - [sym_backslash_escape] = ACTIONS(2996), - [anon_sym_LT] = ACTIONS(2998), - [anon_sym_LBRACE_] = ACTIONS(2998), - [anon_sym__] = ACTIONS(2998), - [anon_sym_LBRACE_STAR] = ACTIONS(2998), - [anon_sym_STAR] = ACTIONS(2998), - [anon_sym_LBRACE_EQ] = ACTIONS(2998), - [anon_sym_LBRACE_PLUS] = ACTIONS(2998), - [anon_sym_LBRACE_DASH] = ACTIONS(2998), - [sym_symbol] = ACTIONS(2998), - [anon_sym_LBRACE_CARET] = ACTIONS(2998), - [anon_sym_CARET] = ACTIONS(2998), - [anon_sym_LBRACE_TILDE] = ACTIONS(2998), - [anon_sym_TILDE] = ACTIONS(2998), - [anon_sym_LBRACK_CARET] = ACTIONS(2998), - [anon_sym_BANG_LBRACK] = ACTIONS(2998), - [anon_sym_DOLLAR] = ACTIONS(2998), - [anon_sym_TODO] = ACTIONS(2998), - [anon_sym_WIP] = ACTIONS(2998), - [anon_sym_NOTE] = ACTIONS(2998), - [anon_sym_INFO] = ACTIONS(2998), - [anon_sym_XXX] = ACTIONS(2998), - [sym_fixme] = ACTIONS(2998), - [aux_sym__text_token1] = ACTIONS(2996), - [sym__newline] = ACTIONS(2998), - [sym__newline_inline] = ACTIONS(2998), - [sym__heading1_begin] = ACTIONS(2998), - [sym__heading2_begin] = ACTIONS(2998), - [sym__heading3_begin] = ACTIONS(2998), - [sym__heading4_begin] = ACTIONS(2998), - [sym__heading5_begin] = ACTIONS(2998), - [sym__heading6_begin] = ACTIONS(2998), - [sym__div_begin] = ACTIONS(2998), - [sym__code_block_begin] = ACTIONS(2998), - [sym_list_marker_dash] = ACTIONS(2998), - [sym_list_marker_star] = ACTIONS(2998), - [sym_list_marker_plus] = ACTIONS(2998), - [sym__list_marker_task_begin] = ACTIONS(2998), - [sym_list_marker_definition] = ACTIONS(2998), - [sym_list_marker_decimal_period] = ACTIONS(2998), - [sym_list_marker_lower_alpha_period] = ACTIONS(2998), - [sym_list_marker_upper_alpha_period] = ACTIONS(2998), - [sym_list_marker_lower_roman_period] = ACTIONS(2998), - [sym_list_marker_upper_roman_period] = ACTIONS(2998), - [sym_list_marker_decimal_paren] = ACTIONS(2998), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2998), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2998), - [sym_list_marker_lower_roman_paren] = ACTIONS(2998), - [sym_list_marker_upper_roman_paren] = ACTIONS(2998), - [sym_list_marker_decimal_parens] = ACTIONS(2998), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2998), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2998), - [sym_list_marker_lower_roman_parens] = ACTIONS(2998), - [sym_list_marker_upper_roman_parens] = ACTIONS(2998), - [sym__block_quote_begin] = ACTIONS(2998), - [sym__block_quote_continuation] = ACTIONS(2998), - [sym__thematic_break_dash] = ACTIONS(2998), - [sym__thematic_break_star] = ACTIONS(2998), - [sym__footnote_begin] = ACTIONS(2998), - [sym__footnote_end] = ACTIONS(2998), - [sym__verbatim_begin] = ACTIONS(2998), - }, - [499] = { - [ts_builtin_sym_end] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(3048), - [anon_sym_PIPE] = ACTIONS(3050), - [anon_sym_LBRACE] = ACTIONS(3048), - [sym__whitespace1] = ACTIONS(3050), - [anon_sym_BSLASH] = ACTIONS(3048), - [sym_quotation_marks] = ACTIONS(3050), - [sym_ellipsis] = ACTIONS(3050), - [sym_em_dash] = ACTIONS(3050), - [sym_en_dash] = ACTIONS(3048), - [sym_backslash_escape] = ACTIONS(3048), - [anon_sym_LT] = ACTIONS(3050), - [anon_sym_LBRACE_] = ACTIONS(3050), - [anon_sym__] = ACTIONS(3050), - [anon_sym_LBRACE_STAR] = ACTIONS(3050), - [anon_sym_STAR] = ACTIONS(3050), - [anon_sym_LBRACE_EQ] = ACTIONS(3050), - [anon_sym_LBRACE_PLUS] = ACTIONS(3050), - [anon_sym_LBRACE_DASH] = ACTIONS(3050), - [sym_symbol] = ACTIONS(3050), - [anon_sym_LBRACE_CARET] = ACTIONS(3050), - [anon_sym_CARET] = ACTIONS(3050), - [anon_sym_LBRACE_TILDE] = ACTIONS(3050), - [anon_sym_TILDE] = ACTIONS(3050), - [anon_sym_LBRACK_CARET] = ACTIONS(3050), - [anon_sym_BANG_LBRACK] = ACTIONS(3050), - [anon_sym_DOLLAR] = ACTIONS(3050), - [anon_sym_TODO] = ACTIONS(3050), - [anon_sym_WIP] = ACTIONS(3050), - [anon_sym_NOTE] = ACTIONS(3050), - [anon_sym_INFO] = ACTIONS(3050), - [anon_sym_XXX] = ACTIONS(3050), - [sym_fixme] = ACTIONS(3050), - [aux_sym__text_token1] = ACTIONS(3048), - [sym__newline] = ACTIONS(3050), - [sym__newline_inline] = ACTIONS(3050), - [sym__heading1_begin] = ACTIONS(3050), - [sym__heading2_begin] = ACTIONS(3050), - [sym__heading3_begin] = ACTIONS(3050), - [sym__heading4_begin] = ACTIONS(3050), - [sym__heading5_begin] = ACTIONS(3050), - [sym__heading6_begin] = ACTIONS(3050), - [sym__div_begin] = ACTIONS(3050), - [sym__code_block_begin] = ACTIONS(3050), - [sym_list_marker_dash] = ACTIONS(3050), - [sym_list_marker_star] = ACTIONS(3050), - [sym_list_marker_plus] = ACTIONS(3050), - [sym__list_marker_task_begin] = ACTIONS(3050), - [sym_list_marker_definition] = ACTIONS(3050), - [sym_list_marker_decimal_period] = ACTIONS(3050), - [sym_list_marker_lower_alpha_period] = ACTIONS(3050), - [sym_list_marker_upper_alpha_period] = ACTIONS(3050), - [sym_list_marker_lower_roman_period] = ACTIONS(3050), - [sym_list_marker_upper_roman_period] = ACTIONS(3050), - [sym_list_marker_decimal_paren] = ACTIONS(3050), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3050), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3050), - [sym_list_marker_lower_roman_paren] = ACTIONS(3050), - [sym_list_marker_upper_roman_paren] = ACTIONS(3050), - [sym_list_marker_decimal_parens] = ACTIONS(3050), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3050), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3050), - [sym_list_marker_lower_roman_parens] = ACTIONS(3050), - [sym_list_marker_upper_roman_parens] = ACTIONS(3050), - [sym__block_quote_begin] = ACTIONS(3050), - [sym__block_quote_continuation] = ACTIONS(3050), - [sym__thematic_break_dash] = ACTIONS(3050), - [sym__thematic_break_star] = ACTIONS(3050), - [sym__footnote_begin] = ACTIONS(3050), - [sym__verbatim_begin] = ACTIONS(3050), - }, - [500] = { - [anon_sym_LBRACK] = ACTIONS(3008), - [anon_sym_PIPE] = ACTIONS(3010), - [anon_sym_LBRACE] = ACTIONS(3008), - [sym__whitespace1] = ACTIONS(3010), - [anon_sym_BSLASH] = ACTIONS(3008), - [sym_quotation_marks] = ACTIONS(3010), - [sym_ellipsis] = ACTIONS(3010), - [sym_em_dash] = ACTIONS(3010), - [sym_en_dash] = ACTIONS(3008), - [sym_backslash_escape] = ACTIONS(3008), - [anon_sym_LT] = ACTIONS(3010), - [anon_sym_LBRACE_] = ACTIONS(3010), - [anon_sym__] = ACTIONS(3010), - [anon_sym_LBRACE_STAR] = ACTIONS(3010), - [anon_sym_STAR] = ACTIONS(3010), - [anon_sym_LBRACE_EQ] = ACTIONS(3010), - [anon_sym_LBRACE_PLUS] = ACTIONS(3010), - [anon_sym_LBRACE_DASH] = ACTIONS(3010), - [sym_symbol] = ACTIONS(3010), - [anon_sym_LBRACE_CARET] = ACTIONS(3010), - [anon_sym_CARET] = ACTIONS(3010), - [anon_sym_LBRACE_TILDE] = ACTIONS(3010), - [anon_sym_TILDE] = ACTIONS(3010), - [anon_sym_LBRACK_CARET] = ACTIONS(3010), - [anon_sym_BANG_LBRACK] = ACTIONS(3010), - [anon_sym_DOLLAR] = ACTIONS(3010), - [anon_sym_TODO] = ACTIONS(3010), - [anon_sym_WIP] = ACTIONS(3010), - [anon_sym_NOTE] = ACTIONS(3010), - [anon_sym_INFO] = ACTIONS(3010), - [anon_sym_XXX] = ACTIONS(3010), - [sym_fixme] = ACTIONS(3010), - [aux_sym__text_token1] = ACTIONS(3008), - [sym__newline] = ACTIONS(3010), - [sym__newline_inline] = ACTIONS(3010), - [sym__heading1_begin] = ACTIONS(3010), - [sym__heading2_begin] = ACTIONS(3010), - [sym__heading3_begin] = ACTIONS(3010), - [sym__heading4_begin] = ACTIONS(3010), - [sym__heading5_begin] = ACTIONS(3010), - [sym__heading6_begin] = ACTIONS(3010), - [sym__div_begin] = ACTIONS(3010), - [sym__code_block_begin] = ACTIONS(3010), - [sym_list_marker_dash] = ACTIONS(3010), - [sym_list_marker_star] = ACTIONS(3010), - [sym_list_marker_plus] = ACTIONS(3010), - [sym__list_marker_task_begin] = ACTIONS(3010), - [sym_list_marker_definition] = ACTIONS(3010), - [sym_list_marker_decimal_period] = ACTIONS(3010), - [sym_list_marker_lower_alpha_period] = ACTIONS(3010), - [sym_list_marker_upper_alpha_period] = ACTIONS(3010), - [sym_list_marker_lower_roman_period] = ACTIONS(3010), - [sym_list_marker_upper_roman_period] = ACTIONS(3010), - [sym_list_marker_decimal_paren] = ACTIONS(3010), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3010), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3010), - [sym_list_marker_lower_roman_paren] = ACTIONS(3010), - [sym_list_marker_upper_roman_paren] = ACTIONS(3010), - [sym_list_marker_decimal_parens] = ACTIONS(3010), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3010), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3010), - [sym_list_marker_lower_roman_parens] = ACTIONS(3010), - [sym_list_marker_upper_roman_parens] = ACTIONS(3010), - [sym__block_quote_begin] = ACTIONS(3010), - [sym__block_quote_continuation] = ACTIONS(3010), - [sym__thematic_break_dash] = ACTIONS(3010), - [sym__thematic_break_star] = ACTIONS(3010), - [sym__footnote_begin] = ACTIONS(3010), - [sym__footnote_end] = ACTIONS(3010), - [sym__verbatim_begin] = ACTIONS(3010), - }, - [501] = { - [anon_sym_LBRACK] = ACTIONS(2976), - [anon_sym_PIPE] = ACTIONS(2978), - [anon_sym_LBRACE] = ACTIONS(2976), - [sym__whitespace1] = ACTIONS(2978), - [anon_sym_BSLASH] = ACTIONS(2976), - [sym_quotation_marks] = ACTIONS(2978), - [sym_ellipsis] = ACTIONS(2978), - [sym_em_dash] = ACTIONS(2978), - [sym_en_dash] = ACTIONS(2976), - [sym_backslash_escape] = ACTIONS(2976), - [anon_sym_LT] = ACTIONS(2978), - [anon_sym_LBRACE_] = ACTIONS(2978), - [anon_sym__] = ACTIONS(2978), - [anon_sym_LBRACE_STAR] = ACTIONS(2978), - [anon_sym_STAR] = ACTIONS(2978), - [anon_sym_LBRACE_EQ] = ACTIONS(2978), - [anon_sym_LBRACE_PLUS] = ACTIONS(2978), - [anon_sym_LBRACE_DASH] = ACTIONS(2978), - [sym_symbol] = ACTIONS(2978), - [anon_sym_LBRACE_CARET] = ACTIONS(2978), - [anon_sym_CARET] = ACTIONS(2978), - [anon_sym_LBRACE_TILDE] = ACTIONS(2978), - [anon_sym_TILDE] = ACTIONS(2978), - [anon_sym_LBRACK_CARET] = ACTIONS(2978), - [anon_sym_BANG_LBRACK] = ACTIONS(2978), - [anon_sym_DOLLAR] = ACTIONS(2978), - [anon_sym_TODO] = ACTIONS(2978), - [anon_sym_WIP] = ACTIONS(2978), - [anon_sym_NOTE] = ACTIONS(2978), - [anon_sym_INFO] = ACTIONS(2978), - [anon_sym_XXX] = ACTIONS(2978), - [sym_fixme] = ACTIONS(2978), - [aux_sym__text_token1] = ACTIONS(2976), - [sym__newline] = ACTIONS(2978), - [sym__newline_inline] = ACTIONS(2978), - [sym__heading1_begin] = ACTIONS(2978), - [sym__heading2_begin] = ACTIONS(2978), - [sym__heading3_begin] = ACTIONS(2978), - [sym__heading4_begin] = ACTIONS(2978), - [sym__heading5_begin] = ACTIONS(2978), - [sym__heading6_begin] = ACTIONS(2978), - [sym__div_begin] = ACTIONS(2978), - [sym__code_block_begin] = ACTIONS(2978), - [sym_list_marker_dash] = ACTIONS(2978), - [sym_list_marker_star] = ACTIONS(2978), - [sym_list_marker_plus] = ACTIONS(2978), - [sym__list_marker_task_begin] = ACTIONS(2978), - [sym_list_marker_definition] = ACTIONS(2978), - [sym_list_marker_decimal_period] = ACTIONS(2978), - [sym_list_marker_lower_alpha_period] = ACTIONS(2978), - [sym_list_marker_upper_alpha_period] = ACTIONS(2978), - [sym_list_marker_lower_roman_period] = ACTIONS(2978), - [sym_list_marker_upper_roman_period] = ACTIONS(2978), - [sym_list_marker_decimal_paren] = ACTIONS(2978), - [sym_list_marker_lower_alpha_paren] = ACTIONS(2978), - [sym_list_marker_upper_alpha_paren] = ACTIONS(2978), - [sym_list_marker_lower_roman_paren] = ACTIONS(2978), - [sym_list_marker_upper_roman_paren] = ACTIONS(2978), - [sym_list_marker_decimal_parens] = ACTIONS(2978), - [sym_list_marker_lower_alpha_parens] = ACTIONS(2978), - [sym_list_marker_upper_alpha_parens] = ACTIONS(2978), - [sym_list_marker_lower_roman_parens] = ACTIONS(2978), - [sym_list_marker_upper_roman_parens] = ACTIONS(2978), - [sym__block_quote_begin] = ACTIONS(2978), - [sym__block_quote_continuation] = ACTIONS(2978), - [sym__thematic_break_dash] = ACTIONS(2978), - [sym__thematic_break_star] = ACTIONS(2978), - [sym__footnote_begin] = ACTIONS(2978), - [sym__footnote_end] = ACTIONS(2978), - [sym__verbatim_begin] = ACTIONS(2978), - }, - [502] = { - [anon_sym_LBRACK] = ACTIONS(3000), - [anon_sym_PIPE] = ACTIONS(3002), - [anon_sym_LBRACE] = ACTIONS(3000), - [sym__whitespace1] = ACTIONS(3002), - [anon_sym_BSLASH] = ACTIONS(3000), - [sym_quotation_marks] = ACTIONS(3002), - [sym_ellipsis] = ACTIONS(3002), - [sym_em_dash] = ACTIONS(3002), - [sym_en_dash] = ACTIONS(3000), - [sym_backslash_escape] = ACTIONS(3000), - [anon_sym_LT] = ACTIONS(3002), - [anon_sym_LBRACE_] = ACTIONS(3002), - [anon_sym__] = ACTIONS(3002), - [anon_sym_LBRACE_STAR] = ACTIONS(3002), - [anon_sym_STAR] = ACTIONS(3002), - [anon_sym_LBRACE_EQ] = ACTIONS(3002), - [anon_sym_LBRACE_PLUS] = ACTIONS(3002), - [anon_sym_LBRACE_DASH] = ACTIONS(3002), - [sym_symbol] = ACTIONS(3002), - [anon_sym_LBRACE_CARET] = ACTIONS(3002), - [anon_sym_CARET] = ACTIONS(3002), - [anon_sym_LBRACE_TILDE] = ACTIONS(3002), - [anon_sym_TILDE] = ACTIONS(3002), - [anon_sym_LBRACK_CARET] = ACTIONS(3002), - [anon_sym_BANG_LBRACK] = ACTIONS(3002), - [anon_sym_DOLLAR] = ACTIONS(3002), - [anon_sym_TODO] = ACTIONS(3002), - [anon_sym_WIP] = ACTIONS(3002), - [anon_sym_NOTE] = ACTIONS(3002), - [anon_sym_INFO] = ACTIONS(3002), - [anon_sym_XXX] = ACTIONS(3002), - [sym_fixme] = ACTIONS(3002), - [aux_sym__text_token1] = ACTIONS(3000), - [sym__newline] = ACTIONS(3002), - [sym__newline_inline] = ACTIONS(3002), - [sym__heading1_begin] = ACTIONS(3002), - [sym__heading2_begin] = ACTIONS(3002), - [sym__heading3_begin] = ACTIONS(3002), - [sym__heading4_begin] = ACTIONS(3002), - [sym__heading5_begin] = ACTIONS(3002), - [sym__heading6_begin] = ACTIONS(3002), - [sym__div_begin] = ACTIONS(3002), - [sym__code_block_begin] = ACTIONS(3002), - [sym_list_marker_dash] = ACTIONS(3002), - [sym_list_marker_star] = ACTIONS(3002), - [sym_list_marker_plus] = ACTIONS(3002), - [sym__list_marker_task_begin] = ACTIONS(3002), - [sym_list_marker_definition] = ACTIONS(3002), - [sym_list_marker_decimal_period] = ACTIONS(3002), - [sym_list_marker_lower_alpha_period] = ACTIONS(3002), - [sym_list_marker_upper_alpha_period] = ACTIONS(3002), - [sym_list_marker_lower_roman_period] = ACTIONS(3002), - [sym_list_marker_upper_roman_period] = ACTIONS(3002), - [sym_list_marker_decimal_paren] = ACTIONS(3002), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3002), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3002), - [sym_list_marker_lower_roman_paren] = ACTIONS(3002), - [sym_list_marker_upper_roman_paren] = ACTIONS(3002), - [sym_list_marker_decimal_parens] = ACTIONS(3002), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3002), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3002), - [sym_list_marker_lower_roman_parens] = ACTIONS(3002), - [sym_list_marker_upper_roman_parens] = ACTIONS(3002), - [sym__block_quote_begin] = ACTIONS(3002), - [sym__block_quote_continuation] = ACTIONS(3002), - [sym__thematic_break_dash] = ACTIONS(3002), - [sym__thematic_break_star] = ACTIONS(3002), - [sym__footnote_begin] = ACTIONS(3002), - [sym__footnote_end] = ACTIONS(3002), - [sym__verbatim_begin] = ACTIONS(3002), - }, - [503] = { - [anon_sym_LBRACK] = ACTIONS(3004), - [anon_sym_PIPE] = ACTIONS(3006), - [anon_sym_LBRACE] = ACTIONS(3004), - [sym__whitespace1] = ACTIONS(3006), - [anon_sym_BSLASH] = ACTIONS(3004), - [sym_quotation_marks] = ACTIONS(3006), - [sym_ellipsis] = ACTIONS(3006), - [sym_em_dash] = ACTIONS(3006), - [sym_en_dash] = ACTIONS(3004), - [sym_backslash_escape] = ACTIONS(3004), - [anon_sym_LT] = ACTIONS(3006), - [anon_sym_LBRACE_] = ACTIONS(3006), - [anon_sym__] = ACTIONS(3006), - [anon_sym_LBRACE_STAR] = ACTIONS(3006), - [anon_sym_STAR] = ACTIONS(3006), - [anon_sym_LBRACE_EQ] = ACTIONS(3006), - [anon_sym_LBRACE_PLUS] = ACTIONS(3006), - [anon_sym_LBRACE_DASH] = ACTIONS(3006), - [sym_symbol] = ACTIONS(3006), - [anon_sym_LBRACE_CARET] = ACTIONS(3006), - [anon_sym_CARET] = ACTIONS(3006), - [anon_sym_LBRACE_TILDE] = ACTIONS(3006), - [anon_sym_TILDE] = ACTIONS(3006), - [anon_sym_LBRACK_CARET] = ACTIONS(3006), - [anon_sym_BANG_LBRACK] = ACTIONS(3006), - [anon_sym_DOLLAR] = ACTIONS(3006), - [anon_sym_TODO] = ACTIONS(3006), - [anon_sym_WIP] = ACTIONS(3006), - [anon_sym_NOTE] = ACTIONS(3006), - [anon_sym_INFO] = ACTIONS(3006), - [anon_sym_XXX] = ACTIONS(3006), - [sym_fixme] = ACTIONS(3006), - [aux_sym__text_token1] = ACTIONS(3004), - [sym__newline] = ACTIONS(3006), - [sym__newline_inline] = ACTIONS(3006), - [sym__heading1_begin] = ACTIONS(3006), - [sym__heading2_begin] = ACTIONS(3006), - [sym__heading3_begin] = ACTIONS(3006), - [sym__heading4_begin] = ACTIONS(3006), - [sym__heading5_begin] = ACTIONS(3006), - [sym__heading6_begin] = ACTIONS(3006), - [sym__div_begin] = ACTIONS(3006), - [sym__code_block_begin] = ACTIONS(3006), - [sym_list_marker_dash] = ACTIONS(3006), - [sym_list_marker_star] = ACTIONS(3006), - [sym_list_marker_plus] = ACTIONS(3006), - [sym__list_marker_task_begin] = ACTIONS(3006), - [sym_list_marker_definition] = ACTIONS(3006), - [sym_list_marker_decimal_period] = ACTIONS(3006), - [sym_list_marker_lower_alpha_period] = ACTIONS(3006), - [sym_list_marker_upper_alpha_period] = ACTIONS(3006), - [sym_list_marker_lower_roman_period] = ACTIONS(3006), - [sym_list_marker_upper_roman_period] = ACTIONS(3006), - [sym_list_marker_decimal_paren] = ACTIONS(3006), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3006), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3006), - [sym_list_marker_lower_roman_paren] = ACTIONS(3006), - [sym_list_marker_upper_roman_paren] = ACTIONS(3006), - [sym_list_marker_decimal_parens] = ACTIONS(3006), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3006), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3006), - [sym_list_marker_lower_roman_parens] = ACTIONS(3006), - [sym_list_marker_upper_roman_parens] = ACTIONS(3006), - [sym__block_quote_begin] = ACTIONS(3006), - [sym__block_quote_continuation] = ACTIONS(3006), - [sym__thematic_break_dash] = ACTIONS(3006), - [sym__thematic_break_star] = ACTIONS(3006), - [sym__footnote_begin] = ACTIONS(3006), - [sym__footnote_end] = ACTIONS(3006), - [sym__verbatim_begin] = ACTIONS(3006), - }, - [504] = { - [anon_sym_LBRACK] = ACTIONS(3074), - [anon_sym_PIPE] = ACTIONS(3072), - [anon_sym_LBRACE] = ACTIONS(3074), - [sym__whitespace1] = ACTIONS(3072), - [anon_sym_BSLASH] = ACTIONS(3074), - [sym_quotation_marks] = ACTIONS(3072), - [sym_ellipsis] = ACTIONS(3072), - [sym_em_dash] = ACTIONS(3072), - [sym_en_dash] = ACTIONS(3074), - [sym_backslash_escape] = ACTIONS(3074), - [anon_sym_LT] = ACTIONS(3072), - [anon_sym_LBRACE_] = ACTIONS(3072), - [anon_sym__] = ACTIONS(3072), - [anon_sym_LBRACE_STAR] = ACTIONS(3072), - [anon_sym_STAR] = ACTIONS(3072), - [anon_sym_LBRACE_EQ] = ACTIONS(3072), - [anon_sym_LBRACE_PLUS] = ACTIONS(3072), - [anon_sym_LBRACE_DASH] = ACTIONS(3072), - [sym_symbol] = ACTIONS(3072), - [anon_sym_LBRACE_CARET] = ACTIONS(3072), - [anon_sym_CARET] = ACTIONS(3072), - [anon_sym_LBRACE_TILDE] = ACTIONS(3072), - [anon_sym_TILDE] = ACTIONS(3072), - [anon_sym_LBRACK_CARET] = ACTIONS(3072), - [anon_sym_BANG_LBRACK] = ACTIONS(3072), - [anon_sym_DOLLAR] = ACTIONS(3072), - [anon_sym_TODO] = ACTIONS(3072), - [anon_sym_WIP] = ACTIONS(3072), - [anon_sym_NOTE] = ACTIONS(3072), - [anon_sym_INFO] = ACTIONS(3072), - [anon_sym_XXX] = ACTIONS(3072), - [sym_fixme] = ACTIONS(3072), - [aux_sym__text_token1] = ACTIONS(3074), - [sym__block_close] = ACTIONS(3072), - [sym__newline] = ACTIONS(3072), - [sym__newline_inline] = ACTIONS(3072), - [sym__heading1_begin] = ACTIONS(3072), - [sym__heading2_begin] = ACTIONS(3072), - [sym__heading3_begin] = ACTIONS(3072), - [sym__heading4_begin] = ACTIONS(3072), - [sym__heading5_begin] = ACTIONS(3072), - [sym__heading6_begin] = ACTIONS(3072), - [sym__div_begin] = ACTIONS(3072), - [sym__code_block_begin] = ACTIONS(3072), - [sym_list_marker_dash] = ACTIONS(3072), - [sym_list_marker_star] = ACTIONS(3072), - [sym_list_marker_plus] = ACTIONS(3072), - [sym__list_marker_task_begin] = ACTIONS(3072), - [sym_list_marker_definition] = ACTIONS(3072), - [sym_list_marker_decimal_period] = ACTIONS(3072), - [sym_list_marker_lower_alpha_period] = ACTIONS(3072), - [sym_list_marker_upper_alpha_period] = ACTIONS(3072), - [sym_list_marker_lower_roman_period] = ACTIONS(3072), - [sym_list_marker_upper_roman_period] = ACTIONS(3072), - [sym_list_marker_decimal_paren] = ACTIONS(3072), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3072), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3072), - [sym_list_marker_lower_roman_paren] = ACTIONS(3072), - [sym_list_marker_upper_roman_paren] = ACTIONS(3072), - [sym_list_marker_decimal_parens] = ACTIONS(3072), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3072), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3072), - [sym_list_marker_lower_roman_parens] = ACTIONS(3072), - [sym_list_marker_upper_roman_parens] = ACTIONS(3072), - [sym__block_quote_begin] = ACTIONS(3072), - [sym__block_quote_continuation] = ACTIONS(3072), - [sym__thematic_break_dash] = ACTIONS(3072), - [sym__thematic_break_star] = ACTIONS(3072), - [sym__footnote_begin] = ACTIONS(3072), - [sym__verbatim_begin] = ACTIONS(3072), - }, - [505] = { - [anon_sym_LBRACK] = ACTIONS(3152), - [anon_sym_PIPE] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3152), - [sym__whitespace1] = ACTIONS(3154), - [anon_sym_BSLASH] = ACTIONS(3152), - [sym_quotation_marks] = ACTIONS(3154), - [sym_ellipsis] = ACTIONS(3154), - [sym_em_dash] = ACTIONS(3154), - [sym_en_dash] = ACTIONS(3152), - [sym_backslash_escape] = ACTIONS(3152), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_LBRACE_] = ACTIONS(3154), - [anon_sym__] = ACTIONS(3154), - [anon_sym_LBRACE_STAR] = ACTIONS(3154), - [anon_sym_STAR] = ACTIONS(3154), - [anon_sym_LBRACE_EQ] = ACTIONS(3154), - [anon_sym_LBRACE_PLUS] = ACTIONS(3154), - [anon_sym_LBRACE_DASH] = ACTIONS(3154), - [sym_symbol] = ACTIONS(3154), - [anon_sym_LBRACE_CARET] = ACTIONS(3154), - [anon_sym_CARET] = ACTIONS(3154), - [anon_sym_LBRACE_TILDE] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_LBRACK_CARET] = ACTIONS(3154), - [anon_sym_BANG_LBRACK] = ACTIONS(3154), - [anon_sym_DOLLAR] = ACTIONS(3154), - [anon_sym_TODO] = ACTIONS(3154), - [anon_sym_WIP] = ACTIONS(3154), - [anon_sym_NOTE] = ACTIONS(3154), - [anon_sym_INFO] = ACTIONS(3154), - [anon_sym_XXX] = ACTIONS(3154), - [sym_fixme] = ACTIONS(3154), - [aux_sym__text_token1] = ACTIONS(3152), - [sym__newline] = ACTIONS(3154), - [sym__newline_inline] = ACTIONS(3154), - [sym__heading1_begin] = ACTIONS(3154), - [sym__heading2_begin] = ACTIONS(3154), - [sym__heading3_begin] = ACTIONS(3154), - [sym__heading4_begin] = ACTIONS(3154), - [sym__heading5_begin] = ACTIONS(3154), - [sym__heading6_begin] = ACTIONS(3154), - [sym__div_begin] = ACTIONS(3154), - [sym__code_block_begin] = ACTIONS(3154), - [sym_list_marker_dash] = ACTIONS(3154), - [sym_list_marker_star] = ACTIONS(3154), - [sym_list_marker_plus] = ACTIONS(3154), - [sym__list_marker_task_begin] = ACTIONS(3154), - [sym_list_marker_definition] = ACTIONS(3154), - [sym_list_marker_decimal_period] = ACTIONS(3154), - [sym_list_marker_lower_alpha_period] = ACTIONS(3154), - [sym_list_marker_upper_alpha_period] = ACTIONS(3154), - [sym_list_marker_lower_roman_period] = ACTIONS(3154), - [sym_list_marker_upper_roman_period] = ACTIONS(3154), - [sym_list_marker_decimal_paren] = ACTIONS(3154), - [sym_list_marker_lower_alpha_paren] = ACTIONS(3154), - [sym_list_marker_upper_alpha_paren] = ACTIONS(3154), - [sym_list_marker_lower_roman_paren] = ACTIONS(3154), - [sym_list_marker_upper_roman_paren] = ACTIONS(3154), - [sym_list_marker_decimal_parens] = ACTIONS(3154), - [sym_list_marker_lower_alpha_parens] = ACTIONS(3154), - [sym_list_marker_upper_alpha_parens] = ACTIONS(3154), - [sym_list_marker_lower_roman_parens] = ACTIONS(3154), - [sym_list_marker_upper_roman_parens] = ACTIONS(3154), - [sym__block_quote_begin] = ACTIONS(3154), - [sym__block_quote_continuation] = ACTIONS(3154), - [sym__thematic_break_dash] = ACTIONS(3154), - [sym__thematic_break_star] = ACTIONS(3154), - [sym__footnote_begin] = ACTIONS(3154), - [sym__verbatim_begin] = ACTIONS(3154), - }, -}; - -static const uint16_t ts_small_parse_table[] = { - [0] = 4, - ACTIONS(3160), 1, - sym__block_quote_continuation, - STATE(506), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(3156), 6, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3158), 56, - sym__block_close, - sym__newline_inline, - sym__div_begin, - sym__code_block_begin, - sym_list_marker_dash, - sym_list_marker_star, - sym_list_marker_plus, - sym__list_marker_task_begin, - sym_list_marker_definition, - sym_list_marker_decimal_period, - sym_list_marker_lower_alpha_period, - sym_list_marker_upper_alpha_period, - sym_list_marker_lower_roman_period, - sym_list_marker_upper_roman_period, - sym_list_marker_decimal_paren, - sym_list_marker_lower_alpha_paren, - sym_list_marker_upper_alpha_paren, - sym_list_marker_lower_roman_paren, - sym_list_marker_upper_roman_paren, - sym_list_marker_decimal_parens, - sym_list_marker_lower_alpha_parens, - sym_list_marker_upper_alpha_parens, - sym_list_marker_lower_roman_parens, - sym_list_marker_upper_roman_parens, - sym__block_quote_begin, - sym__thematic_break_dash, - sym__thematic_break_star, - sym__footnote_begin, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [73] = 11, - ACTIONS(3163), 1, - anon_sym_RBRACE, - ACTIONS(3165), 1, - anon_sym_DOT, - ACTIONS(3167), 1, - sym_identifier, - ACTIONS(3169), 1, - sym__whitespace1, - ACTIONS(3172), 1, - sym__id, - ACTIONS(3174), 1, - anon_sym_PERCENT, - STATE(1266), 1, - aux_sym_block_attribute_repeat1, - STATE(2156), 1, - sym_key, - STATE(1346), 3, - sym_class, - sym_key_value, - sym__comment_no_newline, - ACTIONS(908), 15, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_em_dash, - sym_en_dash, - sym_backslash_escape, - anon_sym__, - anon_sym_LBRACE2, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - aux_sym__text_token1, - ACTIONS(861), 21, - sym__eof_or_newline, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - [143] = 11, - ACTIONS(3165), 1, - anon_sym_DOT, - ACTIONS(3167), 1, - sym_identifier, - ACTIONS(3169), 1, - sym__whitespace1, - ACTIONS(3172), 1, - sym__id, - ACTIONS(3174), 1, - anon_sym_PERCENT, - ACTIONS(3176), 1, - anon_sym_RBRACE, - STATE(1264), 1, - aux_sym_block_attribute_repeat1, - STATE(2156), 1, - sym_key, - STATE(1346), 3, - sym_class, - sym_key_value, - sym__comment_no_newline, - ACTIONS(908), 15, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_em_dash, - sym_en_dash, - sym_backslash_escape, - anon_sym__, - anon_sym_LBRACE2, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - aux_sym__text_token1, - ACTIONS(861), 21, - sym__eof_or_newline, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - [213] = 11, - ACTIONS(3165), 1, - anon_sym_DOT, - ACTIONS(3167), 1, - sym_identifier, - ACTIONS(3169), 1, - sym__whitespace1, - ACTIONS(3172), 1, - sym__id, - ACTIONS(3174), 1, - anon_sym_PERCENT, - ACTIONS(3178), 1, - anon_sym_RBRACE, - STATE(1263), 1, - aux_sym_block_attribute_repeat1, - STATE(2156), 1, - sym_key, - STATE(1346), 3, - sym_class, - sym_key_value, - sym__comment_no_newline, - ACTIONS(908), 15, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_em_dash, - sym_en_dash, - sym_backslash_escape, - anon_sym__, - anon_sym_LBRACE2, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - aux_sym__text_token1, - ACTIONS(861), 21, - sym__eof_or_newline, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - [283] = 11, - ACTIONS(3165), 1, - anon_sym_DOT, - ACTIONS(3167), 1, - sym_identifier, - ACTIONS(3169), 1, - sym__whitespace1, - ACTIONS(3172), 1, - sym__id, - ACTIONS(3174), 1, - anon_sym_PERCENT, - ACTIONS(3180), 1, - anon_sym_RBRACE, - STATE(1265), 1, - aux_sym_block_attribute_repeat1, - STATE(2156), 1, - sym_key, - STATE(1346), 3, - sym_class, - sym_key_value, - sym__comment_no_newline, - ACTIONS(908), 15, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_em_dash, - sym_en_dash, - sym_backslash_escape, - anon_sym__, - anon_sym_LBRACE2, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - aux_sym__text_token1, - ACTIONS(861), 21, - sym__eof_or_newline, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - [353] = 11, - ACTIONS(3165), 1, - anon_sym_DOT, - ACTIONS(3167), 1, - sym_identifier, - ACTIONS(3169), 1, - sym__whitespace1, - ACTIONS(3172), 1, - sym__id, - ACTIONS(3174), 1, - anon_sym_PERCENT, - ACTIONS(3182), 1, - anon_sym_RBRACE, - STATE(1267), 1, - aux_sym_block_attribute_repeat1, - STATE(2156), 1, - sym_key, - STATE(1346), 3, - sym_class, - sym_key_value, - sym__comment_no_newline, - ACTIONS(908), 15, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_em_dash, - sym_en_dash, - sym_backslash_escape, - anon_sym__, - anon_sym_LBRACE2, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - aux_sym__text_token1, - ACTIONS(861), 21, - sym__eof_or_newline, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - [423] = 5, - ACTIONS(3188), 1, - sym__block_quote_continuation, - STATE(521), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(662), 1, - sym__block_quote_prefix, - ACTIONS(3184), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3186), 31, - sym__newline, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - anon_sym_NULL, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [475] = 4, - ACTIONS(3190), 1, - sym__id, - STATE(2014), 1, - sym_reference_label, - ACTIONS(908), 15, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_em_dash, - sym_en_dash, - sym_backslash_escape, - anon_sym__, - anon_sym_LBRACE2, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - aux_sym__text_token1, - ACTIONS(861), 23, - sym__newline, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - anon_sym_NULL, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - [524] = 5, - ACTIONS(3192), 1, - sym__block_quote_continuation, - STATE(601), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(1080), 1, - sym__block_quote_prefix, - ACTIONS(3184), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3186), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [575] = 4, - ACTIONS(3194), 1, - sym__block_quote_continuation, - STATE(515), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(3156), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3158), 31, - sym__newline, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - anon_sym_NULL, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [624] = 5, - ACTIONS(3197), 1, - sym__block_quote_continuation, - STATE(533), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(881), 1, - sym__block_quote_prefix, - ACTIONS(3184), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_CARET, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3186), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [675] = 5, - ACTIONS(3199), 1, - sym__block_quote_continuation, - STATE(594), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(895), 1, - sym__block_quote_prefix, - ACTIONS(3184), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3186), 30, - sym__eof_or_newline, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [726] = 5, - ACTIONS(3201), 1, - sym__block_quote_continuation, - STATE(551), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(1000), 1, - sym__block_quote_prefix, - ACTIONS(3184), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3186), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [777] = 5, - ACTIONS(3203), 1, - sym__block_quote_continuation, - STATE(592), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(762), 1, - sym__block_quote_prefix, - ACTIONS(3184), 9, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym__, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3186), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [828] = 5, - ACTIONS(3209), 1, - anon_sym_LBRACE2, - STATE(587), 1, - aux_sym__text, - STATE(1012), 1, - sym_inline_attribute, - ACTIONS(3205), 6, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3207), 31, - sym__newline, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - anon_sym_NULL, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [879] = 4, - ACTIONS(3215), 1, - sym__block_quote_continuation, - STATE(515), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(3211), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3213), 31, - sym__newline, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - anon_sym_NULL, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [928] = 5, - ACTIONS(3217), 1, - sym__block_quote_continuation, - STATE(597), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(833), 1, - sym__block_quote_prefix, - ACTIONS(3184), 9, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_STAR, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3186), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [979] = 5, - ACTIONS(3219), 1, - sym__block_quote_continuation, - STATE(586), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(866), 1, - sym__block_quote_prefix, - ACTIONS(3184), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3186), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_RBRACK, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [1030] = 5, - ACTIONS(3225), 1, - sym__block_quote_continuation, - STATE(610), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(1015), 1, - sym__block_quote_prefix, - ACTIONS(3221), 6, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3223), 31, - sym__newline, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - anon_sym_NULL, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [1081] = 6, - ACTIONS(908), 1, - anon_sym_LBRACE2, - ACTIONS(3230), 1, - anon_sym_SPACE, - STATE(857), 1, - aux_sym_emphasis_begin_repeat1, - ACTIONS(861), 2, - sym__newline, - anon_sym_NULL, - ACTIONS(3227), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3232), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [1134] = 6, - ACTIONS(908), 1, - anon_sym_LBRACE2, - ACTIONS(3238), 1, - anon_sym_SPACE, - STATE(853), 1, - aux_sym_emphasis_begin_repeat1, - ACTIONS(861), 2, - sym__newline, - anon_sym_NULL, - ACTIONS(3235), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3240), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [1187] = 5, - ACTIONS(3243), 1, - sym__block_quote_continuation, - STATE(576), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(925), 1, - sym__block_quote_prefix, - ACTIONS(3184), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3186), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [1238] = 4, - ACTIONS(3249), 1, - anon_sym_LBRACE_EQ2, - STATE(639), 1, - sym_raw_inline_attribute, - ACTIONS(3245), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3247), 30, - sym__newline, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - anon_sym_NULL, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [1287] = 5, - ACTIONS(3251), 1, - sym__block_quote_continuation, - STATE(568), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(1039), 1, - sym__block_quote_prefix, - ACTIONS(3184), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3186), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [1338] = 5, - ACTIONS(3253), 1, - sym__block_quote_continuation, - STATE(615), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(818), 1, - sym__block_quote_prefix, - ACTIONS(3184), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_TILDE, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3186), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [1389] = 6, - ACTIONS(861), 1, - anon_sym_RBRACK2, - ACTIONS(908), 1, - anon_sym_LBRACE2, - ACTIONS(3238), 1, - anon_sym_SPACE, - STATE(853), 1, - aux_sym_emphasis_begin_repeat1, - ACTIONS(3235), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3240), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [1441] = 4, - ACTIONS(3255), 1, - anon_sym_LBRACE_EQ2, - STATE(959), 1, - sym_raw_inline_attribute, - ACTIONS(3245), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3247), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [1489] = 4, - ACTIONS(3257), 1, - sym__block_quote_continuation, - STATE(579), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(3211), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_CARET, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3213), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [1537] = 4, - ACTIONS(3190), 1, - sym__id, - STATE(2000), 1, - sym_reference_label, - ACTIONS(908), 16, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_em_dash, - sym_en_dash, - sym_backslash_escape, - anon_sym__, - anon_sym_LBRACE2, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - aux_sym__text_token1, - ACTIONS(861), 21, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - anon_sym_LT, - anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - [1585] = 4, - ACTIONS(3190), 1, - sym__id, - STATE(1962), 1, - sym_reference_label, - ACTIONS(908), 15, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_em_dash, - sym_en_dash, - sym_backslash_escape, - anon_sym__, - anon_sym_LBRACE2, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - aux_sym__text_token1, - ACTIONS(861), 22, - sym__eof_or_newline, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - [1633] = 6, - ACTIONS(861), 1, - sym__eof_or_newline, - ACTIONS(908), 1, - anon_sym_LBRACE2, - ACTIONS(3230), 1, - anon_sym_SPACE, - STATE(857), 1, - aux_sym_emphasis_begin_repeat1, - ACTIONS(3227), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3232), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [1685] = 3, - ACTIONS(3259), 1, - aux_sym_autolink_token1, - ACTIONS(861), 4, - sym__newline, - sym__newline_inline, - sym__verbatim_begin, - sym__whitespace1, - ACTIONS(908), 34, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_NULL, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - sym_en_dash, - sym_backslash_escape, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_LBRACE2, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - aux_sym__text_token1, - [1731] = 6, - ACTIONS(861), 1, - aux_sym_strong_end_token1, - ACTIONS(908), 1, - anon_sym_LBRACE2, - ACTIONS(3238), 1, - anon_sym_SPACE, - STATE(853), 1, - aux_sym_emphasis_begin_repeat1, - ACTIONS(3235), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_STAR, - aux_sym__text_token1, - ACTIONS(3240), 27, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [1783] = 4, - ACTIONS(3209), 1, - anon_sym_LBRACE2, - STATE(1012), 1, - sym_inline_attribute, - ACTIONS(3205), 6, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3207), 31, - sym__newline, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - anon_sym_NULL, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [1831] = 6, - ACTIONS(861), 1, - aux_sym_strong_end_token1, - ACTIONS(908), 1, - anon_sym_LBRACE2, - ACTIONS(3230), 1, - anon_sym_SPACE, - STATE(857), 1, - aux_sym_emphasis_begin_repeat1, - ACTIONS(3227), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_STAR, - aux_sym__text_token1, - ACTIONS(3232), 27, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [1883] = 4, - ACTIONS(3190), 1, - sym__id, - STATE(2023), 1, - sym_reference_label, - ACTIONS(908), 17, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_em_dash, - sym_en_dash, - sym_backslash_escape, - anon_sym__, - anon_sym_STAR, - anon_sym_LBRACE2, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - aux_sym__text_token1, - ACTIONS(861), 20, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - [1931] = 6, - ACTIONS(861), 1, - anon_sym_PLUS_RBRACE, - ACTIONS(908), 1, - anon_sym_LBRACE2, - ACTIONS(3230), 1, - anon_sym_SPACE, - STATE(857), 1, - aux_sym_emphasis_begin_repeat1, - ACTIONS(3227), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3232), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [1983] = 5, - ACTIONS(3261), 1, - anon_sym_LBRACE2, - STATE(717), 1, - aux_sym__text, - STATE(1156), 1, - sym_inline_attribute, - ACTIONS(3205), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_STAR, - aux_sym__text_token1, - ACTIONS(3207), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [2033] = 4, - ACTIONS(3263), 1, - sym__block_quote_continuation, - STATE(544), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(3156), 9, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym__, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3158), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [2081] = 6, - ACTIONS(861), 1, - sym__eof_or_newline, - ACTIONS(908), 1, - anon_sym_LBRACE2, - ACTIONS(3238), 1, - anon_sym_SPACE, - STATE(853), 1, - aux_sym_emphasis_begin_repeat1, - ACTIONS(3235), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3240), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [2133] = 4, - ACTIONS(3266), 1, - anon_sym_LBRACE_EQ2, - STATE(1027), 1, - sym_raw_inline_attribute, - ACTIONS(3245), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3247), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [2181] = 4, - ACTIONS(3268), 1, - sym__block_quote_continuation, - STATE(547), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(3156), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3158), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [2229] = 4, - ACTIONS(3271), 1, - anon_sym_LBRACE_EQ2, - STATE(923), 1, - sym_raw_inline_attribute, - ACTIONS(3245), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3247), 27, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [2277] = 4, - ACTIONS(3190), 1, - sym__id, - STATE(2093), 1, - sym_reference_label, - ACTIONS(908), 15, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_em_dash, - sym_en_dash, - sym_backslash_escape, - anon_sym__, - anon_sym_LBRACE2, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - aux_sym__text_token1, - ACTIONS(861), 22, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - [2325] = 5, - ACTIONS(3273), 1, - sym__block_quote_continuation, - STATE(691), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(1144), 1, - sym__block_quote_prefix, - ACTIONS(3221), 6, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3223), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [2375] = 4, - ACTIONS(3275), 1, - sym__block_quote_continuation, - STATE(547), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(3211), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3213), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [2423] = 4, - ACTIONS(3277), 1, - anon_sym_LBRACE_EQ2, - STATE(979), 1, - sym_raw_inline_attribute, - ACTIONS(3245), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3247), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [2471] = 6, - ACTIONS(861), 1, - aux_sym_emphasis_end_token1, - ACTIONS(908), 1, - anon_sym_LBRACE2, - ACTIONS(3230), 1, - anon_sym_SPACE, - STATE(857), 1, - aux_sym_emphasis_begin_repeat1, - ACTIONS(3227), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym__, - aux_sym__text_token1, - ACTIONS(3232), 27, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [2523] = 5, - ACTIONS(3279), 1, - anon_sym_LBRACE2, - STATE(680), 1, - aux_sym__text, - STATE(1160), 1, - sym_inline_attribute, - ACTIONS(3205), 6, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3207), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [2573] = 6, - ACTIONS(861), 1, - aux_sym_emphasis_end_token1, - ACTIONS(908), 1, - anon_sym_LBRACE2, - ACTIONS(3238), 1, - anon_sym_SPACE, - STATE(853), 1, - aux_sym_emphasis_begin_repeat1, - ACTIONS(3235), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym__, - aux_sym__text_token1, - ACTIONS(3240), 27, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [2625] = 4, - ACTIONS(3281), 1, - sym__block_quote_continuation, - STATE(556), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(3156), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3158), 30, - sym__eof_or_newline, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [2673] = 4, - ACTIONS(3284), 1, - anon_sym_LBRACE_EQ2, - STATE(1063), 1, - sym_raw_inline_attribute, - ACTIONS(3245), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3247), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [2721] = 5, - ACTIONS(3286), 1, - sym__block_quote_continuation, - STATE(666), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(1089), 1, - sym__block_quote_prefix, - ACTIONS(3221), 6, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3223), 30, - sym__eof_or_newline, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [2771] = 5, - ACTIONS(3288), 1, - sym__block_quote_continuation, - STATE(677), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(1095), 1, - sym__block_quote_prefix, - ACTIONS(3221), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_CARET, - aux_sym__text_token1, - ACTIONS(3223), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [2821] = 5, - ACTIONS(3290), 1, - anon_sym_LBRACE2, - STATE(664), 1, - aux_sym__text, - STATE(1166), 1, - sym_inline_attribute, - ACTIONS(3205), 6, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3207), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_RBRACK, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [2871] = 2, - ACTIONS(3292), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3294), 32, - sym__newline, - sym__newline_inline, - sym__block_quote_continuation, - sym__verbatim_begin, - anon_sym_PIPE, - anon_sym_NULL, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [2915] = 5, - ACTIONS(3296), 1, - anon_sym_LBRACE2, - STATE(651), 1, - aux_sym__text, - STATE(1082), 1, - sym_inline_attribute, - ACTIONS(3205), 6, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3207), 30, - sym__eof_or_newline, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [2965] = 6, - ACTIONS(861), 1, - anon_sym_DASH_RBRACE, - ACTIONS(908), 1, - anon_sym_LBRACE2, - ACTIONS(3238), 1, - anon_sym_SPACE, - STATE(853), 1, - aux_sym_emphasis_begin_repeat1, - ACTIONS(3235), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3240), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [3017] = 5, - ACTIONS(3298), 1, - sym__block_quote_continuation, - STATE(681), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(1088), 1, - sym__block_quote_prefix, - ACTIONS(3221), 6, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3223), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [3067] = 6, - ACTIONS(861), 1, - anon_sym_DASH_RBRACE, - ACTIONS(908), 1, - anon_sym_LBRACE2, - ACTIONS(3230), 1, - anon_sym_SPACE, - STATE(857), 1, - aux_sym_emphasis_begin_repeat1, - ACTIONS(3227), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3232), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [3119] = 4, - ACTIONS(3300), 1, - sym__block_quote_continuation, - STATE(566), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(3156), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3158), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [3167] = 6, - ACTIONS(861), 1, - anon_sym_RBRACK2, - ACTIONS(908), 1, - anon_sym_LBRACE2, - ACTIONS(3230), 1, - anon_sym_SPACE, - STATE(857), 1, - aux_sym_emphasis_begin_repeat1, - ACTIONS(3227), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3232), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [3219] = 4, - ACTIONS(3303), 1, - sym__block_quote_continuation, - STATE(566), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(3211), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3213), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [3267] = 4, - ACTIONS(3190), 1, - sym__id, - STATE(2059), 1, - sym_reference_label, - ACTIONS(908), 15, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_em_dash, - sym_en_dash, - sym_backslash_escape, - anon_sym__, - anon_sym_LBRACE2, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - aux_sym__text_token1, - ACTIONS(861), 22, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - [3315] = 4, - ACTIONS(3190), 1, - sym__id, - STATE(2046), 1, - sym_reference_label, - ACTIONS(908), 15, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_em_dash, - sym_en_dash, - sym_backslash_escape, - anon_sym__, - anon_sym_LBRACE2, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - aux_sym__text_token1, - ACTIONS(861), 22, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, - anon_sym_DOLLAR, - [3363] = 4, - ACTIONS(3305), 1, - anon_sym_LBRACE_EQ2, - STATE(743), 1, - sym_raw_inline_attribute, - ACTIONS(3245), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym__, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3247), 27, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [3411] = 5, - ACTIONS(3307), 1, - anon_sym_LBRACE2, - STATE(687), 1, - aux_sym__text, - STATE(1099), 1, - sym_inline_attribute, - ACTIONS(3205), 6, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3207), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [3461] = 4, - ACTIONS(3309), 1, - sym__block_quote_continuation, - STATE(573), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(3156), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3158), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [3509] = 5, - ACTIONS(3312), 1, - sym__block_quote_continuation, - STATE(625), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(1154), 1, - sym__block_quote_prefix, - ACTIONS(3221), 6, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3223), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [3559] = 5, - ACTIONS(3314), 1, - sym__block_quote_continuation, - STATE(672), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(1155), 1, - sym__block_quote_prefix, - ACTIONS(3221), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_TILDE, - aux_sym__text_token1, - ACTIONS(3223), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [3609] = 4, - ACTIONS(3316), 1, - sym__block_quote_continuation, - STATE(573), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(3211), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3213), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [3657] = 6, - ACTIONS(861), 1, - anon_sym_CARET_RBRACE, - ACTIONS(908), 1, - anon_sym_LBRACE2, - ACTIONS(3238), 1, - anon_sym_SPACE, - STATE(853), 1, - aux_sym_emphasis_begin_repeat1, - ACTIONS(3235), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_CARET, - aux_sym__text_token1, - ACTIONS(3240), 27, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [3709] = 6, - ACTIONS(861), 1, - anon_sym_CARET_RBRACE, - ACTIONS(908), 1, - anon_sym_LBRACE2, - ACTIONS(3230), 1, - anon_sym_SPACE, - STATE(857), 1, - aux_sym_emphasis_begin_repeat1, - ACTIONS(3227), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_CARET, - aux_sym__text_token1, - ACTIONS(3232), 27, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [3761] = 4, - ACTIONS(3318), 1, - sym__block_quote_continuation, - STATE(579), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(3156), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_CARET, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3158), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [3809] = 4, - ACTIONS(3190), 1, - sym__id, - STATE(2189), 1, - sym_reference_label, - ACTIONS(908), 15, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_em_dash, - sym_en_dash, - sym_backslash_escape, - anon_sym__, - anon_sym_LBRACE2, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - aux_sym__text_token1, - ACTIONS(861), 22, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_RBRACK, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - [3857] = 4, - ACTIONS(3190), 1, - sym__id, - STATE(1960), 1, - sym_reference_label, - ACTIONS(908), 16, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_em_dash, - sym_en_dash, - sym_backslash_escape, - anon_sym__, - anon_sym_CARET, - anon_sym_LBRACE2, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - aux_sym__text_token1, - ACTIONS(861), 21, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - [3905] = 4, - ACTIONS(3321), 1, - sym__block_quote_continuation, - STATE(582), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(3156), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_TILDE, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3158), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [3953] = 5, - ACTIONS(3324), 1, - anon_sym_LBRACE2, - STATE(695), 1, - aux_sym__text, - STATE(1159), 1, - sym_inline_attribute, - ACTIONS(3205), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_CARET, - aux_sym__text_token1, - ACTIONS(3207), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [4003] = 4, - ACTIONS(3326), 1, - sym__block_quote_continuation, - STATE(584), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(3156), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3158), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_RBRACK, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [4051] = 4, - ACTIONS(3329), 1, - anon_sym_LBRACE_EQ2, - STATE(846), 1, - sym_raw_inline_attribute, - ACTIONS(3245), 9, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE_EQ, - anon_sym_CARET, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3247), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [4099] = 4, - ACTIONS(3331), 1, - sym__block_quote_continuation, - STATE(584), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(3211), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3213), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_RBRACK, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [4147] = 4, - ACTIONS(3337), 1, - aux_sym__text_token1, - STATE(587), 1, - aux_sym__text, - ACTIONS(3333), 6, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - ACTIONS(3335), 31, - sym__newline, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - anon_sym_NULL, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [4195] = 5, - ACTIONS(3340), 1, - sym__block_quote_continuation, - STATE(654), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(1153), 1, - sym__block_quote_prefix, - ACTIONS(3221), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym__, - aux_sym__text_token1, - ACTIONS(3223), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [4245] = 4, - ACTIONS(3342), 1, - anon_sym_LBRACE_EQ2, - STATE(838), 1, - sym_raw_inline_attribute, - ACTIONS(3245), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3247), 29, - sym__eof_or_newline, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [4293] = 6, - ACTIONS(861), 1, - anon_sym_TILDE_RBRACE, - ACTIONS(908), 1, - anon_sym_LBRACE2, - ACTIONS(3238), 1, - anon_sym_SPACE, - STATE(853), 1, - aux_sym_emphasis_begin_repeat1, - ACTIONS(3235), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_TILDE, - aux_sym__text_token1, - ACTIONS(3240), 27, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [4345] = 6, - ACTIONS(861), 1, - anon_sym_TILDE_RBRACE, - ACTIONS(908), 1, - anon_sym_LBRACE2, - ACTIONS(3230), 1, - anon_sym_SPACE, - STATE(857), 1, - aux_sym_emphasis_begin_repeat1, - ACTIONS(3227), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_TILDE, - aux_sym__text_token1, - ACTIONS(3232), 27, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [4397] = 4, - ACTIONS(3344), 1, - sym__block_quote_continuation, - STATE(544), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(3211), 9, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym__, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3213), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [4445] = 6, - ACTIONS(861), 1, - anon_sym_RBRACK, - ACTIONS(908), 1, - anon_sym_LBRACE2, - ACTIONS(3230), 1, - anon_sym_SPACE, - STATE(857), 1, - aux_sym_emphasis_begin_repeat1, - ACTIONS(3227), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3232), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [4497] = 4, - ACTIONS(3346), 1, - sym__block_quote_continuation, - STATE(556), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(3211), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3213), 30, - sym__eof_or_newline, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [4545] = 5, - ACTIONS(3348), 1, - anon_sym_LBRACE2, - STATE(635), 1, - aux_sym__text, - STATE(1139), 1, - sym_inline_attribute, - ACTIONS(3205), 6, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3207), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [4595] = 6, - ACTIONS(861), 1, - anon_sym_PLUS_RBRACE, - ACTIONS(908), 1, - anon_sym_LBRACE2, - ACTIONS(3238), 1, - anon_sym_SPACE, - STATE(853), 1, - aux_sym_emphasis_begin_repeat1, - ACTIONS(3235), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3240), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [4647] = 4, - ACTIONS(3350), 1, - sym__block_quote_continuation, - STATE(599), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(3211), 9, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_STAR, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3213), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [4695] = 4, - ACTIONS(3352), 1, - anon_sym_LBRACE_EQ2, - STATE(730), 1, - sym_raw_inline_attribute, - ACTIONS(3245), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3247), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_RBRACK, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [4743] = 4, - ACTIONS(3354), 1, - sym__block_quote_continuation, - STATE(599), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(3156), 9, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_STAR, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3158), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [4791] = 4, - ACTIONS(3190), 1, - sym__id, - STATE(2157), 1, - sym_reference_label, - ACTIONS(908), 15, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_em_dash, - sym_en_dash, - sym_backslash_escape, - anon_sym__, - anon_sym_LBRACE2, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - aux_sym__text_token1, - ACTIONS(861), 22, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - [4839] = 4, - ACTIONS(3357), 1, - sym__block_quote_continuation, - STATE(602), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(3211), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3213), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [4887] = 4, - ACTIONS(3359), 1, - sym__block_quote_continuation, - STATE(602), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(3156), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3158), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [4935] = 6, - ACTIONS(861), 1, - anon_sym_EQ_RBRACE, - ACTIONS(908), 1, - anon_sym_LBRACE2, - ACTIONS(3230), 1, - anon_sym_SPACE, - STATE(857), 1, - aux_sym_emphasis_begin_repeat1, - ACTIONS(3227), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3232), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [4987] = 6, - ACTIONS(861), 1, - anon_sym_EQ_RBRACE, - ACTIONS(908), 1, - anon_sym_LBRACE2, - ACTIONS(3238), 1, - anon_sym_SPACE, - STATE(853), 1, - aux_sym_emphasis_begin_repeat1, - ACTIONS(3235), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3240), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [5039] = 4, - ACTIONS(3190), 1, - sym__id, - STATE(1978), 1, - sym_reference_label, - ACTIONS(908), 16, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_em_dash, - sym_en_dash, - sym_backslash_escape, - anon_sym__, - anon_sym_TILDE, - anon_sym_LBRACE2, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - aux_sym__text_token1, - ACTIONS(861), 21, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - [5087] = 5, - ACTIONS(3362), 1, - sym__block_quote_continuation, - STATE(685), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(1141), 1, - sym__block_quote_prefix, - ACTIONS(3221), 6, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3223), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [5137] = 5, - ACTIONS(3364), 1, - sym__block_quote_continuation, - STATE(620), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(1101), 1, - sym__block_quote_prefix, - ACTIONS(3184), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3186), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [5187] = 5, - ACTIONS(3366), 1, - anon_sym_LBRACE2, - STATE(710), 1, - aux_sym__text, - STATE(1100), 1, - sym_inline_attribute, - ACTIONS(3205), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym__, - aux_sym__text_token1, - ACTIONS(3207), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [5237] = 5, - ACTIONS(3368), 1, - anon_sym_LBRACE2, - STATE(702), 1, - aux_sym__text, - STATE(1152), 1, - sym_inline_attribute, - ACTIONS(3205), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_TILDE, - aux_sym__text_token1, - ACTIONS(3207), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [5287] = 4, - ACTIONS(3370), 1, - sym__block_quote_continuation, - STATE(611), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(3211), 6, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3213), 31, - sym__newline, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - anon_sym_NULL, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [5335] = 4, - ACTIONS(3372), 1, - sym__block_quote_continuation, - STATE(611), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(3156), 6, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3158), 31, - sym__newline, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - anon_sym_NULL, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [5383] = 4, - ACTIONS(3375), 1, - anon_sym_LBRACE_EQ2, - STATE(789), 1, - sym_raw_inline_attribute, - ACTIONS(3245), 9, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE_EQ, - anon_sym_TILDE, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3247), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [5431] = 5, - ACTIONS(3377), 1, - anon_sym_LBRACE2, - STATE(689), 1, - aux_sym__text, - STATE(1084), 1, - sym_inline_attribute, - ACTIONS(3205), 6, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3207), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [5481] = 5, - ACTIONS(3379), 1, - sym__block_quote_continuation, - STATE(700), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(1109), 1, - sym__block_quote_prefix, - ACTIONS(3221), 6, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3223), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_RBRACK, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [5531] = 4, - ACTIONS(3381), 1, - sym__block_quote_continuation, - STATE(582), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(3211), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_TILDE, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3213), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [5579] = 5, - ACTIONS(3383), 1, - sym__block_quote_continuation, - STATE(629), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(1136), 1, - sym__block_quote_prefix, - ACTIONS(3221), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_STAR, - aux_sym__text_token1, - ACTIONS(3223), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [5629] = 6, - ACTIONS(861), 1, - anon_sym_RBRACK, - ACTIONS(908), 1, - anon_sym_LBRACE2, - ACTIONS(3238), 1, - anon_sym_SPACE, - STATE(853), 1, - aux_sym_emphasis_begin_repeat1, - ACTIONS(3235), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3240), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [5681] = 3, - ACTIONS(3385), 1, - aux_sym_autolink_token1, - ACTIONS(861), 3, - sym__newline_inline, - sym__verbatim_begin, - sym__whitespace1, - ACTIONS(908), 34, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - sym_en_dash, - sym_backslash_escape, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_LBRACE2, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - aux_sym__text_token1, - [5726] = 2, - ACTIONS(3387), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3389), 31, - sym__newline, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - anon_sym_NULL, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [5769] = 4, - ACTIONS(3391), 1, - sym__block_quote_continuation, - STATE(633), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(3211), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3213), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [5816] = 2, - ACTIONS(3393), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3395), 31, - sym__newline, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - anon_sym_NULL, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [5859] = 2, - ACTIONS(3397), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3399), 31, - sym__newline, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - anon_sym_NULL, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [5902] = 3, - ACTIONS(3401), 1, - aux_sym_autolink_token1, - ACTIONS(861), 3, - sym__newline_inline, - sym__verbatim_begin, - sym__whitespace1, - ACTIONS(908), 34, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - sym_en_dash, - sym_backslash_escape, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_LBRACE2, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - aux_sym__text_token1, - [5947] = 4, - ACTIONS(3348), 1, - anon_sym_LBRACE2, - STATE(1139), 1, - sym_inline_attribute, - ACTIONS(3205), 6, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3207), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [5994] = 4, - ACTIONS(3403), 1, - sym__block_quote_continuation, - STATE(626), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(3211), 6, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3213), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [6041] = 4, - ACTIONS(3405), 1, - sym__block_quote_continuation, - STATE(626), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(3156), 6, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3158), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [6088] = 4, - ACTIONS(3290), 1, - anon_sym_LBRACE2, - STATE(1166), 1, - sym_inline_attribute, - ACTIONS(3205), 6, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3207), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_RBRACK, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [6135] = 3, - ACTIONS(3408), 1, - aux_sym_autolink_token1, - ACTIONS(861), 3, - sym__newline_inline, - sym__verbatim_begin, - sym__whitespace1, - ACTIONS(908), 34, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - sym_en_dash, - sym_backslash_escape, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_LBRACE2, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - aux_sym__text_token1, - [6180] = 4, - ACTIONS(3410), 1, - sym__block_quote_continuation, - STATE(630), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(3211), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_STAR, - aux_sym__text_token1, - ACTIONS(3213), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [6227] = 4, - ACTIONS(3412), 1, - sym__block_quote_continuation, - STATE(630), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(3156), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_STAR, - aux_sym__text_token1, - ACTIONS(3158), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [6274] = 2, - ACTIONS(3415), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3417), 31, - sym__newline, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - anon_sym_NULL, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [6317] = 2, - ACTIONS(3292), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3294), 31, - sym__newline_inline, - sym__block_quote_continuation, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [6360] = 4, - ACTIONS(3419), 1, - sym__block_quote_continuation, - STATE(633), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(3156), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3158), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [6407] = 2, - ACTIONS(3422), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3424), 31, - sym__newline, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - anon_sym_NULL, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [6450] = 4, - ACTIONS(3426), 1, - aux_sym__text_token1, - STATE(635), 1, - aux_sym__text, - ACTIONS(3333), 6, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - ACTIONS(3335), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [6497] = 2, - ACTIONS(3429), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3431), 31, - sym__newline, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - anon_sym_NULL, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [6540] = 2, - ACTIONS(3292), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3294), 31, - sym__eof_or_newline, - sym__newline_inline, - sym__block_quote_continuation, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [6583] = 2, - ACTIONS(3433), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3435), 31, - sym__newline, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - anon_sym_NULL, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [6626] = 2, - ACTIONS(3437), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3439), 31, - sym__newline, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - anon_sym_NULL, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [6669] = 2, - ACTIONS(3441), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3443), 31, - sym__newline, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - anon_sym_NULL, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [6712] = 2, - ACTIONS(3445), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3447), 31, - sym__newline, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - anon_sym_NULL, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [6755] = 2, - ACTIONS(3449), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3451), 31, - sym__newline, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - anon_sym_NULL, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [6798] = 2, - ACTIONS(3453), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3455), 31, - sym__newline, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - anon_sym_NULL, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [6841] = 2, - ACTIONS(3457), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3459), 31, - sym__newline, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - anon_sym_NULL, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [6884] = 2, - ACTIONS(3461), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3463), 31, - sym__newline, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - anon_sym_NULL, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [6927] = 2, - ACTIONS(3465), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3467), 31, - sym__newline, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - anon_sym_NULL, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [6970] = 3, - ACTIONS(3469), 1, - aux_sym_autolink_token1, - ACTIONS(861), 3, - sym__newline_inline, - sym__verbatim_begin, - sym__whitespace1, - ACTIONS(908), 34, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - sym_en_dash, - sym_backslash_escape, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_LBRACE2, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - aux_sym__text_token1, - [7015] = 2, - ACTIONS(3471), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3473), 31, - sym__newline, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - anon_sym_NULL, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [7058] = 2, - ACTIONS(3475), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3477), 31, - sym__newline, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - anon_sym_NULL, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [7101] = 2, - ACTIONS(3479), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3481), 31, - sym__newline, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - anon_sym_NULL, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [7144] = 4, - ACTIONS(3483), 1, - aux_sym__text_token1, - STATE(651), 1, - aux_sym__text, - ACTIONS(3333), 6, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - ACTIONS(3335), 30, - sym__eof_or_newline, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [7191] = 4, - ACTIONS(3486), 1, - sym__block_quote_continuation, - STATE(652), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(3156), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym__, - aux_sym__text_token1, - ACTIONS(3158), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [7238] = 2, - ACTIONS(3292), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3294), 31, - sym__newline_inline, - sym__block_quote_continuation, - sym__verbatim_begin, - anon_sym_RBRACK, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [7281] = 4, - ACTIONS(3489), 1, - sym__block_quote_continuation, - STATE(652), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(3211), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym__, - aux_sym__text_token1, - ACTIONS(3213), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [7328] = 4, - ACTIONS(3491), 1, - sym__block_quote_continuation, - STATE(655), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(3156), 6, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3158), 30, - sym__eof_or_newline, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [7375] = 2, - ACTIONS(3494), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3496), 31, - sym__newline, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - anon_sym_NULL, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [7418] = 2, - ACTIONS(3498), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3500), 31, - sym__newline, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - anon_sym_NULL, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [7461] = 2, - ACTIONS(3502), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3504), 31, - sym__newline, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - anon_sym_NULL, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [7504] = 2, - ACTIONS(3506), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3508), 31, - sym__newline, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - anon_sym_NULL, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [7547] = 2, - ACTIONS(3510), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3512), 31, - sym__newline, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - anon_sym_NULL, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [7590] = 2, - ACTIONS(3514), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3516), 31, - sym__newline, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - anon_sym_NULL, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [7633] = 2, - ACTIONS(3518), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3520), 31, - sym__newline, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - anon_sym_NULL, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [7676] = 2, - ACTIONS(3522), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3524), 31, - sym__newline, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - anon_sym_NULL, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [7719] = 4, - ACTIONS(3526), 1, - aux_sym__text_token1, - STATE(664), 1, - aux_sym__text, - ACTIONS(3333), 6, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - ACTIONS(3335), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_RBRACK, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [7766] = 4, - ACTIONS(3529), 1, - sym__block_quote_continuation, - STATE(665), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(3156), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_TILDE, - aux_sym__text_token1, - ACTIONS(3158), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [7813] = 4, - ACTIONS(3532), 1, - sym__block_quote_continuation, - STATE(655), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(3211), 6, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3213), 30, - sym__eof_or_newline, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [7860] = 4, - ACTIONS(3279), 1, - anon_sym_LBRACE2, - STATE(1160), 1, - sym_inline_attribute, - ACTIONS(3205), 6, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3207), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [7907] = 3, - ACTIONS(3534), 1, - aux_sym_autolink_token1, - ACTIONS(861), 3, - sym__newline_inline, - sym__verbatim_begin, - sym__whitespace1, - ACTIONS(908), 34, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - sym_en_dash, - sym_backslash_escape, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_LBRACE2, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - aux_sym__text_token1, - [7952] = 2, - ACTIONS(3536), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3538), 31, - sym__newline, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - anon_sym_NULL, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [7995] = 2, - ACTIONS(3540), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3542), 31, - sym__newline, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - anon_sym_NULL, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [8038] = 3, - ACTIONS(3544), 1, - sym__verbatim_begin, - ACTIONS(908), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(861), 30, - sym__newline, - sym__newline_inline, - anon_sym_PIPE, - anon_sym_NULL, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [8083] = 4, - ACTIONS(3547), 1, - sym__block_quote_continuation, - STATE(665), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(3211), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_TILDE, - aux_sym__text_token1, - ACTIONS(3213), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [8130] = 4, - ACTIONS(3549), 1, - sym__block_quote_continuation, - STATE(673), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(3156), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_CARET, - aux_sym__text_token1, - ACTIONS(3158), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [8177] = 4, - ACTIONS(908), 1, - anon_sym_LBRACE2, - ACTIONS(861), 2, - sym__newline, - anon_sym_NULL, - ACTIONS(3227), 6, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3232), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [8224] = 4, - ACTIONS(908), 1, - anon_sym_LBRACE2, - ACTIONS(861), 2, - sym__newline, - anon_sym_NULL, - ACTIONS(3235), 6, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3240), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [8271] = 4, - ACTIONS(3556), 1, - anon_sym_LBRACE, - STATE(663), 1, - sym_comment, - ACTIONS(3552), 5, - anon_sym_LBRACK, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3554), 31, - sym__newline, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - anon_sym_NULL, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [8318] = 4, - ACTIONS(3559), 1, - sym__block_quote_continuation, - STATE(673), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(3211), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_CARET, - aux_sym__text_token1, - ACTIONS(3213), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [8365] = 4, - ACTIONS(3561), 1, - sym__block_quote_continuation, - STATE(678), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(3156), 6, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3158), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [8412] = 2, - ACTIONS(3292), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3294), 31, - sym__newline_inline, - sym__block_quote_continuation, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [8455] = 4, - ACTIONS(3564), 1, - aux_sym__text_token1, - STATE(680), 1, - aux_sym__text, - ACTIONS(3333), 6, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - ACTIONS(3335), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [8502] = 4, - ACTIONS(3567), 1, - sym__block_quote_continuation, - STATE(678), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(3211), 6, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3213), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [8549] = 4, - ACTIONS(3307), 1, - anon_sym_LBRACE2, - STATE(1099), 1, - sym_inline_attribute, - ACTIONS(3205), 6, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3207), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [8596] = 2, - ACTIONS(3292), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3294), 31, - sym__newline_inline, - sym__block_quote_continuation, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [8639] = 4, - ACTIONS(3569), 1, - sym__block_quote_continuation, - STATE(684), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(3156), 6, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3158), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [8686] = 4, - ACTIONS(3572), 1, - sym__block_quote_continuation, - STATE(684), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(3211), 6, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3213), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [8733] = 2, - ACTIONS(3292), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3294), 31, - sym__newline_inline, - sym__block_quote_continuation, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [8776] = 4, - ACTIONS(3574), 1, - aux_sym__text_token1, - STATE(687), 1, - aux_sym__text, - ACTIONS(3333), 6, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - ACTIONS(3335), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [8823] = 4, - ACTIONS(3324), 1, - anon_sym_LBRACE2, - STATE(1159), 1, - sym_inline_attribute, - ACTIONS(3205), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_CARET, - aux_sym__text_token1, - ACTIONS(3207), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [8870] = 4, - ACTIONS(3577), 1, - aux_sym__text_token1, - STATE(689), 1, - aux_sym__text, - ACTIONS(3333), 6, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - ACTIONS(3335), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [8917] = 4, - ACTIONS(3580), 1, - sym__block_quote_continuation, - STATE(690), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(3156), 6, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3158), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [8964] = 4, - ACTIONS(3583), 1, - sym__block_quote_continuation, - STATE(690), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(3211), 6, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3213), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [9011] = 2, - ACTIONS(3585), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3587), 31, - sym__newline, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - anon_sym_NULL, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [9054] = 2, - ACTIONS(3589), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3591), 31, - sym__newline, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - anon_sym_NULL, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [9097] = 2, - ACTIONS(3292), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_CARET, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3294), 30, - sym__newline_inline, - sym__block_quote_continuation, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [9140] = 4, - ACTIONS(3593), 1, - aux_sym__text_token1, - STATE(695), 1, - aux_sym__text, - ACTIONS(3333), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_CARET, - anon_sym_LBRACE2, - ACTIONS(3335), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [9187] = 4, - ACTIONS(3368), 1, - anon_sym_LBRACE2, - STATE(1152), 1, - sym_inline_attribute, - ACTIONS(3205), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_TILDE, - aux_sym__text_token1, - ACTIONS(3207), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [9234] = 4, - ACTIONS(3596), 1, - anon_sym_LBRACE_EQ2, - STATE(1125), 1, - sym_raw_inline_attribute, - ACTIONS(3245), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3247), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [9281] = 3, - ACTIONS(3598), 1, - aux_sym_autolink_token1, - ACTIONS(861), 3, - sym__newline_inline, - sym__verbatim_begin, - sym__whitespace1, - ACTIONS(908), 34, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - sym_en_dash, - sym_backslash_escape, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_TILDE_RBRACE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_LBRACE2, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - aux_sym__text_token1, - [9326] = 4, - ACTIONS(3600), 1, - sym__block_quote_continuation, - STATE(699), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(3156), 6, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3158), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_RBRACK, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [9373] = 4, - ACTIONS(3603), 1, - sym__block_quote_continuation, - STATE(699), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(3211), 6, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3213), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_RBRACK, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [9420] = 2, - ACTIONS(3292), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_TILDE, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3294), 30, - sym__newline_inline, - sym__block_quote_continuation, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [9463] = 4, - ACTIONS(3605), 1, - aux_sym__text_token1, - STATE(702), 1, - aux_sym__text, - ACTIONS(3333), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_TILDE, - anon_sym_LBRACE2, - ACTIONS(3335), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [9510] = 4, - ACTIONS(3366), 1, - anon_sym_LBRACE2, - STATE(1100), 1, - sym_inline_attribute, - ACTIONS(3205), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym__, - aux_sym__text_token1, - ACTIONS(3207), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [9557] = 3, - ACTIONS(3608), 1, - aux_sym_autolink_token1, - ACTIONS(861), 2, - sym__newline_inline, - sym__verbatim_begin, - ACTIONS(908), 35, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - sym_en_dash, - sym_backslash_escape, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - aux_sym_emphasis_end_token1, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_LBRACE2, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - aux_sym__text_token1, - [9602] = 4, - ACTIONS(3190), 1, - sym__id, - STATE(2069), 1, - sym_reference_label, - ACTIONS(908), 15, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_em_dash, - sym_en_dash, - sym_backslash_escape, - anon_sym__, - anon_sym_LBRACE2, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - aux_sym__text_token1, - ACTIONS(861), 21, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - [9649] = 5, - ACTIONS(908), 1, - anon_sym_LBRACE2, - ACTIONS(3230), 1, - anon_sym_SPACE, - STATE(857), 1, - aux_sym_emphasis_begin_repeat1, - ACTIONS(3227), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3232), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [9698] = 5, - ACTIONS(908), 1, - anon_sym_LBRACE2, - ACTIONS(3238), 1, - anon_sym_SPACE, - STATE(853), 1, - aux_sym_emphasis_begin_repeat1, - ACTIONS(3235), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3240), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [9747] = 5, - ACTIONS(3610), 1, - anon_sym_LBRACE2, - STATE(993), 1, - aux_sym__text, - STATE(1170), 1, - sym_inline_attribute, - ACTIONS(3205), 6, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3207), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [9796] = 2, - ACTIONS(3292), 9, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym__, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3294), 29, - sym__newline_inline, - sym__block_quote_continuation, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [9839] = 4, - ACTIONS(3612), 1, - aux_sym__text_token1, - STATE(710), 1, - aux_sym__text, - ACTIONS(3333), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym__, - anon_sym_LBRACE2, - ACTIONS(3335), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [9886] = 5, - ACTIONS(3615), 1, - sym__block_quote_continuation, - STATE(951), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(1189), 1, - sym__block_quote_prefix, - ACTIONS(3184), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3186), 28, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [9935] = 4, - ACTIONS(3261), 1, - anon_sym_LBRACE2, - STATE(1156), 1, - sym_inline_attribute, - ACTIONS(3205), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_STAR, - aux_sym__text_token1, - ACTIONS(3207), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [9982] = 3, - ACTIONS(3617), 1, - aux_sym_autolink_token1, - ACTIONS(861), 2, - sym__newline_inline, - sym__verbatim_begin, - ACTIONS(908), 35, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - sym_en_dash, - sym_backslash_escape, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - aux_sym_strong_end_token1, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_LBRACE2, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - aux_sym__text_token1, - [10027] = 2, - ACTIONS(3292), 9, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_STAR, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3294), 29, - sym__newline_inline, - sym__block_quote_continuation, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [10070] = 3, - ACTIONS(3619), 1, - aux_sym_autolink_token1, - ACTIONS(861), 4, - sym__eof_or_newline, - sym__newline_inline, - sym__verbatim_begin, - sym__whitespace1, - ACTIONS(908), 33, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - sym_en_dash, - sym_backslash_escape, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_LBRACE2, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - aux_sym__text_token1, - [10115] = 4, - ACTIONS(3296), 1, - anon_sym_LBRACE2, - STATE(1082), 1, - sym_inline_attribute, - ACTIONS(3205), 6, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3207), 30, - sym__eof_or_newline, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [10162] = 4, - ACTIONS(3621), 1, - aux_sym__text_token1, - STATE(717), 1, - aux_sym__text, - ACTIONS(3333), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_STAR, - anon_sym_LBRACE2, - ACTIONS(3335), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [10209] = 5, - ACTIONS(3624), 1, - sym__block_quote_continuation, - STATE(897), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(1168), 1, - sym__block_quote_prefix, - ACTIONS(3221), 6, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3223), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [10258] = 6, - ACTIONS(908), 1, - anon_sym_LBRACE2, - ACTIONS(3230), 1, - anon_sym_SPACE, - ACTIONS(3626), 1, - sym__newline_inline, - STATE(857), 1, - aux_sym_emphasis_begin_repeat1, - ACTIONS(3227), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3232), 27, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [10309] = 4, - ACTIONS(3377), 1, - anon_sym_LBRACE2, - STATE(1084), 1, - sym_inline_attribute, - ACTIONS(3205), 6, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3207), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [10356] = 3, - ACTIONS(3628), 1, - aux_sym_autolink_token1, - ACTIONS(861), 3, - sym__newline_inline, - sym__verbatim_begin, - sym__whitespace1, - ACTIONS(908), 34, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - sym_en_dash, - sym_backslash_escape, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, - anon_sym_LBRACE2, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - aux_sym__text_token1, - [10401] = 6, - ACTIONS(908), 1, - anon_sym_LBRACE2, - ACTIONS(3238), 1, - anon_sym_SPACE, - ACTIONS(3630), 1, - sym__newline_inline, - STATE(853), 1, - aux_sym_emphasis_begin_repeat1, - ACTIONS(3235), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3240), 27, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [10452] = 2, - ACTIONS(3422), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_CARET, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3424), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [10494] = 2, - ACTIONS(3506), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3508), 30, - sym__eof_or_newline, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [10536] = 4, - ACTIONS(3632), 1, - anon_sym_LBRACE, - STATE(832), 1, - sym_comment, - ACTIONS(3552), 5, - anon_sym_LBRACK, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3554), 30, - sym__eof_or_newline, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [10582] = 4, - ACTIONS(861), 1, - sym__eof_or_newline, - ACTIONS(908), 1, - anon_sym_LBRACE2, - ACTIONS(3235), 6, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3240), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [10628] = 4, - ACTIONS(861), 1, - sym__eof_or_newline, - ACTIONS(908), 1, - anon_sym_LBRACE2, - ACTIONS(3227), 6, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3232), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [10674] = 3, - ACTIONS(3635), 1, - sym__verbatim_begin, - ACTIONS(908), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(861), 29, - sym__eof_or_newline, - sym__newline_inline, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [10718] = 2, - ACTIONS(3540), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3542), 30, - sym__eof_or_newline, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [10760] = 2, - ACTIONS(3437), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3439), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_RBRACK, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [10802] = 2, - ACTIONS(3433), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3435), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_RBRACK, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [10844] = 2, - ACTIONS(3536), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3538), 30, - sym__eof_or_newline, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [10886] = 2, - ACTIONS(3387), 9, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym__, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3389), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [10928] = 2, - ACTIONS(3393), 9, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym__, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3395), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [10970] = 2, - ACTIONS(3429), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3431), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_RBRACK, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [11012] = 2, - ACTIONS(3397), 9, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym__, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3399), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [11054] = 2, - ACTIONS(3422), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3424), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_RBRACK, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [11096] = 2, - ACTIONS(3422), 9, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym__, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3424), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [11138] = 2, - ACTIONS(3429), 9, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym__, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3431), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [11180] = 2, - ACTIONS(3397), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3399), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_RBRACK, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [11222] = 2, - ACTIONS(3393), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3395), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_RBRACK, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [11264] = 2, - ACTIONS(3433), 9, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym__, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3435), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [11306] = 2, - ACTIONS(3437), 9, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym__, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3439), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [11348] = 2, - ACTIONS(3441), 9, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym__, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3443), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [11390] = 2, - ACTIONS(3445), 9, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym__, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3447), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [11432] = 2, - ACTIONS(3449), 9, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym__, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3451), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [11474] = 2, - ACTIONS(3453), 9, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym__, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3455), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [11516] = 2, - ACTIONS(3457), 9, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym__, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3459), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [11558] = 2, - ACTIONS(3461), 9, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym__, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3463), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [11600] = 2, - ACTIONS(3465), 9, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym__, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3467), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [11642] = 2, - ACTIONS(3415), 9, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym__, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3417), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [11684] = 2, - ACTIONS(3471), 9, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym__, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3473), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [11726] = 2, - ACTIONS(3387), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3389), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_RBRACK, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [11768] = 2, - ACTIONS(3475), 9, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym__, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3477), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [11810] = 2, - ACTIONS(3479), 9, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym__, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3481), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [11852] = 2, - ACTIONS(3494), 9, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym__, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3496), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [11894] = 2, - ACTIONS(3498), 9, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym__, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3500), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [11936] = 2, - ACTIONS(3502), 9, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym__, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3504), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [11978] = 2, - ACTIONS(3506), 9, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym__, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3508), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [12020] = 2, - ACTIONS(3510), 9, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym__, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3512), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [12062] = 2, - ACTIONS(3514), 9, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym__, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3516), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [12104] = 2, - ACTIONS(3518), 9, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym__, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3520), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [12146] = 2, - ACTIONS(3453), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3455), 30, - sym__eof_or_newline, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [12188] = 2, - ACTIONS(3522), 9, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym__, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3524), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [12230] = 2, - ACTIONS(3449), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3451), 30, - sym__eof_or_newline, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [12272] = 4, - ACTIONS(3638), 1, - anon_sym_LBRACE, - STATE(920), 1, - sym_comment, - ACTIONS(3552), 5, - anon_sym_LBRACK, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3554), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [12318] = 2, - ACTIONS(3445), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3447), 30, - sym__eof_or_newline, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [12360] = 2, - ACTIONS(3441), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3443), 30, - sym__eof_or_newline, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [12402] = 2, - ACTIONS(3536), 9, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym__, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3538), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [12444] = 2, - ACTIONS(3540), 9, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym__, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3542), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [12486] = 3, - ACTIONS(3641), 1, - sym__verbatim_begin, - ACTIONS(908), 9, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym__, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(861), 27, - sym__newline_inline, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [12530] = 2, - ACTIONS(3644), 6, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3646), 31, - sym__newline_inline, - sym__table_caption_end, - sym__verbatim_begin, - anon_sym_PIPE, - anon_sym_NULL, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [12572] = 4, - ACTIONS(3190), 1, - sym__id, - STATE(2249), 1, - sym_reference_label, - ACTIONS(908), 15, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_em_dash, - sym_en_dash, - sym_backslash_escape, - anon_sym__, - anon_sym_LBRACE2, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - aux_sym__text_token1, - ACTIONS(861), 20, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - [12618] = 4, - ACTIONS(861), 1, - aux_sym_emphasis_end_token1, - ACTIONS(908), 1, - anon_sym_LBRACE2, - ACTIONS(3227), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym__, - aux_sym__text_token1, - ACTIONS(3232), 27, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [12664] = 4, - ACTIONS(861), 1, - aux_sym_emphasis_end_token1, - ACTIONS(908), 1, - anon_sym_LBRACE2, - ACTIONS(3235), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym__, - aux_sym__text_token1, - ACTIONS(3240), 27, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [12710] = 4, - ACTIONS(3648), 1, - anon_sym_LBRACE, - STATE(902), 1, - sym_comment, - ACTIONS(3552), 5, - anon_sym_LBRACK, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3554), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [12756] = 2, - ACTIONS(3387), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_TILDE, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3389), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [12798] = 2, - ACTIONS(3393), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_TILDE, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3395), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [12840] = 2, - ACTIONS(3441), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3443), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_RBRACK, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [12882] = 2, - ACTIONS(3445), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3447), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_RBRACK, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [12924] = 5, - ACTIONS(3651), 1, - anon_sym_LBRACE2, - STATE(1147), 1, - aux_sym__text, - STATE(1204), 1, - sym_inline_attribute, - ACTIONS(3205), 6, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3207), 28, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [12972] = 2, - ACTIONS(3449), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3451), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_RBRACK, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [13014] = 2, - ACTIONS(3453), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3455), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_RBRACK, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [13056] = 2, - ACTIONS(3397), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_TILDE, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3399), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [13098] = 2, - ACTIONS(3422), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_TILDE, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3424), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [13140] = 2, - ACTIONS(3457), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3459), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_RBRACK, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [13182] = 2, - ACTIONS(3429), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_TILDE, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3431), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [13224] = 2, - ACTIONS(3433), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_TILDE, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3435), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [13266] = 2, - ACTIONS(3437), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_TILDE, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3439), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [13308] = 2, - ACTIONS(3461), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3463), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_RBRACK, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [13350] = 2, - ACTIONS(3465), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3467), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_RBRACK, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [13392] = 2, - ACTIONS(3441), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_TILDE, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3443), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [13434] = 2, - ACTIONS(3445), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_TILDE, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3447), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [13476] = 2, - ACTIONS(3449), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_TILDE, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3451), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [13518] = 2, - ACTIONS(3453), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_TILDE, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3455), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [13560] = 2, - ACTIONS(3457), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_TILDE, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3459), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [13602] = 2, - ACTIONS(3461), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_TILDE, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3463), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [13644] = 2, - ACTIONS(3465), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_TILDE, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3467), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [13686] = 2, - ACTIONS(3415), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_TILDE, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3417), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [13728] = 2, - ACTIONS(3415), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3417), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_RBRACK, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [13770] = 2, - ACTIONS(3471), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3473), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_RBRACK, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [13812] = 2, - ACTIONS(3475), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3477), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_RBRACK, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [13854] = 2, - ACTIONS(3479), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3481), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_RBRACK, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [13896] = 2, - ACTIONS(3471), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_TILDE, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3473), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [13938] = 2, - ACTIONS(3475), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_TILDE, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3477), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [13980] = 2, - ACTIONS(3479), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_TILDE, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3481), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [14022] = 4, - ACTIONS(861), 1, - aux_sym_strong_end_token1, - ACTIONS(908), 1, - anon_sym_LBRACE2, - ACTIONS(3227), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_STAR, - aux_sym__text_token1, - ACTIONS(3232), 27, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [14068] = 2, - ACTIONS(3457), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3459), 30, - sym__eof_or_newline, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [14110] = 2, - ACTIONS(3461), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3463), 30, - sym__eof_or_newline, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [14152] = 2, - ACTIONS(3465), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3467), 30, - sym__eof_or_newline, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [14194] = 2, - ACTIONS(3415), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3417), 30, - sym__eof_or_newline, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [14236] = 2, - ACTIONS(3494), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_TILDE, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3496), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [14278] = 2, - ACTIONS(3498), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_TILDE, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3500), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [14320] = 2, - ACTIONS(3502), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_TILDE, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3504), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [14362] = 2, - ACTIONS(3506), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_TILDE, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3508), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [14404] = 2, - ACTIONS(3510), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_TILDE, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3512), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [14446] = 2, - ACTIONS(3514), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_TILDE, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3516), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [14488] = 2, - ACTIONS(3518), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_TILDE, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3520), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [14530] = 2, - ACTIONS(3471), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3473), 30, - sym__eof_or_newline, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [14572] = 2, - ACTIONS(3522), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_TILDE, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3524), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [14614] = 3, - ACTIONS(3653), 1, - sym__verbatim_begin, - ACTIONS(908), 9, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_STAR, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(861), 27, - sym__newline_inline, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [14658] = 2, - ACTIONS(3540), 9, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_STAR, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3542), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [14700] = 2, - ACTIONS(3536), 9, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_STAR, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3538), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [14742] = 2, - ACTIONS(3536), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_TILDE, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3538), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [14784] = 2, - ACTIONS(3540), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_TILDE, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3542), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [14826] = 3, - ACTIONS(3656), 1, - sym__verbatim_begin, - ACTIONS(908), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_TILDE, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(861), 28, - sym__newline_inline, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [14870] = 2, - ACTIONS(3475), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3477), 30, - sym__eof_or_newline, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [14912] = 4, - ACTIONS(3661), 1, - anon_sym_SPACE, - STATE(828), 1, - aux_sym_emphasis_begin_repeat1, - ACTIONS(3659), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3664), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [14958] = 2, - ACTIONS(3479), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3481), 30, - sym__eof_or_newline, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [15000] = 2, - ACTIONS(3522), 9, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_STAR, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3524), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [15042] = 4, - ACTIONS(861), 1, - anon_sym_TILDE_RBRACE, - ACTIONS(908), 1, - anon_sym_LBRACE2, - ACTIONS(3227), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_TILDE, - aux_sym__text_token1, - ACTIONS(3232), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [15088] = 2, - ACTIONS(3522), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3524), 30, - sym__eof_or_newline, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [15130] = 2, - ACTIONS(3518), 9, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_STAR, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3520), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [15172] = 4, - ACTIONS(3666), 1, - anon_sym_LBRACE_EQ2, - STATE(1179), 1, - sym_raw_inline_attribute, - ACTIONS(3245), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3247), 27, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [15218] = 4, - ACTIONS(861), 1, - anon_sym_TILDE_RBRACE, - ACTIONS(908), 1, - anon_sym_LBRACE2, - ACTIONS(3235), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_TILDE, - aux_sym__text_token1, - ACTIONS(3240), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [15264] = 2, - ACTIONS(3514), 9, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_STAR, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3516), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [15306] = 2, - ACTIONS(3510), 9, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_STAR, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3512), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [15348] = 2, - ACTIONS(3437), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3439), 30, - sym__eof_or_newline, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [15390] = 2, - ACTIONS(3506), 9, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_STAR, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3508), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [15432] = 2, - ACTIONS(3387), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_CARET, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3389), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [15474] = 2, - ACTIONS(3393), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_CARET, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3395), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [15516] = 2, - ACTIONS(3397), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_CARET, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3399), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [15558] = 2, - ACTIONS(3433), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3435), 30, - sym__eof_or_newline, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [15600] = 2, - ACTIONS(3429), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_CARET, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3431), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [15642] = 2, - ACTIONS(3433), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_CARET, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3435), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [15684] = 2, - ACTIONS(3437), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_CARET, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3439), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [15726] = 2, - ACTIONS(3502), 9, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_STAR, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3504), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [15768] = 2, - ACTIONS(3441), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_CARET, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3443), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [15810] = 2, - ACTIONS(3445), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_CARET, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3447), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [15852] = 2, - ACTIONS(3449), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_CARET, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3451), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [15894] = 2, - ACTIONS(3453), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_CARET, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3455), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [15936] = 2, - ACTIONS(3457), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_CARET, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3459), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [15978] = 4, - ACTIONS(3670), 1, - anon_sym_SPACE, - STATE(828), 1, - aux_sym_emphasis_begin_repeat1, - ACTIONS(3668), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3672), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [16024] = 2, - ACTIONS(3494), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3496), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_RBRACK, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [16066] = 2, - ACTIONS(3498), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3500), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_RBRACK, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [16108] = 2, - ACTIONS(3502), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3504), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_RBRACK, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [16150] = 4, - ACTIONS(3670), 1, - anon_sym_SPACE, - STATE(828), 1, - aux_sym_emphasis_begin_repeat1, - ACTIONS(3674), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3676), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [16196] = 2, - ACTIONS(3461), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_CARET, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3463), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [16238] = 2, - ACTIONS(3465), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_CARET, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3467), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [16280] = 2, - ACTIONS(3506), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3508), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_RBRACK, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [16322] = 2, - ACTIONS(3510), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3512), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_RBRACK, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [16364] = 2, - ACTIONS(3514), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3516), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_RBRACK, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [16406] = 2, - ACTIONS(3415), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_CARET, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3417), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [16448] = 2, - ACTIONS(3471), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_CARET, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3473), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [16490] = 2, - ACTIONS(3475), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_CARET, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3477), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [16532] = 2, - ACTIONS(3518), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3520), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_RBRACK, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [16574] = 2, - ACTIONS(3479), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_CARET, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3481), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [16616] = 2, - ACTIONS(3498), 9, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_STAR, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3500), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [16658] = 2, - ACTIONS(3494), 9, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_STAR, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3496), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [16700] = 2, - ACTIONS(3479), 9, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_STAR, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3481), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [16742] = 2, - ACTIONS(3494), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_CARET, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3496), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [16784] = 2, - ACTIONS(3522), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3524), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_RBRACK, + default: + return false; + } +} + +static const TSLexMode ts_lex_modes[STATE_COUNT] = { + [0] = {.lex_state = 0, .external_lex_state = 1}, + [1] = {.lex_state = 19, .external_lex_state = 2}, + [2] = {.lex_state = 19, .external_lex_state = 3}, + [3] = {.lex_state = 19, .external_lex_state = 3}, + [4] = {.lex_state = 19, .external_lex_state = 4}, + [5] = {.lex_state = 19, .external_lex_state = 4}, + [6] = {.lex_state = 19, .external_lex_state = 3}, + [7] = {.lex_state = 19, .external_lex_state = 4}, + [8] = {.lex_state = 19, .external_lex_state = 4}, + [9] = {.lex_state = 19, .external_lex_state = 3}, + [10] = {.lex_state = 19, .external_lex_state = 4}, + [11] = {.lex_state = 19, .external_lex_state = 4}, + [12] = {.lex_state = 19, .external_lex_state = 3}, + [13] = {.lex_state = 19, .external_lex_state = 3}, + [14] = {.lex_state = 19, .external_lex_state = 4}, + [15] = {.lex_state = 19, .external_lex_state = 4}, + [16] = {.lex_state = 19, .external_lex_state = 3}, + [17] = {.lex_state = 19, .external_lex_state = 5}, + [18] = {.lex_state = 19, .external_lex_state = 4}, + [19] = {.lex_state = 19, .external_lex_state = 4}, + [20] = {.lex_state = 19, .external_lex_state = 4}, + [21] = {.lex_state = 19, .external_lex_state = 4}, + [22] = {.lex_state = 19, .external_lex_state = 3}, + [23] = {.lex_state = 19, .external_lex_state = 4}, + [24] = {.lex_state = 19, .external_lex_state = 5}, + [25] = {.lex_state = 19, .external_lex_state = 4}, + [26] = {.lex_state = 19, .external_lex_state = 4}, + [27] = {.lex_state = 19, .external_lex_state = 3}, + [28] = {.lex_state = 19, .external_lex_state = 4}, + [29] = {.lex_state = 19, .external_lex_state = 3}, + [30] = {.lex_state = 19, .external_lex_state = 3}, + [31] = {.lex_state = 19, .external_lex_state = 3}, + [32] = {.lex_state = 19, .external_lex_state = 3}, + [33] = {.lex_state = 19, .external_lex_state = 3}, + [34] = {.lex_state = 19, .external_lex_state = 3}, + [35] = {.lex_state = 19, .external_lex_state = 3}, + [36] = {.lex_state = 19, .external_lex_state = 3}, + [37] = {.lex_state = 19, .external_lex_state = 3}, + [38] = {.lex_state = 19, .external_lex_state = 3}, + [39] = {.lex_state = 19, .external_lex_state = 3}, + [40] = {.lex_state = 19, .external_lex_state = 3}, + [41] = {.lex_state = 19, .external_lex_state = 3}, + [42] = {.lex_state = 19, .external_lex_state = 3}, + [43] = {.lex_state = 19, .external_lex_state = 3}, + [44] = {.lex_state = 19, .external_lex_state = 3}, + [45] = {.lex_state = 19, .external_lex_state = 3}, + [46] = {.lex_state = 19, .external_lex_state = 3}, + [47] = {.lex_state = 19, .external_lex_state = 3}, + [48] = {.lex_state = 19, .external_lex_state = 3}, + [49] = {.lex_state = 19, .external_lex_state = 3}, + [50] = {.lex_state = 19, .external_lex_state = 3}, + [51] = {.lex_state = 19, .external_lex_state = 3}, + [52] = {.lex_state = 19, .external_lex_state = 3}, + [53] = {.lex_state = 19, .external_lex_state = 3}, + [54] = {.lex_state = 19, .external_lex_state = 6}, + [55] = {.lex_state = 19, .external_lex_state = 6}, + [56] = {.lex_state = 19, .external_lex_state = 6}, + [57] = {.lex_state = 19, .external_lex_state = 6}, + [58] = {.lex_state = 19, .external_lex_state = 6}, + [59] = {.lex_state = 19, .external_lex_state = 7}, + [60] = {.lex_state = 19, .external_lex_state = 8}, + [61] = {.lex_state = 19, .external_lex_state = 9}, + [62] = {.lex_state = 19, .external_lex_state = 10}, + [63] = {.lex_state = 19, .external_lex_state = 9}, + [64] = {.lex_state = 19, .external_lex_state = 8}, + [65] = {.lex_state = 19, .external_lex_state = 10}, + [66] = {.lex_state = 19, .external_lex_state = 9}, + [67] = {.lex_state = 19, .external_lex_state = 8}, + [68] = {.lex_state = 19, .external_lex_state = 10}, + [69] = {.lex_state = 19, .external_lex_state = 8}, + [70] = {.lex_state = 19, .external_lex_state = 10}, + [71] = {.lex_state = 19, .external_lex_state = 9}, + [72] = {.lex_state = 19, .external_lex_state = 11}, + [73] = {.lex_state = 19, .external_lex_state = 11}, + [74] = {.lex_state = 19, .external_lex_state = 12}, + [75] = {.lex_state = 19, .external_lex_state = 10}, + [76] = {.lex_state = 19, .external_lex_state = 10}, + [77] = {.lex_state = 19, .external_lex_state = 11}, + [78] = {.lex_state = 19, .external_lex_state = 11}, + [79] = {.lex_state = 19, .external_lex_state = 12}, + [80] = {.lex_state = 19, .external_lex_state = 12}, + [81] = {.lex_state = 19, .external_lex_state = 10}, + [82] = {.lex_state = 19, .external_lex_state = 10}, + [83] = {.lex_state = 19, .external_lex_state = 11}, + [84] = {.lex_state = 19, .external_lex_state = 12}, + [85] = {.lex_state = 19, .external_lex_state = 13}, + [86] = {.lex_state = 19, .external_lex_state = 13}, + [87] = {.lex_state = 19, .external_lex_state = 10}, + [88] = {.lex_state = 19, .external_lex_state = 10}, + [89] = {.lex_state = 19, .external_lex_state = 10}, + [90] = {.lex_state = 19, .external_lex_state = 14}, + [91] = {.lex_state = 19, .external_lex_state = 8}, + [92] = {.lex_state = 19, .external_lex_state = 15}, + [93] = {.lex_state = 19, .external_lex_state = 9}, + [94] = {.lex_state = 19, .external_lex_state = 9}, + [95] = {.lex_state = 19, .external_lex_state = 16}, + [96] = {.lex_state = 19, .external_lex_state = 16}, + [97] = {.lex_state = 19, .external_lex_state = 17}, + [98] = {.lex_state = 19, .external_lex_state = 9}, + [99] = {.lex_state = 19, .external_lex_state = 9}, + [100] = {.lex_state = 19, .external_lex_state = 16}, + [101] = {.lex_state = 19, .external_lex_state = 16}, + [102] = {.lex_state = 19, .external_lex_state = 18}, + [103] = {.lex_state = 19, .external_lex_state = 17}, + [104] = {.lex_state = 19, .external_lex_state = 17}, + [105] = {.lex_state = 19, .external_lex_state = 9}, + [106] = {.lex_state = 19, .external_lex_state = 9}, + [107] = {.lex_state = 19, .external_lex_state = 19}, + [108] = {.lex_state = 19, .external_lex_state = 8}, + [109] = {.lex_state = 19, .external_lex_state = 16}, + [110] = {.lex_state = 19, .external_lex_state = 8}, + [111] = {.lex_state = 19, .external_lex_state = 17}, + [112] = {.lex_state = 19, .external_lex_state = 18}, + [113] = {.lex_state = 19, .external_lex_state = 18}, + [114] = {.lex_state = 19, .external_lex_state = 19}, + [115] = {.lex_state = 19, .external_lex_state = 19}, + [116] = {.lex_state = 19, .external_lex_state = 8}, + [117] = {.lex_state = 19, .external_lex_state = 9}, + [118] = {.lex_state = 19, .external_lex_state = 14}, + [119] = {.lex_state = 19, .external_lex_state = 8}, + [120] = {.lex_state = 19, .external_lex_state = 18}, + [121] = {.lex_state = 19, .external_lex_state = 19}, + [122] = {.lex_state = 19, .external_lex_state = 19}, + [123] = {.lex_state = 19, .external_lex_state = 8}, + [124] = {.lex_state = 19, .external_lex_state = 8}, + [125] = {.lex_state = 19, .external_lex_state = 4}, + [126] = {.lex_state = 19, .external_lex_state = 4}, + [127] = {.lex_state = 19, .external_lex_state = 3}, + [128] = {.lex_state = 19, .external_lex_state = 3}, + [129] = {.lex_state = 19, .external_lex_state = 3}, + [130] = {.lex_state = 19, .external_lex_state = 3}, + [131] = {.lex_state = 19, .external_lex_state = 5}, + [132] = {.lex_state = 19, .external_lex_state = 3}, + [133] = {.lex_state = 19, .external_lex_state = 3}, + [134] = {.lex_state = 19, .external_lex_state = 5}, + [135] = {.lex_state = 19, .external_lex_state = 3}, + [136] = {.lex_state = 19, .external_lex_state = 5}, + [137] = {.lex_state = 19, .external_lex_state = 5}, + [138] = {.lex_state = 19, .external_lex_state = 3}, + [139] = {.lex_state = 19, .external_lex_state = 3}, + [140] = {.lex_state = 19, .external_lex_state = 5}, + [141] = {.lex_state = 19, .external_lex_state = 3}, + [142] = {.lex_state = 19, .external_lex_state = 5}, + [143] = {.lex_state = 19, .external_lex_state = 3}, + [144] = {.lex_state = 19, .external_lex_state = 5}, + [145] = {.lex_state = 19, .external_lex_state = 3}, + [146] = {.lex_state = 19, .external_lex_state = 5}, + [147] = {.lex_state = 19, .external_lex_state = 3}, + [148] = {.lex_state = 19, .external_lex_state = 5}, + [149] = {.lex_state = 19, .external_lex_state = 3}, + [150] = {.lex_state = 19, .external_lex_state = 5}, + [151] = {.lex_state = 19, .external_lex_state = 3}, + [152] = {.lex_state = 19, .external_lex_state = 5}, + [153] = {.lex_state = 19, .external_lex_state = 3}, + [154] = {.lex_state = 19, .external_lex_state = 5}, + [155] = {.lex_state = 19, .external_lex_state = 3}, + [156] = {.lex_state = 19, .external_lex_state = 5}, + [157] = {.lex_state = 19, .external_lex_state = 3}, + [158] = {.lex_state = 19, .external_lex_state = 5}, + [159] = {.lex_state = 19, .external_lex_state = 3}, + [160] = {.lex_state = 19, .external_lex_state = 5}, + [161] = {.lex_state = 19, .external_lex_state = 3}, + [162] = {.lex_state = 19, .external_lex_state = 3}, + [163] = {.lex_state = 19, .external_lex_state = 3}, + [164] = {.lex_state = 19, .external_lex_state = 5}, + [165] = {.lex_state = 19, .external_lex_state = 3}, + [166] = {.lex_state = 19, .external_lex_state = 5}, + [167] = {.lex_state = 19, .external_lex_state = 3}, + [168] = {.lex_state = 19, .external_lex_state = 5}, + [169] = {.lex_state = 19, .external_lex_state = 3}, + [170] = {.lex_state = 19, .external_lex_state = 5}, + [171] = {.lex_state = 19, .external_lex_state = 3}, + [172] = {.lex_state = 19, .external_lex_state = 5}, + [173] = {.lex_state = 19, .external_lex_state = 3}, + [174] = {.lex_state = 19, .external_lex_state = 5}, + [175] = {.lex_state = 19, .external_lex_state = 5}, + [176] = {.lex_state = 19, .external_lex_state = 3}, + [177] = {.lex_state = 19, .external_lex_state = 5}, + [178] = {.lex_state = 19, .external_lex_state = 3}, + [179] = {.lex_state = 19, .external_lex_state = 5}, + [180] = {.lex_state = 19, .external_lex_state = 5}, + [181] = {.lex_state = 19, .external_lex_state = 5}, + [182] = {.lex_state = 19, .external_lex_state = 5}, + [183] = {.lex_state = 19, .external_lex_state = 5}, + [184] = {.lex_state = 19, .external_lex_state = 5}, + [185] = {.lex_state = 19, .external_lex_state = 5}, + [186] = {.lex_state = 19, .external_lex_state = 5}, + [187] = {.lex_state = 19, .external_lex_state = 5}, + [188] = {.lex_state = 19, .external_lex_state = 5}, + [189] = {.lex_state = 19, .external_lex_state = 5}, + [190] = {.lex_state = 19, .external_lex_state = 3}, + [191] = {.lex_state = 19, .external_lex_state = 5}, + [192] = {.lex_state = 19, .external_lex_state = 3}, + [193] = {.lex_state = 19, .external_lex_state = 5}, + [194] = {.lex_state = 19, .external_lex_state = 5}, + [195] = {.lex_state = 19, .external_lex_state = 4}, + [196] = {.lex_state = 19, .external_lex_state = 5}, + [197] = {.lex_state = 19, .external_lex_state = 5}, + [198] = {.lex_state = 19, .external_lex_state = 4}, + [199] = {.lex_state = 19, .external_lex_state = 3}, + [200] = {.lex_state = 19, .external_lex_state = 5}, + [201] = {.lex_state = 19, .external_lex_state = 5}, + [202] = {.lex_state = 19, .external_lex_state = 4}, + [203] = {.lex_state = 19, .external_lex_state = 3}, + [204] = {.lex_state = 19, .external_lex_state = 4}, + [205] = {.lex_state = 19, .external_lex_state = 4}, + [206] = {.lex_state = 19, .external_lex_state = 4}, + [207] = {.lex_state = 19, .external_lex_state = 3}, + [208] = {.lex_state = 19, .external_lex_state = 4}, + [209] = {.lex_state = 19, .external_lex_state = 3}, + [210] = {.lex_state = 19, .external_lex_state = 3}, + [211] = {.lex_state = 19, .external_lex_state = 4}, + [212] = {.lex_state = 19, .external_lex_state = 3}, + [213] = {.lex_state = 19, .external_lex_state = 4}, + [214] = {.lex_state = 19, .external_lex_state = 4}, + [215] = {.lex_state = 19, .external_lex_state = 3}, + [216] = {.lex_state = 19, .external_lex_state = 3}, + [217] = {.lex_state = 19, .external_lex_state = 4}, + [218] = {.lex_state = 19, .external_lex_state = 3}, + [219] = {.lex_state = 19, .external_lex_state = 4}, + [220] = {.lex_state = 19, .external_lex_state = 4}, + [221] = {.lex_state = 19, .external_lex_state = 4}, + [222] = {.lex_state = 19, .external_lex_state = 4}, + [223] = {.lex_state = 19, .external_lex_state = 3}, + [224] = {.lex_state = 19, .external_lex_state = 4}, + [225] = {.lex_state = 19, .external_lex_state = 4}, + [226] = {.lex_state = 19, .external_lex_state = 5}, + [227] = {.lex_state = 19, .external_lex_state = 5}, + [228] = {.lex_state = 19, .external_lex_state = 3}, + [229] = {.lex_state = 19, .external_lex_state = 4}, + [230] = {.lex_state = 19, .external_lex_state = 4}, + [231] = {.lex_state = 19, .external_lex_state = 3}, + [232] = {.lex_state = 19, .external_lex_state = 4}, + [233] = {.lex_state = 19, .external_lex_state = 3}, + [234] = {.lex_state = 19, .external_lex_state = 4}, + [235] = {.lex_state = 19, .external_lex_state = 3}, + [236] = {.lex_state = 19, .external_lex_state = 4}, + [237] = {.lex_state = 19, .external_lex_state = 4}, + [238] = {.lex_state = 19, .external_lex_state = 4}, + [239] = {.lex_state = 19, .external_lex_state = 4}, + [240] = {.lex_state = 19, .external_lex_state = 4}, + [241] = {.lex_state = 19, .external_lex_state = 4}, + [242] = {.lex_state = 19, .external_lex_state = 4}, + [243] = {.lex_state = 19, .external_lex_state = 4}, + [244] = {.lex_state = 19, .external_lex_state = 4}, + [245] = {.lex_state = 19, .external_lex_state = 4}, + [246] = {.lex_state = 19, .external_lex_state = 4}, + [247] = {.lex_state = 19, .external_lex_state = 4}, + [248] = {.lex_state = 19, .external_lex_state = 4}, + [249] = {.lex_state = 19, .external_lex_state = 4}, + [250] = {.lex_state = 19, .external_lex_state = 4}, + [251] = {.lex_state = 19, .external_lex_state = 4}, + [252] = {.lex_state = 19, .external_lex_state = 4}, + [253] = {.lex_state = 19, .external_lex_state = 4}, + [254] = {.lex_state = 19, .external_lex_state = 4}, + [255] = {.lex_state = 19, .external_lex_state = 3}, + [256] = {.lex_state = 19, .external_lex_state = 4}, + [257] = {.lex_state = 19, .external_lex_state = 4}, + [258] = {.lex_state = 19, .external_lex_state = 4}, + [259] = {.lex_state = 19, .external_lex_state = 4}, + [260] = {.lex_state = 19, .external_lex_state = 3}, + [261] = {.lex_state = 19, .external_lex_state = 7}, + [262] = {.lex_state = 3, .external_lex_state = 20}, + [263] = {.lex_state = 3, .external_lex_state = 20}, + [264] = {.lex_state = 3, .external_lex_state = 20}, + [265] = {.lex_state = 3, .external_lex_state = 20}, + [266] = {.lex_state = 3, .external_lex_state = 20}, + [267] = {.lex_state = 0, .external_lex_state = 21}, + [268] = {.lex_state = 0, .external_lex_state = 21}, + [269] = {.lex_state = 1, .external_lex_state = 22}, + [270] = {.lex_state = 2, .external_lex_state = 20}, + [271] = {.lex_state = 1, .external_lex_state = 22}, + [272] = {.lex_state = 2, .external_lex_state = 20}, + [273] = {.lex_state = 2, .external_lex_state = 20}, + [274] = {.lex_state = 0, .external_lex_state = 23}, + [275] = {.lex_state = 1, .external_lex_state = 22}, + [276] = {.lex_state = 1, .external_lex_state = 22}, + [277] = {.lex_state = 1, .external_lex_state = 22}, + [278] = {.lex_state = 1, .external_lex_state = 22}, + [279] = {.lex_state = 2, .external_lex_state = 20}, + [280] = {.lex_state = 2, .external_lex_state = 20}, + [281] = {.lex_state = 4}, + [282] = {.lex_state = 4}, + [283] = {.lex_state = 4}, + [284] = {.lex_state = 19, .external_lex_state = 20}, + [285] = {.lex_state = 4}, + [286] = {.lex_state = 19, .external_lex_state = 20}, + [287] = {.lex_state = 19, .external_lex_state = 20}, + [288] = {.lex_state = 4}, + [289] = {.lex_state = 0, .external_lex_state = 23}, + [290] = {.lex_state = 19, .external_lex_state = 20}, + [291] = {.lex_state = 19, .external_lex_state = 20}, + [292] = {.lex_state = 4}, + [293] = {.lex_state = 19}, + [294] = {.lex_state = 2}, + [295] = {.lex_state = 19, .external_lex_state = 24}, + [296] = {.lex_state = 2}, + [297] = {.lex_state = 19}, + [298] = {.lex_state = 19}, + [299] = {.lex_state = 19, .external_lex_state = 24}, + [300] = {.lex_state = 2}, + [301] = {.lex_state = 19}, + [302] = {.lex_state = 2}, + [303] = {.lex_state = 19, .external_lex_state = 24}, + [304] = {.lex_state = 19}, + [305] = {.lex_state = 19, .external_lex_state = 24}, + [306] = {.lex_state = 2}, + [307] = {.lex_state = 2}, + [308] = {.lex_state = 19, .external_lex_state = 24}, + [309] = {.lex_state = 19, .external_lex_state = 24}, + [310] = {.lex_state = 19, .external_lex_state = 24}, + [311] = {.lex_state = 19, .external_lex_state = 24}, + [312] = {.lex_state = 19, .external_lex_state = 24}, + [313] = {.lex_state = 19, .external_lex_state = 24}, + [314] = {.lex_state = 2}, + [315] = {.lex_state = 19, .external_lex_state = 24}, + [316] = {.lex_state = 2}, + [317] = {.lex_state = 19}, + [318] = {.lex_state = 19, .external_lex_state = 24}, + [319] = {.lex_state = 19, .external_lex_state = 24}, + [320] = {.lex_state = 2}, + [321] = {.lex_state = 19}, + [322] = {.lex_state = 2}, + [323] = {.lex_state = 19, .external_lex_state = 24}, + [324] = {.lex_state = 19}, + [325] = {.lex_state = 19}, + [326] = {.lex_state = 19, .external_lex_state = 24}, + [327] = {.lex_state = 0, .external_lex_state = 21}, + [328] = {.lex_state = 19}, + [329] = {.lex_state = 19, .external_lex_state = 20}, + [330] = {.lex_state = 19}, + [331] = {.lex_state = 19, .external_lex_state = 20}, + [332] = {.lex_state = 19}, + [333] = {.lex_state = 0, .external_lex_state = 25}, + [334] = {.lex_state = 19, .external_lex_state = 26}, + [335] = {.lex_state = 37, .external_lex_state = 27}, + [336] = {.lex_state = 6}, + [337] = {.lex_state = 37, .external_lex_state = 27}, + [338] = {.lex_state = 37, .external_lex_state = 27}, + [339] = {.lex_state = 37, .external_lex_state = 27}, + [340] = {.lex_state = 0, .external_lex_state = 25}, + [341] = {.lex_state = 0, .external_lex_state = 25}, + [342] = {.lex_state = 37, .external_lex_state = 27}, + [343] = {.lex_state = 37, .external_lex_state = 27}, + [344] = {.lex_state = 0, .external_lex_state = 23}, + [345] = {.lex_state = 37, .external_lex_state = 27}, + [346] = {.lex_state = 0, .external_lex_state = 28}, + [347] = {.lex_state = 19}, + [348] = {.lex_state = 37, .external_lex_state = 27}, + [349] = {.lex_state = 0, .external_lex_state = 28}, + [350] = {.lex_state = 37, .external_lex_state = 27}, + [351] = {.lex_state = 6}, + [352] = {.lex_state = 37, .external_lex_state = 27}, + [353] = {.lex_state = 37, .external_lex_state = 27}, + [354] = {.lex_state = 37, .external_lex_state = 27}, + [355] = {.lex_state = 37, .external_lex_state = 27}, + [356] = {.lex_state = 37, .external_lex_state = 27}, + [357] = {.lex_state = 37, .external_lex_state = 27}, + [358] = {.lex_state = 0, .external_lex_state = 25}, + [359] = {.lex_state = 19, .external_lex_state = 26}, + [360] = {.lex_state = 0, .external_lex_state = 25}, + [361] = {.lex_state = 0, .external_lex_state = 25}, + [362] = {.lex_state = 0, .external_lex_state = 29}, + [363] = {.lex_state = 0, .external_lex_state = 30}, + [364] = {.lex_state = 0, .external_lex_state = 31}, + [365] = {.lex_state = 37, .external_lex_state = 27}, + [366] = {.lex_state = 0, .external_lex_state = 31}, + [367] = {.lex_state = 0, .external_lex_state = 30}, + [368] = {.lex_state = 0, .external_lex_state = 31}, + [369] = {.lex_state = 0, .external_lex_state = 32}, + [370] = {.lex_state = 0, .external_lex_state = 33}, + [371] = {.lex_state = 0, .external_lex_state = 31}, + [372] = {.lex_state = 0, .external_lex_state = 32}, + [373] = {.lex_state = 0, .external_lex_state = 33}, + [374] = {.lex_state = 0, .external_lex_state = 32}, + [375] = {.lex_state = 0, .external_lex_state = 33}, + [376] = {.lex_state = 19}, + [377] = {.lex_state = 0, .external_lex_state = 30}, + [378] = {.lex_state = 0, .external_lex_state = 30}, + [379] = {.lex_state = 1, .external_lex_state = 22}, + [380] = {.lex_state = 0, .external_lex_state = 30}, + [381] = {.lex_state = 0, .external_lex_state = 30}, + [382] = {.lex_state = 0, .external_lex_state = 31}, + [383] = {.lex_state = 0, .external_lex_state = 32}, + [384] = {.lex_state = 0, .external_lex_state = 32}, + [385] = {.lex_state = 0, .external_lex_state = 33}, + [386] = {.lex_state = 0, .external_lex_state = 33}, + [387] = {.lex_state = 1, .external_lex_state = 22}, + [388] = {.lex_state = 19}, + [389] = {.lex_state = 0, .external_lex_state = 33}, + [390] = {.lex_state = 0, .external_lex_state = 32}, + [391] = {.lex_state = 0, .external_lex_state = 31}, + [392] = {.lex_state = 0, .external_lex_state = 30}, + [393] = {.lex_state = 0, .external_lex_state = 30}, + [394] = {.lex_state = 37, .external_lex_state = 27}, + [395] = {.lex_state = 0, .external_lex_state = 30}, + [396] = {.lex_state = 0, .external_lex_state = 30}, + [397] = {.lex_state = 0, .external_lex_state = 29}, + [398] = {.lex_state = 0, .external_lex_state = 34}, + [399] = {.lex_state = 0, .external_lex_state = 34}, + [400] = {.lex_state = 0, .external_lex_state = 34}, + [401] = {.lex_state = 0, .external_lex_state = 21}, + [402] = {.lex_state = 0, .external_lex_state = 21}, + [403] = {.lex_state = 0, .external_lex_state = 34}, + [404] = {.lex_state = 0, .external_lex_state = 34}, + [405] = {.lex_state = 4}, + [406] = {.lex_state = 0, .external_lex_state = 34}, + [407] = {.lex_state = 0, .external_lex_state = 34}, + [408] = {.lex_state = 0, .external_lex_state = 34}, + [409] = {.lex_state = 0, .external_lex_state = 21}, + [410] = {.lex_state = 0, .external_lex_state = 21}, + [411] = {.lex_state = 0, .external_lex_state = 34}, + [412] = {.lex_state = 4}, + [413] = {.lex_state = 4}, + [414] = {.lex_state = 0, .external_lex_state = 34}, + [415] = {.lex_state = 0, .external_lex_state = 21}, + [416] = {.lex_state = 0, .external_lex_state = 34}, + [417] = {.lex_state = 0, .external_lex_state = 34}, + [418] = {.lex_state = 0, .external_lex_state = 34}, + [419] = {.lex_state = 0, .external_lex_state = 34}, + [420] = {.lex_state = 0, .external_lex_state = 34}, + [421] = {.lex_state = 0, .external_lex_state = 34}, + [422] = {.lex_state = 0, .external_lex_state = 34}, + [423] = {.lex_state = 0, .external_lex_state = 34}, + [424] = {.lex_state = 0, .external_lex_state = 35}, + [425] = {.lex_state = 0, .external_lex_state = 34}, + [426] = {.lex_state = 0, .external_lex_state = 34}, + [427] = {.lex_state = 4}, + [428] = {.lex_state = 0, .external_lex_state = 34}, + [429] = {.lex_state = 0, .external_lex_state = 34}, + [430] = {.lex_state = 0, .external_lex_state = 34}, + [431] = {.lex_state = 0, .external_lex_state = 35}, + [432] = {.lex_state = 0, .external_lex_state = 21}, + [433] = {.lex_state = 0, .external_lex_state = 34}, + [434] = {.lex_state = 0, .external_lex_state = 21}, + [435] = {.lex_state = 0, .external_lex_state = 35}, + [436] = {.lex_state = 0, .external_lex_state = 35}, + [437] = {.lex_state = 0, .external_lex_state = 34}, + [438] = {.lex_state = 0, .external_lex_state = 34}, + [439] = {.lex_state = 0, .external_lex_state = 34}, + [440] = {.lex_state = 0, .external_lex_state = 34}, + [441] = {.lex_state = 0, .external_lex_state = 34}, + [442] = {.lex_state = 0, .external_lex_state = 34}, + [443] = {.lex_state = 0, .external_lex_state = 34}, + [444] = {.lex_state = 0, .external_lex_state = 34}, + [445] = {.lex_state = 0, .external_lex_state = 35}, + [446] = {.lex_state = 4}, + [447] = {.lex_state = 0, .external_lex_state = 34}, + [448] = {.lex_state = 0, .external_lex_state = 34}, + [449] = {.lex_state = 0, .external_lex_state = 34}, + [450] = {.lex_state = 4}, + [451] = {.lex_state = 0, .external_lex_state = 34}, + [452] = {.lex_state = 0, .external_lex_state = 34}, + [453] = {.lex_state = 4}, + [454] = {.lex_state = 0, .external_lex_state = 34}, + [455] = {.lex_state = 0, .external_lex_state = 34}, + [456] = {.lex_state = 0, .external_lex_state = 34}, + [457] = {.lex_state = 4}, + [458] = {.lex_state = 0, .external_lex_state = 34}, + [459] = {.lex_state = 0, .external_lex_state = 36}, + [460] = {.lex_state = 0, .external_lex_state = 27}, + [461] = {.lex_state = 0, .external_lex_state = 23}, + [462] = {.lex_state = 0, .external_lex_state = 23}, + [463] = {.lex_state = 0, .external_lex_state = 23}, + [464] = {.lex_state = 0, .external_lex_state = 23}, + [465] = {.lex_state = 0, .external_lex_state = 23}, + [466] = {.lex_state = 0, .external_lex_state = 23}, + [467] = {.lex_state = 0, .external_lex_state = 27}, + [468] = {.lex_state = 0, .external_lex_state = 23}, + [469] = {.lex_state = 0, .external_lex_state = 27}, + [470] = {.lex_state = 0, .external_lex_state = 37}, + [471] = {.lex_state = 0, .external_lex_state = 38}, + [472] = {.lex_state = 0, .external_lex_state = 39}, + [473] = {.lex_state = 37, .external_lex_state = 40}, + [474] = {.lex_state = 0, .external_lex_state = 41}, + [475] = {.lex_state = 0, .external_lex_state = 42}, + [476] = {.lex_state = 0, .external_lex_state = 43}, + [477] = {.lex_state = 0, .external_lex_state = 44}, + [478] = {.lex_state = 0, .external_lex_state = 37}, + [479] = {.lex_state = 0, .external_lex_state = 38}, + [480] = {.lex_state = 0, .external_lex_state = 45}, + [481] = {.lex_state = 0, .external_lex_state = 46}, + [482] = {.lex_state = 0, .external_lex_state = 47}, + [483] = {.lex_state = 0, .external_lex_state = 48}, + [484] = {.lex_state = 0, .external_lex_state = 39}, + [485] = {.lex_state = 0, .external_lex_state = 49}, + [486] = {.lex_state = 0, .external_lex_state = 50}, + [487] = {.lex_state = 0, .external_lex_state = 42}, + [488] = {.lex_state = 7, .external_lex_state = 24}, + [489] = {.lex_state = 0, .external_lex_state = 50}, + [490] = {.lex_state = 0, .external_lex_state = 51}, + [491] = {.lex_state = 0, .external_lex_state = 43}, + [492] = {.lex_state = 0, .external_lex_state = 38}, + [493] = {.lex_state = 0, .external_lex_state = 52}, + [494] = {.lex_state = 0, .external_lex_state = 53}, + [495] = {.lex_state = 0, .external_lex_state = 45}, + [496] = {.lex_state = 0, .external_lex_state = 46}, + [497] = {.lex_state = 0, .external_lex_state = 47}, + [498] = {.lex_state = 0, .external_lex_state = 48}, + [499] = {.lex_state = 0, .external_lex_state = 49}, + [500] = {.lex_state = 0, .external_lex_state = 50}, + [501] = {.lex_state = 8}, + [502] = {.lex_state = 0, .external_lex_state = 51}, + [503] = {.lex_state = 0, .external_lex_state = 54}, + [504] = {.lex_state = 0, .external_lex_state = 52}, + [505] = {.lex_state = 7, .external_lex_state = 24}, + [506] = {.lex_state = 0, .external_lex_state = 44}, + [507] = {.lex_state = 0, .external_lex_state = 41}, + [508] = {.lex_state = 0, .external_lex_state = 52}, + [509] = {.lex_state = 0, .external_lex_state = 53}, + [510] = {.lex_state = 0, .external_lex_state = 41}, + [511] = {.lex_state = 37}, + [512] = {.lex_state = 37, .external_lex_state = 40}, + [513] = {.lex_state = 0, .external_lex_state = 37}, + [514] = {.lex_state = 0, .external_lex_state = 53}, + [515] = {.lex_state = 0, .external_lex_state = 44}, + [516] = {.lex_state = 0, .external_lex_state = 44}, + [517] = {.lex_state = 0, .external_lex_state = 53}, + [518] = {.lex_state = 0, .external_lex_state = 52}, + [519] = {.lex_state = 0, .external_lex_state = 51}, + [520] = {.lex_state = 0, .external_lex_state = 50}, + [521] = {.lex_state = 0, .external_lex_state = 49}, + [522] = {.lex_state = 0, .external_lex_state = 51}, + [523] = {.lex_state = 0, .external_lex_state = 48}, + [524] = {.lex_state = 0, .external_lex_state = 47}, + [525] = {.lex_state = 7, .external_lex_state = 24}, + [526] = {.lex_state = 0, .external_lex_state = 50}, + [527] = {.lex_state = 0, .external_lex_state = 46}, + [528] = {.lex_state = 0, .external_lex_state = 45}, + [529] = {.lex_state = 0, .external_lex_state = 38}, + [530] = {.lex_state = 0, .external_lex_state = 43}, + [531] = {.lex_state = 0, .external_lex_state = 49}, + [532] = {.lex_state = 0, .external_lex_state = 42}, + [533] = {.lex_state = 0, .external_lex_state = 48}, + [534] = {.lex_state = 0, .external_lex_state = 47}, + [535] = {.lex_state = 0, .external_lex_state = 46}, + [536] = {.lex_state = 0, .external_lex_state = 45}, + [537] = {.lex_state = 0, .external_lex_state = 43}, + [538] = {.lex_state = 0, .external_lex_state = 42}, + [539] = {.lex_state = 0, .external_lex_state = 39}, + [540] = {.lex_state = 0, .external_lex_state = 39}, + [541] = {.lex_state = 7, .external_lex_state = 24}, + [542] = {.lex_state = 0, .external_lex_state = 37}, + [543] = {.lex_state = 0, .external_lex_state = 55}, + [544] = {.lex_state = 0, .external_lex_state = 41}, + [545] = {.lex_state = 0, .external_lex_state = 53}, + [546] = {.lex_state = 8}, + [547] = {.lex_state = 0, .external_lex_state = 44}, + [548] = {.lex_state = 0, .external_lex_state = 52}, + [549] = {.lex_state = 0, .external_lex_state = 51}, + [550] = {.lex_state = 0, .external_lex_state = 50}, + [551] = {.lex_state = 7, .external_lex_state = 24}, + [552] = {.lex_state = 0, .external_lex_state = 49}, + [553] = {.lex_state = 0, .external_lex_state = 53}, + [554] = {.lex_state = 0, .external_lex_state = 44}, + [555] = {.lex_state = 0, .external_lex_state = 48}, + [556] = {.lex_state = 0, .external_lex_state = 52}, + [557] = {.lex_state = 0, .external_lex_state = 56}, + [558] = {.lex_state = 0, .external_lex_state = 56}, + [559] = {.lex_state = 0, .external_lex_state = 47}, + [560] = {.lex_state = 0, .external_lex_state = 57}, + [561] = {.lex_state = 0, .external_lex_state = 51}, + [562] = {.lex_state = 0, .external_lex_state = 41}, + [563] = {.lex_state = 0, .external_lex_state = 46}, + [564] = {.lex_state = 0, .external_lex_state = 49}, + [565] = {.lex_state = 0, .external_lex_state = 56}, + [566] = {.lex_state = 0, .external_lex_state = 48}, + [567] = {.lex_state = 0, .external_lex_state = 56}, + [568] = {.lex_state = 0, .external_lex_state = 45}, + [569] = {.lex_state = 0, .external_lex_state = 47}, + [570] = {.lex_state = 0, .external_lex_state = 57}, + [571] = {.lex_state = 0, .external_lex_state = 57}, + [572] = {.lex_state = 0, .external_lex_state = 46}, + [573] = {.lex_state = 0, .external_lex_state = 38}, + [574] = {.lex_state = 0, .external_lex_state = 45}, + [575] = {.lex_state = 0, .external_lex_state = 56}, + [576] = {.lex_state = 0, .external_lex_state = 38}, + [577] = {.lex_state = 37}, + [578] = {.lex_state = 0, .external_lex_state = 43}, + [579] = {.lex_state = 0, .external_lex_state = 57}, + [580] = {.lex_state = 0, .external_lex_state = 43}, + [581] = {.lex_state = 0, .external_lex_state = 42}, + [582] = {.lex_state = 0, .external_lex_state = 42}, + [583] = {.lex_state = 0, .external_lex_state = 41}, + [584] = {.lex_state = 0, .external_lex_state = 37}, + [585] = {.lex_state = 0, .external_lex_state = 37}, + [586] = {.lex_state = 0, .external_lex_state = 39}, + [587] = {.lex_state = 0, .external_lex_state = 55}, + [588] = {.lex_state = 8}, + [589] = {.lex_state = 0, .external_lex_state = 39}, + [590] = {.lex_state = 37, .external_lex_state = 58}, + [591] = {.lex_state = 0, .external_lex_state = 59}, + [592] = {.lex_state = 0, .external_lex_state = 34}, + [593] = {.lex_state = 0, .external_lex_state = 34}, + [594] = {.lex_state = 0, .external_lex_state = 34}, + [595] = {.lex_state = 0, .external_lex_state = 34}, + [596] = {.lex_state = 0, .external_lex_state = 33}, + [597] = {.lex_state = 0, .external_lex_state = 34}, + [598] = {.lex_state = 0, .external_lex_state = 60}, + [599] = {.lex_state = 0, .external_lex_state = 34}, + [600] = {.lex_state = 37, .external_lex_state = 27}, + [601] = {.lex_state = 0, .external_lex_state = 31}, + [602] = {.lex_state = 0, .external_lex_state = 34}, + [603] = {.lex_state = 0, .external_lex_state = 34}, + [604] = {.lex_state = 0, .external_lex_state = 34}, + [605] = {.lex_state = 0, .external_lex_state = 61}, + [606] = {.lex_state = 0, .external_lex_state = 61}, + [607] = {.lex_state = 0, .external_lex_state = 25}, + [608] = {.lex_state = 0, .external_lex_state = 34}, + [609] = {.lex_state = 0, .external_lex_state = 34}, + [610] = {.lex_state = 0, .external_lex_state = 34}, + [611] = {.lex_state = 0, .external_lex_state = 34}, + [612] = {.lex_state = 0, .external_lex_state = 34}, + [613] = {.lex_state = 0, .external_lex_state = 34}, + [614] = {.lex_state = 0, .external_lex_state = 34}, + [615] = {.lex_state = 8}, + [616] = {.lex_state = 0, .external_lex_state = 34}, + [617] = {.lex_state = 0, .external_lex_state = 34}, + [618] = {.lex_state = 9}, + [619] = {.lex_state = 0, .external_lex_state = 34}, + [620] = {.lex_state = 0, .external_lex_state = 34}, + [621] = {.lex_state = 0, .external_lex_state = 34}, + [622] = {.lex_state = 0, .external_lex_state = 34}, + [623] = {.lex_state = 0, .external_lex_state = 62}, + [624] = {.lex_state = 0, .external_lex_state = 62}, + [625] = {.lex_state = 0, .external_lex_state = 60}, + [626] = {.lex_state = 0, .external_lex_state = 34}, + [627] = {.lex_state = 0, .external_lex_state = 63}, + [628] = {.lex_state = 0, .external_lex_state = 63}, + [629] = {.lex_state = 0, .external_lex_state = 34}, + [630] = {.lex_state = 0, .external_lex_state = 31}, + [631] = {.lex_state = 0, .external_lex_state = 34}, + [632] = {.lex_state = 0, .external_lex_state = 31}, + [633] = {.lex_state = 0, .external_lex_state = 59}, + [634] = {.lex_state = 0, .external_lex_state = 34}, + [635] = {.lex_state = 0, .external_lex_state = 34}, + [636] = {.lex_state = 0, .external_lex_state = 33}, + [637] = {.lex_state = 0, .external_lex_state = 32}, + [638] = {.lex_state = 0, .external_lex_state = 33}, + [639] = {.lex_state = 0, .external_lex_state = 33}, + [640] = {.lex_state = 0, .external_lex_state = 58}, + [641] = {.lex_state = 10}, + [642] = {.lex_state = 0, .external_lex_state = 64}, + [643] = {.lex_state = 0, .external_lex_state = 25}, + [644] = {.lex_state = 0, .external_lex_state = 20}, + [645] = {.lex_state = 0, .external_lex_state = 65}, + [646] = {.lex_state = 0, .external_lex_state = 34}, + [647] = {.lex_state = 0}, + [648] = {.lex_state = 0, .external_lex_state = 34}, + [649] = {.lex_state = 0, .external_lex_state = 34}, + [650] = {.lex_state = 0, .external_lex_state = 34}, + [651] = {.lex_state = 0, .external_lex_state = 34}, + [652] = {.lex_state = 0, .external_lex_state = 34}, + [653] = {.lex_state = 0, .external_lex_state = 34}, + [654] = {.lex_state = 0, .external_lex_state = 34}, + [655] = {.lex_state = 0, .external_lex_state = 34}, + [656] = {.lex_state = 0, .external_lex_state = 34}, + [657] = {.lex_state = 0, .external_lex_state = 20}, + [658] = {.lex_state = 0, .external_lex_state = 25}, + [659] = {.lex_state = 0, .external_lex_state = 25}, + [660] = {.lex_state = 0, .external_lex_state = 34}, + [661] = {.lex_state = 0, .external_lex_state = 34}, + [662] = {.lex_state = 0, .external_lex_state = 59}, + [663] = {.lex_state = 0, .external_lex_state = 34}, + [664] = {.lex_state = 0, .external_lex_state = 58}, + [665] = {.lex_state = 0, .external_lex_state = 34}, + [666] = {.lex_state = 0, .external_lex_state = 60}, + [667] = {.lex_state = 0, .external_lex_state = 66}, + [668] = {.lex_state = 0, .external_lex_state = 66}, + [669] = {.lex_state = 0, .external_lex_state = 34}, + [670] = {.lex_state = 0, .external_lex_state = 31}, + [671] = {.lex_state = 37, .external_lex_state = 58}, + [672] = {.lex_state = 0, .external_lex_state = 32}, + [673] = {.lex_state = 0, .external_lex_state = 59}, + [674] = {.lex_state = 0, .external_lex_state = 32}, + [675] = {.lex_state = 0, .external_lex_state = 67}, + [676] = {.lex_state = 0, .external_lex_state = 32}, + [677] = {.lex_state = 0, .external_lex_state = 65}, + [678] = {.lex_state = 0, .external_lex_state = 66}, + [679] = {.lex_state = 0, .external_lex_state = 67}, + [680] = {.lex_state = 0, .external_lex_state = 64}, + [681] = {.lex_state = 0, .external_lex_state = 66}, + [682] = {.lex_state = 0, .external_lex_state = 34}, + [683] = {.lex_state = 0, .external_lex_state = 20}, + [684] = {.lex_state = 0, .external_lex_state = 34}, + [685] = {.lex_state = 37, .external_lex_state = 27}, + [686] = {.lex_state = 0, .external_lex_state = 66}, + [687] = {.lex_state = 0}, + [688] = {.lex_state = 0}, + [689] = {.lex_state = 0, .external_lex_state = 68}, + [690] = {.lex_state = 4}, + [691] = {.lex_state = 9, .external_lex_state = 24}, + [692] = {.lex_state = 0, .external_lex_state = 60}, + [693] = {.lex_state = 4}, + [694] = {.lex_state = 4}, + [695] = {.lex_state = 0, .external_lex_state = 46}, + [696] = {.lex_state = 0, .external_lex_state = 69}, + [697] = {.lex_state = 4}, + [698] = {.lex_state = 0}, + [699] = {.lex_state = 0, .external_lex_state = 41}, + [700] = {.lex_state = 0, .external_lex_state = 41}, + [701] = {.lex_state = 0}, + [702] = {.lex_state = 9, .external_lex_state = 24}, + [703] = {.lex_state = 0, .external_lex_state = 42}, + [704] = {.lex_state = 0}, + [705] = {.lex_state = 0, .external_lex_state = 42}, + [706] = {.lex_state = 0}, + [707] = {.lex_state = 0}, + [708] = {.lex_state = 0}, + [709] = {.lex_state = 9, .external_lex_state = 24}, + [710] = {.lex_state = 0}, + [711] = {.lex_state = 9, .external_lex_state = 24}, + [712] = {.lex_state = 0, .external_lex_state = 45}, + [713] = {.lex_state = 0}, + [714] = {.lex_state = 0}, + [715] = {.lex_state = 0}, + [716] = {.lex_state = 3, .external_lex_state = 24}, + [717] = {.lex_state = 0}, + [718] = {.lex_state = 0, .external_lex_state = 26}, + [719] = {.lex_state = 0, .external_lex_state = 69}, + [720] = {.lex_state = 0, .external_lex_state = 45}, + [721] = {.lex_state = 0, .external_lex_state = 48}, + [722] = {.lex_state = 0, .external_lex_state = 48}, + [723] = {.lex_state = 0, .external_lex_state = 51}, + [724] = {.lex_state = 0, .external_lex_state = 51}, + [725] = {.lex_state = 0, .external_lex_state = 37}, + [726] = {.lex_state = 0, .external_lex_state = 37}, + [727] = {.lex_state = 0, .external_lex_state = 43}, + [728] = {.lex_state = 0, .external_lex_state = 43}, + [729] = {.lex_state = 0, .external_lex_state = 46}, + [730] = {.lex_state = 0, .external_lex_state = 49}, + [731] = {.lex_state = 0, .external_lex_state = 49}, + [732] = {.lex_state = 0, .external_lex_state = 49}, + [733] = {.lex_state = 0, .external_lex_state = 52}, + [734] = {.lex_state = 0, .external_lex_state = 52}, + [735] = {.lex_state = 0, .external_lex_state = 39}, + [736] = {.lex_state = 0, .external_lex_state = 39}, + [737] = {.lex_state = 0, .external_lex_state = 38}, + [738] = {.lex_state = 0, .external_lex_state = 38}, + [739] = {.lex_state = 0, .external_lex_state = 47}, + [740] = {.lex_state = 0}, + [741] = {.lex_state = 0, .external_lex_state = 47}, + [742] = {.lex_state = 0}, + [743] = {.lex_state = 0}, + [744] = {.lex_state = 0}, + [745] = {.lex_state = 0, .external_lex_state = 50}, + [746] = {.lex_state = 0}, + [747] = {.lex_state = 9, .external_lex_state = 24}, + [748] = {.lex_state = 0, .external_lex_state = 69}, + [749] = {.lex_state = 0, .external_lex_state = 48}, + [750] = {.lex_state = 7, .external_lex_state = 24}, + [751] = {.lex_state = 0}, + [752] = {.lex_state = 0}, + [753] = {.lex_state = 0, .external_lex_state = 20}, + [754] = {.lex_state = 4}, + [755] = {.lex_state = 0}, + [756] = {.lex_state = 0, .external_lex_state = 69}, + [757] = {.lex_state = 9, .external_lex_state = 24}, + [758] = {.lex_state = 0, .external_lex_state = 69}, + [759] = {.lex_state = 0, .external_lex_state = 69}, + [760] = {.lex_state = 0, .external_lex_state = 44}, + [761] = {.lex_state = 0, .external_lex_state = 60}, + [762] = {.lex_state = 0}, + [763] = {.lex_state = 0}, + [764] = {.lex_state = 0}, + [765] = {.lex_state = 0}, + [766] = {.lex_state = 9, .external_lex_state = 24}, + [767] = {.lex_state = 0, .external_lex_state = 44}, + [768] = {.lex_state = 0}, + [769] = {.lex_state = 0}, + [770] = {.lex_state = 37}, + [771] = {.lex_state = 0}, + [772] = {.lex_state = 0}, + [773] = {.lex_state = 0, .external_lex_state = 26}, + [774] = {.lex_state = 0, .external_lex_state = 69}, + [775] = {.lex_state = 0, .external_lex_state = 50}, + [776] = {.lex_state = 0, .external_lex_state = 47}, + [777] = {.lex_state = 0, .external_lex_state = 38}, + [778] = {.lex_state = 0, .external_lex_state = 44}, + [779] = {.lex_state = 0, .external_lex_state = 39}, + [780] = {.lex_state = 0, .external_lex_state = 52}, + [781] = {.lex_state = 0, .external_lex_state = 27}, + [782] = {.lex_state = 0, .external_lex_state = 46}, + [783] = {.lex_state = 0, .external_lex_state = 43}, + [784] = {.lex_state = 0, .external_lex_state = 27}, + [785] = {.lex_state = 0, .external_lex_state = 27}, + [786] = {.lex_state = 0, .external_lex_state = 27}, + [787] = {.lex_state = 0, .external_lex_state = 27}, + [788] = {.lex_state = 0, .external_lex_state = 27}, + [789] = {.lex_state = 0, .external_lex_state = 27}, + [790] = {.lex_state = 0, .external_lex_state = 27}, + [791] = {.lex_state = 0, .external_lex_state = 27}, + [792] = {.lex_state = 0, .external_lex_state = 27}, + [793] = {.lex_state = 0, .external_lex_state = 27}, + [794] = {.lex_state = 0, .external_lex_state = 51}, + [795] = {.lex_state = 0, .external_lex_state = 53}, + [796] = {.lex_state = 0, .external_lex_state = 27}, + [797] = {.lex_state = 0}, + [798] = {.lex_state = 0}, + [799] = {.lex_state = 0, .external_lex_state = 27}, + [800] = {.lex_state = 0, .external_lex_state = 27}, + [801] = {.lex_state = 0, .external_lex_state = 27}, + [802] = {.lex_state = 9, .external_lex_state = 24}, + [803] = {.lex_state = 0, .external_lex_state = 27}, + [804] = {.lex_state = 0}, + [805] = {.lex_state = 0, .external_lex_state = 27}, + [806] = {.lex_state = 0}, + [807] = {.lex_state = 0, .external_lex_state = 27}, + [808] = {.lex_state = 0}, + [809] = {.lex_state = 0, .external_lex_state = 27}, + [810] = {.lex_state = 0, .external_lex_state = 27}, + [811] = {.lex_state = 0}, + [812] = {.lex_state = 9, .external_lex_state = 24}, + [813] = {.lex_state = 0, .external_lex_state = 27}, + [814] = {.lex_state = 4}, + [815] = {.lex_state = 0, .external_lex_state = 27}, + [816] = {.lex_state = 0}, + [817] = {.lex_state = 0}, + [818] = {.lex_state = 9, .external_lex_state = 24}, + [819] = {.lex_state = 0}, + [820] = {.lex_state = 4}, + [821] = {.lex_state = 9, .external_lex_state = 24}, + [822] = {.lex_state = 0, .external_lex_state = 27}, + [823] = {.lex_state = 0}, + [824] = {.lex_state = 0, .external_lex_state = 50}, + [825] = {.lex_state = 0}, + [826] = {.lex_state = 0}, + [827] = {.lex_state = 37, .external_lex_state = 40}, + [828] = {.lex_state = 0, .external_lex_state = 26}, + [829] = {.lex_state = 0, .external_lex_state = 69}, + [830] = {.lex_state = 0, .external_lex_state = 27}, + [831] = {.lex_state = 0, .external_lex_state = 27}, + [832] = {.lex_state = 0, .external_lex_state = 27}, + [833] = {.lex_state = 0, .external_lex_state = 27}, + [834] = {.lex_state = 0, .external_lex_state = 27}, + [835] = {.lex_state = 0, .external_lex_state = 27}, + [836] = {.lex_state = 0, .external_lex_state = 27}, + [837] = {.lex_state = 0, .external_lex_state = 27}, + [838] = {.lex_state = 0, .external_lex_state = 27}, + [839] = {.lex_state = 0, .external_lex_state = 27}, + [840] = {.lex_state = 0, .external_lex_state = 27}, + [841] = {.lex_state = 0, .external_lex_state = 27}, + [842] = {.lex_state = 0, .external_lex_state = 27}, + [843] = {.lex_state = 0, .external_lex_state = 27}, + [844] = {.lex_state = 0, .external_lex_state = 27}, + [845] = {.lex_state = 0, .external_lex_state = 27}, + [846] = {.lex_state = 0, .external_lex_state = 27}, + [847] = {.lex_state = 0, .external_lex_state = 27}, + [848] = {.lex_state = 0, .external_lex_state = 27}, + [849] = {.lex_state = 0, .external_lex_state = 27}, + [850] = {.lex_state = 0, .external_lex_state = 37}, + [851] = {.lex_state = 0}, + [852] = {.lex_state = 0, .external_lex_state = 53}, + [853] = {.lex_state = 0, .external_lex_state = 45}, + [854] = {.lex_state = 0, .external_lex_state = 26}, + [855] = {.lex_state = 9, .external_lex_state = 24}, + [856] = {.lex_state = 9, .external_lex_state = 24}, + [857] = {.lex_state = 0, .external_lex_state = 26}, + [858] = {.lex_state = 9, .external_lex_state = 24}, + [859] = {.lex_state = 0, .external_lex_state = 42}, + [860] = {.lex_state = 9, .external_lex_state = 24}, + [861] = {.lex_state = 0, .external_lex_state = 41}, + [862] = {.lex_state = 0, .external_lex_state = 70}, + [863] = {.lex_state = 0, .external_lex_state = 24}, + [864] = {.lex_state = 49}, + [865] = {.lex_state = 0, .external_lex_state = 71}, + [866] = {.lex_state = 49}, + [867] = {.lex_state = 0, .external_lex_state = 24}, + [868] = {.lex_state = 0, .external_lex_state = 24}, + [869] = {.lex_state = 0, .external_lex_state = 70}, + [870] = {.lex_state = 0, .external_lex_state = 24}, + [871] = {.lex_state = 0, .external_lex_state = 70}, + [872] = {.lex_state = 0, .external_lex_state = 70}, + [873] = {.lex_state = 0, .external_lex_state = 24}, + [874] = {.lex_state = 0, .external_lex_state = 24}, + [875] = {.lex_state = 0, .external_lex_state = 24}, + [876] = {.lex_state = 0, .external_lex_state = 24}, + [877] = {.lex_state = 0, .external_lex_state = 24}, + [878] = {.lex_state = 0, .external_lex_state = 24}, + [879] = {.lex_state = 0, .external_lex_state = 24}, + [880] = {.lex_state = 0, .external_lex_state = 24}, + [881] = {.lex_state = 0, .external_lex_state = 24}, + [882] = {.lex_state = 0, .external_lex_state = 24}, + [883] = {.lex_state = 0, .external_lex_state = 24}, + [884] = {.lex_state = 0, .external_lex_state = 24}, + [885] = {.lex_state = 4}, + [886] = {.lex_state = 0, .external_lex_state = 24}, + [887] = {.lex_state = 0, .external_lex_state = 24}, + [888] = {.lex_state = 0}, + [889] = {.lex_state = 4}, + [890] = {.lex_state = 9}, + [891] = {.lex_state = 0}, + [892] = {.lex_state = 11}, + [893] = {.lex_state = 0, .external_lex_state = 24}, + [894] = {.lex_state = 0, .external_lex_state = 70}, + [895] = {.lex_state = 0}, + [896] = {.lex_state = 0, .external_lex_state = 70}, + [897] = {.lex_state = 0, .external_lex_state = 70}, + [898] = {.lex_state = 0, .external_lex_state = 24}, + [899] = {.lex_state = 0, .external_lex_state = 40}, + [900] = {.lex_state = 0, .external_lex_state = 24}, + [901] = {.lex_state = 0, .external_lex_state = 24}, + [902] = {.lex_state = 0, .external_lex_state = 24}, + [903] = {.lex_state = 0, .external_lex_state = 24}, + [904] = {.lex_state = 0}, + [905] = {.lex_state = 0, .external_lex_state = 24}, + [906] = {.lex_state = 0, .external_lex_state = 24}, + [907] = {.lex_state = 12}, + [908] = {.lex_state = 0, .external_lex_state = 24}, + [909] = {.lex_state = 0, .external_lex_state = 24}, + [910] = {.lex_state = 0}, + [911] = {.lex_state = 0, .external_lex_state = 24}, + [912] = {.lex_state = 0, .external_lex_state = 24}, + [913] = {.lex_state = 0, .external_lex_state = 70}, + [914] = {.lex_state = 0, .external_lex_state = 24}, + [915] = {.lex_state = 0}, + [916] = {.lex_state = 0, .external_lex_state = 70}, + [917] = {.lex_state = 0, .external_lex_state = 24}, + [918] = {.lex_state = 3}, + [919] = {.lex_state = 9}, + [920] = {.lex_state = 0}, + [921] = {.lex_state = 0, .external_lex_state = 71}, + [922] = {.lex_state = 0, .external_lex_state = 24}, + [923] = {.lex_state = 0, .external_lex_state = 24}, + [924] = {.lex_state = 0, .external_lex_state = 24}, + [925] = {.lex_state = 0, .external_lex_state = 71}, + [926] = {.lex_state = 0, .external_lex_state = 70}, + [927] = {.lex_state = 0}, + [928] = {.lex_state = 0, .external_lex_state = 24}, + [929] = {.lex_state = 0, .external_lex_state = 24}, + [930] = {.lex_state = 0, .external_lex_state = 70}, + [931] = {.lex_state = 49}, + [932] = {.lex_state = 0, .external_lex_state = 72}, + [933] = {.lex_state = 0, .external_lex_state = 70}, + [934] = {.lex_state = 3}, + [935] = {.lex_state = 0, .external_lex_state = 24}, + [936] = {.lex_state = 3}, + [937] = {.lex_state = 0, .external_lex_state = 24}, + [938] = {.lex_state = 0, .external_lex_state = 24}, + [939] = {.lex_state = 0, .external_lex_state = 24}, + [940] = {.lex_state = 9}, + [941] = {.lex_state = 0, .external_lex_state = 24}, + [942] = {.lex_state = 0, .external_lex_state = 70}, + [943] = {.lex_state = 0, .external_lex_state = 24}, + [944] = {.lex_state = 0, .external_lex_state = 24}, + [945] = {.lex_state = 0}, + [946] = {.lex_state = 0, .external_lex_state = 24}, + [947] = {.lex_state = 0, .external_lex_state = 24}, + [948] = {.lex_state = 0, .external_lex_state = 24}, + [949] = {.lex_state = 0, .external_lex_state = 24}, + [950] = {.lex_state = 0, .external_lex_state = 70}, + [951] = {.lex_state = 0, .external_lex_state = 70}, + [952] = {.lex_state = 49}, + [953] = {.lex_state = 0, .external_lex_state = 24}, + [954] = {.lex_state = 0, .external_lex_state = 40}, + [955] = {.lex_state = 0, .external_lex_state = 24}, + [956] = {.lex_state = 0, .external_lex_state = 24}, + [957] = {.lex_state = 0, .external_lex_state = 24}, + [958] = {.lex_state = 0, .external_lex_state = 71}, + [959] = {.lex_state = 3}, + [960] = {.lex_state = 0, .external_lex_state = 70}, + [961] = {.lex_state = 0, .external_lex_state = 26}, + [962] = {.lex_state = 0, .external_lex_state = 70}, + [963] = {.lex_state = 0, .external_lex_state = 24}, + [964] = {.lex_state = 0, .external_lex_state = 24}, + [965] = {.lex_state = 0, .external_lex_state = 24}, + [966] = {.lex_state = 49}, + [967] = {.lex_state = 9}, + [968] = {.lex_state = 0, .external_lex_state = 24}, + [969] = {.lex_state = 0, .external_lex_state = 24}, + [970] = {.lex_state = 0, .external_lex_state = 70}, + [971] = {.lex_state = 0, .external_lex_state = 70}, + [972] = {.lex_state = 0, .external_lex_state = 24}, + [973] = {.lex_state = 49}, + [974] = {.lex_state = 0, .external_lex_state = 24}, + [975] = {.lex_state = 9}, + [976] = {.lex_state = 0, .external_lex_state = 24}, + [977] = {.lex_state = 0, .external_lex_state = 24}, + [978] = {.lex_state = 0, .external_lex_state = 24}, + [979] = {.lex_state = 0, .external_lex_state = 24}, + [980] = {.lex_state = 0, .external_lex_state = 24}, + [981] = {.lex_state = 9}, + [982] = {.lex_state = 0, .external_lex_state = 24}, + [983] = {.lex_state = 0, .external_lex_state = 24}, + [984] = {.lex_state = 0, .external_lex_state = 24}, + [985] = {.lex_state = 0, .external_lex_state = 24}, + [986] = {.lex_state = 0}, + [987] = {.lex_state = 0, .external_lex_state = 70}, + [988] = {.lex_state = 0, .external_lex_state = 70}, + [989] = {.lex_state = 0, .external_lex_state = 24}, + [990] = {.lex_state = 0, .external_lex_state = 24}, + [991] = {.lex_state = 0, .external_lex_state = 71}, + [992] = {.lex_state = 0, .external_lex_state = 70}, + [993] = {.lex_state = 49}, + [994] = {.lex_state = 49}, + [995] = {.lex_state = 9}, + [996] = {.lex_state = 4}, + [997] = {.lex_state = 0}, + [998] = {.lex_state = 0}, + [999] = {.lex_state = 9}, + [1000] = {.lex_state = 11}, + [1001] = {.lex_state = 49}, + [1002] = {.lex_state = 0}, + [1003] = {.lex_state = 4}, + [1004] = {.lex_state = 0, .external_lex_state = 73}, + [1005] = {.lex_state = 0}, + [1006] = {.lex_state = 9}, + [1007] = {.lex_state = 11}, + [1008] = {.lex_state = 49}, + [1009] = {.lex_state = 0}, + [1010] = {.lex_state = 4}, + [1011] = {.lex_state = 0, .external_lex_state = 24}, + [1012] = {.lex_state = 0}, + [1013] = {.lex_state = 9}, + [1014] = {.lex_state = 11}, + [1015] = {.lex_state = 49}, + [1016] = {.lex_state = 0, .external_lex_state = 24}, + [1017] = {.lex_state = 4}, + [1018] = {.lex_state = 7}, + [1019] = {.lex_state = 0}, + [1020] = {.lex_state = 9}, + [1021] = {.lex_state = 11}, + [1022] = {.lex_state = 0, .external_lex_state = 24}, + [1023] = {.lex_state = 0, .external_lex_state = 24}, + [1024] = {.lex_state = 0}, + [1025] = {.lex_state = 3}, + [1026] = {.lex_state = 0, .external_lex_state = 26}, + [1027] = {.lex_state = 0, .external_lex_state = 24}, + [1028] = {.lex_state = 0}, + [1029] = {.lex_state = 3}, + [1030] = {.lex_state = 0, .external_lex_state = 24}, + [1031] = {.lex_state = 0, .external_lex_state = 24}, + [1032] = {.lex_state = 0}, + [1033] = {.lex_state = 3}, + [1034] = {.lex_state = 0, .external_lex_state = 70}, + [1035] = {.lex_state = 0, .external_lex_state = 24}, + [1036] = {.lex_state = 0}, + [1037] = {.lex_state = 3}, + [1038] = {.lex_state = 0}, + [1039] = {.lex_state = 0}, + [1040] = {.lex_state = 0}, + [1041] = {.lex_state = 0}, + [1042] = {.lex_state = 0}, + [1043] = {.lex_state = 0}, + [1044] = {.lex_state = 0}, + [1045] = {.lex_state = 0}, + [1046] = {.lex_state = 0}, + [1047] = {.lex_state = 0, .external_lex_state = 70}, + [1048] = {.lex_state = 0, .external_lex_state = 74}, + [1049] = {.lex_state = 0, .external_lex_state = 75}, +}; + +static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { + [0] = { + [ts_builtin_sym_end] = ACTIONS(1), + [anon_sym_LBRACK] = ACTIONS(1), + [anon_sym_x] = ACTIONS(1), + [anon_sym_X] = ACTIONS(1), + [anon_sym_RBRACK] = ACTIONS(1), + [anon_sym_SPACE] = ACTIONS(1), + [anon_sym_PIPE] = ACTIONS(1), + [anon_sym_NULL] = ACTIONS(1), + [anon_sym_EQ] = ACTIONS(1), + [anon_sym_COLON] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(1), + [anon_sym_RBRACE] = ACTIONS(1), + [anon_sym_DOT] = ACTIONS(1), + [sym_identifier] = ACTIONS(1), + [anon_sym_DQUOTE] = ACTIONS(1), + [aux_sym_value_token2] = ACTIONS(1), + [sym__whitespace1] = ACTIONS(1), + [anon_sym_LBRACE_DASH] = ACTIONS(1), + [sym_backslash_escape] = ACTIONS(1), + [anon_sym_PERCENT] = ACTIONS(1), + [sym__ignored] = ACTIONS(1), + [sym__block_close] = ACTIONS(1), + [sym__eof_or_newline] = ACTIONS(1), + [sym__newline] = ACTIONS(1), + [sym__newline_inline] = ACTIONS(1), + [sym_frontmatter_marker] = ACTIONS(1), + [sym__heading_begin] = ACTIONS(1), + [sym__heading_continuation] = ACTIONS(1), + [sym__div_begin] = ACTIONS(1), + [sym__div_end] = ACTIONS(1), + [sym__code_block_begin] = ACTIONS(1), + [sym__code_block_end] = ACTIONS(1), + [sym_list_marker_dash] = ACTIONS(1), + [sym_list_marker_star] = ACTIONS(1), + [sym_list_marker_plus] = ACTIONS(1), + [sym__list_marker_task_begin] = ACTIONS(1), + [sym_list_marker_definition] = ACTIONS(1), + [sym_list_marker_decimal_period] = ACTIONS(1), + [sym_list_marker_lower_alpha_period] = ACTIONS(1), + [sym_list_marker_upper_alpha_period] = ACTIONS(1), + [sym_list_marker_lower_roman_period] = ACTIONS(1), + [sym_list_marker_upper_roman_period] = ACTIONS(1), + [sym_list_marker_decimal_paren] = ACTIONS(1), + [sym_list_marker_lower_alpha_paren] = ACTIONS(1), + [sym_list_marker_upper_alpha_paren] = ACTIONS(1), + [sym_list_marker_lower_roman_paren] = ACTIONS(1), + [sym_list_marker_upper_roman_paren] = ACTIONS(1), + [sym_list_marker_decimal_parens] = ACTIONS(1), + [sym_list_marker_lower_alpha_parens] = ACTIONS(1), + [sym_list_marker_upper_alpha_parens] = ACTIONS(1), + [sym_list_marker_lower_roman_parens] = ACTIONS(1), + [sym_list_marker_upper_roman_parens] = ACTIONS(1), + [sym__list_item_continuation] = ACTIONS(1), + [sym__list_item_end] = ACTIONS(1), + [sym__close_paragraph] = ACTIONS(1), + [sym__block_quote_begin] = ACTIONS(1), + [sym__block_quote_continuation] = ACTIONS(1), + [sym__thematic_break_dash] = ACTIONS(1), + [sym__thematic_break_star] = ACTIONS(1), + [sym__footnote_begin] = ACTIONS(1), + [sym__footnote_end] = ACTIONS(1), + [sym__table_caption_begin] = ACTIONS(1), + [sym__table_caption_end] = ACTIONS(1), + [sym__verbatim_begin] = ACTIONS(1), + [sym__verbatim_end] = ACTIONS(1), + [sym__verbatim_content] = ACTIONS(1), + [sym__error] = ACTIONS(1), + }, + [1] = { + [sym_document] = STATE(927), + [sym_frontmatter] = STATE(3), + [sym__block_with_section] = STATE(235), + [sym__block_element] = STATE(235), + [sym_section] = STATE(235), + [sym_heading] = STATE(4), + [sym_list] = STATE(235), + [sym__list_dash] = STATE(212), + [sym__list_item_dash] = STATE(366), + [sym__list_plus] = STATE(212), + [sym__list_item_plus] = STATE(374), + [sym__list_star] = STATE(212), + [sym__list_item_star] = STATE(375), + [sym__list_task] = STATE(212), + [sym__list_item_task] = STATE(360), + [sym_list_marker_task] = STATE(37), + [sym__list_definition] = STATE(212), + [sym__list_item_definition] = STATE(553), + [sym__list_decimal_period] = STATE(212), + [sym__list_item_decimal_period] = STATE(554), + [sym__list_decimal_paren] = STATE(212), + [sym__list_item_decimal_paren] = STATE(556), + [sym__list_decimal_parens] = STATE(212), + [sym__list_item_decimal_parens] = STATE(561), + [sym__list_lower_alpha_period] = STATE(212), + [sym__list_item_lower_alpha_period] = STATE(489), + [sym__list_lower_alpha_paren] = STATE(212), + [sym__list_item_lower_alpha_paren] = STATE(564), + [sym__list_lower_alpha_parens] = STATE(212), + [sym__list_item_lower_alpha_parens] = STATE(566), + [sym__list_upper_alpha_period] = STATE(212), + [sym__list_item_upper_alpha_period] = STATE(569), + [sym__list_upper_alpha_paren] = STATE(212), + [sym__list_item_upper_alpha_paren] = STATE(572), + [sym__list_upper_alpha_parens] = STATE(212), + [sym__list_item_upper_alpha_parens] = STATE(574), + [sym__list_lower_roman_period] = STATE(212), + [sym__list_item_lower_roman_period] = STATE(576), + [sym__list_lower_roman_paren] = STATE(212), + [sym__list_item_lower_roman_paren] = STATE(580), + [sym__list_lower_roman_parens] = STATE(212), + [sym__list_item_lower_roman_parens] = STATE(582), + [sym__list_upper_roman_period] = STATE(212), + [sym__list_item_upper_roman_period] = STATE(586), + [sym__list_upper_roman_paren] = STATE(212), + [sym__list_item_upper_roman_paren] = STATE(584), + [sym__list_upper_roman_parens] = STATE(212), + [sym__list_item_upper_roman_parens] = STATE(562), + [sym_table] = STATE(235), + [sym__table_content] = STATE(61), + [sym_table_separator] = STATE(61), + [sym_table_row] = STATE(66), + [sym_footnote] = STATE(235), + [sym_div] = STATE(235), + [sym_div_marker_begin] = STATE(968), + [sym_code_block] = STATE(235), + [sym_raw_block] = STATE(235), + [sym_thematic_break] = STATE(235), + [sym_block_quote] = STATE(235), + [sym__block_quote_prefix] = STATE(424), + [sym_link_reference_definition] = STATE(235), + [sym_block_attribute] = STATE(235), + [sym__paragraph] = STATE(235), + [sym__paragraph_content] = STATE(756), + [sym__inline] = STATE(683), + [sym__symbol_fallback] = STATE(329), + [aux_sym_document_repeat1] = STATE(9), + [aux_sym__list_dash_repeat1] = STATE(366), + [aux_sym__list_plus_repeat1] = STATE(374), + [aux_sym__list_star_repeat1] = STATE(375), + [aux_sym__list_task_repeat1] = STATE(360), + [aux_sym__list_definition_repeat1] = STATE(553), + [aux_sym__list_decimal_period_repeat1] = STATE(554), + [aux_sym__list_decimal_paren_repeat1] = STATE(556), + [aux_sym__list_decimal_parens_repeat1] = STATE(561), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(489), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(564), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(566), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(569), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(572), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(574), + [aux_sym__list_lower_roman_period_repeat1] = STATE(576), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(580), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(582), + [aux_sym__list_upper_roman_period_repeat1] = STATE(586), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(584), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(562), + [aux_sym_table_repeat1] = STATE(61), + [aux_sym__block_quote_prefix_repeat1] = STATE(397), + [aux_sym__inline_repeat1] = STATE(329), + [ts_builtin_sym_end] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(9), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [sym__newline] = ACTIONS(13), + [sym_frontmatter_marker] = ACTIONS(15), + [sym__heading_begin] = ACTIONS(17), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(21), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(63), + [sym__block_quote_continuation] = ACTIONS(65), + [sym__thematic_break_dash] = ACTIONS(67), + [sym__thematic_break_star] = ACTIONS(67), + [sym__footnote_begin] = ACTIONS(69), + }, + [2] = { + [sym__block_with_section] = STATE(235), + [sym__block_element] = STATE(235), + [sym_section] = STATE(235), + [sym_heading] = STATE(4), + [sym_list] = STATE(235), + [sym__list_dash] = STATE(212), + [sym__list_item_dash] = STATE(366), + [sym__list_plus] = STATE(212), + [sym__list_item_plus] = STATE(374), + [sym__list_star] = STATE(212), + [sym__list_item_star] = STATE(375), + [sym__list_task] = STATE(212), + [sym__list_item_task] = STATE(360), + [sym_list_marker_task] = STATE(37), + [sym__list_definition] = STATE(212), + [sym__list_item_definition] = STATE(553), + [sym__list_decimal_period] = STATE(212), + [sym__list_item_decimal_period] = STATE(554), + [sym__list_decimal_paren] = STATE(212), + [sym__list_item_decimal_paren] = STATE(556), + [sym__list_decimal_parens] = STATE(212), + [sym__list_item_decimal_parens] = STATE(561), + [sym__list_lower_alpha_period] = STATE(212), + [sym__list_item_lower_alpha_period] = STATE(489), + [sym__list_lower_alpha_paren] = STATE(212), + [sym__list_item_lower_alpha_paren] = STATE(564), + [sym__list_lower_alpha_parens] = STATE(212), + [sym__list_item_lower_alpha_parens] = STATE(566), + [sym__list_upper_alpha_period] = STATE(212), + [sym__list_item_upper_alpha_period] = STATE(569), + [sym__list_upper_alpha_paren] = STATE(212), + [sym__list_item_upper_alpha_paren] = STATE(572), + [sym__list_upper_alpha_parens] = STATE(212), + [sym__list_item_upper_alpha_parens] = STATE(574), + [sym__list_lower_roman_period] = STATE(212), + [sym__list_item_lower_roman_period] = STATE(576), + [sym__list_lower_roman_paren] = STATE(212), + [sym__list_item_lower_roman_paren] = STATE(580), + [sym__list_lower_roman_parens] = STATE(212), + [sym__list_item_lower_roman_parens] = STATE(582), + [sym__list_upper_roman_period] = STATE(212), + [sym__list_item_upper_roman_period] = STATE(586), + [sym__list_upper_roman_paren] = STATE(212), + [sym__list_item_upper_roman_paren] = STATE(584), + [sym__list_upper_roman_parens] = STATE(212), + [sym__list_item_upper_roman_parens] = STATE(562), + [sym_table] = STATE(235), + [sym__table_content] = STATE(61), + [sym_table_separator] = STATE(61), + [sym_table_row] = STATE(66), + [sym_footnote] = STATE(235), + [sym_div] = STATE(235), + [sym_div_marker_begin] = STATE(968), + [sym_code_block] = STATE(235), + [sym_raw_block] = STATE(235), + [sym_thematic_break] = STATE(235), + [sym_block_quote] = STATE(235), + [sym__block_quote_prefix] = STATE(424), + [sym_link_reference_definition] = STATE(235), + [sym_block_attribute] = STATE(235), + [sym__paragraph] = STATE(235), + [sym__paragraph_content] = STATE(756), + [sym__inline] = STATE(683), + [sym__symbol_fallback] = STATE(329), + [aux_sym_document_repeat1] = STATE(6), + [aux_sym__list_dash_repeat1] = STATE(366), + [aux_sym__list_plus_repeat1] = STATE(374), + [aux_sym__list_star_repeat1] = STATE(375), + [aux_sym__list_task_repeat1] = STATE(360), + [aux_sym__list_definition_repeat1] = STATE(553), + [aux_sym__list_decimal_period_repeat1] = STATE(554), + [aux_sym__list_decimal_paren_repeat1] = STATE(556), + [aux_sym__list_decimal_parens_repeat1] = STATE(561), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(489), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(564), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(566), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(569), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(572), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(574), + [aux_sym__list_lower_roman_period_repeat1] = STATE(576), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(580), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(582), + [aux_sym__list_upper_roman_period_repeat1] = STATE(586), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(584), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(562), + [aux_sym_table_repeat1] = STATE(61), + [aux_sym__block_quote_prefix_repeat1] = STATE(397), + [aux_sym__inline_repeat1] = STATE(329), + [ts_builtin_sym_end] = ACTIONS(71), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(9), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [sym__newline] = ACTIONS(13), + [sym__heading_begin] = ACTIONS(17), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(21), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(63), + [sym__block_quote_continuation] = ACTIONS(65), + [sym__thematic_break_dash] = ACTIONS(67), + [sym__thematic_break_star] = ACTIONS(67), + [sym__footnote_begin] = ACTIONS(69), + }, + [3] = { + [sym__block_with_section] = STATE(235), + [sym__block_element] = STATE(235), + [sym_section] = STATE(235), + [sym_heading] = STATE(4), + [sym_list] = STATE(235), + [sym__list_dash] = STATE(212), + [sym__list_item_dash] = STATE(366), + [sym__list_plus] = STATE(212), + [sym__list_item_plus] = STATE(374), + [sym__list_star] = STATE(212), + [sym__list_item_star] = STATE(375), + [sym__list_task] = STATE(212), + [sym__list_item_task] = STATE(360), + [sym_list_marker_task] = STATE(37), + [sym__list_definition] = STATE(212), + [sym__list_item_definition] = STATE(553), + [sym__list_decimal_period] = STATE(212), + [sym__list_item_decimal_period] = STATE(554), + [sym__list_decimal_paren] = STATE(212), + [sym__list_item_decimal_paren] = STATE(556), + [sym__list_decimal_parens] = STATE(212), + [sym__list_item_decimal_parens] = STATE(561), + [sym__list_lower_alpha_period] = STATE(212), + [sym__list_item_lower_alpha_period] = STATE(489), + [sym__list_lower_alpha_paren] = STATE(212), + [sym__list_item_lower_alpha_paren] = STATE(564), + [sym__list_lower_alpha_parens] = STATE(212), + [sym__list_item_lower_alpha_parens] = STATE(566), + [sym__list_upper_alpha_period] = STATE(212), + [sym__list_item_upper_alpha_period] = STATE(569), + [sym__list_upper_alpha_paren] = STATE(212), + [sym__list_item_upper_alpha_paren] = STATE(572), + [sym__list_upper_alpha_parens] = STATE(212), + [sym__list_item_upper_alpha_parens] = STATE(574), + [sym__list_lower_roman_period] = STATE(212), + [sym__list_item_lower_roman_period] = STATE(576), + [sym__list_lower_roman_paren] = STATE(212), + [sym__list_item_lower_roman_paren] = STATE(580), + [sym__list_lower_roman_parens] = STATE(212), + [sym__list_item_lower_roman_parens] = STATE(582), + [sym__list_upper_roman_period] = STATE(212), + [sym__list_item_upper_roman_period] = STATE(586), + [sym__list_upper_roman_paren] = STATE(212), + [sym__list_item_upper_roman_paren] = STATE(584), + [sym__list_upper_roman_parens] = STATE(212), + [sym__list_item_upper_roman_parens] = STATE(562), + [sym_table] = STATE(235), + [sym__table_content] = STATE(61), + [sym_table_separator] = STATE(61), + [sym_table_row] = STATE(66), + [sym_footnote] = STATE(235), + [sym_div] = STATE(235), + [sym_div_marker_begin] = STATE(968), + [sym_code_block] = STATE(235), + [sym_raw_block] = STATE(235), + [sym_thematic_break] = STATE(235), + [sym_block_quote] = STATE(235), + [sym__block_quote_prefix] = STATE(424), + [sym_link_reference_definition] = STATE(235), + [sym_block_attribute] = STATE(235), + [sym__paragraph] = STATE(235), + [sym__paragraph_content] = STATE(756), + [sym__inline] = STATE(683), + [sym__symbol_fallback] = STATE(329), + [aux_sym_document_repeat1] = STATE(2), + [aux_sym__list_dash_repeat1] = STATE(366), + [aux_sym__list_plus_repeat1] = STATE(374), + [aux_sym__list_star_repeat1] = STATE(375), + [aux_sym__list_task_repeat1] = STATE(360), + [aux_sym__list_definition_repeat1] = STATE(553), + [aux_sym__list_decimal_period_repeat1] = STATE(554), + [aux_sym__list_decimal_paren_repeat1] = STATE(556), + [aux_sym__list_decimal_parens_repeat1] = STATE(561), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(489), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(564), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(566), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(569), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(572), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(574), + [aux_sym__list_lower_roman_period_repeat1] = STATE(576), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(580), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(582), + [aux_sym__list_upper_roman_period_repeat1] = STATE(586), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(584), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(562), + [aux_sym_table_repeat1] = STATE(61), + [aux_sym__block_quote_prefix_repeat1] = STATE(397), + [aux_sym__inline_repeat1] = STATE(329), + [ts_builtin_sym_end] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(9), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [sym__newline] = ACTIONS(13), + [sym__heading_begin] = ACTIONS(17), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(21), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(63), + [sym__block_quote_continuation] = ACTIONS(65), + [sym__thematic_break_dash] = ACTIONS(67), + [sym__thematic_break_star] = ACTIONS(67), + [sym__footnote_begin] = ACTIONS(69), + }, + [4] = { + [sym__block_with_section] = STATE(198), + [sym__block_element] = STATE(198), + [sym_section] = STATE(198), + [sym_heading] = STATE(8), + [sym_list] = STATE(198), + [sym__list_dash] = STATE(254), + [sym__list_item_dash] = STATE(391), + [sym__list_plus] = STATE(254), + [sym__list_item_plus] = STATE(390), + [sym__list_star] = STATE(254), + [sym__list_item_star] = STATE(389), + [sym__list_task] = STATE(254), + [sym__list_item_task] = STATE(340), + [sym_list_marker_task] = STATE(37), + [sym__list_definition] = STATE(254), + [sym__list_item_definition] = STATE(517), + [sym__list_decimal_period] = STATE(254), + [sym__list_item_decimal_period] = STATE(515), + [sym__list_decimal_paren] = STATE(254), + [sym__list_item_decimal_paren] = STATE(493), + [sym__list_decimal_parens] = STATE(254), + [sym__list_item_decimal_parens] = STATE(490), + [sym__list_lower_alpha_period] = STATE(254), + [sym__list_item_lower_alpha_period] = STATE(486), + [sym__list_lower_alpha_paren] = STATE(254), + [sym__list_item_lower_alpha_paren] = STATE(485), + [sym__list_lower_alpha_parens] = STATE(254), + [sym__list_item_lower_alpha_parens] = STATE(483), + [sym__list_upper_alpha_period] = STATE(254), + [sym__list_item_upper_alpha_period] = STATE(482), + [sym__list_upper_alpha_paren] = STATE(254), + [sym__list_item_upper_alpha_paren] = STATE(481), + [sym__list_upper_alpha_parens] = STATE(254), + [sym__list_item_upper_alpha_parens] = STATE(480), + [sym__list_lower_roman_period] = STATE(254), + [sym__list_item_lower_roman_period] = STATE(479), + [sym__list_lower_roman_paren] = STATE(254), + [sym__list_item_lower_roman_paren] = STATE(476), + [sym__list_lower_roman_parens] = STATE(254), + [sym__list_item_lower_roman_parens] = STATE(475), + [sym__list_upper_roman_period] = STATE(254), + [sym__list_item_upper_roman_period] = STATE(472), + [sym__list_upper_roman_paren] = STATE(254), + [sym__list_item_upper_roman_paren] = STATE(513), + [sym__list_upper_roman_parens] = STATE(254), + [sym__list_item_upper_roman_parens] = STATE(507), + [sym_table] = STATE(198), + [sym__table_content] = STATE(62), + [sym_table_separator] = STATE(62), + [sym_table_row] = STATE(68), + [sym_footnote] = STATE(198), + [sym_div] = STATE(198), + [sym_div_marker_begin] = STATE(956), + [sym_code_block] = STATE(198), + [sym_raw_block] = STATE(198), + [sym_thematic_break] = STATE(198), + [sym_block_quote] = STATE(198), + [sym__block_quote_prefix] = STATE(436), + [sym_link_reference_definition] = STATE(198), + [sym_block_attribute] = STATE(198), + [sym__paragraph] = STATE(198), + [sym__paragraph_content] = STATE(774), + [sym__inline] = STATE(683), + [sym__symbol_fallback] = STATE(329), + [aux_sym_document_repeat1] = STATE(10), + [aux_sym__list_dash_repeat1] = STATE(391), + [aux_sym__list_plus_repeat1] = STATE(390), + [aux_sym__list_star_repeat1] = STATE(389), + [aux_sym__list_task_repeat1] = STATE(340), + [aux_sym__list_definition_repeat1] = STATE(517), + [aux_sym__list_decimal_period_repeat1] = STATE(515), + [aux_sym__list_decimal_paren_repeat1] = STATE(493), + [aux_sym__list_decimal_parens_repeat1] = STATE(490), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(486), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(485), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(483), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(482), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(481), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(480), + [aux_sym__list_lower_roman_period_repeat1] = STATE(479), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(476), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(475), + [aux_sym__list_upper_roman_period_repeat1] = STATE(472), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(513), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(507), + [aux_sym_table_repeat1] = STATE(62), + [aux_sym__block_quote_prefix_repeat1] = STATE(397), + [aux_sym__inline_repeat1] = STATE(329), + [anon_sym_LBRACK] = ACTIONS(75), + [anon_sym_PIPE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [sym__block_close] = ACTIONS(81), + [sym__newline] = ACTIONS(83), + [sym__heading_begin] = ACTIONS(17), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(85), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(87), + [sym__block_quote_continuation] = ACTIONS(65), + [sym__thematic_break_dash] = ACTIONS(89), + [sym__thematic_break_star] = ACTIONS(89), + [sym__footnote_begin] = ACTIONS(91), + }, + [5] = { + [sym__block_with_section] = STATE(198), + [sym__block_element] = STATE(198), + [sym_section] = STATE(198), + [sym_heading] = STATE(8), + [sym_list] = STATE(198), + [sym__list_dash] = STATE(254), + [sym__list_item_dash] = STATE(391), + [sym__list_plus] = STATE(254), + [sym__list_item_plus] = STATE(390), + [sym__list_star] = STATE(254), + [sym__list_item_star] = STATE(389), + [sym__list_task] = STATE(254), + [sym__list_item_task] = STATE(340), + [sym_list_marker_task] = STATE(37), + [sym__list_definition] = STATE(254), + [sym__list_item_definition] = STATE(517), + [sym__list_decimal_period] = STATE(254), + [sym__list_item_decimal_period] = STATE(515), + [sym__list_decimal_paren] = STATE(254), + [sym__list_item_decimal_paren] = STATE(493), + [sym__list_decimal_parens] = STATE(254), + [sym__list_item_decimal_parens] = STATE(490), + [sym__list_lower_alpha_period] = STATE(254), + [sym__list_item_lower_alpha_period] = STATE(486), + [sym__list_lower_alpha_paren] = STATE(254), + [sym__list_item_lower_alpha_paren] = STATE(485), + [sym__list_lower_alpha_parens] = STATE(254), + [sym__list_item_lower_alpha_parens] = STATE(483), + [sym__list_upper_alpha_period] = STATE(254), + [sym__list_item_upper_alpha_period] = STATE(482), + [sym__list_upper_alpha_paren] = STATE(254), + [sym__list_item_upper_alpha_paren] = STATE(481), + [sym__list_upper_alpha_parens] = STATE(254), + [sym__list_item_upper_alpha_parens] = STATE(480), + [sym__list_lower_roman_period] = STATE(254), + [sym__list_item_lower_roman_period] = STATE(479), + [sym__list_lower_roman_paren] = STATE(254), + [sym__list_item_lower_roman_paren] = STATE(476), + [sym__list_lower_roman_parens] = STATE(254), + [sym__list_item_lower_roman_parens] = STATE(475), + [sym__list_upper_roman_period] = STATE(254), + [sym__list_item_upper_roman_period] = STATE(472), + [sym__list_upper_roman_paren] = STATE(254), + [sym__list_item_upper_roman_paren] = STATE(513), + [sym__list_upper_roman_parens] = STATE(254), + [sym__list_item_upper_roman_parens] = STATE(507), + [sym_table] = STATE(198), + [sym__table_content] = STATE(62), + [sym_table_separator] = STATE(62), + [sym_table_row] = STATE(68), + [sym_footnote] = STATE(198), + [sym_div] = STATE(198), + [sym_div_marker_begin] = STATE(956), + [sym_code_block] = STATE(198), + [sym_raw_block] = STATE(198), + [sym_thematic_break] = STATE(198), + [sym_block_quote] = STATE(198), + [sym__block_quote_prefix] = STATE(436), + [sym_link_reference_definition] = STATE(198), + [sym_block_attribute] = STATE(198), + [sym__paragraph] = STATE(198), + [sym__paragraph_content] = STATE(774), + [sym__inline] = STATE(683), + [sym__symbol_fallback] = STATE(329), + [aux_sym_document_repeat1] = STATE(7), + [aux_sym__list_dash_repeat1] = STATE(391), + [aux_sym__list_plus_repeat1] = STATE(390), + [aux_sym__list_star_repeat1] = STATE(389), + [aux_sym__list_task_repeat1] = STATE(340), + [aux_sym__list_definition_repeat1] = STATE(517), + [aux_sym__list_decimal_period_repeat1] = STATE(515), + [aux_sym__list_decimal_paren_repeat1] = STATE(493), + [aux_sym__list_decimal_parens_repeat1] = STATE(490), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(486), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(485), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(483), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(482), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(481), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(480), + [aux_sym__list_lower_roman_period_repeat1] = STATE(479), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(476), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(475), + [aux_sym__list_upper_roman_period_repeat1] = STATE(472), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(513), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(507), + [aux_sym_table_repeat1] = STATE(62), + [aux_sym__block_quote_prefix_repeat1] = STATE(397), + [aux_sym__inline_repeat1] = STATE(329), + [anon_sym_LBRACK] = ACTIONS(75), + [anon_sym_PIPE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [sym__block_close] = ACTIONS(93), + [sym__newline] = ACTIONS(83), + [sym__heading_begin] = ACTIONS(17), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(85), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(87), + [sym__block_quote_continuation] = ACTIONS(65), + [sym__thematic_break_dash] = ACTIONS(89), + [sym__thematic_break_star] = ACTIONS(89), + [sym__footnote_begin] = ACTIONS(91), + }, + [6] = { + [sym__block_with_section] = STATE(235), + [sym__block_element] = STATE(235), + [sym_section] = STATE(235), + [sym_heading] = STATE(4), + [sym_list] = STATE(235), + [sym__list_dash] = STATE(212), + [sym__list_item_dash] = STATE(366), + [sym__list_plus] = STATE(212), + [sym__list_item_plus] = STATE(374), + [sym__list_star] = STATE(212), + [sym__list_item_star] = STATE(375), + [sym__list_task] = STATE(212), + [sym__list_item_task] = STATE(360), + [sym_list_marker_task] = STATE(37), + [sym__list_definition] = STATE(212), + [sym__list_item_definition] = STATE(553), + [sym__list_decimal_period] = STATE(212), + [sym__list_item_decimal_period] = STATE(554), + [sym__list_decimal_paren] = STATE(212), + [sym__list_item_decimal_paren] = STATE(556), + [sym__list_decimal_parens] = STATE(212), + [sym__list_item_decimal_parens] = STATE(561), + [sym__list_lower_alpha_period] = STATE(212), + [sym__list_item_lower_alpha_period] = STATE(489), + [sym__list_lower_alpha_paren] = STATE(212), + [sym__list_item_lower_alpha_paren] = STATE(564), + [sym__list_lower_alpha_parens] = STATE(212), + [sym__list_item_lower_alpha_parens] = STATE(566), + [sym__list_upper_alpha_period] = STATE(212), + [sym__list_item_upper_alpha_period] = STATE(569), + [sym__list_upper_alpha_paren] = STATE(212), + [sym__list_item_upper_alpha_paren] = STATE(572), + [sym__list_upper_alpha_parens] = STATE(212), + [sym__list_item_upper_alpha_parens] = STATE(574), + [sym__list_lower_roman_period] = STATE(212), + [sym__list_item_lower_roman_period] = STATE(576), + [sym__list_lower_roman_paren] = STATE(212), + [sym__list_item_lower_roman_paren] = STATE(580), + [sym__list_lower_roman_parens] = STATE(212), + [sym__list_item_lower_roman_parens] = STATE(582), + [sym__list_upper_roman_period] = STATE(212), + [sym__list_item_upper_roman_period] = STATE(586), + [sym__list_upper_roman_paren] = STATE(212), + [sym__list_item_upper_roman_paren] = STATE(584), + [sym__list_upper_roman_parens] = STATE(212), + [sym__list_item_upper_roman_parens] = STATE(562), + [sym_table] = STATE(235), + [sym__table_content] = STATE(61), + [sym_table_separator] = STATE(61), + [sym_table_row] = STATE(66), + [sym_footnote] = STATE(235), + [sym_div] = STATE(235), + [sym_div_marker_begin] = STATE(968), + [sym_code_block] = STATE(235), + [sym_raw_block] = STATE(235), + [sym_thematic_break] = STATE(235), + [sym_block_quote] = STATE(235), + [sym__block_quote_prefix] = STATE(424), + [sym_link_reference_definition] = STATE(235), + [sym_block_attribute] = STATE(235), + [sym__paragraph] = STATE(235), + [sym__paragraph_content] = STATE(756), + [sym__inline] = STATE(683), + [sym__symbol_fallback] = STATE(329), + [aux_sym_document_repeat1] = STATE(6), + [aux_sym__list_dash_repeat1] = STATE(366), + [aux_sym__list_plus_repeat1] = STATE(374), + [aux_sym__list_star_repeat1] = STATE(375), + [aux_sym__list_task_repeat1] = STATE(360), + [aux_sym__list_definition_repeat1] = STATE(553), + [aux_sym__list_decimal_period_repeat1] = STATE(554), + [aux_sym__list_decimal_paren_repeat1] = STATE(556), + [aux_sym__list_decimal_parens_repeat1] = STATE(561), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(489), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(564), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(566), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(569), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(572), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(574), + [aux_sym__list_lower_roman_period_repeat1] = STATE(576), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(580), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(582), + [aux_sym__list_upper_roman_period_repeat1] = STATE(586), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(584), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(562), + [aux_sym_table_repeat1] = STATE(61), + [aux_sym__block_quote_prefix_repeat1] = STATE(397), + [aux_sym__inline_repeat1] = STATE(329), + [ts_builtin_sym_end] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(97), + [anon_sym_PIPE] = ACTIONS(100), + [anon_sym_LBRACE] = ACTIONS(103), + [aux_sym__inline_token1] = ACTIONS(106), + [anon_sym_LBRACE_DASH] = ACTIONS(106), + [sym__newline] = ACTIONS(109), + [sym__heading_begin] = ACTIONS(112), + [sym__div_begin] = ACTIONS(115), + [sym__code_block_begin] = ACTIONS(118), + [sym_list_marker_dash] = ACTIONS(121), + [sym_list_marker_star] = ACTIONS(124), + [sym_list_marker_plus] = ACTIONS(127), + [sym__list_marker_task_begin] = ACTIONS(130), + [sym_list_marker_definition] = ACTIONS(133), + [sym_list_marker_decimal_period] = ACTIONS(136), + [sym_list_marker_lower_alpha_period] = ACTIONS(139), + [sym_list_marker_upper_alpha_period] = ACTIONS(142), + [sym_list_marker_lower_roman_period] = ACTIONS(145), + [sym_list_marker_upper_roman_period] = ACTIONS(148), + [sym_list_marker_decimal_paren] = ACTIONS(151), + [sym_list_marker_lower_alpha_paren] = ACTIONS(154), + [sym_list_marker_upper_alpha_paren] = ACTIONS(157), + [sym_list_marker_lower_roman_paren] = ACTIONS(160), + [sym_list_marker_upper_roman_paren] = ACTIONS(163), + [sym_list_marker_decimal_parens] = ACTIONS(166), + [sym_list_marker_lower_alpha_parens] = ACTIONS(169), + [sym_list_marker_upper_alpha_parens] = ACTIONS(172), + [sym_list_marker_lower_roman_parens] = ACTIONS(175), + [sym_list_marker_upper_roman_parens] = ACTIONS(178), + [sym__block_quote_begin] = ACTIONS(181), + [sym__block_quote_continuation] = ACTIONS(184), + [sym__thematic_break_dash] = ACTIONS(187), + [sym__thematic_break_star] = ACTIONS(187), + [sym__footnote_begin] = ACTIONS(190), + }, + [7] = { + [sym__block_with_section] = STATE(198), + [sym__block_element] = STATE(198), + [sym_section] = STATE(198), + [sym_heading] = STATE(8), + [sym_list] = STATE(198), + [sym__list_dash] = STATE(254), + [sym__list_item_dash] = STATE(391), + [sym__list_plus] = STATE(254), + [sym__list_item_plus] = STATE(390), + [sym__list_star] = STATE(254), + [sym__list_item_star] = STATE(389), + [sym__list_task] = STATE(254), + [sym__list_item_task] = STATE(340), + [sym_list_marker_task] = STATE(37), + [sym__list_definition] = STATE(254), + [sym__list_item_definition] = STATE(517), + [sym__list_decimal_period] = STATE(254), + [sym__list_item_decimal_period] = STATE(515), + [sym__list_decimal_paren] = STATE(254), + [sym__list_item_decimal_paren] = STATE(493), + [sym__list_decimal_parens] = STATE(254), + [sym__list_item_decimal_parens] = STATE(490), + [sym__list_lower_alpha_period] = STATE(254), + [sym__list_item_lower_alpha_period] = STATE(486), + [sym__list_lower_alpha_paren] = STATE(254), + [sym__list_item_lower_alpha_paren] = STATE(485), + [sym__list_lower_alpha_parens] = STATE(254), + [sym__list_item_lower_alpha_parens] = STATE(483), + [sym__list_upper_alpha_period] = STATE(254), + [sym__list_item_upper_alpha_period] = STATE(482), + [sym__list_upper_alpha_paren] = STATE(254), + [sym__list_item_upper_alpha_paren] = STATE(481), + [sym__list_upper_alpha_parens] = STATE(254), + [sym__list_item_upper_alpha_parens] = STATE(480), + [sym__list_lower_roman_period] = STATE(254), + [sym__list_item_lower_roman_period] = STATE(479), + [sym__list_lower_roman_paren] = STATE(254), + [sym__list_item_lower_roman_paren] = STATE(476), + [sym__list_lower_roman_parens] = STATE(254), + [sym__list_item_lower_roman_parens] = STATE(475), + [sym__list_upper_roman_period] = STATE(254), + [sym__list_item_upper_roman_period] = STATE(472), + [sym__list_upper_roman_paren] = STATE(254), + [sym__list_item_upper_roman_paren] = STATE(513), + [sym__list_upper_roman_parens] = STATE(254), + [sym__list_item_upper_roman_parens] = STATE(507), + [sym_table] = STATE(198), + [sym__table_content] = STATE(62), + [sym_table_separator] = STATE(62), + [sym_table_row] = STATE(68), + [sym_footnote] = STATE(198), + [sym_div] = STATE(198), + [sym_div_marker_begin] = STATE(956), + [sym_code_block] = STATE(198), + [sym_raw_block] = STATE(198), + [sym_thematic_break] = STATE(198), + [sym_block_quote] = STATE(198), + [sym__block_quote_prefix] = STATE(436), + [sym_link_reference_definition] = STATE(198), + [sym_block_attribute] = STATE(198), + [sym__paragraph] = STATE(198), + [sym__paragraph_content] = STATE(774), + [sym__inline] = STATE(683), + [sym__symbol_fallback] = STATE(329), + [aux_sym_document_repeat1] = STATE(7), + [aux_sym__list_dash_repeat1] = STATE(391), + [aux_sym__list_plus_repeat1] = STATE(390), + [aux_sym__list_star_repeat1] = STATE(389), + [aux_sym__list_task_repeat1] = STATE(340), + [aux_sym__list_definition_repeat1] = STATE(517), + [aux_sym__list_decimal_period_repeat1] = STATE(515), + [aux_sym__list_decimal_paren_repeat1] = STATE(493), + [aux_sym__list_decimal_parens_repeat1] = STATE(490), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(486), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(485), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(483), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(482), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(481), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(480), + [aux_sym__list_lower_roman_period_repeat1] = STATE(479), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(476), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(475), + [aux_sym__list_upper_roman_period_repeat1] = STATE(472), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(513), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(507), + [aux_sym_table_repeat1] = STATE(62), + [aux_sym__block_quote_prefix_repeat1] = STATE(397), + [aux_sym__inline_repeat1] = STATE(329), + [anon_sym_LBRACK] = ACTIONS(193), + [anon_sym_PIPE] = ACTIONS(196), + [anon_sym_LBRACE] = ACTIONS(199), + [aux_sym__inline_token1] = ACTIONS(106), + [anon_sym_LBRACE_DASH] = ACTIONS(106), + [sym__block_close] = ACTIONS(95), + [sym__newline] = ACTIONS(202), + [sym__heading_begin] = ACTIONS(112), + [sym__div_begin] = ACTIONS(115), + [sym__code_block_begin] = ACTIONS(205), + [sym_list_marker_dash] = ACTIONS(121), + [sym_list_marker_star] = ACTIONS(124), + [sym_list_marker_plus] = ACTIONS(127), + [sym__list_marker_task_begin] = ACTIONS(130), + [sym_list_marker_definition] = ACTIONS(133), + [sym_list_marker_decimal_period] = ACTIONS(136), + [sym_list_marker_lower_alpha_period] = ACTIONS(139), + [sym_list_marker_upper_alpha_period] = ACTIONS(142), + [sym_list_marker_lower_roman_period] = ACTIONS(145), + [sym_list_marker_upper_roman_period] = ACTIONS(148), + [sym_list_marker_decimal_paren] = ACTIONS(151), + [sym_list_marker_lower_alpha_paren] = ACTIONS(154), + [sym_list_marker_upper_alpha_paren] = ACTIONS(157), + [sym_list_marker_lower_roman_paren] = ACTIONS(160), + [sym_list_marker_upper_roman_paren] = ACTIONS(163), + [sym_list_marker_decimal_parens] = ACTIONS(166), + [sym_list_marker_lower_alpha_parens] = ACTIONS(169), + [sym_list_marker_upper_alpha_parens] = ACTIONS(172), + [sym_list_marker_lower_roman_parens] = ACTIONS(175), + [sym_list_marker_upper_roman_parens] = ACTIONS(178), + [sym__block_quote_begin] = ACTIONS(208), + [sym__block_quote_continuation] = ACTIONS(184), + [sym__thematic_break_dash] = ACTIONS(211), + [sym__thematic_break_star] = ACTIONS(211), + [sym__footnote_begin] = ACTIONS(214), + }, + [8] = { + [sym__block_with_section] = STATE(198), + [sym__block_element] = STATE(198), + [sym_section] = STATE(198), + [sym_heading] = STATE(8), + [sym_list] = STATE(198), + [sym__list_dash] = STATE(254), + [sym__list_item_dash] = STATE(391), + [sym__list_plus] = STATE(254), + [sym__list_item_plus] = STATE(390), + [sym__list_star] = STATE(254), + [sym__list_item_star] = STATE(389), + [sym__list_task] = STATE(254), + [sym__list_item_task] = STATE(340), + [sym_list_marker_task] = STATE(37), + [sym__list_definition] = STATE(254), + [sym__list_item_definition] = STATE(517), + [sym__list_decimal_period] = STATE(254), + [sym__list_item_decimal_period] = STATE(515), + [sym__list_decimal_paren] = STATE(254), + [sym__list_item_decimal_paren] = STATE(493), + [sym__list_decimal_parens] = STATE(254), + [sym__list_item_decimal_parens] = STATE(490), + [sym__list_lower_alpha_period] = STATE(254), + [sym__list_item_lower_alpha_period] = STATE(486), + [sym__list_lower_alpha_paren] = STATE(254), + [sym__list_item_lower_alpha_paren] = STATE(485), + [sym__list_lower_alpha_parens] = STATE(254), + [sym__list_item_lower_alpha_parens] = STATE(483), + [sym__list_upper_alpha_period] = STATE(254), + [sym__list_item_upper_alpha_period] = STATE(482), + [sym__list_upper_alpha_paren] = STATE(254), + [sym__list_item_upper_alpha_paren] = STATE(481), + [sym__list_upper_alpha_parens] = STATE(254), + [sym__list_item_upper_alpha_parens] = STATE(480), + [sym__list_lower_roman_period] = STATE(254), + [sym__list_item_lower_roman_period] = STATE(479), + [sym__list_lower_roman_paren] = STATE(254), + [sym__list_item_lower_roman_paren] = STATE(476), + [sym__list_lower_roman_parens] = STATE(254), + [sym__list_item_lower_roman_parens] = STATE(475), + [sym__list_upper_roman_period] = STATE(254), + [sym__list_item_upper_roman_period] = STATE(472), + [sym__list_upper_roman_paren] = STATE(254), + [sym__list_item_upper_roman_paren] = STATE(513), + [sym__list_upper_roman_parens] = STATE(254), + [sym__list_item_upper_roman_parens] = STATE(507), + [sym_table] = STATE(198), + [sym__table_content] = STATE(62), + [sym_table_separator] = STATE(62), + [sym_table_row] = STATE(68), + [sym_footnote] = STATE(198), + [sym_div] = STATE(198), + [sym_div_marker_begin] = STATE(956), + [sym_code_block] = STATE(198), + [sym_raw_block] = STATE(198), + [sym_thematic_break] = STATE(198), + [sym_block_quote] = STATE(198), + [sym__block_quote_prefix] = STATE(436), + [sym_link_reference_definition] = STATE(198), + [sym_block_attribute] = STATE(198), + [sym__paragraph] = STATE(198), + [sym__paragraph_content] = STATE(774), + [sym__inline] = STATE(683), + [sym__symbol_fallback] = STATE(329), + [aux_sym_document_repeat1] = STATE(5), + [aux_sym__list_dash_repeat1] = STATE(391), + [aux_sym__list_plus_repeat1] = STATE(390), + [aux_sym__list_star_repeat1] = STATE(389), + [aux_sym__list_task_repeat1] = STATE(340), + [aux_sym__list_definition_repeat1] = STATE(517), + [aux_sym__list_decimal_period_repeat1] = STATE(515), + [aux_sym__list_decimal_paren_repeat1] = STATE(493), + [aux_sym__list_decimal_parens_repeat1] = STATE(490), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(486), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(485), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(483), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(482), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(481), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(480), + [aux_sym__list_lower_roman_period_repeat1] = STATE(479), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(476), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(475), + [aux_sym__list_upper_roman_period_repeat1] = STATE(472), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(513), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(507), + [aux_sym_table_repeat1] = STATE(62), + [aux_sym__block_quote_prefix_repeat1] = STATE(397), + [aux_sym__inline_repeat1] = STATE(329), + [anon_sym_LBRACK] = ACTIONS(75), + [anon_sym_PIPE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [sym__block_close] = ACTIONS(217), + [sym__newline] = ACTIONS(83), + [sym__heading_begin] = ACTIONS(17), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(85), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(87), + [sym__block_quote_continuation] = ACTIONS(65), + [sym__thematic_break_dash] = ACTIONS(89), + [sym__thematic_break_star] = ACTIONS(89), + [sym__footnote_begin] = ACTIONS(91), + }, + [9] = { + [sym__block_with_section] = STATE(235), + [sym__block_element] = STATE(235), + [sym_section] = STATE(235), + [sym_heading] = STATE(4), + [sym_list] = STATE(235), + [sym__list_dash] = STATE(212), + [sym__list_item_dash] = STATE(366), + [sym__list_plus] = STATE(212), + [sym__list_item_plus] = STATE(374), + [sym__list_star] = STATE(212), + [sym__list_item_star] = STATE(375), + [sym__list_task] = STATE(212), + [sym__list_item_task] = STATE(360), + [sym_list_marker_task] = STATE(37), + [sym__list_definition] = STATE(212), + [sym__list_item_definition] = STATE(553), + [sym__list_decimal_period] = STATE(212), + [sym__list_item_decimal_period] = STATE(554), + [sym__list_decimal_paren] = STATE(212), + [sym__list_item_decimal_paren] = STATE(556), + [sym__list_decimal_parens] = STATE(212), + [sym__list_item_decimal_parens] = STATE(561), + [sym__list_lower_alpha_period] = STATE(212), + [sym__list_item_lower_alpha_period] = STATE(489), + [sym__list_lower_alpha_paren] = STATE(212), + [sym__list_item_lower_alpha_paren] = STATE(564), + [sym__list_lower_alpha_parens] = STATE(212), + [sym__list_item_lower_alpha_parens] = STATE(566), + [sym__list_upper_alpha_period] = STATE(212), + [sym__list_item_upper_alpha_period] = STATE(569), + [sym__list_upper_alpha_paren] = STATE(212), + [sym__list_item_upper_alpha_paren] = STATE(572), + [sym__list_upper_alpha_parens] = STATE(212), + [sym__list_item_upper_alpha_parens] = STATE(574), + [sym__list_lower_roman_period] = STATE(212), + [sym__list_item_lower_roman_period] = STATE(576), + [sym__list_lower_roman_paren] = STATE(212), + [sym__list_item_lower_roman_paren] = STATE(580), + [sym__list_lower_roman_parens] = STATE(212), + [sym__list_item_lower_roman_parens] = STATE(582), + [sym__list_upper_roman_period] = STATE(212), + [sym__list_item_upper_roman_period] = STATE(586), + [sym__list_upper_roman_paren] = STATE(212), + [sym__list_item_upper_roman_paren] = STATE(584), + [sym__list_upper_roman_parens] = STATE(212), + [sym__list_item_upper_roman_parens] = STATE(562), + [sym_table] = STATE(235), + [sym__table_content] = STATE(61), + [sym_table_separator] = STATE(61), + [sym_table_row] = STATE(66), + [sym_footnote] = STATE(235), + [sym_div] = STATE(235), + [sym_div_marker_begin] = STATE(968), + [sym_code_block] = STATE(235), + [sym_raw_block] = STATE(235), + [sym_thematic_break] = STATE(235), + [sym_block_quote] = STATE(235), + [sym__block_quote_prefix] = STATE(424), + [sym_link_reference_definition] = STATE(235), + [sym_block_attribute] = STATE(235), + [sym__paragraph] = STATE(235), + [sym__paragraph_content] = STATE(756), + [sym__inline] = STATE(683), + [sym__symbol_fallback] = STATE(329), + [aux_sym_document_repeat1] = STATE(6), + [aux_sym__list_dash_repeat1] = STATE(366), + [aux_sym__list_plus_repeat1] = STATE(374), + [aux_sym__list_star_repeat1] = STATE(375), + [aux_sym__list_task_repeat1] = STATE(360), + [aux_sym__list_definition_repeat1] = STATE(553), + [aux_sym__list_decimal_period_repeat1] = STATE(554), + [aux_sym__list_decimal_paren_repeat1] = STATE(556), + [aux_sym__list_decimal_parens_repeat1] = STATE(561), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(489), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(564), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(566), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(569), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(572), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(574), + [aux_sym__list_lower_roman_period_repeat1] = STATE(576), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(580), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(582), + [aux_sym__list_upper_roman_period_repeat1] = STATE(586), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(584), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(562), + [aux_sym_table_repeat1] = STATE(61), + [aux_sym__block_quote_prefix_repeat1] = STATE(397), + [aux_sym__inline_repeat1] = STATE(329), + [ts_builtin_sym_end] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(9), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [sym__newline] = ACTIONS(13), + [sym__heading_begin] = ACTIONS(17), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(21), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(63), + [sym__block_quote_continuation] = ACTIONS(65), + [sym__thematic_break_dash] = ACTIONS(67), + [sym__thematic_break_star] = ACTIONS(67), + [sym__footnote_begin] = ACTIONS(69), + }, + [10] = { + [sym__block_with_section] = STATE(198), + [sym__block_element] = STATE(198), + [sym_section] = STATE(198), + [sym_heading] = STATE(8), + [sym_list] = STATE(198), + [sym__list_dash] = STATE(254), + [sym__list_item_dash] = STATE(391), + [sym__list_plus] = STATE(254), + [sym__list_item_plus] = STATE(390), + [sym__list_star] = STATE(254), + [sym__list_item_star] = STATE(389), + [sym__list_task] = STATE(254), + [sym__list_item_task] = STATE(340), + [sym_list_marker_task] = STATE(37), + [sym__list_definition] = STATE(254), + [sym__list_item_definition] = STATE(517), + [sym__list_decimal_period] = STATE(254), + [sym__list_item_decimal_period] = STATE(515), + [sym__list_decimal_paren] = STATE(254), + [sym__list_item_decimal_paren] = STATE(493), + [sym__list_decimal_parens] = STATE(254), + [sym__list_item_decimal_parens] = STATE(490), + [sym__list_lower_alpha_period] = STATE(254), + [sym__list_item_lower_alpha_period] = STATE(486), + [sym__list_lower_alpha_paren] = STATE(254), + [sym__list_item_lower_alpha_paren] = STATE(485), + [sym__list_lower_alpha_parens] = STATE(254), + [sym__list_item_lower_alpha_parens] = STATE(483), + [sym__list_upper_alpha_period] = STATE(254), + [sym__list_item_upper_alpha_period] = STATE(482), + [sym__list_upper_alpha_paren] = STATE(254), + [sym__list_item_upper_alpha_paren] = STATE(481), + [sym__list_upper_alpha_parens] = STATE(254), + [sym__list_item_upper_alpha_parens] = STATE(480), + [sym__list_lower_roman_period] = STATE(254), + [sym__list_item_lower_roman_period] = STATE(479), + [sym__list_lower_roman_paren] = STATE(254), + [sym__list_item_lower_roman_paren] = STATE(476), + [sym__list_lower_roman_parens] = STATE(254), + [sym__list_item_lower_roman_parens] = STATE(475), + [sym__list_upper_roman_period] = STATE(254), + [sym__list_item_upper_roman_period] = STATE(472), + [sym__list_upper_roman_paren] = STATE(254), + [sym__list_item_upper_roman_paren] = STATE(513), + [sym__list_upper_roman_parens] = STATE(254), + [sym__list_item_upper_roman_parens] = STATE(507), + [sym_table] = STATE(198), + [sym__table_content] = STATE(62), + [sym_table_separator] = STATE(62), + [sym_table_row] = STATE(68), + [sym_footnote] = STATE(198), + [sym_div] = STATE(198), + [sym_div_marker_begin] = STATE(956), + [sym_code_block] = STATE(198), + [sym_raw_block] = STATE(198), + [sym_thematic_break] = STATE(198), + [sym_block_quote] = STATE(198), + [sym__block_quote_prefix] = STATE(436), + [sym_link_reference_definition] = STATE(198), + [sym_block_attribute] = STATE(198), + [sym__paragraph] = STATE(198), + [sym__paragraph_content] = STATE(774), + [sym__inline] = STATE(683), + [sym__symbol_fallback] = STATE(329), + [aux_sym_document_repeat1] = STATE(7), + [aux_sym__list_dash_repeat1] = STATE(391), + [aux_sym__list_plus_repeat1] = STATE(390), + [aux_sym__list_star_repeat1] = STATE(389), + [aux_sym__list_task_repeat1] = STATE(340), + [aux_sym__list_definition_repeat1] = STATE(517), + [aux_sym__list_decimal_period_repeat1] = STATE(515), + [aux_sym__list_decimal_paren_repeat1] = STATE(493), + [aux_sym__list_decimal_parens_repeat1] = STATE(490), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(486), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(485), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(483), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(482), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(481), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(480), + [aux_sym__list_lower_roman_period_repeat1] = STATE(479), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(476), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(475), + [aux_sym__list_upper_roman_period_repeat1] = STATE(472), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(513), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(507), + [aux_sym_table_repeat1] = STATE(62), + [aux_sym__block_quote_prefix_repeat1] = STATE(397), + [aux_sym__inline_repeat1] = STATE(329), + [anon_sym_LBRACK] = ACTIONS(75), + [anon_sym_PIPE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [sym__block_close] = ACTIONS(219), + [sym__newline] = ACTIONS(83), + [sym__heading_begin] = ACTIONS(17), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(85), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(87), + [sym__block_quote_continuation] = ACTIONS(65), + [sym__thematic_break_dash] = ACTIONS(89), + [sym__thematic_break_star] = ACTIONS(89), + [sym__footnote_begin] = ACTIONS(91), + }, + [11] = { + [sym__block_with_heading] = STATE(221), + [sym__block_element] = STATE(221), + [sym_heading] = STATE(221), + [sym_list] = STATE(221), + [sym__list_dash] = STATE(254), + [sym__list_item_dash] = STATE(391), + [sym__list_plus] = STATE(254), + [sym__list_item_plus] = STATE(390), + [sym__list_star] = STATE(254), + [sym__list_item_star] = STATE(389), + [sym__list_task] = STATE(254), + [sym__list_item_task] = STATE(340), + [sym_list_marker_task] = STATE(37), + [sym__list_definition] = STATE(254), + [sym__list_item_definition] = STATE(517), + [sym__list_decimal_period] = STATE(254), + [sym__list_item_decimal_period] = STATE(515), + [sym__list_decimal_paren] = STATE(254), + [sym__list_item_decimal_paren] = STATE(493), + [sym__list_decimal_parens] = STATE(254), + [sym__list_item_decimal_parens] = STATE(490), + [sym__list_lower_alpha_period] = STATE(254), + [sym__list_item_lower_alpha_period] = STATE(486), + [sym__list_lower_alpha_paren] = STATE(254), + [sym__list_item_lower_alpha_paren] = STATE(485), + [sym__list_lower_alpha_parens] = STATE(254), + [sym__list_item_lower_alpha_parens] = STATE(483), + [sym__list_upper_alpha_period] = STATE(254), + [sym__list_item_upper_alpha_period] = STATE(482), + [sym__list_upper_alpha_paren] = STATE(254), + [sym__list_item_upper_alpha_paren] = STATE(481), + [sym__list_upper_alpha_parens] = STATE(254), + [sym__list_item_upper_alpha_parens] = STATE(480), + [sym__list_lower_roman_period] = STATE(254), + [sym__list_item_lower_roman_period] = STATE(479), + [sym__list_lower_roman_paren] = STATE(254), + [sym__list_item_lower_roman_paren] = STATE(476), + [sym__list_lower_roman_parens] = STATE(254), + [sym__list_item_lower_roman_parens] = STATE(475), + [sym__list_upper_roman_period] = STATE(254), + [sym__list_item_upper_roman_period] = STATE(472), + [sym__list_upper_roman_paren] = STATE(254), + [sym__list_item_upper_roman_paren] = STATE(513), + [sym__list_upper_roman_parens] = STATE(254), + [sym__list_item_upper_roman_parens] = STATE(507), + [sym_table] = STATE(221), + [sym__table_content] = STATE(62), + [sym_table_separator] = STATE(62), + [sym_table_row] = STATE(68), + [sym_footnote] = STATE(221), + [sym_div] = STATE(221), + [sym_div_marker_begin] = STATE(956), + [sym_code_block] = STATE(221), + [sym_raw_block] = STATE(221), + [sym_thematic_break] = STATE(221), + [sym_block_quote] = STATE(221), + [sym__block_quote_prefix] = STATE(395), + [sym_link_reference_definition] = STATE(221), + [sym_block_attribute] = STATE(221), + [sym__paragraph] = STATE(221), + [sym__paragraph_content] = STATE(774), + [sym__inline] = STATE(683), + [sym__symbol_fallback] = STATE(329), + [aux_sym__list_dash_repeat1] = STATE(391), + [aux_sym__list_plus_repeat1] = STATE(390), + [aux_sym__list_star_repeat1] = STATE(389), + [aux_sym__list_task_repeat1] = STATE(340), + [aux_sym__list_definition_repeat1] = STATE(517), + [aux_sym__list_decimal_period_repeat1] = STATE(515), + [aux_sym__list_decimal_paren_repeat1] = STATE(493), + [aux_sym__list_decimal_parens_repeat1] = STATE(490), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(486), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(485), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(483), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(482), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(481), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(480), + [aux_sym__list_lower_roman_period_repeat1] = STATE(479), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(476), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(475), + [aux_sym__list_upper_roman_period_repeat1] = STATE(472), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(513), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(507), + [aux_sym_table_repeat1] = STATE(62), + [aux_sym_footnote_content_repeat1] = STATE(15), + [aux_sym__block_quote_prefix_repeat1] = STATE(349), + [aux_sym__inline_repeat1] = STATE(329), + [anon_sym_LBRACK] = ACTIONS(75), + [anon_sym_PIPE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [sym__block_close] = ACTIONS(221), + [sym__newline] = ACTIONS(223), + [sym__heading_begin] = ACTIONS(17), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(85), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(87), + [sym__block_quote_continuation] = ACTIONS(225), + [sym__thematic_break_dash] = ACTIONS(89), + [sym__thematic_break_star] = ACTIONS(89), + [sym__footnote_begin] = ACTIONS(91), + }, + [12] = { + [sym__block_with_heading] = STATE(136), + [sym__block_element] = STATE(136), + [sym_heading] = STATE(136), + [sym_list] = STATE(136), + [sym__list_dash] = STATE(200), + [sym__list_item_dash] = STATE(382), + [sym__list_plus] = STATE(200), + [sym__list_item_plus] = STATE(383), + [sym__list_star] = STATE(200), + [sym__list_item_star] = STATE(385), + [sym__list_task] = STATE(200), + [sym__list_item_task] = STATE(341), + [sym_list_marker_task] = STATE(37), + [sym__list_definition] = STATE(200), + [sym__list_item_definition] = STATE(494), + [sym__list_decimal_period] = STATE(200), + [sym__list_item_decimal_period] = STATE(477), + [sym__list_decimal_paren] = STATE(200), + [sym__list_item_decimal_paren] = STATE(508), + [sym__list_decimal_parens] = STATE(200), + [sym__list_item_decimal_parens] = STATE(519), + [sym__list_lower_alpha_period] = STATE(200), + [sym__list_item_lower_alpha_period] = STATE(520), + [sym__list_lower_alpha_paren] = STATE(200), + [sym__list_item_lower_alpha_paren] = STATE(521), + [sym__list_lower_alpha_parens] = STATE(200), + [sym__list_item_lower_alpha_parens] = STATE(523), + [sym__list_upper_alpha_period] = STATE(200), + [sym__list_item_upper_alpha_period] = STATE(524), + [sym__list_upper_alpha_paren] = STATE(200), + [sym__list_item_upper_alpha_paren] = STATE(527), + [sym__list_upper_alpha_parens] = STATE(200), + [sym__list_item_upper_alpha_parens] = STATE(528), + [sym__list_lower_roman_period] = STATE(200), + [sym__list_item_lower_roman_period] = STATE(529), + [sym__list_lower_roman_paren] = STATE(200), + [sym__list_item_lower_roman_paren] = STATE(530), + [sym__list_lower_roman_parens] = STATE(200), + [sym__list_item_lower_roman_parens] = STATE(532), + [sym__list_upper_roman_period] = STATE(200), + [sym__list_item_upper_roman_period] = STATE(539), + [sym__list_upper_roman_paren] = STATE(200), + [sym__list_item_upper_roman_paren] = STATE(470), + [sym__list_upper_roman_parens] = STATE(200), + [sym__list_item_upper_roman_parens] = STATE(510), + [sym_table] = STATE(136), + [sym__table_content] = STATE(60), + [sym_table_separator] = STATE(60), + [sym_table_row] = STATE(67), + [sym_footnote] = STATE(136), + [sym_footnote_content] = STATE(921), + [sym_div] = STATE(136), + [sym_div_marker_begin] = STATE(976), + [sym_code_block] = STATE(136), + [sym_raw_block] = STATE(136), + [sym_thematic_break] = STATE(136), + [sym_block_quote] = STATE(136), + [sym__block_quote_prefix] = STATE(445), + [sym_link_reference_definition] = STATE(136), + [sym_block_attribute] = STATE(136), + [sym__paragraph] = STATE(136), + [sym__paragraph_content] = STATE(829), + [sym__inline] = STATE(683), + [sym__symbol_fallback] = STATE(329), + [aux_sym__list_dash_repeat1] = STATE(382), + [aux_sym__list_plus_repeat1] = STATE(383), + [aux_sym__list_star_repeat1] = STATE(385), + [aux_sym__list_task_repeat1] = STATE(341), + [aux_sym__list_definition_repeat1] = STATE(494), + [aux_sym__list_decimal_period_repeat1] = STATE(477), + [aux_sym__list_decimal_paren_repeat1] = STATE(508), + [aux_sym__list_decimal_parens_repeat1] = STATE(519), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(520), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(521), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(523), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(524), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(527), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(528), + [aux_sym__list_lower_roman_period_repeat1] = STATE(529), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(530), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(532), + [aux_sym__list_upper_roman_period_repeat1] = STATE(539), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(470), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(510), + [aux_sym_table_repeat1] = STATE(60), + [aux_sym_footnote_content_repeat1] = STATE(17), + [aux_sym__block_quote_prefix_repeat1] = STATE(397), + [aux_sym__inline_repeat1] = STATE(329), + [anon_sym_LBRACK] = ACTIONS(227), + [anon_sym_PIPE] = ACTIONS(229), + [anon_sym_LBRACE] = ACTIONS(231), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [sym__newline] = ACTIONS(233), + [sym__heading_begin] = ACTIONS(235), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(237), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(239), + [sym__block_quote_continuation] = ACTIONS(65), + [sym__thematic_break_dash] = ACTIONS(241), + [sym__thematic_break_star] = ACTIONS(241), + [sym__footnote_begin] = ACTIONS(243), + }, + [13] = { + [sym__block_with_heading] = STATE(136), + [sym__block_element] = STATE(136), + [sym_heading] = STATE(136), + [sym_list] = STATE(136), + [sym__list_dash] = STATE(200), + [sym__list_item_dash] = STATE(382), + [sym__list_plus] = STATE(200), + [sym__list_item_plus] = STATE(383), + [sym__list_star] = STATE(200), + [sym__list_item_star] = STATE(385), + [sym__list_task] = STATE(200), + [sym__list_item_task] = STATE(341), + [sym_list_marker_task] = STATE(37), + [sym__list_definition] = STATE(200), + [sym__list_item_definition] = STATE(494), + [sym__list_decimal_period] = STATE(200), + [sym__list_item_decimal_period] = STATE(477), + [sym__list_decimal_paren] = STATE(200), + [sym__list_item_decimal_paren] = STATE(508), + [sym__list_decimal_parens] = STATE(200), + [sym__list_item_decimal_parens] = STATE(519), + [sym__list_lower_alpha_period] = STATE(200), + [sym__list_item_lower_alpha_period] = STATE(520), + [sym__list_lower_alpha_paren] = STATE(200), + [sym__list_item_lower_alpha_paren] = STATE(521), + [sym__list_lower_alpha_parens] = STATE(200), + [sym__list_item_lower_alpha_parens] = STATE(523), + [sym__list_upper_alpha_period] = STATE(200), + [sym__list_item_upper_alpha_period] = STATE(524), + [sym__list_upper_alpha_paren] = STATE(200), + [sym__list_item_upper_alpha_paren] = STATE(527), + [sym__list_upper_alpha_parens] = STATE(200), + [sym__list_item_upper_alpha_parens] = STATE(528), + [sym__list_lower_roman_period] = STATE(200), + [sym__list_item_lower_roman_period] = STATE(529), + [sym__list_lower_roman_paren] = STATE(200), + [sym__list_item_lower_roman_paren] = STATE(530), + [sym__list_lower_roman_parens] = STATE(200), + [sym__list_item_lower_roman_parens] = STATE(532), + [sym__list_upper_roman_period] = STATE(200), + [sym__list_item_upper_roman_period] = STATE(539), + [sym__list_upper_roman_paren] = STATE(200), + [sym__list_item_upper_roman_paren] = STATE(470), + [sym__list_upper_roman_parens] = STATE(200), + [sym__list_item_upper_roman_parens] = STATE(510), + [sym_table] = STATE(136), + [sym__table_content] = STATE(60), + [sym_table_separator] = STATE(60), + [sym_table_row] = STATE(67), + [sym_footnote] = STATE(136), + [sym_footnote_content] = STATE(865), + [sym_div] = STATE(136), + [sym_div_marker_begin] = STATE(976), + [sym_code_block] = STATE(136), + [sym_raw_block] = STATE(136), + [sym_thematic_break] = STATE(136), + [sym_block_quote] = STATE(136), + [sym__block_quote_prefix] = STATE(445), + [sym_link_reference_definition] = STATE(136), + [sym_block_attribute] = STATE(136), + [sym__paragraph] = STATE(136), + [sym__paragraph_content] = STATE(829), + [sym__inline] = STATE(683), + [sym__symbol_fallback] = STATE(329), + [aux_sym__list_dash_repeat1] = STATE(382), + [aux_sym__list_plus_repeat1] = STATE(383), + [aux_sym__list_star_repeat1] = STATE(385), + [aux_sym__list_task_repeat1] = STATE(341), + [aux_sym__list_definition_repeat1] = STATE(494), + [aux_sym__list_decimal_period_repeat1] = STATE(477), + [aux_sym__list_decimal_paren_repeat1] = STATE(508), + [aux_sym__list_decimal_parens_repeat1] = STATE(519), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(520), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(521), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(523), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(524), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(527), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(528), + [aux_sym__list_lower_roman_period_repeat1] = STATE(529), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(530), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(532), + [aux_sym__list_upper_roman_period_repeat1] = STATE(539), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(470), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(510), + [aux_sym_table_repeat1] = STATE(60), + [aux_sym_footnote_content_repeat1] = STATE(17), + [aux_sym__block_quote_prefix_repeat1] = STATE(397), + [aux_sym__inline_repeat1] = STATE(329), + [anon_sym_LBRACK] = ACTIONS(227), + [anon_sym_PIPE] = ACTIONS(229), + [anon_sym_LBRACE] = ACTIONS(231), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [sym__newline] = ACTIONS(233), + [sym__heading_begin] = ACTIONS(235), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(237), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(239), + [sym__block_quote_continuation] = ACTIONS(65), + [sym__thematic_break_dash] = ACTIONS(241), + [sym__thematic_break_star] = ACTIONS(241), + [sym__footnote_begin] = ACTIONS(243), + }, + [14] = { + [sym__block_with_heading] = STATE(221), + [sym__block_element] = STATE(221), + [sym_heading] = STATE(221), + [sym_list] = STATE(221), + [sym__list_dash] = STATE(254), + [sym__list_item_dash] = STATE(391), + [sym__list_plus] = STATE(254), + [sym__list_item_plus] = STATE(390), + [sym__list_star] = STATE(254), + [sym__list_item_star] = STATE(389), + [sym__list_task] = STATE(254), + [sym__list_item_task] = STATE(340), + [sym_list_marker_task] = STATE(37), + [sym__list_definition] = STATE(254), + [sym__list_item_definition] = STATE(517), + [sym__list_decimal_period] = STATE(254), + [sym__list_item_decimal_period] = STATE(515), + [sym__list_decimal_paren] = STATE(254), + [sym__list_item_decimal_paren] = STATE(493), + [sym__list_decimal_parens] = STATE(254), + [sym__list_item_decimal_parens] = STATE(490), + [sym__list_lower_alpha_period] = STATE(254), + [sym__list_item_lower_alpha_period] = STATE(486), + [sym__list_lower_alpha_paren] = STATE(254), + [sym__list_item_lower_alpha_paren] = STATE(485), + [sym__list_lower_alpha_parens] = STATE(254), + [sym__list_item_lower_alpha_parens] = STATE(483), + [sym__list_upper_alpha_period] = STATE(254), + [sym__list_item_upper_alpha_period] = STATE(482), + [sym__list_upper_alpha_paren] = STATE(254), + [sym__list_item_upper_alpha_paren] = STATE(481), + [sym__list_upper_alpha_parens] = STATE(254), + [sym__list_item_upper_alpha_parens] = STATE(480), + [sym__list_lower_roman_period] = STATE(254), + [sym__list_item_lower_roman_period] = STATE(479), + [sym__list_lower_roman_paren] = STATE(254), + [sym__list_item_lower_roman_paren] = STATE(476), + [sym__list_lower_roman_parens] = STATE(254), + [sym__list_item_lower_roman_parens] = STATE(475), + [sym__list_upper_roman_period] = STATE(254), + [sym__list_item_upper_roman_period] = STATE(472), + [sym__list_upper_roman_paren] = STATE(254), + [sym__list_item_upper_roman_paren] = STATE(513), + [sym__list_upper_roman_parens] = STATE(254), + [sym__list_item_upper_roman_parens] = STATE(507), + [sym_table] = STATE(221), + [sym__table_content] = STATE(62), + [sym_table_separator] = STATE(62), + [sym_table_row] = STATE(68), + [sym_footnote] = STATE(221), + [sym_div] = STATE(221), + [sym_div_marker_begin] = STATE(956), + [sym_code_block] = STATE(221), + [sym_raw_block] = STATE(221), + [sym_thematic_break] = STATE(221), + [sym_block_quote] = STATE(221), + [sym__block_quote_prefix] = STATE(396), + [sym_link_reference_definition] = STATE(221), + [sym_block_attribute] = STATE(221), + [sym__paragraph] = STATE(221), + [sym__paragraph_content] = STATE(774), + [sym__inline] = STATE(683), + [sym__symbol_fallback] = STATE(329), + [aux_sym__list_dash_repeat1] = STATE(391), + [aux_sym__list_plus_repeat1] = STATE(390), + [aux_sym__list_star_repeat1] = STATE(389), + [aux_sym__list_task_repeat1] = STATE(340), + [aux_sym__list_definition_repeat1] = STATE(517), + [aux_sym__list_decimal_period_repeat1] = STATE(515), + [aux_sym__list_decimal_paren_repeat1] = STATE(493), + [aux_sym__list_decimal_parens_repeat1] = STATE(490), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(486), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(485), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(483), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(482), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(481), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(480), + [aux_sym__list_lower_roman_period_repeat1] = STATE(479), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(476), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(475), + [aux_sym__list_upper_roman_period_repeat1] = STATE(472), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(513), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(507), + [aux_sym_table_repeat1] = STATE(62), + [aux_sym_footnote_content_repeat1] = STATE(18), + [aux_sym__block_quote_prefix_repeat1] = STATE(349), + [aux_sym__inline_repeat1] = STATE(329), + [anon_sym_LBRACK] = ACTIONS(75), + [anon_sym_PIPE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [sym__block_close] = ACTIONS(245), + [sym__newline] = ACTIONS(223), + [sym__heading_begin] = ACTIONS(17), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(85), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(87), + [sym__block_quote_continuation] = ACTIONS(225), + [sym__thematic_break_dash] = ACTIONS(89), + [sym__thematic_break_star] = ACTIONS(89), + [sym__footnote_begin] = ACTIONS(91), + }, + [15] = { + [sym__block_with_heading] = STATE(221), + [sym__block_element] = STATE(221), + [sym_heading] = STATE(221), + [sym_list] = STATE(221), + [sym__list_dash] = STATE(254), + [sym__list_item_dash] = STATE(391), + [sym__list_plus] = STATE(254), + [sym__list_item_plus] = STATE(390), + [sym__list_star] = STATE(254), + [sym__list_item_star] = STATE(389), + [sym__list_task] = STATE(254), + [sym__list_item_task] = STATE(340), + [sym_list_marker_task] = STATE(37), + [sym__list_definition] = STATE(254), + [sym__list_item_definition] = STATE(517), + [sym__list_decimal_period] = STATE(254), + [sym__list_item_decimal_period] = STATE(515), + [sym__list_decimal_paren] = STATE(254), + [sym__list_item_decimal_paren] = STATE(493), + [sym__list_decimal_parens] = STATE(254), + [sym__list_item_decimal_parens] = STATE(490), + [sym__list_lower_alpha_period] = STATE(254), + [sym__list_item_lower_alpha_period] = STATE(486), + [sym__list_lower_alpha_paren] = STATE(254), + [sym__list_item_lower_alpha_paren] = STATE(485), + [sym__list_lower_alpha_parens] = STATE(254), + [sym__list_item_lower_alpha_parens] = STATE(483), + [sym__list_upper_alpha_period] = STATE(254), + [sym__list_item_upper_alpha_period] = STATE(482), + [sym__list_upper_alpha_paren] = STATE(254), + [sym__list_item_upper_alpha_paren] = STATE(481), + [sym__list_upper_alpha_parens] = STATE(254), + [sym__list_item_upper_alpha_parens] = STATE(480), + [sym__list_lower_roman_period] = STATE(254), + [sym__list_item_lower_roman_period] = STATE(479), + [sym__list_lower_roman_paren] = STATE(254), + [sym__list_item_lower_roman_paren] = STATE(476), + [sym__list_lower_roman_parens] = STATE(254), + [sym__list_item_lower_roman_parens] = STATE(475), + [sym__list_upper_roman_period] = STATE(254), + [sym__list_item_upper_roman_period] = STATE(472), + [sym__list_upper_roman_paren] = STATE(254), + [sym__list_item_upper_roman_paren] = STATE(513), + [sym__list_upper_roman_parens] = STATE(254), + [sym__list_item_upper_roman_parens] = STATE(507), + [sym_table] = STATE(221), + [sym__table_content] = STATE(62), + [sym_table_separator] = STATE(62), + [sym_table_row] = STATE(68), + [sym_footnote] = STATE(221), + [sym_div] = STATE(221), + [sym_div_marker_begin] = STATE(956), + [sym_code_block] = STATE(221), + [sym_raw_block] = STATE(221), + [sym_thematic_break] = STATE(221), + [sym_block_quote] = STATE(221), + [sym__block_quote_prefix] = STATE(378), + [sym_link_reference_definition] = STATE(221), + [sym_block_attribute] = STATE(221), + [sym__paragraph] = STATE(221), + [sym__paragraph_content] = STATE(774), + [sym__inline] = STATE(683), + [sym__symbol_fallback] = STATE(329), + [aux_sym__list_dash_repeat1] = STATE(391), + [aux_sym__list_plus_repeat1] = STATE(390), + [aux_sym__list_star_repeat1] = STATE(389), + [aux_sym__list_task_repeat1] = STATE(340), + [aux_sym__list_definition_repeat1] = STATE(517), + [aux_sym__list_decimal_period_repeat1] = STATE(515), + [aux_sym__list_decimal_paren_repeat1] = STATE(493), + [aux_sym__list_decimal_parens_repeat1] = STATE(490), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(486), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(485), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(483), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(482), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(481), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(480), + [aux_sym__list_lower_roman_period_repeat1] = STATE(479), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(476), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(475), + [aux_sym__list_upper_roman_period_repeat1] = STATE(472), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(513), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(507), + [aux_sym_table_repeat1] = STATE(62), + [aux_sym_footnote_content_repeat1] = STATE(18), + [aux_sym__block_quote_prefix_repeat1] = STATE(349), + [aux_sym__inline_repeat1] = STATE(329), + [anon_sym_LBRACK] = ACTIONS(75), + [anon_sym_PIPE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [sym__block_close] = ACTIONS(247), + [sym__newline] = ACTIONS(223), + [sym__heading_begin] = ACTIONS(17), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(85), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(87), + [sym__block_quote_continuation] = ACTIONS(225), + [sym__thematic_break_dash] = ACTIONS(89), + [sym__thematic_break_star] = ACTIONS(89), + [sym__footnote_begin] = ACTIONS(91), + }, + [16] = { + [sym__block_with_heading] = STATE(136), + [sym__block_element] = STATE(136), + [sym_heading] = STATE(136), + [sym_list] = STATE(136), + [sym__list_dash] = STATE(200), + [sym__list_item_dash] = STATE(382), + [sym__list_plus] = STATE(200), + [sym__list_item_plus] = STATE(383), + [sym__list_star] = STATE(200), + [sym__list_item_star] = STATE(385), + [sym__list_task] = STATE(200), + [sym__list_item_task] = STATE(341), + [sym_list_marker_task] = STATE(37), + [sym__list_definition] = STATE(200), + [sym__list_item_definition] = STATE(494), + [sym__list_decimal_period] = STATE(200), + [sym__list_item_decimal_period] = STATE(477), + [sym__list_decimal_paren] = STATE(200), + [sym__list_item_decimal_paren] = STATE(508), + [sym__list_decimal_parens] = STATE(200), + [sym__list_item_decimal_parens] = STATE(519), + [sym__list_lower_alpha_period] = STATE(200), + [sym__list_item_lower_alpha_period] = STATE(520), + [sym__list_lower_alpha_paren] = STATE(200), + [sym__list_item_lower_alpha_paren] = STATE(521), + [sym__list_lower_alpha_parens] = STATE(200), + [sym__list_item_lower_alpha_parens] = STATE(523), + [sym__list_upper_alpha_period] = STATE(200), + [sym__list_item_upper_alpha_period] = STATE(524), + [sym__list_upper_alpha_paren] = STATE(200), + [sym__list_item_upper_alpha_paren] = STATE(527), + [sym__list_upper_alpha_parens] = STATE(200), + [sym__list_item_upper_alpha_parens] = STATE(528), + [sym__list_lower_roman_period] = STATE(200), + [sym__list_item_lower_roman_period] = STATE(529), + [sym__list_lower_roman_paren] = STATE(200), + [sym__list_item_lower_roman_paren] = STATE(530), + [sym__list_lower_roman_parens] = STATE(200), + [sym__list_item_lower_roman_parens] = STATE(532), + [sym__list_upper_roman_period] = STATE(200), + [sym__list_item_upper_roman_period] = STATE(539), + [sym__list_upper_roman_paren] = STATE(200), + [sym__list_item_upper_roman_paren] = STATE(470), + [sym__list_upper_roman_parens] = STATE(200), + [sym__list_item_upper_roman_parens] = STATE(510), + [sym_table] = STATE(136), + [sym__table_content] = STATE(60), + [sym_table_separator] = STATE(60), + [sym_table_row] = STATE(67), + [sym_footnote] = STATE(136), + [sym_footnote_content] = STATE(958), + [sym_div] = STATE(136), + [sym_div_marker_begin] = STATE(976), + [sym_code_block] = STATE(136), + [sym_raw_block] = STATE(136), + [sym_thematic_break] = STATE(136), + [sym_block_quote] = STATE(136), + [sym__block_quote_prefix] = STATE(445), + [sym_link_reference_definition] = STATE(136), + [sym_block_attribute] = STATE(136), + [sym__paragraph] = STATE(136), + [sym__paragraph_content] = STATE(829), + [sym__inline] = STATE(683), + [sym__symbol_fallback] = STATE(329), + [aux_sym__list_dash_repeat1] = STATE(382), + [aux_sym__list_plus_repeat1] = STATE(383), + [aux_sym__list_star_repeat1] = STATE(385), + [aux_sym__list_task_repeat1] = STATE(341), + [aux_sym__list_definition_repeat1] = STATE(494), + [aux_sym__list_decimal_period_repeat1] = STATE(477), + [aux_sym__list_decimal_paren_repeat1] = STATE(508), + [aux_sym__list_decimal_parens_repeat1] = STATE(519), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(520), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(521), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(523), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(524), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(527), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(528), + [aux_sym__list_lower_roman_period_repeat1] = STATE(529), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(530), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(532), + [aux_sym__list_upper_roman_period_repeat1] = STATE(539), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(470), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(510), + [aux_sym_table_repeat1] = STATE(60), + [aux_sym_footnote_content_repeat1] = STATE(17), + [aux_sym__block_quote_prefix_repeat1] = STATE(397), + [aux_sym__inline_repeat1] = STATE(329), + [anon_sym_LBRACK] = ACTIONS(227), + [anon_sym_PIPE] = ACTIONS(229), + [anon_sym_LBRACE] = ACTIONS(231), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [sym__newline] = ACTIONS(233), + [sym__heading_begin] = ACTIONS(235), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(237), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(239), + [sym__block_quote_continuation] = ACTIONS(65), + [sym__thematic_break_dash] = ACTIONS(241), + [sym__thematic_break_star] = ACTIONS(241), + [sym__footnote_begin] = ACTIONS(243), + }, + [17] = { + [sym__block_with_heading] = STATE(136), + [sym__block_element] = STATE(136), + [sym_heading] = STATE(136), + [sym_list] = STATE(136), + [sym__list_dash] = STATE(200), + [sym__list_item_dash] = STATE(382), + [sym__list_plus] = STATE(200), + [sym__list_item_plus] = STATE(383), + [sym__list_star] = STATE(200), + [sym__list_item_star] = STATE(385), + [sym__list_task] = STATE(200), + [sym__list_item_task] = STATE(341), + [sym_list_marker_task] = STATE(37), + [sym__list_definition] = STATE(200), + [sym__list_item_definition] = STATE(494), + [sym__list_decimal_period] = STATE(200), + [sym__list_item_decimal_period] = STATE(477), + [sym__list_decimal_paren] = STATE(200), + [sym__list_item_decimal_paren] = STATE(508), + [sym__list_decimal_parens] = STATE(200), + [sym__list_item_decimal_parens] = STATE(519), + [sym__list_lower_alpha_period] = STATE(200), + [sym__list_item_lower_alpha_period] = STATE(520), + [sym__list_lower_alpha_paren] = STATE(200), + [sym__list_item_lower_alpha_paren] = STATE(521), + [sym__list_lower_alpha_parens] = STATE(200), + [sym__list_item_lower_alpha_parens] = STATE(523), + [sym__list_upper_alpha_period] = STATE(200), + [sym__list_item_upper_alpha_period] = STATE(524), + [sym__list_upper_alpha_paren] = STATE(200), + [sym__list_item_upper_alpha_paren] = STATE(527), + [sym__list_upper_alpha_parens] = STATE(200), + [sym__list_item_upper_alpha_parens] = STATE(528), + [sym__list_lower_roman_period] = STATE(200), + [sym__list_item_lower_roman_period] = STATE(529), + [sym__list_lower_roman_paren] = STATE(200), + [sym__list_item_lower_roman_paren] = STATE(530), + [sym__list_lower_roman_parens] = STATE(200), + [sym__list_item_lower_roman_parens] = STATE(532), + [sym__list_upper_roman_period] = STATE(200), + [sym__list_item_upper_roman_period] = STATE(539), + [sym__list_upper_roman_paren] = STATE(200), + [sym__list_item_upper_roman_paren] = STATE(470), + [sym__list_upper_roman_parens] = STATE(200), + [sym__list_item_upper_roman_parens] = STATE(510), + [sym_table] = STATE(136), + [sym__table_content] = STATE(60), + [sym_table_separator] = STATE(60), + [sym_table_row] = STATE(67), + [sym_footnote] = STATE(136), + [sym_div] = STATE(136), + [sym_div_marker_begin] = STATE(976), + [sym_code_block] = STATE(136), + [sym_raw_block] = STATE(136), + [sym_thematic_break] = STATE(136), + [sym_block_quote] = STATE(136), + [sym__block_quote_prefix] = STATE(445), + [sym_link_reference_definition] = STATE(136), + [sym_block_attribute] = STATE(136), + [sym__paragraph] = STATE(136), + [sym__paragraph_content] = STATE(829), + [sym__inline] = STATE(683), + [sym__symbol_fallback] = STATE(329), + [aux_sym__list_dash_repeat1] = STATE(382), + [aux_sym__list_plus_repeat1] = STATE(383), + [aux_sym__list_star_repeat1] = STATE(385), + [aux_sym__list_task_repeat1] = STATE(341), + [aux_sym__list_definition_repeat1] = STATE(494), + [aux_sym__list_decimal_period_repeat1] = STATE(477), + [aux_sym__list_decimal_paren_repeat1] = STATE(508), + [aux_sym__list_decimal_parens_repeat1] = STATE(519), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(520), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(521), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(523), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(524), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(527), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(528), + [aux_sym__list_lower_roman_period_repeat1] = STATE(529), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(530), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(532), + [aux_sym__list_upper_roman_period_repeat1] = STATE(539), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(470), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(510), + [aux_sym_table_repeat1] = STATE(60), + [aux_sym_footnote_content_repeat1] = STATE(24), + [aux_sym__block_quote_prefix_repeat1] = STATE(397), + [aux_sym__inline_repeat1] = STATE(329), + [anon_sym_LBRACK] = ACTIONS(227), + [anon_sym_PIPE] = ACTIONS(229), + [anon_sym_LBRACE] = ACTIONS(231), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [sym__newline] = ACTIONS(233), + [sym__heading_begin] = ACTIONS(235), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(237), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(239), + [sym__block_quote_continuation] = ACTIONS(65), + [sym__thematic_break_dash] = ACTIONS(241), + [sym__thematic_break_star] = ACTIONS(241), + [sym__footnote_begin] = ACTIONS(243), + [sym__footnote_end] = ACTIONS(249), + }, + [18] = { + [sym__block_with_heading] = STATE(221), + [sym__block_element] = STATE(221), + [sym_heading] = STATE(221), + [sym_list] = STATE(221), + [sym__list_dash] = STATE(254), + [sym__list_item_dash] = STATE(391), + [sym__list_plus] = STATE(254), + [sym__list_item_plus] = STATE(390), + [sym__list_star] = STATE(254), + [sym__list_item_star] = STATE(389), + [sym__list_task] = STATE(254), + [sym__list_item_task] = STATE(340), + [sym_list_marker_task] = STATE(37), + [sym__list_definition] = STATE(254), + [sym__list_item_definition] = STATE(517), + [sym__list_decimal_period] = STATE(254), + [sym__list_item_decimal_period] = STATE(515), + [sym__list_decimal_paren] = STATE(254), + [sym__list_item_decimal_paren] = STATE(493), + [sym__list_decimal_parens] = STATE(254), + [sym__list_item_decimal_parens] = STATE(490), + [sym__list_lower_alpha_period] = STATE(254), + [sym__list_item_lower_alpha_period] = STATE(486), + [sym__list_lower_alpha_paren] = STATE(254), + [sym__list_item_lower_alpha_paren] = STATE(485), + [sym__list_lower_alpha_parens] = STATE(254), + [sym__list_item_lower_alpha_parens] = STATE(483), + [sym__list_upper_alpha_period] = STATE(254), + [sym__list_item_upper_alpha_period] = STATE(482), + [sym__list_upper_alpha_paren] = STATE(254), + [sym__list_item_upper_alpha_paren] = STATE(481), + [sym__list_upper_alpha_parens] = STATE(254), + [sym__list_item_upper_alpha_parens] = STATE(480), + [sym__list_lower_roman_period] = STATE(254), + [sym__list_item_lower_roman_period] = STATE(479), + [sym__list_lower_roman_paren] = STATE(254), + [sym__list_item_lower_roman_paren] = STATE(476), + [sym__list_lower_roman_parens] = STATE(254), + [sym__list_item_lower_roman_parens] = STATE(475), + [sym__list_upper_roman_period] = STATE(254), + [sym__list_item_upper_roman_period] = STATE(472), + [sym__list_upper_roman_paren] = STATE(254), + [sym__list_item_upper_roman_paren] = STATE(513), + [sym__list_upper_roman_parens] = STATE(254), + [sym__list_item_upper_roman_parens] = STATE(507), + [sym_table] = STATE(221), + [sym__table_content] = STATE(62), + [sym_table_separator] = STATE(62), + [sym_table_row] = STATE(68), + [sym_footnote] = STATE(221), + [sym_div] = STATE(221), + [sym_div_marker_begin] = STATE(956), + [sym_code_block] = STATE(221), + [sym_raw_block] = STATE(221), + [sym_thematic_break] = STATE(221), + [sym_block_quote] = STATE(221), + [sym__block_quote_prefix] = STATE(436), + [sym_link_reference_definition] = STATE(221), + [sym_block_attribute] = STATE(221), + [sym__paragraph] = STATE(221), + [sym__paragraph_content] = STATE(774), + [sym__inline] = STATE(683), + [sym__symbol_fallback] = STATE(329), + [aux_sym__list_dash_repeat1] = STATE(391), + [aux_sym__list_plus_repeat1] = STATE(390), + [aux_sym__list_star_repeat1] = STATE(389), + [aux_sym__list_task_repeat1] = STATE(340), + [aux_sym__list_definition_repeat1] = STATE(517), + [aux_sym__list_decimal_period_repeat1] = STATE(515), + [aux_sym__list_decimal_paren_repeat1] = STATE(493), + [aux_sym__list_decimal_parens_repeat1] = STATE(490), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(486), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(485), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(483), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(482), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(481), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(480), + [aux_sym__list_lower_roman_period_repeat1] = STATE(479), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(476), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(475), + [aux_sym__list_upper_roman_period_repeat1] = STATE(472), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(513), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(507), + [aux_sym_table_repeat1] = STATE(62), + [aux_sym_footnote_content_repeat1] = STATE(18), + [aux_sym__block_quote_prefix_repeat1] = STATE(397), + [aux_sym__inline_repeat1] = STATE(329), + [anon_sym_LBRACK] = ACTIONS(251), + [anon_sym_PIPE] = ACTIONS(254), + [anon_sym_LBRACE] = ACTIONS(257), + [aux_sym__inline_token1] = ACTIONS(260), + [anon_sym_LBRACE_DASH] = ACTIONS(260), + [sym__block_close] = ACTIONS(263), + [sym__newline] = ACTIONS(265), + [sym__heading_begin] = ACTIONS(268), + [sym__div_begin] = ACTIONS(271), + [sym__code_block_begin] = ACTIONS(274), + [sym_list_marker_dash] = ACTIONS(277), + [sym_list_marker_star] = ACTIONS(280), + [sym_list_marker_plus] = ACTIONS(283), + [sym__list_marker_task_begin] = ACTIONS(286), + [sym_list_marker_definition] = ACTIONS(289), + [sym_list_marker_decimal_period] = ACTIONS(292), + [sym_list_marker_lower_alpha_period] = ACTIONS(295), + [sym_list_marker_upper_alpha_period] = ACTIONS(298), + [sym_list_marker_lower_roman_period] = ACTIONS(301), + [sym_list_marker_upper_roman_period] = ACTIONS(304), + [sym_list_marker_decimal_paren] = ACTIONS(307), + [sym_list_marker_lower_alpha_paren] = ACTIONS(310), + [sym_list_marker_upper_alpha_paren] = ACTIONS(313), + [sym_list_marker_lower_roman_paren] = ACTIONS(316), + [sym_list_marker_upper_roman_paren] = ACTIONS(319), + [sym_list_marker_decimal_parens] = ACTIONS(322), + [sym_list_marker_lower_alpha_parens] = ACTIONS(325), + [sym_list_marker_upper_alpha_parens] = ACTIONS(328), + [sym_list_marker_lower_roman_parens] = ACTIONS(331), + [sym_list_marker_upper_roman_parens] = ACTIONS(334), + [sym__block_quote_begin] = ACTIONS(337), + [sym__block_quote_continuation] = ACTIONS(340), + [sym__thematic_break_dash] = ACTIONS(343), + [sym__thematic_break_star] = ACTIONS(343), + [sym__footnote_begin] = ACTIONS(346), + }, + [19] = { + [sym__block_with_heading] = STATE(221), + [sym__block_element] = STATE(221), + [sym_heading] = STATE(221), + [sym_list] = STATE(221), + [sym__list_dash] = STATE(254), + [sym__list_item_dash] = STATE(391), + [sym__list_plus] = STATE(254), + [sym__list_item_plus] = STATE(390), + [sym__list_star] = STATE(254), + [sym__list_item_star] = STATE(389), + [sym__list_task] = STATE(254), + [sym__list_item_task] = STATE(340), + [sym_list_marker_task] = STATE(37), + [sym__list_definition] = STATE(254), + [sym__list_item_definition] = STATE(517), + [sym__list_decimal_period] = STATE(254), + [sym__list_item_decimal_period] = STATE(515), + [sym__list_decimal_paren] = STATE(254), + [sym__list_item_decimal_paren] = STATE(493), + [sym__list_decimal_parens] = STATE(254), + [sym__list_item_decimal_parens] = STATE(490), + [sym__list_lower_alpha_period] = STATE(254), + [sym__list_item_lower_alpha_period] = STATE(486), + [sym__list_lower_alpha_paren] = STATE(254), + [sym__list_item_lower_alpha_paren] = STATE(485), + [sym__list_lower_alpha_parens] = STATE(254), + [sym__list_item_lower_alpha_parens] = STATE(483), + [sym__list_upper_alpha_period] = STATE(254), + [sym__list_item_upper_alpha_period] = STATE(482), + [sym__list_upper_alpha_paren] = STATE(254), + [sym__list_item_upper_alpha_paren] = STATE(481), + [sym__list_upper_alpha_parens] = STATE(254), + [sym__list_item_upper_alpha_parens] = STATE(480), + [sym__list_lower_roman_period] = STATE(254), + [sym__list_item_lower_roman_period] = STATE(479), + [sym__list_lower_roman_paren] = STATE(254), + [sym__list_item_lower_roman_paren] = STATE(476), + [sym__list_lower_roman_parens] = STATE(254), + [sym__list_item_lower_roman_parens] = STATE(475), + [sym__list_upper_roman_period] = STATE(254), + [sym__list_item_upper_roman_period] = STATE(472), + [sym__list_upper_roman_paren] = STATE(254), + [sym__list_item_upper_roman_paren] = STATE(513), + [sym__list_upper_roman_parens] = STATE(254), + [sym__list_item_upper_roman_parens] = STATE(507), + [sym_table] = STATE(221), + [sym__table_content] = STATE(62), + [sym_table_separator] = STATE(62), + [sym_table_row] = STATE(68), + [sym_footnote] = STATE(221), + [sym_div] = STATE(221), + [sym_div_marker_begin] = STATE(956), + [sym_code_block] = STATE(221), + [sym_raw_block] = STATE(221), + [sym_thematic_break] = STATE(221), + [sym_block_quote] = STATE(221), + [sym__block_quote_prefix] = STATE(377), + [sym_link_reference_definition] = STATE(221), + [sym_block_attribute] = STATE(221), + [sym__paragraph] = STATE(221), + [sym__paragraph_content] = STATE(774), + [sym__inline] = STATE(683), + [sym__symbol_fallback] = STATE(329), + [aux_sym__list_dash_repeat1] = STATE(391), + [aux_sym__list_plus_repeat1] = STATE(390), + [aux_sym__list_star_repeat1] = STATE(389), + [aux_sym__list_task_repeat1] = STATE(340), + [aux_sym__list_definition_repeat1] = STATE(517), + [aux_sym__list_decimal_period_repeat1] = STATE(515), + [aux_sym__list_decimal_paren_repeat1] = STATE(493), + [aux_sym__list_decimal_parens_repeat1] = STATE(490), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(486), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(485), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(483), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(482), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(481), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(480), + [aux_sym__list_lower_roman_period_repeat1] = STATE(479), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(476), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(475), + [aux_sym__list_upper_roman_period_repeat1] = STATE(472), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(513), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(507), + [aux_sym_table_repeat1] = STATE(62), + [aux_sym_footnote_content_repeat1] = STATE(20), + [aux_sym__block_quote_prefix_repeat1] = STATE(349), + [aux_sym__inline_repeat1] = STATE(329), + [anon_sym_LBRACK] = ACTIONS(75), + [anon_sym_PIPE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [sym__block_close] = ACTIONS(349), + [sym__newline] = ACTIONS(223), + [sym__heading_begin] = ACTIONS(17), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(85), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(87), + [sym__block_quote_continuation] = ACTIONS(225), + [sym__thematic_break_dash] = ACTIONS(89), + [sym__thematic_break_star] = ACTIONS(89), + [sym__footnote_begin] = ACTIONS(91), + }, + [20] = { + [sym__block_with_heading] = STATE(221), + [sym__block_element] = STATE(221), + [sym_heading] = STATE(221), + [sym_list] = STATE(221), + [sym__list_dash] = STATE(254), + [sym__list_item_dash] = STATE(391), + [sym__list_plus] = STATE(254), + [sym__list_item_plus] = STATE(390), + [sym__list_star] = STATE(254), + [sym__list_item_star] = STATE(389), + [sym__list_task] = STATE(254), + [sym__list_item_task] = STATE(340), + [sym_list_marker_task] = STATE(37), + [sym__list_definition] = STATE(254), + [sym__list_item_definition] = STATE(517), + [sym__list_decimal_period] = STATE(254), + [sym__list_item_decimal_period] = STATE(515), + [sym__list_decimal_paren] = STATE(254), + [sym__list_item_decimal_paren] = STATE(493), + [sym__list_decimal_parens] = STATE(254), + [sym__list_item_decimal_parens] = STATE(490), + [sym__list_lower_alpha_period] = STATE(254), + [sym__list_item_lower_alpha_period] = STATE(486), + [sym__list_lower_alpha_paren] = STATE(254), + [sym__list_item_lower_alpha_paren] = STATE(485), + [sym__list_lower_alpha_parens] = STATE(254), + [sym__list_item_lower_alpha_parens] = STATE(483), + [sym__list_upper_alpha_period] = STATE(254), + [sym__list_item_upper_alpha_period] = STATE(482), + [sym__list_upper_alpha_paren] = STATE(254), + [sym__list_item_upper_alpha_paren] = STATE(481), + [sym__list_upper_alpha_parens] = STATE(254), + [sym__list_item_upper_alpha_parens] = STATE(480), + [sym__list_lower_roman_period] = STATE(254), + [sym__list_item_lower_roman_period] = STATE(479), + [sym__list_lower_roman_paren] = STATE(254), + [sym__list_item_lower_roman_paren] = STATE(476), + [sym__list_lower_roman_parens] = STATE(254), + [sym__list_item_lower_roman_parens] = STATE(475), + [sym__list_upper_roman_period] = STATE(254), + [sym__list_item_upper_roman_period] = STATE(472), + [sym__list_upper_roman_paren] = STATE(254), + [sym__list_item_upper_roman_paren] = STATE(513), + [sym__list_upper_roman_parens] = STATE(254), + [sym__list_item_upper_roman_parens] = STATE(507), + [sym_table] = STATE(221), + [sym__table_content] = STATE(62), + [sym_table_separator] = STATE(62), + [sym_table_row] = STATE(68), + [sym_footnote] = STATE(221), + [sym_div] = STATE(221), + [sym_div_marker_begin] = STATE(956), + [sym_code_block] = STATE(221), + [sym_raw_block] = STATE(221), + [sym_thematic_break] = STATE(221), + [sym_block_quote] = STATE(221), + [sym__block_quote_prefix] = STATE(367), + [sym_link_reference_definition] = STATE(221), + [sym_block_attribute] = STATE(221), + [sym__paragraph] = STATE(221), + [sym__paragraph_content] = STATE(774), + [sym__inline] = STATE(683), + [sym__symbol_fallback] = STATE(329), + [aux_sym__list_dash_repeat1] = STATE(391), + [aux_sym__list_plus_repeat1] = STATE(390), + [aux_sym__list_star_repeat1] = STATE(389), + [aux_sym__list_task_repeat1] = STATE(340), + [aux_sym__list_definition_repeat1] = STATE(517), + [aux_sym__list_decimal_period_repeat1] = STATE(515), + [aux_sym__list_decimal_paren_repeat1] = STATE(493), + [aux_sym__list_decimal_parens_repeat1] = STATE(490), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(486), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(485), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(483), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(482), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(481), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(480), + [aux_sym__list_lower_roman_period_repeat1] = STATE(479), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(476), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(475), + [aux_sym__list_upper_roman_period_repeat1] = STATE(472), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(513), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(507), + [aux_sym_table_repeat1] = STATE(62), + [aux_sym_footnote_content_repeat1] = STATE(18), + [aux_sym__block_quote_prefix_repeat1] = STATE(349), + [aux_sym__inline_repeat1] = STATE(329), + [anon_sym_LBRACK] = ACTIONS(75), + [anon_sym_PIPE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [sym__block_close] = ACTIONS(351), + [sym__newline] = ACTIONS(223), + [sym__heading_begin] = ACTIONS(17), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(85), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(87), + [sym__block_quote_continuation] = ACTIONS(225), + [sym__thematic_break_dash] = ACTIONS(89), + [sym__thematic_break_star] = ACTIONS(89), + [sym__footnote_begin] = ACTIONS(91), + }, + [21] = { + [sym__block_with_heading] = STATE(221), + [sym__block_element] = STATE(221), + [sym_heading] = STATE(221), + [sym_list] = STATE(221), + [sym__list_dash] = STATE(254), + [sym__list_item_dash] = STATE(391), + [sym__list_plus] = STATE(254), + [sym__list_item_plus] = STATE(390), + [sym__list_star] = STATE(254), + [sym__list_item_star] = STATE(389), + [sym__list_task] = STATE(254), + [sym__list_item_task] = STATE(340), + [sym_list_marker_task] = STATE(37), + [sym__list_definition] = STATE(254), + [sym__list_item_definition] = STATE(517), + [sym__list_decimal_period] = STATE(254), + [sym__list_item_decimal_period] = STATE(515), + [sym__list_decimal_paren] = STATE(254), + [sym__list_item_decimal_paren] = STATE(493), + [sym__list_decimal_parens] = STATE(254), + [sym__list_item_decimal_parens] = STATE(490), + [sym__list_lower_alpha_period] = STATE(254), + [sym__list_item_lower_alpha_period] = STATE(486), + [sym__list_lower_alpha_paren] = STATE(254), + [sym__list_item_lower_alpha_paren] = STATE(485), + [sym__list_lower_alpha_parens] = STATE(254), + [sym__list_item_lower_alpha_parens] = STATE(483), + [sym__list_upper_alpha_period] = STATE(254), + [sym__list_item_upper_alpha_period] = STATE(482), + [sym__list_upper_alpha_paren] = STATE(254), + [sym__list_item_upper_alpha_paren] = STATE(481), + [sym__list_upper_alpha_parens] = STATE(254), + [sym__list_item_upper_alpha_parens] = STATE(480), + [sym__list_lower_roman_period] = STATE(254), + [sym__list_item_lower_roman_period] = STATE(479), + [sym__list_lower_roman_paren] = STATE(254), + [sym__list_item_lower_roman_paren] = STATE(476), + [sym__list_lower_roman_parens] = STATE(254), + [sym__list_item_lower_roman_parens] = STATE(475), + [sym__list_upper_roman_period] = STATE(254), + [sym__list_item_upper_roman_period] = STATE(472), + [sym__list_upper_roman_paren] = STATE(254), + [sym__list_item_upper_roman_paren] = STATE(513), + [sym__list_upper_roman_parens] = STATE(254), + [sym__list_item_upper_roman_parens] = STATE(507), + [sym_table] = STATE(221), + [sym__table_content] = STATE(62), + [sym_table_separator] = STATE(62), + [sym_table_row] = STATE(68), + [sym_footnote] = STATE(221), + [sym_div] = STATE(221), + [sym_div_marker_begin] = STATE(956), + [sym_code_block] = STATE(221), + [sym_raw_block] = STATE(221), + [sym_thematic_break] = STATE(221), + [sym_block_quote] = STATE(221), + [sym__block_quote_prefix] = STATE(363), + [sym_link_reference_definition] = STATE(221), + [sym_block_attribute] = STATE(221), + [sym__paragraph] = STATE(221), + [sym__paragraph_content] = STATE(774), + [sym__inline] = STATE(683), + [sym__symbol_fallback] = STATE(329), + [aux_sym__list_dash_repeat1] = STATE(391), + [aux_sym__list_plus_repeat1] = STATE(390), + [aux_sym__list_star_repeat1] = STATE(389), + [aux_sym__list_task_repeat1] = STATE(340), + [aux_sym__list_definition_repeat1] = STATE(517), + [aux_sym__list_decimal_period_repeat1] = STATE(515), + [aux_sym__list_decimal_paren_repeat1] = STATE(493), + [aux_sym__list_decimal_parens_repeat1] = STATE(490), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(486), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(485), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(483), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(482), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(481), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(480), + [aux_sym__list_lower_roman_period_repeat1] = STATE(479), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(476), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(475), + [aux_sym__list_upper_roman_period_repeat1] = STATE(472), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(513), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(507), + [aux_sym_table_repeat1] = STATE(62), + [aux_sym_footnote_content_repeat1] = STATE(23), + [aux_sym__block_quote_prefix_repeat1] = STATE(349), + [aux_sym__inline_repeat1] = STATE(329), + [anon_sym_LBRACK] = ACTIONS(75), + [anon_sym_PIPE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [sym__block_close] = ACTIONS(353), + [sym__newline] = ACTIONS(223), + [sym__heading_begin] = ACTIONS(17), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(85), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(87), + [sym__block_quote_continuation] = ACTIONS(225), + [sym__thematic_break_dash] = ACTIONS(89), + [sym__thematic_break_star] = ACTIONS(89), + [sym__footnote_begin] = ACTIONS(91), + }, + [22] = { + [sym__block_with_heading] = STATE(136), + [sym__block_element] = STATE(136), + [sym_heading] = STATE(136), + [sym_list] = STATE(136), + [sym__list_dash] = STATE(200), + [sym__list_item_dash] = STATE(382), + [sym__list_plus] = STATE(200), + [sym__list_item_plus] = STATE(383), + [sym__list_star] = STATE(200), + [sym__list_item_star] = STATE(385), + [sym__list_task] = STATE(200), + [sym__list_item_task] = STATE(341), + [sym_list_marker_task] = STATE(37), + [sym__list_definition] = STATE(200), + [sym__list_item_definition] = STATE(494), + [sym__list_decimal_period] = STATE(200), + [sym__list_item_decimal_period] = STATE(477), + [sym__list_decimal_paren] = STATE(200), + [sym__list_item_decimal_paren] = STATE(508), + [sym__list_decimal_parens] = STATE(200), + [sym__list_item_decimal_parens] = STATE(519), + [sym__list_lower_alpha_period] = STATE(200), + [sym__list_item_lower_alpha_period] = STATE(520), + [sym__list_lower_alpha_paren] = STATE(200), + [sym__list_item_lower_alpha_paren] = STATE(521), + [sym__list_lower_alpha_parens] = STATE(200), + [sym__list_item_lower_alpha_parens] = STATE(523), + [sym__list_upper_alpha_period] = STATE(200), + [sym__list_item_upper_alpha_period] = STATE(524), + [sym__list_upper_alpha_paren] = STATE(200), + [sym__list_item_upper_alpha_paren] = STATE(527), + [sym__list_upper_alpha_parens] = STATE(200), + [sym__list_item_upper_alpha_parens] = STATE(528), + [sym__list_lower_roman_period] = STATE(200), + [sym__list_item_lower_roman_period] = STATE(529), + [sym__list_lower_roman_paren] = STATE(200), + [sym__list_item_lower_roman_paren] = STATE(530), + [sym__list_lower_roman_parens] = STATE(200), + [sym__list_item_lower_roman_parens] = STATE(532), + [sym__list_upper_roman_period] = STATE(200), + [sym__list_item_upper_roman_period] = STATE(539), + [sym__list_upper_roman_paren] = STATE(200), + [sym__list_item_upper_roman_paren] = STATE(470), + [sym__list_upper_roman_parens] = STATE(200), + [sym__list_item_upper_roman_parens] = STATE(510), + [sym_table] = STATE(136), + [sym__table_content] = STATE(60), + [sym_table_separator] = STATE(60), + [sym_table_row] = STATE(67), + [sym_footnote] = STATE(136), + [sym_footnote_content] = STATE(925), + [sym_div] = STATE(136), + [sym_div_marker_begin] = STATE(976), + [sym_code_block] = STATE(136), + [sym_raw_block] = STATE(136), + [sym_thematic_break] = STATE(136), + [sym_block_quote] = STATE(136), + [sym__block_quote_prefix] = STATE(445), + [sym_link_reference_definition] = STATE(136), + [sym_block_attribute] = STATE(136), + [sym__paragraph] = STATE(136), + [sym__paragraph_content] = STATE(829), + [sym__inline] = STATE(683), + [sym__symbol_fallback] = STATE(329), + [aux_sym__list_dash_repeat1] = STATE(382), + [aux_sym__list_plus_repeat1] = STATE(383), + [aux_sym__list_star_repeat1] = STATE(385), + [aux_sym__list_task_repeat1] = STATE(341), + [aux_sym__list_definition_repeat1] = STATE(494), + [aux_sym__list_decimal_period_repeat1] = STATE(477), + [aux_sym__list_decimal_paren_repeat1] = STATE(508), + [aux_sym__list_decimal_parens_repeat1] = STATE(519), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(520), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(521), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(523), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(524), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(527), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(528), + [aux_sym__list_lower_roman_period_repeat1] = STATE(529), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(530), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(532), + [aux_sym__list_upper_roman_period_repeat1] = STATE(539), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(470), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(510), + [aux_sym_table_repeat1] = STATE(60), + [aux_sym_footnote_content_repeat1] = STATE(17), + [aux_sym__block_quote_prefix_repeat1] = STATE(397), + [aux_sym__inline_repeat1] = STATE(329), + [anon_sym_LBRACK] = ACTIONS(227), + [anon_sym_PIPE] = ACTIONS(229), + [anon_sym_LBRACE] = ACTIONS(231), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [sym__newline] = ACTIONS(233), + [sym__heading_begin] = ACTIONS(235), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(237), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(239), + [sym__block_quote_continuation] = ACTIONS(65), + [sym__thematic_break_dash] = ACTIONS(241), + [sym__thematic_break_star] = ACTIONS(241), + [sym__footnote_begin] = ACTIONS(243), + }, + [23] = { + [sym__block_with_heading] = STATE(221), + [sym__block_element] = STATE(221), + [sym_heading] = STATE(221), + [sym_list] = STATE(221), + [sym__list_dash] = STATE(254), + [sym__list_item_dash] = STATE(391), + [sym__list_plus] = STATE(254), + [sym__list_item_plus] = STATE(390), + [sym__list_star] = STATE(254), + [sym__list_item_star] = STATE(389), + [sym__list_task] = STATE(254), + [sym__list_item_task] = STATE(340), + [sym_list_marker_task] = STATE(37), + [sym__list_definition] = STATE(254), + [sym__list_item_definition] = STATE(517), + [sym__list_decimal_period] = STATE(254), + [sym__list_item_decimal_period] = STATE(515), + [sym__list_decimal_paren] = STATE(254), + [sym__list_item_decimal_paren] = STATE(493), + [sym__list_decimal_parens] = STATE(254), + [sym__list_item_decimal_parens] = STATE(490), + [sym__list_lower_alpha_period] = STATE(254), + [sym__list_item_lower_alpha_period] = STATE(486), + [sym__list_lower_alpha_paren] = STATE(254), + [sym__list_item_lower_alpha_paren] = STATE(485), + [sym__list_lower_alpha_parens] = STATE(254), + [sym__list_item_lower_alpha_parens] = STATE(483), + [sym__list_upper_alpha_period] = STATE(254), + [sym__list_item_upper_alpha_period] = STATE(482), + [sym__list_upper_alpha_paren] = STATE(254), + [sym__list_item_upper_alpha_paren] = STATE(481), + [sym__list_upper_alpha_parens] = STATE(254), + [sym__list_item_upper_alpha_parens] = STATE(480), + [sym__list_lower_roman_period] = STATE(254), + [sym__list_item_lower_roman_period] = STATE(479), + [sym__list_lower_roman_paren] = STATE(254), + [sym__list_item_lower_roman_paren] = STATE(476), + [sym__list_lower_roman_parens] = STATE(254), + [sym__list_item_lower_roman_parens] = STATE(475), + [sym__list_upper_roman_period] = STATE(254), + [sym__list_item_upper_roman_period] = STATE(472), + [sym__list_upper_roman_paren] = STATE(254), + [sym__list_item_upper_roman_paren] = STATE(513), + [sym__list_upper_roman_parens] = STATE(254), + [sym__list_item_upper_roman_parens] = STATE(507), + [sym_table] = STATE(221), + [sym__table_content] = STATE(62), + [sym_table_separator] = STATE(62), + [sym_table_row] = STATE(68), + [sym_footnote] = STATE(221), + [sym_div] = STATE(221), + [sym_div_marker_begin] = STATE(956), + [sym_code_block] = STATE(221), + [sym_raw_block] = STATE(221), + [sym_thematic_break] = STATE(221), + [sym_block_quote] = STATE(221), + [sym__block_quote_prefix] = STATE(393), + [sym_link_reference_definition] = STATE(221), + [sym_block_attribute] = STATE(221), + [sym__paragraph] = STATE(221), + [sym__paragraph_content] = STATE(774), + [sym__inline] = STATE(683), + [sym__symbol_fallback] = STATE(329), + [aux_sym__list_dash_repeat1] = STATE(391), + [aux_sym__list_plus_repeat1] = STATE(390), + [aux_sym__list_star_repeat1] = STATE(389), + [aux_sym__list_task_repeat1] = STATE(340), + [aux_sym__list_definition_repeat1] = STATE(517), + [aux_sym__list_decimal_period_repeat1] = STATE(515), + [aux_sym__list_decimal_paren_repeat1] = STATE(493), + [aux_sym__list_decimal_parens_repeat1] = STATE(490), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(486), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(485), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(483), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(482), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(481), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(480), + [aux_sym__list_lower_roman_period_repeat1] = STATE(479), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(476), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(475), + [aux_sym__list_upper_roman_period_repeat1] = STATE(472), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(513), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(507), + [aux_sym_table_repeat1] = STATE(62), + [aux_sym_footnote_content_repeat1] = STATE(18), + [aux_sym__block_quote_prefix_repeat1] = STATE(349), + [aux_sym__inline_repeat1] = STATE(329), + [anon_sym_LBRACK] = ACTIONS(75), + [anon_sym_PIPE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [sym__block_close] = ACTIONS(355), + [sym__newline] = ACTIONS(223), + [sym__heading_begin] = ACTIONS(17), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(85), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(87), + [sym__block_quote_continuation] = ACTIONS(225), + [sym__thematic_break_dash] = ACTIONS(89), + [sym__thematic_break_star] = ACTIONS(89), + [sym__footnote_begin] = ACTIONS(91), + }, + [24] = { + [sym__block_with_heading] = STATE(136), + [sym__block_element] = STATE(136), + [sym_heading] = STATE(136), + [sym_list] = STATE(136), + [sym__list_dash] = STATE(200), + [sym__list_item_dash] = STATE(382), + [sym__list_plus] = STATE(200), + [sym__list_item_plus] = STATE(383), + [sym__list_star] = STATE(200), + [sym__list_item_star] = STATE(385), + [sym__list_task] = STATE(200), + [sym__list_item_task] = STATE(341), + [sym_list_marker_task] = STATE(37), + [sym__list_definition] = STATE(200), + [sym__list_item_definition] = STATE(494), + [sym__list_decimal_period] = STATE(200), + [sym__list_item_decimal_period] = STATE(477), + [sym__list_decimal_paren] = STATE(200), + [sym__list_item_decimal_paren] = STATE(508), + [sym__list_decimal_parens] = STATE(200), + [sym__list_item_decimal_parens] = STATE(519), + [sym__list_lower_alpha_period] = STATE(200), + [sym__list_item_lower_alpha_period] = STATE(520), + [sym__list_lower_alpha_paren] = STATE(200), + [sym__list_item_lower_alpha_paren] = STATE(521), + [sym__list_lower_alpha_parens] = STATE(200), + [sym__list_item_lower_alpha_parens] = STATE(523), + [sym__list_upper_alpha_period] = STATE(200), + [sym__list_item_upper_alpha_period] = STATE(524), + [sym__list_upper_alpha_paren] = STATE(200), + [sym__list_item_upper_alpha_paren] = STATE(527), + [sym__list_upper_alpha_parens] = STATE(200), + [sym__list_item_upper_alpha_parens] = STATE(528), + [sym__list_lower_roman_period] = STATE(200), + [sym__list_item_lower_roman_period] = STATE(529), + [sym__list_lower_roman_paren] = STATE(200), + [sym__list_item_lower_roman_paren] = STATE(530), + [sym__list_lower_roman_parens] = STATE(200), + [sym__list_item_lower_roman_parens] = STATE(532), + [sym__list_upper_roman_period] = STATE(200), + [sym__list_item_upper_roman_period] = STATE(539), + [sym__list_upper_roman_paren] = STATE(200), + [sym__list_item_upper_roman_paren] = STATE(470), + [sym__list_upper_roman_parens] = STATE(200), + [sym__list_item_upper_roman_parens] = STATE(510), + [sym_table] = STATE(136), + [sym__table_content] = STATE(60), + [sym_table_separator] = STATE(60), + [sym_table_row] = STATE(67), + [sym_footnote] = STATE(136), + [sym_div] = STATE(136), + [sym_div_marker_begin] = STATE(976), + [sym_code_block] = STATE(136), + [sym_raw_block] = STATE(136), + [sym_thematic_break] = STATE(136), + [sym_block_quote] = STATE(136), + [sym__block_quote_prefix] = STATE(445), + [sym_link_reference_definition] = STATE(136), + [sym_block_attribute] = STATE(136), + [sym__paragraph] = STATE(136), + [sym__paragraph_content] = STATE(829), + [sym__inline] = STATE(683), + [sym__symbol_fallback] = STATE(329), + [aux_sym__list_dash_repeat1] = STATE(382), + [aux_sym__list_plus_repeat1] = STATE(383), + [aux_sym__list_star_repeat1] = STATE(385), + [aux_sym__list_task_repeat1] = STATE(341), + [aux_sym__list_definition_repeat1] = STATE(494), + [aux_sym__list_decimal_period_repeat1] = STATE(477), + [aux_sym__list_decimal_paren_repeat1] = STATE(508), + [aux_sym__list_decimal_parens_repeat1] = STATE(519), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(520), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(521), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(523), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(524), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(527), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(528), + [aux_sym__list_lower_roman_period_repeat1] = STATE(529), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(530), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(532), + [aux_sym__list_upper_roman_period_repeat1] = STATE(539), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(470), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(510), + [aux_sym_table_repeat1] = STATE(60), + [aux_sym_footnote_content_repeat1] = STATE(24), + [aux_sym__block_quote_prefix_repeat1] = STATE(397), + [aux_sym__inline_repeat1] = STATE(329), + [anon_sym_LBRACK] = ACTIONS(357), + [anon_sym_PIPE] = ACTIONS(360), + [anon_sym_LBRACE] = ACTIONS(363), + [aux_sym__inline_token1] = ACTIONS(260), + [anon_sym_LBRACE_DASH] = ACTIONS(260), + [sym__newline] = ACTIONS(366), + [sym__heading_begin] = ACTIONS(369), + [sym__div_begin] = ACTIONS(271), + [sym__code_block_begin] = ACTIONS(372), + [sym_list_marker_dash] = ACTIONS(277), + [sym_list_marker_star] = ACTIONS(280), + [sym_list_marker_plus] = ACTIONS(283), + [sym__list_marker_task_begin] = ACTIONS(286), + [sym_list_marker_definition] = ACTIONS(289), + [sym_list_marker_decimal_period] = ACTIONS(292), + [sym_list_marker_lower_alpha_period] = ACTIONS(295), + [sym_list_marker_upper_alpha_period] = ACTIONS(298), + [sym_list_marker_lower_roman_period] = ACTIONS(301), + [sym_list_marker_upper_roman_period] = ACTIONS(304), + [sym_list_marker_decimal_paren] = ACTIONS(307), + [sym_list_marker_lower_alpha_paren] = ACTIONS(310), + [sym_list_marker_upper_alpha_paren] = ACTIONS(313), + [sym_list_marker_lower_roman_paren] = ACTIONS(316), + [sym_list_marker_upper_roman_paren] = ACTIONS(319), + [sym_list_marker_decimal_parens] = ACTIONS(322), + [sym_list_marker_lower_alpha_parens] = ACTIONS(325), + [sym_list_marker_upper_alpha_parens] = ACTIONS(328), + [sym_list_marker_lower_roman_parens] = ACTIONS(331), + [sym_list_marker_upper_roman_parens] = ACTIONS(334), + [sym__block_quote_begin] = ACTIONS(375), + [sym__block_quote_continuation] = ACTIONS(340), + [sym__thematic_break_dash] = ACTIONS(378), + [sym__thematic_break_star] = ACTIONS(378), + [sym__footnote_begin] = ACTIONS(381), + [sym__footnote_end] = ACTIONS(263), + }, + [25] = { + [sym__block_with_heading] = STATE(221), + [sym__block_element] = STATE(221), + [sym_heading] = STATE(221), + [sym_list] = STATE(221), + [sym__list_dash] = STATE(254), + [sym__list_item_dash] = STATE(391), + [sym__list_plus] = STATE(254), + [sym__list_item_plus] = STATE(390), + [sym__list_star] = STATE(254), + [sym__list_item_star] = STATE(389), + [sym__list_task] = STATE(254), + [sym__list_item_task] = STATE(340), + [sym_list_marker_task] = STATE(37), + [sym__list_definition] = STATE(254), + [sym__list_item_definition] = STATE(517), + [sym__list_decimal_period] = STATE(254), + [sym__list_item_decimal_period] = STATE(515), + [sym__list_decimal_paren] = STATE(254), + [sym__list_item_decimal_paren] = STATE(493), + [sym__list_decimal_parens] = STATE(254), + [sym__list_item_decimal_parens] = STATE(490), + [sym__list_lower_alpha_period] = STATE(254), + [sym__list_item_lower_alpha_period] = STATE(486), + [sym__list_lower_alpha_paren] = STATE(254), + [sym__list_item_lower_alpha_paren] = STATE(485), + [sym__list_lower_alpha_parens] = STATE(254), + [sym__list_item_lower_alpha_parens] = STATE(483), + [sym__list_upper_alpha_period] = STATE(254), + [sym__list_item_upper_alpha_period] = STATE(482), + [sym__list_upper_alpha_paren] = STATE(254), + [sym__list_item_upper_alpha_paren] = STATE(481), + [sym__list_upper_alpha_parens] = STATE(254), + [sym__list_item_upper_alpha_parens] = STATE(480), + [sym__list_lower_roman_period] = STATE(254), + [sym__list_item_lower_roman_period] = STATE(479), + [sym__list_lower_roman_paren] = STATE(254), + [sym__list_item_lower_roman_paren] = STATE(476), + [sym__list_lower_roman_parens] = STATE(254), + [sym__list_item_lower_roman_parens] = STATE(475), + [sym__list_upper_roman_period] = STATE(254), + [sym__list_item_upper_roman_period] = STATE(472), + [sym__list_upper_roman_paren] = STATE(254), + [sym__list_item_upper_roman_paren] = STATE(513), + [sym__list_upper_roman_parens] = STATE(254), + [sym__list_item_upper_roman_parens] = STATE(507), + [sym_table] = STATE(221), + [sym__table_content] = STATE(62), + [sym_table_separator] = STATE(62), + [sym_table_row] = STATE(68), + [sym_footnote] = STATE(221), + [sym_div] = STATE(221), + [sym_div_marker_begin] = STATE(956), + [sym_code_block] = STATE(221), + [sym_raw_block] = STATE(221), + [sym_thematic_break] = STATE(221), + [sym_block_quote] = STATE(221), + [sym__block_quote_prefix] = STATE(392), + [sym_link_reference_definition] = STATE(221), + [sym_block_attribute] = STATE(221), + [sym__paragraph] = STATE(221), + [sym__paragraph_content] = STATE(774), + [sym__inline] = STATE(683), + [sym__symbol_fallback] = STATE(329), + [aux_sym__list_dash_repeat1] = STATE(391), + [aux_sym__list_plus_repeat1] = STATE(390), + [aux_sym__list_star_repeat1] = STATE(389), + [aux_sym__list_task_repeat1] = STATE(340), + [aux_sym__list_definition_repeat1] = STATE(517), + [aux_sym__list_decimal_period_repeat1] = STATE(515), + [aux_sym__list_decimal_paren_repeat1] = STATE(493), + [aux_sym__list_decimal_parens_repeat1] = STATE(490), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(486), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(485), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(483), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(482), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(481), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(480), + [aux_sym__list_lower_roman_period_repeat1] = STATE(479), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(476), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(475), + [aux_sym__list_upper_roman_period_repeat1] = STATE(472), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(513), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(507), + [aux_sym_table_repeat1] = STATE(62), + [aux_sym_footnote_content_repeat1] = STATE(14), + [aux_sym__block_quote_prefix_repeat1] = STATE(349), + [aux_sym__inline_repeat1] = STATE(329), + [anon_sym_LBRACK] = ACTIONS(75), + [anon_sym_PIPE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [sym__block_close] = ACTIONS(384), + [sym__newline] = ACTIONS(223), + [sym__heading_begin] = ACTIONS(17), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(85), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(87), + [sym__block_quote_continuation] = ACTIONS(225), + [sym__thematic_break_dash] = ACTIONS(89), + [sym__thematic_break_star] = ACTIONS(89), + [sym__footnote_begin] = ACTIONS(91), + }, + [26] = { + [sym__block_with_heading] = STATE(221), + [sym__block_element] = STATE(221), + [sym_heading] = STATE(221), + [sym_list] = STATE(221), + [sym__list_dash] = STATE(254), + [sym__list_item_dash] = STATE(391), + [sym__list_plus] = STATE(254), + [sym__list_item_plus] = STATE(390), + [sym__list_star] = STATE(254), + [sym__list_item_star] = STATE(389), + [sym__list_task] = STATE(254), + [sym__list_item_task] = STATE(340), + [sym_list_marker_task] = STATE(37), + [sym__list_definition] = STATE(254), + [sym__list_item_definition] = STATE(517), + [sym__list_decimal_period] = STATE(254), + [sym__list_item_decimal_period] = STATE(515), + [sym__list_decimal_paren] = STATE(254), + [sym__list_item_decimal_paren] = STATE(493), + [sym__list_decimal_parens] = STATE(254), + [sym__list_item_decimal_parens] = STATE(490), + [sym__list_lower_alpha_period] = STATE(254), + [sym__list_item_lower_alpha_period] = STATE(486), + [sym__list_lower_alpha_paren] = STATE(254), + [sym__list_item_lower_alpha_paren] = STATE(485), + [sym__list_lower_alpha_parens] = STATE(254), + [sym__list_item_lower_alpha_parens] = STATE(483), + [sym__list_upper_alpha_period] = STATE(254), + [sym__list_item_upper_alpha_period] = STATE(482), + [sym__list_upper_alpha_paren] = STATE(254), + [sym__list_item_upper_alpha_paren] = STATE(481), + [sym__list_upper_alpha_parens] = STATE(254), + [sym__list_item_upper_alpha_parens] = STATE(480), + [sym__list_lower_roman_period] = STATE(254), + [sym__list_item_lower_roman_period] = STATE(479), + [sym__list_lower_roman_paren] = STATE(254), + [sym__list_item_lower_roman_paren] = STATE(476), + [sym__list_lower_roman_parens] = STATE(254), + [sym__list_item_lower_roman_parens] = STATE(475), + [sym__list_upper_roman_period] = STATE(254), + [sym__list_item_upper_roman_period] = STATE(472), + [sym__list_upper_roman_paren] = STATE(254), + [sym__list_item_upper_roman_paren] = STATE(513), + [sym__list_upper_roman_parens] = STATE(254), + [sym__list_item_upper_roman_parens] = STATE(507), + [sym_table] = STATE(221), + [sym__table_content] = STATE(62), + [sym_table_separator] = STATE(62), + [sym_table_row] = STATE(68), + [sym_footnote] = STATE(221), + [sym_div] = STATE(221), + [sym_div_marker_begin] = STATE(956), + [sym_code_block] = STATE(221), + [sym_raw_block] = STATE(221), + [sym_thematic_break] = STATE(221), + [sym_block_quote] = STATE(221), + [sym__block_quote_prefix] = STATE(381), + [sym_link_reference_definition] = STATE(221), + [sym_block_attribute] = STATE(221), + [sym__paragraph] = STATE(221), + [sym__paragraph_content] = STATE(774), + [sym__inline] = STATE(683), + [sym__symbol_fallback] = STATE(329), + [aux_sym__list_dash_repeat1] = STATE(391), + [aux_sym__list_plus_repeat1] = STATE(390), + [aux_sym__list_star_repeat1] = STATE(389), + [aux_sym__list_task_repeat1] = STATE(340), + [aux_sym__list_definition_repeat1] = STATE(517), + [aux_sym__list_decimal_period_repeat1] = STATE(515), + [aux_sym__list_decimal_paren_repeat1] = STATE(493), + [aux_sym__list_decimal_parens_repeat1] = STATE(490), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(486), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(485), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(483), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(482), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(481), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(480), + [aux_sym__list_lower_roman_period_repeat1] = STATE(479), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(476), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(475), + [aux_sym__list_upper_roman_period_repeat1] = STATE(472), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(513), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(507), + [aux_sym_table_repeat1] = STATE(62), + [aux_sym_footnote_content_repeat1] = STATE(18), + [aux_sym__block_quote_prefix_repeat1] = STATE(349), + [aux_sym__inline_repeat1] = STATE(329), + [anon_sym_LBRACK] = ACTIONS(75), + [anon_sym_PIPE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [sym__block_close] = ACTIONS(386), + [sym__newline] = ACTIONS(223), + [sym__heading_begin] = ACTIONS(17), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(85), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(87), + [sym__block_quote_continuation] = ACTIONS(225), + [sym__thematic_break_dash] = ACTIONS(89), + [sym__thematic_break_star] = ACTIONS(89), + [sym__footnote_begin] = ACTIONS(91), + }, + [27] = { + [sym__block_with_heading] = STATE(136), + [sym__block_element] = STATE(136), + [sym_heading] = STATE(136), + [sym_list] = STATE(136), + [sym__list_dash] = STATE(200), + [sym__list_item_dash] = STATE(382), + [sym__list_plus] = STATE(200), + [sym__list_item_plus] = STATE(383), + [sym__list_star] = STATE(200), + [sym__list_item_star] = STATE(385), + [sym__list_task] = STATE(200), + [sym__list_item_task] = STATE(341), + [sym_list_marker_task] = STATE(37), + [sym__list_definition] = STATE(200), + [sym__list_item_definition] = STATE(494), + [sym__list_decimal_period] = STATE(200), + [sym__list_item_decimal_period] = STATE(477), + [sym__list_decimal_paren] = STATE(200), + [sym__list_item_decimal_paren] = STATE(508), + [sym__list_decimal_parens] = STATE(200), + [sym__list_item_decimal_parens] = STATE(519), + [sym__list_lower_alpha_period] = STATE(200), + [sym__list_item_lower_alpha_period] = STATE(520), + [sym__list_lower_alpha_paren] = STATE(200), + [sym__list_item_lower_alpha_paren] = STATE(521), + [sym__list_lower_alpha_parens] = STATE(200), + [sym__list_item_lower_alpha_parens] = STATE(523), + [sym__list_upper_alpha_period] = STATE(200), + [sym__list_item_upper_alpha_period] = STATE(524), + [sym__list_upper_alpha_paren] = STATE(200), + [sym__list_item_upper_alpha_paren] = STATE(527), + [sym__list_upper_alpha_parens] = STATE(200), + [sym__list_item_upper_alpha_parens] = STATE(528), + [sym__list_lower_roman_period] = STATE(200), + [sym__list_item_lower_roman_period] = STATE(529), + [sym__list_lower_roman_paren] = STATE(200), + [sym__list_item_lower_roman_paren] = STATE(530), + [sym__list_lower_roman_parens] = STATE(200), + [sym__list_item_lower_roman_parens] = STATE(532), + [sym__list_upper_roman_period] = STATE(200), + [sym__list_item_upper_roman_period] = STATE(539), + [sym__list_upper_roman_paren] = STATE(200), + [sym__list_item_upper_roman_paren] = STATE(470), + [sym__list_upper_roman_parens] = STATE(200), + [sym__list_item_upper_roman_parens] = STATE(510), + [sym_table] = STATE(136), + [sym__table_content] = STATE(60), + [sym_table_separator] = STATE(60), + [sym_table_row] = STATE(67), + [sym_footnote] = STATE(136), + [sym_footnote_content] = STATE(991), + [sym_div] = STATE(136), + [sym_div_marker_begin] = STATE(976), + [sym_code_block] = STATE(136), + [sym_raw_block] = STATE(136), + [sym_thematic_break] = STATE(136), + [sym_block_quote] = STATE(136), + [sym__block_quote_prefix] = STATE(445), + [sym_link_reference_definition] = STATE(136), + [sym_block_attribute] = STATE(136), + [sym__paragraph] = STATE(136), + [sym__paragraph_content] = STATE(829), + [sym__inline] = STATE(683), + [sym__symbol_fallback] = STATE(329), + [aux_sym__list_dash_repeat1] = STATE(382), + [aux_sym__list_plus_repeat1] = STATE(383), + [aux_sym__list_star_repeat1] = STATE(385), + [aux_sym__list_task_repeat1] = STATE(341), + [aux_sym__list_definition_repeat1] = STATE(494), + [aux_sym__list_decimal_period_repeat1] = STATE(477), + [aux_sym__list_decimal_paren_repeat1] = STATE(508), + [aux_sym__list_decimal_parens_repeat1] = STATE(519), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(520), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(521), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(523), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(524), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(527), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(528), + [aux_sym__list_lower_roman_period_repeat1] = STATE(529), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(530), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(532), + [aux_sym__list_upper_roman_period_repeat1] = STATE(539), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(470), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(510), + [aux_sym_table_repeat1] = STATE(60), + [aux_sym_footnote_content_repeat1] = STATE(17), + [aux_sym__block_quote_prefix_repeat1] = STATE(397), + [aux_sym__inline_repeat1] = STATE(329), + [anon_sym_LBRACK] = ACTIONS(227), + [anon_sym_PIPE] = ACTIONS(229), + [anon_sym_LBRACE] = ACTIONS(231), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [sym__newline] = ACTIONS(233), + [sym__heading_begin] = ACTIONS(235), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(237), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(239), + [sym__block_quote_continuation] = ACTIONS(65), + [sym__thematic_break_dash] = ACTIONS(241), + [sym__thematic_break_star] = ACTIONS(241), + [sym__footnote_begin] = ACTIONS(243), + }, + [28] = { + [sym__block_with_heading] = STATE(221), + [sym__block_element] = STATE(221), + [sym_heading] = STATE(221), + [sym_list] = STATE(221), + [sym__list_dash] = STATE(254), + [sym__list_item_dash] = STATE(391), + [sym__list_plus] = STATE(254), + [sym__list_item_plus] = STATE(390), + [sym__list_star] = STATE(254), + [sym__list_item_star] = STATE(389), + [sym__list_task] = STATE(254), + [sym__list_item_task] = STATE(340), + [sym_list_marker_task] = STATE(37), + [sym__list_definition] = STATE(254), + [sym__list_item_definition] = STATE(517), + [sym__list_decimal_period] = STATE(254), + [sym__list_item_decimal_period] = STATE(515), + [sym__list_decimal_paren] = STATE(254), + [sym__list_item_decimal_paren] = STATE(493), + [sym__list_decimal_parens] = STATE(254), + [sym__list_item_decimal_parens] = STATE(490), + [sym__list_lower_alpha_period] = STATE(254), + [sym__list_item_lower_alpha_period] = STATE(486), + [sym__list_lower_alpha_paren] = STATE(254), + [sym__list_item_lower_alpha_paren] = STATE(485), + [sym__list_lower_alpha_parens] = STATE(254), + [sym__list_item_lower_alpha_parens] = STATE(483), + [sym__list_upper_alpha_period] = STATE(254), + [sym__list_item_upper_alpha_period] = STATE(482), + [sym__list_upper_alpha_paren] = STATE(254), + [sym__list_item_upper_alpha_paren] = STATE(481), + [sym__list_upper_alpha_parens] = STATE(254), + [sym__list_item_upper_alpha_parens] = STATE(480), + [sym__list_lower_roman_period] = STATE(254), + [sym__list_item_lower_roman_period] = STATE(479), + [sym__list_lower_roman_paren] = STATE(254), + [sym__list_item_lower_roman_paren] = STATE(476), + [sym__list_lower_roman_parens] = STATE(254), + [sym__list_item_lower_roman_parens] = STATE(475), + [sym__list_upper_roman_period] = STATE(254), + [sym__list_item_upper_roman_period] = STATE(472), + [sym__list_upper_roman_paren] = STATE(254), + [sym__list_item_upper_roman_paren] = STATE(513), + [sym__list_upper_roman_parens] = STATE(254), + [sym__list_item_upper_roman_parens] = STATE(507), + [sym_table] = STATE(221), + [sym__table_content] = STATE(62), + [sym_table_separator] = STATE(62), + [sym_table_row] = STATE(68), + [sym_footnote] = STATE(221), + [sym_div] = STATE(221), + [sym_div_marker_begin] = STATE(956), + [sym_code_block] = STATE(221), + [sym_raw_block] = STATE(221), + [sym_thematic_break] = STATE(221), + [sym_block_quote] = STATE(221), + [sym__block_quote_prefix] = STATE(380), + [sym_link_reference_definition] = STATE(221), + [sym_block_attribute] = STATE(221), + [sym__paragraph] = STATE(221), + [sym__paragraph_content] = STATE(774), + [sym__inline] = STATE(683), + [sym__symbol_fallback] = STATE(329), + [aux_sym__list_dash_repeat1] = STATE(391), + [aux_sym__list_plus_repeat1] = STATE(390), + [aux_sym__list_star_repeat1] = STATE(389), + [aux_sym__list_task_repeat1] = STATE(340), + [aux_sym__list_definition_repeat1] = STATE(517), + [aux_sym__list_decimal_period_repeat1] = STATE(515), + [aux_sym__list_decimal_paren_repeat1] = STATE(493), + [aux_sym__list_decimal_parens_repeat1] = STATE(490), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(486), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(485), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(483), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(482), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(481), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(480), + [aux_sym__list_lower_roman_period_repeat1] = STATE(479), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(476), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(475), + [aux_sym__list_upper_roman_period_repeat1] = STATE(472), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(513), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(507), + [aux_sym_table_repeat1] = STATE(62), + [aux_sym_footnote_content_repeat1] = STATE(26), + [aux_sym__block_quote_prefix_repeat1] = STATE(349), + [aux_sym__inline_repeat1] = STATE(329), + [anon_sym_LBRACK] = ACTIONS(75), + [anon_sym_PIPE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [sym__block_close] = ACTIONS(388), + [sym__newline] = ACTIONS(223), + [sym__heading_begin] = ACTIONS(17), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(85), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(87), + [sym__block_quote_continuation] = ACTIONS(225), + [sym__thematic_break_dash] = ACTIONS(89), + [sym__thematic_break_star] = ACTIONS(89), + [sym__footnote_begin] = ACTIONS(91), + }, + [29] = { + [sym__block_with_heading] = STATE(417), + [sym__block_element] = STATE(417), + [sym_heading] = STATE(417), + [sym_list] = STATE(417), + [sym__list_dash] = STATE(665), + [sym__list_item_dash] = STATE(364), + [sym__list_plus] = STATE(665), + [sym__list_item_plus] = STATE(384), + [sym__list_star] = STATE(665), + [sym__list_item_star] = STATE(386), + [sym__list_task] = STATE(665), + [sym__list_item_task] = STATE(333), + [sym_list_marker_task] = STATE(37), + [sym__list_definition] = STATE(665), + [sym__list_item_definition] = STATE(509), + [sym__list_decimal_period] = STATE(665), + [sym__list_item_decimal_period] = STATE(506), + [sym__list_decimal_paren] = STATE(665), + [sym__list_item_decimal_paren] = STATE(504), + [sym__list_decimal_parens] = STATE(665), + [sym__list_item_decimal_parens] = STATE(502), + [sym__list_lower_alpha_period] = STATE(665), + [sym__list_item_lower_alpha_period] = STATE(500), + [sym__list_lower_alpha_paren] = STATE(665), + [sym__list_item_lower_alpha_paren] = STATE(499), + [sym__list_lower_alpha_parens] = STATE(665), + [sym__list_item_lower_alpha_parens] = STATE(498), + [sym__list_upper_alpha_period] = STATE(665), + [sym__list_item_upper_alpha_period] = STATE(497), + [sym__list_upper_alpha_paren] = STATE(665), + [sym__list_item_upper_alpha_paren] = STATE(496), + [sym__list_upper_alpha_parens] = STATE(665), + [sym__list_item_upper_alpha_parens] = STATE(495), + [sym__list_lower_roman_period] = STATE(665), + [sym__list_item_lower_roman_period] = STATE(492), + [sym__list_lower_roman_paren] = STATE(665), + [sym__list_item_lower_roman_paren] = STATE(491), + [sym__list_lower_roman_parens] = STATE(665), + [sym__list_item_lower_roman_parens] = STATE(487), + [sym__list_upper_roman_period] = STATE(665), + [sym__list_item_upper_roman_period] = STATE(484), + [sym__list_upper_roman_paren] = STATE(665), + [sym__list_item_upper_roman_paren] = STATE(478), + [sym__list_upper_roman_parens] = STATE(665), + [sym__list_item_upper_roman_parens] = STATE(474), + [sym_list_item_content] = STATE(730), + [sym_table] = STATE(417), + [sym__table_content] = STATE(267), + [sym_table_separator] = STATE(267), + [sym_table_row] = STATE(327), + [sym_footnote] = STATE(417), + [sym_div] = STATE(417), + [sym_div_marker_begin] = STATE(914), + [sym_code_block] = STATE(417), + [sym_raw_block] = STATE(417), + [sym_thematic_break] = STATE(417), + [sym_block_quote] = STATE(417), + [sym__block_quote_prefix] = STATE(431), + [sym_link_reference_definition] = STATE(417), + [sym_block_attribute] = STATE(417), + [sym__paragraph] = STATE(417), + [sym__paragraph_content] = STATE(696), + [sym__inline] = STATE(683), + [sym__symbol_fallback] = STATE(329), + [aux_sym__list_dash_repeat1] = STATE(364), + [aux_sym__list_plus_repeat1] = STATE(384), + [aux_sym__list_star_repeat1] = STATE(386), + [aux_sym__list_task_repeat1] = STATE(333), + [aux_sym__list_definition_repeat1] = STATE(509), + [aux_sym__list_decimal_period_repeat1] = STATE(506), + [aux_sym__list_decimal_paren_repeat1] = STATE(504), + [aux_sym__list_decimal_parens_repeat1] = STATE(502), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(500), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(499), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(498), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(497), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(496), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(495), + [aux_sym__list_lower_roman_period_repeat1] = STATE(492), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(491), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(487), + [aux_sym__list_upper_roman_period_repeat1] = STATE(484), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(478), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym_table_repeat1] = STATE(267), + [aux_sym__block_quote_prefix_repeat1] = STATE(397), + [aux_sym__inline_repeat1] = STATE(329), + [anon_sym_LBRACK] = ACTIONS(390), + [anon_sym_PIPE] = ACTIONS(392), + [anon_sym_LBRACE] = ACTIONS(394), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [sym__newline] = ACTIONS(396), + [sym__heading_begin] = ACTIONS(398), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(400), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(402), + [sym__block_quote_continuation] = ACTIONS(65), + [sym__thematic_break_dash] = ACTIONS(404), + [sym__thematic_break_star] = ACTIONS(404), + [sym__footnote_begin] = ACTIONS(406), + }, + [30] = { + [sym__block_with_heading] = STATE(416), + [sym__block_element] = STATE(416), + [sym_heading] = STATE(416), + [sym_list] = STATE(416), + [sym__list_dash] = STATE(665), + [sym__list_item_dash] = STATE(364), + [sym__list_plus] = STATE(665), + [sym__list_item_plus] = STATE(384), + [sym__list_star] = STATE(665), + [sym__list_item_star] = STATE(386), + [sym__list_task] = STATE(665), + [sym__list_item_task] = STATE(333), + [sym_list_marker_task] = STATE(37), + [sym__list_definition] = STATE(665), + [sym__list_item_definition] = STATE(509), + [sym__list_decimal_period] = STATE(665), + [sym__list_item_decimal_period] = STATE(506), + [sym__list_decimal_paren] = STATE(665), + [sym__list_item_decimal_paren] = STATE(504), + [sym__list_decimal_parens] = STATE(665), + [sym__list_item_decimal_parens] = STATE(502), + [sym__list_lower_alpha_period] = STATE(665), + [sym__list_item_lower_alpha_period] = STATE(500), + [sym__list_lower_alpha_paren] = STATE(665), + [sym__list_item_lower_alpha_paren] = STATE(499), + [sym__list_lower_alpha_parens] = STATE(665), + [sym__list_item_lower_alpha_parens] = STATE(498), + [sym__list_upper_alpha_period] = STATE(665), + [sym__list_item_upper_alpha_period] = STATE(497), + [sym__list_upper_alpha_paren] = STATE(665), + [sym__list_item_upper_alpha_paren] = STATE(496), + [sym__list_upper_alpha_parens] = STATE(665), + [sym__list_item_upper_alpha_parens] = STATE(495), + [sym__list_lower_roman_period] = STATE(665), + [sym__list_item_lower_roman_period] = STATE(492), + [sym__list_lower_roman_paren] = STATE(665), + [sym__list_item_lower_roman_paren] = STATE(491), + [sym__list_lower_roman_parens] = STATE(665), + [sym__list_item_lower_roman_parens] = STATE(487), + [sym__list_upper_roman_period] = STATE(665), + [sym__list_item_upper_roman_period] = STATE(484), + [sym__list_upper_roman_paren] = STATE(665), + [sym__list_item_upper_roman_paren] = STATE(478), + [sym__list_upper_roman_parens] = STATE(665), + [sym__list_item_upper_roman_parens] = STATE(474), + [sym_list_item_content] = STATE(632), + [sym_table] = STATE(416), + [sym__table_content] = STATE(267), + [sym_table_separator] = STATE(267), + [sym_table_row] = STATE(327), + [sym_footnote] = STATE(416), + [sym_div] = STATE(416), + [sym_div_marker_begin] = STATE(914), + [sym_code_block] = STATE(416), + [sym_raw_block] = STATE(416), + [sym_thematic_break] = STATE(416), + [sym_block_quote] = STATE(416), + [sym__block_quote_prefix] = STATE(431), + [sym_link_reference_definition] = STATE(416), + [sym_block_attribute] = STATE(416), + [sym__paragraph] = STATE(416), + [sym__paragraph_content] = STATE(696), + [sym__inline] = STATE(683), + [sym__symbol_fallback] = STATE(329), + [aux_sym__list_dash_repeat1] = STATE(364), + [aux_sym__list_plus_repeat1] = STATE(384), + [aux_sym__list_star_repeat1] = STATE(386), + [aux_sym__list_task_repeat1] = STATE(333), + [aux_sym__list_definition_repeat1] = STATE(509), + [aux_sym__list_decimal_period_repeat1] = STATE(506), + [aux_sym__list_decimal_paren_repeat1] = STATE(504), + [aux_sym__list_decimal_parens_repeat1] = STATE(502), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(500), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(499), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(498), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(497), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(496), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(495), + [aux_sym__list_lower_roman_period_repeat1] = STATE(492), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(491), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(487), + [aux_sym__list_upper_roman_period_repeat1] = STATE(484), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(478), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym_table_repeat1] = STATE(267), + [aux_sym__block_quote_prefix_repeat1] = STATE(397), + [aux_sym__inline_repeat1] = STATE(329), + [anon_sym_LBRACK] = ACTIONS(390), + [anon_sym_PIPE] = ACTIONS(392), + [anon_sym_LBRACE] = ACTIONS(394), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [sym__newline] = ACTIONS(408), + [sym__heading_begin] = ACTIONS(398), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(400), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(402), + [sym__block_quote_continuation] = ACTIONS(65), + [sym__thematic_break_dash] = ACTIONS(404), + [sym__thematic_break_star] = ACTIONS(404), + [sym__footnote_begin] = ACTIONS(406), + }, + [31] = { + [sym__block_with_heading] = STATE(416), + [sym__block_element] = STATE(416), + [sym_heading] = STATE(416), + [sym_list] = STATE(416), + [sym__list_dash] = STATE(665), + [sym__list_item_dash] = STATE(364), + [sym__list_plus] = STATE(665), + [sym__list_item_plus] = STATE(384), + [sym__list_star] = STATE(665), + [sym__list_item_star] = STATE(386), + [sym__list_task] = STATE(665), + [sym__list_item_task] = STATE(333), + [sym_list_marker_task] = STATE(37), + [sym__list_definition] = STATE(665), + [sym__list_item_definition] = STATE(509), + [sym__list_decimal_period] = STATE(665), + [sym__list_item_decimal_period] = STATE(506), + [sym__list_decimal_paren] = STATE(665), + [sym__list_item_decimal_paren] = STATE(504), + [sym__list_decimal_parens] = STATE(665), + [sym__list_item_decimal_parens] = STATE(502), + [sym__list_lower_alpha_period] = STATE(665), + [sym__list_item_lower_alpha_period] = STATE(500), + [sym__list_lower_alpha_paren] = STATE(665), + [sym__list_item_lower_alpha_paren] = STATE(499), + [sym__list_lower_alpha_parens] = STATE(665), + [sym__list_item_lower_alpha_parens] = STATE(498), + [sym__list_upper_alpha_period] = STATE(665), + [sym__list_item_upper_alpha_period] = STATE(497), + [sym__list_upper_alpha_paren] = STATE(665), + [sym__list_item_upper_alpha_paren] = STATE(496), + [sym__list_upper_alpha_parens] = STATE(665), + [sym__list_item_upper_alpha_parens] = STATE(495), + [sym__list_lower_roman_period] = STATE(665), + [sym__list_item_lower_roman_period] = STATE(492), + [sym__list_lower_roman_paren] = STATE(665), + [sym__list_item_lower_roman_paren] = STATE(491), + [sym__list_lower_roman_parens] = STATE(665), + [sym__list_item_lower_roman_parens] = STATE(487), + [sym__list_upper_roman_period] = STATE(665), + [sym__list_item_upper_roman_period] = STATE(484), + [sym__list_upper_roman_paren] = STATE(665), + [sym__list_item_upper_roman_paren] = STATE(478), + [sym__list_upper_roman_parens] = STATE(665), + [sym__list_item_upper_roman_parens] = STATE(474), + [sym_list_item_content] = STATE(630), + [sym_table] = STATE(416), + [sym__table_content] = STATE(267), + [sym_table_separator] = STATE(267), + [sym_table_row] = STATE(327), + [sym_footnote] = STATE(416), + [sym_div] = STATE(416), + [sym_div_marker_begin] = STATE(914), + [sym_code_block] = STATE(416), + [sym_raw_block] = STATE(416), + [sym_thematic_break] = STATE(416), + [sym_block_quote] = STATE(416), + [sym__block_quote_prefix] = STATE(431), + [sym_link_reference_definition] = STATE(416), + [sym_block_attribute] = STATE(416), + [sym__paragraph] = STATE(416), + [sym__paragraph_content] = STATE(696), + [sym__inline] = STATE(683), + [sym__symbol_fallback] = STATE(329), + [aux_sym__list_dash_repeat1] = STATE(364), + [aux_sym__list_plus_repeat1] = STATE(384), + [aux_sym__list_star_repeat1] = STATE(386), + [aux_sym__list_task_repeat1] = STATE(333), + [aux_sym__list_definition_repeat1] = STATE(509), + [aux_sym__list_decimal_period_repeat1] = STATE(506), + [aux_sym__list_decimal_paren_repeat1] = STATE(504), + [aux_sym__list_decimal_parens_repeat1] = STATE(502), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(500), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(499), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(498), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(497), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(496), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(495), + [aux_sym__list_lower_roman_period_repeat1] = STATE(492), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(491), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(487), + [aux_sym__list_upper_roman_period_repeat1] = STATE(484), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(478), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym_table_repeat1] = STATE(267), + [aux_sym__block_quote_prefix_repeat1] = STATE(397), + [aux_sym__inline_repeat1] = STATE(329), + [anon_sym_LBRACK] = ACTIONS(390), + [anon_sym_PIPE] = ACTIONS(392), + [anon_sym_LBRACE] = ACTIONS(394), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [sym__newline] = ACTIONS(408), + [sym__heading_begin] = ACTIONS(398), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(400), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(402), + [sym__block_quote_continuation] = ACTIONS(65), + [sym__thematic_break_dash] = ACTIONS(404), + [sym__thematic_break_star] = ACTIONS(404), + [sym__footnote_begin] = ACTIONS(406), + }, + [32] = { + [sym__block_with_heading] = STATE(419), + [sym__block_element] = STATE(419), + [sym_heading] = STATE(419), + [sym_list] = STATE(419), + [sym__list_dash] = STATE(665), + [sym__list_item_dash] = STATE(364), + [sym__list_plus] = STATE(665), + [sym__list_item_plus] = STATE(384), + [sym__list_star] = STATE(665), + [sym__list_item_star] = STATE(386), + [sym__list_task] = STATE(665), + [sym__list_item_task] = STATE(333), + [sym_list_marker_task] = STATE(37), + [sym__list_definition] = STATE(665), + [sym__list_item_definition] = STATE(509), + [sym__list_decimal_period] = STATE(665), + [sym__list_item_decimal_period] = STATE(506), + [sym__list_decimal_paren] = STATE(665), + [sym__list_item_decimal_paren] = STATE(504), + [sym__list_decimal_parens] = STATE(665), + [sym__list_item_decimal_parens] = STATE(502), + [sym__list_lower_alpha_period] = STATE(665), + [sym__list_item_lower_alpha_period] = STATE(500), + [sym__list_lower_alpha_paren] = STATE(665), + [sym__list_item_lower_alpha_paren] = STATE(499), + [sym__list_lower_alpha_parens] = STATE(665), + [sym__list_item_lower_alpha_parens] = STATE(498), + [sym__list_upper_alpha_period] = STATE(665), + [sym__list_item_upper_alpha_period] = STATE(497), + [sym__list_upper_alpha_paren] = STATE(665), + [sym__list_item_upper_alpha_paren] = STATE(496), + [sym__list_upper_alpha_parens] = STATE(665), + [sym__list_item_upper_alpha_parens] = STATE(495), + [sym__list_lower_roman_period] = STATE(665), + [sym__list_item_lower_roman_period] = STATE(492), + [sym__list_lower_roman_paren] = STATE(665), + [sym__list_item_lower_roman_paren] = STATE(491), + [sym__list_lower_roman_parens] = STATE(665), + [sym__list_item_lower_roman_parens] = STATE(487), + [sym__list_upper_roman_period] = STATE(665), + [sym__list_item_upper_roman_period] = STATE(484), + [sym__list_upper_roman_paren] = STATE(665), + [sym__list_item_upper_roman_paren] = STATE(478), + [sym__list_upper_roman_parens] = STATE(665), + [sym__list_item_upper_roman_parens] = STATE(474), + [sym_list_item_content] = STATE(636), + [sym_table] = STATE(419), + [sym__table_content] = STATE(267), + [sym_table_separator] = STATE(267), + [sym_table_row] = STATE(327), + [sym_footnote] = STATE(419), + [sym_div] = STATE(419), + [sym_div_marker_begin] = STATE(914), + [sym_code_block] = STATE(419), + [sym_raw_block] = STATE(419), + [sym_thematic_break] = STATE(419), + [sym_block_quote] = STATE(419), + [sym__block_quote_prefix] = STATE(431), + [sym_link_reference_definition] = STATE(419), + [sym_block_attribute] = STATE(419), + [sym__paragraph] = STATE(419), + [sym__paragraph_content] = STATE(696), + [sym__inline] = STATE(683), + [sym__symbol_fallback] = STATE(329), + [aux_sym__list_dash_repeat1] = STATE(364), + [aux_sym__list_plus_repeat1] = STATE(384), + [aux_sym__list_star_repeat1] = STATE(386), + [aux_sym__list_task_repeat1] = STATE(333), + [aux_sym__list_definition_repeat1] = STATE(509), + [aux_sym__list_decimal_period_repeat1] = STATE(506), + [aux_sym__list_decimal_paren_repeat1] = STATE(504), + [aux_sym__list_decimal_parens_repeat1] = STATE(502), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(500), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(499), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(498), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(497), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(496), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(495), + [aux_sym__list_lower_roman_period_repeat1] = STATE(492), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(491), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(487), + [aux_sym__list_upper_roman_period_repeat1] = STATE(484), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(478), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym_table_repeat1] = STATE(267), + [aux_sym__block_quote_prefix_repeat1] = STATE(397), + [aux_sym__inline_repeat1] = STATE(329), + [anon_sym_LBRACK] = ACTIONS(390), + [anon_sym_PIPE] = ACTIONS(392), + [anon_sym_LBRACE] = ACTIONS(394), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [sym__newline] = ACTIONS(410), + [sym__heading_begin] = ACTIONS(398), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(400), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(402), + [sym__block_quote_continuation] = ACTIONS(65), + [sym__thematic_break_dash] = ACTIONS(404), + [sym__thematic_break_star] = ACTIONS(404), + [sym__footnote_begin] = ACTIONS(406), + }, + [33] = { + [sym__block_with_heading] = STATE(449), + [sym__block_element] = STATE(449), + [sym_heading] = STATE(449), + [sym_list] = STATE(449), + [sym__list_dash] = STATE(665), + [sym__list_item_dash] = STATE(364), + [sym__list_plus] = STATE(665), + [sym__list_item_plus] = STATE(384), + [sym__list_star] = STATE(665), + [sym__list_item_star] = STATE(386), + [sym__list_task] = STATE(665), + [sym__list_item_task] = STATE(333), + [sym_list_marker_task] = STATE(37), + [sym__list_definition] = STATE(665), + [sym__list_item_definition] = STATE(509), + [sym__list_decimal_period] = STATE(665), + [sym__list_item_decimal_period] = STATE(506), + [sym__list_decimal_paren] = STATE(665), + [sym__list_item_decimal_paren] = STATE(504), + [sym__list_decimal_parens] = STATE(665), + [sym__list_item_decimal_parens] = STATE(502), + [sym__list_lower_alpha_period] = STATE(665), + [sym__list_item_lower_alpha_period] = STATE(500), + [sym__list_lower_alpha_paren] = STATE(665), + [sym__list_item_lower_alpha_paren] = STATE(499), + [sym__list_lower_alpha_parens] = STATE(665), + [sym__list_item_lower_alpha_parens] = STATE(498), + [sym__list_upper_alpha_period] = STATE(665), + [sym__list_item_upper_alpha_period] = STATE(497), + [sym__list_upper_alpha_paren] = STATE(665), + [sym__list_item_upper_alpha_paren] = STATE(496), + [sym__list_upper_alpha_parens] = STATE(665), + [sym__list_item_upper_alpha_parens] = STATE(495), + [sym__list_lower_roman_period] = STATE(665), + [sym__list_item_lower_roman_period] = STATE(492), + [sym__list_lower_roman_paren] = STATE(665), + [sym__list_item_lower_roman_paren] = STATE(491), + [sym__list_lower_roman_parens] = STATE(665), + [sym__list_item_lower_roman_parens] = STATE(487), + [sym__list_upper_roman_period] = STATE(665), + [sym__list_item_upper_roman_period] = STATE(484), + [sym__list_upper_roman_paren] = STATE(665), + [sym__list_item_upper_roman_paren] = STATE(478), + [sym__list_upper_roman_parens] = STATE(665), + [sym__list_item_upper_roman_parens] = STATE(474), + [sym_list_item_content] = STATE(637), + [sym_table] = STATE(449), + [sym__table_content] = STATE(267), + [sym_table_separator] = STATE(267), + [sym_table_row] = STATE(327), + [sym_footnote] = STATE(449), + [sym_div] = STATE(449), + [sym_div_marker_begin] = STATE(914), + [sym_code_block] = STATE(449), + [sym_raw_block] = STATE(449), + [sym_thematic_break] = STATE(449), + [sym_block_quote] = STATE(449), + [sym__block_quote_prefix] = STATE(431), + [sym_link_reference_definition] = STATE(449), + [sym_block_attribute] = STATE(449), + [sym__paragraph] = STATE(449), + [sym__paragraph_content] = STATE(696), + [sym__inline] = STATE(683), + [sym__symbol_fallback] = STATE(329), + [aux_sym__list_dash_repeat1] = STATE(364), + [aux_sym__list_plus_repeat1] = STATE(384), + [aux_sym__list_star_repeat1] = STATE(386), + [aux_sym__list_task_repeat1] = STATE(333), + [aux_sym__list_definition_repeat1] = STATE(509), + [aux_sym__list_decimal_period_repeat1] = STATE(506), + [aux_sym__list_decimal_paren_repeat1] = STATE(504), + [aux_sym__list_decimal_parens_repeat1] = STATE(502), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(500), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(499), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(498), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(497), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(496), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(495), + [aux_sym__list_lower_roman_period_repeat1] = STATE(492), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(491), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(487), + [aux_sym__list_upper_roman_period_repeat1] = STATE(484), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(478), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym_table_repeat1] = STATE(267), + [aux_sym__block_quote_prefix_repeat1] = STATE(397), + [aux_sym__inline_repeat1] = STATE(329), + [anon_sym_LBRACK] = ACTIONS(390), + [anon_sym_PIPE] = ACTIONS(392), + [anon_sym_LBRACE] = ACTIONS(394), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [sym__newline] = ACTIONS(412), + [sym__heading_begin] = ACTIONS(398), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(400), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(402), + [sym__block_quote_continuation] = ACTIONS(65), + [sym__thematic_break_dash] = ACTIONS(404), + [sym__thematic_break_star] = ACTIONS(404), + [sym__footnote_begin] = ACTIONS(406), + }, + [34] = { + [sym__block_with_heading] = STATE(456), + [sym__block_element] = STATE(456), + [sym_heading] = STATE(456), + [sym_list] = STATE(456), + [sym__list_dash] = STATE(665), + [sym__list_item_dash] = STATE(364), + [sym__list_plus] = STATE(665), + [sym__list_item_plus] = STATE(384), + [sym__list_star] = STATE(665), + [sym__list_item_star] = STATE(386), + [sym__list_task] = STATE(665), + [sym__list_item_task] = STATE(333), + [sym_list_marker_task] = STATE(37), + [sym__list_definition] = STATE(665), + [sym__list_item_definition] = STATE(509), + [sym__list_decimal_period] = STATE(665), + [sym__list_item_decimal_period] = STATE(506), + [sym__list_decimal_paren] = STATE(665), + [sym__list_item_decimal_paren] = STATE(504), + [sym__list_decimal_parens] = STATE(665), + [sym__list_item_decimal_parens] = STATE(502), + [sym__list_lower_alpha_period] = STATE(665), + [sym__list_item_lower_alpha_period] = STATE(500), + [sym__list_lower_alpha_paren] = STATE(665), + [sym__list_item_lower_alpha_paren] = STATE(499), + [sym__list_lower_alpha_parens] = STATE(665), + [sym__list_item_lower_alpha_parens] = STATE(498), + [sym__list_upper_alpha_period] = STATE(665), + [sym__list_item_upper_alpha_period] = STATE(497), + [sym__list_upper_alpha_paren] = STATE(665), + [sym__list_item_upper_alpha_paren] = STATE(496), + [sym__list_upper_alpha_parens] = STATE(665), + [sym__list_item_upper_alpha_parens] = STATE(495), + [sym__list_lower_roman_period] = STATE(665), + [sym__list_item_lower_roman_period] = STATE(492), + [sym__list_lower_roman_paren] = STATE(665), + [sym__list_item_lower_roman_paren] = STATE(491), + [sym__list_lower_roman_parens] = STATE(665), + [sym__list_item_lower_roman_parens] = STATE(487), + [sym__list_upper_roman_period] = STATE(665), + [sym__list_item_upper_roman_period] = STATE(484), + [sym__list_upper_roman_paren] = STATE(665), + [sym__list_item_upper_roman_paren] = STATE(478), + [sym__list_upper_roman_parens] = STATE(665), + [sym__list_item_upper_roman_parens] = STATE(474), + [sym_list_item_content] = STATE(859), + [sym_table] = STATE(456), + [sym__table_content] = STATE(267), + [sym_table_separator] = STATE(267), + [sym_table_row] = STATE(327), + [sym_footnote] = STATE(456), + [sym_div] = STATE(456), + [sym_div_marker_begin] = STATE(914), + [sym_code_block] = STATE(456), + [sym_raw_block] = STATE(456), + [sym_thematic_break] = STATE(456), + [sym_block_quote] = STATE(456), + [sym__block_quote_prefix] = STATE(431), + [sym_link_reference_definition] = STATE(456), + [sym_block_attribute] = STATE(456), + [sym__paragraph] = STATE(456), + [sym__paragraph_content] = STATE(696), + [sym__inline] = STATE(683), + [sym__symbol_fallback] = STATE(329), + [aux_sym__list_dash_repeat1] = STATE(364), + [aux_sym__list_plus_repeat1] = STATE(384), + [aux_sym__list_star_repeat1] = STATE(386), + [aux_sym__list_task_repeat1] = STATE(333), + [aux_sym__list_definition_repeat1] = STATE(509), + [aux_sym__list_decimal_period_repeat1] = STATE(506), + [aux_sym__list_decimal_paren_repeat1] = STATE(504), + [aux_sym__list_decimal_parens_repeat1] = STATE(502), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(500), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(499), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(498), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(497), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(496), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(495), + [aux_sym__list_lower_roman_period_repeat1] = STATE(492), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(491), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(487), + [aux_sym__list_upper_roman_period_repeat1] = STATE(484), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(478), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym_table_repeat1] = STATE(267), + [aux_sym__block_quote_prefix_repeat1] = STATE(397), + [aux_sym__inline_repeat1] = STATE(329), + [anon_sym_LBRACK] = ACTIONS(390), + [anon_sym_PIPE] = ACTIONS(392), + [anon_sym_LBRACE] = ACTIONS(394), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [sym__newline] = ACTIONS(414), + [sym__heading_begin] = ACTIONS(398), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(400), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(402), + [sym__block_quote_continuation] = ACTIONS(65), + [sym__thematic_break_dash] = ACTIONS(404), + [sym__thematic_break_star] = ACTIONS(404), + [sym__footnote_begin] = ACTIONS(406), + }, + [35] = { + [sym__block_with_heading] = STATE(448), + [sym__block_element] = STATE(448), + [sym_heading] = STATE(448), + [sym_list] = STATE(448), + [sym__list_dash] = STATE(665), + [sym__list_item_dash] = STATE(364), + [sym__list_plus] = STATE(665), + [sym__list_item_plus] = STATE(384), + [sym__list_star] = STATE(665), + [sym__list_item_star] = STATE(386), + [sym__list_task] = STATE(665), + [sym__list_item_task] = STATE(333), + [sym_list_marker_task] = STATE(37), + [sym__list_definition] = STATE(665), + [sym__list_item_definition] = STATE(509), + [sym__list_decimal_period] = STATE(665), + [sym__list_item_decimal_period] = STATE(506), + [sym__list_decimal_paren] = STATE(665), + [sym__list_item_decimal_paren] = STATE(504), + [sym__list_decimal_parens] = STATE(665), + [sym__list_item_decimal_parens] = STATE(502), + [sym__list_lower_alpha_period] = STATE(665), + [sym__list_item_lower_alpha_period] = STATE(500), + [sym__list_lower_alpha_paren] = STATE(665), + [sym__list_item_lower_alpha_paren] = STATE(499), + [sym__list_lower_alpha_parens] = STATE(665), + [sym__list_item_lower_alpha_parens] = STATE(498), + [sym__list_upper_alpha_period] = STATE(665), + [sym__list_item_upper_alpha_period] = STATE(497), + [sym__list_upper_alpha_paren] = STATE(665), + [sym__list_item_upper_alpha_paren] = STATE(496), + [sym__list_upper_alpha_parens] = STATE(665), + [sym__list_item_upper_alpha_parens] = STATE(495), + [sym__list_lower_roman_period] = STATE(665), + [sym__list_item_lower_roman_period] = STATE(492), + [sym__list_lower_roman_paren] = STATE(665), + [sym__list_item_lower_roman_paren] = STATE(491), + [sym__list_lower_roman_parens] = STATE(665), + [sym__list_item_lower_roman_parens] = STATE(487), + [sym__list_upper_roman_period] = STATE(665), + [sym__list_item_upper_roman_period] = STATE(484), + [sym__list_upper_roman_paren] = STATE(665), + [sym__list_item_upper_roman_paren] = STATE(478), + [sym__list_upper_roman_parens] = STATE(665), + [sym__list_item_upper_roman_parens] = STATE(474), + [sym_list_item_content] = STATE(853), + [sym_table] = STATE(448), + [sym__table_content] = STATE(267), + [sym_table_separator] = STATE(267), + [sym_table_row] = STATE(327), + [sym_footnote] = STATE(448), + [sym_div] = STATE(448), + [sym_div_marker_begin] = STATE(914), + [sym_code_block] = STATE(448), + [sym_raw_block] = STATE(448), + [sym_thematic_break] = STATE(448), + [sym_block_quote] = STATE(448), + [sym__block_quote_prefix] = STATE(431), + [sym_link_reference_definition] = STATE(448), + [sym_block_attribute] = STATE(448), + [sym__paragraph] = STATE(448), + [sym__paragraph_content] = STATE(696), + [sym__inline] = STATE(683), + [sym__symbol_fallback] = STATE(329), + [aux_sym__list_dash_repeat1] = STATE(364), + [aux_sym__list_plus_repeat1] = STATE(384), + [aux_sym__list_star_repeat1] = STATE(386), + [aux_sym__list_task_repeat1] = STATE(333), + [aux_sym__list_definition_repeat1] = STATE(509), + [aux_sym__list_decimal_period_repeat1] = STATE(506), + [aux_sym__list_decimal_paren_repeat1] = STATE(504), + [aux_sym__list_decimal_parens_repeat1] = STATE(502), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(500), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(499), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(498), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(497), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(496), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(495), + [aux_sym__list_lower_roman_period_repeat1] = STATE(492), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(491), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(487), + [aux_sym__list_upper_roman_period_repeat1] = STATE(484), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(478), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym_table_repeat1] = STATE(267), + [aux_sym__block_quote_prefix_repeat1] = STATE(397), + [aux_sym__inline_repeat1] = STATE(329), + [anon_sym_LBRACK] = ACTIONS(390), + [anon_sym_PIPE] = ACTIONS(392), + [anon_sym_LBRACE] = ACTIONS(394), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [sym__newline] = ACTIONS(416), + [sym__heading_begin] = ACTIONS(398), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(400), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(402), + [sym__block_quote_continuation] = ACTIONS(65), + [sym__thematic_break_dash] = ACTIONS(404), + [sym__thematic_break_star] = ACTIONS(404), + [sym__footnote_begin] = ACTIONS(406), + }, + [36] = { + [sym__block_with_heading] = STATE(441), + [sym__block_element] = STATE(441), + [sym_heading] = STATE(441), + [sym_list] = STATE(441), + [sym__list_dash] = STATE(665), + [sym__list_item_dash] = STATE(364), + [sym__list_plus] = STATE(665), + [sym__list_item_plus] = STATE(384), + [sym__list_star] = STATE(665), + [sym__list_item_star] = STATE(386), + [sym__list_task] = STATE(665), + [sym__list_item_task] = STATE(333), + [sym_list_marker_task] = STATE(37), + [sym__list_definition] = STATE(665), + [sym__list_item_definition] = STATE(509), + [sym__list_decimal_period] = STATE(665), + [sym__list_item_decimal_period] = STATE(506), + [sym__list_decimal_paren] = STATE(665), + [sym__list_item_decimal_paren] = STATE(504), + [sym__list_decimal_parens] = STATE(665), + [sym__list_item_decimal_parens] = STATE(502), + [sym__list_lower_alpha_period] = STATE(665), + [sym__list_item_lower_alpha_period] = STATE(500), + [sym__list_lower_alpha_paren] = STATE(665), + [sym__list_item_lower_alpha_paren] = STATE(499), + [sym__list_lower_alpha_parens] = STATE(665), + [sym__list_item_lower_alpha_parens] = STATE(498), + [sym__list_upper_alpha_period] = STATE(665), + [sym__list_item_upper_alpha_period] = STATE(497), + [sym__list_upper_alpha_paren] = STATE(665), + [sym__list_item_upper_alpha_paren] = STATE(496), + [sym__list_upper_alpha_parens] = STATE(665), + [sym__list_item_upper_alpha_parens] = STATE(495), + [sym__list_lower_roman_period] = STATE(665), + [sym__list_item_lower_roman_period] = STATE(492), + [sym__list_lower_roman_paren] = STATE(665), + [sym__list_item_lower_roman_paren] = STATE(491), + [sym__list_lower_roman_parens] = STATE(665), + [sym__list_item_lower_roman_parens] = STATE(487), + [sym__list_upper_roman_period] = STATE(665), + [sym__list_item_upper_roman_period] = STATE(484), + [sym__list_upper_roman_paren] = STATE(665), + [sym__list_item_upper_roman_paren] = STATE(478), + [sym__list_upper_roman_parens] = STATE(665), + [sym__list_item_upper_roman_parens] = STATE(474), + [sym_list_item_content] = STATE(749), + [sym_table] = STATE(441), + [sym__table_content] = STATE(267), + [sym_table_separator] = STATE(267), + [sym_table_row] = STATE(327), + [sym_footnote] = STATE(441), + [sym_div] = STATE(441), + [sym_div_marker_begin] = STATE(914), + [sym_code_block] = STATE(441), + [sym_raw_block] = STATE(441), + [sym_thematic_break] = STATE(441), + [sym_block_quote] = STATE(441), + [sym__block_quote_prefix] = STATE(431), + [sym_link_reference_definition] = STATE(441), + [sym_block_attribute] = STATE(441), + [sym__paragraph] = STATE(441), + [sym__paragraph_content] = STATE(696), + [sym__inline] = STATE(683), + [sym__symbol_fallback] = STATE(329), + [aux_sym__list_dash_repeat1] = STATE(364), + [aux_sym__list_plus_repeat1] = STATE(384), + [aux_sym__list_star_repeat1] = STATE(386), + [aux_sym__list_task_repeat1] = STATE(333), + [aux_sym__list_definition_repeat1] = STATE(509), + [aux_sym__list_decimal_period_repeat1] = STATE(506), + [aux_sym__list_decimal_paren_repeat1] = STATE(504), + [aux_sym__list_decimal_parens_repeat1] = STATE(502), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(500), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(499), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(498), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(497), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(496), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(495), + [aux_sym__list_lower_roman_period_repeat1] = STATE(492), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(491), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(487), + [aux_sym__list_upper_roman_period_repeat1] = STATE(484), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(478), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym_table_repeat1] = STATE(267), + [aux_sym__block_quote_prefix_repeat1] = STATE(397), + [aux_sym__inline_repeat1] = STATE(329), + [anon_sym_LBRACK] = ACTIONS(390), + [anon_sym_PIPE] = ACTIONS(392), + [anon_sym_LBRACE] = ACTIONS(394), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [sym__newline] = ACTIONS(418), + [sym__heading_begin] = ACTIONS(398), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(400), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(402), + [sym__block_quote_continuation] = ACTIONS(65), + [sym__thematic_break_dash] = ACTIONS(404), + [sym__thematic_break_star] = ACTIONS(404), + [sym__footnote_begin] = ACTIONS(406), + }, + [37] = { + [sym__block_with_heading] = STATE(442), + [sym__block_element] = STATE(442), + [sym_heading] = STATE(442), + [sym_list] = STATE(442), + [sym__list_dash] = STATE(665), + [sym__list_item_dash] = STATE(364), + [sym__list_plus] = STATE(665), + [sym__list_item_plus] = STATE(384), + [sym__list_star] = STATE(665), + [sym__list_item_star] = STATE(386), + [sym__list_task] = STATE(665), + [sym__list_item_task] = STATE(333), + [sym_list_marker_task] = STATE(37), + [sym__list_definition] = STATE(665), + [sym__list_item_definition] = STATE(509), + [sym__list_decimal_period] = STATE(665), + [sym__list_item_decimal_period] = STATE(506), + [sym__list_decimal_paren] = STATE(665), + [sym__list_item_decimal_paren] = STATE(504), + [sym__list_decimal_parens] = STATE(665), + [sym__list_item_decimal_parens] = STATE(502), + [sym__list_lower_alpha_period] = STATE(665), + [sym__list_item_lower_alpha_period] = STATE(500), + [sym__list_lower_alpha_paren] = STATE(665), + [sym__list_item_lower_alpha_paren] = STATE(499), + [sym__list_lower_alpha_parens] = STATE(665), + [sym__list_item_lower_alpha_parens] = STATE(498), + [sym__list_upper_alpha_period] = STATE(665), + [sym__list_item_upper_alpha_period] = STATE(497), + [sym__list_upper_alpha_paren] = STATE(665), + [sym__list_item_upper_alpha_paren] = STATE(496), + [sym__list_upper_alpha_parens] = STATE(665), + [sym__list_item_upper_alpha_parens] = STATE(495), + [sym__list_lower_roman_period] = STATE(665), + [sym__list_item_lower_roman_period] = STATE(492), + [sym__list_lower_roman_paren] = STATE(665), + [sym__list_item_lower_roman_paren] = STATE(491), + [sym__list_lower_roman_parens] = STATE(665), + [sym__list_item_lower_roman_parens] = STATE(487), + [sym__list_upper_roman_period] = STATE(665), + [sym__list_item_upper_roman_period] = STATE(484), + [sym__list_upper_roman_paren] = STATE(665), + [sym__list_item_upper_roman_paren] = STATE(478), + [sym__list_upper_roman_parens] = STATE(665), + [sym__list_item_upper_roman_parens] = STATE(474), + [sym_list_item_content] = STATE(607), + [sym_table] = STATE(442), + [sym__table_content] = STATE(267), + [sym_table_separator] = STATE(267), + [sym_table_row] = STATE(327), + [sym_footnote] = STATE(442), + [sym_div] = STATE(442), + [sym_div_marker_begin] = STATE(914), + [sym_code_block] = STATE(442), + [sym_raw_block] = STATE(442), + [sym_thematic_break] = STATE(442), + [sym_block_quote] = STATE(442), + [sym__block_quote_prefix] = STATE(431), + [sym_link_reference_definition] = STATE(442), + [sym_block_attribute] = STATE(442), + [sym__paragraph] = STATE(442), + [sym__paragraph_content] = STATE(696), + [sym__inline] = STATE(683), + [sym__symbol_fallback] = STATE(329), + [aux_sym__list_dash_repeat1] = STATE(364), + [aux_sym__list_plus_repeat1] = STATE(384), + [aux_sym__list_star_repeat1] = STATE(386), + [aux_sym__list_task_repeat1] = STATE(333), + [aux_sym__list_definition_repeat1] = STATE(509), + [aux_sym__list_decimal_period_repeat1] = STATE(506), + [aux_sym__list_decimal_paren_repeat1] = STATE(504), + [aux_sym__list_decimal_parens_repeat1] = STATE(502), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(500), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(499), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(498), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(497), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(496), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(495), + [aux_sym__list_lower_roman_period_repeat1] = STATE(492), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(491), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(487), + [aux_sym__list_upper_roman_period_repeat1] = STATE(484), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(478), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym_table_repeat1] = STATE(267), + [aux_sym__block_quote_prefix_repeat1] = STATE(397), + [aux_sym__inline_repeat1] = STATE(329), + [anon_sym_LBRACK] = ACTIONS(390), + [anon_sym_PIPE] = ACTIONS(392), + [anon_sym_LBRACE] = ACTIONS(394), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [sym__newline] = ACTIONS(420), + [sym__heading_begin] = ACTIONS(398), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(400), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(402), + [sym__block_quote_continuation] = ACTIONS(65), + [sym__thematic_break_dash] = ACTIONS(404), + [sym__thematic_break_star] = ACTIONS(404), + [sym__footnote_begin] = ACTIONS(406), + }, + [38] = { + [sym__block_with_heading] = STATE(452), + [sym__block_element] = STATE(452), + [sym_heading] = STATE(452), + [sym_list] = STATE(452), + [sym__list_dash] = STATE(665), + [sym__list_item_dash] = STATE(364), + [sym__list_plus] = STATE(665), + [sym__list_item_plus] = STATE(384), + [sym__list_star] = STATE(665), + [sym__list_item_star] = STATE(386), + [sym__list_task] = STATE(665), + [sym__list_item_task] = STATE(333), + [sym_list_marker_task] = STATE(37), + [sym__list_definition] = STATE(665), + [sym__list_item_definition] = STATE(509), + [sym__list_decimal_period] = STATE(665), + [sym__list_item_decimal_period] = STATE(506), + [sym__list_decimal_paren] = STATE(665), + [sym__list_item_decimal_paren] = STATE(504), + [sym__list_decimal_parens] = STATE(665), + [sym__list_item_decimal_parens] = STATE(502), + [sym__list_lower_alpha_period] = STATE(665), + [sym__list_item_lower_alpha_period] = STATE(500), + [sym__list_lower_alpha_paren] = STATE(665), + [sym__list_item_lower_alpha_paren] = STATE(499), + [sym__list_lower_alpha_parens] = STATE(665), + [sym__list_item_lower_alpha_parens] = STATE(498), + [sym__list_upper_alpha_period] = STATE(665), + [sym__list_item_upper_alpha_period] = STATE(497), + [sym__list_upper_alpha_paren] = STATE(665), + [sym__list_item_upper_alpha_paren] = STATE(496), + [sym__list_upper_alpha_parens] = STATE(665), + [sym__list_item_upper_alpha_parens] = STATE(495), + [sym__list_lower_roman_period] = STATE(665), + [sym__list_item_lower_roman_period] = STATE(492), + [sym__list_lower_roman_paren] = STATE(665), + [sym__list_item_lower_roman_paren] = STATE(491), + [sym__list_lower_roman_parens] = STATE(665), + [sym__list_item_lower_roman_parens] = STATE(487), + [sym__list_upper_roman_period] = STATE(665), + [sym__list_item_upper_roman_period] = STATE(484), + [sym__list_upper_roman_paren] = STATE(665), + [sym__list_item_upper_roman_paren] = STATE(478), + [sym__list_upper_roman_parens] = STATE(665), + [sym__list_item_upper_roman_parens] = STATE(474), + [sym_list_item_content] = STATE(760), + [sym_table] = STATE(452), + [sym__table_content] = STATE(267), + [sym_table_separator] = STATE(267), + [sym_table_row] = STATE(327), + [sym_footnote] = STATE(452), + [sym_div] = STATE(452), + [sym_div_marker_begin] = STATE(914), + [sym_code_block] = STATE(452), + [sym_raw_block] = STATE(452), + [sym_thematic_break] = STATE(452), + [sym_block_quote] = STATE(452), + [sym__block_quote_prefix] = STATE(431), + [sym_link_reference_definition] = STATE(452), + [sym_block_attribute] = STATE(452), + [sym__paragraph] = STATE(452), + [sym__paragraph_content] = STATE(696), + [sym__inline] = STATE(683), + [sym__symbol_fallback] = STATE(329), + [aux_sym__list_dash_repeat1] = STATE(364), + [aux_sym__list_plus_repeat1] = STATE(384), + [aux_sym__list_star_repeat1] = STATE(386), + [aux_sym__list_task_repeat1] = STATE(333), + [aux_sym__list_definition_repeat1] = STATE(509), + [aux_sym__list_decimal_period_repeat1] = STATE(506), + [aux_sym__list_decimal_paren_repeat1] = STATE(504), + [aux_sym__list_decimal_parens_repeat1] = STATE(502), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(500), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(499), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(498), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(497), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(496), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(495), + [aux_sym__list_lower_roman_period_repeat1] = STATE(492), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(491), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(487), + [aux_sym__list_upper_roman_period_repeat1] = STATE(484), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(478), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym_table_repeat1] = STATE(267), + [aux_sym__block_quote_prefix_repeat1] = STATE(397), + [aux_sym__inline_repeat1] = STATE(329), + [anon_sym_LBRACK] = ACTIONS(390), + [anon_sym_PIPE] = ACTIONS(392), + [anon_sym_LBRACE] = ACTIONS(394), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [sym__newline] = ACTIONS(422), + [sym__heading_begin] = ACTIONS(398), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(400), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(402), + [sym__block_quote_continuation] = ACTIONS(65), + [sym__thematic_break_dash] = ACTIONS(404), + [sym__thematic_break_star] = ACTIONS(404), + [sym__footnote_begin] = ACTIONS(406), + }, + [39] = { + [sym__block_with_heading] = STATE(439), + [sym__block_element] = STATE(439), + [sym_heading] = STATE(439), + [sym_list] = STATE(439), + [sym__list_dash] = STATE(665), + [sym__list_item_dash] = STATE(364), + [sym__list_plus] = STATE(665), + [sym__list_item_plus] = STATE(384), + [sym__list_star] = STATE(665), + [sym__list_item_star] = STATE(386), + [sym__list_task] = STATE(665), + [sym__list_item_task] = STATE(333), + [sym_list_marker_task] = STATE(37), + [sym__list_definition] = STATE(665), + [sym__list_item_definition] = STATE(509), + [sym__list_decimal_period] = STATE(665), + [sym__list_item_decimal_period] = STATE(506), + [sym__list_decimal_paren] = STATE(665), + [sym__list_item_decimal_paren] = STATE(504), + [sym__list_decimal_parens] = STATE(665), + [sym__list_item_decimal_parens] = STATE(502), + [sym__list_lower_alpha_period] = STATE(665), + [sym__list_item_lower_alpha_period] = STATE(500), + [sym__list_lower_alpha_paren] = STATE(665), + [sym__list_item_lower_alpha_paren] = STATE(499), + [sym__list_lower_alpha_parens] = STATE(665), + [sym__list_item_lower_alpha_parens] = STATE(498), + [sym__list_upper_alpha_period] = STATE(665), + [sym__list_item_upper_alpha_period] = STATE(497), + [sym__list_upper_alpha_paren] = STATE(665), + [sym__list_item_upper_alpha_paren] = STATE(496), + [sym__list_upper_alpha_parens] = STATE(665), + [sym__list_item_upper_alpha_parens] = STATE(495), + [sym__list_lower_roman_period] = STATE(665), + [sym__list_item_lower_roman_period] = STATE(492), + [sym__list_lower_roman_paren] = STATE(665), + [sym__list_item_lower_roman_paren] = STATE(491), + [sym__list_lower_roman_parens] = STATE(665), + [sym__list_item_lower_roman_parens] = STATE(487), + [sym__list_upper_roman_period] = STATE(665), + [sym__list_item_upper_roman_period] = STATE(484), + [sym__list_upper_roman_paren] = STATE(665), + [sym__list_item_upper_roman_paren] = STATE(478), + [sym__list_upper_roman_parens] = STATE(665), + [sym__list_item_upper_roman_parens] = STATE(474), + [sym_list_item_content] = STATE(794), + [sym_table] = STATE(439), + [sym__table_content] = STATE(267), + [sym_table_separator] = STATE(267), + [sym_table_row] = STATE(327), + [sym_footnote] = STATE(439), + [sym_div] = STATE(439), + [sym_div_marker_begin] = STATE(914), + [sym_code_block] = STATE(439), + [sym_raw_block] = STATE(439), + [sym_thematic_break] = STATE(439), + [sym_block_quote] = STATE(439), + [sym__block_quote_prefix] = STATE(431), + [sym_link_reference_definition] = STATE(439), + [sym_block_attribute] = STATE(439), + [sym__paragraph] = STATE(439), + [sym__paragraph_content] = STATE(696), + [sym__inline] = STATE(683), + [sym__symbol_fallback] = STATE(329), + [aux_sym__list_dash_repeat1] = STATE(364), + [aux_sym__list_plus_repeat1] = STATE(384), + [aux_sym__list_star_repeat1] = STATE(386), + [aux_sym__list_task_repeat1] = STATE(333), + [aux_sym__list_definition_repeat1] = STATE(509), + [aux_sym__list_decimal_period_repeat1] = STATE(506), + [aux_sym__list_decimal_paren_repeat1] = STATE(504), + [aux_sym__list_decimal_parens_repeat1] = STATE(502), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(500), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(499), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(498), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(497), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(496), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(495), + [aux_sym__list_lower_roman_period_repeat1] = STATE(492), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(491), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(487), + [aux_sym__list_upper_roman_period_repeat1] = STATE(484), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(478), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym_table_repeat1] = STATE(267), + [aux_sym__block_quote_prefix_repeat1] = STATE(397), + [aux_sym__inline_repeat1] = STATE(329), + [anon_sym_LBRACK] = ACTIONS(390), + [anon_sym_PIPE] = ACTIONS(392), + [anon_sym_LBRACE] = ACTIONS(394), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [sym__newline] = ACTIONS(424), + [sym__heading_begin] = ACTIONS(398), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(400), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(402), + [sym__block_quote_continuation] = ACTIONS(65), + [sym__thematic_break_dash] = ACTIONS(404), + [sym__thematic_break_star] = ACTIONS(404), + [sym__footnote_begin] = ACTIONS(406), + }, + [40] = { + [sym__block_with_heading] = STATE(430), + [sym__block_element] = STATE(430), + [sym_heading] = STATE(430), + [sym_list] = STATE(430), + [sym__list_dash] = STATE(665), + [sym__list_item_dash] = STATE(364), + [sym__list_plus] = STATE(665), + [sym__list_item_plus] = STATE(384), + [sym__list_star] = STATE(665), + [sym__list_item_star] = STATE(386), + [sym__list_task] = STATE(665), + [sym__list_item_task] = STATE(333), + [sym_list_marker_task] = STATE(37), + [sym__list_definition] = STATE(665), + [sym__list_item_definition] = STATE(509), + [sym__list_decimal_period] = STATE(665), + [sym__list_item_decimal_period] = STATE(506), + [sym__list_decimal_paren] = STATE(665), + [sym__list_item_decimal_paren] = STATE(504), + [sym__list_decimal_parens] = STATE(665), + [sym__list_item_decimal_parens] = STATE(502), + [sym__list_lower_alpha_period] = STATE(665), + [sym__list_item_lower_alpha_period] = STATE(500), + [sym__list_lower_alpha_paren] = STATE(665), + [sym__list_item_lower_alpha_paren] = STATE(499), + [sym__list_lower_alpha_parens] = STATE(665), + [sym__list_item_lower_alpha_parens] = STATE(498), + [sym__list_upper_alpha_period] = STATE(665), + [sym__list_item_upper_alpha_period] = STATE(497), + [sym__list_upper_alpha_paren] = STATE(665), + [sym__list_item_upper_alpha_paren] = STATE(496), + [sym__list_upper_alpha_parens] = STATE(665), + [sym__list_item_upper_alpha_parens] = STATE(495), + [sym__list_lower_roman_period] = STATE(665), + [sym__list_item_lower_roman_period] = STATE(492), + [sym__list_lower_roman_paren] = STATE(665), + [sym__list_item_lower_roman_paren] = STATE(491), + [sym__list_lower_roman_parens] = STATE(665), + [sym__list_item_lower_roman_parens] = STATE(487), + [sym__list_upper_roman_period] = STATE(665), + [sym__list_item_upper_roman_period] = STATE(484), + [sym__list_upper_roman_paren] = STATE(665), + [sym__list_item_upper_roman_paren] = STATE(478), + [sym__list_upper_roman_parens] = STATE(665), + [sym__list_item_upper_roman_parens] = STATE(474), + [sym_list_item_content] = STATE(850), + [sym_table] = STATE(430), + [sym__table_content] = STATE(267), + [sym_table_separator] = STATE(267), + [sym_table_row] = STATE(327), + [sym_footnote] = STATE(430), + [sym_div] = STATE(430), + [sym_div_marker_begin] = STATE(914), + [sym_code_block] = STATE(430), + [sym_raw_block] = STATE(430), + [sym_thematic_break] = STATE(430), + [sym_block_quote] = STATE(430), + [sym__block_quote_prefix] = STATE(431), + [sym_link_reference_definition] = STATE(430), + [sym_block_attribute] = STATE(430), + [sym__paragraph] = STATE(430), + [sym__paragraph_content] = STATE(696), + [sym__inline] = STATE(683), + [sym__symbol_fallback] = STATE(329), + [aux_sym__list_dash_repeat1] = STATE(364), + [aux_sym__list_plus_repeat1] = STATE(384), + [aux_sym__list_star_repeat1] = STATE(386), + [aux_sym__list_task_repeat1] = STATE(333), + [aux_sym__list_definition_repeat1] = STATE(509), + [aux_sym__list_decimal_period_repeat1] = STATE(506), + [aux_sym__list_decimal_paren_repeat1] = STATE(504), + [aux_sym__list_decimal_parens_repeat1] = STATE(502), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(500), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(499), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(498), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(497), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(496), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(495), + [aux_sym__list_lower_roman_period_repeat1] = STATE(492), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(491), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(487), + [aux_sym__list_upper_roman_period_repeat1] = STATE(484), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(478), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym_table_repeat1] = STATE(267), + [aux_sym__block_quote_prefix_repeat1] = STATE(397), + [aux_sym__inline_repeat1] = STATE(329), + [anon_sym_LBRACK] = ACTIONS(390), + [anon_sym_PIPE] = ACTIONS(392), + [anon_sym_LBRACE] = ACTIONS(394), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [sym__newline] = ACTIONS(426), + [sym__heading_begin] = ACTIONS(398), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(400), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(402), + [sym__block_quote_continuation] = ACTIONS(65), + [sym__thematic_break_dash] = ACTIONS(404), + [sym__thematic_break_star] = ACTIONS(404), + [sym__footnote_begin] = ACTIONS(406), + }, + [41] = { + [sym__block_with_heading] = STATE(422), + [sym__block_element] = STATE(422), + [sym_heading] = STATE(422), + [sym_list] = STATE(422), + [sym__list_dash] = STATE(665), + [sym__list_item_dash] = STATE(364), + [sym__list_plus] = STATE(665), + [sym__list_item_plus] = STATE(384), + [sym__list_star] = STATE(665), + [sym__list_item_star] = STATE(386), + [sym__list_task] = STATE(665), + [sym__list_item_task] = STATE(333), + [sym_list_marker_task] = STATE(37), + [sym__list_definition] = STATE(665), + [sym__list_item_definition] = STATE(509), + [sym__list_decimal_period] = STATE(665), + [sym__list_item_decimal_period] = STATE(506), + [sym__list_decimal_paren] = STATE(665), + [sym__list_item_decimal_paren] = STATE(504), + [sym__list_decimal_parens] = STATE(665), + [sym__list_item_decimal_parens] = STATE(502), + [sym__list_lower_alpha_period] = STATE(665), + [sym__list_item_lower_alpha_period] = STATE(500), + [sym__list_lower_alpha_paren] = STATE(665), + [sym__list_item_lower_alpha_paren] = STATE(499), + [sym__list_lower_alpha_parens] = STATE(665), + [sym__list_item_lower_alpha_parens] = STATE(498), + [sym__list_upper_alpha_period] = STATE(665), + [sym__list_item_upper_alpha_period] = STATE(497), + [sym__list_upper_alpha_paren] = STATE(665), + [sym__list_item_upper_alpha_paren] = STATE(496), + [sym__list_upper_alpha_parens] = STATE(665), + [sym__list_item_upper_alpha_parens] = STATE(495), + [sym__list_lower_roman_period] = STATE(665), + [sym__list_item_lower_roman_period] = STATE(492), + [sym__list_lower_roman_paren] = STATE(665), + [sym__list_item_lower_roman_paren] = STATE(491), + [sym__list_lower_roman_parens] = STATE(665), + [sym__list_item_lower_roman_parens] = STATE(487), + [sym__list_upper_roman_period] = STATE(665), + [sym__list_item_upper_roman_period] = STATE(484), + [sym__list_upper_roman_paren] = STATE(665), + [sym__list_item_upper_roman_paren] = STATE(478), + [sym__list_upper_roman_parens] = STATE(665), + [sym__list_item_upper_roman_parens] = STATE(474), + [sym_list_item_content] = STATE(783), + [sym_table] = STATE(422), + [sym__table_content] = STATE(267), + [sym_table_separator] = STATE(267), + [sym_table_row] = STATE(327), + [sym_footnote] = STATE(422), + [sym_div] = STATE(422), + [sym_div_marker_begin] = STATE(914), + [sym_code_block] = STATE(422), + [sym_raw_block] = STATE(422), + [sym_thematic_break] = STATE(422), + [sym_block_quote] = STATE(422), + [sym__block_quote_prefix] = STATE(431), + [sym_link_reference_definition] = STATE(422), + [sym_block_attribute] = STATE(422), + [sym__paragraph] = STATE(422), + [sym__paragraph_content] = STATE(696), + [sym__inline] = STATE(683), + [sym__symbol_fallback] = STATE(329), + [aux_sym__list_dash_repeat1] = STATE(364), + [aux_sym__list_plus_repeat1] = STATE(384), + [aux_sym__list_star_repeat1] = STATE(386), + [aux_sym__list_task_repeat1] = STATE(333), + [aux_sym__list_definition_repeat1] = STATE(509), + [aux_sym__list_decimal_period_repeat1] = STATE(506), + [aux_sym__list_decimal_paren_repeat1] = STATE(504), + [aux_sym__list_decimal_parens_repeat1] = STATE(502), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(500), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(499), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(498), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(497), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(496), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(495), + [aux_sym__list_lower_roman_period_repeat1] = STATE(492), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(491), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(487), + [aux_sym__list_upper_roman_period_repeat1] = STATE(484), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(478), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym_table_repeat1] = STATE(267), + [aux_sym__block_quote_prefix_repeat1] = STATE(397), + [aux_sym__inline_repeat1] = STATE(329), + [anon_sym_LBRACK] = ACTIONS(390), + [anon_sym_PIPE] = ACTIONS(392), + [anon_sym_LBRACE] = ACTIONS(394), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [sym__newline] = ACTIONS(428), + [sym__heading_begin] = ACTIONS(398), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(400), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(402), + [sym__block_quote_continuation] = ACTIONS(65), + [sym__thematic_break_dash] = ACTIONS(404), + [sym__thematic_break_star] = ACTIONS(404), + [sym__footnote_begin] = ACTIONS(406), + }, + [42] = { + [sym__block_with_heading] = STATE(420), + [sym__block_element] = STATE(420), + [sym_heading] = STATE(420), + [sym_list] = STATE(420), + [sym__list_dash] = STATE(665), + [sym__list_item_dash] = STATE(364), + [sym__list_plus] = STATE(665), + [sym__list_item_plus] = STATE(384), + [sym__list_star] = STATE(665), + [sym__list_item_star] = STATE(386), + [sym__list_task] = STATE(665), + [sym__list_item_task] = STATE(333), + [sym_list_marker_task] = STATE(37), + [sym__list_definition] = STATE(665), + [sym__list_item_definition] = STATE(509), + [sym__list_decimal_period] = STATE(665), + [sym__list_item_decimal_period] = STATE(506), + [sym__list_decimal_paren] = STATE(665), + [sym__list_item_decimal_paren] = STATE(504), + [sym__list_decimal_parens] = STATE(665), + [sym__list_item_decimal_parens] = STATE(502), + [sym__list_lower_alpha_period] = STATE(665), + [sym__list_item_lower_alpha_period] = STATE(500), + [sym__list_lower_alpha_paren] = STATE(665), + [sym__list_item_lower_alpha_paren] = STATE(499), + [sym__list_lower_alpha_parens] = STATE(665), + [sym__list_item_lower_alpha_parens] = STATE(498), + [sym__list_upper_alpha_period] = STATE(665), + [sym__list_item_upper_alpha_period] = STATE(497), + [sym__list_upper_alpha_paren] = STATE(665), + [sym__list_item_upper_alpha_paren] = STATE(496), + [sym__list_upper_alpha_parens] = STATE(665), + [sym__list_item_upper_alpha_parens] = STATE(495), + [sym__list_lower_roman_period] = STATE(665), + [sym__list_item_lower_roman_period] = STATE(492), + [sym__list_lower_roman_paren] = STATE(665), + [sym__list_item_lower_roman_paren] = STATE(491), + [sym__list_lower_roman_parens] = STATE(665), + [sym__list_item_lower_roman_parens] = STATE(487), + [sym__list_upper_roman_period] = STATE(665), + [sym__list_item_upper_roman_period] = STATE(484), + [sym__list_upper_roman_paren] = STATE(665), + [sym__list_item_upper_roman_paren] = STATE(478), + [sym__list_upper_roman_parens] = STATE(665), + [sym__list_item_upper_roman_parens] = STATE(474), + [sym_list_item_content] = STATE(782), + [sym_table] = STATE(420), + [sym__table_content] = STATE(267), + [sym_table_separator] = STATE(267), + [sym_table_row] = STATE(327), + [sym_footnote] = STATE(420), + [sym_div] = STATE(420), + [sym_div_marker_begin] = STATE(914), + [sym_code_block] = STATE(420), + [sym_raw_block] = STATE(420), + [sym_thematic_break] = STATE(420), + [sym_block_quote] = STATE(420), + [sym__block_quote_prefix] = STATE(431), + [sym_link_reference_definition] = STATE(420), + [sym_block_attribute] = STATE(420), + [sym__paragraph] = STATE(420), + [sym__paragraph_content] = STATE(696), + [sym__inline] = STATE(683), + [sym__symbol_fallback] = STATE(329), + [aux_sym__list_dash_repeat1] = STATE(364), + [aux_sym__list_plus_repeat1] = STATE(384), + [aux_sym__list_star_repeat1] = STATE(386), + [aux_sym__list_task_repeat1] = STATE(333), + [aux_sym__list_definition_repeat1] = STATE(509), + [aux_sym__list_decimal_period_repeat1] = STATE(506), + [aux_sym__list_decimal_paren_repeat1] = STATE(504), + [aux_sym__list_decimal_parens_repeat1] = STATE(502), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(500), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(499), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(498), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(497), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(496), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(495), + [aux_sym__list_lower_roman_period_repeat1] = STATE(492), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(491), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(487), + [aux_sym__list_upper_roman_period_repeat1] = STATE(484), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(478), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym_table_repeat1] = STATE(267), + [aux_sym__block_quote_prefix_repeat1] = STATE(397), + [aux_sym__inline_repeat1] = STATE(329), + [anon_sym_LBRACK] = ACTIONS(390), + [anon_sym_PIPE] = ACTIONS(392), + [anon_sym_LBRACE] = ACTIONS(394), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [sym__newline] = ACTIONS(430), + [sym__heading_begin] = ACTIONS(398), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(400), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(402), + [sym__block_quote_continuation] = ACTIONS(65), + [sym__thematic_break_dash] = ACTIONS(404), + [sym__thematic_break_star] = ACTIONS(404), + [sym__footnote_begin] = ACTIONS(406), + }, + [43] = { + [sym__block_with_heading] = STATE(414), + [sym__block_element] = STATE(414), + [sym_heading] = STATE(414), + [sym_list] = STATE(414), + [sym__list_dash] = STATE(665), + [sym__list_item_dash] = STATE(364), + [sym__list_plus] = STATE(665), + [sym__list_item_plus] = STATE(384), + [sym__list_star] = STATE(665), + [sym__list_item_star] = STATE(386), + [sym__list_task] = STATE(665), + [sym__list_item_task] = STATE(333), + [sym_list_marker_task] = STATE(37), + [sym__list_definition] = STATE(665), + [sym__list_item_definition] = STATE(509), + [sym__list_decimal_period] = STATE(665), + [sym__list_item_decimal_period] = STATE(506), + [sym__list_decimal_paren] = STATE(665), + [sym__list_item_decimal_paren] = STATE(504), + [sym__list_decimal_parens] = STATE(665), + [sym__list_item_decimal_parens] = STATE(502), + [sym__list_lower_alpha_period] = STATE(665), + [sym__list_item_lower_alpha_period] = STATE(500), + [sym__list_lower_alpha_paren] = STATE(665), + [sym__list_item_lower_alpha_paren] = STATE(499), + [sym__list_lower_alpha_parens] = STATE(665), + [sym__list_item_lower_alpha_parens] = STATE(498), + [sym__list_upper_alpha_period] = STATE(665), + [sym__list_item_upper_alpha_period] = STATE(497), + [sym__list_upper_alpha_paren] = STATE(665), + [sym__list_item_upper_alpha_paren] = STATE(496), + [sym__list_upper_alpha_parens] = STATE(665), + [sym__list_item_upper_alpha_parens] = STATE(495), + [sym__list_lower_roman_period] = STATE(665), + [sym__list_item_lower_roman_period] = STATE(492), + [sym__list_lower_roman_paren] = STATE(665), + [sym__list_item_lower_roman_paren] = STATE(491), + [sym__list_lower_roman_parens] = STATE(665), + [sym__list_item_lower_roman_parens] = STATE(487), + [sym__list_upper_roman_period] = STATE(665), + [sym__list_item_upper_roman_period] = STATE(484), + [sym__list_upper_roman_paren] = STATE(665), + [sym__list_item_upper_roman_paren] = STATE(478), + [sym__list_upper_roman_parens] = STATE(665), + [sym__list_item_upper_roman_parens] = STATE(474), + [sym_list_item_content] = STATE(780), + [sym_table] = STATE(414), + [sym__table_content] = STATE(267), + [sym_table_separator] = STATE(267), + [sym_table_row] = STATE(327), + [sym_footnote] = STATE(414), + [sym_div] = STATE(414), + [sym_div_marker_begin] = STATE(914), + [sym_code_block] = STATE(414), + [sym_raw_block] = STATE(414), + [sym_thematic_break] = STATE(414), + [sym_block_quote] = STATE(414), + [sym__block_quote_prefix] = STATE(431), + [sym_link_reference_definition] = STATE(414), + [sym_block_attribute] = STATE(414), + [sym__paragraph] = STATE(414), + [sym__paragraph_content] = STATE(696), + [sym__inline] = STATE(683), + [sym__symbol_fallback] = STATE(329), + [aux_sym__list_dash_repeat1] = STATE(364), + [aux_sym__list_plus_repeat1] = STATE(384), + [aux_sym__list_star_repeat1] = STATE(386), + [aux_sym__list_task_repeat1] = STATE(333), + [aux_sym__list_definition_repeat1] = STATE(509), + [aux_sym__list_decimal_period_repeat1] = STATE(506), + [aux_sym__list_decimal_paren_repeat1] = STATE(504), + [aux_sym__list_decimal_parens_repeat1] = STATE(502), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(500), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(499), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(498), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(497), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(496), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(495), + [aux_sym__list_lower_roman_period_repeat1] = STATE(492), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(491), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(487), + [aux_sym__list_upper_roman_period_repeat1] = STATE(484), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(478), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym_table_repeat1] = STATE(267), + [aux_sym__block_quote_prefix_repeat1] = STATE(397), + [aux_sym__inline_repeat1] = STATE(329), + [anon_sym_LBRACK] = ACTIONS(390), + [anon_sym_PIPE] = ACTIONS(392), + [anon_sym_LBRACE] = ACTIONS(394), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [sym__newline] = ACTIONS(432), + [sym__heading_begin] = ACTIONS(398), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(400), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(402), + [sym__block_quote_continuation] = ACTIONS(65), + [sym__thematic_break_dash] = ACTIONS(404), + [sym__thematic_break_star] = ACTIONS(404), + [sym__footnote_begin] = ACTIONS(406), + }, + [44] = { + [sym__block_with_heading] = STATE(442), + [sym__block_element] = STATE(442), + [sym_heading] = STATE(442), + [sym_list] = STATE(442), + [sym__list_dash] = STATE(665), + [sym__list_item_dash] = STATE(364), + [sym__list_plus] = STATE(665), + [sym__list_item_plus] = STATE(384), + [sym__list_star] = STATE(665), + [sym__list_item_star] = STATE(386), + [sym__list_task] = STATE(665), + [sym__list_item_task] = STATE(333), + [sym_list_marker_task] = STATE(37), + [sym__list_definition] = STATE(665), + [sym__list_item_definition] = STATE(509), + [sym__list_decimal_period] = STATE(665), + [sym__list_item_decimal_period] = STATE(506), + [sym__list_decimal_paren] = STATE(665), + [sym__list_item_decimal_paren] = STATE(504), + [sym__list_decimal_parens] = STATE(665), + [sym__list_item_decimal_parens] = STATE(502), + [sym__list_lower_alpha_period] = STATE(665), + [sym__list_item_lower_alpha_period] = STATE(500), + [sym__list_lower_alpha_paren] = STATE(665), + [sym__list_item_lower_alpha_paren] = STATE(499), + [sym__list_lower_alpha_parens] = STATE(665), + [sym__list_item_lower_alpha_parens] = STATE(498), + [sym__list_upper_alpha_period] = STATE(665), + [sym__list_item_upper_alpha_period] = STATE(497), + [sym__list_upper_alpha_paren] = STATE(665), + [sym__list_item_upper_alpha_paren] = STATE(496), + [sym__list_upper_alpha_parens] = STATE(665), + [sym__list_item_upper_alpha_parens] = STATE(495), + [sym__list_lower_roman_period] = STATE(665), + [sym__list_item_lower_roman_period] = STATE(492), + [sym__list_lower_roman_paren] = STATE(665), + [sym__list_item_lower_roman_paren] = STATE(491), + [sym__list_lower_roman_parens] = STATE(665), + [sym__list_item_lower_roman_parens] = STATE(487), + [sym__list_upper_roman_period] = STATE(665), + [sym__list_item_upper_roman_period] = STATE(484), + [sym__list_upper_roman_paren] = STATE(665), + [sym__list_item_upper_roman_paren] = STATE(478), + [sym__list_upper_roman_parens] = STATE(665), + [sym__list_item_upper_roman_parens] = STATE(474), + [sym_list_item_content] = STATE(643), + [sym_table] = STATE(442), + [sym__table_content] = STATE(267), + [sym_table_separator] = STATE(267), + [sym_table_row] = STATE(327), + [sym_footnote] = STATE(442), + [sym_div] = STATE(442), + [sym_div_marker_begin] = STATE(914), + [sym_code_block] = STATE(442), + [sym_raw_block] = STATE(442), + [sym_thematic_break] = STATE(442), + [sym_block_quote] = STATE(442), + [sym__block_quote_prefix] = STATE(431), + [sym_link_reference_definition] = STATE(442), + [sym_block_attribute] = STATE(442), + [sym__paragraph] = STATE(442), + [sym__paragraph_content] = STATE(696), + [sym__inline] = STATE(683), + [sym__symbol_fallback] = STATE(329), + [aux_sym__list_dash_repeat1] = STATE(364), + [aux_sym__list_plus_repeat1] = STATE(384), + [aux_sym__list_star_repeat1] = STATE(386), + [aux_sym__list_task_repeat1] = STATE(333), + [aux_sym__list_definition_repeat1] = STATE(509), + [aux_sym__list_decimal_period_repeat1] = STATE(506), + [aux_sym__list_decimal_paren_repeat1] = STATE(504), + [aux_sym__list_decimal_parens_repeat1] = STATE(502), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(500), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(499), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(498), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(497), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(496), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(495), + [aux_sym__list_lower_roman_period_repeat1] = STATE(492), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(491), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(487), + [aux_sym__list_upper_roman_period_repeat1] = STATE(484), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(478), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym_table_repeat1] = STATE(267), + [aux_sym__block_quote_prefix_repeat1] = STATE(397), + [aux_sym__inline_repeat1] = STATE(329), + [anon_sym_LBRACK] = ACTIONS(390), + [anon_sym_PIPE] = ACTIONS(392), + [anon_sym_LBRACE] = ACTIONS(394), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [sym__newline] = ACTIONS(420), + [sym__heading_begin] = ACTIONS(398), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(400), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(402), + [sym__block_quote_continuation] = ACTIONS(65), + [sym__thematic_break_dash] = ACTIONS(404), + [sym__thematic_break_star] = ACTIONS(404), + [sym__footnote_begin] = ACTIONS(406), + }, + [45] = { + [sym__block_with_heading] = STATE(429), + [sym__block_element] = STATE(429), + [sym_heading] = STATE(429), + [sym_list] = STATE(429), + [sym__list_dash] = STATE(665), + [sym__list_item_dash] = STATE(364), + [sym__list_plus] = STATE(665), + [sym__list_item_plus] = STATE(384), + [sym__list_star] = STATE(665), + [sym__list_item_star] = STATE(386), + [sym__list_task] = STATE(665), + [sym__list_item_task] = STATE(333), + [sym_list_marker_task] = STATE(37), + [sym__list_definition] = STATE(665), + [sym__list_item_definition] = STATE(509), + [sym__list_decimal_period] = STATE(665), + [sym__list_item_decimal_period] = STATE(506), + [sym__list_decimal_paren] = STATE(665), + [sym__list_item_decimal_paren] = STATE(504), + [sym__list_decimal_parens] = STATE(665), + [sym__list_item_decimal_parens] = STATE(502), + [sym__list_lower_alpha_period] = STATE(665), + [sym__list_item_lower_alpha_period] = STATE(500), + [sym__list_lower_alpha_paren] = STATE(665), + [sym__list_item_lower_alpha_paren] = STATE(499), + [sym__list_lower_alpha_parens] = STATE(665), + [sym__list_item_lower_alpha_parens] = STATE(498), + [sym__list_upper_alpha_period] = STATE(665), + [sym__list_item_upper_alpha_period] = STATE(497), + [sym__list_upper_alpha_paren] = STATE(665), + [sym__list_item_upper_alpha_paren] = STATE(496), + [sym__list_upper_alpha_parens] = STATE(665), + [sym__list_item_upper_alpha_parens] = STATE(495), + [sym__list_lower_roman_period] = STATE(665), + [sym__list_item_lower_roman_period] = STATE(492), + [sym__list_lower_roman_paren] = STATE(665), + [sym__list_item_lower_roman_paren] = STATE(491), + [sym__list_lower_roman_parens] = STATE(665), + [sym__list_item_lower_roman_parens] = STATE(487), + [sym__list_upper_roman_period] = STATE(665), + [sym__list_item_upper_roman_period] = STATE(484), + [sym__list_upper_roman_paren] = STATE(665), + [sym__list_item_upper_roman_paren] = STATE(478), + [sym__list_upper_roman_parens] = STATE(665), + [sym__list_item_upper_roman_parens] = STATE(474), + [sym_list_item_content] = STATE(775), + [sym_table] = STATE(429), + [sym__table_content] = STATE(267), + [sym_table_separator] = STATE(267), + [sym_table_row] = STATE(327), + [sym_footnote] = STATE(429), + [sym_div] = STATE(429), + [sym_div_marker_begin] = STATE(914), + [sym_code_block] = STATE(429), + [sym_raw_block] = STATE(429), + [sym_thematic_break] = STATE(429), + [sym_block_quote] = STATE(429), + [sym__block_quote_prefix] = STATE(431), + [sym_link_reference_definition] = STATE(429), + [sym_block_attribute] = STATE(429), + [sym__paragraph] = STATE(429), + [sym__paragraph_content] = STATE(696), + [sym__inline] = STATE(683), + [sym__symbol_fallback] = STATE(329), + [aux_sym__list_dash_repeat1] = STATE(364), + [aux_sym__list_plus_repeat1] = STATE(384), + [aux_sym__list_star_repeat1] = STATE(386), + [aux_sym__list_task_repeat1] = STATE(333), + [aux_sym__list_definition_repeat1] = STATE(509), + [aux_sym__list_decimal_period_repeat1] = STATE(506), + [aux_sym__list_decimal_paren_repeat1] = STATE(504), + [aux_sym__list_decimal_parens_repeat1] = STATE(502), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(500), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(499), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(498), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(497), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(496), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(495), + [aux_sym__list_lower_roman_period_repeat1] = STATE(492), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(491), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(487), + [aux_sym__list_upper_roman_period_repeat1] = STATE(484), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(478), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym_table_repeat1] = STATE(267), + [aux_sym__block_quote_prefix_repeat1] = STATE(397), + [aux_sym__inline_repeat1] = STATE(329), + [anon_sym_LBRACK] = ACTIONS(390), + [anon_sym_PIPE] = ACTIONS(392), + [anon_sym_LBRACE] = ACTIONS(394), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [sym__newline] = ACTIONS(434), + [sym__heading_begin] = ACTIONS(398), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(400), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(402), + [sym__block_quote_continuation] = ACTIONS(65), + [sym__thematic_break_dash] = ACTIONS(404), + [sym__thematic_break_star] = ACTIONS(404), + [sym__footnote_begin] = ACTIONS(406), + }, + [46] = { + [sym__block_with_heading] = STATE(449), + [sym__block_element] = STATE(449), + [sym_heading] = STATE(449), + [sym_list] = STATE(449), + [sym__list_dash] = STATE(665), + [sym__list_item_dash] = STATE(364), + [sym__list_plus] = STATE(665), + [sym__list_item_plus] = STATE(384), + [sym__list_star] = STATE(665), + [sym__list_item_star] = STATE(386), + [sym__list_task] = STATE(665), + [sym__list_item_task] = STATE(333), + [sym_list_marker_task] = STATE(37), + [sym__list_definition] = STATE(665), + [sym__list_item_definition] = STATE(509), + [sym__list_decimal_period] = STATE(665), + [sym__list_item_decimal_period] = STATE(506), + [sym__list_decimal_paren] = STATE(665), + [sym__list_item_decimal_paren] = STATE(504), + [sym__list_decimal_parens] = STATE(665), + [sym__list_item_decimal_parens] = STATE(502), + [sym__list_lower_alpha_period] = STATE(665), + [sym__list_item_lower_alpha_period] = STATE(500), + [sym__list_lower_alpha_paren] = STATE(665), + [sym__list_item_lower_alpha_paren] = STATE(499), + [sym__list_lower_alpha_parens] = STATE(665), + [sym__list_item_lower_alpha_parens] = STATE(498), + [sym__list_upper_alpha_period] = STATE(665), + [sym__list_item_upper_alpha_period] = STATE(497), + [sym__list_upper_alpha_paren] = STATE(665), + [sym__list_item_upper_alpha_paren] = STATE(496), + [sym__list_upper_alpha_parens] = STATE(665), + [sym__list_item_upper_alpha_parens] = STATE(495), + [sym__list_lower_roman_period] = STATE(665), + [sym__list_item_lower_roman_period] = STATE(492), + [sym__list_lower_roman_paren] = STATE(665), + [sym__list_item_lower_roman_paren] = STATE(491), + [sym__list_lower_roman_parens] = STATE(665), + [sym__list_item_lower_roman_parens] = STATE(487), + [sym__list_upper_roman_period] = STATE(665), + [sym__list_item_upper_roman_period] = STATE(484), + [sym__list_upper_roman_paren] = STATE(665), + [sym__list_item_upper_roman_paren] = STATE(478), + [sym__list_upper_roman_parens] = STATE(665), + [sym__list_item_upper_roman_parens] = STATE(474), + [sym_list_item_content] = STATE(672), + [sym_table] = STATE(449), + [sym__table_content] = STATE(267), + [sym_table_separator] = STATE(267), + [sym_table_row] = STATE(327), + [sym_footnote] = STATE(449), + [sym_div] = STATE(449), + [sym_div_marker_begin] = STATE(914), + [sym_code_block] = STATE(449), + [sym_raw_block] = STATE(449), + [sym_thematic_break] = STATE(449), + [sym_block_quote] = STATE(449), + [sym__block_quote_prefix] = STATE(431), + [sym_link_reference_definition] = STATE(449), + [sym_block_attribute] = STATE(449), + [sym__paragraph] = STATE(449), + [sym__paragraph_content] = STATE(696), + [sym__inline] = STATE(683), + [sym__symbol_fallback] = STATE(329), + [aux_sym__list_dash_repeat1] = STATE(364), + [aux_sym__list_plus_repeat1] = STATE(384), + [aux_sym__list_star_repeat1] = STATE(386), + [aux_sym__list_task_repeat1] = STATE(333), + [aux_sym__list_definition_repeat1] = STATE(509), + [aux_sym__list_decimal_period_repeat1] = STATE(506), + [aux_sym__list_decimal_paren_repeat1] = STATE(504), + [aux_sym__list_decimal_parens_repeat1] = STATE(502), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(500), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(499), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(498), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(497), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(496), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(495), + [aux_sym__list_lower_roman_period_repeat1] = STATE(492), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(491), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(487), + [aux_sym__list_upper_roman_period_repeat1] = STATE(484), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(478), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym_table_repeat1] = STATE(267), + [aux_sym__block_quote_prefix_repeat1] = STATE(397), + [aux_sym__inline_repeat1] = STATE(329), + [anon_sym_LBRACK] = ACTIONS(390), + [anon_sym_PIPE] = ACTIONS(392), + [anon_sym_LBRACE] = ACTIONS(394), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [sym__newline] = ACTIONS(412), + [sym__heading_begin] = ACTIONS(398), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(400), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(402), + [sym__block_quote_continuation] = ACTIONS(65), + [sym__thematic_break_dash] = ACTIONS(404), + [sym__thematic_break_star] = ACTIONS(404), + [sym__footnote_begin] = ACTIONS(406), + }, + [47] = { + [sym__block_with_heading] = STATE(419), + [sym__block_element] = STATE(419), + [sym_heading] = STATE(419), + [sym_list] = STATE(419), + [sym__list_dash] = STATE(665), + [sym__list_item_dash] = STATE(364), + [sym__list_plus] = STATE(665), + [sym__list_item_plus] = STATE(384), + [sym__list_star] = STATE(665), + [sym__list_item_star] = STATE(386), + [sym__list_task] = STATE(665), + [sym__list_item_task] = STATE(333), + [sym_list_marker_task] = STATE(37), + [sym__list_definition] = STATE(665), + [sym__list_item_definition] = STATE(509), + [sym__list_decimal_period] = STATE(665), + [sym__list_item_decimal_period] = STATE(506), + [sym__list_decimal_paren] = STATE(665), + [sym__list_item_decimal_paren] = STATE(504), + [sym__list_decimal_parens] = STATE(665), + [sym__list_item_decimal_parens] = STATE(502), + [sym__list_lower_alpha_period] = STATE(665), + [sym__list_item_lower_alpha_period] = STATE(500), + [sym__list_lower_alpha_paren] = STATE(665), + [sym__list_item_lower_alpha_paren] = STATE(499), + [sym__list_lower_alpha_parens] = STATE(665), + [sym__list_item_lower_alpha_parens] = STATE(498), + [sym__list_upper_alpha_period] = STATE(665), + [sym__list_item_upper_alpha_period] = STATE(497), + [sym__list_upper_alpha_paren] = STATE(665), + [sym__list_item_upper_alpha_paren] = STATE(496), + [sym__list_upper_alpha_parens] = STATE(665), + [sym__list_item_upper_alpha_parens] = STATE(495), + [sym__list_lower_roman_period] = STATE(665), + [sym__list_item_lower_roman_period] = STATE(492), + [sym__list_lower_roman_paren] = STATE(665), + [sym__list_item_lower_roman_paren] = STATE(491), + [sym__list_lower_roman_parens] = STATE(665), + [sym__list_item_lower_roman_parens] = STATE(487), + [sym__list_upper_roman_period] = STATE(665), + [sym__list_item_upper_roman_period] = STATE(484), + [sym__list_upper_roman_paren] = STATE(665), + [sym__list_item_upper_roman_paren] = STATE(478), + [sym__list_upper_roman_parens] = STATE(665), + [sym__list_item_upper_roman_parens] = STATE(474), + [sym_list_item_content] = STATE(639), + [sym_table] = STATE(419), + [sym__table_content] = STATE(267), + [sym_table_separator] = STATE(267), + [sym_table_row] = STATE(327), + [sym_footnote] = STATE(419), + [sym_div] = STATE(419), + [sym_div_marker_begin] = STATE(914), + [sym_code_block] = STATE(419), + [sym_raw_block] = STATE(419), + [sym_thematic_break] = STATE(419), + [sym_block_quote] = STATE(419), + [sym__block_quote_prefix] = STATE(431), + [sym_link_reference_definition] = STATE(419), + [sym_block_attribute] = STATE(419), + [sym__paragraph] = STATE(419), + [sym__paragraph_content] = STATE(696), + [sym__inline] = STATE(683), + [sym__symbol_fallback] = STATE(329), + [aux_sym__list_dash_repeat1] = STATE(364), + [aux_sym__list_plus_repeat1] = STATE(384), + [aux_sym__list_star_repeat1] = STATE(386), + [aux_sym__list_task_repeat1] = STATE(333), + [aux_sym__list_definition_repeat1] = STATE(509), + [aux_sym__list_decimal_period_repeat1] = STATE(506), + [aux_sym__list_decimal_paren_repeat1] = STATE(504), + [aux_sym__list_decimal_parens_repeat1] = STATE(502), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(500), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(499), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(498), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(497), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(496), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(495), + [aux_sym__list_lower_roman_period_repeat1] = STATE(492), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(491), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(487), + [aux_sym__list_upper_roman_period_repeat1] = STATE(484), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(478), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym_table_repeat1] = STATE(267), + [aux_sym__block_quote_prefix_repeat1] = STATE(397), + [aux_sym__inline_repeat1] = STATE(329), + [anon_sym_LBRACK] = ACTIONS(390), + [anon_sym_PIPE] = ACTIONS(392), + [anon_sym_LBRACE] = ACTIONS(394), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [sym__newline] = ACTIONS(410), + [sym__heading_begin] = ACTIONS(398), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(400), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(402), + [sym__block_quote_continuation] = ACTIONS(65), + [sym__thematic_break_dash] = ACTIONS(404), + [sym__thematic_break_star] = ACTIONS(404), + [sym__footnote_begin] = ACTIONS(406), + }, + [48] = { + [sym__block_with_heading] = STATE(423), + [sym__block_element] = STATE(423), + [sym_heading] = STATE(423), + [sym_list] = STATE(423), + [sym__list_dash] = STATE(665), + [sym__list_item_dash] = STATE(364), + [sym__list_plus] = STATE(665), + [sym__list_item_plus] = STATE(384), + [sym__list_star] = STATE(665), + [sym__list_item_star] = STATE(386), + [sym__list_task] = STATE(665), + [sym__list_item_task] = STATE(333), + [sym_list_marker_task] = STATE(37), + [sym__list_definition] = STATE(665), + [sym__list_item_definition] = STATE(509), + [sym__list_decimal_period] = STATE(665), + [sym__list_item_decimal_period] = STATE(506), + [sym__list_decimal_paren] = STATE(665), + [sym__list_item_decimal_paren] = STATE(504), + [sym__list_decimal_parens] = STATE(665), + [sym__list_item_decimal_parens] = STATE(502), + [sym__list_lower_alpha_period] = STATE(665), + [sym__list_item_lower_alpha_period] = STATE(500), + [sym__list_lower_alpha_paren] = STATE(665), + [sym__list_item_lower_alpha_paren] = STATE(499), + [sym__list_lower_alpha_parens] = STATE(665), + [sym__list_item_lower_alpha_parens] = STATE(498), + [sym__list_upper_alpha_period] = STATE(665), + [sym__list_item_upper_alpha_period] = STATE(497), + [sym__list_upper_alpha_paren] = STATE(665), + [sym__list_item_upper_alpha_paren] = STATE(496), + [sym__list_upper_alpha_parens] = STATE(665), + [sym__list_item_upper_alpha_parens] = STATE(495), + [sym__list_lower_roman_period] = STATE(665), + [sym__list_item_lower_roman_period] = STATE(492), + [sym__list_lower_roman_paren] = STATE(665), + [sym__list_item_lower_roman_paren] = STATE(491), + [sym__list_lower_roman_parens] = STATE(665), + [sym__list_item_lower_roman_parens] = STATE(487), + [sym__list_upper_roman_period] = STATE(665), + [sym__list_item_upper_roman_period] = STATE(484), + [sym__list_upper_roman_paren] = STATE(665), + [sym__list_item_upper_roman_paren] = STATE(478), + [sym__list_upper_roman_parens] = STATE(665), + [sym__list_item_upper_roman_parens] = STATE(474), + [sym_list_item_content] = STATE(861), + [sym_table] = STATE(423), + [sym__table_content] = STATE(267), + [sym_table_separator] = STATE(267), + [sym_table_row] = STATE(327), + [sym_footnote] = STATE(423), + [sym_div] = STATE(423), + [sym_div_marker_begin] = STATE(914), + [sym_code_block] = STATE(423), + [sym_raw_block] = STATE(423), + [sym_thematic_break] = STATE(423), + [sym_block_quote] = STATE(423), + [sym__block_quote_prefix] = STATE(431), + [sym_link_reference_definition] = STATE(423), + [sym_block_attribute] = STATE(423), + [sym__paragraph] = STATE(423), + [sym__paragraph_content] = STATE(696), + [sym__inline] = STATE(683), + [sym__symbol_fallback] = STATE(329), + [aux_sym__list_dash_repeat1] = STATE(364), + [aux_sym__list_plus_repeat1] = STATE(384), + [aux_sym__list_star_repeat1] = STATE(386), + [aux_sym__list_task_repeat1] = STATE(333), + [aux_sym__list_definition_repeat1] = STATE(509), + [aux_sym__list_decimal_period_repeat1] = STATE(506), + [aux_sym__list_decimal_paren_repeat1] = STATE(504), + [aux_sym__list_decimal_parens_repeat1] = STATE(502), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(500), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(499), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(498), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(497), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(496), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(495), + [aux_sym__list_lower_roman_period_repeat1] = STATE(492), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(491), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(487), + [aux_sym__list_upper_roman_period_repeat1] = STATE(484), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(478), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym_table_repeat1] = STATE(267), + [aux_sym__block_quote_prefix_repeat1] = STATE(397), + [aux_sym__inline_repeat1] = STATE(329), + [anon_sym_LBRACK] = ACTIONS(390), + [anon_sym_PIPE] = ACTIONS(392), + [anon_sym_LBRACE] = ACTIONS(394), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [sym__newline] = ACTIONS(436), + [sym__heading_begin] = ACTIONS(398), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(400), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(402), + [sym__block_quote_continuation] = ACTIONS(65), + [sym__thematic_break_dash] = ACTIONS(404), + [sym__thematic_break_star] = ACTIONS(404), + [sym__footnote_begin] = ACTIONS(406), + }, + [49] = { + [sym__block_with_heading] = STATE(408), + [sym__block_element] = STATE(408), + [sym_heading] = STATE(408), + [sym_list] = STATE(408), + [sym__list_dash] = STATE(665), + [sym__list_item_dash] = STATE(364), + [sym__list_plus] = STATE(665), + [sym__list_item_plus] = STATE(384), + [sym__list_star] = STATE(665), + [sym__list_item_star] = STATE(386), + [sym__list_task] = STATE(665), + [sym__list_item_task] = STATE(333), + [sym_list_marker_task] = STATE(37), + [sym__list_definition] = STATE(665), + [sym__list_item_definition] = STATE(509), + [sym__list_decimal_period] = STATE(665), + [sym__list_item_decimal_period] = STATE(506), + [sym__list_decimal_paren] = STATE(665), + [sym__list_item_decimal_paren] = STATE(504), + [sym__list_decimal_parens] = STATE(665), + [sym__list_item_decimal_parens] = STATE(502), + [sym__list_lower_alpha_period] = STATE(665), + [sym__list_item_lower_alpha_period] = STATE(500), + [sym__list_lower_alpha_paren] = STATE(665), + [sym__list_item_lower_alpha_paren] = STATE(499), + [sym__list_lower_alpha_parens] = STATE(665), + [sym__list_item_lower_alpha_parens] = STATE(498), + [sym__list_upper_alpha_period] = STATE(665), + [sym__list_item_upper_alpha_period] = STATE(497), + [sym__list_upper_alpha_paren] = STATE(665), + [sym__list_item_upper_alpha_paren] = STATE(496), + [sym__list_upper_alpha_parens] = STATE(665), + [sym__list_item_upper_alpha_parens] = STATE(495), + [sym__list_lower_roman_period] = STATE(665), + [sym__list_item_lower_roman_period] = STATE(492), + [sym__list_lower_roman_paren] = STATE(665), + [sym__list_item_lower_roman_paren] = STATE(491), + [sym__list_lower_roman_parens] = STATE(665), + [sym__list_item_lower_roman_parens] = STATE(487), + [sym__list_upper_roman_period] = STATE(665), + [sym__list_item_upper_roman_period] = STATE(484), + [sym__list_upper_roman_paren] = STATE(665), + [sym__list_item_upper_roman_paren] = STATE(478), + [sym__list_upper_roman_parens] = STATE(665), + [sym__list_item_upper_roman_parens] = STATE(474), + [sym_list_item_content] = STATE(779), + [sym_table] = STATE(408), + [sym__table_content] = STATE(267), + [sym_table_separator] = STATE(267), + [sym_table_row] = STATE(327), + [sym_footnote] = STATE(408), + [sym_div] = STATE(408), + [sym_div_marker_begin] = STATE(914), + [sym_code_block] = STATE(408), + [sym_raw_block] = STATE(408), + [sym_thematic_break] = STATE(408), + [sym_block_quote] = STATE(408), + [sym__block_quote_prefix] = STATE(431), + [sym_link_reference_definition] = STATE(408), + [sym_block_attribute] = STATE(408), + [sym__paragraph] = STATE(408), + [sym__paragraph_content] = STATE(696), + [sym__inline] = STATE(683), + [sym__symbol_fallback] = STATE(329), + [aux_sym__list_dash_repeat1] = STATE(364), + [aux_sym__list_plus_repeat1] = STATE(384), + [aux_sym__list_star_repeat1] = STATE(386), + [aux_sym__list_task_repeat1] = STATE(333), + [aux_sym__list_definition_repeat1] = STATE(509), + [aux_sym__list_decimal_period_repeat1] = STATE(506), + [aux_sym__list_decimal_paren_repeat1] = STATE(504), + [aux_sym__list_decimal_parens_repeat1] = STATE(502), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(500), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(499), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(498), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(497), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(496), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(495), + [aux_sym__list_lower_roman_period_repeat1] = STATE(492), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(491), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(487), + [aux_sym__list_upper_roman_period_repeat1] = STATE(484), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(478), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym_table_repeat1] = STATE(267), + [aux_sym__block_quote_prefix_repeat1] = STATE(397), + [aux_sym__inline_repeat1] = STATE(329), + [anon_sym_LBRACK] = ACTIONS(390), + [anon_sym_PIPE] = ACTIONS(392), + [anon_sym_LBRACE] = ACTIONS(394), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [sym__newline] = ACTIONS(438), + [sym__heading_begin] = ACTIONS(398), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(400), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(402), + [sym__block_quote_continuation] = ACTIONS(65), + [sym__thematic_break_dash] = ACTIONS(404), + [sym__thematic_break_star] = ACTIONS(404), + [sym__footnote_begin] = ACTIONS(406), + }, + [50] = { + [sym__block_with_heading] = STATE(403), + [sym__block_element] = STATE(403), + [sym_heading] = STATE(403), + [sym_list] = STATE(403), + [sym__list_dash] = STATE(665), + [sym__list_item_dash] = STATE(364), + [sym__list_plus] = STATE(665), + [sym__list_item_plus] = STATE(384), + [sym__list_star] = STATE(665), + [sym__list_item_star] = STATE(386), + [sym__list_task] = STATE(665), + [sym__list_item_task] = STATE(333), + [sym_list_marker_task] = STATE(37), + [sym__list_definition] = STATE(665), + [sym__list_item_definition] = STATE(509), + [sym__list_decimal_period] = STATE(665), + [sym__list_item_decimal_period] = STATE(506), + [sym__list_decimal_paren] = STATE(665), + [sym__list_item_decimal_paren] = STATE(504), + [sym__list_decimal_parens] = STATE(665), + [sym__list_item_decimal_parens] = STATE(502), + [sym__list_lower_alpha_period] = STATE(665), + [sym__list_item_lower_alpha_period] = STATE(500), + [sym__list_lower_alpha_paren] = STATE(665), + [sym__list_item_lower_alpha_paren] = STATE(499), + [sym__list_lower_alpha_parens] = STATE(665), + [sym__list_item_lower_alpha_parens] = STATE(498), + [sym__list_upper_alpha_period] = STATE(665), + [sym__list_item_upper_alpha_period] = STATE(497), + [sym__list_upper_alpha_paren] = STATE(665), + [sym__list_item_upper_alpha_paren] = STATE(496), + [sym__list_upper_alpha_parens] = STATE(665), + [sym__list_item_upper_alpha_parens] = STATE(495), + [sym__list_lower_roman_period] = STATE(665), + [sym__list_item_lower_roman_period] = STATE(492), + [sym__list_lower_roman_paren] = STATE(665), + [sym__list_item_lower_roman_paren] = STATE(491), + [sym__list_lower_roman_parens] = STATE(665), + [sym__list_item_lower_roman_parens] = STATE(487), + [sym__list_upper_roman_period] = STATE(665), + [sym__list_item_upper_roman_period] = STATE(484), + [sym__list_upper_roman_paren] = STATE(665), + [sym__list_item_upper_roman_paren] = STATE(478), + [sym__list_upper_roman_parens] = STATE(665), + [sym__list_item_upper_roman_parens] = STATE(474), + [sym_list_item_content] = STATE(776), + [sym_table] = STATE(403), + [sym__table_content] = STATE(267), + [sym_table_separator] = STATE(267), + [sym_table_row] = STATE(327), + [sym_footnote] = STATE(403), + [sym_div] = STATE(403), + [sym_div_marker_begin] = STATE(914), + [sym_code_block] = STATE(403), + [sym_raw_block] = STATE(403), + [sym_thematic_break] = STATE(403), + [sym_block_quote] = STATE(403), + [sym__block_quote_prefix] = STATE(431), + [sym_link_reference_definition] = STATE(403), + [sym_block_attribute] = STATE(403), + [sym__paragraph] = STATE(403), + [sym__paragraph_content] = STATE(696), + [sym__inline] = STATE(683), + [sym__symbol_fallback] = STATE(329), + [aux_sym__list_dash_repeat1] = STATE(364), + [aux_sym__list_plus_repeat1] = STATE(384), + [aux_sym__list_star_repeat1] = STATE(386), + [aux_sym__list_task_repeat1] = STATE(333), + [aux_sym__list_definition_repeat1] = STATE(509), + [aux_sym__list_decimal_period_repeat1] = STATE(506), + [aux_sym__list_decimal_paren_repeat1] = STATE(504), + [aux_sym__list_decimal_parens_repeat1] = STATE(502), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(500), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(499), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(498), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(497), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(496), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(495), + [aux_sym__list_lower_roman_period_repeat1] = STATE(492), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(491), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(487), + [aux_sym__list_upper_roman_period_repeat1] = STATE(484), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(478), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym_table_repeat1] = STATE(267), + [aux_sym__block_quote_prefix_repeat1] = STATE(397), + [aux_sym__inline_repeat1] = STATE(329), + [anon_sym_LBRACK] = ACTIONS(390), + [anon_sym_PIPE] = ACTIONS(392), + [anon_sym_LBRACE] = ACTIONS(394), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [sym__newline] = ACTIONS(440), + [sym__heading_begin] = ACTIONS(398), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(400), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(402), + [sym__block_quote_continuation] = ACTIONS(65), + [sym__thematic_break_dash] = ACTIONS(404), + [sym__thematic_break_star] = ACTIONS(404), + [sym__footnote_begin] = ACTIONS(406), + }, + [51] = { + [sym__block_with_heading] = STATE(406), + [sym__block_element] = STATE(406), + [sym_heading] = STATE(406), + [sym_list] = STATE(406), + [sym__list_dash] = STATE(665), + [sym__list_item_dash] = STATE(364), + [sym__list_plus] = STATE(665), + [sym__list_item_plus] = STATE(384), + [sym__list_star] = STATE(665), + [sym__list_item_star] = STATE(386), + [sym__list_task] = STATE(665), + [sym__list_item_task] = STATE(333), + [sym_list_marker_task] = STATE(37), + [sym__list_definition] = STATE(665), + [sym__list_item_definition] = STATE(509), + [sym__list_decimal_period] = STATE(665), + [sym__list_item_decimal_period] = STATE(506), + [sym__list_decimal_paren] = STATE(665), + [sym__list_item_decimal_paren] = STATE(504), + [sym__list_decimal_parens] = STATE(665), + [sym__list_item_decimal_parens] = STATE(502), + [sym__list_lower_alpha_period] = STATE(665), + [sym__list_item_lower_alpha_period] = STATE(500), + [sym__list_lower_alpha_paren] = STATE(665), + [sym__list_item_lower_alpha_paren] = STATE(499), + [sym__list_lower_alpha_parens] = STATE(665), + [sym__list_item_lower_alpha_parens] = STATE(498), + [sym__list_upper_alpha_period] = STATE(665), + [sym__list_item_upper_alpha_period] = STATE(497), + [sym__list_upper_alpha_paren] = STATE(665), + [sym__list_item_upper_alpha_paren] = STATE(496), + [sym__list_upper_alpha_parens] = STATE(665), + [sym__list_item_upper_alpha_parens] = STATE(495), + [sym__list_lower_roman_period] = STATE(665), + [sym__list_item_lower_roman_period] = STATE(492), + [sym__list_lower_roman_paren] = STATE(665), + [sym__list_item_lower_roman_paren] = STATE(491), + [sym__list_lower_roman_parens] = STATE(665), + [sym__list_item_lower_roman_parens] = STATE(487), + [sym__list_upper_roman_period] = STATE(665), + [sym__list_item_upper_roman_period] = STATE(484), + [sym__list_upper_roman_paren] = STATE(665), + [sym__list_item_upper_roman_paren] = STATE(478), + [sym__list_upper_roman_parens] = STATE(665), + [sym__list_item_upper_roman_parens] = STATE(474), + [sym_list_item_content] = STATE(777), + [sym_table] = STATE(406), + [sym__table_content] = STATE(267), + [sym_table_separator] = STATE(267), + [sym_table_row] = STATE(327), + [sym_footnote] = STATE(406), + [sym_div] = STATE(406), + [sym_div_marker_begin] = STATE(914), + [sym_code_block] = STATE(406), + [sym_raw_block] = STATE(406), + [sym_thematic_break] = STATE(406), + [sym_block_quote] = STATE(406), + [sym__block_quote_prefix] = STATE(431), + [sym_link_reference_definition] = STATE(406), + [sym_block_attribute] = STATE(406), + [sym__paragraph] = STATE(406), + [sym__paragraph_content] = STATE(696), + [sym__inline] = STATE(683), + [sym__symbol_fallback] = STATE(329), + [aux_sym__list_dash_repeat1] = STATE(364), + [aux_sym__list_plus_repeat1] = STATE(384), + [aux_sym__list_star_repeat1] = STATE(386), + [aux_sym__list_task_repeat1] = STATE(333), + [aux_sym__list_definition_repeat1] = STATE(509), + [aux_sym__list_decimal_period_repeat1] = STATE(506), + [aux_sym__list_decimal_paren_repeat1] = STATE(504), + [aux_sym__list_decimal_parens_repeat1] = STATE(502), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(500), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(499), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(498), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(497), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(496), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(495), + [aux_sym__list_lower_roman_period_repeat1] = STATE(492), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(491), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(487), + [aux_sym__list_upper_roman_period_repeat1] = STATE(484), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(478), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym_table_repeat1] = STATE(267), + [aux_sym__block_quote_prefix_repeat1] = STATE(397), + [aux_sym__inline_repeat1] = STATE(329), + [anon_sym_LBRACK] = ACTIONS(390), + [anon_sym_PIPE] = ACTIONS(392), + [anon_sym_LBRACE] = ACTIONS(394), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [sym__newline] = ACTIONS(442), + [sym__heading_begin] = ACTIONS(398), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(400), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(402), + [sym__block_quote_continuation] = ACTIONS(65), + [sym__thematic_break_dash] = ACTIONS(404), + [sym__thematic_break_star] = ACTIONS(404), + [sym__footnote_begin] = ACTIONS(406), + }, + [52] = { + [sym__block_with_heading] = STATE(669), + [sym__block_element] = STATE(669), + [sym_heading] = STATE(669), + [sym_list] = STATE(669), + [sym__list_dash] = STATE(665), + [sym__list_item_dash] = STATE(364), + [sym__list_plus] = STATE(665), + [sym__list_item_plus] = STATE(384), + [sym__list_star] = STATE(665), + [sym__list_item_star] = STATE(386), + [sym__list_task] = STATE(665), + [sym__list_item_task] = STATE(333), + [sym_list_marker_task] = STATE(37), + [sym__list_definition] = STATE(665), + [sym__list_item_definition] = STATE(509), + [sym__list_decimal_period] = STATE(665), + [sym__list_item_decimal_period] = STATE(506), + [sym__list_decimal_paren] = STATE(665), + [sym__list_item_decimal_paren] = STATE(504), + [sym__list_decimal_parens] = STATE(665), + [sym__list_item_decimal_parens] = STATE(502), + [sym__list_lower_alpha_period] = STATE(665), + [sym__list_item_lower_alpha_period] = STATE(500), + [sym__list_lower_alpha_paren] = STATE(665), + [sym__list_item_lower_alpha_paren] = STATE(499), + [sym__list_lower_alpha_parens] = STATE(665), + [sym__list_item_lower_alpha_parens] = STATE(498), + [sym__list_upper_alpha_period] = STATE(665), + [sym__list_item_upper_alpha_period] = STATE(497), + [sym__list_upper_alpha_paren] = STATE(665), + [sym__list_item_upper_alpha_paren] = STATE(496), + [sym__list_upper_alpha_parens] = STATE(665), + [sym__list_item_upper_alpha_parens] = STATE(495), + [sym__list_lower_roman_period] = STATE(665), + [sym__list_item_lower_roman_period] = STATE(492), + [sym__list_lower_roman_paren] = STATE(665), + [sym__list_item_lower_roman_paren] = STATE(491), + [sym__list_lower_roman_parens] = STATE(665), + [sym__list_item_lower_roman_parens] = STATE(487), + [sym__list_upper_roman_period] = STATE(665), + [sym__list_item_upper_roman_period] = STATE(484), + [sym__list_upper_roman_paren] = STATE(665), + [sym__list_item_upper_roman_paren] = STATE(478), + [sym__list_upper_roman_parens] = STATE(665), + [sym__list_item_upper_roman_parens] = STATE(474), + [sym_table] = STATE(669), + [sym__table_content] = STATE(267), + [sym_table_separator] = STATE(267), + [sym_table_row] = STATE(327), + [sym_footnote] = STATE(669), + [sym_div] = STATE(669), + [sym_div_marker_begin] = STATE(914), + [sym_code_block] = STATE(669), + [sym_raw_block] = STATE(669), + [sym_thematic_break] = STATE(669), + [sym_block_quote] = STATE(669), + [sym__block_quote_prefix] = STATE(431), + [sym_link_reference_definition] = STATE(669), + [sym_block_attribute] = STATE(669), + [sym__paragraph] = STATE(669), + [sym__paragraph_content] = STATE(696), + [sym__inline] = STATE(683), + [sym__symbol_fallback] = STATE(329), + [aux_sym__list_dash_repeat1] = STATE(364), + [aux_sym__list_plus_repeat1] = STATE(384), + [aux_sym__list_star_repeat1] = STATE(386), + [aux_sym__list_task_repeat1] = STATE(333), + [aux_sym__list_definition_repeat1] = STATE(509), + [aux_sym__list_decimal_period_repeat1] = STATE(506), + [aux_sym__list_decimal_paren_repeat1] = STATE(504), + [aux_sym__list_decimal_parens_repeat1] = STATE(502), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(500), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(499), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(498), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(497), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(496), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(495), + [aux_sym__list_lower_roman_period_repeat1] = STATE(492), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(491), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(487), + [aux_sym__list_upper_roman_period_repeat1] = STATE(484), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(478), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym_table_repeat1] = STATE(267), + [aux_sym__block_quote_prefix_repeat1] = STATE(397), + [aux_sym__inline_repeat1] = STATE(329), + [anon_sym_LBRACK] = ACTIONS(390), + [anon_sym_PIPE] = ACTIONS(392), + [anon_sym_LBRACE] = ACTIONS(394), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [sym__newline] = ACTIONS(444), + [sym__heading_begin] = ACTIONS(398), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(400), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(402), + [sym__block_quote_continuation] = ACTIONS(65), + [sym__thematic_break_dash] = ACTIONS(404), + [sym__thematic_break_star] = ACTIONS(404), + [sym__footnote_begin] = ACTIONS(406), + }, + [53] = { + [sym__block_with_heading] = STATE(684), + [sym__block_element] = STATE(684), + [sym_heading] = STATE(684), + [sym_list] = STATE(684), + [sym__list_dash] = STATE(665), + [sym__list_item_dash] = STATE(364), + [sym__list_plus] = STATE(665), + [sym__list_item_plus] = STATE(384), + [sym__list_star] = STATE(665), + [sym__list_item_star] = STATE(386), + [sym__list_task] = STATE(665), + [sym__list_item_task] = STATE(333), + [sym_list_marker_task] = STATE(37), + [sym__list_definition] = STATE(665), + [sym__list_item_definition] = STATE(509), + [sym__list_decimal_period] = STATE(665), + [sym__list_item_decimal_period] = STATE(506), + [sym__list_decimal_paren] = STATE(665), + [sym__list_item_decimal_paren] = STATE(504), + [sym__list_decimal_parens] = STATE(665), + [sym__list_item_decimal_parens] = STATE(502), + [sym__list_lower_alpha_period] = STATE(665), + [sym__list_item_lower_alpha_period] = STATE(500), + [sym__list_lower_alpha_paren] = STATE(665), + [sym__list_item_lower_alpha_paren] = STATE(499), + [sym__list_lower_alpha_parens] = STATE(665), + [sym__list_item_lower_alpha_parens] = STATE(498), + [sym__list_upper_alpha_period] = STATE(665), + [sym__list_item_upper_alpha_period] = STATE(497), + [sym__list_upper_alpha_paren] = STATE(665), + [sym__list_item_upper_alpha_paren] = STATE(496), + [sym__list_upper_alpha_parens] = STATE(665), + [sym__list_item_upper_alpha_parens] = STATE(495), + [sym__list_lower_roman_period] = STATE(665), + [sym__list_item_lower_roman_period] = STATE(492), + [sym__list_lower_roman_paren] = STATE(665), + [sym__list_item_lower_roman_paren] = STATE(491), + [sym__list_lower_roman_parens] = STATE(665), + [sym__list_item_lower_roman_parens] = STATE(487), + [sym__list_upper_roman_period] = STATE(665), + [sym__list_item_upper_roman_period] = STATE(484), + [sym__list_upper_roman_paren] = STATE(665), + [sym__list_item_upper_roman_paren] = STATE(478), + [sym__list_upper_roman_parens] = STATE(665), + [sym__list_item_upper_roman_parens] = STATE(474), + [sym_table] = STATE(684), + [sym__table_content] = STATE(267), + [sym_table_separator] = STATE(267), + [sym_table_row] = STATE(327), + [sym_footnote] = STATE(684), + [sym_div] = STATE(684), + [sym_div_marker_begin] = STATE(914), + [sym_code_block] = STATE(684), + [sym_raw_block] = STATE(684), + [sym_thematic_break] = STATE(684), + [sym_block_quote] = STATE(684), + [sym__block_quote_prefix] = STATE(431), + [sym_link_reference_definition] = STATE(684), + [sym_block_attribute] = STATE(684), + [sym__paragraph] = STATE(684), + [sym__paragraph_content] = STATE(696), + [sym__inline] = STATE(683), + [sym__symbol_fallback] = STATE(329), + [aux_sym__list_dash_repeat1] = STATE(364), + [aux_sym__list_plus_repeat1] = STATE(384), + [aux_sym__list_star_repeat1] = STATE(386), + [aux_sym__list_task_repeat1] = STATE(333), + [aux_sym__list_definition_repeat1] = STATE(509), + [aux_sym__list_decimal_period_repeat1] = STATE(506), + [aux_sym__list_decimal_paren_repeat1] = STATE(504), + [aux_sym__list_decimal_parens_repeat1] = STATE(502), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(500), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(499), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(498), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(497), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(496), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(495), + [aux_sym__list_lower_roman_period_repeat1] = STATE(492), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(491), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(487), + [aux_sym__list_upper_roman_period_repeat1] = STATE(484), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(478), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym_table_repeat1] = STATE(267), + [aux_sym__block_quote_prefix_repeat1] = STATE(397), + [aux_sym__inline_repeat1] = STATE(329), + [anon_sym_LBRACK] = ACTIONS(390), + [anon_sym_PIPE] = ACTIONS(392), + [anon_sym_LBRACE] = ACTIONS(394), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [sym__newline] = ACTIONS(446), + [sym__heading_begin] = ACTIONS(398), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(400), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(402), + [sym__block_quote_continuation] = ACTIONS(65), + [sym__thematic_break_dash] = ACTIONS(404), + [sym__thematic_break_star] = ACTIONS(404), + [sym__footnote_begin] = ACTIONS(406), + }, + [54] = { + [sym__block_element] = STATE(467), + [sym_heading] = STATE(467), + [sym_list] = STATE(467), + [sym__list_dash] = STATE(847), + [sym__list_item_dash] = STATE(368), + [sym__list_plus] = STATE(847), + [sym__list_item_plus] = STATE(369), + [sym__list_star] = STATE(847), + [sym__list_item_star] = STATE(370), + [sym__list_task] = STATE(847), + [sym__list_item_task] = STATE(361), + [sym_list_marker_task] = STATE(37), + [sym__list_definition] = STATE(847), + [sym__list_item_definition] = STATE(514), + [sym__list_decimal_period] = STATE(847), + [sym__list_item_decimal_period] = STATE(516), + [sym__list_decimal_paren] = STATE(847), + [sym__list_item_decimal_paren] = STATE(518), + [sym__list_decimal_parens] = STATE(847), + [sym__list_item_decimal_parens] = STATE(522), + [sym__list_lower_alpha_period] = STATE(847), + [sym__list_item_lower_alpha_period] = STATE(526), + [sym__list_lower_alpha_paren] = STATE(847), + [sym__list_item_lower_alpha_paren] = STATE(531), + [sym__list_lower_alpha_parens] = STATE(847), + [sym__list_item_lower_alpha_parens] = STATE(533), + [sym__list_upper_alpha_period] = STATE(847), + [sym__list_item_upper_alpha_period] = STATE(534), + [sym__list_upper_alpha_paren] = STATE(847), + [sym__list_item_upper_alpha_paren] = STATE(535), + [sym__list_upper_alpha_parens] = STATE(847), + [sym__list_item_upper_alpha_parens] = STATE(536), + [sym__list_lower_roman_period] = STATE(847), + [sym__list_item_lower_roman_period] = STATE(471), + [sym__list_lower_roman_paren] = STATE(847), + [sym__list_item_lower_roman_paren] = STATE(537), + [sym__list_lower_roman_parens] = STATE(847), + [sym__list_item_lower_roman_parens] = STATE(538), + [sym__list_upper_roman_period] = STATE(847), + [sym__list_item_upper_roman_period] = STATE(540), + [sym__list_upper_roman_paren] = STATE(847), + [sym__list_item_upper_roman_paren] = STATE(542), + [sym__list_upper_roman_parens] = STATE(847), + [sym__list_item_upper_roman_parens] = STATE(544), + [sym_table] = STATE(467), + [sym__table_content] = STATE(274), + [sym_table_separator] = STATE(274), + [sym_table_row] = STATE(344), + [sym_footnote] = STATE(467), + [sym_div] = STATE(467), + [sym_div_marker_begin] = STATE(935), + [sym_code_block] = STATE(467), + [sym_raw_block] = STATE(467), + [sym_thematic_break] = STATE(467), + [sym_block_quote] = STATE(467), + [sym__block_quote_content] = STATE(970), + [sym__block_quote_prefix] = STATE(435), + [sym_link_reference_definition] = STATE(467), + [sym_block_attribute] = STATE(467), + [sym__paragraph] = STATE(467), + [sym__paragraph_content] = STATE(719), + [sym__inline] = STATE(683), + [sym__symbol_fallback] = STATE(329), + [aux_sym__list_dash_repeat1] = STATE(368), + [aux_sym__list_plus_repeat1] = STATE(369), + [aux_sym__list_star_repeat1] = STATE(370), + [aux_sym__list_task_repeat1] = STATE(361), + [aux_sym__list_definition_repeat1] = STATE(514), + [aux_sym__list_decimal_period_repeat1] = STATE(516), + [aux_sym__list_decimal_paren_repeat1] = STATE(518), + [aux_sym__list_decimal_parens_repeat1] = STATE(522), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(526), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(531), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(533), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(534), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(535), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(536), + [aux_sym__list_lower_roman_period_repeat1] = STATE(471), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(537), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(538), + [aux_sym__list_upper_roman_period_repeat1] = STATE(540), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(542), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(544), + [aux_sym_table_repeat1] = STATE(274), + [aux_sym__block_quote_prefix_repeat1] = STATE(397), + [aux_sym__inline_repeat1] = STATE(329), + [anon_sym_LBRACK] = ACTIONS(448), + [anon_sym_PIPE] = ACTIONS(450), + [anon_sym_LBRACE] = ACTIONS(452), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [sym__heading_begin] = ACTIONS(454), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(456), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(458), + [sym__block_quote_continuation] = ACTIONS(65), + [sym__thematic_break_dash] = ACTIONS(460), + [sym__thematic_break_star] = ACTIONS(460), + [sym__footnote_begin] = ACTIONS(462), + }, + [55] = { + [sym__block_element] = STATE(467), + [sym_heading] = STATE(467), + [sym_list] = STATE(467), + [sym__list_dash] = STATE(847), + [sym__list_item_dash] = STATE(368), + [sym__list_plus] = STATE(847), + [sym__list_item_plus] = STATE(369), + [sym__list_star] = STATE(847), + [sym__list_item_star] = STATE(370), + [sym__list_task] = STATE(847), + [sym__list_item_task] = STATE(361), + [sym_list_marker_task] = STATE(37), + [sym__list_definition] = STATE(847), + [sym__list_item_definition] = STATE(514), + [sym__list_decimal_period] = STATE(847), + [sym__list_item_decimal_period] = STATE(516), + [sym__list_decimal_paren] = STATE(847), + [sym__list_item_decimal_paren] = STATE(518), + [sym__list_decimal_parens] = STATE(847), + [sym__list_item_decimal_parens] = STATE(522), + [sym__list_lower_alpha_period] = STATE(847), + [sym__list_item_lower_alpha_period] = STATE(526), + [sym__list_lower_alpha_paren] = STATE(847), + [sym__list_item_lower_alpha_paren] = STATE(531), + [sym__list_lower_alpha_parens] = STATE(847), + [sym__list_item_lower_alpha_parens] = STATE(533), + [sym__list_upper_alpha_period] = STATE(847), + [sym__list_item_upper_alpha_period] = STATE(534), + [sym__list_upper_alpha_paren] = STATE(847), + [sym__list_item_upper_alpha_paren] = STATE(535), + [sym__list_upper_alpha_parens] = STATE(847), + [sym__list_item_upper_alpha_parens] = STATE(536), + [sym__list_lower_roman_period] = STATE(847), + [sym__list_item_lower_roman_period] = STATE(471), + [sym__list_lower_roman_paren] = STATE(847), + [sym__list_item_lower_roman_paren] = STATE(537), + [sym__list_lower_roman_parens] = STATE(847), + [sym__list_item_lower_roman_parens] = STATE(538), + [sym__list_upper_roman_period] = STATE(847), + [sym__list_item_upper_roman_period] = STATE(540), + [sym__list_upper_roman_paren] = STATE(847), + [sym__list_item_upper_roman_paren] = STATE(542), + [sym__list_upper_roman_parens] = STATE(847), + [sym__list_item_upper_roman_parens] = STATE(544), + [sym_table] = STATE(467), + [sym__table_content] = STATE(274), + [sym_table_separator] = STATE(274), + [sym_table_row] = STATE(344), + [sym_footnote] = STATE(467), + [sym_div] = STATE(467), + [sym_div_marker_begin] = STATE(935), + [sym_code_block] = STATE(467), + [sym_raw_block] = STATE(467), + [sym_thematic_break] = STATE(467), + [sym_block_quote] = STATE(467), + [sym__block_quote_content] = STATE(897), + [sym__block_quote_prefix] = STATE(435), + [sym_link_reference_definition] = STATE(467), + [sym_block_attribute] = STATE(467), + [sym__paragraph] = STATE(467), + [sym__paragraph_content] = STATE(719), + [sym__inline] = STATE(683), + [sym__symbol_fallback] = STATE(329), + [aux_sym__list_dash_repeat1] = STATE(368), + [aux_sym__list_plus_repeat1] = STATE(369), + [aux_sym__list_star_repeat1] = STATE(370), + [aux_sym__list_task_repeat1] = STATE(361), + [aux_sym__list_definition_repeat1] = STATE(514), + [aux_sym__list_decimal_period_repeat1] = STATE(516), + [aux_sym__list_decimal_paren_repeat1] = STATE(518), + [aux_sym__list_decimal_parens_repeat1] = STATE(522), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(526), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(531), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(533), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(534), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(535), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(536), + [aux_sym__list_lower_roman_period_repeat1] = STATE(471), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(537), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(538), + [aux_sym__list_upper_roman_period_repeat1] = STATE(540), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(542), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(544), + [aux_sym_table_repeat1] = STATE(274), + [aux_sym__block_quote_prefix_repeat1] = STATE(397), + [aux_sym__inline_repeat1] = STATE(329), + [anon_sym_LBRACK] = ACTIONS(448), + [anon_sym_PIPE] = ACTIONS(450), + [anon_sym_LBRACE] = ACTIONS(452), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [sym__heading_begin] = ACTIONS(454), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(456), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(458), + [sym__block_quote_continuation] = ACTIONS(65), + [sym__thematic_break_dash] = ACTIONS(460), + [sym__thematic_break_star] = ACTIONS(460), + [sym__footnote_begin] = ACTIONS(462), + }, + [56] = { + [sym__block_element] = STATE(467), + [sym_heading] = STATE(467), + [sym_list] = STATE(467), + [sym__list_dash] = STATE(847), + [sym__list_item_dash] = STATE(368), + [sym__list_plus] = STATE(847), + [sym__list_item_plus] = STATE(369), + [sym__list_star] = STATE(847), + [sym__list_item_star] = STATE(370), + [sym__list_task] = STATE(847), + [sym__list_item_task] = STATE(361), + [sym_list_marker_task] = STATE(37), + [sym__list_definition] = STATE(847), + [sym__list_item_definition] = STATE(514), + [sym__list_decimal_period] = STATE(847), + [sym__list_item_decimal_period] = STATE(516), + [sym__list_decimal_paren] = STATE(847), + [sym__list_item_decimal_paren] = STATE(518), + [sym__list_decimal_parens] = STATE(847), + [sym__list_item_decimal_parens] = STATE(522), + [sym__list_lower_alpha_period] = STATE(847), + [sym__list_item_lower_alpha_period] = STATE(526), + [sym__list_lower_alpha_paren] = STATE(847), + [sym__list_item_lower_alpha_paren] = STATE(531), + [sym__list_lower_alpha_parens] = STATE(847), + [sym__list_item_lower_alpha_parens] = STATE(533), + [sym__list_upper_alpha_period] = STATE(847), + [sym__list_item_upper_alpha_period] = STATE(534), + [sym__list_upper_alpha_paren] = STATE(847), + [sym__list_item_upper_alpha_paren] = STATE(535), + [sym__list_upper_alpha_parens] = STATE(847), + [sym__list_item_upper_alpha_parens] = STATE(536), + [sym__list_lower_roman_period] = STATE(847), + [sym__list_item_lower_roman_period] = STATE(471), + [sym__list_lower_roman_paren] = STATE(847), + [sym__list_item_lower_roman_paren] = STATE(537), + [sym__list_lower_roman_parens] = STATE(847), + [sym__list_item_lower_roman_parens] = STATE(538), + [sym__list_upper_roman_period] = STATE(847), + [sym__list_item_upper_roman_period] = STATE(540), + [sym__list_upper_roman_paren] = STATE(847), + [sym__list_item_upper_roman_paren] = STATE(542), + [sym__list_upper_roman_parens] = STATE(847), + [sym__list_item_upper_roman_parens] = STATE(544), + [sym_table] = STATE(467), + [sym__table_content] = STATE(274), + [sym_table_separator] = STATE(274), + [sym_table_row] = STATE(344), + [sym_footnote] = STATE(467), + [sym_div] = STATE(467), + [sym_div_marker_begin] = STATE(935), + [sym_code_block] = STATE(467), + [sym_raw_block] = STATE(467), + [sym_thematic_break] = STATE(467), + [sym_block_quote] = STATE(467), + [sym__block_quote_content] = STATE(1034), + [sym__block_quote_prefix] = STATE(435), + [sym_link_reference_definition] = STATE(467), + [sym_block_attribute] = STATE(467), + [sym__paragraph] = STATE(467), + [sym__paragraph_content] = STATE(719), + [sym__inline] = STATE(683), + [sym__symbol_fallback] = STATE(329), + [aux_sym__list_dash_repeat1] = STATE(368), + [aux_sym__list_plus_repeat1] = STATE(369), + [aux_sym__list_star_repeat1] = STATE(370), + [aux_sym__list_task_repeat1] = STATE(361), + [aux_sym__list_definition_repeat1] = STATE(514), + [aux_sym__list_decimal_period_repeat1] = STATE(516), + [aux_sym__list_decimal_paren_repeat1] = STATE(518), + [aux_sym__list_decimal_parens_repeat1] = STATE(522), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(526), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(531), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(533), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(534), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(535), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(536), + [aux_sym__list_lower_roman_period_repeat1] = STATE(471), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(537), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(538), + [aux_sym__list_upper_roman_period_repeat1] = STATE(540), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(542), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(544), + [aux_sym_table_repeat1] = STATE(274), + [aux_sym__block_quote_prefix_repeat1] = STATE(397), + [aux_sym__inline_repeat1] = STATE(329), + [anon_sym_LBRACK] = ACTIONS(448), + [anon_sym_PIPE] = ACTIONS(450), + [anon_sym_LBRACE] = ACTIONS(452), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [sym__heading_begin] = ACTIONS(454), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(456), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(458), + [sym__block_quote_continuation] = ACTIONS(65), + [sym__thematic_break_dash] = ACTIONS(460), + [sym__thematic_break_star] = ACTIONS(460), + [sym__footnote_begin] = ACTIONS(462), + }, + [57] = { + [sym__block_element] = STATE(467), + [sym_heading] = STATE(467), + [sym_list] = STATE(467), + [sym__list_dash] = STATE(847), + [sym__list_item_dash] = STATE(368), + [sym__list_plus] = STATE(847), + [sym__list_item_plus] = STATE(369), + [sym__list_star] = STATE(847), + [sym__list_item_star] = STATE(370), + [sym__list_task] = STATE(847), + [sym__list_item_task] = STATE(361), + [sym_list_marker_task] = STATE(37), + [sym__list_definition] = STATE(847), + [sym__list_item_definition] = STATE(514), + [sym__list_decimal_period] = STATE(847), + [sym__list_item_decimal_period] = STATE(516), + [sym__list_decimal_paren] = STATE(847), + [sym__list_item_decimal_paren] = STATE(518), + [sym__list_decimal_parens] = STATE(847), + [sym__list_item_decimal_parens] = STATE(522), + [sym__list_lower_alpha_period] = STATE(847), + [sym__list_item_lower_alpha_period] = STATE(526), + [sym__list_lower_alpha_paren] = STATE(847), + [sym__list_item_lower_alpha_paren] = STATE(531), + [sym__list_lower_alpha_parens] = STATE(847), + [sym__list_item_lower_alpha_parens] = STATE(533), + [sym__list_upper_alpha_period] = STATE(847), + [sym__list_item_upper_alpha_period] = STATE(534), + [sym__list_upper_alpha_paren] = STATE(847), + [sym__list_item_upper_alpha_paren] = STATE(535), + [sym__list_upper_alpha_parens] = STATE(847), + [sym__list_item_upper_alpha_parens] = STATE(536), + [sym__list_lower_roman_period] = STATE(847), + [sym__list_item_lower_roman_period] = STATE(471), + [sym__list_lower_roman_paren] = STATE(847), + [sym__list_item_lower_roman_paren] = STATE(537), + [sym__list_lower_roman_parens] = STATE(847), + [sym__list_item_lower_roman_parens] = STATE(538), + [sym__list_upper_roman_period] = STATE(847), + [sym__list_item_upper_roman_period] = STATE(540), + [sym__list_upper_roman_paren] = STATE(847), + [sym__list_item_upper_roman_paren] = STATE(542), + [sym__list_upper_roman_parens] = STATE(847), + [sym__list_item_upper_roman_parens] = STATE(544), + [sym_table] = STATE(467), + [sym__table_content] = STATE(274), + [sym_table_separator] = STATE(274), + [sym_table_row] = STATE(344), + [sym_footnote] = STATE(467), + [sym_div] = STATE(467), + [sym_div_marker_begin] = STATE(935), + [sym_code_block] = STATE(467), + [sym_raw_block] = STATE(467), + [sym_thematic_break] = STATE(467), + [sym_block_quote] = STATE(467), + [sym__block_quote_content] = STATE(869), + [sym__block_quote_prefix] = STATE(435), + [sym_link_reference_definition] = STATE(467), + [sym_block_attribute] = STATE(467), + [sym__paragraph] = STATE(467), + [sym__paragraph_content] = STATE(719), + [sym__inline] = STATE(683), + [sym__symbol_fallback] = STATE(329), + [aux_sym__list_dash_repeat1] = STATE(368), + [aux_sym__list_plus_repeat1] = STATE(369), + [aux_sym__list_star_repeat1] = STATE(370), + [aux_sym__list_task_repeat1] = STATE(361), + [aux_sym__list_definition_repeat1] = STATE(514), + [aux_sym__list_decimal_period_repeat1] = STATE(516), + [aux_sym__list_decimal_paren_repeat1] = STATE(518), + [aux_sym__list_decimal_parens_repeat1] = STATE(522), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(526), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(531), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(533), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(534), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(535), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(536), + [aux_sym__list_lower_roman_period_repeat1] = STATE(471), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(537), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(538), + [aux_sym__list_upper_roman_period_repeat1] = STATE(540), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(542), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(544), + [aux_sym_table_repeat1] = STATE(274), + [aux_sym__block_quote_prefix_repeat1] = STATE(397), + [aux_sym__inline_repeat1] = STATE(329), + [anon_sym_LBRACK] = ACTIONS(448), + [anon_sym_PIPE] = ACTIONS(450), + [anon_sym_LBRACE] = ACTIONS(452), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [sym__heading_begin] = ACTIONS(454), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(456), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(458), + [sym__block_quote_continuation] = ACTIONS(65), + [sym__thematic_break_dash] = ACTIONS(460), + [sym__thematic_break_star] = ACTIONS(460), + [sym__footnote_begin] = ACTIONS(462), + }, + [58] = { + [sym__block_element] = STATE(467), + [sym_heading] = STATE(467), + [sym_list] = STATE(467), + [sym__list_dash] = STATE(847), + [sym__list_item_dash] = STATE(368), + [sym__list_plus] = STATE(847), + [sym__list_item_plus] = STATE(369), + [sym__list_star] = STATE(847), + [sym__list_item_star] = STATE(370), + [sym__list_task] = STATE(847), + [sym__list_item_task] = STATE(361), + [sym_list_marker_task] = STATE(37), + [sym__list_definition] = STATE(847), + [sym__list_item_definition] = STATE(514), + [sym__list_decimal_period] = STATE(847), + [sym__list_item_decimal_period] = STATE(516), + [sym__list_decimal_paren] = STATE(847), + [sym__list_item_decimal_paren] = STATE(518), + [sym__list_decimal_parens] = STATE(847), + [sym__list_item_decimal_parens] = STATE(522), + [sym__list_lower_alpha_period] = STATE(847), + [sym__list_item_lower_alpha_period] = STATE(526), + [sym__list_lower_alpha_paren] = STATE(847), + [sym__list_item_lower_alpha_paren] = STATE(531), + [sym__list_lower_alpha_parens] = STATE(847), + [sym__list_item_lower_alpha_parens] = STATE(533), + [sym__list_upper_alpha_period] = STATE(847), + [sym__list_item_upper_alpha_period] = STATE(534), + [sym__list_upper_alpha_paren] = STATE(847), + [sym__list_item_upper_alpha_paren] = STATE(535), + [sym__list_upper_alpha_parens] = STATE(847), + [sym__list_item_upper_alpha_parens] = STATE(536), + [sym__list_lower_roman_period] = STATE(847), + [sym__list_item_lower_roman_period] = STATE(471), + [sym__list_lower_roman_paren] = STATE(847), + [sym__list_item_lower_roman_paren] = STATE(537), + [sym__list_lower_roman_parens] = STATE(847), + [sym__list_item_lower_roman_parens] = STATE(538), + [sym__list_upper_roman_period] = STATE(847), + [sym__list_item_upper_roman_period] = STATE(540), + [sym__list_upper_roman_paren] = STATE(847), + [sym__list_item_upper_roman_paren] = STATE(542), + [sym__list_upper_roman_parens] = STATE(847), + [sym__list_item_upper_roman_parens] = STATE(544), + [sym_table] = STATE(467), + [sym__table_content] = STATE(274), + [sym_table_separator] = STATE(274), + [sym_table_row] = STATE(344), + [sym_footnote] = STATE(467), + [sym_div] = STATE(467), + [sym_div_marker_begin] = STATE(935), + [sym_code_block] = STATE(467), + [sym_raw_block] = STATE(467), + [sym_thematic_break] = STATE(467), + [sym_block_quote] = STATE(467), + [sym__block_quote_content] = STATE(930), + [sym__block_quote_prefix] = STATE(435), + [sym_link_reference_definition] = STATE(467), + [sym_block_attribute] = STATE(467), + [sym__paragraph] = STATE(467), + [sym__paragraph_content] = STATE(719), + [sym__inline] = STATE(683), + [sym__symbol_fallback] = STATE(329), + [aux_sym__list_dash_repeat1] = STATE(368), + [aux_sym__list_plus_repeat1] = STATE(369), + [aux_sym__list_star_repeat1] = STATE(370), + [aux_sym__list_task_repeat1] = STATE(361), + [aux_sym__list_definition_repeat1] = STATE(514), + [aux_sym__list_decimal_period_repeat1] = STATE(516), + [aux_sym__list_decimal_paren_repeat1] = STATE(518), + [aux_sym__list_decimal_parens_repeat1] = STATE(522), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(526), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(531), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(533), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(534), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(535), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(536), + [aux_sym__list_lower_roman_period_repeat1] = STATE(471), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(537), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(538), + [aux_sym__list_upper_roman_period_repeat1] = STATE(540), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(542), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(544), + [aux_sym_table_repeat1] = STATE(274), + [aux_sym__block_quote_prefix_repeat1] = STATE(397), + [aux_sym__inline_repeat1] = STATE(329), + [anon_sym_LBRACK] = ACTIONS(448), + [anon_sym_PIPE] = ACTIONS(450), + [anon_sym_LBRACE] = ACTIONS(452), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [sym__heading_begin] = ACTIONS(454), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(456), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(458), + [sym__block_quote_continuation] = ACTIONS(65), + [sym__thematic_break_dash] = ACTIONS(460), + [sym__thematic_break_star] = ACTIONS(460), + [sym__footnote_begin] = ACTIONS(462), + }, + [59] = { + [sym__block_element] = STATE(849), + [sym_list] = STATE(849), + [sym__list_dash] = STATE(847), + [sym__list_item_dash] = STATE(368), + [sym__list_plus] = STATE(847), + [sym__list_item_plus] = STATE(369), + [sym__list_star] = STATE(847), + [sym__list_item_star] = STATE(370), + [sym__list_task] = STATE(847), + [sym__list_item_task] = STATE(361), + [sym_list_marker_task] = STATE(37), + [sym__list_definition] = STATE(847), + [sym__list_item_definition] = STATE(514), + [sym__list_decimal_period] = STATE(847), + [sym__list_item_decimal_period] = STATE(516), + [sym__list_decimal_paren] = STATE(847), + [sym__list_item_decimal_paren] = STATE(518), + [sym__list_decimal_parens] = STATE(847), + [sym__list_item_decimal_parens] = STATE(522), + [sym__list_lower_alpha_period] = STATE(847), + [sym__list_item_lower_alpha_period] = STATE(526), + [sym__list_lower_alpha_paren] = STATE(847), + [sym__list_item_lower_alpha_paren] = STATE(531), + [sym__list_lower_alpha_parens] = STATE(847), + [sym__list_item_lower_alpha_parens] = STATE(533), + [sym__list_upper_alpha_period] = STATE(847), + [sym__list_item_upper_alpha_period] = STATE(534), + [sym__list_upper_alpha_paren] = STATE(847), + [sym__list_item_upper_alpha_paren] = STATE(535), + [sym__list_upper_alpha_parens] = STATE(847), + [sym__list_item_upper_alpha_parens] = STATE(536), + [sym__list_lower_roman_period] = STATE(847), + [sym__list_item_lower_roman_period] = STATE(471), + [sym__list_lower_roman_paren] = STATE(847), + [sym__list_item_lower_roman_paren] = STATE(537), + [sym__list_lower_roman_parens] = STATE(847), + [sym__list_item_lower_roman_parens] = STATE(538), + [sym__list_upper_roman_period] = STATE(847), + [sym__list_item_upper_roman_period] = STATE(540), + [sym__list_upper_roman_paren] = STATE(847), + [sym__list_item_upper_roman_paren] = STATE(542), + [sym__list_upper_roman_parens] = STATE(847), + [sym__list_item_upper_roman_parens] = STATE(544), + [sym_table] = STATE(849), + [sym__table_content] = STATE(274), + [sym_table_separator] = STATE(274), + [sym_table_row] = STATE(344), + [sym_footnote] = STATE(849), + [sym_div] = STATE(849), + [sym_div_marker_begin] = STATE(935), + [sym_code_block] = STATE(849), + [sym_raw_block] = STATE(849), + [sym_thematic_break] = STATE(849), + [sym_block_quote] = STATE(849), + [sym__block_quote_prefix] = STATE(435), + [sym_link_reference_definition] = STATE(849), + [sym_block_attribute] = STATE(849), + [sym__paragraph] = STATE(849), + [sym__paragraph_content] = STATE(719), + [sym__inline] = STATE(683), + [sym__symbol_fallback] = STATE(329), + [aux_sym__list_dash_repeat1] = STATE(368), + [aux_sym__list_plus_repeat1] = STATE(369), + [aux_sym__list_star_repeat1] = STATE(370), + [aux_sym__list_task_repeat1] = STATE(361), + [aux_sym__list_definition_repeat1] = STATE(514), + [aux_sym__list_decimal_period_repeat1] = STATE(516), + [aux_sym__list_decimal_paren_repeat1] = STATE(518), + [aux_sym__list_decimal_parens_repeat1] = STATE(522), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(526), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(531), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(533), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(534), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(535), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(536), + [aux_sym__list_lower_roman_period_repeat1] = STATE(471), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(537), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(538), + [aux_sym__list_upper_roman_period_repeat1] = STATE(540), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(542), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(544), + [aux_sym_table_repeat1] = STATE(274), + [aux_sym__block_quote_prefix_repeat1] = STATE(397), + [aux_sym__inline_repeat1] = STATE(329), + [anon_sym_LBRACK] = ACTIONS(448), + [anon_sym_PIPE] = ACTIONS(450), + [anon_sym_LBRACE] = ACTIONS(452), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [sym__block_close] = ACTIONS(464), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(456), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(458), + [sym__block_quote_continuation] = ACTIONS(466), + [sym__thematic_break_dash] = ACTIONS(460), + [sym__thematic_break_star] = ACTIONS(460), + [sym__footnote_begin] = ACTIONS(462), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 11, + ACTIONS(471), 1, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [16826] = 2, - ACTIONS(3498), 8, + ACTIONS(473), 1, + sym__newline, + ACTIONS(477), 1, + sym__block_quote_continuation, + ACTIONS(479), 1, + sym__table_caption_begin, + STATE(67), 1, + sym_table_row, + STATE(168), 1, + sym_table_caption, + STATE(664), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(1019), 1, + sym__block_quote_prefix, + STATE(64), 3, + sym__table_content, + sym_table_separator, + aux_sym_table_repeat1, + ACTIONS(469), 4, anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_CARET, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3500), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [16868] = 2, - ACTIONS(3502), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_CARET, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3504), 29, - sym__newline_inline, - sym__verbatim_begin, + ACTIONS(475), 28, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + sym__footnote_end, + [66] = 11, + ACTIONS(477), 1, + sym__block_quote_continuation, + ACTIONS(481), 1, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [16910] = 2, - ACTIONS(3506), 8, + ACTIONS(483), 1, + sym__newline, + ACTIONS(485), 1, + sym__table_caption_begin, + STATE(66), 1, + sym_table_row, + STATE(176), 1, + sym_table_caption, + STATE(664), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(1046), 1, + sym__block_quote_prefix, + STATE(63), 3, + sym__table_content, + sym_table_separator, + aux_sym_table_repeat1, + ACTIONS(469), 4, anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_CARET, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3508), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [16952] = 2, - ACTIONS(3510), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_CARET, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3512), 29, - sym__newline_inline, - sym__verbatim_begin, + ACTIONS(475), 28, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + ts_builtin_sym_end, + [132] = 11, + ACTIONS(477), 1, + sym__block_quote_continuation, + ACTIONS(487), 1, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [16994] = 2, - ACTIONS(3514), 8, + ACTIONS(489), 1, + sym__newline, + ACTIONS(491), 1, + sym__table_caption_begin, + STATE(68), 1, + sym_table_row, + STATE(232), 1, + sym_table_caption, + STATE(664), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(1012), 1, + sym__block_quote_prefix, + STATE(65), 3, + sym__table_content, + sym_table_separator, + aux_sym_table_repeat1, + ACTIONS(469), 4, anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_CARET, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3516), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [17036] = 2, - ACTIONS(3536), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3538), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_RBRACK, + ACTIONS(475), 28, + sym__block_close, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + [198] = 8, + ACTIONS(497), 1, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [17078] = 2, - ACTIONS(3540), 7, + ACTIONS(500), 1, + sym__block_quote_continuation, + STATE(66), 1, + sym_table_row, + STATE(664), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(1046), 1, + sym__block_quote_prefix, + STATE(63), 3, + sym__table_content, + sym_table_separator, + aux_sym_table_repeat1, + ACTIONS(495), 4, anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3542), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_RBRACK, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [17120] = 3, - ACTIONS(3678), 1, - sym__verbatim_begin, - ACTIONS(908), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(861), 29, - sym__newline_inline, - anon_sym_RBRACK, + ACTIONS(493), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + sym__table_caption_begin, + ts_builtin_sym_end, + [257] = 8, + ACTIONS(500), 1, + sym__block_quote_continuation, + ACTIONS(503), 1, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [17164] = 2, - ACTIONS(3518), 8, + STATE(67), 1, + sym_table_row, + STATE(664), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(1019), 1, + sym__block_quote_prefix, + STATE(64), 3, + sym__table_content, + sym_table_separator, + aux_sym_table_repeat1, + ACTIONS(495), 4, anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_CARET, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3520), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [17206] = 4, - ACTIONS(861), 1, - anon_sym_RBRACK, - ACTIONS(908), 1, - anon_sym_LBRACE2, - ACTIONS(3227), 6, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3232), 29, - sym__newline_inline, - sym__verbatim_begin, + ACTIONS(493), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + sym__footnote_end, + sym__table_caption_begin, + [316] = 8, + ACTIONS(500), 1, + sym__block_quote_continuation, + ACTIONS(506), 1, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [17252] = 4, - ACTIONS(861), 1, - anon_sym_RBRACK, - ACTIONS(908), 1, - anon_sym_LBRACE2, - ACTIONS(3235), 6, + STATE(68), 1, + sym_table_row, + STATE(664), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(1012), 1, + sym__block_quote_prefix, + STATE(65), 3, + sym__table_content, + sym_table_separator, + aux_sym_table_repeat1, + ACTIONS(495), 4, anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3240), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [17298] = 4, - ACTIONS(3681), 1, - anon_sym_LBRACE, - STATE(872), 1, - sym_comment, - ACTIONS(3552), 5, - anon_sym_LBRACK, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3554), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_RBRACK, + ACTIONS(493), 30, + sym__block_close, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + sym__table_caption_begin, + [375] = 7, + ACTIONS(513), 1, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [17344] = 2, - ACTIONS(3475), 9, + ACTIONS(516), 1, + sym__block_quote_continuation, + STATE(117), 1, + sym_table_separator, + STATE(664), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(1009), 1, + sym__block_quote_prefix, + ACTIONS(511), 4, anon_sym_LBRACK, anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_STAR, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3477), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [17386] = 2, - ACTIONS(3522), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_CARET, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3524), 29, - sym__newline_inline, - sym__verbatim_begin, + ACTIONS(509), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + sym__table_caption_begin, + ts_builtin_sym_end, + [429] = 7, + ACTIONS(516), 1, + sym__block_quote_continuation, + ACTIONS(519), 1, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [17428] = 2, - ACTIONS(3471), 9, + STATE(91), 1, + sym_table_separator, + STATE(664), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(1036), 1, + sym__block_quote_prefix, + ACTIONS(511), 4, anon_sym_LBRACK, anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_STAR, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3473), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [17470] = 2, - ACTIONS(3415), 9, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_STAR, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3417), 28, - sym__newline_inline, - sym__verbatim_begin, + ACTIONS(509), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + sym__footnote_end, + sym__table_caption_begin, + [483] = 7, + ACTIONS(516), 1, + sym__block_quote_continuation, + ACTIONS(522), 1, anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [17512] = 2, - ACTIONS(3465), 9, + STATE(87), 1, + sym_table_separator, + STATE(664), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(1032), 1, + sym__block_quote_prefix, + ACTIONS(511), 4, anon_sym_LBRACK, anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_STAR, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3467), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [17554] = 2, - ACTIONS(3461), 9, + ACTIONS(509), 30, + sym__block_close, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + sym__table_caption_begin, + [537] = 4, + ACTIONS(479), 1, + sym__table_caption_begin, + STATE(164), 1, + sym_table_caption, + ACTIONS(525), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_STAR, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3463), 28, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + anon_sym_LBRACE, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [17596] = 2, - ACTIONS(3457), 9, + ACTIONS(527), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + sym__footnote_end, + [583] = 4, + ACTIONS(491), 1, + sym__table_caption_begin, + STATE(229), 1, + sym_table_caption, + ACTIONS(525), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_STAR, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3459), 28, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [17638] = 2, - ACTIONS(3536), 8, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_CARET, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3538), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [17680] = 2, - ACTIONS(3540), 8, + ACTIONS(527), 30, + sym__block_close, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + [629] = 4, + ACTIONS(485), 1, + sym__table_caption_begin, + STATE(233), 1, + sym_table_caption, + ACTIONS(525), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_CARET, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3542), 29, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [17722] = 4, - ACTIONS(3684), 1, anon_sym_LBRACE, - STATE(1037), 1, - sym_comment, - ACTIONS(3552), 5, - anon_sym_LBRACK, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3554), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [17768] = 2, - ACTIONS(3518), 7, + ACTIONS(527), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + ts_builtin_sym_end, + [675] = 3, + ACTIONS(533), 1, + sym__code_block_end, + ACTIONS(529), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3520), 30, - sym__eof_or_newline, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + anon_sym_LBRACE, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [17810] = 4, - ACTIONS(3687), 1, + ACTIONS(531), 30, + sym__block_close, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, sym__block_quote_continuation, - STATE(896), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(3156), 6, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + [718] = 3, + ACTIONS(539), 1, + sym__code_block_end, + ACTIONS(535), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3158), 29, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + anon_sym_LBRACE, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [17856] = 4, - ACTIONS(3690), 1, + ACTIONS(537), 30, + sym__block_close, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, sym__block_quote_continuation, - STATE(896), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(3211), 6, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + [761] = 3, + ACTIONS(545), 1, + sym__div_end, + ACTIONS(541), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3213), 29, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + anon_sym_LBRACE, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [17902] = 4, - ACTIONS(861), 1, - anon_sym_EQ_RBRACE, - ACTIONS(908), 1, - anon_sym_LBRACE2, - ACTIONS(3235), 6, + ACTIONS(543), 30, + sym__block_close, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + [804] = 2, + ACTIONS(547), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3240), 29, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + anon_sym_LBRACE, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [17948] = 2, - ACTIONS(3514), 7, + ACTIONS(549), 31, + sym__block_close, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + sym__table_caption_begin, + [845] = 2, + ACTIONS(551), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3516), 30, - sym__eof_or_newline, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + anon_sym_LBRACE, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [17990] = 4, - ACTIONS(861), 1, - anon_sym_EQ_RBRACE, - ACTIONS(908), 1, - anon_sym_LBRACE2, - ACTIONS(3227), 6, + ACTIONS(553), 31, + sym__block_close, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + sym__table_caption_begin, + [886] = 3, + ACTIONS(559), 1, + sym__code_block_end, + ACTIONS(555), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3232), 29, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [18036] = 2, - ACTIONS(3510), 7, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3512), 30, - sym__eof_or_newline, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [18078] = 2, - ACTIONS(3522), 7, + ACTIONS(557), 30, + sym__block_close, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + [929] = 3, + ACTIONS(565), 1, + sym__code_block_end, + ACTIONS(561), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3524), 30, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [18120] = 2, - ACTIONS(3502), 7, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3504), 30, - sym__eof_or_newline, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [18162] = 2, - ACTIONS(3498), 7, + ACTIONS(563), 30, + sym__block_close, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + [972] = 3, + ACTIONS(571), 1, + sym__div_end, + ACTIONS(567), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3500), 30, - sym__eof_or_newline, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [18204] = 2, - ACTIONS(3494), 7, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3496), 30, - sym__eof_or_newline, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [18246] = 3, - ACTIONS(3692), 1, - sym__verbatim_begin, - ACTIONS(908), 8, + ACTIONS(569), 30, + sym__block_close, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + [1015] = 3, + ACTIONS(577), 1, + sym__div_end, + ACTIONS(573), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_CARET, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(861), 28, - sym__newline_inline, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [18290] = 2, - ACTIONS(3453), 9, - anon_sym_LBRACK, anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_STAR, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3455), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [18332] = 3, - ACTIONS(3695), 1, - sym__verbatim_begin, - ACTIONS(908), 7, + ACTIONS(575), 30, + sym__block_close, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + [1058] = 2, + ACTIONS(579), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(861), 29, - sym__newline_inline, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, + anon_sym_LBRACE, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [18376] = 2, - ACTIONS(3540), 7, + ACTIONS(581), 31, + sym__block_close, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + sym__table_caption_begin, + [1099] = 2, + ACTIONS(583), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3542), 30, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, + anon_sym_LBRACE, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [18418] = 2, - ACTIONS(3536), 7, + ACTIONS(585), 31, + sym__block_close, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + sym__table_caption_begin, + [1140] = 3, + ACTIONS(591), 1, + sym__code_block_end, + ACTIONS(587), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3538), 30, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, + anon_sym_LBRACE, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [18460] = 2, - ACTIONS(3449), 9, + ACTIONS(589), 30, + sym__block_close, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + [1183] = 3, + ACTIONS(597), 1, + sym__div_end, + ACTIONS(593), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_STAR, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3451), 28, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [18502] = 2, - ACTIONS(3445), 9, - anon_sym_LBRACK, anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_STAR, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3447), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [18544] = 2, - ACTIONS(3585), 7, + ACTIONS(595), 30, + sym__block_close, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + [1226] = 3, + ACTIONS(601), 1, + sym__eof_or_newline, + ACTIONS(599), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3587), 30, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [18586] = 2, - ACTIONS(3589), 7, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3591), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [18628] = 2, - ACTIONS(3429), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3431), 30, + ACTIONS(603), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + sym__footnote_end, + [1269] = 3, + ACTIONS(607), 1, sym__eof_or_newline, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [18670] = 2, - ACTIONS(3422), 7, + ACTIONS(605), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3424), 30, - sym__eof_or_newline, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [18712] = 2, - ACTIONS(3585), 9, - anon_sym_LBRACK, anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_STAR, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3587), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [18754] = 4, - ACTIONS(861), 1, - anon_sym_CARET_RBRACE, - ACTIONS(908), 1, - anon_sym_LBRACE2, - ACTIONS(3227), 7, + ACTIONS(609), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + sym__footnote_end, + [1312] = 2, + ACTIONS(611), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_CARET, - aux_sym__text_token1, - ACTIONS(3232), 28, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [18800] = 2, - ACTIONS(3589), 9, - anon_sym_LBRACK, anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_STAR, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3591), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [18842] = 2, - ACTIONS(3522), 7, + ACTIONS(613), 31, + sym__block_close, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + sym__table_caption_begin, + [1353] = 2, + ACTIONS(615), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3524), 30, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [18884] = 2, - ACTIONS(3441), 9, - anon_sym_LBRACK, anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_STAR, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3443), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [18926] = 4, - ACTIONS(861), 1, - anon_sym_CARET_RBRACE, - ACTIONS(908), 1, - anon_sym_LBRACE2, - ACTIONS(3235), 7, + ACTIONS(617), 31, + sym__block_close, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + sym__table_caption_begin, + [1394] = 2, + ACTIONS(619), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_CARET, - aux_sym__text_token1, - ACTIONS(3240), 28, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + anon_sym_LBRACE, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [18972] = 2, - ACTIONS(3437), 9, + ACTIONS(621), 31, + sym__block_close, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + sym__table_caption_begin, + [1435] = 3, + ACTIONS(623), 1, + sym__eof_or_newline, + ACTIONS(605), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_STAR, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3439), 28, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [19014] = 2, - ACTIONS(3585), 9, - anon_sym_LBRACK, anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym__, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3587), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [19056] = 2, - ACTIONS(3518), 7, + ACTIONS(609), 30, + sym__block_close, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + [1478] = 2, + ACTIONS(611), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3520), 30, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [19098] = 2, - ACTIONS(3514), 7, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3516), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [19140] = 2, - ACTIONS(3510), 7, + ACTIONS(613), 31, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + sym__footnote_end, + sym__table_caption_begin, + [1519] = 3, + ACTIONS(625), 1, + sym__eof_or_newline, + ACTIONS(605), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3512), 30, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [19182] = 2, - ACTIONS(3506), 7, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3508), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [19224] = 2, - ACTIONS(3502), 7, + ACTIONS(609), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + ts_builtin_sym_end, + [1562] = 2, + ACTIONS(619), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3504), 30, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [19266] = 2, - ACTIONS(3498), 7, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3500), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [19308] = 2, - ACTIONS(3494), 7, + ACTIONS(621), 31, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + sym__table_caption_begin, + ts_builtin_sym_end, + [1603] = 2, + ACTIONS(615), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3496), 30, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [19350] = 2, - ACTIONS(3589), 9, - anon_sym_LBRACK, anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym__, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3591), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [19392] = 2, - ACTIONS(3585), 6, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3587), 31, + ACTIONS(617), 31, sym__newline, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - anon_sym_NULL, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [19434] = 2, - ACTIONS(3585), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_TILDE, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3587), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [19476] = 2, - ACTIONS(3589), 8, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + sym__table_caption_begin, + ts_builtin_sym_end, + [1644] = 3, + ACTIONS(627), 1, + sym__code_block_end, + ACTIONS(529), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_TILDE, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3591), 29, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [19518] = 2, - ACTIONS(3585), 8, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_CARET, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3587), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [19560] = 2, - ACTIONS(3589), 8, + ACTIONS(531), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + ts_builtin_sym_end, + [1687] = 3, + ACTIONS(629), 1, + sym__code_block_end, + ACTIONS(535), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_CARET, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3591), 29, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [19602] = 2, - ACTIONS(3585), 7, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3587), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [19644] = 2, - ACTIONS(3589), 7, + ACTIONS(537), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + ts_builtin_sym_end, + [1730] = 3, + ACTIONS(631), 1, + sym__div_end, + ACTIONS(541), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3591), 30, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [19686] = 2, - ACTIONS(3585), 7, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3587), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [19728] = 2, - ACTIONS(3589), 7, + ACTIONS(543), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + ts_builtin_sym_end, + [1773] = 2, + ACTIONS(547), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3591), 30, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [19770] = 2, - ACTIONS(3585), 7, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3587), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [19812] = 2, - ACTIONS(3589), 7, + ACTIONS(549), 31, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + sym__table_caption_begin, + ts_builtin_sym_end, + [1814] = 2, + ACTIONS(551), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3591), 30, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, + anon_sym_LBRACE, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [19854] = 2, - ACTIONS(3433), 9, + ACTIONS(553), 31, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + sym__table_caption_begin, + ts_builtin_sym_end, + [1855] = 3, + ACTIONS(633), 1, + sym__code_block_end, + ACTIONS(555), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_STAR, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3435), 28, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + anon_sym_LBRACE, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [19896] = 2, - ACTIONS(3429), 9, + ACTIONS(557), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + ts_builtin_sym_end, + [1898] = 3, + ACTIONS(635), 1, + sym__code_block_end, + ACTIONS(561), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_STAR, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3431), 28, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + anon_sym_LBRACE, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [19938] = 2, - ACTIONS(3585), 7, + ACTIONS(563), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + ts_builtin_sym_end, + [1941] = 3, + ACTIONS(637), 1, + sym__div_end, + ACTIONS(593), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3587), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_RBRACK, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + anon_sym_LBRACE, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [19980] = 2, - ACTIONS(3589), 7, + ACTIONS(595), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + sym__footnote_end, + [1984] = 3, + ACTIONS(639), 1, + sym__div_end, + ACTIONS(567), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3591), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_RBRACK, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [20022] = 4, - ACTIONS(3698), 1, anon_sym_LBRACE, - STATE(820), 1, - sym_comment, - ACTIONS(3552), 6, - anon_sym_LBRACK, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_TILDE, - aux_sym__text_token1, - ACTIONS(3554), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [20068] = 4, - ACTIONS(3701), 1, + ACTIONS(569), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, sym__block_quote_continuation, - STATE(949), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(3156), 7, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + ts_builtin_sym_end, + [2027] = 3, + ACTIONS(641), 1, + sym__div_end, + ACTIONS(573), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3158), 28, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [20114] = 2, - ACTIONS(3589), 6, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3591), 31, - sym__newline, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - anon_sym_NULL, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [20156] = 4, - ACTIONS(3704), 1, + ACTIONS(575), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, sym__block_quote_continuation, - STATE(949), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(3211), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3213), 28, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [20202] = 2, - ACTIONS(3387), 7, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + ts_builtin_sym_end, + [2070] = 2, + ACTIONS(579), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3389), 30, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [20244] = 2, - ACTIONS(3393), 7, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3395), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [20286] = 2, - ACTIONS(3397), 7, + ACTIONS(581), 31, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + sym__table_caption_begin, + ts_builtin_sym_end, + [2111] = 2, + ACTIONS(583), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3399), 30, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [20328] = 2, - ACTIONS(3422), 7, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3424), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [20370] = 2, - ACTIONS(3429), 7, + ACTIONS(585), 31, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + sym__table_caption_begin, + ts_builtin_sym_end, + [2152] = 3, + ACTIONS(643), 1, + sym__code_block_end, + ACTIONS(587), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3431), 30, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [20412] = 2, - ACTIONS(3433), 7, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3435), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [20454] = 2, - ACTIONS(3706), 6, + ACTIONS(589), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + sym__footnote_end, + [2195] = 2, + ACTIONS(583), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3708), 31, - sym__newline_inline, - sym__table_caption_end, - sym__verbatim_begin, anon_sym_PIPE, - anon_sym_NULL, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [20496] = 2, - ACTIONS(3437), 7, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3439), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [20538] = 2, - ACTIONS(3441), 7, + ACTIONS(585), 31, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + sym__footnote_end, + sym__table_caption_begin, + [2236] = 3, + ACTIONS(645), 1, + sym__code_block_end, + ACTIONS(587), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3443), 30, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [20580] = 2, - ACTIONS(3445), 7, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3447), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [20622] = 2, - ACTIONS(3449), 7, + ACTIONS(589), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + ts_builtin_sym_end, + [2279] = 2, + ACTIONS(579), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3451), 30, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [20664] = 2, - ACTIONS(3453), 7, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3455), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [20706] = 2, - ACTIONS(3479), 7, + ACTIONS(581), 31, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + sym__footnote_end, + sym__table_caption_begin, + [2320] = 3, + ACTIONS(647), 1, + sym__div_end, + ACTIONS(593), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3481), 30, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [20748] = 2, - ACTIONS(3475), 7, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3477), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [20790] = 2, - ACTIONS(3471), 7, + ACTIONS(595), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + ts_builtin_sym_end, + [2363] = 3, + ACTIONS(649), 1, + sym__div_end, + ACTIONS(573), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3473), 30, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, + anon_sym_LBRACE, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [20832] = 2, - ACTIONS(3415), 7, + ACTIONS(575), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + sym__footnote_end, + [2406] = 3, + ACTIONS(651), 1, + sym__div_end, + ACTIONS(567), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3417), 30, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, + anon_sym_LBRACE, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [20874] = 2, - ACTIONS(3465), 7, + ACTIONS(569), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + sym__footnote_end, + [2449] = 3, + ACTIONS(653), 1, + sym__code_block_end, + ACTIONS(561), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3467), 30, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, + anon_sym_LBRACE, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [20916] = 2, - ACTIONS(3461), 7, + ACTIONS(563), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + sym__footnote_end, + [2492] = 3, + ACTIONS(655), 1, + sym__code_block_end, + ACTIONS(555), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3463), 30, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, + anon_sym_LBRACE, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [20958] = 2, - ACTIONS(3457), 7, + ACTIONS(557), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + sym__footnote_end, + [2535] = 2, + ACTIONS(551), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3459), 30, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [21000] = 2, - ACTIONS(3457), 7, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3459), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [21042] = 2, - ACTIONS(3453), 7, + ACTIONS(553), 31, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + sym__footnote_end, + sym__table_caption_begin, + [2576] = 2, + ACTIONS(611), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3455), 30, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [21084] = 2, - ACTIONS(3449), 7, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3451), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [21126] = 2, - ACTIONS(3445), 7, + ACTIONS(613), 31, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + sym__table_caption_begin, + ts_builtin_sym_end, + [2617] = 3, + ACTIONS(657), 1, + sym__eof_or_newline, + ACTIONS(599), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3447), 30, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [21168] = 2, - ACTIONS(3441), 7, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3443), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [21210] = 2, - ACTIONS(3461), 7, + ACTIONS(603), 30, + sym__block_close, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + [2660] = 2, + ACTIONS(547), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3463), 30, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [21252] = 2, - ACTIONS(3465), 7, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3467), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [21294] = 2, - ACTIONS(3415), 7, + ACTIONS(549), 31, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + sym__footnote_end, + sym__table_caption_begin, + [2701] = 3, + ACTIONS(659), 1, + sym__div_end, + ACTIONS(541), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3417), 30, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [21336] = 2, - ACTIONS(3437), 7, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3439), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [21378] = 2, - ACTIONS(3433), 7, + ACTIONS(543), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + sym__footnote_end, + [2744] = 3, + ACTIONS(661), 1, + sym__code_block_end, + ACTIONS(535), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3435), 30, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, + anon_sym_LBRACE, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [21420] = 2, - ACTIONS(3471), 7, + ACTIONS(537), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + sym__footnote_end, + [2787] = 3, + ACTIONS(663), 1, + sym__code_block_end, + ACTIONS(529), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3473), 30, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + anon_sym_LBRACE, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [21462] = 2, - ACTIONS(3475), 7, + ACTIONS(531), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + sym__footnote_end, + [2830] = 2, + ACTIONS(615), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3477), 30, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [21504] = 2, - ACTIONS(3479), 7, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3481), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [21546] = 2, - ACTIONS(3429), 7, + ACTIONS(617), 31, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + sym__footnote_end, + sym__table_caption_begin, + [2871] = 2, + ACTIONS(619), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3431), 30, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [21588] = 2, - ACTIONS(3397), 7, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3399), 30, - sym__eof_or_newline, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [21630] = 2, - ACTIONS(3422), 7, + ACTIONS(621), 31, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + sym__footnote_end, + sym__table_caption_begin, + [2912] = 2, + ACTIONS(665), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3424), 30, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [21672] = 2, - ACTIONS(3422), 9, - anon_sym_LBRACK, anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_STAR, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3424), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [21714] = 2, - ACTIONS(3393), 7, + ACTIONS(667), 30, + sym__block_close, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + [2952] = 2, + ACTIONS(669), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3395), 30, - sym__eof_or_newline, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [21756] = 2, - ACTIONS(3397), 7, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3399), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [21798] = 2, - ACTIONS(3393), 7, + ACTIONS(671), 30, + sym__block_close, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + [2992] = 2, + ACTIONS(535), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3395), 30, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [21840] = 2, - ACTIONS(3397), 9, - anon_sym_LBRACK, anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_STAR, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3399), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [21882] = 2, - ACTIONS(3393), 9, + ACTIONS(537), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + ts_builtin_sym_end, + [3032] = 2, + ACTIONS(675), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_STAR, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3395), 28, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [21924] = 4, - ACTIONS(3710), 1, - aux_sym__text_token1, - STATE(993), 1, - aux_sym__text, - ACTIONS(3333), 6, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - ACTIONS(3335), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [21970] = 2, - ACTIONS(3494), 7, + ACTIONS(673), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + ts_builtin_sym_end, + [3072] = 2, + ACTIONS(679), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3496), 30, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [22012] = 2, - ACTIONS(3498), 7, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3500), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [22054] = 2, - ACTIONS(3502), 7, + ACTIONS(677), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + ts_builtin_sym_end, + [3112] = 2, + ACTIONS(683), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3504), 30, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [22096] = 2, - ACTIONS(3506), 7, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3508), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [22138] = 2, - ACTIONS(3510), 7, + ACTIONS(681), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + ts_builtin_sym_end, + [3152] = 2, + ACTIONS(685), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3512), 30, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [22180] = 2, - ACTIONS(3514), 7, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3516), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [22222] = 2, - ACTIONS(3518), 7, + ACTIONS(687), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + sym__footnote_end, + [3192] = 2, + ACTIONS(691), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3520), 30, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [22264] = 2, - ACTIONS(3387), 9, - anon_sym_LBRACK, anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_STAR, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3389), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [22306] = 2, - ACTIONS(3387), 7, + ACTIONS(689), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + ts_builtin_sym_end, + [3232] = 2, + ACTIONS(669), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3389), 30, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [22348] = 2, - ACTIONS(3292), 7, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3294), 30, - sym__newline_inline, - sym__block_quote_continuation, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [22390] = 2, - ACTIONS(3522), 7, + ACTIONS(671), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + ts_builtin_sym_end, + [3272] = 2, + ACTIONS(693), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3524), 30, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [22432] = 4, - ACTIONS(861), 1, - anon_sym_RBRACK2, - ACTIONS(908), 1, - anon_sym_LBRACE2, - ACTIONS(3235), 6, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3240), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [22478] = 4, - ACTIONS(861), 1, - anon_sym_RBRACK2, - ACTIONS(908), 1, - anon_sym_LBRACE2, - ACTIONS(3227), 6, + ACTIONS(695), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + sym__footnote_end, + [3312] = 2, + ACTIONS(699), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3232), 29, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + anon_sym_LBRACE, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [22524] = 3, - ACTIONS(3713), 1, - sym__verbatim_begin, - ACTIONS(908), 7, + ACTIONS(697), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + ts_builtin_sym_end, + [3352] = 2, + ACTIONS(701), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(861), 29, - sym__newline_inline, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [22568] = 2, - ACTIONS(3540), 7, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3542), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [22610] = 4, - ACTIONS(861), 1, - aux_sym_strong_end_token1, - ACTIONS(908), 1, - anon_sym_LBRACE2, - ACTIONS(3235), 8, + ACTIONS(703), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + sym__footnote_end, + [3392] = 2, + ACTIONS(705), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_STAR, - aux_sym__text_token1, - ACTIONS(3240), 27, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [22656] = 2, - ACTIONS(3536), 7, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3538), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [22698] = 3, - ACTIONS(3716), 1, - aux_sym_autolink_token1, - ACTIONS(861), 3, - sym__newline_inline, - sym__verbatim_begin, - sym__whitespace1, - ACTIONS(908), 33, + ACTIONS(707), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + sym__footnote_end, + [3432] = 2, + ACTIONS(711), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - sym_en_dash, - sym_backslash_escape, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_LBRACE2, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - aux_sym__text_token1, - [22742] = 2, - ACTIONS(3718), 6, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3720), 31, + ACTIONS(709), 30, sym__newline, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - anon_sym_NULL, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [22784] = 4, - ACTIONS(3610), 1, - anon_sym_LBRACE2, - STATE(1170), 1, - sym_inline_attribute, - ACTIONS(3205), 6, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + ts_builtin_sym_end, + [3472] = 2, + ACTIONS(715), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3207), 29, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [22830] = 4, - ACTIONS(3722), 1, anon_sym_LBRACE, - STATE(1004), 1, - sym_comment, - ACTIONS(3552), 5, - anon_sym_LBRACK, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3554), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [22876] = 2, - ACTIONS(3725), 6, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3727), 31, + ACTIONS(713), 30, sym__newline, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - anon_sym_NULL, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [22918] = 2, - ACTIONS(3540), 7, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + ts_builtin_sym_end, + [3512] = 2, + ACTIONS(717), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3542), 30, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [22960] = 3, - ACTIONS(3729), 1, - sym__verbatim_begin, - ACTIONS(908), 7, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(861), 29, - sym__newline_inline, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [23004] = 4, - ACTIONS(861), 1, - anon_sym_PLUS_RBRACE, - ACTIONS(908), 1, - anon_sym_LBRACE2, - ACTIONS(3235), 6, + ACTIONS(719), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + sym__footnote_end, + [3552] = 2, + ACTIONS(723), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3240), 29, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [23050] = 2, - ACTIONS(3387), 7, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3389), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [23092] = 4, - ACTIONS(861), 1, - anon_sym_PLUS_RBRACE, - ACTIONS(908), 1, - anon_sym_LBRACE2, - ACTIONS(3227), 6, + ACTIONS(721), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + ts_builtin_sym_end, + [3592] = 2, + ACTIONS(675), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3232), 29, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [23138] = 2, - ACTIONS(3393), 7, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3395), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [23180] = 2, - ACTIONS(3397), 7, + ACTIONS(673), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + sym__footnote_end, + [3632] = 2, + ACTIONS(727), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3399), 30, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [23222] = 2, - ACTIONS(3422), 7, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3424), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [23264] = 2, - ACTIONS(3585), 7, + ACTIONS(725), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + ts_builtin_sym_end, + [3672] = 2, + ACTIONS(669), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3587), 30, - sym__eof_or_newline, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [23306] = 2, - ACTIONS(3429), 7, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3431), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [23348] = 2, - ACTIONS(3433), 7, + ACTIONS(671), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + sym__footnote_end, + [3712] = 2, + ACTIONS(731), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3435), 30, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [23390] = 2, - ACTIONS(3437), 7, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3439), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [23432] = 3, - ACTIONS(3732), 1, - sym__verbatim_begin, - ACTIONS(908), 7, + ACTIONS(729), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + ts_builtin_sym_end, + [3752] = 2, + ACTIONS(733), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(861), 29, - sym__newline_inline, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, + anon_sym_LBRACE, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [23476] = 2, - ACTIONS(3540), 7, + ACTIONS(735), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + sym__footnote_end, + [3792] = 2, + ACTIONS(739), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3542), 30, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, + anon_sym_LBRACE, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [23518] = 2, - ACTIONS(3536), 7, + ACTIONS(737), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + ts_builtin_sym_end, + [3832] = 2, + ACTIONS(741), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3538), 30, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, + anon_sym_LBRACE, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [23560] = 2, - ACTIONS(3441), 7, + ACTIONS(743), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + sym__footnote_end, + [3872] = 2, + ACTIONS(747), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3443), 30, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [23602] = 2, - ACTIONS(3387), 7, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3389), 30, - sym__eof_or_newline, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [23644] = 2, - ACTIONS(3445), 7, + ACTIONS(745), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + ts_builtin_sym_end, + [3912] = 2, + ACTIONS(749), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3447), 30, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [23686] = 2, - ACTIONS(3449), 7, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3451), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [23728] = 2, - ACTIONS(3536), 7, + ACTIONS(751), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + sym__footnote_end, + [3952] = 2, + ACTIONS(755), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3538), 30, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [23770] = 2, - ACTIONS(3453), 7, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3455), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [23812] = 2, - ACTIONS(3522), 7, + ACTIONS(753), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + ts_builtin_sym_end, + [3992] = 2, + ACTIONS(535), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3524), 30, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, + anon_sym_LBRACE, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [23854] = 2, - ACTIONS(3457), 7, + ACTIONS(537), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + sym__footnote_end, + [4032] = 2, + ACTIONS(759), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3459), 30, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + anon_sym_LBRACE, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [23896] = 2, - ACTIONS(3518), 7, + ACTIONS(757), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + ts_builtin_sym_end, + [4072] = 2, + ACTIONS(761), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3520), 30, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, + anon_sym_LBRACE, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [23938] = 2, - ACTIONS(3514), 7, + ACTIONS(763), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + sym__footnote_end, + [4112] = 2, + ACTIONS(767), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3516), 30, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, + anon_sym_LBRACE, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [23980] = 2, - ACTIONS(3510), 7, + ACTIONS(765), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + ts_builtin_sym_end, + [4152] = 2, + ACTIONS(769), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3512), 30, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [24022] = 2, - ACTIONS(3506), 7, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3508), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [24064] = 2, - ACTIONS(3502), 7, + ACTIONS(771), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + sym__footnote_end, + [4192] = 2, + ACTIONS(775), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3504), 30, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [24106] = 2, - ACTIONS(3498), 7, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3500), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [24148] = 2, - ACTIONS(3494), 7, + ACTIONS(773), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + ts_builtin_sym_end, + [4232] = 2, + ACTIONS(715), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3496), 30, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [24190] = 2, - ACTIONS(3461), 7, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3463), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [24232] = 2, - ACTIONS(3465), 7, + ACTIONS(713), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + sym__footnote_end, + [4272] = 2, + ACTIONS(779), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3467), 30, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [24274] = 2, - ACTIONS(3415), 7, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3417), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [24316] = 2, - ACTIONS(3471), 7, + ACTIONS(777), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + ts_builtin_sym_end, + [4312] = 2, + ACTIONS(781), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3473), 30, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + anon_sym_LBRACE, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [24358] = 2, - ACTIONS(3475), 7, + ACTIONS(783), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + sym__footnote_end, + [4352] = 2, + ACTIONS(787), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3477), 30, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + anon_sym_LBRACE, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [24400] = 2, - ACTIONS(3479), 7, + ACTIONS(785), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + ts_builtin_sym_end, + [4392] = 2, + ACTIONS(733), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3481), 30, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, + anon_sym_LBRACE, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [24442] = 2, - ACTIONS(3475), 7, + ACTIONS(735), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + ts_builtin_sym_end, + [4432] = 2, + ACTIONS(791), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3477), 30, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [24484] = 2, - ACTIONS(3471), 7, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3473), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [24526] = 2, - ACTIONS(3415), 7, + ACTIONS(789), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + ts_builtin_sym_end, + [4472] = 2, + ACTIONS(793), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3417), 30, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [24568] = 2, - ACTIONS(3465), 7, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3467), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [24610] = 2, - ACTIONS(3461), 7, + ACTIONS(795), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + sym__footnote_end, + [4512] = 2, + ACTIONS(799), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3463), 30, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [24652] = 2, - ACTIONS(3457), 7, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3459), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [24694] = 2, - ACTIONS(3453), 7, + ACTIONS(797), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + ts_builtin_sym_end, + [4552] = 2, + ACTIONS(665), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3455), 30, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, + anon_sym_LBRACE, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [24736] = 2, - ACTIONS(3449), 7, + ACTIONS(667), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + sym__footnote_end, + [4592] = 2, + ACTIONS(803), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3451), 30, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, + anon_sym_LBRACE, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [24778] = 2, - ACTIONS(3445), 7, + ACTIONS(801), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + ts_builtin_sym_end, + [4632] = 2, + ACTIONS(525), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3447), 30, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, + anon_sym_LBRACE, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [24820] = 2, - ACTIONS(3441), 7, + ACTIONS(527), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + sym__footnote_end, + [4672] = 2, + ACTIONS(807), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3443), 30, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, + anon_sym_LBRACE, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [24862] = 2, - ACTIONS(3479), 7, + ACTIONS(805), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + ts_builtin_sym_end, + [4712] = 2, + ACTIONS(809), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3481), 30, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [24904] = 2, - ACTIONS(3437), 7, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3439), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [24946] = 2, - ACTIONS(3433), 7, + ACTIONS(811), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + sym__footnote_end, + [4752] = 2, + ACTIONS(809), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3435), 30, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [24988] = 2, - ACTIONS(3429), 7, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3431), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [25030] = 2, - ACTIONS(3422), 7, + ACTIONS(811), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + ts_builtin_sym_end, + [4792] = 2, + ACTIONS(807), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3424), 30, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [25072] = 2, - ACTIONS(3397), 7, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3399), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [25114] = 2, - ACTIONS(3393), 7, + ACTIONS(805), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + sym__footnote_end, + [4832] = 2, + ACTIONS(815), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3395), 30, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [25156] = 2, - ACTIONS(3387), 7, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3389), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [25198] = 2, - ACTIONS(3589), 7, + ACTIONS(813), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + ts_builtin_sym_end, + [4872] = 2, + ACTIONS(803), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3591), 30, - sym__eof_or_newline, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [25240] = 4, - ACTIONS(3735), 1, anon_sym_LBRACE, - STATE(886), 1, - sym_comment, - ACTIONS(3552), 6, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + ACTIONS(801), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + sym__footnote_end, + [4912] = 2, + ACTIONS(799), 5, anon_sym_LBRACK, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_CARET, - aux_sym__text_token1, - ACTIONS(3554), 29, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + anon_sym_LBRACE, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [25286] = 2, - ACTIONS(3494), 7, + ACTIONS(797), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + sym__footnote_end, + [4952] = 2, + ACTIONS(525), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3496), 30, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + anon_sym_LBRACE, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [25328] = 2, - ACTIONS(3498), 7, + ACTIONS(527), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + ts_builtin_sym_end, + [4992] = 2, + ACTIONS(791), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3500), 30, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [25370] = 2, - ACTIONS(3502), 7, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3504), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [25412] = 4, - ACTIONS(861), 1, - anon_sym_DASH_RBRACE, - ACTIONS(908), 1, - anon_sym_LBRACE2, - ACTIONS(3235), 6, + ACTIONS(789), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + sym__footnote_end, + [5032] = 2, + ACTIONS(819), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3240), 29, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [25458] = 2, - ACTIONS(3506), 7, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3508), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [25500] = 4, - ACTIONS(861), 1, - anon_sym_DASH_RBRACE, - ACTIONS(908), 1, - anon_sym_LBRACE2, - ACTIONS(3227), 6, + ACTIONS(817), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + ts_builtin_sym_end, + [5072] = 2, + ACTIONS(787), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3232), 29, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [25546] = 2, - ACTIONS(3510), 7, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3512), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [25588] = 2, - ACTIONS(3514), 7, + ACTIONS(785), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + sym__footnote_end, + [5112] = 2, + ACTIONS(779), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3516), 30, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + anon_sym_LBRACE, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [25630] = 2, - ACTIONS(3518), 7, + ACTIONS(777), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + sym__footnote_end, + [5152] = 2, + ACTIONS(775), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3520), 30, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + anon_sym_LBRACE, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [25672] = 3, - ACTIONS(908), 1, - anon_sym_LBRACE2, - ACTIONS(3227), 6, + ACTIONS(773), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + sym__footnote_end, + [5192] = 2, + ACTIONS(767), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3232), 29, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + anon_sym_LBRACE, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [25715] = 2, - ACTIONS(3718), 6, + ACTIONS(765), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + sym__footnote_end, + [5232] = 2, + ACTIONS(759), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3720), 30, - sym__eof_or_newline, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + anon_sym_LBRACE, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [25756] = 2, - ACTIONS(3585), 6, + ACTIONS(757), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + sym__footnote_end, + [5272] = 2, + ACTIONS(755), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3587), 30, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [25797] = 2, - ACTIONS(3718), 6, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3720), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [25838] = 2, - ACTIONS(3589), 6, + ACTIONS(753), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + sym__footnote_end, + [5312] = 2, + ACTIONS(747), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3591), 30, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [25879] = 2, - ACTIONS(3585), 6, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3587), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_RBRACK, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [25920] = 2, - ACTIONS(3479), 7, + ACTIONS(745), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + sym__footnote_end, + [5352] = 2, + ACTIONS(739), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3481), 29, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [25961] = 2, - ACTIONS(3725), 6, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3727), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [26002] = 2, - ACTIONS(3725), 6, + ACTIONS(737), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + sym__footnote_end, + [5392] = 2, + ACTIONS(731), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3727), 30, - sym__eof_or_newline, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + anon_sym_LBRACE, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [26043] = 2, - ACTIONS(3585), 8, + ACTIONS(729), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + sym__footnote_end, + [5432] = 2, + ACTIONS(727), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym__, - aux_sym__text_token1, - ACTIONS(3587), 28, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + anon_sym_LBRACE, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [26084] = 3, - ACTIONS(908), 1, - anon_sym_LBRACE2, - ACTIONS(3235), 6, + ACTIONS(725), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + sym__footnote_end, + [5472] = 2, + ACTIONS(723), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3240), 29, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + anon_sym_LBRACE, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [26127] = 2, - ACTIONS(3589), 8, + ACTIONS(721), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + sym__footnote_end, + [5512] = 2, + ACTIONS(761), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym__, - aux_sym__text_token1, - ACTIONS(3591), 28, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + anon_sym_LBRACE, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [26168] = 3, - ACTIONS(3738), 1, - sym__verbatim_begin, - ACTIONS(908), 7, + ACTIONS(763), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + ts_builtin_sym_end, + [5552] = 2, + ACTIONS(711), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(861), 28, - sym__newline_inline, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [26211] = 2, - ACTIONS(3540), 7, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3542), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [26252] = 2, - ACTIONS(3725), 7, + ACTIONS(709), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + sym__footnote_end, + [5592] = 2, + ACTIONS(823), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_CARET, - aux_sym__text_token1, - ACTIONS(3727), 29, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [26293] = 4, - ACTIONS(3741), 1, - anon_sym__, - ACTIONS(3744), 1, - aux_sym_emphasis_end_token1, - ACTIONS(3552), 7, - anon_sym_LBRACK, anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3554), 27, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [26338] = 2, - ACTIONS(3536), 7, + ACTIONS(821), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + ts_builtin_sym_end, + [5632] = 2, + ACTIONS(699), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3538), 29, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [26379] = 2, - ACTIONS(3522), 7, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3524), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [26420] = 2, - ACTIONS(3718), 6, + ACTIONS(697), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + sym__footnote_end, + [5672] = 2, + ACTIONS(691), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3720), 30, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [26461] = 2, - ACTIONS(3718), 8, - anon_sym_LBRACK, anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym__, - aux_sym__text_token1, - ACTIONS(3720), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [26502] = 2, - ACTIONS(3518), 7, + ACTIONS(689), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + sym__footnote_end, + [5712] = 2, + ACTIONS(815), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3520), 29, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + anon_sym_LBRACE, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [26543] = 2, - ACTIONS(3514), 7, + ACTIONS(813), 30, + sym__block_close, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + [5752] = 2, + ACTIONS(679), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3516), 29, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + anon_sym_LBRACE, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [26584] = 2, - ACTIONS(3510), 7, + ACTIONS(677), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + sym__footnote_end, + [5792] = 2, + ACTIONS(819), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3512), 29, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + anon_sym_LBRACE, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [26625] = 2, - ACTIONS(3506), 7, + ACTIONS(817), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + sym__footnote_end, + [5832] = 2, + ACTIONS(825), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3508), 29, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [26666] = 2, - ACTIONS(3502), 7, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3504), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [26707] = 2, - ACTIONS(3498), 7, + ACTIONS(827), 30, + sym__block_close, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + [5872] = 2, + ACTIONS(741), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3500), 29, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [26748] = 2, - ACTIONS(3494), 7, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3496), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [26789] = 2, - ACTIONS(3589), 6, + ACTIONS(743), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + ts_builtin_sym_end, + [5912] = 2, + ACTIONS(829), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3591), 30, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [26830] = 2, - ACTIONS(3725), 6, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3727), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_RBRACK, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [26871] = 2, - ACTIONS(3475), 7, + ACTIONS(831), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + sym__footnote_end, + [5952] = 2, + ACTIONS(833), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3477), 29, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + anon_sym_LBRACE, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [26912] = 2, - ACTIONS(3471), 7, + ACTIONS(835), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + sym__footnote_end, + [5992] = 2, + ACTIONS(685), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3473), 29, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + anon_sym_LBRACE, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [26953] = 2, - ACTIONS(3589), 6, + ACTIONS(687), 30, + sym__block_close, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + [6032] = 2, + ACTIONS(839), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3591), 30, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + anon_sym_LBRACE, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [26994] = 2, - ACTIONS(3585), 6, + ACTIONS(837), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + ts_builtin_sym_end, + [6072] = 2, + ACTIONS(693), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3587), 30, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, + anon_sym_LBRACE, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [27035] = 2, - ACTIONS(3415), 7, + ACTIONS(695), 30, + sym__block_close, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + [6112] = 2, + ACTIONS(705), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3417), 29, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [27076] = 2, - ACTIONS(3465), 7, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3467), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [27117] = 4, - ACTIONS(3651), 1, - anon_sym_LBRACE2, - STATE(1204), 1, - sym_inline_attribute, - ACTIONS(3205), 6, + ACTIONS(707), 30, + sym__block_close, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + [6152] = 2, + ACTIONS(717), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3207), 28, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [27162] = 2, - ACTIONS(3461), 7, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3463), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [27203] = 2, - ACTIONS(3457), 7, + ACTIONS(719), 30, + sym__block_close, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + [6192] = 2, + ACTIONS(781), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3459), 29, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [27244] = 2, - ACTIONS(3453), 7, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3455), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [27285] = 2, - ACTIONS(3449), 7, + ACTIONS(783), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + ts_builtin_sym_end, + [6232] = 2, + ACTIONS(675), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3451), 29, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [27326] = 2, - ACTIONS(3589), 6, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3591), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [27367] = 2, - ACTIONS(3445), 7, + ACTIONS(673), 30, + sym__block_close, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + [6272] = 2, + ACTIONS(717), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3447), 29, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + anon_sym_LBRACE, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [27408] = 2, - ACTIONS(3441), 7, + ACTIONS(719), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + ts_builtin_sym_end, + [6312] = 2, + ACTIONS(665), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3443), 29, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + anon_sym_LBRACE, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [27449] = 2, - ACTIONS(3585), 8, + ACTIONS(667), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + ts_builtin_sym_end, + [6352] = 2, + ACTIONS(733), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_STAR, - aux_sym__text_token1, - ACTIONS(3587), 28, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + anon_sym_LBRACE, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [27490] = 2, - ACTIONS(3437), 7, + ACTIONS(735), 30, + sym__block_close, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + [6392] = 2, + ACTIONS(829), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3439), 29, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [27531] = 2, - ACTIONS(3433), 7, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3435), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [27572] = 2, - ACTIONS(3429), 7, + ACTIONS(831), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + ts_builtin_sym_end, + [6432] = 2, + ACTIONS(741), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3431), 29, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [27613] = 2, - ACTIONS(3585), 6, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3587), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [27654] = 2, - ACTIONS(3585), 6, + ACTIONS(743), 30, + sym__block_close, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + [6472] = 2, + ACTIONS(749), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3587), 30, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [27695] = 2, - ACTIONS(3422), 7, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3424), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [27736] = 2, - ACTIONS(3397), 7, + ACTIONS(751), 30, + sym__block_close, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + [6512] = 2, + ACTIONS(749), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3399), 29, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [27777] = 2, - ACTIONS(3393), 7, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3395), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [27818] = 4, - ACTIONS(3746), 1, - anon_sym__, - ACTIONS(3749), 1, - aux_sym_emphasis_end_token1, - ACTIONS(3552), 7, + ACTIONS(751), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + ts_builtin_sym_end, + [6552] = 2, + ACTIONS(769), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3554), 27, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [27863] = 2, - ACTIONS(3387), 7, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3389), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [27904] = 4, - ACTIONS(3741), 1, - anon_sym_STAR, - ACTIONS(3744), 1, - aux_sym_strong_end_token1, - ACTIONS(3552), 7, + ACTIONS(771), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + ts_builtin_sym_end, + [6592] = 2, + ACTIONS(841), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3554), 27, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [27949] = 2, - ACTIONS(3725), 8, - anon_sym_LBRACK, anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_STAR, - aux_sym__text_token1, - ACTIONS(3727), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [27990] = 3, - ACTIONS(3751), 1, - aux_sym_autolink_token1, - ACTIONS(861), 2, - sym__verbatim_begin, - sym__whitespace1, - ACTIONS(908), 33, + ACTIONS(843), 30, + sym__block_close, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + [6632] = 2, + ACTIONS(841), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - sym_en_dash, - sym_backslash_escape, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_LBRACE2, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - aux_sym__text_token1, - [28033] = 4, - ACTIONS(3746), 1, - anon_sym_STAR, - ACTIONS(3749), 1, - aux_sym_strong_end_token1, - ACTIONS(3552), 7, + ACTIONS(843), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + ts_builtin_sym_end, + [6672] = 2, + ACTIONS(535), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3554), 27, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [28078] = 2, - ACTIONS(3718), 6, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3720), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [28119] = 4, - ACTIONS(908), 1, - anon_sym_LBRACE2, - ACTIONS(3630), 1, - sym__newline_inline, - ACTIONS(3235), 6, + ACTIONS(537), 30, + sym__block_close, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + [6712] = 2, + ACTIONS(761), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3240), 28, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [28164] = 2, - ACTIONS(3725), 6, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3727), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [28205] = 4, - ACTIONS(908), 1, - anon_sym_LBRACE2, - ACTIONS(3626), 1, - sym__newline_inline, - ACTIONS(3227), 6, + ACTIONS(763), 30, + sym__block_close, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + [6752] = 2, + ACTIONS(701), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3232), 28, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [28250] = 2, - ACTIONS(3585), 6, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3587), 30, - sym__eof_or_newline, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [28291] = 2, - ACTIONS(3725), 6, + ACTIONS(703), 30, + sym__block_close, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + [6792] = 2, + ACTIONS(769), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3727), 30, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [28332] = 2, - ACTIONS(3585), 7, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_TILDE, - aux_sym__text_token1, - ACTIONS(3587), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [28373] = 2, - ACTIONS(3292), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3294), 29, + ACTIONS(771), 30, + sym__block_close, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, sym__block_quote_continuation, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [28414] = 4, - ACTIONS(3753), 1, - aux_sym__text_token1, - STATE(1147), 1, - aux_sym__text, - ACTIONS(3333), 6, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - ACTIONS(3335), 28, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [28459] = 2, - ACTIONS(3589), 7, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + [6832] = 2, + ACTIONS(685), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3591), 29, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [28500] = 2, - ACTIONS(3585), 7, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3587), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [28541] = 2, - ACTIONS(3589), 6, + ACTIONS(687), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + ts_builtin_sym_end, + [6872] = 2, + ACTIONS(715), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3591), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_RBRACK, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [28582] = 2, - ACTIONS(3589), 7, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_TILDE, - aux_sym__text_token1, - ACTIONS(3591), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [28623] = 2, - ACTIONS(3718), 7, + ACTIONS(713), 30, + sym__block_close, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + [6912] = 2, + ACTIONS(781), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_TILDE, - aux_sym__text_token1, - ACTIONS(3720), 29, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [28664] = 2, - ACTIONS(3725), 8, - anon_sym_LBRACK, anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym__, - aux_sym__text_token1, - ACTIONS(3727), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [28705] = 2, - ACTIONS(3725), 6, + ACTIONS(783), 30, + sym__block_close, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + [6952] = 2, + ACTIONS(845), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3727), 30, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [28746] = 2, - ACTIONS(3725), 7, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_TILDE, - aux_sym__text_token1, - ACTIONS(3727), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [28787] = 2, - ACTIONS(3718), 8, + ACTIONS(847), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + sym__footnote_end, + [6992] = 2, + ACTIONS(839), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_STAR, - aux_sym__text_token1, - ACTIONS(3720), 28, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [28828] = 4, - ACTIONS(3756), 1, anon_sym_LBRACE, - STATE(830), 1, - sym_comment, - ACTIONS(3552), 5, - anon_sym_LBRACK, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3554), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [28873] = 4, - ACTIONS(3759), 1, - anon_sym_LBRACE, - STATE(764), 1, - sym_comment, - ACTIONS(3552), 5, + ACTIONS(837), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + sym__footnote_end, + [7032] = 2, + ACTIONS(693), 5, anon_sym_LBRACK, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3554), 29, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + anon_sym_LBRACE, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [28918] = 2, - ACTIONS(3718), 7, + ACTIONS(695), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + ts_builtin_sym_end, + [7072] = 2, + ACTIONS(793), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_CARET, - aux_sym__text_token1, - ACTIONS(3720), 29, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + anon_sym_LBRACE, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [28959] = 2, - ACTIONS(3718), 6, + ACTIONS(795), 30, + sym__block_close, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + [7112] = 2, + ACTIONS(839), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3720), 30, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, + anon_sym_LBRACE, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [29000] = 2, - ACTIONS(3585), 7, + ACTIONS(837), 30, + sym__block_close, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + [7152] = 2, + ACTIONS(705), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_CARET, - aux_sym__text_token1, - ACTIONS(3587), 29, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [29041] = 4, - ACTIONS(3762), 1, anon_sym_LBRACE, - STATE(1098), 1, - sym_comment, - ACTIONS(3552), 5, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + ACTIONS(707), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + ts_builtin_sym_end, + [7192] = 2, + ACTIONS(525), 5, anon_sym_LBRACK, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3554), 29, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [29086] = 2, - ACTIONS(3589), 7, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_CARET, - aux_sym__text_token1, - ACTIONS(3591), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [29127] = 2, - ACTIONS(3589), 6, + ACTIONS(527), 30, + sym__block_close, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + [7232] = 2, + ACTIONS(793), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3591), 30, - sym__eof_or_newline, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [29168] = 2, - ACTIONS(3589), 8, - anon_sym_LBRACK, anon_sym_LBRACE, - sym__whitespace1, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_STAR, - aux_sym__text_token1, - ACTIONS(3591), 28, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [29209] = 2, - ACTIONS(3718), 6, + ACTIONS(795), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + ts_builtin_sym_end, + [7272] = 2, + ACTIONS(809), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3720), 30, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_RBRACK, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [29250] = 2, - ACTIONS(3494), 7, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3496), 28, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [29290] = 2, - ACTIONS(3725), 6, + ACTIONS(811), 30, + sym__block_close, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + [7312] = 2, + ACTIONS(825), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3727), 29, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [29330] = 4, - ACTIONS(3769), 1, anon_sym_LBRACE, - STATE(1182), 1, - sym_comment, - ACTIONS(3765), 5, - anon_sym_LBRACK, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3767), 28, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [29374] = 2, - ACTIONS(3718), 6, + ACTIONS(827), 30, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + ts_builtin_sym_end, + [7352] = 2, + ACTIONS(807), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3720), 29, - sym__newline_inline, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [29414] = 2, - ACTIONS(3393), 7, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3395), 28, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [29454] = 2, - ACTIONS(3589), 7, + ACTIONS(805), 30, + sym__block_close, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + [7392] = 2, + ACTIONS(803), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3591), 28, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + anon_sym_LBRACE, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [29494] = 2, - ACTIONS(3397), 7, + ACTIONS(801), 30, + sym__block_close, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + [7432] = 2, + ACTIONS(799), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3399), 28, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + anon_sym_LBRACE, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [29534] = 2, - ACTIONS(3585), 7, + ACTIONS(797), 30, + sym__block_close, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + [7472] = 2, + ACTIONS(791), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3587), 28, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [29574] = 2, - ACTIONS(3422), 7, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3424), 28, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [29614] = 3, - ACTIONS(3772), 1, - sym__verbatim_begin, - ACTIONS(908), 7, + ACTIONS(789), 30, + sym__block_close, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + [7512] = 2, + ACTIONS(845), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(861), 27, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [29656] = 2, - ACTIONS(3540), 7, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3542), 28, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [29696] = 2, - ACTIONS(3433), 7, + ACTIONS(847), 30, + sym__block_close, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + [7552] = 2, + ACTIONS(787), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3435), 28, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [29736] = 2, - ACTIONS(3437), 7, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3439), 28, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [29776] = 2, - ACTIONS(3536), 7, + ACTIONS(785), 30, + sym__block_close, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + [7592] = 2, + ACTIONS(779), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3538), 28, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [29816] = 2, - ACTIONS(3589), 6, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3591), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [29856] = 2, - ACTIONS(3522), 7, + ACTIONS(777), 30, + sym__block_close, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + [7632] = 2, + ACTIONS(775), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3524), 28, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [29896] = 2, - ACTIONS(3585), 6, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3587), 29, - sym__newline_inline, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [29936] = 2, - ACTIONS(3441), 7, + ACTIONS(773), 30, + sym__block_close, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + [7672] = 2, + ACTIONS(767), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3443), 28, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [29976] = 2, - ACTIONS(3445), 7, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3447), 28, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [30016] = 2, - ACTIONS(3449), 7, + ACTIONS(765), 30, + sym__block_close, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + [7712] = 2, + ACTIONS(833), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3451), 28, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [30056] = 2, - ACTIONS(3453), 7, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3455), 28, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [30096] = 2, - ACTIONS(3387), 7, + ACTIONS(835), 30, + sym__block_close, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + [7752] = 2, + ACTIONS(759), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3389), 28, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [30136] = 2, - ACTIONS(3518), 7, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3520), 28, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [30176] = 2, - ACTIONS(3457), 7, + ACTIONS(757), 30, + sym__block_close, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + [7792] = 2, + ACTIONS(755), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3459), 28, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [30216] = 2, - ACTIONS(3461), 7, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3463), 28, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [30256] = 2, - ACTIONS(3465), 7, + ACTIONS(753), 30, + sym__block_close, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + [7832] = 2, + ACTIONS(747), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3467), 28, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [30296] = 2, - ACTIONS(3415), 7, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3417), 28, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [30336] = 2, - ACTIONS(3514), 7, + ACTIONS(745), 30, + sym__block_close, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + [7872] = 2, + ACTIONS(739), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3516), 28, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [30376] = 2, - ACTIONS(3471), 7, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3473), 28, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [30416] = 2, - ACTIONS(3475), 7, + ACTIONS(737), 30, + sym__block_close, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + [7912] = 2, + ACTIONS(731), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3477), 28, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [30456] = 2, - ACTIONS(3479), 7, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3481), 28, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [30496] = 2, - ACTIONS(3429), 7, + ACTIONS(729), 30, + sym__block_close, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + [7952] = 2, + ACTIONS(727), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3431), 28, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [30536] = 2, - ACTIONS(3510), 7, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3512), 28, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [30576] = 2, - ACTIONS(3506), 7, + ACTIONS(725), 30, + sym__block_close, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + [7992] = 2, + ACTIONS(723), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3508), 28, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [30616] = 2, - ACTIONS(3502), 7, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3504), 28, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [30656] = 2, - ACTIONS(3498), 7, + ACTIONS(721), 30, + sym__block_close, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + [8032] = 2, + ACTIONS(711), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(3500), 28, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [30696] = 2, - ACTIONS(3589), 6, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3591), 28, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [30735] = 2, - ACTIONS(3718), 6, + ACTIONS(709), 30, + sym__block_close, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + [8072] = 2, + ACTIONS(829), 5, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3720), 28, - sym__verbatim_begin, anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [30774] = 2, - ACTIONS(3585), 6, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - aux_sym__text_token1, - ACTIONS(3587), 28, - sym__verbatim_begin, - anon_sym_PIPE, - sym__whitespace1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, + aux_sym__inline_token1, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - [30813] = 10, - ACTIONS(730), 1, - sym__block_quote_continuation, - ACTIONS(3775), 1, - anon_sym_PIPE, - ACTIONS(3777), 1, - sym__newline, - ACTIONS(3779), 1, - sym__table_caption_begin, - STATE(1269), 1, - sym_table_row, - STATE(1599), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(1695), 1, - sym_table_caption, - STATE(2331), 1, - sym__block_quote_prefix, - ACTIONS(726), 2, - sym__list_item_continuation, - sym__list_item_end, - STATE(1261), 3, - sym__table_content, - sym_table_separator, - aux_sym_table_repeat1, - [30847] = 9, - ACTIONS(3781), 1, - anon_sym_RBRACE, - ACTIONS(3783), 1, - anon_sym_DOT, - ACTIONS(3787), 1, - sym__id, - ACTIONS(3789), 1, - anon_sym_PERCENT, - STATE(1244), 1, - aux_sym_inline_attribute_repeat1, - STATE(1295), 1, - sym__comment_with_newline, - STATE(2133), 1, - sym_key, - STATE(1325), 2, - sym_class, - sym_key_value, - ACTIONS(3785), 3, - sym__newline, - sym_identifier, - sym__whitespace1, - [30878] = 9, - ACTIONS(3783), 1, - anon_sym_DOT, - ACTIONS(3787), 1, - sym__id, - ACTIONS(3789), 1, - anon_sym_PERCENT, - ACTIONS(3791), 1, - anon_sym_RBRACE, - STATE(1258), 1, - aux_sym_inline_attribute_repeat1, - STATE(1295), 1, - sym__comment_with_newline, - STATE(2133), 1, - sym_key, - STATE(1325), 2, - sym_class, - sym_key_value, - ACTIONS(3785), 3, - sym__newline, - sym_identifier, - sym__whitespace1, - [30909] = 9, - ACTIONS(3783), 1, - anon_sym_DOT, - ACTIONS(3787), 1, - sym__id, - ACTIONS(3789), 1, - anon_sym_PERCENT, - ACTIONS(3793), 1, - anon_sym_RBRACE, - STATE(1211), 1, - aux_sym_inline_attribute_repeat1, - STATE(1295), 1, - sym__comment_with_newline, - STATE(2133), 1, - sym_key, - STATE(1325), 2, - sym_class, - sym_key_value, - ACTIONS(3785), 3, - sym__newline, - sym_identifier, - sym__whitespace1, - [30940] = 10, - ACTIONS(726), 1, + ACTIONS(831), 30, sym__block_close, - ACTIONS(730), 1, - sym__block_quote_continuation, - ACTIONS(3795), 1, - anon_sym_PIPE, - ACTIONS(3797), 1, - sym__newline, - ACTIONS(3799), 1, - sym__table_caption_begin, - STATE(1291), 1, - sym_table_row, - STATE(1599), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(1849), 1, - sym_table_caption, - STATE(2338), 1, - sym__block_quote_prefix, - STATE(1268), 3, - sym__table_content, - sym_table_separator, - aux_sym_table_repeat1, - [30973] = 9, - ACTIONS(3783), 1, - anon_sym_DOT, - ACTIONS(3787), 1, - sym__id, - ACTIONS(3789), 1, - anon_sym_PERCENT, - ACTIONS(3801), 1, - anon_sym_RBRACE, - STATE(1258), 1, - aux_sym_inline_attribute_repeat1, - STATE(1295), 1, - sym__comment_with_newline, - STATE(2133), 1, - sym_key, - STATE(1325), 2, - sym_class, - sym_key_value, - ACTIONS(3785), 3, - sym__newline, - sym_identifier, - sym__whitespace1, - [31004] = 9, - ACTIONS(3783), 1, - anon_sym_DOT, - ACTIONS(3787), 1, - sym__id, - ACTIONS(3789), 1, - anon_sym_PERCENT, - ACTIONS(3803), 1, - anon_sym_RBRACE, - STATE(1258), 1, - aux_sym_inline_attribute_repeat1, - STATE(1295), 1, - sym__comment_with_newline, - STATE(2133), 1, - sym_key, - STATE(1325), 2, - sym_class, - sym_key_value, - ACTIONS(3785), 3, - sym__newline, - sym_identifier, - sym__whitespace1, - [31035] = 9, - ACTIONS(3783), 1, - anon_sym_DOT, - ACTIONS(3787), 1, - sym__id, - ACTIONS(3789), 1, - anon_sym_PERCENT, - ACTIONS(3805), 1, - anon_sym_RBRACE, - STATE(1212), 1, - aux_sym_inline_attribute_repeat1, - STATE(1295), 1, - sym__comment_with_newline, - STATE(2133), 1, - sym_key, - STATE(1325), 2, - sym_class, - sym_key_value, - ACTIONS(3785), 3, - sym__newline, - sym_identifier, - sym__whitespace1, - [31066] = 9, - ACTIONS(3783), 1, - anon_sym_DOT, - ACTIONS(3787), 1, - sym__id, - ACTIONS(3789), 1, - anon_sym_PERCENT, - ACTIONS(3807), 1, - anon_sym_RBRACE, - STATE(1258), 1, - aux_sym_inline_attribute_repeat1, - STATE(1295), 1, - sym__comment_with_newline, - STATE(2133), 1, - sym_key, - STATE(1325), 2, - sym_class, - sym_key_value, - ACTIONS(3785), 3, - sym__newline, - sym_identifier, - sym__whitespace1, - [31097] = 9, - ACTIONS(3783), 1, - anon_sym_DOT, - ACTIONS(3787), 1, - sym__id, - ACTIONS(3789), 1, - anon_sym_PERCENT, - ACTIONS(3809), 1, - anon_sym_RBRACE, - STATE(1214), 1, - aux_sym_inline_attribute_repeat1, - STATE(1295), 1, - sym__comment_with_newline, - STATE(2133), 1, - sym_key, - STATE(1325), 2, - sym_class, - sym_key_value, - ACTIONS(3785), 3, - sym__newline, - sym_identifier, - sym__whitespace1, - [31128] = 9, - ACTIONS(3783), 1, - anon_sym_DOT, - ACTIONS(3787), 1, - sym__id, - ACTIONS(3789), 1, - anon_sym_PERCENT, - ACTIONS(3811), 1, - anon_sym_RBRACE, - STATE(1258), 1, - aux_sym_inline_attribute_repeat1, - STATE(1295), 1, - sym__comment_with_newline, - STATE(2133), 1, - sym_key, - STATE(1325), 2, - sym_class, - sym_key_value, - ACTIONS(3785), 3, - sym__newline, - sym_identifier, - sym__whitespace1, - [31159] = 9, - ACTIONS(3783), 1, - anon_sym_DOT, - ACTIONS(3787), 1, - sym__id, - ACTIONS(3789), 1, - anon_sym_PERCENT, - ACTIONS(3813), 1, - anon_sym_RBRACE, - STATE(1218), 1, - aux_sym_inline_attribute_repeat1, - STATE(1295), 1, - sym__comment_with_newline, - STATE(2133), 1, - sym_key, - STATE(1325), 2, - sym_class, - sym_key_value, - ACTIONS(3785), 3, - sym__newline, - sym_identifier, - sym__whitespace1, - [31190] = 9, - ACTIONS(3783), 1, - anon_sym_DOT, - ACTIONS(3787), 1, - sym__id, - ACTIONS(3789), 1, - anon_sym_PERCENT, - ACTIONS(3815), 1, - anon_sym_RBRACE, - STATE(1258), 1, - aux_sym_inline_attribute_repeat1, - STATE(1295), 1, - sym__comment_with_newline, - STATE(2133), 1, - sym_key, - STATE(1325), 2, - sym_class, - sym_key_value, - ACTIONS(3785), 3, - sym__newline, - sym_identifier, - sym__whitespace1, - [31221] = 9, - ACTIONS(3783), 1, - anon_sym_DOT, - ACTIONS(3787), 1, - sym__id, - ACTIONS(3789), 1, - anon_sym_PERCENT, - ACTIONS(3817), 1, - anon_sym_RBRACE, - STATE(1221), 1, - aux_sym_inline_attribute_repeat1, - STATE(1295), 1, - sym__comment_with_newline, - STATE(2133), 1, - sym_key, - STATE(1325), 2, - sym_class, - sym_key_value, - ACTIONS(3785), 3, - sym__newline, - sym_identifier, - sym__whitespace1, - [31252] = 9, - ACTIONS(3783), 1, - anon_sym_DOT, - ACTIONS(3787), 1, - sym__id, - ACTIONS(3789), 1, - anon_sym_PERCENT, - ACTIONS(3819), 1, - anon_sym_RBRACE, - STATE(1258), 1, - aux_sym_inline_attribute_repeat1, - STATE(1295), 1, - sym__comment_with_newline, - STATE(2133), 1, - sym_key, - STATE(1325), 2, - sym_class, - sym_key_value, - ACTIONS(3785), 3, - sym__newline, - sym_identifier, - sym__whitespace1, - [31283] = 9, - ACTIONS(3783), 1, - anon_sym_DOT, - ACTIONS(3787), 1, - sym__id, - ACTIONS(3789), 1, - anon_sym_PERCENT, - ACTIONS(3821), 1, - anon_sym_RBRACE, - STATE(1258), 1, - aux_sym_inline_attribute_repeat1, - STATE(1295), 1, - sym__comment_with_newline, - STATE(2133), 1, - sym_key, - STATE(1325), 2, - sym_class, - sym_key_value, - ACTIONS(3785), 3, sym__newline, - sym_identifier, - sym__whitespace1, - [31314] = 9, - ACTIONS(3783), 1, - anon_sym_DOT, - ACTIONS(3787), 1, - sym__id, - ACTIONS(3789), 1, - anon_sym_PERCENT, - ACTIONS(3823), 1, - anon_sym_RBRACE, - STATE(1223), 1, - aux_sym_inline_attribute_repeat1, - STATE(1295), 1, - sym__comment_with_newline, - STATE(2133), 1, - sym_key, - STATE(1325), 2, - sym_class, - sym_key_value, - ACTIONS(3785), 3, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + [8112] = 2, + ACTIONS(833), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + ACTIONS(835), 30, sym__newline, - sym_identifier, - sym__whitespace1, - [31345] = 9, - ACTIONS(3783), 1, - anon_sym_DOT, - ACTIONS(3787), 1, - sym__id, - ACTIONS(3789), 1, - anon_sym_PERCENT, - ACTIONS(3825), 1, - anon_sym_RBRACE, - STATE(1258), 1, - aux_sym_inline_attribute_repeat1, - STATE(1295), 1, - sym__comment_with_newline, - STATE(2133), 1, - sym_key, - STATE(1325), 2, - sym_class, - sym_key_value, - ACTIONS(3785), 3, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + ts_builtin_sym_end, + [8152] = 2, + ACTIONS(699), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + ACTIONS(697), 30, + sym__block_close, sym__newline, - sym_identifier, - sym__whitespace1, - [31376] = 9, - ACTIONS(3783), 1, - anon_sym_DOT, - ACTIONS(3787), 1, - sym__id, - ACTIONS(3789), 1, - anon_sym_PERCENT, - ACTIONS(3827), 1, - anon_sym_RBRACE, - STATE(1255), 1, - aux_sym_inline_attribute_repeat1, - STATE(1295), 1, - sym__comment_with_newline, - STATE(2133), 1, - sym_key, - STATE(1325), 2, - sym_class, - sym_key_value, - ACTIONS(3785), 3, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + [8192] = 2, + ACTIONS(691), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + ACTIONS(689), 30, + sym__block_close, sym__newline, - sym_identifier, - sym__whitespace1, - [31407] = 9, - ACTIONS(3783), 1, - anon_sym_DOT, - ACTIONS(3787), 1, - sym__id, - ACTIONS(3789), 1, - anon_sym_PERCENT, - ACTIONS(3829), 1, - anon_sym_RBRACE, - STATE(1226), 1, - aux_sym_inline_attribute_repeat1, - STATE(1295), 1, - sym__comment_with_newline, - STATE(2133), 1, - sym_key, - STATE(1325), 2, - sym_class, - sym_key_value, - ACTIONS(3785), 3, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + [8232] = 2, + ACTIONS(679), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + ACTIONS(677), 30, + sym__block_close, sym__newline, - sym_identifier, - sym__whitespace1, - [31438] = 9, - ACTIONS(3783), 1, - anon_sym_DOT, - ACTIONS(3787), 1, - sym__id, - ACTIONS(3789), 1, - anon_sym_PERCENT, - ACTIONS(3831), 1, - anon_sym_RBRACE, - STATE(1258), 1, - aux_sym_inline_attribute_repeat1, - STATE(1295), 1, - sym__comment_with_newline, - STATE(2133), 1, - sym_key, - STATE(1325), 2, - sym_class, - sym_key_value, - ACTIONS(3785), 3, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + [8272] = 2, + ACTIONS(819), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + ACTIONS(817), 30, + sym__block_close, sym__newline, - sym_identifier, - sym__whitespace1, - [31469] = 9, - ACTIONS(3783), 1, - anon_sym_DOT, - ACTIONS(3787), 1, - sym__id, - ACTIONS(3789), 1, - anon_sym_PERCENT, - ACTIONS(3833), 1, - anon_sym_RBRACE, - STATE(1228), 1, - aux_sym_inline_attribute_repeat1, - STATE(1295), 1, - sym__comment_with_newline, - STATE(2133), 1, - sym_key, - STATE(1325), 2, - sym_class, - sym_key_value, - ACTIONS(3785), 3, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + [8312] = 2, + ACTIONS(849), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + ACTIONS(851), 29, sym__newline, - sym_identifier, - sym__whitespace1, - [31500] = 9, - ACTIONS(3783), 1, - anon_sym_DOT, - ACTIONS(3787), 1, - sym__id, - ACTIONS(3789), 1, - anon_sym_PERCENT, - ACTIONS(3835), 1, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + [8351] = 4, + ACTIONS(857), 1, + sym__block_quote_continuation, + STATE(261), 1, + aux_sym__block_quote_prefix_repeat1, + ACTIONS(853), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + ACTIONS(855), 27, + sym__block_close, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + [8394] = 11, + ACTIONS(862), 1, anon_sym_RBRACE, - STATE(1258), 1, - aux_sym_inline_attribute_repeat1, - STATE(1295), 1, - sym__comment_with_newline, - STATE(2133), 1, - sym_key, - STATE(1325), 2, - sym_class, - sym_key_value, - ACTIONS(3785), 3, - sym__newline, - sym_identifier, - sym__whitespace1, - [31531] = 9, - ACTIONS(3783), 1, + ACTIONS(864), 1, anon_sym_DOT, - ACTIONS(3787), 1, - sym__id, - ACTIONS(3789), 1, - anon_sym_PERCENT, - ACTIONS(3837), 1, - anon_sym_RBRACE, - STATE(1230), 1, - aux_sym_inline_attribute_repeat1, - STATE(1295), 1, - sym__comment_with_newline, - STATE(2133), 1, - sym_key, - STATE(1325), 2, - sym_class, - sym_key_value, - ACTIONS(3785), 3, - sym__newline, + ACTIONS(866), 1, sym_identifier, + ACTIONS(868), 1, sym__whitespace1, - [31562] = 9, - ACTIONS(3783), 1, - anon_sym_DOT, - ACTIONS(3787), 1, + ACTIONS(870), 1, sym__id, - ACTIONS(3789), 1, + ACTIONS(872), 1, anon_sym_PERCENT, - ACTIONS(3839), 1, - anon_sym_RBRACE, - STATE(1258), 1, - aux_sym_inline_attribute_repeat1, - STATE(1295), 1, - sym__comment_with_newline, - STATE(2133), 1, + STATE(288), 1, + aux_sym_block_attribute_repeat1, + STATE(945), 1, sym_key, - STATE(1325), 2, + ACTIONS(874), 2, + sym__eof_or_newline, + sym__newline_inline, + STATE(457), 3, sym_class, sym_key_value, - ACTIONS(3785), 3, - sym__newline, - sym_identifier, - sym__whitespace1, - [31593] = 9, - ACTIONS(3783), 1, + sym__comment_no_newline, + ACTIONS(860), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [8435] = 11, + ACTIONS(864), 1, anon_sym_DOT, - ACTIONS(3787), 1, - sym__id, - ACTIONS(3789), 1, - anon_sym_PERCENT, - ACTIONS(3841), 1, - anon_sym_RBRACE, - STATE(1232), 1, - aux_sym_inline_attribute_repeat1, - STATE(1295), 1, - sym__comment_with_newline, - STATE(2133), 1, - sym_key, - STATE(1325), 2, - sym_class, - sym_key_value, - ACTIONS(3785), 3, - sym__newline, + ACTIONS(866), 1, sym_identifier, + ACTIONS(868), 1, sym__whitespace1, - [31624] = 9, - ACTIONS(3783), 1, - anon_sym_DOT, - ACTIONS(3787), 1, + ACTIONS(870), 1, sym__id, - ACTIONS(3789), 1, + ACTIONS(872), 1, anon_sym_PERCENT, - ACTIONS(3843), 1, + ACTIONS(876), 1, anon_sym_RBRACE, - STATE(1258), 1, - aux_sym_inline_attribute_repeat1, - STATE(1295), 1, - sym__comment_with_newline, - STATE(2133), 1, + STATE(292), 1, + aux_sym_block_attribute_repeat1, + STATE(945), 1, sym_key, - STATE(1325), 2, + ACTIONS(874), 2, + sym__eof_or_newline, + sym__newline_inline, + STATE(457), 3, sym_class, sym_key_value, - ACTIONS(3785), 3, - sym__newline, - sym_identifier, - sym__whitespace1, - [31655] = 9, - ACTIONS(3783), 1, + sym__comment_no_newline, + ACTIONS(860), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [8476] = 11, + ACTIONS(864), 1, anon_sym_DOT, - ACTIONS(3787), 1, - sym__id, - ACTIONS(3789), 1, - anon_sym_PERCENT, - ACTIONS(3845), 1, - anon_sym_RBRACE, - STATE(1216), 1, - aux_sym_inline_attribute_repeat1, - STATE(1295), 1, - sym__comment_with_newline, - STATE(2133), 1, - sym_key, - STATE(1325), 2, - sym_class, - sym_key_value, - ACTIONS(3785), 3, - sym__newline, + ACTIONS(866), 1, sym_identifier, + ACTIONS(868), 1, sym__whitespace1, - [31686] = 9, - ACTIONS(3783), 1, - anon_sym_DOT, - ACTIONS(3787), 1, + ACTIONS(870), 1, sym__id, - ACTIONS(3789), 1, + ACTIONS(872), 1, anon_sym_PERCENT, - ACTIONS(3847), 1, + ACTIONS(878), 1, anon_sym_RBRACE, - STATE(1235), 1, - aux_sym_inline_attribute_repeat1, - STATE(1295), 1, - sym__comment_with_newline, - STATE(2133), 1, + STATE(282), 1, + aux_sym_block_attribute_repeat1, + STATE(945), 1, sym_key, - STATE(1325), 2, + ACTIONS(874), 2, + sym__eof_or_newline, + sym__newline_inline, + STATE(457), 3, sym_class, sym_key_value, - ACTIONS(3785), 3, - sym__newline, - sym_identifier, - sym__whitespace1, - [31717] = 9, - ACTIONS(3783), 1, + sym__comment_no_newline, + ACTIONS(860), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [8517] = 11, + ACTIONS(864), 1, anon_sym_DOT, - ACTIONS(3787), 1, - sym__id, - ACTIONS(3789), 1, - anon_sym_PERCENT, - ACTIONS(3849), 1, - anon_sym_RBRACE, - STATE(1258), 1, - aux_sym_inline_attribute_repeat1, - STATE(1295), 1, - sym__comment_with_newline, - STATE(2133), 1, - sym_key, - STATE(1325), 2, - sym_class, - sym_key_value, - ACTIONS(3785), 3, - sym__newline, + ACTIONS(866), 1, sym_identifier, + ACTIONS(868), 1, sym__whitespace1, - [31748] = 9, - ACTIONS(3783), 1, - anon_sym_DOT, - ACTIONS(3787), 1, + ACTIONS(870), 1, sym__id, - ACTIONS(3789), 1, + ACTIONS(872), 1, anon_sym_PERCENT, - ACTIONS(3851), 1, + ACTIONS(880), 1, anon_sym_RBRACE, - STATE(1247), 1, - aux_sym_inline_attribute_repeat1, - STATE(1295), 1, - sym__comment_with_newline, - STATE(2133), 1, + STATE(285), 1, + aux_sym_block_attribute_repeat1, + STATE(945), 1, sym_key, - STATE(1325), 2, + ACTIONS(874), 2, + sym__eof_or_newline, + sym__newline_inline, + STATE(457), 3, sym_class, sym_key_value, - ACTIONS(3785), 3, - sym__newline, - sym_identifier, - sym__whitespace1, - [31779] = 9, - ACTIONS(3783), 1, + sym__comment_no_newline, + ACTIONS(860), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [8558] = 11, + ACTIONS(864), 1, anon_sym_DOT, - ACTIONS(3787), 1, - sym__id, - ACTIONS(3789), 1, - anon_sym_PERCENT, - ACTIONS(3853), 1, - anon_sym_RBRACE, - STATE(1220), 1, - aux_sym_inline_attribute_repeat1, - STATE(1295), 1, - sym__comment_with_newline, - STATE(2133), 1, - sym_key, - STATE(1325), 2, - sym_class, - sym_key_value, - ACTIONS(3785), 3, - sym__newline, + ACTIONS(866), 1, sym_identifier, + ACTIONS(868), 1, sym__whitespace1, - [31810] = 9, - ACTIONS(3783), 1, - anon_sym_DOT, - ACTIONS(3787), 1, + ACTIONS(870), 1, sym__id, - ACTIONS(3789), 1, + ACTIONS(872), 1, anon_sym_PERCENT, - ACTIONS(3855), 1, + ACTIONS(882), 1, anon_sym_RBRACE, - STATE(1258), 1, - aux_sym_inline_attribute_repeat1, - STATE(1295), 1, - sym__comment_with_newline, - STATE(2133), 1, + STATE(281), 1, + aux_sym_block_attribute_repeat1, + STATE(945), 1, sym_key, - STATE(1325), 2, + ACTIONS(874), 2, + sym__eof_or_newline, + sym__newline_inline, + STATE(457), 3, sym_class, sym_key_value, - ACTIONS(3785), 3, + sym__comment_no_newline, + ACTIONS(860), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [8599] = 10, + ACTIONS(477), 1, + sym__block_quote_continuation, + ACTIONS(884), 1, + anon_sym_PIPE, + ACTIONS(886), 1, sym__newline, - sym_identifier, - sym__whitespace1, - [31841] = 9, - ACTIONS(3783), 1, - anon_sym_DOT, - ACTIONS(3787), 1, - sym__id, - ACTIONS(3789), 1, - anon_sym_PERCENT, - ACTIONS(3857), 1, - anon_sym_RBRACE, - STATE(1258), 1, - aux_sym_inline_attribute_repeat1, - STATE(1295), 1, - sym__comment_with_newline, - STATE(2133), 1, - sym_key, - STATE(1325), 2, - sym_class, - sym_key_value, - ACTIONS(3785), 3, + ACTIONS(888), 1, + sym__table_caption_begin, + STATE(327), 1, + sym_table_row, + STATE(604), 1, + sym_table_caption, + STATE(664), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(998), 1, + sym__block_quote_prefix, + ACTIONS(475), 2, + sym__list_item_continuation, + sym__list_item_end, + STATE(268), 3, + sym__table_content, + sym_table_separator, + aux_sym_table_repeat1, + [8633] = 7, + ACTIONS(500), 1, + sym__block_quote_continuation, + ACTIONS(890), 1, + anon_sym_PIPE, + STATE(327), 1, + sym_table_row, + STATE(664), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(998), 1, + sym__block_quote_prefix, + STATE(268), 3, + sym__table_content, + sym_table_separator, + aux_sym_table_repeat1, + ACTIONS(493), 4, sym__newline, - sym_identifier, - sym__whitespace1, - [31872] = 9, - ACTIONS(3783), 1, - anon_sym_DOT, - ACTIONS(3787), 1, - sym__id, - ACTIONS(3789), 1, - anon_sym_PERCENT, - ACTIONS(3859), 1, - anon_sym_RBRACE, - STATE(1238), 1, - aux_sym_inline_attribute_repeat1, - STATE(1295), 1, - sym__comment_with_newline, - STATE(2133), 1, - sym_key, - STATE(1325), 2, - sym_class, - sym_key_value, - ACTIONS(3785), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__table_caption_begin, + [8660] = 7, + ACTIONS(895), 1, + anon_sym_NULL, + ACTIONS(897), 1, + sym__table_caption_end, + STATE(271), 1, + aux_sym_table_caption_repeat1, + STATE(387), 1, + sym__inline_line, + STATE(1026), 1, + sym__inline, + STATE(334), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(893), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [8687] = 6, + ACTIONS(902), 1, + sym_table_cell_alignment, + STATE(755), 1, + sym_table_cell, + STATE(904), 1, + sym__inline, + ACTIONS(874), 2, + sym__eof_or_newline, + sym__newline_inline, + STATE(376), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(899), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [8712] = 7, + ACTIONS(907), 1, + anon_sym_NULL, + ACTIONS(909), 1, + sym__table_caption_end, + STATE(271), 1, + aux_sym_table_caption_repeat1, + STATE(387), 1, + sym__inline_line, + STATE(1026), 1, + sym__inline, + STATE(334), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(904), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [8739] = 6, + ACTIONS(911), 1, + sym_table_cell_alignment, + STATE(687), 1, + sym_table_cell, + STATE(904), 1, + sym__inline, + ACTIONS(874), 2, + sym__eof_or_newline, + sym__newline_inline, + STATE(376), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(899), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [8764] = 6, + ACTIONS(913), 1, + sym_table_cell_alignment, + STATE(714), 1, + sym_table_cell, + STATE(904), 1, + sym__inline, + ACTIONS(874), 2, + sym__eof_or_newline, + sym__newline_inline, + STATE(376), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(899), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [8789] = 10, + ACTIONS(475), 1, + sym__block_close, + ACTIONS(477), 1, + sym__block_quote_continuation, + ACTIONS(915), 1, + anon_sym_PIPE, + ACTIONS(917), 1, sym__newline, - sym_identifier, - sym__whitespace1, - [31903] = 9, - ACTIONS(3783), 1, - anon_sym_DOT, - ACTIONS(3787), 1, - sym__id, - ACTIONS(3789), 1, - anon_sym_PERCENT, - ACTIONS(3861), 1, + ACTIONS(919), 1, + sym__table_caption_begin, + STATE(344), 1, + sym_table_row, + STATE(664), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(809), 1, + sym_table_caption, + STATE(1005), 1, + sym__block_quote_prefix, + STATE(289), 3, + sym__table_content, + sym_table_separator, + aux_sym_table_repeat1, + [8822] = 7, + ACTIONS(921), 1, + anon_sym_NULL, + ACTIONS(923), 1, + sym__table_caption_end, + STATE(271), 1, + aux_sym_table_caption_repeat1, + STATE(387), 1, + sym__inline_line, + STATE(1026), 1, + sym__inline, + STATE(334), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(893), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [8849] = 7, + ACTIONS(925), 1, + anon_sym_NULL, + ACTIONS(927), 1, + sym__table_caption_end, + STATE(271), 1, + aux_sym_table_caption_repeat1, + STATE(387), 1, + sym__inline_line, + STATE(1026), 1, + sym__inline, + STATE(334), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(893), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [8876] = 7, + ACTIONS(929), 1, + anon_sym_NULL, + ACTIONS(931), 1, + sym__table_caption_end, + STATE(271), 1, + aux_sym_table_caption_repeat1, + STATE(387), 1, + sym__inline_line, + STATE(1026), 1, + sym__inline, + STATE(334), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(893), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [8903] = 7, + ACTIONS(933), 1, + anon_sym_NULL, + ACTIONS(935), 1, + sym__table_caption_end, + STATE(271), 1, + aux_sym_table_caption_repeat1, + STATE(387), 1, + sym__inline_line, + STATE(1026), 1, + sym__inline, + STATE(334), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(893), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [8930] = 6, + ACTIONS(937), 1, + sym_table_cell_alignment, + STATE(816), 1, + sym_table_cell, + STATE(904), 1, + sym__inline, + ACTIONS(874), 2, + sym__eof_or_newline, + sym__newline_inline, + STATE(376), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(899), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [8955] = 6, + ACTIONS(939), 1, + sym_table_cell_alignment, + STATE(771), 1, + sym_table_cell, + STATE(904), 1, + sym__inline, + ACTIONS(874), 2, + sym__eof_or_newline, + sym__newline_inline, + STATE(376), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(899), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [8980] = 8, + ACTIONS(941), 1, anon_sym_RBRACE, - STATE(1258), 1, - aux_sym_inline_attribute_repeat1, - STATE(1295), 1, - sym__comment_with_newline, - STATE(2133), 1, - sym_key, - STATE(1325), 2, - sym_class, - sym_key_value, - ACTIONS(3785), 3, - sym__newline, - sym_identifier, - sym__whitespace1, - [31934] = 9, - ACTIONS(3783), 1, + ACTIONS(943), 1, anon_sym_DOT, - ACTIONS(3787), 1, + ACTIONS(945), 1, sym__id, - ACTIONS(3789), 1, + ACTIONS(947), 1, anon_sym_PERCENT, - ACTIONS(3863), 1, - anon_sym_RBRACE, - STATE(1258), 1, - aux_sym_inline_attribute_repeat1, - STATE(1295), 1, - sym__comment_with_newline, - STATE(2133), 1, + STATE(283), 1, + aux_sym_block_attribute_repeat1, + STATE(945), 1, sym_key, - STATE(1325), 2, - sym_class, - sym_key_value, - ACTIONS(3785), 3, - sym__newline, + ACTIONS(868), 2, sym_identifier, sym__whitespace1, - [31965] = 9, - ACTIONS(3783), 1, - anon_sym_DOT, - ACTIONS(3787), 1, - sym__id, - ACTIONS(3789), 1, - anon_sym_PERCENT, - ACTIONS(3865), 1, - anon_sym_RBRACE, - STATE(1241), 1, - aux_sym_inline_attribute_repeat1, - STATE(1295), 1, - sym__comment_with_newline, - STATE(2133), 1, - sym_key, - STATE(1325), 2, + STATE(457), 3, sym_class, sym_key_value, - ACTIONS(3785), 3, - sym__newline, - sym_identifier, - sym__whitespace1, - [31996] = 9, - ACTIONS(3783), 1, + sym__comment_no_newline, + [9008] = 8, + ACTIONS(943), 1, anon_sym_DOT, - ACTIONS(3787), 1, + ACTIONS(945), 1, sym__id, - ACTIONS(3789), 1, + ACTIONS(947), 1, anon_sym_PERCENT, - ACTIONS(3867), 1, + ACTIONS(949), 1, anon_sym_RBRACE, - STATE(1258), 1, - aux_sym_inline_attribute_repeat1, - STATE(1295), 1, - sym__comment_with_newline, - STATE(2133), 1, + STATE(283), 1, + aux_sym_block_attribute_repeat1, + STATE(945), 1, sym_key, - STATE(1325), 2, - sym_class, - sym_key_value, - ACTIONS(3785), 3, - sym__newline, + ACTIONS(868), 2, sym_identifier, sym__whitespace1, - [32027] = 9, - ACTIONS(3783), 1, - anon_sym_DOT, - ACTIONS(3787), 1, - sym__id, - ACTIONS(3789), 1, - anon_sym_PERCENT, - ACTIONS(3869), 1, - anon_sym_RBRACE, - STATE(1242), 1, - aux_sym_inline_attribute_repeat1, - STATE(1295), 1, - sym__comment_with_newline, - STATE(2133), 1, - sym_key, - STATE(1325), 2, + STATE(457), 3, sym_class, sym_key_value, - ACTIONS(3785), 3, - sym__newline, - sym_identifier, - sym__whitespace1, - [32058] = 9, - ACTIONS(3783), 1, - anon_sym_DOT, - ACTIONS(3787), 1, - sym__id, - ACTIONS(3789), 1, - anon_sym_PERCENT, - ACTIONS(3871), 1, + sym__comment_no_newline, + [9036] = 8, + ACTIONS(951), 1, anon_sym_RBRACE, - STATE(1258), 1, - aux_sym_inline_attribute_repeat1, - STATE(1295), 1, - sym__comment_with_newline, - STATE(2133), 1, - sym_key, - STATE(1325), 2, - sym_class, - sym_key_value, - ACTIONS(3785), 3, - sym__newline, - sym_identifier, - sym__whitespace1, - [32089] = 9, - ACTIONS(3783), 1, + ACTIONS(953), 1, anon_sym_DOT, - ACTIONS(3787), 1, + ACTIONS(959), 1, sym__id, - ACTIONS(3789), 1, + ACTIONS(962), 1, anon_sym_PERCENT, - ACTIONS(3873), 1, - anon_sym_RBRACE, - STATE(1258), 1, - aux_sym_inline_attribute_repeat1, - STATE(1295), 1, - sym__comment_with_newline, - STATE(2133), 1, + STATE(283), 1, + aux_sym_block_attribute_repeat1, + STATE(945), 1, sym_key, - STATE(1325), 2, - sym_class, - sym_key_value, - ACTIONS(3785), 3, - sym__newline, + ACTIONS(956), 2, sym_identifier, sym__whitespace1, - [32120] = 9, - ACTIONS(3783), 1, - anon_sym_DOT, - ACTIONS(3787), 1, - sym__id, - ACTIONS(3789), 1, - anon_sym_PERCENT, - ACTIONS(3875), 1, - anon_sym_RBRACE, - STATE(1246), 1, - aux_sym_inline_attribute_repeat1, - STATE(1295), 1, - sym__comment_with_newline, - STATE(2133), 1, - sym_key, - STATE(1325), 2, + STATE(457), 3, sym_class, sym_key_value, - ACTIONS(3785), 3, - sym__newline, - sym_identifier, - sym__whitespace1, - [32151] = 9, - ACTIONS(3783), 1, + sym__comment_no_newline, + [9064] = 5, + STATE(895), 1, + sym__inline, + STATE(1042), 1, + sym_link_label, + ACTIONS(874), 2, + sym__eof_or_newline, + sym__newline_inline, + STATE(336), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(965), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [9086] = 8, + ACTIONS(943), 1, anon_sym_DOT, - ACTIONS(3787), 1, + ACTIONS(945), 1, sym__id, - ACTIONS(3789), 1, + ACTIONS(947), 1, anon_sym_PERCENT, - ACTIONS(3877), 1, + ACTIONS(968), 1, anon_sym_RBRACE, - STATE(1208), 1, - aux_sym_inline_attribute_repeat1, - STATE(1295), 1, - sym__comment_with_newline, - STATE(2133), 1, + STATE(283), 1, + aux_sym_block_attribute_repeat1, + STATE(945), 1, sym_key, - STATE(1325), 2, - sym_class, - sym_key_value, - ACTIONS(3785), 3, - sym__newline, + ACTIONS(868), 2, sym_identifier, sym__whitespace1, - [32182] = 9, - ACTIONS(3783), 1, - anon_sym_DOT, - ACTIONS(3787), 1, - sym__id, - ACTIONS(3789), 1, - anon_sym_PERCENT, - ACTIONS(3879), 1, - anon_sym_RBRACE, - STATE(1239), 1, - aux_sym_inline_attribute_repeat1, - STATE(1295), 1, - sym__comment_with_newline, - STATE(2133), 1, - sym_key, - STATE(1325), 2, + STATE(457), 3, sym_class, sym_key_value, - ACTIONS(3785), 3, - sym__newline, - sym_identifier, - sym__whitespace1, - [32213] = 9, - ACTIONS(3783), 1, + sym__comment_no_newline, + [9114] = 5, + STATE(895), 1, + sym__inline, + STATE(1043), 1, + sym_link_label, + ACTIONS(874), 2, + sym__eof_or_newline, + sym__newline_inline, + STATE(336), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(965), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [9136] = 5, + STATE(895), 1, + sym__inline, + STATE(1044), 1, + sym_link_label, + ACTIONS(874), 2, + sym__eof_or_newline, + sym__newline_inline, + STATE(336), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(965), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [9158] = 8, + ACTIONS(943), 1, anon_sym_DOT, - ACTIONS(3787), 1, + ACTIONS(945), 1, sym__id, - ACTIONS(3789), 1, + ACTIONS(947), 1, anon_sym_PERCENT, - ACTIONS(3881), 1, + ACTIONS(970), 1, anon_sym_RBRACE, - STATE(1258), 1, - aux_sym_inline_attribute_repeat1, - STATE(1295), 1, - sym__comment_with_newline, - STATE(2133), 1, + STATE(283), 1, + aux_sym_block_attribute_repeat1, + STATE(945), 1, sym_key, - STATE(1325), 2, - sym_class, - sym_key_value, - ACTIONS(3785), 3, - sym__newline, + ACTIONS(868), 2, sym_identifier, sym__whitespace1, - [32244] = 9, - ACTIONS(3783), 1, - anon_sym_DOT, - ACTIONS(3787), 1, - sym__id, - ACTIONS(3789), 1, - anon_sym_PERCENT, - ACTIONS(3883), 1, - anon_sym_RBRACE, - STATE(1251), 1, - aux_sym_inline_attribute_repeat1, - STATE(1295), 1, - sym__comment_with_newline, - STATE(2133), 1, - sym_key, - STATE(1325), 2, + STATE(457), 3, sym_class, sym_key_value, - ACTIONS(3785), 3, + sym__comment_no_newline, + [9186] = 7, + ACTIONS(500), 1, + sym__block_quote_continuation, + ACTIONS(972), 1, + anon_sym_PIPE, + STATE(344), 1, + sym_table_row, + STATE(664), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(1005), 1, + sym__block_quote_prefix, + ACTIONS(493), 3, + sym__block_close, sym__newline, - sym_identifier, - sym__whitespace1, - [32275] = 9, - ACTIONS(3783), 1, + sym__table_caption_begin, + STATE(289), 3, + sym__table_content, + sym_table_separator, + aux_sym_table_repeat1, + [9212] = 5, + STATE(895), 1, + sym__inline, + STATE(1045), 1, + sym_link_label, + ACTIONS(874), 2, + sym__eof_or_newline, + sym__newline_inline, + STATE(336), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(965), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [9234] = 5, + STATE(891), 1, + sym_link_label, + STATE(895), 1, + sym__inline, + ACTIONS(874), 2, + sym__eof_or_newline, + sym__newline_inline, + STATE(336), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(965), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [9256] = 8, + ACTIONS(943), 1, anon_sym_DOT, - ACTIONS(3787), 1, + ACTIONS(945), 1, sym__id, - ACTIONS(3789), 1, + ACTIONS(947), 1, anon_sym_PERCENT, - ACTIONS(3885), 1, + ACTIONS(975), 1, anon_sym_RBRACE, - STATE(1258), 1, - aux_sym_inline_attribute_repeat1, - STATE(1295), 1, - sym__comment_with_newline, - STATE(2133), 1, + STATE(283), 1, + aux_sym_block_attribute_repeat1, + STATE(945), 1, sym_key, - STATE(1325), 2, - sym_class, - sym_key_value, - ACTIONS(3785), 3, - sym__newline, + ACTIONS(868), 2, sym_identifier, sym__whitespace1, - [32306] = 9, - ACTIONS(3783), 1, - anon_sym_DOT, - ACTIONS(3787), 1, - sym__id, - ACTIONS(3789), 1, - anon_sym_PERCENT, - ACTIONS(3887), 1, - anon_sym_RBRACE, - STATE(1253), 1, - aux_sym_inline_attribute_repeat1, - STATE(1295), 1, - sym__comment_with_newline, - STATE(2133), 1, - sym_key, - STATE(1325), 2, + STATE(457), 3, sym_class, sym_key_value, - ACTIONS(3785), 3, + sym__comment_no_newline, + [9284] = 5, + STATE(625), 1, + sym__inline_line, + STATE(961), 1, + sym__inline, + STATE(1047), 1, + sym__heading_content, + STATE(334), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(893), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [9305] = 5, + ACTIONS(913), 1, + sym_table_cell_alignment, + STATE(714), 1, + sym_table_cell, + STATE(904), 1, + sym__inline, + STATE(376), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(977), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [9326] = 5, + ACTIONS(979), 1, + sym__newline, + STATE(904), 1, + sym__inline, + STATE(910), 1, + sym_table_cell, + STATE(376), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(977), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [9347] = 5, + ACTIONS(939), 1, + sym_table_cell_alignment, + STATE(771), 1, + sym_table_cell, + STATE(904), 1, + sym__inline, + STATE(376), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(977), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [9368] = 5, + STATE(275), 1, + aux_sym_table_caption_repeat1, + STATE(387), 1, + sym__inline_line, + STATE(1026), 1, + sym__inline, + STATE(334), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(893), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [9389] = 5, + STATE(625), 1, + sym__inline_line, + STATE(933), 1, + sym__heading_content, + STATE(961), 1, + sym__inline, + STATE(334), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(893), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [9410] = 5, + ACTIONS(981), 1, + sym__newline, + STATE(904), 1, + sym__inline, + STATE(910), 1, + sym_table_cell, + STATE(376), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(977), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [9431] = 5, + ACTIONS(937), 1, + sym_table_cell_alignment, + STATE(816), 1, + sym_table_cell, + STATE(904), 1, + sym__inline, + STATE(376), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(977), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [9452] = 5, + STATE(269), 1, + aux_sym_table_caption_repeat1, + STATE(387), 1, + sym__inline_line, + STATE(1026), 1, + sym__inline, + STATE(334), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(893), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [9473] = 5, + ACTIONS(911), 1, + sym_table_cell_alignment, + STATE(687), 1, + sym_table_cell, + STATE(904), 1, + sym__inline, + STATE(376), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(977), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [9494] = 5, + ACTIONS(983), 1, + sym__newline, + STATE(904), 1, + sym__inline, + STATE(910), 1, + sym_table_cell, + STATE(376), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(977), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [9515] = 5, + STATE(277), 1, + aux_sym_table_caption_repeat1, + STATE(387), 1, + sym__inline_line, + STATE(1026), 1, + sym__inline, + STATE(334), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(893), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [9536] = 5, + ACTIONS(985), 1, + sym__newline, + STATE(904), 1, + sym__inline, + STATE(910), 1, + sym_table_cell, + STATE(376), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(977), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [9557] = 5, + ACTIONS(987), 1, + sym_table_cell_alignment, + STATE(752), 1, + sym_table_cell, + STATE(904), 1, + sym__inline, + STATE(376), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(977), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [9578] = 5, + ACTIONS(989), 1, + sym_table_cell_alignment, + STATE(704), 1, + sym_table_cell, + STATE(904), 1, + sym__inline, + STATE(376), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(977), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [9599] = 5, + ACTIONS(991), 1, + sym__newline, + STATE(904), 1, + sym__inline, + STATE(910), 1, + sym_table_cell, + STATE(376), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(977), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [9620] = 5, + ACTIONS(993), 1, + sym__newline, + STATE(904), 1, + sym__inline, + STATE(910), 1, + sym_table_cell, + STATE(376), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(977), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [9641] = 5, + ACTIONS(995), 1, + sym__newline, + STATE(904), 1, + sym__inline, + STATE(910), 1, + sym_table_cell, + STATE(376), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(977), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [9662] = 5, + ACTIONS(997), 1, + sym__newline, + STATE(904), 1, + sym__inline, + STATE(910), 1, + sym_table_cell, + STATE(376), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(977), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [9683] = 5, + ACTIONS(999), 1, sym__newline, - sym_identifier, - sym__whitespace1, - [32337] = 9, - ACTIONS(3783), 1, - anon_sym_DOT, - ACTIONS(3787), 1, - sym__id, - ACTIONS(3789), 1, - anon_sym_PERCENT, - ACTIONS(3889), 1, - anon_sym_RBRACE, - STATE(1258), 1, - aux_sym_inline_attribute_repeat1, - STATE(1295), 1, - sym__comment_with_newline, - STATE(2133), 1, - sym_key, - STATE(1325), 2, - sym_class, - sym_key_value, - ACTIONS(3785), 3, + STATE(904), 1, + sym__inline, + STATE(910), 1, + sym_table_cell, + STATE(376), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(977), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [9704] = 5, + ACTIONS(1001), 1, sym__newline, - sym_identifier, - sym__whitespace1, - [32368] = 9, - ACTIONS(3783), 1, - anon_sym_DOT, - ACTIONS(3787), 1, - sym__id, - ACTIONS(3789), 1, - anon_sym_PERCENT, - ACTIONS(3891), 1, - anon_sym_RBRACE, - STATE(1257), 1, - aux_sym_inline_attribute_repeat1, - STATE(1295), 1, - sym__comment_with_newline, - STATE(2133), 1, - sym_key, - STATE(1325), 2, - sym_class, - sym_key_value, - ACTIONS(3785), 3, + STATE(904), 1, + sym__inline, + STATE(910), 1, + sym_table_cell, + STATE(376), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(977), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [9725] = 5, + ACTIONS(1003), 1, + sym_table_cell_alignment, + STATE(742), 1, + sym_table_cell, + STATE(904), 1, + sym__inline, + STATE(376), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(977), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [9746] = 5, + ACTIONS(1005), 1, sym__newline, - sym_identifier, - sym__whitespace1, - [32399] = 9, - ACTIONS(3783), 1, - anon_sym_DOT, - ACTIONS(3787), 1, - sym__id, - ACTIONS(3789), 1, - anon_sym_PERCENT, - ACTIONS(3893), 1, - anon_sym_RBRACE, - STATE(1258), 1, - aux_sym_inline_attribute_repeat1, - STATE(1295), 1, - sym__comment_with_newline, - STATE(2133), 1, - sym_key, - STATE(1325), 2, - sym_class, - sym_key_value, - ACTIONS(3785), 3, + STATE(904), 1, + sym__inline, + STATE(910), 1, + sym_table_cell, + STATE(376), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(977), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [9767] = 5, + ACTIONS(1007), 1, + sym_table_cell_alignment, + STATE(764), 1, + sym_table_cell, + STATE(904), 1, + sym__inline, + STATE(376), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(977), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [9788] = 5, + STATE(625), 1, + sym__inline_line, + STATE(961), 1, + sym__inline, + STATE(971), 1, + sym__heading_content, + STATE(334), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(893), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [9809] = 5, + ACTIONS(1009), 1, sym__newline, - sym_identifier, - sym__whitespace1, - [32430] = 9, - ACTIONS(3895), 1, - anon_sym_RBRACE, - ACTIONS(3897), 1, - anon_sym_DOT, - ACTIONS(3903), 1, - sym__id, - ACTIONS(3906), 1, - anon_sym_PERCENT, - STATE(1258), 1, - aux_sym_inline_attribute_repeat1, - STATE(1295), 1, - sym__comment_with_newline, - STATE(2133), 1, - sym_key, - STATE(1325), 2, - sym_class, - sym_key_value, - ACTIONS(3900), 3, + STATE(904), 1, + sym__inline, + STATE(910), 1, + sym_table_cell, + STATE(376), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(977), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [9830] = 5, + ACTIONS(1011), 1, sym__newline, - sym_identifier, - sym__whitespace1, - [32461] = 9, - ACTIONS(3783), 1, - anon_sym_DOT, - ACTIONS(3787), 1, - sym__id, - ACTIONS(3789), 1, - anon_sym_PERCENT, - ACTIONS(3909), 1, - anon_sym_RBRACE, - STATE(1258), 1, - aux_sym_inline_attribute_repeat1, - STATE(1295), 1, - sym__comment_with_newline, - STATE(2133), 1, - sym_key, - STATE(1325), 2, - sym_class, - sym_key_value, - ACTIONS(3785), 3, + STATE(904), 1, + sym__inline, + STATE(910), 1, + sym_table_cell, + STATE(376), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(977), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [9851] = 5, + ACTIONS(1013), 1, + sym_table_cell_alignment, + STATE(804), 1, + sym_table_cell, + STATE(904), 1, + sym__inline, + STATE(376), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(977), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [9872] = 5, + STATE(276), 1, + aux_sym_table_caption_repeat1, + STATE(387), 1, + sym__inline_line, + STATE(1026), 1, + sym__inline, + STATE(334), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(893), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [9893] = 5, + ACTIONS(902), 1, + sym_table_cell_alignment, + STATE(755), 1, + sym_table_cell, + STATE(904), 1, + sym__inline, + STATE(376), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(977), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [9914] = 5, + ACTIONS(1015), 1, sym__newline, - sym_identifier, - sym__whitespace1, - [32492] = 9, - ACTIONS(3783), 1, - anon_sym_DOT, - ACTIONS(3787), 1, - sym__id, - ACTIONS(3789), 1, - anon_sym_PERCENT, - ACTIONS(3911), 1, - anon_sym_RBRACE, - STATE(1259), 1, - aux_sym_inline_attribute_repeat1, - STATE(1295), 1, - sym__comment_with_newline, - STATE(2133), 1, - sym_key, - STATE(1325), 2, - sym_class, - sym_key_value, - ACTIONS(3785), 3, + STATE(904), 1, + sym__inline, + STATE(910), 1, + sym_table_cell, + STATE(376), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(977), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [9935] = 5, + STATE(278), 1, + aux_sym_table_caption_repeat1, + STATE(387), 1, + sym__inline_line, + STATE(1026), 1, + sym__inline, + STATE(334), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(893), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [9956] = 5, + STATE(625), 1, + sym__inline_line, + STATE(961), 1, + sym__inline, + STATE(962), 1, + sym__heading_content, + STATE(334), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(893), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [9977] = 5, + ACTIONS(1017), 1, sym__newline, - sym_identifier, - sym__whitespace1, - [32523] = 7, - ACTIONS(1024), 1, + STATE(904), 1, + sym__inline, + STATE(910), 1, + sym_table_cell, + STATE(376), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(977), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [9998] = 6, + ACTIONS(516), 1, sym__block_quote_continuation, - ACTIONS(3913), 1, + ACTIONS(1019), 1, anon_sym_PIPE, - STATE(1269), 1, - sym_table_row, - STATE(1599), 1, + STATE(415), 1, + sym_table_separator, + STATE(664), 1, aux_sym__block_quote_prefix_repeat1, - STATE(2331), 1, + STATE(1024), 1, sym__block_quote_prefix, - STATE(1261), 3, - sym__table_content, - sym_table_separator, - aux_sym_table_repeat1, - ACTIONS(1022), 4, + ACTIONS(509), 4, sym__newline, sym__list_item_continuation, sym__list_item_end, sym__table_caption_begin, - [32550] = 8, - ACTIONS(3916), 1, - anon_sym_RBRACE, - ACTIONS(3918), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - sym__id, - ACTIONS(3927), 1, - anon_sym_PERCENT, - STATE(1262), 1, - aux_sym_block_attribute_repeat1, - STATE(2156), 1, - sym_key, - ACTIONS(3921), 2, - sym_identifier, - sym__whitespace1, - STATE(1346), 3, - sym_class, - sym_key_value, - sym__comment_no_newline, - [32578] = 8, - ACTIONS(3174), 1, - anon_sym_PERCENT, - ACTIONS(3787), 1, - sym__id, - ACTIONS(3930), 1, - anon_sym_RBRACE, - ACTIONS(3932), 1, - anon_sym_DOT, - STATE(1262), 1, - aux_sym_block_attribute_repeat1, - STATE(2156), 1, - sym_key, - ACTIONS(3167), 2, - sym_identifier, - sym__whitespace1, - STATE(1346), 3, - sym_class, - sym_key_value, - sym__comment_no_newline, - [32606] = 8, - ACTIONS(3174), 1, - anon_sym_PERCENT, - ACTIONS(3787), 1, - sym__id, - ACTIONS(3932), 1, - anon_sym_DOT, - ACTIONS(3934), 1, - anon_sym_RBRACE, - STATE(1262), 1, - aux_sym_block_attribute_repeat1, - STATE(2156), 1, - sym_key, - ACTIONS(3167), 2, - sym_identifier, - sym__whitespace1, - STATE(1346), 3, - sym_class, - sym_key_value, - sym__comment_no_newline, - [32634] = 8, - ACTIONS(3174), 1, - anon_sym_PERCENT, - ACTIONS(3787), 1, - sym__id, - ACTIONS(3932), 1, - anon_sym_DOT, - ACTIONS(3936), 1, - anon_sym_RBRACE, - STATE(1262), 1, - aux_sym_block_attribute_repeat1, - STATE(2156), 1, - sym_key, - ACTIONS(3167), 2, - sym_identifier, - sym__whitespace1, - STATE(1346), 3, - sym_class, - sym_key_value, - sym__comment_no_newline, - [32662] = 8, - ACTIONS(3174), 1, - anon_sym_PERCENT, - ACTIONS(3787), 1, - sym__id, - ACTIONS(3932), 1, - anon_sym_DOT, - ACTIONS(3938), 1, - anon_sym_RBRACE, - STATE(1262), 1, - aux_sym_block_attribute_repeat1, - STATE(2156), 1, - sym_key, - ACTIONS(3167), 2, - sym_identifier, - sym__whitespace1, - STATE(1346), 3, - sym_class, - sym_key_value, - sym__comment_no_newline, - [32690] = 8, - ACTIONS(3174), 1, - anon_sym_PERCENT, - ACTIONS(3787), 1, - sym__id, - ACTIONS(3932), 1, - anon_sym_DOT, - ACTIONS(3940), 1, - anon_sym_RBRACE, - STATE(1262), 1, - aux_sym_block_attribute_repeat1, - STATE(2156), 1, - sym_key, - ACTIONS(3167), 2, - sym_identifier, - sym__whitespace1, - STATE(1346), 3, - sym_class, - sym_key_value, - sym__comment_no_newline, - [32718] = 7, - ACTIONS(1024), 1, - sym__block_quote_continuation, - ACTIONS(3942), 1, + [10020] = 4, + STATE(761), 1, + sym__inline_line, + STATE(961), 1, + sym__inline, + STATE(334), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(893), 5, + anon_sym_LBRACK, anon_sym_PIPE, - STATE(1291), 1, - sym_table_row, - STATE(1599), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(2338), 1, - sym__block_quote_prefix, - ACTIONS(1022), 3, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [10038] = 3, + ACTIONS(1024), 2, + sym__eof_or_newline, + sym__newline_inline, + STATE(331), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(1022), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [10054] = 4, + STATE(904), 1, + sym__inline, + STATE(910), 1, + sym_table_cell, + STATE(376), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(977), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [10072] = 3, + ACTIONS(1029), 2, + sym__eof_or_newline, + sym__newline_inline, + STATE(331), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(1026), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [10088] = 4, + STATE(683), 1, + sym__inline, + STATE(758), 1, + sym__paragraph_content, + STATE(329), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(11), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [10106] = 7, + ACTIONS(29), 1, + sym__list_marker_task_begin, + ACTIONS(1031), 1, sym__block_close, - sym__newline, - sym__table_caption_begin, - STATE(1268), 3, - sym__table_content, - sym_table_separator, - aux_sym_table_repeat1, - [32744] = 6, - ACTIONS(1620), 1, + ACTIONS(1033), 1, sym__block_quote_continuation, - ACTIONS(3945), 1, + STATE(37), 1, + sym_list_marker_task, + STATE(623), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(689), 1, + sym__block_quote_prefix, + STATE(358), 2, + sym__list_item_task, + aux_sym__list_task_repeat1, + [10129] = 3, + ACTIONS(1024), 1, + sym__eof_or_newline, + STATE(359), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(1035), 5, + anon_sym_LBRACK, anon_sym_PIPE, - STATE(1399), 1, - sym_table_separator, - STATE(1599), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(2357), 1, - sym__block_quote_prefix, - ACTIONS(1613), 4, - sym__newline, - sym__list_item_continuation, - sym__list_item_end, - sym__table_caption_begin, - [32766] = 7, - ACTIONS(3948), 1, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [10144] = 7, + ACTIONS(1037), 1, aux_sym__line_token1, - ACTIONS(3950), 1, + ACTIONS(1039), 1, sym__block_close, - ACTIONS(3952), 1, + ACTIONS(1041), 1, sym__block_quote_continuation, - STATE(1617), 1, + STATE(590), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1912), 1, + STATE(770), 1, sym__block_quote_prefix, - STATE(2218), 1, + STATE(872), 1, sym_code, - STATE(1327), 2, + STATE(365), 2, sym__line, aux_sym_code_repeat1, - [32789] = 7, - ACTIONS(3948), 1, + [10167] = 3, + ACTIONS(1045), 1, + anon_sym_RBRACK, + STATE(351), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(1043), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [10182] = 7, + ACTIONS(1037), 1, aux_sym__line_token1, - ACTIONS(3952), 1, + ACTIONS(1041), 1, sym__block_quote_continuation, - ACTIONS(3954), 1, + ACTIONS(1047), 1, sym__block_close, - STATE(1617), 1, + STATE(590), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1912), 1, + STATE(770), 1, sym__block_quote_prefix, - STATE(1968), 1, + STATE(871), 1, sym_code, - STATE(1327), 2, + STATE(365), 2, sym__line, aux_sym_code_repeat1, - [32812] = 7, - ACTIONS(3948), 1, + [10205] = 7, + ACTIONS(1037), 1, aux_sym__line_token1, - ACTIONS(3952), 1, + ACTIONS(1041), 1, sym__block_quote_continuation, - ACTIONS(3956), 1, + ACTIONS(1049), 1, sym__block_close, - STATE(1617), 1, + STATE(590), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1912), 1, + STATE(770), 1, sym__block_quote_prefix, - STATE(2217), 1, + STATE(992), 1, sym_code, - STATE(1327), 2, + STATE(365), 2, sym__line, aux_sym_code_repeat1, - [32835] = 7, - ACTIONS(3948), 1, + [10228] = 7, + ACTIONS(1037), 1, aux_sym__line_token1, - ACTIONS(3952), 1, + ACTIONS(1041), 1, sym__block_quote_continuation, - ACTIONS(3958), 1, + ACTIONS(1051), 1, sym__block_close, - STATE(1617), 1, + STATE(590), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1912), 1, + STATE(770), 1, sym__block_quote_prefix, - STATE(2223), 1, + STATE(942), 1, sym_code, - STATE(1327), 2, + STATE(365), 2, sym__line, aux_sym_code_repeat1, - [32858] = 7, - ACTIONS(3948), 1, + [10251] = 7, + ACTIONS(29), 1, + sym__list_marker_task_begin, + ACTIONS(1033), 1, + sym__block_quote_continuation, + ACTIONS(1053), 1, + sym__block_close, + STATE(37), 1, + sym_list_marker_task, + STATE(623), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(689), 1, + sym__block_quote_prefix, + STATE(358), 2, + sym__list_item_task, + aux_sym__list_task_repeat1, + [10274] = 7, + ACTIONS(29), 1, + sym__list_marker_task_begin, + ACTIONS(1033), 1, + sym__block_quote_continuation, + ACTIONS(1055), 1, + sym__block_close, + STATE(37), 1, + sym_list_marker_task, + STATE(623), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(689), 1, + sym__block_quote_prefix, + STATE(358), 2, + sym__list_item_task, + aux_sym__list_task_repeat1, + [10297] = 7, + ACTIONS(1037), 1, aux_sym__line_token1, - ACTIONS(3952), 1, + ACTIONS(1041), 1, sym__block_quote_continuation, - ACTIONS(3960), 1, + ACTIONS(1057), 1, sym__block_close, - STATE(1617), 1, + STATE(590), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1912), 1, + STATE(770), 1, sym__block_quote_prefix, - STATE(2191), 1, + STATE(862), 1, sym_code, - STATE(1327), 2, + STATE(365), 2, sym__line, aux_sym_code_repeat1, - [32881] = 3, - ACTIONS(3962), 1, + [10320] = 7, + ACTIONS(1037), 1, + aux_sym__line_token1, + ACTIONS(1041), 1, sym__block_quote_continuation, - STATE(1278), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(3213), 6, - sym__block_close, - sym_list_marker_dash, - sym_list_marker_star, - sym_list_marker_plus, - sym__list_marker_task_begin, - anon_sym_PIPE, - [32896] = 7, - ACTIONS(79), 1, - sym__list_marker_task_begin, - ACTIONS(3964), 1, + ACTIONS(1059), 1, sym__block_close, - ACTIONS(3966), 1, + STATE(590), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(770), 1, + sym__block_quote_prefix, + STATE(951), 1, + sym_code, + STATE(365), 2, + sym__line, + aux_sym_code_repeat1, + [10343] = 6, + ACTIONS(516), 1, sym__block_quote_continuation, - STATE(49), 1, - sym_list_marker_task, - STATE(1702), 1, + ACTIONS(1061), 1, + anon_sym_PIPE, + STATE(468), 1, + sym_table_separator, + STATE(664), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1946), 1, + STATE(1028), 1, sym__block_quote_prefix, - STATE(1293), 2, - sym__list_item_task, - aux_sym__list_task_repeat1, - [32919] = 7, - ACTIONS(3948), 1, + ACTIONS(509), 3, + sym__block_close, + sym__newline, + sym__table_caption_begin, + [10364] = 7, + ACTIONS(1037), 1, aux_sym__line_token1, - ACTIONS(3952), 1, + ACTIONS(1041), 1, sym__block_quote_continuation, - ACTIONS(3968), 1, + ACTIONS(1064), 1, sym__block_close, - STATE(1617), 1, + STATE(590), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1912), 1, + STATE(770), 1, sym__block_quote_prefix, - STATE(2358), 1, + STATE(913), 1, sym_code, - STATE(1327), 2, + STATE(365), 2, sym__line, aux_sym_code_repeat1, - [32942] = 3, - ACTIONS(3970), 1, + [10387] = 3, + ACTIONS(1066), 1, sym__block_quote_continuation, - STATE(1278), 1, + STATE(346), 1, aux_sym__block_quote_prefix_repeat1, - ACTIONS(3158), 6, + ACTIONS(855), 6, sym__block_close, sym_list_marker_dash, sym_list_marker_star, sym_list_marker_plus, sym__list_marker_task_begin, anon_sym_PIPE, - [32957] = 7, - ACTIONS(3948), 1, + [10402] = 3, + STATE(753), 1, + sym__inline, + STATE(329), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(11), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [10417] = 7, + ACTIONS(1037), 1, aux_sym__line_token1, - ACTIONS(3952), 1, + ACTIONS(1041), 1, sym__block_quote_continuation, - ACTIONS(3973), 1, + ACTIONS(1069), 1, sym__block_close, - STATE(1617), 1, + STATE(590), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1912), 1, + STATE(770), 1, sym__block_quote_prefix, - STATE(2045), 1, + STATE(950), 1, sym_code, - STATE(1327), 2, + STATE(365), 2, sym__line, aux_sym_code_repeat1, - [32980] = 7, - ACTIONS(79), 1, - sym__list_marker_task_begin, - ACTIONS(3966), 1, + [10440] = 3, + ACTIONS(1073), 1, sym__block_quote_continuation, - ACTIONS(3975), 1, - sym__block_close, - STATE(49), 1, - sym_list_marker_task, - STATE(1702), 1, + STATE(346), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1946), 1, - sym__block_quote_prefix, - STATE(1293), 2, - sym__list_item_task, - aux_sym__list_task_repeat1, - [33003] = 7, - ACTIONS(79), 1, - sym__list_marker_task_begin, - ACTIONS(3966), 1, - sym__block_quote_continuation, - ACTIONS(3977), 1, + ACTIONS(1071), 6, sym__block_close, - STATE(49), 1, - sym_list_marker_task, - STATE(1702), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(1946), 1, - sym__block_quote_prefix, - STATE(1293), 2, - sym__list_item_task, - aux_sym__list_task_repeat1, - [33026] = 7, - ACTIONS(3948), 1, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + anon_sym_PIPE, + [10455] = 7, + ACTIONS(1037), 1, aux_sym__line_token1, - ACTIONS(3952), 1, + ACTIONS(1041), 1, sym__block_quote_continuation, - ACTIONS(3979), 1, + ACTIONS(1075), 1, sym__block_close, - STATE(1617), 1, + STATE(590), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1912), 1, + STATE(770), 1, sym__block_quote_prefix, - STATE(2128), 1, + STATE(916), 1, sym_code, - STATE(1327), 2, + STATE(365), 2, sym__line, aux_sym_code_repeat1, - [33049] = 7, - ACTIONS(3948), 1, + [10478] = 3, + ACTIONS(1080), 1, + anon_sym_RBRACK, + STATE(351), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(1077), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [10493] = 7, + ACTIONS(1037), 1, aux_sym__line_token1, - ACTIONS(3952), 1, + ACTIONS(1041), 1, sym__block_quote_continuation, - ACTIONS(3981), 1, + ACTIONS(1082), 1, sym__block_close, - STATE(1617), 1, + STATE(590), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1912), 1, + STATE(770), 1, sym__block_quote_prefix, - STATE(2107), 1, + STATE(960), 1, sym_code, - STATE(1327), 2, + STATE(365), 2, sym__line, aux_sym_code_repeat1, - [33072] = 7, - ACTIONS(3948), 1, + [10516] = 7, + ACTIONS(1037), 1, aux_sym__line_token1, - ACTIONS(3952), 1, + ACTIONS(1041), 1, sym__block_quote_continuation, - ACTIONS(3983), 1, + ACTIONS(1084), 1, sym__block_close, - STATE(1617), 1, + STATE(590), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1912), 1, + STATE(770), 1, sym__block_quote_prefix, - STATE(2112), 1, + STATE(988), 1, sym_code, - STATE(1327), 2, + STATE(365), 2, sym__line, aux_sym_code_repeat1, - [33095] = 7, - ACTIONS(3948), 1, + [10539] = 7, + ACTIONS(1037), 1, aux_sym__line_token1, - ACTIONS(3952), 1, + ACTIONS(1041), 1, sym__block_quote_continuation, - ACTIONS(3985), 1, + ACTIONS(1086), 1, sym__block_close, - STATE(1617), 1, + STATE(590), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1912), 1, + STATE(770), 1, sym__block_quote_prefix, - STATE(2129), 1, + STATE(987), 1, sym_code, - STATE(1327), 2, + STATE(365), 2, sym__line, aux_sym_code_repeat1, - [33118] = 7, - ACTIONS(3948), 1, + [10562] = 7, + ACTIONS(1037), 1, aux_sym__line_token1, - ACTIONS(3952), 1, + ACTIONS(1041), 1, sym__block_quote_continuation, - ACTIONS(3987), 1, + ACTIONS(1088), 1, sym__block_close, - STATE(1617), 1, + STATE(590), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1912), 1, + STATE(770), 1, sym__block_quote_prefix, - STATE(2356), 1, + STATE(926), 1, sym_code, - STATE(1327), 2, + STATE(365), 2, sym__line, aux_sym_code_repeat1, - [33141] = 7, - ACTIONS(3948), 1, + [10585] = 7, + ACTIONS(1037), 1, aux_sym__line_token1, - ACTIONS(3952), 1, + ACTIONS(1041), 1, sym__block_quote_continuation, - ACTIONS(3989), 1, + ACTIONS(1090), 1, sym__block_close, - STATE(1617), 1, + STATE(590), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1912), 1, + STATE(770), 1, sym__block_quote_prefix, - STATE(2016), 1, + STATE(894), 1, sym_code, - STATE(1327), 2, + STATE(365), 2, sym__line, aux_sym_code_repeat1, - [33164] = 7, - ACTIONS(79), 1, - sym__list_marker_task_begin, - ACTIONS(3966), 1, - sym__block_quote_continuation, - ACTIONS(3991), 1, - sym__block_close, - STATE(49), 1, - sym_list_marker_task, - STATE(1702), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(1946), 1, - sym__block_quote_prefix, - STATE(1293), 2, - sym__list_item_task, - aux_sym__list_task_repeat1, - [33187] = 7, - ACTIONS(3948), 1, + [10608] = 7, + ACTIONS(1037), 1, aux_sym__line_token1, - ACTIONS(3952), 1, + ACTIONS(1041), 1, sym__block_quote_continuation, - ACTIONS(3993), 1, + ACTIONS(1092), 1, sym__block_close, - STATE(1617), 1, + STATE(590), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1912), 1, + STATE(770), 1, sym__block_quote_prefix, - STATE(2330), 1, + STATE(896), 1, sym_code, - STATE(1327), 2, + STATE(365), 2, sym__line, aux_sym_code_repeat1, - [33210] = 7, - ACTIONS(79), 1, + [10631] = 7, + ACTIONS(1094), 1, + sym__block_close, + ACTIONS(1096), 1, sym__list_marker_task_begin, - ACTIONS(3966), 1, + ACTIONS(1099), 1, sym__block_quote_continuation, - ACTIONS(3995), 1, - sym__block_close, - STATE(49), 1, + STATE(37), 1, sym_list_marker_task, - STATE(1702), 1, + STATE(623), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1946), 1, + STATE(689), 1, sym__block_quote_prefix, - STATE(1293), 2, + STATE(358), 2, sym__list_item_task, aux_sym__list_task_repeat1, - [33233] = 6, - ACTIONS(1620), 1, - sym__block_quote_continuation, - ACTIONS(3997), 1, + [10654] = 3, + ACTIONS(1029), 1, + sym__eof_or_newline, + STATE(359), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(1102), 5, + anon_sym_LBRACK, anon_sym_PIPE, - STATE(1429), 1, - sym_table_separator, - STATE(1599), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(2361), 1, - sym__block_quote_prefix, - ACTIONS(1613), 3, - sym__block_close, - sym__newline, - sym__table_caption_begin, - [33254] = 7, - ACTIONS(3948), 1, - aux_sym__line_token1, - ACTIONS(3952), 1, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [10669] = 7, + ACTIONS(29), 1, + sym__list_marker_task_begin, + ACTIONS(1033), 1, sym__block_quote_continuation, - ACTIONS(4000), 1, + ACTIONS(1105), 1, sym__block_close, - STATE(1617), 1, + STATE(37), 1, + sym_list_marker_task, + STATE(623), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1912), 1, + STATE(689), 1, sym__block_quote_prefix, - STATE(2138), 1, - sym_code, - STATE(1327), 2, - sym__line, - aux_sym_code_repeat1, - [33277] = 7, - ACTIONS(4002), 1, - sym__block_close, - ACTIONS(4004), 1, + STATE(358), 2, + sym__list_item_task, + aux_sym__list_task_repeat1, + [10692] = 7, + ACTIONS(29), 1, sym__list_marker_task_begin, - ACTIONS(4007), 1, + ACTIONS(1033), 1, sym__block_quote_continuation, - STATE(49), 1, + ACTIONS(1107), 1, + sym__block_close, + STATE(37), 1, sym_list_marker_task, - STATE(1702), 1, + STATE(623), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1946), 1, + STATE(689), 1, sym__block_quote_prefix, - STATE(1293), 2, + STATE(358), 2, sym__list_item_task, aux_sym__list_task_repeat1, - [33300] = 7, - ACTIONS(79), 1, - sym__list_marker_task_begin, - ACTIONS(4010), 1, - anon_sym_PIPE, - ACTIONS(4012), 1, - sym__block_close, - ACTIONS(4014), 1, - sym_list_marker_dash, - ACTIONS(4016), 1, - sym_list_marker_star, - ACTIONS(4018), 1, - sym_list_marker_plus, - STATE(39), 1, - sym_list_marker_task, - [33322] = 1, - ACTIONS(4020), 7, - sym__newline, - anon_sym_RBRACE, - anon_sym_DOT, - sym_identifier, - sym__whitespace1, - sym__id, - anon_sym_PERCENT, - [33332] = 1, - ACTIONS(4022), 7, - sym__newline, - anon_sym_RBRACE, - anon_sym_DOT, - sym_identifier, - sym__whitespace1, - sym__id, - anon_sym_PERCENT, - [33342] = 3, - ACTIONS(4024), 1, + [10715] = 3, + ACTIONS(1109), 1, sym__block_quote_continuation, - STATE(1297), 1, + STATE(362), 1, aux_sym__block_quote_prefix_repeat1, - ACTIONS(3158), 5, + ACTIONS(855), 5, sym_list_marker_dash, sym_list_marker_star, sym_list_marker_plus, sym__list_marker_task_begin, anon_sym_PIPE, - [33356] = 1, - ACTIONS(4027), 7, - sym__newline, - anon_sym_RBRACE, - anon_sym_DOT, - sym_identifier, - sym__whitespace1, - sym__id, - anon_sym_PERCENT, - [33366] = 1, - ACTIONS(4029), 7, - sym__newline, - anon_sym_RBRACE, - anon_sym_DOT, - sym_identifier, - sym__whitespace1, - sym__id, - anon_sym_PERCENT, - [33376] = 1, - ACTIONS(4031), 7, - sym__newline, - anon_sym_RBRACE, - anon_sym_DOT, - sym_identifier, - sym__whitespace1, - sym__id, - anon_sym_PERCENT, - [33386] = 6, - ACTIONS(4033), 1, + [10729] = 7, + ACTIONS(29), 1, + sym__list_marker_task_begin, + ACTIONS(1112), 1, + anon_sym_PIPE, + ACTIONS(1114), 1, sym__block_close, - ACTIONS(4035), 1, + ACTIONS(1116), 1, + sym_list_marker_dash, + ACTIONS(1118), 1, sym_list_marker_star, - ACTIONS(4038), 1, + ACTIONS(1120), 1, + sym_list_marker_plus, + STATE(44), 1, + sym_list_marker_task, + [10751] = 6, + ACTIONS(23), 1, + sym_list_marker_dash, + ACTIONS(1122), 1, + sym__block_close, + ACTIONS(1124), 1, sym__block_quote_continuation, - STATE(1624), 1, + STATE(642), 1, aux_sym__block_quote_prefix_repeat1, - STATE(2104), 1, + STATE(932), 1, sym__block_quote_prefix, - STATE(1301), 2, - sym__list_item_star, - aux_sym__list_star_repeat1, - [33406] = 6, - ACTIONS(4041), 1, + STATE(371), 2, + sym__list_item_dash, + aux_sym__list_dash_repeat1, + [10771] = 6, + ACTIONS(1037), 1, aux_sym__line_token1, - ACTIONS(4044), 1, - sym__block_close, - ACTIONS(4046), 1, + ACTIONS(1041), 1, sym__block_quote_continuation, - STATE(1617), 1, + ACTIONS(1126), 1, + sym__block_close, + STATE(590), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1912), 1, + STATE(770), 1, sym__block_quote_prefix, - STATE(1302), 2, + STATE(394), 2, sym__line, aux_sym_code_repeat1, - [33426] = 6, - ACTIONS(4049), 1, - sym__block_close, - ACTIONS(4051), 1, - sym_list_marker_plus, - ACTIONS(4054), 1, + [10791] = 6, + ACTIONS(23), 1, + sym_list_marker_dash, + ACTIONS(1124), 1, sym__block_quote_continuation, - STATE(1722), 1, + ACTIONS(1128), 1, + sym__block_close, + STATE(642), 1, aux_sym__block_quote_prefix_repeat1, - STATE(2098), 1, + STATE(932), 1, sym__block_quote_prefix, - STATE(1303), 2, - sym__list_item_plus, - aux_sym__list_plus_repeat1, - [33446] = 1, - ACTIONS(4057), 7, - sym__newline, - anon_sym_RBRACE, - anon_sym_DOT, - sym_identifier, - sym__whitespace1, - sym__id, - anon_sym_PERCENT, - [33456] = 6, - ACTIONS(73), 1, + STATE(371), 2, + sym__list_item_dash, + aux_sym__list_dash_repeat1, + [10811] = 7, + ACTIONS(29), 1, + sym__list_marker_task_begin, + ACTIONS(1112), 1, + anon_sym_PIPE, + ACTIONS(1116), 1, sym_list_marker_dash, - ACTIONS(4059), 1, + ACTIONS(1118), 1, + sym_list_marker_star, + ACTIONS(1120), 1, + sym_list_marker_plus, + ACTIONS(1130), 1, sym__block_close, - ACTIONS(4061), 1, + STATE(44), 1, + sym_list_marker_task, + [10833] = 6, + ACTIONS(23), 1, + sym_list_marker_dash, + ACTIONS(1124), 1, sym__block_quote_continuation, - STATE(1636), 1, + ACTIONS(1132), 1, + sym__block_close, + STATE(642), 1, aux_sym__block_quote_prefix_repeat1, - STATE(2096), 1, + STATE(932), 1, sym__block_quote_prefix, - STATE(1309), 2, + STATE(371), 2, sym__list_item_dash, aux_sym__list_dash_repeat1, - [33476] = 6, - ACTIONS(77), 1, + [10853] = 6, + ACTIONS(27), 1, sym_list_marker_plus, - ACTIONS(4063), 1, + ACTIONS(1134), 1, sym__block_close, - ACTIONS(4065), 1, + ACTIONS(1136), 1, sym__block_quote_continuation, - STATE(1722), 1, + STATE(677), 1, aux_sym__block_quote_prefix_repeat1, - STATE(2098), 1, + STATE(1049), 1, sym__block_quote_prefix, - STATE(1303), 2, + STATE(372), 2, sym__list_item_plus, aux_sym__list_plus_repeat1, - [33496] = 6, - ACTIONS(75), 1, + [10873] = 6, + ACTIONS(25), 1, sym_list_marker_star, - ACTIONS(4067), 1, + ACTIONS(1138), 1, sym__block_close, - ACTIONS(4069), 1, + ACTIONS(1140), 1, sym__block_quote_continuation, - STATE(1624), 1, + STATE(605), 1, aux_sym__block_quote_prefix_repeat1, - STATE(2104), 1, + STATE(1048), 1, sym__block_quote_prefix, - STATE(1301), 2, + STATE(373), 2, sym__list_item_star, aux_sym__list_star_repeat1, - [33516] = 3, - ACTIONS(4071), 1, - sym__block_quote_continuation, - STATE(1297), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(3213), 5, - sym_list_marker_dash, - sym_list_marker_star, - sym_list_marker_plus, - sym__list_marker_task_begin, - anon_sym_PIPE, - [33530] = 6, - ACTIONS(4073), 1, + [10893] = 6, + ACTIONS(1142), 1, sym__block_close, - ACTIONS(4075), 1, + ACTIONS(1144), 1, sym_list_marker_dash, - ACTIONS(4078), 1, + ACTIONS(1147), 1, sym__block_quote_continuation, - STATE(1636), 1, + STATE(642), 1, aux_sym__block_quote_prefix_repeat1, - STATE(2096), 1, + STATE(932), 1, sym__block_quote_prefix, - STATE(1309), 2, + STATE(371), 2, sym__list_item_dash, aux_sym__list_dash_repeat1, - [33550] = 1, - ACTIONS(4081), 7, - sym__newline, - anon_sym_RBRACE, - anon_sym_DOT, - sym_identifier, - sym__whitespace1, - sym__id, - anon_sym_PERCENT, - [33560] = 1, - ACTIONS(4083), 7, - sym__newline, - anon_sym_RBRACE, - anon_sym_DOT, - sym_identifier, - sym__whitespace1, - sym__id, - anon_sym_PERCENT, - [33570] = 6, - ACTIONS(73), 1, - sym_list_marker_dash, - ACTIONS(4061), 1, + [10913] = 6, + ACTIONS(1150), 1, + sym__block_close, + ACTIONS(1152), 1, + sym_list_marker_plus, + ACTIONS(1155), 1, sym__block_quote_continuation, - ACTIONS(4085), 1, + STATE(677), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(1049), 1, + sym__block_quote_prefix, + STATE(372), 2, + sym__list_item_plus, + aux_sym__list_plus_repeat1, + [10933] = 6, + ACTIONS(1158), 1, sym__block_close, - STATE(1636), 1, + ACTIONS(1160), 1, + sym_list_marker_star, + ACTIONS(1163), 1, + sym__block_quote_continuation, + STATE(605), 1, aux_sym__block_quote_prefix_repeat1, - STATE(2096), 1, + STATE(1048), 1, sym__block_quote_prefix, - STATE(1309), 2, - sym__list_item_dash, - aux_sym__list_dash_repeat1, - [33590] = 6, - ACTIONS(77), 1, + STATE(373), 2, + sym__list_item_star, + aux_sym__list_star_repeat1, + [10953] = 6, + ACTIONS(27), 1, sym_list_marker_plus, - ACTIONS(4065), 1, + ACTIONS(1136), 1, sym__block_quote_continuation, - ACTIONS(4087), 1, + ACTIONS(1166), 1, sym__block_close, - STATE(1722), 1, + STATE(677), 1, aux_sym__block_quote_prefix_repeat1, - STATE(2098), 1, + STATE(1049), 1, sym__block_quote_prefix, - STATE(1303), 2, + STATE(372), 2, sym__list_item_plus, aux_sym__list_plus_repeat1, - [33610] = 6, - ACTIONS(75), 1, + [10973] = 6, + ACTIONS(25), 1, sym_list_marker_star, - ACTIONS(4069), 1, + ACTIONS(1140), 1, sym__block_quote_continuation, - ACTIONS(4089), 1, + ACTIONS(1168), 1, sym__block_close, - STATE(1624), 1, + STATE(605), 1, aux_sym__block_quote_prefix_repeat1, - STATE(2104), 1, + STATE(1048), 1, sym__block_quote_prefix, - STATE(1301), 2, + STATE(373), 2, sym__list_item_star, aux_sym__list_star_repeat1, - [33630] = 7, - ACTIONS(79), 1, + [10993] = 3, + ACTIONS(1045), 1, + anon_sym_PIPE, + STATE(388), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(1170), 4, + anon_sym_LBRACK, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [11007] = 7, + ACTIONS(29), 1, + sym__list_marker_task_begin, + ACTIONS(1112), 1, + anon_sym_PIPE, + ACTIONS(1116), 1, + sym_list_marker_dash, + ACTIONS(1118), 1, + sym_list_marker_star, + ACTIONS(1120), 1, + sym_list_marker_plus, + ACTIONS(1172), 1, + sym__block_close, + STATE(44), 1, + sym_list_marker_task, + [11029] = 7, + ACTIONS(29), 1, sym__list_marker_task_begin, - ACTIONS(4010), 1, + ACTIONS(1112), 1, anon_sym_PIPE, - ACTIONS(4014), 1, + ACTIONS(1116), 1, sym_list_marker_dash, - ACTIONS(4016), 1, + ACTIONS(1118), 1, sym_list_marker_star, - ACTIONS(4018), 1, + ACTIONS(1120), 1, sym_list_marker_plus, - ACTIONS(4091), 1, + ACTIONS(1174), 1, sym__block_close, - STATE(39), 1, + STATE(44), 1, sym_list_marker_task, - [33652] = 7, - ACTIONS(79), 1, + [11051] = 2, + ACTIONS(1178), 1, + sym__table_caption_end, + ACTIONS(1176), 6, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_NULL, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [11063] = 7, + ACTIONS(29), 1, sym__list_marker_task_begin, - ACTIONS(4010), 1, + ACTIONS(1112), 1, anon_sym_PIPE, - ACTIONS(4014), 1, + ACTIONS(1116), 1, sym_list_marker_dash, - ACTIONS(4016), 1, + ACTIONS(1118), 1, sym_list_marker_star, - ACTIONS(4018), 1, + ACTIONS(1120), 1, sym_list_marker_plus, - ACTIONS(4093), 1, + ACTIONS(1180), 1, sym__block_close, - STATE(39), 1, + STATE(44), 1, sym_list_marker_task, - [33674] = 7, - ACTIONS(79), 1, + [11085] = 7, + ACTIONS(29), 1, sym__list_marker_task_begin, - ACTIONS(4010), 1, + ACTIONS(1112), 1, anon_sym_PIPE, - ACTIONS(4014), 1, + ACTIONS(1116), 1, sym_list_marker_dash, - ACTIONS(4016), 1, + ACTIONS(1118), 1, sym_list_marker_star, - ACTIONS(4018), 1, + ACTIONS(1120), 1, sym_list_marker_plus, - ACTIONS(4095), 1, + ACTIONS(1182), 1, sym__block_close, - STATE(39), 1, + STATE(44), 1, sym_list_marker_task, - [33696] = 6, - ACTIONS(73), 1, + [11107] = 6, + ACTIONS(23), 1, sym_list_marker_dash, - ACTIONS(4061), 1, + ACTIONS(1124), 1, sym__block_quote_continuation, - ACTIONS(4097), 1, + ACTIONS(1184), 1, sym__block_close, - STATE(1636), 1, + STATE(642), 1, aux_sym__block_quote_prefix_repeat1, - STATE(2096), 1, + STATE(932), 1, sym__block_quote_prefix, - STATE(1309), 2, + STATE(371), 2, sym__list_item_dash, aux_sym__list_dash_repeat1, - [33716] = 6, - ACTIONS(77), 1, + [11127] = 6, + ACTIONS(27), 1, + sym_list_marker_plus, + ACTIONS(1136), 1, + sym__block_quote_continuation, + ACTIONS(1186), 1, + sym__block_close, + STATE(677), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(1049), 1, + sym__block_quote_prefix, + STATE(372), 2, + sym__list_item_plus, + aux_sym__list_plus_repeat1, + [11147] = 6, + ACTIONS(27), 1, sym_list_marker_plus, - ACTIONS(4065), 1, + ACTIONS(1136), 1, sym__block_quote_continuation, - ACTIONS(4099), 1, + ACTIONS(1188), 1, sym__block_close, - STATE(1722), 1, + STATE(677), 1, aux_sym__block_quote_prefix_repeat1, - STATE(2098), 1, + STATE(1049), 1, sym__block_quote_prefix, - STATE(1303), 2, + STATE(372), 2, sym__list_item_plus, aux_sym__list_plus_repeat1, - [33736] = 6, - ACTIONS(75), 1, + [11167] = 6, + ACTIONS(25), 1, sym_list_marker_star, - ACTIONS(4069), 1, + ACTIONS(1140), 1, sym__block_quote_continuation, - ACTIONS(4101), 1, + ACTIONS(1190), 1, sym__block_close, - STATE(1624), 1, + STATE(605), 1, aux_sym__block_quote_prefix_repeat1, - STATE(2104), 1, + STATE(1048), 1, sym__block_quote_prefix, - STATE(1301), 2, + STATE(373), 2, sym__list_item_star, aux_sym__list_star_repeat1, - [33756] = 7, - ACTIONS(79), 1, - sym__list_marker_task_begin, - ACTIONS(4010), 1, - anon_sym_PIPE, - ACTIONS(4014), 1, - sym_list_marker_dash, - ACTIONS(4016), 1, + [11187] = 6, + ACTIONS(25), 1, sym_list_marker_star, - ACTIONS(4018), 1, - sym_list_marker_plus, - ACTIONS(4103), 1, + ACTIONS(1140), 1, + sym__block_quote_continuation, + ACTIONS(1192), 1, sym__block_close, - STATE(39), 1, - sym_list_marker_task, - [33778] = 7, - ACTIONS(79), 1, - sym__list_marker_task_begin, - ACTIONS(4010), 1, + STATE(605), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(1048), 1, + sym__block_quote_prefix, + STATE(373), 2, + sym__list_item_star, + aux_sym__list_star_repeat1, + [11207] = 2, + ACTIONS(1196), 1, + sym__table_caption_end, + ACTIONS(1194), 6, + anon_sym_LBRACK, anon_sym_PIPE, - ACTIONS(4014), 1, - sym_list_marker_dash, - ACTIONS(4016), 1, + anon_sym_NULL, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [11219] = 2, + STATE(388), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(1198), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [11231] = 6, + ACTIONS(25), 1, sym_list_marker_star, - ACTIONS(4018), 1, - sym_list_marker_plus, - ACTIONS(4105), 1, - sym__block_close, - STATE(39), 1, - sym_list_marker_task, - [33800] = 6, - ACTIONS(73), 1, - sym_list_marker_dash, - ACTIONS(4061), 1, + ACTIONS(1140), 1, sym__block_quote_continuation, - ACTIONS(4107), 1, + ACTIONS(1201), 1, sym__block_close, - STATE(1636), 1, + STATE(605), 1, aux_sym__block_quote_prefix_repeat1, - STATE(2096), 1, + STATE(1048), 1, sym__block_quote_prefix, - STATE(1309), 2, - sym__list_item_dash, - aux_sym__list_dash_repeat1, - [33820] = 6, - ACTIONS(77), 1, + STATE(373), 2, + sym__list_item_star, + aux_sym__list_star_repeat1, + [11251] = 6, + ACTIONS(27), 1, sym_list_marker_plus, - ACTIONS(4065), 1, + ACTIONS(1136), 1, sym__block_quote_continuation, - ACTIONS(4109), 1, + ACTIONS(1203), 1, sym__block_close, - STATE(1722), 1, + STATE(677), 1, aux_sym__block_quote_prefix_repeat1, - STATE(2098), 1, + STATE(1049), 1, sym__block_quote_prefix, - STATE(1303), 2, + STATE(372), 2, sym__list_item_plus, aux_sym__list_plus_repeat1, - [33840] = 1, - ACTIONS(4111), 7, - sym__newline, - anon_sym_RBRACE, - anon_sym_DOT, - sym_identifier, - sym__whitespace1, - sym__id, - anon_sym_PERCENT, - [33850] = 6, - ACTIONS(75), 1, - sym_list_marker_star, - ACTIONS(4069), 1, - sym__block_quote_continuation, - ACTIONS(4113), 1, - sym__block_close, - STATE(1624), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(2104), 1, - sym__block_quote_prefix, - STATE(1301), 2, - sym__list_item_star, - aux_sym__list_star_repeat1, - [33870] = 6, - ACTIONS(3948), 1, - aux_sym__line_token1, - ACTIONS(3952), 1, + [11271] = 6, + ACTIONS(23), 1, + sym_list_marker_dash, + ACTIONS(1124), 1, sym__block_quote_continuation, - ACTIONS(4115), 1, + ACTIONS(1205), 1, sym__block_close, - STATE(1617), 1, + STATE(642), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1912), 1, + STATE(932), 1, sym__block_quote_prefix, - STATE(1302), 2, - sym__line, - aux_sym_code_repeat1, - [33890] = 7, - ACTIONS(79), 1, + STATE(371), 2, + sym__list_item_dash, + aux_sym__list_dash_repeat1, + [11291] = 7, + ACTIONS(29), 1, sym__list_marker_task_begin, - ACTIONS(4010), 1, + ACTIONS(1112), 1, anon_sym_PIPE, - ACTIONS(4014), 1, + ACTIONS(1116), 1, sym_list_marker_dash, - ACTIONS(4016), 1, + ACTIONS(1118), 1, sym_list_marker_star, - ACTIONS(4018), 1, + ACTIONS(1120), 1, sym_list_marker_plus, - ACTIONS(4117), 1, + ACTIONS(1207), 1, sym__block_close, - STATE(39), 1, + STATE(44), 1, sym_list_marker_task, - [33912] = 7, - ACTIONS(79), 1, + [11313] = 7, + ACTIONS(29), 1, sym__list_marker_task_begin, - ACTIONS(4010), 1, + ACTIONS(1112), 1, anon_sym_PIPE, - ACTIONS(4014), 1, + ACTIONS(1116), 1, sym_list_marker_dash, - ACTIONS(4016), 1, + ACTIONS(1118), 1, sym_list_marker_star, - ACTIONS(4018), 1, + ACTIONS(1120), 1, sym_list_marker_plus, - ACTIONS(4119), 1, + ACTIONS(1209), 1, sym__block_close, - STATE(39), 1, + STATE(44), 1, sym_list_marker_task, - [33934] = 6, - ACTIONS(73), 1, - sym_list_marker_dash, - ACTIONS(4061), 1, - sym__block_quote_continuation, - ACTIONS(4121), 1, - sym__block_close, - STATE(1636), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(2096), 1, - sym__block_quote_prefix, - STATE(1309), 2, - sym__list_item_dash, - aux_sym__list_dash_repeat1, - [33954] = 6, - ACTIONS(77), 1, - sym_list_marker_plus, - ACTIONS(4065), 1, - sym__block_quote_continuation, - ACTIONS(4123), 1, + [11335] = 6, + ACTIONS(1211), 1, + aux_sym__line_token1, + ACTIONS(1214), 1, sym__block_close, - STATE(1722), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(2098), 1, - sym__block_quote_prefix, - STATE(1303), 2, - sym__list_item_plus, - aux_sym__list_plus_repeat1, - [33974] = 6, - ACTIONS(75), 1, - sym_list_marker_star, - ACTIONS(4069), 1, + ACTIONS(1216), 1, sym__block_quote_continuation, - ACTIONS(4125), 1, - sym__block_close, - STATE(1624), 1, + STATE(590), 1, aux_sym__block_quote_prefix_repeat1, - STATE(2104), 1, + STATE(770), 1, sym__block_quote_prefix, - STATE(1301), 2, - sym__list_item_star, - aux_sym__list_star_repeat1, - [33994] = 7, - ACTIONS(79), 1, + STATE(394), 2, + sym__line, + aux_sym_code_repeat1, + [11355] = 7, + ACTIONS(29), 1, sym__list_marker_task_begin, - ACTIONS(4010), 1, + ACTIONS(1112), 1, anon_sym_PIPE, - ACTIONS(4014), 1, + ACTIONS(1116), 1, sym_list_marker_dash, - ACTIONS(4016), 1, + ACTIONS(1118), 1, sym_list_marker_star, - ACTIONS(4018), 1, + ACTIONS(1120), 1, sym_list_marker_plus, - ACTIONS(4127), 1, + ACTIONS(1219), 1, sym__block_close, - STATE(39), 1, + STATE(44), 1, sym_list_marker_task, - [34016] = 7, - ACTIONS(79), 1, + [11377] = 7, + ACTIONS(29), 1, sym__list_marker_task_begin, - ACTIONS(4010), 1, + ACTIONS(1112), 1, anon_sym_PIPE, - ACTIONS(4014), 1, + ACTIONS(1116), 1, sym_list_marker_dash, - ACTIONS(4016), 1, + ACTIONS(1118), 1, sym_list_marker_star, - ACTIONS(4018), 1, + ACTIONS(1120), 1, sym_list_marker_plus, - ACTIONS(4129), 1, + ACTIONS(1221), 1, sym__block_close, - STATE(39), 1, + STATE(44), 1, sym_list_marker_task, - [34038] = 6, - ACTIONS(4131), 1, + [11399] = 3, + ACTIONS(1223), 1, + sym__block_quote_continuation, + STATE(362), 1, + aux_sym__block_quote_prefix_repeat1, + ACTIONS(1071), 5, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + anon_sym_PIPE, + [11413] = 6, + ACTIONS(1225), 1, sym__list_item_continuation, - ACTIONS(4133), 1, + ACTIONS(1227), 1, sym__list_item_end, - ACTIONS(4135), 1, + ACTIONS(1229), 1, sym__block_quote_continuation, - STATE(1350), 1, + STATE(454), 1, aux_sym__list_item_definition_repeat1, - STATE(1605), 1, + STATE(627), 1, aux_sym__block_quote_prefix_repeat1, - STATE(2274), 1, + STATE(1004), 1, sym__block_quote_prefix, - [34057] = 6, - ACTIONS(4131), 1, + [11432] = 6, + ACTIONS(1225), 1, sym__list_item_continuation, - ACTIONS(4135), 1, + ACTIONS(1229), 1, sym__block_quote_continuation, - ACTIONS(4137), 1, + ACTIONS(1231), 1, sym__list_item_end, - STATE(1350), 1, + STATE(454), 1, aux_sym__list_item_definition_repeat1, - STATE(1605), 1, + STATE(627), 1, aux_sym__block_quote_prefix_repeat1, - STATE(2274), 1, + STATE(1004), 1, sym__block_quote_prefix, - [34076] = 6, - ACTIONS(4131), 1, + [11451] = 6, + ACTIONS(1225), 1, sym__list_item_continuation, - ACTIONS(4135), 1, + ACTIONS(1229), 1, sym__block_quote_continuation, - ACTIONS(4139), 1, + ACTIONS(1233), 1, sym__list_item_end, - STATE(1350), 1, + STATE(455), 1, aux_sym__list_item_definition_repeat1, - STATE(1605), 1, + STATE(627), 1, aux_sym__block_quote_prefix_repeat1, - STATE(2274), 1, + STATE(1004), 1, sym__block_quote_prefix, - [34095] = 6, - ACTIONS(4131), 1, + [11470] = 1, + ACTIONS(553), 6, + sym__newline, sym__list_item_continuation, - ACTIONS(4135), 1, + sym__list_item_end, sym__block_quote_continuation, - ACTIONS(4141), 1, + sym__table_caption_begin, + anon_sym_PIPE, + [11479] = 1, + ACTIONS(549), 6, + sym__newline, + sym__list_item_continuation, sym__list_item_end, - STATE(1337), 1, - aux_sym__list_item_definition_repeat1, - STATE(1605), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(2274), 1, - sym__block_quote_prefix, - [34114] = 6, - ACTIONS(4131), 1, + sym__block_quote_continuation, + sym__table_caption_begin, + anon_sym_PIPE, + [11488] = 6, + ACTIONS(1225), 1, sym__list_item_continuation, - ACTIONS(4135), 1, + ACTIONS(1229), 1, sym__block_quote_continuation, - ACTIONS(4143), 1, + ACTIONS(1235), 1, sym__list_item_end, - STATE(1350), 1, + STATE(404), 1, aux_sym__list_item_definition_repeat1, - STATE(1605), 1, + STATE(627), 1, aux_sym__block_quote_prefix_repeat1, - STATE(2274), 1, + STATE(1004), 1, sym__block_quote_prefix, - [34133] = 6, - ACTIONS(4131), 1, + [11507] = 6, + ACTIONS(1225), 1, sym__list_item_continuation, - ACTIONS(4135), 1, + ACTIONS(1229), 1, sym__block_quote_continuation, - ACTIONS(4145), 1, + ACTIONS(1237), 1, sym__list_item_end, - STATE(1350), 1, + STATE(454), 1, aux_sym__list_item_definition_repeat1, - STATE(1605), 1, + STATE(627), 1, aux_sym__block_quote_prefix_repeat1, - STATE(2274), 1, + STATE(1004), 1, sym__block_quote_prefix, - [34152] = 6, - ACTIONS(4131), 1, + [11526] = 1, + ACTIONS(1239), 6, + anon_sym_RBRACE, + anon_sym_DOT, + sym_identifier, + sym__whitespace1, + sym__id, + anon_sym_PERCENT, + [11535] = 6, + ACTIONS(1225), 1, sym__list_item_continuation, - ACTIONS(4135), 1, + ACTIONS(1229), 1, sym__block_quote_continuation, - ACTIONS(4147), 1, + ACTIONS(1241), 1, sym__list_item_end, - STATE(1340), 1, + STATE(407), 1, aux_sym__list_item_definition_repeat1, - STATE(1605), 1, + STATE(627), 1, aux_sym__block_quote_prefix_repeat1, - STATE(2274), 1, + STATE(1004), 1, sym__block_quote_prefix, - [34171] = 6, - ACTIONS(4131), 1, + [11554] = 6, + ACTIONS(1225), 1, sym__list_item_continuation, - ACTIONS(4135), 1, + ACTIONS(1229), 1, sym__block_quote_continuation, - ACTIONS(4149), 1, + ACTIONS(1243), 1, sym__list_item_end, - STATE(1350), 1, + STATE(454), 1, aux_sym__list_item_definition_repeat1, - STATE(1605), 1, + STATE(627), 1, aux_sym__block_quote_prefix_repeat1, - STATE(2274), 1, + STATE(1004), 1, sym__block_quote_prefix, - [34190] = 6, - ACTIONS(4131), 1, + [11573] = 6, + ACTIONS(1225), 1, sym__list_item_continuation, - ACTIONS(4135), 1, + ACTIONS(1229), 1, sym__block_quote_continuation, - ACTIONS(4151), 1, + ACTIONS(1245), 1, sym__list_item_end, - STATE(1342), 1, + STATE(411), 1, aux_sym__list_item_definition_repeat1, - STATE(1605), 1, + STATE(627), 1, aux_sym__block_quote_prefix_repeat1, - STATE(2274), 1, + STATE(1004), 1, sym__block_quote_prefix, - [34209] = 6, - ACTIONS(4131), 1, + [11592] = 1, + ACTIONS(617), 6, + sym__newline, sym__list_item_continuation, - ACTIONS(4135), 1, + sym__list_item_end, sym__block_quote_continuation, - ACTIONS(4153), 1, + sym__table_caption_begin, + anon_sym_PIPE, + [11601] = 1, + ACTIONS(621), 6, + sym__newline, + sym__list_item_continuation, sym__list_item_end, - STATE(1350), 1, - aux_sym__list_item_definition_repeat1, - STATE(1605), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(2274), 1, - sym__block_quote_prefix, - [34228] = 6, - ACTIONS(4131), 1, + sym__block_quote_continuation, + sym__table_caption_begin, + anon_sym_PIPE, + [11610] = 6, + ACTIONS(1225), 1, sym__list_item_continuation, - ACTIONS(4135), 1, + ACTIONS(1229), 1, sym__block_quote_continuation, - ACTIONS(4155), 1, + ACTIONS(1247), 1, sym__list_item_end, - STATE(1344), 1, + STATE(454), 1, aux_sym__list_item_definition_repeat1, - STATE(1605), 1, + STATE(627), 1, aux_sym__block_quote_prefix_repeat1, - STATE(2274), 1, + STATE(1004), 1, sym__block_quote_prefix, - [34247] = 1, - ACTIONS(4157), 6, + [11629] = 1, + ACTIONS(1249), 6, anon_sym_RBRACE, anon_sym_DOT, sym_identifier, sym__whitespace1, sym__id, anon_sym_PERCENT, - [34256] = 6, - ACTIONS(4131), 1, - sym__list_item_continuation, - ACTIONS(4135), 1, - sym__block_quote_continuation, - ACTIONS(4159), 1, - sym__list_item_end, - STATE(1350), 1, - aux_sym__list_item_definition_repeat1, - STATE(1605), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(2274), 1, - sym__block_quote_prefix, - [34275] = 6, - ACTIONS(4131), 1, + [11638] = 1, + ACTIONS(1251), 6, + anon_sym_RBRACE, + anon_sym_DOT, + sym_identifier, + sym__whitespace1, + sym__id, + anon_sym_PERCENT, + [11647] = 6, + ACTIONS(1225), 1, sym__list_item_continuation, - ACTIONS(4135), 1, + ACTIONS(1229), 1, sym__block_quote_continuation, - ACTIONS(4161), 1, + ACTIONS(1253), 1, sym__list_item_end, - STATE(1335), 1, + STATE(398), 1, aux_sym__list_item_definition_repeat1, - STATE(1605), 1, + STATE(627), 1, aux_sym__block_quote_prefix_repeat1, - STATE(2274), 1, + STATE(1004), 1, sym__block_quote_prefix, - [34294] = 5, - ACTIONS(4163), 1, - anon_sym_LBRACK, - ACTIONS(4165), 1, - anon_sym_COLON, - ACTIONS(4169), 1, - anon_sym_LBRACE2, - STATE(843), 1, - sym_inline_attribute, - ACTIONS(4167), 2, - anon_sym_LBRACK_RBRACK, - anon_sym_LPAREN, - [34311] = 6, - ACTIONS(4171), 1, + [11666] = 1, + ACTIONS(613), 6, + sym__newline, sym__list_item_continuation, - ACTIONS(4174), 1, sym__list_item_end, - ACTIONS(4176), 1, sym__block_quote_continuation, - STATE(1350), 1, - aux_sym__list_item_definition_repeat1, - STATE(1605), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(2274), 1, - sym__block_quote_prefix, - [34330] = 6, - ACTIONS(4131), 1, + sym__table_caption_begin, + anon_sym_PIPE, + [11675] = 6, + ACTIONS(1225), 1, sym__list_item_continuation, - ACTIONS(4135), 1, + ACTIONS(1229), 1, sym__block_quote_continuation, - ACTIONS(4179), 1, + ACTIONS(1255), 1, sym__list_item_end, - STATE(1350), 1, + STATE(433), 1, aux_sym__list_item_definition_repeat1, - STATE(1605), 1, + STATE(627), 1, aux_sym__block_quote_prefix_repeat1, - STATE(2274), 1, + STATE(1004), 1, sym__block_quote_prefix, - [34349] = 6, - ACTIONS(4131), 1, + [11694] = 6, + ACTIONS(1225), 1, sym__list_item_continuation, - ACTIONS(4135), 1, + ACTIONS(1229), 1, sym__block_quote_continuation, - ACTIONS(4181), 1, + ACTIONS(1257), 1, sym__list_item_end, - STATE(1354), 1, + STATE(418), 1, aux_sym__list_item_definition_repeat1, - STATE(1605), 1, + STATE(627), 1, aux_sym__block_quote_prefix_repeat1, - STATE(2274), 1, + STATE(1004), 1, sym__block_quote_prefix, - [34368] = 1, - ACTIONS(4183), 6, - anon_sym_RBRACE, - anon_sym_DOT, - sym_identifier, - sym__whitespace1, - sym__id, - anon_sym_PERCENT, - [34377] = 6, - ACTIONS(4131), 1, + [11713] = 6, + ACTIONS(1225), 1, sym__list_item_continuation, - ACTIONS(4135), 1, + ACTIONS(1229), 1, sym__block_quote_continuation, - ACTIONS(4185), 1, + ACTIONS(1259), 1, sym__list_item_end, - STATE(1350), 1, + STATE(454), 1, aux_sym__list_item_definition_repeat1, - STATE(1605), 1, + STATE(627), 1, aux_sym__block_quote_prefix_repeat1, - STATE(2274), 1, + STATE(1004), 1, sym__block_quote_prefix, - [34396] = 6, - ACTIONS(4131), 1, + [11732] = 6, + ACTIONS(1225), 1, sym__list_item_continuation, - ACTIONS(4135), 1, + ACTIONS(1229), 1, sym__block_quote_continuation, - ACTIONS(4187), 1, + ACTIONS(1261), 1, sym__list_item_end, - STATE(1350), 1, + STATE(437), 1, aux_sym__list_item_definition_repeat1, - STATE(1605), 1, + STATE(627), 1, aux_sym__block_quote_prefix_repeat1, - STATE(2274), 1, + STATE(1004), 1, sym__block_quote_prefix, - [34415] = 6, - ACTIONS(4131), 1, + [11751] = 6, + ACTIONS(1225), 1, sym__list_item_continuation, - ACTIONS(4135), 1, + ACTIONS(1229), 1, sym__block_quote_continuation, - ACTIONS(4189), 1, + ACTIONS(1263), 1, sym__list_item_end, - STATE(1355), 1, + STATE(421), 1, aux_sym__list_item_definition_repeat1, - STATE(1605), 1, + STATE(627), 1, aux_sym__block_quote_prefix_repeat1, - STATE(2274), 1, + STATE(1004), 1, sym__block_quote_prefix, - [34434] = 1, - ACTIONS(4029), 6, - anon_sym_RBRACE, - anon_sym_DOT, - sym_identifier, - sym__whitespace1, - sym__id, - anon_sym_PERCENT, - [34443] = 1, - ACTIONS(4031), 6, - anon_sym_RBRACE, - anon_sym_DOT, - sym_identifier, - sym__whitespace1, - sym__id, - anon_sym_PERCENT, - [34452] = 6, - ACTIONS(4131), 1, + [11770] = 6, + ACTIONS(1225), 1, sym__list_item_continuation, - ACTIONS(4135), 1, + ACTIONS(1229), 1, sym__block_quote_continuation, - ACTIONS(4191), 1, + ACTIONS(1265), 1, sym__list_item_end, - STATE(1360), 1, + STATE(454), 1, aux_sym__list_item_definition_repeat1, - STATE(1605), 1, + STATE(627), 1, aux_sym__block_quote_prefix_repeat1, - STATE(2274), 1, + STATE(1004), 1, sym__block_quote_prefix, - [34471] = 6, - ACTIONS(4131), 1, + [11789] = 6, + ACTIONS(1225), 1, sym__list_item_continuation, - ACTIONS(4135), 1, + ACTIONS(1229), 1, sym__block_quote_continuation, - ACTIONS(4193), 1, + ACTIONS(1267), 1, sym__list_item_end, - STATE(1350), 1, + STATE(426), 1, aux_sym__list_item_definition_repeat1, - STATE(1605), 1, + STATE(627), 1, aux_sym__block_quote_prefix_repeat1, - STATE(2274), 1, + STATE(1004), 1, sym__block_quote_prefix, - [34490] = 6, - ACTIONS(4131), 1, + [11808] = 6, + ACTIONS(1225), 1, sym__list_item_continuation, - ACTIONS(4135), 1, + ACTIONS(1229), 1, sym__block_quote_continuation, - ACTIONS(4195), 1, + ACTIONS(1269), 1, sym__list_item_end, - STATE(1362), 1, + STATE(438), 1, aux_sym__list_item_definition_repeat1, - STATE(1605), 1, + STATE(627), 1, aux_sym__block_quote_prefix_repeat1, - STATE(2274), 1, + STATE(1004), 1, sym__block_quote_prefix, - [34509] = 6, - ACTIONS(4131), 1, + [11827] = 6, + ACTIONS(29), 1, + sym__list_marker_task_begin, + ACTIONS(1116), 1, + sym_list_marker_dash, + ACTIONS(1118), 1, + sym_list_marker_star, + ACTIONS(1120), 1, + sym_list_marker_plus, + ACTIONS(1271), 1, + anon_sym_PIPE, + STATE(44), 1, + sym_list_marker_task, + [11846] = 6, + ACTIONS(1225), 1, sym__list_item_continuation, - ACTIONS(4135), 1, + ACTIONS(1229), 1, sym__block_quote_continuation, - ACTIONS(4197), 1, + ACTIONS(1273), 1, sym__list_item_end, - STATE(1350), 1, + STATE(454), 1, aux_sym__list_item_definition_repeat1, - STATE(1605), 1, + STATE(627), 1, aux_sym__block_quote_prefix_repeat1, - STATE(2274), 1, + STATE(1004), 1, sym__block_quote_prefix, - [34528] = 6, - ACTIONS(4131), 1, + [11865] = 6, + ACTIONS(1225), 1, sym__list_item_continuation, - ACTIONS(4135), 1, + ACTIONS(1229), 1, sym__block_quote_continuation, - ACTIONS(4199), 1, + ACTIONS(1275), 1, sym__list_item_end, - STATE(1366), 1, + STATE(454), 1, aux_sym__list_item_definition_repeat1, - STATE(1605), 1, + STATE(627), 1, aux_sym__block_quote_prefix_repeat1, - STATE(2274), 1, + STATE(1004), 1, sym__block_quote_prefix, - [34547] = 6, - ACTIONS(4131), 1, + [11884] = 1, + ACTIONS(1277), 6, + anon_sym_RBRACE, + anon_sym_DOT, + sym_identifier, + sym__whitespace1, + sym__id, + anon_sym_PERCENT, + [11893] = 6, + ACTIONS(1225), 1, sym__list_item_continuation, - ACTIONS(4135), 1, + ACTIONS(1229), 1, sym__block_quote_continuation, - ACTIONS(4201), 1, + ACTIONS(1279), 1, sym__list_item_end, - STATE(1350), 1, + STATE(454), 1, aux_sym__list_item_definition_repeat1, - STATE(1605), 1, + STATE(627), 1, aux_sym__block_quote_prefix_repeat1, - STATE(2274), 1, + STATE(1004), 1, sym__block_quote_prefix, - [34566] = 6, - ACTIONS(4131), 1, + [11912] = 6, + ACTIONS(1225), 1, sym__list_item_continuation, - ACTIONS(4135), 1, + ACTIONS(1229), 1, sym__block_quote_continuation, - ACTIONS(4203), 1, + ACTIONS(1281), 1, sym__list_item_end, - STATE(1364), 1, + STATE(428), 1, aux_sym__list_item_definition_repeat1, - STATE(1605), 1, + STATE(627), 1, aux_sym__block_quote_prefix_repeat1, - STATE(2274), 1, + STATE(1004), 1, sym__block_quote_prefix, - [34585] = 6, - ACTIONS(4131), 1, + [11931] = 6, + ACTIONS(1225), 1, sym__list_item_continuation, - ACTIONS(4135), 1, + ACTIONS(1229), 1, sym__block_quote_continuation, - ACTIONS(4205), 1, + ACTIONS(1283), 1, sym__list_item_end, - STATE(1350), 1, + STATE(399), 1, aux_sym__list_item_definition_repeat1, - STATE(1605), 1, + STATE(627), 1, aux_sym__block_quote_prefix_repeat1, - STATE(2274), 1, + STATE(1004), 1, sym__block_quote_prefix, - [34604] = 6, - ACTIONS(4131), 1, + [11950] = 6, + ACTIONS(29), 1, + sym__list_marker_task_begin, + ACTIONS(1116), 1, + sym_list_marker_dash, + ACTIONS(1118), 1, + sym_list_marker_star, + ACTIONS(1120), 1, + sym_list_marker_plus, + ACTIONS(1285), 1, + anon_sym_PIPE, + STATE(44), 1, + sym_list_marker_task, + [11969] = 1, + ACTIONS(581), 6, + sym__newline, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + sym__table_caption_begin, + anon_sym_PIPE, + [11978] = 6, + ACTIONS(1225), 1, sym__list_item_continuation, - ACTIONS(4135), 1, + ACTIONS(1229), 1, sym__block_quote_continuation, - ACTIONS(4207), 1, + ACTIONS(1287), 1, sym__list_item_end, - STATE(1336), 1, + STATE(454), 1, aux_sym__list_item_definition_repeat1, - STATE(1605), 1, + STATE(627), 1, aux_sym__block_quote_prefix_repeat1, - STATE(2274), 1, + STATE(1004), 1, sym__block_quote_prefix, - [34623] = 6, - ACTIONS(4131), 1, + [11997] = 1, + ACTIONS(585), 6, + sym__newline, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + sym__table_caption_begin, + anon_sym_PIPE, + [12006] = 6, + ACTIONS(29), 1, + sym__list_marker_task_begin, + ACTIONS(1116), 1, + sym_list_marker_dash, + ACTIONS(1118), 1, + sym_list_marker_star, + ACTIONS(1120), 1, + sym_list_marker_plus, + ACTIONS(1289), 1, + anon_sym_PIPE, + STATE(44), 1, + sym_list_marker_task, + [12025] = 6, + ACTIONS(29), 1, + sym__list_marker_task_begin, + ACTIONS(1112), 1, + anon_sym_PIPE, + ACTIONS(1116), 1, + sym_list_marker_dash, + ACTIONS(1118), 1, + sym_list_marker_star, + ACTIONS(1120), 1, + sym_list_marker_plus, + STATE(44), 1, + sym_list_marker_task, + [12044] = 6, + ACTIONS(1225), 1, sym__list_item_continuation, - ACTIONS(4135), 1, + ACTIONS(1229), 1, sym__block_quote_continuation, - ACTIONS(4209), 1, + ACTIONS(1291), 1, sym__list_item_end, - STATE(1351), 1, + STATE(454), 1, aux_sym__list_item_definition_repeat1, - STATE(1605), 1, + STATE(627), 1, aux_sym__block_quote_prefix_repeat1, - STATE(2274), 1, + STATE(1004), 1, sym__block_quote_prefix, - [34642] = 6, - ACTIONS(4131), 1, + [12063] = 6, + ACTIONS(1225), 1, sym__list_item_continuation, - ACTIONS(4135), 1, + ACTIONS(1229), 1, sym__block_quote_continuation, - ACTIONS(4211), 1, + ACTIONS(1293), 1, sym__list_item_end, - STATE(1370), 1, + STATE(454), 1, aux_sym__list_item_definition_repeat1, - STATE(1605), 1, + STATE(627), 1, aux_sym__block_quote_prefix_repeat1, - STATE(2274), 1, + STATE(1004), 1, sym__block_quote_prefix, - [34661] = 6, - ACTIONS(4131), 1, + [12082] = 6, + ACTIONS(1225), 1, sym__list_item_continuation, - ACTIONS(4135), 1, + ACTIONS(1229), 1, sym__block_quote_continuation, - ACTIONS(4213), 1, + ACTIONS(1295), 1, sym__list_item_end, - STATE(1350), 1, + STATE(440), 1, aux_sym__list_item_definition_repeat1, - STATE(1605), 1, + STATE(627), 1, aux_sym__block_quote_prefix_repeat1, - STATE(2274), 1, + STATE(1004), 1, sym__block_quote_prefix, - [34680] = 6, - ACTIONS(4131), 1, + [12101] = 6, + ACTIONS(1225), 1, sym__list_item_continuation, - ACTIONS(4135), 1, + ACTIONS(1229), 1, sym__block_quote_continuation, - ACTIONS(4215), 1, + ACTIONS(1297), 1, sym__list_item_end, - STATE(1350), 1, + STATE(454), 1, aux_sym__list_item_definition_repeat1, - STATE(1605), 1, + STATE(627), 1, aux_sym__block_quote_prefix_repeat1, - STATE(2274), 1, + STATE(1004), 1, sym__block_quote_prefix, - [34699] = 6, - ACTIONS(4131), 1, + [12120] = 6, + ACTIONS(1225), 1, sym__list_item_continuation, - ACTIONS(4135), 1, + ACTIONS(1229), 1, sym__block_quote_continuation, - ACTIONS(4217), 1, + ACTIONS(1299), 1, sym__list_item_end, - STATE(1371), 1, + STATE(444), 1, aux_sym__list_item_definition_repeat1, - STATE(1605), 1, + STATE(627), 1, aux_sym__block_quote_prefix_repeat1, - STATE(2274), 1, + STATE(1004), 1, sym__block_quote_prefix, - [34718] = 1, - ACTIONS(2736), 6, - sym__newline, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - sym__table_caption_begin, - anon_sym_PIPE, - [34727] = 6, - ACTIONS(4131), 1, + [12139] = 6, + ACTIONS(1225), 1, sym__list_item_continuation, - ACTIONS(4135), 1, + ACTIONS(1229), 1, sym__block_quote_continuation, - ACTIONS(4219), 1, + ACTIONS(1301), 1, sym__list_item_end, - STATE(1375), 1, + STATE(443), 1, aux_sym__list_item_definition_repeat1, - STATE(1605), 1, + STATE(627), 1, aux_sym__block_quote_prefix_repeat1, - STATE(2274), 1, + STATE(1004), 1, sym__block_quote_prefix, - [34746] = 6, - ACTIONS(4131), 1, + [12158] = 6, + ACTIONS(1225), 1, sym__list_item_continuation, - ACTIONS(4135), 1, + ACTIONS(1229), 1, sym__block_quote_continuation, - ACTIONS(4221), 1, + ACTIONS(1303), 1, sym__list_item_end, - STATE(1350), 1, + STATE(454), 1, aux_sym__list_item_definition_repeat1, - STATE(1605), 1, + STATE(627), 1, aux_sym__block_quote_prefix_repeat1, - STATE(2274), 1, + STATE(1004), 1, sym__block_quote_prefix, - [34765] = 6, - ACTIONS(4131), 1, + [12177] = 6, + ACTIONS(1225), 1, sym__list_item_continuation, - ACTIONS(4135), 1, + ACTIONS(1229), 1, sym__block_quote_continuation, - ACTIONS(4223), 1, + ACTIONS(1305), 1, sym__list_item_end, - STATE(1379), 1, + STATE(454), 1, aux_sym__list_item_definition_repeat1, - STATE(1605), 1, + STATE(627), 1, aux_sym__block_quote_prefix_repeat1, - STATE(2274), 1, + STATE(1004), 1, sym__block_quote_prefix, - [34784] = 1, - ACTIONS(2732), 6, - sym__newline, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - sym__table_caption_begin, + [12196] = 6, + ACTIONS(29), 1, + sym__list_marker_task_begin, + ACTIONS(1116), 1, + sym_list_marker_dash, + ACTIONS(1118), 1, + sym_list_marker_star, + ACTIONS(1120), 1, + sym_list_marker_plus, + ACTIONS(1307), 1, anon_sym_PIPE, - [34793] = 1, - ACTIONS(4225), 6, + STATE(44), 1, + sym_list_marker_task, + [12215] = 1, + ACTIONS(1309), 6, anon_sym_RBRACE, anon_sym_DOT, sym_identifier, sym__whitespace1, sym__id, anon_sym_PERCENT, - [34802] = 6, - ACTIONS(4131), 1, + [12224] = 6, + ACTIONS(1225), 1, + sym__list_item_continuation, + ACTIONS(1229), 1, + sym__block_quote_continuation, + ACTIONS(1311), 1, + sym__list_item_end, + STATE(454), 1, + aux_sym__list_item_definition_repeat1, + STATE(627), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(1004), 1, + sym__block_quote_prefix, + [12243] = 6, + ACTIONS(1225), 1, + sym__list_item_continuation, + ACTIONS(1229), 1, + sym__block_quote_continuation, + ACTIONS(1313), 1, + sym__list_item_end, + STATE(458), 1, + aux_sym__list_item_definition_repeat1, + STATE(627), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(1004), 1, + sym__block_quote_prefix, + [12262] = 6, + ACTIONS(1225), 1, sym__list_item_continuation, - ACTIONS(4135), 1, + ACTIONS(1229), 1, sym__block_quote_continuation, - ACTIONS(4227), 1, + ACTIONS(1315), 1, sym__list_item_end, - STATE(1350), 1, + STATE(451), 1, aux_sym__list_item_definition_repeat1, - STATE(1605), 1, + STATE(627), 1, aux_sym__block_quote_prefix_repeat1, - STATE(2274), 1, + STATE(1004), 1, sym__block_quote_prefix, - [34821] = 1, - ACTIONS(4027), 6, + [12281] = 1, + ACTIONS(1317), 6, anon_sym_RBRACE, anon_sym_DOT, sym_identifier, sym__whitespace1, sym__id, anon_sym_PERCENT, - [34830] = 6, - ACTIONS(4131), 1, + [12290] = 6, + ACTIONS(1225), 1, sym__list_item_continuation, - ACTIONS(4135), 1, + ACTIONS(1229), 1, sym__block_quote_continuation, - ACTIONS(4229), 1, + ACTIONS(1319), 1, sym__list_item_end, - STATE(1382), 1, + STATE(454), 1, aux_sym__list_item_definition_repeat1, - STATE(1605), 1, + STATE(627), 1, aux_sym__block_quote_prefix_repeat1, - STATE(2274), 1, + STATE(1004), 1, sym__block_quote_prefix, - [34849] = 6, - ACTIONS(4131), 1, + [12309] = 6, + ACTIONS(1225), 1, sym__list_item_continuation, - ACTIONS(4135), 1, + ACTIONS(1229), 1, sym__block_quote_continuation, - ACTIONS(4231), 1, + ACTIONS(1321), 1, sym__list_item_end, - STATE(1350), 1, + STATE(447), 1, aux_sym__list_item_definition_repeat1, - STATE(1605), 1, + STATE(627), 1, aux_sym__block_quote_prefix_repeat1, - STATE(2274), 1, + STATE(1004), 1, sym__block_quote_prefix, - [34868] = 6, - ACTIONS(4131), 1, + [12328] = 1, + ACTIONS(1323), 6, + anon_sym_RBRACE, + anon_sym_DOT, + sym_identifier, + sym__whitespace1, + sym__id, + anon_sym_PERCENT, + [12337] = 6, + ACTIONS(1325), 1, sym__list_item_continuation, - ACTIONS(4135), 1, - sym__block_quote_continuation, - ACTIONS(4233), 1, + ACTIONS(1328), 1, sym__list_item_end, - STATE(1347), 1, + ACTIONS(1330), 1, + sym__block_quote_continuation, + STATE(454), 1, aux_sym__list_item_definition_repeat1, - STATE(1605), 1, + STATE(627), 1, aux_sym__block_quote_prefix_repeat1, - STATE(2274), 1, + STATE(1004), 1, sym__block_quote_prefix, - [34887] = 1, - ACTIONS(2830), 6, - sym__newline, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - sym__table_caption_begin, - anon_sym_PIPE, - [34896] = 1, - ACTIONS(2834), 6, - sym__newline, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - sym__table_caption_begin, - anon_sym_PIPE, - [34905] = 6, - ACTIONS(79), 1, - sym__list_marker_task_begin, - ACTIONS(4014), 1, - sym_list_marker_dash, - ACTIONS(4016), 1, - sym_list_marker_star, - ACTIONS(4018), 1, - sym_list_marker_plus, - ACTIONS(4235), 1, - anon_sym_PIPE, - STATE(39), 1, - sym_list_marker_task, - [34924] = 5, - ACTIONS(4163), 1, - anon_sym_LBRACK, - ACTIONS(4169), 1, - anon_sym_LBRACE2, - ACTIONS(4237), 1, - anon_sym_COLON, - STATE(843), 1, - sym_inline_attribute, - ACTIONS(4167), 2, - anon_sym_LBRACK_RBRACK, - anon_sym_LPAREN, - [34941] = 6, - ACTIONS(79), 1, - sym__list_marker_task_begin, - ACTIONS(4014), 1, - sym_list_marker_dash, - ACTIONS(4016), 1, - sym_list_marker_star, - ACTIONS(4018), 1, - sym_list_marker_plus, - ACTIONS(4239), 1, - anon_sym_PIPE, - STATE(39), 1, - sym_list_marker_task, - [34960] = 5, - ACTIONS(4163), 1, - anon_sym_LBRACK, - ACTIONS(4169), 1, - anon_sym_LBRACE2, - ACTIONS(4241), 1, - anon_sym_COLON, - STATE(843), 1, - sym_inline_attribute, - ACTIONS(4167), 2, - anon_sym_LBRACK_RBRACK, - anon_sym_LPAREN, - [34977] = 6, - ACTIONS(79), 1, - sym__list_marker_task_begin, - ACTIONS(4014), 1, - sym_list_marker_dash, - ACTIONS(4016), 1, - sym_list_marker_star, - ACTIONS(4018), 1, - sym_list_marker_plus, - ACTIONS(4243), 1, - anon_sym_PIPE, - STATE(39), 1, - sym_list_marker_task, - [34996] = 6, - ACTIONS(4131), 1, + [12356] = 6, + ACTIONS(1225), 1, sym__list_item_continuation, - ACTIONS(4135), 1, + ACTIONS(1229), 1, sym__block_quote_continuation, - ACTIONS(4245), 1, + ACTIONS(1333), 1, sym__list_item_end, - STATE(1339), 1, + STATE(454), 1, aux_sym__list_item_definition_repeat1, - STATE(1605), 1, + STATE(627), 1, aux_sym__block_quote_prefix_repeat1, - STATE(2274), 1, + STATE(1004), 1, sym__block_quote_prefix, - [35015] = 5, - ACTIONS(4163), 1, - anon_sym_LBRACK, - ACTIONS(4169), 1, - anon_sym_LBRACE2, - ACTIONS(4247), 1, - anon_sym_COLON, - STATE(843), 1, - sym_inline_attribute, - ACTIONS(4167), 2, - anon_sym_LBRACK_RBRACK, - anon_sym_LPAREN, - [35032] = 1, - ACTIONS(2860), 6, - sym__newline, + [12375] = 6, + ACTIONS(1225), 1, sym__list_item_continuation, - sym__list_item_end, + ACTIONS(1229), 1, sym__block_quote_continuation, - sym__table_caption_begin, - anon_sym_PIPE, - [35041] = 1, - ACTIONS(2856), 6, - sym__newline, - sym__list_item_continuation, + ACTIONS(1335), 1, sym__list_item_end, - sym__block_quote_continuation, - sym__table_caption_begin, - anon_sym_PIPE, - [35050] = 6, - ACTIONS(79), 1, - sym__list_marker_task_begin, - ACTIONS(4010), 1, - anon_sym_PIPE, - ACTIONS(4014), 1, - sym_list_marker_dash, - ACTIONS(4016), 1, - sym_list_marker_star, - ACTIONS(4018), 1, - sym_list_marker_plus, - STATE(39), 1, - sym_list_marker_task, - [35069] = 5, - ACTIONS(4163), 1, - anon_sym_LBRACK, - ACTIONS(4169), 1, - anon_sym_LBRACE2, - ACTIONS(4249), 1, - anon_sym_COLON, - STATE(843), 1, - sym_inline_attribute, - ACTIONS(4167), 2, - anon_sym_LBRACK_RBRACK, - anon_sym_LPAREN, - [35086] = 1, - ACTIONS(4022), 6, + STATE(425), 1, + aux_sym__list_item_definition_repeat1, + STATE(627), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(1004), 1, + sym__block_quote_prefix, + [12394] = 1, + ACTIONS(1337), 6, anon_sym_RBRACE, anon_sym_DOT, sym_identifier, sym__whitespace1, sym__id, anon_sym_PERCENT, - [35095] = 6, - ACTIONS(79), 1, - sym__list_marker_task_begin, - ACTIONS(4014), 1, - sym_list_marker_dash, - ACTIONS(4016), 1, - sym_list_marker_star, - ACTIONS(4018), 1, - sym_list_marker_plus, - ACTIONS(4251), 1, - anon_sym_PIPE, - STATE(39), 1, - sym_list_marker_task, - [35114] = 1, - ACTIONS(2740), 6, - sym__newline, + [12403] = 6, + ACTIONS(1225), 1, sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - sym__table_caption_begin, - anon_sym_PIPE, - [35123] = 1, - ACTIONS(4081), 6, - anon_sym_RBRACE, - anon_sym_DOT, - sym_identifier, - sym__whitespace1, - sym__id, - anon_sym_PERCENT, - [35132] = 1, - ACTIONS(2732), 5, - sym__block_close, - sym__newline, + ACTIONS(1229), 1, sym__block_quote_continuation, - sym__table_caption_begin, - anon_sym_PIPE, - [35140] = 3, - ACTIONS(3779), 1, - sym__table_caption_begin, - STATE(1669), 1, - sym_table_caption, - ACTIONS(2716), 3, - sym__list_item_continuation, + ACTIONS(1339), 1, sym__list_item_end, - sym__block_quote_continuation, - [35152] = 5, - ACTIONS(4253), 1, - anon_sym_LBRACK, - ACTIONS(4255), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(4257), 1, - anon_sym_LPAREN, - STATE(1199), 1, - sym__link_label, - STATE(1200), 1, - sym_inline_link_destination, - [35168] = 5, - ACTIONS(4253), 1, - anon_sym_LBRACK, - ACTIONS(4257), 1, - anon_sym_LPAREN, - ACTIONS(4259), 1, - anon_sym_LBRACK_RBRACK, - STATE(1167), 1, - sym_inline_link_destination, - STATE(1202), 1, - sym__link_label, - [35184] = 5, - ACTIONS(4261), 1, - anon_sym_LBRACK, - ACTIONS(4263), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(4265), 1, - anon_sym_LPAREN, - STATE(1076), 1, - sym_inline_link_destination, - STATE(1078), 1, - sym__link_label, - [35200] = 4, - ACTIONS(4269), 1, - anon_sym_PERCENT, - ACTIONS(4271), 1, - sym__newline, - STATE(1420), 1, - aux_sym__comment_with_newline_repeat1, - ACTIONS(4267), 2, - sym_backslash_escape, - aux_sym__comment_with_newline_token1, - [35214] = 5, - ACTIONS(4261), 1, - anon_sym_LBRACK, - ACTIONS(4265), 1, - anon_sym_LPAREN, - ACTIONS(4273), 1, - anon_sym_LBRACK_RBRACK, - STATE(1072), 1, - sym_inline_link_destination, - STATE(1073), 1, - sym__link_label, - [35230] = 1, - ACTIONS(2856), 5, - sym__block_close, - sym__newline, - sym__block_quote_continuation, - sym__table_caption_begin, - anon_sym_PIPE, - [35238] = 1, - ACTIONS(2860), 5, - sym__block_close, - sym__newline, - sym__block_quote_continuation, - sym__table_caption_begin, - anon_sym_PIPE, - [35246] = 4, - ACTIONS(4163), 1, - anon_sym_LBRACK, - ACTIONS(4275), 1, - anon_sym_LBRACE2, - STATE(944), 1, - sym_inline_attribute, - ACTIONS(4167), 2, - anon_sym_LBRACK_RBRACK, - anon_sym_LPAREN, - [35260] = 5, - ACTIONS(4277), 1, - anon_sym_LBRACK, - ACTIONS(4279), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(4281), 1, - anon_sym_LPAREN, - STATE(656), 1, - sym_inline_link_destination, - STATE(657), 1, - sym__link_label, - [35276] = 5, - ACTIONS(4283), 1, - anon_sym_LBRACK, - ACTIONS(4285), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(4287), 1, - anon_sym_LPAREN, - STATE(724), 1, - sym_inline_link_destination, - STATE(901), 1, - sym__link_label, - [35292] = 5, - ACTIONS(4283), 1, - anon_sym_LBRACK, - ACTIONS(4287), 1, - anon_sym_LPAREN, - ACTIONS(4289), 1, - anon_sym_LBRACK_RBRACK, - STATE(904), 1, - sym__link_label, - STATE(905), 1, - sym_inline_link_destination, - [35308] = 5, - ACTIONS(4277), 1, - anon_sym_LBRACK, - ACTIONS(4281), 1, - anon_sym_LPAREN, - ACTIONS(4291), 1, - anon_sym_LBRACK_RBRACK, - STATE(659), 1, - sym_inline_link_destination, - STATE(660), 1, - sym__link_label, - [35324] = 4, - ACTIONS(4163), 1, - anon_sym_LBRACK, - ACTIONS(4293), 1, - anon_sym_LBRACE2, - STATE(1026), 1, - sym_inline_attribute, - ACTIONS(4167), 2, - anon_sym_LBRACK_RBRACK, - anon_sym_LPAREN, - [35338] = 5, - ACTIONS(4295), 1, - anon_sym_LBRACK, - ACTIONS(4297), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(4299), 1, - anon_sym_LPAREN, - STATE(1103), 1, - sym__link_label, - STATE(1104), 1, - sym_inline_link_destination, - [35354] = 5, - ACTIONS(4295), 1, - anon_sym_LBRACK, - ACTIONS(4299), 1, - anon_sym_LPAREN, - ACTIONS(4301), 1, - anon_sym_LBRACK_RBRACK, - STATE(1106), 1, - sym__link_label, - STATE(1107), 1, - sym_inline_link_destination, - [35370] = 4, - ACTIONS(4163), 1, - anon_sym_LBRACK, - ACTIONS(4303), 1, - anon_sym_LBRACE2, - STATE(1126), 1, - sym_inline_attribute, - ACTIONS(4167), 2, - anon_sym_LBRACK_RBRACK, - anon_sym_LPAREN, - [35384] = 5, - ACTIONS(4305), 1, - anon_sym_LBRACK, - ACTIONS(4307), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(4309), 1, - anon_sym_LPAREN, - STATE(868), 1, - sym__link_label, - STATE(869), 1, - sym_inline_link_destination, - [35400] = 4, - ACTIONS(4314), 1, - anon_sym_PERCENT, - ACTIONS(4316), 1, - sym__newline, - STATE(1420), 1, - aux_sym__comment_with_newline_repeat1, - ACTIONS(4311), 2, - sym_backslash_escape, - aux_sym__comment_with_newline_token1, - [35414] = 5, - ACTIONS(4305), 1, - anon_sym_LBRACK, - ACTIONS(4309), 1, - anon_sym_LPAREN, - ACTIONS(4319), 1, - anon_sym_LBRACK_RBRACK, - STATE(837), 1, - sym__link_label, - STATE(839), 1, - sym_inline_link_destination, - [35430] = 4, - ACTIONS(4163), 1, - anon_sym_LBRACK, - ACTIONS(4321), 1, - anon_sym_LBRACE2, - STATE(742), 1, - sym_inline_attribute, - ACTIONS(4167), 2, - anon_sym_LBRACK_RBRACK, - anon_sym_LPAREN, - [35444] = 5, - ACTIONS(4323), 1, - anon_sym_LBRACK, - ACTIONS(4325), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(4327), 1, - anon_sym_LPAREN, - STATE(756), 1, - sym_inline_link_destination, - STATE(757), 1, - sym__link_label, - [35460] = 5, - ACTIONS(4323), 1, - anon_sym_LBRACK, - ACTIONS(4327), 1, - anon_sym_LPAREN, - ACTIONS(4329), 1, - anon_sym_LBRACK_RBRACK, - STATE(759), 1, - sym_inline_link_destination, - STATE(760), 1, - sym__link_label, - [35476] = 4, - ACTIONS(4163), 1, - anon_sym_LBRACK, - ACTIONS(4331), 1, - anon_sym_LBRACE2, - STATE(788), 1, - sym_inline_attribute, - ACTIONS(4167), 2, - anon_sym_LBRACK_RBRACK, - anon_sym_LPAREN, - [35490] = 5, - ACTIONS(4333), 1, - anon_sym_LBRACK, - ACTIONS(4335), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(4337), 1, - anon_sym_LPAREN, - STATE(812), 1, - sym_inline_link_destination, - STATE(813), 1, - sym__link_label, - [35506] = 5, - ACTIONS(4333), 1, - anon_sym_LBRACK, - ACTIONS(4337), 1, - anon_sym_LPAREN, - ACTIONS(4339), 1, - anon_sym_LBRACK_RBRACK, - STATE(815), 1, - sym_inline_link_destination, - STATE(816), 1, - sym__link_label, - [35522] = 4, - ACTIONS(4163), 1, - anon_sym_LBRACK, - ACTIONS(4341), 1, - anon_sym_LBRACE2, - STATE(845), 1, - sym_inline_attribute, - ACTIONS(4167), 2, - anon_sym_LBRACK_RBRACK, - anon_sym_LPAREN, - [35536] = 1, - ACTIONS(2740), 5, - sym__block_close, - sym__newline, - sym__block_quote_continuation, - sym__table_caption_begin, - anon_sym_PIPE, - [35544] = 4, - ACTIONS(4163), 1, - anon_sym_LBRACK, - ACTIONS(4169), 1, - anon_sym_LBRACE2, - STATE(843), 1, - sym_inline_attribute, - ACTIONS(4167), 2, - anon_sym_LBRACK_RBRACK, - anon_sym_LPAREN, - [35558] = 4, - ACTIONS(4343), 1, - sym__block_close, - ACTIONS(4345), 1, - sym__block_quote_continuation, - STATE(1431), 1, - aux_sym__block_quote_content_repeat1, - STATE(59), 2, - sym__block_quote_prefix, + STATE(454), 1, + aux_sym__list_item_definition_repeat1, + STATE(627), 1, aux_sym__block_quote_prefix_repeat1, - [35572] = 4, - ACTIONS(4348), 1, - sym__block_close, - ACTIONS(4350), 1, - sym__block_quote_continuation, - STATE(1431), 1, - aux_sym__block_quote_content_repeat1, - STATE(59), 2, + STATE(1004), 1, sym__block_quote_prefix, - aux_sym__block_quote_prefix_repeat1, - [35586] = 4, - ACTIONS(4271), 1, - sym__newline, - ACTIONS(4352), 1, - anon_sym_PERCENT, - STATE(1441), 1, - aux_sym__comment_with_newline_repeat1, - ACTIONS(4267), 2, - sym_backslash_escape, - aux_sym__comment_with_newline_token1, - [35600] = 5, - ACTIONS(4354), 1, - anon_sym_LBRACK, - ACTIONS(4356), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(4358), 1, - anon_sym_LPAREN, - STATE(871), 1, - sym_inline_link_destination, - STATE(873), 1, - sym__link_label, - [35616] = 1, - ACTIONS(2736), 5, - sym__block_close, - sym__newline, - sym__block_quote_continuation, - sym__table_caption_begin, - anon_sym_PIPE, - [35624] = 5, - ACTIONS(4354), 1, - anon_sym_LBRACK, - ACTIONS(4358), 1, - anon_sym_LPAREN, - ACTIONS(4360), 1, - anon_sym_LBRACK_RBRACK, - STATE(875), 1, - sym_inline_link_destination, - STATE(876), 1, - sym__link_label, - [35640] = 4, - ACTIONS(4163), 1, - anon_sym_LBRACK, - ACTIONS(4362), 1, - anon_sym_LBRACE2, - STATE(957), 1, - sym_inline_attribute, - ACTIONS(4167), 2, - anon_sym_LBRACK_RBRACK, - anon_sym_LPAREN, - [35654] = 4, - ACTIONS(4163), 1, - anon_sym_LBRACK, - ACTIONS(4364), 1, - anon_sym_LBRACE2, - STATE(731), 1, - sym_inline_attribute, - ACTIONS(4167), 2, - anon_sym_LBRACK_RBRACK, - anon_sym_LPAREN, - [35668] = 5, - ACTIONS(4366), 1, - anon_sym_LBRACK, - ACTIONS(4368), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(4370), 1, - anon_sym_LPAREN, - STATE(994), 1, - sym_inline_link_destination, - STATE(995), 1, - sym__link_label, - [35684] = 5, - ACTIONS(4366), 1, - anon_sym_LBRACK, - ACTIONS(4370), 1, - anon_sym_LPAREN, - ACTIONS(4372), 1, - anon_sym_LBRACK_RBRACK, - STATE(997), 1, - sym_inline_link_destination, - STATE(998), 1, - sym__link_label, - [35700] = 4, - ACTIONS(4271), 1, - sym__newline, - ACTIONS(4374), 1, - anon_sym_PERCENT, - STATE(1420), 1, - aux_sym__comment_with_newline_repeat1, - ACTIONS(4267), 2, - sym_backslash_escape, - aux_sym__comment_with_newline_token1, - [35714] = 4, - ACTIONS(4163), 1, - anon_sym_LBRACK, - ACTIONS(4376), 1, - anon_sym_LBRACE2, - STATE(1064), 1, - sym_inline_attribute, - ACTIONS(4167), 2, - anon_sym_LBRACK_RBRACK, - anon_sym_LPAREN, - [35728] = 5, - ACTIONS(4378), 1, - anon_sym_LBRACK, - ACTIONS(4380), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(4382), 1, - anon_sym_LPAREN, - STATE(1044), 1, - sym__link_label, - STATE(1045), 1, - sym_inline_link_destination, - [35744] = 4, - ACTIONS(4163), 1, - anon_sym_LBRACK, - ACTIONS(4384), 1, - anon_sym_LBRACE2, - STATE(638), 1, - sym_inline_attribute, - ACTIONS(4167), 2, - anon_sym_LBRACK_RBRACK, - anon_sym_LPAREN, - [35758] = 5, - ACTIONS(4378), 1, - anon_sym_LBRACK, - ACTIONS(4382), 1, - anon_sym_LPAREN, - ACTIONS(4386), 1, - anon_sym_LBRACK_RBRACK, - STATE(1041), 1, - sym__link_label, - STATE(1042), 1, - sym_inline_link_destination, - [35774] = 4, - ACTIONS(4271), 1, - sym__newline, - ACTIONS(4388), 1, - anon_sym_PERCENT, - STATE(1406), 1, - aux_sym__comment_with_newline_repeat1, - ACTIONS(4267), 2, - sym_backslash_escape, - aux_sym__comment_with_newline_token1, - [35788] = 4, - ACTIONS(4163), 1, - anon_sym_LBRACK, - ACTIONS(4390), 1, - anon_sym_LBRACE2, - STATE(980), 1, - sym_inline_attribute, - ACTIONS(4167), 2, - anon_sym_LBRACK_RBRACK, - anon_sym_LPAREN, - [35802] = 5, - ACTIONS(4392), 1, - anon_sym_LBRACK, - ACTIONS(4394), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(4396), 1, - anon_sym_LPAREN, - STATE(860), 1, - sym_inline_link_destination, - STATE(861), 1, - sym__link_label, - [35818] = 4, - ACTIONS(4163), 1, - anon_sym_LBRACK, - ACTIONS(4398), 1, - anon_sym_LBRACE2, - STATE(1178), 1, - sym_inline_attribute, - ACTIONS(4167), 2, - anon_sym_LBRACK_RBRACK, - anon_sym_LPAREN, - [35832] = 5, - ACTIONS(4400), 1, - anon_sym_LBRACK, - ACTIONS(4402), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(4404), 1, - anon_sym_LPAREN, - STATE(927), 1, - sym__link_label, - STATE(928), 1, - sym_inline_link_destination, - [35848] = 5, - ACTIONS(4400), 1, - anon_sym_LBRACK, - ACTIONS(4404), 1, - anon_sym_LPAREN, - ACTIONS(4406), 1, - anon_sym_LBRACK_RBRACK, - STATE(930), 1, - sym__link_label, - STATE(931), 1, - sym_inline_link_destination, - [35864] = 1, - ACTIONS(2830), 5, - sym__block_close, - sym__newline, - sym__block_quote_continuation, - sym__table_caption_begin, - anon_sym_PIPE, - [35872] = 5, - ACTIONS(4392), 1, - anon_sym_LBRACK, - ACTIONS(4396), 1, - anon_sym_LPAREN, - ACTIONS(4408), 1, - anon_sym_LBRACK_RBRACK, - STATE(854), 1, - sym_inline_link_destination, - STATE(855), 1, - sym__link_label, - [35888] = 1, - ACTIONS(2834), 5, - sym__block_close, - sym__newline, - sym__block_quote_continuation, + [12422] = 3, + ACTIONS(888), 1, sym__table_caption_begin, - anon_sym_PIPE, - [35896] = 4, - ACTIONS(4350), 1, - sym__block_quote_continuation, - ACTIONS(4410), 1, - sym__block_close, - STATE(1432), 1, - aux_sym__block_quote_content_repeat1, - STATE(59), 2, - sym__block_quote_prefix, - aux_sym__block_quote_prefix_repeat1, - [35910] = 3, - ACTIONS(4412), 1, - sym__block_close, - ACTIONS(4414), 1, - sym_list_marker_upper_roman_paren, - STATE(1456), 2, - sym__list_item_upper_roman_paren, - aux_sym__list_upper_roman_paren_repeat1, - [35921] = 3, - ACTIONS(101), 1, - sym_list_marker_upper_roman_paren, - ACTIONS(4417), 1, - sym__block_close, - STATE(1456), 2, - sym__list_item_upper_roman_paren, - aux_sym__list_upper_roman_paren_repeat1, - [35932] = 4, - ACTIONS(4419), 1, - anon_sym_EQ, - ACTIONS(4421), 1, - sym_language, - ACTIONS(4423), 1, - sym__newline, - STATE(2245), 1, - sym_raw_block_info, - [35945] = 3, - ACTIONS(95), 1, - sym_list_marker_lower_alpha_paren, - ACTIONS(4425), 1, - sym__block_close, - STATE(1517), 2, - sym__list_item_lower_alpha_paren, - aux_sym__list_lower_alpha_paren_repeat1, - [35956] = 3, - ACTIONS(105), 1, - sym_list_marker_lower_alpha_parens, - ACTIONS(4427), 1, - sym__block_close, - STATE(1516), 2, - sym__list_item_lower_alpha_parens, - aux_sym__list_lower_alpha_parens_repeat1, - [35967] = 3, - ACTIONS(87), 1, - sym_list_marker_upper_alpha_period, - ACTIONS(4429), 1, - sym__block_close, - STATE(1511), 2, - sym__list_item_upper_alpha_period, - aux_sym__list_upper_alpha_period_repeat1, - [35978] = 3, - ACTIONS(97), 1, - sym_list_marker_upper_alpha_paren, - ACTIONS(4431), 1, - sym__block_close, - STATE(1510), 2, - sym__list_item_upper_alpha_paren, - aux_sym__list_upper_alpha_paren_repeat1, - [35989] = 3, - ACTIONS(107), 1, - sym_list_marker_upper_alpha_parens, - ACTIONS(4433), 1, - sym__block_close, - STATE(1505), 2, - sym__list_item_upper_alpha_parens, - aux_sym__list_upper_alpha_parens_repeat1, - [36000] = 3, - ACTIONS(89), 1, - sym_list_marker_lower_roman_period, - ACTIONS(4435), 1, - sym__block_close, - STATE(1504), 2, - sym__list_item_lower_roman_period, - aux_sym__list_lower_roman_period_repeat1, - [36011] = 3, - ACTIONS(99), 1, - sym_list_marker_lower_roman_paren, - ACTIONS(4437), 1, - sym__block_close, - STATE(1499), 2, - sym__list_item_lower_roman_paren, - aux_sym__list_lower_roman_paren_repeat1, - [36022] = 3, - ACTIONS(109), 1, - sym_list_marker_lower_roman_parens, - ACTIONS(4439), 1, - sym__block_close, - STATE(1498), 2, - sym__list_item_lower_roman_parens, - aux_sym__list_lower_roman_parens_repeat1, - [36033] = 2, - ACTIONS(4441), 1, - sym__eof_or_newline, - ACTIONS(2926), 3, + STATE(594), 1, + sym_table_caption, + ACTIONS(527), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [36042] = 4, - ACTIONS(4419), 1, - anon_sym_EQ, - ACTIONS(4443), 1, - sym_language, - ACTIONS(4445), 1, + [12434] = 4, + ACTIONS(1341), 1, + sym__block_close, + ACTIONS(1343), 1, + sym__block_quote_continuation, + STATE(460), 1, + aux_sym__block_quote_content_repeat1, + STATE(59), 2, + sym__block_quote_prefix, + aux_sym__block_quote_prefix_repeat1, + [12448] = 1, + ACTIONS(621), 5, + sym__block_close, sym__newline, - STATE(2216), 1, - sym_raw_block_info, - [36055] = 3, - ACTIONS(91), 1, - sym_list_marker_upper_roman_period, - ACTIONS(4447), 1, + sym__block_quote_continuation, + sym__table_caption_begin, + anon_sym_PIPE, + [12456] = 1, + ACTIONS(617), 5, sym__block_close, - STATE(1493), 2, - sym__list_item_upper_roman_period, - aux_sym__list_upper_roman_period_repeat1, - [36066] = 2, - ACTIONS(4449), 1, - sym__eof_or_newline, - ACTIONS(2910), 3, - sym__list_item_continuation, - sym__list_item_end, + sym__newline, sym__block_quote_continuation, - [36075] = 3, - ACTIONS(101), 1, - sym_list_marker_upper_roman_paren, - ACTIONS(4451), 1, + sym__table_caption_begin, + anon_sym_PIPE, + [12464] = 1, + ACTIONS(549), 5, sym__block_close, - STATE(1456), 2, - sym__list_item_upper_roman_paren, - aux_sym__list_upper_roman_paren_repeat1, - [36086] = 2, - ACTIONS(4453), 1, - sym__eof_or_newline, - ACTIONS(2904), 3, - sym__list_item_continuation, - sym__list_item_end, + sym__newline, sym__block_quote_continuation, - [36095] = 2, - ACTIONS(4455), 1, - sym__eof_or_newline, - ACTIONS(2726), 3, - sym__list_item_continuation, - sym__list_item_end, + sym__table_caption_begin, + anon_sym_PIPE, + [12472] = 1, + ACTIONS(553), 5, + sym__block_close, + sym__newline, sym__block_quote_continuation, - [36104] = 3, - ACTIONS(111), 1, - sym_list_marker_upper_roman_parens, - ACTIONS(4457), 1, + sym__table_caption_begin, + anon_sym_PIPE, + [12480] = 1, + ACTIONS(581), 5, sym__block_close, - STATE(1485), 2, - sym__list_item_upper_roman_parens, - aux_sym__list_upper_roman_parens_repeat1, - [36115] = 2, - ACTIONS(4459), 1, - sym__eof_or_newline, - ACTIONS(2896), 3, - sym__list_item_continuation, - sym__list_item_end, + sym__newline, sym__block_quote_continuation, - [36124] = 3, - ACTIONS(111), 1, - sym_list_marker_upper_roman_parens, - ACTIONS(4461), 1, + sym__table_caption_begin, + anon_sym_PIPE, + [12488] = 1, + ACTIONS(585), 5, sym__block_close, - STATE(1485), 2, - sym__list_item_upper_roman_parens, - aux_sym__list_upper_roman_parens_repeat1, - [36135] = 4, - ACTIONS(4419), 1, - anon_sym_EQ, - ACTIONS(4463), 1, - sym_language, - ACTIONS(4465), 1, sym__newline, - STATE(2266), 1, - sym_raw_block_info, - [36148] = 3, - ACTIONS(101), 1, + sym__block_quote_continuation, + sym__table_caption_begin, + anon_sym_PIPE, + [12496] = 4, + ACTIONS(1346), 1, + sym__block_close, + ACTIONS(1348), 1, + sym__block_quote_continuation, + STATE(469), 1, + aux_sym__block_quote_content_repeat1, + STATE(59), 2, + sym__block_quote_prefix, + aux_sym__block_quote_prefix_repeat1, + [12510] = 1, + ACTIONS(613), 5, + sym__block_close, + sym__newline, + sym__block_quote_continuation, + sym__table_caption_begin, + anon_sym_PIPE, + [12518] = 4, + ACTIONS(1348), 1, + sym__block_quote_continuation, + ACTIONS(1350), 1, + sym__block_close, + STATE(460), 1, + aux_sym__block_quote_content_repeat1, + STATE(59), 2, + sym__block_quote_prefix, + aux_sym__block_quote_prefix_repeat1, + [12532] = 3, + ACTIONS(51), 1, sym_list_marker_upper_roman_paren, - ACTIONS(4467), 1, + ACTIONS(1352), 1, sym__block_close, - STATE(1456), 2, + STATE(585), 2, sym__list_item_upper_roman_paren, aux_sym__list_upper_roman_paren_repeat1, - [36159] = 3, - ACTIONS(91), 1, + [12543] = 3, + ACTIONS(39), 1, + sym_list_marker_lower_roman_period, + ACTIONS(1354), 1, + sym__block_close, + STATE(573), 2, + sym__list_item_lower_roman_period, + aux_sym__list_lower_roman_period_repeat1, + [12554] = 3, + ACTIONS(41), 1, sym_list_marker_upper_roman_period, - ACTIONS(4469), 1, + ACTIONS(1356), 1, sym__block_close, - STATE(1493), 2, + STATE(589), 2, sym__list_item_upper_roman_period, aux_sym__list_upper_roman_period_repeat1, - [36170] = 3, - ACTIONS(4471), 1, + [12565] = 3, + ACTIONS(1358), 1, aux_sym__line_token1, - STATE(2094), 1, - sym_frontmatter_content, - STATE(1536), 2, + ACTIONS(1361), 1, + sym_frontmatter_marker, + STATE(473), 2, sym__line, aux_sym_frontmatter_content_repeat1, - [36181] = 3, - ACTIONS(109), 1, + [12576] = 3, + ACTIONS(61), 1, + sym_list_marker_upper_roman_parens, + ACTIONS(1363), 1, + sym__block_close, + STATE(583), 2, + sym__list_item_upper_roman_parens, + aux_sym__list_upper_roman_parens_repeat1, + [12587] = 3, + ACTIONS(59), 1, sym_list_marker_lower_roman_parens, - ACTIONS(4473), 1, + ACTIONS(1365), 1, sym__block_close, - STATE(1498), 2, + STATE(581), 2, sym__list_item_lower_roman_parens, aux_sym__list_lower_roman_parens_repeat1, - [36192] = 3, - ACTIONS(99), 1, + [12598] = 3, + ACTIONS(49), 1, sym_list_marker_lower_roman_paren, - ACTIONS(4475), 1, + ACTIONS(1367), 1, sym__block_close, - STATE(1499), 2, + STATE(578), 2, sym__list_item_lower_roman_paren, aux_sym__list_lower_roman_paren_repeat1, - [36203] = 3, - ACTIONS(89), 1, + [12609] = 3, + ACTIONS(33), 1, + sym_list_marker_decimal_period, + ACTIONS(1369), 1, + sym__block_close, + STATE(547), 2, + sym__list_item_decimal_period, + aux_sym__list_decimal_period_repeat1, + [12620] = 3, + ACTIONS(51), 1, + sym_list_marker_upper_roman_paren, + ACTIONS(1371), 1, + sym__block_close, + STATE(585), 2, + sym__list_item_upper_roman_paren, + aux_sym__list_upper_roman_paren_repeat1, + [12631] = 3, + ACTIONS(39), 1, sym_list_marker_lower_roman_period, - ACTIONS(4477), 1, + ACTIONS(1373), 1, sym__block_close, - STATE(1504), 2, + STATE(573), 2, sym__list_item_lower_roman_period, aux_sym__list_lower_roman_period_repeat1, - [36214] = 3, - ACTIONS(107), 1, + [12642] = 3, + ACTIONS(57), 1, sym_list_marker_upper_alpha_parens, - ACTIONS(4479), 1, + ACTIONS(1375), 1, sym__block_close, - STATE(1505), 2, + STATE(568), 2, sym__list_item_upper_alpha_parens, aux_sym__list_upper_alpha_parens_repeat1, - [36225] = 3, - ACTIONS(4481), 1, - sym__block_close, - ACTIONS(4483), 1, - sym_list_marker_upper_roman_parens, - STATE(1485), 2, - sym__list_item_upper_roman_parens, - aux_sym__list_upper_roman_parens_repeat1, - [36236] = 3, - ACTIONS(97), 1, + [12653] = 3, + ACTIONS(47), 1, sym_list_marker_upper_alpha_paren, - ACTIONS(4486), 1, + ACTIONS(1377), 1, sym__block_close, - STATE(1510), 2, + STATE(563), 2, sym__list_item_upper_alpha_paren, aux_sym__list_upper_alpha_paren_repeat1, - [36247] = 3, - ACTIONS(87), 1, + [12664] = 3, + ACTIONS(37), 1, sym_list_marker_upper_alpha_period, - ACTIONS(4488), 1, + ACTIONS(1379), 1, sym__block_close, - STATE(1511), 2, + STATE(559), 2, sym__list_item_upper_alpha_period, aux_sym__list_upper_alpha_period_repeat1, - [36258] = 3, - ACTIONS(105), 1, + [12675] = 3, + ACTIONS(55), 1, sym_list_marker_lower_alpha_parens, - ACTIONS(4490), 1, + ACTIONS(1381), 1, sym__block_close, - STATE(1516), 2, + STATE(555), 2, sym__list_item_lower_alpha_parens, aux_sym__list_lower_alpha_parens_repeat1, - [36269] = 2, - ACTIONS(4492), 1, - sym__div_end, - ACTIONS(2844), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [36278] = 4, - ACTIONS(4419), 1, - anon_sym_EQ, - ACTIONS(4494), 1, - sym_language, - ACTIONS(4496), 1, - sym__newline, - STATE(2181), 1, - sym_raw_block_info, - [36291] = 3, - ACTIONS(95), 1, + [12686] = 3, + ACTIONS(41), 1, + sym_list_marker_upper_roman_period, + ACTIONS(1383), 1, + sym__block_close, + STATE(589), 2, + sym__list_item_upper_roman_period, + aux_sym__list_upper_roman_period_repeat1, + [12697] = 3, + ACTIONS(45), 1, sym_list_marker_lower_alpha_paren, - ACTIONS(4498), 1, + ACTIONS(1385), 1, sym__block_close, - STATE(1517), 2, + STATE(552), 2, sym__list_item_lower_alpha_paren, aux_sym__list_lower_alpha_paren_repeat1, - [36302] = 3, - ACTIONS(99), 1, - sym_list_marker_lower_roman_paren, - ACTIONS(4500), 1, - sym__block_close, - STATE(1499), 2, - sym__list_item_lower_roman_paren, - aux_sym__list_lower_roman_paren_repeat1, - [36313] = 3, - ACTIONS(4502), 1, + [12708] = 3, + ACTIONS(35), 1, + sym_list_marker_lower_alpha_period, + ACTIONS(1387), 1, sym__block_close, - ACTIONS(4504), 1, - sym_list_marker_upper_roman_period, - STATE(1493), 2, - sym__list_item_upper_roman_period, - aux_sym__list_upper_roman_period_repeat1, - [36324] = 3, - ACTIONS(109), 1, + STATE(550), 2, + sym__list_item_lower_alpha_period, + aux_sym__list_lower_alpha_period_repeat1, + [12719] = 3, + ACTIONS(59), 1, sym_list_marker_lower_roman_parens, - ACTIONS(4507), 1, + ACTIONS(1389), 1, sym__block_close, - STATE(1498), 2, + STATE(581), 2, sym__list_item_lower_roman_parens, aux_sym__list_lower_roman_parens_repeat1, - [36335] = 3, - ACTIONS(85), 1, + [12730] = 4, + ACTIONS(1391), 1, + anon_sym_EQ, + ACTIONS(1393), 1, + sym_language, + ACTIONS(1395), 1, + sym__newline, + STATE(923), 1, + sym_raw_block_info, + [12743] = 3, + ACTIONS(35), 1, sym_list_marker_lower_alpha_period, - ACTIONS(4509), 1, + ACTIONS(1397), 1, sym__block_close, - STATE(1520), 2, + STATE(550), 2, sym__list_item_lower_alpha_period, aux_sym__list_lower_alpha_period_repeat1, - [36346] = 3, - ACTIONS(103), 1, + [12754] = 3, + ACTIONS(53), 1, sym_list_marker_decimal_parens, - ACTIONS(4511), 1, + ACTIONS(1399), 1, sym__block_close, - STATE(1521), 2, + STATE(549), 2, sym__list_item_decimal_parens, aux_sym__list_decimal_parens_repeat1, - [36357] = 3, - ACTIONS(93), 1, - sym_list_marker_decimal_paren, - ACTIONS(4513), 1, - sym__block_close, - STATE(1524), 2, - sym__list_item_decimal_paren, - aux_sym__list_decimal_paren_repeat1, - [36368] = 3, - ACTIONS(4515), 1, - sym__block_close, - ACTIONS(4517), 1, - sym_list_marker_lower_roman_parens, - STATE(1498), 2, - sym__list_item_lower_roman_parens, - aux_sym__list_lower_roman_parens_repeat1, - [36379] = 3, - ACTIONS(4520), 1, - sym__block_close, - ACTIONS(4522), 1, + [12765] = 3, + ACTIONS(49), 1, sym_list_marker_lower_roman_paren, - STATE(1499), 2, + ACTIONS(1401), 1, + sym__block_close, + STATE(578), 2, sym__list_item_lower_roman_paren, aux_sym__list_lower_roman_paren_repeat1, - [36390] = 4, - ACTIONS(4419), 1, - anon_sym_EQ, - ACTIONS(4525), 1, - sym_language, - ACTIONS(4527), 1, - sym__newline, - STATE(2144), 1, - sym_raw_block_info, - [36403] = 3, - ACTIONS(83), 1, - sym_list_marker_decimal_period, - ACTIONS(4529), 1, + [12776] = 3, + ACTIONS(39), 1, + sym_list_marker_lower_roman_period, + ACTIONS(1403), 1, sym__block_close, - STATE(1525), 2, - sym__list_item_decimal_period, - aux_sym__list_decimal_period_repeat1, - [36414] = 3, - ACTIONS(81), 1, - sym_list_marker_definition, - ACTIONS(4531), 1, + STATE(573), 2, + sym__list_item_lower_roman_period, + aux_sym__list_lower_roman_period_repeat1, + [12787] = 3, + ACTIONS(43), 1, + sym_list_marker_decimal_paren, + ACTIONS(1405), 1, sym__block_close, - STATE(1528), 2, - sym__list_item_definition, - aux_sym__list_definition_repeat1, - [36425] = 3, - ACTIONS(81), 1, + STATE(548), 2, + sym__list_item_decimal_paren, + aux_sym__list_decimal_paren_repeat1, + [12798] = 3, + ACTIONS(31), 1, sym_list_marker_definition, - ACTIONS(4533), 1, + ACTIONS(1407), 1, sym__block_close, - STATE(1528), 2, + STATE(545), 2, sym__list_item_definition, aux_sym__list_definition_repeat1, - [36436] = 3, - ACTIONS(4535), 1, - sym__block_close, - ACTIONS(4537), 1, - sym_list_marker_lower_roman_period, - STATE(1504), 2, - sym__list_item_lower_roman_period, - aux_sym__list_lower_roman_period_repeat1, - [36447] = 3, - ACTIONS(4540), 1, - sym__block_close, - ACTIONS(4542), 1, + [12809] = 3, + ACTIONS(57), 1, sym_list_marker_upper_alpha_parens, - STATE(1505), 2, + ACTIONS(1409), 1, + sym__block_close, + STATE(568), 2, sym__list_item_upper_alpha_parens, aux_sym__list_upper_alpha_parens_repeat1, - [36458] = 3, - ACTIONS(103), 1, + [12820] = 3, + ACTIONS(47), 1, + sym_list_marker_upper_alpha_paren, + ACTIONS(1411), 1, + sym__block_close, + STATE(563), 2, + sym__list_item_upper_alpha_paren, + aux_sym__list_upper_alpha_paren_repeat1, + [12831] = 3, + ACTIONS(37), 1, + sym_list_marker_upper_alpha_period, + ACTIONS(1413), 1, + sym__block_close, + STATE(559), 2, + sym__list_item_upper_alpha_period, + aux_sym__list_upper_alpha_period_repeat1, + [12842] = 3, + ACTIONS(55), 1, + sym_list_marker_lower_alpha_parens, + ACTIONS(1415), 1, + sym__block_close, + STATE(555), 2, + sym__list_item_lower_alpha_parens, + aux_sym__list_lower_alpha_parens_repeat1, + [12853] = 3, + ACTIONS(45), 1, + sym_list_marker_lower_alpha_paren, + ACTIONS(1417), 1, + sym__block_close, + STATE(552), 2, + sym__list_item_lower_alpha_paren, + aux_sym__list_lower_alpha_paren_repeat1, + [12864] = 3, + ACTIONS(35), 1, + sym_list_marker_lower_alpha_period, + ACTIONS(1419), 1, + sym__block_close, + STATE(550), 2, + sym__list_item_lower_alpha_period, + aux_sym__list_lower_alpha_period_repeat1, + [12875] = 3, + ACTIONS(1423), 1, + anon_sym_PERCENT, + STATE(546), 1, + aux_sym__comment_no_newline_repeat1, + ACTIONS(1421), 2, + sym_backslash_escape, + aux_sym__comment_no_newline_token1, + [12886] = 3, + ACTIONS(53), 1, sym_list_marker_decimal_parens, - ACTIONS(4545), 1, + ACTIONS(1425), 1, sym__block_close, - STATE(1521), 2, + STATE(549), 2, sym__list_item_decimal_parens, aux_sym__list_decimal_parens_repeat1, - [36469] = 3, - ACTIONS(93), 1, + [12897] = 3, + ACTIONS(919), 1, + sym__table_caption_begin, + STATE(803), 1, + sym_table_caption, + ACTIONS(527), 2, + sym__block_close, + sym__block_quote_continuation, + [12908] = 3, + ACTIONS(43), 1, sym_list_marker_decimal_paren, - ACTIONS(4547), 1, + ACTIONS(1427), 1, sym__block_close, - STATE(1524), 2, + STATE(548), 2, sym__list_item_decimal_paren, aux_sym__list_decimal_paren_repeat1, - [36480] = 3, - ACTIONS(83), 1, + [12919] = 4, + ACTIONS(1391), 1, + anon_sym_EQ, + ACTIONS(1429), 1, + sym_language, + ACTIONS(1431), 1, + sym__newline, + STATE(944), 1, + sym_raw_block_info, + [12932] = 3, + ACTIONS(33), 1, sym_list_marker_decimal_period, - ACTIONS(4549), 1, + ACTIONS(1433), 1, sym__block_close, - STATE(1525), 2, + STATE(547), 2, sym__list_item_decimal_period, aux_sym__list_decimal_period_repeat1, - [36491] = 3, - ACTIONS(81), 1, + [12943] = 3, + ACTIONS(61), 1, + sym_list_marker_upper_roman_parens, + ACTIONS(1435), 1, + sym__block_close, + STATE(583), 2, + sym__list_item_upper_roman_parens, + aux_sym__list_upper_roman_parens_repeat1, + [12954] = 3, + ACTIONS(43), 1, + sym_list_marker_decimal_paren, + ACTIONS(1437), 1, + sym__block_close, + STATE(548), 2, + sym__list_item_decimal_paren, + aux_sym__list_decimal_paren_repeat1, + [12965] = 3, + ACTIONS(31), 1, sym_list_marker_definition, - ACTIONS(4551), 1, + ACTIONS(1439), 1, sym__block_close, - STATE(1528), 2, + STATE(545), 2, sym__list_item_definition, aux_sym__list_definition_repeat1, - [36502] = 3, - ACTIONS(4553), 1, + [12976] = 3, + ACTIONS(61), 1, + sym_list_marker_upper_roman_parens, + ACTIONS(1441), 1, sym__block_close, - ACTIONS(4555), 1, - sym_list_marker_upper_alpha_paren, - STATE(1510), 2, - sym__list_item_upper_alpha_paren, - aux_sym__list_upper_alpha_paren_repeat1, - [36513] = 3, - ACTIONS(4558), 1, + STATE(583), 2, + sym__list_item_upper_roman_parens, + aux_sym__list_upper_roman_parens_repeat1, + [12987] = 3, + ACTIONS(1443), 1, + aux_sym__line_token1, + STATE(899), 1, + sym_frontmatter_content, + STATE(512), 2, + sym__line, + aux_sym_frontmatter_content_repeat1, + [12998] = 3, + ACTIONS(1443), 1, + aux_sym__line_token1, + ACTIONS(1445), 1, + sym_frontmatter_marker, + STATE(473), 2, + sym__line, + aux_sym_frontmatter_content_repeat1, + [13009] = 3, + ACTIONS(51), 1, + sym_list_marker_upper_roman_paren, + ACTIONS(1447), 1, sym__block_close, - ACTIONS(4560), 1, - sym_list_marker_upper_alpha_period, - STATE(1511), 2, - sym__list_item_upper_alpha_period, - aux_sym__list_upper_alpha_period_repeat1, - [36524] = 3, - ACTIONS(4565), 1, - anon_sym_PERCENT, - STATE(1567), 1, - aux_sym__comment_no_newline_repeat1, - ACTIONS(4563), 2, - sym_backslash_escape, - aux_sym__comment_with_newline_token1, - [36535] = 2, - ACTIONS(4567), 1, - sym__code_block_end, - ACTIONS(2720), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [36544] = 3, - ACTIONS(4572), 1, - anon_sym_PERCENT, - STATE(1514), 1, - aux_sym__comment_no_newline_repeat1, - ACTIONS(4569), 2, - sym_backslash_escape, - aux_sym__comment_with_newline_token1, - [36555] = 2, - ACTIONS(4574), 1, - sym__eof_or_newline, - ACTIONS(2916), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [36564] = 3, - ACTIONS(4576), 1, + STATE(585), 2, + sym__list_item_upper_roman_paren, + aux_sym__list_upper_roman_paren_repeat1, + [13020] = 3, + ACTIONS(31), 1, + sym_list_marker_definition, + ACTIONS(1449), 1, sym__block_close, - ACTIONS(4578), 1, - sym_list_marker_lower_alpha_parens, - STATE(1516), 2, - sym__list_item_lower_alpha_parens, - aux_sym__list_lower_alpha_parens_repeat1, - [36575] = 3, - ACTIONS(4581), 1, + STATE(545), 2, + sym__list_item_definition, + aux_sym__list_definition_repeat1, + [13031] = 3, + ACTIONS(33), 1, + sym_list_marker_decimal_period, + ACTIONS(1451), 1, sym__block_close, - ACTIONS(4583), 1, - sym_list_marker_lower_alpha_paren, - STATE(1517), 2, - sym__list_item_lower_alpha_paren, - aux_sym__list_lower_alpha_paren_repeat1, - [36586] = 3, - ACTIONS(111), 1, - sym_list_marker_upper_roman_parens, - ACTIONS(4586), 1, + STATE(547), 2, + sym__list_item_decimal_period, + aux_sym__list_decimal_period_repeat1, + [13042] = 3, + ACTIONS(33), 1, + sym_list_marker_decimal_period, + ACTIONS(1453), 1, sym__block_close, - STATE(1485), 2, - sym__list_item_upper_roman_parens, - aux_sym__list_upper_roman_parens_repeat1, - [36597] = 3, - ACTIONS(85), 1, - sym_list_marker_lower_alpha_period, - ACTIONS(4588), 1, + STATE(547), 2, + sym__list_item_decimal_period, + aux_sym__list_decimal_period_repeat1, + [13053] = 3, + ACTIONS(31), 1, + sym_list_marker_definition, + ACTIONS(1455), 1, sym__block_close, - STATE(1520), 2, - sym__list_item_lower_alpha_period, - aux_sym__list_lower_alpha_period_repeat1, - [36608] = 3, - ACTIONS(4590), 1, + STATE(545), 2, + sym__list_item_definition, + aux_sym__list_definition_repeat1, + [13064] = 3, + ACTIONS(43), 1, + sym_list_marker_decimal_paren, + ACTIONS(1457), 1, + sym__block_close, + STATE(548), 2, + sym__list_item_decimal_paren, + aux_sym__list_decimal_paren_repeat1, + [13075] = 3, + ACTIONS(53), 1, + sym_list_marker_decimal_parens, + ACTIONS(1459), 1, sym__block_close, - ACTIONS(4592), 1, + STATE(549), 2, + sym__list_item_decimal_parens, + aux_sym__list_decimal_parens_repeat1, + [13086] = 3, + ACTIONS(35), 1, sym_list_marker_lower_alpha_period, - STATE(1520), 2, + ACTIONS(1461), 1, + sym__block_close, + STATE(550), 2, sym__list_item_lower_alpha_period, aux_sym__list_lower_alpha_period_repeat1, - [36619] = 3, - ACTIONS(4595), 1, + [13097] = 3, + ACTIONS(45), 1, + sym_list_marker_lower_alpha_paren, + ACTIONS(1463), 1, sym__block_close, - ACTIONS(4597), 1, + STATE(552), 2, + sym__list_item_lower_alpha_paren, + aux_sym__list_lower_alpha_paren_repeat1, + [13108] = 3, + ACTIONS(53), 1, sym_list_marker_decimal_parens, - STATE(1521), 2, + ACTIONS(1465), 1, + sym__block_close, + STATE(549), 2, sym__list_item_decimal_parens, aux_sym__list_decimal_parens_repeat1, - [36630] = 3, - ACTIONS(111), 1, - sym_list_marker_upper_roman_parens, - ACTIONS(4600), 1, - sym__block_close, - STATE(1485), 2, - sym__list_item_upper_roman_parens, - aux_sym__list_upper_roman_parens_repeat1, - [36641] = 3, - ACTIONS(91), 1, - sym_list_marker_upper_roman_period, - ACTIONS(4602), 1, - sym__block_close, - STATE(1493), 2, - sym__list_item_upper_roman_period, - aux_sym__list_upper_roman_period_repeat1, - [36652] = 3, - ACTIONS(4604), 1, + [13119] = 3, + ACTIONS(55), 1, + sym_list_marker_lower_alpha_parens, + ACTIONS(1467), 1, sym__block_close, - ACTIONS(4606), 1, - sym_list_marker_decimal_paren, - STATE(1524), 2, - sym__list_item_decimal_paren, - aux_sym__list_decimal_paren_repeat1, - [36663] = 3, - ACTIONS(4609), 1, + STATE(555), 2, + sym__list_item_lower_alpha_parens, + aux_sym__list_lower_alpha_parens_repeat1, + [13130] = 3, + ACTIONS(37), 1, + sym_list_marker_upper_alpha_period, + ACTIONS(1469), 1, sym__block_close, - ACTIONS(4611), 1, - sym_list_marker_decimal_period, - STATE(1525), 2, - sym__list_item_decimal_period, - aux_sym__list_decimal_period_repeat1, - [36674] = 3, - ACTIONS(109), 1, - sym_list_marker_lower_roman_parens, - ACTIONS(4614), 1, + STATE(559), 2, + sym__list_item_upper_alpha_period, + aux_sym__list_upper_alpha_period_repeat1, + [13141] = 4, + ACTIONS(1391), 1, + anon_sym_EQ, + ACTIONS(1471), 1, + sym_language, + ACTIONS(1473), 1, + sym__newline, + STATE(965), 1, + sym_raw_block_info, + [13154] = 3, + ACTIONS(35), 1, + sym_list_marker_lower_alpha_period, + ACTIONS(1475), 1, sym__block_close, - STATE(1498), 2, - sym__list_item_lower_roman_parens, - aux_sym__list_lower_roman_parens_repeat1, - [36685] = 2, - ACTIONS(4616), 1, - sym__div_end, - ACTIONS(2864), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [36694] = 3, - ACTIONS(4618), 1, + STATE(550), 2, + sym__list_item_lower_alpha_period, + aux_sym__list_lower_alpha_period_repeat1, + [13165] = 3, + ACTIONS(47), 1, + sym_list_marker_upper_alpha_paren, + ACTIONS(1477), 1, sym__block_close, - ACTIONS(4620), 1, - sym_list_marker_definition, - STATE(1528), 2, - sym__list_item_definition, - aux_sym__list_definition_repeat1, - [36705] = 2, - ACTIONS(4623), 1, - sym__div_end, - ACTIONS(2870), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [36714] = 3, - ACTIONS(99), 1, - sym_list_marker_lower_roman_paren, - ACTIONS(4625), 1, + STATE(563), 2, + sym__list_item_upper_alpha_paren, + aux_sym__list_upper_alpha_paren_repeat1, + [13176] = 3, + ACTIONS(57), 1, + sym_list_marker_upper_alpha_parens, + ACTIONS(1479), 1, sym__block_close, - STATE(1499), 2, - sym__list_item_lower_roman_paren, - aux_sym__list_lower_roman_paren_repeat1, - [36725] = 3, - ACTIONS(89), 1, + STATE(568), 2, + sym__list_item_upper_alpha_parens, + aux_sym__list_upper_alpha_parens_repeat1, + [13187] = 3, + ACTIONS(39), 1, sym_list_marker_lower_roman_period, - ACTIONS(4627), 1, + ACTIONS(1481), 1, sym__block_close, - STATE(1504), 2, + STATE(573), 2, sym__list_item_lower_roman_period, aux_sym__list_lower_roman_period_repeat1, - [36736] = 2, - ACTIONS(4631), 1, - sym__newline, - ACTIONS(4629), 3, - sym_backslash_escape, - anon_sym_PERCENT, - aux_sym__comment_with_newline_token1, - [36745] = 3, - ACTIONS(101), 1, - sym_list_marker_upper_roman_paren, - ACTIONS(4633), 1, - sym__block_close, - STATE(1456), 2, - sym__list_item_upper_roman_paren, - aux_sym__list_upper_roman_paren_repeat1, - [36756] = 2, - ACTIONS(4635), 1, - sym__code_block_end, - ACTIONS(2850), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [36765] = 3, - ACTIONS(91), 1, - sym_list_marker_upper_roman_period, - ACTIONS(4637), 1, - sym__block_close, - STATE(1493), 2, - sym__list_item_upper_roman_period, - aux_sym__list_upper_roman_period_repeat1, - [36776] = 3, - ACTIONS(4471), 1, - aux_sym__line_token1, - ACTIONS(4639), 1, - sym_frontmatter_marker, - STATE(1564), 2, - sym__line, - aux_sym_frontmatter_content_repeat1, - [36787] = 3, - ACTIONS(99), 1, + [13198] = 3, + ACTIONS(49), 1, sym_list_marker_lower_roman_paren, - ACTIONS(4641), 1, + ACTIONS(1483), 1, sym__block_close, - STATE(1499), 2, + STATE(578), 2, sym__list_item_lower_roman_paren, aux_sym__list_lower_roman_paren_repeat1, - [36798] = 2, - ACTIONS(4643), 1, - sym__code_block_end, - ACTIONS(2838), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [36807] = 3, - ACTIONS(89), 1, - sym_list_marker_lower_roman_period, - ACTIONS(4645), 1, - sym__block_close, - STATE(1504), 2, - sym__list_item_lower_roman_period, - aux_sym__list_lower_roman_period_repeat1, - [36818] = 3, - ACTIONS(3799), 1, - sym__table_caption_begin, - STATE(1915), 1, - sym_table_caption, - ACTIONS(2716), 2, - sym__block_close, - sym__block_quote_continuation, - [36829] = 3, - ACTIONS(107), 1, - sym_list_marker_upper_alpha_parens, - ACTIONS(4647), 1, - sym__block_close, - STATE(1505), 2, - sym__list_item_upper_alpha_parens, - aux_sym__list_upper_alpha_parens_repeat1, - [36840] = 3, - ACTIONS(107), 1, - sym_list_marker_upper_alpha_parens, - ACTIONS(4649), 1, - sym__block_close, - STATE(1505), 2, - sym__list_item_upper_alpha_parens, - aux_sym__list_upper_alpha_parens_repeat1, - [36851] = 3, - ACTIONS(97), 1, - sym_list_marker_upper_alpha_paren, - ACTIONS(4651), 1, + [13209] = 3, + ACTIONS(45), 1, + sym_list_marker_lower_alpha_paren, + ACTIONS(1485), 1, sym__block_close, - STATE(1510), 2, - sym__list_item_upper_alpha_paren, - aux_sym__list_upper_alpha_paren_repeat1, - [36862] = 3, - ACTIONS(87), 1, - sym_list_marker_upper_alpha_period, - ACTIONS(4653), 1, + STATE(552), 2, + sym__list_item_lower_alpha_paren, + aux_sym__list_lower_alpha_paren_repeat1, + [13220] = 3, + ACTIONS(59), 1, + sym_list_marker_lower_roman_parens, + ACTIONS(1487), 1, sym__block_close, - STATE(1511), 2, - sym__list_item_upper_alpha_period, - aux_sym__list_upper_alpha_period_repeat1, - [36873] = 3, - ACTIONS(105), 1, + STATE(581), 2, + sym__list_item_lower_roman_parens, + aux_sym__list_lower_roman_parens_repeat1, + [13231] = 3, + ACTIONS(55), 1, sym_list_marker_lower_alpha_parens, - ACTIONS(4655), 1, + ACTIONS(1489), 1, sym__block_close, - STATE(1516), 2, + STATE(555), 2, sym__list_item_lower_alpha_parens, aux_sym__list_lower_alpha_parens_repeat1, - [36884] = 2, - ACTIONS(4657), 1, - sym__newline, - ACTIONS(4659), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [36893] = 2, - ACTIONS(4661), 1, - sym__div_end, - ACTIONS(2824), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [36902] = 3, - ACTIONS(97), 1, - sym_list_marker_upper_alpha_paren, - ACTIONS(4663), 1, - sym__block_close, - STATE(1510), 2, - sym__list_item_upper_alpha_paren, - aux_sym__list_upper_alpha_paren_repeat1, - [36913] = 2, - ACTIONS(4665), 1, - sym__code_block_end, - ACTIONS(2752), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [36922] = 2, - ACTIONS(4667), 1, - sym__code_block_end, - ACTIONS(2744), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [36931] = 3, - ACTIONS(87), 1, + [13242] = 3, + ACTIONS(37), 1, sym_list_marker_upper_alpha_period, - ACTIONS(4669), 1, + ACTIONS(1491), 1, sym__block_close, - STATE(1511), 2, + STATE(559), 2, sym__list_item_upper_alpha_period, aux_sym__list_upper_alpha_period_repeat1, - [36942] = 3, - ACTIONS(4471), 1, - aux_sym__line_token1, - STATE(2071), 1, - sym_frontmatter_content, - STATE(1536), 2, - sym__line, - aux_sym_frontmatter_content_repeat1, - [36953] = 3, - ACTIONS(95), 1, - sym_list_marker_lower_alpha_paren, - ACTIONS(4671), 1, + [13253] = 3, + ACTIONS(47), 1, + sym_list_marker_upper_alpha_paren, + ACTIONS(1493), 1, sym__block_close, - STATE(1517), 2, - sym__list_item_lower_alpha_paren, - aux_sym__list_lower_alpha_paren_repeat1, - [36964] = 3, - ACTIONS(85), 1, - sym_list_marker_lower_alpha_period, - ACTIONS(4673), 1, + STATE(563), 2, + sym__list_item_upper_alpha_paren, + aux_sym__list_upper_alpha_paren_repeat1, + [13264] = 3, + ACTIONS(57), 1, + sym_list_marker_upper_alpha_parens, + ACTIONS(1495), 1, sym__block_close, - STATE(1520), 2, - sym__list_item_lower_alpha_period, - aux_sym__list_lower_alpha_period_repeat1, - [36975] = 3, - ACTIONS(103), 1, - sym_list_marker_decimal_parens, - ACTIONS(4675), 1, + STATE(568), 2, + sym__list_item_upper_alpha_parens, + aux_sym__list_upper_alpha_parens_repeat1, + [13275] = 3, + ACTIONS(49), 1, + sym_list_marker_lower_roman_paren, + ACTIONS(1497), 1, sym__block_close, - STATE(1521), 2, - sym__list_item_decimal_parens, - aux_sym__list_decimal_parens_repeat1, - [36986] = 3, - ACTIONS(109), 1, + STATE(578), 2, + sym__list_item_lower_roman_paren, + aux_sym__list_lower_roman_paren_repeat1, + [13286] = 3, + ACTIONS(59), 1, sym_list_marker_lower_roman_parens, - ACTIONS(4677), 1, + ACTIONS(1499), 1, sym__block_close, - STATE(1498), 2, + STATE(581), 2, sym__list_item_lower_roman_parens, aux_sym__list_lower_roman_parens_repeat1, - [36997] = 3, - ACTIONS(91), 1, + [13297] = 3, + ACTIONS(41), 1, + sym_list_marker_upper_roman_period, + ACTIONS(1501), 1, + sym__block_close, + STATE(589), 2, + sym__list_item_upper_roman_period, + aux_sym__list_upper_roman_period_repeat1, + [13308] = 3, + ACTIONS(41), 1, sym_list_marker_upper_roman_period, - ACTIONS(4679), 1, + ACTIONS(1503), 1, sym__block_close, - STATE(1493), 2, + STATE(589), 2, sym__list_item_upper_roman_period, aux_sym__list_upper_roman_period_repeat1, - [37008] = 3, - ACTIONS(101), 1, + [13319] = 4, + ACTIONS(1391), 1, + anon_sym_EQ, + ACTIONS(1505), 1, + sym_language, + ACTIONS(1507), 1, + sym__newline, + STATE(1011), 1, + sym_raw_block_info, + [13332] = 3, + ACTIONS(51), 1, sym_list_marker_upper_roman_paren, - ACTIONS(4681), 1, + ACTIONS(1509), 1, sym__block_close, - STATE(1456), 2, + STATE(585), 2, sym__list_item_upper_roman_paren, aux_sym__list_upper_roman_paren_repeat1, - [37019] = 3, - ACTIONS(111), 1, + [13343] = 2, + ACTIONS(1511), 1, + sym__eof_or_newline, + ACTIONS(609), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [13352] = 3, + ACTIONS(61), 1, sym_list_marker_upper_roman_parens, - ACTIONS(4683), 1, + ACTIONS(1513), 1, sym__block_close, - STATE(1485), 2, + STATE(583), 2, sym__list_item_upper_roman_parens, aux_sym__list_upper_roman_parens_repeat1, - [37030] = 3, - ACTIONS(93), 1, - sym_list_marker_decimal_paren, - ACTIONS(4685), 1, - sym__block_close, - STATE(1524), 2, - sym__list_item_decimal_paren, - aux_sym__list_decimal_paren_repeat1, - [37041] = 3, - ACTIONS(105), 1, - sym_list_marker_lower_alpha_parens, - ACTIONS(4687), 1, - sym__block_close, - STATE(1516), 2, - sym__list_item_lower_alpha_parens, - aux_sym__list_lower_alpha_parens_repeat1, - [37052] = 3, - ACTIONS(83), 1, - sym_list_marker_decimal_period, - ACTIONS(4689), 1, - sym__block_close, - STATE(1525), 2, - sym__list_item_decimal_period, - aux_sym__list_decimal_period_repeat1, - [37063] = 3, - ACTIONS(95), 1, - sym_list_marker_lower_alpha_paren, - ACTIONS(4691), 1, + [13363] = 3, + ACTIONS(1515), 1, sym__block_close, - STATE(1517), 2, - sym__list_item_lower_alpha_paren, - aux_sym__list_lower_alpha_paren_repeat1, - [37074] = 3, - ACTIONS(4693), 1, - aux_sym__line_token1, - ACTIONS(4696), 1, - sym_frontmatter_marker, - STATE(1564), 2, - sym__line, - aux_sym_frontmatter_content_repeat1, - [37085] = 3, - ACTIONS(81), 1, + ACTIONS(1517), 1, sym_list_marker_definition, - ACTIONS(4698), 1, - sym__block_close, - STATE(1528), 2, + STATE(545), 2, sym__list_item_definition, aux_sym__list_definition_repeat1, - [37096] = 3, - ACTIONS(85), 1, - sym_list_marker_lower_alpha_period, - ACTIONS(4700), 1, - sym__block_close, - STATE(1520), 2, - sym__list_item_lower_alpha_period, - aux_sym__list_lower_alpha_period_repeat1, - [37107] = 3, - ACTIONS(4702), 1, + [13374] = 3, + ACTIONS(1520), 1, anon_sym_PERCENT, - STATE(1514), 1, + STATE(588), 1, aux_sym__comment_no_newline_repeat1, - ACTIONS(4563), 2, + ACTIONS(1421), 2, sym_backslash_escape, - aux_sym__comment_with_newline_token1, - [37118] = 3, - ACTIONS(103), 1, - sym_list_marker_decimal_parens, - ACTIONS(4704), 1, + aux_sym__comment_no_newline_token1, + [13385] = 3, + ACTIONS(1522), 1, sym__block_close, - STATE(1521), 2, - sym__list_item_decimal_parens, - aux_sym__list_decimal_parens_repeat1, - [37129] = 3, - ACTIONS(93), 1, - sym_list_marker_decimal_paren, - ACTIONS(4706), 1, + ACTIONS(1524), 1, + sym_list_marker_decimal_period, + STATE(547), 2, + sym__list_item_decimal_period, + aux_sym__list_decimal_period_repeat1, + [13396] = 3, + ACTIONS(1527), 1, sym__block_close, - STATE(1524), 2, + ACTIONS(1529), 1, + sym_list_marker_decimal_paren, + STATE(548), 2, sym__list_item_decimal_paren, aux_sym__list_decimal_paren_repeat1, - [37140] = 3, - ACTIONS(83), 1, - sym_list_marker_decimal_period, - ACTIONS(4708), 1, + [13407] = 3, + ACTIONS(1532), 1, sym__block_close, - STATE(1525), 2, - sym__list_item_decimal_period, - aux_sym__list_decimal_period_repeat1, - [37151] = 3, - ACTIONS(81), 1, + ACTIONS(1534), 1, + sym_list_marker_decimal_parens, + STATE(549), 2, + sym__list_item_decimal_parens, + aux_sym__list_decimal_parens_repeat1, + [13418] = 3, + ACTIONS(1537), 1, + sym__block_close, + ACTIONS(1539), 1, + sym_list_marker_lower_alpha_period, + STATE(550), 2, + sym__list_item_lower_alpha_period, + aux_sym__list_lower_alpha_period_repeat1, + [13429] = 4, + ACTIONS(1391), 1, + anon_sym_EQ, + ACTIONS(1542), 1, + sym_language, + ACTIONS(1544), 1, + sym__newline, + STATE(985), 1, + sym_raw_block_info, + [13442] = 3, + ACTIONS(1546), 1, + sym__block_close, + ACTIONS(1548), 1, + sym_list_marker_lower_alpha_paren, + STATE(552), 2, + sym__list_item_lower_alpha_paren, + aux_sym__list_lower_alpha_paren_repeat1, + [13453] = 3, + ACTIONS(31), 1, sym_list_marker_definition, - ACTIONS(4710), 1, + ACTIONS(1551), 1, sym__block_close, - STATE(1528), 2, + STATE(545), 2, sym__list_item_definition, aux_sym__list_definition_repeat1, - [37162] = 3, - ACTIONS(83), 1, + [13464] = 3, + ACTIONS(33), 1, sym_list_marker_decimal_period, - ACTIONS(4712), 1, + ACTIONS(1553), 1, sym__block_close, - STATE(1525), 2, + STATE(547), 2, sym__list_item_decimal_period, aux_sym__list_decimal_period_repeat1, - [37173] = 3, - ACTIONS(93), 1, + [13475] = 3, + ACTIONS(1555), 1, + sym__block_close, + ACTIONS(1557), 1, + sym_list_marker_lower_alpha_parens, + STATE(555), 2, + sym__list_item_lower_alpha_parens, + aux_sym__list_lower_alpha_parens_repeat1, + [13486] = 3, + ACTIONS(43), 1, sym_list_marker_decimal_paren, - ACTIONS(4714), 1, + ACTIONS(1560), 1, sym__block_close, - STATE(1524), 2, + STATE(548), 2, sym__list_item_decimal_paren, aux_sym__list_decimal_paren_repeat1, - [37184] = 3, - ACTIONS(103), 1, + [13497] = 2, + ACTIONS(1562), 1, + sym__code_block_end, + ACTIONS(531), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [13506] = 2, + ACTIONS(1564), 1, + sym__code_block_end, + ACTIONS(537), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [13515] = 3, + ACTIONS(1566), 1, + sym__block_close, + ACTIONS(1568), 1, + sym_list_marker_upper_alpha_period, + STATE(559), 2, + sym__list_item_upper_alpha_period, + aux_sym__list_upper_alpha_period_repeat1, + [13526] = 2, + ACTIONS(1571), 1, + sym__div_end, + ACTIONS(543), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [13535] = 3, + ACTIONS(53), 1, sym_list_marker_decimal_parens, - ACTIONS(4716), 1, + ACTIONS(1573), 1, sym__block_close, - STATE(1521), 2, + STATE(549), 2, sym__list_item_decimal_parens, aux_sym__list_decimal_parens_repeat1, - [37195] = 3, - ACTIONS(85), 1, - sym_list_marker_lower_alpha_period, - ACTIONS(4718), 1, + [13546] = 3, + ACTIONS(61), 1, + sym_list_marker_upper_roman_parens, + ACTIONS(1575), 1, sym__block_close, - STATE(1520), 2, - sym__list_item_lower_alpha_period, - aux_sym__list_lower_alpha_period_repeat1, - [37206] = 3, - ACTIONS(95), 1, + STATE(583), 2, + sym__list_item_upper_roman_parens, + aux_sym__list_upper_roman_parens_repeat1, + [13557] = 3, + ACTIONS(1577), 1, + sym__block_close, + ACTIONS(1579), 1, + sym_list_marker_upper_alpha_paren, + STATE(563), 2, + sym__list_item_upper_alpha_paren, + aux_sym__list_upper_alpha_paren_repeat1, + [13568] = 3, + ACTIONS(45), 1, sym_list_marker_lower_alpha_paren, - ACTIONS(4720), 1, + ACTIONS(1582), 1, sym__block_close, - STATE(1517), 2, + STATE(552), 2, sym__list_item_lower_alpha_paren, aux_sym__list_lower_alpha_paren_repeat1, - [37217] = 3, - ACTIONS(105), 1, + [13579] = 2, + ACTIONS(1584), 1, + sym__code_block_end, + ACTIONS(557), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [13588] = 3, + ACTIONS(55), 1, sym_list_marker_lower_alpha_parens, - ACTIONS(4722), 1, + ACTIONS(1586), 1, + sym__block_close, + STATE(555), 2, + sym__list_item_lower_alpha_parens, + aux_sym__list_lower_alpha_parens_repeat1, + [13599] = 2, + ACTIONS(1588), 1, + sym__code_block_end, + ACTIONS(563), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [13608] = 3, + ACTIONS(1590), 1, sym__block_close, - STATE(1516), 2, - sym__list_item_lower_alpha_parens, - aux_sym__list_lower_alpha_parens_repeat1, - [37228] = 3, - ACTIONS(87), 1, + ACTIONS(1592), 1, + sym_list_marker_upper_alpha_parens, + STATE(568), 2, + sym__list_item_upper_alpha_parens, + aux_sym__list_upper_alpha_parens_repeat1, + [13619] = 3, + ACTIONS(37), 1, sym_list_marker_upper_alpha_period, - ACTIONS(4724), 1, + ACTIONS(1595), 1, sym__block_close, - STATE(1511), 2, + STATE(559), 2, sym__list_item_upper_alpha_period, aux_sym__list_upper_alpha_period_repeat1, - [37239] = 3, - ACTIONS(97), 1, + [13630] = 2, + ACTIONS(1597), 1, + sym__div_end, + ACTIONS(569), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [13639] = 2, + ACTIONS(1599), 1, + sym__div_end, + ACTIONS(575), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [13648] = 3, + ACTIONS(47), 1, sym_list_marker_upper_alpha_paren, - ACTIONS(4726), 1, + ACTIONS(1601), 1, sym__block_close, - STATE(1510), 2, + STATE(563), 2, sym__list_item_upper_alpha_paren, aux_sym__list_upper_alpha_paren_repeat1, - [37250] = 3, - ACTIONS(107), 1, + [13659] = 3, + ACTIONS(1603), 1, + sym__block_close, + ACTIONS(1605), 1, + sym_list_marker_lower_roman_period, + STATE(573), 2, + sym__list_item_lower_roman_period, + aux_sym__list_lower_roman_period_repeat1, + [13670] = 3, + ACTIONS(57), 1, sym_list_marker_upper_alpha_parens, - ACTIONS(4728), 1, + ACTIONS(1608), 1, sym__block_close, - STATE(1505), 2, + STATE(568), 2, sym__list_item_upper_alpha_parens, aux_sym__list_upper_alpha_parens_repeat1, - [37261] = 3, - ACTIONS(89), 1, + [13681] = 2, + ACTIONS(1610), 1, + sym__code_block_end, + ACTIONS(589), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [13690] = 3, + ACTIONS(39), 1, sym_list_marker_lower_roman_period, - ACTIONS(4730), 1, + ACTIONS(1612), 1, sym__block_close, - STATE(1504), 2, + STATE(573), 2, sym__list_item_lower_roman_period, aux_sym__list_lower_roman_period_repeat1, - [37272] = 3, - ACTIONS(4732), 1, + [13701] = 3, + ACTIONS(1443), 1, + aux_sym__line_token1, + STATE(954), 1, + sym_frontmatter_content, + STATE(512), 2, + sym__line, + aux_sym_frontmatter_content_repeat1, + [13712] = 3, + ACTIONS(1614), 1, sym__block_close, - ACTIONS(4734), 1, - sym__heading6_continuation, - STATE(1582), 1, - aux_sym__heading6_content_repeat1, - [37282] = 3, - ACTIONS(4737), 1, - anon_sym_STAR, - ACTIONS(4739), 1, - aux_sym_strong_end_token1, - STATE(768), 1, - sym_strong_end, - [37292] = 3, - ACTIONS(4741), 1, - anon_sym__, - ACTIONS(4743), 1, - aux_sym_emphasis_end_token1, - STATE(765), 1, - sym_emphasis_end, - [37302] = 1, - ACTIONS(3144), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [37308] = 1, - ACTIONS(2962), 3, + ACTIONS(1616), 1, + sym_list_marker_lower_roman_paren, + STATE(578), 2, + sym__list_item_lower_roman_paren, + aux_sym__list_lower_roman_paren_repeat1, + [13723] = 2, + ACTIONS(1619), 1, + sym__div_end, + ACTIONS(595), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [37314] = 1, - ACTIONS(4745), 3, - sym_backslash_escape, - anon_sym_PERCENT, - aux_sym__comment_with_newline_token1, - [37320] = 1, - ACTIONS(4747), 3, + [13732] = 3, + ACTIONS(49), 1, + sym_list_marker_lower_roman_paren, + ACTIONS(1621), 1, sym__block_close, - sym_list_marker_plus, - sym__block_quote_continuation, - [37326] = 3, - ACTIONS(4749), 1, - anon_sym_NULL, - ACTIONS(4751), 1, - sym__newline, - STATE(1898), 1, - sym__one_or_two_newlines, - [37336] = 3, - ACTIONS(4753), 1, - anon_sym_STAR, - ACTIONS(4755), 1, - aux_sym_strong_end_token1, - STATE(1123), 1, - sym_strong_end, - [37346] = 3, - ACTIONS(4757), 1, - anon_sym_DQUOTE, - ACTIONS(4759), 1, - aux_sym_value_token2, - STATE(1358), 1, - sym_value, - [37356] = 3, - ACTIONS(4761), 1, - anon_sym__, - ACTIONS(4763), 1, - aux_sym_emphasis_end_token1, - STATE(1120), 1, - sym_emphasis_end, - [37366] = 2, - ACTIONS(4765), 1, - sym__eof_or_newline, - ACTIONS(2896), 2, + STATE(578), 2, + sym__list_item_lower_roman_paren, + aux_sym__list_lower_roman_paren_repeat1, + [13743] = 3, + ACTIONS(1623), 1, sym__block_close, - sym__block_quote_continuation, - [37374] = 2, - ACTIONS(4767), 1, - sym__eof_or_newline, - ACTIONS(2726), 2, + ACTIONS(1625), 1, + sym_list_marker_lower_roman_parens, + STATE(581), 2, + sym__list_item_lower_roman_parens, + aux_sym__list_lower_roman_parens_repeat1, + [13754] = 3, + ACTIONS(59), 1, + sym_list_marker_lower_roman_parens, + ACTIONS(1628), 1, sym__block_close, - sym__block_quote_continuation, - [37382] = 3, - ACTIONS(4769), 1, - anon_sym_STAR, - ACTIONS(4771), 1, - aux_sym_strong_end_token1, - STATE(1031), 1, - sym_strong_end, - [37392] = 3, - ACTIONS(4773), 1, - anon_sym__, - ACTIONS(4775), 1, - aux_sym_emphasis_end_token1, - STATE(1034), 1, - sym_emphasis_end, - [37402] = 2, - ACTIONS(4777), 1, - sym__eof_or_newline, - ACTIONS(2904), 2, + STATE(581), 2, + sym__list_item_lower_roman_parens, + aux_sym__list_lower_roman_parens_repeat1, + [13765] = 3, + ACTIONS(1630), 1, sym__block_close, - sym__block_quote_continuation, - [37410] = 1, - ACTIONS(4174), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [37416] = 3, - ACTIONS(3213), 1, - anon_sym_PIPE, - ACTIONS(4779), 1, - sym__block_quote_continuation, - STATE(1621), 1, - aux_sym__block_quote_prefix_repeat1, - [37426] = 2, - ACTIONS(4781), 1, - sym__eof_or_newline, - ACTIONS(2910), 2, + ACTIONS(1632), 1, + sym_list_marker_upper_roman_parens, + STATE(583), 2, + sym__list_item_upper_roman_parens, + aux_sym__list_upper_roman_parens_repeat1, + [13776] = 3, + ACTIONS(51), 1, + sym_list_marker_upper_roman_paren, + ACTIONS(1635), 1, sym__block_close, - sym__block_quote_continuation, - [37434] = 1, - ACTIONS(4783), 3, + STATE(585), 2, + sym__list_item_upper_roman_paren, + aux_sym__list_upper_roman_paren_repeat1, + [13787] = 3, + ACTIONS(1637), 1, sym__block_close, - sym_list_marker_dash, - sym__block_quote_continuation, - [37440] = 3, - ACTIONS(4785), 1, - anon_sym_STAR, - ACTIONS(4787), 1, - aux_sym_strong_end_token1, - STATE(921), 1, - sym_strong_end, - [37450] = 3, - ACTIONS(4789), 1, - anon_sym__, - ACTIONS(4791), 1, - aux_sym_emphasis_end_token1, - STATE(911), 1, - sym_emphasis_end, - [37460] = 2, - ACTIONS(4793), 1, - sym__eof_or_newline, - ACTIONS(2916), 2, + ACTIONS(1639), 1, + sym_list_marker_upper_roman_paren, + STATE(585), 2, + sym__list_item_upper_roman_paren, + aux_sym__list_upper_roman_paren_repeat1, + [13798] = 3, + ACTIONS(41), 1, + sym_list_marker_upper_roman_period, + ACTIONS(1642), 1, sym__block_close, - sym__block_quote_continuation, - [37468] = 3, - ACTIONS(3213), 1, + STATE(589), 2, + sym__list_item_upper_roman_period, + aux_sym__list_upper_roman_period_repeat1, + [13809] = 2, + ACTIONS(1644), 1, + sym__eof_or_newline, + ACTIONS(603), 3, sym__list_item_continuation, - ACTIONS(4795), 1, + sym__list_item_end, sym__block_quote_continuation, - STATE(1651), 1, - aux_sym__block_quote_prefix_repeat1, - [37478] = 1, - ACTIONS(4797), 3, + [13818] = 3, + ACTIONS(1649), 1, + anon_sym_PERCENT, + STATE(588), 1, + aux_sym__comment_no_newline_repeat1, + ACTIONS(1646), 2, + sym_backslash_escape, + aux_sym__comment_no_newline_token1, + [13829] = 3, + ACTIONS(1651), 1, sym__block_close, - sym__block_quote_continuation, + ACTIONS(1653), 1, + sym_list_marker_upper_roman_period, + STATE(589), 2, + sym__list_item_upper_roman_period, + aux_sym__list_upper_roman_period_repeat1, + [13840] = 3, + ACTIONS(1071), 1, aux_sym__line_token1, - [37484] = 3, - ACTIONS(4799), 1, - sym__block_close, - ACTIONS(4801), 1, - sym__heading5_continuation, - STATE(1607), 1, - aux_sym__heading5_content_repeat1, - [37494] = 2, - ACTIONS(4804), 1, + ACTIONS(1656), 1, + sym__block_quote_continuation, + STATE(671), 1, + aux_sym__block_quote_prefix_repeat1, + [13850] = 2, + ACTIONS(1658), 1, sym__div_end, - ACTIONS(2844), 2, + ACTIONS(569), 2, sym__block_close, sym__block_quote_continuation, - [37502] = 3, - ACTIONS(4806), 1, - anon_sym_STAR, - ACTIONS(4808), 1, - aux_sym_strong_end_token1, - STATE(744), 1, - sym_strong_end, - [37512] = 3, - ACTIONS(4810), 1, - anon_sym__, - ACTIONS(4812), 1, - aux_sym_emphasis_end_token1, - STATE(642), 1, - sym_emphasis_end, - [37522] = 3, - ACTIONS(4814), 1, - anon_sym_STAR, - ACTIONS(4816), 1, - aux_sym_strong_end_token1, - STATE(640), 1, - sym_strong_end, - [37532] = 1, - ACTIONS(2986), 3, + [13858] = 1, + ACTIONS(837), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [37538] = 3, - ACTIONS(4818), 1, - anon_sym__, - ACTIONS(4820), 1, - aux_sym_emphasis_end_token1, - STATE(746), 1, - sym_emphasis_end, - [37548] = 2, - ACTIONS(4822), 1, - sym__eof_or_newline, - ACTIONS(2926), 2, - sym__block_close, - sym__block_quote_continuation, - [37556] = 3, - ACTIONS(3158), 1, - aux_sym__line_token1, - ACTIONS(4824), 1, - sym__block_quote_continuation, - STATE(1615), 1, - aux_sym__block_quote_prefix_repeat1, - [37566] = 3, - ACTIONS(4827), 1, - anon_sym_DQUOTE, - ACTIONS(4829), 1, - aux_sym_value_token2, - STATE(1300), 1, - sym_value, - [37576] = 3, - ACTIONS(3213), 1, - aux_sym__line_token1, - ACTIONS(4831), 1, - sym__block_quote_continuation, - STATE(1615), 1, - aux_sym__block_quote_prefix_repeat1, - [37586] = 2, - ACTIONS(4833), 1, - anon_sym_LBRACK, - ACTIONS(4835), 2, - anon_sym_LBRACK_RBRACK, - anon_sym_LPAREN, - [37594] = 1, - ACTIONS(2752), 3, + [13864] = 1, + ACTIONS(667), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [37600] = 2, - ACTIONS(4837), 1, - sym__div_end, - ACTIONS(2870), 2, - sym__block_close, - sym__block_quote_continuation, - [37608] = 3, - ACTIONS(3158), 1, - anon_sym_PIPE, - ACTIONS(4839), 1, - sym__block_quote_continuation, - STATE(1621), 1, - aux_sym__block_quote_prefix_repeat1, - [37618] = 3, - ACTIONS(4842), 1, - anon_sym_STAR, - ACTIONS(4844), 1, - aux_sym_strong_end_token1, - STATE(792), 1, - sym_strong_end, - [37628] = 3, - ACTIONS(4846), 1, - anon_sym__, - ACTIONS(4848), 1, - aux_sym_emphasis_end_token1, - STATE(794), 1, - sym_emphasis_end, - [37638] = 3, - ACTIONS(3213), 1, - sym_list_marker_star, - ACTIONS(4850), 1, - sym__block_quote_continuation, - STATE(1661), 1, - aux_sym__block_quote_prefix_repeat1, - [37648] = 1, - ACTIONS(4852), 3, - sym__block_close, - sym_list_marker_dash, + [13870] = 1, + ACTIONS(795), 3, + sym__list_item_continuation, + sym__list_item_end, sym__block_quote_continuation, - [37654] = 2, - ACTIONS(4854), 1, - anon_sym_LBRACK, - ACTIONS(4856), 2, - anon_sym_LBRACK_RBRACK, - anon_sym_LPAREN, - [37662] = 1, - ACTIONS(3130), 3, + [13876] = 1, + ACTIONS(847), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [37668] = 1, - ACTIONS(4858), 3, + [13882] = 1, + ACTIONS(1660), 3, sym__block_close, sym_list_marker_star, sym__block_quote_continuation, - [37674] = 1, - ACTIONS(4044), 3, - sym__block_close, - sym__block_quote_continuation, - aux_sym__line_token1, - [37680] = 1, - ACTIONS(2998), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [37686] = 1, - ACTIONS(3002), 3, + [13888] = 1, + ACTIONS(783), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [37692] = 1, - ACTIONS(4860), 3, + [13894] = 3, + ACTIONS(1662), 1, sym__block_close, - sym_list_marker_plus, - sym__block_quote_continuation, - [37698] = 3, - ACTIONS(4862), 1, - anon_sym_STAR, - ACTIONS(4864), 1, - aux_sym_strong_end_token1, - STATE(848), 1, - sym_strong_end, - [37708] = 3, - ACTIONS(4866), 1, - anon_sym__, - ACTIONS(4868), 1, - aux_sym_emphasis_end_token1, - STATE(850), 1, - sym_emphasis_end, - [37718] = 1, - ACTIONS(3112), 3, + ACTIONS(1664), 1, + sym__heading_continuation, + STATE(666), 1, + aux_sym__heading_content_repeat1, + [13904] = 1, + ACTIONS(713), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [37724] = 3, - ACTIONS(3213), 1, - sym_list_marker_dash, - ACTIONS(4870), 1, + [13910] = 1, + ACTIONS(1666), 3, + sym__block_close, sym__block_quote_continuation, - STATE(1679), 1, - aux_sym__block_quote_prefix_repeat1, - [37734] = 2, - ACTIONS(4872), 1, - sym__newline, - ACTIONS(4659), 2, + aux_sym__line_token1, + [13916] = 1, + ACTIONS(1668), 3, sym__block_close, + sym_list_marker_dash, sym__block_quote_continuation, - [37742] = 2, - ACTIONS(4874), 1, - anon_sym_LBRACK, - STATE(2177), 2, - sym_checked, - sym_unchecked, - [37750] = 3, - ACTIONS(4876), 1, - anon_sym_STAR, - ACTIONS(4878), 1, - aux_sym_strong_end_token1, - STATE(960), 1, - sym_strong_end, - [37760] = 3, - ACTIONS(4880), 1, - anon_sym__, - ACTIONS(4882), 1, - aux_sym_emphasis_end_token1, - STATE(962), 1, - sym_emphasis_end, - [37770] = 1, - ACTIONS(3104), 3, + [13922] = 1, + ACTIONS(771), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [37776] = 1, - ACTIONS(3080), 3, + [13928] = 1, + ACTIONS(763), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [37782] = 2, - ACTIONS(4884), 1, - sym__code_block_end, - ACTIONS(2744), 2, - sym__block_close, - sym__block_quote_continuation, - [37790] = 1, - ACTIONS(4886), 3, + [13934] = 1, + ACTIONS(527), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [37796] = 3, - ACTIONS(4888), 1, - anon_sym_STAR, - ACTIONS(4890), 1, - aux_sym_strong_end_token1, - STATE(1061), 1, - sym_strong_end, - [37806] = 3, - ACTIONS(4892), 1, - anon_sym__, - ACTIONS(4894), 1, - aux_sym_emphasis_end_token1, - STATE(1059), 1, - sym_emphasis_end, - [37816] = 2, - ACTIONS(4896), 1, - sym__code_block_end, - ACTIONS(2752), 2, - sym__block_close, - sym__block_quote_continuation, - [37824] = 2, - ACTIONS(4898), 1, - sym__div_end, - ACTIONS(2824), 2, - sym__block_close, - sym__block_quote_continuation, - [37832] = 2, - STATE(498), 1, - sym__one_or_two_newlines, - ACTIONS(4900), 2, - sym__newline, - anon_sym_NULL, - [37840] = 3, - ACTIONS(4902), 1, - anon_sym_NULL, - ACTIONS(4904), 1, - sym__newline, - STATE(1630), 1, - sym__one_or_two_newlines, - [37850] = 3, - ACTIONS(3158), 1, - sym__list_item_continuation, - ACTIONS(4906), 1, + [13940] = 3, + ACTIONS(1071), 1, + sym_list_marker_star, + ACTIONS(1670), 1, sym__block_quote_continuation, - STATE(1651), 1, + STATE(606), 1, aux_sym__block_quote_prefix_repeat1, - [37860] = 1, - ACTIONS(4783), 3, - sym__block_close, + [13950] = 3, + ACTIONS(855), 1, sym_list_marker_star, + ACTIONS(1672), 1, sym__block_quote_continuation, - [37866] = 1, - ACTIONS(4783), 3, + STATE(606), 1, + aux_sym__block_quote_prefix_repeat1, + [13960] = 1, + ACTIONS(1675), 3, sym__block_close, sym__list_marker_task_begin, sym__block_quote_continuation, - [37872] = 1, - ACTIONS(3006), 3, + [13966] = 1, + ACTIONS(751), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [37878] = 3, - ACTIONS(4909), 1, - anon_sym_STAR, - ACTIONS(4911), 1, - aux_sym_strong_end_token1, - STATE(975), 1, - sym_strong_end, - [37888] = 3, - ACTIONS(4913), 1, - anon_sym__, - ACTIONS(4915), 1, - aux_sym_emphasis_end_token1, - STATE(973), 1, - sym_emphasis_end, - [37898] = 1, - ACTIONS(4747), 3, - sym__block_close, - sym__list_marker_task_begin, - sym__block_quote_continuation, - [37904] = 1, - ACTIONS(2982), 3, + [13972] = 1, + ACTIONS(743), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [37910] = 3, - ACTIONS(4917), 1, - sym__block_close, - ACTIONS(4919), 1, - sym__heading2_continuation, - STATE(1723), 1, - aux_sym__heading2_content_repeat1, - [37920] = 3, - ACTIONS(3158), 1, - sym__list_marker_task_begin, - ACTIONS(4921), 1, - sym__block_quote_continuation, - STATE(1660), 1, - aux_sym__block_quote_prefix_repeat1, - [37930] = 3, - ACTIONS(3158), 1, - sym_list_marker_star, - ACTIONS(4924), 1, - sym__block_quote_continuation, - STATE(1661), 1, - aux_sym__block_quote_prefix_repeat1, - [37940] = 1, - ACTIONS(3010), 3, + [13978] = 1, + ACTIONS(735), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [37946] = 1, - ACTIONS(2978), 3, + [13984] = 1, + ACTIONS(671), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [37952] = 1, - ACTIONS(2974), 3, + [13990] = 1, + ACTIONS(673), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [37958] = 1, - ACTIONS(2966), 3, + [13996] = 1, + ACTIONS(811), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [37964] = 1, - ACTIONS(3126), 3, + [14002] = 1, + ACTIONS(805), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [37970] = 2, - ACTIONS(4927), 1, - sym__code_block_end, - ACTIONS(2838), 2, - sym__block_close, + [14008] = 1, + ACTIONS(1677), 3, + sym_backslash_escape, + anon_sym_PERCENT, + aux_sym__comment_no_newline_token1, + [14014] = 1, + ACTIONS(719), 3, + sym__list_item_continuation, + sym__list_item_end, sym__block_quote_continuation, - [37978] = 1, - ACTIONS(3138), 3, + [14020] = 1, + ACTIONS(707), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [37984] = 1, - ACTIONS(3142), 3, + [14026] = 3, + ACTIONS(1679), 1, + anon_sym_DQUOTE, + ACTIONS(1681), 1, + aux_sym_value_token2, + STATE(453), 1, + sym_value, + [14036] = 1, + ACTIONS(801), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [37990] = 2, - ACTIONS(4929), 1, - sym__code_block_end, - ACTIONS(2850), 2, - sym__block_close, + [14042] = 1, + ACTIONS(797), 3, + sym__list_item_continuation, + sym__list_item_end, sym__block_quote_continuation, - [37998] = 2, - ACTIONS(4933), 1, - anon_sym_SPACE, - ACTIONS(4931), 2, - anon_sym_x, - anon_sym_X, - [38006] = 1, - ACTIONS(3108), 3, + [14048] = 1, + ACTIONS(789), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [38012] = 1, - ACTIONS(4935), 3, - sym__block_close, - sym_list_marker_plus, + [14054] = 1, + ACTIONS(785), 3, + sym__list_item_continuation, + sym__list_item_end, sym__block_quote_continuation, - [38018] = 1, - ACTIONS(4937), 3, - sym__block_close, + [14060] = 3, + ACTIONS(1071), 1, sym__list_marker_task_begin, + ACTIONS(1683), 1, sym__block_quote_continuation, - [38024] = 1, - ACTIONS(4939), 3, - sym__block_close, - sym_list_marker_star, - sym__block_quote_continuation, - [38030] = 1, - ACTIONS(4941), 3, - sym__block_close, - sym_list_marker_dash, + STATE(624), 1, + aux_sym__block_quote_prefix_repeat1, + [14070] = 3, + ACTIONS(855), 1, + sym__list_marker_task_begin, + ACTIONS(1685), 1, sym__block_quote_continuation, - [38036] = 1, - ACTIONS(3024), 3, + STATE(624), 1, + aux_sym__block_quote_prefix_repeat1, + [14080] = 3, + ACTIONS(1664), 1, + sym__heading_continuation, + ACTIONS(1688), 1, + sym__block_close, + STATE(598), 1, + aux_sym__heading_content_repeat1, + [14090] = 1, + ACTIONS(695), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [38042] = 1, - ACTIONS(4747), 3, - sym__block_close, - sym_list_marker_star, + [14096] = 3, + ACTIONS(1071), 1, + sym__list_item_continuation, + ACTIONS(1690), 1, sym__block_quote_continuation, - [38048] = 3, - ACTIONS(3158), 1, - sym_list_marker_dash, - ACTIONS(4943), 1, + STATE(628), 1, + aux_sym__block_quote_prefix_repeat1, + [14106] = 3, + ACTIONS(855), 1, + sym__list_item_continuation, + ACTIONS(1692), 1, sym__block_quote_continuation, - STATE(1679), 1, + STATE(628), 1, aux_sym__block_quote_prefix_repeat1, - [38058] = 3, - ACTIONS(4946), 1, - sym__block_close, - ACTIONS(4948), 1, - sym__heading6_continuation, - STATE(1716), 1, - aux_sym__heading6_content_repeat1, - [38068] = 3, - ACTIONS(4950), 1, - sym__block_close, - ACTIONS(4952), 1, - sym__heading5_continuation, - STATE(1712), 1, - aux_sym__heading5_content_repeat1, - [38078] = 1, - ACTIONS(3046), 3, + [14116] = 1, + ACTIONS(687), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [38084] = 3, - ACTIONS(4919), 1, - sym__heading2_continuation, - ACTIONS(4954), 1, + [14122] = 1, + ACTIONS(1695), 3, sym__block_close, - STATE(1659), 1, - aux_sym__heading2_content_repeat1, - [38094] = 1, - ACTIONS(2970), 3, - sym__list_item_continuation, - sym__list_item_end, + sym_list_marker_dash, sym__block_quote_continuation, - [38100] = 1, - ACTIONS(3064), 3, + [14128] = 1, + ACTIONS(777), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [38106] = 1, - ACTIONS(3086), 3, - sym__list_item_continuation, - sym__list_item_end, + [14134] = 1, + ACTIONS(1697), 3, + sym__block_close, + sym_list_marker_dash, sym__block_quote_continuation, - [38112] = 1, - ACTIONS(3076), 3, - sym__list_item_continuation, - sym__list_item_end, + [14140] = 2, + ACTIONS(1699), 1, + sym__div_end, + ACTIONS(543), 2, + sym__block_close, sym__block_quote_continuation, - [38118] = 1, - ACTIONS(3088), 3, + [14148] = 1, + ACTIONS(773), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [38124] = 1, - ACTIONS(3092), 3, + [14154] = 1, + ACTIONS(765), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [38130] = 1, - ACTIONS(4956), 3, - sym__list_item_continuation, - sym__list_item_end, + [14160] = 1, + ACTIONS(1701), 3, + sym__block_close, + sym_list_marker_star, sym__block_quote_continuation, - [38136] = 1, - ACTIONS(3102), 3, - sym__list_item_continuation, - sym__list_item_end, + [14166] = 1, + ACTIONS(1703), 3, + sym__block_close, + sym_list_marker_plus, sym__block_quote_continuation, - [38142] = 3, - ACTIONS(4958), 1, + [14172] = 1, + ACTIONS(1668), 3, sym__block_close, - ACTIONS(4960), 1, - sym__heading1_continuation, - STATE(1711), 1, - aux_sym__heading1_content_repeat1, - [38152] = 2, - ACTIONS(4962), 1, - sym__div_end, - ACTIONS(2864), 2, + sym_list_marker_star, + sym__block_quote_continuation, + [14178] = 1, + ACTIONS(1705), 3, sym__block_close, + sym_list_marker_star, sym__block_quote_continuation, - [38160] = 1, - ACTIONS(3098), 3, - sym__list_item_continuation, - sym__list_item_end, + [14184] = 3, + ACTIONS(855), 1, + anon_sym_PIPE, + ACTIONS(1707), 1, + sym__block_quote_continuation, + STATE(640), 1, + aux_sym__block_quote_prefix_repeat1, + [14194] = 2, + ACTIONS(1712), 1, + anon_sym_SPACE, + ACTIONS(1710), 2, + anon_sym_x, + anon_sym_X, + [14202] = 3, + ACTIONS(1071), 1, + sym_list_marker_dash, + ACTIONS(1714), 1, + sym__block_quote_continuation, + STATE(680), 1, + aux_sym__block_quote_prefix_repeat1, + [14212] = 1, + ACTIONS(1716), 3, + sym__block_close, + sym__list_marker_task_begin, + sym__block_quote_continuation, + [14218] = 3, + ACTIONS(1718), 1, + sym__eof_or_newline, + ACTIONS(1720), 1, + sym__newline_inline, + STATE(644), 1, + aux_sym__paragraph_content_repeat1, + [14228] = 3, + ACTIONS(855), 1, + sym_list_marker_plus, + ACTIONS(1723), 1, sym__block_quote_continuation, - [38166] = 1, - ACTIONS(2716), 3, + STATE(645), 1, + aux_sym__block_quote_prefix_repeat1, + [14238] = 1, + ACTIONS(537), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [38172] = 1, - ACTIONS(3070), 3, + [14244] = 2, + ACTIONS(1726), 1, + anon_sym_LBRACK, + STATE(959), 2, + sym_checked, + sym_unchecked, + [14252] = 1, + ACTIONS(757), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [38178] = 1, - ACTIONS(3062), 3, + [14258] = 1, + ACTIONS(753), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [38184] = 1, - ACTIONS(3058), 3, + [14264] = 1, + ACTIONS(745), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [38190] = 3, - ACTIONS(4964), 1, - anon_sym__, - ACTIONS(4966), 1, - aux_sym_emphasis_end_token1, - STATE(782), 1, - sym_emphasis_end, - [38200] = 3, - ACTIONS(4968), 1, - anon_sym_STAR, - ACTIONS(4970), 1, - aux_sym_strong_end_token1, - STATE(779), 1, - sym_strong_end, - [38210] = 2, - STATE(374), 1, - sym__one_or_two_newlines, - ACTIONS(4972), 2, - sym__newline, - anon_sym_NULL, - [38218] = 3, - ACTIONS(3213), 1, - sym__list_marker_task_begin, - ACTIONS(4974), 1, - sym__block_quote_continuation, - STATE(1660), 1, - aux_sym__block_quote_prefix_repeat1, - [38228] = 1, - ACTIONS(3054), 3, + [14270] = 1, + ACTIONS(737), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [38234] = 1, - ACTIONS(3042), 3, + [14276] = 1, + ACTIONS(729), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [38240] = 3, - ACTIONS(4976), 1, - anon_sym_STAR, - ACTIONS(4978), 1, - aux_sym_strong_end_token1, - STATE(1184), 1, - sym_strong_end, - [38250] = 3, - ACTIONS(4980), 1, - anon_sym__, - ACTIONS(4982), 1, - aux_sym_emphasis_end_token1, - STATE(1186), 1, - sym_emphasis_end, - [38260] = 1, - ACTIONS(3038), 3, + [14282] = 1, + ACTIONS(725), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [38266] = 1, - ACTIONS(3034), 3, + [14288] = 1, + ACTIONS(721), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [38272] = 1, - ACTIONS(3016), 3, + [14294] = 1, + ACTIONS(709), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [38278] = 1, - ACTIONS(2994), 3, + [14300] = 1, + ACTIONS(697), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [38284] = 3, - ACTIONS(4960), 1, - sym__heading1_continuation, - ACTIONS(4984), 1, + [14306] = 3, + ACTIONS(1728), 1, + sym__eof_or_newline, + ACTIONS(1730), 1, + sym__newline_inline, + STATE(644), 1, + aux_sym__paragraph_content_repeat1, + [14316] = 1, + ACTIONS(1668), 3, sym__block_close, - STATE(1728), 1, - aux_sym__heading1_content_repeat1, - [38294] = 3, - ACTIONS(4952), 1, - sym__heading5_continuation, - ACTIONS(4986), 1, + sym__list_marker_task_begin, + sym__block_quote_continuation, + [14322] = 1, + ACTIONS(1660), 3, sym__block_close, - STATE(1607), 1, - aux_sym__heading5_content_repeat1, - [38304] = 1, - ACTIONS(2990), 3, - sym__list_item_continuation, - sym__list_item_end, + sym__list_marker_task_begin, sym__block_quote_continuation, - [38310] = 1, - ACTIONS(3050), 3, + [14328] = 1, + ACTIONS(689), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [38316] = 1, - ACTIONS(2952), 3, + [14334] = 1, + ACTIONS(677), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [38322] = 3, - ACTIONS(4948), 1, - sym__heading6_continuation, - ACTIONS(4988), 1, + [14340] = 2, + ACTIONS(1732), 1, + sym__div_end, + ACTIONS(595), 2, sym__block_close, - STATE(1582), 1, - aux_sym__heading6_content_repeat1, - [38332] = 1, - ACTIONS(3030), 3, + sym__block_quote_continuation, + [14348] = 1, + ACTIONS(817), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [38338] = 1, - ACTIONS(4747), 3, - sym__block_close, - sym_list_marker_dash, + [14354] = 3, + ACTIONS(1071), 1, + anon_sym_PIPE, + ACTIONS(1734), 1, sym__block_quote_continuation, - [38344] = 1, - ACTIONS(3022), 3, + STATE(640), 1, + aux_sym__block_quote_prefix_repeat1, + [14364] = 1, + ACTIONS(831), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [38350] = 1, - ACTIONS(3014), 3, + [14370] = 3, + ACTIONS(1736), 1, + sym__block_close, + ACTIONS(1738), 1, + sym__heading_continuation, + STATE(666), 1, + aux_sym__heading_content_repeat1, + [14380] = 2, + ACTIONS(1741), 1, + sym__code_block_end, + ACTIONS(557), 2, + sym__block_close, + sym__block_quote_continuation, + [14388] = 2, + ACTIONS(1743), 1, + sym__code_block_end, + ACTIONS(563), 2, + sym__block_close, + sym__block_quote_continuation, + [14396] = 1, + ACTIONS(1328), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [38356] = 2, - STATE(467), 1, - sym__one_or_two_newlines, - ACTIONS(4990), 2, - sym__newline, - anon_sym_NULL, - [38364] = 3, - ACTIONS(3213), 1, - sym_list_marker_plus, - ACTIONS(4992), 1, + [14402] = 1, + ACTIONS(1660), 3, + sym__block_close, + sym_list_marker_dash, + sym__block_quote_continuation, + [14408] = 3, + ACTIONS(855), 1, + aux_sym__line_token1, + ACTIONS(1745), 1, sym__block_quote_continuation, - STATE(1724), 1, + STATE(671), 1, aux_sym__block_quote_prefix_repeat1, - [38374] = 3, - ACTIONS(4994), 1, + [14418] = 1, + ACTIONS(1748), 3, sym__block_close, - ACTIONS(4996), 1, - sym__heading2_continuation, - STATE(1723), 1, - aux_sym__heading2_content_repeat1, - [38384] = 3, - ACTIONS(3158), 1, sym_list_marker_plus, - ACTIONS(4999), 1, sym__block_quote_continuation, - STATE(1724), 1, - aux_sym__block_quote_prefix_repeat1, - [38394] = 1, - ACTIONS(5002), 3, + [14424] = 2, + ACTIONS(1750), 1, + sym__div_end, + ACTIONS(575), 2, sym__block_close, - sym__list_marker_task_begin, sym__block_quote_continuation, - [38400] = 1, - ACTIONS(4783), 3, + [14432] = 1, + ACTIONS(1668), 3, sym__block_close, sym_list_marker_plus, sym__block_quote_continuation, - [38406] = 2, - ACTIONS(5004), 1, - sym__code_block_end, - ACTIONS(2720), 2, + [14438] = 2, + ACTIONS(1752), 1, + sym__eof_or_newline, + ACTIONS(603), 2, sym__block_close, sym__block_quote_continuation, - [38414] = 3, - ACTIONS(5006), 1, + [14446] = 1, + ACTIONS(1660), 3, sym__block_close, - ACTIONS(5008), 1, - sym__heading1_continuation, - STATE(1728), 1, - aux_sym__heading1_content_repeat1, - [38424] = 2, - ACTIONS(5011), 1, - anon_sym_PERCENT, - STATE(1990), 1, - sym__comment_with_newline, - [38431] = 1, - ACTIONS(5013), 2, - sym__block_close, - sym_list_marker_definition, - [38436] = 1, - ACTIONS(4783), 2, + sym_list_marker_plus, + sym__block_quote_continuation, + [14452] = 3, + ACTIONS(1071), 1, + sym_list_marker_plus, + ACTIONS(1754), 1, + sym__block_quote_continuation, + STATE(645), 1, + aux_sym__block_quote_prefix_repeat1, + [14462] = 2, + ACTIONS(1756), 1, + sym__code_block_end, + ACTIONS(589), 2, sym__block_close, - sym_list_marker_decimal_period, - [38441] = 2, - ACTIONS(5015), 1, - sym__whitespace1, - ACTIONS(5017), 1, - sym__newline, - [38448] = 1, - ACTIONS(4747), 2, + sym__block_quote_continuation, + [14470] = 2, + ACTIONS(1758), 1, + sym__eof_or_newline, + ACTIONS(609), 2, sym__block_close, - sym_list_marker_lower_roman_paren, - [38453] = 2, - ACTIONS(5019), 1, - sym__id, - STATE(2118), 1, - sym_reference_label, - [38460] = 1, - ACTIONS(4994), 2, + sym__block_quote_continuation, + [14478] = 3, + ACTIONS(855), 1, + sym_list_marker_dash, + ACTIONS(1760), 1, + sym__block_quote_continuation, + STATE(680), 1, + aux_sym__block_quote_prefix_repeat1, + [14488] = 2, + ACTIONS(1763), 1, + sym__code_block_end, + ACTIONS(531), 2, sym__block_close, - sym__heading2_continuation, - [38465] = 2, - ACTIONS(5019), 1, - sym__id, - STATE(2350), 1, - sym_reference_label, - [38472] = 1, - ACTIONS(3062), 2, + sym__block_quote_continuation, + [14496] = 1, + ACTIONS(835), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [14502] = 3, + ACTIONS(1730), 1, + sym__newline_inline, + ACTIONS(1765), 1, + sym__eof_or_newline, + STATE(657), 1, + aux_sym__paragraph_content_repeat1, + [14512] = 1, + ACTIONS(1767), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [14518] = 1, + ACTIONS(1214), 3, sym__block_close, sym__block_quote_continuation, - [38477] = 1, - ACTIONS(4799), 2, + aux_sym__line_token1, + [14524] = 2, + ACTIONS(1769), 1, + sym__code_block_end, + ACTIONS(537), 2, sym__block_close, - sym__heading5_continuation, - [38482] = 1, - ACTIONS(5021), 2, - sym__eof_or_newline, - sym__close_paragraph, - [38487] = 2, - ACTIONS(5023), 1, + sym__block_quote_continuation, + [14532] = 2, + ACTIONS(1771), 1, + anon_sym_PIPE, + STATE(713), 1, + aux_sym_table_row_repeat1, + [14539] = 2, + ACTIONS(1773), 1, anon_sym_PIPE, - STATE(1740), 1, + STATE(746), 1, aux_sym_table_separator_repeat1, - [38494] = 2, - ACTIONS(5019), 1, + [14546] = 2, + ACTIONS(29), 1, + sym__list_marker_task_begin, + STATE(44), 1, + sym_list_marker_task, + [14553] = 2, + ACTIONS(1775), 1, sym__id, - STATE(2343), 1, + STATE(1017), 1, sym_reference_label, - [38501] = 2, - ACTIONS(5026), 1, + [14560] = 2, + ACTIONS(1777), 1, sym_table_cell_alignment, - ACTIONS(5028), 1, + ACTIONS(1779), 1, sym__newline, - [38508] = 1, - ACTIONS(5006), 2, + [14567] = 1, + ACTIONS(1178), 2, sym__block_close, - sym__heading1_continuation, - [38513] = 1, - ACTIONS(4783), 2, + sym__heading_continuation, + [14572] = 2, + ACTIONS(1775), 1, + sym__id, + STATE(1010), 1, + sym_reference_label, + [14579] = 2, + ACTIONS(1775), 1, + sym__id, + STATE(1003), 1, + sym_reference_label, + [14586] = 1, + ACTIONS(1668), 2, sym__block_close, sym_list_marker_upper_alpha_paren, - [38518] = 1, - ACTIONS(2952), 2, - sym__block_close, - sym__block_quote_continuation, - [38523] = 2, - ACTIONS(5019), 1, + [14591] = 1, + ACTIONS(1781), 2, + sym__eof_or_newline, + sym__close_paragraph, + [14596] = 2, + ACTIONS(1775), 1, sym__id, - STATE(2336), 1, + STATE(996), 1, sym_reference_label, - [38530] = 1, - ACTIONS(4783), 2, - sym__block_close, - sym_list_marker_lower_alpha_paren, - [38535] = 1, - ACTIONS(4783), 2, - sym__block_close, - sym_list_marker_decimal_paren, - [38540] = 1, - ACTIONS(2978), 2, + [14603] = 2, + ACTIONS(1783), 1, + anon_sym_PIPE, + STATE(823), 1, + aux_sym_table_row_repeat1, + [14610] = 1, + ACTIONS(1660), 2, sym__block_close, - sym__block_quote_continuation, - [38545] = 1, - ACTIONS(2982), 2, + sym_list_marker_upper_roman_parens, + [14615] = 1, + ACTIONS(1668), 2, sym__block_close, - sym__block_quote_continuation, - [38550] = 2, - ACTIONS(5030), 1, + sym_list_marker_upper_roman_parens, + [14620] = 2, + ACTIONS(1785), 1, anon_sym_PIPE, - STATE(1740), 1, + STATE(819), 1, aux_sym_table_separator_repeat1, - [38557] = 1, - ACTIONS(4783), 2, - sym__block_close, - sym_list_marker_upper_alpha_period, - [38562] = 1, - ACTIONS(3030), 2, - sym__block_close, - sym__block_quote_continuation, - [38567] = 2, - ACTIONS(5026), 1, + [14627] = 2, + ACTIONS(1777), 1, sym_table_cell_alignment, - ACTIONS(5032), 1, + ACTIONS(1787), 1, sym__newline, - [38574] = 1, - ACTIONS(4747), 2, - sym__block_close, - sym_list_marker_upper_alpha_period, - [38579] = 1, - ACTIONS(3046), 2, + [14634] = 1, + ACTIONS(1660), 2, sym__block_close, - sym__block_quote_continuation, - [38584] = 2, - ACTIONS(5011), 1, - anon_sym_PERCENT, - STATE(2073), 1, - sym__comment_with_newline, - [38591] = 2, - ACTIONS(5026), 1, - sym_table_cell_alignment, - ACTIONS(5034), 1, - sym__newline, - [38598] = 1, - ACTIONS(5036), 2, - sym__eof_or_newline, - sym__close_paragraph, - [38603] = 2, - ACTIONS(5011), 1, - anon_sym_PERCENT, - STATE(2050), 1, - sym__comment_with_newline, - [38610] = 2, - ACTIONS(5011), 1, - anon_sym_PERCENT, - STATE(2027), 1, - sym__comment_with_newline, - [38617] = 2, - ACTIONS(5038), 1, + sym_list_marker_lower_roman_parens, + [14639] = 2, + ACTIONS(1789), 1, anon_sym_PIPE, - STATE(1769), 1, + STATE(698), 1, aux_sym_table_row_repeat1, - [38624] = 1, - ACTIONS(5040), 2, - sym__newline, - anon_sym_NULL, - [38629] = 1, - ACTIONS(4747), 2, - sym__block_close, - sym_list_marker_lower_alpha_paren, - [38634] = 2, - ACTIONS(5011), 1, - anon_sym_PERCENT, - STATE(2004), 1, - sym__comment_with_newline, - [38641] = 1, - ACTIONS(3080), 2, - sym__block_close, - sym__block_quote_continuation, - [38646] = 1, - ACTIONS(4783), 2, + [14646] = 1, + ACTIONS(1668), 2, sym__block_close, - sym_list_marker_lower_roman_paren, - [38651] = 2, - ACTIONS(5011), 1, - anon_sym_PERCENT, - STATE(1981), 1, - sym__comment_with_newline, - [38658] = 2, - ACTIONS(5042), 1, + sym_list_marker_lower_roman_parens, + [14651] = 2, + ACTIONS(1791), 1, anon_sym_PIPE, - STATE(1824), 1, - aux_sym_table_row_repeat1, - [38665] = 2, - ACTIONS(5011), 1, - anon_sym_PERCENT, - STATE(1963), 1, - sym__comment_with_newline, - [38672] = 2, - ACTIONS(5011), 1, - anon_sym_PERCENT, - STATE(2035), 1, - sym__comment_with_newline, - [38679] = 2, - ACTIONS(5011), 1, - anon_sym_PERCENT, - STATE(2091), 1, - sym__comment_with_newline, - [38686] = 1, - ACTIONS(3050), 2, - sym__block_close, - sym__block_quote_continuation, - [38691] = 2, - ACTIONS(5044), 1, + STATE(701), 1, + aux_sym_table_separator_repeat1, + [14658] = 2, + ACTIONS(1789), 1, anon_sym_PIPE, - STATE(1824), 1, + STATE(823), 1, aux_sym_table_row_repeat1, - [38698] = 2, - ACTIONS(5046), 1, + [14665] = 2, + ACTIONS(1791), 1, anon_sym_PIPE, - STATE(1740), 1, + STATE(819), 1, aux_sym_table_separator_repeat1, - [38705] = 2, - ACTIONS(5048), 1, - anon_sym_PIPE, - STATE(1774), 1, - aux_sym_table_row_repeat1, - [38712] = 2, - ACTIONS(5050), 1, + [14672] = 2, + ACTIONS(1777), 1, + sym_table_cell_alignment, + ACTIONS(1793), 1, + sym__newline, + [14679] = 2, + ACTIONS(1795), 1, anon_sym_PIPE, - STATE(1775), 1, + STATE(819), 1, aux_sym_table_separator_repeat1, - [38719] = 2, - ACTIONS(5052), 1, - anon_sym_CARET, - ACTIONS(5054), 1, - anon_sym_CARET_RBRACE, - [38726] = 2, - ACTIONS(5056), 1, - anon_sym_TILDE, - ACTIONS(5058), 1, - anon_sym_TILDE_RBRACE, - [38733] = 2, - ACTIONS(5048), 1, + [14686] = 2, + ACTIONS(1777), 1, + sym_table_cell_alignment, + ACTIONS(1797), 1, + sym__newline, + [14693] = 1, + ACTIONS(1660), 2, + sym__block_close, + sym_list_marker_upper_alpha_parens, + [14698] = 2, + ACTIONS(1799), 1, + anon_sym_PIPE, + STATE(823), 1, + aux_sym_table_row_repeat1, + [14705] = 2, + ACTIONS(1801), 1, anon_sym_PIPE, - STATE(1824), 1, + STATE(707), 1, aux_sym_table_row_repeat1, - [38740] = 2, - ACTIONS(5050), 1, + [14712] = 2, + ACTIONS(1803), 1, anon_sym_PIPE, - STATE(1740), 1, + STATE(708), 1, aux_sym_table_separator_repeat1, - [38747] = 1, - ACTIONS(3708), 2, + [14719] = 2, + ACTIONS(1805), 1, + sym__whitespace1, + ACTIONS(1807), 1, + sym__newline, + [14726] = 2, + ACTIONS(1809), 1, + anon_sym_PIPE, + STATE(823), 1, + aux_sym_table_row_repeat1, + [14733] = 2, + ACTIONS(1811), 1, + sym__eof_or_newline, + STATE(626), 1, + sym__one_or_two_newlines, + [14740] = 1, + ACTIONS(1813), 2, + sym__eof_or_newline, + sym__close_paragraph, + [14745] = 1, + ACTIONS(1668), 2, sym__block_close, - sym__heading1_continuation, - [38752] = 2, - ACTIONS(5011), 1, - anon_sym_PERCENT, - STATE(2147), 1, - sym__comment_with_newline, - [38759] = 1, - ACTIONS(2990), 2, + sym_list_marker_upper_alpha_parens, + [14750] = 1, + ACTIONS(1660), 2, sym__block_close, - sym__block_quote_continuation, - [38764] = 1, - ACTIONS(4747), 2, + sym_list_marker_lower_alpha_parens, + [14755] = 1, + ACTIONS(1668), 2, + sym__block_close, + sym_list_marker_lower_alpha_parens, + [14760] = 1, + ACTIONS(1660), 2, + sym__block_close, + sym_list_marker_decimal_parens, + [14765] = 1, + ACTIONS(1668), 2, + sym__block_close, + sym_list_marker_decimal_parens, + [14770] = 1, + ACTIONS(1660), 2, sym__block_close, sym_list_marker_upper_roman_paren, - [38769] = 2, - ACTIONS(5026), 1, - sym_table_cell_alignment, - ACTIONS(5060), 1, - sym__newline, - [38776] = 1, - ACTIONS(2994), 2, + [14775] = 1, + ACTIONS(1668), 2, sym__block_close, - sym__block_quote_continuation, - [38781] = 2, - ACTIONS(5062), 1, - anon_sym_PIPE, - STATE(1780), 1, - aux_sym_table_row_repeat1, - [38788] = 2, - ACTIONS(5064), 1, - anon_sym_PIPE, - STATE(1781), 1, - aux_sym_table_separator_repeat1, - [38795] = 1, - ACTIONS(3022), 2, + sym_list_marker_upper_roman_paren, + [14780] = 1, + ACTIONS(1660), 2, sym__block_close, - sym__block_quote_continuation, - [38800] = 1, - ACTIONS(2974), 2, + sym_list_marker_lower_roman_paren, + [14785] = 1, + ACTIONS(1668), 2, sym__block_close, - sym__block_quote_continuation, - [38805] = 2, - ACTIONS(5066), 1, - sym_language, - ACTIONS(5068), 1, - sym__newline, - [38812] = 1, - ACTIONS(3034), 2, + sym_list_marker_lower_roman_paren, + [14790] = 1, + ACTIONS(1660), 2, sym__block_close, - sym__block_quote_continuation, - [38817] = 1, - ACTIONS(5070), 2, - sym__newline, - anon_sym_NULL, - [38822] = 2, - ACTIONS(5072), 1, - anon_sym_PIPE, - STATE(1824), 1, - aux_sym_table_row_repeat1, - [38829] = 1, - ACTIONS(3038), 2, + sym_list_marker_upper_alpha_paren, + [14795] = 1, + ACTIONS(1815), 2, sym__block_close, - sym__block_quote_continuation, - [38834] = 2, - ACTIONS(5074), 1, - anon_sym_PIPE, - STATE(1740), 1, - aux_sym_table_separator_repeat1, - [38841] = 2, - ACTIONS(5076), 1, - anon_sym_PIPE, - STATE(1795), 1, - aux_sym_table_row_repeat1, - [38848] = 1, - ACTIONS(4747), 2, + sym_list_marker_lower_alpha_paren, + [14800] = 1, + ACTIONS(1660), 2, sym__block_close, - sym_list_marker_decimal_period, - [38853] = 1, - ACTIONS(3042), 2, + sym_list_marker_lower_alpha_paren, + [14805] = 1, + ACTIONS(1668), 2, sym__block_close, - sym__block_quote_continuation, - [38858] = 2, - ACTIONS(5078), 1, + sym_list_marker_lower_alpha_paren, + [14810] = 1, + ACTIONS(1660), 2, + sym__block_close, + sym_list_marker_decimal_paren, + [14815] = 1, + ACTIONS(1668), 2, + sym__block_close, + sym_list_marker_decimal_paren, + [14820] = 1, + ACTIONS(1660), 2, + sym__block_close, + sym_list_marker_upper_roman_period, + [14825] = 1, + ACTIONS(1668), 2, + sym__block_close, + sym_list_marker_upper_roman_period, + [14830] = 1, + ACTIONS(1660), 2, + sym__block_close, + sym_list_marker_lower_roman_period, + [14835] = 1, + ACTIONS(1668), 2, + sym__block_close, + sym_list_marker_lower_roman_period, + [14840] = 1, + ACTIONS(1660), 2, + sym__block_close, + sym_list_marker_upper_alpha_period, + [14845] = 2, + ACTIONS(1817), 1, anon_sym_PIPE, - STATE(1797), 1, + STATE(819), 1, aux_sym_table_separator_repeat1, - [38865] = 2, - ACTIONS(5026), 1, - sym_table_cell_alignment, - ACTIONS(5080), 1, - sym__newline, - [38872] = 2, - ACTIONS(5011), 1, - anon_sym_PERCENT, - STATE(2001), 1, - sym__comment_with_newline, - [38879] = 2, - ACTIONS(5076), 1, + [14852] = 1, + ACTIONS(1668), 2, + sym__block_close, + sym_list_marker_upper_alpha_period, + [14857] = 2, + ACTIONS(1819), 1, anon_sym_PIPE, - STATE(1824), 1, + STATE(717), 1, aux_sym_table_row_repeat1, - [38886] = 2, - ACTIONS(5026), 1, - sym_table_cell_alignment, - ACTIONS(5082), 1, - sym__newline, - [38893] = 2, - ACTIONS(5078), 1, + [14864] = 2, + ACTIONS(1821), 1, anon_sym_PIPE, - STATE(1740), 1, + STATE(740), 1, aux_sym_table_separator_repeat1, - [38900] = 1, - ACTIONS(4783), 2, + [14871] = 2, + ACTIONS(1819), 1, + anon_sym_PIPE, + STATE(823), 1, + aux_sym_table_row_repeat1, + [14878] = 1, + ACTIONS(1660), 2, sym__block_close, sym_list_marker_lower_alpha_period, - [38905] = 1, - ACTIONS(3708), 2, - sym__block_close, - sym__heading2_continuation, - [38910] = 2, - ACTIONS(5011), 1, - anon_sym_PERCENT, - STATE(2234), 1, - sym__comment_with_newline, - [38917] = 1, - ACTIONS(3104), 2, - sym__block_close, - sym__block_quote_continuation, - [38922] = 2, - ACTIONS(5084), 1, + [14883] = 2, + ACTIONS(1821), 1, anon_sym_PIPE, - STATE(1804), 1, - aux_sym_table_row_repeat1, - [38929] = 2, - ACTIONS(5026), 1, + STATE(819), 1, + aux_sym_table_separator_repeat1, + [14890] = 2, + ACTIONS(1777), 1, sym_table_cell_alignment, - ACTIONS(5086), 1, + ACTIONS(1823), 1, sym__newline, - [38936] = 1, - ACTIONS(3054), 2, + [14897] = 1, + ACTIONS(1825), 2, + sym__eof_or_newline, + sym__close_paragraph, + [14902] = 1, + ACTIONS(1827), 2, sym__block_close, - sym__block_quote_continuation, - [38941] = 2, - ACTIONS(5088), 1, + sym_list_marker_lower_alpha_parens, + [14907] = 2, + ACTIONS(1829), 1, + sym_language, + ACTIONS(1831), 1, + sym__newline, + [14914] = 2, + ACTIONS(1795), 1, anon_sym_PIPE, - STATE(1806), 1, + STATE(825), 1, aux_sym_table_separator_repeat1, - [38948] = 1, - ACTIONS(4783), 2, - sym__block_close, - sym_list_marker_upper_roman_paren, - [38953] = 1, - ACTIONS(4783), 2, - sym__block_close, - sym_list_marker_lower_roman_period, - [38958] = 1, - ACTIONS(4747), 2, - sym__block_close, - sym_list_marker_lower_alpha_period, - [38963] = 2, - ACTIONS(5090), 1, + [14921] = 2, + ACTIONS(1799), 1, + anon_sym_PIPE, + STATE(826), 1, + aux_sym_table_row_repeat1, + [14928] = 1, + ACTIONS(1718), 2, + sym__eof_or_newline, + sym__newline_inline, + [14933] = 2, + ACTIONS(1833), 1, sym__id, - STATE(2246), 1, + STATE(1023), 1, sym_class_name, - [38970] = 2, - ACTIONS(5092), 1, + [14940] = 2, + ACTIONS(1835), 1, anon_sym_PIPE, - STATE(1751), 1, - aux_sym_table_separator_repeat1, - [38977] = 1, - ACTIONS(4747), 2, - sym__block_close, - sym_list_marker_decimal_parens, - [38982] = 1, - ACTIONS(5094), 2, + STATE(744), 1, + aux_sym_table_row_repeat1, + [14947] = 1, + ACTIONS(1837), 2, + sym__eof_or_newline, + sym__close_paragraph, + [14952] = 2, + ACTIONS(1777), 1, + sym_table_cell_alignment, + ACTIONS(1839), 1, + sym__newline, + [14959] = 1, + ACTIONS(1841), 2, sym__eof_or_newline, sym__close_paragraph, - [38987] = 1, - ACTIONS(3014), 2, + [14964] = 1, + ACTIONS(1843), 2, + sym__eof_or_newline, + sym__close_paragraph, + [14969] = 1, + ACTIONS(1845), 2, sym__block_close, - sym__block_quote_continuation, - [38992] = 2, - ACTIONS(5096), 1, - anon_sym_CARET, - ACTIONS(5098), 1, - anon_sym_CARET_RBRACE, - [38999] = 2, - ACTIONS(5100), 1, - anon_sym_PIPE, - STATE(1824), 1, - aux_sym_table_row_repeat1, - [39006] = 1, - ACTIONS(4783), 2, + sym_list_marker_decimal_period, + [14974] = 1, + ACTIONS(1736), 2, sym__block_close, - sym_list_marker_decimal_parens, - [39011] = 2, - ACTIONS(5103), 1, + sym__heading_continuation, + [14979] = 2, + ACTIONS(1847), 1, anon_sym_PIPE, - STATE(1824), 1, + STATE(823), 1, aux_sym_table_row_repeat1, - [39018] = 1, - ACTIONS(3058), 2, - sym__block_close, - sym__block_quote_continuation, - [39023] = 2, - ACTIONS(5105), 1, + [14986] = 2, + ACTIONS(1849), 1, anon_sym_PIPE, - STATE(1740), 1, + STATE(819), 1, aux_sym_table_separator_repeat1, - [39030] = 2, - ACTIONS(5107), 1, - anon_sym_TILDE, - ACTIONS(5109), 1, - anon_sym_TILDE_RBRACE, - [39037] = 2, - ACTIONS(5111), 1, - anon_sym_CARET, - ACTIONS(5113), 1, - anon_sym_CARET_RBRACE, - [39044] = 2, - ACTIONS(5115), 1, + [14993] = 2, + ACTIONS(1851), 1, anon_sym_PIPE, - STATE(1826), 1, + STATE(762), 1, aux_sym_table_row_repeat1, - [39051] = 2, - ACTIONS(5117), 1, + [15000] = 2, + ACTIONS(1853), 1, anon_sym_PIPE, - STATE(1828), 1, + STATE(763), 1, aux_sym_table_separator_repeat1, - [39058] = 2, - ACTIONS(5115), 1, + [15007] = 2, + ACTIONS(1777), 1, + sym_table_cell_alignment, + ACTIONS(1855), 1, + sym__newline, + [15014] = 1, + ACTIONS(1660), 2, + sym__block_close, + sym_list_marker_decimal_period, + [15019] = 2, + ACTIONS(1851), 1, anon_sym_PIPE, - STATE(1824), 1, + STATE(823), 1, aux_sym_table_row_repeat1, - [39065] = 2, - ACTIONS(5117), 1, + [15026] = 2, + ACTIONS(1853), 1, anon_sym_PIPE, - STATE(1740), 1, + STATE(819), 1, aux_sym_table_separator_repeat1, - [39072] = 1, - ACTIONS(4747), 2, - sym__block_close, - sym_list_marker_lower_alpha_parens, - [39077] = 1, - ACTIONS(5119), 2, - sym__eof_or_newline, - sym__close_paragraph, - [39082] = 2, - ACTIONS(5011), 1, - anon_sym_PERCENT, - STATE(2241), 1, - sym__comment_with_newline, - [39089] = 1, - ACTIONS(4783), 2, - sym__block_close, - sym_list_marker_lower_alpha_parens, - [39094] = 2, - ACTIONS(5121), 1, + [15033] = 2, + ACTIONS(1037), 1, + aux_sym__line_token1, + STATE(685), 1, + sym__line, + [15040] = 2, + ACTIONS(1857), 1, anon_sym_PIPE, - STATE(1833), 1, + STATE(768), 1, aux_sym_table_row_repeat1, - [39101] = 2, - ACTIONS(5123), 1, + [15047] = 2, + ACTIONS(1859), 1, anon_sym_PIPE, - STATE(1834), 1, + STATE(769), 1, aux_sym_table_separator_repeat1, - [39108] = 1, - ACTIONS(4747), 2, - sym__block_close, - sym_list_marker_upper_alpha_parens, - [39113] = 1, - ACTIONS(5125), 2, - sym__block_close, - sym_list_marker_decimal_period, - [39118] = 1, - ACTIONS(5127), 2, - sym__newline, - anon_sym_NULL, - [39123] = 1, - ACTIONS(5129), 2, - sym__newline, - anon_sym_NULL, - [39128] = 1, - ACTIONS(5131), 2, + [15054] = 2, + ACTIONS(1861), 1, + sym__eof_or_newline, + STATE(785), 1, + sym__one_or_two_newlines, + [15061] = 1, + ACTIONS(1863), 2, + sym__eof_or_newline, + sym__close_paragraph, + [15066] = 1, + ACTIONS(1865), 2, sym__block_close, sym_list_marker_lower_alpha_period, - [39133] = 1, - ACTIONS(5133), 2, + [15071] = 1, + ACTIONS(1867), 2, sym__block_close, sym_list_marker_upper_alpha_period, - [39138] = 1, - ACTIONS(5135), 2, + [15076] = 1, + ACTIONS(1869), 2, sym__block_close, sym_list_marker_lower_roman_period, - [39143] = 1, - ACTIONS(5137), 2, + [15081] = 1, + ACTIONS(1668), 2, sym__block_close, - sym_list_marker_upper_roman_period, - [39148] = 1, - ACTIONS(2716), 2, + sym_list_marker_decimal_period, + [15086] = 1, + ACTIONS(1871), 2, sym__block_close, - sym__block_quote_continuation, - [39153] = 1, - ACTIONS(5139), 2, + sym_list_marker_upper_roman_period, + [15091] = 1, + ACTIONS(1873), 2, sym__block_close, sym_list_marker_decimal_paren, - [39158] = 1, - ACTIONS(5141), 2, + [15096] = 1, + ACTIONS(763), 2, sym__block_close, - sym_list_marker_lower_alpha_paren, - [39163] = 1, - ACTIONS(5143), 2, + sym__block_quote_continuation, + [15101] = 1, + ACTIONS(1875), 2, sym__block_close, sym_list_marker_upper_alpha_paren, - [39168] = 1, - ACTIONS(5145), 2, + [15106] = 1, + ACTIONS(1877), 2, sym__block_close, sym_list_marker_lower_roman_paren, - [39173] = 2, - ACTIONS(5147), 1, - anon_sym_CARET, - ACTIONS(5149), 1, - anon_sym_CARET_RBRACE, - [39180] = 2, - ACTIONS(5151), 1, - anon_sym_TILDE, - ACTIONS(5153), 1, - anon_sym_TILDE_RBRACE, - [39187] = 1, - ACTIONS(5155), 2, - sym__block_close, - sym_list_marker_upper_roman_paren, - [39192] = 2, - ACTIONS(5157), 1, - anon_sym_PIPE, - STATE(1824), 1, - aux_sym_table_row_repeat1, - [39199] = 2, - ACTIONS(5159), 1, - anon_sym_PIPE, - STATE(1740), 1, - aux_sym_table_separator_repeat1, - [39206] = 1, - ACTIONS(5161), 2, - sym__eof_or_newline, - sym__close_paragraph, - [39211] = 1, - ACTIONS(3070), 2, + [15111] = 1, + ACTIONS(687), 2, sym__block_close, sym__block_quote_continuation, - [39216] = 2, - ACTIONS(5163), 1, - anon_sym_PIPE, - STATE(1857), 1, - aux_sym_table_row_repeat1, - [39223] = 2, - ACTIONS(5026), 1, - sym_table_cell_alignment, - ACTIONS(5165), 1, - sym__newline, - [39230] = 2, - ACTIONS(5167), 1, - anon_sym_PIPE, - STATE(1858), 1, - aux_sym_table_separator_repeat1, - [39237] = 2, - ACTIONS(5163), 1, - anon_sym_PIPE, - STATE(1824), 1, - aux_sym_table_row_repeat1, - [39244] = 2, - ACTIONS(5167), 1, - anon_sym_PIPE, - STATE(1740), 1, - aux_sym_table_separator_repeat1, - [39251] = 1, - ACTIONS(3708), 2, + [15116] = 1, + ACTIONS(695), 2, sym__block_close, - sym__heading6_continuation, - [39256] = 1, - ACTIONS(4783), 2, + sym__block_quote_continuation, + [15121] = 1, + ACTIONS(707), 2, sym__block_close, - sym_list_marker_upper_alpha_parens, - [39261] = 1, - ACTIONS(4747), 2, + sym__block_quote_continuation, + [15126] = 1, + ACTIONS(719), 2, sym__block_close, - sym_list_marker_upper_roman_period, - [39266] = 2, - ACTIONS(5169), 1, - anon_sym_PIPE, - STATE(1916), 1, - aux_sym_table_row_repeat1, - [39273] = 1, - ACTIONS(5171), 2, + sym__block_quote_continuation, + [15131] = 1, + ACTIONS(673), 2, sym__block_close, - sym_list_marker_lower_alpha_parens, - [39278] = 1, - ACTIONS(5173), 2, + sym__block_quote_continuation, + [15136] = 1, + ACTIONS(671), 2, sym__block_close, - sym_list_marker_upper_alpha_parens, - [39283] = 1, - ACTIONS(4747), 2, + sym__block_quote_continuation, + [15141] = 1, + ACTIONS(735), 2, sym__block_close, - sym_list_marker_upper_alpha_paren, - [39288] = 1, - ACTIONS(5175), 2, + sym__block_quote_continuation, + [15146] = 1, + ACTIONS(743), 2, sym__block_close, - sym_list_marker_lower_roman_parens, - [39293] = 1, - ACTIONS(4747), 2, + sym__block_quote_continuation, + [15151] = 1, + ACTIONS(751), 2, sym__block_close, - sym_list_marker_lower_roman_parens, - [39298] = 1, - ACTIONS(3086), 2, + sym__block_quote_continuation, + [15156] = 1, + ACTIONS(537), 2, sym__block_close, sym__block_quote_continuation, - [39303] = 1, - ACTIONS(3098), 2, + [15161] = 1, + ACTIONS(1879), 2, + sym__block_close, + sym_list_marker_decimal_parens, + [15166] = 1, + ACTIONS(1881), 2, + sym__block_close, + sym_list_marker_definition, + [15171] = 1, + ACTIONS(771), 2, sym__block_close, sym__block_quote_continuation, - [39308] = 2, - ACTIONS(5177), 1, + [15176] = 2, + ACTIONS(1883), 1, anon_sym_PIPE, - STATE(1864), 1, + STATE(823), 1, aux_sym_table_row_repeat1, - [39315] = 2, - ACTIONS(5026), 1, - sym_table_cell_alignment, - ACTIONS(5179), 1, - sym__newline, - [39322] = 2, - ACTIONS(5181), 1, - sym__id, - STATE(1380), 1, - sym_class_name, - [39329] = 2, - ACTIONS(5183), 1, + [15183] = 2, + ACTIONS(1885), 1, anon_sym_PIPE, - STATE(1865), 1, + STATE(819), 1, aux_sym_table_separator_repeat1, - [39336] = 1, - ACTIONS(4783), 2, + [15190] = 1, + ACTIONS(713), 2, sym__block_close, - sym_list_marker_lower_roman_parens, - [39341] = 1, - ACTIONS(5185), 2, + sym__block_quote_continuation, + [15195] = 1, + ACTIONS(783), 2, sym__block_close, - sym_list_marker_upper_roman_parens, - [39346] = 1, - ACTIONS(4797), 2, - sym_frontmatter_marker, - aux_sym__line_token1, - [39351] = 1, - ACTIONS(5187), 2, + sym__block_quote_continuation, + [15200] = 1, + ACTIONS(847), 2, sym__block_close, - sym_list_marker_decimal_parens, - [39356] = 2, - ACTIONS(5189), 1, + sym__block_quote_continuation, + [15205] = 2, + ACTIONS(1777), 1, + sym_table_cell_alignment, + ACTIONS(1887), 1, + sym__newline, + [15212] = 1, + ACTIONS(795), 2, + sym__block_close, + sym__block_quote_continuation, + [15217] = 2, + ACTIONS(1889), 1, + anon_sym_PIPE, + STATE(797), 1, + aux_sym_table_row_repeat1, + [15224] = 1, + ACTIONS(667), 2, + sym__block_close, + sym__block_quote_continuation, + [15229] = 2, + ACTIONS(1891), 1, anon_sym_PIPE, - STATE(1904), 1, + STATE(798), 1, aux_sym_table_separator_repeat1, - [39363] = 1, - ACTIONS(3112), 2, + [15236] = 1, + ACTIONS(837), 2, + sym__block_close, + sym__block_quote_continuation, + [15241] = 2, + ACTIONS(1889), 1, + anon_sym_PIPE, + STATE(823), 1, + aux_sym_table_row_repeat1, + [15248] = 1, + ACTIONS(527), 2, sym__block_close, sym__block_quote_continuation, - [39368] = 1, - ACTIONS(4783), 2, + [15253] = 1, + ACTIONS(811), 2, sym__block_close, - sym_list_marker_upper_roman_parens, - [39373] = 2, - ACTIONS(5026), 1, + sym__block_quote_continuation, + [15258] = 2, + ACTIONS(1891), 1, + anon_sym_PIPE, + STATE(819), 1, + aux_sym_table_separator_repeat1, + [15265] = 2, + ACTIONS(1777), 1, sym_table_cell_alignment, - ACTIONS(5191), 1, + ACTIONS(1893), 1, sym__newline, - [39380] = 1, - ACTIONS(3130), 2, + [15272] = 1, + ACTIONS(805), 2, sym__block_close, sym__block_quote_continuation, - [39385] = 2, - ACTIONS(5019), 1, + [15277] = 2, + ACTIONS(1775), 1, sym__id, - STATE(2329), 1, + STATE(889), 1, sym_reference_label, - [39392] = 1, - ACTIONS(5193), 2, + [15284] = 1, + ACTIONS(801), 2, sym__block_close, - sym_list_marker_definition, - [39397] = 1, - ACTIONS(2752), 2, + sym__block_quote_continuation, + [15289] = 2, + ACTIONS(1895), 1, + anon_sym_PIPE, + STATE(808), 1, + aux_sym_table_row_repeat1, + [15296] = 2, + ACTIONS(1897), 1, + anon_sym_PIPE, + STATE(811), 1, + aux_sym_table_separator_repeat1, + [15303] = 2, + ACTIONS(1777), 1, + sym_table_cell_alignment, + ACTIONS(1899), 1, + sym__newline, + [15310] = 2, + ACTIONS(1901), 1, + anon_sym_PIPE, + STATE(819), 1, + aux_sym_table_separator_repeat1, + [15317] = 2, + ACTIONS(1904), 1, + sym__id, + STATE(412), 1, + sym_class_name, + [15324] = 2, + ACTIONS(1777), 1, + sym_table_cell_alignment, + ACTIONS(1906), 1, + sym__newline, + [15331] = 1, + ACTIONS(797), 2, sym__block_close, sym__block_quote_continuation, - [39402] = 1, - ACTIONS(4747), 2, + [15336] = 2, + ACTIONS(1908), 1, + anon_sym_PIPE, + STATE(823), 1, + aux_sym_table_row_repeat1, + [15343] = 1, + ACTIONS(1668), 2, sym__block_close, - sym_list_marker_upper_roman_parens, - [39407] = 1, - ACTIONS(3144), 2, + sym_list_marker_lower_alpha_period, + [15348] = 2, + ACTIONS(1911), 1, + anon_sym_PIPE, + STATE(819), 1, + aux_sym_table_separator_repeat1, + [15355] = 2, + ACTIONS(1913), 1, + anon_sym_PIPE, + STATE(823), 1, + aux_sym_table_row_repeat1, + [15362] = 1, + ACTIONS(1666), 2, + sym_frontmatter_marker, + aux_sym__line_token1, + [15367] = 2, + ACTIONS(1915), 1, + sym__eof_or_newline, + STATE(204), 1, + sym__one_or_two_newlines, + [15374] = 1, + ACTIONS(1917), 2, + sym__eof_or_newline, + sym__close_paragraph, + [15379] = 1, + ACTIONS(789), 2, sym__block_close, sym__block_quote_continuation, - [39412] = 1, - ACTIONS(2962), 2, + [15384] = 1, + ACTIONS(785), 2, sym__block_close, sym__block_quote_continuation, - [39417] = 1, - ACTIONS(2970), 2, + [15389] = 1, + ACTIONS(777), 2, sym__block_close, sym__block_quote_continuation, - [39422] = 1, - ACTIONS(2986), 2, + [15394] = 1, + ACTIONS(773), 2, sym__block_close, sym__block_quote_continuation, - [39427] = 1, - ACTIONS(2998), 2, + [15399] = 1, + ACTIONS(765), 2, sym__block_close, sym__block_quote_continuation, - [39432] = 2, - ACTIONS(5026), 1, - sym_table_cell_alignment, - ACTIONS(5195), 1, - sym__newline, - [39439] = 1, - ACTIONS(3002), 2, + [15404] = 1, + ACTIONS(757), 2, sym__block_close, sym__block_quote_continuation, - [39444] = 1, - ACTIONS(3102), 2, + [15409] = 1, + ACTIONS(753), 2, sym__block_close, sym__block_quote_continuation, - [39449] = 1, - ACTIONS(3006), 2, + [15414] = 1, + ACTIONS(745), 2, sym__block_close, sym__block_quote_continuation, - [39454] = 1, - ACTIONS(3010), 2, + [15419] = 1, + ACTIONS(737), 2, sym__block_close, sym__block_quote_continuation, - [39459] = 2, - ACTIONS(5092), 1, - anon_sym_PIPE, - STATE(1740), 1, - aux_sym_table_separator_repeat1, - [39466] = 1, - ACTIONS(3016), 2, + [15424] = 1, + ACTIONS(729), 2, sym__block_close, sym__block_quote_continuation, - [39471] = 2, - ACTIONS(5197), 1, - anon_sym_CARET, - ACTIONS(5199), 1, - anon_sym_CARET_RBRACE, - [39478] = 2, - ACTIONS(5201), 1, - anon_sym_TILDE, - ACTIONS(5203), 1, - anon_sym_TILDE_RBRACE, - [39485] = 1, - ACTIONS(3126), 2, + [15429] = 1, + ACTIONS(725), 2, sym__block_close, sym__block_quote_continuation, - [39490] = 2, - ACTIONS(5205), 1, - anon_sym_TILDE, - ACTIONS(5207), 1, - anon_sym_TILDE_RBRACE, - [39497] = 2, - ACTIONS(5026), 1, - sym_table_cell_alignment, - ACTIONS(5209), 1, - sym__newline, - [39504] = 1, - ACTIONS(4783), 2, + [15434] = 1, + ACTIONS(721), 2, sym__block_close, - sym_list_marker_upper_roman_period, - [39509] = 2, - ACTIONS(3948), 1, - aux_sym__line_token1, - STATE(1629), 1, - sym__line, - [39516] = 1, - ACTIONS(3092), 2, + sym__block_quote_continuation, + [15439] = 1, + ACTIONS(709), 2, sym__block_close, sym__block_quote_continuation, - [39521] = 1, - ACTIONS(3138), 2, + [15444] = 1, + ACTIONS(697), 2, sym__block_close, sym__block_quote_continuation, - [39526] = 1, - ACTIONS(3142), 2, + [15449] = 1, + ACTIONS(689), 2, sym__block_close, sym__block_quote_continuation, - [39531] = 2, - ACTIONS(5038), 1, - anon_sym_PIPE, - STATE(1824), 1, - aux_sym_table_row_repeat1, - [39538] = 2, - ACTIONS(5211), 1, - anon_sym_LBRACE, - STATE(764), 1, - sym_comment, - [39545] = 1, - ACTIONS(3108), 2, + [15454] = 1, + ACTIONS(677), 2, sym__block_close, sym__block_quote_continuation, - [39550] = 1, - ACTIONS(4747), 2, + [15459] = 1, + ACTIONS(817), 2, sym__block_close, - sym_list_marker_decimal_paren, - [39555] = 1, - ACTIONS(3024), 2, + sym__block_quote_continuation, + [15464] = 1, + ACTIONS(831), 2, sym__block_close, sym__block_quote_continuation, - [39560] = 1, - ACTIONS(4732), 2, + [15469] = 1, + ACTIONS(835), 2, sym__block_close, - sym__heading6_continuation, - [39565] = 1, - ACTIONS(5213), 2, - sym__eof_or_newline, - sym__close_paragraph, - [39570] = 1, - ACTIONS(5215), 2, - sym__eof_or_newline, - sym__close_paragraph, - [39575] = 1, - ACTIONS(3088), 2, + sym__block_quote_continuation, + [15474] = 1, + ACTIONS(1341), 2, sym__block_close, sym__block_quote_continuation, - [39580] = 2, - ACTIONS(5217), 1, - anon_sym_TILDE, - ACTIONS(5219), 1, - anon_sym_TILDE_RBRACE, - [39587] = 2, - ACTIONS(5221), 1, - anon_sym_CARET, - ACTIONS(5223), 1, - anon_sym_CARET_RBRACE, - [39594] = 1, - ACTIONS(4747), 2, + [15479] = 1, + ACTIONS(1919), 2, sym__block_close, - sym_list_marker_lower_roman_period, - [39599] = 1, - ACTIONS(5225), 2, + sym_list_marker_upper_roman_paren, + [15484] = 2, + ACTIONS(1921), 1, + anon_sym_PIPE, + STATE(710), 1, + aux_sym_table_separator_repeat1, + [15491] = 1, + ACTIONS(1923), 2, + sym__block_close, + sym_list_marker_definition, + [15496] = 1, + ACTIONS(1925), 2, + sym__block_close, + sym_list_marker_upper_alpha_parens, + [15501] = 2, + ACTIONS(1927), 1, + sym__eof_or_newline, + STATE(228), 1, + sym__one_or_two_newlines, + [15508] = 2, + ACTIONS(1777), 1, + sym_table_cell_alignment, + ACTIONS(1929), 1, sym__newline, - anon_sym_NULL, - [39604] = 2, - ACTIONS(5227), 1, - anon_sym_CARET, - ACTIONS(5229), 1, - anon_sym_CARET_RBRACE, - [39611] = 2, - ACTIONS(5231), 1, - anon_sym_TILDE, - ACTIONS(5233), 1, - anon_sym_TILDE_RBRACE, - [39618] = 2, - ACTIONS(5026), 1, + [15515] = 2, + ACTIONS(1777), 1, sym_table_cell_alignment, - ACTIONS(5235), 1, + ACTIONS(1931), 1, sym__newline, - [39625] = 2, - ACTIONS(5237), 1, - anon_sym_TILDE, - ACTIONS(5239), 1, - anon_sym_TILDE_RBRACE, - [39632] = 2, - ACTIONS(5241), 1, - anon_sym_CARET, - ACTIONS(5243), 1, - anon_sym_CARET_RBRACE, - [39639] = 2, - ACTIONS(5090), 1, - sym__id, - STATE(1298), 1, - sym_class_name, - [39646] = 2, - ACTIONS(5245), 1, - anon_sym_CARET, - ACTIONS(5247), 1, - anon_sym_CARET_RBRACE, - [39653] = 1, - ACTIONS(3076), 2, - sym__block_close, - sym__block_quote_continuation, - [39658] = 2, - ACTIONS(5249), 1, - anon_sym_TILDE, - ACTIONS(5251), 1, - anon_sym_TILDE_RBRACE, - [39665] = 2, - ACTIONS(5253), 1, - anon_sym_CARET, - ACTIONS(5255), 1, - anon_sym_CARET_RBRACE, - [39672] = 2, - ACTIONS(5257), 1, - anon_sym_TILDE, - ACTIONS(5259), 1, - anon_sym_TILDE_RBRACE, - [39679] = 2, - ACTIONS(5261), 1, - anon_sym_LBRACE, - STATE(830), 1, - sym_comment, - [39686] = 1, - ACTIONS(3708), 2, - sym__block_close, - sym__heading5_continuation, - [39691] = 1, - ACTIONS(2966), 2, - sym__block_close, - sym__block_quote_continuation, - [39696] = 2, - ACTIONS(5026), 1, + [15522] = 2, + ACTIONS(1933), 1, + sym__eof_or_newline, + STATE(134), 1, + sym__one_or_two_newlines, + [15529] = 2, + ACTIONS(1777), 1, sym_table_cell_alignment, - ACTIONS(5263), 1, + ACTIONS(1935), 1, sym__newline, - [39703] = 2, - ACTIONS(5265), 1, - anon_sym_TILDE, - ACTIONS(5267), 1, - anon_sym_TILDE_RBRACE, - [39710] = 2, - ACTIONS(5269), 1, - anon_sym_CARET, - ACTIONS(5271), 1, - anon_sym_CARET_RBRACE, - [39717] = 2, - ACTIONS(79), 1, - sym__list_marker_task_begin, - STATE(39), 1, - sym_list_marker_task, - [39724] = 1, - ACTIONS(3064), 2, + [15536] = 1, + ACTIONS(1937), 2, sym__block_close, - sym__block_quote_continuation, - [39729] = 2, - ACTIONS(5273), 1, - anon_sym_CARET, - ACTIONS(5275), 1, - anon_sym_CARET_RBRACE, - [39736] = 2, - ACTIONS(5026), 1, + sym_list_marker_lower_roman_parens, + [15541] = 2, + ACTIONS(1777), 1, sym_table_cell_alignment, - ACTIONS(5277), 1, + ACTIONS(1939), 1, sym__newline, - [39743] = 1, - ACTIONS(4343), 2, - sym__block_close, - sym__block_quote_continuation, - [39748] = 2, - ACTIONS(5279), 1, - anon_sym_TILDE, - ACTIONS(5281), 1, - anon_sym_TILDE_RBRACE, - [39755] = 2, - ACTIONS(5283), 1, - anon_sym_CARET, - ACTIONS(5285), 1, - anon_sym_CARET_RBRACE, - [39762] = 2, - ACTIONS(5287), 1, - anon_sym_TILDE, - ACTIONS(5289), 1, - anon_sym_TILDE_RBRACE, - [39769] = 1, - ACTIONS(4956), 2, - sym__block_close, - sym__block_quote_continuation, - [39774] = 1, - ACTIONS(5291), 1, - anon_sym_RPAREN, - [39778] = 1, - ACTIONS(5293), 1, + [15548] = 1, + ACTIONS(1941), 2, sym__block_close, - [39782] = 1, - ACTIONS(5295), 1, - anon_sym_EQ_RBRACE, - [39786] = 1, - ACTIONS(5297), 1, - anon_sym_PLUS_RBRACE, - [39790] = 1, - ACTIONS(5299), 1, - anon_sym_DASH_RBRACE, - [39794] = 1, - ACTIONS(5301), 1, - anon_sym_RBRACK, - [39798] = 1, - ACTIONS(5303), 1, - sym__newline, - [39802] = 1, - ACTIONS(5305), 1, - anon_sym_RBRACK, - [39806] = 1, - ACTIONS(5307), 1, - anon_sym_RBRACE, - [39810] = 1, - ACTIONS(5309), 1, - sym__footnote_end, - [39814] = 1, - ACTIONS(5311), 1, - sym__verbatim_end, - [39818] = 1, - ACTIONS(5313), 1, - anon_sym_RBRACK2, - [39822] = 1, - ACTIONS(5315), 1, - anon_sym_RPAREN, - [39826] = 1, - ACTIONS(3989), 1, + sym_list_marker_upper_roman_parens, + [15553] = 1, + ACTIONS(1047), 1, sym__block_close, - [39830] = 1, - ACTIONS(5317), 1, - anon_sym_RBRACE, - [39834] = 1, - ACTIONS(5319), 1, - sym__newline, - [39838] = 1, - ACTIONS(5321), 1, + [15557] = 1, + ACTIONS(1943), 1, sym__newline, - [39842] = 1, - ACTIONS(5323), 1, - anon_sym_RPAREN, - [39846] = 1, - ACTIONS(5325), 1, - sym__verbatim_end, - [39850] = 1, - ACTIONS(5327), 1, - anon_sym_GT, - [39854] = 1, - ACTIONS(5329), 1, - anon_sym_EQ_RBRACE, - [39858] = 1, - ACTIONS(5331), 1, - anon_sym_PLUS_RBRACE, - [39862] = 1, - ACTIONS(5333), 1, - anon_sym_DASH_RBRACE, - [39866] = 1, - ACTIONS(5335), 1, - anon_sym_RBRACK, - [39870] = 1, - ACTIONS(5337), 1, - anon_sym_RBRACK2, - [39874] = 1, - ACTIONS(5339), 1, - anon_sym_RBRACK, - [39878] = 1, - ACTIONS(5341), 1, - anon_sym_RBRACE, - [39882] = 1, - ACTIONS(5343), 1, - sym__verbatim_content, - [39886] = 1, - ACTIONS(5345), 1, - sym__verbatim_end, - [39890] = 1, - ACTIONS(5347), 1, - anon_sym_RBRACK2, - [39894] = 1, - ACTIONS(5349), 1, - anon_sym_RPAREN, - [39898] = 1, - ACTIONS(5351), 1, + [15561] = 1, + ACTIONS(1945), 1, sym__whitespace, - [39902] = 1, - ACTIONS(5353), 1, - anon_sym_RBRACE, - [39906] = 1, - ACTIONS(5355), 1, - sym__newline, - [39910] = 1, - ACTIONS(5357), 1, - sym__verbatim_end, - [39914] = 1, - ACTIONS(5359), 1, - anon_sym_RBRACE, - [39918] = 1, - ACTIONS(5361), 1, - sym__newline, - [39922] = 1, - ACTIONS(5363), 1, - sym__verbatim_end, - [39926] = 1, - ACTIONS(5365), 1, - sym__verbatim_end, - [39930] = 1, - ACTIONS(5367), 1, - anon_sym_GT, - [39934] = 1, - ACTIONS(5369), 1, - anon_sym_EQ_RBRACE, - [39938] = 1, - ACTIONS(5371), 1, - anon_sym_PLUS_RBRACE, - [39942] = 1, - ACTIONS(5373), 1, - anon_sym_DASH_RBRACE, - [39946] = 1, - ACTIONS(5375), 1, - anon_sym_RBRACE, - [39950] = 1, - ACTIONS(5377), 1, + [15565] = 1, + ACTIONS(1947), 1, sym__footnote_end, - [39954] = 1, - ACTIONS(5379), 1, - anon_sym_RBRACK, - [39958] = 1, - ACTIONS(5381), 1, - anon_sym_RBRACE, - [39962] = 1, - ACTIONS(5383), 1, - sym__newline, - [39966] = 1, - ACTIONS(5385), 1, - sym__whitespace1, - [39970] = 1, - ACTIONS(5387), 1, - anon_sym_RBRACE, - [39974] = 1, - ACTIONS(5389), 1, - sym__newline, - [39978] = 1, - ACTIONS(5391), 1, - sym__verbatim_end, - [39982] = 1, - ACTIONS(5393), 1, - anon_sym_RBRACK2, - [39986] = 1, - ACTIONS(5395), 1, - anon_sym_RPAREN, - [39990] = 1, - ACTIONS(5397), 1, - anon_sym_RBRACE, - [39994] = 1, - ACTIONS(5399), 1, - anon_sym_RBRACE, - [39998] = 1, - ACTIONS(5401), 1, - sym__newline, - [40002] = 1, - ACTIONS(1478), 1, - sym_table_cell_alignment, - [40006] = 1, - ACTIONS(5403), 1, - anon_sym_PIPE, - [40010] = 1, - ACTIONS(5405), 1, - anon_sym_RBRACK, - [40014] = 1, - ACTIONS(5407), 1, - sym__verbatim_end, - [40018] = 1, - ACTIONS(5409), 1, - sym__block_close, - [40022] = 1, - ACTIONS(5411), 1, - anon_sym_GT, - [40026] = 1, - ACTIONS(5413), 1, - anon_sym_EQ_RBRACE, - [40030] = 1, - ACTIONS(5415), 1, - anon_sym_PLUS_RBRACE, - [40034] = 1, - ACTIONS(5417), 1, - anon_sym_DASH_RBRACE, - [40038] = 1, - ACTIONS(5419), 1, - anon_sym_RPAREN, - [40042] = 1, - ACTIONS(5421), 1, - anon_sym_RBRACK2, - [40046] = 1, - ACTIONS(5423), 1, - anon_sym_RBRACK, - [40050] = 1, - ACTIONS(5425), 1, - sym__verbatim_end, - [40054] = 1, - ACTIONS(5427), 1, - anon_sym_DASH_RBRACE, - [40058] = 1, - ACTIONS(5429), 1, - anon_sym_PLUS_RBRACE, - [40062] = 1, - ACTIONS(5431), 1, - anon_sym_RBRACE, - [40066] = 1, - ACTIONS(5433), 1, - anon_sym_EQ_RBRACE, - [40070] = 1, - ACTIONS(5435), 1, - sym__verbatim_end, - [40074] = 1, - ACTIONS(5437), 1, - anon_sym_RBRACK2, - [40078] = 1, - ACTIONS(5439), 1, - anon_sym_RPAREN, - [40082] = 1, - ACTIONS(5441), 1, - anon_sym_GT, - [40086] = 1, - ACTIONS(5443), 1, - anon_sym_RBRACE, - [40090] = 1, - ACTIONS(5445), 1, - sym__newline, - [40094] = 1, - ACTIONS(5447), 1, - anon_sym_RBRACE, - [40098] = 1, - ACTIONS(5449), 1, + [15569] = 1, + ACTIONS(1949), 1, + sym__whitespace, + [15573] = 1, + ACTIONS(1951), 1, sym__newline, - [40102] = 1, - ACTIONS(5451), 1, - sym__verbatim_end, - [40106] = 1, - ACTIONS(5453), 1, - sym__verbatim_end, - [40110] = 1, - ACTIONS(5455), 1, - sym__block_close, - [40114] = 1, - ACTIONS(5457), 1, - anon_sym_GT, - [40118] = 1, - ACTIONS(5459), 1, - anon_sym_EQ_RBRACE, - [40122] = 1, - ACTIONS(5461), 1, - anon_sym_PLUS_RBRACE, - [40126] = 1, - ACTIONS(5463), 1, - anon_sym_DASH_RBRACE, - [40130] = 1, - ACTIONS(5465), 1, - sym_language, - [40134] = 1, - ACTIONS(5467), 1, - sym__block_close, - [40138] = 1, - ACTIONS(5469), 1, - anon_sym_RBRACK, - [40142] = 1, - ACTIONS(5471), 1, - sym__block_close, - [40146] = 1, - ACTIONS(5473), 1, - sym__block_close, - [40150] = 1, - ACTIONS(5475), 1, + [15577] = 1, + ACTIONS(1953), 1, sym__newline, - [40154] = 1, - ACTIONS(5477), 1, - anon_sym_RBRACE, - [40158] = 1, - ACTIONS(5479), 1, - sym__block_close, - [40162] = 1, - ACTIONS(5481), 1, - sym__verbatim_end, - [40166] = 1, - ACTIONS(5483), 1, - anon_sym_RBRACK2, - [40170] = 1, - ACTIONS(5485), 1, - anon_sym_RBRACE, - [40174] = 1, - ACTIONS(5487), 1, + [15581] = 1, + ACTIONS(1955), 1, sym__block_close, - [40178] = 1, - ACTIONS(5489), 1, - anon_sym_RBRACE, - [40182] = 1, - ACTIONS(5491), 1, + [15585] = 1, + ACTIONS(1957), 1, sym__newline, - [40186] = 1, - ACTIONS(5493), 1, + [15589] = 1, + ACTIONS(1959), 1, sym__block_close, - [40190] = 1, - ACTIONS(5495), 1, - anon_sym_RBRACK, - [40194] = 1, - ACTIONS(5497), 1, - anon_sym_DASH_RBRACE, - [40198] = 1, - ACTIONS(5499), 1, - sym__verbatim_end, - [40202] = 1, - ACTIONS(5501), 1, + [15593] = 1, + ACTIONS(1961), 1, sym__block_close, - [40206] = 1, - ACTIONS(5503), 1, - anon_sym_GT, - [40210] = 1, - ACTIONS(5505), 1, - anon_sym_EQ_RBRACE, - [40214] = 1, - ACTIONS(5507), 1, - anon_sym_PLUS_RBRACE, - [40218] = 1, - ACTIONS(5509), 1, - anon_sym_DASH_RBRACE, - [40222] = 1, - ACTIONS(5511), 1, - anon_sym_PLUS_RBRACE, - [40226] = 1, - ACTIONS(5513), 1, - anon_sym_EQ_RBRACE, - [40230] = 1, - ACTIONS(5515), 1, - anon_sym_RBRACK, - [40234] = 1, - ACTIONS(5517), 1, - sym__newline, - [40238] = 1, - ACTIONS(5519), 1, - sym_frontmatter_marker, - [40242] = 1, - ACTIONS(5521), 1, - anon_sym_GT, - [40246] = 1, - ACTIONS(5523), 1, - anon_sym_RBRACE, - [40250] = 1, - ACTIONS(5525), 1, - sym__verbatim_end, - [40254] = 1, - ACTIONS(5527), 1, - sym__verbatim_end, - [40258] = 1, - ACTIONS(5529), 1, - anon_sym_RBRACK2, - [40262] = 1, - ACTIONS(5531), 1, - anon_sym_RPAREN, - [40266] = 1, - ACTIONS(5533), 1, - sym__newline, - [40270] = 1, - ACTIONS(5535), 1, - anon_sym_RBRACE, - [40274] = 1, - ACTIONS(5537), 1, - sym__whitespace1, - [40278] = 1, - ACTIONS(5539), 1, - anon_sym_DQUOTE, - [40282] = 1, - ACTIONS(5541), 1, + [15597] = 1, + ACTIONS(1963), 1, sym__newline, - [40286] = 1, - ACTIONS(5543), 1, - sym__newline, - [40290] = 1, - ACTIONS(5545), 1, - anon_sym_RBRACE, - [40294] = 1, - ACTIONS(5547), 1, + [15601] = 1, + ACTIONS(1965), 1, sym__newline, - [40298] = 1, - ACTIONS(5549), 1, - aux_sym_inline_link_destination_token1, - [40302] = 1, - ACTIONS(5551), 1, - anon_sym_RPAREN, - [40306] = 1, - ACTIONS(5553), 1, - sym__verbatim_end, - [40310] = 1, - ACTIONS(5555), 1, - anon_sym_RBRACK2, - [40314] = 1, - ACTIONS(5557), 1, - sym__verbatim_end, - [40318] = 1, - ACTIONS(5559), 1, - anon_sym_RBRACE, - [40322] = 1, - ACTIONS(2599), 1, - sym_table_cell_alignment, - [40326] = 1, - ACTIONS(5561), 1, - anon_sym_RBRACK, - [40330] = 1, - ACTIONS(5563), 1, - sym_frontmatter_marker, - [40334] = 1, - ACTIONS(5565), 1, - anon_sym_DASH_RBRACE, - [40338] = 1, - ACTIONS(4014), 1, - sym_list_marker_dash, - [40342] = 1, - ACTIONS(5567), 1, - anon_sym_PLUS_RBRACE, - [40346] = 1, - ACTIONS(4018), 1, - sym_list_marker_plus, - [40350] = 1, - ACTIONS(5569), 1, - anon_sym_EQ_RBRACE, - [40354] = 1, - ACTIONS(5571), 1, + [15605] = 1, + ACTIONS(1967), 1, sym__newline, - [40358] = 1, - ACTIONS(5573), 1, - anon_sym_GT, - [40362] = 1, - ACTIONS(5575), 1, - sym__verbatim_end, - [40366] = 1, - ACTIONS(5577), 1, - anon_sym_PIPE, - [40370] = 1, - ACTIONS(4016), 1, - sym_list_marker_star, - [40374] = 1, - ACTIONS(5579), 1, + [15609] = 1, + ACTIONS(1969), 1, sym__newline, - [40378] = 1, - ACTIONS(5581), 1, + [15613] = 1, + ACTIONS(1971), 1, sym__newline, - [40382] = 1, - ACTIONS(5583), 1, - sym__block_close, - [40386] = 1, - ACTIONS(5585), 1, + [15617] = 1, + ACTIONS(1973), 1, sym__newline, - [40390] = 1, - ACTIONS(5587), 1, + [15621] = 1, + ACTIONS(1975), 1, sym__newline, - [40394] = 1, - ACTIONS(5589), 1, + [15625] = 1, + ACTIONS(1977), 1, sym__newline, - [40398] = 1, - ACTIONS(5591), 1, + [15629] = 1, + ACTIONS(1979), 1, sym__newline, - [40402] = 1, - ACTIONS(5593), 1, - sym__block_close, - [40406] = 1, - ACTIONS(5595), 1, + [15633] = 1, + ACTIONS(1981), 1, sym__newline, - [40410] = 1, - ACTIONS(5597), 1, + [15637] = 1, + ACTIONS(1983), 1, sym__newline, - [40414] = 1, - ACTIONS(5599), 1, - aux_sym_inline_link_destination_token1, - [40418] = 1, - ACTIONS(5601), 1, - anon_sym_RBRACE, - [40422] = 1, - ACTIONS(5603), 1, + [15641] = 1, + ACTIONS(1985), 1, sym__newline, - [40426] = 1, - ACTIONS(5605), 1, + [15645] = 1, + ACTIONS(1987), 1, anon_sym_RBRACK_COLON, - [40430] = 1, - ACTIONS(5607), 1, + [15649] = 1, + ACTIONS(1989), 1, sym__newline, - [40434] = 1, - ACTIONS(5609), 1, + [15653] = 1, + ACTIONS(1991), 1, sym__newline, - [40438] = 1, - ACTIONS(5611), 1, - anon_sym_RBRACK, - [40442] = 1, - ACTIONS(5613), 1, - sym__verbatim_end, - [40446] = 1, - ACTIONS(5615), 1, - sym__whitespace1, - [40450] = 1, - ACTIONS(5617), 1, + [15657] = 1, + ACTIONS(1993), 1, + anon_sym_DQUOTE, + [15661] = 1, + ACTIONS(1995), 1, anon_sym_RBRACK_COLON, - [40454] = 1, - ACTIONS(5619), 1, - sym__verbatim_content, - [40458] = 1, - ACTIONS(5621), 1, - sym__block_close, - [40462] = 1, - ACTIONS(5623), 1, + [15665] = 1, + ACTIONS(1777), 1, + sym_table_cell_alignment, + [15669] = 1, + ACTIONS(1997), 1, + anon_sym_RBRACK, + [15673] = 1, + ACTIONS(1999), 1, + sym_link_destination, + [15677] = 1, + ACTIONS(2001), 1, sym__newline, - [40466] = 1, - ACTIONS(5625), 1, + [15681] = 1, + ACTIONS(2003), 1, + sym__block_close, + [15685] = 1, + ACTIONS(2005), 1, + anon_sym_RBRACK, + [15689] = 1, + ACTIONS(2007), 1, sym__block_close, - [40470] = 1, - ACTIONS(5627), 1, + [15693] = 1, + ACTIONS(2009), 1, sym__block_close, - [40474] = 1, - ACTIONS(5629), 1, + [15697] = 1, + ACTIONS(2011), 1, sym__newline, - [40478] = 1, - ACTIONS(5631), 1, + [15701] = 1, + ACTIONS(2013), 1, + sym_frontmatter_marker, + [15705] = 1, + ACTIONS(2015), 1, sym__newline, - [40482] = 1, - ACTIONS(5633), 1, + [15709] = 1, + ACTIONS(2017), 1, sym__newline, - [40486] = 1, - ACTIONS(5635), 1, - anon_sym_EQ, - [40490] = 1, - ACTIONS(5637), 1, - sym__footnote_end, - [40494] = 1, - ACTIONS(5639), 1, - anon_sym_RBRACK, - [40498] = 1, - ACTIONS(5641), 1, - sym__verbatim_content, - [40502] = 1, - ACTIONS(1410), 1, - sym_table_cell_alignment, - [40506] = 1, - ACTIONS(3985), 1, - sym__block_close, - [40510] = 1, - ACTIONS(5643), 1, - aux_sym_inline_link_destination_token1, - [40514] = 1, - ACTIONS(5645), 1, - anon_sym_GT, - [40518] = 1, - ACTIONS(5647), 1, - anon_sym_RPAREN, - [40522] = 1, - ACTIONS(5649), 1, - anon_sym_RBRACK, - [40526] = 1, - ACTIONS(5651), 1, + [15713] = 1, + ACTIONS(2019), 1, sym__newline, - [40530] = 1, - ACTIONS(5653), 1, + [15717] = 1, + ACTIONS(2021), 1, sym__newline, - [40534] = 1, - ACTIONS(5655), 1, - anon_sym_RBRACK2, - [40538] = 1, - ACTIONS(5657), 1, - sym__verbatim_end, - [40542] = 1, - ACTIONS(5659), 1, - anon_sym_RBRACE, - [40546] = 1, - ACTIONS(5661), 1, - sym__whitespace, - [40550] = 1, - ACTIONS(5663), 1, + [15721] = 1, + ACTIONS(2023), 1, + anon_sym_PIPE, + [15725] = 1, + ACTIONS(2025), 1, sym__newline, - [40554] = 1, - ACTIONS(5665), 1, + [15729] = 1, + ACTIONS(2027), 1, sym__newline, - [40558] = 1, - ACTIONS(5667), 1, - sym_language, - [40562] = 1, - ACTIONS(5669), 1, + [15733] = 1, + ACTIONS(2029), 1, aux_sym_value_token1, - [40566] = 1, - ACTIONS(5671), 1, - anon_sym_PLUS_RBRACE, - [40570] = 1, - ACTIONS(5673), 1, + [15737] = 1, + ACTIONS(2031), 1, sym__newline, - [40574] = 1, - ACTIONS(5675), 1, - sym_link_destination, - [40578] = 1, - ACTIONS(5677), 1, - anon_sym_EQ, - [40582] = 1, - ACTIONS(5679), 1, - anon_sym_RBRACK, - [40586] = 1, - ACTIONS(5681), 1, - anon_sym_DASH_RBRACE, - [40590] = 1, - ACTIONS(5683), 1, - anon_sym_PLUS_RBRACE, - [40594] = 1, - ACTIONS(5685), 1, - anon_sym_EQ_RBRACE, - [40598] = 1, - ACTIONS(5687), 1, - anon_sym_GT, - [40602] = 1, - ACTIONS(5689), 1, + [15741] = 1, + ACTIONS(2033), 1, sym__newline, - [40606] = 1, - ACTIONS(5691), 1, - sym__verbatim_content, - [40610] = 1, - ACTIONS(5693), 1, - sym__verbatim_end, - [40614] = 1, - ACTIONS(5695), 1, + [15745] = 1, + ACTIONS(2035), 1, + anon_sym_PIPE, + [15749] = 1, + ACTIONS(2037), 1, sym__newline, - [40618] = 1, - ACTIONS(5697), 1, - anon_sym_GT, - [40622] = 1, - ACTIONS(5699), 1, - sym__block_close, - [40626] = 1, - ACTIONS(5701), 1, - sym__block_close, - [40630] = 1, - ACTIONS(5703), 1, - sym__block_close, - [40634] = 1, - ACTIONS(5705), 1, - sym__block_close, - [40638] = 1, - ACTIONS(5707), 1, - sym__block_close, - [40642] = 1, - ACTIONS(5709), 1, + [15753] = 1, + ACTIONS(2039), 1, + sym__newline, + [15757] = 1, + ACTIONS(2041), 1, sym__block_close, - [40646] = 1, - ACTIONS(5711), 1, - sym__verbatim_content, - [40650] = 1, - ACTIONS(1472), 1, - sym_table_cell_alignment, - [40654] = 1, - ACTIONS(5713), 1, + [15761] = 1, + ACTIONS(2043), 1, + sym__newline, + [15765] = 1, + ACTIONS(2045), 1, + anon_sym_PIPE, + [15769] = 1, + ACTIONS(2047), 1, sym__block_close, - [40658] = 1, - ACTIONS(5715), 1, - aux_sym_inline_link_destination_token1, - [40662] = 1, - ACTIONS(5717), 1, + [15773] = 1, + ACTIONS(2049), 1, + sym__newline, + [15777] = 1, + ACTIONS(2051), 1, sym__whitespace1, - [40666] = 1, - ACTIONS(5719), 1, - sym__verbatim_end, - [40670] = 1, - ACTIONS(5721), 1, - anon_sym_RBRACK, - [40674] = 1, - ACTIONS(5723), 1, + [15781] = 1, + ACTIONS(2053), 1, + sym_table_cell_alignment, + [15785] = 1, + ACTIONS(2055), 1, + anon_sym_EQ, + [15789] = 1, + ACTIONS(2057), 1, + sym__footnote_end, + [15793] = 1, + ACTIONS(2059), 1, sym__newline, - [40678] = 1, - ACTIONS(5725), 1, + [15797] = 1, + ACTIONS(2061), 1, sym__newline, - [40682] = 1, - ACTIONS(5727), 1, - sym_link_destination, - [40686] = 1, - ACTIONS(5729), 1, + [15801] = 1, + ACTIONS(2063), 1, sym__newline, - [40690] = 1, - ACTIONS(5731), 1, - anon_sym_GT, - [40694] = 1, - ACTIONS(5733), 1, - anon_sym_EQ_RBRACE, - [40698] = 1, - ACTIONS(5735), 1, - anon_sym_PLUS_RBRACE, - [40702] = 1, - ACTIONS(5737), 1, - sym_language, - [40706] = 1, - ACTIONS(5739), 1, - anon_sym_DASH_RBRACE, - [40710] = 1, - ACTIONS(5741), 1, - anon_sym_RBRACK, - [40714] = 1, - ACTIONS(5743), 1, - sym_link_destination, - [40718] = 1, - ACTIONS(3981), 1, + [15805] = 1, + ACTIONS(2065), 1, + sym__footnote_end, + [15809] = 1, + ACTIONS(1075), 1, sym__block_close, - [40722] = 1, - ACTIONS(5745), 1, - anon_sym_PIPE, - [40726] = 1, - ACTIONS(5747), 1, - sym__newline, - [40730] = 1, - ACTIONS(5026), 1, - sym_table_cell_alignment, - [40734] = 1, - ACTIONS(5749), 1, + [15813] = 1, + ACTIONS(2067), 1, + ts_builtin_sym_end, + [15817] = 1, + ACTIONS(2069), 1, sym__newline, - [40738] = 1, - ACTIONS(5751), 1, + [15821] = 1, + ACTIONS(2071), 1, sym__newline, - [40742] = 1, - ACTIONS(5753), 1, + [15825] = 1, + ACTIONS(2073), 1, sym__block_close, - [40746] = 1, - ACTIONS(5755), 1, - sym__verbatim_content, - [40750] = 1, - ACTIONS(5757), 1, + [15829] = 1, + ACTIONS(2075), 1, + sym__whitespace, + [15833] = 1, + ACTIONS(1116), 1, + sym_list_marker_dash, + [15837] = 1, + ACTIONS(2077), 1, sym__block_close, - [40754] = 1, - ACTIONS(5759), 1, + [15841] = 1, + ACTIONS(2079), 1, + sym__whitespace1, + [15845] = 1, + ACTIONS(2081), 1, + sym__newline, + [15849] = 1, + ACTIONS(2083), 1, + sym__whitespace1, + [15853] = 1, + ACTIONS(2085), 1, + sym__newline, + [15857] = 1, + ACTIONS(2087), 1, sym__newline, - [40758] = 1, - ACTIONS(5761), 1, + [15861] = 1, + ACTIONS(2089), 1, + sym__newline, + [15865] = 1, + ACTIONS(2091), 1, + sym_table_cell_alignment, + [15869] = 1, + ACTIONS(2093), 1, + sym__newline, + [15873] = 1, + ACTIONS(1092), 1, sym__block_close, - [40762] = 1, - ACTIONS(5763), 1, + [15877] = 1, + ACTIONS(2095), 1, sym__newline, - [40766] = 1, - ACTIONS(5765), 1, + [15881] = 1, + ACTIONS(2097), 1, sym__newline, - [40770] = 1, - ACTIONS(5767), 1, + [15885] = 1, + ACTIONS(2099), 1, + anon_sym_EQ, + [15889] = 1, + ACTIONS(2101), 1, sym__newline, - [40774] = 1, - ACTIONS(5769), 1, + [15893] = 1, + ACTIONS(2103), 1, sym__newline, - [40778] = 1, - ACTIONS(5771), 1, + [15897] = 1, + ACTIONS(2105), 1, sym__newline, - [40782] = 1, - ACTIONS(5773), 1, + [15901] = 1, + ACTIONS(2107), 1, sym__newline, - [40786] = 1, - ACTIONS(5775), 1, - sym__verbatim_content, - [40790] = 1, - ACTIONS(1476), 1, - sym_table_cell_alignment, - [40794] = 1, - ACTIONS(5777), 1, + [15905] = 1, + ACTIONS(2109), 1, sym__block_close, - [40798] = 1, - ACTIONS(5779), 1, - aux_sym_inline_link_destination_token1, - [40802] = 1, - ACTIONS(5781), 1, - anon_sym_RBRACE, - [40806] = 1, - ACTIONS(5783), 1, + [15909] = 1, + ACTIONS(2111), 1, sym__block_close, - [40810] = 1, - ACTIONS(5785), 1, - anon_sym_RBRACK, - [40814] = 1, - ACTIONS(5787), 1, + [15913] = 1, + ACTIONS(2113), 1, + sym__whitespace, + [15917] = 1, + ACTIONS(2115), 1, sym__newline, - [40818] = 1, - ACTIONS(5789), 1, + [15921] = 1, + ACTIONS(2117), 1, + sym_frontmatter_marker, + [15925] = 1, + ACTIONS(2119), 1, sym__newline, - [40822] = 1, - ACTIONS(5791), 1, - sym__block_close, - [40826] = 1, - ACTIONS(5793), 1, - sym__block_close, - [40830] = 1, - ACTIONS(5795), 1, + [15929] = 1, + ACTIONS(2121), 1, sym__newline, - [40834] = 1, - ACTIONS(5797), 1, + [15933] = 1, + ACTIONS(2123), 1, sym__newline, - [40838] = 1, - ACTIONS(5799), 1, + [15937] = 1, + ACTIONS(2125), 1, sym__footnote_end, - [40842] = 1, - ACTIONS(5801), 1, - sym_language, - [40846] = 1, - ACTIONS(3950), 1, + [15941] = 1, + ACTIONS(2127), 1, + sym__whitespace1, + [15945] = 1, + ACTIONS(1059), 1, sym__block_close, - [40850] = 1, - ACTIONS(5803), 1, - anon_sym_DASH_RBRACE, - [40854] = 1, - ACTIONS(5805), 1, - sym_link_destination, - [40858] = 1, - ACTIONS(5807), 1, - anon_sym_RPAREN, - [40862] = 1, - ACTIONS(5809), 1, - sym__verbatim_content, - [40866] = 1, - ACTIONS(5811), 1, + [15949] = 1, + ACTIONS(2129), 1, + sym__eof_or_newline, + [15953] = 1, + ACTIONS(2131), 1, sym__block_close, - [40870] = 1, - ACTIONS(5813), 1, - sym__newline, - [40874] = 1, - ACTIONS(5815), 1, - anon_sym_RBRACK2, - [40878] = 1, - ACTIONS(5817), 1, + [15957] = 1, + ACTIONS(2133), 1, sym__newline, - [40882] = 1, - ACTIONS(5819), 1, + [15961] = 1, + ACTIONS(2135), 1, sym__newline, - [40886] = 1, - ACTIONS(5821), 1, - sym__verbatim_end, - [40890] = 1, - ACTIONS(5823), 1, - anon_sym_RBRACE, - [40894] = 1, - ACTIONS(5825), 1, + [15965] = 1, + ACTIONS(2137), 1, sym__newline, - [40898] = 1, - ACTIONS(5827), 1, - aux_sym_value_token1, - [40902] = 1, - ACTIONS(5829), 1, - sym__verbatim_content, - [40906] = 1, - ACTIONS(1480), 1, + [15969] = 1, + ACTIONS(2139), 1, + sym__whitespace, + [15973] = 1, + ACTIONS(2141), 1, sym_table_cell_alignment, - [40910] = 1, - ACTIONS(5831), 1, - anon_sym_RBRACK, - [40914] = 1, - ACTIONS(5833), 1, + [15977] = 1, + ACTIONS(2143), 1, sym__newline, - [40918] = 1, - ACTIONS(5835), 1, - anon_sym_RBRACE, - [40922] = 1, - ACTIONS(4235), 1, - anon_sym_PIPE, - [40926] = 1, - ACTIONS(5837), 1, - anon_sym_RBRACK, - [40930] = 1, - ACTIONS(5839), 1, + [15981] = 1, + ACTIONS(2145), 1, sym__newline, - [40934] = 1, - ACTIONS(5841), 1, + [15985] = 1, + ACTIONS(2147), 1, + sym__block_close, + [15989] = 1, + ACTIONS(2149), 1, + sym__block_close, + [15993] = 1, + ACTIONS(2151), 1, sym__newline, - [40938] = 1, - ACTIONS(5843), 1, + [15997] = 1, + ACTIONS(2153), 1, + sym__whitespace, + [16001] = 1, + ACTIONS(2155), 1, sym__newline, - [40942] = 1, - ACTIONS(5845), 1, - sym__verbatim_end, - [40946] = 1, - ACTIONS(5847), 1, - anon_sym_EQ, - [40950] = 1, - ACTIONS(5849), 1, - anon_sym_RBRACK, - [40954] = 1, - ACTIONS(5851), 1, - anon_sym_DASH_RBRACE, - [40958] = 1, - ACTIONS(5853), 1, - sym_language, - [40962] = 1, - ACTIONS(5855), 1, + [16005] = 1, + ACTIONS(2157), 1, + sym_table_cell_alignment, + [16009] = 1, + ACTIONS(2159), 1, sym__newline, - [40966] = 1, - ACTIONS(5857), 1, - anon_sym_EQ_RBRACE, - [40970] = 1, - ACTIONS(5859), 1, - sym_link_destination, - [40974] = 1, - ACTIONS(5861), 1, - sym__verbatim_content, - [40978] = 1, - ACTIONS(5863), 1, - sym__whitespace, - [40982] = 1, - ACTIONS(5865), 1, - anon_sym_RBRACK, - [40986] = 1, - ACTIONS(5867), 1, - anon_sym_GT, - [40990] = 1, - ACTIONS(5869), 1, - sym__verbatim_content, - [40994] = 1, - ACTIONS(5871), 1, - sym_language, - [40998] = 1, - ACTIONS(5873), 1, - aux_sym_inline_link_destination_token1, - [41002] = 1, - ACTIONS(5875), 1, - anon_sym_RBRACK, - [41006] = 1, - ACTIONS(5877), 1, - sym_language, - [41010] = 1, - ACTIONS(5879), 1, - sym__verbatim_content, - [41014] = 1, - ACTIONS(5881), 1, + [16013] = 1, + ACTIONS(2161), 1, sym__newline, - [41018] = 1, - ACTIONS(5883), 1, + [16017] = 1, + ACTIONS(2163), 1, sym__newline, - [41022] = 1, - ACTIONS(5885), 1, + [16021] = 1, + ACTIONS(2165), 1, sym__newline, - [41026] = 1, - ACTIONS(5887), 1, - sym__verbatim_content, - [41030] = 1, - ACTIONS(5889), 1, - anon_sym_DQUOTE, - [41034] = 1, - ACTIONS(5891), 1, - aux_sym_inline_link_destination_token1, - [41038] = 1, - ACTIONS(5893), 1, - anon_sym_RBRACK, - [41042] = 1, - ACTIONS(5895), 1, - sym_language, - [41046] = 1, - ACTIONS(5897), 1, - sym__verbatim_content, - [41050] = 1, - ACTIONS(5899), 1, - sym__list_item_continuation, - [41054] = 1, - ACTIONS(5617), 1, - anon_sym_RBRACK, - [41058] = 1, - ACTIONS(5901), 1, - sym__verbatim_end, - [41062] = 1, - ACTIONS(5903), 1, - sym__verbatim_content, - [41066] = 1, - ACTIONS(5905), 1, + [16025] = 1, + ACTIONS(2167), 1, sym__newline, - [41070] = 1, - ACTIONS(5907), 1, - aux_sym_inline_link_destination_token1, - [41074] = 1, - ACTIONS(5909), 1, - anon_sym_RBRACK, - [41078] = 1, - ACTIONS(5911), 1, - sym_language, - [41082] = 1, - ACTIONS(5913), 1, - sym__verbatim_content, - [41086] = 1, - ACTIONS(5915), 1, + [16029] = 1, + ACTIONS(2169), 1, + sym_table_cell_alignment, + [16033] = 1, + ACTIONS(2171), 1, sym__newline, - [41090] = 1, - ACTIONS(5917), 1, + [16037] = 1, + ACTIONS(2173), 1, sym__newline, - [41094] = 1, - ACTIONS(5919), 1, - sym__block_close, - [41098] = 1, - ACTIONS(5921), 1, - sym__verbatim_content, - [41102] = 1, - ACTIONS(4083), 1, - anon_sym_RBRACE, - [41106] = 1, - ACTIONS(5923), 1, - aux_sym_inline_link_destination_token1, - [41110] = 1, - ACTIONS(5925), 1, - anon_sym_RBRACK, - [41114] = 1, - ACTIONS(5927), 1, - sym_language, - [41118] = 1, - ACTIONS(5929), 1, - sym__verbatim_content, - [41122] = 1, - ACTIONS(5931), 1, - sym__block_close, - [41126] = 1, - ACTIONS(5933), 1, - sym__block_close, - [41130] = 1, - ACTIONS(5935), 1, - sym__block_close, - [41134] = 1, - ACTIONS(5937), 1, - sym__verbatim_content, - [41138] = 1, - ACTIONS(5939), 1, + [16041] = 1, + ACTIONS(2175), 1, sym__newline, - [41142] = 1, - ACTIONS(5941), 1, - aux_sym_inline_link_destination_token1, - [41146] = 1, - ACTIONS(5943), 1, - anon_sym_RBRACK, - [41150] = 1, - ACTIONS(5945), 1, - sym_language, - [41154] = 1, - ACTIONS(5947), 1, - sym__verbatim_content, - [41158] = 1, - ACTIONS(5949), 1, - sym__block_close, - [41162] = 1, - ACTIONS(5951), 1, + [16045] = 1, + ACTIONS(2177), 1, + sym__newline, + [16049] = 1, + ACTIONS(2179), 1, + anon_sym_COLON, + [16053] = 1, + ACTIONS(2181), 1, sym__block_close, - [41166] = 1, - ACTIONS(5953), 1, + [16057] = 1, + ACTIONS(2183), 1, sym__block_close, - [41170] = 1, - ACTIONS(5955), 1, - sym__verbatim_content, - [41174] = 1, - ACTIONS(5957), 1, + [16061] = 1, + ACTIONS(2185), 1, sym__newline, - [41178] = 1, - ACTIONS(5959), 1, - aux_sym_inline_link_destination_token1, - [41182] = 1, - ACTIONS(5961), 1, - anon_sym_RBRACK, - [41186] = 1, - ACTIONS(5963), 1, - sym_language, - [41190] = 1, - ACTIONS(5965), 1, - sym__verbatim_content, - [41194] = 1, - ACTIONS(5967), 1, - sym__newline, - [41198] = 1, - ACTIONS(5969), 1, - sym__eof_or_newline, - [41202] = 1, - ACTIONS(5971), 1, - anon_sym_PLUS_RBRACE, - [41206] = 1, - ACTIONS(5973), 1, - sym__verbatim_content, - [41210] = 1, - ACTIONS(5975), 1, - anon_sym_RBRACK2, - [41214] = 1, - ACTIONS(5977), 1, - aux_sym_inline_link_destination_token1, - [41218] = 1, - ACTIONS(5979), 1, - anon_sym_RBRACK, - [41222] = 1, - ACTIONS(5981), 1, - sym_language, - [41226] = 1, - ACTIONS(5983), 1, - sym__verbatim_content, - [41230] = 1, - ACTIONS(5985), 1, - anon_sym_RPAREN, - [41234] = 1, - ACTIONS(5987), 1, + [16065] = 1, + ACTIONS(2187), 1, sym__newline, - [41238] = 1, - ACTIONS(5989), 1, - anon_sym_EQ_RBRACE, - [41242] = 1, - ACTIONS(5991), 1, - sym__verbatim_content, - [41246] = 1, - ACTIONS(5993), 1, - ts_builtin_sym_end, - [41250] = 1, - ACTIONS(5995), 1, - aux_sym_inline_link_destination_token1, - [41254] = 1, - ACTIONS(5997), 1, - anon_sym_RBRACK, - [41258] = 1, - ACTIONS(5999), 1, - sym_language, - [41262] = 1, - ACTIONS(6001), 1, + [16069] = 1, + ACTIONS(2189), 1, + sym__footnote_end, + [16073] = 1, + ACTIONS(1084), 1, + sym__block_close, + [16077] = 1, + ACTIONS(2191), 1, sym__whitespace, - [41266] = 1, - ACTIONS(6003), 1, - sym__newline, - [41270] = 1, - ACTIONS(6005), 1, + [16081] = 1, + ACTIONS(2193), 1, + sym__whitespace, + [16085] = 1, + ACTIONS(2195), 1, + sym_table_cell_alignment, + [16089] = 1, + ACTIONS(2197), 1, anon_sym_RBRACK_COLON, - [41274] = 1, - ACTIONS(3987), 1, - sym__block_close, - [41278] = 1, - ACTIONS(4239), 1, + [16093] = 1, + ACTIONS(2199), 1, + anon_sym_RBRACK, + [16097] = 1, + ACTIONS(1285), 1, anon_sym_PIPE, - [41282] = 1, - ACTIONS(2595), 1, + [16101] = 1, + ACTIONS(2201), 1, sym_table_cell_alignment, - [41286] = 1, - ACTIONS(6007), 1, - sym__whitespace1, - [41290] = 1, - ACTIONS(6009), 1, + [16105] = 1, + ACTIONS(2203), 1, + sym_link_destination, + [16109] = 1, + ACTIONS(2205), 1, sym__whitespace, - [41294] = 1, - ACTIONS(6011), 1, - sym__newline, - [41298] = 1, - ACTIONS(6013), 1, + [16113] = 1, + ACTIONS(2207), 1, + anon_sym_RBRACK, + [16117] = 1, + ACTIONS(2209), 1, anon_sym_RBRACK_COLON, - [41302] = 1, - ACTIONS(6015), 1, - sym__footnote_end, - [41306] = 1, - ACTIONS(4243), 1, + [16121] = 1, + ACTIONS(2211), 1, + sym__list_item_continuation, + [16125] = 1, + ACTIONS(1289), 1, anon_sym_PIPE, - [41310] = 1, - ACTIONS(2601), 1, + [16129] = 1, + ACTIONS(2213), 1, sym_table_cell_alignment, - [41314] = 1, - ACTIONS(6017), 1, - sym__whitespace1, - [41318] = 1, - ACTIONS(6019), 1, + [16133] = 1, + ACTIONS(2215), 1, + sym_link_destination, + [16137] = 1, + ACTIONS(2217), 1, sym__whitespace, - [41322] = 1, - ACTIONS(6021), 1, - sym__newline, - [41326] = 1, - ACTIONS(6023), 1, + [16141] = 1, + ACTIONS(2219), 1, + anon_sym_PIPE, + [16145] = 1, + ACTIONS(2221), 1, anon_sym_RBRACK_COLON, - [41330] = 1, - ACTIONS(6025), 1, + [16149] = 1, + ACTIONS(2223), 1, sym__newline, - [41334] = 1, - ACTIONS(4010), 1, + [16153] = 1, + ACTIONS(1112), 1, anon_sym_PIPE, - [41338] = 1, - ACTIONS(2708), 1, + [16157] = 1, + ACTIONS(2225), 1, sym_table_cell_alignment, - [41342] = 1, - ACTIONS(6027), 1, - sym__whitespace1, - [41346] = 1, - ACTIONS(6029), 1, + [16161] = 1, + ACTIONS(2227), 1, + sym_link_destination, + [16165] = 1, + ACTIONS(2229), 1, sym__whitespace, - [41350] = 1, - ACTIONS(6031), 1, + [16169] = 1, + ACTIONS(2231), 1, sym__newline, - [41354] = 1, - ACTIONS(6033), 1, + [16173] = 1, + ACTIONS(2233), 1, anon_sym_RBRACK_COLON, - [41358] = 1, - ACTIONS(6035), 1, - sym__verbatim_content, - [41362] = 1, - ACTIONS(4251), 1, + [16177] = 1, + ACTIONS(2235), 1, + sym_language, + [16181] = 1, + ACTIONS(1307), 1, anon_sym_PIPE, - [41366] = 1, - ACTIONS(2690), 1, + [16185] = 1, + ACTIONS(2237), 1, sym_table_cell_alignment, - [41370] = 1, - ACTIONS(6037), 1, - sym__whitespace1, - [41374] = 1, - ACTIONS(6039), 1, + [16189] = 1, + ACTIONS(2239), 1, + sym_link_destination, + [16193] = 1, + ACTIONS(2241), 1, sym__newline, - [41378] = 1, - ACTIONS(6041), 1, - sym__block_close, - [41382] = 1, - ACTIONS(6043), 1, + [16197] = 1, + ACTIONS(2243), 1, + sym__newline, + [16201] = 1, + ACTIONS(2245), 1, anon_sym_PIPE, - [41386] = 1, - ACTIONS(6045), 1, - sym__block_close, - [41390] = 1, - ACTIONS(6047), 1, - anon_sym_RBRACE, - [41394] = 1, - ACTIONS(6049), 1, + [16205] = 1, + ACTIONS(2247), 1, + sym__whitespace1, + [16209] = 1, + ACTIONS(2249), 1, + sym__eof_or_newline, + [16213] = 1, + ACTIONS(1309), 1, sym__newline, - [41398] = 1, - ACTIONS(6051), 1, + [16217] = 1, + ACTIONS(2251), 1, anon_sym_PIPE, - [41402] = 1, - ACTIONS(6053), 1, - anon_sym_RBRACK2, - [41406] = 1, - ACTIONS(6055), 1, + [16221] = 1, + ACTIONS(2253), 1, + sym__whitespace1, + [16225] = 1, + ACTIONS(2255), 1, sym__newline, - [41410] = 1, - ACTIONS(6057), 1, + [16229] = 1, + ACTIONS(2257), 1, sym__newline, - [41414] = 1, - ACTIONS(6059), 1, + [16233] = 1, + ACTIONS(2259), 1, anon_sym_PIPE, - [41418] = 1, - ACTIONS(4057), 1, - anon_sym_RBRACE, - [41422] = 1, - ACTIONS(6061), 1, - sym__newline, - [41426] = 1, - ACTIONS(6063), 1, + [16237] = 1, + ACTIONS(2261), 1, + sym__whitespace1, + [16241] = 1, + ACTIONS(2263), 1, + sym__block_close, + [16245] = 1, + ACTIONS(2265), 1, sym__newline, - [41430] = 1, - ACTIONS(6065), 1, + [16249] = 1, + ACTIONS(2267), 1, anon_sym_PIPE, - [41434] = 1, - ACTIONS(6067), 1, - anon_sym_RPAREN, - [41438] = 1, - ACTIONS(6069), 1, + [16253] = 1, + ACTIONS(2269), 1, + sym__whitespace1, + [16257] = 1, + ACTIONS(2271), 1, + anon_sym_COLON, + [16261] = 1, + ACTIONS(2273), 1, + anon_sym_COLON, + [16265] = 1, + ACTIONS(2275), 1, + anon_sym_COLON, + [16269] = 1, + ACTIONS(2277), 1, + anon_sym_COLON, + [16273] = 1, + ACTIONS(2279), 1, anon_sym_RBRACK, - [41442] = 1, - ACTIONS(6071), 1, + [16277] = 1, + ACTIONS(2281), 1, anon_sym_RBRACK, - [41446] = 1, - ACTIONS(6073), 1, + [16281] = 1, + ACTIONS(2283), 1, anon_sym_RBRACK, - [41450] = 1, - ACTIONS(6075), 1, + [16285] = 1, + ACTIONS(2285), 1, anon_sym_RBRACK, - [41454] = 1, - ACTIONS(6077), 1, - sym__newline, - [41458] = 1, - ACTIONS(6079), 1, - sym__newline, - [41462] = 1, - ACTIONS(6081), 1, - sym__whitespace, - [41466] = 1, - ACTIONS(6083), 1, - sym__newline, + [16289] = 1, + ACTIONS(1271), 1, + anon_sym_PIPE, + [16293] = 1, + ACTIONS(2287), 1, + sym__block_close, + [16297] = 1, + ACTIONS(1118), 1, + sym_list_marker_star, + [16301] = 1, + ACTIONS(1120), 1, + sym_list_marker_plus, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(506)] = 0, - [SMALL_STATE(507)] = 73, - [SMALL_STATE(508)] = 143, - [SMALL_STATE(509)] = 213, - [SMALL_STATE(510)] = 283, - [SMALL_STATE(511)] = 353, - [SMALL_STATE(512)] = 423, - [SMALL_STATE(513)] = 475, - [SMALL_STATE(514)] = 524, - [SMALL_STATE(515)] = 575, - [SMALL_STATE(516)] = 624, - [SMALL_STATE(517)] = 675, - [SMALL_STATE(518)] = 726, - [SMALL_STATE(519)] = 777, - [SMALL_STATE(520)] = 828, - [SMALL_STATE(521)] = 879, - [SMALL_STATE(522)] = 928, - [SMALL_STATE(523)] = 979, - [SMALL_STATE(524)] = 1030, - [SMALL_STATE(525)] = 1081, - [SMALL_STATE(526)] = 1134, - [SMALL_STATE(527)] = 1187, - [SMALL_STATE(528)] = 1238, - [SMALL_STATE(529)] = 1287, - [SMALL_STATE(530)] = 1338, - [SMALL_STATE(531)] = 1389, - [SMALL_STATE(532)] = 1441, - [SMALL_STATE(533)] = 1489, - [SMALL_STATE(534)] = 1537, - [SMALL_STATE(535)] = 1585, - [SMALL_STATE(536)] = 1633, - [SMALL_STATE(537)] = 1685, - [SMALL_STATE(538)] = 1731, - [SMALL_STATE(539)] = 1783, - [SMALL_STATE(540)] = 1831, - [SMALL_STATE(541)] = 1883, - [SMALL_STATE(542)] = 1931, - [SMALL_STATE(543)] = 1983, - [SMALL_STATE(544)] = 2033, - [SMALL_STATE(545)] = 2081, - [SMALL_STATE(546)] = 2133, - [SMALL_STATE(547)] = 2181, - [SMALL_STATE(548)] = 2229, - [SMALL_STATE(549)] = 2277, - [SMALL_STATE(550)] = 2325, - [SMALL_STATE(551)] = 2375, - [SMALL_STATE(552)] = 2423, - [SMALL_STATE(553)] = 2471, - [SMALL_STATE(554)] = 2523, - [SMALL_STATE(555)] = 2573, - [SMALL_STATE(556)] = 2625, - [SMALL_STATE(557)] = 2673, - [SMALL_STATE(558)] = 2721, - [SMALL_STATE(559)] = 2771, - [SMALL_STATE(560)] = 2821, - [SMALL_STATE(561)] = 2871, - [SMALL_STATE(562)] = 2915, - [SMALL_STATE(563)] = 2965, - [SMALL_STATE(564)] = 3017, - [SMALL_STATE(565)] = 3067, - [SMALL_STATE(566)] = 3119, - [SMALL_STATE(567)] = 3167, - [SMALL_STATE(568)] = 3219, - [SMALL_STATE(569)] = 3267, - [SMALL_STATE(570)] = 3315, - [SMALL_STATE(571)] = 3363, - [SMALL_STATE(572)] = 3411, - [SMALL_STATE(573)] = 3461, - [SMALL_STATE(574)] = 3509, - [SMALL_STATE(575)] = 3559, - [SMALL_STATE(576)] = 3609, - [SMALL_STATE(577)] = 3657, - [SMALL_STATE(578)] = 3709, - [SMALL_STATE(579)] = 3761, - [SMALL_STATE(580)] = 3809, - [SMALL_STATE(581)] = 3857, - [SMALL_STATE(582)] = 3905, - [SMALL_STATE(583)] = 3953, - [SMALL_STATE(584)] = 4003, - [SMALL_STATE(585)] = 4051, - [SMALL_STATE(586)] = 4099, - [SMALL_STATE(587)] = 4147, - [SMALL_STATE(588)] = 4195, - [SMALL_STATE(589)] = 4245, - [SMALL_STATE(590)] = 4293, - [SMALL_STATE(591)] = 4345, - [SMALL_STATE(592)] = 4397, - [SMALL_STATE(593)] = 4445, - [SMALL_STATE(594)] = 4497, - [SMALL_STATE(595)] = 4545, - [SMALL_STATE(596)] = 4595, - [SMALL_STATE(597)] = 4647, - [SMALL_STATE(598)] = 4695, - [SMALL_STATE(599)] = 4743, - [SMALL_STATE(600)] = 4791, - [SMALL_STATE(601)] = 4839, - [SMALL_STATE(602)] = 4887, - [SMALL_STATE(603)] = 4935, - [SMALL_STATE(604)] = 4987, - [SMALL_STATE(605)] = 5039, - [SMALL_STATE(606)] = 5087, - [SMALL_STATE(607)] = 5137, - [SMALL_STATE(608)] = 5187, - [SMALL_STATE(609)] = 5237, - [SMALL_STATE(610)] = 5287, - [SMALL_STATE(611)] = 5335, - [SMALL_STATE(612)] = 5383, - [SMALL_STATE(613)] = 5431, - [SMALL_STATE(614)] = 5481, - [SMALL_STATE(615)] = 5531, - [SMALL_STATE(616)] = 5579, - [SMALL_STATE(617)] = 5629, - [SMALL_STATE(618)] = 5681, - [SMALL_STATE(619)] = 5726, - [SMALL_STATE(620)] = 5769, - [SMALL_STATE(621)] = 5816, - [SMALL_STATE(622)] = 5859, - [SMALL_STATE(623)] = 5902, - [SMALL_STATE(624)] = 5947, - [SMALL_STATE(625)] = 5994, - [SMALL_STATE(626)] = 6041, - [SMALL_STATE(627)] = 6088, - [SMALL_STATE(628)] = 6135, - [SMALL_STATE(629)] = 6180, - [SMALL_STATE(630)] = 6227, - [SMALL_STATE(631)] = 6274, - [SMALL_STATE(632)] = 6317, - [SMALL_STATE(633)] = 6360, - [SMALL_STATE(634)] = 6407, - [SMALL_STATE(635)] = 6450, - [SMALL_STATE(636)] = 6497, - [SMALL_STATE(637)] = 6540, - [SMALL_STATE(638)] = 6583, - [SMALL_STATE(639)] = 6626, - [SMALL_STATE(640)] = 6669, - [SMALL_STATE(641)] = 6712, - [SMALL_STATE(642)] = 6755, - [SMALL_STATE(643)] = 6798, - [SMALL_STATE(644)] = 6841, - [SMALL_STATE(645)] = 6884, - [SMALL_STATE(646)] = 6927, - [SMALL_STATE(647)] = 6970, - [SMALL_STATE(648)] = 7015, - [SMALL_STATE(649)] = 7058, - [SMALL_STATE(650)] = 7101, - [SMALL_STATE(651)] = 7144, - [SMALL_STATE(652)] = 7191, - [SMALL_STATE(653)] = 7238, - [SMALL_STATE(654)] = 7281, - [SMALL_STATE(655)] = 7328, - [SMALL_STATE(656)] = 7375, - [SMALL_STATE(657)] = 7418, - [SMALL_STATE(658)] = 7461, - [SMALL_STATE(659)] = 7504, - [SMALL_STATE(660)] = 7547, - [SMALL_STATE(661)] = 7590, - [SMALL_STATE(662)] = 7633, - [SMALL_STATE(663)] = 7676, - [SMALL_STATE(664)] = 7719, - [SMALL_STATE(665)] = 7766, - [SMALL_STATE(666)] = 7813, - [SMALL_STATE(667)] = 7860, - [SMALL_STATE(668)] = 7907, - [SMALL_STATE(669)] = 7952, - [SMALL_STATE(670)] = 7995, - [SMALL_STATE(671)] = 8038, - [SMALL_STATE(672)] = 8083, - [SMALL_STATE(673)] = 8130, - [SMALL_STATE(674)] = 8177, - [SMALL_STATE(675)] = 8224, - [SMALL_STATE(676)] = 8271, - [SMALL_STATE(677)] = 8318, - [SMALL_STATE(678)] = 8365, - [SMALL_STATE(679)] = 8412, - [SMALL_STATE(680)] = 8455, - [SMALL_STATE(681)] = 8502, - [SMALL_STATE(682)] = 8549, - [SMALL_STATE(683)] = 8596, - [SMALL_STATE(684)] = 8639, - [SMALL_STATE(685)] = 8686, - [SMALL_STATE(686)] = 8733, - [SMALL_STATE(687)] = 8776, - [SMALL_STATE(688)] = 8823, - [SMALL_STATE(689)] = 8870, - [SMALL_STATE(690)] = 8917, - [SMALL_STATE(691)] = 8964, - [SMALL_STATE(692)] = 9011, - [SMALL_STATE(693)] = 9054, - [SMALL_STATE(694)] = 9097, - [SMALL_STATE(695)] = 9140, - [SMALL_STATE(696)] = 9187, - [SMALL_STATE(697)] = 9234, - [SMALL_STATE(698)] = 9281, - [SMALL_STATE(699)] = 9326, - [SMALL_STATE(700)] = 9373, - [SMALL_STATE(701)] = 9420, - [SMALL_STATE(702)] = 9463, - [SMALL_STATE(703)] = 9510, - [SMALL_STATE(704)] = 9557, - [SMALL_STATE(705)] = 9602, - [SMALL_STATE(706)] = 9649, - [SMALL_STATE(707)] = 9698, - [SMALL_STATE(708)] = 9747, - [SMALL_STATE(709)] = 9796, - [SMALL_STATE(710)] = 9839, - [SMALL_STATE(711)] = 9886, - [SMALL_STATE(712)] = 9935, - [SMALL_STATE(713)] = 9982, - [SMALL_STATE(714)] = 10027, - [SMALL_STATE(715)] = 10070, - [SMALL_STATE(716)] = 10115, - [SMALL_STATE(717)] = 10162, - [SMALL_STATE(718)] = 10209, - [SMALL_STATE(719)] = 10258, - [SMALL_STATE(720)] = 10309, - [SMALL_STATE(721)] = 10356, - [SMALL_STATE(722)] = 10401, - [SMALL_STATE(723)] = 10452, - [SMALL_STATE(724)] = 10494, - [SMALL_STATE(725)] = 10536, - [SMALL_STATE(726)] = 10582, - [SMALL_STATE(727)] = 10628, - [SMALL_STATE(728)] = 10674, - [SMALL_STATE(729)] = 10718, - [SMALL_STATE(730)] = 10760, - [SMALL_STATE(731)] = 10802, - [SMALL_STATE(732)] = 10844, - [SMALL_STATE(733)] = 10886, - [SMALL_STATE(734)] = 10928, - [SMALL_STATE(735)] = 10970, - [SMALL_STATE(736)] = 11012, - [SMALL_STATE(737)] = 11054, - [SMALL_STATE(738)] = 11096, - [SMALL_STATE(739)] = 11138, - [SMALL_STATE(740)] = 11180, - [SMALL_STATE(741)] = 11222, - [SMALL_STATE(742)] = 11264, - [SMALL_STATE(743)] = 11306, - [SMALL_STATE(744)] = 11348, - [SMALL_STATE(745)] = 11390, - [SMALL_STATE(746)] = 11432, - [SMALL_STATE(747)] = 11474, - [SMALL_STATE(748)] = 11516, - [SMALL_STATE(749)] = 11558, - [SMALL_STATE(750)] = 11600, - [SMALL_STATE(751)] = 11642, - [SMALL_STATE(752)] = 11684, - [SMALL_STATE(753)] = 11726, - [SMALL_STATE(754)] = 11768, - [SMALL_STATE(755)] = 11810, - [SMALL_STATE(756)] = 11852, - [SMALL_STATE(757)] = 11894, - [SMALL_STATE(758)] = 11936, - [SMALL_STATE(759)] = 11978, - [SMALL_STATE(760)] = 12020, - [SMALL_STATE(761)] = 12062, - [SMALL_STATE(762)] = 12104, - [SMALL_STATE(763)] = 12146, - [SMALL_STATE(764)] = 12188, - [SMALL_STATE(765)] = 12230, - [SMALL_STATE(766)] = 12272, - [SMALL_STATE(767)] = 12318, - [SMALL_STATE(768)] = 12360, - [SMALL_STATE(769)] = 12402, - [SMALL_STATE(770)] = 12444, - [SMALL_STATE(771)] = 12486, - [SMALL_STATE(772)] = 12530, - [SMALL_STATE(773)] = 12572, - [SMALL_STATE(774)] = 12618, - [SMALL_STATE(775)] = 12664, - [SMALL_STATE(776)] = 12710, - [SMALL_STATE(777)] = 12756, - [SMALL_STATE(778)] = 12798, - [SMALL_STATE(779)] = 12840, - [SMALL_STATE(780)] = 12882, - [SMALL_STATE(781)] = 12924, - [SMALL_STATE(782)] = 12972, - [SMALL_STATE(783)] = 13014, - [SMALL_STATE(784)] = 13056, - [SMALL_STATE(785)] = 13098, - [SMALL_STATE(786)] = 13140, - [SMALL_STATE(787)] = 13182, - [SMALL_STATE(788)] = 13224, - [SMALL_STATE(789)] = 13266, - [SMALL_STATE(790)] = 13308, - [SMALL_STATE(791)] = 13350, - [SMALL_STATE(792)] = 13392, - [SMALL_STATE(793)] = 13434, - [SMALL_STATE(794)] = 13476, - [SMALL_STATE(795)] = 13518, - [SMALL_STATE(796)] = 13560, - [SMALL_STATE(797)] = 13602, - [SMALL_STATE(798)] = 13644, - [SMALL_STATE(799)] = 13686, - [SMALL_STATE(800)] = 13728, - [SMALL_STATE(801)] = 13770, - [SMALL_STATE(802)] = 13812, - [SMALL_STATE(803)] = 13854, - [SMALL_STATE(804)] = 13896, - [SMALL_STATE(805)] = 13938, - [SMALL_STATE(806)] = 13980, - [SMALL_STATE(807)] = 14022, - [SMALL_STATE(808)] = 14068, - [SMALL_STATE(809)] = 14110, - [SMALL_STATE(810)] = 14152, - [SMALL_STATE(811)] = 14194, - [SMALL_STATE(812)] = 14236, - [SMALL_STATE(813)] = 14278, - [SMALL_STATE(814)] = 14320, - [SMALL_STATE(815)] = 14362, - [SMALL_STATE(816)] = 14404, - [SMALL_STATE(817)] = 14446, - [SMALL_STATE(818)] = 14488, - [SMALL_STATE(819)] = 14530, - [SMALL_STATE(820)] = 14572, - [SMALL_STATE(821)] = 14614, - [SMALL_STATE(822)] = 14658, - [SMALL_STATE(823)] = 14700, - [SMALL_STATE(824)] = 14742, - [SMALL_STATE(825)] = 14784, - [SMALL_STATE(826)] = 14826, - [SMALL_STATE(827)] = 14870, - [SMALL_STATE(828)] = 14912, - [SMALL_STATE(829)] = 14958, - [SMALL_STATE(830)] = 15000, - [SMALL_STATE(831)] = 15042, - [SMALL_STATE(832)] = 15088, - [SMALL_STATE(833)] = 15130, - [SMALL_STATE(834)] = 15172, - [SMALL_STATE(835)] = 15218, - [SMALL_STATE(836)] = 15264, - [SMALL_STATE(837)] = 15306, - [SMALL_STATE(838)] = 15348, - [SMALL_STATE(839)] = 15390, - [SMALL_STATE(840)] = 15432, - [SMALL_STATE(841)] = 15474, - [SMALL_STATE(842)] = 15516, - [SMALL_STATE(843)] = 15558, - [SMALL_STATE(844)] = 15600, - [SMALL_STATE(845)] = 15642, - [SMALL_STATE(846)] = 15684, - [SMALL_STATE(847)] = 15726, - [SMALL_STATE(848)] = 15768, - [SMALL_STATE(849)] = 15810, - [SMALL_STATE(850)] = 15852, - [SMALL_STATE(851)] = 15894, - [SMALL_STATE(852)] = 15936, - [SMALL_STATE(853)] = 15978, - [SMALL_STATE(854)] = 16024, - [SMALL_STATE(855)] = 16066, - [SMALL_STATE(856)] = 16108, - [SMALL_STATE(857)] = 16150, - [SMALL_STATE(858)] = 16196, - [SMALL_STATE(859)] = 16238, - [SMALL_STATE(860)] = 16280, - [SMALL_STATE(861)] = 16322, - [SMALL_STATE(862)] = 16364, - [SMALL_STATE(863)] = 16406, - [SMALL_STATE(864)] = 16448, - [SMALL_STATE(865)] = 16490, - [SMALL_STATE(866)] = 16532, - [SMALL_STATE(867)] = 16574, - [SMALL_STATE(868)] = 16616, - [SMALL_STATE(869)] = 16658, - [SMALL_STATE(870)] = 16700, - [SMALL_STATE(871)] = 16742, - [SMALL_STATE(872)] = 16784, - [SMALL_STATE(873)] = 16826, - [SMALL_STATE(874)] = 16868, - [SMALL_STATE(875)] = 16910, - [SMALL_STATE(876)] = 16952, - [SMALL_STATE(877)] = 16994, - [SMALL_STATE(878)] = 17036, - [SMALL_STATE(879)] = 17078, - [SMALL_STATE(880)] = 17120, - [SMALL_STATE(881)] = 17164, - [SMALL_STATE(882)] = 17206, - [SMALL_STATE(883)] = 17252, - [SMALL_STATE(884)] = 17298, - [SMALL_STATE(885)] = 17344, - [SMALL_STATE(886)] = 17386, - [SMALL_STATE(887)] = 17428, - [SMALL_STATE(888)] = 17470, - [SMALL_STATE(889)] = 17512, - [SMALL_STATE(890)] = 17554, - [SMALL_STATE(891)] = 17596, - [SMALL_STATE(892)] = 17638, - [SMALL_STATE(893)] = 17680, - [SMALL_STATE(894)] = 17722, - [SMALL_STATE(895)] = 17768, - [SMALL_STATE(896)] = 17810, - [SMALL_STATE(897)] = 17856, - [SMALL_STATE(898)] = 17902, - [SMALL_STATE(899)] = 17948, - [SMALL_STATE(900)] = 17990, - [SMALL_STATE(901)] = 18036, - [SMALL_STATE(902)] = 18078, - [SMALL_STATE(903)] = 18120, - [SMALL_STATE(904)] = 18162, - [SMALL_STATE(905)] = 18204, - [SMALL_STATE(906)] = 18246, - [SMALL_STATE(907)] = 18290, - [SMALL_STATE(908)] = 18332, - [SMALL_STATE(909)] = 18376, - [SMALL_STATE(910)] = 18418, - [SMALL_STATE(911)] = 18460, - [SMALL_STATE(912)] = 18502, - [SMALL_STATE(913)] = 18544, - [SMALL_STATE(914)] = 18586, - [SMALL_STATE(915)] = 18628, - [SMALL_STATE(916)] = 18670, - [SMALL_STATE(917)] = 18712, - [SMALL_STATE(918)] = 18754, - [SMALL_STATE(919)] = 18800, - [SMALL_STATE(920)] = 18842, - [SMALL_STATE(921)] = 18884, - [SMALL_STATE(922)] = 18926, - [SMALL_STATE(923)] = 18972, - [SMALL_STATE(924)] = 19014, - [SMALL_STATE(925)] = 19056, - [SMALL_STATE(926)] = 19098, - [SMALL_STATE(927)] = 19140, - [SMALL_STATE(928)] = 19182, - [SMALL_STATE(929)] = 19224, - [SMALL_STATE(930)] = 19266, - [SMALL_STATE(931)] = 19308, - [SMALL_STATE(932)] = 19350, - [SMALL_STATE(933)] = 19392, - [SMALL_STATE(934)] = 19434, - [SMALL_STATE(935)] = 19476, - [SMALL_STATE(936)] = 19518, - [SMALL_STATE(937)] = 19560, - [SMALL_STATE(938)] = 19602, - [SMALL_STATE(939)] = 19644, - [SMALL_STATE(940)] = 19686, - [SMALL_STATE(941)] = 19728, - [SMALL_STATE(942)] = 19770, - [SMALL_STATE(943)] = 19812, - [SMALL_STATE(944)] = 19854, - [SMALL_STATE(945)] = 19896, - [SMALL_STATE(946)] = 19938, - [SMALL_STATE(947)] = 19980, - [SMALL_STATE(948)] = 20022, - [SMALL_STATE(949)] = 20068, - [SMALL_STATE(950)] = 20114, - [SMALL_STATE(951)] = 20156, - [SMALL_STATE(952)] = 20202, - [SMALL_STATE(953)] = 20244, - [SMALL_STATE(954)] = 20286, - [SMALL_STATE(955)] = 20328, - [SMALL_STATE(956)] = 20370, - [SMALL_STATE(957)] = 20412, - [SMALL_STATE(958)] = 20454, - [SMALL_STATE(959)] = 20496, - [SMALL_STATE(960)] = 20538, - [SMALL_STATE(961)] = 20580, - [SMALL_STATE(962)] = 20622, - [SMALL_STATE(963)] = 20664, - [SMALL_STATE(964)] = 20706, - [SMALL_STATE(965)] = 20748, - [SMALL_STATE(966)] = 20790, - [SMALL_STATE(967)] = 20832, - [SMALL_STATE(968)] = 20874, - [SMALL_STATE(969)] = 20916, - [SMALL_STATE(970)] = 20958, - [SMALL_STATE(971)] = 21000, - [SMALL_STATE(972)] = 21042, - [SMALL_STATE(973)] = 21084, - [SMALL_STATE(974)] = 21126, - [SMALL_STATE(975)] = 21168, - [SMALL_STATE(976)] = 21210, - [SMALL_STATE(977)] = 21252, - [SMALL_STATE(978)] = 21294, - [SMALL_STATE(979)] = 21336, - [SMALL_STATE(980)] = 21378, - [SMALL_STATE(981)] = 21420, - [SMALL_STATE(982)] = 21462, - [SMALL_STATE(983)] = 21504, - [SMALL_STATE(984)] = 21546, - [SMALL_STATE(985)] = 21588, - [SMALL_STATE(986)] = 21630, - [SMALL_STATE(987)] = 21672, - [SMALL_STATE(988)] = 21714, - [SMALL_STATE(989)] = 21756, - [SMALL_STATE(990)] = 21798, - [SMALL_STATE(991)] = 21840, - [SMALL_STATE(992)] = 21882, - [SMALL_STATE(993)] = 21924, - [SMALL_STATE(994)] = 21970, - [SMALL_STATE(995)] = 22012, - [SMALL_STATE(996)] = 22054, - [SMALL_STATE(997)] = 22096, - [SMALL_STATE(998)] = 22138, - [SMALL_STATE(999)] = 22180, - [SMALL_STATE(1000)] = 22222, - [SMALL_STATE(1001)] = 22264, - [SMALL_STATE(1002)] = 22306, - [SMALL_STATE(1003)] = 22348, - [SMALL_STATE(1004)] = 22390, - [SMALL_STATE(1005)] = 22432, - [SMALL_STATE(1006)] = 22478, - [SMALL_STATE(1007)] = 22524, - [SMALL_STATE(1008)] = 22568, - [SMALL_STATE(1009)] = 22610, - [SMALL_STATE(1010)] = 22656, - [SMALL_STATE(1011)] = 22698, - [SMALL_STATE(1012)] = 22742, - [SMALL_STATE(1013)] = 22784, - [SMALL_STATE(1014)] = 22830, - [SMALL_STATE(1015)] = 22876, - [SMALL_STATE(1016)] = 22918, - [SMALL_STATE(1017)] = 22960, - [SMALL_STATE(1018)] = 23004, - [SMALL_STATE(1019)] = 23050, - [SMALL_STATE(1020)] = 23092, - [SMALL_STATE(1021)] = 23138, - [SMALL_STATE(1022)] = 23180, - [SMALL_STATE(1023)] = 23222, - [SMALL_STATE(1024)] = 23264, - [SMALL_STATE(1025)] = 23306, - [SMALL_STATE(1026)] = 23348, - [SMALL_STATE(1027)] = 23390, - [SMALL_STATE(1028)] = 23432, - [SMALL_STATE(1029)] = 23476, - [SMALL_STATE(1030)] = 23518, - [SMALL_STATE(1031)] = 23560, - [SMALL_STATE(1032)] = 23602, - [SMALL_STATE(1033)] = 23644, - [SMALL_STATE(1034)] = 23686, - [SMALL_STATE(1035)] = 23728, - [SMALL_STATE(1036)] = 23770, - [SMALL_STATE(1037)] = 23812, - [SMALL_STATE(1038)] = 23854, - [SMALL_STATE(1039)] = 23896, - [SMALL_STATE(1040)] = 23938, - [SMALL_STATE(1041)] = 23980, - [SMALL_STATE(1042)] = 24022, - [SMALL_STATE(1043)] = 24064, - [SMALL_STATE(1044)] = 24106, - [SMALL_STATE(1045)] = 24148, - [SMALL_STATE(1046)] = 24190, - [SMALL_STATE(1047)] = 24232, - [SMALL_STATE(1048)] = 24274, - [SMALL_STATE(1049)] = 24316, - [SMALL_STATE(1050)] = 24358, - [SMALL_STATE(1051)] = 24400, - [SMALL_STATE(1052)] = 24442, - [SMALL_STATE(1053)] = 24484, - [SMALL_STATE(1054)] = 24526, - [SMALL_STATE(1055)] = 24568, - [SMALL_STATE(1056)] = 24610, - [SMALL_STATE(1057)] = 24652, - [SMALL_STATE(1058)] = 24694, - [SMALL_STATE(1059)] = 24736, - [SMALL_STATE(1060)] = 24778, - [SMALL_STATE(1061)] = 24820, - [SMALL_STATE(1062)] = 24862, - [SMALL_STATE(1063)] = 24904, - [SMALL_STATE(1064)] = 24946, - [SMALL_STATE(1065)] = 24988, - [SMALL_STATE(1066)] = 25030, - [SMALL_STATE(1067)] = 25072, - [SMALL_STATE(1068)] = 25114, - [SMALL_STATE(1069)] = 25156, - [SMALL_STATE(1070)] = 25198, - [SMALL_STATE(1071)] = 25240, - [SMALL_STATE(1072)] = 25286, - [SMALL_STATE(1073)] = 25328, - [SMALL_STATE(1074)] = 25370, - [SMALL_STATE(1075)] = 25412, - [SMALL_STATE(1076)] = 25458, - [SMALL_STATE(1077)] = 25500, - [SMALL_STATE(1078)] = 25546, - [SMALL_STATE(1079)] = 25588, - [SMALL_STATE(1080)] = 25630, - [SMALL_STATE(1081)] = 25672, - [SMALL_STATE(1082)] = 25715, - [SMALL_STATE(1083)] = 25756, - [SMALL_STATE(1084)] = 25797, - [SMALL_STATE(1085)] = 25838, - [SMALL_STATE(1086)] = 25879, - [SMALL_STATE(1087)] = 25920, - [SMALL_STATE(1088)] = 25961, - [SMALL_STATE(1089)] = 26002, - [SMALL_STATE(1090)] = 26043, - [SMALL_STATE(1091)] = 26084, - [SMALL_STATE(1092)] = 26127, - [SMALL_STATE(1093)] = 26168, - [SMALL_STATE(1094)] = 26211, - [SMALL_STATE(1095)] = 26252, - [SMALL_STATE(1096)] = 26293, - [SMALL_STATE(1097)] = 26338, - [SMALL_STATE(1098)] = 26379, - [SMALL_STATE(1099)] = 26420, - [SMALL_STATE(1100)] = 26461, - [SMALL_STATE(1101)] = 26502, - [SMALL_STATE(1102)] = 26543, - [SMALL_STATE(1103)] = 26584, - [SMALL_STATE(1104)] = 26625, - [SMALL_STATE(1105)] = 26666, - [SMALL_STATE(1106)] = 26707, - [SMALL_STATE(1107)] = 26748, - [SMALL_STATE(1108)] = 26789, - [SMALL_STATE(1109)] = 26830, - [SMALL_STATE(1110)] = 26871, - [SMALL_STATE(1111)] = 26912, - [SMALL_STATE(1112)] = 26953, - [SMALL_STATE(1113)] = 26994, - [SMALL_STATE(1114)] = 27035, - [SMALL_STATE(1115)] = 27076, - [SMALL_STATE(1116)] = 27117, - [SMALL_STATE(1117)] = 27162, - [SMALL_STATE(1118)] = 27203, - [SMALL_STATE(1119)] = 27244, - [SMALL_STATE(1120)] = 27285, - [SMALL_STATE(1121)] = 27326, - [SMALL_STATE(1122)] = 27367, - [SMALL_STATE(1123)] = 27408, - [SMALL_STATE(1124)] = 27449, - [SMALL_STATE(1125)] = 27490, - [SMALL_STATE(1126)] = 27531, - [SMALL_STATE(1127)] = 27572, - [SMALL_STATE(1128)] = 27613, - [SMALL_STATE(1129)] = 27654, - [SMALL_STATE(1130)] = 27695, - [SMALL_STATE(1131)] = 27736, - [SMALL_STATE(1132)] = 27777, - [SMALL_STATE(1133)] = 27818, - [SMALL_STATE(1134)] = 27863, - [SMALL_STATE(1135)] = 27904, - [SMALL_STATE(1136)] = 27949, - [SMALL_STATE(1137)] = 27990, - [SMALL_STATE(1138)] = 28033, - [SMALL_STATE(1139)] = 28078, - [SMALL_STATE(1140)] = 28119, - [SMALL_STATE(1141)] = 28164, - [SMALL_STATE(1142)] = 28205, - [SMALL_STATE(1143)] = 28250, - [SMALL_STATE(1144)] = 28291, - [SMALL_STATE(1145)] = 28332, - [SMALL_STATE(1146)] = 28373, - [SMALL_STATE(1147)] = 28414, - [SMALL_STATE(1148)] = 28459, - [SMALL_STATE(1149)] = 28500, - [SMALL_STATE(1150)] = 28541, - [SMALL_STATE(1151)] = 28582, - [SMALL_STATE(1152)] = 28623, - [SMALL_STATE(1153)] = 28664, - [SMALL_STATE(1154)] = 28705, - [SMALL_STATE(1155)] = 28746, - [SMALL_STATE(1156)] = 28787, - [SMALL_STATE(1157)] = 28828, - [SMALL_STATE(1158)] = 28873, - [SMALL_STATE(1159)] = 28918, - [SMALL_STATE(1160)] = 28959, - [SMALL_STATE(1161)] = 29000, - [SMALL_STATE(1162)] = 29041, - [SMALL_STATE(1163)] = 29086, - [SMALL_STATE(1164)] = 29127, - [SMALL_STATE(1165)] = 29168, - [SMALL_STATE(1166)] = 29209, - [SMALL_STATE(1167)] = 29250, - [SMALL_STATE(1168)] = 29290, - [SMALL_STATE(1169)] = 29330, - [SMALL_STATE(1170)] = 29374, - [SMALL_STATE(1171)] = 29414, - [SMALL_STATE(1172)] = 29454, - [SMALL_STATE(1173)] = 29494, - [SMALL_STATE(1174)] = 29534, - [SMALL_STATE(1175)] = 29574, - [SMALL_STATE(1176)] = 29614, - [SMALL_STATE(1177)] = 29656, - [SMALL_STATE(1178)] = 29696, - [SMALL_STATE(1179)] = 29736, - [SMALL_STATE(1180)] = 29776, - [SMALL_STATE(1181)] = 29816, - [SMALL_STATE(1182)] = 29856, - [SMALL_STATE(1183)] = 29896, - [SMALL_STATE(1184)] = 29936, - [SMALL_STATE(1185)] = 29976, - [SMALL_STATE(1186)] = 30016, - [SMALL_STATE(1187)] = 30056, - [SMALL_STATE(1188)] = 30096, - [SMALL_STATE(1189)] = 30136, - [SMALL_STATE(1190)] = 30176, - [SMALL_STATE(1191)] = 30216, - [SMALL_STATE(1192)] = 30256, - [SMALL_STATE(1193)] = 30296, - [SMALL_STATE(1194)] = 30336, - [SMALL_STATE(1195)] = 30376, - [SMALL_STATE(1196)] = 30416, - [SMALL_STATE(1197)] = 30456, - [SMALL_STATE(1198)] = 30496, - [SMALL_STATE(1199)] = 30536, - [SMALL_STATE(1200)] = 30576, - [SMALL_STATE(1201)] = 30616, - [SMALL_STATE(1202)] = 30656, - [SMALL_STATE(1203)] = 30696, - [SMALL_STATE(1204)] = 30735, - [SMALL_STATE(1205)] = 30774, - [SMALL_STATE(1206)] = 30813, - [SMALL_STATE(1207)] = 30847, - [SMALL_STATE(1208)] = 30878, - [SMALL_STATE(1209)] = 30909, - [SMALL_STATE(1210)] = 30940, - [SMALL_STATE(1211)] = 30973, - [SMALL_STATE(1212)] = 31004, - [SMALL_STATE(1213)] = 31035, - [SMALL_STATE(1214)] = 31066, - [SMALL_STATE(1215)] = 31097, - [SMALL_STATE(1216)] = 31128, - [SMALL_STATE(1217)] = 31159, - [SMALL_STATE(1218)] = 31190, - [SMALL_STATE(1219)] = 31221, - [SMALL_STATE(1220)] = 31252, - [SMALL_STATE(1221)] = 31283, - [SMALL_STATE(1222)] = 31314, - [SMALL_STATE(1223)] = 31345, - [SMALL_STATE(1224)] = 31376, - [SMALL_STATE(1225)] = 31407, - [SMALL_STATE(1226)] = 31438, - [SMALL_STATE(1227)] = 31469, - [SMALL_STATE(1228)] = 31500, - [SMALL_STATE(1229)] = 31531, - [SMALL_STATE(1230)] = 31562, - [SMALL_STATE(1231)] = 31593, - [SMALL_STATE(1232)] = 31624, - [SMALL_STATE(1233)] = 31655, - [SMALL_STATE(1234)] = 31686, - [SMALL_STATE(1235)] = 31717, - [SMALL_STATE(1236)] = 31748, - [SMALL_STATE(1237)] = 31779, - [SMALL_STATE(1238)] = 31810, - [SMALL_STATE(1239)] = 31841, - [SMALL_STATE(1240)] = 31872, - [SMALL_STATE(1241)] = 31903, - [SMALL_STATE(1242)] = 31934, - [SMALL_STATE(1243)] = 31965, - [SMALL_STATE(1244)] = 31996, - [SMALL_STATE(1245)] = 32027, - [SMALL_STATE(1246)] = 32058, - [SMALL_STATE(1247)] = 32089, - [SMALL_STATE(1248)] = 32120, - [SMALL_STATE(1249)] = 32151, - [SMALL_STATE(1250)] = 32182, - [SMALL_STATE(1251)] = 32213, - [SMALL_STATE(1252)] = 32244, - [SMALL_STATE(1253)] = 32275, - [SMALL_STATE(1254)] = 32306, - [SMALL_STATE(1255)] = 32337, - [SMALL_STATE(1256)] = 32368, - [SMALL_STATE(1257)] = 32399, - [SMALL_STATE(1258)] = 32430, - [SMALL_STATE(1259)] = 32461, - [SMALL_STATE(1260)] = 32492, - [SMALL_STATE(1261)] = 32523, - [SMALL_STATE(1262)] = 32550, - [SMALL_STATE(1263)] = 32578, - [SMALL_STATE(1264)] = 32606, - [SMALL_STATE(1265)] = 32634, - [SMALL_STATE(1266)] = 32662, - [SMALL_STATE(1267)] = 32690, - [SMALL_STATE(1268)] = 32718, - [SMALL_STATE(1269)] = 32744, - [SMALL_STATE(1270)] = 32766, - [SMALL_STATE(1271)] = 32789, - [SMALL_STATE(1272)] = 32812, - [SMALL_STATE(1273)] = 32835, - [SMALL_STATE(1274)] = 32858, - [SMALL_STATE(1275)] = 32881, - [SMALL_STATE(1276)] = 32896, - [SMALL_STATE(1277)] = 32919, - [SMALL_STATE(1278)] = 32942, - [SMALL_STATE(1279)] = 32957, - [SMALL_STATE(1280)] = 32980, - [SMALL_STATE(1281)] = 33003, - [SMALL_STATE(1282)] = 33026, - [SMALL_STATE(1283)] = 33049, - [SMALL_STATE(1284)] = 33072, - [SMALL_STATE(1285)] = 33095, - [SMALL_STATE(1286)] = 33118, - [SMALL_STATE(1287)] = 33141, - [SMALL_STATE(1288)] = 33164, - [SMALL_STATE(1289)] = 33187, - [SMALL_STATE(1290)] = 33210, - [SMALL_STATE(1291)] = 33233, - [SMALL_STATE(1292)] = 33254, - [SMALL_STATE(1293)] = 33277, - [SMALL_STATE(1294)] = 33300, - [SMALL_STATE(1295)] = 33322, - [SMALL_STATE(1296)] = 33332, - [SMALL_STATE(1297)] = 33342, - [SMALL_STATE(1298)] = 33356, - [SMALL_STATE(1299)] = 33366, - [SMALL_STATE(1300)] = 33376, - [SMALL_STATE(1301)] = 33386, - [SMALL_STATE(1302)] = 33406, - [SMALL_STATE(1303)] = 33426, - [SMALL_STATE(1304)] = 33446, - [SMALL_STATE(1305)] = 33456, - [SMALL_STATE(1306)] = 33476, - [SMALL_STATE(1307)] = 33496, - [SMALL_STATE(1308)] = 33516, - [SMALL_STATE(1309)] = 33530, - [SMALL_STATE(1310)] = 33550, - [SMALL_STATE(1311)] = 33560, - [SMALL_STATE(1312)] = 33570, - [SMALL_STATE(1313)] = 33590, - [SMALL_STATE(1314)] = 33610, - [SMALL_STATE(1315)] = 33630, - [SMALL_STATE(1316)] = 33652, - [SMALL_STATE(1317)] = 33674, - [SMALL_STATE(1318)] = 33696, - [SMALL_STATE(1319)] = 33716, - [SMALL_STATE(1320)] = 33736, - [SMALL_STATE(1321)] = 33756, - [SMALL_STATE(1322)] = 33778, - [SMALL_STATE(1323)] = 33800, - [SMALL_STATE(1324)] = 33820, - [SMALL_STATE(1325)] = 33840, - [SMALL_STATE(1326)] = 33850, - [SMALL_STATE(1327)] = 33870, - [SMALL_STATE(1328)] = 33890, - [SMALL_STATE(1329)] = 33912, - [SMALL_STATE(1330)] = 33934, - [SMALL_STATE(1331)] = 33954, - [SMALL_STATE(1332)] = 33974, - [SMALL_STATE(1333)] = 33994, - [SMALL_STATE(1334)] = 34016, - [SMALL_STATE(1335)] = 34038, - [SMALL_STATE(1336)] = 34057, - [SMALL_STATE(1337)] = 34076, - [SMALL_STATE(1338)] = 34095, - [SMALL_STATE(1339)] = 34114, - [SMALL_STATE(1340)] = 34133, - [SMALL_STATE(1341)] = 34152, - [SMALL_STATE(1342)] = 34171, - [SMALL_STATE(1343)] = 34190, - [SMALL_STATE(1344)] = 34209, - [SMALL_STATE(1345)] = 34228, - [SMALL_STATE(1346)] = 34247, - [SMALL_STATE(1347)] = 34256, - [SMALL_STATE(1348)] = 34275, - [SMALL_STATE(1349)] = 34294, - [SMALL_STATE(1350)] = 34311, - [SMALL_STATE(1351)] = 34330, - [SMALL_STATE(1352)] = 34349, - [SMALL_STATE(1353)] = 34368, - [SMALL_STATE(1354)] = 34377, - [SMALL_STATE(1355)] = 34396, - [SMALL_STATE(1356)] = 34415, - [SMALL_STATE(1357)] = 34434, - [SMALL_STATE(1358)] = 34443, - [SMALL_STATE(1359)] = 34452, - [SMALL_STATE(1360)] = 34471, - [SMALL_STATE(1361)] = 34490, - [SMALL_STATE(1362)] = 34509, - [SMALL_STATE(1363)] = 34528, - [SMALL_STATE(1364)] = 34547, - [SMALL_STATE(1365)] = 34566, - [SMALL_STATE(1366)] = 34585, - [SMALL_STATE(1367)] = 34604, - [SMALL_STATE(1368)] = 34623, - [SMALL_STATE(1369)] = 34642, - [SMALL_STATE(1370)] = 34661, - [SMALL_STATE(1371)] = 34680, - [SMALL_STATE(1372)] = 34699, - [SMALL_STATE(1373)] = 34718, - [SMALL_STATE(1374)] = 34727, - [SMALL_STATE(1375)] = 34746, - [SMALL_STATE(1376)] = 34765, - [SMALL_STATE(1377)] = 34784, - [SMALL_STATE(1378)] = 34793, - [SMALL_STATE(1379)] = 34802, - [SMALL_STATE(1380)] = 34821, - [SMALL_STATE(1381)] = 34830, - [SMALL_STATE(1382)] = 34849, - [SMALL_STATE(1383)] = 34868, - [SMALL_STATE(1384)] = 34887, - [SMALL_STATE(1385)] = 34896, - [SMALL_STATE(1386)] = 34905, - [SMALL_STATE(1387)] = 34924, - [SMALL_STATE(1388)] = 34941, - [SMALL_STATE(1389)] = 34960, - [SMALL_STATE(1390)] = 34977, - [SMALL_STATE(1391)] = 34996, - [SMALL_STATE(1392)] = 35015, - [SMALL_STATE(1393)] = 35032, - [SMALL_STATE(1394)] = 35041, - [SMALL_STATE(1395)] = 35050, - [SMALL_STATE(1396)] = 35069, - [SMALL_STATE(1397)] = 35086, - [SMALL_STATE(1398)] = 35095, - [SMALL_STATE(1399)] = 35114, - [SMALL_STATE(1400)] = 35123, - [SMALL_STATE(1401)] = 35132, - [SMALL_STATE(1402)] = 35140, - [SMALL_STATE(1403)] = 35152, - [SMALL_STATE(1404)] = 35168, - [SMALL_STATE(1405)] = 35184, - [SMALL_STATE(1406)] = 35200, - [SMALL_STATE(1407)] = 35214, - [SMALL_STATE(1408)] = 35230, - [SMALL_STATE(1409)] = 35238, - [SMALL_STATE(1410)] = 35246, - [SMALL_STATE(1411)] = 35260, - [SMALL_STATE(1412)] = 35276, - [SMALL_STATE(1413)] = 35292, - [SMALL_STATE(1414)] = 35308, - [SMALL_STATE(1415)] = 35324, - [SMALL_STATE(1416)] = 35338, - [SMALL_STATE(1417)] = 35354, - [SMALL_STATE(1418)] = 35370, - [SMALL_STATE(1419)] = 35384, - [SMALL_STATE(1420)] = 35400, - [SMALL_STATE(1421)] = 35414, - [SMALL_STATE(1422)] = 35430, - [SMALL_STATE(1423)] = 35444, - [SMALL_STATE(1424)] = 35460, - [SMALL_STATE(1425)] = 35476, - [SMALL_STATE(1426)] = 35490, - [SMALL_STATE(1427)] = 35506, - [SMALL_STATE(1428)] = 35522, - [SMALL_STATE(1429)] = 35536, - [SMALL_STATE(1430)] = 35544, - [SMALL_STATE(1431)] = 35558, - [SMALL_STATE(1432)] = 35572, - [SMALL_STATE(1433)] = 35586, - [SMALL_STATE(1434)] = 35600, - [SMALL_STATE(1435)] = 35616, - [SMALL_STATE(1436)] = 35624, - [SMALL_STATE(1437)] = 35640, - [SMALL_STATE(1438)] = 35654, - [SMALL_STATE(1439)] = 35668, - [SMALL_STATE(1440)] = 35684, - [SMALL_STATE(1441)] = 35700, - [SMALL_STATE(1442)] = 35714, - [SMALL_STATE(1443)] = 35728, - [SMALL_STATE(1444)] = 35744, - [SMALL_STATE(1445)] = 35758, - [SMALL_STATE(1446)] = 35774, - [SMALL_STATE(1447)] = 35788, - [SMALL_STATE(1448)] = 35802, - [SMALL_STATE(1449)] = 35818, - [SMALL_STATE(1450)] = 35832, - [SMALL_STATE(1451)] = 35848, - [SMALL_STATE(1452)] = 35864, - [SMALL_STATE(1453)] = 35872, - [SMALL_STATE(1454)] = 35888, - [SMALL_STATE(1455)] = 35896, - [SMALL_STATE(1456)] = 35910, - [SMALL_STATE(1457)] = 35921, - [SMALL_STATE(1458)] = 35932, - [SMALL_STATE(1459)] = 35945, - [SMALL_STATE(1460)] = 35956, - [SMALL_STATE(1461)] = 35967, - [SMALL_STATE(1462)] = 35978, - [SMALL_STATE(1463)] = 35989, - [SMALL_STATE(1464)] = 36000, - [SMALL_STATE(1465)] = 36011, - [SMALL_STATE(1466)] = 36022, - [SMALL_STATE(1467)] = 36033, - [SMALL_STATE(1468)] = 36042, - [SMALL_STATE(1469)] = 36055, - [SMALL_STATE(1470)] = 36066, - [SMALL_STATE(1471)] = 36075, - [SMALL_STATE(1472)] = 36086, - [SMALL_STATE(1473)] = 36095, - [SMALL_STATE(1474)] = 36104, - [SMALL_STATE(1475)] = 36115, - [SMALL_STATE(1476)] = 36124, - [SMALL_STATE(1477)] = 36135, - [SMALL_STATE(1478)] = 36148, - [SMALL_STATE(1479)] = 36159, - [SMALL_STATE(1480)] = 36170, - [SMALL_STATE(1481)] = 36181, - [SMALL_STATE(1482)] = 36192, - [SMALL_STATE(1483)] = 36203, - [SMALL_STATE(1484)] = 36214, - [SMALL_STATE(1485)] = 36225, - [SMALL_STATE(1486)] = 36236, - [SMALL_STATE(1487)] = 36247, - [SMALL_STATE(1488)] = 36258, - [SMALL_STATE(1489)] = 36269, - [SMALL_STATE(1490)] = 36278, - [SMALL_STATE(1491)] = 36291, - [SMALL_STATE(1492)] = 36302, - [SMALL_STATE(1493)] = 36313, - [SMALL_STATE(1494)] = 36324, - [SMALL_STATE(1495)] = 36335, - [SMALL_STATE(1496)] = 36346, - [SMALL_STATE(1497)] = 36357, - [SMALL_STATE(1498)] = 36368, - [SMALL_STATE(1499)] = 36379, - [SMALL_STATE(1500)] = 36390, - [SMALL_STATE(1501)] = 36403, - [SMALL_STATE(1502)] = 36414, - [SMALL_STATE(1503)] = 36425, - [SMALL_STATE(1504)] = 36436, - [SMALL_STATE(1505)] = 36447, - [SMALL_STATE(1506)] = 36458, - [SMALL_STATE(1507)] = 36469, - [SMALL_STATE(1508)] = 36480, - [SMALL_STATE(1509)] = 36491, - [SMALL_STATE(1510)] = 36502, - [SMALL_STATE(1511)] = 36513, - [SMALL_STATE(1512)] = 36524, - [SMALL_STATE(1513)] = 36535, - [SMALL_STATE(1514)] = 36544, - [SMALL_STATE(1515)] = 36555, - [SMALL_STATE(1516)] = 36564, - [SMALL_STATE(1517)] = 36575, - [SMALL_STATE(1518)] = 36586, - [SMALL_STATE(1519)] = 36597, - [SMALL_STATE(1520)] = 36608, - [SMALL_STATE(1521)] = 36619, - [SMALL_STATE(1522)] = 36630, - [SMALL_STATE(1523)] = 36641, - [SMALL_STATE(1524)] = 36652, - [SMALL_STATE(1525)] = 36663, - [SMALL_STATE(1526)] = 36674, - [SMALL_STATE(1527)] = 36685, - [SMALL_STATE(1528)] = 36694, - [SMALL_STATE(1529)] = 36705, - [SMALL_STATE(1530)] = 36714, - [SMALL_STATE(1531)] = 36725, - [SMALL_STATE(1532)] = 36736, - [SMALL_STATE(1533)] = 36745, - [SMALL_STATE(1534)] = 36756, - [SMALL_STATE(1535)] = 36765, - [SMALL_STATE(1536)] = 36776, - [SMALL_STATE(1537)] = 36787, - [SMALL_STATE(1538)] = 36798, - [SMALL_STATE(1539)] = 36807, - [SMALL_STATE(1540)] = 36818, - [SMALL_STATE(1541)] = 36829, - [SMALL_STATE(1542)] = 36840, - [SMALL_STATE(1543)] = 36851, - [SMALL_STATE(1544)] = 36862, - [SMALL_STATE(1545)] = 36873, - [SMALL_STATE(1546)] = 36884, - [SMALL_STATE(1547)] = 36893, - [SMALL_STATE(1548)] = 36902, - [SMALL_STATE(1549)] = 36913, - [SMALL_STATE(1550)] = 36922, - [SMALL_STATE(1551)] = 36931, - [SMALL_STATE(1552)] = 36942, - [SMALL_STATE(1553)] = 36953, - [SMALL_STATE(1554)] = 36964, - [SMALL_STATE(1555)] = 36975, - [SMALL_STATE(1556)] = 36986, - [SMALL_STATE(1557)] = 36997, - [SMALL_STATE(1558)] = 37008, - [SMALL_STATE(1559)] = 37019, - [SMALL_STATE(1560)] = 37030, - [SMALL_STATE(1561)] = 37041, - [SMALL_STATE(1562)] = 37052, - [SMALL_STATE(1563)] = 37063, - [SMALL_STATE(1564)] = 37074, - [SMALL_STATE(1565)] = 37085, - [SMALL_STATE(1566)] = 37096, - [SMALL_STATE(1567)] = 37107, - [SMALL_STATE(1568)] = 37118, - [SMALL_STATE(1569)] = 37129, - [SMALL_STATE(1570)] = 37140, - [SMALL_STATE(1571)] = 37151, - [SMALL_STATE(1572)] = 37162, - [SMALL_STATE(1573)] = 37173, - [SMALL_STATE(1574)] = 37184, - [SMALL_STATE(1575)] = 37195, - [SMALL_STATE(1576)] = 37206, - [SMALL_STATE(1577)] = 37217, - [SMALL_STATE(1578)] = 37228, - [SMALL_STATE(1579)] = 37239, - [SMALL_STATE(1580)] = 37250, - [SMALL_STATE(1581)] = 37261, - [SMALL_STATE(1582)] = 37272, - [SMALL_STATE(1583)] = 37282, - [SMALL_STATE(1584)] = 37292, - [SMALL_STATE(1585)] = 37302, - [SMALL_STATE(1586)] = 37308, - [SMALL_STATE(1587)] = 37314, - [SMALL_STATE(1588)] = 37320, - [SMALL_STATE(1589)] = 37326, - [SMALL_STATE(1590)] = 37336, - [SMALL_STATE(1591)] = 37346, - [SMALL_STATE(1592)] = 37356, - [SMALL_STATE(1593)] = 37366, - [SMALL_STATE(1594)] = 37374, - [SMALL_STATE(1595)] = 37382, - [SMALL_STATE(1596)] = 37392, - [SMALL_STATE(1597)] = 37402, - [SMALL_STATE(1598)] = 37410, - [SMALL_STATE(1599)] = 37416, - [SMALL_STATE(1600)] = 37426, - [SMALL_STATE(1601)] = 37434, - [SMALL_STATE(1602)] = 37440, - [SMALL_STATE(1603)] = 37450, - [SMALL_STATE(1604)] = 37460, - [SMALL_STATE(1605)] = 37468, - [SMALL_STATE(1606)] = 37478, - [SMALL_STATE(1607)] = 37484, - [SMALL_STATE(1608)] = 37494, - [SMALL_STATE(1609)] = 37502, - [SMALL_STATE(1610)] = 37512, - [SMALL_STATE(1611)] = 37522, - [SMALL_STATE(1612)] = 37532, - [SMALL_STATE(1613)] = 37538, - [SMALL_STATE(1614)] = 37548, - [SMALL_STATE(1615)] = 37556, - [SMALL_STATE(1616)] = 37566, - [SMALL_STATE(1617)] = 37576, - [SMALL_STATE(1618)] = 37586, - [SMALL_STATE(1619)] = 37594, - [SMALL_STATE(1620)] = 37600, - [SMALL_STATE(1621)] = 37608, - [SMALL_STATE(1622)] = 37618, - [SMALL_STATE(1623)] = 37628, - [SMALL_STATE(1624)] = 37638, - [SMALL_STATE(1625)] = 37648, - [SMALL_STATE(1626)] = 37654, - [SMALL_STATE(1627)] = 37662, - [SMALL_STATE(1628)] = 37668, - [SMALL_STATE(1629)] = 37674, - [SMALL_STATE(1630)] = 37680, - [SMALL_STATE(1631)] = 37686, - [SMALL_STATE(1632)] = 37692, - [SMALL_STATE(1633)] = 37698, - [SMALL_STATE(1634)] = 37708, - [SMALL_STATE(1635)] = 37718, - [SMALL_STATE(1636)] = 37724, - [SMALL_STATE(1637)] = 37734, - [SMALL_STATE(1638)] = 37742, - [SMALL_STATE(1639)] = 37750, - [SMALL_STATE(1640)] = 37760, - [SMALL_STATE(1641)] = 37770, - [SMALL_STATE(1642)] = 37776, - [SMALL_STATE(1643)] = 37782, - [SMALL_STATE(1644)] = 37790, - [SMALL_STATE(1645)] = 37796, - [SMALL_STATE(1646)] = 37806, - [SMALL_STATE(1647)] = 37816, - [SMALL_STATE(1648)] = 37824, - [SMALL_STATE(1649)] = 37832, - [SMALL_STATE(1650)] = 37840, - [SMALL_STATE(1651)] = 37850, - [SMALL_STATE(1652)] = 37860, - [SMALL_STATE(1653)] = 37866, - [SMALL_STATE(1654)] = 37872, - [SMALL_STATE(1655)] = 37878, - [SMALL_STATE(1656)] = 37888, - [SMALL_STATE(1657)] = 37898, - [SMALL_STATE(1658)] = 37904, - [SMALL_STATE(1659)] = 37910, - [SMALL_STATE(1660)] = 37920, - [SMALL_STATE(1661)] = 37930, - [SMALL_STATE(1662)] = 37940, - [SMALL_STATE(1663)] = 37946, - [SMALL_STATE(1664)] = 37952, - [SMALL_STATE(1665)] = 37958, - [SMALL_STATE(1666)] = 37964, - [SMALL_STATE(1667)] = 37970, - [SMALL_STATE(1668)] = 37978, - [SMALL_STATE(1669)] = 37984, - [SMALL_STATE(1670)] = 37990, - [SMALL_STATE(1671)] = 37998, - [SMALL_STATE(1672)] = 38006, - [SMALL_STATE(1673)] = 38012, - [SMALL_STATE(1674)] = 38018, - [SMALL_STATE(1675)] = 38024, - [SMALL_STATE(1676)] = 38030, - [SMALL_STATE(1677)] = 38036, - [SMALL_STATE(1678)] = 38042, - [SMALL_STATE(1679)] = 38048, - [SMALL_STATE(1680)] = 38058, - [SMALL_STATE(1681)] = 38068, - [SMALL_STATE(1682)] = 38078, - [SMALL_STATE(1683)] = 38084, - [SMALL_STATE(1684)] = 38094, - [SMALL_STATE(1685)] = 38100, - [SMALL_STATE(1686)] = 38106, - [SMALL_STATE(1687)] = 38112, - [SMALL_STATE(1688)] = 38118, - [SMALL_STATE(1689)] = 38124, - [SMALL_STATE(1690)] = 38130, - [SMALL_STATE(1691)] = 38136, - [SMALL_STATE(1692)] = 38142, - [SMALL_STATE(1693)] = 38152, - [SMALL_STATE(1694)] = 38160, - [SMALL_STATE(1695)] = 38166, - [SMALL_STATE(1696)] = 38172, - [SMALL_STATE(1697)] = 38178, - [SMALL_STATE(1698)] = 38184, - [SMALL_STATE(1699)] = 38190, - [SMALL_STATE(1700)] = 38200, - [SMALL_STATE(1701)] = 38210, - [SMALL_STATE(1702)] = 38218, - [SMALL_STATE(1703)] = 38228, - [SMALL_STATE(1704)] = 38234, - [SMALL_STATE(1705)] = 38240, - [SMALL_STATE(1706)] = 38250, - [SMALL_STATE(1707)] = 38260, - [SMALL_STATE(1708)] = 38266, - [SMALL_STATE(1709)] = 38272, - [SMALL_STATE(1710)] = 38278, - [SMALL_STATE(1711)] = 38284, - [SMALL_STATE(1712)] = 38294, - [SMALL_STATE(1713)] = 38304, - [SMALL_STATE(1714)] = 38310, - [SMALL_STATE(1715)] = 38316, - [SMALL_STATE(1716)] = 38322, - [SMALL_STATE(1717)] = 38332, - [SMALL_STATE(1718)] = 38338, - [SMALL_STATE(1719)] = 38344, - [SMALL_STATE(1720)] = 38350, - [SMALL_STATE(1721)] = 38356, - [SMALL_STATE(1722)] = 38364, - [SMALL_STATE(1723)] = 38374, - [SMALL_STATE(1724)] = 38384, - [SMALL_STATE(1725)] = 38394, - [SMALL_STATE(1726)] = 38400, - [SMALL_STATE(1727)] = 38406, - [SMALL_STATE(1728)] = 38414, - [SMALL_STATE(1729)] = 38424, - [SMALL_STATE(1730)] = 38431, - [SMALL_STATE(1731)] = 38436, - [SMALL_STATE(1732)] = 38441, - [SMALL_STATE(1733)] = 38448, - [SMALL_STATE(1734)] = 38453, - [SMALL_STATE(1735)] = 38460, - [SMALL_STATE(1736)] = 38465, - [SMALL_STATE(1737)] = 38472, - [SMALL_STATE(1738)] = 38477, - [SMALL_STATE(1739)] = 38482, - [SMALL_STATE(1740)] = 38487, - [SMALL_STATE(1741)] = 38494, - [SMALL_STATE(1742)] = 38501, - [SMALL_STATE(1743)] = 38508, - [SMALL_STATE(1744)] = 38513, - [SMALL_STATE(1745)] = 38518, - [SMALL_STATE(1746)] = 38523, - [SMALL_STATE(1747)] = 38530, - [SMALL_STATE(1748)] = 38535, - [SMALL_STATE(1749)] = 38540, - [SMALL_STATE(1750)] = 38545, - [SMALL_STATE(1751)] = 38550, - [SMALL_STATE(1752)] = 38557, - [SMALL_STATE(1753)] = 38562, - [SMALL_STATE(1754)] = 38567, - [SMALL_STATE(1755)] = 38574, - [SMALL_STATE(1756)] = 38579, - [SMALL_STATE(1757)] = 38584, - [SMALL_STATE(1758)] = 38591, - [SMALL_STATE(1759)] = 38598, - [SMALL_STATE(1760)] = 38603, - [SMALL_STATE(1761)] = 38610, - [SMALL_STATE(1762)] = 38617, - [SMALL_STATE(1763)] = 38624, - [SMALL_STATE(1764)] = 38629, - [SMALL_STATE(1765)] = 38634, - [SMALL_STATE(1766)] = 38641, - [SMALL_STATE(1767)] = 38646, - [SMALL_STATE(1768)] = 38651, - [SMALL_STATE(1769)] = 38658, - [SMALL_STATE(1770)] = 38665, - [SMALL_STATE(1771)] = 38672, - [SMALL_STATE(1772)] = 38679, - [SMALL_STATE(1773)] = 38686, - [SMALL_STATE(1774)] = 38691, - [SMALL_STATE(1775)] = 38698, - [SMALL_STATE(1776)] = 38705, - [SMALL_STATE(1777)] = 38712, - [SMALL_STATE(1778)] = 38719, - [SMALL_STATE(1779)] = 38726, - [SMALL_STATE(1780)] = 38733, - [SMALL_STATE(1781)] = 38740, - [SMALL_STATE(1782)] = 38747, - [SMALL_STATE(1783)] = 38752, - [SMALL_STATE(1784)] = 38759, - [SMALL_STATE(1785)] = 38764, - [SMALL_STATE(1786)] = 38769, - [SMALL_STATE(1787)] = 38776, - [SMALL_STATE(1788)] = 38781, - [SMALL_STATE(1789)] = 38788, - [SMALL_STATE(1790)] = 38795, - [SMALL_STATE(1791)] = 38800, - [SMALL_STATE(1792)] = 38805, - [SMALL_STATE(1793)] = 38812, - [SMALL_STATE(1794)] = 38817, - [SMALL_STATE(1795)] = 38822, - [SMALL_STATE(1796)] = 38829, - [SMALL_STATE(1797)] = 38834, - [SMALL_STATE(1798)] = 38841, - [SMALL_STATE(1799)] = 38848, - [SMALL_STATE(1800)] = 38853, - [SMALL_STATE(1801)] = 38858, - [SMALL_STATE(1802)] = 38865, - [SMALL_STATE(1803)] = 38872, - [SMALL_STATE(1804)] = 38879, - [SMALL_STATE(1805)] = 38886, - [SMALL_STATE(1806)] = 38893, - [SMALL_STATE(1807)] = 38900, - [SMALL_STATE(1808)] = 38905, - [SMALL_STATE(1809)] = 38910, - [SMALL_STATE(1810)] = 38917, - [SMALL_STATE(1811)] = 38922, - [SMALL_STATE(1812)] = 38929, - [SMALL_STATE(1813)] = 38936, - [SMALL_STATE(1814)] = 38941, - [SMALL_STATE(1815)] = 38948, - [SMALL_STATE(1816)] = 38953, - [SMALL_STATE(1817)] = 38958, - [SMALL_STATE(1818)] = 38963, - [SMALL_STATE(1819)] = 38970, - [SMALL_STATE(1820)] = 38977, - [SMALL_STATE(1821)] = 38982, - [SMALL_STATE(1822)] = 38987, - [SMALL_STATE(1823)] = 38992, - [SMALL_STATE(1824)] = 38999, - [SMALL_STATE(1825)] = 39006, - [SMALL_STATE(1826)] = 39011, - [SMALL_STATE(1827)] = 39018, - [SMALL_STATE(1828)] = 39023, - [SMALL_STATE(1829)] = 39030, - [SMALL_STATE(1830)] = 39037, - [SMALL_STATE(1831)] = 39044, - [SMALL_STATE(1832)] = 39051, - [SMALL_STATE(1833)] = 39058, - [SMALL_STATE(1834)] = 39065, - [SMALL_STATE(1835)] = 39072, - [SMALL_STATE(1836)] = 39077, - [SMALL_STATE(1837)] = 39082, - [SMALL_STATE(1838)] = 39089, - [SMALL_STATE(1839)] = 39094, - [SMALL_STATE(1840)] = 39101, - [SMALL_STATE(1841)] = 39108, - [SMALL_STATE(1842)] = 39113, - [SMALL_STATE(1843)] = 39118, - [SMALL_STATE(1844)] = 39123, - [SMALL_STATE(1845)] = 39128, - [SMALL_STATE(1846)] = 39133, - [SMALL_STATE(1847)] = 39138, - [SMALL_STATE(1848)] = 39143, - [SMALL_STATE(1849)] = 39148, - [SMALL_STATE(1850)] = 39153, - [SMALL_STATE(1851)] = 39158, - [SMALL_STATE(1852)] = 39163, - [SMALL_STATE(1853)] = 39168, - [SMALL_STATE(1854)] = 39173, - [SMALL_STATE(1855)] = 39180, - [SMALL_STATE(1856)] = 39187, - [SMALL_STATE(1857)] = 39192, - [SMALL_STATE(1858)] = 39199, - [SMALL_STATE(1859)] = 39206, - [SMALL_STATE(1860)] = 39211, - [SMALL_STATE(1861)] = 39216, - [SMALL_STATE(1862)] = 39223, - [SMALL_STATE(1863)] = 39230, - [SMALL_STATE(1864)] = 39237, - [SMALL_STATE(1865)] = 39244, - [SMALL_STATE(1866)] = 39251, - [SMALL_STATE(1867)] = 39256, - [SMALL_STATE(1868)] = 39261, - [SMALL_STATE(1869)] = 39266, - [SMALL_STATE(1870)] = 39273, - [SMALL_STATE(1871)] = 39278, - [SMALL_STATE(1872)] = 39283, - [SMALL_STATE(1873)] = 39288, - [SMALL_STATE(1874)] = 39293, - [SMALL_STATE(1875)] = 39298, - [SMALL_STATE(1876)] = 39303, - [SMALL_STATE(1877)] = 39308, - [SMALL_STATE(1878)] = 39315, - [SMALL_STATE(1879)] = 39322, - [SMALL_STATE(1880)] = 39329, - [SMALL_STATE(1881)] = 39336, - [SMALL_STATE(1882)] = 39341, - [SMALL_STATE(1883)] = 39346, - [SMALL_STATE(1884)] = 39351, - [SMALL_STATE(1885)] = 39356, - [SMALL_STATE(1886)] = 39363, - [SMALL_STATE(1887)] = 39368, - [SMALL_STATE(1888)] = 39373, - [SMALL_STATE(1889)] = 39380, - [SMALL_STATE(1890)] = 39385, - [SMALL_STATE(1891)] = 39392, - [SMALL_STATE(1892)] = 39397, - [SMALL_STATE(1893)] = 39402, - [SMALL_STATE(1894)] = 39407, - [SMALL_STATE(1895)] = 39412, - [SMALL_STATE(1896)] = 39417, - [SMALL_STATE(1897)] = 39422, - [SMALL_STATE(1898)] = 39427, - [SMALL_STATE(1899)] = 39432, - [SMALL_STATE(1900)] = 39439, - [SMALL_STATE(1901)] = 39444, - [SMALL_STATE(1902)] = 39449, - [SMALL_STATE(1903)] = 39454, - [SMALL_STATE(1904)] = 39459, - [SMALL_STATE(1905)] = 39466, - [SMALL_STATE(1906)] = 39471, - [SMALL_STATE(1907)] = 39478, - [SMALL_STATE(1908)] = 39485, - [SMALL_STATE(1909)] = 39490, - [SMALL_STATE(1910)] = 39497, - [SMALL_STATE(1911)] = 39504, - [SMALL_STATE(1912)] = 39509, - [SMALL_STATE(1913)] = 39516, - [SMALL_STATE(1914)] = 39521, - [SMALL_STATE(1915)] = 39526, - [SMALL_STATE(1916)] = 39531, - [SMALL_STATE(1917)] = 39538, - [SMALL_STATE(1918)] = 39545, - [SMALL_STATE(1919)] = 39550, - [SMALL_STATE(1920)] = 39555, - [SMALL_STATE(1921)] = 39560, - [SMALL_STATE(1922)] = 39565, - [SMALL_STATE(1923)] = 39570, - [SMALL_STATE(1924)] = 39575, - [SMALL_STATE(1925)] = 39580, - [SMALL_STATE(1926)] = 39587, - [SMALL_STATE(1927)] = 39594, - [SMALL_STATE(1928)] = 39599, - [SMALL_STATE(1929)] = 39604, - [SMALL_STATE(1930)] = 39611, - [SMALL_STATE(1931)] = 39618, - [SMALL_STATE(1932)] = 39625, - [SMALL_STATE(1933)] = 39632, - [SMALL_STATE(1934)] = 39639, - [SMALL_STATE(1935)] = 39646, - [SMALL_STATE(1936)] = 39653, - [SMALL_STATE(1937)] = 39658, - [SMALL_STATE(1938)] = 39665, - [SMALL_STATE(1939)] = 39672, - [SMALL_STATE(1940)] = 39679, - [SMALL_STATE(1941)] = 39686, - [SMALL_STATE(1942)] = 39691, - [SMALL_STATE(1943)] = 39696, - [SMALL_STATE(1944)] = 39703, - [SMALL_STATE(1945)] = 39710, - [SMALL_STATE(1946)] = 39717, - [SMALL_STATE(1947)] = 39724, - [SMALL_STATE(1948)] = 39729, - [SMALL_STATE(1949)] = 39736, - [SMALL_STATE(1950)] = 39743, - [SMALL_STATE(1951)] = 39748, - [SMALL_STATE(1952)] = 39755, - [SMALL_STATE(1953)] = 39762, - [SMALL_STATE(1954)] = 39769, - [SMALL_STATE(1955)] = 39774, - [SMALL_STATE(1956)] = 39778, - [SMALL_STATE(1957)] = 39782, - [SMALL_STATE(1958)] = 39786, - [SMALL_STATE(1959)] = 39790, - [SMALL_STATE(1960)] = 39794, - [SMALL_STATE(1961)] = 39798, - [SMALL_STATE(1962)] = 39802, - [SMALL_STATE(1963)] = 39806, - [SMALL_STATE(1964)] = 39810, - [SMALL_STATE(1965)] = 39814, - [SMALL_STATE(1966)] = 39818, - [SMALL_STATE(1967)] = 39822, - [SMALL_STATE(1968)] = 39826, - [SMALL_STATE(1969)] = 39830, - [SMALL_STATE(1970)] = 39834, - [SMALL_STATE(1971)] = 39838, - [SMALL_STATE(1972)] = 39842, - [SMALL_STATE(1973)] = 39846, - [SMALL_STATE(1974)] = 39850, - [SMALL_STATE(1975)] = 39854, - [SMALL_STATE(1976)] = 39858, - [SMALL_STATE(1977)] = 39862, - [SMALL_STATE(1978)] = 39866, - [SMALL_STATE(1979)] = 39870, - [SMALL_STATE(1980)] = 39874, - [SMALL_STATE(1981)] = 39878, - [SMALL_STATE(1982)] = 39882, - [SMALL_STATE(1983)] = 39886, - [SMALL_STATE(1984)] = 39890, - [SMALL_STATE(1985)] = 39894, - [SMALL_STATE(1986)] = 39898, - [SMALL_STATE(1987)] = 39902, - [SMALL_STATE(1988)] = 39906, - [SMALL_STATE(1989)] = 39910, - [SMALL_STATE(1990)] = 39914, - [SMALL_STATE(1991)] = 39918, - [SMALL_STATE(1992)] = 39922, - [SMALL_STATE(1993)] = 39926, - [SMALL_STATE(1994)] = 39930, - [SMALL_STATE(1995)] = 39934, - [SMALL_STATE(1996)] = 39938, - [SMALL_STATE(1997)] = 39942, - [SMALL_STATE(1998)] = 39946, - [SMALL_STATE(1999)] = 39950, - [SMALL_STATE(2000)] = 39954, - [SMALL_STATE(2001)] = 39958, - [SMALL_STATE(2002)] = 39962, - [SMALL_STATE(2003)] = 39966, - [SMALL_STATE(2004)] = 39970, - [SMALL_STATE(2005)] = 39974, - [SMALL_STATE(2006)] = 39978, - [SMALL_STATE(2007)] = 39982, - [SMALL_STATE(2008)] = 39986, - [SMALL_STATE(2009)] = 39990, - [SMALL_STATE(2010)] = 39994, - [SMALL_STATE(2011)] = 39998, - [SMALL_STATE(2012)] = 40002, - [SMALL_STATE(2013)] = 40006, - [SMALL_STATE(2014)] = 40010, - [SMALL_STATE(2015)] = 40014, - [SMALL_STATE(2016)] = 40018, - [SMALL_STATE(2017)] = 40022, - [SMALL_STATE(2018)] = 40026, - [SMALL_STATE(2019)] = 40030, - [SMALL_STATE(2020)] = 40034, - [SMALL_STATE(2021)] = 40038, - [SMALL_STATE(2022)] = 40042, - [SMALL_STATE(2023)] = 40046, - [SMALL_STATE(2024)] = 40050, - [SMALL_STATE(2025)] = 40054, - [SMALL_STATE(2026)] = 40058, - [SMALL_STATE(2027)] = 40062, - [SMALL_STATE(2028)] = 40066, - [SMALL_STATE(2029)] = 40070, - [SMALL_STATE(2030)] = 40074, - [SMALL_STATE(2031)] = 40078, - [SMALL_STATE(2032)] = 40082, - [SMALL_STATE(2033)] = 40086, - [SMALL_STATE(2034)] = 40090, - [SMALL_STATE(2035)] = 40094, - [SMALL_STATE(2036)] = 40098, - [SMALL_STATE(2037)] = 40102, - [SMALL_STATE(2038)] = 40106, - [SMALL_STATE(2039)] = 40110, - [SMALL_STATE(2040)] = 40114, - [SMALL_STATE(2041)] = 40118, - [SMALL_STATE(2042)] = 40122, - [SMALL_STATE(2043)] = 40126, - [SMALL_STATE(2044)] = 40130, - [SMALL_STATE(2045)] = 40134, - [SMALL_STATE(2046)] = 40138, - [SMALL_STATE(2047)] = 40142, - [SMALL_STATE(2048)] = 40146, - [SMALL_STATE(2049)] = 40150, - [SMALL_STATE(2050)] = 40154, - [SMALL_STATE(2051)] = 40158, - [SMALL_STATE(2052)] = 40162, - [SMALL_STATE(2053)] = 40166, - [SMALL_STATE(2054)] = 40170, - [SMALL_STATE(2055)] = 40174, - [SMALL_STATE(2056)] = 40178, - [SMALL_STATE(2057)] = 40182, - [SMALL_STATE(2058)] = 40186, - [SMALL_STATE(2059)] = 40190, - [SMALL_STATE(2060)] = 40194, - [SMALL_STATE(2061)] = 40198, - [SMALL_STATE(2062)] = 40202, - [SMALL_STATE(2063)] = 40206, - [SMALL_STATE(2064)] = 40210, - [SMALL_STATE(2065)] = 40214, - [SMALL_STATE(2066)] = 40218, - [SMALL_STATE(2067)] = 40222, - [SMALL_STATE(2068)] = 40226, - [SMALL_STATE(2069)] = 40230, - [SMALL_STATE(2070)] = 40234, - [SMALL_STATE(2071)] = 40238, - [SMALL_STATE(2072)] = 40242, - [SMALL_STATE(2073)] = 40246, - [SMALL_STATE(2074)] = 40250, - [SMALL_STATE(2075)] = 40254, - [SMALL_STATE(2076)] = 40258, - [SMALL_STATE(2077)] = 40262, - [SMALL_STATE(2078)] = 40266, - [SMALL_STATE(2079)] = 40270, - [SMALL_STATE(2080)] = 40274, - [SMALL_STATE(2081)] = 40278, - [SMALL_STATE(2082)] = 40282, - [SMALL_STATE(2083)] = 40286, - [SMALL_STATE(2084)] = 40290, - [SMALL_STATE(2085)] = 40294, - [SMALL_STATE(2086)] = 40298, - [SMALL_STATE(2087)] = 40302, - [SMALL_STATE(2088)] = 40306, - [SMALL_STATE(2089)] = 40310, - [SMALL_STATE(2090)] = 40314, - [SMALL_STATE(2091)] = 40318, - [SMALL_STATE(2092)] = 40322, - [SMALL_STATE(2093)] = 40326, - [SMALL_STATE(2094)] = 40330, - [SMALL_STATE(2095)] = 40334, - [SMALL_STATE(2096)] = 40338, - [SMALL_STATE(2097)] = 40342, - [SMALL_STATE(2098)] = 40346, - [SMALL_STATE(2099)] = 40350, - [SMALL_STATE(2100)] = 40354, - [SMALL_STATE(2101)] = 40358, - [SMALL_STATE(2102)] = 40362, - [SMALL_STATE(2103)] = 40366, - [SMALL_STATE(2104)] = 40370, - [SMALL_STATE(2105)] = 40374, - [SMALL_STATE(2106)] = 40378, - [SMALL_STATE(2107)] = 40382, - [SMALL_STATE(2108)] = 40386, - [SMALL_STATE(2109)] = 40390, - [SMALL_STATE(2110)] = 40394, - [SMALL_STATE(2111)] = 40398, - [SMALL_STATE(2112)] = 40402, - [SMALL_STATE(2113)] = 40406, - [SMALL_STATE(2114)] = 40410, - [SMALL_STATE(2115)] = 40414, - [SMALL_STATE(2116)] = 40418, - [SMALL_STATE(2117)] = 40422, - [SMALL_STATE(2118)] = 40426, - [SMALL_STATE(2119)] = 40430, - [SMALL_STATE(2120)] = 40434, - [SMALL_STATE(2121)] = 40438, - [SMALL_STATE(2122)] = 40442, - [SMALL_STATE(2123)] = 40446, - [SMALL_STATE(2124)] = 40450, - [SMALL_STATE(2125)] = 40454, - [SMALL_STATE(2126)] = 40458, - [SMALL_STATE(2127)] = 40462, - [SMALL_STATE(2128)] = 40466, - [SMALL_STATE(2129)] = 40470, - [SMALL_STATE(2130)] = 40474, - [SMALL_STATE(2131)] = 40478, - [SMALL_STATE(2132)] = 40482, - [SMALL_STATE(2133)] = 40486, - [SMALL_STATE(2134)] = 40490, - [SMALL_STATE(2135)] = 40494, - [SMALL_STATE(2136)] = 40498, - [SMALL_STATE(2137)] = 40502, - [SMALL_STATE(2138)] = 40506, - [SMALL_STATE(2139)] = 40510, - [SMALL_STATE(2140)] = 40514, - [SMALL_STATE(2141)] = 40518, - [SMALL_STATE(2142)] = 40522, - [SMALL_STATE(2143)] = 40526, - [SMALL_STATE(2144)] = 40530, - [SMALL_STATE(2145)] = 40534, - [SMALL_STATE(2146)] = 40538, - [SMALL_STATE(2147)] = 40542, - [SMALL_STATE(2148)] = 40546, - [SMALL_STATE(2149)] = 40550, - [SMALL_STATE(2150)] = 40554, - [SMALL_STATE(2151)] = 40558, - [SMALL_STATE(2152)] = 40562, - [SMALL_STATE(2153)] = 40566, - [SMALL_STATE(2154)] = 40570, - [SMALL_STATE(2155)] = 40574, - [SMALL_STATE(2156)] = 40578, - [SMALL_STATE(2157)] = 40582, - [SMALL_STATE(2158)] = 40586, - [SMALL_STATE(2159)] = 40590, - [SMALL_STATE(2160)] = 40594, - [SMALL_STATE(2161)] = 40598, - [SMALL_STATE(2162)] = 40602, - [SMALL_STATE(2163)] = 40606, - [SMALL_STATE(2164)] = 40610, - [SMALL_STATE(2165)] = 40614, - [SMALL_STATE(2166)] = 40618, - [SMALL_STATE(2167)] = 40622, - [SMALL_STATE(2168)] = 40626, - [SMALL_STATE(2169)] = 40630, - [SMALL_STATE(2170)] = 40634, - [SMALL_STATE(2171)] = 40638, - [SMALL_STATE(2172)] = 40642, - [SMALL_STATE(2173)] = 40646, - [SMALL_STATE(2174)] = 40650, - [SMALL_STATE(2175)] = 40654, - [SMALL_STATE(2176)] = 40658, - [SMALL_STATE(2177)] = 40662, - [SMALL_STATE(2178)] = 40666, - [SMALL_STATE(2179)] = 40670, - [SMALL_STATE(2180)] = 40674, - [SMALL_STATE(2181)] = 40678, - [SMALL_STATE(2182)] = 40682, - [SMALL_STATE(2183)] = 40686, - [SMALL_STATE(2184)] = 40690, - [SMALL_STATE(2185)] = 40694, - [SMALL_STATE(2186)] = 40698, - [SMALL_STATE(2187)] = 40702, - [SMALL_STATE(2188)] = 40706, - [SMALL_STATE(2189)] = 40710, - [SMALL_STATE(2190)] = 40714, - [SMALL_STATE(2191)] = 40718, - [SMALL_STATE(2192)] = 40722, - [SMALL_STATE(2193)] = 40726, - [SMALL_STATE(2194)] = 40730, - [SMALL_STATE(2195)] = 40734, - [SMALL_STATE(2196)] = 40738, - [SMALL_STATE(2197)] = 40742, - [SMALL_STATE(2198)] = 40746, - [SMALL_STATE(2199)] = 40750, - [SMALL_STATE(2200)] = 40754, - [SMALL_STATE(2201)] = 40758, - [SMALL_STATE(2202)] = 40762, - [SMALL_STATE(2203)] = 40766, - [SMALL_STATE(2204)] = 40770, - [SMALL_STATE(2205)] = 40774, - [SMALL_STATE(2206)] = 40778, - [SMALL_STATE(2207)] = 40782, - [SMALL_STATE(2208)] = 40786, - [SMALL_STATE(2209)] = 40790, - [SMALL_STATE(2210)] = 40794, - [SMALL_STATE(2211)] = 40798, - [SMALL_STATE(2212)] = 40802, - [SMALL_STATE(2213)] = 40806, - [SMALL_STATE(2214)] = 40810, - [SMALL_STATE(2215)] = 40814, - [SMALL_STATE(2216)] = 40818, - [SMALL_STATE(2217)] = 40822, - [SMALL_STATE(2218)] = 40826, - [SMALL_STATE(2219)] = 40830, - [SMALL_STATE(2220)] = 40834, - [SMALL_STATE(2221)] = 40838, - [SMALL_STATE(2222)] = 40842, - [SMALL_STATE(2223)] = 40846, - [SMALL_STATE(2224)] = 40850, - [SMALL_STATE(2225)] = 40854, - [SMALL_STATE(2226)] = 40858, - [SMALL_STATE(2227)] = 40862, - [SMALL_STATE(2228)] = 40866, - [SMALL_STATE(2229)] = 40870, - [SMALL_STATE(2230)] = 40874, - [SMALL_STATE(2231)] = 40878, - [SMALL_STATE(2232)] = 40882, - [SMALL_STATE(2233)] = 40886, - [SMALL_STATE(2234)] = 40890, - [SMALL_STATE(2235)] = 40894, - [SMALL_STATE(2236)] = 40898, - [SMALL_STATE(2237)] = 40902, - [SMALL_STATE(2238)] = 40906, - [SMALL_STATE(2239)] = 40910, - [SMALL_STATE(2240)] = 40914, - [SMALL_STATE(2241)] = 40918, - [SMALL_STATE(2242)] = 40922, - [SMALL_STATE(2243)] = 40926, - [SMALL_STATE(2244)] = 40930, - [SMALL_STATE(2245)] = 40934, - [SMALL_STATE(2246)] = 40938, - [SMALL_STATE(2247)] = 40942, - [SMALL_STATE(2248)] = 40946, - [SMALL_STATE(2249)] = 40950, - [SMALL_STATE(2250)] = 40954, - [SMALL_STATE(2251)] = 40958, - [SMALL_STATE(2252)] = 40962, - [SMALL_STATE(2253)] = 40966, - [SMALL_STATE(2254)] = 40970, - [SMALL_STATE(2255)] = 40974, - [SMALL_STATE(2256)] = 40978, - [SMALL_STATE(2257)] = 40982, - [SMALL_STATE(2258)] = 40986, - [SMALL_STATE(2259)] = 40990, - [SMALL_STATE(2260)] = 40994, - [SMALL_STATE(2261)] = 40998, - [SMALL_STATE(2262)] = 41002, - [SMALL_STATE(2263)] = 41006, - [SMALL_STATE(2264)] = 41010, - [SMALL_STATE(2265)] = 41014, - [SMALL_STATE(2266)] = 41018, - [SMALL_STATE(2267)] = 41022, - [SMALL_STATE(2268)] = 41026, - [SMALL_STATE(2269)] = 41030, - [SMALL_STATE(2270)] = 41034, - [SMALL_STATE(2271)] = 41038, - [SMALL_STATE(2272)] = 41042, - [SMALL_STATE(2273)] = 41046, - [SMALL_STATE(2274)] = 41050, - [SMALL_STATE(2275)] = 41054, - [SMALL_STATE(2276)] = 41058, - [SMALL_STATE(2277)] = 41062, - [SMALL_STATE(2278)] = 41066, - [SMALL_STATE(2279)] = 41070, - [SMALL_STATE(2280)] = 41074, - [SMALL_STATE(2281)] = 41078, - [SMALL_STATE(2282)] = 41082, - [SMALL_STATE(2283)] = 41086, - [SMALL_STATE(2284)] = 41090, - [SMALL_STATE(2285)] = 41094, - [SMALL_STATE(2286)] = 41098, - [SMALL_STATE(2287)] = 41102, - [SMALL_STATE(2288)] = 41106, - [SMALL_STATE(2289)] = 41110, - [SMALL_STATE(2290)] = 41114, - [SMALL_STATE(2291)] = 41118, - [SMALL_STATE(2292)] = 41122, - [SMALL_STATE(2293)] = 41126, - [SMALL_STATE(2294)] = 41130, - [SMALL_STATE(2295)] = 41134, - [SMALL_STATE(2296)] = 41138, - [SMALL_STATE(2297)] = 41142, - [SMALL_STATE(2298)] = 41146, - [SMALL_STATE(2299)] = 41150, - [SMALL_STATE(2300)] = 41154, - [SMALL_STATE(2301)] = 41158, - [SMALL_STATE(2302)] = 41162, - [SMALL_STATE(2303)] = 41166, - [SMALL_STATE(2304)] = 41170, - [SMALL_STATE(2305)] = 41174, - [SMALL_STATE(2306)] = 41178, - [SMALL_STATE(2307)] = 41182, - [SMALL_STATE(2308)] = 41186, - [SMALL_STATE(2309)] = 41190, - [SMALL_STATE(2310)] = 41194, - [SMALL_STATE(2311)] = 41198, - [SMALL_STATE(2312)] = 41202, - [SMALL_STATE(2313)] = 41206, - [SMALL_STATE(2314)] = 41210, - [SMALL_STATE(2315)] = 41214, - [SMALL_STATE(2316)] = 41218, - [SMALL_STATE(2317)] = 41222, - [SMALL_STATE(2318)] = 41226, - [SMALL_STATE(2319)] = 41230, - [SMALL_STATE(2320)] = 41234, - [SMALL_STATE(2321)] = 41238, - [SMALL_STATE(2322)] = 41242, - [SMALL_STATE(2323)] = 41246, - [SMALL_STATE(2324)] = 41250, - [SMALL_STATE(2325)] = 41254, - [SMALL_STATE(2326)] = 41258, - [SMALL_STATE(2327)] = 41262, - [SMALL_STATE(2328)] = 41266, - [SMALL_STATE(2329)] = 41270, - [SMALL_STATE(2330)] = 41274, - [SMALL_STATE(2331)] = 41278, - [SMALL_STATE(2332)] = 41282, - [SMALL_STATE(2333)] = 41286, - [SMALL_STATE(2334)] = 41290, - [SMALL_STATE(2335)] = 41294, - [SMALL_STATE(2336)] = 41298, - [SMALL_STATE(2337)] = 41302, - [SMALL_STATE(2338)] = 41306, - [SMALL_STATE(2339)] = 41310, - [SMALL_STATE(2340)] = 41314, - [SMALL_STATE(2341)] = 41318, - [SMALL_STATE(2342)] = 41322, - [SMALL_STATE(2343)] = 41326, - [SMALL_STATE(2344)] = 41330, - [SMALL_STATE(2345)] = 41334, - [SMALL_STATE(2346)] = 41338, - [SMALL_STATE(2347)] = 41342, - [SMALL_STATE(2348)] = 41346, - [SMALL_STATE(2349)] = 41350, - [SMALL_STATE(2350)] = 41354, - [SMALL_STATE(2351)] = 41358, - [SMALL_STATE(2352)] = 41362, - [SMALL_STATE(2353)] = 41366, - [SMALL_STATE(2354)] = 41370, - [SMALL_STATE(2355)] = 41374, - [SMALL_STATE(2356)] = 41378, - [SMALL_STATE(2357)] = 41382, - [SMALL_STATE(2358)] = 41386, - [SMALL_STATE(2359)] = 41390, - [SMALL_STATE(2360)] = 41394, - [SMALL_STATE(2361)] = 41398, - [SMALL_STATE(2362)] = 41402, - [SMALL_STATE(2363)] = 41406, - [SMALL_STATE(2364)] = 41410, - [SMALL_STATE(2365)] = 41414, - [SMALL_STATE(2366)] = 41418, - [SMALL_STATE(2367)] = 41422, - [SMALL_STATE(2368)] = 41426, - [SMALL_STATE(2369)] = 41430, - [SMALL_STATE(2370)] = 41434, - [SMALL_STATE(2371)] = 41438, - [SMALL_STATE(2372)] = 41442, - [SMALL_STATE(2373)] = 41446, - [SMALL_STATE(2374)] = 41450, - [SMALL_STATE(2375)] = 41454, - [SMALL_STATE(2376)] = 41458, - [SMALL_STATE(2377)] = 41462, - [SMALL_STATE(2378)] = 41466, + [SMALL_STATE(60)] = 0, + [SMALL_STATE(61)] = 66, + [SMALL_STATE(62)] = 132, + [SMALL_STATE(63)] = 198, + [SMALL_STATE(64)] = 257, + [SMALL_STATE(65)] = 316, + [SMALL_STATE(66)] = 375, + [SMALL_STATE(67)] = 429, + [SMALL_STATE(68)] = 483, + [SMALL_STATE(69)] = 537, + [SMALL_STATE(70)] = 583, + [SMALL_STATE(71)] = 629, + [SMALL_STATE(72)] = 675, + [SMALL_STATE(73)] = 718, + [SMALL_STATE(74)] = 761, + [SMALL_STATE(75)] = 804, + [SMALL_STATE(76)] = 845, + [SMALL_STATE(77)] = 886, + [SMALL_STATE(78)] = 929, + [SMALL_STATE(79)] = 972, + [SMALL_STATE(80)] = 1015, + [SMALL_STATE(81)] = 1058, + [SMALL_STATE(82)] = 1099, + [SMALL_STATE(83)] = 1140, + [SMALL_STATE(84)] = 1183, + [SMALL_STATE(85)] = 1226, + [SMALL_STATE(86)] = 1269, + [SMALL_STATE(87)] = 1312, + [SMALL_STATE(88)] = 1353, + [SMALL_STATE(89)] = 1394, + [SMALL_STATE(90)] = 1435, + [SMALL_STATE(91)] = 1478, + [SMALL_STATE(92)] = 1519, + [SMALL_STATE(93)] = 1562, + [SMALL_STATE(94)] = 1603, + [SMALL_STATE(95)] = 1644, + [SMALL_STATE(96)] = 1687, + [SMALL_STATE(97)] = 1730, + [SMALL_STATE(98)] = 1773, + [SMALL_STATE(99)] = 1814, + [SMALL_STATE(100)] = 1855, + [SMALL_STATE(101)] = 1898, + [SMALL_STATE(102)] = 1941, + [SMALL_STATE(103)] = 1984, + [SMALL_STATE(104)] = 2027, + [SMALL_STATE(105)] = 2070, + [SMALL_STATE(106)] = 2111, + [SMALL_STATE(107)] = 2152, + [SMALL_STATE(108)] = 2195, + [SMALL_STATE(109)] = 2236, + [SMALL_STATE(110)] = 2279, + [SMALL_STATE(111)] = 2320, + [SMALL_STATE(112)] = 2363, + [SMALL_STATE(113)] = 2406, + [SMALL_STATE(114)] = 2449, + [SMALL_STATE(115)] = 2492, + [SMALL_STATE(116)] = 2535, + [SMALL_STATE(117)] = 2576, + [SMALL_STATE(118)] = 2617, + [SMALL_STATE(119)] = 2660, + [SMALL_STATE(120)] = 2701, + [SMALL_STATE(121)] = 2744, + [SMALL_STATE(122)] = 2787, + [SMALL_STATE(123)] = 2830, + [SMALL_STATE(124)] = 2871, + [SMALL_STATE(125)] = 2912, + [SMALL_STATE(126)] = 2952, + [SMALL_STATE(127)] = 2992, + [SMALL_STATE(128)] = 3032, + [SMALL_STATE(129)] = 3072, + [SMALL_STATE(130)] = 3112, + [SMALL_STATE(131)] = 3152, + [SMALL_STATE(132)] = 3192, + [SMALL_STATE(133)] = 3232, + [SMALL_STATE(134)] = 3272, + [SMALL_STATE(135)] = 3312, + [SMALL_STATE(136)] = 3352, + [SMALL_STATE(137)] = 3392, + [SMALL_STATE(138)] = 3432, + [SMALL_STATE(139)] = 3472, + [SMALL_STATE(140)] = 3512, + [SMALL_STATE(141)] = 3552, + [SMALL_STATE(142)] = 3592, + [SMALL_STATE(143)] = 3632, + [SMALL_STATE(144)] = 3672, + [SMALL_STATE(145)] = 3712, + [SMALL_STATE(146)] = 3752, + [SMALL_STATE(147)] = 3792, + [SMALL_STATE(148)] = 3832, + [SMALL_STATE(149)] = 3872, + [SMALL_STATE(150)] = 3912, + [SMALL_STATE(151)] = 3952, + [SMALL_STATE(152)] = 3992, + [SMALL_STATE(153)] = 4032, + [SMALL_STATE(154)] = 4072, + [SMALL_STATE(155)] = 4112, + [SMALL_STATE(156)] = 4152, + [SMALL_STATE(157)] = 4192, + [SMALL_STATE(158)] = 4232, + [SMALL_STATE(159)] = 4272, + [SMALL_STATE(160)] = 4312, + [SMALL_STATE(161)] = 4352, + [SMALL_STATE(162)] = 4392, + [SMALL_STATE(163)] = 4432, + [SMALL_STATE(164)] = 4472, + [SMALL_STATE(165)] = 4512, + [SMALL_STATE(166)] = 4552, + [SMALL_STATE(167)] = 4592, + [SMALL_STATE(168)] = 4632, + [SMALL_STATE(169)] = 4672, + [SMALL_STATE(170)] = 4712, + [SMALL_STATE(171)] = 4752, + [SMALL_STATE(172)] = 4792, + [SMALL_STATE(173)] = 4832, + [SMALL_STATE(174)] = 4872, + [SMALL_STATE(175)] = 4912, + [SMALL_STATE(176)] = 4952, + [SMALL_STATE(177)] = 4992, + [SMALL_STATE(178)] = 5032, + [SMALL_STATE(179)] = 5072, + [SMALL_STATE(180)] = 5112, + [SMALL_STATE(181)] = 5152, + [SMALL_STATE(182)] = 5192, + [SMALL_STATE(183)] = 5232, + [SMALL_STATE(184)] = 5272, + [SMALL_STATE(185)] = 5312, + [SMALL_STATE(186)] = 5352, + [SMALL_STATE(187)] = 5392, + [SMALL_STATE(188)] = 5432, + [SMALL_STATE(189)] = 5472, + [SMALL_STATE(190)] = 5512, + [SMALL_STATE(191)] = 5552, + [SMALL_STATE(192)] = 5592, + [SMALL_STATE(193)] = 5632, + [SMALL_STATE(194)] = 5672, + [SMALL_STATE(195)] = 5712, + [SMALL_STATE(196)] = 5752, + [SMALL_STATE(197)] = 5792, + [SMALL_STATE(198)] = 5832, + [SMALL_STATE(199)] = 5872, + [SMALL_STATE(200)] = 5912, + [SMALL_STATE(201)] = 5952, + [SMALL_STATE(202)] = 5992, + [SMALL_STATE(203)] = 6032, + [SMALL_STATE(204)] = 6072, + [SMALL_STATE(205)] = 6112, + [SMALL_STATE(206)] = 6152, + [SMALL_STATE(207)] = 6192, + [SMALL_STATE(208)] = 6232, + [SMALL_STATE(209)] = 6272, + [SMALL_STATE(210)] = 6312, + [SMALL_STATE(211)] = 6352, + [SMALL_STATE(212)] = 6392, + [SMALL_STATE(213)] = 6432, + [SMALL_STATE(214)] = 6472, + [SMALL_STATE(215)] = 6512, + [SMALL_STATE(216)] = 6552, + [SMALL_STATE(217)] = 6592, + [SMALL_STATE(218)] = 6632, + [SMALL_STATE(219)] = 6672, + [SMALL_STATE(220)] = 6712, + [SMALL_STATE(221)] = 6752, + [SMALL_STATE(222)] = 6792, + [SMALL_STATE(223)] = 6832, + [SMALL_STATE(224)] = 6872, + [SMALL_STATE(225)] = 6912, + [SMALL_STATE(226)] = 6952, + [SMALL_STATE(227)] = 6992, + [SMALL_STATE(228)] = 7032, + [SMALL_STATE(229)] = 7072, + [SMALL_STATE(230)] = 7112, + [SMALL_STATE(231)] = 7152, + [SMALL_STATE(232)] = 7192, + [SMALL_STATE(233)] = 7232, + [SMALL_STATE(234)] = 7272, + [SMALL_STATE(235)] = 7312, + [SMALL_STATE(236)] = 7352, + [SMALL_STATE(237)] = 7392, + [SMALL_STATE(238)] = 7432, + [SMALL_STATE(239)] = 7472, + [SMALL_STATE(240)] = 7512, + [SMALL_STATE(241)] = 7552, + [SMALL_STATE(242)] = 7592, + [SMALL_STATE(243)] = 7632, + [SMALL_STATE(244)] = 7672, + [SMALL_STATE(245)] = 7712, + [SMALL_STATE(246)] = 7752, + [SMALL_STATE(247)] = 7792, + [SMALL_STATE(248)] = 7832, + [SMALL_STATE(249)] = 7872, + [SMALL_STATE(250)] = 7912, + [SMALL_STATE(251)] = 7952, + [SMALL_STATE(252)] = 7992, + [SMALL_STATE(253)] = 8032, + [SMALL_STATE(254)] = 8072, + [SMALL_STATE(255)] = 8112, + [SMALL_STATE(256)] = 8152, + [SMALL_STATE(257)] = 8192, + [SMALL_STATE(258)] = 8232, + [SMALL_STATE(259)] = 8272, + [SMALL_STATE(260)] = 8312, + [SMALL_STATE(261)] = 8351, + [SMALL_STATE(262)] = 8394, + [SMALL_STATE(263)] = 8435, + [SMALL_STATE(264)] = 8476, + [SMALL_STATE(265)] = 8517, + [SMALL_STATE(266)] = 8558, + [SMALL_STATE(267)] = 8599, + [SMALL_STATE(268)] = 8633, + [SMALL_STATE(269)] = 8660, + [SMALL_STATE(270)] = 8687, + [SMALL_STATE(271)] = 8712, + [SMALL_STATE(272)] = 8739, + [SMALL_STATE(273)] = 8764, + [SMALL_STATE(274)] = 8789, + [SMALL_STATE(275)] = 8822, + [SMALL_STATE(276)] = 8849, + [SMALL_STATE(277)] = 8876, + [SMALL_STATE(278)] = 8903, + [SMALL_STATE(279)] = 8930, + [SMALL_STATE(280)] = 8955, + [SMALL_STATE(281)] = 8980, + [SMALL_STATE(282)] = 9008, + [SMALL_STATE(283)] = 9036, + [SMALL_STATE(284)] = 9064, + [SMALL_STATE(285)] = 9086, + [SMALL_STATE(286)] = 9114, + [SMALL_STATE(287)] = 9136, + [SMALL_STATE(288)] = 9158, + [SMALL_STATE(289)] = 9186, + [SMALL_STATE(290)] = 9212, + [SMALL_STATE(291)] = 9234, + [SMALL_STATE(292)] = 9256, + [SMALL_STATE(293)] = 9284, + [SMALL_STATE(294)] = 9305, + [SMALL_STATE(295)] = 9326, + [SMALL_STATE(296)] = 9347, + [SMALL_STATE(297)] = 9368, + [SMALL_STATE(298)] = 9389, + [SMALL_STATE(299)] = 9410, + [SMALL_STATE(300)] = 9431, + [SMALL_STATE(301)] = 9452, + [SMALL_STATE(302)] = 9473, + [SMALL_STATE(303)] = 9494, + [SMALL_STATE(304)] = 9515, + [SMALL_STATE(305)] = 9536, + [SMALL_STATE(306)] = 9557, + [SMALL_STATE(307)] = 9578, + [SMALL_STATE(308)] = 9599, + [SMALL_STATE(309)] = 9620, + [SMALL_STATE(310)] = 9641, + [SMALL_STATE(311)] = 9662, + [SMALL_STATE(312)] = 9683, + [SMALL_STATE(313)] = 9704, + [SMALL_STATE(314)] = 9725, + [SMALL_STATE(315)] = 9746, + [SMALL_STATE(316)] = 9767, + [SMALL_STATE(317)] = 9788, + [SMALL_STATE(318)] = 9809, + [SMALL_STATE(319)] = 9830, + [SMALL_STATE(320)] = 9851, + [SMALL_STATE(321)] = 9872, + [SMALL_STATE(322)] = 9893, + [SMALL_STATE(323)] = 9914, + [SMALL_STATE(324)] = 9935, + [SMALL_STATE(325)] = 9956, + [SMALL_STATE(326)] = 9977, + [SMALL_STATE(327)] = 9998, + [SMALL_STATE(328)] = 10020, + [SMALL_STATE(329)] = 10038, + [SMALL_STATE(330)] = 10054, + [SMALL_STATE(331)] = 10072, + [SMALL_STATE(332)] = 10088, + [SMALL_STATE(333)] = 10106, + [SMALL_STATE(334)] = 10129, + [SMALL_STATE(335)] = 10144, + [SMALL_STATE(336)] = 10167, + [SMALL_STATE(337)] = 10182, + [SMALL_STATE(338)] = 10205, + [SMALL_STATE(339)] = 10228, + [SMALL_STATE(340)] = 10251, + [SMALL_STATE(341)] = 10274, + [SMALL_STATE(342)] = 10297, + [SMALL_STATE(343)] = 10320, + [SMALL_STATE(344)] = 10343, + [SMALL_STATE(345)] = 10364, + [SMALL_STATE(346)] = 10387, + [SMALL_STATE(347)] = 10402, + [SMALL_STATE(348)] = 10417, + [SMALL_STATE(349)] = 10440, + [SMALL_STATE(350)] = 10455, + [SMALL_STATE(351)] = 10478, + [SMALL_STATE(352)] = 10493, + [SMALL_STATE(353)] = 10516, + [SMALL_STATE(354)] = 10539, + [SMALL_STATE(355)] = 10562, + [SMALL_STATE(356)] = 10585, + [SMALL_STATE(357)] = 10608, + [SMALL_STATE(358)] = 10631, + [SMALL_STATE(359)] = 10654, + [SMALL_STATE(360)] = 10669, + [SMALL_STATE(361)] = 10692, + [SMALL_STATE(362)] = 10715, + [SMALL_STATE(363)] = 10729, + [SMALL_STATE(364)] = 10751, + [SMALL_STATE(365)] = 10771, + [SMALL_STATE(366)] = 10791, + [SMALL_STATE(367)] = 10811, + [SMALL_STATE(368)] = 10833, + [SMALL_STATE(369)] = 10853, + [SMALL_STATE(370)] = 10873, + [SMALL_STATE(371)] = 10893, + [SMALL_STATE(372)] = 10913, + [SMALL_STATE(373)] = 10933, + [SMALL_STATE(374)] = 10953, + [SMALL_STATE(375)] = 10973, + [SMALL_STATE(376)] = 10993, + [SMALL_STATE(377)] = 11007, + [SMALL_STATE(378)] = 11029, + [SMALL_STATE(379)] = 11051, + [SMALL_STATE(380)] = 11063, + [SMALL_STATE(381)] = 11085, + [SMALL_STATE(382)] = 11107, + [SMALL_STATE(383)] = 11127, + [SMALL_STATE(384)] = 11147, + [SMALL_STATE(385)] = 11167, + [SMALL_STATE(386)] = 11187, + [SMALL_STATE(387)] = 11207, + [SMALL_STATE(388)] = 11219, + [SMALL_STATE(389)] = 11231, + [SMALL_STATE(390)] = 11251, + [SMALL_STATE(391)] = 11271, + [SMALL_STATE(392)] = 11291, + [SMALL_STATE(393)] = 11313, + [SMALL_STATE(394)] = 11335, + [SMALL_STATE(395)] = 11355, + [SMALL_STATE(396)] = 11377, + [SMALL_STATE(397)] = 11399, + [SMALL_STATE(398)] = 11413, + [SMALL_STATE(399)] = 11432, + [SMALL_STATE(400)] = 11451, + [SMALL_STATE(401)] = 11470, + [SMALL_STATE(402)] = 11479, + [SMALL_STATE(403)] = 11488, + [SMALL_STATE(404)] = 11507, + [SMALL_STATE(405)] = 11526, + [SMALL_STATE(406)] = 11535, + [SMALL_STATE(407)] = 11554, + [SMALL_STATE(408)] = 11573, + [SMALL_STATE(409)] = 11592, + [SMALL_STATE(410)] = 11601, + [SMALL_STATE(411)] = 11610, + [SMALL_STATE(412)] = 11629, + [SMALL_STATE(413)] = 11638, + [SMALL_STATE(414)] = 11647, + [SMALL_STATE(415)] = 11666, + [SMALL_STATE(416)] = 11675, + [SMALL_STATE(417)] = 11694, + [SMALL_STATE(418)] = 11713, + [SMALL_STATE(419)] = 11732, + [SMALL_STATE(420)] = 11751, + [SMALL_STATE(421)] = 11770, + [SMALL_STATE(422)] = 11789, + [SMALL_STATE(423)] = 11808, + [SMALL_STATE(424)] = 11827, + [SMALL_STATE(425)] = 11846, + [SMALL_STATE(426)] = 11865, + [SMALL_STATE(427)] = 11884, + [SMALL_STATE(428)] = 11893, + [SMALL_STATE(429)] = 11912, + [SMALL_STATE(430)] = 11931, + [SMALL_STATE(431)] = 11950, + [SMALL_STATE(432)] = 11969, + [SMALL_STATE(433)] = 11978, + [SMALL_STATE(434)] = 11997, + [SMALL_STATE(435)] = 12006, + [SMALL_STATE(436)] = 12025, + [SMALL_STATE(437)] = 12044, + [SMALL_STATE(438)] = 12063, + [SMALL_STATE(439)] = 12082, + [SMALL_STATE(440)] = 12101, + [SMALL_STATE(441)] = 12120, + [SMALL_STATE(442)] = 12139, + [SMALL_STATE(443)] = 12158, + [SMALL_STATE(444)] = 12177, + [SMALL_STATE(445)] = 12196, + [SMALL_STATE(446)] = 12215, + [SMALL_STATE(447)] = 12224, + [SMALL_STATE(448)] = 12243, + [SMALL_STATE(449)] = 12262, + [SMALL_STATE(450)] = 12281, + [SMALL_STATE(451)] = 12290, + [SMALL_STATE(452)] = 12309, + [SMALL_STATE(453)] = 12328, + [SMALL_STATE(454)] = 12337, + [SMALL_STATE(455)] = 12356, + [SMALL_STATE(456)] = 12375, + [SMALL_STATE(457)] = 12394, + [SMALL_STATE(458)] = 12403, + [SMALL_STATE(459)] = 12422, + [SMALL_STATE(460)] = 12434, + [SMALL_STATE(461)] = 12448, + [SMALL_STATE(462)] = 12456, + [SMALL_STATE(463)] = 12464, + [SMALL_STATE(464)] = 12472, + [SMALL_STATE(465)] = 12480, + [SMALL_STATE(466)] = 12488, + [SMALL_STATE(467)] = 12496, + [SMALL_STATE(468)] = 12510, + [SMALL_STATE(469)] = 12518, + [SMALL_STATE(470)] = 12532, + [SMALL_STATE(471)] = 12543, + [SMALL_STATE(472)] = 12554, + [SMALL_STATE(473)] = 12565, + [SMALL_STATE(474)] = 12576, + [SMALL_STATE(475)] = 12587, + [SMALL_STATE(476)] = 12598, + [SMALL_STATE(477)] = 12609, + [SMALL_STATE(478)] = 12620, + [SMALL_STATE(479)] = 12631, + [SMALL_STATE(480)] = 12642, + [SMALL_STATE(481)] = 12653, + [SMALL_STATE(482)] = 12664, + [SMALL_STATE(483)] = 12675, + [SMALL_STATE(484)] = 12686, + [SMALL_STATE(485)] = 12697, + [SMALL_STATE(486)] = 12708, + [SMALL_STATE(487)] = 12719, + [SMALL_STATE(488)] = 12730, + [SMALL_STATE(489)] = 12743, + [SMALL_STATE(490)] = 12754, + [SMALL_STATE(491)] = 12765, + [SMALL_STATE(492)] = 12776, + [SMALL_STATE(493)] = 12787, + [SMALL_STATE(494)] = 12798, + [SMALL_STATE(495)] = 12809, + [SMALL_STATE(496)] = 12820, + [SMALL_STATE(497)] = 12831, + [SMALL_STATE(498)] = 12842, + [SMALL_STATE(499)] = 12853, + [SMALL_STATE(500)] = 12864, + [SMALL_STATE(501)] = 12875, + [SMALL_STATE(502)] = 12886, + [SMALL_STATE(503)] = 12897, + [SMALL_STATE(504)] = 12908, + [SMALL_STATE(505)] = 12919, + [SMALL_STATE(506)] = 12932, + [SMALL_STATE(507)] = 12943, + [SMALL_STATE(508)] = 12954, + [SMALL_STATE(509)] = 12965, + [SMALL_STATE(510)] = 12976, + [SMALL_STATE(511)] = 12987, + [SMALL_STATE(512)] = 12998, + [SMALL_STATE(513)] = 13009, + [SMALL_STATE(514)] = 13020, + [SMALL_STATE(515)] = 13031, + [SMALL_STATE(516)] = 13042, + [SMALL_STATE(517)] = 13053, + [SMALL_STATE(518)] = 13064, + [SMALL_STATE(519)] = 13075, + [SMALL_STATE(520)] = 13086, + [SMALL_STATE(521)] = 13097, + [SMALL_STATE(522)] = 13108, + [SMALL_STATE(523)] = 13119, + [SMALL_STATE(524)] = 13130, + [SMALL_STATE(525)] = 13141, + [SMALL_STATE(526)] = 13154, + [SMALL_STATE(527)] = 13165, + [SMALL_STATE(528)] = 13176, + [SMALL_STATE(529)] = 13187, + [SMALL_STATE(530)] = 13198, + [SMALL_STATE(531)] = 13209, + [SMALL_STATE(532)] = 13220, + [SMALL_STATE(533)] = 13231, + [SMALL_STATE(534)] = 13242, + [SMALL_STATE(535)] = 13253, + [SMALL_STATE(536)] = 13264, + [SMALL_STATE(537)] = 13275, + [SMALL_STATE(538)] = 13286, + [SMALL_STATE(539)] = 13297, + [SMALL_STATE(540)] = 13308, + [SMALL_STATE(541)] = 13319, + [SMALL_STATE(542)] = 13332, + [SMALL_STATE(543)] = 13343, + [SMALL_STATE(544)] = 13352, + [SMALL_STATE(545)] = 13363, + [SMALL_STATE(546)] = 13374, + [SMALL_STATE(547)] = 13385, + [SMALL_STATE(548)] = 13396, + [SMALL_STATE(549)] = 13407, + [SMALL_STATE(550)] = 13418, + [SMALL_STATE(551)] = 13429, + [SMALL_STATE(552)] = 13442, + [SMALL_STATE(553)] = 13453, + [SMALL_STATE(554)] = 13464, + [SMALL_STATE(555)] = 13475, + [SMALL_STATE(556)] = 13486, + [SMALL_STATE(557)] = 13497, + [SMALL_STATE(558)] = 13506, + [SMALL_STATE(559)] = 13515, + [SMALL_STATE(560)] = 13526, + [SMALL_STATE(561)] = 13535, + [SMALL_STATE(562)] = 13546, + [SMALL_STATE(563)] = 13557, + [SMALL_STATE(564)] = 13568, + [SMALL_STATE(565)] = 13579, + [SMALL_STATE(566)] = 13588, + [SMALL_STATE(567)] = 13599, + [SMALL_STATE(568)] = 13608, + [SMALL_STATE(569)] = 13619, + [SMALL_STATE(570)] = 13630, + [SMALL_STATE(571)] = 13639, + [SMALL_STATE(572)] = 13648, + [SMALL_STATE(573)] = 13659, + [SMALL_STATE(574)] = 13670, + [SMALL_STATE(575)] = 13681, + [SMALL_STATE(576)] = 13690, + [SMALL_STATE(577)] = 13701, + [SMALL_STATE(578)] = 13712, + [SMALL_STATE(579)] = 13723, + [SMALL_STATE(580)] = 13732, + [SMALL_STATE(581)] = 13743, + [SMALL_STATE(582)] = 13754, + [SMALL_STATE(583)] = 13765, + [SMALL_STATE(584)] = 13776, + [SMALL_STATE(585)] = 13787, + [SMALL_STATE(586)] = 13798, + [SMALL_STATE(587)] = 13809, + [SMALL_STATE(588)] = 13818, + [SMALL_STATE(589)] = 13829, + [SMALL_STATE(590)] = 13840, + [SMALL_STATE(591)] = 13850, + [SMALL_STATE(592)] = 13858, + [SMALL_STATE(593)] = 13864, + [SMALL_STATE(594)] = 13870, + [SMALL_STATE(595)] = 13876, + [SMALL_STATE(596)] = 13882, + [SMALL_STATE(597)] = 13888, + [SMALL_STATE(598)] = 13894, + [SMALL_STATE(599)] = 13904, + [SMALL_STATE(600)] = 13910, + [SMALL_STATE(601)] = 13916, + [SMALL_STATE(602)] = 13922, + [SMALL_STATE(603)] = 13928, + [SMALL_STATE(604)] = 13934, + [SMALL_STATE(605)] = 13940, + [SMALL_STATE(606)] = 13950, + [SMALL_STATE(607)] = 13960, + [SMALL_STATE(608)] = 13966, + [SMALL_STATE(609)] = 13972, + [SMALL_STATE(610)] = 13978, + [SMALL_STATE(611)] = 13984, + [SMALL_STATE(612)] = 13990, + [SMALL_STATE(613)] = 13996, + [SMALL_STATE(614)] = 14002, + [SMALL_STATE(615)] = 14008, + [SMALL_STATE(616)] = 14014, + [SMALL_STATE(617)] = 14020, + [SMALL_STATE(618)] = 14026, + [SMALL_STATE(619)] = 14036, + [SMALL_STATE(620)] = 14042, + [SMALL_STATE(621)] = 14048, + [SMALL_STATE(622)] = 14054, + [SMALL_STATE(623)] = 14060, + [SMALL_STATE(624)] = 14070, + [SMALL_STATE(625)] = 14080, + [SMALL_STATE(626)] = 14090, + [SMALL_STATE(627)] = 14096, + [SMALL_STATE(628)] = 14106, + [SMALL_STATE(629)] = 14116, + [SMALL_STATE(630)] = 14122, + [SMALL_STATE(631)] = 14128, + [SMALL_STATE(632)] = 14134, + [SMALL_STATE(633)] = 14140, + [SMALL_STATE(634)] = 14148, + [SMALL_STATE(635)] = 14154, + [SMALL_STATE(636)] = 14160, + [SMALL_STATE(637)] = 14166, + [SMALL_STATE(638)] = 14172, + [SMALL_STATE(639)] = 14178, + [SMALL_STATE(640)] = 14184, + [SMALL_STATE(641)] = 14194, + [SMALL_STATE(642)] = 14202, + [SMALL_STATE(643)] = 14212, + [SMALL_STATE(644)] = 14218, + [SMALL_STATE(645)] = 14228, + [SMALL_STATE(646)] = 14238, + [SMALL_STATE(647)] = 14244, + [SMALL_STATE(648)] = 14252, + [SMALL_STATE(649)] = 14258, + [SMALL_STATE(650)] = 14264, + [SMALL_STATE(651)] = 14270, + [SMALL_STATE(652)] = 14276, + [SMALL_STATE(653)] = 14282, + [SMALL_STATE(654)] = 14288, + [SMALL_STATE(655)] = 14294, + [SMALL_STATE(656)] = 14300, + [SMALL_STATE(657)] = 14306, + [SMALL_STATE(658)] = 14316, + [SMALL_STATE(659)] = 14322, + [SMALL_STATE(660)] = 14328, + [SMALL_STATE(661)] = 14334, + [SMALL_STATE(662)] = 14340, + [SMALL_STATE(663)] = 14348, + [SMALL_STATE(664)] = 14354, + [SMALL_STATE(665)] = 14364, + [SMALL_STATE(666)] = 14370, + [SMALL_STATE(667)] = 14380, + [SMALL_STATE(668)] = 14388, + [SMALL_STATE(669)] = 14396, + [SMALL_STATE(670)] = 14402, + [SMALL_STATE(671)] = 14408, + [SMALL_STATE(672)] = 14418, + [SMALL_STATE(673)] = 14424, + [SMALL_STATE(674)] = 14432, + [SMALL_STATE(675)] = 14438, + [SMALL_STATE(676)] = 14446, + [SMALL_STATE(677)] = 14452, + [SMALL_STATE(678)] = 14462, + [SMALL_STATE(679)] = 14470, + [SMALL_STATE(680)] = 14478, + [SMALL_STATE(681)] = 14488, + [SMALL_STATE(682)] = 14496, + [SMALL_STATE(683)] = 14502, + [SMALL_STATE(684)] = 14512, + [SMALL_STATE(685)] = 14518, + [SMALL_STATE(686)] = 14524, + [SMALL_STATE(687)] = 14532, + [SMALL_STATE(688)] = 14539, + [SMALL_STATE(689)] = 14546, + [SMALL_STATE(690)] = 14553, + [SMALL_STATE(691)] = 14560, + [SMALL_STATE(692)] = 14567, + [SMALL_STATE(693)] = 14572, + [SMALL_STATE(694)] = 14579, + [SMALL_STATE(695)] = 14586, + [SMALL_STATE(696)] = 14591, + [SMALL_STATE(697)] = 14596, + [SMALL_STATE(698)] = 14603, + [SMALL_STATE(699)] = 14610, + [SMALL_STATE(700)] = 14615, + [SMALL_STATE(701)] = 14620, + [SMALL_STATE(702)] = 14627, + [SMALL_STATE(703)] = 14634, + [SMALL_STATE(704)] = 14639, + [SMALL_STATE(705)] = 14646, + [SMALL_STATE(706)] = 14651, + [SMALL_STATE(707)] = 14658, + [SMALL_STATE(708)] = 14665, + [SMALL_STATE(709)] = 14672, + [SMALL_STATE(710)] = 14679, + [SMALL_STATE(711)] = 14686, + [SMALL_STATE(712)] = 14693, + [SMALL_STATE(713)] = 14698, + [SMALL_STATE(714)] = 14705, + [SMALL_STATE(715)] = 14712, + [SMALL_STATE(716)] = 14719, + [SMALL_STATE(717)] = 14726, + [SMALL_STATE(718)] = 14733, + [SMALL_STATE(719)] = 14740, + [SMALL_STATE(720)] = 14745, + [SMALL_STATE(721)] = 14750, + [SMALL_STATE(722)] = 14755, + [SMALL_STATE(723)] = 14760, + [SMALL_STATE(724)] = 14765, + [SMALL_STATE(725)] = 14770, + [SMALL_STATE(726)] = 14775, + [SMALL_STATE(727)] = 14780, + [SMALL_STATE(728)] = 14785, + [SMALL_STATE(729)] = 14790, + [SMALL_STATE(730)] = 14795, + [SMALL_STATE(731)] = 14800, + [SMALL_STATE(732)] = 14805, + [SMALL_STATE(733)] = 14810, + [SMALL_STATE(734)] = 14815, + [SMALL_STATE(735)] = 14820, + [SMALL_STATE(736)] = 14825, + [SMALL_STATE(737)] = 14830, + [SMALL_STATE(738)] = 14835, + [SMALL_STATE(739)] = 14840, + [SMALL_STATE(740)] = 14845, + [SMALL_STATE(741)] = 14852, + [SMALL_STATE(742)] = 14857, + [SMALL_STATE(743)] = 14864, + [SMALL_STATE(744)] = 14871, + [SMALL_STATE(745)] = 14878, + [SMALL_STATE(746)] = 14883, + [SMALL_STATE(747)] = 14890, + [SMALL_STATE(748)] = 14897, + [SMALL_STATE(749)] = 14902, + [SMALL_STATE(750)] = 14907, + [SMALL_STATE(751)] = 14914, + [SMALL_STATE(752)] = 14921, + [SMALL_STATE(753)] = 14928, + [SMALL_STATE(754)] = 14933, + [SMALL_STATE(755)] = 14940, + [SMALL_STATE(756)] = 14947, + [SMALL_STATE(757)] = 14952, + [SMALL_STATE(758)] = 14959, + [SMALL_STATE(759)] = 14964, + [SMALL_STATE(760)] = 14969, + [SMALL_STATE(761)] = 14974, + [SMALL_STATE(762)] = 14979, + [SMALL_STATE(763)] = 14986, + [SMALL_STATE(764)] = 14993, + [SMALL_STATE(765)] = 15000, + [SMALL_STATE(766)] = 15007, + [SMALL_STATE(767)] = 15014, + [SMALL_STATE(768)] = 15019, + [SMALL_STATE(769)] = 15026, + [SMALL_STATE(770)] = 15033, + [SMALL_STATE(771)] = 15040, + [SMALL_STATE(772)] = 15047, + [SMALL_STATE(773)] = 15054, + [SMALL_STATE(774)] = 15061, + [SMALL_STATE(775)] = 15066, + [SMALL_STATE(776)] = 15071, + [SMALL_STATE(777)] = 15076, + [SMALL_STATE(778)] = 15081, + [SMALL_STATE(779)] = 15086, + [SMALL_STATE(780)] = 15091, + [SMALL_STATE(781)] = 15096, + [SMALL_STATE(782)] = 15101, + [SMALL_STATE(783)] = 15106, + [SMALL_STATE(784)] = 15111, + [SMALL_STATE(785)] = 15116, + [SMALL_STATE(786)] = 15121, + [SMALL_STATE(787)] = 15126, + [SMALL_STATE(788)] = 15131, + [SMALL_STATE(789)] = 15136, + [SMALL_STATE(790)] = 15141, + [SMALL_STATE(791)] = 15146, + [SMALL_STATE(792)] = 15151, + [SMALL_STATE(793)] = 15156, + [SMALL_STATE(794)] = 15161, + [SMALL_STATE(795)] = 15166, + [SMALL_STATE(796)] = 15171, + [SMALL_STATE(797)] = 15176, + [SMALL_STATE(798)] = 15183, + [SMALL_STATE(799)] = 15190, + [SMALL_STATE(800)] = 15195, + [SMALL_STATE(801)] = 15200, + [SMALL_STATE(802)] = 15205, + [SMALL_STATE(803)] = 15212, + [SMALL_STATE(804)] = 15217, + [SMALL_STATE(805)] = 15224, + [SMALL_STATE(806)] = 15229, + [SMALL_STATE(807)] = 15236, + [SMALL_STATE(808)] = 15241, + [SMALL_STATE(809)] = 15248, + [SMALL_STATE(810)] = 15253, + [SMALL_STATE(811)] = 15258, + [SMALL_STATE(812)] = 15265, + [SMALL_STATE(813)] = 15272, + [SMALL_STATE(814)] = 15277, + [SMALL_STATE(815)] = 15284, + [SMALL_STATE(816)] = 15289, + [SMALL_STATE(817)] = 15296, + [SMALL_STATE(818)] = 15303, + [SMALL_STATE(819)] = 15310, + [SMALL_STATE(820)] = 15317, + [SMALL_STATE(821)] = 15324, + [SMALL_STATE(822)] = 15331, + [SMALL_STATE(823)] = 15336, + [SMALL_STATE(824)] = 15343, + [SMALL_STATE(825)] = 15348, + [SMALL_STATE(826)] = 15355, + [SMALL_STATE(827)] = 15362, + [SMALL_STATE(828)] = 15367, + [SMALL_STATE(829)] = 15374, + [SMALL_STATE(830)] = 15379, + [SMALL_STATE(831)] = 15384, + [SMALL_STATE(832)] = 15389, + [SMALL_STATE(833)] = 15394, + [SMALL_STATE(834)] = 15399, + [SMALL_STATE(835)] = 15404, + [SMALL_STATE(836)] = 15409, + [SMALL_STATE(837)] = 15414, + [SMALL_STATE(838)] = 15419, + [SMALL_STATE(839)] = 15424, + [SMALL_STATE(840)] = 15429, + [SMALL_STATE(841)] = 15434, + [SMALL_STATE(842)] = 15439, + [SMALL_STATE(843)] = 15444, + [SMALL_STATE(844)] = 15449, + [SMALL_STATE(845)] = 15454, + [SMALL_STATE(846)] = 15459, + [SMALL_STATE(847)] = 15464, + [SMALL_STATE(848)] = 15469, + [SMALL_STATE(849)] = 15474, + [SMALL_STATE(850)] = 15479, + [SMALL_STATE(851)] = 15484, + [SMALL_STATE(852)] = 15491, + [SMALL_STATE(853)] = 15496, + [SMALL_STATE(854)] = 15501, + [SMALL_STATE(855)] = 15508, + [SMALL_STATE(856)] = 15515, + [SMALL_STATE(857)] = 15522, + [SMALL_STATE(858)] = 15529, + [SMALL_STATE(859)] = 15536, + [SMALL_STATE(860)] = 15541, + [SMALL_STATE(861)] = 15548, + [SMALL_STATE(862)] = 15553, + [SMALL_STATE(863)] = 15557, + [SMALL_STATE(864)] = 15561, + [SMALL_STATE(865)] = 15565, + [SMALL_STATE(866)] = 15569, + [SMALL_STATE(867)] = 15573, + [SMALL_STATE(868)] = 15577, + [SMALL_STATE(869)] = 15581, + [SMALL_STATE(870)] = 15585, + [SMALL_STATE(871)] = 15589, + [SMALL_STATE(872)] = 15593, + [SMALL_STATE(873)] = 15597, + [SMALL_STATE(874)] = 15601, + [SMALL_STATE(875)] = 15605, + [SMALL_STATE(876)] = 15609, + [SMALL_STATE(877)] = 15613, + [SMALL_STATE(878)] = 15617, + [SMALL_STATE(879)] = 15621, + [SMALL_STATE(880)] = 15625, + [SMALL_STATE(881)] = 15629, + [SMALL_STATE(882)] = 15633, + [SMALL_STATE(883)] = 15637, + [SMALL_STATE(884)] = 15641, + [SMALL_STATE(885)] = 15645, + [SMALL_STATE(886)] = 15649, + [SMALL_STATE(887)] = 15653, + [SMALL_STATE(888)] = 15657, + [SMALL_STATE(889)] = 15661, + [SMALL_STATE(890)] = 15665, + [SMALL_STATE(891)] = 15669, + [SMALL_STATE(892)] = 15673, + [SMALL_STATE(893)] = 15677, + [SMALL_STATE(894)] = 15681, + [SMALL_STATE(895)] = 15685, + [SMALL_STATE(896)] = 15689, + [SMALL_STATE(897)] = 15693, + [SMALL_STATE(898)] = 15697, + [SMALL_STATE(899)] = 15701, + [SMALL_STATE(900)] = 15705, + [SMALL_STATE(901)] = 15709, + [SMALL_STATE(902)] = 15713, + [SMALL_STATE(903)] = 15717, + [SMALL_STATE(904)] = 15721, + [SMALL_STATE(905)] = 15725, + [SMALL_STATE(906)] = 15729, + [SMALL_STATE(907)] = 15733, + [SMALL_STATE(908)] = 15737, + [SMALL_STATE(909)] = 15741, + [SMALL_STATE(910)] = 15745, + [SMALL_STATE(911)] = 15749, + [SMALL_STATE(912)] = 15753, + [SMALL_STATE(913)] = 15757, + [SMALL_STATE(914)] = 15761, + [SMALL_STATE(915)] = 15765, + [SMALL_STATE(916)] = 15769, + [SMALL_STATE(917)] = 15773, + [SMALL_STATE(918)] = 15777, + [SMALL_STATE(919)] = 15781, + [SMALL_STATE(920)] = 15785, + [SMALL_STATE(921)] = 15789, + [SMALL_STATE(922)] = 15793, + [SMALL_STATE(923)] = 15797, + [SMALL_STATE(924)] = 15801, + [SMALL_STATE(925)] = 15805, + [SMALL_STATE(926)] = 15809, + [SMALL_STATE(927)] = 15813, + [SMALL_STATE(928)] = 15817, + [SMALL_STATE(929)] = 15821, + [SMALL_STATE(930)] = 15825, + [SMALL_STATE(931)] = 15829, + [SMALL_STATE(932)] = 15833, + [SMALL_STATE(933)] = 15837, + [SMALL_STATE(934)] = 15841, + [SMALL_STATE(935)] = 15845, + [SMALL_STATE(936)] = 15849, + [SMALL_STATE(937)] = 15853, + [SMALL_STATE(938)] = 15857, + [SMALL_STATE(939)] = 15861, + [SMALL_STATE(940)] = 15865, + [SMALL_STATE(941)] = 15869, + [SMALL_STATE(942)] = 15873, + [SMALL_STATE(943)] = 15877, + [SMALL_STATE(944)] = 15881, + [SMALL_STATE(945)] = 15885, + [SMALL_STATE(946)] = 15889, + [SMALL_STATE(947)] = 15893, + [SMALL_STATE(948)] = 15897, + [SMALL_STATE(949)] = 15901, + [SMALL_STATE(950)] = 15905, + [SMALL_STATE(951)] = 15909, + [SMALL_STATE(952)] = 15913, + [SMALL_STATE(953)] = 15917, + [SMALL_STATE(954)] = 15921, + [SMALL_STATE(955)] = 15925, + [SMALL_STATE(956)] = 15929, + [SMALL_STATE(957)] = 15933, + [SMALL_STATE(958)] = 15937, + [SMALL_STATE(959)] = 15941, + [SMALL_STATE(960)] = 15945, + [SMALL_STATE(961)] = 15949, + [SMALL_STATE(962)] = 15953, + [SMALL_STATE(963)] = 15957, + [SMALL_STATE(964)] = 15961, + [SMALL_STATE(965)] = 15965, + [SMALL_STATE(966)] = 15969, + [SMALL_STATE(967)] = 15973, + [SMALL_STATE(968)] = 15977, + [SMALL_STATE(969)] = 15981, + [SMALL_STATE(970)] = 15985, + [SMALL_STATE(971)] = 15989, + [SMALL_STATE(972)] = 15993, + [SMALL_STATE(973)] = 15997, + [SMALL_STATE(974)] = 16001, + [SMALL_STATE(975)] = 16005, + [SMALL_STATE(976)] = 16009, + [SMALL_STATE(977)] = 16013, + [SMALL_STATE(978)] = 16017, + [SMALL_STATE(979)] = 16021, + [SMALL_STATE(980)] = 16025, + [SMALL_STATE(981)] = 16029, + [SMALL_STATE(982)] = 16033, + [SMALL_STATE(983)] = 16037, + [SMALL_STATE(984)] = 16041, + [SMALL_STATE(985)] = 16045, + [SMALL_STATE(986)] = 16049, + [SMALL_STATE(987)] = 16053, + [SMALL_STATE(988)] = 16057, + [SMALL_STATE(989)] = 16061, + [SMALL_STATE(990)] = 16065, + [SMALL_STATE(991)] = 16069, + [SMALL_STATE(992)] = 16073, + [SMALL_STATE(993)] = 16077, + [SMALL_STATE(994)] = 16081, + [SMALL_STATE(995)] = 16085, + [SMALL_STATE(996)] = 16089, + [SMALL_STATE(997)] = 16093, + [SMALL_STATE(998)] = 16097, + [SMALL_STATE(999)] = 16101, + [SMALL_STATE(1000)] = 16105, + [SMALL_STATE(1001)] = 16109, + [SMALL_STATE(1002)] = 16113, + [SMALL_STATE(1003)] = 16117, + [SMALL_STATE(1004)] = 16121, + [SMALL_STATE(1005)] = 16125, + [SMALL_STATE(1006)] = 16129, + [SMALL_STATE(1007)] = 16133, + [SMALL_STATE(1008)] = 16137, + [SMALL_STATE(1009)] = 16141, + [SMALL_STATE(1010)] = 16145, + [SMALL_STATE(1011)] = 16149, + [SMALL_STATE(1012)] = 16153, + [SMALL_STATE(1013)] = 16157, + [SMALL_STATE(1014)] = 16161, + [SMALL_STATE(1015)] = 16165, + [SMALL_STATE(1016)] = 16169, + [SMALL_STATE(1017)] = 16173, + [SMALL_STATE(1018)] = 16177, + [SMALL_STATE(1019)] = 16181, + [SMALL_STATE(1020)] = 16185, + [SMALL_STATE(1021)] = 16189, + [SMALL_STATE(1022)] = 16193, + [SMALL_STATE(1023)] = 16197, + [SMALL_STATE(1024)] = 16201, + [SMALL_STATE(1025)] = 16205, + [SMALL_STATE(1026)] = 16209, + [SMALL_STATE(1027)] = 16213, + [SMALL_STATE(1028)] = 16217, + [SMALL_STATE(1029)] = 16221, + [SMALL_STATE(1030)] = 16225, + [SMALL_STATE(1031)] = 16229, + [SMALL_STATE(1032)] = 16233, + [SMALL_STATE(1033)] = 16237, + [SMALL_STATE(1034)] = 16241, + [SMALL_STATE(1035)] = 16245, + [SMALL_STATE(1036)] = 16249, + [SMALL_STATE(1037)] = 16253, + [SMALL_STATE(1038)] = 16257, + [SMALL_STATE(1039)] = 16261, + [SMALL_STATE(1040)] = 16265, + [SMALL_STATE(1041)] = 16269, + [SMALL_STATE(1042)] = 16273, + [SMALL_STATE(1043)] = 16277, + [SMALL_STATE(1044)] = 16281, + [SMALL_STATE(1045)] = 16285, + [SMALL_STATE(1046)] = 16289, + [SMALL_STATE(1047)] = 16293, + [SMALL_STATE(1048)] = 16297, + [SMALL_STATE(1049)] = 16301, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 0), - [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 2), - [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 1), - [151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(174), - [154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(176), - [157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(508), - [160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(725), - [163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2344), - [166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(716), - [169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(716), - [172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(715), - [175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(545), - [178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(726), - [181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(536), - [184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(727), - [187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(168), - [190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(166), - [193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(163), - [196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(161), - [199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(88), - [202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(535), - [205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(72), - [208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(728), - [211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(729), - [214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(732), - [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(562), - [220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), - [222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(364), - [225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(558), - [228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(101), - [231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(105), - [234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(109), - [237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(116), - [240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(117), - [243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(151), - [246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1732), - [249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2341), - [252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(45), - [255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(46), - [258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(47), - [261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1638), - [264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(190), - [267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(50), - [270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(42), - [273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(38), - [276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(40), - [279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(51), - [282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(29), - [285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(48), - [288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(44), - [291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(31), - [294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(32), - [297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(33), - [300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(34), - [303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(35), - [306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(36), - [309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(37), - [312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(56), - [315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1308), - [318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(446), - [321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1741), - [324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2351), - [327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(180), - [330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(179), - [333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(510), - [336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(493), - [339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2377), - [342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(57), - [345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(488), - [348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1734), - [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), - [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), - [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(174), - [392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(176), - [395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(508), - [398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(725), - [401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(2344), - [404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(716), - [407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(716), - [410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(715), - [413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(545), - [416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(726), - [419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(536), - [422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(727), - [425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(168), - [428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(166), - [431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(163), - [434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(161), - [437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(88), - [440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(535), - [443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(72), - [446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(728), - [449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(729), - [452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(732), - [455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(562), - [458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), - [460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(476), - [463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(558), - [466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(101), - [469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(105), - [472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(109), - [475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(116), - [478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(117), - [481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(151), - [484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(1732), - [487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(2341), - [490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(45), - [493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(46), - [496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(47), - [499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(1638), - [502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(190), - [505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(50), - [508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(42), - [511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(38), - [514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(40), - [517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(51), - [520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(29), - [523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(48), - [526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(44), - [529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(31), - [532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(32), - [535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(33), - [538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(34), - [541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(35), - [544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(36), - [547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(37), - [550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(56), - [553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(1308), - [556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(446), - [559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(1741), - [562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(2351), - [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(99), - [570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(181), - [573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(509), - [576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(430), - [579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(115), - [582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(114), - [585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(113), - [588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(112), - [591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(111), - [594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(110), - [597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(2348), - [600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(55), - [603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(378), - [606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(1736), - [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_footnote_content, 1), - [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), - [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), - [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 1), - [719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 1), SHIFT_REPEAT(1308), - [722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 1), - [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 1), - [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), - [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), - [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), - [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 2), SHIFT_REPEAT(83), - [785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_caption_repeat1, 2), SHIFT_REPEAT(539), - [788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_caption_repeat1, 2), - [790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 2), SHIFT_REPEAT(539), - [793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_caption_repeat1, 2), SHIFT_REPEAT(676), - [796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 2), SHIFT_REPEAT(2078), - [799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_caption_repeat1, 2), SHIFT_REPEAT(537), - [802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_caption_repeat1, 2), SHIFT_REPEAT(526), - [805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_caption_repeat1, 2), SHIFT_REPEAT(675), - [808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_caption_repeat1, 2), SHIFT_REPEAT(525), - [811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_caption_repeat1, 2), SHIFT_REPEAT(674), - [814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_caption_repeat1, 2), SHIFT_REPEAT(70), - [817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_caption_repeat1, 2), SHIFT_REPEAT(87), - [820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_caption_repeat1, 2), SHIFT_REPEAT(84), - [823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_caption_repeat1, 2), SHIFT_REPEAT(80), - [826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_caption_repeat1, 2), SHIFT_REPEAT(79), - [829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_caption_repeat1, 2), SHIFT_REPEAT(513), - [832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_caption_repeat1, 2), SHIFT_REPEAT(63), - [835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_caption_repeat1, 2), SHIFT_REPEAT(671), - [838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_caption_repeat1, 2), SHIFT_REPEAT(670), - [841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_caption_repeat1, 2), SHIFT_REPEAT(669), - [844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 2), SHIFT_REPEAT(520), - [847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_caption_repeat1, 2), SHIFT_REPEAT(524), - [850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_caption_repeat1, 2), SHIFT_REPEAT(2125), - [853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(108), - [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(627), - [861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), - [863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(627), - [866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(884), - [869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(2150), - [872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(628), - [875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(617), - [878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(883), - [881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(593), - [884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(882), - [887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(182), - [890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(175), - [893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(171), - [896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(155), - [899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(145), - [902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(580), - [905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(136), - [908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), - [910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(880), - [913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(879), - [916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(878), - [919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(560), - [922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(614), - [925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(2163), - [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(189), - [951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(624), - [954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(624), - [957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(766), - [960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(2193), - [963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(623), - [966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(604), - [969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(898), - [972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(603), - [975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(900), - [978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(183), - [981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(184), - [984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(185), - [987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(186), - [990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(187), - [993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(600), - [996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(76), - [999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(908), - [1002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(909), - [1005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(910), - [1008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(595), - [1011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(550), - [1014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(2227), - [1017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_table_repeat1, 2), - [1019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(256), - [1022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2), - [1024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(1599), - [1027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(261), - [1030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(155), - [1033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(246), - [1036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(95), - [1039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(696), - [1042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(696), - [1045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(948), - [1048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(1970), - [1051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(698), - [1054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(590), - [1057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(835), - [1060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(591), - [1063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(831), - [1066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(107), - [1069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(106), - [1072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(103), - [1075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(102), - [1078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(100), - [1081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(605), - [1084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(85), - [1087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(826), - [1090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(825), - [1093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(824), - [1096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(609), - [1099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(575), - [1102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(2282), - [1105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(122), - [1108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(688), - [1111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(688), - [1114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(1071), - [1117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(2005), - [1120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(618), - [1123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(577), - [1126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(922), - [1129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(578), - [1132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(918), - [1135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(146), - [1138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(144), - [1141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(135), - [1144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(134), - [1147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(133), - [1150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(581), - [1153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(75), - [1156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(906), - [1159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(893), - [1162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(892), - [1165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(583), - [1168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(559), - [1171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(2273), - [1174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), - [1176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(884), - [1179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(883), - [1182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(152), - [1185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(682), - [1188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(682), - [1191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(1014), - [1194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(2083), - [1197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(647), - [1200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(563), - [1203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(1075), - [1206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(565), - [1209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(1077), - [1212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(165), - [1215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(164), - [1218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(162), - [1221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(159), - [1224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(158), - [1227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(569), - [1230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(71), - [1233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(1017), - [1236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(1016), - [1239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(1010), - [1242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(572), - [1245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(564), - [1248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(2264), - [1251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(145), - [1254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(882), - [1257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(167), - [1260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(667), - [1263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(667), - [1266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(894), - [1269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(2109), - [1272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(668), - [1275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(596), - [1278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(1018), - [1281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(542), - [1284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(1020), - [1287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(97), - [1290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(93), - [1293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(91), - [1296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(90), - [1299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(160), - [1302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(549), - [1305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(78), - [1308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(1028), - [1311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(1029), - [1314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(1030), - [1317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(554), - [1320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(606), - [1323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(2255), - [1326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(766), - [1329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(900), - [1332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(894), - [1335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(1018), - [1338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(898), - [1341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(100), - [1344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(133), - [1347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(158), - [1350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(160), - [1353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(187), - [1356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(1014), - [1359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(1075), - [1362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(1071), - [1365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(922), - [1368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(948), - [1371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(831), - [1374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(835), - [1377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(918), - [1380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(102), - [1383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(134), - [1386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(159), - [1389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(1626), - [1392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(1077), - [1395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(90), - [1398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(186), - [1401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(1020), - [1404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(196), - [1407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(1116), - [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [1412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(1116), - [1415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(1169), - [1418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(2367), - [1421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(1137), - [1424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(722), - [1427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(1140), - [1430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(719), - [1433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(1142), - [1436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(201), - [1439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(195), - [1442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(191), - [1445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(192), - [1448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(193), - [1451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(773), - [1454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(173), - [1457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(1176), - [1460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(1177), - [1463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(1180), - [1466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(781), - [1469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(2198), - [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [1482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [1490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(83), - [1493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(539), - [1496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), - [1498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(539), - [1501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(676), - [1504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(2078), - [1507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(537), - [1510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(526), - [1513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(675), - [1516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(525), - [1519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(674), - [1522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(70), - [1525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(87), - [1528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(84), - [1531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(80), - [1534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(79), - [1537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(513), - [1540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(63), - [1543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(671), - [1546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(670), - [1549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(669), - [1552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(520), - [1555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(524), - [1558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(2125), - [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [1563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline, 1), - [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), - [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), - [1613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_content, 1), - [1615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_content, 1), - [1617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__table_content, 1), SHIFT(2012), - [1620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__table_content, 1), SHIFT(1599), - [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), - [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), - [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), - [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [1641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_no_surrounding_spaces, 1), SHIFT(807), - [1644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_no_surrounding_spaces, 1), - [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [1648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [1666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), - [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [1670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [1672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__table_content, 1), SHIFT(2238), - [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), - [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), - [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), - [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [1689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_no_surrounding_spaces, 1), SHIFT(775), - [1692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [1696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [1700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [1702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [1706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [1716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), - [1722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(167), - [1725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(667), - [1728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(667), - [1731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(894), - [1734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(2109), - [1737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(668), - [1740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(596), - [1743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1018), - [1746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(542), - [1749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1020), - [1752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(97), - [1755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(93), - [1758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(91), - [1761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(90), - [1764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(160), - [1767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(549), - [1770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(78), - [1773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1028), - [1776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1029), - [1779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1030), - [1782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(554), - [1785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(606), - [1788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(2255), - [1791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [1795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [1799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), - [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), - [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), - [1835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(148), - [1838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(720), - [1841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(720), - [1844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(776), - [1847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(2034), - [1850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(721), - [1853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(531), - [1856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1005), - [1859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(567), - [1862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1006), - [1865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(177), - [1868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(172), - [1871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(170), - [1874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(157), - [1877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(153), - [1880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(570), - [1883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(81), - [1886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1007), - [1889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1008), - [1892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1035), - [1895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(613), - [1898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(574), - [1901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(2309), - [1904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [1908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), - [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [1912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), - [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [1920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [1924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [1934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [1936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [1940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [1944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), - [1946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [1948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(152), - [1951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(682), - [1954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(682), - [1957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1014), - [1960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(2083), - [1963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(647), - [1966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(563), - [1969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1075), - [1972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(565), - [1975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1077), - [1978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(165), - [1981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(164), - [1984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(162), - [1987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(159), - [1990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(158), - [1993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(569), - [1996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(71), - [1999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1017), - [2002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1016), - [2005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1010), - [2008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(572), - [2011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(564), - [2014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(2264), - [2017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__table_content, 1), SHIFT(2209), - [2020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(95), - [2023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(696), - [2026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(696), - [2029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(948), - [2032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1970), - [2035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(698), - [2038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(590), - [2041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(835), - [2044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(591), - [2047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(831), - [2050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(107), - [2053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(106), - [2056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(103), - [2059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(102), - [2062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(100), - [2065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(100), - [2068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(605), - [2071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(85), - [2074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(826), - [2077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(825), - [2080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(824), - [2083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(609), - [2086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(575), - [2089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(2282), - [2092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), - [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [2096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), - [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [2100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), - [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [2120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline, 1), - [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [2134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), - [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [2138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(189), - [2141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(624), - [2144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(624), - [2147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(766), - [2150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(2193), - [2153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(623), - [2156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(604), - [2159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(898), - [2162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(603), - [2165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(900), - [2168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(183), - [2171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(184), - [2174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(185), - [2177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(186), - [2180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(187), - [2183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(600), - [2186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(76), - [2189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(908), - [2192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(909), - [2195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(910), - [2198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(595), - [2201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(550), - [2204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(2227), - [2207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(122), - [2210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(688), - [2213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(688), - [2216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1071), - [2219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(2005), - [2222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(618), - [2225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(577), - [2228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(922), - [2231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(578), - [2234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(918), - [2237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(146), - [2240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(144), - [2243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(135), - [2246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(134), - [2249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(134), - [2252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(133), - [2255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(581), - [2258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(75), - [2261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(906), - [2264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(893), - [2267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(892), - [2270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(583), - [2273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(559), - [2276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(2273), - [2279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(149), - [2282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(716), - [2285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(716), - [2288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(725), - [2291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(2344), - [2294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(715), - [2297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(545), - [2300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(726), - [2303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(536), - [2306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(727), - [2309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(168), - [2312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(166), - [2315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(163), - [2318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(161), - [2321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(88), - [2324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(535), - [2327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(72), - [2330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(728), - [2333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(729), - [2336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(732), - [2339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(562), - [2342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(558), - [2345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(2351), - [2348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(108), - [2351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(627), - [2354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(627), - [2357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(884), - [2360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(2150), - [2363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(628), - [2366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(617), - [2369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(883), - [2372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(593), - [2375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(882), - [2378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(182), - [2381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(175), - [2384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(171), - [2387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(155), - [2390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(145), - [2393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(580), - [2396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(136), - [2399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(880), - [2402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(879), - [2405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(878), - [2408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(560), - [2411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(614), - [2414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(2163), - [2417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [2421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), - [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [2425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), - [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [2457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), - [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [2461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), - [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [2465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), - [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [2469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), - [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [2501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), - [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [2505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), - [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [2509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), - [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [2513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), - [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [2545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), - [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [2549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [2553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), - [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [2557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2367), - [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [2589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), - [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [2621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(202), - [2624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1013), - [2627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1013), - [2630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1162), - [2633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(2057), - [2636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1011), - [2639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(707), - [2642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1091), - [2645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(706), - [2648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1081), - [2651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(199), - [2654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(200), - [2657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(197), - [2660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(208), - [2663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(207), - [2666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(705), - [2669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(96), - [2672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1093), - [2675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1094), - [2678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1097), - [2681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(708), - [2684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(718), - [2687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(2318), - [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [2714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 2), - [2716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 2), - [2718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 4), - [2720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 4), - [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), - [2724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heading5, 3), - [2726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heading5, 3), - [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [2730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_separator, 6), - [2732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_separator, 6), - [2734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_row, 6), - [2736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_row, 6), - [2738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_content, 2, .production_id = 1), - [2740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_content, 2, .production_id = 1), - [2742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 6, .production_id = 17), - [2744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 6, .production_id = 17), - [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [2748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_cell, 1), - [2750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 6), - [2752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 6), - [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [2756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_cell_repeat1, 2), SHIFT_REPEAT(196), - [2759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_cell_repeat1, 2), SHIFT_REPEAT(1116), - [2762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_cell_repeat1, 2), SHIFT_REPEAT(1116), - [2765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_cell_repeat1, 2), SHIFT_REPEAT(1169), - [2768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_cell_repeat1, 2), SHIFT_REPEAT(2367), - [2771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_cell_repeat1, 2), SHIFT_REPEAT(1137), - [2774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_cell_repeat1, 2), SHIFT_REPEAT(722), - [2777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_cell_repeat1, 2), SHIFT_REPEAT(1140), - [2780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_cell_repeat1, 2), SHIFT_REPEAT(719), - [2783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_cell_repeat1, 2), SHIFT_REPEAT(1142), - [2786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_cell_repeat1, 2), SHIFT_REPEAT(201), - [2789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_cell_repeat1, 2), SHIFT_REPEAT(195), - [2792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_cell_repeat1, 2), SHIFT_REPEAT(191), - [2795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_cell_repeat1, 2), SHIFT_REPEAT(192), - [2798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_cell_repeat1, 2), SHIFT_REPEAT(193), - [2801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_cell_repeat1, 2), SHIFT_REPEAT(773), - [2804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_cell_repeat1, 2), SHIFT_REPEAT(173), - [2807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_cell_repeat1, 2), SHIFT_REPEAT(1176), - [2810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_cell_repeat1, 2), SHIFT_REPEAT(1177), - [2813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_cell_repeat1, 2), SHIFT_REPEAT(1180), - [2816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_cell_repeat1, 2), SHIFT_REPEAT(781), - [2819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_cell_repeat1, 2), SHIFT_REPEAT(2198), - [2822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 5, .production_id = 13), - [2824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 5, .production_id = 13), - [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), - [2828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_row, 5), - [2830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_row, 5), - [2832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_separator, 5), - [2834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_separator, 5), - [2836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 5, .production_id = 15), - [2838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 5, .production_id = 15), - [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [2842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 3), - [2844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 3), - [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [2848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 5), - [2850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 5), - [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), - [2854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_separator, 4), - [2856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_separator, 4), - [2858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_row, 4), - [2860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_row, 4), - [2862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 4), - [2864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 4), - [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [2868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 4, .production_id = 13), - [2870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 4, .production_id = 13), - [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), - [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), - [2894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heading6, 3), - [2896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heading6, 3), - [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [2902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heading4, 3), - [2904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heading4, 3), - [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [2908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heading3, 3), - [2910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heading3, 3), - [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [2914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heading2, 3), - [2916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heading2, 3), - [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), - [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), - [2924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heading1, 3), - [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heading1, 3), - [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), - [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), - [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [2952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_plus, 2), - [2954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_plus, 2), - [2956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 1), - [2958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 1), - [2960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 6, .production_id = 13), - [2962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 6, .production_id = 13), - [2964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heading3, 4), - [2966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heading3, 4), - [2968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 7), - [2970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 7), - [2972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heading4, 4), - [2974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heading4, 4), - [2976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heading5, 4), - [2978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heading5, 4), - [2980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heading6, 4), - [2982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heading6, 4), - [2984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 7, .production_id = 18), - [2986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 7, .production_id = 18), - [2988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_task, 2), - [2990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_task, 2), - [2992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_definition, 2), - [2994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_definition, 2), - [2996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 7, .production_id = 14), - [2998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 7, .production_id = 14), - [3000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 7, .production_id = 13), - [3002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 7, .production_id = 13), - [3004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 8), - [3006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 8), - [3008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 8, .production_id = 19), - [3010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 8, .production_id = 19), - [3012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_thematic_break, 1), - [3014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_thematic_break, 1), - [3016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_decimal_period, 2), - [3018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_decimal_period, 2), - [3020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 1), - [3022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 1), - [3024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_quote, 3), - [3026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_quote, 3), - [3028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__paragraph, 2, .production_id = 2), - [3030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph, 2, .production_id = 2), - [3032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_decimal_paren, 2), - [3034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_decimal_paren, 2), - [3036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_decimal_parens, 2), - [3038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_decimal_parens, 2), - [3040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_alpha_period, 2), - [3042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_alpha_period, 2), - [3044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_dash, 2), - [3046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_dash, 2), - [3048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_star, 2), - [3050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_star, 2), - [3052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_alpha_paren, 2), - [3054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_alpha_paren, 2), - [3056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_alpha_parens, 2), - [3058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_alpha_parens, 2), - [3060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_alpha_period, 2), - [3062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_alpha_period, 2), - [3064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_roman_parens, 2), - [3066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_roman_parens, 2), - [3068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_alpha_paren, 2), - [3070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_alpha_paren, 2), - [3072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 2), - [3074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 2), - [3076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_roman_paren, 2), - [3078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_roman_paren, 2), - [3080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_attribute, 4, .production_id = 11), - [3082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_attribute, 4, .production_id = 11), - [3084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_alpha_parens, 2), - [3086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_alpha_parens, 2), - [3088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_roman_period, 2), - [3090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_roman_period, 2), - [3092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_roman_parens, 2), - [3094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_roman_parens, 2), - [3096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_roman_period, 2), - [3098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_roman_period, 2), - [3100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_roman_paren, 2), - [3102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_roman_paren, 2), - [3104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_caption, 3, .production_id = 6), - [3106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_caption, 3, .production_id = 6), - [3108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_attribute, 3), - [3110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_attribute, 3), - [3112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_footnote, 5), - [3114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_footnote, 5), - [3116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 1), - [3118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 1), - [3120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 3, .production_id = 9), - [3122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 3, .production_id = 9), - [3124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heading2, 4), - [3126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heading2, 4), - [3128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 5), - [3130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 5), - [3132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frontmatter, 6), - [3134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_frontmatter, 6), - [3136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heading1, 4), - [3138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heading1, 4), - [3140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 3), - [3142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 3), - [3144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 6), - [3146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 6), - [3148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frontmatter, 7), - [3150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_frontmatter, 7), - [3152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_task, 3), - [3154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_task, 3), - [3156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), - [3158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), - [3160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(506), - [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [3165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [3169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(1346), - [3172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), - [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), - [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [3184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__hard_line_break, 1), - [3186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hard_line_break, 1), - [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [3190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), - [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [3194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(515), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [3205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_core_element, 1), - [3207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_core_element, 1), - [3209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), - [3211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_quote_prefix, 1), - [3213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_quote_prefix, 1), - [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [3221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_with_newline, 1), - [3223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_with_newline, 1), - [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [3227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_strong_begin, 1), REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), - [3230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), - [3232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), - [3235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_emphasis_begin, 1), REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), - [3238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), - [3240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [3245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verbatim, 3, .production_id = 3), - [3247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verbatim, 3, .production_id = 3), - [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [3259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), - [3261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), - [3263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(544), - [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), - [3268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(547), - [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), - [3279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), - [3281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(556), - [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), - [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [3290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), - [3292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hard_line_break, 2), - [3294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hard_line_break, 2), - [3296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), - [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [3300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(566), - [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), - [3307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), - [3309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(573), - [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [3318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(579), - [3321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(582), - [3324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), - [3326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(584), - [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), - [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [3333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__text, 2), - [3335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__text, 2), - [3337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(587), - [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [3348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), - [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [3354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(599), - [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [3359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(602), - [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [3366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), - [3368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), - [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [3372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(611), - [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), - [3377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), - [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [3385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), - [3387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_inline_attribute, 3), - [3389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_inline_attribute, 3), - [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [3393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link_destination, 3), - [3395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link_destination, 3), - [3397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_label, 3, .production_id = 14), - [3399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_label, 3, .production_id = 14), - [3401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), - [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [3405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(626), - [3408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), - [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [3412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(630), - [3415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete, 3, .production_id = 6), - [3417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete, 3, .production_id = 6), - [3419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(633), - [3422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math, 4, .production_id = 12), - [3424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math, 4, .production_id = 12), - [3426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(635), - [3429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comment, 3), - [3431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 3), - [3433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_span, 4), - [3435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_span, 4), - [3437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_inline, 4), - [3439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_inline, 4), - [3441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strong, 3), - [3443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strong, 3), - [3445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strong_end, 1), - [3447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strong_end, 1), - [3449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_emphasis, 3), - [3451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emphasis, 3), - [3453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_emphasis_end, 1), - [3455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emphasis_end, 1), - [3457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_footnote_reference, 3, .production_id = 7), - [3459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_footnote_reference, 3, .production_id = 7), - [3461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 3, .production_id = 6), - [3463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 3, .production_id = 6), - [3465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_superscript, 3, .production_id = 6), - [3467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_superscript, 3, .production_id = 6), - [3469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), - [3471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 3, .production_id = 6), - [3473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 3, .production_id = 6), - [3475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_highlighted, 3, .production_id = 6), - [3477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlighted, 3, .production_id = 6), - [3479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_autolink, 3), - [3481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_autolink, 3), - [3483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(651), - [3486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(652), - [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [3491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(655), - [3494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 2), - [3496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 2), - [3498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_reference_link, 2), - [3500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_reference_link, 2), - [3502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collapsed_reference_link, 2), - [3504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collapsed_reference_link, 2), - [3506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_image, 2), - [3508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_image, 2), - [3510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_reference_image, 2), - [3512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_reference_image, 2), - [3514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collapsed_reference_image, 2), - [3516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collapsed_reference_image, 2), - [3518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__hard_line_break, 2), - [3520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hard_line_break, 2), - [3522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__comment_with_spaces, 2), - [3524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_with_spaces, 2), - [3526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(664), - [3529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(665), - [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [3534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), - [3536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_note, 1), - [3538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note, 1), - [3540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_todo, 1), - [3542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_todo, 1), - [3544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(2136), - [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [3549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(673), - [3552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_with_whitespace, 1), - [3554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_with_whitespace, 1), - [3556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_with_whitespace, 1), SHIFT(1729), - [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [3561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(678), - [3564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(680), - [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [3569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(684), - [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [3574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(687), - [3577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(689), - [3580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(690), - [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [3585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_attribute, 3, .production_id = 11), - [3587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_attribute, 3, .production_id = 11), - [3589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_attribute, 2), - [3591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_attribute, 2), - [3593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(695), - [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), - [3598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), - [3600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(699), - [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [3605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(702), - [3608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), - [3610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), - [3612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(710), - [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [3617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), - [3619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), - [3621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(717), - [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [3626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strong_begin, 1), - [3628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), - [3630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), - [3632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_with_whitespace, 1), SHIFT(1803), - [3635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(1982), - [3638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_with_whitespace, 1), SHIFT(1783), - [3641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(2295), - [3644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 1), - [3646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_caption_repeat1, 1), - [3648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_with_whitespace, 1), SHIFT(1760), - [3651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), - [3653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(2304), - [3656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(2286), - [3659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_emphasis_begin_repeat1, 2), - [3661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_emphasis_begin_repeat1, 2), SHIFT_REPEAT(828), - [3664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_emphasis_begin_repeat1, 2), - [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [3668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_emphasis_begin, 2), - [3670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), - [3672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), - [3674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strong_begin, 2), - [3676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strong_begin, 2), - [3678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(2173), - [3681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_with_whitespace, 1), SHIFT(1837), - [3684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_with_whitespace, 1), SHIFT(1772), - [3687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(896), - [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [3692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(2277), - [3695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(2237), - [3698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_with_whitespace, 1), SHIFT(1768), - [3701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(949), - [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [3706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_line, 2), - [3708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_line, 2), - [3710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(993), - [3713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(2313), - [3716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), - [3718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_core_element, 2), - [3720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_core_element, 2), - [3722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_with_whitespace, 1), SHIFT(1771), - [3725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_with_newline, 2), - [3727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_with_newline, 2), - [3729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(2268), - [3732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(2259), - [3735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_with_whitespace, 1), SHIFT(1770), - [3738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(2322), - [3741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_with_whitespace, 1), REDUCE(sym__inline_no_surrounding_spaces, 2), - [3744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_no_surrounding_spaces, 2), - [3746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_with_whitespace, 1), REDUCE(sym__inline_no_surrounding_spaces, 3), - [3749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_no_surrounding_spaces, 3), - [3751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), - [3753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(1147), - [3756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_with_whitespace, 1), SHIFT(1761), - [3759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_with_whitespace, 1), SHIFT(1765), - [3762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_with_whitespace, 1), SHIFT(1757), - [3765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_with_whitespace_without_newline, 1), - [3767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_with_whitespace_without_newline, 1), - [3769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_with_whitespace_without_newline, 1), SHIFT(1809), - [3772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(2208), - [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), - [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [3895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), - [3897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(1934), - [3900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(1325), - [3903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(2248), - [3906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(2148), - [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [3913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(247), - [3916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2), - [3918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2), SHIFT_REPEAT(1879), - [3921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2), SHIFT_REPEAT(1346), - [3924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2), SHIFT_REPEAT(2248), - [3927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2), SHIFT_REPEAT(1512), - [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), - [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), - [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), - [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [3942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(252), - [3945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__table_content, 1), SHIFT(2137), - [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [3970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(1278), - [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [3997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__table_content, 1), SHIFT(2174), - [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [4002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 2), - [4004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 2), SHIFT_REPEAT(1638), - [4007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 2), SHIFT_REPEAT(1702), - [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [4020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 1, .production_id = 5), - [4022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_name, 1), - [4024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(1297), - [4027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, .production_id = 4), - [4029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1), - [4031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value, 3), - [4033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2), - [4035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2), SHIFT_REPEAT(46), - [4038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2), SHIFT_REPEAT(1624), - [4041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_repeat1, 2), SHIFT_REPEAT(1971), - [4044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_code_repeat1, 2), - [4046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_repeat1, 2), SHIFT_REPEAT(1617), - [4049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2), - [4051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2), SHIFT_REPEAT(47), - [4054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2), SHIFT_REPEAT(1722), - [4057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_with_newline, 3), - [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [4073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 2), - [4075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 2), SHIFT_REPEAT(45), - [4078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 2), SHIFT_REPEAT(1636), - [4081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 3), - [4083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_with_newline, 4, .production_id = 13), - [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [4111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 1), - [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [4115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code, 1), - [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [4157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 1), - [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [4163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_text, 3), - [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [4167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_text, 3), - [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [4171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 2), SHIFT_REPEAT(52), - [4174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 2), - [4176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 2), SHIFT_REPEAT(1605), - [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [4183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_no_newline, 3, .production_id = 6), - [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [4225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_no_newline, 2), - [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [4253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), - [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [4261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), - [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [4267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), - [4269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2287), - [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [4277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), - [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), - [4283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), - [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [4295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), - [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), - [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [4305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [4311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__comment_with_newline_repeat1, 2), SHIFT_REPEAT(1532), - [4314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_with_newline_repeat1, 2), - [4316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comment_with_newline_repeat1, 2), SHIFT_REPEAT(1532), - [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [4323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [4333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), - [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [4343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 2), - [4345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 2), SHIFT_REPEAT(59), - [4348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_quote_content, 2), - [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [4352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), - [4354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), - [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), - [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [4366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), - [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), - [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [4374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), - [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [4378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), - [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), - [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [4388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2366), - [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [4392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), - [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [4400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), - [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [4410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_quote_content, 1), - [4412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_paren_repeat1, 2), - [4414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_paren_repeat1, 2), SHIFT_REPEAT(32), - [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [4419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), - [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [4481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_parens_repeat1, 2), - [4483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_parens_repeat1, 2), SHIFT_REPEAT(37), - [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [4502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_period_repeat1, 2), - [4504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_period_repeat1, 2), SHIFT_REPEAT(51), - [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [4515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_parens_repeat1, 2), - [4517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_parens_repeat1, 2), SHIFT_REPEAT(36), - [4520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_paren_repeat1, 2), - [4522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_paren_repeat1, 2), SHIFT_REPEAT(31), - [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [4535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_period_repeat1, 2), - [4537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_period_repeat1, 2), SHIFT_REPEAT(40), - [4540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_parens_repeat1, 2), - [4542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_parens_repeat1, 2), SHIFT_REPEAT(35), - [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [4553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_paren_repeat1, 2), - [4555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_paren_repeat1, 2), SHIFT_REPEAT(44), - [4558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_period_repeat1, 2), - [4560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_period_repeat1, 2), SHIFT_REPEAT(38), - [4563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), - [4565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), - [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [4569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__comment_no_newline_repeat1, 2), SHIFT_REPEAT(1587), - [4572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_no_newline_repeat1, 2), - [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [4576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_parens_repeat1, 2), - [4578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_parens_repeat1, 2), SHIFT_REPEAT(34), - [4581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_paren_repeat1, 2), - [4583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_paren_repeat1, 2), SHIFT_REPEAT(48), - [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [4590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_period_repeat1, 2), - [4592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_period_repeat1, 2), SHIFT_REPEAT(42), - [4595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_parens_repeat1, 2), - [4597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_decimal_parens_repeat1, 2), SHIFT_REPEAT(33), - [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [4604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_paren_repeat1, 2), - [4606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_decimal_paren_repeat1, 2), SHIFT_REPEAT(29), - [4609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_period_repeat1, 2), - [4611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_decimal_period_repeat1, 2), SHIFT_REPEAT(50), - [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [4618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_definition_repeat1, 2), - [4620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_definition_repeat1, 2), SHIFT_REPEAT(190), - [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [4629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_with_newline_repeat1, 1), - [4631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__comment_with_newline_repeat1, 1), - [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), - [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [4639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frontmatter_content, 1), - [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [4659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_or_two_newlines, 1), - [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), - [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [4693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_frontmatter_content_repeat1, 2), SHIFT_REPEAT(2108), - [4696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_frontmatter_content_repeat1, 2), - [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [4702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), - [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [4732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__heading6_content_repeat1, 2), - [4734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__heading6_content_repeat1, 2), SHIFT_REPEAT(206), - [4737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [4741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), - [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [4745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_no_newline_repeat1, 1), - [4747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_item_content, 2), - [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [4753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), - [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), - [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [4761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), - [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [4769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [4773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), - [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [4783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_item_content, 3), - [4785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [4789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), - [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [4797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line, 2), - [4799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__heading5_content_repeat1, 2), - [4801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__heading5_content_repeat1, 2), SHIFT_REPEAT(205), - [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [4806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), - [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [4810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), - [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [4814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), - [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [4818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), - [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [4824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(1615), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [4833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_description, 3, .production_id = 8), - [4835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_description, 3, .production_id = 8), - [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [4839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(1621), - [4842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), - [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [4846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), - [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [4852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dash, 3), - [4854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_description, 2), - [4856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_description, 2), - [4858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 3), - [4860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 3), - [4862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), - [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [4866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), - [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [4876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), - [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [4880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), - [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [4886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 3), - [4888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), - [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [4892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), - [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), - [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [4906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(1651), - [4909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), - [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [4913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), - [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [4917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heading2_content, 2), - [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [4921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(1660), - [4924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(1661), - [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), - [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), - [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [4935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 2), - [4937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_task, 2), - [4939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 2), - [4941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dash, 2), - [4943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(1679), - [4946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heading6_content, 1), - [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [4950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heading5_content, 1), - [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [4954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heading2_content, 1), - [4956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_or_two_newlines, 2), - [4958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heading1_content, 1), - [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), - [4964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), - [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [4968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), - [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [4976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), - [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [4980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), - [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [4984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heading1_content, 2), - [4986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heading5_content, 2), - [4988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heading6_content, 2), - [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [4994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__heading2_content_repeat1, 2), - [4996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__heading2_content_repeat1, 2), SHIFT_REPEAT(204), - [4999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(1724), - [5002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_task, 3), - [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [5006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__heading1_content_repeat1, 2), - [5008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__heading1_content_repeat1, 2), SHIFT_REPEAT(203), - [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [5013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_definition, 4), - [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [5017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div_marker_begin, 1), - [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [5023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_separator_repeat1, 2), SHIFT_REPEAT(2194), - [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [5052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), - [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [5056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), - [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), - [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [5096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), - [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [5100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_row_repeat1, 2), SHIFT_REPEAT(300), - [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [5107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), - [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [5111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), - [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [5125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_decimal_period, 2), - [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [5131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_alpha_period, 2), - [5133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_alpha_period, 2), - [5135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_roman_period, 2), - [5137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_roman_period, 2), - [5139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_decimal_paren, 2), - [5141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_alpha_paren, 2), - [5143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_alpha_paren, 2), - [5145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_roman_paren, 2), - [5147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), - [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [5151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), - [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [5155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_roman_paren, 2), - [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [5171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_alpha_parens, 2), - [5173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_alpha_parens, 2), - [5175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_roman_parens, 2), - [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [5185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_roman_parens, 2), - [5187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_decimal_parens, 2), - [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [5193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_definition, 5, .production_id = 16), - [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [5197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), - [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [5201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), - [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [5205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), - [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [5213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_content, 2), - [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [5217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), - [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [5221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), - [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [5227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), - [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [5231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), - [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [5237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), - [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [5241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), - [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [5245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), - [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [5249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), - [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [5253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), - [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [5257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [5265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [5269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), - [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [5273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), - [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [5279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), - [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [5283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), - [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [5287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), - [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [5385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_checked, 3), - [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [5475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block_info, 2, .production_id = 10), - [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), - [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), - [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [5577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_separator_repeat1, 2), - [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [5615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unchecked, 3), - [5617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_label, 1), - [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [5663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [5667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), - [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [5673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [5679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [5681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [5683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [5685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [5689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [5697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [5709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [5713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [5715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), - [5717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [5719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [5729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), - [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [5745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_row_repeat1, 2), - [5747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [5757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), - [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), - [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [5839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [5843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div_marker_begin, 3), - [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [5847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key, 1), - [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [5851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [5853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [5857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [5859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [5861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), - [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [5867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [5869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [5871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [5873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [5879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [5993] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), - [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), - [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), - [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), - [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [6045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [6047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [6057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [6061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [6065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [6069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [6071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [6073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [6075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [6079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [6081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [6083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [71] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 2), + [73] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 1), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [95] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), + [97] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(291), + [100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(272), + [103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(265), + [106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(329), + [109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(235), + [112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(325), + [115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(716), + [118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(966), + [121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(31), + [124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(32), + [127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(33), + [130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(647), + [133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(332), + [136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(38), + [139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(45), + [142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(50), + [145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(51), + [148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(49), + [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(43), + [154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(29), + [157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(42), + [160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(41), + [163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(40), + [166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(39), + [169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(36), + [172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(35), + [175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(34), + [178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(48), + [181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(57), + [184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(397), + [187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(255), + [190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(814), + [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(287), + [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(270), + [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(262), + [202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(198), + [205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1008), + [208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(58), + [211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(245), + [214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(693), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_footnote_content, 1), + [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(287), + [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(270), + [257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(262), + [260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(329), + [263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), + [265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(221), + [268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(325), + [271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(716), + [274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(1008), + [277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(31), + [280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(32), + [283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(33), + [286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(647), + [289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(332), + [292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(38), + [295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(45), + [298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(50), + [301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(51), + [304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(49), + [307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(43), + [310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(29), + [313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(42), + [316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(41), + [319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(40), + [322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(39), + [325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(36), + [328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(35), + [331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(34), + [334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(48), + [337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(58), + [340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(397), + [343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(245), + [346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(693), + [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(290), + [360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(273), + [363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(266), + [366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(136), + [369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(298), + [372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(1015), + [375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(55), + [378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(201), + [381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(690), + [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), + [396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), + [452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 1), + [466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 1), SHIFT_REPEAT(397), + [469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 1), + [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 1), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2), + [495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_table_repeat1, 2), + [497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(302), + [500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(664), + [503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(294), + [506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(322), + [509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_content, 1), + [511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_content, 1), + [513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__table_content, 1), SHIFT(995), + [516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__table_content, 1), SHIFT(664), + [519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__table_content, 1), SHIFT(981), + [522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__table_content, 1), SHIFT(967), + [525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 2), + [527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 2), + [529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 6, .production_id = 11), + [531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 6, .production_id = 11), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 6), + [537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 6), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 5, .production_id = 8), + [543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 5, .production_id = 8), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_row, 5), + [549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_row, 5), + [551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_separator, 5), + [553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_separator, 5), + [555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 5, .production_id = 9), + [557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 5, .production_id = 9), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 5), + [563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 5), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 4, .production_id = 8), + [569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 4, .production_id = 8), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 4), + [575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 4), + [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_row, 4), + [581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_row, 4), + [583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_separator, 4), + [585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_separator, 4), + [587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 4), + [589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 4), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 3), + [595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 3), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heading, 3), + [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heading, 3), + [605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_or_two_newlines, 1), + [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_or_two_newlines, 1), + [611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_content, 2, .production_id = 1), + [613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_content, 2, .production_id = 1), + [615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_separator, 6), + [617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_separator, 6), + [619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_row, 6), + [621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_row, 6), + [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_attribute, 3), + [667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_attribute, 3), + [669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 7, .production_id = 12), + [671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 7, .production_id = 12), + [673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 7, .production_id = 8), + [675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 7, .production_id = 8), + [677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_dash, 2), + [679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_dash, 2), + [681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frontmatter, 6), + [683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_frontmatter, 6), + [685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_or_two_newlines, 2), + [687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_or_two_newlines, 2), + [689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_plus, 2), + [691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_plus, 2), + [693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 8), + [695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 8), + [697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_star, 2), + [699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_star, 2), + [701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 1), + [703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 1), + [705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 8, .production_id = 13), + [707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 8, .production_id = 13), + [709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_task, 2), + [711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_task, 2), + [713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_caption, 3, .production_id = 6), + [715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_caption, 3, .production_id = 6), + [717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 8), + [719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 8), + [721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_definition, 2), + [723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_definition, 2), + [725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_decimal_period, 2), + [727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_decimal_period, 2), + [729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_decimal_paren, 2), + [731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_decimal_paren, 2), + [733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 7), + [735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 7), + [737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_decimal_parens, 2), + [739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_decimal_parens, 2), + [741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 6, .production_id = 8), + [743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 6, .production_id = 8), + [745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_alpha_period, 2), + [747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_alpha_period, 2), + [749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 6), + [751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 6), + [753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_alpha_paren, 2), + [755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_alpha_paren, 2), + [757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_alpha_parens, 2), + [759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_alpha_parens, 2), + [761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 5), + [763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 5), + [765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_alpha_period, 2), + [767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_alpha_period, 2), + [769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_footnote, 5), + [771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_footnote, 5), + [773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_alpha_paren, 2), + [775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_alpha_paren, 2), + [777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_alpha_parens, 2), + [779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_alpha_parens, 2), + [781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_attribute, 4, .production_id = 7), + [783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_attribute, 4, .production_id = 7), + [785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_roman_period, 2), + [787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_roman_period, 2), + [789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_roman_paren, 2), + [791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_roman_paren, 2), + [793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 3), + [795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 3), + [797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_roman_parens, 2), + [799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_roman_parens, 2), + [801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_roman_period, 2), + [803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_roman_period, 2), + [805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_roman_paren, 2), + [807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_roman_paren, 2), + [809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_roman_parens, 2), + [811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_roman_parens, 2), + [813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 2), + [815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 2), + [817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph, 2, .production_id = 2), + [819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__paragraph, 2, .production_id = 2), + [821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frontmatter, 7), + [823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_frontmatter, 7), + [825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 1), + [827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 1), + [829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 1), + [831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 1), + [833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_thematic_break, 1), + [835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_thematic_break, 1), + [837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_quote, 3), + [839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_quote, 3), + [841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 3, .production_id = 4), + [843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 3, .production_id = 4), + [845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heading, 4), + [847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heading, 4), + [849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_task, 3), + [851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_task, 3), + [853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), + [855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), + [857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(261), + [860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), + [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), + [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), + [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), + [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), + [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), + [874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), + [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), + [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), + [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), + [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), + [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(300), + [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), + [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(376), + [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), + [904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 2), SHIFT_REPEAT(334), + [907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 2), + [909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_caption_repeat1, 2), + [911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), + [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), + [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), + [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), + [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), + [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2), + [953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2), SHIFT_REPEAT(820), + [956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2), SHIFT_REPEAT(457), + [959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2), SHIFT_REPEAT(920), + [962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2), SHIFT_REPEAT(501), + [965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(336), + [968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(296), + [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), + [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), + [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), + [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), + [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [1019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__table_content, 1), SHIFT(919), + [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), + [1024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline, 1), + [1026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(331), + [1029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), + [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [1045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline, 1), + [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [1061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__table_content, 1), SHIFT(940), + [1064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [1066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(346), + [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [1071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_quote_prefix, 1), + [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [1077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(351), + [1080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), + [1082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [1084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [1086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [1090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [1094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 2), + [1096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 2), SHIFT_REPEAT(647), + [1099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 2), SHIFT_REPEAT(623), + [1102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(359), + [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [1109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(362), + [1112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [1114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [1116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [1118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [1120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [1122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [1124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [1126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code, 1), + [1128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [1130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [1132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [1134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [1136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [1138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [1140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [1142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 2), + [1144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 2), SHIFT_REPEAT(31), + [1147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 2), SHIFT_REPEAT(642), + [1150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2), + [1152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2), SHIFT_REPEAT(33), + [1155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2), SHIFT_REPEAT(677), + [1158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2), + [1160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2), SHIFT_REPEAT(32), + [1163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2), SHIFT_REPEAT(605), + [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), + [1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [1176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_line, 2), + [1178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_line, 2), + [1180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [1184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [1188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [1192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [1194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 1), + [1196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_caption_repeat1, 1), + [1198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(388), + [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [1211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_repeat1, 2), SHIFT_REPEAT(1022), + [1214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_code_repeat1, 2), + [1216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_repeat1, 2), SHIFT_REPEAT(590), + [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [1239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_no_newline, 3, .production_id = 6), + [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [1249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, .production_id = 3), + [1251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_no_newline, 2), + [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [1277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 3), + [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [1309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_name, 1), + [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [1317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1), + [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [1323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value, 3), + [1325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 2), SHIFT_REPEAT(52), + [1328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 2), + [1330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 2), SHIFT_REPEAT(627), + [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [1337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 1), + [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [1341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 2), + [1343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 2), SHIFT_REPEAT(59), + [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_quote_content, 1), + [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_quote_content, 2), + [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [1358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_frontmatter_content_repeat1, 2), SHIFT_REPEAT(955), + [1361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_frontmatter_content_repeat1, 2), + [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), + [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [1445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frontmatter_content, 1), + [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [1515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_definition_repeat1, 2), + [1517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_definition_repeat1, 2), SHIFT_REPEAT(332), + [1520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [1522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_period_repeat1, 2), + [1524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_decimal_period_repeat1, 2), SHIFT_REPEAT(38), + [1527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_paren_repeat1, 2), + [1529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_decimal_paren_repeat1, 2), SHIFT_REPEAT(43), + [1532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_parens_repeat1, 2), + [1534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_decimal_parens_repeat1, 2), SHIFT_REPEAT(39), + [1537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_period_repeat1, 2), + [1539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_period_repeat1, 2), SHIFT_REPEAT(45), + [1542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [1544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [1546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_paren_repeat1, 2), + [1548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_paren_repeat1, 2), SHIFT_REPEAT(29), + [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [1555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_parens_repeat1, 2), + [1557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_parens_repeat1, 2), SHIFT_REPEAT(36), + [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [1562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [1566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_period_repeat1, 2), + [1568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_period_repeat1, 2), SHIFT_REPEAT(50), + [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [1577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_paren_repeat1, 2), + [1579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_paren_repeat1, 2), SHIFT_REPEAT(42), + [1582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [1584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [1586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [1590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_parens_repeat1, 2), + [1592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_parens_repeat1, 2), SHIFT_REPEAT(35), + [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [1603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_period_repeat1, 2), + [1605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_period_repeat1, 2), SHIFT_REPEAT(51), + [1608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [1614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_paren_repeat1, 2), + [1616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_paren_repeat1, 2), SHIFT_REPEAT(41), + [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [1623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_parens_repeat1, 2), + [1625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_parens_repeat1, 2), SHIFT_REPEAT(34), + [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [1630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_parens_repeat1, 2), + [1632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_parens_repeat1, 2), SHIFT_REPEAT(48), + [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [1637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_paren_repeat1, 2), + [1639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_paren_repeat1, 2), SHIFT_REPEAT(40), + [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [1646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__comment_no_newline_repeat1, 2), SHIFT_REPEAT(615), + [1649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_no_newline_repeat1, 2), + [1651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_period_repeat1, 2), + [1653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_period_repeat1, 2), SHIFT_REPEAT(49), + [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [1660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_item_content, 3), + [1662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heading_content, 2), + [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [1666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line, 2), + [1668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_item_content, 2), + [1670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [1672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(606), + [1675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_task, 2), + [1677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_no_newline_repeat1, 1), + [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [1685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(624), + [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heading_content, 1), + [1690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [1692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(628), + [1695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dash, 2), + [1697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dash, 3), + [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [1701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 2), + [1703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 2), + [1705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 3), + [1707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(640), + [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [1716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_task, 3), + [1718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__paragraph_content_repeat1, 2), + [1720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__paragraph_content_repeat1, 2), SHIFT_REPEAT(347), + [1723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(645), + [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [1736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__heading_content_repeat1, 2), + [1738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__heading_content_repeat1, 2), SHIFT_REPEAT(328), + [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [1745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(671), + [1748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 3), + [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [1760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(680), + [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [1767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 3), + [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [1807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div_marker_begin, 1), + [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [1815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_alpha_paren, 2), + [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [1825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_content, 2), + [1827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_alpha_parens, 2), + [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [1843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_content, 3), + [1845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_decimal_period, 2), + [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [1865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_alpha_period, 2), + [1867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_alpha_period, 2), + [1869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_roman_period, 2), + [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_roman_period, 2), + [1873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_decimal_paren, 2), + [1875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_alpha_paren, 2), + [1877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_roman_paren, 2), + [1879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_decimal_parens, 2), + [1881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_definition, 4), + [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [1901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_separator_repeat1, 2), SHIFT_REPEAT(890), + [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [1908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_row_repeat1, 2), SHIFT_REPEAT(330), + [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_roman_paren, 2), + [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_definition, 5, .production_id = 10), + [1925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_alpha_parens, 2), + [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [1937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_roman_parens, 2), + [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [1941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_roman_parens, 2), + [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_label, 1), + [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [2005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_label, 1), + [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_cell, 1), + [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [2035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_row_repeat1, 2), + [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [2045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_separator_repeat1, 2), + [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [2055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key, 1), + [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [2067] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [2079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unchecked, 3), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [2083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_checked, 3), + [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [2089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block_info, 2, .production_id = 5), + [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [2243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div_marker_begin, 3), + [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), }; enum ts_external_scanner_symbol_identifiers { @@ -99175,57 +27350,47 @@ enum ts_external_scanner_symbol_identifiers { ts_external_token__newline = 3, ts_external_token__newline_inline = 4, ts_external_token_frontmatter_marker = 5, - ts_external_token__heading1_begin = 6, - ts_external_token__heading1_continuation = 7, - ts_external_token__heading2_begin = 8, - ts_external_token__heading2_continuation = 9, - ts_external_token__heading3_begin = 10, - ts_external_token__heading3_continuation = 11, - ts_external_token__heading4_begin = 12, - ts_external_token__heading4_continuation = 13, - ts_external_token__heading5_begin = 14, - ts_external_token__heading5_continuation = 15, - ts_external_token__heading6_begin = 16, - ts_external_token__heading6_continuation = 17, - ts_external_token__div_begin = 18, - ts_external_token__div_end = 19, - ts_external_token__code_block_begin = 20, - ts_external_token__code_block_end = 21, - ts_external_token_list_marker_dash = 22, - ts_external_token_list_marker_star = 23, - ts_external_token_list_marker_plus = 24, - ts_external_token__list_marker_task_begin = 25, - ts_external_token_list_marker_definition = 26, - ts_external_token_list_marker_decimal_period = 27, - ts_external_token_list_marker_lower_alpha_period = 28, - ts_external_token_list_marker_upper_alpha_period = 29, - ts_external_token_list_marker_lower_roman_period = 30, - ts_external_token_list_marker_upper_roman_period = 31, - ts_external_token_list_marker_decimal_paren = 32, - ts_external_token_list_marker_lower_alpha_paren = 33, - ts_external_token_list_marker_upper_alpha_paren = 34, - ts_external_token_list_marker_lower_roman_paren = 35, - ts_external_token_list_marker_upper_roman_paren = 36, - ts_external_token_list_marker_decimal_parens = 37, - ts_external_token_list_marker_lower_alpha_parens = 38, - ts_external_token_list_marker_upper_alpha_parens = 39, - ts_external_token_list_marker_lower_roman_parens = 40, - ts_external_token_list_marker_upper_roman_parens = 41, - ts_external_token__list_item_continuation = 42, - ts_external_token__list_item_end = 43, - ts_external_token__close_paragraph = 44, - ts_external_token__block_quote_begin = 45, - ts_external_token__block_quote_continuation = 46, - ts_external_token__thematic_break_dash = 47, - ts_external_token__thematic_break_star = 48, - ts_external_token__footnote_begin = 49, - ts_external_token__footnote_end = 50, - ts_external_token__table_caption_begin = 51, - ts_external_token__table_caption_end = 52, - ts_external_token__verbatim_begin = 53, - ts_external_token__verbatim_end = 54, - ts_external_token__verbatim_content = 55, - ts_external_token__error = 56, + ts_external_token__heading_begin = 6, + ts_external_token__heading_continuation = 7, + ts_external_token__div_begin = 8, + ts_external_token__div_end = 9, + ts_external_token__code_block_begin = 10, + ts_external_token__code_block_end = 11, + ts_external_token_list_marker_dash = 12, + ts_external_token_list_marker_star = 13, + ts_external_token_list_marker_plus = 14, + ts_external_token__list_marker_task_begin = 15, + ts_external_token_list_marker_definition = 16, + ts_external_token_list_marker_decimal_period = 17, + ts_external_token_list_marker_lower_alpha_period = 18, + ts_external_token_list_marker_upper_alpha_period = 19, + ts_external_token_list_marker_lower_roman_period = 20, + ts_external_token_list_marker_upper_roman_period = 21, + ts_external_token_list_marker_decimal_paren = 22, + ts_external_token_list_marker_lower_alpha_paren = 23, + ts_external_token_list_marker_upper_alpha_paren = 24, + ts_external_token_list_marker_lower_roman_paren = 25, + ts_external_token_list_marker_upper_roman_paren = 26, + ts_external_token_list_marker_decimal_parens = 27, + ts_external_token_list_marker_lower_alpha_parens = 28, + ts_external_token_list_marker_upper_alpha_parens = 29, + ts_external_token_list_marker_lower_roman_parens = 30, + ts_external_token_list_marker_upper_roman_parens = 31, + ts_external_token__list_item_continuation = 32, + ts_external_token__list_item_end = 33, + ts_external_token__close_paragraph = 34, + ts_external_token__block_quote_begin = 35, + ts_external_token__block_quote_continuation = 36, + ts_external_token__thematic_break_dash = 37, + ts_external_token__thematic_break_star = 38, + ts_external_token__footnote_begin = 39, + ts_external_token__footnote_end = 40, + ts_external_token__table_caption_begin = 41, + ts_external_token__table_caption_end = 42, + ts_external_token__verbatim_begin = 43, + ts_external_token__verbatim_end = 44, + ts_external_token__verbatim_content = 45, + ts_external_token__error = 46, }; static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { @@ -99235,18 +27400,8 @@ static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { [ts_external_token__newline] = sym__newline, [ts_external_token__newline_inline] = sym__newline_inline, [ts_external_token_frontmatter_marker] = sym_frontmatter_marker, - [ts_external_token__heading1_begin] = sym__heading1_begin, - [ts_external_token__heading1_continuation] = sym__heading1_continuation, - [ts_external_token__heading2_begin] = sym__heading2_begin, - [ts_external_token__heading2_continuation] = sym__heading2_continuation, - [ts_external_token__heading3_begin] = sym__heading3_begin, - [ts_external_token__heading3_continuation] = sym__heading3_continuation, - [ts_external_token__heading4_begin] = sym__heading4_begin, - [ts_external_token__heading4_continuation] = sym__heading4_continuation, - [ts_external_token__heading5_begin] = sym__heading5_begin, - [ts_external_token__heading5_continuation] = sym__heading5_continuation, - [ts_external_token__heading6_begin] = sym__heading6_begin, - [ts_external_token__heading6_continuation] = sym__heading6_continuation, + [ts_external_token__heading_begin] = sym__heading_begin, + [ts_external_token__heading_continuation] = sym__heading_continuation, [ts_external_token__div_begin] = sym__div_begin, [ts_external_token__div_end] = sym__div_end, [ts_external_token__code_block_begin] = sym__code_block_begin, @@ -99288,7 +27443,7 @@ static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { [ts_external_token__error] = sym__error, }; -static const bool ts_external_scanner_states[90][EXTERNAL_TOKEN_COUNT] = { +static const bool ts_external_scanner_states[76][EXTERNAL_TOKEN_COUNT] = { [1] = { [ts_external_token__ignored] = true, [ts_external_token__block_close] = true, @@ -99296,18 +27451,8 @@ static const bool ts_external_scanner_states[90][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__newline] = true, [ts_external_token__newline_inline] = true, [ts_external_token_frontmatter_marker] = true, - [ts_external_token__heading1_begin] = true, - [ts_external_token__heading1_continuation] = true, - [ts_external_token__heading2_begin] = true, - [ts_external_token__heading2_continuation] = true, - [ts_external_token__heading3_begin] = true, - [ts_external_token__heading3_continuation] = true, - [ts_external_token__heading4_begin] = true, - [ts_external_token__heading4_continuation] = true, - [ts_external_token__heading5_begin] = true, - [ts_external_token__heading5_continuation] = true, - [ts_external_token__heading6_begin] = true, - [ts_external_token__heading6_continuation] = true, + [ts_external_token__heading_begin] = true, + [ts_external_token__heading_continuation] = true, [ts_external_token__div_begin] = true, [ts_external_token__div_end] = true, [ts_external_token__code_block_begin] = true, @@ -99350,14 +27495,8 @@ static const bool ts_external_scanner_states[90][EXTERNAL_TOKEN_COUNT] = { }, [2] = { [ts_external_token__newline] = true, - [ts_external_token__newline_inline] = true, [ts_external_token_frontmatter_marker] = true, - [ts_external_token__heading1_begin] = true, - [ts_external_token__heading2_begin] = true, - [ts_external_token__heading3_begin] = true, - [ts_external_token__heading4_begin] = true, - [ts_external_token__heading5_begin] = true, - [ts_external_token__heading6_begin] = true, + [ts_external_token__heading_begin] = true, [ts_external_token__div_begin] = true, [ts_external_token__code_block_begin] = true, [ts_external_token_list_marker_dash] = true, @@ -99385,18 +27524,10 @@ static const bool ts_external_scanner_states[90][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__thematic_break_dash] = true, [ts_external_token__thematic_break_star] = true, [ts_external_token__footnote_begin] = true, - [ts_external_token__verbatim_begin] = true, }, [3] = { - [ts_external_token__block_close] = true, [ts_external_token__newline] = true, - [ts_external_token__newline_inline] = true, - [ts_external_token__heading1_begin] = true, - [ts_external_token__heading2_begin] = true, - [ts_external_token__heading3_begin] = true, - [ts_external_token__heading4_begin] = true, - [ts_external_token__heading5_begin] = true, - [ts_external_token__heading6_begin] = true, + [ts_external_token__heading_begin] = true, [ts_external_token__div_begin] = true, [ts_external_token__code_block_begin] = true, [ts_external_token_list_marker_dash] = true, @@ -99424,17 +27555,11 @@ static const bool ts_external_scanner_states[90][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__thematic_break_dash] = true, [ts_external_token__thematic_break_star] = true, [ts_external_token__footnote_begin] = true, - [ts_external_token__verbatim_begin] = true, }, [4] = { + [ts_external_token__block_close] = true, [ts_external_token__newline] = true, - [ts_external_token__newline_inline] = true, - [ts_external_token__heading1_begin] = true, - [ts_external_token__heading2_begin] = true, - [ts_external_token__heading3_begin] = true, - [ts_external_token__heading4_begin] = true, - [ts_external_token__heading5_begin] = true, - [ts_external_token__heading6_begin] = true, + [ts_external_token__heading_begin] = true, [ts_external_token__div_begin] = true, [ts_external_token__code_block_begin] = true, [ts_external_token_list_marker_dash] = true, @@ -99462,17 +27587,10 @@ static const bool ts_external_scanner_states[90][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__thematic_break_dash] = true, [ts_external_token__thematic_break_star] = true, [ts_external_token__footnote_begin] = true, - [ts_external_token__verbatim_begin] = true, }, [5] = { [ts_external_token__newline] = true, - [ts_external_token__newline_inline] = true, - [ts_external_token__heading1_begin] = true, - [ts_external_token__heading2_begin] = true, - [ts_external_token__heading3_begin] = true, - [ts_external_token__heading4_begin] = true, - [ts_external_token__heading5_begin] = true, - [ts_external_token__heading6_begin] = true, + [ts_external_token__heading_begin] = true, [ts_external_token__div_begin] = true, [ts_external_token__code_block_begin] = true, [ts_external_token_list_marker_dash] = true, @@ -99501,16 +27619,9 @@ static const bool ts_external_scanner_states[90][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__thematic_break_star] = true, [ts_external_token__footnote_begin] = true, [ts_external_token__footnote_end] = true, - [ts_external_token__verbatim_begin] = true, }, [6] = { - [ts_external_token__newline_inline] = true, - [ts_external_token__heading1_begin] = true, - [ts_external_token__heading2_begin] = true, - [ts_external_token__heading3_begin] = true, - [ts_external_token__heading4_begin] = true, - [ts_external_token__heading5_begin] = true, - [ts_external_token__heading6_begin] = true, + [ts_external_token__heading_begin] = true, [ts_external_token__div_begin] = true, [ts_external_token__code_block_begin] = true, [ts_external_token_list_marker_dash] = true, @@ -99538,11 +27649,9 @@ static const bool ts_external_scanner_states[90][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__thematic_break_dash] = true, [ts_external_token__thematic_break_star] = true, [ts_external_token__footnote_begin] = true, - [ts_external_token__verbatim_begin] = true, }, [7] = { [ts_external_token__block_close] = true, - [ts_external_token__newline_inline] = true, [ts_external_token__div_begin] = true, [ts_external_token__code_block_begin] = true, [ts_external_token_list_marker_dash] = true, @@ -99570,18 +27679,10 @@ static const bool ts_external_scanner_states[90][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__thematic_break_dash] = true, [ts_external_token__thematic_break_star] = true, [ts_external_token__footnote_begin] = true, - [ts_external_token__verbatim_begin] = true, }, [8] = { - [ts_external_token__block_close] = true, [ts_external_token__newline] = true, - [ts_external_token__newline_inline] = true, - [ts_external_token__heading1_begin] = true, - [ts_external_token__heading2_begin] = true, - [ts_external_token__heading3_begin] = true, - [ts_external_token__heading4_begin] = true, - [ts_external_token__heading5_begin] = true, - [ts_external_token__heading6_begin] = true, + [ts_external_token__heading_begin] = true, [ts_external_token__div_begin] = true, [ts_external_token__code_block_begin] = true, [ts_external_token_list_marker_dash] = true, @@ -99609,28 +27710,12 @@ static const bool ts_external_scanner_states[90][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__thematic_break_dash] = true, [ts_external_token__thematic_break_star] = true, [ts_external_token__footnote_begin] = true, + [ts_external_token__footnote_end] = true, [ts_external_token__table_caption_begin] = true, - [ts_external_token__verbatim_begin] = true, }, [9] = { - [ts_external_token__newline_inline] = true, - [ts_external_token__table_caption_end] = true, - [ts_external_token__verbatim_begin] = true, - }, - [10] = { - [ts_external_token__newline] = true, - [ts_external_token__newline_inline] = true, - [ts_external_token__verbatim_begin] = true, - }, - [11] = { [ts_external_token__newline] = true, - [ts_external_token__newline_inline] = true, - [ts_external_token__heading1_begin] = true, - [ts_external_token__heading2_begin] = true, - [ts_external_token__heading3_begin] = true, - [ts_external_token__heading4_begin] = true, - [ts_external_token__heading5_begin] = true, - [ts_external_token__heading6_begin] = true, + [ts_external_token__heading_begin] = true, [ts_external_token__div_begin] = true, [ts_external_token__code_block_begin] = true, [ts_external_token_list_marker_dash] = true, @@ -99658,19 +27743,12 @@ static const bool ts_external_scanner_states[90][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__thematic_break_dash] = true, [ts_external_token__thematic_break_star] = true, [ts_external_token__footnote_begin] = true, - [ts_external_token__footnote_end] = true, [ts_external_token__table_caption_begin] = true, - [ts_external_token__verbatim_begin] = true, }, - [12] = { + [10] = { + [ts_external_token__block_close] = true, [ts_external_token__newline] = true, - [ts_external_token__newline_inline] = true, - [ts_external_token__heading1_begin] = true, - [ts_external_token__heading2_begin] = true, - [ts_external_token__heading3_begin] = true, - [ts_external_token__heading4_begin] = true, - [ts_external_token__heading5_begin] = true, - [ts_external_token__heading6_begin] = true, + [ts_external_token__heading_begin] = true, [ts_external_token__div_begin] = true, [ts_external_token__code_block_begin] = true, [ts_external_token_list_marker_dash] = true, @@ -99699,33 +27777,11 @@ static const bool ts_external_scanner_states[90][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__thematic_break_star] = true, [ts_external_token__footnote_begin] = true, [ts_external_token__table_caption_begin] = true, - [ts_external_token__verbatim_begin] = true, - }, - [13] = { - [ts_external_token__newline_inline] = true, - [ts_external_token__verbatim_begin] = true, - }, - [14] = { - [ts_external_token__eof_or_newline] = true, - [ts_external_token__newline_inline] = true, - [ts_external_token__verbatim_begin] = true, - }, - [15] = { - [ts_external_token__newline] = true, - [ts_external_token__verbatim_begin] = true, }, - [16] = { - [ts_external_token__verbatim_begin] = true, - }, - [17] = { + [11] = { + [ts_external_token__block_close] = true, [ts_external_token__newline] = true, - [ts_external_token__newline_inline] = true, - [ts_external_token__heading1_begin] = true, - [ts_external_token__heading2_begin] = true, - [ts_external_token__heading3_begin] = true, - [ts_external_token__heading4_begin] = true, - [ts_external_token__heading5_begin] = true, - [ts_external_token__heading6_begin] = true, + [ts_external_token__heading_begin] = true, [ts_external_token__div_begin] = true, [ts_external_token__code_block_begin] = true, [ts_external_token__code_block_end] = true, @@ -99754,20 +27810,44 @@ static const bool ts_external_scanner_states[90][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__thematic_break_dash] = true, [ts_external_token__thematic_break_star] = true, [ts_external_token__footnote_begin] = true, - [ts_external_token__footnote_end] = true, - [ts_external_token__verbatim_begin] = true, }, - [18] = { - [ts_external_token__block_close] = true, + [12] = { + [ts_external_token__block_close] = true, + [ts_external_token__newline] = true, + [ts_external_token__heading_begin] = true, + [ts_external_token__div_begin] = true, + [ts_external_token__div_end] = true, + [ts_external_token__code_block_begin] = true, + [ts_external_token_list_marker_dash] = true, + [ts_external_token_list_marker_star] = true, + [ts_external_token_list_marker_plus] = true, + [ts_external_token__list_marker_task_begin] = true, + [ts_external_token_list_marker_definition] = true, + [ts_external_token_list_marker_decimal_period] = true, + [ts_external_token_list_marker_lower_alpha_period] = true, + [ts_external_token_list_marker_upper_alpha_period] = true, + [ts_external_token_list_marker_lower_roman_period] = true, + [ts_external_token_list_marker_upper_roman_period] = true, + [ts_external_token_list_marker_decimal_paren] = true, + [ts_external_token_list_marker_lower_alpha_paren] = true, + [ts_external_token_list_marker_upper_alpha_paren] = true, + [ts_external_token_list_marker_lower_roman_paren] = true, + [ts_external_token_list_marker_upper_roman_paren] = true, + [ts_external_token_list_marker_decimal_parens] = true, + [ts_external_token_list_marker_lower_alpha_parens] = true, + [ts_external_token_list_marker_upper_alpha_parens] = true, + [ts_external_token_list_marker_lower_roman_parens] = true, + [ts_external_token_list_marker_upper_roman_parens] = true, + [ts_external_token__block_quote_begin] = true, + [ts_external_token__block_quote_continuation] = true, + [ts_external_token__thematic_break_dash] = true, + [ts_external_token__thematic_break_star] = true, + [ts_external_token__footnote_begin] = true, + }, + [13] = { [ts_external_token__eof_or_newline] = true, [ts_external_token__newline] = true, - [ts_external_token__newline_inline] = true, - [ts_external_token__heading1_begin] = true, - [ts_external_token__heading2_begin] = true, - [ts_external_token__heading3_begin] = true, - [ts_external_token__heading4_begin] = true, - [ts_external_token__heading5_begin] = true, - [ts_external_token__heading6_begin] = true, + [ts_external_token__heading_begin] = true, [ts_external_token__div_begin] = true, [ts_external_token__code_block_begin] = true, [ts_external_token_list_marker_dash] = true, @@ -99795,21 +27875,15 @@ static const bool ts_external_scanner_states[90][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__thematic_break_dash] = true, [ts_external_token__thematic_break_star] = true, [ts_external_token__footnote_begin] = true, - [ts_external_token__verbatim_begin] = true, + [ts_external_token__footnote_end] = true, }, - [19] = { + [14] = { [ts_external_token__block_close] = true, + [ts_external_token__eof_or_newline] = true, [ts_external_token__newline] = true, - [ts_external_token__newline_inline] = true, - [ts_external_token__heading1_begin] = true, - [ts_external_token__heading2_begin] = true, - [ts_external_token__heading3_begin] = true, - [ts_external_token__heading4_begin] = true, - [ts_external_token__heading5_begin] = true, - [ts_external_token__heading6_begin] = true, + [ts_external_token__heading_begin] = true, [ts_external_token__div_begin] = true, [ts_external_token__code_block_begin] = true, - [ts_external_token__code_block_end] = true, [ts_external_token_list_marker_dash] = true, [ts_external_token_list_marker_star] = true, [ts_external_token_list_marker_plus] = true, @@ -99835,20 +27909,12 @@ static const bool ts_external_scanner_states[90][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__thematic_break_dash] = true, [ts_external_token__thematic_break_star] = true, [ts_external_token__footnote_begin] = true, - [ts_external_token__verbatim_begin] = true, }, - [20] = { - [ts_external_token__block_close] = true, + [15] = { + [ts_external_token__eof_or_newline] = true, [ts_external_token__newline] = true, - [ts_external_token__newline_inline] = true, - [ts_external_token__heading1_begin] = true, - [ts_external_token__heading2_begin] = true, - [ts_external_token__heading3_begin] = true, - [ts_external_token__heading4_begin] = true, - [ts_external_token__heading5_begin] = true, - [ts_external_token__heading6_begin] = true, + [ts_external_token__heading_begin] = true, [ts_external_token__div_begin] = true, - [ts_external_token__div_end] = true, [ts_external_token__code_block_begin] = true, [ts_external_token_list_marker_dash] = true, [ts_external_token_list_marker_star] = true, @@ -99875,20 +27941,13 @@ static const bool ts_external_scanner_states[90][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__thematic_break_dash] = true, [ts_external_token__thematic_break_star] = true, [ts_external_token__footnote_begin] = true, - [ts_external_token__verbatim_begin] = true, }, - [21] = { + [16] = { [ts_external_token__newline] = true, - [ts_external_token__newline_inline] = true, - [ts_external_token__heading1_begin] = true, - [ts_external_token__heading2_begin] = true, - [ts_external_token__heading3_begin] = true, - [ts_external_token__heading4_begin] = true, - [ts_external_token__heading5_begin] = true, - [ts_external_token__heading6_begin] = true, + [ts_external_token__heading_begin] = true, [ts_external_token__div_begin] = true, - [ts_external_token__div_end] = true, [ts_external_token__code_block_begin] = true, + [ts_external_token__code_block_end] = true, [ts_external_token_list_marker_dash] = true, [ts_external_token_list_marker_star] = true, [ts_external_token_list_marker_plus] = true, @@ -99914,18 +27973,10 @@ static const bool ts_external_scanner_states[90][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__thematic_break_dash] = true, [ts_external_token__thematic_break_star] = true, [ts_external_token__footnote_begin] = true, - [ts_external_token__footnote_end] = true, - [ts_external_token__verbatim_begin] = true, }, - [22] = { + [17] = { [ts_external_token__newline] = true, - [ts_external_token__newline_inline] = true, - [ts_external_token__heading1_begin] = true, - [ts_external_token__heading2_begin] = true, - [ts_external_token__heading3_begin] = true, - [ts_external_token__heading4_begin] = true, - [ts_external_token__heading5_begin] = true, - [ts_external_token__heading6_begin] = true, + [ts_external_token__heading_begin] = true, [ts_external_token__div_begin] = true, [ts_external_token__div_end] = true, [ts_external_token__code_block_begin] = true, @@ -99954,19 +28005,12 @@ static const bool ts_external_scanner_states[90][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__thematic_break_dash] = true, [ts_external_token__thematic_break_star] = true, [ts_external_token__footnote_begin] = true, - [ts_external_token__verbatim_begin] = true, }, - [23] = { - [ts_external_token__eof_or_newline] = true, + [18] = { [ts_external_token__newline] = true, - [ts_external_token__newline_inline] = true, - [ts_external_token__heading1_begin] = true, - [ts_external_token__heading2_begin] = true, - [ts_external_token__heading3_begin] = true, - [ts_external_token__heading4_begin] = true, - [ts_external_token__heading5_begin] = true, - [ts_external_token__heading6_begin] = true, + [ts_external_token__heading_begin] = true, [ts_external_token__div_begin] = true, + [ts_external_token__div_end] = true, [ts_external_token__code_block_begin] = true, [ts_external_token_list_marker_dash] = true, [ts_external_token_list_marker_star] = true, @@ -99994,17 +28038,10 @@ static const bool ts_external_scanner_states[90][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__thematic_break_star] = true, [ts_external_token__footnote_begin] = true, [ts_external_token__footnote_end] = true, - [ts_external_token__verbatim_begin] = true, }, - [24] = { + [19] = { [ts_external_token__newline] = true, - [ts_external_token__newline_inline] = true, - [ts_external_token__heading1_begin] = true, - [ts_external_token__heading2_begin] = true, - [ts_external_token__heading3_begin] = true, - [ts_external_token__heading4_begin] = true, - [ts_external_token__heading5_begin] = true, - [ts_external_token__heading6_begin] = true, + [ts_external_token__heading_begin] = true, [ts_external_token__div_begin] = true, [ts_external_token__code_block_begin] = true, [ts_external_token__code_block_end] = true, @@ -100033,297 +28070,254 @@ static const bool ts_external_scanner_states[90][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__thematic_break_dash] = true, [ts_external_token__thematic_break_star] = true, [ts_external_token__footnote_begin] = true, - [ts_external_token__verbatim_begin] = true, - }, - [25] = { - [ts_external_token__newline] = true, - [ts_external_token__newline_inline] = true, - [ts_external_token__block_quote_continuation] = true, - [ts_external_token__verbatim_begin] = true, - }, - [26] = { - [ts_external_token__newline_inline] = true, - [ts_external_token__block_quote_continuation] = true, - [ts_external_token__verbatim_begin] = true, + [ts_external_token__footnote_end] = true, }, - [27] = { + [20] = { [ts_external_token__eof_or_newline] = true, [ts_external_token__newline_inline] = true, - [ts_external_token__block_quote_continuation] = true, - [ts_external_token__verbatim_begin] = true, - }, - [28] = { - [ts_external_token__block_quote_continuation] = true, - [ts_external_token__verbatim_begin] = true, }, - [29] = { + [21] = { [ts_external_token__newline] = true, [ts_external_token__list_item_continuation] = true, [ts_external_token__list_item_end] = true, [ts_external_token__block_quote_continuation] = true, [ts_external_token__table_caption_begin] = true, }, - [30] = { - [ts_external_token__newline] = true, + [22] = { + [ts_external_token__table_caption_end] = true, }, - [31] = { + [23] = { [ts_external_token__block_close] = true, [ts_external_token__newline] = true, [ts_external_token__block_quote_continuation] = true, [ts_external_token__table_caption_begin] = true, }, - [32] = { - [ts_external_token__block_close] = true, - [ts_external_token__block_quote_continuation] = true, + [24] = { + [ts_external_token__newline] = true, }, - [33] = { + [25] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_dash] = true, - [ts_external_token_list_marker_star] = true, - [ts_external_token_list_marker_plus] = true, [ts_external_token__list_marker_task_begin] = true, [ts_external_token__block_quote_continuation] = true, }, - [34] = { + [26] = { + [ts_external_token__eof_or_newline] = true, + }, + [27] = { [ts_external_token__block_close] = true, - [ts_external_token__list_marker_task_begin] = true, [ts_external_token__block_quote_continuation] = true, }, - [35] = { + [28] = { [ts_external_token__block_close] = true, [ts_external_token_list_marker_dash] = true, [ts_external_token_list_marker_star] = true, [ts_external_token_list_marker_plus] = true, [ts_external_token__list_marker_task_begin] = true, + [ts_external_token__block_quote_continuation] = true, }, - [36] = { + [29] = { [ts_external_token_list_marker_dash] = true, [ts_external_token_list_marker_star] = true, [ts_external_token_list_marker_plus] = true, [ts_external_token__list_marker_task_begin] = true, [ts_external_token__block_quote_continuation] = true, }, - [37] = { + [30] = { [ts_external_token__block_close] = true, + [ts_external_token_list_marker_dash] = true, [ts_external_token_list_marker_star] = true, + [ts_external_token_list_marker_plus] = true, + [ts_external_token__list_marker_task_begin] = true, + }, + [31] = { + [ts_external_token__block_close] = true, + [ts_external_token_list_marker_dash] = true, [ts_external_token__block_quote_continuation] = true, }, - [38] = { + [32] = { [ts_external_token__block_close] = true, [ts_external_token_list_marker_plus] = true, [ts_external_token__block_quote_continuation] = true, }, - [39] = { + [33] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_dash] = true, + [ts_external_token_list_marker_star] = true, [ts_external_token__block_quote_continuation] = true, }, - [40] = { + [34] = { [ts_external_token__list_item_continuation] = true, [ts_external_token__list_item_end] = true, [ts_external_token__block_quote_continuation] = true, }, - [41] = { + [35] = { [ts_external_token_list_marker_dash] = true, [ts_external_token_list_marker_star] = true, [ts_external_token_list_marker_plus] = true, [ts_external_token__list_marker_task_begin] = true, }, - [42] = { + [36] = { [ts_external_token__list_item_continuation] = true, [ts_external_token__list_item_end] = true, [ts_external_token__block_quote_continuation] = true, [ts_external_token__table_caption_begin] = true, }, - [43] = { + [37] = { [ts_external_token__block_close] = true, [ts_external_token_list_marker_upper_roman_paren] = true, }, + [38] = { + [ts_external_token__block_close] = true, + [ts_external_token_list_marker_lower_roman_period] = true, + }, + [39] = { + [ts_external_token__block_close] = true, + [ts_external_token_list_marker_upper_roman_period] = true, + }, + [40] = { + [ts_external_token_frontmatter_marker] = true, + }, + [41] = { + [ts_external_token__block_close] = true, + [ts_external_token_list_marker_upper_roman_parens] = true, + }, + [42] = { + [ts_external_token__block_close] = true, + [ts_external_token_list_marker_lower_roman_parens] = true, + }, + [43] = { + [ts_external_token__block_close] = true, + [ts_external_token_list_marker_lower_roman_paren] = true, + }, [44] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_lower_alpha_paren] = true, + [ts_external_token_list_marker_decimal_period] = true, }, [45] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_lower_alpha_parens] = true, + [ts_external_token_list_marker_upper_alpha_parens] = true, }, [46] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_upper_alpha_period] = true, + [ts_external_token_list_marker_upper_alpha_paren] = true, }, [47] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_upper_alpha_paren] = true, + [ts_external_token_list_marker_upper_alpha_period] = true, }, [48] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_upper_alpha_parens] = true, + [ts_external_token_list_marker_lower_alpha_parens] = true, }, [49] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_lower_roman_period] = true, + [ts_external_token_list_marker_lower_alpha_paren] = true, }, [50] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_lower_roman_paren] = true, + [ts_external_token_list_marker_lower_alpha_period] = true, }, [51] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_lower_roman_parens] = true, + [ts_external_token_list_marker_decimal_parens] = true, }, [52] = { - [ts_external_token__eof_or_newline] = true, - [ts_external_token__list_item_continuation] = true, - [ts_external_token__list_item_end] = true, - [ts_external_token__block_quote_continuation] = true, + [ts_external_token__block_close] = true, + [ts_external_token_list_marker_decimal_paren] = true, }, [53] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_upper_roman_period] = true, + [ts_external_token_list_marker_definition] = true, }, [54] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_upper_roman_parens] = true, + [ts_external_token__block_quote_continuation] = true, + [ts_external_token__table_caption_begin] = true, }, [55] = { - [ts_external_token__div_end] = true, + [ts_external_token__eof_or_newline] = true, [ts_external_token__list_item_continuation] = true, [ts_external_token__list_item_end] = true, [ts_external_token__block_quote_continuation] = true, }, [56] = { - [ts_external_token__block_close] = true, - [ts_external_token_list_marker_lower_alpha_period] = true, + [ts_external_token__code_block_end] = true, + [ts_external_token__list_item_continuation] = true, + [ts_external_token__list_item_end] = true, + [ts_external_token__block_quote_continuation] = true, }, [57] = { - [ts_external_token__block_close] = true, - [ts_external_token_list_marker_decimal_parens] = true, + [ts_external_token__div_end] = true, + [ts_external_token__list_item_continuation] = true, + [ts_external_token__list_item_end] = true, + [ts_external_token__block_quote_continuation] = true, }, [58] = { - [ts_external_token__block_close] = true, - [ts_external_token_list_marker_decimal_paren] = true, + [ts_external_token__block_quote_continuation] = true, }, [59] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_decimal_period] = true, + [ts_external_token__div_end] = true, + [ts_external_token__block_quote_continuation] = true, }, [60] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_definition] = true, + [ts_external_token__heading_continuation] = true, }, [61] = { - [ts_external_token__code_block_end] = true, - [ts_external_token__list_item_continuation] = true, - [ts_external_token__list_item_end] = true, + [ts_external_token_list_marker_star] = true, [ts_external_token__block_quote_continuation] = true, }, [62] = { - [ts_external_token_frontmatter_marker] = true, + [ts_external_token__list_marker_task_begin] = true, + [ts_external_token__block_quote_continuation] = true, }, [63] = { - [ts_external_token__block_close] = true, + [ts_external_token__list_item_continuation] = true, [ts_external_token__block_quote_continuation] = true, - [ts_external_token__table_caption_begin] = true, }, [64] = { - [ts_external_token__newline] = true, - [ts_external_token__list_item_continuation] = true, - [ts_external_token__list_item_end] = true, + [ts_external_token_list_marker_dash] = true, [ts_external_token__block_quote_continuation] = true, }, [65] = { - [ts_external_token__block_close] = true, - [ts_external_token__heading6_continuation] = true, + [ts_external_token_list_marker_plus] = true, + [ts_external_token__block_quote_continuation] = true, }, [66] = { [ts_external_token__block_close] = true, - [ts_external_token__eof_or_newline] = true, + [ts_external_token__code_block_end] = true, [ts_external_token__block_quote_continuation] = true, }, [67] = { + [ts_external_token__block_close] = true, + [ts_external_token__eof_or_newline] = true, [ts_external_token__block_quote_continuation] = true, }, [68] = { - [ts_external_token__list_item_continuation] = true, - [ts_external_token__block_quote_continuation] = true, + [ts_external_token__list_marker_task_begin] = true, }, [69] = { - [ts_external_token__block_close] = true, - [ts_external_token__heading5_continuation] = true, + [ts_external_token__eof_or_newline] = true, + [ts_external_token__close_paragraph] = true, }, [70] = { [ts_external_token__block_close] = true, - [ts_external_token__div_end] = true, - [ts_external_token__block_quote_continuation] = true, }, [71] = { - [ts_external_token_list_marker_star] = true, - [ts_external_token__block_quote_continuation] = true, + [ts_external_token__footnote_end] = true, }, [72] = { [ts_external_token_list_marker_dash] = true, - [ts_external_token__block_quote_continuation] = true, }, [73] = { - [ts_external_token__block_close] = true, - [ts_external_token__newline] = true, - [ts_external_token__block_quote_continuation] = true, + [ts_external_token__list_item_continuation] = true, }, [74] = { - [ts_external_token__block_close] = true, - [ts_external_token__code_block_end] = true, - [ts_external_token__block_quote_continuation] = true, + [ts_external_token_list_marker_star] = true, }, [75] = { - [ts_external_token__block_close] = true, - [ts_external_token__heading2_continuation] = true, - }, - [76] = { - [ts_external_token__list_marker_task_begin] = true, - [ts_external_token__block_quote_continuation] = true, - }, - [77] = { - [ts_external_token__block_close] = true, - [ts_external_token__heading1_continuation] = true, - }, - [78] = { - [ts_external_token_list_marker_plus] = true, - [ts_external_token__block_quote_continuation] = true, - }, - [79] = { - [ts_external_token__eof_or_newline] = true, - [ts_external_token__close_paragraph] = true, - }, - [80] = { - [ts_external_token__list_marker_task_begin] = true, - }, - [81] = { - [ts_external_token__block_close] = true, - }, - [82] = { - [ts_external_token__footnote_end] = true, - }, - [83] = { - [ts_external_token__verbatim_end] = true, - }, - [84] = { - [ts_external_token__verbatim_content] = true, - }, - [85] = { - [ts_external_token_list_marker_dash] = true, - }, - [86] = { [ts_external_token_list_marker_plus] = true, }, - [87] = { - [ts_external_token_list_marker_star] = true, - }, - [88] = { - [ts_external_token__list_item_continuation] = true, - }, - [89] = { - [ts_external_token__eof_or_newline] = true, - }, }; #ifdef __cplusplus diff --git a/tree-sitter-djot/src/scanner.c b/tree-sitter-djot/src/scanner.c index ef06142..1890a4c 100644 --- a/tree-sitter-djot/src/scanner.c +++ b/tree-sitter-djot/src/scanner.c @@ -21,18 +21,8 @@ typedef enum { FRONTMATTER_MARKER, - HEADING1_BEGIN, - HEADING1_CONTINUATION, - HEADING2_BEGIN, - HEADING2_CONTINUATION, - HEADING3_BEGIN, - HEADING3_CONTINUATION, - HEADING4_BEGIN, - HEADING4_CONTINUATION, - HEADING5_BEGIN, - HEADING5_CONTINUATION, - HEADING6_BEGIN, - HEADING6_CONTINUATION, + HEADING_BEGIN, + HEADING_CONTINUATION, DIV_BEGIN, DIV_END, CODE_BLOCK_BEGIN, @@ -1349,44 +1339,6 @@ static bool parse_colon(Scanner *s, TSLexer *lexer, const bool *valid_symbols) { } } -static TokenType heading_start_token(uint8_t level) { - switch (level) { - case 1: - return HEADING1_BEGIN; - case 2: - return HEADING2_BEGIN; - case 3: - return HEADING3_BEGIN; - case 4: - return HEADING4_BEGIN; - case 5: - return HEADING5_BEGIN; - case 6: - return HEADING6_BEGIN; - default: - return ERROR; - } -} - -static TokenType heading_continuation_token(uint8_t level) { - switch (level) { - case 1: - return HEADING1_CONTINUATION; - case 2: - return HEADING2_CONTINUATION; - case 3: - return HEADING3_CONTINUATION; - case 4: - return HEADING4_CONTINUATION; - case 5: - return HEADING5_CONTINUATION; - case 6: - return HEADING6_CONTINUATION; - default: - return ERROR; - } -} - static bool parse_heading(Scanner *s, TSLexer *lexer, const bool *valid_symbols) { // Note that headings don't contain other blocks, only inline. @@ -1403,21 +1355,18 @@ static bool parse_heading(Scanner *s, TSLexer *lexer, // We found a `# ` that can start or continue a heading. if (hash_count > 0 && lexer->lookahead == ' ') { - TokenType start_token = heading_start_token(hash_count); - TokenType continuation_token = heading_continuation_token(hash_count); - - if (!valid_symbols[start_token] && !valid_symbols[continuation_token] && + if (!valid_symbols[HEADING_BEGIN] && !valid_symbols[HEADING_CONTINUATION] && !valid_symbols[BLOCK_CLOSE]) { return false; } advance(s, lexer); // Consume the ' '. - if (valid_symbols[continuation_token] && top_heading && + if (valid_symbols[HEADING_CONTINUATION] && top_heading && top->level == hash_count) { // We're in a heading matching the same number of '#'. lexer->mark_end(lexer); - lexer->result_symbol = continuation_token; + lexer->result_symbol = HEADING_CONTINUATION; return true; } @@ -1430,7 +1379,7 @@ static bool parse_heading(Scanner *s, TSLexer *lexer, } // Open a new heading. - if (valid_symbols[start_token]) { + if (valid_symbols[HEADING_BEGIN]) { // Sections are created on the root level (or nested inside other // sections). They should be closed when a header with the same or fewer // `#` is encountered, and then a new section should be started. @@ -1446,7 +1395,7 @@ static bool parse_heading(Scanner *s, TSLexer *lexer, push_block(s, HEADING, hash_count); lexer->mark_end(lexer); - lexer->result_symbol = start_token; + lexer->result_symbol = HEADING_BEGIN; return true; } } else if (hash_count == 0 && top_heading) { @@ -1465,9 +1414,8 @@ static bool parse_heading(Scanner *s, TSLexer *lexer, } // We should continue the heading, if it's open. - TokenType res = heading_continuation_token(top->level); - if (valid_symbols[res]) { - lexer->result_symbol = res; + if (valid_symbols[HEADING_CONTINUATION]) { + lexer->result_symbol = HEADING_CONTINUATION; return true; } } @@ -1948,30 +1896,10 @@ static char *token_type_s(TokenType t) { case FRONTMATTER_MARKER: return "FRONTMATTER_MARKER"; - case HEADING1_BEGIN: - return "HEADING1_BEGIN"; - case HEADING1_CONTINUATION: - return "HEADING1_CONTINUATION"; - case HEADING2_BEGIN: - return "HEADING2_BEGIN"; - case HEADING2_CONTINUATION: - return "HEADING2_CONTINUATION"; - case HEADING3_BEGIN: - return "HEADING3_BEGIN"; - case HEADING3_CONTINUATION: - return "HEADING3_CONTINUATION"; - case HEADING4_BEGIN: - return "HEADING4_BEGIN"; - case HEADING4_CONTINUATION: - return "HEADING4_CONTINUATION"; - case HEADING5_BEGIN: - return "HEADING5_BEGIN"; - case HEADING5_CONTINUATION: - return "HEADING5_CONTINUATION"; - case HEADING6_BEGIN: - return "HEADING6_BEGIN"; - case HEADING6_CONTINUATION: - return "HEADING6_CONTINUATION"; + case HEADING_BEGIN: + return "HEADING_BEGIN"; + case HEADING_CONTINUATION: + return "HEADING_CONTINUATION"; case DIV_BEGIN: return "DIV_BEGIN"; case DIV_END: diff --git a/tree-sitter-djot/test/corpus/syntax.txt b/tree-sitter-djot/test/corpus/syntax.txt index 31c5bd8..2236ab1 100644 --- a/tree-sitter-djot/test/corpus/syntax.txt +++ b/tree-sitter-djot/test/corpus/syntax.txt @@ -65,59 +65,34 @@ Second (paragraph)) =============================================================================== -Heading 1 +Heading: 1 =============================================================================== # Heading ------------------------------------------------------------------------------- (document (section - (heading1 (marker) (content)))) -=============================================================================== -Heading 2 -=============================================================================== -## Heading - -------------------------------------------------------------------------------- -(document - (section - (heading2 (marker) (content)))) -=============================================================================== -Heading 3 -=============================================================================== -### Heading + (heading (marker) (content)))) -------------------------------------------------------------------------------- -(document - (section - (heading3 (marker) (content)))) =============================================================================== -Heading 4 +Heading: 2 =============================================================================== -#### Heading +## Heading ------------------------------------------------------------------------------- (document (section - (heading4 (marker) (content)))) -=============================================================================== -Heading 5 -=============================================================================== -##### Heading + (heading (marker) (content)))) -------------------------------------------------------------------------------- -(document - (section - (heading5 (marker) (content)))) =============================================================================== -Heading 6 +Heading: very long =============================================================================== -###### Heading +######################################### Heading ------------------------------------------------------------------------------- (document (section - (heading6 (marker) (content)))) + (heading (marker) (content)))) =============================================================================== Heading: multiple lines @@ -132,7 +107,7 @@ A paragraph (document (section - (heading1 + (heading (marker) (content (marker) @@ -152,7 +127,7 @@ A paragraph (document (section - (heading1 + (heading (marker) (content (marker) @@ -172,7 +147,7 @@ A paragraph (document (section - (heading2 + (heading (marker) (content (marker) @@ -189,12 +164,12 @@ Heading: closed by higher heading on the next line (document (section - (heading1 + (heading (marker) (content)) (section_content (section - (heading2 + (heading (marker) (content)))))) @@ -208,11 +183,11 @@ Heading: closed by lower heading on the next line (document (section - (heading2 + (heading (marker) (content))) (section - (heading1 + (heading (marker) (content)))) @@ -231,7 +206,7 @@ stop (div (div_marker_begin) (content - (heading4 (marker) (content))) + (heading (marker) (content))) (div_marker_end)) (paragraph)) @@ -245,7 +220,7 @@ Heading 6: list closes (document (section - (heading6 (marker) (content)) + (heading (marker) (content)) (section_content (list (list_item @@ -263,7 +238,7 @@ Heading: followed by list (document (section - (heading1 (marker) (content)) + (heading (marker) (content)) (section_content (list (list_item @@ -281,10 +256,10 @@ Section: closed by the same level (document (section - (heading1 (marker) (content)) + (heading (marker) (content)) (section_content)) (section - (heading1 (marker) (content)))) + (heading (marker) (content)))) =============================================================================== Section: closed by a lower level @@ -297,10 +272,10 @@ Section: closed by a lower level (document (section - (heading2 (marker) (content)) + (heading (marker) (content)) (section_content)) (section - (heading1 (marker) (content)))) + (heading (marker) (content)))) =============================================================================== Section: not closed by higher level @@ -315,15 +290,15 @@ Section: not closed by higher level (document (section - (heading1 + (heading (marker) (content)) (section_content (section - (heading2 (marker) (content)) + (heading (marker) (content)) (section_content (section - (heading3 (marker) (content)))))))) + (heading (marker) (content)))))))) =============================================================================== Section: only allow sections on top level @@ -338,14 +313,14 @@ Section: only allow sections on top level (document (section - (heading1 (marker) (content)) + (heading (marker) (content)) (section_content (list (list_item (list_marker_dash) (list_item_content (paragraph) - (heading1 (marker) (content)))))))) + (heading (marker) (content)))))))) =============================================================================== Block quote: oneline @@ -465,9 +440,7 @@ Block quote: with hard line break (block_quote (block_quote_marker) (content - (paragraph - (hard_line_break) - (block_quote_marker))))) + (paragraph)))) =============================================================================== Block quote: contain code block @@ -746,7 +719,6 @@ After (thematic_break) (paragraph)) - =============================================================================== Link: ref def =============================================================================== @@ -759,7 +731,6 @@ Link: ref def (link_label) (link_destination))) - =============================================================================== Link: ref def middle =============================================================================== @@ -769,6 +740,42 @@ Some text More text +(document + (paragraph) + (link_reference_definition + (link_label) + (link_destination)) + (paragraph)) + +=============================================================================== +Link: ref def with emphasis +=============================================================================== +[ref_]: /url +[ref_]: /url + +------------------------------------------------------------------------------- + +(document + (link_reference_definition + (link_label) + (link_destination)) + (link_reference_definition + (link_label) + (link_destination))) + +=============================================================================== +Link: ref def no newlines +=============================================================================== +[ref +one]: /url +[ref +two]: /url + +------------------------------------------------------------------------------- + +(document + (paragraph)) + =============================================================================== Link: ref defs =============================================================================== @@ -914,7 +921,7 @@ Block attribute: before heading (args (identifier))) (section - (heading1 + (heading (marker) (content)))) @@ -936,753 +943,151 @@ Block attribute: before table (table_cell)))) =============================================================================== -Block attribute: before list -=============================================================================== -{#id} -1. List - -------------------------------------------------------------------------------- - -(document - (block_attribute - (args - (identifier))) - (list - (list_item - (list_marker_decimal_period) - (list_item_content - (paragraph))))) - -=============================================================================== -Block attribute: before blockquote -=============================================================================== -{#id} -> Blockquote - -------------------------------------------------------------------------------- - -(document - (block_attribute - (args - (identifier))) - (block_quote - (block_quote_marker) - (content - (paragraph)))) - -=============================================================================== -Block attribute: before div -=============================================================================== -{#id} -::: div -ok -::: - -------------------------------------------------------------------------------- - -(document - (block_attribute - (args - (identifier))) - (div - (div_marker_begin (class_name)) - (content (paragraph)) - (div_marker_end))) - - -=============================================================================== -Block attribute: before code block -=============================================================================== -{#id} -```rust -let x = 2; -``` - -------------------------------------------------------------------------------- - -(document - (block_attribute - (args - (identifier))) - (code_block - (code_block_marker_begin) - (language) - (code) - (code_block_marker_end))) - -=============================================================================== -Block attribute: before link def -=============================================================================== -{#id} -[ref]: /url - -------------------------------------------------------------------------------- - -(document - (block_attribute - (args - (identifier))) - (link_reference_definition - (link_label) - (link_destination))) - -=============================================================================== -Block attribute: before thematic break -=============================================================================== -{#id} ---- - -------------------------------------------------------------------------------- - -(document - (block_attribute - (args - (identifier))) - (thematic_break)) - -=============================================================================== -Block attribute: inside list -=============================================================================== -- Before - - {.class} - - -------------------------------------------------------------------------------- - -(document - (list - (list_item - (list_marker_dash) - (list_item_content - (paragraph) - (block_attribute - (args - (class))))))) - -=============================================================================== -Block attribute: inside block quote -=============================================================================== -> x -> -> {.class} -> a - -------------------------------------------------------------------------------- - -(document - (block_quote - (block_quote_marker) - (content - (paragraph) - (block_quote_marker) - (block_quote_marker) - (block_attribute (args (class))) - (block_quote_marker) - (paragraph)))) - - -=============================================================================== -Inline attribute: mixed -=============================================================================== -text{.one .two #id author="with spaces"} - -------------------------------------------------------------------------------- - -(document - (paragraph - (inline_attribute - (args - (class) - (class) - (identifier) - (key_value - (key) - (value)))))) - -=============================================================================== -Inline attribute: casing -=============================================================================== -text{.snake_case .cebab-case} - -------------------------------------------------------------------------------- - -(document - (paragraph - (inline_attribute - (args - (class) - (class))))) - -=============================================================================== -Inline attribute: key casing -=============================================================================== -text{snake_case=2 kebab-case=3} - -------------------------------------------------------------------------------- - -(document - (paragraph - (inline_attribute - (args - (key_value - (key) - (value)) - (key_value - (key) - (value)))))) - -=============================================================================== -Inline attribute: surrounding spaces -=============================================================================== -text{ .class } - -------------------------------------------------------------------------------- - -(document - (paragraph - (inline_attribute - (args - (class))))) - -=============================================================================== -Inline attribute: with newlines -=============================================================================== -text{.one -.two -#three} - -------------------------------------------------------------------------------- - -(document - (paragraph - (inline_attribute - (args - (class) - (class) - (identifier))))) - -=============================================================================== -Inline attribute: with comment -=============================================================================== -text{#ident % later we'll add a class %} - -------------------------------------------------------------------------------- - -(document - (paragraph - (inline_attribute - (args - (identifier) - (comment - (content)))))) - -=============================================================================== -Inline attribute: comment -=============================================================================== -text{% -some text here -%} - -------------------------------------------------------------------------------- - -(document - (paragraph - (inline_attribute - (args - (comment - (content)))))) - -=============================================================================== -Inline attribute: standalone comment -=============================================================================== -Foo bar {% This is a comment, spanning -multiple lines %} baz. - -------------------------------------------------------------------------------- - -(document - (paragraph - (comment - (content)))) - -=============================================================================== -Inline attribute: comment escape % -=============================================================================== -Before {% escape \% %} - -------------------------------------------------------------------------------- - -(document - (paragraph - (comment - (content - (backslash_escape))))) - -=============================================================================== -Inline attribute: mixed comment escape % -=============================================================================== -Before{#id % escape \% %} - -------------------------------------------------------------------------------- - -(document - (paragraph - (inline_attribute - (args - (identifier) - (comment - (content - (backslash_escape))))))) - -=============================================================================== -Span -=============================================================================== -One [two three]{.class -#id} - -------------------------------------------------------------------------------- - -(document - (paragraph - (span - (inline_attribute - (args - (class) - (identifier)))))) - -=============================================================================== -Autolink -=============================================================================== -With link - -------------------------------------------------------------------------------- - -(document - (paragraph - (autolink))) - -=============================================================================== -Emphasis -=============================================================================== -With _emphasis_ here - -------------------------------------------------------------------------------- - -(document - (paragraph - (emphasis (emphasis_begin) (content) (emphasis_end)))) - -=============================================================================== -Strong -=============================================================================== -With *strong* here - -------------------------------------------------------------------------------- - -(document - (paragraph - (strong (strong_begin) (content) (strong_end)))) - -=============================================================================== -Emphasis and strong -=============================================================================== -With _*strong* emphasis_ here - -With *_emphasis_ strong* here - -------------------------------------------------------------------------------- - -(document - (paragraph - (emphasis - (emphasis_begin) - (content (strong (strong_begin) (content) (strong_end))) - (emphasis_end))) - (paragraph - (strong - (strong_begin) - (content (emphasis (emphasis_begin) (content) (emphasis_end))) - (strong_end)))) - -=============================================================================== -Emphasis and strong two chars -=============================================================================== -*bc a* -_bc a_ - -------------------------------------------------------------------------------- - -(document - (paragraph - (strong - (strong_begin) - (content) - (strong_end)) - (emphasis - (emphasis_begin) - (content) - (emphasis_end)))) - -=============================================================================== -Emphasis and strong with newlines -=============================================================================== -*a -b* -_a -b_ - -------------------------------------------------------------------------------- - -(document - (paragraph - (strong - (strong_begin) - (content) - (strong_end)) - (emphasis - (emphasis_begin) - (content) - (emphasis_end)))) - -=============================================================================== -Emphasis: various weird tests -=============================================================================== -_a b c_ - -_a b_ - -_a_ - -_a -b c_ - -_ai -b c_ - -_a -b -c_ - -_a -b_ - -_ab -cd_ - -_ab -x -cd_ - -------------------------------------------------------------------------------- - -(document - (paragraph (emphasis (emphasis_begin) (content) (emphasis_end))) - (paragraph (emphasis (emphasis_begin) (content) (emphasis_end))) - (paragraph (emphasis (emphasis_begin) (content) (emphasis_end))) - (paragraph (emphasis (emphasis_begin) (content) (emphasis_end))) - (paragraph (emphasis (emphasis_begin) (content) (emphasis_end))) - (paragraph (emphasis (emphasis_begin) (content) (emphasis_end))) - (paragraph (emphasis (emphasis_begin) (content) (emphasis_end))) - (paragraph (emphasis (emphasis_begin) (content) (emphasis_end))) - (paragraph (emphasis (emphasis_begin) (content) (emphasis_end)))) - -=============================================================================== -Superscipt: various weird tests -=============================================================================== -^a b c^ - -^a b^ - -^a^ - -^a -b c^ - -^ai -b c^ - -^a -b -c^ - -^a -b^ - -^ab -cd^ - -^ab -x -cd^ - -------------------------------------------------------------------------------- - -(document - (paragraph (superscript (content))) - (paragraph (superscript (content))) - (paragraph (superscript (content))) - (paragraph (superscript (content))) - (paragraph (superscript (content))) - (paragraph (superscript (content))) - (paragraph (superscript (content))) - (paragraph (superscript (content))) - (paragraph (superscript (content)))) - -=============================================================================== -Emphasis: nested -=============================================================================== -With __nested_ emphasis_ - -------------------------------------------------------------------------------- - -(document - (paragraph - (emphasis - (emphasis_begin) - (content (emphasis (emphasis_begin) (content) (emphasis_end))) - (emphasis_end)))) - -=============================================================================== -Emphasis: forced despite spaces -=============================================================================== -{_yes_} - -{_ yes _} - -_yes _} - -{_ yes_} - -------------------------------------------------------------------------------- - -(document - (paragraph (emphasis (emphasis_begin) (content) (emphasis_end))) - (paragraph (emphasis (emphasis_begin) (content) (emphasis_end))) - (paragraph (emphasis (emphasis_begin) (content) (emphasis_end))) - (paragraph (emphasis (emphasis_begin) (content) (emphasis_end)))) - -=============================================================================== -Strong: forced despite spaces -=============================================================================== -{*yes*} - -*yes *} - -{* yes* - -{* yes *} - -------------------------------------------------------------------------------- - -(document - (paragraph (strong (strong_begin) (content) (strong_end))) - (paragraph (strong (strong_begin) (content) (strong_end))) - (paragraph (strong (strong_begin) (content) (strong_end))) - (paragraph (strong (strong_begin) (content) (strong_end)))) - -=============================================================================== -Subscript -=============================================================================== -~sub~ - -{~many sub~} - -------------------------------------------------------------------------------- - -(document - (paragraph (subscript (content))) - (paragraph (subscript (content)))) - -=============================================================================== -Superscript -=============================================================================== -^sup^ - -{^many sup^} - -------------------------------------------------------------------------------- - -(document - (paragraph (superscript (content))) - (paragraph (superscript (content)))) - -=============================================================================== -Highlighted -=============================================================================== -With {=mark=} here - -------------------------------------------------------------------------------- - -(document - (paragraph - (highlighted (content)))) - -=============================================================================== -Insert -=============================================================================== -With {+insert+} here - -------------------------------------------------------------------------------- - -(document - (paragraph - (insert (content)))) - -=============================================================================== -Delete -=============================================================================== -With {-delete-} here - -------------------------------------------------------------------------------- - -(document - (paragraph - (delete (content)))) - -=============================================================================== -Inline with newlines -=============================================================================== -{=a -b=} - -{+a -b+} - -{-a -b-} - -^a -b^ - -~a -b~ - -------------------------------------------------------------------------------- - -(document - (paragraph - (highlighted - (content))) - (paragraph - (insert - (content))) - (paragraph - (delete - (content))) - (paragraph - (superscript - (content))) - (paragraph - (subscript - (content)))) - -=============================================================================== -Hard line break +Block attribute: before list =============================================================================== -With \ -break +{#id} +1. List ------------------------------------------------------------------------------- (document - (paragraph - (hard_line_break))) + (block_attribute + (args + (identifier))) + (list + (list_item + (list_marker_decimal_period) + (list_item_content + (paragraph))))) =============================================================================== -Symbol +Block attribute: before blockquote =============================================================================== -With :wink: here +{#id} +> Blockquote ------------------------------------------------------------------------------- (document - (paragraph - (symbol))) + (block_attribute + (args + (identifier))) + (block_quote + (block_quote_marker) + (content + (paragraph)))) =============================================================================== -Link: inline +Block attribute: before div =============================================================================== -With [link](/url) +{#id} +::: div +ok +::: ------------------------------------------------------------------------------- (document - (paragraph - (inline_link - (link_text) - (inline_link_destination)))) + (block_attribute + (args + (identifier))) + (div + (div_marker_begin (class_name)) + (content (paragraph)) + (div_marker_end))) + =============================================================================== -Link: with newline +Block attribute: before code block =============================================================================== -With [link -newline](/url) +{#id} +```rust +let x = 2; +``` ------------------------------------------------------------------------------- (document - (paragraph - (inline_link - (link_text) - (inline_link_destination)))) + (block_attribute + (args + (identifier))) + (code_block + (code_block_marker_begin) + (language) + (code) + (code_block_marker_end))) =============================================================================== -Link: begin +Block attribute: before link def =============================================================================== -[link](/url) +{#id} +[ref]: /url ------------------------------------------------------------------------------- (document - (paragraph - (inline_link - (link_text) - (inline_link_destination)))) + (block_attribute + (args + (identifier))) + (link_reference_definition + (link_label) + (link_destination))) =============================================================================== -Link: collapsed reference link +Block attribute: before thematic break =============================================================================== -With [a reference][] +{#id} +--- ------------------------------------------------------------------------------- (document - (paragraph - (collapsed_reference_link - (link_text)))) + (block_attribute + (args + (identifier))) + (thematic_break)) =============================================================================== -Link: full reference single +Block attribute: inside list =============================================================================== -With [a reference][ref] +- Before + + {.class} + ------------------------------------------------------------------------------- (document - (paragraph - (full_reference_link - (link_text) - (link_label)))) - + (list + (list_item + (list_marker_dash) + (list_item_content + (paragraph) + (block_attribute + (args + (class))))))) =============================================================================== -Link: full reference +Block attribute: inside block quote =============================================================================== -With [a reference][ref] - -[ref]: /url +> x +> +> {.class} +> a ------------------------------------------------------------------------------- (document - (paragraph - (full_reference_link - (link_text) - (link_label))) - (link_reference_definition - (link_label) - (link_destination))) + (block_quote + (block_quote_marker) + (content + (paragraph) + (block_quote_marker) + (block_quote_marker) + (block_attribute (args (class))) + (block_quote_marker) + (paragraph)))) + =============================================================================== Link: inside list @@ -1698,69 +1103,12 @@ Link: inside list (list_item (list_marker_dash) (list_item_content - (paragraph - (inline_link - (link_text) - (inline_link_destination)))))) + (paragraph)))) (list (list_item (list_marker_plus) (list_item_content - (paragraph - (inline_link - (link_text) - (inline_link_destination))))))) - -=============================================================================== -Image: inline -=============================================================================== -![descr](/url) - -------------------------------------------------------------------------------- - -(document - (paragraph - (inline_image - (image_description) - (inline_link_destination)))) - -=============================================================================== -Image: empty inline -=============================================================================== -![](/url) - -------------------------------------------------------------------------------- - -(document - (paragraph - (inline_image - (inline_link_destination)))) - -=============================================================================== -Image: collapsed reference link -=============================================================================== -![img][] - -------------------------------------------------------------------------------- - -(document - (paragraph - (collapsed_reference_image - (image_description)))) - -=============================================================================== -Image: full reference -=============================================================================== -![descr][ref] - -------------------------------------------------------------------------------- - -(document - (paragraph - (full_reference_image - (image_description) - (link_label)))) - + (paragraph))))) =============================================================================== Div: simple @@ -1914,82 +1262,6 @@ Div: close nested div (paragraph)))) (div_marker_end))) -=============================================================================== -Footnote: reference -=============================================================================== - -Here's a ref.[^foo] - -------------------------------------------------------------------------------- - -(document - (paragraph - (footnote_reference - (footnote_marker_begin) - (reference_label) - (footnote_marker_end)))) - -=============================================================================== -Smart punctuation -=============================================================================== - -Ellipsis... - -Em---dash -Eh--dash - -Some{"quotes"} be{'here'}yo - - \"Straight\" \'quotes\' - -------------------------------------------------------------------------------- - -(document - (paragraph - (ellipsis)) - (paragraph - (em_dash) - (en_dash)) - (paragraph - (quotation_marks) - (quotation_marks) - (quotation_marks) - (quotation_marks)) - (paragraph - (quotation_marks) - (quotation_marks) - (quotation_marks) - (quotation_marks))) - -=============================================================================== -Backslash escape -=============================================================================== - -No \_emphasis\_ - -No \_strong\_ - -No \ - -Regular \.\.\. dots - -Inside _x\_y_ - -No \{+insert\*} - -\> no quote - -------------------------------------------------------------------------------- - -(document - (paragraph (backslash_escape) (backslash_escape)) - (paragraph (backslash_escape) (backslash_escape)) - (paragraph (backslash_escape)) - (paragraph (backslash_escape) (backslash_escape) (backslash_escape)) - (paragraph (emphasis (emphasis_begin) (content (backslash_escape)) (emphasis_end))) - (paragraph (backslash_escape) (backslash_escape)) - (paragraph (backslash_escape))) - =============================================================================== Paragraph: not recognized =============================================================================== @@ -2003,7 +1275,7 @@ After (document (paragraph) - (paragraph (en_dash)) + (paragraph) (paragraph)) =============================================================================== @@ -2022,146 +1294,6 @@ After (paragraph) (paragraph)) -=============================================================================== -Verbatim: single -=============================================================================== -Simple `verbatim` here - -------------------------------------------------------------------------------- - -(document - (paragraph - (verbatim - (verbatim_marker_begin) - (content) - (verbatim_marker_end)))) - -=============================================================================== -Verbatim: double with single inside -=============================================================================== -``verbatim with a backtick ` characters`` - -------------------------------------------------------------------------------- - -(document - (paragraph - (verbatim - (verbatim_marker_begin) - (content) - (verbatim_marker_end)))) - -=============================================================================== -Verbatim: with triple inside -=============================================================================== -`verbatim with three backtick ``` characters` - -------------------------------------------------------------------------------- - -(document - (paragraph - (verbatim - (verbatim_marker_begin) - (content) - (verbatim_marker_end)))) - -=============================================================================== -Verbatim: newline closes -=============================================================================== -`verbatim - -------------------------------------------------------------------------------- - -(document - (paragraph - (verbatim - (verbatim_marker_begin) - (content) - (verbatim_marker_end)))) - -=============================================================================== -Verbatim: can contain newlines -=============================================================================== -`verbatim -with -newlines` - -trailing - -------------------------------------------------------------------------------- - -(document - (paragraph - (verbatim - (verbatim_marker_begin) - (content) - (verbatim_marker_end))) - (paragraph)) - - -=============================================================================== -Verbatim: multiple -=============================================================================== -`x` `y` - -------------------------------------------------------------------------------- - -(document - (paragraph - (verbatim - (verbatim_marker_begin) - (content) - (verbatim_marker_end)) - (verbatim - (verbatim_marker_begin) - (content) - (verbatim_marker_end)))) - -=============================================================================== -Verbatim: with hash -=============================================================================== -Don't consume `#` in heading parser code - -------------------------------------------------------------------------------- - -(document - (paragraph - (verbatim - (verbatim_marker_begin) - (content) - (verbatim_marker_end)))) - - -=============================================================================== -Raw inline -=============================================================================== -``{=html} - -------------------------------------------------------------------------------- - -(document - (paragraph - (raw_inline - (raw_inline_marker_begin) - (content) - (raw_inline_marker_end) - (raw_inline_attribute - (language))))) - -=============================================================================== -Math -=============================================================================== -$`1 + 2` - -------------------------------------------------------------------------------- - -(document - (paragraph - (math - (math_marker) - (math_marker_begin) - (content) - (math_marker_end)))) - =============================================================================== List: single dash =============================================================================== @@ -3181,7 +2313,7 @@ List: Unclosed List in Section ------------------------------------------------------------------------------- (document (section - (heading1 + (heading (marker) (content)) (section_content @@ -3222,7 +2354,6 @@ Table: single row (table_cell) (table_cell)))) - =============================================================================== Table: before paragraph =============================================================================== @@ -3363,8 +2494,8 @@ Table: with inline styling (document (table (table_row - (table_cell (emphasis (emphasis_begin) (content) (emphasis_end))) - (table_cell (strong (strong_begin) (content) (strong_end)))))) + (table_cell) + (table_cell)))) =============================================================================== Table: with caption @@ -3383,8 +2514,7 @@ Next paragraph (table_cell)) (table_caption (marker) - (content - (emphasis (emphasis_begin) (content) (emphasis_end))))) + (content))) (paragraph)) =============================================================================== @@ -3403,8 +2533,7 @@ Next paragraph (table_cell)) (table_caption (marker) - (content - (emphasis (emphasis_begin) (content) (emphasis_end))))) + (content))) (paragraph)) =============================================================================== @@ -3460,7 +2589,7 @@ Footnote: before heading (footnote_content (paragraph))) (section - (heading1 (marker) (content)))) + (heading (marker) (content)))) =============================================================================== Footnote: multiline @@ -3578,26 +2707,12 @@ x * x* (paragraph) (paragraph) (paragraph) - (paragraph - (verbatim - (verbatim_marker_begin) - (content) - (verbatim_marker_end))) + (paragraph) (paragraph) (paragraph) (paragraph) (paragraph)) -=============================================================================== -Paragraph: todo note fixme -=============================================================================== -Higlight TODO NOTE and FIXME - -------------------------------------------------------------------------------- - -(document - (paragraph (todo) (note) (fixme))) - =============================================================================== Paragraph: Not list items =============================================================================== @@ -3682,7 +2797,7 @@ Heading after list (list_item_content (paragraph)))) (section - (heading1 + (heading (marker) (content)))) @@ -3797,7 +2912,7 @@ Div in list should be closed before heading (content (paragraph)))))) (section - (heading1 + (heading (marker) (content)))) @@ -3830,6 +2945,6 @@ Comment before heading (comment (content)))) (section - (heading1 + (heading (marker) (content)))) diff --git a/tree-sitter-djot/test/corpus/syntax_crlf.txt b/tree-sitter-djot/test/corpus/syntax_crlf.txt deleted file mode 100644 index 6ab9147..0000000 --- a/tree-sitter-djot/test/corpus/syntax_crlf.txt +++ /dev/null @@ -1,369 +0,0 @@ -=============================================================================== -Paragraph: two -=============================================================================== -First - -Second - -------------------------------------------------------------------------------- - -(document - (paragraph) - (paragraph)) - -=============================================================================== -Paragraph: two multiline -=============================================================================== -In -First - -In -Second - -------------------------------------------------------------------------------- - -(document - (paragraph) - (paragraph)) - -=============================================================================== -Heading: multiple lines -=============================================================================== -# Heading -# with -# lines - -A paragraph - -------------------------------------------------------------------------------- - -(document - (section - (heading1 - (marker) - (content - (marker) - (marker))) - (section_content (paragraph)))) - -=============================================================================== -Heading: multiple lines no # prefix -=============================================================================== -# Heading -with -lines - -A paragraph - -------------------------------------------------------------------------------- - -(document - (section - (heading1 - (marker) - (content - (marker) - (marker))) - (section_content (paragraph)))) - -=============================================================================== -Heading: closed by higher heading on the next line -=============================================================================== -# One -## Two - -------------------------------------------------------------------------------- - -(document - (section - (heading1 - (marker) - (content)) - (section_content - (section - (heading2 - (marker) - (content)))))) - -=============================================================================== -Heading: closed by lower heading on the next line -=============================================================================== -## One -# Two - -------------------------------------------------------------------------------- - -(document - (section - (heading2 - (marker) - (content))) - (section - (heading1 - (marker) - (content)))) - -=============================================================================== -Heading 4: div closes -=============================================================================== -::: -#### Heading -::: - -stop - -------------------------------------------------------------------------------- - -(document - (div - (div_marker_begin) - (content - (heading4 (marker) (content))) - (div_marker_end)) - (paragraph)) - -=============================================================================== -Heading 6: list closes -=============================================================================== -###### Heading -- a - -------------------------------------------------------------------------------- - -(document - (section - (heading6 (marker) (content)) - (section_content - (list - (list_item - (list_marker_dash) - (list_item_content (paragraph))))))) - -=============================================================================== -Block quote: long -=============================================================================== -> This is a block quote. -> -> This is included - -------------------------------------------------------------------------------- - -(document - (block_quote - (block_quote_marker) - (content - (paragraph) - (block_quote_marker) - (block_quote_marker) - (paragraph)))) - -=============================================================================== -Block quote: with hard line break -=============================================================================== -> a \ -> b - -------------------------------------------------------------------------------- - -(document - (block_quote - (block_quote_marker) - (content - (paragraph - (hard_line_break) - (block_quote_marker))))) - -=============================================================================== -Code block: empty -=============================================================================== -``` -``` - -------------------------------------------------------------------------------- - -(document - (code_block - (code_block_marker_begin) - (code_block_marker_end))) - -=============================================================================== -Block attribute: key value spaces -=============================================================================== -{author="with spaces"} -Paragraph - -------------------------------------------------------------------------------- - -(document - (block_attribute - (args - (key_value - (key) - (value)))) - (paragraph)) - -=============================================================================== -Inline attribute: with newlines -=============================================================================== -text{.one -.two -#three} - -------------------------------------------------------------------------------- - -(document - (paragraph - (inline_attribute - (args - (class) - (class) - (identifier))))) - -=============================================================================== -Hard line break -=============================================================================== -With \ -break - -------------------------------------------------------------------------------- - -(document - (paragraph - (hard_line_break))) - -=============================================================================== -Div: end paragraph inside -=============================================================================== -::: -Inside -::: - -------------------------------------------------------------------------------- - -(document - (div - (div_marker_begin) - (content - (paragraph)) - (div_marker_end))) - -=============================================================================== -Verbatim: newline closes -=============================================================================== -`verbatim - -------------------------------------------------------------------------------- - -(document - (paragraph - (verbatim - (verbatim_marker_begin) - (content) - (verbatim_marker_end)))) - -=============================================================================== -List: tight dashes -=============================================================================== -- a -- b -- c - -------------------------------------------------------------------------------- - -(document - (list - (list_item - (list_marker_dash) - (list_item_content (paragraph))) - (list_item - (list_marker_dash) - (list_item_content (paragraph))) - (list_item - (list_marker_dash) - (list_item_content (paragraph))))) - -=============================================================================== -List: Close sublist -=============================================================================== -- a - - - b - -- c - -------------------------------------------------------------------------------- - -(document - (list - (list_item - (list_marker_dash) - (list_item_content - (paragraph) - (list - (list_item - (list_marker_dash) - (list_item_content - (paragraph)))))) - (list_item - (list_marker_dash) - (list_item_content (paragraph))))) - -=============================================================================== -List: Continue paragraph with soft break -=============================================================================== -- First - Second - -------------------------------------------------------------------------------- - -(document - (list - (list_item - (list_marker_dash) - (list_item_content (paragraph))))) - -=============================================================================== -List: Immediate blockquote -=============================================================================== -- > a - > b - -------------------------------------------------------------------------------- - -(document - (list - (list_item - (list_marker_dash) - (list_item_content - (block_quote - (block_quote_marker) - (content - (paragraph - (block_quote_marker)))))))) - -=============================================================================== -Table: inside blockquote -=============================================================================== -> | x|y| -> |--|--:| -> | a | b | - -------------------------------------------------------------------------------- - -(document - (block_quote - (block_quote_marker) - (content - (table - (table_header - (table_cell) - (table_cell)) - (table_separator - (block_quote_marker) - (table_cell_alignment) - (table_cell_alignment)) - (table_row - (block_quote_marker) - (table_cell) - (table_cell)))))) - From eeab9dcc21736b6c2911b9b10973cda51e4be5ac Mon Sep 17 00:00:00 2001 From: Jonas Hietala Date: Wed, 21 Aug 2024 08:37:34 +0200 Subject: [PATCH 03/46] WIP First iteration of djot inline parser --- tree-sitter-djot-inline/.editorconfig | 39 + tree-sitter-djot-inline/.gitattributes | 11 + tree-sitter-djot-inline/.gitignore | 38 + tree-sitter-djot-inline/Cargo.toml | 23 + tree-sitter-djot-inline/Makefile | 109 + tree-sitter-djot-inline/Package.swift | 48 + tree-sitter-djot-inline/binding.gyp | 21 + .../c/tree-sitter-YOUR_LANGUAGE_NAME.h | 16 + .../c/tree-sitter-YOUR_LANGUAGE_NAME.pc.in | 11 + .../bindings/c/tree-sitter-djot_inline.h | 16 + .../bindings/c/tree-sitter-djot_inline.pc.in | 11 + .../bindings/go/binding.go | 13 + .../bindings/go/binding_test.go | 15 + tree-sitter-djot-inline/bindings/go/go.mod | 5 + .../bindings/node/binding.cc | 20 + .../bindings/node/index.d.ts | 28 + .../bindings/node/index.js | 7 + .../tree_sitter_djot_inline/__init__.py | 5 + .../tree_sitter_djot_inline/__init__.pyi | 1 + .../python/tree_sitter_djot_inline/binding.c | 27 + .../python/tree_sitter_djot_inline/py.typed | 0 .../__init__.py | 5 + .../__init__.pyi | 1 + .../tree_sitter_your_language_name/binding.c | 27 + .../tree_sitter_your_language_name/py.typed | 0 .../bindings/rust/build.rs | 19 + tree-sitter-djot-inline/bindings/rust/lib.rs | 54 + .../swift/TreeSitterDjotInline/djot_inline.h | 16 + .../YOUR_LANGUAGE_NAME.h | 16 + tree-sitter-djot-inline/grammar.js | 280 + tree-sitter-djot-inline/package.json | 49 + tree-sitter-djot-inline/pyproject.toml | 29 + .../queries/highlights.scm | 265 + .../queries/injections.scm | 5 + tree-sitter-djot-inline/setup.py | 57 + tree-sitter-djot-inline/src/grammar.json | 1453 + tree-sitter-djot-inline/src/node-types.json | 1537 + tree-sitter-djot-inline/src/parser.c | 41026 ++++++++++++++++ .../src/tree_sitter/alloc.h | 54 + .../src/tree_sitter/array.h | 287 + .../src/tree_sitter/parser.h | 230 + .../test/corpus/syntax.txt | 889 + 42 files changed, 46763 insertions(+) create mode 100644 tree-sitter-djot-inline/.editorconfig create mode 100644 tree-sitter-djot-inline/.gitattributes create mode 100644 tree-sitter-djot-inline/.gitignore create mode 100644 tree-sitter-djot-inline/Cargo.toml create mode 100644 tree-sitter-djot-inline/Makefile create mode 100644 tree-sitter-djot-inline/Package.swift create mode 100644 tree-sitter-djot-inline/binding.gyp create mode 100644 tree-sitter-djot-inline/bindings/c/tree-sitter-YOUR_LANGUAGE_NAME.h create mode 100644 tree-sitter-djot-inline/bindings/c/tree-sitter-YOUR_LANGUAGE_NAME.pc.in create mode 100644 tree-sitter-djot-inline/bindings/c/tree-sitter-djot_inline.h create mode 100644 tree-sitter-djot-inline/bindings/c/tree-sitter-djot_inline.pc.in create mode 100644 tree-sitter-djot-inline/bindings/go/binding.go create mode 100644 tree-sitter-djot-inline/bindings/go/binding_test.go create mode 100644 tree-sitter-djot-inline/bindings/go/go.mod create mode 100644 tree-sitter-djot-inline/bindings/node/binding.cc create mode 100644 tree-sitter-djot-inline/bindings/node/index.d.ts create mode 100644 tree-sitter-djot-inline/bindings/node/index.js create mode 100644 tree-sitter-djot-inline/bindings/python/tree_sitter_djot_inline/__init__.py create mode 100644 tree-sitter-djot-inline/bindings/python/tree_sitter_djot_inline/__init__.pyi create mode 100644 tree-sitter-djot-inline/bindings/python/tree_sitter_djot_inline/binding.c create mode 100644 tree-sitter-djot-inline/bindings/python/tree_sitter_djot_inline/py.typed create mode 100644 tree-sitter-djot-inline/bindings/python/tree_sitter_your_language_name/__init__.py create mode 100644 tree-sitter-djot-inline/bindings/python/tree_sitter_your_language_name/__init__.pyi create mode 100644 tree-sitter-djot-inline/bindings/python/tree_sitter_your_language_name/binding.c create mode 100644 tree-sitter-djot-inline/bindings/python/tree_sitter_your_language_name/py.typed create mode 100644 tree-sitter-djot-inline/bindings/rust/build.rs create mode 100644 tree-sitter-djot-inline/bindings/rust/lib.rs create mode 100644 tree-sitter-djot-inline/bindings/swift/TreeSitterDjotInline/djot_inline.h create mode 100644 tree-sitter-djot-inline/bindings/swift/TreeSitterYourLanguageName/YOUR_LANGUAGE_NAME.h create mode 100644 tree-sitter-djot-inline/grammar.js create mode 100644 tree-sitter-djot-inline/package.json create mode 100644 tree-sitter-djot-inline/pyproject.toml create mode 100644 tree-sitter-djot-inline/queries/highlights.scm create mode 100644 tree-sitter-djot-inline/queries/injections.scm create mode 100644 tree-sitter-djot-inline/setup.py create mode 100644 tree-sitter-djot-inline/src/grammar.json create mode 100644 tree-sitter-djot-inline/src/node-types.json create mode 100644 tree-sitter-djot-inline/src/parser.c create mode 100644 tree-sitter-djot-inline/src/tree_sitter/alloc.h create mode 100644 tree-sitter-djot-inline/src/tree_sitter/array.h create mode 100644 tree-sitter-djot-inline/src/tree_sitter/parser.h create mode 100644 tree-sitter-djot-inline/test/corpus/syntax.txt diff --git a/tree-sitter-djot-inline/.editorconfig b/tree-sitter-djot-inline/.editorconfig new file mode 100644 index 0000000..d3a8b5b --- /dev/null +++ b/tree-sitter-djot-inline/.editorconfig @@ -0,0 +1,39 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true + +[*.{json,toml,yml,gyp}] +indent_style = space +indent_size = 2 + +[*.js] +indent_style = space +indent_size = 2 + +[*.rs] +indent_style = space +indent_size = 4 + +[*.{c,cc,h}] +indent_style = space +indent_size = 4 + +[*.{py,pyi}] +indent_style = space +indent_size = 4 + +[*.swift] +indent_style = space +indent_size = 4 + +[*.go] +indent_style = tab +indent_size = 8 + +[Makefile] +indent_style = tab +indent_size = 8 diff --git a/tree-sitter-djot-inline/.gitattributes b/tree-sitter-djot-inline/.gitattributes new file mode 100644 index 0000000..ffb52ab --- /dev/null +++ b/tree-sitter-djot-inline/.gitattributes @@ -0,0 +1,11 @@ +* text eol=lf + +src/*.json linguist-generated +src/parser.c linguist-generated +src/tree_sitter/* linguist-generated + +bindings/** linguist-generated +binding.gyp linguist-generated +setup.py linguist-generated +Makefile linguist-generated +Package.swift linguist-generated diff --git a/tree-sitter-djot-inline/.gitignore b/tree-sitter-djot-inline/.gitignore new file mode 100644 index 0000000..27fc43f --- /dev/null +++ b/tree-sitter-djot-inline/.gitignore @@ -0,0 +1,38 @@ +# Rust artifacts +Cargo.lock +target/ + +# Node artifacts +build/ +prebuilds/ +node_modules/ +*.tgz + +# Swift artifacts +.build/ + +# Go artifacts +go.sum +_obj/ + +# Python artifacts +.venv/ +dist/ +*.egg-info +*.whl + +# C artifacts +*.a +*.so +*.so.* +*.dylib +*.dll +*.pc + +# Example dirs +/examples/*/ + +# Grammar volatiles +*.wasm +*.obj +*.o diff --git a/tree-sitter-djot-inline/Cargo.toml b/tree-sitter-djot-inline/Cargo.toml new file mode 100644 index 0000000..1304152 --- /dev/null +++ b/tree-sitter-djot-inline/Cargo.toml @@ -0,0 +1,23 @@ +[package] +name = "tree-sitter-your-language-name" +description = "YourLanguageName grammar for tree-sitter" +version = "0.0.1" +license = "MIT" +readme = "README.md" +keywords = ["incremental", "parsing", "tree-sitter", "your-language-name"] +categories = ["parsing", "text-editors"] +repository = "https://github.com/tree-sitter/tree-sitter-your-language-name" +edition = "2021" +autoexamples = false + +build = "bindings/rust/build.rs" +include = ["bindings/rust/*", "grammar.js", "queries/*", "src/*"] + +[lib] +path = "bindings/rust/lib.rs" + +[dependencies] +tree-sitter = ">=0.22.1" + +[build-dependencies] +cc = "1.0.87" diff --git a/tree-sitter-djot-inline/Makefile b/tree-sitter-djot-inline/Makefile new file mode 100644 index 0000000..8fbed5e --- /dev/null +++ b/tree-sitter-djot-inline/Makefile @@ -0,0 +1,109 @@ +VERSION := 0.0.1 + +LANGUAGE_NAME := tree-sitter-YOUR_LANGUAGE_NAME + +# repository +SRC_DIR := src + +PARSER_REPO_URL := $(shell git -C $(SRC_DIR) remote get-url origin 2>/dev/null) + +ifeq ($(PARSER_URL),) + PARSER_URL := $(subst .git,,$(PARSER_REPO_URL)) +ifeq ($(shell echo $(PARSER_URL) | grep '^[a-z][-+.0-9a-z]*://'),) + PARSER_URL := $(subst :,/,$(PARSER_URL)) + PARSER_URL := $(subst git@,https://,$(PARSER_URL)) +endif +endif + +TS ?= tree-sitter + +# ABI versioning +SONAME_MAJOR := $(word 1,$(subst ., ,$(VERSION))) +SONAME_MINOR := $(word 2,$(subst ., ,$(VERSION))) + +# install directory layout +PREFIX ?= /usr/local +INCLUDEDIR ?= $(PREFIX)/include +LIBDIR ?= $(PREFIX)/lib +PCLIBDIR ?= $(LIBDIR)/pkgconfig + +# object files +OBJS := $(patsubst %.c,%.o,$(wildcard $(SRC_DIR)/*.c)) + +# flags +ARFLAGS := rcs +override CFLAGS += -I$(SRC_DIR) -std=c11 -fPIC + +# OS-specific bits +ifeq ($(OS),Windows_NT) + $(error "Windows is not supported") +else ifeq ($(shell uname),Darwin) + SOEXT = dylib + SOEXTVER_MAJOR = $(SONAME_MAJOR).dylib + SOEXTVER = $(SONAME_MAJOR).$(SONAME_MINOR).dylib + LINKSHARED := $(LINKSHARED)-dynamiclib -Wl, + ifneq ($(ADDITIONAL_LIBS),) + LINKSHARED := $(LINKSHARED)$(ADDITIONAL_LIBS), + endif + LINKSHARED := $(LINKSHARED)-install_name,$(LIBDIR)/lib$(LANGUAGE_NAME).$(SONAME_MAJOR).dylib,-rpath,@executable_path/../Frameworks +else + SOEXT = so + SOEXTVER_MAJOR = so.$(SONAME_MAJOR) + SOEXTVER = so.$(SONAME_MAJOR).$(SONAME_MINOR) + LINKSHARED := $(LINKSHARED)-shared -Wl, + ifneq ($(ADDITIONAL_LIBS),) + LINKSHARED := $(LINKSHARED)$(ADDITIONAL_LIBS) + endif + LINKSHARED := $(LINKSHARED)-soname,lib$(LANGUAGE_NAME).so.$(SONAME_MAJOR) +endif +ifneq ($(filter $(shell uname),FreeBSD NetBSD DragonFly),) + PCLIBDIR := $(PREFIX)/libdata/pkgconfig +endif + +all: lib$(LANGUAGE_NAME).a lib$(LANGUAGE_NAME).$(SOEXT) $(LANGUAGE_NAME).pc + +lib$(LANGUAGE_NAME).a: $(OBJS) + $(AR) $(ARFLAGS) $@ $^ + +lib$(LANGUAGE_NAME).$(SOEXT): $(OBJS) + $(CC) $(LDFLAGS) $(LINKSHARED) $^ $(LDLIBS) -o $@ +ifneq ($(STRIP),) + $(STRIP) $@ +endif + +$(LANGUAGE_NAME).pc: bindings/c/$(LANGUAGE_NAME).pc.in + sed -e 's|@URL@|$(PARSER_URL)|' \ + -e 's|@VERSION@|$(VERSION)|' \ + -e 's|@LIBDIR@|$(LIBDIR)|' \ + -e 's|@INCLUDEDIR@|$(INCLUDEDIR)|' \ + -e 's|@REQUIRES@|$(REQUIRES)|' \ + -e 's|@ADDITIONAL_LIBS@|$(ADDITIONAL_LIBS)|' \ + -e 's|=$(PREFIX)|=$${prefix}|' \ + -e 's|@PREFIX@|$(PREFIX)|' $< > $@ + +$(SRC_DIR)/parser.c: grammar.js + $(TS) generate --no-bindings + +install: all + install -Dm644 bindings/c/$(LANGUAGE_NAME).h '$(DESTDIR)$(INCLUDEDIR)'/tree_sitter/$(LANGUAGE_NAME).h + install -Dm644 $(LANGUAGE_NAME).pc '$(DESTDIR)$(PCLIBDIR)'/$(LANGUAGE_NAME).pc + install -Dm755 lib$(LANGUAGE_NAME).a '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).a + install -m755 lib$(LANGUAGE_NAME).$(SOEXT) '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).$(SOEXTVER) + ln -sf lib$(LANGUAGE_NAME).$(SOEXTVER) '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).$(SOEXTVER_MAJOR) + ln -sf lib$(LANGUAGE_NAME).$(SOEXTVER_MAJOR) '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).$(SOEXT) + +uninstall: + $(RM) '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).a \ + '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).$(SOEXTVER) \ + '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).$(SOEXTVER_MAJOR) \ + '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).$(SOEXT) \ + '$(DESTDIR)$(INCLUDEDIR)'/tree_sitter/$(LANGUAGE_NAME).h \ + '$(DESTDIR)$(PCLIBDIR)'/$(LANGUAGE_NAME).pc + +clean: + $(RM) $(OBJS) $(LANGUAGE_NAME).pc lib$(LANGUAGE_NAME).a lib$(LANGUAGE_NAME).$(SOEXT) + +test: + $(TS) test + +.PHONY: all install uninstall clean test diff --git a/tree-sitter-djot-inline/Package.swift b/tree-sitter-djot-inline/Package.swift new file mode 100644 index 0000000..9ba9a94 --- /dev/null +++ b/tree-sitter-djot-inline/Package.swift @@ -0,0 +1,48 @@ +// swift-tools-version:5.3 +import PackageDescription + +let package = Package( + name: "TreeSitterYourLanguageName", + platforms: [.macOS(.v10_13), .iOS(.v11)], + products: [ + .library(name: "TreeSitterYourLanguageName", targets: ["TreeSitterYourLanguageName"]), + ], + dependencies: [], + targets: [ + .target(name: "TreeSitterYourLanguageName", + path: ".", + exclude: [ + "Cargo.toml", + "Makefile", + "binding.gyp", + "bindings/c", + "bindings/go", + "bindings/node", + "bindings/python", + "bindings/rust", + "prebuilds", + "grammar.js", + "package.json", + "package-lock.json", + "pyproject.toml", + "setup.py", + "test", + "examples", + ".editorconfig", + ".github", + ".gitignore", + ".gitattributes", + ".gitmodules", + ], + sources: [ + "src/parser.c", + // NOTE: if your language has an external scanner, add it here. + ], + resources: [ + .copy("queries") + ], + publicHeadersPath: "bindings/swift", + cSettings: [.headerSearchPath("src")]) + ], + cLanguageStandard: .c11 +) diff --git a/tree-sitter-djot-inline/binding.gyp b/tree-sitter-djot-inline/binding.gyp new file mode 100644 index 0000000..337bb19 --- /dev/null +++ b/tree-sitter-djot-inline/binding.gyp @@ -0,0 +1,21 @@ +{ + "targets": [ + { + "target_name": "tree_sitter_YOUR_LANGUAGE_NAME_binding", + "dependencies": [ + " + +typedef struct TSLanguage TSLanguage; + +extern "C" TSLanguage *tree_sitter_YOUR_LANGUAGE_NAME(); + +// "tree-sitter", "language" hashed with BLAKE2 +const napi_type_tag LANGUAGE_TYPE_TAG = { + 0x8AF2E5212AD58ABF, 0xD5006CAD83ABBA16 +}; + +Napi::Object Init(Napi::Env env, Napi::Object exports) { + exports["name"] = Napi::String::New(env, "YOUR_LANGUAGE_NAME"); + auto language = Napi::External::New(env, tree_sitter_YOUR_LANGUAGE_NAME()); + language.TypeTag(&LANGUAGE_TYPE_TAG); + exports["language"] = language; + return exports; +} + +NODE_API_MODULE(tree_sitter_YOUR_LANGUAGE_NAME_binding, Init) diff --git a/tree-sitter-djot-inline/bindings/node/index.d.ts b/tree-sitter-djot-inline/bindings/node/index.d.ts new file mode 100644 index 0000000..efe259e --- /dev/null +++ b/tree-sitter-djot-inline/bindings/node/index.d.ts @@ -0,0 +1,28 @@ +type BaseNode = { + type: string; + named: boolean; +}; + +type ChildNode = { + multiple: boolean; + required: boolean; + types: BaseNode[]; +}; + +type NodeInfo = + | (BaseNode & { + subtypes: BaseNode[]; + }) + | (BaseNode & { + fields: { [name: string]: ChildNode }; + children: ChildNode[]; + }); + +type Language = { + name: string; + language: unknown; + nodeTypeInfo: NodeInfo[]; +}; + +declare const language: Language; +export = language; diff --git a/tree-sitter-djot-inline/bindings/node/index.js b/tree-sitter-djot-inline/bindings/node/index.js new file mode 100644 index 0000000..6657bcf --- /dev/null +++ b/tree-sitter-djot-inline/bindings/node/index.js @@ -0,0 +1,7 @@ +const root = require("path").join(__dirname, "..", ".."); + +module.exports = require("node-gyp-build")(root); + +try { + module.exports.nodeTypeInfo = require("../../src/node-types.json"); +} catch (_) {} diff --git a/tree-sitter-djot-inline/bindings/python/tree_sitter_djot_inline/__init__.py b/tree-sitter-djot-inline/bindings/python/tree_sitter_djot_inline/__init__.py new file mode 100644 index 0000000..0fcdff5 --- /dev/null +++ b/tree-sitter-djot-inline/bindings/python/tree_sitter_djot_inline/__init__.py @@ -0,0 +1,5 @@ +"DjotInline grammar for tree-sitter" + +from ._binding import language + +__all__ = ["language"] diff --git a/tree-sitter-djot-inline/bindings/python/tree_sitter_djot_inline/__init__.pyi b/tree-sitter-djot-inline/bindings/python/tree_sitter_djot_inline/__init__.pyi new file mode 100644 index 0000000..5416666 --- /dev/null +++ b/tree-sitter-djot-inline/bindings/python/tree_sitter_djot_inline/__init__.pyi @@ -0,0 +1 @@ +def language() -> int: ... diff --git a/tree-sitter-djot-inline/bindings/python/tree_sitter_djot_inline/binding.c b/tree-sitter-djot-inline/bindings/python/tree_sitter_djot_inline/binding.c new file mode 100644 index 0000000..c311334 --- /dev/null +++ b/tree-sitter-djot-inline/bindings/python/tree_sitter_djot_inline/binding.c @@ -0,0 +1,27 @@ +#include + +typedef struct TSLanguage TSLanguage; + +TSLanguage *tree_sitter_djot_inline(void); + +static PyObject* _binding_language(PyObject *self, PyObject *args) { + return PyLong_FromVoidPtr(tree_sitter_djot_inline()); +} + +static PyMethodDef methods[] = { + {"language", _binding_language, METH_NOARGS, + "Get the tree-sitter language for this grammar."}, + {NULL, NULL, 0, NULL} +}; + +static struct PyModuleDef module = { + .m_base = PyModuleDef_HEAD_INIT, + .m_name = "_binding", + .m_doc = NULL, + .m_size = -1, + .m_methods = methods +}; + +PyMODINIT_FUNC PyInit__binding(void) { + return PyModule_Create(&module); +} diff --git a/tree-sitter-djot-inline/bindings/python/tree_sitter_djot_inline/py.typed b/tree-sitter-djot-inline/bindings/python/tree_sitter_djot_inline/py.typed new file mode 100644 index 0000000..e69de29 diff --git a/tree-sitter-djot-inline/bindings/python/tree_sitter_your_language_name/__init__.py b/tree-sitter-djot-inline/bindings/python/tree_sitter_your_language_name/__init__.py new file mode 100644 index 0000000..58e9de2 --- /dev/null +++ b/tree-sitter-djot-inline/bindings/python/tree_sitter_your_language_name/__init__.py @@ -0,0 +1,5 @@ +"YourLanguageName grammar for tree-sitter" + +from ._binding import language + +__all__ = ["language"] diff --git a/tree-sitter-djot-inline/bindings/python/tree_sitter_your_language_name/__init__.pyi b/tree-sitter-djot-inline/bindings/python/tree_sitter_your_language_name/__init__.pyi new file mode 100644 index 0000000..5416666 --- /dev/null +++ b/tree-sitter-djot-inline/bindings/python/tree_sitter_your_language_name/__init__.pyi @@ -0,0 +1 @@ +def language() -> int: ... diff --git a/tree-sitter-djot-inline/bindings/python/tree_sitter_your_language_name/binding.c b/tree-sitter-djot-inline/bindings/python/tree_sitter_your_language_name/binding.c new file mode 100644 index 0000000..8155dee --- /dev/null +++ b/tree-sitter-djot-inline/bindings/python/tree_sitter_your_language_name/binding.c @@ -0,0 +1,27 @@ +#include + +typedef struct TSLanguage TSLanguage; + +TSLanguage *tree_sitter_your_language_name(void); + +static PyObject* _binding_language(PyObject *self, PyObject *args) { + return PyLong_FromVoidPtr(tree_sitter_your_language_name()); +} + +static PyMethodDef methods[] = { + {"language", _binding_language, METH_NOARGS, + "Get the tree-sitter language for this grammar."}, + {NULL, NULL, 0, NULL} +}; + +static struct PyModuleDef module = { + .m_base = PyModuleDef_HEAD_INIT, + .m_name = "_binding", + .m_doc = NULL, + .m_size = -1, + .m_methods = methods +}; + +PyMODINIT_FUNC PyInit__binding(void) { + return PyModule_Create(&module); +} diff --git a/tree-sitter-djot-inline/bindings/python/tree_sitter_your_language_name/py.typed b/tree-sitter-djot-inline/bindings/python/tree_sitter_your_language_name/py.typed new file mode 100644 index 0000000..e69de29 diff --git a/tree-sitter-djot-inline/bindings/rust/build.rs b/tree-sitter-djot-inline/bindings/rust/build.rs new file mode 100644 index 0000000..c76123c --- /dev/null +++ b/tree-sitter-djot-inline/bindings/rust/build.rs @@ -0,0 +1,19 @@ +fn main() { + let src_dir = std::path::Path::new("src"); + + let mut c_config = cc::Build::new(); + c_config.std("c11").include(src_dir); + + let parser_path = src_dir.join("parser.c"); + c_config.file(&parser_path); + println!("cargo:rerun-if-changed={}", parser_path.to_str().unwrap()); + + // NOTE: if your language uses an external scanner, uncomment this block: + /* + let scanner_path = src_dir.join("scanner.c"); + c_config.file(&scanner_path); + println!("cargo:rerun-if-changed={}", scanner_path.to_str().unwrap()); + */ + + c_config.compile("tree-sitter-YOUR_LANGUAGE_NAME"); +} diff --git a/tree-sitter-djot-inline/bindings/rust/lib.rs b/tree-sitter-djot-inline/bindings/rust/lib.rs new file mode 100644 index 0000000..60fbeb4 --- /dev/null +++ b/tree-sitter-djot-inline/bindings/rust/lib.rs @@ -0,0 +1,54 @@ +//! This crate provides YourLanguageName language support for the [tree-sitter][] parsing library. +//! +//! Typically, you will use the [language][language func] function to add this language to a +//! tree-sitter [Parser][], and then use the parser to parse some code: +//! +//! ``` +//! let code = r#" +//! "#; +//! let mut parser = tree_sitter::Parser::new(); +//! parser.set_language(&tree_sitter_YOUR_LANGUAGE_NAME::language()).expect("Error loading YourLanguageName grammar"); +//! let tree = parser.parse(code, None).unwrap(); +//! assert!(!tree.root_node().has_error()); +//! ``` +//! +//! [Language]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Language.html +//! [language func]: fn.language.html +//! [Parser]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Parser.html +//! [tree-sitter]: https://tree-sitter.github.io/ + +use tree_sitter::Language; + +extern "C" { + fn tree_sitter_YOUR_LANGUAGE_NAME() -> Language; +} + +/// Get the tree-sitter [Language][] for this grammar. +/// +/// [Language]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Language.html +pub fn language() -> Language { + unsafe { tree_sitter_YOUR_LANGUAGE_NAME() } +} + +/// The content of the [`node-types.json`][] file for this grammar. +/// +/// [`node-types.json`]: https://tree-sitter.github.io/tree-sitter/using-parsers#static-node-types +pub const NODE_TYPES: &str = include_str!("../../src/node-types.json"); + +// Uncomment these to include any queries that this grammar contains + +// pub const HIGHLIGHTS_QUERY: &str = include_str!("../../queries/highlights.scm"); +// pub const INJECTIONS_QUERY: &str = include_str!("../../queries/injections.scm"); +// pub const LOCALS_QUERY: &str = include_str!("../../queries/locals.scm"); +// pub const TAGS_QUERY: &str = include_str!("../../queries/tags.scm"); + +#[cfg(test)] +mod tests { + #[test] + fn test_can_load_grammar() { + let mut parser = tree_sitter::Parser::new(); + parser + .set_language(&super::language()) + .expect("Error loading YourLanguageName grammar"); + } +} diff --git a/tree-sitter-djot-inline/bindings/swift/TreeSitterDjotInline/djot_inline.h b/tree-sitter-djot-inline/bindings/swift/TreeSitterDjotInline/djot_inline.h new file mode 100644 index 0000000..30f5f32 --- /dev/null +++ b/tree-sitter-djot-inline/bindings/swift/TreeSitterDjotInline/djot_inline.h @@ -0,0 +1,16 @@ +#ifndef TREE_SITTER_DJOT_INLINE_H_ +#define TREE_SITTER_DJOT_INLINE_H_ + +typedef struct TSLanguage TSLanguage; + +#ifdef __cplusplus +extern "C" { +#endif + +const TSLanguage *tree_sitter_djot_inline(void); + +#ifdef __cplusplus +} +#endif + +#endif // TREE_SITTER_DJOT_INLINE_H_ diff --git a/tree-sitter-djot-inline/bindings/swift/TreeSitterYourLanguageName/YOUR_LANGUAGE_NAME.h b/tree-sitter-djot-inline/bindings/swift/TreeSitterYourLanguageName/YOUR_LANGUAGE_NAME.h new file mode 100644 index 0000000..b79ab1c --- /dev/null +++ b/tree-sitter-djot-inline/bindings/swift/TreeSitterYourLanguageName/YOUR_LANGUAGE_NAME.h @@ -0,0 +1,16 @@ +#ifndef TREE_SITTER_YOUR_LANGUAGE_NAME_H_ +#define TREE_SITTER_YOUR_LANGUAGE_NAME_H_ + +typedef struct TSLanguage TSLanguage; + +#ifdef __cplusplus +extern "C" { +#endif + +const TSLanguage *tree_sitter_YOUR_LANGUAGE_NAME(void); + +#ifdef __cplusplus +} +#endif + +#endif // TREE_SITTER_YOUR_LANGUAGE_NAME_H_ diff --git a/tree-sitter-djot-inline/grammar.js b/tree-sitter-djot-inline/grammar.js new file mode 100644 index 0000000..a80d8f3 --- /dev/null +++ b/tree-sitter-djot-inline/grammar.js @@ -0,0 +1,280 @@ +module.exports = grammar({ + name: "djot_inline", + + extras: (_) => ["\r"], + + conflicts: ($) => [ + [$.emphasis_begin, $._symbol_fallback], + [$.strong_begin, $._symbol_fallback], + + [$.highlighted, $._symbol_fallback], + [$.superscript, $._symbol_fallback], + [$.subscript, $._symbol_fallback], + [$.insert, $._symbol_fallback], + [$.delete, $._symbol_fallback], + [$._image_description, $._symbol_fallback], + [$.math, $._symbol_fallback], + [$.link_text, $.span, $._symbol_fallback], + [$._inline, $._comment_with_spaces], + ], + + rules: { + // Top level to capture everything in the inline context. + inline: ($) => $._inline, + + _inline: ($) => + prec.left(repeat1(choice($._element, $._newline, $._whitespace1))), + + _element: ($) => + prec.left( + choice( + seq( + choice( + $._hard_line_break, + $._smart_punctuation, + $.backslash_escape, + $.autolink, + $.emphasis, + $.strong, + $.highlighted, + $.superscript, + $.subscript, + $.insert, + $.delete, + $.verbatim, + $.math, + $.raw_inline, + $.footnote_reference, + $.symbol, + $.span, + $._image, + $._link, + $._comment_with_spaces, + $._todo_highlights, + $._symbol_fallback, + $._text, + ), + optional($.inline_attribute), + ), + $.span, + ), + ), + + inline_attribute: ($) => + seq( + token.immediate("{"), + alias( + repeat( + choice( + $.class, + $.identifier, + $.key_value, + alias($._comment_with_newline, $.comment), + $._whitespace1, + $._newline, + ), + ), + $.args, + ), + "}", + ), + + emphasis: ($) => + seq($.emphasis_begin, alias($._inline, $.content), $.emphasis_end), + + // Use explicit begin/end to be able to capture ending tokens with arbitrary whitespace. + // Note that I couldn't replace repeat(" ") with $._whitespace for some reason... + emphasis_begin: (_) => choice(seq("{_", repeat(" ")), "_"), + emphasis_end: (_) => choice(token(seq(repeat(" "), "_}")), "_"), + + strong: ($) => + seq($.strong_begin, alias($._inline, $.content), $.strong_end), + strong_begin: (_) => choice(seq("{*", repeat(" ")), "*"), + strong_end: (_) => choice(token(seq(repeat(" "), "*}")), "*"), + + _hard_line_break: ($) => + // seq($.hard_line_break, optional($._block_quote_prefix)), + $.hard_line_break, + hard_line_break: ($) => seq("\\", $._newline), + + _smart_punctuation: ($) => + choice($.quotation_marks, $.ellipsis, $.em_dash, $.en_dash), + // NOTE it would be nice to be able to mark bare " and ', but then we'd have to be smarter + // so we don't mark the ' in `it's`. + quotation_marks: (_) => token(choice('{"', '"}', "{'", "'}", '\\"', "\\'")), + ellipsis: (_) => "...", + em_dash: (_) => "---", + en_dash: (_) => "--", + + backslash_escape: (_) => /\\[^\\\r\n]/, + + autolink: (_) => seq("<", /[^>\s]+/, ">"), + + highlighted: ($) => seq("{=", alias($._inline, $.content), "=}"), + insert: ($) => seq("{+", alias($._inline, $.content), "+}"), + delete: ($) => seq("{-", alias($._inline, $.content), "-}"), + symbol: (_) => token(seq(":", /[^:\s]+/, ":")), + + // The syntax description isn't clear about if non-bracket can contain surrounding spaces? + // The live playground suggests that yes they can. + superscript: ($) => + seq(choice("{^", "^"), alias($._inline, $.content), choice("^}", "^")), + subscript: ($) => + seq(choice("{~", "~"), alias($._inline, $.content), choice("~}", "~")), + + footnote_reference: ($) => + seq( + alias("[^", $.footnote_marker_begin), + $.reference_label, + alias("]", $.footnote_marker_end), + ), + + reference_label: ($) => $._id, + _id: (_) => /[\w_-]+/, + + _image: ($) => + choice( + $.full_reference_image, + $.collapsed_reference_image, + $.inline_image, + ), + full_reference_image: ($) => seq($._image_description, $._link_label), + collapsed_reference_image: ($) => + seq($._image_description, token.immediate("[]")), + inline_image: ($) => seq($._image_description, $.inline_link_destination), + + _image_description: ($) => + seq("![", optional(alias($._inline, $.image_description)), "]"), + + _link: ($) => + choice($.full_reference_link, $.collapsed_reference_link, $.inline_link), + full_reference_link: ($) => seq($.link_text, $._link_label), + collapsed_reference_link: ($) => seq($.link_text, token.immediate("[]")), + inline_link: ($) => seq($.link_text, $.inline_link_destination), + + link_text: ($) => seq("[", $._inline, "]"), + + _link_label: ($) => + seq("[", alias($._inline, $.link_label), token.immediate("]")), + inline_link_destination: (_) => seq("(", /[^\n\)]+/, ")"), + + inline_attribute: ($) => + seq( + token.immediate("{"), + alias( + repeat( + choice( + $.class, + $.identifier, + $.key_value, + alias($._comment_with_newline, $.comment), + $._whitespace1, + $._newline, + ), + ), + $.args, + ), + "}", + ), + + // An inline attribute is only allowed to have surrounding spaces + // if it only contains a comment. + comment: ($) => seq("{", $._comment_with_newline, "}"), + _comment_with_spaces: ($) => seq($._whitespace1, $.comment), + + span: ($) => seq("[", $._inline, "]", $.inline_attribute), + + _comment_with_newline: ($) => + seq( + "%", + // With a whitespace here there's weirdly enough no conflict with + // `_comment_no_newline` despite only a single choice difference. + $._whitespace, + alias( + repeat(choice($.backslash_escape, /[^%\n]/, $._newline)), + $.content, + ), + "%", + ), + _comment_no_newline: ($) => + seq( + "%", + alias(repeat(choice($.backslash_escape, /[^%\n]/)), $.content), + "%", + ), + + raw_inline: ($) => + seq( + alias($._verbatim_begin, $.raw_inline_marker_begin), + alias($._verbatim_content, $.content), + alias($._verbatim_end, $.raw_inline_marker_end), + $.raw_inline_attribute, + ), + raw_inline_attribute: ($) => seq(token.immediate("{="), $.language, "}"), + math: ($) => + seq( + alias("$", $.math_marker), + alias($._verbatim_begin, $.math_marker_begin), + alias($._verbatim_content, $.content), + alias($._verbatim_end, $.math_marker_end), + ), + verbatim: ($) => + seq( + alias($._verbatim_begin, $.verbatim_marker_begin), + alias($._verbatim_content, $.content), + alias($._verbatim_end, $.verbatim_marker_end), + ), + + _todo_highlights: ($) => choice($.todo, $.note, $.fixme), + todo: (_) => choice("TODO", "WIP"), + note: (_) => choice("NOTE", "INFO", "XXX"), + fixme: (_) => "FIXME", + + // These exists to explicit trigger an LR collision with existing + // prefixes. A collision isn't detected with a string and the + // catch-all `_text` regex. + _symbol_fallback: ($) => + prec.dynamic( + -1000, + choice( + "![", + "*", + "[", + "[^", + "^", + "_", + "{", + "{*", + "{+", + "{-", + "{=", + "{^", + "{_", + "{~", + "|", + "~", + "<", + "$", + ), + ), + + _verbatim_begin: (_) => "`", + _verbatim_end: (_) => "`", + _verbatim_content: (_) => /[^`]*/, + + language: (_) => /[^\n\t \{\}=]+/, + + _whitespace: (_) => token.immediate(/[ \t]*/), + _whitespace1: (_) => token.immediate(/[ \t]+/), + _newline: (_) => "\n", + + _text: (_) => repeat1(/\S/), + + class_name: ($) => $._id, + class: ($) => seq(".", alias($.class_name, "class")), + identifier: (_) => token(seq("#", token.immediate(/[^\s\}]+/))), + key_value: ($) => seq($.key, "=", $.value), + key: ($) => $._id, + value: (_) => choice(seq('"', /[^"\n]+/, '"'), /\w+/), + }, +}); diff --git a/tree-sitter-djot-inline/package.json b/tree-sitter-djot-inline/package.json new file mode 100644 index 0000000..0fc1c06 --- /dev/null +++ b/tree-sitter-djot-inline/package.json @@ -0,0 +1,49 @@ +{ + "name": "tree-sitter-djot-inline", + "version": "1.0.0", + "description": "", + "main": "bindings/node", + "types": "bindings/node", + "scripts": { + "generate": "tree-sitter generate", + "test": "tree-sitter test", + "check-formatted": "prettier --check grammar.js", + "build-wasm": "tree-sitter build-wasm", + "install": "node-gyp-build", + "prebuildify": "prebuildify --napi --strip" + }, + "author": "", + "license": "ISC", + "dependencies": { + "node-addon-api": "^7.1.0", + "node-gyp-build": "^4.8.0" + }, + "peerDependencies": { + "tree-sitter": "^0.21.0" + }, + "peerDependenciesMeta": { + "tree_sitter": { + "optional": true + } + }, + "devDependencies": { + "tree-sitter-cli": "^0.22.1", + "prebuildify": "^6.0.0" + }, + "tree-sitter": [ + { + "scope": "source.djot_inline", + "highlights": [ + "queries/highlights.scm" + ] + } + ], + "files": [ + "grammar.js", + "binding.gyp", + "prebuilds/**", + "bindings/node/*", + "queries/*", + "src/**" + ] +} diff --git a/tree-sitter-djot-inline/pyproject.toml b/tree-sitter-djot-inline/pyproject.toml new file mode 100644 index 0000000..fa965bb --- /dev/null +++ b/tree-sitter-djot-inline/pyproject.toml @@ -0,0 +1,29 @@ +[build-system] +requires = ["setuptools>=42", "wheel"] +build-backend = "setuptools.build_meta" + +[project] +name = "tree-sitter-your-language-name" +description = "YourLanguageName grammar for tree-sitter" +version = "0.0.1" +keywords = ["incremental", "parsing", "tree-sitter", "your-language-name"] +classifiers = [ + "Intended Audience :: Developers", + "License :: OSI Approved :: MIT License", + "Topic :: Software Development :: Compilers", + "Topic :: Text Processing :: Linguistic", + "Typing :: Typed" +] +requires-python = ">=3.8" +license.text = "MIT" +readme = "README.md" + +[project.urls] +Homepage = "https://github.com/tree-sitter/tree-sitter-your-language-name" + +[project.optional-dependencies] +core = ["tree-sitter~=0.21"] + +[tool.cibuildwheel] +build = "cp38-*" +build-frontend = "build" diff --git a/tree-sitter-djot-inline/queries/highlights.scm b/tree-sitter-djot-inline/queries/highlights.scm new file mode 100644 index 0000000..7a22d75 --- /dev/null +++ b/tree-sitter-djot-inline/queries/highlights.scm @@ -0,0 +1,265 @@ +[ + (autolink) + (inline_link_destination) + (math) + (raw_inline) + (verbatim) + (reference_label) + (class) + (identifier) + (key_value) +] @nospell + +(full_reference_link + (link_label) @nospell) + +(full_reference_image + (link_label) @nospell) + +(inline_attribute + _ @conceal + (#set! conceal "")) + +[ + (ellipsis) + (en_dash) + (em_dash) +] @string.special + +(quotation_marks) @string.special + +((quotation_marks) @string.special + (#eq? @string.special "{\"") + (#set! conceal "“")) + +((quotation_marks) @string.special + (#eq? @string.special "\"}") + (#set! conceal "”")) + +((quotation_marks) @string.special + (#eq? @string.special "{'") + (#set! conceal "‘")) + +((quotation_marks) @string.special + (#eq? @string.special "'}") + (#set! conceal "’")) + +((quotation_marks) @string.special + (#any-of? @string.special "\\\"" "\\'") + (#offset! @string.special 0 0 0 -1) + (#set! conceal "")) + +((hard_line_break) @string.escape + (#set! conceal "↵")) + +(backslash_escape) @string.escape + +; Only conceal \ but leave escaped character. +((backslash_escape) @string.escape + (#offset! @string.escape 0 0 0 -1) + (#set! conceal "")) + +(emphasis) @markup.italic + +(strong) @markup.strong + +(symbol) @string.special.symbol + +(insert) @markup.underline + +(delete) @markup.strikethrough + +; Note that these aren't standard in nvim-treesitter, +; but I didn't find any that fit well. +(highlighted) @markup.highlighted + +(superscript) @markup.superscript + +(subscript) @markup.subscript + +; We need to target tokens specifically because `{=` etc can exist as fallback symbols in +; regular text, which we don't want to highlight or conceal. +(highlighted + [ + "{=" + "=}" + ] @punctuation.delimiter + (#set! conceal "")) + +(insert + [ + "{+" + "+}" + ] @punctuation.delimiter + (#set! conceal "")) + +(delete + [ + "{-" + "-}" + ] @punctuation.delimiter + (#set! conceal "")) + +(superscript + [ + "^" + "{^" + "^}" + ] @punctuation.delimiter + (#set! conceal "")) + +(subscript + [ + "~" + "{~" + "~}" + ] @punctuation.delimiter + (#set! conceal "")) + +([ + (emphasis_begin) + (emphasis_end) + (strong_begin) + (strong_end) + (verbatim_marker_begin) + (verbatim_marker_end) + (math_marker) + (math_marker_begin) + (math_marker_end) + (raw_inline_attribute) + (raw_inline_marker_begin) + (raw_inline_marker_end) +] @punctuation.delimiter + (#set! conceal "")) + +((math) @markup.math + (#set! "priority" 90)) + +(verbatim) @markup.raw + +((raw_inline) @markup.raw + (#set! "priority" 90)) + +(comment) @comment + +; Don't conceal standalone comments themselves, only delimiters. +(comment + [ + "{" + "}" + "%" + ] @comment + (#set! conceal "")) + +(span + [ + "[" + "]" + ] @punctuation.bracket) + +(inline_attribute + [ + "{" + "}" + ] @punctuation.bracket) + +(link_text + [ + "[" + "]" + ] @punctuation.bracket + (#set! conceal "")) + +(autolink + [ + "<" + ">" + ] @punctuation.bracket + (#set! conceal "")) + +(inline_link + (inline_link_destination) @markup.link.url + (#set! conceal "")) + +(full_reference_link + (link_text) @markup.link) + +(full_reference_link + (link_label) @markup.link.label + (#set! conceal "")) + +(collapsed_reference_link + "[]" @punctuation.bracket + (#set! conceal "")) + +(full_reference_link + [ + "[" + "]" + ] @punctuation.bracket + (#set! conceal "")) + +(collapsed_reference_link + (link_text) @markup.link) + +(collapsed_reference_link + (link_text) @markup.link.label) + +(inline_link + (link_text) @markup.link) + +(full_reference_image + (link_label) @markup.link.label) + +(full_reference_image + [ + "![" + "[" + "]" + ] @punctuation.bracket) + +(collapsed_reference_image + [ + "![" + "]" + ] @punctuation.bracket) + +(inline_image + [ + "![" + "]" + ] @punctuation.bracket) + +(image_description) @markup.italic + +(image_description + [ + "[" + "]" + ] @punctuation.bracket) + +(inline_link_destination + [ + "(" + ")" + ] @punctuation.bracket) + +[ + (autolink) + (inline_link_destination) +] @markup.link.url + +(footnote_reference + (reference_label) @markup.link.label) + +[ + (footnote_marker_begin) + (footnote_marker_end) +] @punctuation.bracket + + +(todo) @comment.todo + +(note) @comment.note + +(fixme) @comment.error diff --git a/tree-sitter-djot-inline/queries/injections.scm b/tree-sitter-djot-inline/queries/injections.scm new file mode 100644 index 0000000..3ea57d1 --- /dev/null +++ b/tree-sitter-djot-inline/queries/injections.scm @@ -0,0 +1,5 @@ +(raw_inline + (content) @injection.content + (raw_inline_attribute + (language) @injection.language)) + diff --git a/tree-sitter-djot-inline/setup.py b/tree-sitter-djot-inline/setup.py new file mode 100644 index 0000000..03c2e4d --- /dev/null +++ b/tree-sitter-djot-inline/setup.py @@ -0,0 +1,57 @@ +from os.path import isdir, join +from platform import system + +from setuptools import Extension, find_packages, setup +from setuptools.command.build import build +from wheel.bdist_wheel import bdist_wheel + + +class Build(build): + def run(self): + if isdir("queries"): + dest = join(self.build_lib, "tree_sitter_YOUR_LANGUAGE_NAME", "queries") + self.copy_tree("queries", dest) + super().run() + + +class BdistWheel(bdist_wheel): + def get_tag(self): + python, abi, platform = super().get_tag() + if python.startswith("cp"): + python, abi = "cp38", "abi3" + return python, abi, platform + + +setup( + packages=find_packages("bindings/python"), + package_dir={"": "bindings/python"}, + package_data={ + "tree_sitter_your_language_name": ["*.pyi", "py.typed"], + "tree_sitter_your_language_name.queries": ["*.scm"], + }, + ext_package="tree_sitter_your_language_name", + ext_modules=[ + Extension( + name="_binding", + sources=[ + "bindings/python/tree_sitter_your_language_name/binding.c", + "src/parser.c", + # NOTE: if your language uses an external scanner, add it here. + ], + extra_compile_args=( + ["-std=c11"] if system() != 'Windows' else [] + ), + define_macros=[ + ("Py_LIMITED_API", "0x03080000"), + ("PY_SSIZE_T_CLEAN", None) + ], + include_dirs=["src"], + py_limited_api=True, + ) + ], + cmdclass={ + "build": Build, + "bdist_wheel": BdistWheel + }, + zip_safe=False +) diff --git a/tree-sitter-djot-inline/src/grammar.json b/tree-sitter-djot-inline/src/grammar.json new file mode 100644 index 0000000..25459cb --- /dev/null +++ b/tree-sitter-djot-inline/src/grammar.json @@ -0,0 +1,1453 @@ +{ + "name": "djot_inline", + "rules": { + "inline": { + "type": "SYMBOL", + "name": "_inline" + }, + "_inline": { + "type": "PREC_LEFT", + "value": 0, + "content": { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_element" + }, + { + "type": "SYMBOL", + "name": "_newline" + }, + { + "type": "SYMBOL", + "name": "_whitespace1" + } + ] + } + } + }, + "_element": { + "type": "PREC_LEFT", + "value": 0, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_hard_line_break" + }, + { + "type": "SYMBOL", + "name": "_smart_punctuation" + }, + { + "type": "SYMBOL", + "name": "backslash_escape" + }, + { + "type": "SYMBOL", + "name": "autolink" + }, + { + "type": "SYMBOL", + "name": "emphasis" + }, + { + "type": "SYMBOL", + "name": "strong" + }, + { + "type": "SYMBOL", + "name": "highlighted" + }, + { + "type": "SYMBOL", + "name": "superscript" + }, + { + "type": "SYMBOL", + "name": "subscript" + }, + { + "type": "SYMBOL", + "name": "insert" + }, + { + "type": "SYMBOL", + "name": "delete" + }, + { + "type": "SYMBOL", + "name": "verbatim" + }, + { + "type": "SYMBOL", + "name": "math" + }, + { + "type": "SYMBOL", + "name": "raw_inline" + }, + { + "type": "SYMBOL", + "name": "footnote_reference" + }, + { + "type": "SYMBOL", + "name": "symbol" + }, + { + "type": "SYMBOL", + "name": "span" + }, + { + "type": "SYMBOL", + "name": "_image" + }, + { + "type": "SYMBOL", + "name": "_link" + }, + { + "type": "SYMBOL", + "name": "_comment_with_spaces" + }, + { + "type": "SYMBOL", + "name": "_todo_highlights" + }, + { + "type": "SYMBOL", + "name": "_symbol_fallback" + }, + { + "type": "SYMBOL", + "name": "_text" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "inline_attribute" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SYMBOL", + "name": "span" + } + ] + } + }, + "inline_attribute": { + "type": "SEQ", + "members": [ + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "{" + } + }, + { + "type": "ALIAS", + "content": { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "class" + }, + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "key_value" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_comment_with_newline" + }, + "named": true, + "value": "comment" + }, + { + "type": "SYMBOL", + "name": "_whitespace1" + }, + { + "type": "SYMBOL", + "name": "_newline" + } + ] + } + }, + "named": true, + "value": "args" + }, + { + "type": "STRING", + "value": "}" + } + ] + }, + "emphasis": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "emphasis_begin" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_inline" + }, + "named": true, + "value": "content" + }, + { + "type": "SYMBOL", + "name": "emphasis_end" + } + ] + }, + "emphasis_begin": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{_" + }, + { + "type": "REPEAT", + "content": { + "type": "STRING", + "value": " " + } + } + ] + }, + { + "type": "STRING", + "value": "_" + } + ] + }, + "emphasis_end": { + "type": "CHOICE", + "members": [ + { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "STRING", + "value": " " + } + }, + { + "type": "STRING", + "value": "_}" + } + ] + } + }, + { + "type": "STRING", + "value": "_" + } + ] + }, + "strong": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "strong_begin" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_inline" + }, + "named": true, + "value": "content" + }, + { + "type": "SYMBOL", + "name": "strong_end" + } + ] + }, + "strong_begin": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{*" + }, + { + "type": "REPEAT", + "content": { + "type": "STRING", + "value": " " + } + } + ] + }, + { + "type": "STRING", + "value": "*" + } + ] + }, + "strong_end": { + "type": "CHOICE", + "members": [ + { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "STRING", + "value": " " + } + }, + { + "type": "STRING", + "value": "*}" + } + ] + } + }, + { + "type": "STRING", + "value": "*" + } + ] + }, + "_hard_line_break": { + "type": "SYMBOL", + "name": "hard_line_break" + }, + "hard_line_break": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "\\" + }, + { + "type": "SYMBOL", + "name": "_newline" + } + ] + }, + "_smart_punctuation": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "quotation_marks" + }, + { + "type": "SYMBOL", + "name": "ellipsis" + }, + { + "type": "SYMBOL", + "name": "em_dash" + }, + { + "type": "SYMBOL", + "name": "en_dash" + } + ] + }, + "quotation_marks": { + "type": "TOKEN", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "{\"" + }, + { + "type": "STRING", + "value": "\"}" + }, + { + "type": "STRING", + "value": "{'" + }, + { + "type": "STRING", + "value": "'}" + }, + { + "type": "STRING", + "value": "\\\"" + }, + { + "type": "STRING", + "value": "\\'" + } + ] + } + }, + "ellipsis": { + "type": "STRING", + "value": "..." + }, + "em_dash": { + "type": "STRING", + "value": "---" + }, + "en_dash": { + "type": "STRING", + "value": "--" + }, + "backslash_escape": { + "type": "PATTERN", + "value": "\\\\[^\\\\\\r\\n]" + }, + "autolink": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "<" + }, + { + "type": "PATTERN", + "value": "[^>\\s]+" + }, + { + "type": "STRING", + "value": ">" + } + ] + }, + "highlighted": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{=" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_inline" + }, + "named": true, + "value": "content" + }, + { + "type": "STRING", + "value": "=}" + } + ] + }, + "insert": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{+" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_inline" + }, + "named": true, + "value": "content" + }, + { + "type": "STRING", + "value": "+}" + } + ] + }, + "delete": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{-" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_inline" + }, + "named": true, + "value": "content" + }, + { + "type": "STRING", + "value": "-}" + } + ] + }, + "symbol": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ":" + }, + { + "type": "PATTERN", + "value": "[^:\\s]+" + }, + { + "type": "STRING", + "value": ":" + } + ] + } + }, + "superscript": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "{^" + }, + { + "type": "STRING", + "value": "^" + } + ] + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_inline" + }, + "named": true, + "value": "content" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "^}" + }, + { + "type": "STRING", + "value": "^" + } + ] + } + ] + }, + "subscript": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "{~" + }, + { + "type": "STRING", + "value": "~" + } + ] + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_inline" + }, + "named": true, + "value": "content" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "~}" + }, + { + "type": "STRING", + "value": "~" + } + ] + } + ] + }, + "footnote_reference": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "[^" + }, + "named": true, + "value": "footnote_marker_begin" + }, + { + "type": "SYMBOL", + "name": "reference_label" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "]" + }, + "named": true, + "value": "footnote_marker_end" + } + ] + }, + "reference_label": { + "type": "SYMBOL", + "name": "_id" + }, + "_id": { + "type": "PATTERN", + "value": "[\\w_-]+" + }, + "_image": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "full_reference_image" + }, + { + "type": "SYMBOL", + "name": "collapsed_reference_image" + }, + { + "type": "SYMBOL", + "name": "inline_image" + } + ] + }, + "full_reference_image": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_image_description" + }, + { + "type": "SYMBOL", + "name": "_link_label" + } + ] + }, + "collapsed_reference_image": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_image_description" + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "[]" + } + } + ] + }, + "inline_image": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_image_description" + }, + { + "type": "SYMBOL", + "name": "inline_link_destination" + } + ] + }, + "_image_description": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "![" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_inline" + }, + "named": true, + "value": "image_description" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "]" + } + ] + }, + "_link": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "full_reference_link" + }, + { + "type": "SYMBOL", + "name": "collapsed_reference_link" + }, + { + "type": "SYMBOL", + "name": "inline_link" + } + ] + }, + "full_reference_link": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "link_text" + }, + { + "type": "SYMBOL", + "name": "_link_label" + } + ] + }, + "collapsed_reference_link": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "link_text" + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "[]" + } + } + ] + }, + "inline_link": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "link_text" + }, + { + "type": "SYMBOL", + "name": "inline_link_destination" + } + ] + }, + "link_text": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "[" + }, + { + "type": "SYMBOL", + "name": "_inline" + }, + { + "type": "STRING", + "value": "]" + } + ] + }, + "_link_label": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "[" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_inline" + }, + "named": true, + "value": "link_label" + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "]" + } + } + ] + }, + "inline_link_destination": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "PATTERN", + "value": "[^\\n\\)]+" + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "comment": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "SYMBOL", + "name": "_comment_with_newline" + }, + { + "type": "STRING", + "value": "}" + } + ] + }, + "_comment_with_spaces": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_whitespace1" + }, + { + "type": "SYMBOL", + "name": "comment" + } + ] + }, + "span": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "[" + }, + { + "type": "SYMBOL", + "name": "_inline" + }, + { + "type": "STRING", + "value": "]" + }, + { + "type": "SYMBOL", + "name": "inline_attribute" + } + ] + }, + "_comment_with_newline": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "%" + }, + { + "type": "SYMBOL", + "name": "_whitespace" + }, + { + "type": "ALIAS", + "content": { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "backslash_escape" + }, + { + "type": "PATTERN", + "value": "[^%\\n]" + }, + { + "type": "SYMBOL", + "name": "_newline" + } + ] + } + }, + "named": true, + "value": "content" + }, + { + "type": "STRING", + "value": "%" + } + ] + }, + "_comment_no_newline": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "%" + }, + { + "type": "ALIAS", + "content": { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "backslash_escape" + }, + { + "type": "PATTERN", + "value": "[^%\\n]" + } + ] + } + }, + "named": true, + "value": "content" + }, + { + "type": "STRING", + "value": "%" + } + ] + }, + "raw_inline": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_verbatim_begin" + }, + "named": true, + "value": "raw_inline_marker_begin" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_verbatim_content" + }, + "named": true, + "value": "content" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_verbatim_end" + }, + "named": true, + "value": "raw_inline_marker_end" + }, + { + "type": "SYMBOL", + "name": "raw_inline_attribute" + } + ] + }, + "raw_inline_attribute": { + "type": "SEQ", + "members": [ + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "{=" + } + }, + { + "type": "SYMBOL", + "name": "language" + }, + { + "type": "STRING", + "value": "}" + } + ] + }, + "math": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "$" + }, + "named": true, + "value": "math_marker" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_verbatim_begin" + }, + "named": true, + "value": "math_marker_begin" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_verbatim_content" + }, + "named": true, + "value": "content" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_verbatim_end" + }, + "named": true, + "value": "math_marker_end" + } + ] + }, + "verbatim": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_verbatim_begin" + }, + "named": true, + "value": "verbatim_marker_begin" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_verbatim_content" + }, + "named": true, + "value": "content" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_verbatim_end" + }, + "named": true, + "value": "verbatim_marker_end" + } + ] + }, + "_todo_highlights": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "todo" + }, + { + "type": "SYMBOL", + "name": "note" + }, + { + "type": "SYMBOL", + "name": "fixme" + } + ] + }, + "todo": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "TODO" + }, + { + "type": "STRING", + "value": "WIP" + } + ] + }, + "note": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "NOTE" + }, + { + "type": "STRING", + "value": "INFO" + }, + { + "type": "STRING", + "value": "XXX" + } + ] + }, + "fixme": { + "type": "STRING", + "value": "FIXME" + }, + "_symbol_fallback": { + "type": "PREC_DYNAMIC", + "value": -1000, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "![" + }, + { + "type": "STRING", + "value": "*" + }, + { + "type": "STRING", + "value": "[" + }, + { + "type": "STRING", + "value": "[^" + }, + { + "type": "STRING", + "value": "^" + }, + { + "type": "STRING", + "value": "_" + }, + { + "type": "STRING", + "value": "{" + }, + { + "type": "STRING", + "value": "{*" + }, + { + "type": "STRING", + "value": "{+" + }, + { + "type": "STRING", + "value": "{-" + }, + { + "type": "STRING", + "value": "{=" + }, + { + "type": "STRING", + "value": "{^" + }, + { + "type": "STRING", + "value": "{_" + }, + { + "type": "STRING", + "value": "{~" + }, + { + "type": "STRING", + "value": "|" + }, + { + "type": "STRING", + "value": "~" + }, + { + "type": "STRING", + "value": "<" + }, + { + "type": "STRING", + "value": "$" + } + ] + } + }, + "_verbatim_begin": { + "type": "STRING", + "value": "`" + }, + "_verbatim_end": { + "type": "STRING", + "value": "`" + }, + "_verbatim_content": { + "type": "PATTERN", + "value": "[^`]*" + }, + "language": { + "type": "PATTERN", + "value": "[^\\n\\t \\{\\}=]+" + }, + "_whitespace": { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PATTERN", + "value": "[ \\t]*" + } + }, + "_whitespace1": { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PATTERN", + "value": "[ \\t]+" + } + }, + "_newline": { + "type": "STRING", + "value": "\n" + }, + "_text": { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "\\S" + } + }, + "class_name": { + "type": "SYMBOL", + "name": "_id" + }, + "class": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "." + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "class_name" + }, + "named": false, + "value": "class" + } + ] + }, + "identifier": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "#" + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PATTERN", + "value": "[^\\s\\}]+" + } + } + ] + } + }, + "key_value": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "key" + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "SYMBOL", + "name": "value" + } + ] + }, + "key": { + "type": "SYMBOL", + "name": "_id" + }, + "value": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "\"" + }, + { + "type": "PATTERN", + "value": "[^\"\\n]+" + }, + { + "type": "STRING", + "value": "\"" + } + ] + }, + { + "type": "PATTERN", + "value": "\\w+" + } + ] + } + }, + "extras": [ + { + "type": "STRING", + "value": "\r" + } + ], + "conflicts": [ + [ + "emphasis_begin", + "_symbol_fallback" + ], + [ + "strong_begin", + "_symbol_fallback" + ], + [ + "highlighted", + "_symbol_fallback" + ], + [ + "superscript", + "_symbol_fallback" + ], + [ + "subscript", + "_symbol_fallback" + ], + [ + "insert", + "_symbol_fallback" + ], + [ + "delete", + "_symbol_fallback" + ], + [ + "_image_description", + "_symbol_fallback" + ], + [ + "math", + "_symbol_fallback" + ], + [ + "link_text", + "span", + "_symbol_fallback" + ], + [ + "_inline", + "_comment_with_spaces" + ] + ], + "precedences": [], + "externals": [], + "inline": [], + "supertypes": [] +} diff --git a/tree-sitter-djot-inline/src/node-types.json b/tree-sitter-djot-inline/src/node-types.json new file mode 100644 index 0000000..7225172 --- /dev/null +++ b/tree-sitter-djot-inline/src/node-types.json @@ -0,0 +1,1537 @@ +[ + { + "type": "args", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "class", + "named": true + }, + { + "type": "comment", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "key_value", + "named": true + } + ] + } + }, + { + "type": "autolink", + "named": true, + "fields": {} + }, + { + "type": "class", + "named": false, + "fields": {} + }, + { + "type": "collapsed_reference_image", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "image_description", + "named": true + } + ] + } + }, + { + "type": "collapsed_reference_link", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "link_text", + "named": true + } + ] + } + }, + { + "type": "comment", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "content", + "named": true + } + ] + } + }, + { + "type": "content", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "autolink", + "named": true + }, + { + "type": "backslash_escape", + "named": true + }, + { + "type": "collapsed_reference_image", + "named": true + }, + { + "type": "collapsed_reference_link", + "named": true + }, + { + "type": "comment", + "named": true + }, + { + "type": "delete", + "named": true + }, + { + "type": "ellipsis", + "named": true + }, + { + "type": "em_dash", + "named": true + }, + { + "type": "emphasis", + "named": true + }, + { + "type": "en_dash", + "named": true + }, + { + "type": "fixme", + "named": true + }, + { + "type": "footnote_reference", + "named": true + }, + { + "type": "full_reference_image", + "named": true + }, + { + "type": "full_reference_link", + "named": true + }, + { + "type": "hard_line_break", + "named": true + }, + { + "type": "highlighted", + "named": true + }, + { + "type": "inline_attribute", + "named": true + }, + { + "type": "inline_image", + "named": true + }, + { + "type": "inline_link", + "named": true + }, + { + "type": "insert", + "named": true + }, + { + "type": "math", + "named": true + }, + { + "type": "note", + "named": true + }, + { + "type": "quotation_marks", + "named": true + }, + { + "type": "raw_inline", + "named": true + }, + { + "type": "span", + "named": true + }, + { + "type": "strong", + "named": true + }, + { + "type": "subscript", + "named": true + }, + { + "type": "superscript", + "named": true + }, + { + "type": "symbol", + "named": true + }, + { + "type": "todo", + "named": true + }, + { + "type": "verbatim", + "named": true + } + ] + } + }, + { + "type": "delete", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "content", + "named": true + } + ] + } + }, + { + "type": "emphasis", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "content", + "named": true + }, + { + "type": "emphasis_begin", + "named": true + }, + { + "type": "emphasis_end", + "named": true + } + ] + } + }, + { + "type": "emphasis_begin", + "named": true, + "fields": {} + }, + { + "type": "emphasis_end", + "named": true, + "fields": {} + }, + { + "type": "footnote_reference", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "footnote_marker_begin", + "named": true + }, + { + "type": "footnote_marker_end", + "named": true + }, + { + "type": "reference_label", + "named": true + } + ] + } + }, + { + "type": "full_reference_image", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "image_description", + "named": true + }, + { + "type": "link_label", + "named": true + } + ] + } + }, + { + "type": "full_reference_link", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "link_label", + "named": true + }, + { + "type": "link_text", + "named": true + } + ] + } + }, + { + "type": "hard_line_break", + "named": true, + "fields": {} + }, + { + "type": "highlighted", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "content", + "named": true + } + ] + } + }, + { + "type": "image_description", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "autolink", + "named": true + }, + { + "type": "backslash_escape", + "named": true + }, + { + "type": "collapsed_reference_image", + "named": true + }, + { + "type": "collapsed_reference_link", + "named": true + }, + { + "type": "comment", + "named": true + }, + { + "type": "delete", + "named": true + }, + { + "type": "ellipsis", + "named": true + }, + { + "type": "em_dash", + "named": true + }, + { + "type": "emphasis", + "named": true + }, + { + "type": "en_dash", + "named": true + }, + { + "type": "fixme", + "named": true + }, + { + "type": "footnote_reference", + "named": true + }, + { + "type": "full_reference_image", + "named": true + }, + { + "type": "full_reference_link", + "named": true + }, + { + "type": "hard_line_break", + "named": true + }, + { + "type": "highlighted", + "named": true + }, + { + "type": "inline_attribute", + "named": true + }, + { + "type": "inline_image", + "named": true + }, + { + "type": "inline_link", + "named": true + }, + { + "type": "insert", + "named": true + }, + { + "type": "math", + "named": true + }, + { + "type": "note", + "named": true + }, + { + "type": "quotation_marks", + "named": true + }, + { + "type": "raw_inline", + "named": true + }, + { + "type": "span", + "named": true + }, + { + "type": "strong", + "named": true + }, + { + "type": "subscript", + "named": true + }, + { + "type": "superscript", + "named": true + }, + { + "type": "symbol", + "named": true + }, + { + "type": "todo", + "named": true + }, + { + "type": "verbatim", + "named": true + } + ] + } + }, + { + "type": "inline", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "autolink", + "named": true + }, + { + "type": "backslash_escape", + "named": true + }, + { + "type": "collapsed_reference_image", + "named": true + }, + { + "type": "collapsed_reference_link", + "named": true + }, + { + "type": "comment", + "named": true + }, + { + "type": "delete", + "named": true + }, + { + "type": "ellipsis", + "named": true + }, + { + "type": "em_dash", + "named": true + }, + { + "type": "emphasis", + "named": true + }, + { + "type": "en_dash", + "named": true + }, + { + "type": "fixme", + "named": true + }, + { + "type": "footnote_reference", + "named": true + }, + { + "type": "full_reference_image", + "named": true + }, + { + "type": "full_reference_link", + "named": true + }, + { + "type": "hard_line_break", + "named": true + }, + { + "type": "highlighted", + "named": true + }, + { + "type": "inline_attribute", + "named": true + }, + { + "type": "inline_image", + "named": true + }, + { + "type": "inline_link", + "named": true + }, + { + "type": "insert", + "named": true + }, + { + "type": "math", + "named": true + }, + { + "type": "note", + "named": true + }, + { + "type": "quotation_marks", + "named": true + }, + { + "type": "raw_inline", + "named": true + }, + { + "type": "span", + "named": true + }, + { + "type": "strong", + "named": true + }, + { + "type": "subscript", + "named": true + }, + { + "type": "superscript", + "named": true + }, + { + "type": "symbol", + "named": true + }, + { + "type": "todo", + "named": true + }, + { + "type": "verbatim", + "named": true + } + ] + } + }, + { + "type": "inline_attribute", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "args", + "named": true + } + ] + } + }, + { + "type": "inline_image", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "image_description", + "named": true + }, + { + "type": "inline_link_destination", + "named": true + } + ] + } + }, + { + "type": "inline_link", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "inline_link_destination", + "named": true + }, + { + "type": "link_text", + "named": true + } + ] + } + }, + { + "type": "inline_link_destination", + "named": true, + "fields": {} + }, + { + "type": "insert", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "content", + "named": true + } + ] + } + }, + { + "type": "key", + "named": true, + "fields": {} + }, + { + "type": "key_value", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "key", + "named": true + }, + { + "type": "value", + "named": true + } + ] + } + }, + { + "type": "link_label", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "autolink", + "named": true + }, + { + "type": "backslash_escape", + "named": true + }, + { + "type": "collapsed_reference_image", + "named": true + }, + { + "type": "collapsed_reference_link", + "named": true + }, + { + "type": "comment", + "named": true + }, + { + "type": "delete", + "named": true + }, + { + "type": "ellipsis", + "named": true + }, + { + "type": "em_dash", + "named": true + }, + { + "type": "emphasis", + "named": true + }, + { + "type": "en_dash", + "named": true + }, + { + "type": "fixme", + "named": true + }, + { + "type": "footnote_reference", + "named": true + }, + { + "type": "full_reference_image", + "named": true + }, + { + "type": "full_reference_link", + "named": true + }, + { + "type": "hard_line_break", + "named": true + }, + { + "type": "highlighted", + "named": true + }, + { + "type": "inline_attribute", + "named": true + }, + { + "type": "inline_image", + "named": true + }, + { + "type": "inline_link", + "named": true + }, + { + "type": "insert", + "named": true + }, + { + "type": "math", + "named": true + }, + { + "type": "note", + "named": true + }, + { + "type": "quotation_marks", + "named": true + }, + { + "type": "raw_inline", + "named": true + }, + { + "type": "span", + "named": true + }, + { + "type": "strong", + "named": true + }, + { + "type": "subscript", + "named": true + }, + { + "type": "superscript", + "named": true + }, + { + "type": "symbol", + "named": true + }, + { + "type": "todo", + "named": true + }, + { + "type": "verbatim", + "named": true + } + ] + } + }, + { + "type": "link_text", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "autolink", + "named": true + }, + { + "type": "backslash_escape", + "named": true + }, + { + "type": "collapsed_reference_image", + "named": true + }, + { + "type": "collapsed_reference_link", + "named": true + }, + { + "type": "comment", + "named": true + }, + { + "type": "delete", + "named": true + }, + { + "type": "ellipsis", + "named": true + }, + { + "type": "em_dash", + "named": true + }, + { + "type": "emphasis", + "named": true + }, + { + "type": "en_dash", + "named": true + }, + { + "type": "fixme", + "named": true + }, + { + "type": "footnote_reference", + "named": true + }, + { + "type": "full_reference_image", + "named": true + }, + { + "type": "full_reference_link", + "named": true + }, + { + "type": "hard_line_break", + "named": true + }, + { + "type": "highlighted", + "named": true + }, + { + "type": "inline_attribute", + "named": true + }, + { + "type": "inline_image", + "named": true + }, + { + "type": "inline_link", + "named": true + }, + { + "type": "insert", + "named": true + }, + { + "type": "math", + "named": true + }, + { + "type": "note", + "named": true + }, + { + "type": "quotation_marks", + "named": true + }, + { + "type": "raw_inline", + "named": true + }, + { + "type": "span", + "named": true + }, + { + "type": "strong", + "named": true + }, + { + "type": "subscript", + "named": true + }, + { + "type": "superscript", + "named": true + }, + { + "type": "symbol", + "named": true + }, + { + "type": "todo", + "named": true + }, + { + "type": "verbatim", + "named": true + } + ] + } + }, + { + "type": "math", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "content", + "named": true + }, + { + "type": "math_marker", + "named": true + }, + { + "type": "math_marker_begin", + "named": true + }, + { + "type": "math_marker_end", + "named": true + } + ] + } + }, + { + "type": "math_marker_begin", + "named": true, + "fields": {} + }, + { + "type": "math_marker_end", + "named": true, + "fields": {} + }, + { + "type": "note", + "named": true, + "fields": {} + }, + { + "type": "raw_inline", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "content", + "named": true + }, + { + "type": "raw_inline_attribute", + "named": true + }, + { + "type": "raw_inline_marker_begin", + "named": true + }, + { + "type": "raw_inline_marker_end", + "named": true + } + ] + } + }, + { + "type": "raw_inline_attribute", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "language", + "named": true + } + ] + } + }, + { + "type": "raw_inline_marker_begin", + "named": true, + "fields": {} + }, + { + "type": "raw_inline_marker_end", + "named": true, + "fields": {} + }, + { + "type": "reference_label", + "named": true, + "fields": {} + }, + { + "type": "span", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "autolink", + "named": true + }, + { + "type": "backslash_escape", + "named": true + }, + { + "type": "collapsed_reference_image", + "named": true + }, + { + "type": "collapsed_reference_link", + "named": true + }, + { + "type": "comment", + "named": true + }, + { + "type": "delete", + "named": true + }, + { + "type": "ellipsis", + "named": true + }, + { + "type": "em_dash", + "named": true + }, + { + "type": "emphasis", + "named": true + }, + { + "type": "en_dash", + "named": true + }, + { + "type": "fixme", + "named": true + }, + { + "type": "footnote_reference", + "named": true + }, + { + "type": "full_reference_image", + "named": true + }, + { + "type": "full_reference_link", + "named": true + }, + { + "type": "hard_line_break", + "named": true + }, + { + "type": "highlighted", + "named": true + }, + { + "type": "inline_attribute", + "named": true + }, + { + "type": "inline_image", + "named": true + }, + { + "type": "inline_link", + "named": true + }, + { + "type": "insert", + "named": true + }, + { + "type": "math", + "named": true + }, + { + "type": "note", + "named": true + }, + { + "type": "quotation_marks", + "named": true + }, + { + "type": "raw_inline", + "named": true + }, + { + "type": "span", + "named": true + }, + { + "type": "strong", + "named": true + }, + { + "type": "subscript", + "named": true + }, + { + "type": "superscript", + "named": true + }, + { + "type": "symbol", + "named": true + }, + { + "type": "todo", + "named": true + }, + { + "type": "verbatim", + "named": true + } + ] + } + }, + { + "type": "strong", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "content", + "named": true + }, + { + "type": "strong_begin", + "named": true + }, + { + "type": "strong_end", + "named": true + } + ] + } + }, + { + "type": "strong_begin", + "named": true, + "fields": {} + }, + { + "type": "strong_end", + "named": true, + "fields": {} + }, + { + "type": "subscript", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "content", + "named": true + } + ] + } + }, + { + "type": "superscript", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "content", + "named": true + } + ] + } + }, + { + "type": "todo", + "named": true, + "fields": {} + }, + { + "type": "value", + "named": true, + "fields": {} + }, + { + "type": "verbatim", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "content", + "named": true + }, + { + "type": "verbatim_marker_begin", + "named": true + }, + { + "type": "verbatim_marker_end", + "named": true + } + ] + } + }, + { + "type": "verbatim_marker_begin", + "named": true, + "fields": {} + }, + { + "type": "verbatim_marker_end", + "named": true, + "fields": {} + }, + { + "type": " ", + "named": false + }, + { + "type": "![", + "named": false + }, + { + "type": "\"", + "named": false + }, + { + "type": "$", + "named": false + }, + { + "type": "%", + "named": false + }, + { + "type": "(", + "named": false + }, + { + "type": ")", + "named": false + }, + { + "type": "*", + "named": false + }, + { + "type": "+}", + "named": false + }, + { + "type": "-}", + "named": false + }, + { + "type": ".", + "named": false + }, + { + "type": "<", + "named": false + }, + { + "type": "=", + "named": false + }, + { + "type": "=}", + "named": false + }, + { + "type": ">", + "named": false + }, + { + "type": "INFO", + "named": false + }, + { + "type": "NOTE", + "named": false + }, + { + "type": "TODO", + "named": false + }, + { + "type": "WIP", + "named": false + }, + { + "type": "XXX", + "named": false + }, + { + "type": "[", + "named": false + }, + { + "type": "[]", + "named": false + }, + { + "type": "[^", + "named": false + }, + { + "type": "\\", + "named": false + }, + { + "type": "]", + "named": false + }, + { + "type": "^", + "named": false + }, + { + "type": "^}", + "named": false + }, + { + "type": "_", + "named": false + }, + { + "type": "`", + "named": false + }, + { + "type": "backslash_escape", + "named": true + }, + { + "type": "ellipsis", + "named": true + }, + { + "type": "em_dash", + "named": true + }, + { + "type": "en_dash", + "named": true + }, + { + "type": "fixme", + "named": true + }, + { + "type": "footnote_marker_begin", + "named": true + }, + { + "type": "footnote_marker_end", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "language", + "named": true + }, + { + "type": "math_marker", + "named": true + }, + { + "type": "quotation_marks", + "named": true + }, + { + "type": "symbol", + "named": true + }, + { + "type": "{", + "named": false + }, + { + "type": "{*", + "named": false + }, + { + "type": "{+", + "named": false + }, + { + "type": "{-", + "named": false + }, + { + "type": "{=", + "named": false + }, + { + "type": "{^", + "named": false + }, + { + "type": "{_", + "named": false + }, + { + "type": "{~", + "named": false + }, + { + "type": "|", + "named": false + }, + { + "type": "}", + "named": false + }, + { + "type": "~", + "named": false + }, + { + "type": "~}", + "named": false + } +] \ No newline at end of file diff --git a/tree-sitter-djot-inline/src/parser.c b/tree-sitter-djot-inline/src/parser.c new file mode 100644 index 0000000..7ff4e1d --- /dev/null +++ b/tree-sitter-djot-inline/src/parser.c @@ -0,0 +1,41026 @@ +#include "tree_sitter/parser.h" + +#if defined(__GNUC__) || defined(__clang__) +#pragma GCC diagnostic ignored "-Wmissing-field-initializers" +#endif + +#ifdef _MSC_VER +#pragma optimize("", off) +#elif defined(__clang__) +#pragma clang optimize off +#elif defined(__GNUC__) +#pragma GCC optimize ("O0") +#endif + +#define LANGUAGE_VERSION 14 +#define STATE_COUNT 913 +#define LARGE_STATE_COUNT 122 +#define SYMBOL_COUNT 124 +#define ALIAS_COUNT 10 +#define TOKEN_COUNT 67 +#define EXTERNAL_TOKEN_COUNT 0 +#define FIELD_COUNT 0 +#define MAX_ALIAS_SEQUENCE_LENGTH 4 +#define PRODUCTION_ID_COUNT 10 + +enum ts_symbol_identifiers { + anon_sym_LBRACE = 1, + anon_sym_RBRACE = 2, + anon_sym_LBRACE_ = 3, + anon_sym_SPACE = 4, + anon_sym__ = 5, + aux_sym_emphasis_end_token1 = 6, + anon_sym_LBRACE_STAR = 7, + anon_sym_STAR = 8, + aux_sym_strong_end_token1 = 9, + anon_sym_BSLASH = 10, + sym_quotation_marks = 11, + sym_ellipsis = 12, + sym_em_dash = 13, + sym_en_dash = 14, + sym_backslash_escape = 15, + anon_sym_LT = 16, + aux_sym_autolink_token1 = 17, + anon_sym_GT = 18, + anon_sym_LBRACE_EQ = 19, + anon_sym_EQ_RBRACE = 20, + anon_sym_LBRACE_PLUS = 21, + anon_sym_PLUS_RBRACE = 22, + anon_sym_LBRACE_DASH = 23, + anon_sym_DASH_RBRACE = 24, + sym_symbol = 25, + anon_sym_LBRACE_CARET = 26, + anon_sym_CARET = 27, + anon_sym_CARET_RBRACE = 28, + anon_sym_LBRACE_TILDE = 29, + anon_sym_TILDE = 30, + anon_sym_TILDE_RBRACE = 31, + anon_sym_LBRACK_CARET = 32, + anon_sym_RBRACK = 33, + sym__id = 34, + anon_sym_LBRACK_RBRACK = 35, + anon_sym_BANG_LBRACK = 36, + anon_sym_LBRACK = 37, + anon_sym_RBRACK2 = 38, + anon_sym_LPAREN = 39, + aux_sym_inline_link_destination_token1 = 40, + anon_sym_RPAREN = 41, + anon_sym_LBRACE2 = 42, + anon_sym_PERCENT = 43, + aux_sym__comment_with_newline_token1 = 44, + anon_sym_LBRACE_EQ2 = 45, + anon_sym_DOLLAR = 46, + anon_sym_TODO = 47, + anon_sym_WIP = 48, + anon_sym_NOTE = 49, + anon_sym_INFO = 50, + anon_sym_XXX = 51, + sym_fixme = 52, + anon_sym_PIPE = 53, + anon_sym_BQUOTE = 54, + sym__verbatim_content = 55, + sym_language = 56, + sym__whitespace = 57, + sym__whitespace1 = 58, + sym__newline = 59, + aux_sym__text_token1 = 60, + anon_sym_DOT = 61, + sym_identifier = 62, + anon_sym_EQ = 63, + anon_sym_DQUOTE = 64, + aux_sym_value_token1 = 65, + aux_sym_value_token2 = 66, + sym_inline = 67, + sym__inline = 68, + sym__element = 69, + sym_inline_attribute = 70, + sym_emphasis = 71, + sym_emphasis_begin = 72, + sym_emphasis_end = 73, + sym_strong = 74, + sym_strong_begin = 75, + sym_strong_end = 76, + sym__hard_line_break = 77, + sym_hard_line_break = 78, + sym__smart_punctuation = 79, + sym_autolink = 80, + sym_highlighted = 81, + sym_insert = 82, + sym_delete = 83, + sym_superscript = 84, + sym_subscript = 85, + sym_footnote_reference = 86, + sym_reference_label = 87, + sym__image = 88, + sym_full_reference_image = 89, + sym_collapsed_reference_image = 90, + sym_inline_image = 91, + sym__image_description = 92, + sym__link = 93, + sym_full_reference_link = 94, + sym_collapsed_reference_link = 95, + sym_inline_link = 96, + sym_link_text = 97, + sym__link_label = 98, + sym_inline_link_destination = 99, + sym_comment = 100, + sym__comment_with_spaces = 101, + sym_span = 102, + sym__comment_with_newline = 103, + sym_raw_inline = 104, + sym_raw_inline_attribute = 105, + sym_math = 106, + sym_verbatim = 107, + sym__todo_highlights = 108, + sym_todo = 109, + sym_note = 110, + sym__symbol_fallback = 111, + sym__verbatim_begin = 112, + sym__verbatim_end = 113, + aux_sym__text = 114, + sym_class_name = 115, + sym_class = 116, + sym_key_value = 117, + sym_key = 118, + sym_value = 119, + aux_sym__inline_repeat1 = 120, + aux_sym_inline_attribute_repeat1 = 121, + aux_sym_emphasis_begin_repeat1 = 122, + aux_sym__comment_with_newline_repeat1 = 123, + alias_sym_args = 124, + alias_sym_footnote_marker_begin = 125, + alias_sym_footnote_marker_end = 126, + alias_sym_image_description = 127, + alias_sym_link_label = 128, + alias_sym_math_marker = 129, + alias_sym_math_marker_begin = 130, + alias_sym_math_marker_end = 131, + alias_sym_verbatim_marker_begin = 132, + alias_sym_verbatim_marker_end = 133, +}; + +static const char * const ts_symbol_names[] = { + [ts_builtin_sym_end] = "end", + [anon_sym_LBRACE] = "{", + [anon_sym_RBRACE] = "}", + [anon_sym_LBRACE_] = "{_", + [anon_sym_SPACE] = " ", + [anon_sym__] = "_", + [aux_sym_emphasis_end_token1] = "emphasis_end_token1", + [anon_sym_LBRACE_STAR] = "{*", + [anon_sym_STAR] = "*", + [aux_sym_strong_end_token1] = "strong_end_token1", + [anon_sym_BSLASH] = "\\", + [sym_quotation_marks] = "quotation_marks", + [sym_ellipsis] = "ellipsis", + [sym_em_dash] = "em_dash", + [sym_en_dash] = "en_dash", + [sym_backslash_escape] = "backslash_escape", + [anon_sym_LT] = "<", + [aux_sym_autolink_token1] = "autolink_token1", + [anon_sym_GT] = ">", + [anon_sym_LBRACE_EQ] = "{=", + [anon_sym_EQ_RBRACE] = "=}", + [anon_sym_LBRACE_PLUS] = "{+", + [anon_sym_PLUS_RBRACE] = "+}", + [anon_sym_LBRACE_DASH] = "{-", + [anon_sym_DASH_RBRACE] = "-}", + [sym_symbol] = "symbol", + [anon_sym_LBRACE_CARET] = "{^", + [anon_sym_CARET] = "^", + [anon_sym_CARET_RBRACE] = "^}", + [anon_sym_LBRACE_TILDE] = "{~", + [anon_sym_TILDE] = "~", + [anon_sym_TILDE_RBRACE] = "~}", + [anon_sym_LBRACK_CARET] = "[^", + [anon_sym_RBRACK] = "]", + [sym__id] = "_id", + [anon_sym_LBRACK_RBRACK] = "[]", + [anon_sym_BANG_LBRACK] = "![", + [anon_sym_LBRACK] = "[", + [anon_sym_RBRACK2] = "]", + [anon_sym_LPAREN] = "(", + [aux_sym_inline_link_destination_token1] = "inline_link_destination_token1", + [anon_sym_RPAREN] = ")", + [anon_sym_LBRACE2] = "{", + [anon_sym_PERCENT] = "%", + [aux_sym__comment_with_newline_token1] = "_comment_with_newline_token1", + [anon_sym_LBRACE_EQ2] = "{=", + [anon_sym_DOLLAR] = "$", + [anon_sym_TODO] = "TODO", + [anon_sym_WIP] = "WIP", + [anon_sym_NOTE] = "NOTE", + [anon_sym_INFO] = "INFO", + [anon_sym_XXX] = "XXX", + [sym_fixme] = "fixme", + [anon_sym_PIPE] = "|", + [anon_sym_BQUOTE] = "`", + [sym__verbatim_content] = "content", + [sym_language] = "language", + [sym__whitespace] = "_whitespace", + [sym__whitespace1] = "_whitespace1", + [sym__newline] = "_newline", + [aux_sym__text_token1] = "_text_token1", + [anon_sym_DOT] = ".", + [sym_identifier] = "identifier", + [anon_sym_EQ] = "=", + [anon_sym_DQUOTE] = "\"", + [aux_sym_value_token1] = "value_token1", + [aux_sym_value_token2] = "value_token2", + [sym_inline] = "inline", + [sym__inline] = "_inline", + [sym__element] = "_element", + [sym_inline_attribute] = "inline_attribute", + [sym_emphasis] = "emphasis", + [sym_emphasis_begin] = "emphasis_begin", + [sym_emphasis_end] = "emphasis_end", + [sym_strong] = "strong", + [sym_strong_begin] = "strong_begin", + [sym_strong_end] = "strong_end", + [sym__hard_line_break] = "_hard_line_break", + [sym_hard_line_break] = "hard_line_break", + [sym__smart_punctuation] = "_smart_punctuation", + [sym_autolink] = "autolink", + [sym_highlighted] = "highlighted", + [sym_insert] = "insert", + [sym_delete] = "delete", + [sym_superscript] = "superscript", + [sym_subscript] = "subscript", + [sym_footnote_reference] = "footnote_reference", + [sym_reference_label] = "reference_label", + [sym__image] = "_image", + [sym_full_reference_image] = "full_reference_image", + [sym_collapsed_reference_image] = "collapsed_reference_image", + [sym_inline_image] = "inline_image", + [sym__image_description] = "_image_description", + [sym__link] = "_link", + [sym_full_reference_link] = "full_reference_link", + [sym_collapsed_reference_link] = "collapsed_reference_link", + [sym_inline_link] = "inline_link", + [sym_link_text] = "link_text", + [sym__link_label] = "_link_label", + [sym_inline_link_destination] = "inline_link_destination", + [sym_comment] = "comment", + [sym__comment_with_spaces] = "_comment_with_spaces", + [sym_span] = "span", + [sym__comment_with_newline] = "_comment_with_newline", + [sym_raw_inline] = "raw_inline", + [sym_raw_inline_attribute] = "raw_inline_attribute", + [sym_math] = "math", + [sym_verbatim] = "verbatim", + [sym__todo_highlights] = "_todo_highlights", + [sym_todo] = "todo", + [sym_note] = "note", + [sym__symbol_fallback] = "_symbol_fallback", + [sym__verbatim_begin] = "raw_inline_marker_begin", + [sym__verbatim_end] = "raw_inline_marker_end", + [aux_sym__text] = "_text", + [sym_class_name] = "class", + [sym_class] = "class", + [sym_key_value] = "key_value", + [sym_key] = "key", + [sym_value] = "value", + [aux_sym__inline_repeat1] = "_inline_repeat1", + [aux_sym_inline_attribute_repeat1] = "inline_attribute_repeat1", + [aux_sym_emphasis_begin_repeat1] = "emphasis_begin_repeat1", + [aux_sym__comment_with_newline_repeat1] = "_comment_with_newline_repeat1", + [alias_sym_args] = "args", + [alias_sym_footnote_marker_begin] = "footnote_marker_begin", + [alias_sym_footnote_marker_end] = "footnote_marker_end", + [alias_sym_image_description] = "image_description", + [alias_sym_link_label] = "link_label", + [alias_sym_math_marker] = "math_marker", + [alias_sym_math_marker_begin] = "math_marker_begin", + [alias_sym_math_marker_end] = "math_marker_end", + [alias_sym_verbatim_marker_begin] = "verbatim_marker_begin", + [alias_sym_verbatim_marker_end] = "verbatim_marker_end", +}; + +static const TSSymbol ts_symbol_map[] = { + [ts_builtin_sym_end] = ts_builtin_sym_end, + [anon_sym_LBRACE] = anon_sym_LBRACE, + [anon_sym_RBRACE] = anon_sym_RBRACE, + [anon_sym_LBRACE_] = anon_sym_LBRACE_, + [anon_sym_SPACE] = anon_sym_SPACE, + [anon_sym__] = anon_sym__, + [aux_sym_emphasis_end_token1] = aux_sym_emphasis_end_token1, + [anon_sym_LBRACE_STAR] = anon_sym_LBRACE_STAR, + [anon_sym_STAR] = anon_sym_STAR, + [aux_sym_strong_end_token1] = aux_sym_strong_end_token1, + [anon_sym_BSLASH] = anon_sym_BSLASH, + [sym_quotation_marks] = sym_quotation_marks, + [sym_ellipsis] = sym_ellipsis, + [sym_em_dash] = sym_em_dash, + [sym_en_dash] = sym_en_dash, + [sym_backslash_escape] = sym_backslash_escape, + [anon_sym_LT] = anon_sym_LT, + [aux_sym_autolink_token1] = aux_sym_autolink_token1, + [anon_sym_GT] = anon_sym_GT, + [anon_sym_LBRACE_EQ] = anon_sym_LBRACE_EQ, + [anon_sym_EQ_RBRACE] = anon_sym_EQ_RBRACE, + [anon_sym_LBRACE_PLUS] = anon_sym_LBRACE_PLUS, + [anon_sym_PLUS_RBRACE] = anon_sym_PLUS_RBRACE, + [anon_sym_LBRACE_DASH] = anon_sym_LBRACE_DASH, + [anon_sym_DASH_RBRACE] = anon_sym_DASH_RBRACE, + [sym_symbol] = sym_symbol, + [anon_sym_LBRACE_CARET] = anon_sym_LBRACE_CARET, + [anon_sym_CARET] = anon_sym_CARET, + [anon_sym_CARET_RBRACE] = anon_sym_CARET_RBRACE, + [anon_sym_LBRACE_TILDE] = anon_sym_LBRACE_TILDE, + [anon_sym_TILDE] = anon_sym_TILDE, + [anon_sym_TILDE_RBRACE] = anon_sym_TILDE_RBRACE, + [anon_sym_LBRACK_CARET] = anon_sym_LBRACK_CARET, + [anon_sym_RBRACK] = anon_sym_RBRACK, + [sym__id] = sym__id, + [anon_sym_LBRACK_RBRACK] = anon_sym_LBRACK_RBRACK, + [anon_sym_BANG_LBRACK] = anon_sym_BANG_LBRACK, + [anon_sym_LBRACK] = anon_sym_LBRACK, + [anon_sym_RBRACK2] = anon_sym_RBRACK, + [anon_sym_LPAREN] = anon_sym_LPAREN, + [aux_sym_inline_link_destination_token1] = aux_sym_inline_link_destination_token1, + [anon_sym_RPAREN] = anon_sym_RPAREN, + [anon_sym_LBRACE2] = anon_sym_LBRACE, + [anon_sym_PERCENT] = anon_sym_PERCENT, + [aux_sym__comment_with_newline_token1] = aux_sym__comment_with_newline_token1, + [anon_sym_LBRACE_EQ2] = anon_sym_LBRACE_EQ, + [anon_sym_DOLLAR] = anon_sym_DOLLAR, + [anon_sym_TODO] = anon_sym_TODO, + [anon_sym_WIP] = anon_sym_WIP, + [anon_sym_NOTE] = anon_sym_NOTE, + [anon_sym_INFO] = anon_sym_INFO, + [anon_sym_XXX] = anon_sym_XXX, + [sym_fixme] = sym_fixme, + [anon_sym_PIPE] = anon_sym_PIPE, + [anon_sym_BQUOTE] = anon_sym_BQUOTE, + [sym__verbatim_content] = sym__verbatim_content, + [sym_language] = sym_language, + [sym__whitespace] = sym__whitespace, + [sym__whitespace1] = sym__whitespace1, + [sym__newline] = sym__newline, + [aux_sym__text_token1] = aux_sym__text_token1, + [anon_sym_DOT] = anon_sym_DOT, + [sym_identifier] = sym_identifier, + [anon_sym_EQ] = anon_sym_EQ, + [anon_sym_DQUOTE] = anon_sym_DQUOTE, + [aux_sym_value_token1] = aux_sym_value_token1, + [aux_sym_value_token2] = aux_sym_value_token2, + [sym_inline] = sym_inline, + [sym__inline] = sym__inline, + [sym__element] = sym__element, + [sym_inline_attribute] = sym_inline_attribute, + [sym_emphasis] = sym_emphasis, + [sym_emphasis_begin] = sym_emphasis_begin, + [sym_emphasis_end] = sym_emphasis_end, + [sym_strong] = sym_strong, + [sym_strong_begin] = sym_strong_begin, + [sym_strong_end] = sym_strong_end, + [sym__hard_line_break] = sym__hard_line_break, + [sym_hard_line_break] = sym_hard_line_break, + [sym__smart_punctuation] = sym__smart_punctuation, + [sym_autolink] = sym_autolink, + [sym_highlighted] = sym_highlighted, + [sym_insert] = sym_insert, + [sym_delete] = sym_delete, + [sym_superscript] = sym_superscript, + [sym_subscript] = sym_subscript, + [sym_footnote_reference] = sym_footnote_reference, + [sym_reference_label] = sym_reference_label, + [sym__image] = sym__image, + [sym_full_reference_image] = sym_full_reference_image, + [sym_collapsed_reference_image] = sym_collapsed_reference_image, + [sym_inline_image] = sym_inline_image, + [sym__image_description] = sym__image_description, + [sym__link] = sym__link, + [sym_full_reference_link] = sym_full_reference_link, + [sym_collapsed_reference_link] = sym_collapsed_reference_link, + [sym_inline_link] = sym_inline_link, + [sym_link_text] = sym_link_text, + [sym__link_label] = sym__link_label, + [sym_inline_link_destination] = sym_inline_link_destination, + [sym_comment] = sym_comment, + [sym__comment_with_spaces] = sym__comment_with_spaces, + [sym_span] = sym_span, + [sym__comment_with_newline] = sym__comment_with_newline, + [sym_raw_inline] = sym_raw_inline, + [sym_raw_inline_attribute] = sym_raw_inline_attribute, + [sym_math] = sym_math, + [sym_verbatim] = sym_verbatim, + [sym__todo_highlights] = sym__todo_highlights, + [sym_todo] = sym_todo, + [sym_note] = sym_note, + [sym__symbol_fallback] = sym__symbol_fallback, + [sym__verbatim_begin] = sym__verbatim_begin, + [sym__verbatim_end] = sym__verbatim_end, + [aux_sym__text] = aux_sym__text, + [sym_class_name] = sym_class_name, + [sym_class] = sym_class, + [sym_key_value] = sym_key_value, + [sym_key] = sym_key, + [sym_value] = sym_value, + [aux_sym__inline_repeat1] = aux_sym__inline_repeat1, + [aux_sym_inline_attribute_repeat1] = aux_sym_inline_attribute_repeat1, + [aux_sym_emphasis_begin_repeat1] = aux_sym_emphasis_begin_repeat1, + [aux_sym__comment_with_newline_repeat1] = aux_sym__comment_with_newline_repeat1, + [alias_sym_args] = alias_sym_args, + [alias_sym_footnote_marker_begin] = alias_sym_footnote_marker_begin, + [alias_sym_footnote_marker_end] = alias_sym_footnote_marker_end, + [alias_sym_image_description] = alias_sym_image_description, + [alias_sym_link_label] = alias_sym_link_label, + [alias_sym_math_marker] = alias_sym_math_marker, + [alias_sym_math_marker_begin] = alias_sym_math_marker_begin, + [alias_sym_math_marker_end] = alias_sym_math_marker_end, + [alias_sym_verbatim_marker_begin] = alias_sym_verbatim_marker_begin, + [alias_sym_verbatim_marker_end] = alias_sym_verbatim_marker_end, +}; + +static const TSSymbolMetadata ts_symbol_metadata[] = { + [ts_builtin_sym_end] = { + .visible = false, + .named = true, + }, + [anon_sym_LBRACE] = { + .visible = true, + .named = false, + }, + [anon_sym_RBRACE] = { + .visible = true, + .named = false, + }, + [anon_sym_LBRACE_] = { + .visible = true, + .named = false, + }, + [anon_sym_SPACE] = { + .visible = true, + .named = false, + }, + [anon_sym__] = { + .visible = true, + .named = false, + }, + [aux_sym_emphasis_end_token1] = { + .visible = false, + .named = false, + }, + [anon_sym_LBRACE_STAR] = { + .visible = true, + .named = false, + }, + [anon_sym_STAR] = { + .visible = true, + .named = false, + }, + [aux_sym_strong_end_token1] = { + .visible = false, + .named = false, + }, + [anon_sym_BSLASH] = { + .visible = true, + .named = false, + }, + [sym_quotation_marks] = { + .visible = true, + .named = true, + }, + [sym_ellipsis] = { + .visible = true, + .named = true, + }, + [sym_em_dash] = { + .visible = true, + .named = true, + }, + [sym_en_dash] = { + .visible = true, + .named = true, + }, + [sym_backslash_escape] = { + .visible = true, + .named = true, + }, + [anon_sym_LT] = { + .visible = true, + .named = false, + }, + [aux_sym_autolink_token1] = { + .visible = false, + .named = false, + }, + [anon_sym_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_LBRACE_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_EQ_RBRACE] = { + .visible = true, + .named = false, + }, + [anon_sym_LBRACE_PLUS] = { + .visible = true, + .named = false, + }, + [anon_sym_PLUS_RBRACE] = { + .visible = true, + .named = false, + }, + [anon_sym_LBRACE_DASH] = { + .visible = true, + .named = false, + }, + [anon_sym_DASH_RBRACE] = { + .visible = true, + .named = false, + }, + [sym_symbol] = { + .visible = true, + .named = true, + }, + [anon_sym_LBRACE_CARET] = { + .visible = true, + .named = false, + }, + [anon_sym_CARET] = { + .visible = true, + .named = false, + }, + [anon_sym_CARET_RBRACE] = { + .visible = true, + .named = false, + }, + [anon_sym_LBRACE_TILDE] = { + .visible = true, + .named = false, + }, + [anon_sym_TILDE] = { + .visible = true, + .named = false, + }, + [anon_sym_TILDE_RBRACE] = { + .visible = true, + .named = false, + }, + [anon_sym_LBRACK_CARET] = { + .visible = true, + .named = false, + }, + [anon_sym_RBRACK] = { + .visible = true, + .named = false, + }, + [sym__id] = { + .visible = false, + .named = true, + }, + [anon_sym_LBRACK_RBRACK] = { + .visible = true, + .named = false, + }, + [anon_sym_BANG_LBRACK] = { + .visible = true, + .named = false, + }, + [anon_sym_LBRACK] = { + .visible = true, + .named = false, + }, + [anon_sym_RBRACK2] = { + .visible = true, + .named = false, + }, + [anon_sym_LPAREN] = { + .visible = true, + .named = false, + }, + [aux_sym_inline_link_destination_token1] = { + .visible = false, + .named = false, + }, + [anon_sym_RPAREN] = { + .visible = true, + .named = false, + }, + [anon_sym_LBRACE2] = { + .visible = true, + .named = false, + }, + [anon_sym_PERCENT] = { + .visible = true, + .named = false, + }, + [aux_sym__comment_with_newline_token1] = { + .visible = false, + .named = false, + }, + [anon_sym_LBRACE_EQ2] = { + .visible = true, + .named = false, + }, + [anon_sym_DOLLAR] = { + .visible = true, + .named = false, + }, + [anon_sym_TODO] = { + .visible = true, + .named = false, + }, + [anon_sym_WIP] = { + .visible = true, + .named = false, + }, + [anon_sym_NOTE] = { + .visible = true, + .named = false, + }, + [anon_sym_INFO] = { + .visible = true, + .named = false, + }, + [anon_sym_XXX] = { + .visible = true, + .named = false, + }, + [sym_fixme] = { + .visible = true, + .named = true, + }, + [anon_sym_PIPE] = { + .visible = true, + .named = false, + }, + [anon_sym_BQUOTE] = { + .visible = true, + .named = false, + }, + [sym__verbatim_content] = { + .visible = true, + .named = true, + }, + [sym_language] = { + .visible = true, + .named = true, + }, + [sym__whitespace] = { + .visible = false, + .named = true, + }, + [sym__whitespace1] = { + .visible = false, + .named = true, + }, + [sym__newline] = { + .visible = false, + .named = true, + }, + [aux_sym__text_token1] = { + .visible = false, + .named = false, + }, + [anon_sym_DOT] = { + .visible = true, + .named = false, + }, + [sym_identifier] = { + .visible = true, + .named = true, + }, + [anon_sym_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_DQUOTE] = { + .visible = true, + .named = false, + }, + [aux_sym_value_token1] = { + .visible = false, + .named = false, + }, + [aux_sym_value_token2] = { + .visible = false, + .named = false, + }, + [sym_inline] = { + .visible = true, + .named = true, + }, + [sym__inline] = { + .visible = false, + .named = true, + }, + [sym__element] = { + .visible = false, + .named = true, + }, + [sym_inline_attribute] = { + .visible = true, + .named = true, + }, + [sym_emphasis] = { + .visible = true, + .named = true, + }, + [sym_emphasis_begin] = { + .visible = true, + .named = true, + }, + [sym_emphasis_end] = { + .visible = true, + .named = true, + }, + [sym_strong] = { + .visible = true, + .named = true, + }, + [sym_strong_begin] = { + .visible = true, + .named = true, + }, + [sym_strong_end] = { + .visible = true, + .named = true, + }, + [sym__hard_line_break] = { + .visible = false, + .named = true, + }, + [sym_hard_line_break] = { + .visible = true, + .named = true, + }, + [sym__smart_punctuation] = { + .visible = false, + .named = true, + }, + [sym_autolink] = { + .visible = true, + .named = true, + }, + [sym_highlighted] = { + .visible = true, + .named = true, + }, + [sym_insert] = { + .visible = true, + .named = true, + }, + [sym_delete] = { + .visible = true, + .named = true, + }, + [sym_superscript] = { + .visible = true, + .named = true, + }, + [sym_subscript] = { + .visible = true, + .named = true, + }, + [sym_footnote_reference] = { + .visible = true, + .named = true, + }, + [sym_reference_label] = { + .visible = true, + .named = true, + }, + [sym__image] = { + .visible = false, + .named = true, + }, + [sym_full_reference_image] = { + .visible = true, + .named = true, + }, + [sym_collapsed_reference_image] = { + .visible = true, + .named = true, + }, + [sym_inline_image] = { + .visible = true, + .named = true, + }, + [sym__image_description] = { + .visible = false, + .named = true, + }, + [sym__link] = { + .visible = false, + .named = true, + }, + [sym_full_reference_link] = { + .visible = true, + .named = true, + }, + [sym_collapsed_reference_link] = { + .visible = true, + .named = true, + }, + [sym_inline_link] = { + .visible = true, + .named = true, + }, + [sym_link_text] = { + .visible = true, + .named = true, + }, + [sym__link_label] = { + .visible = false, + .named = true, + }, + [sym_inline_link_destination] = { + .visible = true, + .named = true, + }, + [sym_comment] = { + .visible = true, + .named = true, + }, + [sym__comment_with_spaces] = { + .visible = false, + .named = true, + }, + [sym_span] = { + .visible = true, + .named = true, + }, + [sym__comment_with_newline] = { + .visible = false, + .named = true, + }, + [sym_raw_inline] = { + .visible = true, + .named = true, + }, + [sym_raw_inline_attribute] = { + .visible = true, + .named = true, + }, + [sym_math] = { + .visible = true, + .named = true, + }, + [sym_verbatim] = { + .visible = true, + .named = true, + }, + [sym__todo_highlights] = { + .visible = false, + .named = true, + }, + [sym_todo] = { + .visible = true, + .named = true, + }, + [sym_note] = { + .visible = true, + .named = true, + }, + [sym__symbol_fallback] = { + .visible = false, + .named = true, + }, + [sym__verbatim_begin] = { + .visible = true, + .named = true, + }, + [sym__verbatim_end] = { + .visible = true, + .named = true, + }, + [aux_sym__text] = { + .visible = false, + .named = false, + }, + [sym_class_name] = { + .visible = true, + .named = false, + }, + [sym_class] = { + .visible = true, + .named = true, + }, + [sym_key_value] = { + .visible = true, + .named = true, + }, + [sym_key] = { + .visible = true, + .named = true, + }, + [sym_value] = { + .visible = true, + .named = true, + }, + [aux_sym__inline_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_inline_attribute_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_emphasis_begin_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__comment_with_newline_repeat1] = { + .visible = false, + .named = false, + }, + [alias_sym_args] = { + .visible = true, + .named = true, + }, + [alias_sym_footnote_marker_begin] = { + .visible = true, + .named = true, + }, + [alias_sym_footnote_marker_end] = { + .visible = true, + .named = true, + }, + [alias_sym_image_description] = { + .visible = true, + .named = true, + }, + [alias_sym_link_label] = { + .visible = true, + .named = true, + }, + [alias_sym_math_marker] = { + .visible = true, + .named = true, + }, + [alias_sym_math_marker_begin] = { + .visible = true, + .named = true, + }, + [alias_sym_math_marker_end] = { + .visible = true, + .named = true, + }, + [alias_sym_verbatim_marker_begin] = { + .visible = true, + .named = true, + }, + [alias_sym_verbatim_marker_end] = { + .visible = true, + .named = true, + }, +}; + +static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { + [0] = {0}, + [1] = { + [0] = sym_comment, + }, + [2] = { + [1] = sym__verbatim_content, + }, + [3] = { + [0] = alias_sym_footnote_marker_begin, + [2] = alias_sym_footnote_marker_end, + }, + [4] = { + [1] = alias_sym_image_description, + }, + [5] = { + [0] = alias_sym_verbatim_marker_begin, + [2] = alias_sym_verbatim_marker_end, + }, + [6] = { + [1] = alias_sym_args, + }, + [7] = { + [0] = alias_sym_math_marker, + [1] = alias_sym_math_marker_begin, + [3] = alias_sym_math_marker_end, + }, + [8] = { + [1] = alias_sym_link_label, + }, + [9] = { + [2] = sym__verbatim_content, + }, +}; + +static const uint16_t ts_non_terminal_alias_map[] = { + sym__inline, 4, + sym__inline, + alias_sym_image_description, + alias_sym_link_label, + sym__verbatim_content, + sym__comment_with_newline, 2, + sym__comment_with_newline, + sym_comment, + sym__verbatim_begin, 3, + sym__verbatim_begin, + alias_sym_math_marker_begin, + alias_sym_verbatim_marker_begin, + sym__verbatim_end, 3, + sym__verbatim_end, + alias_sym_math_marker_end, + alias_sym_verbatim_marker_end, + aux_sym_inline_attribute_repeat1, 2, + aux_sym_inline_attribute_repeat1, + alias_sym_args, + aux_sym__comment_with_newline_repeat1, 2, + aux_sym__comment_with_newline_repeat1, + sym__verbatim_content, + 0, +}; + +static const TSStateId ts_primary_state_ids[STATE_COUNT] = { + [0] = 0, + [1] = 1, + [2] = 2, + [3] = 2, + [4] = 2, + [5] = 2, + [6] = 2, + [7] = 2, + [8] = 2, + [9] = 2, + [10] = 2, + [11] = 11, + [12] = 12, + [13] = 13, + [14] = 14, + [15] = 11, + [16] = 11, + [17] = 12, + [18] = 14, + [19] = 12, + [20] = 11, + [21] = 14, + [22] = 13, + [23] = 23, + [24] = 24, + [25] = 2, + [26] = 12, + [27] = 14, + [28] = 13, + [29] = 23, + [30] = 13, + [31] = 24, + [32] = 24, + [33] = 23, + [34] = 13, + [35] = 11, + [36] = 12, + [37] = 12, + [38] = 11, + [39] = 14, + [40] = 13, + [41] = 23, + [42] = 13, + [43] = 24, + [44] = 24, + [45] = 23, + [46] = 13, + [47] = 23, + [48] = 24, + [49] = 14, + [50] = 11, + [51] = 24, + [52] = 24, + [53] = 23, + [54] = 12, + [55] = 13, + [56] = 12, + [57] = 14, + [58] = 11, + [59] = 14, + [60] = 13, + [61] = 11, + [62] = 12, + [63] = 23, + [64] = 24, + [65] = 23, + [66] = 14, + [67] = 23, + [68] = 12, + [69] = 24, + [70] = 11, + [71] = 14, + [72] = 72, + [73] = 73, + [74] = 74, + [75] = 75, + [76] = 72, + [77] = 74, + [78] = 75, + [79] = 73, + [80] = 74, + [81] = 74, + [82] = 82, + [83] = 72, + [84] = 73, + [85] = 74, + [86] = 75, + [87] = 82, + [88] = 75, + [89] = 82, + [90] = 74, + [91] = 74, + [92] = 82, + [93] = 72, + [94] = 73, + [95] = 75, + [96] = 73, + [97] = 82, + [98] = 73, + [99] = 74, + [100] = 72, + [101] = 73, + [102] = 75, + [103] = 82, + [104] = 72, + [105] = 74, + [106] = 75, + [107] = 73, + [108] = 82, + [109] = 73, + [110] = 72, + [111] = 74, + [112] = 73, + [113] = 75, + [114] = 72, + [115] = 82, + [116] = 82, + [117] = 72, + [118] = 75, + [119] = 82, + [120] = 75, + [121] = 72, + [122] = 122, + [123] = 123, + [124] = 124, + [125] = 124, + [126] = 123, + [127] = 127, + [128] = 127, + [129] = 127, + [130] = 123, + [131] = 127, + [132] = 122, + [133] = 133, + [134] = 123, + [135] = 122, + [136] = 133, + [137] = 133, + [138] = 124, + [139] = 123, + [140] = 124, + [141] = 124, + [142] = 133, + [143] = 122, + [144] = 122, + [145] = 133, + [146] = 124, + [147] = 127, + [148] = 127, + [149] = 127, + [150] = 123, + [151] = 127, + [152] = 124, + [153] = 123, + [154] = 127, + [155] = 123, + [156] = 122, + [157] = 133, + [158] = 122, + [159] = 123, + [160] = 122, + [161] = 133, + [162] = 122, + [163] = 127, + [164] = 124, + [165] = 133, + [166] = 122, + [167] = 123, + [168] = 124, + [169] = 133, + [170] = 133, + [171] = 124, + [172] = 172, + [173] = 173, + [174] = 174, + [175] = 174, + [176] = 172, + [177] = 177, + [178] = 173, + [179] = 172, + [180] = 180, + [181] = 180, + [182] = 173, + [183] = 177, + [184] = 174, + [185] = 177, + [186] = 180, + [187] = 180, + [188] = 172, + [189] = 173, + [190] = 177, + [191] = 174, + [192] = 172, + [193] = 177, + [194] = 177, + [195] = 172, + [196] = 174, + [197] = 173, + [198] = 172, + [199] = 172, + [200] = 174, + [201] = 173, + [202] = 172, + [203] = 180, + [204] = 172, + [205] = 180, + [206] = 173, + [207] = 173, + [208] = 174, + [209] = 180, + [210] = 174, + [211] = 180, + [212] = 180, + [213] = 180, + [214] = 177, + [215] = 177, + [216] = 177, + [217] = 174, + [218] = 174, + [219] = 177, + [220] = 173, + [221] = 173, + [222] = 222, + [223] = 223, + [224] = 224, + [225] = 225, + [226] = 226, + [227] = 227, + [228] = 228, + [229] = 229, + [230] = 230, + [231] = 231, + [232] = 232, + [233] = 233, + [234] = 234, + [235] = 235, + [236] = 236, + [237] = 237, + [238] = 238, + [239] = 239, + [240] = 231, + [241] = 241, + [242] = 242, + [243] = 243, + [244] = 244, + [245] = 241, + [246] = 246, + [247] = 222, + [248] = 248, + [249] = 249, + [250] = 250, + [251] = 223, + [252] = 252, + [253] = 242, + [254] = 254, + [255] = 255, + [256] = 256, + [257] = 257, + [258] = 224, + [259] = 225, + [260] = 226, + [261] = 227, + [262] = 228, + [263] = 229, + [264] = 230, + [265] = 255, + [266] = 256, + [267] = 243, + [268] = 232, + [269] = 233, + [270] = 234, + [271] = 235, + [272] = 236, + [273] = 237, + [274] = 238, + [275] = 241, + [276] = 239, + [277] = 254, + [278] = 231, + [279] = 279, + [280] = 252, + [281] = 223, + [282] = 250, + [283] = 249, + [284] = 248, + [285] = 222, + [286] = 246, + [287] = 287, + [288] = 244, + [289] = 243, + [290] = 241, + [291] = 242, + [292] = 243, + [293] = 242, + [294] = 241, + [295] = 244, + [296] = 244, + [297] = 246, + [298] = 222, + [299] = 248, + [300] = 249, + [301] = 250, + [302] = 223, + [303] = 252, + [304] = 231, + [305] = 239, + [306] = 239, + [307] = 254, + [308] = 255, + [309] = 256, + [310] = 257, + [311] = 224, + [312] = 225, + [313] = 226, + [314] = 227, + [315] = 228, + [316] = 229, + [317] = 230, + [318] = 238, + [319] = 237, + [320] = 320, + [321] = 232, + [322] = 233, + [323] = 234, + [324] = 235, + [325] = 236, + [326] = 237, + [327] = 238, + [328] = 236, + [329] = 239, + [330] = 235, + [331] = 231, + [332] = 234, + [333] = 233, + [334] = 232, + [335] = 180, + [336] = 230, + [337] = 229, + [338] = 228, + [339] = 227, + [340] = 226, + [341] = 225, + [342] = 224, + [343] = 241, + [344] = 242, + [345] = 243, + [346] = 257, + [347] = 256, + [348] = 244, + [349] = 349, + [350] = 246, + [351] = 222, + [352] = 248, + [353] = 249, + [354] = 250, + [355] = 223, + [356] = 252, + [357] = 255, + [358] = 254, + [359] = 320, + [360] = 254, + [361] = 255, + [362] = 256, + [363] = 257, + [364] = 224, + [365] = 225, + [366] = 226, + [367] = 227, + [368] = 228, + [369] = 229, + [370] = 230, + [371] = 349, + [372] = 252, + [373] = 320, + [374] = 232, + [375] = 233, + [376] = 234, + [377] = 235, + [378] = 236, + [379] = 237, + [380] = 238, + [381] = 223, + [382] = 239, + [383] = 250, + [384] = 231, + [385] = 249, + [386] = 248, + [387] = 222, + [388] = 246, + [389] = 180, + [390] = 244, + [391] = 243, + [392] = 242, + [393] = 349, + [394] = 231, + [395] = 239, + [396] = 241, + [397] = 242, + [398] = 243, + [399] = 320, + [400] = 238, + [401] = 244, + [402] = 180, + [403] = 246, + [404] = 222, + [405] = 248, + [406] = 249, + [407] = 250, + [408] = 223, + [409] = 252, + [410] = 349, + [411] = 320, + [412] = 180, + [413] = 254, + [414] = 255, + [415] = 256, + [416] = 257, + [417] = 224, + [418] = 225, + [419] = 226, + [420] = 227, + [421] = 228, + [422] = 229, + [423] = 230, + [424] = 349, + [425] = 320, + [426] = 180, + [427] = 232, + [428] = 233, + [429] = 234, + [430] = 235, + [431] = 236, + [432] = 237, + [433] = 238, + [434] = 349, + [435] = 239, + [436] = 320, + [437] = 231, + [438] = 180, + [439] = 349, + [440] = 320, + [441] = 180, + [442] = 237, + [443] = 349, + [444] = 236, + [445] = 235, + [446] = 234, + [447] = 233, + [448] = 232, + [449] = 241, + [450] = 242, + [451] = 243, + [452] = 320, + [453] = 180, + [454] = 244, + [455] = 349, + [456] = 246, + [457] = 180, + [458] = 248, + [459] = 249, + [460] = 250, + [461] = 223, + [462] = 252, + [463] = 238, + [464] = 237, + [465] = 236, + [466] = 254, + [467] = 255, + [468] = 256, + [469] = 257, + [470] = 224, + [471] = 225, + [472] = 226, + [473] = 227, + [474] = 228, + [475] = 229, + [476] = 230, + [477] = 180, + [478] = 235, + [479] = 234, + [480] = 232, + [481] = 233, + [482] = 234, + [483] = 235, + [484] = 236, + [485] = 237, + [486] = 238, + [487] = 233, + [488] = 239, + [489] = 232, + [490] = 231, + [491] = 230, + [492] = 229, + [493] = 228, + [494] = 227, + [495] = 320, + [496] = 246, + [497] = 230, + [498] = 229, + [499] = 226, + [500] = 225, + [501] = 224, + [502] = 241, + [503] = 242, + [504] = 243, + [505] = 257, + [506] = 256, + [507] = 244, + [508] = 228, + [509] = 246, + [510] = 222, + [511] = 248, + [512] = 249, + [513] = 250, + [514] = 223, + [515] = 252, + [516] = 255, + [517] = 254, + [518] = 227, + [519] = 254, + [520] = 255, + [521] = 256, + [522] = 257, + [523] = 224, + [524] = 225, + [525] = 226, + [526] = 227, + [527] = 228, + [528] = 229, + [529] = 230, + [530] = 226, + [531] = 225, + [532] = 224, + [533] = 232, + [534] = 233, + [535] = 234, + [536] = 235, + [537] = 236, + [538] = 237, + [539] = 238, + [540] = 257, + [541] = 239, + [542] = 256, + [543] = 231, + [544] = 255, + [545] = 254, + [546] = 349, + [547] = 252, + [548] = 548, + [549] = 257, + [550] = 252, + [551] = 223, + [552] = 250, + [553] = 249, + [554] = 248, + [555] = 241, + [556] = 242, + [557] = 243, + [558] = 250, + [559] = 222, + [560] = 244, + [561] = 249, + [562] = 246, + [563] = 222, + [564] = 248, + [565] = 320, + [566] = 320, + [567] = 567, + [568] = 349, + [569] = 349, + [570] = 320, + [571] = 567, + [572] = 320, + [573] = 320, + [574] = 349, + [575] = 567, + [576] = 320, + [577] = 567, + [578] = 567, + [579] = 349, + [580] = 567, + [581] = 349, + [582] = 349, + [583] = 567, + [584] = 349, + [585] = 320, + [586] = 567, + [587] = 320, + [588] = 320, + [589] = 320, + [590] = 349, + [591] = 567, + [592] = 567, + [593] = 349, + [594] = 349, + [595] = 595, + [596] = 595, + [597] = 597, + [598] = 595, + [599] = 597, + [600] = 595, + [601] = 597, + [602] = 602, + [603] = 597, + [604] = 597, + [605] = 595, + [606] = 595, + [607] = 595, + [608] = 597, + [609] = 597, + [610] = 597, + [611] = 595, + [612] = 597, + [613] = 595, + [614] = 597, + [615] = 595, + [616] = 595, + [617] = 597, + [618] = 597, + [619] = 597, + [620] = 595, + [621] = 595, + [622] = 595, + [623] = 595, + [624] = 597, + [625] = 597, + [626] = 595, + [627] = 597, + [628] = 595, + [629] = 597, + [630] = 595, + [631] = 597, + [632] = 595, + [633] = 597, + [634] = 595, + [635] = 597, + [636] = 636, + [637] = 637, + [638] = 638, + [639] = 639, + [640] = 640, + [641] = 641, + [642] = 642, + [643] = 643, + [644] = 644, + [645] = 645, + [646] = 646, + [647] = 647, + [648] = 646, + [649] = 645, + [650] = 646, + [651] = 647, + [652] = 645, + [653] = 647, + [654] = 654, + [655] = 646, + [656] = 647, + [657] = 646, + [658] = 645, + [659] = 645, + [660] = 647, + [661] = 646, + [662] = 645, + [663] = 646, + [664] = 647, + [665] = 645, + [666] = 647, + [667] = 646, + [668] = 668, + [669] = 647, + [670] = 645, + [671] = 646, + [672] = 647, + [673] = 645, + [674] = 674, + [675] = 645, + [676] = 647, + [677] = 646, + [678] = 678, + [679] = 679, + [680] = 680, + [681] = 680, + [682] = 679, + [683] = 680, + [684] = 679, + [685] = 679, + [686] = 680, + [687] = 679, + [688] = 680, + [689] = 680, + [690] = 679, + [691] = 680, + [692] = 680, + [693] = 679, + [694] = 679, + [695] = 679, + [696] = 696, + [697] = 680, + [698] = 679, + [699] = 680, + [700] = 700, + [701] = 701, + [702] = 702, + [703] = 702, + [704] = 704, + [705] = 705, + [706] = 706, + [707] = 706, + [708] = 706, + [709] = 702, + [710] = 704, + [711] = 702, + [712] = 706, + [713] = 706, + [714] = 702, + [715] = 704, + [716] = 705, + [717] = 704, + [718] = 718, + [719] = 718, + [720] = 718, + [721] = 704, + [722] = 718, + [723] = 705, + [724] = 705, + [725] = 705, + [726] = 718, + [727] = 705, + [728] = 706, + [729] = 704, + [730] = 702, + [731] = 706, + [732] = 732, + [733] = 718, + [734] = 702, + [735] = 704, + [736] = 702, + [737] = 704, + [738] = 702, + [739] = 706, + [740] = 706, + [741] = 718, + [742] = 706, + [743] = 705, + [744] = 705, + [745] = 718, + [746] = 702, + [747] = 704, + [748] = 705, + [749] = 704, + [750] = 718, + [751] = 718, + [752] = 705, + [753] = 753, + [754] = 754, + [755] = 755, + [756] = 753, + [757] = 757, + [758] = 758, + [759] = 759, + [760] = 760, + [761] = 754, + [762] = 754, + [763] = 760, + [764] = 764, + [765] = 765, + [766] = 766, + [767] = 755, + [768] = 753, + [769] = 757, + [770] = 758, + [771] = 759, + [772] = 759, + [773] = 754, + [774] = 760, + [775] = 764, + [776] = 765, + [777] = 766, + [778] = 758, + [779] = 757, + [780] = 755, + [781] = 753, + [782] = 757, + [783] = 758, + [784] = 759, + [785] = 785, + [786] = 755, + [787] = 754, + [788] = 760, + [789] = 764, + [790] = 765, + [791] = 766, + [792] = 766, + [793] = 765, + [794] = 764, + [795] = 755, + [796] = 759, + [797] = 757, + [798] = 758, + [799] = 754, + [800] = 765, + [801] = 759, + [802] = 766, + [803] = 766, + [804] = 765, + [805] = 760, + [806] = 754, + [807] = 764, + [808] = 754, + [809] = 760, + [810] = 764, + [811] = 765, + [812] = 760, + [813] = 754, + [814] = 755, + [815] = 753, + [816] = 759, + [817] = 759, + [818] = 758, + [819] = 758, + [820] = 757, + [821] = 753, + [822] = 755, + [823] = 766, + [824] = 824, + [825] = 825, + [826] = 765, + [827] = 827, + [828] = 828, + [829] = 757, + [830] = 764, + [831] = 760, + [832] = 764, + [833] = 833, + [834] = 834, + [835] = 835, + [836] = 824, + [837] = 753, + [838] = 755, + [839] = 785, + [840] = 828, + [841] = 759, + [842] = 842, + [843] = 834, + [844] = 835, + [845] = 824, + [846] = 757, + [847] = 758, + [848] = 785, + [849] = 828, + [850] = 766, + [851] = 758, + [852] = 834, + [853] = 835, + [854] = 824, + [855] = 765, + [856] = 757, + [857] = 785, + [858] = 828, + [859] = 753, + [860] = 755, + [861] = 834, + [862] = 835, + [863] = 824, + [864] = 764, + [865] = 760, + [866] = 785, + [867] = 828, + [868] = 754, + [869] = 753, + [870] = 834, + [871] = 835, + [872] = 824, + [873] = 759, + [874] = 835, + [875] = 785, + [876] = 828, + [877] = 877, + [878] = 834, + [879] = 834, + [880] = 835, + [881] = 824, + [882] = 758, + [883] = 757, + [884] = 785, + [885] = 828, + [886] = 886, + [887] = 887, + [888] = 834, + [889] = 835, + [890] = 824, + [891] = 753, + [892] = 892, + [893] = 785, + [894] = 828, + [895] = 895, + [896] = 896, + [897] = 834, + [898] = 835, + [899] = 824, + [900] = 755, + [901] = 766, + [902] = 785, + [903] = 828, + [904] = 765, + [905] = 766, + [906] = 834, + [907] = 835, + [908] = 824, + [909] = 764, + [910] = 760, + [911] = 785, + [912] = 828, +}; + +static bool ts_lex(TSLexer *lexer, TSStateId state) { + START_LEXER(); + eof = lexer->eof(lexer); + switch (state) { + case 0: + if (eof) ADVANCE(145); + if (lookahead == '\t') ADVANCE(329); + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(133) + if (lookahead == ' ') ADVANCE(155); + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(351); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '%') ADVANCE(292); + if (lookahead == '(') ADVANCE(285); + if (lookahead == ')') ADVANCE(288); + if (lookahead == '*') ADVANCE(173); + if (lookahead == '+') ADVANCE(342); + if (lookahead == '-') ADVANCE(256); + if (lookahead == '.') ADVANCE(347); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == '=') ADVANCE(350); + if (lookahead == '>') ADVANCE(222); + if (lookahead == 'F') ADVANCE(263); + if (lookahead == 'I') ADVANCE(265); + if (lookahead == 'N') ADVANCE(266); + if (lookahead == 'T') ADVANCE(267); + if (lookahead == 'W') ADVANCE(262); + if (lookahead == 'X') ADVANCE(274); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(180); + if (lookahead == ']') ADVANCE(283); + if (lookahead == '^') ADVANCE(239); + if (lookahead == '_') ADVANCE(164); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(147); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '}') ADVANCE(151); + if (lookahead == '~') ADVANCE(247); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'z')) ADVANCE(275); + if (lookahead != 0 && + lookahead != 11 && + lookahead != '\f') ADVANCE(331); + END_STATE(); + case 1: + if (lookahead == '\t') ADVANCE(329); + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(25) + if (lookahead == ' ') ADVANCE(327); + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(332); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(335); + if (lookahead == 'I') ADVANCE(337); + if (lookahead == 'N') ADVANCE(338); + if (lookahead == 'T') ADVANCE(339); + if (lookahead == 'W') ADVANCE(336); + if (lookahead == 'X') ADVANCE(340); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == ']') ADVANCE(254); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(163); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(149); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead != 0 && + lookahead != 11 && + lookahead != '\f') ADVANCE(331); + END_STATE(); + case 2: + if (lookahead == '\t') ADVANCE(329); + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(38) + if (lookahead == ' ') ADVANCE(327); + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(332); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(335); + if (lookahead == 'I') ADVANCE(337); + if (lookahead == 'N') ADVANCE(338); + if (lookahead == 'T') ADVANCE(339); + if (lookahead == 'W') ADVANCE(336); + if (lookahead == 'X') ADVANCE(340); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(163); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead != 0 && + lookahead != 11 && + lookahead != '\f') ADVANCE(331); + END_STATE(); + case 3: + if (lookahead == '\t') ADVANCE(329); + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(38) + if (lookahead == ' ') ADVANCE(327); + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(332); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(335); + if (lookahead == 'I') ADVANCE(337); + if (lookahead == 'N') ADVANCE(338); + if (lookahead == 'T') ADVANCE(339); + if (lookahead == 'W') ADVANCE(336); + if (lookahead == 'X') ADVANCE(340); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(163); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(149); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead != 0 && + lookahead != 11 && + lookahead != '\f') ADVANCE(331); + END_STATE(); + case 4: + if (lookahead == '\t') ADVANCE(329); + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(38) + if (lookahead == ' ') ADVANCE(327); + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(332); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(335); + if (lookahead == 'I') ADVANCE(337); + if (lookahead == 'N') ADVANCE(338); + if (lookahead == 'T') ADVANCE(339); + if (lookahead == 'W') ADVANCE(336); + if (lookahead == 'X') ADVANCE(340); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(163); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(148); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead != 0 && + lookahead != 11 && + lookahead != '\f') ADVANCE(331); + END_STATE(); + case 5: + if (lookahead == '\t') ADVANCE(329); + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(43) + if (lookahead == ' ') ADVANCE(161); + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(332); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == '=') ADVANCE(343); + if (lookahead == 'F') ADVANCE(335); + if (lookahead == 'I') ADVANCE(337); + if (lookahead == 'N') ADVANCE(338); + if (lookahead == 'T') ADVANCE(339); + if (lookahead == 'W') ADVANCE(336); + if (lookahead == 'X') ADVANCE(340); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(162); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(149); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead != 0 && + lookahead != 11 && + lookahead != '\f') ADVANCE(331); + END_STATE(); + case 6: + if (lookahead == '\t') ADVANCE(329); + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(50) + if (lookahead == ' ') ADVANCE(328); + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(173); + if (lookahead == '-') ADVANCE(257); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(263); + if (lookahead == 'I') ADVANCE(265); + if (lookahead == 'N') ADVANCE(266); + if (lookahead == 'T') ADVANCE(267); + if (lookahead == 'W') ADVANCE(262); + if (lookahead == 'X') ADVANCE(274); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(166); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(149); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + if (lookahead != 0 && + lookahead != 11 && + lookahead != '\f') ADVANCE(331); + END_STATE(); + case 7: + if (lookahead == '\t') ADVANCE(329); + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(53) + if (lookahead == ' ') ADVANCE(161); + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '+') ADVANCE(342); + if (lookahead == '-') ADVANCE(332); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(335); + if (lookahead == 'I') ADVANCE(337); + if (lookahead == 'N') ADVANCE(338); + if (lookahead == 'T') ADVANCE(339); + if (lookahead == 'W') ADVANCE(336); + if (lookahead == 'X') ADVANCE(340); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(162); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(149); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead != 0 && + lookahead != 11 && + lookahead != '\f') ADVANCE(331); + END_STATE(); + case 8: + if (lookahead == '\t') ADVANCE(329); + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(56) + if (lookahead == ' ') ADVANCE(328); + if (lookahead == '!') ADVANCE(217); + if (lookahead == '"') ADVANCE(218); + if (lookahead == '$') ADVANCE(298); + if (lookahead == '\'') ADVANCE(218); + if (lookahead == '*') ADVANCE(174); + if (lookahead == '-') ADVANCE(196); + if (lookahead == '.') ADVANCE(198); + if (lookahead == ':') ADVANCE(199); + if (lookahead == '<') ADVANCE(194); + if (lookahead == '>') ADVANCE(331); + if (lookahead == 'F') ADVANCE(205); + if (lookahead == 'I') ADVANCE(207); + if (lookahead == 'N') ADVANCE(208); + if (lookahead == 'T') ADVANCE(209); + if (lookahead == 'W') ADVANCE(204); + if (lookahead == 'X') ADVANCE(216); + if (lookahead == '[') ADVANCE(282); + if (lookahead == '\\') ADVANCE(179); + if (lookahead == '^') ADVANCE(241); + if (lookahead == '_') ADVANCE(167); + if (lookahead == '`') ADVANCE(320); + if (lookahead == '{') ADVANCE(150); + if (lookahead == '|') ADVANCE(318); + if (lookahead == '~') ADVANCE(249); + if (lookahead != 0 && + lookahead != 11 && + lookahead != '\f') ADVANCE(221); + END_STATE(); + case 9: + if (lookahead == '\t') ADVANCE(329); + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(66) + if (lookahead == ' ') ADVANCE(328); + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(173); + if (lookahead == '-') ADVANCE(332); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(335); + if (lookahead == 'I') ADVANCE(337); + if (lookahead == 'N') ADVANCE(338); + if (lookahead == 'T') ADVANCE(339); + if (lookahead == 'W') ADVANCE(336); + if (lookahead == 'X') ADVANCE(340); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == ']') ADVANCE(254); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(162); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(149); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead != 0 && + lookahead != 11 && + lookahead != '\f') ADVANCE(331); + END_STATE(); + case 10: + if (lookahead == '\t') ADVANCE(329); + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(73) + if (lookahead == ' ') ADVANCE(328); + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(173); + if (lookahead == '-') ADVANCE(332); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(335); + if (lookahead == 'I') ADVANCE(337); + if (lookahead == 'N') ADVANCE(338); + if (lookahead == 'T') ADVANCE(339); + if (lookahead == 'W') ADVANCE(336); + if (lookahead == 'X') ADVANCE(340); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(162); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead != 0 && + lookahead != 11 && + lookahead != '\f') ADVANCE(331); + END_STATE(); + case 11: + if (lookahead == '\t') ADVANCE(329); + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(73) + if (lookahead == ' ') ADVANCE(328); + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(173); + if (lookahead == '-') ADVANCE(332); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(335); + if (lookahead == 'I') ADVANCE(337); + if (lookahead == 'N') ADVANCE(338); + if (lookahead == 'T') ADVANCE(339); + if (lookahead == 'W') ADVANCE(336); + if (lookahead == 'X') ADVANCE(340); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(162); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(149); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead != 0 && + lookahead != 11 && + lookahead != '\f') ADVANCE(331); + END_STATE(); + case 12: + if (lookahead == '\t') ADVANCE(329); + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(73) + if (lookahead == ' ') ADVANCE(328); + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(173); + if (lookahead == '-') ADVANCE(332); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(335); + if (lookahead == 'I') ADVANCE(337); + if (lookahead == 'N') ADVANCE(338); + if (lookahead == 'T') ADVANCE(339); + if (lookahead == 'W') ADVANCE(336); + if (lookahead == 'X') ADVANCE(340); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(162); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(148); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead != 0 && + lookahead != 11 && + lookahead != '\f') ADVANCE(331); + END_STATE(); + case 13: + if (lookahead == '\t') ADVANCE(329); + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(76) + if (lookahead == ' ') ADVANCE(327); + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(257); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(263); + if (lookahead == 'I') ADVANCE(265); + if (lookahead == 'N') ADVANCE(266); + if (lookahead == 'T') ADVANCE(267); + if (lookahead == 'W') ADVANCE(262); + if (lookahead == 'X') ADVANCE(274); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(164); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(149); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + if (lookahead != 0 && + lookahead != 11 && + lookahead != '\f') ADVANCE(331); + END_STATE(); + case 14: + if (lookahead == '\t') ADVANCE(329); + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(77) + if (lookahead == ' ') ADVANCE(327); + if (lookahead == '!') ADVANCE(217); + if (lookahead == '"') ADVANCE(218); + if (lookahead == '$') ADVANCE(298); + if (lookahead == '\'') ADVANCE(218); + if (lookahead == '*') ADVANCE(175); + if (lookahead == '-') ADVANCE(196); + if (lookahead == '.') ADVANCE(198); + if (lookahead == ':') ADVANCE(199); + if (lookahead == '<') ADVANCE(194); + if (lookahead == '>') ADVANCE(331); + if (lookahead == 'F') ADVANCE(205); + if (lookahead == 'I') ADVANCE(207); + if (lookahead == 'N') ADVANCE(208); + if (lookahead == 'T') ADVANCE(209); + if (lookahead == 'W') ADVANCE(204); + if (lookahead == 'X') ADVANCE(216); + if (lookahead == '[') ADVANCE(282); + if (lookahead == '\\') ADVANCE(179); + if (lookahead == '^') ADVANCE(241); + if (lookahead == '_') ADVANCE(165); + if (lookahead == '`') ADVANCE(320); + if (lookahead == '{') ADVANCE(150); + if (lookahead == '|') ADVANCE(318); + if (lookahead == '~') ADVANCE(249); + if (lookahead != 0 && + lookahead != 11 && + lookahead != '\f') ADVANCE(221); + END_STATE(); + case 15: + if (lookahead == '\t') ADVANCE(329); + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(80) + if (lookahead == ' ') ADVANCE(161); + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(332); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(335); + if (lookahead == 'I') ADVANCE(337); + if (lookahead == 'N') ADVANCE(338); + if (lookahead == 'T') ADVANCE(339); + if (lookahead == 'W') ADVANCE(336); + if (lookahead == 'X') ADVANCE(340); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == ']') ADVANCE(254); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(162); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(149); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead != 0 && + lookahead != 11 && + lookahead != '\f') ADVANCE(331); + END_STATE(); + case 16: + if (lookahead == '\t') ADVANCE(329); + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(87) + if (lookahead == ' ') ADVANCE(161); + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(333); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(335); + if (lookahead == 'I') ADVANCE(337); + if (lookahead == 'N') ADVANCE(338); + if (lookahead == 'T') ADVANCE(339); + if (lookahead == 'W') ADVANCE(336); + if (lookahead == 'X') ADVANCE(340); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(162); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(149); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead != 0 && + lookahead != 11 && + lookahead != '\f') ADVANCE(331); + END_STATE(); + case 17: + if (lookahead == '\t') ADVANCE(329); + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(100) + if (lookahead == ' ') ADVANCE(156); + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(332); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(335); + if (lookahead == 'I') ADVANCE(337); + if (lookahead == 'N') ADVANCE(338); + if (lookahead == 'T') ADVANCE(339); + if (lookahead == 'W') ADVANCE(336); + if (lookahead == 'X') ADVANCE(340); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(163); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(149); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead != 0 && + lookahead != 11 && + lookahead != '\f') ADVANCE(331); + END_STATE(); + case 18: + if (lookahead == '\t') ADVANCE(329); + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(105) + if (lookahead == ' ') ADVANCE(161); + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(332); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(335); + if (lookahead == 'I') ADVANCE(337); + if (lookahead == 'N') ADVANCE(338); + if (lookahead == 'T') ADVANCE(339); + if (lookahead == 'W') ADVANCE(336); + if (lookahead == 'X') ADVANCE(340); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(239); + if (lookahead == '_') ADVANCE(162); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(149); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead != 0 && + lookahead != 11 && + lookahead != '\f') ADVANCE(331); + END_STATE(); + case 19: + if (lookahead == '\t') ADVANCE(329); + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(106) + if (lookahead == ' ') ADVANCE(161); + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(332); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(335); + if (lookahead == 'I') ADVANCE(337); + if (lookahead == 'N') ADVANCE(338); + if (lookahead == 'T') ADVANCE(339); + if (lookahead == 'W') ADVANCE(336); + if (lookahead == 'X') ADVANCE(340); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == ']') ADVANCE(283); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(162); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(149); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead != 0 && + lookahead != 11 && + lookahead != '\f') ADVANCE(331); + END_STATE(); + case 20: + if (lookahead == '\t') ADVANCE(329); + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(106) + if (lookahead == ' ') ADVANCE(161); + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(332); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(335); + if (lookahead == 'I') ADVANCE(337); + if (lookahead == 'N') ADVANCE(338); + if (lookahead == 'T') ADVANCE(339); + if (lookahead == 'W') ADVANCE(336); + if (lookahead == 'X') ADVANCE(340); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(162); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead != 0 && + lookahead != 11 && + lookahead != '\f') ADVANCE(331); + END_STATE(); + case 21: + if (lookahead == '\t') ADVANCE(329); + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(107) + if (lookahead == ' ') ADVANCE(157); + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(173); + if (lookahead == '-') ADVANCE(332); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(335); + if (lookahead == 'I') ADVANCE(337); + if (lookahead == 'N') ADVANCE(338); + if (lookahead == 'T') ADVANCE(339); + if (lookahead == 'W') ADVANCE(336); + if (lookahead == 'X') ADVANCE(340); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(162); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(149); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead != 0 && + lookahead != 11 && + lookahead != '\f') ADVANCE(331); + END_STATE(); + case 22: + if (lookahead == '\t') ADVANCE(329); + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(108) + if (lookahead == ' ') ADVANCE(161); + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(332); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(335); + if (lookahead == 'I') ADVANCE(337); + if (lookahead == 'N') ADVANCE(338); + if (lookahead == 'T') ADVANCE(339); + if (lookahead == 'W') ADVANCE(336); + if (lookahead == 'X') ADVANCE(340); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(162); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(149); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(247); + if (lookahead != 0 && + lookahead != 11 && + lookahead != '\f') ADVANCE(331); + END_STATE(); + case 23: + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(23) + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(332); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == '=') ADVANCE(343); + if (lookahead == 'F') ADVANCE(335); + if (lookahead == 'I') ADVANCE(337); + if (lookahead == 'N') ADVANCE(338); + if (lookahead == 'T') ADVANCE(339); + if (lookahead == 'W') ADVANCE(336); + if (lookahead == 'X') ADVANCE(340); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == ']') ADVANCE(254); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(162); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead != 0 && + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(331); + END_STATE(); + case 24: + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(23) + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(332); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == '=') ADVANCE(343); + if (lookahead == 'F') ADVANCE(335); + if (lookahead == 'I') ADVANCE(337); + if (lookahead == 'N') ADVANCE(338); + if (lookahead == 'T') ADVANCE(339); + if (lookahead == 'W') ADVANCE(336); + if (lookahead == 'X') ADVANCE(340); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == ']') ADVANCE(254); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(162); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(149); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(329); + if (lookahead != 0 && + lookahead != 11 && + lookahead != '\f') ADVANCE(331); + END_STATE(); + case 25: + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(25) + if (lookahead == ' ') ADVANCE(114); + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(332); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(335); + if (lookahead == 'I') ADVANCE(337); + if (lookahead == 'N') ADVANCE(338); + if (lookahead == 'T') ADVANCE(339); + if (lookahead == 'W') ADVANCE(336); + if (lookahead == 'X') ADVANCE(340); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == ']') ADVANCE(254); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(163); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead != 0 && + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(331); + END_STATE(); + case 26: + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(26) + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(332); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(335); + if (lookahead == 'I') ADVANCE(337); + if (lookahead == 'N') ADVANCE(338); + if (lookahead == 'T') ADVANCE(339); + if (lookahead == 'W') ADVANCE(336); + if (lookahead == 'X') ADVANCE(340); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == ']') ADVANCE(254); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(162); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(247); + if (lookahead != 0 && + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(331); + END_STATE(); + case 27: + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(26) + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(332); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(335); + if (lookahead == 'I') ADVANCE(337); + if (lookahead == 'N') ADVANCE(338); + if (lookahead == 'T') ADVANCE(339); + if (lookahead == 'W') ADVANCE(336); + if (lookahead == 'X') ADVANCE(340); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == ']') ADVANCE(254); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(162); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(149); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(247); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(329); + if (lookahead != 0 && + lookahead != 11 && + lookahead != '\f') ADVANCE(331); + END_STATE(); + case 28: + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(28) + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '+') ADVANCE(342); + if (lookahead == '-') ADVANCE(332); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(335); + if (lookahead == 'I') ADVANCE(337); + if (lookahead == 'N') ADVANCE(338); + if (lookahead == 'T') ADVANCE(339); + if (lookahead == 'W') ADVANCE(336); + if (lookahead == 'X') ADVANCE(340); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == ']') ADVANCE(254); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(162); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead != 0 && + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(331); + END_STATE(); + case 29: + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(28) + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '+') ADVANCE(342); + if (lookahead == '-') ADVANCE(332); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(335); + if (lookahead == 'I') ADVANCE(337); + if (lookahead == 'N') ADVANCE(338); + if (lookahead == 'T') ADVANCE(339); + if (lookahead == 'W') ADVANCE(336); + if (lookahead == 'X') ADVANCE(340); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == ']') ADVANCE(254); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(162); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(149); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(329); + if (lookahead != 0 && + lookahead != 11 && + lookahead != '\f') ADVANCE(331); + END_STATE(); + case 30: + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(31) + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(332); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(335); + if (lookahead == 'I') ADVANCE(337); + if (lookahead == 'N') ADVANCE(338); + if (lookahead == 'T') ADVANCE(339); + if (lookahead == 'W') ADVANCE(336); + if (lookahead == 'X') ADVANCE(340); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(162); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(247); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(329); + if (lookahead != 0 && + lookahead != 11 && + lookahead != '\f') ADVANCE(331); + END_STATE(); + case 31: + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(31) + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(332); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(335); + if (lookahead == 'I') ADVANCE(337); + if (lookahead == 'N') ADVANCE(338); + if (lookahead == 'T') ADVANCE(339); + if (lookahead == 'W') ADVANCE(336); + if (lookahead == 'X') ADVANCE(340); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(162); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(247); + if (lookahead != 0 && + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(331); + END_STATE(); + case 32: + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(31) + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(332); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(335); + if (lookahead == 'I') ADVANCE(337); + if (lookahead == 'N') ADVANCE(338); + if (lookahead == 'T') ADVANCE(339); + if (lookahead == 'W') ADVANCE(336); + if (lookahead == 'X') ADVANCE(340); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(162); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(149); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(247); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(329); + if (lookahead != 0 && + lookahead != 11 && + lookahead != '\f') ADVANCE(331); + END_STATE(); + case 33: + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(31) + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(332); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(335); + if (lookahead == 'I') ADVANCE(337); + if (lookahead == 'N') ADVANCE(338); + if (lookahead == 'T') ADVANCE(339); + if (lookahead == 'W') ADVANCE(336); + if (lookahead == 'X') ADVANCE(340); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(162); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(148); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(247); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(329); + if (lookahead != 0 && + lookahead != 11 && + lookahead != '\f') ADVANCE(331); + END_STATE(); + case 34: + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(35) + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(332); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == '=') ADVANCE(343); + if (lookahead == 'F') ADVANCE(335); + if (lookahead == 'I') ADVANCE(337); + if (lookahead == 'N') ADVANCE(338); + if (lookahead == 'T') ADVANCE(339); + if (lookahead == 'W') ADVANCE(336); + if (lookahead == 'X') ADVANCE(340); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(162); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(329); + if (lookahead != 0 && + lookahead != 11 && + lookahead != '\f') ADVANCE(331); + END_STATE(); + case 35: + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(35) + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(332); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == '=') ADVANCE(343); + if (lookahead == 'F') ADVANCE(335); + if (lookahead == 'I') ADVANCE(337); + if (lookahead == 'N') ADVANCE(338); + if (lookahead == 'T') ADVANCE(339); + if (lookahead == 'W') ADVANCE(336); + if (lookahead == 'X') ADVANCE(340); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(162); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead != 0 && + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(331); + END_STATE(); + case 36: + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(35) + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(332); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == '=') ADVANCE(343); + if (lookahead == 'F') ADVANCE(335); + if (lookahead == 'I') ADVANCE(337); + if (lookahead == 'N') ADVANCE(338); + if (lookahead == 'T') ADVANCE(339); + if (lookahead == 'W') ADVANCE(336); + if (lookahead == 'X') ADVANCE(340); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(162); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(149); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(329); + if (lookahead != 0 && + lookahead != 11 && + lookahead != '\f') ADVANCE(331); + END_STATE(); + case 37: + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(35) + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(332); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == '=') ADVANCE(343); + if (lookahead == 'F') ADVANCE(335); + if (lookahead == 'I') ADVANCE(337); + if (lookahead == 'N') ADVANCE(338); + if (lookahead == 'T') ADVANCE(339); + if (lookahead == 'W') ADVANCE(336); + if (lookahead == 'X') ADVANCE(340); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(162); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(148); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(329); + if (lookahead != 0 && + lookahead != 11 && + lookahead != '\f') ADVANCE(331); + END_STATE(); + case 38: + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(38) + if (lookahead == ' ') ADVANCE(114); + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(332); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(335); + if (lookahead == 'I') ADVANCE(337); + if (lookahead == 'N') ADVANCE(338); + if (lookahead == 'T') ADVANCE(339); + if (lookahead == 'W') ADVANCE(336); + if (lookahead == 'X') ADVANCE(340); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(163); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead != 0 && + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(331); + END_STATE(); + case 39: + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(40) + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '+') ADVANCE(342); + if (lookahead == '-') ADVANCE(332); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(335); + if (lookahead == 'I') ADVANCE(337); + if (lookahead == 'N') ADVANCE(338); + if (lookahead == 'T') ADVANCE(339); + if (lookahead == 'W') ADVANCE(336); + if (lookahead == 'X') ADVANCE(340); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(162); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(329); + if (lookahead != 0 && + lookahead != 11 && + lookahead != '\f') ADVANCE(331); + END_STATE(); + case 40: + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(40) + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '+') ADVANCE(342); + if (lookahead == '-') ADVANCE(332); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(335); + if (lookahead == 'I') ADVANCE(337); + if (lookahead == 'N') ADVANCE(338); + if (lookahead == 'T') ADVANCE(339); + if (lookahead == 'W') ADVANCE(336); + if (lookahead == 'X') ADVANCE(340); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(162); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead != 0 && + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(331); + END_STATE(); + case 41: + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(40) + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '+') ADVANCE(342); + if (lookahead == '-') ADVANCE(332); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(335); + if (lookahead == 'I') ADVANCE(337); + if (lookahead == 'N') ADVANCE(338); + if (lookahead == 'T') ADVANCE(339); + if (lookahead == 'W') ADVANCE(336); + if (lookahead == 'X') ADVANCE(340); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(162); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(149); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(329); + if (lookahead != 0 && + lookahead != 11 && + lookahead != '\f') ADVANCE(331); + END_STATE(); + case 42: + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(40) + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '+') ADVANCE(342); + if (lookahead == '-') ADVANCE(332); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(335); + if (lookahead == 'I') ADVANCE(337); + if (lookahead == 'N') ADVANCE(338); + if (lookahead == 'T') ADVANCE(339); + if (lookahead == 'W') ADVANCE(336); + if (lookahead == 'X') ADVANCE(340); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(162); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(148); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(329); + if (lookahead != 0 && + lookahead != 11 && + lookahead != '\f') ADVANCE(331); + END_STATE(); + case 43: + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(43) + if (lookahead == ' ') ADVANCE(154); + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(332); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == '=') ADVANCE(343); + if (lookahead == 'F') ADVANCE(335); + if (lookahead == 'I') ADVANCE(337); + if (lookahead == 'N') ADVANCE(338); + if (lookahead == 'T') ADVANCE(339); + if (lookahead == 'W') ADVANCE(336); + if (lookahead == 'X') ADVANCE(340); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(162); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead != 0 && + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(331); + END_STATE(); + case 44: + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(44) + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(257); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == '=') ADVANCE(343); + if (lookahead == 'F') ADVANCE(263); + if (lookahead == 'I') ADVANCE(265); + if (lookahead == 'N') ADVANCE(266); + if (lookahead == 'T') ADVANCE(267); + if (lookahead == 'W') ADVANCE(262); + if (lookahead == 'X') ADVANCE(274); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(166); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + if (lookahead != 0 && + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(331); + END_STATE(); + case 45: + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(44) + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(257); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == '=') ADVANCE(343); + if (lookahead == 'F') ADVANCE(263); + if (lookahead == 'I') ADVANCE(265); + if (lookahead == 'N') ADVANCE(266); + if (lookahead == 'T') ADVANCE(267); + if (lookahead == 'W') ADVANCE(262); + if (lookahead == 'X') ADVANCE(274); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(166); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(149); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(329); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + if (lookahead != 0 && + lookahead != 11 && + lookahead != '\f') ADVANCE(331); + END_STATE(); + case 46: + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(46) + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(256); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(263); + if (lookahead == 'I') ADVANCE(265); + if (lookahead == 'N') ADVANCE(266); + if (lookahead == 'T') ADVANCE(267); + if (lookahead == 'W') ADVANCE(262); + if (lookahead == 'X') ADVANCE(274); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(166); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + if (lookahead != 0 && + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(331); + END_STATE(); + case 47: + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(46) + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(256); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(263); + if (lookahead == 'I') ADVANCE(265); + if (lookahead == 'N') ADVANCE(266); + if (lookahead == 'T') ADVANCE(267); + if (lookahead == 'W') ADVANCE(262); + if (lookahead == 'X') ADVANCE(274); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(166); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(149); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(329); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + if (lookahead != 0 && + lookahead != 11 && + lookahead != '\f') ADVANCE(331); + END_STATE(); + case 48: + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(48) + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(257); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(263); + if (lookahead == 'I') ADVANCE(265); + if (lookahead == 'N') ADVANCE(266); + if (lookahead == 'T') ADVANCE(267); + if (lookahead == 'W') ADVANCE(262); + if (lookahead == 'X') ADVANCE(274); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == ']') ADVANCE(254); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(166); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'z')) ADVANCE(275); + if (lookahead != 0 && + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(331); + END_STATE(); + case 49: + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(48) + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(257); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(263); + if (lookahead == 'I') ADVANCE(265); + if (lookahead == 'N') ADVANCE(266); + if (lookahead == 'T') ADVANCE(267); + if (lookahead == 'W') ADVANCE(262); + if (lookahead == 'X') ADVANCE(274); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == ']') ADVANCE(254); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(166); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(149); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(329); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'z')) ADVANCE(275); + if (lookahead != 0 && + lookahead != 11 && + lookahead != '\f') ADVANCE(331); + END_STATE(); + case 50: + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(50) + if (lookahead == ' ') ADVANCE(115); + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(173); + if (lookahead == '-') ADVANCE(257); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(263); + if (lookahead == 'I') ADVANCE(265); + if (lookahead == 'N') ADVANCE(266); + if (lookahead == 'T') ADVANCE(267); + if (lookahead == 'W') ADVANCE(262); + if (lookahead == 'X') ADVANCE(274); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(166); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + if (lookahead != 0 && + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(331); + END_STATE(); + case 51: + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(51) + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '+') ADVANCE(342); + if (lookahead == '-') ADVANCE(257); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(263); + if (lookahead == 'I') ADVANCE(265); + if (lookahead == 'N') ADVANCE(266); + if (lookahead == 'T') ADVANCE(267); + if (lookahead == 'W') ADVANCE(262); + if (lookahead == 'X') ADVANCE(274); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(166); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + if (lookahead != 0 && + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(331); + END_STATE(); + case 52: + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(51) + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '+') ADVANCE(342); + if (lookahead == '-') ADVANCE(257); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(263); + if (lookahead == 'I') ADVANCE(265); + if (lookahead == 'N') ADVANCE(266); + if (lookahead == 'T') ADVANCE(267); + if (lookahead == 'W') ADVANCE(262); + if (lookahead == 'X') ADVANCE(274); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(166); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(149); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(329); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + if (lookahead != 0 && + lookahead != 11 && + lookahead != '\f') ADVANCE(331); + END_STATE(); + case 53: + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(53) + if (lookahead == ' ') ADVANCE(154); + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '+') ADVANCE(342); + if (lookahead == '-') ADVANCE(332); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(335); + if (lookahead == 'I') ADVANCE(337); + if (lookahead == 'N') ADVANCE(338); + if (lookahead == 'T') ADVANCE(339); + if (lookahead == 'W') ADVANCE(336); + if (lookahead == 'X') ADVANCE(340); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(162); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead != 0 && + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(331); + END_STATE(); + case 54: + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(55) + if (lookahead == '!') ADVANCE(217); + if (lookahead == '"') ADVANCE(218); + if (lookahead == '$') ADVANCE(298); + if (lookahead == '\'') ADVANCE(218); + if (lookahead == '*') ADVANCE(175); + if (lookahead == '+') ADVANCE(219); + if (lookahead == '-') ADVANCE(196); + if (lookahead == '.') ADVANCE(198); + if (lookahead == ':') ADVANCE(199); + if (lookahead == '<') ADVANCE(194); + if (lookahead == '>') ADVANCE(331); + if (lookahead == 'F') ADVANCE(205); + if (lookahead == 'I') ADVANCE(207); + if (lookahead == 'N') ADVANCE(208); + if (lookahead == 'T') ADVANCE(209); + if (lookahead == 'W') ADVANCE(204); + if (lookahead == 'X') ADVANCE(216); + if (lookahead == '[') ADVANCE(282); + if (lookahead == '\\') ADVANCE(179); + if (lookahead == '^') ADVANCE(241); + if (lookahead == '_') ADVANCE(167); + if (lookahead == '`') ADVANCE(320); + if (lookahead == '{') ADVANCE(150); + if (lookahead == '|') ADVANCE(318); + if (lookahead == '~') ADVANCE(249); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(329); + if (lookahead != 0 && + lookahead != 11 && + lookahead != '\f') ADVANCE(221); + END_STATE(); + case 55: + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(55) + if (lookahead == '!') ADVANCE(217); + if (lookahead == '"') ADVANCE(218); + if (lookahead == '$') ADVANCE(298); + if (lookahead == '\'') ADVANCE(218); + if (lookahead == '*') ADVANCE(175); + if (lookahead == '+') ADVANCE(219); + if (lookahead == '-') ADVANCE(196); + if (lookahead == '.') ADVANCE(198); + if (lookahead == ':') ADVANCE(199); + if (lookahead == '<') ADVANCE(194); + if (lookahead == '>') ADVANCE(331); + if (lookahead == 'F') ADVANCE(205); + if (lookahead == 'I') ADVANCE(207); + if (lookahead == 'N') ADVANCE(208); + if (lookahead == 'T') ADVANCE(209); + if (lookahead == 'W') ADVANCE(204); + if (lookahead == 'X') ADVANCE(216); + if (lookahead == '[') ADVANCE(282); + if (lookahead == '\\') ADVANCE(179); + if (lookahead == '^') ADVANCE(241); + if (lookahead == '_') ADVANCE(167); + if (lookahead == '`') ADVANCE(320); + if (lookahead == '{') ADVANCE(291); + if (lookahead == '|') ADVANCE(318); + if (lookahead == '~') ADVANCE(249); + if (lookahead != 0 && + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(221); + END_STATE(); + case 56: + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(56) + if (lookahead == ' ') ADVANCE(115); + if (lookahead == '!') ADVANCE(217); + if (lookahead == '"') ADVANCE(218); + if (lookahead == '$') ADVANCE(298); + if (lookahead == '\'') ADVANCE(218); + if (lookahead == '*') ADVANCE(174); + if (lookahead == '-') ADVANCE(196); + if (lookahead == '.') ADVANCE(198); + if (lookahead == ':') ADVANCE(199); + if (lookahead == '<') ADVANCE(194); + if (lookahead == '>') ADVANCE(331); + if (lookahead == 'F') ADVANCE(205); + if (lookahead == 'I') ADVANCE(207); + if (lookahead == 'N') ADVANCE(208); + if (lookahead == 'T') ADVANCE(209); + if (lookahead == 'W') ADVANCE(204); + if (lookahead == 'X') ADVANCE(216); + if (lookahead == '[') ADVANCE(282); + if (lookahead == '\\') ADVANCE(179); + if (lookahead == '^') ADVANCE(241); + if (lookahead == '_') ADVANCE(167); + if (lookahead == '`') ADVANCE(320); + if (lookahead == '{') ADVANCE(291); + if (lookahead == '|') ADVANCE(318); + if (lookahead == '~') ADVANCE(249); + if (lookahead != 0 && + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(221); + END_STATE(); + case 57: + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(58) + if (lookahead == '!') ADVANCE(217); + if (lookahead == '"') ADVANCE(218); + if (lookahead == '$') ADVANCE(298); + if (lookahead == '\'') ADVANCE(218); + if (lookahead == '*') ADVANCE(175); + if (lookahead == '-') ADVANCE(196); + if (lookahead == '.') ADVANCE(198); + if (lookahead == ':') ADVANCE(199); + if (lookahead == '<') ADVANCE(194); + if (lookahead == '>') ADVANCE(331); + if (lookahead == 'F') ADVANCE(205); + if (lookahead == 'I') ADVANCE(207); + if (lookahead == 'N') ADVANCE(208); + if (lookahead == 'T') ADVANCE(209); + if (lookahead == 'W') ADVANCE(204); + if (lookahead == 'X') ADVANCE(216); + if (lookahead == '[') ADVANCE(282); + if (lookahead == '\\') ADVANCE(179); + if (lookahead == '^') ADVANCE(241); + if (lookahead == '_') ADVANCE(167); + if (lookahead == '`') ADVANCE(320); + if (lookahead == '{') ADVANCE(150); + if (lookahead == '|') ADVANCE(318); + if (lookahead == '~') ADVANCE(248); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(329); + if (lookahead != 0 && + lookahead != 11 && + lookahead != '\f') ADVANCE(221); + END_STATE(); + case 58: + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(58) + if (lookahead == '!') ADVANCE(217); + if (lookahead == '"') ADVANCE(218); + if (lookahead == '$') ADVANCE(298); + if (lookahead == '\'') ADVANCE(218); + if (lookahead == '*') ADVANCE(175); + if (lookahead == '-') ADVANCE(196); + if (lookahead == '.') ADVANCE(198); + if (lookahead == ':') ADVANCE(199); + if (lookahead == '<') ADVANCE(194); + if (lookahead == '>') ADVANCE(331); + if (lookahead == 'F') ADVANCE(205); + if (lookahead == 'I') ADVANCE(207); + if (lookahead == 'N') ADVANCE(208); + if (lookahead == 'T') ADVANCE(209); + if (lookahead == 'W') ADVANCE(204); + if (lookahead == 'X') ADVANCE(216); + if (lookahead == '[') ADVANCE(282); + if (lookahead == '\\') ADVANCE(179); + if (lookahead == '^') ADVANCE(241); + if (lookahead == '_') ADVANCE(167); + if (lookahead == '`') ADVANCE(320); + if (lookahead == '{') ADVANCE(291); + if (lookahead == '|') ADVANCE(318); + if (lookahead == '~') ADVANCE(248); + if (lookahead != 0 && + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(221); + END_STATE(); + case 59: + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(60) + if (lookahead == '!') ADVANCE(217); + if (lookahead == '"') ADVANCE(218); + if (lookahead == '$') ADVANCE(298); + if (lookahead == '\'') ADVANCE(218); + if (lookahead == '*') ADVANCE(175); + if (lookahead == '-') ADVANCE(196); + if (lookahead == '.') ADVANCE(198); + if (lookahead == ':') ADVANCE(199); + if (lookahead == '<') ADVANCE(194); + if (lookahead == '>') ADVANCE(331); + if (lookahead == 'F') ADVANCE(205); + if (lookahead == 'I') ADVANCE(207); + if (lookahead == 'N') ADVANCE(208); + if (lookahead == 'T') ADVANCE(209); + if (lookahead == 'W') ADVANCE(204); + if (lookahead == 'X') ADVANCE(216); + if (lookahead == '[') ADVANCE(282); + if (lookahead == '\\') ADVANCE(179); + if (lookahead == ']') ADVANCE(255); + if (lookahead == '^') ADVANCE(241); + if (lookahead == '_') ADVANCE(167); + if (lookahead == '`') ADVANCE(320); + if (lookahead == '{') ADVANCE(150); + if (lookahead == '|') ADVANCE(318); + if (lookahead == '~') ADVANCE(249); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(329); + if (lookahead != 0 && + lookahead != 11 && + lookahead != '\f') ADVANCE(221); + END_STATE(); + case 60: + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(60) + if (lookahead == '!') ADVANCE(217); + if (lookahead == '"') ADVANCE(218); + if (lookahead == '$') ADVANCE(298); + if (lookahead == '\'') ADVANCE(218); + if (lookahead == '*') ADVANCE(175); + if (lookahead == '-') ADVANCE(196); + if (lookahead == '.') ADVANCE(198); + if (lookahead == ':') ADVANCE(199); + if (lookahead == '<') ADVANCE(194); + if (lookahead == '>') ADVANCE(331); + if (lookahead == 'F') ADVANCE(205); + if (lookahead == 'I') ADVANCE(207); + if (lookahead == 'N') ADVANCE(208); + if (lookahead == 'T') ADVANCE(209); + if (lookahead == 'W') ADVANCE(204); + if (lookahead == 'X') ADVANCE(216); + if (lookahead == '[') ADVANCE(282); + if (lookahead == '\\') ADVANCE(179); + if (lookahead == ']') ADVANCE(255); + if (lookahead == '^') ADVANCE(241); + if (lookahead == '_') ADVANCE(167); + if (lookahead == '`') ADVANCE(320); + if (lookahead == '{') ADVANCE(291); + if (lookahead == '|') ADVANCE(318); + if (lookahead == '~') ADVANCE(249); + if (lookahead != 0 && + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(221); + END_STATE(); + case 61: + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(62) + if (lookahead == '!') ADVANCE(217); + if (lookahead == '"') ADVANCE(218); + if (lookahead == '$') ADVANCE(298); + if (lookahead == '\'') ADVANCE(218); + if (lookahead == '*') ADVANCE(175); + if (lookahead == '-') ADVANCE(196); + if (lookahead == '.') ADVANCE(198); + if (lookahead == ':') ADVANCE(199); + if (lookahead == '<') ADVANCE(194); + if (lookahead == '=') ADVANCE(220); + if (lookahead == '>') ADVANCE(331); + if (lookahead == 'F') ADVANCE(205); + if (lookahead == 'I') ADVANCE(207); + if (lookahead == 'N') ADVANCE(208); + if (lookahead == 'T') ADVANCE(209); + if (lookahead == 'W') ADVANCE(204); + if (lookahead == 'X') ADVANCE(216); + if (lookahead == '[') ADVANCE(282); + if (lookahead == '\\') ADVANCE(179); + if (lookahead == '^') ADVANCE(241); + if (lookahead == '_') ADVANCE(167); + if (lookahead == '`') ADVANCE(320); + if (lookahead == '{') ADVANCE(150); + if (lookahead == '|') ADVANCE(318); + if (lookahead == '~') ADVANCE(249); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(329); + if (lookahead != 0 && + lookahead != 11 && + lookahead != '\f') ADVANCE(221); + END_STATE(); + case 62: + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(62) + if (lookahead == '!') ADVANCE(217); + if (lookahead == '"') ADVANCE(218); + if (lookahead == '$') ADVANCE(298); + if (lookahead == '\'') ADVANCE(218); + if (lookahead == '*') ADVANCE(175); + if (lookahead == '-') ADVANCE(196); + if (lookahead == '.') ADVANCE(198); + if (lookahead == ':') ADVANCE(199); + if (lookahead == '<') ADVANCE(194); + if (lookahead == '=') ADVANCE(220); + if (lookahead == '>') ADVANCE(331); + if (lookahead == 'F') ADVANCE(205); + if (lookahead == 'I') ADVANCE(207); + if (lookahead == 'N') ADVANCE(208); + if (lookahead == 'T') ADVANCE(209); + if (lookahead == 'W') ADVANCE(204); + if (lookahead == 'X') ADVANCE(216); + if (lookahead == '[') ADVANCE(282); + if (lookahead == '\\') ADVANCE(179); + if (lookahead == '^') ADVANCE(241); + if (lookahead == '_') ADVANCE(167); + if (lookahead == '`') ADVANCE(320); + if (lookahead == '{') ADVANCE(291); + if (lookahead == '|') ADVANCE(318); + if (lookahead == '~') ADVANCE(249); + if (lookahead != 0 && + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(221); + END_STATE(); + case 63: + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(64) + if (lookahead == '"') ADVANCE(351); + if (lookahead == '#') ADVANCE(131); + if (lookahead == '%') ADVANCE(292); + if (lookahead == '(') ADVANCE(285); + if (lookahead == ')') ADVANCE(288); + if (lookahead == '.') ADVANCE(346); + if (lookahead == '=') ADVANCE(349); + if (lookahead == '>') ADVANCE(222); + if (lookahead == '[') ADVANCE(280); + if (lookahead == '{') ADVANCE(146); + if (lookahead == '}') ADVANCE(151); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(329); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + END_STATE(); + case 64: + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(64) + if (lookahead == '"') ADVANCE(351); + if (lookahead == '#') ADVANCE(131); + if (lookahead == '%') ADVANCE(292); + if (lookahead == '(') ADVANCE(285); + if (lookahead == ')') ADVANCE(288); + if (lookahead == '.') ADVANCE(346); + if (lookahead == '=') ADVANCE(349); + if (lookahead == '>') ADVANCE(222); + if (lookahead == '[') ADVANCE(279); + if (lookahead == '}') ADVANCE(151); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + END_STATE(); + case 65: + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') ADVANCE(294); + if (lookahead == '%') ADVANCE(292); + if (lookahead == '\\') ADVANCE(295); + if (lookahead != 0) ADVANCE(293); + END_STATE(); + case 66: + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(66) + if (lookahead == ' ') ADVANCE(115); + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(173); + if (lookahead == '-') ADVANCE(332); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(335); + if (lookahead == 'I') ADVANCE(337); + if (lookahead == 'N') ADVANCE(338); + if (lookahead == 'T') ADVANCE(339); + if (lookahead == 'W') ADVANCE(336); + if (lookahead == 'X') ADVANCE(340); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == ']') ADVANCE(254); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(162); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead != 0 && + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(331); + END_STATE(); + case 67: + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(67) + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(333); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(335); + if (lookahead == 'I') ADVANCE(337); + if (lookahead == 'N') ADVANCE(338); + if (lookahead == 'T') ADVANCE(339); + if (lookahead == 'W') ADVANCE(336); + if (lookahead == 'X') ADVANCE(340); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == ']') ADVANCE(254); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(162); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead != 0 && + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(331); + END_STATE(); + case 68: + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(67) + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(333); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(335); + if (lookahead == 'I') ADVANCE(337); + if (lookahead == 'N') ADVANCE(338); + if (lookahead == 'T') ADVANCE(339); + if (lookahead == 'W') ADVANCE(336); + if (lookahead == 'X') ADVANCE(340); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == ']') ADVANCE(254); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(162); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(149); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(329); + if (lookahead != 0 && + lookahead != 11 && + lookahead != '\f') ADVANCE(331); + END_STATE(); + case 69: + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(70) + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(332); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(335); + if (lookahead == 'I') ADVANCE(337); + if (lookahead == 'N') ADVANCE(338); + if (lookahead == 'T') ADVANCE(339); + if (lookahead == 'W') ADVANCE(336); + if (lookahead == 'X') ADVANCE(340); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(239); + if (lookahead == '_') ADVANCE(162); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(329); + if (lookahead != 0 && + lookahead != 11 && + lookahead != '\f') ADVANCE(331); + END_STATE(); + case 70: + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(70) + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(332); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(335); + if (lookahead == 'I') ADVANCE(337); + if (lookahead == 'N') ADVANCE(338); + if (lookahead == 'T') ADVANCE(339); + if (lookahead == 'W') ADVANCE(336); + if (lookahead == 'X') ADVANCE(340); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(239); + if (lookahead == '_') ADVANCE(162); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead != 0 && + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(331); + END_STATE(); + case 71: + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(70) + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(332); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(335); + if (lookahead == 'I') ADVANCE(337); + if (lookahead == 'N') ADVANCE(338); + if (lookahead == 'T') ADVANCE(339); + if (lookahead == 'W') ADVANCE(336); + if (lookahead == 'X') ADVANCE(340); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(239); + if (lookahead == '_') ADVANCE(162); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(149); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(329); + if (lookahead != 0 && + lookahead != 11 && + lookahead != '\f') ADVANCE(331); + END_STATE(); + case 72: + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(70) + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(332); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(335); + if (lookahead == 'I') ADVANCE(337); + if (lookahead == 'N') ADVANCE(338); + if (lookahead == 'T') ADVANCE(339); + if (lookahead == 'W') ADVANCE(336); + if (lookahead == 'X') ADVANCE(340); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(239); + if (lookahead == '_') ADVANCE(162); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(148); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(329); + if (lookahead != 0 && + lookahead != 11 && + lookahead != '\f') ADVANCE(331); + END_STATE(); + case 73: + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(73) + if (lookahead == ' ') ADVANCE(115); + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(173); + if (lookahead == '-') ADVANCE(332); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(335); + if (lookahead == 'I') ADVANCE(337); + if (lookahead == 'N') ADVANCE(338); + if (lookahead == 'T') ADVANCE(339); + if (lookahead == 'W') ADVANCE(336); + if (lookahead == 'X') ADVANCE(340); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(162); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead != 0 && + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(331); + END_STATE(); + case 74: + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(75) + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(257); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(263); + if (lookahead == 'I') ADVANCE(265); + if (lookahead == 'N') ADVANCE(266); + if (lookahead == 'T') ADVANCE(267); + if (lookahead == 'W') ADVANCE(262); + if (lookahead == 'X') ADVANCE(274); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == ']') ADVANCE(283); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(166); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(149); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(329); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'z')) ADVANCE(275); + if (lookahead != 0 && + lookahead != 11 && + lookahead != '\f') ADVANCE(331); + END_STATE(); + case 75: + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(75) + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(257); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(263); + if (lookahead == 'I') ADVANCE(265); + if (lookahead == 'N') ADVANCE(266); + if (lookahead == 'T') ADVANCE(267); + if (lookahead == 'W') ADVANCE(262); + if (lookahead == 'X') ADVANCE(274); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(166); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + if (lookahead != 0 && + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(331); + END_STATE(); + case 76: + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(76) + if (lookahead == ' ') ADVANCE(114); + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(257); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(263); + if (lookahead == 'I') ADVANCE(265); + if (lookahead == 'N') ADVANCE(266); + if (lookahead == 'T') ADVANCE(267); + if (lookahead == 'W') ADVANCE(262); + if (lookahead == 'X') ADVANCE(274); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(164); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + if (lookahead != 0 && + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(331); + END_STATE(); + case 77: + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(77) + if (lookahead == ' ') ADVANCE(114); + if (lookahead == '!') ADVANCE(217); + if (lookahead == '"') ADVANCE(218); + if (lookahead == '$') ADVANCE(298); + if (lookahead == '\'') ADVANCE(218); + if (lookahead == '*') ADVANCE(175); + if (lookahead == '-') ADVANCE(196); + if (lookahead == '.') ADVANCE(198); + if (lookahead == ':') ADVANCE(199); + if (lookahead == '<') ADVANCE(194); + if (lookahead == '>') ADVANCE(331); + if (lookahead == 'F') ADVANCE(205); + if (lookahead == 'I') ADVANCE(207); + if (lookahead == 'N') ADVANCE(208); + if (lookahead == 'T') ADVANCE(209); + if (lookahead == 'W') ADVANCE(204); + if (lookahead == 'X') ADVANCE(216); + if (lookahead == '[') ADVANCE(282); + if (lookahead == '\\') ADVANCE(179); + if (lookahead == '^') ADVANCE(241); + if (lookahead == '_') ADVANCE(165); + if (lookahead == '`') ADVANCE(320); + if (lookahead == '{') ADVANCE(291); + if (lookahead == '|') ADVANCE(318); + if (lookahead == '~') ADVANCE(249); + if (lookahead != 0 && + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(221); + END_STATE(); + case 78: + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(79) + if (lookahead == '!') ADVANCE(217); + if (lookahead == '"') ADVANCE(218); + if (lookahead == '$') ADVANCE(298); + if (lookahead == '\'') ADVANCE(218); + if (lookahead == '*') ADVANCE(175); + if (lookahead == '-') ADVANCE(196); + if (lookahead == '.') ADVANCE(198); + if (lookahead == ':') ADVANCE(199); + if (lookahead == '<') ADVANCE(194); + if (lookahead == '>') ADVANCE(331); + if (lookahead == 'F') ADVANCE(205); + if (lookahead == 'I') ADVANCE(207); + if (lookahead == 'N') ADVANCE(208); + if (lookahead == 'T') ADVANCE(209); + if (lookahead == 'W') ADVANCE(204); + if (lookahead == 'X') ADVANCE(216); + if (lookahead == '[') ADVANCE(282); + if (lookahead == '\\') ADVANCE(179); + if (lookahead == ']') ADVANCE(284); + if (lookahead == '^') ADVANCE(241); + if (lookahead == '_') ADVANCE(167); + if (lookahead == '`') ADVANCE(320); + if (lookahead == '{') ADVANCE(150); + if (lookahead == '|') ADVANCE(318); + if (lookahead == '~') ADVANCE(249); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(329); + if (lookahead != 0 && + lookahead != 11 && + lookahead != '\f') ADVANCE(221); + END_STATE(); + case 79: + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(79) + if (lookahead == '!') ADVANCE(217); + if (lookahead == '"') ADVANCE(218); + if (lookahead == '$') ADVANCE(298); + if (lookahead == '\'') ADVANCE(218); + if (lookahead == '*') ADVANCE(175); + if (lookahead == '-') ADVANCE(196); + if (lookahead == '.') ADVANCE(198); + if (lookahead == ':') ADVANCE(199); + if (lookahead == '<') ADVANCE(194); + if (lookahead == '>') ADVANCE(331); + if (lookahead == 'F') ADVANCE(205); + if (lookahead == 'I') ADVANCE(207); + if (lookahead == 'N') ADVANCE(208); + if (lookahead == 'T') ADVANCE(209); + if (lookahead == 'W') ADVANCE(204); + if (lookahead == 'X') ADVANCE(216); + if (lookahead == '[') ADVANCE(282); + if (lookahead == '\\') ADVANCE(179); + if (lookahead == '^') ADVANCE(241); + if (lookahead == '_') ADVANCE(167); + if (lookahead == '`') ADVANCE(320); + if (lookahead == '{') ADVANCE(291); + if (lookahead == '|') ADVANCE(318); + if (lookahead == '~') ADVANCE(249); + if (lookahead != 0 && + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(221); + END_STATE(); + case 80: + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(80) + if (lookahead == ' ') ADVANCE(154); + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(332); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(335); + if (lookahead == 'I') ADVANCE(337); + if (lookahead == 'N') ADVANCE(338); + if (lookahead == 'T') ADVANCE(339); + if (lookahead == 'W') ADVANCE(336); + if (lookahead == 'X') ADVANCE(340); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == ']') ADVANCE(254); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(162); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead != 0 && + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(331); + END_STATE(); + case 81: + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(81) + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(332); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(335); + if (lookahead == 'I') ADVANCE(337); + if (lookahead == 'N') ADVANCE(338); + if (lookahead == 'T') ADVANCE(339); + if (lookahead == 'W') ADVANCE(336); + if (lookahead == 'X') ADVANCE(340); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == ']') ADVANCE(254); + if (lookahead == '^') ADVANCE(239); + if (lookahead == '_') ADVANCE(162); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead != 0 && + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(331); + END_STATE(); + case 82: + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(81) + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(332); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(335); + if (lookahead == 'I') ADVANCE(337); + if (lookahead == 'N') ADVANCE(338); + if (lookahead == 'T') ADVANCE(339); + if (lookahead == 'W') ADVANCE(336); + if (lookahead == 'X') ADVANCE(340); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == ']') ADVANCE(254); + if (lookahead == '^') ADVANCE(239); + if (lookahead == '_') ADVANCE(162); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(149); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(329); + if (lookahead != 0 && + lookahead != 11 && + lookahead != '\f') ADVANCE(331); + END_STATE(); + case 83: + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(84) + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(333); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(335); + if (lookahead == 'I') ADVANCE(337); + if (lookahead == 'N') ADVANCE(338); + if (lookahead == 'T') ADVANCE(339); + if (lookahead == 'W') ADVANCE(336); + if (lookahead == 'X') ADVANCE(340); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(162); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(329); + if (lookahead != 0 && + lookahead != 11 && + lookahead != '\f') ADVANCE(331); + END_STATE(); + case 84: + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(84) + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(333); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(335); + if (lookahead == 'I') ADVANCE(337); + if (lookahead == 'N') ADVANCE(338); + if (lookahead == 'T') ADVANCE(339); + if (lookahead == 'W') ADVANCE(336); + if (lookahead == 'X') ADVANCE(340); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(162); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead != 0 && + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(331); + END_STATE(); + case 85: + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(84) + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(333); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(335); + if (lookahead == 'I') ADVANCE(337); + if (lookahead == 'N') ADVANCE(338); + if (lookahead == 'T') ADVANCE(339); + if (lookahead == 'W') ADVANCE(336); + if (lookahead == 'X') ADVANCE(340); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(162); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(149); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(329); + if (lookahead != 0 && + lookahead != 11 && + lookahead != '\f') ADVANCE(331); + END_STATE(); + case 86: + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(84) + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(333); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(335); + if (lookahead == 'I') ADVANCE(337); + if (lookahead == 'N') ADVANCE(338); + if (lookahead == 'T') ADVANCE(339); + if (lookahead == 'W') ADVANCE(336); + if (lookahead == 'X') ADVANCE(340); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(162); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(148); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(329); + if (lookahead != 0 && + lookahead != 11 && + lookahead != '\f') ADVANCE(331); + END_STATE(); + case 87: + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(87) + if (lookahead == ' ') ADVANCE(154); + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(333); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(335); + if (lookahead == 'I') ADVANCE(337); + if (lookahead == 'N') ADVANCE(338); + if (lookahead == 'T') ADVANCE(339); + if (lookahead == 'W') ADVANCE(336); + if (lookahead == 'X') ADVANCE(340); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(162); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead != 0 && + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(331); + END_STATE(); + case 88: + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(88) + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(257); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(263); + if (lookahead == 'I') ADVANCE(265); + if (lookahead == 'N') ADVANCE(266); + if (lookahead == 'T') ADVANCE(267); + if (lookahead == 'W') ADVANCE(262); + if (lookahead == 'X') ADVANCE(274); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(239); + if (lookahead == '_') ADVANCE(166); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + if (lookahead != 0 && + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(331); + END_STATE(); + case 89: + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(88) + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(257); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(263); + if (lookahead == 'I') ADVANCE(265); + if (lookahead == 'N') ADVANCE(266); + if (lookahead == 'T') ADVANCE(267); + if (lookahead == 'W') ADVANCE(262); + if (lookahead == 'X') ADVANCE(274); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(239); + if (lookahead == '_') ADVANCE(166); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(149); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(329); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + if (lookahead != 0 && + lookahead != 11 && + lookahead != '\f') ADVANCE(331); + END_STATE(); + case 90: + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(91) + if (lookahead == '!') ADVANCE(217); + if (lookahead == '"') ADVANCE(218); + if (lookahead == '$') ADVANCE(298); + if (lookahead == '\'') ADVANCE(218); + if (lookahead == '*') ADVANCE(175); + if (lookahead == '-') ADVANCE(196); + if (lookahead == '.') ADVANCE(198); + if (lookahead == ':') ADVANCE(199); + if (lookahead == '<') ADVANCE(194); + if (lookahead == '>') ADVANCE(331); + if (lookahead == 'F') ADVANCE(205); + if (lookahead == 'I') ADVANCE(207); + if (lookahead == 'N') ADVANCE(208); + if (lookahead == 'T') ADVANCE(209); + if (lookahead == 'W') ADVANCE(204); + if (lookahead == 'X') ADVANCE(216); + if (lookahead == '[') ADVANCE(282); + if (lookahead == '\\') ADVANCE(179); + if (lookahead == '^') ADVANCE(240); + if (lookahead == '_') ADVANCE(167); + if (lookahead == '`') ADVANCE(320); + if (lookahead == '{') ADVANCE(150); + if (lookahead == '|') ADVANCE(318); + if (lookahead == '~') ADVANCE(249); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(329); + if (lookahead != 0 && + lookahead != 11 && + lookahead != '\f') ADVANCE(221); + END_STATE(); + case 91: + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(91) + if (lookahead == '!') ADVANCE(217); + if (lookahead == '"') ADVANCE(218); + if (lookahead == '$') ADVANCE(298); + if (lookahead == '\'') ADVANCE(218); + if (lookahead == '*') ADVANCE(175); + if (lookahead == '-') ADVANCE(196); + if (lookahead == '.') ADVANCE(198); + if (lookahead == ':') ADVANCE(199); + if (lookahead == '<') ADVANCE(194); + if (lookahead == '>') ADVANCE(331); + if (lookahead == 'F') ADVANCE(205); + if (lookahead == 'I') ADVANCE(207); + if (lookahead == 'N') ADVANCE(208); + if (lookahead == 'T') ADVANCE(209); + if (lookahead == 'W') ADVANCE(204); + if (lookahead == 'X') ADVANCE(216); + if (lookahead == '[') ADVANCE(282); + if (lookahead == '\\') ADVANCE(179); + if (lookahead == '^') ADVANCE(240); + if (lookahead == '_') ADVANCE(167); + if (lookahead == '`') ADVANCE(320); + if (lookahead == '{') ADVANCE(291); + if (lookahead == '|') ADVANCE(318); + if (lookahead == '~') ADVANCE(249); + if (lookahead != 0 && + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(221); + END_STATE(); + case 92: + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(94) + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(332); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(335); + if (lookahead == 'I') ADVANCE(337); + if (lookahead == 'N') ADVANCE(338); + if (lookahead == 'T') ADVANCE(339); + if (lookahead == 'W') ADVANCE(336); + if (lookahead == 'X') ADVANCE(340); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == ']') ADVANCE(283); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(162); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(149); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(329); + if (lookahead != 0 && + lookahead != 11 && + lookahead != '\f') ADVANCE(331); + END_STATE(); + case 93: + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(94) + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(332); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(335); + if (lookahead == 'I') ADVANCE(337); + if (lookahead == 'N') ADVANCE(338); + if (lookahead == 'T') ADVANCE(339); + if (lookahead == 'W') ADVANCE(336); + if (lookahead == 'X') ADVANCE(340); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == ']') ADVANCE(254); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(162); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(329); + if (lookahead != 0 && + lookahead != 11 && + lookahead != '\f') ADVANCE(331); + END_STATE(); + case 94: + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(94) + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(332); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(335); + if (lookahead == 'I') ADVANCE(337); + if (lookahead == 'N') ADVANCE(338); + if (lookahead == 'T') ADVANCE(339); + if (lookahead == 'W') ADVANCE(336); + if (lookahead == 'X') ADVANCE(340); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == ']') ADVANCE(254); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(162); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead != 0 && + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(331); + END_STATE(); + case 95: + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(94) + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(332); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(335); + if (lookahead == 'I') ADVANCE(337); + if (lookahead == 'N') ADVANCE(338); + if (lookahead == 'T') ADVANCE(339); + if (lookahead == 'W') ADVANCE(336); + if (lookahead == 'X') ADVANCE(340); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == ']') ADVANCE(254); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(162); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(148); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(329); + if (lookahead != 0 && + lookahead != 11 && + lookahead != '\f') ADVANCE(331); + END_STATE(); + case 96: + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(99) + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(332); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(335); + if (lookahead == 'I') ADVANCE(337); + if (lookahead == 'N') ADVANCE(338); + if (lookahead == 'T') ADVANCE(339); + if (lookahead == 'W') ADVANCE(336); + if (lookahead == 'X') ADVANCE(340); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == ']') ADVANCE(283); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(162); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(329); + if (lookahead != 0 && + lookahead != 11 && + lookahead != '\f') ADVANCE(331); + END_STATE(); + case 97: + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(99) + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(332); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(335); + if (lookahead == 'I') ADVANCE(337); + if (lookahead == 'N') ADVANCE(338); + if (lookahead == 'T') ADVANCE(339); + if (lookahead == 'W') ADVANCE(336); + if (lookahead == 'X') ADVANCE(340); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == ']') ADVANCE(283); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(162); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(149); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(329); + if (lookahead != 0 && + lookahead != 11 && + lookahead != '\f') ADVANCE(331); + END_STATE(); + case 98: + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(99) + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(332); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(335); + if (lookahead == 'I') ADVANCE(337); + if (lookahead == 'N') ADVANCE(338); + if (lookahead == 'T') ADVANCE(339); + if (lookahead == 'W') ADVANCE(336); + if (lookahead == 'X') ADVANCE(340); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == ']') ADVANCE(283); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(162); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(148); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(329); + if (lookahead != 0 && + lookahead != 11 && + lookahead != '\f') ADVANCE(331); + END_STATE(); + case 99: + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(99) + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(332); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(335); + if (lookahead == 'I') ADVANCE(337); + if (lookahead == 'N') ADVANCE(338); + if (lookahead == 'T') ADVANCE(339); + if (lookahead == 'W') ADVANCE(336); + if (lookahead == 'X') ADVANCE(340); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(162); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead != 0 && + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(331); + END_STATE(); + case 100: + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(100) + if (lookahead == ' ') ADVANCE(159); + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(332); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(335); + if (lookahead == 'I') ADVANCE(337); + if (lookahead == 'N') ADVANCE(338); + if (lookahead == 'T') ADVANCE(339); + if (lookahead == 'W') ADVANCE(336); + if (lookahead == 'X') ADVANCE(340); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(163); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead != 0 && + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(331); + END_STATE(); + case 101: + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(101) + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(257); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(263); + if (lookahead == 'I') ADVANCE(265); + if (lookahead == 'N') ADVANCE(266); + if (lookahead == 'T') ADVANCE(267); + if (lookahead == 'W') ADVANCE(262); + if (lookahead == 'X') ADVANCE(274); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(166); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(247); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + if (lookahead != 0 && + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(331); + END_STATE(); + case 102: + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(101) + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(257); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(263); + if (lookahead == 'I') ADVANCE(265); + if (lookahead == 'N') ADVANCE(266); + if (lookahead == 'T') ADVANCE(267); + if (lookahead == 'W') ADVANCE(262); + if (lookahead == 'X') ADVANCE(274); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(166); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(149); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(247); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(329); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + if (lookahead != 0 && + lookahead != 11 && + lookahead != '\f') ADVANCE(331); + END_STATE(); + case 103: + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(104) + if (lookahead == '!') ADVANCE(217); + if (lookahead == '"') ADVANCE(218); + if (lookahead == '$') ADVANCE(298); + if (lookahead == '\'') ADVANCE(218); + if (lookahead == '*') ADVANCE(175); + if (lookahead == '-') ADVANCE(195); + if (lookahead == '.') ADVANCE(198); + if (lookahead == ':') ADVANCE(199); + if (lookahead == '<') ADVANCE(194); + if (lookahead == '>') ADVANCE(331); + if (lookahead == 'F') ADVANCE(205); + if (lookahead == 'I') ADVANCE(207); + if (lookahead == 'N') ADVANCE(208); + if (lookahead == 'T') ADVANCE(209); + if (lookahead == 'W') ADVANCE(204); + if (lookahead == 'X') ADVANCE(216); + if (lookahead == '[') ADVANCE(282); + if (lookahead == '\\') ADVANCE(179); + if (lookahead == '^') ADVANCE(241); + if (lookahead == '_') ADVANCE(167); + if (lookahead == '`') ADVANCE(320); + if (lookahead == '{') ADVANCE(150); + if (lookahead == '|') ADVANCE(318); + if (lookahead == '~') ADVANCE(249); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(329); + if (lookahead != 0 && + lookahead != 11 && + lookahead != '\f') ADVANCE(221); + END_STATE(); + case 104: + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(104) + if (lookahead == '!') ADVANCE(217); + if (lookahead == '"') ADVANCE(218); + if (lookahead == '$') ADVANCE(298); + if (lookahead == '\'') ADVANCE(218); + if (lookahead == '*') ADVANCE(175); + if (lookahead == '-') ADVANCE(195); + if (lookahead == '.') ADVANCE(198); + if (lookahead == ':') ADVANCE(199); + if (lookahead == '<') ADVANCE(194); + if (lookahead == '>') ADVANCE(331); + if (lookahead == 'F') ADVANCE(205); + if (lookahead == 'I') ADVANCE(207); + if (lookahead == 'N') ADVANCE(208); + if (lookahead == 'T') ADVANCE(209); + if (lookahead == 'W') ADVANCE(204); + if (lookahead == 'X') ADVANCE(216); + if (lookahead == '[') ADVANCE(282); + if (lookahead == '\\') ADVANCE(179); + if (lookahead == '^') ADVANCE(241); + if (lookahead == '_') ADVANCE(167); + if (lookahead == '`') ADVANCE(320); + if (lookahead == '{') ADVANCE(291); + if (lookahead == '|') ADVANCE(318); + if (lookahead == '~') ADVANCE(249); + if (lookahead != 0 && + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(221); + END_STATE(); + case 105: + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(105) + if (lookahead == ' ') ADVANCE(154); + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(332); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(335); + if (lookahead == 'I') ADVANCE(337); + if (lookahead == 'N') ADVANCE(338); + if (lookahead == 'T') ADVANCE(339); + if (lookahead == 'W') ADVANCE(336); + if (lookahead == 'X') ADVANCE(340); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(239); + if (lookahead == '_') ADVANCE(162); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead != 0 && + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(331); + END_STATE(); + case 106: + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(106) + if (lookahead == ' ') ADVANCE(154); + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(332); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(335); + if (lookahead == 'I') ADVANCE(337); + if (lookahead == 'N') ADVANCE(338); + if (lookahead == 'T') ADVANCE(339); + if (lookahead == 'W') ADVANCE(336); + if (lookahead == 'X') ADVANCE(340); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(162); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead != 0 && + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(331); + END_STATE(); + case 107: + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(107) + if (lookahead == ' ') ADVANCE(160); + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(173); + if (lookahead == '-') ADVANCE(332); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(335); + if (lookahead == 'I') ADVANCE(337); + if (lookahead == 'N') ADVANCE(338); + if (lookahead == 'T') ADVANCE(339); + if (lookahead == 'W') ADVANCE(336); + if (lookahead == 'X') ADVANCE(340); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(162); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead != 0 && + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(331); + END_STATE(); + case 108: + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(108) + if (lookahead == ' ') ADVANCE(154); + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(332); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(335); + if (lookahead == 'I') ADVANCE(337); + if (lookahead == 'N') ADVANCE(338); + if (lookahead == 'T') ADVANCE(339); + if (lookahead == 'W') ADVANCE(336); + if (lookahead == 'X') ADVANCE(340); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(162); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(247); + if (lookahead != 0 && + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(331); + END_STATE(); + case 109: + if (lookahead == '\r') SKIP(109) + if (lookahead == '"') ADVANCE(351); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(354); + END_STATE(); + case 110: + if (lookahead == '\r') ADVANCE(286); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != ')') ADVANCE(287); + END_STATE(); + case 111: + if (lookahead == '\r') ADVANCE(352); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"') ADVANCE(353); + END_STATE(); + case 112: + if (lookahead == '\r') ADVANCE(323); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != ' ' && + lookahead != '=' && + lookahead != '{' && + lookahead != '}') ADVANCE(324); + END_STATE(); + case 113: + if (lookahead == ' ') ADVANCE(113); + if (lookahead == '*') ADVANCE(129); + if (lookahead == '_') ADVANCE(130); + END_STATE(); + case 114: + if (lookahead == ' ') ADVANCE(114); + if (lookahead == '_') ADVANCE(130); + END_STATE(); + case 115: + if (lookahead == ' ') ADVANCE(115); + if (lookahead == '*') ADVANCE(129); + END_STATE(); + case 116: + if (lookahead == '.') ADVANCE(183); + END_STATE(); + case 117: + if (lookahead == ':') ADVANCE(235); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ') ADVANCE(117); + END_STATE(); + case 118: + if (lookahead == 'D') ADVANCE(124); + END_STATE(); + case 119: + if (lookahead == 'E') ADVANCE(305); + END_STATE(); + case 120: + if (lookahead == 'E') ADVANCE(314); + END_STATE(); + case 121: + if (lookahead == 'F') ADVANCE(123); + END_STATE(); + case 122: + if (lookahead == 'M') ADVANCE(120); + END_STATE(); + case 123: + if (lookahead == 'O') ADVANCE(308); + END_STATE(); + case 124: + if (lookahead == 'O') ADVANCE(299); + END_STATE(); + case 125: + if (lookahead == 'P') ADVANCE(302); + END_STATE(); + case 126: + if (lookahead == 'T') ADVANCE(119); + END_STATE(); + case 127: + if (lookahead == 'X') ADVANCE(122); + END_STATE(); + case 128: + if (lookahead == 'X') ADVANCE(311); + END_STATE(); + case 129: + if (lookahead == '}') ADVANCE(176); + END_STATE(); + case 130: + if (lookahead == '}') ADVANCE(168); + END_STATE(); + case 131: + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '}') ADVANCE(348); + END_STATE(); + case 132: + if (eof) ADVANCE(145); + if (lookahead == '\t') ADVANCE(329); + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(140) + if (lookahead == ' ') ADVANCE(161); + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(332); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(335); + if (lookahead == 'I') ADVANCE(337); + if (lookahead == 'N') ADVANCE(338); + if (lookahead == 'T') ADVANCE(339); + if (lookahead == 'W') ADVANCE(336); + if (lookahead == 'X') ADVANCE(340); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(162); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(149); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead != 0 && + lookahead != 11 && + lookahead != '\f') ADVANCE(331); + END_STATE(); + case 133: + if (eof) ADVANCE(145); + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(133) + if (lookahead == ' ') ADVANCE(158); + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(351); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '%') ADVANCE(292); + if (lookahead == '(') ADVANCE(285); + if (lookahead == ')') ADVANCE(288); + if (lookahead == '*') ADVANCE(173); + if (lookahead == '+') ADVANCE(342); + if (lookahead == '-') ADVANCE(256); + if (lookahead == '.') ADVANCE(347); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == '=') ADVANCE(350); + if (lookahead == '>') ADVANCE(222); + if (lookahead == 'F') ADVANCE(263); + if (lookahead == 'I') ADVANCE(265); + if (lookahead == 'N') ADVANCE(266); + if (lookahead == 'T') ADVANCE(267); + if (lookahead == 'W') ADVANCE(262); + if (lookahead == 'X') ADVANCE(274); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(180); + if (lookahead == ']') ADVANCE(254); + if (lookahead == '^') ADVANCE(239); + if (lookahead == '_') ADVANCE(164); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(289); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '}') ADVANCE(151); + if (lookahead == '~') ADVANCE(247); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'z')) ADVANCE(275); + if (lookahead != 0 && + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(331); + END_STATE(); + case 134: + if (eof) ADVANCE(145); + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(135) + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(332); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(335); + if (lookahead == 'I') ADVANCE(337); + if (lookahead == 'N') ADVANCE(338); + if (lookahead == 'T') ADVANCE(339); + if (lookahead == 'W') ADVANCE(336); + if (lookahead == 'X') ADVANCE(340); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(162); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(329); + if (lookahead != 0 && + lookahead != 11 && + lookahead != '\f') ADVANCE(331); + END_STATE(); + case 135: + if (eof) ADVANCE(145); + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(135) + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(332); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(335); + if (lookahead == 'I') ADVANCE(337); + if (lookahead == 'N') ADVANCE(338); + if (lookahead == 'T') ADVANCE(339); + if (lookahead == 'W') ADVANCE(336); + if (lookahead == 'X') ADVANCE(340); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(162); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead != 0 && + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(331); + END_STATE(); + case 136: + if (eof) ADVANCE(145); + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(135) + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(332); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(335); + if (lookahead == 'I') ADVANCE(337); + if (lookahead == 'N') ADVANCE(338); + if (lookahead == 'T') ADVANCE(339); + if (lookahead == 'W') ADVANCE(336); + if (lookahead == 'X') ADVANCE(340); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(162); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(149); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(329); + if (lookahead != 0 && + lookahead != 11 && + lookahead != '\f') ADVANCE(331); + END_STATE(); + case 137: + if (eof) ADVANCE(145); + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(135) + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(332); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(335); + if (lookahead == 'I') ADVANCE(337); + if (lookahead == 'N') ADVANCE(338); + if (lookahead == 'T') ADVANCE(339); + if (lookahead == 'W') ADVANCE(336); + if (lookahead == 'X') ADVANCE(340); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(162); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(148); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(329); + if (lookahead != 0 && + lookahead != 11 && + lookahead != '\f') ADVANCE(331); + END_STATE(); + case 138: + if (eof) ADVANCE(145); + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(138) + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(332); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(335); + if (lookahead == 'I') ADVANCE(337); + if (lookahead == 'N') ADVANCE(338); + if (lookahead == 'T') ADVANCE(339); + if (lookahead == 'W') ADVANCE(336); + if (lookahead == 'X') ADVANCE(340); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == ']') ADVANCE(254); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(162); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead != 0 && + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(331); + END_STATE(); + case 139: + if (eof) ADVANCE(145); + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(138) + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(332); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(335); + if (lookahead == 'I') ADVANCE(337); + if (lookahead == 'N') ADVANCE(338); + if (lookahead == 'T') ADVANCE(339); + if (lookahead == 'W') ADVANCE(336); + if (lookahead == 'X') ADVANCE(340); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == ']') ADVANCE(254); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(162); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(149); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(329); + if (lookahead != 0 && + lookahead != 11 && + lookahead != '\f') ADVANCE(331); + END_STATE(); + case 140: + if (eof) ADVANCE(145); + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(140) + if (lookahead == ' ') ADVANCE(154); + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(332); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(335); + if (lookahead == 'I') ADVANCE(337); + if (lookahead == 'N') ADVANCE(338); + if (lookahead == 'T') ADVANCE(339); + if (lookahead == 'W') ADVANCE(336); + if (lookahead == 'X') ADVANCE(340); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(162); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead != 0 && + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(331); + END_STATE(); + case 141: + if (eof) ADVANCE(145); + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(141) + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(257); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(263); + if (lookahead == 'I') ADVANCE(265); + if (lookahead == 'N') ADVANCE(266); + if (lookahead == 'T') ADVANCE(267); + if (lookahead == 'W') ADVANCE(262); + if (lookahead == 'X') ADVANCE(274); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(166); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + if (lookahead != 0 && + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(331); + END_STATE(); + case 142: + if (eof) ADVANCE(145); + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(141) + if (lookahead == '!') ADVANCE(341); + if (lookahead == '"') ADVANCE(344); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(344); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(257); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ':') ADVANCE(345); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(263); + if (lookahead == 'I') ADVANCE(265); + if (lookahead == 'N') ADVANCE(266); + if (lookahead == 'T') ADVANCE(267); + if (lookahead == 'W') ADVANCE(262); + if (lookahead == 'X') ADVANCE(274); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(166); + if (lookahead == '`') ADVANCE(319); + if (lookahead == '{') ADVANCE(149); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(329); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + if (lookahead != 0 && + lookahead != 11 && + lookahead != '\f') ADVANCE(331); + END_STATE(); + case 143: + if (eof) ADVANCE(145); + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(144) + if (lookahead == '!') ADVANCE(217); + if (lookahead == '"') ADVANCE(218); + if (lookahead == '$') ADVANCE(298); + if (lookahead == '\'') ADVANCE(218); + if (lookahead == '*') ADVANCE(175); + if (lookahead == '-') ADVANCE(196); + if (lookahead == '.') ADVANCE(198); + if (lookahead == ':') ADVANCE(199); + if (lookahead == '<') ADVANCE(194); + if (lookahead == '>') ADVANCE(331); + if (lookahead == 'F') ADVANCE(205); + if (lookahead == 'I') ADVANCE(207); + if (lookahead == 'N') ADVANCE(208); + if (lookahead == 'T') ADVANCE(209); + if (lookahead == 'W') ADVANCE(204); + if (lookahead == 'X') ADVANCE(216); + if (lookahead == '[') ADVANCE(282); + if (lookahead == '\\') ADVANCE(179); + if (lookahead == '^') ADVANCE(241); + if (lookahead == '_') ADVANCE(167); + if (lookahead == '`') ADVANCE(320); + if (lookahead == '{') ADVANCE(150); + if (lookahead == '|') ADVANCE(318); + if (lookahead == '~') ADVANCE(249); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(329); + if (lookahead != 0 && + lookahead != 11 && + lookahead != '\f') ADVANCE(221); + END_STATE(); + case 144: + if (eof) ADVANCE(145); + if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\r') SKIP(144) + if (lookahead == '!') ADVANCE(217); + if (lookahead == '"') ADVANCE(218); + if (lookahead == '$') ADVANCE(298); + if (lookahead == '\'') ADVANCE(218); + if (lookahead == '*') ADVANCE(175); + if (lookahead == '-') ADVANCE(196); + if (lookahead == '.') ADVANCE(198); + if (lookahead == ':') ADVANCE(199); + if (lookahead == '<') ADVANCE(194); + if (lookahead == '>') ADVANCE(331); + if (lookahead == 'F') ADVANCE(205); + if (lookahead == 'I') ADVANCE(207); + if (lookahead == 'N') ADVANCE(208); + if (lookahead == 'T') ADVANCE(209); + if (lookahead == 'W') ADVANCE(204); + if (lookahead == 'X') ADVANCE(216); + if (lookahead == '[') ADVANCE(282); + if (lookahead == '\\') ADVANCE(179); + if (lookahead == '^') ADVANCE(241); + if (lookahead == '_') ADVANCE(167); + if (lookahead == '`') ADVANCE(320); + if (lookahead == '{') ADVANCE(291); + if (lookahead == '|') ADVANCE(318); + if (lookahead == '~') ADVANCE(249); + if (lookahead != 0 && + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(221); + END_STATE(); + case 145: + ACCEPT_TOKEN(ts_builtin_sym_end); + END_STATE(); + case 146: + ACCEPT_TOKEN(anon_sym_LBRACE); + END_STATE(); + case 147: + ACCEPT_TOKEN(anon_sym_LBRACE); + if (lookahead == '*') ADVANCE(170); + if (lookahead == '+') ADVANCE(227); + if (lookahead == '-') ADVANCE(231); + if (lookahead == '=') ADVANCE(296); + if (lookahead == '^') ADVANCE(236); + if (lookahead == '_') ADVANCE(152); + if (lookahead == '~') ADVANCE(244); + END_STATE(); + case 148: + ACCEPT_TOKEN(anon_sym_LBRACE); + if (lookahead == '"' || + lookahead == '\'') ADVANCE(181); + if (lookahead == '*') ADVANCE(170); + if (lookahead == '+') ADVANCE(227); + if (lookahead == '-') ADVANCE(231); + if (lookahead == '=') ADVANCE(296); + if (lookahead == '^') ADVANCE(236); + if (lookahead == '_') ADVANCE(152); + if (lookahead == '~') ADVANCE(244); + END_STATE(); + case 149: + ACCEPT_TOKEN(anon_sym_LBRACE); + if (lookahead == '"' || + lookahead == '\'') ADVANCE(181); + if (lookahead == '*') ADVANCE(170); + if (lookahead == '+') ADVANCE(227); + if (lookahead == '-') ADVANCE(231); + if (lookahead == '=') ADVANCE(223); + if (lookahead == '^') ADVANCE(236); + if (lookahead == '_') ADVANCE(152); + if (lookahead == '~') ADVANCE(244); + END_STATE(); + case 150: + ACCEPT_TOKEN(anon_sym_LBRACE); + if (lookahead == '"' || + lookahead == '\'') ADVANCE(182); + if (lookahead == '*') ADVANCE(171); + if (lookahead == '+') ADVANCE(228); + if (lookahead == '-') ADVANCE(232); + if (lookahead == '=') ADVANCE(224); + if (lookahead == '^') ADVANCE(237); + if (lookahead == '_') ADVANCE(153); + if (lookahead == '~') ADVANCE(245); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(221); + END_STATE(); + case 151: + ACCEPT_TOKEN(anon_sym_RBRACE); + END_STATE(); + case 152: + ACCEPT_TOKEN(anon_sym_LBRACE_); + END_STATE(); + case 153: + ACCEPT_TOKEN(anon_sym_LBRACE_); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(221); + END_STATE(); + case 154: + ACCEPT_TOKEN(anon_sym_SPACE); + END_STATE(); + case 155: + ACCEPT_TOKEN(anon_sym_SPACE); + if (lookahead == '\t') ADVANCE(329); + if (lookahead == ' ') ADVANCE(326); + if (lookahead == '*') ADVANCE(129); + if (lookahead == '_') ADVANCE(130); + END_STATE(); + case 156: + ACCEPT_TOKEN(anon_sym_SPACE); + if (lookahead == '\t') ADVANCE(329); + if (lookahead == ' ') ADVANCE(327); + if (lookahead == '_') ADVANCE(130); + END_STATE(); + case 157: + ACCEPT_TOKEN(anon_sym_SPACE); + if (lookahead == '\t') ADVANCE(329); + if (lookahead == ' ') ADVANCE(328); + if (lookahead == '*') ADVANCE(129); + END_STATE(); + case 158: + ACCEPT_TOKEN(anon_sym_SPACE); + if (lookahead == ' ') ADVANCE(113); + if (lookahead == '*') ADVANCE(129); + if (lookahead == '_') ADVANCE(130); + END_STATE(); + case 159: + ACCEPT_TOKEN(anon_sym_SPACE); + if (lookahead == ' ') ADVANCE(114); + if (lookahead == '_') ADVANCE(130); + END_STATE(); + case 160: + ACCEPT_TOKEN(anon_sym_SPACE); + if (lookahead == ' ') ADVANCE(115); + if (lookahead == '*') ADVANCE(129); + END_STATE(); + case 161: + ACCEPT_TOKEN(anon_sym_SPACE); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(329); + END_STATE(); + case 162: + ACCEPT_TOKEN(anon_sym__); + END_STATE(); + case 163: + ACCEPT_TOKEN(anon_sym__); + if (lookahead == '}') ADVANCE(168); + END_STATE(); + case 164: + ACCEPT_TOKEN(anon_sym__); + if (lookahead == '}') ADVANCE(168); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + END_STATE(); + case 165: + ACCEPT_TOKEN(anon_sym__); + if (lookahead == '}') ADVANCE(169); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(221); + END_STATE(); + case 166: + ACCEPT_TOKEN(anon_sym__); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + END_STATE(); + case 167: + ACCEPT_TOKEN(anon_sym__); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(221); + END_STATE(); + case 168: + ACCEPT_TOKEN(aux_sym_emphasis_end_token1); + END_STATE(); + case 169: + ACCEPT_TOKEN(aux_sym_emphasis_end_token1); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(221); + END_STATE(); + case 170: + ACCEPT_TOKEN(anon_sym_LBRACE_STAR); + END_STATE(); + case 171: + ACCEPT_TOKEN(anon_sym_LBRACE_STAR); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(221); + END_STATE(); + case 172: + ACCEPT_TOKEN(anon_sym_STAR); + END_STATE(); + case 173: + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '}') ADVANCE(176); + END_STATE(); + case 174: + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '}') ADVANCE(177); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(221); + END_STATE(); + case 175: + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(221); + END_STATE(); + case 176: + ACCEPT_TOKEN(aux_sym_strong_end_token1); + END_STATE(); + case 177: + ACCEPT_TOKEN(aux_sym_strong_end_token1); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(221); + END_STATE(); + case 178: + ACCEPT_TOKEN(anon_sym_BSLASH); + if (lookahead == '"' || + lookahead == '\'') ADVANCE(181); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '\\') ADVANCE(191); + END_STATE(); + case 179: + ACCEPT_TOKEN(anon_sym_BSLASH); + if (lookahead == '"' || + lookahead == '\'') ADVANCE(182); + if (lookahead == '\\') ADVANCE(221); + if (lookahead == '\t' || + lookahead == 11 || + lookahead == '\f' || + lookahead == ' ' || + lookahead == '>') ADVANCE(191); + if (lookahead != 0 && + (lookahead < '\n' || '\r' < lookahead)) ADVANCE(192); + END_STATE(); + case 180: + ACCEPT_TOKEN(anon_sym_BSLASH); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '\\') ADVANCE(191); + END_STATE(); + case 181: + ACCEPT_TOKEN(sym_quotation_marks); + END_STATE(); + case 182: + ACCEPT_TOKEN(sym_quotation_marks); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(221); + END_STATE(); + case 183: + ACCEPT_TOKEN(sym_ellipsis); + END_STATE(); + case 184: + ACCEPT_TOKEN(sym_ellipsis); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(221); + END_STATE(); + case 185: + ACCEPT_TOKEN(sym_em_dash); + END_STATE(); + case 186: + ACCEPT_TOKEN(sym_em_dash); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + END_STATE(); + case 187: + ACCEPT_TOKEN(sym_em_dash); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(221); + END_STATE(); + case 188: + ACCEPT_TOKEN(sym_en_dash); + if (lookahead == '-') ADVANCE(186); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + END_STATE(); + case 189: + ACCEPT_TOKEN(sym_en_dash); + if (lookahead == '-') ADVANCE(185); + END_STATE(); + case 190: + ACCEPT_TOKEN(sym_en_dash); + if (lookahead == '-') ADVANCE(187); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(221); + END_STATE(); + case 191: + ACCEPT_TOKEN(sym_backslash_escape); + END_STATE(); + case 192: + ACCEPT_TOKEN(sym_backslash_escape); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(221); + END_STATE(); + case 193: + ACCEPT_TOKEN(anon_sym_LT); + END_STATE(); + case 194: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(221); + END_STATE(); + case 195: + ACCEPT_TOKEN(aux_sym_autolink_token1); + if (lookahead == '-') ADVANCE(190); + if (lookahead == '}') ADVANCE(234); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(221); + END_STATE(); + case 196: + ACCEPT_TOKEN(aux_sym_autolink_token1); + if (lookahead == '-') ADVANCE(190); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(221); + END_STATE(); + case 197: + ACCEPT_TOKEN(aux_sym_autolink_token1); + if (lookahead == '.') ADVANCE(184); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(221); + END_STATE(); + case 198: + ACCEPT_TOKEN(aux_sym_autolink_token1); + if (lookahead == '.') ADVANCE(197); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(221); + END_STATE(); + case 199: + ACCEPT_TOKEN(aux_sym_autolink_token1); + if (lookahead == ':') ADVANCE(221); + if (lookahead == '>') ADVANCE(117); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ') ADVANCE(199); + END_STATE(); + case 200: + ACCEPT_TOKEN(aux_sym_autolink_token1); + if (lookahead == 'D') ADVANCE(211); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(221); + END_STATE(); + case 201: + ACCEPT_TOKEN(aux_sym_autolink_token1); + if (lookahead == 'E') ADVANCE(307); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(221); + END_STATE(); + case 202: + ACCEPT_TOKEN(aux_sym_autolink_token1); + if (lookahead == 'E') ADVANCE(316); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(221); + END_STATE(); + case 203: + ACCEPT_TOKEN(aux_sym_autolink_token1); + if (lookahead == 'F') ADVANCE(210); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(221); + END_STATE(); + case 204: + ACCEPT_TOKEN(aux_sym_autolink_token1); + if (lookahead == 'I') ADVANCE(212); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(221); + END_STATE(); + case 205: + ACCEPT_TOKEN(aux_sym_autolink_token1); + if (lookahead == 'I') ADVANCE(214); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(221); + END_STATE(); + case 206: + ACCEPT_TOKEN(aux_sym_autolink_token1); + if (lookahead == 'M') ADVANCE(202); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(221); + END_STATE(); + case 207: + ACCEPT_TOKEN(aux_sym_autolink_token1); + if (lookahead == 'N') ADVANCE(203); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(221); + END_STATE(); + case 208: + ACCEPT_TOKEN(aux_sym_autolink_token1); + if (lookahead == 'O') ADVANCE(213); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(221); + END_STATE(); + case 209: + ACCEPT_TOKEN(aux_sym_autolink_token1); + if (lookahead == 'O') ADVANCE(200); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(221); + END_STATE(); + case 210: + ACCEPT_TOKEN(aux_sym_autolink_token1); + if (lookahead == 'O') ADVANCE(310); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(221); + END_STATE(); + case 211: + ACCEPT_TOKEN(aux_sym_autolink_token1); + if (lookahead == 'O') ADVANCE(301); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(221); + END_STATE(); + case 212: + ACCEPT_TOKEN(aux_sym_autolink_token1); + if (lookahead == 'P') ADVANCE(304); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(221); + END_STATE(); + case 213: + ACCEPT_TOKEN(aux_sym_autolink_token1); + if (lookahead == 'T') ADVANCE(201); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(221); + END_STATE(); + case 214: + ACCEPT_TOKEN(aux_sym_autolink_token1); + if (lookahead == 'X') ADVANCE(206); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(221); + END_STATE(); + case 215: + ACCEPT_TOKEN(aux_sym_autolink_token1); + if (lookahead == 'X') ADVANCE(313); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(221); + END_STATE(); + case 216: + ACCEPT_TOKEN(aux_sym_autolink_token1); + if (lookahead == 'X') ADVANCE(215); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(221); + END_STATE(); + case 217: + ACCEPT_TOKEN(aux_sym_autolink_token1); + if (lookahead == '[') ADVANCE(278); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(221); + END_STATE(); + case 218: + ACCEPT_TOKEN(aux_sym_autolink_token1); + if (lookahead == '}') ADVANCE(182); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(221); + END_STATE(); + case 219: + ACCEPT_TOKEN(aux_sym_autolink_token1); + if (lookahead == '}') ADVANCE(230); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(221); + END_STATE(); + case 220: + ACCEPT_TOKEN(aux_sym_autolink_token1); + if (lookahead == '}') ADVANCE(226); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(221); + END_STATE(); + case 221: + ACCEPT_TOKEN(aux_sym_autolink_token1); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(221); + END_STATE(); + case 222: + ACCEPT_TOKEN(anon_sym_GT); + END_STATE(); + case 223: + ACCEPT_TOKEN(anon_sym_LBRACE_EQ); + END_STATE(); + case 224: + ACCEPT_TOKEN(anon_sym_LBRACE_EQ); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(221); + END_STATE(); + case 225: + ACCEPT_TOKEN(anon_sym_EQ_RBRACE); + END_STATE(); + case 226: + ACCEPT_TOKEN(anon_sym_EQ_RBRACE); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(221); + END_STATE(); + case 227: + ACCEPT_TOKEN(anon_sym_LBRACE_PLUS); + END_STATE(); + case 228: + ACCEPT_TOKEN(anon_sym_LBRACE_PLUS); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(221); + END_STATE(); + case 229: + ACCEPT_TOKEN(anon_sym_PLUS_RBRACE); + END_STATE(); + case 230: + ACCEPT_TOKEN(anon_sym_PLUS_RBRACE); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(221); + END_STATE(); + case 231: + ACCEPT_TOKEN(anon_sym_LBRACE_DASH); + END_STATE(); + case 232: + ACCEPT_TOKEN(anon_sym_LBRACE_DASH); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(221); + END_STATE(); + case 233: + ACCEPT_TOKEN(anon_sym_DASH_RBRACE); + END_STATE(); + case 234: + ACCEPT_TOKEN(anon_sym_DASH_RBRACE); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(221); + END_STATE(); + case 235: + ACCEPT_TOKEN(sym_symbol); + END_STATE(); + case 236: + ACCEPT_TOKEN(anon_sym_LBRACE_CARET); + END_STATE(); + case 237: + ACCEPT_TOKEN(anon_sym_LBRACE_CARET); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(221); + END_STATE(); + case 238: + ACCEPT_TOKEN(anon_sym_CARET); + END_STATE(); + case 239: + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '}') ADVANCE(242); + END_STATE(); + case 240: + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '}') ADVANCE(243); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(221); + END_STATE(); + case 241: + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(221); + END_STATE(); + case 242: + ACCEPT_TOKEN(anon_sym_CARET_RBRACE); + END_STATE(); + case 243: + ACCEPT_TOKEN(anon_sym_CARET_RBRACE); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(221); + END_STATE(); + case 244: + ACCEPT_TOKEN(anon_sym_LBRACE_TILDE); + END_STATE(); + case 245: + ACCEPT_TOKEN(anon_sym_LBRACE_TILDE); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(221); + END_STATE(); + case 246: + ACCEPT_TOKEN(anon_sym_TILDE); + END_STATE(); + case 247: + ACCEPT_TOKEN(anon_sym_TILDE); + if (lookahead == '}') ADVANCE(250); + END_STATE(); + case 248: + ACCEPT_TOKEN(anon_sym_TILDE); + if (lookahead == '}') ADVANCE(251); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(221); + END_STATE(); + case 249: + ACCEPT_TOKEN(anon_sym_TILDE); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(221); + END_STATE(); + case 250: + ACCEPT_TOKEN(anon_sym_TILDE_RBRACE); + END_STATE(); + case 251: + ACCEPT_TOKEN(anon_sym_TILDE_RBRACE); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(221); + END_STATE(); + case 252: + ACCEPT_TOKEN(anon_sym_LBRACK_CARET); + END_STATE(); + case 253: + ACCEPT_TOKEN(anon_sym_LBRACK_CARET); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(221); + END_STATE(); + case 254: + ACCEPT_TOKEN(anon_sym_RBRACK); + END_STATE(); + case 255: + ACCEPT_TOKEN(anon_sym_RBRACK); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(221); + END_STATE(); + case 256: + ACCEPT_TOKEN(sym__id); + if (lookahead == '-') ADVANCE(188); + if (lookahead == '}') ADVANCE(233); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + END_STATE(); + case 257: + ACCEPT_TOKEN(sym__id); + if (lookahead == '-') ADVANCE(188); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + END_STATE(); + case 258: + ACCEPT_TOKEN(sym__id); + if (lookahead == 'D') ADVANCE(269); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + END_STATE(); + case 259: + ACCEPT_TOKEN(sym__id); + if (lookahead == 'E') ADVANCE(306); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + END_STATE(); + case 260: + ACCEPT_TOKEN(sym__id); + if (lookahead == 'E') ADVANCE(315); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + END_STATE(); + case 261: + ACCEPT_TOKEN(sym__id); + if (lookahead == 'F') ADVANCE(268); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + END_STATE(); + case 262: + ACCEPT_TOKEN(sym__id); + if (lookahead == 'I') ADVANCE(270); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + END_STATE(); + case 263: + ACCEPT_TOKEN(sym__id); + if (lookahead == 'I') ADVANCE(272); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + END_STATE(); + case 264: + ACCEPT_TOKEN(sym__id); + if (lookahead == 'M') ADVANCE(260); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + END_STATE(); + case 265: + ACCEPT_TOKEN(sym__id); + if (lookahead == 'N') ADVANCE(261); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + END_STATE(); + case 266: + ACCEPT_TOKEN(sym__id); + if (lookahead == 'O') ADVANCE(271); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + END_STATE(); + case 267: + ACCEPT_TOKEN(sym__id); + if (lookahead == 'O') ADVANCE(258); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + END_STATE(); + case 268: + ACCEPT_TOKEN(sym__id); + if (lookahead == 'O') ADVANCE(309); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + END_STATE(); + case 269: + ACCEPT_TOKEN(sym__id); + if (lookahead == 'O') ADVANCE(300); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + END_STATE(); + case 270: + ACCEPT_TOKEN(sym__id); + if (lookahead == 'P') ADVANCE(303); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + END_STATE(); + case 271: + ACCEPT_TOKEN(sym__id); + if (lookahead == 'T') ADVANCE(259); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + END_STATE(); + case 272: + ACCEPT_TOKEN(sym__id); + if (lookahead == 'X') ADVANCE(264); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + END_STATE(); + case 273: + ACCEPT_TOKEN(sym__id); + if (lookahead == 'X') ADVANCE(312); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + END_STATE(); + case 274: + ACCEPT_TOKEN(sym__id); + if (lookahead == 'X') ADVANCE(273); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + END_STATE(); + case 275: + ACCEPT_TOKEN(sym__id); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + END_STATE(); + case 276: + ACCEPT_TOKEN(anon_sym_LBRACK_RBRACK); + END_STATE(); + case 277: + ACCEPT_TOKEN(anon_sym_BANG_LBRACK); + END_STATE(); + case 278: + ACCEPT_TOKEN(anon_sym_BANG_LBRACK); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(221); + END_STATE(); + case 279: + ACCEPT_TOKEN(anon_sym_LBRACK); + END_STATE(); + case 280: + ACCEPT_TOKEN(anon_sym_LBRACK); + if (lookahead == ']') ADVANCE(276); + END_STATE(); + case 281: + ACCEPT_TOKEN(anon_sym_LBRACK); + if (lookahead == '^') ADVANCE(252); + END_STATE(); + case 282: + ACCEPT_TOKEN(anon_sym_LBRACK); + if (lookahead == '^') ADVANCE(253); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(221); + END_STATE(); + case 283: + ACCEPT_TOKEN(anon_sym_RBRACK2); + END_STATE(); + case 284: + ACCEPT_TOKEN(anon_sym_RBRACK2); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(221); + END_STATE(); + case 285: + ACCEPT_TOKEN(anon_sym_LPAREN); + END_STATE(); + case 286: + ACCEPT_TOKEN(aux_sym_inline_link_destination_token1); + if (lookahead == '\r') ADVANCE(286); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != ')') ADVANCE(287); + END_STATE(); + case 287: + ACCEPT_TOKEN(aux_sym_inline_link_destination_token1); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != ')') ADVANCE(287); + END_STATE(); + case 288: + ACCEPT_TOKEN(anon_sym_RPAREN); + END_STATE(); + case 289: + ACCEPT_TOKEN(anon_sym_LBRACE2); + if (lookahead == '*') ADVANCE(170); + if (lookahead == '+') ADVANCE(227); + if (lookahead == '-') ADVANCE(231); + if (lookahead == '=') ADVANCE(223); + if (lookahead == '^') ADVANCE(236); + if (lookahead == '_') ADVANCE(152); + if (lookahead == '~') ADVANCE(244); + END_STATE(); + case 290: + ACCEPT_TOKEN(anon_sym_LBRACE2); + if (lookahead == '"' || + lookahead == '\'') ADVANCE(181); + if (lookahead == '*') ADVANCE(170); + if (lookahead == '+') ADVANCE(227); + if (lookahead == '-') ADVANCE(231); + if (lookahead == '=') ADVANCE(223); + if (lookahead == '^') ADVANCE(236); + if (lookahead == '_') ADVANCE(152); + if (lookahead == '~') ADVANCE(244); + END_STATE(); + case 291: + ACCEPT_TOKEN(anon_sym_LBRACE2); + if (lookahead == '"' || + lookahead == '\'') ADVANCE(182); + if (lookahead == '*') ADVANCE(171); + if (lookahead == '+') ADVANCE(228); + if (lookahead == '-') ADVANCE(232); + if (lookahead == '=') ADVANCE(224); + if (lookahead == '^') ADVANCE(237); + if (lookahead == '_') ADVANCE(153); + if (lookahead == '~') ADVANCE(245); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(221); + END_STATE(); + case 292: + ACCEPT_TOKEN(anon_sym_PERCENT); + END_STATE(); + case 293: + ACCEPT_TOKEN(aux_sym__comment_with_newline_token1); + END_STATE(); + case 294: + ACCEPT_TOKEN(aux_sym__comment_with_newline_token1); + if (lookahead == '\r') ADVANCE(294); + if (lookahead == '\\') ADVANCE(295); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '%') ADVANCE(293); + END_STATE(); + case 295: + ACCEPT_TOKEN(aux_sym__comment_with_newline_token1); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '\\') ADVANCE(191); + END_STATE(); + case 296: + ACCEPT_TOKEN(anon_sym_LBRACE_EQ2); + END_STATE(); + case 297: + ACCEPT_TOKEN(anon_sym_DOLLAR); + END_STATE(); + case 298: + ACCEPT_TOKEN(anon_sym_DOLLAR); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(221); + END_STATE(); + case 299: + ACCEPT_TOKEN(anon_sym_TODO); + END_STATE(); + case 300: + ACCEPT_TOKEN(anon_sym_TODO); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + END_STATE(); + case 301: + ACCEPT_TOKEN(anon_sym_TODO); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(221); + END_STATE(); + case 302: + ACCEPT_TOKEN(anon_sym_WIP); + END_STATE(); + case 303: + ACCEPT_TOKEN(anon_sym_WIP); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + END_STATE(); + case 304: + ACCEPT_TOKEN(anon_sym_WIP); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(221); + END_STATE(); + case 305: + ACCEPT_TOKEN(anon_sym_NOTE); + END_STATE(); + case 306: + ACCEPT_TOKEN(anon_sym_NOTE); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + END_STATE(); + case 307: + ACCEPT_TOKEN(anon_sym_NOTE); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(221); + END_STATE(); + case 308: + ACCEPT_TOKEN(anon_sym_INFO); + END_STATE(); + case 309: + ACCEPT_TOKEN(anon_sym_INFO); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + END_STATE(); + case 310: + ACCEPT_TOKEN(anon_sym_INFO); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(221); + END_STATE(); + case 311: + ACCEPT_TOKEN(anon_sym_XXX); + END_STATE(); + case 312: + ACCEPT_TOKEN(anon_sym_XXX); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + END_STATE(); + case 313: + ACCEPT_TOKEN(anon_sym_XXX); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(221); + END_STATE(); + case 314: + ACCEPT_TOKEN(sym_fixme); + END_STATE(); + case 315: + ACCEPT_TOKEN(sym_fixme); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + END_STATE(); + case 316: + ACCEPT_TOKEN(sym_fixme); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(221); + END_STATE(); + case 317: + ACCEPT_TOKEN(anon_sym_PIPE); + END_STATE(); + case 318: + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(221); + END_STATE(); + case 319: + ACCEPT_TOKEN(anon_sym_BQUOTE); + END_STATE(); + case 320: + ACCEPT_TOKEN(anon_sym_BQUOTE); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(221); + END_STATE(); + case 321: + ACCEPT_TOKEN(sym__verbatim_content); + if (lookahead == '\r') ADVANCE(321); + if (lookahead != 0 && + lookahead != '`') ADVANCE(322); + END_STATE(); + case 322: + ACCEPT_TOKEN(sym__verbatim_content); + if (lookahead != 0 && + lookahead != '`') ADVANCE(322); + END_STATE(); + case 323: + ACCEPT_TOKEN(sym_language); + if (lookahead == '\r') ADVANCE(323); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != ' ' && + lookahead != '=' && + lookahead != '{' && + lookahead != '}') ADVANCE(324); + END_STATE(); + case 324: + ACCEPT_TOKEN(sym_language); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != ' ' && + lookahead != '=' && + lookahead != '{' && + lookahead != '}') ADVANCE(324); + END_STATE(); + case 325: + ACCEPT_TOKEN(sym__whitespace); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(325); + END_STATE(); + case 326: + ACCEPT_TOKEN(sym__whitespace1); + if (lookahead == '\t') ADVANCE(329); + if (lookahead == ' ') ADVANCE(326); + if (lookahead == '*') ADVANCE(129); + if (lookahead == '_') ADVANCE(130); + END_STATE(); + case 327: + ACCEPT_TOKEN(sym__whitespace1); + if (lookahead == '\t') ADVANCE(329); + if (lookahead == ' ') ADVANCE(327); + if (lookahead == '_') ADVANCE(130); + END_STATE(); + case 328: + ACCEPT_TOKEN(sym__whitespace1); + if (lookahead == '\t') ADVANCE(329); + if (lookahead == ' ') ADVANCE(328); + if (lookahead == '*') ADVANCE(129); + END_STATE(); + case 329: + ACCEPT_TOKEN(sym__whitespace1); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(329); + END_STATE(); + case 330: + ACCEPT_TOKEN(sym__newline); + END_STATE(); + case 331: + ACCEPT_TOKEN(aux_sym__text_token1); + END_STATE(); + case 332: + ACCEPT_TOKEN(aux_sym__text_token1); + if (lookahead == '-') ADVANCE(189); + END_STATE(); + case 333: + ACCEPT_TOKEN(aux_sym__text_token1); + if (lookahead == '-') ADVANCE(189); + if (lookahead == '}') ADVANCE(233); + END_STATE(); + case 334: + ACCEPT_TOKEN(aux_sym__text_token1); + if (lookahead == '.') ADVANCE(116); + END_STATE(); + case 335: + ACCEPT_TOKEN(aux_sym__text_token1); + if (lookahead == 'I') ADVANCE(127); + END_STATE(); + case 336: + ACCEPT_TOKEN(aux_sym__text_token1); + if (lookahead == 'I') ADVANCE(125); + END_STATE(); + case 337: + ACCEPT_TOKEN(aux_sym__text_token1); + if (lookahead == 'N') ADVANCE(121); + END_STATE(); + case 338: + ACCEPT_TOKEN(aux_sym__text_token1); + if (lookahead == 'O') ADVANCE(126); + END_STATE(); + case 339: + ACCEPT_TOKEN(aux_sym__text_token1); + if (lookahead == 'O') ADVANCE(118); + END_STATE(); + case 340: + ACCEPT_TOKEN(aux_sym__text_token1); + if (lookahead == 'X') ADVANCE(128); + END_STATE(); + case 341: + ACCEPT_TOKEN(aux_sym__text_token1); + if (lookahead == '[') ADVANCE(277); + END_STATE(); + case 342: + ACCEPT_TOKEN(aux_sym__text_token1); + if (lookahead == '}') ADVANCE(229); + END_STATE(); + case 343: + ACCEPT_TOKEN(aux_sym__text_token1); + if (lookahead == '}') ADVANCE(225); + END_STATE(); + case 344: + ACCEPT_TOKEN(aux_sym__text_token1); + if (lookahead == '}') ADVANCE(181); + END_STATE(); + case 345: + ACCEPT_TOKEN(aux_sym__text_token1); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != ':') ADVANCE(117); + END_STATE(); + case 346: + ACCEPT_TOKEN(anon_sym_DOT); + END_STATE(); + case 347: + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(116); + END_STATE(); + case 348: + ACCEPT_TOKEN(sym_identifier); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '}') ADVANCE(348); + END_STATE(); + case 349: + ACCEPT_TOKEN(anon_sym_EQ); + END_STATE(); + case 350: + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '}') ADVANCE(225); + END_STATE(); + case 351: + ACCEPT_TOKEN(anon_sym_DQUOTE); + END_STATE(); + case 352: + ACCEPT_TOKEN(aux_sym_value_token1); + if (lookahead == '\r') ADVANCE(352); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"') ADVANCE(353); + END_STATE(); + case 353: + ACCEPT_TOKEN(aux_sym_value_token1); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"') ADVANCE(353); + END_STATE(); + case 354: + ACCEPT_TOKEN(aux_sym_value_token2); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(354); + END_STATE(); + default: + return false; + } +} + +static const TSLexMode ts_lex_modes[STATE_COUNT] = { + [0] = {.lex_state = 0}, + [1] = {.lex_state = 134}, + [2] = {.lex_state = 139}, + [3] = {.lex_state = 24}, + [4] = {.lex_state = 1}, + [5] = {.lex_state = 27}, + [6] = {.lex_state = 9}, + [7] = {.lex_state = 29}, + [8] = {.lex_state = 68}, + [9] = {.lex_state = 82}, + [10] = {.lex_state = 92}, + [11] = {.lex_state = 32}, + [12] = {.lex_state = 71}, + [13] = {.lex_state = 136}, + [14] = {.lex_state = 136}, + [15] = {.lex_state = 136}, + [16] = {.lex_state = 85}, + [17] = {.lex_state = 136}, + [18] = {.lex_state = 85}, + [19] = {.lex_state = 36}, + [20] = {.lex_state = 36}, + [21] = {.lex_state = 36}, + [22] = {.lex_state = 36}, + [23] = {.lex_state = 36}, + [24] = {.lex_state = 36}, + [25] = {.lex_state = 139}, + [26] = {.lex_state = 139}, + [27] = {.lex_state = 139}, + [28] = {.lex_state = 139}, + [29] = {.lex_state = 139}, + [30] = {.lex_state = 85}, + [31] = {.lex_state = 139}, + [32] = {.lex_state = 3}, + [33] = {.lex_state = 3}, + [34] = {.lex_state = 3}, + [35] = {.lex_state = 3}, + [36] = {.lex_state = 3}, + [37] = {.lex_state = 32}, + [38] = {.lex_state = 139}, + [39] = {.lex_state = 32}, + [40] = {.lex_state = 32}, + [41] = {.lex_state = 32}, + [42] = {.lex_state = 41}, + [43] = {.lex_state = 32}, + [44] = {.lex_state = 11}, + [45] = {.lex_state = 11}, + [46] = {.lex_state = 11}, + [47] = {.lex_state = 85}, + [48] = {.lex_state = 85}, + [49] = {.lex_state = 11}, + [50] = {.lex_state = 11}, + [51] = {.lex_state = 71}, + [52] = {.lex_state = 41}, + [53] = {.lex_state = 71}, + [54] = {.lex_state = 85}, + [55] = {.lex_state = 71}, + [56] = {.lex_state = 97}, + [57] = {.lex_state = 71}, + [58] = {.lex_state = 97}, + [59] = {.lex_state = 97}, + [60] = {.lex_state = 97}, + [61] = {.lex_state = 71}, + [62] = {.lex_state = 11}, + [63] = {.lex_state = 97}, + [64] = {.lex_state = 97}, + [65] = {.lex_state = 136}, + [66] = {.lex_state = 3}, + [67] = {.lex_state = 41}, + [68] = {.lex_state = 41}, + [69] = {.lex_state = 136}, + [70] = {.lex_state = 41}, + [71] = {.lex_state = 41}, + [72] = {.lex_state = 134}, + [73] = {.lex_state = 10}, + [74] = {.lex_state = 10}, + [75] = {.lex_state = 134}, + [76] = {.lex_state = 134}, + [77] = {.lex_state = 134}, + [78] = {.lex_state = 134}, + [79] = {.lex_state = 96}, + [80] = {.lex_state = 96}, + [81] = {.lex_state = 39}, + [82] = {.lex_state = 134}, + [83] = {.lex_state = 134}, + [84] = {.lex_state = 69}, + [85] = {.lex_state = 69}, + [86] = {.lex_state = 134}, + [87] = {.lex_state = 134}, + [88] = {.lex_state = 134}, + [89] = {.lex_state = 134}, + [90] = {.lex_state = 83}, + [91] = {.lex_state = 2}, + [92] = {.lex_state = 134}, + [93] = {.lex_state = 134}, + [94] = {.lex_state = 2}, + [95] = {.lex_state = 134}, + [96] = {.lex_state = 30}, + [97] = {.lex_state = 134}, + [98] = {.lex_state = 83}, + [99] = {.lex_state = 30}, + [100] = {.lex_state = 134}, + [101] = {.lex_state = 39}, + [102] = {.lex_state = 134}, + [103] = {.lex_state = 134}, + [104] = {.lex_state = 134}, + [105] = {.lex_state = 34}, + [106] = {.lex_state = 134}, + [107] = {.lex_state = 134}, + [108] = {.lex_state = 134}, + [109] = {.lex_state = 34}, + [110] = {.lex_state = 134}, + [111] = {.lex_state = 93}, + [112] = {.lex_state = 93}, + [113] = {.lex_state = 134}, + [114] = {.lex_state = 134}, + [115] = {.lex_state = 134}, + [116] = {.lex_state = 134}, + [117] = {.lex_state = 134}, + [118] = {.lex_state = 134}, + [119] = {.lex_state = 134}, + [120] = {.lex_state = 134}, + [121] = {.lex_state = 134}, + [122] = {.lex_state = 95}, + [123] = {.lex_state = 97}, + [124] = {.lex_state = 132}, + [125] = {.lex_state = 5}, + [126] = {.lex_state = 139}, + [127] = {.lex_state = 45}, + [128] = {.lex_state = 142}, + [129] = {.lex_state = 47}, + [130] = {.lex_state = 136}, + [131] = {.lex_state = 49}, + [132] = {.lex_state = 42}, + [133] = {.lex_state = 132}, + [134] = {.lex_state = 36}, + [135] = {.lex_state = 98}, + [136] = {.lex_state = 16}, + [137] = {.lex_state = 17}, + [138] = {.lex_state = 17}, + [139] = {.lex_state = 85}, + [140] = {.lex_state = 16}, + [141] = {.lex_state = 15}, + [142] = {.lex_state = 15}, + [143] = {.lex_state = 33}, + [144] = {.lex_state = 86}, + [145] = {.lex_state = 18}, + [146] = {.lex_state = 18}, + [147] = {.lex_state = 6}, + [148] = {.lex_state = 74}, + [149] = {.lex_state = 13}, + [150] = {.lex_state = 32}, + [151] = {.lex_state = 89}, + [152] = {.lex_state = 19}, + [153] = {.lex_state = 3}, + [154] = {.lex_state = 102}, + [155] = {.lex_state = 41}, + [156] = {.lex_state = 137}, + [157] = {.lex_state = 19}, + [158] = {.lex_state = 4}, + [159] = {.lex_state = 71}, + [160] = {.lex_state = 37}, + [161] = {.lex_state = 21}, + [162] = {.lex_state = 12}, + [163] = {.lex_state = 52}, + [164] = {.lex_state = 22}, + [165] = {.lex_state = 22}, + [166] = {.lex_state = 72}, + [167] = {.lex_state = 11}, + [168] = {.lex_state = 21}, + [169] = {.lex_state = 7}, + [170] = {.lex_state = 5}, + [171] = {.lex_state = 7}, + [172] = {.lex_state = 71}, + [173] = {.lex_state = 41}, + [174] = {.lex_state = 54}, + [175] = {.lex_state = 8}, + [176] = {.lex_state = 139}, + [177] = {.lex_state = 11}, + [178] = {.lex_state = 11}, + [179] = {.lex_state = 11}, + [180] = {.lex_state = 72}, + [181] = {.lex_state = 4}, + [182] = {.lex_state = 32}, + [183] = {.lex_state = 41}, + [184] = {.lex_state = 57}, + [185] = {.lex_state = 71}, + [186] = {.lex_state = 37}, + [187] = {.lex_state = 137}, + [188] = {.lex_state = 3}, + [189] = {.lex_state = 97}, + [190] = {.lex_state = 3}, + [191] = {.lex_state = 78}, + [192] = {.lex_state = 136}, + [193] = {.lex_state = 32}, + [194] = {.lex_state = 97}, + [195] = {.lex_state = 32}, + [196] = {.lex_state = 90}, + [197] = {.lex_state = 71}, + [198] = {.lex_state = 41}, + [199] = {.lex_state = 97}, + [200] = {.lex_state = 14}, + [201] = {.lex_state = 3}, + [202] = {.lex_state = 36}, + [203] = {.lex_state = 86}, + [204] = {.lex_state = 85}, + [205] = {.lex_state = 33}, + [206] = {.lex_state = 139}, + [207] = {.lex_state = 85}, + [208] = {.lex_state = 103}, + [209] = {.lex_state = 12}, + [210] = {.lex_state = 59}, + [211] = {.lex_state = 98}, + [212] = {.lex_state = 42}, + [213] = {.lex_state = 95}, + [214] = {.lex_state = 139}, + [215] = {.lex_state = 136}, + [216] = {.lex_state = 36}, + [217] = {.lex_state = 61}, + [218] = {.lex_state = 143}, + [219] = {.lex_state = 85}, + [220] = {.lex_state = 136}, + [221] = {.lex_state = 36}, + [222] = {.lex_state = 3}, + [223] = {.lex_state = 97}, + [224] = {.lex_state = 41}, + [225] = {.lex_state = 41}, + [226] = {.lex_state = 41}, + [227] = {.lex_state = 41}, + [228] = {.lex_state = 41}, + [229] = {.lex_state = 41}, + [230] = {.lex_state = 41}, + [231] = {.lex_state = 136}, + [232] = {.lex_state = 41}, + [233] = {.lex_state = 41}, + [234] = {.lex_state = 41}, + [235] = {.lex_state = 41}, + [236] = {.lex_state = 41}, + [237] = {.lex_state = 41}, + [238] = {.lex_state = 41}, + [239] = {.lex_state = 85}, + [240] = {.lex_state = 85}, + [241] = {.lex_state = 85}, + [242] = {.lex_state = 85}, + [243] = {.lex_state = 83}, + [244] = {.lex_state = 85}, + [245] = {.lex_state = 136}, + [246] = {.lex_state = 85}, + [247] = {.lex_state = 85}, + [248] = {.lex_state = 85}, + [249] = {.lex_state = 85}, + [250] = {.lex_state = 85}, + [251] = {.lex_state = 85}, + [252] = {.lex_state = 85}, + [253] = {.lex_state = 136}, + [254] = {.lex_state = 85}, + [255] = {.lex_state = 85}, + [256] = {.lex_state = 85}, + [257] = {.lex_state = 85}, + [258] = {.lex_state = 85}, + [259] = {.lex_state = 85}, + [260] = {.lex_state = 85}, + [261] = {.lex_state = 85}, + [262] = {.lex_state = 85}, + [263] = {.lex_state = 85}, + [264] = {.lex_state = 85}, + [265] = {.lex_state = 41}, + [266] = {.lex_state = 41}, + [267] = {.lex_state = 134}, + [268] = {.lex_state = 85}, + [269] = {.lex_state = 85}, + [270] = {.lex_state = 85}, + [271] = {.lex_state = 85}, + [272] = {.lex_state = 85}, + [273] = {.lex_state = 85}, + [274] = {.lex_state = 85}, + [275] = {.lex_state = 36}, + [276] = {.lex_state = 71}, + [277] = {.lex_state = 41}, + [278] = {.lex_state = 71}, + [279] = {.lex_state = 20}, + [280] = {.lex_state = 41}, + [281] = {.lex_state = 41}, + [282] = {.lex_state = 41}, + [283] = {.lex_state = 41}, + [284] = {.lex_state = 41}, + [285] = {.lex_state = 41}, + [286] = {.lex_state = 41}, + [287] = {.lex_state = 20}, + [288] = {.lex_state = 41}, + [289] = {.lex_state = 39}, + [290] = {.lex_state = 71}, + [291] = {.lex_state = 71}, + [292] = {.lex_state = 69}, + [293] = {.lex_state = 41}, + [294] = {.lex_state = 41}, + [295] = {.lex_state = 71}, + [296] = {.lex_state = 136}, + [297] = {.lex_state = 71}, + [298] = {.lex_state = 71}, + [299] = {.lex_state = 71}, + [300] = {.lex_state = 71}, + [301] = {.lex_state = 71}, + [302] = {.lex_state = 71}, + [303] = {.lex_state = 71}, + [304] = {.lex_state = 41}, + [305] = {.lex_state = 41}, + [306] = {.lex_state = 136}, + [307] = {.lex_state = 71}, + [308] = {.lex_state = 71}, + [309] = {.lex_state = 71}, + [310] = {.lex_state = 71}, + [311] = {.lex_state = 71}, + [312] = {.lex_state = 71}, + [313] = {.lex_state = 71}, + [314] = {.lex_state = 71}, + [315] = {.lex_state = 71}, + [316] = {.lex_state = 71}, + [317] = {.lex_state = 71}, + [318] = {.lex_state = 36}, + [319] = {.lex_state = 36}, + [320] = {.lex_state = 97}, + [321] = {.lex_state = 71}, + [322] = {.lex_state = 71}, + [323] = {.lex_state = 71}, + [324] = {.lex_state = 71}, + [325] = {.lex_state = 71}, + [326] = {.lex_state = 71}, + [327] = {.lex_state = 71}, + [328] = {.lex_state = 36}, + [329] = {.lex_state = 32}, + [330] = {.lex_state = 36}, + [331] = {.lex_state = 32}, + [332] = {.lex_state = 36}, + [333] = {.lex_state = 36}, + [334] = {.lex_state = 36}, + [335] = {.lex_state = 97}, + [336] = {.lex_state = 36}, + [337] = {.lex_state = 36}, + [338] = {.lex_state = 36}, + [339] = {.lex_state = 36}, + [340] = {.lex_state = 36}, + [341] = {.lex_state = 36}, + [342] = {.lex_state = 36}, + [343] = {.lex_state = 32}, + [344] = {.lex_state = 32}, + [345] = {.lex_state = 30}, + [346] = {.lex_state = 36}, + [347] = {.lex_state = 36}, + [348] = {.lex_state = 32}, + [349] = {.lex_state = 97}, + [350] = {.lex_state = 32}, + [351] = {.lex_state = 32}, + [352] = {.lex_state = 32}, + [353] = {.lex_state = 32}, + [354] = {.lex_state = 32}, + [355] = {.lex_state = 32}, + [356] = {.lex_state = 32}, + [357] = {.lex_state = 36}, + [358] = {.lex_state = 36}, + [359] = {.lex_state = 11}, + [360] = {.lex_state = 32}, + [361] = {.lex_state = 32}, + [362] = {.lex_state = 32}, + [363] = {.lex_state = 32}, + [364] = {.lex_state = 32}, + [365] = {.lex_state = 32}, + [366] = {.lex_state = 32}, + [367] = {.lex_state = 32}, + [368] = {.lex_state = 32}, + [369] = {.lex_state = 32}, + [370] = {.lex_state = 32}, + [371] = {.lex_state = 11}, + [372] = {.lex_state = 36}, + [373] = {.lex_state = 3}, + [374] = {.lex_state = 32}, + [375] = {.lex_state = 32}, + [376] = {.lex_state = 32}, + [377] = {.lex_state = 32}, + [378] = {.lex_state = 32}, + [379] = {.lex_state = 32}, + [380] = {.lex_state = 32}, + [381] = {.lex_state = 36}, + [382] = {.lex_state = 139}, + [383] = {.lex_state = 36}, + [384] = {.lex_state = 139}, + [385] = {.lex_state = 36}, + [386] = {.lex_state = 36}, + [387] = {.lex_state = 36}, + [388] = {.lex_state = 36}, + [389] = {.lex_state = 11}, + [390] = {.lex_state = 36}, + [391] = {.lex_state = 34}, + [392] = {.lex_state = 36}, + [393] = {.lex_state = 3}, + [394] = {.lex_state = 36}, + [395] = {.lex_state = 36}, + [396] = {.lex_state = 139}, + [397] = {.lex_state = 139}, + [398] = {.lex_state = 93}, + [399] = {.lex_state = 139}, + [400] = {.lex_state = 136}, + [401] = {.lex_state = 139}, + [402] = {.lex_state = 3}, + [403] = {.lex_state = 139}, + [404] = {.lex_state = 139}, + [405] = {.lex_state = 139}, + [406] = {.lex_state = 139}, + [407] = {.lex_state = 139}, + [408] = {.lex_state = 139}, + [409] = {.lex_state = 139}, + [410] = {.lex_state = 139}, + [411] = {.lex_state = 32}, + [412] = {.lex_state = 139}, + [413] = {.lex_state = 139}, + [414] = {.lex_state = 139}, + [415] = {.lex_state = 139}, + [416] = {.lex_state = 139}, + [417] = {.lex_state = 139}, + [418] = {.lex_state = 139}, + [419] = {.lex_state = 139}, + [420] = {.lex_state = 139}, + [421] = {.lex_state = 139}, + [422] = {.lex_state = 139}, + [423] = {.lex_state = 139}, + [424] = {.lex_state = 32}, + [425] = {.lex_state = 71}, + [426] = {.lex_state = 32}, + [427] = {.lex_state = 139}, + [428] = {.lex_state = 139}, + [429] = {.lex_state = 139}, + [430] = {.lex_state = 139}, + [431] = {.lex_state = 139}, + [432] = {.lex_state = 139}, + [433] = {.lex_state = 139}, + [434] = {.lex_state = 71}, + [435] = {.lex_state = 3}, + [436] = {.lex_state = 85}, + [437] = {.lex_state = 3}, + [438] = {.lex_state = 71}, + [439] = {.lex_state = 85}, + [440] = {.lex_state = 41}, + [441] = {.lex_state = 85}, + [442] = {.lex_state = 136}, + [443] = {.lex_state = 41}, + [444] = {.lex_state = 136}, + [445] = {.lex_state = 136}, + [446] = {.lex_state = 136}, + [447] = {.lex_state = 136}, + [448] = {.lex_state = 136}, + [449] = {.lex_state = 3}, + [450] = {.lex_state = 3}, + [451] = {.lex_state = 2}, + [452] = {.lex_state = 36}, + [453] = {.lex_state = 41}, + [454] = {.lex_state = 3}, + [455] = {.lex_state = 36}, + [456] = {.lex_state = 3}, + [457] = {.lex_state = 36}, + [458] = {.lex_state = 3}, + [459] = {.lex_state = 3}, + [460] = {.lex_state = 3}, + [461] = {.lex_state = 3}, + [462] = {.lex_state = 3}, + [463] = {.lex_state = 97}, + [464] = {.lex_state = 97}, + [465] = {.lex_state = 97}, + [466] = {.lex_state = 3}, + [467] = {.lex_state = 3}, + [468] = {.lex_state = 3}, + [469] = {.lex_state = 3}, + [470] = {.lex_state = 3}, + [471] = {.lex_state = 3}, + [472] = {.lex_state = 3}, + [473] = {.lex_state = 3}, + [474] = {.lex_state = 3}, + [475] = {.lex_state = 3}, + [476] = {.lex_state = 3}, + [477] = {.lex_state = 136}, + [478] = {.lex_state = 97}, + [479] = {.lex_state = 97}, + [480] = {.lex_state = 3}, + [481] = {.lex_state = 3}, + [482] = {.lex_state = 3}, + [483] = {.lex_state = 3}, + [484] = {.lex_state = 3}, + [485] = {.lex_state = 3}, + [486] = {.lex_state = 3}, + [487] = {.lex_state = 97}, + [488] = {.lex_state = 11}, + [489] = {.lex_state = 97}, + [490] = {.lex_state = 11}, + [491] = {.lex_state = 136}, + [492] = {.lex_state = 136}, + [493] = {.lex_state = 136}, + [494] = {.lex_state = 136}, + [495] = {.lex_state = 136}, + [496] = {.lex_state = 136}, + [497] = {.lex_state = 97}, + [498] = {.lex_state = 97}, + [499] = {.lex_state = 136}, + [500] = {.lex_state = 136}, + [501] = {.lex_state = 136}, + [502] = {.lex_state = 11}, + [503] = {.lex_state = 11}, + [504] = {.lex_state = 10}, + [505] = {.lex_state = 136}, + [506] = {.lex_state = 136}, + [507] = {.lex_state = 11}, + [508] = {.lex_state = 97}, + [509] = {.lex_state = 11}, + [510] = {.lex_state = 11}, + [511] = {.lex_state = 11}, + [512] = {.lex_state = 11}, + [513] = {.lex_state = 11}, + [514] = {.lex_state = 11}, + [515] = {.lex_state = 11}, + [516] = {.lex_state = 136}, + [517] = {.lex_state = 136}, + [518] = {.lex_state = 97}, + [519] = {.lex_state = 11}, + [520] = {.lex_state = 11}, + [521] = {.lex_state = 11}, + [522] = {.lex_state = 11}, + [523] = {.lex_state = 11}, + [524] = {.lex_state = 11}, + [525] = {.lex_state = 11}, + [526] = {.lex_state = 11}, + [527] = {.lex_state = 11}, + [528] = {.lex_state = 11}, + [529] = {.lex_state = 11}, + [530] = {.lex_state = 97}, + [531] = {.lex_state = 97}, + [532] = {.lex_state = 97}, + [533] = {.lex_state = 11}, + [534] = {.lex_state = 11}, + [535] = {.lex_state = 11}, + [536] = {.lex_state = 11}, + [537] = {.lex_state = 11}, + [538] = {.lex_state = 11}, + [539] = {.lex_state = 11}, + [540] = {.lex_state = 97}, + [541] = {.lex_state = 97}, + [542] = {.lex_state = 97}, + [543] = {.lex_state = 97}, + [544] = {.lex_state = 97}, + [545] = {.lex_state = 97}, + [546] = {.lex_state = 136}, + [547] = {.lex_state = 97}, + [548] = {.lex_state = 20}, + [549] = {.lex_state = 41}, + [550] = {.lex_state = 136}, + [551] = {.lex_state = 136}, + [552] = {.lex_state = 136}, + [553] = {.lex_state = 136}, + [554] = {.lex_state = 136}, + [555] = {.lex_state = 97}, + [556] = {.lex_state = 97}, + [557] = {.lex_state = 96}, + [558] = {.lex_state = 97}, + [559] = {.lex_state = 136}, + [560] = {.lex_state = 97}, + [561] = {.lex_state = 97}, + [562] = {.lex_state = 97}, + [563] = {.lex_state = 97}, + [564] = {.lex_state = 97}, + [565] = {.lex_state = 96}, + [566] = {.lex_state = 39}, + [567] = {.lex_state = 83}, + [568] = {.lex_state = 134}, + [569] = {.lex_state = 83}, + [570] = {.lex_state = 83}, + [571] = {.lex_state = 96}, + [572] = {.lex_state = 69}, + [573] = {.lex_state = 34}, + [574] = {.lex_state = 39}, + [575] = {.lex_state = 30}, + [576] = {.lex_state = 10}, + [577] = {.lex_state = 39}, + [578] = {.lex_state = 69}, + [579] = {.lex_state = 10}, + [580] = {.lex_state = 10}, + [581] = {.lex_state = 30}, + [582] = {.lex_state = 34}, + [583] = {.lex_state = 134}, + [584] = {.lex_state = 69}, + [585] = {.lex_state = 30}, + [586] = {.lex_state = 2}, + [587] = {.lex_state = 134}, + [588] = {.lex_state = 2}, + [589] = {.lex_state = 93}, + [590] = {.lex_state = 2}, + [591] = {.lex_state = 93}, + [592] = {.lex_state = 34}, + [593] = {.lex_state = 96}, + [594] = {.lex_state = 93}, + [595] = {.lex_state = 63}, + [596] = {.lex_state = 63}, + [597] = {.lex_state = 63}, + [598] = {.lex_state = 63}, + [599] = {.lex_state = 63}, + [600] = {.lex_state = 63}, + [601] = {.lex_state = 63}, + [602] = {.lex_state = 63}, + [603] = {.lex_state = 63}, + [604] = {.lex_state = 63}, + [605] = {.lex_state = 63}, + [606] = {.lex_state = 63}, + [607] = {.lex_state = 63}, + [608] = {.lex_state = 63}, + [609] = {.lex_state = 63}, + [610] = {.lex_state = 63}, + [611] = {.lex_state = 63}, + [612] = {.lex_state = 63}, + [613] = {.lex_state = 63}, + [614] = {.lex_state = 63}, + [615] = {.lex_state = 63}, + [616] = {.lex_state = 63}, + [617] = {.lex_state = 63}, + [618] = {.lex_state = 63}, + [619] = {.lex_state = 63}, + [620] = {.lex_state = 63}, + [621] = {.lex_state = 63}, + [622] = {.lex_state = 63}, + [623] = {.lex_state = 63}, + [624] = {.lex_state = 63}, + [625] = {.lex_state = 63}, + [626] = {.lex_state = 63}, + [627] = {.lex_state = 63}, + [628] = {.lex_state = 63}, + [629] = {.lex_state = 63}, + [630] = {.lex_state = 63}, + [631] = {.lex_state = 63}, + [632] = {.lex_state = 63}, + [633] = {.lex_state = 63}, + [634] = {.lex_state = 63}, + [635] = {.lex_state = 63}, + [636] = {.lex_state = 63}, + [637] = {.lex_state = 63}, + [638] = {.lex_state = 63}, + [639] = {.lex_state = 63}, + [640] = {.lex_state = 63}, + [641] = {.lex_state = 63}, + [642] = {.lex_state = 63}, + [643] = {.lex_state = 63}, + [644] = {.lex_state = 63}, + [645] = {.lex_state = 63}, + [646] = {.lex_state = 63}, + [647] = {.lex_state = 63}, + [648] = {.lex_state = 63}, + [649] = {.lex_state = 63}, + [650] = {.lex_state = 63}, + [651] = {.lex_state = 63}, + [652] = {.lex_state = 63}, + [653] = {.lex_state = 63}, + [654] = {.lex_state = 65}, + [655] = {.lex_state = 63}, + [656] = {.lex_state = 63}, + [657] = {.lex_state = 63}, + [658] = {.lex_state = 63}, + [659] = {.lex_state = 63}, + [660] = {.lex_state = 63}, + [661] = {.lex_state = 63}, + [662] = {.lex_state = 63}, + [663] = {.lex_state = 63}, + [664] = {.lex_state = 63}, + [665] = {.lex_state = 63}, + [666] = {.lex_state = 63}, + [667] = {.lex_state = 63}, + [668] = {.lex_state = 65}, + [669] = {.lex_state = 63}, + [670] = {.lex_state = 63}, + [671] = {.lex_state = 63}, + [672] = {.lex_state = 63}, + [673] = {.lex_state = 63}, + [674] = {.lex_state = 65}, + [675] = {.lex_state = 63}, + [676] = {.lex_state = 63}, + [677] = {.lex_state = 63}, + [678] = {.lex_state = 65}, + [679] = {.lex_state = 0}, + [680] = {.lex_state = 1}, + [681] = {.lex_state = 1}, + [682] = {.lex_state = 0}, + [683] = {.lex_state = 1}, + [684] = {.lex_state = 0}, + [685] = {.lex_state = 0}, + [686] = {.lex_state = 1}, + [687] = {.lex_state = 0}, + [688] = {.lex_state = 1}, + [689] = {.lex_state = 1}, + [690] = {.lex_state = 0}, + [691] = {.lex_state = 1}, + [692] = {.lex_state = 1}, + [693] = {.lex_state = 0}, + [694] = {.lex_state = 0}, + [695] = {.lex_state = 0}, + [696] = {.lex_state = 63}, + [697] = {.lex_state = 1}, + [698] = {.lex_state = 0}, + [699] = {.lex_state = 1}, + [700] = {.lex_state = 109}, + [701] = {.lex_state = 63}, + [702] = {.lex_state = 0}, + [703] = {.lex_state = 0}, + [704] = {.lex_state = 0}, + [705] = {.lex_state = 0}, + [706] = {.lex_state = 63}, + [707] = {.lex_state = 63}, + [708] = {.lex_state = 63}, + [709] = {.lex_state = 0}, + [710] = {.lex_state = 0}, + [711] = {.lex_state = 0}, + [712] = {.lex_state = 63}, + [713] = {.lex_state = 63}, + [714] = {.lex_state = 0}, + [715] = {.lex_state = 0}, + [716] = {.lex_state = 0}, + [717] = {.lex_state = 0}, + [718] = {.lex_state = 0}, + [719] = {.lex_state = 0}, + [720] = {.lex_state = 0}, + [721] = {.lex_state = 0}, + [722] = {.lex_state = 0}, + [723] = {.lex_state = 0}, + [724] = {.lex_state = 0}, + [725] = {.lex_state = 0}, + [726] = {.lex_state = 0}, + [727] = {.lex_state = 0}, + [728] = {.lex_state = 63}, + [729] = {.lex_state = 0}, + [730] = {.lex_state = 0}, + [731] = {.lex_state = 63}, + [732] = {.lex_state = 63}, + [733] = {.lex_state = 0}, + [734] = {.lex_state = 0}, + [735] = {.lex_state = 0}, + [736] = {.lex_state = 0}, + [737] = {.lex_state = 0}, + [738] = {.lex_state = 0}, + [739] = {.lex_state = 63}, + [740] = {.lex_state = 63}, + [741] = {.lex_state = 0}, + [742] = {.lex_state = 63}, + [743] = {.lex_state = 0}, + [744] = {.lex_state = 0}, + [745] = {.lex_state = 0}, + [746] = {.lex_state = 0}, + [747] = {.lex_state = 0}, + [748] = {.lex_state = 0}, + [749] = {.lex_state = 0}, + [750] = {.lex_state = 0}, + [751] = {.lex_state = 0}, + [752] = {.lex_state = 0}, + [753] = {.lex_state = 24}, + [754] = {.lex_state = 63}, + [755] = {.lex_state = 63}, + [756] = {.lex_state = 24}, + [757] = {.lex_state = 0}, + [758] = {.lex_state = 0}, + [759] = {.lex_state = 139}, + [760] = {.lex_state = 0}, + [761] = {.lex_state = 63}, + [762] = {.lex_state = 63}, + [763] = {.lex_state = 0}, + [764] = {.lex_state = 63}, + [765] = {.lex_state = 63}, + [766] = {.lex_state = 0}, + [767] = {.lex_state = 63}, + [768] = {.lex_state = 24}, + [769] = {.lex_state = 0}, + [770] = {.lex_state = 0}, + [771] = {.lex_state = 139}, + [772] = {.lex_state = 139}, + [773] = {.lex_state = 63}, + [774] = {.lex_state = 0}, + [775] = {.lex_state = 63}, + [776] = {.lex_state = 63}, + [777] = {.lex_state = 0}, + [778] = {.lex_state = 0}, + [779] = {.lex_state = 0}, + [780] = {.lex_state = 63}, + [781] = {.lex_state = 24}, + [782] = {.lex_state = 0}, + [783] = {.lex_state = 0}, + [784] = {.lex_state = 139}, + [785] = {.lex_state = 110}, + [786] = {.lex_state = 63}, + [787] = {.lex_state = 63}, + [788] = {.lex_state = 0}, + [789] = {.lex_state = 63}, + [790] = {.lex_state = 63}, + [791] = {.lex_state = 0}, + [792] = {.lex_state = 0}, + [793] = {.lex_state = 63}, + [794] = {.lex_state = 63}, + [795] = {.lex_state = 63}, + [796] = {.lex_state = 139}, + [797] = {.lex_state = 0}, + [798] = {.lex_state = 0}, + [799] = {.lex_state = 63}, + [800] = {.lex_state = 63}, + [801] = {.lex_state = 139}, + [802] = {.lex_state = 0}, + [803] = {.lex_state = 0}, + [804] = {.lex_state = 63}, + [805] = {.lex_state = 0}, + [806] = {.lex_state = 63}, + [807] = {.lex_state = 63}, + [808] = {.lex_state = 63}, + [809] = {.lex_state = 0}, + [810] = {.lex_state = 63}, + [811] = {.lex_state = 63}, + [812] = {.lex_state = 0}, + [813] = {.lex_state = 63}, + [814] = {.lex_state = 63}, + [815] = {.lex_state = 24}, + [816] = {.lex_state = 139}, + [817] = {.lex_state = 139}, + [818] = {.lex_state = 0}, + [819] = {.lex_state = 0}, + [820] = {.lex_state = 0}, + [821] = {.lex_state = 24}, + [822] = {.lex_state = 63}, + [823] = {.lex_state = 0}, + [824] = {.lex_state = 321}, + [825] = {.lex_state = 63}, + [826] = {.lex_state = 63}, + [827] = {.lex_state = 111}, + [828] = {.lex_state = 112}, + [829] = {.lex_state = 0}, + [830] = {.lex_state = 63}, + [831] = {.lex_state = 0}, + [832] = {.lex_state = 63}, + [833] = {.lex_state = 139}, + [834] = {.lex_state = 321}, + [835] = {.lex_state = 139}, + [836] = {.lex_state = 321}, + [837] = {.lex_state = 24}, + [838] = {.lex_state = 63}, + [839] = {.lex_state = 110}, + [840] = {.lex_state = 112}, + [841] = {.lex_state = 139}, + [842] = {.lex_state = 139}, + [843] = {.lex_state = 321}, + [844] = {.lex_state = 139}, + [845] = {.lex_state = 321}, + [846] = {.lex_state = 0}, + [847] = {.lex_state = 0}, + [848] = {.lex_state = 110}, + [849] = {.lex_state = 112}, + [850] = {.lex_state = 0}, + [851] = {.lex_state = 0}, + [852] = {.lex_state = 321}, + [853] = {.lex_state = 139}, + [854] = {.lex_state = 321}, + [855] = {.lex_state = 63}, + [856] = {.lex_state = 0}, + [857] = {.lex_state = 110}, + [858] = {.lex_state = 112}, + [859] = {.lex_state = 24}, + [860] = {.lex_state = 63}, + [861] = {.lex_state = 321}, + [862] = {.lex_state = 139}, + [863] = {.lex_state = 321}, + [864] = {.lex_state = 63}, + [865] = {.lex_state = 0}, + [866] = {.lex_state = 110}, + [867] = {.lex_state = 112}, + [868] = {.lex_state = 63}, + [869] = {.lex_state = 24}, + [870] = {.lex_state = 321}, + [871] = {.lex_state = 139}, + [872] = {.lex_state = 321}, + [873] = {.lex_state = 139}, + [874] = {.lex_state = 139}, + [875] = {.lex_state = 110}, + [876] = {.lex_state = 112}, + [877] = {.lex_state = 63}, + [878] = {.lex_state = 321}, + [879] = {.lex_state = 321}, + [880] = {.lex_state = 139}, + [881] = {.lex_state = 321}, + [882] = {.lex_state = 0}, + [883] = {.lex_state = 0}, + [884] = {.lex_state = 110}, + [885] = {.lex_state = 112}, + [886] = {.lex_state = 325}, + [887] = {.lex_state = 0}, + [888] = {.lex_state = 321}, + [889] = {.lex_state = 139}, + [890] = {.lex_state = 321}, + [891] = {.lex_state = 24}, + [892] = {.lex_state = 0}, + [893] = {.lex_state = 110}, + [894] = {.lex_state = 112}, + [895] = {.lex_state = 63}, + [896] = {.lex_state = 321}, + [897] = {.lex_state = 321}, + [898] = {.lex_state = 139}, + [899] = {.lex_state = 321}, + [900] = {.lex_state = 63}, + [901] = {.lex_state = 0}, + [902] = {.lex_state = 110}, + [903] = {.lex_state = 112}, + [904] = {.lex_state = 63}, + [905] = {.lex_state = 0}, + [906] = {.lex_state = 321}, + [907] = {.lex_state = 139}, + [908] = {.lex_state = 321}, + [909] = {.lex_state = 63}, + [910] = {.lex_state = 0}, + [911] = {.lex_state = 110}, + [912] = {.lex_state = 112}, +}; + +static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { + [0] = { + [ts_builtin_sym_end] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(1), + [anon_sym_RBRACE] = ACTIONS(1), + [anon_sym_LBRACE_] = ACTIONS(1), + [anon_sym_SPACE] = ACTIONS(1), + [anon_sym__] = ACTIONS(1), + [aux_sym_emphasis_end_token1] = ACTIONS(1), + [anon_sym_LBRACE_STAR] = ACTIONS(1), + [anon_sym_STAR] = ACTIONS(1), + [aux_sym_strong_end_token1] = ACTIONS(1), + [anon_sym_BSLASH] = ACTIONS(1), + [sym_ellipsis] = ACTIONS(1), + [sym_em_dash] = ACTIONS(1), + [sym_en_dash] = ACTIONS(1), + [sym_backslash_escape] = ACTIONS(1), + [anon_sym_LT] = ACTIONS(1), + [anon_sym_GT] = ACTIONS(1), + [anon_sym_LBRACE_EQ] = ACTIONS(1), + [anon_sym_EQ_RBRACE] = ACTIONS(1), + [anon_sym_LBRACE_PLUS] = ACTIONS(1), + [anon_sym_PLUS_RBRACE] = ACTIONS(1), + [anon_sym_LBRACE_DASH] = ACTIONS(1), + [anon_sym_DASH_RBRACE] = ACTIONS(1), + [sym_symbol] = ACTIONS(1), + [anon_sym_LBRACE_CARET] = ACTIONS(1), + [anon_sym_CARET] = ACTIONS(1), + [anon_sym_CARET_RBRACE] = ACTIONS(1), + [anon_sym_LBRACE_TILDE] = ACTIONS(1), + [anon_sym_TILDE] = ACTIONS(1), + [anon_sym_TILDE_RBRACE] = ACTIONS(1), + [anon_sym_LBRACK_CARET] = ACTIONS(1), + [anon_sym_RBRACK] = ACTIONS(1), + [sym__id] = ACTIONS(1), + [anon_sym_BANG_LBRACK] = ACTIONS(1), + [anon_sym_LBRACK] = ACTIONS(1), + [anon_sym_RBRACK2] = ACTIONS(1), + [anon_sym_LPAREN] = ACTIONS(1), + [anon_sym_RPAREN] = ACTIONS(1), + [anon_sym_LBRACE2] = ACTIONS(1), + [anon_sym_PERCENT] = ACTIONS(1), + [anon_sym_LBRACE_EQ2] = ACTIONS(1), + [anon_sym_DOLLAR] = ACTIONS(1), + [anon_sym_TODO] = ACTIONS(1), + [anon_sym_WIP] = ACTIONS(1), + [anon_sym_NOTE] = ACTIONS(1), + [anon_sym_INFO] = ACTIONS(1), + [anon_sym_XXX] = ACTIONS(1), + [sym_fixme] = ACTIONS(1), + [anon_sym_PIPE] = ACTIONS(1), + [anon_sym_BQUOTE] = ACTIONS(1), + [sym__whitespace1] = ACTIONS(1), + [sym__newline] = ACTIONS(1), + [aux_sym__text_token1] = ACTIONS(1), + [anon_sym_DOT] = ACTIONS(1), + [anon_sym_EQ] = ACTIONS(1), + [anon_sym_DQUOTE] = ACTIONS(1), + }, + [1] = { + [sym_inline] = STATE(892), + [sym__inline] = STATE(887), + [sym__element] = STATE(107), + [sym_emphasis] = STATE(220), + [sym_emphasis_begin] = STATE(115), + [sym_strong] = STATE(220), + [sym_strong_begin] = STATE(114), + [sym__hard_line_break] = STATE(220), + [sym_hard_line_break] = STATE(220), + [sym__smart_punctuation] = STATE(220), + [sym_autolink] = STATE(220), + [sym_highlighted] = STATE(220), + [sym_insert] = STATE(220), + [sym_delete] = STATE(220), + [sym_superscript] = STATE(220), + [sym_subscript] = STATE(220), + [sym_footnote_reference] = STATE(220), + [sym__image] = STATE(220), + [sym_full_reference_image] = STATE(220), + [sym_collapsed_reference_image] = STATE(220), + [sym_inline_image] = STATE(220), + [sym__image_description] = STATE(653), + [sym__link] = STATE(220), + [sym_full_reference_link] = STATE(220), + [sym_collapsed_reference_link] = STATE(220), + [sym_inline_link] = STATE(220), + [sym_link_text] = STATE(661), + [sym__comment_with_spaces] = STATE(220), + [sym_span] = STATE(220), + [sym_raw_inline] = STATE(220), + [sym_math] = STATE(220), + [sym_verbatim] = STATE(220), + [sym__todo_highlights] = STATE(220), + [sym_todo] = STATE(220), + [sym_note] = STATE(220), + [sym__symbol_fallback] = STATE(220), + [sym__verbatim_begin] = STATE(878), + [aux_sym__text] = STATE(130), + [aux_sym__inline_repeat1] = STATE(107), + [anon_sym_LBRACE_] = ACTIONS(3), + [anon_sym__] = ACTIONS(5), + [anon_sym_LBRACE_STAR] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(9), + [anon_sym_BSLASH] = ACTIONS(11), + [sym_quotation_marks] = ACTIONS(13), + [sym_ellipsis] = ACTIONS(13), + [sym_em_dash] = ACTIONS(13), + [sym_en_dash] = ACTIONS(15), + [sym_backslash_escape] = ACTIONS(15), + [anon_sym_LT] = ACTIONS(17), + [anon_sym_LBRACE_EQ] = ACTIONS(19), + [anon_sym_LBRACE_PLUS] = ACTIONS(21), + [anon_sym_LBRACE_DASH] = ACTIONS(23), + [sym_symbol] = ACTIONS(13), + [anon_sym_LBRACE_CARET] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_LBRACE_TILDE] = ACTIONS(27), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_LBRACK_CARET] = ACTIONS(29), + [anon_sym_BANG_LBRACK] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACE2] = ACTIONS(15), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_TODO] = ACTIONS(37), + [anon_sym_WIP] = ACTIONS(37), + [anon_sym_NOTE] = ACTIONS(39), + [anon_sym_INFO] = ACTIONS(39), + [anon_sym_XXX] = ACTIONS(39), + [sym_fixme] = ACTIONS(13), + [anon_sym_PIPE] = ACTIONS(13), + [anon_sym_BQUOTE] = ACTIONS(41), + [sym__whitespace1] = ACTIONS(43), + [sym__newline] = ACTIONS(45), + [aux_sym__text_token1] = ACTIONS(47), + }, + [2] = { + [sym__inline] = STATE(833), + [sym__element] = STATE(112), + [sym_emphasis] = STATE(206), + [sym_emphasis_begin] = STATE(108), + [sym_strong] = STATE(206), + [sym_strong_begin] = STATE(110), + [sym__hard_line_break] = STATE(206), + [sym_hard_line_break] = STATE(206), + [sym__smart_punctuation] = STATE(206), + [sym_autolink] = STATE(206), + [sym_highlighted] = STATE(206), + [sym_insert] = STATE(206), + [sym_delete] = STATE(206), + [sym_superscript] = STATE(206), + [sym_subscript] = STATE(206), + [sym_footnote_reference] = STATE(206), + [sym__image] = STATE(206), + [sym_full_reference_image] = STATE(206), + [sym_collapsed_reference_image] = STATE(206), + [sym_inline_image] = STATE(206), + [sym__image_description] = STATE(664), + [sym__link] = STATE(206), + [sym_full_reference_link] = STATE(206), + [sym_collapsed_reference_link] = STATE(206), + [sym_inline_link] = STATE(206), + [sym_link_text] = STATE(663), + [sym__comment_with_spaces] = STATE(206), + [sym_span] = STATE(206), + [sym_raw_inline] = STATE(206), + [sym_math] = STATE(206), + [sym_verbatim] = STATE(206), + [sym__todo_highlights] = STATE(206), + [sym_todo] = STATE(206), + [sym_note] = STATE(206), + [sym__symbol_fallback] = STATE(206), + [sym__verbatim_begin] = STATE(879), + [aux_sym__text] = STATE(126), + [aux_sym__inline_repeat1] = STATE(112), + [ts_builtin_sym_end] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE_] = ACTIONS(53), + [anon_sym__] = ACTIONS(56), + [anon_sym_LBRACE_STAR] = ACTIONS(59), + [anon_sym_STAR] = ACTIONS(62), + [anon_sym_BSLASH] = ACTIONS(65), + [sym_quotation_marks] = ACTIONS(68), + [sym_ellipsis] = ACTIONS(68), + [sym_em_dash] = ACTIONS(68), + [sym_en_dash] = ACTIONS(71), + [sym_backslash_escape] = ACTIONS(71), + [anon_sym_LT] = ACTIONS(74), + [anon_sym_LBRACE_EQ] = ACTIONS(77), + [anon_sym_LBRACE_PLUS] = ACTIONS(80), + [anon_sym_LBRACE_DASH] = ACTIONS(83), + [sym_symbol] = ACTIONS(68), + [anon_sym_LBRACE_CARET] = ACTIONS(86), + [anon_sym_CARET] = ACTIONS(86), + [anon_sym_LBRACE_TILDE] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(89), + [anon_sym_LBRACK_CARET] = ACTIONS(92), + [anon_sym_RBRACK] = ACTIONS(95), + [anon_sym_BANG_LBRACK] = ACTIONS(97), + [anon_sym_LBRACK] = ACTIONS(100), + [anon_sym_LBRACE2] = ACTIONS(71), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_TODO] = ACTIONS(106), + [anon_sym_WIP] = ACTIONS(106), + [anon_sym_NOTE] = ACTIONS(109), + [anon_sym_INFO] = ACTIONS(109), + [anon_sym_XXX] = ACTIONS(109), + [sym_fixme] = ACTIONS(68), + [anon_sym_PIPE] = ACTIONS(68), + [anon_sym_BQUOTE] = ACTIONS(112), + [sym__whitespace1] = ACTIONS(115), + [sym__newline] = ACTIONS(118), + [aux_sym__text_token1] = ACTIONS(121), + }, + [3] = { + [sym__inline] = STATE(833), + [sym__element] = STATE(112), + [sym_emphasis] = STATE(206), + [sym_emphasis_begin] = STATE(108), + [sym_strong] = STATE(206), + [sym_strong_begin] = STATE(110), + [sym__hard_line_break] = STATE(206), + [sym_hard_line_break] = STATE(206), + [sym__smart_punctuation] = STATE(206), + [sym_autolink] = STATE(206), + [sym_highlighted] = STATE(206), + [sym_insert] = STATE(206), + [sym_delete] = STATE(206), + [sym_superscript] = STATE(206), + [sym_subscript] = STATE(206), + [sym_footnote_reference] = STATE(206), + [sym__image] = STATE(206), + [sym_full_reference_image] = STATE(206), + [sym_collapsed_reference_image] = STATE(206), + [sym_inline_image] = STATE(206), + [sym__image_description] = STATE(664), + [sym__link] = STATE(206), + [sym_full_reference_link] = STATE(206), + [sym_collapsed_reference_link] = STATE(206), + [sym_inline_link] = STATE(206), + [sym_link_text] = STATE(663), + [sym__comment_with_spaces] = STATE(206), + [sym_span] = STATE(206), + [sym_raw_inline] = STATE(206), + [sym_math] = STATE(206), + [sym_verbatim] = STATE(206), + [sym__todo_highlights] = STATE(206), + [sym_todo] = STATE(206), + [sym_note] = STATE(206), + [sym__symbol_fallback] = STATE(206), + [sym__verbatim_begin] = STATE(879), + [aux_sym__text] = STATE(126), + [aux_sym__inline_repeat1] = STATE(112), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE_] = ACTIONS(53), + [anon_sym__] = ACTIONS(56), + [anon_sym_LBRACE_STAR] = ACTIONS(59), + [anon_sym_STAR] = ACTIONS(62), + [anon_sym_BSLASH] = ACTIONS(65), + [sym_quotation_marks] = ACTIONS(68), + [sym_ellipsis] = ACTIONS(68), + [sym_em_dash] = ACTIONS(68), + [sym_en_dash] = ACTIONS(71), + [sym_backslash_escape] = ACTIONS(71), + [anon_sym_LT] = ACTIONS(74), + [anon_sym_LBRACE_EQ] = ACTIONS(77), + [anon_sym_EQ_RBRACE] = ACTIONS(49), + [anon_sym_LBRACE_PLUS] = ACTIONS(80), + [anon_sym_LBRACE_DASH] = ACTIONS(83), + [sym_symbol] = ACTIONS(68), + [anon_sym_LBRACE_CARET] = ACTIONS(86), + [anon_sym_CARET] = ACTIONS(86), + [anon_sym_LBRACE_TILDE] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(89), + [anon_sym_LBRACK_CARET] = ACTIONS(92), + [anon_sym_RBRACK] = ACTIONS(95), + [anon_sym_BANG_LBRACK] = ACTIONS(97), + [anon_sym_LBRACK] = ACTIONS(100), + [anon_sym_LBRACE2] = ACTIONS(71), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_TODO] = ACTIONS(106), + [anon_sym_WIP] = ACTIONS(106), + [anon_sym_NOTE] = ACTIONS(109), + [anon_sym_INFO] = ACTIONS(109), + [anon_sym_XXX] = ACTIONS(109), + [sym_fixme] = ACTIONS(68), + [anon_sym_PIPE] = ACTIONS(68), + [anon_sym_BQUOTE] = ACTIONS(112), + [sym__whitespace1] = ACTIONS(115), + [sym__newline] = ACTIONS(118), + [aux_sym__text_token1] = ACTIONS(121), + }, + [4] = { + [sym__inline] = STATE(833), + [sym__element] = STATE(112), + [sym_emphasis] = STATE(206), + [sym_emphasis_begin] = STATE(108), + [sym_strong] = STATE(206), + [sym_strong_begin] = STATE(110), + [sym__hard_line_break] = STATE(206), + [sym_hard_line_break] = STATE(206), + [sym__smart_punctuation] = STATE(206), + [sym_autolink] = STATE(206), + [sym_highlighted] = STATE(206), + [sym_insert] = STATE(206), + [sym_delete] = STATE(206), + [sym_superscript] = STATE(206), + [sym_subscript] = STATE(206), + [sym_footnote_reference] = STATE(206), + [sym__image] = STATE(206), + [sym_full_reference_image] = STATE(206), + [sym_collapsed_reference_image] = STATE(206), + [sym_inline_image] = STATE(206), + [sym__image_description] = STATE(664), + [sym__link] = STATE(206), + [sym_full_reference_link] = STATE(206), + [sym_collapsed_reference_link] = STATE(206), + [sym_inline_link] = STATE(206), + [sym_link_text] = STATE(663), + [sym__comment_with_spaces] = STATE(206), + [sym_span] = STATE(206), + [sym_raw_inline] = STATE(206), + [sym_math] = STATE(206), + [sym_verbatim] = STATE(206), + [sym__todo_highlights] = STATE(206), + [sym_todo] = STATE(206), + [sym_note] = STATE(206), + [sym__symbol_fallback] = STATE(206), + [sym__verbatim_begin] = STATE(879), + [aux_sym__text] = STATE(126), + [aux_sym__inline_repeat1] = STATE(112), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE_] = ACTIONS(53), + [anon_sym__] = ACTIONS(124), + [aux_sym_emphasis_end_token1] = ACTIONS(49), + [anon_sym_LBRACE_STAR] = ACTIONS(59), + [anon_sym_STAR] = ACTIONS(62), + [anon_sym_BSLASH] = ACTIONS(65), + [sym_quotation_marks] = ACTIONS(68), + [sym_ellipsis] = ACTIONS(68), + [sym_em_dash] = ACTIONS(68), + [sym_en_dash] = ACTIONS(71), + [sym_backslash_escape] = ACTIONS(71), + [anon_sym_LT] = ACTIONS(74), + [anon_sym_LBRACE_EQ] = ACTIONS(77), + [anon_sym_LBRACE_PLUS] = ACTIONS(80), + [anon_sym_LBRACE_DASH] = ACTIONS(83), + [sym_symbol] = ACTIONS(68), + [anon_sym_LBRACE_CARET] = ACTIONS(86), + [anon_sym_CARET] = ACTIONS(86), + [anon_sym_LBRACE_TILDE] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(89), + [anon_sym_LBRACK_CARET] = ACTIONS(92), + [anon_sym_RBRACK] = ACTIONS(95), + [anon_sym_BANG_LBRACK] = ACTIONS(97), + [anon_sym_LBRACK] = ACTIONS(100), + [anon_sym_LBRACE2] = ACTIONS(71), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_TODO] = ACTIONS(106), + [anon_sym_WIP] = ACTIONS(106), + [anon_sym_NOTE] = ACTIONS(109), + [anon_sym_INFO] = ACTIONS(109), + [anon_sym_XXX] = ACTIONS(109), + [sym_fixme] = ACTIONS(68), + [anon_sym_PIPE] = ACTIONS(68), + [anon_sym_BQUOTE] = ACTIONS(112), + [sym__whitespace1] = ACTIONS(127), + [sym__newline] = ACTIONS(118), + [aux_sym__text_token1] = ACTIONS(121), + }, + [5] = { + [sym__inline] = STATE(833), + [sym__element] = STATE(112), + [sym_emphasis] = STATE(206), + [sym_emphasis_begin] = STATE(108), + [sym_strong] = STATE(206), + [sym_strong_begin] = STATE(110), + [sym__hard_line_break] = STATE(206), + [sym_hard_line_break] = STATE(206), + [sym__smart_punctuation] = STATE(206), + [sym_autolink] = STATE(206), + [sym_highlighted] = STATE(206), + [sym_insert] = STATE(206), + [sym_delete] = STATE(206), + [sym_superscript] = STATE(206), + [sym_subscript] = STATE(206), + [sym_footnote_reference] = STATE(206), + [sym__image] = STATE(206), + [sym_full_reference_image] = STATE(206), + [sym_collapsed_reference_image] = STATE(206), + [sym_inline_image] = STATE(206), + [sym__image_description] = STATE(664), + [sym__link] = STATE(206), + [sym_full_reference_link] = STATE(206), + [sym_collapsed_reference_link] = STATE(206), + [sym_inline_link] = STATE(206), + [sym_link_text] = STATE(663), + [sym__comment_with_spaces] = STATE(206), + [sym_span] = STATE(206), + [sym_raw_inline] = STATE(206), + [sym_math] = STATE(206), + [sym_verbatim] = STATE(206), + [sym__todo_highlights] = STATE(206), + [sym_todo] = STATE(206), + [sym_note] = STATE(206), + [sym__symbol_fallback] = STATE(206), + [sym__verbatim_begin] = STATE(879), + [aux_sym__text] = STATE(126), + [aux_sym__inline_repeat1] = STATE(112), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE_] = ACTIONS(53), + [anon_sym__] = ACTIONS(56), + [anon_sym_LBRACE_STAR] = ACTIONS(59), + [anon_sym_STAR] = ACTIONS(62), + [anon_sym_BSLASH] = ACTIONS(65), + [sym_quotation_marks] = ACTIONS(68), + [sym_ellipsis] = ACTIONS(68), + [sym_em_dash] = ACTIONS(68), + [sym_en_dash] = ACTIONS(71), + [sym_backslash_escape] = ACTIONS(71), + [anon_sym_LT] = ACTIONS(74), + [anon_sym_LBRACE_EQ] = ACTIONS(77), + [anon_sym_LBRACE_PLUS] = ACTIONS(80), + [anon_sym_LBRACE_DASH] = ACTIONS(83), + [sym_symbol] = ACTIONS(68), + [anon_sym_LBRACE_CARET] = ACTIONS(86), + [anon_sym_CARET] = ACTIONS(86), + [anon_sym_LBRACE_TILDE] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(130), + [anon_sym_TILDE_RBRACE] = ACTIONS(49), + [anon_sym_LBRACK_CARET] = ACTIONS(92), + [anon_sym_RBRACK] = ACTIONS(95), + [anon_sym_BANG_LBRACK] = ACTIONS(97), + [anon_sym_LBRACK] = ACTIONS(100), + [anon_sym_LBRACE2] = ACTIONS(71), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_TODO] = ACTIONS(106), + [anon_sym_WIP] = ACTIONS(106), + [anon_sym_NOTE] = ACTIONS(109), + [anon_sym_INFO] = ACTIONS(109), + [anon_sym_XXX] = ACTIONS(109), + [sym_fixme] = ACTIONS(68), + [anon_sym_PIPE] = ACTIONS(68), + [anon_sym_BQUOTE] = ACTIONS(112), + [sym__whitespace1] = ACTIONS(115), + [sym__newline] = ACTIONS(118), + [aux_sym__text_token1] = ACTIONS(121), + }, + [6] = { + [sym__inline] = STATE(833), + [sym__element] = STATE(112), + [sym_emphasis] = STATE(206), + [sym_emphasis_begin] = STATE(108), + [sym_strong] = STATE(206), + [sym_strong_begin] = STATE(110), + [sym__hard_line_break] = STATE(206), + [sym_hard_line_break] = STATE(206), + [sym__smart_punctuation] = STATE(206), + [sym_autolink] = STATE(206), + [sym_highlighted] = STATE(206), + [sym_insert] = STATE(206), + [sym_delete] = STATE(206), + [sym_superscript] = STATE(206), + [sym_subscript] = STATE(206), + [sym_footnote_reference] = STATE(206), + [sym__image] = STATE(206), + [sym_full_reference_image] = STATE(206), + [sym_collapsed_reference_image] = STATE(206), + [sym_inline_image] = STATE(206), + [sym__image_description] = STATE(664), + [sym__link] = STATE(206), + [sym_full_reference_link] = STATE(206), + [sym_collapsed_reference_link] = STATE(206), + [sym_inline_link] = STATE(206), + [sym_link_text] = STATE(663), + [sym__comment_with_spaces] = STATE(206), + [sym_span] = STATE(206), + [sym_raw_inline] = STATE(206), + [sym_math] = STATE(206), + [sym_verbatim] = STATE(206), + [sym__todo_highlights] = STATE(206), + [sym_todo] = STATE(206), + [sym_note] = STATE(206), + [sym__symbol_fallback] = STATE(206), + [sym__verbatim_begin] = STATE(879), + [aux_sym__text] = STATE(126), + [aux_sym__inline_repeat1] = STATE(112), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE_] = ACTIONS(53), + [anon_sym__] = ACTIONS(56), + [anon_sym_LBRACE_STAR] = ACTIONS(59), + [anon_sym_STAR] = ACTIONS(133), + [aux_sym_strong_end_token1] = ACTIONS(49), + [anon_sym_BSLASH] = ACTIONS(65), + [sym_quotation_marks] = ACTIONS(68), + [sym_ellipsis] = ACTIONS(68), + [sym_em_dash] = ACTIONS(68), + [sym_en_dash] = ACTIONS(71), + [sym_backslash_escape] = ACTIONS(71), + [anon_sym_LT] = ACTIONS(74), + [anon_sym_LBRACE_EQ] = ACTIONS(77), + [anon_sym_LBRACE_PLUS] = ACTIONS(80), + [anon_sym_LBRACE_DASH] = ACTIONS(83), + [sym_symbol] = ACTIONS(68), + [anon_sym_LBRACE_CARET] = ACTIONS(86), + [anon_sym_CARET] = ACTIONS(86), + [anon_sym_LBRACE_TILDE] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(89), + [anon_sym_LBRACK_CARET] = ACTIONS(92), + [anon_sym_RBRACK] = ACTIONS(95), + [anon_sym_BANG_LBRACK] = ACTIONS(97), + [anon_sym_LBRACK] = ACTIONS(100), + [anon_sym_LBRACE2] = ACTIONS(71), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_TODO] = ACTIONS(106), + [anon_sym_WIP] = ACTIONS(106), + [anon_sym_NOTE] = ACTIONS(109), + [anon_sym_INFO] = ACTIONS(109), + [anon_sym_XXX] = ACTIONS(109), + [sym_fixme] = ACTIONS(68), + [anon_sym_PIPE] = ACTIONS(68), + [anon_sym_BQUOTE] = ACTIONS(112), + [sym__whitespace1] = ACTIONS(127), + [sym__newline] = ACTIONS(118), + [aux_sym__text_token1] = ACTIONS(121), + }, + [7] = { + [sym__inline] = STATE(833), + [sym__element] = STATE(112), + [sym_emphasis] = STATE(206), + [sym_emphasis_begin] = STATE(108), + [sym_strong] = STATE(206), + [sym_strong_begin] = STATE(110), + [sym__hard_line_break] = STATE(206), + [sym_hard_line_break] = STATE(206), + [sym__smart_punctuation] = STATE(206), + [sym_autolink] = STATE(206), + [sym_highlighted] = STATE(206), + [sym_insert] = STATE(206), + [sym_delete] = STATE(206), + [sym_superscript] = STATE(206), + [sym_subscript] = STATE(206), + [sym_footnote_reference] = STATE(206), + [sym__image] = STATE(206), + [sym_full_reference_image] = STATE(206), + [sym_collapsed_reference_image] = STATE(206), + [sym_inline_image] = STATE(206), + [sym__image_description] = STATE(664), + [sym__link] = STATE(206), + [sym_full_reference_link] = STATE(206), + [sym_collapsed_reference_link] = STATE(206), + [sym_inline_link] = STATE(206), + [sym_link_text] = STATE(663), + [sym__comment_with_spaces] = STATE(206), + [sym_span] = STATE(206), + [sym_raw_inline] = STATE(206), + [sym_math] = STATE(206), + [sym_verbatim] = STATE(206), + [sym__todo_highlights] = STATE(206), + [sym_todo] = STATE(206), + [sym_note] = STATE(206), + [sym__symbol_fallback] = STATE(206), + [sym__verbatim_begin] = STATE(879), + [aux_sym__text] = STATE(126), + [aux_sym__inline_repeat1] = STATE(112), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE_] = ACTIONS(53), + [anon_sym__] = ACTIONS(56), + [anon_sym_LBRACE_STAR] = ACTIONS(59), + [anon_sym_STAR] = ACTIONS(62), + [anon_sym_BSLASH] = ACTIONS(65), + [sym_quotation_marks] = ACTIONS(68), + [sym_ellipsis] = ACTIONS(68), + [sym_em_dash] = ACTIONS(68), + [sym_en_dash] = ACTIONS(71), + [sym_backslash_escape] = ACTIONS(71), + [anon_sym_LT] = ACTIONS(74), + [anon_sym_LBRACE_EQ] = ACTIONS(77), + [anon_sym_LBRACE_PLUS] = ACTIONS(80), + [anon_sym_PLUS_RBRACE] = ACTIONS(49), + [anon_sym_LBRACE_DASH] = ACTIONS(83), + [sym_symbol] = ACTIONS(68), + [anon_sym_LBRACE_CARET] = ACTIONS(86), + [anon_sym_CARET] = ACTIONS(86), + [anon_sym_LBRACE_TILDE] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(89), + [anon_sym_LBRACK_CARET] = ACTIONS(92), + [anon_sym_RBRACK] = ACTIONS(95), + [anon_sym_BANG_LBRACK] = ACTIONS(97), + [anon_sym_LBRACK] = ACTIONS(100), + [anon_sym_LBRACE2] = ACTIONS(71), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_TODO] = ACTIONS(106), + [anon_sym_WIP] = ACTIONS(106), + [anon_sym_NOTE] = ACTIONS(109), + [anon_sym_INFO] = ACTIONS(109), + [anon_sym_XXX] = ACTIONS(109), + [sym_fixme] = ACTIONS(68), + [anon_sym_PIPE] = ACTIONS(68), + [anon_sym_BQUOTE] = ACTIONS(112), + [sym__whitespace1] = ACTIONS(115), + [sym__newline] = ACTIONS(118), + [aux_sym__text_token1] = ACTIONS(121), + }, + [8] = { + [sym__inline] = STATE(833), + [sym__element] = STATE(112), + [sym_emphasis] = STATE(206), + [sym_emphasis_begin] = STATE(108), + [sym_strong] = STATE(206), + [sym_strong_begin] = STATE(110), + [sym__hard_line_break] = STATE(206), + [sym_hard_line_break] = STATE(206), + [sym__smart_punctuation] = STATE(206), + [sym_autolink] = STATE(206), + [sym_highlighted] = STATE(206), + [sym_insert] = STATE(206), + [sym_delete] = STATE(206), + [sym_superscript] = STATE(206), + [sym_subscript] = STATE(206), + [sym_footnote_reference] = STATE(206), + [sym__image] = STATE(206), + [sym_full_reference_image] = STATE(206), + [sym_collapsed_reference_image] = STATE(206), + [sym_inline_image] = STATE(206), + [sym__image_description] = STATE(664), + [sym__link] = STATE(206), + [sym_full_reference_link] = STATE(206), + [sym_collapsed_reference_link] = STATE(206), + [sym_inline_link] = STATE(206), + [sym_link_text] = STATE(663), + [sym__comment_with_spaces] = STATE(206), + [sym_span] = STATE(206), + [sym_raw_inline] = STATE(206), + [sym_math] = STATE(206), + [sym_verbatim] = STATE(206), + [sym__todo_highlights] = STATE(206), + [sym_todo] = STATE(206), + [sym_note] = STATE(206), + [sym__symbol_fallback] = STATE(206), + [sym__verbatim_begin] = STATE(879), + [aux_sym__text] = STATE(126), + [aux_sym__inline_repeat1] = STATE(112), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE_] = ACTIONS(53), + [anon_sym__] = ACTIONS(56), + [anon_sym_LBRACE_STAR] = ACTIONS(59), + [anon_sym_STAR] = ACTIONS(62), + [anon_sym_BSLASH] = ACTIONS(65), + [sym_quotation_marks] = ACTIONS(68), + [sym_ellipsis] = ACTIONS(68), + [sym_em_dash] = ACTIONS(68), + [sym_en_dash] = ACTIONS(71), + [sym_backslash_escape] = ACTIONS(71), + [anon_sym_LT] = ACTIONS(74), + [anon_sym_LBRACE_EQ] = ACTIONS(77), + [anon_sym_LBRACE_PLUS] = ACTIONS(80), + [anon_sym_LBRACE_DASH] = ACTIONS(83), + [anon_sym_DASH_RBRACE] = ACTIONS(49), + [sym_symbol] = ACTIONS(68), + [anon_sym_LBRACE_CARET] = ACTIONS(86), + [anon_sym_CARET] = ACTIONS(86), + [anon_sym_LBRACE_TILDE] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(89), + [anon_sym_LBRACK_CARET] = ACTIONS(92), + [anon_sym_RBRACK] = ACTIONS(95), + [anon_sym_BANG_LBRACK] = ACTIONS(97), + [anon_sym_LBRACK] = ACTIONS(100), + [anon_sym_LBRACE2] = ACTIONS(71), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_TODO] = ACTIONS(106), + [anon_sym_WIP] = ACTIONS(106), + [anon_sym_NOTE] = ACTIONS(109), + [anon_sym_INFO] = ACTIONS(109), + [anon_sym_XXX] = ACTIONS(109), + [sym_fixme] = ACTIONS(68), + [anon_sym_PIPE] = ACTIONS(68), + [anon_sym_BQUOTE] = ACTIONS(112), + [sym__whitespace1] = ACTIONS(115), + [sym__newline] = ACTIONS(118), + [aux_sym__text_token1] = ACTIONS(121), + }, + [9] = { + [sym__inline] = STATE(833), + [sym__element] = STATE(112), + [sym_emphasis] = STATE(206), + [sym_emphasis_begin] = STATE(108), + [sym_strong] = STATE(206), + [sym_strong_begin] = STATE(110), + [sym__hard_line_break] = STATE(206), + [sym_hard_line_break] = STATE(206), + [sym__smart_punctuation] = STATE(206), + [sym_autolink] = STATE(206), + [sym_highlighted] = STATE(206), + [sym_insert] = STATE(206), + [sym_delete] = STATE(206), + [sym_superscript] = STATE(206), + [sym_subscript] = STATE(206), + [sym_footnote_reference] = STATE(206), + [sym__image] = STATE(206), + [sym_full_reference_image] = STATE(206), + [sym_collapsed_reference_image] = STATE(206), + [sym_inline_image] = STATE(206), + [sym__image_description] = STATE(664), + [sym__link] = STATE(206), + [sym_full_reference_link] = STATE(206), + [sym_collapsed_reference_link] = STATE(206), + [sym_inline_link] = STATE(206), + [sym_link_text] = STATE(663), + [sym__comment_with_spaces] = STATE(206), + [sym_span] = STATE(206), + [sym_raw_inline] = STATE(206), + [sym_math] = STATE(206), + [sym_verbatim] = STATE(206), + [sym__todo_highlights] = STATE(206), + [sym_todo] = STATE(206), + [sym_note] = STATE(206), + [sym__symbol_fallback] = STATE(206), + [sym__verbatim_begin] = STATE(879), + [aux_sym__text] = STATE(126), + [aux_sym__inline_repeat1] = STATE(112), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE_] = ACTIONS(53), + [anon_sym__] = ACTIONS(56), + [anon_sym_LBRACE_STAR] = ACTIONS(59), + [anon_sym_STAR] = ACTIONS(62), + [anon_sym_BSLASH] = ACTIONS(65), + [sym_quotation_marks] = ACTIONS(68), + [sym_ellipsis] = ACTIONS(68), + [sym_em_dash] = ACTIONS(68), + [sym_en_dash] = ACTIONS(71), + [sym_backslash_escape] = ACTIONS(71), + [anon_sym_LT] = ACTIONS(74), + [anon_sym_LBRACE_EQ] = ACTIONS(77), + [anon_sym_LBRACE_PLUS] = ACTIONS(80), + [anon_sym_LBRACE_DASH] = ACTIONS(83), + [sym_symbol] = ACTIONS(68), + [anon_sym_LBRACE_CARET] = ACTIONS(86), + [anon_sym_CARET] = ACTIONS(136), + [anon_sym_CARET_RBRACE] = ACTIONS(49), + [anon_sym_LBRACE_TILDE] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(89), + [anon_sym_LBRACK_CARET] = ACTIONS(92), + [anon_sym_RBRACK] = ACTIONS(95), + [anon_sym_BANG_LBRACK] = ACTIONS(97), + [anon_sym_LBRACK] = ACTIONS(100), + [anon_sym_LBRACE2] = ACTIONS(71), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_TODO] = ACTIONS(106), + [anon_sym_WIP] = ACTIONS(106), + [anon_sym_NOTE] = ACTIONS(109), + [anon_sym_INFO] = ACTIONS(109), + [anon_sym_XXX] = ACTIONS(109), + [sym_fixme] = ACTIONS(68), + [anon_sym_PIPE] = ACTIONS(68), + [anon_sym_BQUOTE] = ACTIONS(112), + [sym__whitespace1] = ACTIONS(115), + [sym__newline] = ACTIONS(118), + [aux_sym__text_token1] = ACTIONS(121), + }, + [10] = { + [sym__inline] = STATE(833), + [sym__element] = STATE(112), + [sym_emphasis] = STATE(206), + [sym_emphasis_begin] = STATE(108), + [sym_strong] = STATE(206), + [sym_strong_begin] = STATE(110), + [sym__hard_line_break] = STATE(206), + [sym_hard_line_break] = STATE(206), + [sym__smart_punctuation] = STATE(206), + [sym_autolink] = STATE(206), + [sym_highlighted] = STATE(206), + [sym_insert] = STATE(206), + [sym_delete] = STATE(206), + [sym_superscript] = STATE(206), + [sym_subscript] = STATE(206), + [sym_footnote_reference] = STATE(206), + [sym__image] = STATE(206), + [sym_full_reference_image] = STATE(206), + [sym_collapsed_reference_image] = STATE(206), + [sym_inline_image] = STATE(206), + [sym__image_description] = STATE(664), + [sym__link] = STATE(206), + [sym_full_reference_link] = STATE(206), + [sym_collapsed_reference_link] = STATE(206), + [sym_inline_link] = STATE(206), + [sym_link_text] = STATE(663), + [sym__comment_with_spaces] = STATE(206), + [sym_span] = STATE(206), + [sym_raw_inline] = STATE(206), + [sym_math] = STATE(206), + [sym_verbatim] = STATE(206), + [sym__todo_highlights] = STATE(206), + [sym_todo] = STATE(206), + [sym_note] = STATE(206), + [sym__symbol_fallback] = STATE(206), + [sym__verbatim_begin] = STATE(879), + [aux_sym__text] = STATE(126), + [aux_sym__inline_repeat1] = STATE(112), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE_] = ACTIONS(53), + [anon_sym__] = ACTIONS(56), + [anon_sym_LBRACE_STAR] = ACTIONS(59), + [anon_sym_STAR] = ACTIONS(62), + [anon_sym_BSLASH] = ACTIONS(65), + [sym_quotation_marks] = ACTIONS(68), + [sym_ellipsis] = ACTIONS(68), + [sym_em_dash] = ACTIONS(68), + [sym_en_dash] = ACTIONS(71), + [sym_backslash_escape] = ACTIONS(71), + [anon_sym_LT] = ACTIONS(74), + [anon_sym_LBRACE_EQ] = ACTIONS(77), + [anon_sym_LBRACE_PLUS] = ACTIONS(80), + [anon_sym_LBRACE_DASH] = ACTIONS(83), + [sym_symbol] = ACTIONS(68), + [anon_sym_LBRACE_CARET] = ACTIONS(86), + [anon_sym_CARET] = ACTIONS(86), + [anon_sym_LBRACE_TILDE] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(89), + [anon_sym_LBRACK_CARET] = ACTIONS(92), + [anon_sym_RBRACK] = ACTIONS(139), + [anon_sym_BANG_LBRACK] = ACTIONS(97), + [anon_sym_LBRACK] = ACTIONS(100), + [anon_sym_RBRACK2] = ACTIONS(49), + [anon_sym_LBRACE2] = ACTIONS(71), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_TODO] = ACTIONS(106), + [anon_sym_WIP] = ACTIONS(106), + [anon_sym_NOTE] = ACTIONS(109), + [anon_sym_INFO] = ACTIONS(109), + [anon_sym_XXX] = ACTIONS(109), + [sym_fixme] = ACTIONS(68), + [anon_sym_PIPE] = ACTIONS(68), + [anon_sym_BQUOTE] = ACTIONS(112), + [sym__whitespace1] = ACTIONS(115), + [sym__newline] = ACTIONS(118), + [aux_sym__text_token1] = ACTIONS(121), + }, + [11] = { + [sym__inline] = STATE(717), + [sym__element] = STATE(96), + [sym_emphasis] = STATE(182), + [sym_emphasis_begin] = STATE(103), + [sym_strong] = STATE(182), + [sym_strong_begin] = STATE(104), + [sym__hard_line_break] = STATE(182), + [sym_hard_line_break] = STATE(182), + [sym__smart_punctuation] = STATE(182), + [sym_autolink] = STATE(182), + [sym_highlighted] = STATE(182), + [sym_insert] = STATE(182), + [sym_delete] = STATE(182), + [sym_superscript] = STATE(182), + [sym_subscript] = STATE(182), + [sym_footnote_reference] = STATE(182), + [sym__image] = STATE(182), + [sym_full_reference_image] = STATE(182), + [sym_collapsed_reference_image] = STATE(182), + [sym_inline_image] = STATE(182), + [sym__image_description] = STATE(672), + [sym__link] = STATE(182), + [sym_full_reference_link] = STATE(182), + [sym_collapsed_reference_link] = STATE(182), + [sym_inline_link] = STATE(182), + [sym_link_text] = STATE(671), + [sym__comment_with_spaces] = STATE(182), + [sym_span] = STATE(182), + [sym_raw_inline] = STATE(182), + [sym_math] = STATE(182), + [sym_verbatim] = STATE(182), + [sym__todo_highlights] = STATE(182), + [sym_todo] = STATE(182), + [sym_note] = STATE(182), + [sym__symbol_fallback] = STATE(182), + [sym__verbatim_begin] = STATE(870), + [aux_sym__text] = STATE(150), + [aux_sym__inline_repeat1] = STATE(96), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE_] = ACTIONS(141), + [anon_sym__] = ACTIONS(144), + [anon_sym_LBRACE_STAR] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(150), + [anon_sym_BSLASH] = ACTIONS(153), + [sym_quotation_marks] = ACTIONS(156), + [sym_ellipsis] = ACTIONS(156), + [sym_em_dash] = ACTIONS(156), + [sym_en_dash] = ACTIONS(159), + [sym_backslash_escape] = ACTIONS(159), + [anon_sym_LT] = ACTIONS(162), + [anon_sym_LBRACE_EQ] = ACTIONS(165), + [anon_sym_LBRACE_PLUS] = ACTIONS(168), + [anon_sym_LBRACE_DASH] = ACTIONS(171), + [sym_symbol] = ACTIONS(156), + [anon_sym_LBRACE_CARET] = ACTIONS(174), + [anon_sym_CARET] = ACTIONS(174), + [anon_sym_LBRACE_TILDE] = ACTIONS(177), + [anon_sym_TILDE] = ACTIONS(180), + [anon_sym_TILDE_RBRACE] = ACTIONS(49), + [anon_sym_LBRACK_CARET] = ACTIONS(183), + [anon_sym_BANG_LBRACK] = ACTIONS(186), + [anon_sym_LBRACK] = ACTIONS(189), + [anon_sym_LBRACE2] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(192), + [anon_sym_TODO] = ACTIONS(195), + [anon_sym_WIP] = ACTIONS(195), + [anon_sym_NOTE] = ACTIONS(198), + [anon_sym_INFO] = ACTIONS(198), + [anon_sym_XXX] = ACTIONS(198), + [sym_fixme] = ACTIONS(156), + [anon_sym_PIPE] = ACTIONS(156), + [anon_sym_BQUOTE] = ACTIONS(112), + [sym__whitespace1] = ACTIONS(201), + [sym__newline] = ACTIONS(204), + [aux_sym__text_token1] = ACTIONS(207), + }, + [12] = { + [sym__inline] = STATE(862), + [sym__element] = STATE(112), + [sym_emphasis] = STATE(206), + [sym_emphasis_begin] = STATE(108), + [sym_strong] = STATE(206), + [sym_strong_begin] = STATE(110), + [sym__hard_line_break] = STATE(206), + [sym_hard_line_break] = STATE(206), + [sym__smart_punctuation] = STATE(206), + [sym_autolink] = STATE(206), + [sym_highlighted] = STATE(206), + [sym_insert] = STATE(206), + [sym_delete] = STATE(206), + [sym_superscript] = STATE(206), + [sym_subscript] = STATE(206), + [sym_footnote_reference] = STATE(206), + [sym__image] = STATE(206), + [sym_full_reference_image] = STATE(206), + [sym_collapsed_reference_image] = STATE(206), + [sym_inline_image] = STATE(206), + [sym__image_description] = STATE(664), + [sym__link] = STATE(206), + [sym_full_reference_link] = STATE(206), + [sym_collapsed_reference_link] = STATE(206), + [sym_inline_link] = STATE(206), + [sym_link_text] = STATE(663), + [sym__comment_with_spaces] = STATE(206), + [sym_span] = STATE(206), + [sym_raw_inline] = STATE(206), + [sym_math] = STATE(206), + [sym_verbatim] = STATE(206), + [sym__todo_highlights] = STATE(206), + [sym_todo] = STATE(206), + [sym_note] = STATE(206), + [sym__symbol_fallback] = STATE(206), + [sym__verbatim_begin] = STATE(879), + [aux_sym__text] = STATE(126), + [aux_sym__inline_repeat1] = STATE(112), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE_] = ACTIONS(53), + [anon_sym__] = ACTIONS(56), + [anon_sym_LBRACE_STAR] = ACTIONS(59), + [anon_sym_STAR] = ACTIONS(62), + [anon_sym_BSLASH] = ACTIONS(65), + [sym_quotation_marks] = ACTIONS(68), + [sym_ellipsis] = ACTIONS(68), + [sym_em_dash] = ACTIONS(68), + [sym_en_dash] = ACTIONS(71), + [sym_backslash_escape] = ACTIONS(71), + [anon_sym_LT] = ACTIONS(74), + [anon_sym_LBRACE_EQ] = ACTIONS(77), + [anon_sym_LBRACE_PLUS] = ACTIONS(80), + [anon_sym_LBRACE_DASH] = ACTIONS(83), + [sym_symbol] = ACTIONS(68), + [anon_sym_LBRACE_CARET] = ACTIONS(86), + [anon_sym_CARET] = ACTIONS(136), + [anon_sym_CARET_RBRACE] = ACTIONS(49), + [anon_sym_LBRACE_TILDE] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(89), + [anon_sym_LBRACK_CARET] = ACTIONS(92), + [anon_sym_BANG_LBRACK] = ACTIONS(97), + [anon_sym_LBRACK] = ACTIONS(100), + [anon_sym_LBRACE2] = ACTIONS(71), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_TODO] = ACTIONS(106), + [anon_sym_WIP] = ACTIONS(106), + [anon_sym_NOTE] = ACTIONS(109), + [anon_sym_INFO] = ACTIONS(109), + [anon_sym_XXX] = ACTIONS(109), + [sym_fixme] = ACTIONS(68), + [anon_sym_PIPE] = ACTIONS(68), + [anon_sym_BQUOTE] = ACTIONS(112), + [sym__whitespace1] = ACTIONS(115), + [sym__newline] = ACTIONS(118), + [aux_sym__text_token1] = ACTIONS(121), + }, + [13] = { + [sym__inline] = STATE(851), + [sym__element] = STATE(98), + [sym_emphasis] = STATE(207), + [sym_emphasis_begin] = STATE(89), + [sym_strong] = STATE(207), + [sym_strong_begin] = STATE(72), + [sym__hard_line_break] = STATE(207), + [sym_hard_line_break] = STATE(207), + [sym__smart_punctuation] = STATE(207), + [sym_autolink] = STATE(207), + [sym_highlighted] = STATE(207), + [sym_insert] = STATE(207), + [sym_delete] = STATE(207), + [sym_superscript] = STATE(207), + [sym_subscript] = STATE(207), + [sym_footnote_reference] = STATE(207), + [sym__image] = STATE(207), + [sym_full_reference_image] = STATE(207), + [sym_collapsed_reference_image] = STATE(207), + [sym_inline_image] = STATE(207), + [sym__image_description] = STATE(666), + [sym__link] = STATE(207), + [sym_full_reference_link] = STATE(207), + [sym_collapsed_reference_link] = STATE(207), + [sym_inline_link] = STATE(207), + [sym_link_text] = STATE(667), + [sym__comment_with_spaces] = STATE(207), + [sym_span] = STATE(207), + [sym_raw_inline] = STATE(207), + [sym_math] = STATE(207), + [sym_verbatim] = STATE(207), + [sym__todo_highlights] = STATE(207), + [sym_todo] = STATE(207), + [sym_note] = STATE(207), + [sym__symbol_fallback] = STATE(207), + [sym__verbatim_begin] = STATE(852), + [aux_sym__text] = STATE(139), + [aux_sym__inline_repeat1] = STATE(98), + [ts_builtin_sym_end] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE_] = ACTIONS(210), + [anon_sym__] = ACTIONS(213), + [anon_sym_LBRACE_STAR] = ACTIONS(216), + [anon_sym_STAR] = ACTIONS(219), + [anon_sym_BSLASH] = ACTIONS(222), + [sym_quotation_marks] = ACTIONS(225), + [sym_ellipsis] = ACTIONS(225), + [sym_em_dash] = ACTIONS(225), + [sym_en_dash] = ACTIONS(228), + [sym_backslash_escape] = ACTIONS(228), + [anon_sym_LT] = ACTIONS(231), + [anon_sym_LBRACE_EQ] = ACTIONS(234), + [anon_sym_LBRACE_PLUS] = ACTIONS(237), + [anon_sym_LBRACE_DASH] = ACTIONS(240), + [sym_symbol] = ACTIONS(225), + [anon_sym_LBRACE_CARET] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(243), + [anon_sym_LBRACE_TILDE] = ACTIONS(246), + [anon_sym_TILDE] = ACTIONS(246), + [anon_sym_LBRACK_CARET] = ACTIONS(249), + [anon_sym_BANG_LBRACK] = ACTIONS(252), + [anon_sym_LBRACK] = ACTIONS(255), + [anon_sym_LBRACE2] = ACTIONS(228), + [anon_sym_DOLLAR] = ACTIONS(258), + [anon_sym_TODO] = ACTIONS(261), + [anon_sym_WIP] = ACTIONS(261), + [anon_sym_NOTE] = ACTIONS(264), + [anon_sym_INFO] = ACTIONS(264), + [anon_sym_XXX] = ACTIONS(264), + [sym_fixme] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(225), + [anon_sym_BQUOTE] = ACTIONS(112), + [sym__whitespace1] = ACTIONS(267), + [sym__newline] = ACTIONS(270), + [aux_sym__text_token1] = ACTIONS(273), + }, + [14] = { + [sym__inline] = STATE(709), + [sym__element] = STATE(84), + [sym_emphasis] = STATE(197), + [sym_emphasis_begin] = STATE(97), + [sym_strong] = STATE(197), + [sym_strong_begin] = STATE(100), + [sym__hard_line_break] = STATE(197), + [sym_hard_line_break] = STATE(197), + [sym__smart_punctuation] = STATE(197), + [sym_autolink] = STATE(197), + [sym_highlighted] = STATE(197), + [sym_insert] = STATE(197), + [sym_delete] = STATE(197), + [sym_superscript] = STATE(197), + [sym_subscript] = STATE(197), + [sym_footnote_reference] = STATE(197), + [sym__image] = STATE(197), + [sym_full_reference_image] = STATE(197), + [sym_collapsed_reference_image] = STATE(197), + [sym_inline_image] = STATE(197), + [sym__image_description] = STATE(676), + [sym__link] = STATE(197), + [sym_full_reference_link] = STATE(197), + [sym_collapsed_reference_link] = STATE(197), + [sym_inline_link] = STATE(197), + [sym_link_text] = STATE(677), + [sym__comment_with_spaces] = STATE(197), + [sym_span] = STATE(197), + [sym_raw_inline] = STATE(197), + [sym_math] = STATE(197), + [sym_verbatim] = STATE(197), + [sym__todo_highlights] = STATE(197), + [sym_todo] = STATE(197), + [sym_note] = STATE(197), + [sym__symbol_fallback] = STATE(197), + [sym__verbatim_begin] = STATE(861), + [aux_sym__text] = STATE(159), + [aux_sym__inline_repeat1] = STATE(84), + [ts_builtin_sym_end] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE_] = ACTIONS(276), + [anon_sym__] = ACTIONS(279), + [anon_sym_LBRACE_STAR] = ACTIONS(282), + [anon_sym_STAR] = ACTIONS(285), + [anon_sym_BSLASH] = ACTIONS(288), + [sym_quotation_marks] = ACTIONS(291), + [sym_ellipsis] = ACTIONS(291), + [sym_em_dash] = ACTIONS(291), + [sym_en_dash] = ACTIONS(294), + [sym_backslash_escape] = ACTIONS(294), + [anon_sym_LT] = ACTIONS(297), + [anon_sym_LBRACE_EQ] = ACTIONS(300), + [anon_sym_LBRACE_PLUS] = ACTIONS(303), + [anon_sym_LBRACE_DASH] = ACTIONS(306), + [sym_symbol] = ACTIONS(291), + [anon_sym_LBRACE_CARET] = ACTIONS(309), + [anon_sym_CARET] = ACTIONS(309), + [anon_sym_LBRACE_TILDE] = ACTIONS(312), + [anon_sym_TILDE] = ACTIONS(312), + [anon_sym_LBRACK_CARET] = ACTIONS(315), + [anon_sym_BANG_LBRACK] = ACTIONS(318), + [anon_sym_LBRACK] = ACTIONS(321), + [anon_sym_LBRACE2] = ACTIONS(294), + [anon_sym_DOLLAR] = ACTIONS(324), + [anon_sym_TODO] = ACTIONS(327), + [anon_sym_WIP] = ACTIONS(327), + [anon_sym_NOTE] = ACTIONS(330), + [anon_sym_INFO] = ACTIONS(330), + [anon_sym_XXX] = ACTIONS(330), + [sym_fixme] = ACTIONS(291), + [anon_sym_PIPE] = ACTIONS(291), + [anon_sym_BQUOTE] = ACTIONS(112), + [sym__whitespace1] = ACTIONS(333), + [sym__newline] = ACTIONS(336), + [aux_sym__text_token1] = ACTIONS(339), + }, + [15] = { + [sym__inline] = STATE(710), + [sym__element] = STATE(96), + [sym_emphasis] = STATE(182), + [sym_emphasis_begin] = STATE(103), + [sym_strong] = STATE(182), + [sym_strong_begin] = STATE(104), + [sym__hard_line_break] = STATE(182), + [sym_hard_line_break] = STATE(182), + [sym__smart_punctuation] = STATE(182), + [sym_autolink] = STATE(182), + [sym_highlighted] = STATE(182), + [sym_insert] = STATE(182), + [sym_delete] = STATE(182), + [sym_superscript] = STATE(182), + [sym_subscript] = STATE(182), + [sym_footnote_reference] = STATE(182), + [sym__image] = STATE(182), + [sym_full_reference_image] = STATE(182), + [sym_collapsed_reference_image] = STATE(182), + [sym_inline_image] = STATE(182), + [sym__image_description] = STATE(672), + [sym__link] = STATE(182), + [sym_full_reference_link] = STATE(182), + [sym_collapsed_reference_link] = STATE(182), + [sym_inline_link] = STATE(182), + [sym_link_text] = STATE(671), + [sym__comment_with_spaces] = STATE(182), + [sym_span] = STATE(182), + [sym_raw_inline] = STATE(182), + [sym_math] = STATE(182), + [sym_verbatim] = STATE(182), + [sym__todo_highlights] = STATE(182), + [sym_todo] = STATE(182), + [sym_note] = STATE(182), + [sym__symbol_fallback] = STATE(182), + [sym__verbatim_begin] = STATE(870), + [aux_sym__text] = STATE(150), + [aux_sym__inline_repeat1] = STATE(96), + [ts_builtin_sym_end] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE_] = ACTIONS(141), + [anon_sym__] = ACTIONS(144), + [anon_sym_LBRACE_STAR] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(150), + [anon_sym_BSLASH] = ACTIONS(153), + [sym_quotation_marks] = ACTIONS(156), + [sym_ellipsis] = ACTIONS(156), + [sym_em_dash] = ACTIONS(156), + [sym_en_dash] = ACTIONS(159), + [sym_backslash_escape] = ACTIONS(159), + [anon_sym_LT] = ACTIONS(162), + [anon_sym_LBRACE_EQ] = ACTIONS(165), + [anon_sym_LBRACE_PLUS] = ACTIONS(168), + [anon_sym_LBRACE_DASH] = ACTIONS(171), + [sym_symbol] = ACTIONS(156), + [anon_sym_LBRACE_CARET] = ACTIONS(174), + [anon_sym_CARET] = ACTIONS(174), + [anon_sym_LBRACE_TILDE] = ACTIONS(177), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_LBRACK_CARET] = ACTIONS(183), + [anon_sym_BANG_LBRACK] = ACTIONS(186), + [anon_sym_LBRACK] = ACTIONS(189), + [anon_sym_LBRACE2] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(192), + [anon_sym_TODO] = ACTIONS(195), + [anon_sym_WIP] = ACTIONS(195), + [anon_sym_NOTE] = ACTIONS(198), + [anon_sym_INFO] = ACTIONS(198), + [anon_sym_XXX] = ACTIONS(198), + [sym_fixme] = ACTIONS(156), + [anon_sym_PIPE] = ACTIONS(156), + [anon_sym_BQUOTE] = ACTIONS(112), + [sym__whitespace1] = ACTIONS(201), + [sym__newline] = ACTIONS(204), + [aux_sym__text_token1] = ACTIONS(207), + }, + [16] = { + [sym__inline] = STATE(704), + [sym__element] = STATE(96), + [sym_emphasis] = STATE(182), + [sym_emphasis_begin] = STATE(103), + [sym_strong] = STATE(182), + [sym_strong_begin] = STATE(104), + [sym__hard_line_break] = STATE(182), + [sym_hard_line_break] = STATE(182), + [sym__smart_punctuation] = STATE(182), + [sym_autolink] = STATE(182), + [sym_highlighted] = STATE(182), + [sym_insert] = STATE(182), + [sym_delete] = STATE(182), + [sym_superscript] = STATE(182), + [sym_subscript] = STATE(182), + [sym_footnote_reference] = STATE(182), + [sym__image] = STATE(182), + [sym_full_reference_image] = STATE(182), + [sym_collapsed_reference_image] = STATE(182), + [sym_inline_image] = STATE(182), + [sym__image_description] = STATE(672), + [sym__link] = STATE(182), + [sym_full_reference_link] = STATE(182), + [sym_collapsed_reference_link] = STATE(182), + [sym_inline_link] = STATE(182), + [sym_link_text] = STATE(671), + [sym__comment_with_spaces] = STATE(182), + [sym_span] = STATE(182), + [sym_raw_inline] = STATE(182), + [sym_math] = STATE(182), + [sym_verbatim] = STATE(182), + [sym__todo_highlights] = STATE(182), + [sym_todo] = STATE(182), + [sym_note] = STATE(182), + [sym__symbol_fallback] = STATE(182), + [sym__verbatim_begin] = STATE(870), + [aux_sym__text] = STATE(150), + [aux_sym__inline_repeat1] = STATE(96), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE_] = ACTIONS(141), + [anon_sym__] = ACTIONS(144), + [anon_sym_LBRACE_STAR] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(150), + [anon_sym_BSLASH] = ACTIONS(153), + [sym_quotation_marks] = ACTIONS(156), + [sym_ellipsis] = ACTIONS(156), + [sym_em_dash] = ACTIONS(156), + [sym_en_dash] = ACTIONS(159), + [sym_backslash_escape] = ACTIONS(159), + [anon_sym_LT] = ACTIONS(162), + [anon_sym_LBRACE_EQ] = ACTIONS(165), + [anon_sym_LBRACE_PLUS] = ACTIONS(168), + [anon_sym_LBRACE_DASH] = ACTIONS(171), + [anon_sym_DASH_RBRACE] = ACTIONS(49), + [sym_symbol] = ACTIONS(156), + [anon_sym_LBRACE_CARET] = ACTIONS(174), + [anon_sym_CARET] = ACTIONS(174), + [anon_sym_LBRACE_TILDE] = ACTIONS(177), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_LBRACK_CARET] = ACTIONS(183), + [anon_sym_BANG_LBRACK] = ACTIONS(186), + [anon_sym_LBRACK] = ACTIONS(189), + [anon_sym_LBRACE2] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(192), + [anon_sym_TODO] = ACTIONS(195), + [anon_sym_WIP] = ACTIONS(195), + [anon_sym_NOTE] = ACTIONS(198), + [anon_sym_INFO] = ACTIONS(198), + [anon_sym_XXX] = ACTIONS(198), + [sym_fixme] = ACTIONS(156), + [anon_sym_PIPE] = ACTIONS(156), + [anon_sym_BQUOTE] = ACTIONS(112), + [sym__whitespace1] = ACTIONS(201), + [sym__newline] = ACTIONS(204), + [aux_sym__text_token1] = ACTIONS(207), + }, + [17] = { + [sym__inline] = STATE(874), + [sym__element] = STATE(112), + [sym_emphasis] = STATE(206), + [sym_emphasis_begin] = STATE(108), + [sym_strong] = STATE(206), + [sym_strong_begin] = STATE(110), + [sym__hard_line_break] = STATE(206), + [sym_hard_line_break] = STATE(206), + [sym__smart_punctuation] = STATE(206), + [sym_autolink] = STATE(206), + [sym_highlighted] = STATE(206), + [sym_insert] = STATE(206), + [sym_delete] = STATE(206), + [sym_superscript] = STATE(206), + [sym_subscript] = STATE(206), + [sym_footnote_reference] = STATE(206), + [sym__image] = STATE(206), + [sym_full_reference_image] = STATE(206), + [sym_collapsed_reference_image] = STATE(206), + [sym_inline_image] = STATE(206), + [sym__image_description] = STATE(664), + [sym__link] = STATE(206), + [sym_full_reference_link] = STATE(206), + [sym_collapsed_reference_link] = STATE(206), + [sym_inline_link] = STATE(206), + [sym_link_text] = STATE(663), + [sym__comment_with_spaces] = STATE(206), + [sym_span] = STATE(206), + [sym_raw_inline] = STATE(206), + [sym_math] = STATE(206), + [sym_verbatim] = STATE(206), + [sym__todo_highlights] = STATE(206), + [sym_todo] = STATE(206), + [sym_note] = STATE(206), + [sym__symbol_fallback] = STATE(206), + [sym__verbatim_begin] = STATE(879), + [aux_sym__text] = STATE(126), + [aux_sym__inline_repeat1] = STATE(112), + [ts_builtin_sym_end] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE_] = ACTIONS(53), + [anon_sym__] = ACTIONS(56), + [anon_sym_LBRACE_STAR] = ACTIONS(59), + [anon_sym_STAR] = ACTIONS(62), + [anon_sym_BSLASH] = ACTIONS(65), + [sym_quotation_marks] = ACTIONS(68), + [sym_ellipsis] = ACTIONS(68), + [sym_em_dash] = ACTIONS(68), + [sym_en_dash] = ACTIONS(71), + [sym_backslash_escape] = ACTIONS(71), + [anon_sym_LT] = ACTIONS(74), + [anon_sym_LBRACE_EQ] = ACTIONS(77), + [anon_sym_LBRACE_PLUS] = ACTIONS(80), + [anon_sym_LBRACE_DASH] = ACTIONS(83), + [sym_symbol] = ACTIONS(68), + [anon_sym_LBRACE_CARET] = ACTIONS(86), + [anon_sym_CARET] = ACTIONS(86), + [anon_sym_LBRACE_TILDE] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(89), + [anon_sym_LBRACK_CARET] = ACTIONS(92), + [anon_sym_BANG_LBRACK] = ACTIONS(97), + [anon_sym_LBRACK] = ACTIONS(100), + [anon_sym_LBRACE2] = ACTIONS(71), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_TODO] = ACTIONS(106), + [anon_sym_WIP] = ACTIONS(106), + [anon_sym_NOTE] = ACTIONS(109), + [anon_sym_INFO] = ACTIONS(109), + [anon_sym_XXX] = ACTIONS(109), + [sym_fixme] = ACTIONS(68), + [anon_sym_PIPE] = ACTIONS(68), + [anon_sym_BQUOTE] = ACTIONS(112), + [sym__whitespace1] = ACTIONS(115), + [sym__newline] = ACTIONS(118), + [aux_sym__text_token1] = ACTIONS(121), + }, + [18] = { + [sym__inline] = STATE(711), + [sym__element] = STATE(84), + [sym_emphasis] = STATE(197), + [sym_emphasis_begin] = STATE(97), + [sym_strong] = STATE(197), + [sym_strong_begin] = STATE(100), + [sym__hard_line_break] = STATE(197), + [sym_hard_line_break] = STATE(197), + [sym__smart_punctuation] = STATE(197), + [sym_autolink] = STATE(197), + [sym_highlighted] = STATE(197), + [sym_insert] = STATE(197), + [sym_delete] = STATE(197), + [sym_superscript] = STATE(197), + [sym_subscript] = STATE(197), + [sym_footnote_reference] = STATE(197), + [sym__image] = STATE(197), + [sym_full_reference_image] = STATE(197), + [sym_collapsed_reference_image] = STATE(197), + [sym_inline_image] = STATE(197), + [sym__image_description] = STATE(676), + [sym__link] = STATE(197), + [sym_full_reference_link] = STATE(197), + [sym_collapsed_reference_link] = STATE(197), + [sym_inline_link] = STATE(197), + [sym_link_text] = STATE(677), + [sym__comment_with_spaces] = STATE(197), + [sym_span] = STATE(197), + [sym_raw_inline] = STATE(197), + [sym_math] = STATE(197), + [sym_verbatim] = STATE(197), + [sym__todo_highlights] = STATE(197), + [sym_todo] = STATE(197), + [sym_note] = STATE(197), + [sym__symbol_fallback] = STATE(197), + [sym__verbatim_begin] = STATE(861), + [aux_sym__text] = STATE(159), + [aux_sym__inline_repeat1] = STATE(84), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE_] = ACTIONS(276), + [anon_sym__] = ACTIONS(279), + [anon_sym_LBRACE_STAR] = ACTIONS(282), + [anon_sym_STAR] = ACTIONS(285), + [anon_sym_BSLASH] = ACTIONS(288), + [sym_quotation_marks] = ACTIONS(291), + [sym_ellipsis] = ACTIONS(291), + [sym_em_dash] = ACTIONS(291), + [sym_en_dash] = ACTIONS(294), + [sym_backslash_escape] = ACTIONS(294), + [anon_sym_LT] = ACTIONS(297), + [anon_sym_LBRACE_EQ] = ACTIONS(300), + [anon_sym_LBRACE_PLUS] = ACTIONS(303), + [anon_sym_LBRACE_DASH] = ACTIONS(306), + [anon_sym_DASH_RBRACE] = ACTIONS(49), + [sym_symbol] = ACTIONS(291), + [anon_sym_LBRACE_CARET] = ACTIONS(309), + [anon_sym_CARET] = ACTIONS(309), + [anon_sym_LBRACE_TILDE] = ACTIONS(312), + [anon_sym_TILDE] = ACTIONS(312), + [anon_sym_LBRACK_CARET] = ACTIONS(315), + [anon_sym_BANG_LBRACK] = ACTIONS(318), + [anon_sym_LBRACK] = ACTIONS(321), + [anon_sym_LBRACE2] = ACTIONS(294), + [anon_sym_DOLLAR] = ACTIONS(324), + [anon_sym_TODO] = ACTIONS(327), + [anon_sym_WIP] = ACTIONS(327), + [anon_sym_NOTE] = ACTIONS(330), + [anon_sym_INFO] = ACTIONS(330), + [anon_sym_XXX] = ACTIONS(330), + [sym_fixme] = ACTIONS(291), + [anon_sym_PIPE] = ACTIONS(291), + [anon_sym_BQUOTE] = ACTIONS(112), + [sym__whitespace1] = ACTIONS(333), + [sym__newline] = ACTIONS(336), + [aux_sym__text_token1] = ACTIONS(339), + }, + [19] = { + [sym__inline] = STATE(835), + [sym__element] = STATE(112), + [sym_emphasis] = STATE(206), + [sym_emphasis_begin] = STATE(108), + [sym_strong] = STATE(206), + [sym_strong_begin] = STATE(110), + [sym__hard_line_break] = STATE(206), + [sym_hard_line_break] = STATE(206), + [sym__smart_punctuation] = STATE(206), + [sym_autolink] = STATE(206), + [sym_highlighted] = STATE(206), + [sym_insert] = STATE(206), + [sym_delete] = STATE(206), + [sym_superscript] = STATE(206), + [sym_subscript] = STATE(206), + [sym_footnote_reference] = STATE(206), + [sym__image] = STATE(206), + [sym_full_reference_image] = STATE(206), + [sym_collapsed_reference_image] = STATE(206), + [sym_inline_image] = STATE(206), + [sym__image_description] = STATE(664), + [sym__link] = STATE(206), + [sym_full_reference_link] = STATE(206), + [sym_collapsed_reference_link] = STATE(206), + [sym_inline_link] = STATE(206), + [sym_link_text] = STATE(663), + [sym__comment_with_spaces] = STATE(206), + [sym_span] = STATE(206), + [sym_raw_inline] = STATE(206), + [sym_math] = STATE(206), + [sym_verbatim] = STATE(206), + [sym__todo_highlights] = STATE(206), + [sym_todo] = STATE(206), + [sym_note] = STATE(206), + [sym__symbol_fallback] = STATE(206), + [sym__verbatim_begin] = STATE(879), + [aux_sym__text] = STATE(126), + [aux_sym__inline_repeat1] = STATE(112), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE_] = ACTIONS(53), + [anon_sym__] = ACTIONS(56), + [anon_sym_LBRACE_STAR] = ACTIONS(59), + [anon_sym_STAR] = ACTIONS(62), + [anon_sym_BSLASH] = ACTIONS(65), + [sym_quotation_marks] = ACTIONS(68), + [sym_ellipsis] = ACTIONS(68), + [sym_em_dash] = ACTIONS(68), + [sym_en_dash] = ACTIONS(71), + [sym_backslash_escape] = ACTIONS(71), + [anon_sym_LT] = ACTIONS(74), + [anon_sym_LBRACE_EQ] = ACTIONS(77), + [anon_sym_EQ_RBRACE] = ACTIONS(49), + [anon_sym_LBRACE_PLUS] = ACTIONS(80), + [anon_sym_LBRACE_DASH] = ACTIONS(83), + [sym_symbol] = ACTIONS(68), + [anon_sym_LBRACE_CARET] = ACTIONS(86), + [anon_sym_CARET] = ACTIONS(86), + [anon_sym_LBRACE_TILDE] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(89), + [anon_sym_LBRACK_CARET] = ACTIONS(92), + [anon_sym_BANG_LBRACK] = ACTIONS(97), + [anon_sym_LBRACK] = ACTIONS(100), + [anon_sym_LBRACE2] = ACTIONS(71), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_TODO] = ACTIONS(106), + [anon_sym_WIP] = ACTIONS(106), + [anon_sym_NOTE] = ACTIONS(109), + [anon_sym_INFO] = ACTIONS(109), + [anon_sym_XXX] = ACTIONS(109), + [sym_fixme] = ACTIONS(68), + [anon_sym_PIPE] = ACTIONS(68), + [anon_sym_BQUOTE] = ACTIONS(112), + [sym__whitespace1] = ACTIONS(115), + [sym__newline] = ACTIONS(118), + [aux_sym__text_token1] = ACTIONS(121), + }, + [20] = { + [sym__inline] = STATE(715), + [sym__element] = STATE(96), + [sym_emphasis] = STATE(182), + [sym_emphasis_begin] = STATE(103), + [sym_strong] = STATE(182), + [sym_strong_begin] = STATE(104), + [sym__hard_line_break] = STATE(182), + [sym_hard_line_break] = STATE(182), + [sym__smart_punctuation] = STATE(182), + [sym_autolink] = STATE(182), + [sym_highlighted] = STATE(182), + [sym_insert] = STATE(182), + [sym_delete] = STATE(182), + [sym_superscript] = STATE(182), + [sym_subscript] = STATE(182), + [sym_footnote_reference] = STATE(182), + [sym__image] = STATE(182), + [sym_full_reference_image] = STATE(182), + [sym_collapsed_reference_image] = STATE(182), + [sym_inline_image] = STATE(182), + [sym__image_description] = STATE(672), + [sym__link] = STATE(182), + [sym_full_reference_link] = STATE(182), + [sym_collapsed_reference_link] = STATE(182), + [sym_inline_link] = STATE(182), + [sym_link_text] = STATE(671), + [sym__comment_with_spaces] = STATE(182), + [sym_span] = STATE(182), + [sym_raw_inline] = STATE(182), + [sym_math] = STATE(182), + [sym_verbatim] = STATE(182), + [sym__todo_highlights] = STATE(182), + [sym_todo] = STATE(182), + [sym_note] = STATE(182), + [sym__symbol_fallback] = STATE(182), + [sym__verbatim_begin] = STATE(870), + [aux_sym__text] = STATE(150), + [aux_sym__inline_repeat1] = STATE(96), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE_] = ACTIONS(141), + [anon_sym__] = ACTIONS(144), + [anon_sym_LBRACE_STAR] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(150), + [anon_sym_BSLASH] = ACTIONS(153), + [sym_quotation_marks] = ACTIONS(156), + [sym_ellipsis] = ACTIONS(156), + [sym_em_dash] = ACTIONS(156), + [sym_en_dash] = ACTIONS(159), + [sym_backslash_escape] = ACTIONS(159), + [anon_sym_LT] = ACTIONS(162), + [anon_sym_LBRACE_EQ] = ACTIONS(165), + [anon_sym_EQ_RBRACE] = ACTIONS(49), + [anon_sym_LBRACE_PLUS] = ACTIONS(168), + [anon_sym_LBRACE_DASH] = ACTIONS(171), + [sym_symbol] = ACTIONS(156), + [anon_sym_LBRACE_CARET] = ACTIONS(174), + [anon_sym_CARET] = ACTIONS(174), + [anon_sym_LBRACE_TILDE] = ACTIONS(177), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_LBRACK_CARET] = ACTIONS(183), + [anon_sym_BANG_LBRACK] = ACTIONS(186), + [anon_sym_LBRACK] = ACTIONS(189), + [anon_sym_LBRACE2] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(192), + [anon_sym_TODO] = ACTIONS(195), + [anon_sym_WIP] = ACTIONS(195), + [anon_sym_NOTE] = ACTIONS(198), + [anon_sym_INFO] = ACTIONS(198), + [anon_sym_XXX] = ACTIONS(198), + [sym_fixme] = ACTIONS(156), + [anon_sym_PIPE] = ACTIONS(156), + [anon_sym_BQUOTE] = ACTIONS(112), + [sym__whitespace1] = ACTIONS(201), + [sym__newline] = ACTIONS(204), + [aux_sym__text_token1] = ACTIONS(207), + }, + [21] = { + [sym__inline] = STATE(714), + [sym__element] = STATE(84), + [sym_emphasis] = STATE(197), + [sym_emphasis_begin] = STATE(97), + [sym_strong] = STATE(197), + [sym_strong_begin] = STATE(100), + [sym__hard_line_break] = STATE(197), + [sym_hard_line_break] = STATE(197), + [sym__smart_punctuation] = STATE(197), + [sym_autolink] = STATE(197), + [sym_highlighted] = STATE(197), + [sym_insert] = STATE(197), + [sym_delete] = STATE(197), + [sym_superscript] = STATE(197), + [sym_subscript] = STATE(197), + [sym_footnote_reference] = STATE(197), + [sym__image] = STATE(197), + [sym_full_reference_image] = STATE(197), + [sym_collapsed_reference_image] = STATE(197), + [sym_inline_image] = STATE(197), + [sym__image_description] = STATE(676), + [sym__link] = STATE(197), + [sym_full_reference_link] = STATE(197), + [sym_collapsed_reference_link] = STATE(197), + [sym_inline_link] = STATE(197), + [sym_link_text] = STATE(677), + [sym__comment_with_spaces] = STATE(197), + [sym_span] = STATE(197), + [sym_raw_inline] = STATE(197), + [sym_math] = STATE(197), + [sym_verbatim] = STATE(197), + [sym__todo_highlights] = STATE(197), + [sym_todo] = STATE(197), + [sym_note] = STATE(197), + [sym__symbol_fallback] = STATE(197), + [sym__verbatim_begin] = STATE(861), + [aux_sym__text] = STATE(159), + [aux_sym__inline_repeat1] = STATE(84), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE_] = ACTIONS(276), + [anon_sym__] = ACTIONS(279), + [anon_sym_LBRACE_STAR] = ACTIONS(282), + [anon_sym_STAR] = ACTIONS(285), + [anon_sym_BSLASH] = ACTIONS(288), + [sym_quotation_marks] = ACTIONS(291), + [sym_ellipsis] = ACTIONS(291), + [sym_em_dash] = ACTIONS(291), + [sym_en_dash] = ACTIONS(294), + [sym_backslash_escape] = ACTIONS(294), + [anon_sym_LT] = ACTIONS(297), + [anon_sym_LBRACE_EQ] = ACTIONS(300), + [anon_sym_EQ_RBRACE] = ACTIONS(49), + [anon_sym_LBRACE_PLUS] = ACTIONS(303), + [anon_sym_LBRACE_DASH] = ACTIONS(306), + [sym_symbol] = ACTIONS(291), + [anon_sym_LBRACE_CARET] = ACTIONS(309), + [anon_sym_CARET] = ACTIONS(309), + [anon_sym_LBRACE_TILDE] = ACTIONS(312), + [anon_sym_TILDE] = ACTIONS(312), + [anon_sym_LBRACK_CARET] = ACTIONS(315), + [anon_sym_BANG_LBRACK] = ACTIONS(318), + [anon_sym_LBRACK] = ACTIONS(321), + [anon_sym_LBRACE2] = ACTIONS(294), + [anon_sym_DOLLAR] = ACTIONS(324), + [anon_sym_TODO] = ACTIONS(327), + [anon_sym_WIP] = ACTIONS(327), + [anon_sym_NOTE] = ACTIONS(330), + [anon_sym_INFO] = ACTIONS(330), + [anon_sym_XXX] = ACTIONS(330), + [sym_fixme] = ACTIONS(291), + [anon_sym_PIPE] = ACTIONS(291), + [anon_sym_BQUOTE] = ACTIONS(112), + [sym__whitespace1] = ACTIONS(333), + [sym__newline] = ACTIONS(336), + [aux_sym__text_token1] = ACTIONS(339), + }, + [22] = { + [sym__inline] = STATE(819), + [sym__element] = STATE(98), + [sym_emphasis] = STATE(207), + [sym_emphasis_begin] = STATE(89), + [sym_strong] = STATE(207), + [sym_strong_begin] = STATE(72), + [sym__hard_line_break] = STATE(207), + [sym_hard_line_break] = STATE(207), + [sym__smart_punctuation] = STATE(207), + [sym_autolink] = STATE(207), + [sym_highlighted] = STATE(207), + [sym_insert] = STATE(207), + [sym_delete] = STATE(207), + [sym_superscript] = STATE(207), + [sym_subscript] = STATE(207), + [sym_footnote_reference] = STATE(207), + [sym__image] = STATE(207), + [sym_full_reference_image] = STATE(207), + [sym_collapsed_reference_image] = STATE(207), + [sym_inline_image] = STATE(207), + [sym__image_description] = STATE(666), + [sym__link] = STATE(207), + [sym_full_reference_link] = STATE(207), + [sym_collapsed_reference_link] = STATE(207), + [sym_inline_link] = STATE(207), + [sym_link_text] = STATE(667), + [sym__comment_with_spaces] = STATE(207), + [sym_span] = STATE(207), + [sym_raw_inline] = STATE(207), + [sym_math] = STATE(207), + [sym_verbatim] = STATE(207), + [sym__todo_highlights] = STATE(207), + [sym_todo] = STATE(207), + [sym_note] = STATE(207), + [sym__symbol_fallback] = STATE(207), + [sym__verbatim_begin] = STATE(852), + [aux_sym__text] = STATE(139), + [aux_sym__inline_repeat1] = STATE(98), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE_] = ACTIONS(210), + [anon_sym__] = ACTIONS(213), + [anon_sym_LBRACE_STAR] = ACTIONS(216), + [anon_sym_STAR] = ACTIONS(219), + [anon_sym_BSLASH] = ACTIONS(222), + [sym_quotation_marks] = ACTIONS(225), + [sym_ellipsis] = ACTIONS(225), + [sym_em_dash] = ACTIONS(225), + [sym_en_dash] = ACTIONS(228), + [sym_backslash_escape] = ACTIONS(228), + [anon_sym_LT] = ACTIONS(231), + [anon_sym_LBRACE_EQ] = ACTIONS(234), + [anon_sym_EQ_RBRACE] = ACTIONS(49), + [anon_sym_LBRACE_PLUS] = ACTIONS(237), + [anon_sym_LBRACE_DASH] = ACTIONS(240), + [sym_symbol] = ACTIONS(225), + [anon_sym_LBRACE_CARET] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(243), + [anon_sym_LBRACE_TILDE] = ACTIONS(246), + [anon_sym_TILDE] = ACTIONS(246), + [anon_sym_LBRACK_CARET] = ACTIONS(249), + [anon_sym_BANG_LBRACK] = ACTIONS(252), + [anon_sym_LBRACK] = ACTIONS(255), + [anon_sym_LBRACE2] = ACTIONS(228), + [anon_sym_DOLLAR] = ACTIONS(258), + [anon_sym_TODO] = ACTIONS(261), + [anon_sym_WIP] = ACTIONS(261), + [anon_sym_NOTE] = ACTIONS(264), + [anon_sym_INFO] = ACTIONS(264), + [anon_sym_XXX] = ACTIONS(264), + [sym_fixme] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(225), + [anon_sym_BQUOTE] = ACTIONS(112), + [sym__whitespace1] = ACTIONS(267), + [sym__newline] = ACTIONS(270), + [aux_sym__text_token1] = ACTIONS(273), + }, + [23] = { + [sym__inline] = STATE(820), + [sym__element] = STATE(101), + [sym_emphasis] = STATE(173), + [sym_emphasis_begin] = STATE(87), + [sym_strong] = STATE(173), + [sym_strong_begin] = STATE(76), + [sym__hard_line_break] = STATE(173), + [sym_hard_line_break] = STATE(173), + [sym__smart_punctuation] = STATE(173), + [sym_autolink] = STATE(173), + [sym_highlighted] = STATE(173), + [sym_insert] = STATE(173), + [sym_delete] = STATE(173), + [sym_superscript] = STATE(173), + [sym_subscript] = STATE(173), + [sym_footnote_reference] = STATE(173), + [sym__image] = STATE(173), + [sym_full_reference_image] = STATE(173), + [sym_collapsed_reference_image] = STATE(173), + [sym_inline_image] = STATE(173), + [sym__image_description] = STATE(647), + [sym__link] = STATE(173), + [sym_full_reference_link] = STATE(173), + [sym_collapsed_reference_link] = STATE(173), + [sym_inline_link] = STATE(173), + [sym_link_text] = STATE(648), + [sym__comment_with_spaces] = STATE(173), + [sym_span] = STATE(173), + [sym_raw_inline] = STATE(173), + [sym_math] = STATE(173), + [sym_verbatim] = STATE(173), + [sym__todo_highlights] = STATE(173), + [sym_todo] = STATE(173), + [sym_note] = STATE(173), + [sym__symbol_fallback] = STATE(173), + [sym__verbatim_begin] = STATE(843), + [aux_sym__text] = STATE(155), + [aux_sym__inline_repeat1] = STATE(101), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE_] = ACTIONS(342), + [anon_sym__] = ACTIONS(345), + [anon_sym_LBRACE_STAR] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(351), + [anon_sym_BSLASH] = ACTIONS(354), + [sym_quotation_marks] = ACTIONS(357), + [sym_ellipsis] = ACTIONS(357), + [sym_em_dash] = ACTIONS(357), + [sym_en_dash] = ACTIONS(360), + [sym_backslash_escape] = ACTIONS(360), + [anon_sym_LT] = ACTIONS(363), + [anon_sym_LBRACE_EQ] = ACTIONS(366), + [anon_sym_EQ_RBRACE] = ACTIONS(49), + [anon_sym_LBRACE_PLUS] = ACTIONS(369), + [anon_sym_LBRACE_DASH] = ACTIONS(372), + [sym_symbol] = ACTIONS(357), + [anon_sym_LBRACE_CARET] = ACTIONS(375), + [anon_sym_CARET] = ACTIONS(375), + [anon_sym_LBRACE_TILDE] = ACTIONS(378), + [anon_sym_TILDE] = ACTIONS(378), + [anon_sym_LBRACK_CARET] = ACTIONS(381), + [anon_sym_BANG_LBRACK] = ACTIONS(384), + [anon_sym_LBRACK] = ACTIONS(387), + [anon_sym_LBRACE2] = ACTIONS(360), + [anon_sym_DOLLAR] = ACTIONS(390), + [anon_sym_TODO] = ACTIONS(393), + [anon_sym_WIP] = ACTIONS(393), + [anon_sym_NOTE] = ACTIONS(396), + [anon_sym_INFO] = ACTIONS(396), + [anon_sym_XXX] = ACTIONS(396), + [sym_fixme] = ACTIONS(357), + [anon_sym_PIPE] = ACTIONS(357), + [anon_sym_BQUOTE] = ACTIONS(112), + [sym__whitespace1] = ACTIONS(399), + [sym__newline] = ACTIONS(402), + [aux_sym__text_token1] = ACTIONS(405), + }, + [24] = { + [sym__inline] = STATE(821), + [sym__element] = STATE(109), + [sym_emphasis] = STATE(221), + [sym_emphasis_begin] = STATE(82), + [sym_strong] = STATE(221), + [sym_strong_begin] = STATE(83), + [sym__hard_line_break] = STATE(221), + [sym_hard_line_break] = STATE(221), + [sym__smart_punctuation] = STATE(221), + [sym_autolink] = STATE(221), + [sym_highlighted] = STATE(221), + [sym_insert] = STATE(221), + [sym_delete] = STATE(221), + [sym_superscript] = STATE(221), + [sym_subscript] = STATE(221), + [sym_footnote_reference] = STATE(221), + [sym__image] = STATE(221), + [sym_full_reference_image] = STATE(221), + [sym_collapsed_reference_image] = STATE(221), + [sym_inline_image] = STATE(221), + [sym__image_description] = STATE(669), + [sym__link] = STATE(221), + [sym_full_reference_link] = STATE(221), + [sym_collapsed_reference_link] = STATE(221), + [sym_inline_link] = STATE(221), + [sym_link_text] = STATE(657), + [sym__comment_with_spaces] = STATE(221), + [sym_span] = STATE(221), + [sym_raw_inline] = STATE(221), + [sym_math] = STATE(221), + [sym_verbatim] = STATE(221), + [sym__todo_highlights] = STATE(221), + [sym_todo] = STATE(221), + [sym_note] = STATE(221), + [sym__symbol_fallback] = STATE(221), + [sym__verbatim_begin] = STATE(834), + [aux_sym__text] = STATE(134), + [aux_sym__inline_repeat1] = STATE(109), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE_] = ACTIONS(408), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_STAR] = ACTIONS(414), + [anon_sym_STAR] = ACTIONS(417), + [anon_sym_BSLASH] = ACTIONS(420), + [sym_quotation_marks] = ACTIONS(423), + [sym_ellipsis] = ACTIONS(423), + [sym_em_dash] = ACTIONS(423), + [sym_en_dash] = ACTIONS(426), + [sym_backslash_escape] = ACTIONS(426), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_LBRACE_EQ] = ACTIONS(432), + [anon_sym_EQ_RBRACE] = ACTIONS(49), + [anon_sym_LBRACE_PLUS] = ACTIONS(435), + [anon_sym_LBRACE_DASH] = ACTIONS(438), + [sym_symbol] = ACTIONS(423), + [anon_sym_LBRACE_CARET] = ACTIONS(441), + [anon_sym_CARET] = ACTIONS(441), + [anon_sym_LBRACE_TILDE] = ACTIONS(444), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_LBRACK_CARET] = ACTIONS(447), + [anon_sym_BANG_LBRACK] = ACTIONS(450), + [anon_sym_LBRACK] = ACTIONS(453), + [anon_sym_LBRACE2] = ACTIONS(426), + [anon_sym_DOLLAR] = ACTIONS(456), + [anon_sym_TODO] = ACTIONS(459), + [anon_sym_WIP] = ACTIONS(459), + [anon_sym_NOTE] = ACTIONS(462), + [anon_sym_INFO] = ACTIONS(462), + [anon_sym_XXX] = ACTIONS(462), + [sym_fixme] = ACTIONS(423), + [anon_sym_PIPE] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(112), + [sym__whitespace1] = ACTIONS(465), + [sym__newline] = ACTIONS(468), + [aux_sym__text_token1] = ACTIONS(471), + }, + [25] = { + [sym__inline] = STATE(833), + [sym__element] = STATE(112), + [sym_emphasis] = STATE(206), + [sym_emphasis_begin] = STATE(108), + [sym_strong] = STATE(206), + [sym_strong_begin] = STATE(110), + [sym__hard_line_break] = STATE(206), + [sym_hard_line_break] = STATE(206), + [sym__smart_punctuation] = STATE(206), + [sym_autolink] = STATE(206), + [sym_highlighted] = STATE(206), + [sym_insert] = STATE(206), + [sym_delete] = STATE(206), + [sym_superscript] = STATE(206), + [sym_subscript] = STATE(206), + [sym_footnote_reference] = STATE(206), + [sym__image] = STATE(206), + [sym_full_reference_image] = STATE(206), + [sym_collapsed_reference_image] = STATE(206), + [sym_inline_image] = STATE(206), + [sym__image_description] = STATE(664), + [sym__link] = STATE(206), + [sym_full_reference_link] = STATE(206), + [sym_collapsed_reference_link] = STATE(206), + [sym_inline_link] = STATE(206), + [sym_link_text] = STATE(663), + [sym__comment_with_spaces] = STATE(206), + [sym_span] = STATE(206), + [sym_raw_inline] = STATE(206), + [sym_math] = STATE(206), + [sym_verbatim] = STATE(206), + [sym__todo_highlights] = STATE(206), + [sym_todo] = STATE(206), + [sym_note] = STATE(206), + [sym__symbol_fallback] = STATE(206), + [sym__verbatim_begin] = STATE(879), + [aux_sym__text] = STATE(126), + [aux_sym__inline_repeat1] = STATE(112), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE_] = ACTIONS(53), + [anon_sym__] = ACTIONS(56), + [anon_sym_LBRACE_STAR] = ACTIONS(59), + [anon_sym_STAR] = ACTIONS(62), + [anon_sym_BSLASH] = ACTIONS(65), + [sym_quotation_marks] = ACTIONS(68), + [sym_ellipsis] = ACTIONS(68), + [sym_em_dash] = ACTIONS(68), + [sym_en_dash] = ACTIONS(71), + [sym_backslash_escape] = ACTIONS(71), + [anon_sym_LT] = ACTIONS(74), + [anon_sym_LBRACE_EQ] = ACTIONS(77), + [anon_sym_LBRACE_PLUS] = ACTIONS(80), + [anon_sym_LBRACE_DASH] = ACTIONS(83), + [sym_symbol] = ACTIONS(68), + [anon_sym_LBRACE_CARET] = ACTIONS(86), + [anon_sym_CARET] = ACTIONS(86), + [anon_sym_LBRACE_TILDE] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(89), + [anon_sym_LBRACK_CARET] = ACTIONS(92), + [anon_sym_RBRACK] = ACTIONS(474), + [anon_sym_BANG_LBRACK] = ACTIONS(97), + [anon_sym_LBRACK] = ACTIONS(100), + [anon_sym_LBRACE2] = ACTIONS(71), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_TODO] = ACTIONS(106), + [anon_sym_WIP] = ACTIONS(106), + [anon_sym_NOTE] = ACTIONS(109), + [anon_sym_INFO] = ACTIONS(109), + [anon_sym_XXX] = ACTIONS(109), + [sym_fixme] = ACTIONS(68), + [anon_sym_PIPE] = ACTIONS(68), + [anon_sym_BQUOTE] = ACTIONS(112), + [sym__whitespace1] = ACTIONS(115), + [sym__newline] = ACTIONS(118), + [aux_sym__text_token1] = ACTIONS(121), + }, + [26] = { + [sym__inline] = STATE(880), + [sym__element] = STATE(112), + [sym_emphasis] = STATE(206), + [sym_emphasis_begin] = STATE(108), + [sym_strong] = STATE(206), + [sym_strong_begin] = STATE(110), + [sym__hard_line_break] = STATE(206), + [sym_hard_line_break] = STATE(206), + [sym__smart_punctuation] = STATE(206), + [sym_autolink] = STATE(206), + [sym_highlighted] = STATE(206), + [sym_insert] = STATE(206), + [sym_delete] = STATE(206), + [sym_superscript] = STATE(206), + [sym_subscript] = STATE(206), + [sym_footnote_reference] = STATE(206), + [sym__image] = STATE(206), + [sym_full_reference_image] = STATE(206), + [sym_collapsed_reference_image] = STATE(206), + [sym_inline_image] = STATE(206), + [sym__image_description] = STATE(664), + [sym__link] = STATE(206), + [sym_full_reference_link] = STATE(206), + [sym_collapsed_reference_link] = STATE(206), + [sym_inline_link] = STATE(206), + [sym_link_text] = STATE(663), + [sym__comment_with_spaces] = STATE(206), + [sym_span] = STATE(206), + [sym_raw_inline] = STATE(206), + [sym_math] = STATE(206), + [sym_verbatim] = STATE(206), + [sym__todo_highlights] = STATE(206), + [sym_todo] = STATE(206), + [sym_note] = STATE(206), + [sym__symbol_fallback] = STATE(206), + [sym__verbatim_begin] = STATE(879), + [aux_sym__text] = STATE(126), + [aux_sym__inline_repeat1] = STATE(112), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE_] = ACTIONS(53), + [anon_sym__] = ACTIONS(56), + [anon_sym_LBRACE_STAR] = ACTIONS(59), + [anon_sym_STAR] = ACTIONS(62), + [anon_sym_BSLASH] = ACTIONS(65), + [sym_quotation_marks] = ACTIONS(68), + [sym_ellipsis] = ACTIONS(68), + [sym_em_dash] = ACTIONS(68), + [sym_en_dash] = ACTIONS(71), + [sym_backslash_escape] = ACTIONS(71), + [anon_sym_LT] = ACTIONS(74), + [anon_sym_LBRACE_EQ] = ACTIONS(77), + [anon_sym_LBRACE_PLUS] = ACTIONS(80), + [anon_sym_LBRACE_DASH] = ACTIONS(83), + [sym_symbol] = ACTIONS(68), + [anon_sym_LBRACE_CARET] = ACTIONS(86), + [anon_sym_CARET] = ACTIONS(86), + [anon_sym_LBRACE_TILDE] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(89), + [anon_sym_LBRACK_CARET] = ACTIONS(92), + [anon_sym_RBRACK] = ACTIONS(49), + [anon_sym_BANG_LBRACK] = ACTIONS(97), + [anon_sym_LBRACK] = ACTIONS(100), + [anon_sym_LBRACE2] = ACTIONS(71), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_TODO] = ACTIONS(106), + [anon_sym_WIP] = ACTIONS(106), + [anon_sym_NOTE] = ACTIONS(109), + [anon_sym_INFO] = ACTIONS(109), + [anon_sym_XXX] = ACTIONS(109), + [sym_fixme] = ACTIONS(68), + [anon_sym_PIPE] = ACTIONS(68), + [anon_sym_BQUOTE] = ACTIONS(112), + [sym__whitespace1] = ACTIONS(115), + [sym__newline] = ACTIONS(118), + [aux_sym__text_token1] = ACTIONS(121), + }, + [27] = { + [sym__inline] = STATE(736), + [sym__element] = STATE(84), + [sym_emphasis] = STATE(197), + [sym_emphasis_begin] = STATE(97), + [sym_strong] = STATE(197), + [sym_strong_begin] = STATE(100), + [sym__hard_line_break] = STATE(197), + [sym_hard_line_break] = STATE(197), + [sym__smart_punctuation] = STATE(197), + [sym_autolink] = STATE(197), + [sym_highlighted] = STATE(197), + [sym_insert] = STATE(197), + [sym_delete] = STATE(197), + [sym_superscript] = STATE(197), + [sym_subscript] = STATE(197), + [sym_footnote_reference] = STATE(197), + [sym__image] = STATE(197), + [sym_full_reference_image] = STATE(197), + [sym_collapsed_reference_image] = STATE(197), + [sym_inline_image] = STATE(197), + [sym__image_description] = STATE(676), + [sym__link] = STATE(197), + [sym_full_reference_link] = STATE(197), + [sym_collapsed_reference_link] = STATE(197), + [sym_inline_link] = STATE(197), + [sym_link_text] = STATE(677), + [sym__comment_with_spaces] = STATE(197), + [sym_span] = STATE(197), + [sym_raw_inline] = STATE(197), + [sym_math] = STATE(197), + [sym_verbatim] = STATE(197), + [sym__todo_highlights] = STATE(197), + [sym_todo] = STATE(197), + [sym_note] = STATE(197), + [sym__symbol_fallback] = STATE(197), + [sym__verbatim_begin] = STATE(861), + [aux_sym__text] = STATE(159), + [aux_sym__inline_repeat1] = STATE(84), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE_] = ACTIONS(276), + [anon_sym__] = ACTIONS(279), + [anon_sym_LBRACE_STAR] = ACTIONS(282), + [anon_sym_STAR] = ACTIONS(285), + [anon_sym_BSLASH] = ACTIONS(288), + [sym_quotation_marks] = ACTIONS(291), + [sym_ellipsis] = ACTIONS(291), + [sym_em_dash] = ACTIONS(291), + [sym_en_dash] = ACTIONS(294), + [sym_backslash_escape] = ACTIONS(294), + [anon_sym_LT] = ACTIONS(297), + [anon_sym_LBRACE_EQ] = ACTIONS(300), + [anon_sym_LBRACE_PLUS] = ACTIONS(303), + [anon_sym_LBRACE_DASH] = ACTIONS(306), + [sym_symbol] = ACTIONS(291), + [anon_sym_LBRACE_CARET] = ACTIONS(309), + [anon_sym_CARET] = ACTIONS(309), + [anon_sym_LBRACE_TILDE] = ACTIONS(312), + [anon_sym_TILDE] = ACTIONS(312), + [anon_sym_LBRACK_CARET] = ACTIONS(315), + [anon_sym_RBRACK] = ACTIONS(49), + [anon_sym_BANG_LBRACK] = ACTIONS(318), + [anon_sym_LBRACK] = ACTIONS(321), + [anon_sym_LBRACE2] = ACTIONS(294), + [anon_sym_DOLLAR] = ACTIONS(324), + [anon_sym_TODO] = ACTIONS(327), + [anon_sym_WIP] = ACTIONS(327), + [anon_sym_NOTE] = ACTIONS(330), + [anon_sym_INFO] = ACTIONS(330), + [anon_sym_XXX] = ACTIONS(330), + [sym_fixme] = ACTIONS(291), + [anon_sym_PIPE] = ACTIONS(291), + [anon_sym_BQUOTE] = ACTIONS(112), + [sym__whitespace1] = ACTIONS(333), + [sym__newline] = ACTIONS(336), + [aux_sym__text_token1] = ACTIONS(339), + }, + [28] = { + [sym__inline] = STATE(758), + [sym__element] = STATE(98), + [sym_emphasis] = STATE(207), + [sym_emphasis_begin] = STATE(89), + [sym_strong] = STATE(207), + [sym_strong_begin] = STATE(72), + [sym__hard_line_break] = STATE(207), + [sym_hard_line_break] = STATE(207), + [sym__smart_punctuation] = STATE(207), + [sym_autolink] = STATE(207), + [sym_highlighted] = STATE(207), + [sym_insert] = STATE(207), + [sym_delete] = STATE(207), + [sym_superscript] = STATE(207), + [sym_subscript] = STATE(207), + [sym_footnote_reference] = STATE(207), + [sym__image] = STATE(207), + [sym_full_reference_image] = STATE(207), + [sym_collapsed_reference_image] = STATE(207), + [sym_inline_image] = STATE(207), + [sym__image_description] = STATE(666), + [sym__link] = STATE(207), + [sym_full_reference_link] = STATE(207), + [sym_collapsed_reference_link] = STATE(207), + [sym_inline_link] = STATE(207), + [sym_link_text] = STATE(667), + [sym__comment_with_spaces] = STATE(207), + [sym_span] = STATE(207), + [sym_raw_inline] = STATE(207), + [sym_math] = STATE(207), + [sym_verbatim] = STATE(207), + [sym__todo_highlights] = STATE(207), + [sym_todo] = STATE(207), + [sym_note] = STATE(207), + [sym__symbol_fallback] = STATE(207), + [sym__verbatim_begin] = STATE(852), + [aux_sym__text] = STATE(139), + [aux_sym__inline_repeat1] = STATE(98), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE_] = ACTIONS(210), + [anon_sym__] = ACTIONS(213), + [anon_sym_LBRACE_STAR] = ACTIONS(216), + [anon_sym_STAR] = ACTIONS(219), + [anon_sym_BSLASH] = ACTIONS(222), + [sym_quotation_marks] = ACTIONS(225), + [sym_ellipsis] = ACTIONS(225), + [sym_em_dash] = ACTIONS(225), + [sym_en_dash] = ACTIONS(228), + [sym_backslash_escape] = ACTIONS(228), + [anon_sym_LT] = ACTIONS(231), + [anon_sym_LBRACE_EQ] = ACTIONS(234), + [anon_sym_LBRACE_PLUS] = ACTIONS(237), + [anon_sym_LBRACE_DASH] = ACTIONS(240), + [sym_symbol] = ACTIONS(225), + [anon_sym_LBRACE_CARET] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(243), + [anon_sym_LBRACE_TILDE] = ACTIONS(246), + [anon_sym_TILDE] = ACTIONS(246), + [anon_sym_LBRACK_CARET] = ACTIONS(249), + [anon_sym_RBRACK] = ACTIONS(49), + [anon_sym_BANG_LBRACK] = ACTIONS(252), + [anon_sym_LBRACK] = ACTIONS(255), + [anon_sym_LBRACE2] = ACTIONS(228), + [anon_sym_DOLLAR] = ACTIONS(258), + [anon_sym_TODO] = ACTIONS(261), + [anon_sym_WIP] = ACTIONS(261), + [anon_sym_NOTE] = ACTIONS(264), + [anon_sym_INFO] = ACTIONS(264), + [anon_sym_XXX] = ACTIONS(264), + [sym_fixme] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(225), + [anon_sym_BQUOTE] = ACTIONS(112), + [sym__whitespace1] = ACTIONS(267), + [sym__newline] = ACTIONS(270), + [aux_sym__text_token1] = ACTIONS(273), + }, + [29] = { + [sym__inline] = STATE(757), + [sym__element] = STATE(101), + [sym_emphasis] = STATE(173), + [sym_emphasis_begin] = STATE(87), + [sym_strong] = STATE(173), + [sym_strong_begin] = STATE(76), + [sym__hard_line_break] = STATE(173), + [sym_hard_line_break] = STATE(173), + [sym__smart_punctuation] = STATE(173), + [sym_autolink] = STATE(173), + [sym_highlighted] = STATE(173), + [sym_insert] = STATE(173), + [sym_delete] = STATE(173), + [sym_superscript] = STATE(173), + [sym_subscript] = STATE(173), + [sym_footnote_reference] = STATE(173), + [sym__image] = STATE(173), + [sym_full_reference_image] = STATE(173), + [sym_collapsed_reference_image] = STATE(173), + [sym_inline_image] = STATE(173), + [sym__image_description] = STATE(647), + [sym__link] = STATE(173), + [sym_full_reference_link] = STATE(173), + [sym_collapsed_reference_link] = STATE(173), + [sym_inline_link] = STATE(173), + [sym_link_text] = STATE(648), + [sym__comment_with_spaces] = STATE(173), + [sym_span] = STATE(173), + [sym_raw_inline] = STATE(173), + [sym_math] = STATE(173), + [sym_verbatim] = STATE(173), + [sym__todo_highlights] = STATE(173), + [sym_todo] = STATE(173), + [sym_note] = STATE(173), + [sym__symbol_fallback] = STATE(173), + [sym__verbatim_begin] = STATE(843), + [aux_sym__text] = STATE(155), + [aux_sym__inline_repeat1] = STATE(101), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE_] = ACTIONS(342), + [anon_sym__] = ACTIONS(345), + [anon_sym_LBRACE_STAR] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(351), + [anon_sym_BSLASH] = ACTIONS(354), + [sym_quotation_marks] = ACTIONS(357), + [sym_ellipsis] = ACTIONS(357), + [sym_em_dash] = ACTIONS(357), + [sym_en_dash] = ACTIONS(360), + [sym_backslash_escape] = ACTIONS(360), + [anon_sym_LT] = ACTIONS(363), + [anon_sym_LBRACE_EQ] = ACTIONS(366), + [anon_sym_LBRACE_PLUS] = ACTIONS(369), + [anon_sym_LBRACE_DASH] = ACTIONS(372), + [sym_symbol] = ACTIONS(357), + [anon_sym_LBRACE_CARET] = ACTIONS(375), + [anon_sym_CARET] = ACTIONS(375), + [anon_sym_LBRACE_TILDE] = ACTIONS(378), + [anon_sym_TILDE] = ACTIONS(378), + [anon_sym_LBRACK_CARET] = ACTIONS(381), + [anon_sym_RBRACK] = ACTIONS(49), + [anon_sym_BANG_LBRACK] = ACTIONS(384), + [anon_sym_LBRACK] = ACTIONS(387), + [anon_sym_LBRACE2] = ACTIONS(360), + [anon_sym_DOLLAR] = ACTIONS(390), + [anon_sym_TODO] = ACTIONS(393), + [anon_sym_WIP] = ACTIONS(393), + [anon_sym_NOTE] = ACTIONS(396), + [anon_sym_INFO] = ACTIONS(396), + [anon_sym_XXX] = ACTIONS(396), + [sym_fixme] = ACTIONS(357), + [anon_sym_PIPE] = ACTIONS(357), + [anon_sym_BQUOTE] = ACTIONS(112), + [sym__whitespace1] = ACTIONS(399), + [sym__newline] = ACTIONS(402), + [aux_sym__text_token1] = ACTIONS(405), + }, + [30] = { + [sym__inline] = STATE(847), + [sym__element] = STATE(98), + [sym_emphasis] = STATE(207), + [sym_emphasis_begin] = STATE(89), + [sym_strong] = STATE(207), + [sym_strong_begin] = STATE(72), + [sym__hard_line_break] = STATE(207), + [sym_hard_line_break] = STATE(207), + [sym__smart_punctuation] = STATE(207), + [sym_autolink] = STATE(207), + [sym_highlighted] = STATE(207), + [sym_insert] = STATE(207), + [sym_delete] = STATE(207), + [sym_superscript] = STATE(207), + [sym_subscript] = STATE(207), + [sym_footnote_reference] = STATE(207), + [sym__image] = STATE(207), + [sym_full_reference_image] = STATE(207), + [sym_collapsed_reference_image] = STATE(207), + [sym_inline_image] = STATE(207), + [sym__image_description] = STATE(666), + [sym__link] = STATE(207), + [sym_full_reference_link] = STATE(207), + [sym_collapsed_reference_link] = STATE(207), + [sym_inline_link] = STATE(207), + [sym_link_text] = STATE(667), + [sym__comment_with_spaces] = STATE(207), + [sym_span] = STATE(207), + [sym_raw_inline] = STATE(207), + [sym_math] = STATE(207), + [sym_verbatim] = STATE(207), + [sym__todo_highlights] = STATE(207), + [sym_todo] = STATE(207), + [sym_note] = STATE(207), + [sym__symbol_fallback] = STATE(207), + [sym__verbatim_begin] = STATE(852), + [aux_sym__text] = STATE(139), + [aux_sym__inline_repeat1] = STATE(98), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE_] = ACTIONS(210), + [anon_sym__] = ACTIONS(213), + [anon_sym_LBRACE_STAR] = ACTIONS(216), + [anon_sym_STAR] = ACTIONS(219), + [anon_sym_BSLASH] = ACTIONS(222), + [sym_quotation_marks] = ACTIONS(225), + [sym_ellipsis] = ACTIONS(225), + [sym_em_dash] = ACTIONS(225), + [sym_en_dash] = ACTIONS(228), + [sym_backslash_escape] = ACTIONS(228), + [anon_sym_LT] = ACTIONS(231), + [anon_sym_LBRACE_EQ] = ACTIONS(234), + [anon_sym_LBRACE_PLUS] = ACTIONS(237), + [anon_sym_LBRACE_DASH] = ACTIONS(240), + [anon_sym_DASH_RBRACE] = ACTIONS(49), + [sym_symbol] = ACTIONS(225), + [anon_sym_LBRACE_CARET] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(243), + [anon_sym_LBRACE_TILDE] = ACTIONS(246), + [anon_sym_TILDE] = ACTIONS(246), + [anon_sym_LBRACK_CARET] = ACTIONS(249), + [anon_sym_BANG_LBRACK] = ACTIONS(252), + [anon_sym_LBRACK] = ACTIONS(255), + [anon_sym_LBRACE2] = ACTIONS(228), + [anon_sym_DOLLAR] = ACTIONS(258), + [anon_sym_TODO] = ACTIONS(261), + [anon_sym_WIP] = ACTIONS(261), + [anon_sym_NOTE] = ACTIONS(264), + [anon_sym_INFO] = ACTIONS(264), + [anon_sym_XXX] = ACTIONS(264), + [sym_fixme] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(225), + [anon_sym_BQUOTE] = ACTIONS(112), + [sym__whitespace1] = ACTIONS(267), + [sym__newline] = ACTIONS(270), + [aux_sym__text_token1] = ACTIONS(273), + }, + [31] = { + [sym__inline] = STATE(756), + [sym__element] = STATE(109), + [sym_emphasis] = STATE(221), + [sym_emphasis_begin] = STATE(82), + [sym_strong] = STATE(221), + [sym_strong_begin] = STATE(83), + [sym__hard_line_break] = STATE(221), + [sym_hard_line_break] = STATE(221), + [sym__smart_punctuation] = STATE(221), + [sym_autolink] = STATE(221), + [sym_highlighted] = STATE(221), + [sym_insert] = STATE(221), + [sym_delete] = STATE(221), + [sym_superscript] = STATE(221), + [sym_subscript] = STATE(221), + [sym_footnote_reference] = STATE(221), + [sym__image] = STATE(221), + [sym_full_reference_image] = STATE(221), + [sym_collapsed_reference_image] = STATE(221), + [sym_inline_image] = STATE(221), + [sym__image_description] = STATE(669), + [sym__link] = STATE(221), + [sym_full_reference_link] = STATE(221), + [sym_collapsed_reference_link] = STATE(221), + [sym_inline_link] = STATE(221), + [sym_link_text] = STATE(657), + [sym__comment_with_spaces] = STATE(221), + [sym_span] = STATE(221), + [sym_raw_inline] = STATE(221), + [sym_math] = STATE(221), + [sym_verbatim] = STATE(221), + [sym__todo_highlights] = STATE(221), + [sym_todo] = STATE(221), + [sym_note] = STATE(221), + [sym__symbol_fallback] = STATE(221), + [sym__verbatim_begin] = STATE(834), + [aux_sym__text] = STATE(134), + [aux_sym__inline_repeat1] = STATE(109), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE_] = ACTIONS(408), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_STAR] = ACTIONS(414), + [anon_sym_STAR] = ACTIONS(417), + [anon_sym_BSLASH] = ACTIONS(420), + [sym_quotation_marks] = ACTIONS(423), + [sym_ellipsis] = ACTIONS(423), + [sym_em_dash] = ACTIONS(423), + [sym_en_dash] = ACTIONS(426), + [sym_backslash_escape] = ACTIONS(426), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_LBRACE_EQ] = ACTIONS(432), + [anon_sym_LBRACE_PLUS] = ACTIONS(435), + [anon_sym_LBRACE_DASH] = ACTIONS(438), + [sym_symbol] = ACTIONS(423), + [anon_sym_LBRACE_CARET] = ACTIONS(441), + [anon_sym_CARET] = ACTIONS(441), + [anon_sym_LBRACE_TILDE] = ACTIONS(444), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_LBRACK_CARET] = ACTIONS(447), + [anon_sym_RBRACK] = ACTIONS(49), + [anon_sym_BANG_LBRACK] = ACTIONS(450), + [anon_sym_LBRACK] = ACTIONS(453), + [anon_sym_LBRACE2] = ACTIONS(426), + [anon_sym_DOLLAR] = ACTIONS(456), + [anon_sym_TODO] = ACTIONS(459), + [anon_sym_WIP] = ACTIONS(459), + [anon_sym_NOTE] = ACTIONS(462), + [anon_sym_INFO] = ACTIONS(462), + [anon_sym_XXX] = ACTIONS(462), + [sym_fixme] = ACTIONS(423), + [anon_sym_PIPE] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(112), + [sym__whitespace1] = ACTIONS(465), + [sym__newline] = ACTIONS(468), + [aux_sym__text_token1] = ACTIONS(471), + }, + [32] = { + [sym__inline] = STATE(768), + [sym__element] = STATE(109), + [sym_emphasis] = STATE(221), + [sym_emphasis_begin] = STATE(82), + [sym_strong] = STATE(221), + [sym_strong_begin] = STATE(83), + [sym__hard_line_break] = STATE(221), + [sym_hard_line_break] = STATE(221), + [sym__smart_punctuation] = STATE(221), + [sym_autolink] = STATE(221), + [sym_highlighted] = STATE(221), + [sym_insert] = STATE(221), + [sym_delete] = STATE(221), + [sym_superscript] = STATE(221), + [sym_subscript] = STATE(221), + [sym_footnote_reference] = STATE(221), + [sym__image] = STATE(221), + [sym_full_reference_image] = STATE(221), + [sym_collapsed_reference_image] = STATE(221), + [sym_inline_image] = STATE(221), + [sym__image_description] = STATE(669), + [sym__link] = STATE(221), + [sym_full_reference_link] = STATE(221), + [sym_collapsed_reference_link] = STATE(221), + [sym_inline_link] = STATE(221), + [sym_link_text] = STATE(657), + [sym__comment_with_spaces] = STATE(221), + [sym_span] = STATE(221), + [sym_raw_inline] = STATE(221), + [sym_math] = STATE(221), + [sym_verbatim] = STATE(221), + [sym__todo_highlights] = STATE(221), + [sym_todo] = STATE(221), + [sym_note] = STATE(221), + [sym__symbol_fallback] = STATE(221), + [sym__verbatim_begin] = STATE(834), + [aux_sym__text] = STATE(134), + [aux_sym__inline_repeat1] = STATE(109), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE_] = ACTIONS(408), + [anon_sym__] = ACTIONS(477), + [aux_sym_emphasis_end_token1] = ACTIONS(49), + [anon_sym_LBRACE_STAR] = ACTIONS(414), + [anon_sym_STAR] = ACTIONS(417), + [anon_sym_BSLASH] = ACTIONS(420), + [sym_quotation_marks] = ACTIONS(423), + [sym_ellipsis] = ACTIONS(423), + [sym_em_dash] = ACTIONS(423), + [sym_en_dash] = ACTIONS(426), + [sym_backslash_escape] = ACTIONS(426), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_LBRACE_EQ] = ACTIONS(432), + [anon_sym_LBRACE_PLUS] = ACTIONS(435), + [anon_sym_LBRACE_DASH] = ACTIONS(438), + [sym_symbol] = ACTIONS(423), + [anon_sym_LBRACE_CARET] = ACTIONS(441), + [anon_sym_CARET] = ACTIONS(441), + [anon_sym_LBRACE_TILDE] = ACTIONS(444), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_LBRACK_CARET] = ACTIONS(447), + [anon_sym_BANG_LBRACK] = ACTIONS(450), + [anon_sym_LBRACK] = ACTIONS(453), + [anon_sym_LBRACE2] = ACTIONS(426), + [anon_sym_DOLLAR] = ACTIONS(456), + [anon_sym_TODO] = ACTIONS(459), + [anon_sym_WIP] = ACTIONS(459), + [anon_sym_NOTE] = ACTIONS(462), + [anon_sym_INFO] = ACTIONS(462), + [anon_sym_XXX] = ACTIONS(462), + [sym_fixme] = ACTIONS(423), + [anon_sym_PIPE] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(112), + [sym__whitespace1] = ACTIONS(480), + [sym__newline] = ACTIONS(468), + [aux_sym__text_token1] = ACTIONS(471), + }, + [33] = { + [sym__inline] = STATE(769), + [sym__element] = STATE(101), + [sym_emphasis] = STATE(173), + [sym_emphasis_begin] = STATE(87), + [sym_strong] = STATE(173), + [sym_strong_begin] = STATE(76), + [sym__hard_line_break] = STATE(173), + [sym_hard_line_break] = STATE(173), + [sym__smart_punctuation] = STATE(173), + [sym_autolink] = STATE(173), + [sym_highlighted] = STATE(173), + [sym_insert] = STATE(173), + [sym_delete] = STATE(173), + [sym_superscript] = STATE(173), + [sym_subscript] = STATE(173), + [sym_footnote_reference] = STATE(173), + [sym__image] = STATE(173), + [sym_full_reference_image] = STATE(173), + [sym_collapsed_reference_image] = STATE(173), + [sym_inline_image] = STATE(173), + [sym__image_description] = STATE(647), + [sym__link] = STATE(173), + [sym_full_reference_link] = STATE(173), + [sym_collapsed_reference_link] = STATE(173), + [sym_inline_link] = STATE(173), + [sym_link_text] = STATE(648), + [sym__comment_with_spaces] = STATE(173), + [sym_span] = STATE(173), + [sym_raw_inline] = STATE(173), + [sym_math] = STATE(173), + [sym_verbatim] = STATE(173), + [sym__todo_highlights] = STATE(173), + [sym_todo] = STATE(173), + [sym_note] = STATE(173), + [sym__symbol_fallback] = STATE(173), + [sym__verbatim_begin] = STATE(843), + [aux_sym__text] = STATE(155), + [aux_sym__inline_repeat1] = STATE(101), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE_] = ACTIONS(342), + [anon_sym__] = ACTIONS(483), + [aux_sym_emphasis_end_token1] = ACTIONS(49), + [anon_sym_LBRACE_STAR] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(351), + [anon_sym_BSLASH] = ACTIONS(354), + [sym_quotation_marks] = ACTIONS(357), + [sym_ellipsis] = ACTIONS(357), + [sym_em_dash] = ACTIONS(357), + [sym_en_dash] = ACTIONS(360), + [sym_backslash_escape] = ACTIONS(360), + [anon_sym_LT] = ACTIONS(363), + [anon_sym_LBRACE_EQ] = ACTIONS(366), + [anon_sym_LBRACE_PLUS] = ACTIONS(369), + [anon_sym_LBRACE_DASH] = ACTIONS(372), + [sym_symbol] = ACTIONS(357), + [anon_sym_LBRACE_CARET] = ACTIONS(375), + [anon_sym_CARET] = ACTIONS(375), + [anon_sym_LBRACE_TILDE] = ACTIONS(378), + [anon_sym_TILDE] = ACTIONS(378), + [anon_sym_LBRACK_CARET] = ACTIONS(381), + [anon_sym_BANG_LBRACK] = ACTIONS(384), + [anon_sym_LBRACK] = ACTIONS(387), + [anon_sym_LBRACE2] = ACTIONS(360), + [anon_sym_DOLLAR] = ACTIONS(390), + [anon_sym_TODO] = ACTIONS(393), + [anon_sym_WIP] = ACTIONS(393), + [anon_sym_NOTE] = ACTIONS(396), + [anon_sym_INFO] = ACTIONS(396), + [anon_sym_XXX] = ACTIONS(396), + [sym_fixme] = ACTIONS(357), + [anon_sym_PIPE] = ACTIONS(357), + [anon_sym_BQUOTE] = ACTIONS(112), + [sym__whitespace1] = ACTIONS(486), + [sym__newline] = ACTIONS(402), + [aux_sym__text_token1] = ACTIONS(405), + }, + [34] = { + [sym__inline] = STATE(770), + [sym__element] = STATE(98), + [sym_emphasis] = STATE(207), + [sym_emphasis_begin] = STATE(89), + [sym_strong] = STATE(207), + [sym_strong_begin] = STATE(72), + [sym__hard_line_break] = STATE(207), + [sym_hard_line_break] = STATE(207), + [sym__smart_punctuation] = STATE(207), + [sym_autolink] = STATE(207), + [sym_highlighted] = STATE(207), + [sym_insert] = STATE(207), + [sym_delete] = STATE(207), + [sym_superscript] = STATE(207), + [sym_subscript] = STATE(207), + [sym_footnote_reference] = STATE(207), + [sym__image] = STATE(207), + [sym_full_reference_image] = STATE(207), + [sym_collapsed_reference_image] = STATE(207), + [sym_inline_image] = STATE(207), + [sym__image_description] = STATE(666), + [sym__link] = STATE(207), + [sym_full_reference_link] = STATE(207), + [sym_collapsed_reference_link] = STATE(207), + [sym_inline_link] = STATE(207), + [sym_link_text] = STATE(667), + [sym__comment_with_spaces] = STATE(207), + [sym_span] = STATE(207), + [sym_raw_inline] = STATE(207), + [sym_math] = STATE(207), + [sym_verbatim] = STATE(207), + [sym__todo_highlights] = STATE(207), + [sym_todo] = STATE(207), + [sym_note] = STATE(207), + [sym__symbol_fallback] = STATE(207), + [sym__verbatim_begin] = STATE(852), + [aux_sym__text] = STATE(139), + [aux_sym__inline_repeat1] = STATE(98), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE_] = ACTIONS(210), + [anon_sym__] = ACTIONS(489), + [aux_sym_emphasis_end_token1] = ACTIONS(49), + [anon_sym_LBRACE_STAR] = ACTIONS(216), + [anon_sym_STAR] = ACTIONS(219), + [anon_sym_BSLASH] = ACTIONS(222), + [sym_quotation_marks] = ACTIONS(225), + [sym_ellipsis] = ACTIONS(225), + [sym_em_dash] = ACTIONS(225), + [sym_en_dash] = ACTIONS(228), + [sym_backslash_escape] = ACTIONS(228), + [anon_sym_LT] = ACTIONS(231), + [anon_sym_LBRACE_EQ] = ACTIONS(234), + [anon_sym_LBRACE_PLUS] = ACTIONS(237), + [anon_sym_LBRACE_DASH] = ACTIONS(240), + [sym_symbol] = ACTIONS(225), + [anon_sym_LBRACE_CARET] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(243), + [anon_sym_LBRACE_TILDE] = ACTIONS(246), + [anon_sym_TILDE] = ACTIONS(246), + [anon_sym_LBRACK_CARET] = ACTIONS(249), + [anon_sym_BANG_LBRACK] = ACTIONS(252), + [anon_sym_LBRACK] = ACTIONS(255), + [anon_sym_LBRACE2] = ACTIONS(228), + [anon_sym_DOLLAR] = ACTIONS(258), + [anon_sym_TODO] = ACTIONS(261), + [anon_sym_WIP] = ACTIONS(261), + [anon_sym_NOTE] = ACTIONS(264), + [anon_sym_INFO] = ACTIONS(264), + [anon_sym_XXX] = ACTIONS(264), + [sym_fixme] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(225), + [anon_sym_BQUOTE] = ACTIONS(112), + [sym__whitespace1] = ACTIONS(492), + [sym__newline] = ACTIONS(270), + [aux_sym__text_token1] = ACTIONS(273), + }, + [35] = { + [sym__inline] = STATE(735), + [sym__element] = STATE(96), + [sym_emphasis] = STATE(182), + [sym_emphasis_begin] = STATE(103), + [sym_strong] = STATE(182), + [sym_strong_begin] = STATE(104), + [sym__hard_line_break] = STATE(182), + [sym_hard_line_break] = STATE(182), + [sym__smart_punctuation] = STATE(182), + [sym_autolink] = STATE(182), + [sym_highlighted] = STATE(182), + [sym_insert] = STATE(182), + [sym_delete] = STATE(182), + [sym_superscript] = STATE(182), + [sym_subscript] = STATE(182), + [sym_footnote_reference] = STATE(182), + [sym__image] = STATE(182), + [sym_full_reference_image] = STATE(182), + [sym_collapsed_reference_image] = STATE(182), + [sym_inline_image] = STATE(182), + [sym__image_description] = STATE(672), + [sym__link] = STATE(182), + [sym_full_reference_link] = STATE(182), + [sym_collapsed_reference_link] = STATE(182), + [sym_inline_link] = STATE(182), + [sym_link_text] = STATE(671), + [sym__comment_with_spaces] = STATE(182), + [sym_span] = STATE(182), + [sym_raw_inline] = STATE(182), + [sym_math] = STATE(182), + [sym_verbatim] = STATE(182), + [sym__todo_highlights] = STATE(182), + [sym_todo] = STATE(182), + [sym_note] = STATE(182), + [sym__symbol_fallback] = STATE(182), + [sym__verbatim_begin] = STATE(870), + [aux_sym__text] = STATE(150), + [aux_sym__inline_repeat1] = STATE(96), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE_] = ACTIONS(141), + [anon_sym__] = ACTIONS(495), + [aux_sym_emphasis_end_token1] = ACTIONS(49), + [anon_sym_LBRACE_STAR] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(150), + [anon_sym_BSLASH] = ACTIONS(153), + [sym_quotation_marks] = ACTIONS(156), + [sym_ellipsis] = ACTIONS(156), + [sym_em_dash] = ACTIONS(156), + [sym_en_dash] = ACTIONS(159), + [sym_backslash_escape] = ACTIONS(159), + [anon_sym_LT] = ACTIONS(162), + [anon_sym_LBRACE_EQ] = ACTIONS(165), + [anon_sym_LBRACE_PLUS] = ACTIONS(168), + [anon_sym_LBRACE_DASH] = ACTIONS(171), + [sym_symbol] = ACTIONS(156), + [anon_sym_LBRACE_CARET] = ACTIONS(174), + [anon_sym_CARET] = ACTIONS(174), + [anon_sym_LBRACE_TILDE] = ACTIONS(177), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_LBRACK_CARET] = ACTIONS(183), + [anon_sym_BANG_LBRACK] = ACTIONS(186), + [anon_sym_LBRACK] = ACTIONS(189), + [anon_sym_LBRACE2] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(192), + [anon_sym_TODO] = ACTIONS(195), + [anon_sym_WIP] = ACTIONS(195), + [anon_sym_NOTE] = ACTIONS(198), + [anon_sym_INFO] = ACTIONS(198), + [anon_sym_XXX] = ACTIONS(198), + [sym_fixme] = ACTIONS(156), + [anon_sym_PIPE] = ACTIONS(156), + [anon_sym_BQUOTE] = ACTIONS(112), + [sym__whitespace1] = ACTIONS(498), + [sym__newline] = ACTIONS(204), + [aux_sym__text_token1] = ACTIONS(207), + }, + [36] = { + [sym__inline] = STATE(889), + [sym__element] = STATE(112), + [sym_emphasis] = STATE(206), + [sym_emphasis_begin] = STATE(108), + [sym_strong] = STATE(206), + [sym_strong_begin] = STATE(110), + [sym__hard_line_break] = STATE(206), + [sym_hard_line_break] = STATE(206), + [sym__smart_punctuation] = STATE(206), + [sym_autolink] = STATE(206), + [sym_highlighted] = STATE(206), + [sym_insert] = STATE(206), + [sym_delete] = STATE(206), + [sym_superscript] = STATE(206), + [sym_subscript] = STATE(206), + [sym_footnote_reference] = STATE(206), + [sym__image] = STATE(206), + [sym_full_reference_image] = STATE(206), + [sym_collapsed_reference_image] = STATE(206), + [sym_inline_image] = STATE(206), + [sym__image_description] = STATE(664), + [sym__link] = STATE(206), + [sym_full_reference_link] = STATE(206), + [sym_collapsed_reference_link] = STATE(206), + [sym_inline_link] = STATE(206), + [sym_link_text] = STATE(663), + [sym__comment_with_spaces] = STATE(206), + [sym_span] = STATE(206), + [sym_raw_inline] = STATE(206), + [sym_math] = STATE(206), + [sym_verbatim] = STATE(206), + [sym__todo_highlights] = STATE(206), + [sym_todo] = STATE(206), + [sym_note] = STATE(206), + [sym__symbol_fallback] = STATE(206), + [sym__verbatim_begin] = STATE(879), + [aux_sym__text] = STATE(126), + [aux_sym__inline_repeat1] = STATE(112), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE_] = ACTIONS(53), + [anon_sym__] = ACTIONS(124), + [aux_sym_emphasis_end_token1] = ACTIONS(49), + [anon_sym_LBRACE_STAR] = ACTIONS(59), + [anon_sym_STAR] = ACTIONS(62), + [anon_sym_BSLASH] = ACTIONS(65), + [sym_quotation_marks] = ACTIONS(68), + [sym_ellipsis] = ACTIONS(68), + [sym_em_dash] = ACTIONS(68), + [sym_en_dash] = ACTIONS(71), + [sym_backslash_escape] = ACTIONS(71), + [anon_sym_LT] = ACTIONS(74), + [anon_sym_LBRACE_EQ] = ACTIONS(77), + [anon_sym_LBRACE_PLUS] = ACTIONS(80), + [anon_sym_LBRACE_DASH] = ACTIONS(83), + [sym_symbol] = ACTIONS(68), + [anon_sym_LBRACE_CARET] = ACTIONS(86), + [anon_sym_CARET] = ACTIONS(86), + [anon_sym_LBRACE_TILDE] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(89), + [anon_sym_LBRACK_CARET] = ACTIONS(92), + [anon_sym_BANG_LBRACK] = ACTIONS(97), + [anon_sym_LBRACK] = ACTIONS(100), + [anon_sym_LBRACE2] = ACTIONS(71), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_TODO] = ACTIONS(106), + [anon_sym_WIP] = ACTIONS(106), + [anon_sym_NOTE] = ACTIONS(109), + [anon_sym_INFO] = ACTIONS(109), + [anon_sym_XXX] = ACTIONS(109), + [sym_fixme] = ACTIONS(68), + [anon_sym_PIPE] = ACTIONS(68), + [anon_sym_BQUOTE] = ACTIONS(112), + [sym__whitespace1] = ACTIONS(127), + [sym__newline] = ACTIONS(118), + [aux_sym__text_token1] = ACTIONS(121), + }, + [37] = { + [sym__inline] = STATE(871), + [sym__element] = STATE(112), + [sym_emphasis] = STATE(206), + [sym_emphasis_begin] = STATE(108), + [sym_strong] = STATE(206), + [sym_strong_begin] = STATE(110), + [sym__hard_line_break] = STATE(206), + [sym_hard_line_break] = STATE(206), + [sym__smart_punctuation] = STATE(206), + [sym_autolink] = STATE(206), + [sym_highlighted] = STATE(206), + [sym_insert] = STATE(206), + [sym_delete] = STATE(206), + [sym_superscript] = STATE(206), + [sym_subscript] = STATE(206), + [sym_footnote_reference] = STATE(206), + [sym__image] = STATE(206), + [sym_full_reference_image] = STATE(206), + [sym_collapsed_reference_image] = STATE(206), + [sym_inline_image] = STATE(206), + [sym__image_description] = STATE(664), + [sym__link] = STATE(206), + [sym_full_reference_link] = STATE(206), + [sym_collapsed_reference_link] = STATE(206), + [sym_inline_link] = STATE(206), + [sym_link_text] = STATE(663), + [sym__comment_with_spaces] = STATE(206), + [sym_span] = STATE(206), + [sym_raw_inline] = STATE(206), + [sym_math] = STATE(206), + [sym_verbatim] = STATE(206), + [sym__todo_highlights] = STATE(206), + [sym_todo] = STATE(206), + [sym_note] = STATE(206), + [sym__symbol_fallback] = STATE(206), + [sym__verbatim_begin] = STATE(879), + [aux_sym__text] = STATE(126), + [aux_sym__inline_repeat1] = STATE(112), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE_] = ACTIONS(53), + [anon_sym__] = ACTIONS(56), + [anon_sym_LBRACE_STAR] = ACTIONS(59), + [anon_sym_STAR] = ACTIONS(62), + [anon_sym_BSLASH] = ACTIONS(65), + [sym_quotation_marks] = ACTIONS(68), + [sym_ellipsis] = ACTIONS(68), + [sym_em_dash] = ACTIONS(68), + [sym_en_dash] = ACTIONS(71), + [sym_backslash_escape] = ACTIONS(71), + [anon_sym_LT] = ACTIONS(74), + [anon_sym_LBRACE_EQ] = ACTIONS(77), + [anon_sym_LBRACE_PLUS] = ACTIONS(80), + [anon_sym_LBRACE_DASH] = ACTIONS(83), + [sym_symbol] = ACTIONS(68), + [anon_sym_LBRACE_CARET] = ACTIONS(86), + [anon_sym_CARET] = ACTIONS(86), + [anon_sym_LBRACE_TILDE] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(130), + [anon_sym_TILDE_RBRACE] = ACTIONS(49), + [anon_sym_LBRACK_CARET] = ACTIONS(92), + [anon_sym_BANG_LBRACK] = ACTIONS(97), + [anon_sym_LBRACK] = ACTIONS(100), + [anon_sym_LBRACE2] = ACTIONS(71), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_TODO] = ACTIONS(106), + [anon_sym_WIP] = ACTIONS(106), + [anon_sym_NOTE] = ACTIONS(109), + [anon_sym_INFO] = ACTIONS(109), + [anon_sym_XXX] = ACTIONS(109), + [sym_fixme] = ACTIONS(68), + [anon_sym_PIPE] = ACTIONS(68), + [anon_sym_BQUOTE] = ACTIONS(112), + [sym__whitespace1] = ACTIONS(115), + [sym__newline] = ACTIONS(118), + [aux_sym__text_token1] = ACTIONS(121), + }, + [38] = { + [sym__inline] = STATE(737), + [sym__element] = STATE(96), + [sym_emphasis] = STATE(182), + [sym_emphasis_begin] = STATE(103), + [sym_strong] = STATE(182), + [sym_strong_begin] = STATE(104), + [sym__hard_line_break] = STATE(182), + [sym_hard_line_break] = STATE(182), + [sym__smart_punctuation] = STATE(182), + [sym_autolink] = STATE(182), + [sym_highlighted] = STATE(182), + [sym_insert] = STATE(182), + [sym_delete] = STATE(182), + [sym_superscript] = STATE(182), + [sym_subscript] = STATE(182), + [sym_footnote_reference] = STATE(182), + [sym__image] = STATE(182), + [sym_full_reference_image] = STATE(182), + [sym_collapsed_reference_image] = STATE(182), + [sym_inline_image] = STATE(182), + [sym__image_description] = STATE(672), + [sym__link] = STATE(182), + [sym_full_reference_link] = STATE(182), + [sym_collapsed_reference_link] = STATE(182), + [sym_inline_link] = STATE(182), + [sym_link_text] = STATE(671), + [sym__comment_with_spaces] = STATE(182), + [sym_span] = STATE(182), + [sym_raw_inline] = STATE(182), + [sym_math] = STATE(182), + [sym_verbatim] = STATE(182), + [sym__todo_highlights] = STATE(182), + [sym_todo] = STATE(182), + [sym_note] = STATE(182), + [sym__symbol_fallback] = STATE(182), + [sym__verbatim_begin] = STATE(870), + [aux_sym__text] = STATE(150), + [aux_sym__inline_repeat1] = STATE(96), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE_] = ACTIONS(141), + [anon_sym__] = ACTIONS(144), + [anon_sym_LBRACE_STAR] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(150), + [anon_sym_BSLASH] = ACTIONS(153), + [sym_quotation_marks] = ACTIONS(156), + [sym_ellipsis] = ACTIONS(156), + [sym_em_dash] = ACTIONS(156), + [sym_en_dash] = ACTIONS(159), + [sym_backslash_escape] = ACTIONS(159), + [anon_sym_LT] = ACTIONS(162), + [anon_sym_LBRACE_EQ] = ACTIONS(165), + [anon_sym_LBRACE_PLUS] = ACTIONS(168), + [anon_sym_LBRACE_DASH] = ACTIONS(171), + [sym_symbol] = ACTIONS(156), + [anon_sym_LBRACE_CARET] = ACTIONS(174), + [anon_sym_CARET] = ACTIONS(174), + [anon_sym_LBRACE_TILDE] = ACTIONS(177), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_LBRACK_CARET] = ACTIONS(183), + [anon_sym_RBRACK] = ACTIONS(49), + [anon_sym_BANG_LBRACK] = ACTIONS(186), + [anon_sym_LBRACK] = ACTIONS(189), + [anon_sym_LBRACE2] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(192), + [anon_sym_TODO] = ACTIONS(195), + [anon_sym_WIP] = ACTIONS(195), + [anon_sym_NOTE] = ACTIONS(198), + [anon_sym_INFO] = ACTIONS(198), + [anon_sym_XXX] = ACTIONS(198), + [sym_fixme] = ACTIONS(156), + [anon_sym_PIPE] = ACTIONS(156), + [anon_sym_BQUOTE] = ACTIONS(112), + [sym__whitespace1] = ACTIONS(201), + [sym__newline] = ACTIONS(204), + [aux_sym__text_token1] = ACTIONS(207), + }, + [39] = { + [sym__inline] = STATE(702), + [sym__element] = STATE(84), + [sym_emphasis] = STATE(197), + [sym_emphasis_begin] = STATE(97), + [sym_strong] = STATE(197), + [sym_strong_begin] = STATE(100), + [sym__hard_line_break] = STATE(197), + [sym_hard_line_break] = STATE(197), + [sym__smart_punctuation] = STATE(197), + [sym_autolink] = STATE(197), + [sym_highlighted] = STATE(197), + [sym_insert] = STATE(197), + [sym_delete] = STATE(197), + [sym_superscript] = STATE(197), + [sym_subscript] = STATE(197), + [sym_footnote_reference] = STATE(197), + [sym__image] = STATE(197), + [sym_full_reference_image] = STATE(197), + [sym_collapsed_reference_image] = STATE(197), + [sym_inline_image] = STATE(197), + [sym__image_description] = STATE(676), + [sym__link] = STATE(197), + [sym_full_reference_link] = STATE(197), + [sym_collapsed_reference_link] = STATE(197), + [sym_inline_link] = STATE(197), + [sym_link_text] = STATE(677), + [sym__comment_with_spaces] = STATE(197), + [sym_span] = STATE(197), + [sym_raw_inline] = STATE(197), + [sym_math] = STATE(197), + [sym_verbatim] = STATE(197), + [sym__todo_highlights] = STATE(197), + [sym_todo] = STATE(197), + [sym_note] = STATE(197), + [sym__symbol_fallback] = STATE(197), + [sym__verbatim_begin] = STATE(861), + [aux_sym__text] = STATE(159), + [aux_sym__inline_repeat1] = STATE(84), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE_] = ACTIONS(276), + [anon_sym__] = ACTIONS(279), + [anon_sym_LBRACE_STAR] = ACTIONS(282), + [anon_sym_STAR] = ACTIONS(285), + [anon_sym_BSLASH] = ACTIONS(288), + [sym_quotation_marks] = ACTIONS(291), + [sym_ellipsis] = ACTIONS(291), + [sym_em_dash] = ACTIONS(291), + [sym_en_dash] = ACTIONS(294), + [sym_backslash_escape] = ACTIONS(294), + [anon_sym_LT] = ACTIONS(297), + [anon_sym_LBRACE_EQ] = ACTIONS(300), + [anon_sym_LBRACE_PLUS] = ACTIONS(303), + [anon_sym_LBRACE_DASH] = ACTIONS(306), + [sym_symbol] = ACTIONS(291), + [anon_sym_LBRACE_CARET] = ACTIONS(309), + [anon_sym_CARET] = ACTIONS(309), + [anon_sym_LBRACE_TILDE] = ACTIONS(312), + [anon_sym_TILDE] = ACTIONS(501), + [anon_sym_TILDE_RBRACE] = ACTIONS(49), + [anon_sym_LBRACK_CARET] = ACTIONS(315), + [anon_sym_BANG_LBRACK] = ACTIONS(318), + [anon_sym_LBRACK] = ACTIONS(321), + [anon_sym_LBRACE2] = ACTIONS(294), + [anon_sym_DOLLAR] = ACTIONS(324), + [anon_sym_TODO] = ACTIONS(327), + [anon_sym_WIP] = ACTIONS(327), + [anon_sym_NOTE] = ACTIONS(330), + [anon_sym_INFO] = ACTIONS(330), + [anon_sym_XXX] = ACTIONS(330), + [sym_fixme] = ACTIONS(291), + [anon_sym_PIPE] = ACTIONS(291), + [anon_sym_BQUOTE] = ACTIONS(112), + [sym__whitespace1] = ACTIONS(333), + [sym__newline] = ACTIONS(336), + [aux_sym__text_token1] = ACTIONS(339), + }, + [40] = { + [sym__inline] = STATE(818), + [sym__element] = STATE(98), + [sym_emphasis] = STATE(207), + [sym_emphasis_begin] = STATE(89), + [sym_strong] = STATE(207), + [sym_strong_begin] = STATE(72), + [sym__hard_line_break] = STATE(207), + [sym_hard_line_break] = STATE(207), + [sym__smart_punctuation] = STATE(207), + [sym_autolink] = STATE(207), + [sym_highlighted] = STATE(207), + [sym_insert] = STATE(207), + [sym_delete] = STATE(207), + [sym_superscript] = STATE(207), + [sym_subscript] = STATE(207), + [sym_footnote_reference] = STATE(207), + [sym__image] = STATE(207), + [sym_full_reference_image] = STATE(207), + [sym_collapsed_reference_image] = STATE(207), + [sym_inline_image] = STATE(207), + [sym__image_description] = STATE(666), + [sym__link] = STATE(207), + [sym_full_reference_link] = STATE(207), + [sym_collapsed_reference_link] = STATE(207), + [sym_inline_link] = STATE(207), + [sym_link_text] = STATE(667), + [sym__comment_with_spaces] = STATE(207), + [sym_span] = STATE(207), + [sym_raw_inline] = STATE(207), + [sym_math] = STATE(207), + [sym_verbatim] = STATE(207), + [sym__todo_highlights] = STATE(207), + [sym_todo] = STATE(207), + [sym_note] = STATE(207), + [sym__symbol_fallback] = STATE(207), + [sym__verbatim_begin] = STATE(852), + [aux_sym__text] = STATE(139), + [aux_sym__inline_repeat1] = STATE(98), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE_] = ACTIONS(210), + [anon_sym__] = ACTIONS(213), + [anon_sym_LBRACE_STAR] = ACTIONS(216), + [anon_sym_STAR] = ACTIONS(219), + [anon_sym_BSLASH] = ACTIONS(222), + [sym_quotation_marks] = ACTIONS(225), + [sym_ellipsis] = ACTIONS(225), + [sym_em_dash] = ACTIONS(225), + [sym_en_dash] = ACTIONS(228), + [sym_backslash_escape] = ACTIONS(228), + [anon_sym_LT] = ACTIONS(231), + [anon_sym_LBRACE_EQ] = ACTIONS(234), + [anon_sym_LBRACE_PLUS] = ACTIONS(237), + [anon_sym_LBRACE_DASH] = ACTIONS(240), + [sym_symbol] = ACTIONS(225), + [anon_sym_LBRACE_CARET] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(243), + [anon_sym_LBRACE_TILDE] = ACTIONS(246), + [anon_sym_TILDE] = ACTIONS(504), + [anon_sym_TILDE_RBRACE] = ACTIONS(49), + [anon_sym_LBRACK_CARET] = ACTIONS(249), + [anon_sym_BANG_LBRACK] = ACTIONS(252), + [anon_sym_LBRACK] = ACTIONS(255), + [anon_sym_LBRACE2] = ACTIONS(228), + [anon_sym_DOLLAR] = ACTIONS(258), + [anon_sym_TODO] = ACTIONS(261), + [anon_sym_WIP] = ACTIONS(261), + [anon_sym_NOTE] = ACTIONS(264), + [anon_sym_INFO] = ACTIONS(264), + [anon_sym_XXX] = ACTIONS(264), + [sym_fixme] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(225), + [anon_sym_BQUOTE] = ACTIONS(112), + [sym__whitespace1] = ACTIONS(267), + [sym__newline] = ACTIONS(270), + [aux_sym__text_token1] = ACTIONS(273), + }, + [41] = { + [sym__inline] = STATE(829), + [sym__element] = STATE(101), + [sym_emphasis] = STATE(173), + [sym_emphasis_begin] = STATE(87), + [sym_strong] = STATE(173), + [sym_strong_begin] = STATE(76), + [sym__hard_line_break] = STATE(173), + [sym_hard_line_break] = STATE(173), + [sym__smart_punctuation] = STATE(173), + [sym_autolink] = STATE(173), + [sym_highlighted] = STATE(173), + [sym_insert] = STATE(173), + [sym_delete] = STATE(173), + [sym_superscript] = STATE(173), + [sym_subscript] = STATE(173), + [sym_footnote_reference] = STATE(173), + [sym__image] = STATE(173), + [sym_full_reference_image] = STATE(173), + [sym_collapsed_reference_image] = STATE(173), + [sym_inline_image] = STATE(173), + [sym__image_description] = STATE(647), + [sym__link] = STATE(173), + [sym_full_reference_link] = STATE(173), + [sym_collapsed_reference_link] = STATE(173), + [sym_inline_link] = STATE(173), + [sym_link_text] = STATE(648), + [sym__comment_with_spaces] = STATE(173), + [sym_span] = STATE(173), + [sym_raw_inline] = STATE(173), + [sym_math] = STATE(173), + [sym_verbatim] = STATE(173), + [sym__todo_highlights] = STATE(173), + [sym_todo] = STATE(173), + [sym_note] = STATE(173), + [sym__symbol_fallback] = STATE(173), + [sym__verbatim_begin] = STATE(843), + [aux_sym__text] = STATE(155), + [aux_sym__inline_repeat1] = STATE(101), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE_] = ACTIONS(342), + [anon_sym__] = ACTIONS(345), + [anon_sym_LBRACE_STAR] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(351), + [anon_sym_BSLASH] = ACTIONS(354), + [sym_quotation_marks] = ACTIONS(357), + [sym_ellipsis] = ACTIONS(357), + [sym_em_dash] = ACTIONS(357), + [sym_en_dash] = ACTIONS(360), + [sym_backslash_escape] = ACTIONS(360), + [anon_sym_LT] = ACTIONS(363), + [anon_sym_LBRACE_EQ] = ACTIONS(366), + [anon_sym_LBRACE_PLUS] = ACTIONS(369), + [anon_sym_LBRACE_DASH] = ACTIONS(372), + [sym_symbol] = ACTIONS(357), + [anon_sym_LBRACE_CARET] = ACTIONS(375), + [anon_sym_CARET] = ACTIONS(375), + [anon_sym_LBRACE_TILDE] = ACTIONS(378), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_TILDE_RBRACE] = ACTIONS(49), + [anon_sym_LBRACK_CARET] = ACTIONS(381), + [anon_sym_BANG_LBRACK] = ACTIONS(384), + [anon_sym_LBRACK] = ACTIONS(387), + [anon_sym_LBRACE2] = ACTIONS(360), + [anon_sym_DOLLAR] = ACTIONS(390), + [anon_sym_TODO] = ACTIONS(393), + [anon_sym_WIP] = ACTIONS(393), + [anon_sym_NOTE] = ACTIONS(396), + [anon_sym_INFO] = ACTIONS(396), + [anon_sym_XXX] = ACTIONS(396), + [sym_fixme] = ACTIONS(357), + [anon_sym_PIPE] = ACTIONS(357), + [anon_sym_BQUOTE] = ACTIONS(112), + [sym__whitespace1] = ACTIONS(399), + [sym__newline] = ACTIONS(402), + [aux_sym__text_token1] = ACTIONS(405), + }, + [42] = { + [sym__inline] = STATE(778), + [sym__element] = STATE(98), + [sym_emphasis] = STATE(207), + [sym_emphasis_begin] = STATE(89), + [sym_strong] = STATE(207), + [sym_strong_begin] = STATE(72), + [sym__hard_line_break] = STATE(207), + [sym_hard_line_break] = STATE(207), + [sym__smart_punctuation] = STATE(207), + [sym_autolink] = STATE(207), + [sym_highlighted] = STATE(207), + [sym_insert] = STATE(207), + [sym_delete] = STATE(207), + [sym_superscript] = STATE(207), + [sym_subscript] = STATE(207), + [sym_footnote_reference] = STATE(207), + [sym__image] = STATE(207), + [sym_full_reference_image] = STATE(207), + [sym_collapsed_reference_image] = STATE(207), + [sym_inline_image] = STATE(207), + [sym__image_description] = STATE(666), + [sym__link] = STATE(207), + [sym_full_reference_link] = STATE(207), + [sym_collapsed_reference_link] = STATE(207), + [sym_inline_link] = STATE(207), + [sym_link_text] = STATE(667), + [sym__comment_with_spaces] = STATE(207), + [sym_span] = STATE(207), + [sym_raw_inline] = STATE(207), + [sym_math] = STATE(207), + [sym_verbatim] = STATE(207), + [sym__todo_highlights] = STATE(207), + [sym_todo] = STATE(207), + [sym_note] = STATE(207), + [sym__symbol_fallback] = STATE(207), + [sym__verbatim_begin] = STATE(852), + [aux_sym__text] = STATE(139), + [aux_sym__inline_repeat1] = STATE(98), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE_] = ACTIONS(210), + [anon_sym__] = ACTIONS(213), + [anon_sym_LBRACE_STAR] = ACTIONS(216), + [anon_sym_STAR] = ACTIONS(219), + [anon_sym_BSLASH] = ACTIONS(222), + [sym_quotation_marks] = ACTIONS(225), + [sym_ellipsis] = ACTIONS(225), + [sym_em_dash] = ACTIONS(225), + [sym_en_dash] = ACTIONS(228), + [sym_backslash_escape] = ACTIONS(228), + [anon_sym_LT] = ACTIONS(231), + [anon_sym_LBRACE_EQ] = ACTIONS(234), + [anon_sym_LBRACE_PLUS] = ACTIONS(237), + [anon_sym_PLUS_RBRACE] = ACTIONS(49), + [anon_sym_LBRACE_DASH] = ACTIONS(240), + [sym_symbol] = ACTIONS(225), + [anon_sym_LBRACE_CARET] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(243), + [anon_sym_LBRACE_TILDE] = ACTIONS(246), + [anon_sym_TILDE] = ACTIONS(246), + [anon_sym_LBRACK_CARET] = ACTIONS(249), + [anon_sym_BANG_LBRACK] = ACTIONS(252), + [anon_sym_LBRACK] = ACTIONS(255), + [anon_sym_LBRACE2] = ACTIONS(228), + [anon_sym_DOLLAR] = ACTIONS(258), + [anon_sym_TODO] = ACTIONS(261), + [anon_sym_WIP] = ACTIONS(261), + [anon_sym_NOTE] = ACTIONS(264), + [anon_sym_INFO] = ACTIONS(264), + [anon_sym_XXX] = ACTIONS(264), + [sym_fixme] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(225), + [anon_sym_BQUOTE] = ACTIONS(112), + [sym__whitespace1] = ACTIONS(267), + [sym__newline] = ACTIONS(270), + [aux_sym__text_token1] = ACTIONS(273), + }, + [43] = { + [sym__inline] = STATE(837), + [sym__element] = STATE(109), + [sym_emphasis] = STATE(221), + [sym_emphasis_begin] = STATE(82), + [sym_strong] = STATE(221), + [sym_strong_begin] = STATE(83), + [sym__hard_line_break] = STATE(221), + [sym_hard_line_break] = STATE(221), + [sym__smart_punctuation] = STATE(221), + [sym_autolink] = STATE(221), + [sym_highlighted] = STATE(221), + [sym_insert] = STATE(221), + [sym_delete] = STATE(221), + [sym_superscript] = STATE(221), + [sym_subscript] = STATE(221), + [sym_footnote_reference] = STATE(221), + [sym__image] = STATE(221), + [sym_full_reference_image] = STATE(221), + [sym_collapsed_reference_image] = STATE(221), + [sym_inline_image] = STATE(221), + [sym__image_description] = STATE(669), + [sym__link] = STATE(221), + [sym_full_reference_link] = STATE(221), + [sym_collapsed_reference_link] = STATE(221), + [sym_inline_link] = STATE(221), + [sym_link_text] = STATE(657), + [sym__comment_with_spaces] = STATE(221), + [sym_span] = STATE(221), + [sym_raw_inline] = STATE(221), + [sym_math] = STATE(221), + [sym_verbatim] = STATE(221), + [sym__todo_highlights] = STATE(221), + [sym_todo] = STATE(221), + [sym_note] = STATE(221), + [sym__symbol_fallback] = STATE(221), + [sym__verbatim_begin] = STATE(834), + [aux_sym__text] = STATE(134), + [aux_sym__inline_repeat1] = STATE(109), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE_] = ACTIONS(408), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_STAR] = ACTIONS(414), + [anon_sym_STAR] = ACTIONS(417), + [anon_sym_BSLASH] = ACTIONS(420), + [sym_quotation_marks] = ACTIONS(423), + [sym_ellipsis] = ACTIONS(423), + [sym_em_dash] = ACTIONS(423), + [sym_en_dash] = ACTIONS(426), + [sym_backslash_escape] = ACTIONS(426), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_LBRACE_EQ] = ACTIONS(432), + [anon_sym_LBRACE_PLUS] = ACTIONS(435), + [anon_sym_LBRACE_DASH] = ACTIONS(438), + [sym_symbol] = ACTIONS(423), + [anon_sym_LBRACE_CARET] = ACTIONS(441), + [anon_sym_CARET] = ACTIONS(441), + [anon_sym_LBRACE_TILDE] = ACTIONS(444), + [anon_sym_TILDE] = ACTIONS(510), + [anon_sym_TILDE_RBRACE] = ACTIONS(49), + [anon_sym_LBRACK_CARET] = ACTIONS(447), + [anon_sym_BANG_LBRACK] = ACTIONS(450), + [anon_sym_LBRACK] = ACTIONS(453), + [anon_sym_LBRACE2] = ACTIONS(426), + [anon_sym_DOLLAR] = ACTIONS(456), + [anon_sym_TODO] = ACTIONS(459), + [anon_sym_WIP] = ACTIONS(459), + [anon_sym_NOTE] = ACTIONS(462), + [anon_sym_INFO] = ACTIONS(462), + [anon_sym_XXX] = ACTIONS(462), + [sym_fixme] = ACTIONS(423), + [anon_sym_PIPE] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(112), + [sym__whitespace1] = ACTIONS(465), + [sym__newline] = ACTIONS(468), + [aux_sym__text_token1] = ACTIONS(471), + }, + [44] = { + [sym__inline] = STATE(781), + [sym__element] = STATE(109), + [sym_emphasis] = STATE(221), + [sym_emphasis_begin] = STATE(82), + [sym_strong] = STATE(221), + [sym_strong_begin] = STATE(83), + [sym__hard_line_break] = STATE(221), + [sym_hard_line_break] = STATE(221), + [sym__smart_punctuation] = STATE(221), + [sym_autolink] = STATE(221), + [sym_highlighted] = STATE(221), + [sym_insert] = STATE(221), + [sym_delete] = STATE(221), + [sym_superscript] = STATE(221), + [sym_subscript] = STATE(221), + [sym_footnote_reference] = STATE(221), + [sym__image] = STATE(221), + [sym_full_reference_image] = STATE(221), + [sym_collapsed_reference_image] = STATE(221), + [sym_inline_image] = STATE(221), + [sym__image_description] = STATE(669), + [sym__link] = STATE(221), + [sym_full_reference_link] = STATE(221), + [sym_collapsed_reference_link] = STATE(221), + [sym_inline_link] = STATE(221), + [sym_link_text] = STATE(657), + [sym__comment_with_spaces] = STATE(221), + [sym_span] = STATE(221), + [sym_raw_inline] = STATE(221), + [sym_math] = STATE(221), + [sym_verbatim] = STATE(221), + [sym__todo_highlights] = STATE(221), + [sym_todo] = STATE(221), + [sym_note] = STATE(221), + [sym__symbol_fallback] = STATE(221), + [sym__verbatim_begin] = STATE(834), + [aux_sym__text] = STATE(134), + [aux_sym__inline_repeat1] = STATE(109), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE_] = ACTIONS(408), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_STAR] = ACTIONS(414), + [anon_sym_STAR] = ACTIONS(513), + [aux_sym_strong_end_token1] = ACTIONS(49), + [anon_sym_BSLASH] = ACTIONS(420), + [sym_quotation_marks] = ACTIONS(423), + [sym_ellipsis] = ACTIONS(423), + [sym_em_dash] = ACTIONS(423), + [sym_en_dash] = ACTIONS(426), + [sym_backslash_escape] = ACTIONS(426), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_LBRACE_EQ] = ACTIONS(432), + [anon_sym_LBRACE_PLUS] = ACTIONS(435), + [anon_sym_LBRACE_DASH] = ACTIONS(438), + [sym_symbol] = ACTIONS(423), + [anon_sym_LBRACE_CARET] = ACTIONS(441), + [anon_sym_CARET] = ACTIONS(441), + [anon_sym_LBRACE_TILDE] = ACTIONS(444), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_LBRACK_CARET] = ACTIONS(447), + [anon_sym_BANG_LBRACK] = ACTIONS(450), + [anon_sym_LBRACK] = ACTIONS(453), + [anon_sym_LBRACE2] = ACTIONS(426), + [anon_sym_DOLLAR] = ACTIONS(456), + [anon_sym_TODO] = ACTIONS(459), + [anon_sym_WIP] = ACTIONS(459), + [anon_sym_NOTE] = ACTIONS(462), + [anon_sym_INFO] = ACTIONS(462), + [anon_sym_XXX] = ACTIONS(462), + [sym_fixme] = ACTIONS(423), + [anon_sym_PIPE] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(112), + [sym__whitespace1] = ACTIONS(480), + [sym__newline] = ACTIONS(468), + [aux_sym__text_token1] = ACTIONS(471), + }, + [45] = { + [sym__inline] = STATE(782), + [sym__element] = STATE(101), + [sym_emphasis] = STATE(173), + [sym_emphasis_begin] = STATE(87), + [sym_strong] = STATE(173), + [sym_strong_begin] = STATE(76), + [sym__hard_line_break] = STATE(173), + [sym_hard_line_break] = STATE(173), + [sym__smart_punctuation] = STATE(173), + [sym_autolink] = STATE(173), + [sym_highlighted] = STATE(173), + [sym_insert] = STATE(173), + [sym_delete] = STATE(173), + [sym_superscript] = STATE(173), + [sym_subscript] = STATE(173), + [sym_footnote_reference] = STATE(173), + [sym__image] = STATE(173), + [sym_full_reference_image] = STATE(173), + [sym_collapsed_reference_image] = STATE(173), + [sym_inline_image] = STATE(173), + [sym__image_description] = STATE(647), + [sym__link] = STATE(173), + [sym_full_reference_link] = STATE(173), + [sym_collapsed_reference_link] = STATE(173), + [sym_inline_link] = STATE(173), + [sym_link_text] = STATE(648), + [sym__comment_with_spaces] = STATE(173), + [sym_span] = STATE(173), + [sym_raw_inline] = STATE(173), + [sym_math] = STATE(173), + [sym_verbatim] = STATE(173), + [sym__todo_highlights] = STATE(173), + [sym_todo] = STATE(173), + [sym_note] = STATE(173), + [sym__symbol_fallback] = STATE(173), + [sym__verbatim_begin] = STATE(843), + [aux_sym__text] = STATE(155), + [aux_sym__inline_repeat1] = STATE(101), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE_] = ACTIONS(342), + [anon_sym__] = ACTIONS(345), + [anon_sym_LBRACE_STAR] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(516), + [aux_sym_strong_end_token1] = ACTIONS(49), + [anon_sym_BSLASH] = ACTIONS(354), + [sym_quotation_marks] = ACTIONS(357), + [sym_ellipsis] = ACTIONS(357), + [sym_em_dash] = ACTIONS(357), + [sym_en_dash] = ACTIONS(360), + [sym_backslash_escape] = ACTIONS(360), + [anon_sym_LT] = ACTIONS(363), + [anon_sym_LBRACE_EQ] = ACTIONS(366), + [anon_sym_LBRACE_PLUS] = ACTIONS(369), + [anon_sym_LBRACE_DASH] = ACTIONS(372), + [sym_symbol] = ACTIONS(357), + [anon_sym_LBRACE_CARET] = ACTIONS(375), + [anon_sym_CARET] = ACTIONS(375), + [anon_sym_LBRACE_TILDE] = ACTIONS(378), + [anon_sym_TILDE] = ACTIONS(378), + [anon_sym_LBRACK_CARET] = ACTIONS(381), + [anon_sym_BANG_LBRACK] = ACTIONS(384), + [anon_sym_LBRACK] = ACTIONS(387), + [anon_sym_LBRACE2] = ACTIONS(360), + [anon_sym_DOLLAR] = ACTIONS(390), + [anon_sym_TODO] = ACTIONS(393), + [anon_sym_WIP] = ACTIONS(393), + [anon_sym_NOTE] = ACTIONS(396), + [anon_sym_INFO] = ACTIONS(396), + [anon_sym_XXX] = ACTIONS(396), + [sym_fixme] = ACTIONS(357), + [anon_sym_PIPE] = ACTIONS(357), + [anon_sym_BQUOTE] = ACTIONS(112), + [sym__whitespace1] = ACTIONS(486), + [sym__newline] = ACTIONS(402), + [aux_sym__text_token1] = ACTIONS(405), + }, + [46] = { + [sym__inline] = STATE(783), + [sym__element] = STATE(98), + [sym_emphasis] = STATE(207), + [sym_emphasis_begin] = STATE(89), + [sym_strong] = STATE(207), + [sym_strong_begin] = STATE(72), + [sym__hard_line_break] = STATE(207), + [sym_hard_line_break] = STATE(207), + [sym__smart_punctuation] = STATE(207), + [sym_autolink] = STATE(207), + [sym_highlighted] = STATE(207), + [sym_insert] = STATE(207), + [sym_delete] = STATE(207), + [sym_superscript] = STATE(207), + [sym_subscript] = STATE(207), + [sym_footnote_reference] = STATE(207), + [sym__image] = STATE(207), + [sym_full_reference_image] = STATE(207), + [sym_collapsed_reference_image] = STATE(207), + [sym_inline_image] = STATE(207), + [sym__image_description] = STATE(666), + [sym__link] = STATE(207), + [sym_full_reference_link] = STATE(207), + [sym_collapsed_reference_link] = STATE(207), + [sym_inline_link] = STATE(207), + [sym_link_text] = STATE(667), + [sym__comment_with_spaces] = STATE(207), + [sym_span] = STATE(207), + [sym_raw_inline] = STATE(207), + [sym_math] = STATE(207), + [sym_verbatim] = STATE(207), + [sym__todo_highlights] = STATE(207), + [sym_todo] = STATE(207), + [sym_note] = STATE(207), + [sym__symbol_fallback] = STATE(207), + [sym__verbatim_begin] = STATE(852), + [aux_sym__text] = STATE(139), + [aux_sym__inline_repeat1] = STATE(98), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE_] = ACTIONS(210), + [anon_sym__] = ACTIONS(213), + [anon_sym_LBRACE_STAR] = ACTIONS(216), + [anon_sym_STAR] = ACTIONS(519), + [aux_sym_strong_end_token1] = ACTIONS(49), + [anon_sym_BSLASH] = ACTIONS(222), + [sym_quotation_marks] = ACTIONS(225), + [sym_ellipsis] = ACTIONS(225), + [sym_em_dash] = ACTIONS(225), + [sym_en_dash] = ACTIONS(228), + [sym_backslash_escape] = ACTIONS(228), + [anon_sym_LT] = ACTIONS(231), + [anon_sym_LBRACE_EQ] = ACTIONS(234), + [anon_sym_LBRACE_PLUS] = ACTIONS(237), + [anon_sym_LBRACE_DASH] = ACTIONS(240), + [sym_symbol] = ACTIONS(225), + [anon_sym_LBRACE_CARET] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(243), + [anon_sym_LBRACE_TILDE] = ACTIONS(246), + [anon_sym_TILDE] = ACTIONS(246), + [anon_sym_LBRACK_CARET] = ACTIONS(249), + [anon_sym_BANG_LBRACK] = ACTIONS(252), + [anon_sym_LBRACK] = ACTIONS(255), + [anon_sym_LBRACE2] = ACTIONS(228), + [anon_sym_DOLLAR] = ACTIONS(258), + [anon_sym_TODO] = ACTIONS(261), + [anon_sym_WIP] = ACTIONS(261), + [anon_sym_NOTE] = ACTIONS(264), + [anon_sym_INFO] = ACTIONS(264), + [anon_sym_XXX] = ACTIONS(264), + [sym_fixme] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(225), + [anon_sym_BQUOTE] = ACTIONS(112), + [sym__whitespace1] = ACTIONS(492), + [sym__newline] = ACTIONS(270), + [aux_sym__text_token1] = ACTIONS(273), + }, + [47] = { + [sym__inline] = STATE(846), + [sym__element] = STATE(101), + [sym_emphasis] = STATE(173), + [sym_emphasis_begin] = STATE(87), + [sym_strong] = STATE(173), + [sym_strong_begin] = STATE(76), + [sym__hard_line_break] = STATE(173), + [sym_hard_line_break] = STATE(173), + [sym__smart_punctuation] = STATE(173), + [sym_autolink] = STATE(173), + [sym_highlighted] = STATE(173), + [sym_insert] = STATE(173), + [sym_delete] = STATE(173), + [sym_superscript] = STATE(173), + [sym_subscript] = STATE(173), + [sym_footnote_reference] = STATE(173), + [sym__image] = STATE(173), + [sym_full_reference_image] = STATE(173), + [sym_collapsed_reference_image] = STATE(173), + [sym_inline_image] = STATE(173), + [sym__image_description] = STATE(647), + [sym__link] = STATE(173), + [sym_full_reference_link] = STATE(173), + [sym_collapsed_reference_link] = STATE(173), + [sym_inline_link] = STATE(173), + [sym_link_text] = STATE(648), + [sym__comment_with_spaces] = STATE(173), + [sym_span] = STATE(173), + [sym_raw_inline] = STATE(173), + [sym_math] = STATE(173), + [sym_verbatim] = STATE(173), + [sym__todo_highlights] = STATE(173), + [sym_todo] = STATE(173), + [sym_note] = STATE(173), + [sym__symbol_fallback] = STATE(173), + [sym__verbatim_begin] = STATE(843), + [aux_sym__text] = STATE(155), + [aux_sym__inline_repeat1] = STATE(101), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE_] = ACTIONS(342), + [anon_sym__] = ACTIONS(345), + [anon_sym_LBRACE_STAR] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(351), + [anon_sym_BSLASH] = ACTIONS(354), + [sym_quotation_marks] = ACTIONS(357), + [sym_ellipsis] = ACTIONS(357), + [sym_em_dash] = ACTIONS(357), + [sym_en_dash] = ACTIONS(360), + [sym_backslash_escape] = ACTIONS(360), + [anon_sym_LT] = ACTIONS(363), + [anon_sym_LBRACE_EQ] = ACTIONS(366), + [anon_sym_LBRACE_PLUS] = ACTIONS(369), + [anon_sym_LBRACE_DASH] = ACTIONS(372), + [anon_sym_DASH_RBRACE] = ACTIONS(49), + [sym_symbol] = ACTIONS(357), + [anon_sym_LBRACE_CARET] = ACTIONS(375), + [anon_sym_CARET] = ACTIONS(375), + [anon_sym_LBRACE_TILDE] = ACTIONS(378), + [anon_sym_TILDE] = ACTIONS(378), + [anon_sym_LBRACK_CARET] = ACTIONS(381), + [anon_sym_BANG_LBRACK] = ACTIONS(384), + [anon_sym_LBRACK] = ACTIONS(387), + [anon_sym_LBRACE2] = ACTIONS(360), + [anon_sym_DOLLAR] = ACTIONS(390), + [anon_sym_TODO] = ACTIONS(393), + [anon_sym_WIP] = ACTIONS(393), + [anon_sym_NOTE] = ACTIONS(396), + [anon_sym_INFO] = ACTIONS(396), + [anon_sym_XXX] = ACTIONS(396), + [sym_fixme] = ACTIONS(357), + [anon_sym_PIPE] = ACTIONS(357), + [anon_sym_BQUOTE] = ACTIONS(112), + [sym__whitespace1] = ACTIONS(399), + [sym__newline] = ACTIONS(402), + [aux_sym__text_token1] = ACTIONS(405), + }, + [48] = { + [sym__inline] = STATE(815), + [sym__element] = STATE(109), + [sym_emphasis] = STATE(221), + [sym_emphasis_begin] = STATE(82), + [sym_strong] = STATE(221), + [sym_strong_begin] = STATE(83), + [sym__hard_line_break] = STATE(221), + [sym_hard_line_break] = STATE(221), + [sym__smart_punctuation] = STATE(221), + [sym_autolink] = STATE(221), + [sym_highlighted] = STATE(221), + [sym_insert] = STATE(221), + [sym_delete] = STATE(221), + [sym_superscript] = STATE(221), + [sym_subscript] = STATE(221), + [sym_footnote_reference] = STATE(221), + [sym__image] = STATE(221), + [sym_full_reference_image] = STATE(221), + [sym_collapsed_reference_image] = STATE(221), + [sym_inline_image] = STATE(221), + [sym__image_description] = STATE(669), + [sym__link] = STATE(221), + [sym_full_reference_link] = STATE(221), + [sym_collapsed_reference_link] = STATE(221), + [sym_inline_link] = STATE(221), + [sym_link_text] = STATE(657), + [sym__comment_with_spaces] = STATE(221), + [sym_span] = STATE(221), + [sym_raw_inline] = STATE(221), + [sym_math] = STATE(221), + [sym_verbatim] = STATE(221), + [sym__todo_highlights] = STATE(221), + [sym_todo] = STATE(221), + [sym_note] = STATE(221), + [sym__symbol_fallback] = STATE(221), + [sym__verbatim_begin] = STATE(834), + [aux_sym__text] = STATE(134), + [aux_sym__inline_repeat1] = STATE(109), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE_] = ACTIONS(408), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_STAR] = ACTIONS(414), + [anon_sym_STAR] = ACTIONS(417), + [anon_sym_BSLASH] = ACTIONS(420), + [sym_quotation_marks] = ACTIONS(423), + [sym_ellipsis] = ACTIONS(423), + [sym_em_dash] = ACTIONS(423), + [sym_en_dash] = ACTIONS(426), + [sym_backslash_escape] = ACTIONS(426), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_LBRACE_EQ] = ACTIONS(432), + [anon_sym_LBRACE_PLUS] = ACTIONS(435), + [anon_sym_LBRACE_DASH] = ACTIONS(438), + [anon_sym_DASH_RBRACE] = ACTIONS(49), + [sym_symbol] = ACTIONS(423), + [anon_sym_LBRACE_CARET] = ACTIONS(441), + [anon_sym_CARET] = ACTIONS(441), + [anon_sym_LBRACE_TILDE] = ACTIONS(444), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_LBRACK_CARET] = ACTIONS(447), + [anon_sym_BANG_LBRACK] = ACTIONS(450), + [anon_sym_LBRACK] = ACTIONS(453), + [anon_sym_LBRACE2] = ACTIONS(426), + [anon_sym_DOLLAR] = ACTIONS(456), + [anon_sym_TODO] = ACTIONS(459), + [anon_sym_WIP] = ACTIONS(459), + [anon_sym_NOTE] = ACTIONS(462), + [anon_sym_INFO] = ACTIONS(462), + [anon_sym_XXX] = ACTIONS(462), + [sym_fixme] = ACTIONS(423), + [anon_sym_PIPE] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(112), + [sym__whitespace1] = ACTIONS(465), + [sym__newline] = ACTIONS(468), + [aux_sym__text_token1] = ACTIONS(471), + }, + [49] = { + [sym__inline] = STATE(746), + [sym__element] = STATE(84), + [sym_emphasis] = STATE(197), + [sym_emphasis_begin] = STATE(97), + [sym_strong] = STATE(197), + [sym_strong_begin] = STATE(100), + [sym__hard_line_break] = STATE(197), + [sym_hard_line_break] = STATE(197), + [sym__smart_punctuation] = STATE(197), + [sym_autolink] = STATE(197), + [sym_highlighted] = STATE(197), + [sym_insert] = STATE(197), + [sym_delete] = STATE(197), + [sym_superscript] = STATE(197), + [sym_subscript] = STATE(197), + [sym_footnote_reference] = STATE(197), + [sym__image] = STATE(197), + [sym_full_reference_image] = STATE(197), + [sym_collapsed_reference_image] = STATE(197), + [sym_inline_image] = STATE(197), + [sym__image_description] = STATE(676), + [sym__link] = STATE(197), + [sym_full_reference_link] = STATE(197), + [sym_collapsed_reference_link] = STATE(197), + [sym_inline_link] = STATE(197), + [sym_link_text] = STATE(677), + [sym__comment_with_spaces] = STATE(197), + [sym_span] = STATE(197), + [sym_raw_inline] = STATE(197), + [sym_math] = STATE(197), + [sym_verbatim] = STATE(197), + [sym__todo_highlights] = STATE(197), + [sym_todo] = STATE(197), + [sym_note] = STATE(197), + [sym__symbol_fallback] = STATE(197), + [sym__verbatim_begin] = STATE(861), + [aux_sym__text] = STATE(159), + [aux_sym__inline_repeat1] = STATE(84), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE_] = ACTIONS(276), + [anon_sym__] = ACTIONS(279), + [anon_sym_LBRACE_STAR] = ACTIONS(282), + [anon_sym_STAR] = ACTIONS(522), + [aux_sym_strong_end_token1] = ACTIONS(49), + [anon_sym_BSLASH] = ACTIONS(288), + [sym_quotation_marks] = ACTIONS(291), + [sym_ellipsis] = ACTIONS(291), + [sym_em_dash] = ACTIONS(291), + [sym_en_dash] = ACTIONS(294), + [sym_backslash_escape] = ACTIONS(294), + [anon_sym_LT] = ACTIONS(297), + [anon_sym_LBRACE_EQ] = ACTIONS(300), + [anon_sym_LBRACE_PLUS] = ACTIONS(303), + [anon_sym_LBRACE_DASH] = ACTIONS(306), + [sym_symbol] = ACTIONS(291), + [anon_sym_LBRACE_CARET] = ACTIONS(309), + [anon_sym_CARET] = ACTIONS(309), + [anon_sym_LBRACE_TILDE] = ACTIONS(312), + [anon_sym_TILDE] = ACTIONS(312), + [anon_sym_LBRACK_CARET] = ACTIONS(315), + [anon_sym_BANG_LBRACK] = ACTIONS(318), + [anon_sym_LBRACK] = ACTIONS(321), + [anon_sym_LBRACE2] = ACTIONS(294), + [anon_sym_DOLLAR] = ACTIONS(324), + [anon_sym_TODO] = ACTIONS(327), + [anon_sym_WIP] = ACTIONS(327), + [anon_sym_NOTE] = ACTIONS(330), + [anon_sym_INFO] = ACTIONS(330), + [anon_sym_XXX] = ACTIONS(330), + [sym_fixme] = ACTIONS(291), + [anon_sym_PIPE] = ACTIONS(291), + [anon_sym_BQUOTE] = ACTIONS(112), + [sym__whitespace1] = ACTIONS(525), + [sym__newline] = ACTIONS(336), + [aux_sym__text_token1] = ACTIONS(339), + }, + [50] = { + [sym__inline] = STATE(749), + [sym__element] = STATE(96), + [sym_emphasis] = STATE(182), + [sym_emphasis_begin] = STATE(103), + [sym_strong] = STATE(182), + [sym_strong_begin] = STATE(104), + [sym__hard_line_break] = STATE(182), + [sym_hard_line_break] = STATE(182), + [sym__smart_punctuation] = STATE(182), + [sym_autolink] = STATE(182), + [sym_highlighted] = STATE(182), + [sym_insert] = STATE(182), + [sym_delete] = STATE(182), + [sym_superscript] = STATE(182), + [sym_subscript] = STATE(182), + [sym_footnote_reference] = STATE(182), + [sym__image] = STATE(182), + [sym_full_reference_image] = STATE(182), + [sym_collapsed_reference_image] = STATE(182), + [sym_inline_image] = STATE(182), + [sym__image_description] = STATE(672), + [sym__link] = STATE(182), + [sym_full_reference_link] = STATE(182), + [sym_collapsed_reference_link] = STATE(182), + [sym_inline_link] = STATE(182), + [sym_link_text] = STATE(671), + [sym__comment_with_spaces] = STATE(182), + [sym_span] = STATE(182), + [sym_raw_inline] = STATE(182), + [sym_math] = STATE(182), + [sym_verbatim] = STATE(182), + [sym__todo_highlights] = STATE(182), + [sym_todo] = STATE(182), + [sym_note] = STATE(182), + [sym__symbol_fallback] = STATE(182), + [sym__verbatim_begin] = STATE(870), + [aux_sym__text] = STATE(150), + [aux_sym__inline_repeat1] = STATE(96), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE_] = ACTIONS(141), + [anon_sym__] = ACTIONS(144), + [anon_sym_LBRACE_STAR] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(528), + [aux_sym_strong_end_token1] = ACTIONS(49), + [anon_sym_BSLASH] = ACTIONS(153), + [sym_quotation_marks] = ACTIONS(156), + [sym_ellipsis] = ACTIONS(156), + [sym_em_dash] = ACTIONS(156), + [sym_en_dash] = ACTIONS(159), + [sym_backslash_escape] = ACTIONS(159), + [anon_sym_LT] = ACTIONS(162), + [anon_sym_LBRACE_EQ] = ACTIONS(165), + [anon_sym_LBRACE_PLUS] = ACTIONS(168), + [anon_sym_LBRACE_DASH] = ACTIONS(171), + [sym_symbol] = ACTIONS(156), + [anon_sym_LBRACE_CARET] = ACTIONS(174), + [anon_sym_CARET] = ACTIONS(174), + [anon_sym_LBRACE_TILDE] = ACTIONS(177), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_LBRACK_CARET] = ACTIONS(183), + [anon_sym_BANG_LBRACK] = ACTIONS(186), + [anon_sym_LBRACK] = ACTIONS(189), + [anon_sym_LBRACE2] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(192), + [anon_sym_TODO] = ACTIONS(195), + [anon_sym_WIP] = ACTIONS(195), + [anon_sym_NOTE] = ACTIONS(198), + [anon_sym_INFO] = ACTIONS(198), + [anon_sym_XXX] = ACTIONS(198), + [sym_fixme] = ACTIONS(156), + [anon_sym_PIPE] = ACTIONS(156), + [anon_sym_BQUOTE] = ACTIONS(112), + [sym__whitespace1] = ACTIONS(498), + [sym__newline] = ACTIONS(204), + [aux_sym__text_token1] = ACTIONS(207), + }, + [51] = { + [sym__inline] = STATE(891), + [sym__element] = STATE(109), + [sym_emphasis] = STATE(221), + [sym_emphasis_begin] = STATE(82), + [sym_strong] = STATE(221), + [sym_strong_begin] = STATE(83), + [sym__hard_line_break] = STATE(221), + [sym_hard_line_break] = STATE(221), + [sym__smart_punctuation] = STATE(221), + [sym_autolink] = STATE(221), + [sym_highlighted] = STATE(221), + [sym_insert] = STATE(221), + [sym_delete] = STATE(221), + [sym_superscript] = STATE(221), + [sym_subscript] = STATE(221), + [sym_footnote_reference] = STATE(221), + [sym__image] = STATE(221), + [sym_full_reference_image] = STATE(221), + [sym_collapsed_reference_image] = STATE(221), + [sym_inline_image] = STATE(221), + [sym__image_description] = STATE(669), + [sym__link] = STATE(221), + [sym_full_reference_link] = STATE(221), + [sym_collapsed_reference_link] = STATE(221), + [sym_inline_link] = STATE(221), + [sym_link_text] = STATE(657), + [sym__comment_with_spaces] = STATE(221), + [sym_span] = STATE(221), + [sym_raw_inline] = STATE(221), + [sym_math] = STATE(221), + [sym_verbatim] = STATE(221), + [sym__todo_highlights] = STATE(221), + [sym_todo] = STATE(221), + [sym_note] = STATE(221), + [sym__symbol_fallback] = STATE(221), + [sym__verbatim_begin] = STATE(834), + [aux_sym__text] = STATE(134), + [aux_sym__inline_repeat1] = STATE(109), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE_] = ACTIONS(408), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_STAR] = ACTIONS(414), + [anon_sym_STAR] = ACTIONS(417), + [anon_sym_BSLASH] = ACTIONS(420), + [sym_quotation_marks] = ACTIONS(423), + [sym_ellipsis] = ACTIONS(423), + [sym_em_dash] = ACTIONS(423), + [sym_en_dash] = ACTIONS(426), + [sym_backslash_escape] = ACTIONS(426), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_LBRACE_EQ] = ACTIONS(432), + [anon_sym_LBRACE_PLUS] = ACTIONS(435), + [anon_sym_LBRACE_DASH] = ACTIONS(438), + [sym_symbol] = ACTIONS(423), + [anon_sym_LBRACE_CARET] = ACTIONS(441), + [anon_sym_CARET] = ACTIONS(531), + [anon_sym_CARET_RBRACE] = ACTIONS(49), + [anon_sym_LBRACE_TILDE] = ACTIONS(444), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_LBRACK_CARET] = ACTIONS(447), + [anon_sym_BANG_LBRACK] = ACTIONS(450), + [anon_sym_LBRACK] = ACTIONS(453), + [anon_sym_LBRACE2] = ACTIONS(426), + [anon_sym_DOLLAR] = ACTIONS(456), + [anon_sym_TODO] = ACTIONS(459), + [anon_sym_WIP] = ACTIONS(459), + [anon_sym_NOTE] = ACTIONS(462), + [anon_sym_INFO] = ACTIONS(462), + [anon_sym_XXX] = ACTIONS(462), + [sym_fixme] = ACTIONS(423), + [anon_sym_PIPE] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(112), + [sym__whitespace1] = ACTIONS(465), + [sym__newline] = ACTIONS(468), + [aux_sym__text_token1] = ACTIONS(471), + }, + [52] = { + [sym__inline] = STATE(869), + [sym__element] = STATE(109), + [sym_emphasis] = STATE(221), + [sym_emphasis_begin] = STATE(82), + [sym_strong] = STATE(221), + [sym_strong_begin] = STATE(83), + [sym__hard_line_break] = STATE(221), + [sym_hard_line_break] = STATE(221), + [sym__smart_punctuation] = STATE(221), + [sym_autolink] = STATE(221), + [sym_highlighted] = STATE(221), + [sym_insert] = STATE(221), + [sym_delete] = STATE(221), + [sym_superscript] = STATE(221), + [sym_subscript] = STATE(221), + [sym_footnote_reference] = STATE(221), + [sym__image] = STATE(221), + [sym_full_reference_image] = STATE(221), + [sym_collapsed_reference_image] = STATE(221), + [sym_inline_image] = STATE(221), + [sym__image_description] = STATE(669), + [sym__link] = STATE(221), + [sym_full_reference_link] = STATE(221), + [sym_collapsed_reference_link] = STATE(221), + [sym_inline_link] = STATE(221), + [sym_link_text] = STATE(657), + [sym__comment_with_spaces] = STATE(221), + [sym_span] = STATE(221), + [sym_raw_inline] = STATE(221), + [sym_math] = STATE(221), + [sym_verbatim] = STATE(221), + [sym__todo_highlights] = STATE(221), + [sym_todo] = STATE(221), + [sym_note] = STATE(221), + [sym__symbol_fallback] = STATE(221), + [sym__verbatim_begin] = STATE(834), + [aux_sym__text] = STATE(134), + [aux_sym__inline_repeat1] = STATE(109), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE_] = ACTIONS(408), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_STAR] = ACTIONS(414), + [anon_sym_STAR] = ACTIONS(417), + [anon_sym_BSLASH] = ACTIONS(420), + [sym_quotation_marks] = ACTIONS(423), + [sym_ellipsis] = ACTIONS(423), + [sym_em_dash] = ACTIONS(423), + [sym_en_dash] = ACTIONS(426), + [sym_backslash_escape] = ACTIONS(426), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_LBRACE_EQ] = ACTIONS(432), + [anon_sym_LBRACE_PLUS] = ACTIONS(435), + [anon_sym_PLUS_RBRACE] = ACTIONS(49), + [anon_sym_LBRACE_DASH] = ACTIONS(438), + [sym_symbol] = ACTIONS(423), + [anon_sym_LBRACE_CARET] = ACTIONS(441), + [anon_sym_CARET] = ACTIONS(441), + [anon_sym_LBRACE_TILDE] = ACTIONS(444), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_LBRACK_CARET] = ACTIONS(447), + [anon_sym_BANG_LBRACK] = ACTIONS(450), + [anon_sym_LBRACK] = ACTIONS(453), + [anon_sym_LBRACE2] = ACTIONS(426), + [anon_sym_DOLLAR] = ACTIONS(456), + [anon_sym_TODO] = ACTIONS(459), + [anon_sym_WIP] = ACTIONS(459), + [anon_sym_NOTE] = ACTIONS(462), + [anon_sym_INFO] = ACTIONS(462), + [anon_sym_XXX] = ACTIONS(462), + [sym_fixme] = ACTIONS(423), + [anon_sym_PIPE] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(112), + [sym__whitespace1] = ACTIONS(465), + [sym__newline] = ACTIONS(468), + [aux_sym__text_token1] = ACTIONS(471), + }, + [53] = { + [sym__inline] = STATE(883), + [sym__element] = STATE(101), + [sym_emphasis] = STATE(173), + [sym_emphasis_begin] = STATE(87), + [sym_strong] = STATE(173), + [sym_strong_begin] = STATE(76), + [sym__hard_line_break] = STATE(173), + [sym_hard_line_break] = STATE(173), + [sym__smart_punctuation] = STATE(173), + [sym_autolink] = STATE(173), + [sym_highlighted] = STATE(173), + [sym_insert] = STATE(173), + [sym_delete] = STATE(173), + [sym_superscript] = STATE(173), + [sym_subscript] = STATE(173), + [sym_footnote_reference] = STATE(173), + [sym__image] = STATE(173), + [sym_full_reference_image] = STATE(173), + [sym_collapsed_reference_image] = STATE(173), + [sym_inline_image] = STATE(173), + [sym__image_description] = STATE(647), + [sym__link] = STATE(173), + [sym_full_reference_link] = STATE(173), + [sym_collapsed_reference_link] = STATE(173), + [sym_inline_link] = STATE(173), + [sym_link_text] = STATE(648), + [sym__comment_with_spaces] = STATE(173), + [sym_span] = STATE(173), + [sym_raw_inline] = STATE(173), + [sym_math] = STATE(173), + [sym_verbatim] = STATE(173), + [sym__todo_highlights] = STATE(173), + [sym_todo] = STATE(173), + [sym_note] = STATE(173), + [sym__symbol_fallback] = STATE(173), + [sym__verbatim_begin] = STATE(843), + [aux_sym__text] = STATE(155), + [aux_sym__inline_repeat1] = STATE(101), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE_] = ACTIONS(342), + [anon_sym__] = ACTIONS(345), + [anon_sym_LBRACE_STAR] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(351), + [anon_sym_BSLASH] = ACTIONS(354), + [sym_quotation_marks] = ACTIONS(357), + [sym_ellipsis] = ACTIONS(357), + [sym_em_dash] = ACTIONS(357), + [sym_en_dash] = ACTIONS(360), + [sym_backslash_escape] = ACTIONS(360), + [anon_sym_LT] = ACTIONS(363), + [anon_sym_LBRACE_EQ] = ACTIONS(366), + [anon_sym_LBRACE_PLUS] = ACTIONS(369), + [anon_sym_LBRACE_DASH] = ACTIONS(372), + [sym_symbol] = ACTIONS(357), + [anon_sym_LBRACE_CARET] = ACTIONS(375), + [anon_sym_CARET] = ACTIONS(534), + [anon_sym_CARET_RBRACE] = ACTIONS(49), + [anon_sym_LBRACE_TILDE] = ACTIONS(378), + [anon_sym_TILDE] = ACTIONS(378), + [anon_sym_LBRACK_CARET] = ACTIONS(381), + [anon_sym_BANG_LBRACK] = ACTIONS(384), + [anon_sym_LBRACK] = ACTIONS(387), + [anon_sym_LBRACE2] = ACTIONS(360), + [anon_sym_DOLLAR] = ACTIONS(390), + [anon_sym_TODO] = ACTIONS(393), + [anon_sym_WIP] = ACTIONS(393), + [anon_sym_NOTE] = ACTIONS(396), + [anon_sym_INFO] = ACTIONS(396), + [anon_sym_XXX] = ACTIONS(396), + [sym_fixme] = ACTIONS(357), + [anon_sym_PIPE] = ACTIONS(357), + [anon_sym_BQUOTE] = ACTIONS(112), + [sym__whitespace1] = ACTIONS(399), + [sym__newline] = ACTIONS(402), + [aux_sym__text_token1] = ACTIONS(405), + }, + [54] = { + [sym__inline] = STATE(853), + [sym__element] = STATE(112), + [sym_emphasis] = STATE(206), + [sym_emphasis_begin] = STATE(108), + [sym_strong] = STATE(206), + [sym_strong_begin] = STATE(110), + [sym__hard_line_break] = STATE(206), + [sym_hard_line_break] = STATE(206), + [sym__smart_punctuation] = STATE(206), + [sym_autolink] = STATE(206), + [sym_highlighted] = STATE(206), + [sym_insert] = STATE(206), + [sym_delete] = STATE(206), + [sym_superscript] = STATE(206), + [sym_subscript] = STATE(206), + [sym_footnote_reference] = STATE(206), + [sym__image] = STATE(206), + [sym_full_reference_image] = STATE(206), + [sym_collapsed_reference_image] = STATE(206), + [sym_inline_image] = STATE(206), + [sym__image_description] = STATE(664), + [sym__link] = STATE(206), + [sym_full_reference_link] = STATE(206), + [sym_collapsed_reference_link] = STATE(206), + [sym_inline_link] = STATE(206), + [sym_link_text] = STATE(663), + [sym__comment_with_spaces] = STATE(206), + [sym_span] = STATE(206), + [sym_raw_inline] = STATE(206), + [sym_math] = STATE(206), + [sym_verbatim] = STATE(206), + [sym__todo_highlights] = STATE(206), + [sym_todo] = STATE(206), + [sym_note] = STATE(206), + [sym__symbol_fallback] = STATE(206), + [sym__verbatim_begin] = STATE(879), + [aux_sym__text] = STATE(126), + [aux_sym__inline_repeat1] = STATE(112), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE_] = ACTIONS(53), + [anon_sym__] = ACTIONS(56), + [anon_sym_LBRACE_STAR] = ACTIONS(59), + [anon_sym_STAR] = ACTIONS(62), + [anon_sym_BSLASH] = ACTIONS(65), + [sym_quotation_marks] = ACTIONS(68), + [sym_ellipsis] = ACTIONS(68), + [sym_em_dash] = ACTIONS(68), + [sym_en_dash] = ACTIONS(71), + [sym_backslash_escape] = ACTIONS(71), + [anon_sym_LT] = ACTIONS(74), + [anon_sym_LBRACE_EQ] = ACTIONS(77), + [anon_sym_LBRACE_PLUS] = ACTIONS(80), + [anon_sym_LBRACE_DASH] = ACTIONS(83), + [anon_sym_DASH_RBRACE] = ACTIONS(49), + [sym_symbol] = ACTIONS(68), + [anon_sym_LBRACE_CARET] = ACTIONS(86), + [anon_sym_CARET] = ACTIONS(86), + [anon_sym_LBRACE_TILDE] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(89), + [anon_sym_LBRACK_CARET] = ACTIONS(92), + [anon_sym_BANG_LBRACK] = ACTIONS(97), + [anon_sym_LBRACK] = ACTIONS(100), + [anon_sym_LBRACE2] = ACTIONS(71), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_TODO] = ACTIONS(106), + [anon_sym_WIP] = ACTIONS(106), + [anon_sym_NOTE] = ACTIONS(109), + [anon_sym_INFO] = ACTIONS(109), + [anon_sym_XXX] = ACTIONS(109), + [sym_fixme] = ACTIONS(68), + [anon_sym_PIPE] = ACTIONS(68), + [anon_sym_BQUOTE] = ACTIONS(112), + [sym__whitespace1] = ACTIONS(115), + [sym__newline] = ACTIONS(118), + [aux_sym__text_token1] = ACTIONS(121), + }, + [55] = { + [sym__inline] = STATE(882), + [sym__element] = STATE(98), + [sym_emphasis] = STATE(207), + [sym_emphasis_begin] = STATE(89), + [sym_strong] = STATE(207), + [sym_strong_begin] = STATE(72), + [sym__hard_line_break] = STATE(207), + [sym_hard_line_break] = STATE(207), + [sym__smart_punctuation] = STATE(207), + [sym_autolink] = STATE(207), + [sym_highlighted] = STATE(207), + [sym_insert] = STATE(207), + [sym_delete] = STATE(207), + [sym_superscript] = STATE(207), + [sym_subscript] = STATE(207), + [sym_footnote_reference] = STATE(207), + [sym__image] = STATE(207), + [sym_full_reference_image] = STATE(207), + [sym_collapsed_reference_image] = STATE(207), + [sym_inline_image] = STATE(207), + [sym__image_description] = STATE(666), + [sym__link] = STATE(207), + [sym_full_reference_link] = STATE(207), + [sym_collapsed_reference_link] = STATE(207), + [sym_inline_link] = STATE(207), + [sym_link_text] = STATE(667), + [sym__comment_with_spaces] = STATE(207), + [sym_span] = STATE(207), + [sym_raw_inline] = STATE(207), + [sym_math] = STATE(207), + [sym_verbatim] = STATE(207), + [sym__todo_highlights] = STATE(207), + [sym_todo] = STATE(207), + [sym_note] = STATE(207), + [sym__symbol_fallback] = STATE(207), + [sym__verbatim_begin] = STATE(852), + [aux_sym__text] = STATE(139), + [aux_sym__inline_repeat1] = STATE(98), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE_] = ACTIONS(210), + [anon_sym__] = ACTIONS(213), + [anon_sym_LBRACE_STAR] = ACTIONS(216), + [anon_sym_STAR] = ACTIONS(219), + [anon_sym_BSLASH] = ACTIONS(222), + [sym_quotation_marks] = ACTIONS(225), + [sym_ellipsis] = ACTIONS(225), + [sym_em_dash] = ACTIONS(225), + [sym_en_dash] = ACTIONS(228), + [sym_backslash_escape] = ACTIONS(228), + [anon_sym_LT] = ACTIONS(231), + [anon_sym_LBRACE_EQ] = ACTIONS(234), + [anon_sym_LBRACE_PLUS] = ACTIONS(237), + [anon_sym_LBRACE_DASH] = ACTIONS(240), + [sym_symbol] = ACTIONS(225), + [anon_sym_LBRACE_CARET] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(537), + [anon_sym_CARET_RBRACE] = ACTIONS(49), + [anon_sym_LBRACE_TILDE] = ACTIONS(246), + [anon_sym_TILDE] = ACTIONS(246), + [anon_sym_LBRACK_CARET] = ACTIONS(249), + [anon_sym_BANG_LBRACK] = ACTIONS(252), + [anon_sym_LBRACK] = ACTIONS(255), + [anon_sym_LBRACE2] = ACTIONS(228), + [anon_sym_DOLLAR] = ACTIONS(258), + [anon_sym_TODO] = ACTIONS(261), + [anon_sym_WIP] = ACTIONS(261), + [anon_sym_NOTE] = ACTIONS(264), + [anon_sym_INFO] = ACTIONS(264), + [anon_sym_XXX] = ACTIONS(264), + [sym_fixme] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(225), + [anon_sym_BQUOTE] = ACTIONS(112), + [sym__whitespace1] = ACTIONS(267), + [sym__newline] = ACTIONS(270), + [aux_sym__text_token1] = ACTIONS(273), + }, + [56] = { + [sym__inline] = STATE(907), + [sym__element] = STATE(112), + [sym_emphasis] = STATE(206), + [sym_emphasis_begin] = STATE(108), + [sym_strong] = STATE(206), + [sym_strong_begin] = STATE(110), + [sym__hard_line_break] = STATE(206), + [sym_hard_line_break] = STATE(206), + [sym__smart_punctuation] = STATE(206), + [sym_autolink] = STATE(206), + [sym_highlighted] = STATE(206), + [sym_insert] = STATE(206), + [sym_delete] = STATE(206), + [sym_superscript] = STATE(206), + [sym_subscript] = STATE(206), + [sym_footnote_reference] = STATE(206), + [sym__image] = STATE(206), + [sym_full_reference_image] = STATE(206), + [sym_collapsed_reference_image] = STATE(206), + [sym_inline_image] = STATE(206), + [sym__image_description] = STATE(664), + [sym__link] = STATE(206), + [sym_full_reference_link] = STATE(206), + [sym_collapsed_reference_link] = STATE(206), + [sym_inline_link] = STATE(206), + [sym_link_text] = STATE(663), + [sym__comment_with_spaces] = STATE(206), + [sym_span] = STATE(206), + [sym_raw_inline] = STATE(206), + [sym_math] = STATE(206), + [sym_verbatim] = STATE(206), + [sym__todo_highlights] = STATE(206), + [sym_todo] = STATE(206), + [sym_note] = STATE(206), + [sym__symbol_fallback] = STATE(206), + [sym__verbatim_begin] = STATE(879), + [aux_sym__text] = STATE(126), + [aux_sym__inline_repeat1] = STATE(112), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE_] = ACTIONS(53), + [anon_sym__] = ACTIONS(56), + [anon_sym_LBRACE_STAR] = ACTIONS(59), + [anon_sym_STAR] = ACTIONS(62), + [anon_sym_BSLASH] = ACTIONS(65), + [sym_quotation_marks] = ACTIONS(68), + [sym_ellipsis] = ACTIONS(68), + [sym_em_dash] = ACTIONS(68), + [sym_en_dash] = ACTIONS(71), + [sym_backslash_escape] = ACTIONS(71), + [anon_sym_LT] = ACTIONS(74), + [anon_sym_LBRACE_EQ] = ACTIONS(77), + [anon_sym_LBRACE_PLUS] = ACTIONS(80), + [anon_sym_LBRACE_DASH] = ACTIONS(83), + [sym_symbol] = ACTIONS(68), + [anon_sym_LBRACE_CARET] = ACTIONS(86), + [anon_sym_CARET] = ACTIONS(86), + [anon_sym_LBRACE_TILDE] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(89), + [anon_sym_LBRACK_CARET] = ACTIONS(92), + [anon_sym_BANG_LBRACK] = ACTIONS(97), + [anon_sym_LBRACK] = ACTIONS(100), + [anon_sym_RBRACK2] = ACTIONS(49), + [anon_sym_LBRACE2] = ACTIONS(71), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_TODO] = ACTIONS(106), + [anon_sym_WIP] = ACTIONS(106), + [anon_sym_NOTE] = ACTIONS(109), + [anon_sym_INFO] = ACTIONS(109), + [anon_sym_XXX] = ACTIONS(109), + [sym_fixme] = ACTIONS(68), + [anon_sym_PIPE] = ACTIONS(68), + [anon_sym_BQUOTE] = ACTIONS(112), + [sym__whitespace1] = ACTIONS(115), + [sym__newline] = ACTIONS(118), + [aux_sym__text_token1] = ACTIONS(121), + }, + [57] = { + [sym__inline] = STATE(703), + [sym__element] = STATE(84), + [sym_emphasis] = STATE(197), + [sym_emphasis_begin] = STATE(97), + [sym_strong] = STATE(197), + [sym_strong_begin] = STATE(100), + [sym__hard_line_break] = STATE(197), + [sym_hard_line_break] = STATE(197), + [sym__smart_punctuation] = STATE(197), + [sym_autolink] = STATE(197), + [sym_highlighted] = STATE(197), + [sym_insert] = STATE(197), + [sym_delete] = STATE(197), + [sym_superscript] = STATE(197), + [sym_subscript] = STATE(197), + [sym_footnote_reference] = STATE(197), + [sym__image] = STATE(197), + [sym_full_reference_image] = STATE(197), + [sym_collapsed_reference_image] = STATE(197), + [sym_inline_image] = STATE(197), + [sym__image_description] = STATE(676), + [sym__link] = STATE(197), + [sym_full_reference_link] = STATE(197), + [sym_collapsed_reference_link] = STATE(197), + [sym_inline_link] = STATE(197), + [sym_link_text] = STATE(677), + [sym__comment_with_spaces] = STATE(197), + [sym_span] = STATE(197), + [sym_raw_inline] = STATE(197), + [sym_math] = STATE(197), + [sym_verbatim] = STATE(197), + [sym__todo_highlights] = STATE(197), + [sym_todo] = STATE(197), + [sym_note] = STATE(197), + [sym__symbol_fallback] = STATE(197), + [sym__verbatim_begin] = STATE(861), + [aux_sym__text] = STATE(159), + [aux_sym__inline_repeat1] = STATE(84), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE_] = ACTIONS(276), + [anon_sym__] = ACTIONS(279), + [anon_sym_LBRACE_STAR] = ACTIONS(282), + [anon_sym_STAR] = ACTIONS(285), + [anon_sym_BSLASH] = ACTIONS(288), + [sym_quotation_marks] = ACTIONS(291), + [sym_ellipsis] = ACTIONS(291), + [sym_em_dash] = ACTIONS(291), + [sym_en_dash] = ACTIONS(294), + [sym_backslash_escape] = ACTIONS(294), + [anon_sym_LT] = ACTIONS(297), + [anon_sym_LBRACE_EQ] = ACTIONS(300), + [anon_sym_LBRACE_PLUS] = ACTIONS(303), + [anon_sym_LBRACE_DASH] = ACTIONS(306), + [sym_symbol] = ACTIONS(291), + [anon_sym_LBRACE_CARET] = ACTIONS(309), + [anon_sym_CARET] = ACTIONS(540), + [anon_sym_CARET_RBRACE] = ACTIONS(49), + [anon_sym_LBRACE_TILDE] = ACTIONS(312), + [anon_sym_TILDE] = ACTIONS(312), + [anon_sym_LBRACK_CARET] = ACTIONS(315), + [anon_sym_BANG_LBRACK] = ACTIONS(318), + [anon_sym_LBRACK] = ACTIONS(321), + [anon_sym_LBRACE2] = ACTIONS(294), + [anon_sym_DOLLAR] = ACTIONS(324), + [anon_sym_TODO] = ACTIONS(327), + [anon_sym_WIP] = ACTIONS(327), + [anon_sym_NOTE] = ACTIONS(330), + [anon_sym_INFO] = ACTIONS(330), + [anon_sym_XXX] = ACTIONS(330), + [sym_fixme] = ACTIONS(291), + [anon_sym_PIPE] = ACTIONS(291), + [anon_sym_BQUOTE] = ACTIONS(112), + [sym__whitespace1] = ACTIONS(333), + [sym__newline] = ACTIONS(336), + [aux_sym__text_token1] = ACTIONS(339), + }, + [58] = { + [sym__inline] = STATE(729), + [sym__element] = STATE(96), + [sym_emphasis] = STATE(182), + [sym_emphasis_begin] = STATE(103), + [sym_strong] = STATE(182), + [sym_strong_begin] = STATE(104), + [sym__hard_line_break] = STATE(182), + [sym_hard_line_break] = STATE(182), + [sym__smart_punctuation] = STATE(182), + [sym_autolink] = STATE(182), + [sym_highlighted] = STATE(182), + [sym_insert] = STATE(182), + [sym_delete] = STATE(182), + [sym_superscript] = STATE(182), + [sym_subscript] = STATE(182), + [sym_footnote_reference] = STATE(182), + [sym__image] = STATE(182), + [sym_full_reference_image] = STATE(182), + [sym_collapsed_reference_image] = STATE(182), + [sym_inline_image] = STATE(182), + [sym__image_description] = STATE(672), + [sym__link] = STATE(182), + [sym_full_reference_link] = STATE(182), + [sym_collapsed_reference_link] = STATE(182), + [sym_inline_link] = STATE(182), + [sym_link_text] = STATE(671), + [sym__comment_with_spaces] = STATE(182), + [sym_span] = STATE(182), + [sym_raw_inline] = STATE(182), + [sym_math] = STATE(182), + [sym_verbatim] = STATE(182), + [sym__todo_highlights] = STATE(182), + [sym_todo] = STATE(182), + [sym_note] = STATE(182), + [sym__symbol_fallback] = STATE(182), + [sym__verbatim_begin] = STATE(870), + [aux_sym__text] = STATE(150), + [aux_sym__inline_repeat1] = STATE(96), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE_] = ACTIONS(141), + [anon_sym__] = ACTIONS(144), + [anon_sym_LBRACE_STAR] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(150), + [anon_sym_BSLASH] = ACTIONS(153), + [sym_quotation_marks] = ACTIONS(156), + [sym_ellipsis] = ACTIONS(156), + [sym_em_dash] = ACTIONS(156), + [sym_en_dash] = ACTIONS(159), + [sym_backslash_escape] = ACTIONS(159), + [anon_sym_LT] = ACTIONS(162), + [anon_sym_LBRACE_EQ] = ACTIONS(165), + [anon_sym_LBRACE_PLUS] = ACTIONS(168), + [anon_sym_LBRACE_DASH] = ACTIONS(171), + [sym_symbol] = ACTIONS(156), + [anon_sym_LBRACE_CARET] = ACTIONS(174), + [anon_sym_CARET] = ACTIONS(174), + [anon_sym_LBRACE_TILDE] = ACTIONS(177), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_LBRACK_CARET] = ACTIONS(183), + [anon_sym_BANG_LBRACK] = ACTIONS(186), + [anon_sym_LBRACK] = ACTIONS(189), + [anon_sym_RBRACK2] = ACTIONS(49), + [anon_sym_LBRACE2] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(192), + [anon_sym_TODO] = ACTIONS(195), + [anon_sym_WIP] = ACTIONS(195), + [anon_sym_NOTE] = ACTIONS(198), + [anon_sym_INFO] = ACTIONS(198), + [anon_sym_XXX] = ACTIONS(198), + [sym_fixme] = ACTIONS(156), + [anon_sym_PIPE] = ACTIONS(156), + [anon_sym_BQUOTE] = ACTIONS(112), + [sym__whitespace1] = ACTIONS(201), + [sym__newline] = ACTIONS(204), + [aux_sym__text_token1] = ACTIONS(207), + }, + [59] = { + [sym__inline] = STATE(730), + [sym__element] = STATE(84), + [sym_emphasis] = STATE(197), + [sym_emphasis_begin] = STATE(97), + [sym_strong] = STATE(197), + [sym_strong_begin] = STATE(100), + [sym__hard_line_break] = STATE(197), + [sym_hard_line_break] = STATE(197), + [sym__smart_punctuation] = STATE(197), + [sym_autolink] = STATE(197), + [sym_highlighted] = STATE(197), + [sym_insert] = STATE(197), + [sym_delete] = STATE(197), + [sym_superscript] = STATE(197), + [sym_subscript] = STATE(197), + [sym_footnote_reference] = STATE(197), + [sym__image] = STATE(197), + [sym_full_reference_image] = STATE(197), + [sym_collapsed_reference_image] = STATE(197), + [sym_inline_image] = STATE(197), + [sym__image_description] = STATE(676), + [sym__link] = STATE(197), + [sym_full_reference_link] = STATE(197), + [sym_collapsed_reference_link] = STATE(197), + [sym_inline_link] = STATE(197), + [sym_link_text] = STATE(677), + [sym__comment_with_spaces] = STATE(197), + [sym_span] = STATE(197), + [sym_raw_inline] = STATE(197), + [sym_math] = STATE(197), + [sym_verbatim] = STATE(197), + [sym__todo_highlights] = STATE(197), + [sym_todo] = STATE(197), + [sym_note] = STATE(197), + [sym__symbol_fallback] = STATE(197), + [sym__verbatim_begin] = STATE(861), + [aux_sym__text] = STATE(159), + [aux_sym__inline_repeat1] = STATE(84), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE_] = ACTIONS(276), + [anon_sym__] = ACTIONS(279), + [anon_sym_LBRACE_STAR] = ACTIONS(282), + [anon_sym_STAR] = ACTIONS(285), + [anon_sym_BSLASH] = ACTIONS(288), + [sym_quotation_marks] = ACTIONS(291), + [sym_ellipsis] = ACTIONS(291), + [sym_em_dash] = ACTIONS(291), + [sym_en_dash] = ACTIONS(294), + [sym_backslash_escape] = ACTIONS(294), + [anon_sym_LT] = ACTIONS(297), + [anon_sym_LBRACE_EQ] = ACTIONS(300), + [anon_sym_LBRACE_PLUS] = ACTIONS(303), + [anon_sym_LBRACE_DASH] = ACTIONS(306), + [sym_symbol] = ACTIONS(291), + [anon_sym_LBRACE_CARET] = ACTIONS(309), + [anon_sym_CARET] = ACTIONS(309), + [anon_sym_LBRACE_TILDE] = ACTIONS(312), + [anon_sym_TILDE] = ACTIONS(312), + [anon_sym_LBRACK_CARET] = ACTIONS(315), + [anon_sym_BANG_LBRACK] = ACTIONS(318), + [anon_sym_LBRACK] = ACTIONS(321), + [anon_sym_RBRACK2] = ACTIONS(49), + [anon_sym_LBRACE2] = ACTIONS(294), + [anon_sym_DOLLAR] = ACTIONS(324), + [anon_sym_TODO] = ACTIONS(327), + [anon_sym_WIP] = ACTIONS(327), + [anon_sym_NOTE] = ACTIONS(330), + [anon_sym_INFO] = ACTIONS(330), + [anon_sym_XXX] = ACTIONS(330), + [sym_fixme] = ACTIONS(291), + [anon_sym_PIPE] = ACTIONS(291), + [anon_sym_BQUOTE] = ACTIONS(112), + [sym__whitespace1] = ACTIONS(333), + [sym__newline] = ACTIONS(336), + [aux_sym__text_token1] = ACTIONS(339), + }, + [60] = { + [sym__inline] = STATE(798), + [sym__element] = STATE(98), + [sym_emphasis] = STATE(207), + [sym_emphasis_begin] = STATE(89), + [sym_strong] = STATE(207), + [sym_strong_begin] = STATE(72), + [sym__hard_line_break] = STATE(207), + [sym_hard_line_break] = STATE(207), + [sym__smart_punctuation] = STATE(207), + [sym_autolink] = STATE(207), + [sym_highlighted] = STATE(207), + [sym_insert] = STATE(207), + [sym_delete] = STATE(207), + [sym_superscript] = STATE(207), + [sym_subscript] = STATE(207), + [sym_footnote_reference] = STATE(207), + [sym__image] = STATE(207), + [sym_full_reference_image] = STATE(207), + [sym_collapsed_reference_image] = STATE(207), + [sym_inline_image] = STATE(207), + [sym__image_description] = STATE(666), + [sym__link] = STATE(207), + [sym_full_reference_link] = STATE(207), + [sym_collapsed_reference_link] = STATE(207), + [sym_inline_link] = STATE(207), + [sym_link_text] = STATE(667), + [sym__comment_with_spaces] = STATE(207), + [sym_span] = STATE(207), + [sym_raw_inline] = STATE(207), + [sym_math] = STATE(207), + [sym_verbatim] = STATE(207), + [sym__todo_highlights] = STATE(207), + [sym_todo] = STATE(207), + [sym_note] = STATE(207), + [sym__symbol_fallback] = STATE(207), + [sym__verbatim_begin] = STATE(852), + [aux_sym__text] = STATE(139), + [aux_sym__inline_repeat1] = STATE(98), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE_] = ACTIONS(210), + [anon_sym__] = ACTIONS(213), + [anon_sym_LBRACE_STAR] = ACTIONS(216), + [anon_sym_STAR] = ACTIONS(219), + [anon_sym_BSLASH] = ACTIONS(222), + [sym_quotation_marks] = ACTIONS(225), + [sym_ellipsis] = ACTIONS(225), + [sym_em_dash] = ACTIONS(225), + [sym_en_dash] = ACTIONS(228), + [sym_backslash_escape] = ACTIONS(228), + [anon_sym_LT] = ACTIONS(231), + [anon_sym_LBRACE_EQ] = ACTIONS(234), + [anon_sym_LBRACE_PLUS] = ACTIONS(237), + [anon_sym_LBRACE_DASH] = ACTIONS(240), + [sym_symbol] = ACTIONS(225), + [anon_sym_LBRACE_CARET] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(243), + [anon_sym_LBRACE_TILDE] = ACTIONS(246), + [anon_sym_TILDE] = ACTIONS(246), + [anon_sym_LBRACK_CARET] = ACTIONS(249), + [anon_sym_BANG_LBRACK] = ACTIONS(252), + [anon_sym_LBRACK] = ACTIONS(255), + [anon_sym_RBRACK2] = ACTIONS(49), + [anon_sym_LBRACE2] = ACTIONS(228), + [anon_sym_DOLLAR] = ACTIONS(258), + [anon_sym_TODO] = ACTIONS(261), + [anon_sym_WIP] = ACTIONS(261), + [anon_sym_NOTE] = ACTIONS(264), + [anon_sym_INFO] = ACTIONS(264), + [anon_sym_XXX] = ACTIONS(264), + [sym_fixme] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(225), + [anon_sym_BQUOTE] = ACTIONS(112), + [sym__whitespace1] = ACTIONS(267), + [sym__newline] = ACTIONS(270), + [aux_sym__text_token1] = ACTIONS(273), + }, + [61] = { + [sym__inline] = STATE(721), + [sym__element] = STATE(96), + [sym_emphasis] = STATE(182), + [sym_emphasis_begin] = STATE(103), + [sym_strong] = STATE(182), + [sym_strong_begin] = STATE(104), + [sym__hard_line_break] = STATE(182), + [sym_hard_line_break] = STATE(182), + [sym__smart_punctuation] = STATE(182), + [sym_autolink] = STATE(182), + [sym_highlighted] = STATE(182), + [sym_insert] = STATE(182), + [sym_delete] = STATE(182), + [sym_superscript] = STATE(182), + [sym_subscript] = STATE(182), + [sym_footnote_reference] = STATE(182), + [sym__image] = STATE(182), + [sym_full_reference_image] = STATE(182), + [sym_collapsed_reference_image] = STATE(182), + [sym_inline_image] = STATE(182), + [sym__image_description] = STATE(672), + [sym__link] = STATE(182), + [sym_full_reference_link] = STATE(182), + [sym_collapsed_reference_link] = STATE(182), + [sym_inline_link] = STATE(182), + [sym_link_text] = STATE(671), + [sym__comment_with_spaces] = STATE(182), + [sym_span] = STATE(182), + [sym_raw_inline] = STATE(182), + [sym_math] = STATE(182), + [sym_verbatim] = STATE(182), + [sym__todo_highlights] = STATE(182), + [sym_todo] = STATE(182), + [sym_note] = STATE(182), + [sym__symbol_fallback] = STATE(182), + [sym__verbatim_begin] = STATE(870), + [aux_sym__text] = STATE(150), + [aux_sym__inline_repeat1] = STATE(96), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE_] = ACTIONS(141), + [anon_sym__] = ACTIONS(144), + [anon_sym_LBRACE_STAR] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(150), + [anon_sym_BSLASH] = ACTIONS(153), + [sym_quotation_marks] = ACTIONS(156), + [sym_ellipsis] = ACTIONS(156), + [sym_em_dash] = ACTIONS(156), + [sym_en_dash] = ACTIONS(159), + [sym_backslash_escape] = ACTIONS(159), + [anon_sym_LT] = ACTIONS(162), + [anon_sym_LBRACE_EQ] = ACTIONS(165), + [anon_sym_LBRACE_PLUS] = ACTIONS(168), + [anon_sym_LBRACE_DASH] = ACTIONS(171), + [sym_symbol] = ACTIONS(156), + [anon_sym_LBRACE_CARET] = ACTIONS(174), + [anon_sym_CARET] = ACTIONS(543), + [anon_sym_CARET_RBRACE] = ACTIONS(49), + [anon_sym_LBRACE_TILDE] = ACTIONS(177), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_LBRACK_CARET] = ACTIONS(183), + [anon_sym_BANG_LBRACK] = ACTIONS(186), + [anon_sym_LBRACK] = ACTIONS(189), + [anon_sym_LBRACE2] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(192), + [anon_sym_TODO] = ACTIONS(195), + [anon_sym_WIP] = ACTIONS(195), + [anon_sym_NOTE] = ACTIONS(198), + [anon_sym_INFO] = ACTIONS(198), + [anon_sym_XXX] = ACTIONS(198), + [sym_fixme] = ACTIONS(156), + [anon_sym_PIPE] = ACTIONS(156), + [anon_sym_BQUOTE] = ACTIONS(112), + [sym__whitespace1] = ACTIONS(201), + [sym__newline] = ACTIONS(204), + [aux_sym__text_token1] = ACTIONS(207), + }, + [62] = { + [sym__inline] = STATE(898), + [sym__element] = STATE(112), + [sym_emphasis] = STATE(206), + [sym_emphasis_begin] = STATE(108), + [sym_strong] = STATE(206), + [sym_strong_begin] = STATE(110), + [sym__hard_line_break] = STATE(206), + [sym_hard_line_break] = STATE(206), + [sym__smart_punctuation] = STATE(206), + [sym_autolink] = STATE(206), + [sym_highlighted] = STATE(206), + [sym_insert] = STATE(206), + [sym_delete] = STATE(206), + [sym_superscript] = STATE(206), + [sym_subscript] = STATE(206), + [sym_footnote_reference] = STATE(206), + [sym__image] = STATE(206), + [sym_full_reference_image] = STATE(206), + [sym_collapsed_reference_image] = STATE(206), + [sym_inline_image] = STATE(206), + [sym__image_description] = STATE(664), + [sym__link] = STATE(206), + [sym_full_reference_link] = STATE(206), + [sym_collapsed_reference_link] = STATE(206), + [sym_inline_link] = STATE(206), + [sym_link_text] = STATE(663), + [sym__comment_with_spaces] = STATE(206), + [sym_span] = STATE(206), + [sym_raw_inline] = STATE(206), + [sym_math] = STATE(206), + [sym_verbatim] = STATE(206), + [sym__todo_highlights] = STATE(206), + [sym_todo] = STATE(206), + [sym_note] = STATE(206), + [sym__symbol_fallback] = STATE(206), + [sym__verbatim_begin] = STATE(879), + [aux_sym__text] = STATE(126), + [aux_sym__inline_repeat1] = STATE(112), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE_] = ACTIONS(53), + [anon_sym__] = ACTIONS(56), + [anon_sym_LBRACE_STAR] = ACTIONS(59), + [anon_sym_STAR] = ACTIONS(133), + [aux_sym_strong_end_token1] = ACTIONS(49), + [anon_sym_BSLASH] = ACTIONS(65), + [sym_quotation_marks] = ACTIONS(68), + [sym_ellipsis] = ACTIONS(68), + [sym_em_dash] = ACTIONS(68), + [sym_en_dash] = ACTIONS(71), + [sym_backslash_escape] = ACTIONS(71), + [anon_sym_LT] = ACTIONS(74), + [anon_sym_LBRACE_EQ] = ACTIONS(77), + [anon_sym_LBRACE_PLUS] = ACTIONS(80), + [anon_sym_LBRACE_DASH] = ACTIONS(83), + [sym_symbol] = ACTIONS(68), + [anon_sym_LBRACE_CARET] = ACTIONS(86), + [anon_sym_CARET] = ACTIONS(86), + [anon_sym_LBRACE_TILDE] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(89), + [anon_sym_LBRACK_CARET] = ACTIONS(92), + [anon_sym_BANG_LBRACK] = ACTIONS(97), + [anon_sym_LBRACK] = ACTIONS(100), + [anon_sym_LBRACE2] = ACTIONS(71), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_TODO] = ACTIONS(106), + [anon_sym_WIP] = ACTIONS(106), + [anon_sym_NOTE] = ACTIONS(109), + [anon_sym_INFO] = ACTIONS(109), + [anon_sym_XXX] = ACTIONS(109), + [sym_fixme] = ACTIONS(68), + [anon_sym_PIPE] = ACTIONS(68), + [anon_sym_BQUOTE] = ACTIONS(112), + [sym__whitespace1] = ACTIONS(127), + [sym__newline] = ACTIONS(118), + [aux_sym__text_token1] = ACTIONS(121), + }, + [63] = { + [sym__inline] = STATE(797), + [sym__element] = STATE(101), + [sym_emphasis] = STATE(173), + [sym_emphasis_begin] = STATE(87), + [sym_strong] = STATE(173), + [sym_strong_begin] = STATE(76), + [sym__hard_line_break] = STATE(173), + [sym_hard_line_break] = STATE(173), + [sym__smart_punctuation] = STATE(173), + [sym_autolink] = STATE(173), + [sym_highlighted] = STATE(173), + [sym_insert] = STATE(173), + [sym_delete] = STATE(173), + [sym_superscript] = STATE(173), + [sym_subscript] = STATE(173), + [sym_footnote_reference] = STATE(173), + [sym__image] = STATE(173), + [sym_full_reference_image] = STATE(173), + [sym_collapsed_reference_image] = STATE(173), + [sym_inline_image] = STATE(173), + [sym__image_description] = STATE(647), + [sym__link] = STATE(173), + [sym_full_reference_link] = STATE(173), + [sym_collapsed_reference_link] = STATE(173), + [sym_inline_link] = STATE(173), + [sym_link_text] = STATE(648), + [sym__comment_with_spaces] = STATE(173), + [sym_span] = STATE(173), + [sym_raw_inline] = STATE(173), + [sym_math] = STATE(173), + [sym_verbatim] = STATE(173), + [sym__todo_highlights] = STATE(173), + [sym_todo] = STATE(173), + [sym_note] = STATE(173), + [sym__symbol_fallback] = STATE(173), + [sym__verbatim_begin] = STATE(843), + [aux_sym__text] = STATE(155), + [aux_sym__inline_repeat1] = STATE(101), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE_] = ACTIONS(342), + [anon_sym__] = ACTIONS(345), + [anon_sym_LBRACE_STAR] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(351), + [anon_sym_BSLASH] = ACTIONS(354), + [sym_quotation_marks] = ACTIONS(357), + [sym_ellipsis] = ACTIONS(357), + [sym_em_dash] = ACTIONS(357), + [sym_en_dash] = ACTIONS(360), + [sym_backslash_escape] = ACTIONS(360), + [anon_sym_LT] = ACTIONS(363), + [anon_sym_LBRACE_EQ] = ACTIONS(366), + [anon_sym_LBRACE_PLUS] = ACTIONS(369), + [anon_sym_LBRACE_DASH] = ACTIONS(372), + [sym_symbol] = ACTIONS(357), + [anon_sym_LBRACE_CARET] = ACTIONS(375), + [anon_sym_CARET] = ACTIONS(375), + [anon_sym_LBRACE_TILDE] = ACTIONS(378), + [anon_sym_TILDE] = ACTIONS(378), + [anon_sym_LBRACK_CARET] = ACTIONS(381), + [anon_sym_BANG_LBRACK] = ACTIONS(384), + [anon_sym_LBRACK] = ACTIONS(387), + [anon_sym_RBRACK2] = ACTIONS(49), + [anon_sym_LBRACE2] = ACTIONS(360), + [anon_sym_DOLLAR] = ACTIONS(390), + [anon_sym_TODO] = ACTIONS(393), + [anon_sym_WIP] = ACTIONS(393), + [anon_sym_NOTE] = ACTIONS(396), + [anon_sym_INFO] = ACTIONS(396), + [anon_sym_XXX] = ACTIONS(396), + [sym_fixme] = ACTIONS(357), + [anon_sym_PIPE] = ACTIONS(357), + [anon_sym_BQUOTE] = ACTIONS(112), + [sym__whitespace1] = ACTIONS(399), + [sym__newline] = ACTIONS(402), + [aux_sym__text_token1] = ACTIONS(405), + }, + [64] = { + [sym__inline] = STATE(753), + [sym__element] = STATE(109), + [sym_emphasis] = STATE(221), + [sym_emphasis_begin] = STATE(82), + [sym_strong] = STATE(221), + [sym_strong_begin] = STATE(83), + [sym__hard_line_break] = STATE(221), + [sym_hard_line_break] = STATE(221), + [sym__smart_punctuation] = STATE(221), + [sym_autolink] = STATE(221), + [sym_highlighted] = STATE(221), + [sym_insert] = STATE(221), + [sym_delete] = STATE(221), + [sym_superscript] = STATE(221), + [sym_subscript] = STATE(221), + [sym_footnote_reference] = STATE(221), + [sym__image] = STATE(221), + [sym_full_reference_image] = STATE(221), + [sym_collapsed_reference_image] = STATE(221), + [sym_inline_image] = STATE(221), + [sym__image_description] = STATE(669), + [sym__link] = STATE(221), + [sym_full_reference_link] = STATE(221), + [sym_collapsed_reference_link] = STATE(221), + [sym_inline_link] = STATE(221), + [sym_link_text] = STATE(657), + [sym__comment_with_spaces] = STATE(221), + [sym_span] = STATE(221), + [sym_raw_inline] = STATE(221), + [sym_math] = STATE(221), + [sym_verbatim] = STATE(221), + [sym__todo_highlights] = STATE(221), + [sym_todo] = STATE(221), + [sym_note] = STATE(221), + [sym__symbol_fallback] = STATE(221), + [sym__verbatim_begin] = STATE(834), + [aux_sym__text] = STATE(134), + [aux_sym__inline_repeat1] = STATE(109), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE_] = ACTIONS(408), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_STAR] = ACTIONS(414), + [anon_sym_STAR] = ACTIONS(417), + [anon_sym_BSLASH] = ACTIONS(420), + [sym_quotation_marks] = ACTIONS(423), + [sym_ellipsis] = ACTIONS(423), + [sym_em_dash] = ACTIONS(423), + [sym_en_dash] = ACTIONS(426), + [sym_backslash_escape] = ACTIONS(426), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_LBRACE_EQ] = ACTIONS(432), + [anon_sym_LBRACE_PLUS] = ACTIONS(435), + [anon_sym_LBRACE_DASH] = ACTIONS(438), + [sym_symbol] = ACTIONS(423), + [anon_sym_LBRACE_CARET] = ACTIONS(441), + [anon_sym_CARET] = ACTIONS(441), + [anon_sym_LBRACE_TILDE] = ACTIONS(444), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_LBRACK_CARET] = ACTIONS(447), + [anon_sym_BANG_LBRACK] = ACTIONS(450), + [anon_sym_LBRACK] = ACTIONS(453), + [anon_sym_RBRACK2] = ACTIONS(49), + [anon_sym_LBRACE2] = ACTIONS(426), + [anon_sym_DOLLAR] = ACTIONS(456), + [anon_sym_TODO] = ACTIONS(459), + [anon_sym_WIP] = ACTIONS(459), + [anon_sym_NOTE] = ACTIONS(462), + [anon_sym_INFO] = ACTIONS(462), + [anon_sym_XXX] = ACTIONS(462), + [sym_fixme] = ACTIONS(423), + [anon_sym_PIPE] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(112), + [sym__whitespace1] = ACTIONS(465), + [sym__newline] = ACTIONS(468), + [aux_sym__text_token1] = ACTIONS(471), + }, + [65] = { + [sym__inline] = STATE(856), + [sym__element] = STATE(101), + [sym_emphasis] = STATE(173), + [sym_emphasis_begin] = STATE(87), + [sym_strong] = STATE(173), + [sym_strong_begin] = STATE(76), + [sym__hard_line_break] = STATE(173), + [sym_hard_line_break] = STATE(173), + [sym__smart_punctuation] = STATE(173), + [sym_autolink] = STATE(173), + [sym_highlighted] = STATE(173), + [sym_insert] = STATE(173), + [sym_delete] = STATE(173), + [sym_superscript] = STATE(173), + [sym_subscript] = STATE(173), + [sym_footnote_reference] = STATE(173), + [sym__image] = STATE(173), + [sym_full_reference_image] = STATE(173), + [sym_collapsed_reference_image] = STATE(173), + [sym_inline_image] = STATE(173), + [sym__image_description] = STATE(647), + [sym__link] = STATE(173), + [sym_full_reference_link] = STATE(173), + [sym_collapsed_reference_link] = STATE(173), + [sym_inline_link] = STATE(173), + [sym_link_text] = STATE(648), + [sym__comment_with_spaces] = STATE(173), + [sym_span] = STATE(173), + [sym_raw_inline] = STATE(173), + [sym_math] = STATE(173), + [sym_verbatim] = STATE(173), + [sym__todo_highlights] = STATE(173), + [sym_todo] = STATE(173), + [sym_note] = STATE(173), + [sym__symbol_fallback] = STATE(173), + [sym__verbatim_begin] = STATE(843), + [aux_sym__text] = STATE(155), + [aux_sym__inline_repeat1] = STATE(101), + [ts_builtin_sym_end] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE_] = ACTIONS(342), + [anon_sym__] = ACTIONS(345), + [anon_sym_LBRACE_STAR] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(351), + [anon_sym_BSLASH] = ACTIONS(354), + [sym_quotation_marks] = ACTIONS(357), + [sym_ellipsis] = ACTIONS(357), + [sym_em_dash] = ACTIONS(357), + [sym_en_dash] = ACTIONS(360), + [sym_backslash_escape] = ACTIONS(360), + [anon_sym_LT] = ACTIONS(363), + [anon_sym_LBRACE_EQ] = ACTIONS(366), + [anon_sym_LBRACE_PLUS] = ACTIONS(369), + [anon_sym_LBRACE_DASH] = ACTIONS(372), + [sym_symbol] = ACTIONS(357), + [anon_sym_LBRACE_CARET] = ACTIONS(375), + [anon_sym_CARET] = ACTIONS(375), + [anon_sym_LBRACE_TILDE] = ACTIONS(378), + [anon_sym_TILDE] = ACTIONS(378), + [anon_sym_LBRACK_CARET] = ACTIONS(381), + [anon_sym_BANG_LBRACK] = ACTIONS(384), + [anon_sym_LBRACK] = ACTIONS(387), + [anon_sym_LBRACE2] = ACTIONS(360), + [anon_sym_DOLLAR] = ACTIONS(390), + [anon_sym_TODO] = ACTIONS(393), + [anon_sym_WIP] = ACTIONS(393), + [anon_sym_NOTE] = ACTIONS(396), + [anon_sym_INFO] = ACTIONS(396), + [anon_sym_XXX] = ACTIONS(396), + [sym_fixme] = ACTIONS(357), + [anon_sym_PIPE] = ACTIONS(357), + [anon_sym_BQUOTE] = ACTIONS(112), + [sym__whitespace1] = ACTIONS(399), + [sym__newline] = ACTIONS(402), + [aux_sym__text_token1] = ACTIONS(405), + }, + [66] = { + [sym__inline] = STATE(734), + [sym__element] = STATE(84), + [sym_emphasis] = STATE(197), + [sym_emphasis_begin] = STATE(97), + [sym_strong] = STATE(197), + [sym_strong_begin] = STATE(100), + [sym__hard_line_break] = STATE(197), + [sym_hard_line_break] = STATE(197), + [sym__smart_punctuation] = STATE(197), + [sym_autolink] = STATE(197), + [sym_highlighted] = STATE(197), + [sym_insert] = STATE(197), + [sym_delete] = STATE(197), + [sym_superscript] = STATE(197), + [sym_subscript] = STATE(197), + [sym_footnote_reference] = STATE(197), + [sym__image] = STATE(197), + [sym_full_reference_image] = STATE(197), + [sym_collapsed_reference_image] = STATE(197), + [sym_inline_image] = STATE(197), + [sym__image_description] = STATE(676), + [sym__link] = STATE(197), + [sym_full_reference_link] = STATE(197), + [sym_collapsed_reference_link] = STATE(197), + [sym_inline_link] = STATE(197), + [sym_link_text] = STATE(677), + [sym__comment_with_spaces] = STATE(197), + [sym_span] = STATE(197), + [sym_raw_inline] = STATE(197), + [sym_math] = STATE(197), + [sym_verbatim] = STATE(197), + [sym__todo_highlights] = STATE(197), + [sym_todo] = STATE(197), + [sym_note] = STATE(197), + [sym__symbol_fallback] = STATE(197), + [sym__verbatim_begin] = STATE(861), + [aux_sym__text] = STATE(159), + [aux_sym__inline_repeat1] = STATE(84), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE_] = ACTIONS(276), + [anon_sym__] = ACTIONS(546), + [aux_sym_emphasis_end_token1] = ACTIONS(49), + [anon_sym_LBRACE_STAR] = ACTIONS(282), + [anon_sym_STAR] = ACTIONS(285), + [anon_sym_BSLASH] = ACTIONS(288), + [sym_quotation_marks] = ACTIONS(291), + [sym_ellipsis] = ACTIONS(291), + [sym_em_dash] = ACTIONS(291), + [sym_en_dash] = ACTIONS(294), + [sym_backslash_escape] = ACTIONS(294), + [anon_sym_LT] = ACTIONS(297), + [anon_sym_LBRACE_EQ] = ACTIONS(300), + [anon_sym_LBRACE_PLUS] = ACTIONS(303), + [anon_sym_LBRACE_DASH] = ACTIONS(306), + [sym_symbol] = ACTIONS(291), + [anon_sym_LBRACE_CARET] = ACTIONS(309), + [anon_sym_CARET] = ACTIONS(309), + [anon_sym_LBRACE_TILDE] = ACTIONS(312), + [anon_sym_TILDE] = ACTIONS(312), + [anon_sym_LBRACK_CARET] = ACTIONS(315), + [anon_sym_BANG_LBRACK] = ACTIONS(318), + [anon_sym_LBRACK] = ACTIONS(321), + [anon_sym_LBRACE2] = ACTIONS(294), + [anon_sym_DOLLAR] = ACTIONS(324), + [anon_sym_TODO] = ACTIONS(327), + [anon_sym_WIP] = ACTIONS(327), + [anon_sym_NOTE] = ACTIONS(330), + [anon_sym_INFO] = ACTIONS(330), + [anon_sym_XXX] = ACTIONS(330), + [sym_fixme] = ACTIONS(291), + [anon_sym_PIPE] = ACTIONS(291), + [anon_sym_BQUOTE] = ACTIONS(112), + [sym__whitespace1] = ACTIONS(525), + [sym__newline] = ACTIONS(336), + [aux_sym__text_token1] = ACTIONS(339), + }, + [67] = { + [sym__inline] = STATE(779), + [sym__element] = STATE(101), + [sym_emphasis] = STATE(173), + [sym_emphasis_begin] = STATE(87), + [sym_strong] = STATE(173), + [sym_strong_begin] = STATE(76), + [sym__hard_line_break] = STATE(173), + [sym_hard_line_break] = STATE(173), + [sym__smart_punctuation] = STATE(173), + [sym_autolink] = STATE(173), + [sym_highlighted] = STATE(173), + [sym_insert] = STATE(173), + [sym_delete] = STATE(173), + [sym_superscript] = STATE(173), + [sym_subscript] = STATE(173), + [sym_footnote_reference] = STATE(173), + [sym__image] = STATE(173), + [sym_full_reference_image] = STATE(173), + [sym_collapsed_reference_image] = STATE(173), + [sym_inline_image] = STATE(173), + [sym__image_description] = STATE(647), + [sym__link] = STATE(173), + [sym_full_reference_link] = STATE(173), + [sym_collapsed_reference_link] = STATE(173), + [sym_inline_link] = STATE(173), + [sym_link_text] = STATE(648), + [sym__comment_with_spaces] = STATE(173), + [sym_span] = STATE(173), + [sym_raw_inline] = STATE(173), + [sym_math] = STATE(173), + [sym_verbatim] = STATE(173), + [sym__todo_highlights] = STATE(173), + [sym_todo] = STATE(173), + [sym_note] = STATE(173), + [sym__symbol_fallback] = STATE(173), + [sym__verbatim_begin] = STATE(843), + [aux_sym__text] = STATE(155), + [aux_sym__inline_repeat1] = STATE(101), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE_] = ACTIONS(342), + [anon_sym__] = ACTIONS(345), + [anon_sym_LBRACE_STAR] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(351), + [anon_sym_BSLASH] = ACTIONS(354), + [sym_quotation_marks] = ACTIONS(357), + [sym_ellipsis] = ACTIONS(357), + [sym_em_dash] = ACTIONS(357), + [sym_en_dash] = ACTIONS(360), + [sym_backslash_escape] = ACTIONS(360), + [anon_sym_LT] = ACTIONS(363), + [anon_sym_LBRACE_EQ] = ACTIONS(366), + [anon_sym_LBRACE_PLUS] = ACTIONS(369), + [anon_sym_PLUS_RBRACE] = ACTIONS(49), + [anon_sym_LBRACE_DASH] = ACTIONS(372), + [sym_symbol] = ACTIONS(357), + [anon_sym_LBRACE_CARET] = ACTIONS(375), + [anon_sym_CARET] = ACTIONS(375), + [anon_sym_LBRACE_TILDE] = ACTIONS(378), + [anon_sym_TILDE] = ACTIONS(378), + [anon_sym_LBRACK_CARET] = ACTIONS(381), + [anon_sym_BANG_LBRACK] = ACTIONS(384), + [anon_sym_LBRACK] = ACTIONS(387), + [anon_sym_LBRACE2] = ACTIONS(360), + [anon_sym_DOLLAR] = ACTIONS(390), + [anon_sym_TODO] = ACTIONS(393), + [anon_sym_WIP] = ACTIONS(393), + [anon_sym_NOTE] = ACTIONS(396), + [anon_sym_INFO] = ACTIONS(396), + [anon_sym_XXX] = ACTIONS(396), + [sym_fixme] = ACTIONS(357), + [anon_sym_PIPE] = ACTIONS(357), + [anon_sym_BQUOTE] = ACTIONS(112), + [sym__whitespace1] = ACTIONS(399), + [sym__newline] = ACTIONS(402), + [aux_sym__text_token1] = ACTIONS(405), + }, + [68] = { + [sym__inline] = STATE(844), + [sym__element] = STATE(112), + [sym_emphasis] = STATE(206), + [sym_emphasis_begin] = STATE(108), + [sym_strong] = STATE(206), + [sym_strong_begin] = STATE(110), + [sym__hard_line_break] = STATE(206), + [sym_hard_line_break] = STATE(206), + [sym__smart_punctuation] = STATE(206), + [sym_autolink] = STATE(206), + [sym_highlighted] = STATE(206), + [sym_insert] = STATE(206), + [sym_delete] = STATE(206), + [sym_superscript] = STATE(206), + [sym_subscript] = STATE(206), + [sym_footnote_reference] = STATE(206), + [sym__image] = STATE(206), + [sym_full_reference_image] = STATE(206), + [sym_collapsed_reference_image] = STATE(206), + [sym_inline_image] = STATE(206), + [sym__image_description] = STATE(664), + [sym__link] = STATE(206), + [sym_full_reference_link] = STATE(206), + [sym_collapsed_reference_link] = STATE(206), + [sym_inline_link] = STATE(206), + [sym_link_text] = STATE(663), + [sym__comment_with_spaces] = STATE(206), + [sym_span] = STATE(206), + [sym_raw_inline] = STATE(206), + [sym_math] = STATE(206), + [sym_verbatim] = STATE(206), + [sym__todo_highlights] = STATE(206), + [sym_todo] = STATE(206), + [sym_note] = STATE(206), + [sym__symbol_fallback] = STATE(206), + [sym__verbatim_begin] = STATE(879), + [aux_sym__text] = STATE(126), + [aux_sym__inline_repeat1] = STATE(112), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE_] = ACTIONS(53), + [anon_sym__] = ACTIONS(56), + [anon_sym_LBRACE_STAR] = ACTIONS(59), + [anon_sym_STAR] = ACTIONS(62), + [anon_sym_BSLASH] = ACTIONS(65), + [sym_quotation_marks] = ACTIONS(68), + [sym_ellipsis] = ACTIONS(68), + [sym_em_dash] = ACTIONS(68), + [sym_en_dash] = ACTIONS(71), + [sym_backslash_escape] = ACTIONS(71), + [anon_sym_LT] = ACTIONS(74), + [anon_sym_LBRACE_EQ] = ACTIONS(77), + [anon_sym_LBRACE_PLUS] = ACTIONS(80), + [anon_sym_PLUS_RBRACE] = ACTIONS(49), + [anon_sym_LBRACE_DASH] = ACTIONS(83), + [sym_symbol] = ACTIONS(68), + [anon_sym_LBRACE_CARET] = ACTIONS(86), + [anon_sym_CARET] = ACTIONS(86), + [anon_sym_LBRACE_TILDE] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(89), + [anon_sym_LBRACK_CARET] = ACTIONS(92), + [anon_sym_BANG_LBRACK] = ACTIONS(97), + [anon_sym_LBRACK] = ACTIONS(100), + [anon_sym_LBRACE2] = ACTIONS(71), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_TODO] = ACTIONS(106), + [anon_sym_WIP] = ACTIONS(106), + [anon_sym_NOTE] = ACTIONS(109), + [anon_sym_INFO] = ACTIONS(109), + [anon_sym_XXX] = ACTIONS(109), + [sym_fixme] = ACTIONS(68), + [anon_sym_PIPE] = ACTIONS(68), + [anon_sym_BQUOTE] = ACTIONS(112), + [sym__whitespace1] = ACTIONS(115), + [sym__newline] = ACTIONS(118), + [aux_sym__text_token1] = ACTIONS(121), + }, + [69] = { + [sym__inline] = STATE(859), + [sym__element] = STATE(109), + [sym_emphasis] = STATE(221), + [sym_emphasis_begin] = STATE(82), + [sym_strong] = STATE(221), + [sym_strong_begin] = STATE(83), + [sym__hard_line_break] = STATE(221), + [sym_hard_line_break] = STATE(221), + [sym__smart_punctuation] = STATE(221), + [sym_autolink] = STATE(221), + [sym_highlighted] = STATE(221), + [sym_insert] = STATE(221), + [sym_delete] = STATE(221), + [sym_superscript] = STATE(221), + [sym_subscript] = STATE(221), + [sym_footnote_reference] = STATE(221), + [sym__image] = STATE(221), + [sym_full_reference_image] = STATE(221), + [sym_collapsed_reference_image] = STATE(221), + [sym_inline_image] = STATE(221), + [sym__image_description] = STATE(669), + [sym__link] = STATE(221), + [sym_full_reference_link] = STATE(221), + [sym_collapsed_reference_link] = STATE(221), + [sym_inline_link] = STATE(221), + [sym_link_text] = STATE(657), + [sym__comment_with_spaces] = STATE(221), + [sym_span] = STATE(221), + [sym_raw_inline] = STATE(221), + [sym_math] = STATE(221), + [sym_verbatim] = STATE(221), + [sym__todo_highlights] = STATE(221), + [sym_todo] = STATE(221), + [sym_note] = STATE(221), + [sym__symbol_fallback] = STATE(221), + [sym__verbatim_begin] = STATE(834), + [aux_sym__text] = STATE(134), + [aux_sym__inline_repeat1] = STATE(109), + [ts_builtin_sym_end] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE_] = ACTIONS(408), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_STAR] = ACTIONS(414), + [anon_sym_STAR] = ACTIONS(417), + [anon_sym_BSLASH] = ACTIONS(420), + [sym_quotation_marks] = ACTIONS(423), + [sym_ellipsis] = ACTIONS(423), + [sym_em_dash] = ACTIONS(423), + [sym_en_dash] = ACTIONS(426), + [sym_backslash_escape] = ACTIONS(426), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_LBRACE_EQ] = ACTIONS(432), + [anon_sym_LBRACE_PLUS] = ACTIONS(435), + [anon_sym_LBRACE_DASH] = ACTIONS(438), + [sym_symbol] = ACTIONS(423), + [anon_sym_LBRACE_CARET] = ACTIONS(441), + [anon_sym_CARET] = ACTIONS(441), + [anon_sym_LBRACE_TILDE] = ACTIONS(444), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_LBRACK_CARET] = ACTIONS(447), + [anon_sym_BANG_LBRACK] = ACTIONS(450), + [anon_sym_LBRACK] = ACTIONS(453), + [anon_sym_LBRACE2] = ACTIONS(426), + [anon_sym_DOLLAR] = ACTIONS(456), + [anon_sym_TODO] = ACTIONS(459), + [anon_sym_WIP] = ACTIONS(459), + [anon_sym_NOTE] = ACTIONS(462), + [anon_sym_INFO] = ACTIONS(462), + [anon_sym_XXX] = ACTIONS(462), + [sym_fixme] = ACTIONS(423), + [anon_sym_PIPE] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(112), + [sym__whitespace1] = ACTIONS(465), + [sym__newline] = ACTIONS(468), + [aux_sym__text_token1] = ACTIONS(471), + }, + [70] = { + [sym__inline] = STATE(747), + [sym__element] = STATE(96), + [sym_emphasis] = STATE(182), + [sym_emphasis_begin] = STATE(103), + [sym_strong] = STATE(182), + [sym_strong_begin] = STATE(104), + [sym__hard_line_break] = STATE(182), + [sym_hard_line_break] = STATE(182), + [sym__smart_punctuation] = STATE(182), + [sym_autolink] = STATE(182), + [sym_highlighted] = STATE(182), + [sym_insert] = STATE(182), + [sym_delete] = STATE(182), + [sym_superscript] = STATE(182), + [sym_subscript] = STATE(182), + [sym_footnote_reference] = STATE(182), + [sym__image] = STATE(182), + [sym_full_reference_image] = STATE(182), + [sym_collapsed_reference_image] = STATE(182), + [sym_inline_image] = STATE(182), + [sym__image_description] = STATE(672), + [sym__link] = STATE(182), + [sym_full_reference_link] = STATE(182), + [sym_collapsed_reference_link] = STATE(182), + [sym_inline_link] = STATE(182), + [sym_link_text] = STATE(671), + [sym__comment_with_spaces] = STATE(182), + [sym_span] = STATE(182), + [sym_raw_inline] = STATE(182), + [sym_math] = STATE(182), + [sym_verbatim] = STATE(182), + [sym__todo_highlights] = STATE(182), + [sym_todo] = STATE(182), + [sym_note] = STATE(182), + [sym__symbol_fallback] = STATE(182), + [sym__verbatim_begin] = STATE(870), + [aux_sym__text] = STATE(150), + [aux_sym__inline_repeat1] = STATE(96), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE_] = ACTIONS(141), + [anon_sym__] = ACTIONS(144), + [anon_sym_LBRACE_STAR] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(150), + [anon_sym_BSLASH] = ACTIONS(153), + [sym_quotation_marks] = ACTIONS(156), + [sym_ellipsis] = ACTIONS(156), + [sym_em_dash] = ACTIONS(156), + [sym_en_dash] = ACTIONS(159), + [sym_backslash_escape] = ACTIONS(159), + [anon_sym_LT] = ACTIONS(162), + [anon_sym_LBRACE_EQ] = ACTIONS(165), + [anon_sym_LBRACE_PLUS] = ACTIONS(168), + [anon_sym_PLUS_RBRACE] = ACTIONS(49), + [anon_sym_LBRACE_DASH] = ACTIONS(171), + [sym_symbol] = ACTIONS(156), + [anon_sym_LBRACE_CARET] = ACTIONS(174), + [anon_sym_CARET] = ACTIONS(174), + [anon_sym_LBRACE_TILDE] = ACTIONS(177), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_LBRACK_CARET] = ACTIONS(183), + [anon_sym_BANG_LBRACK] = ACTIONS(186), + [anon_sym_LBRACK] = ACTIONS(189), + [anon_sym_LBRACE2] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(192), + [anon_sym_TODO] = ACTIONS(195), + [anon_sym_WIP] = ACTIONS(195), + [anon_sym_NOTE] = ACTIONS(198), + [anon_sym_INFO] = ACTIONS(198), + [anon_sym_XXX] = ACTIONS(198), + [sym_fixme] = ACTIONS(156), + [anon_sym_PIPE] = ACTIONS(156), + [anon_sym_BQUOTE] = ACTIONS(112), + [sym__whitespace1] = ACTIONS(201), + [sym__newline] = ACTIONS(204), + [aux_sym__text_token1] = ACTIONS(207), + }, + [71] = { + [sym__inline] = STATE(738), + [sym__element] = STATE(84), + [sym_emphasis] = STATE(197), + [sym_emphasis_begin] = STATE(97), + [sym_strong] = STATE(197), + [sym_strong_begin] = STATE(100), + [sym__hard_line_break] = STATE(197), + [sym_hard_line_break] = STATE(197), + [sym__smart_punctuation] = STATE(197), + [sym_autolink] = STATE(197), + [sym_highlighted] = STATE(197), + [sym_insert] = STATE(197), + [sym_delete] = STATE(197), + [sym_superscript] = STATE(197), + [sym_subscript] = STATE(197), + [sym_footnote_reference] = STATE(197), + [sym__image] = STATE(197), + [sym_full_reference_image] = STATE(197), + [sym_collapsed_reference_image] = STATE(197), + [sym_inline_image] = STATE(197), + [sym__image_description] = STATE(676), + [sym__link] = STATE(197), + [sym_full_reference_link] = STATE(197), + [sym_collapsed_reference_link] = STATE(197), + [sym_inline_link] = STATE(197), + [sym_link_text] = STATE(677), + [sym__comment_with_spaces] = STATE(197), + [sym_span] = STATE(197), + [sym_raw_inline] = STATE(197), + [sym_math] = STATE(197), + [sym_verbatim] = STATE(197), + [sym__todo_highlights] = STATE(197), + [sym_todo] = STATE(197), + [sym_note] = STATE(197), + [sym__symbol_fallback] = STATE(197), + [sym__verbatim_begin] = STATE(861), + [aux_sym__text] = STATE(159), + [aux_sym__inline_repeat1] = STATE(84), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE_] = ACTIONS(276), + [anon_sym__] = ACTIONS(279), + [anon_sym_LBRACE_STAR] = ACTIONS(282), + [anon_sym_STAR] = ACTIONS(285), + [anon_sym_BSLASH] = ACTIONS(288), + [sym_quotation_marks] = ACTIONS(291), + [sym_ellipsis] = ACTIONS(291), + [sym_em_dash] = ACTIONS(291), + [sym_en_dash] = ACTIONS(294), + [sym_backslash_escape] = ACTIONS(294), + [anon_sym_LT] = ACTIONS(297), + [anon_sym_LBRACE_EQ] = ACTIONS(300), + [anon_sym_LBRACE_PLUS] = ACTIONS(303), + [anon_sym_PLUS_RBRACE] = ACTIONS(49), + [anon_sym_LBRACE_DASH] = ACTIONS(306), + [sym_symbol] = ACTIONS(291), + [anon_sym_LBRACE_CARET] = ACTIONS(309), + [anon_sym_CARET] = ACTIONS(309), + [anon_sym_LBRACE_TILDE] = ACTIONS(312), + [anon_sym_TILDE] = ACTIONS(312), + [anon_sym_LBRACK_CARET] = ACTIONS(315), + [anon_sym_BANG_LBRACK] = ACTIONS(318), + [anon_sym_LBRACK] = ACTIONS(321), + [anon_sym_LBRACE2] = ACTIONS(294), + [anon_sym_DOLLAR] = ACTIONS(324), + [anon_sym_TODO] = ACTIONS(327), + [anon_sym_WIP] = ACTIONS(327), + [anon_sym_NOTE] = ACTIONS(330), + [anon_sym_INFO] = ACTIONS(330), + [anon_sym_XXX] = ACTIONS(330), + [sym_fixme] = ACTIONS(291), + [anon_sym_PIPE] = ACTIONS(291), + [anon_sym_BQUOTE] = ACTIONS(112), + [sym__whitespace1] = ACTIONS(333), + [sym__newline] = ACTIONS(336), + [aux_sym__text_token1] = ACTIONS(339), + }, + [72] = { + [sym__inline] = STATE(682), + [sym__element] = STATE(73), + [sym_emphasis] = STATE(178), + [sym_emphasis_begin] = STATE(119), + [sym_strong] = STATE(178), + [sym_strong_begin] = STATE(121), + [sym__hard_line_break] = STATE(178), + [sym_hard_line_break] = STATE(178), + [sym__smart_punctuation] = STATE(178), + [sym_autolink] = STATE(178), + [sym_highlighted] = STATE(178), + [sym_insert] = STATE(178), + [sym_delete] = STATE(178), + [sym_superscript] = STATE(178), + [sym_subscript] = STATE(178), + [sym_footnote_reference] = STATE(178), + [sym__image] = STATE(178), + [sym_full_reference_image] = STATE(178), + [sym_collapsed_reference_image] = STATE(178), + [sym_inline_image] = STATE(178), + [sym__image_description] = STATE(651), + [sym__link] = STATE(178), + [sym_full_reference_link] = STATE(178), + [sym_collapsed_reference_link] = STATE(178), + [sym_inline_link] = STATE(178), + [sym_link_text] = STATE(650), + [sym__comment_with_spaces] = STATE(178), + [sym_span] = STATE(178), + [sym_raw_inline] = STATE(178), + [sym_math] = STATE(178), + [sym_verbatim] = STATE(178), + [sym__todo_highlights] = STATE(178), + [sym_todo] = STATE(178), + [sym_note] = STATE(178), + [sym__symbol_fallback] = STATE(178), + [sym__verbatim_begin] = STATE(897), + [aux_sym__text] = STATE(167), + [aux_sym__inline_repeat1] = STATE(73), + [anon_sym_LBRACE_] = ACTIONS(549), + [anon_sym__] = ACTIONS(551), + [anon_sym_LBRACE_STAR] = ACTIONS(553), + [anon_sym_STAR] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(557), + [sym_quotation_marks] = ACTIONS(559), + [sym_ellipsis] = ACTIONS(559), + [sym_em_dash] = ACTIONS(559), + [sym_en_dash] = ACTIONS(561), + [sym_backslash_escape] = ACTIONS(561), + [anon_sym_LT] = ACTIONS(563), + [anon_sym_LBRACE_EQ] = ACTIONS(565), + [anon_sym_LBRACE_PLUS] = ACTIONS(567), + [anon_sym_LBRACE_DASH] = ACTIONS(569), + [sym_symbol] = ACTIONS(559), + [anon_sym_LBRACE_CARET] = ACTIONS(571), + [anon_sym_CARET] = ACTIONS(571), + [anon_sym_LBRACE_TILDE] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(573), + [anon_sym_LBRACK_CARET] = ACTIONS(575), + [anon_sym_BANG_LBRACK] = ACTIONS(577), + [anon_sym_LBRACK] = ACTIONS(579), + [anon_sym_LBRACE2] = ACTIONS(561), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_TODO] = ACTIONS(583), + [anon_sym_WIP] = ACTIONS(583), + [anon_sym_NOTE] = ACTIONS(585), + [anon_sym_INFO] = ACTIONS(585), + [anon_sym_XXX] = ACTIONS(585), + [sym_fixme] = ACTIONS(559), + [anon_sym_PIPE] = ACTIONS(559), + [anon_sym_BQUOTE] = ACTIONS(41), + [sym__whitespace1] = ACTIONS(587), + [sym__newline] = ACTIONS(589), + [aux_sym__text_token1] = ACTIONS(591), + }, + [73] = { + [sym__element] = STATE(74), + [sym_emphasis] = STATE(178), + [sym_emphasis_begin] = STATE(119), + [sym_strong] = STATE(178), + [sym_strong_begin] = STATE(121), + [sym__hard_line_break] = STATE(178), + [sym_hard_line_break] = STATE(178), + [sym__smart_punctuation] = STATE(178), + [sym_autolink] = STATE(178), + [sym_highlighted] = STATE(178), + [sym_insert] = STATE(178), + [sym_delete] = STATE(178), + [sym_superscript] = STATE(178), + [sym_subscript] = STATE(178), + [sym_footnote_reference] = STATE(178), + [sym__image] = STATE(178), + [sym_full_reference_image] = STATE(178), + [sym_collapsed_reference_image] = STATE(178), + [sym_inline_image] = STATE(178), + [sym__image_description] = STATE(651), + [sym__link] = STATE(178), + [sym_full_reference_link] = STATE(178), + [sym_collapsed_reference_link] = STATE(178), + [sym_inline_link] = STATE(178), + [sym_link_text] = STATE(650), + [sym__comment_with_spaces] = STATE(178), + [sym_span] = STATE(178), + [sym_raw_inline] = STATE(178), + [sym_math] = STATE(178), + [sym_verbatim] = STATE(178), + [sym__todo_highlights] = STATE(178), + [sym_todo] = STATE(178), + [sym_note] = STATE(178), + [sym__symbol_fallback] = STATE(178), + [sym__verbatim_begin] = STATE(897), + [aux_sym__text] = STATE(167), + [aux_sym__inline_repeat1] = STATE(74), + [anon_sym_LBRACE_] = ACTIONS(549), + [anon_sym__] = ACTIONS(551), + [anon_sym_LBRACE_STAR] = ACTIONS(553), + [anon_sym_STAR] = ACTIONS(593), + [aux_sym_strong_end_token1] = ACTIONS(595), + [anon_sym_BSLASH] = ACTIONS(557), + [sym_quotation_marks] = ACTIONS(559), + [sym_ellipsis] = ACTIONS(559), + [sym_em_dash] = ACTIONS(559), + [sym_en_dash] = ACTIONS(561), + [sym_backslash_escape] = ACTIONS(561), + [anon_sym_LT] = ACTIONS(563), + [anon_sym_LBRACE_EQ] = ACTIONS(565), + [anon_sym_LBRACE_PLUS] = ACTIONS(567), + [anon_sym_LBRACE_DASH] = ACTIONS(569), + [sym_symbol] = ACTIONS(559), + [anon_sym_LBRACE_CARET] = ACTIONS(571), + [anon_sym_CARET] = ACTIONS(571), + [anon_sym_LBRACE_TILDE] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(573), + [anon_sym_LBRACK_CARET] = ACTIONS(575), + [anon_sym_BANG_LBRACK] = ACTIONS(577), + [anon_sym_LBRACK] = ACTIONS(579), + [anon_sym_LBRACE2] = ACTIONS(561), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_TODO] = ACTIONS(583), + [anon_sym_WIP] = ACTIONS(583), + [anon_sym_NOTE] = ACTIONS(585), + [anon_sym_INFO] = ACTIONS(585), + [anon_sym_XXX] = ACTIONS(585), + [sym_fixme] = ACTIONS(559), + [anon_sym_PIPE] = ACTIONS(559), + [anon_sym_BQUOTE] = ACTIONS(41), + [sym__whitespace1] = ACTIONS(597), + [sym__newline] = ACTIONS(599), + [aux_sym__text_token1] = ACTIONS(591), + }, + [74] = { + [sym__element] = STATE(74), + [sym_emphasis] = STATE(178), + [sym_emphasis_begin] = STATE(119), + [sym_strong] = STATE(178), + [sym_strong_begin] = STATE(121), + [sym__hard_line_break] = STATE(178), + [sym_hard_line_break] = STATE(178), + [sym__smart_punctuation] = STATE(178), + [sym_autolink] = STATE(178), + [sym_highlighted] = STATE(178), + [sym_insert] = STATE(178), + [sym_delete] = STATE(178), + [sym_superscript] = STATE(178), + [sym_subscript] = STATE(178), + [sym_footnote_reference] = STATE(178), + [sym__image] = STATE(178), + [sym_full_reference_image] = STATE(178), + [sym_collapsed_reference_image] = STATE(178), + [sym_inline_image] = STATE(178), + [sym__image_description] = STATE(651), + [sym__link] = STATE(178), + [sym_full_reference_link] = STATE(178), + [sym_collapsed_reference_link] = STATE(178), + [sym_inline_link] = STATE(178), + [sym_link_text] = STATE(650), + [sym__comment_with_spaces] = STATE(178), + [sym_span] = STATE(178), + [sym_raw_inline] = STATE(178), + [sym_math] = STATE(178), + [sym_verbatim] = STATE(178), + [sym__todo_highlights] = STATE(178), + [sym_todo] = STATE(178), + [sym_note] = STATE(178), + [sym__symbol_fallback] = STATE(178), + [sym__verbatim_begin] = STATE(897), + [aux_sym__text] = STATE(167), + [aux_sym__inline_repeat1] = STATE(74), + [anon_sym_LBRACE_] = ACTIONS(601), + [anon_sym__] = ACTIONS(604), + [anon_sym_LBRACE_STAR] = ACTIONS(607), + [anon_sym_STAR] = ACTIONS(610), + [aux_sym_strong_end_token1] = ACTIONS(613), + [anon_sym_BSLASH] = ACTIONS(615), + [sym_quotation_marks] = ACTIONS(618), + [sym_ellipsis] = ACTIONS(618), + [sym_em_dash] = ACTIONS(618), + [sym_en_dash] = ACTIONS(621), + [sym_backslash_escape] = ACTIONS(621), + [anon_sym_LT] = ACTIONS(624), + [anon_sym_LBRACE_EQ] = ACTIONS(627), + [anon_sym_LBRACE_PLUS] = ACTIONS(630), + [anon_sym_LBRACE_DASH] = ACTIONS(633), + [sym_symbol] = ACTIONS(618), + [anon_sym_LBRACE_CARET] = ACTIONS(636), + [anon_sym_CARET] = ACTIONS(636), + [anon_sym_LBRACE_TILDE] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_LBRACK_CARET] = ACTIONS(642), + [anon_sym_BANG_LBRACK] = ACTIONS(645), + [anon_sym_LBRACK] = ACTIONS(648), + [anon_sym_LBRACE2] = ACTIONS(621), + [anon_sym_DOLLAR] = ACTIONS(651), + [anon_sym_TODO] = ACTIONS(654), + [anon_sym_WIP] = ACTIONS(654), + [anon_sym_NOTE] = ACTIONS(657), + [anon_sym_INFO] = ACTIONS(657), + [anon_sym_XXX] = ACTIONS(657), + [sym_fixme] = ACTIONS(618), + [anon_sym_PIPE] = ACTIONS(618), + [anon_sym_BQUOTE] = ACTIONS(660), + [sym__whitespace1] = ACTIONS(663), + [sym__newline] = ACTIONS(666), + [aux_sym__text_token1] = ACTIONS(669), + }, + [75] = { + [sym__inline] = STATE(788), + [sym__element] = STATE(79), + [sym_emphasis] = STATE(189), + [sym_emphasis_begin] = STATE(92), + [sym_strong] = STATE(189), + [sym_strong_begin] = STATE(93), + [sym__hard_line_break] = STATE(189), + [sym_hard_line_break] = STATE(189), + [sym__smart_punctuation] = STATE(189), + [sym_autolink] = STATE(189), + [sym_highlighted] = STATE(189), + [sym_insert] = STATE(189), + [sym_delete] = STATE(189), + [sym_superscript] = STATE(189), + [sym_subscript] = STATE(189), + [sym_footnote_reference] = STATE(189), + [sym__image] = STATE(189), + [sym_full_reference_image] = STATE(189), + [sym_collapsed_reference_image] = STATE(189), + [sym_inline_image] = STATE(189), + [sym__image_description] = STATE(660), + [sym__link] = STATE(189), + [sym_full_reference_link] = STATE(189), + [sym_collapsed_reference_link] = STATE(189), + [sym_inline_link] = STATE(189), + [sym_link_text] = STATE(646), + [sym__comment_with_spaces] = STATE(189), + [sym_span] = STATE(189), + [sym_raw_inline] = STATE(189), + [sym_math] = STATE(189), + [sym_verbatim] = STATE(189), + [sym__todo_highlights] = STATE(189), + [sym_todo] = STATE(189), + [sym_note] = STATE(189), + [sym__symbol_fallback] = STATE(189), + [sym__verbatim_begin] = STATE(906), + [aux_sym__text] = STATE(123), + [aux_sym__inline_repeat1] = STATE(79), + [anon_sym_LBRACE_] = ACTIONS(672), + [anon_sym__] = ACTIONS(674), + [anon_sym_LBRACE_STAR] = ACTIONS(676), + [anon_sym_STAR] = ACTIONS(678), + [anon_sym_BSLASH] = ACTIONS(680), + [sym_quotation_marks] = ACTIONS(682), + [sym_ellipsis] = ACTIONS(682), + [sym_em_dash] = ACTIONS(682), + [sym_en_dash] = ACTIONS(684), + [sym_backslash_escape] = ACTIONS(684), + [anon_sym_LT] = ACTIONS(686), + [anon_sym_LBRACE_EQ] = ACTIONS(688), + [anon_sym_LBRACE_PLUS] = ACTIONS(690), + [anon_sym_LBRACE_DASH] = ACTIONS(692), + [sym_symbol] = ACTIONS(682), + [anon_sym_LBRACE_CARET] = ACTIONS(694), + [anon_sym_CARET] = ACTIONS(694), + [anon_sym_LBRACE_TILDE] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_LBRACK_CARET] = ACTIONS(698), + [anon_sym_BANG_LBRACK] = ACTIONS(700), + [anon_sym_LBRACK] = ACTIONS(702), + [anon_sym_LBRACE2] = ACTIONS(684), + [anon_sym_DOLLAR] = ACTIONS(704), + [anon_sym_TODO] = ACTIONS(706), + [anon_sym_WIP] = ACTIONS(706), + [anon_sym_NOTE] = ACTIONS(708), + [anon_sym_INFO] = ACTIONS(708), + [anon_sym_XXX] = ACTIONS(708), + [sym_fixme] = ACTIONS(682), + [anon_sym_PIPE] = ACTIONS(682), + [anon_sym_BQUOTE] = ACTIONS(41), + [sym__whitespace1] = ACTIONS(710), + [sym__newline] = ACTIONS(712), + [aux_sym__text_token1] = ACTIONS(714), + }, + [76] = { + [sym__inline] = STATE(684), + [sym__element] = STATE(73), + [sym_emphasis] = STATE(178), + [sym_emphasis_begin] = STATE(119), + [sym_strong] = STATE(178), + [sym_strong_begin] = STATE(121), + [sym__hard_line_break] = STATE(178), + [sym_hard_line_break] = STATE(178), + [sym__smart_punctuation] = STATE(178), + [sym_autolink] = STATE(178), + [sym_highlighted] = STATE(178), + [sym_insert] = STATE(178), + [sym_delete] = STATE(178), + [sym_superscript] = STATE(178), + [sym_subscript] = STATE(178), + [sym_footnote_reference] = STATE(178), + [sym__image] = STATE(178), + [sym_full_reference_image] = STATE(178), + [sym_collapsed_reference_image] = STATE(178), + [sym_inline_image] = STATE(178), + [sym__image_description] = STATE(651), + [sym__link] = STATE(178), + [sym_full_reference_link] = STATE(178), + [sym_collapsed_reference_link] = STATE(178), + [sym_inline_link] = STATE(178), + [sym_link_text] = STATE(650), + [sym__comment_with_spaces] = STATE(178), + [sym_span] = STATE(178), + [sym_raw_inline] = STATE(178), + [sym_math] = STATE(178), + [sym_verbatim] = STATE(178), + [sym__todo_highlights] = STATE(178), + [sym_todo] = STATE(178), + [sym_note] = STATE(178), + [sym__symbol_fallback] = STATE(178), + [sym__verbatim_begin] = STATE(897), + [aux_sym__text] = STATE(167), + [aux_sym__inline_repeat1] = STATE(73), + [anon_sym_LBRACE_] = ACTIONS(549), + [anon_sym__] = ACTIONS(551), + [anon_sym_LBRACE_STAR] = ACTIONS(553), + [anon_sym_STAR] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(557), + [sym_quotation_marks] = ACTIONS(559), + [sym_ellipsis] = ACTIONS(559), + [sym_em_dash] = ACTIONS(559), + [sym_en_dash] = ACTIONS(561), + [sym_backslash_escape] = ACTIONS(561), + [anon_sym_LT] = ACTIONS(563), + [anon_sym_LBRACE_EQ] = ACTIONS(565), + [anon_sym_LBRACE_PLUS] = ACTIONS(567), + [anon_sym_LBRACE_DASH] = ACTIONS(569), + [sym_symbol] = ACTIONS(559), + [anon_sym_LBRACE_CARET] = ACTIONS(571), + [anon_sym_CARET] = ACTIONS(571), + [anon_sym_LBRACE_TILDE] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(573), + [anon_sym_LBRACK_CARET] = ACTIONS(575), + [anon_sym_BANG_LBRACK] = ACTIONS(577), + [anon_sym_LBRACK] = ACTIONS(579), + [anon_sym_LBRACE2] = ACTIONS(561), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_TODO] = ACTIONS(583), + [anon_sym_WIP] = ACTIONS(583), + [anon_sym_NOTE] = ACTIONS(585), + [anon_sym_INFO] = ACTIONS(585), + [anon_sym_XXX] = ACTIONS(585), + [sym_fixme] = ACTIONS(559), + [anon_sym_PIPE] = ACTIONS(559), + [anon_sym_BQUOTE] = ACTIONS(41), + [sym__whitespace1] = ACTIONS(587), + [sym__newline] = ACTIONS(589), + [aux_sym__text_token1] = ACTIONS(591), + }, + [77] = { + [sym__element] = STATE(77), + [sym_emphasis] = STATE(220), + [sym_emphasis_begin] = STATE(115), + [sym_strong] = STATE(220), + [sym_strong_begin] = STATE(114), + [sym__hard_line_break] = STATE(220), + [sym_hard_line_break] = STATE(220), + [sym__smart_punctuation] = STATE(220), + [sym_autolink] = STATE(220), + [sym_highlighted] = STATE(220), + [sym_insert] = STATE(220), + [sym_delete] = STATE(220), + [sym_superscript] = STATE(220), + [sym_subscript] = STATE(220), + [sym_footnote_reference] = STATE(220), + [sym__image] = STATE(220), + [sym_full_reference_image] = STATE(220), + [sym_collapsed_reference_image] = STATE(220), + [sym_inline_image] = STATE(220), + [sym__image_description] = STATE(653), + [sym__link] = STATE(220), + [sym_full_reference_link] = STATE(220), + [sym_collapsed_reference_link] = STATE(220), + [sym_inline_link] = STATE(220), + [sym_link_text] = STATE(661), + [sym__comment_with_spaces] = STATE(220), + [sym_span] = STATE(220), + [sym_raw_inline] = STATE(220), + [sym_math] = STATE(220), + [sym_verbatim] = STATE(220), + [sym__todo_highlights] = STATE(220), + [sym_todo] = STATE(220), + [sym_note] = STATE(220), + [sym__symbol_fallback] = STATE(220), + [sym__verbatim_begin] = STATE(878), + [aux_sym__text] = STATE(130), + [aux_sym__inline_repeat1] = STATE(77), + [ts_builtin_sym_end] = ACTIONS(613), + [anon_sym_LBRACE_] = ACTIONS(716), + [anon_sym__] = ACTIONS(719), + [anon_sym_LBRACE_STAR] = ACTIONS(722), + [anon_sym_STAR] = ACTIONS(725), + [anon_sym_BSLASH] = ACTIONS(728), + [sym_quotation_marks] = ACTIONS(731), + [sym_ellipsis] = ACTIONS(731), + [sym_em_dash] = ACTIONS(731), + [sym_en_dash] = ACTIONS(734), + [sym_backslash_escape] = ACTIONS(734), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_LBRACE_EQ] = ACTIONS(740), + [anon_sym_LBRACE_PLUS] = ACTIONS(743), + [anon_sym_LBRACE_DASH] = ACTIONS(746), + [sym_symbol] = ACTIONS(731), + [anon_sym_LBRACE_CARET] = ACTIONS(749), + [anon_sym_CARET] = ACTIONS(749), + [anon_sym_LBRACE_TILDE] = ACTIONS(752), + [anon_sym_TILDE] = ACTIONS(752), + [anon_sym_LBRACK_CARET] = ACTIONS(755), + [anon_sym_BANG_LBRACK] = ACTIONS(758), + [anon_sym_LBRACK] = ACTIONS(761), + [anon_sym_LBRACE2] = ACTIONS(734), + [anon_sym_DOLLAR] = ACTIONS(764), + [anon_sym_TODO] = ACTIONS(767), + [anon_sym_WIP] = ACTIONS(767), + [anon_sym_NOTE] = ACTIONS(770), + [anon_sym_INFO] = ACTIONS(770), + [anon_sym_XXX] = ACTIONS(770), + [sym_fixme] = ACTIONS(731), + [anon_sym_PIPE] = ACTIONS(731), + [anon_sym_BQUOTE] = ACTIONS(660), + [sym__whitespace1] = ACTIONS(773), + [sym__newline] = ACTIONS(776), + [aux_sym__text_token1] = ACTIONS(779), + }, + [78] = { + [sym__inline] = STATE(831), + [sym__element] = STATE(79), + [sym_emphasis] = STATE(189), + [sym_emphasis_begin] = STATE(92), + [sym_strong] = STATE(189), + [sym_strong_begin] = STATE(93), + [sym__hard_line_break] = STATE(189), + [sym_hard_line_break] = STATE(189), + [sym__smart_punctuation] = STATE(189), + [sym_autolink] = STATE(189), + [sym_highlighted] = STATE(189), + [sym_insert] = STATE(189), + [sym_delete] = STATE(189), + [sym_superscript] = STATE(189), + [sym_subscript] = STATE(189), + [sym_footnote_reference] = STATE(189), + [sym__image] = STATE(189), + [sym_full_reference_image] = STATE(189), + [sym_collapsed_reference_image] = STATE(189), + [sym_inline_image] = STATE(189), + [sym__image_description] = STATE(660), + [sym__link] = STATE(189), + [sym_full_reference_link] = STATE(189), + [sym_collapsed_reference_link] = STATE(189), + [sym_inline_link] = STATE(189), + [sym_link_text] = STATE(646), + [sym__comment_with_spaces] = STATE(189), + [sym_span] = STATE(189), + [sym_raw_inline] = STATE(189), + [sym_math] = STATE(189), + [sym_verbatim] = STATE(189), + [sym__todo_highlights] = STATE(189), + [sym_todo] = STATE(189), + [sym_note] = STATE(189), + [sym__symbol_fallback] = STATE(189), + [sym__verbatim_begin] = STATE(906), + [aux_sym__text] = STATE(123), + [aux_sym__inline_repeat1] = STATE(79), + [anon_sym_LBRACE_] = ACTIONS(672), + [anon_sym__] = ACTIONS(674), + [anon_sym_LBRACE_STAR] = ACTIONS(676), + [anon_sym_STAR] = ACTIONS(678), + [anon_sym_BSLASH] = ACTIONS(680), + [sym_quotation_marks] = ACTIONS(682), + [sym_ellipsis] = ACTIONS(682), + [sym_em_dash] = ACTIONS(682), + [sym_en_dash] = ACTIONS(684), + [sym_backslash_escape] = ACTIONS(684), + [anon_sym_LT] = ACTIONS(686), + [anon_sym_LBRACE_EQ] = ACTIONS(688), + [anon_sym_LBRACE_PLUS] = ACTIONS(690), + [anon_sym_LBRACE_DASH] = ACTIONS(692), + [sym_symbol] = ACTIONS(682), + [anon_sym_LBRACE_CARET] = ACTIONS(694), + [anon_sym_CARET] = ACTIONS(694), + [anon_sym_LBRACE_TILDE] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_LBRACK_CARET] = ACTIONS(698), + [anon_sym_BANG_LBRACK] = ACTIONS(700), + [anon_sym_LBRACK] = ACTIONS(702), + [anon_sym_LBRACE2] = ACTIONS(684), + [anon_sym_DOLLAR] = ACTIONS(704), + [anon_sym_TODO] = ACTIONS(706), + [anon_sym_WIP] = ACTIONS(706), + [anon_sym_NOTE] = ACTIONS(708), + [anon_sym_INFO] = ACTIONS(708), + [anon_sym_XXX] = ACTIONS(708), + [sym_fixme] = ACTIONS(682), + [anon_sym_PIPE] = ACTIONS(682), + [anon_sym_BQUOTE] = ACTIONS(41), + [sym__whitespace1] = ACTIONS(710), + [sym__newline] = ACTIONS(712), + [aux_sym__text_token1] = ACTIONS(714), + }, + [79] = { + [sym__element] = STATE(80), + [sym_emphasis] = STATE(189), + [sym_emphasis_begin] = STATE(92), + [sym_strong] = STATE(189), + [sym_strong_begin] = STATE(93), + [sym__hard_line_break] = STATE(189), + [sym_hard_line_break] = STATE(189), + [sym__smart_punctuation] = STATE(189), + [sym_autolink] = STATE(189), + [sym_highlighted] = STATE(189), + [sym_insert] = STATE(189), + [sym_delete] = STATE(189), + [sym_superscript] = STATE(189), + [sym_subscript] = STATE(189), + [sym_footnote_reference] = STATE(189), + [sym__image] = STATE(189), + [sym_full_reference_image] = STATE(189), + [sym_collapsed_reference_image] = STATE(189), + [sym_inline_image] = STATE(189), + [sym__image_description] = STATE(660), + [sym__link] = STATE(189), + [sym_full_reference_link] = STATE(189), + [sym_collapsed_reference_link] = STATE(189), + [sym_inline_link] = STATE(189), + [sym_link_text] = STATE(646), + [sym__comment_with_spaces] = STATE(189), + [sym_span] = STATE(189), + [sym_raw_inline] = STATE(189), + [sym_math] = STATE(189), + [sym_verbatim] = STATE(189), + [sym__todo_highlights] = STATE(189), + [sym_todo] = STATE(189), + [sym_note] = STATE(189), + [sym__symbol_fallback] = STATE(189), + [sym__verbatim_begin] = STATE(906), + [aux_sym__text] = STATE(123), + [aux_sym__inline_repeat1] = STATE(80), + [anon_sym_LBRACE_] = ACTIONS(672), + [anon_sym__] = ACTIONS(674), + [anon_sym_LBRACE_STAR] = ACTIONS(676), + [anon_sym_STAR] = ACTIONS(678), + [anon_sym_BSLASH] = ACTIONS(680), + [sym_quotation_marks] = ACTIONS(682), + [sym_ellipsis] = ACTIONS(682), + [sym_em_dash] = ACTIONS(682), + [sym_en_dash] = ACTIONS(684), + [sym_backslash_escape] = ACTIONS(684), + [anon_sym_LT] = ACTIONS(686), + [anon_sym_LBRACE_EQ] = ACTIONS(688), + [anon_sym_LBRACE_PLUS] = ACTIONS(690), + [anon_sym_LBRACE_DASH] = ACTIONS(692), + [sym_symbol] = ACTIONS(682), + [anon_sym_LBRACE_CARET] = ACTIONS(694), + [anon_sym_CARET] = ACTIONS(694), + [anon_sym_LBRACE_TILDE] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_LBRACK_CARET] = ACTIONS(698), + [anon_sym_BANG_LBRACK] = ACTIONS(700), + [anon_sym_LBRACK] = ACTIONS(702), + [anon_sym_RBRACK2] = ACTIONS(595), + [anon_sym_LBRACE2] = ACTIONS(684), + [anon_sym_DOLLAR] = ACTIONS(704), + [anon_sym_TODO] = ACTIONS(706), + [anon_sym_WIP] = ACTIONS(706), + [anon_sym_NOTE] = ACTIONS(708), + [anon_sym_INFO] = ACTIONS(708), + [anon_sym_XXX] = ACTIONS(708), + [sym_fixme] = ACTIONS(682), + [anon_sym_PIPE] = ACTIONS(682), + [anon_sym_BQUOTE] = ACTIONS(41), + [sym__whitespace1] = ACTIONS(710), + [sym__newline] = ACTIONS(782), + [aux_sym__text_token1] = ACTIONS(714), + }, + [80] = { + [sym__element] = STATE(80), + [sym_emphasis] = STATE(189), + [sym_emphasis_begin] = STATE(92), + [sym_strong] = STATE(189), + [sym_strong_begin] = STATE(93), + [sym__hard_line_break] = STATE(189), + [sym_hard_line_break] = STATE(189), + [sym__smart_punctuation] = STATE(189), + [sym_autolink] = STATE(189), + [sym_highlighted] = STATE(189), + [sym_insert] = STATE(189), + [sym_delete] = STATE(189), + [sym_superscript] = STATE(189), + [sym_subscript] = STATE(189), + [sym_footnote_reference] = STATE(189), + [sym__image] = STATE(189), + [sym_full_reference_image] = STATE(189), + [sym_collapsed_reference_image] = STATE(189), + [sym_inline_image] = STATE(189), + [sym__image_description] = STATE(660), + [sym__link] = STATE(189), + [sym_full_reference_link] = STATE(189), + [sym_collapsed_reference_link] = STATE(189), + [sym_inline_link] = STATE(189), + [sym_link_text] = STATE(646), + [sym__comment_with_spaces] = STATE(189), + [sym_span] = STATE(189), + [sym_raw_inline] = STATE(189), + [sym_math] = STATE(189), + [sym_verbatim] = STATE(189), + [sym__todo_highlights] = STATE(189), + [sym_todo] = STATE(189), + [sym_note] = STATE(189), + [sym__symbol_fallback] = STATE(189), + [sym__verbatim_begin] = STATE(906), + [aux_sym__text] = STATE(123), + [aux_sym__inline_repeat1] = STATE(80), + [anon_sym_LBRACE_] = ACTIONS(784), + [anon_sym__] = ACTIONS(787), + [anon_sym_LBRACE_STAR] = ACTIONS(790), + [anon_sym_STAR] = ACTIONS(793), + [anon_sym_BSLASH] = ACTIONS(796), + [sym_quotation_marks] = ACTIONS(799), + [sym_ellipsis] = ACTIONS(799), + [sym_em_dash] = ACTIONS(799), + [sym_en_dash] = ACTIONS(802), + [sym_backslash_escape] = ACTIONS(802), + [anon_sym_LT] = ACTIONS(805), + [anon_sym_LBRACE_EQ] = ACTIONS(808), + [anon_sym_LBRACE_PLUS] = ACTIONS(811), + [anon_sym_LBRACE_DASH] = ACTIONS(814), + [sym_symbol] = ACTIONS(799), + [anon_sym_LBRACE_CARET] = ACTIONS(817), + [anon_sym_CARET] = ACTIONS(817), + [anon_sym_LBRACE_TILDE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(820), + [anon_sym_LBRACK_CARET] = ACTIONS(823), + [anon_sym_BANG_LBRACK] = ACTIONS(826), + [anon_sym_LBRACK] = ACTIONS(829), + [anon_sym_RBRACK2] = ACTIONS(613), + [anon_sym_LBRACE2] = ACTIONS(802), + [anon_sym_DOLLAR] = ACTIONS(832), + [anon_sym_TODO] = ACTIONS(835), + [anon_sym_WIP] = ACTIONS(835), + [anon_sym_NOTE] = ACTIONS(838), + [anon_sym_INFO] = ACTIONS(838), + [anon_sym_XXX] = ACTIONS(838), + [sym_fixme] = ACTIONS(799), + [anon_sym_PIPE] = ACTIONS(799), + [anon_sym_BQUOTE] = ACTIONS(660), + [sym__whitespace1] = ACTIONS(841), + [sym__newline] = ACTIONS(844), + [aux_sym__text_token1] = ACTIONS(847), + }, + [81] = { + [sym__element] = STATE(81), + [sym_emphasis] = STATE(173), + [sym_emphasis_begin] = STATE(87), + [sym_strong] = STATE(173), + [sym_strong_begin] = STATE(76), + [sym__hard_line_break] = STATE(173), + [sym_hard_line_break] = STATE(173), + [sym__smart_punctuation] = STATE(173), + [sym_autolink] = STATE(173), + [sym_highlighted] = STATE(173), + [sym_insert] = STATE(173), + [sym_delete] = STATE(173), + [sym_superscript] = STATE(173), + [sym_subscript] = STATE(173), + [sym_footnote_reference] = STATE(173), + [sym__image] = STATE(173), + [sym_full_reference_image] = STATE(173), + [sym_collapsed_reference_image] = STATE(173), + [sym_inline_image] = STATE(173), + [sym__image_description] = STATE(647), + [sym__link] = STATE(173), + [sym_full_reference_link] = STATE(173), + [sym_collapsed_reference_link] = STATE(173), + [sym_inline_link] = STATE(173), + [sym_link_text] = STATE(648), + [sym__comment_with_spaces] = STATE(173), + [sym_span] = STATE(173), + [sym_raw_inline] = STATE(173), + [sym_math] = STATE(173), + [sym_verbatim] = STATE(173), + [sym__todo_highlights] = STATE(173), + [sym_todo] = STATE(173), + [sym_note] = STATE(173), + [sym__symbol_fallback] = STATE(173), + [sym__verbatim_begin] = STATE(843), + [aux_sym__text] = STATE(155), + [aux_sym__inline_repeat1] = STATE(81), + [anon_sym_LBRACE_] = ACTIONS(850), + [anon_sym__] = ACTIONS(853), + [anon_sym_LBRACE_STAR] = ACTIONS(856), + [anon_sym_STAR] = ACTIONS(859), + [anon_sym_BSLASH] = ACTIONS(862), + [sym_quotation_marks] = ACTIONS(865), + [sym_ellipsis] = ACTIONS(865), + [sym_em_dash] = ACTIONS(865), + [sym_en_dash] = ACTIONS(868), + [sym_backslash_escape] = ACTIONS(868), + [anon_sym_LT] = ACTIONS(871), + [anon_sym_LBRACE_EQ] = ACTIONS(874), + [anon_sym_LBRACE_PLUS] = ACTIONS(877), + [anon_sym_PLUS_RBRACE] = ACTIONS(613), + [anon_sym_LBRACE_DASH] = ACTIONS(880), + [sym_symbol] = ACTIONS(865), + [anon_sym_LBRACE_CARET] = ACTIONS(883), + [anon_sym_CARET] = ACTIONS(883), + [anon_sym_LBRACE_TILDE] = ACTIONS(886), + [anon_sym_TILDE] = ACTIONS(886), + [anon_sym_LBRACK_CARET] = ACTIONS(889), + [anon_sym_BANG_LBRACK] = ACTIONS(892), + [anon_sym_LBRACK] = ACTIONS(895), + [anon_sym_LBRACE2] = ACTIONS(868), + [anon_sym_DOLLAR] = ACTIONS(898), + [anon_sym_TODO] = ACTIONS(901), + [anon_sym_WIP] = ACTIONS(901), + [anon_sym_NOTE] = ACTIONS(904), + [anon_sym_INFO] = ACTIONS(904), + [anon_sym_XXX] = ACTIONS(904), + [sym_fixme] = ACTIONS(865), + [anon_sym_PIPE] = ACTIONS(865), + [anon_sym_BQUOTE] = ACTIONS(660), + [sym__whitespace1] = ACTIONS(907), + [sym__newline] = ACTIONS(910), + [aux_sym__text_token1] = ACTIONS(913), + }, + [82] = { + [sym__inline] = STATE(680), + [sym__element] = STATE(94), + [sym_emphasis] = STATE(201), + [sym_emphasis_begin] = STATE(116), + [sym_strong] = STATE(201), + [sym_strong_begin] = STATE(117), + [sym__hard_line_break] = STATE(201), + [sym_hard_line_break] = STATE(201), + [sym__smart_punctuation] = STATE(201), + [sym_autolink] = STATE(201), + [sym_highlighted] = STATE(201), + [sym_insert] = STATE(201), + [sym_delete] = STATE(201), + [sym_superscript] = STATE(201), + [sym_subscript] = STATE(201), + [sym_footnote_reference] = STATE(201), + [sym__image] = STATE(201), + [sym_full_reference_image] = STATE(201), + [sym_collapsed_reference_image] = STATE(201), + [sym_inline_image] = STATE(201), + [sym__image_description] = STATE(656), + [sym__link] = STATE(201), + [sym_full_reference_link] = STATE(201), + [sym_collapsed_reference_link] = STATE(201), + [sym_inline_link] = STATE(201), + [sym_link_text] = STATE(655), + [sym__comment_with_spaces] = STATE(201), + [sym_span] = STATE(201), + [sym_raw_inline] = STATE(201), + [sym_math] = STATE(201), + [sym_verbatim] = STATE(201), + [sym__todo_highlights] = STATE(201), + [sym_todo] = STATE(201), + [sym_note] = STATE(201), + [sym__symbol_fallback] = STATE(201), + [sym__verbatim_begin] = STATE(888), + [aux_sym__text] = STATE(153), + [aux_sym__inline_repeat1] = STATE(94), + [anon_sym_LBRACE_] = ACTIONS(916), + [anon_sym__] = ACTIONS(918), + [anon_sym_LBRACE_STAR] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(922), + [anon_sym_BSLASH] = ACTIONS(924), + [sym_quotation_marks] = ACTIONS(926), + [sym_ellipsis] = ACTIONS(926), + [sym_em_dash] = ACTIONS(926), + [sym_en_dash] = ACTIONS(928), + [sym_backslash_escape] = ACTIONS(928), + [anon_sym_LT] = ACTIONS(930), + [anon_sym_LBRACE_EQ] = ACTIONS(932), + [anon_sym_LBRACE_PLUS] = ACTIONS(934), + [anon_sym_LBRACE_DASH] = ACTIONS(936), + [sym_symbol] = ACTIONS(926), + [anon_sym_LBRACE_CARET] = ACTIONS(938), + [anon_sym_CARET] = ACTIONS(938), + [anon_sym_LBRACE_TILDE] = ACTIONS(940), + [anon_sym_TILDE] = ACTIONS(940), + [anon_sym_LBRACK_CARET] = ACTIONS(942), + [anon_sym_BANG_LBRACK] = ACTIONS(944), + [anon_sym_LBRACK] = ACTIONS(946), + [anon_sym_LBRACE2] = ACTIONS(928), + [anon_sym_DOLLAR] = ACTIONS(948), + [anon_sym_TODO] = ACTIONS(950), + [anon_sym_WIP] = ACTIONS(950), + [anon_sym_NOTE] = ACTIONS(952), + [anon_sym_INFO] = ACTIONS(952), + [anon_sym_XXX] = ACTIONS(952), + [sym_fixme] = ACTIONS(926), + [anon_sym_PIPE] = ACTIONS(926), + [anon_sym_BQUOTE] = ACTIONS(41), + [sym__whitespace1] = ACTIONS(954), + [sym__newline] = ACTIONS(956), + [aux_sym__text_token1] = ACTIONS(958), + }, + [83] = { + [sym__inline] = STATE(694), + [sym__element] = STATE(73), + [sym_emphasis] = STATE(178), + [sym_emphasis_begin] = STATE(119), + [sym_strong] = STATE(178), + [sym_strong_begin] = STATE(121), + [sym__hard_line_break] = STATE(178), + [sym_hard_line_break] = STATE(178), + [sym__smart_punctuation] = STATE(178), + [sym_autolink] = STATE(178), + [sym_highlighted] = STATE(178), + [sym_insert] = STATE(178), + [sym_delete] = STATE(178), + [sym_superscript] = STATE(178), + [sym_subscript] = STATE(178), + [sym_footnote_reference] = STATE(178), + [sym__image] = STATE(178), + [sym_full_reference_image] = STATE(178), + [sym_collapsed_reference_image] = STATE(178), + [sym_inline_image] = STATE(178), + [sym__image_description] = STATE(651), + [sym__link] = STATE(178), + [sym_full_reference_link] = STATE(178), + [sym_collapsed_reference_link] = STATE(178), + [sym_inline_link] = STATE(178), + [sym_link_text] = STATE(650), + [sym__comment_with_spaces] = STATE(178), + [sym_span] = STATE(178), + [sym_raw_inline] = STATE(178), + [sym_math] = STATE(178), + [sym_verbatim] = STATE(178), + [sym__todo_highlights] = STATE(178), + [sym_todo] = STATE(178), + [sym_note] = STATE(178), + [sym__symbol_fallback] = STATE(178), + [sym__verbatim_begin] = STATE(897), + [aux_sym__text] = STATE(167), + [aux_sym__inline_repeat1] = STATE(73), + [anon_sym_LBRACE_] = ACTIONS(549), + [anon_sym__] = ACTIONS(551), + [anon_sym_LBRACE_STAR] = ACTIONS(553), + [anon_sym_STAR] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(557), + [sym_quotation_marks] = ACTIONS(559), + [sym_ellipsis] = ACTIONS(559), + [sym_em_dash] = ACTIONS(559), + [sym_en_dash] = ACTIONS(561), + [sym_backslash_escape] = ACTIONS(561), + [anon_sym_LT] = ACTIONS(563), + [anon_sym_LBRACE_EQ] = ACTIONS(565), + [anon_sym_LBRACE_PLUS] = ACTIONS(567), + [anon_sym_LBRACE_DASH] = ACTIONS(569), + [sym_symbol] = ACTIONS(559), + [anon_sym_LBRACE_CARET] = ACTIONS(571), + [anon_sym_CARET] = ACTIONS(571), + [anon_sym_LBRACE_TILDE] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(573), + [anon_sym_LBRACK_CARET] = ACTIONS(575), + [anon_sym_BANG_LBRACK] = ACTIONS(577), + [anon_sym_LBRACK] = ACTIONS(579), + [anon_sym_LBRACE2] = ACTIONS(561), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_TODO] = ACTIONS(583), + [anon_sym_WIP] = ACTIONS(583), + [anon_sym_NOTE] = ACTIONS(585), + [anon_sym_INFO] = ACTIONS(585), + [anon_sym_XXX] = ACTIONS(585), + [sym_fixme] = ACTIONS(559), + [anon_sym_PIPE] = ACTIONS(559), + [anon_sym_BQUOTE] = ACTIONS(41), + [sym__whitespace1] = ACTIONS(587), + [sym__newline] = ACTIONS(589), + [aux_sym__text_token1] = ACTIONS(591), + }, + [84] = { + [sym__element] = STATE(85), + [sym_emphasis] = STATE(197), + [sym_emphasis_begin] = STATE(97), + [sym_strong] = STATE(197), + [sym_strong_begin] = STATE(100), + [sym__hard_line_break] = STATE(197), + [sym_hard_line_break] = STATE(197), + [sym__smart_punctuation] = STATE(197), + [sym_autolink] = STATE(197), + [sym_highlighted] = STATE(197), + [sym_insert] = STATE(197), + [sym_delete] = STATE(197), + [sym_superscript] = STATE(197), + [sym_subscript] = STATE(197), + [sym_footnote_reference] = STATE(197), + [sym__image] = STATE(197), + [sym_full_reference_image] = STATE(197), + [sym_collapsed_reference_image] = STATE(197), + [sym_inline_image] = STATE(197), + [sym__image_description] = STATE(676), + [sym__link] = STATE(197), + [sym_full_reference_link] = STATE(197), + [sym_collapsed_reference_link] = STATE(197), + [sym_inline_link] = STATE(197), + [sym_link_text] = STATE(677), + [sym__comment_with_spaces] = STATE(197), + [sym_span] = STATE(197), + [sym_raw_inline] = STATE(197), + [sym_math] = STATE(197), + [sym_verbatim] = STATE(197), + [sym__todo_highlights] = STATE(197), + [sym_todo] = STATE(197), + [sym_note] = STATE(197), + [sym__symbol_fallback] = STATE(197), + [sym__verbatim_begin] = STATE(861), + [aux_sym__text] = STATE(159), + [aux_sym__inline_repeat1] = STATE(85), + [anon_sym_LBRACE_] = ACTIONS(960), + [anon_sym__] = ACTIONS(962), + [anon_sym_LBRACE_STAR] = ACTIONS(964), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_BSLASH] = ACTIONS(968), + [sym_quotation_marks] = ACTIONS(970), + [sym_ellipsis] = ACTIONS(970), + [sym_em_dash] = ACTIONS(970), + [sym_en_dash] = ACTIONS(972), + [sym_backslash_escape] = ACTIONS(972), + [anon_sym_LT] = ACTIONS(974), + [anon_sym_LBRACE_EQ] = ACTIONS(976), + [anon_sym_LBRACE_PLUS] = ACTIONS(978), + [anon_sym_LBRACE_DASH] = ACTIONS(980), + [sym_symbol] = ACTIONS(970), + [anon_sym_LBRACE_CARET] = ACTIONS(982), + [anon_sym_CARET] = ACTIONS(593), + [anon_sym_CARET_RBRACE] = ACTIONS(595), + [anon_sym_LBRACE_TILDE] = ACTIONS(984), + [anon_sym_TILDE] = ACTIONS(984), + [anon_sym_LBRACK_CARET] = ACTIONS(986), + [anon_sym_BANG_LBRACK] = ACTIONS(988), + [anon_sym_LBRACK] = ACTIONS(990), + [anon_sym_LBRACE2] = ACTIONS(972), + [anon_sym_DOLLAR] = ACTIONS(992), + [anon_sym_TODO] = ACTIONS(994), + [anon_sym_WIP] = ACTIONS(994), + [anon_sym_NOTE] = ACTIONS(996), + [anon_sym_INFO] = ACTIONS(996), + [anon_sym_XXX] = ACTIONS(996), + [sym_fixme] = ACTIONS(970), + [anon_sym_PIPE] = ACTIONS(970), + [anon_sym_BQUOTE] = ACTIONS(41), + [sym__whitespace1] = ACTIONS(998), + [sym__newline] = ACTIONS(1000), + [aux_sym__text_token1] = ACTIONS(1002), + }, + [85] = { + [sym__element] = STATE(85), + [sym_emphasis] = STATE(197), + [sym_emphasis_begin] = STATE(97), + [sym_strong] = STATE(197), + [sym_strong_begin] = STATE(100), + [sym__hard_line_break] = STATE(197), + [sym_hard_line_break] = STATE(197), + [sym__smart_punctuation] = STATE(197), + [sym_autolink] = STATE(197), + [sym_highlighted] = STATE(197), + [sym_insert] = STATE(197), + [sym_delete] = STATE(197), + [sym_superscript] = STATE(197), + [sym_subscript] = STATE(197), + [sym_footnote_reference] = STATE(197), + [sym__image] = STATE(197), + [sym_full_reference_image] = STATE(197), + [sym_collapsed_reference_image] = STATE(197), + [sym_inline_image] = STATE(197), + [sym__image_description] = STATE(676), + [sym__link] = STATE(197), + [sym_full_reference_link] = STATE(197), + [sym_collapsed_reference_link] = STATE(197), + [sym_inline_link] = STATE(197), + [sym_link_text] = STATE(677), + [sym__comment_with_spaces] = STATE(197), + [sym_span] = STATE(197), + [sym_raw_inline] = STATE(197), + [sym_math] = STATE(197), + [sym_verbatim] = STATE(197), + [sym__todo_highlights] = STATE(197), + [sym_todo] = STATE(197), + [sym_note] = STATE(197), + [sym__symbol_fallback] = STATE(197), + [sym__verbatim_begin] = STATE(861), + [aux_sym__text] = STATE(159), + [aux_sym__inline_repeat1] = STATE(85), + [anon_sym_LBRACE_] = ACTIONS(1004), + [anon_sym__] = ACTIONS(1007), + [anon_sym_LBRACE_STAR] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1013), + [anon_sym_BSLASH] = ACTIONS(1016), + [sym_quotation_marks] = ACTIONS(1019), + [sym_ellipsis] = ACTIONS(1019), + [sym_em_dash] = ACTIONS(1019), + [sym_en_dash] = ACTIONS(1022), + [sym_backslash_escape] = ACTIONS(1022), + [anon_sym_LT] = ACTIONS(1025), + [anon_sym_LBRACE_EQ] = ACTIONS(1028), + [anon_sym_LBRACE_PLUS] = ACTIONS(1031), + [anon_sym_LBRACE_DASH] = ACTIONS(1034), + [sym_symbol] = ACTIONS(1019), + [anon_sym_LBRACE_CARET] = ACTIONS(1037), + [anon_sym_CARET] = ACTIONS(1040), + [anon_sym_CARET_RBRACE] = ACTIONS(613), + [anon_sym_LBRACE_TILDE] = ACTIONS(1043), + [anon_sym_TILDE] = ACTIONS(1043), + [anon_sym_LBRACK_CARET] = ACTIONS(1046), + [anon_sym_BANG_LBRACK] = ACTIONS(1049), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_LBRACE2] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1055), + [anon_sym_TODO] = ACTIONS(1058), + [anon_sym_WIP] = ACTIONS(1058), + [anon_sym_NOTE] = ACTIONS(1061), + [anon_sym_INFO] = ACTIONS(1061), + [anon_sym_XXX] = ACTIONS(1061), + [sym_fixme] = ACTIONS(1019), + [anon_sym_PIPE] = ACTIONS(1019), + [anon_sym_BQUOTE] = ACTIONS(660), + [sym__whitespace1] = ACTIONS(1064), + [sym__newline] = ACTIONS(1067), + [aux_sym__text_token1] = ACTIONS(1070), + }, + [86] = { + [sym__inline] = STATE(805), + [sym__element] = STATE(79), + [sym_emphasis] = STATE(189), + [sym_emphasis_begin] = STATE(92), + [sym_strong] = STATE(189), + [sym_strong_begin] = STATE(93), + [sym__hard_line_break] = STATE(189), + [sym_hard_line_break] = STATE(189), + [sym__smart_punctuation] = STATE(189), + [sym_autolink] = STATE(189), + [sym_highlighted] = STATE(189), + [sym_insert] = STATE(189), + [sym_delete] = STATE(189), + [sym_superscript] = STATE(189), + [sym_subscript] = STATE(189), + [sym_footnote_reference] = STATE(189), + [sym__image] = STATE(189), + [sym_full_reference_image] = STATE(189), + [sym_collapsed_reference_image] = STATE(189), + [sym_inline_image] = STATE(189), + [sym__image_description] = STATE(660), + [sym__link] = STATE(189), + [sym_full_reference_link] = STATE(189), + [sym_collapsed_reference_link] = STATE(189), + [sym_inline_link] = STATE(189), + [sym_link_text] = STATE(646), + [sym__comment_with_spaces] = STATE(189), + [sym_span] = STATE(189), + [sym_raw_inline] = STATE(189), + [sym_math] = STATE(189), + [sym_verbatim] = STATE(189), + [sym__todo_highlights] = STATE(189), + [sym_todo] = STATE(189), + [sym_note] = STATE(189), + [sym__symbol_fallback] = STATE(189), + [sym__verbatim_begin] = STATE(906), + [aux_sym__text] = STATE(123), + [aux_sym__inline_repeat1] = STATE(79), + [anon_sym_LBRACE_] = ACTIONS(672), + [anon_sym__] = ACTIONS(674), + [anon_sym_LBRACE_STAR] = ACTIONS(676), + [anon_sym_STAR] = ACTIONS(678), + [anon_sym_BSLASH] = ACTIONS(680), + [sym_quotation_marks] = ACTIONS(682), + [sym_ellipsis] = ACTIONS(682), + [sym_em_dash] = ACTIONS(682), + [sym_en_dash] = ACTIONS(684), + [sym_backslash_escape] = ACTIONS(684), + [anon_sym_LT] = ACTIONS(686), + [anon_sym_LBRACE_EQ] = ACTIONS(688), + [anon_sym_LBRACE_PLUS] = ACTIONS(690), + [anon_sym_LBRACE_DASH] = ACTIONS(692), + [sym_symbol] = ACTIONS(682), + [anon_sym_LBRACE_CARET] = ACTIONS(694), + [anon_sym_CARET] = ACTIONS(694), + [anon_sym_LBRACE_TILDE] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_LBRACK_CARET] = ACTIONS(698), + [anon_sym_BANG_LBRACK] = ACTIONS(700), + [anon_sym_LBRACK] = ACTIONS(702), + [anon_sym_LBRACE2] = ACTIONS(684), + [anon_sym_DOLLAR] = ACTIONS(704), + [anon_sym_TODO] = ACTIONS(706), + [anon_sym_WIP] = ACTIONS(706), + [anon_sym_NOTE] = ACTIONS(708), + [anon_sym_INFO] = ACTIONS(708), + [anon_sym_XXX] = ACTIONS(708), + [sym_fixme] = ACTIONS(682), + [anon_sym_PIPE] = ACTIONS(682), + [anon_sym_BQUOTE] = ACTIONS(41), + [sym__whitespace1] = ACTIONS(710), + [sym__newline] = ACTIONS(712), + [aux_sym__text_token1] = ACTIONS(714), + }, + [87] = { + [sym__inline] = STATE(683), + [sym__element] = STATE(94), + [sym_emphasis] = STATE(201), + [sym_emphasis_begin] = STATE(116), + [sym_strong] = STATE(201), + [sym_strong_begin] = STATE(117), + [sym__hard_line_break] = STATE(201), + [sym_hard_line_break] = STATE(201), + [sym__smart_punctuation] = STATE(201), + [sym_autolink] = STATE(201), + [sym_highlighted] = STATE(201), + [sym_insert] = STATE(201), + [sym_delete] = STATE(201), + [sym_superscript] = STATE(201), + [sym_subscript] = STATE(201), + [sym_footnote_reference] = STATE(201), + [sym__image] = STATE(201), + [sym_full_reference_image] = STATE(201), + [sym_collapsed_reference_image] = STATE(201), + [sym_inline_image] = STATE(201), + [sym__image_description] = STATE(656), + [sym__link] = STATE(201), + [sym_full_reference_link] = STATE(201), + [sym_collapsed_reference_link] = STATE(201), + [sym_inline_link] = STATE(201), + [sym_link_text] = STATE(655), + [sym__comment_with_spaces] = STATE(201), + [sym_span] = STATE(201), + [sym_raw_inline] = STATE(201), + [sym_math] = STATE(201), + [sym_verbatim] = STATE(201), + [sym__todo_highlights] = STATE(201), + [sym_todo] = STATE(201), + [sym_note] = STATE(201), + [sym__symbol_fallback] = STATE(201), + [sym__verbatim_begin] = STATE(888), + [aux_sym__text] = STATE(153), + [aux_sym__inline_repeat1] = STATE(94), + [anon_sym_LBRACE_] = ACTIONS(916), + [anon_sym__] = ACTIONS(918), + [anon_sym_LBRACE_STAR] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(922), + [anon_sym_BSLASH] = ACTIONS(924), + [sym_quotation_marks] = ACTIONS(926), + [sym_ellipsis] = ACTIONS(926), + [sym_em_dash] = ACTIONS(926), + [sym_en_dash] = ACTIONS(928), + [sym_backslash_escape] = ACTIONS(928), + [anon_sym_LT] = ACTIONS(930), + [anon_sym_LBRACE_EQ] = ACTIONS(932), + [anon_sym_LBRACE_PLUS] = ACTIONS(934), + [anon_sym_LBRACE_DASH] = ACTIONS(936), + [sym_symbol] = ACTIONS(926), + [anon_sym_LBRACE_CARET] = ACTIONS(938), + [anon_sym_CARET] = ACTIONS(938), + [anon_sym_LBRACE_TILDE] = ACTIONS(940), + [anon_sym_TILDE] = ACTIONS(940), + [anon_sym_LBRACK_CARET] = ACTIONS(942), + [anon_sym_BANG_LBRACK] = ACTIONS(944), + [anon_sym_LBRACK] = ACTIONS(946), + [anon_sym_LBRACE2] = ACTIONS(928), + [anon_sym_DOLLAR] = ACTIONS(948), + [anon_sym_TODO] = ACTIONS(950), + [anon_sym_WIP] = ACTIONS(950), + [anon_sym_NOTE] = ACTIONS(952), + [anon_sym_INFO] = ACTIONS(952), + [anon_sym_XXX] = ACTIONS(952), + [sym_fixme] = ACTIONS(926), + [anon_sym_PIPE] = ACTIONS(926), + [anon_sym_BQUOTE] = ACTIONS(41), + [sym__whitespace1] = ACTIONS(954), + [sym__newline] = ACTIONS(956), + [aux_sym__text_token1] = ACTIONS(958), + }, + [88] = { + [sym__inline] = STATE(760), + [sym__element] = STATE(79), + [sym_emphasis] = STATE(189), + [sym_emphasis_begin] = STATE(92), + [sym_strong] = STATE(189), + [sym_strong_begin] = STATE(93), + [sym__hard_line_break] = STATE(189), + [sym_hard_line_break] = STATE(189), + [sym__smart_punctuation] = STATE(189), + [sym_autolink] = STATE(189), + [sym_highlighted] = STATE(189), + [sym_insert] = STATE(189), + [sym_delete] = STATE(189), + [sym_superscript] = STATE(189), + [sym_subscript] = STATE(189), + [sym_footnote_reference] = STATE(189), + [sym__image] = STATE(189), + [sym_full_reference_image] = STATE(189), + [sym_collapsed_reference_image] = STATE(189), + [sym_inline_image] = STATE(189), + [sym__image_description] = STATE(660), + [sym__link] = STATE(189), + [sym_full_reference_link] = STATE(189), + [sym_collapsed_reference_link] = STATE(189), + [sym_inline_link] = STATE(189), + [sym_link_text] = STATE(646), + [sym__comment_with_spaces] = STATE(189), + [sym_span] = STATE(189), + [sym_raw_inline] = STATE(189), + [sym_math] = STATE(189), + [sym_verbatim] = STATE(189), + [sym__todo_highlights] = STATE(189), + [sym_todo] = STATE(189), + [sym_note] = STATE(189), + [sym__symbol_fallback] = STATE(189), + [sym__verbatim_begin] = STATE(906), + [aux_sym__text] = STATE(123), + [aux_sym__inline_repeat1] = STATE(79), + [anon_sym_LBRACE_] = ACTIONS(672), + [anon_sym__] = ACTIONS(674), + [anon_sym_LBRACE_STAR] = ACTIONS(676), + [anon_sym_STAR] = ACTIONS(678), + [anon_sym_BSLASH] = ACTIONS(680), + [sym_quotation_marks] = ACTIONS(682), + [sym_ellipsis] = ACTIONS(682), + [sym_em_dash] = ACTIONS(682), + [sym_en_dash] = ACTIONS(684), + [sym_backslash_escape] = ACTIONS(684), + [anon_sym_LT] = ACTIONS(686), + [anon_sym_LBRACE_EQ] = ACTIONS(688), + [anon_sym_LBRACE_PLUS] = ACTIONS(690), + [anon_sym_LBRACE_DASH] = ACTIONS(692), + [sym_symbol] = ACTIONS(682), + [anon_sym_LBRACE_CARET] = ACTIONS(694), + [anon_sym_CARET] = ACTIONS(694), + [anon_sym_LBRACE_TILDE] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_LBRACK_CARET] = ACTIONS(698), + [anon_sym_BANG_LBRACK] = ACTIONS(700), + [anon_sym_LBRACK] = ACTIONS(702), + [anon_sym_LBRACE2] = ACTIONS(684), + [anon_sym_DOLLAR] = ACTIONS(704), + [anon_sym_TODO] = ACTIONS(706), + [anon_sym_WIP] = ACTIONS(706), + [anon_sym_NOTE] = ACTIONS(708), + [anon_sym_INFO] = ACTIONS(708), + [anon_sym_XXX] = ACTIONS(708), + [sym_fixme] = ACTIONS(682), + [anon_sym_PIPE] = ACTIONS(682), + [anon_sym_BQUOTE] = ACTIONS(41), + [sym__whitespace1] = ACTIONS(710), + [sym__newline] = ACTIONS(712), + [aux_sym__text_token1] = ACTIONS(714), + }, + [89] = { + [sym__inline] = STATE(681), + [sym__element] = STATE(94), + [sym_emphasis] = STATE(201), + [sym_emphasis_begin] = STATE(116), + [sym_strong] = STATE(201), + [sym_strong_begin] = STATE(117), + [sym__hard_line_break] = STATE(201), + [sym_hard_line_break] = STATE(201), + [sym__smart_punctuation] = STATE(201), + [sym_autolink] = STATE(201), + [sym_highlighted] = STATE(201), + [sym_insert] = STATE(201), + [sym_delete] = STATE(201), + [sym_superscript] = STATE(201), + [sym_subscript] = STATE(201), + [sym_footnote_reference] = STATE(201), + [sym__image] = STATE(201), + [sym_full_reference_image] = STATE(201), + [sym_collapsed_reference_image] = STATE(201), + [sym_inline_image] = STATE(201), + [sym__image_description] = STATE(656), + [sym__link] = STATE(201), + [sym_full_reference_link] = STATE(201), + [sym_collapsed_reference_link] = STATE(201), + [sym_inline_link] = STATE(201), + [sym_link_text] = STATE(655), + [sym__comment_with_spaces] = STATE(201), + [sym_span] = STATE(201), + [sym_raw_inline] = STATE(201), + [sym_math] = STATE(201), + [sym_verbatim] = STATE(201), + [sym__todo_highlights] = STATE(201), + [sym_todo] = STATE(201), + [sym_note] = STATE(201), + [sym__symbol_fallback] = STATE(201), + [sym__verbatim_begin] = STATE(888), + [aux_sym__text] = STATE(153), + [aux_sym__inline_repeat1] = STATE(94), + [anon_sym_LBRACE_] = ACTIONS(916), + [anon_sym__] = ACTIONS(918), + [anon_sym_LBRACE_STAR] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(922), + [anon_sym_BSLASH] = ACTIONS(924), + [sym_quotation_marks] = ACTIONS(926), + [sym_ellipsis] = ACTIONS(926), + [sym_em_dash] = ACTIONS(926), + [sym_en_dash] = ACTIONS(928), + [sym_backslash_escape] = ACTIONS(928), + [anon_sym_LT] = ACTIONS(930), + [anon_sym_LBRACE_EQ] = ACTIONS(932), + [anon_sym_LBRACE_PLUS] = ACTIONS(934), + [anon_sym_LBRACE_DASH] = ACTIONS(936), + [sym_symbol] = ACTIONS(926), + [anon_sym_LBRACE_CARET] = ACTIONS(938), + [anon_sym_CARET] = ACTIONS(938), + [anon_sym_LBRACE_TILDE] = ACTIONS(940), + [anon_sym_TILDE] = ACTIONS(940), + [anon_sym_LBRACK_CARET] = ACTIONS(942), + [anon_sym_BANG_LBRACK] = ACTIONS(944), + [anon_sym_LBRACK] = ACTIONS(946), + [anon_sym_LBRACE2] = ACTIONS(928), + [anon_sym_DOLLAR] = ACTIONS(948), + [anon_sym_TODO] = ACTIONS(950), + [anon_sym_WIP] = ACTIONS(950), + [anon_sym_NOTE] = ACTIONS(952), + [anon_sym_INFO] = ACTIONS(952), + [anon_sym_XXX] = ACTIONS(952), + [sym_fixme] = ACTIONS(926), + [anon_sym_PIPE] = ACTIONS(926), + [anon_sym_BQUOTE] = ACTIONS(41), + [sym__whitespace1] = ACTIONS(954), + [sym__newline] = ACTIONS(956), + [aux_sym__text_token1] = ACTIONS(958), + }, + [90] = { + [sym__element] = STATE(90), + [sym_emphasis] = STATE(207), + [sym_emphasis_begin] = STATE(89), + [sym_strong] = STATE(207), + [sym_strong_begin] = STATE(72), + [sym__hard_line_break] = STATE(207), + [sym_hard_line_break] = STATE(207), + [sym__smart_punctuation] = STATE(207), + [sym_autolink] = STATE(207), + [sym_highlighted] = STATE(207), + [sym_insert] = STATE(207), + [sym_delete] = STATE(207), + [sym_superscript] = STATE(207), + [sym_subscript] = STATE(207), + [sym_footnote_reference] = STATE(207), + [sym__image] = STATE(207), + [sym_full_reference_image] = STATE(207), + [sym_collapsed_reference_image] = STATE(207), + [sym_inline_image] = STATE(207), + [sym__image_description] = STATE(666), + [sym__link] = STATE(207), + [sym_full_reference_link] = STATE(207), + [sym_collapsed_reference_link] = STATE(207), + [sym_inline_link] = STATE(207), + [sym_link_text] = STATE(667), + [sym__comment_with_spaces] = STATE(207), + [sym_span] = STATE(207), + [sym_raw_inline] = STATE(207), + [sym_math] = STATE(207), + [sym_verbatim] = STATE(207), + [sym__todo_highlights] = STATE(207), + [sym_todo] = STATE(207), + [sym_note] = STATE(207), + [sym__symbol_fallback] = STATE(207), + [sym__verbatim_begin] = STATE(852), + [aux_sym__text] = STATE(139), + [aux_sym__inline_repeat1] = STATE(90), + [anon_sym_LBRACE_] = ACTIONS(1073), + [anon_sym__] = ACTIONS(1076), + [anon_sym_LBRACE_STAR] = ACTIONS(1079), + [anon_sym_STAR] = ACTIONS(1082), + [anon_sym_BSLASH] = ACTIONS(1085), + [sym_quotation_marks] = ACTIONS(1088), + [sym_ellipsis] = ACTIONS(1088), + [sym_em_dash] = ACTIONS(1088), + [sym_en_dash] = ACTIONS(1091), + [sym_backslash_escape] = ACTIONS(1091), + [anon_sym_LT] = ACTIONS(1094), + [anon_sym_LBRACE_EQ] = ACTIONS(1097), + [anon_sym_LBRACE_PLUS] = ACTIONS(1100), + [anon_sym_LBRACE_DASH] = ACTIONS(1103), + [anon_sym_DASH_RBRACE] = ACTIONS(613), + [sym_symbol] = ACTIONS(1088), + [anon_sym_LBRACE_CARET] = ACTIONS(1106), + [anon_sym_CARET] = ACTIONS(1106), + [anon_sym_LBRACE_TILDE] = ACTIONS(1109), + [anon_sym_TILDE] = ACTIONS(1109), + [anon_sym_LBRACK_CARET] = ACTIONS(1112), + [anon_sym_BANG_LBRACK] = ACTIONS(1115), + [anon_sym_LBRACK] = ACTIONS(1118), + [anon_sym_LBRACE2] = ACTIONS(1091), + [anon_sym_DOLLAR] = ACTIONS(1121), + [anon_sym_TODO] = ACTIONS(1124), + [anon_sym_WIP] = ACTIONS(1124), + [anon_sym_NOTE] = ACTIONS(1127), + [anon_sym_INFO] = ACTIONS(1127), + [anon_sym_XXX] = ACTIONS(1127), + [sym_fixme] = ACTIONS(1088), + [anon_sym_PIPE] = ACTIONS(1088), + [anon_sym_BQUOTE] = ACTIONS(660), + [sym__whitespace1] = ACTIONS(1130), + [sym__newline] = ACTIONS(1133), + [aux_sym__text_token1] = ACTIONS(1136), + }, + [91] = { + [sym__element] = STATE(91), + [sym_emphasis] = STATE(201), + [sym_emphasis_begin] = STATE(116), + [sym_strong] = STATE(201), + [sym_strong_begin] = STATE(117), + [sym__hard_line_break] = STATE(201), + [sym_hard_line_break] = STATE(201), + [sym__smart_punctuation] = STATE(201), + [sym_autolink] = STATE(201), + [sym_highlighted] = STATE(201), + [sym_insert] = STATE(201), + [sym_delete] = STATE(201), + [sym_superscript] = STATE(201), + [sym_subscript] = STATE(201), + [sym_footnote_reference] = STATE(201), + [sym__image] = STATE(201), + [sym_full_reference_image] = STATE(201), + [sym_collapsed_reference_image] = STATE(201), + [sym_inline_image] = STATE(201), + [sym__image_description] = STATE(656), + [sym__link] = STATE(201), + [sym_full_reference_link] = STATE(201), + [sym_collapsed_reference_link] = STATE(201), + [sym_inline_link] = STATE(201), + [sym_link_text] = STATE(655), + [sym__comment_with_spaces] = STATE(201), + [sym_span] = STATE(201), + [sym_raw_inline] = STATE(201), + [sym_math] = STATE(201), + [sym_verbatim] = STATE(201), + [sym__todo_highlights] = STATE(201), + [sym_todo] = STATE(201), + [sym_note] = STATE(201), + [sym__symbol_fallback] = STATE(201), + [sym__verbatim_begin] = STATE(888), + [aux_sym__text] = STATE(153), + [aux_sym__inline_repeat1] = STATE(91), + [anon_sym_LBRACE_] = ACTIONS(1139), + [anon_sym__] = ACTIONS(1142), + [aux_sym_emphasis_end_token1] = ACTIONS(613), + [anon_sym_LBRACE_STAR] = ACTIONS(1145), + [anon_sym_STAR] = ACTIONS(1148), + [anon_sym_BSLASH] = ACTIONS(1151), + [sym_quotation_marks] = ACTIONS(1154), + [sym_ellipsis] = ACTIONS(1154), + [sym_em_dash] = ACTIONS(1154), + [sym_en_dash] = ACTIONS(1157), + [sym_backslash_escape] = ACTIONS(1157), + [anon_sym_LT] = ACTIONS(1160), + [anon_sym_LBRACE_EQ] = ACTIONS(1163), + [anon_sym_LBRACE_PLUS] = ACTIONS(1166), + [anon_sym_LBRACE_DASH] = ACTIONS(1169), + [sym_symbol] = ACTIONS(1154), + [anon_sym_LBRACE_CARET] = ACTIONS(1172), + [anon_sym_CARET] = ACTIONS(1172), + [anon_sym_LBRACE_TILDE] = ACTIONS(1175), + [anon_sym_TILDE] = ACTIONS(1175), + [anon_sym_LBRACK_CARET] = ACTIONS(1178), + [anon_sym_BANG_LBRACK] = ACTIONS(1181), + [anon_sym_LBRACK] = ACTIONS(1184), + [anon_sym_LBRACE2] = ACTIONS(1157), + [anon_sym_DOLLAR] = ACTIONS(1187), + [anon_sym_TODO] = ACTIONS(1190), + [anon_sym_WIP] = ACTIONS(1190), + [anon_sym_NOTE] = ACTIONS(1193), + [anon_sym_INFO] = ACTIONS(1193), + [anon_sym_XXX] = ACTIONS(1193), + [sym_fixme] = ACTIONS(1154), + [anon_sym_PIPE] = ACTIONS(1154), + [anon_sym_BQUOTE] = ACTIONS(660), + [sym__whitespace1] = ACTIONS(1196), + [sym__newline] = ACTIONS(1199), + [aux_sym__text_token1] = ACTIONS(1202), + }, + [92] = { + [sym__inline] = STATE(692), + [sym__element] = STATE(94), + [sym_emphasis] = STATE(201), + [sym_emphasis_begin] = STATE(116), + [sym_strong] = STATE(201), + [sym_strong_begin] = STATE(117), + [sym__hard_line_break] = STATE(201), + [sym_hard_line_break] = STATE(201), + [sym__smart_punctuation] = STATE(201), + [sym_autolink] = STATE(201), + [sym_highlighted] = STATE(201), + [sym_insert] = STATE(201), + [sym_delete] = STATE(201), + [sym_superscript] = STATE(201), + [sym_subscript] = STATE(201), + [sym_footnote_reference] = STATE(201), + [sym__image] = STATE(201), + [sym_full_reference_image] = STATE(201), + [sym_collapsed_reference_image] = STATE(201), + [sym_inline_image] = STATE(201), + [sym__image_description] = STATE(656), + [sym__link] = STATE(201), + [sym_full_reference_link] = STATE(201), + [sym_collapsed_reference_link] = STATE(201), + [sym_inline_link] = STATE(201), + [sym_link_text] = STATE(655), + [sym__comment_with_spaces] = STATE(201), + [sym_span] = STATE(201), + [sym_raw_inline] = STATE(201), + [sym_math] = STATE(201), + [sym_verbatim] = STATE(201), + [sym__todo_highlights] = STATE(201), + [sym_todo] = STATE(201), + [sym_note] = STATE(201), + [sym__symbol_fallback] = STATE(201), + [sym__verbatim_begin] = STATE(888), + [aux_sym__text] = STATE(153), + [aux_sym__inline_repeat1] = STATE(94), + [anon_sym_LBRACE_] = ACTIONS(916), + [anon_sym__] = ACTIONS(918), + [anon_sym_LBRACE_STAR] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(922), + [anon_sym_BSLASH] = ACTIONS(924), + [sym_quotation_marks] = ACTIONS(926), + [sym_ellipsis] = ACTIONS(926), + [sym_em_dash] = ACTIONS(926), + [sym_en_dash] = ACTIONS(928), + [sym_backslash_escape] = ACTIONS(928), + [anon_sym_LT] = ACTIONS(930), + [anon_sym_LBRACE_EQ] = ACTIONS(932), + [anon_sym_LBRACE_PLUS] = ACTIONS(934), + [anon_sym_LBRACE_DASH] = ACTIONS(936), + [sym_symbol] = ACTIONS(926), + [anon_sym_LBRACE_CARET] = ACTIONS(938), + [anon_sym_CARET] = ACTIONS(938), + [anon_sym_LBRACE_TILDE] = ACTIONS(940), + [anon_sym_TILDE] = ACTIONS(940), + [anon_sym_LBRACK_CARET] = ACTIONS(942), + [anon_sym_BANG_LBRACK] = ACTIONS(944), + [anon_sym_LBRACK] = ACTIONS(946), + [anon_sym_LBRACE2] = ACTIONS(928), + [anon_sym_DOLLAR] = ACTIONS(948), + [anon_sym_TODO] = ACTIONS(950), + [anon_sym_WIP] = ACTIONS(950), + [anon_sym_NOTE] = ACTIONS(952), + [anon_sym_INFO] = ACTIONS(952), + [anon_sym_XXX] = ACTIONS(952), + [sym_fixme] = ACTIONS(926), + [anon_sym_PIPE] = ACTIONS(926), + [anon_sym_BQUOTE] = ACTIONS(41), + [sym__whitespace1] = ACTIONS(954), + [sym__newline] = ACTIONS(956), + [aux_sym__text_token1] = ACTIONS(958), + }, + [93] = { + [sym__inline] = STATE(693), + [sym__element] = STATE(73), + [sym_emphasis] = STATE(178), + [sym_emphasis_begin] = STATE(119), + [sym_strong] = STATE(178), + [sym_strong_begin] = STATE(121), + [sym__hard_line_break] = STATE(178), + [sym_hard_line_break] = STATE(178), + [sym__smart_punctuation] = STATE(178), + [sym_autolink] = STATE(178), + [sym_highlighted] = STATE(178), + [sym_insert] = STATE(178), + [sym_delete] = STATE(178), + [sym_superscript] = STATE(178), + [sym_subscript] = STATE(178), + [sym_footnote_reference] = STATE(178), + [sym__image] = STATE(178), + [sym_full_reference_image] = STATE(178), + [sym_collapsed_reference_image] = STATE(178), + [sym_inline_image] = STATE(178), + [sym__image_description] = STATE(651), + [sym__link] = STATE(178), + [sym_full_reference_link] = STATE(178), + [sym_collapsed_reference_link] = STATE(178), + [sym_inline_link] = STATE(178), + [sym_link_text] = STATE(650), + [sym__comment_with_spaces] = STATE(178), + [sym_span] = STATE(178), + [sym_raw_inline] = STATE(178), + [sym_math] = STATE(178), + [sym_verbatim] = STATE(178), + [sym__todo_highlights] = STATE(178), + [sym_todo] = STATE(178), + [sym_note] = STATE(178), + [sym__symbol_fallback] = STATE(178), + [sym__verbatim_begin] = STATE(897), + [aux_sym__text] = STATE(167), + [aux_sym__inline_repeat1] = STATE(73), + [anon_sym_LBRACE_] = ACTIONS(549), + [anon_sym__] = ACTIONS(551), + [anon_sym_LBRACE_STAR] = ACTIONS(553), + [anon_sym_STAR] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(557), + [sym_quotation_marks] = ACTIONS(559), + [sym_ellipsis] = ACTIONS(559), + [sym_em_dash] = ACTIONS(559), + [sym_en_dash] = ACTIONS(561), + [sym_backslash_escape] = ACTIONS(561), + [anon_sym_LT] = ACTIONS(563), + [anon_sym_LBRACE_EQ] = ACTIONS(565), + [anon_sym_LBRACE_PLUS] = ACTIONS(567), + [anon_sym_LBRACE_DASH] = ACTIONS(569), + [sym_symbol] = ACTIONS(559), + [anon_sym_LBRACE_CARET] = ACTIONS(571), + [anon_sym_CARET] = ACTIONS(571), + [anon_sym_LBRACE_TILDE] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(573), + [anon_sym_LBRACK_CARET] = ACTIONS(575), + [anon_sym_BANG_LBRACK] = ACTIONS(577), + [anon_sym_LBRACK] = ACTIONS(579), + [anon_sym_LBRACE2] = ACTIONS(561), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_TODO] = ACTIONS(583), + [anon_sym_WIP] = ACTIONS(583), + [anon_sym_NOTE] = ACTIONS(585), + [anon_sym_INFO] = ACTIONS(585), + [anon_sym_XXX] = ACTIONS(585), + [sym_fixme] = ACTIONS(559), + [anon_sym_PIPE] = ACTIONS(559), + [anon_sym_BQUOTE] = ACTIONS(41), + [sym__whitespace1] = ACTIONS(587), + [sym__newline] = ACTIONS(589), + [aux_sym__text_token1] = ACTIONS(591), + }, + [94] = { + [sym__element] = STATE(91), + [sym_emphasis] = STATE(201), + [sym_emphasis_begin] = STATE(116), + [sym_strong] = STATE(201), + [sym_strong_begin] = STATE(117), + [sym__hard_line_break] = STATE(201), + [sym_hard_line_break] = STATE(201), + [sym__smart_punctuation] = STATE(201), + [sym_autolink] = STATE(201), + [sym_highlighted] = STATE(201), + [sym_insert] = STATE(201), + [sym_delete] = STATE(201), + [sym_superscript] = STATE(201), + [sym_subscript] = STATE(201), + [sym_footnote_reference] = STATE(201), + [sym__image] = STATE(201), + [sym_full_reference_image] = STATE(201), + [sym_collapsed_reference_image] = STATE(201), + [sym_inline_image] = STATE(201), + [sym__image_description] = STATE(656), + [sym__link] = STATE(201), + [sym_full_reference_link] = STATE(201), + [sym_collapsed_reference_link] = STATE(201), + [sym_inline_link] = STATE(201), + [sym_link_text] = STATE(655), + [sym__comment_with_spaces] = STATE(201), + [sym_span] = STATE(201), + [sym_raw_inline] = STATE(201), + [sym_math] = STATE(201), + [sym_verbatim] = STATE(201), + [sym__todo_highlights] = STATE(201), + [sym_todo] = STATE(201), + [sym_note] = STATE(201), + [sym__symbol_fallback] = STATE(201), + [sym__verbatim_begin] = STATE(888), + [aux_sym__text] = STATE(153), + [aux_sym__inline_repeat1] = STATE(91), + [anon_sym_LBRACE_] = ACTIONS(916), + [anon_sym__] = ACTIONS(593), + [aux_sym_emphasis_end_token1] = ACTIONS(595), + [anon_sym_LBRACE_STAR] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(922), + [anon_sym_BSLASH] = ACTIONS(924), + [sym_quotation_marks] = ACTIONS(926), + [sym_ellipsis] = ACTIONS(926), + [sym_em_dash] = ACTIONS(926), + [sym_en_dash] = ACTIONS(928), + [sym_backslash_escape] = ACTIONS(928), + [anon_sym_LT] = ACTIONS(930), + [anon_sym_LBRACE_EQ] = ACTIONS(932), + [anon_sym_LBRACE_PLUS] = ACTIONS(934), + [anon_sym_LBRACE_DASH] = ACTIONS(936), + [sym_symbol] = ACTIONS(926), + [anon_sym_LBRACE_CARET] = ACTIONS(938), + [anon_sym_CARET] = ACTIONS(938), + [anon_sym_LBRACE_TILDE] = ACTIONS(940), + [anon_sym_TILDE] = ACTIONS(940), + [anon_sym_LBRACK_CARET] = ACTIONS(942), + [anon_sym_BANG_LBRACK] = ACTIONS(944), + [anon_sym_LBRACK] = ACTIONS(946), + [anon_sym_LBRACE2] = ACTIONS(928), + [anon_sym_DOLLAR] = ACTIONS(948), + [anon_sym_TODO] = ACTIONS(950), + [anon_sym_WIP] = ACTIONS(950), + [anon_sym_NOTE] = ACTIONS(952), + [anon_sym_INFO] = ACTIONS(952), + [anon_sym_XXX] = ACTIONS(952), + [sym_fixme] = ACTIONS(926), + [anon_sym_PIPE] = ACTIONS(926), + [anon_sym_BQUOTE] = ACTIONS(41), + [sym__whitespace1] = ACTIONS(1205), + [sym__newline] = ACTIONS(1207), + [aux_sym__text_token1] = ACTIONS(958), + }, + [95] = { + [sym__inline] = STATE(910), + [sym__element] = STATE(79), + [sym_emphasis] = STATE(189), + [sym_emphasis_begin] = STATE(92), + [sym_strong] = STATE(189), + [sym_strong_begin] = STATE(93), + [sym__hard_line_break] = STATE(189), + [sym_hard_line_break] = STATE(189), + [sym__smart_punctuation] = STATE(189), + [sym_autolink] = STATE(189), + [sym_highlighted] = STATE(189), + [sym_insert] = STATE(189), + [sym_delete] = STATE(189), + [sym_superscript] = STATE(189), + [sym_subscript] = STATE(189), + [sym_footnote_reference] = STATE(189), + [sym__image] = STATE(189), + [sym_full_reference_image] = STATE(189), + [sym_collapsed_reference_image] = STATE(189), + [sym_inline_image] = STATE(189), + [sym__image_description] = STATE(660), + [sym__link] = STATE(189), + [sym_full_reference_link] = STATE(189), + [sym_collapsed_reference_link] = STATE(189), + [sym_inline_link] = STATE(189), + [sym_link_text] = STATE(646), + [sym__comment_with_spaces] = STATE(189), + [sym_span] = STATE(189), + [sym_raw_inline] = STATE(189), + [sym_math] = STATE(189), + [sym_verbatim] = STATE(189), + [sym__todo_highlights] = STATE(189), + [sym_todo] = STATE(189), + [sym_note] = STATE(189), + [sym__symbol_fallback] = STATE(189), + [sym__verbatim_begin] = STATE(906), + [aux_sym__text] = STATE(123), + [aux_sym__inline_repeat1] = STATE(79), + [anon_sym_LBRACE_] = ACTIONS(672), + [anon_sym__] = ACTIONS(674), + [anon_sym_LBRACE_STAR] = ACTIONS(676), + [anon_sym_STAR] = ACTIONS(678), + [anon_sym_BSLASH] = ACTIONS(680), + [sym_quotation_marks] = ACTIONS(682), + [sym_ellipsis] = ACTIONS(682), + [sym_em_dash] = ACTIONS(682), + [sym_en_dash] = ACTIONS(684), + [sym_backslash_escape] = ACTIONS(684), + [anon_sym_LT] = ACTIONS(686), + [anon_sym_LBRACE_EQ] = ACTIONS(688), + [anon_sym_LBRACE_PLUS] = ACTIONS(690), + [anon_sym_LBRACE_DASH] = ACTIONS(692), + [sym_symbol] = ACTIONS(682), + [anon_sym_LBRACE_CARET] = ACTIONS(694), + [anon_sym_CARET] = ACTIONS(694), + [anon_sym_LBRACE_TILDE] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_LBRACK_CARET] = ACTIONS(698), + [anon_sym_BANG_LBRACK] = ACTIONS(700), + [anon_sym_LBRACK] = ACTIONS(702), + [anon_sym_LBRACE2] = ACTIONS(684), + [anon_sym_DOLLAR] = ACTIONS(704), + [anon_sym_TODO] = ACTIONS(706), + [anon_sym_WIP] = ACTIONS(706), + [anon_sym_NOTE] = ACTIONS(708), + [anon_sym_INFO] = ACTIONS(708), + [anon_sym_XXX] = ACTIONS(708), + [sym_fixme] = ACTIONS(682), + [anon_sym_PIPE] = ACTIONS(682), + [anon_sym_BQUOTE] = ACTIONS(41), + [sym__whitespace1] = ACTIONS(710), + [sym__newline] = ACTIONS(712), + [aux_sym__text_token1] = ACTIONS(714), + }, + [96] = { + [sym__element] = STATE(99), + [sym_emphasis] = STATE(182), + [sym_emphasis_begin] = STATE(103), + [sym_strong] = STATE(182), + [sym_strong_begin] = STATE(104), + [sym__hard_line_break] = STATE(182), + [sym_hard_line_break] = STATE(182), + [sym__smart_punctuation] = STATE(182), + [sym_autolink] = STATE(182), + [sym_highlighted] = STATE(182), + [sym_insert] = STATE(182), + [sym_delete] = STATE(182), + [sym_superscript] = STATE(182), + [sym_subscript] = STATE(182), + [sym_footnote_reference] = STATE(182), + [sym__image] = STATE(182), + [sym_full_reference_image] = STATE(182), + [sym_collapsed_reference_image] = STATE(182), + [sym_inline_image] = STATE(182), + [sym__image_description] = STATE(672), + [sym__link] = STATE(182), + [sym_full_reference_link] = STATE(182), + [sym_collapsed_reference_link] = STATE(182), + [sym_inline_link] = STATE(182), + [sym_link_text] = STATE(671), + [sym__comment_with_spaces] = STATE(182), + [sym_span] = STATE(182), + [sym_raw_inline] = STATE(182), + [sym_math] = STATE(182), + [sym_verbatim] = STATE(182), + [sym__todo_highlights] = STATE(182), + [sym_todo] = STATE(182), + [sym_note] = STATE(182), + [sym__symbol_fallback] = STATE(182), + [sym__verbatim_begin] = STATE(870), + [aux_sym__text] = STATE(150), + [aux_sym__inline_repeat1] = STATE(99), + [anon_sym_LBRACE_] = ACTIONS(1209), + [anon_sym__] = ACTIONS(1211), + [anon_sym_LBRACE_STAR] = ACTIONS(1213), + [anon_sym_STAR] = ACTIONS(1215), + [anon_sym_BSLASH] = ACTIONS(1217), + [sym_quotation_marks] = ACTIONS(1219), + [sym_ellipsis] = ACTIONS(1219), + [sym_em_dash] = ACTIONS(1219), + [sym_en_dash] = ACTIONS(1221), + [sym_backslash_escape] = ACTIONS(1221), + [anon_sym_LT] = ACTIONS(1223), + [anon_sym_LBRACE_EQ] = ACTIONS(1225), + [anon_sym_LBRACE_PLUS] = ACTIONS(1227), + [anon_sym_LBRACE_DASH] = ACTIONS(1229), + [sym_symbol] = ACTIONS(1219), + [anon_sym_LBRACE_CARET] = ACTIONS(1231), + [anon_sym_CARET] = ACTIONS(1231), + [anon_sym_LBRACE_TILDE] = ACTIONS(1233), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_TILDE_RBRACE] = ACTIONS(595), + [anon_sym_LBRACK_CARET] = ACTIONS(1235), + [anon_sym_BANG_LBRACK] = ACTIONS(1237), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LBRACE2] = ACTIONS(1221), + [anon_sym_DOLLAR] = ACTIONS(1241), + [anon_sym_TODO] = ACTIONS(1243), + [anon_sym_WIP] = ACTIONS(1243), + [anon_sym_NOTE] = ACTIONS(1245), + [anon_sym_INFO] = ACTIONS(1245), + [anon_sym_XXX] = ACTIONS(1245), + [sym_fixme] = ACTIONS(1219), + [anon_sym_PIPE] = ACTIONS(1219), + [anon_sym_BQUOTE] = ACTIONS(41), + [sym__whitespace1] = ACTIONS(1247), + [sym__newline] = ACTIONS(1249), + [aux_sym__text_token1] = ACTIONS(1251), + }, + [97] = { + [sym__inline] = STATE(697), + [sym__element] = STATE(94), + [sym_emphasis] = STATE(201), + [sym_emphasis_begin] = STATE(116), + [sym_strong] = STATE(201), + [sym_strong_begin] = STATE(117), + [sym__hard_line_break] = STATE(201), + [sym_hard_line_break] = STATE(201), + [sym__smart_punctuation] = STATE(201), + [sym_autolink] = STATE(201), + [sym_highlighted] = STATE(201), + [sym_insert] = STATE(201), + [sym_delete] = STATE(201), + [sym_superscript] = STATE(201), + [sym_subscript] = STATE(201), + [sym_footnote_reference] = STATE(201), + [sym__image] = STATE(201), + [sym_full_reference_image] = STATE(201), + [sym_collapsed_reference_image] = STATE(201), + [sym_inline_image] = STATE(201), + [sym__image_description] = STATE(656), + [sym__link] = STATE(201), + [sym_full_reference_link] = STATE(201), + [sym_collapsed_reference_link] = STATE(201), + [sym_inline_link] = STATE(201), + [sym_link_text] = STATE(655), + [sym__comment_with_spaces] = STATE(201), + [sym_span] = STATE(201), + [sym_raw_inline] = STATE(201), + [sym_math] = STATE(201), + [sym_verbatim] = STATE(201), + [sym__todo_highlights] = STATE(201), + [sym_todo] = STATE(201), + [sym_note] = STATE(201), + [sym__symbol_fallback] = STATE(201), + [sym__verbatim_begin] = STATE(888), + [aux_sym__text] = STATE(153), + [aux_sym__inline_repeat1] = STATE(94), + [anon_sym_LBRACE_] = ACTIONS(916), + [anon_sym__] = ACTIONS(918), + [anon_sym_LBRACE_STAR] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(922), + [anon_sym_BSLASH] = ACTIONS(924), + [sym_quotation_marks] = ACTIONS(926), + [sym_ellipsis] = ACTIONS(926), + [sym_em_dash] = ACTIONS(926), + [sym_en_dash] = ACTIONS(928), + [sym_backslash_escape] = ACTIONS(928), + [anon_sym_LT] = ACTIONS(930), + [anon_sym_LBRACE_EQ] = ACTIONS(932), + [anon_sym_LBRACE_PLUS] = ACTIONS(934), + [anon_sym_LBRACE_DASH] = ACTIONS(936), + [sym_symbol] = ACTIONS(926), + [anon_sym_LBRACE_CARET] = ACTIONS(938), + [anon_sym_CARET] = ACTIONS(938), + [anon_sym_LBRACE_TILDE] = ACTIONS(940), + [anon_sym_TILDE] = ACTIONS(940), + [anon_sym_LBRACK_CARET] = ACTIONS(942), + [anon_sym_BANG_LBRACK] = ACTIONS(944), + [anon_sym_LBRACK] = ACTIONS(946), + [anon_sym_LBRACE2] = ACTIONS(928), + [anon_sym_DOLLAR] = ACTIONS(948), + [anon_sym_TODO] = ACTIONS(950), + [anon_sym_WIP] = ACTIONS(950), + [anon_sym_NOTE] = ACTIONS(952), + [anon_sym_INFO] = ACTIONS(952), + [anon_sym_XXX] = ACTIONS(952), + [sym_fixme] = ACTIONS(926), + [anon_sym_PIPE] = ACTIONS(926), + [anon_sym_BQUOTE] = ACTIONS(41), + [sym__whitespace1] = ACTIONS(954), + [sym__newline] = ACTIONS(956), + [aux_sym__text_token1] = ACTIONS(958), + }, + [98] = { + [sym__element] = STATE(90), + [sym_emphasis] = STATE(207), + [sym_emphasis_begin] = STATE(89), + [sym_strong] = STATE(207), + [sym_strong_begin] = STATE(72), + [sym__hard_line_break] = STATE(207), + [sym_hard_line_break] = STATE(207), + [sym__smart_punctuation] = STATE(207), + [sym_autolink] = STATE(207), + [sym_highlighted] = STATE(207), + [sym_insert] = STATE(207), + [sym_delete] = STATE(207), + [sym_superscript] = STATE(207), + [sym_subscript] = STATE(207), + [sym_footnote_reference] = STATE(207), + [sym__image] = STATE(207), + [sym_full_reference_image] = STATE(207), + [sym_collapsed_reference_image] = STATE(207), + [sym_inline_image] = STATE(207), + [sym__image_description] = STATE(666), + [sym__link] = STATE(207), + [sym_full_reference_link] = STATE(207), + [sym_collapsed_reference_link] = STATE(207), + [sym_inline_link] = STATE(207), + [sym_link_text] = STATE(667), + [sym__comment_with_spaces] = STATE(207), + [sym_span] = STATE(207), + [sym_raw_inline] = STATE(207), + [sym_math] = STATE(207), + [sym_verbatim] = STATE(207), + [sym__todo_highlights] = STATE(207), + [sym_todo] = STATE(207), + [sym_note] = STATE(207), + [sym__symbol_fallback] = STATE(207), + [sym__verbatim_begin] = STATE(852), + [aux_sym__text] = STATE(139), + [aux_sym__inline_repeat1] = STATE(90), + [anon_sym_LBRACE_] = ACTIONS(1253), + [anon_sym__] = ACTIONS(1255), + [anon_sym_LBRACE_STAR] = ACTIONS(1257), + [anon_sym_STAR] = ACTIONS(1259), + [anon_sym_BSLASH] = ACTIONS(1261), + [sym_quotation_marks] = ACTIONS(1263), + [sym_ellipsis] = ACTIONS(1263), + [sym_em_dash] = ACTIONS(1263), + [sym_en_dash] = ACTIONS(1265), + [sym_backslash_escape] = ACTIONS(1265), + [anon_sym_LT] = ACTIONS(1267), + [anon_sym_LBRACE_EQ] = ACTIONS(1269), + [anon_sym_LBRACE_PLUS] = ACTIONS(1271), + [anon_sym_LBRACE_DASH] = ACTIONS(1273), + [anon_sym_DASH_RBRACE] = ACTIONS(595), + [sym_symbol] = ACTIONS(1263), + [anon_sym_LBRACE_CARET] = ACTIONS(1275), + [anon_sym_CARET] = ACTIONS(1275), + [anon_sym_LBRACE_TILDE] = ACTIONS(1277), + [anon_sym_TILDE] = ACTIONS(1277), + [anon_sym_LBRACK_CARET] = ACTIONS(1279), + [anon_sym_BANG_LBRACK] = ACTIONS(1281), + [anon_sym_LBRACK] = ACTIONS(1283), + [anon_sym_LBRACE2] = ACTIONS(1265), + [anon_sym_DOLLAR] = ACTIONS(1285), + [anon_sym_TODO] = ACTIONS(1287), + [anon_sym_WIP] = ACTIONS(1287), + [anon_sym_NOTE] = ACTIONS(1289), + [anon_sym_INFO] = ACTIONS(1289), + [anon_sym_XXX] = ACTIONS(1289), + [sym_fixme] = ACTIONS(1263), + [anon_sym_PIPE] = ACTIONS(1263), + [anon_sym_BQUOTE] = ACTIONS(41), + [sym__whitespace1] = ACTIONS(1291), + [sym__newline] = ACTIONS(1293), + [aux_sym__text_token1] = ACTIONS(1295), + }, + [99] = { + [sym__element] = STATE(99), + [sym_emphasis] = STATE(182), + [sym_emphasis_begin] = STATE(103), + [sym_strong] = STATE(182), + [sym_strong_begin] = STATE(104), + [sym__hard_line_break] = STATE(182), + [sym_hard_line_break] = STATE(182), + [sym__smart_punctuation] = STATE(182), + [sym_autolink] = STATE(182), + [sym_highlighted] = STATE(182), + [sym_insert] = STATE(182), + [sym_delete] = STATE(182), + [sym_superscript] = STATE(182), + [sym_subscript] = STATE(182), + [sym_footnote_reference] = STATE(182), + [sym__image] = STATE(182), + [sym_full_reference_image] = STATE(182), + [sym_collapsed_reference_image] = STATE(182), + [sym_inline_image] = STATE(182), + [sym__image_description] = STATE(672), + [sym__link] = STATE(182), + [sym_full_reference_link] = STATE(182), + [sym_collapsed_reference_link] = STATE(182), + [sym_inline_link] = STATE(182), + [sym_link_text] = STATE(671), + [sym__comment_with_spaces] = STATE(182), + [sym_span] = STATE(182), + [sym_raw_inline] = STATE(182), + [sym_math] = STATE(182), + [sym_verbatim] = STATE(182), + [sym__todo_highlights] = STATE(182), + [sym_todo] = STATE(182), + [sym_note] = STATE(182), + [sym__symbol_fallback] = STATE(182), + [sym__verbatim_begin] = STATE(870), + [aux_sym__text] = STATE(150), + [aux_sym__inline_repeat1] = STATE(99), + [anon_sym_LBRACE_] = ACTIONS(1297), + [anon_sym__] = ACTIONS(1300), + [anon_sym_LBRACE_STAR] = ACTIONS(1303), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_BSLASH] = ACTIONS(1309), + [sym_quotation_marks] = ACTIONS(1312), + [sym_ellipsis] = ACTIONS(1312), + [sym_em_dash] = ACTIONS(1312), + [sym_en_dash] = ACTIONS(1315), + [sym_backslash_escape] = ACTIONS(1315), + [anon_sym_LT] = ACTIONS(1318), + [anon_sym_LBRACE_EQ] = ACTIONS(1321), + [anon_sym_LBRACE_PLUS] = ACTIONS(1324), + [anon_sym_LBRACE_DASH] = ACTIONS(1327), + [sym_symbol] = ACTIONS(1312), + [anon_sym_LBRACE_CARET] = ACTIONS(1330), + [anon_sym_CARET] = ACTIONS(1330), + [anon_sym_LBRACE_TILDE] = ACTIONS(1333), + [anon_sym_TILDE] = ACTIONS(1336), + [anon_sym_TILDE_RBRACE] = ACTIONS(613), + [anon_sym_LBRACK_CARET] = ACTIONS(1339), + [anon_sym_BANG_LBRACK] = ACTIONS(1342), + [anon_sym_LBRACK] = ACTIONS(1345), + [anon_sym_LBRACE2] = ACTIONS(1315), + [anon_sym_DOLLAR] = ACTIONS(1348), + [anon_sym_TODO] = ACTIONS(1351), + [anon_sym_WIP] = ACTIONS(1351), + [anon_sym_NOTE] = ACTIONS(1354), + [anon_sym_INFO] = ACTIONS(1354), + [anon_sym_XXX] = ACTIONS(1354), + [sym_fixme] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1312), + [anon_sym_BQUOTE] = ACTIONS(660), + [sym__whitespace1] = ACTIONS(1357), + [sym__newline] = ACTIONS(1360), + [aux_sym__text_token1] = ACTIONS(1363), + }, + [100] = { + [sym__inline] = STATE(698), + [sym__element] = STATE(73), + [sym_emphasis] = STATE(178), + [sym_emphasis_begin] = STATE(119), + [sym_strong] = STATE(178), + [sym_strong_begin] = STATE(121), + [sym__hard_line_break] = STATE(178), + [sym_hard_line_break] = STATE(178), + [sym__smart_punctuation] = STATE(178), + [sym_autolink] = STATE(178), + [sym_highlighted] = STATE(178), + [sym_insert] = STATE(178), + [sym_delete] = STATE(178), + [sym_superscript] = STATE(178), + [sym_subscript] = STATE(178), + [sym_footnote_reference] = STATE(178), + [sym__image] = STATE(178), + [sym_full_reference_image] = STATE(178), + [sym_collapsed_reference_image] = STATE(178), + [sym_inline_image] = STATE(178), + [sym__image_description] = STATE(651), + [sym__link] = STATE(178), + [sym_full_reference_link] = STATE(178), + [sym_collapsed_reference_link] = STATE(178), + [sym_inline_link] = STATE(178), + [sym_link_text] = STATE(650), + [sym__comment_with_spaces] = STATE(178), + [sym_span] = STATE(178), + [sym_raw_inline] = STATE(178), + [sym_math] = STATE(178), + [sym_verbatim] = STATE(178), + [sym__todo_highlights] = STATE(178), + [sym_todo] = STATE(178), + [sym_note] = STATE(178), + [sym__symbol_fallback] = STATE(178), + [sym__verbatim_begin] = STATE(897), + [aux_sym__text] = STATE(167), + [aux_sym__inline_repeat1] = STATE(73), + [anon_sym_LBRACE_] = ACTIONS(549), + [anon_sym__] = ACTIONS(551), + [anon_sym_LBRACE_STAR] = ACTIONS(553), + [anon_sym_STAR] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(557), + [sym_quotation_marks] = ACTIONS(559), + [sym_ellipsis] = ACTIONS(559), + [sym_em_dash] = ACTIONS(559), + [sym_en_dash] = ACTIONS(561), + [sym_backslash_escape] = ACTIONS(561), + [anon_sym_LT] = ACTIONS(563), + [anon_sym_LBRACE_EQ] = ACTIONS(565), + [anon_sym_LBRACE_PLUS] = ACTIONS(567), + [anon_sym_LBRACE_DASH] = ACTIONS(569), + [sym_symbol] = ACTIONS(559), + [anon_sym_LBRACE_CARET] = ACTIONS(571), + [anon_sym_CARET] = ACTIONS(571), + [anon_sym_LBRACE_TILDE] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(573), + [anon_sym_LBRACK_CARET] = ACTIONS(575), + [anon_sym_BANG_LBRACK] = ACTIONS(577), + [anon_sym_LBRACK] = ACTIONS(579), + [anon_sym_LBRACE2] = ACTIONS(561), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_TODO] = ACTIONS(583), + [anon_sym_WIP] = ACTIONS(583), + [anon_sym_NOTE] = ACTIONS(585), + [anon_sym_INFO] = ACTIONS(585), + [anon_sym_XXX] = ACTIONS(585), + [sym_fixme] = ACTIONS(559), + [anon_sym_PIPE] = ACTIONS(559), + [anon_sym_BQUOTE] = ACTIONS(41), + [sym__whitespace1] = ACTIONS(587), + [sym__newline] = ACTIONS(589), + [aux_sym__text_token1] = ACTIONS(591), + }, + [101] = { + [sym__element] = STATE(81), + [sym_emphasis] = STATE(173), + [sym_emphasis_begin] = STATE(87), + [sym_strong] = STATE(173), + [sym_strong_begin] = STATE(76), + [sym__hard_line_break] = STATE(173), + [sym_hard_line_break] = STATE(173), + [sym__smart_punctuation] = STATE(173), + [sym_autolink] = STATE(173), + [sym_highlighted] = STATE(173), + [sym_insert] = STATE(173), + [sym_delete] = STATE(173), + [sym_superscript] = STATE(173), + [sym_subscript] = STATE(173), + [sym_footnote_reference] = STATE(173), + [sym__image] = STATE(173), + [sym_full_reference_image] = STATE(173), + [sym_collapsed_reference_image] = STATE(173), + [sym_inline_image] = STATE(173), + [sym__image_description] = STATE(647), + [sym__link] = STATE(173), + [sym_full_reference_link] = STATE(173), + [sym_collapsed_reference_link] = STATE(173), + [sym_inline_link] = STATE(173), + [sym_link_text] = STATE(648), + [sym__comment_with_spaces] = STATE(173), + [sym_span] = STATE(173), + [sym_raw_inline] = STATE(173), + [sym_math] = STATE(173), + [sym_verbatim] = STATE(173), + [sym__todo_highlights] = STATE(173), + [sym_todo] = STATE(173), + [sym_note] = STATE(173), + [sym__symbol_fallback] = STATE(173), + [sym__verbatim_begin] = STATE(843), + [aux_sym__text] = STATE(155), + [aux_sym__inline_repeat1] = STATE(81), + [anon_sym_LBRACE_] = ACTIONS(1366), + [anon_sym__] = ACTIONS(1368), + [anon_sym_LBRACE_STAR] = ACTIONS(1370), + [anon_sym_STAR] = ACTIONS(1372), + [anon_sym_BSLASH] = ACTIONS(1374), + [sym_quotation_marks] = ACTIONS(1376), + [sym_ellipsis] = ACTIONS(1376), + [sym_em_dash] = ACTIONS(1376), + [sym_en_dash] = ACTIONS(1378), + [sym_backslash_escape] = ACTIONS(1378), + [anon_sym_LT] = ACTIONS(1380), + [anon_sym_LBRACE_EQ] = ACTIONS(1382), + [anon_sym_LBRACE_PLUS] = ACTIONS(1384), + [anon_sym_PLUS_RBRACE] = ACTIONS(595), + [anon_sym_LBRACE_DASH] = ACTIONS(1386), + [sym_symbol] = ACTIONS(1376), + [anon_sym_LBRACE_CARET] = ACTIONS(1388), + [anon_sym_CARET] = ACTIONS(1388), + [anon_sym_LBRACE_TILDE] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1390), + [anon_sym_LBRACK_CARET] = ACTIONS(1392), + [anon_sym_BANG_LBRACK] = ACTIONS(1394), + [anon_sym_LBRACK] = ACTIONS(1396), + [anon_sym_LBRACE2] = ACTIONS(1378), + [anon_sym_DOLLAR] = ACTIONS(1398), + [anon_sym_TODO] = ACTIONS(1400), + [anon_sym_WIP] = ACTIONS(1400), + [anon_sym_NOTE] = ACTIONS(1402), + [anon_sym_INFO] = ACTIONS(1402), + [anon_sym_XXX] = ACTIONS(1402), + [sym_fixme] = ACTIONS(1376), + [anon_sym_PIPE] = ACTIONS(1376), + [anon_sym_BQUOTE] = ACTIONS(41), + [sym__whitespace1] = ACTIONS(1404), + [sym__newline] = ACTIONS(1406), + [aux_sym__text_token1] = ACTIONS(1408), + }, + [102] = { + [sym__inline] = STATE(865), + [sym__element] = STATE(79), + [sym_emphasis] = STATE(189), + [sym_emphasis_begin] = STATE(92), + [sym_strong] = STATE(189), + [sym_strong_begin] = STATE(93), + [sym__hard_line_break] = STATE(189), + [sym_hard_line_break] = STATE(189), + [sym__smart_punctuation] = STATE(189), + [sym_autolink] = STATE(189), + [sym_highlighted] = STATE(189), + [sym_insert] = STATE(189), + [sym_delete] = STATE(189), + [sym_superscript] = STATE(189), + [sym_subscript] = STATE(189), + [sym_footnote_reference] = STATE(189), + [sym__image] = STATE(189), + [sym_full_reference_image] = STATE(189), + [sym_collapsed_reference_image] = STATE(189), + [sym_inline_image] = STATE(189), + [sym__image_description] = STATE(660), + [sym__link] = STATE(189), + [sym_full_reference_link] = STATE(189), + [sym_collapsed_reference_link] = STATE(189), + [sym_inline_link] = STATE(189), + [sym_link_text] = STATE(646), + [sym__comment_with_spaces] = STATE(189), + [sym_span] = STATE(189), + [sym_raw_inline] = STATE(189), + [sym_math] = STATE(189), + [sym_verbatim] = STATE(189), + [sym__todo_highlights] = STATE(189), + [sym_todo] = STATE(189), + [sym_note] = STATE(189), + [sym__symbol_fallback] = STATE(189), + [sym__verbatim_begin] = STATE(906), + [aux_sym__text] = STATE(123), + [aux_sym__inline_repeat1] = STATE(79), + [anon_sym_LBRACE_] = ACTIONS(672), + [anon_sym__] = ACTIONS(674), + [anon_sym_LBRACE_STAR] = ACTIONS(676), + [anon_sym_STAR] = ACTIONS(678), + [anon_sym_BSLASH] = ACTIONS(680), + [sym_quotation_marks] = ACTIONS(682), + [sym_ellipsis] = ACTIONS(682), + [sym_em_dash] = ACTIONS(682), + [sym_en_dash] = ACTIONS(684), + [sym_backslash_escape] = ACTIONS(684), + [anon_sym_LT] = ACTIONS(686), + [anon_sym_LBRACE_EQ] = ACTIONS(688), + [anon_sym_LBRACE_PLUS] = ACTIONS(690), + [anon_sym_LBRACE_DASH] = ACTIONS(692), + [sym_symbol] = ACTIONS(682), + [anon_sym_LBRACE_CARET] = ACTIONS(694), + [anon_sym_CARET] = ACTIONS(694), + [anon_sym_LBRACE_TILDE] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_LBRACK_CARET] = ACTIONS(698), + [anon_sym_BANG_LBRACK] = ACTIONS(700), + [anon_sym_LBRACK] = ACTIONS(702), + [anon_sym_LBRACE2] = ACTIONS(684), + [anon_sym_DOLLAR] = ACTIONS(704), + [anon_sym_TODO] = ACTIONS(706), + [anon_sym_WIP] = ACTIONS(706), + [anon_sym_NOTE] = ACTIONS(708), + [anon_sym_INFO] = ACTIONS(708), + [anon_sym_XXX] = ACTIONS(708), + [sym_fixme] = ACTIONS(682), + [anon_sym_PIPE] = ACTIONS(682), + [anon_sym_BQUOTE] = ACTIONS(41), + [sym__whitespace1] = ACTIONS(710), + [sym__newline] = ACTIONS(712), + [aux_sym__text_token1] = ACTIONS(714), + }, + [103] = { + [sym__inline] = STATE(699), + [sym__element] = STATE(94), + [sym_emphasis] = STATE(201), + [sym_emphasis_begin] = STATE(116), + [sym_strong] = STATE(201), + [sym_strong_begin] = STATE(117), + [sym__hard_line_break] = STATE(201), + [sym_hard_line_break] = STATE(201), + [sym__smart_punctuation] = STATE(201), + [sym_autolink] = STATE(201), + [sym_highlighted] = STATE(201), + [sym_insert] = STATE(201), + [sym_delete] = STATE(201), + [sym_superscript] = STATE(201), + [sym_subscript] = STATE(201), + [sym_footnote_reference] = STATE(201), + [sym__image] = STATE(201), + [sym_full_reference_image] = STATE(201), + [sym_collapsed_reference_image] = STATE(201), + [sym_inline_image] = STATE(201), + [sym__image_description] = STATE(656), + [sym__link] = STATE(201), + [sym_full_reference_link] = STATE(201), + [sym_collapsed_reference_link] = STATE(201), + [sym_inline_link] = STATE(201), + [sym_link_text] = STATE(655), + [sym__comment_with_spaces] = STATE(201), + [sym_span] = STATE(201), + [sym_raw_inline] = STATE(201), + [sym_math] = STATE(201), + [sym_verbatim] = STATE(201), + [sym__todo_highlights] = STATE(201), + [sym_todo] = STATE(201), + [sym_note] = STATE(201), + [sym__symbol_fallback] = STATE(201), + [sym__verbatim_begin] = STATE(888), + [aux_sym__text] = STATE(153), + [aux_sym__inline_repeat1] = STATE(94), + [anon_sym_LBRACE_] = ACTIONS(916), + [anon_sym__] = ACTIONS(918), + [anon_sym_LBRACE_STAR] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(922), + [anon_sym_BSLASH] = ACTIONS(924), + [sym_quotation_marks] = ACTIONS(926), + [sym_ellipsis] = ACTIONS(926), + [sym_em_dash] = ACTIONS(926), + [sym_en_dash] = ACTIONS(928), + [sym_backslash_escape] = ACTIONS(928), + [anon_sym_LT] = ACTIONS(930), + [anon_sym_LBRACE_EQ] = ACTIONS(932), + [anon_sym_LBRACE_PLUS] = ACTIONS(934), + [anon_sym_LBRACE_DASH] = ACTIONS(936), + [sym_symbol] = ACTIONS(926), + [anon_sym_LBRACE_CARET] = ACTIONS(938), + [anon_sym_CARET] = ACTIONS(938), + [anon_sym_LBRACE_TILDE] = ACTIONS(940), + [anon_sym_TILDE] = ACTIONS(940), + [anon_sym_LBRACK_CARET] = ACTIONS(942), + [anon_sym_BANG_LBRACK] = ACTIONS(944), + [anon_sym_LBRACK] = ACTIONS(946), + [anon_sym_LBRACE2] = ACTIONS(928), + [anon_sym_DOLLAR] = ACTIONS(948), + [anon_sym_TODO] = ACTIONS(950), + [anon_sym_WIP] = ACTIONS(950), + [anon_sym_NOTE] = ACTIONS(952), + [anon_sym_INFO] = ACTIONS(952), + [anon_sym_XXX] = ACTIONS(952), + [sym_fixme] = ACTIONS(926), + [anon_sym_PIPE] = ACTIONS(926), + [anon_sym_BQUOTE] = ACTIONS(41), + [sym__whitespace1] = ACTIONS(954), + [sym__newline] = ACTIONS(956), + [aux_sym__text_token1] = ACTIONS(958), + }, + [104] = { + [sym__inline] = STATE(695), + [sym__element] = STATE(73), + [sym_emphasis] = STATE(178), + [sym_emphasis_begin] = STATE(119), + [sym_strong] = STATE(178), + [sym_strong_begin] = STATE(121), + [sym__hard_line_break] = STATE(178), + [sym_hard_line_break] = STATE(178), + [sym__smart_punctuation] = STATE(178), + [sym_autolink] = STATE(178), + [sym_highlighted] = STATE(178), + [sym_insert] = STATE(178), + [sym_delete] = STATE(178), + [sym_superscript] = STATE(178), + [sym_subscript] = STATE(178), + [sym_footnote_reference] = STATE(178), + [sym__image] = STATE(178), + [sym_full_reference_image] = STATE(178), + [sym_collapsed_reference_image] = STATE(178), + [sym_inline_image] = STATE(178), + [sym__image_description] = STATE(651), + [sym__link] = STATE(178), + [sym_full_reference_link] = STATE(178), + [sym_collapsed_reference_link] = STATE(178), + [sym_inline_link] = STATE(178), + [sym_link_text] = STATE(650), + [sym__comment_with_spaces] = STATE(178), + [sym_span] = STATE(178), + [sym_raw_inline] = STATE(178), + [sym_math] = STATE(178), + [sym_verbatim] = STATE(178), + [sym__todo_highlights] = STATE(178), + [sym_todo] = STATE(178), + [sym_note] = STATE(178), + [sym__symbol_fallback] = STATE(178), + [sym__verbatim_begin] = STATE(897), + [aux_sym__text] = STATE(167), + [aux_sym__inline_repeat1] = STATE(73), + [anon_sym_LBRACE_] = ACTIONS(549), + [anon_sym__] = ACTIONS(551), + [anon_sym_LBRACE_STAR] = ACTIONS(553), + [anon_sym_STAR] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(557), + [sym_quotation_marks] = ACTIONS(559), + [sym_ellipsis] = ACTIONS(559), + [sym_em_dash] = ACTIONS(559), + [sym_en_dash] = ACTIONS(561), + [sym_backslash_escape] = ACTIONS(561), + [anon_sym_LT] = ACTIONS(563), + [anon_sym_LBRACE_EQ] = ACTIONS(565), + [anon_sym_LBRACE_PLUS] = ACTIONS(567), + [anon_sym_LBRACE_DASH] = ACTIONS(569), + [sym_symbol] = ACTIONS(559), + [anon_sym_LBRACE_CARET] = ACTIONS(571), + [anon_sym_CARET] = ACTIONS(571), + [anon_sym_LBRACE_TILDE] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(573), + [anon_sym_LBRACK_CARET] = ACTIONS(575), + [anon_sym_BANG_LBRACK] = ACTIONS(577), + [anon_sym_LBRACK] = ACTIONS(579), + [anon_sym_LBRACE2] = ACTIONS(561), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_TODO] = ACTIONS(583), + [anon_sym_WIP] = ACTIONS(583), + [anon_sym_NOTE] = ACTIONS(585), + [anon_sym_INFO] = ACTIONS(585), + [anon_sym_XXX] = ACTIONS(585), + [sym_fixme] = ACTIONS(559), + [anon_sym_PIPE] = ACTIONS(559), + [anon_sym_BQUOTE] = ACTIONS(41), + [sym__whitespace1] = ACTIONS(587), + [sym__newline] = ACTIONS(589), + [aux_sym__text_token1] = ACTIONS(591), + }, + [105] = { + [sym__element] = STATE(105), + [sym_emphasis] = STATE(221), + [sym_emphasis_begin] = STATE(82), + [sym_strong] = STATE(221), + [sym_strong_begin] = STATE(83), + [sym__hard_line_break] = STATE(221), + [sym_hard_line_break] = STATE(221), + [sym__smart_punctuation] = STATE(221), + [sym_autolink] = STATE(221), + [sym_highlighted] = STATE(221), + [sym_insert] = STATE(221), + [sym_delete] = STATE(221), + [sym_superscript] = STATE(221), + [sym_subscript] = STATE(221), + [sym_footnote_reference] = STATE(221), + [sym__image] = STATE(221), + [sym_full_reference_image] = STATE(221), + [sym_collapsed_reference_image] = STATE(221), + [sym_inline_image] = STATE(221), + [sym__image_description] = STATE(669), + [sym__link] = STATE(221), + [sym_full_reference_link] = STATE(221), + [sym_collapsed_reference_link] = STATE(221), + [sym_inline_link] = STATE(221), + [sym_link_text] = STATE(657), + [sym__comment_with_spaces] = STATE(221), + [sym_span] = STATE(221), + [sym_raw_inline] = STATE(221), + [sym_math] = STATE(221), + [sym_verbatim] = STATE(221), + [sym__todo_highlights] = STATE(221), + [sym_todo] = STATE(221), + [sym_note] = STATE(221), + [sym__symbol_fallback] = STATE(221), + [sym__verbatim_begin] = STATE(834), + [aux_sym__text] = STATE(134), + [aux_sym__inline_repeat1] = STATE(105), + [anon_sym_LBRACE_] = ACTIONS(1410), + [anon_sym__] = ACTIONS(1413), + [anon_sym_LBRACE_STAR] = ACTIONS(1416), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_BSLASH] = ACTIONS(1422), + [sym_quotation_marks] = ACTIONS(1425), + [sym_ellipsis] = ACTIONS(1425), + [sym_em_dash] = ACTIONS(1425), + [sym_en_dash] = ACTIONS(1428), + [sym_backslash_escape] = ACTIONS(1428), + [anon_sym_LT] = ACTIONS(1431), + [anon_sym_LBRACE_EQ] = ACTIONS(1434), + [anon_sym_EQ_RBRACE] = ACTIONS(613), + [anon_sym_LBRACE_PLUS] = ACTIONS(1437), + [anon_sym_LBRACE_DASH] = ACTIONS(1440), + [sym_symbol] = ACTIONS(1425), + [anon_sym_LBRACE_CARET] = ACTIONS(1443), + [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_LBRACE_TILDE] = ACTIONS(1446), + [anon_sym_TILDE] = ACTIONS(1446), + [anon_sym_LBRACK_CARET] = ACTIONS(1449), + [anon_sym_BANG_LBRACK] = ACTIONS(1452), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LBRACE2] = ACTIONS(1428), + [anon_sym_DOLLAR] = ACTIONS(1458), + [anon_sym_TODO] = ACTIONS(1461), + [anon_sym_WIP] = ACTIONS(1461), + [anon_sym_NOTE] = ACTIONS(1464), + [anon_sym_INFO] = ACTIONS(1464), + [anon_sym_XXX] = ACTIONS(1464), + [sym_fixme] = ACTIONS(1425), + [anon_sym_PIPE] = ACTIONS(1425), + [anon_sym_BQUOTE] = ACTIONS(660), + [sym__whitespace1] = ACTIONS(1467), + [sym__newline] = ACTIONS(1470), + [aux_sym__text_token1] = ACTIONS(1473), + }, + [106] = { + [sym__inline] = STATE(812), + [sym__element] = STATE(79), + [sym_emphasis] = STATE(189), + [sym_emphasis_begin] = STATE(92), + [sym_strong] = STATE(189), + [sym_strong_begin] = STATE(93), + [sym__hard_line_break] = STATE(189), + [sym_hard_line_break] = STATE(189), + [sym__smart_punctuation] = STATE(189), + [sym_autolink] = STATE(189), + [sym_highlighted] = STATE(189), + [sym_insert] = STATE(189), + [sym_delete] = STATE(189), + [sym_superscript] = STATE(189), + [sym_subscript] = STATE(189), + [sym_footnote_reference] = STATE(189), + [sym__image] = STATE(189), + [sym_full_reference_image] = STATE(189), + [sym_collapsed_reference_image] = STATE(189), + [sym_inline_image] = STATE(189), + [sym__image_description] = STATE(660), + [sym__link] = STATE(189), + [sym_full_reference_link] = STATE(189), + [sym_collapsed_reference_link] = STATE(189), + [sym_inline_link] = STATE(189), + [sym_link_text] = STATE(646), + [sym__comment_with_spaces] = STATE(189), + [sym_span] = STATE(189), + [sym_raw_inline] = STATE(189), + [sym_math] = STATE(189), + [sym_verbatim] = STATE(189), + [sym__todo_highlights] = STATE(189), + [sym_todo] = STATE(189), + [sym_note] = STATE(189), + [sym__symbol_fallback] = STATE(189), + [sym__verbatim_begin] = STATE(906), + [aux_sym__text] = STATE(123), + [aux_sym__inline_repeat1] = STATE(79), + [anon_sym_LBRACE_] = ACTIONS(672), + [anon_sym__] = ACTIONS(674), + [anon_sym_LBRACE_STAR] = ACTIONS(676), + [anon_sym_STAR] = ACTIONS(678), + [anon_sym_BSLASH] = ACTIONS(680), + [sym_quotation_marks] = ACTIONS(682), + [sym_ellipsis] = ACTIONS(682), + [sym_em_dash] = ACTIONS(682), + [sym_en_dash] = ACTIONS(684), + [sym_backslash_escape] = ACTIONS(684), + [anon_sym_LT] = ACTIONS(686), + [anon_sym_LBRACE_EQ] = ACTIONS(688), + [anon_sym_LBRACE_PLUS] = ACTIONS(690), + [anon_sym_LBRACE_DASH] = ACTIONS(692), + [sym_symbol] = ACTIONS(682), + [anon_sym_LBRACE_CARET] = ACTIONS(694), + [anon_sym_CARET] = ACTIONS(694), + [anon_sym_LBRACE_TILDE] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_LBRACK_CARET] = ACTIONS(698), + [anon_sym_BANG_LBRACK] = ACTIONS(700), + [anon_sym_LBRACK] = ACTIONS(702), + [anon_sym_LBRACE2] = ACTIONS(684), + [anon_sym_DOLLAR] = ACTIONS(704), + [anon_sym_TODO] = ACTIONS(706), + [anon_sym_WIP] = ACTIONS(706), + [anon_sym_NOTE] = ACTIONS(708), + [anon_sym_INFO] = ACTIONS(708), + [anon_sym_XXX] = ACTIONS(708), + [sym_fixme] = ACTIONS(682), + [anon_sym_PIPE] = ACTIONS(682), + [anon_sym_BQUOTE] = ACTIONS(41), + [sym__whitespace1] = ACTIONS(710), + [sym__newline] = ACTIONS(712), + [aux_sym__text_token1] = ACTIONS(714), + }, + [107] = { + [sym__element] = STATE(77), + [sym_emphasis] = STATE(220), + [sym_emphasis_begin] = STATE(115), + [sym_strong] = STATE(220), + [sym_strong_begin] = STATE(114), + [sym__hard_line_break] = STATE(220), + [sym_hard_line_break] = STATE(220), + [sym__smart_punctuation] = STATE(220), + [sym_autolink] = STATE(220), + [sym_highlighted] = STATE(220), + [sym_insert] = STATE(220), + [sym_delete] = STATE(220), + [sym_superscript] = STATE(220), + [sym_subscript] = STATE(220), + [sym_footnote_reference] = STATE(220), + [sym__image] = STATE(220), + [sym_full_reference_image] = STATE(220), + [sym_collapsed_reference_image] = STATE(220), + [sym_inline_image] = STATE(220), + [sym__image_description] = STATE(653), + [sym__link] = STATE(220), + [sym_full_reference_link] = STATE(220), + [sym_collapsed_reference_link] = STATE(220), + [sym_inline_link] = STATE(220), + [sym_link_text] = STATE(661), + [sym__comment_with_spaces] = STATE(220), + [sym_span] = STATE(220), + [sym_raw_inline] = STATE(220), + [sym_math] = STATE(220), + [sym_verbatim] = STATE(220), + [sym__todo_highlights] = STATE(220), + [sym_todo] = STATE(220), + [sym_note] = STATE(220), + [sym__symbol_fallback] = STATE(220), + [sym__verbatim_begin] = STATE(878), + [aux_sym__text] = STATE(130), + [aux_sym__inline_repeat1] = STATE(77), + [ts_builtin_sym_end] = ACTIONS(595), + [anon_sym_LBRACE_] = ACTIONS(3), + [anon_sym__] = ACTIONS(5), + [anon_sym_LBRACE_STAR] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(9), + [anon_sym_BSLASH] = ACTIONS(11), + [sym_quotation_marks] = ACTIONS(13), + [sym_ellipsis] = ACTIONS(13), + [sym_em_dash] = ACTIONS(13), + [sym_en_dash] = ACTIONS(15), + [sym_backslash_escape] = ACTIONS(15), + [anon_sym_LT] = ACTIONS(17), + [anon_sym_LBRACE_EQ] = ACTIONS(19), + [anon_sym_LBRACE_PLUS] = ACTIONS(21), + [anon_sym_LBRACE_DASH] = ACTIONS(23), + [sym_symbol] = ACTIONS(13), + [anon_sym_LBRACE_CARET] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_LBRACE_TILDE] = ACTIONS(27), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_LBRACK_CARET] = ACTIONS(29), + [anon_sym_BANG_LBRACK] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACE2] = ACTIONS(15), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_TODO] = ACTIONS(37), + [anon_sym_WIP] = ACTIONS(37), + [anon_sym_NOTE] = ACTIONS(39), + [anon_sym_INFO] = ACTIONS(39), + [anon_sym_XXX] = ACTIONS(39), + [sym_fixme] = ACTIONS(13), + [anon_sym_PIPE] = ACTIONS(13), + [anon_sym_BQUOTE] = ACTIONS(41), + [sym__whitespace1] = ACTIONS(43), + [sym__newline] = ACTIONS(1476), + [aux_sym__text_token1] = ACTIONS(47), + }, + [108] = { + [sym__inline] = STATE(689), + [sym__element] = STATE(94), + [sym_emphasis] = STATE(201), + [sym_emphasis_begin] = STATE(116), + [sym_strong] = STATE(201), + [sym_strong_begin] = STATE(117), + [sym__hard_line_break] = STATE(201), + [sym_hard_line_break] = STATE(201), + [sym__smart_punctuation] = STATE(201), + [sym_autolink] = STATE(201), + [sym_highlighted] = STATE(201), + [sym_insert] = STATE(201), + [sym_delete] = STATE(201), + [sym_superscript] = STATE(201), + [sym_subscript] = STATE(201), + [sym_footnote_reference] = STATE(201), + [sym__image] = STATE(201), + [sym_full_reference_image] = STATE(201), + [sym_collapsed_reference_image] = STATE(201), + [sym_inline_image] = STATE(201), + [sym__image_description] = STATE(656), + [sym__link] = STATE(201), + [sym_full_reference_link] = STATE(201), + [sym_collapsed_reference_link] = STATE(201), + [sym_inline_link] = STATE(201), + [sym_link_text] = STATE(655), + [sym__comment_with_spaces] = STATE(201), + [sym_span] = STATE(201), + [sym_raw_inline] = STATE(201), + [sym_math] = STATE(201), + [sym_verbatim] = STATE(201), + [sym__todo_highlights] = STATE(201), + [sym_todo] = STATE(201), + [sym_note] = STATE(201), + [sym__symbol_fallback] = STATE(201), + [sym__verbatim_begin] = STATE(888), + [aux_sym__text] = STATE(153), + [aux_sym__inline_repeat1] = STATE(94), + [anon_sym_LBRACE_] = ACTIONS(916), + [anon_sym__] = ACTIONS(918), + [anon_sym_LBRACE_STAR] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(922), + [anon_sym_BSLASH] = ACTIONS(924), + [sym_quotation_marks] = ACTIONS(926), + [sym_ellipsis] = ACTIONS(926), + [sym_em_dash] = ACTIONS(926), + [sym_en_dash] = ACTIONS(928), + [sym_backslash_escape] = ACTIONS(928), + [anon_sym_LT] = ACTIONS(930), + [anon_sym_LBRACE_EQ] = ACTIONS(932), + [anon_sym_LBRACE_PLUS] = ACTIONS(934), + [anon_sym_LBRACE_DASH] = ACTIONS(936), + [sym_symbol] = ACTIONS(926), + [anon_sym_LBRACE_CARET] = ACTIONS(938), + [anon_sym_CARET] = ACTIONS(938), + [anon_sym_LBRACE_TILDE] = ACTIONS(940), + [anon_sym_TILDE] = ACTIONS(940), + [anon_sym_LBRACK_CARET] = ACTIONS(942), + [anon_sym_BANG_LBRACK] = ACTIONS(944), + [anon_sym_LBRACK] = ACTIONS(946), + [anon_sym_LBRACE2] = ACTIONS(928), + [anon_sym_DOLLAR] = ACTIONS(948), + [anon_sym_TODO] = ACTIONS(950), + [anon_sym_WIP] = ACTIONS(950), + [anon_sym_NOTE] = ACTIONS(952), + [anon_sym_INFO] = ACTIONS(952), + [anon_sym_XXX] = ACTIONS(952), + [sym_fixme] = ACTIONS(926), + [anon_sym_PIPE] = ACTIONS(926), + [anon_sym_BQUOTE] = ACTIONS(41), + [sym__whitespace1] = ACTIONS(954), + [sym__newline] = ACTIONS(956), + [aux_sym__text_token1] = ACTIONS(958), + }, + [109] = { + [sym__element] = STATE(105), + [sym_emphasis] = STATE(221), + [sym_emphasis_begin] = STATE(82), + [sym_strong] = STATE(221), + [sym_strong_begin] = STATE(83), + [sym__hard_line_break] = STATE(221), + [sym_hard_line_break] = STATE(221), + [sym__smart_punctuation] = STATE(221), + [sym_autolink] = STATE(221), + [sym_highlighted] = STATE(221), + [sym_insert] = STATE(221), + [sym_delete] = STATE(221), + [sym_superscript] = STATE(221), + [sym_subscript] = STATE(221), + [sym_footnote_reference] = STATE(221), + [sym__image] = STATE(221), + [sym_full_reference_image] = STATE(221), + [sym_collapsed_reference_image] = STATE(221), + [sym_inline_image] = STATE(221), + [sym__image_description] = STATE(669), + [sym__link] = STATE(221), + [sym_full_reference_link] = STATE(221), + [sym_collapsed_reference_link] = STATE(221), + [sym_inline_link] = STATE(221), + [sym_link_text] = STATE(657), + [sym__comment_with_spaces] = STATE(221), + [sym_span] = STATE(221), + [sym_raw_inline] = STATE(221), + [sym_math] = STATE(221), + [sym_verbatim] = STATE(221), + [sym__todo_highlights] = STATE(221), + [sym_todo] = STATE(221), + [sym_note] = STATE(221), + [sym__symbol_fallback] = STATE(221), + [sym__verbatim_begin] = STATE(834), + [aux_sym__text] = STATE(134), + [aux_sym__inline_repeat1] = STATE(105), + [anon_sym_LBRACE_] = ACTIONS(1478), + [anon_sym__] = ACTIONS(1480), + [anon_sym_LBRACE_STAR] = ACTIONS(1482), + [anon_sym_STAR] = ACTIONS(1484), + [anon_sym_BSLASH] = ACTIONS(1486), + [sym_quotation_marks] = ACTIONS(1488), + [sym_ellipsis] = ACTIONS(1488), + [sym_em_dash] = ACTIONS(1488), + [sym_en_dash] = ACTIONS(1490), + [sym_backslash_escape] = ACTIONS(1490), + [anon_sym_LT] = ACTIONS(1492), + [anon_sym_LBRACE_EQ] = ACTIONS(1494), + [anon_sym_EQ_RBRACE] = ACTIONS(595), + [anon_sym_LBRACE_PLUS] = ACTIONS(1496), + [anon_sym_LBRACE_DASH] = ACTIONS(1498), + [sym_symbol] = ACTIONS(1488), + [anon_sym_LBRACE_CARET] = ACTIONS(1500), + [anon_sym_CARET] = ACTIONS(1500), + [anon_sym_LBRACE_TILDE] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_LBRACK_CARET] = ACTIONS(1504), + [anon_sym_BANG_LBRACK] = ACTIONS(1506), + [anon_sym_LBRACK] = ACTIONS(1508), + [anon_sym_LBRACE2] = ACTIONS(1490), + [anon_sym_DOLLAR] = ACTIONS(1510), + [anon_sym_TODO] = ACTIONS(1512), + [anon_sym_WIP] = ACTIONS(1512), + [anon_sym_NOTE] = ACTIONS(1514), + [anon_sym_INFO] = ACTIONS(1514), + [anon_sym_XXX] = ACTIONS(1514), + [sym_fixme] = ACTIONS(1488), + [anon_sym_PIPE] = ACTIONS(1488), + [anon_sym_BQUOTE] = ACTIONS(41), + [sym__whitespace1] = ACTIONS(1516), + [sym__newline] = ACTIONS(1518), + [aux_sym__text_token1] = ACTIONS(1520), + }, + [110] = { + [sym__inline] = STATE(679), + [sym__element] = STATE(73), + [sym_emphasis] = STATE(178), + [sym_emphasis_begin] = STATE(119), + [sym_strong] = STATE(178), + [sym_strong_begin] = STATE(121), + [sym__hard_line_break] = STATE(178), + [sym_hard_line_break] = STATE(178), + [sym__smart_punctuation] = STATE(178), + [sym_autolink] = STATE(178), + [sym_highlighted] = STATE(178), + [sym_insert] = STATE(178), + [sym_delete] = STATE(178), + [sym_superscript] = STATE(178), + [sym_subscript] = STATE(178), + [sym_footnote_reference] = STATE(178), + [sym__image] = STATE(178), + [sym_full_reference_image] = STATE(178), + [sym_collapsed_reference_image] = STATE(178), + [sym_inline_image] = STATE(178), + [sym__image_description] = STATE(651), + [sym__link] = STATE(178), + [sym_full_reference_link] = STATE(178), + [sym_collapsed_reference_link] = STATE(178), + [sym_inline_link] = STATE(178), + [sym_link_text] = STATE(650), + [sym__comment_with_spaces] = STATE(178), + [sym_span] = STATE(178), + [sym_raw_inline] = STATE(178), + [sym_math] = STATE(178), + [sym_verbatim] = STATE(178), + [sym__todo_highlights] = STATE(178), + [sym_todo] = STATE(178), + [sym_note] = STATE(178), + [sym__symbol_fallback] = STATE(178), + [sym__verbatim_begin] = STATE(897), + [aux_sym__text] = STATE(167), + [aux_sym__inline_repeat1] = STATE(73), + [anon_sym_LBRACE_] = ACTIONS(549), + [anon_sym__] = ACTIONS(551), + [anon_sym_LBRACE_STAR] = ACTIONS(553), + [anon_sym_STAR] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(557), + [sym_quotation_marks] = ACTIONS(559), + [sym_ellipsis] = ACTIONS(559), + [sym_em_dash] = ACTIONS(559), + [sym_en_dash] = ACTIONS(561), + [sym_backslash_escape] = ACTIONS(561), + [anon_sym_LT] = ACTIONS(563), + [anon_sym_LBRACE_EQ] = ACTIONS(565), + [anon_sym_LBRACE_PLUS] = ACTIONS(567), + [anon_sym_LBRACE_DASH] = ACTIONS(569), + [sym_symbol] = ACTIONS(559), + [anon_sym_LBRACE_CARET] = ACTIONS(571), + [anon_sym_CARET] = ACTIONS(571), + [anon_sym_LBRACE_TILDE] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(573), + [anon_sym_LBRACK_CARET] = ACTIONS(575), + [anon_sym_BANG_LBRACK] = ACTIONS(577), + [anon_sym_LBRACK] = ACTIONS(579), + [anon_sym_LBRACE2] = ACTIONS(561), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_TODO] = ACTIONS(583), + [anon_sym_WIP] = ACTIONS(583), + [anon_sym_NOTE] = ACTIONS(585), + [anon_sym_INFO] = ACTIONS(585), + [anon_sym_XXX] = ACTIONS(585), + [sym_fixme] = ACTIONS(559), + [anon_sym_PIPE] = ACTIONS(559), + [anon_sym_BQUOTE] = ACTIONS(41), + [sym__whitespace1] = ACTIONS(587), + [sym__newline] = ACTIONS(589), + [aux_sym__text_token1] = ACTIONS(591), + }, + [111] = { + [sym__element] = STATE(111), + [sym_emphasis] = STATE(206), + [sym_emphasis_begin] = STATE(108), + [sym_strong] = STATE(206), + [sym_strong_begin] = STATE(110), + [sym__hard_line_break] = STATE(206), + [sym_hard_line_break] = STATE(206), + [sym__smart_punctuation] = STATE(206), + [sym_autolink] = STATE(206), + [sym_highlighted] = STATE(206), + [sym_insert] = STATE(206), + [sym_delete] = STATE(206), + [sym_superscript] = STATE(206), + [sym_subscript] = STATE(206), + [sym_footnote_reference] = STATE(206), + [sym__image] = STATE(206), + [sym_full_reference_image] = STATE(206), + [sym_collapsed_reference_image] = STATE(206), + [sym_inline_image] = STATE(206), + [sym__image_description] = STATE(664), + [sym__link] = STATE(206), + [sym_full_reference_link] = STATE(206), + [sym_collapsed_reference_link] = STATE(206), + [sym_inline_link] = STATE(206), + [sym_link_text] = STATE(663), + [sym__comment_with_spaces] = STATE(206), + [sym_span] = STATE(206), + [sym_raw_inline] = STATE(206), + [sym_math] = STATE(206), + [sym_verbatim] = STATE(206), + [sym__todo_highlights] = STATE(206), + [sym_todo] = STATE(206), + [sym_note] = STATE(206), + [sym__symbol_fallback] = STATE(206), + [sym__verbatim_begin] = STATE(879), + [aux_sym__text] = STATE(126), + [aux_sym__inline_repeat1] = STATE(111), + [anon_sym_LBRACE_] = ACTIONS(1522), + [anon_sym__] = ACTIONS(1525), + [anon_sym_LBRACE_STAR] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1531), + [anon_sym_BSLASH] = ACTIONS(1534), + [sym_quotation_marks] = ACTIONS(1537), + [sym_ellipsis] = ACTIONS(1537), + [sym_em_dash] = ACTIONS(1537), + [sym_en_dash] = ACTIONS(1540), + [sym_backslash_escape] = ACTIONS(1540), + [anon_sym_LT] = ACTIONS(1543), + [anon_sym_LBRACE_EQ] = ACTIONS(1546), + [anon_sym_LBRACE_PLUS] = ACTIONS(1549), + [anon_sym_LBRACE_DASH] = ACTIONS(1552), + [sym_symbol] = ACTIONS(1537), + [anon_sym_LBRACE_CARET] = ACTIONS(1555), + [anon_sym_CARET] = ACTIONS(1555), + [anon_sym_LBRACE_TILDE] = ACTIONS(1558), + [anon_sym_TILDE] = ACTIONS(1558), + [anon_sym_LBRACK_CARET] = ACTIONS(1561), + [anon_sym_RBRACK] = ACTIONS(613), + [anon_sym_BANG_LBRACK] = ACTIONS(1564), + [anon_sym_LBRACK] = ACTIONS(1567), + [anon_sym_LBRACE2] = ACTIONS(1540), + [anon_sym_DOLLAR] = ACTIONS(1570), + [anon_sym_TODO] = ACTIONS(1573), + [anon_sym_WIP] = ACTIONS(1573), + [anon_sym_NOTE] = ACTIONS(1576), + [anon_sym_INFO] = ACTIONS(1576), + [anon_sym_XXX] = ACTIONS(1576), + [sym_fixme] = ACTIONS(1537), + [anon_sym_PIPE] = ACTIONS(1537), + [anon_sym_BQUOTE] = ACTIONS(660), + [sym__whitespace1] = ACTIONS(1579), + [sym__newline] = ACTIONS(1582), + [aux_sym__text_token1] = ACTIONS(1585), + }, + [112] = { + [sym__element] = STATE(111), + [sym_emphasis] = STATE(206), + [sym_emphasis_begin] = STATE(108), + [sym_strong] = STATE(206), + [sym_strong_begin] = STATE(110), + [sym__hard_line_break] = STATE(206), + [sym_hard_line_break] = STATE(206), + [sym__smart_punctuation] = STATE(206), + [sym_autolink] = STATE(206), + [sym_highlighted] = STATE(206), + [sym_insert] = STATE(206), + [sym_delete] = STATE(206), + [sym_superscript] = STATE(206), + [sym_subscript] = STATE(206), + [sym_footnote_reference] = STATE(206), + [sym__image] = STATE(206), + [sym_full_reference_image] = STATE(206), + [sym_collapsed_reference_image] = STATE(206), + [sym_inline_image] = STATE(206), + [sym__image_description] = STATE(664), + [sym__link] = STATE(206), + [sym_full_reference_link] = STATE(206), + [sym_collapsed_reference_link] = STATE(206), + [sym_inline_link] = STATE(206), + [sym_link_text] = STATE(663), + [sym__comment_with_spaces] = STATE(206), + [sym_span] = STATE(206), + [sym_raw_inline] = STATE(206), + [sym_math] = STATE(206), + [sym_verbatim] = STATE(206), + [sym__todo_highlights] = STATE(206), + [sym_todo] = STATE(206), + [sym_note] = STATE(206), + [sym__symbol_fallback] = STATE(206), + [sym__verbatim_begin] = STATE(879), + [aux_sym__text] = STATE(126), + [aux_sym__inline_repeat1] = STATE(111), + [anon_sym_LBRACE_] = ACTIONS(1588), + [anon_sym__] = ACTIONS(1590), + [anon_sym_LBRACE_STAR] = ACTIONS(1592), + [anon_sym_STAR] = ACTIONS(1594), + [anon_sym_BSLASH] = ACTIONS(1596), + [sym_quotation_marks] = ACTIONS(1598), + [sym_ellipsis] = ACTIONS(1598), + [sym_em_dash] = ACTIONS(1598), + [sym_en_dash] = ACTIONS(1600), + [sym_backslash_escape] = ACTIONS(1600), + [anon_sym_LT] = ACTIONS(1602), + [anon_sym_LBRACE_EQ] = ACTIONS(1604), + [anon_sym_LBRACE_PLUS] = ACTIONS(1606), + [anon_sym_LBRACE_DASH] = ACTIONS(1608), + [sym_symbol] = ACTIONS(1598), + [anon_sym_LBRACE_CARET] = ACTIONS(1610), + [anon_sym_CARET] = ACTIONS(1610), + [anon_sym_LBRACE_TILDE] = ACTIONS(1612), + [anon_sym_TILDE] = ACTIONS(1612), + [anon_sym_LBRACK_CARET] = ACTIONS(1614), + [anon_sym_RBRACK] = ACTIONS(595), + [anon_sym_BANG_LBRACK] = ACTIONS(1616), + [anon_sym_LBRACK] = ACTIONS(1618), + [anon_sym_LBRACE2] = ACTIONS(1600), + [anon_sym_DOLLAR] = ACTIONS(1620), + [anon_sym_TODO] = ACTIONS(1622), + [anon_sym_WIP] = ACTIONS(1622), + [anon_sym_NOTE] = ACTIONS(1624), + [anon_sym_INFO] = ACTIONS(1624), + [anon_sym_XXX] = ACTIONS(1624), + [sym_fixme] = ACTIONS(1598), + [anon_sym_PIPE] = ACTIONS(1598), + [anon_sym_BQUOTE] = ACTIONS(41), + [sym__whitespace1] = ACTIONS(1626), + [sym__newline] = ACTIONS(1628), + [aux_sym__text_token1] = ACTIONS(1630), + }, + [113] = { + [sym__inline] = STATE(763), + [sym__element] = STATE(79), + [sym_emphasis] = STATE(189), + [sym_emphasis_begin] = STATE(92), + [sym_strong] = STATE(189), + [sym_strong_begin] = STATE(93), + [sym__hard_line_break] = STATE(189), + [sym_hard_line_break] = STATE(189), + [sym__smart_punctuation] = STATE(189), + [sym_autolink] = STATE(189), + [sym_highlighted] = STATE(189), + [sym_insert] = STATE(189), + [sym_delete] = STATE(189), + [sym_superscript] = STATE(189), + [sym_subscript] = STATE(189), + [sym_footnote_reference] = STATE(189), + [sym__image] = STATE(189), + [sym_full_reference_image] = STATE(189), + [sym_collapsed_reference_image] = STATE(189), + [sym_inline_image] = STATE(189), + [sym__image_description] = STATE(660), + [sym__link] = STATE(189), + [sym_full_reference_link] = STATE(189), + [sym_collapsed_reference_link] = STATE(189), + [sym_inline_link] = STATE(189), + [sym_link_text] = STATE(646), + [sym__comment_with_spaces] = STATE(189), + [sym_span] = STATE(189), + [sym_raw_inline] = STATE(189), + [sym_math] = STATE(189), + [sym_verbatim] = STATE(189), + [sym__todo_highlights] = STATE(189), + [sym_todo] = STATE(189), + [sym_note] = STATE(189), + [sym__symbol_fallback] = STATE(189), + [sym__verbatim_begin] = STATE(906), + [aux_sym__text] = STATE(123), + [aux_sym__inline_repeat1] = STATE(79), + [anon_sym_LBRACE_] = ACTIONS(672), + [anon_sym__] = ACTIONS(674), + [anon_sym_LBRACE_STAR] = ACTIONS(676), + [anon_sym_STAR] = ACTIONS(678), + [anon_sym_BSLASH] = ACTIONS(680), + [sym_quotation_marks] = ACTIONS(682), + [sym_ellipsis] = ACTIONS(682), + [sym_em_dash] = ACTIONS(682), + [sym_en_dash] = ACTIONS(684), + [sym_backslash_escape] = ACTIONS(684), + [anon_sym_LT] = ACTIONS(686), + [anon_sym_LBRACE_EQ] = ACTIONS(688), + [anon_sym_LBRACE_PLUS] = ACTIONS(690), + [anon_sym_LBRACE_DASH] = ACTIONS(692), + [sym_symbol] = ACTIONS(682), + [anon_sym_LBRACE_CARET] = ACTIONS(694), + [anon_sym_CARET] = ACTIONS(694), + [anon_sym_LBRACE_TILDE] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_LBRACK_CARET] = ACTIONS(698), + [anon_sym_BANG_LBRACK] = ACTIONS(700), + [anon_sym_LBRACK] = ACTIONS(702), + [anon_sym_LBRACE2] = ACTIONS(684), + [anon_sym_DOLLAR] = ACTIONS(704), + [anon_sym_TODO] = ACTIONS(706), + [anon_sym_WIP] = ACTIONS(706), + [anon_sym_NOTE] = ACTIONS(708), + [anon_sym_INFO] = ACTIONS(708), + [anon_sym_XXX] = ACTIONS(708), + [sym_fixme] = ACTIONS(682), + [anon_sym_PIPE] = ACTIONS(682), + [anon_sym_BQUOTE] = ACTIONS(41), + [sym__whitespace1] = ACTIONS(710), + [sym__newline] = ACTIONS(712), + [aux_sym__text_token1] = ACTIONS(714), + }, + [114] = { + [sym__inline] = STATE(687), + [sym__element] = STATE(73), + [sym_emphasis] = STATE(178), + [sym_emphasis_begin] = STATE(119), + [sym_strong] = STATE(178), + [sym_strong_begin] = STATE(121), + [sym__hard_line_break] = STATE(178), + [sym_hard_line_break] = STATE(178), + [sym__smart_punctuation] = STATE(178), + [sym_autolink] = STATE(178), + [sym_highlighted] = STATE(178), + [sym_insert] = STATE(178), + [sym_delete] = STATE(178), + [sym_superscript] = STATE(178), + [sym_subscript] = STATE(178), + [sym_footnote_reference] = STATE(178), + [sym__image] = STATE(178), + [sym_full_reference_image] = STATE(178), + [sym_collapsed_reference_image] = STATE(178), + [sym_inline_image] = STATE(178), + [sym__image_description] = STATE(651), + [sym__link] = STATE(178), + [sym_full_reference_link] = STATE(178), + [sym_collapsed_reference_link] = STATE(178), + [sym_inline_link] = STATE(178), + [sym_link_text] = STATE(650), + [sym__comment_with_spaces] = STATE(178), + [sym_span] = STATE(178), + [sym_raw_inline] = STATE(178), + [sym_math] = STATE(178), + [sym_verbatim] = STATE(178), + [sym__todo_highlights] = STATE(178), + [sym_todo] = STATE(178), + [sym_note] = STATE(178), + [sym__symbol_fallback] = STATE(178), + [sym__verbatim_begin] = STATE(897), + [aux_sym__text] = STATE(167), + [aux_sym__inline_repeat1] = STATE(73), + [anon_sym_LBRACE_] = ACTIONS(549), + [anon_sym__] = ACTIONS(551), + [anon_sym_LBRACE_STAR] = ACTIONS(553), + [anon_sym_STAR] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(557), + [sym_quotation_marks] = ACTIONS(559), + [sym_ellipsis] = ACTIONS(559), + [sym_em_dash] = ACTIONS(559), + [sym_en_dash] = ACTIONS(561), + [sym_backslash_escape] = ACTIONS(561), + [anon_sym_LT] = ACTIONS(563), + [anon_sym_LBRACE_EQ] = ACTIONS(565), + [anon_sym_LBRACE_PLUS] = ACTIONS(567), + [anon_sym_LBRACE_DASH] = ACTIONS(569), + [sym_symbol] = ACTIONS(559), + [anon_sym_LBRACE_CARET] = ACTIONS(571), + [anon_sym_CARET] = ACTIONS(571), + [anon_sym_LBRACE_TILDE] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(573), + [anon_sym_LBRACK_CARET] = ACTIONS(575), + [anon_sym_BANG_LBRACK] = ACTIONS(577), + [anon_sym_LBRACK] = ACTIONS(579), + [anon_sym_LBRACE2] = ACTIONS(561), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_TODO] = ACTIONS(583), + [anon_sym_WIP] = ACTIONS(583), + [anon_sym_NOTE] = ACTIONS(585), + [anon_sym_INFO] = ACTIONS(585), + [anon_sym_XXX] = ACTIONS(585), + [sym_fixme] = ACTIONS(559), + [anon_sym_PIPE] = ACTIONS(559), + [anon_sym_BQUOTE] = ACTIONS(41), + [sym__whitespace1] = ACTIONS(587), + [sym__newline] = ACTIONS(589), + [aux_sym__text_token1] = ACTIONS(591), + }, + [115] = { + [sym__inline] = STATE(688), + [sym__element] = STATE(94), + [sym_emphasis] = STATE(201), + [sym_emphasis_begin] = STATE(116), + [sym_strong] = STATE(201), + [sym_strong_begin] = STATE(117), + [sym__hard_line_break] = STATE(201), + [sym_hard_line_break] = STATE(201), + [sym__smart_punctuation] = STATE(201), + [sym_autolink] = STATE(201), + [sym_highlighted] = STATE(201), + [sym_insert] = STATE(201), + [sym_delete] = STATE(201), + [sym_superscript] = STATE(201), + [sym_subscript] = STATE(201), + [sym_footnote_reference] = STATE(201), + [sym__image] = STATE(201), + [sym_full_reference_image] = STATE(201), + [sym_collapsed_reference_image] = STATE(201), + [sym_inline_image] = STATE(201), + [sym__image_description] = STATE(656), + [sym__link] = STATE(201), + [sym_full_reference_link] = STATE(201), + [sym_collapsed_reference_link] = STATE(201), + [sym_inline_link] = STATE(201), + [sym_link_text] = STATE(655), + [sym__comment_with_spaces] = STATE(201), + [sym_span] = STATE(201), + [sym_raw_inline] = STATE(201), + [sym_math] = STATE(201), + [sym_verbatim] = STATE(201), + [sym__todo_highlights] = STATE(201), + [sym_todo] = STATE(201), + [sym_note] = STATE(201), + [sym__symbol_fallback] = STATE(201), + [sym__verbatim_begin] = STATE(888), + [aux_sym__text] = STATE(153), + [aux_sym__inline_repeat1] = STATE(94), + [anon_sym_LBRACE_] = ACTIONS(916), + [anon_sym__] = ACTIONS(918), + [anon_sym_LBRACE_STAR] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(922), + [anon_sym_BSLASH] = ACTIONS(924), + [sym_quotation_marks] = ACTIONS(926), + [sym_ellipsis] = ACTIONS(926), + [sym_em_dash] = ACTIONS(926), + [sym_en_dash] = ACTIONS(928), + [sym_backslash_escape] = ACTIONS(928), + [anon_sym_LT] = ACTIONS(930), + [anon_sym_LBRACE_EQ] = ACTIONS(932), + [anon_sym_LBRACE_PLUS] = ACTIONS(934), + [anon_sym_LBRACE_DASH] = ACTIONS(936), + [sym_symbol] = ACTIONS(926), + [anon_sym_LBRACE_CARET] = ACTIONS(938), + [anon_sym_CARET] = ACTIONS(938), + [anon_sym_LBRACE_TILDE] = ACTIONS(940), + [anon_sym_TILDE] = ACTIONS(940), + [anon_sym_LBRACK_CARET] = ACTIONS(942), + [anon_sym_BANG_LBRACK] = ACTIONS(944), + [anon_sym_LBRACK] = ACTIONS(946), + [anon_sym_LBRACE2] = ACTIONS(928), + [anon_sym_DOLLAR] = ACTIONS(948), + [anon_sym_TODO] = ACTIONS(950), + [anon_sym_WIP] = ACTIONS(950), + [anon_sym_NOTE] = ACTIONS(952), + [anon_sym_INFO] = ACTIONS(952), + [anon_sym_XXX] = ACTIONS(952), + [sym_fixme] = ACTIONS(926), + [anon_sym_PIPE] = ACTIONS(926), + [anon_sym_BQUOTE] = ACTIONS(41), + [sym__whitespace1] = ACTIONS(954), + [sym__newline] = ACTIONS(956), + [aux_sym__text_token1] = ACTIONS(958), + }, + [116] = { + [sym__inline] = STATE(686), + [sym__element] = STATE(94), + [sym_emphasis] = STATE(201), + [sym_emphasis_begin] = STATE(116), + [sym_strong] = STATE(201), + [sym_strong_begin] = STATE(117), + [sym__hard_line_break] = STATE(201), + [sym_hard_line_break] = STATE(201), + [sym__smart_punctuation] = STATE(201), + [sym_autolink] = STATE(201), + [sym_highlighted] = STATE(201), + [sym_insert] = STATE(201), + [sym_delete] = STATE(201), + [sym_superscript] = STATE(201), + [sym_subscript] = STATE(201), + [sym_footnote_reference] = STATE(201), + [sym__image] = STATE(201), + [sym_full_reference_image] = STATE(201), + [sym_collapsed_reference_image] = STATE(201), + [sym_inline_image] = STATE(201), + [sym__image_description] = STATE(656), + [sym__link] = STATE(201), + [sym_full_reference_link] = STATE(201), + [sym_collapsed_reference_link] = STATE(201), + [sym_inline_link] = STATE(201), + [sym_link_text] = STATE(655), + [sym__comment_with_spaces] = STATE(201), + [sym_span] = STATE(201), + [sym_raw_inline] = STATE(201), + [sym_math] = STATE(201), + [sym_verbatim] = STATE(201), + [sym__todo_highlights] = STATE(201), + [sym_todo] = STATE(201), + [sym_note] = STATE(201), + [sym__symbol_fallback] = STATE(201), + [sym__verbatim_begin] = STATE(888), + [aux_sym__text] = STATE(153), + [aux_sym__inline_repeat1] = STATE(94), + [anon_sym_LBRACE_] = ACTIONS(916), + [anon_sym__] = ACTIONS(918), + [anon_sym_LBRACE_STAR] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(922), + [anon_sym_BSLASH] = ACTIONS(924), + [sym_quotation_marks] = ACTIONS(926), + [sym_ellipsis] = ACTIONS(926), + [sym_em_dash] = ACTIONS(926), + [sym_en_dash] = ACTIONS(928), + [sym_backslash_escape] = ACTIONS(928), + [anon_sym_LT] = ACTIONS(930), + [anon_sym_LBRACE_EQ] = ACTIONS(932), + [anon_sym_LBRACE_PLUS] = ACTIONS(934), + [anon_sym_LBRACE_DASH] = ACTIONS(936), + [sym_symbol] = ACTIONS(926), + [anon_sym_LBRACE_CARET] = ACTIONS(938), + [anon_sym_CARET] = ACTIONS(938), + [anon_sym_LBRACE_TILDE] = ACTIONS(940), + [anon_sym_TILDE] = ACTIONS(940), + [anon_sym_LBRACK_CARET] = ACTIONS(942), + [anon_sym_BANG_LBRACK] = ACTIONS(944), + [anon_sym_LBRACK] = ACTIONS(946), + [anon_sym_LBRACE2] = ACTIONS(928), + [anon_sym_DOLLAR] = ACTIONS(948), + [anon_sym_TODO] = ACTIONS(950), + [anon_sym_WIP] = ACTIONS(950), + [anon_sym_NOTE] = ACTIONS(952), + [anon_sym_INFO] = ACTIONS(952), + [anon_sym_XXX] = ACTIONS(952), + [sym_fixme] = ACTIONS(926), + [anon_sym_PIPE] = ACTIONS(926), + [anon_sym_BQUOTE] = ACTIONS(41), + [sym__whitespace1] = ACTIONS(954), + [sym__newline] = ACTIONS(956), + [aux_sym__text_token1] = ACTIONS(958), + }, + [117] = { + [sym__inline] = STATE(685), + [sym__element] = STATE(73), + [sym_emphasis] = STATE(178), + [sym_emphasis_begin] = STATE(119), + [sym_strong] = STATE(178), + [sym_strong_begin] = STATE(121), + [sym__hard_line_break] = STATE(178), + [sym_hard_line_break] = STATE(178), + [sym__smart_punctuation] = STATE(178), + [sym_autolink] = STATE(178), + [sym_highlighted] = STATE(178), + [sym_insert] = STATE(178), + [sym_delete] = STATE(178), + [sym_superscript] = STATE(178), + [sym_subscript] = STATE(178), + [sym_footnote_reference] = STATE(178), + [sym__image] = STATE(178), + [sym_full_reference_image] = STATE(178), + [sym_collapsed_reference_image] = STATE(178), + [sym_inline_image] = STATE(178), + [sym__image_description] = STATE(651), + [sym__link] = STATE(178), + [sym_full_reference_link] = STATE(178), + [sym_collapsed_reference_link] = STATE(178), + [sym_inline_link] = STATE(178), + [sym_link_text] = STATE(650), + [sym__comment_with_spaces] = STATE(178), + [sym_span] = STATE(178), + [sym_raw_inline] = STATE(178), + [sym_math] = STATE(178), + [sym_verbatim] = STATE(178), + [sym__todo_highlights] = STATE(178), + [sym_todo] = STATE(178), + [sym_note] = STATE(178), + [sym__symbol_fallback] = STATE(178), + [sym__verbatim_begin] = STATE(897), + [aux_sym__text] = STATE(167), + [aux_sym__inline_repeat1] = STATE(73), + [anon_sym_LBRACE_] = ACTIONS(549), + [anon_sym__] = ACTIONS(551), + [anon_sym_LBRACE_STAR] = ACTIONS(553), + [anon_sym_STAR] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(557), + [sym_quotation_marks] = ACTIONS(559), + [sym_ellipsis] = ACTIONS(559), + [sym_em_dash] = ACTIONS(559), + [sym_en_dash] = ACTIONS(561), + [sym_backslash_escape] = ACTIONS(561), + [anon_sym_LT] = ACTIONS(563), + [anon_sym_LBRACE_EQ] = ACTIONS(565), + [anon_sym_LBRACE_PLUS] = ACTIONS(567), + [anon_sym_LBRACE_DASH] = ACTIONS(569), + [sym_symbol] = ACTIONS(559), + [anon_sym_LBRACE_CARET] = ACTIONS(571), + [anon_sym_CARET] = ACTIONS(571), + [anon_sym_LBRACE_TILDE] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(573), + [anon_sym_LBRACK_CARET] = ACTIONS(575), + [anon_sym_BANG_LBRACK] = ACTIONS(577), + [anon_sym_LBRACK] = ACTIONS(579), + [anon_sym_LBRACE2] = ACTIONS(561), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_TODO] = ACTIONS(583), + [anon_sym_WIP] = ACTIONS(583), + [anon_sym_NOTE] = ACTIONS(585), + [anon_sym_INFO] = ACTIONS(585), + [anon_sym_XXX] = ACTIONS(585), + [sym_fixme] = ACTIONS(559), + [anon_sym_PIPE] = ACTIONS(559), + [anon_sym_BQUOTE] = ACTIONS(41), + [sym__whitespace1] = ACTIONS(587), + [sym__newline] = ACTIONS(589), + [aux_sym__text_token1] = ACTIONS(591), + }, + [118] = { + [sym__inline] = STATE(774), + [sym__element] = STATE(79), + [sym_emphasis] = STATE(189), + [sym_emphasis_begin] = STATE(92), + [sym_strong] = STATE(189), + [sym_strong_begin] = STATE(93), + [sym__hard_line_break] = STATE(189), + [sym_hard_line_break] = STATE(189), + [sym__smart_punctuation] = STATE(189), + [sym_autolink] = STATE(189), + [sym_highlighted] = STATE(189), + [sym_insert] = STATE(189), + [sym_delete] = STATE(189), + [sym_superscript] = STATE(189), + [sym_subscript] = STATE(189), + [sym_footnote_reference] = STATE(189), + [sym__image] = STATE(189), + [sym_full_reference_image] = STATE(189), + [sym_collapsed_reference_image] = STATE(189), + [sym_inline_image] = STATE(189), + [sym__image_description] = STATE(660), + [sym__link] = STATE(189), + [sym_full_reference_link] = STATE(189), + [sym_collapsed_reference_link] = STATE(189), + [sym_inline_link] = STATE(189), + [sym_link_text] = STATE(646), + [sym__comment_with_spaces] = STATE(189), + [sym_span] = STATE(189), + [sym_raw_inline] = STATE(189), + [sym_math] = STATE(189), + [sym_verbatim] = STATE(189), + [sym__todo_highlights] = STATE(189), + [sym_todo] = STATE(189), + [sym_note] = STATE(189), + [sym__symbol_fallback] = STATE(189), + [sym__verbatim_begin] = STATE(906), + [aux_sym__text] = STATE(123), + [aux_sym__inline_repeat1] = STATE(79), + [anon_sym_LBRACE_] = ACTIONS(672), + [anon_sym__] = ACTIONS(674), + [anon_sym_LBRACE_STAR] = ACTIONS(676), + [anon_sym_STAR] = ACTIONS(678), + [anon_sym_BSLASH] = ACTIONS(680), + [sym_quotation_marks] = ACTIONS(682), + [sym_ellipsis] = ACTIONS(682), + [sym_em_dash] = ACTIONS(682), + [sym_en_dash] = ACTIONS(684), + [sym_backslash_escape] = ACTIONS(684), + [anon_sym_LT] = ACTIONS(686), + [anon_sym_LBRACE_EQ] = ACTIONS(688), + [anon_sym_LBRACE_PLUS] = ACTIONS(690), + [anon_sym_LBRACE_DASH] = ACTIONS(692), + [sym_symbol] = ACTIONS(682), + [anon_sym_LBRACE_CARET] = ACTIONS(694), + [anon_sym_CARET] = ACTIONS(694), + [anon_sym_LBRACE_TILDE] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_LBRACK_CARET] = ACTIONS(698), + [anon_sym_BANG_LBRACK] = ACTIONS(700), + [anon_sym_LBRACK] = ACTIONS(702), + [anon_sym_LBRACE2] = ACTIONS(684), + [anon_sym_DOLLAR] = ACTIONS(704), + [anon_sym_TODO] = ACTIONS(706), + [anon_sym_WIP] = ACTIONS(706), + [anon_sym_NOTE] = ACTIONS(708), + [anon_sym_INFO] = ACTIONS(708), + [anon_sym_XXX] = ACTIONS(708), + [sym_fixme] = ACTIONS(682), + [anon_sym_PIPE] = ACTIONS(682), + [anon_sym_BQUOTE] = ACTIONS(41), + [sym__whitespace1] = ACTIONS(710), + [sym__newline] = ACTIONS(712), + [aux_sym__text_token1] = ACTIONS(714), + }, + [119] = { + [sym__inline] = STATE(691), + [sym__element] = STATE(94), + [sym_emphasis] = STATE(201), + [sym_emphasis_begin] = STATE(116), + [sym_strong] = STATE(201), + [sym_strong_begin] = STATE(117), + [sym__hard_line_break] = STATE(201), + [sym_hard_line_break] = STATE(201), + [sym__smart_punctuation] = STATE(201), + [sym_autolink] = STATE(201), + [sym_highlighted] = STATE(201), + [sym_insert] = STATE(201), + [sym_delete] = STATE(201), + [sym_superscript] = STATE(201), + [sym_subscript] = STATE(201), + [sym_footnote_reference] = STATE(201), + [sym__image] = STATE(201), + [sym_full_reference_image] = STATE(201), + [sym_collapsed_reference_image] = STATE(201), + [sym_inline_image] = STATE(201), + [sym__image_description] = STATE(656), + [sym__link] = STATE(201), + [sym_full_reference_link] = STATE(201), + [sym_collapsed_reference_link] = STATE(201), + [sym_inline_link] = STATE(201), + [sym_link_text] = STATE(655), + [sym__comment_with_spaces] = STATE(201), + [sym_span] = STATE(201), + [sym_raw_inline] = STATE(201), + [sym_math] = STATE(201), + [sym_verbatim] = STATE(201), + [sym__todo_highlights] = STATE(201), + [sym_todo] = STATE(201), + [sym_note] = STATE(201), + [sym__symbol_fallback] = STATE(201), + [sym__verbatim_begin] = STATE(888), + [aux_sym__text] = STATE(153), + [aux_sym__inline_repeat1] = STATE(94), + [anon_sym_LBRACE_] = ACTIONS(916), + [anon_sym__] = ACTIONS(918), + [anon_sym_LBRACE_STAR] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(922), + [anon_sym_BSLASH] = ACTIONS(924), + [sym_quotation_marks] = ACTIONS(926), + [sym_ellipsis] = ACTIONS(926), + [sym_em_dash] = ACTIONS(926), + [sym_en_dash] = ACTIONS(928), + [sym_backslash_escape] = ACTIONS(928), + [anon_sym_LT] = ACTIONS(930), + [anon_sym_LBRACE_EQ] = ACTIONS(932), + [anon_sym_LBRACE_PLUS] = ACTIONS(934), + [anon_sym_LBRACE_DASH] = ACTIONS(936), + [sym_symbol] = ACTIONS(926), + [anon_sym_LBRACE_CARET] = ACTIONS(938), + [anon_sym_CARET] = ACTIONS(938), + [anon_sym_LBRACE_TILDE] = ACTIONS(940), + [anon_sym_TILDE] = ACTIONS(940), + [anon_sym_LBRACK_CARET] = ACTIONS(942), + [anon_sym_BANG_LBRACK] = ACTIONS(944), + [anon_sym_LBRACK] = ACTIONS(946), + [anon_sym_LBRACE2] = ACTIONS(928), + [anon_sym_DOLLAR] = ACTIONS(948), + [anon_sym_TODO] = ACTIONS(950), + [anon_sym_WIP] = ACTIONS(950), + [anon_sym_NOTE] = ACTIONS(952), + [anon_sym_INFO] = ACTIONS(952), + [anon_sym_XXX] = ACTIONS(952), + [sym_fixme] = ACTIONS(926), + [anon_sym_PIPE] = ACTIONS(926), + [anon_sym_BQUOTE] = ACTIONS(41), + [sym__whitespace1] = ACTIONS(954), + [sym__newline] = ACTIONS(956), + [aux_sym__text_token1] = ACTIONS(958), + }, + [120] = { + [sym__inline] = STATE(809), + [sym__element] = STATE(79), + [sym_emphasis] = STATE(189), + [sym_emphasis_begin] = STATE(92), + [sym_strong] = STATE(189), + [sym_strong_begin] = STATE(93), + [sym__hard_line_break] = STATE(189), + [sym_hard_line_break] = STATE(189), + [sym__smart_punctuation] = STATE(189), + [sym_autolink] = STATE(189), + [sym_highlighted] = STATE(189), + [sym_insert] = STATE(189), + [sym_delete] = STATE(189), + [sym_superscript] = STATE(189), + [sym_subscript] = STATE(189), + [sym_footnote_reference] = STATE(189), + [sym__image] = STATE(189), + [sym_full_reference_image] = STATE(189), + [sym_collapsed_reference_image] = STATE(189), + [sym_inline_image] = STATE(189), + [sym__image_description] = STATE(660), + [sym__link] = STATE(189), + [sym_full_reference_link] = STATE(189), + [sym_collapsed_reference_link] = STATE(189), + [sym_inline_link] = STATE(189), + [sym_link_text] = STATE(646), + [sym__comment_with_spaces] = STATE(189), + [sym_span] = STATE(189), + [sym_raw_inline] = STATE(189), + [sym_math] = STATE(189), + [sym_verbatim] = STATE(189), + [sym__todo_highlights] = STATE(189), + [sym_todo] = STATE(189), + [sym_note] = STATE(189), + [sym__symbol_fallback] = STATE(189), + [sym__verbatim_begin] = STATE(906), + [aux_sym__text] = STATE(123), + [aux_sym__inline_repeat1] = STATE(79), + [anon_sym_LBRACE_] = ACTIONS(672), + [anon_sym__] = ACTIONS(674), + [anon_sym_LBRACE_STAR] = ACTIONS(676), + [anon_sym_STAR] = ACTIONS(678), + [anon_sym_BSLASH] = ACTIONS(680), + [sym_quotation_marks] = ACTIONS(682), + [sym_ellipsis] = ACTIONS(682), + [sym_em_dash] = ACTIONS(682), + [sym_en_dash] = ACTIONS(684), + [sym_backslash_escape] = ACTIONS(684), + [anon_sym_LT] = ACTIONS(686), + [anon_sym_LBRACE_EQ] = ACTIONS(688), + [anon_sym_LBRACE_PLUS] = ACTIONS(690), + [anon_sym_LBRACE_DASH] = ACTIONS(692), + [sym_symbol] = ACTIONS(682), + [anon_sym_LBRACE_CARET] = ACTIONS(694), + [anon_sym_CARET] = ACTIONS(694), + [anon_sym_LBRACE_TILDE] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_LBRACK_CARET] = ACTIONS(698), + [anon_sym_BANG_LBRACK] = ACTIONS(700), + [anon_sym_LBRACK] = ACTIONS(702), + [anon_sym_LBRACE2] = ACTIONS(684), + [anon_sym_DOLLAR] = ACTIONS(704), + [anon_sym_TODO] = ACTIONS(706), + [anon_sym_WIP] = ACTIONS(706), + [anon_sym_NOTE] = ACTIONS(708), + [anon_sym_INFO] = ACTIONS(708), + [anon_sym_XXX] = ACTIONS(708), + [sym_fixme] = ACTIONS(682), + [anon_sym_PIPE] = ACTIONS(682), + [anon_sym_BQUOTE] = ACTIONS(41), + [sym__whitespace1] = ACTIONS(710), + [sym__newline] = ACTIONS(712), + [aux_sym__text_token1] = ACTIONS(714), + }, + [121] = { + [sym__inline] = STATE(690), + [sym__element] = STATE(73), + [sym_emphasis] = STATE(178), + [sym_emphasis_begin] = STATE(119), + [sym_strong] = STATE(178), + [sym_strong_begin] = STATE(121), + [sym__hard_line_break] = STATE(178), + [sym_hard_line_break] = STATE(178), + [sym__smart_punctuation] = STATE(178), + [sym_autolink] = STATE(178), + [sym_highlighted] = STATE(178), + [sym_insert] = STATE(178), + [sym_delete] = STATE(178), + [sym_superscript] = STATE(178), + [sym_subscript] = STATE(178), + [sym_footnote_reference] = STATE(178), + [sym__image] = STATE(178), + [sym_full_reference_image] = STATE(178), + [sym_collapsed_reference_image] = STATE(178), + [sym_inline_image] = STATE(178), + [sym__image_description] = STATE(651), + [sym__link] = STATE(178), + [sym_full_reference_link] = STATE(178), + [sym_collapsed_reference_link] = STATE(178), + [sym_inline_link] = STATE(178), + [sym_link_text] = STATE(650), + [sym__comment_with_spaces] = STATE(178), + [sym_span] = STATE(178), + [sym_raw_inline] = STATE(178), + [sym_math] = STATE(178), + [sym_verbatim] = STATE(178), + [sym__todo_highlights] = STATE(178), + [sym_todo] = STATE(178), + [sym_note] = STATE(178), + [sym__symbol_fallback] = STATE(178), + [sym__verbatim_begin] = STATE(897), + [aux_sym__text] = STATE(167), + [aux_sym__inline_repeat1] = STATE(73), + [anon_sym_LBRACE_] = ACTIONS(549), + [anon_sym__] = ACTIONS(551), + [anon_sym_LBRACE_STAR] = ACTIONS(553), + [anon_sym_STAR] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(557), + [sym_quotation_marks] = ACTIONS(559), + [sym_ellipsis] = ACTIONS(559), + [sym_em_dash] = ACTIONS(559), + [sym_en_dash] = ACTIONS(561), + [sym_backslash_escape] = ACTIONS(561), + [anon_sym_LT] = ACTIONS(563), + [anon_sym_LBRACE_EQ] = ACTIONS(565), + [anon_sym_LBRACE_PLUS] = ACTIONS(567), + [anon_sym_LBRACE_DASH] = ACTIONS(569), + [sym_symbol] = ACTIONS(559), + [anon_sym_LBRACE_CARET] = ACTIONS(571), + [anon_sym_CARET] = ACTIONS(571), + [anon_sym_LBRACE_TILDE] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(573), + [anon_sym_LBRACK_CARET] = ACTIONS(575), + [anon_sym_BANG_LBRACK] = ACTIONS(577), + [anon_sym_LBRACK] = ACTIONS(579), + [anon_sym_LBRACE2] = ACTIONS(561), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_TODO] = ACTIONS(583), + [anon_sym_WIP] = ACTIONS(583), + [anon_sym_NOTE] = ACTIONS(585), + [anon_sym_INFO] = ACTIONS(585), + [anon_sym_XXX] = ACTIONS(585), + [sym_fixme] = ACTIONS(559), + [anon_sym_PIPE] = ACTIONS(559), + [anon_sym_BQUOTE] = ACTIONS(41), + [sym__whitespace1] = ACTIONS(587), + [sym__newline] = ACTIONS(589), + [aux_sym__text_token1] = ACTIONS(591), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 4, + ACTIONS(1636), 1, + anon_sym_LBRACE_EQ2, + STATE(432), 1, + sym_raw_inline_attribute, + ACTIONS(1632), 8, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACE_EQ, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1634), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_RBRACK, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [48] = 5, + ACTIONS(1638), 1, + anon_sym_LBRACE, + STATE(199), 1, + aux_sym__text, + STATE(571), 1, + sym_inline_attribute, + ACTIONS(1642), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1640), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [98] = 6, + ACTIONS(49), 1, + ts_builtin_sym_end, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(1647), 1, + anon_sym_SPACE, + STATE(287), 1, + aux_sym_emphasis_begin_repeat1, + ACTIONS(1649), 7, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1644), 28, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [150] = 6, + ACTIONS(49), 1, + anon_sym_EQ_RBRACE, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(1647), 1, + anon_sym_SPACE, + STATE(287), 1, + aux_sym_emphasis_begin_repeat1, + ACTIONS(1649), 7, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1644), 28, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [202] = 5, + ACTIONS(1652), 1, + anon_sym_LBRACE, + STATE(176), 1, + aux_sym__text, + STATE(591), 1, + sym_inline_attribute, + ACTIONS(1642), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1640), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_RBRACK, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [252] = 4, + ACTIONS(1654), 1, + sym__id, + STATE(816), 1, + sym_reference_label, + ACTIONS(51), 15, + anon_sym_LBRACE, + anon_sym__, + anon_sym_BSLASH, + sym_em_dash, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + aux_sym__text_token1, + ACTIONS(49), 22, + anon_sym_LBRACE_, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [300] = 4, + ACTIONS(1654), 1, + sym__id, + STATE(841), 1, + sym_reference_label, + ACTIONS(51), 15, + anon_sym_LBRACE, + anon_sym__, + anon_sym_BSLASH, + sym_em_dash, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + aux_sym__text_token1, + ACTIONS(49), 22, + ts_builtin_sym_end, + anon_sym_LBRACE_, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [348] = 4, + ACTIONS(1654), 1, + sym__id, + STATE(796), 1, + sym_reference_label, + ACTIONS(51), 15, + anon_sym_LBRACE, + anon_sym__, + anon_sym_BSLASH, + sym_em_dash, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + aux_sym__text_token1, + ACTIONS(49), 22, + anon_sym_LBRACE_, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [396] = 5, + ACTIONS(1656), 1, + anon_sym_LBRACE, + STATE(192), 1, + aux_sym__text, + STATE(583), 1, + sym_inline_attribute, + ACTIONS(1642), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1640), 30, + ts_builtin_sym_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [446] = 4, + ACTIONS(1654), 1, + sym__id, + STATE(759), 1, + sym_reference_label, + ACTIONS(51), 15, + anon_sym_LBRACE, + anon_sym__, + anon_sym_BSLASH, + sym_em_dash, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + aux_sym__text_token1, + ACTIONS(49), 22, + anon_sym_LBRACE_, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_RBRACK, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [494] = 4, + ACTIONS(1658), 1, + anon_sym_LBRACE_EQ2, + STATE(237), 1, + sym_raw_inline_attribute, + ACTIONS(1632), 8, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACE_EQ, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1634), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [542] = 6, + ACTIONS(49), 1, + ts_builtin_sym_end, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(1663), 1, + anon_sym_SPACE, + STATE(279), 1, + aux_sym_emphasis_begin_repeat1, + ACTIONS(1665), 7, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1660), 28, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [594] = 5, + ACTIONS(1668), 1, + anon_sym_LBRACE, + STATE(202), 1, + aux_sym__text, + STATE(592), 1, + sym_inline_attribute, + ACTIONS(1642), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1640), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [644] = 4, + ACTIONS(1670), 1, + anon_sym_LBRACE_EQ2, + STATE(464), 1, + sym_raw_inline_attribute, + ACTIONS(1632), 8, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACE_EQ, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1634), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [692] = 6, + ACTIONS(49), 1, + anon_sym_DASH_RBRACE, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(1663), 1, + anon_sym_SPACE, + STATE(279), 1, + aux_sym_emphasis_begin_repeat1, + ACTIONS(1665), 7, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1660), 28, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [744] = 6, + ACTIONS(49), 1, + aux_sym_emphasis_end_token1, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(1663), 1, + anon_sym_SPACE, + STATE(279), 1, + aux_sym_emphasis_begin_repeat1, + ACTIONS(1665), 8, + anon_sym__, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1660), 27, + anon_sym_LBRACE_, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [796] = 6, + ACTIONS(49), 1, + aux_sym_emphasis_end_token1, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(1647), 1, + anon_sym_SPACE, + STATE(287), 1, + aux_sym_emphasis_begin_repeat1, + ACTIONS(1649), 8, + anon_sym__, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1644), 27, + anon_sym_LBRACE_, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [848] = 5, + ACTIONS(1672), 1, + anon_sym_LBRACE, + STATE(204), 1, + aux_sym__text, + STATE(567), 1, + sym_inline_attribute, + ACTIONS(1642), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1640), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [898] = 6, + ACTIONS(49), 1, + anon_sym_DASH_RBRACE, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(1647), 1, + anon_sym_SPACE, + STATE(287), 1, + aux_sym_emphasis_begin_repeat1, + ACTIONS(1649), 7, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1644), 28, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [950] = 6, + ACTIONS(49), 1, + anon_sym_RBRACK, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(1647), 1, + anon_sym_SPACE, + STATE(287), 1, + aux_sym_emphasis_begin_repeat1, + ACTIONS(1649), 7, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1644), 28, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [1002] = 6, + ACTIONS(49), 1, + anon_sym_RBRACK, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(1663), 1, + anon_sym_SPACE, + STATE(279), 1, + aux_sym_emphasis_begin_repeat1, + ACTIONS(1665), 7, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1660), 28, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [1054] = 4, + ACTIONS(1674), 1, + anon_sym_LBRACE_EQ2, + STATE(379), 1, + sym_raw_inline_attribute, + ACTIONS(1632), 9, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACE_EQ, + anon_sym_TILDE, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1634), 28, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE_RBRACE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [1102] = 4, + ACTIONS(1676), 1, + anon_sym_LBRACE_EQ2, + STATE(273), 1, + sym_raw_inline_attribute, + ACTIONS(1632), 8, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACE_EQ, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1634), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [1150] = 6, + ACTIONS(49), 1, + anon_sym_CARET_RBRACE, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(1663), 1, + anon_sym_SPACE, + STATE(279), 1, + aux_sym_emphasis_begin_repeat1, + ACTIONS(1665), 8, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_CARET, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1660), 27, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [1202] = 6, + ACTIONS(49), 1, + anon_sym_CARET_RBRACE, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(1647), 1, + anon_sym_SPACE, + STATE(287), 1, + aux_sym_emphasis_begin_repeat1, + ACTIONS(1649), 8, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_CARET, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1644), 27, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [1254] = 4, + ACTIONS(1654), 1, + sym__id, + STATE(784), 1, + sym_reference_label, + ACTIONS(51), 17, + anon_sym_LBRACE, + anon_sym__, + anon_sym_STAR, + anon_sym_BSLASH, + sym_em_dash, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(49), 20, + anon_sym_LBRACE_, + anon_sym_LBRACE_STAR, + aux_sym_strong_end_token1, + sym_quotation_marks, + sym_ellipsis, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [1302] = 4, + ACTIONS(1654), 1, + sym__id, + STATE(801), 1, + sym_reference_label, + ACTIONS(51), 15, + anon_sym_LBRACE, + anon_sym__, + anon_sym_BSLASH, + sym_em_dash, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + aux_sym__text_token1, + ACTIONS(49), 22, + anon_sym_LBRACE_, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, + anon_sym_DOLLAR, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [1350] = 4, + ACTIONS(1654), 1, + sym__id, + STATE(771), 1, + sym_reference_label, + ACTIONS(51), 16, + anon_sym_LBRACE, + anon_sym__, + anon_sym_BSLASH, + sym_em_dash, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(49), 21, + anon_sym_LBRACE_, + aux_sym_emphasis_end_token1, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [1398] = 5, + ACTIONS(1678), 1, + anon_sym_LBRACE, + STATE(195), 1, + aux_sym__text, + STATE(575), 1, + sym_inline_attribute, + ACTIONS(1642), 7, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_TILDE, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1640), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE_RBRACE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [1448] = 4, + ACTIONS(1654), 1, + sym__id, + STATE(873), 1, + sym_reference_label, + ACTIONS(51), 16, + anon_sym_LBRACE, + anon_sym__, + anon_sym_BSLASH, + sym_em_dash, + sym_en_dash, + sym_backslash_escape, + anon_sym_CARET, + anon_sym_LBRACK, + anon_sym_LBRACE2, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + aux_sym__text_token1, + ACTIONS(49), 21, + anon_sym_LBRACE_, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET_RBRACE, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [1496] = 6, + ACTIONS(49), 1, + anon_sym_RBRACK2, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(1647), 1, + anon_sym_SPACE, + STATE(287), 1, + aux_sym_emphasis_begin_repeat1, + ACTIONS(1649), 7, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1644), 28, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [1548] = 5, + ACTIONS(1680), 1, + anon_sym_LBRACE, + STATE(188), 1, + aux_sym__text, + STATE(586), 1, + sym_inline_attribute, + ACTIONS(1642), 8, + anon_sym__, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1640), 28, + anon_sym_LBRACE_, + aux_sym_emphasis_end_token1, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [1598] = 4, + ACTIONS(1654), 1, + sym__id, + STATE(817), 1, + sym_reference_label, + ACTIONS(51), 16, + anon_sym_LBRACE, + anon_sym__, + anon_sym_BSLASH, + sym_em_dash, + sym_en_dash, + sym_backslash_escape, + anon_sym_TILDE, + anon_sym_LBRACK, + anon_sym_LBRACE2, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + aux_sym__text_token1, + ACTIONS(49), 21, + anon_sym_LBRACE_, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE_RBRACE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [1646] = 5, + ACTIONS(1682), 1, + anon_sym_LBRACE, + STATE(198), 1, + aux_sym__text, + STATE(577), 1, + sym_inline_attribute, + ACTIONS(1642), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1640), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [1696] = 4, + ACTIONS(1684), 1, + anon_sym_LBRACE_EQ2, + STATE(442), 1, + sym_raw_inline_attribute, + ACTIONS(1632), 8, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACE_EQ, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1634), 29, + ts_builtin_sym_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [1744] = 6, + ACTIONS(49), 1, + anon_sym_RBRACK2, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(1663), 1, + anon_sym_SPACE, + STATE(279), 1, + aux_sym_emphasis_begin_repeat1, + ACTIONS(1665), 7, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1660), 28, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [1796] = 4, + ACTIONS(1686), 1, + anon_sym_LBRACE_EQ2, + STATE(485), 1, + sym_raw_inline_attribute, + ACTIONS(1632), 10, + anon_sym_LBRACE, + anon_sym__, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACE_EQ, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1634), 27, + anon_sym_LBRACE_, + aux_sym_emphasis_end_token1, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [1844] = 5, + ACTIONS(1688), 1, + anon_sym_LBRACE, + STATE(172), 1, + aux_sym__text, + STATE(578), 1, + sym_inline_attribute, + ACTIONS(1642), 7, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_CARET, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1640), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET_RBRACE, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [1894] = 4, + ACTIONS(1690), 1, + anon_sym_LBRACE_EQ2, + STATE(319), 1, + sym_raw_inline_attribute, + ACTIONS(1632), 8, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACE_EQ, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1634), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_EQ_RBRACE, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [1942] = 6, + ACTIONS(49), 1, + aux_sym_strong_end_token1, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(1663), 1, + anon_sym_SPACE, + STATE(279), 1, + aux_sym_emphasis_begin_repeat1, + ACTIONS(1665), 8, + anon_sym_STAR, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1660), 27, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [1994] = 4, + ACTIONS(1692), 1, + anon_sym_LBRACE_EQ2, + STATE(538), 1, + sym_raw_inline_attribute, + ACTIONS(1632), 10, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACE_EQ, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1634), 27, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + aux_sym_strong_end_token1, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [2042] = 4, + ACTIONS(1654), 1, + sym__id, + STATE(772), 1, + sym_reference_label, + ACTIONS(51), 15, + anon_sym_LBRACE, + anon_sym__, + anon_sym_BSLASH, + sym_em_dash, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + aux_sym__text_token1, + ACTIONS(49), 22, + anon_sym_LBRACE_, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [2090] = 6, + ACTIONS(49), 1, + anon_sym_TILDE_RBRACE, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(1647), 1, + anon_sym_SPACE, + STATE(287), 1, + aux_sym_emphasis_begin_repeat1, + ACTIONS(1649), 8, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_TILDE, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1644), 27, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [2142] = 6, + ACTIONS(49), 1, + anon_sym_TILDE_RBRACE, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(1663), 1, + anon_sym_SPACE, + STATE(279), 1, + aux_sym_emphasis_begin_repeat1, + ACTIONS(1665), 8, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_TILDE, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1660), 27, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [2194] = 4, + ACTIONS(1694), 1, + anon_sym_LBRACE_EQ2, + STATE(326), 1, + sym_raw_inline_attribute, + ACTIONS(1632), 9, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACE_EQ, + anon_sym_CARET, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1634), 28, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET_RBRACE, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [2242] = 5, + ACTIONS(1696), 1, + anon_sym_LBRACE, + STATE(179), 1, + aux_sym__text, + STATE(580), 1, + sym_inline_attribute, + ACTIONS(1642), 8, + anon_sym_STAR, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1640), 28, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + aux_sym_strong_end_token1, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [2292] = 6, + ACTIONS(49), 1, + aux_sym_strong_end_token1, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(1647), 1, + anon_sym_SPACE, + STATE(287), 1, + aux_sym_emphasis_begin_repeat1, + ACTIONS(1649), 8, + anon_sym_STAR, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1644), 27, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [2344] = 6, + ACTIONS(49), 1, + anon_sym_PLUS_RBRACE, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(1663), 1, + anon_sym_SPACE, + STATE(279), 1, + aux_sym_emphasis_begin_repeat1, + ACTIONS(1665), 7, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1660), 28, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [2396] = 6, + ACTIONS(49), 1, + anon_sym_EQ_RBRACE, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(1663), 1, + anon_sym_SPACE, + STATE(279), 1, + aux_sym_emphasis_begin_repeat1, + ACTIONS(1665), 7, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1660), 28, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [2448] = 6, + ACTIONS(49), 1, + anon_sym_PLUS_RBRACE, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(1647), 1, + anon_sym_SPACE, + STATE(287), 1, + aux_sym_emphasis_begin_repeat1, + ACTIONS(1649), 7, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1644), 28, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [2500] = 4, + ACTIONS(1702), 1, + aux_sym__text_token1, + STATE(172), 1, + aux_sym__text, + ACTIONS(1698), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_CARET, + anon_sym_LBRACK, + anon_sym_LBRACE2, + ACTIONS(1700), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET_RBRACE, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [2547] = 4, + ACTIONS(1682), 1, + anon_sym_LBRACE, + STATE(577), 1, + sym_inline_attribute, + ACTIONS(1642), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1640), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [2594] = 3, + ACTIONS(1705), 1, + aux_sym_autolink_token1, + ACTIONS(49), 2, + sym__whitespace1, + sym__newline, + ACTIONS(51), 35, + anon_sym_LBRACE, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_BSLASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + sym_en_dash, + sym_backslash_escape, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_LBRACK, + anon_sym_LBRACE2, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + aux_sym__text_token1, + [2639] = 3, + ACTIONS(49), 1, + sym__newline, + ACTIONS(1707), 1, + aux_sym_autolink_token1, + ACTIONS(51), 36, + anon_sym_LBRACE, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + aux_sym_strong_end_token1, + anon_sym_BSLASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + sym_en_dash, + sym_backslash_escape, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_LBRACK, + anon_sym_LBRACE2, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + aux_sym__text_token1, + [2684] = 4, + ACTIONS(1709), 1, + aux_sym__text_token1, + STATE(176), 1, + aux_sym__text, + ACTIONS(1698), 6, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + ACTIONS(1700), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_RBRACK, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [2731] = 4, + ACTIONS(112), 1, + anon_sym_BQUOTE, + STATE(899), 1, + sym__verbatim_begin, + ACTIONS(51), 9, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(49), 27, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + aux_sym_strong_end_token1, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + sym__newline, + [2778] = 4, + ACTIONS(1696), 1, + anon_sym_LBRACE, + STATE(580), 1, + sym_inline_attribute, + ACTIONS(1642), 8, + anon_sym_STAR, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1640), 28, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + aux_sym_strong_end_token1, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [2825] = 4, + ACTIONS(1712), 1, + aux_sym__text_token1, + STATE(179), 1, + aux_sym__text, + ACTIONS(1698), 8, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + ACTIONS(1700), 28, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + aux_sym_strong_end_token1, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [2872] = 2, + ACTIONS(1715), 9, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACE_EQ, + anon_sym_CARET, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1717), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET_RBRACE, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_LBRACE_EQ2, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [2915] = 2, + ACTIONS(1715), 10, + anon_sym_LBRACE, + anon_sym__, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACE_EQ, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1717), 28, + anon_sym_LBRACE_, + aux_sym_emphasis_end_token1, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_LBRACE_EQ2, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [2958] = 4, + ACTIONS(1678), 1, + anon_sym_LBRACE, + STATE(575), 1, + sym_inline_attribute, + ACTIONS(1642), 7, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_TILDE, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1640), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE_RBRACE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [3005] = 4, + ACTIONS(112), 1, + anon_sym_BQUOTE, + STATE(845), 1, + sym__verbatim_begin, + ACTIONS(51), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(49), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + sym__whitespace1, + sym__newline, + [3052] = 3, + ACTIONS(1719), 1, + aux_sym_autolink_token1, + ACTIONS(49), 2, + sym__whitespace1, + sym__newline, + ACTIONS(51), 35, + anon_sym_LBRACE, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_BSLASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + sym_en_dash, + sym_backslash_escape, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_TILDE_RBRACE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_LBRACK, + anon_sym_LBRACE2, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + aux_sym__text_token1, + [3097] = 4, + ACTIONS(112), 1, + anon_sym_BQUOTE, + STATE(863), 1, + sym__verbatim_begin, + ACTIONS(51), 8, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_CARET, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(49), 28, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET_RBRACE, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + sym__whitespace1, + sym__newline, + [3144] = 2, + ACTIONS(1715), 8, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACE_EQ, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1717), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_EQ_RBRACE, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_LBRACE_EQ2, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [3187] = 2, + ACTIONS(1715), 8, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACE_EQ, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1717), 30, + ts_builtin_sym_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_LBRACE_EQ2, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [3230] = 4, + ACTIONS(1721), 1, + aux_sym__text_token1, + STATE(188), 1, + aux_sym__text, + ACTIONS(1698), 8, + anon_sym_LBRACE, + anon_sym__, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + ACTIONS(1700), 28, + anon_sym_LBRACE_, + aux_sym_emphasis_end_token1, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [3277] = 4, + ACTIONS(1638), 1, + anon_sym_LBRACE, + STATE(571), 1, + sym_inline_attribute, + ACTIONS(1642), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1640), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [3324] = 4, + ACTIONS(112), 1, + anon_sym_BQUOTE, + STATE(890), 1, + sym__verbatim_begin, + ACTIONS(51), 9, + anon_sym_LBRACE, + anon_sym__, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(49), 27, + anon_sym_LBRACE_, + aux_sym_emphasis_end_token1, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + sym__newline, + [3371] = 3, + ACTIONS(1724), 1, + aux_sym_autolink_token1, + ACTIONS(49), 2, + sym__whitespace1, + sym__newline, + ACTIONS(51), 35, + anon_sym_LBRACE, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_BSLASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + sym_en_dash, + sym_backslash_escape, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_LBRACK, + anon_sym_RBRACK2, + anon_sym_LBRACE2, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + aux_sym__text_token1, + [3416] = 4, + ACTIONS(1726), 1, + aux_sym__text_token1, + STATE(192), 1, + aux_sym__text, + ACTIONS(1698), 6, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + ACTIONS(1700), 30, + ts_builtin_sym_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [3463] = 4, + ACTIONS(112), 1, + anon_sym_BQUOTE, + STATE(872), 1, + sym__verbatim_begin, + ACTIONS(51), 8, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_TILDE, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(49), 28, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE_RBRACE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + sym__whitespace1, + sym__newline, + [3510] = 4, + ACTIONS(112), 1, + anon_sym_BQUOTE, + STATE(908), 1, + sym__verbatim_begin, + ACTIONS(51), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(49), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + sym__whitespace1, + sym__newline, + [3557] = 4, + ACTIONS(1729), 1, + aux_sym__text_token1, + STATE(195), 1, + aux_sym__text, + ACTIONS(1698), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_TILDE, + anon_sym_LBRACK, + anon_sym_LBRACE2, + ACTIONS(1700), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE_RBRACE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [3604] = 3, + ACTIONS(1732), 1, + aux_sym_autolink_token1, + ACTIONS(49), 2, + sym__whitespace1, + sym__newline, + ACTIONS(51), 35, + anon_sym_LBRACE, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_BSLASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + sym_en_dash, + sym_backslash_escape, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_CARET_RBRACE, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_LBRACK, + anon_sym_LBRACE2, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + aux_sym__text_token1, + [3649] = 4, + ACTIONS(1688), 1, + anon_sym_LBRACE, + STATE(578), 1, + sym_inline_attribute, + ACTIONS(1642), 7, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_CARET, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1640), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET_RBRACE, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [3696] = 4, + ACTIONS(1734), 1, + aux_sym__text_token1, + STATE(198), 1, + aux_sym__text, + ACTIONS(1698), 6, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + ACTIONS(1700), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [3743] = 4, + ACTIONS(1737), 1, + aux_sym__text_token1, + STATE(199), 1, + aux_sym__text, + ACTIONS(1698), 6, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + ACTIONS(1700), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [3790] = 3, + ACTIONS(49), 1, + sym__newline, + ACTIONS(1740), 1, + aux_sym_autolink_token1, + ACTIONS(51), 36, + anon_sym_LBRACE, + anon_sym_LBRACE_, + anon_sym__, + aux_sym_emphasis_end_token1, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_BSLASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + sym_en_dash, + sym_backslash_escape, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_LBRACK, + anon_sym_LBRACE2, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + aux_sym__text_token1, + [3835] = 4, + ACTIONS(1680), 1, + anon_sym_LBRACE, + STATE(586), 1, + sym_inline_attribute, + ACTIONS(1642), 8, + anon_sym__, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1640), 28, + anon_sym_LBRACE_, + aux_sym_emphasis_end_token1, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [3882] = 4, + ACTIONS(1742), 1, + aux_sym__text_token1, + STATE(202), 1, + aux_sym__text, + ACTIONS(1698), 6, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + ACTIONS(1700), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [3929] = 2, + ACTIONS(1715), 8, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACE_EQ, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1717), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_LBRACE_EQ2, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [3972] = 4, + ACTIONS(1745), 1, + aux_sym__text_token1, + STATE(204), 1, + aux_sym__text, + ACTIONS(1698), 6, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + ACTIONS(1700), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [4019] = 2, + ACTIONS(1715), 9, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACE_EQ, + anon_sym_TILDE, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1717), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE_RBRACE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_LBRACE_EQ2, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [4062] = 4, + ACTIONS(1652), 1, + anon_sym_LBRACE, + STATE(591), 1, + sym_inline_attribute, + ACTIONS(1642), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1640), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_RBRACK, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [4109] = 4, + ACTIONS(1672), 1, + anon_sym_LBRACE, + STATE(567), 1, + sym_inline_attribute, + ACTIONS(1642), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1640), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [4156] = 3, + ACTIONS(1748), 1, + aux_sym_autolink_token1, + ACTIONS(49), 2, + sym__whitespace1, + sym__newline, + ACTIONS(51), 35, + anon_sym_LBRACE, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_BSLASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + sym_en_dash, + sym_backslash_escape, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_LBRACK, + anon_sym_LBRACE2, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + aux_sym__text_token1, + [4201] = 2, + ACTIONS(1715), 10, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACE_EQ, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1717), 28, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + aux_sym_strong_end_token1, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_LBRACE_EQ2, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [4244] = 3, + ACTIONS(1750), 1, + aux_sym_autolink_token1, + ACTIONS(49), 2, + sym__whitespace1, + sym__newline, + ACTIONS(51), 35, + anon_sym_LBRACE, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_BSLASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + sym_en_dash, + sym_backslash_escape, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_RBRACK, + anon_sym_BANG_LBRACK, + anon_sym_LBRACK, + anon_sym_LBRACE2, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + aux_sym__text_token1, + [4289] = 2, + ACTIONS(1715), 8, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACE_EQ, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1717), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, + anon_sym_LBRACE_EQ2, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [4332] = 2, + ACTIONS(1715), 8, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACE_EQ, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1717), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_LBRACE_EQ2, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [4375] = 2, + ACTIONS(1715), 8, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACE_EQ, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1717), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_RBRACK, + anon_sym_BANG_LBRACK, + anon_sym_LBRACE_EQ2, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [4418] = 4, + ACTIONS(112), 1, + anon_sym_BQUOTE, + STATE(881), 1, + sym__verbatim_begin, + ACTIONS(51), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(49), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_RBRACK, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + sym__whitespace1, + sym__newline, + [4465] = 4, + ACTIONS(112), 1, + anon_sym_BQUOTE, + STATE(824), 1, + sym__verbatim_begin, + ACTIONS(51), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(49), 29, + ts_builtin_sym_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + sym__whitespace1, + sym__newline, + [4512] = 4, + ACTIONS(112), 1, + anon_sym_BQUOTE, + STATE(836), 1, + sym__verbatim_begin, + ACTIONS(51), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(49), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + sym__whitespace1, + sym__newline, + [4559] = 3, + ACTIONS(1752), 1, + aux_sym_autolink_token1, + ACTIONS(49), 2, + sym__whitespace1, + sym__newline, + ACTIONS(51), 35, + anon_sym_LBRACE, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_BSLASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + sym_en_dash, + sym_backslash_escape, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_LBRACK, + anon_sym_LBRACE2, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + aux_sym__text_token1, + [4604] = 3, + ACTIONS(1754), 1, + aux_sym_autolink_token1, + ACTIONS(49), 3, + ts_builtin_sym_end, + sym__whitespace1, + sym__newline, + ACTIONS(51), 34, + anon_sym_LBRACE, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_BSLASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + sym_en_dash, + sym_backslash_escape, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_LBRACK, + anon_sym_LBRACE2, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + aux_sym__text_token1, + [4649] = 4, + ACTIONS(112), 1, + anon_sym_BQUOTE, + STATE(854), 1, + sym__verbatim_begin, + ACTIONS(51), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(49), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + sym__whitespace1, + sym__newline, + [4696] = 4, + ACTIONS(1656), 1, + anon_sym_LBRACE, + STATE(583), 1, + sym_inline_attribute, + ACTIONS(1642), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1640), 30, + ts_builtin_sym_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [4743] = 4, + ACTIONS(1668), 1, + anon_sym_LBRACE, + STATE(592), 1, + sym_inline_attribute, + ACTIONS(1642), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1640), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [4790] = 2, + ACTIONS(1756), 9, + anon_sym_LBRACE, + anon_sym__, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1758), 28, + anon_sym_LBRACE_, + aux_sym_emphasis_end_token1, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [4832] = 2, + ACTIONS(1760), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1762), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [4874] = 2, + ACTIONS(1764), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1766), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [4916] = 2, + ACTIONS(1768), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1770), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [4958] = 2, + ACTIONS(1772), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1774), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [5000] = 2, + ACTIONS(1776), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1778), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [5042] = 2, + ACTIONS(1780), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1782), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [5084] = 2, + ACTIONS(1784), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1786), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [5126] = 2, + ACTIONS(1788), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1790), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [5168] = 4, + ACTIONS(49), 1, + ts_builtin_sym_end, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(1649), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1644), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [5214] = 2, + ACTIONS(1792), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1794), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [5256] = 2, + ACTIONS(1796), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1798), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [5298] = 2, + ACTIONS(1800), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1802), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [5340] = 2, + ACTIONS(1804), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1806), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [5382] = 2, + ACTIONS(1808), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1810), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [5424] = 2, + ACTIONS(1812), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1814), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [5466] = 2, + ACTIONS(1816), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1818), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [5508] = 4, + ACTIONS(49), 1, + anon_sym_DASH_RBRACE, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(1665), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1660), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [5554] = 4, + ACTIONS(49), 1, + anon_sym_DASH_RBRACE, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(1649), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1644), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [5600] = 2, + ACTIONS(1820), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1822), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [5642] = 2, + ACTIONS(1824), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1826), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [5684] = 4, + ACTIONS(1832), 1, + anon_sym_LBRACE2, + STATE(246), 1, + sym_comment, + ACTIONS(1830), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1828), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [5730] = 2, + ACTIONS(1835), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1837), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [5772] = 2, + ACTIONS(1820), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1822), 30, + ts_builtin_sym_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [5814] = 2, + ACTIONS(1839), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1841), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [5856] = 2, + ACTIONS(1756), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1758), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [5898] = 2, + ACTIONS(1843), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1845), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [5940] = 2, + ACTIONS(1847), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1849), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [5982] = 2, + ACTIONS(1851), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1853), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [6024] = 2, + ACTIONS(1760), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1762), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [6066] = 2, + ACTIONS(1855), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1857), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [6108] = 2, + ACTIONS(1824), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1826), 30, + ts_builtin_sym_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [6150] = 2, + ACTIONS(1859), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1861), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [6192] = 2, + ACTIONS(1863), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1865), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [6234] = 2, + ACTIONS(1867), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1869), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [6276] = 2, + ACTIONS(1871), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1873), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [6318] = 2, + ACTIONS(1764), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1766), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [6360] = 2, + ACTIONS(1768), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1770), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [6402] = 2, + ACTIONS(1772), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1774), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [6444] = 2, + ACTIONS(1776), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1778), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [6486] = 2, + ACTIONS(1780), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1782), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [6528] = 2, + ACTIONS(1784), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1786), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [6570] = 2, + ACTIONS(1788), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1790), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [6612] = 2, + ACTIONS(1863), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1865), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [6654] = 2, + ACTIONS(1867), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1869), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [6696] = 4, + ACTIONS(1875), 1, + anon_sym_LBRACE2, + STATE(496), 1, + sym_comment, + ACTIONS(1830), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1828), 30, + ts_builtin_sym_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [6742] = 2, + ACTIONS(1792), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1794), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [6784] = 2, + ACTIONS(1796), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1798), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [6826] = 2, + ACTIONS(1800), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1802), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [6868] = 2, + ACTIONS(1804), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1806), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [6910] = 2, + ACTIONS(1808), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1810), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [6952] = 2, + ACTIONS(1812), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1814), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [6994] = 2, + ACTIONS(1816), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1818), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [7036] = 2, + ACTIONS(1820), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1822), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [7078] = 4, + ACTIONS(49), 1, + anon_sym_CARET_RBRACE, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(1665), 7, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_CARET, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1660), 28, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [7124] = 2, + ACTIONS(1859), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1861), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [7166] = 4, + ACTIONS(49), 1, + anon_sym_CARET_RBRACE, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(1649), 7, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_CARET, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1644), 28, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [7212] = 4, + ACTIONS(1880), 1, + anon_sym_SPACE, + STATE(548), 1, + aux_sym_emphasis_begin_repeat1, + ACTIONS(1882), 7, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1878), 28, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [7258] = 2, + ACTIONS(1855), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1857), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [7300] = 2, + ACTIONS(1760), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1762), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [7342] = 2, + ACTIONS(1851), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1853), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [7384] = 2, + ACTIONS(1847), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1849), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [7426] = 2, + ACTIONS(1843), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1845), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [7468] = 2, + ACTIONS(1756), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1758), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [7510] = 2, + ACTIONS(1839), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1841), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [7552] = 4, + ACTIONS(1880), 1, + anon_sym_SPACE, + STATE(548), 1, + aux_sym_emphasis_begin_repeat1, + ACTIONS(1886), 7, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1884), 28, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [7598] = 2, + ACTIONS(1835), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1837), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [7640] = 4, + ACTIONS(1888), 1, + anon_sym_LBRACE2, + STATE(286), 1, + sym_comment, + ACTIONS(1830), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1828), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [7686] = 2, + ACTIONS(1820), 8, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_CARET, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1822), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET_RBRACE, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [7728] = 2, + ACTIONS(1824), 8, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_CARET, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1826), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET_RBRACE, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [7770] = 4, + ACTIONS(1891), 1, + anon_sym_LBRACE2, + STATE(297), 1, + sym_comment, + ACTIONS(1830), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_CARET, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1828), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET_RBRACE, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [7816] = 2, + ACTIONS(1824), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1826), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [7858] = 2, + ACTIONS(1820), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1822), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [7900] = 2, + ACTIONS(1835), 8, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_CARET, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1837), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET_RBRACE, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [7942] = 2, + ACTIONS(1835), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1837), 30, + ts_builtin_sym_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [7984] = 2, + ACTIONS(1839), 8, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_CARET, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1841), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET_RBRACE, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [8026] = 2, + ACTIONS(1756), 8, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_CARET, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1758), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET_RBRACE, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [8068] = 2, + ACTIONS(1843), 8, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_CARET, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1845), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET_RBRACE, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [8110] = 2, + ACTIONS(1847), 8, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_CARET, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1849), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET_RBRACE, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [8152] = 2, + ACTIONS(1851), 8, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_CARET, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1853), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET_RBRACE, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [8194] = 2, + ACTIONS(1760), 8, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_CARET, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1762), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET_RBRACE, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [8236] = 2, + ACTIONS(1855), 8, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_CARET, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1857), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET_RBRACE, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [8278] = 4, + ACTIONS(49), 1, + anon_sym_PLUS_RBRACE, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(1649), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1644), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [8324] = 4, + ACTIONS(49), 1, + anon_sym_PLUS_RBRACE, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(1665), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1660), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [8370] = 4, + ACTIONS(49), 1, + ts_builtin_sym_end, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(1665), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1660), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [8416] = 2, + ACTIONS(1859), 8, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_CARET, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1861), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET_RBRACE, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [8458] = 2, + ACTIONS(1863), 8, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_CARET, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1865), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET_RBRACE, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [8500] = 2, + ACTIONS(1867), 8, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_CARET, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1869), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET_RBRACE, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [8542] = 2, + ACTIONS(1871), 8, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_CARET, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1873), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET_RBRACE, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [8584] = 2, + ACTIONS(1764), 8, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_CARET, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1766), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET_RBRACE, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [8626] = 2, + ACTIONS(1768), 8, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_CARET, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1770), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET_RBRACE, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [8668] = 2, + ACTIONS(1772), 8, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_CARET, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1774), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET_RBRACE, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [8710] = 2, + ACTIONS(1776), 8, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_CARET, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1778), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET_RBRACE, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [8752] = 2, + ACTIONS(1780), 8, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_CARET, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1782), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET_RBRACE, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [8794] = 2, + ACTIONS(1784), 8, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_CARET, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1786), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET_RBRACE, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [8836] = 2, + ACTIONS(1788), 8, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_CARET, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1790), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET_RBRACE, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [8878] = 2, + ACTIONS(1816), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1818), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [8920] = 2, + ACTIONS(1812), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1814), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [8962] = 2, + ACTIONS(1894), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1896), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [9004] = 2, + ACTIONS(1792), 8, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_CARET, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1794), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET_RBRACE, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [9046] = 2, + ACTIONS(1796), 8, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_CARET, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1798), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET_RBRACE, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [9088] = 2, + ACTIONS(1800), 8, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_CARET, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1802), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET_RBRACE, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [9130] = 2, + ACTIONS(1804), 8, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_CARET, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1806), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET_RBRACE, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [9172] = 2, + ACTIONS(1808), 8, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_CARET, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1810), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET_RBRACE, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [9214] = 2, + ACTIONS(1812), 8, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_CARET, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1814), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET_RBRACE, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [9256] = 2, + ACTIONS(1816), 8, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_CARET, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1818), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET_RBRACE, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [9298] = 2, + ACTIONS(1808), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1810), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [9340] = 4, + ACTIONS(49), 1, + anon_sym_TILDE_RBRACE, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(1665), 7, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_TILDE, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1660), 28, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [9386] = 2, + ACTIONS(1804), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1806), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [9428] = 4, + ACTIONS(49), 1, + anon_sym_TILDE_RBRACE, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(1649), 7, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_TILDE, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1644), 28, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [9474] = 2, + ACTIONS(1800), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1802), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [9516] = 2, + ACTIONS(1796), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1798), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [9558] = 2, + ACTIONS(1792), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1794), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [9600] = 2, + ACTIONS(1715), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1717), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [9642] = 2, + ACTIONS(1788), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1790), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [9684] = 2, + ACTIONS(1784), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1786), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [9726] = 2, + ACTIONS(1780), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1782), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [9768] = 2, + ACTIONS(1776), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1778), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [9810] = 2, + ACTIONS(1772), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1774), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [9852] = 2, + ACTIONS(1768), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1770), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [9894] = 2, + ACTIONS(1764), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1766), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [9936] = 2, + ACTIONS(1820), 8, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_TILDE, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1822), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE_RBRACE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [9978] = 2, + ACTIONS(1824), 8, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_TILDE, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1826), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE_RBRACE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [10020] = 4, + ACTIONS(1898), 1, + anon_sym_LBRACE2, + STATE(350), 1, + sym_comment, + ACTIONS(1830), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_TILDE, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1828), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE_RBRACE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [10066] = 2, + ACTIONS(1871), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1873), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [10108] = 2, + ACTIONS(1867), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1869), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [10150] = 2, + ACTIONS(1835), 8, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_TILDE, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1837), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE_RBRACE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [10192] = 2, + ACTIONS(1901), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1903), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [10234] = 2, + ACTIONS(1839), 8, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_TILDE, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1841), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE_RBRACE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [10276] = 2, + ACTIONS(1756), 8, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_TILDE, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1758), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE_RBRACE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [10318] = 2, + ACTIONS(1843), 8, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_TILDE, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1845), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE_RBRACE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [10360] = 2, + ACTIONS(1847), 8, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_TILDE, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1849), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE_RBRACE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [10402] = 2, + ACTIONS(1851), 8, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_TILDE, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1853), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE_RBRACE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [10444] = 2, + ACTIONS(1760), 8, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_TILDE, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1762), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE_RBRACE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [10486] = 2, + ACTIONS(1855), 8, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_TILDE, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1857), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE_RBRACE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [10528] = 2, + ACTIONS(1863), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1865), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [10570] = 2, + ACTIONS(1859), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1861), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [10612] = 2, + ACTIONS(1894), 9, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1896), 28, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + aux_sym_strong_end_token1, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [10654] = 2, + ACTIONS(1859), 8, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_TILDE, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1861), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE_RBRACE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [10696] = 2, + ACTIONS(1863), 8, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_TILDE, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1865), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE_RBRACE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [10738] = 2, + ACTIONS(1867), 8, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_TILDE, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1869), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE_RBRACE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [10780] = 2, + ACTIONS(1871), 8, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_TILDE, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1873), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE_RBRACE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [10822] = 2, + ACTIONS(1764), 8, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_TILDE, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1766), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE_RBRACE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [10864] = 2, + ACTIONS(1768), 8, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_TILDE, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1770), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE_RBRACE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [10906] = 2, + ACTIONS(1772), 8, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_TILDE, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1774), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE_RBRACE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [10948] = 2, + ACTIONS(1776), 8, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_TILDE, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1778), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE_RBRACE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [10990] = 2, + ACTIONS(1780), 8, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_TILDE, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1782), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE_RBRACE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [11032] = 2, + ACTIONS(1784), 8, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_TILDE, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1786), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE_RBRACE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [11074] = 2, + ACTIONS(1788), 8, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_TILDE, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1790), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE_RBRACE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [11116] = 2, + ACTIONS(1901), 9, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1903), 28, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + aux_sym_strong_end_token1, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [11158] = 2, + ACTIONS(1855), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1857), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [11200] = 2, + ACTIONS(1894), 9, + anon_sym_LBRACE, + anon_sym__, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1896), 28, + anon_sym_LBRACE_, + aux_sym_emphasis_end_token1, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [11242] = 2, + ACTIONS(1792), 8, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_TILDE, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1794), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE_RBRACE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [11284] = 2, + ACTIONS(1796), 8, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_TILDE, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1798), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE_RBRACE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [11326] = 2, + ACTIONS(1800), 8, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_TILDE, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1802), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE_RBRACE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [11368] = 2, + ACTIONS(1804), 8, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_TILDE, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1806), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE_RBRACE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [11410] = 2, + ACTIONS(1808), 8, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_TILDE, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1810), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE_RBRACE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [11452] = 2, + ACTIONS(1812), 8, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_TILDE, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1814), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE_RBRACE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [11494] = 2, + ACTIONS(1816), 8, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_TILDE, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1818), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE_RBRACE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [11536] = 2, + ACTIONS(1760), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1762), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [11578] = 4, + ACTIONS(49), 1, + anon_sym_RBRACK, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(1665), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1660), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [11624] = 2, + ACTIONS(1851), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1853), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [11666] = 4, + ACTIONS(49), 1, + anon_sym_RBRACK, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(1649), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1644), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [11712] = 2, + ACTIONS(1847), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1849), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [11754] = 2, + ACTIONS(1843), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1845), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [11796] = 2, + ACTIONS(1756), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1758), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [11838] = 2, + ACTIONS(1839), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1841), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [11880] = 2, + ACTIONS(1715), 9, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1717), 28, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + aux_sym_strong_end_token1, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [11922] = 2, + ACTIONS(1835), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1837), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [11964] = 4, + ACTIONS(1905), 1, + anon_sym_LBRACE2, + STATE(388), 1, + sym_comment, + ACTIONS(1830), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1828), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [12010] = 2, + ACTIONS(1824), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1826), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [12052] = 2, + ACTIONS(1901), 9, + anon_sym_LBRACE, + anon_sym__, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1903), 28, + anon_sym_LBRACE_, + aux_sym_emphasis_end_token1, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [12094] = 4, + ACTIONS(49), 1, + anon_sym_EQ_RBRACE, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(1649), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1644), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [12140] = 4, + ACTIONS(49), 1, + anon_sym_EQ_RBRACE, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(1665), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1660), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [12186] = 2, + ACTIONS(1820), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1822), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_RBRACK, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [12228] = 2, + ACTIONS(1824), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1826), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_RBRACK, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [12270] = 4, + ACTIONS(1908), 1, + anon_sym_LBRACE2, + STATE(403), 1, + sym_comment, + ACTIONS(1830), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1828), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_RBRACK, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [12316] = 2, + ACTIONS(1894), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1896), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_RBRACK, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [12358] = 2, + ACTIONS(1816), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1818), 30, + ts_builtin_sym_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [12400] = 2, + ACTIONS(1835), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1837), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_RBRACK, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [12442] = 2, + ACTIONS(1715), 9, + anon_sym_LBRACE, + anon_sym__, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1717), 28, + anon_sym_LBRACE_, + aux_sym_emphasis_end_token1, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [12484] = 2, + ACTIONS(1839), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1841), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_RBRACK, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [12526] = 2, + ACTIONS(1756), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1758), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_RBRACK, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [12568] = 2, + ACTIONS(1843), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1845), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_RBRACK, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [12610] = 2, + ACTIONS(1847), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1849), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_RBRACK, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [12652] = 2, + ACTIONS(1851), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1853), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_RBRACK, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [12694] = 2, + ACTIONS(1760), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1762), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_RBRACK, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [12736] = 2, + ACTIONS(1855), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1857), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_RBRACK, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [12778] = 2, + ACTIONS(1901), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1903), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_RBRACK, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [12820] = 2, + ACTIONS(1894), 8, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_TILDE, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1896), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE_RBRACE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [12862] = 2, + ACTIONS(1715), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1717), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_RBRACK, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [12904] = 2, + ACTIONS(1859), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1861), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_RBRACK, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [12946] = 2, + ACTIONS(1863), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1865), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_RBRACK, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [12988] = 2, + ACTIONS(1867), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1869), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_RBRACK, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [13030] = 2, + ACTIONS(1871), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1873), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_RBRACK, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [13072] = 2, + ACTIONS(1764), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1766), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_RBRACK, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [13114] = 2, + ACTIONS(1768), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1770), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_RBRACK, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [13156] = 2, + ACTIONS(1772), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1774), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_RBRACK, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [13198] = 2, + ACTIONS(1776), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1778), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_RBRACK, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [13240] = 2, + ACTIONS(1780), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1782), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_RBRACK, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [13282] = 2, + ACTIONS(1784), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1786), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_RBRACK, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [13324] = 2, + ACTIONS(1788), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1790), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_RBRACK, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [13366] = 2, + ACTIONS(1901), 8, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_TILDE, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1903), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE_RBRACE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [13408] = 2, + ACTIONS(1894), 8, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_CARET, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1896), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET_RBRACE, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [13450] = 2, + ACTIONS(1715), 8, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_TILDE, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1717), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE_RBRACE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [13492] = 2, + ACTIONS(1792), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1794), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_RBRACK, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [13534] = 2, + ACTIONS(1796), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1798), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_RBRACK, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [13576] = 2, + ACTIONS(1800), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1802), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_RBRACK, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [13618] = 2, + ACTIONS(1804), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1806), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_RBRACK, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [13660] = 2, + ACTIONS(1808), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1810), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_RBRACK, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [13702] = 2, + ACTIONS(1812), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1814), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_RBRACK, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [13744] = 2, + ACTIONS(1816), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1818), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_RBRACK, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [13786] = 2, + ACTIONS(1901), 8, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_CARET, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1903), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET_RBRACE, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [13828] = 4, + ACTIONS(49), 1, + aux_sym_emphasis_end_token1, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(1665), 8, + anon_sym__, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1660), 27, + anon_sym_LBRACE_, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [13874] = 2, + ACTIONS(1894), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1896), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [13916] = 4, + ACTIONS(49), 1, + aux_sym_emphasis_end_token1, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(1649), 8, + anon_sym__, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1644), 27, + anon_sym_LBRACE_, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [13962] = 2, + ACTIONS(1715), 8, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_CARET, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1717), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET_RBRACE, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [14004] = 2, + ACTIONS(1901), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1903), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [14046] = 2, + ACTIONS(1894), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1896), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [14088] = 2, + ACTIONS(1715), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1717), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [14130] = 2, + ACTIONS(1812), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1814), 30, + ts_builtin_sym_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [14172] = 2, + ACTIONS(1901), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1903), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [14214] = 2, + ACTIONS(1808), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1810), 30, + ts_builtin_sym_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [14256] = 2, + ACTIONS(1804), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1806), 30, + ts_builtin_sym_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [14298] = 2, + ACTIONS(1800), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1802), 30, + ts_builtin_sym_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [14340] = 2, + ACTIONS(1796), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1798), 30, + ts_builtin_sym_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [14382] = 2, + ACTIONS(1792), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1794), 30, + ts_builtin_sym_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [14424] = 2, + ACTIONS(1820), 9, + anon_sym_LBRACE, + anon_sym__, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1822), 28, + anon_sym_LBRACE_, + aux_sym_emphasis_end_token1, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [14466] = 2, + ACTIONS(1824), 9, + anon_sym_LBRACE, + anon_sym__, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1826), 28, + anon_sym_LBRACE_, + aux_sym_emphasis_end_token1, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [14508] = 4, + ACTIONS(1911), 1, + anon_sym_LBRACE2, + STATE(456), 1, + sym_comment, + ACTIONS(1830), 7, + anon_sym__, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1828), 28, + anon_sym_LBRACE_, + aux_sym_emphasis_end_token1, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [14554] = 2, + ACTIONS(1894), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1896), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [14596] = 2, + ACTIONS(1715), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1717), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [14638] = 2, + ACTIONS(1835), 9, + anon_sym_LBRACE, + anon_sym__, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1837), 28, + anon_sym_LBRACE_, + aux_sym_emphasis_end_token1, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [14680] = 2, + ACTIONS(1901), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1903), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [14722] = 2, + ACTIONS(1839), 9, + anon_sym_LBRACE, + anon_sym__, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1841), 28, + anon_sym_LBRACE_, + aux_sym_emphasis_end_token1, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [14764] = 2, + ACTIONS(1715), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1717), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [14806] = 2, + ACTIONS(1843), 9, + anon_sym_LBRACE, + anon_sym__, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1845), 28, + anon_sym_LBRACE_, + aux_sym_emphasis_end_token1, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [14848] = 2, + ACTIONS(1847), 9, + anon_sym_LBRACE, + anon_sym__, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1849), 28, + anon_sym_LBRACE_, + aux_sym_emphasis_end_token1, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [14890] = 2, + ACTIONS(1851), 9, + anon_sym_LBRACE, + anon_sym__, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1853), 28, + anon_sym_LBRACE_, + aux_sym_emphasis_end_token1, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [14932] = 2, + ACTIONS(1760), 9, + anon_sym_LBRACE, + anon_sym__, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1762), 28, + anon_sym_LBRACE_, + aux_sym_emphasis_end_token1, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [14974] = 2, + ACTIONS(1855), 9, + anon_sym_LBRACE, + anon_sym__, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1857), 28, + anon_sym_LBRACE_, + aux_sym_emphasis_end_token1, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [15016] = 2, + ACTIONS(1816), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1818), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [15058] = 2, + ACTIONS(1812), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1814), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [15100] = 2, + ACTIONS(1808), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1810), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [15142] = 2, + ACTIONS(1859), 9, + anon_sym_LBRACE, + anon_sym__, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1861), 28, + anon_sym_LBRACE_, + aux_sym_emphasis_end_token1, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [15184] = 2, + ACTIONS(1863), 9, + anon_sym_LBRACE, + anon_sym__, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1865), 28, + anon_sym_LBRACE_, + aux_sym_emphasis_end_token1, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [15226] = 2, + ACTIONS(1867), 9, + anon_sym_LBRACE, + anon_sym__, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1869), 28, + anon_sym_LBRACE_, + aux_sym_emphasis_end_token1, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [15268] = 2, + ACTIONS(1871), 9, + anon_sym_LBRACE, + anon_sym__, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1873), 28, + anon_sym_LBRACE_, + aux_sym_emphasis_end_token1, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [15310] = 2, + ACTIONS(1764), 9, + anon_sym_LBRACE, + anon_sym__, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1766), 28, + anon_sym_LBRACE_, + aux_sym_emphasis_end_token1, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [15352] = 2, + ACTIONS(1768), 9, + anon_sym_LBRACE, + anon_sym__, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1770), 28, + anon_sym_LBRACE_, + aux_sym_emphasis_end_token1, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [15394] = 2, + ACTIONS(1772), 9, + anon_sym_LBRACE, + anon_sym__, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1774), 28, + anon_sym_LBRACE_, + aux_sym_emphasis_end_token1, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [15436] = 2, + ACTIONS(1776), 9, + anon_sym_LBRACE, + anon_sym__, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1778), 28, + anon_sym_LBRACE_, + aux_sym_emphasis_end_token1, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [15478] = 2, + ACTIONS(1780), 9, + anon_sym_LBRACE, + anon_sym__, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1782), 28, + anon_sym_LBRACE_, + aux_sym_emphasis_end_token1, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [15520] = 2, + ACTIONS(1784), 9, + anon_sym_LBRACE, + anon_sym__, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1786), 28, + anon_sym_LBRACE_, + aux_sym_emphasis_end_token1, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [15562] = 2, + ACTIONS(1788), 9, + anon_sym_LBRACE, + anon_sym__, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1790), 28, + anon_sym_LBRACE_, + aux_sym_emphasis_end_token1, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [15604] = 2, + ACTIONS(1715), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1717), 30, + ts_builtin_sym_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [15646] = 2, + ACTIONS(1804), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1806), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [15688] = 2, + ACTIONS(1800), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1802), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [15730] = 2, + ACTIONS(1792), 9, + anon_sym_LBRACE, + anon_sym__, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1794), 28, + anon_sym_LBRACE_, + aux_sym_emphasis_end_token1, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [15772] = 2, + ACTIONS(1796), 9, + anon_sym_LBRACE, + anon_sym__, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1798), 28, + anon_sym_LBRACE_, + aux_sym_emphasis_end_token1, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [15814] = 2, + ACTIONS(1800), 9, + anon_sym_LBRACE, + anon_sym__, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1802), 28, + anon_sym_LBRACE_, + aux_sym_emphasis_end_token1, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [15856] = 2, + ACTIONS(1804), 9, + anon_sym_LBRACE, + anon_sym__, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1806), 28, + anon_sym_LBRACE_, + aux_sym_emphasis_end_token1, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [15898] = 2, + ACTIONS(1808), 9, + anon_sym_LBRACE, + anon_sym__, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1810), 28, + anon_sym_LBRACE_, + aux_sym_emphasis_end_token1, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [15940] = 2, + ACTIONS(1812), 9, + anon_sym_LBRACE, + anon_sym__, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1814), 28, + anon_sym_LBRACE_, + aux_sym_emphasis_end_token1, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [15982] = 2, + ACTIONS(1816), 9, + anon_sym_LBRACE, + anon_sym__, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1818), 28, + anon_sym_LBRACE_, + aux_sym_emphasis_end_token1, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [16024] = 2, + ACTIONS(1796), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1798), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [16066] = 4, + ACTIONS(49), 1, + aux_sym_strong_end_token1, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(1665), 8, + anon_sym_STAR, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1660), 27, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [16112] = 2, + ACTIONS(1792), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1794), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [16154] = 4, + ACTIONS(49), 1, + aux_sym_strong_end_token1, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(1649), 8, + anon_sym_STAR, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1644), 27, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [16200] = 2, + ACTIONS(1788), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1790), 30, + ts_builtin_sym_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [16242] = 2, + ACTIONS(1784), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1786), 30, + ts_builtin_sym_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [16284] = 2, + ACTIONS(1780), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1782), 30, + ts_builtin_sym_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [16326] = 2, + ACTIONS(1776), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1778), 30, + ts_builtin_sym_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [16368] = 2, + ACTIONS(1894), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1896), 30, + ts_builtin_sym_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [16410] = 2, + ACTIONS(1839), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1841), 30, + ts_builtin_sym_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [16452] = 2, + ACTIONS(1788), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1790), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [16494] = 2, + ACTIONS(1784), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1786), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [16536] = 2, + ACTIONS(1772), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1774), 30, + ts_builtin_sym_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [16578] = 2, + ACTIONS(1768), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1770), 30, + ts_builtin_sym_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [16620] = 2, + ACTIONS(1764), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1766), 30, + ts_builtin_sym_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [16662] = 2, + ACTIONS(1820), 9, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1822), 28, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + aux_sym_strong_end_token1, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [16704] = 2, + ACTIONS(1824), 9, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1826), 28, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + aux_sym_strong_end_token1, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [16746] = 4, + ACTIONS(1914), 1, + anon_sym_LBRACE2, + STATE(509), 1, + sym_comment, + ACTIONS(1830), 7, + anon_sym_STAR, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1828), 28, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + aux_sym_strong_end_token1, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [16792] = 2, + ACTIONS(1871), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1873), 30, + ts_builtin_sym_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [16834] = 2, + ACTIONS(1867), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1869), 30, + ts_builtin_sym_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [16876] = 2, + ACTIONS(1835), 9, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1837), 28, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + aux_sym_strong_end_token1, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [16918] = 2, + ACTIONS(1780), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1782), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [16960] = 2, + ACTIONS(1839), 9, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1841), 28, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + aux_sym_strong_end_token1, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [17002] = 2, + ACTIONS(1756), 9, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1758), 28, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + aux_sym_strong_end_token1, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [17044] = 2, + ACTIONS(1843), 9, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1845), 28, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + aux_sym_strong_end_token1, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [17086] = 2, + ACTIONS(1847), 9, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1849), 28, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + aux_sym_strong_end_token1, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [17128] = 2, + ACTIONS(1851), 9, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1853), 28, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + aux_sym_strong_end_token1, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [17170] = 2, + ACTIONS(1760), 9, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1762), 28, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + aux_sym_strong_end_token1, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [17212] = 2, + ACTIONS(1855), 9, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1857), 28, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + aux_sym_strong_end_token1, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [17254] = 2, + ACTIONS(1863), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1865), 30, + ts_builtin_sym_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [17296] = 2, + ACTIONS(1859), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1861), 30, + ts_builtin_sym_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [17338] = 2, + ACTIONS(1776), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1778), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [17380] = 2, + ACTIONS(1859), 9, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1861), 28, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + aux_sym_strong_end_token1, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [17422] = 2, + ACTIONS(1863), 9, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1865), 28, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + aux_sym_strong_end_token1, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [17464] = 2, + ACTIONS(1867), 9, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1869), 28, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + aux_sym_strong_end_token1, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [17506] = 2, + ACTIONS(1871), 9, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1873), 28, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + aux_sym_strong_end_token1, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [17548] = 2, + ACTIONS(1764), 9, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1766), 28, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + aux_sym_strong_end_token1, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [17590] = 2, + ACTIONS(1768), 9, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1770), 28, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + aux_sym_strong_end_token1, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [17632] = 2, + ACTIONS(1772), 9, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1774), 28, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + aux_sym_strong_end_token1, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [17674] = 2, + ACTIONS(1776), 9, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1778), 28, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + aux_sym_strong_end_token1, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [17716] = 2, + ACTIONS(1780), 9, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1782), 28, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + aux_sym_strong_end_token1, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [17758] = 2, + ACTIONS(1784), 9, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1786), 28, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + aux_sym_strong_end_token1, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [17800] = 2, + ACTIONS(1788), 9, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1790), 28, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + aux_sym_strong_end_token1, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [17842] = 2, + ACTIONS(1772), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1774), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [17884] = 2, + ACTIONS(1768), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1770), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [17926] = 2, + ACTIONS(1764), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1766), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [17968] = 2, + ACTIONS(1792), 9, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1794), 28, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + aux_sym_strong_end_token1, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [18010] = 2, + ACTIONS(1796), 9, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1798), 28, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + aux_sym_strong_end_token1, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [18052] = 2, + ACTIONS(1800), 9, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1802), 28, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + aux_sym_strong_end_token1, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [18094] = 2, + ACTIONS(1804), 9, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1806), 28, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + aux_sym_strong_end_token1, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [18136] = 2, + ACTIONS(1808), 9, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1810), 28, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + aux_sym_strong_end_token1, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [18178] = 2, + ACTIONS(1812), 9, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1814), 28, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + aux_sym_strong_end_token1, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [18220] = 2, + ACTIONS(1816), 9, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1818), 28, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + aux_sym_strong_end_token1, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [18262] = 2, + ACTIONS(1871), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1873), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [18304] = 4, + ACTIONS(49), 1, + anon_sym_RBRACK2, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(1665), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1660), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [18350] = 2, + ACTIONS(1867), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1869), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [18392] = 4, + ACTIONS(49), 1, + anon_sym_RBRACK2, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(1649), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1644), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [18438] = 2, + ACTIONS(1863), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1865), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [18480] = 2, + ACTIONS(1859), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1861), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [18522] = 2, + ACTIONS(1901), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1903), 30, + ts_builtin_sym_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [18564] = 2, + ACTIONS(1855), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1857), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [18606] = 4, + ACTIONS(1919), 1, + anon_sym_SPACE, + STATE(548), 1, + aux_sym_emphasis_begin_repeat1, + ACTIONS(1922), 7, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1917), 28, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [18652] = 2, + ACTIONS(1871), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1873), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [18694] = 2, + ACTIONS(1855), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1857), 30, + ts_builtin_sym_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [18736] = 2, + ACTIONS(1760), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1762), 30, + ts_builtin_sym_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [18778] = 2, + ACTIONS(1851), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1853), 30, + ts_builtin_sym_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [18820] = 2, + ACTIONS(1847), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1849), 30, + ts_builtin_sym_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [18862] = 2, + ACTIONS(1843), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1845), 30, + ts_builtin_sym_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [18904] = 2, + ACTIONS(1820), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1822), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [18946] = 2, + ACTIONS(1824), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1826), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [18988] = 4, + ACTIONS(1924), 1, + anon_sym_LBRACE2, + STATE(562), 1, + sym_comment, + ACTIONS(1830), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1828), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [19034] = 2, + ACTIONS(1851), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1853), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [19076] = 2, + ACTIONS(1756), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1758), 30, + ts_builtin_sym_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [19118] = 2, + ACTIONS(1835), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1837), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [19160] = 2, + ACTIONS(1847), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1849), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [19202] = 2, + ACTIONS(1839), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1841), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [19244] = 2, + ACTIONS(1756), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1758), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [19286] = 2, + ACTIONS(1843), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1845), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [19328] = 2, + ACTIONS(1894), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1896), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [19369] = 2, + ACTIONS(1894), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1896), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [19410] = 2, + ACTIONS(1929), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1927), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [19451] = 2, + ACTIONS(1901), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1903), 30, + ts_builtin_sym_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [19492] = 2, + ACTIONS(1901), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1903), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [19533] = 2, + ACTIONS(1894), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1896), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [19574] = 2, + ACTIONS(1929), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1927), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [19615] = 2, + ACTIONS(1894), 7, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_CARET, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1896), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET_RBRACE, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [19656] = 2, + ACTIONS(1894), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1896), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [19697] = 2, + ACTIONS(1901), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1903), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [19738] = 2, + ACTIONS(1929), 7, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_TILDE, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1927), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE_RBRACE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [19779] = 2, + ACTIONS(1894), 8, + anon_sym_STAR, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1896), 28, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + aux_sym_strong_end_token1, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [19820] = 2, + ACTIONS(1929), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1927), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [19861] = 2, + ACTIONS(1929), 7, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_CARET, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1927), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET_RBRACE, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [19902] = 2, + ACTIONS(1901), 8, + anon_sym_STAR, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1903), 28, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + aux_sym_strong_end_token1, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [19943] = 2, + ACTIONS(1929), 8, + anon_sym_STAR, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1927), 28, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + aux_sym_strong_end_token1, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [19984] = 2, + ACTIONS(1901), 7, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_TILDE, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1903), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE_RBRACE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [20025] = 2, + ACTIONS(1901), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1903), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [20066] = 2, + ACTIONS(1929), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1927), 30, + ts_builtin_sym_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [20107] = 2, + ACTIONS(1901), 7, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_CARET, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1903), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET_RBRACE, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [20148] = 2, + ACTIONS(1894), 7, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_TILDE, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1896), 29, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE_RBRACE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [20189] = 2, + ACTIONS(1929), 8, + anon_sym__, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1927), 28, + anon_sym_LBRACE_, + aux_sym_emphasis_end_token1, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [20230] = 2, + ACTIONS(1894), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1896), 30, + ts_builtin_sym_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [20271] = 2, + ACTIONS(1894), 8, + anon_sym__, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1896), 28, + anon_sym_LBRACE_, + aux_sym_emphasis_end_token1, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [20312] = 2, + ACTIONS(1894), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1896), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_RBRACK, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [20353] = 2, + ACTIONS(1901), 8, + anon_sym__, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1903), 28, + anon_sym_LBRACE_, + aux_sym_emphasis_end_token1, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__newline, + [20394] = 2, + ACTIONS(1929), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1927), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_RBRACK, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [20435] = 2, + ACTIONS(1929), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1927), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [20476] = 2, + ACTIONS(1901), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1903), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [20517] = 2, + ACTIONS(1901), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1903), 30, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_RBRACK, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + anon_sym_BQUOTE, + sym__whitespace1, + sym__newline, + [20558] = 9, + ACTIONS(1931), 1, + anon_sym_RBRACE, + ACTIONS(1933), 1, + sym__id, + ACTIONS(1935), 1, + anon_sym_PERCENT, + ACTIONS(1939), 1, + anon_sym_DOT, + STATE(597), 1, + aux_sym_inline_attribute_repeat1, + STATE(644), 1, + sym__comment_with_newline, + STATE(877), 1, + sym_key, + STATE(637), 2, + sym_class, + sym_key_value, + ACTIONS(1937), 3, + sym__whitespace1, + sym__newline, + sym_identifier, + [20589] = 9, + ACTIONS(1933), 1, + sym__id, + ACTIONS(1935), 1, + anon_sym_PERCENT, + ACTIONS(1939), 1, + anon_sym_DOT, + ACTIONS(1941), 1, + anon_sym_RBRACE, + STATE(635), 1, + aux_sym_inline_attribute_repeat1, + STATE(644), 1, + sym__comment_with_newline, + STATE(877), 1, + sym_key, + STATE(637), 2, + sym_class, + sym_key_value, + ACTIONS(1937), 3, + sym__whitespace1, + sym__newline, + sym_identifier, + [20620] = 9, + ACTIONS(1933), 1, + sym__id, + ACTIONS(1935), 1, + anon_sym_PERCENT, + ACTIONS(1939), 1, + anon_sym_DOT, + ACTIONS(1943), 1, + anon_sym_RBRACE, + STATE(602), 1, + aux_sym_inline_attribute_repeat1, + STATE(644), 1, + sym__comment_with_newline, + STATE(877), 1, + sym_key, + STATE(637), 2, + sym_class, + sym_key_value, + ACTIONS(1937), 3, + sym__whitespace1, + sym__newline, + sym_identifier, + [20651] = 9, + ACTIONS(1933), 1, + sym__id, + ACTIONS(1935), 1, + anon_sym_PERCENT, + ACTIONS(1939), 1, + anon_sym_DOT, + ACTIONS(1945), 1, + anon_sym_RBRACE, + STATE(599), 1, + aux_sym_inline_attribute_repeat1, + STATE(644), 1, + sym__comment_with_newline, + STATE(877), 1, + sym_key, + STATE(637), 2, + sym_class, + sym_key_value, + ACTIONS(1937), 3, + sym__whitespace1, + sym__newline, + sym_identifier, + [20682] = 9, + ACTIONS(1933), 1, + sym__id, + ACTIONS(1935), 1, + anon_sym_PERCENT, + ACTIONS(1939), 1, + anon_sym_DOT, + ACTIONS(1947), 1, + anon_sym_RBRACE, + STATE(602), 1, + aux_sym_inline_attribute_repeat1, + STATE(644), 1, + sym__comment_with_newline, + STATE(877), 1, + sym_key, + STATE(637), 2, + sym_class, + sym_key_value, + ACTIONS(1937), 3, + sym__whitespace1, + sym__newline, + sym_identifier, + [20713] = 9, + ACTIONS(1933), 1, + sym__id, + ACTIONS(1935), 1, + anon_sym_PERCENT, + ACTIONS(1939), 1, + anon_sym_DOT, + ACTIONS(1949), 1, + anon_sym_RBRACE, + STATE(604), 1, + aux_sym_inline_attribute_repeat1, + STATE(644), 1, + sym__comment_with_newline, + STATE(877), 1, + sym_key, + STATE(637), 2, + sym_class, + sym_key_value, + ACTIONS(1937), 3, + sym__whitespace1, + sym__newline, + sym_identifier, + [20744] = 9, + ACTIONS(1933), 1, + sym__id, + ACTIONS(1935), 1, + anon_sym_PERCENT, + ACTIONS(1939), 1, + anon_sym_DOT, + ACTIONS(1951), 1, + anon_sym_RBRACE, + STATE(602), 1, + aux_sym_inline_attribute_repeat1, + STATE(644), 1, + sym__comment_with_newline, + STATE(877), 1, + sym_key, + STATE(637), 2, + sym_class, + sym_key_value, + ACTIONS(1937), 3, + sym__whitespace1, + sym__newline, + sym_identifier, + [20775] = 9, + ACTIONS(1953), 1, + anon_sym_RBRACE, + ACTIONS(1955), 1, + sym__id, + ACTIONS(1958), 1, + anon_sym_PERCENT, + ACTIONS(1964), 1, + anon_sym_DOT, + STATE(602), 1, + aux_sym_inline_attribute_repeat1, + STATE(644), 1, + sym__comment_with_newline, + STATE(877), 1, + sym_key, + STATE(637), 2, + sym_class, + sym_key_value, + ACTIONS(1961), 3, + sym__whitespace1, + sym__newline, + sym_identifier, + [20806] = 9, + ACTIONS(1933), 1, + sym__id, + ACTIONS(1935), 1, + anon_sym_PERCENT, + ACTIONS(1939), 1, + anon_sym_DOT, + ACTIONS(1967), 1, + anon_sym_RBRACE, + STATE(602), 1, + aux_sym_inline_attribute_repeat1, + STATE(644), 1, + sym__comment_with_newline, + STATE(877), 1, + sym_key, + STATE(637), 2, + sym_class, + sym_key_value, + ACTIONS(1937), 3, + sym__whitespace1, + sym__newline, + sym_identifier, + [20837] = 9, + ACTIONS(1933), 1, + sym__id, + ACTIONS(1935), 1, + anon_sym_PERCENT, + ACTIONS(1939), 1, + anon_sym_DOT, + ACTIONS(1969), 1, + anon_sym_RBRACE, + STATE(602), 1, + aux_sym_inline_attribute_repeat1, + STATE(644), 1, + sym__comment_with_newline, + STATE(877), 1, + sym_key, + STATE(637), 2, + sym_class, + sym_key_value, + ACTIONS(1937), 3, + sym__whitespace1, + sym__newline, + sym_identifier, + [20868] = 9, + ACTIONS(1933), 1, + sym__id, + ACTIONS(1935), 1, + anon_sym_PERCENT, + ACTIONS(1939), 1, + anon_sym_DOT, + ACTIONS(1971), 1, + anon_sym_RBRACE, + STATE(601), 1, + aux_sym_inline_attribute_repeat1, + STATE(644), 1, + sym__comment_with_newline, + STATE(877), 1, + sym_key, + STATE(637), 2, + sym_class, + sym_key_value, + ACTIONS(1937), 3, + sym__whitespace1, + sym__newline, + sym_identifier, + [20899] = 9, + ACTIONS(1933), 1, + sym__id, + ACTIONS(1935), 1, + anon_sym_PERCENT, + ACTIONS(1939), 1, + anon_sym_DOT, + ACTIONS(1973), 1, + anon_sym_RBRACE, + STATE(608), 1, + aux_sym_inline_attribute_repeat1, + STATE(644), 1, + sym__comment_with_newline, + STATE(877), 1, + sym_key, + STATE(637), 2, + sym_class, + sym_key_value, + ACTIONS(1937), 3, + sym__whitespace1, + sym__newline, + sym_identifier, + [20930] = 9, + ACTIONS(1933), 1, + sym__id, + ACTIONS(1935), 1, + anon_sym_PERCENT, + ACTIONS(1939), 1, + anon_sym_DOT, + ACTIONS(1975), 1, + anon_sym_RBRACE, + STATE(603), 1, + aux_sym_inline_attribute_repeat1, + STATE(644), 1, + sym__comment_with_newline, + STATE(877), 1, + sym_key, + STATE(637), 2, + sym_class, + sym_key_value, + ACTIONS(1937), 3, + sym__whitespace1, + sym__newline, + sym_identifier, + [20961] = 9, + ACTIONS(1933), 1, + sym__id, + ACTIONS(1935), 1, + anon_sym_PERCENT, + ACTIONS(1939), 1, + anon_sym_DOT, + ACTIONS(1977), 1, + anon_sym_RBRACE, + STATE(602), 1, + aux_sym_inline_attribute_repeat1, + STATE(644), 1, + sym__comment_with_newline, + STATE(877), 1, + sym_key, + STATE(637), 2, + sym_class, + sym_key_value, + ACTIONS(1937), 3, + sym__whitespace1, + sym__newline, + sym_identifier, + [20992] = 9, + ACTIONS(1933), 1, + sym__id, + ACTIONS(1935), 1, + anon_sym_PERCENT, + ACTIONS(1939), 1, + anon_sym_DOT, + ACTIONS(1979), 1, + anon_sym_RBRACE, + STATE(602), 1, + aux_sym_inline_attribute_repeat1, + STATE(644), 1, + sym__comment_with_newline, + STATE(877), 1, + sym_key, + STATE(637), 2, + sym_class, + sym_key_value, + ACTIONS(1937), 3, + sym__whitespace1, + sym__newline, + sym_identifier, + [21023] = 9, + ACTIONS(1933), 1, + sym__id, + ACTIONS(1935), 1, + anon_sym_PERCENT, + ACTIONS(1939), 1, + anon_sym_DOT, + ACTIONS(1981), 1, + anon_sym_RBRACE, + STATE(602), 1, + aux_sym_inline_attribute_repeat1, + STATE(644), 1, + sym__comment_with_newline, + STATE(877), 1, + sym_key, + STATE(637), 2, + sym_class, + sym_key_value, + ACTIONS(1937), 3, + sym__whitespace1, + sym__newline, + sym_identifier, + [21054] = 9, + ACTIONS(1933), 1, + sym__id, + ACTIONS(1935), 1, + anon_sym_PERCENT, + ACTIONS(1939), 1, + anon_sym_DOT, + ACTIONS(1983), 1, + anon_sym_RBRACE, + STATE(612), 1, + aux_sym_inline_attribute_repeat1, + STATE(644), 1, + sym__comment_with_newline, + STATE(877), 1, + sym_key, + STATE(637), 2, + sym_class, + sym_key_value, + ACTIONS(1937), 3, + sym__whitespace1, + sym__newline, + sym_identifier, + [21085] = 9, + ACTIONS(1933), 1, + sym__id, + ACTIONS(1935), 1, + anon_sym_PERCENT, + ACTIONS(1939), 1, + anon_sym_DOT, + ACTIONS(1985), 1, + anon_sym_RBRACE, + STATE(602), 1, + aux_sym_inline_attribute_repeat1, + STATE(644), 1, + sym__comment_with_newline, + STATE(877), 1, + sym_key, + STATE(637), 2, + sym_class, + sym_key_value, + ACTIONS(1937), 3, + sym__whitespace1, + sym__newline, + sym_identifier, + [21116] = 9, + ACTIONS(1933), 1, + sym__id, + ACTIONS(1935), 1, + anon_sym_PERCENT, + ACTIONS(1939), 1, + anon_sym_DOT, + ACTIONS(1987), 1, + anon_sym_RBRACE, + STATE(610), 1, + aux_sym_inline_attribute_repeat1, + STATE(644), 1, + sym__comment_with_newline, + STATE(877), 1, + sym_key, + STATE(637), 2, + sym_class, + sym_key_value, + ACTIONS(1937), 3, + sym__whitespace1, + sym__newline, + sym_identifier, + [21147] = 9, + ACTIONS(1933), 1, + sym__id, + ACTIONS(1935), 1, + anon_sym_PERCENT, + ACTIONS(1939), 1, + anon_sym_DOT, + ACTIONS(1989), 1, + anon_sym_RBRACE, + STATE(602), 1, + aux_sym_inline_attribute_repeat1, + STATE(644), 1, + sym__comment_with_newline, + STATE(877), 1, + sym_key, + STATE(637), 2, + sym_class, + sym_key_value, + ACTIONS(1937), 3, + sym__whitespace1, + sym__newline, + sym_identifier, + [21178] = 9, + ACTIONS(1933), 1, + sym__id, + ACTIONS(1935), 1, + anon_sym_PERCENT, + ACTIONS(1939), 1, + anon_sym_DOT, + ACTIONS(1991), 1, + anon_sym_RBRACE, + STATE(617), 1, + aux_sym_inline_attribute_repeat1, + STATE(644), 1, + sym__comment_with_newline, + STATE(877), 1, + sym_key, + STATE(637), 2, + sym_class, + sym_key_value, + ACTIONS(1937), 3, + sym__whitespace1, + sym__newline, + sym_identifier, + [21209] = 9, + ACTIONS(1933), 1, + sym__id, + ACTIONS(1935), 1, + anon_sym_PERCENT, + ACTIONS(1939), 1, + anon_sym_DOT, + ACTIONS(1993), 1, + anon_sym_RBRACE, + STATE(619), 1, + aux_sym_inline_attribute_repeat1, + STATE(644), 1, + sym__comment_with_newline, + STATE(877), 1, + sym_key, + STATE(637), 2, + sym_class, + sym_key_value, + ACTIONS(1937), 3, + sym__whitespace1, + sym__newline, + sym_identifier, + [21240] = 9, + ACTIONS(1933), 1, + sym__id, + ACTIONS(1935), 1, + anon_sym_PERCENT, + ACTIONS(1939), 1, + anon_sym_DOT, + ACTIONS(1995), 1, + anon_sym_RBRACE, + STATE(602), 1, + aux_sym_inline_attribute_repeat1, + STATE(644), 1, + sym__comment_with_newline, + STATE(877), 1, + sym_key, + STATE(637), 2, + sym_class, + sym_key_value, + ACTIONS(1937), 3, + sym__whitespace1, + sym__newline, + sym_identifier, + [21271] = 9, + ACTIONS(1933), 1, + sym__id, + ACTIONS(1935), 1, + anon_sym_PERCENT, + ACTIONS(1939), 1, + anon_sym_DOT, + ACTIONS(1997), 1, + anon_sym_RBRACE, + STATE(602), 1, + aux_sym_inline_attribute_repeat1, + STATE(644), 1, + sym__comment_with_newline, + STATE(877), 1, + sym_key, + STATE(637), 2, + sym_class, + sym_key_value, + ACTIONS(1937), 3, + sym__whitespace1, + sym__newline, + sym_identifier, + [21302] = 9, + ACTIONS(1933), 1, + sym__id, + ACTIONS(1935), 1, + anon_sym_PERCENT, + ACTIONS(1939), 1, + anon_sym_DOT, + ACTIONS(1999), 1, + anon_sym_RBRACE, + STATE(602), 1, + aux_sym_inline_attribute_repeat1, + STATE(644), 1, + sym__comment_with_newline, + STATE(877), 1, + sym_key, + STATE(637), 2, + sym_class, + sym_key_value, + ACTIONS(1937), 3, + sym__whitespace1, + sym__newline, + sym_identifier, + [21333] = 9, + ACTIONS(1933), 1, + sym__id, + ACTIONS(1935), 1, + anon_sym_PERCENT, + ACTIONS(1939), 1, + anon_sym_DOT, + ACTIONS(2001), 1, + anon_sym_RBRACE, + STATE(614), 1, + aux_sym_inline_attribute_repeat1, + STATE(644), 1, + sym__comment_with_newline, + STATE(877), 1, + sym_key, + STATE(637), 2, + sym_class, + sym_key_value, + ACTIONS(1937), 3, + sym__whitespace1, + sym__newline, + sym_identifier, + [21364] = 9, + ACTIONS(1933), 1, + sym__id, + ACTIONS(1935), 1, + anon_sym_PERCENT, + ACTIONS(1939), 1, + anon_sym_DOT, + ACTIONS(2003), 1, + anon_sym_RBRACE, + STATE(609), 1, + aux_sym_inline_attribute_repeat1, + STATE(644), 1, + sym__comment_with_newline, + STATE(877), 1, + sym_key, + STATE(637), 2, + sym_class, + sym_key_value, + ACTIONS(1937), 3, + sym__whitespace1, + sym__newline, + sym_identifier, + [21395] = 9, + ACTIONS(1933), 1, + sym__id, + ACTIONS(1935), 1, + anon_sym_PERCENT, + ACTIONS(1939), 1, + anon_sym_DOT, + ACTIONS(2005), 1, + anon_sym_RBRACE, + STATE(624), 1, + aux_sym_inline_attribute_repeat1, + STATE(644), 1, + sym__comment_with_newline, + STATE(877), 1, + sym_key, + STATE(637), 2, + sym_class, + sym_key_value, + ACTIONS(1937), 3, + sym__whitespace1, + sym__newline, + sym_identifier, + [21426] = 9, + ACTIONS(1933), 1, + sym__id, + ACTIONS(1935), 1, + anon_sym_PERCENT, + ACTIONS(1939), 1, + anon_sym_DOT, + ACTIONS(2007), 1, + anon_sym_RBRACE, + STATE(618), 1, + aux_sym_inline_attribute_repeat1, + STATE(644), 1, + sym__comment_with_newline, + STATE(877), 1, + sym_key, + STATE(637), 2, + sym_class, + sym_key_value, + ACTIONS(1937), 3, + sym__whitespace1, + sym__newline, + sym_identifier, + [21457] = 9, + ACTIONS(1933), 1, + sym__id, + ACTIONS(1935), 1, + anon_sym_PERCENT, + ACTIONS(1939), 1, + anon_sym_DOT, + ACTIONS(2009), 1, + anon_sym_RBRACE, + STATE(602), 1, + aux_sym_inline_attribute_repeat1, + STATE(644), 1, + sym__comment_with_newline, + STATE(877), 1, + sym_key, + STATE(637), 2, + sym_class, + sym_key_value, + ACTIONS(1937), 3, + sym__whitespace1, + sym__newline, + sym_identifier, + [21488] = 9, + ACTIONS(1933), 1, + sym__id, + ACTIONS(1935), 1, + anon_sym_PERCENT, + ACTIONS(1939), 1, + anon_sym_DOT, + ACTIONS(2011), 1, + anon_sym_RBRACE, + STATE(602), 1, + aux_sym_inline_attribute_repeat1, + STATE(644), 1, + sym__comment_with_newline, + STATE(877), 1, + sym_key, + STATE(637), 2, + sym_class, + sym_key_value, + ACTIONS(1937), 3, + sym__whitespace1, + sym__newline, + sym_identifier, + [21519] = 9, + ACTIONS(1933), 1, + sym__id, + ACTIONS(1935), 1, + anon_sym_PERCENT, + ACTIONS(1939), 1, + anon_sym_DOT, + ACTIONS(2013), 1, + anon_sym_RBRACE, + STATE(625), 1, + aux_sym_inline_attribute_repeat1, + STATE(644), 1, + sym__comment_with_newline, + STATE(877), 1, + sym_key, + STATE(637), 2, + sym_class, + sym_key_value, + ACTIONS(1937), 3, + sym__whitespace1, + sym__newline, + sym_identifier, + [21550] = 9, + ACTIONS(1933), 1, + sym__id, + ACTIONS(1935), 1, + anon_sym_PERCENT, + ACTIONS(1939), 1, + anon_sym_DOT, + ACTIONS(2015), 1, + anon_sym_RBRACE, + STATE(602), 1, + aux_sym_inline_attribute_repeat1, + STATE(644), 1, + sym__comment_with_newline, + STATE(877), 1, + sym_key, + STATE(637), 2, + sym_class, + sym_key_value, + ACTIONS(1937), 3, + sym__whitespace1, + sym__newline, + sym_identifier, + [21581] = 9, + ACTIONS(1933), 1, + sym__id, + ACTIONS(1935), 1, + anon_sym_PERCENT, + ACTIONS(1939), 1, + anon_sym_DOT, + ACTIONS(2017), 1, + anon_sym_RBRACE, + STATE(627), 1, + aux_sym_inline_attribute_repeat1, + STATE(644), 1, + sym__comment_with_newline, + STATE(877), 1, + sym_key, + STATE(637), 2, + sym_class, + sym_key_value, + ACTIONS(1937), 3, + sym__whitespace1, + sym__newline, + sym_identifier, + [21612] = 9, + ACTIONS(1933), 1, + sym__id, + ACTIONS(1935), 1, + anon_sym_PERCENT, + ACTIONS(1939), 1, + anon_sym_DOT, + ACTIONS(2019), 1, + anon_sym_RBRACE, + STATE(602), 1, + aux_sym_inline_attribute_repeat1, + STATE(644), 1, + sym__comment_with_newline, + STATE(877), 1, + sym_key, + STATE(637), 2, + sym_class, + sym_key_value, + ACTIONS(1937), 3, + sym__whitespace1, + sym__newline, + sym_identifier, + [21643] = 9, + ACTIONS(1933), 1, + sym__id, + ACTIONS(1935), 1, + anon_sym_PERCENT, + ACTIONS(1939), 1, + anon_sym_DOT, + ACTIONS(2021), 1, + anon_sym_RBRACE, + STATE(629), 1, + aux_sym_inline_attribute_repeat1, + STATE(644), 1, + sym__comment_with_newline, + STATE(877), 1, + sym_key, + STATE(637), 2, + sym_class, + sym_key_value, + ACTIONS(1937), 3, + sym__whitespace1, + sym__newline, + sym_identifier, + [21674] = 9, + ACTIONS(1933), 1, + sym__id, + ACTIONS(1935), 1, + anon_sym_PERCENT, + ACTIONS(1939), 1, + anon_sym_DOT, + ACTIONS(2023), 1, + anon_sym_RBRACE, + STATE(602), 1, + aux_sym_inline_attribute_repeat1, + STATE(644), 1, + sym__comment_with_newline, + STATE(877), 1, + sym_key, + STATE(637), 2, + sym_class, + sym_key_value, + ACTIONS(1937), 3, + sym__whitespace1, + sym__newline, + sym_identifier, + [21705] = 9, + ACTIONS(1933), 1, + sym__id, + ACTIONS(1935), 1, + anon_sym_PERCENT, + ACTIONS(1939), 1, + anon_sym_DOT, + ACTIONS(2025), 1, + anon_sym_RBRACE, + STATE(631), 1, + aux_sym_inline_attribute_repeat1, + STATE(644), 1, + sym__comment_with_newline, + STATE(877), 1, + sym_key, + STATE(637), 2, + sym_class, + sym_key_value, + ACTIONS(1937), 3, + sym__whitespace1, + sym__newline, + sym_identifier, + [21736] = 9, + ACTIONS(1933), 1, + sym__id, + ACTIONS(1935), 1, + anon_sym_PERCENT, + ACTIONS(1939), 1, + anon_sym_DOT, + ACTIONS(2027), 1, + anon_sym_RBRACE, + STATE(602), 1, + aux_sym_inline_attribute_repeat1, + STATE(644), 1, + sym__comment_with_newline, + STATE(877), 1, + sym_key, + STATE(637), 2, + sym_class, + sym_key_value, + ACTIONS(1937), 3, + sym__whitespace1, + sym__newline, + sym_identifier, + [21767] = 9, + ACTIONS(1933), 1, + sym__id, + ACTIONS(1935), 1, + anon_sym_PERCENT, + ACTIONS(1939), 1, + anon_sym_DOT, + ACTIONS(2029), 1, + anon_sym_RBRACE, + STATE(633), 1, + aux_sym_inline_attribute_repeat1, + STATE(644), 1, + sym__comment_with_newline, + STATE(877), 1, + sym_key, + STATE(637), 2, + sym_class, + sym_key_value, + ACTIONS(1937), 3, + sym__whitespace1, + sym__newline, + sym_identifier, + [21798] = 9, + ACTIONS(1933), 1, + sym__id, + ACTIONS(1935), 1, + anon_sym_PERCENT, + ACTIONS(1939), 1, + anon_sym_DOT, + ACTIONS(2031), 1, + anon_sym_RBRACE, + STATE(602), 1, + aux_sym_inline_attribute_repeat1, + STATE(644), 1, + sym__comment_with_newline, + STATE(877), 1, + sym_key, + STATE(637), 2, + sym_class, + sym_key_value, + ACTIONS(1937), 3, + sym__whitespace1, + sym__newline, + sym_identifier, + [21829] = 1, + ACTIONS(2033), 7, + anon_sym_RBRACE, + sym__id, + anon_sym_PERCENT, + sym__whitespace1, + sym__newline, + anon_sym_DOT, + sym_identifier, + [21839] = 1, + ACTIONS(2035), 7, + anon_sym_RBRACE, + sym__id, + anon_sym_PERCENT, + sym__whitespace1, + sym__newline, + anon_sym_DOT, + sym_identifier, + [21849] = 1, + ACTIONS(2037), 7, + anon_sym_RBRACE, + sym__id, + anon_sym_PERCENT, + sym__whitespace1, + sym__newline, + anon_sym_DOT, + sym_identifier, + [21859] = 1, + ACTIONS(2039), 7, + anon_sym_RBRACE, + sym__id, + anon_sym_PERCENT, + sym__whitespace1, + sym__newline, + anon_sym_DOT, + sym_identifier, + [21869] = 1, + ACTIONS(2041), 7, + anon_sym_RBRACE, + sym__id, + anon_sym_PERCENT, + sym__whitespace1, + sym__newline, + anon_sym_DOT, + sym_identifier, + [21879] = 1, + ACTIONS(2043), 7, + anon_sym_RBRACE, + sym__id, + anon_sym_PERCENT, + sym__whitespace1, + sym__newline, + anon_sym_DOT, + sym_identifier, + [21889] = 1, + ACTIONS(2045), 7, + anon_sym_RBRACE, + sym__id, + anon_sym_PERCENT, + sym__whitespace1, + sym__newline, + anon_sym_DOT, + sym_identifier, + [21899] = 1, + ACTIONS(2047), 7, + anon_sym_RBRACE, + sym__id, + anon_sym_PERCENT, + sym__whitespace1, + sym__newline, + anon_sym_DOT, + sym_identifier, + [21909] = 1, + ACTIONS(2049), 7, + anon_sym_RBRACE, + sym__id, + anon_sym_PERCENT, + sym__whitespace1, + sym__newline, + anon_sym_DOT, + sym_identifier, + [21919] = 4, + ACTIONS(2051), 1, + anon_sym_LBRACE, + ACTIONS(2055), 1, + anon_sym_LBRACK, + STATE(427), 1, + sym_inline_attribute, + ACTIONS(2053), 2, + anon_sym_LBRACK_RBRACK, + anon_sym_LPAREN, + [21933] = 5, + ACTIONS(2057), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(2059), 1, + anon_sym_LBRACK, + ACTIONS(2061), 1, + anon_sym_LPAREN, + STATE(223), 1, + sym__link_label, + STATE(547), 1, + sym_inline_link_destination, + [21949] = 5, + ACTIONS(2063), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(2065), 1, + anon_sym_LBRACK, + ACTIONS(2067), 1, + anon_sym_LPAREN, + STATE(283), 1, + sym_inline_link_destination, + STATE(284), 1, + sym__link_label, + [21965] = 5, + ACTIONS(2065), 1, + anon_sym_LBRACK, + ACTIONS(2067), 1, + anon_sym_LPAREN, + ACTIONS(2069), 1, + anon_sym_LBRACK_RBRACK, + STATE(280), 1, + sym_inline_link_destination, + STATE(281), 1, + sym__link_label, + [21981] = 4, + ACTIONS(2055), 1, + anon_sym_LBRACK, + ACTIONS(2071), 1, + anon_sym_LBRACE, + STATE(448), 1, + sym_inline_attribute, + ACTIONS(2053), 2, + anon_sym_LBRACK_RBRACK, + anon_sym_LPAREN, + [21995] = 5, + ACTIONS(2073), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(2075), 1, + anon_sym_LBRACK, + ACTIONS(2077), 1, + anon_sym_LPAREN, + STATE(514), 1, + sym__link_label, + STATE(515), 1, + sym_inline_link_destination, + [22011] = 5, + ACTIONS(2075), 1, + anon_sym_LBRACK, + ACTIONS(2077), 1, + anon_sym_LPAREN, + ACTIONS(2079), 1, + anon_sym_LBRACK_RBRACK, + STATE(511), 1, + sym__link_label, + STATE(512), 1, + sym_inline_link_destination, + [22027] = 4, + ACTIONS(2055), 1, + anon_sym_LBRACK, + ACTIONS(2081), 1, + anon_sym_LBRACE, + STATE(480), 1, + sym_inline_attribute, + ACTIONS(2053), 2, + anon_sym_LBRACK_RBRACK, + anon_sym_LPAREN, + [22041] = 5, + ACTIONS(2083), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(2085), 1, + anon_sym_LBRACK, + ACTIONS(2087), 1, + anon_sym_LPAREN, + STATE(553), 1, + sym_inline_link_destination, + STATE(554), 1, + sym__link_label, + [22057] = 3, + ACTIONS(2092), 1, + anon_sym_PERCENT, + STATE(654), 1, + aux_sym__comment_with_newline_repeat1, + ACTIONS(2089), 3, + sym_backslash_escape, + aux_sym__comment_with_newline_token1, + sym__newline, + [22069] = 5, + ACTIONS(2094), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(2096), 1, + anon_sym_LBRACK, + ACTIONS(2098), 1, + anon_sym_LPAREN, + STATE(461), 1, + sym__link_label, + STATE(462), 1, + sym_inline_link_destination, + [22085] = 5, + ACTIONS(2096), 1, + anon_sym_LBRACK, + ACTIONS(2098), 1, + anon_sym_LPAREN, + ACTIONS(2100), 1, + anon_sym_LBRACK_RBRACK, + STATE(458), 1, + sym__link_label, + STATE(459), 1, + sym_inline_link_destination, + [22101] = 5, + ACTIONS(2102), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(2104), 1, + anon_sym_LBRACK, + ACTIONS(2106), 1, + anon_sym_LPAREN, + STATE(372), 1, + sym_inline_link_destination, + STATE(381), 1, + sym__link_label, + [22117] = 4, + ACTIONS(2055), 1, + anon_sym_LBRACK, + ACTIONS(2108), 1, + anon_sym_LBRACE, + STATE(334), 1, + sym_inline_attribute, + ACTIONS(2053), 2, + anon_sym_LBRACK_RBRACK, + anon_sym_LPAREN, + [22131] = 4, + ACTIONS(2055), 1, + anon_sym_LBRACK, + ACTIONS(2110), 1, + anon_sym_LBRACE, + STATE(232), 1, + sym_inline_attribute, + ACTIONS(2053), 2, + anon_sym_LBRACK_RBRACK, + anon_sym_LPAREN, + [22145] = 5, + ACTIONS(2059), 1, + anon_sym_LBRACK, + ACTIONS(2061), 1, + anon_sym_LPAREN, + ACTIONS(2112), 1, + anon_sym_LBRACK_RBRACK, + STATE(561), 1, + sym_inline_link_destination, + STATE(564), 1, + sym__link_label, + [22161] = 5, + ACTIONS(2085), 1, + anon_sym_LBRACK, + ACTIONS(2087), 1, + anon_sym_LPAREN, + ACTIONS(2114), 1, + anon_sym_LBRACK_RBRACK, + STATE(550), 1, + sym_inline_link_destination, + STATE(551), 1, + sym__link_label, + [22177] = 4, + ACTIONS(2055), 1, + anon_sym_LBRACK, + ACTIONS(2116), 1, + anon_sym_LBRACE, + STATE(533), 1, + sym_inline_attribute, + ACTIONS(2053), 2, + anon_sym_LBRACK_RBRACK, + anon_sym_LPAREN, + [22191] = 5, + ACTIONS(2118), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(2120), 1, + anon_sym_LBRACK, + ACTIONS(2122), 1, + anon_sym_LPAREN, + STATE(408), 1, + sym__link_label, + STATE(409), 1, + sym_inline_link_destination, + [22207] = 5, + ACTIONS(2120), 1, + anon_sym_LBRACK, + ACTIONS(2122), 1, + anon_sym_LPAREN, + ACTIONS(2124), 1, + anon_sym_LBRACK_RBRACK, + STATE(405), 1, + sym__link_label, + STATE(406), 1, + sym_inline_link_destination, + [22223] = 4, + ACTIONS(2055), 1, + anon_sym_LBRACK, + ACTIONS(2126), 1, + anon_sym_LBRACE, + STATE(374), 1, + sym_inline_attribute, + ACTIONS(2053), 2, + anon_sym_LBRACK_RBRACK, + anon_sym_LPAREN, + [22237] = 5, + ACTIONS(2128), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(2130), 1, + anon_sym_LBRACK, + ACTIONS(2132), 1, + anon_sym_LPAREN, + STATE(248), 1, + sym__link_label, + STATE(249), 1, + sym_inline_link_destination, + [22253] = 5, + ACTIONS(2130), 1, + anon_sym_LBRACK, + ACTIONS(2132), 1, + anon_sym_LPAREN, + ACTIONS(2134), 1, + anon_sym_LBRACK_RBRACK, + STATE(251), 1, + sym__link_label, + STATE(252), 1, + sym_inline_link_destination, + [22269] = 3, + ACTIONS(2138), 1, + anon_sym_PERCENT, + STATE(654), 1, + aux_sym__comment_with_newline_repeat1, + ACTIONS(2136), 3, + sym_backslash_escape, + aux_sym__comment_with_newline_token1, + sym__newline, + [22281] = 5, + ACTIONS(2104), 1, + anon_sym_LBRACK, + ACTIONS(2106), 1, + anon_sym_LPAREN, + ACTIONS(2140), 1, + anon_sym_LBRACK_RBRACK, + STATE(385), 1, + sym_inline_link_destination, + STATE(386), 1, + sym__link_label, + [22297] = 4, + ACTIONS(2055), 1, + anon_sym_LBRACK, + ACTIONS(2142), 1, + anon_sym_LBRACE, + STATE(489), 1, + sym_inline_attribute, + ACTIONS(2053), 2, + anon_sym_LBRACK_RBRACK, + anon_sym_LPAREN, + [22311] = 5, + ACTIONS(2144), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(2146), 1, + anon_sym_LBRACK, + ACTIONS(2148), 1, + anon_sym_LPAREN, + STATE(355), 1, + sym__link_label, + STATE(356), 1, + sym_inline_link_destination, + [22327] = 5, + ACTIONS(2146), 1, + anon_sym_LBRACK, + ACTIONS(2148), 1, + anon_sym_LPAREN, + ACTIONS(2150), 1, + anon_sym_LBRACK_RBRACK, + STATE(352), 1, + sym__link_label, + STATE(353), 1, + sym_inline_link_destination, + [22343] = 4, + ACTIONS(2055), 1, + anon_sym_LBRACK, + ACTIONS(2152), 1, + anon_sym_LBRACE, + STATE(321), 1, + sym_inline_attribute, + ACTIONS(2053), 2, + anon_sym_LBRACK_RBRACK, + anon_sym_LPAREN, + [22357] = 3, + ACTIONS(2154), 1, + anon_sym_PERCENT, + STATE(668), 1, + aux_sym__comment_with_newline_repeat1, + ACTIONS(2136), 3, + sym_backslash_escape, + aux_sym__comment_with_newline_token1, + sym__newline, + [22369] = 4, + ACTIONS(2055), 1, + anon_sym_LBRACK, + ACTIONS(2156), 1, + anon_sym_LBRACE, + STATE(268), 1, + sym_inline_attribute, + ACTIONS(2053), 2, + anon_sym_LBRACK_RBRACK, + anon_sym_LPAREN, + [22383] = 5, + ACTIONS(2158), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(2160), 1, + anon_sym_LBRACK, + ACTIONS(2162), 1, + anon_sym_LPAREN, + STATE(299), 1, + sym__link_label, + STATE(300), 1, + sym_inline_link_destination, + [22399] = 5, + ACTIONS(2160), 1, + anon_sym_LBRACK, + ACTIONS(2162), 1, + anon_sym_LPAREN, + ACTIONS(2164), 1, + anon_sym_LBRACK_RBRACK, + STATE(302), 1, + sym__link_label, + STATE(303), 1, + sym_inline_link_destination, + [22415] = 1, + ACTIONS(2166), 4, + sym_backslash_escape, + anon_sym_PERCENT, + aux_sym__comment_with_newline_token1, + sym__newline, + [22422] = 3, + ACTIONS(2168), 1, + anon_sym_STAR, + ACTIONS(2170), 1, + aux_sym_strong_end_token1, + STATE(423), 1, + sym_strong_end, + [22432] = 3, + ACTIONS(2172), 1, + anon_sym__, + ACTIONS(2174), 1, + aux_sym_emphasis_end_token1, + STATE(338), 1, + sym_emphasis_end, + [22442] = 3, + ACTIONS(2176), 1, + anon_sym__, + ACTIONS(2178), 1, + aux_sym_emphasis_end_token1, + STATE(262), 1, + sym_emphasis_end, + [22452] = 3, + ACTIONS(2180), 1, + anon_sym_STAR, + ACTIONS(2182), 1, + aux_sym_strong_end_token1, + STATE(264), 1, + sym_strong_end, + [22462] = 3, + ACTIONS(2184), 1, + anon_sym__, + ACTIONS(2186), 1, + aux_sym_emphasis_end_token1, + STATE(228), 1, + sym_emphasis_end, + [22472] = 3, + ACTIONS(2188), 1, + anon_sym_STAR, + ACTIONS(2190), 1, + aux_sym_strong_end_token1, + STATE(230), 1, + sym_strong_end, + [22482] = 3, + ACTIONS(2192), 1, + anon_sym_STAR, + ACTIONS(2194), 1, + aux_sym_strong_end_token1, + STATE(476), 1, + sym_strong_end, + [22492] = 3, + ACTIONS(2196), 1, + anon_sym__, + ACTIONS(2198), 1, + aux_sym_emphasis_end_token1, + STATE(474), 1, + sym_emphasis_end, + [22502] = 3, + ACTIONS(2200), 1, + anon_sym_STAR, + ACTIONS(2202), 1, + aux_sym_strong_end_token1, + STATE(491), 1, + sym_strong_end, + [22512] = 3, + ACTIONS(2204), 1, + anon_sym__, + ACTIONS(2206), 1, + aux_sym_emphasis_end_token1, + STATE(493), 1, + sym_emphasis_end, + [22522] = 3, + ACTIONS(2208), 1, + anon_sym__, + ACTIONS(2210), 1, + aux_sym_emphasis_end_token1, + STATE(421), 1, + sym_emphasis_end, + [22532] = 3, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2214), 1, + aux_sym_strong_end_token1, + STATE(529), 1, + sym_strong_end, + [22542] = 3, + ACTIONS(2216), 1, + anon_sym__, + ACTIONS(2218), 1, + aux_sym_emphasis_end_token1, + STATE(527), 1, + sym_emphasis_end, + [22552] = 3, + ACTIONS(2220), 1, + anon_sym__, + ACTIONS(2222), 1, + aux_sym_emphasis_end_token1, + STATE(508), 1, + sym_emphasis_end, + [22562] = 3, + ACTIONS(2224), 1, + anon_sym_STAR, + ACTIONS(2226), 1, + aux_sym_strong_end_token1, + STATE(497), 1, + sym_strong_end, + [22572] = 3, + ACTIONS(2228), 1, + anon_sym_STAR, + ACTIONS(2230), 1, + aux_sym_strong_end_token1, + STATE(336), 1, + sym_strong_end, + [22582] = 3, + ACTIONS(2232), 1, + anon_sym_STAR, + ACTIONS(2234), 1, + aux_sym_strong_end_token1, + STATE(370), 1, + sym_strong_end, + [22592] = 2, + ACTIONS(2238), 1, + anon_sym_LBRACK, + ACTIONS(2236), 2, + anon_sym_LBRACK_RBRACK, + anon_sym_LPAREN, + [22600] = 3, + ACTIONS(2240), 1, + anon_sym__, + ACTIONS(2242), 1, + aux_sym_emphasis_end_token1, + STATE(315), 1, + sym_emphasis_end, + [22610] = 3, + ACTIONS(2244), 1, + anon_sym_STAR, + ACTIONS(2246), 1, + aux_sym_strong_end_token1, + STATE(317), 1, + sym_strong_end, + [22620] = 3, + ACTIONS(2248), 1, + anon_sym__, + ACTIONS(2250), 1, + aux_sym_emphasis_end_token1, + STATE(368), 1, + sym_emphasis_end, + [22630] = 3, + ACTIONS(2252), 1, + anon_sym_DQUOTE, + ACTIONS(2254), 1, + aux_sym_value_token2, + STATE(642), 1, + sym_value, + [22640] = 2, + ACTIONS(2258), 1, + anon_sym_LBRACK, + ACTIONS(2256), 2, + anon_sym_LBRACK_RBRACK, + anon_sym_LPAREN, + [22648] = 2, + ACTIONS(2260), 1, + anon_sym_CARET, + ACTIONS(2262), 1, + anon_sym_CARET_RBRACE, + [22655] = 2, + ACTIONS(2264), 1, + anon_sym_CARET, + ACTIONS(2266), 1, + anon_sym_CARET_RBRACE, + [22662] = 2, + ACTIONS(2268), 1, + anon_sym_TILDE, + ACTIONS(2270), 1, + anon_sym_TILDE_RBRACE, + [22669] = 2, + ACTIONS(2272), 1, + anon_sym_BQUOTE, + STATE(322), 1, + sym__verbatim_end, + [22676] = 2, + ACTIONS(1935), 1, + anon_sym_PERCENT, + STATE(754), 1, + sym__comment_with_newline, + [22683] = 2, + ACTIONS(1935), 1, + anon_sym_PERCENT, + STATE(868), 1, + sym__comment_with_newline, + [22690] = 2, + ACTIONS(1935), 1, + anon_sym_PERCENT, + STATE(799), 1, + sym__comment_with_newline, + [22697] = 2, + ACTIONS(2274), 1, + anon_sym_CARET, + ACTIONS(2276), 1, + anon_sym_CARET_RBRACE, + [22704] = 2, + ACTIONS(2278), 1, + anon_sym_TILDE, + ACTIONS(2280), 1, + anon_sym_TILDE_RBRACE, + [22711] = 2, + ACTIONS(2282), 1, + anon_sym_CARET, + ACTIONS(2284), 1, + anon_sym_CARET_RBRACE, + [22718] = 2, + ACTIONS(1935), 1, + anon_sym_PERCENT, + STATE(761), 1, + sym__comment_with_newline, + [22725] = 2, + ACTIONS(1935), 1, + anon_sym_PERCENT, + STATE(806), 1, + sym__comment_with_newline, + [22732] = 2, + ACTIONS(2286), 1, + anon_sym_CARET, + ACTIONS(2288), 1, + anon_sym_CARET_RBRACE, + [22739] = 2, + ACTIONS(2290), 1, + anon_sym_TILDE, + ACTIONS(2292), 1, + anon_sym_TILDE_RBRACE, + [22746] = 2, + ACTIONS(2294), 1, + anon_sym_BQUOTE, + STATE(534), 1, + sym__verbatim_end, + [22753] = 2, + ACTIONS(2296), 1, + anon_sym_TILDE, + ACTIONS(2298), 1, + anon_sym_TILDE_RBRACE, + [22760] = 2, + ACTIONS(2300), 1, + anon_sym_BQUOTE, + STATE(144), 1, + sym__verbatim_end, + [22767] = 2, + ACTIONS(2302), 1, + anon_sym_BQUOTE, + STATE(166), 1, + sym__verbatim_end, + [22774] = 2, + ACTIONS(2304), 1, + anon_sym_BQUOTE, + STATE(143), 1, + sym__verbatim_end, + [22781] = 2, + ACTIONS(2306), 1, + anon_sym_TILDE, + ACTIONS(2308), 1, + anon_sym_TILDE_RBRACE, + [22788] = 2, + ACTIONS(2310), 1, + anon_sym_BQUOTE, + STATE(160), 1, + sym__verbatim_end, + [22795] = 2, + ACTIONS(2312), 1, + anon_sym_BQUOTE, + STATE(375), 1, + sym__verbatim_end, + [22802] = 2, + ACTIONS(2314), 1, + anon_sym_BQUOTE, + STATE(333), 1, + sym__verbatim_end, + [22809] = 2, + ACTIONS(2316), 1, + anon_sym_BQUOTE, + STATE(487), 1, + sym__verbatim_end, + [22816] = 2, + ACTIONS(2318), 1, + anon_sym_BQUOTE, + STATE(135), 1, + sym__verbatim_end, + [22823] = 2, + ACTIONS(2320), 1, + anon_sym_BQUOTE, + STATE(447), 1, + sym__verbatim_end, + [22830] = 2, + ACTIONS(1935), 1, + anon_sym_PERCENT, + STATE(813), 1, + sym__comment_with_newline, + [22837] = 2, + ACTIONS(2322), 1, + anon_sym_TILDE, + ACTIONS(2324), 1, + anon_sym_TILDE_RBRACE, + [22844] = 2, + ACTIONS(2326), 1, + anon_sym_CARET, + ACTIONS(2328), 1, + anon_sym_CARET_RBRACE, + [22851] = 2, + ACTIONS(1935), 1, + anon_sym_PERCENT, + STATE(762), 1, + sym__comment_with_newline, + [22858] = 2, + ACTIONS(2330), 1, + sym__id, + STATE(639), 1, + sym_class_name, + [22865] = 2, + ACTIONS(2332), 1, + anon_sym_BQUOTE, + STATE(162), 1, + sym__verbatim_end, + [22872] = 2, + ACTIONS(2334), 1, + anon_sym_CARET, + ACTIONS(2336), 1, + anon_sym_CARET_RBRACE, + [22879] = 2, + ACTIONS(2338), 1, + anon_sym_TILDE, + ACTIONS(2340), 1, + anon_sym_TILDE_RBRACE, + [22886] = 2, + ACTIONS(2342), 1, + anon_sym_CARET, + ACTIONS(2344), 1, + anon_sym_CARET_RBRACE, + [22893] = 2, + ACTIONS(2346), 1, + anon_sym_TILDE, + ACTIONS(2348), 1, + anon_sym_TILDE_RBRACE, + [22900] = 2, + ACTIONS(2350), 1, + anon_sym_CARET, + ACTIONS(2352), 1, + anon_sym_CARET_RBRACE, + [22907] = 2, + ACTIONS(1935), 1, + anon_sym_PERCENT, + STATE(773), 1, + sym__comment_with_newline, + [22914] = 2, + ACTIONS(1935), 1, + anon_sym_PERCENT, + STATE(787), 1, + sym__comment_with_newline, + [22921] = 2, + ACTIONS(2354), 1, + anon_sym_BQUOTE, + STATE(122), 1, + sym__verbatim_end, + [22928] = 2, + ACTIONS(1935), 1, + anon_sym_PERCENT, + STATE(808), 1, + sym__comment_with_newline, + [22935] = 2, + ACTIONS(2356), 1, + anon_sym_BQUOTE, + STATE(233), 1, + sym__verbatim_end, + [22942] = 2, + ACTIONS(2358), 1, + anon_sym_BQUOTE, + STATE(428), 1, + sym__verbatim_end, + [22949] = 2, + ACTIONS(2360), 1, + anon_sym_BQUOTE, + STATE(158), 1, + sym__verbatim_end, + [22956] = 2, + ACTIONS(2362), 1, + anon_sym_CARET, + ACTIONS(2364), 1, + anon_sym_CARET_RBRACE, + [22963] = 2, + ACTIONS(2366), 1, + anon_sym_TILDE, + ACTIONS(2368), 1, + anon_sym_TILDE_RBRACE, + [22970] = 2, + ACTIONS(2370), 1, + anon_sym_BQUOTE, + STATE(481), 1, + sym__verbatim_end, + [22977] = 2, + ACTIONS(2372), 1, + anon_sym_TILDE, + ACTIONS(2374), 1, + anon_sym_TILDE_RBRACE, + [22984] = 2, + ACTIONS(2376), 1, + anon_sym_BQUOTE, + STATE(132), 1, + sym__verbatim_end, + [22991] = 2, + ACTIONS(2378), 1, + anon_sym_BQUOTE, + STATE(156), 1, + sym__verbatim_end, + [22998] = 2, + ACTIONS(2380), 1, + anon_sym_BQUOTE, + STATE(269), 1, + sym__verbatim_end, + [23005] = 1, + ACTIONS(2382), 1, + anon_sym_EQ_RBRACE, + [23009] = 1, + ACTIONS(2384), 1, + anon_sym_RBRACE, + [23013] = 1, + ACTIONS(2386), 1, + anon_sym_GT, + [23017] = 1, + ACTIONS(2388), 1, + anon_sym_EQ_RBRACE, + [23021] = 1, + ACTIONS(2390), 1, + anon_sym_PLUS_RBRACE, + [23025] = 1, + ACTIONS(2392), 1, + anon_sym_DASH_RBRACE, + [23029] = 1, + ACTIONS(2394), 1, + anon_sym_RBRACK, + [23033] = 1, + ACTIONS(2396), 1, + anon_sym_RBRACK2, + [23037] = 1, + ACTIONS(2398), 1, + anon_sym_RBRACE, + [23041] = 1, + ACTIONS(2400), 1, + anon_sym_RBRACE, + [23045] = 1, + ACTIONS(2402), 1, + anon_sym_RBRACK2, + [23049] = 1, + ACTIONS(2404), 1, + anon_sym_RPAREN, + [23053] = 1, + ACTIONS(2406), 1, + anon_sym_RBRACE, + [23057] = 1, + ACTIONS(2408), 1, + sym__newline, + [23061] = 1, + ACTIONS(2410), 1, + anon_sym_GT, + [23065] = 1, + ACTIONS(2412), 1, + anon_sym_EQ_RBRACE, + [23069] = 1, + ACTIONS(2414), 1, + anon_sym_PLUS_RBRACE, + [23073] = 1, + ACTIONS(2416), 1, + anon_sym_DASH_RBRACE, + [23077] = 1, + ACTIONS(2418), 1, + anon_sym_RBRACK, + [23081] = 1, + ACTIONS(2420), 1, + anon_sym_RBRACK, + [23085] = 1, + ACTIONS(2422), 1, + anon_sym_RBRACE, + [23089] = 1, + ACTIONS(2424), 1, + anon_sym_RBRACK2, + [23093] = 1, + ACTIONS(2426), 1, + anon_sym_RPAREN, + [23097] = 1, + ACTIONS(2428), 1, + anon_sym_RBRACE, + [23101] = 1, + ACTIONS(2430), 1, + sym__newline, + [23105] = 1, + ACTIONS(2432), 1, + anon_sym_DASH_RBRACE, + [23109] = 1, + ACTIONS(2434), 1, + anon_sym_PLUS_RBRACE, + [23113] = 1, + ACTIONS(2436), 1, + anon_sym_GT, + [23117] = 1, + ACTIONS(2438), 1, + anon_sym_EQ_RBRACE, + [23121] = 1, + ACTIONS(2440), 1, + anon_sym_PLUS_RBRACE, + [23125] = 1, + ACTIONS(2442), 1, + anon_sym_DASH_RBRACE, + [23129] = 1, + ACTIONS(2444), 1, + anon_sym_RBRACK, + [23133] = 1, + ACTIONS(2446), 1, + aux_sym_inline_link_destination_token1, + [23137] = 1, + ACTIONS(2448), 1, + anon_sym_GT, + [23141] = 1, + ACTIONS(2450), 1, + anon_sym_RBRACE, + [23145] = 1, + ACTIONS(2452), 1, + anon_sym_RBRACK2, + [23149] = 1, + ACTIONS(2454), 1, + anon_sym_RPAREN, + [23153] = 1, + ACTIONS(2456), 1, + anon_sym_RBRACE, + [23157] = 1, + ACTIONS(2458), 1, + sym__newline, + [23161] = 1, + ACTIONS(2460), 1, + sym__newline, + [23165] = 1, + ACTIONS(2462), 1, + anon_sym_RBRACE, + [23169] = 1, + ACTIONS(2464), 1, + anon_sym_RPAREN, + [23173] = 1, + ACTIONS(2466), 1, + anon_sym_GT, + [23177] = 1, + ACTIONS(2468), 1, + anon_sym_RBRACK, + [23181] = 1, + ACTIONS(2470), 1, + anon_sym_PLUS_RBRACE, + [23185] = 1, + ACTIONS(2472), 1, + anon_sym_DASH_RBRACE, + [23189] = 1, + ACTIONS(2474), 1, + anon_sym_RBRACE, + [23193] = 1, + ACTIONS(2476), 1, + anon_sym_RBRACE, + [23197] = 1, + ACTIONS(2478), 1, + anon_sym_RBRACK, + [23201] = 1, + ACTIONS(2480), 1, + sym__newline, + [23205] = 1, + ACTIONS(2482), 1, + sym__newline, + [23209] = 1, + ACTIONS(2484), 1, + anon_sym_RBRACE, + [23213] = 1, + ACTIONS(2486), 1, + anon_sym_RBRACK2, + [23217] = 1, + ACTIONS(2488), 1, + anon_sym_RBRACE, + [23221] = 1, + ACTIONS(2490), 1, + anon_sym_RPAREN, + [23225] = 1, + ACTIONS(2492), 1, + anon_sym_RBRACE, + [23229] = 1, + ACTIONS(2494), 1, + anon_sym_RBRACK2, + [23233] = 1, + ACTIONS(2496), 1, + anon_sym_RPAREN, + [23237] = 1, + ACTIONS(2498), 1, + anon_sym_RBRACE, + [23241] = 1, + ACTIONS(2500), 1, + anon_sym_RBRACK2, + [23245] = 1, + ACTIONS(2502), 1, + anon_sym_RBRACE, + [23249] = 1, + ACTIONS(2504), 1, + anon_sym_GT, + [23253] = 1, + ACTIONS(2506), 1, + anon_sym_EQ_RBRACE, + [23257] = 1, + ACTIONS(2508), 1, + anon_sym_RBRACK, + [23261] = 1, + ACTIONS(2510), 1, + anon_sym_RBRACK, + [23265] = 1, + ACTIONS(2512), 1, + anon_sym_DASH_RBRACE, + [23269] = 1, + ACTIONS(2514), 1, + anon_sym_DASH_RBRACE, + [23273] = 1, + ACTIONS(2516), 1, + anon_sym_PLUS_RBRACE, + [23277] = 1, + ACTIONS(2518), 1, + anon_sym_EQ_RBRACE, + [23281] = 1, + ACTIONS(2520), 1, + anon_sym_GT, + [23285] = 1, + ACTIONS(2522), 1, + sym__newline, + [23289] = 1, + ACTIONS(2524), 1, + sym__verbatim_content, + [23293] = 1, + ACTIONS(2526), 1, + anon_sym_DQUOTE, + [23297] = 1, + ACTIONS(2528), 1, + anon_sym_RBRACE, + [23301] = 1, + ACTIONS(2530), 1, + aux_sym_value_token1, + [23305] = 1, + ACTIONS(2532), 1, + sym_language, + [23309] = 1, + ACTIONS(2534), 1, + anon_sym_PLUS_RBRACE, + [23313] = 1, + ACTIONS(2536), 1, + anon_sym_RPAREN, + [23317] = 1, + ACTIONS(2538), 1, + anon_sym_RBRACK2, + [23321] = 1, + ACTIONS(2540), 1, + anon_sym_RPAREN, + [23325] = 1, + ACTIONS(2542), 1, + anon_sym_RBRACK, + [23329] = 1, + ACTIONS(2544), 1, + sym__verbatim_content, + [23333] = 1, + ACTIONS(2546), 1, + anon_sym_RBRACK, + [23337] = 1, + ACTIONS(2548), 1, + sym__verbatim_content, + [23341] = 1, + ACTIONS(2550), 1, + anon_sym_EQ_RBRACE, + [23345] = 1, + ACTIONS(2552), 1, + anon_sym_GT, + [23349] = 1, + ACTIONS(2554), 1, + aux_sym_inline_link_destination_token1, + [23353] = 1, + ACTIONS(2556), 1, + sym_language, + [23357] = 1, + ACTIONS(2558), 1, + anon_sym_RBRACK, + [23361] = 1, + ACTIONS(2560), 1, + anon_sym_RBRACK, + [23365] = 1, + ACTIONS(2562), 1, + sym__verbatim_content, + [23369] = 1, + ACTIONS(2564), 1, + anon_sym_RBRACK, + [23373] = 1, + ACTIONS(2566), 1, + sym__verbatim_content, + [23377] = 1, + ACTIONS(2568), 1, + anon_sym_PLUS_RBRACE, + [23381] = 1, + ACTIONS(2570), 1, + anon_sym_DASH_RBRACE, + [23385] = 1, + ACTIONS(2572), 1, + aux_sym_inline_link_destination_token1, + [23389] = 1, + ACTIONS(2574), 1, + sym_language, + [23393] = 1, + ACTIONS(2576), 1, + sym__newline, + [23397] = 1, + ACTIONS(2578), 1, + anon_sym_DASH_RBRACE, + [23401] = 1, + ACTIONS(2580), 1, + sym__verbatim_content, + [23405] = 1, + ACTIONS(2582), 1, + anon_sym_RBRACK, + [23409] = 1, + ACTIONS(2584), 1, + sym__verbatim_content, + [23413] = 1, + ACTIONS(2586), 1, + anon_sym_RBRACE, + [23417] = 1, + ACTIONS(2588), 1, + anon_sym_PLUS_RBRACE, + [23421] = 1, + ACTIONS(2590), 1, + aux_sym_inline_link_destination_token1, + [23425] = 1, + ACTIONS(2592), 1, + sym_language, + [23429] = 1, + ACTIONS(2594), 1, + anon_sym_EQ_RBRACE, + [23433] = 1, + ACTIONS(2596), 1, + anon_sym_GT, + [23437] = 1, + ACTIONS(2598), 1, + sym__verbatim_content, + [23441] = 1, + ACTIONS(2600), 1, + anon_sym_RBRACK, + [23445] = 1, + ACTIONS(2602), 1, + sym__verbatim_content, + [23449] = 1, + ACTIONS(2604), 1, + anon_sym_RPAREN, + [23453] = 1, + ACTIONS(2606), 1, + anon_sym_RBRACK2, + [23457] = 1, + ACTIONS(2608), 1, + aux_sym_inline_link_destination_token1, + [23461] = 1, + ACTIONS(2610), 1, + sym_language, + [23465] = 1, + ACTIONS(2612), 1, + anon_sym_RBRACE, + [23469] = 1, + ACTIONS(2614), 1, + anon_sym_EQ_RBRACE, + [23473] = 1, + ACTIONS(2616), 1, + sym__verbatim_content, + [23477] = 1, + ACTIONS(2618), 1, + anon_sym_RBRACK, + [23481] = 1, + ACTIONS(2620), 1, + sym__verbatim_content, + [23485] = 1, + ACTIONS(2622), 1, + anon_sym_RBRACK, + [23489] = 1, + ACTIONS(2624), 1, + anon_sym_RBRACK, + [23493] = 1, + ACTIONS(2626), 1, + aux_sym_inline_link_destination_token1, + [23497] = 1, + ACTIONS(2628), 1, + sym_language, + [23501] = 1, + ACTIONS(2630), 1, + anon_sym_EQ, + [23505] = 1, + ACTIONS(2632), 1, + sym__verbatim_content, + [23509] = 1, + ACTIONS(2634), 1, + sym__verbatim_content, + [23513] = 1, + ACTIONS(2636), 1, + anon_sym_RBRACK, + [23517] = 1, + ACTIONS(2638), 1, + sym__verbatim_content, + [23521] = 1, + ACTIONS(2640), 1, + anon_sym_DASH_RBRACE, + [23525] = 1, + ACTIONS(2642), 1, + anon_sym_PLUS_RBRACE, + [23529] = 1, + ACTIONS(2644), 1, + aux_sym_inline_link_destination_token1, + [23533] = 1, + ACTIONS(2646), 1, + sym_language, + [23537] = 1, + ACTIONS(2648), 1, + sym__whitespace, + [23541] = 1, + ACTIONS(2650), 1, + ts_builtin_sym_end, + [23545] = 1, + ACTIONS(2652), 1, + sym__verbatim_content, + [23549] = 1, + ACTIONS(2654), 1, + anon_sym_RBRACK, + [23553] = 1, + ACTIONS(2656), 1, + sym__verbatim_content, + [23557] = 1, + ACTIONS(2658), 1, + anon_sym_EQ_RBRACE, + [23561] = 1, + ACTIONS(2660), 1, + ts_builtin_sym_end, + [23565] = 1, + ACTIONS(2662), 1, + aux_sym_inline_link_destination_token1, + [23569] = 1, + ACTIONS(2664), 1, + sym_language, + [23573] = 1, + ACTIONS(2666), 1, + anon_sym_EQ, + [23577] = 1, + ACTIONS(2668), 1, + sym__verbatim_content, + [23581] = 1, + ACTIONS(2670), 1, + sym__verbatim_content, + [23585] = 1, + ACTIONS(2672), 1, + anon_sym_RBRACK, + [23589] = 1, + ACTIONS(2674), 1, + sym__verbatim_content, + [23593] = 1, + ACTIONS(2676), 1, + anon_sym_GT, + [23597] = 1, + ACTIONS(2678), 1, + sym__newline, + [23601] = 1, + ACTIONS(2680), 1, + aux_sym_inline_link_destination_token1, + [23605] = 1, + ACTIONS(2682), 1, + sym_language, + [23609] = 1, + ACTIONS(2684), 1, + anon_sym_RBRACE, + [23613] = 1, + ACTIONS(2686), 1, + sym__newline, + [23617] = 1, + ACTIONS(2688), 1, + sym__verbatim_content, + [23621] = 1, + ACTIONS(2690), 1, + anon_sym_RBRACK, + [23625] = 1, + ACTIONS(2692), 1, + sym__verbatim_content, + [23629] = 1, + ACTIONS(2694), 1, + anon_sym_RPAREN, + [23633] = 1, + ACTIONS(2696), 1, + anon_sym_RBRACK2, + [23637] = 1, + ACTIONS(2698), 1, + aux_sym_inline_link_destination_token1, + [23641] = 1, + ACTIONS(2700), 1, + sym_language, +}; + +static const uint32_t ts_small_parse_table_map[] = { + [SMALL_STATE(122)] = 0, + [SMALL_STATE(123)] = 48, + [SMALL_STATE(124)] = 98, + [SMALL_STATE(125)] = 150, + [SMALL_STATE(126)] = 202, + [SMALL_STATE(127)] = 252, + [SMALL_STATE(128)] = 300, + [SMALL_STATE(129)] = 348, + [SMALL_STATE(130)] = 396, + [SMALL_STATE(131)] = 446, + [SMALL_STATE(132)] = 494, + [SMALL_STATE(133)] = 542, + [SMALL_STATE(134)] = 594, + [SMALL_STATE(135)] = 644, + [SMALL_STATE(136)] = 692, + [SMALL_STATE(137)] = 744, + [SMALL_STATE(138)] = 796, + [SMALL_STATE(139)] = 848, + [SMALL_STATE(140)] = 898, + [SMALL_STATE(141)] = 950, + [SMALL_STATE(142)] = 1002, + [SMALL_STATE(143)] = 1054, + [SMALL_STATE(144)] = 1102, + [SMALL_STATE(145)] = 1150, + [SMALL_STATE(146)] = 1202, + [SMALL_STATE(147)] = 1254, + [SMALL_STATE(148)] = 1302, + [SMALL_STATE(149)] = 1350, + [SMALL_STATE(150)] = 1398, + [SMALL_STATE(151)] = 1448, + [SMALL_STATE(152)] = 1496, + [SMALL_STATE(153)] = 1548, + [SMALL_STATE(154)] = 1598, + [SMALL_STATE(155)] = 1646, + [SMALL_STATE(156)] = 1696, + [SMALL_STATE(157)] = 1744, + [SMALL_STATE(158)] = 1796, + [SMALL_STATE(159)] = 1844, + [SMALL_STATE(160)] = 1894, + [SMALL_STATE(161)] = 1942, + [SMALL_STATE(162)] = 1994, + [SMALL_STATE(163)] = 2042, + [SMALL_STATE(164)] = 2090, + [SMALL_STATE(165)] = 2142, + [SMALL_STATE(166)] = 2194, + [SMALL_STATE(167)] = 2242, + [SMALL_STATE(168)] = 2292, + [SMALL_STATE(169)] = 2344, + [SMALL_STATE(170)] = 2396, + [SMALL_STATE(171)] = 2448, + [SMALL_STATE(172)] = 2500, + [SMALL_STATE(173)] = 2547, + [SMALL_STATE(174)] = 2594, + [SMALL_STATE(175)] = 2639, + [SMALL_STATE(176)] = 2684, + [SMALL_STATE(177)] = 2731, + [SMALL_STATE(178)] = 2778, + [SMALL_STATE(179)] = 2825, + [SMALL_STATE(180)] = 2872, + [SMALL_STATE(181)] = 2915, + [SMALL_STATE(182)] = 2958, + [SMALL_STATE(183)] = 3005, + [SMALL_STATE(184)] = 3052, + [SMALL_STATE(185)] = 3097, + [SMALL_STATE(186)] = 3144, + [SMALL_STATE(187)] = 3187, + [SMALL_STATE(188)] = 3230, + [SMALL_STATE(189)] = 3277, + [SMALL_STATE(190)] = 3324, + [SMALL_STATE(191)] = 3371, + [SMALL_STATE(192)] = 3416, + [SMALL_STATE(193)] = 3463, + [SMALL_STATE(194)] = 3510, + [SMALL_STATE(195)] = 3557, + [SMALL_STATE(196)] = 3604, + [SMALL_STATE(197)] = 3649, + [SMALL_STATE(198)] = 3696, + [SMALL_STATE(199)] = 3743, + [SMALL_STATE(200)] = 3790, + [SMALL_STATE(201)] = 3835, + [SMALL_STATE(202)] = 3882, + [SMALL_STATE(203)] = 3929, + [SMALL_STATE(204)] = 3972, + [SMALL_STATE(205)] = 4019, + [SMALL_STATE(206)] = 4062, + [SMALL_STATE(207)] = 4109, + [SMALL_STATE(208)] = 4156, + [SMALL_STATE(209)] = 4201, + [SMALL_STATE(210)] = 4244, + [SMALL_STATE(211)] = 4289, + [SMALL_STATE(212)] = 4332, + [SMALL_STATE(213)] = 4375, + [SMALL_STATE(214)] = 4418, + [SMALL_STATE(215)] = 4465, + [SMALL_STATE(216)] = 4512, + [SMALL_STATE(217)] = 4559, + [SMALL_STATE(218)] = 4604, + [SMALL_STATE(219)] = 4649, + [SMALL_STATE(220)] = 4696, + [SMALL_STATE(221)] = 4743, + [SMALL_STATE(222)] = 4790, + [SMALL_STATE(223)] = 4832, + [SMALL_STATE(224)] = 4874, + [SMALL_STATE(225)] = 4916, + [SMALL_STATE(226)] = 4958, + [SMALL_STATE(227)] = 5000, + [SMALL_STATE(228)] = 5042, + [SMALL_STATE(229)] = 5084, + [SMALL_STATE(230)] = 5126, + [SMALL_STATE(231)] = 5168, + [SMALL_STATE(232)] = 5214, + [SMALL_STATE(233)] = 5256, + [SMALL_STATE(234)] = 5298, + [SMALL_STATE(235)] = 5340, + [SMALL_STATE(236)] = 5382, + [SMALL_STATE(237)] = 5424, + [SMALL_STATE(238)] = 5466, + [SMALL_STATE(239)] = 5508, + [SMALL_STATE(240)] = 5554, + [SMALL_STATE(241)] = 5600, + [SMALL_STATE(242)] = 5642, + [SMALL_STATE(243)] = 5684, + [SMALL_STATE(244)] = 5730, + [SMALL_STATE(245)] = 5772, + [SMALL_STATE(246)] = 5814, + [SMALL_STATE(247)] = 5856, + [SMALL_STATE(248)] = 5898, + [SMALL_STATE(249)] = 5940, + [SMALL_STATE(250)] = 5982, + [SMALL_STATE(251)] = 6024, + [SMALL_STATE(252)] = 6066, + [SMALL_STATE(253)] = 6108, + [SMALL_STATE(254)] = 6150, + [SMALL_STATE(255)] = 6192, + [SMALL_STATE(256)] = 6234, + [SMALL_STATE(257)] = 6276, + [SMALL_STATE(258)] = 6318, + [SMALL_STATE(259)] = 6360, + [SMALL_STATE(260)] = 6402, + [SMALL_STATE(261)] = 6444, + [SMALL_STATE(262)] = 6486, + [SMALL_STATE(263)] = 6528, + [SMALL_STATE(264)] = 6570, + [SMALL_STATE(265)] = 6612, + [SMALL_STATE(266)] = 6654, + [SMALL_STATE(267)] = 6696, + [SMALL_STATE(268)] = 6742, + [SMALL_STATE(269)] = 6784, + [SMALL_STATE(270)] = 6826, + [SMALL_STATE(271)] = 6868, + [SMALL_STATE(272)] = 6910, + [SMALL_STATE(273)] = 6952, + [SMALL_STATE(274)] = 6994, + [SMALL_STATE(275)] = 7036, + [SMALL_STATE(276)] = 7078, + [SMALL_STATE(277)] = 7124, + [SMALL_STATE(278)] = 7166, + [SMALL_STATE(279)] = 7212, + [SMALL_STATE(280)] = 7258, + [SMALL_STATE(281)] = 7300, + [SMALL_STATE(282)] = 7342, + [SMALL_STATE(283)] = 7384, + [SMALL_STATE(284)] = 7426, + [SMALL_STATE(285)] = 7468, + [SMALL_STATE(286)] = 7510, + [SMALL_STATE(287)] = 7552, + [SMALL_STATE(288)] = 7598, + [SMALL_STATE(289)] = 7640, + [SMALL_STATE(290)] = 7686, + [SMALL_STATE(291)] = 7728, + [SMALL_STATE(292)] = 7770, + [SMALL_STATE(293)] = 7816, + [SMALL_STATE(294)] = 7858, + [SMALL_STATE(295)] = 7900, + [SMALL_STATE(296)] = 7942, + [SMALL_STATE(297)] = 7984, + [SMALL_STATE(298)] = 8026, + [SMALL_STATE(299)] = 8068, + [SMALL_STATE(300)] = 8110, + [SMALL_STATE(301)] = 8152, + [SMALL_STATE(302)] = 8194, + [SMALL_STATE(303)] = 8236, + [SMALL_STATE(304)] = 8278, + [SMALL_STATE(305)] = 8324, + [SMALL_STATE(306)] = 8370, + [SMALL_STATE(307)] = 8416, + [SMALL_STATE(308)] = 8458, + [SMALL_STATE(309)] = 8500, + [SMALL_STATE(310)] = 8542, + [SMALL_STATE(311)] = 8584, + [SMALL_STATE(312)] = 8626, + [SMALL_STATE(313)] = 8668, + [SMALL_STATE(314)] = 8710, + [SMALL_STATE(315)] = 8752, + [SMALL_STATE(316)] = 8794, + [SMALL_STATE(317)] = 8836, + [SMALL_STATE(318)] = 8878, + [SMALL_STATE(319)] = 8920, + [SMALL_STATE(320)] = 8962, + [SMALL_STATE(321)] = 9004, + [SMALL_STATE(322)] = 9046, + [SMALL_STATE(323)] = 9088, + [SMALL_STATE(324)] = 9130, + [SMALL_STATE(325)] = 9172, + [SMALL_STATE(326)] = 9214, + [SMALL_STATE(327)] = 9256, + [SMALL_STATE(328)] = 9298, + [SMALL_STATE(329)] = 9340, + [SMALL_STATE(330)] = 9386, + [SMALL_STATE(331)] = 9428, + [SMALL_STATE(332)] = 9474, + [SMALL_STATE(333)] = 9516, + [SMALL_STATE(334)] = 9558, + [SMALL_STATE(335)] = 9600, + [SMALL_STATE(336)] = 9642, + [SMALL_STATE(337)] = 9684, + [SMALL_STATE(338)] = 9726, + [SMALL_STATE(339)] = 9768, + [SMALL_STATE(340)] = 9810, + [SMALL_STATE(341)] = 9852, + [SMALL_STATE(342)] = 9894, + [SMALL_STATE(343)] = 9936, + [SMALL_STATE(344)] = 9978, + [SMALL_STATE(345)] = 10020, + [SMALL_STATE(346)] = 10066, + [SMALL_STATE(347)] = 10108, + [SMALL_STATE(348)] = 10150, + [SMALL_STATE(349)] = 10192, + [SMALL_STATE(350)] = 10234, + [SMALL_STATE(351)] = 10276, + [SMALL_STATE(352)] = 10318, + [SMALL_STATE(353)] = 10360, + [SMALL_STATE(354)] = 10402, + [SMALL_STATE(355)] = 10444, + [SMALL_STATE(356)] = 10486, + [SMALL_STATE(357)] = 10528, + [SMALL_STATE(358)] = 10570, + [SMALL_STATE(359)] = 10612, + [SMALL_STATE(360)] = 10654, + [SMALL_STATE(361)] = 10696, + [SMALL_STATE(362)] = 10738, + [SMALL_STATE(363)] = 10780, + [SMALL_STATE(364)] = 10822, + [SMALL_STATE(365)] = 10864, + [SMALL_STATE(366)] = 10906, + [SMALL_STATE(367)] = 10948, + [SMALL_STATE(368)] = 10990, + [SMALL_STATE(369)] = 11032, + [SMALL_STATE(370)] = 11074, + [SMALL_STATE(371)] = 11116, + [SMALL_STATE(372)] = 11158, + [SMALL_STATE(373)] = 11200, + [SMALL_STATE(374)] = 11242, + [SMALL_STATE(375)] = 11284, + [SMALL_STATE(376)] = 11326, + [SMALL_STATE(377)] = 11368, + [SMALL_STATE(378)] = 11410, + [SMALL_STATE(379)] = 11452, + [SMALL_STATE(380)] = 11494, + [SMALL_STATE(381)] = 11536, + [SMALL_STATE(382)] = 11578, + [SMALL_STATE(383)] = 11624, + [SMALL_STATE(384)] = 11666, + [SMALL_STATE(385)] = 11712, + [SMALL_STATE(386)] = 11754, + [SMALL_STATE(387)] = 11796, + [SMALL_STATE(388)] = 11838, + [SMALL_STATE(389)] = 11880, + [SMALL_STATE(390)] = 11922, + [SMALL_STATE(391)] = 11964, + [SMALL_STATE(392)] = 12010, + [SMALL_STATE(393)] = 12052, + [SMALL_STATE(394)] = 12094, + [SMALL_STATE(395)] = 12140, + [SMALL_STATE(396)] = 12186, + [SMALL_STATE(397)] = 12228, + [SMALL_STATE(398)] = 12270, + [SMALL_STATE(399)] = 12316, + [SMALL_STATE(400)] = 12358, + [SMALL_STATE(401)] = 12400, + [SMALL_STATE(402)] = 12442, + [SMALL_STATE(403)] = 12484, + [SMALL_STATE(404)] = 12526, + [SMALL_STATE(405)] = 12568, + [SMALL_STATE(406)] = 12610, + [SMALL_STATE(407)] = 12652, + [SMALL_STATE(408)] = 12694, + [SMALL_STATE(409)] = 12736, + [SMALL_STATE(410)] = 12778, + [SMALL_STATE(411)] = 12820, + [SMALL_STATE(412)] = 12862, + [SMALL_STATE(413)] = 12904, + [SMALL_STATE(414)] = 12946, + [SMALL_STATE(415)] = 12988, + [SMALL_STATE(416)] = 13030, + [SMALL_STATE(417)] = 13072, + [SMALL_STATE(418)] = 13114, + [SMALL_STATE(419)] = 13156, + [SMALL_STATE(420)] = 13198, + [SMALL_STATE(421)] = 13240, + [SMALL_STATE(422)] = 13282, + [SMALL_STATE(423)] = 13324, + [SMALL_STATE(424)] = 13366, + [SMALL_STATE(425)] = 13408, + [SMALL_STATE(426)] = 13450, + [SMALL_STATE(427)] = 13492, + [SMALL_STATE(428)] = 13534, + [SMALL_STATE(429)] = 13576, + [SMALL_STATE(430)] = 13618, + [SMALL_STATE(431)] = 13660, + [SMALL_STATE(432)] = 13702, + [SMALL_STATE(433)] = 13744, + [SMALL_STATE(434)] = 13786, + [SMALL_STATE(435)] = 13828, + [SMALL_STATE(436)] = 13874, + [SMALL_STATE(437)] = 13916, + [SMALL_STATE(438)] = 13962, + [SMALL_STATE(439)] = 14004, + [SMALL_STATE(440)] = 14046, + [SMALL_STATE(441)] = 14088, + [SMALL_STATE(442)] = 14130, + [SMALL_STATE(443)] = 14172, + [SMALL_STATE(444)] = 14214, + [SMALL_STATE(445)] = 14256, + [SMALL_STATE(446)] = 14298, + [SMALL_STATE(447)] = 14340, + [SMALL_STATE(448)] = 14382, + [SMALL_STATE(449)] = 14424, + [SMALL_STATE(450)] = 14466, + [SMALL_STATE(451)] = 14508, + [SMALL_STATE(452)] = 14554, + [SMALL_STATE(453)] = 14596, + [SMALL_STATE(454)] = 14638, + [SMALL_STATE(455)] = 14680, + [SMALL_STATE(456)] = 14722, + [SMALL_STATE(457)] = 14764, + [SMALL_STATE(458)] = 14806, + [SMALL_STATE(459)] = 14848, + [SMALL_STATE(460)] = 14890, + [SMALL_STATE(461)] = 14932, + [SMALL_STATE(462)] = 14974, + [SMALL_STATE(463)] = 15016, + [SMALL_STATE(464)] = 15058, + [SMALL_STATE(465)] = 15100, + [SMALL_STATE(466)] = 15142, + [SMALL_STATE(467)] = 15184, + [SMALL_STATE(468)] = 15226, + [SMALL_STATE(469)] = 15268, + [SMALL_STATE(470)] = 15310, + [SMALL_STATE(471)] = 15352, + [SMALL_STATE(472)] = 15394, + [SMALL_STATE(473)] = 15436, + [SMALL_STATE(474)] = 15478, + [SMALL_STATE(475)] = 15520, + [SMALL_STATE(476)] = 15562, + [SMALL_STATE(477)] = 15604, + [SMALL_STATE(478)] = 15646, + [SMALL_STATE(479)] = 15688, + [SMALL_STATE(480)] = 15730, + [SMALL_STATE(481)] = 15772, + [SMALL_STATE(482)] = 15814, + [SMALL_STATE(483)] = 15856, + [SMALL_STATE(484)] = 15898, + [SMALL_STATE(485)] = 15940, + [SMALL_STATE(486)] = 15982, + [SMALL_STATE(487)] = 16024, + [SMALL_STATE(488)] = 16066, + [SMALL_STATE(489)] = 16112, + [SMALL_STATE(490)] = 16154, + [SMALL_STATE(491)] = 16200, + [SMALL_STATE(492)] = 16242, + [SMALL_STATE(493)] = 16284, + [SMALL_STATE(494)] = 16326, + [SMALL_STATE(495)] = 16368, + [SMALL_STATE(496)] = 16410, + [SMALL_STATE(497)] = 16452, + [SMALL_STATE(498)] = 16494, + [SMALL_STATE(499)] = 16536, + [SMALL_STATE(500)] = 16578, + [SMALL_STATE(501)] = 16620, + [SMALL_STATE(502)] = 16662, + [SMALL_STATE(503)] = 16704, + [SMALL_STATE(504)] = 16746, + [SMALL_STATE(505)] = 16792, + [SMALL_STATE(506)] = 16834, + [SMALL_STATE(507)] = 16876, + [SMALL_STATE(508)] = 16918, + [SMALL_STATE(509)] = 16960, + [SMALL_STATE(510)] = 17002, + [SMALL_STATE(511)] = 17044, + [SMALL_STATE(512)] = 17086, + [SMALL_STATE(513)] = 17128, + [SMALL_STATE(514)] = 17170, + [SMALL_STATE(515)] = 17212, + [SMALL_STATE(516)] = 17254, + [SMALL_STATE(517)] = 17296, + [SMALL_STATE(518)] = 17338, + [SMALL_STATE(519)] = 17380, + [SMALL_STATE(520)] = 17422, + [SMALL_STATE(521)] = 17464, + [SMALL_STATE(522)] = 17506, + [SMALL_STATE(523)] = 17548, + [SMALL_STATE(524)] = 17590, + [SMALL_STATE(525)] = 17632, + [SMALL_STATE(526)] = 17674, + [SMALL_STATE(527)] = 17716, + [SMALL_STATE(528)] = 17758, + [SMALL_STATE(529)] = 17800, + [SMALL_STATE(530)] = 17842, + [SMALL_STATE(531)] = 17884, + [SMALL_STATE(532)] = 17926, + [SMALL_STATE(533)] = 17968, + [SMALL_STATE(534)] = 18010, + [SMALL_STATE(535)] = 18052, + [SMALL_STATE(536)] = 18094, + [SMALL_STATE(537)] = 18136, + [SMALL_STATE(538)] = 18178, + [SMALL_STATE(539)] = 18220, + [SMALL_STATE(540)] = 18262, + [SMALL_STATE(541)] = 18304, + [SMALL_STATE(542)] = 18350, + [SMALL_STATE(543)] = 18392, + [SMALL_STATE(544)] = 18438, + [SMALL_STATE(545)] = 18480, + [SMALL_STATE(546)] = 18522, + [SMALL_STATE(547)] = 18564, + [SMALL_STATE(548)] = 18606, + [SMALL_STATE(549)] = 18652, + [SMALL_STATE(550)] = 18694, + [SMALL_STATE(551)] = 18736, + [SMALL_STATE(552)] = 18778, + [SMALL_STATE(553)] = 18820, + [SMALL_STATE(554)] = 18862, + [SMALL_STATE(555)] = 18904, + [SMALL_STATE(556)] = 18946, + [SMALL_STATE(557)] = 18988, + [SMALL_STATE(558)] = 19034, + [SMALL_STATE(559)] = 19076, + [SMALL_STATE(560)] = 19118, + [SMALL_STATE(561)] = 19160, + [SMALL_STATE(562)] = 19202, + [SMALL_STATE(563)] = 19244, + [SMALL_STATE(564)] = 19286, + [SMALL_STATE(565)] = 19328, + [SMALL_STATE(566)] = 19369, + [SMALL_STATE(567)] = 19410, + [SMALL_STATE(568)] = 19451, + [SMALL_STATE(569)] = 19492, + [SMALL_STATE(570)] = 19533, + [SMALL_STATE(571)] = 19574, + [SMALL_STATE(572)] = 19615, + [SMALL_STATE(573)] = 19656, + [SMALL_STATE(574)] = 19697, + [SMALL_STATE(575)] = 19738, + [SMALL_STATE(576)] = 19779, + [SMALL_STATE(577)] = 19820, + [SMALL_STATE(578)] = 19861, + [SMALL_STATE(579)] = 19902, + [SMALL_STATE(580)] = 19943, + [SMALL_STATE(581)] = 19984, + [SMALL_STATE(582)] = 20025, + [SMALL_STATE(583)] = 20066, + [SMALL_STATE(584)] = 20107, + [SMALL_STATE(585)] = 20148, + [SMALL_STATE(586)] = 20189, + [SMALL_STATE(587)] = 20230, + [SMALL_STATE(588)] = 20271, + [SMALL_STATE(589)] = 20312, + [SMALL_STATE(590)] = 20353, + [SMALL_STATE(591)] = 20394, + [SMALL_STATE(592)] = 20435, + [SMALL_STATE(593)] = 20476, + [SMALL_STATE(594)] = 20517, + [SMALL_STATE(595)] = 20558, + [SMALL_STATE(596)] = 20589, + [SMALL_STATE(597)] = 20620, + [SMALL_STATE(598)] = 20651, + [SMALL_STATE(599)] = 20682, + [SMALL_STATE(600)] = 20713, + [SMALL_STATE(601)] = 20744, + [SMALL_STATE(602)] = 20775, + [SMALL_STATE(603)] = 20806, + [SMALL_STATE(604)] = 20837, + [SMALL_STATE(605)] = 20868, + [SMALL_STATE(606)] = 20899, + [SMALL_STATE(607)] = 20930, + [SMALL_STATE(608)] = 20961, + [SMALL_STATE(609)] = 20992, + [SMALL_STATE(610)] = 21023, + [SMALL_STATE(611)] = 21054, + [SMALL_STATE(612)] = 21085, + [SMALL_STATE(613)] = 21116, + [SMALL_STATE(614)] = 21147, + [SMALL_STATE(615)] = 21178, + [SMALL_STATE(616)] = 21209, + [SMALL_STATE(617)] = 21240, + [SMALL_STATE(618)] = 21271, + [SMALL_STATE(619)] = 21302, + [SMALL_STATE(620)] = 21333, + [SMALL_STATE(621)] = 21364, + [SMALL_STATE(622)] = 21395, + [SMALL_STATE(623)] = 21426, + [SMALL_STATE(624)] = 21457, + [SMALL_STATE(625)] = 21488, + [SMALL_STATE(626)] = 21519, + [SMALL_STATE(627)] = 21550, + [SMALL_STATE(628)] = 21581, + [SMALL_STATE(629)] = 21612, + [SMALL_STATE(630)] = 21643, + [SMALL_STATE(631)] = 21674, + [SMALL_STATE(632)] = 21705, + [SMALL_STATE(633)] = 21736, + [SMALL_STATE(634)] = 21767, + [SMALL_STATE(635)] = 21798, + [SMALL_STATE(636)] = 21829, + [SMALL_STATE(637)] = 21839, + [SMALL_STATE(638)] = 21849, + [SMALL_STATE(639)] = 21859, + [SMALL_STATE(640)] = 21869, + [SMALL_STATE(641)] = 21879, + [SMALL_STATE(642)] = 21889, + [SMALL_STATE(643)] = 21899, + [SMALL_STATE(644)] = 21909, + [SMALL_STATE(645)] = 21919, + [SMALL_STATE(646)] = 21933, + [SMALL_STATE(647)] = 21949, + [SMALL_STATE(648)] = 21965, + [SMALL_STATE(649)] = 21981, + [SMALL_STATE(650)] = 21995, + [SMALL_STATE(651)] = 22011, + [SMALL_STATE(652)] = 22027, + [SMALL_STATE(653)] = 22041, + [SMALL_STATE(654)] = 22057, + [SMALL_STATE(655)] = 22069, + [SMALL_STATE(656)] = 22085, + [SMALL_STATE(657)] = 22101, + [SMALL_STATE(658)] = 22117, + [SMALL_STATE(659)] = 22131, + [SMALL_STATE(660)] = 22145, + [SMALL_STATE(661)] = 22161, + [SMALL_STATE(662)] = 22177, + [SMALL_STATE(663)] = 22191, + [SMALL_STATE(664)] = 22207, + [SMALL_STATE(665)] = 22223, + [SMALL_STATE(666)] = 22237, + [SMALL_STATE(667)] = 22253, + [SMALL_STATE(668)] = 22269, + [SMALL_STATE(669)] = 22281, + [SMALL_STATE(670)] = 22297, + [SMALL_STATE(671)] = 22311, + [SMALL_STATE(672)] = 22327, + [SMALL_STATE(673)] = 22343, + [SMALL_STATE(674)] = 22357, + [SMALL_STATE(675)] = 22369, + [SMALL_STATE(676)] = 22383, + [SMALL_STATE(677)] = 22399, + [SMALL_STATE(678)] = 22415, + [SMALL_STATE(679)] = 22422, + [SMALL_STATE(680)] = 22432, + [SMALL_STATE(681)] = 22442, + [SMALL_STATE(682)] = 22452, + [SMALL_STATE(683)] = 22462, + [SMALL_STATE(684)] = 22472, + [SMALL_STATE(685)] = 22482, + [SMALL_STATE(686)] = 22492, + [SMALL_STATE(687)] = 22502, + [SMALL_STATE(688)] = 22512, + [SMALL_STATE(689)] = 22522, + [SMALL_STATE(690)] = 22532, + [SMALL_STATE(691)] = 22542, + [SMALL_STATE(692)] = 22552, + [SMALL_STATE(693)] = 22562, + [SMALL_STATE(694)] = 22572, + [SMALL_STATE(695)] = 22582, + [SMALL_STATE(696)] = 22592, + [SMALL_STATE(697)] = 22600, + [SMALL_STATE(698)] = 22610, + [SMALL_STATE(699)] = 22620, + [SMALL_STATE(700)] = 22630, + [SMALL_STATE(701)] = 22640, + [SMALL_STATE(702)] = 22648, + [SMALL_STATE(703)] = 22655, + [SMALL_STATE(704)] = 22662, + [SMALL_STATE(705)] = 22669, + [SMALL_STATE(706)] = 22676, + [SMALL_STATE(707)] = 22683, + [SMALL_STATE(708)] = 22690, + [SMALL_STATE(709)] = 22697, + [SMALL_STATE(710)] = 22704, + [SMALL_STATE(711)] = 22711, + [SMALL_STATE(712)] = 22718, + [SMALL_STATE(713)] = 22725, + [SMALL_STATE(714)] = 22732, + [SMALL_STATE(715)] = 22739, + [SMALL_STATE(716)] = 22746, + [SMALL_STATE(717)] = 22753, + [SMALL_STATE(718)] = 22760, + [SMALL_STATE(719)] = 22767, + [SMALL_STATE(720)] = 22774, + [SMALL_STATE(721)] = 22781, + [SMALL_STATE(722)] = 22788, + [SMALL_STATE(723)] = 22795, + [SMALL_STATE(724)] = 22802, + [SMALL_STATE(725)] = 22809, + [SMALL_STATE(726)] = 22816, + [SMALL_STATE(727)] = 22823, + [SMALL_STATE(728)] = 22830, + [SMALL_STATE(729)] = 22837, + [SMALL_STATE(730)] = 22844, + [SMALL_STATE(731)] = 22851, + [SMALL_STATE(732)] = 22858, + [SMALL_STATE(733)] = 22865, + [SMALL_STATE(734)] = 22872, + [SMALL_STATE(735)] = 22879, + [SMALL_STATE(736)] = 22886, + [SMALL_STATE(737)] = 22893, + [SMALL_STATE(738)] = 22900, + [SMALL_STATE(739)] = 22907, + [SMALL_STATE(740)] = 22914, + [SMALL_STATE(741)] = 22921, + [SMALL_STATE(742)] = 22928, + [SMALL_STATE(743)] = 22935, + [SMALL_STATE(744)] = 22942, + [SMALL_STATE(745)] = 22949, + [SMALL_STATE(746)] = 22956, + [SMALL_STATE(747)] = 22963, + [SMALL_STATE(748)] = 22970, + [SMALL_STATE(749)] = 22977, + [SMALL_STATE(750)] = 22984, + [SMALL_STATE(751)] = 22991, + [SMALL_STATE(752)] = 22998, + [SMALL_STATE(753)] = 23005, + [SMALL_STATE(754)] = 23009, + [SMALL_STATE(755)] = 23013, + [SMALL_STATE(756)] = 23017, + [SMALL_STATE(757)] = 23021, + [SMALL_STATE(758)] = 23025, + [SMALL_STATE(759)] = 23029, + [SMALL_STATE(760)] = 23033, + [SMALL_STATE(761)] = 23037, + [SMALL_STATE(762)] = 23041, + [SMALL_STATE(763)] = 23045, + [SMALL_STATE(764)] = 23049, + [SMALL_STATE(765)] = 23053, + [SMALL_STATE(766)] = 23057, + [SMALL_STATE(767)] = 23061, + [SMALL_STATE(768)] = 23065, + [SMALL_STATE(769)] = 23069, + [SMALL_STATE(770)] = 23073, + [SMALL_STATE(771)] = 23077, + [SMALL_STATE(772)] = 23081, + [SMALL_STATE(773)] = 23085, + [SMALL_STATE(774)] = 23089, + [SMALL_STATE(775)] = 23093, + [SMALL_STATE(776)] = 23097, + [SMALL_STATE(777)] = 23101, + [SMALL_STATE(778)] = 23105, + [SMALL_STATE(779)] = 23109, + [SMALL_STATE(780)] = 23113, + [SMALL_STATE(781)] = 23117, + [SMALL_STATE(782)] = 23121, + [SMALL_STATE(783)] = 23125, + [SMALL_STATE(784)] = 23129, + [SMALL_STATE(785)] = 23133, + [SMALL_STATE(786)] = 23137, + [SMALL_STATE(787)] = 23141, + [SMALL_STATE(788)] = 23145, + [SMALL_STATE(789)] = 23149, + [SMALL_STATE(790)] = 23153, + [SMALL_STATE(791)] = 23157, + [SMALL_STATE(792)] = 23161, + [SMALL_STATE(793)] = 23165, + [SMALL_STATE(794)] = 23169, + [SMALL_STATE(795)] = 23173, + [SMALL_STATE(796)] = 23177, + [SMALL_STATE(797)] = 23181, + [SMALL_STATE(798)] = 23185, + [SMALL_STATE(799)] = 23189, + [SMALL_STATE(800)] = 23193, + [SMALL_STATE(801)] = 23197, + [SMALL_STATE(802)] = 23201, + [SMALL_STATE(803)] = 23205, + [SMALL_STATE(804)] = 23209, + [SMALL_STATE(805)] = 23213, + [SMALL_STATE(806)] = 23217, + [SMALL_STATE(807)] = 23221, + [SMALL_STATE(808)] = 23225, + [SMALL_STATE(809)] = 23229, + [SMALL_STATE(810)] = 23233, + [SMALL_STATE(811)] = 23237, + [SMALL_STATE(812)] = 23241, + [SMALL_STATE(813)] = 23245, + [SMALL_STATE(814)] = 23249, + [SMALL_STATE(815)] = 23253, + [SMALL_STATE(816)] = 23257, + [SMALL_STATE(817)] = 23261, + [SMALL_STATE(818)] = 23265, + [SMALL_STATE(819)] = 23269, + [SMALL_STATE(820)] = 23273, + [SMALL_STATE(821)] = 23277, + [SMALL_STATE(822)] = 23281, + [SMALL_STATE(823)] = 23285, + [SMALL_STATE(824)] = 23289, + [SMALL_STATE(825)] = 23293, + [SMALL_STATE(826)] = 23297, + [SMALL_STATE(827)] = 23301, + [SMALL_STATE(828)] = 23305, + [SMALL_STATE(829)] = 23309, + [SMALL_STATE(830)] = 23313, + [SMALL_STATE(831)] = 23317, + [SMALL_STATE(832)] = 23321, + [SMALL_STATE(833)] = 23325, + [SMALL_STATE(834)] = 23329, + [SMALL_STATE(835)] = 23333, + [SMALL_STATE(836)] = 23337, + [SMALL_STATE(837)] = 23341, + [SMALL_STATE(838)] = 23345, + [SMALL_STATE(839)] = 23349, + [SMALL_STATE(840)] = 23353, + [SMALL_STATE(841)] = 23357, + [SMALL_STATE(842)] = 23361, + [SMALL_STATE(843)] = 23365, + [SMALL_STATE(844)] = 23369, + [SMALL_STATE(845)] = 23373, + [SMALL_STATE(846)] = 23377, + [SMALL_STATE(847)] = 23381, + [SMALL_STATE(848)] = 23385, + [SMALL_STATE(849)] = 23389, + [SMALL_STATE(850)] = 23393, + [SMALL_STATE(851)] = 23397, + [SMALL_STATE(852)] = 23401, + [SMALL_STATE(853)] = 23405, + [SMALL_STATE(854)] = 23409, + [SMALL_STATE(855)] = 23413, + [SMALL_STATE(856)] = 23417, + [SMALL_STATE(857)] = 23421, + [SMALL_STATE(858)] = 23425, + [SMALL_STATE(859)] = 23429, + [SMALL_STATE(860)] = 23433, + [SMALL_STATE(861)] = 23437, + [SMALL_STATE(862)] = 23441, + [SMALL_STATE(863)] = 23445, + [SMALL_STATE(864)] = 23449, + [SMALL_STATE(865)] = 23453, + [SMALL_STATE(866)] = 23457, + [SMALL_STATE(867)] = 23461, + [SMALL_STATE(868)] = 23465, + [SMALL_STATE(869)] = 23469, + [SMALL_STATE(870)] = 23473, + [SMALL_STATE(871)] = 23477, + [SMALL_STATE(872)] = 23481, + [SMALL_STATE(873)] = 23485, + [SMALL_STATE(874)] = 23489, + [SMALL_STATE(875)] = 23493, + [SMALL_STATE(876)] = 23497, + [SMALL_STATE(877)] = 23501, + [SMALL_STATE(878)] = 23505, + [SMALL_STATE(879)] = 23509, + [SMALL_STATE(880)] = 23513, + [SMALL_STATE(881)] = 23517, + [SMALL_STATE(882)] = 23521, + [SMALL_STATE(883)] = 23525, + [SMALL_STATE(884)] = 23529, + [SMALL_STATE(885)] = 23533, + [SMALL_STATE(886)] = 23537, + [SMALL_STATE(887)] = 23541, + [SMALL_STATE(888)] = 23545, + [SMALL_STATE(889)] = 23549, + [SMALL_STATE(890)] = 23553, + [SMALL_STATE(891)] = 23557, + [SMALL_STATE(892)] = 23561, + [SMALL_STATE(893)] = 23565, + [SMALL_STATE(894)] = 23569, + [SMALL_STATE(895)] = 23573, + [SMALL_STATE(896)] = 23577, + [SMALL_STATE(897)] = 23581, + [SMALL_STATE(898)] = 23585, + [SMALL_STATE(899)] = 23589, + [SMALL_STATE(900)] = 23593, + [SMALL_STATE(901)] = 23597, + [SMALL_STATE(902)] = 23601, + [SMALL_STATE(903)] = 23605, + [SMALL_STATE(904)] = 23609, + [SMALL_STATE(905)] = 23613, + [SMALL_STATE(906)] = 23617, + [SMALL_STATE(907)] = 23621, + [SMALL_STATE(908)] = 23625, + [SMALL_STATE(909)] = 23629, + [SMALL_STATE(910)] = 23633, + [SMALL_STATE(911)] = 23637, + [SMALL_STATE(912)] = 23641, +}; + +static const TSParseActionEntry ts_parse_actions[] = { + [0] = {.entry = {.count = 0, .reusable = false}}, + [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), + [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), + [49] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), + [51] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), + [53] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(142), + [56] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(382), + [59] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(141), + [62] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(384), + [65] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(803), + [68] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(206), + [71] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(206), + [74] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(210), + [77] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(31), + [80] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(29), + [83] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(28), + [86] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(27), + [89] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(38), + [92] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(131), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [97] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(25), + [100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(26), + [103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(214), + [106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(396), + [109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(397), + [112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(896), + [115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(398), + [118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(112), + [121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(126), + [124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(382), + [127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(398), + [130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(38), + [133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(384), + [136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(27), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), + [141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(165), + [144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(329), + [147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(164), + [150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(331), + [153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(850), + [156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(182), + [159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(182), + [162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(184), + [165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(43), + [168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(41), + [171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(40), + [174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(39), + [177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(11), + [180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(11), + [183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(154), + [186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(5), + [189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(37), + [192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(193), + [195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(343), + [198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(344), + [201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(345), + [204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(96), + [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(150), + [210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(136), + [213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(239), + [216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(140), + [219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(240), + [222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(802), + [225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(207), + [228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(207), + [231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(208), + [234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(48), + [237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(47), + [240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(30), + [243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(18), + [246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(16), + [249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(129), + [252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(8), + [255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(54), + [258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(219), + [261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(241), + [264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(242), + [267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(243), + [270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(98), + [273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(139), + [276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(145), + [279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(276), + [282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(146), + [285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(278), + [288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(901), + [291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(197), + [294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(197), + [297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(196), + [300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(51), + [303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(53), + [306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(55), + [309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(57), + [312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(61), + [315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(151), + [318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(9), + [321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(12), + [324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(185), + [327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(290), + [330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(291), + [333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(292), + [336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(84), + [339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(159), + [342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(169), + [345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(305), + [348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(171), + [351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(304), + [354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(792), + [357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(173), + [360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(173), + [363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(174), + [366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(52), + [369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(67), + [372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(42), + [375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(71), + [378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(70), + [381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(163), + [384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(7), + [387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(68), + [390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(183), + [393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(294), + [396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(293), + [399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(289), + [402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(101), + [405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(155), + [408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(170), + [411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(395), + [414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(125), + [417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(394), + [420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(823), + [423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(221), + [426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(221), + [429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(217), + [432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(24), + [435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(23), + [438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(22), + [441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(21), + [444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(20), + [447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(127), + [450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(3), + [453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(19), + [456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(216), + [459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(275), + [462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(392), + [465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(391), + [468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(109), + [471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(134), + [474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(701), + [477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(395), + [480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(391), + [483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(305), + [486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(289), + [489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(239), + [492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(243), + [495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(329), + [498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(345), + [501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(61), + [504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(16), + [507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(70), + [510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(20), + [513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(394), + [516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(304), + [519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(240), + [522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(278), + [525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(292), + [528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(331), + [531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(21), + [534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(71), + [537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(18), + [540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(57), + [543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(39), + [546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(276), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), + [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline, 1), + [595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline, 1), + [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(161), + [604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(488), + [607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(168), + [610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(490), + [613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), + [615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(777), + [618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(178), + [621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(178), + [624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(175), + [627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(44), + [630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(45), + [633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(46), + [636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(49), + [639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(50), + [642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(147), + [645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(6), + [648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(62), + [651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(177), + [654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(502), + [657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(503), + [660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(896), + [663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(504), + [666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(74), + [669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(167), + [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), + [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), + [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(133), + [719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(306), + [722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(124), + [725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(231), + [728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(905), + [731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(220), + [734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(220), + [737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(218), + [740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(69), + [743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(65), + [746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(13), + [749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(14), + [752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(15), + [755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(128), + [758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(2), + [761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(17), + [764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(215), + [767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(245), + [770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(253), + [773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(267), + [776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(77), + [779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(130), + [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(157), + [787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(541), + [790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(152), + [793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(543), + [796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(791), + [799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(189), + [802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(189), + [805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(191), + [808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(64), + [811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(63), + [814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(60), + [817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(59), + [820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(58), + [823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(148), + [826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(10), + [829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(56), + [832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(194), + [835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(555), + [838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(556), + [841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(557), + [844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(80), + [847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(123), + [850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(169), + [853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(305), + [856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(171), + [859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(304), + [862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(792), + [865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(173), + [868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(173), + [871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(174), + [874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(52), + [877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(67), + [880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(42), + [883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(71), + [886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(70), + [889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(163), + [892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(7), + [895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(68), + [898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(183), + [901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(294), + [904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(293), + [907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(289), + [910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(81), + [913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(155), + [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), + [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), + [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), + [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), + [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [1000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [1002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [1004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(145), + [1007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(276), + [1010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(146), + [1013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(278), + [1016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(901), + [1019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(197), + [1022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(197), + [1025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(196), + [1028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(51), + [1031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(53), + [1034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(55), + [1037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(57), + [1040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(57), + [1043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(61), + [1046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(151), + [1049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(9), + [1052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(12), + [1055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(185), + [1058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(290), + [1061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(291), + [1064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(292), + [1067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(85), + [1070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(159), + [1073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(136), + [1076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(239), + [1079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(140), + [1082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(240), + [1085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(802), + [1088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(207), + [1091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(207), + [1094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(208), + [1097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(48), + [1100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(47), + [1103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(30), + [1106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(18), + [1109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(16), + [1112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(129), + [1115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(8), + [1118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(54), + [1121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(219), + [1124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(241), + [1127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(242), + [1130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(243), + [1133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(90), + [1136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(139), + [1139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(137), + [1142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(435), + [1145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(138), + [1148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(437), + [1151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(766), + [1154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(201), + [1157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(201), + [1160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(200), + [1163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(32), + [1166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(33), + [1169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(34), + [1172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(66), + [1175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(35), + [1178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(149), + [1181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(4), + [1184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(36), + [1187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(190), + [1190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(449), + [1193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(450), + [1196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(451), + [1199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(91), + [1202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(153), + [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), + [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), + [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), + [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), + [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [1297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(165), + [1300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(329), + [1303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(164), + [1306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(331), + [1309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(850), + [1312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(182), + [1315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(182), + [1318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(184), + [1321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(43), + [1324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(41), + [1327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(40), + [1330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(39), + [1333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(11), + [1336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(11), + [1339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(154), + [1342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(5), + [1345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(37), + [1348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(193), + [1351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(343), + [1354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(344), + [1357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(345), + [1360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(99), + [1363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(150), + [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), + [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [1396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), + [1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [1400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [1402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [1410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(170), + [1413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(395), + [1416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(125), + [1419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(394), + [1422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(823), + [1425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(221), + [1428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(221), + [1431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(217), + [1434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(24), + [1437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(23), + [1440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(22), + [1443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(21), + [1446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(20), + [1449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(127), + [1452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(3), + [1455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(19), + [1458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(216), + [1461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(275), + [1464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(392), + [1467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(391), + [1470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(105), + [1473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(134), + [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [1486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), + [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [1490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), + [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [1502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [1508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), + [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [1520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [1522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(142), + [1525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(382), + [1528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(141), + [1531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(384), + [1534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(803), + [1537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(206), + [1540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(206), + [1543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(210), + [1546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(31), + [1549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(29), + [1552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(28), + [1555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(27), + [1558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(38), + [1561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(131), + [1564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(25), + [1567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(26), + [1570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(214), + [1573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(396), + [1576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(397), + [1579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(398), + [1582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(111), + [1585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(126), + [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [1596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), + [1598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [1600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [1604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [1608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [1616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [1618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), + [1620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [1630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [1632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verbatim, 3, .production_id = 5), + [1634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verbatim, 3, .production_id = 5), + [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [1638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), + [1640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element, 1), + [1642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__element, 1), + [1644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), + [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), + [1649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_strong_begin, 1), REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), + [1652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [1654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), + [1656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), + [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [1660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), + [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [1665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_emphasis_begin, 1), REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), + [1668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), + [1670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [1672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [1674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [1678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), + [1680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), + [1682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [1686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [1688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), + [1690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [1692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), + [1698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__text, 2), + [1700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__text, 2), + [1702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(172), + [1705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), + [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), + [1709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(176), + [1712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(179), + [1715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__verbatim_end, 1), + [1717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__verbatim_end, 1), + [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), + [1721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(188), + [1724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [1726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(192), + [1729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(195), + [1732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), + [1734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(198), + [1737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(199), + [1740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), + [1742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(202), + [1745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(204), + [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), + [1750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), + [1752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), + [1754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), + [1756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collapsed_reference_image, 2), + [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collapsed_reference_image, 2), + [1760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_reference_link, 2), + [1762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_reference_link, 2), + [1764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_superscript, 3, .production_id = 2), + [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_superscript, 3, .production_id = 2), + [1768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 3, .production_id = 2), + [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 3, .production_id = 2), + [1772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_footnote_reference, 3, .production_id = 3), + [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_footnote_reference, 3, .production_id = 3), + [1776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_emphasis_end, 1), + [1778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emphasis_end, 1), + [1780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_emphasis, 3, .production_id = 2), + [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emphasis, 3, .production_id = 2), + [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strong_end, 1), + [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strong_end, 1), + [1788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strong, 3, .production_id = 2), + [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strong, 3, .production_id = 2), + [1792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_span, 4), + [1794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_span, 4), + [1796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math, 4, .production_id = 7), + [1798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math, 4, .production_id = 7), + [1800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comment, 3), + [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 3), + [1804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_label, 3, .production_id = 8), + [1806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_label, 3, .production_id = 8), + [1808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link_destination, 3), + [1810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link_destination, 3), + [1812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_inline, 4), + [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_inline, 4), + [1816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_inline_attribute, 3), + [1818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_inline_attribute, 3), + [1820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_todo, 1), + [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_todo, 1), + [1824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_note, 1), + [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note, 1), + [1828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 1), + [1830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), + [1832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(708), + [1835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hard_line_break, 2), + [1837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hard_line_break, 2), + [1839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__comment_with_spaces, 2), + [1841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_with_spaces, 2), + [1843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_reference_image, 2), + [1845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_reference_image, 2), + [1847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_image, 2), + [1849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_image, 2), + [1851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collapsed_reference_link, 2), + [1853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collapsed_reference_link, 2), + [1855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 2), + [1857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 2), + [1859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_autolink, 3), + [1861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_autolink, 3), + [1863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_highlighted, 3, .production_id = 2), + [1865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlighted, 3, .production_id = 2), + [1867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 3, .production_id = 2), + [1869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 3, .production_id = 2), + [1871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete, 3, .production_id = 2), + [1873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete, 3, .production_id = 2), + [1875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(706), + [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), + [1880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), + [1882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_emphasis_begin, 2), + [1884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strong_begin, 2), + [1886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strong_begin, 2), + [1888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(712), + [1891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(707), + [1894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_attribute, 3, .production_id = 6), + [1896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_attribute, 3, .production_id = 6), + [1898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(728), + [1901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_attribute, 2), + [1903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_attribute, 2), + [1905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(713), + [1908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(731), + [1911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(739), + [1914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(740), + [1917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_emphasis_begin_repeat1, 2), + [1919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_emphasis_begin_repeat1, 2), SHIFT_REPEAT(548), + [1922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_emphasis_begin_repeat1, 2), + [1924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(742), + [1927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element, 2), + [1929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__element, 2), + [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [1953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), + [1955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(895), + [1958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(886), + [1961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(637), + [1964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(732), + [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [2033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 3), + [2035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 1), + [2037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_name, 1), + [2039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2), + [2041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_with_newline, 3), + [2043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1), + [2045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value, 3), + [2047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_with_newline, 4, .production_id = 9), + [2049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 1, .production_id = 1), + [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [2053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_text, 3), + [2055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_text, 3), + [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), + [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), + [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), + [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), + [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [2089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__comment_with_newline_repeat1, 2), SHIFT_REPEAT(678), + [2092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_with_newline_repeat1, 2), + [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [2096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), + [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [2104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), + [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [2120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), + [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [2130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), + [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [2136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [2138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [2146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), + [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [2154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), + [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [2160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), + [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [2166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_with_newline_repeat1, 1), + [2168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [2172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [2176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), + [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [2180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), + [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [2188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), + [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [2196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), + [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [2200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), + [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), + [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [2208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [2212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), + [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [2216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [2220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [2224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), + [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [2228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [2232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [2236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_description, 3, .production_id = 4), + [2238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_description, 3, .production_id = 4), + [2240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), + [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [2244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), + [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [2248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), + [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [2256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_description, 2), + [2258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_description, 2), + [2260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [2264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), + [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [2268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), + [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [2274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), + [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [2278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), + [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [2282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [2286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), + [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [2290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [2296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [2306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), + [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [2322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [2326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [2334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [2338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [2342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [2346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [2350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), + [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [2362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), + [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [2366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), + [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [2372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [2560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_label, 1), + [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [2650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline, 1), + [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [2660] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [2666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key, 1), + [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__verbatim_begin, 1), + [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), +}; + +#ifdef __cplusplus +extern "C" { +#endif +#ifdef _WIN32 +#define TS_PUBLIC __declspec(dllexport) +#else +#define TS_PUBLIC __attribute__((visibility("default"))) +#endif + +TS_PUBLIC const TSLanguage *tree_sitter_djot_inline() { + static const TSLanguage language = { + .version = LANGUAGE_VERSION, + .symbol_count = SYMBOL_COUNT, + .alias_count = ALIAS_COUNT, + .token_count = TOKEN_COUNT, + .external_token_count = EXTERNAL_TOKEN_COUNT, + .state_count = STATE_COUNT, + .large_state_count = LARGE_STATE_COUNT, + .production_id_count = PRODUCTION_ID_COUNT, + .field_count = FIELD_COUNT, + .max_alias_sequence_length = MAX_ALIAS_SEQUENCE_LENGTH, + .parse_table = &ts_parse_table[0][0], + .small_parse_table = ts_small_parse_table, + .small_parse_table_map = ts_small_parse_table_map, + .parse_actions = ts_parse_actions, + .symbol_names = ts_symbol_names, + .symbol_metadata = ts_symbol_metadata, + .public_symbol_map = ts_symbol_map, + .alias_map = ts_non_terminal_alias_map, + .alias_sequences = &ts_alias_sequences[0][0], + .lex_modes = ts_lex_modes, + .lex_fn = ts_lex, + .primary_state_ids = ts_primary_state_ids, + }; + return &language; +} +#ifdef __cplusplus +} +#endif diff --git a/tree-sitter-djot-inline/src/tree_sitter/alloc.h b/tree-sitter-djot-inline/src/tree_sitter/alloc.h new file mode 100644 index 0000000..1f4466d --- /dev/null +++ b/tree-sitter-djot-inline/src/tree_sitter/alloc.h @@ -0,0 +1,54 @@ +#ifndef TREE_SITTER_ALLOC_H_ +#define TREE_SITTER_ALLOC_H_ + +#ifdef __cplusplus +extern "C" { +#endif + +#include +#include +#include + +// Allow clients to override allocation functions +#ifdef TREE_SITTER_REUSE_ALLOCATOR + +extern void *(*ts_current_malloc)(size_t); +extern void *(*ts_current_calloc)(size_t, size_t); +extern void *(*ts_current_realloc)(void *, size_t); +extern void (*ts_current_free)(void *); + +#ifndef ts_malloc +#define ts_malloc ts_current_malloc +#endif +#ifndef ts_calloc +#define ts_calloc ts_current_calloc +#endif +#ifndef ts_realloc +#define ts_realloc ts_current_realloc +#endif +#ifndef ts_free +#define ts_free ts_current_free +#endif + +#else + +#ifndef ts_malloc +#define ts_malloc malloc +#endif +#ifndef ts_calloc +#define ts_calloc calloc +#endif +#ifndef ts_realloc +#define ts_realloc realloc +#endif +#ifndef ts_free +#define ts_free free +#endif + +#endif + +#ifdef __cplusplus +} +#endif + +#endif // TREE_SITTER_ALLOC_H_ diff --git a/tree-sitter-djot-inline/src/tree_sitter/array.h b/tree-sitter-djot-inline/src/tree_sitter/array.h new file mode 100644 index 0000000..186ba67 --- /dev/null +++ b/tree-sitter-djot-inline/src/tree_sitter/array.h @@ -0,0 +1,287 @@ +#ifndef TREE_SITTER_ARRAY_H_ +#define TREE_SITTER_ARRAY_H_ + +#ifdef __cplusplus +extern "C" { +#endif + +#include "./alloc.h" + +#include +#include +#include +#include +#include + +#ifdef _MSC_VER +#pragma warning(disable : 4101) +#elif defined(__GNUC__) || defined(__clang__) +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wunused-variable" +#endif + +#define Array(T) \ + struct { \ + T *contents; \ + uint32_t size; \ + uint32_t capacity; \ + } + +/// Initialize an array. +#define array_init(self) \ + ((self)->size = 0, (self)->capacity = 0, (self)->contents = NULL) + +/// Create an empty array. +#define array_new() \ + { NULL, 0, 0 } + +/// Get a pointer to the element at a given `index` in the array. +#define array_get(self, _index) \ + (assert((uint32_t)(_index) < (self)->size), &(self)->contents[_index]) + +/// Get a pointer to the first element in the array. +#define array_front(self) array_get(self, 0) + +/// Get a pointer to the last element in the array. +#define array_back(self) array_get(self, (self)->size - 1) + +/// Clear the array, setting its size to zero. Note that this does not free any +/// memory allocated for the array's contents. +#define array_clear(self) ((self)->size = 0) + +/// Reserve `new_capacity` elements of space in the array. If `new_capacity` is +/// less than the array's current capacity, this function has no effect. +#define array_reserve(self, new_capacity) \ + _array__reserve((Array *)(self), array_elem_size(self), new_capacity) + +/// Free any memory allocated for this array. Note that this does not free any +/// memory allocated for the array's contents. +#define array_delete(self) _array__delete((Array *)(self)) + +/// Push a new `element` onto the end of the array. +#define array_push(self, element) \ + (_array__grow((Array *)(self), 1, array_elem_size(self)), \ + (self)->contents[(self)->size++] = (element)) + +/// Increase the array's size by `count` elements. +/// New elements are zero-initialized. +#define array_grow_by(self, count) \ + (_array__grow((Array *)(self), count, array_elem_size(self)), \ + memset((self)->contents + (self)->size, 0, (count) * array_elem_size(self)), \ + (self)->size += (count)) + +/// Append all elements from one array to the end of another. +#define array_push_all(self, other) \ + array_extend((self), (other)->size, (other)->contents) + +/// Append `count` elements to the end of the array, reading their values from the +/// `contents` pointer. +#define array_extend(self, count, contents) \ + _array__splice( \ + (Array *)(self), array_elem_size(self), (self)->size, \ + 0, count, contents \ + ) + +/// Remove `old_count` elements from the array starting at the given `index`. At +/// the same index, insert `new_count` new elements, reading their values from the +/// `new_contents` pointer. +#define array_splice(self, _index, old_count, new_count, new_contents) \ + _array__splice( \ + (Array *)(self), array_elem_size(self), _index, \ + old_count, new_count, new_contents \ + ) + +/// Insert one `element` into the array at the given `index`. +#define array_insert(self, _index, element) \ + _array__splice((Array *)(self), array_elem_size(self), _index, 0, 1, &(element)) + +/// Remove one element from the array at the given `index`. +#define array_erase(self, _index) \ + _array__erase((Array *)(self), array_elem_size(self), _index) + +/// Pop the last element off the array, returning the element by value. +#define array_pop(self) ((self)->contents[--(self)->size]) + +/// Assign the contents of one array to another, reallocating if necessary. +#define array_assign(self, other) \ + _array__assign((Array *)(self), (const Array *)(other), array_elem_size(self)) + +/// Swap one array with another +#define array_swap(self, other) \ + _array__swap((Array *)(self), (Array *)(other)) + +/// Get the size of the array contents +#define array_elem_size(self) (sizeof *(self)->contents) + +/// Search a sorted array for a given `needle` value, using the given `compare` +/// callback to determine the order. +/// +/// If an existing element is found to be equal to `needle`, then the `index` +/// out-parameter is set to the existing value's index, and the `exists` +/// out-parameter is set to true. Otherwise, `index` is set to an index where +/// `needle` should be inserted in order to preserve the sorting, and `exists` +/// is set to false. +#define array_search_sorted_with(self, compare, needle, _index, _exists) \ + _array__search_sorted(self, 0, compare, , needle, _index, _exists) + +/// Search a sorted array for a given `needle` value, using integer comparisons +/// of a given struct field (specified with a leading dot) to determine the order. +/// +/// See also `array_search_sorted_with`. +#define array_search_sorted_by(self, field, needle, _index, _exists) \ + _array__search_sorted(self, 0, _compare_int, field, needle, _index, _exists) + +/// Insert a given `value` into a sorted array, using the given `compare` +/// callback to determine the order. +#define array_insert_sorted_with(self, compare, value) \ + do { \ + unsigned _index, _exists; \ + array_search_sorted_with(self, compare, &(value), &_index, &_exists); \ + if (!_exists) array_insert(self, _index, value); \ + } while (0) + +/// Insert a given `value` into a sorted array, using integer comparisons of +/// a given struct field (specified with a leading dot) to determine the order. +/// +/// See also `array_search_sorted_by`. +#define array_insert_sorted_by(self, field, value) \ + do { \ + unsigned _index, _exists; \ + array_search_sorted_by(self, field, (value) field, &_index, &_exists); \ + if (!_exists) array_insert(self, _index, value); \ + } while (0) + +// Private + +typedef Array(void) Array; + +/// This is not what you're looking for, see `array_delete`. +static inline void _array__delete(Array *self) { + if (self->contents) { + ts_free(self->contents); + self->contents = NULL; + self->size = 0; + self->capacity = 0; + } +} + +/// This is not what you're looking for, see `array_erase`. +static inline void _array__erase(Array *self, size_t element_size, + uint32_t index) { + assert(index < self->size); + char *contents = (char *)self->contents; + memmove(contents + index * element_size, contents + (index + 1) * element_size, + (self->size - index - 1) * element_size); + self->size--; +} + +/// This is not what you're looking for, see `array_reserve`. +static inline void _array__reserve(Array *self, size_t element_size, uint32_t new_capacity) { + if (new_capacity > self->capacity) { + if (self->contents) { + self->contents = ts_realloc(self->contents, new_capacity * element_size); + } else { + self->contents = ts_malloc(new_capacity * element_size); + } + self->capacity = new_capacity; + } +} + +/// This is not what you're looking for, see `array_assign`. +static inline void _array__assign(Array *self, const Array *other, size_t element_size) { + _array__reserve(self, element_size, other->size); + self->size = other->size; + memcpy(self->contents, other->contents, self->size * element_size); +} + +/// This is not what you're looking for, see `array_swap`. +static inline void _array__swap(Array *self, Array *other) { + Array swap = *other; + *other = *self; + *self = swap; +} + +/// This is not what you're looking for, see `array_push` or `array_grow_by`. +static inline void _array__grow(Array *self, uint32_t count, size_t element_size) { + uint32_t new_size = self->size + count; + if (new_size > self->capacity) { + uint32_t new_capacity = self->capacity * 2; + if (new_capacity < 8) new_capacity = 8; + if (new_capacity < new_size) new_capacity = new_size; + _array__reserve(self, element_size, new_capacity); + } +} + +/// This is not what you're looking for, see `array_splice`. +static inline void _array__splice(Array *self, size_t element_size, + uint32_t index, uint32_t old_count, + uint32_t new_count, const void *elements) { + uint32_t new_size = self->size + new_count - old_count; + uint32_t old_end = index + old_count; + uint32_t new_end = index + new_count; + assert(old_end <= self->size); + + _array__reserve(self, element_size, new_size); + + char *contents = (char *)self->contents; + if (self->size > old_end) { + memmove( + contents + new_end * element_size, + contents + old_end * element_size, + (self->size - old_end) * element_size + ); + } + if (new_count > 0) { + if (elements) { + memcpy( + (contents + index * element_size), + elements, + new_count * element_size + ); + } else { + memset( + (contents + index * element_size), + 0, + new_count * element_size + ); + } + } + self->size += new_count - old_count; +} + +/// A binary search routine, based on Rust's `std::slice::binary_search_by`. +/// This is not what you're looking for, see `array_search_sorted_with` or `array_search_sorted_by`. +#define _array__search_sorted(self, start, compare, suffix, needle, _index, _exists) \ + do { \ + *(_index) = start; \ + *(_exists) = false; \ + uint32_t size = (self)->size - *(_index); \ + if (size == 0) break; \ + int comparison; \ + while (size > 1) { \ + uint32_t half_size = size / 2; \ + uint32_t mid_index = *(_index) + half_size; \ + comparison = compare(&((self)->contents[mid_index] suffix), (needle)); \ + if (comparison <= 0) *(_index) = mid_index; \ + size -= half_size; \ + } \ + comparison = compare(&((self)->contents[*(_index)] suffix), (needle)); \ + if (comparison == 0) *(_exists) = true; \ + else if (comparison < 0) *(_index) += 1; \ + } while (0) + +/// Helper macro for the `_sorted_by` routines below. This takes the left (existing) +/// parameter by reference in order to work with the generic sorting function above. +#define _compare_int(a, b) ((int)*(a) - (int)(b)) + +#ifdef _MSC_VER +#pragma warning(default : 4101) +#elif defined(__GNUC__) || defined(__clang__) +#pragma GCC diagnostic pop +#endif + +#ifdef __cplusplus +} +#endif + +#endif // TREE_SITTER_ARRAY_H_ diff --git a/tree-sitter-djot-inline/src/tree_sitter/parser.h b/tree-sitter-djot-inline/src/tree_sitter/parser.h new file mode 100644 index 0000000..17b4fde --- /dev/null +++ b/tree-sitter-djot-inline/src/tree_sitter/parser.h @@ -0,0 +1,230 @@ +#ifndef TREE_SITTER_PARSER_H_ +#define TREE_SITTER_PARSER_H_ + +#ifdef __cplusplus +extern "C" { +#endif + +#include +#include +#include + +#define ts_builtin_sym_error ((TSSymbol)-1) +#define ts_builtin_sym_end 0 +#define TREE_SITTER_SERIALIZATION_BUFFER_SIZE 1024 + +#ifndef TREE_SITTER_API_H_ +typedef uint16_t TSStateId; +typedef uint16_t TSSymbol; +typedef uint16_t TSFieldId; +typedef struct TSLanguage TSLanguage; +#endif + +typedef struct { + TSFieldId field_id; + uint8_t child_index; + bool inherited; +} TSFieldMapEntry; + +typedef struct { + uint16_t index; + uint16_t length; +} TSFieldMapSlice; + +typedef struct { + bool visible; + bool named; + bool supertype; +} TSSymbolMetadata; + +typedef struct TSLexer TSLexer; + +struct TSLexer { + int32_t lookahead; + TSSymbol result_symbol; + void (*advance)(TSLexer *, bool); + void (*mark_end)(TSLexer *); + uint32_t (*get_column)(TSLexer *); + bool (*is_at_included_range_start)(const TSLexer *); + bool (*eof)(const TSLexer *); +}; + +typedef enum { + TSParseActionTypeShift, + TSParseActionTypeReduce, + TSParseActionTypeAccept, + TSParseActionTypeRecover, +} TSParseActionType; + +typedef union { + struct { + uint8_t type; + TSStateId state; + bool extra; + bool repetition; + } shift; + struct { + uint8_t type; + uint8_t child_count; + TSSymbol symbol; + int16_t dynamic_precedence; + uint16_t production_id; + } reduce; + uint8_t type; +} TSParseAction; + +typedef struct { + uint16_t lex_state; + uint16_t external_lex_state; +} TSLexMode; + +typedef union { + TSParseAction action; + struct { + uint8_t count; + bool reusable; + } entry; +} TSParseActionEntry; + +struct TSLanguage { + uint32_t version; + uint32_t symbol_count; + uint32_t alias_count; + uint32_t token_count; + uint32_t external_token_count; + uint32_t state_count; + uint32_t large_state_count; + uint32_t production_id_count; + uint32_t field_count; + uint16_t max_alias_sequence_length; + const uint16_t *parse_table; + const uint16_t *small_parse_table; + const uint32_t *small_parse_table_map; + const TSParseActionEntry *parse_actions; + const char * const *symbol_names; + const char * const *field_names; + const TSFieldMapSlice *field_map_slices; + const TSFieldMapEntry *field_map_entries; + const TSSymbolMetadata *symbol_metadata; + const TSSymbol *public_symbol_map; + const uint16_t *alias_map; + const TSSymbol *alias_sequences; + const TSLexMode *lex_modes; + bool (*lex_fn)(TSLexer *, TSStateId); + bool (*keyword_lex_fn)(TSLexer *, TSStateId); + TSSymbol keyword_capture_token; + struct { + const bool *states; + const TSSymbol *symbol_map; + void *(*create)(void); + void (*destroy)(void *); + bool (*scan)(void *, TSLexer *, const bool *symbol_whitelist); + unsigned (*serialize)(void *, char *); + void (*deserialize)(void *, const char *, unsigned); + } external_scanner; + const TSStateId *primary_state_ids; +}; + +/* + * Lexer Macros + */ + +#ifdef _MSC_VER +#define UNUSED __pragma(warning(suppress : 4101)) +#else +#define UNUSED __attribute__((unused)) +#endif + +#define START_LEXER() \ + bool result = false; \ + bool skip = false; \ + UNUSED \ + bool eof = false; \ + int32_t lookahead; \ + goto start; \ + next_state: \ + lexer->advance(lexer, skip); \ + start: \ + skip = false; \ + lookahead = lexer->lookahead; + +#define ADVANCE(state_value) \ + { \ + state = state_value; \ + goto next_state; \ + } + +#define SKIP(state_value) \ + { \ + skip = true; \ + state = state_value; \ + goto next_state; \ + } + +#define ACCEPT_TOKEN(symbol_value) \ + result = true; \ + lexer->result_symbol = symbol_value; \ + lexer->mark_end(lexer); + +#define END_STATE() return result; + +/* + * Parse Table Macros + */ + +#define SMALL_STATE(id) ((id) - LARGE_STATE_COUNT) + +#define STATE(id) id + +#define ACTIONS(id) id + +#define SHIFT(state_value) \ + {{ \ + .shift = { \ + .type = TSParseActionTypeShift, \ + .state = (state_value) \ + } \ + }} + +#define SHIFT_REPEAT(state_value) \ + {{ \ + .shift = { \ + .type = TSParseActionTypeShift, \ + .state = (state_value), \ + .repetition = true \ + } \ + }} + +#define SHIFT_EXTRA() \ + {{ \ + .shift = { \ + .type = TSParseActionTypeShift, \ + .extra = true \ + } \ + }} + +#define REDUCE(symbol_val, child_count_val, ...) \ + {{ \ + .reduce = { \ + .type = TSParseActionTypeReduce, \ + .symbol = symbol_val, \ + .child_count = child_count_val, \ + __VA_ARGS__ \ + }, \ + }} + +#define RECOVER() \ + {{ \ + .type = TSParseActionTypeRecover \ + }} + +#define ACCEPT_INPUT() \ + {{ \ + .type = TSParseActionTypeAccept \ + }} + +#ifdef __cplusplus +} +#endif + +#endif // TREE_SITTER_PARSER_H_ diff --git a/tree-sitter-djot-inline/test/corpus/syntax.txt b/tree-sitter-djot-inline/test/corpus/syntax.txt new file mode 100644 index 0000000..cae7602 --- /dev/null +++ b/tree-sitter-djot-inline/test/corpus/syntax.txt @@ -0,0 +1,889 @@ +=============================================================================== +Emphasis +=============================================================================== +With _em_ + +------------------------------------------------------------------------------- + +(inline + (emphasis + (emphasis_begin) + (content) + (emphasis_end))) + +=============================================================================== +Verbatim: single +=============================================================================== +Simple `verbatim` here + +------------------------------------------------------------------------------- + +(document + (paragraph + (verbatim + (verbatim_marker_begin) + (content) + (verbatim_marker_end)))) + +=============================================================================== +Verbatim: double with single inside +=============================================================================== +``verbatim with a backtick ` characters`` + +------------------------------------------------------------------------------- + +(document + (paragraph + (verbatim + (verbatim_marker_begin) + (content) + (verbatim_marker_end)))) + +=============================================================================== +Verbatim: with triple inside +=============================================================================== +`verbatim with three backtick ``` characters` + +------------------------------------------------------------------------------- + +(document + (paragraph + (verbatim + (verbatim_marker_begin) + (content) + (verbatim_marker_end)))) + +=============================================================================== +Verbatim: newline closes +=============================================================================== +`verbatim + +------------------------------------------------------------------------------- + +(document + (paragraph + (verbatim + (verbatim_marker_begin) + (content) + (verbatim_marker_end)))) + +=============================================================================== +Verbatim: can contain newlines +=============================================================================== +`verbatim +with +newlines` + +trailing + +------------------------------------------------------------------------------- + +(document + (paragraph + (verbatim + (verbatim_marker_begin) + (content) + (verbatim_marker_end))) + (paragraph)) + + +=============================================================================== +Verbatim: multiple +=============================================================================== +`x` `y` + +------------------------------------------------------------------------------- + +(document + (paragraph + (verbatim + (verbatim_marker_begin) + (content) + (verbatim_marker_end)) + (verbatim + (verbatim_marker_begin) + (content) + (verbatim_marker_end)))) + +=============================================================================== +Verbatim: with hash +=============================================================================== +Don't consume `#` in heading parser code + +------------------------------------------------------------------------------- + +(document + (paragraph + (verbatim + (verbatim_marker_begin) + (content) + (verbatim_marker_end)))) + +=============================================================================== +Paragraph: todo note fixme +=============================================================================== +Higlight TODO NOTE and FIXME + +------------------------------------------------------------------------------- + +(document + (paragraph (todo) (note) (fixme))) + +=============================================================================== +Smart punctuation +=============================================================================== + +Ellipsis... + +Em---dash +Eh--dash + +Some{"quotes"} be{'here'}yo + + \"Straight\" \'quotes\' + +------------------------------------------------------------------------------- + +(document + (paragraph + (ellipsis)) + (paragraph + (em_dash) + (en_dash)) + (paragraph + (quotation_marks) + (quotation_marks) + (quotation_marks) + (quotation_marks)) + (paragraph + (quotation_marks) + (quotation_marks) + (quotation_marks) + (quotation_marks))) + +=============================================================================== +Backslash escape +=============================================================================== + +No \_emphasis\_ + +No \_strong\_ + +No \ + +Regular \.\.\. dots + +Inside _x\_y_ + +No \{+insert\*} + +\> no quote + +------------------------------------------------------------------------------- + +(document + (paragraph (backslash_escape) (backslash_escape)) + (paragraph (backslash_escape) (backslash_escape)) + (paragraph (backslash_escape)) + (paragraph (backslash_escape) (backslash_escape) (backslash_escape)) + (paragraph (emphasis (emphasis_begin) (content (backslash_escape)) (emphasis_end))) + (paragraph (backslash_escape) (backslash_escape)) + (paragraph (backslash_escape))) + +=============================================================================== +Image: inline +=============================================================================== +![descr](/url) + +------------------------------------------------------------------------------- + +(document + (paragraph + (inline_image + (image_description) + (inline_link_destination)))) + +=============================================================================== +Image: empty inline +=============================================================================== +![](/url) + +------------------------------------------------------------------------------- + +(document + (paragraph + (inline_image + (inline_link_destination)))) + +=============================================================================== +Image: collapsed reference link +=============================================================================== +![img][] + +------------------------------------------------------------------------------- + +(document + (paragraph + (collapsed_reference_image + (image_description)))) + +=============================================================================== +Image: full reference +=============================================================================== +![descr][ref] + +------------------------------------------------------------------------------- + +(document + (paragraph + (full_reference_image + (image_description) + (link_label)))) + +=============================================================================== +Emphasis +=============================================================================== +With _emphasis_ here + +------------------------------------------------------------------------------- + +(document + (paragraph + (emphasis (emphasis_begin) (content) (emphasis_end)))) + +=============================================================================== +Strong +=============================================================================== +With *strong* here + +------------------------------------------------------------------------------- + +(document + (paragraph + (strong (strong_begin) (content) (strong_end)))) + +=============================================================================== +Emphasis and strong +=============================================================================== +With _*strong* emphasis_ here + +With *_emphasis_ strong* here + +------------------------------------------------------------------------------- + +(document + (paragraph + (emphasis + (emphasis_begin) + (content (strong (strong_begin) (content) (strong_end))) + (emphasis_end))) + (paragraph + (strong + (strong_begin) + (content (emphasis (emphasis_begin) (content) (emphasis_end))) + (strong_end)))) + +=============================================================================== +Emphasis and strong two chars +=============================================================================== +*bc a* +_bc a_ + +------------------------------------------------------------------------------- + +(document + (paragraph + (strong + (strong_begin) + (content) + (strong_end)) + (emphasis + (emphasis_begin) + (content) + (emphasis_end)))) + +=============================================================================== +Emphasis and strong with newlines +=============================================================================== +*a +b* +_a +b_ + +------------------------------------------------------------------------------- + +(document + (paragraph + (strong + (strong_begin) + (content) + (strong_end)) + (emphasis + (emphasis_begin) + (content) + (emphasis_end)))) + +=============================================================================== +Emphasis: various weird tests +=============================================================================== +_a b c_ + +_a b_ + +_a_ + +_a +b c_ + +_ai +b c_ + +_a +b +c_ + +_a +b_ + +_ab +cd_ + +_ab +x +cd_ + +------------------------------------------------------------------------------- + +(document + (paragraph (emphasis (emphasis_begin) (content) (emphasis_end))) + (paragraph (emphasis (emphasis_begin) (content) (emphasis_end))) + (paragraph (emphasis (emphasis_begin) (content) (emphasis_end))) + (paragraph (emphasis (emphasis_begin) (content) (emphasis_end))) + (paragraph (emphasis (emphasis_begin) (content) (emphasis_end))) + (paragraph (emphasis (emphasis_begin) (content) (emphasis_end))) + (paragraph (emphasis (emphasis_begin) (content) (emphasis_end))) + (paragraph (emphasis (emphasis_begin) (content) (emphasis_end))) + (paragraph (emphasis (emphasis_begin) (content) (emphasis_end)))) + +=============================================================================== +Superscipt: various weird tests +=============================================================================== +^a b c^ + +^a b^ + +^a^ + +^a +b c^ + +^ai +b c^ + +^a +b +c^ + +^a +b^ + +^ab +cd^ + +^ab +x +cd^ + +------------------------------------------------------------------------------- + +(document + (paragraph (superscript (content))) + (paragraph (superscript (content))) + (paragraph (superscript (content))) + (paragraph (superscript (content))) + (paragraph (superscript (content))) + (paragraph (superscript (content))) + (paragraph (superscript (content))) + (paragraph (superscript (content))) + (paragraph (superscript (content)))) + +=============================================================================== +Emphasis: nested +=============================================================================== +With __nested_ emphasis_ + +------------------------------------------------------------------------------- + +(document + (paragraph + (emphasis + (emphasis_begin) + (content (emphasis (emphasis_begin) (content) (emphasis_end))) + (emphasis_end)))) + +=============================================================================== +Emphasis: forced despite spaces +=============================================================================== +{_yes_} + +{_ yes _} + +_yes _} + +{_ yes_} + +------------------------------------------------------------------------------- + +(document + (paragraph (emphasis (emphasis_begin) (content) (emphasis_end))) + (paragraph (emphasis (emphasis_begin) (content) (emphasis_end))) + (paragraph (emphasis (emphasis_begin) (content) (emphasis_end))) + (paragraph (emphasis (emphasis_begin) (content) (emphasis_end)))) + +=============================================================================== +Strong: forced despite spaces +=============================================================================== +{*yes*} + +*yes *} + +{* yes* + +{* yes *} + +------------------------------------------------------------------------------- + +(document + (paragraph (strong (strong_begin) (content) (strong_end))) + (paragraph (strong (strong_begin) (content) (strong_end))) + (paragraph (strong (strong_begin) (content) (strong_end))) + (paragraph (strong (strong_begin) (content) (strong_end)))) + +=============================================================================== +Subscript +=============================================================================== +~sub~ + +{~many sub~} + +------------------------------------------------------------------------------- + +(document + (paragraph (subscript (content))) + (paragraph (subscript (content)))) + +=============================================================================== +Superscript +=============================================================================== +^sup^ + +{^many sup^} + +------------------------------------------------------------------------------- + +(document + (paragraph (superscript (content))) + (paragraph (superscript (content)))) + +=============================================================================== +Highlighted +=============================================================================== +With {=mark=} here + +------------------------------------------------------------------------------- + +(document + (paragraph + (highlighted (content)))) + +=============================================================================== +Insert +=============================================================================== +With {+insert+} here + +------------------------------------------------------------------------------- + +(document + (paragraph + (insert (content)))) + +=============================================================================== +Delete +=============================================================================== +With {-delete-} here + +------------------------------------------------------------------------------- + +(document + (paragraph + (delete (content)))) + +=============================================================================== +Inline with newlines +=============================================================================== +{=a +b=} + +{+a +b+} + +{-a +b-} + +^a +b^ + +~a +b~ + +------------------------------------------------------------------------------- + +(document + (paragraph + (highlighted + (content))) + (paragraph + (insert + (content))) + (paragraph + (delete + (content))) + (paragraph + (superscript + (content))) + (paragraph + (subscript + (content)))) + +=============================================================================== +Hard line break +=============================================================================== +With \ +break + +------------------------------------------------------------------------------- + +(document + (paragraph + (hard_line_break))) + +=============================================================================== +Symbol +=============================================================================== +With :wink: here + +------------------------------------------------------------------------------- + +(document + (paragraph + (symbol))) + +=============================================================================== +Link: inline +=============================================================================== +With [link](/url) + +------------------------------------------------------------------------------- + +(document + (paragraph + (inline_link + (link_text) + (inline_link_destination)))) + +=============================================================================== +Link: with newline +=============================================================================== +With [link +newline](/url) + +------------------------------------------------------------------------------- + +(document + (paragraph + (inline_link + (link_text) + (inline_link_destination)))) + +=============================================================================== +Link: begin +=============================================================================== +[link](/url) + +------------------------------------------------------------------------------- + +(document + (paragraph + (inline_link + (link_text) + (inline_link_destination)))) + +=============================================================================== +Link: collapsed reference link +=============================================================================== +With [a reference][] + +------------------------------------------------------------------------------- + +(document + (paragraph + (collapsed_reference_link + (link_text)))) + +=============================================================================== +Link: full reference single +=============================================================================== +With [a reference][ref] + +------------------------------------------------------------------------------- + +(document + (paragraph + (full_reference_link + (link_text) + (link_label)))) + +=============================================================================== +Link: full reference +=============================================================================== +With [a reference][ref] + +[ref]: /url + +------------------------------------------------------------------------------- + +(document + (paragraph + (full_reference_link + (link_text) + (link_label))) + (link_reference_definition + (link_label) + (link_destination))) + +=============================================================================== +Inline attribute: mixed +=============================================================================== +text{.one .two #id author="with spaces"} + +------------------------------------------------------------------------------- + +(document + (paragraph + (inline_attribute + (args + (class) + (class) + (identifier) + (key_value + (key) + (value)))))) + +=============================================================================== +Inline attribute: casing +=============================================================================== +text{.snake_case .cebab-case} + +------------------------------------------------------------------------------- + +(document + (paragraph + (inline_attribute + (args + (class) + (class))))) + +=============================================================================== +Inline attribute: key casing +=============================================================================== +text{snake_case=2 kebab-case=3} + +------------------------------------------------------------------------------- + +(document + (paragraph + (inline_attribute + (args + (key_value + (key) + (value)) + (key_value + (key) + (value)))))) + +=============================================================================== +Inline attribute: surrounding spaces +=============================================================================== +text{ .class } + +------------------------------------------------------------------------------- + +(document + (paragraph + (inline_attribute + (args + (class))))) + +=============================================================================== +Inline attribute: with newlines +=============================================================================== +text{.one +.two +#three} + +------------------------------------------------------------------------------- + +(document + (paragraph + (inline_attribute + (args + (class) + (class) + (identifier))))) + +=============================================================================== +Inline attribute: with comment +=============================================================================== +text{#ident % later we'll add a class %} + +------------------------------------------------------------------------------- + +(document + (paragraph + (inline_attribute + (args + (identifier) + (comment + (content)))))) + +=============================================================================== +Inline attribute: comment +=============================================================================== +text{% +some text here +%} + +------------------------------------------------------------------------------- + +(document + (paragraph + (inline_attribute + (args + (comment + (content)))))) + +=============================================================================== +Inline attribute: standalone comment +=============================================================================== +Foo bar {% This is a comment, spanning +multiple lines %} baz. + +------------------------------------------------------------------------------- + +(document + (paragraph + (comment + (content)))) + +=============================================================================== +Inline attribute: comment escape % +=============================================================================== +Before {% escape \% %} + +------------------------------------------------------------------------------- + +(document + (paragraph + (comment + (content + (backslash_escape))))) + +=============================================================================== +Inline attribute: mixed comment escape % +=============================================================================== +Before{#id % escape \% %} + +------------------------------------------------------------------------------- + +(document + (paragraph + (inline_attribute + (args + (identifier) + (comment + (content + (backslash_escape))))))) + +=============================================================================== +Span +=============================================================================== +One [two three]{.class +#id} + +------------------------------------------------------------------------------- + +(document + (paragraph + (span + (inline_attribute + (args + (class) + (identifier)))))) + +=============================================================================== +Autolink +=============================================================================== +With link + +------------------------------------------------------------------------------- + +(document + (paragraph + (autolink))) + +=============================================================================== +Footnote: reference +=============================================================================== + +Here's a ref.[^foo] + +------------------------------------------------------------------------------- + +(document + (paragraph + (footnote_reference + (footnote_marker_begin) + (reference_label) + (footnote_marker_end)))) + +=============================================================================== +Raw inline +=============================================================================== +``{=html} + +------------------------------------------------------------------------------- + +(document + (paragraph + (raw_inline + (raw_inline_marker_begin) + (content) + (raw_inline_marker_end) + (raw_inline_attribute + (language))))) + +=============================================================================== +Math +=============================================================================== +$`1 + 2` + +------------------------------------------------------------------------------- + +(document + (paragraph + (math + (math_marker) + (math_marker_begin) + (content) + (math_marker_end)))) + From f38156a1ea0e9e5fb1ad5840f2dd2ffa3fd10474 Mon Sep 17 00:00:00 2001 From: Jonas Hietala Date: Thu, 22 Aug 2024 08:19:17 +0200 Subject: [PATCH 04/46] Fix div inside blockquote --- tree-sitter-djot/grammar.js | 41 +- tree-sitter-djot/queries/injections.scm | 2 +- tree-sitter-djot/src/grammar.json | 75 +- tree-sitter-djot/src/node-types.json | 24 +- tree-sitter-djot/src/parser.c | 29994 +++++++++++----------- tree-sitter-djot/src/scanner.c | 2 +- tree-sitter-djot/test/corpus/syntax.txt | 38 + 7 files changed, 15690 insertions(+), 14486 deletions(-) diff --git a/tree-sitter-djot/grammar.js b/tree-sitter-djot/grammar.js index 3309732..fd50761 100644 --- a/tree-sitter-djot/grammar.js +++ b/tree-sitter-djot/grammar.js @@ -28,8 +28,11 @@ module.exports = grammar({ // A section is only valid on the top level, or nested inside other sections. // Otherwise standalone headings are used (inside divs for example). _block_with_section: ($) => choice($.section, $._block_element, $._newline), - _block_with_heading: ($) => choice($.heading, $._block_element, $._newline), - + _block_with_heading: ($) => + seq( + optional($._block_quote_continuation), + choice($.heading, $._block_element, $._newline), + ), _block_element: ($) => choice( $.list, @@ -401,7 +404,9 @@ module.exports = grammar({ ), _block_quote_prefix: ($) => prec.left( - repeat1(alias($._block_quote_continuation, $.block_quote_marker)), + repeat1( + prec.left(alias($._block_quote_continuation, $.block_quote_marker)), + ), ), link_reference_definition: ($) => @@ -463,8 +468,11 @@ module.exports = grammar({ _paragraph_content: ($) => // Newlines inside inline blocks should be of the `_newline_inline` type. seq( + optional($._block_quote_prefix), $._inline, - repeat(seq($._newline_inline, $._inline)), + repeat( + seq($._newline_inline, optional($._block_quote_prefix), $._inline), + ), // Last newline can be of the normal variant to signal the end of the paragraph. $._eof_or_newline, ), @@ -482,30 +490,7 @@ module.exports = grammar({ _inline: ($) => prec.left(repeat1(choice(/[^\n]/, $._symbol_fallback))), _inline_line: ($) => seq($._inline, $._eof_or_newline), - _symbol_fallback: ($) => - prec.dynamic( - -1000, - choice( - // "![", - // "*", - "[", - // "[^", - // "^", - // "_", - "{", - // "{*", - // "{+", - "{-", - // "{=", - // "{^", - // "{_", - // "{~", - "|", - // "~", - // "<", - // "$", - ), - ), + _symbol_fallback: ($) => prec.dynamic(-1000, choice("[", "{", "{-", "|")), backslash_escape: (_) => /\\[^\\\r\n]/, diff --git a/tree-sitter-djot/queries/injections.scm b/tree-sitter-djot/queries/injections.scm index 6463fdf..bebffd9 100644 --- a/tree-sitter-djot/queries/injections.scm +++ b/tree-sitter-djot/queries/injections.scm @@ -15,4 +15,4 @@ ((link_label) @injection.content (#set! injection.language "djot_inline")) ((paragraph) @injection.content (#set! injection.language "djot_inline")) ((table_caption (content) @injection.content (#set! injection.language "djot_inline"))) -; TODO heading content +((heading (content) @injection.content (#set! injection.language "djot_inline"))) diff --git a/tree-sitter-djot/src/grammar.json b/tree-sitter-djot/src/grammar.json index d74d044..e28a574 100644 --- a/tree-sitter-djot/src/grammar.json +++ b/tree-sitter-djot/src/grammar.json @@ -91,19 +91,36 @@ ] }, "_block_with_heading": { - "type": "CHOICE", + "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "heading" - }, - { - "type": "SYMBOL", - "name": "_block_element" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_block_quote_continuation" + }, + { + "type": "BLANK" + } + ] }, { - "type": "SYMBOL", - "name": "_newline" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "heading" + }, + { + "type": "SYMBOL", + "name": "_block_element" + }, + { + "type": "SYMBOL", + "name": "_newline" + } + ] } ] }, @@ -1922,13 +1939,17 @@ "content": { "type": "REPEAT1", "content": { - "type": "ALIAS", + "type": "PREC_LEFT", + "value": 0, "content": { - "type": "SYMBOL", - "name": "_block_quote_continuation" - }, - "named": true, - "value": "block_quote_marker" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_block_quote_continuation" + }, + "named": true, + "value": "block_quote_marker" + } } } }, @@ -2146,6 +2167,18 @@ "_paragraph_content": { "type": "SEQ", "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_block_quote_prefix" + }, + { + "type": "BLANK" + } + ] + }, { "type": "SYMBOL", "name": "_inline" @@ -2159,6 +2192,18 @@ "type": "SYMBOL", "name": "_newline_inline" }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_block_quote_prefix" + }, + { + "type": "BLANK" + } + ] + }, { "type": "SYMBOL", "name": "_inline" diff --git a/tree-sitter-djot/src/node-types.json b/tree-sitter-djot/src/node-types.json index 94fa9a7..c22c30a 100644 --- a/tree-sitter-djot/src/node-types.json +++ b/tree-sitter-djot/src/node-types.json @@ -759,7 +759,17 @@ { "type": "paragraph", "named": true, - "fields": {} + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "block_quote_marker", + "named": true + } + ] + } }, { "type": "raw_block", @@ -1001,7 +1011,17 @@ { "type": "term", "named": true, - "fields": {} + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "block_quote_marker", + "named": true + } + ] + } }, { "type": "thematic_break", diff --git a/tree-sitter-djot/src/parser.c b/tree-sitter-djot/src/parser.c index a8602c6..05b1e05 100644 --- a/tree-sitter-djot/src/parser.c +++ b/tree-sitter-djot/src/parser.c @@ -5,15 +5,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 1050 -#define LARGE_STATE_COUNT 60 +#define STATE_COUNT 1081 +#define LARGE_STATE_COUNT 64 #define SYMBOL_COUNT 202 #define ALIAS_COUNT 9 #define TOKEN_COUNT 77 #define EXTERNAL_TOKEN_COUNT 47 #define FIELD_COUNT 0 #define MAX_ALIAS_SEQUENCE_LENGTH 8 -#define PRODUCTION_ID_COUNT 14 +#define PRODUCTION_ID_COUNT 15 enum ts_symbol_identifiers { anon_sym_LBRACK = 1, @@ -295,7 +295,7 @@ static const char * const ts_symbol_names[] = { [sym__list_item_end] = "_list_item_end", [sym__close_paragraph] = "_close_paragraph", [sym__block_quote_begin] = "block_quote_marker", - [sym__block_quote_continuation] = "block_quote_marker", + [sym__block_quote_continuation] = "_block_quote_continuation", [sym__thematic_break_dash] = "_thematic_break_dash", [sym__thematic_break_star] = "_thematic_break_star", [sym__footnote_begin] = "footnote_marker_begin", @@ -509,7 +509,7 @@ static const TSSymbol ts_symbol_map[] = { [sym__list_item_end] = sym__list_item_end, [sym__close_paragraph] = sym__close_paragraph, [sym__block_quote_begin] = sym__block_quote_begin, - [sym__block_quote_continuation] = sym__block_quote_begin, + [sym__block_quote_continuation] = sym__block_quote_continuation, [sym__thematic_break_dash] = sym__thematic_break_dash, [sym__thematic_break_star] = sym__thematic_break_star, [sym__footnote_begin] = sym__footnote_begin, @@ -922,7 +922,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .named = true, }, [sym__block_quote_continuation] = { - .visible = true, + .visible = false, .named = true, }, [sym__thematic_break_dash] = { @@ -1506,44 +1506,47 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { [0] = {0}, [1] = { - [0] = alias_sym_table_header, + [0] = sym__block_quote_begin, }, [2] = { - [0] = alias_sym_paragraph, + [0] = alias_sym_table_header, }, [3] = { - [1] = anon_alias_sym_class, + [0] = alias_sym_paragraph, }, [4] = { - [1] = alias_sym_section_content, + [1] = anon_alias_sym_class, }, [5] = { - [0] = alias_sym_language_marker, + [1] = alias_sym_section_content, }, [6] = { - [1] = sym__heading_content, + [0] = alias_sym_language_marker, }, [7] = { - [1] = alias_sym_args, + [1] = sym__heading_content, }, [8] = { - [2] = sym__heading_content, + [1] = alias_sym_args, }, [9] = { - [0] = alias_sym_raw_block_marker_begin, + [2] = sym__heading_content, }, [10] = { - [3] = alias_sym_definition, + [0] = alias_sym_raw_block_marker_begin, }, [11] = { + [3] = alias_sym_definition, + }, + [12] = { [0] = alias_sym_raw_block_marker_begin, [4] = sym__heading_content, }, - [12] = { + [13] = { [0] = alias_sym_raw_block_marker_begin, [5] = alias_sym_raw_block_marker_end, }, - [13] = { + [14] = { [0] = alias_sym_raw_block_marker_begin, [4] = sym__heading_content, [6] = alias_sym_raw_block_marker_end, @@ -1589,31 +1592,31 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1] = 1, [2] = 2, [3] = 3, - [4] = 4, + [4] = 3, [5] = 5, [6] = 6, - [7] = 6, - [8] = 4, - [9] = 9, - [10] = 5, + [7] = 7, + [8] = 8, + [9] = 6, + [10] = 7, [11] = 11, [12] = 12, - [13] = 12, - [14] = 14, - [15] = 14, - [16] = 12, - [17] = 17, - [18] = 18, + [13] = 13, + [14] = 11, + [15] = 15, + [16] = 16, + [17] = 13, + [18] = 16, [19] = 11, - [20] = 14, + [20] = 13, [21] = 11, - [22] = 12, - [23] = 14, - [24] = 18, - [25] = 11, - [26] = 14, - [27] = 12, - [28] = 11, + [22] = 16, + [23] = 13, + [24] = 16, + [25] = 13, + [26] = 16, + [27] = 11, + [28] = 12, [29] = 29, [30] = 30, [31] = 31, @@ -1640,27 +1643,27 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [52] = 52, [53] = 53, [54] = 54, - [55] = 54, - [56] = 54, - [57] = 54, + [55] = 55, + [56] = 55, + [57] = 55, [58] = 54, - [59] = 59, - [60] = 60, - [61] = 60, - [62] = 60, + [59] = 55, + [60] = 55, + [61] = 54, + [62] = 54, [63] = 63, - [64] = 63, - [65] = 63, - [66] = 66, - [67] = 66, - [68] = 66, - [69] = 69, - [70] = 69, - [71] = 69, - [72] = 72, + [64] = 64, + [65] = 64, + [66] = 64, + [67] = 67, + [68] = 67, + [69] = 67, + [70] = 70, + [71] = 70, + [72] = 70, [73] = 73, - [74] = 74, - [75] = 75, + [74] = 73, + [75] = 73, [76] = 76, [77] = 77, [78] = 78, @@ -1675,61 +1678,61 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [87] = 87, [88] = 88, [89] = 89, - [90] = 86, - [91] = 87, - [92] = 86, - [93] = 89, - [94] = 88, - [95] = 72, - [96] = 73, - [97] = 74, - [98] = 75, - [99] = 76, + [90] = 90, + [91] = 91, + [92] = 92, + [93] = 88, + [94] = 89, + [95] = 88, + [96] = 92, + [97] = 80, + [98] = 90, + [99] = 77, [100] = 77, - [101] = 78, - [102] = 84, - [103] = 79, - [104] = 80, - [105] = 81, - [106] = 82, - [107] = 83, - [108] = 82, - [109] = 83, - [110] = 81, + [101] = 101, + [102] = 101, + [103] = 78, + [104] = 91, + [105] = 86, + [106] = 81, + [107] = 82, + [108] = 83, + [109] = 84, + [110] = 85, [111] = 84, - [112] = 80, - [113] = 79, - [114] = 78, - [115] = 77, - [116] = 76, - [117] = 87, - [118] = 85, - [119] = 75, - [120] = 74, - [121] = 73, - [122] = 72, - [123] = 88, - [124] = 89, - [125] = 125, - [126] = 126, - [127] = 127, - [128] = 128, + [112] = 85, + [113] = 83, + [114] = 82, + [115] = 86, + [116] = 81, + [117] = 80, + [118] = 79, + [119] = 89, + [120] = 78, + [121] = 101, + [122] = 76, + [123] = 79, + [124] = 90, + [125] = 87, + [126] = 91, + [127] = 92, + [128] = 76, [129] = 129, [130] = 130, [131] = 131, [132] = 132, - [133] = 126, + [133] = 133, [134] = 134, [135] = 135, [136] = 136, [137] = 137, - [138] = 138, - [139] = 139, + [138] = 136, + [139] = 135, [140] = 140, [141] = 141, - [142] = 128, - [143] = 143, - [144] = 126, + [142] = 142, + [143] = 141, + [144] = 144, [145] = 145, [146] = 146, [147] = 147, @@ -1737,904 +1740,935 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [149] = 149, [150] = 150, [151] = 151, - [152] = 127, + [152] = 152, [153] = 153, [154] = 154, [155] = 155, - [156] = 156, + [156] = 146, [157] = 157, - [158] = 139, + [158] = 158, [159] = 159, [160] = 160, [161] = 161, - [162] = 146, + [162] = 142, [163] = 163, [164] = 164, [165] = 165, - [166] = 125, + [166] = 166, [167] = 167, - [168] = 168, + [168] = 133, [169] = 169, [170] = 170, - [171] = 170, - [172] = 169, + [171] = 171, + [172] = 145, [173] = 173, - [174] = 167, - [175] = 165, - [176] = 168, - [177] = 163, - [178] = 178, - [179] = 161, - [180] = 159, - [181] = 157, - [182] = 155, - [183] = 153, - [184] = 151, - [185] = 149, - [186] = 147, - [187] = 145, - [188] = 143, - [189] = 141, - [190] = 154, - [191] = 138, - [192] = 192, - [193] = 135, - [194] = 132, - [195] = 173, - [196] = 129, - [197] = 178, - [198] = 198, - [199] = 148, - [200] = 200, - [201] = 201, - [202] = 131, - [203] = 203, - [204] = 134, - [205] = 137, - [206] = 140, - [207] = 160, - [208] = 128, - [209] = 140, - [210] = 125, - [211] = 146, - [212] = 200, - [213] = 148, - [214] = 150, - [215] = 150, - [216] = 156, - [217] = 217, - [218] = 217, - [219] = 127, - [220] = 154, - [221] = 136, - [222] = 156, - [223] = 131, - [224] = 139, - [225] = 160, + [174] = 147, + [175] = 175, + [176] = 176, + [177] = 177, + [178] = 149, + [179] = 151, + [180] = 180, + [181] = 153, + [182] = 170, + [183] = 160, + [184] = 155, + [185] = 157, + [186] = 159, + [187] = 176, + [188] = 130, + [189] = 161, + [190] = 190, + [191] = 163, + [192] = 131, + [193] = 165, + [194] = 194, + [195] = 167, + [196] = 132, + [197] = 140, + [198] = 148, + [199] = 169, + [200] = 171, + [201] = 173, + [202] = 175, + [203] = 144, + [204] = 164, + [205] = 180, + [206] = 206, + [207] = 207, + [208] = 206, + [209] = 209, + [210] = 166, + [211] = 134, + [212] = 194, + [213] = 177, + [214] = 158, + [215] = 129, + [216] = 150, + [217] = 134, + [218] = 166, + [219] = 164, + [220] = 148, + [221] = 140, + [222] = 150, + [223] = 223, + [224] = 132, + [225] = 131, [226] = 226, - [227] = 203, - [228] = 134, - [229] = 164, - [230] = 203, - [231] = 137, - [232] = 168, - [233] = 164, - [234] = 170, - [235] = 198, - [236] = 169, - [237] = 167, - [238] = 165, - [239] = 163, - [240] = 226, - [241] = 161, - [242] = 159, - [243] = 157, - [244] = 155, - [245] = 201, - [246] = 153, - [247] = 151, - [248] = 149, - [249] = 147, - [250] = 145, - [251] = 143, - [252] = 141, - [253] = 138, - [254] = 200, - [255] = 201, - [256] = 135, - [257] = 132, - [258] = 129, - [259] = 178, - [260] = 260, - [261] = 261, - [262] = 262, - [263] = 262, - [264] = 262, - [265] = 262, - [266] = 262, - [267] = 60, - [268] = 63, + [227] = 190, + [228] = 154, + [229] = 130, + [230] = 158, + [231] = 176, + [232] = 160, + [233] = 144, + [234] = 141, + [235] = 177, + [236] = 170, + [237] = 133, + [238] = 136, + [239] = 135, + [240] = 207, + [241] = 142, + [242] = 194, + [243] = 145, + [244] = 147, + [245] = 149, + [246] = 151, + [247] = 153, + [248] = 209, + [249] = 155, + [250] = 157, + [251] = 159, + [252] = 161, + [253] = 163, + [254] = 165, + [255] = 167, + [256] = 169, + [257] = 171, + [258] = 173, + [259] = 175, + [260] = 223, + [261] = 180, + [262] = 207, + [263] = 206, + [264] = 129, + [265] = 226, + [266] = 266, + [267] = 267, + [268] = 268, [269] = 269, - [270] = 270, - [271] = 271, - [272] = 270, - [273] = 270, - [274] = 60, - [275] = 269, - [276] = 269, - [277] = 269, - [278] = 269, - [279] = 270, - [280] = 270, - [281] = 281, - [282] = 281, - [283] = 283, + [270] = 269, + [271] = 269, + [272] = 269, + [273] = 269, + [274] = 274, + [275] = 275, + [276] = 275, + [277] = 274, + [278] = 274, + [279] = 275, + [280] = 275, + [281] = 274, + [282] = 274, + [283] = 275, [284] = 284, - [285] = 281, + [285] = 284, [286] = 284, [287] = 284, - [288] = 281, - [289] = 63, - [290] = 284, - [291] = 284, - [292] = 281, - [293] = 293, + [288] = 284, + [289] = 64, + [290] = 290, + [291] = 64, + [292] = 267, + [293] = 290, [294] = 294, - [295] = 295, - [296] = 294, + [295] = 290, + [296] = 296, [297] = 297, - [298] = 293, - [299] = 299, - [300] = 294, - [301] = 297, + [298] = 294, + [299] = 290, + [300] = 67, + [301] = 301, [302] = 294, - [303] = 303, - [304] = 297, - [305] = 303, - [306] = 306, - [307] = 306, - [308] = 299, - [309] = 295, - [310] = 303, - [311] = 299, - [312] = 295, - [313] = 299, - [314] = 306, - [315] = 299, - [316] = 306, - [317] = 293, - [318] = 295, - [319] = 295, - [320] = 306, - [321] = 297, - [322] = 294, - [323] = 303, - [324] = 297, - [325] = 293, - [326] = 303, - [327] = 66, + [303] = 301, + [304] = 294, + [305] = 301, + [306] = 290, + [307] = 307, + [308] = 301, + [309] = 294, + [310] = 301, + [311] = 311, + [312] = 312, + [313] = 312, + [314] = 312, + [315] = 67, + [316] = 268, + [317] = 317, + [318] = 318, + [319] = 267, + [320] = 311, + [321] = 312, + [322] = 311, + [323] = 307, + [324] = 311, + [325] = 312, + [326] = 311, + [327] = 327, [328] = 328, - [329] = 329, + [329] = 328, [330] = 330, [331] = 331, [332] = 332, - [333] = 333, - [334] = 329, - [335] = 335, - [336] = 329, - [337] = 337, + [333] = 330, + [334] = 334, + [335] = 327, + [336] = 328, + [337] = 331, [338] = 338, - [339] = 338, - [340] = 333, - [341] = 333, - [342] = 338, - [343] = 337, - [344] = 66, - [345] = 335, - [346] = 261, - [347] = 347, - [348] = 335, - [349] = 349, - [350] = 337, - [351] = 331, - [352] = 338, - [353] = 337, - [354] = 335, - [355] = 338, - [356] = 335, - [357] = 337, - [358] = 358, - [359] = 331, - [360] = 333, - [361] = 333, - [362] = 261, - [363] = 363, + [339] = 332, + [340] = 332, + [341] = 268, + [342] = 330, + [343] = 334, + [344] = 327, + [345] = 332, + [346] = 328, + [347] = 327, + [348] = 331, + [349] = 338, + [350] = 338, + [351] = 330, + [352] = 328, + [353] = 331, + [354] = 332, + [355] = 330, + [356] = 327, + [357] = 334, + [358] = 338, + [359] = 334, + [360] = 334, + [361] = 331, + [362] = 362, + [363] = 70, [364] = 364, [365] = 365, - [366] = 364, + [366] = 366, [367] = 367, - [368] = 364, + [368] = 367, [369] = 369, [370] = 370, [371] = 371, [372] = 372, - [373] = 373, - [374] = 369, - [375] = 370, - [376] = 329, - [377] = 363, - [378] = 367, - [379] = 379, - [380] = 363, - [381] = 367, - [382] = 364, - [383] = 369, - [384] = 369, - [385] = 370, - [386] = 370, - [387] = 387, - [388] = 331, - [389] = 370, - [390] = 369, - [391] = 364, - [392] = 363, - [393] = 367, - [394] = 394, - [395] = 363, - [396] = 367, - [397] = 349, + [373] = 367, + [374] = 370, + [375] = 366, + [376] = 70, + [377] = 377, + [378] = 371, + [379] = 370, + [380] = 362, + [381] = 371, + [382] = 372, + [383] = 367, + [384] = 370, + [385] = 362, + [386] = 372, + [387] = 371, + [388] = 366, + [389] = 371, + [390] = 367, + [391] = 391, + [392] = 372, + [393] = 370, + [394] = 372, + [395] = 395, + [396] = 396, + [397] = 395, [398] = 398, - [399] = 398, + [399] = 399, [400] = 400, - [401] = 76, - [402] = 75, - [403] = 403, - [404] = 398, + [401] = 395, + [402] = 396, + [403] = 307, + [404] = 404, [405] = 405, - [406] = 403, - [407] = 398, - [408] = 403, - [409] = 88, - [410] = 89, - [411] = 398, - [412] = 412, - [413] = 413, - [414] = 403, - [415] = 87, - [416] = 403, - [417] = 403, - [418] = 398, - [419] = 403, - [420] = 403, - [421] = 398, - [422] = 403, - [423] = 403, - [424] = 424, - [425] = 398, - [426] = 398, - [427] = 427, - [428] = 398, - [429] = 403, - [430] = 403, - [431] = 424, - [432] = 81, - [433] = 398, - [434] = 82, - [435] = 424, - [436] = 424, - [437] = 398, - [438] = 398, - [439] = 403, - [440] = 398, - [441] = 403, - [442] = 403, - [443] = 398, - [444] = 398, - [445] = 424, - [446] = 446, - [447] = 398, - [448] = 403, - [449] = 403, - [450] = 450, - [451] = 398, - [452] = 403, + [406] = 267, + [407] = 396, + [408] = 408, + [409] = 396, + [410] = 366, + [411] = 362, + [412] = 400, + [413] = 400, + [414] = 414, + [415] = 400, + [416] = 400, + [417] = 396, + [418] = 395, + [419] = 395, + [420] = 420, + [421] = 421, + [422] = 78, + [423] = 421, + [424] = 421, + [425] = 425, + [426] = 425, + [427] = 421, + [428] = 421, + [429] = 425, + [430] = 421, + [431] = 425, + [432] = 421, + [433] = 425, + [434] = 425, + [435] = 421, + [436] = 421, + [437] = 425, + [438] = 425, + [439] = 421, + [440] = 425, + [441] = 421, + [442] = 425, + [443] = 421, + [444] = 444, + [445] = 425, + [446] = 425, + [447] = 447, + [448] = 421, + [449] = 425, + [450] = 91, + [451] = 92, + [452] = 421, [453] = 453, - [454] = 454, - [455] = 455, - [456] = 403, - [457] = 457, - [458] = 398, - [459] = 69, - [460] = 460, - [461] = 89, - [462] = 88, - [463] = 75, - [464] = 76, - [465] = 81, - [466] = 82, - [467] = 467, - [468] = 87, + [454] = 101, + [455] = 425, + [456] = 456, + [457] = 421, + [458] = 421, + [459] = 425, + [460] = 425, + [461] = 461, + [462] = 83, + [463] = 84, + [464] = 464, + [465] = 268, + [466] = 421, + [467] = 425, + [468] = 468, [469] = 469, [470] = 470, - [471] = 471, + [471] = 421, [472] = 472, [473] = 473, - [474] = 474, - [475] = 475, - [476] = 476, - [477] = 477, - [478] = 470, - [479] = 471, - [480] = 480, - [481] = 481, - [482] = 482, - [483] = 483, - [484] = 472, + [474] = 89, + [475] = 425, + [476] = 421, + [477] = 425, + [478] = 83, + [479] = 91, + [480] = 92, + [481] = 84, + [482] = 73, + [483] = 78, + [484] = 101, [485] = 485, [486] = 486, - [487] = 475, - [488] = 488, - [489] = 486, + [487] = 487, + [488] = 89, + [489] = 489, [490] = 490, - [491] = 476, - [492] = 471, + [491] = 491, + [492] = 492, [493] = 493, [494] = 494, - [495] = 480, - [496] = 481, - [497] = 482, - [498] = 483, - [499] = 485, - [500] = 486, + [495] = 495, + [496] = 496, + [497] = 497, + [498] = 498, + [499] = 499, + [500] = 500, [501] = 501, - [502] = 490, - [503] = 69, - [504] = 493, - [505] = 488, - [506] = 477, - [507] = 474, - [508] = 493, - [509] = 494, - [510] = 474, + [502] = 502, + [503] = 503, + [504] = 504, + [505] = 505, + [506] = 506, + [507] = 507, + [508] = 506, + [509] = 506, + [510] = 506, [511] = 511, [512] = 512, - [513] = 470, - [514] = 494, - [515] = 477, - [516] = 477, - [517] = 494, - [518] = 493, - [519] = 490, - [520] = 486, - [521] = 485, + [513] = 513, + [514] = 514, + [515] = 515, + [516] = 516, + [517] = 517, + [518] = 518, + [519] = 519, + [520] = 520, + [521] = 521, [522] = 490, - [523] = 483, - [524] = 482, - [525] = 488, - [526] = 486, - [527] = 481, - [528] = 480, - [529] = 471, - [530] = 476, - [531] = 485, - [532] = 475, - [533] = 483, - [534] = 482, - [535] = 481, - [536] = 480, - [537] = 476, - [538] = 475, - [539] = 472, - [540] = 472, - [541] = 488, - [542] = 470, - [543] = 86, - [544] = 474, - [545] = 545, - [546] = 546, - [547] = 547, - [548] = 548, - [549] = 549, - [550] = 550, - [551] = 488, - [552] = 552, - [553] = 494, - [554] = 477, - [555] = 555, - [556] = 493, - [557] = 72, - [558] = 73, - [559] = 559, - [560] = 74, - [561] = 490, - [562] = 474, - [563] = 563, - [564] = 485, - [565] = 77, - [566] = 483, - [567] = 78, - [568] = 568, - [569] = 482, - [570] = 79, - [571] = 80, - [572] = 481, - [573] = 573, - [574] = 480, - [575] = 83, - [576] = 471, - [577] = 577, - [578] = 578, - [579] = 84, - [580] = 476, - [581] = 581, - [582] = 475, - [583] = 583, - [584] = 470, - [585] = 585, - [586] = 472, - [587] = 85, - [588] = 588, - [589] = 589, - [590] = 349, - [591] = 79, - [592] = 203, - [593] = 125, - [594] = 164, - [595] = 226, - [596] = 596, - [597] = 160, - [598] = 598, - [599] = 139, - [600] = 600, - [601] = 601, - [602] = 156, - [603] = 154, - [604] = 168, - [605] = 349, - [606] = 261, - [607] = 607, - [608] = 150, - [609] = 148, - [610] = 146, - [611] = 126, - [612] = 128, - [613] = 170, - [614] = 169, - [615] = 615, - [616] = 140, - [617] = 137, - [618] = 618, - [619] = 167, - [620] = 165, - [621] = 163, - [622] = 161, - [623] = 349, - [624] = 261, - [625] = 625, - [626] = 134, - [627] = 349, - [628] = 261, - [629] = 131, - [630] = 630, - [631] = 159, - [632] = 632, - [633] = 74, - [634] = 157, - [635] = 155, - [636] = 636, + [523] = 523, + [524] = 524, + [525] = 525, + [526] = 526, + [527] = 527, + [528] = 73, + [529] = 529, + [530] = 530, + [531] = 489, + [532] = 532, + [533] = 533, + [534] = 515, + [535] = 516, + [536] = 517, + [537] = 518, + [538] = 519, + [539] = 520, + [540] = 521, + [541] = 490, + [542] = 523, + [543] = 524, + [544] = 525, + [545] = 526, + [546] = 527, + [547] = 529, + [548] = 530, + [549] = 489, + [550] = 515, + [551] = 516, + [552] = 517, + [553] = 518, + [554] = 519, + [555] = 520, + [556] = 521, + [557] = 490, + [558] = 523, + [559] = 506, + [560] = 524, + [561] = 525, + [562] = 516, + [563] = 527, + [564] = 529, + [565] = 530, + [566] = 515, + [567] = 516, + [568] = 517, + [569] = 518, + [570] = 519, + [571] = 520, + [572] = 521, + [573] = 490, + [574] = 523, + [575] = 524, + [576] = 525, + [577] = 526, + [578] = 527, + [579] = 529, + [580] = 88, + [581] = 530, + [582] = 489, + [583] = 489, + [584] = 530, + [585] = 529, + [586] = 87, + [587] = 527, + [588] = 90, + [589] = 77, + [590] = 526, + [591] = 76, + [592] = 525, + [593] = 524, + [594] = 79, + [595] = 80, + [596] = 518, + [597] = 523, + [598] = 519, + [599] = 81, + [600] = 82, + [601] = 515, + [602] = 520, + [603] = 526, + [604] = 86, + [605] = 605, + [606] = 85, + [607] = 521, + [608] = 517, + [609] = 609, + [610] = 80, + [611] = 177, + [612] = 612, + [613] = 194, + [614] = 612, + [615] = 209, + [616] = 207, + [617] = 617, + [618] = 129, + [619] = 132, + [620] = 206, + [621] = 158, + [622] = 150, + [623] = 133, + [624] = 134, + [625] = 166, + [626] = 164, + [627] = 148, + [628] = 180, + [629] = 175, + [630] = 140, + [631] = 173, + [632] = 171, + [633] = 169, + [634] = 167, + [635] = 165, + [636] = 163, [637] = 637, - [638] = 601, - [639] = 639, - [640] = 261, - [641] = 641, - [642] = 349, - [643] = 643, - [644] = 644, - [645] = 261, - [646] = 127, - [647] = 647, - [648] = 153, - [649] = 151, - [650] = 149, - [651] = 147, - [652] = 145, - [653] = 143, - [654] = 141, - [655] = 138, - [656] = 135, + [638] = 161, + [639] = 159, + [640] = 307, + [641] = 307, + [642] = 267, + [643] = 612, + [644] = 85, + [645] = 86, + [646] = 307, + [647] = 267, + [648] = 648, + [649] = 87, + [650] = 267, + [651] = 307, + [652] = 267, + [653] = 653, + [654] = 654, + [655] = 157, + [656] = 155, [657] = 657, - [658] = 601, - [659] = 596, - [660] = 132, - [661] = 129, - [662] = 84, - [663] = 178, - [664] = 349, - [665] = 200, - [666] = 666, - [667] = 77, - [668] = 78, - [669] = 669, - [670] = 596, - [671] = 261, + [658] = 658, + [659] = 659, + [660] = 153, + [661] = 151, + [662] = 82, + [663] = 663, + [664] = 149, + [665] = 307, + [666] = 267, + [667] = 667, + [668] = 668, + [669] = 81, + [670] = 670, + [671] = 267, [672] = 672, - [673] = 80, - [674] = 601, - [675] = 85, - [676] = 596, - [677] = 349, - [678] = 83, - [679] = 86, - [680] = 261, - [681] = 72, - [682] = 201, - [683] = 683, - [684] = 684, - [685] = 685, - [686] = 73, - [687] = 687, - [688] = 688, - [689] = 689, - [690] = 690, + [673] = 673, + [674] = 648, + [675] = 190, + [676] = 676, + [677] = 677, + [678] = 678, + [679] = 679, + [680] = 88, + [681] = 681, + [682] = 682, + [683] = 648, + [684] = 612, + [685] = 147, + [686] = 686, + [687] = 145, + [688] = 142, + [689] = 135, + [690] = 136, [691] = 691, - [692] = 379, - [693] = 690, - [694] = 690, - [695] = 601, - [696] = 696, - [697] = 690, - [698] = 698, - [699] = 596, - [700] = 601, - [701] = 701, - [702] = 702, - [703] = 596, - [704] = 704, - [705] = 601, - [706] = 706, - [707] = 707, - [708] = 708, - [709] = 691, - [710] = 708, - [711] = 711, - [712] = 596, - [713] = 707, - [714] = 687, - [715] = 688, - [716] = 716, - [717] = 698, + [692] = 131, + [693] = 130, + [694] = 176, + [695] = 307, + [696] = 160, + [697] = 697, + [698] = 267, + [699] = 141, + [700] = 90, + [701] = 79, + [702] = 307, + [703] = 703, + [704] = 648, + [705] = 144, + [706] = 170, + [707] = 77, + [708] = 76, + [709] = 130, + [710] = 710, + [711] = 268, + [712] = 141, + [713] = 713, + [714] = 133, + [715] = 136, + [716] = 177, + [717] = 713, [718] = 718, - [719] = 696, - [720] = 601, - [721] = 596, - [722] = 601, - [723] = 596, - [724] = 601, - [725] = 596, - [726] = 601, - [727] = 596, - [728] = 601, - [729] = 596, + [719] = 713, + [720] = 720, + [721] = 721, + [722] = 722, + [723] = 713, + [724] = 724, + [725] = 710, + [726] = 158, + [727] = 150, + [728] = 134, + [729] = 729, [730] = 730, - [731] = 596, - [732] = 601, - [733] = 596, - [734] = 601, - [735] = 596, - [736] = 601, - [737] = 596, - [738] = 601, - [739] = 596, - [740] = 701, - [741] = 601, - [742] = 704, - [743] = 706, - [744] = 707, - [745] = 596, - [746] = 708, - [747] = 691, + [731] = 166, + [732] = 164, + [733] = 733, + [734] = 734, + [735] = 148, + [736] = 736, + [737] = 737, + [738] = 738, + [739] = 739, + [740] = 740, + [741] = 140, + [742] = 132, + [743] = 131, + [744] = 710, + [745] = 720, + [746] = 746, + [747] = 747, [748] = 748, - [749] = 749, - [750] = 750, - [751] = 706, - [752] = 704, + [749] = 729, + [750] = 648, + [751] = 135, + [752] = 142, [753] = 753, - [754] = 754, - [755] = 687, - [756] = 696, - [757] = 702, - [758] = 758, - [759] = 759, - [760] = 760, + [754] = 268, + [755] = 145, + [756] = 147, + [757] = 757, + [758] = 149, + [759] = 151, + [760] = 153, [761] = 761, - [762] = 698, - [763] = 701, - [764] = 704, - [765] = 706, - [766] = 711, - [767] = 596, - [768] = 707, - [769] = 708, - [770] = 770, - [771] = 687, - [772] = 688, - [773] = 718, - [774] = 696, - [775] = 775, - [776] = 776, - [777] = 777, - [778] = 601, - [779] = 779, - [780] = 780, - [781] = 154, - [782] = 782, - [783] = 783, - [784] = 131, - [785] = 134, - [786] = 137, - [787] = 140, - [788] = 128, - [789] = 126, - [790] = 146, - [791] = 148, - [792] = 150, - [793] = 127, - [794] = 794, - [795] = 795, - [796] = 156, - [797] = 698, - [798] = 701, - [799] = 139, - [800] = 160, - [801] = 226, - [802] = 691, - [803] = 164, - [804] = 704, - [805] = 125, - [806] = 706, - [807] = 203, - [808] = 707, - [809] = 168, - [810] = 170, - [811] = 708, - [812] = 702, - [813] = 169, - [814] = 690, - [815] = 167, - [816] = 687, - [817] = 688, - [818] = 702, - [819] = 819, + [762] = 762, + [763] = 155, + [764] = 720, + [765] = 612, + [766] = 733, + [767] = 713, + [768] = 734, + [769] = 648, + [770] = 736, + [771] = 737, + [772] = 738, + [773] = 739, + [774] = 722, + [775] = 740, + [776] = 612, + [777] = 405, + [778] = 747, + [779] = 748, + [780] = 176, + [781] = 648, + [782] = 612, + [783] = 733, + [784] = 729, + [785] = 785, + [786] = 734, + [787] = 648, + [788] = 736, + [789] = 738, + [790] = 739, + [791] = 740, + [792] = 612, + [793] = 737, + [794] = 747, + [795] = 748, + [796] = 160, + [797] = 648, + [798] = 733, + [799] = 734, + [800] = 144, + [801] = 720, + [802] = 748, + [803] = 612, + [804] = 648, + [805] = 747, + [806] = 157, + [807] = 807, + [808] = 159, + [809] = 161, + [810] = 810, + [811] = 811, + [812] = 612, + [813] = 813, + [814] = 163, + [815] = 165, + [816] = 816, + [817] = 817, + [818] = 167, + [819] = 648, [820] = 820, - [821] = 711, - [822] = 165, - [823] = 823, - [824] = 601, - [825] = 701, - [826] = 698, - [827] = 600, - [828] = 718, - [829] = 696, - [830] = 163, - [831] = 161, - [832] = 159, - [833] = 157, - [834] = 155, - [835] = 153, - [836] = 151, - [837] = 149, - [838] = 147, - [839] = 145, - [840] = 143, - [841] = 141, - [842] = 138, - [843] = 135, - [844] = 132, - [845] = 129, - [846] = 178, - [847] = 200, - [848] = 201, + [821] = 169, + [822] = 736, + [823] = 738, + [824] = 739, + [825] = 740, + [826] = 722, + [827] = 747, + [828] = 612, + [829] = 722, + [830] = 748, + [831] = 268, + [832] = 663, + [833] = 833, + [834] = 834, + [835] = 740, + [836] = 733, + [837] = 734, + [838] = 739, + [839] = 729, + [840] = 648, + [841] = 612, + [842] = 648, + [843] = 612, + [844] = 648, + [845] = 612, + [846] = 648, + [847] = 268, + [848] = 737, [849] = 849, - [850] = 850, - [851] = 688, - [852] = 852, + [850] = 738, + [851] = 736, + [852] = 612, [853] = 853, - [854] = 718, - [855] = 711, - [856] = 691, - [857] = 718, - [858] = 711, + [854] = 648, + [855] = 710, + [856] = 720, + [857] = 857, + [858] = 612, [859] = 859, - [860] = 702, - [861] = 861, + [860] = 860, + [861] = 171, [862] = 862, - [863] = 863, - [864] = 864, - [865] = 865, - [866] = 866, - [867] = 867, - [868] = 868, - [869] = 869, - [870] = 870, - [871] = 871, - [872] = 872, - [873] = 873, - [874] = 874, - [875] = 875, - [876] = 876, - [877] = 876, - [878] = 867, - [879] = 863, + [863] = 173, + [864] = 175, + [865] = 180, + [866] = 648, + [867] = 268, + [868] = 612, + [869] = 206, + [870] = 129, + [871] = 648, + [872] = 207, + [873] = 209, + [874] = 268, + [875] = 612, + [876] = 194, + [877] = 648, + [878] = 878, + [879] = 879, [880] = 880, - [881] = 881, - [882] = 880, - [883] = 883, - [884] = 881, + [881] = 729, + [882] = 268, + [883] = 722, + [884] = 884, [885] = 885, - [886] = 874, - [887] = 873, - [888] = 888, - [889] = 889, + [886] = 886, + [887] = 170, + [888] = 710, + [889] = 612, [890] = 890, [891] = 891, - [892] = 892, + [892] = 737, [893] = 893, - [894] = 872, + [894] = 894, [895] = 895, - [896] = 871, - [897] = 869, - [898] = 870, + [896] = 896, + [897] = 897, + [898] = 893, [899] = 899, [900] = 900, - [901] = 881, - [902] = 880, - [903] = 863, + [901] = 901, + [902] = 902, + [903] = 903, [904] = 904, - [905] = 893, - [906] = 868, + [905] = 905, + [906] = 906, [907] = 907, - [908] = 867, - [909] = 876, + [908] = 908, + [909] = 909, [910] = 910, - [911] = 874, - [912] = 873, - [913] = 872, - [914] = 914, + [911] = 903, + [912] = 912, + [913] = 913, + [914] = 909, [915] = 915, - [916] = 871, - [917] = 870, + [916] = 916, + [917] = 917, [918] = 918, [919] = 919, [920] = 920, - [921] = 865, + [921] = 921, [922] = 922, [923] = 923, - [924] = 868, - [925] = 865, - [926] = 862, - [927] = 927, - [928] = 875, - [929] = 893, - [930] = 869, - [931] = 864, - [932] = 932, + [924] = 895, + [925] = 908, + [926] = 907, + [927] = 906, + [928] = 905, + [929] = 904, + [930] = 901, + [931] = 900, + [932] = 899, [933] = 933, - [934] = 934, - [935] = 914, - [936] = 936, - [937] = 881, - [938] = 880, + [934] = 915, + [935] = 897, + [936] = 918, + [937] = 895, + [938] = 938, [939] = 939, - [940] = 919, - [941] = 863, - [942] = 862, - [943] = 922, - [944] = 923, + [940] = 903, + [941] = 941, + [942] = 909, + [943] = 915, + [944] = 944, [945] = 945, - [946] = 867, - [947] = 876, - [948] = 874, - [949] = 873, - [950] = 872, - [951] = 871, - [952] = 864, - [953] = 870, - [954] = 954, - [955] = 955, - [956] = 914, - [957] = 868, - [958] = 865, + [946] = 946, + [947] = 947, + [948] = 946, + [949] = 949, + [950] = 950, + [951] = 951, + [952] = 952, + [953] = 918, + [954] = 919, + [955] = 897, + [956] = 952, + [957] = 893, + [958] = 908, [959] = 959, - [960] = 862, + [960] = 960, [961] = 961, - [962] = 933, - [963] = 875, - [964] = 922, - [965] = 923, - [966] = 966, - [967] = 919, - [968] = 914, - [969] = 893, - [970] = 869, - [971] = 933, - [972] = 881, - [973] = 864, - [974] = 880, - [975] = 975, - [976] = 914, - [977] = 875, - [978] = 863, - [979] = 867, - [980] = 876, - [981] = 919, - [982] = 874, - [983] = 873, - [984] = 922, - [985] = 923, + [962] = 907, + [963] = 941, + [964] = 906, + [965] = 905, + [966] = 904, + [967] = 899, + [968] = 946, + [969] = 950, + [970] = 949, + [971] = 949, + [972] = 950, + [973] = 973, + [974] = 901, + [975] = 900, + [976] = 899, + [977] = 893, + [978] = 978, + [979] = 897, + [980] = 895, + [981] = 959, + [982] = 469, + [983] = 903, + [984] = 984, + [985] = 941, [986] = 986, - [987] = 872, - [988] = 871, - [989] = 870, - [990] = 868, - [991] = 865, - [992] = 862, - [993] = 864, - [994] = 966, - [995] = 919, - [996] = 889, - [997] = 997, - [998] = 998, - [999] = 975, - [1000] = 892, - [1001] = 966, + [987] = 909, + [988] = 988, + [989] = 989, + [990] = 946, + [991] = 991, + [992] = 992, + [993] = 949, + [994] = 950, + [995] = 995, + [996] = 915, + [997] = 900, + [998] = 901, + [999] = 999, + [1000] = 918, + [1001] = 919, [1002] = 1002, - [1003] = 889, - [1004] = 1004, - [1005] = 998, - [1006] = 975, - [1007] = 892, - [1008] = 966, + [1003] = 959, + [1004] = 941, + [1005] = 1005, + [1006] = 941, + [1007] = 1007, + [1008] = 904, [1009] = 1009, - [1010] = 889, - [1011] = 923, - [1012] = 998, - [1013] = 975, - [1014] = 892, - [1015] = 966, - [1016] = 922, - [1017] = 889, - [1018] = 1018, - [1019] = 998, - [1020] = 975, - [1021] = 892, - [1022] = 955, - [1023] = 1023, - [1024] = 1009, - [1025] = 918, - [1026] = 961, - [1027] = 446, - [1028] = 1009, - [1029] = 918, - [1030] = 875, - [1031] = 893, - [1032] = 1009, - [1033] = 918, - [1034] = 869, - [1035] = 1035, - [1036] = 1009, - [1037] = 918, - [1038] = 986, - [1039] = 986, - [1040] = 986, - [1041] = 986, - [1042] = 891, - [1043] = 891, - [1044] = 891, - [1045] = 891, - [1046] = 998, - [1047] = 933, - [1048] = 1048, - [1049] = 1049, + [1010] = 905, + [1011] = 946, + [1012] = 919, + [1013] = 908, + [1014] = 949, + [1015] = 950, + [1016] = 907, + [1017] = 906, + [1018] = 905, + [1019] = 904, + [1020] = 959, + [1021] = 901, + [1022] = 900, + [1023] = 899, + [1024] = 959, + [1025] = 995, + [1026] = 893, + [1027] = 999, + [1028] = 897, + [1029] = 1005, + [1030] = 933, + [1031] = 984, + [1032] = 995, + [1033] = 906, + [1034] = 999, + [1035] = 895, + [1036] = 1005, + [1037] = 933, + [1038] = 984, + [1039] = 995, + [1040] = 903, + [1041] = 999, + [1042] = 907, + [1043] = 1005, + [1044] = 933, + [1045] = 984, + [1046] = 995, + [1047] = 908, + [1048] = 999, + [1049] = 909, + [1050] = 1005, + [1051] = 933, + [1052] = 984, + [1053] = 921, + [1054] = 915, + [1055] = 951, + [1056] = 913, + [1057] = 918, + [1058] = 919, + [1059] = 951, + [1060] = 913, + [1061] = 1061, + [1062] = 1007, + [1063] = 951, + [1064] = 913, + [1065] = 952, + [1066] = 952, + [1067] = 951, + [1068] = 913, + [1069] = 947, + [1070] = 947, + [1071] = 947, + [1072] = 947, + [1073] = 989, + [1074] = 989, + [1075] = 989, + [1076] = 989, + [1077] = 1077, + [1078] = 1078, + [1079] = 1079, + [1080] = 1080, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -2779,17 +2813,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'x') ADVANCE(22); END_STATE(); case 11: - if (lookahead == '\r') SKIP(11) - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(40); - END_STATE(); - case 12: if (lookahead == '\r') ADVANCE(46); if (lookahead != 0 && lookahead != '\n' && lookahead != '"') ADVANCE(47); END_STATE(); + case 12: + if (lookahead == '\r') SKIP(12) + if (lookahead != 0 && + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(40); + END_STATE(); case 13: if (lookahead == '-') ADVANCE(30); END_STATE(); @@ -3132,32 +3166,32 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, [1] = {.lex_state = 19, .external_lex_state = 2}, [2] = {.lex_state = 19, .external_lex_state = 3}, - [3] = {.lex_state = 19, .external_lex_state = 3}, - [4] = {.lex_state = 19, .external_lex_state = 4}, - [5] = {.lex_state = 19, .external_lex_state = 4}, - [6] = {.lex_state = 19, .external_lex_state = 3}, + [3] = {.lex_state = 19, .external_lex_state = 4}, + [4] = {.lex_state = 19, .external_lex_state = 3}, + [5] = {.lex_state = 19, .external_lex_state = 3}, + [6] = {.lex_state = 19, .external_lex_state = 4}, [7] = {.lex_state = 19, .external_lex_state = 4}, - [8] = {.lex_state = 19, .external_lex_state = 4}, - [9] = {.lex_state = 19, .external_lex_state = 3}, + [8] = {.lex_state = 19, .external_lex_state = 3}, + [9] = {.lex_state = 19, .external_lex_state = 4}, [10] = {.lex_state = 19, .external_lex_state = 4}, - [11] = {.lex_state = 19, .external_lex_state = 4}, - [12] = {.lex_state = 19, .external_lex_state = 3}, - [13] = {.lex_state = 19, .external_lex_state = 3}, - [14] = {.lex_state = 19, .external_lex_state = 4}, - [15] = {.lex_state = 19, .external_lex_state = 4}, - [16] = {.lex_state = 19, .external_lex_state = 3}, - [17] = {.lex_state = 19, .external_lex_state = 5}, + [11] = {.lex_state = 19, .external_lex_state = 3}, + [12] = {.lex_state = 19, .external_lex_state = 4}, + [13] = {.lex_state = 19, .external_lex_state = 4}, + [14] = {.lex_state = 19, .external_lex_state = 3}, + [15] = {.lex_state = 19, .external_lex_state = 5}, + [16] = {.lex_state = 19, .external_lex_state = 4}, + [17] = {.lex_state = 19, .external_lex_state = 4}, [18] = {.lex_state = 19, .external_lex_state = 4}, - [19] = {.lex_state = 19, .external_lex_state = 4}, + [19] = {.lex_state = 19, .external_lex_state = 3}, [20] = {.lex_state = 19, .external_lex_state = 4}, - [21] = {.lex_state = 19, .external_lex_state = 4}, - [22] = {.lex_state = 19, .external_lex_state = 3}, + [21] = {.lex_state = 19, .external_lex_state = 3}, + [22] = {.lex_state = 19, .external_lex_state = 4}, [23] = {.lex_state = 19, .external_lex_state = 4}, - [24] = {.lex_state = 19, .external_lex_state = 5}, + [24] = {.lex_state = 19, .external_lex_state = 4}, [25] = {.lex_state = 19, .external_lex_state = 4}, [26] = {.lex_state = 19, .external_lex_state = 4}, [27] = {.lex_state = 19, .external_lex_state = 3}, - [28] = {.lex_state = 19, .external_lex_state = 4}, + [28] = {.lex_state = 19, .external_lex_state = 5}, [29] = {.lex_state = 19, .external_lex_state = 3}, [30] = {.lex_state = 19, .external_lex_state = 3}, [31] = {.lex_state = 19, .external_lex_state = 3}, @@ -3183,1002 +3217,1033 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [51] = {.lex_state = 19, .external_lex_state = 3}, [52] = {.lex_state = 19, .external_lex_state = 3}, [53] = {.lex_state = 19, .external_lex_state = 3}, - [54] = {.lex_state = 19, .external_lex_state = 6}, + [54] = {.lex_state = 19, .external_lex_state = 4}, [55] = {.lex_state = 19, .external_lex_state = 6}, [56] = {.lex_state = 19, .external_lex_state = 6}, [57] = {.lex_state = 19, .external_lex_state = 6}, - [58] = {.lex_state = 19, .external_lex_state = 6}, - [59] = {.lex_state = 19, .external_lex_state = 7}, - [60] = {.lex_state = 19, .external_lex_state = 8}, - [61] = {.lex_state = 19, .external_lex_state = 9}, - [62] = {.lex_state = 19, .external_lex_state = 10}, - [63] = {.lex_state = 19, .external_lex_state = 9}, + [58] = {.lex_state = 19, .external_lex_state = 3}, + [59] = {.lex_state = 19, .external_lex_state = 6}, + [60] = {.lex_state = 19, .external_lex_state = 6}, + [61] = {.lex_state = 19, .external_lex_state = 3}, + [62] = {.lex_state = 19, .external_lex_state = 3}, + [63] = {.lex_state = 19, .external_lex_state = 7}, [64] = {.lex_state = 19, .external_lex_state = 8}, - [65] = {.lex_state = 19, .external_lex_state = 10}, - [66] = {.lex_state = 19, .external_lex_state = 9}, + [65] = {.lex_state = 19, .external_lex_state = 9}, + [66] = {.lex_state = 19, .external_lex_state = 10}, [67] = {.lex_state = 19, .external_lex_state = 8}, - [68] = {.lex_state = 19, .external_lex_state = 10}, - [69] = {.lex_state = 19, .external_lex_state = 8}, - [70] = {.lex_state = 19, .external_lex_state = 10}, + [68] = {.lex_state = 19, .external_lex_state = 9}, + [69] = {.lex_state = 19, .external_lex_state = 10}, + [70] = {.lex_state = 19, .external_lex_state = 8}, [71] = {.lex_state = 19, .external_lex_state = 9}, - [72] = {.lex_state = 19, .external_lex_state = 11}, - [73] = {.lex_state = 19, .external_lex_state = 11}, - [74] = {.lex_state = 19, .external_lex_state = 12}, - [75] = {.lex_state = 19, .external_lex_state = 10}, - [76] = {.lex_state = 19, .external_lex_state = 10}, - [77] = {.lex_state = 19, .external_lex_state = 11}, - [78] = {.lex_state = 19, .external_lex_state = 11}, - [79] = {.lex_state = 19, .external_lex_state = 12}, - [80] = {.lex_state = 19, .external_lex_state = 12}, - [81] = {.lex_state = 19, .external_lex_state = 10}, - [82] = {.lex_state = 19, .external_lex_state = 10}, - [83] = {.lex_state = 19, .external_lex_state = 11}, - [84] = {.lex_state = 19, .external_lex_state = 12}, + [72] = {.lex_state = 19, .external_lex_state = 10}, + [73] = {.lex_state = 19, .external_lex_state = 9}, + [74] = {.lex_state = 19, .external_lex_state = 10}, + [75] = {.lex_state = 19, .external_lex_state = 8}, + [76] = {.lex_state = 19, .external_lex_state = 11}, + [77] = {.lex_state = 19, .external_lex_state = 12}, + [78] = {.lex_state = 19, .external_lex_state = 10}, + [79] = {.lex_state = 19, .external_lex_state = 13}, + [80] = {.lex_state = 19, .external_lex_state = 13}, + [81] = {.lex_state = 19, .external_lex_state = 14}, + [82] = {.lex_state = 19, .external_lex_state = 14}, + [83] = {.lex_state = 19, .external_lex_state = 10}, + [84] = {.lex_state = 19, .external_lex_state = 10}, [85] = {.lex_state = 19, .external_lex_state = 13}, - [86] = {.lex_state = 19, .external_lex_state = 13}, - [87] = {.lex_state = 19, .external_lex_state = 10}, - [88] = {.lex_state = 19, .external_lex_state = 10}, + [86] = {.lex_state = 19, .external_lex_state = 14}, + [87] = {.lex_state = 19, .external_lex_state = 15}, + [88] = {.lex_state = 19, .external_lex_state = 15}, [89] = {.lex_state = 19, .external_lex_state = 10}, - [90] = {.lex_state = 19, .external_lex_state = 14}, - [91] = {.lex_state = 19, .external_lex_state = 8}, - [92] = {.lex_state = 19, .external_lex_state = 15}, - [93] = {.lex_state = 19, .external_lex_state = 9}, + [90] = {.lex_state = 19, .external_lex_state = 13}, + [91] = {.lex_state = 19, .external_lex_state = 10}, + [92] = {.lex_state = 19, .external_lex_state = 10}, + [93] = {.lex_state = 19, .external_lex_state = 16}, [94] = {.lex_state = 19, .external_lex_state = 9}, - [95] = {.lex_state = 19, .external_lex_state = 16}, - [96] = {.lex_state = 19, .external_lex_state = 16}, - [97] = {.lex_state = 19, .external_lex_state = 17}, - [98] = {.lex_state = 19, .external_lex_state = 9}, - [99] = {.lex_state = 19, .external_lex_state = 9}, - [100] = {.lex_state = 19, .external_lex_state = 16}, - [101] = {.lex_state = 19, .external_lex_state = 16}, - [102] = {.lex_state = 19, .external_lex_state = 18}, - [103] = {.lex_state = 19, .external_lex_state = 17}, - [104] = {.lex_state = 19, .external_lex_state = 17}, - [105] = {.lex_state = 19, .external_lex_state = 9}, - [106] = {.lex_state = 19, .external_lex_state = 9}, - [107] = {.lex_state = 19, .external_lex_state = 19}, + [95] = {.lex_state = 19, .external_lex_state = 17}, + [96] = {.lex_state = 19, .external_lex_state = 8}, + [97] = {.lex_state = 19, .external_lex_state = 18}, + [98] = {.lex_state = 19, .external_lex_state = 18}, + [99] = {.lex_state = 19, .external_lex_state = 18}, + [100] = {.lex_state = 19, .external_lex_state = 13}, + [101] = {.lex_state = 19, .external_lex_state = 8}, + [102] = {.lex_state = 19, .external_lex_state = 10}, + [103] = {.lex_state = 19, .external_lex_state = 8}, + [104] = {.lex_state = 19, .external_lex_state = 8}, + [105] = {.lex_state = 19, .external_lex_state = 19}, + [106] = {.lex_state = 19, .external_lex_state = 11}, + [107] = {.lex_state = 19, .external_lex_state = 11}, [108] = {.lex_state = 19, .external_lex_state = 8}, - [109] = {.lex_state = 19, .external_lex_state = 16}, - [110] = {.lex_state = 19, .external_lex_state = 8}, - [111] = {.lex_state = 19, .external_lex_state = 17}, + [109] = {.lex_state = 19, .external_lex_state = 8}, + [110] = {.lex_state = 19, .external_lex_state = 12}, + [111] = {.lex_state = 19, .external_lex_state = 9}, [112] = {.lex_state = 19, .external_lex_state = 18}, - [113] = {.lex_state = 19, .external_lex_state = 18}, + [113] = {.lex_state = 19, .external_lex_state = 9}, [114] = {.lex_state = 19, .external_lex_state = 19}, - [115] = {.lex_state = 19, .external_lex_state = 19}, - [116] = {.lex_state = 19, .external_lex_state = 8}, - [117] = {.lex_state = 19, .external_lex_state = 9}, - [118] = {.lex_state = 19, .external_lex_state = 14}, + [115] = {.lex_state = 19, .external_lex_state = 11}, + [116] = {.lex_state = 19, .external_lex_state = 19}, + [117] = {.lex_state = 19, .external_lex_state = 12}, + [118] = {.lex_state = 19, .external_lex_state = 12}, [119] = {.lex_state = 19, .external_lex_state = 8}, - [120] = {.lex_state = 19, .external_lex_state = 18}, - [121] = {.lex_state = 19, .external_lex_state = 19}, + [120] = {.lex_state = 19, .external_lex_state = 9}, + [121] = {.lex_state = 19, .external_lex_state = 9}, [122] = {.lex_state = 19, .external_lex_state = 19}, - [123] = {.lex_state = 19, .external_lex_state = 8}, - [124] = {.lex_state = 19, .external_lex_state = 8}, - [125] = {.lex_state = 19, .external_lex_state = 4}, - [126] = {.lex_state = 19, .external_lex_state = 4}, - [127] = {.lex_state = 19, .external_lex_state = 3}, - [128] = {.lex_state = 19, .external_lex_state = 3}, - [129] = {.lex_state = 19, .external_lex_state = 3}, - [130] = {.lex_state = 19, .external_lex_state = 3}, - [131] = {.lex_state = 19, .external_lex_state = 5}, + [123] = {.lex_state = 19, .external_lex_state = 18}, + [124] = {.lex_state = 19, .external_lex_state = 12}, + [125] = {.lex_state = 19, .external_lex_state = 16}, + [126] = {.lex_state = 19, .external_lex_state = 9}, + [127] = {.lex_state = 19, .external_lex_state = 9}, + [128] = {.lex_state = 19, .external_lex_state = 14}, + [129] = {.lex_state = 19, .external_lex_state = 4}, + [130] = {.lex_state = 19, .external_lex_state = 4}, + [131] = {.lex_state = 19, .external_lex_state = 3}, [132] = {.lex_state = 19, .external_lex_state = 3}, [133] = {.lex_state = 19, .external_lex_state = 3}, - [134] = {.lex_state = 19, .external_lex_state = 5}, - [135] = {.lex_state = 19, .external_lex_state = 3}, - [136] = {.lex_state = 19, .external_lex_state = 5}, - [137] = {.lex_state = 19, .external_lex_state = 5}, - [138] = {.lex_state = 19, .external_lex_state = 3}, + [134] = {.lex_state = 19, .external_lex_state = 3}, + [135] = {.lex_state = 19, .external_lex_state = 4}, + [136] = {.lex_state = 19, .external_lex_state = 3}, + [137] = {.lex_state = 19, .external_lex_state = 3}, + [138] = {.lex_state = 19, .external_lex_state = 4}, [139] = {.lex_state = 19, .external_lex_state = 3}, - [140] = {.lex_state = 19, .external_lex_state = 5}, - [141] = {.lex_state = 19, .external_lex_state = 3}, - [142] = {.lex_state = 19, .external_lex_state = 5}, + [140] = {.lex_state = 19, .external_lex_state = 3}, + [141] = {.lex_state = 19, .external_lex_state = 4}, + [142] = {.lex_state = 19, .external_lex_state = 3}, [143] = {.lex_state = 19, .external_lex_state = 3}, - [144] = {.lex_state = 19, .external_lex_state = 5}, + [144] = {.lex_state = 19, .external_lex_state = 4}, [145] = {.lex_state = 19, .external_lex_state = 3}, - [146] = {.lex_state = 19, .external_lex_state = 5}, + [146] = {.lex_state = 19, .external_lex_state = 4}, [147] = {.lex_state = 19, .external_lex_state = 3}, - [148] = {.lex_state = 19, .external_lex_state = 5}, + [148] = {.lex_state = 19, .external_lex_state = 3}, [149] = {.lex_state = 19, .external_lex_state = 3}, - [150] = {.lex_state = 19, .external_lex_state = 5}, + [150] = {.lex_state = 19, .external_lex_state = 3}, [151] = {.lex_state = 19, .external_lex_state = 3}, - [152] = {.lex_state = 19, .external_lex_state = 5}, + [152] = {.lex_state = 19, .external_lex_state = 3}, [153] = {.lex_state = 19, .external_lex_state = 3}, - [154] = {.lex_state = 19, .external_lex_state = 5}, + [154] = {.lex_state = 19, .external_lex_state = 4}, [155] = {.lex_state = 19, .external_lex_state = 3}, - [156] = {.lex_state = 19, .external_lex_state = 5}, + [156] = {.lex_state = 19, .external_lex_state = 3}, [157] = {.lex_state = 19, .external_lex_state = 3}, - [158] = {.lex_state = 19, .external_lex_state = 5}, + [158] = {.lex_state = 19, .external_lex_state = 3}, [159] = {.lex_state = 19, .external_lex_state = 3}, - [160] = {.lex_state = 19, .external_lex_state = 5}, + [160] = {.lex_state = 19, .external_lex_state = 3}, [161] = {.lex_state = 19, .external_lex_state = 3}, - [162] = {.lex_state = 19, .external_lex_state = 3}, + [162] = {.lex_state = 19, .external_lex_state = 4}, [163] = {.lex_state = 19, .external_lex_state = 3}, - [164] = {.lex_state = 19, .external_lex_state = 5}, + [164] = {.lex_state = 19, .external_lex_state = 3}, [165] = {.lex_state = 19, .external_lex_state = 3}, - [166] = {.lex_state = 19, .external_lex_state = 5}, + [166] = {.lex_state = 19, .external_lex_state = 3}, [167] = {.lex_state = 19, .external_lex_state = 3}, - [168] = {.lex_state = 19, .external_lex_state = 5}, + [168] = {.lex_state = 19, .external_lex_state = 4}, [169] = {.lex_state = 19, .external_lex_state = 3}, - [170] = {.lex_state = 19, .external_lex_state = 5}, + [170] = {.lex_state = 19, .external_lex_state = 4}, [171] = {.lex_state = 19, .external_lex_state = 3}, - [172] = {.lex_state = 19, .external_lex_state = 5}, + [172] = {.lex_state = 19, .external_lex_state = 4}, [173] = {.lex_state = 19, .external_lex_state = 3}, - [174] = {.lex_state = 19, .external_lex_state = 5}, - [175] = {.lex_state = 19, .external_lex_state = 5}, + [174] = {.lex_state = 19, .external_lex_state = 4}, + [175] = {.lex_state = 19, .external_lex_state = 3}, [176] = {.lex_state = 19, .external_lex_state = 3}, - [177] = {.lex_state = 19, .external_lex_state = 5}, - [178] = {.lex_state = 19, .external_lex_state = 3}, - [179] = {.lex_state = 19, .external_lex_state = 5}, - [180] = {.lex_state = 19, .external_lex_state = 5}, - [181] = {.lex_state = 19, .external_lex_state = 5}, - [182] = {.lex_state = 19, .external_lex_state = 5}, + [177] = {.lex_state = 19, .external_lex_state = 3}, + [178] = {.lex_state = 19, .external_lex_state = 4}, + [179] = {.lex_state = 19, .external_lex_state = 4}, + [180] = {.lex_state = 19, .external_lex_state = 3}, + [181] = {.lex_state = 19, .external_lex_state = 4}, + [182] = {.lex_state = 19, .external_lex_state = 3}, [183] = {.lex_state = 19, .external_lex_state = 5}, - [184] = {.lex_state = 19, .external_lex_state = 5}, - [185] = {.lex_state = 19, .external_lex_state = 5}, - [186] = {.lex_state = 19, .external_lex_state = 5}, + [184] = {.lex_state = 19, .external_lex_state = 4}, + [185] = {.lex_state = 19, .external_lex_state = 4}, + [186] = {.lex_state = 19, .external_lex_state = 4}, [187] = {.lex_state = 19, .external_lex_state = 5}, [188] = {.lex_state = 19, .external_lex_state = 5}, - [189] = {.lex_state = 19, .external_lex_state = 5}, - [190] = {.lex_state = 19, .external_lex_state = 3}, - [191] = {.lex_state = 19, .external_lex_state = 5}, - [192] = {.lex_state = 19, .external_lex_state = 3}, - [193] = {.lex_state = 19, .external_lex_state = 5}, - [194] = {.lex_state = 19, .external_lex_state = 5}, + [189] = {.lex_state = 19, .external_lex_state = 4}, + [190] = {.lex_state = 19, .external_lex_state = 5}, + [191] = {.lex_state = 19, .external_lex_state = 4}, + [192] = {.lex_state = 19, .external_lex_state = 5}, + [193] = {.lex_state = 19, .external_lex_state = 4}, + [194] = {.lex_state = 19, .external_lex_state = 3}, [195] = {.lex_state = 19, .external_lex_state = 4}, [196] = {.lex_state = 19, .external_lex_state = 5}, [197] = {.lex_state = 19, .external_lex_state = 5}, - [198] = {.lex_state = 19, .external_lex_state = 4}, - [199] = {.lex_state = 19, .external_lex_state = 3}, - [200] = {.lex_state = 19, .external_lex_state = 5}, - [201] = {.lex_state = 19, .external_lex_state = 5}, + [198] = {.lex_state = 19, .external_lex_state = 5}, + [199] = {.lex_state = 19, .external_lex_state = 4}, + [200] = {.lex_state = 19, .external_lex_state = 4}, + [201] = {.lex_state = 19, .external_lex_state = 4}, [202] = {.lex_state = 19, .external_lex_state = 4}, [203] = {.lex_state = 19, .external_lex_state = 3}, - [204] = {.lex_state = 19, .external_lex_state = 4}, + [204] = {.lex_state = 19, .external_lex_state = 5}, [205] = {.lex_state = 19, .external_lex_state = 4}, [206] = {.lex_state = 19, .external_lex_state = 4}, - [207] = {.lex_state = 19, .external_lex_state = 3}, - [208] = {.lex_state = 19, .external_lex_state = 4}, - [209] = {.lex_state = 19, .external_lex_state = 3}, - [210] = {.lex_state = 19, .external_lex_state = 3}, - [211] = {.lex_state = 19, .external_lex_state = 4}, - [212] = {.lex_state = 19, .external_lex_state = 3}, + [207] = {.lex_state = 19, .external_lex_state = 4}, + [208] = {.lex_state = 19, .external_lex_state = 3}, + [209] = {.lex_state = 19, .external_lex_state = 5}, + [210] = {.lex_state = 19, .external_lex_state = 5}, + [211] = {.lex_state = 19, .external_lex_state = 5}, + [212] = {.lex_state = 19, .external_lex_state = 4}, [213] = {.lex_state = 19, .external_lex_state = 4}, [214] = {.lex_state = 19, .external_lex_state = 4}, [215] = {.lex_state = 19, .external_lex_state = 3}, - [216] = {.lex_state = 19, .external_lex_state = 3}, + [216] = {.lex_state = 19, .external_lex_state = 4}, [217] = {.lex_state = 19, .external_lex_state = 4}, - [218] = {.lex_state = 19, .external_lex_state = 3}, + [218] = {.lex_state = 19, .external_lex_state = 4}, [219] = {.lex_state = 19, .external_lex_state = 4}, [220] = {.lex_state = 19, .external_lex_state = 4}, [221] = {.lex_state = 19, .external_lex_state = 4}, - [222] = {.lex_state = 19, .external_lex_state = 4}, + [222] = {.lex_state = 19, .external_lex_state = 5}, [223] = {.lex_state = 19, .external_lex_state = 3}, [224] = {.lex_state = 19, .external_lex_state = 4}, [225] = {.lex_state = 19, .external_lex_state = 4}, - [226] = {.lex_state = 19, .external_lex_state = 5}, - [227] = {.lex_state = 19, .external_lex_state = 5}, + [226] = {.lex_state = 19, .external_lex_state = 4}, + [227] = {.lex_state = 19, .external_lex_state = 4}, [228] = {.lex_state = 19, .external_lex_state = 3}, - [229] = {.lex_state = 19, .external_lex_state = 4}, - [230] = {.lex_state = 19, .external_lex_state = 4}, - [231] = {.lex_state = 19, .external_lex_state = 3}, + [229] = {.lex_state = 19, .external_lex_state = 3}, + [230] = {.lex_state = 19, .external_lex_state = 5}, + [231] = {.lex_state = 19, .external_lex_state = 4}, [232] = {.lex_state = 19, .external_lex_state = 4}, - [233] = {.lex_state = 19, .external_lex_state = 3}, - [234] = {.lex_state = 19, .external_lex_state = 4}, - [235] = {.lex_state = 19, .external_lex_state = 3}, - [236] = {.lex_state = 19, .external_lex_state = 4}, - [237] = {.lex_state = 19, .external_lex_state = 4}, - [238] = {.lex_state = 19, .external_lex_state = 4}, - [239] = {.lex_state = 19, .external_lex_state = 4}, - [240] = {.lex_state = 19, .external_lex_state = 4}, - [241] = {.lex_state = 19, .external_lex_state = 4}, - [242] = {.lex_state = 19, .external_lex_state = 4}, - [243] = {.lex_state = 19, .external_lex_state = 4}, - [244] = {.lex_state = 19, .external_lex_state = 4}, - [245] = {.lex_state = 19, .external_lex_state = 4}, - [246] = {.lex_state = 19, .external_lex_state = 4}, - [247] = {.lex_state = 19, .external_lex_state = 4}, + [233] = {.lex_state = 19, .external_lex_state = 5}, + [234] = {.lex_state = 19, .external_lex_state = 5}, + [235] = {.lex_state = 19, .external_lex_state = 5}, + [236] = {.lex_state = 19, .external_lex_state = 5}, + [237] = {.lex_state = 19, .external_lex_state = 5}, + [238] = {.lex_state = 19, .external_lex_state = 5}, + [239] = {.lex_state = 19, .external_lex_state = 5}, + [240] = {.lex_state = 19, .external_lex_state = 3}, + [241] = {.lex_state = 19, .external_lex_state = 5}, + [242] = {.lex_state = 19, .external_lex_state = 5}, + [243] = {.lex_state = 19, .external_lex_state = 5}, + [244] = {.lex_state = 19, .external_lex_state = 5}, + [245] = {.lex_state = 19, .external_lex_state = 5}, + [246] = {.lex_state = 19, .external_lex_state = 5}, + [247] = {.lex_state = 19, .external_lex_state = 5}, [248] = {.lex_state = 19, .external_lex_state = 4}, - [249] = {.lex_state = 19, .external_lex_state = 4}, - [250] = {.lex_state = 19, .external_lex_state = 4}, - [251] = {.lex_state = 19, .external_lex_state = 4}, - [252] = {.lex_state = 19, .external_lex_state = 4}, - [253] = {.lex_state = 19, .external_lex_state = 4}, - [254] = {.lex_state = 19, .external_lex_state = 4}, - [255] = {.lex_state = 19, .external_lex_state = 3}, - [256] = {.lex_state = 19, .external_lex_state = 4}, - [257] = {.lex_state = 19, .external_lex_state = 4}, - [258] = {.lex_state = 19, .external_lex_state = 4}, - [259] = {.lex_state = 19, .external_lex_state = 4}, - [260] = {.lex_state = 19, .external_lex_state = 3}, - [261] = {.lex_state = 19, .external_lex_state = 7}, - [262] = {.lex_state = 3, .external_lex_state = 20}, - [263] = {.lex_state = 3, .external_lex_state = 20}, - [264] = {.lex_state = 3, .external_lex_state = 20}, - [265] = {.lex_state = 3, .external_lex_state = 20}, - [266] = {.lex_state = 3, .external_lex_state = 20}, - [267] = {.lex_state = 0, .external_lex_state = 21}, - [268] = {.lex_state = 0, .external_lex_state = 21}, - [269] = {.lex_state = 1, .external_lex_state = 22}, - [270] = {.lex_state = 2, .external_lex_state = 20}, - [271] = {.lex_state = 1, .external_lex_state = 22}, - [272] = {.lex_state = 2, .external_lex_state = 20}, - [273] = {.lex_state = 2, .external_lex_state = 20}, - [274] = {.lex_state = 0, .external_lex_state = 23}, - [275] = {.lex_state = 1, .external_lex_state = 22}, - [276] = {.lex_state = 1, .external_lex_state = 22}, - [277] = {.lex_state = 1, .external_lex_state = 22}, - [278] = {.lex_state = 1, .external_lex_state = 22}, - [279] = {.lex_state = 2, .external_lex_state = 20}, - [280] = {.lex_state = 2, .external_lex_state = 20}, - [281] = {.lex_state = 4}, - [282] = {.lex_state = 4}, - [283] = {.lex_state = 4}, - [284] = {.lex_state = 19, .external_lex_state = 20}, - [285] = {.lex_state = 4}, - [286] = {.lex_state = 19, .external_lex_state = 20}, - [287] = {.lex_state = 19, .external_lex_state = 20}, - [288] = {.lex_state = 4}, + [249] = {.lex_state = 19, .external_lex_state = 5}, + [250] = {.lex_state = 19, .external_lex_state = 5}, + [251] = {.lex_state = 19, .external_lex_state = 5}, + [252] = {.lex_state = 19, .external_lex_state = 5}, + [253] = {.lex_state = 19, .external_lex_state = 5}, + [254] = {.lex_state = 19, .external_lex_state = 5}, + [255] = {.lex_state = 19, .external_lex_state = 5}, + [256] = {.lex_state = 19, .external_lex_state = 5}, + [257] = {.lex_state = 19, .external_lex_state = 5}, + [258] = {.lex_state = 19, .external_lex_state = 5}, + [259] = {.lex_state = 19, .external_lex_state = 5}, + [260] = {.lex_state = 19, .external_lex_state = 4}, + [261] = {.lex_state = 19, .external_lex_state = 5}, + [262] = {.lex_state = 19, .external_lex_state = 5}, + [263] = {.lex_state = 19, .external_lex_state = 5}, + [264] = {.lex_state = 19, .external_lex_state = 5}, + [265] = {.lex_state = 19, .external_lex_state = 5}, + [266] = {.lex_state = 19, .external_lex_state = 3}, + [267] = {.lex_state = 19, .external_lex_state = 7}, + [268] = {.lex_state = 19, .external_lex_state = 7}, + [269] = {.lex_state = 3, .external_lex_state = 20}, + [270] = {.lex_state = 3, .external_lex_state = 20}, + [271] = {.lex_state = 3, .external_lex_state = 20}, + [272] = {.lex_state = 3, .external_lex_state = 20}, + [273] = {.lex_state = 3, .external_lex_state = 20}, + [274] = {.lex_state = 19, .external_lex_state = 21}, + [275] = {.lex_state = 19, .external_lex_state = 21}, + [276] = {.lex_state = 19, .external_lex_state = 21}, + [277] = {.lex_state = 19, .external_lex_state = 21}, + [278] = {.lex_state = 19, .external_lex_state = 21}, + [279] = {.lex_state = 19, .external_lex_state = 21}, + [280] = {.lex_state = 19, .external_lex_state = 21}, + [281] = {.lex_state = 19, .external_lex_state = 21}, + [282] = {.lex_state = 19, .external_lex_state = 21}, + [283] = {.lex_state = 19, .external_lex_state = 21}, + [284] = {.lex_state = 19, .external_lex_state = 22}, + [285] = {.lex_state = 19, .external_lex_state = 22}, + [286] = {.lex_state = 19, .external_lex_state = 22}, + [287] = {.lex_state = 19, .external_lex_state = 22}, + [288] = {.lex_state = 19, .external_lex_state = 22}, [289] = {.lex_state = 0, .external_lex_state = 23}, - [290] = {.lex_state = 19, .external_lex_state = 20}, - [291] = {.lex_state = 19, .external_lex_state = 20}, - [292] = {.lex_state = 4}, - [293] = {.lex_state = 19}, - [294] = {.lex_state = 2}, - [295] = {.lex_state = 19, .external_lex_state = 24}, - [296] = {.lex_state = 2}, - [297] = {.lex_state = 19}, - [298] = {.lex_state = 19}, - [299] = {.lex_state = 19, .external_lex_state = 24}, - [300] = {.lex_state = 2}, - [301] = {.lex_state = 19}, - [302] = {.lex_state = 2}, - [303] = {.lex_state = 19, .external_lex_state = 24}, - [304] = {.lex_state = 19}, - [305] = {.lex_state = 19, .external_lex_state = 24}, - [306] = {.lex_state = 2}, - [307] = {.lex_state = 2}, - [308] = {.lex_state = 19, .external_lex_state = 24}, - [309] = {.lex_state = 19, .external_lex_state = 24}, - [310] = {.lex_state = 19, .external_lex_state = 24}, - [311] = {.lex_state = 19, .external_lex_state = 24}, - [312] = {.lex_state = 19, .external_lex_state = 24}, - [313] = {.lex_state = 19, .external_lex_state = 24}, - [314] = {.lex_state = 2}, - [315] = {.lex_state = 19, .external_lex_state = 24}, - [316] = {.lex_state = 2}, - [317] = {.lex_state = 19}, - [318] = {.lex_state = 19, .external_lex_state = 24}, - [319] = {.lex_state = 19, .external_lex_state = 24}, - [320] = {.lex_state = 2}, - [321] = {.lex_state = 19}, - [322] = {.lex_state = 2}, - [323] = {.lex_state = 19, .external_lex_state = 24}, - [324] = {.lex_state = 19}, - [325] = {.lex_state = 19}, - [326] = {.lex_state = 19, .external_lex_state = 24}, - [327] = {.lex_state = 0, .external_lex_state = 21}, - [328] = {.lex_state = 19}, - [329] = {.lex_state = 19, .external_lex_state = 20}, + [290] = {.lex_state = 1, .external_lex_state = 24}, + [291] = {.lex_state = 0, .external_lex_state = 25}, + [292] = {.lex_state = 19, .external_lex_state = 26}, + [293] = {.lex_state = 1, .external_lex_state = 24}, + [294] = {.lex_state = 2, .external_lex_state = 20}, + [295] = {.lex_state = 1, .external_lex_state = 24}, + [296] = {.lex_state = 1, .external_lex_state = 24}, + [297] = {.lex_state = 19, .external_lex_state = 27}, + [298] = {.lex_state = 2, .external_lex_state = 20}, + [299] = {.lex_state = 1, .external_lex_state = 24}, + [300] = {.lex_state = 0, .external_lex_state = 23}, + [301] = {.lex_state = 2, .external_lex_state = 20}, + [302] = {.lex_state = 2, .external_lex_state = 20}, + [303] = {.lex_state = 2, .external_lex_state = 20}, + [304] = {.lex_state = 2, .external_lex_state = 20}, + [305] = {.lex_state = 2, .external_lex_state = 20}, + [306] = {.lex_state = 1, .external_lex_state = 24}, + [307] = {.lex_state = 19, .external_lex_state = 26}, + [308] = {.lex_state = 2, .external_lex_state = 20}, + [309] = {.lex_state = 2, .external_lex_state = 20}, + [310] = {.lex_state = 2, .external_lex_state = 20}, + [311] = {.lex_state = 19, .external_lex_state = 20}, + [312] = {.lex_state = 4}, + [313] = {.lex_state = 4}, + [314] = {.lex_state = 4}, + [315] = {.lex_state = 0, .external_lex_state = 25}, + [316] = {.lex_state = 19, .external_lex_state = 26}, + [317] = {.lex_state = 4}, + [318] = {.lex_state = 19, .external_lex_state = 27}, + [319] = {.lex_state = 19, .external_lex_state = 28}, + [320] = {.lex_state = 19, .external_lex_state = 20}, + [321] = {.lex_state = 4}, + [322] = {.lex_state = 19, .external_lex_state = 20}, + [323] = {.lex_state = 19, .external_lex_state = 28}, + [324] = {.lex_state = 19, .external_lex_state = 20}, + [325] = {.lex_state = 4}, + [326] = {.lex_state = 19, .external_lex_state = 20}, + [327] = {.lex_state = 19, .external_lex_state = 29}, + [328] = {.lex_state = 19, .external_lex_state = 29}, + [329] = {.lex_state = 19, .external_lex_state = 29}, [330] = {.lex_state = 19}, - [331] = {.lex_state = 19, .external_lex_state = 20}, - [332] = {.lex_state = 19}, - [333] = {.lex_state = 0, .external_lex_state = 25}, - [334] = {.lex_state = 19, .external_lex_state = 26}, - [335] = {.lex_state = 37, .external_lex_state = 27}, - [336] = {.lex_state = 6}, - [337] = {.lex_state = 37, .external_lex_state = 27}, - [338] = {.lex_state = 37, .external_lex_state = 27}, - [339] = {.lex_state = 37, .external_lex_state = 27}, - [340] = {.lex_state = 0, .external_lex_state = 25}, - [341] = {.lex_state = 0, .external_lex_state = 25}, - [342] = {.lex_state = 37, .external_lex_state = 27}, - [343] = {.lex_state = 37, .external_lex_state = 27}, - [344] = {.lex_state = 0, .external_lex_state = 23}, - [345] = {.lex_state = 37, .external_lex_state = 27}, - [346] = {.lex_state = 0, .external_lex_state = 28}, - [347] = {.lex_state = 19}, - [348] = {.lex_state = 37, .external_lex_state = 27}, - [349] = {.lex_state = 0, .external_lex_state = 28}, - [350] = {.lex_state = 37, .external_lex_state = 27}, - [351] = {.lex_state = 6}, - [352] = {.lex_state = 37, .external_lex_state = 27}, - [353] = {.lex_state = 37, .external_lex_state = 27}, - [354] = {.lex_state = 37, .external_lex_state = 27}, - [355] = {.lex_state = 37, .external_lex_state = 27}, - [356] = {.lex_state = 37, .external_lex_state = 27}, - [357] = {.lex_state = 37, .external_lex_state = 27}, - [358] = {.lex_state = 0, .external_lex_state = 25}, - [359] = {.lex_state = 19, .external_lex_state = 26}, - [360] = {.lex_state = 0, .external_lex_state = 25}, - [361] = {.lex_state = 0, .external_lex_state = 25}, - [362] = {.lex_state = 0, .external_lex_state = 29}, - [363] = {.lex_state = 0, .external_lex_state = 30}, - [364] = {.lex_state = 0, .external_lex_state = 31}, - [365] = {.lex_state = 37, .external_lex_state = 27}, - [366] = {.lex_state = 0, .external_lex_state = 31}, - [367] = {.lex_state = 0, .external_lex_state = 30}, - [368] = {.lex_state = 0, .external_lex_state = 31}, - [369] = {.lex_state = 0, .external_lex_state = 32}, - [370] = {.lex_state = 0, .external_lex_state = 33}, + [331] = {.lex_state = 2}, + [332] = {.lex_state = 19, .external_lex_state = 29}, + [333] = {.lex_state = 19}, + [334] = {.lex_state = 2}, + [335] = {.lex_state = 19, .external_lex_state = 29}, + [336] = {.lex_state = 19, .external_lex_state = 29}, + [337] = {.lex_state = 2}, + [338] = {.lex_state = 19}, + [339] = {.lex_state = 19, .external_lex_state = 29}, + [340] = {.lex_state = 19, .external_lex_state = 29}, + [341] = {.lex_state = 19, .external_lex_state = 28}, + [342] = {.lex_state = 19}, + [343] = {.lex_state = 2}, + [344] = {.lex_state = 19, .external_lex_state = 29}, + [345] = {.lex_state = 19, .external_lex_state = 29}, + [346] = {.lex_state = 19, .external_lex_state = 29}, + [347] = {.lex_state = 19, .external_lex_state = 29}, + [348] = {.lex_state = 2}, + [349] = {.lex_state = 19}, + [350] = {.lex_state = 19}, + [351] = {.lex_state = 19}, + [352] = {.lex_state = 19, .external_lex_state = 29}, + [353] = {.lex_state = 2}, + [354] = {.lex_state = 19, .external_lex_state = 29}, + [355] = {.lex_state = 19}, + [356] = {.lex_state = 19, .external_lex_state = 29}, + [357] = {.lex_state = 2}, + [358] = {.lex_state = 19}, + [359] = {.lex_state = 2}, + [360] = {.lex_state = 2}, + [361] = {.lex_state = 2}, + [362] = {.lex_state = 19, .external_lex_state = 20}, + [363] = {.lex_state = 0, .external_lex_state = 23}, + [364] = {.lex_state = 19}, + [365] = {.lex_state = 19}, + [366] = {.lex_state = 19, .external_lex_state = 20}, + [367] = {.lex_state = 37, .external_lex_state = 30}, + [368] = {.lex_state = 37, .external_lex_state = 30}, + [369] = {.lex_state = 19}, + [370] = {.lex_state = 37, .external_lex_state = 30}, [371] = {.lex_state = 0, .external_lex_state = 31}, - [372] = {.lex_state = 0, .external_lex_state = 32}, - [373] = {.lex_state = 0, .external_lex_state = 33}, - [374] = {.lex_state = 0, .external_lex_state = 32}, - [375] = {.lex_state = 0, .external_lex_state = 33}, - [376] = {.lex_state = 19}, - [377] = {.lex_state = 0, .external_lex_state = 30}, - [378] = {.lex_state = 0, .external_lex_state = 30}, - [379] = {.lex_state = 1, .external_lex_state = 22}, - [380] = {.lex_state = 0, .external_lex_state = 30}, - [381] = {.lex_state = 0, .external_lex_state = 30}, - [382] = {.lex_state = 0, .external_lex_state = 31}, - [383] = {.lex_state = 0, .external_lex_state = 32}, - [384] = {.lex_state = 0, .external_lex_state = 32}, - [385] = {.lex_state = 0, .external_lex_state = 33}, - [386] = {.lex_state = 0, .external_lex_state = 33}, - [387] = {.lex_state = 1, .external_lex_state = 22}, - [388] = {.lex_state = 19}, - [389] = {.lex_state = 0, .external_lex_state = 33}, - [390] = {.lex_state = 0, .external_lex_state = 32}, + [372] = {.lex_state = 37, .external_lex_state = 30}, + [373] = {.lex_state = 37, .external_lex_state = 30}, + [374] = {.lex_state = 37, .external_lex_state = 30}, + [375] = {.lex_state = 6}, + [376] = {.lex_state = 0, .external_lex_state = 25}, + [377] = {.lex_state = 19}, + [378] = {.lex_state = 0, .external_lex_state = 31}, + [379] = {.lex_state = 37, .external_lex_state = 30}, + [380] = {.lex_state = 6}, + [381] = {.lex_state = 0, .external_lex_state = 31}, + [382] = {.lex_state = 37, .external_lex_state = 30}, + [383] = {.lex_state = 37, .external_lex_state = 30}, + [384] = {.lex_state = 37, .external_lex_state = 30}, + [385] = {.lex_state = 19, .external_lex_state = 32}, + [386] = {.lex_state = 37, .external_lex_state = 30}, + [387] = {.lex_state = 0, .external_lex_state = 31}, + [388] = {.lex_state = 19, .external_lex_state = 32}, + [389] = {.lex_state = 0, .external_lex_state = 31}, + [390] = {.lex_state = 37, .external_lex_state = 30}, [391] = {.lex_state = 0, .external_lex_state = 31}, - [392] = {.lex_state = 0, .external_lex_state = 30}, - [393] = {.lex_state = 0, .external_lex_state = 30}, - [394] = {.lex_state = 37, .external_lex_state = 27}, - [395] = {.lex_state = 0, .external_lex_state = 30}, - [396] = {.lex_state = 0, .external_lex_state = 30}, - [397] = {.lex_state = 0, .external_lex_state = 29}, - [398] = {.lex_state = 0, .external_lex_state = 34}, + [392] = {.lex_state = 37, .external_lex_state = 30}, + [393] = {.lex_state = 37, .external_lex_state = 30}, + [394] = {.lex_state = 37, .external_lex_state = 30}, + [395] = {.lex_state = 0, .external_lex_state = 33}, + [396] = {.lex_state = 0, .external_lex_state = 34}, + [397] = {.lex_state = 0, .external_lex_state = 33}, + [398] = {.lex_state = 0, .external_lex_state = 35}, [399] = {.lex_state = 0, .external_lex_state = 34}, - [400] = {.lex_state = 0, .external_lex_state = 34}, - [401] = {.lex_state = 0, .external_lex_state = 21}, - [402] = {.lex_state = 0, .external_lex_state = 21}, - [403] = {.lex_state = 0, .external_lex_state = 34}, - [404] = {.lex_state = 0, .external_lex_state = 34}, - [405] = {.lex_state = 4}, - [406] = {.lex_state = 0, .external_lex_state = 34}, + [400] = {.lex_state = 0, .external_lex_state = 35}, + [401] = {.lex_state = 0, .external_lex_state = 33}, + [402] = {.lex_state = 0, .external_lex_state = 34}, + [403] = {.lex_state = 19, .external_lex_state = 27}, + [404] = {.lex_state = 0, .external_lex_state = 33}, + [405] = {.lex_state = 1, .external_lex_state = 24}, + [406] = {.lex_state = 19, .external_lex_state = 27}, [407] = {.lex_state = 0, .external_lex_state = 34}, - [408] = {.lex_state = 0, .external_lex_state = 34}, - [409] = {.lex_state = 0, .external_lex_state = 21}, - [410] = {.lex_state = 0, .external_lex_state = 21}, - [411] = {.lex_state = 0, .external_lex_state = 34}, - [412] = {.lex_state = 4}, - [413] = {.lex_state = 4}, - [414] = {.lex_state = 0, .external_lex_state = 34}, - [415] = {.lex_state = 0, .external_lex_state = 21}, - [416] = {.lex_state = 0, .external_lex_state = 34}, + [408] = {.lex_state = 37, .external_lex_state = 30}, + [409] = {.lex_state = 0, .external_lex_state = 34}, + [410] = {.lex_state = 19}, + [411] = {.lex_state = 19}, + [412] = {.lex_state = 0, .external_lex_state = 35}, + [413] = {.lex_state = 0, .external_lex_state = 35}, + [414] = {.lex_state = 1, .external_lex_state = 24}, + [415] = {.lex_state = 0, .external_lex_state = 35}, + [416] = {.lex_state = 0, .external_lex_state = 35}, [417] = {.lex_state = 0, .external_lex_state = 34}, - [418] = {.lex_state = 0, .external_lex_state = 34}, - [419] = {.lex_state = 0, .external_lex_state = 34}, - [420] = {.lex_state = 0, .external_lex_state = 34}, - [421] = {.lex_state = 0, .external_lex_state = 34}, - [422] = {.lex_state = 0, .external_lex_state = 34}, - [423] = {.lex_state = 0, .external_lex_state = 34}, - [424] = {.lex_state = 0, .external_lex_state = 35}, - [425] = {.lex_state = 0, .external_lex_state = 34}, - [426] = {.lex_state = 0, .external_lex_state = 34}, - [427] = {.lex_state = 4}, - [428] = {.lex_state = 0, .external_lex_state = 34}, - [429] = {.lex_state = 0, .external_lex_state = 34}, - [430] = {.lex_state = 0, .external_lex_state = 34}, - [431] = {.lex_state = 0, .external_lex_state = 35}, - [432] = {.lex_state = 0, .external_lex_state = 21}, - [433] = {.lex_state = 0, .external_lex_state = 34}, - [434] = {.lex_state = 0, .external_lex_state = 21}, - [435] = {.lex_state = 0, .external_lex_state = 35}, - [436] = {.lex_state = 0, .external_lex_state = 35}, - [437] = {.lex_state = 0, .external_lex_state = 34}, - [438] = {.lex_state = 0, .external_lex_state = 34}, - [439] = {.lex_state = 0, .external_lex_state = 34}, - [440] = {.lex_state = 0, .external_lex_state = 34}, - [441] = {.lex_state = 0, .external_lex_state = 34}, - [442] = {.lex_state = 0, .external_lex_state = 34}, - [443] = {.lex_state = 0, .external_lex_state = 34}, - [444] = {.lex_state = 0, .external_lex_state = 34}, - [445] = {.lex_state = 0, .external_lex_state = 35}, - [446] = {.lex_state = 4}, - [447] = {.lex_state = 0, .external_lex_state = 34}, - [448] = {.lex_state = 0, .external_lex_state = 34}, - [449] = {.lex_state = 0, .external_lex_state = 34}, - [450] = {.lex_state = 4}, - [451] = {.lex_state = 0, .external_lex_state = 34}, - [452] = {.lex_state = 0, .external_lex_state = 34}, + [418] = {.lex_state = 0, .external_lex_state = 33}, + [419] = {.lex_state = 0, .external_lex_state = 33}, + [420] = {.lex_state = 37, .external_lex_state = 30}, + [421] = {.lex_state = 0, .external_lex_state = 36}, + [422] = {.lex_state = 0, .external_lex_state = 23}, + [423] = {.lex_state = 0, .external_lex_state = 36}, + [424] = {.lex_state = 0, .external_lex_state = 36}, + [425] = {.lex_state = 0, .external_lex_state = 36}, + [426] = {.lex_state = 0, .external_lex_state = 36}, + [427] = {.lex_state = 0, .external_lex_state = 36}, + [428] = {.lex_state = 0, .external_lex_state = 36}, + [429] = {.lex_state = 0, .external_lex_state = 36}, + [430] = {.lex_state = 0, .external_lex_state = 36}, + [431] = {.lex_state = 0, .external_lex_state = 36}, + [432] = {.lex_state = 0, .external_lex_state = 36}, + [433] = {.lex_state = 0, .external_lex_state = 36}, + [434] = {.lex_state = 0, .external_lex_state = 36}, + [435] = {.lex_state = 0, .external_lex_state = 36}, + [436] = {.lex_state = 0, .external_lex_state = 36}, + [437] = {.lex_state = 0, .external_lex_state = 36}, + [438] = {.lex_state = 0, .external_lex_state = 36}, + [439] = {.lex_state = 0, .external_lex_state = 36}, + [440] = {.lex_state = 0, .external_lex_state = 36}, + [441] = {.lex_state = 0, .external_lex_state = 36}, + [442] = {.lex_state = 0, .external_lex_state = 36}, + [443] = {.lex_state = 0, .external_lex_state = 36}, + [444] = {.lex_state = 4}, + [445] = {.lex_state = 0, .external_lex_state = 36}, + [446] = {.lex_state = 0, .external_lex_state = 36}, + [447] = {.lex_state = 4}, + [448] = {.lex_state = 0, .external_lex_state = 36}, + [449] = {.lex_state = 0, .external_lex_state = 36}, + [450] = {.lex_state = 0, .external_lex_state = 23}, + [451] = {.lex_state = 0, .external_lex_state = 23}, + [452] = {.lex_state = 0, .external_lex_state = 36}, [453] = {.lex_state = 4}, - [454] = {.lex_state = 0, .external_lex_state = 34}, - [455] = {.lex_state = 0, .external_lex_state = 34}, - [456] = {.lex_state = 0, .external_lex_state = 34}, - [457] = {.lex_state = 4}, - [458] = {.lex_state = 0, .external_lex_state = 34}, + [454] = {.lex_state = 0, .external_lex_state = 23}, + [455] = {.lex_state = 0, .external_lex_state = 36}, + [456] = {.lex_state = 0, .external_lex_state = 36}, + [457] = {.lex_state = 0, .external_lex_state = 36}, + [458] = {.lex_state = 0, .external_lex_state = 36}, [459] = {.lex_state = 0, .external_lex_state = 36}, - [460] = {.lex_state = 0, .external_lex_state = 27}, - [461] = {.lex_state = 0, .external_lex_state = 23}, + [460] = {.lex_state = 0, .external_lex_state = 36}, + [461] = {.lex_state = 0, .external_lex_state = 36}, [462] = {.lex_state = 0, .external_lex_state = 23}, [463] = {.lex_state = 0, .external_lex_state = 23}, - [464] = {.lex_state = 0, .external_lex_state = 23}, - [465] = {.lex_state = 0, .external_lex_state = 23}, - [466] = {.lex_state = 0, .external_lex_state = 23}, - [467] = {.lex_state = 0, .external_lex_state = 27}, - [468] = {.lex_state = 0, .external_lex_state = 23}, - [469] = {.lex_state = 0, .external_lex_state = 27}, - [470] = {.lex_state = 0, .external_lex_state = 37}, - [471] = {.lex_state = 0, .external_lex_state = 38}, - [472] = {.lex_state = 0, .external_lex_state = 39}, - [473] = {.lex_state = 37, .external_lex_state = 40}, - [474] = {.lex_state = 0, .external_lex_state = 41}, - [475] = {.lex_state = 0, .external_lex_state = 42}, - [476] = {.lex_state = 0, .external_lex_state = 43}, - [477] = {.lex_state = 0, .external_lex_state = 44}, - [478] = {.lex_state = 0, .external_lex_state = 37}, - [479] = {.lex_state = 0, .external_lex_state = 38}, - [480] = {.lex_state = 0, .external_lex_state = 45}, - [481] = {.lex_state = 0, .external_lex_state = 46}, - [482] = {.lex_state = 0, .external_lex_state = 47}, - [483] = {.lex_state = 0, .external_lex_state = 48}, - [484] = {.lex_state = 0, .external_lex_state = 39}, - [485] = {.lex_state = 0, .external_lex_state = 49}, - [486] = {.lex_state = 0, .external_lex_state = 50}, - [487] = {.lex_state = 0, .external_lex_state = 42}, - [488] = {.lex_state = 7, .external_lex_state = 24}, - [489] = {.lex_state = 0, .external_lex_state = 50}, - [490] = {.lex_state = 0, .external_lex_state = 51}, - [491] = {.lex_state = 0, .external_lex_state = 43}, - [492] = {.lex_state = 0, .external_lex_state = 38}, - [493] = {.lex_state = 0, .external_lex_state = 52}, - [494] = {.lex_state = 0, .external_lex_state = 53}, - [495] = {.lex_state = 0, .external_lex_state = 45}, - [496] = {.lex_state = 0, .external_lex_state = 46}, - [497] = {.lex_state = 0, .external_lex_state = 47}, - [498] = {.lex_state = 0, .external_lex_state = 48}, - [499] = {.lex_state = 0, .external_lex_state = 49}, - [500] = {.lex_state = 0, .external_lex_state = 50}, - [501] = {.lex_state = 8}, - [502] = {.lex_state = 0, .external_lex_state = 51}, - [503] = {.lex_state = 0, .external_lex_state = 54}, + [464] = {.lex_state = 0, .external_lex_state = 36}, + [465] = {.lex_state = 19, .external_lex_state = 27}, + [466] = {.lex_state = 0, .external_lex_state = 36}, + [467] = {.lex_state = 0, .external_lex_state = 36}, + [468] = {.lex_state = 4}, + [469] = {.lex_state = 4}, + [470] = {.lex_state = 4}, + [471] = {.lex_state = 0, .external_lex_state = 36}, + [472] = {.lex_state = 4}, + [473] = {.lex_state = 4}, + [474] = {.lex_state = 0, .external_lex_state = 23}, + [475] = {.lex_state = 0, .external_lex_state = 36}, + [476] = {.lex_state = 0, .external_lex_state = 36}, + [477] = {.lex_state = 0, .external_lex_state = 36}, + [478] = {.lex_state = 0, .external_lex_state = 25}, + [479] = {.lex_state = 0, .external_lex_state = 25}, + [480] = {.lex_state = 0, .external_lex_state = 25}, + [481] = {.lex_state = 0, .external_lex_state = 25}, + [482] = {.lex_state = 0, .external_lex_state = 37}, + [483] = {.lex_state = 0, .external_lex_state = 25}, + [484] = {.lex_state = 0, .external_lex_state = 25}, + [485] = {.lex_state = 0, .external_lex_state = 30}, + [486] = {.lex_state = 0, .external_lex_state = 30}, + [487] = {.lex_state = 0, .external_lex_state = 30}, + [488] = {.lex_state = 0, .external_lex_state = 25}, + [489] = {.lex_state = 0, .external_lex_state = 38}, + [490] = {.lex_state = 0, .external_lex_state = 39}, + [491] = {.lex_state = 0, .external_lex_state = 40}, + [492] = {.lex_state = 0, .external_lex_state = 41}, + [493] = {.lex_state = 0, .external_lex_state = 42}, + [494] = {.lex_state = 0, .external_lex_state = 43}, + [495] = {.lex_state = 0, .external_lex_state = 44}, + [496] = {.lex_state = 0, .external_lex_state = 45}, + [497] = {.lex_state = 0, .external_lex_state = 46}, + [498] = {.lex_state = 0, .external_lex_state = 39}, + [499] = {.lex_state = 0, .external_lex_state = 47}, + [500] = {.lex_state = 0, .external_lex_state = 48}, + [501] = {.lex_state = 0, .external_lex_state = 49}, + [502] = {.lex_state = 0, .external_lex_state = 50}, + [503] = {.lex_state = 0, .external_lex_state = 51}, [504] = {.lex_state = 0, .external_lex_state = 52}, - [505] = {.lex_state = 7, .external_lex_state = 24}, - [506] = {.lex_state = 0, .external_lex_state = 44}, - [507] = {.lex_state = 0, .external_lex_state = 41}, - [508] = {.lex_state = 0, .external_lex_state = 52}, - [509] = {.lex_state = 0, .external_lex_state = 53}, - [510] = {.lex_state = 0, .external_lex_state = 41}, - [511] = {.lex_state = 37}, - [512] = {.lex_state = 37, .external_lex_state = 40}, - [513] = {.lex_state = 0, .external_lex_state = 37}, - [514] = {.lex_state = 0, .external_lex_state = 53}, - [515] = {.lex_state = 0, .external_lex_state = 44}, - [516] = {.lex_state = 0, .external_lex_state = 44}, - [517] = {.lex_state = 0, .external_lex_state = 53}, - [518] = {.lex_state = 0, .external_lex_state = 52}, - [519] = {.lex_state = 0, .external_lex_state = 51}, - [520] = {.lex_state = 0, .external_lex_state = 50}, - [521] = {.lex_state = 0, .external_lex_state = 49}, - [522] = {.lex_state = 0, .external_lex_state = 51}, - [523] = {.lex_state = 0, .external_lex_state = 48}, - [524] = {.lex_state = 0, .external_lex_state = 47}, - [525] = {.lex_state = 7, .external_lex_state = 24}, - [526] = {.lex_state = 0, .external_lex_state = 50}, - [527] = {.lex_state = 0, .external_lex_state = 46}, - [528] = {.lex_state = 0, .external_lex_state = 45}, - [529] = {.lex_state = 0, .external_lex_state = 38}, - [530] = {.lex_state = 0, .external_lex_state = 43}, - [531] = {.lex_state = 0, .external_lex_state = 49}, - [532] = {.lex_state = 0, .external_lex_state = 42}, - [533] = {.lex_state = 0, .external_lex_state = 48}, - [534] = {.lex_state = 0, .external_lex_state = 47}, - [535] = {.lex_state = 0, .external_lex_state = 46}, - [536] = {.lex_state = 0, .external_lex_state = 45}, - [537] = {.lex_state = 0, .external_lex_state = 43}, - [538] = {.lex_state = 0, .external_lex_state = 42}, - [539] = {.lex_state = 0, .external_lex_state = 39}, - [540] = {.lex_state = 0, .external_lex_state = 39}, - [541] = {.lex_state = 7, .external_lex_state = 24}, - [542] = {.lex_state = 0, .external_lex_state = 37}, - [543] = {.lex_state = 0, .external_lex_state = 55}, - [544] = {.lex_state = 0, .external_lex_state = 41}, - [545] = {.lex_state = 0, .external_lex_state = 53}, - [546] = {.lex_state = 8}, - [547] = {.lex_state = 0, .external_lex_state = 44}, - [548] = {.lex_state = 0, .external_lex_state = 52}, - [549] = {.lex_state = 0, .external_lex_state = 51}, - [550] = {.lex_state = 0, .external_lex_state = 50}, - [551] = {.lex_state = 7, .external_lex_state = 24}, - [552] = {.lex_state = 0, .external_lex_state = 49}, - [553] = {.lex_state = 0, .external_lex_state = 53}, - [554] = {.lex_state = 0, .external_lex_state = 44}, + [505] = {.lex_state = 0, .external_lex_state = 53}, + [506] = {.lex_state = 7, .external_lex_state = 29}, + [507] = {.lex_state = 37}, + [508] = {.lex_state = 7, .external_lex_state = 29}, + [509] = {.lex_state = 7, .external_lex_state = 29}, + [510] = {.lex_state = 7, .external_lex_state = 29}, + [511] = {.lex_state = 8}, + [512] = {.lex_state = 37, .external_lex_state = 54}, + [513] = {.lex_state = 37}, + [514] = {.lex_state = 8}, + [515] = {.lex_state = 0, .external_lex_state = 53}, + [516] = {.lex_state = 0, .external_lex_state = 52}, + [517] = {.lex_state = 0, .external_lex_state = 51}, + [518] = {.lex_state = 0, .external_lex_state = 50}, + [519] = {.lex_state = 0, .external_lex_state = 49}, + [520] = {.lex_state = 0, .external_lex_state = 48}, + [521] = {.lex_state = 0, .external_lex_state = 47}, + [522] = {.lex_state = 0, .external_lex_state = 39}, + [523] = {.lex_state = 0, .external_lex_state = 46}, + [524] = {.lex_state = 0, .external_lex_state = 45}, + [525] = {.lex_state = 0, .external_lex_state = 44}, + [526] = {.lex_state = 0, .external_lex_state = 43}, + [527] = {.lex_state = 0, .external_lex_state = 42}, + [528] = {.lex_state = 0, .external_lex_state = 55}, + [529] = {.lex_state = 0, .external_lex_state = 41}, + [530] = {.lex_state = 0, .external_lex_state = 40}, + [531] = {.lex_state = 0, .external_lex_state = 38}, + [532] = {.lex_state = 8}, + [533] = {.lex_state = 37, .external_lex_state = 54}, + [534] = {.lex_state = 0, .external_lex_state = 53}, + [535] = {.lex_state = 0, .external_lex_state = 52}, + [536] = {.lex_state = 0, .external_lex_state = 51}, + [537] = {.lex_state = 0, .external_lex_state = 50}, + [538] = {.lex_state = 0, .external_lex_state = 49}, + [539] = {.lex_state = 0, .external_lex_state = 48}, + [540] = {.lex_state = 0, .external_lex_state = 47}, + [541] = {.lex_state = 0, .external_lex_state = 39}, + [542] = {.lex_state = 0, .external_lex_state = 46}, + [543] = {.lex_state = 0, .external_lex_state = 45}, + [544] = {.lex_state = 0, .external_lex_state = 44}, + [545] = {.lex_state = 0, .external_lex_state = 43}, + [546] = {.lex_state = 0, .external_lex_state = 42}, + [547] = {.lex_state = 0, .external_lex_state = 41}, + [548] = {.lex_state = 0, .external_lex_state = 40}, + [549] = {.lex_state = 0, .external_lex_state = 38}, + [550] = {.lex_state = 0, .external_lex_state = 53}, + [551] = {.lex_state = 0, .external_lex_state = 52}, + [552] = {.lex_state = 0, .external_lex_state = 51}, + [553] = {.lex_state = 0, .external_lex_state = 50}, + [554] = {.lex_state = 0, .external_lex_state = 49}, [555] = {.lex_state = 0, .external_lex_state = 48}, - [556] = {.lex_state = 0, .external_lex_state = 52}, - [557] = {.lex_state = 0, .external_lex_state = 56}, - [558] = {.lex_state = 0, .external_lex_state = 56}, - [559] = {.lex_state = 0, .external_lex_state = 47}, - [560] = {.lex_state = 0, .external_lex_state = 57}, - [561] = {.lex_state = 0, .external_lex_state = 51}, - [562] = {.lex_state = 0, .external_lex_state = 41}, - [563] = {.lex_state = 0, .external_lex_state = 46}, - [564] = {.lex_state = 0, .external_lex_state = 49}, - [565] = {.lex_state = 0, .external_lex_state = 56}, - [566] = {.lex_state = 0, .external_lex_state = 48}, - [567] = {.lex_state = 0, .external_lex_state = 56}, - [568] = {.lex_state = 0, .external_lex_state = 45}, - [569] = {.lex_state = 0, .external_lex_state = 47}, - [570] = {.lex_state = 0, .external_lex_state = 57}, - [571] = {.lex_state = 0, .external_lex_state = 57}, - [572] = {.lex_state = 0, .external_lex_state = 46}, - [573] = {.lex_state = 0, .external_lex_state = 38}, - [574] = {.lex_state = 0, .external_lex_state = 45}, - [575] = {.lex_state = 0, .external_lex_state = 56}, - [576] = {.lex_state = 0, .external_lex_state = 38}, - [577] = {.lex_state = 37}, - [578] = {.lex_state = 0, .external_lex_state = 43}, - [579] = {.lex_state = 0, .external_lex_state = 57}, - [580] = {.lex_state = 0, .external_lex_state = 43}, - [581] = {.lex_state = 0, .external_lex_state = 42}, - [582] = {.lex_state = 0, .external_lex_state = 42}, - [583] = {.lex_state = 0, .external_lex_state = 41}, - [584] = {.lex_state = 0, .external_lex_state = 37}, - [585] = {.lex_state = 0, .external_lex_state = 37}, - [586] = {.lex_state = 0, .external_lex_state = 39}, - [587] = {.lex_state = 0, .external_lex_state = 55}, - [588] = {.lex_state = 8}, - [589] = {.lex_state = 0, .external_lex_state = 39}, - [590] = {.lex_state = 37, .external_lex_state = 58}, - [591] = {.lex_state = 0, .external_lex_state = 59}, - [592] = {.lex_state = 0, .external_lex_state = 34}, - [593] = {.lex_state = 0, .external_lex_state = 34}, - [594] = {.lex_state = 0, .external_lex_state = 34}, - [595] = {.lex_state = 0, .external_lex_state = 34}, - [596] = {.lex_state = 0, .external_lex_state = 33}, - [597] = {.lex_state = 0, .external_lex_state = 34}, - [598] = {.lex_state = 0, .external_lex_state = 60}, - [599] = {.lex_state = 0, .external_lex_state = 34}, - [600] = {.lex_state = 37, .external_lex_state = 27}, - [601] = {.lex_state = 0, .external_lex_state = 31}, - [602] = {.lex_state = 0, .external_lex_state = 34}, - [603] = {.lex_state = 0, .external_lex_state = 34}, - [604] = {.lex_state = 0, .external_lex_state = 34}, - [605] = {.lex_state = 0, .external_lex_state = 61}, - [606] = {.lex_state = 0, .external_lex_state = 61}, - [607] = {.lex_state = 0, .external_lex_state = 25}, - [608] = {.lex_state = 0, .external_lex_state = 34}, - [609] = {.lex_state = 0, .external_lex_state = 34}, - [610] = {.lex_state = 0, .external_lex_state = 34}, - [611] = {.lex_state = 0, .external_lex_state = 34}, - [612] = {.lex_state = 0, .external_lex_state = 34}, - [613] = {.lex_state = 0, .external_lex_state = 34}, + [556] = {.lex_state = 0, .external_lex_state = 47}, + [557] = {.lex_state = 0, .external_lex_state = 39}, + [558] = {.lex_state = 0, .external_lex_state = 46}, + [559] = {.lex_state = 7, .external_lex_state = 29}, + [560] = {.lex_state = 0, .external_lex_state = 45}, + [561] = {.lex_state = 0, .external_lex_state = 44}, + [562] = {.lex_state = 0, .external_lex_state = 52}, + [563] = {.lex_state = 0, .external_lex_state = 42}, + [564] = {.lex_state = 0, .external_lex_state = 41}, + [565] = {.lex_state = 0, .external_lex_state = 40}, + [566] = {.lex_state = 0, .external_lex_state = 53}, + [567] = {.lex_state = 0, .external_lex_state = 52}, + [568] = {.lex_state = 0, .external_lex_state = 51}, + [569] = {.lex_state = 0, .external_lex_state = 50}, + [570] = {.lex_state = 0, .external_lex_state = 49}, + [571] = {.lex_state = 0, .external_lex_state = 48}, + [572] = {.lex_state = 0, .external_lex_state = 47}, + [573] = {.lex_state = 0, .external_lex_state = 39}, + [574] = {.lex_state = 0, .external_lex_state = 46}, + [575] = {.lex_state = 0, .external_lex_state = 45}, + [576] = {.lex_state = 0, .external_lex_state = 44}, + [577] = {.lex_state = 0, .external_lex_state = 43}, + [578] = {.lex_state = 0, .external_lex_state = 42}, + [579] = {.lex_state = 0, .external_lex_state = 41}, + [580] = {.lex_state = 0, .external_lex_state = 56}, + [581] = {.lex_state = 0, .external_lex_state = 40}, + [582] = {.lex_state = 0, .external_lex_state = 38}, + [583] = {.lex_state = 0, .external_lex_state = 38}, + [584] = {.lex_state = 0, .external_lex_state = 40}, + [585] = {.lex_state = 0, .external_lex_state = 41}, + [586] = {.lex_state = 0, .external_lex_state = 56}, + [587] = {.lex_state = 0, .external_lex_state = 42}, + [588] = {.lex_state = 0, .external_lex_state = 57}, + [589] = {.lex_state = 0, .external_lex_state = 57}, + [590] = {.lex_state = 0, .external_lex_state = 43}, + [591] = {.lex_state = 0, .external_lex_state = 58}, + [592] = {.lex_state = 0, .external_lex_state = 44}, + [593] = {.lex_state = 0, .external_lex_state = 45}, + [594] = {.lex_state = 0, .external_lex_state = 57}, + [595] = {.lex_state = 0, .external_lex_state = 57}, + [596] = {.lex_state = 0, .external_lex_state = 50}, + [597] = {.lex_state = 0, .external_lex_state = 46}, + [598] = {.lex_state = 0, .external_lex_state = 49}, + [599] = {.lex_state = 0, .external_lex_state = 58}, + [600] = {.lex_state = 0, .external_lex_state = 58}, + [601] = {.lex_state = 0, .external_lex_state = 53}, + [602] = {.lex_state = 0, .external_lex_state = 48}, + [603] = {.lex_state = 0, .external_lex_state = 43}, + [604] = {.lex_state = 0, .external_lex_state = 58}, + [605] = {.lex_state = 0, .external_lex_state = 38}, + [606] = {.lex_state = 0, .external_lex_state = 57}, + [607] = {.lex_state = 0, .external_lex_state = 47}, + [608] = {.lex_state = 0, .external_lex_state = 51}, + [609] = {.lex_state = 0, .external_lex_state = 35}, + [610] = {.lex_state = 0, .external_lex_state = 59}, + [611] = {.lex_state = 0, .external_lex_state = 36}, + [612] = {.lex_state = 0, .external_lex_state = 35}, + [613] = {.lex_state = 0, .external_lex_state = 36}, [614] = {.lex_state = 0, .external_lex_state = 34}, - [615] = {.lex_state = 8}, - [616] = {.lex_state = 0, .external_lex_state = 34}, - [617] = {.lex_state = 0, .external_lex_state = 34}, - [618] = {.lex_state = 9}, - [619] = {.lex_state = 0, .external_lex_state = 34}, - [620] = {.lex_state = 0, .external_lex_state = 34}, - [621] = {.lex_state = 0, .external_lex_state = 34}, - [622] = {.lex_state = 0, .external_lex_state = 34}, - [623] = {.lex_state = 0, .external_lex_state = 62}, - [624] = {.lex_state = 0, .external_lex_state = 62}, - [625] = {.lex_state = 0, .external_lex_state = 60}, - [626] = {.lex_state = 0, .external_lex_state = 34}, - [627] = {.lex_state = 0, .external_lex_state = 63}, - [628] = {.lex_state = 0, .external_lex_state = 63}, - [629] = {.lex_state = 0, .external_lex_state = 34}, - [630] = {.lex_state = 0, .external_lex_state = 31}, - [631] = {.lex_state = 0, .external_lex_state = 34}, - [632] = {.lex_state = 0, .external_lex_state = 31}, - [633] = {.lex_state = 0, .external_lex_state = 59}, - [634] = {.lex_state = 0, .external_lex_state = 34}, - [635] = {.lex_state = 0, .external_lex_state = 34}, - [636] = {.lex_state = 0, .external_lex_state = 33}, - [637] = {.lex_state = 0, .external_lex_state = 32}, - [638] = {.lex_state = 0, .external_lex_state = 33}, - [639] = {.lex_state = 0, .external_lex_state = 33}, - [640] = {.lex_state = 0, .external_lex_state = 58}, - [641] = {.lex_state = 10}, - [642] = {.lex_state = 0, .external_lex_state = 64}, - [643] = {.lex_state = 0, .external_lex_state = 25}, - [644] = {.lex_state = 0, .external_lex_state = 20}, - [645] = {.lex_state = 0, .external_lex_state = 65}, - [646] = {.lex_state = 0, .external_lex_state = 34}, - [647] = {.lex_state = 0}, - [648] = {.lex_state = 0, .external_lex_state = 34}, - [649] = {.lex_state = 0, .external_lex_state = 34}, - [650] = {.lex_state = 0, .external_lex_state = 34}, - [651] = {.lex_state = 0, .external_lex_state = 34}, - [652] = {.lex_state = 0, .external_lex_state = 34}, - [653] = {.lex_state = 0, .external_lex_state = 34}, - [654] = {.lex_state = 0, .external_lex_state = 34}, - [655] = {.lex_state = 0, .external_lex_state = 34}, - [656] = {.lex_state = 0, .external_lex_state = 34}, - [657] = {.lex_state = 0, .external_lex_state = 20}, - [658] = {.lex_state = 0, .external_lex_state = 25}, - [659] = {.lex_state = 0, .external_lex_state = 25}, - [660] = {.lex_state = 0, .external_lex_state = 34}, - [661] = {.lex_state = 0, .external_lex_state = 34}, - [662] = {.lex_state = 0, .external_lex_state = 59}, - [663] = {.lex_state = 0, .external_lex_state = 34}, - [664] = {.lex_state = 0, .external_lex_state = 58}, - [665] = {.lex_state = 0, .external_lex_state = 34}, - [666] = {.lex_state = 0, .external_lex_state = 60}, - [667] = {.lex_state = 0, .external_lex_state = 66}, - [668] = {.lex_state = 0, .external_lex_state = 66}, - [669] = {.lex_state = 0, .external_lex_state = 34}, - [670] = {.lex_state = 0, .external_lex_state = 31}, - [671] = {.lex_state = 37, .external_lex_state = 58}, - [672] = {.lex_state = 0, .external_lex_state = 32}, - [673] = {.lex_state = 0, .external_lex_state = 59}, - [674] = {.lex_state = 0, .external_lex_state = 32}, - [675] = {.lex_state = 0, .external_lex_state = 67}, - [676] = {.lex_state = 0, .external_lex_state = 32}, - [677] = {.lex_state = 0, .external_lex_state = 65}, - [678] = {.lex_state = 0, .external_lex_state = 66}, - [679] = {.lex_state = 0, .external_lex_state = 67}, - [680] = {.lex_state = 0, .external_lex_state = 64}, - [681] = {.lex_state = 0, .external_lex_state = 66}, - [682] = {.lex_state = 0, .external_lex_state = 34}, - [683] = {.lex_state = 0, .external_lex_state = 20}, - [684] = {.lex_state = 0, .external_lex_state = 34}, - [685] = {.lex_state = 37, .external_lex_state = 27}, - [686] = {.lex_state = 0, .external_lex_state = 66}, - [687] = {.lex_state = 0}, - [688] = {.lex_state = 0}, - [689] = {.lex_state = 0, .external_lex_state = 68}, - [690] = {.lex_state = 4}, - [691] = {.lex_state = 9, .external_lex_state = 24}, - [692] = {.lex_state = 0, .external_lex_state = 60}, - [693] = {.lex_state = 4}, - [694] = {.lex_state = 4}, - [695] = {.lex_state = 0, .external_lex_state = 46}, - [696] = {.lex_state = 0, .external_lex_state = 69}, - [697] = {.lex_state = 4}, - [698] = {.lex_state = 0}, - [699] = {.lex_state = 0, .external_lex_state = 41}, - [700] = {.lex_state = 0, .external_lex_state = 41}, - [701] = {.lex_state = 0}, - [702] = {.lex_state = 9, .external_lex_state = 24}, - [703] = {.lex_state = 0, .external_lex_state = 42}, - [704] = {.lex_state = 0}, - [705] = {.lex_state = 0, .external_lex_state = 42}, - [706] = {.lex_state = 0}, - [707] = {.lex_state = 0}, - [708] = {.lex_state = 0}, - [709] = {.lex_state = 9, .external_lex_state = 24}, - [710] = {.lex_state = 0}, - [711] = {.lex_state = 9, .external_lex_state = 24}, - [712] = {.lex_state = 0, .external_lex_state = 45}, - [713] = {.lex_state = 0}, - [714] = {.lex_state = 0}, - [715] = {.lex_state = 0}, - [716] = {.lex_state = 3, .external_lex_state = 24}, - [717] = {.lex_state = 0}, - [718] = {.lex_state = 0, .external_lex_state = 26}, - [719] = {.lex_state = 0, .external_lex_state = 69}, - [720] = {.lex_state = 0, .external_lex_state = 45}, - [721] = {.lex_state = 0, .external_lex_state = 48}, - [722] = {.lex_state = 0, .external_lex_state = 48}, - [723] = {.lex_state = 0, .external_lex_state = 51}, - [724] = {.lex_state = 0, .external_lex_state = 51}, - [725] = {.lex_state = 0, .external_lex_state = 37}, - [726] = {.lex_state = 0, .external_lex_state = 37}, - [727] = {.lex_state = 0, .external_lex_state = 43}, - [728] = {.lex_state = 0, .external_lex_state = 43}, - [729] = {.lex_state = 0, .external_lex_state = 46}, - [730] = {.lex_state = 0, .external_lex_state = 49}, - [731] = {.lex_state = 0, .external_lex_state = 49}, - [732] = {.lex_state = 0, .external_lex_state = 49}, - [733] = {.lex_state = 0, .external_lex_state = 52}, - [734] = {.lex_state = 0, .external_lex_state = 52}, - [735] = {.lex_state = 0, .external_lex_state = 39}, - [736] = {.lex_state = 0, .external_lex_state = 39}, - [737] = {.lex_state = 0, .external_lex_state = 38}, - [738] = {.lex_state = 0, .external_lex_state = 38}, - [739] = {.lex_state = 0, .external_lex_state = 47}, + [615] = {.lex_state = 0, .external_lex_state = 36}, + [616] = {.lex_state = 0, .external_lex_state = 36}, + [617] = {.lex_state = 0, .external_lex_state = 36}, + [618] = {.lex_state = 0, .external_lex_state = 36}, + [619] = {.lex_state = 0, .external_lex_state = 36}, + [620] = {.lex_state = 0, .external_lex_state = 36}, + [621] = {.lex_state = 0, .external_lex_state = 36}, + [622] = {.lex_state = 0, .external_lex_state = 36}, + [623] = {.lex_state = 0, .external_lex_state = 36}, + [624] = {.lex_state = 0, .external_lex_state = 36}, + [625] = {.lex_state = 0, .external_lex_state = 36}, + [626] = {.lex_state = 0, .external_lex_state = 36}, + [627] = {.lex_state = 0, .external_lex_state = 36}, + [628] = {.lex_state = 0, .external_lex_state = 36}, + [629] = {.lex_state = 0, .external_lex_state = 36}, + [630] = {.lex_state = 0, .external_lex_state = 36}, + [631] = {.lex_state = 0, .external_lex_state = 36}, + [632] = {.lex_state = 0, .external_lex_state = 36}, + [633] = {.lex_state = 0, .external_lex_state = 36}, + [634] = {.lex_state = 0, .external_lex_state = 36}, + [635] = {.lex_state = 0, .external_lex_state = 36}, + [636] = {.lex_state = 0, .external_lex_state = 36}, + [637] = {.lex_state = 0, .external_lex_state = 60}, + [638] = {.lex_state = 0, .external_lex_state = 36}, + [639] = {.lex_state = 0, .external_lex_state = 36}, + [640] = {.lex_state = 0, .external_lex_state = 61}, + [641] = {.lex_state = 0, .external_lex_state = 62}, + [642] = {.lex_state = 0, .external_lex_state = 62}, + [643] = {.lex_state = 0, .external_lex_state = 33}, + [644] = {.lex_state = 0, .external_lex_state = 59}, + [645] = {.lex_state = 0, .external_lex_state = 63}, + [646] = {.lex_state = 0, .external_lex_state = 64}, + [647] = {.lex_state = 0, .external_lex_state = 64}, + [648] = {.lex_state = 0, .external_lex_state = 33}, + [649] = {.lex_state = 0, .external_lex_state = 65}, + [650] = {.lex_state = 0, .external_lex_state = 27}, + [651] = {.lex_state = 0, .external_lex_state = 66}, + [652] = {.lex_state = 0, .external_lex_state = 66}, + [653] = {.lex_state = 0, .external_lex_state = 20}, + [654] = {.lex_state = 0, .external_lex_state = 20}, + [655] = {.lex_state = 0, .external_lex_state = 36}, + [656] = {.lex_state = 0, .external_lex_state = 36}, + [657] = {.lex_state = 0, .external_lex_state = 31}, + [658] = {.lex_state = 0, .external_lex_state = 33}, + [659] = {.lex_state = 0, .external_lex_state = 34}, + [660] = {.lex_state = 0, .external_lex_state = 36}, + [661] = {.lex_state = 0, .external_lex_state = 36}, + [662] = {.lex_state = 0, .external_lex_state = 63}, + [663] = {.lex_state = 37, .external_lex_state = 30}, + [664] = {.lex_state = 0, .external_lex_state = 36}, + [665] = {.lex_state = 37, .external_lex_state = 27}, + [666] = {.lex_state = 37, .external_lex_state = 27}, + [667] = {.lex_state = 0, .external_lex_state = 31}, + [668] = {.lex_state = 9}, + [669] = {.lex_state = 0, .external_lex_state = 63}, + [670] = {.lex_state = 8}, + [671] = {.lex_state = 0, .external_lex_state = 61}, + [672] = {.lex_state = 37, .external_lex_state = 30}, + [673] = {.lex_state = 0, .external_lex_state = 20}, + [674] = {.lex_state = 0, .external_lex_state = 35}, + [675] = {.lex_state = 0, .external_lex_state = 36}, + [676] = {.lex_state = 0, .external_lex_state = 36}, + [677] = {.lex_state = 0}, + [678] = {.lex_state = 0, .external_lex_state = 60}, + [679] = {.lex_state = 0, .external_lex_state = 20}, + [680] = {.lex_state = 0, .external_lex_state = 65}, + [681] = {.lex_state = 10}, + [682] = {.lex_state = 0, .external_lex_state = 33}, + [683] = {.lex_state = 0, .external_lex_state = 31}, + [684] = {.lex_state = 0, .external_lex_state = 31}, + [685] = {.lex_state = 0, .external_lex_state = 36}, + [686] = {.lex_state = 0, .external_lex_state = 34}, + [687] = {.lex_state = 0, .external_lex_state = 36}, + [688] = {.lex_state = 0, .external_lex_state = 36}, + [689] = {.lex_state = 0, .external_lex_state = 36}, + [690] = {.lex_state = 0, .external_lex_state = 36}, + [691] = {.lex_state = 0, .external_lex_state = 35}, + [692] = {.lex_state = 0, .external_lex_state = 36}, + [693] = {.lex_state = 0, .external_lex_state = 36}, + [694] = {.lex_state = 0, .external_lex_state = 36}, + [695] = {.lex_state = 0, .external_lex_state = 67}, + [696] = {.lex_state = 0, .external_lex_state = 36}, + [697] = {.lex_state = 0, .external_lex_state = 60}, + [698] = {.lex_state = 0, .external_lex_state = 67}, + [699] = {.lex_state = 0, .external_lex_state = 36}, + [700] = {.lex_state = 0, .external_lex_state = 59}, + [701] = {.lex_state = 0, .external_lex_state = 59}, + [702] = {.lex_state = 0, .external_lex_state = 27}, + [703] = {.lex_state = 0, .external_lex_state = 20}, + [704] = {.lex_state = 0, .external_lex_state = 34}, + [705] = {.lex_state = 0, .external_lex_state = 36}, + [706] = {.lex_state = 0, .external_lex_state = 36}, + [707] = {.lex_state = 0, .external_lex_state = 59}, + [708] = {.lex_state = 0, .external_lex_state = 63}, + [709] = {.lex_state = 0, .external_lex_state = 30}, + [710] = {.lex_state = 0, .external_lex_state = 32}, + [711] = {.lex_state = 0, .external_lex_state = 67}, + [712] = {.lex_state = 0, .external_lex_state = 30}, + [713] = {.lex_state = 4}, + [714] = {.lex_state = 0, .external_lex_state = 30}, + [715] = {.lex_state = 0, .external_lex_state = 30}, + [716] = {.lex_state = 0, .external_lex_state = 30}, + [717] = {.lex_state = 4}, + [718] = {.lex_state = 0, .external_lex_state = 45}, + [719] = {.lex_state = 4}, + [720] = {.lex_state = 0, .external_lex_state = 68}, + [721] = {.lex_state = 0, .external_lex_state = 47}, + [722] = {.lex_state = 9, .external_lex_state = 29}, + [723] = {.lex_state = 4}, + [724] = {.lex_state = 0, .external_lex_state = 50}, + [725] = {.lex_state = 0, .external_lex_state = 32}, + [726] = {.lex_state = 0, .external_lex_state = 30}, + [727] = {.lex_state = 0, .external_lex_state = 30}, + [728] = {.lex_state = 0, .external_lex_state = 30}, + [729] = {.lex_state = 9, .external_lex_state = 29}, + [730] = {.lex_state = 0, .external_lex_state = 53}, + [731] = {.lex_state = 0, .external_lex_state = 30}, + [732] = {.lex_state = 0, .external_lex_state = 30}, + [733] = {.lex_state = 0}, + [734] = {.lex_state = 0}, + [735] = {.lex_state = 0, .external_lex_state = 30}, + [736] = {.lex_state = 0}, + [737] = {.lex_state = 9, .external_lex_state = 29}, + [738] = {.lex_state = 0}, + [739] = {.lex_state = 0}, [740] = {.lex_state = 0}, - [741] = {.lex_state = 0, .external_lex_state = 47}, - [742] = {.lex_state = 0}, - [743] = {.lex_state = 0}, - [744] = {.lex_state = 0}, - [745] = {.lex_state = 0, .external_lex_state = 50}, - [746] = {.lex_state = 0}, - [747] = {.lex_state = 9, .external_lex_state = 24}, - [748] = {.lex_state = 0, .external_lex_state = 69}, - [749] = {.lex_state = 0, .external_lex_state = 48}, - [750] = {.lex_state = 7, .external_lex_state = 24}, - [751] = {.lex_state = 0}, - [752] = {.lex_state = 0}, - [753] = {.lex_state = 0, .external_lex_state = 20}, - [754] = {.lex_state = 4}, - [755] = {.lex_state = 0}, - [756] = {.lex_state = 0, .external_lex_state = 69}, - [757] = {.lex_state = 9, .external_lex_state = 24}, - [758] = {.lex_state = 0, .external_lex_state = 69}, - [759] = {.lex_state = 0, .external_lex_state = 69}, - [760] = {.lex_state = 0, .external_lex_state = 44}, - [761] = {.lex_state = 0, .external_lex_state = 60}, - [762] = {.lex_state = 0}, - [763] = {.lex_state = 0}, - [764] = {.lex_state = 0}, - [765] = {.lex_state = 0}, - [766] = {.lex_state = 9, .external_lex_state = 24}, - [767] = {.lex_state = 0, .external_lex_state = 44}, + [741] = {.lex_state = 0, .external_lex_state = 30}, + [742] = {.lex_state = 0, .external_lex_state = 30}, + [743] = {.lex_state = 0, .external_lex_state = 30}, + [744] = {.lex_state = 0, .external_lex_state = 32}, + [745] = {.lex_state = 0, .external_lex_state = 68}, + [746] = {.lex_state = 0, .external_lex_state = 68}, + [747] = {.lex_state = 0}, + [748] = {.lex_state = 0}, + [749] = {.lex_state = 9, .external_lex_state = 29}, + [750] = {.lex_state = 0, .external_lex_state = 43}, + [751] = {.lex_state = 0, .external_lex_state = 30}, + [752] = {.lex_state = 0, .external_lex_state = 30}, + [753] = {.lex_state = 3, .external_lex_state = 29}, + [754] = {.lex_state = 0, .external_lex_state = 27}, + [755] = {.lex_state = 0, .external_lex_state = 30}, + [756] = {.lex_state = 0, .external_lex_state = 30}, + [757] = {.lex_state = 4}, + [758] = {.lex_state = 0, .external_lex_state = 30}, + [759] = {.lex_state = 0, .external_lex_state = 30}, + [760] = {.lex_state = 0, .external_lex_state = 30}, + [761] = {.lex_state = 7, .external_lex_state = 29}, + [762] = {.lex_state = 0, .external_lex_state = 52}, + [763] = {.lex_state = 0, .external_lex_state = 30}, + [764] = {.lex_state = 0, .external_lex_state = 68}, + [765] = {.lex_state = 0, .external_lex_state = 53}, + [766] = {.lex_state = 0}, + [767] = {.lex_state = 4}, [768] = {.lex_state = 0}, - [769] = {.lex_state = 0}, - [770] = {.lex_state = 37}, - [771] = {.lex_state = 0}, + [769] = {.lex_state = 0, .external_lex_state = 53}, + [770] = {.lex_state = 0}, + [771] = {.lex_state = 9, .external_lex_state = 29}, [772] = {.lex_state = 0}, - [773] = {.lex_state = 0, .external_lex_state = 26}, - [774] = {.lex_state = 0, .external_lex_state = 69}, - [775] = {.lex_state = 0, .external_lex_state = 50}, - [776] = {.lex_state = 0, .external_lex_state = 47}, - [777] = {.lex_state = 0, .external_lex_state = 38}, - [778] = {.lex_state = 0, .external_lex_state = 44}, - [779] = {.lex_state = 0, .external_lex_state = 39}, - [780] = {.lex_state = 0, .external_lex_state = 52}, - [781] = {.lex_state = 0, .external_lex_state = 27}, - [782] = {.lex_state = 0, .external_lex_state = 46}, - [783] = {.lex_state = 0, .external_lex_state = 43}, - [784] = {.lex_state = 0, .external_lex_state = 27}, - [785] = {.lex_state = 0, .external_lex_state = 27}, - [786] = {.lex_state = 0, .external_lex_state = 27}, - [787] = {.lex_state = 0, .external_lex_state = 27}, - [788] = {.lex_state = 0, .external_lex_state = 27}, - [789] = {.lex_state = 0, .external_lex_state = 27}, - [790] = {.lex_state = 0, .external_lex_state = 27}, - [791] = {.lex_state = 0, .external_lex_state = 27}, - [792] = {.lex_state = 0, .external_lex_state = 27}, - [793] = {.lex_state = 0, .external_lex_state = 27}, - [794] = {.lex_state = 0, .external_lex_state = 51}, - [795] = {.lex_state = 0, .external_lex_state = 53}, - [796] = {.lex_state = 0, .external_lex_state = 27}, - [797] = {.lex_state = 0}, + [773] = {.lex_state = 0}, + [774] = {.lex_state = 9, .external_lex_state = 29}, + [775] = {.lex_state = 0}, + [776] = {.lex_state = 0, .external_lex_state = 50}, + [777] = {.lex_state = 0, .external_lex_state = 60}, + [778] = {.lex_state = 0}, + [779] = {.lex_state = 0}, + [780] = {.lex_state = 0, .external_lex_state = 30}, + [781] = {.lex_state = 0, .external_lex_state = 50}, + [782] = {.lex_state = 0, .external_lex_state = 47}, + [783] = {.lex_state = 0}, + [784] = {.lex_state = 9, .external_lex_state = 29}, + [785] = {.lex_state = 0, .external_lex_state = 38}, + [786] = {.lex_state = 0}, + [787] = {.lex_state = 0, .external_lex_state = 47}, + [788] = {.lex_state = 0}, + [789] = {.lex_state = 0}, + [790] = {.lex_state = 0}, + [791] = {.lex_state = 0}, + [792] = {.lex_state = 0, .external_lex_state = 45}, + [793] = {.lex_state = 9, .external_lex_state = 29}, + [794] = {.lex_state = 0}, + [795] = {.lex_state = 0}, + [796] = {.lex_state = 0, .external_lex_state = 30}, + [797] = {.lex_state = 0, .external_lex_state = 45}, [798] = {.lex_state = 0}, - [799] = {.lex_state = 0, .external_lex_state = 27}, - [800] = {.lex_state = 0, .external_lex_state = 27}, - [801] = {.lex_state = 0, .external_lex_state = 27}, - [802] = {.lex_state = 9, .external_lex_state = 24}, - [803] = {.lex_state = 0, .external_lex_state = 27}, - [804] = {.lex_state = 0}, - [805] = {.lex_state = 0, .external_lex_state = 27}, - [806] = {.lex_state = 0}, - [807] = {.lex_state = 0, .external_lex_state = 27}, - [808] = {.lex_state = 0}, - [809] = {.lex_state = 0, .external_lex_state = 27}, - [810] = {.lex_state = 0, .external_lex_state = 27}, - [811] = {.lex_state = 0}, - [812] = {.lex_state = 9, .external_lex_state = 24}, - [813] = {.lex_state = 0, .external_lex_state = 27}, - [814] = {.lex_state = 4}, - [815] = {.lex_state = 0, .external_lex_state = 27}, - [816] = {.lex_state = 0}, - [817] = {.lex_state = 0}, - [818] = {.lex_state = 9, .external_lex_state = 24}, - [819] = {.lex_state = 0}, - [820] = {.lex_state = 4}, - [821] = {.lex_state = 9, .external_lex_state = 24}, - [822] = {.lex_state = 0, .external_lex_state = 27}, + [799] = {.lex_state = 0}, + [800] = {.lex_state = 0, .external_lex_state = 30}, + [801] = {.lex_state = 0, .external_lex_state = 68}, + [802] = {.lex_state = 0}, + [803] = {.lex_state = 0, .external_lex_state = 42}, + [804] = {.lex_state = 0, .external_lex_state = 42}, + [805] = {.lex_state = 0}, + [806] = {.lex_state = 0, .external_lex_state = 30}, + [807] = {.lex_state = 0, .external_lex_state = 49}, + [808] = {.lex_state = 0, .external_lex_state = 30}, + [809] = {.lex_state = 0, .external_lex_state = 30}, + [810] = {.lex_state = 0, .external_lex_state = 68}, + [811] = {.lex_state = 0, .external_lex_state = 40}, + [812] = {.lex_state = 0, .external_lex_state = 40}, + [813] = {.lex_state = 0, .external_lex_state = 43}, + [814] = {.lex_state = 0, .external_lex_state = 30}, + [815] = {.lex_state = 0, .external_lex_state = 30}, + [816] = {.lex_state = 0, .external_lex_state = 46}, + [817] = {.lex_state = 0, .external_lex_state = 48}, + [818] = {.lex_state = 0, .external_lex_state = 30}, + [819] = {.lex_state = 0, .external_lex_state = 40}, + [820] = {.lex_state = 0, .external_lex_state = 51}, + [821] = {.lex_state = 0, .external_lex_state = 30}, + [822] = {.lex_state = 0}, [823] = {.lex_state = 0}, - [824] = {.lex_state = 0, .external_lex_state = 50}, + [824] = {.lex_state = 0}, [825] = {.lex_state = 0}, - [826] = {.lex_state = 0}, - [827] = {.lex_state = 37, .external_lex_state = 40}, - [828] = {.lex_state = 0, .external_lex_state = 26}, - [829] = {.lex_state = 0, .external_lex_state = 69}, - [830] = {.lex_state = 0, .external_lex_state = 27}, - [831] = {.lex_state = 0, .external_lex_state = 27}, - [832] = {.lex_state = 0, .external_lex_state = 27}, - [833] = {.lex_state = 0, .external_lex_state = 27}, - [834] = {.lex_state = 0, .external_lex_state = 27}, - [835] = {.lex_state = 0, .external_lex_state = 27}, - [836] = {.lex_state = 0, .external_lex_state = 27}, - [837] = {.lex_state = 0, .external_lex_state = 27}, - [838] = {.lex_state = 0, .external_lex_state = 27}, - [839] = {.lex_state = 0, .external_lex_state = 27}, - [840] = {.lex_state = 0, .external_lex_state = 27}, - [841] = {.lex_state = 0, .external_lex_state = 27}, - [842] = {.lex_state = 0, .external_lex_state = 27}, - [843] = {.lex_state = 0, .external_lex_state = 27}, - [844] = {.lex_state = 0, .external_lex_state = 27}, - [845] = {.lex_state = 0, .external_lex_state = 27}, - [846] = {.lex_state = 0, .external_lex_state = 27}, - [847] = {.lex_state = 0, .external_lex_state = 27}, - [848] = {.lex_state = 0, .external_lex_state = 27}, - [849] = {.lex_state = 0, .external_lex_state = 27}, - [850] = {.lex_state = 0, .external_lex_state = 37}, + [826] = {.lex_state = 9, .external_lex_state = 29}, + [827] = {.lex_state = 0}, + [828] = {.lex_state = 0, .external_lex_state = 52}, + [829] = {.lex_state = 9, .external_lex_state = 29}, + [830] = {.lex_state = 0}, + [831] = {.lex_state = 0, .external_lex_state = 61}, + [832] = {.lex_state = 37, .external_lex_state = 54}, + [833] = {.lex_state = 0, .external_lex_state = 20}, + [834] = {.lex_state = 0, .external_lex_state = 68}, + [835] = {.lex_state = 0}, + [836] = {.lex_state = 0}, + [837] = {.lex_state = 0}, + [838] = {.lex_state = 0}, + [839] = {.lex_state = 9, .external_lex_state = 29}, + [840] = {.lex_state = 0, .external_lex_state = 52}, + [841] = {.lex_state = 0, .external_lex_state = 49}, + [842] = {.lex_state = 0, .external_lex_state = 49}, + [843] = {.lex_state = 0, .external_lex_state = 39}, + [844] = {.lex_state = 0, .external_lex_state = 39}, + [845] = {.lex_state = 0, .external_lex_state = 44}, + [846] = {.lex_state = 0, .external_lex_state = 44}, + [847] = {.lex_state = 37, .external_lex_state = 27}, + [848] = {.lex_state = 9, .external_lex_state = 29}, + [849] = {.lex_state = 4}, + [850] = {.lex_state = 0}, [851] = {.lex_state = 0}, - [852] = {.lex_state = 0, .external_lex_state = 53}, - [853] = {.lex_state = 0, .external_lex_state = 45}, - [854] = {.lex_state = 0, .external_lex_state = 26}, - [855] = {.lex_state = 9, .external_lex_state = 24}, - [856] = {.lex_state = 9, .external_lex_state = 24}, - [857] = {.lex_state = 0, .external_lex_state = 26}, - [858] = {.lex_state = 9, .external_lex_state = 24}, - [859] = {.lex_state = 0, .external_lex_state = 42}, - [860] = {.lex_state = 9, .external_lex_state = 24}, - [861] = {.lex_state = 0, .external_lex_state = 41}, - [862] = {.lex_state = 0, .external_lex_state = 70}, - [863] = {.lex_state = 0, .external_lex_state = 24}, - [864] = {.lex_state = 49}, - [865] = {.lex_state = 0, .external_lex_state = 71}, - [866] = {.lex_state = 49}, - [867] = {.lex_state = 0, .external_lex_state = 24}, - [868] = {.lex_state = 0, .external_lex_state = 24}, - [869] = {.lex_state = 0, .external_lex_state = 70}, - [870] = {.lex_state = 0, .external_lex_state = 24}, - [871] = {.lex_state = 0, .external_lex_state = 70}, - [872] = {.lex_state = 0, .external_lex_state = 70}, - [873] = {.lex_state = 0, .external_lex_state = 24}, - [874] = {.lex_state = 0, .external_lex_state = 24}, - [875] = {.lex_state = 0, .external_lex_state = 24}, - [876] = {.lex_state = 0, .external_lex_state = 24}, - [877] = {.lex_state = 0, .external_lex_state = 24}, - [878] = {.lex_state = 0, .external_lex_state = 24}, - [879] = {.lex_state = 0, .external_lex_state = 24}, - [880] = {.lex_state = 0, .external_lex_state = 24}, - [881] = {.lex_state = 0, .external_lex_state = 24}, - [882] = {.lex_state = 0, .external_lex_state = 24}, - [883] = {.lex_state = 0, .external_lex_state = 24}, - [884] = {.lex_state = 0, .external_lex_state = 24}, - [885] = {.lex_state = 4}, - [886] = {.lex_state = 0, .external_lex_state = 24}, - [887] = {.lex_state = 0, .external_lex_state = 24}, - [888] = {.lex_state = 0}, - [889] = {.lex_state = 4}, - [890] = {.lex_state = 9}, - [891] = {.lex_state = 0}, - [892] = {.lex_state = 11}, - [893] = {.lex_state = 0, .external_lex_state = 24}, - [894] = {.lex_state = 0, .external_lex_state = 70}, - [895] = {.lex_state = 0}, - [896] = {.lex_state = 0, .external_lex_state = 70}, - [897] = {.lex_state = 0, .external_lex_state = 70}, - [898] = {.lex_state = 0, .external_lex_state = 24}, - [899] = {.lex_state = 0, .external_lex_state = 40}, - [900] = {.lex_state = 0, .external_lex_state = 24}, - [901] = {.lex_state = 0, .external_lex_state = 24}, - [902] = {.lex_state = 0, .external_lex_state = 24}, - [903] = {.lex_state = 0, .external_lex_state = 24}, - [904] = {.lex_state = 0}, - [905] = {.lex_state = 0, .external_lex_state = 24}, - [906] = {.lex_state = 0, .external_lex_state = 24}, - [907] = {.lex_state = 12}, - [908] = {.lex_state = 0, .external_lex_state = 24}, - [909] = {.lex_state = 0, .external_lex_state = 24}, + [852] = {.lex_state = 0, .external_lex_state = 41}, + [853] = {.lex_state = 0, .external_lex_state = 68}, + [854] = {.lex_state = 0, .external_lex_state = 41}, + [855] = {.lex_state = 0, .external_lex_state = 32}, + [856] = {.lex_state = 0, .external_lex_state = 68}, + [857] = {.lex_state = 0, .external_lex_state = 20}, + [858] = {.lex_state = 0, .external_lex_state = 51}, + [859] = {.lex_state = 0, .external_lex_state = 41}, + [860] = {.lex_state = 0}, + [861] = {.lex_state = 0, .external_lex_state = 30}, + [862] = {.lex_state = 0, .external_lex_state = 44}, + [863] = {.lex_state = 0, .external_lex_state = 30}, + [864] = {.lex_state = 0, .external_lex_state = 30}, + [865] = {.lex_state = 0, .external_lex_state = 30}, + [866] = {.lex_state = 0, .external_lex_state = 51}, + [867] = {.lex_state = 0, .external_lex_state = 66}, + [868] = {.lex_state = 0, .external_lex_state = 48}, + [869] = {.lex_state = 0, .external_lex_state = 30}, + [870] = {.lex_state = 0, .external_lex_state = 30}, + [871] = {.lex_state = 0, .external_lex_state = 48}, + [872] = {.lex_state = 0, .external_lex_state = 30}, + [873] = {.lex_state = 0, .external_lex_state = 30}, + [874] = {.lex_state = 0, .external_lex_state = 64}, + [875] = {.lex_state = 0, .external_lex_state = 46}, + [876] = {.lex_state = 0, .external_lex_state = 30}, + [877] = {.lex_state = 0, .external_lex_state = 46}, + [878] = {.lex_state = 0, .external_lex_state = 39}, + [879] = {.lex_state = 0, .external_lex_state = 60}, + [880] = {.lex_state = 0}, + [881] = {.lex_state = 9, .external_lex_state = 29}, + [882] = {.lex_state = 0, .external_lex_state = 62}, + [883] = {.lex_state = 9, .external_lex_state = 29}, + [884] = {.lex_state = 0, .external_lex_state = 42}, + [885] = {.lex_state = 37}, + [886] = {.lex_state = 0, .external_lex_state = 69}, + [887] = {.lex_state = 0, .external_lex_state = 30}, + [888] = {.lex_state = 0, .external_lex_state = 32}, + [889] = {.lex_state = 0, .external_lex_state = 43}, + [890] = {.lex_state = 0, .external_lex_state = 30}, + [891] = {.lex_state = 0, .external_lex_state = 38}, + [892] = {.lex_state = 9, .external_lex_state = 29}, + [893] = {.lex_state = 0, .external_lex_state = 70}, + [894] = {.lex_state = 3}, + [895] = {.lex_state = 0, .external_lex_state = 29}, + [896] = {.lex_state = 3}, + [897] = {.lex_state = 0, .external_lex_state = 29}, + [898] = {.lex_state = 0, .external_lex_state = 70}, + [899] = {.lex_state = 0, .external_lex_state = 70}, + [900] = {.lex_state = 0, .external_lex_state = 29}, + [901] = {.lex_state = 0, .external_lex_state = 29}, + [902] = {.lex_state = 0}, + [903] = {.lex_state = 0, .external_lex_state = 71}, + [904] = {.lex_state = 0, .external_lex_state = 29}, + [905] = {.lex_state = 0, .external_lex_state = 29}, + [906] = {.lex_state = 0, .external_lex_state = 29}, + [907] = {.lex_state = 0, .external_lex_state = 29}, + [908] = {.lex_state = 0, .external_lex_state = 29}, + [909] = {.lex_state = 0, .external_lex_state = 70}, [910] = {.lex_state = 0}, - [911] = {.lex_state = 0, .external_lex_state = 24}, - [912] = {.lex_state = 0, .external_lex_state = 24}, - [913] = {.lex_state = 0, .external_lex_state = 70}, - [914] = {.lex_state = 0, .external_lex_state = 24}, - [915] = {.lex_state = 0}, - [916] = {.lex_state = 0, .external_lex_state = 70}, - [917] = {.lex_state = 0, .external_lex_state = 24}, - [918] = {.lex_state = 3}, - [919] = {.lex_state = 9}, - [920] = {.lex_state = 0}, - [921] = {.lex_state = 0, .external_lex_state = 71}, - [922] = {.lex_state = 0, .external_lex_state = 24}, - [923] = {.lex_state = 0, .external_lex_state = 24}, - [924] = {.lex_state = 0, .external_lex_state = 24}, - [925] = {.lex_state = 0, .external_lex_state = 71}, - [926] = {.lex_state = 0, .external_lex_state = 70}, - [927] = {.lex_state = 0}, - [928] = {.lex_state = 0, .external_lex_state = 24}, - [929] = {.lex_state = 0, .external_lex_state = 24}, - [930] = {.lex_state = 0, .external_lex_state = 70}, - [931] = {.lex_state = 49}, - [932] = {.lex_state = 0, .external_lex_state = 72}, - [933] = {.lex_state = 0, .external_lex_state = 70}, - [934] = {.lex_state = 3}, - [935] = {.lex_state = 0, .external_lex_state = 24}, - [936] = {.lex_state = 3}, - [937] = {.lex_state = 0, .external_lex_state = 24}, - [938] = {.lex_state = 0, .external_lex_state = 24}, - [939] = {.lex_state = 0, .external_lex_state = 24}, - [940] = {.lex_state = 9}, - [941] = {.lex_state = 0, .external_lex_state = 24}, + [911] = {.lex_state = 0, .external_lex_state = 71}, + [912] = {.lex_state = 0, .external_lex_state = 29}, + [913] = {.lex_state = 3}, + [914] = {.lex_state = 0, .external_lex_state = 70}, + [915] = {.lex_state = 0, .external_lex_state = 29}, + [916] = {.lex_state = 0}, + [917] = {.lex_state = 0}, + [918] = {.lex_state = 0, .external_lex_state = 29}, + [919] = {.lex_state = 0, .external_lex_state = 70}, + [920] = {.lex_state = 0, .external_lex_state = 54}, + [921] = {.lex_state = 0, .external_lex_state = 29}, + [922] = {.lex_state = 0}, + [923] = {.lex_state = 11}, + [924] = {.lex_state = 0, .external_lex_state = 29}, + [925] = {.lex_state = 0, .external_lex_state = 29}, + [926] = {.lex_state = 0, .external_lex_state = 29}, + [927] = {.lex_state = 0, .external_lex_state = 29}, + [928] = {.lex_state = 0, .external_lex_state = 29}, + [929] = {.lex_state = 0, .external_lex_state = 29}, + [930] = {.lex_state = 0, .external_lex_state = 29}, + [931] = {.lex_state = 0, .external_lex_state = 29}, + [932] = {.lex_state = 0, .external_lex_state = 70}, + [933] = {.lex_state = 9}, + [934] = {.lex_state = 0, .external_lex_state = 29}, + [935] = {.lex_state = 0, .external_lex_state = 29}, + [936] = {.lex_state = 0, .external_lex_state = 29}, + [937] = {.lex_state = 0, .external_lex_state = 29}, + [938] = {.lex_state = 0}, + [939] = {.lex_state = 49}, + [940] = {.lex_state = 0, .external_lex_state = 71}, + [941] = {.lex_state = 0, .external_lex_state = 29}, [942] = {.lex_state = 0, .external_lex_state = 70}, - [943] = {.lex_state = 0, .external_lex_state = 24}, - [944] = {.lex_state = 0, .external_lex_state = 24}, + [943] = {.lex_state = 0, .external_lex_state = 29}, + [944] = {.lex_state = 0, .external_lex_state = 29}, [945] = {.lex_state = 0}, - [946] = {.lex_state = 0, .external_lex_state = 24}, - [947] = {.lex_state = 0, .external_lex_state = 24}, - [948] = {.lex_state = 0, .external_lex_state = 24}, - [949] = {.lex_state = 0, .external_lex_state = 24}, - [950] = {.lex_state = 0, .external_lex_state = 70}, - [951] = {.lex_state = 0, .external_lex_state = 70}, - [952] = {.lex_state = 49}, - [953] = {.lex_state = 0, .external_lex_state = 24}, - [954] = {.lex_state = 0, .external_lex_state = 40}, - [955] = {.lex_state = 0, .external_lex_state = 24}, - [956] = {.lex_state = 0, .external_lex_state = 24}, - [957] = {.lex_state = 0, .external_lex_state = 24}, - [958] = {.lex_state = 0, .external_lex_state = 71}, - [959] = {.lex_state = 3}, - [960] = {.lex_state = 0, .external_lex_state = 70}, - [961] = {.lex_state = 0, .external_lex_state = 26}, - [962] = {.lex_state = 0, .external_lex_state = 70}, - [963] = {.lex_state = 0, .external_lex_state = 24}, - [964] = {.lex_state = 0, .external_lex_state = 24}, - [965] = {.lex_state = 0, .external_lex_state = 24}, - [966] = {.lex_state = 49}, - [967] = {.lex_state = 9}, - [968] = {.lex_state = 0, .external_lex_state = 24}, - [969] = {.lex_state = 0, .external_lex_state = 24}, - [970] = {.lex_state = 0, .external_lex_state = 70}, - [971] = {.lex_state = 0, .external_lex_state = 70}, - [972] = {.lex_state = 0, .external_lex_state = 24}, - [973] = {.lex_state = 49}, - [974] = {.lex_state = 0, .external_lex_state = 24}, - [975] = {.lex_state = 9}, - [976] = {.lex_state = 0, .external_lex_state = 24}, - [977] = {.lex_state = 0, .external_lex_state = 24}, - [978] = {.lex_state = 0, .external_lex_state = 24}, - [979] = {.lex_state = 0, .external_lex_state = 24}, - [980] = {.lex_state = 0, .external_lex_state = 24}, - [981] = {.lex_state = 9}, - [982] = {.lex_state = 0, .external_lex_state = 24}, - [983] = {.lex_state = 0, .external_lex_state = 24}, - [984] = {.lex_state = 0, .external_lex_state = 24}, - [985] = {.lex_state = 0, .external_lex_state = 24}, + [946] = {.lex_state = 9}, + [947] = {.lex_state = 0}, + [948] = {.lex_state = 9}, + [949] = {.lex_state = 0, .external_lex_state = 29}, + [950] = {.lex_state = 0, .external_lex_state = 29}, + [951] = {.lex_state = 0}, + [952] = {.lex_state = 0, .external_lex_state = 70}, + [953] = {.lex_state = 0, .external_lex_state = 29}, + [954] = {.lex_state = 0, .external_lex_state = 70}, + [955] = {.lex_state = 0, .external_lex_state = 29}, + [956] = {.lex_state = 0, .external_lex_state = 70}, + [957] = {.lex_state = 0, .external_lex_state = 70}, + [958] = {.lex_state = 0, .external_lex_state = 29}, + [959] = {.lex_state = 49}, + [960] = {.lex_state = 0}, + [961] = {.lex_state = 0, .external_lex_state = 72}, + [962] = {.lex_state = 0, .external_lex_state = 29}, + [963] = {.lex_state = 0, .external_lex_state = 29}, + [964] = {.lex_state = 0, .external_lex_state = 29}, + [965] = {.lex_state = 0, .external_lex_state = 29}, + [966] = {.lex_state = 0, .external_lex_state = 29}, + [967] = {.lex_state = 0, .external_lex_state = 70}, + [968] = {.lex_state = 9}, + [969] = {.lex_state = 0, .external_lex_state = 29}, + [970] = {.lex_state = 0, .external_lex_state = 29}, + [971] = {.lex_state = 0, .external_lex_state = 29}, + [972] = {.lex_state = 0, .external_lex_state = 29}, + [973] = {.lex_state = 7}, + [974] = {.lex_state = 0, .external_lex_state = 29}, + [975] = {.lex_state = 0, .external_lex_state = 29}, + [976] = {.lex_state = 0, .external_lex_state = 70}, + [977] = {.lex_state = 0, .external_lex_state = 70}, + [978] = {.lex_state = 0, .external_lex_state = 29}, + [979] = {.lex_state = 0, .external_lex_state = 29}, + [980] = {.lex_state = 0, .external_lex_state = 29}, + [981] = {.lex_state = 49}, + [982] = {.lex_state = 0, .external_lex_state = 29}, + [983] = {.lex_state = 0, .external_lex_state = 71}, + [984] = {.lex_state = 12}, + [985] = {.lex_state = 0, .external_lex_state = 29}, [986] = {.lex_state = 0}, [987] = {.lex_state = 0, .external_lex_state = 70}, - [988] = {.lex_state = 0, .external_lex_state = 70}, - [989] = {.lex_state = 0, .external_lex_state = 24}, - [990] = {.lex_state = 0, .external_lex_state = 24}, - [991] = {.lex_state = 0, .external_lex_state = 71}, - [992] = {.lex_state = 0, .external_lex_state = 70}, - [993] = {.lex_state = 49}, - [994] = {.lex_state = 49}, - [995] = {.lex_state = 9}, - [996] = {.lex_state = 4}, - [997] = {.lex_state = 0}, - [998] = {.lex_state = 0}, - [999] = {.lex_state = 9}, - [1000] = {.lex_state = 11}, - [1001] = {.lex_state = 49}, - [1002] = {.lex_state = 0}, - [1003] = {.lex_state = 4}, - [1004] = {.lex_state = 0, .external_lex_state = 73}, + [988] = {.lex_state = 9}, + [989] = {.lex_state = 0}, + [990] = {.lex_state = 9}, + [991] = {.lex_state = 0}, + [992] = {.lex_state = 0, .external_lex_state = 29}, + [993] = {.lex_state = 0, .external_lex_state = 29}, + [994] = {.lex_state = 0, .external_lex_state = 29}, + [995] = {.lex_state = 49}, + [996] = {.lex_state = 0, .external_lex_state = 29}, + [997] = {.lex_state = 0, .external_lex_state = 29}, + [998] = {.lex_state = 0, .external_lex_state = 29}, + [999] = {.lex_state = 4}, + [1000] = {.lex_state = 0, .external_lex_state = 29}, + [1001] = {.lex_state = 0, .external_lex_state = 70}, + [1002] = {.lex_state = 0, .external_lex_state = 29}, + [1003] = {.lex_state = 49}, + [1004] = {.lex_state = 0, .external_lex_state = 29}, [1005] = {.lex_state = 0}, - [1006] = {.lex_state = 9}, - [1007] = {.lex_state = 11}, - [1008] = {.lex_state = 49}, - [1009] = {.lex_state = 0}, - [1010] = {.lex_state = 4}, - [1011] = {.lex_state = 0, .external_lex_state = 24}, - [1012] = {.lex_state = 0}, - [1013] = {.lex_state = 9}, - [1014] = {.lex_state = 11}, - [1015] = {.lex_state = 49}, - [1016] = {.lex_state = 0, .external_lex_state = 24}, - [1017] = {.lex_state = 4}, - [1018] = {.lex_state = 7}, - [1019] = {.lex_state = 0}, - [1020] = {.lex_state = 9}, - [1021] = {.lex_state = 11}, - [1022] = {.lex_state = 0, .external_lex_state = 24}, - [1023] = {.lex_state = 0, .external_lex_state = 24}, - [1024] = {.lex_state = 0}, - [1025] = {.lex_state = 3}, - [1026] = {.lex_state = 0, .external_lex_state = 26}, - [1027] = {.lex_state = 0, .external_lex_state = 24}, - [1028] = {.lex_state = 0}, - [1029] = {.lex_state = 3}, - [1030] = {.lex_state = 0, .external_lex_state = 24}, - [1031] = {.lex_state = 0, .external_lex_state = 24}, - [1032] = {.lex_state = 0}, - [1033] = {.lex_state = 3}, - [1034] = {.lex_state = 0, .external_lex_state = 70}, - [1035] = {.lex_state = 0, .external_lex_state = 24}, + [1006] = {.lex_state = 0, .external_lex_state = 29}, + [1007] = {.lex_state = 0, .external_lex_state = 32}, + [1008] = {.lex_state = 0, .external_lex_state = 29}, + [1009] = {.lex_state = 4}, + [1010] = {.lex_state = 0, .external_lex_state = 29}, + [1011] = {.lex_state = 9}, + [1012] = {.lex_state = 0, .external_lex_state = 70}, + [1013] = {.lex_state = 0, .external_lex_state = 29}, + [1014] = {.lex_state = 0, .external_lex_state = 29}, + [1015] = {.lex_state = 0, .external_lex_state = 29}, + [1016] = {.lex_state = 0, .external_lex_state = 29}, + [1017] = {.lex_state = 0, .external_lex_state = 29}, + [1018] = {.lex_state = 0, .external_lex_state = 29}, + [1019] = {.lex_state = 0, .external_lex_state = 29}, + [1020] = {.lex_state = 49}, + [1021] = {.lex_state = 0, .external_lex_state = 29}, + [1022] = {.lex_state = 0, .external_lex_state = 29}, + [1023] = {.lex_state = 0, .external_lex_state = 70}, + [1024] = {.lex_state = 49}, + [1025] = {.lex_state = 49}, + [1026] = {.lex_state = 0, .external_lex_state = 70}, + [1027] = {.lex_state = 4}, + [1028] = {.lex_state = 0, .external_lex_state = 29}, + [1029] = {.lex_state = 0}, + [1030] = {.lex_state = 9}, + [1031] = {.lex_state = 12}, + [1032] = {.lex_state = 49}, + [1033] = {.lex_state = 0, .external_lex_state = 29}, + [1034] = {.lex_state = 4}, + [1035] = {.lex_state = 0, .external_lex_state = 29}, [1036] = {.lex_state = 0}, - [1037] = {.lex_state = 3}, - [1038] = {.lex_state = 0}, - [1039] = {.lex_state = 0}, - [1040] = {.lex_state = 0}, - [1041] = {.lex_state = 0}, - [1042] = {.lex_state = 0}, + [1037] = {.lex_state = 9}, + [1038] = {.lex_state = 12}, + [1039] = {.lex_state = 49}, + [1040] = {.lex_state = 0, .external_lex_state = 71}, + [1041] = {.lex_state = 4}, + [1042] = {.lex_state = 0, .external_lex_state = 29}, [1043] = {.lex_state = 0}, - [1044] = {.lex_state = 0}, - [1045] = {.lex_state = 0}, - [1046] = {.lex_state = 0}, - [1047] = {.lex_state = 0, .external_lex_state = 70}, - [1048] = {.lex_state = 0, .external_lex_state = 74}, - [1049] = {.lex_state = 0, .external_lex_state = 75}, + [1044] = {.lex_state = 9}, + [1045] = {.lex_state = 12}, + [1046] = {.lex_state = 49}, + [1047] = {.lex_state = 0, .external_lex_state = 29}, + [1048] = {.lex_state = 4}, + [1049] = {.lex_state = 0, .external_lex_state = 70}, + [1050] = {.lex_state = 0}, + [1051] = {.lex_state = 9}, + [1052] = {.lex_state = 12}, + [1053] = {.lex_state = 0, .external_lex_state = 29}, + [1054] = {.lex_state = 0, .external_lex_state = 29}, + [1055] = {.lex_state = 0}, + [1056] = {.lex_state = 3}, + [1057] = {.lex_state = 0, .external_lex_state = 29}, + [1058] = {.lex_state = 0, .external_lex_state = 70}, + [1059] = {.lex_state = 0}, + [1060] = {.lex_state = 3}, + [1061] = {.lex_state = 0, .external_lex_state = 54}, + [1062] = {.lex_state = 0, .external_lex_state = 32}, + [1063] = {.lex_state = 0}, + [1064] = {.lex_state = 3}, + [1065] = {.lex_state = 0, .external_lex_state = 70}, + [1066] = {.lex_state = 0, .external_lex_state = 70}, + [1067] = {.lex_state = 0}, + [1068] = {.lex_state = 3}, + [1069] = {.lex_state = 0}, + [1070] = {.lex_state = 0}, + [1071] = {.lex_state = 0}, + [1072] = {.lex_state = 0}, + [1073] = {.lex_state = 0}, + [1074] = {.lex_state = 0}, + [1075] = {.lex_state = 0}, + [1076] = {.lex_state = 0}, + [1077] = {.lex_state = 3}, + [1078] = {.lex_state = 0, .external_lex_state = 73}, + [1079] = {.lex_state = 0, .external_lex_state = 74}, + [1080] = {.lex_state = 0, .external_lex_state = 75}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -4252,96 +4317,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__error] = ACTIONS(1), }, [1] = { - [sym_document] = STATE(927), - [sym_frontmatter] = STATE(3), - [sym__block_with_section] = STATE(235), - [sym__block_element] = STATE(235), - [sym_section] = STATE(235), - [sym_heading] = STATE(4), - [sym_list] = STATE(235), - [sym__list_dash] = STATE(212), - [sym__list_item_dash] = STATE(366), - [sym__list_plus] = STATE(212), - [sym__list_item_plus] = STATE(374), - [sym__list_star] = STATE(212), - [sym__list_item_star] = STATE(375), - [sym__list_task] = STATE(212), - [sym__list_item_task] = STATE(360), - [sym_list_marker_task] = STATE(37), - [sym__list_definition] = STATE(212), - [sym__list_item_definition] = STATE(553), - [sym__list_decimal_period] = STATE(212), - [sym__list_item_decimal_period] = STATE(554), - [sym__list_decimal_paren] = STATE(212), - [sym__list_item_decimal_paren] = STATE(556), - [sym__list_decimal_parens] = STATE(212), - [sym__list_item_decimal_parens] = STATE(561), - [sym__list_lower_alpha_period] = STATE(212), - [sym__list_item_lower_alpha_period] = STATE(489), - [sym__list_lower_alpha_paren] = STATE(212), - [sym__list_item_lower_alpha_paren] = STATE(564), - [sym__list_lower_alpha_parens] = STATE(212), - [sym__list_item_lower_alpha_parens] = STATE(566), - [sym__list_upper_alpha_period] = STATE(212), - [sym__list_item_upper_alpha_period] = STATE(569), - [sym__list_upper_alpha_paren] = STATE(212), - [sym__list_item_upper_alpha_paren] = STATE(572), - [sym__list_upper_alpha_parens] = STATE(212), - [sym__list_item_upper_alpha_parens] = STATE(574), - [sym__list_lower_roman_period] = STATE(212), - [sym__list_item_lower_roman_period] = STATE(576), - [sym__list_lower_roman_paren] = STATE(212), - [sym__list_item_lower_roman_paren] = STATE(580), - [sym__list_lower_roman_parens] = STATE(212), - [sym__list_item_lower_roman_parens] = STATE(582), - [sym__list_upper_roman_period] = STATE(212), - [sym__list_item_upper_roman_period] = STATE(586), - [sym__list_upper_roman_paren] = STATE(212), - [sym__list_item_upper_roman_paren] = STATE(584), - [sym__list_upper_roman_parens] = STATE(212), - [sym__list_item_upper_roman_parens] = STATE(562), - [sym_table] = STATE(235), - [sym__table_content] = STATE(61), - [sym_table_separator] = STATE(61), - [sym_table_row] = STATE(66), - [sym_footnote] = STATE(235), - [sym_div] = STATE(235), - [sym_div_marker_begin] = STATE(968), - [sym_code_block] = STATE(235), - [sym_raw_block] = STATE(235), - [sym_thematic_break] = STATE(235), - [sym_block_quote] = STATE(235), - [sym__block_quote_prefix] = STATE(424), - [sym_link_reference_definition] = STATE(235), - [sym_block_attribute] = STATE(235), - [sym__paragraph] = STATE(235), - [sym__paragraph_content] = STATE(756), - [sym__inline] = STATE(683), - [sym__symbol_fallback] = STATE(329), - [aux_sym_document_repeat1] = STATE(9), - [aux_sym__list_dash_repeat1] = STATE(366), - [aux_sym__list_plus_repeat1] = STATE(374), - [aux_sym__list_star_repeat1] = STATE(375), - [aux_sym__list_task_repeat1] = STATE(360), - [aux_sym__list_definition_repeat1] = STATE(553), - [aux_sym__list_decimal_period_repeat1] = STATE(554), - [aux_sym__list_decimal_paren_repeat1] = STATE(556), - [aux_sym__list_decimal_parens_repeat1] = STATE(561), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(489), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(564), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(566), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(569), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(572), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(574), - [aux_sym__list_lower_roman_period_repeat1] = STATE(576), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(580), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(582), - [aux_sym__list_upper_roman_period_repeat1] = STATE(586), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(584), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(562), - [aux_sym_table_repeat1] = STATE(61), - [aux_sym__block_quote_prefix_repeat1] = STATE(397), - [aux_sym__inline_repeat1] = STATE(329), + [sym_document] = STATE(902), + [sym_frontmatter] = STATE(2), + [sym__block_with_section] = STATE(156), + [sym__block_element] = STATE(156), + [sym_section] = STATE(156), + [sym_heading] = STATE(10), + [sym_list] = STATE(156), + [sym__list_dash] = STATE(143), + [sym__list_item_dash] = STATE(412), + [sym__list_plus] = STATE(143), + [sym__list_item_plus] = STATE(397), + [sym__list_star] = STATE(143), + [sym__list_item_star] = STATE(396), + [sym__list_task] = STATE(143), + [sym__list_item_task] = STATE(378), + [sym_list_marker_task] = STATE(38), + [sym__list_definition] = STATE(143), + [sym__list_item_definition] = STATE(583), + [sym__list_decimal_period] = STATE(143), + [sym__list_item_decimal_period] = STATE(584), + [sym__list_decimal_paren] = STATE(143), + [sym__list_item_decimal_paren] = STATE(585), + [sym__list_decimal_parens] = STATE(143), + [sym__list_item_decimal_parens] = STATE(587), + [sym__list_lower_alpha_period] = STATE(143), + [sym__list_item_lower_alpha_period] = STATE(590), + [sym__list_lower_alpha_paren] = STATE(143), + [sym__list_item_lower_alpha_paren] = STATE(592), + [sym__list_lower_alpha_parens] = STATE(143), + [sym__list_item_lower_alpha_parens] = STATE(593), + [sym__list_upper_alpha_period] = STATE(143), + [sym__list_item_upper_alpha_period] = STATE(597), + [sym__list_upper_alpha_paren] = STATE(143), + [sym__list_item_upper_alpha_paren] = STATE(490), + [sym__list_upper_alpha_parens] = STATE(143), + [sym__list_item_upper_alpha_parens] = STATE(607), + [sym__list_lower_roman_period] = STATE(143), + [sym__list_item_lower_roman_period] = STATE(602), + [sym__list_lower_roman_paren] = STATE(143), + [sym__list_item_lower_roman_paren] = STATE(598), + [sym__list_lower_roman_parens] = STATE(143), + [sym__list_item_lower_roman_parens] = STATE(596), + [sym__list_upper_roman_period] = STATE(143), + [sym__list_item_upper_roman_period] = STATE(608), + [sym__list_upper_roman_paren] = STATE(143), + [sym__list_item_upper_roman_paren] = STATE(562), + [sym__list_upper_roman_parens] = STATE(143), + [sym__list_item_upper_roman_parens] = STATE(601), + [sym_table] = STATE(156), + [sym__table_content] = STATE(64), + [sym_table_separator] = STATE(64), + [sym_table_row] = STATE(70), + [sym_footnote] = STATE(156), + [sym_div] = STATE(156), + [sym_div_marker_begin] = STATE(1004), + [sym_code_block] = STATE(156), + [sym_raw_block] = STATE(156), + [sym_thematic_break] = STATE(156), + [sym_block_quote] = STATE(156), + [sym__block_quote_prefix] = STATE(284), + [sym_link_reference_definition] = STATE(156), + [sym_block_attribute] = STATE(156), + [sym__paragraph] = STATE(156), + [sym__paragraph_content] = STATE(720), + [sym__inline] = STATE(703), + [sym__symbol_fallback] = STATE(366), + [aux_sym_document_repeat1] = STATE(8), + [aux_sym__list_dash_repeat1] = STATE(412), + [aux_sym__list_plus_repeat1] = STATE(397), + [aux_sym__list_star_repeat1] = STATE(396), + [aux_sym__list_task_repeat1] = STATE(378), + [aux_sym__list_definition_repeat1] = STATE(583), + [aux_sym__list_decimal_period_repeat1] = STATE(584), + [aux_sym__list_decimal_paren_repeat1] = STATE(585), + [aux_sym__list_decimal_parens_repeat1] = STATE(587), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(590), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(592), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(593), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(597), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(490), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(607), + [aux_sym__list_lower_roman_period_repeat1] = STATE(602), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(598), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(596), + [aux_sym__list_upper_roman_period_repeat1] = STATE(608), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(562), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(601), + [aux_sym_table_repeat1] = STATE(64), + [aux_sym__block_quote_prefix_repeat1] = STATE(323), + [aux_sym__inline_repeat1] = STATE(366), [ts_builtin_sym_end] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(5), [anon_sym_PIPE] = ACTIONS(7), @@ -4380,94 +4445,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__footnote_begin] = ACTIONS(69), }, [2] = { - [sym__block_with_section] = STATE(235), - [sym__block_element] = STATE(235), - [sym_section] = STATE(235), - [sym_heading] = STATE(4), - [sym_list] = STATE(235), - [sym__list_dash] = STATE(212), - [sym__list_item_dash] = STATE(366), - [sym__list_plus] = STATE(212), - [sym__list_item_plus] = STATE(374), - [sym__list_star] = STATE(212), - [sym__list_item_star] = STATE(375), - [sym__list_task] = STATE(212), - [sym__list_item_task] = STATE(360), - [sym_list_marker_task] = STATE(37), - [sym__list_definition] = STATE(212), - [sym__list_item_definition] = STATE(553), - [sym__list_decimal_period] = STATE(212), - [sym__list_item_decimal_period] = STATE(554), - [sym__list_decimal_paren] = STATE(212), - [sym__list_item_decimal_paren] = STATE(556), - [sym__list_decimal_parens] = STATE(212), - [sym__list_item_decimal_parens] = STATE(561), - [sym__list_lower_alpha_period] = STATE(212), - [sym__list_item_lower_alpha_period] = STATE(489), - [sym__list_lower_alpha_paren] = STATE(212), - [sym__list_item_lower_alpha_paren] = STATE(564), - [sym__list_lower_alpha_parens] = STATE(212), - [sym__list_item_lower_alpha_parens] = STATE(566), - [sym__list_upper_alpha_period] = STATE(212), - [sym__list_item_upper_alpha_period] = STATE(569), - [sym__list_upper_alpha_paren] = STATE(212), - [sym__list_item_upper_alpha_paren] = STATE(572), - [sym__list_upper_alpha_parens] = STATE(212), - [sym__list_item_upper_alpha_parens] = STATE(574), - [sym__list_lower_roman_period] = STATE(212), - [sym__list_item_lower_roman_period] = STATE(576), - [sym__list_lower_roman_paren] = STATE(212), - [sym__list_item_lower_roman_paren] = STATE(580), - [sym__list_lower_roman_parens] = STATE(212), - [sym__list_item_lower_roman_parens] = STATE(582), - [sym__list_upper_roman_period] = STATE(212), - [sym__list_item_upper_roman_period] = STATE(586), - [sym__list_upper_roman_paren] = STATE(212), - [sym__list_item_upper_roman_paren] = STATE(584), - [sym__list_upper_roman_parens] = STATE(212), - [sym__list_item_upper_roman_parens] = STATE(562), - [sym_table] = STATE(235), - [sym__table_content] = STATE(61), - [sym_table_separator] = STATE(61), - [sym_table_row] = STATE(66), - [sym_footnote] = STATE(235), - [sym_div] = STATE(235), - [sym_div_marker_begin] = STATE(968), - [sym_code_block] = STATE(235), - [sym_raw_block] = STATE(235), - [sym_thematic_break] = STATE(235), - [sym_block_quote] = STATE(235), - [sym__block_quote_prefix] = STATE(424), - [sym_link_reference_definition] = STATE(235), - [sym_block_attribute] = STATE(235), - [sym__paragraph] = STATE(235), - [sym__paragraph_content] = STATE(756), - [sym__inline] = STATE(683), - [sym__symbol_fallback] = STATE(329), - [aux_sym_document_repeat1] = STATE(6), - [aux_sym__list_dash_repeat1] = STATE(366), - [aux_sym__list_plus_repeat1] = STATE(374), - [aux_sym__list_star_repeat1] = STATE(375), - [aux_sym__list_task_repeat1] = STATE(360), - [aux_sym__list_definition_repeat1] = STATE(553), - [aux_sym__list_decimal_period_repeat1] = STATE(554), - [aux_sym__list_decimal_paren_repeat1] = STATE(556), - [aux_sym__list_decimal_parens_repeat1] = STATE(561), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(489), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(564), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(566), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(569), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(572), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(574), - [aux_sym__list_lower_roman_period_repeat1] = STATE(576), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(580), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(582), - [aux_sym__list_upper_roman_period_repeat1] = STATE(586), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(584), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(562), - [aux_sym_table_repeat1] = STATE(61), - [aux_sym__block_quote_prefix_repeat1] = STATE(397), - [aux_sym__inline_repeat1] = STATE(329), + [sym__block_with_section] = STATE(156), + [sym__block_element] = STATE(156), + [sym_section] = STATE(156), + [sym_heading] = STATE(10), + [sym_list] = STATE(156), + [sym__list_dash] = STATE(143), + [sym__list_item_dash] = STATE(412), + [sym__list_plus] = STATE(143), + [sym__list_item_plus] = STATE(397), + [sym__list_star] = STATE(143), + [sym__list_item_star] = STATE(396), + [sym__list_task] = STATE(143), + [sym__list_item_task] = STATE(378), + [sym_list_marker_task] = STATE(38), + [sym__list_definition] = STATE(143), + [sym__list_item_definition] = STATE(583), + [sym__list_decimal_period] = STATE(143), + [sym__list_item_decimal_period] = STATE(584), + [sym__list_decimal_paren] = STATE(143), + [sym__list_item_decimal_paren] = STATE(585), + [sym__list_decimal_parens] = STATE(143), + [sym__list_item_decimal_parens] = STATE(587), + [sym__list_lower_alpha_period] = STATE(143), + [sym__list_item_lower_alpha_period] = STATE(590), + [sym__list_lower_alpha_paren] = STATE(143), + [sym__list_item_lower_alpha_paren] = STATE(592), + [sym__list_lower_alpha_parens] = STATE(143), + [sym__list_item_lower_alpha_parens] = STATE(593), + [sym__list_upper_alpha_period] = STATE(143), + [sym__list_item_upper_alpha_period] = STATE(597), + [sym__list_upper_alpha_paren] = STATE(143), + [sym__list_item_upper_alpha_paren] = STATE(490), + [sym__list_upper_alpha_parens] = STATE(143), + [sym__list_item_upper_alpha_parens] = STATE(607), + [sym__list_lower_roman_period] = STATE(143), + [sym__list_item_lower_roman_period] = STATE(602), + [sym__list_lower_roman_paren] = STATE(143), + [sym__list_item_lower_roman_paren] = STATE(598), + [sym__list_lower_roman_parens] = STATE(143), + [sym__list_item_lower_roman_parens] = STATE(596), + [sym__list_upper_roman_period] = STATE(143), + [sym__list_item_upper_roman_period] = STATE(608), + [sym__list_upper_roman_paren] = STATE(143), + [sym__list_item_upper_roman_paren] = STATE(562), + [sym__list_upper_roman_parens] = STATE(143), + [sym__list_item_upper_roman_parens] = STATE(601), + [sym_table] = STATE(156), + [sym__table_content] = STATE(64), + [sym_table_separator] = STATE(64), + [sym_table_row] = STATE(70), + [sym_footnote] = STATE(156), + [sym_div] = STATE(156), + [sym_div_marker_begin] = STATE(1004), + [sym_code_block] = STATE(156), + [sym_raw_block] = STATE(156), + [sym_thematic_break] = STATE(156), + [sym_block_quote] = STATE(156), + [sym__block_quote_prefix] = STATE(284), + [sym_link_reference_definition] = STATE(156), + [sym_block_attribute] = STATE(156), + [sym__paragraph] = STATE(156), + [sym__paragraph_content] = STATE(720), + [sym__inline] = STATE(703), + [sym__symbol_fallback] = STATE(366), + [aux_sym_document_repeat1] = STATE(5), + [aux_sym__list_dash_repeat1] = STATE(412), + [aux_sym__list_plus_repeat1] = STATE(397), + [aux_sym__list_star_repeat1] = STATE(396), + [aux_sym__list_task_repeat1] = STATE(378), + [aux_sym__list_definition_repeat1] = STATE(583), + [aux_sym__list_decimal_period_repeat1] = STATE(584), + [aux_sym__list_decimal_paren_repeat1] = STATE(585), + [aux_sym__list_decimal_parens_repeat1] = STATE(587), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(590), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(592), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(593), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(597), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(490), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(607), + [aux_sym__list_lower_roman_period_repeat1] = STATE(602), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(598), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(596), + [aux_sym__list_upper_roman_period_repeat1] = STATE(608), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(562), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(601), + [aux_sym_table_repeat1] = STATE(64), + [aux_sym__block_quote_prefix_repeat1] = STATE(323), + [aux_sym__inline_repeat1] = STATE(366), [ts_builtin_sym_end] = ACTIONS(71), [anon_sym_LBRACK] = ACTIONS(5), [anon_sym_PIPE] = ACTIONS(7), @@ -4505,95 +4570,345 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__footnote_begin] = ACTIONS(69), }, [3] = { - [sym__block_with_section] = STATE(235), - [sym__block_element] = STATE(235), - [sym_section] = STATE(235), - [sym_heading] = STATE(4), - [sym_list] = STATE(235), - [sym__list_dash] = STATE(212), - [sym__list_item_dash] = STATE(366), - [sym__list_plus] = STATE(212), - [sym__list_item_plus] = STATE(374), - [sym__list_star] = STATE(212), - [sym__list_item_star] = STATE(375), - [sym__list_task] = STATE(212), - [sym__list_item_task] = STATE(360), - [sym_list_marker_task] = STATE(37), - [sym__list_definition] = STATE(212), - [sym__list_item_definition] = STATE(553), - [sym__list_decimal_period] = STATE(212), - [sym__list_item_decimal_period] = STATE(554), - [sym__list_decimal_paren] = STATE(212), - [sym__list_item_decimal_paren] = STATE(556), - [sym__list_decimal_parens] = STATE(212), - [sym__list_item_decimal_parens] = STATE(561), - [sym__list_lower_alpha_period] = STATE(212), - [sym__list_item_lower_alpha_period] = STATE(489), - [sym__list_lower_alpha_paren] = STATE(212), - [sym__list_item_lower_alpha_paren] = STATE(564), - [sym__list_lower_alpha_parens] = STATE(212), - [sym__list_item_lower_alpha_parens] = STATE(566), - [sym__list_upper_alpha_period] = STATE(212), - [sym__list_item_upper_alpha_period] = STATE(569), - [sym__list_upper_alpha_paren] = STATE(212), - [sym__list_item_upper_alpha_paren] = STATE(572), - [sym__list_upper_alpha_parens] = STATE(212), - [sym__list_item_upper_alpha_parens] = STATE(574), - [sym__list_lower_roman_period] = STATE(212), - [sym__list_item_lower_roman_period] = STATE(576), - [sym__list_lower_roman_paren] = STATE(212), - [sym__list_item_lower_roman_paren] = STATE(580), - [sym__list_lower_roman_parens] = STATE(212), - [sym__list_item_lower_roman_parens] = STATE(582), - [sym__list_upper_roman_period] = STATE(212), - [sym__list_item_upper_roman_period] = STATE(586), - [sym__list_upper_roman_paren] = STATE(212), - [sym__list_item_upper_roman_paren] = STATE(584), - [sym__list_upper_roman_parens] = STATE(212), - [sym__list_item_upper_roman_parens] = STATE(562), - [sym_table] = STATE(235), - [sym__table_content] = STATE(61), - [sym_table_separator] = STATE(61), - [sym_table_row] = STATE(66), - [sym_footnote] = STATE(235), - [sym_div] = STATE(235), - [sym_div_marker_begin] = STATE(968), - [sym_code_block] = STATE(235), - [sym_raw_block] = STATE(235), - [sym_thematic_break] = STATE(235), - [sym_block_quote] = STATE(235), - [sym__block_quote_prefix] = STATE(424), - [sym_link_reference_definition] = STATE(235), - [sym_block_attribute] = STATE(235), - [sym__paragraph] = STATE(235), - [sym__paragraph_content] = STATE(756), - [sym__inline] = STATE(683), - [sym__symbol_fallback] = STATE(329), - [aux_sym_document_repeat1] = STATE(2), - [aux_sym__list_dash_repeat1] = STATE(366), - [aux_sym__list_plus_repeat1] = STATE(374), - [aux_sym__list_star_repeat1] = STATE(375), - [aux_sym__list_task_repeat1] = STATE(360), - [aux_sym__list_definition_repeat1] = STATE(553), - [aux_sym__list_decimal_period_repeat1] = STATE(554), - [aux_sym__list_decimal_paren_repeat1] = STATE(556), - [aux_sym__list_decimal_parens_repeat1] = STATE(561), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(489), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(564), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(566), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(569), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(572), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(574), - [aux_sym__list_lower_roman_period_repeat1] = STATE(576), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(580), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(582), - [aux_sym__list_upper_roman_period_repeat1] = STATE(586), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(584), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(562), - [aux_sym_table_repeat1] = STATE(61), - [aux_sym__block_quote_prefix_repeat1] = STATE(397), - [aux_sym__inline_repeat1] = STATE(329), - [ts_builtin_sym_end] = ACTIONS(73), + [sym__block_with_section] = STATE(146), + [sym__block_element] = STATE(146), + [sym_section] = STATE(146), + [sym_heading] = STATE(7), + [sym_list] = STATE(146), + [sym__list_dash] = STATE(141), + [sym__list_item_dash] = STATE(416), + [sym__list_plus] = STATE(141), + [sym__list_item_plus] = STATE(419), + [sym__list_star] = STATE(141), + [sym__list_item_star] = STATE(407), + [sym__list_task] = STATE(141), + [sym__list_item_task] = STATE(371), + [sym_list_marker_task] = STATE(38), + [sym__list_definition] = STATE(141), + [sym__list_item_definition] = STATE(549), + [sym__list_decimal_period] = STATE(141), + [sym__list_item_decimal_period] = STATE(548), + [sym__list_decimal_paren] = STATE(141), + [sym__list_item_decimal_paren] = STATE(547), + [sym__list_decimal_parens] = STATE(141), + [sym__list_item_decimal_parens] = STATE(546), + [sym__list_lower_alpha_period] = STATE(141), + [sym__list_item_lower_alpha_period] = STATE(545), + [sym__list_lower_alpha_paren] = STATE(141), + [sym__list_item_lower_alpha_paren] = STATE(544), + [sym__list_lower_alpha_parens] = STATE(141), + [sym__list_item_lower_alpha_parens] = STATE(543), + [sym__list_upper_alpha_period] = STATE(141), + [sym__list_item_upper_alpha_period] = STATE(542), + [sym__list_upper_alpha_paren] = STATE(141), + [sym__list_item_upper_alpha_paren] = STATE(541), + [sym__list_upper_alpha_parens] = STATE(141), + [sym__list_item_upper_alpha_parens] = STATE(540), + [sym__list_lower_roman_period] = STATE(141), + [sym__list_item_lower_roman_period] = STATE(539), + [sym__list_lower_roman_paren] = STATE(141), + [sym__list_item_lower_roman_paren] = STATE(538), + [sym__list_lower_roman_parens] = STATE(141), + [sym__list_item_lower_roman_parens] = STATE(537), + [sym__list_upper_roman_period] = STATE(141), + [sym__list_item_upper_roman_period] = STATE(536), + [sym__list_upper_roman_paren] = STATE(141), + [sym__list_item_upper_roman_paren] = STATE(535), + [sym__list_upper_roman_parens] = STATE(141), + [sym__list_item_upper_roman_parens] = STATE(534), + [sym_table] = STATE(146), + [sym__table_content] = STATE(66), + [sym_table_separator] = STATE(66), + [sym_table_row] = STATE(72), + [sym_footnote] = STATE(146), + [sym_div] = STATE(146), + [sym_div_marker_begin] = STATE(985), + [sym_code_block] = STATE(146), + [sym_raw_block] = STATE(146), + [sym_thematic_break] = STATE(146), + [sym_block_quote] = STATE(146), + [sym__block_quote_prefix] = STATE(286), + [sym_link_reference_definition] = STATE(146), + [sym_block_attribute] = STATE(146), + [sym__paragraph] = STATE(146), + [sym__paragraph_content] = STATE(801), + [sym__inline] = STATE(703), + [sym__symbol_fallback] = STATE(366), + [aux_sym_document_repeat1] = STATE(3), + [aux_sym__list_dash_repeat1] = STATE(416), + [aux_sym__list_plus_repeat1] = STATE(419), + [aux_sym__list_star_repeat1] = STATE(407), + [aux_sym__list_task_repeat1] = STATE(371), + [aux_sym__list_definition_repeat1] = STATE(549), + [aux_sym__list_decimal_period_repeat1] = STATE(548), + [aux_sym__list_decimal_paren_repeat1] = STATE(547), + [aux_sym__list_decimal_parens_repeat1] = STATE(546), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(545), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(544), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(543), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(542), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(541), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(540), + [aux_sym__list_lower_roman_period_repeat1] = STATE(539), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(538), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(537), + [aux_sym__list_upper_roman_period_repeat1] = STATE(536), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(535), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(534), + [aux_sym_table_repeat1] = STATE(66), + [aux_sym__block_quote_prefix_repeat1] = STATE(323), + [aux_sym__inline_repeat1] = STATE(366), + [anon_sym_LBRACK] = ACTIONS(73), + [anon_sym_PIPE] = ACTIONS(76), + [anon_sym_LBRACE] = ACTIONS(79), + [aux_sym__inline_token1] = ACTIONS(82), + [anon_sym_LBRACE_DASH] = ACTIONS(82), + [sym__block_close] = ACTIONS(85), + [sym__newline] = ACTIONS(87), + [sym__heading_begin] = ACTIONS(90), + [sym__div_begin] = ACTIONS(93), + [sym__code_block_begin] = ACTIONS(96), + [sym_list_marker_dash] = ACTIONS(99), + [sym_list_marker_star] = ACTIONS(102), + [sym_list_marker_plus] = ACTIONS(105), + [sym__list_marker_task_begin] = ACTIONS(108), + [sym_list_marker_definition] = ACTIONS(111), + [sym_list_marker_decimal_period] = ACTIONS(114), + [sym_list_marker_lower_alpha_period] = ACTIONS(117), + [sym_list_marker_upper_alpha_period] = ACTIONS(120), + [sym_list_marker_lower_roman_period] = ACTIONS(123), + [sym_list_marker_upper_roman_period] = ACTIONS(126), + [sym_list_marker_decimal_paren] = ACTIONS(129), + [sym_list_marker_lower_alpha_paren] = ACTIONS(132), + [sym_list_marker_upper_alpha_paren] = ACTIONS(135), + [sym_list_marker_lower_roman_paren] = ACTIONS(138), + [sym_list_marker_upper_roman_paren] = ACTIONS(141), + [sym_list_marker_decimal_parens] = ACTIONS(144), + [sym_list_marker_lower_alpha_parens] = ACTIONS(147), + [sym_list_marker_upper_alpha_parens] = ACTIONS(150), + [sym_list_marker_lower_roman_parens] = ACTIONS(153), + [sym_list_marker_upper_roman_parens] = ACTIONS(156), + [sym__block_quote_begin] = ACTIONS(159), + [sym__block_quote_continuation] = ACTIONS(162), + [sym__thematic_break_dash] = ACTIONS(165), + [sym__thematic_break_star] = ACTIONS(165), + [sym__footnote_begin] = ACTIONS(168), + }, + [4] = { + [sym__block_with_section] = STATE(156), + [sym__block_element] = STATE(156), + [sym_section] = STATE(156), + [sym_heading] = STATE(10), + [sym_list] = STATE(156), + [sym__list_dash] = STATE(143), + [sym__list_item_dash] = STATE(412), + [sym__list_plus] = STATE(143), + [sym__list_item_plus] = STATE(397), + [sym__list_star] = STATE(143), + [sym__list_item_star] = STATE(396), + [sym__list_task] = STATE(143), + [sym__list_item_task] = STATE(378), + [sym_list_marker_task] = STATE(38), + [sym__list_definition] = STATE(143), + [sym__list_item_definition] = STATE(583), + [sym__list_decimal_period] = STATE(143), + [sym__list_item_decimal_period] = STATE(584), + [sym__list_decimal_paren] = STATE(143), + [sym__list_item_decimal_paren] = STATE(585), + [sym__list_decimal_parens] = STATE(143), + [sym__list_item_decimal_parens] = STATE(587), + [sym__list_lower_alpha_period] = STATE(143), + [sym__list_item_lower_alpha_period] = STATE(590), + [sym__list_lower_alpha_paren] = STATE(143), + [sym__list_item_lower_alpha_paren] = STATE(592), + [sym__list_lower_alpha_parens] = STATE(143), + [sym__list_item_lower_alpha_parens] = STATE(593), + [sym__list_upper_alpha_period] = STATE(143), + [sym__list_item_upper_alpha_period] = STATE(597), + [sym__list_upper_alpha_paren] = STATE(143), + [sym__list_item_upper_alpha_paren] = STATE(490), + [sym__list_upper_alpha_parens] = STATE(143), + [sym__list_item_upper_alpha_parens] = STATE(607), + [sym__list_lower_roman_period] = STATE(143), + [sym__list_item_lower_roman_period] = STATE(602), + [sym__list_lower_roman_paren] = STATE(143), + [sym__list_item_lower_roman_paren] = STATE(598), + [sym__list_lower_roman_parens] = STATE(143), + [sym__list_item_lower_roman_parens] = STATE(596), + [sym__list_upper_roman_period] = STATE(143), + [sym__list_item_upper_roman_period] = STATE(608), + [sym__list_upper_roman_paren] = STATE(143), + [sym__list_item_upper_roman_paren] = STATE(562), + [sym__list_upper_roman_parens] = STATE(143), + [sym__list_item_upper_roman_parens] = STATE(601), + [sym_table] = STATE(156), + [sym__table_content] = STATE(64), + [sym_table_separator] = STATE(64), + [sym_table_row] = STATE(70), + [sym_footnote] = STATE(156), + [sym_div] = STATE(156), + [sym_div_marker_begin] = STATE(1004), + [sym_code_block] = STATE(156), + [sym_raw_block] = STATE(156), + [sym_thematic_break] = STATE(156), + [sym_block_quote] = STATE(156), + [sym__block_quote_prefix] = STATE(284), + [sym_link_reference_definition] = STATE(156), + [sym_block_attribute] = STATE(156), + [sym__paragraph] = STATE(156), + [sym__paragraph_content] = STATE(720), + [sym__inline] = STATE(703), + [sym__symbol_fallback] = STATE(366), + [aux_sym_document_repeat1] = STATE(4), + [aux_sym__list_dash_repeat1] = STATE(412), + [aux_sym__list_plus_repeat1] = STATE(397), + [aux_sym__list_star_repeat1] = STATE(396), + [aux_sym__list_task_repeat1] = STATE(378), + [aux_sym__list_definition_repeat1] = STATE(583), + [aux_sym__list_decimal_period_repeat1] = STATE(584), + [aux_sym__list_decimal_paren_repeat1] = STATE(585), + [aux_sym__list_decimal_parens_repeat1] = STATE(587), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(590), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(592), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(593), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(597), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(490), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(607), + [aux_sym__list_lower_roman_period_repeat1] = STATE(602), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(598), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(596), + [aux_sym__list_upper_roman_period_repeat1] = STATE(608), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(562), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(601), + [aux_sym_table_repeat1] = STATE(64), + [aux_sym__block_quote_prefix_repeat1] = STATE(323), + [aux_sym__inline_repeat1] = STATE(366), + [ts_builtin_sym_end] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(171), + [anon_sym_PIPE] = ACTIONS(174), + [anon_sym_LBRACE] = ACTIONS(177), + [aux_sym__inline_token1] = ACTIONS(82), + [anon_sym_LBRACE_DASH] = ACTIONS(82), + [sym__newline] = ACTIONS(180), + [sym__heading_begin] = ACTIONS(90), + [sym__div_begin] = ACTIONS(93), + [sym__code_block_begin] = ACTIONS(183), + [sym_list_marker_dash] = ACTIONS(99), + [sym_list_marker_star] = ACTIONS(102), + [sym_list_marker_plus] = ACTIONS(105), + [sym__list_marker_task_begin] = ACTIONS(108), + [sym_list_marker_definition] = ACTIONS(111), + [sym_list_marker_decimal_period] = ACTIONS(114), + [sym_list_marker_lower_alpha_period] = ACTIONS(117), + [sym_list_marker_upper_alpha_period] = ACTIONS(120), + [sym_list_marker_lower_roman_period] = ACTIONS(123), + [sym_list_marker_upper_roman_period] = ACTIONS(126), + [sym_list_marker_decimal_paren] = ACTIONS(129), + [sym_list_marker_lower_alpha_paren] = ACTIONS(132), + [sym_list_marker_upper_alpha_paren] = ACTIONS(135), + [sym_list_marker_lower_roman_paren] = ACTIONS(138), + [sym_list_marker_upper_roman_paren] = ACTIONS(141), + [sym_list_marker_decimal_parens] = ACTIONS(144), + [sym_list_marker_lower_alpha_parens] = ACTIONS(147), + [sym_list_marker_upper_alpha_parens] = ACTIONS(150), + [sym_list_marker_lower_roman_parens] = ACTIONS(153), + [sym_list_marker_upper_roman_parens] = ACTIONS(156), + [sym__block_quote_begin] = ACTIONS(186), + [sym__block_quote_continuation] = ACTIONS(162), + [sym__thematic_break_dash] = ACTIONS(189), + [sym__thematic_break_star] = ACTIONS(189), + [sym__footnote_begin] = ACTIONS(192), + }, + [5] = { + [sym__block_with_section] = STATE(156), + [sym__block_element] = STATE(156), + [sym_section] = STATE(156), + [sym_heading] = STATE(10), + [sym_list] = STATE(156), + [sym__list_dash] = STATE(143), + [sym__list_item_dash] = STATE(412), + [sym__list_plus] = STATE(143), + [sym__list_item_plus] = STATE(397), + [sym__list_star] = STATE(143), + [sym__list_item_star] = STATE(396), + [sym__list_task] = STATE(143), + [sym__list_item_task] = STATE(378), + [sym_list_marker_task] = STATE(38), + [sym__list_definition] = STATE(143), + [sym__list_item_definition] = STATE(583), + [sym__list_decimal_period] = STATE(143), + [sym__list_item_decimal_period] = STATE(584), + [sym__list_decimal_paren] = STATE(143), + [sym__list_item_decimal_paren] = STATE(585), + [sym__list_decimal_parens] = STATE(143), + [sym__list_item_decimal_parens] = STATE(587), + [sym__list_lower_alpha_period] = STATE(143), + [sym__list_item_lower_alpha_period] = STATE(590), + [sym__list_lower_alpha_paren] = STATE(143), + [sym__list_item_lower_alpha_paren] = STATE(592), + [sym__list_lower_alpha_parens] = STATE(143), + [sym__list_item_lower_alpha_parens] = STATE(593), + [sym__list_upper_alpha_period] = STATE(143), + [sym__list_item_upper_alpha_period] = STATE(597), + [sym__list_upper_alpha_paren] = STATE(143), + [sym__list_item_upper_alpha_paren] = STATE(490), + [sym__list_upper_alpha_parens] = STATE(143), + [sym__list_item_upper_alpha_parens] = STATE(607), + [sym__list_lower_roman_period] = STATE(143), + [sym__list_item_lower_roman_period] = STATE(602), + [sym__list_lower_roman_paren] = STATE(143), + [sym__list_item_lower_roman_paren] = STATE(598), + [sym__list_lower_roman_parens] = STATE(143), + [sym__list_item_lower_roman_parens] = STATE(596), + [sym__list_upper_roman_period] = STATE(143), + [sym__list_item_upper_roman_period] = STATE(608), + [sym__list_upper_roman_paren] = STATE(143), + [sym__list_item_upper_roman_paren] = STATE(562), + [sym__list_upper_roman_parens] = STATE(143), + [sym__list_item_upper_roman_parens] = STATE(601), + [sym_table] = STATE(156), + [sym__table_content] = STATE(64), + [sym_table_separator] = STATE(64), + [sym_table_row] = STATE(70), + [sym_footnote] = STATE(156), + [sym_div] = STATE(156), + [sym_div_marker_begin] = STATE(1004), + [sym_code_block] = STATE(156), + [sym_raw_block] = STATE(156), + [sym_thematic_break] = STATE(156), + [sym_block_quote] = STATE(156), + [sym__block_quote_prefix] = STATE(284), + [sym_link_reference_definition] = STATE(156), + [sym_block_attribute] = STATE(156), + [sym__paragraph] = STATE(156), + [sym__paragraph_content] = STATE(720), + [sym__inline] = STATE(703), + [sym__symbol_fallback] = STATE(366), + [aux_sym_document_repeat1] = STATE(4), + [aux_sym__list_dash_repeat1] = STATE(412), + [aux_sym__list_plus_repeat1] = STATE(397), + [aux_sym__list_star_repeat1] = STATE(396), + [aux_sym__list_task_repeat1] = STATE(378), + [aux_sym__list_definition_repeat1] = STATE(583), + [aux_sym__list_decimal_period_repeat1] = STATE(584), + [aux_sym__list_decimal_paren_repeat1] = STATE(585), + [aux_sym__list_decimal_parens_repeat1] = STATE(587), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(590), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(592), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(593), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(597), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(490), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(607), + [aux_sym__list_lower_roman_period_repeat1] = STATE(602), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(598), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(596), + [aux_sym__list_upper_roman_period_repeat1] = STATE(608), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(562), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(601), + [aux_sym_table_repeat1] = STATE(64), + [aux_sym__block_quote_prefix_repeat1] = STATE(323), + [aux_sym__inline_repeat1] = STATE(366), + [ts_builtin_sym_end] = ACTIONS(195), [anon_sym_LBRACK] = ACTIONS(5), [anon_sym_PIPE] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(9), @@ -4629,105 +4944,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__thematic_break_star] = ACTIONS(67), [sym__footnote_begin] = ACTIONS(69), }, - [4] = { - [sym__block_with_section] = STATE(198), - [sym__block_element] = STATE(198), - [sym_section] = STATE(198), - [sym_heading] = STATE(8), - [sym_list] = STATE(198), - [sym__list_dash] = STATE(254), - [sym__list_item_dash] = STATE(391), - [sym__list_plus] = STATE(254), - [sym__list_item_plus] = STATE(390), - [sym__list_star] = STATE(254), - [sym__list_item_star] = STATE(389), - [sym__list_task] = STATE(254), - [sym__list_item_task] = STATE(340), - [sym_list_marker_task] = STATE(37), - [sym__list_definition] = STATE(254), - [sym__list_item_definition] = STATE(517), - [sym__list_decimal_period] = STATE(254), - [sym__list_item_decimal_period] = STATE(515), - [sym__list_decimal_paren] = STATE(254), - [sym__list_item_decimal_paren] = STATE(493), - [sym__list_decimal_parens] = STATE(254), - [sym__list_item_decimal_parens] = STATE(490), - [sym__list_lower_alpha_period] = STATE(254), - [sym__list_item_lower_alpha_period] = STATE(486), - [sym__list_lower_alpha_paren] = STATE(254), - [sym__list_item_lower_alpha_paren] = STATE(485), - [sym__list_lower_alpha_parens] = STATE(254), - [sym__list_item_lower_alpha_parens] = STATE(483), - [sym__list_upper_alpha_period] = STATE(254), - [sym__list_item_upper_alpha_period] = STATE(482), - [sym__list_upper_alpha_paren] = STATE(254), - [sym__list_item_upper_alpha_paren] = STATE(481), - [sym__list_upper_alpha_parens] = STATE(254), - [sym__list_item_upper_alpha_parens] = STATE(480), - [sym__list_lower_roman_period] = STATE(254), - [sym__list_item_lower_roman_period] = STATE(479), - [sym__list_lower_roman_paren] = STATE(254), - [sym__list_item_lower_roman_paren] = STATE(476), - [sym__list_lower_roman_parens] = STATE(254), - [sym__list_item_lower_roman_parens] = STATE(475), - [sym__list_upper_roman_period] = STATE(254), - [sym__list_item_upper_roman_period] = STATE(472), - [sym__list_upper_roman_paren] = STATE(254), - [sym__list_item_upper_roman_paren] = STATE(513), - [sym__list_upper_roman_parens] = STATE(254), - [sym__list_item_upper_roman_parens] = STATE(507), - [sym_table] = STATE(198), - [sym__table_content] = STATE(62), - [sym_table_separator] = STATE(62), - [sym_table_row] = STATE(68), - [sym_footnote] = STATE(198), - [sym_div] = STATE(198), - [sym_div_marker_begin] = STATE(956), - [sym_code_block] = STATE(198), - [sym_raw_block] = STATE(198), - [sym_thematic_break] = STATE(198), - [sym_block_quote] = STATE(198), - [sym__block_quote_prefix] = STATE(436), - [sym_link_reference_definition] = STATE(198), - [sym_block_attribute] = STATE(198), - [sym__paragraph] = STATE(198), - [sym__paragraph_content] = STATE(774), - [sym__inline] = STATE(683), - [sym__symbol_fallback] = STATE(329), - [aux_sym_document_repeat1] = STATE(10), - [aux_sym__list_dash_repeat1] = STATE(391), - [aux_sym__list_plus_repeat1] = STATE(390), - [aux_sym__list_star_repeat1] = STATE(389), - [aux_sym__list_task_repeat1] = STATE(340), - [aux_sym__list_definition_repeat1] = STATE(517), - [aux_sym__list_decimal_period_repeat1] = STATE(515), - [aux_sym__list_decimal_paren_repeat1] = STATE(493), - [aux_sym__list_decimal_parens_repeat1] = STATE(490), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(486), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(485), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(483), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(482), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(481), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(480), - [aux_sym__list_lower_roman_period_repeat1] = STATE(479), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(476), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(475), - [aux_sym__list_upper_roman_period_repeat1] = STATE(472), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(513), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(507), - [aux_sym_table_repeat1] = STATE(62), - [aux_sym__block_quote_prefix_repeat1] = STATE(397), - [aux_sym__inline_repeat1] = STATE(329), - [anon_sym_LBRACK] = ACTIONS(75), - [anon_sym_PIPE] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), + [6] = { + [sym__block_with_section] = STATE(146), + [sym__block_element] = STATE(146), + [sym_section] = STATE(146), + [sym_heading] = STATE(7), + [sym_list] = STATE(146), + [sym__list_dash] = STATE(141), + [sym__list_item_dash] = STATE(416), + [sym__list_plus] = STATE(141), + [sym__list_item_plus] = STATE(419), + [sym__list_star] = STATE(141), + [sym__list_item_star] = STATE(407), + [sym__list_task] = STATE(141), + [sym__list_item_task] = STATE(371), + [sym_list_marker_task] = STATE(38), + [sym__list_definition] = STATE(141), + [sym__list_item_definition] = STATE(549), + [sym__list_decimal_period] = STATE(141), + [sym__list_item_decimal_period] = STATE(548), + [sym__list_decimal_paren] = STATE(141), + [sym__list_item_decimal_paren] = STATE(547), + [sym__list_decimal_parens] = STATE(141), + [sym__list_item_decimal_parens] = STATE(546), + [sym__list_lower_alpha_period] = STATE(141), + [sym__list_item_lower_alpha_period] = STATE(545), + [sym__list_lower_alpha_paren] = STATE(141), + [sym__list_item_lower_alpha_paren] = STATE(544), + [sym__list_lower_alpha_parens] = STATE(141), + [sym__list_item_lower_alpha_parens] = STATE(543), + [sym__list_upper_alpha_period] = STATE(141), + [sym__list_item_upper_alpha_period] = STATE(542), + [sym__list_upper_alpha_paren] = STATE(141), + [sym__list_item_upper_alpha_paren] = STATE(541), + [sym__list_upper_alpha_parens] = STATE(141), + [sym__list_item_upper_alpha_parens] = STATE(540), + [sym__list_lower_roman_period] = STATE(141), + [sym__list_item_lower_roman_period] = STATE(539), + [sym__list_lower_roman_paren] = STATE(141), + [sym__list_item_lower_roman_paren] = STATE(538), + [sym__list_lower_roman_parens] = STATE(141), + [sym__list_item_lower_roman_parens] = STATE(537), + [sym__list_upper_roman_period] = STATE(141), + [sym__list_item_upper_roman_period] = STATE(536), + [sym__list_upper_roman_paren] = STATE(141), + [sym__list_item_upper_roman_paren] = STATE(535), + [sym__list_upper_roman_parens] = STATE(141), + [sym__list_item_upper_roman_parens] = STATE(534), + [sym_table] = STATE(146), + [sym__table_content] = STATE(66), + [sym_table_separator] = STATE(66), + [sym_table_row] = STATE(72), + [sym_footnote] = STATE(146), + [sym_div] = STATE(146), + [sym_div_marker_begin] = STATE(985), + [sym_code_block] = STATE(146), + [sym_raw_block] = STATE(146), + [sym_thematic_break] = STATE(146), + [sym_block_quote] = STATE(146), + [sym__block_quote_prefix] = STATE(286), + [sym_link_reference_definition] = STATE(146), + [sym_block_attribute] = STATE(146), + [sym__paragraph] = STATE(146), + [sym__paragraph_content] = STATE(801), + [sym__inline] = STATE(703), + [sym__symbol_fallback] = STATE(366), + [aux_sym_document_repeat1] = STATE(3), + [aux_sym__list_dash_repeat1] = STATE(416), + [aux_sym__list_plus_repeat1] = STATE(419), + [aux_sym__list_star_repeat1] = STATE(407), + [aux_sym__list_task_repeat1] = STATE(371), + [aux_sym__list_definition_repeat1] = STATE(549), + [aux_sym__list_decimal_period_repeat1] = STATE(548), + [aux_sym__list_decimal_paren_repeat1] = STATE(547), + [aux_sym__list_decimal_parens_repeat1] = STATE(546), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(545), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(544), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(543), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(542), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(541), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(540), + [aux_sym__list_lower_roman_period_repeat1] = STATE(539), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(538), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(537), + [aux_sym__list_upper_roman_period_repeat1] = STATE(536), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(535), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(534), + [aux_sym_table_repeat1] = STATE(66), + [aux_sym__block_quote_prefix_repeat1] = STATE(323), + [aux_sym__inline_repeat1] = STATE(366), + [anon_sym_LBRACK] = ACTIONS(197), + [anon_sym_PIPE] = ACTIONS(199), + [anon_sym_LBRACE] = ACTIONS(201), [aux_sym__inline_token1] = ACTIONS(11), [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__block_close] = ACTIONS(81), - [sym__newline] = ACTIONS(83), + [sym__block_close] = ACTIONS(203), + [sym__newline] = ACTIONS(205), [sym__heading_begin] = ACTIONS(17), [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(85), + [sym__code_block_begin] = ACTIONS(207), [sym_list_marker_dash] = ACTIONS(23), [sym_list_marker_star] = ACTIONS(25), [sym_list_marker_plus] = ACTIONS(27), @@ -4748,111 +5063,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(57), [sym_list_marker_lower_roman_parens] = ACTIONS(59), [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(87), + [sym__block_quote_begin] = ACTIONS(209), [sym__block_quote_continuation] = ACTIONS(65), - [sym__thematic_break_dash] = ACTIONS(89), - [sym__thematic_break_star] = ACTIONS(89), - [sym__footnote_begin] = ACTIONS(91), + [sym__thematic_break_dash] = ACTIONS(211), + [sym__thematic_break_star] = ACTIONS(211), + [sym__footnote_begin] = ACTIONS(213), }, - [5] = { - [sym__block_with_section] = STATE(198), - [sym__block_element] = STATE(198), - [sym_section] = STATE(198), - [sym_heading] = STATE(8), - [sym_list] = STATE(198), - [sym__list_dash] = STATE(254), - [sym__list_item_dash] = STATE(391), - [sym__list_plus] = STATE(254), - [sym__list_item_plus] = STATE(390), - [sym__list_star] = STATE(254), - [sym__list_item_star] = STATE(389), - [sym__list_task] = STATE(254), - [sym__list_item_task] = STATE(340), - [sym_list_marker_task] = STATE(37), - [sym__list_definition] = STATE(254), - [sym__list_item_definition] = STATE(517), - [sym__list_decimal_period] = STATE(254), - [sym__list_item_decimal_period] = STATE(515), - [sym__list_decimal_paren] = STATE(254), - [sym__list_item_decimal_paren] = STATE(493), - [sym__list_decimal_parens] = STATE(254), - [sym__list_item_decimal_parens] = STATE(490), - [sym__list_lower_alpha_period] = STATE(254), - [sym__list_item_lower_alpha_period] = STATE(486), - [sym__list_lower_alpha_paren] = STATE(254), - [sym__list_item_lower_alpha_paren] = STATE(485), - [sym__list_lower_alpha_parens] = STATE(254), - [sym__list_item_lower_alpha_parens] = STATE(483), - [sym__list_upper_alpha_period] = STATE(254), - [sym__list_item_upper_alpha_period] = STATE(482), - [sym__list_upper_alpha_paren] = STATE(254), - [sym__list_item_upper_alpha_paren] = STATE(481), - [sym__list_upper_alpha_parens] = STATE(254), - [sym__list_item_upper_alpha_parens] = STATE(480), - [sym__list_lower_roman_period] = STATE(254), - [sym__list_item_lower_roman_period] = STATE(479), - [sym__list_lower_roman_paren] = STATE(254), - [sym__list_item_lower_roman_paren] = STATE(476), - [sym__list_lower_roman_parens] = STATE(254), - [sym__list_item_lower_roman_parens] = STATE(475), - [sym__list_upper_roman_period] = STATE(254), - [sym__list_item_upper_roman_period] = STATE(472), - [sym__list_upper_roman_paren] = STATE(254), - [sym__list_item_upper_roman_paren] = STATE(513), - [sym__list_upper_roman_parens] = STATE(254), - [sym__list_item_upper_roman_parens] = STATE(507), - [sym_table] = STATE(198), - [sym__table_content] = STATE(62), - [sym_table_separator] = STATE(62), - [sym_table_row] = STATE(68), - [sym_footnote] = STATE(198), - [sym_div] = STATE(198), - [sym_div_marker_begin] = STATE(956), - [sym_code_block] = STATE(198), - [sym_raw_block] = STATE(198), - [sym_thematic_break] = STATE(198), - [sym_block_quote] = STATE(198), - [sym__block_quote_prefix] = STATE(436), - [sym_link_reference_definition] = STATE(198), - [sym_block_attribute] = STATE(198), - [sym__paragraph] = STATE(198), - [sym__paragraph_content] = STATE(774), - [sym__inline] = STATE(683), - [sym__symbol_fallback] = STATE(329), - [aux_sym_document_repeat1] = STATE(7), - [aux_sym__list_dash_repeat1] = STATE(391), - [aux_sym__list_plus_repeat1] = STATE(390), - [aux_sym__list_star_repeat1] = STATE(389), - [aux_sym__list_task_repeat1] = STATE(340), - [aux_sym__list_definition_repeat1] = STATE(517), - [aux_sym__list_decimal_period_repeat1] = STATE(515), - [aux_sym__list_decimal_paren_repeat1] = STATE(493), - [aux_sym__list_decimal_parens_repeat1] = STATE(490), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(486), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(485), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(483), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(482), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(481), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(480), - [aux_sym__list_lower_roman_period_repeat1] = STATE(479), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(476), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(475), - [aux_sym__list_upper_roman_period_repeat1] = STATE(472), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(513), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(507), - [aux_sym_table_repeat1] = STATE(62), - [aux_sym__block_quote_prefix_repeat1] = STATE(397), - [aux_sym__inline_repeat1] = STATE(329), - [anon_sym_LBRACK] = ACTIONS(75), - [anon_sym_PIPE] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), + [7] = { + [sym__block_with_section] = STATE(146), + [sym__block_element] = STATE(146), + [sym_section] = STATE(146), + [sym_heading] = STATE(7), + [sym_list] = STATE(146), + [sym__list_dash] = STATE(141), + [sym__list_item_dash] = STATE(416), + [sym__list_plus] = STATE(141), + [sym__list_item_plus] = STATE(419), + [sym__list_star] = STATE(141), + [sym__list_item_star] = STATE(407), + [sym__list_task] = STATE(141), + [sym__list_item_task] = STATE(371), + [sym_list_marker_task] = STATE(38), + [sym__list_definition] = STATE(141), + [sym__list_item_definition] = STATE(549), + [sym__list_decimal_period] = STATE(141), + [sym__list_item_decimal_period] = STATE(548), + [sym__list_decimal_paren] = STATE(141), + [sym__list_item_decimal_paren] = STATE(547), + [sym__list_decimal_parens] = STATE(141), + [sym__list_item_decimal_parens] = STATE(546), + [sym__list_lower_alpha_period] = STATE(141), + [sym__list_item_lower_alpha_period] = STATE(545), + [sym__list_lower_alpha_paren] = STATE(141), + [sym__list_item_lower_alpha_paren] = STATE(544), + [sym__list_lower_alpha_parens] = STATE(141), + [sym__list_item_lower_alpha_parens] = STATE(543), + [sym__list_upper_alpha_period] = STATE(141), + [sym__list_item_upper_alpha_period] = STATE(542), + [sym__list_upper_alpha_paren] = STATE(141), + [sym__list_item_upper_alpha_paren] = STATE(541), + [sym__list_upper_alpha_parens] = STATE(141), + [sym__list_item_upper_alpha_parens] = STATE(540), + [sym__list_lower_roman_period] = STATE(141), + [sym__list_item_lower_roman_period] = STATE(539), + [sym__list_lower_roman_paren] = STATE(141), + [sym__list_item_lower_roman_paren] = STATE(538), + [sym__list_lower_roman_parens] = STATE(141), + [sym__list_item_lower_roman_parens] = STATE(537), + [sym__list_upper_roman_period] = STATE(141), + [sym__list_item_upper_roman_period] = STATE(536), + [sym__list_upper_roman_paren] = STATE(141), + [sym__list_item_upper_roman_paren] = STATE(535), + [sym__list_upper_roman_parens] = STATE(141), + [sym__list_item_upper_roman_parens] = STATE(534), + [sym_table] = STATE(146), + [sym__table_content] = STATE(66), + [sym_table_separator] = STATE(66), + [sym_table_row] = STATE(72), + [sym_footnote] = STATE(146), + [sym_div] = STATE(146), + [sym_div_marker_begin] = STATE(985), + [sym_code_block] = STATE(146), + [sym_raw_block] = STATE(146), + [sym_thematic_break] = STATE(146), + [sym_block_quote] = STATE(146), + [sym__block_quote_prefix] = STATE(286), + [sym_link_reference_definition] = STATE(146), + [sym_block_attribute] = STATE(146), + [sym__paragraph] = STATE(146), + [sym__paragraph_content] = STATE(801), + [sym__inline] = STATE(703), + [sym__symbol_fallback] = STATE(366), + [aux_sym_document_repeat1] = STATE(9), + [aux_sym__list_dash_repeat1] = STATE(416), + [aux_sym__list_plus_repeat1] = STATE(419), + [aux_sym__list_star_repeat1] = STATE(407), + [aux_sym__list_task_repeat1] = STATE(371), + [aux_sym__list_definition_repeat1] = STATE(549), + [aux_sym__list_decimal_period_repeat1] = STATE(548), + [aux_sym__list_decimal_paren_repeat1] = STATE(547), + [aux_sym__list_decimal_parens_repeat1] = STATE(546), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(545), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(544), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(543), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(542), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(541), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(540), + [aux_sym__list_lower_roman_period_repeat1] = STATE(539), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(538), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(537), + [aux_sym__list_upper_roman_period_repeat1] = STATE(536), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(535), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(534), + [aux_sym_table_repeat1] = STATE(66), + [aux_sym__block_quote_prefix_repeat1] = STATE(323), + [aux_sym__inline_repeat1] = STATE(366), + [anon_sym_LBRACK] = ACTIONS(197), + [anon_sym_PIPE] = ACTIONS(199), + [anon_sym_LBRACE] = ACTIONS(201), [aux_sym__inline_token1] = ACTIONS(11), [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__block_close] = ACTIONS(93), - [sym__newline] = ACTIONS(83), + [sym__block_close] = ACTIONS(215), + [sym__newline] = ACTIONS(205), [sym__heading_begin] = ACTIONS(17), [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(85), + [sym__code_block_begin] = ACTIONS(207), [sym_list_marker_dash] = ACTIONS(23), [sym_list_marker_star] = ACTIONS(25), [sym_list_marker_plus] = ACTIONS(27), @@ -4873,361 +5188,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(57), [sym_list_marker_lower_roman_parens] = ACTIONS(59), [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(87), + [sym__block_quote_begin] = ACTIONS(209), [sym__block_quote_continuation] = ACTIONS(65), - [sym__thematic_break_dash] = ACTIONS(89), - [sym__thematic_break_star] = ACTIONS(89), - [sym__footnote_begin] = ACTIONS(91), - }, - [6] = { - [sym__block_with_section] = STATE(235), - [sym__block_element] = STATE(235), - [sym_section] = STATE(235), - [sym_heading] = STATE(4), - [sym_list] = STATE(235), - [sym__list_dash] = STATE(212), - [sym__list_item_dash] = STATE(366), - [sym__list_plus] = STATE(212), - [sym__list_item_plus] = STATE(374), - [sym__list_star] = STATE(212), - [sym__list_item_star] = STATE(375), - [sym__list_task] = STATE(212), - [sym__list_item_task] = STATE(360), - [sym_list_marker_task] = STATE(37), - [sym__list_definition] = STATE(212), - [sym__list_item_definition] = STATE(553), - [sym__list_decimal_period] = STATE(212), - [sym__list_item_decimal_period] = STATE(554), - [sym__list_decimal_paren] = STATE(212), - [sym__list_item_decimal_paren] = STATE(556), - [sym__list_decimal_parens] = STATE(212), - [sym__list_item_decimal_parens] = STATE(561), - [sym__list_lower_alpha_period] = STATE(212), - [sym__list_item_lower_alpha_period] = STATE(489), - [sym__list_lower_alpha_paren] = STATE(212), - [sym__list_item_lower_alpha_paren] = STATE(564), - [sym__list_lower_alpha_parens] = STATE(212), - [sym__list_item_lower_alpha_parens] = STATE(566), - [sym__list_upper_alpha_period] = STATE(212), - [sym__list_item_upper_alpha_period] = STATE(569), - [sym__list_upper_alpha_paren] = STATE(212), - [sym__list_item_upper_alpha_paren] = STATE(572), - [sym__list_upper_alpha_parens] = STATE(212), - [sym__list_item_upper_alpha_parens] = STATE(574), - [sym__list_lower_roman_period] = STATE(212), - [sym__list_item_lower_roman_period] = STATE(576), - [sym__list_lower_roman_paren] = STATE(212), - [sym__list_item_lower_roman_paren] = STATE(580), - [sym__list_lower_roman_parens] = STATE(212), - [sym__list_item_lower_roman_parens] = STATE(582), - [sym__list_upper_roman_period] = STATE(212), - [sym__list_item_upper_roman_period] = STATE(586), - [sym__list_upper_roman_paren] = STATE(212), - [sym__list_item_upper_roman_paren] = STATE(584), - [sym__list_upper_roman_parens] = STATE(212), - [sym__list_item_upper_roman_parens] = STATE(562), - [sym_table] = STATE(235), - [sym__table_content] = STATE(61), - [sym_table_separator] = STATE(61), - [sym_table_row] = STATE(66), - [sym_footnote] = STATE(235), - [sym_div] = STATE(235), - [sym_div_marker_begin] = STATE(968), - [sym_code_block] = STATE(235), - [sym_raw_block] = STATE(235), - [sym_thematic_break] = STATE(235), - [sym_block_quote] = STATE(235), - [sym__block_quote_prefix] = STATE(424), - [sym_link_reference_definition] = STATE(235), - [sym_block_attribute] = STATE(235), - [sym__paragraph] = STATE(235), - [sym__paragraph_content] = STATE(756), - [sym__inline] = STATE(683), - [sym__symbol_fallback] = STATE(329), - [aux_sym_document_repeat1] = STATE(6), - [aux_sym__list_dash_repeat1] = STATE(366), - [aux_sym__list_plus_repeat1] = STATE(374), - [aux_sym__list_star_repeat1] = STATE(375), - [aux_sym__list_task_repeat1] = STATE(360), - [aux_sym__list_definition_repeat1] = STATE(553), - [aux_sym__list_decimal_period_repeat1] = STATE(554), - [aux_sym__list_decimal_paren_repeat1] = STATE(556), - [aux_sym__list_decimal_parens_repeat1] = STATE(561), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(489), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(564), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(566), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(569), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(572), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(574), - [aux_sym__list_lower_roman_period_repeat1] = STATE(576), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(580), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(582), - [aux_sym__list_upper_roman_period_repeat1] = STATE(586), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(584), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(562), - [aux_sym_table_repeat1] = STATE(61), - [aux_sym__block_quote_prefix_repeat1] = STATE(397), - [aux_sym__inline_repeat1] = STATE(329), - [ts_builtin_sym_end] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_PIPE] = ACTIONS(100), - [anon_sym_LBRACE] = ACTIONS(103), - [aux_sym__inline_token1] = ACTIONS(106), - [anon_sym_LBRACE_DASH] = ACTIONS(106), - [sym__newline] = ACTIONS(109), - [sym__heading_begin] = ACTIONS(112), - [sym__div_begin] = ACTIONS(115), - [sym__code_block_begin] = ACTIONS(118), - [sym_list_marker_dash] = ACTIONS(121), - [sym_list_marker_star] = ACTIONS(124), - [sym_list_marker_plus] = ACTIONS(127), - [sym__list_marker_task_begin] = ACTIONS(130), - [sym_list_marker_definition] = ACTIONS(133), - [sym_list_marker_decimal_period] = ACTIONS(136), - [sym_list_marker_lower_alpha_period] = ACTIONS(139), - [sym_list_marker_upper_alpha_period] = ACTIONS(142), - [sym_list_marker_lower_roman_period] = ACTIONS(145), - [sym_list_marker_upper_roman_period] = ACTIONS(148), - [sym_list_marker_decimal_paren] = ACTIONS(151), - [sym_list_marker_lower_alpha_paren] = ACTIONS(154), - [sym_list_marker_upper_alpha_paren] = ACTIONS(157), - [sym_list_marker_lower_roman_paren] = ACTIONS(160), - [sym_list_marker_upper_roman_paren] = ACTIONS(163), - [sym_list_marker_decimal_parens] = ACTIONS(166), - [sym_list_marker_lower_alpha_parens] = ACTIONS(169), - [sym_list_marker_upper_alpha_parens] = ACTIONS(172), - [sym_list_marker_lower_roman_parens] = ACTIONS(175), - [sym_list_marker_upper_roman_parens] = ACTIONS(178), - [sym__block_quote_begin] = ACTIONS(181), - [sym__block_quote_continuation] = ACTIONS(184), - [sym__thematic_break_dash] = ACTIONS(187), - [sym__thematic_break_star] = ACTIONS(187), - [sym__footnote_begin] = ACTIONS(190), - }, - [7] = { - [sym__block_with_section] = STATE(198), - [sym__block_element] = STATE(198), - [sym_section] = STATE(198), - [sym_heading] = STATE(8), - [sym_list] = STATE(198), - [sym__list_dash] = STATE(254), - [sym__list_item_dash] = STATE(391), - [sym__list_plus] = STATE(254), - [sym__list_item_plus] = STATE(390), - [sym__list_star] = STATE(254), - [sym__list_item_star] = STATE(389), - [sym__list_task] = STATE(254), - [sym__list_item_task] = STATE(340), - [sym_list_marker_task] = STATE(37), - [sym__list_definition] = STATE(254), - [sym__list_item_definition] = STATE(517), - [sym__list_decimal_period] = STATE(254), - [sym__list_item_decimal_period] = STATE(515), - [sym__list_decimal_paren] = STATE(254), - [sym__list_item_decimal_paren] = STATE(493), - [sym__list_decimal_parens] = STATE(254), - [sym__list_item_decimal_parens] = STATE(490), - [sym__list_lower_alpha_period] = STATE(254), - [sym__list_item_lower_alpha_period] = STATE(486), - [sym__list_lower_alpha_paren] = STATE(254), - [sym__list_item_lower_alpha_paren] = STATE(485), - [sym__list_lower_alpha_parens] = STATE(254), - [sym__list_item_lower_alpha_parens] = STATE(483), - [sym__list_upper_alpha_period] = STATE(254), - [sym__list_item_upper_alpha_period] = STATE(482), - [sym__list_upper_alpha_paren] = STATE(254), - [sym__list_item_upper_alpha_paren] = STATE(481), - [sym__list_upper_alpha_parens] = STATE(254), - [sym__list_item_upper_alpha_parens] = STATE(480), - [sym__list_lower_roman_period] = STATE(254), - [sym__list_item_lower_roman_period] = STATE(479), - [sym__list_lower_roman_paren] = STATE(254), - [sym__list_item_lower_roman_paren] = STATE(476), - [sym__list_lower_roman_parens] = STATE(254), - [sym__list_item_lower_roman_parens] = STATE(475), - [sym__list_upper_roman_period] = STATE(254), - [sym__list_item_upper_roman_period] = STATE(472), - [sym__list_upper_roman_paren] = STATE(254), - [sym__list_item_upper_roman_paren] = STATE(513), - [sym__list_upper_roman_parens] = STATE(254), - [sym__list_item_upper_roman_parens] = STATE(507), - [sym_table] = STATE(198), - [sym__table_content] = STATE(62), - [sym_table_separator] = STATE(62), - [sym_table_row] = STATE(68), - [sym_footnote] = STATE(198), - [sym_div] = STATE(198), - [sym_div_marker_begin] = STATE(956), - [sym_code_block] = STATE(198), - [sym_raw_block] = STATE(198), - [sym_thematic_break] = STATE(198), - [sym_block_quote] = STATE(198), - [sym__block_quote_prefix] = STATE(436), - [sym_link_reference_definition] = STATE(198), - [sym_block_attribute] = STATE(198), - [sym__paragraph] = STATE(198), - [sym__paragraph_content] = STATE(774), - [sym__inline] = STATE(683), - [sym__symbol_fallback] = STATE(329), - [aux_sym_document_repeat1] = STATE(7), - [aux_sym__list_dash_repeat1] = STATE(391), - [aux_sym__list_plus_repeat1] = STATE(390), - [aux_sym__list_star_repeat1] = STATE(389), - [aux_sym__list_task_repeat1] = STATE(340), - [aux_sym__list_definition_repeat1] = STATE(517), - [aux_sym__list_decimal_period_repeat1] = STATE(515), - [aux_sym__list_decimal_paren_repeat1] = STATE(493), - [aux_sym__list_decimal_parens_repeat1] = STATE(490), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(486), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(485), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(483), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(482), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(481), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(480), - [aux_sym__list_lower_roman_period_repeat1] = STATE(479), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(476), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(475), - [aux_sym__list_upper_roman_period_repeat1] = STATE(472), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(513), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(507), - [aux_sym_table_repeat1] = STATE(62), - [aux_sym__block_quote_prefix_repeat1] = STATE(397), - [aux_sym__inline_repeat1] = STATE(329), - [anon_sym_LBRACK] = ACTIONS(193), - [anon_sym_PIPE] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(199), - [aux_sym__inline_token1] = ACTIONS(106), - [anon_sym_LBRACE_DASH] = ACTIONS(106), - [sym__block_close] = ACTIONS(95), - [sym__newline] = ACTIONS(202), - [sym__heading_begin] = ACTIONS(112), - [sym__div_begin] = ACTIONS(115), - [sym__code_block_begin] = ACTIONS(205), - [sym_list_marker_dash] = ACTIONS(121), - [sym_list_marker_star] = ACTIONS(124), - [sym_list_marker_plus] = ACTIONS(127), - [sym__list_marker_task_begin] = ACTIONS(130), - [sym_list_marker_definition] = ACTIONS(133), - [sym_list_marker_decimal_period] = ACTIONS(136), - [sym_list_marker_lower_alpha_period] = ACTIONS(139), - [sym_list_marker_upper_alpha_period] = ACTIONS(142), - [sym_list_marker_lower_roman_period] = ACTIONS(145), - [sym_list_marker_upper_roman_period] = ACTIONS(148), - [sym_list_marker_decimal_paren] = ACTIONS(151), - [sym_list_marker_lower_alpha_paren] = ACTIONS(154), - [sym_list_marker_upper_alpha_paren] = ACTIONS(157), - [sym_list_marker_lower_roman_paren] = ACTIONS(160), - [sym_list_marker_upper_roman_paren] = ACTIONS(163), - [sym_list_marker_decimal_parens] = ACTIONS(166), - [sym_list_marker_lower_alpha_parens] = ACTIONS(169), - [sym_list_marker_upper_alpha_parens] = ACTIONS(172), - [sym_list_marker_lower_roman_parens] = ACTIONS(175), - [sym_list_marker_upper_roman_parens] = ACTIONS(178), - [sym__block_quote_begin] = ACTIONS(208), - [sym__block_quote_continuation] = ACTIONS(184), [sym__thematic_break_dash] = ACTIONS(211), [sym__thematic_break_star] = ACTIONS(211), - [sym__footnote_begin] = ACTIONS(214), + [sym__footnote_begin] = ACTIONS(213), }, [8] = { - [sym__block_with_section] = STATE(198), - [sym__block_element] = STATE(198), - [sym_section] = STATE(198), - [sym_heading] = STATE(8), - [sym_list] = STATE(198), - [sym__list_dash] = STATE(254), - [sym__list_item_dash] = STATE(391), - [sym__list_plus] = STATE(254), - [sym__list_item_plus] = STATE(390), - [sym__list_star] = STATE(254), - [sym__list_item_star] = STATE(389), - [sym__list_task] = STATE(254), - [sym__list_item_task] = STATE(340), - [sym_list_marker_task] = STATE(37), - [sym__list_definition] = STATE(254), - [sym__list_item_definition] = STATE(517), - [sym__list_decimal_period] = STATE(254), - [sym__list_item_decimal_period] = STATE(515), - [sym__list_decimal_paren] = STATE(254), - [sym__list_item_decimal_paren] = STATE(493), - [sym__list_decimal_parens] = STATE(254), - [sym__list_item_decimal_parens] = STATE(490), - [sym__list_lower_alpha_period] = STATE(254), - [sym__list_item_lower_alpha_period] = STATE(486), - [sym__list_lower_alpha_paren] = STATE(254), - [sym__list_item_lower_alpha_paren] = STATE(485), - [sym__list_lower_alpha_parens] = STATE(254), - [sym__list_item_lower_alpha_parens] = STATE(483), - [sym__list_upper_alpha_period] = STATE(254), - [sym__list_item_upper_alpha_period] = STATE(482), - [sym__list_upper_alpha_paren] = STATE(254), - [sym__list_item_upper_alpha_paren] = STATE(481), - [sym__list_upper_alpha_parens] = STATE(254), - [sym__list_item_upper_alpha_parens] = STATE(480), - [sym__list_lower_roman_period] = STATE(254), - [sym__list_item_lower_roman_period] = STATE(479), - [sym__list_lower_roman_paren] = STATE(254), - [sym__list_item_lower_roman_paren] = STATE(476), - [sym__list_lower_roman_parens] = STATE(254), - [sym__list_item_lower_roman_parens] = STATE(475), - [sym__list_upper_roman_period] = STATE(254), - [sym__list_item_upper_roman_period] = STATE(472), - [sym__list_upper_roman_paren] = STATE(254), - [sym__list_item_upper_roman_paren] = STATE(513), - [sym__list_upper_roman_parens] = STATE(254), - [sym__list_item_upper_roman_parens] = STATE(507), - [sym_table] = STATE(198), - [sym__table_content] = STATE(62), - [sym_table_separator] = STATE(62), - [sym_table_row] = STATE(68), - [sym_footnote] = STATE(198), - [sym_div] = STATE(198), - [sym_div_marker_begin] = STATE(956), - [sym_code_block] = STATE(198), - [sym_raw_block] = STATE(198), - [sym_thematic_break] = STATE(198), - [sym_block_quote] = STATE(198), - [sym__block_quote_prefix] = STATE(436), - [sym_link_reference_definition] = STATE(198), - [sym_block_attribute] = STATE(198), - [sym__paragraph] = STATE(198), - [sym__paragraph_content] = STATE(774), - [sym__inline] = STATE(683), - [sym__symbol_fallback] = STATE(329), - [aux_sym_document_repeat1] = STATE(5), - [aux_sym__list_dash_repeat1] = STATE(391), - [aux_sym__list_plus_repeat1] = STATE(390), - [aux_sym__list_star_repeat1] = STATE(389), - [aux_sym__list_task_repeat1] = STATE(340), - [aux_sym__list_definition_repeat1] = STATE(517), - [aux_sym__list_decimal_period_repeat1] = STATE(515), - [aux_sym__list_decimal_paren_repeat1] = STATE(493), - [aux_sym__list_decimal_parens_repeat1] = STATE(490), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(486), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(485), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(483), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(482), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(481), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(480), - [aux_sym__list_lower_roman_period_repeat1] = STATE(479), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(476), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(475), - [aux_sym__list_upper_roman_period_repeat1] = STATE(472), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(513), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(507), - [aux_sym_table_repeat1] = STATE(62), - [aux_sym__block_quote_prefix_repeat1] = STATE(397), - [aux_sym__inline_repeat1] = STATE(329), - [anon_sym_LBRACK] = ACTIONS(75), - [anon_sym_PIPE] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), + [sym__block_with_section] = STATE(156), + [sym__block_element] = STATE(156), + [sym_section] = STATE(156), + [sym_heading] = STATE(10), + [sym_list] = STATE(156), + [sym__list_dash] = STATE(143), + [sym__list_item_dash] = STATE(412), + [sym__list_plus] = STATE(143), + [sym__list_item_plus] = STATE(397), + [sym__list_star] = STATE(143), + [sym__list_item_star] = STATE(396), + [sym__list_task] = STATE(143), + [sym__list_item_task] = STATE(378), + [sym_list_marker_task] = STATE(38), + [sym__list_definition] = STATE(143), + [sym__list_item_definition] = STATE(583), + [sym__list_decimal_period] = STATE(143), + [sym__list_item_decimal_period] = STATE(584), + [sym__list_decimal_paren] = STATE(143), + [sym__list_item_decimal_paren] = STATE(585), + [sym__list_decimal_parens] = STATE(143), + [sym__list_item_decimal_parens] = STATE(587), + [sym__list_lower_alpha_period] = STATE(143), + [sym__list_item_lower_alpha_period] = STATE(590), + [sym__list_lower_alpha_paren] = STATE(143), + [sym__list_item_lower_alpha_paren] = STATE(592), + [sym__list_lower_alpha_parens] = STATE(143), + [sym__list_item_lower_alpha_parens] = STATE(593), + [sym__list_upper_alpha_period] = STATE(143), + [sym__list_item_upper_alpha_period] = STATE(597), + [sym__list_upper_alpha_paren] = STATE(143), + [sym__list_item_upper_alpha_paren] = STATE(490), + [sym__list_upper_alpha_parens] = STATE(143), + [sym__list_item_upper_alpha_parens] = STATE(607), + [sym__list_lower_roman_period] = STATE(143), + [sym__list_item_lower_roman_period] = STATE(602), + [sym__list_lower_roman_paren] = STATE(143), + [sym__list_item_lower_roman_paren] = STATE(598), + [sym__list_lower_roman_parens] = STATE(143), + [sym__list_item_lower_roman_parens] = STATE(596), + [sym__list_upper_roman_period] = STATE(143), + [sym__list_item_upper_roman_period] = STATE(608), + [sym__list_upper_roman_paren] = STATE(143), + [sym__list_item_upper_roman_paren] = STATE(562), + [sym__list_upper_roman_parens] = STATE(143), + [sym__list_item_upper_roman_parens] = STATE(601), + [sym_table] = STATE(156), + [sym__table_content] = STATE(64), + [sym_table_separator] = STATE(64), + [sym_table_row] = STATE(70), + [sym_footnote] = STATE(156), + [sym_div] = STATE(156), + [sym_div_marker_begin] = STATE(1004), + [sym_code_block] = STATE(156), + [sym_raw_block] = STATE(156), + [sym_thematic_break] = STATE(156), + [sym_block_quote] = STATE(156), + [sym__block_quote_prefix] = STATE(284), + [sym_link_reference_definition] = STATE(156), + [sym_block_attribute] = STATE(156), + [sym__paragraph] = STATE(156), + [sym__paragraph_content] = STATE(720), + [sym__inline] = STATE(703), + [sym__symbol_fallback] = STATE(366), + [aux_sym_document_repeat1] = STATE(4), + [aux_sym__list_dash_repeat1] = STATE(412), + [aux_sym__list_plus_repeat1] = STATE(397), + [aux_sym__list_star_repeat1] = STATE(396), + [aux_sym__list_task_repeat1] = STATE(378), + [aux_sym__list_definition_repeat1] = STATE(583), + [aux_sym__list_decimal_period_repeat1] = STATE(584), + [aux_sym__list_decimal_paren_repeat1] = STATE(585), + [aux_sym__list_decimal_parens_repeat1] = STATE(587), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(590), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(592), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(593), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(597), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(490), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(607), + [aux_sym__list_lower_roman_period_repeat1] = STATE(602), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(598), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(596), + [aux_sym__list_upper_roman_period_repeat1] = STATE(608), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(562), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(601), + [aux_sym_table_repeat1] = STATE(64), + [aux_sym__block_quote_prefix_repeat1] = STATE(323), + [aux_sym__inline_repeat1] = STATE(366), + [ts_builtin_sym_end] = ACTIONS(71), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(9), [aux_sym__inline_token1] = ACTIONS(11), [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__block_close] = ACTIONS(217), - [sym__newline] = ACTIONS(83), + [sym__newline] = ACTIONS(13), [sym__heading_begin] = ACTIONS(17), [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(85), + [sym__code_block_begin] = ACTIONS(21), [sym_list_marker_dash] = ACTIONS(23), [sym_list_marker_star] = ACTIONS(25), [sym_list_marker_plus] = ACTIONS(27), @@ -5248,111 +5313,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(57), [sym_list_marker_lower_roman_parens] = ACTIONS(59), [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(87), + [sym__block_quote_begin] = ACTIONS(63), [sym__block_quote_continuation] = ACTIONS(65), - [sym__thematic_break_dash] = ACTIONS(89), - [sym__thematic_break_star] = ACTIONS(89), - [sym__footnote_begin] = ACTIONS(91), + [sym__thematic_break_dash] = ACTIONS(67), + [sym__thematic_break_star] = ACTIONS(67), + [sym__footnote_begin] = ACTIONS(69), }, [9] = { - [sym__block_with_section] = STATE(235), - [sym__block_element] = STATE(235), - [sym_section] = STATE(235), - [sym_heading] = STATE(4), - [sym_list] = STATE(235), - [sym__list_dash] = STATE(212), - [sym__list_item_dash] = STATE(366), - [sym__list_plus] = STATE(212), - [sym__list_item_plus] = STATE(374), - [sym__list_star] = STATE(212), - [sym__list_item_star] = STATE(375), - [sym__list_task] = STATE(212), - [sym__list_item_task] = STATE(360), - [sym_list_marker_task] = STATE(37), - [sym__list_definition] = STATE(212), - [sym__list_item_definition] = STATE(553), - [sym__list_decimal_period] = STATE(212), - [sym__list_item_decimal_period] = STATE(554), - [sym__list_decimal_paren] = STATE(212), - [sym__list_item_decimal_paren] = STATE(556), - [sym__list_decimal_parens] = STATE(212), - [sym__list_item_decimal_parens] = STATE(561), - [sym__list_lower_alpha_period] = STATE(212), - [sym__list_item_lower_alpha_period] = STATE(489), - [sym__list_lower_alpha_paren] = STATE(212), - [sym__list_item_lower_alpha_paren] = STATE(564), - [sym__list_lower_alpha_parens] = STATE(212), - [sym__list_item_lower_alpha_parens] = STATE(566), - [sym__list_upper_alpha_period] = STATE(212), - [sym__list_item_upper_alpha_period] = STATE(569), - [sym__list_upper_alpha_paren] = STATE(212), - [sym__list_item_upper_alpha_paren] = STATE(572), - [sym__list_upper_alpha_parens] = STATE(212), - [sym__list_item_upper_alpha_parens] = STATE(574), - [sym__list_lower_roman_period] = STATE(212), - [sym__list_item_lower_roman_period] = STATE(576), - [sym__list_lower_roman_paren] = STATE(212), - [sym__list_item_lower_roman_paren] = STATE(580), - [sym__list_lower_roman_parens] = STATE(212), - [sym__list_item_lower_roman_parens] = STATE(582), - [sym__list_upper_roman_period] = STATE(212), - [sym__list_item_upper_roman_period] = STATE(586), - [sym__list_upper_roman_paren] = STATE(212), - [sym__list_item_upper_roman_paren] = STATE(584), - [sym__list_upper_roman_parens] = STATE(212), - [sym__list_item_upper_roman_parens] = STATE(562), - [sym_table] = STATE(235), - [sym__table_content] = STATE(61), - [sym_table_separator] = STATE(61), - [sym_table_row] = STATE(66), - [sym_footnote] = STATE(235), - [sym_div] = STATE(235), - [sym_div_marker_begin] = STATE(968), - [sym_code_block] = STATE(235), - [sym_raw_block] = STATE(235), - [sym_thematic_break] = STATE(235), - [sym_block_quote] = STATE(235), - [sym__block_quote_prefix] = STATE(424), - [sym_link_reference_definition] = STATE(235), - [sym_block_attribute] = STATE(235), - [sym__paragraph] = STATE(235), - [sym__paragraph_content] = STATE(756), - [sym__inline] = STATE(683), - [sym__symbol_fallback] = STATE(329), - [aux_sym_document_repeat1] = STATE(6), - [aux_sym__list_dash_repeat1] = STATE(366), - [aux_sym__list_plus_repeat1] = STATE(374), - [aux_sym__list_star_repeat1] = STATE(375), - [aux_sym__list_task_repeat1] = STATE(360), - [aux_sym__list_definition_repeat1] = STATE(553), - [aux_sym__list_decimal_period_repeat1] = STATE(554), - [aux_sym__list_decimal_paren_repeat1] = STATE(556), - [aux_sym__list_decimal_parens_repeat1] = STATE(561), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(489), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(564), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(566), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(569), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(572), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(574), - [aux_sym__list_lower_roman_period_repeat1] = STATE(576), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(580), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(582), - [aux_sym__list_upper_roman_period_repeat1] = STATE(586), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(584), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(562), - [aux_sym_table_repeat1] = STATE(61), - [aux_sym__block_quote_prefix_repeat1] = STATE(397), - [aux_sym__inline_repeat1] = STATE(329), - [ts_builtin_sym_end] = ACTIONS(73), - [anon_sym_LBRACK] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(9), + [sym__block_with_section] = STATE(146), + [sym__block_element] = STATE(146), + [sym_section] = STATE(146), + [sym_heading] = STATE(7), + [sym_list] = STATE(146), + [sym__list_dash] = STATE(141), + [sym__list_item_dash] = STATE(416), + [sym__list_plus] = STATE(141), + [sym__list_item_plus] = STATE(419), + [sym__list_star] = STATE(141), + [sym__list_item_star] = STATE(407), + [sym__list_task] = STATE(141), + [sym__list_item_task] = STATE(371), + [sym_list_marker_task] = STATE(38), + [sym__list_definition] = STATE(141), + [sym__list_item_definition] = STATE(549), + [sym__list_decimal_period] = STATE(141), + [sym__list_item_decimal_period] = STATE(548), + [sym__list_decimal_paren] = STATE(141), + [sym__list_item_decimal_paren] = STATE(547), + [sym__list_decimal_parens] = STATE(141), + [sym__list_item_decimal_parens] = STATE(546), + [sym__list_lower_alpha_period] = STATE(141), + [sym__list_item_lower_alpha_period] = STATE(545), + [sym__list_lower_alpha_paren] = STATE(141), + [sym__list_item_lower_alpha_paren] = STATE(544), + [sym__list_lower_alpha_parens] = STATE(141), + [sym__list_item_lower_alpha_parens] = STATE(543), + [sym__list_upper_alpha_period] = STATE(141), + [sym__list_item_upper_alpha_period] = STATE(542), + [sym__list_upper_alpha_paren] = STATE(141), + [sym__list_item_upper_alpha_paren] = STATE(541), + [sym__list_upper_alpha_parens] = STATE(141), + [sym__list_item_upper_alpha_parens] = STATE(540), + [sym__list_lower_roman_period] = STATE(141), + [sym__list_item_lower_roman_period] = STATE(539), + [sym__list_lower_roman_paren] = STATE(141), + [sym__list_item_lower_roman_paren] = STATE(538), + [sym__list_lower_roman_parens] = STATE(141), + [sym__list_item_lower_roman_parens] = STATE(537), + [sym__list_upper_roman_period] = STATE(141), + [sym__list_item_upper_roman_period] = STATE(536), + [sym__list_upper_roman_paren] = STATE(141), + [sym__list_item_upper_roman_paren] = STATE(535), + [sym__list_upper_roman_parens] = STATE(141), + [sym__list_item_upper_roman_parens] = STATE(534), + [sym_table] = STATE(146), + [sym__table_content] = STATE(66), + [sym_table_separator] = STATE(66), + [sym_table_row] = STATE(72), + [sym_footnote] = STATE(146), + [sym_div] = STATE(146), + [sym_div_marker_begin] = STATE(985), + [sym_code_block] = STATE(146), + [sym_raw_block] = STATE(146), + [sym_thematic_break] = STATE(146), + [sym_block_quote] = STATE(146), + [sym__block_quote_prefix] = STATE(286), + [sym_link_reference_definition] = STATE(146), + [sym_block_attribute] = STATE(146), + [sym__paragraph] = STATE(146), + [sym__paragraph_content] = STATE(801), + [sym__inline] = STATE(703), + [sym__symbol_fallback] = STATE(366), + [aux_sym_document_repeat1] = STATE(3), + [aux_sym__list_dash_repeat1] = STATE(416), + [aux_sym__list_plus_repeat1] = STATE(419), + [aux_sym__list_star_repeat1] = STATE(407), + [aux_sym__list_task_repeat1] = STATE(371), + [aux_sym__list_definition_repeat1] = STATE(549), + [aux_sym__list_decimal_period_repeat1] = STATE(548), + [aux_sym__list_decimal_paren_repeat1] = STATE(547), + [aux_sym__list_decimal_parens_repeat1] = STATE(546), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(545), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(544), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(543), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(542), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(541), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(540), + [aux_sym__list_lower_roman_period_repeat1] = STATE(539), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(538), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(537), + [aux_sym__list_upper_roman_period_repeat1] = STATE(536), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(535), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(534), + [aux_sym_table_repeat1] = STATE(66), + [aux_sym__block_quote_prefix_repeat1] = STATE(323), + [aux_sym__inline_repeat1] = STATE(366), + [anon_sym_LBRACK] = ACTIONS(197), + [anon_sym_PIPE] = ACTIONS(199), + [anon_sym_LBRACE] = ACTIONS(201), [aux_sym__inline_token1] = ACTIONS(11), [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__newline] = ACTIONS(13), + [sym__block_close] = ACTIONS(217), + [sym__newline] = ACTIONS(205), [sym__heading_begin] = ACTIONS(17), [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(21), + [sym__code_block_begin] = ACTIONS(207), [sym_list_marker_dash] = ACTIONS(23), [sym_list_marker_star] = ACTIONS(25), [sym_list_marker_plus] = ACTIONS(27), @@ -5373,111 +5438,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(57), [sym_list_marker_lower_roman_parens] = ACTIONS(59), [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(63), + [sym__block_quote_begin] = ACTIONS(209), [sym__block_quote_continuation] = ACTIONS(65), - [sym__thematic_break_dash] = ACTIONS(67), - [sym__thematic_break_star] = ACTIONS(67), - [sym__footnote_begin] = ACTIONS(69), + [sym__thematic_break_dash] = ACTIONS(211), + [sym__thematic_break_star] = ACTIONS(211), + [sym__footnote_begin] = ACTIONS(213), }, [10] = { - [sym__block_with_section] = STATE(198), - [sym__block_element] = STATE(198), - [sym_section] = STATE(198), - [sym_heading] = STATE(8), - [sym_list] = STATE(198), - [sym__list_dash] = STATE(254), - [sym__list_item_dash] = STATE(391), - [sym__list_plus] = STATE(254), - [sym__list_item_plus] = STATE(390), - [sym__list_star] = STATE(254), - [sym__list_item_star] = STATE(389), - [sym__list_task] = STATE(254), - [sym__list_item_task] = STATE(340), - [sym_list_marker_task] = STATE(37), - [sym__list_definition] = STATE(254), - [sym__list_item_definition] = STATE(517), - [sym__list_decimal_period] = STATE(254), - [sym__list_item_decimal_period] = STATE(515), - [sym__list_decimal_paren] = STATE(254), - [sym__list_item_decimal_paren] = STATE(493), - [sym__list_decimal_parens] = STATE(254), - [sym__list_item_decimal_parens] = STATE(490), - [sym__list_lower_alpha_period] = STATE(254), - [sym__list_item_lower_alpha_period] = STATE(486), - [sym__list_lower_alpha_paren] = STATE(254), - [sym__list_item_lower_alpha_paren] = STATE(485), - [sym__list_lower_alpha_parens] = STATE(254), - [sym__list_item_lower_alpha_parens] = STATE(483), - [sym__list_upper_alpha_period] = STATE(254), - [sym__list_item_upper_alpha_period] = STATE(482), - [sym__list_upper_alpha_paren] = STATE(254), - [sym__list_item_upper_alpha_paren] = STATE(481), - [sym__list_upper_alpha_parens] = STATE(254), - [sym__list_item_upper_alpha_parens] = STATE(480), - [sym__list_lower_roman_period] = STATE(254), - [sym__list_item_lower_roman_period] = STATE(479), - [sym__list_lower_roman_paren] = STATE(254), - [sym__list_item_lower_roman_paren] = STATE(476), - [sym__list_lower_roman_parens] = STATE(254), - [sym__list_item_lower_roman_parens] = STATE(475), - [sym__list_upper_roman_period] = STATE(254), - [sym__list_item_upper_roman_period] = STATE(472), - [sym__list_upper_roman_paren] = STATE(254), - [sym__list_item_upper_roman_paren] = STATE(513), - [sym__list_upper_roman_parens] = STATE(254), - [sym__list_item_upper_roman_parens] = STATE(507), - [sym_table] = STATE(198), - [sym__table_content] = STATE(62), - [sym_table_separator] = STATE(62), - [sym_table_row] = STATE(68), - [sym_footnote] = STATE(198), - [sym_div] = STATE(198), - [sym_div_marker_begin] = STATE(956), - [sym_code_block] = STATE(198), - [sym_raw_block] = STATE(198), - [sym_thematic_break] = STATE(198), - [sym_block_quote] = STATE(198), - [sym__block_quote_prefix] = STATE(436), - [sym_link_reference_definition] = STATE(198), - [sym_block_attribute] = STATE(198), - [sym__paragraph] = STATE(198), - [sym__paragraph_content] = STATE(774), - [sym__inline] = STATE(683), - [sym__symbol_fallback] = STATE(329), - [aux_sym_document_repeat1] = STATE(7), - [aux_sym__list_dash_repeat1] = STATE(391), - [aux_sym__list_plus_repeat1] = STATE(390), - [aux_sym__list_star_repeat1] = STATE(389), - [aux_sym__list_task_repeat1] = STATE(340), - [aux_sym__list_definition_repeat1] = STATE(517), - [aux_sym__list_decimal_period_repeat1] = STATE(515), - [aux_sym__list_decimal_paren_repeat1] = STATE(493), - [aux_sym__list_decimal_parens_repeat1] = STATE(490), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(486), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(485), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(483), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(482), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(481), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(480), - [aux_sym__list_lower_roman_period_repeat1] = STATE(479), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(476), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(475), - [aux_sym__list_upper_roman_period_repeat1] = STATE(472), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(513), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(507), - [aux_sym_table_repeat1] = STATE(62), - [aux_sym__block_quote_prefix_repeat1] = STATE(397), - [aux_sym__inline_repeat1] = STATE(329), - [anon_sym_LBRACK] = ACTIONS(75), - [anon_sym_PIPE] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), + [sym__block_with_section] = STATE(146), + [sym__block_element] = STATE(146), + [sym_section] = STATE(146), + [sym_heading] = STATE(7), + [sym_list] = STATE(146), + [sym__list_dash] = STATE(141), + [sym__list_item_dash] = STATE(416), + [sym__list_plus] = STATE(141), + [sym__list_item_plus] = STATE(419), + [sym__list_star] = STATE(141), + [sym__list_item_star] = STATE(407), + [sym__list_task] = STATE(141), + [sym__list_item_task] = STATE(371), + [sym_list_marker_task] = STATE(38), + [sym__list_definition] = STATE(141), + [sym__list_item_definition] = STATE(549), + [sym__list_decimal_period] = STATE(141), + [sym__list_item_decimal_period] = STATE(548), + [sym__list_decimal_paren] = STATE(141), + [sym__list_item_decimal_paren] = STATE(547), + [sym__list_decimal_parens] = STATE(141), + [sym__list_item_decimal_parens] = STATE(546), + [sym__list_lower_alpha_period] = STATE(141), + [sym__list_item_lower_alpha_period] = STATE(545), + [sym__list_lower_alpha_paren] = STATE(141), + [sym__list_item_lower_alpha_paren] = STATE(544), + [sym__list_lower_alpha_parens] = STATE(141), + [sym__list_item_lower_alpha_parens] = STATE(543), + [sym__list_upper_alpha_period] = STATE(141), + [sym__list_item_upper_alpha_period] = STATE(542), + [sym__list_upper_alpha_paren] = STATE(141), + [sym__list_item_upper_alpha_paren] = STATE(541), + [sym__list_upper_alpha_parens] = STATE(141), + [sym__list_item_upper_alpha_parens] = STATE(540), + [sym__list_lower_roman_period] = STATE(141), + [sym__list_item_lower_roman_period] = STATE(539), + [sym__list_lower_roman_paren] = STATE(141), + [sym__list_item_lower_roman_paren] = STATE(538), + [sym__list_lower_roman_parens] = STATE(141), + [sym__list_item_lower_roman_parens] = STATE(537), + [sym__list_upper_roman_period] = STATE(141), + [sym__list_item_upper_roman_period] = STATE(536), + [sym__list_upper_roman_paren] = STATE(141), + [sym__list_item_upper_roman_paren] = STATE(535), + [sym__list_upper_roman_parens] = STATE(141), + [sym__list_item_upper_roman_parens] = STATE(534), + [sym_table] = STATE(146), + [sym__table_content] = STATE(66), + [sym_table_separator] = STATE(66), + [sym_table_row] = STATE(72), + [sym_footnote] = STATE(146), + [sym_div] = STATE(146), + [sym_div_marker_begin] = STATE(985), + [sym_code_block] = STATE(146), + [sym_raw_block] = STATE(146), + [sym_thematic_break] = STATE(146), + [sym_block_quote] = STATE(146), + [sym__block_quote_prefix] = STATE(286), + [sym_link_reference_definition] = STATE(146), + [sym_block_attribute] = STATE(146), + [sym__paragraph] = STATE(146), + [sym__paragraph_content] = STATE(801), + [sym__inline] = STATE(703), + [sym__symbol_fallback] = STATE(366), + [aux_sym_document_repeat1] = STATE(6), + [aux_sym__list_dash_repeat1] = STATE(416), + [aux_sym__list_plus_repeat1] = STATE(419), + [aux_sym__list_star_repeat1] = STATE(407), + [aux_sym__list_task_repeat1] = STATE(371), + [aux_sym__list_definition_repeat1] = STATE(549), + [aux_sym__list_decimal_period_repeat1] = STATE(548), + [aux_sym__list_decimal_paren_repeat1] = STATE(547), + [aux_sym__list_decimal_parens_repeat1] = STATE(546), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(545), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(544), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(543), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(542), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(541), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(540), + [aux_sym__list_lower_roman_period_repeat1] = STATE(539), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(538), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(537), + [aux_sym__list_upper_roman_period_repeat1] = STATE(536), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(535), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(534), + [aux_sym_table_repeat1] = STATE(66), + [aux_sym__block_quote_prefix_repeat1] = STATE(323), + [aux_sym__inline_repeat1] = STATE(366), + [anon_sym_LBRACK] = ACTIONS(197), + [anon_sym_PIPE] = ACTIONS(199), + [anon_sym_LBRACE] = ACTIONS(201), [aux_sym__inline_token1] = ACTIONS(11), [anon_sym_LBRACE_DASH] = ACTIONS(11), [sym__block_close] = ACTIONS(219), - [sym__newline] = ACTIONS(83), + [sym__newline] = ACTIONS(205), [sym__heading_begin] = ACTIONS(17), [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(85), + [sym__code_block_begin] = ACTIONS(207), [sym_list_marker_dash] = ACTIONS(23), [sym_list_marker_star] = ACTIONS(25), [sym_list_marker_plus] = ACTIONS(27), @@ -5498,110 +5563,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(57), [sym_list_marker_lower_roman_parens] = ACTIONS(59), [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(87), + [sym__block_quote_begin] = ACTIONS(209), [sym__block_quote_continuation] = ACTIONS(65), - [sym__thematic_break_dash] = ACTIONS(89), - [sym__thematic_break_star] = ACTIONS(89), - [sym__footnote_begin] = ACTIONS(91), + [sym__thematic_break_dash] = ACTIONS(211), + [sym__thematic_break_star] = ACTIONS(211), + [sym__footnote_begin] = ACTIONS(213), }, [11] = { - [sym__block_with_heading] = STATE(221), - [sym__block_element] = STATE(221), - [sym_heading] = STATE(221), - [sym_list] = STATE(221), - [sym__list_dash] = STATE(254), - [sym__list_item_dash] = STATE(391), - [sym__list_plus] = STATE(254), - [sym__list_item_plus] = STATE(390), - [sym__list_star] = STATE(254), - [sym__list_item_star] = STATE(389), - [sym__list_task] = STATE(254), - [sym__list_item_task] = STATE(340), - [sym_list_marker_task] = STATE(37), - [sym__list_definition] = STATE(254), - [sym__list_item_definition] = STATE(517), - [sym__list_decimal_period] = STATE(254), - [sym__list_item_decimal_period] = STATE(515), - [sym__list_decimal_paren] = STATE(254), - [sym__list_item_decimal_paren] = STATE(493), - [sym__list_decimal_parens] = STATE(254), - [sym__list_item_decimal_parens] = STATE(490), - [sym__list_lower_alpha_period] = STATE(254), - [sym__list_item_lower_alpha_period] = STATE(486), - [sym__list_lower_alpha_paren] = STATE(254), - [sym__list_item_lower_alpha_paren] = STATE(485), - [sym__list_lower_alpha_parens] = STATE(254), - [sym__list_item_lower_alpha_parens] = STATE(483), - [sym__list_upper_alpha_period] = STATE(254), - [sym__list_item_upper_alpha_period] = STATE(482), - [sym__list_upper_alpha_paren] = STATE(254), - [sym__list_item_upper_alpha_paren] = STATE(481), - [sym__list_upper_alpha_parens] = STATE(254), - [sym__list_item_upper_alpha_parens] = STATE(480), - [sym__list_lower_roman_period] = STATE(254), - [sym__list_item_lower_roman_period] = STATE(479), - [sym__list_lower_roman_paren] = STATE(254), - [sym__list_item_lower_roman_paren] = STATE(476), - [sym__list_lower_roman_parens] = STATE(254), - [sym__list_item_lower_roman_parens] = STATE(475), - [sym__list_upper_roman_period] = STATE(254), - [sym__list_item_upper_roman_period] = STATE(472), - [sym__list_upper_roman_paren] = STATE(254), - [sym__list_item_upper_roman_paren] = STATE(513), - [sym__list_upper_roman_parens] = STATE(254), - [sym__list_item_upper_roman_parens] = STATE(507), - [sym_table] = STATE(221), - [sym__table_content] = STATE(62), - [sym_table_separator] = STATE(62), - [sym_table_row] = STATE(68), - [sym_footnote] = STATE(221), - [sym_div] = STATE(221), - [sym_div_marker_begin] = STATE(956), - [sym_code_block] = STATE(221), - [sym_raw_block] = STATE(221), - [sym_thematic_break] = STATE(221), - [sym_block_quote] = STATE(221), - [sym__block_quote_prefix] = STATE(395), - [sym_link_reference_definition] = STATE(221), - [sym_block_attribute] = STATE(221), - [sym__paragraph] = STATE(221), - [sym__paragraph_content] = STATE(774), - [sym__inline] = STATE(683), - [sym__symbol_fallback] = STATE(329), - [aux_sym__list_dash_repeat1] = STATE(391), - [aux_sym__list_plus_repeat1] = STATE(390), - [aux_sym__list_star_repeat1] = STATE(389), - [aux_sym__list_task_repeat1] = STATE(340), - [aux_sym__list_definition_repeat1] = STATE(517), - [aux_sym__list_decimal_period_repeat1] = STATE(515), - [aux_sym__list_decimal_paren_repeat1] = STATE(493), - [aux_sym__list_decimal_parens_repeat1] = STATE(490), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(486), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(485), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(483), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(482), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(481), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(480), - [aux_sym__list_lower_roman_period_repeat1] = STATE(479), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(476), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(475), - [aux_sym__list_upper_roman_period_repeat1] = STATE(472), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(513), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(507), - [aux_sym_table_repeat1] = STATE(62), + [sym__block_with_heading] = STATE(265), + [sym__block_element] = STATE(265), + [sym_heading] = STATE(265), + [sym_list] = STATE(265), + [sym__list_dash] = STATE(234), + [sym__list_item_dash] = STATE(415), + [sym__list_plus] = STATE(234), + [sym__list_item_plus] = STATE(395), + [sym__list_star] = STATE(234), + [sym__list_item_star] = STATE(409), + [sym__list_task] = STATE(234), + [sym__list_item_task] = STATE(389), + [sym_list_marker_task] = STATE(38), + [sym__list_definition] = STATE(234), + [sym__list_item_definition] = STATE(531), + [sym__list_decimal_period] = STATE(234), + [sym__list_item_decimal_period] = STATE(530), + [sym__list_decimal_paren] = STATE(234), + [sym__list_item_decimal_paren] = STATE(529), + [sym__list_decimal_parens] = STATE(234), + [sym__list_item_decimal_parens] = STATE(527), + [sym__list_lower_alpha_period] = STATE(234), + [sym__list_item_lower_alpha_period] = STATE(526), + [sym__list_lower_alpha_paren] = STATE(234), + [sym__list_item_lower_alpha_paren] = STATE(525), + [sym__list_lower_alpha_parens] = STATE(234), + [sym__list_item_lower_alpha_parens] = STATE(524), + [sym__list_upper_alpha_period] = STATE(234), + [sym__list_item_upper_alpha_period] = STATE(523), + [sym__list_upper_alpha_paren] = STATE(234), + [sym__list_item_upper_alpha_paren] = STATE(522), + [sym__list_upper_alpha_parens] = STATE(234), + [sym__list_item_upper_alpha_parens] = STATE(521), + [sym__list_lower_roman_period] = STATE(234), + [sym__list_item_lower_roman_period] = STATE(520), + [sym__list_lower_roman_paren] = STATE(234), + [sym__list_item_lower_roman_paren] = STATE(519), + [sym__list_lower_roman_parens] = STATE(234), + [sym__list_item_lower_roman_parens] = STATE(518), + [sym__list_upper_roman_period] = STATE(234), + [sym__list_item_upper_roman_period] = STATE(517), + [sym__list_upper_roman_paren] = STATE(234), + [sym__list_item_upper_roman_paren] = STATE(516), + [sym__list_upper_roman_parens] = STATE(234), + [sym__list_item_upper_roman_parens] = STATE(515), + [sym_table] = STATE(265), + [sym__table_content] = STATE(65), + [sym_table_separator] = STATE(65), + [sym_table_row] = STATE(71), + [sym_footnote] = STATE(265), + [sym_footnote_content] = STATE(911), + [sym_div] = STATE(265), + [sym_div_marker_begin] = STATE(1006), + [sym_code_block] = STATE(265), + [sym_raw_block] = STATE(265), + [sym_thematic_break] = STATE(265), + [sym_block_quote] = STATE(265), + [sym__block_quote_prefix] = STATE(285), + [sym_link_reference_definition] = STATE(265), + [sym_block_attribute] = STATE(265), + [sym__paragraph] = STATE(265), + [sym__paragraph_content] = STATE(856), + [sym__inline] = STATE(703), + [sym__symbol_fallback] = STATE(366), + [aux_sym__list_dash_repeat1] = STATE(415), + [aux_sym__list_plus_repeat1] = STATE(395), + [aux_sym__list_star_repeat1] = STATE(409), + [aux_sym__list_task_repeat1] = STATE(389), + [aux_sym__list_definition_repeat1] = STATE(531), + [aux_sym__list_decimal_period_repeat1] = STATE(530), + [aux_sym__list_decimal_paren_repeat1] = STATE(529), + [aux_sym__list_decimal_parens_repeat1] = STATE(527), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(526), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(525), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(524), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(523), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(522), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(521), + [aux_sym__list_lower_roman_period_repeat1] = STATE(520), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(519), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(518), + [aux_sym__list_upper_roman_period_repeat1] = STATE(517), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(516), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(515), + [aux_sym_table_repeat1] = STATE(65), [aux_sym_footnote_content_repeat1] = STATE(15), - [aux_sym__block_quote_prefix_repeat1] = STATE(349), - [aux_sym__inline_repeat1] = STATE(329), - [anon_sym_LBRACK] = ACTIONS(75), - [anon_sym_PIPE] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), + [aux_sym__block_quote_prefix_repeat1] = STATE(323), + [aux_sym__inline_repeat1] = STATE(366), + [anon_sym_LBRACK] = ACTIONS(221), + [anon_sym_PIPE] = ACTIONS(223), + [anon_sym_LBRACE] = ACTIONS(225), [aux_sym__inline_token1] = ACTIONS(11), [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__block_close] = ACTIONS(221), - [sym__newline] = ACTIONS(223), - [sym__heading_begin] = ACTIONS(17), + [sym__newline] = ACTIONS(227), + [sym__heading_begin] = ACTIONS(229), [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(85), + [sym__code_block_begin] = ACTIONS(231), [sym_list_marker_dash] = ACTIONS(23), [sym_list_marker_star] = ACTIONS(25), [sym_list_marker_plus] = ACTIONS(27), @@ -5622,110 +5687,234 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(57), [sym_list_marker_lower_roman_parens] = ACTIONS(59), [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(87), - [sym__block_quote_continuation] = ACTIONS(225), - [sym__thematic_break_dash] = ACTIONS(89), - [sym__thematic_break_star] = ACTIONS(89), - [sym__footnote_begin] = ACTIONS(91), + [sym__block_quote_begin] = ACTIONS(233), + [sym__block_quote_continuation] = ACTIONS(235), + [sym__thematic_break_dash] = ACTIONS(237), + [sym__thematic_break_star] = ACTIONS(237), + [sym__footnote_begin] = ACTIONS(239), }, [12] = { - [sym__block_with_heading] = STATE(136), - [sym__block_element] = STATE(136), - [sym_heading] = STATE(136), - [sym_list] = STATE(136), - [sym__list_dash] = STATE(200), - [sym__list_item_dash] = STATE(382), - [sym__list_plus] = STATE(200), - [sym__list_item_plus] = STATE(383), - [sym__list_star] = STATE(200), - [sym__list_item_star] = STATE(385), - [sym__list_task] = STATE(200), - [sym__list_item_task] = STATE(341), - [sym_list_marker_task] = STATE(37), - [sym__list_definition] = STATE(200), - [sym__list_item_definition] = STATE(494), - [sym__list_decimal_period] = STATE(200), - [sym__list_item_decimal_period] = STATE(477), - [sym__list_decimal_paren] = STATE(200), - [sym__list_item_decimal_paren] = STATE(508), - [sym__list_decimal_parens] = STATE(200), - [sym__list_item_decimal_parens] = STATE(519), - [sym__list_lower_alpha_period] = STATE(200), - [sym__list_item_lower_alpha_period] = STATE(520), - [sym__list_lower_alpha_paren] = STATE(200), - [sym__list_item_lower_alpha_paren] = STATE(521), - [sym__list_lower_alpha_parens] = STATE(200), - [sym__list_item_lower_alpha_parens] = STATE(523), - [sym__list_upper_alpha_period] = STATE(200), - [sym__list_item_upper_alpha_period] = STATE(524), - [sym__list_upper_alpha_paren] = STATE(200), - [sym__list_item_upper_alpha_paren] = STATE(527), - [sym__list_upper_alpha_parens] = STATE(200), - [sym__list_item_upper_alpha_parens] = STATE(528), - [sym__list_lower_roman_period] = STATE(200), - [sym__list_item_lower_roman_period] = STATE(529), - [sym__list_lower_roman_paren] = STATE(200), - [sym__list_item_lower_roman_paren] = STATE(530), - [sym__list_lower_roman_parens] = STATE(200), - [sym__list_item_lower_roman_parens] = STATE(532), - [sym__list_upper_roman_period] = STATE(200), - [sym__list_item_upper_roman_period] = STATE(539), - [sym__list_upper_roman_paren] = STATE(200), - [sym__list_item_upper_roman_paren] = STATE(470), - [sym__list_upper_roman_parens] = STATE(200), - [sym__list_item_upper_roman_parens] = STATE(510), - [sym_table] = STATE(136), - [sym__table_content] = STATE(60), - [sym_table_separator] = STATE(60), - [sym_table_row] = STATE(67), - [sym_footnote] = STATE(136), - [sym_footnote_content] = STATE(921), - [sym_div] = STATE(136), - [sym_div_marker_begin] = STATE(976), - [sym_code_block] = STATE(136), - [sym_raw_block] = STATE(136), - [sym_thematic_break] = STATE(136), - [sym_block_quote] = STATE(136), - [sym__block_quote_prefix] = STATE(445), - [sym_link_reference_definition] = STATE(136), - [sym_block_attribute] = STATE(136), - [sym__paragraph] = STATE(136), - [sym__paragraph_content] = STATE(829), - [sym__inline] = STATE(683), - [sym__symbol_fallback] = STATE(329), - [aux_sym__list_dash_repeat1] = STATE(382), - [aux_sym__list_plus_repeat1] = STATE(383), - [aux_sym__list_star_repeat1] = STATE(385), - [aux_sym__list_task_repeat1] = STATE(341), - [aux_sym__list_definition_repeat1] = STATE(494), - [aux_sym__list_decimal_period_repeat1] = STATE(477), - [aux_sym__list_decimal_paren_repeat1] = STATE(508), - [aux_sym__list_decimal_parens_repeat1] = STATE(519), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(520), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(521), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(523), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(524), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(527), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(528), - [aux_sym__list_lower_roman_period_repeat1] = STATE(529), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(530), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(532), - [aux_sym__list_upper_roman_period_repeat1] = STATE(539), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(470), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(510), - [aux_sym_table_repeat1] = STATE(60), - [aux_sym_footnote_content_repeat1] = STATE(17), - [aux_sym__block_quote_prefix_repeat1] = STATE(397), - [aux_sym__inline_repeat1] = STATE(329), - [anon_sym_LBRACK] = ACTIONS(227), - [anon_sym_PIPE] = ACTIONS(229), - [anon_sym_LBRACE] = ACTIONS(231), + [sym__block_with_heading] = STATE(226), + [sym__block_element] = STATE(226), + [sym_heading] = STATE(226), + [sym_list] = STATE(226), + [sym__list_dash] = STATE(141), + [sym__list_item_dash] = STATE(416), + [sym__list_plus] = STATE(141), + [sym__list_item_plus] = STATE(419), + [sym__list_star] = STATE(141), + [sym__list_item_star] = STATE(407), + [sym__list_task] = STATE(141), + [sym__list_item_task] = STATE(371), + [sym_list_marker_task] = STATE(38), + [sym__list_definition] = STATE(141), + [sym__list_item_definition] = STATE(549), + [sym__list_decimal_period] = STATE(141), + [sym__list_item_decimal_period] = STATE(548), + [sym__list_decimal_paren] = STATE(141), + [sym__list_item_decimal_paren] = STATE(547), + [sym__list_decimal_parens] = STATE(141), + [sym__list_item_decimal_parens] = STATE(546), + [sym__list_lower_alpha_period] = STATE(141), + [sym__list_item_lower_alpha_period] = STATE(545), + [sym__list_lower_alpha_paren] = STATE(141), + [sym__list_item_lower_alpha_paren] = STATE(544), + [sym__list_lower_alpha_parens] = STATE(141), + [sym__list_item_lower_alpha_parens] = STATE(543), + [sym__list_upper_alpha_period] = STATE(141), + [sym__list_item_upper_alpha_period] = STATE(542), + [sym__list_upper_alpha_paren] = STATE(141), + [sym__list_item_upper_alpha_paren] = STATE(541), + [sym__list_upper_alpha_parens] = STATE(141), + [sym__list_item_upper_alpha_parens] = STATE(540), + [sym__list_lower_roman_period] = STATE(141), + [sym__list_item_lower_roman_period] = STATE(539), + [sym__list_lower_roman_paren] = STATE(141), + [sym__list_item_lower_roman_paren] = STATE(538), + [sym__list_lower_roman_parens] = STATE(141), + [sym__list_item_lower_roman_parens] = STATE(537), + [sym__list_upper_roman_period] = STATE(141), + [sym__list_item_upper_roman_period] = STATE(536), + [sym__list_upper_roman_paren] = STATE(141), + [sym__list_item_upper_roman_paren] = STATE(535), + [sym__list_upper_roman_parens] = STATE(141), + [sym__list_item_upper_roman_parens] = STATE(534), + [sym_table] = STATE(226), + [sym__table_content] = STATE(66), + [sym_table_separator] = STATE(66), + [sym_table_row] = STATE(72), + [sym_footnote] = STATE(226), + [sym_div] = STATE(226), + [sym_div_marker_begin] = STATE(985), + [sym_code_block] = STATE(226), + [sym_raw_block] = STATE(226), + [sym_thematic_break] = STATE(226), + [sym_block_quote] = STATE(226), + [sym__block_quote_prefix] = STATE(286), + [sym_link_reference_definition] = STATE(226), + [sym_block_attribute] = STATE(226), + [sym__paragraph] = STATE(226), + [sym__paragraph_content] = STATE(801), + [sym__inline] = STATE(703), + [sym__symbol_fallback] = STATE(366), + [aux_sym__list_dash_repeat1] = STATE(416), + [aux_sym__list_plus_repeat1] = STATE(419), + [aux_sym__list_star_repeat1] = STATE(407), + [aux_sym__list_task_repeat1] = STATE(371), + [aux_sym__list_definition_repeat1] = STATE(549), + [aux_sym__list_decimal_period_repeat1] = STATE(548), + [aux_sym__list_decimal_paren_repeat1] = STATE(547), + [aux_sym__list_decimal_parens_repeat1] = STATE(546), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(545), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(544), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(543), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(542), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(541), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(540), + [aux_sym__list_lower_roman_period_repeat1] = STATE(539), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(538), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(537), + [aux_sym__list_upper_roman_period_repeat1] = STATE(536), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(535), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(534), + [aux_sym_table_repeat1] = STATE(66), + [aux_sym_footnote_content_repeat1] = STATE(12), + [aux_sym__block_quote_prefix_repeat1] = STATE(323), + [aux_sym__inline_repeat1] = STATE(366), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_PIPE] = ACTIONS(244), + [anon_sym_LBRACE] = ACTIONS(247), + [aux_sym__inline_token1] = ACTIONS(250), + [anon_sym_LBRACE_DASH] = ACTIONS(250), + [sym__block_close] = ACTIONS(253), + [sym__newline] = ACTIONS(255), + [sym__heading_begin] = ACTIONS(258), + [sym__div_begin] = ACTIONS(261), + [sym__code_block_begin] = ACTIONS(264), + [sym_list_marker_dash] = ACTIONS(267), + [sym_list_marker_star] = ACTIONS(270), + [sym_list_marker_plus] = ACTIONS(273), + [sym__list_marker_task_begin] = ACTIONS(276), + [sym_list_marker_definition] = ACTIONS(279), + [sym_list_marker_decimal_period] = ACTIONS(282), + [sym_list_marker_lower_alpha_period] = ACTIONS(285), + [sym_list_marker_upper_alpha_period] = ACTIONS(288), + [sym_list_marker_lower_roman_period] = ACTIONS(291), + [sym_list_marker_upper_roman_period] = ACTIONS(294), + [sym_list_marker_decimal_paren] = ACTIONS(297), + [sym_list_marker_lower_alpha_paren] = ACTIONS(300), + [sym_list_marker_upper_alpha_paren] = ACTIONS(303), + [sym_list_marker_lower_roman_paren] = ACTIONS(306), + [sym_list_marker_upper_roman_paren] = ACTIONS(309), + [sym_list_marker_decimal_parens] = ACTIONS(312), + [sym_list_marker_lower_alpha_parens] = ACTIONS(315), + [sym_list_marker_upper_alpha_parens] = ACTIONS(318), + [sym_list_marker_lower_roman_parens] = ACTIONS(321), + [sym_list_marker_upper_roman_parens] = ACTIONS(324), + [sym__block_quote_begin] = ACTIONS(327), + [sym__block_quote_continuation] = ACTIONS(330), + [sym__thematic_break_dash] = ACTIONS(333), + [sym__thematic_break_star] = ACTIONS(333), + [sym__footnote_begin] = ACTIONS(336), + }, + [13] = { + [sym__block_with_heading] = STATE(226), + [sym__block_element] = STATE(226), + [sym_heading] = STATE(226), + [sym_list] = STATE(226), + [sym__list_dash] = STATE(141), + [sym__list_item_dash] = STATE(416), + [sym__list_plus] = STATE(141), + [sym__list_item_plus] = STATE(419), + [sym__list_star] = STATE(141), + [sym__list_item_star] = STATE(407), + [sym__list_task] = STATE(141), + [sym__list_item_task] = STATE(371), + [sym_list_marker_task] = STATE(38), + [sym__list_definition] = STATE(141), + [sym__list_item_definition] = STATE(549), + [sym__list_decimal_period] = STATE(141), + [sym__list_item_decimal_period] = STATE(548), + [sym__list_decimal_paren] = STATE(141), + [sym__list_item_decimal_paren] = STATE(547), + [sym__list_decimal_parens] = STATE(141), + [sym__list_item_decimal_parens] = STATE(546), + [sym__list_lower_alpha_period] = STATE(141), + [sym__list_item_lower_alpha_period] = STATE(545), + [sym__list_lower_alpha_paren] = STATE(141), + [sym__list_item_lower_alpha_paren] = STATE(544), + [sym__list_lower_alpha_parens] = STATE(141), + [sym__list_item_lower_alpha_parens] = STATE(543), + [sym__list_upper_alpha_period] = STATE(141), + [sym__list_item_upper_alpha_period] = STATE(542), + [sym__list_upper_alpha_paren] = STATE(141), + [sym__list_item_upper_alpha_paren] = STATE(541), + [sym__list_upper_alpha_parens] = STATE(141), + [sym__list_item_upper_alpha_parens] = STATE(540), + [sym__list_lower_roman_period] = STATE(141), + [sym__list_item_lower_roman_period] = STATE(539), + [sym__list_lower_roman_paren] = STATE(141), + [sym__list_item_lower_roman_paren] = STATE(538), + [sym__list_lower_roman_parens] = STATE(141), + [sym__list_item_lower_roman_parens] = STATE(537), + [sym__list_upper_roman_period] = STATE(141), + [sym__list_item_upper_roman_period] = STATE(536), + [sym__list_upper_roman_paren] = STATE(141), + [sym__list_item_upper_roman_paren] = STATE(535), + [sym__list_upper_roman_parens] = STATE(141), + [sym__list_item_upper_roman_parens] = STATE(534), + [sym_table] = STATE(226), + [sym__table_content] = STATE(66), + [sym_table_separator] = STATE(66), + [sym_table_row] = STATE(72), + [sym_footnote] = STATE(226), + [sym_div] = STATE(226), + [sym_div_marker_begin] = STATE(985), + [sym_code_block] = STATE(226), + [sym_raw_block] = STATE(226), + [sym_thematic_break] = STATE(226), + [sym_block_quote] = STATE(226), + [sym__block_quote_prefix] = STATE(275), + [sym_link_reference_definition] = STATE(226), + [sym_block_attribute] = STATE(226), + [sym__paragraph] = STATE(226), + [sym__paragraph_content] = STATE(801), + [sym__inline] = STATE(703), + [sym__symbol_fallback] = STATE(366), + [aux_sym__list_dash_repeat1] = STATE(416), + [aux_sym__list_plus_repeat1] = STATE(419), + [aux_sym__list_star_repeat1] = STATE(407), + [aux_sym__list_task_repeat1] = STATE(371), + [aux_sym__list_definition_repeat1] = STATE(549), + [aux_sym__list_decimal_period_repeat1] = STATE(548), + [aux_sym__list_decimal_paren_repeat1] = STATE(547), + [aux_sym__list_decimal_parens_repeat1] = STATE(546), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(545), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(544), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(543), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(542), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(541), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(540), + [aux_sym__list_lower_roman_period_repeat1] = STATE(539), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(538), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(537), + [aux_sym__list_upper_roman_period_repeat1] = STATE(536), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(535), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(534), + [aux_sym_table_repeat1] = STATE(66), + [aux_sym_footnote_content_repeat1] = STATE(16), + [aux_sym__block_quote_prefix_repeat1] = STATE(307), + [aux_sym__inline_repeat1] = STATE(366), + [anon_sym_LBRACK] = ACTIONS(197), + [anon_sym_PIPE] = ACTIONS(199), + [anon_sym_LBRACE] = ACTIONS(201), [aux_sym__inline_token1] = ACTIONS(11), [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__newline] = ACTIONS(233), - [sym__heading_begin] = ACTIONS(235), + [sym__block_close] = ACTIONS(339), + [sym__newline] = ACTIONS(341), + [sym__heading_begin] = ACTIONS(17), [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(237), + [sym__code_block_begin] = ACTIONS(207), [sym_list_marker_dash] = ACTIONS(23), [sym_list_marker_star] = ACTIONS(25), [sym_list_marker_plus] = ACTIONS(27), @@ -5746,110 +5935,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(57), [sym_list_marker_lower_roman_parens] = ACTIONS(59), [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(239), - [sym__block_quote_continuation] = ACTIONS(65), - [sym__thematic_break_dash] = ACTIONS(241), - [sym__thematic_break_star] = ACTIONS(241), - [sym__footnote_begin] = ACTIONS(243), + [sym__block_quote_begin] = ACTIONS(209), + [sym__block_quote_continuation] = ACTIONS(343), + [sym__thematic_break_dash] = ACTIONS(211), + [sym__thematic_break_star] = ACTIONS(211), + [sym__footnote_begin] = ACTIONS(213), }, - [13] = { - [sym__block_with_heading] = STATE(136), - [sym__block_element] = STATE(136), - [sym_heading] = STATE(136), - [sym_list] = STATE(136), - [sym__list_dash] = STATE(200), - [sym__list_item_dash] = STATE(382), - [sym__list_plus] = STATE(200), - [sym__list_item_plus] = STATE(383), - [sym__list_star] = STATE(200), - [sym__list_item_star] = STATE(385), - [sym__list_task] = STATE(200), - [sym__list_item_task] = STATE(341), - [sym_list_marker_task] = STATE(37), - [sym__list_definition] = STATE(200), - [sym__list_item_definition] = STATE(494), - [sym__list_decimal_period] = STATE(200), - [sym__list_item_decimal_period] = STATE(477), - [sym__list_decimal_paren] = STATE(200), - [sym__list_item_decimal_paren] = STATE(508), - [sym__list_decimal_parens] = STATE(200), - [sym__list_item_decimal_parens] = STATE(519), - [sym__list_lower_alpha_period] = STATE(200), - [sym__list_item_lower_alpha_period] = STATE(520), - [sym__list_lower_alpha_paren] = STATE(200), - [sym__list_item_lower_alpha_paren] = STATE(521), - [sym__list_lower_alpha_parens] = STATE(200), - [sym__list_item_lower_alpha_parens] = STATE(523), - [sym__list_upper_alpha_period] = STATE(200), - [sym__list_item_upper_alpha_period] = STATE(524), - [sym__list_upper_alpha_paren] = STATE(200), - [sym__list_item_upper_alpha_paren] = STATE(527), - [sym__list_upper_alpha_parens] = STATE(200), - [sym__list_item_upper_alpha_parens] = STATE(528), - [sym__list_lower_roman_period] = STATE(200), - [sym__list_item_lower_roman_period] = STATE(529), - [sym__list_lower_roman_paren] = STATE(200), - [sym__list_item_lower_roman_paren] = STATE(530), - [sym__list_lower_roman_parens] = STATE(200), - [sym__list_item_lower_roman_parens] = STATE(532), - [sym__list_upper_roman_period] = STATE(200), - [sym__list_item_upper_roman_period] = STATE(539), - [sym__list_upper_roman_paren] = STATE(200), - [sym__list_item_upper_roman_paren] = STATE(470), - [sym__list_upper_roman_parens] = STATE(200), - [sym__list_item_upper_roman_parens] = STATE(510), - [sym_table] = STATE(136), - [sym__table_content] = STATE(60), - [sym_table_separator] = STATE(60), - [sym_table_row] = STATE(67), - [sym_footnote] = STATE(136), - [sym_footnote_content] = STATE(865), - [sym_div] = STATE(136), - [sym_div_marker_begin] = STATE(976), - [sym_code_block] = STATE(136), - [sym_raw_block] = STATE(136), - [sym_thematic_break] = STATE(136), - [sym_block_quote] = STATE(136), - [sym__block_quote_prefix] = STATE(445), - [sym_link_reference_definition] = STATE(136), - [sym_block_attribute] = STATE(136), - [sym__paragraph] = STATE(136), - [sym__paragraph_content] = STATE(829), - [sym__inline] = STATE(683), - [sym__symbol_fallback] = STATE(329), - [aux_sym__list_dash_repeat1] = STATE(382), - [aux_sym__list_plus_repeat1] = STATE(383), - [aux_sym__list_star_repeat1] = STATE(385), - [aux_sym__list_task_repeat1] = STATE(341), - [aux_sym__list_definition_repeat1] = STATE(494), - [aux_sym__list_decimal_period_repeat1] = STATE(477), - [aux_sym__list_decimal_paren_repeat1] = STATE(508), - [aux_sym__list_decimal_parens_repeat1] = STATE(519), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(520), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(521), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(523), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(524), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(527), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(528), - [aux_sym__list_lower_roman_period_repeat1] = STATE(529), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(530), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(532), - [aux_sym__list_upper_roman_period_repeat1] = STATE(539), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(470), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(510), - [aux_sym_table_repeat1] = STATE(60), - [aux_sym_footnote_content_repeat1] = STATE(17), - [aux_sym__block_quote_prefix_repeat1] = STATE(397), - [aux_sym__inline_repeat1] = STATE(329), - [anon_sym_LBRACK] = ACTIONS(227), - [anon_sym_PIPE] = ACTIONS(229), - [anon_sym_LBRACE] = ACTIONS(231), + [14] = { + [sym__block_with_heading] = STATE(265), + [sym__block_element] = STATE(265), + [sym_heading] = STATE(265), + [sym_list] = STATE(265), + [sym__list_dash] = STATE(234), + [sym__list_item_dash] = STATE(415), + [sym__list_plus] = STATE(234), + [sym__list_item_plus] = STATE(395), + [sym__list_star] = STATE(234), + [sym__list_item_star] = STATE(409), + [sym__list_task] = STATE(234), + [sym__list_item_task] = STATE(389), + [sym_list_marker_task] = STATE(38), + [sym__list_definition] = STATE(234), + [sym__list_item_definition] = STATE(531), + [sym__list_decimal_period] = STATE(234), + [sym__list_item_decimal_period] = STATE(530), + [sym__list_decimal_paren] = STATE(234), + [sym__list_item_decimal_paren] = STATE(529), + [sym__list_decimal_parens] = STATE(234), + [sym__list_item_decimal_parens] = STATE(527), + [sym__list_lower_alpha_period] = STATE(234), + [sym__list_item_lower_alpha_period] = STATE(526), + [sym__list_lower_alpha_paren] = STATE(234), + [sym__list_item_lower_alpha_paren] = STATE(525), + [sym__list_lower_alpha_parens] = STATE(234), + [sym__list_item_lower_alpha_parens] = STATE(524), + [sym__list_upper_alpha_period] = STATE(234), + [sym__list_item_upper_alpha_period] = STATE(523), + [sym__list_upper_alpha_paren] = STATE(234), + [sym__list_item_upper_alpha_paren] = STATE(522), + [sym__list_upper_alpha_parens] = STATE(234), + [sym__list_item_upper_alpha_parens] = STATE(521), + [sym__list_lower_roman_period] = STATE(234), + [sym__list_item_lower_roman_period] = STATE(520), + [sym__list_lower_roman_paren] = STATE(234), + [sym__list_item_lower_roman_paren] = STATE(519), + [sym__list_lower_roman_parens] = STATE(234), + [sym__list_item_lower_roman_parens] = STATE(518), + [sym__list_upper_roman_period] = STATE(234), + [sym__list_item_upper_roman_period] = STATE(517), + [sym__list_upper_roman_paren] = STATE(234), + [sym__list_item_upper_roman_paren] = STATE(516), + [sym__list_upper_roman_parens] = STATE(234), + [sym__list_item_upper_roman_parens] = STATE(515), + [sym_table] = STATE(265), + [sym__table_content] = STATE(65), + [sym_table_separator] = STATE(65), + [sym_table_row] = STATE(71), + [sym_footnote] = STATE(265), + [sym_footnote_content] = STATE(983), + [sym_div] = STATE(265), + [sym_div_marker_begin] = STATE(1006), + [sym_code_block] = STATE(265), + [sym_raw_block] = STATE(265), + [sym_thematic_break] = STATE(265), + [sym_block_quote] = STATE(265), + [sym__block_quote_prefix] = STATE(285), + [sym_link_reference_definition] = STATE(265), + [sym_block_attribute] = STATE(265), + [sym__paragraph] = STATE(265), + [sym__paragraph_content] = STATE(856), + [sym__inline] = STATE(703), + [sym__symbol_fallback] = STATE(366), + [aux_sym__list_dash_repeat1] = STATE(415), + [aux_sym__list_plus_repeat1] = STATE(395), + [aux_sym__list_star_repeat1] = STATE(409), + [aux_sym__list_task_repeat1] = STATE(389), + [aux_sym__list_definition_repeat1] = STATE(531), + [aux_sym__list_decimal_period_repeat1] = STATE(530), + [aux_sym__list_decimal_paren_repeat1] = STATE(529), + [aux_sym__list_decimal_parens_repeat1] = STATE(527), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(526), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(525), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(524), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(523), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(522), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(521), + [aux_sym__list_lower_roman_period_repeat1] = STATE(520), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(519), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(518), + [aux_sym__list_upper_roman_period_repeat1] = STATE(517), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(516), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(515), + [aux_sym_table_repeat1] = STATE(65), + [aux_sym_footnote_content_repeat1] = STATE(15), + [aux_sym__block_quote_prefix_repeat1] = STATE(323), + [aux_sym__inline_repeat1] = STATE(366), + [anon_sym_LBRACK] = ACTIONS(221), + [anon_sym_PIPE] = ACTIONS(223), + [anon_sym_LBRACE] = ACTIONS(225), [aux_sym__inline_token1] = ACTIONS(11), [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__newline] = ACTIONS(233), - [sym__heading_begin] = ACTIONS(235), + [sym__newline] = ACTIONS(227), + [sym__heading_begin] = ACTIONS(229), [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(237), + [sym__code_block_begin] = ACTIONS(231), [sym_list_marker_dash] = ACTIONS(23), [sym_list_marker_star] = ACTIONS(25), [sym_list_marker_plus] = ACTIONS(27), @@ -5870,110 +6059,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(57), [sym_list_marker_lower_roman_parens] = ACTIONS(59), [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(239), - [sym__block_quote_continuation] = ACTIONS(65), - [sym__thematic_break_dash] = ACTIONS(241), - [sym__thematic_break_star] = ACTIONS(241), - [sym__footnote_begin] = ACTIONS(243), + [sym__block_quote_begin] = ACTIONS(233), + [sym__block_quote_continuation] = ACTIONS(235), + [sym__thematic_break_dash] = ACTIONS(237), + [sym__thematic_break_star] = ACTIONS(237), + [sym__footnote_begin] = ACTIONS(239), }, - [14] = { - [sym__block_with_heading] = STATE(221), - [sym__block_element] = STATE(221), - [sym_heading] = STATE(221), - [sym_list] = STATE(221), - [sym__list_dash] = STATE(254), - [sym__list_item_dash] = STATE(391), - [sym__list_plus] = STATE(254), - [sym__list_item_plus] = STATE(390), - [sym__list_star] = STATE(254), - [sym__list_item_star] = STATE(389), - [sym__list_task] = STATE(254), - [sym__list_item_task] = STATE(340), - [sym_list_marker_task] = STATE(37), - [sym__list_definition] = STATE(254), - [sym__list_item_definition] = STATE(517), - [sym__list_decimal_period] = STATE(254), - [sym__list_item_decimal_period] = STATE(515), - [sym__list_decimal_paren] = STATE(254), - [sym__list_item_decimal_paren] = STATE(493), - [sym__list_decimal_parens] = STATE(254), - [sym__list_item_decimal_parens] = STATE(490), - [sym__list_lower_alpha_period] = STATE(254), - [sym__list_item_lower_alpha_period] = STATE(486), - [sym__list_lower_alpha_paren] = STATE(254), - [sym__list_item_lower_alpha_paren] = STATE(485), - [sym__list_lower_alpha_parens] = STATE(254), - [sym__list_item_lower_alpha_parens] = STATE(483), - [sym__list_upper_alpha_period] = STATE(254), - [sym__list_item_upper_alpha_period] = STATE(482), - [sym__list_upper_alpha_paren] = STATE(254), - [sym__list_item_upper_alpha_paren] = STATE(481), - [sym__list_upper_alpha_parens] = STATE(254), - [sym__list_item_upper_alpha_parens] = STATE(480), - [sym__list_lower_roman_period] = STATE(254), - [sym__list_item_lower_roman_period] = STATE(479), - [sym__list_lower_roman_paren] = STATE(254), - [sym__list_item_lower_roman_paren] = STATE(476), - [sym__list_lower_roman_parens] = STATE(254), - [sym__list_item_lower_roman_parens] = STATE(475), - [sym__list_upper_roman_period] = STATE(254), - [sym__list_item_upper_roman_period] = STATE(472), - [sym__list_upper_roman_paren] = STATE(254), - [sym__list_item_upper_roman_paren] = STATE(513), - [sym__list_upper_roman_parens] = STATE(254), - [sym__list_item_upper_roman_parens] = STATE(507), - [sym_table] = STATE(221), - [sym__table_content] = STATE(62), - [sym_table_separator] = STATE(62), - [sym_table_row] = STATE(68), - [sym_footnote] = STATE(221), - [sym_div] = STATE(221), - [sym_div_marker_begin] = STATE(956), - [sym_code_block] = STATE(221), - [sym_raw_block] = STATE(221), - [sym_thematic_break] = STATE(221), - [sym_block_quote] = STATE(221), - [sym__block_quote_prefix] = STATE(396), - [sym_link_reference_definition] = STATE(221), - [sym_block_attribute] = STATE(221), - [sym__paragraph] = STATE(221), - [sym__paragraph_content] = STATE(774), - [sym__inline] = STATE(683), - [sym__symbol_fallback] = STATE(329), - [aux_sym__list_dash_repeat1] = STATE(391), - [aux_sym__list_plus_repeat1] = STATE(390), - [aux_sym__list_star_repeat1] = STATE(389), - [aux_sym__list_task_repeat1] = STATE(340), - [aux_sym__list_definition_repeat1] = STATE(517), - [aux_sym__list_decimal_period_repeat1] = STATE(515), - [aux_sym__list_decimal_paren_repeat1] = STATE(493), - [aux_sym__list_decimal_parens_repeat1] = STATE(490), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(486), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(485), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(483), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(482), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(481), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(480), - [aux_sym__list_lower_roman_period_repeat1] = STATE(479), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(476), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(475), - [aux_sym__list_upper_roman_period_repeat1] = STATE(472), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(513), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(507), - [aux_sym_table_repeat1] = STATE(62), - [aux_sym_footnote_content_repeat1] = STATE(18), - [aux_sym__block_quote_prefix_repeat1] = STATE(349), - [aux_sym__inline_repeat1] = STATE(329), - [anon_sym_LBRACK] = ACTIONS(75), - [anon_sym_PIPE] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), + [15] = { + [sym__block_with_heading] = STATE(265), + [sym__block_element] = STATE(265), + [sym_heading] = STATE(265), + [sym_list] = STATE(265), + [sym__list_dash] = STATE(234), + [sym__list_item_dash] = STATE(415), + [sym__list_plus] = STATE(234), + [sym__list_item_plus] = STATE(395), + [sym__list_star] = STATE(234), + [sym__list_item_star] = STATE(409), + [sym__list_task] = STATE(234), + [sym__list_item_task] = STATE(389), + [sym_list_marker_task] = STATE(38), + [sym__list_definition] = STATE(234), + [sym__list_item_definition] = STATE(531), + [sym__list_decimal_period] = STATE(234), + [sym__list_item_decimal_period] = STATE(530), + [sym__list_decimal_paren] = STATE(234), + [sym__list_item_decimal_paren] = STATE(529), + [sym__list_decimal_parens] = STATE(234), + [sym__list_item_decimal_parens] = STATE(527), + [sym__list_lower_alpha_period] = STATE(234), + [sym__list_item_lower_alpha_period] = STATE(526), + [sym__list_lower_alpha_paren] = STATE(234), + [sym__list_item_lower_alpha_paren] = STATE(525), + [sym__list_lower_alpha_parens] = STATE(234), + [sym__list_item_lower_alpha_parens] = STATE(524), + [sym__list_upper_alpha_period] = STATE(234), + [sym__list_item_upper_alpha_period] = STATE(523), + [sym__list_upper_alpha_paren] = STATE(234), + [sym__list_item_upper_alpha_paren] = STATE(522), + [sym__list_upper_alpha_parens] = STATE(234), + [sym__list_item_upper_alpha_parens] = STATE(521), + [sym__list_lower_roman_period] = STATE(234), + [sym__list_item_lower_roman_period] = STATE(520), + [sym__list_lower_roman_paren] = STATE(234), + [sym__list_item_lower_roman_paren] = STATE(519), + [sym__list_lower_roman_parens] = STATE(234), + [sym__list_item_lower_roman_parens] = STATE(518), + [sym__list_upper_roman_period] = STATE(234), + [sym__list_item_upper_roman_period] = STATE(517), + [sym__list_upper_roman_paren] = STATE(234), + [sym__list_item_upper_roman_paren] = STATE(516), + [sym__list_upper_roman_parens] = STATE(234), + [sym__list_item_upper_roman_parens] = STATE(515), + [sym_table] = STATE(265), + [sym__table_content] = STATE(65), + [sym_table_separator] = STATE(65), + [sym_table_row] = STATE(71), + [sym_footnote] = STATE(265), + [sym_div] = STATE(265), + [sym_div_marker_begin] = STATE(1006), + [sym_code_block] = STATE(265), + [sym_raw_block] = STATE(265), + [sym_thematic_break] = STATE(265), + [sym_block_quote] = STATE(265), + [sym__block_quote_prefix] = STATE(285), + [sym_link_reference_definition] = STATE(265), + [sym_block_attribute] = STATE(265), + [sym__paragraph] = STATE(265), + [sym__paragraph_content] = STATE(856), + [sym__inline] = STATE(703), + [sym__symbol_fallback] = STATE(366), + [aux_sym__list_dash_repeat1] = STATE(415), + [aux_sym__list_plus_repeat1] = STATE(395), + [aux_sym__list_star_repeat1] = STATE(409), + [aux_sym__list_task_repeat1] = STATE(389), + [aux_sym__list_definition_repeat1] = STATE(531), + [aux_sym__list_decimal_period_repeat1] = STATE(530), + [aux_sym__list_decimal_paren_repeat1] = STATE(529), + [aux_sym__list_decimal_parens_repeat1] = STATE(527), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(526), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(525), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(524), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(523), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(522), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(521), + [aux_sym__list_lower_roman_period_repeat1] = STATE(520), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(519), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(518), + [aux_sym__list_upper_roman_period_repeat1] = STATE(517), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(516), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(515), + [aux_sym_table_repeat1] = STATE(65), + [aux_sym_footnote_content_repeat1] = STATE(28), + [aux_sym__block_quote_prefix_repeat1] = STATE(323), + [aux_sym__inline_repeat1] = STATE(366), + [anon_sym_LBRACK] = ACTIONS(221), + [anon_sym_PIPE] = ACTIONS(223), + [anon_sym_LBRACE] = ACTIONS(225), [aux_sym__inline_token1] = ACTIONS(11), [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__block_close] = ACTIONS(245), - [sym__newline] = ACTIONS(223), - [sym__heading_begin] = ACTIONS(17), + [sym__newline] = ACTIONS(227), + [sym__heading_begin] = ACTIONS(229), [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(85), + [sym__code_block_begin] = ACTIONS(231), [sym_list_marker_dash] = ACTIONS(23), [sym_list_marker_star] = ACTIONS(25), [sym_list_marker_plus] = ACTIONS(27), @@ -5994,110 +6182,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(57), [sym_list_marker_lower_roman_parens] = ACTIONS(59), [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(87), - [sym__block_quote_continuation] = ACTIONS(225), - [sym__thematic_break_dash] = ACTIONS(89), - [sym__thematic_break_star] = ACTIONS(89), - [sym__footnote_begin] = ACTIONS(91), + [sym__block_quote_begin] = ACTIONS(233), + [sym__block_quote_continuation] = ACTIONS(235), + [sym__thematic_break_dash] = ACTIONS(237), + [sym__thematic_break_star] = ACTIONS(237), + [sym__footnote_begin] = ACTIONS(239), + [sym__footnote_end] = ACTIONS(345), }, - [15] = { - [sym__block_with_heading] = STATE(221), - [sym__block_element] = STATE(221), - [sym_heading] = STATE(221), - [sym_list] = STATE(221), - [sym__list_dash] = STATE(254), - [sym__list_item_dash] = STATE(391), - [sym__list_plus] = STATE(254), - [sym__list_item_plus] = STATE(390), - [sym__list_star] = STATE(254), - [sym__list_item_star] = STATE(389), - [sym__list_task] = STATE(254), - [sym__list_item_task] = STATE(340), - [sym_list_marker_task] = STATE(37), - [sym__list_definition] = STATE(254), - [sym__list_item_definition] = STATE(517), - [sym__list_decimal_period] = STATE(254), - [sym__list_item_decimal_period] = STATE(515), - [sym__list_decimal_paren] = STATE(254), - [sym__list_item_decimal_paren] = STATE(493), - [sym__list_decimal_parens] = STATE(254), - [sym__list_item_decimal_parens] = STATE(490), - [sym__list_lower_alpha_period] = STATE(254), - [sym__list_item_lower_alpha_period] = STATE(486), - [sym__list_lower_alpha_paren] = STATE(254), - [sym__list_item_lower_alpha_paren] = STATE(485), - [sym__list_lower_alpha_parens] = STATE(254), - [sym__list_item_lower_alpha_parens] = STATE(483), - [sym__list_upper_alpha_period] = STATE(254), - [sym__list_item_upper_alpha_period] = STATE(482), - [sym__list_upper_alpha_paren] = STATE(254), - [sym__list_item_upper_alpha_paren] = STATE(481), - [sym__list_upper_alpha_parens] = STATE(254), - [sym__list_item_upper_alpha_parens] = STATE(480), - [sym__list_lower_roman_period] = STATE(254), - [sym__list_item_lower_roman_period] = STATE(479), - [sym__list_lower_roman_paren] = STATE(254), - [sym__list_item_lower_roman_paren] = STATE(476), - [sym__list_lower_roman_parens] = STATE(254), - [sym__list_item_lower_roman_parens] = STATE(475), - [sym__list_upper_roman_period] = STATE(254), - [sym__list_item_upper_roman_period] = STATE(472), - [sym__list_upper_roman_paren] = STATE(254), - [sym__list_item_upper_roman_paren] = STATE(513), - [sym__list_upper_roman_parens] = STATE(254), - [sym__list_item_upper_roman_parens] = STATE(507), - [sym_table] = STATE(221), - [sym__table_content] = STATE(62), - [sym_table_separator] = STATE(62), - [sym_table_row] = STATE(68), - [sym_footnote] = STATE(221), - [sym_div] = STATE(221), - [sym_div_marker_begin] = STATE(956), - [sym_code_block] = STATE(221), - [sym_raw_block] = STATE(221), - [sym_thematic_break] = STATE(221), - [sym_block_quote] = STATE(221), - [sym__block_quote_prefix] = STATE(378), - [sym_link_reference_definition] = STATE(221), - [sym_block_attribute] = STATE(221), - [sym__paragraph] = STATE(221), - [sym__paragraph_content] = STATE(774), - [sym__inline] = STATE(683), - [sym__symbol_fallback] = STATE(329), - [aux_sym__list_dash_repeat1] = STATE(391), - [aux_sym__list_plus_repeat1] = STATE(390), - [aux_sym__list_star_repeat1] = STATE(389), - [aux_sym__list_task_repeat1] = STATE(340), - [aux_sym__list_definition_repeat1] = STATE(517), - [aux_sym__list_decimal_period_repeat1] = STATE(515), - [aux_sym__list_decimal_paren_repeat1] = STATE(493), - [aux_sym__list_decimal_parens_repeat1] = STATE(490), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(486), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(485), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(483), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(482), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(481), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(480), - [aux_sym__list_lower_roman_period_repeat1] = STATE(479), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(476), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(475), - [aux_sym__list_upper_roman_period_repeat1] = STATE(472), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(513), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(507), - [aux_sym_table_repeat1] = STATE(62), - [aux_sym_footnote_content_repeat1] = STATE(18), - [aux_sym__block_quote_prefix_repeat1] = STATE(349), - [aux_sym__inline_repeat1] = STATE(329), - [anon_sym_LBRACK] = ACTIONS(75), - [anon_sym_PIPE] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), + [16] = { + [sym__block_with_heading] = STATE(226), + [sym__block_element] = STATE(226), + [sym_heading] = STATE(226), + [sym_list] = STATE(226), + [sym__list_dash] = STATE(141), + [sym__list_item_dash] = STATE(416), + [sym__list_plus] = STATE(141), + [sym__list_item_plus] = STATE(419), + [sym__list_star] = STATE(141), + [sym__list_item_star] = STATE(407), + [sym__list_task] = STATE(141), + [sym__list_item_task] = STATE(371), + [sym_list_marker_task] = STATE(38), + [sym__list_definition] = STATE(141), + [sym__list_item_definition] = STATE(549), + [sym__list_decimal_period] = STATE(141), + [sym__list_item_decimal_period] = STATE(548), + [sym__list_decimal_paren] = STATE(141), + [sym__list_item_decimal_paren] = STATE(547), + [sym__list_decimal_parens] = STATE(141), + [sym__list_item_decimal_parens] = STATE(546), + [sym__list_lower_alpha_period] = STATE(141), + [sym__list_item_lower_alpha_period] = STATE(545), + [sym__list_lower_alpha_paren] = STATE(141), + [sym__list_item_lower_alpha_paren] = STATE(544), + [sym__list_lower_alpha_parens] = STATE(141), + [sym__list_item_lower_alpha_parens] = STATE(543), + [sym__list_upper_alpha_period] = STATE(141), + [sym__list_item_upper_alpha_period] = STATE(542), + [sym__list_upper_alpha_paren] = STATE(141), + [sym__list_item_upper_alpha_paren] = STATE(541), + [sym__list_upper_alpha_parens] = STATE(141), + [sym__list_item_upper_alpha_parens] = STATE(540), + [sym__list_lower_roman_period] = STATE(141), + [sym__list_item_lower_roman_period] = STATE(539), + [sym__list_lower_roman_paren] = STATE(141), + [sym__list_item_lower_roman_paren] = STATE(538), + [sym__list_lower_roman_parens] = STATE(141), + [sym__list_item_lower_roman_parens] = STATE(537), + [sym__list_upper_roman_period] = STATE(141), + [sym__list_item_upper_roman_period] = STATE(536), + [sym__list_upper_roman_paren] = STATE(141), + [sym__list_item_upper_roman_paren] = STATE(535), + [sym__list_upper_roman_parens] = STATE(141), + [sym__list_item_upper_roman_parens] = STATE(534), + [sym_table] = STATE(226), + [sym__table_content] = STATE(66), + [sym_table_separator] = STATE(66), + [sym_table_row] = STATE(72), + [sym_footnote] = STATE(226), + [sym_div] = STATE(226), + [sym_div_marker_begin] = STATE(985), + [sym_code_block] = STATE(226), + [sym_raw_block] = STATE(226), + [sym_thematic_break] = STATE(226), + [sym_block_quote] = STATE(226), + [sym__block_quote_prefix] = STATE(282), + [sym_link_reference_definition] = STATE(226), + [sym_block_attribute] = STATE(226), + [sym__paragraph] = STATE(226), + [sym__paragraph_content] = STATE(801), + [sym__inline] = STATE(703), + [sym__symbol_fallback] = STATE(366), + [aux_sym__list_dash_repeat1] = STATE(416), + [aux_sym__list_plus_repeat1] = STATE(419), + [aux_sym__list_star_repeat1] = STATE(407), + [aux_sym__list_task_repeat1] = STATE(371), + [aux_sym__list_definition_repeat1] = STATE(549), + [aux_sym__list_decimal_period_repeat1] = STATE(548), + [aux_sym__list_decimal_paren_repeat1] = STATE(547), + [aux_sym__list_decimal_parens_repeat1] = STATE(546), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(545), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(544), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(543), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(542), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(541), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(540), + [aux_sym__list_lower_roman_period_repeat1] = STATE(539), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(538), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(537), + [aux_sym__list_upper_roman_period_repeat1] = STATE(536), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(535), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(534), + [aux_sym_table_repeat1] = STATE(66), + [aux_sym_footnote_content_repeat1] = STATE(12), + [aux_sym__block_quote_prefix_repeat1] = STATE(307), + [aux_sym__inline_repeat1] = STATE(366), + [anon_sym_LBRACK] = ACTIONS(197), + [anon_sym_PIPE] = ACTIONS(199), + [anon_sym_LBRACE] = ACTIONS(201), [aux_sym__inline_token1] = ACTIONS(11), [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__block_close] = ACTIONS(247), - [sym__newline] = ACTIONS(223), + [sym__block_close] = ACTIONS(347), + [sym__newline] = ACTIONS(341), [sym__heading_begin] = ACTIONS(17), [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(85), + [sym__code_block_begin] = ACTIONS(207), [sym_list_marker_dash] = ACTIONS(23), [sym_list_marker_star] = ACTIONS(25), [sym_list_marker_plus] = ACTIONS(27), @@ -6118,110 +6307,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(57), [sym_list_marker_lower_roman_parens] = ACTIONS(59), [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(87), - [sym__block_quote_continuation] = ACTIONS(225), - [sym__thematic_break_dash] = ACTIONS(89), - [sym__thematic_break_star] = ACTIONS(89), - [sym__footnote_begin] = ACTIONS(91), + [sym__block_quote_begin] = ACTIONS(209), + [sym__block_quote_continuation] = ACTIONS(343), + [sym__thematic_break_dash] = ACTIONS(211), + [sym__thematic_break_star] = ACTIONS(211), + [sym__footnote_begin] = ACTIONS(213), }, - [16] = { - [sym__block_with_heading] = STATE(136), - [sym__block_element] = STATE(136), - [sym_heading] = STATE(136), - [sym_list] = STATE(136), - [sym__list_dash] = STATE(200), - [sym__list_item_dash] = STATE(382), - [sym__list_plus] = STATE(200), - [sym__list_item_plus] = STATE(383), - [sym__list_star] = STATE(200), - [sym__list_item_star] = STATE(385), - [sym__list_task] = STATE(200), - [sym__list_item_task] = STATE(341), - [sym_list_marker_task] = STATE(37), - [sym__list_definition] = STATE(200), - [sym__list_item_definition] = STATE(494), - [sym__list_decimal_period] = STATE(200), - [sym__list_item_decimal_period] = STATE(477), - [sym__list_decimal_paren] = STATE(200), - [sym__list_item_decimal_paren] = STATE(508), - [sym__list_decimal_parens] = STATE(200), - [sym__list_item_decimal_parens] = STATE(519), - [sym__list_lower_alpha_period] = STATE(200), - [sym__list_item_lower_alpha_period] = STATE(520), - [sym__list_lower_alpha_paren] = STATE(200), - [sym__list_item_lower_alpha_paren] = STATE(521), - [sym__list_lower_alpha_parens] = STATE(200), - [sym__list_item_lower_alpha_parens] = STATE(523), - [sym__list_upper_alpha_period] = STATE(200), - [sym__list_item_upper_alpha_period] = STATE(524), - [sym__list_upper_alpha_paren] = STATE(200), - [sym__list_item_upper_alpha_paren] = STATE(527), - [sym__list_upper_alpha_parens] = STATE(200), - [sym__list_item_upper_alpha_parens] = STATE(528), - [sym__list_lower_roman_period] = STATE(200), - [sym__list_item_lower_roman_period] = STATE(529), - [sym__list_lower_roman_paren] = STATE(200), - [sym__list_item_lower_roman_paren] = STATE(530), - [sym__list_lower_roman_parens] = STATE(200), - [sym__list_item_lower_roman_parens] = STATE(532), - [sym__list_upper_roman_period] = STATE(200), - [sym__list_item_upper_roman_period] = STATE(539), - [sym__list_upper_roman_paren] = STATE(200), - [sym__list_item_upper_roman_paren] = STATE(470), - [sym__list_upper_roman_parens] = STATE(200), - [sym__list_item_upper_roman_parens] = STATE(510), - [sym_table] = STATE(136), - [sym__table_content] = STATE(60), - [sym_table_separator] = STATE(60), - [sym_table_row] = STATE(67), - [sym_footnote] = STATE(136), - [sym_footnote_content] = STATE(958), - [sym_div] = STATE(136), - [sym_div_marker_begin] = STATE(976), - [sym_code_block] = STATE(136), - [sym_raw_block] = STATE(136), - [sym_thematic_break] = STATE(136), - [sym_block_quote] = STATE(136), - [sym__block_quote_prefix] = STATE(445), - [sym_link_reference_definition] = STATE(136), - [sym_block_attribute] = STATE(136), - [sym__paragraph] = STATE(136), - [sym__paragraph_content] = STATE(829), - [sym__inline] = STATE(683), - [sym__symbol_fallback] = STATE(329), - [aux_sym__list_dash_repeat1] = STATE(382), - [aux_sym__list_plus_repeat1] = STATE(383), - [aux_sym__list_star_repeat1] = STATE(385), - [aux_sym__list_task_repeat1] = STATE(341), - [aux_sym__list_definition_repeat1] = STATE(494), - [aux_sym__list_decimal_period_repeat1] = STATE(477), - [aux_sym__list_decimal_paren_repeat1] = STATE(508), - [aux_sym__list_decimal_parens_repeat1] = STATE(519), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(520), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(521), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(523), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(524), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(527), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(528), - [aux_sym__list_lower_roman_period_repeat1] = STATE(529), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(530), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(532), - [aux_sym__list_upper_roman_period_repeat1] = STATE(539), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(470), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(510), - [aux_sym_table_repeat1] = STATE(60), - [aux_sym_footnote_content_repeat1] = STATE(17), - [aux_sym__block_quote_prefix_repeat1] = STATE(397), - [aux_sym__inline_repeat1] = STATE(329), - [anon_sym_LBRACK] = ACTIONS(227), - [anon_sym_PIPE] = ACTIONS(229), - [anon_sym_LBRACE] = ACTIONS(231), + [17] = { + [sym__block_with_heading] = STATE(226), + [sym__block_element] = STATE(226), + [sym_heading] = STATE(226), + [sym_list] = STATE(226), + [sym__list_dash] = STATE(141), + [sym__list_item_dash] = STATE(416), + [sym__list_plus] = STATE(141), + [sym__list_item_plus] = STATE(419), + [sym__list_star] = STATE(141), + [sym__list_item_star] = STATE(407), + [sym__list_task] = STATE(141), + [sym__list_item_task] = STATE(371), + [sym_list_marker_task] = STATE(38), + [sym__list_definition] = STATE(141), + [sym__list_item_definition] = STATE(549), + [sym__list_decimal_period] = STATE(141), + [sym__list_item_decimal_period] = STATE(548), + [sym__list_decimal_paren] = STATE(141), + [sym__list_item_decimal_paren] = STATE(547), + [sym__list_decimal_parens] = STATE(141), + [sym__list_item_decimal_parens] = STATE(546), + [sym__list_lower_alpha_period] = STATE(141), + [sym__list_item_lower_alpha_period] = STATE(545), + [sym__list_lower_alpha_paren] = STATE(141), + [sym__list_item_lower_alpha_paren] = STATE(544), + [sym__list_lower_alpha_parens] = STATE(141), + [sym__list_item_lower_alpha_parens] = STATE(543), + [sym__list_upper_alpha_period] = STATE(141), + [sym__list_item_upper_alpha_period] = STATE(542), + [sym__list_upper_alpha_paren] = STATE(141), + [sym__list_item_upper_alpha_paren] = STATE(541), + [sym__list_upper_alpha_parens] = STATE(141), + [sym__list_item_upper_alpha_parens] = STATE(540), + [sym__list_lower_roman_period] = STATE(141), + [sym__list_item_lower_roman_period] = STATE(539), + [sym__list_lower_roman_paren] = STATE(141), + [sym__list_item_lower_roman_paren] = STATE(538), + [sym__list_lower_roman_parens] = STATE(141), + [sym__list_item_lower_roman_parens] = STATE(537), + [sym__list_upper_roman_period] = STATE(141), + [sym__list_item_upper_roman_period] = STATE(536), + [sym__list_upper_roman_paren] = STATE(141), + [sym__list_item_upper_roman_paren] = STATE(535), + [sym__list_upper_roman_parens] = STATE(141), + [sym__list_item_upper_roman_parens] = STATE(534), + [sym_table] = STATE(226), + [sym__table_content] = STATE(66), + [sym_table_separator] = STATE(66), + [sym_table_row] = STATE(72), + [sym_footnote] = STATE(226), + [sym_div] = STATE(226), + [sym_div_marker_begin] = STATE(985), + [sym_code_block] = STATE(226), + [sym_raw_block] = STATE(226), + [sym_thematic_break] = STATE(226), + [sym_block_quote] = STATE(226), + [sym__block_quote_prefix] = STATE(279), + [sym_link_reference_definition] = STATE(226), + [sym_block_attribute] = STATE(226), + [sym__paragraph] = STATE(226), + [sym__paragraph_content] = STATE(801), + [sym__inline] = STATE(703), + [sym__symbol_fallback] = STATE(366), + [aux_sym__list_dash_repeat1] = STATE(416), + [aux_sym__list_plus_repeat1] = STATE(419), + [aux_sym__list_star_repeat1] = STATE(407), + [aux_sym__list_task_repeat1] = STATE(371), + [aux_sym__list_definition_repeat1] = STATE(549), + [aux_sym__list_decimal_period_repeat1] = STATE(548), + [aux_sym__list_decimal_paren_repeat1] = STATE(547), + [aux_sym__list_decimal_parens_repeat1] = STATE(546), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(545), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(544), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(543), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(542), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(541), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(540), + [aux_sym__list_lower_roman_period_repeat1] = STATE(539), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(538), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(537), + [aux_sym__list_upper_roman_period_repeat1] = STATE(536), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(535), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(534), + [aux_sym_table_repeat1] = STATE(66), + [aux_sym_footnote_content_repeat1] = STATE(18), + [aux_sym__block_quote_prefix_repeat1] = STATE(307), + [aux_sym__inline_repeat1] = STATE(366), + [anon_sym_LBRACK] = ACTIONS(197), + [anon_sym_PIPE] = ACTIONS(199), + [anon_sym_LBRACE] = ACTIONS(201), [aux_sym__inline_token1] = ACTIONS(11), [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__newline] = ACTIONS(233), - [sym__heading_begin] = ACTIONS(235), + [sym__block_close] = ACTIONS(349), + [sym__newline] = ACTIONS(341), + [sym__heading_begin] = ACTIONS(17), [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(237), + [sym__code_block_begin] = ACTIONS(207), [sym_list_marker_dash] = ACTIONS(23), [sym_list_marker_star] = ACTIONS(25), [sym_list_marker_plus] = ACTIONS(27), @@ -6242,109 +6431,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(57), [sym_list_marker_lower_roman_parens] = ACTIONS(59), [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(239), - [sym__block_quote_continuation] = ACTIONS(65), - [sym__thematic_break_dash] = ACTIONS(241), - [sym__thematic_break_star] = ACTIONS(241), - [sym__footnote_begin] = ACTIONS(243), + [sym__block_quote_begin] = ACTIONS(209), + [sym__block_quote_continuation] = ACTIONS(343), + [sym__thematic_break_dash] = ACTIONS(211), + [sym__thematic_break_star] = ACTIONS(211), + [sym__footnote_begin] = ACTIONS(213), }, - [17] = { - [sym__block_with_heading] = STATE(136), - [sym__block_element] = STATE(136), - [sym_heading] = STATE(136), - [sym_list] = STATE(136), - [sym__list_dash] = STATE(200), - [sym__list_item_dash] = STATE(382), - [sym__list_plus] = STATE(200), - [sym__list_item_plus] = STATE(383), - [sym__list_star] = STATE(200), - [sym__list_item_star] = STATE(385), - [sym__list_task] = STATE(200), - [sym__list_item_task] = STATE(341), - [sym_list_marker_task] = STATE(37), - [sym__list_definition] = STATE(200), - [sym__list_item_definition] = STATE(494), - [sym__list_decimal_period] = STATE(200), - [sym__list_item_decimal_period] = STATE(477), - [sym__list_decimal_paren] = STATE(200), - [sym__list_item_decimal_paren] = STATE(508), - [sym__list_decimal_parens] = STATE(200), - [sym__list_item_decimal_parens] = STATE(519), - [sym__list_lower_alpha_period] = STATE(200), - [sym__list_item_lower_alpha_period] = STATE(520), - [sym__list_lower_alpha_paren] = STATE(200), - [sym__list_item_lower_alpha_paren] = STATE(521), - [sym__list_lower_alpha_parens] = STATE(200), - [sym__list_item_lower_alpha_parens] = STATE(523), - [sym__list_upper_alpha_period] = STATE(200), - [sym__list_item_upper_alpha_period] = STATE(524), - [sym__list_upper_alpha_paren] = STATE(200), - [sym__list_item_upper_alpha_paren] = STATE(527), - [sym__list_upper_alpha_parens] = STATE(200), - [sym__list_item_upper_alpha_parens] = STATE(528), - [sym__list_lower_roman_period] = STATE(200), - [sym__list_item_lower_roman_period] = STATE(529), - [sym__list_lower_roman_paren] = STATE(200), - [sym__list_item_lower_roman_paren] = STATE(530), - [sym__list_lower_roman_parens] = STATE(200), - [sym__list_item_lower_roman_parens] = STATE(532), - [sym__list_upper_roman_period] = STATE(200), - [sym__list_item_upper_roman_period] = STATE(539), - [sym__list_upper_roman_paren] = STATE(200), - [sym__list_item_upper_roman_paren] = STATE(470), - [sym__list_upper_roman_parens] = STATE(200), - [sym__list_item_upper_roman_parens] = STATE(510), - [sym_table] = STATE(136), - [sym__table_content] = STATE(60), - [sym_table_separator] = STATE(60), - [sym_table_row] = STATE(67), - [sym_footnote] = STATE(136), - [sym_div] = STATE(136), - [sym_div_marker_begin] = STATE(976), - [sym_code_block] = STATE(136), - [sym_raw_block] = STATE(136), - [sym_thematic_break] = STATE(136), - [sym_block_quote] = STATE(136), - [sym__block_quote_prefix] = STATE(445), - [sym_link_reference_definition] = STATE(136), - [sym_block_attribute] = STATE(136), - [sym__paragraph] = STATE(136), - [sym__paragraph_content] = STATE(829), - [sym__inline] = STATE(683), - [sym__symbol_fallback] = STATE(329), - [aux_sym__list_dash_repeat1] = STATE(382), - [aux_sym__list_plus_repeat1] = STATE(383), - [aux_sym__list_star_repeat1] = STATE(385), - [aux_sym__list_task_repeat1] = STATE(341), - [aux_sym__list_definition_repeat1] = STATE(494), - [aux_sym__list_decimal_period_repeat1] = STATE(477), - [aux_sym__list_decimal_paren_repeat1] = STATE(508), - [aux_sym__list_decimal_parens_repeat1] = STATE(519), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(520), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(521), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(523), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(524), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(527), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(528), - [aux_sym__list_lower_roman_period_repeat1] = STATE(529), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(530), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(532), - [aux_sym__list_upper_roman_period_repeat1] = STATE(539), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(470), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(510), - [aux_sym_table_repeat1] = STATE(60), - [aux_sym_footnote_content_repeat1] = STATE(24), - [aux_sym__block_quote_prefix_repeat1] = STATE(397), - [aux_sym__inline_repeat1] = STATE(329), - [anon_sym_LBRACK] = ACTIONS(227), - [anon_sym_PIPE] = ACTIONS(229), - [anon_sym_LBRACE] = ACTIONS(231), + [18] = { + [sym__block_with_heading] = STATE(226), + [sym__block_element] = STATE(226), + [sym_heading] = STATE(226), + [sym_list] = STATE(226), + [sym__list_dash] = STATE(141), + [sym__list_item_dash] = STATE(416), + [sym__list_plus] = STATE(141), + [sym__list_item_plus] = STATE(419), + [sym__list_star] = STATE(141), + [sym__list_item_star] = STATE(407), + [sym__list_task] = STATE(141), + [sym__list_item_task] = STATE(371), + [sym_list_marker_task] = STATE(38), + [sym__list_definition] = STATE(141), + [sym__list_item_definition] = STATE(549), + [sym__list_decimal_period] = STATE(141), + [sym__list_item_decimal_period] = STATE(548), + [sym__list_decimal_paren] = STATE(141), + [sym__list_item_decimal_paren] = STATE(547), + [sym__list_decimal_parens] = STATE(141), + [sym__list_item_decimal_parens] = STATE(546), + [sym__list_lower_alpha_period] = STATE(141), + [sym__list_item_lower_alpha_period] = STATE(545), + [sym__list_lower_alpha_paren] = STATE(141), + [sym__list_item_lower_alpha_paren] = STATE(544), + [sym__list_lower_alpha_parens] = STATE(141), + [sym__list_item_lower_alpha_parens] = STATE(543), + [sym__list_upper_alpha_period] = STATE(141), + [sym__list_item_upper_alpha_period] = STATE(542), + [sym__list_upper_alpha_paren] = STATE(141), + [sym__list_item_upper_alpha_paren] = STATE(541), + [sym__list_upper_alpha_parens] = STATE(141), + [sym__list_item_upper_alpha_parens] = STATE(540), + [sym__list_lower_roman_period] = STATE(141), + [sym__list_item_lower_roman_period] = STATE(539), + [sym__list_lower_roman_paren] = STATE(141), + [sym__list_item_lower_roman_paren] = STATE(538), + [sym__list_lower_roman_parens] = STATE(141), + [sym__list_item_lower_roman_parens] = STATE(537), + [sym__list_upper_roman_period] = STATE(141), + [sym__list_item_upper_roman_period] = STATE(536), + [sym__list_upper_roman_paren] = STATE(141), + [sym__list_item_upper_roman_paren] = STATE(535), + [sym__list_upper_roman_parens] = STATE(141), + [sym__list_item_upper_roman_parens] = STATE(534), + [sym_table] = STATE(226), + [sym__table_content] = STATE(66), + [sym_table_separator] = STATE(66), + [sym_table_row] = STATE(72), + [sym_footnote] = STATE(226), + [sym_div] = STATE(226), + [sym_div_marker_begin] = STATE(985), + [sym_code_block] = STATE(226), + [sym_raw_block] = STATE(226), + [sym_thematic_break] = STATE(226), + [sym_block_quote] = STATE(226), + [sym__block_quote_prefix] = STATE(278), + [sym_link_reference_definition] = STATE(226), + [sym_block_attribute] = STATE(226), + [sym__paragraph] = STATE(226), + [sym__paragraph_content] = STATE(801), + [sym__inline] = STATE(703), + [sym__symbol_fallback] = STATE(366), + [aux_sym__list_dash_repeat1] = STATE(416), + [aux_sym__list_plus_repeat1] = STATE(419), + [aux_sym__list_star_repeat1] = STATE(407), + [aux_sym__list_task_repeat1] = STATE(371), + [aux_sym__list_definition_repeat1] = STATE(549), + [aux_sym__list_decimal_period_repeat1] = STATE(548), + [aux_sym__list_decimal_paren_repeat1] = STATE(547), + [aux_sym__list_decimal_parens_repeat1] = STATE(546), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(545), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(544), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(543), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(542), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(541), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(540), + [aux_sym__list_lower_roman_period_repeat1] = STATE(539), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(538), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(537), + [aux_sym__list_upper_roman_period_repeat1] = STATE(536), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(535), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(534), + [aux_sym_table_repeat1] = STATE(66), + [aux_sym_footnote_content_repeat1] = STATE(12), + [aux_sym__block_quote_prefix_repeat1] = STATE(307), + [aux_sym__inline_repeat1] = STATE(366), + [anon_sym_LBRACK] = ACTIONS(197), + [anon_sym_PIPE] = ACTIONS(199), + [anon_sym_LBRACE] = ACTIONS(201), [aux_sym__inline_token1] = ACTIONS(11), [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__newline] = ACTIONS(233), - [sym__heading_begin] = ACTIONS(235), + [sym__block_close] = ACTIONS(351), + [sym__newline] = ACTIONS(341), + [sym__heading_begin] = ACTIONS(17), [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(237), + [sym__code_block_begin] = ACTIONS(207), [sym_list_marker_dash] = ACTIONS(23), [sym_list_marker_star] = ACTIONS(25), [sym_list_marker_plus] = ACTIONS(27), @@ -6365,235 +6555,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(57), [sym_list_marker_lower_roman_parens] = ACTIONS(59), [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(239), - [sym__block_quote_continuation] = ACTIONS(65), - [sym__thematic_break_dash] = ACTIONS(241), - [sym__thematic_break_star] = ACTIONS(241), - [sym__footnote_begin] = ACTIONS(243), - [sym__footnote_end] = ACTIONS(249), - }, - [18] = { - [sym__block_with_heading] = STATE(221), - [sym__block_element] = STATE(221), - [sym_heading] = STATE(221), - [sym_list] = STATE(221), - [sym__list_dash] = STATE(254), - [sym__list_item_dash] = STATE(391), - [sym__list_plus] = STATE(254), - [sym__list_item_plus] = STATE(390), - [sym__list_star] = STATE(254), - [sym__list_item_star] = STATE(389), - [sym__list_task] = STATE(254), - [sym__list_item_task] = STATE(340), - [sym_list_marker_task] = STATE(37), - [sym__list_definition] = STATE(254), - [sym__list_item_definition] = STATE(517), - [sym__list_decimal_period] = STATE(254), - [sym__list_item_decimal_period] = STATE(515), - [sym__list_decimal_paren] = STATE(254), - [sym__list_item_decimal_paren] = STATE(493), - [sym__list_decimal_parens] = STATE(254), - [sym__list_item_decimal_parens] = STATE(490), - [sym__list_lower_alpha_period] = STATE(254), - [sym__list_item_lower_alpha_period] = STATE(486), - [sym__list_lower_alpha_paren] = STATE(254), - [sym__list_item_lower_alpha_paren] = STATE(485), - [sym__list_lower_alpha_parens] = STATE(254), - [sym__list_item_lower_alpha_parens] = STATE(483), - [sym__list_upper_alpha_period] = STATE(254), - [sym__list_item_upper_alpha_period] = STATE(482), - [sym__list_upper_alpha_paren] = STATE(254), - [sym__list_item_upper_alpha_paren] = STATE(481), - [sym__list_upper_alpha_parens] = STATE(254), - [sym__list_item_upper_alpha_parens] = STATE(480), - [sym__list_lower_roman_period] = STATE(254), - [sym__list_item_lower_roman_period] = STATE(479), - [sym__list_lower_roman_paren] = STATE(254), - [sym__list_item_lower_roman_paren] = STATE(476), - [sym__list_lower_roman_parens] = STATE(254), - [sym__list_item_lower_roman_parens] = STATE(475), - [sym__list_upper_roman_period] = STATE(254), - [sym__list_item_upper_roman_period] = STATE(472), - [sym__list_upper_roman_paren] = STATE(254), - [sym__list_item_upper_roman_paren] = STATE(513), - [sym__list_upper_roman_parens] = STATE(254), - [sym__list_item_upper_roman_parens] = STATE(507), - [sym_table] = STATE(221), - [sym__table_content] = STATE(62), - [sym_table_separator] = STATE(62), - [sym_table_row] = STATE(68), - [sym_footnote] = STATE(221), - [sym_div] = STATE(221), - [sym_div_marker_begin] = STATE(956), - [sym_code_block] = STATE(221), - [sym_raw_block] = STATE(221), - [sym_thematic_break] = STATE(221), - [sym_block_quote] = STATE(221), - [sym__block_quote_prefix] = STATE(436), - [sym_link_reference_definition] = STATE(221), - [sym_block_attribute] = STATE(221), - [sym__paragraph] = STATE(221), - [sym__paragraph_content] = STATE(774), - [sym__inline] = STATE(683), - [sym__symbol_fallback] = STATE(329), - [aux_sym__list_dash_repeat1] = STATE(391), - [aux_sym__list_plus_repeat1] = STATE(390), - [aux_sym__list_star_repeat1] = STATE(389), - [aux_sym__list_task_repeat1] = STATE(340), - [aux_sym__list_definition_repeat1] = STATE(517), - [aux_sym__list_decimal_period_repeat1] = STATE(515), - [aux_sym__list_decimal_paren_repeat1] = STATE(493), - [aux_sym__list_decimal_parens_repeat1] = STATE(490), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(486), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(485), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(483), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(482), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(481), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(480), - [aux_sym__list_lower_roman_period_repeat1] = STATE(479), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(476), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(475), - [aux_sym__list_upper_roman_period_repeat1] = STATE(472), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(513), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(507), - [aux_sym_table_repeat1] = STATE(62), - [aux_sym_footnote_content_repeat1] = STATE(18), - [aux_sym__block_quote_prefix_repeat1] = STATE(397), - [aux_sym__inline_repeat1] = STATE(329), - [anon_sym_LBRACK] = ACTIONS(251), - [anon_sym_PIPE] = ACTIONS(254), - [anon_sym_LBRACE] = ACTIONS(257), - [aux_sym__inline_token1] = ACTIONS(260), - [anon_sym_LBRACE_DASH] = ACTIONS(260), - [sym__block_close] = ACTIONS(263), - [sym__newline] = ACTIONS(265), - [sym__heading_begin] = ACTIONS(268), - [sym__div_begin] = ACTIONS(271), - [sym__code_block_begin] = ACTIONS(274), - [sym_list_marker_dash] = ACTIONS(277), - [sym_list_marker_star] = ACTIONS(280), - [sym_list_marker_plus] = ACTIONS(283), - [sym__list_marker_task_begin] = ACTIONS(286), - [sym_list_marker_definition] = ACTIONS(289), - [sym_list_marker_decimal_period] = ACTIONS(292), - [sym_list_marker_lower_alpha_period] = ACTIONS(295), - [sym_list_marker_upper_alpha_period] = ACTIONS(298), - [sym_list_marker_lower_roman_period] = ACTIONS(301), - [sym_list_marker_upper_roman_period] = ACTIONS(304), - [sym_list_marker_decimal_paren] = ACTIONS(307), - [sym_list_marker_lower_alpha_paren] = ACTIONS(310), - [sym_list_marker_upper_alpha_paren] = ACTIONS(313), - [sym_list_marker_lower_roman_paren] = ACTIONS(316), - [sym_list_marker_upper_roman_paren] = ACTIONS(319), - [sym_list_marker_decimal_parens] = ACTIONS(322), - [sym_list_marker_lower_alpha_parens] = ACTIONS(325), - [sym_list_marker_upper_alpha_parens] = ACTIONS(328), - [sym_list_marker_lower_roman_parens] = ACTIONS(331), - [sym_list_marker_upper_roman_parens] = ACTIONS(334), - [sym__block_quote_begin] = ACTIONS(337), - [sym__block_quote_continuation] = ACTIONS(340), - [sym__thematic_break_dash] = ACTIONS(343), - [sym__thematic_break_star] = ACTIONS(343), - [sym__footnote_begin] = ACTIONS(346), + [sym__block_quote_begin] = ACTIONS(209), + [sym__block_quote_continuation] = ACTIONS(343), + [sym__thematic_break_dash] = ACTIONS(211), + [sym__thematic_break_star] = ACTIONS(211), + [sym__footnote_begin] = ACTIONS(213), }, [19] = { - [sym__block_with_heading] = STATE(221), - [sym__block_element] = STATE(221), - [sym_heading] = STATE(221), - [sym_list] = STATE(221), - [sym__list_dash] = STATE(254), - [sym__list_item_dash] = STATE(391), - [sym__list_plus] = STATE(254), - [sym__list_item_plus] = STATE(390), - [sym__list_star] = STATE(254), - [sym__list_item_star] = STATE(389), - [sym__list_task] = STATE(254), - [sym__list_item_task] = STATE(340), - [sym_list_marker_task] = STATE(37), - [sym__list_definition] = STATE(254), - [sym__list_item_definition] = STATE(517), - [sym__list_decimal_period] = STATE(254), - [sym__list_item_decimal_period] = STATE(515), - [sym__list_decimal_paren] = STATE(254), - [sym__list_item_decimal_paren] = STATE(493), - [sym__list_decimal_parens] = STATE(254), - [sym__list_item_decimal_parens] = STATE(490), - [sym__list_lower_alpha_period] = STATE(254), - [sym__list_item_lower_alpha_period] = STATE(486), - [sym__list_lower_alpha_paren] = STATE(254), - [sym__list_item_lower_alpha_paren] = STATE(485), - [sym__list_lower_alpha_parens] = STATE(254), - [sym__list_item_lower_alpha_parens] = STATE(483), - [sym__list_upper_alpha_period] = STATE(254), - [sym__list_item_upper_alpha_period] = STATE(482), - [sym__list_upper_alpha_paren] = STATE(254), - [sym__list_item_upper_alpha_paren] = STATE(481), - [sym__list_upper_alpha_parens] = STATE(254), - [sym__list_item_upper_alpha_parens] = STATE(480), - [sym__list_lower_roman_period] = STATE(254), - [sym__list_item_lower_roman_period] = STATE(479), - [sym__list_lower_roman_paren] = STATE(254), - [sym__list_item_lower_roman_paren] = STATE(476), - [sym__list_lower_roman_parens] = STATE(254), - [sym__list_item_lower_roman_parens] = STATE(475), - [sym__list_upper_roman_period] = STATE(254), - [sym__list_item_upper_roman_period] = STATE(472), - [sym__list_upper_roman_paren] = STATE(254), - [sym__list_item_upper_roman_paren] = STATE(513), - [sym__list_upper_roman_parens] = STATE(254), - [sym__list_item_upper_roman_parens] = STATE(507), - [sym_table] = STATE(221), - [sym__table_content] = STATE(62), - [sym_table_separator] = STATE(62), - [sym_table_row] = STATE(68), - [sym_footnote] = STATE(221), - [sym_div] = STATE(221), - [sym_div_marker_begin] = STATE(956), - [sym_code_block] = STATE(221), - [sym_raw_block] = STATE(221), - [sym_thematic_break] = STATE(221), - [sym_block_quote] = STATE(221), - [sym__block_quote_prefix] = STATE(377), - [sym_link_reference_definition] = STATE(221), - [sym_block_attribute] = STATE(221), - [sym__paragraph] = STATE(221), - [sym__paragraph_content] = STATE(774), - [sym__inline] = STATE(683), - [sym__symbol_fallback] = STATE(329), - [aux_sym__list_dash_repeat1] = STATE(391), - [aux_sym__list_plus_repeat1] = STATE(390), - [aux_sym__list_star_repeat1] = STATE(389), - [aux_sym__list_task_repeat1] = STATE(340), - [aux_sym__list_definition_repeat1] = STATE(517), - [aux_sym__list_decimal_period_repeat1] = STATE(515), - [aux_sym__list_decimal_paren_repeat1] = STATE(493), - [aux_sym__list_decimal_parens_repeat1] = STATE(490), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(486), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(485), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(483), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(482), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(481), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(480), - [aux_sym__list_lower_roman_period_repeat1] = STATE(479), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(476), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(475), - [aux_sym__list_upper_roman_period_repeat1] = STATE(472), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(513), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(507), - [aux_sym_table_repeat1] = STATE(62), - [aux_sym_footnote_content_repeat1] = STATE(20), - [aux_sym__block_quote_prefix_repeat1] = STATE(349), - [aux_sym__inline_repeat1] = STATE(329), - [anon_sym_LBRACK] = ACTIONS(75), - [anon_sym_PIPE] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), + [sym__block_with_heading] = STATE(265), + [sym__block_element] = STATE(265), + [sym_heading] = STATE(265), + [sym_list] = STATE(265), + [sym__list_dash] = STATE(234), + [sym__list_item_dash] = STATE(415), + [sym__list_plus] = STATE(234), + [sym__list_item_plus] = STATE(395), + [sym__list_star] = STATE(234), + [sym__list_item_star] = STATE(409), + [sym__list_task] = STATE(234), + [sym__list_item_task] = STATE(389), + [sym_list_marker_task] = STATE(38), + [sym__list_definition] = STATE(234), + [sym__list_item_definition] = STATE(531), + [sym__list_decimal_period] = STATE(234), + [sym__list_item_decimal_period] = STATE(530), + [sym__list_decimal_paren] = STATE(234), + [sym__list_item_decimal_paren] = STATE(529), + [sym__list_decimal_parens] = STATE(234), + [sym__list_item_decimal_parens] = STATE(527), + [sym__list_lower_alpha_period] = STATE(234), + [sym__list_item_lower_alpha_period] = STATE(526), + [sym__list_lower_alpha_paren] = STATE(234), + [sym__list_item_lower_alpha_paren] = STATE(525), + [sym__list_lower_alpha_parens] = STATE(234), + [sym__list_item_lower_alpha_parens] = STATE(524), + [sym__list_upper_alpha_period] = STATE(234), + [sym__list_item_upper_alpha_period] = STATE(523), + [sym__list_upper_alpha_paren] = STATE(234), + [sym__list_item_upper_alpha_paren] = STATE(522), + [sym__list_upper_alpha_parens] = STATE(234), + [sym__list_item_upper_alpha_parens] = STATE(521), + [sym__list_lower_roman_period] = STATE(234), + [sym__list_item_lower_roman_period] = STATE(520), + [sym__list_lower_roman_paren] = STATE(234), + [sym__list_item_lower_roman_paren] = STATE(519), + [sym__list_lower_roman_parens] = STATE(234), + [sym__list_item_lower_roman_parens] = STATE(518), + [sym__list_upper_roman_period] = STATE(234), + [sym__list_item_upper_roman_period] = STATE(517), + [sym__list_upper_roman_paren] = STATE(234), + [sym__list_item_upper_roman_paren] = STATE(516), + [sym__list_upper_roman_parens] = STATE(234), + [sym__list_item_upper_roman_parens] = STATE(515), + [sym_table] = STATE(265), + [sym__table_content] = STATE(65), + [sym_table_separator] = STATE(65), + [sym_table_row] = STATE(71), + [sym_footnote] = STATE(265), + [sym_footnote_content] = STATE(940), + [sym_div] = STATE(265), + [sym_div_marker_begin] = STATE(1006), + [sym_code_block] = STATE(265), + [sym_raw_block] = STATE(265), + [sym_thematic_break] = STATE(265), + [sym_block_quote] = STATE(265), + [sym__block_quote_prefix] = STATE(285), + [sym_link_reference_definition] = STATE(265), + [sym_block_attribute] = STATE(265), + [sym__paragraph] = STATE(265), + [sym__paragraph_content] = STATE(856), + [sym__inline] = STATE(703), + [sym__symbol_fallback] = STATE(366), + [aux_sym__list_dash_repeat1] = STATE(415), + [aux_sym__list_plus_repeat1] = STATE(395), + [aux_sym__list_star_repeat1] = STATE(409), + [aux_sym__list_task_repeat1] = STATE(389), + [aux_sym__list_definition_repeat1] = STATE(531), + [aux_sym__list_decimal_period_repeat1] = STATE(530), + [aux_sym__list_decimal_paren_repeat1] = STATE(529), + [aux_sym__list_decimal_parens_repeat1] = STATE(527), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(526), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(525), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(524), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(523), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(522), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(521), + [aux_sym__list_lower_roman_period_repeat1] = STATE(520), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(519), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(518), + [aux_sym__list_upper_roman_period_repeat1] = STATE(517), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(516), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(515), + [aux_sym_table_repeat1] = STATE(65), + [aux_sym_footnote_content_repeat1] = STATE(15), + [aux_sym__block_quote_prefix_repeat1] = STATE(323), + [aux_sym__inline_repeat1] = STATE(366), + [anon_sym_LBRACK] = ACTIONS(221), + [anon_sym_PIPE] = ACTIONS(223), + [anon_sym_LBRACE] = ACTIONS(225), [aux_sym__inline_token1] = ACTIONS(11), [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__block_close] = ACTIONS(349), - [sym__newline] = ACTIONS(223), - [sym__heading_begin] = ACTIONS(17), + [sym__newline] = ACTIONS(227), + [sym__heading_begin] = ACTIONS(229), [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(85), + [sym__code_block_begin] = ACTIONS(231), [sym_list_marker_dash] = ACTIONS(23), [sym_list_marker_star] = ACTIONS(25), [sym_list_marker_plus] = ACTIONS(27), @@ -6614,110 +6679,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(57), [sym_list_marker_lower_roman_parens] = ACTIONS(59), [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(87), - [sym__block_quote_continuation] = ACTIONS(225), - [sym__thematic_break_dash] = ACTIONS(89), - [sym__thematic_break_star] = ACTIONS(89), - [sym__footnote_begin] = ACTIONS(91), + [sym__block_quote_begin] = ACTIONS(233), + [sym__block_quote_continuation] = ACTIONS(235), + [sym__thematic_break_dash] = ACTIONS(237), + [sym__thematic_break_star] = ACTIONS(237), + [sym__footnote_begin] = ACTIONS(239), }, [20] = { - [sym__block_with_heading] = STATE(221), - [sym__block_element] = STATE(221), - [sym_heading] = STATE(221), - [sym_list] = STATE(221), - [sym__list_dash] = STATE(254), - [sym__list_item_dash] = STATE(391), - [sym__list_plus] = STATE(254), - [sym__list_item_plus] = STATE(390), - [sym__list_star] = STATE(254), - [sym__list_item_star] = STATE(389), - [sym__list_task] = STATE(254), - [sym__list_item_task] = STATE(340), - [sym_list_marker_task] = STATE(37), - [sym__list_definition] = STATE(254), - [sym__list_item_definition] = STATE(517), - [sym__list_decimal_period] = STATE(254), - [sym__list_item_decimal_period] = STATE(515), - [sym__list_decimal_paren] = STATE(254), - [sym__list_item_decimal_paren] = STATE(493), - [sym__list_decimal_parens] = STATE(254), - [sym__list_item_decimal_parens] = STATE(490), - [sym__list_lower_alpha_period] = STATE(254), - [sym__list_item_lower_alpha_period] = STATE(486), - [sym__list_lower_alpha_paren] = STATE(254), - [sym__list_item_lower_alpha_paren] = STATE(485), - [sym__list_lower_alpha_parens] = STATE(254), - [sym__list_item_lower_alpha_parens] = STATE(483), - [sym__list_upper_alpha_period] = STATE(254), - [sym__list_item_upper_alpha_period] = STATE(482), - [sym__list_upper_alpha_paren] = STATE(254), - [sym__list_item_upper_alpha_paren] = STATE(481), - [sym__list_upper_alpha_parens] = STATE(254), - [sym__list_item_upper_alpha_parens] = STATE(480), - [sym__list_lower_roman_period] = STATE(254), - [sym__list_item_lower_roman_period] = STATE(479), - [sym__list_lower_roman_paren] = STATE(254), - [sym__list_item_lower_roman_paren] = STATE(476), - [sym__list_lower_roman_parens] = STATE(254), - [sym__list_item_lower_roman_parens] = STATE(475), - [sym__list_upper_roman_period] = STATE(254), - [sym__list_item_upper_roman_period] = STATE(472), - [sym__list_upper_roman_paren] = STATE(254), - [sym__list_item_upper_roman_paren] = STATE(513), - [sym__list_upper_roman_parens] = STATE(254), - [sym__list_item_upper_roman_parens] = STATE(507), - [sym_table] = STATE(221), - [sym__table_content] = STATE(62), - [sym_table_separator] = STATE(62), - [sym_table_row] = STATE(68), - [sym_footnote] = STATE(221), - [sym_div] = STATE(221), - [sym_div_marker_begin] = STATE(956), - [sym_code_block] = STATE(221), - [sym_raw_block] = STATE(221), - [sym_thematic_break] = STATE(221), - [sym_block_quote] = STATE(221), - [sym__block_quote_prefix] = STATE(367), - [sym_link_reference_definition] = STATE(221), - [sym_block_attribute] = STATE(221), - [sym__paragraph] = STATE(221), - [sym__paragraph_content] = STATE(774), - [sym__inline] = STATE(683), - [sym__symbol_fallback] = STATE(329), - [aux_sym__list_dash_repeat1] = STATE(391), - [aux_sym__list_plus_repeat1] = STATE(390), - [aux_sym__list_star_repeat1] = STATE(389), - [aux_sym__list_task_repeat1] = STATE(340), - [aux_sym__list_definition_repeat1] = STATE(517), - [aux_sym__list_decimal_period_repeat1] = STATE(515), - [aux_sym__list_decimal_paren_repeat1] = STATE(493), - [aux_sym__list_decimal_parens_repeat1] = STATE(490), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(486), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(485), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(483), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(482), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(481), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(480), - [aux_sym__list_lower_roman_period_repeat1] = STATE(479), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(476), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(475), - [aux_sym__list_upper_roman_period_repeat1] = STATE(472), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(513), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(507), - [aux_sym_table_repeat1] = STATE(62), - [aux_sym_footnote_content_repeat1] = STATE(18), - [aux_sym__block_quote_prefix_repeat1] = STATE(349), - [aux_sym__inline_repeat1] = STATE(329), - [anon_sym_LBRACK] = ACTIONS(75), - [anon_sym_PIPE] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), + [sym__block_with_heading] = STATE(226), + [sym__block_element] = STATE(226), + [sym_heading] = STATE(226), + [sym_list] = STATE(226), + [sym__list_dash] = STATE(141), + [sym__list_item_dash] = STATE(416), + [sym__list_plus] = STATE(141), + [sym__list_item_plus] = STATE(419), + [sym__list_star] = STATE(141), + [sym__list_item_star] = STATE(407), + [sym__list_task] = STATE(141), + [sym__list_item_task] = STATE(371), + [sym_list_marker_task] = STATE(38), + [sym__list_definition] = STATE(141), + [sym__list_item_definition] = STATE(549), + [sym__list_decimal_period] = STATE(141), + [sym__list_item_decimal_period] = STATE(548), + [sym__list_decimal_paren] = STATE(141), + [sym__list_item_decimal_paren] = STATE(547), + [sym__list_decimal_parens] = STATE(141), + [sym__list_item_decimal_parens] = STATE(546), + [sym__list_lower_alpha_period] = STATE(141), + [sym__list_item_lower_alpha_period] = STATE(545), + [sym__list_lower_alpha_paren] = STATE(141), + [sym__list_item_lower_alpha_paren] = STATE(544), + [sym__list_lower_alpha_parens] = STATE(141), + [sym__list_item_lower_alpha_parens] = STATE(543), + [sym__list_upper_alpha_period] = STATE(141), + [sym__list_item_upper_alpha_period] = STATE(542), + [sym__list_upper_alpha_paren] = STATE(141), + [sym__list_item_upper_alpha_paren] = STATE(541), + [sym__list_upper_alpha_parens] = STATE(141), + [sym__list_item_upper_alpha_parens] = STATE(540), + [sym__list_lower_roman_period] = STATE(141), + [sym__list_item_lower_roman_period] = STATE(539), + [sym__list_lower_roman_paren] = STATE(141), + [sym__list_item_lower_roman_paren] = STATE(538), + [sym__list_lower_roman_parens] = STATE(141), + [sym__list_item_lower_roman_parens] = STATE(537), + [sym__list_upper_roman_period] = STATE(141), + [sym__list_item_upper_roman_period] = STATE(536), + [sym__list_upper_roman_paren] = STATE(141), + [sym__list_item_upper_roman_paren] = STATE(535), + [sym__list_upper_roman_parens] = STATE(141), + [sym__list_item_upper_roman_parens] = STATE(534), + [sym_table] = STATE(226), + [sym__table_content] = STATE(66), + [sym_table_separator] = STATE(66), + [sym_table_row] = STATE(72), + [sym_footnote] = STATE(226), + [sym_div] = STATE(226), + [sym_div_marker_begin] = STATE(985), + [sym_code_block] = STATE(226), + [sym_raw_block] = STATE(226), + [sym_thematic_break] = STATE(226), + [sym_block_quote] = STATE(226), + [sym__block_quote_prefix] = STATE(276), + [sym_link_reference_definition] = STATE(226), + [sym_block_attribute] = STATE(226), + [sym__paragraph] = STATE(226), + [sym__paragraph_content] = STATE(801), + [sym__inline] = STATE(703), + [sym__symbol_fallback] = STATE(366), + [aux_sym__list_dash_repeat1] = STATE(416), + [aux_sym__list_plus_repeat1] = STATE(419), + [aux_sym__list_star_repeat1] = STATE(407), + [aux_sym__list_task_repeat1] = STATE(371), + [aux_sym__list_definition_repeat1] = STATE(549), + [aux_sym__list_decimal_period_repeat1] = STATE(548), + [aux_sym__list_decimal_paren_repeat1] = STATE(547), + [aux_sym__list_decimal_parens_repeat1] = STATE(546), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(545), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(544), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(543), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(542), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(541), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(540), + [aux_sym__list_lower_roman_period_repeat1] = STATE(539), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(538), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(537), + [aux_sym__list_upper_roman_period_repeat1] = STATE(536), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(535), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(534), + [aux_sym_table_repeat1] = STATE(66), + [aux_sym_footnote_content_repeat1] = STATE(22), + [aux_sym__block_quote_prefix_repeat1] = STATE(307), + [aux_sym__inline_repeat1] = STATE(366), + [anon_sym_LBRACK] = ACTIONS(197), + [anon_sym_PIPE] = ACTIONS(199), + [anon_sym_LBRACE] = ACTIONS(201), [aux_sym__inline_token1] = ACTIONS(11), [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__block_close] = ACTIONS(351), - [sym__newline] = ACTIONS(223), + [sym__block_close] = ACTIONS(353), + [sym__newline] = ACTIONS(341), [sym__heading_begin] = ACTIONS(17), [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(85), + [sym__code_block_begin] = ACTIONS(207), [sym_list_marker_dash] = ACTIONS(23), [sym_list_marker_star] = ACTIONS(25), [sym_list_marker_plus] = ACTIONS(27), @@ -6738,110 +6803,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(57), [sym_list_marker_lower_roman_parens] = ACTIONS(59), [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(87), - [sym__block_quote_continuation] = ACTIONS(225), - [sym__thematic_break_dash] = ACTIONS(89), - [sym__thematic_break_star] = ACTIONS(89), - [sym__footnote_begin] = ACTIONS(91), + [sym__block_quote_begin] = ACTIONS(209), + [sym__block_quote_continuation] = ACTIONS(343), + [sym__thematic_break_dash] = ACTIONS(211), + [sym__thematic_break_star] = ACTIONS(211), + [sym__footnote_begin] = ACTIONS(213), }, [21] = { - [sym__block_with_heading] = STATE(221), - [sym__block_element] = STATE(221), - [sym_heading] = STATE(221), - [sym_list] = STATE(221), - [sym__list_dash] = STATE(254), - [sym__list_item_dash] = STATE(391), - [sym__list_plus] = STATE(254), - [sym__list_item_plus] = STATE(390), - [sym__list_star] = STATE(254), - [sym__list_item_star] = STATE(389), - [sym__list_task] = STATE(254), - [sym__list_item_task] = STATE(340), - [sym_list_marker_task] = STATE(37), - [sym__list_definition] = STATE(254), - [sym__list_item_definition] = STATE(517), - [sym__list_decimal_period] = STATE(254), - [sym__list_item_decimal_period] = STATE(515), - [sym__list_decimal_paren] = STATE(254), - [sym__list_item_decimal_paren] = STATE(493), - [sym__list_decimal_parens] = STATE(254), - [sym__list_item_decimal_parens] = STATE(490), - [sym__list_lower_alpha_period] = STATE(254), - [sym__list_item_lower_alpha_period] = STATE(486), - [sym__list_lower_alpha_paren] = STATE(254), - [sym__list_item_lower_alpha_paren] = STATE(485), - [sym__list_lower_alpha_parens] = STATE(254), - [sym__list_item_lower_alpha_parens] = STATE(483), - [sym__list_upper_alpha_period] = STATE(254), - [sym__list_item_upper_alpha_period] = STATE(482), - [sym__list_upper_alpha_paren] = STATE(254), - [sym__list_item_upper_alpha_paren] = STATE(481), - [sym__list_upper_alpha_parens] = STATE(254), - [sym__list_item_upper_alpha_parens] = STATE(480), - [sym__list_lower_roman_period] = STATE(254), - [sym__list_item_lower_roman_period] = STATE(479), - [sym__list_lower_roman_paren] = STATE(254), - [sym__list_item_lower_roman_paren] = STATE(476), - [sym__list_lower_roman_parens] = STATE(254), - [sym__list_item_lower_roman_parens] = STATE(475), - [sym__list_upper_roman_period] = STATE(254), - [sym__list_item_upper_roman_period] = STATE(472), - [sym__list_upper_roman_paren] = STATE(254), - [sym__list_item_upper_roman_paren] = STATE(513), - [sym__list_upper_roman_parens] = STATE(254), - [sym__list_item_upper_roman_parens] = STATE(507), - [sym_table] = STATE(221), - [sym__table_content] = STATE(62), - [sym_table_separator] = STATE(62), - [sym_table_row] = STATE(68), - [sym_footnote] = STATE(221), - [sym_div] = STATE(221), - [sym_div_marker_begin] = STATE(956), - [sym_code_block] = STATE(221), - [sym_raw_block] = STATE(221), - [sym_thematic_break] = STATE(221), - [sym_block_quote] = STATE(221), - [sym__block_quote_prefix] = STATE(363), - [sym_link_reference_definition] = STATE(221), - [sym_block_attribute] = STATE(221), - [sym__paragraph] = STATE(221), - [sym__paragraph_content] = STATE(774), - [sym__inline] = STATE(683), - [sym__symbol_fallback] = STATE(329), - [aux_sym__list_dash_repeat1] = STATE(391), - [aux_sym__list_plus_repeat1] = STATE(390), - [aux_sym__list_star_repeat1] = STATE(389), - [aux_sym__list_task_repeat1] = STATE(340), - [aux_sym__list_definition_repeat1] = STATE(517), - [aux_sym__list_decimal_period_repeat1] = STATE(515), - [aux_sym__list_decimal_paren_repeat1] = STATE(493), - [aux_sym__list_decimal_parens_repeat1] = STATE(490), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(486), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(485), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(483), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(482), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(481), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(480), - [aux_sym__list_lower_roman_period_repeat1] = STATE(479), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(476), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(475), - [aux_sym__list_upper_roman_period_repeat1] = STATE(472), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(513), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(507), - [aux_sym_table_repeat1] = STATE(62), - [aux_sym_footnote_content_repeat1] = STATE(23), - [aux_sym__block_quote_prefix_repeat1] = STATE(349), - [aux_sym__inline_repeat1] = STATE(329), - [anon_sym_LBRACK] = ACTIONS(75), - [anon_sym_PIPE] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), + [sym__block_with_heading] = STATE(265), + [sym__block_element] = STATE(265), + [sym_heading] = STATE(265), + [sym_list] = STATE(265), + [sym__list_dash] = STATE(234), + [sym__list_item_dash] = STATE(415), + [sym__list_plus] = STATE(234), + [sym__list_item_plus] = STATE(395), + [sym__list_star] = STATE(234), + [sym__list_item_star] = STATE(409), + [sym__list_task] = STATE(234), + [sym__list_item_task] = STATE(389), + [sym_list_marker_task] = STATE(38), + [sym__list_definition] = STATE(234), + [sym__list_item_definition] = STATE(531), + [sym__list_decimal_period] = STATE(234), + [sym__list_item_decimal_period] = STATE(530), + [sym__list_decimal_paren] = STATE(234), + [sym__list_item_decimal_paren] = STATE(529), + [sym__list_decimal_parens] = STATE(234), + [sym__list_item_decimal_parens] = STATE(527), + [sym__list_lower_alpha_period] = STATE(234), + [sym__list_item_lower_alpha_period] = STATE(526), + [sym__list_lower_alpha_paren] = STATE(234), + [sym__list_item_lower_alpha_paren] = STATE(525), + [sym__list_lower_alpha_parens] = STATE(234), + [sym__list_item_lower_alpha_parens] = STATE(524), + [sym__list_upper_alpha_period] = STATE(234), + [sym__list_item_upper_alpha_period] = STATE(523), + [sym__list_upper_alpha_paren] = STATE(234), + [sym__list_item_upper_alpha_paren] = STATE(522), + [sym__list_upper_alpha_parens] = STATE(234), + [sym__list_item_upper_alpha_parens] = STATE(521), + [sym__list_lower_roman_period] = STATE(234), + [sym__list_item_lower_roman_period] = STATE(520), + [sym__list_lower_roman_paren] = STATE(234), + [sym__list_item_lower_roman_paren] = STATE(519), + [sym__list_lower_roman_parens] = STATE(234), + [sym__list_item_lower_roman_parens] = STATE(518), + [sym__list_upper_roman_period] = STATE(234), + [sym__list_item_upper_roman_period] = STATE(517), + [sym__list_upper_roman_paren] = STATE(234), + [sym__list_item_upper_roman_paren] = STATE(516), + [sym__list_upper_roman_parens] = STATE(234), + [sym__list_item_upper_roman_parens] = STATE(515), + [sym_table] = STATE(265), + [sym__table_content] = STATE(65), + [sym_table_separator] = STATE(65), + [sym_table_row] = STATE(71), + [sym_footnote] = STATE(265), + [sym_footnote_content] = STATE(903), + [sym_div] = STATE(265), + [sym_div_marker_begin] = STATE(1006), + [sym_code_block] = STATE(265), + [sym_raw_block] = STATE(265), + [sym_thematic_break] = STATE(265), + [sym_block_quote] = STATE(265), + [sym__block_quote_prefix] = STATE(285), + [sym_link_reference_definition] = STATE(265), + [sym_block_attribute] = STATE(265), + [sym__paragraph] = STATE(265), + [sym__paragraph_content] = STATE(856), + [sym__inline] = STATE(703), + [sym__symbol_fallback] = STATE(366), + [aux_sym__list_dash_repeat1] = STATE(415), + [aux_sym__list_plus_repeat1] = STATE(395), + [aux_sym__list_star_repeat1] = STATE(409), + [aux_sym__list_task_repeat1] = STATE(389), + [aux_sym__list_definition_repeat1] = STATE(531), + [aux_sym__list_decimal_period_repeat1] = STATE(530), + [aux_sym__list_decimal_paren_repeat1] = STATE(529), + [aux_sym__list_decimal_parens_repeat1] = STATE(527), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(526), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(525), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(524), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(523), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(522), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(521), + [aux_sym__list_lower_roman_period_repeat1] = STATE(520), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(519), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(518), + [aux_sym__list_upper_roman_period_repeat1] = STATE(517), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(516), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(515), + [aux_sym_table_repeat1] = STATE(65), + [aux_sym_footnote_content_repeat1] = STATE(15), + [aux_sym__block_quote_prefix_repeat1] = STATE(323), + [aux_sym__inline_repeat1] = STATE(366), + [anon_sym_LBRACK] = ACTIONS(221), + [anon_sym_PIPE] = ACTIONS(223), + [anon_sym_LBRACE] = ACTIONS(225), [aux_sym__inline_token1] = ACTIONS(11), [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__block_close] = ACTIONS(353), - [sym__newline] = ACTIONS(223), - [sym__heading_begin] = ACTIONS(17), + [sym__newline] = ACTIONS(227), + [sym__heading_begin] = ACTIONS(229), [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(85), + [sym__code_block_begin] = ACTIONS(231), [sym_list_marker_dash] = ACTIONS(23), [sym_list_marker_star] = ACTIONS(25), [sym_list_marker_plus] = ACTIONS(27), @@ -6862,110 +6927,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(57), [sym_list_marker_lower_roman_parens] = ACTIONS(59), [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(87), - [sym__block_quote_continuation] = ACTIONS(225), - [sym__thematic_break_dash] = ACTIONS(89), - [sym__thematic_break_star] = ACTIONS(89), - [sym__footnote_begin] = ACTIONS(91), + [sym__block_quote_begin] = ACTIONS(233), + [sym__block_quote_continuation] = ACTIONS(235), + [sym__thematic_break_dash] = ACTIONS(237), + [sym__thematic_break_star] = ACTIONS(237), + [sym__footnote_begin] = ACTIONS(239), }, [22] = { - [sym__block_with_heading] = STATE(136), - [sym__block_element] = STATE(136), - [sym_heading] = STATE(136), - [sym_list] = STATE(136), - [sym__list_dash] = STATE(200), - [sym__list_item_dash] = STATE(382), - [sym__list_plus] = STATE(200), - [sym__list_item_plus] = STATE(383), - [sym__list_star] = STATE(200), - [sym__list_item_star] = STATE(385), - [sym__list_task] = STATE(200), - [sym__list_item_task] = STATE(341), - [sym_list_marker_task] = STATE(37), - [sym__list_definition] = STATE(200), - [sym__list_item_definition] = STATE(494), - [sym__list_decimal_period] = STATE(200), - [sym__list_item_decimal_period] = STATE(477), - [sym__list_decimal_paren] = STATE(200), - [sym__list_item_decimal_paren] = STATE(508), - [sym__list_decimal_parens] = STATE(200), - [sym__list_item_decimal_parens] = STATE(519), - [sym__list_lower_alpha_period] = STATE(200), - [sym__list_item_lower_alpha_period] = STATE(520), - [sym__list_lower_alpha_paren] = STATE(200), - [sym__list_item_lower_alpha_paren] = STATE(521), - [sym__list_lower_alpha_parens] = STATE(200), - [sym__list_item_lower_alpha_parens] = STATE(523), - [sym__list_upper_alpha_period] = STATE(200), - [sym__list_item_upper_alpha_period] = STATE(524), - [sym__list_upper_alpha_paren] = STATE(200), - [sym__list_item_upper_alpha_paren] = STATE(527), - [sym__list_upper_alpha_parens] = STATE(200), - [sym__list_item_upper_alpha_parens] = STATE(528), - [sym__list_lower_roman_period] = STATE(200), - [sym__list_item_lower_roman_period] = STATE(529), - [sym__list_lower_roman_paren] = STATE(200), - [sym__list_item_lower_roman_paren] = STATE(530), - [sym__list_lower_roman_parens] = STATE(200), - [sym__list_item_lower_roman_parens] = STATE(532), - [sym__list_upper_roman_period] = STATE(200), - [sym__list_item_upper_roman_period] = STATE(539), - [sym__list_upper_roman_paren] = STATE(200), - [sym__list_item_upper_roman_paren] = STATE(470), - [sym__list_upper_roman_parens] = STATE(200), - [sym__list_item_upper_roman_parens] = STATE(510), - [sym_table] = STATE(136), - [sym__table_content] = STATE(60), - [sym_table_separator] = STATE(60), - [sym_table_row] = STATE(67), - [sym_footnote] = STATE(136), - [sym_footnote_content] = STATE(925), - [sym_div] = STATE(136), - [sym_div_marker_begin] = STATE(976), - [sym_code_block] = STATE(136), - [sym_raw_block] = STATE(136), - [sym_thematic_break] = STATE(136), - [sym_block_quote] = STATE(136), - [sym__block_quote_prefix] = STATE(445), - [sym_link_reference_definition] = STATE(136), - [sym_block_attribute] = STATE(136), - [sym__paragraph] = STATE(136), - [sym__paragraph_content] = STATE(829), - [sym__inline] = STATE(683), - [sym__symbol_fallback] = STATE(329), - [aux_sym__list_dash_repeat1] = STATE(382), - [aux_sym__list_plus_repeat1] = STATE(383), - [aux_sym__list_star_repeat1] = STATE(385), - [aux_sym__list_task_repeat1] = STATE(341), - [aux_sym__list_definition_repeat1] = STATE(494), - [aux_sym__list_decimal_period_repeat1] = STATE(477), - [aux_sym__list_decimal_paren_repeat1] = STATE(508), - [aux_sym__list_decimal_parens_repeat1] = STATE(519), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(520), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(521), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(523), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(524), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(527), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(528), - [aux_sym__list_lower_roman_period_repeat1] = STATE(529), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(530), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(532), - [aux_sym__list_upper_roman_period_repeat1] = STATE(539), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(470), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(510), - [aux_sym_table_repeat1] = STATE(60), - [aux_sym_footnote_content_repeat1] = STATE(17), - [aux_sym__block_quote_prefix_repeat1] = STATE(397), - [aux_sym__inline_repeat1] = STATE(329), - [anon_sym_LBRACK] = ACTIONS(227), - [anon_sym_PIPE] = ACTIONS(229), - [anon_sym_LBRACE] = ACTIONS(231), + [sym__block_with_heading] = STATE(226), + [sym__block_element] = STATE(226), + [sym_heading] = STATE(226), + [sym_list] = STATE(226), + [sym__list_dash] = STATE(141), + [sym__list_item_dash] = STATE(416), + [sym__list_plus] = STATE(141), + [sym__list_item_plus] = STATE(419), + [sym__list_star] = STATE(141), + [sym__list_item_star] = STATE(407), + [sym__list_task] = STATE(141), + [sym__list_item_task] = STATE(371), + [sym_list_marker_task] = STATE(38), + [sym__list_definition] = STATE(141), + [sym__list_item_definition] = STATE(549), + [sym__list_decimal_period] = STATE(141), + [sym__list_item_decimal_period] = STATE(548), + [sym__list_decimal_paren] = STATE(141), + [sym__list_item_decimal_paren] = STATE(547), + [sym__list_decimal_parens] = STATE(141), + [sym__list_item_decimal_parens] = STATE(546), + [sym__list_lower_alpha_period] = STATE(141), + [sym__list_item_lower_alpha_period] = STATE(545), + [sym__list_lower_alpha_paren] = STATE(141), + [sym__list_item_lower_alpha_paren] = STATE(544), + [sym__list_lower_alpha_parens] = STATE(141), + [sym__list_item_lower_alpha_parens] = STATE(543), + [sym__list_upper_alpha_period] = STATE(141), + [sym__list_item_upper_alpha_period] = STATE(542), + [sym__list_upper_alpha_paren] = STATE(141), + [sym__list_item_upper_alpha_paren] = STATE(541), + [sym__list_upper_alpha_parens] = STATE(141), + [sym__list_item_upper_alpha_parens] = STATE(540), + [sym__list_lower_roman_period] = STATE(141), + [sym__list_item_lower_roman_period] = STATE(539), + [sym__list_lower_roman_paren] = STATE(141), + [sym__list_item_lower_roman_paren] = STATE(538), + [sym__list_lower_roman_parens] = STATE(141), + [sym__list_item_lower_roman_parens] = STATE(537), + [sym__list_upper_roman_period] = STATE(141), + [sym__list_item_upper_roman_period] = STATE(536), + [sym__list_upper_roman_paren] = STATE(141), + [sym__list_item_upper_roman_paren] = STATE(535), + [sym__list_upper_roman_parens] = STATE(141), + [sym__list_item_upper_roman_parens] = STATE(534), + [sym_table] = STATE(226), + [sym__table_content] = STATE(66), + [sym_table_separator] = STATE(66), + [sym_table_row] = STATE(72), + [sym_footnote] = STATE(226), + [sym_div] = STATE(226), + [sym_div_marker_begin] = STATE(985), + [sym_code_block] = STATE(226), + [sym_raw_block] = STATE(226), + [sym_thematic_break] = STATE(226), + [sym_block_quote] = STATE(226), + [sym__block_quote_prefix] = STATE(277), + [sym_link_reference_definition] = STATE(226), + [sym_block_attribute] = STATE(226), + [sym__paragraph] = STATE(226), + [sym__paragraph_content] = STATE(801), + [sym__inline] = STATE(703), + [sym__symbol_fallback] = STATE(366), + [aux_sym__list_dash_repeat1] = STATE(416), + [aux_sym__list_plus_repeat1] = STATE(419), + [aux_sym__list_star_repeat1] = STATE(407), + [aux_sym__list_task_repeat1] = STATE(371), + [aux_sym__list_definition_repeat1] = STATE(549), + [aux_sym__list_decimal_period_repeat1] = STATE(548), + [aux_sym__list_decimal_paren_repeat1] = STATE(547), + [aux_sym__list_decimal_parens_repeat1] = STATE(546), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(545), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(544), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(543), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(542), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(541), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(540), + [aux_sym__list_lower_roman_period_repeat1] = STATE(539), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(538), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(537), + [aux_sym__list_upper_roman_period_repeat1] = STATE(536), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(535), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(534), + [aux_sym_table_repeat1] = STATE(66), + [aux_sym_footnote_content_repeat1] = STATE(12), + [aux_sym__block_quote_prefix_repeat1] = STATE(307), + [aux_sym__inline_repeat1] = STATE(366), + [anon_sym_LBRACK] = ACTIONS(197), + [anon_sym_PIPE] = ACTIONS(199), + [anon_sym_LBRACE] = ACTIONS(201), [aux_sym__inline_token1] = ACTIONS(11), [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__newline] = ACTIONS(233), - [sym__heading_begin] = ACTIONS(235), + [sym__block_close] = ACTIONS(355), + [sym__newline] = ACTIONS(341), + [sym__heading_begin] = ACTIONS(17), [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(237), + [sym__code_block_begin] = ACTIONS(207), [sym_list_marker_dash] = ACTIONS(23), [sym_list_marker_star] = ACTIONS(25), [sym_list_marker_plus] = ACTIONS(27), @@ -6986,110 +7051,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(57), [sym_list_marker_lower_roman_parens] = ACTIONS(59), [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(239), - [sym__block_quote_continuation] = ACTIONS(65), - [sym__thematic_break_dash] = ACTIONS(241), - [sym__thematic_break_star] = ACTIONS(241), - [sym__footnote_begin] = ACTIONS(243), + [sym__block_quote_begin] = ACTIONS(209), + [sym__block_quote_continuation] = ACTIONS(343), + [sym__thematic_break_dash] = ACTIONS(211), + [sym__thematic_break_star] = ACTIONS(211), + [sym__footnote_begin] = ACTIONS(213), }, [23] = { - [sym__block_with_heading] = STATE(221), - [sym__block_element] = STATE(221), - [sym_heading] = STATE(221), - [sym_list] = STATE(221), - [sym__list_dash] = STATE(254), - [sym__list_item_dash] = STATE(391), - [sym__list_plus] = STATE(254), - [sym__list_item_plus] = STATE(390), - [sym__list_star] = STATE(254), - [sym__list_item_star] = STATE(389), - [sym__list_task] = STATE(254), - [sym__list_item_task] = STATE(340), - [sym_list_marker_task] = STATE(37), - [sym__list_definition] = STATE(254), - [sym__list_item_definition] = STATE(517), - [sym__list_decimal_period] = STATE(254), - [sym__list_item_decimal_period] = STATE(515), - [sym__list_decimal_paren] = STATE(254), - [sym__list_item_decimal_paren] = STATE(493), - [sym__list_decimal_parens] = STATE(254), - [sym__list_item_decimal_parens] = STATE(490), - [sym__list_lower_alpha_period] = STATE(254), - [sym__list_item_lower_alpha_period] = STATE(486), - [sym__list_lower_alpha_paren] = STATE(254), - [sym__list_item_lower_alpha_paren] = STATE(485), - [sym__list_lower_alpha_parens] = STATE(254), - [sym__list_item_lower_alpha_parens] = STATE(483), - [sym__list_upper_alpha_period] = STATE(254), - [sym__list_item_upper_alpha_period] = STATE(482), - [sym__list_upper_alpha_paren] = STATE(254), - [sym__list_item_upper_alpha_paren] = STATE(481), - [sym__list_upper_alpha_parens] = STATE(254), - [sym__list_item_upper_alpha_parens] = STATE(480), - [sym__list_lower_roman_period] = STATE(254), - [sym__list_item_lower_roman_period] = STATE(479), - [sym__list_lower_roman_paren] = STATE(254), - [sym__list_item_lower_roman_paren] = STATE(476), - [sym__list_lower_roman_parens] = STATE(254), - [sym__list_item_lower_roman_parens] = STATE(475), - [sym__list_upper_roman_period] = STATE(254), - [sym__list_item_upper_roman_period] = STATE(472), - [sym__list_upper_roman_paren] = STATE(254), - [sym__list_item_upper_roman_paren] = STATE(513), - [sym__list_upper_roman_parens] = STATE(254), - [sym__list_item_upper_roman_parens] = STATE(507), - [sym_table] = STATE(221), - [sym__table_content] = STATE(62), - [sym_table_separator] = STATE(62), - [sym_table_row] = STATE(68), - [sym_footnote] = STATE(221), - [sym_div] = STATE(221), - [sym_div_marker_begin] = STATE(956), - [sym_code_block] = STATE(221), - [sym_raw_block] = STATE(221), - [sym_thematic_break] = STATE(221), - [sym_block_quote] = STATE(221), - [sym__block_quote_prefix] = STATE(393), - [sym_link_reference_definition] = STATE(221), - [sym_block_attribute] = STATE(221), - [sym__paragraph] = STATE(221), - [sym__paragraph_content] = STATE(774), - [sym__inline] = STATE(683), - [sym__symbol_fallback] = STATE(329), - [aux_sym__list_dash_repeat1] = STATE(391), - [aux_sym__list_plus_repeat1] = STATE(390), - [aux_sym__list_star_repeat1] = STATE(389), - [aux_sym__list_task_repeat1] = STATE(340), - [aux_sym__list_definition_repeat1] = STATE(517), - [aux_sym__list_decimal_period_repeat1] = STATE(515), - [aux_sym__list_decimal_paren_repeat1] = STATE(493), - [aux_sym__list_decimal_parens_repeat1] = STATE(490), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(486), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(485), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(483), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(482), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(481), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(480), - [aux_sym__list_lower_roman_period_repeat1] = STATE(479), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(476), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(475), - [aux_sym__list_upper_roman_period_repeat1] = STATE(472), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(513), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(507), - [aux_sym_table_repeat1] = STATE(62), - [aux_sym_footnote_content_repeat1] = STATE(18), - [aux_sym__block_quote_prefix_repeat1] = STATE(349), - [aux_sym__inline_repeat1] = STATE(329), - [anon_sym_LBRACK] = ACTIONS(75), - [anon_sym_PIPE] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), + [sym__block_with_heading] = STATE(226), + [sym__block_element] = STATE(226), + [sym_heading] = STATE(226), + [sym_list] = STATE(226), + [sym__list_dash] = STATE(141), + [sym__list_item_dash] = STATE(416), + [sym__list_plus] = STATE(141), + [sym__list_item_plus] = STATE(419), + [sym__list_star] = STATE(141), + [sym__list_item_star] = STATE(407), + [sym__list_task] = STATE(141), + [sym__list_item_task] = STATE(371), + [sym_list_marker_task] = STATE(38), + [sym__list_definition] = STATE(141), + [sym__list_item_definition] = STATE(549), + [sym__list_decimal_period] = STATE(141), + [sym__list_item_decimal_period] = STATE(548), + [sym__list_decimal_paren] = STATE(141), + [sym__list_item_decimal_paren] = STATE(547), + [sym__list_decimal_parens] = STATE(141), + [sym__list_item_decimal_parens] = STATE(546), + [sym__list_lower_alpha_period] = STATE(141), + [sym__list_item_lower_alpha_period] = STATE(545), + [sym__list_lower_alpha_paren] = STATE(141), + [sym__list_item_lower_alpha_paren] = STATE(544), + [sym__list_lower_alpha_parens] = STATE(141), + [sym__list_item_lower_alpha_parens] = STATE(543), + [sym__list_upper_alpha_period] = STATE(141), + [sym__list_item_upper_alpha_period] = STATE(542), + [sym__list_upper_alpha_paren] = STATE(141), + [sym__list_item_upper_alpha_paren] = STATE(541), + [sym__list_upper_alpha_parens] = STATE(141), + [sym__list_item_upper_alpha_parens] = STATE(540), + [sym__list_lower_roman_period] = STATE(141), + [sym__list_item_lower_roman_period] = STATE(539), + [sym__list_lower_roman_paren] = STATE(141), + [sym__list_item_lower_roman_paren] = STATE(538), + [sym__list_lower_roman_parens] = STATE(141), + [sym__list_item_lower_roman_parens] = STATE(537), + [sym__list_upper_roman_period] = STATE(141), + [sym__list_item_upper_roman_period] = STATE(536), + [sym__list_upper_roman_paren] = STATE(141), + [sym__list_item_upper_roman_paren] = STATE(535), + [sym__list_upper_roman_parens] = STATE(141), + [sym__list_item_upper_roman_parens] = STATE(534), + [sym_table] = STATE(226), + [sym__table_content] = STATE(66), + [sym_table_separator] = STATE(66), + [sym_table_row] = STATE(72), + [sym_footnote] = STATE(226), + [sym_div] = STATE(226), + [sym_div_marker_begin] = STATE(985), + [sym_code_block] = STATE(226), + [sym_raw_block] = STATE(226), + [sym_thematic_break] = STATE(226), + [sym_block_quote] = STATE(226), + [sym__block_quote_prefix] = STATE(283), + [sym_link_reference_definition] = STATE(226), + [sym_block_attribute] = STATE(226), + [sym__paragraph] = STATE(226), + [sym__paragraph_content] = STATE(801), + [sym__inline] = STATE(703), + [sym__symbol_fallback] = STATE(366), + [aux_sym__list_dash_repeat1] = STATE(416), + [aux_sym__list_plus_repeat1] = STATE(419), + [aux_sym__list_star_repeat1] = STATE(407), + [aux_sym__list_task_repeat1] = STATE(371), + [aux_sym__list_definition_repeat1] = STATE(549), + [aux_sym__list_decimal_period_repeat1] = STATE(548), + [aux_sym__list_decimal_paren_repeat1] = STATE(547), + [aux_sym__list_decimal_parens_repeat1] = STATE(546), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(545), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(544), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(543), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(542), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(541), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(540), + [aux_sym__list_lower_roman_period_repeat1] = STATE(539), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(538), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(537), + [aux_sym__list_upper_roman_period_repeat1] = STATE(536), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(535), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(534), + [aux_sym_table_repeat1] = STATE(66), + [aux_sym_footnote_content_repeat1] = STATE(24), + [aux_sym__block_quote_prefix_repeat1] = STATE(307), + [aux_sym__inline_repeat1] = STATE(366), + [anon_sym_LBRACK] = ACTIONS(197), + [anon_sym_PIPE] = ACTIONS(199), + [anon_sym_LBRACE] = ACTIONS(201), [aux_sym__inline_token1] = ACTIONS(11), [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__block_close] = ACTIONS(355), - [sym__newline] = ACTIONS(223), + [sym__block_close] = ACTIONS(357), + [sym__newline] = ACTIONS(341), [sym__heading_begin] = ACTIONS(17), [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(85), + [sym__code_block_begin] = ACTIONS(207), [sym_list_marker_dash] = ACTIONS(23), [sym_list_marker_star] = ACTIONS(25), [sym_list_marker_plus] = ACTIONS(27), @@ -7110,234 +7175,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(57), [sym_list_marker_lower_roman_parens] = ACTIONS(59), [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(87), - [sym__block_quote_continuation] = ACTIONS(225), - [sym__thematic_break_dash] = ACTIONS(89), - [sym__thematic_break_star] = ACTIONS(89), - [sym__footnote_begin] = ACTIONS(91), + [sym__block_quote_begin] = ACTIONS(209), + [sym__block_quote_continuation] = ACTIONS(343), + [sym__thematic_break_dash] = ACTIONS(211), + [sym__thematic_break_star] = ACTIONS(211), + [sym__footnote_begin] = ACTIONS(213), }, [24] = { - [sym__block_with_heading] = STATE(136), - [sym__block_element] = STATE(136), - [sym_heading] = STATE(136), - [sym_list] = STATE(136), - [sym__list_dash] = STATE(200), - [sym__list_item_dash] = STATE(382), - [sym__list_plus] = STATE(200), - [sym__list_item_plus] = STATE(383), - [sym__list_star] = STATE(200), - [sym__list_item_star] = STATE(385), - [sym__list_task] = STATE(200), - [sym__list_item_task] = STATE(341), - [sym_list_marker_task] = STATE(37), - [sym__list_definition] = STATE(200), - [sym__list_item_definition] = STATE(494), - [sym__list_decimal_period] = STATE(200), - [sym__list_item_decimal_period] = STATE(477), - [sym__list_decimal_paren] = STATE(200), - [sym__list_item_decimal_paren] = STATE(508), - [sym__list_decimal_parens] = STATE(200), - [sym__list_item_decimal_parens] = STATE(519), - [sym__list_lower_alpha_period] = STATE(200), - [sym__list_item_lower_alpha_period] = STATE(520), - [sym__list_lower_alpha_paren] = STATE(200), - [sym__list_item_lower_alpha_paren] = STATE(521), - [sym__list_lower_alpha_parens] = STATE(200), - [sym__list_item_lower_alpha_parens] = STATE(523), - [sym__list_upper_alpha_period] = STATE(200), - [sym__list_item_upper_alpha_period] = STATE(524), - [sym__list_upper_alpha_paren] = STATE(200), - [sym__list_item_upper_alpha_paren] = STATE(527), - [sym__list_upper_alpha_parens] = STATE(200), - [sym__list_item_upper_alpha_parens] = STATE(528), - [sym__list_lower_roman_period] = STATE(200), - [sym__list_item_lower_roman_period] = STATE(529), - [sym__list_lower_roman_paren] = STATE(200), - [sym__list_item_lower_roman_paren] = STATE(530), - [sym__list_lower_roman_parens] = STATE(200), - [sym__list_item_lower_roman_parens] = STATE(532), - [sym__list_upper_roman_period] = STATE(200), - [sym__list_item_upper_roman_period] = STATE(539), - [sym__list_upper_roman_paren] = STATE(200), - [sym__list_item_upper_roman_paren] = STATE(470), - [sym__list_upper_roman_parens] = STATE(200), - [sym__list_item_upper_roman_parens] = STATE(510), - [sym_table] = STATE(136), - [sym__table_content] = STATE(60), - [sym_table_separator] = STATE(60), - [sym_table_row] = STATE(67), - [sym_footnote] = STATE(136), - [sym_div] = STATE(136), - [sym_div_marker_begin] = STATE(976), - [sym_code_block] = STATE(136), - [sym_raw_block] = STATE(136), - [sym_thematic_break] = STATE(136), - [sym_block_quote] = STATE(136), - [sym__block_quote_prefix] = STATE(445), - [sym_link_reference_definition] = STATE(136), - [sym_block_attribute] = STATE(136), - [sym__paragraph] = STATE(136), - [sym__paragraph_content] = STATE(829), - [sym__inline] = STATE(683), - [sym__symbol_fallback] = STATE(329), - [aux_sym__list_dash_repeat1] = STATE(382), - [aux_sym__list_plus_repeat1] = STATE(383), - [aux_sym__list_star_repeat1] = STATE(385), - [aux_sym__list_task_repeat1] = STATE(341), - [aux_sym__list_definition_repeat1] = STATE(494), - [aux_sym__list_decimal_period_repeat1] = STATE(477), - [aux_sym__list_decimal_paren_repeat1] = STATE(508), - [aux_sym__list_decimal_parens_repeat1] = STATE(519), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(520), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(521), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(523), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(524), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(527), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(528), - [aux_sym__list_lower_roman_period_repeat1] = STATE(529), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(530), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(532), - [aux_sym__list_upper_roman_period_repeat1] = STATE(539), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(470), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(510), - [aux_sym_table_repeat1] = STATE(60), - [aux_sym_footnote_content_repeat1] = STATE(24), - [aux_sym__block_quote_prefix_repeat1] = STATE(397), - [aux_sym__inline_repeat1] = STATE(329), - [anon_sym_LBRACK] = ACTIONS(357), - [anon_sym_PIPE] = ACTIONS(360), - [anon_sym_LBRACE] = ACTIONS(363), - [aux_sym__inline_token1] = ACTIONS(260), - [anon_sym_LBRACE_DASH] = ACTIONS(260), - [sym__newline] = ACTIONS(366), - [sym__heading_begin] = ACTIONS(369), - [sym__div_begin] = ACTIONS(271), - [sym__code_block_begin] = ACTIONS(372), - [sym_list_marker_dash] = ACTIONS(277), - [sym_list_marker_star] = ACTIONS(280), - [sym_list_marker_plus] = ACTIONS(283), - [sym__list_marker_task_begin] = ACTIONS(286), - [sym_list_marker_definition] = ACTIONS(289), - [sym_list_marker_decimal_period] = ACTIONS(292), - [sym_list_marker_lower_alpha_period] = ACTIONS(295), - [sym_list_marker_upper_alpha_period] = ACTIONS(298), - [sym_list_marker_lower_roman_period] = ACTIONS(301), - [sym_list_marker_upper_roman_period] = ACTIONS(304), - [sym_list_marker_decimal_paren] = ACTIONS(307), - [sym_list_marker_lower_alpha_paren] = ACTIONS(310), - [sym_list_marker_upper_alpha_paren] = ACTIONS(313), - [sym_list_marker_lower_roman_paren] = ACTIONS(316), - [sym_list_marker_upper_roman_paren] = ACTIONS(319), - [sym_list_marker_decimal_parens] = ACTIONS(322), - [sym_list_marker_lower_alpha_parens] = ACTIONS(325), - [sym_list_marker_upper_alpha_parens] = ACTIONS(328), - [sym_list_marker_lower_roman_parens] = ACTIONS(331), - [sym_list_marker_upper_roman_parens] = ACTIONS(334), - [sym__block_quote_begin] = ACTIONS(375), - [sym__block_quote_continuation] = ACTIONS(340), - [sym__thematic_break_dash] = ACTIONS(378), - [sym__thematic_break_star] = ACTIONS(378), - [sym__footnote_begin] = ACTIONS(381), - [sym__footnote_end] = ACTIONS(263), - }, - [25] = { - [sym__block_with_heading] = STATE(221), - [sym__block_element] = STATE(221), - [sym_heading] = STATE(221), - [sym_list] = STATE(221), - [sym__list_dash] = STATE(254), - [sym__list_item_dash] = STATE(391), - [sym__list_plus] = STATE(254), - [sym__list_item_plus] = STATE(390), - [sym__list_star] = STATE(254), - [sym__list_item_star] = STATE(389), - [sym__list_task] = STATE(254), - [sym__list_item_task] = STATE(340), - [sym_list_marker_task] = STATE(37), - [sym__list_definition] = STATE(254), - [sym__list_item_definition] = STATE(517), - [sym__list_decimal_period] = STATE(254), - [sym__list_item_decimal_period] = STATE(515), - [sym__list_decimal_paren] = STATE(254), - [sym__list_item_decimal_paren] = STATE(493), - [sym__list_decimal_parens] = STATE(254), - [sym__list_item_decimal_parens] = STATE(490), - [sym__list_lower_alpha_period] = STATE(254), - [sym__list_item_lower_alpha_period] = STATE(486), - [sym__list_lower_alpha_paren] = STATE(254), - [sym__list_item_lower_alpha_paren] = STATE(485), - [sym__list_lower_alpha_parens] = STATE(254), - [sym__list_item_lower_alpha_parens] = STATE(483), - [sym__list_upper_alpha_period] = STATE(254), - [sym__list_item_upper_alpha_period] = STATE(482), - [sym__list_upper_alpha_paren] = STATE(254), - [sym__list_item_upper_alpha_paren] = STATE(481), - [sym__list_upper_alpha_parens] = STATE(254), - [sym__list_item_upper_alpha_parens] = STATE(480), - [sym__list_lower_roman_period] = STATE(254), - [sym__list_item_lower_roman_period] = STATE(479), - [sym__list_lower_roman_paren] = STATE(254), - [sym__list_item_lower_roman_paren] = STATE(476), - [sym__list_lower_roman_parens] = STATE(254), - [sym__list_item_lower_roman_parens] = STATE(475), - [sym__list_upper_roman_period] = STATE(254), - [sym__list_item_upper_roman_period] = STATE(472), - [sym__list_upper_roman_paren] = STATE(254), - [sym__list_item_upper_roman_paren] = STATE(513), - [sym__list_upper_roman_parens] = STATE(254), - [sym__list_item_upper_roman_parens] = STATE(507), - [sym_table] = STATE(221), - [sym__table_content] = STATE(62), - [sym_table_separator] = STATE(62), - [sym_table_row] = STATE(68), - [sym_footnote] = STATE(221), - [sym_div] = STATE(221), - [sym_div_marker_begin] = STATE(956), - [sym_code_block] = STATE(221), - [sym_raw_block] = STATE(221), - [sym_thematic_break] = STATE(221), - [sym_block_quote] = STATE(221), - [sym__block_quote_prefix] = STATE(392), - [sym_link_reference_definition] = STATE(221), - [sym_block_attribute] = STATE(221), - [sym__paragraph] = STATE(221), - [sym__paragraph_content] = STATE(774), - [sym__inline] = STATE(683), - [sym__symbol_fallback] = STATE(329), - [aux_sym__list_dash_repeat1] = STATE(391), - [aux_sym__list_plus_repeat1] = STATE(390), - [aux_sym__list_star_repeat1] = STATE(389), - [aux_sym__list_task_repeat1] = STATE(340), - [aux_sym__list_definition_repeat1] = STATE(517), - [aux_sym__list_decimal_period_repeat1] = STATE(515), - [aux_sym__list_decimal_paren_repeat1] = STATE(493), - [aux_sym__list_decimal_parens_repeat1] = STATE(490), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(486), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(485), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(483), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(482), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(481), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(480), - [aux_sym__list_lower_roman_period_repeat1] = STATE(479), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(476), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(475), - [aux_sym__list_upper_roman_period_repeat1] = STATE(472), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(513), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(507), - [aux_sym_table_repeat1] = STATE(62), - [aux_sym_footnote_content_repeat1] = STATE(14), - [aux_sym__block_quote_prefix_repeat1] = STATE(349), - [aux_sym__inline_repeat1] = STATE(329), - [anon_sym_LBRACK] = ACTIONS(75), - [anon_sym_PIPE] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), + [sym__block_with_heading] = STATE(226), + [sym__block_element] = STATE(226), + [sym_heading] = STATE(226), + [sym_list] = STATE(226), + [sym__list_dash] = STATE(141), + [sym__list_item_dash] = STATE(416), + [sym__list_plus] = STATE(141), + [sym__list_item_plus] = STATE(419), + [sym__list_star] = STATE(141), + [sym__list_item_star] = STATE(407), + [sym__list_task] = STATE(141), + [sym__list_item_task] = STATE(371), + [sym_list_marker_task] = STATE(38), + [sym__list_definition] = STATE(141), + [sym__list_item_definition] = STATE(549), + [sym__list_decimal_period] = STATE(141), + [sym__list_item_decimal_period] = STATE(548), + [sym__list_decimal_paren] = STATE(141), + [sym__list_item_decimal_paren] = STATE(547), + [sym__list_decimal_parens] = STATE(141), + [sym__list_item_decimal_parens] = STATE(546), + [sym__list_lower_alpha_period] = STATE(141), + [sym__list_item_lower_alpha_period] = STATE(545), + [sym__list_lower_alpha_paren] = STATE(141), + [sym__list_item_lower_alpha_paren] = STATE(544), + [sym__list_lower_alpha_parens] = STATE(141), + [sym__list_item_lower_alpha_parens] = STATE(543), + [sym__list_upper_alpha_period] = STATE(141), + [sym__list_item_upper_alpha_period] = STATE(542), + [sym__list_upper_alpha_paren] = STATE(141), + [sym__list_item_upper_alpha_paren] = STATE(541), + [sym__list_upper_alpha_parens] = STATE(141), + [sym__list_item_upper_alpha_parens] = STATE(540), + [sym__list_lower_roman_period] = STATE(141), + [sym__list_item_lower_roman_period] = STATE(539), + [sym__list_lower_roman_paren] = STATE(141), + [sym__list_item_lower_roman_paren] = STATE(538), + [sym__list_lower_roman_parens] = STATE(141), + [sym__list_item_lower_roman_parens] = STATE(537), + [sym__list_upper_roman_period] = STATE(141), + [sym__list_item_upper_roman_period] = STATE(536), + [sym__list_upper_roman_paren] = STATE(141), + [sym__list_item_upper_roman_paren] = STATE(535), + [sym__list_upper_roman_parens] = STATE(141), + [sym__list_item_upper_roman_parens] = STATE(534), + [sym_table] = STATE(226), + [sym__table_content] = STATE(66), + [sym_table_separator] = STATE(66), + [sym_table_row] = STATE(72), + [sym_footnote] = STATE(226), + [sym_div] = STATE(226), + [sym_div_marker_begin] = STATE(985), + [sym_code_block] = STATE(226), + [sym_raw_block] = STATE(226), + [sym_thematic_break] = STATE(226), + [sym_block_quote] = STATE(226), + [sym__block_quote_prefix] = STATE(281), + [sym_link_reference_definition] = STATE(226), + [sym_block_attribute] = STATE(226), + [sym__paragraph] = STATE(226), + [sym__paragraph_content] = STATE(801), + [sym__inline] = STATE(703), + [sym__symbol_fallback] = STATE(366), + [aux_sym__list_dash_repeat1] = STATE(416), + [aux_sym__list_plus_repeat1] = STATE(419), + [aux_sym__list_star_repeat1] = STATE(407), + [aux_sym__list_task_repeat1] = STATE(371), + [aux_sym__list_definition_repeat1] = STATE(549), + [aux_sym__list_decimal_period_repeat1] = STATE(548), + [aux_sym__list_decimal_paren_repeat1] = STATE(547), + [aux_sym__list_decimal_parens_repeat1] = STATE(546), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(545), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(544), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(543), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(542), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(541), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(540), + [aux_sym__list_lower_roman_period_repeat1] = STATE(539), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(538), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(537), + [aux_sym__list_upper_roman_period_repeat1] = STATE(536), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(535), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(534), + [aux_sym_table_repeat1] = STATE(66), + [aux_sym_footnote_content_repeat1] = STATE(12), + [aux_sym__block_quote_prefix_repeat1] = STATE(307), + [aux_sym__inline_repeat1] = STATE(366), + [anon_sym_LBRACK] = ACTIONS(197), + [anon_sym_PIPE] = ACTIONS(199), + [anon_sym_LBRACE] = ACTIONS(201), [aux_sym__inline_token1] = ACTIONS(11), [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__block_close] = ACTIONS(384), - [sym__newline] = ACTIONS(223), + [sym__block_close] = ACTIONS(359), + [sym__newline] = ACTIONS(341), [sym__heading_begin] = ACTIONS(17), [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(85), + [sym__code_block_begin] = ACTIONS(207), [sym_list_marker_dash] = ACTIONS(23), [sym_list_marker_star] = ACTIONS(25), [sym_list_marker_plus] = ACTIONS(27), @@ -7358,110 +7299,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(57), [sym_list_marker_lower_roman_parens] = ACTIONS(59), [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(87), - [sym__block_quote_continuation] = ACTIONS(225), - [sym__thematic_break_dash] = ACTIONS(89), - [sym__thematic_break_star] = ACTIONS(89), - [sym__footnote_begin] = ACTIONS(91), + [sym__block_quote_begin] = ACTIONS(209), + [sym__block_quote_continuation] = ACTIONS(343), + [sym__thematic_break_dash] = ACTIONS(211), + [sym__thematic_break_star] = ACTIONS(211), + [sym__footnote_begin] = ACTIONS(213), }, - [26] = { - [sym__block_with_heading] = STATE(221), - [sym__block_element] = STATE(221), - [sym_heading] = STATE(221), - [sym_list] = STATE(221), - [sym__list_dash] = STATE(254), - [sym__list_item_dash] = STATE(391), - [sym__list_plus] = STATE(254), - [sym__list_item_plus] = STATE(390), - [sym__list_star] = STATE(254), - [sym__list_item_star] = STATE(389), - [sym__list_task] = STATE(254), - [sym__list_item_task] = STATE(340), - [sym_list_marker_task] = STATE(37), - [sym__list_definition] = STATE(254), - [sym__list_item_definition] = STATE(517), - [sym__list_decimal_period] = STATE(254), - [sym__list_item_decimal_period] = STATE(515), - [sym__list_decimal_paren] = STATE(254), - [sym__list_item_decimal_paren] = STATE(493), - [sym__list_decimal_parens] = STATE(254), - [sym__list_item_decimal_parens] = STATE(490), - [sym__list_lower_alpha_period] = STATE(254), - [sym__list_item_lower_alpha_period] = STATE(486), - [sym__list_lower_alpha_paren] = STATE(254), - [sym__list_item_lower_alpha_paren] = STATE(485), - [sym__list_lower_alpha_parens] = STATE(254), - [sym__list_item_lower_alpha_parens] = STATE(483), - [sym__list_upper_alpha_period] = STATE(254), - [sym__list_item_upper_alpha_period] = STATE(482), - [sym__list_upper_alpha_paren] = STATE(254), - [sym__list_item_upper_alpha_paren] = STATE(481), - [sym__list_upper_alpha_parens] = STATE(254), - [sym__list_item_upper_alpha_parens] = STATE(480), - [sym__list_lower_roman_period] = STATE(254), - [sym__list_item_lower_roman_period] = STATE(479), - [sym__list_lower_roman_paren] = STATE(254), - [sym__list_item_lower_roman_paren] = STATE(476), - [sym__list_lower_roman_parens] = STATE(254), - [sym__list_item_lower_roman_parens] = STATE(475), - [sym__list_upper_roman_period] = STATE(254), - [sym__list_item_upper_roman_period] = STATE(472), - [sym__list_upper_roman_paren] = STATE(254), - [sym__list_item_upper_roman_paren] = STATE(513), - [sym__list_upper_roman_parens] = STATE(254), - [sym__list_item_upper_roman_parens] = STATE(507), - [sym_table] = STATE(221), - [sym__table_content] = STATE(62), - [sym_table_separator] = STATE(62), - [sym_table_row] = STATE(68), - [sym_footnote] = STATE(221), - [sym_div] = STATE(221), - [sym_div_marker_begin] = STATE(956), - [sym_code_block] = STATE(221), - [sym_raw_block] = STATE(221), - [sym_thematic_break] = STATE(221), - [sym_block_quote] = STATE(221), - [sym__block_quote_prefix] = STATE(381), - [sym_link_reference_definition] = STATE(221), - [sym_block_attribute] = STATE(221), - [sym__paragraph] = STATE(221), - [sym__paragraph_content] = STATE(774), - [sym__inline] = STATE(683), - [sym__symbol_fallback] = STATE(329), - [aux_sym__list_dash_repeat1] = STATE(391), - [aux_sym__list_plus_repeat1] = STATE(390), - [aux_sym__list_star_repeat1] = STATE(389), - [aux_sym__list_task_repeat1] = STATE(340), - [aux_sym__list_definition_repeat1] = STATE(517), - [aux_sym__list_decimal_period_repeat1] = STATE(515), - [aux_sym__list_decimal_paren_repeat1] = STATE(493), - [aux_sym__list_decimal_parens_repeat1] = STATE(490), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(486), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(485), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(483), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(482), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(481), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(480), - [aux_sym__list_lower_roman_period_repeat1] = STATE(479), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(476), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(475), - [aux_sym__list_upper_roman_period_repeat1] = STATE(472), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(513), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(507), - [aux_sym_table_repeat1] = STATE(62), - [aux_sym_footnote_content_repeat1] = STATE(18), - [aux_sym__block_quote_prefix_repeat1] = STATE(349), - [aux_sym__inline_repeat1] = STATE(329), - [anon_sym_LBRACK] = ACTIONS(75), - [anon_sym_PIPE] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), + [25] = { + [sym__block_with_heading] = STATE(226), + [sym__block_element] = STATE(226), + [sym_heading] = STATE(226), + [sym_list] = STATE(226), + [sym__list_dash] = STATE(141), + [sym__list_item_dash] = STATE(416), + [sym__list_plus] = STATE(141), + [sym__list_item_plus] = STATE(419), + [sym__list_star] = STATE(141), + [sym__list_item_star] = STATE(407), + [sym__list_task] = STATE(141), + [sym__list_item_task] = STATE(371), + [sym_list_marker_task] = STATE(38), + [sym__list_definition] = STATE(141), + [sym__list_item_definition] = STATE(549), + [sym__list_decimal_period] = STATE(141), + [sym__list_item_decimal_period] = STATE(548), + [sym__list_decimal_paren] = STATE(141), + [sym__list_item_decimal_paren] = STATE(547), + [sym__list_decimal_parens] = STATE(141), + [sym__list_item_decimal_parens] = STATE(546), + [sym__list_lower_alpha_period] = STATE(141), + [sym__list_item_lower_alpha_period] = STATE(545), + [sym__list_lower_alpha_paren] = STATE(141), + [sym__list_item_lower_alpha_paren] = STATE(544), + [sym__list_lower_alpha_parens] = STATE(141), + [sym__list_item_lower_alpha_parens] = STATE(543), + [sym__list_upper_alpha_period] = STATE(141), + [sym__list_item_upper_alpha_period] = STATE(542), + [sym__list_upper_alpha_paren] = STATE(141), + [sym__list_item_upper_alpha_paren] = STATE(541), + [sym__list_upper_alpha_parens] = STATE(141), + [sym__list_item_upper_alpha_parens] = STATE(540), + [sym__list_lower_roman_period] = STATE(141), + [sym__list_item_lower_roman_period] = STATE(539), + [sym__list_lower_roman_paren] = STATE(141), + [sym__list_item_lower_roman_paren] = STATE(538), + [sym__list_lower_roman_parens] = STATE(141), + [sym__list_item_lower_roman_parens] = STATE(537), + [sym__list_upper_roman_period] = STATE(141), + [sym__list_item_upper_roman_period] = STATE(536), + [sym__list_upper_roman_paren] = STATE(141), + [sym__list_item_upper_roman_paren] = STATE(535), + [sym__list_upper_roman_parens] = STATE(141), + [sym__list_item_upper_roman_parens] = STATE(534), + [sym_table] = STATE(226), + [sym__table_content] = STATE(66), + [sym_table_separator] = STATE(66), + [sym_table_row] = STATE(72), + [sym_footnote] = STATE(226), + [sym_div] = STATE(226), + [sym_div_marker_begin] = STATE(985), + [sym_code_block] = STATE(226), + [sym_raw_block] = STATE(226), + [sym_thematic_break] = STATE(226), + [sym_block_quote] = STATE(226), + [sym__block_quote_prefix] = STATE(280), + [sym_link_reference_definition] = STATE(226), + [sym_block_attribute] = STATE(226), + [sym__paragraph] = STATE(226), + [sym__paragraph_content] = STATE(801), + [sym__inline] = STATE(703), + [sym__symbol_fallback] = STATE(366), + [aux_sym__list_dash_repeat1] = STATE(416), + [aux_sym__list_plus_repeat1] = STATE(419), + [aux_sym__list_star_repeat1] = STATE(407), + [aux_sym__list_task_repeat1] = STATE(371), + [aux_sym__list_definition_repeat1] = STATE(549), + [aux_sym__list_decimal_period_repeat1] = STATE(548), + [aux_sym__list_decimal_paren_repeat1] = STATE(547), + [aux_sym__list_decimal_parens_repeat1] = STATE(546), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(545), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(544), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(543), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(542), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(541), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(540), + [aux_sym__list_lower_roman_period_repeat1] = STATE(539), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(538), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(537), + [aux_sym__list_upper_roman_period_repeat1] = STATE(536), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(535), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(534), + [aux_sym_table_repeat1] = STATE(66), + [aux_sym_footnote_content_repeat1] = STATE(26), + [aux_sym__block_quote_prefix_repeat1] = STATE(307), + [aux_sym__inline_repeat1] = STATE(366), + [anon_sym_LBRACK] = ACTIONS(197), + [anon_sym_PIPE] = ACTIONS(199), + [anon_sym_LBRACE] = ACTIONS(201), [aux_sym__inline_token1] = ACTIONS(11), [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__block_close] = ACTIONS(386), - [sym__newline] = ACTIONS(223), + [sym__block_close] = ACTIONS(361), + [sym__newline] = ACTIONS(341), [sym__heading_begin] = ACTIONS(17), [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(85), + [sym__code_block_begin] = ACTIONS(207), [sym_list_marker_dash] = ACTIONS(23), [sym_list_marker_star] = ACTIONS(25), [sym_list_marker_plus] = ACTIONS(27), @@ -7482,110 +7423,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(57), [sym_list_marker_lower_roman_parens] = ACTIONS(59), [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(87), - [sym__block_quote_continuation] = ACTIONS(225), - [sym__thematic_break_dash] = ACTIONS(89), - [sym__thematic_break_star] = ACTIONS(89), - [sym__footnote_begin] = ACTIONS(91), + [sym__block_quote_begin] = ACTIONS(209), + [sym__block_quote_continuation] = ACTIONS(343), + [sym__thematic_break_dash] = ACTIONS(211), + [sym__thematic_break_star] = ACTIONS(211), + [sym__footnote_begin] = ACTIONS(213), }, - [27] = { - [sym__block_with_heading] = STATE(136), - [sym__block_element] = STATE(136), - [sym_heading] = STATE(136), - [sym_list] = STATE(136), - [sym__list_dash] = STATE(200), - [sym__list_item_dash] = STATE(382), - [sym__list_plus] = STATE(200), - [sym__list_item_plus] = STATE(383), - [sym__list_star] = STATE(200), - [sym__list_item_star] = STATE(385), - [sym__list_task] = STATE(200), - [sym__list_item_task] = STATE(341), - [sym_list_marker_task] = STATE(37), - [sym__list_definition] = STATE(200), - [sym__list_item_definition] = STATE(494), - [sym__list_decimal_period] = STATE(200), - [sym__list_item_decimal_period] = STATE(477), - [sym__list_decimal_paren] = STATE(200), - [sym__list_item_decimal_paren] = STATE(508), - [sym__list_decimal_parens] = STATE(200), - [sym__list_item_decimal_parens] = STATE(519), - [sym__list_lower_alpha_period] = STATE(200), - [sym__list_item_lower_alpha_period] = STATE(520), - [sym__list_lower_alpha_paren] = STATE(200), - [sym__list_item_lower_alpha_paren] = STATE(521), - [sym__list_lower_alpha_parens] = STATE(200), - [sym__list_item_lower_alpha_parens] = STATE(523), - [sym__list_upper_alpha_period] = STATE(200), - [sym__list_item_upper_alpha_period] = STATE(524), - [sym__list_upper_alpha_paren] = STATE(200), - [sym__list_item_upper_alpha_paren] = STATE(527), - [sym__list_upper_alpha_parens] = STATE(200), - [sym__list_item_upper_alpha_parens] = STATE(528), - [sym__list_lower_roman_period] = STATE(200), - [sym__list_item_lower_roman_period] = STATE(529), - [sym__list_lower_roman_paren] = STATE(200), - [sym__list_item_lower_roman_paren] = STATE(530), - [sym__list_lower_roman_parens] = STATE(200), - [sym__list_item_lower_roman_parens] = STATE(532), - [sym__list_upper_roman_period] = STATE(200), - [sym__list_item_upper_roman_period] = STATE(539), - [sym__list_upper_roman_paren] = STATE(200), - [sym__list_item_upper_roman_paren] = STATE(470), - [sym__list_upper_roman_parens] = STATE(200), - [sym__list_item_upper_roman_parens] = STATE(510), - [sym_table] = STATE(136), - [sym__table_content] = STATE(60), - [sym_table_separator] = STATE(60), - [sym_table_row] = STATE(67), - [sym_footnote] = STATE(136), - [sym_footnote_content] = STATE(991), - [sym_div] = STATE(136), - [sym_div_marker_begin] = STATE(976), - [sym_code_block] = STATE(136), - [sym_raw_block] = STATE(136), - [sym_thematic_break] = STATE(136), - [sym_block_quote] = STATE(136), - [sym__block_quote_prefix] = STATE(445), - [sym_link_reference_definition] = STATE(136), - [sym_block_attribute] = STATE(136), - [sym__paragraph] = STATE(136), - [sym__paragraph_content] = STATE(829), - [sym__inline] = STATE(683), - [sym__symbol_fallback] = STATE(329), - [aux_sym__list_dash_repeat1] = STATE(382), - [aux_sym__list_plus_repeat1] = STATE(383), - [aux_sym__list_star_repeat1] = STATE(385), - [aux_sym__list_task_repeat1] = STATE(341), - [aux_sym__list_definition_repeat1] = STATE(494), - [aux_sym__list_decimal_period_repeat1] = STATE(477), - [aux_sym__list_decimal_paren_repeat1] = STATE(508), - [aux_sym__list_decimal_parens_repeat1] = STATE(519), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(520), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(521), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(523), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(524), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(527), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(528), - [aux_sym__list_lower_roman_period_repeat1] = STATE(529), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(530), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(532), - [aux_sym__list_upper_roman_period_repeat1] = STATE(539), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(470), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(510), - [aux_sym_table_repeat1] = STATE(60), - [aux_sym_footnote_content_repeat1] = STATE(17), - [aux_sym__block_quote_prefix_repeat1] = STATE(397), - [aux_sym__inline_repeat1] = STATE(329), - [anon_sym_LBRACK] = ACTIONS(227), - [anon_sym_PIPE] = ACTIONS(229), - [anon_sym_LBRACE] = ACTIONS(231), + [26] = { + [sym__block_with_heading] = STATE(226), + [sym__block_element] = STATE(226), + [sym_heading] = STATE(226), + [sym_list] = STATE(226), + [sym__list_dash] = STATE(141), + [sym__list_item_dash] = STATE(416), + [sym__list_plus] = STATE(141), + [sym__list_item_plus] = STATE(419), + [sym__list_star] = STATE(141), + [sym__list_item_star] = STATE(407), + [sym__list_task] = STATE(141), + [sym__list_item_task] = STATE(371), + [sym_list_marker_task] = STATE(38), + [sym__list_definition] = STATE(141), + [sym__list_item_definition] = STATE(549), + [sym__list_decimal_period] = STATE(141), + [sym__list_item_decimal_period] = STATE(548), + [sym__list_decimal_paren] = STATE(141), + [sym__list_item_decimal_paren] = STATE(547), + [sym__list_decimal_parens] = STATE(141), + [sym__list_item_decimal_parens] = STATE(546), + [sym__list_lower_alpha_period] = STATE(141), + [sym__list_item_lower_alpha_period] = STATE(545), + [sym__list_lower_alpha_paren] = STATE(141), + [sym__list_item_lower_alpha_paren] = STATE(544), + [sym__list_lower_alpha_parens] = STATE(141), + [sym__list_item_lower_alpha_parens] = STATE(543), + [sym__list_upper_alpha_period] = STATE(141), + [sym__list_item_upper_alpha_period] = STATE(542), + [sym__list_upper_alpha_paren] = STATE(141), + [sym__list_item_upper_alpha_paren] = STATE(541), + [sym__list_upper_alpha_parens] = STATE(141), + [sym__list_item_upper_alpha_parens] = STATE(540), + [sym__list_lower_roman_period] = STATE(141), + [sym__list_item_lower_roman_period] = STATE(539), + [sym__list_lower_roman_paren] = STATE(141), + [sym__list_item_lower_roman_paren] = STATE(538), + [sym__list_lower_roman_parens] = STATE(141), + [sym__list_item_lower_roman_parens] = STATE(537), + [sym__list_upper_roman_period] = STATE(141), + [sym__list_item_upper_roman_period] = STATE(536), + [sym__list_upper_roman_paren] = STATE(141), + [sym__list_item_upper_roman_paren] = STATE(535), + [sym__list_upper_roman_parens] = STATE(141), + [sym__list_item_upper_roman_parens] = STATE(534), + [sym_table] = STATE(226), + [sym__table_content] = STATE(66), + [sym_table_separator] = STATE(66), + [sym_table_row] = STATE(72), + [sym_footnote] = STATE(226), + [sym_div] = STATE(226), + [sym_div_marker_begin] = STATE(985), + [sym_code_block] = STATE(226), + [sym_raw_block] = STATE(226), + [sym_thematic_break] = STATE(226), + [sym_block_quote] = STATE(226), + [sym__block_quote_prefix] = STATE(274), + [sym_link_reference_definition] = STATE(226), + [sym_block_attribute] = STATE(226), + [sym__paragraph] = STATE(226), + [sym__paragraph_content] = STATE(801), + [sym__inline] = STATE(703), + [sym__symbol_fallback] = STATE(366), + [aux_sym__list_dash_repeat1] = STATE(416), + [aux_sym__list_plus_repeat1] = STATE(419), + [aux_sym__list_star_repeat1] = STATE(407), + [aux_sym__list_task_repeat1] = STATE(371), + [aux_sym__list_definition_repeat1] = STATE(549), + [aux_sym__list_decimal_period_repeat1] = STATE(548), + [aux_sym__list_decimal_paren_repeat1] = STATE(547), + [aux_sym__list_decimal_parens_repeat1] = STATE(546), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(545), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(544), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(543), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(542), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(541), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(540), + [aux_sym__list_lower_roman_period_repeat1] = STATE(539), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(538), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(537), + [aux_sym__list_upper_roman_period_repeat1] = STATE(536), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(535), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(534), + [aux_sym_table_repeat1] = STATE(66), + [aux_sym_footnote_content_repeat1] = STATE(12), + [aux_sym__block_quote_prefix_repeat1] = STATE(307), + [aux_sym__inline_repeat1] = STATE(366), + [anon_sym_LBRACK] = ACTIONS(197), + [anon_sym_PIPE] = ACTIONS(199), + [anon_sym_LBRACE] = ACTIONS(201), [aux_sym__inline_token1] = ACTIONS(11), [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__newline] = ACTIONS(233), - [sym__heading_begin] = ACTIONS(235), + [sym__block_close] = ACTIONS(363), + [sym__newline] = ACTIONS(341), + [sym__heading_begin] = ACTIONS(17), [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(237), + [sym__code_block_begin] = ACTIONS(207), [sym_list_marker_dash] = ACTIONS(23), [sym_list_marker_star] = ACTIONS(25), [sym_list_marker_plus] = ACTIONS(27), @@ -7606,110 +7547,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(57), [sym_list_marker_lower_roman_parens] = ACTIONS(59), [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(239), - [sym__block_quote_continuation] = ACTIONS(65), - [sym__thematic_break_dash] = ACTIONS(241), - [sym__thematic_break_star] = ACTIONS(241), - [sym__footnote_begin] = ACTIONS(243), + [sym__block_quote_begin] = ACTIONS(209), + [sym__block_quote_continuation] = ACTIONS(343), + [sym__thematic_break_dash] = ACTIONS(211), + [sym__thematic_break_star] = ACTIONS(211), + [sym__footnote_begin] = ACTIONS(213), }, - [28] = { - [sym__block_with_heading] = STATE(221), - [sym__block_element] = STATE(221), - [sym_heading] = STATE(221), - [sym_list] = STATE(221), - [sym__list_dash] = STATE(254), - [sym__list_item_dash] = STATE(391), - [sym__list_plus] = STATE(254), - [sym__list_item_plus] = STATE(390), - [sym__list_star] = STATE(254), - [sym__list_item_star] = STATE(389), - [sym__list_task] = STATE(254), - [sym__list_item_task] = STATE(340), - [sym_list_marker_task] = STATE(37), - [sym__list_definition] = STATE(254), - [sym__list_item_definition] = STATE(517), - [sym__list_decimal_period] = STATE(254), - [sym__list_item_decimal_period] = STATE(515), - [sym__list_decimal_paren] = STATE(254), - [sym__list_item_decimal_paren] = STATE(493), - [sym__list_decimal_parens] = STATE(254), - [sym__list_item_decimal_parens] = STATE(490), - [sym__list_lower_alpha_period] = STATE(254), - [sym__list_item_lower_alpha_period] = STATE(486), - [sym__list_lower_alpha_paren] = STATE(254), - [sym__list_item_lower_alpha_paren] = STATE(485), - [sym__list_lower_alpha_parens] = STATE(254), - [sym__list_item_lower_alpha_parens] = STATE(483), - [sym__list_upper_alpha_period] = STATE(254), - [sym__list_item_upper_alpha_period] = STATE(482), - [sym__list_upper_alpha_paren] = STATE(254), - [sym__list_item_upper_alpha_paren] = STATE(481), - [sym__list_upper_alpha_parens] = STATE(254), - [sym__list_item_upper_alpha_parens] = STATE(480), - [sym__list_lower_roman_period] = STATE(254), - [sym__list_item_lower_roman_period] = STATE(479), - [sym__list_lower_roman_paren] = STATE(254), - [sym__list_item_lower_roman_paren] = STATE(476), - [sym__list_lower_roman_parens] = STATE(254), - [sym__list_item_lower_roman_parens] = STATE(475), - [sym__list_upper_roman_period] = STATE(254), - [sym__list_item_upper_roman_period] = STATE(472), - [sym__list_upper_roman_paren] = STATE(254), - [sym__list_item_upper_roman_paren] = STATE(513), - [sym__list_upper_roman_parens] = STATE(254), - [sym__list_item_upper_roman_parens] = STATE(507), - [sym_table] = STATE(221), - [sym__table_content] = STATE(62), - [sym_table_separator] = STATE(62), - [sym_table_row] = STATE(68), - [sym_footnote] = STATE(221), - [sym_div] = STATE(221), - [sym_div_marker_begin] = STATE(956), - [sym_code_block] = STATE(221), - [sym_raw_block] = STATE(221), - [sym_thematic_break] = STATE(221), - [sym_block_quote] = STATE(221), - [sym__block_quote_prefix] = STATE(380), - [sym_link_reference_definition] = STATE(221), - [sym_block_attribute] = STATE(221), - [sym__paragraph] = STATE(221), - [sym__paragraph_content] = STATE(774), - [sym__inline] = STATE(683), - [sym__symbol_fallback] = STATE(329), - [aux_sym__list_dash_repeat1] = STATE(391), - [aux_sym__list_plus_repeat1] = STATE(390), - [aux_sym__list_star_repeat1] = STATE(389), - [aux_sym__list_task_repeat1] = STATE(340), - [aux_sym__list_definition_repeat1] = STATE(517), - [aux_sym__list_decimal_period_repeat1] = STATE(515), - [aux_sym__list_decimal_paren_repeat1] = STATE(493), - [aux_sym__list_decimal_parens_repeat1] = STATE(490), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(486), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(485), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(483), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(482), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(481), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(480), - [aux_sym__list_lower_roman_period_repeat1] = STATE(479), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(476), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(475), - [aux_sym__list_upper_roman_period_repeat1] = STATE(472), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(513), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(507), - [aux_sym_table_repeat1] = STATE(62), - [aux_sym_footnote_content_repeat1] = STATE(26), - [aux_sym__block_quote_prefix_repeat1] = STATE(349), - [aux_sym__inline_repeat1] = STATE(329), - [anon_sym_LBRACK] = ACTIONS(75), - [anon_sym_PIPE] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), + [27] = { + [sym__block_with_heading] = STATE(265), + [sym__block_element] = STATE(265), + [sym_heading] = STATE(265), + [sym_list] = STATE(265), + [sym__list_dash] = STATE(234), + [sym__list_item_dash] = STATE(415), + [sym__list_plus] = STATE(234), + [sym__list_item_plus] = STATE(395), + [sym__list_star] = STATE(234), + [sym__list_item_star] = STATE(409), + [sym__list_task] = STATE(234), + [sym__list_item_task] = STATE(389), + [sym_list_marker_task] = STATE(38), + [sym__list_definition] = STATE(234), + [sym__list_item_definition] = STATE(531), + [sym__list_decimal_period] = STATE(234), + [sym__list_item_decimal_period] = STATE(530), + [sym__list_decimal_paren] = STATE(234), + [sym__list_item_decimal_paren] = STATE(529), + [sym__list_decimal_parens] = STATE(234), + [sym__list_item_decimal_parens] = STATE(527), + [sym__list_lower_alpha_period] = STATE(234), + [sym__list_item_lower_alpha_period] = STATE(526), + [sym__list_lower_alpha_paren] = STATE(234), + [sym__list_item_lower_alpha_paren] = STATE(525), + [sym__list_lower_alpha_parens] = STATE(234), + [sym__list_item_lower_alpha_parens] = STATE(524), + [sym__list_upper_alpha_period] = STATE(234), + [sym__list_item_upper_alpha_period] = STATE(523), + [sym__list_upper_alpha_paren] = STATE(234), + [sym__list_item_upper_alpha_paren] = STATE(522), + [sym__list_upper_alpha_parens] = STATE(234), + [sym__list_item_upper_alpha_parens] = STATE(521), + [sym__list_lower_roman_period] = STATE(234), + [sym__list_item_lower_roman_period] = STATE(520), + [sym__list_lower_roman_paren] = STATE(234), + [sym__list_item_lower_roman_paren] = STATE(519), + [sym__list_lower_roman_parens] = STATE(234), + [sym__list_item_lower_roman_parens] = STATE(518), + [sym__list_upper_roman_period] = STATE(234), + [sym__list_item_upper_roman_period] = STATE(517), + [sym__list_upper_roman_paren] = STATE(234), + [sym__list_item_upper_roman_paren] = STATE(516), + [sym__list_upper_roman_parens] = STATE(234), + [sym__list_item_upper_roman_parens] = STATE(515), + [sym_table] = STATE(265), + [sym__table_content] = STATE(65), + [sym_table_separator] = STATE(65), + [sym_table_row] = STATE(71), + [sym_footnote] = STATE(265), + [sym_footnote_content] = STATE(1040), + [sym_div] = STATE(265), + [sym_div_marker_begin] = STATE(1006), + [sym_code_block] = STATE(265), + [sym_raw_block] = STATE(265), + [sym_thematic_break] = STATE(265), + [sym_block_quote] = STATE(265), + [sym__block_quote_prefix] = STATE(285), + [sym_link_reference_definition] = STATE(265), + [sym_block_attribute] = STATE(265), + [sym__paragraph] = STATE(265), + [sym__paragraph_content] = STATE(856), + [sym__inline] = STATE(703), + [sym__symbol_fallback] = STATE(366), + [aux_sym__list_dash_repeat1] = STATE(415), + [aux_sym__list_plus_repeat1] = STATE(395), + [aux_sym__list_star_repeat1] = STATE(409), + [aux_sym__list_task_repeat1] = STATE(389), + [aux_sym__list_definition_repeat1] = STATE(531), + [aux_sym__list_decimal_period_repeat1] = STATE(530), + [aux_sym__list_decimal_paren_repeat1] = STATE(529), + [aux_sym__list_decimal_parens_repeat1] = STATE(527), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(526), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(525), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(524), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(523), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(522), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(521), + [aux_sym__list_lower_roman_period_repeat1] = STATE(520), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(519), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(518), + [aux_sym__list_upper_roman_period_repeat1] = STATE(517), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(516), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(515), + [aux_sym_table_repeat1] = STATE(65), + [aux_sym_footnote_content_repeat1] = STATE(15), + [aux_sym__block_quote_prefix_repeat1] = STATE(323), + [aux_sym__inline_repeat1] = STATE(366), + [anon_sym_LBRACK] = ACTIONS(221), + [anon_sym_PIPE] = ACTIONS(223), + [anon_sym_LBRACE] = ACTIONS(225), [aux_sym__inline_token1] = ACTIONS(11), [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__block_close] = ACTIONS(388), - [sym__newline] = ACTIONS(223), - [sym__heading_begin] = ACTIONS(17), + [sym__newline] = ACTIONS(227), + [sym__heading_begin] = ACTIONS(229), [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(85), + [sym__code_block_begin] = ACTIONS(231), [sym_list_marker_dash] = ACTIONS(23), [sym_list_marker_star] = ACTIONS(25), [sym_list_marker_plus] = ACTIONS(27), @@ -7730,109 +7671,233 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(57), [sym_list_marker_lower_roman_parens] = ACTIONS(59), [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(87), - [sym__block_quote_continuation] = ACTIONS(225), - [sym__thematic_break_dash] = ACTIONS(89), - [sym__thematic_break_star] = ACTIONS(89), - [sym__footnote_begin] = ACTIONS(91), + [sym__block_quote_begin] = ACTIONS(233), + [sym__block_quote_continuation] = ACTIONS(235), + [sym__thematic_break_dash] = ACTIONS(237), + [sym__thematic_break_star] = ACTIONS(237), + [sym__footnote_begin] = ACTIONS(239), + }, + [28] = { + [sym__block_with_heading] = STATE(265), + [sym__block_element] = STATE(265), + [sym_heading] = STATE(265), + [sym_list] = STATE(265), + [sym__list_dash] = STATE(234), + [sym__list_item_dash] = STATE(415), + [sym__list_plus] = STATE(234), + [sym__list_item_plus] = STATE(395), + [sym__list_star] = STATE(234), + [sym__list_item_star] = STATE(409), + [sym__list_task] = STATE(234), + [sym__list_item_task] = STATE(389), + [sym_list_marker_task] = STATE(38), + [sym__list_definition] = STATE(234), + [sym__list_item_definition] = STATE(531), + [sym__list_decimal_period] = STATE(234), + [sym__list_item_decimal_period] = STATE(530), + [sym__list_decimal_paren] = STATE(234), + [sym__list_item_decimal_paren] = STATE(529), + [sym__list_decimal_parens] = STATE(234), + [sym__list_item_decimal_parens] = STATE(527), + [sym__list_lower_alpha_period] = STATE(234), + [sym__list_item_lower_alpha_period] = STATE(526), + [sym__list_lower_alpha_paren] = STATE(234), + [sym__list_item_lower_alpha_paren] = STATE(525), + [sym__list_lower_alpha_parens] = STATE(234), + [sym__list_item_lower_alpha_parens] = STATE(524), + [sym__list_upper_alpha_period] = STATE(234), + [sym__list_item_upper_alpha_period] = STATE(523), + [sym__list_upper_alpha_paren] = STATE(234), + [sym__list_item_upper_alpha_paren] = STATE(522), + [sym__list_upper_alpha_parens] = STATE(234), + [sym__list_item_upper_alpha_parens] = STATE(521), + [sym__list_lower_roman_period] = STATE(234), + [sym__list_item_lower_roman_period] = STATE(520), + [sym__list_lower_roman_paren] = STATE(234), + [sym__list_item_lower_roman_paren] = STATE(519), + [sym__list_lower_roman_parens] = STATE(234), + [sym__list_item_lower_roman_parens] = STATE(518), + [sym__list_upper_roman_period] = STATE(234), + [sym__list_item_upper_roman_period] = STATE(517), + [sym__list_upper_roman_paren] = STATE(234), + [sym__list_item_upper_roman_paren] = STATE(516), + [sym__list_upper_roman_parens] = STATE(234), + [sym__list_item_upper_roman_parens] = STATE(515), + [sym_table] = STATE(265), + [sym__table_content] = STATE(65), + [sym_table_separator] = STATE(65), + [sym_table_row] = STATE(71), + [sym_footnote] = STATE(265), + [sym_div] = STATE(265), + [sym_div_marker_begin] = STATE(1006), + [sym_code_block] = STATE(265), + [sym_raw_block] = STATE(265), + [sym_thematic_break] = STATE(265), + [sym_block_quote] = STATE(265), + [sym__block_quote_prefix] = STATE(285), + [sym_link_reference_definition] = STATE(265), + [sym_block_attribute] = STATE(265), + [sym__paragraph] = STATE(265), + [sym__paragraph_content] = STATE(856), + [sym__inline] = STATE(703), + [sym__symbol_fallback] = STATE(366), + [aux_sym__list_dash_repeat1] = STATE(415), + [aux_sym__list_plus_repeat1] = STATE(395), + [aux_sym__list_star_repeat1] = STATE(409), + [aux_sym__list_task_repeat1] = STATE(389), + [aux_sym__list_definition_repeat1] = STATE(531), + [aux_sym__list_decimal_period_repeat1] = STATE(530), + [aux_sym__list_decimal_paren_repeat1] = STATE(529), + [aux_sym__list_decimal_parens_repeat1] = STATE(527), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(526), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(525), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(524), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(523), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(522), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(521), + [aux_sym__list_lower_roman_period_repeat1] = STATE(520), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(519), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(518), + [aux_sym__list_upper_roman_period_repeat1] = STATE(517), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(516), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(515), + [aux_sym_table_repeat1] = STATE(65), + [aux_sym_footnote_content_repeat1] = STATE(28), + [aux_sym__block_quote_prefix_repeat1] = STATE(323), + [aux_sym__inline_repeat1] = STATE(366), + [anon_sym_LBRACK] = ACTIONS(365), + [anon_sym_PIPE] = ACTIONS(368), + [anon_sym_LBRACE] = ACTIONS(371), + [aux_sym__inline_token1] = ACTIONS(250), + [anon_sym_LBRACE_DASH] = ACTIONS(250), + [sym__newline] = ACTIONS(374), + [sym__heading_begin] = ACTIONS(377), + [sym__div_begin] = ACTIONS(261), + [sym__code_block_begin] = ACTIONS(380), + [sym_list_marker_dash] = ACTIONS(267), + [sym_list_marker_star] = ACTIONS(270), + [sym_list_marker_plus] = ACTIONS(273), + [sym__list_marker_task_begin] = ACTIONS(276), + [sym_list_marker_definition] = ACTIONS(279), + [sym_list_marker_decimal_period] = ACTIONS(282), + [sym_list_marker_lower_alpha_period] = ACTIONS(285), + [sym_list_marker_upper_alpha_period] = ACTIONS(288), + [sym_list_marker_lower_roman_period] = ACTIONS(291), + [sym_list_marker_upper_roman_period] = ACTIONS(294), + [sym_list_marker_decimal_paren] = ACTIONS(297), + [sym_list_marker_lower_alpha_paren] = ACTIONS(300), + [sym_list_marker_upper_alpha_paren] = ACTIONS(303), + [sym_list_marker_lower_roman_paren] = ACTIONS(306), + [sym_list_marker_upper_roman_paren] = ACTIONS(309), + [sym_list_marker_decimal_parens] = ACTIONS(312), + [sym_list_marker_lower_alpha_parens] = ACTIONS(315), + [sym_list_marker_upper_alpha_parens] = ACTIONS(318), + [sym_list_marker_lower_roman_parens] = ACTIONS(321), + [sym_list_marker_upper_roman_parens] = ACTIONS(324), + [sym__block_quote_begin] = ACTIONS(383), + [sym__block_quote_continuation] = ACTIONS(386), + [sym__thematic_break_dash] = ACTIONS(389), + [sym__thematic_break_star] = ACTIONS(389), + [sym__footnote_begin] = ACTIONS(392), + [sym__footnote_end] = ACTIONS(253), }, [29] = { - [sym__block_with_heading] = STATE(417), - [sym__block_element] = STATE(417), - [sym_heading] = STATE(417), - [sym_list] = STATE(417), - [sym__list_dash] = STATE(665), - [sym__list_item_dash] = STATE(364), - [sym__list_plus] = STATE(665), - [sym__list_item_plus] = STATE(384), - [sym__list_star] = STATE(665), - [sym__list_item_star] = STATE(386), - [sym__list_task] = STATE(665), - [sym__list_item_task] = STATE(333), - [sym_list_marker_task] = STATE(37), - [sym__list_definition] = STATE(665), - [sym__list_item_definition] = STATE(509), - [sym__list_decimal_period] = STATE(665), - [sym__list_item_decimal_period] = STATE(506), - [sym__list_decimal_paren] = STATE(665), - [sym__list_item_decimal_paren] = STATE(504), - [sym__list_decimal_parens] = STATE(665), - [sym__list_item_decimal_parens] = STATE(502), - [sym__list_lower_alpha_period] = STATE(665), - [sym__list_item_lower_alpha_period] = STATE(500), - [sym__list_lower_alpha_paren] = STATE(665), - [sym__list_item_lower_alpha_paren] = STATE(499), - [sym__list_lower_alpha_parens] = STATE(665), - [sym__list_item_lower_alpha_parens] = STATE(498), - [sym__list_upper_alpha_period] = STATE(665), - [sym__list_item_upper_alpha_period] = STATE(497), - [sym__list_upper_alpha_paren] = STATE(665), - [sym__list_item_upper_alpha_paren] = STATE(496), - [sym__list_upper_alpha_parens] = STATE(665), - [sym__list_item_upper_alpha_parens] = STATE(495), - [sym__list_lower_roman_period] = STATE(665), - [sym__list_item_lower_roman_period] = STATE(492), - [sym__list_lower_roman_paren] = STATE(665), - [sym__list_item_lower_roman_paren] = STATE(491), - [sym__list_lower_roman_parens] = STATE(665), - [sym__list_item_lower_roman_parens] = STATE(487), - [sym__list_upper_roman_period] = STATE(665), - [sym__list_item_upper_roman_period] = STATE(484), - [sym__list_upper_roman_paren] = STATE(665), - [sym__list_item_upper_roman_paren] = STATE(478), - [sym__list_upper_roman_parens] = STATE(665), - [sym__list_item_upper_roman_parens] = STATE(474), - [sym_list_item_content] = STATE(730), - [sym_table] = STATE(417), - [sym__table_content] = STATE(267), - [sym_table_separator] = STATE(267), - [sym_table_row] = STATE(327), - [sym_footnote] = STATE(417), - [sym_div] = STATE(417), - [sym_div_marker_begin] = STATE(914), - [sym_code_block] = STATE(417), - [sym_raw_block] = STATE(417), - [sym_thematic_break] = STATE(417), - [sym_block_quote] = STATE(417), - [sym__block_quote_prefix] = STATE(431), - [sym_link_reference_definition] = STATE(417), - [sym_block_attribute] = STATE(417), - [sym__paragraph] = STATE(417), - [sym__paragraph_content] = STATE(696), - [sym__inline] = STATE(683), - [sym__symbol_fallback] = STATE(329), - [aux_sym__list_dash_repeat1] = STATE(364), - [aux_sym__list_plus_repeat1] = STATE(384), - [aux_sym__list_star_repeat1] = STATE(386), - [aux_sym__list_task_repeat1] = STATE(333), - [aux_sym__list_definition_repeat1] = STATE(509), - [aux_sym__list_decimal_period_repeat1] = STATE(506), - [aux_sym__list_decimal_paren_repeat1] = STATE(504), - [aux_sym__list_decimal_parens_repeat1] = STATE(502), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(500), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(499), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(498), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(497), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(496), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(495), - [aux_sym__list_lower_roman_period_repeat1] = STATE(492), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(491), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(487), - [aux_sym__list_upper_roman_period_repeat1] = STATE(484), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(478), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), - [aux_sym_table_repeat1] = STATE(267), - [aux_sym__block_quote_prefix_repeat1] = STATE(397), - [aux_sym__inline_repeat1] = STATE(329), - [anon_sym_LBRACK] = ACTIONS(390), - [anon_sym_PIPE] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(394), + [sym__block_with_heading] = STATE(433), + [sym__block_element] = STATE(433), + [sym_heading] = STATE(433), + [sym_list] = STATE(433), + [sym__list_dash] = STATE(699), + [sym__list_item_dash] = STATE(413), + [sym__list_plus] = STATE(699), + [sym__list_item_plus] = STATE(418), + [sym__list_star] = STATE(699), + [sym__list_item_star] = STATE(417), + [sym__list_task] = STATE(699), + [sym__list_item_task] = STATE(381), + [sym_list_marker_task] = STATE(38), + [sym__list_definition] = STATE(699), + [sym__list_item_definition] = STATE(582), + [sym__list_decimal_period] = STATE(699), + [sym__list_item_decimal_period] = STATE(581), + [sym__list_decimal_paren] = STATE(699), + [sym__list_item_decimal_paren] = STATE(579), + [sym__list_decimal_parens] = STATE(699), + [sym__list_item_decimal_parens] = STATE(578), + [sym__list_lower_alpha_period] = STATE(699), + [sym__list_item_lower_alpha_period] = STATE(577), + [sym__list_lower_alpha_paren] = STATE(699), + [sym__list_item_lower_alpha_paren] = STATE(576), + [sym__list_lower_alpha_parens] = STATE(699), + [sym__list_item_lower_alpha_parens] = STATE(575), + [sym__list_upper_alpha_period] = STATE(699), + [sym__list_item_upper_alpha_period] = STATE(574), + [sym__list_upper_alpha_paren] = STATE(699), + [sym__list_item_upper_alpha_paren] = STATE(573), + [sym__list_upper_alpha_parens] = STATE(699), + [sym__list_item_upper_alpha_parens] = STATE(572), + [sym__list_lower_roman_period] = STATE(699), + [sym__list_item_lower_roman_period] = STATE(571), + [sym__list_lower_roman_paren] = STATE(699), + [sym__list_item_lower_roman_paren] = STATE(570), + [sym__list_lower_roman_parens] = STATE(699), + [sym__list_item_lower_roman_parens] = STATE(569), + [sym__list_upper_roman_period] = STATE(699), + [sym__list_item_upper_roman_period] = STATE(568), + [sym__list_upper_roman_paren] = STATE(699), + [sym__list_item_upper_roman_paren] = STATE(567), + [sym__list_upper_roman_parens] = STATE(699), + [sym__list_item_upper_roman_parens] = STATE(566), + [sym_list_item_content] = STATE(862), + [sym_table] = STATE(433), + [sym__table_content] = STATE(289), + [sym_table_separator] = STATE(289), + [sym_table_row] = STATE(363), + [sym_footnote] = STATE(433), + [sym_div] = STATE(433), + [sym_div_marker_begin] = STATE(941), + [sym_code_block] = STATE(433), + [sym_raw_block] = STATE(433), + [sym_thematic_break] = STATE(433), + [sym_block_quote] = STATE(433), + [sym__block_quote_prefix] = STATE(288), + [sym_link_reference_definition] = STATE(433), + [sym_block_attribute] = STATE(433), + [sym__paragraph] = STATE(433), + [sym__paragraph_content] = STATE(764), + [sym__inline] = STATE(703), + [sym__symbol_fallback] = STATE(366), + [aux_sym__list_dash_repeat1] = STATE(413), + [aux_sym__list_plus_repeat1] = STATE(418), + [aux_sym__list_star_repeat1] = STATE(417), + [aux_sym__list_task_repeat1] = STATE(381), + [aux_sym__list_definition_repeat1] = STATE(582), + [aux_sym__list_decimal_period_repeat1] = STATE(581), + [aux_sym__list_decimal_paren_repeat1] = STATE(579), + [aux_sym__list_decimal_parens_repeat1] = STATE(578), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(577), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(576), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(575), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(574), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(573), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(572), + [aux_sym__list_lower_roman_period_repeat1] = STATE(571), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(570), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(569), + [aux_sym__list_upper_roman_period_repeat1] = STATE(568), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(567), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(566), + [aux_sym_table_repeat1] = STATE(289), + [aux_sym__block_quote_prefix_repeat1] = STATE(323), + [aux_sym__inline_repeat1] = STATE(366), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(399), [aux_sym__inline_token1] = ACTIONS(11), [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__newline] = ACTIONS(396), - [sym__heading_begin] = ACTIONS(398), + [sym__newline] = ACTIONS(401), + [sym__heading_begin] = ACTIONS(403), [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(400), + [sym__code_block_begin] = ACTIONS(405), [sym_list_marker_dash] = ACTIONS(23), [sym_list_marker_star] = ACTIONS(25), [sym_list_marker_plus] = ACTIONS(27), @@ -7853,109 +7918,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(57), [sym_list_marker_lower_roman_parens] = ACTIONS(59), [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(402), - [sym__block_quote_continuation] = ACTIONS(65), - [sym__thematic_break_dash] = ACTIONS(404), - [sym__thematic_break_star] = ACTIONS(404), - [sym__footnote_begin] = ACTIONS(406), + [sym__block_quote_begin] = ACTIONS(407), + [sym__block_quote_continuation] = ACTIONS(409), + [sym__thematic_break_dash] = ACTIONS(411), + [sym__thematic_break_star] = ACTIONS(411), + [sym__footnote_begin] = ACTIONS(413), }, [30] = { - [sym__block_with_heading] = STATE(416), - [sym__block_element] = STATE(416), - [sym_heading] = STATE(416), - [sym_list] = STATE(416), - [sym__list_dash] = STATE(665), - [sym__list_item_dash] = STATE(364), - [sym__list_plus] = STATE(665), - [sym__list_item_plus] = STATE(384), - [sym__list_star] = STATE(665), - [sym__list_item_star] = STATE(386), - [sym__list_task] = STATE(665), - [sym__list_item_task] = STATE(333), - [sym_list_marker_task] = STATE(37), - [sym__list_definition] = STATE(665), - [sym__list_item_definition] = STATE(509), - [sym__list_decimal_period] = STATE(665), - [sym__list_item_decimal_period] = STATE(506), - [sym__list_decimal_paren] = STATE(665), - [sym__list_item_decimal_paren] = STATE(504), - [sym__list_decimal_parens] = STATE(665), - [sym__list_item_decimal_parens] = STATE(502), - [sym__list_lower_alpha_period] = STATE(665), - [sym__list_item_lower_alpha_period] = STATE(500), - [sym__list_lower_alpha_paren] = STATE(665), - [sym__list_item_lower_alpha_paren] = STATE(499), - [sym__list_lower_alpha_parens] = STATE(665), - [sym__list_item_lower_alpha_parens] = STATE(498), - [sym__list_upper_alpha_period] = STATE(665), - [sym__list_item_upper_alpha_period] = STATE(497), - [sym__list_upper_alpha_paren] = STATE(665), - [sym__list_item_upper_alpha_paren] = STATE(496), - [sym__list_upper_alpha_parens] = STATE(665), - [sym__list_item_upper_alpha_parens] = STATE(495), - [sym__list_lower_roman_period] = STATE(665), - [sym__list_item_lower_roman_period] = STATE(492), - [sym__list_lower_roman_paren] = STATE(665), - [sym__list_item_lower_roman_paren] = STATE(491), - [sym__list_lower_roman_parens] = STATE(665), - [sym__list_item_lower_roman_parens] = STATE(487), - [sym__list_upper_roman_period] = STATE(665), - [sym__list_item_upper_roman_period] = STATE(484), - [sym__list_upper_roman_paren] = STATE(665), - [sym__list_item_upper_roman_paren] = STATE(478), - [sym__list_upper_roman_parens] = STATE(665), - [sym__list_item_upper_roman_parens] = STATE(474), - [sym_list_item_content] = STATE(632), - [sym_table] = STATE(416), - [sym__table_content] = STATE(267), - [sym_table_separator] = STATE(267), - [sym_table_row] = STATE(327), - [sym_footnote] = STATE(416), - [sym_div] = STATE(416), - [sym_div_marker_begin] = STATE(914), - [sym_code_block] = STATE(416), - [sym_raw_block] = STATE(416), - [sym_thematic_break] = STATE(416), - [sym_block_quote] = STATE(416), - [sym__block_quote_prefix] = STATE(431), - [sym_link_reference_definition] = STATE(416), - [sym_block_attribute] = STATE(416), - [sym__paragraph] = STATE(416), - [sym__paragraph_content] = STATE(696), - [sym__inline] = STATE(683), - [sym__symbol_fallback] = STATE(329), - [aux_sym__list_dash_repeat1] = STATE(364), - [aux_sym__list_plus_repeat1] = STATE(384), - [aux_sym__list_star_repeat1] = STATE(386), - [aux_sym__list_task_repeat1] = STATE(333), - [aux_sym__list_definition_repeat1] = STATE(509), - [aux_sym__list_decimal_period_repeat1] = STATE(506), - [aux_sym__list_decimal_paren_repeat1] = STATE(504), - [aux_sym__list_decimal_parens_repeat1] = STATE(502), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(500), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(499), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(498), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(497), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(496), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(495), - [aux_sym__list_lower_roman_period_repeat1] = STATE(492), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(491), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(487), - [aux_sym__list_upper_roman_period_repeat1] = STATE(484), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(478), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), - [aux_sym_table_repeat1] = STATE(267), - [aux_sym__block_quote_prefix_repeat1] = STATE(397), - [aux_sym__inline_repeat1] = STATE(329), - [anon_sym_LBRACK] = ACTIONS(390), - [anon_sym_PIPE] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(394), + [sym__block_with_heading] = STATE(460), + [sym__block_element] = STATE(460), + [sym_heading] = STATE(460), + [sym_list] = STATE(460), + [sym__list_dash] = STATE(699), + [sym__list_item_dash] = STATE(413), + [sym__list_plus] = STATE(699), + [sym__list_item_plus] = STATE(418), + [sym__list_star] = STATE(699), + [sym__list_item_star] = STATE(417), + [sym__list_task] = STATE(699), + [sym__list_item_task] = STATE(381), + [sym_list_marker_task] = STATE(38), + [sym__list_definition] = STATE(699), + [sym__list_item_definition] = STATE(582), + [sym__list_decimal_period] = STATE(699), + [sym__list_item_decimal_period] = STATE(581), + [sym__list_decimal_paren] = STATE(699), + [sym__list_item_decimal_paren] = STATE(579), + [sym__list_decimal_parens] = STATE(699), + [sym__list_item_decimal_parens] = STATE(578), + [sym__list_lower_alpha_period] = STATE(699), + [sym__list_item_lower_alpha_period] = STATE(577), + [sym__list_lower_alpha_paren] = STATE(699), + [sym__list_item_lower_alpha_paren] = STATE(576), + [sym__list_lower_alpha_parens] = STATE(699), + [sym__list_item_lower_alpha_parens] = STATE(575), + [sym__list_upper_alpha_period] = STATE(699), + [sym__list_item_upper_alpha_period] = STATE(574), + [sym__list_upper_alpha_paren] = STATE(699), + [sym__list_item_upper_alpha_paren] = STATE(573), + [sym__list_upper_alpha_parens] = STATE(699), + [sym__list_item_upper_alpha_parens] = STATE(572), + [sym__list_lower_roman_period] = STATE(699), + [sym__list_item_lower_roman_period] = STATE(571), + [sym__list_lower_roman_paren] = STATE(699), + [sym__list_item_lower_roman_paren] = STATE(570), + [sym__list_lower_roman_parens] = STATE(699), + [sym__list_item_lower_roman_parens] = STATE(569), + [sym__list_upper_roman_period] = STATE(699), + [sym__list_item_upper_roman_period] = STATE(568), + [sym__list_upper_roman_paren] = STATE(699), + [sym__list_item_upper_roman_paren] = STATE(567), + [sym__list_upper_roman_parens] = STATE(699), + [sym__list_item_upper_roman_parens] = STATE(566), + [sym_list_item_content] = STATE(816), + [sym_table] = STATE(460), + [sym__table_content] = STATE(289), + [sym_table_separator] = STATE(289), + [sym_table_row] = STATE(363), + [sym_footnote] = STATE(460), + [sym_div] = STATE(460), + [sym_div_marker_begin] = STATE(941), + [sym_code_block] = STATE(460), + [sym_raw_block] = STATE(460), + [sym_thematic_break] = STATE(460), + [sym_block_quote] = STATE(460), + [sym__block_quote_prefix] = STATE(288), + [sym_link_reference_definition] = STATE(460), + [sym_block_attribute] = STATE(460), + [sym__paragraph] = STATE(460), + [sym__paragraph_content] = STATE(764), + [sym__inline] = STATE(703), + [sym__symbol_fallback] = STATE(366), + [aux_sym__list_dash_repeat1] = STATE(413), + [aux_sym__list_plus_repeat1] = STATE(418), + [aux_sym__list_star_repeat1] = STATE(417), + [aux_sym__list_task_repeat1] = STATE(381), + [aux_sym__list_definition_repeat1] = STATE(582), + [aux_sym__list_decimal_period_repeat1] = STATE(581), + [aux_sym__list_decimal_paren_repeat1] = STATE(579), + [aux_sym__list_decimal_parens_repeat1] = STATE(578), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(577), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(576), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(575), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(574), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(573), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(572), + [aux_sym__list_lower_roman_period_repeat1] = STATE(571), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(570), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(569), + [aux_sym__list_upper_roman_period_repeat1] = STATE(568), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(567), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(566), + [aux_sym_table_repeat1] = STATE(289), + [aux_sym__block_quote_prefix_repeat1] = STATE(323), + [aux_sym__inline_repeat1] = STATE(366), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(399), [aux_sym__inline_token1] = ACTIONS(11), [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__newline] = ACTIONS(408), - [sym__heading_begin] = ACTIONS(398), + [sym__newline] = ACTIONS(415), + [sym__heading_begin] = ACTIONS(403), [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(400), + [sym__code_block_begin] = ACTIONS(405), [sym_list_marker_dash] = ACTIONS(23), [sym_list_marker_star] = ACTIONS(25), [sym_list_marker_plus] = ACTIONS(27), @@ -7976,109 +8041,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(57), [sym_list_marker_lower_roman_parens] = ACTIONS(59), [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(402), - [sym__block_quote_continuation] = ACTIONS(65), - [sym__thematic_break_dash] = ACTIONS(404), - [sym__thematic_break_star] = ACTIONS(404), - [sym__footnote_begin] = ACTIONS(406), + [sym__block_quote_begin] = ACTIONS(407), + [sym__block_quote_continuation] = ACTIONS(409), + [sym__thematic_break_dash] = ACTIONS(411), + [sym__thematic_break_star] = ACTIONS(411), + [sym__footnote_begin] = ACTIONS(413), }, [31] = { - [sym__block_with_heading] = STATE(416), - [sym__block_element] = STATE(416), - [sym_heading] = STATE(416), - [sym_list] = STATE(416), - [sym__list_dash] = STATE(665), - [sym__list_item_dash] = STATE(364), - [sym__list_plus] = STATE(665), - [sym__list_item_plus] = STATE(384), - [sym__list_star] = STATE(665), - [sym__list_item_star] = STATE(386), - [sym__list_task] = STATE(665), - [sym__list_item_task] = STATE(333), - [sym_list_marker_task] = STATE(37), - [sym__list_definition] = STATE(665), - [sym__list_item_definition] = STATE(509), - [sym__list_decimal_period] = STATE(665), - [sym__list_item_decimal_period] = STATE(506), - [sym__list_decimal_paren] = STATE(665), - [sym__list_item_decimal_paren] = STATE(504), - [sym__list_decimal_parens] = STATE(665), - [sym__list_item_decimal_parens] = STATE(502), - [sym__list_lower_alpha_period] = STATE(665), - [sym__list_item_lower_alpha_period] = STATE(500), - [sym__list_lower_alpha_paren] = STATE(665), - [sym__list_item_lower_alpha_paren] = STATE(499), - [sym__list_lower_alpha_parens] = STATE(665), - [sym__list_item_lower_alpha_parens] = STATE(498), - [sym__list_upper_alpha_period] = STATE(665), - [sym__list_item_upper_alpha_period] = STATE(497), - [sym__list_upper_alpha_paren] = STATE(665), - [sym__list_item_upper_alpha_paren] = STATE(496), - [sym__list_upper_alpha_parens] = STATE(665), - [sym__list_item_upper_alpha_parens] = STATE(495), - [sym__list_lower_roman_period] = STATE(665), - [sym__list_item_lower_roman_period] = STATE(492), - [sym__list_lower_roman_paren] = STATE(665), - [sym__list_item_lower_roman_paren] = STATE(491), - [sym__list_lower_roman_parens] = STATE(665), - [sym__list_item_lower_roman_parens] = STATE(487), - [sym__list_upper_roman_period] = STATE(665), - [sym__list_item_upper_roman_period] = STATE(484), - [sym__list_upper_roman_paren] = STATE(665), - [sym__list_item_upper_roman_paren] = STATE(478), - [sym__list_upper_roman_parens] = STATE(665), - [sym__list_item_upper_roman_parens] = STATE(474), - [sym_list_item_content] = STATE(630), - [sym_table] = STATE(416), - [sym__table_content] = STATE(267), - [sym_table_separator] = STATE(267), - [sym_table_row] = STATE(327), - [sym_footnote] = STATE(416), - [sym_div] = STATE(416), - [sym_div_marker_begin] = STATE(914), - [sym_code_block] = STATE(416), - [sym_raw_block] = STATE(416), - [sym_thematic_break] = STATE(416), - [sym_block_quote] = STATE(416), - [sym__block_quote_prefix] = STATE(431), - [sym_link_reference_definition] = STATE(416), - [sym_block_attribute] = STATE(416), - [sym__paragraph] = STATE(416), - [sym__paragraph_content] = STATE(696), - [sym__inline] = STATE(683), - [sym__symbol_fallback] = STATE(329), - [aux_sym__list_dash_repeat1] = STATE(364), - [aux_sym__list_plus_repeat1] = STATE(384), - [aux_sym__list_star_repeat1] = STATE(386), - [aux_sym__list_task_repeat1] = STATE(333), - [aux_sym__list_definition_repeat1] = STATE(509), - [aux_sym__list_decimal_period_repeat1] = STATE(506), - [aux_sym__list_decimal_paren_repeat1] = STATE(504), - [aux_sym__list_decimal_parens_repeat1] = STATE(502), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(500), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(499), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(498), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(497), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(496), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(495), - [aux_sym__list_lower_roman_period_repeat1] = STATE(492), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(491), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(487), - [aux_sym__list_upper_roman_period_repeat1] = STATE(484), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(478), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), - [aux_sym_table_repeat1] = STATE(267), - [aux_sym__block_quote_prefix_repeat1] = STATE(397), - [aux_sym__inline_repeat1] = STATE(329), - [anon_sym_LBRACK] = ACTIONS(390), - [anon_sym_PIPE] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(394), + [sym__block_with_heading] = STATE(440), + [sym__block_element] = STATE(440), + [sym_heading] = STATE(440), + [sym_list] = STATE(440), + [sym__list_dash] = STATE(699), + [sym__list_item_dash] = STATE(413), + [sym__list_plus] = STATE(699), + [sym__list_item_plus] = STATE(418), + [sym__list_star] = STATE(699), + [sym__list_item_star] = STATE(417), + [sym__list_task] = STATE(699), + [sym__list_item_task] = STATE(381), + [sym_list_marker_task] = STATE(38), + [sym__list_definition] = STATE(699), + [sym__list_item_definition] = STATE(582), + [sym__list_decimal_period] = STATE(699), + [sym__list_item_decimal_period] = STATE(581), + [sym__list_decimal_paren] = STATE(699), + [sym__list_item_decimal_paren] = STATE(579), + [sym__list_decimal_parens] = STATE(699), + [sym__list_item_decimal_parens] = STATE(578), + [sym__list_lower_alpha_period] = STATE(699), + [sym__list_item_lower_alpha_period] = STATE(577), + [sym__list_lower_alpha_paren] = STATE(699), + [sym__list_item_lower_alpha_paren] = STATE(576), + [sym__list_lower_alpha_parens] = STATE(699), + [sym__list_item_lower_alpha_parens] = STATE(575), + [sym__list_upper_alpha_period] = STATE(699), + [sym__list_item_upper_alpha_period] = STATE(574), + [sym__list_upper_alpha_paren] = STATE(699), + [sym__list_item_upper_alpha_paren] = STATE(573), + [sym__list_upper_alpha_parens] = STATE(699), + [sym__list_item_upper_alpha_parens] = STATE(572), + [sym__list_lower_roman_period] = STATE(699), + [sym__list_item_lower_roman_period] = STATE(571), + [sym__list_lower_roman_paren] = STATE(699), + [sym__list_item_lower_roman_paren] = STATE(570), + [sym__list_lower_roman_parens] = STATE(699), + [sym__list_item_lower_roman_parens] = STATE(569), + [sym__list_upper_roman_period] = STATE(699), + [sym__list_item_upper_roman_period] = STATE(568), + [sym__list_upper_roman_paren] = STATE(699), + [sym__list_item_upper_roman_paren] = STATE(567), + [sym__list_upper_roman_parens] = STATE(699), + [sym__list_item_upper_roman_parens] = STATE(566), + [sym_list_item_content] = STATE(724), + [sym_table] = STATE(440), + [sym__table_content] = STATE(289), + [sym_table_separator] = STATE(289), + [sym_table_row] = STATE(363), + [sym_footnote] = STATE(440), + [sym_div] = STATE(440), + [sym_div_marker_begin] = STATE(941), + [sym_code_block] = STATE(440), + [sym_raw_block] = STATE(440), + [sym_thematic_break] = STATE(440), + [sym_block_quote] = STATE(440), + [sym__block_quote_prefix] = STATE(288), + [sym_link_reference_definition] = STATE(440), + [sym_block_attribute] = STATE(440), + [sym__paragraph] = STATE(440), + [sym__paragraph_content] = STATE(764), + [sym__inline] = STATE(703), + [sym__symbol_fallback] = STATE(366), + [aux_sym__list_dash_repeat1] = STATE(413), + [aux_sym__list_plus_repeat1] = STATE(418), + [aux_sym__list_star_repeat1] = STATE(417), + [aux_sym__list_task_repeat1] = STATE(381), + [aux_sym__list_definition_repeat1] = STATE(582), + [aux_sym__list_decimal_period_repeat1] = STATE(581), + [aux_sym__list_decimal_paren_repeat1] = STATE(579), + [aux_sym__list_decimal_parens_repeat1] = STATE(578), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(577), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(576), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(575), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(574), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(573), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(572), + [aux_sym__list_lower_roman_period_repeat1] = STATE(571), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(570), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(569), + [aux_sym__list_upper_roman_period_repeat1] = STATE(568), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(567), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(566), + [aux_sym_table_repeat1] = STATE(289), + [aux_sym__block_quote_prefix_repeat1] = STATE(323), + [aux_sym__inline_repeat1] = STATE(366), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(399), [aux_sym__inline_token1] = ACTIONS(11), [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__newline] = ACTIONS(408), - [sym__heading_begin] = ACTIONS(398), + [sym__newline] = ACTIONS(417), + [sym__heading_begin] = ACTIONS(403), [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(400), + [sym__code_block_begin] = ACTIONS(405), [sym_list_marker_dash] = ACTIONS(23), [sym_list_marker_star] = ACTIONS(25), [sym_list_marker_plus] = ACTIONS(27), @@ -8099,109 +8164,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(57), [sym_list_marker_lower_roman_parens] = ACTIONS(59), [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(402), - [sym__block_quote_continuation] = ACTIONS(65), - [sym__thematic_break_dash] = ACTIONS(404), - [sym__thematic_break_star] = ACTIONS(404), - [sym__footnote_begin] = ACTIONS(406), + [sym__block_quote_begin] = ACTIONS(407), + [sym__block_quote_continuation] = ACTIONS(409), + [sym__thematic_break_dash] = ACTIONS(411), + [sym__thematic_break_star] = ACTIONS(411), + [sym__footnote_begin] = ACTIONS(413), }, [32] = { - [sym__block_with_heading] = STATE(419), - [sym__block_element] = STATE(419), - [sym_heading] = STATE(419), - [sym_list] = STATE(419), - [sym__list_dash] = STATE(665), - [sym__list_item_dash] = STATE(364), - [sym__list_plus] = STATE(665), - [sym__list_item_plus] = STATE(384), - [sym__list_star] = STATE(665), - [sym__list_item_star] = STATE(386), - [sym__list_task] = STATE(665), - [sym__list_item_task] = STATE(333), - [sym_list_marker_task] = STATE(37), - [sym__list_definition] = STATE(665), - [sym__list_item_definition] = STATE(509), - [sym__list_decimal_period] = STATE(665), - [sym__list_item_decimal_period] = STATE(506), - [sym__list_decimal_paren] = STATE(665), - [sym__list_item_decimal_paren] = STATE(504), - [sym__list_decimal_parens] = STATE(665), - [sym__list_item_decimal_parens] = STATE(502), - [sym__list_lower_alpha_period] = STATE(665), - [sym__list_item_lower_alpha_period] = STATE(500), - [sym__list_lower_alpha_paren] = STATE(665), - [sym__list_item_lower_alpha_paren] = STATE(499), - [sym__list_lower_alpha_parens] = STATE(665), - [sym__list_item_lower_alpha_parens] = STATE(498), - [sym__list_upper_alpha_period] = STATE(665), - [sym__list_item_upper_alpha_period] = STATE(497), - [sym__list_upper_alpha_paren] = STATE(665), - [sym__list_item_upper_alpha_paren] = STATE(496), - [sym__list_upper_alpha_parens] = STATE(665), - [sym__list_item_upper_alpha_parens] = STATE(495), - [sym__list_lower_roman_period] = STATE(665), - [sym__list_item_lower_roman_period] = STATE(492), - [sym__list_lower_roman_paren] = STATE(665), - [sym__list_item_lower_roman_paren] = STATE(491), - [sym__list_lower_roman_parens] = STATE(665), - [sym__list_item_lower_roman_parens] = STATE(487), - [sym__list_upper_roman_period] = STATE(665), - [sym__list_item_upper_roman_period] = STATE(484), - [sym__list_upper_roman_paren] = STATE(665), - [sym__list_item_upper_roman_paren] = STATE(478), - [sym__list_upper_roman_parens] = STATE(665), - [sym__list_item_upper_roman_parens] = STATE(474), - [sym_list_item_content] = STATE(636), - [sym_table] = STATE(419), - [sym__table_content] = STATE(267), - [sym_table_separator] = STATE(267), - [sym_table_row] = STATE(327), - [sym_footnote] = STATE(419), - [sym_div] = STATE(419), - [sym_div_marker_begin] = STATE(914), - [sym_code_block] = STATE(419), - [sym_raw_block] = STATE(419), - [sym_thematic_break] = STATE(419), - [sym_block_quote] = STATE(419), - [sym__block_quote_prefix] = STATE(431), - [sym_link_reference_definition] = STATE(419), - [sym_block_attribute] = STATE(419), - [sym__paragraph] = STATE(419), - [sym__paragraph_content] = STATE(696), - [sym__inline] = STATE(683), - [sym__symbol_fallback] = STATE(329), - [aux_sym__list_dash_repeat1] = STATE(364), - [aux_sym__list_plus_repeat1] = STATE(384), - [aux_sym__list_star_repeat1] = STATE(386), - [aux_sym__list_task_repeat1] = STATE(333), - [aux_sym__list_definition_repeat1] = STATE(509), - [aux_sym__list_decimal_period_repeat1] = STATE(506), - [aux_sym__list_decimal_paren_repeat1] = STATE(504), - [aux_sym__list_decimal_parens_repeat1] = STATE(502), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(500), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(499), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(498), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(497), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(496), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(495), - [aux_sym__list_lower_roman_period_repeat1] = STATE(492), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(491), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(487), - [aux_sym__list_upper_roman_period_repeat1] = STATE(484), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(478), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), - [aux_sym_table_repeat1] = STATE(267), - [aux_sym__block_quote_prefix_repeat1] = STATE(397), - [aux_sym__inline_repeat1] = STATE(329), - [anon_sym_LBRACK] = ACTIONS(390), - [anon_sym_PIPE] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(394), + [sym__block_with_heading] = STATE(438), + [sym__block_element] = STATE(438), + [sym_heading] = STATE(438), + [sym_list] = STATE(438), + [sym__list_dash] = STATE(699), + [sym__list_item_dash] = STATE(413), + [sym__list_plus] = STATE(699), + [sym__list_item_plus] = STATE(418), + [sym__list_star] = STATE(699), + [sym__list_item_star] = STATE(417), + [sym__list_task] = STATE(699), + [sym__list_item_task] = STATE(381), + [sym_list_marker_task] = STATE(38), + [sym__list_definition] = STATE(699), + [sym__list_item_definition] = STATE(582), + [sym__list_decimal_period] = STATE(699), + [sym__list_item_decimal_period] = STATE(581), + [sym__list_decimal_paren] = STATE(699), + [sym__list_item_decimal_paren] = STATE(579), + [sym__list_decimal_parens] = STATE(699), + [sym__list_item_decimal_parens] = STATE(578), + [sym__list_lower_alpha_period] = STATE(699), + [sym__list_item_lower_alpha_period] = STATE(577), + [sym__list_lower_alpha_paren] = STATE(699), + [sym__list_item_lower_alpha_paren] = STATE(576), + [sym__list_lower_alpha_parens] = STATE(699), + [sym__list_item_lower_alpha_parens] = STATE(575), + [sym__list_upper_alpha_period] = STATE(699), + [sym__list_item_upper_alpha_period] = STATE(574), + [sym__list_upper_alpha_paren] = STATE(699), + [sym__list_item_upper_alpha_paren] = STATE(573), + [sym__list_upper_alpha_parens] = STATE(699), + [sym__list_item_upper_alpha_parens] = STATE(572), + [sym__list_lower_roman_period] = STATE(699), + [sym__list_item_lower_roman_period] = STATE(571), + [sym__list_lower_roman_paren] = STATE(699), + [sym__list_item_lower_roman_paren] = STATE(570), + [sym__list_lower_roman_parens] = STATE(699), + [sym__list_item_lower_roman_parens] = STATE(569), + [sym__list_upper_roman_period] = STATE(699), + [sym__list_item_upper_roman_period] = STATE(568), + [sym__list_upper_roman_paren] = STATE(699), + [sym__list_item_upper_roman_paren] = STATE(567), + [sym__list_upper_roman_parens] = STATE(699), + [sym__list_item_upper_roman_parens] = STATE(566), + [sym_list_item_content] = STATE(721), + [sym_table] = STATE(438), + [sym__table_content] = STATE(289), + [sym_table_separator] = STATE(289), + [sym_table_row] = STATE(363), + [sym_footnote] = STATE(438), + [sym_div] = STATE(438), + [sym_div_marker_begin] = STATE(941), + [sym_code_block] = STATE(438), + [sym_raw_block] = STATE(438), + [sym_thematic_break] = STATE(438), + [sym_block_quote] = STATE(438), + [sym__block_quote_prefix] = STATE(288), + [sym_link_reference_definition] = STATE(438), + [sym_block_attribute] = STATE(438), + [sym__paragraph] = STATE(438), + [sym__paragraph_content] = STATE(764), + [sym__inline] = STATE(703), + [sym__symbol_fallback] = STATE(366), + [aux_sym__list_dash_repeat1] = STATE(413), + [aux_sym__list_plus_repeat1] = STATE(418), + [aux_sym__list_star_repeat1] = STATE(417), + [aux_sym__list_task_repeat1] = STATE(381), + [aux_sym__list_definition_repeat1] = STATE(582), + [aux_sym__list_decimal_period_repeat1] = STATE(581), + [aux_sym__list_decimal_paren_repeat1] = STATE(579), + [aux_sym__list_decimal_parens_repeat1] = STATE(578), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(577), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(576), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(575), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(574), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(573), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(572), + [aux_sym__list_lower_roman_period_repeat1] = STATE(571), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(570), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(569), + [aux_sym__list_upper_roman_period_repeat1] = STATE(568), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(567), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(566), + [aux_sym_table_repeat1] = STATE(289), + [aux_sym__block_quote_prefix_repeat1] = STATE(323), + [aux_sym__inline_repeat1] = STATE(366), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(399), [aux_sym__inline_token1] = ACTIONS(11), [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__newline] = ACTIONS(410), - [sym__heading_begin] = ACTIONS(398), + [sym__newline] = ACTIONS(419), + [sym__heading_begin] = ACTIONS(403), [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(400), + [sym__code_block_begin] = ACTIONS(405), [sym_list_marker_dash] = ACTIONS(23), [sym_list_marker_star] = ACTIONS(25), [sym_list_marker_plus] = ACTIONS(27), @@ -8222,109 +8287,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(57), [sym_list_marker_lower_roman_parens] = ACTIONS(59), [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(402), - [sym__block_quote_continuation] = ACTIONS(65), - [sym__thematic_break_dash] = ACTIONS(404), - [sym__thematic_break_star] = ACTIONS(404), - [sym__footnote_begin] = ACTIONS(406), + [sym__block_quote_begin] = ACTIONS(407), + [sym__block_quote_continuation] = ACTIONS(409), + [sym__thematic_break_dash] = ACTIONS(411), + [sym__thematic_break_star] = ACTIONS(411), + [sym__footnote_begin] = ACTIONS(413), }, [33] = { - [sym__block_with_heading] = STATE(449), - [sym__block_element] = STATE(449), - [sym_heading] = STATE(449), - [sym_list] = STATE(449), - [sym__list_dash] = STATE(665), - [sym__list_item_dash] = STATE(364), - [sym__list_plus] = STATE(665), - [sym__list_item_plus] = STATE(384), - [sym__list_star] = STATE(665), - [sym__list_item_star] = STATE(386), - [sym__list_task] = STATE(665), - [sym__list_item_task] = STATE(333), - [sym_list_marker_task] = STATE(37), - [sym__list_definition] = STATE(665), - [sym__list_item_definition] = STATE(509), - [sym__list_decimal_period] = STATE(665), - [sym__list_item_decimal_period] = STATE(506), - [sym__list_decimal_paren] = STATE(665), - [sym__list_item_decimal_paren] = STATE(504), - [sym__list_decimal_parens] = STATE(665), - [sym__list_item_decimal_parens] = STATE(502), - [sym__list_lower_alpha_period] = STATE(665), - [sym__list_item_lower_alpha_period] = STATE(500), - [sym__list_lower_alpha_paren] = STATE(665), - [sym__list_item_lower_alpha_paren] = STATE(499), - [sym__list_lower_alpha_parens] = STATE(665), - [sym__list_item_lower_alpha_parens] = STATE(498), - [sym__list_upper_alpha_period] = STATE(665), - [sym__list_item_upper_alpha_period] = STATE(497), - [sym__list_upper_alpha_paren] = STATE(665), - [sym__list_item_upper_alpha_paren] = STATE(496), - [sym__list_upper_alpha_parens] = STATE(665), - [sym__list_item_upper_alpha_parens] = STATE(495), - [sym__list_lower_roman_period] = STATE(665), - [sym__list_item_lower_roman_period] = STATE(492), - [sym__list_lower_roman_paren] = STATE(665), - [sym__list_item_lower_roman_paren] = STATE(491), - [sym__list_lower_roman_parens] = STATE(665), - [sym__list_item_lower_roman_parens] = STATE(487), - [sym__list_upper_roman_period] = STATE(665), - [sym__list_item_upper_roman_period] = STATE(484), - [sym__list_upper_roman_paren] = STATE(665), - [sym__list_item_upper_roman_paren] = STATE(478), - [sym__list_upper_roman_parens] = STATE(665), - [sym__list_item_upper_roman_parens] = STATE(474), - [sym_list_item_content] = STATE(637), - [sym_table] = STATE(449), - [sym__table_content] = STATE(267), - [sym_table_separator] = STATE(267), - [sym_table_row] = STATE(327), - [sym_footnote] = STATE(449), - [sym_div] = STATE(449), - [sym_div_marker_begin] = STATE(914), - [sym_code_block] = STATE(449), - [sym_raw_block] = STATE(449), - [sym_thematic_break] = STATE(449), - [sym_block_quote] = STATE(449), - [sym__block_quote_prefix] = STATE(431), - [sym_link_reference_definition] = STATE(449), - [sym_block_attribute] = STATE(449), - [sym__paragraph] = STATE(449), - [sym__paragraph_content] = STATE(696), - [sym__inline] = STATE(683), - [sym__symbol_fallback] = STATE(329), - [aux_sym__list_dash_repeat1] = STATE(364), - [aux_sym__list_plus_repeat1] = STATE(384), - [aux_sym__list_star_repeat1] = STATE(386), - [aux_sym__list_task_repeat1] = STATE(333), - [aux_sym__list_definition_repeat1] = STATE(509), - [aux_sym__list_decimal_period_repeat1] = STATE(506), - [aux_sym__list_decimal_paren_repeat1] = STATE(504), - [aux_sym__list_decimal_parens_repeat1] = STATE(502), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(500), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(499), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(498), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(497), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(496), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(495), - [aux_sym__list_lower_roman_period_repeat1] = STATE(492), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(491), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(487), - [aux_sym__list_upper_roman_period_repeat1] = STATE(484), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(478), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), - [aux_sym_table_repeat1] = STATE(267), - [aux_sym__block_quote_prefix_repeat1] = STATE(397), - [aux_sym__inline_repeat1] = STATE(329), - [anon_sym_LBRACK] = ACTIONS(390), - [anon_sym_PIPE] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(394), + [sym__block_with_heading] = STATE(434), + [sym__block_element] = STATE(434), + [sym_heading] = STATE(434), + [sym_list] = STATE(434), + [sym__list_dash] = STATE(699), + [sym__list_item_dash] = STATE(413), + [sym__list_plus] = STATE(699), + [sym__list_item_plus] = STATE(418), + [sym__list_star] = STATE(699), + [sym__list_item_star] = STATE(417), + [sym__list_task] = STATE(699), + [sym__list_item_task] = STATE(381), + [sym_list_marker_task] = STATE(38), + [sym__list_definition] = STATE(699), + [sym__list_item_definition] = STATE(582), + [sym__list_decimal_period] = STATE(699), + [sym__list_item_decimal_period] = STATE(581), + [sym__list_decimal_paren] = STATE(699), + [sym__list_item_decimal_paren] = STATE(579), + [sym__list_decimal_parens] = STATE(699), + [sym__list_item_decimal_parens] = STATE(578), + [sym__list_lower_alpha_period] = STATE(699), + [sym__list_item_lower_alpha_period] = STATE(577), + [sym__list_lower_alpha_paren] = STATE(699), + [sym__list_item_lower_alpha_paren] = STATE(576), + [sym__list_lower_alpha_parens] = STATE(699), + [sym__list_item_lower_alpha_parens] = STATE(575), + [sym__list_upper_alpha_period] = STATE(699), + [sym__list_item_upper_alpha_period] = STATE(574), + [sym__list_upper_alpha_paren] = STATE(699), + [sym__list_item_upper_alpha_paren] = STATE(573), + [sym__list_upper_alpha_parens] = STATE(699), + [sym__list_item_upper_alpha_parens] = STATE(572), + [sym__list_lower_roman_period] = STATE(699), + [sym__list_item_lower_roman_period] = STATE(571), + [sym__list_lower_roman_paren] = STATE(699), + [sym__list_item_lower_roman_paren] = STATE(570), + [sym__list_lower_roman_parens] = STATE(699), + [sym__list_item_lower_roman_parens] = STATE(569), + [sym__list_upper_roman_period] = STATE(699), + [sym__list_item_upper_roman_period] = STATE(568), + [sym__list_upper_roman_paren] = STATE(699), + [sym__list_item_upper_roman_paren] = STATE(567), + [sym__list_upper_roman_parens] = STATE(699), + [sym__list_item_upper_roman_parens] = STATE(566), + [sym_list_item_content] = STATE(718), + [sym_table] = STATE(434), + [sym__table_content] = STATE(289), + [sym_table_separator] = STATE(289), + [sym_table_row] = STATE(363), + [sym_footnote] = STATE(434), + [sym_div] = STATE(434), + [sym_div_marker_begin] = STATE(941), + [sym_code_block] = STATE(434), + [sym_raw_block] = STATE(434), + [sym_thematic_break] = STATE(434), + [sym_block_quote] = STATE(434), + [sym__block_quote_prefix] = STATE(288), + [sym_link_reference_definition] = STATE(434), + [sym_block_attribute] = STATE(434), + [sym__paragraph] = STATE(434), + [sym__paragraph_content] = STATE(764), + [sym__inline] = STATE(703), + [sym__symbol_fallback] = STATE(366), + [aux_sym__list_dash_repeat1] = STATE(413), + [aux_sym__list_plus_repeat1] = STATE(418), + [aux_sym__list_star_repeat1] = STATE(417), + [aux_sym__list_task_repeat1] = STATE(381), + [aux_sym__list_definition_repeat1] = STATE(582), + [aux_sym__list_decimal_period_repeat1] = STATE(581), + [aux_sym__list_decimal_paren_repeat1] = STATE(579), + [aux_sym__list_decimal_parens_repeat1] = STATE(578), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(577), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(576), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(575), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(574), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(573), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(572), + [aux_sym__list_lower_roman_period_repeat1] = STATE(571), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(570), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(569), + [aux_sym__list_upper_roman_period_repeat1] = STATE(568), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(567), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(566), + [aux_sym_table_repeat1] = STATE(289), + [aux_sym__block_quote_prefix_repeat1] = STATE(323), + [aux_sym__inline_repeat1] = STATE(366), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(399), [aux_sym__inline_token1] = ACTIONS(11), [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__newline] = ACTIONS(412), - [sym__heading_begin] = ACTIONS(398), + [sym__newline] = ACTIONS(421), + [sym__heading_begin] = ACTIONS(403), [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(400), + [sym__code_block_begin] = ACTIONS(405), [sym_list_marker_dash] = ACTIONS(23), [sym_list_marker_star] = ACTIONS(25), [sym_list_marker_plus] = ACTIONS(27), @@ -8345,109 +8410,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(57), [sym_list_marker_lower_roman_parens] = ACTIONS(59), [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(402), - [sym__block_quote_continuation] = ACTIONS(65), - [sym__thematic_break_dash] = ACTIONS(404), - [sym__thematic_break_star] = ACTIONS(404), - [sym__footnote_begin] = ACTIONS(406), + [sym__block_quote_begin] = ACTIONS(407), + [sym__block_quote_continuation] = ACTIONS(409), + [sym__thematic_break_dash] = ACTIONS(411), + [sym__thematic_break_star] = ACTIONS(411), + [sym__footnote_begin] = ACTIONS(413), }, [34] = { - [sym__block_with_heading] = STATE(456), - [sym__block_element] = STATE(456), - [sym_heading] = STATE(456), - [sym_list] = STATE(456), - [sym__list_dash] = STATE(665), - [sym__list_item_dash] = STATE(364), - [sym__list_plus] = STATE(665), - [sym__list_item_plus] = STATE(384), - [sym__list_star] = STATE(665), - [sym__list_item_star] = STATE(386), - [sym__list_task] = STATE(665), - [sym__list_item_task] = STATE(333), - [sym_list_marker_task] = STATE(37), - [sym__list_definition] = STATE(665), - [sym__list_item_definition] = STATE(509), - [sym__list_decimal_period] = STATE(665), - [sym__list_item_decimal_period] = STATE(506), - [sym__list_decimal_paren] = STATE(665), - [sym__list_item_decimal_paren] = STATE(504), - [sym__list_decimal_parens] = STATE(665), - [sym__list_item_decimal_parens] = STATE(502), - [sym__list_lower_alpha_period] = STATE(665), - [sym__list_item_lower_alpha_period] = STATE(500), - [sym__list_lower_alpha_paren] = STATE(665), - [sym__list_item_lower_alpha_paren] = STATE(499), - [sym__list_lower_alpha_parens] = STATE(665), - [sym__list_item_lower_alpha_parens] = STATE(498), - [sym__list_upper_alpha_period] = STATE(665), - [sym__list_item_upper_alpha_period] = STATE(497), - [sym__list_upper_alpha_paren] = STATE(665), - [sym__list_item_upper_alpha_paren] = STATE(496), - [sym__list_upper_alpha_parens] = STATE(665), - [sym__list_item_upper_alpha_parens] = STATE(495), - [sym__list_lower_roman_period] = STATE(665), - [sym__list_item_lower_roman_period] = STATE(492), - [sym__list_lower_roman_paren] = STATE(665), - [sym__list_item_lower_roman_paren] = STATE(491), - [sym__list_lower_roman_parens] = STATE(665), - [sym__list_item_lower_roman_parens] = STATE(487), - [sym__list_upper_roman_period] = STATE(665), - [sym__list_item_upper_roman_period] = STATE(484), - [sym__list_upper_roman_paren] = STATE(665), - [sym__list_item_upper_roman_paren] = STATE(478), - [sym__list_upper_roman_parens] = STATE(665), - [sym__list_item_upper_roman_parens] = STATE(474), - [sym_list_item_content] = STATE(859), - [sym_table] = STATE(456), - [sym__table_content] = STATE(267), - [sym_table_separator] = STATE(267), - [sym_table_row] = STATE(327), - [sym_footnote] = STATE(456), - [sym_div] = STATE(456), - [sym_div_marker_begin] = STATE(914), - [sym_code_block] = STATE(456), - [sym_raw_block] = STATE(456), - [sym_thematic_break] = STATE(456), - [sym_block_quote] = STATE(456), - [sym__block_quote_prefix] = STATE(431), - [sym_link_reference_definition] = STATE(456), - [sym_block_attribute] = STATE(456), - [sym__paragraph] = STATE(456), - [sym__paragraph_content] = STATE(696), - [sym__inline] = STATE(683), - [sym__symbol_fallback] = STATE(329), - [aux_sym__list_dash_repeat1] = STATE(364), - [aux_sym__list_plus_repeat1] = STATE(384), - [aux_sym__list_star_repeat1] = STATE(386), - [aux_sym__list_task_repeat1] = STATE(333), - [aux_sym__list_definition_repeat1] = STATE(509), - [aux_sym__list_decimal_period_repeat1] = STATE(506), - [aux_sym__list_decimal_paren_repeat1] = STATE(504), - [aux_sym__list_decimal_parens_repeat1] = STATE(502), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(500), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(499), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(498), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(497), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(496), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(495), - [aux_sym__list_lower_roman_period_repeat1] = STATE(492), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(491), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(487), - [aux_sym__list_upper_roman_period_repeat1] = STATE(484), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(478), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), - [aux_sym_table_repeat1] = STATE(267), - [aux_sym__block_quote_prefix_repeat1] = STATE(397), - [aux_sym__inline_repeat1] = STATE(329), - [anon_sym_LBRACK] = ACTIONS(390), - [anon_sym_PIPE] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(394), + [sym__block_with_heading] = STATE(431), + [sym__block_element] = STATE(431), + [sym_heading] = STATE(431), + [sym_list] = STATE(431), + [sym__list_dash] = STATE(699), + [sym__list_item_dash] = STATE(413), + [sym__list_plus] = STATE(699), + [sym__list_item_plus] = STATE(418), + [sym__list_star] = STATE(699), + [sym__list_item_star] = STATE(417), + [sym__list_task] = STATE(699), + [sym__list_item_task] = STATE(381), + [sym_list_marker_task] = STATE(38), + [sym__list_definition] = STATE(699), + [sym__list_item_definition] = STATE(582), + [sym__list_decimal_period] = STATE(699), + [sym__list_item_decimal_period] = STATE(581), + [sym__list_decimal_paren] = STATE(699), + [sym__list_item_decimal_paren] = STATE(579), + [sym__list_decimal_parens] = STATE(699), + [sym__list_item_decimal_parens] = STATE(578), + [sym__list_lower_alpha_period] = STATE(699), + [sym__list_item_lower_alpha_period] = STATE(577), + [sym__list_lower_alpha_paren] = STATE(699), + [sym__list_item_lower_alpha_paren] = STATE(576), + [sym__list_lower_alpha_parens] = STATE(699), + [sym__list_item_lower_alpha_parens] = STATE(575), + [sym__list_upper_alpha_period] = STATE(699), + [sym__list_item_upper_alpha_period] = STATE(574), + [sym__list_upper_alpha_paren] = STATE(699), + [sym__list_item_upper_alpha_paren] = STATE(573), + [sym__list_upper_alpha_parens] = STATE(699), + [sym__list_item_upper_alpha_parens] = STATE(572), + [sym__list_lower_roman_period] = STATE(699), + [sym__list_item_lower_roman_period] = STATE(571), + [sym__list_lower_roman_paren] = STATE(699), + [sym__list_item_lower_roman_paren] = STATE(570), + [sym__list_lower_roman_parens] = STATE(699), + [sym__list_item_lower_roman_parens] = STATE(569), + [sym__list_upper_roman_period] = STATE(699), + [sym__list_item_upper_roman_period] = STATE(568), + [sym__list_upper_roman_paren] = STATE(699), + [sym__list_item_upper_roman_paren] = STATE(567), + [sym__list_upper_roman_parens] = STATE(699), + [sym__list_item_upper_roman_parens] = STATE(566), + [sym_list_item_content] = STATE(884), + [sym_table] = STATE(431), + [sym__table_content] = STATE(289), + [sym_table_separator] = STATE(289), + [sym_table_row] = STATE(363), + [sym_footnote] = STATE(431), + [sym_div] = STATE(431), + [sym_div_marker_begin] = STATE(941), + [sym_code_block] = STATE(431), + [sym_raw_block] = STATE(431), + [sym_thematic_break] = STATE(431), + [sym_block_quote] = STATE(431), + [sym__block_quote_prefix] = STATE(288), + [sym_link_reference_definition] = STATE(431), + [sym_block_attribute] = STATE(431), + [sym__paragraph] = STATE(431), + [sym__paragraph_content] = STATE(764), + [sym__inline] = STATE(703), + [sym__symbol_fallback] = STATE(366), + [aux_sym__list_dash_repeat1] = STATE(413), + [aux_sym__list_plus_repeat1] = STATE(418), + [aux_sym__list_star_repeat1] = STATE(417), + [aux_sym__list_task_repeat1] = STATE(381), + [aux_sym__list_definition_repeat1] = STATE(582), + [aux_sym__list_decimal_period_repeat1] = STATE(581), + [aux_sym__list_decimal_paren_repeat1] = STATE(579), + [aux_sym__list_decimal_parens_repeat1] = STATE(578), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(577), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(576), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(575), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(574), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(573), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(572), + [aux_sym__list_lower_roman_period_repeat1] = STATE(571), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(570), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(569), + [aux_sym__list_upper_roman_period_repeat1] = STATE(568), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(567), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(566), + [aux_sym_table_repeat1] = STATE(289), + [aux_sym__block_quote_prefix_repeat1] = STATE(323), + [aux_sym__inline_repeat1] = STATE(366), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(399), [aux_sym__inline_token1] = ACTIONS(11), [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__newline] = ACTIONS(414), - [sym__heading_begin] = ACTIONS(398), + [sym__newline] = ACTIONS(423), + [sym__heading_begin] = ACTIONS(403), [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(400), + [sym__code_block_begin] = ACTIONS(405), [sym_list_marker_dash] = ACTIONS(23), [sym_list_marker_star] = ACTIONS(25), [sym_list_marker_plus] = ACTIONS(27), @@ -8468,109 +8533,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(57), [sym_list_marker_lower_roman_parens] = ACTIONS(59), [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(402), - [sym__block_quote_continuation] = ACTIONS(65), - [sym__thematic_break_dash] = ACTIONS(404), - [sym__thematic_break_star] = ACTIONS(404), - [sym__footnote_begin] = ACTIONS(406), + [sym__block_quote_begin] = ACTIONS(407), + [sym__block_quote_continuation] = ACTIONS(409), + [sym__thematic_break_dash] = ACTIONS(411), + [sym__thematic_break_star] = ACTIONS(411), + [sym__footnote_begin] = ACTIONS(413), }, [35] = { - [sym__block_with_heading] = STATE(448), - [sym__block_element] = STATE(448), - [sym_heading] = STATE(448), - [sym_list] = STATE(448), - [sym__list_dash] = STATE(665), - [sym__list_item_dash] = STATE(364), - [sym__list_plus] = STATE(665), - [sym__list_item_plus] = STATE(384), - [sym__list_star] = STATE(665), - [sym__list_item_star] = STATE(386), - [sym__list_task] = STATE(665), - [sym__list_item_task] = STATE(333), - [sym_list_marker_task] = STATE(37), - [sym__list_definition] = STATE(665), - [sym__list_item_definition] = STATE(509), - [sym__list_decimal_period] = STATE(665), - [sym__list_item_decimal_period] = STATE(506), - [sym__list_decimal_paren] = STATE(665), - [sym__list_item_decimal_paren] = STATE(504), - [sym__list_decimal_parens] = STATE(665), - [sym__list_item_decimal_parens] = STATE(502), - [sym__list_lower_alpha_period] = STATE(665), - [sym__list_item_lower_alpha_period] = STATE(500), - [sym__list_lower_alpha_paren] = STATE(665), - [sym__list_item_lower_alpha_paren] = STATE(499), - [sym__list_lower_alpha_parens] = STATE(665), - [sym__list_item_lower_alpha_parens] = STATE(498), - [sym__list_upper_alpha_period] = STATE(665), - [sym__list_item_upper_alpha_period] = STATE(497), - [sym__list_upper_alpha_paren] = STATE(665), - [sym__list_item_upper_alpha_paren] = STATE(496), - [sym__list_upper_alpha_parens] = STATE(665), - [sym__list_item_upper_alpha_parens] = STATE(495), - [sym__list_lower_roman_period] = STATE(665), - [sym__list_item_lower_roman_period] = STATE(492), - [sym__list_lower_roman_paren] = STATE(665), - [sym__list_item_lower_roman_paren] = STATE(491), - [sym__list_lower_roman_parens] = STATE(665), - [sym__list_item_lower_roman_parens] = STATE(487), - [sym__list_upper_roman_period] = STATE(665), - [sym__list_item_upper_roman_period] = STATE(484), - [sym__list_upper_roman_paren] = STATE(665), - [sym__list_item_upper_roman_paren] = STATE(478), - [sym__list_upper_roman_parens] = STATE(665), - [sym__list_item_upper_roman_parens] = STATE(474), - [sym_list_item_content] = STATE(853), - [sym_table] = STATE(448), - [sym__table_content] = STATE(267), - [sym_table_separator] = STATE(267), - [sym_table_row] = STATE(327), - [sym_footnote] = STATE(448), - [sym_div] = STATE(448), - [sym_div_marker_begin] = STATE(914), - [sym_code_block] = STATE(448), - [sym_raw_block] = STATE(448), - [sym_thematic_break] = STATE(448), - [sym_block_quote] = STATE(448), - [sym__block_quote_prefix] = STATE(431), - [sym_link_reference_definition] = STATE(448), - [sym_block_attribute] = STATE(448), - [sym__paragraph] = STATE(448), - [sym__paragraph_content] = STATE(696), - [sym__inline] = STATE(683), - [sym__symbol_fallback] = STATE(329), - [aux_sym__list_dash_repeat1] = STATE(364), - [aux_sym__list_plus_repeat1] = STATE(384), - [aux_sym__list_star_repeat1] = STATE(386), - [aux_sym__list_task_repeat1] = STATE(333), - [aux_sym__list_definition_repeat1] = STATE(509), - [aux_sym__list_decimal_period_repeat1] = STATE(506), - [aux_sym__list_decimal_paren_repeat1] = STATE(504), - [aux_sym__list_decimal_parens_repeat1] = STATE(502), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(500), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(499), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(498), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(497), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(496), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(495), - [aux_sym__list_lower_roman_period_repeat1] = STATE(492), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(491), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(487), - [aux_sym__list_upper_roman_period_repeat1] = STATE(484), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(478), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), - [aux_sym_table_repeat1] = STATE(267), - [aux_sym__block_quote_prefix_repeat1] = STATE(397), - [aux_sym__inline_repeat1] = STATE(329), - [anon_sym_LBRACK] = ACTIONS(390), - [anon_sym_PIPE] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(394), + [sym__block_with_heading] = STATE(429), + [sym__block_element] = STATE(429), + [sym_heading] = STATE(429), + [sym_list] = STATE(429), + [sym__list_dash] = STATE(699), + [sym__list_item_dash] = STATE(413), + [sym__list_plus] = STATE(699), + [sym__list_item_plus] = STATE(418), + [sym__list_star] = STATE(699), + [sym__list_item_star] = STATE(417), + [sym__list_task] = STATE(699), + [sym__list_item_task] = STATE(381), + [sym_list_marker_task] = STATE(38), + [sym__list_definition] = STATE(699), + [sym__list_item_definition] = STATE(582), + [sym__list_decimal_period] = STATE(699), + [sym__list_item_decimal_period] = STATE(581), + [sym__list_decimal_paren] = STATE(699), + [sym__list_item_decimal_paren] = STATE(579), + [sym__list_decimal_parens] = STATE(699), + [sym__list_item_decimal_parens] = STATE(578), + [sym__list_lower_alpha_period] = STATE(699), + [sym__list_item_lower_alpha_period] = STATE(577), + [sym__list_lower_alpha_paren] = STATE(699), + [sym__list_item_lower_alpha_paren] = STATE(576), + [sym__list_lower_alpha_parens] = STATE(699), + [sym__list_item_lower_alpha_parens] = STATE(575), + [sym__list_upper_alpha_period] = STATE(699), + [sym__list_item_upper_alpha_period] = STATE(574), + [sym__list_upper_alpha_paren] = STATE(699), + [sym__list_item_upper_alpha_paren] = STATE(573), + [sym__list_upper_alpha_parens] = STATE(699), + [sym__list_item_upper_alpha_parens] = STATE(572), + [sym__list_lower_roman_period] = STATE(699), + [sym__list_item_lower_roman_period] = STATE(571), + [sym__list_lower_roman_paren] = STATE(699), + [sym__list_item_lower_roman_paren] = STATE(570), + [sym__list_lower_roman_parens] = STATE(699), + [sym__list_item_lower_roman_parens] = STATE(569), + [sym__list_upper_roman_period] = STATE(699), + [sym__list_item_upper_roman_period] = STATE(568), + [sym__list_upper_roman_paren] = STATE(699), + [sym__list_item_upper_roman_paren] = STATE(567), + [sym__list_upper_roman_parens] = STATE(699), + [sym__list_item_upper_roman_parens] = STATE(566), + [sym_list_item_content] = STATE(762), + [sym_table] = STATE(429), + [sym__table_content] = STATE(289), + [sym_table_separator] = STATE(289), + [sym_table_row] = STATE(363), + [sym_footnote] = STATE(429), + [sym_div] = STATE(429), + [sym_div_marker_begin] = STATE(941), + [sym_code_block] = STATE(429), + [sym_raw_block] = STATE(429), + [sym_thematic_break] = STATE(429), + [sym_block_quote] = STATE(429), + [sym__block_quote_prefix] = STATE(288), + [sym_link_reference_definition] = STATE(429), + [sym_block_attribute] = STATE(429), + [sym__paragraph] = STATE(429), + [sym__paragraph_content] = STATE(764), + [sym__inline] = STATE(703), + [sym__symbol_fallback] = STATE(366), + [aux_sym__list_dash_repeat1] = STATE(413), + [aux_sym__list_plus_repeat1] = STATE(418), + [aux_sym__list_star_repeat1] = STATE(417), + [aux_sym__list_task_repeat1] = STATE(381), + [aux_sym__list_definition_repeat1] = STATE(582), + [aux_sym__list_decimal_period_repeat1] = STATE(581), + [aux_sym__list_decimal_paren_repeat1] = STATE(579), + [aux_sym__list_decimal_parens_repeat1] = STATE(578), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(577), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(576), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(575), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(574), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(573), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(572), + [aux_sym__list_lower_roman_period_repeat1] = STATE(571), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(570), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(569), + [aux_sym__list_upper_roman_period_repeat1] = STATE(568), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(567), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(566), + [aux_sym_table_repeat1] = STATE(289), + [aux_sym__block_quote_prefix_repeat1] = STATE(323), + [aux_sym__inline_repeat1] = STATE(366), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(399), [aux_sym__inline_token1] = ACTIONS(11), [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__newline] = ACTIONS(416), - [sym__heading_begin] = ACTIONS(398), + [sym__newline] = ACTIONS(425), + [sym__heading_begin] = ACTIONS(403), [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(400), + [sym__code_block_begin] = ACTIONS(405), [sym_list_marker_dash] = ACTIONS(23), [sym_list_marker_star] = ACTIONS(25), [sym_list_marker_plus] = ACTIONS(27), @@ -8591,109 +8656,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(57), [sym_list_marker_lower_roman_parens] = ACTIONS(59), [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(402), - [sym__block_quote_continuation] = ACTIONS(65), - [sym__thematic_break_dash] = ACTIONS(404), - [sym__thematic_break_star] = ACTIONS(404), - [sym__footnote_begin] = ACTIONS(406), + [sym__block_quote_begin] = ACTIONS(407), + [sym__block_quote_continuation] = ACTIONS(409), + [sym__thematic_break_dash] = ACTIONS(411), + [sym__thematic_break_star] = ACTIONS(411), + [sym__footnote_begin] = ACTIONS(413), }, [36] = { - [sym__block_with_heading] = STATE(441), - [sym__block_element] = STATE(441), - [sym_heading] = STATE(441), - [sym_list] = STATE(441), - [sym__list_dash] = STATE(665), - [sym__list_item_dash] = STATE(364), - [sym__list_plus] = STATE(665), - [sym__list_item_plus] = STATE(384), - [sym__list_star] = STATE(665), - [sym__list_item_star] = STATE(386), - [sym__list_task] = STATE(665), - [sym__list_item_task] = STATE(333), - [sym_list_marker_task] = STATE(37), - [sym__list_definition] = STATE(665), - [sym__list_item_definition] = STATE(509), - [sym__list_decimal_period] = STATE(665), - [sym__list_item_decimal_period] = STATE(506), - [sym__list_decimal_paren] = STATE(665), - [sym__list_item_decimal_paren] = STATE(504), - [sym__list_decimal_parens] = STATE(665), - [sym__list_item_decimal_parens] = STATE(502), - [sym__list_lower_alpha_period] = STATE(665), - [sym__list_item_lower_alpha_period] = STATE(500), - [sym__list_lower_alpha_paren] = STATE(665), - [sym__list_item_lower_alpha_paren] = STATE(499), - [sym__list_lower_alpha_parens] = STATE(665), - [sym__list_item_lower_alpha_parens] = STATE(498), - [sym__list_upper_alpha_period] = STATE(665), - [sym__list_item_upper_alpha_period] = STATE(497), - [sym__list_upper_alpha_paren] = STATE(665), - [sym__list_item_upper_alpha_paren] = STATE(496), - [sym__list_upper_alpha_parens] = STATE(665), - [sym__list_item_upper_alpha_parens] = STATE(495), - [sym__list_lower_roman_period] = STATE(665), - [sym__list_item_lower_roman_period] = STATE(492), - [sym__list_lower_roman_paren] = STATE(665), - [sym__list_item_lower_roman_paren] = STATE(491), - [sym__list_lower_roman_parens] = STATE(665), - [sym__list_item_lower_roman_parens] = STATE(487), - [sym__list_upper_roman_period] = STATE(665), - [sym__list_item_upper_roman_period] = STATE(484), - [sym__list_upper_roman_paren] = STATE(665), - [sym__list_item_upper_roman_paren] = STATE(478), - [sym__list_upper_roman_parens] = STATE(665), - [sym__list_item_upper_roman_parens] = STATE(474), - [sym_list_item_content] = STATE(749), - [sym_table] = STATE(441), - [sym__table_content] = STATE(267), - [sym_table_separator] = STATE(267), - [sym_table_row] = STATE(327), - [sym_footnote] = STATE(441), - [sym_div] = STATE(441), - [sym_div_marker_begin] = STATE(914), - [sym_code_block] = STATE(441), - [sym_raw_block] = STATE(441), - [sym_thematic_break] = STATE(441), - [sym_block_quote] = STATE(441), - [sym__block_quote_prefix] = STATE(431), - [sym_link_reference_definition] = STATE(441), - [sym_block_attribute] = STATE(441), - [sym__paragraph] = STATE(441), - [sym__paragraph_content] = STATE(696), - [sym__inline] = STATE(683), - [sym__symbol_fallback] = STATE(329), - [aux_sym__list_dash_repeat1] = STATE(364), - [aux_sym__list_plus_repeat1] = STATE(384), - [aux_sym__list_star_repeat1] = STATE(386), - [aux_sym__list_task_repeat1] = STATE(333), - [aux_sym__list_definition_repeat1] = STATE(509), - [aux_sym__list_decimal_period_repeat1] = STATE(506), - [aux_sym__list_decimal_paren_repeat1] = STATE(504), - [aux_sym__list_decimal_parens_repeat1] = STATE(502), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(500), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(499), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(498), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(497), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(496), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(495), - [aux_sym__list_lower_roman_period_repeat1] = STATE(492), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(491), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(487), - [aux_sym__list_upper_roman_period_repeat1] = STATE(484), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(478), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), - [aux_sym_table_repeat1] = STATE(267), - [aux_sym__block_quote_prefix_repeat1] = STATE(397), - [aux_sym__inline_repeat1] = STATE(329), - [anon_sym_LBRACK] = ACTIONS(390), - [anon_sym_PIPE] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(394), + [sym__block_with_heading] = STATE(477), + [sym__block_element] = STATE(477), + [sym_heading] = STATE(477), + [sym_list] = STATE(477), + [sym__list_dash] = STATE(699), + [sym__list_item_dash] = STATE(413), + [sym__list_plus] = STATE(699), + [sym__list_item_plus] = STATE(418), + [sym__list_star] = STATE(699), + [sym__list_item_star] = STATE(417), + [sym__list_task] = STATE(699), + [sym__list_item_task] = STATE(381), + [sym_list_marker_task] = STATE(38), + [sym__list_definition] = STATE(699), + [sym__list_item_definition] = STATE(582), + [sym__list_decimal_period] = STATE(699), + [sym__list_item_decimal_period] = STATE(581), + [sym__list_decimal_paren] = STATE(699), + [sym__list_item_decimal_paren] = STATE(579), + [sym__list_decimal_parens] = STATE(699), + [sym__list_item_decimal_parens] = STATE(578), + [sym__list_lower_alpha_period] = STATE(699), + [sym__list_item_lower_alpha_period] = STATE(577), + [sym__list_lower_alpha_paren] = STATE(699), + [sym__list_item_lower_alpha_paren] = STATE(576), + [sym__list_lower_alpha_parens] = STATE(699), + [sym__list_item_lower_alpha_parens] = STATE(575), + [sym__list_upper_alpha_period] = STATE(699), + [sym__list_item_upper_alpha_period] = STATE(574), + [sym__list_upper_alpha_paren] = STATE(699), + [sym__list_item_upper_alpha_paren] = STATE(573), + [sym__list_upper_alpha_parens] = STATE(699), + [sym__list_item_upper_alpha_parens] = STATE(572), + [sym__list_lower_roman_period] = STATE(699), + [sym__list_item_lower_roman_period] = STATE(571), + [sym__list_lower_roman_paren] = STATE(699), + [sym__list_item_lower_roman_paren] = STATE(570), + [sym__list_lower_roman_parens] = STATE(699), + [sym__list_item_lower_roman_parens] = STATE(569), + [sym__list_upper_roman_period] = STATE(699), + [sym__list_item_upper_roman_period] = STATE(568), + [sym__list_upper_roman_paren] = STATE(699), + [sym__list_item_upper_roman_paren] = STATE(567), + [sym__list_upper_roman_parens] = STATE(699), + [sym__list_item_upper_roman_parens] = STATE(566), + [sym_list_item_content] = STATE(811), + [sym_table] = STATE(477), + [sym__table_content] = STATE(289), + [sym_table_separator] = STATE(289), + [sym_table_row] = STATE(363), + [sym_footnote] = STATE(477), + [sym_div] = STATE(477), + [sym_div_marker_begin] = STATE(941), + [sym_code_block] = STATE(477), + [sym_raw_block] = STATE(477), + [sym_thematic_break] = STATE(477), + [sym_block_quote] = STATE(477), + [sym__block_quote_prefix] = STATE(288), + [sym_link_reference_definition] = STATE(477), + [sym_block_attribute] = STATE(477), + [sym__paragraph] = STATE(477), + [sym__paragraph_content] = STATE(764), + [sym__inline] = STATE(703), + [sym__symbol_fallback] = STATE(366), + [aux_sym__list_dash_repeat1] = STATE(413), + [aux_sym__list_plus_repeat1] = STATE(418), + [aux_sym__list_star_repeat1] = STATE(417), + [aux_sym__list_task_repeat1] = STATE(381), + [aux_sym__list_definition_repeat1] = STATE(582), + [aux_sym__list_decimal_period_repeat1] = STATE(581), + [aux_sym__list_decimal_paren_repeat1] = STATE(579), + [aux_sym__list_decimal_parens_repeat1] = STATE(578), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(577), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(576), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(575), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(574), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(573), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(572), + [aux_sym__list_lower_roman_period_repeat1] = STATE(571), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(570), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(569), + [aux_sym__list_upper_roman_period_repeat1] = STATE(568), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(567), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(566), + [aux_sym_table_repeat1] = STATE(289), + [aux_sym__block_quote_prefix_repeat1] = STATE(323), + [aux_sym__inline_repeat1] = STATE(366), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(399), [aux_sym__inline_token1] = ACTIONS(11), [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__newline] = ACTIONS(418), - [sym__heading_begin] = ACTIONS(398), + [sym__newline] = ACTIONS(427), + [sym__heading_begin] = ACTIONS(403), [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(400), + [sym__code_block_begin] = ACTIONS(405), [sym_list_marker_dash] = ACTIONS(23), [sym_list_marker_star] = ACTIONS(25), [sym_list_marker_plus] = ACTIONS(27), @@ -8714,109 +8779,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(57), [sym_list_marker_lower_roman_parens] = ACTIONS(59), [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(402), - [sym__block_quote_continuation] = ACTIONS(65), - [sym__thematic_break_dash] = ACTIONS(404), - [sym__thematic_break_star] = ACTIONS(404), - [sym__footnote_begin] = ACTIONS(406), + [sym__block_quote_begin] = ACTIONS(407), + [sym__block_quote_continuation] = ACTIONS(409), + [sym__thematic_break_dash] = ACTIONS(411), + [sym__thematic_break_star] = ACTIONS(411), + [sym__footnote_begin] = ACTIONS(413), }, [37] = { - [sym__block_with_heading] = STATE(442), - [sym__block_element] = STATE(442), - [sym_heading] = STATE(442), - [sym_list] = STATE(442), - [sym__list_dash] = STATE(665), - [sym__list_item_dash] = STATE(364), - [sym__list_plus] = STATE(665), - [sym__list_item_plus] = STATE(384), - [sym__list_star] = STATE(665), - [sym__list_item_star] = STATE(386), - [sym__list_task] = STATE(665), - [sym__list_item_task] = STATE(333), - [sym_list_marker_task] = STATE(37), - [sym__list_definition] = STATE(665), - [sym__list_item_definition] = STATE(509), - [sym__list_decimal_period] = STATE(665), - [sym__list_item_decimal_period] = STATE(506), - [sym__list_decimal_paren] = STATE(665), - [sym__list_item_decimal_paren] = STATE(504), - [sym__list_decimal_parens] = STATE(665), - [sym__list_item_decimal_parens] = STATE(502), - [sym__list_lower_alpha_period] = STATE(665), - [sym__list_item_lower_alpha_period] = STATE(500), - [sym__list_lower_alpha_paren] = STATE(665), - [sym__list_item_lower_alpha_paren] = STATE(499), - [sym__list_lower_alpha_parens] = STATE(665), - [sym__list_item_lower_alpha_parens] = STATE(498), - [sym__list_upper_alpha_period] = STATE(665), - [sym__list_item_upper_alpha_period] = STATE(497), - [sym__list_upper_alpha_paren] = STATE(665), - [sym__list_item_upper_alpha_paren] = STATE(496), - [sym__list_upper_alpha_parens] = STATE(665), - [sym__list_item_upper_alpha_parens] = STATE(495), - [sym__list_lower_roman_period] = STATE(665), - [sym__list_item_lower_roman_period] = STATE(492), - [sym__list_lower_roman_paren] = STATE(665), - [sym__list_item_lower_roman_paren] = STATE(491), - [sym__list_lower_roman_parens] = STATE(665), - [sym__list_item_lower_roman_parens] = STATE(487), - [sym__list_upper_roman_period] = STATE(665), - [sym__list_item_upper_roman_period] = STATE(484), - [sym__list_upper_roman_paren] = STATE(665), - [sym__list_item_upper_roman_paren] = STATE(478), - [sym__list_upper_roman_parens] = STATE(665), - [sym__list_item_upper_roman_parens] = STATE(474), - [sym_list_item_content] = STATE(607), - [sym_table] = STATE(442), - [sym__table_content] = STATE(267), - [sym_table_separator] = STATE(267), - [sym_table_row] = STATE(327), - [sym_footnote] = STATE(442), - [sym_div] = STATE(442), - [sym_div_marker_begin] = STATE(914), - [sym_code_block] = STATE(442), - [sym_raw_block] = STATE(442), - [sym_thematic_break] = STATE(442), - [sym_block_quote] = STATE(442), - [sym__block_quote_prefix] = STATE(431), - [sym_link_reference_definition] = STATE(442), - [sym_block_attribute] = STATE(442), - [sym__paragraph] = STATE(442), - [sym__paragraph_content] = STATE(696), - [sym__inline] = STATE(683), - [sym__symbol_fallback] = STATE(329), - [aux_sym__list_dash_repeat1] = STATE(364), - [aux_sym__list_plus_repeat1] = STATE(384), - [aux_sym__list_star_repeat1] = STATE(386), - [aux_sym__list_task_repeat1] = STATE(333), - [aux_sym__list_definition_repeat1] = STATE(509), - [aux_sym__list_decimal_period_repeat1] = STATE(506), - [aux_sym__list_decimal_paren_repeat1] = STATE(504), - [aux_sym__list_decimal_parens_repeat1] = STATE(502), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(500), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(499), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(498), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(497), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(496), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(495), - [aux_sym__list_lower_roman_period_repeat1] = STATE(492), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(491), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(487), - [aux_sym__list_upper_roman_period_repeat1] = STATE(484), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(478), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), - [aux_sym_table_repeat1] = STATE(267), - [aux_sym__block_quote_prefix_repeat1] = STATE(397), - [aux_sym__inline_repeat1] = STATE(329), - [anon_sym_LBRACK] = ACTIONS(390), - [anon_sym_PIPE] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(394), + [sym__block_with_heading] = STATE(425), + [sym__block_element] = STATE(425), + [sym_heading] = STATE(425), + [sym_list] = STATE(425), + [sym__list_dash] = STATE(699), + [sym__list_item_dash] = STATE(413), + [sym__list_plus] = STATE(699), + [sym__list_item_plus] = STATE(418), + [sym__list_star] = STATE(699), + [sym__list_item_star] = STATE(417), + [sym__list_task] = STATE(699), + [sym__list_item_task] = STATE(381), + [sym_list_marker_task] = STATE(38), + [sym__list_definition] = STATE(699), + [sym__list_item_definition] = STATE(582), + [sym__list_decimal_period] = STATE(699), + [sym__list_item_decimal_period] = STATE(581), + [sym__list_decimal_paren] = STATE(699), + [sym__list_item_decimal_paren] = STATE(579), + [sym__list_decimal_parens] = STATE(699), + [sym__list_item_decimal_parens] = STATE(578), + [sym__list_lower_alpha_period] = STATE(699), + [sym__list_item_lower_alpha_period] = STATE(577), + [sym__list_lower_alpha_paren] = STATE(699), + [sym__list_item_lower_alpha_paren] = STATE(576), + [sym__list_lower_alpha_parens] = STATE(699), + [sym__list_item_lower_alpha_parens] = STATE(575), + [sym__list_upper_alpha_period] = STATE(699), + [sym__list_item_upper_alpha_period] = STATE(574), + [sym__list_upper_alpha_paren] = STATE(699), + [sym__list_item_upper_alpha_paren] = STATE(573), + [sym__list_upper_alpha_parens] = STATE(699), + [sym__list_item_upper_alpha_parens] = STATE(572), + [sym__list_lower_roman_period] = STATE(699), + [sym__list_item_lower_roman_period] = STATE(571), + [sym__list_lower_roman_paren] = STATE(699), + [sym__list_item_lower_roman_paren] = STATE(570), + [sym__list_lower_roman_parens] = STATE(699), + [sym__list_item_lower_roman_parens] = STATE(569), + [sym__list_upper_roman_period] = STATE(699), + [sym__list_item_upper_roman_period] = STATE(568), + [sym__list_upper_roman_paren] = STATE(699), + [sym__list_item_upper_roman_paren] = STATE(567), + [sym__list_upper_roman_parens] = STATE(699), + [sym__list_item_upper_roman_parens] = STATE(566), + [sym_list_item_content] = STATE(807), + [sym_table] = STATE(425), + [sym__table_content] = STATE(289), + [sym_table_separator] = STATE(289), + [sym_table_row] = STATE(363), + [sym_footnote] = STATE(425), + [sym_div] = STATE(425), + [sym_div_marker_begin] = STATE(941), + [sym_code_block] = STATE(425), + [sym_raw_block] = STATE(425), + [sym_thematic_break] = STATE(425), + [sym_block_quote] = STATE(425), + [sym__block_quote_prefix] = STATE(288), + [sym_link_reference_definition] = STATE(425), + [sym_block_attribute] = STATE(425), + [sym__paragraph] = STATE(425), + [sym__paragraph_content] = STATE(764), + [sym__inline] = STATE(703), + [sym__symbol_fallback] = STATE(366), + [aux_sym__list_dash_repeat1] = STATE(413), + [aux_sym__list_plus_repeat1] = STATE(418), + [aux_sym__list_star_repeat1] = STATE(417), + [aux_sym__list_task_repeat1] = STATE(381), + [aux_sym__list_definition_repeat1] = STATE(582), + [aux_sym__list_decimal_period_repeat1] = STATE(581), + [aux_sym__list_decimal_paren_repeat1] = STATE(579), + [aux_sym__list_decimal_parens_repeat1] = STATE(578), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(577), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(576), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(575), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(574), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(573), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(572), + [aux_sym__list_lower_roman_period_repeat1] = STATE(571), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(570), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(569), + [aux_sym__list_upper_roman_period_repeat1] = STATE(568), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(567), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(566), + [aux_sym_table_repeat1] = STATE(289), + [aux_sym__block_quote_prefix_repeat1] = STATE(323), + [aux_sym__inline_repeat1] = STATE(366), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(399), [aux_sym__inline_token1] = ACTIONS(11), [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__newline] = ACTIONS(420), - [sym__heading_begin] = ACTIONS(398), + [sym__newline] = ACTIONS(429), + [sym__heading_begin] = ACTIONS(403), [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(400), + [sym__code_block_begin] = ACTIONS(405), [sym_list_marker_dash] = ACTIONS(23), [sym_list_marker_star] = ACTIONS(25), [sym_list_marker_plus] = ACTIONS(27), @@ -8837,109 +8902,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(57), [sym_list_marker_lower_roman_parens] = ACTIONS(59), [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(402), - [sym__block_quote_continuation] = ACTIONS(65), - [sym__thematic_break_dash] = ACTIONS(404), - [sym__thematic_break_star] = ACTIONS(404), - [sym__footnote_begin] = ACTIONS(406), + [sym__block_quote_begin] = ACTIONS(407), + [sym__block_quote_continuation] = ACTIONS(409), + [sym__thematic_break_dash] = ACTIONS(411), + [sym__thematic_break_star] = ACTIONS(411), + [sym__footnote_begin] = ACTIONS(413), }, [38] = { - [sym__block_with_heading] = STATE(452), - [sym__block_element] = STATE(452), - [sym_heading] = STATE(452), - [sym_list] = STATE(452), - [sym__list_dash] = STATE(665), - [sym__list_item_dash] = STATE(364), - [sym__list_plus] = STATE(665), - [sym__list_item_plus] = STATE(384), - [sym__list_star] = STATE(665), - [sym__list_item_star] = STATE(386), - [sym__list_task] = STATE(665), - [sym__list_item_task] = STATE(333), - [sym_list_marker_task] = STATE(37), - [sym__list_definition] = STATE(665), - [sym__list_item_definition] = STATE(509), - [sym__list_decimal_period] = STATE(665), - [sym__list_item_decimal_period] = STATE(506), - [sym__list_decimal_paren] = STATE(665), - [sym__list_item_decimal_paren] = STATE(504), - [sym__list_decimal_parens] = STATE(665), - [sym__list_item_decimal_parens] = STATE(502), - [sym__list_lower_alpha_period] = STATE(665), - [sym__list_item_lower_alpha_period] = STATE(500), - [sym__list_lower_alpha_paren] = STATE(665), - [sym__list_item_lower_alpha_paren] = STATE(499), - [sym__list_lower_alpha_parens] = STATE(665), - [sym__list_item_lower_alpha_parens] = STATE(498), - [sym__list_upper_alpha_period] = STATE(665), - [sym__list_item_upper_alpha_period] = STATE(497), - [sym__list_upper_alpha_paren] = STATE(665), - [sym__list_item_upper_alpha_paren] = STATE(496), - [sym__list_upper_alpha_parens] = STATE(665), - [sym__list_item_upper_alpha_parens] = STATE(495), - [sym__list_lower_roman_period] = STATE(665), - [sym__list_item_lower_roman_period] = STATE(492), - [sym__list_lower_roman_paren] = STATE(665), - [sym__list_item_lower_roman_paren] = STATE(491), - [sym__list_lower_roman_parens] = STATE(665), - [sym__list_item_lower_roman_parens] = STATE(487), - [sym__list_upper_roman_period] = STATE(665), - [sym__list_item_upper_roman_period] = STATE(484), - [sym__list_upper_roman_paren] = STATE(665), - [sym__list_item_upper_roman_paren] = STATE(478), - [sym__list_upper_roman_parens] = STATE(665), - [sym__list_item_upper_roman_parens] = STATE(474), - [sym_list_item_content] = STATE(760), - [sym_table] = STATE(452), - [sym__table_content] = STATE(267), - [sym_table_separator] = STATE(267), - [sym_table_row] = STATE(327), - [sym_footnote] = STATE(452), - [sym_div] = STATE(452), - [sym_div_marker_begin] = STATE(914), - [sym_code_block] = STATE(452), - [sym_raw_block] = STATE(452), - [sym_thematic_break] = STATE(452), - [sym_block_quote] = STATE(452), - [sym__block_quote_prefix] = STATE(431), - [sym_link_reference_definition] = STATE(452), - [sym_block_attribute] = STATE(452), - [sym__paragraph] = STATE(452), - [sym__paragraph_content] = STATE(696), - [sym__inline] = STATE(683), - [sym__symbol_fallback] = STATE(329), - [aux_sym__list_dash_repeat1] = STATE(364), - [aux_sym__list_plus_repeat1] = STATE(384), - [aux_sym__list_star_repeat1] = STATE(386), - [aux_sym__list_task_repeat1] = STATE(333), - [aux_sym__list_definition_repeat1] = STATE(509), - [aux_sym__list_decimal_period_repeat1] = STATE(506), - [aux_sym__list_decimal_paren_repeat1] = STATE(504), - [aux_sym__list_decimal_parens_repeat1] = STATE(502), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(500), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(499), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(498), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(497), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(496), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(495), - [aux_sym__list_lower_roman_period_repeat1] = STATE(492), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(491), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(487), - [aux_sym__list_upper_roman_period_repeat1] = STATE(484), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(478), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), - [aux_sym_table_repeat1] = STATE(267), - [aux_sym__block_quote_prefix_repeat1] = STATE(397), - [aux_sym__inline_repeat1] = STATE(329), - [anon_sym_LBRACK] = ACTIONS(390), - [anon_sym_PIPE] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(394), + [sym__block_with_heading] = STATE(446), + [sym__block_element] = STATE(446), + [sym_heading] = STATE(446), + [sym_list] = STATE(446), + [sym__list_dash] = STATE(699), + [sym__list_item_dash] = STATE(413), + [sym__list_plus] = STATE(699), + [sym__list_item_plus] = STATE(418), + [sym__list_star] = STATE(699), + [sym__list_item_star] = STATE(417), + [sym__list_task] = STATE(699), + [sym__list_item_task] = STATE(381), + [sym_list_marker_task] = STATE(38), + [sym__list_definition] = STATE(699), + [sym__list_item_definition] = STATE(582), + [sym__list_decimal_period] = STATE(699), + [sym__list_item_decimal_period] = STATE(581), + [sym__list_decimal_paren] = STATE(699), + [sym__list_item_decimal_paren] = STATE(579), + [sym__list_decimal_parens] = STATE(699), + [sym__list_item_decimal_parens] = STATE(578), + [sym__list_lower_alpha_period] = STATE(699), + [sym__list_item_lower_alpha_period] = STATE(577), + [sym__list_lower_alpha_paren] = STATE(699), + [sym__list_item_lower_alpha_paren] = STATE(576), + [sym__list_lower_alpha_parens] = STATE(699), + [sym__list_item_lower_alpha_parens] = STATE(575), + [sym__list_upper_alpha_period] = STATE(699), + [sym__list_item_upper_alpha_period] = STATE(574), + [sym__list_upper_alpha_paren] = STATE(699), + [sym__list_item_upper_alpha_paren] = STATE(573), + [sym__list_upper_alpha_parens] = STATE(699), + [sym__list_item_upper_alpha_parens] = STATE(572), + [sym__list_lower_roman_period] = STATE(699), + [sym__list_item_lower_roman_period] = STATE(571), + [sym__list_lower_roman_paren] = STATE(699), + [sym__list_item_lower_roman_paren] = STATE(570), + [sym__list_lower_roman_parens] = STATE(699), + [sym__list_item_lower_roman_parens] = STATE(569), + [sym__list_upper_roman_period] = STATE(699), + [sym__list_item_upper_roman_period] = STATE(568), + [sym__list_upper_roman_paren] = STATE(699), + [sym__list_item_upper_roman_paren] = STATE(567), + [sym__list_upper_roman_parens] = STATE(699), + [sym__list_item_upper_roman_parens] = STATE(566), + [sym_list_item_content] = STATE(667), + [sym_table] = STATE(446), + [sym__table_content] = STATE(289), + [sym_table_separator] = STATE(289), + [sym_table_row] = STATE(363), + [sym_footnote] = STATE(446), + [sym_div] = STATE(446), + [sym_div_marker_begin] = STATE(941), + [sym_code_block] = STATE(446), + [sym_raw_block] = STATE(446), + [sym_thematic_break] = STATE(446), + [sym_block_quote] = STATE(446), + [sym__block_quote_prefix] = STATE(288), + [sym_link_reference_definition] = STATE(446), + [sym_block_attribute] = STATE(446), + [sym__paragraph] = STATE(446), + [sym__paragraph_content] = STATE(764), + [sym__inline] = STATE(703), + [sym__symbol_fallback] = STATE(366), + [aux_sym__list_dash_repeat1] = STATE(413), + [aux_sym__list_plus_repeat1] = STATE(418), + [aux_sym__list_star_repeat1] = STATE(417), + [aux_sym__list_task_repeat1] = STATE(381), + [aux_sym__list_definition_repeat1] = STATE(582), + [aux_sym__list_decimal_period_repeat1] = STATE(581), + [aux_sym__list_decimal_paren_repeat1] = STATE(579), + [aux_sym__list_decimal_parens_repeat1] = STATE(578), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(577), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(576), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(575), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(574), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(573), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(572), + [aux_sym__list_lower_roman_period_repeat1] = STATE(571), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(570), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(569), + [aux_sym__list_upper_roman_period_repeat1] = STATE(568), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(567), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(566), + [aux_sym_table_repeat1] = STATE(289), + [aux_sym__block_quote_prefix_repeat1] = STATE(323), + [aux_sym__inline_repeat1] = STATE(366), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(399), [aux_sym__inline_token1] = ACTIONS(11), [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__newline] = ACTIONS(422), - [sym__heading_begin] = ACTIONS(398), + [sym__newline] = ACTIONS(431), + [sym__heading_begin] = ACTIONS(403), [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(400), + [sym__code_block_begin] = ACTIONS(405), [sym_list_marker_dash] = ACTIONS(23), [sym_list_marker_star] = ACTIONS(25), [sym_list_marker_plus] = ACTIONS(27), @@ -8960,109 +9025,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(57), [sym_list_marker_lower_roman_parens] = ACTIONS(59), [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(402), - [sym__block_quote_continuation] = ACTIONS(65), - [sym__thematic_break_dash] = ACTIONS(404), - [sym__thematic_break_star] = ACTIONS(404), - [sym__footnote_begin] = ACTIONS(406), + [sym__block_quote_begin] = ACTIONS(407), + [sym__block_quote_continuation] = ACTIONS(409), + [sym__thematic_break_dash] = ACTIONS(411), + [sym__thematic_break_star] = ACTIONS(411), + [sym__footnote_begin] = ACTIONS(413), }, [39] = { - [sym__block_with_heading] = STATE(439), - [sym__block_element] = STATE(439), - [sym_heading] = STATE(439), - [sym_list] = STATE(439), - [sym__list_dash] = STATE(665), - [sym__list_item_dash] = STATE(364), - [sym__list_plus] = STATE(665), - [sym__list_item_plus] = STATE(384), - [sym__list_star] = STATE(665), - [sym__list_item_star] = STATE(386), - [sym__list_task] = STATE(665), - [sym__list_item_task] = STATE(333), - [sym_list_marker_task] = STATE(37), - [sym__list_definition] = STATE(665), - [sym__list_item_definition] = STATE(509), - [sym__list_decimal_period] = STATE(665), - [sym__list_item_decimal_period] = STATE(506), - [sym__list_decimal_paren] = STATE(665), - [sym__list_item_decimal_paren] = STATE(504), - [sym__list_decimal_parens] = STATE(665), - [sym__list_item_decimal_parens] = STATE(502), - [sym__list_lower_alpha_period] = STATE(665), - [sym__list_item_lower_alpha_period] = STATE(500), - [sym__list_lower_alpha_paren] = STATE(665), - [sym__list_item_lower_alpha_paren] = STATE(499), - [sym__list_lower_alpha_parens] = STATE(665), - [sym__list_item_lower_alpha_parens] = STATE(498), - [sym__list_upper_alpha_period] = STATE(665), - [sym__list_item_upper_alpha_period] = STATE(497), - [sym__list_upper_alpha_paren] = STATE(665), - [sym__list_item_upper_alpha_paren] = STATE(496), - [sym__list_upper_alpha_parens] = STATE(665), - [sym__list_item_upper_alpha_parens] = STATE(495), - [sym__list_lower_roman_period] = STATE(665), - [sym__list_item_lower_roman_period] = STATE(492), - [sym__list_lower_roman_paren] = STATE(665), - [sym__list_item_lower_roman_paren] = STATE(491), - [sym__list_lower_roman_parens] = STATE(665), - [sym__list_item_lower_roman_parens] = STATE(487), - [sym__list_upper_roman_period] = STATE(665), - [sym__list_item_upper_roman_period] = STATE(484), - [sym__list_upper_roman_paren] = STATE(665), - [sym__list_item_upper_roman_paren] = STATE(478), - [sym__list_upper_roman_parens] = STATE(665), - [sym__list_item_upper_roman_parens] = STATE(474), - [sym_list_item_content] = STATE(794), - [sym_table] = STATE(439), - [sym__table_content] = STATE(267), - [sym_table_separator] = STATE(267), - [sym_table_row] = STATE(327), - [sym_footnote] = STATE(439), - [sym_div] = STATE(439), - [sym_div_marker_begin] = STATE(914), - [sym_code_block] = STATE(439), - [sym_raw_block] = STATE(439), - [sym_thematic_break] = STATE(439), - [sym_block_quote] = STATE(439), - [sym__block_quote_prefix] = STATE(431), - [sym_link_reference_definition] = STATE(439), - [sym_block_attribute] = STATE(439), - [sym__paragraph] = STATE(439), - [sym__paragraph_content] = STATE(696), - [sym__inline] = STATE(683), - [sym__symbol_fallback] = STATE(329), - [aux_sym__list_dash_repeat1] = STATE(364), - [aux_sym__list_plus_repeat1] = STATE(384), - [aux_sym__list_star_repeat1] = STATE(386), - [aux_sym__list_task_repeat1] = STATE(333), - [aux_sym__list_definition_repeat1] = STATE(509), - [aux_sym__list_decimal_period_repeat1] = STATE(506), - [aux_sym__list_decimal_paren_repeat1] = STATE(504), - [aux_sym__list_decimal_parens_repeat1] = STATE(502), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(500), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(499), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(498), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(497), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(496), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(495), - [aux_sym__list_lower_roman_period_repeat1] = STATE(492), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(491), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(487), - [aux_sym__list_upper_roman_period_repeat1] = STATE(484), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(478), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), - [aux_sym_table_repeat1] = STATE(267), - [aux_sym__block_quote_prefix_repeat1] = STATE(397), - [aux_sym__inline_repeat1] = STATE(329), - [anon_sym_LBRACK] = ACTIONS(390), - [anon_sym_PIPE] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(394), + [sym__block_with_heading] = STATE(445), + [sym__block_element] = STATE(445), + [sym_heading] = STATE(445), + [sym_list] = STATE(445), + [sym__list_dash] = STATE(699), + [sym__list_item_dash] = STATE(413), + [sym__list_plus] = STATE(699), + [sym__list_item_plus] = STATE(418), + [sym__list_star] = STATE(699), + [sym__list_item_star] = STATE(417), + [sym__list_task] = STATE(699), + [sym__list_item_task] = STATE(381), + [sym_list_marker_task] = STATE(38), + [sym__list_definition] = STATE(699), + [sym__list_item_definition] = STATE(582), + [sym__list_decimal_period] = STATE(699), + [sym__list_item_decimal_period] = STATE(581), + [sym__list_decimal_paren] = STATE(699), + [sym__list_item_decimal_paren] = STATE(579), + [sym__list_decimal_parens] = STATE(699), + [sym__list_item_decimal_parens] = STATE(578), + [sym__list_lower_alpha_period] = STATE(699), + [sym__list_item_lower_alpha_period] = STATE(577), + [sym__list_lower_alpha_paren] = STATE(699), + [sym__list_item_lower_alpha_paren] = STATE(576), + [sym__list_lower_alpha_parens] = STATE(699), + [sym__list_item_lower_alpha_parens] = STATE(575), + [sym__list_upper_alpha_period] = STATE(699), + [sym__list_item_upper_alpha_period] = STATE(574), + [sym__list_upper_alpha_paren] = STATE(699), + [sym__list_item_upper_alpha_paren] = STATE(573), + [sym__list_upper_alpha_parens] = STATE(699), + [sym__list_item_upper_alpha_parens] = STATE(572), + [sym__list_lower_roman_period] = STATE(699), + [sym__list_item_lower_roman_period] = STATE(571), + [sym__list_lower_roman_paren] = STATE(699), + [sym__list_item_lower_roman_paren] = STATE(570), + [sym__list_lower_roman_parens] = STATE(699), + [sym__list_item_lower_roman_parens] = STATE(569), + [sym__list_upper_roman_period] = STATE(699), + [sym__list_item_upper_roman_period] = STATE(568), + [sym__list_upper_roman_paren] = STATE(699), + [sym__list_item_upper_roman_paren] = STATE(567), + [sym__list_upper_roman_parens] = STATE(699), + [sym__list_item_upper_roman_parens] = STATE(566), + [sym_list_item_content] = STATE(691), + [sym_table] = STATE(445), + [sym__table_content] = STATE(289), + [sym_table_separator] = STATE(289), + [sym_table_row] = STATE(363), + [sym_footnote] = STATE(445), + [sym_div] = STATE(445), + [sym_div_marker_begin] = STATE(941), + [sym_code_block] = STATE(445), + [sym_raw_block] = STATE(445), + [sym_thematic_break] = STATE(445), + [sym_block_quote] = STATE(445), + [sym__block_quote_prefix] = STATE(288), + [sym_link_reference_definition] = STATE(445), + [sym_block_attribute] = STATE(445), + [sym__paragraph] = STATE(445), + [sym__paragraph_content] = STATE(764), + [sym__inline] = STATE(703), + [sym__symbol_fallback] = STATE(366), + [aux_sym__list_dash_repeat1] = STATE(413), + [aux_sym__list_plus_repeat1] = STATE(418), + [aux_sym__list_star_repeat1] = STATE(417), + [aux_sym__list_task_repeat1] = STATE(381), + [aux_sym__list_definition_repeat1] = STATE(582), + [aux_sym__list_decimal_period_repeat1] = STATE(581), + [aux_sym__list_decimal_paren_repeat1] = STATE(579), + [aux_sym__list_decimal_parens_repeat1] = STATE(578), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(577), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(576), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(575), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(574), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(573), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(572), + [aux_sym__list_lower_roman_period_repeat1] = STATE(571), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(570), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(569), + [aux_sym__list_upper_roman_period_repeat1] = STATE(568), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(567), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(566), + [aux_sym_table_repeat1] = STATE(289), + [aux_sym__block_quote_prefix_repeat1] = STATE(323), + [aux_sym__inline_repeat1] = STATE(366), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(399), [aux_sym__inline_token1] = ACTIONS(11), [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__newline] = ACTIONS(424), - [sym__heading_begin] = ACTIONS(398), + [sym__newline] = ACTIONS(433), + [sym__heading_begin] = ACTIONS(403), [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(400), + [sym__code_block_begin] = ACTIONS(405), [sym_list_marker_dash] = ACTIONS(23), [sym_list_marker_star] = ACTIONS(25), [sym_list_marker_plus] = ACTIONS(27), @@ -9083,109 +9148,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(57), [sym_list_marker_lower_roman_parens] = ACTIONS(59), [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(402), - [sym__block_quote_continuation] = ACTIONS(65), - [sym__thematic_break_dash] = ACTIONS(404), - [sym__thematic_break_star] = ACTIONS(404), - [sym__footnote_begin] = ACTIONS(406), + [sym__block_quote_begin] = ACTIONS(407), + [sym__block_quote_continuation] = ACTIONS(409), + [sym__thematic_break_dash] = ACTIONS(411), + [sym__thematic_break_star] = ACTIONS(411), + [sym__footnote_begin] = ACTIONS(413), }, [40] = { - [sym__block_with_heading] = STATE(430), - [sym__block_element] = STATE(430), - [sym_heading] = STATE(430), - [sym_list] = STATE(430), - [sym__list_dash] = STATE(665), - [sym__list_item_dash] = STATE(364), - [sym__list_plus] = STATE(665), - [sym__list_item_plus] = STATE(384), - [sym__list_star] = STATE(665), - [sym__list_item_star] = STATE(386), - [sym__list_task] = STATE(665), - [sym__list_item_task] = STATE(333), - [sym_list_marker_task] = STATE(37), - [sym__list_definition] = STATE(665), - [sym__list_item_definition] = STATE(509), - [sym__list_decimal_period] = STATE(665), - [sym__list_item_decimal_period] = STATE(506), - [sym__list_decimal_paren] = STATE(665), - [sym__list_item_decimal_paren] = STATE(504), - [sym__list_decimal_parens] = STATE(665), - [sym__list_item_decimal_parens] = STATE(502), - [sym__list_lower_alpha_period] = STATE(665), - [sym__list_item_lower_alpha_period] = STATE(500), - [sym__list_lower_alpha_paren] = STATE(665), - [sym__list_item_lower_alpha_paren] = STATE(499), - [sym__list_lower_alpha_parens] = STATE(665), - [sym__list_item_lower_alpha_parens] = STATE(498), - [sym__list_upper_alpha_period] = STATE(665), - [sym__list_item_upper_alpha_period] = STATE(497), - [sym__list_upper_alpha_paren] = STATE(665), - [sym__list_item_upper_alpha_paren] = STATE(496), - [sym__list_upper_alpha_parens] = STATE(665), - [sym__list_item_upper_alpha_parens] = STATE(495), - [sym__list_lower_roman_period] = STATE(665), - [sym__list_item_lower_roman_period] = STATE(492), - [sym__list_lower_roman_paren] = STATE(665), - [sym__list_item_lower_roman_paren] = STATE(491), - [sym__list_lower_roman_parens] = STATE(665), - [sym__list_item_lower_roman_parens] = STATE(487), - [sym__list_upper_roman_period] = STATE(665), - [sym__list_item_upper_roman_period] = STATE(484), - [sym__list_upper_roman_paren] = STATE(665), - [sym__list_item_upper_roman_paren] = STATE(478), - [sym__list_upper_roman_parens] = STATE(665), - [sym__list_item_upper_roman_parens] = STATE(474), - [sym_list_item_content] = STATE(850), - [sym_table] = STATE(430), - [sym__table_content] = STATE(267), - [sym_table_separator] = STATE(267), - [sym_table_row] = STATE(327), - [sym_footnote] = STATE(430), - [sym_div] = STATE(430), - [sym_div_marker_begin] = STATE(914), - [sym_code_block] = STATE(430), - [sym_raw_block] = STATE(430), - [sym_thematic_break] = STATE(430), - [sym_block_quote] = STATE(430), - [sym__block_quote_prefix] = STATE(431), - [sym_link_reference_definition] = STATE(430), - [sym_block_attribute] = STATE(430), - [sym__paragraph] = STATE(430), - [sym__paragraph_content] = STATE(696), - [sym__inline] = STATE(683), - [sym__symbol_fallback] = STATE(329), - [aux_sym__list_dash_repeat1] = STATE(364), - [aux_sym__list_plus_repeat1] = STATE(384), - [aux_sym__list_star_repeat1] = STATE(386), - [aux_sym__list_task_repeat1] = STATE(333), - [aux_sym__list_definition_repeat1] = STATE(509), - [aux_sym__list_decimal_period_repeat1] = STATE(506), - [aux_sym__list_decimal_paren_repeat1] = STATE(504), - [aux_sym__list_decimal_parens_repeat1] = STATE(502), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(500), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(499), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(498), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(497), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(496), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(495), - [aux_sym__list_lower_roman_period_repeat1] = STATE(492), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(491), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(487), - [aux_sym__list_upper_roman_period_repeat1] = STATE(484), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(478), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), - [aux_sym_table_repeat1] = STATE(267), - [aux_sym__block_quote_prefix_repeat1] = STATE(397), - [aux_sym__inline_repeat1] = STATE(329), - [anon_sym_LBRACK] = ACTIONS(390), - [anon_sym_PIPE] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(394), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__newline] = ACTIONS(426), - [sym__heading_begin] = ACTIONS(398), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(400), + [sym__block_with_heading] = STATE(449), + [sym__block_element] = STATE(449), + [sym_heading] = STATE(449), + [sym_list] = STATE(449), + [sym__list_dash] = STATE(699), + [sym__list_item_dash] = STATE(413), + [sym__list_plus] = STATE(699), + [sym__list_item_plus] = STATE(418), + [sym__list_star] = STATE(699), + [sym__list_item_star] = STATE(417), + [sym__list_task] = STATE(699), + [sym__list_item_task] = STATE(381), + [sym_list_marker_task] = STATE(38), + [sym__list_definition] = STATE(699), + [sym__list_item_definition] = STATE(582), + [sym__list_decimal_period] = STATE(699), + [sym__list_item_decimal_period] = STATE(581), + [sym__list_decimal_paren] = STATE(699), + [sym__list_item_decimal_paren] = STATE(579), + [sym__list_decimal_parens] = STATE(699), + [sym__list_item_decimal_parens] = STATE(578), + [sym__list_lower_alpha_period] = STATE(699), + [sym__list_item_lower_alpha_period] = STATE(577), + [sym__list_lower_alpha_paren] = STATE(699), + [sym__list_item_lower_alpha_paren] = STATE(576), + [sym__list_lower_alpha_parens] = STATE(699), + [sym__list_item_lower_alpha_parens] = STATE(575), + [sym__list_upper_alpha_period] = STATE(699), + [sym__list_item_upper_alpha_period] = STATE(574), + [sym__list_upper_alpha_paren] = STATE(699), + [sym__list_item_upper_alpha_paren] = STATE(573), + [sym__list_upper_alpha_parens] = STATE(699), + [sym__list_item_upper_alpha_parens] = STATE(572), + [sym__list_lower_roman_period] = STATE(699), + [sym__list_item_lower_roman_period] = STATE(571), + [sym__list_lower_roman_paren] = STATE(699), + [sym__list_item_lower_roman_paren] = STATE(570), + [sym__list_lower_roman_parens] = STATE(699), + [sym__list_item_lower_roman_parens] = STATE(569), + [sym__list_upper_roman_period] = STATE(699), + [sym__list_item_upper_roman_period] = STATE(568), + [sym__list_upper_roman_paren] = STATE(699), + [sym__list_item_upper_roman_paren] = STATE(567), + [sym__list_upper_roman_parens] = STATE(699), + [sym__list_item_upper_roman_parens] = STATE(566), + [sym_list_item_content] = STATE(878), + [sym_table] = STATE(449), + [sym__table_content] = STATE(289), + [sym_table_separator] = STATE(289), + [sym_table_row] = STATE(363), + [sym_footnote] = STATE(449), + [sym_div] = STATE(449), + [sym_div_marker_begin] = STATE(941), + [sym_code_block] = STATE(449), + [sym_raw_block] = STATE(449), + [sym_thematic_break] = STATE(449), + [sym_block_quote] = STATE(449), + [sym__block_quote_prefix] = STATE(288), + [sym_link_reference_definition] = STATE(449), + [sym_block_attribute] = STATE(449), + [sym__paragraph] = STATE(449), + [sym__paragraph_content] = STATE(764), + [sym__inline] = STATE(703), + [sym__symbol_fallback] = STATE(366), + [aux_sym__list_dash_repeat1] = STATE(413), + [aux_sym__list_plus_repeat1] = STATE(418), + [aux_sym__list_star_repeat1] = STATE(417), + [aux_sym__list_task_repeat1] = STATE(381), + [aux_sym__list_definition_repeat1] = STATE(582), + [aux_sym__list_decimal_period_repeat1] = STATE(581), + [aux_sym__list_decimal_paren_repeat1] = STATE(579), + [aux_sym__list_decimal_parens_repeat1] = STATE(578), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(577), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(576), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(575), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(574), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(573), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(572), + [aux_sym__list_lower_roman_period_repeat1] = STATE(571), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(570), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(569), + [aux_sym__list_upper_roman_period_repeat1] = STATE(568), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(567), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(566), + [aux_sym_table_repeat1] = STATE(289), + [aux_sym__block_quote_prefix_repeat1] = STATE(323), + [aux_sym__inline_repeat1] = STATE(366), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(399), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [sym__newline] = ACTIONS(435), + [sym__heading_begin] = ACTIONS(403), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(405), [sym_list_marker_dash] = ACTIONS(23), [sym_list_marker_star] = ACTIONS(25), [sym_list_marker_plus] = ACTIONS(27), @@ -9206,109 +9271,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(57), [sym_list_marker_lower_roman_parens] = ACTIONS(59), [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(402), - [sym__block_quote_continuation] = ACTIONS(65), - [sym__thematic_break_dash] = ACTIONS(404), - [sym__thematic_break_star] = ACTIONS(404), - [sym__footnote_begin] = ACTIONS(406), + [sym__block_quote_begin] = ACTIONS(407), + [sym__block_quote_continuation] = ACTIONS(409), + [sym__thematic_break_dash] = ACTIONS(411), + [sym__thematic_break_star] = ACTIONS(411), + [sym__footnote_begin] = ACTIONS(413), }, [41] = { - [sym__block_with_heading] = STATE(422), - [sym__block_element] = STATE(422), - [sym_heading] = STATE(422), - [sym_list] = STATE(422), - [sym__list_dash] = STATE(665), - [sym__list_item_dash] = STATE(364), - [sym__list_plus] = STATE(665), - [sym__list_item_plus] = STATE(384), - [sym__list_star] = STATE(665), - [sym__list_item_star] = STATE(386), - [sym__list_task] = STATE(665), - [sym__list_item_task] = STATE(333), - [sym_list_marker_task] = STATE(37), - [sym__list_definition] = STATE(665), - [sym__list_item_definition] = STATE(509), - [sym__list_decimal_period] = STATE(665), - [sym__list_item_decimal_period] = STATE(506), - [sym__list_decimal_paren] = STATE(665), - [sym__list_item_decimal_paren] = STATE(504), - [sym__list_decimal_parens] = STATE(665), - [sym__list_item_decimal_parens] = STATE(502), - [sym__list_lower_alpha_period] = STATE(665), - [sym__list_item_lower_alpha_period] = STATE(500), - [sym__list_lower_alpha_paren] = STATE(665), - [sym__list_item_lower_alpha_paren] = STATE(499), - [sym__list_lower_alpha_parens] = STATE(665), - [sym__list_item_lower_alpha_parens] = STATE(498), - [sym__list_upper_alpha_period] = STATE(665), - [sym__list_item_upper_alpha_period] = STATE(497), - [sym__list_upper_alpha_paren] = STATE(665), - [sym__list_item_upper_alpha_paren] = STATE(496), - [sym__list_upper_alpha_parens] = STATE(665), - [sym__list_item_upper_alpha_parens] = STATE(495), - [sym__list_lower_roman_period] = STATE(665), - [sym__list_item_lower_roman_period] = STATE(492), - [sym__list_lower_roman_paren] = STATE(665), - [sym__list_item_lower_roman_paren] = STATE(491), - [sym__list_lower_roman_parens] = STATE(665), - [sym__list_item_lower_roman_parens] = STATE(487), - [sym__list_upper_roman_period] = STATE(665), - [sym__list_item_upper_roman_period] = STATE(484), - [sym__list_upper_roman_paren] = STATE(665), - [sym__list_item_upper_roman_paren] = STATE(478), - [sym__list_upper_roman_parens] = STATE(665), - [sym__list_item_upper_roman_parens] = STATE(474), - [sym_list_item_content] = STATE(783), - [sym_table] = STATE(422), - [sym__table_content] = STATE(267), - [sym_table_separator] = STATE(267), - [sym_table_row] = STATE(327), - [sym_footnote] = STATE(422), - [sym_div] = STATE(422), - [sym_div_marker_begin] = STATE(914), - [sym_code_block] = STATE(422), - [sym_raw_block] = STATE(422), - [sym_thematic_break] = STATE(422), - [sym_block_quote] = STATE(422), - [sym__block_quote_prefix] = STATE(431), - [sym_link_reference_definition] = STATE(422), - [sym_block_attribute] = STATE(422), - [sym__paragraph] = STATE(422), - [sym__paragraph_content] = STATE(696), - [sym__inline] = STATE(683), - [sym__symbol_fallback] = STATE(329), - [aux_sym__list_dash_repeat1] = STATE(364), - [aux_sym__list_plus_repeat1] = STATE(384), - [aux_sym__list_star_repeat1] = STATE(386), - [aux_sym__list_task_repeat1] = STATE(333), - [aux_sym__list_definition_repeat1] = STATE(509), - [aux_sym__list_decimal_period_repeat1] = STATE(506), - [aux_sym__list_decimal_paren_repeat1] = STATE(504), - [aux_sym__list_decimal_parens_repeat1] = STATE(502), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(500), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(499), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(498), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(497), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(496), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(495), - [aux_sym__list_lower_roman_period_repeat1] = STATE(492), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(491), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(487), - [aux_sym__list_upper_roman_period_repeat1] = STATE(484), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(478), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), - [aux_sym_table_repeat1] = STATE(267), - [aux_sym__block_quote_prefix_repeat1] = STATE(397), - [aux_sym__inline_repeat1] = STATE(329), - [anon_sym_LBRACK] = ACTIONS(390), - [anon_sym_PIPE] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(394), + [sym__block_with_heading] = STATE(442), + [sym__block_element] = STATE(442), + [sym_heading] = STATE(442), + [sym_list] = STATE(442), + [sym__list_dash] = STATE(699), + [sym__list_item_dash] = STATE(413), + [sym__list_plus] = STATE(699), + [sym__list_item_plus] = STATE(418), + [sym__list_star] = STATE(699), + [sym__list_item_star] = STATE(417), + [sym__list_task] = STATE(699), + [sym__list_item_task] = STATE(381), + [sym_list_marker_task] = STATE(38), + [sym__list_definition] = STATE(699), + [sym__list_item_definition] = STATE(582), + [sym__list_decimal_period] = STATE(699), + [sym__list_item_decimal_period] = STATE(581), + [sym__list_decimal_paren] = STATE(699), + [sym__list_item_decimal_paren] = STATE(579), + [sym__list_decimal_parens] = STATE(699), + [sym__list_item_decimal_parens] = STATE(578), + [sym__list_lower_alpha_period] = STATE(699), + [sym__list_item_lower_alpha_period] = STATE(577), + [sym__list_lower_alpha_paren] = STATE(699), + [sym__list_item_lower_alpha_paren] = STATE(576), + [sym__list_lower_alpha_parens] = STATE(699), + [sym__list_item_lower_alpha_parens] = STATE(575), + [sym__list_upper_alpha_period] = STATE(699), + [sym__list_item_upper_alpha_period] = STATE(574), + [sym__list_upper_alpha_paren] = STATE(699), + [sym__list_item_upper_alpha_paren] = STATE(573), + [sym__list_upper_alpha_parens] = STATE(699), + [sym__list_item_upper_alpha_parens] = STATE(572), + [sym__list_lower_roman_period] = STATE(699), + [sym__list_item_lower_roman_period] = STATE(571), + [sym__list_lower_roman_paren] = STATE(699), + [sym__list_item_lower_roman_paren] = STATE(570), + [sym__list_lower_roman_parens] = STATE(699), + [sym__list_item_lower_roman_parens] = STATE(569), + [sym__list_upper_roman_period] = STATE(699), + [sym__list_item_upper_roman_period] = STATE(568), + [sym__list_upper_roman_paren] = STATE(699), + [sym__list_item_upper_roman_paren] = STATE(567), + [sym__list_upper_roman_parens] = STATE(699), + [sym__list_item_upper_roman_parens] = STATE(566), + [sym_list_item_content] = STATE(730), + [sym_table] = STATE(442), + [sym__table_content] = STATE(289), + [sym_table_separator] = STATE(289), + [sym_table_row] = STATE(363), + [sym_footnote] = STATE(442), + [sym_div] = STATE(442), + [sym_div_marker_begin] = STATE(941), + [sym_code_block] = STATE(442), + [sym_raw_block] = STATE(442), + [sym_thematic_break] = STATE(442), + [sym_block_quote] = STATE(442), + [sym__block_quote_prefix] = STATE(288), + [sym_link_reference_definition] = STATE(442), + [sym_block_attribute] = STATE(442), + [sym__paragraph] = STATE(442), + [sym__paragraph_content] = STATE(764), + [sym__inline] = STATE(703), + [sym__symbol_fallback] = STATE(366), + [aux_sym__list_dash_repeat1] = STATE(413), + [aux_sym__list_plus_repeat1] = STATE(418), + [aux_sym__list_star_repeat1] = STATE(417), + [aux_sym__list_task_repeat1] = STATE(381), + [aux_sym__list_definition_repeat1] = STATE(582), + [aux_sym__list_decimal_period_repeat1] = STATE(581), + [aux_sym__list_decimal_paren_repeat1] = STATE(579), + [aux_sym__list_decimal_parens_repeat1] = STATE(578), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(577), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(576), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(575), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(574), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(573), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(572), + [aux_sym__list_lower_roman_period_repeat1] = STATE(571), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(570), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(569), + [aux_sym__list_upper_roman_period_repeat1] = STATE(568), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(567), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(566), + [aux_sym_table_repeat1] = STATE(289), + [aux_sym__block_quote_prefix_repeat1] = STATE(323), + [aux_sym__inline_repeat1] = STATE(366), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(399), [aux_sym__inline_token1] = ACTIONS(11), [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__newline] = ACTIONS(428), - [sym__heading_begin] = ACTIONS(398), + [sym__newline] = ACTIONS(437), + [sym__heading_begin] = ACTIONS(403), [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(400), + [sym__code_block_begin] = ACTIONS(405), [sym_list_marker_dash] = ACTIONS(23), [sym_list_marker_star] = ACTIONS(25), [sym_list_marker_plus] = ACTIONS(27), @@ -9329,109 +9394,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(57), [sym_list_marker_lower_roman_parens] = ACTIONS(59), [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(402), - [sym__block_quote_continuation] = ACTIONS(65), - [sym__thematic_break_dash] = ACTIONS(404), - [sym__thematic_break_star] = ACTIONS(404), - [sym__footnote_begin] = ACTIONS(406), + [sym__block_quote_begin] = ACTIONS(407), + [sym__block_quote_continuation] = ACTIONS(409), + [sym__thematic_break_dash] = ACTIONS(411), + [sym__thematic_break_star] = ACTIONS(411), + [sym__footnote_begin] = ACTIONS(413), }, [42] = { - [sym__block_with_heading] = STATE(420), - [sym__block_element] = STATE(420), - [sym_heading] = STATE(420), - [sym_list] = STATE(420), - [sym__list_dash] = STATE(665), - [sym__list_item_dash] = STATE(364), - [sym__list_plus] = STATE(665), - [sym__list_item_plus] = STATE(384), - [sym__list_star] = STATE(665), - [sym__list_item_star] = STATE(386), - [sym__list_task] = STATE(665), - [sym__list_item_task] = STATE(333), - [sym_list_marker_task] = STATE(37), - [sym__list_definition] = STATE(665), - [sym__list_item_definition] = STATE(509), - [sym__list_decimal_period] = STATE(665), - [sym__list_item_decimal_period] = STATE(506), - [sym__list_decimal_paren] = STATE(665), - [sym__list_item_decimal_paren] = STATE(504), - [sym__list_decimal_parens] = STATE(665), - [sym__list_item_decimal_parens] = STATE(502), - [sym__list_lower_alpha_period] = STATE(665), - [sym__list_item_lower_alpha_period] = STATE(500), - [sym__list_lower_alpha_paren] = STATE(665), - [sym__list_item_lower_alpha_paren] = STATE(499), - [sym__list_lower_alpha_parens] = STATE(665), - [sym__list_item_lower_alpha_parens] = STATE(498), - [sym__list_upper_alpha_period] = STATE(665), - [sym__list_item_upper_alpha_period] = STATE(497), - [sym__list_upper_alpha_paren] = STATE(665), - [sym__list_item_upper_alpha_paren] = STATE(496), - [sym__list_upper_alpha_parens] = STATE(665), - [sym__list_item_upper_alpha_parens] = STATE(495), - [sym__list_lower_roman_period] = STATE(665), - [sym__list_item_lower_roman_period] = STATE(492), - [sym__list_lower_roman_paren] = STATE(665), - [sym__list_item_lower_roman_paren] = STATE(491), - [sym__list_lower_roman_parens] = STATE(665), - [sym__list_item_lower_roman_parens] = STATE(487), - [sym__list_upper_roman_period] = STATE(665), - [sym__list_item_upper_roman_period] = STATE(484), - [sym__list_upper_roman_paren] = STATE(665), - [sym__list_item_upper_roman_paren] = STATE(478), - [sym__list_upper_roman_parens] = STATE(665), - [sym__list_item_upper_roman_parens] = STATE(474), - [sym_list_item_content] = STATE(782), - [sym_table] = STATE(420), - [sym__table_content] = STATE(267), - [sym_table_separator] = STATE(267), - [sym_table_row] = STATE(327), - [sym_footnote] = STATE(420), - [sym_div] = STATE(420), - [sym_div_marker_begin] = STATE(914), - [sym_code_block] = STATE(420), - [sym_raw_block] = STATE(420), - [sym_thematic_break] = STATE(420), - [sym_block_quote] = STATE(420), - [sym__block_quote_prefix] = STATE(431), - [sym_link_reference_definition] = STATE(420), - [sym_block_attribute] = STATE(420), - [sym__paragraph] = STATE(420), - [sym__paragraph_content] = STATE(696), - [sym__inline] = STATE(683), - [sym__symbol_fallback] = STATE(329), - [aux_sym__list_dash_repeat1] = STATE(364), - [aux_sym__list_plus_repeat1] = STATE(384), - [aux_sym__list_star_repeat1] = STATE(386), - [aux_sym__list_task_repeat1] = STATE(333), - [aux_sym__list_definition_repeat1] = STATE(509), - [aux_sym__list_decimal_period_repeat1] = STATE(506), - [aux_sym__list_decimal_paren_repeat1] = STATE(504), - [aux_sym__list_decimal_parens_repeat1] = STATE(502), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(500), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(499), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(498), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(497), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(496), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(495), - [aux_sym__list_lower_roman_period_repeat1] = STATE(492), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(491), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(487), - [aux_sym__list_upper_roman_period_repeat1] = STATE(484), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(478), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), - [aux_sym_table_repeat1] = STATE(267), - [aux_sym__block_quote_prefix_repeat1] = STATE(397), - [aux_sym__inline_repeat1] = STATE(329), - [anon_sym_LBRACK] = ACTIONS(390), - [anon_sym_PIPE] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(394), + [sym__block_with_heading] = STATE(467), + [sym__block_element] = STATE(467), + [sym_heading] = STATE(467), + [sym_list] = STATE(467), + [sym__list_dash] = STATE(699), + [sym__list_item_dash] = STATE(413), + [sym__list_plus] = STATE(699), + [sym__list_item_plus] = STATE(418), + [sym__list_star] = STATE(699), + [sym__list_item_star] = STATE(417), + [sym__list_task] = STATE(699), + [sym__list_item_task] = STATE(381), + [sym_list_marker_task] = STATE(38), + [sym__list_definition] = STATE(699), + [sym__list_item_definition] = STATE(582), + [sym__list_decimal_period] = STATE(699), + [sym__list_item_decimal_period] = STATE(581), + [sym__list_decimal_paren] = STATE(699), + [sym__list_item_decimal_paren] = STATE(579), + [sym__list_decimal_parens] = STATE(699), + [sym__list_item_decimal_parens] = STATE(578), + [sym__list_lower_alpha_period] = STATE(699), + [sym__list_item_lower_alpha_period] = STATE(577), + [sym__list_lower_alpha_paren] = STATE(699), + [sym__list_item_lower_alpha_paren] = STATE(576), + [sym__list_lower_alpha_parens] = STATE(699), + [sym__list_item_lower_alpha_parens] = STATE(575), + [sym__list_upper_alpha_period] = STATE(699), + [sym__list_item_upper_alpha_period] = STATE(574), + [sym__list_upper_alpha_paren] = STATE(699), + [sym__list_item_upper_alpha_paren] = STATE(573), + [sym__list_upper_alpha_parens] = STATE(699), + [sym__list_item_upper_alpha_parens] = STATE(572), + [sym__list_lower_roman_period] = STATE(699), + [sym__list_item_lower_roman_period] = STATE(571), + [sym__list_lower_roman_paren] = STATE(699), + [sym__list_item_lower_roman_paren] = STATE(570), + [sym__list_lower_roman_parens] = STATE(699), + [sym__list_item_lower_roman_parens] = STATE(569), + [sym__list_upper_roman_period] = STATE(699), + [sym__list_item_upper_roman_period] = STATE(568), + [sym__list_upper_roman_paren] = STATE(699), + [sym__list_item_upper_roman_paren] = STATE(567), + [sym__list_upper_roman_parens] = STATE(699), + [sym__list_item_upper_roman_parens] = STATE(566), + [sym_list_item_content] = STATE(813), + [sym_table] = STATE(467), + [sym__table_content] = STATE(289), + [sym_table_separator] = STATE(289), + [sym_table_row] = STATE(363), + [sym_footnote] = STATE(467), + [sym_div] = STATE(467), + [sym_div_marker_begin] = STATE(941), + [sym_code_block] = STATE(467), + [sym_raw_block] = STATE(467), + [sym_thematic_break] = STATE(467), + [sym_block_quote] = STATE(467), + [sym__block_quote_prefix] = STATE(288), + [sym_link_reference_definition] = STATE(467), + [sym_block_attribute] = STATE(467), + [sym__paragraph] = STATE(467), + [sym__paragraph_content] = STATE(764), + [sym__inline] = STATE(703), + [sym__symbol_fallback] = STATE(366), + [aux_sym__list_dash_repeat1] = STATE(413), + [aux_sym__list_plus_repeat1] = STATE(418), + [aux_sym__list_star_repeat1] = STATE(417), + [aux_sym__list_task_repeat1] = STATE(381), + [aux_sym__list_definition_repeat1] = STATE(582), + [aux_sym__list_decimal_period_repeat1] = STATE(581), + [aux_sym__list_decimal_paren_repeat1] = STATE(579), + [aux_sym__list_decimal_parens_repeat1] = STATE(578), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(577), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(576), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(575), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(574), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(573), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(572), + [aux_sym__list_lower_roman_period_repeat1] = STATE(571), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(570), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(569), + [aux_sym__list_upper_roman_period_repeat1] = STATE(568), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(567), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(566), + [aux_sym_table_repeat1] = STATE(289), + [aux_sym__block_quote_prefix_repeat1] = STATE(323), + [aux_sym__inline_repeat1] = STATE(366), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(399), [aux_sym__inline_token1] = ACTIONS(11), [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__newline] = ACTIONS(430), - [sym__heading_begin] = ACTIONS(398), + [sym__newline] = ACTIONS(439), + [sym__heading_begin] = ACTIONS(403), [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(400), + [sym__code_block_begin] = ACTIONS(405), [sym_list_marker_dash] = ACTIONS(23), [sym_list_marker_star] = ACTIONS(25), [sym_list_marker_plus] = ACTIONS(27), @@ -9452,109 +9517,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(57), [sym_list_marker_lower_roman_parens] = ACTIONS(59), [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(402), - [sym__block_quote_continuation] = ACTIONS(65), - [sym__thematic_break_dash] = ACTIONS(404), - [sym__thematic_break_star] = ACTIONS(404), - [sym__footnote_begin] = ACTIONS(406), + [sym__block_quote_begin] = ACTIONS(407), + [sym__block_quote_continuation] = ACTIONS(409), + [sym__thematic_break_dash] = ACTIONS(411), + [sym__thematic_break_star] = ACTIONS(411), + [sym__footnote_begin] = ACTIONS(413), }, [43] = { - [sym__block_with_heading] = STATE(414), - [sym__block_element] = STATE(414), - [sym_heading] = STATE(414), - [sym_list] = STATE(414), - [sym__list_dash] = STATE(665), - [sym__list_item_dash] = STATE(364), - [sym__list_plus] = STATE(665), - [sym__list_item_plus] = STATE(384), - [sym__list_star] = STATE(665), - [sym__list_item_star] = STATE(386), - [sym__list_task] = STATE(665), - [sym__list_item_task] = STATE(333), - [sym_list_marker_task] = STATE(37), - [sym__list_definition] = STATE(665), - [sym__list_item_definition] = STATE(509), - [sym__list_decimal_period] = STATE(665), - [sym__list_item_decimal_period] = STATE(506), - [sym__list_decimal_paren] = STATE(665), - [sym__list_item_decimal_paren] = STATE(504), - [sym__list_decimal_parens] = STATE(665), - [sym__list_item_decimal_parens] = STATE(502), - [sym__list_lower_alpha_period] = STATE(665), - [sym__list_item_lower_alpha_period] = STATE(500), - [sym__list_lower_alpha_paren] = STATE(665), - [sym__list_item_lower_alpha_paren] = STATE(499), - [sym__list_lower_alpha_parens] = STATE(665), - [sym__list_item_lower_alpha_parens] = STATE(498), - [sym__list_upper_alpha_period] = STATE(665), - [sym__list_item_upper_alpha_period] = STATE(497), - [sym__list_upper_alpha_paren] = STATE(665), - [sym__list_item_upper_alpha_paren] = STATE(496), - [sym__list_upper_alpha_parens] = STATE(665), - [sym__list_item_upper_alpha_parens] = STATE(495), - [sym__list_lower_roman_period] = STATE(665), - [sym__list_item_lower_roman_period] = STATE(492), - [sym__list_lower_roman_paren] = STATE(665), - [sym__list_item_lower_roman_paren] = STATE(491), - [sym__list_lower_roman_parens] = STATE(665), - [sym__list_item_lower_roman_parens] = STATE(487), - [sym__list_upper_roman_period] = STATE(665), - [sym__list_item_upper_roman_period] = STATE(484), - [sym__list_upper_roman_paren] = STATE(665), - [sym__list_item_upper_roman_paren] = STATE(478), - [sym__list_upper_roman_parens] = STATE(665), - [sym__list_item_upper_roman_parens] = STATE(474), - [sym_list_item_content] = STATE(780), - [sym_table] = STATE(414), - [sym__table_content] = STATE(267), - [sym_table_separator] = STATE(267), - [sym_table_row] = STATE(327), - [sym_footnote] = STATE(414), - [sym_div] = STATE(414), - [sym_div_marker_begin] = STATE(914), - [sym_code_block] = STATE(414), - [sym_raw_block] = STATE(414), - [sym_thematic_break] = STATE(414), - [sym_block_quote] = STATE(414), - [sym__block_quote_prefix] = STATE(431), - [sym_link_reference_definition] = STATE(414), - [sym_block_attribute] = STATE(414), - [sym__paragraph] = STATE(414), - [sym__paragraph_content] = STATE(696), - [sym__inline] = STATE(683), - [sym__symbol_fallback] = STATE(329), - [aux_sym__list_dash_repeat1] = STATE(364), - [aux_sym__list_plus_repeat1] = STATE(384), - [aux_sym__list_star_repeat1] = STATE(386), - [aux_sym__list_task_repeat1] = STATE(333), - [aux_sym__list_definition_repeat1] = STATE(509), - [aux_sym__list_decimal_period_repeat1] = STATE(506), - [aux_sym__list_decimal_paren_repeat1] = STATE(504), - [aux_sym__list_decimal_parens_repeat1] = STATE(502), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(500), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(499), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(498), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(497), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(496), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(495), - [aux_sym__list_lower_roman_period_repeat1] = STATE(492), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(491), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(487), - [aux_sym__list_upper_roman_period_repeat1] = STATE(484), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(478), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), - [aux_sym_table_repeat1] = STATE(267), - [aux_sym__block_quote_prefix_repeat1] = STATE(397), - [aux_sym__inline_repeat1] = STATE(329), - [anon_sym_LBRACK] = ACTIONS(390), - [anon_sym_PIPE] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(394), + [sym__block_with_heading] = STATE(446), + [sym__block_element] = STATE(446), + [sym_heading] = STATE(446), + [sym_list] = STATE(446), + [sym__list_dash] = STATE(699), + [sym__list_item_dash] = STATE(413), + [sym__list_plus] = STATE(699), + [sym__list_item_plus] = STATE(418), + [sym__list_star] = STATE(699), + [sym__list_item_star] = STATE(417), + [sym__list_task] = STATE(699), + [sym__list_item_task] = STATE(381), + [sym_list_marker_task] = STATE(38), + [sym__list_definition] = STATE(699), + [sym__list_item_definition] = STATE(582), + [sym__list_decimal_period] = STATE(699), + [sym__list_item_decimal_period] = STATE(581), + [sym__list_decimal_paren] = STATE(699), + [sym__list_item_decimal_paren] = STATE(579), + [sym__list_decimal_parens] = STATE(699), + [sym__list_item_decimal_parens] = STATE(578), + [sym__list_lower_alpha_period] = STATE(699), + [sym__list_item_lower_alpha_period] = STATE(577), + [sym__list_lower_alpha_paren] = STATE(699), + [sym__list_item_lower_alpha_paren] = STATE(576), + [sym__list_lower_alpha_parens] = STATE(699), + [sym__list_item_lower_alpha_parens] = STATE(575), + [sym__list_upper_alpha_period] = STATE(699), + [sym__list_item_upper_alpha_period] = STATE(574), + [sym__list_upper_alpha_paren] = STATE(699), + [sym__list_item_upper_alpha_paren] = STATE(573), + [sym__list_upper_alpha_parens] = STATE(699), + [sym__list_item_upper_alpha_parens] = STATE(572), + [sym__list_lower_roman_period] = STATE(699), + [sym__list_item_lower_roman_period] = STATE(571), + [sym__list_lower_roman_paren] = STATE(699), + [sym__list_item_lower_roman_paren] = STATE(570), + [sym__list_lower_roman_parens] = STATE(699), + [sym__list_item_lower_roman_parens] = STATE(569), + [sym__list_upper_roman_period] = STATE(699), + [sym__list_item_upper_roman_period] = STATE(568), + [sym__list_upper_roman_paren] = STATE(699), + [sym__list_item_upper_roman_paren] = STATE(567), + [sym__list_upper_roman_parens] = STATE(699), + [sym__list_item_upper_roman_parens] = STATE(566), + [sym_list_item_content] = STATE(657), + [sym_table] = STATE(446), + [sym__table_content] = STATE(289), + [sym_table_separator] = STATE(289), + [sym_table_row] = STATE(363), + [sym_footnote] = STATE(446), + [sym_div] = STATE(446), + [sym_div_marker_begin] = STATE(941), + [sym_code_block] = STATE(446), + [sym_raw_block] = STATE(446), + [sym_thematic_break] = STATE(446), + [sym_block_quote] = STATE(446), + [sym__block_quote_prefix] = STATE(288), + [sym_link_reference_definition] = STATE(446), + [sym_block_attribute] = STATE(446), + [sym__paragraph] = STATE(446), + [sym__paragraph_content] = STATE(764), + [sym__inline] = STATE(703), + [sym__symbol_fallback] = STATE(366), + [aux_sym__list_dash_repeat1] = STATE(413), + [aux_sym__list_plus_repeat1] = STATE(418), + [aux_sym__list_star_repeat1] = STATE(417), + [aux_sym__list_task_repeat1] = STATE(381), + [aux_sym__list_definition_repeat1] = STATE(582), + [aux_sym__list_decimal_period_repeat1] = STATE(581), + [aux_sym__list_decimal_paren_repeat1] = STATE(579), + [aux_sym__list_decimal_parens_repeat1] = STATE(578), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(577), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(576), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(575), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(574), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(573), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(572), + [aux_sym__list_lower_roman_period_repeat1] = STATE(571), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(570), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(569), + [aux_sym__list_upper_roman_period_repeat1] = STATE(568), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(567), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(566), + [aux_sym_table_repeat1] = STATE(289), + [aux_sym__block_quote_prefix_repeat1] = STATE(323), + [aux_sym__inline_repeat1] = STATE(366), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(399), [aux_sym__inline_token1] = ACTIONS(11), [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__newline] = ACTIONS(432), - [sym__heading_begin] = ACTIONS(398), + [sym__newline] = ACTIONS(431), + [sym__heading_begin] = ACTIONS(403), [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(400), + [sym__code_block_begin] = ACTIONS(405), [sym_list_marker_dash] = ACTIONS(23), [sym_list_marker_star] = ACTIONS(25), [sym_list_marker_plus] = ACTIONS(27), @@ -9575,109 +9640,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(57), [sym_list_marker_lower_roman_parens] = ACTIONS(59), [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(402), - [sym__block_quote_continuation] = ACTIONS(65), - [sym__thematic_break_dash] = ACTIONS(404), - [sym__thematic_break_star] = ACTIONS(404), - [sym__footnote_begin] = ACTIONS(406), + [sym__block_quote_begin] = ACTIONS(407), + [sym__block_quote_continuation] = ACTIONS(409), + [sym__thematic_break_dash] = ACTIONS(411), + [sym__thematic_break_star] = ACTIONS(411), + [sym__footnote_begin] = ACTIONS(413), }, [44] = { - [sym__block_with_heading] = STATE(442), - [sym__block_element] = STATE(442), - [sym_heading] = STATE(442), - [sym_list] = STATE(442), - [sym__list_dash] = STATE(665), - [sym__list_item_dash] = STATE(364), - [sym__list_plus] = STATE(665), - [sym__list_item_plus] = STATE(384), - [sym__list_star] = STATE(665), - [sym__list_item_star] = STATE(386), - [sym__list_task] = STATE(665), - [sym__list_item_task] = STATE(333), - [sym_list_marker_task] = STATE(37), - [sym__list_definition] = STATE(665), - [sym__list_item_definition] = STATE(509), - [sym__list_decimal_period] = STATE(665), - [sym__list_item_decimal_period] = STATE(506), - [sym__list_decimal_paren] = STATE(665), - [sym__list_item_decimal_paren] = STATE(504), - [sym__list_decimal_parens] = STATE(665), - [sym__list_item_decimal_parens] = STATE(502), - [sym__list_lower_alpha_period] = STATE(665), - [sym__list_item_lower_alpha_period] = STATE(500), - [sym__list_lower_alpha_paren] = STATE(665), - [sym__list_item_lower_alpha_paren] = STATE(499), - [sym__list_lower_alpha_parens] = STATE(665), - [sym__list_item_lower_alpha_parens] = STATE(498), - [sym__list_upper_alpha_period] = STATE(665), - [sym__list_item_upper_alpha_period] = STATE(497), - [sym__list_upper_alpha_paren] = STATE(665), - [sym__list_item_upper_alpha_paren] = STATE(496), - [sym__list_upper_alpha_parens] = STATE(665), - [sym__list_item_upper_alpha_parens] = STATE(495), - [sym__list_lower_roman_period] = STATE(665), - [sym__list_item_lower_roman_period] = STATE(492), - [sym__list_lower_roman_paren] = STATE(665), - [sym__list_item_lower_roman_paren] = STATE(491), - [sym__list_lower_roman_parens] = STATE(665), - [sym__list_item_lower_roman_parens] = STATE(487), - [sym__list_upper_roman_period] = STATE(665), - [sym__list_item_upper_roman_period] = STATE(484), - [sym__list_upper_roman_paren] = STATE(665), - [sym__list_item_upper_roman_paren] = STATE(478), - [sym__list_upper_roman_parens] = STATE(665), - [sym__list_item_upper_roman_parens] = STATE(474), - [sym_list_item_content] = STATE(643), - [sym_table] = STATE(442), - [sym__table_content] = STATE(267), - [sym_table_separator] = STATE(267), - [sym_table_row] = STATE(327), - [sym_footnote] = STATE(442), - [sym_div] = STATE(442), - [sym_div_marker_begin] = STATE(914), - [sym_code_block] = STATE(442), - [sym_raw_block] = STATE(442), - [sym_thematic_break] = STATE(442), - [sym_block_quote] = STATE(442), - [sym__block_quote_prefix] = STATE(431), - [sym_link_reference_definition] = STATE(442), - [sym_block_attribute] = STATE(442), - [sym__paragraph] = STATE(442), - [sym__paragraph_content] = STATE(696), - [sym__inline] = STATE(683), - [sym__symbol_fallback] = STATE(329), - [aux_sym__list_dash_repeat1] = STATE(364), - [aux_sym__list_plus_repeat1] = STATE(384), - [aux_sym__list_star_repeat1] = STATE(386), - [aux_sym__list_task_repeat1] = STATE(333), - [aux_sym__list_definition_repeat1] = STATE(509), - [aux_sym__list_decimal_period_repeat1] = STATE(506), - [aux_sym__list_decimal_paren_repeat1] = STATE(504), - [aux_sym__list_decimal_parens_repeat1] = STATE(502), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(500), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(499), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(498), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(497), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(496), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(495), - [aux_sym__list_lower_roman_period_repeat1] = STATE(492), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(491), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(487), - [aux_sym__list_upper_roman_period_repeat1] = STATE(484), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(478), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), - [aux_sym_table_repeat1] = STATE(267), - [aux_sym__block_quote_prefix_repeat1] = STATE(397), - [aux_sym__inline_repeat1] = STATE(329), - [anon_sym_LBRACK] = ACTIONS(390), - [anon_sym_PIPE] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(394), + [sym__block_with_heading] = STATE(459), + [sym__block_element] = STATE(459), + [sym_heading] = STATE(459), + [sym_list] = STATE(459), + [sym__list_dash] = STATE(699), + [sym__list_item_dash] = STATE(413), + [sym__list_plus] = STATE(699), + [sym__list_item_plus] = STATE(418), + [sym__list_star] = STATE(699), + [sym__list_item_star] = STATE(417), + [sym__list_task] = STATE(699), + [sym__list_item_task] = STATE(381), + [sym_list_marker_task] = STATE(38), + [sym__list_definition] = STATE(699), + [sym__list_item_definition] = STATE(582), + [sym__list_decimal_period] = STATE(699), + [sym__list_item_decimal_period] = STATE(581), + [sym__list_decimal_paren] = STATE(699), + [sym__list_item_decimal_paren] = STATE(579), + [sym__list_decimal_parens] = STATE(699), + [sym__list_item_decimal_parens] = STATE(578), + [sym__list_lower_alpha_period] = STATE(699), + [sym__list_item_lower_alpha_period] = STATE(577), + [sym__list_lower_alpha_paren] = STATE(699), + [sym__list_item_lower_alpha_paren] = STATE(576), + [sym__list_lower_alpha_parens] = STATE(699), + [sym__list_item_lower_alpha_parens] = STATE(575), + [sym__list_upper_alpha_period] = STATE(699), + [sym__list_item_upper_alpha_period] = STATE(574), + [sym__list_upper_alpha_paren] = STATE(699), + [sym__list_item_upper_alpha_paren] = STATE(573), + [sym__list_upper_alpha_parens] = STATE(699), + [sym__list_item_upper_alpha_parens] = STATE(572), + [sym__list_lower_roman_period] = STATE(699), + [sym__list_item_lower_roman_period] = STATE(571), + [sym__list_lower_roman_paren] = STATE(699), + [sym__list_item_lower_roman_paren] = STATE(570), + [sym__list_lower_roman_parens] = STATE(699), + [sym__list_item_lower_roman_parens] = STATE(569), + [sym__list_upper_roman_period] = STATE(699), + [sym__list_item_upper_roman_period] = STATE(568), + [sym__list_upper_roman_paren] = STATE(699), + [sym__list_item_upper_roman_paren] = STATE(567), + [sym__list_upper_roman_parens] = STATE(699), + [sym__list_item_upper_roman_parens] = STATE(566), + [sym_list_item_content] = STATE(817), + [sym_table] = STATE(459), + [sym__table_content] = STATE(289), + [sym_table_separator] = STATE(289), + [sym_table_row] = STATE(363), + [sym_footnote] = STATE(459), + [sym_div] = STATE(459), + [sym_div_marker_begin] = STATE(941), + [sym_code_block] = STATE(459), + [sym_raw_block] = STATE(459), + [sym_thematic_break] = STATE(459), + [sym_block_quote] = STATE(459), + [sym__block_quote_prefix] = STATE(288), + [sym_link_reference_definition] = STATE(459), + [sym_block_attribute] = STATE(459), + [sym__paragraph] = STATE(459), + [sym__paragraph_content] = STATE(764), + [sym__inline] = STATE(703), + [sym__symbol_fallback] = STATE(366), + [aux_sym__list_dash_repeat1] = STATE(413), + [aux_sym__list_plus_repeat1] = STATE(418), + [aux_sym__list_star_repeat1] = STATE(417), + [aux_sym__list_task_repeat1] = STATE(381), + [aux_sym__list_definition_repeat1] = STATE(582), + [aux_sym__list_decimal_period_repeat1] = STATE(581), + [aux_sym__list_decimal_paren_repeat1] = STATE(579), + [aux_sym__list_decimal_parens_repeat1] = STATE(578), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(577), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(576), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(575), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(574), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(573), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(572), + [aux_sym__list_lower_roman_period_repeat1] = STATE(571), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(570), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(569), + [aux_sym__list_upper_roman_period_repeat1] = STATE(568), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(567), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(566), + [aux_sym_table_repeat1] = STATE(289), + [aux_sym__block_quote_prefix_repeat1] = STATE(323), + [aux_sym__inline_repeat1] = STATE(366), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(399), [aux_sym__inline_token1] = ACTIONS(11), [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__newline] = ACTIONS(420), - [sym__heading_begin] = ACTIONS(398), + [sym__newline] = ACTIONS(441), + [sym__heading_begin] = ACTIONS(403), [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(400), + [sym__code_block_begin] = ACTIONS(405), [sym_list_marker_dash] = ACTIONS(23), [sym_list_marker_star] = ACTIONS(25), [sym_list_marker_plus] = ACTIONS(27), @@ -9698,109 +9763,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(57), [sym_list_marker_lower_roman_parens] = ACTIONS(59), [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(402), - [sym__block_quote_continuation] = ACTIONS(65), - [sym__thematic_break_dash] = ACTIONS(404), - [sym__thematic_break_star] = ACTIONS(404), - [sym__footnote_begin] = ACTIONS(406), + [sym__block_quote_begin] = ACTIONS(407), + [sym__block_quote_continuation] = ACTIONS(409), + [sym__thematic_break_dash] = ACTIONS(411), + [sym__thematic_break_star] = ACTIONS(411), + [sym__footnote_begin] = ACTIONS(413), }, [45] = { - [sym__block_with_heading] = STATE(429), - [sym__block_element] = STATE(429), - [sym_heading] = STATE(429), - [sym_list] = STATE(429), - [sym__list_dash] = STATE(665), - [sym__list_item_dash] = STATE(364), - [sym__list_plus] = STATE(665), - [sym__list_item_plus] = STATE(384), - [sym__list_star] = STATE(665), - [sym__list_item_star] = STATE(386), - [sym__list_task] = STATE(665), - [sym__list_item_task] = STATE(333), - [sym_list_marker_task] = STATE(37), - [sym__list_definition] = STATE(665), - [sym__list_item_definition] = STATE(509), - [sym__list_decimal_period] = STATE(665), - [sym__list_item_decimal_period] = STATE(506), - [sym__list_decimal_paren] = STATE(665), - [sym__list_item_decimal_paren] = STATE(504), - [sym__list_decimal_parens] = STATE(665), - [sym__list_item_decimal_parens] = STATE(502), - [sym__list_lower_alpha_period] = STATE(665), - [sym__list_item_lower_alpha_period] = STATE(500), - [sym__list_lower_alpha_paren] = STATE(665), - [sym__list_item_lower_alpha_paren] = STATE(499), - [sym__list_lower_alpha_parens] = STATE(665), - [sym__list_item_lower_alpha_parens] = STATE(498), - [sym__list_upper_alpha_period] = STATE(665), - [sym__list_item_upper_alpha_period] = STATE(497), - [sym__list_upper_alpha_paren] = STATE(665), - [sym__list_item_upper_alpha_paren] = STATE(496), - [sym__list_upper_alpha_parens] = STATE(665), - [sym__list_item_upper_alpha_parens] = STATE(495), - [sym__list_lower_roman_period] = STATE(665), - [sym__list_item_lower_roman_period] = STATE(492), - [sym__list_lower_roman_paren] = STATE(665), - [sym__list_item_lower_roman_paren] = STATE(491), - [sym__list_lower_roman_parens] = STATE(665), - [sym__list_item_lower_roman_parens] = STATE(487), - [sym__list_upper_roman_period] = STATE(665), - [sym__list_item_upper_roman_period] = STATE(484), - [sym__list_upper_roman_paren] = STATE(665), - [sym__list_item_upper_roman_paren] = STATE(478), - [sym__list_upper_roman_parens] = STATE(665), - [sym__list_item_upper_roman_parens] = STATE(474), - [sym_list_item_content] = STATE(775), - [sym_table] = STATE(429), - [sym__table_content] = STATE(267), - [sym_table_separator] = STATE(267), - [sym_table_row] = STATE(327), - [sym_footnote] = STATE(429), - [sym_div] = STATE(429), - [sym_div_marker_begin] = STATE(914), - [sym_code_block] = STATE(429), - [sym_raw_block] = STATE(429), - [sym_thematic_break] = STATE(429), - [sym_block_quote] = STATE(429), - [sym__block_quote_prefix] = STATE(431), - [sym_link_reference_definition] = STATE(429), - [sym_block_attribute] = STATE(429), - [sym__paragraph] = STATE(429), - [sym__paragraph_content] = STATE(696), - [sym__inline] = STATE(683), - [sym__symbol_fallback] = STATE(329), - [aux_sym__list_dash_repeat1] = STATE(364), - [aux_sym__list_plus_repeat1] = STATE(384), - [aux_sym__list_star_repeat1] = STATE(386), - [aux_sym__list_task_repeat1] = STATE(333), - [aux_sym__list_definition_repeat1] = STATE(509), - [aux_sym__list_decimal_period_repeat1] = STATE(506), - [aux_sym__list_decimal_paren_repeat1] = STATE(504), - [aux_sym__list_decimal_parens_repeat1] = STATE(502), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(500), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(499), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(498), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(497), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(496), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(495), - [aux_sym__list_lower_roman_period_repeat1] = STATE(492), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(491), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(487), - [aux_sym__list_upper_roman_period_repeat1] = STATE(484), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(478), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), - [aux_sym_table_repeat1] = STATE(267), - [aux_sym__block_quote_prefix_repeat1] = STATE(397), - [aux_sym__inline_repeat1] = STATE(329), - [anon_sym_LBRACK] = ACTIONS(390), - [anon_sym_PIPE] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(394), + [sym__block_with_heading] = STATE(437), + [sym__block_element] = STATE(437), + [sym_heading] = STATE(437), + [sym_list] = STATE(437), + [sym__list_dash] = STATE(699), + [sym__list_item_dash] = STATE(413), + [sym__list_plus] = STATE(699), + [sym__list_item_plus] = STATE(418), + [sym__list_star] = STATE(699), + [sym__list_item_star] = STATE(417), + [sym__list_task] = STATE(699), + [sym__list_item_task] = STATE(381), + [sym_list_marker_task] = STATE(38), + [sym__list_definition] = STATE(699), + [sym__list_item_definition] = STATE(582), + [sym__list_decimal_period] = STATE(699), + [sym__list_item_decimal_period] = STATE(581), + [sym__list_decimal_paren] = STATE(699), + [sym__list_item_decimal_paren] = STATE(579), + [sym__list_decimal_parens] = STATE(699), + [sym__list_item_decimal_parens] = STATE(578), + [sym__list_lower_alpha_period] = STATE(699), + [sym__list_item_lower_alpha_period] = STATE(577), + [sym__list_lower_alpha_paren] = STATE(699), + [sym__list_item_lower_alpha_paren] = STATE(576), + [sym__list_lower_alpha_parens] = STATE(699), + [sym__list_item_lower_alpha_parens] = STATE(575), + [sym__list_upper_alpha_period] = STATE(699), + [sym__list_item_upper_alpha_period] = STATE(574), + [sym__list_upper_alpha_paren] = STATE(699), + [sym__list_item_upper_alpha_paren] = STATE(573), + [sym__list_upper_alpha_parens] = STATE(699), + [sym__list_item_upper_alpha_parens] = STATE(572), + [sym__list_lower_roman_period] = STATE(699), + [sym__list_item_lower_roman_period] = STATE(571), + [sym__list_lower_roman_paren] = STATE(699), + [sym__list_item_lower_roman_paren] = STATE(570), + [sym__list_lower_roman_parens] = STATE(699), + [sym__list_item_lower_roman_parens] = STATE(569), + [sym__list_upper_roman_period] = STATE(699), + [sym__list_item_upper_roman_period] = STATE(568), + [sym__list_upper_roman_paren] = STATE(699), + [sym__list_item_upper_roman_paren] = STATE(567), + [sym__list_upper_roman_parens] = STATE(699), + [sym__list_item_upper_roman_parens] = STATE(566), + [sym_list_item_content] = STATE(682), + [sym_table] = STATE(437), + [sym__table_content] = STATE(289), + [sym_table_separator] = STATE(289), + [sym_table_row] = STATE(363), + [sym_footnote] = STATE(437), + [sym_div] = STATE(437), + [sym_div_marker_begin] = STATE(941), + [sym_code_block] = STATE(437), + [sym_raw_block] = STATE(437), + [sym_thematic_break] = STATE(437), + [sym_block_quote] = STATE(437), + [sym__block_quote_prefix] = STATE(288), + [sym_link_reference_definition] = STATE(437), + [sym_block_attribute] = STATE(437), + [sym__paragraph] = STATE(437), + [sym__paragraph_content] = STATE(764), + [sym__inline] = STATE(703), + [sym__symbol_fallback] = STATE(366), + [aux_sym__list_dash_repeat1] = STATE(413), + [aux_sym__list_plus_repeat1] = STATE(418), + [aux_sym__list_star_repeat1] = STATE(417), + [aux_sym__list_task_repeat1] = STATE(381), + [aux_sym__list_definition_repeat1] = STATE(582), + [aux_sym__list_decimal_period_repeat1] = STATE(581), + [aux_sym__list_decimal_paren_repeat1] = STATE(579), + [aux_sym__list_decimal_parens_repeat1] = STATE(578), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(577), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(576), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(575), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(574), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(573), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(572), + [aux_sym__list_lower_roman_period_repeat1] = STATE(571), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(570), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(569), + [aux_sym__list_upper_roman_period_repeat1] = STATE(568), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(567), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(566), + [aux_sym_table_repeat1] = STATE(289), + [aux_sym__block_quote_prefix_repeat1] = STATE(323), + [aux_sym__inline_repeat1] = STATE(366), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(399), [aux_sym__inline_token1] = ACTIONS(11), [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__newline] = ACTIONS(434), - [sym__heading_begin] = ACTIONS(398), + [sym__newline] = ACTIONS(443), + [sym__heading_begin] = ACTIONS(403), [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(400), + [sym__code_block_begin] = ACTIONS(405), [sym_list_marker_dash] = ACTIONS(23), [sym_list_marker_star] = ACTIONS(25), [sym_list_marker_plus] = ACTIONS(27), @@ -9821,109 +9886,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(57), [sym_list_marker_lower_roman_parens] = ACTIONS(59), [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(402), - [sym__block_quote_continuation] = ACTIONS(65), - [sym__thematic_break_dash] = ACTIONS(404), - [sym__thematic_break_star] = ACTIONS(404), - [sym__footnote_begin] = ACTIONS(406), + [sym__block_quote_begin] = ACTIONS(407), + [sym__block_quote_continuation] = ACTIONS(409), + [sym__thematic_break_dash] = ACTIONS(411), + [sym__thematic_break_star] = ACTIONS(411), + [sym__footnote_begin] = ACTIONS(413), }, [46] = { - [sym__block_with_heading] = STATE(449), - [sym__block_element] = STATE(449), - [sym_heading] = STATE(449), - [sym_list] = STATE(449), - [sym__list_dash] = STATE(665), - [sym__list_item_dash] = STATE(364), - [sym__list_plus] = STATE(665), - [sym__list_item_plus] = STATE(384), - [sym__list_star] = STATE(665), - [sym__list_item_star] = STATE(386), - [sym__list_task] = STATE(665), - [sym__list_item_task] = STATE(333), - [sym_list_marker_task] = STATE(37), - [sym__list_definition] = STATE(665), - [sym__list_item_definition] = STATE(509), - [sym__list_decimal_period] = STATE(665), - [sym__list_item_decimal_period] = STATE(506), - [sym__list_decimal_paren] = STATE(665), - [sym__list_item_decimal_paren] = STATE(504), - [sym__list_decimal_parens] = STATE(665), - [sym__list_item_decimal_parens] = STATE(502), - [sym__list_lower_alpha_period] = STATE(665), - [sym__list_item_lower_alpha_period] = STATE(500), - [sym__list_lower_alpha_paren] = STATE(665), - [sym__list_item_lower_alpha_paren] = STATE(499), - [sym__list_lower_alpha_parens] = STATE(665), - [sym__list_item_lower_alpha_parens] = STATE(498), - [sym__list_upper_alpha_period] = STATE(665), - [sym__list_item_upper_alpha_period] = STATE(497), - [sym__list_upper_alpha_paren] = STATE(665), - [sym__list_item_upper_alpha_paren] = STATE(496), - [sym__list_upper_alpha_parens] = STATE(665), - [sym__list_item_upper_alpha_parens] = STATE(495), - [sym__list_lower_roman_period] = STATE(665), - [sym__list_item_lower_roman_period] = STATE(492), - [sym__list_lower_roman_paren] = STATE(665), - [sym__list_item_lower_roman_paren] = STATE(491), - [sym__list_lower_roman_parens] = STATE(665), - [sym__list_item_lower_roman_parens] = STATE(487), - [sym__list_upper_roman_period] = STATE(665), - [sym__list_item_upper_roman_period] = STATE(484), - [sym__list_upper_roman_paren] = STATE(665), - [sym__list_item_upper_roman_paren] = STATE(478), - [sym__list_upper_roman_parens] = STATE(665), - [sym__list_item_upper_roman_parens] = STATE(474), - [sym_list_item_content] = STATE(672), - [sym_table] = STATE(449), - [sym__table_content] = STATE(267), - [sym_table_separator] = STATE(267), - [sym_table_row] = STATE(327), - [sym_footnote] = STATE(449), - [sym_div] = STATE(449), - [sym_div_marker_begin] = STATE(914), - [sym_code_block] = STATE(449), - [sym_raw_block] = STATE(449), - [sym_thematic_break] = STATE(449), - [sym_block_quote] = STATE(449), - [sym__block_quote_prefix] = STATE(431), - [sym_link_reference_definition] = STATE(449), - [sym_block_attribute] = STATE(449), - [sym__paragraph] = STATE(449), - [sym__paragraph_content] = STATE(696), - [sym__inline] = STATE(683), - [sym__symbol_fallback] = STATE(329), - [aux_sym__list_dash_repeat1] = STATE(364), - [aux_sym__list_plus_repeat1] = STATE(384), - [aux_sym__list_star_repeat1] = STATE(386), - [aux_sym__list_task_repeat1] = STATE(333), - [aux_sym__list_definition_repeat1] = STATE(509), - [aux_sym__list_decimal_period_repeat1] = STATE(506), - [aux_sym__list_decimal_paren_repeat1] = STATE(504), - [aux_sym__list_decimal_parens_repeat1] = STATE(502), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(500), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(499), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(498), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(497), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(496), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(495), - [aux_sym__list_lower_roman_period_repeat1] = STATE(492), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(491), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(487), - [aux_sym__list_upper_roman_period_repeat1] = STATE(484), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(478), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), - [aux_sym_table_repeat1] = STATE(267), - [aux_sym__block_quote_prefix_repeat1] = STATE(397), - [aux_sym__inline_repeat1] = STATE(329), - [anon_sym_LBRACK] = ACTIONS(390), - [anon_sym_PIPE] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(394), + [sym__block_with_heading] = STATE(475), + [sym__block_element] = STATE(475), + [sym_heading] = STATE(475), + [sym_list] = STATE(475), + [sym__list_dash] = STATE(699), + [sym__list_item_dash] = STATE(413), + [sym__list_plus] = STATE(699), + [sym__list_item_plus] = STATE(418), + [sym__list_star] = STATE(699), + [sym__list_item_star] = STATE(417), + [sym__list_task] = STATE(699), + [sym__list_item_task] = STATE(381), + [sym_list_marker_task] = STATE(38), + [sym__list_definition] = STATE(699), + [sym__list_item_definition] = STATE(582), + [sym__list_decimal_period] = STATE(699), + [sym__list_item_decimal_period] = STATE(581), + [sym__list_decimal_paren] = STATE(699), + [sym__list_item_decimal_paren] = STATE(579), + [sym__list_decimal_parens] = STATE(699), + [sym__list_item_decimal_parens] = STATE(578), + [sym__list_lower_alpha_period] = STATE(699), + [sym__list_item_lower_alpha_period] = STATE(577), + [sym__list_lower_alpha_paren] = STATE(699), + [sym__list_item_lower_alpha_paren] = STATE(576), + [sym__list_lower_alpha_parens] = STATE(699), + [sym__list_item_lower_alpha_parens] = STATE(575), + [sym__list_upper_alpha_period] = STATE(699), + [sym__list_item_upper_alpha_period] = STATE(574), + [sym__list_upper_alpha_paren] = STATE(699), + [sym__list_item_upper_alpha_paren] = STATE(573), + [sym__list_upper_alpha_parens] = STATE(699), + [sym__list_item_upper_alpha_parens] = STATE(572), + [sym__list_lower_roman_period] = STATE(699), + [sym__list_item_lower_roman_period] = STATE(571), + [sym__list_lower_roman_paren] = STATE(699), + [sym__list_item_lower_roman_paren] = STATE(570), + [sym__list_lower_roman_parens] = STATE(699), + [sym__list_item_lower_roman_parens] = STATE(569), + [sym__list_upper_roman_period] = STATE(699), + [sym__list_item_upper_roman_period] = STATE(568), + [sym__list_upper_roman_paren] = STATE(699), + [sym__list_item_upper_roman_paren] = STATE(567), + [sym__list_upper_roman_parens] = STATE(699), + [sym__list_item_upper_roman_parens] = STATE(566), + [sym_list_item_content] = STATE(686), + [sym_table] = STATE(475), + [sym__table_content] = STATE(289), + [sym_table_separator] = STATE(289), + [sym_table_row] = STATE(363), + [sym_footnote] = STATE(475), + [sym_div] = STATE(475), + [sym_div_marker_begin] = STATE(941), + [sym_code_block] = STATE(475), + [sym_raw_block] = STATE(475), + [sym_thematic_break] = STATE(475), + [sym_block_quote] = STATE(475), + [sym__block_quote_prefix] = STATE(288), + [sym_link_reference_definition] = STATE(475), + [sym_block_attribute] = STATE(475), + [sym__paragraph] = STATE(475), + [sym__paragraph_content] = STATE(764), + [sym__inline] = STATE(703), + [sym__symbol_fallback] = STATE(366), + [aux_sym__list_dash_repeat1] = STATE(413), + [aux_sym__list_plus_repeat1] = STATE(418), + [aux_sym__list_star_repeat1] = STATE(417), + [aux_sym__list_task_repeat1] = STATE(381), + [aux_sym__list_definition_repeat1] = STATE(582), + [aux_sym__list_decimal_period_repeat1] = STATE(581), + [aux_sym__list_decimal_paren_repeat1] = STATE(579), + [aux_sym__list_decimal_parens_repeat1] = STATE(578), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(577), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(576), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(575), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(574), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(573), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(572), + [aux_sym__list_lower_roman_period_repeat1] = STATE(571), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(570), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(569), + [aux_sym__list_upper_roman_period_repeat1] = STATE(568), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(567), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(566), + [aux_sym_table_repeat1] = STATE(289), + [aux_sym__block_quote_prefix_repeat1] = STATE(323), + [aux_sym__inline_repeat1] = STATE(366), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(399), [aux_sym__inline_token1] = ACTIONS(11), [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__newline] = ACTIONS(412), - [sym__heading_begin] = ACTIONS(398), + [sym__newline] = ACTIONS(445), + [sym__heading_begin] = ACTIONS(403), [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(400), + [sym__code_block_begin] = ACTIONS(405), [sym_list_marker_dash] = ACTIONS(23), [sym_list_marker_star] = ACTIONS(25), [sym_list_marker_plus] = ACTIONS(27), @@ -9944,109 +10009,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(57), [sym_list_marker_lower_roman_parens] = ACTIONS(59), [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(402), - [sym__block_quote_continuation] = ACTIONS(65), - [sym__thematic_break_dash] = ACTIONS(404), - [sym__thematic_break_star] = ACTIONS(404), - [sym__footnote_begin] = ACTIONS(406), + [sym__block_quote_begin] = ACTIONS(407), + [sym__block_quote_continuation] = ACTIONS(409), + [sym__thematic_break_dash] = ACTIONS(411), + [sym__thematic_break_star] = ACTIONS(411), + [sym__footnote_begin] = ACTIONS(413), }, [47] = { - [sym__block_with_heading] = STATE(419), - [sym__block_element] = STATE(419), - [sym_heading] = STATE(419), - [sym_list] = STATE(419), - [sym__list_dash] = STATE(665), - [sym__list_item_dash] = STATE(364), - [sym__list_plus] = STATE(665), - [sym__list_item_plus] = STATE(384), - [sym__list_star] = STATE(665), - [sym__list_item_star] = STATE(386), - [sym__list_task] = STATE(665), - [sym__list_item_task] = STATE(333), - [sym_list_marker_task] = STATE(37), - [sym__list_definition] = STATE(665), - [sym__list_item_definition] = STATE(509), - [sym__list_decimal_period] = STATE(665), - [sym__list_item_decimal_period] = STATE(506), - [sym__list_decimal_paren] = STATE(665), - [sym__list_item_decimal_paren] = STATE(504), - [sym__list_decimal_parens] = STATE(665), - [sym__list_item_decimal_parens] = STATE(502), - [sym__list_lower_alpha_period] = STATE(665), - [sym__list_item_lower_alpha_period] = STATE(500), - [sym__list_lower_alpha_paren] = STATE(665), - [sym__list_item_lower_alpha_paren] = STATE(499), - [sym__list_lower_alpha_parens] = STATE(665), - [sym__list_item_lower_alpha_parens] = STATE(498), - [sym__list_upper_alpha_period] = STATE(665), - [sym__list_item_upper_alpha_period] = STATE(497), - [sym__list_upper_alpha_paren] = STATE(665), - [sym__list_item_upper_alpha_paren] = STATE(496), - [sym__list_upper_alpha_parens] = STATE(665), - [sym__list_item_upper_alpha_parens] = STATE(495), - [sym__list_lower_roman_period] = STATE(665), - [sym__list_item_lower_roman_period] = STATE(492), - [sym__list_lower_roman_paren] = STATE(665), - [sym__list_item_lower_roman_paren] = STATE(491), - [sym__list_lower_roman_parens] = STATE(665), - [sym__list_item_lower_roman_parens] = STATE(487), - [sym__list_upper_roman_period] = STATE(665), - [sym__list_item_upper_roman_period] = STATE(484), - [sym__list_upper_roman_paren] = STATE(665), - [sym__list_item_upper_roman_paren] = STATE(478), - [sym__list_upper_roman_parens] = STATE(665), - [sym__list_item_upper_roman_parens] = STATE(474), - [sym_list_item_content] = STATE(639), - [sym_table] = STATE(419), - [sym__table_content] = STATE(267), - [sym_table_separator] = STATE(267), - [sym_table_row] = STATE(327), - [sym_footnote] = STATE(419), - [sym_div] = STATE(419), - [sym_div_marker_begin] = STATE(914), - [sym_code_block] = STATE(419), - [sym_raw_block] = STATE(419), - [sym_thematic_break] = STATE(419), - [sym_block_quote] = STATE(419), - [sym__block_quote_prefix] = STATE(431), - [sym_link_reference_definition] = STATE(419), - [sym_block_attribute] = STATE(419), - [sym__paragraph] = STATE(419), - [sym__paragraph_content] = STATE(696), - [sym__inline] = STATE(683), - [sym__symbol_fallback] = STATE(329), - [aux_sym__list_dash_repeat1] = STATE(364), - [aux_sym__list_plus_repeat1] = STATE(384), - [aux_sym__list_star_repeat1] = STATE(386), - [aux_sym__list_task_repeat1] = STATE(333), - [aux_sym__list_definition_repeat1] = STATE(509), - [aux_sym__list_decimal_period_repeat1] = STATE(506), - [aux_sym__list_decimal_paren_repeat1] = STATE(504), - [aux_sym__list_decimal_parens_repeat1] = STATE(502), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(500), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(499), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(498), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(497), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(496), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(495), - [aux_sym__list_lower_roman_period_repeat1] = STATE(492), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(491), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(487), - [aux_sym__list_upper_roman_period_repeat1] = STATE(484), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(478), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), - [aux_sym_table_repeat1] = STATE(267), - [aux_sym__block_quote_prefix_repeat1] = STATE(397), - [aux_sym__inline_repeat1] = STATE(329), - [anon_sym_LBRACK] = ACTIONS(390), - [anon_sym_PIPE] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(394), + [sym__block_with_heading] = STATE(455), + [sym__block_element] = STATE(455), + [sym_heading] = STATE(455), + [sym_list] = STATE(455), + [sym__list_dash] = STATE(699), + [sym__list_item_dash] = STATE(413), + [sym__list_plus] = STATE(699), + [sym__list_item_plus] = STATE(418), + [sym__list_star] = STATE(699), + [sym__list_item_star] = STATE(417), + [sym__list_task] = STATE(699), + [sym__list_item_task] = STATE(381), + [sym_list_marker_task] = STATE(38), + [sym__list_definition] = STATE(699), + [sym__list_item_definition] = STATE(582), + [sym__list_decimal_period] = STATE(699), + [sym__list_item_decimal_period] = STATE(581), + [sym__list_decimal_paren] = STATE(699), + [sym__list_item_decimal_paren] = STATE(579), + [sym__list_decimal_parens] = STATE(699), + [sym__list_item_decimal_parens] = STATE(578), + [sym__list_lower_alpha_period] = STATE(699), + [sym__list_item_lower_alpha_period] = STATE(577), + [sym__list_lower_alpha_paren] = STATE(699), + [sym__list_item_lower_alpha_paren] = STATE(576), + [sym__list_lower_alpha_parens] = STATE(699), + [sym__list_item_lower_alpha_parens] = STATE(575), + [sym__list_upper_alpha_period] = STATE(699), + [sym__list_item_upper_alpha_period] = STATE(574), + [sym__list_upper_alpha_paren] = STATE(699), + [sym__list_item_upper_alpha_paren] = STATE(573), + [sym__list_upper_alpha_parens] = STATE(699), + [sym__list_item_upper_alpha_parens] = STATE(572), + [sym__list_lower_roman_period] = STATE(699), + [sym__list_item_lower_roman_period] = STATE(571), + [sym__list_lower_roman_paren] = STATE(699), + [sym__list_item_lower_roman_paren] = STATE(570), + [sym__list_lower_roman_parens] = STATE(699), + [sym__list_item_lower_roman_parens] = STATE(569), + [sym__list_upper_roman_period] = STATE(699), + [sym__list_item_upper_roman_period] = STATE(568), + [sym__list_upper_roman_paren] = STATE(699), + [sym__list_item_upper_roman_paren] = STATE(567), + [sym__list_upper_roman_parens] = STATE(699), + [sym__list_item_upper_roman_parens] = STATE(566), + [sym_list_item_content] = STATE(820), + [sym_table] = STATE(455), + [sym__table_content] = STATE(289), + [sym_table_separator] = STATE(289), + [sym_table_row] = STATE(363), + [sym_footnote] = STATE(455), + [sym_div] = STATE(455), + [sym_div_marker_begin] = STATE(941), + [sym_code_block] = STATE(455), + [sym_raw_block] = STATE(455), + [sym_thematic_break] = STATE(455), + [sym_block_quote] = STATE(455), + [sym__block_quote_prefix] = STATE(288), + [sym_link_reference_definition] = STATE(455), + [sym_block_attribute] = STATE(455), + [sym__paragraph] = STATE(455), + [sym__paragraph_content] = STATE(764), + [sym__inline] = STATE(703), + [sym__symbol_fallback] = STATE(366), + [aux_sym__list_dash_repeat1] = STATE(413), + [aux_sym__list_plus_repeat1] = STATE(418), + [aux_sym__list_star_repeat1] = STATE(417), + [aux_sym__list_task_repeat1] = STATE(381), + [aux_sym__list_definition_repeat1] = STATE(582), + [aux_sym__list_decimal_period_repeat1] = STATE(581), + [aux_sym__list_decimal_paren_repeat1] = STATE(579), + [aux_sym__list_decimal_parens_repeat1] = STATE(578), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(577), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(576), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(575), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(574), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(573), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(572), + [aux_sym__list_lower_roman_period_repeat1] = STATE(571), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(570), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(569), + [aux_sym__list_upper_roman_period_repeat1] = STATE(568), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(567), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(566), + [aux_sym_table_repeat1] = STATE(289), + [aux_sym__block_quote_prefix_repeat1] = STATE(323), + [aux_sym__inline_repeat1] = STATE(366), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(399), [aux_sym__inline_token1] = ACTIONS(11), [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__newline] = ACTIONS(410), - [sym__heading_begin] = ACTIONS(398), + [sym__newline] = ACTIONS(447), + [sym__heading_begin] = ACTIONS(403), [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(400), + [sym__code_block_begin] = ACTIONS(405), [sym_list_marker_dash] = ACTIONS(23), [sym_list_marker_star] = ACTIONS(25), [sym_list_marker_plus] = ACTIONS(27), @@ -10067,109 +10132,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(57), [sym_list_marker_lower_roman_parens] = ACTIONS(59), [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(402), - [sym__block_quote_continuation] = ACTIONS(65), - [sym__thematic_break_dash] = ACTIONS(404), - [sym__thematic_break_star] = ACTIONS(404), - [sym__footnote_begin] = ACTIONS(406), + [sym__block_quote_begin] = ACTIONS(407), + [sym__block_quote_continuation] = ACTIONS(409), + [sym__thematic_break_dash] = ACTIONS(411), + [sym__thematic_break_star] = ACTIONS(411), + [sym__footnote_begin] = ACTIONS(413), }, [48] = { - [sym__block_with_heading] = STATE(423), - [sym__block_element] = STATE(423), - [sym_heading] = STATE(423), - [sym_list] = STATE(423), - [sym__list_dash] = STATE(665), - [sym__list_item_dash] = STATE(364), - [sym__list_plus] = STATE(665), - [sym__list_item_plus] = STATE(384), - [sym__list_star] = STATE(665), - [sym__list_item_star] = STATE(386), - [sym__list_task] = STATE(665), - [sym__list_item_task] = STATE(333), - [sym_list_marker_task] = STATE(37), - [sym__list_definition] = STATE(665), - [sym__list_item_definition] = STATE(509), - [sym__list_decimal_period] = STATE(665), - [sym__list_item_decimal_period] = STATE(506), - [sym__list_decimal_paren] = STATE(665), - [sym__list_item_decimal_paren] = STATE(504), - [sym__list_decimal_parens] = STATE(665), - [sym__list_item_decimal_parens] = STATE(502), - [sym__list_lower_alpha_period] = STATE(665), - [sym__list_item_lower_alpha_period] = STATE(500), - [sym__list_lower_alpha_paren] = STATE(665), - [sym__list_item_lower_alpha_paren] = STATE(499), - [sym__list_lower_alpha_parens] = STATE(665), - [sym__list_item_lower_alpha_parens] = STATE(498), - [sym__list_upper_alpha_period] = STATE(665), - [sym__list_item_upper_alpha_period] = STATE(497), - [sym__list_upper_alpha_paren] = STATE(665), - [sym__list_item_upper_alpha_paren] = STATE(496), - [sym__list_upper_alpha_parens] = STATE(665), - [sym__list_item_upper_alpha_parens] = STATE(495), - [sym__list_lower_roman_period] = STATE(665), - [sym__list_item_lower_roman_period] = STATE(492), - [sym__list_lower_roman_paren] = STATE(665), - [sym__list_item_lower_roman_paren] = STATE(491), - [sym__list_lower_roman_parens] = STATE(665), - [sym__list_item_lower_roman_parens] = STATE(487), - [sym__list_upper_roman_period] = STATE(665), - [sym__list_item_upper_roman_period] = STATE(484), - [sym__list_upper_roman_paren] = STATE(665), - [sym__list_item_upper_roman_paren] = STATE(478), - [sym__list_upper_roman_parens] = STATE(665), - [sym__list_item_upper_roman_parens] = STATE(474), - [sym_list_item_content] = STATE(861), - [sym_table] = STATE(423), - [sym__table_content] = STATE(267), - [sym_table_separator] = STATE(267), - [sym_table_row] = STATE(327), - [sym_footnote] = STATE(423), - [sym_div] = STATE(423), - [sym_div_marker_begin] = STATE(914), - [sym_code_block] = STATE(423), - [sym_raw_block] = STATE(423), - [sym_thematic_break] = STATE(423), - [sym_block_quote] = STATE(423), - [sym__block_quote_prefix] = STATE(431), - [sym_link_reference_definition] = STATE(423), - [sym_block_attribute] = STATE(423), - [sym__paragraph] = STATE(423), - [sym__paragraph_content] = STATE(696), - [sym__inline] = STATE(683), - [sym__symbol_fallback] = STATE(329), - [aux_sym__list_dash_repeat1] = STATE(364), - [aux_sym__list_plus_repeat1] = STATE(384), - [aux_sym__list_star_repeat1] = STATE(386), - [aux_sym__list_task_repeat1] = STATE(333), - [aux_sym__list_definition_repeat1] = STATE(509), - [aux_sym__list_decimal_period_repeat1] = STATE(506), - [aux_sym__list_decimal_paren_repeat1] = STATE(504), - [aux_sym__list_decimal_parens_repeat1] = STATE(502), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(500), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(499), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(498), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(497), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(496), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(495), - [aux_sym__list_lower_roman_period_repeat1] = STATE(492), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(491), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(487), - [aux_sym__list_upper_roman_period_repeat1] = STATE(484), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(478), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), - [aux_sym_table_repeat1] = STATE(267), - [aux_sym__block_quote_prefix_repeat1] = STATE(397), - [aux_sym__inline_repeat1] = STATE(329), - [anon_sym_LBRACK] = ACTIONS(390), - [anon_sym_PIPE] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(394), + [sym__block_with_heading] = STATE(437), + [sym__block_element] = STATE(437), + [sym_heading] = STATE(437), + [sym_list] = STATE(437), + [sym__list_dash] = STATE(699), + [sym__list_item_dash] = STATE(413), + [sym__list_plus] = STATE(699), + [sym__list_item_plus] = STATE(418), + [sym__list_star] = STATE(699), + [sym__list_item_star] = STATE(417), + [sym__list_task] = STATE(699), + [sym__list_item_task] = STATE(381), + [sym_list_marker_task] = STATE(38), + [sym__list_definition] = STATE(699), + [sym__list_item_definition] = STATE(582), + [sym__list_decimal_period] = STATE(699), + [sym__list_item_decimal_period] = STATE(581), + [sym__list_decimal_paren] = STATE(699), + [sym__list_item_decimal_paren] = STATE(579), + [sym__list_decimal_parens] = STATE(699), + [sym__list_item_decimal_parens] = STATE(578), + [sym__list_lower_alpha_period] = STATE(699), + [sym__list_item_lower_alpha_period] = STATE(577), + [sym__list_lower_alpha_paren] = STATE(699), + [sym__list_item_lower_alpha_paren] = STATE(576), + [sym__list_lower_alpha_parens] = STATE(699), + [sym__list_item_lower_alpha_parens] = STATE(575), + [sym__list_upper_alpha_period] = STATE(699), + [sym__list_item_upper_alpha_period] = STATE(574), + [sym__list_upper_alpha_paren] = STATE(699), + [sym__list_item_upper_alpha_paren] = STATE(573), + [sym__list_upper_alpha_parens] = STATE(699), + [sym__list_item_upper_alpha_parens] = STATE(572), + [sym__list_lower_roman_period] = STATE(699), + [sym__list_item_lower_roman_period] = STATE(571), + [sym__list_lower_roman_paren] = STATE(699), + [sym__list_item_lower_roman_paren] = STATE(570), + [sym__list_lower_roman_parens] = STATE(699), + [sym__list_item_lower_roman_parens] = STATE(569), + [sym__list_upper_roman_period] = STATE(699), + [sym__list_item_upper_roman_period] = STATE(568), + [sym__list_upper_roman_paren] = STATE(699), + [sym__list_item_upper_roman_paren] = STATE(567), + [sym__list_upper_roman_parens] = STATE(699), + [sym__list_item_upper_roman_parens] = STATE(566), + [sym_list_item_content] = STATE(658), + [sym_table] = STATE(437), + [sym__table_content] = STATE(289), + [sym_table_separator] = STATE(289), + [sym_table_row] = STATE(363), + [sym_footnote] = STATE(437), + [sym_div] = STATE(437), + [sym_div_marker_begin] = STATE(941), + [sym_code_block] = STATE(437), + [sym_raw_block] = STATE(437), + [sym_thematic_break] = STATE(437), + [sym_block_quote] = STATE(437), + [sym__block_quote_prefix] = STATE(288), + [sym_link_reference_definition] = STATE(437), + [sym_block_attribute] = STATE(437), + [sym__paragraph] = STATE(437), + [sym__paragraph_content] = STATE(764), + [sym__inline] = STATE(703), + [sym__symbol_fallback] = STATE(366), + [aux_sym__list_dash_repeat1] = STATE(413), + [aux_sym__list_plus_repeat1] = STATE(418), + [aux_sym__list_star_repeat1] = STATE(417), + [aux_sym__list_task_repeat1] = STATE(381), + [aux_sym__list_definition_repeat1] = STATE(582), + [aux_sym__list_decimal_period_repeat1] = STATE(581), + [aux_sym__list_decimal_paren_repeat1] = STATE(579), + [aux_sym__list_decimal_parens_repeat1] = STATE(578), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(577), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(576), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(575), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(574), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(573), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(572), + [aux_sym__list_lower_roman_period_repeat1] = STATE(571), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(570), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(569), + [aux_sym__list_upper_roman_period_repeat1] = STATE(568), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(567), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(566), + [aux_sym_table_repeat1] = STATE(289), + [aux_sym__block_quote_prefix_repeat1] = STATE(323), + [aux_sym__inline_repeat1] = STATE(366), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(399), [aux_sym__inline_token1] = ACTIONS(11), [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__newline] = ACTIONS(436), - [sym__heading_begin] = ACTIONS(398), + [sym__newline] = ACTIONS(443), + [sym__heading_begin] = ACTIONS(403), [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(400), + [sym__code_block_begin] = ACTIONS(405), [sym_list_marker_dash] = ACTIONS(23), [sym_list_marker_star] = ACTIONS(25), [sym_list_marker_plus] = ACTIONS(27), @@ -10190,109 +10255,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(57), [sym_list_marker_lower_roman_parens] = ACTIONS(59), [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(402), - [sym__block_quote_continuation] = ACTIONS(65), - [sym__thematic_break_dash] = ACTIONS(404), - [sym__thematic_break_star] = ACTIONS(404), - [sym__footnote_begin] = ACTIONS(406), + [sym__block_quote_begin] = ACTIONS(407), + [sym__block_quote_continuation] = ACTIONS(409), + [sym__thematic_break_dash] = ACTIONS(411), + [sym__thematic_break_star] = ACTIONS(411), + [sym__footnote_begin] = ACTIONS(413), }, [49] = { - [sym__block_with_heading] = STATE(408), - [sym__block_element] = STATE(408), - [sym_heading] = STATE(408), - [sym_list] = STATE(408), - [sym__list_dash] = STATE(665), - [sym__list_item_dash] = STATE(364), - [sym__list_plus] = STATE(665), - [sym__list_item_plus] = STATE(384), - [sym__list_star] = STATE(665), - [sym__list_item_star] = STATE(386), - [sym__list_task] = STATE(665), - [sym__list_item_task] = STATE(333), - [sym_list_marker_task] = STATE(37), - [sym__list_definition] = STATE(665), - [sym__list_item_definition] = STATE(509), - [sym__list_decimal_period] = STATE(665), - [sym__list_item_decimal_period] = STATE(506), - [sym__list_decimal_paren] = STATE(665), - [sym__list_item_decimal_paren] = STATE(504), - [sym__list_decimal_parens] = STATE(665), - [sym__list_item_decimal_parens] = STATE(502), - [sym__list_lower_alpha_period] = STATE(665), - [sym__list_item_lower_alpha_period] = STATE(500), - [sym__list_lower_alpha_paren] = STATE(665), - [sym__list_item_lower_alpha_paren] = STATE(499), - [sym__list_lower_alpha_parens] = STATE(665), - [sym__list_item_lower_alpha_parens] = STATE(498), - [sym__list_upper_alpha_period] = STATE(665), - [sym__list_item_upper_alpha_period] = STATE(497), - [sym__list_upper_alpha_paren] = STATE(665), - [sym__list_item_upper_alpha_paren] = STATE(496), - [sym__list_upper_alpha_parens] = STATE(665), - [sym__list_item_upper_alpha_parens] = STATE(495), - [sym__list_lower_roman_period] = STATE(665), - [sym__list_item_lower_roman_period] = STATE(492), - [sym__list_lower_roman_paren] = STATE(665), - [sym__list_item_lower_roman_paren] = STATE(491), - [sym__list_lower_roman_parens] = STATE(665), - [sym__list_item_lower_roman_parens] = STATE(487), - [sym__list_upper_roman_period] = STATE(665), - [sym__list_item_upper_roman_period] = STATE(484), - [sym__list_upper_roman_paren] = STATE(665), - [sym__list_item_upper_roman_paren] = STATE(478), - [sym__list_upper_roman_parens] = STATE(665), - [sym__list_item_upper_roman_parens] = STATE(474), - [sym_list_item_content] = STATE(779), - [sym_table] = STATE(408), - [sym__table_content] = STATE(267), - [sym_table_separator] = STATE(267), - [sym_table_row] = STATE(327), - [sym_footnote] = STATE(408), - [sym_div] = STATE(408), - [sym_div_marker_begin] = STATE(914), - [sym_code_block] = STATE(408), - [sym_raw_block] = STATE(408), - [sym_thematic_break] = STATE(408), - [sym_block_quote] = STATE(408), - [sym__block_quote_prefix] = STATE(431), - [sym_link_reference_definition] = STATE(408), - [sym_block_attribute] = STATE(408), - [sym__paragraph] = STATE(408), - [sym__paragraph_content] = STATE(696), - [sym__inline] = STATE(683), - [sym__symbol_fallback] = STATE(329), - [aux_sym__list_dash_repeat1] = STATE(364), - [aux_sym__list_plus_repeat1] = STATE(384), - [aux_sym__list_star_repeat1] = STATE(386), - [aux_sym__list_task_repeat1] = STATE(333), - [aux_sym__list_definition_repeat1] = STATE(509), - [aux_sym__list_decimal_period_repeat1] = STATE(506), - [aux_sym__list_decimal_paren_repeat1] = STATE(504), - [aux_sym__list_decimal_parens_repeat1] = STATE(502), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(500), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(499), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(498), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(497), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(496), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(495), - [aux_sym__list_lower_roman_period_repeat1] = STATE(492), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(491), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(487), - [aux_sym__list_upper_roman_period_repeat1] = STATE(484), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(478), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), - [aux_sym_table_repeat1] = STATE(267), - [aux_sym__block_quote_prefix_repeat1] = STATE(397), - [aux_sym__inline_repeat1] = STATE(329), - [anon_sym_LBRACK] = ACTIONS(390), - [anon_sym_PIPE] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(394), + [sym__block_with_heading] = STATE(475), + [sym__block_element] = STATE(475), + [sym_heading] = STATE(475), + [sym_list] = STATE(475), + [sym__list_dash] = STATE(699), + [sym__list_item_dash] = STATE(413), + [sym__list_plus] = STATE(699), + [sym__list_item_plus] = STATE(418), + [sym__list_star] = STATE(699), + [sym__list_item_star] = STATE(417), + [sym__list_task] = STATE(699), + [sym__list_item_task] = STATE(381), + [sym_list_marker_task] = STATE(38), + [sym__list_definition] = STATE(699), + [sym__list_item_definition] = STATE(582), + [sym__list_decimal_period] = STATE(699), + [sym__list_item_decimal_period] = STATE(581), + [sym__list_decimal_paren] = STATE(699), + [sym__list_item_decimal_paren] = STATE(579), + [sym__list_decimal_parens] = STATE(699), + [sym__list_item_decimal_parens] = STATE(578), + [sym__list_lower_alpha_period] = STATE(699), + [sym__list_item_lower_alpha_period] = STATE(577), + [sym__list_lower_alpha_paren] = STATE(699), + [sym__list_item_lower_alpha_paren] = STATE(576), + [sym__list_lower_alpha_parens] = STATE(699), + [sym__list_item_lower_alpha_parens] = STATE(575), + [sym__list_upper_alpha_period] = STATE(699), + [sym__list_item_upper_alpha_period] = STATE(574), + [sym__list_upper_alpha_paren] = STATE(699), + [sym__list_item_upper_alpha_paren] = STATE(573), + [sym__list_upper_alpha_parens] = STATE(699), + [sym__list_item_upper_alpha_parens] = STATE(572), + [sym__list_lower_roman_period] = STATE(699), + [sym__list_item_lower_roman_period] = STATE(571), + [sym__list_lower_roman_paren] = STATE(699), + [sym__list_item_lower_roman_paren] = STATE(570), + [sym__list_lower_roman_parens] = STATE(699), + [sym__list_item_lower_roman_parens] = STATE(569), + [sym__list_upper_roman_period] = STATE(699), + [sym__list_item_upper_roman_period] = STATE(568), + [sym__list_upper_roman_paren] = STATE(699), + [sym__list_item_upper_roman_paren] = STATE(567), + [sym__list_upper_roman_parens] = STATE(699), + [sym__list_item_upper_roman_parens] = STATE(566), + [sym_list_item_content] = STATE(659), + [sym_table] = STATE(475), + [sym__table_content] = STATE(289), + [sym_table_separator] = STATE(289), + [sym_table_row] = STATE(363), + [sym_footnote] = STATE(475), + [sym_div] = STATE(475), + [sym_div_marker_begin] = STATE(941), + [sym_code_block] = STATE(475), + [sym_raw_block] = STATE(475), + [sym_thematic_break] = STATE(475), + [sym_block_quote] = STATE(475), + [sym__block_quote_prefix] = STATE(288), + [sym_link_reference_definition] = STATE(475), + [sym_block_attribute] = STATE(475), + [sym__paragraph] = STATE(475), + [sym__paragraph_content] = STATE(764), + [sym__inline] = STATE(703), + [sym__symbol_fallback] = STATE(366), + [aux_sym__list_dash_repeat1] = STATE(413), + [aux_sym__list_plus_repeat1] = STATE(418), + [aux_sym__list_star_repeat1] = STATE(417), + [aux_sym__list_task_repeat1] = STATE(381), + [aux_sym__list_definition_repeat1] = STATE(582), + [aux_sym__list_decimal_period_repeat1] = STATE(581), + [aux_sym__list_decimal_paren_repeat1] = STATE(579), + [aux_sym__list_decimal_parens_repeat1] = STATE(578), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(577), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(576), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(575), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(574), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(573), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(572), + [aux_sym__list_lower_roman_period_repeat1] = STATE(571), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(570), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(569), + [aux_sym__list_upper_roman_period_repeat1] = STATE(568), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(567), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(566), + [aux_sym_table_repeat1] = STATE(289), + [aux_sym__block_quote_prefix_repeat1] = STATE(323), + [aux_sym__inline_repeat1] = STATE(366), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(399), [aux_sym__inline_token1] = ACTIONS(11), [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__newline] = ACTIONS(438), - [sym__heading_begin] = ACTIONS(398), + [sym__newline] = ACTIONS(445), + [sym__heading_begin] = ACTIONS(403), [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(400), + [sym__code_block_begin] = ACTIONS(405), [sym_list_marker_dash] = ACTIONS(23), [sym_list_marker_star] = ACTIONS(25), [sym_list_marker_plus] = ACTIONS(27), @@ -10313,109 +10378,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(57), [sym_list_marker_lower_roman_parens] = ACTIONS(59), [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(402), - [sym__block_quote_continuation] = ACTIONS(65), - [sym__thematic_break_dash] = ACTIONS(404), - [sym__thematic_break_star] = ACTIONS(404), - [sym__footnote_begin] = ACTIONS(406), + [sym__block_quote_begin] = ACTIONS(407), + [sym__block_quote_continuation] = ACTIONS(409), + [sym__thematic_break_dash] = ACTIONS(411), + [sym__thematic_break_star] = ACTIONS(411), + [sym__footnote_begin] = ACTIONS(413), }, [50] = { - [sym__block_with_heading] = STATE(403), - [sym__block_element] = STATE(403), - [sym_heading] = STATE(403), - [sym_list] = STATE(403), - [sym__list_dash] = STATE(665), - [sym__list_item_dash] = STATE(364), - [sym__list_plus] = STATE(665), - [sym__list_item_plus] = STATE(384), - [sym__list_star] = STATE(665), - [sym__list_item_star] = STATE(386), - [sym__list_task] = STATE(665), - [sym__list_item_task] = STATE(333), - [sym_list_marker_task] = STATE(37), - [sym__list_definition] = STATE(665), - [sym__list_item_definition] = STATE(509), - [sym__list_decimal_period] = STATE(665), - [sym__list_item_decimal_period] = STATE(506), - [sym__list_decimal_paren] = STATE(665), - [sym__list_item_decimal_paren] = STATE(504), - [sym__list_decimal_parens] = STATE(665), - [sym__list_item_decimal_parens] = STATE(502), - [sym__list_lower_alpha_period] = STATE(665), - [sym__list_item_lower_alpha_period] = STATE(500), - [sym__list_lower_alpha_paren] = STATE(665), - [sym__list_item_lower_alpha_paren] = STATE(499), - [sym__list_lower_alpha_parens] = STATE(665), - [sym__list_item_lower_alpha_parens] = STATE(498), - [sym__list_upper_alpha_period] = STATE(665), - [sym__list_item_upper_alpha_period] = STATE(497), - [sym__list_upper_alpha_paren] = STATE(665), - [sym__list_item_upper_alpha_paren] = STATE(496), - [sym__list_upper_alpha_parens] = STATE(665), - [sym__list_item_upper_alpha_parens] = STATE(495), - [sym__list_lower_roman_period] = STATE(665), - [sym__list_item_lower_roman_period] = STATE(492), - [sym__list_lower_roman_paren] = STATE(665), - [sym__list_item_lower_roman_paren] = STATE(491), - [sym__list_lower_roman_parens] = STATE(665), - [sym__list_item_lower_roman_parens] = STATE(487), - [sym__list_upper_roman_period] = STATE(665), - [sym__list_item_upper_roman_period] = STATE(484), - [sym__list_upper_roman_paren] = STATE(665), - [sym__list_item_upper_roman_paren] = STATE(478), - [sym__list_upper_roman_parens] = STATE(665), - [sym__list_item_upper_roman_parens] = STATE(474), - [sym_list_item_content] = STATE(776), - [sym_table] = STATE(403), - [sym__table_content] = STATE(267), - [sym_table_separator] = STATE(267), - [sym_table_row] = STATE(327), - [sym_footnote] = STATE(403), - [sym_div] = STATE(403), - [sym_div_marker_begin] = STATE(914), - [sym_code_block] = STATE(403), - [sym_raw_block] = STATE(403), - [sym_thematic_break] = STATE(403), - [sym_block_quote] = STATE(403), - [sym__block_quote_prefix] = STATE(431), - [sym_link_reference_definition] = STATE(403), - [sym_block_attribute] = STATE(403), - [sym__paragraph] = STATE(403), - [sym__paragraph_content] = STATE(696), - [sym__inline] = STATE(683), - [sym__symbol_fallback] = STATE(329), - [aux_sym__list_dash_repeat1] = STATE(364), - [aux_sym__list_plus_repeat1] = STATE(384), - [aux_sym__list_star_repeat1] = STATE(386), - [aux_sym__list_task_repeat1] = STATE(333), - [aux_sym__list_definition_repeat1] = STATE(509), - [aux_sym__list_decimal_period_repeat1] = STATE(506), - [aux_sym__list_decimal_paren_repeat1] = STATE(504), - [aux_sym__list_decimal_parens_repeat1] = STATE(502), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(500), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(499), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(498), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(497), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(496), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(495), - [aux_sym__list_lower_roman_period_repeat1] = STATE(492), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(491), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(487), - [aux_sym__list_upper_roman_period_repeat1] = STATE(484), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(478), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), - [aux_sym_table_repeat1] = STATE(267), - [aux_sym__block_quote_prefix_repeat1] = STATE(397), - [aux_sym__inline_repeat1] = STATE(329), - [anon_sym_LBRACK] = ACTIONS(390), - [anon_sym_PIPE] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(394), + [sym__block_with_heading] = STATE(445), + [sym__block_element] = STATE(445), + [sym_heading] = STATE(445), + [sym_list] = STATE(445), + [sym__list_dash] = STATE(699), + [sym__list_item_dash] = STATE(413), + [sym__list_plus] = STATE(699), + [sym__list_item_plus] = STATE(418), + [sym__list_star] = STATE(699), + [sym__list_item_star] = STATE(417), + [sym__list_task] = STATE(699), + [sym__list_item_task] = STATE(381), + [sym_list_marker_task] = STATE(38), + [sym__list_definition] = STATE(699), + [sym__list_item_definition] = STATE(582), + [sym__list_decimal_period] = STATE(699), + [sym__list_item_decimal_period] = STATE(581), + [sym__list_decimal_paren] = STATE(699), + [sym__list_item_decimal_paren] = STATE(579), + [sym__list_decimal_parens] = STATE(699), + [sym__list_item_decimal_parens] = STATE(578), + [sym__list_lower_alpha_period] = STATE(699), + [sym__list_item_lower_alpha_period] = STATE(577), + [sym__list_lower_alpha_paren] = STATE(699), + [sym__list_item_lower_alpha_paren] = STATE(576), + [sym__list_lower_alpha_parens] = STATE(699), + [sym__list_item_lower_alpha_parens] = STATE(575), + [sym__list_upper_alpha_period] = STATE(699), + [sym__list_item_upper_alpha_period] = STATE(574), + [sym__list_upper_alpha_paren] = STATE(699), + [sym__list_item_upper_alpha_paren] = STATE(573), + [sym__list_upper_alpha_parens] = STATE(699), + [sym__list_item_upper_alpha_parens] = STATE(572), + [sym__list_lower_roman_period] = STATE(699), + [sym__list_item_lower_roman_period] = STATE(571), + [sym__list_lower_roman_paren] = STATE(699), + [sym__list_item_lower_roman_paren] = STATE(570), + [sym__list_lower_roman_parens] = STATE(699), + [sym__list_item_lower_roman_parens] = STATE(569), + [sym__list_upper_roman_period] = STATE(699), + [sym__list_item_upper_roman_period] = STATE(568), + [sym__list_upper_roman_paren] = STATE(699), + [sym__list_item_upper_roman_paren] = STATE(567), + [sym__list_upper_roman_parens] = STATE(699), + [sym__list_item_upper_roman_parens] = STATE(566), + [sym_list_item_content] = STATE(609), + [sym_table] = STATE(445), + [sym__table_content] = STATE(289), + [sym_table_separator] = STATE(289), + [sym_table_row] = STATE(363), + [sym_footnote] = STATE(445), + [sym_div] = STATE(445), + [sym_div_marker_begin] = STATE(941), + [sym_code_block] = STATE(445), + [sym_raw_block] = STATE(445), + [sym_thematic_break] = STATE(445), + [sym_block_quote] = STATE(445), + [sym__block_quote_prefix] = STATE(288), + [sym_link_reference_definition] = STATE(445), + [sym_block_attribute] = STATE(445), + [sym__paragraph] = STATE(445), + [sym__paragraph_content] = STATE(764), + [sym__inline] = STATE(703), + [sym__symbol_fallback] = STATE(366), + [aux_sym__list_dash_repeat1] = STATE(413), + [aux_sym__list_plus_repeat1] = STATE(418), + [aux_sym__list_star_repeat1] = STATE(417), + [aux_sym__list_task_repeat1] = STATE(381), + [aux_sym__list_definition_repeat1] = STATE(582), + [aux_sym__list_decimal_period_repeat1] = STATE(581), + [aux_sym__list_decimal_paren_repeat1] = STATE(579), + [aux_sym__list_decimal_parens_repeat1] = STATE(578), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(577), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(576), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(575), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(574), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(573), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(572), + [aux_sym__list_lower_roman_period_repeat1] = STATE(571), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(570), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(569), + [aux_sym__list_upper_roman_period_repeat1] = STATE(568), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(567), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(566), + [aux_sym_table_repeat1] = STATE(289), + [aux_sym__block_quote_prefix_repeat1] = STATE(323), + [aux_sym__inline_repeat1] = STATE(366), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(399), [aux_sym__inline_token1] = ACTIONS(11), [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__newline] = ACTIONS(440), - [sym__heading_begin] = ACTIONS(398), + [sym__newline] = ACTIONS(433), + [sym__heading_begin] = ACTIONS(403), [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(400), + [sym__code_block_begin] = ACTIONS(405), [sym_list_marker_dash] = ACTIONS(23), [sym_list_marker_star] = ACTIONS(25), [sym_list_marker_plus] = ACTIONS(27), @@ -10436,109 +10501,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(57), [sym_list_marker_lower_roman_parens] = ACTIONS(59), [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(402), - [sym__block_quote_continuation] = ACTIONS(65), - [sym__thematic_break_dash] = ACTIONS(404), - [sym__thematic_break_star] = ACTIONS(404), - [sym__footnote_begin] = ACTIONS(406), + [sym__block_quote_begin] = ACTIONS(407), + [sym__block_quote_continuation] = ACTIONS(409), + [sym__thematic_break_dash] = ACTIONS(411), + [sym__thematic_break_star] = ACTIONS(411), + [sym__footnote_begin] = ACTIONS(413), }, [51] = { - [sym__block_with_heading] = STATE(406), - [sym__block_element] = STATE(406), - [sym_heading] = STATE(406), - [sym_list] = STATE(406), - [sym__list_dash] = STATE(665), - [sym__list_item_dash] = STATE(364), - [sym__list_plus] = STATE(665), - [sym__list_item_plus] = STATE(384), - [sym__list_star] = STATE(665), - [sym__list_item_star] = STATE(386), - [sym__list_task] = STATE(665), - [sym__list_item_task] = STATE(333), - [sym_list_marker_task] = STATE(37), - [sym__list_definition] = STATE(665), - [sym__list_item_definition] = STATE(509), - [sym__list_decimal_period] = STATE(665), - [sym__list_item_decimal_period] = STATE(506), - [sym__list_decimal_paren] = STATE(665), - [sym__list_item_decimal_paren] = STATE(504), - [sym__list_decimal_parens] = STATE(665), - [sym__list_item_decimal_parens] = STATE(502), - [sym__list_lower_alpha_period] = STATE(665), - [sym__list_item_lower_alpha_period] = STATE(500), - [sym__list_lower_alpha_paren] = STATE(665), - [sym__list_item_lower_alpha_paren] = STATE(499), - [sym__list_lower_alpha_parens] = STATE(665), - [sym__list_item_lower_alpha_parens] = STATE(498), - [sym__list_upper_alpha_period] = STATE(665), - [sym__list_item_upper_alpha_period] = STATE(497), - [sym__list_upper_alpha_paren] = STATE(665), - [sym__list_item_upper_alpha_paren] = STATE(496), - [sym__list_upper_alpha_parens] = STATE(665), - [sym__list_item_upper_alpha_parens] = STATE(495), - [sym__list_lower_roman_period] = STATE(665), - [sym__list_item_lower_roman_period] = STATE(492), - [sym__list_lower_roman_paren] = STATE(665), - [sym__list_item_lower_roman_paren] = STATE(491), - [sym__list_lower_roman_parens] = STATE(665), - [sym__list_item_lower_roman_parens] = STATE(487), - [sym__list_upper_roman_period] = STATE(665), - [sym__list_item_upper_roman_period] = STATE(484), - [sym__list_upper_roman_paren] = STATE(665), - [sym__list_item_upper_roman_paren] = STATE(478), - [sym__list_upper_roman_parens] = STATE(665), - [sym__list_item_upper_roman_parens] = STATE(474), - [sym_list_item_content] = STATE(777), - [sym_table] = STATE(406), - [sym__table_content] = STATE(267), - [sym_table_separator] = STATE(267), - [sym_table_row] = STATE(327), - [sym_footnote] = STATE(406), - [sym_div] = STATE(406), - [sym_div_marker_begin] = STATE(914), - [sym_code_block] = STATE(406), - [sym_raw_block] = STATE(406), - [sym_thematic_break] = STATE(406), - [sym_block_quote] = STATE(406), - [sym__block_quote_prefix] = STATE(431), - [sym_link_reference_definition] = STATE(406), - [sym_block_attribute] = STATE(406), - [sym__paragraph] = STATE(406), - [sym__paragraph_content] = STATE(696), - [sym__inline] = STATE(683), - [sym__symbol_fallback] = STATE(329), - [aux_sym__list_dash_repeat1] = STATE(364), - [aux_sym__list_plus_repeat1] = STATE(384), - [aux_sym__list_star_repeat1] = STATE(386), - [aux_sym__list_task_repeat1] = STATE(333), - [aux_sym__list_definition_repeat1] = STATE(509), - [aux_sym__list_decimal_period_repeat1] = STATE(506), - [aux_sym__list_decimal_paren_repeat1] = STATE(504), - [aux_sym__list_decimal_parens_repeat1] = STATE(502), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(500), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(499), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(498), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(497), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(496), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(495), - [aux_sym__list_lower_roman_period_repeat1] = STATE(492), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(491), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(487), - [aux_sym__list_upper_roman_period_repeat1] = STATE(484), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(478), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), - [aux_sym_table_repeat1] = STATE(267), - [aux_sym__block_quote_prefix_repeat1] = STATE(397), - [aux_sym__inline_repeat1] = STATE(329), - [anon_sym_LBRACK] = ACTIONS(390), - [anon_sym_PIPE] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(394), + [sym__block_with_heading] = STATE(426), + [sym__block_element] = STATE(426), + [sym_heading] = STATE(426), + [sym_list] = STATE(426), + [sym__list_dash] = STATE(699), + [sym__list_item_dash] = STATE(413), + [sym__list_plus] = STATE(699), + [sym__list_item_plus] = STATE(418), + [sym__list_star] = STATE(699), + [sym__list_item_star] = STATE(417), + [sym__list_task] = STATE(699), + [sym__list_item_task] = STATE(381), + [sym_list_marker_task] = STATE(38), + [sym__list_definition] = STATE(699), + [sym__list_item_definition] = STATE(582), + [sym__list_decimal_period] = STATE(699), + [sym__list_item_decimal_period] = STATE(581), + [sym__list_decimal_paren] = STATE(699), + [sym__list_item_decimal_paren] = STATE(579), + [sym__list_decimal_parens] = STATE(699), + [sym__list_item_decimal_parens] = STATE(578), + [sym__list_lower_alpha_period] = STATE(699), + [sym__list_item_lower_alpha_period] = STATE(577), + [sym__list_lower_alpha_paren] = STATE(699), + [sym__list_item_lower_alpha_paren] = STATE(576), + [sym__list_lower_alpha_parens] = STATE(699), + [sym__list_item_lower_alpha_parens] = STATE(575), + [sym__list_upper_alpha_period] = STATE(699), + [sym__list_item_upper_alpha_period] = STATE(574), + [sym__list_upper_alpha_paren] = STATE(699), + [sym__list_item_upper_alpha_paren] = STATE(573), + [sym__list_upper_alpha_parens] = STATE(699), + [sym__list_item_upper_alpha_parens] = STATE(572), + [sym__list_lower_roman_period] = STATE(699), + [sym__list_item_lower_roman_period] = STATE(571), + [sym__list_lower_roman_paren] = STATE(699), + [sym__list_item_lower_roman_paren] = STATE(570), + [sym__list_lower_roman_parens] = STATE(699), + [sym__list_item_lower_roman_parens] = STATE(569), + [sym__list_upper_roman_period] = STATE(699), + [sym__list_item_upper_roman_period] = STATE(568), + [sym__list_upper_roman_paren] = STATE(699), + [sym__list_item_upper_roman_paren] = STATE(567), + [sym__list_upper_roman_parens] = STATE(699), + [sym__list_item_upper_roman_parens] = STATE(566), + [sym_list_item_content] = STATE(859), + [sym_table] = STATE(426), + [sym__table_content] = STATE(289), + [sym_table_separator] = STATE(289), + [sym_table_row] = STATE(363), + [sym_footnote] = STATE(426), + [sym_div] = STATE(426), + [sym_div_marker_begin] = STATE(941), + [sym_code_block] = STATE(426), + [sym_raw_block] = STATE(426), + [sym_thematic_break] = STATE(426), + [sym_block_quote] = STATE(426), + [sym__block_quote_prefix] = STATE(288), + [sym_link_reference_definition] = STATE(426), + [sym_block_attribute] = STATE(426), + [sym__paragraph] = STATE(426), + [sym__paragraph_content] = STATE(764), + [sym__inline] = STATE(703), + [sym__symbol_fallback] = STATE(366), + [aux_sym__list_dash_repeat1] = STATE(413), + [aux_sym__list_plus_repeat1] = STATE(418), + [aux_sym__list_star_repeat1] = STATE(417), + [aux_sym__list_task_repeat1] = STATE(381), + [aux_sym__list_definition_repeat1] = STATE(582), + [aux_sym__list_decimal_period_repeat1] = STATE(581), + [aux_sym__list_decimal_paren_repeat1] = STATE(579), + [aux_sym__list_decimal_parens_repeat1] = STATE(578), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(577), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(576), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(575), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(574), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(573), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(572), + [aux_sym__list_lower_roman_period_repeat1] = STATE(571), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(570), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(569), + [aux_sym__list_upper_roman_period_repeat1] = STATE(568), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(567), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(566), + [aux_sym_table_repeat1] = STATE(289), + [aux_sym__block_quote_prefix_repeat1] = STATE(323), + [aux_sym__inline_repeat1] = STATE(366), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(399), [aux_sym__inline_token1] = ACTIONS(11), [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__newline] = ACTIONS(442), - [sym__heading_begin] = ACTIONS(398), + [sym__newline] = ACTIONS(449), + [sym__heading_begin] = ACTIONS(403), [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(400), + [sym__code_block_begin] = ACTIONS(405), [sym_list_marker_dash] = ACTIONS(23), [sym_list_marker_star] = ACTIONS(25), [sym_list_marker_plus] = ACTIONS(27), @@ -10559,108 +10624,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(57), [sym_list_marker_lower_roman_parens] = ACTIONS(59), [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(402), - [sym__block_quote_continuation] = ACTIONS(65), - [sym__thematic_break_dash] = ACTIONS(404), - [sym__thematic_break_star] = ACTIONS(404), - [sym__footnote_begin] = ACTIONS(406), + [sym__block_quote_begin] = ACTIONS(407), + [sym__block_quote_continuation] = ACTIONS(409), + [sym__thematic_break_dash] = ACTIONS(411), + [sym__thematic_break_star] = ACTIONS(411), + [sym__footnote_begin] = ACTIONS(413), }, [52] = { - [sym__block_with_heading] = STATE(669), - [sym__block_element] = STATE(669), - [sym_heading] = STATE(669), - [sym_list] = STATE(669), - [sym__list_dash] = STATE(665), - [sym__list_item_dash] = STATE(364), - [sym__list_plus] = STATE(665), - [sym__list_item_plus] = STATE(384), - [sym__list_star] = STATE(665), - [sym__list_item_star] = STATE(386), - [sym__list_task] = STATE(665), - [sym__list_item_task] = STATE(333), - [sym_list_marker_task] = STATE(37), - [sym__list_definition] = STATE(665), - [sym__list_item_definition] = STATE(509), - [sym__list_decimal_period] = STATE(665), - [sym__list_item_decimal_period] = STATE(506), - [sym__list_decimal_paren] = STATE(665), - [sym__list_item_decimal_paren] = STATE(504), - [sym__list_decimal_parens] = STATE(665), - [sym__list_item_decimal_parens] = STATE(502), - [sym__list_lower_alpha_period] = STATE(665), - [sym__list_item_lower_alpha_period] = STATE(500), - [sym__list_lower_alpha_paren] = STATE(665), - [sym__list_item_lower_alpha_paren] = STATE(499), - [sym__list_lower_alpha_parens] = STATE(665), - [sym__list_item_lower_alpha_parens] = STATE(498), - [sym__list_upper_alpha_period] = STATE(665), - [sym__list_item_upper_alpha_period] = STATE(497), - [sym__list_upper_alpha_paren] = STATE(665), - [sym__list_item_upper_alpha_paren] = STATE(496), - [sym__list_upper_alpha_parens] = STATE(665), - [sym__list_item_upper_alpha_parens] = STATE(495), - [sym__list_lower_roman_period] = STATE(665), - [sym__list_item_lower_roman_period] = STATE(492), - [sym__list_lower_roman_paren] = STATE(665), - [sym__list_item_lower_roman_paren] = STATE(491), - [sym__list_lower_roman_parens] = STATE(665), - [sym__list_item_lower_roman_parens] = STATE(487), - [sym__list_upper_roman_period] = STATE(665), - [sym__list_item_upper_roman_period] = STATE(484), - [sym__list_upper_roman_paren] = STATE(665), - [sym__list_item_upper_roman_paren] = STATE(478), - [sym__list_upper_roman_parens] = STATE(665), - [sym__list_item_upper_roman_parens] = STATE(474), - [sym_table] = STATE(669), - [sym__table_content] = STATE(267), - [sym_table_separator] = STATE(267), - [sym_table_row] = STATE(327), - [sym_footnote] = STATE(669), - [sym_div] = STATE(669), - [sym_div_marker_begin] = STATE(914), - [sym_code_block] = STATE(669), - [sym_raw_block] = STATE(669), - [sym_thematic_break] = STATE(669), - [sym_block_quote] = STATE(669), - [sym__block_quote_prefix] = STATE(431), - [sym_link_reference_definition] = STATE(669), - [sym_block_attribute] = STATE(669), - [sym__paragraph] = STATE(669), - [sym__paragraph_content] = STATE(696), - [sym__inline] = STATE(683), - [sym__symbol_fallback] = STATE(329), - [aux_sym__list_dash_repeat1] = STATE(364), - [aux_sym__list_plus_repeat1] = STATE(384), - [aux_sym__list_star_repeat1] = STATE(386), - [aux_sym__list_task_repeat1] = STATE(333), - [aux_sym__list_definition_repeat1] = STATE(509), - [aux_sym__list_decimal_period_repeat1] = STATE(506), - [aux_sym__list_decimal_paren_repeat1] = STATE(504), - [aux_sym__list_decimal_parens_repeat1] = STATE(502), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(500), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(499), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(498), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(497), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(496), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(495), - [aux_sym__list_lower_roman_period_repeat1] = STATE(492), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(491), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(487), - [aux_sym__list_upper_roman_period_repeat1] = STATE(484), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(478), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), - [aux_sym_table_repeat1] = STATE(267), - [aux_sym__block_quote_prefix_repeat1] = STATE(397), - [aux_sym__inline_repeat1] = STATE(329), - [anon_sym_LBRACK] = ACTIONS(390), - [anon_sym_PIPE] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(394), + [sym__block_with_heading] = STATE(617), + [sym__block_element] = STATE(617), + [sym_heading] = STATE(617), + [sym_list] = STATE(617), + [sym__list_dash] = STATE(699), + [sym__list_item_dash] = STATE(413), + [sym__list_plus] = STATE(699), + [sym__list_item_plus] = STATE(418), + [sym__list_star] = STATE(699), + [sym__list_item_star] = STATE(417), + [sym__list_task] = STATE(699), + [sym__list_item_task] = STATE(381), + [sym_list_marker_task] = STATE(38), + [sym__list_definition] = STATE(699), + [sym__list_item_definition] = STATE(582), + [sym__list_decimal_period] = STATE(699), + [sym__list_item_decimal_period] = STATE(581), + [sym__list_decimal_paren] = STATE(699), + [sym__list_item_decimal_paren] = STATE(579), + [sym__list_decimal_parens] = STATE(699), + [sym__list_item_decimal_parens] = STATE(578), + [sym__list_lower_alpha_period] = STATE(699), + [sym__list_item_lower_alpha_period] = STATE(577), + [sym__list_lower_alpha_paren] = STATE(699), + [sym__list_item_lower_alpha_paren] = STATE(576), + [sym__list_lower_alpha_parens] = STATE(699), + [sym__list_item_lower_alpha_parens] = STATE(575), + [sym__list_upper_alpha_period] = STATE(699), + [sym__list_item_upper_alpha_period] = STATE(574), + [sym__list_upper_alpha_paren] = STATE(699), + [sym__list_item_upper_alpha_paren] = STATE(573), + [sym__list_upper_alpha_parens] = STATE(699), + [sym__list_item_upper_alpha_parens] = STATE(572), + [sym__list_lower_roman_period] = STATE(699), + [sym__list_item_lower_roman_period] = STATE(571), + [sym__list_lower_roman_paren] = STATE(699), + [sym__list_item_lower_roman_paren] = STATE(570), + [sym__list_lower_roman_parens] = STATE(699), + [sym__list_item_lower_roman_parens] = STATE(569), + [sym__list_upper_roman_period] = STATE(699), + [sym__list_item_upper_roman_period] = STATE(568), + [sym__list_upper_roman_paren] = STATE(699), + [sym__list_item_upper_roman_paren] = STATE(567), + [sym__list_upper_roman_parens] = STATE(699), + [sym__list_item_upper_roman_parens] = STATE(566), + [sym_table] = STATE(617), + [sym__table_content] = STATE(289), + [sym_table_separator] = STATE(289), + [sym_table_row] = STATE(363), + [sym_footnote] = STATE(617), + [sym_div] = STATE(617), + [sym_div_marker_begin] = STATE(941), + [sym_code_block] = STATE(617), + [sym_raw_block] = STATE(617), + [sym_thematic_break] = STATE(617), + [sym_block_quote] = STATE(617), + [sym__block_quote_prefix] = STATE(288), + [sym_link_reference_definition] = STATE(617), + [sym_block_attribute] = STATE(617), + [sym__paragraph] = STATE(617), + [sym__paragraph_content] = STATE(764), + [sym__inline] = STATE(703), + [sym__symbol_fallback] = STATE(366), + [aux_sym__list_dash_repeat1] = STATE(413), + [aux_sym__list_plus_repeat1] = STATE(418), + [aux_sym__list_star_repeat1] = STATE(417), + [aux_sym__list_task_repeat1] = STATE(381), + [aux_sym__list_definition_repeat1] = STATE(582), + [aux_sym__list_decimal_period_repeat1] = STATE(581), + [aux_sym__list_decimal_paren_repeat1] = STATE(579), + [aux_sym__list_decimal_parens_repeat1] = STATE(578), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(577), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(576), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(575), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(574), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(573), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(572), + [aux_sym__list_lower_roman_period_repeat1] = STATE(571), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(570), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(569), + [aux_sym__list_upper_roman_period_repeat1] = STATE(568), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(567), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(566), + [aux_sym_table_repeat1] = STATE(289), + [aux_sym__block_quote_prefix_repeat1] = STATE(323), + [aux_sym__inline_repeat1] = STATE(366), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(399), [aux_sym__inline_token1] = ACTIONS(11), [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__newline] = ACTIONS(444), - [sym__heading_begin] = ACTIONS(398), + [sym__newline] = ACTIONS(451), + [sym__heading_begin] = ACTIONS(403), [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(400), + [sym__code_block_begin] = ACTIONS(405), [sym_list_marker_dash] = ACTIONS(23), [sym_list_marker_star] = ACTIONS(25), [sym_list_marker_plus] = ACTIONS(27), @@ -10681,108 +10746,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(57), [sym_list_marker_lower_roman_parens] = ACTIONS(59), [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(402), - [sym__block_quote_continuation] = ACTIONS(65), - [sym__thematic_break_dash] = ACTIONS(404), - [sym__thematic_break_star] = ACTIONS(404), - [sym__footnote_begin] = ACTIONS(406), + [sym__block_quote_begin] = ACTIONS(407), + [sym__block_quote_continuation] = ACTIONS(409), + [sym__thematic_break_dash] = ACTIONS(411), + [sym__thematic_break_star] = ACTIONS(411), + [sym__footnote_begin] = ACTIONS(413), }, [53] = { - [sym__block_with_heading] = STATE(684), - [sym__block_element] = STATE(684), - [sym_heading] = STATE(684), - [sym_list] = STATE(684), - [sym__list_dash] = STATE(665), - [sym__list_item_dash] = STATE(364), - [sym__list_plus] = STATE(665), - [sym__list_item_plus] = STATE(384), - [sym__list_star] = STATE(665), - [sym__list_item_star] = STATE(386), - [sym__list_task] = STATE(665), - [sym__list_item_task] = STATE(333), - [sym_list_marker_task] = STATE(37), - [sym__list_definition] = STATE(665), - [sym__list_item_definition] = STATE(509), - [sym__list_decimal_period] = STATE(665), - [sym__list_item_decimal_period] = STATE(506), - [sym__list_decimal_paren] = STATE(665), - [sym__list_item_decimal_paren] = STATE(504), - [sym__list_decimal_parens] = STATE(665), - [sym__list_item_decimal_parens] = STATE(502), - [sym__list_lower_alpha_period] = STATE(665), - [sym__list_item_lower_alpha_period] = STATE(500), - [sym__list_lower_alpha_paren] = STATE(665), - [sym__list_item_lower_alpha_paren] = STATE(499), - [sym__list_lower_alpha_parens] = STATE(665), - [sym__list_item_lower_alpha_parens] = STATE(498), - [sym__list_upper_alpha_period] = STATE(665), - [sym__list_item_upper_alpha_period] = STATE(497), - [sym__list_upper_alpha_paren] = STATE(665), - [sym__list_item_upper_alpha_paren] = STATE(496), - [sym__list_upper_alpha_parens] = STATE(665), - [sym__list_item_upper_alpha_parens] = STATE(495), - [sym__list_lower_roman_period] = STATE(665), - [sym__list_item_lower_roman_period] = STATE(492), - [sym__list_lower_roman_paren] = STATE(665), - [sym__list_item_lower_roman_paren] = STATE(491), - [sym__list_lower_roman_parens] = STATE(665), - [sym__list_item_lower_roman_parens] = STATE(487), - [sym__list_upper_roman_period] = STATE(665), - [sym__list_item_upper_roman_period] = STATE(484), - [sym__list_upper_roman_paren] = STATE(665), - [sym__list_item_upper_roman_paren] = STATE(478), - [sym__list_upper_roman_parens] = STATE(665), - [sym__list_item_upper_roman_parens] = STATE(474), - [sym_table] = STATE(684), - [sym__table_content] = STATE(267), - [sym_table_separator] = STATE(267), - [sym_table_row] = STATE(327), - [sym_footnote] = STATE(684), - [sym_div] = STATE(684), - [sym_div_marker_begin] = STATE(914), - [sym_code_block] = STATE(684), - [sym_raw_block] = STATE(684), - [sym_thematic_break] = STATE(684), - [sym_block_quote] = STATE(684), - [sym__block_quote_prefix] = STATE(431), - [sym_link_reference_definition] = STATE(684), - [sym_block_attribute] = STATE(684), - [sym__paragraph] = STATE(684), - [sym__paragraph_content] = STATE(696), - [sym__inline] = STATE(683), - [sym__symbol_fallback] = STATE(329), - [aux_sym__list_dash_repeat1] = STATE(364), - [aux_sym__list_plus_repeat1] = STATE(384), - [aux_sym__list_star_repeat1] = STATE(386), - [aux_sym__list_task_repeat1] = STATE(333), - [aux_sym__list_definition_repeat1] = STATE(509), - [aux_sym__list_decimal_period_repeat1] = STATE(506), - [aux_sym__list_decimal_paren_repeat1] = STATE(504), - [aux_sym__list_decimal_parens_repeat1] = STATE(502), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(500), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(499), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(498), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(497), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(496), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(495), - [aux_sym__list_lower_roman_period_repeat1] = STATE(492), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(491), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(487), - [aux_sym__list_upper_roman_period_repeat1] = STATE(484), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(478), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), - [aux_sym_table_repeat1] = STATE(267), - [aux_sym__block_quote_prefix_repeat1] = STATE(397), - [aux_sym__inline_repeat1] = STATE(329), - [anon_sym_LBRACK] = ACTIONS(390), - [anon_sym_PIPE] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(394), + [sym__block_with_heading] = STATE(676), + [sym__block_element] = STATE(676), + [sym_heading] = STATE(676), + [sym_list] = STATE(676), + [sym__list_dash] = STATE(699), + [sym__list_item_dash] = STATE(413), + [sym__list_plus] = STATE(699), + [sym__list_item_plus] = STATE(418), + [sym__list_star] = STATE(699), + [sym__list_item_star] = STATE(417), + [sym__list_task] = STATE(699), + [sym__list_item_task] = STATE(381), + [sym_list_marker_task] = STATE(38), + [sym__list_definition] = STATE(699), + [sym__list_item_definition] = STATE(582), + [sym__list_decimal_period] = STATE(699), + [sym__list_item_decimal_period] = STATE(581), + [sym__list_decimal_paren] = STATE(699), + [sym__list_item_decimal_paren] = STATE(579), + [sym__list_decimal_parens] = STATE(699), + [sym__list_item_decimal_parens] = STATE(578), + [sym__list_lower_alpha_period] = STATE(699), + [sym__list_item_lower_alpha_period] = STATE(577), + [sym__list_lower_alpha_paren] = STATE(699), + [sym__list_item_lower_alpha_paren] = STATE(576), + [sym__list_lower_alpha_parens] = STATE(699), + [sym__list_item_lower_alpha_parens] = STATE(575), + [sym__list_upper_alpha_period] = STATE(699), + [sym__list_item_upper_alpha_period] = STATE(574), + [sym__list_upper_alpha_paren] = STATE(699), + [sym__list_item_upper_alpha_paren] = STATE(573), + [sym__list_upper_alpha_parens] = STATE(699), + [sym__list_item_upper_alpha_parens] = STATE(572), + [sym__list_lower_roman_period] = STATE(699), + [sym__list_item_lower_roman_period] = STATE(571), + [sym__list_lower_roman_paren] = STATE(699), + [sym__list_item_lower_roman_paren] = STATE(570), + [sym__list_lower_roman_parens] = STATE(699), + [sym__list_item_lower_roman_parens] = STATE(569), + [sym__list_upper_roman_period] = STATE(699), + [sym__list_item_upper_roman_period] = STATE(568), + [sym__list_upper_roman_paren] = STATE(699), + [sym__list_item_upper_roman_paren] = STATE(567), + [sym__list_upper_roman_parens] = STATE(699), + [sym__list_item_upper_roman_parens] = STATE(566), + [sym_table] = STATE(676), + [sym__table_content] = STATE(289), + [sym_table_separator] = STATE(289), + [sym_table_row] = STATE(363), + [sym_footnote] = STATE(676), + [sym_div] = STATE(676), + [sym_div_marker_begin] = STATE(941), + [sym_code_block] = STATE(676), + [sym_raw_block] = STATE(676), + [sym_thematic_break] = STATE(676), + [sym_block_quote] = STATE(676), + [sym__block_quote_prefix] = STATE(288), + [sym_link_reference_definition] = STATE(676), + [sym_block_attribute] = STATE(676), + [sym__paragraph] = STATE(676), + [sym__paragraph_content] = STATE(764), + [sym__inline] = STATE(703), + [sym__symbol_fallback] = STATE(366), + [aux_sym__list_dash_repeat1] = STATE(413), + [aux_sym__list_plus_repeat1] = STATE(418), + [aux_sym__list_star_repeat1] = STATE(417), + [aux_sym__list_task_repeat1] = STATE(381), + [aux_sym__list_definition_repeat1] = STATE(582), + [aux_sym__list_decimal_period_repeat1] = STATE(581), + [aux_sym__list_decimal_paren_repeat1] = STATE(579), + [aux_sym__list_decimal_parens_repeat1] = STATE(578), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(577), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(576), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(575), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(574), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(573), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(572), + [aux_sym__list_lower_roman_period_repeat1] = STATE(571), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(570), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(569), + [aux_sym__list_upper_roman_period_repeat1] = STATE(568), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(567), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(566), + [aux_sym_table_repeat1] = STATE(289), + [aux_sym__block_quote_prefix_repeat1] = STATE(323), + [aux_sym__inline_repeat1] = STATE(366), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(399), [aux_sym__inline_token1] = ACTIONS(11), [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__newline] = ACTIONS(446), - [sym__heading_begin] = ACTIONS(398), + [sym__newline] = ACTIONS(453), + [sym__heading_begin] = ACTIONS(403), [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(400), + [sym__code_block_begin] = ACTIONS(405), [sym_list_marker_dash] = ACTIONS(23), [sym_list_marker_star] = ACTIONS(25), [sym_list_marker_plus] = ACTIONS(27), @@ -10803,111 +10868,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(57), [sym_list_marker_lower_roman_parens] = ACTIONS(59), [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(402), - [sym__block_quote_continuation] = ACTIONS(65), - [sym__thematic_break_dash] = ACTIONS(404), - [sym__thematic_break_star] = ACTIONS(404), - [sym__footnote_begin] = ACTIONS(406), + [sym__block_quote_begin] = ACTIONS(407), + [sym__block_quote_continuation] = ACTIONS(409), + [sym__thematic_break_dash] = ACTIONS(411), + [sym__thematic_break_star] = ACTIONS(411), + [sym__footnote_begin] = ACTIONS(413), }, [54] = { - [sym__block_element] = STATE(467), - [sym_heading] = STATE(467), - [sym_list] = STATE(467), - [sym__list_dash] = STATE(847), - [sym__list_item_dash] = STATE(368), - [sym__list_plus] = STATE(847), - [sym__list_item_plus] = STATE(369), - [sym__list_star] = STATE(847), - [sym__list_item_star] = STATE(370), - [sym__list_task] = STATE(847), - [sym__list_item_task] = STATE(361), - [sym_list_marker_task] = STATE(37), - [sym__list_definition] = STATE(847), - [sym__list_item_definition] = STATE(514), - [sym__list_decimal_period] = STATE(847), - [sym__list_item_decimal_period] = STATE(516), - [sym__list_decimal_paren] = STATE(847), - [sym__list_item_decimal_paren] = STATE(518), - [sym__list_decimal_parens] = STATE(847), - [sym__list_item_decimal_parens] = STATE(522), - [sym__list_lower_alpha_period] = STATE(847), - [sym__list_item_lower_alpha_period] = STATE(526), - [sym__list_lower_alpha_paren] = STATE(847), - [sym__list_item_lower_alpha_paren] = STATE(531), - [sym__list_lower_alpha_parens] = STATE(847), - [sym__list_item_lower_alpha_parens] = STATE(533), - [sym__list_upper_alpha_period] = STATE(847), - [sym__list_item_upper_alpha_period] = STATE(534), - [sym__list_upper_alpha_paren] = STATE(847), - [sym__list_item_upper_alpha_paren] = STATE(535), - [sym__list_upper_alpha_parens] = STATE(847), - [sym__list_item_upper_alpha_parens] = STATE(536), - [sym__list_lower_roman_period] = STATE(847), - [sym__list_item_lower_roman_period] = STATE(471), - [sym__list_lower_roman_paren] = STATE(847), - [sym__list_item_lower_roman_paren] = STATE(537), - [sym__list_lower_roman_parens] = STATE(847), - [sym__list_item_lower_roman_parens] = STATE(538), - [sym__list_upper_roman_period] = STATE(847), - [sym__list_item_upper_roman_period] = STATE(540), - [sym__list_upper_roman_paren] = STATE(847), - [sym__list_item_upper_roman_paren] = STATE(542), - [sym__list_upper_roman_parens] = STATE(847), - [sym__list_item_upper_roman_parens] = STATE(544), - [sym_table] = STATE(467), - [sym__table_content] = STATE(274), - [sym_table_separator] = STATE(274), - [sym_table_row] = STATE(344), - [sym_footnote] = STATE(467), - [sym_div] = STATE(467), - [sym_div_marker_begin] = STATE(935), - [sym_code_block] = STATE(467), - [sym_raw_block] = STATE(467), - [sym_thematic_break] = STATE(467), - [sym_block_quote] = STATE(467), - [sym__block_quote_content] = STATE(970), - [sym__block_quote_prefix] = STATE(435), - [sym_link_reference_definition] = STATE(467), - [sym_block_attribute] = STATE(467), - [sym__paragraph] = STATE(467), - [sym__paragraph_content] = STATE(719), - [sym__inline] = STATE(683), - [sym__symbol_fallback] = STATE(329), - [aux_sym__list_dash_repeat1] = STATE(368), - [aux_sym__list_plus_repeat1] = STATE(369), - [aux_sym__list_star_repeat1] = STATE(370), - [aux_sym__list_task_repeat1] = STATE(361), - [aux_sym__list_definition_repeat1] = STATE(514), - [aux_sym__list_decimal_period_repeat1] = STATE(516), - [aux_sym__list_decimal_paren_repeat1] = STATE(518), - [aux_sym__list_decimal_parens_repeat1] = STATE(522), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(526), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(531), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(533), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(534), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(535), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(536), - [aux_sym__list_lower_roman_period_repeat1] = STATE(471), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(537), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(538), - [aux_sym__list_upper_roman_period_repeat1] = STATE(540), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(542), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(544), - [aux_sym_table_repeat1] = STATE(274), - [aux_sym__block_quote_prefix_repeat1] = STATE(397), - [aux_sym__inline_repeat1] = STATE(329), - [anon_sym_LBRACK] = ACTIONS(448), - [anon_sym_PIPE] = ACTIONS(450), - [anon_sym_LBRACE] = ACTIONS(452), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__heading_begin] = ACTIONS(454), + [sym__block_element] = STATE(227), + [sym_heading] = STATE(227), + [sym_list] = STATE(227), + [sym__list_dash] = STATE(141), + [sym__list_item_dash] = STATE(416), + [sym__list_plus] = STATE(141), + [sym__list_item_plus] = STATE(419), + [sym__list_star] = STATE(141), + [sym__list_item_star] = STATE(407), + [sym__list_task] = STATE(141), + [sym__list_item_task] = STATE(371), + [sym_list_marker_task] = STATE(38), + [sym__list_definition] = STATE(141), + [sym__list_item_definition] = STATE(549), + [sym__list_decimal_period] = STATE(141), + [sym__list_item_decimal_period] = STATE(548), + [sym__list_decimal_paren] = STATE(141), + [sym__list_item_decimal_paren] = STATE(547), + [sym__list_decimal_parens] = STATE(141), + [sym__list_item_decimal_parens] = STATE(546), + [sym__list_lower_alpha_period] = STATE(141), + [sym__list_item_lower_alpha_period] = STATE(545), + [sym__list_lower_alpha_paren] = STATE(141), + [sym__list_item_lower_alpha_paren] = STATE(544), + [sym__list_lower_alpha_parens] = STATE(141), + [sym__list_item_lower_alpha_parens] = STATE(543), + [sym__list_upper_alpha_period] = STATE(141), + [sym__list_item_upper_alpha_period] = STATE(542), + [sym__list_upper_alpha_paren] = STATE(141), + [sym__list_item_upper_alpha_paren] = STATE(541), + [sym__list_upper_alpha_parens] = STATE(141), + [sym__list_item_upper_alpha_parens] = STATE(540), + [sym__list_lower_roman_period] = STATE(141), + [sym__list_item_lower_roman_period] = STATE(539), + [sym__list_lower_roman_paren] = STATE(141), + [sym__list_item_lower_roman_paren] = STATE(538), + [sym__list_lower_roman_parens] = STATE(141), + [sym__list_item_lower_roman_parens] = STATE(537), + [sym__list_upper_roman_period] = STATE(141), + [sym__list_item_upper_roman_period] = STATE(536), + [sym__list_upper_roman_paren] = STATE(141), + [sym__list_item_upper_roman_paren] = STATE(535), + [sym__list_upper_roman_parens] = STATE(141), + [sym__list_item_upper_roman_parens] = STATE(534), + [sym_table] = STATE(227), + [sym__table_content] = STATE(66), + [sym_table_separator] = STATE(66), + [sym_table_row] = STATE(72), + [sym_footnote] = STATE(227), + [sym_div] = STATE(227), + [sym_div_marker_begin] = STATE(985), + [sym_code_block] = STATE(227), + [sym_raw_block] = STATE(227), + [sym_thematic_break] = STATE(227), + [sym_block_quote] = STATE(227), + [sym__block_quote_prefix] = STATE(286), + [sym_link_reference_definition] = STATE(227), + [sym_block_attribute] = STATE(227), + [sym__paragraph] = STATE(227), + [sym__paragraph_content] = STATE(801), + [sym__inline] = STATE(703), + [sym__symbol_fallback] = STATE(366), + [aux_sym__list_dash_repeat1] = STATE(416), + [aux_sym__list_plus_repeat1] = STATE(419), + [aux_sym__list_star_repeat1] = STATE(407), + [aux_sym__list_task_repeat1] = STATE(371), + [aux_sym__list_definition_repeat1] = STATE(549), + [aux_sym__list_decimal_period_repeat1] = STATE(548), + [aux_sym__list_decimal_paren_repeat1] = STATE(547), + [aux_sym__list_decimal_parens_repeat1] = STATE(546), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(545), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(544), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(543), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(542), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(541), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(540), + [aux_sym__list_lower_roman_period_repeat1] = STATE(539), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(538), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(537), + [aux_sym__list_upper_roman_period_repeat1] = STATE(536), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(535), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(534), + [aux_sym_table_repeat1] = STATE(66), + [aux_sym__block_quote_prefix_repeat1] = STATE(323), + [aux_sym__inline_repeat1] = STATE(366), + [anon_sym_LBRACK] = ACTIONS(455), + [anon_sym_PIPE] = ACTIONS(455), + [anon_sym_LBRACE] = ACTIONS(455), + [aux_sym__inline_token1] = ACTIONS(455), + [anon_sym_LBRACE_DASH] = ACTIONS(455), + [sym__block_close] = ACTIONS(457), + [sym__newline] = ACTIONS(459), + [sym__heading_begin] = ACTIONS(17), [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(456), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), + [sym__code_block_begin] = ACTIONS(207), + [sym_list_marker_dash] = ACTIONS(457), + [sym_list_marker_star] = ACTIONS(457), + [sym_list_marker_plus] = ACTIONS(457), + [sym__list_marker_task_begin] = ACTIONS(457), [sym_list_marker_definition] = ACTIONS(31), [sym_list_marker_decimal_period] = ACTIONS(33), [sym_list_marker_lower_alpha_period] = ACTIONS(35), @@ -10924,107 +10990,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(57), [sym_list_marker_lower_roman_parens] = ACTIONS(59), [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(458), - [sym__block_quote_continuation] = ACTIONS(65), - [sym__thematic_break_dash] = ACTIONS(460), - [sym__thematic_break_star] = ACTIONS(460), - [sym__footnote_begin] = ACTIONS(462), + [sym__block_quote_begin] = ACTIONS(209), + [sym__block_quote_continuation] = ACTIONS(457), + [sym__thematic_break_dash] = ACTIONS(211), + [sym__thematic_break_star] = ACTIONS(211), + [sym__footnote_begin] = ACTIONS(213), }, [55] = { - [sym__block_element] = STATE(467), - [sym_heading] = STATE(467), - [sym_list] = STATE(467), - [sym__list_dash] = STATE(847), - [sym__list_item_dash] = STATE(368), - [sym__list_plus] = STATE(847), - [sym__list_item_plus] = STATE(369), - [sym__list_star] = STATE(847), - [sym__list_item_star] = STATE(370), - [sym__list_task] = STATE(847), - [sym__list_item_task] = STATE(361), - [sym_list_marker_task] = STATE(37), - [sym__list_definition] = STATE(847), - [sym__list_item_definition] = STATE(514), - [sym__list_decimal_period] = STATE(847), - [sym__list_item_decimal_period] = STATE(516), - [sym__list_decimal_paren] = STATE(847), - [sym__list_item_decimal_paren] = STATE(518), - [sym__list_decimal_parens] = STATE(847), - [sym__list_item_decimal_parens] = STATE(522), - [sym__list_lower_alpha_period] = STATE(847), - [sym__list_item_lower_alpha_period] = STATE(526), - [sym__list_lower_alpha_paren] = STATE(847), - [sym__list_item_lower_alpha_paren] = STATE(531), - [sym__list_lower_alpha_parens] = STATE(847), - [sym__list_item_lower_alpha_parens] = STATE(533), - [sym__list_upper_alpha_period] = STATE(847), - [sym__list_item_upper_alpha_period] = STATE(534), - [sym__list_upper_alpha_paren] = STATE(847), - [sym__list_item_upper_alpha_paren] = STATE(535), - [sym__list_upper_alpha_parens] = STATE(847), - [sym__list_item_upper_alpha_parens] = STATE(536), - [sym__list_lower_roman_period] = STATE(847), - [sym__list_item_lower_roman_period] = STATE(471), - [sym__list_lower_roman_paren] = STATE(847), - [sym__list_item_lower_roman_paren] = STATE(537), - [sym__list_lower_roman_parens] = STATE(847), - [sym__list_item_lower_roman_parens] = STATE(538), - [sym__list_upper_roman_period] = STATE(847), - [sym__list_item_upper_roman_period] = STATE(540), - [sym__list_upper_roman_paren] = STATE(847), - [sym__list_item_upper_roman_paren] = STATE(542), - [sym__list_upper_roman_parens] = STATE(847), - [sym__list_item_upper_roman_parens] = STATE(544), - [sym_table] = STATE(467), - [sym__table_content] = STATE(274), - [sym_table_separator] = STATE(274), - [sym_table_row] = STATE(344), - [sym_footnote] = STATE(467), - [sym_div] = STATE(467), - [sym_div_marker_begin] = STATE(935), - [sym_code_block] = STATE(467), - [sym_raw_block] = STATE(467), - [sym_thematic_break] = STATE(467), - [sym_block_quote] = STATE(467), - [sym__block_quote_content] = STATE(897), - [sym__block_quote_prefix] = STATE(435), - [sym_link_reference_definition] = STATE(467), - [sym_block_attribute] = STATE(467), - [sym__paragraph] = STATE(467), - [sym__paragraph_content] = STATE(719), - [sym__inline] = STATE(683), - [sym__symbol_fallback] = STATE(329), - [aux_sym__list_dash_repeat1] = STATE(368), - [aux_sym__list_plus_repeat1] = STATE(369), - [aux_sym__list_star_repeat1] = STATE(370), - [aux_sym__list_task_repeat1] = STATE(361), - [aux_sym__list_definition_repeat1] = STATE(514), - [aux_sym__list_decimal_period_repeat1] = STATE(516), - [aux_sym__list_decimal_paren_repeat1] = STATE(518), - [aux_sym__list_decimal_parens_repeat1] = STATE(522), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(526), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(531), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(533), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(534), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(535), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(536), - [aux_sym__list_lower_roman_period_repeat1] = STATE(471), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(537), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(538), - [aux_sym__list_upper_roman_period_repeat1] = STATE(540), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(542), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(544), - [aux_sym_table_repeat1] = STATE(274), - [aux_sym__block_quote_prefix_repeat1] = STATE(397), - [aux_sym__inline_repeat1] = STATE(329), - [anon_sym_LBRACK] = ACTIONS(448), - [anon_sym_PIPE] = ACTIONS(450), - [anon_sym_LBRACE] = ACTIONS(452), + [sym__block_element] = STATE(486), + [sym_heading] = STATE(486), + [sym_list] = STATE(486), + [sym__list_dash] = STATE(712), + [sym__list_item_dash] = STATE(400), + [sym__list_plus] = STATE(712), + [sym__list_item_plus] = STATE(401), + [sym__list_star] = STATE(712), + [sym__list_item_star] = STATE(402), + [sym__list_task] = STATE(712), + [sym__list_item_task] = STATE(387), + [sym_list_marker_task] = STATE(38), + [sym__list_definition] = STATE(712), + [sym__list_item_definition] = STATE(489), + [sym__list_decimal_period] = STATE(712), + [sym__list_item_decimal_period] = STATE(565), + [sym__list_decimal_paren] = STATE(712), + [sym__list_item_decimal_paren] = STATE(564), + [sym__list_decimal_parens] = STATE(712), + [sym__list_item_decimal_parens] = STATE(563), + [sym__list_lower_alpha_period] = STATE(712), + [sym__list_item_lower_alpha_period] = STATE(603), + [sym__list_lower_alpha_paren] = STATE(712), + [sym__list_item_lower_alpha_paren] = STATE(561), + [sym__list_lower_alpha_parens] = STATE(712), + [sym__list_item_lower_alpha_parens] = STATE(560), + [sym__list_upper_alpha_period] = STATE(712), + [sym__list_item_upper_alpha_period] = STATE(558), + [sym__list_upper_alpha_paren] = STATE(712), + [sym__list_item_upper_alpha_paren] = STATE(557), + [sym__list_upper_alpha_parens] = STATE(712), + [sym__list_item_upper_alpha_parens] = STATE(556), + [sym__list_lower_roman_period] = STATE(712), + [sym__list_item_lower_roman_period] = STATE(555), + [sym__list_lower_roman_paren] = STATE(712), + [sym__list_item_lower_roman_paren] = STATE(554), + [sym__list_lower_roman_parens] = STATE(712), + [sym__list_item_lower_roman_parens] = STATE(553), + [sym__list_upper_roman_period] = STATE(712), + [sym__list_item_upper_roman_period] = STATE(552), + [sym__list_upper_roman_paren] = STATE(712), + [sym__list_item_upper_roman_paren] = STATE(551), + [sym__list_upper_roman_parens] = STATE(712), + [sym__list_item_upper_roman_parens] = STATE(550), + [sym_table] = STATE(486), + [sym__table_content] = STATE(291), + [sym_table_separator] = STATE(291), + [sym_table_row] = STATE(376), + [sym_footnote] = STATE(486), + [sym_div] = STATE(486), + [sym_div_marker_begin] = STATE(963), + [sym_code_block] = STATE(486), + [sym_raw_block] = STATE(486), + [sym_thematic_break] = STATE(486), + [sym_block_quote] = STATE(486), + [sym__block_quote_content] = STATE(1012), + [sym__block_quote_prefix] = STATE(287), + [sym_link_reference_definition] = STATE(486), + [sym_block_attribute] = STATE(486), + [sym__paragraph] = STATE(486), + [sym__paragraph_content] = STATE(745), + [sym__inline] = STATE(703), + [sym__symbol_fallback] = STATE(366), + [aux_sym__list_dash_repeat1] = STATE(400), + [aux_sym__list_plus_repeat1] = STATE(401), + [aux_sym__list_star_repeat1] = STATE(402), + [aux_sym__list_task_repeat1] = STATE(387), + [aux_sym__list_definition_repeat1] = STATE(489), + [aux_sym__list_decimal_period_repeat1] = STATE(565), + [aux_sym__list_decimal_paren_repeat1] = STATE(564), + [aux_sym__list_decimal_parens_repeat1] = STATE(563), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(603), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(561), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(560), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(558), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(557), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(556), + [aux_sym__list_lower_roman_period_repeat1] = STATE(555), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(554), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(553), + [aux_sym__list_upper_roman_period_repeat1] = STATE(552), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(551), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(550), + [aux_sym_table_repeat1] = STATE(291), + [aux_sym__block_quote_prefix_repeat1] = STATE(323), + [aux_sym__inline_repeat1] = STATE(366), + [anon_sym_LBRACK] = ACTIONS(461), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(465), [aux_sym__inline_token1] = ACTIONS(11), [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__heading_begin] = ACTIONS(454), + [sym__heading_begin] = ACTIONS(467), [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(456), + [sym__code_block_begin] = ACTIONS(469), [sym_list_marker_dash] = ACTIONS(23), [sym_list_marker_star] = ACTIONS(25), [sym_list_marker_plus] = ACTIONS(27), @@ -11045,107 +11111,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(57), [sym_list_marker_lower_roman_parens] = ACTIONS(59), [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(458), + [sym__block_quote_begin] = ACTIONS(471), [sym__block_quote_continuation] = ACTIONS(65), - [sym__thematic_break_dash] = ACTIONS(460), - [sym__thematic_break_star] = ACTIONS(460), - [sym__footnote_begin] = ACTIONS(462), + [sym__thematic_break_dash] = ACTIONS(473), + [sym__thematic_break_star] = ACTIONS(473), + [sym__footnote_begin] = ACTIONS(475), }, [56] = { - [sym__block_element] = STATE(467), - [sym_heading] = STATE(467), - [sym_list] = STATE(467), - [sym__list_dash] = STATE(847), - [sym__list_item_dash] = STATE(368), - [sym__list_plus] = STATE(847), - [sym__list_item_plus] = STATE(369), - [sym__list_star] = STATE(847), - [sym__list_item_star] = STATE(370), - [sym__list_task] = STATE(847), - [sym__list_item_task] = STATE(361), - [sym_list_marker_task] = STATE(37), - [sym__list_definition] = STATE(847), - [sym__list_item_definition] = STATE(514), - [sym__list_decimal_period] = STATE(847), - [sym__list_item_decimal_period] = STATE(516), - [sym__list_decimal_paren] = STATE(847), - [sym__list_item_decimal_paren] = STATE(518), - [sym__list_decimal_parens] = STATE(847), - [sym__list_item_decimal_parens] = STATE(522), - [sym__list_lower_alpha_period] = STATE(847), - [sym__list_item_lower_alpha_period] = STATE(526), - [sym__list_lower_alpha_paren] = STATE(847), - [sym__list_item_lower_alpha_paren] = STATE(531), - [sym__list_lower_alpha_parens] = STATE(847), - [sym__list_item_lower_alpha_parens] = STATE(533), - [sym__list_upper_alpha_period] = STATE(847), - [sym__list_item_upper_alpha_period] = STATE(534), - [sym__list_upper_alpha_paren] = STATE(847), - [sym__list_item_upper_alpha_paren] = STATE(535), - [sym__list_upper_alpha_parens] = STATE(847), - [sym__list_item_upper_alpha_parens] = STATE(536), - [sym__list_lower_roman_period] = STATE(847), - [sym__list_item_lower_roman_period] = STATE(471), - [sym__list_lower_roman_paren] = STATE(847), - [sym__list_item_lower_roman_paren] = STATE(537), - [sym__list_lower_roman_parens] = STATE(847), - [sym__list_item_lower_roman_parens] = STATE(538), - [sym__list_upper_roman_period] = STATE(847), - [sym__list_item_upper_roman_period] = STATE(540), - [sym__list_upper_roman_paren] = STATE(847), - [sym__list_item_upper_roman_paren] = STATE(542), - [sym__list_upper_roman_parens] = STATE(847), - [sym__list_item_upper_roman_parens] = STATE(544), - [sym_table] = STATE(467), - [sym__table_content] = STATE(274), - [sym_table_separator] = STATE(274), - [sym_table_row] = STATE(344), - [sym_footnote] = STATE(467), - [sym_div] = STATE(467), - [sym_div_marker_begin] = STATE(935), - [sym_code_block] = STATE(467), - [sym_raw_block] = STATE(467), - [sym_thematic_break] = STATE(467), - [sym_block_quote] = STATE(467), - [sym__block_quote_content] = STATE(1034), - [sym__block_quote_prefix] = STATE(435), - [sym_link_reference_definition] = STATE(467), - [sym_block_attribute] = STATE(467), - [sym__paragraph] = STATE(467), - [sym__paragraph_content] = STATE(719), - [sym__inline] = STATE(683), - [sym__symbol_fallback] = STATE(329), - [aux_sym__list_dash_repeat1] = STATE(368), - [aux_sym__list_plus_repeat1] = STATE(369), - [aux_sym__list_star_repeat1] = STATE(370), - [aux_sym__list_task_repeat1] = STATE(361), - [aux_sym__list_definition_repeat1] = STATE(514), - [aux_sym__list_decimal_period_repeat1] = STATE(516), - [aux_sym__list_decimal_paren_repeat1] = STATE(518), - [aux_sym__list_decimal_parens_repeat1] = STATE(522), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(526), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(531), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(533), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(534), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(535), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(536), - [aux_sym__list_lower_roman_period_repeat1] = STATE(471), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(537), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(538), - [aux_sym__list_upper_roman_period_repeat1] = STATE(540), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(542), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(544), - [aux_sym_table_repeat1] = STATE(274), - [aux_sym__block_quote_prefix_repeat1] = STATE(397), - [aux_sym__inline_repeat1] = STATE(329), - [anon_sym_LBRACK] = ACTIONS(448), - [anon_sym_PIPE] = ACTIONS(450), - [anon_sym_LBRACE] = ACTIONS(452), + [sym__block_element] = STATE(486), + [sym_heading] = STATE(486), + [sym_list] = STATE(486), + [sym__list_dash] = STATE(712), + [sym__list_item_dash] = STATE(400), + [sym__list_plus] = STATE(712), + [sym__list_item_plus] = STATE(401), + [sym__list_star] = STATE(712), + [sym__list_item_star] = STATE(402), + [sym__list_task] = STATE(712), + [sym__list_item_task] = STATE(387), + [sym_list_marker_task] = STATE(38), + [sym__list_definition] = STATE(712), + [sym__list_item_definition] = STATE(489), + [sym__list_decimal_period] = STATE(712), + [sym__list_item_decimal_period] = STATE(565), + [sym__list_decimal_paren] = STATE(712), + [sym__list_item_decimal_paren] = STATE(564), + [sym__list_decimal_parens] = STATE(712), + [sym__list_item_decimal_parens] = STATE(563), + [sym__list_lower_alpha_period] = STATE(712), + [sym__list_item_lower_alpha_period] = STATE(603), + [sym__list_lower_alpha_paren] = STATE(712), + [sym__list_item_lower_alpha_paren] = STATE(561), + [sym__list_lower_alpha_parens] = STATE(712), + [sym__list_item_lower_alpha_parens] = STATE(560), + [sym__list_upper_alpha_period] = STATE(712), + [sym__list_item_upper_alpha_period] = STATE(558), + [sym__list_upper_alpha_paren] = STATE(712), + [sym__list_item_upper_alpha_paren] = STATE(557), + [sym__list_upper_alpha_parens] = STATE(712), + [sym__list_item_upper_alpha_parens] = STATE(556), + [sym__list_lower_roman_period] = STATE(712), + [sym__list_item_lower_roman_period] = STATE(555), + [sym__list_lower_roman_paren] = STATE(712), + [sym__list_item_lower_roman_paren] = STATE(554), + [sym__list_lower_roman_parens] = STATE(712), + [sym__list_item_lower_roman_parens] = STATE(553), + [sym__list_upper_roman_period] = STATE(712), + [sym__list_item_upper_roman_period] = STATE(552), + [sym__list_upper_roman_paren] = STATE(712), + [sym__list_item_upper_roman_paren] = STATE(551), + [sym__list_upper_roman_parens] = STATE(712), + [sym__list_item_upper_roman_parens] = STATE(550), + [sym_table] = STATE(486), + [sym__table_content] = STATE(291), + [sym_table_separator] = STATE(291), + [sym_table_row] = STATE(376), + [sym_footnote] = STATE(486), + [sym_div] = STATE(486), + [sym_div_marker_begin] = STATE(963), + [sym_code_block] = STATE(486), + [sym_raw_block] = STATE(486), + [sym_thematic_break] = STATE(486), + [sym_block_quote] = STATE(486), + [sym__block_quote_content] = STATE(954), + [sym__block_quote_prefix] = STATE(287), + [sym_link_reference_definition] = STATE(486), + [sym_block_attribute] = STATE(486), + [sym__paragraph] = STATE(486), + [sym__paragraph_content] = STATE(745), + [sym__inline] = STATE(703), + [sym__symbol_fallback] = STATE(366), + [aux_sym__list_dash_repeat1] = STATE(400), + [aux_sym__list_plus_repeat1] = STATE(401), + [aux_sym__list_star_repeat1] = STATE(402), + [aux_sym__list_task_repeat1] = STATE(387), + [aux_sym__list_definition_repeat1] = STATE(489), + [aux_sym__list_decimal_period_repeat1] = STATE(565), + [aux_sym__list_decimal_paren_repeat1] = STATE(564), + [aux_sym__list_decimal_parens_repeat1] = STATE(563), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(603), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(561), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(560), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(558), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(557), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(556), + [aux_sym__list_lower_roman_period_repeat1] = STATE(555), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(554), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(553), + [aux_sym__list_upper_roman_period_repeat1] = STATE(552), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(551), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(550), + [aux_sym_table_repeat1] = STATE(291), + [aux_sym__block_quote_prefix_repeat1] = STATE(323), + [aux_sym__inline_repeat1] = STATE(366), + [anon_sym_LBRACK] = ACTIONS(461), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(465), [aux_sym__inline_token1] = ACTIONS(11), [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__heading_begin] = ACTIONS(454), + [sym__heading_begin] = ACTIONS(467), [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(456), + [sym__code_block_begin] = ACTIONS(469), [sym_list_marker_dash] = ACTIONS(23), [sym_list_marker_star] = ACTIONS(25), [sym_list_marker_plus] = ACTIONS(27), @@ -11166,107 +11232,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(57), [sym_list_marker_lower_roman_parens] = ACTIONS(59), [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(458), + [sym__block_quote_begin] = ACTIONS(471), [sym__block_quote_continuation] = ACTIONS(65), - [sym__thematic_break_dash] = ACTIONS(460), - [sym__thematic_break_star] = ACTIONS(460), - [sym__footnote_begin] = ACTIONS(462), + [sym__thematic_break_dash] = ACTIONS(473), + [sym__thematic_break_star] = ACTIONS(473), + [sym__footnote_begin] = ACTIONS(475), }, [57] = { - [sym__block_element] = STATE(467), - [sym_heading] = STATE(467), - [sym_list] = STATE(467), - [sym__list_dash] = STATE(847), - [sym__list_item_dash] = STATE(368), - [sym__list_plus] = STATE(847), - [sym__list_item_plus] = STATE(369), - [sym__list_star] = STATE(847), - [sym__list_item_star] = STATE(370), - [sym__list_task] = STATE(847), - [sym__list_item_task] = STATE(361), - [sym_list_marker_task] = STATE(37), - [sym__list_definition] = STATE(847), - [sym__list_item_definition] = STATE(514), - [sym__list_decimal_period] = STATE(847), - [sym__list_item_decimal_period] = STATE(516), - [sym__list_decimal_paren] = STATE(847), - [sym__list_item_decimal_paren] = STATE(518), - [sym__list_decimal_parens] = STATE(847), - [sym__list_item_decimal_parens] = STATE(522), - [sym__list_lower_alpha_period] = STATE(847), - [sym__list_item_lower_alpha_period] = STATE(526), - [sym__list_lower_alpha_paren] = STATE(847), - [sym__list_item_lower_alpha_paren] = STATE(531), - [sym__list_lower_alpha_parens] = STATE(847), - [sym__list_item_lower_alpha_parens] = STATE(533), - [sym__list_upper_alpha_period] = STATE(847), - [sym__list_item_upper_alpha_period] = STATE(534), - [sym__list_upper_alpha_paren] = STATE(847), - [sym__list_item_upper_alpha_paren] = STATE(535), - [sym__list_upper_alpha_parens] = STATE(847), - [sym__list_item_upper_alpha_parens] = STATE(536), - [sym__list_lower_roman_period] = STATE(847), - [sym__list_item_lower_roman_period] = STATE(471), - [sym__list_lower_roman_paren] = STATE(847), - [sym__list_item_lower_roman_paren] = STATE(537), - [sym__list_lower_roman_parens] = STATE(847), - [sym__list_item_lower_roman_parens] = STATE(538), - [sym__list_upper_roman_period] = STATE(847), - [sym__list_item_upper_roman_period] = STATE(540), - [sym__list_upper_roman_paren] = STATE(847), - [sym__list_item_upper_roman_paren] = STATE(542), - [sym__list_upper_roman_parens] = STATE(847), - [sym__list_item_upper_roman_parens] = STATE(544), - [sym_table] = STATE(467), - [sym__table_content] = STATE(274), - [sym_table_separator] = STATE(274), - [sym_table_row] = STATE(344), - [sym_footnote] = STATE(467), - [sym_div] = STATE(467), - [sym_div_marker_begin] = STATE(935), - [sym_code_block] = STATE(467), - [sym_raw_block] = STATE(467), - [sym_thematic_break] = STATE(467), - [sym_block_quote] = STATE(467), - [sym__block_quote_content] = STATE(869), - [sym__block_quote_prefix] = STATE(435), - [sym_link_reference_definition] = STATE(467), - [sym_block_attribute] = STATE(467), - [sym__paragraph] = STATE(467), - [sym__paragraph_content] = STATE(719), - [sym__inline] = STATE(683), - [sym__symbol_fallback] = STATE(329), - [aux_sym__list_dash_repeat1] = STATE(368), - [aux_sym__list_plus_repeat1] = STATE(369), - [aux_sym__list_star_repeat1] = STATE(370), - [aux_sym__list_task_repeat1] = STATE(361), - [aux_sym__list_definition_repeat1] = STATE(514), - [aux_sym__list_decimal_period_repeat1] = STATE(516), - [aux_sym__list_decimal_paren_repeat1] = STATE(518), - [aux_sym__list_decimal_parens_repeat1] = STATE(522), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(526), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(531), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(533), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(534), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(535), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(536), - [aux_sym__list_lower_roman_period_repeat1] = STATE(471), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(537), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(538), - [aux_sym__list_upper_roman_period_repeat1] = STATE(540), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(542), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(544), - [aux_sym_table_repeat1] = STATE(274), - [aux_sym__block_quote_prefix_repeat1] = STATE(397), - [aux_sym__inline_repeat1] = STATE(329), - [anon_sym_LBRACK] = ACTIONS(448), - [anon_sym_PIPE] = ACTIONS(450), - [anon_sym_LBRACE] = ACTIONS(452), + [sym__block_element] = STATE(486), + [sym_heading] = STATE(486), + [sym_list] = STATE(486), + [sym__list_dash] = STATE(712), + [sym__list_item_dash] = STATE(400), + [sym__list_plus] = STATE(712), + [sym__list_item_plus] = STATE(401), + [sym__list_star] = STATE(712), + [sym__list_item_star] = STATE(402), + [sym__list_task] = STATE(712), + [sym__list_item_task] = STATE(387), + [sym_list_marker_task] = STATE(38), + [sym__list_definition] = STATE(712), + [sym__list_item_definition] = STATE(489), + [sym__list_decimal_period] = STATE(712), + [sym__list_item_decimal_period] = STATE(565), + [sym__list_decimal_paren] = STATE(712), + [sym__list_item_decimal_paren] = STATE(564), + [sym__list_decimal_parens] = STATE(712), + [sym__list_item_decimal_parens] = STATE(563), + [sym__list_lower_alpha_period] = STATE(712), + [sym__list_item_lower_alpha_period] = STATE(603), + [sym__list_lower_alpha_paren] = STATE(712), + [sym__list_item_lower_alpha_paren] = STATE(561), + [sym__list_lower_alpha_parens] = STATE(712), + [sym__list_item_lower_alpha_parens] = STATE(560), + [sym__list_upper_alpha_period] = STATE(712), + [sym__list_item_upper_alpha_period] = STATE(558), + [sym__list_upper_alpha_paren] = STATE(712), + [sym__list_item_upper_alpha_paren] = STATE(557), + [sym__list_upper_alpha_parens] = STATE(712), + [sym__list_item_upper_alpha_parens] = STATE(556), + [sym__list_lower_roman_period] = STATE(712), + [sym__list_item_lower_roman_period] = STATE(555), + [sym__list_lower_roman_paren] = STATE(712), + [sym__list_item_lower_roman_paren] = STATE(554), + [sym__list_lower_roman_parens] = STATE(712), + [sym__list_item_lower_roman_parens] = STATE(553), + [sym__list_upper_roman_period] = STATE(712), + [sym__list_item_upper_roman_period] = STATE(552), + [sym__list_upper_roman_paren] = STATE(712), + [sym__list_item_upper_roman_paren] = STATE(551), + [sym__list_upper_roman_parens] = STATE(712), + [sym__list_item_upper_roman_parens] = STATE(550), + [sym_table] = STATE(486), + [sym__table_content] = STATE(291), + [sym_table_separator] = STATE(291), + [sym_table_row] = STATE(376), + [sym_footnote] = STATE(486), + [sym_div] = STATE(486), + [sym_div_marker_begin] = STATE(963), + [sym_code_block] = STATE(486), + [sym_raw_block] = STATE(486), + [sym_thematic_break] = STATE(486), + [sym_block_quote] = STATE(486), + [sym__block_quote_content] = STATE(1058), + [sym__block_quote_prefix] = STATE(287), + [sym_link_reference_definition] = STATE(486), + [sym_block_attribute] = STATE(486), + [sym__paragraph] = STATE(486), + [sym__paragraph_content] = STATE(745), + [sym__inline] = STATE(703), + [sym__symbol_fallback] = STATE(366), + [aux_sym__list_dash_repeat1] = STATE(400), + [aux_sym__list_plus_repeat1] = STATE(401), + [aux_sym__list_star_repeat1] = STATE(402), + [aux_sym__list_task_repeat1] = STATE(387), + [aux_sym__list_definition_repeat1] = STATE(489), + [aux_sym__list_decimal_period_repeat1] = STATE(565), + [aux_sym__list_decimal_paren_repeat1] = STATE(564), + [aux_sym__list_decimal_parens_repeat1] = STATE(563), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(603), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(561), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(560), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(558), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(557), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(556), + [aux_sym__list_lower_roman_period_repeat1] = STATE(555), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(554), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(553), + [aux_sym__list_upper_roman_period_repeat1] = STATE(552), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(551), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(550), + [aux_sym_table_repeat1] = STATE(291), + [aux_sym__block_quote_prefix_repeat1] = STATE(323), + [aux_sym__inline_repeat1] = STATE(366), + [anon_sym_LBRACK] = ACTIONS(461), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(465), [aux_sym__inline_token1] = ACTIONS(11), [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__heading_begin] = ACTIONS(454), + [sym__heading_begin] = ACTIONS(467), [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(456), + [sym__code_block_begin] = ACTIONS(469), [sym_list_marker_dash] = ACTIONS(23), [sym_list_marker_star] = ACTIONS(25), [sym_list_marker_plus] = ACTIONS(27), @@ -11287,107 +11353,228 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(57), [sym_list_marker_lower_roman_parens] = ACTIONS(59), [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(458), + [sym__block_quote_begin] = ACTIONS(471), [sym__block_quote_continuation] = ACTIONS(65), - [sym__thematic_break_dash] = ACTIONS(460), - [sym__thematic_break_star] = ACTIONS(460), - [sym__footnote_begin] = ACTIONS(462), + [sym__thematic_break_dash] = ACTIONS(473), + [sym__thematic_break_star] = ACTIONS(473), + [sym__footnote_begin] = ACTIONS(475), }, [58] = { - [sym__block_element] = STATE(467), - [sym_heading] = STATE(467), - [sym_list] = STATE(467), - [sym__list_dash] = STATE(847), - [sym__list_item_dash] = STATE(368), - [sym__list_plus] = STATE(847), - [sym__list_item_plus] = STATE(369), - [sym__list_star] = STATE(847), - [sym__list_item_star] = STATE(370), - [sym__list_task] = STATE(847), - [sym__list_item_task] = STATE(361), - [sym_list_marker_task] = STATE(37), - [sym__list_definition] = STATE(847), - [sym__list_item_definition] = STATE(514), - [sym__list_decimal_period] = STATE(847), - [sym__list_item_decimal_period] = STATE(516), - [sym__list_decimal_paren] = STATE(847), - [sym__list_item_decimal_paren] = STATE(518), - [sym__list_decimal_parens] = STATE(847), - [sym__list_item_decimal_parens] = STATE(522), - [sym__list_lower_alpha_period] = STATE(847), + [sym__block_element] = STATE(190), + [sym_heading] = STATE(190), + [sym_list] = STATE(190), + [sym__list_dash] = STATE(234), + [sym__list_item_dash] = STATE(415), + [sym__list_plus] = STATE(234), + [sym__list_item_plus] = STATE(395), + [sym__list_star] = STATE(234), + [sym__list_item_star] = STATE(409), + [sym__list_task] = STATE(234), + [sym__list_item_task] = STATE(389), + [sym_list_marker_task] = STATE(38), + [sym__list_definition] = STATE(234), + [sym__list_item_definition] = STATE(531), + [sym__list_decimal_period] = STATE(234), + [sym__list_item_decimal_period] = STATE(530), + [sym__list_decimal_paren] = STATE(234), + [sym__list_item_decimal_paren] = STATE(529), + [sym__list_decimal_parens] = STATE(234), + [sym__list_item_decimal_parens] = STATE(527), + [sym__list_lower_alpha_period] = STATE(234), [sym__list_item_lower_alpha_period] = STATE(526), - [sym__list_lower_alpha_paren] = STATE(847), - [sym__list_item_lower_alpha_paren] = STATE(531), - [sym__list_lower_alpha_parens] = STATE(847), - [sym__list_item_lower_alpha_parens] = STATE(533), - [sym__list_upper_alpha_period] = STATE(847), - [sym__list_item_upper_alpha_period] = STATE(534), - [sym__list_upper_alpha_paren] = STATE(847), - [sym__list_item_upper_alpha_paren] = STATE(535), - [sym__list_upper_alpha_parens] = STATE(847), - [sym__list_item_upper_alpha_parens] = STATE(536), - [sym__list_lower_roman_period] = STATE(847), - [sym__list_item_lower_roman_period] = STATE(471), - [sym__list_lower_roman_paren] = STATE(847), - [sym__list_item_lower_roman_paren] = STATE(537), - [sym__list_lower_roman_parens] = STATE(847), - [sym__list_item_lower_roman_parens] = STATE(538), - [sym__list_upper_roman_period] = STATE(847), - [sym__list_item_upper_roman_period] = STATE(540), - [sym__list_upper_roman_paren] = STATE(847), - [sym__list_item_upper_roman_paren] = STATE(542), - [sym__list_upper_roman_parens] = STATE(847), - [sym__list_item_upper_roman_parens] = STATE(544), - [sym_table] = STATE(467), - [sym__table_content] = STATE(274), - [sym_table_separator] = STATE(274), - [sym_table_row] = STATE(344), - [sym_footnote] = STATE(467), - [sym_div] = STATE(467), - [sym_div_marker_begin] = STATE(935), - [sym_code_block] = STATE(467), - [sym_raw_block] = STATE(467), - [sym_thematic_break] = STATE(467), - [sym_block_quote] = STATE(467), - [sym__block_quote_content] = STATE(930), - [sym__block_quote_prefix] = STATE(435), - [sym_link_reference_definition] = STATE(467), - [sym_block_attribute] = STATE(467), - [sym__paragraph] = STATE(467), - [sym__paragraph_content] = STATE(719), - [sym__inline] = STATE(683), - [sym__symbol_fallback] = STATE(329), - [aux_sym__list_dash_repeat1] = STATE(368), - [aux_sym__list_plus_repeat1] = STATE(369), - [aux_sym__list_star_repeat1] = STATE(370), - [aux_sym__list_task_repeat1] = STATE(361), - [aux_sym__list_definition_repeat1] = STATE(514), - [aux_sym__list_decimal_period_repeat1] = STATE(516), - [aux_sym__list_decimal_paren_repeat1] = STATE(518), - [aux_sym__list_decimal_parens_repeat1] = STATE(522), + [sym__list_lower_alpha_paren] = STATE(234), + [sym__list_item_lower_alpha_paren] = STATE(525), + [sym__list_lower_alpha_parens] = STATE(234), + [sym__list_item_lower_alpha_parens] = STATE(524), + [sym__list_upper_alpha_period] = STATE(234), + [sym__list_item_upper_alpha_period] = STATE(523), + [sym__list_upper_alpha_paren] = STATE(234), + [sym__list_item_upper_alpha_paren] = STATE(522), + [sym__list_upper_alpha_parens] = STATE(234), + [sym__list_item_upper_alpha_parens] = STATE(521), + [sym__list_lower_roman_period] = STATE(234), + [sym__list_item_lower_roman_period] = STATE(520), + [sym__list_lower_roman_paren] = STATE(234), + [sym__list_item_lower_roman_paren] = STATE(519), + [sym__list_lower_roman_parens] = STATE(234), + [sym__list_item_lower_roman_parens] = STATE(518), + [sym__list_upper_roman_period] = STATE(234), + [sym__list_item_upper_roman_period] = STATE(517), + [sym__list_upper_roman_paren] = STATE(234), + [sym__list_item_upper_roman_paren] = STATE(516), + [sym__list_upper_roman_parens] = STATE(234), + [sym__list_item_upper_roman_parens] = STATE(515), + [sym_table] = STATE(190), + [sym__table_content] = STATE(65), + [sym_table_separator] = STATE(65), + [sym_table_row] = STATE(71), + [sym_footnote] = STATE(190), + [sym_div] = STATE(190), + [sym_div_marker_begin] = STATE(1006), + [sym_code_block] = STATE(190), + [sym_raw_block] = STATE(190), + [sym_thematic_break] = STATE(190), + [sym_block_quote] = STATE(190), + [sym__block_quote_prefix] = STATE(285), + [sym_link_reference_definition] = STATE(190), + [sym_block_attribute] = STATE(190), + [sym__paragraph] = STATE(190), + [sym__paragraph_content] = STATE(856), + [sym__inline] = STATE(703), + [sym__symbol_fallback] = STATE(366), + [aux_sym__list_dash_repeat1] = STATE(415), + [aux_sym__list_plus_repeat1] = STATE(395), + [aux_sym__list_star_repeat1] = STATE(409), + [aux_sym__list_task_repeat1] = STATE(389), + [aux_sym__list_definition_repeat1] = STATE(531), + [aux_sym__list_decimal_period_repeat1] = STATE(530), + [aux_sym__list_decimal_paren_repeat1] = STATE(529), + [aux_sym__list_decimal_parens_repeat1] = STATE(527), [aux_sym__list_lower_alpha_period_repeat1] = STATE(526), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(531), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(533), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(534), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(535), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(536), - [aux_sym__list_lower_roman_period_repeat1] = STATE(471), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(537), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(538), - [aux_sym__list_upper_roman_period_repeat1] = STATE(540), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(542), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(544), - [aux_sym_table_repeat1] = STATE(274), - [aux_sym__block_quote_prefix_repeat1] = STATE(397), - [aux_sym__inline_repeat1] = STATE(329), - [anon_sym_LBRACK] = ACTIONS(448), - [anon_sym_PIPE] = ACTIONS(450), - [anon_sym_LBRACE] = ACTIONS(452), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(525), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(524), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(523), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(522), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(521), + [aux_sym__list_lower_roman_period_repeat1] = STATE(520), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(519), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(518), + [aux_sym__list_upper_roman_period_repeat1] = STATE(517), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(516), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(515), + [aux_sym_table_repeat1] = STATE(65), + [aux_sym__block_quote_prefix_repeat1] = STATE(323), + [aux_sym__inline_repeat1] = STATE(366), + [anon_sym_LBRACK] = ACTIONS(455), + [anon_sym_PIPE] = ACTIONS(455), + [anon_sym_LBRACE] = ACTIONS(455), + [aux_sym__inline_token1] = ACTIONS(455), + [anon_sym_LBRACE_DASH] = ACTIONS(455), + [sym__newline] = ACTIONS(477), + [sym__heading_begin] = ACTIONS(229), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(231), + [sym_list_marker_dash] = ACTIONS(457), + [sym_list_marker_star] = ACTIONS(457), + [sym_list_marker_plus] = ACTIONS(457), + [sym__list_marker_task_begin] = ACTIONS(457), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(233), + [sym__block_quote_continuation] = ACTIONS(457), + [sym__thematic_break_dash] = ACTIONS(237), + [sym__thematic_break_star] = ACTIONS(237), + [sym__footnote_begin] = ACTIONS(239), + }, + [59] = { + [sym__block_element] = STATE(486), + [sym_heading] = STATE(486), + [sym_list] = STATE(486), + [sym__list_dash] = STATE(712), + [sym__list_item_dash] = STATE(400), + [sym__list_plus] = STATE(712), + [sym__list_item_plus] = STATE(401), + [sym__list_star] = STATE(712), + [sym__list_item_star] = STATE(402), + [sym__list_task] = STATE(712), + [sym__list_item_task] = STATE(387), + [sym_list_marker_task] = STATE(38), + [sym__list_definition] = STATE(712), + [sym__list_item_definition] = STATE(489), + [sym__list_decimal_period] = STATE(712), + [sym__list_item_decimal_period] = STATE(565), + [sym__list_decimal_paren] = STATE(712), + [sym__list_item_decimal_paren] = STATE(564), + [sym__list_decimal_parens] = STATE(712), + [sym__list_item_decimal_parens] = STATE(563), + [sym__list_lower_alpha_period] = STATE(712), + [sym__list_item_lower_alpha_period] = STATE(603), + [sym__list_lower_alpha_paren] = STATE(712), + [sym__list_item_lower_alpha_paren] = STATE(561), + [sym__list_lower_alpha_parens] = STATE(712), + [sym__list_item_lower_alpha_parens] = STATE(560), + [sym__list_upper_alpha_period] = STATE(712), + [sym__list_item_upper_alpha_period] = STATE(558), + [sym__list_upper_alpha_paren] = STATE(712), + [sym__list_item_upper_alpha_paren] = STATE(557), + [sym__list_upper_alpha_parens] = STATE(712), + [sym__list_item_upper_alpha_parens] = STATE(556), + [sym__list_lower_roman_period] = STATE(712), + [sym__list_item_lower_roman_period] = STATE(555), + [sym__list_lower_roman_paren] = STATE(712), + [sym__list_item_lower_roman_paren] = STATE(554), + [sym__list_lower_roman_parens] = STATE(712), + [sym__list_item_lower_roman_parens] = STATE(553), + [sym__list_upper_roman_period] = STATE(712), + [sym__list_item_upper_roman_period] = STATE(552), + [sym__list_upper_roman_paren] = STATE(712), + [sym__list_item_upper_roman_paren] = STATE(551), + [sym__list_upper_roman_parens] = STATE(712), + [sym__list_item_upper_roman_parens] = STATE(550), + [sym_table] = STATE(486), + [sym__table_content] = STATE(291), + [sym_table_separator] = STATE(291), + [sym_table_row] = STATE(376), + [sym_footnote] = STATE(486), + [sym_div] = STATE(486), + [sym_div_marker_begin] = STATE(963), + [sym_code_block] = STATE(486), + [sym_raw_block] = STATE(486), + [sym_thematic_break] = STATE(486), + [sym_block_quote] = STATE(486), + [sym__block_quote_content] = STATE(1001), + [sym__block_quote_prefix] = STATE(287), + [sym_link_reference_definition] = STATE(486), + [sym_block_attribute] = STATE(486), + [sym__paragraph] = STATE(486), + [sym__paragraph_content] = STATE(745), + [sym__inline] = STATE(703), + [sym__symbol_fallback] = STATE(366), + [aux_sym__list_dash_repeat1] = STATE(400), + [aux_sym__list_plus_repeat1] = STATE(401), + [aux_sym__list_star_repeat1] = STATE(402), + [aux_sym__list_task_repeat1] = STATE(387), + [aux_sym__list_definition_repeat1] = STATE(489), + [aux_sym__list_decimal_period_repeat1] = STATE(565), + [aux_sym__list_decimal_paren_repeat1] = STATE(564), + [aux_sym__list_decimal_parens_repeat1] = STATE(563), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(603), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(561), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(560), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(558), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(557), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(556), + [aux_sym__list_lower_roman_period_repeat1] = STATE(555), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(554), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(553), + [aux_sym__list_upper_roman_period_repeat1] = STATE(552), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(551), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(550), + [aux_sym_table_repeat1] = STATE(291), + [aux_sym__block_quote_prefix_repeat1] = STATE(323), + [aux_sym__inline_repeat1] = STATE(366), + [anon_sym_LBRACK] = ACTIONS(461), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(465), [aux_sym__inline_token1] = ACTIONS(11), [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__heading_begin] = ACTIONS(454), + [sym__heading_begin] = ACTIONS(467), [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(456), + [sym__code_block_begin] = ACTIONS(469), [sym_list_marker_dash] = ACTIONS(23), [sym_list_marker_star] = ACTIONS(25), [sym_list_marker_plus] = ACTIONS(27), @@ -11408,105 +11595,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(57), [sym_list_marker_lower_roman_parens] = ACTIONS(59), [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(458), + [sym__block_quote_begin] = ACTIONS(471), [sym__block_quote_continuation] = ACTIONS(65), - [sym__thematic_break_dash] = ACTIONS(460), - [sym__thematic_break_star] = ACTIONS(460), - [sym__footnote_begin] = ACTIONS(462), + [sym__thematic_break_dash] = ACTIONS(473), + [sym__thematic_break_star] = ACTIONS(473), + [sym__footnote_begin] = ACTIONS(475), }, - [59] = { - [sym__block_element] = STATE(849), - [sym_list] = STATE(849), - [sym__list_dash] = STATE(847), - [sym__list_item_dash] = STATE(368), - [sym__list_plus] = STATE(847), - [sym__list_item_plus] = STATE(369), - [sym__list_star] = STATE(847), - [sym__list_item_star] = STATE(370), - [sym__list_task] = STATE(847), - [sym__list_item_task] = STATE(361), - [sym_list_marker_task] = STATE(37), - [sym__list_definition] = STATE(847), - [sym__list_item_definition] = STATE(514), - [sym__list_decimal_period] = STATE(847), - [sym__list_item_decimal_period] = STATE(516), - [sym__list_decimal_paren] = STATE(847), - [sym__list_item_decimal_paren] = STATE(518), - [sym__list_decimal_parens] = STATE(847), - [sym__list_item_decimal_parens] = STATE(522), - [sym__list_lower_alpha_period] = STATE(847), - [sym__list_item_lower_alpha_period] = STATE(526), - [sym__list_lower_alpha_paren] = STATE(847), - [sym__list_item_lower_alpha_paren] = STATE(531), - [sym__list_lower_alpha_parens] = STATE(847), - [sym__list_item_lower_alpha_parens] = STATE(533), - [sym__list_upper_alpha_period] = STATE(847), - [sym__list_item_upper_alpha_period] = STATE(534), - [sym__list_upper_alpha_paren] = STATE(847), - [sym__list_item_upper_alpha_paren] = STATE(535), - [sym__list_upper_alpha_parens] = STATE(847), - [sym__list_item_upper_alpha_parens] = STATE(536), - [sym__list_lower_roman_period] = STATE(847), - [sym__list_item_lower_roman_period] = STATE(471), - [sym__list_lower_roman_paren] = STATE(847), - [sym__list_item_lower_roman_paren] = STATE(537), - [sym__list_lower_roman_parens] = STATE(847), - [sym__list_item_lower_roman_parens] = STATE(538), - [sym__list_upper_roman_period] = STATE(847), - [sym__list_item_upper_roman_period] = STATE(540), - [sym__list_upper_roman_paren] = STATE(847), - [sym__list_item_upper_roman_paren] = STATE(542), - [sym__list_upper_roman_parens] = STATE(847), - [sym__list_item_upper_roman_parens] = STATE(544), - [sym_table] = STATE(849), - [sym__table_content] = STATE(274), - [sym_table_separator] = STATE(274), - [sym_table_row] = STATE(344), - [sym_footnote] = STATE(849), - [sym_div] = STATE(849), - [sym_div_marker_begin] = STATE(935), - [sym_code_block] = STATE(849), - [sym_raw_block] = STATE(849), - [sym_thematic_break] = STATE(849), - [sym_block_quote] = STATE(849), - [sym__block_quote_prefix] = STATE(435), - [sym_link_reference_definition] = STATE(849), - [sym_block_attribute] = STATE(849), - [sym__paragraph] = STATE(849), - [sym__paragraph_content] = STATE(719), - [sym__inline] = STATE(683), - [sym__symbol_fallback] = STATE(329), - [aux_sym__list_dash_repeat1] = STATE(368), - [aux_sym__list_plus_repeat1] = STATE(369), - [aux_sym__list_star_repeat1] = STATE(370), - [aux_sym__list_task_repeat1] = STATE(361), - [aux_sym__list_definition_repeat1] = STATE(514), - [aux_sym__list_decimal_period_repeat1] = STATE(516), - [aux_sym__list_decimal_paren_repeat1] = STATE(518), - [aux_sym__list_decimal_parens_repeat1] = STATE(522), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(526), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(531), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(533), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(534), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(535), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(536), - [aux_sym__list_lower_roman_period_repeat1] = STATE(471), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(537), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(538), - [aux_sym__list_upper_roman_period_repeat1] = STATE(540), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(542), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(544), - [aux_sym_table_repeat1] = STATE(274), - [aux_sym__block_quote_prefix_repeat1] = STATE(397), - [aux_sym__inline_repeat1] = STATE(329), - [anon_sym_LBRACK] = ACTIONS(448), - [anon_sym_PIPE] = ACTIONS(450), - [anon_sym_LBRACE] = ACTIONS(452), + [60] = { + [sym__block_element] = STATE(486), + [sym_heading] = STATE(486), + [sym_list] = STATE(486), + [sym__list_dash] = STATE(712), + [sym__list_item_dash] = STATE(400), + [sym__list_plus] = STATE(712), + [sym__list_item_plus] = STATE(401), + [sym__list_star] = STATE(712), + [sym__list_item_star] = STATE(402), + [sym__list_task] = STATE(712), + [sym__list_item_task] = STATE(387), + [sym_list_marker_task] = STATE(38), + [sym__list_definition] = STATE(712), + [sym__list_item_definition] = STATE(489), + [sym__list_decimal_period] = STATE(712), + [sym__list_item_decimal_period] = STATE(565), + [sym__list_decimal_paren] = STATE(712), + [sym__list_item_decimal_paren] = STATE(564), + [sym__list_decimal_parens] = STATE(712), + [sym__list_item_decimal_parens] = STATE(563), + [sym__list_lower_alpha_period] = STATE(712), + [sym__list_item_lower_alpha_period] = STATE(603), + [sym__list_lower_alpha_paren] = STATE(712), + [sym__list_item_lower_alpha_paren] = STATE(561), + [sym__list_lower_alpha_parens] = STATE(712), + [sym__list_item_lower_alpha_parens] = STATE(560), + [sym__list_upper_alpha_period] = STATE(712), + [sym__list_item_upper_alpha_period] = STATE(558), + [sym__list_upper_alpha_paren] = STATE(712), + [sym__list_item_upper_alpha_paren] = STATE(557), + [sym__list_upper_alpha_parens] = STATE(712), + [sym__list_item_upper_alpha_parens] = STATE(556), + [sym__list_lower_roman_period] = STATE(712), + [sym__list_item_lower_roman_period] = STATE(555), + [sym__list_lower_roman_paren] = STATE(712), + [sym__list_item_lower_roman_paren] = STATE(554), + [sym__list_lower_roman_parens] = STATE(712), + [sym__list_item_lower_roman_parens] = STATE(553), + [sym__list_upper_roman_period] = STATE(712), + [sym__list_item_upper_roman_period] = STATE(552), + [sym__list_upper_roman_paren] = STATE(712), + [sym__list_item_upper_roman_paren] = STATE(551), + [sym__list_upper_roman_parens] = STATE(712), + [sym__list_item_upper_roman_parens] = STATE(550), + [sym_table] = STATE(486), + [sym__table_content] = STATE(291), + [sym_table_separator] = STATE(291), + [sym_table_row] = STATE(376), + [sym_footnote] = STATE(486), + [sym_div] = STATE(486), + [sym_div_marker_begin] = STATE(963), + [sym_code_block] = STATE(486), + [sym_raw_block] = STATE(486), + [sym_thematic_break] = STATE(486), + [sym_block_quote] = STATE(486), + [sym__block_quote_content] = STATE(919), + [sym__block_quote_prefix] = STATE(287), + [sym_link_reference_definition] = STATE(486), + [sym_block_attribute] = STATE(486), + [sym__paragraph] = STATE(486), + [sym__paragraph_content] = STATE(745), + [sym__inline] = STATE(703), + [sym__symbol_fallback] = STATE(366), + [aux_sym__list_dash_repeat1] = STATE(400), + [aux_sym__list_plus_repeat1] = STATE(401), + [aux_sym__list_star_repeat1] = STATE(402), + [aux_sym__list_task_repeat1] = STATE(387), + [aux_sym__list_definition_repeat1] = STATE(489), + [aux_sym__list_decimal_period_repeat1] = STATE(565), + [aux_sym__list_decimal_paren_repeat1] = STATE(564), + [aux_sym__list_decimal_parens_repeat1] = STATE(563), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(603), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(561), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(560), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(558), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(557), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(556), + [aux_sym__list_lower_roman_period_repeat1] = STATE(555), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(554), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(553), + [aux_sym__list_upper_roman_period_repeat1] = STATE(552), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(551), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(550), + [aux_sym_table_repeat1] = STATE(291), + [aux_sym__block_quote_prefix_repeat1] = STATE(323), + [aux_sym__inline_repeat1] = STATE(366), + [anon_sym_LBRACK] = ACTIONS(461), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(465), [aux_sym__inline_token1] = ACTIONS(11), [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__block_close] = ACTIONS(464), + [sym__heading_begin] = ACTIONS(467), [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(456), + [sym__code_block_begin] = ACTIONS(469), [sym_list_marker_dash] = ACTIONS(23), [sym_list_marker_star] = ACTIONS(25), [sym_list_marker_plus] = ACTIONS(27), @@ -11527,97 +11716,458 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(57), [sym_list_marker_lower_roman_parens] = ACTIONS(59), [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(458), - [sym__block_quote_continuation] = ACTIONS(466), - [sym__thematic_break_dash] = ACTIONS(460), - [sym__thematic_break_star] = ACTIONS(460), - [sym__footnote_begin] = ACTIONS(462), + [sym__block_quote_begin] = ACTIONS(471), + [sym__block_quote_continuation] = ACTIONS(65), + [sym__thematic_break_dash] = ACTIONS(473), + [sym__thematic_break_star] = ACTIONS(473), + [sym__footnote_begin] = ACTIONS(475), }, -}; - -static const uint16_t ts_small_parse_table[] = { - [0] = 11, - ACTIONS(471), 1, - anon_sym_PIPE, - ACTIONS(473), 1, - sym__newline, - ACTIONS(477), 1, - sym__block_quote_continuation, - ACTIONS(479), 1, - sym__table_caption_begin, - STATE(67), 1, - sym_table_row, - STATE(168), 1, - sym_table_caption, - STATE(664), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(1019), 1, - sym__block_quote_prefix, - STATE(64), 3, - sym__table_content, - sym_table_separator, - aux_sym_table_repeat1, - ACTIONS(469), 4, - anon_sym_LBRACK, - anon_sym_LBRACE, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - ACTIONS(475), 28, - sym__heading_begin, - sym__div_begin, - sym__code_block_begin, - sym_list_marker_dash, - sym_list_marker_star, - sym_list_marker_plus, - sym__list_marker_task_begin, - sym_list_marker_definition, - sym_list_marker_decimal_period, - sym_list_marker_lower_alpha_period, - sym_list_marker_upper_alpha_period, - sym_list_marker_lower_roman_period, - sym_list_marker_upper_roman_period, - sym_list_marker_decimal_paren, - sym_list_marker_lower_alpha_paren, - sym_list_marker_upper_alpha_paren, - sym_list_marker_lower_roman_paren, - sym_list_marker_upper_roman_paren, - sym_list_marker_decimal_parens, - sym_list_marker_lower_alpha_parens, - sym_list_marker_upper_alpha_parens, - sym_list_marker_lower_roman_parens, - sym_list_marker_upper_roman_parens, - sym__block_quote_begin, - sym__thematic_break_dash, - sym__thematic_break_star, - sym__footnote_begin, - sym__footnote_end, + [61] = { + [sym__block_element] = STATE(227), + [sym_heading] = STATE(227), + [sym_list] = STATE(227), + [sym__list_dash] = STATE(141), + [sym__list_item_dash] = STATE(416), + [sym__list_plus] = STATE(141), + [sym__list_item_plus] = STATE(419), + [sym__list_star] = STATE(141), + [sym__list_item_star] = STATE(407), + [sym__list_task] = STATE(141), + [sym__list_item_task] = STATE(371), + [sym_list_marker_task] = STATE(38), + [sym__list_definition] = STATE(141), + [sym__list_item_definition] = STATE(549), + [sym__list_decimal_period] = STATE(141), + [sym__list_item_decimal_period] = STATE(548), + [sym__list_decimal_paren] = STATE(141), + [sym__list_item_decimal_paren] = STATE(547), + [sym__list_decimal_parens] = STATE(141), + [sym__list_item_decimal_parens] = STATE(546), + [sym__list_lower_alpha_period] = STATE(141), + [sym__list_item_lower_alpha_period] = STATE(545), + [sym__list_lower_alpha_paren] = STATE(141), + [sym__list_item_lower_alpha_paren] = STATE(544), + [sym__list_lower_alpha_parens] = STATE(141), + [sym__list_item_lower_alpha_parens] = STATE(543), + [sym__list_upper_alpha_period] = STATE(141), + [sym__list_item_upper_alpha_period] = STATE(542), + [sym__list_upper_alpha_paren] = STATE(141), + [sym__list_item_upper_alpha_paren] = STATE(541), + [sym__list_upper_alpha_parens] = STATE(141), + [sym__list_item_upper_alpha_parens] = STATE(540), + [sym__list_lower_roman_period] = STATE(141), + [sym__list_item_lower_roman_period] = STATE(539), + [sym__list_lower_roman_paren] = STATE(141), + [sym__list_item_lower_roman_paren] = STATE(538), + [sym__list_lower_roman_parens] = STATE(141), + [sym__list_item_lower_roman_parens] = STATE(537), + [sym__list_upper_roman_period] = STATE(141), + [sym__list_item_upper_roman_period] = STATE(536), + [sym__list_upper_roman_paren] = STATE(141), + [sym__list_item_upper_roman_paren] = STATE(535), + [sym__list_upper_roman_parens] = STATE(141), + [sym__list_item_upper_roman_parens] = STATE(534), + [sym_table] = STATE(227), + [sym__table_content] = STATE(66), + [sym_table_separator] = STATE(66), + [sym_table_row] = STATE(72), + [sym_footnote] = STATE(227), + [sym_div] = STATE(227), + [sym_div_marker_begin] = STATE(985), + [sym_code_block] = STATE(227), + [sym_raw_block] = STATE(227), + [sym_thematic_break] = STATE(227), + [sym_block_quote] = STATE(227), + [sym__block_quote_prefix] = STATE(286), + [sym_link_reference_definition] = STATE(227), + [sym_block_attribute] = STATE(227), + [sym__paragraph] = STATE(227), + [sym__paragraph_content] = STATE(801), + [sym__inline] = STATE(703), + [sym__symbol_fallback] = STATE(366), + [aux_sym__list_dash_repeat1] = STATE(416), + [aux_sym__list_plus_repeat1] = STATE(419), + [aux_sym__list_star_repeat1] = STATE(407), + [aux_sym__list_task_repeat1] = STATE(371), + [aux_sym__list_definition_repeat1] = STATE(549), + [aux_sym__list_decimal_period_repeat1] = STATE(548), + [aux_sym__list_decimal_paren_repeat1] = STATE(547), + [aux_sym__list_decimal_parens_repeat1] = STATE(546), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(545), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(544), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(543), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(542), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(541), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(540), + [aux_sym__list_lower_roman_period_repeat1] = STATE(539), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(538), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(537), + [aux_sym__list_upper_roman_period_repeat1] = STATE(536), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(535), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(534), + [aux_sym_table_repeat1] = STATE(66), + [aux_sym__block_quote_prefix_repeat1] = STATE(323), + [aux_sym__inline_repeat1] = STATE(366), + [anon_sym_LBRACK] = ACTIONS(455), + [anon_sym_PIPE] = ACTIONS(455), + [anon_sym_LBRACE] = ACTIONS(455), + [aux_sym__inline_token1] = ACTIONS(455), + [anon_sym_LBRACE_DASH] = ACTIONS(455), + [sym__newline] = ACTIONS(459), + [sym__heading_begin] = ACTIONS(17), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(207), + [sym_list_marker_dash] = ACTIONS(457), + [sym_list_marker_star] = ACTIONS(457), + [sym_list_marker_plus] = ACTIONS(457), + [sym__list_marker_task_begin] = ACTIONS(457), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(209), + [sym__block_quote_continuation] = ACTIONS(457), + [sym__thematic_break_dash] = ACTIONS(211), + [sym__thematic_break_star] = ACTIONS(211), + [sym__footnote_begin] = ACTIONS(213), + }, + [62] = { + [sym__block_element] = STATE(675), + [sym_heading] = STATE(675), + [sym_list] = STATE(675), + [sym__list_dash] = STATE(699), + [sym__list_item_dash] = STATE(413), + [sym__list_plus] = STATE(699), + [sym__list_item_plus] = STATE(418), + [sym__list_star] = STATE(699), + [sym__list_item_star] = STATE(417), + [sym__list_task] = STATE(699), + [sym__list_item_task] = STATE(381), + [sym_list_marker_task] = STATE(38), + [sym__list_definition] = STATE(699), + [sym__list_item_definition] = STATE(582), + [sym__list_decimal_period] = STATE(699), + [sym__list_item_decimal_period] = STATE(581), + [sym__list_decimal_paren] = STATE(699), + [sym__list_item_decimal_paren] = STATE(579), + [sym__list_decimal_parens] = STATE(699), + [sym__list_item_decimal_parens] = STATE(578), + [sym__list_lower_alpha_period] = STATE(699), + [sym__list_item_lower_alpha_period] = STATE(577), + [sym__list_lower_alpha_paren] = STATE(699), + [sym__list_item_lower_alpha_paren] = STATE(576), + [sym__list_lower_alpha_parens] = STATE(699), + [sym__list_item_lower_alpha_parens] = STATE(575), + [sym__list_upper_alpha_period] = STATE(699), + [sym__list_item_upper_alpha_period] = STATE(574), + [sym__list_upper_alpha_paren] = STATE(699), + [sym__list_item_upper_alpha_paren] = STATE(573), + [sym__list_upper_alpha_parens] = STATE(699), + [sym__list_item_upper_alpha_parens] = STATE(572), + [sym__list_lower_roman_period] = STATE(699), + [sym__list_item_lower_roman_period] = STATE(571), + [sym__list_lower_roman_paren] = STATE(699), + [sym__list_item_lower_roman_paren] = STATE(570), + [sym__list_lower_roman_parens] = STATE(699), + [sym__list_item_lower_roman_parens] = STATE(569), + [sym__list_upper_roman_period] = STATE(699), + [sym__list_item_upper_roman_period] = STATE(568), + [sym__list_upper_roman_paren] = STATE(699), + [sym__list_item_upper_roman_paren] = STATE(567), + [sym__list_upper_roman_parens] = STATE(699), + [sym__list_item_upper_roman_parens] = STATE(566), + [sym_table] = STATE(675), + [sym__table_content] = STATE(289), + [sym_table_separator] = STATE(289), + [sym_table_row] = STATE(363), + [sym_footnote] = STATE(675), + [sym_div] = STATE(675), + [sym_div_marker_begin] = STATE(941), + [sym_code_block] = STATE(675), + [sym_raw_block] = STATE(675), + [sym_thematic_break] = STATE(675), + [sym_block_quote] = STATE(675), + [sym__block_quote_prefix] = STATE(288), + [sym_link_reference_definition] = STATE(675), + [sym_block_attribute] = STATE(675), + [sym__paragraph] = STATE(675), + [sym__paragraph_content] = STATE(764), + [sym__inline] = STATE(703), + [sym__symbol_fallback] = STATE(366), + [aux_sym__list_dash_repeat1] = STATE(413), + [aux_sym__list_plus_repeat1] = STATE(418), + [aux_sym__list_star_repeat1] = STATE(417), + [aux_sym__list_task_repeat1] = STATE(381), + [aux_sym__list_definition_repeat1] = STATE(582), + [aux_sym__list_decimal_period_repeat1] = STATE(581), + [aux_sym__list_decimal_paren_repeat1] = STATE(579), + [aux_sym__list_decimal_parens_repeat1] = STATE(578), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(577), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(576), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(575), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(574), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(573), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(572), + [aux_sym__list_lower_roman_period_repeat1] = STATE(571), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(570), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(569), + [aux_sym__list_upper_roman_period_repeat1] = STATE(568), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(567), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(566), + [aux_sym_table_repeat1] = STATE(289), + [aux_sym__block_quote_prefix_repeat1] = STATE(323), + [aux_sym__inline_repeat1] = STATE(366), + [anon_sym_LBRACK] = ACTIONS(455), + [anon_sym_PIPE] = ACTIONS(455), + [anon_sym_LBRACE] = ACTIONS(455), + [aux_sym__inline_token1] = ACTIONS(455), + [anon_sym_LBRACE_DASH] = ACTIONS(455), + [sym__newline] = ACTIONS(479), + [sym__heading_begin] = ACTIONS(403), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(405), + [sym_list_marker_dash] = ACTIONS(457), + [sym_list_marker_star] = ACTIONS(457), + [sym_list_marker_plus] = ACTIONS(457), + [sym__list_marker_task_begin] = ACTIONS(457), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(407), + [sym__block_quote_continuation] = ACTIONS(457), + [sym__thematic_break_dash] = ACTIONS(411), + [sym__thematic_break_star] = ACTIONS(411), + [sym__footnote_begin] = ACTIONS(413), + }, + [63] = { + [sym__block_element] = STATE(890), + [sym_list] = STATE(890), + [sym__list_dash] = STATE(712), + [sym__list_item_dash] = STATE(400), + [sym__list_plus] = STATE(712), + [sym__list_item_plus] = STATE(401), + [sym__list_star] = STATE(712), + [sym__list_item_star] = STATE(402), + [sym__list_task] = STATE(712), + [sym__list_item_task] = STATE(387), + [sym_list_marker_task] = STATE(38), + [sym__list_definition] = STATE(712), + [sym__list_item_definition] = STATE(489), + [sym__list_decimal_period] = STATE(712), + [sym__list_item_decimal_period] = STATE(565), + [sym__list_decimal_paren] = STATE(712), + [sym__list_item_decimal_paren] = STATE(564), + [sym__list_decimal_parens] = STATE(712), + [sym__list_item_decimal_parens] = STATE(563), + [sym__list_lower_alpha_period] = STATE(712), + [sym__list_item_lower_alpha_period] = STATE(603), + [sym__list_lower_alpha_paren] = STATE(712), + [sym__list_item_lower_alpha_paren] = STATE(561), + [sym__list_lower_alpha_parens] = STATE(712), + [sym__list_item_lower_alpha_parens] = STATE(560), + [sym__list_upper_alpha_period] = STATE(712), + [sym__list_item_upper_alpha_period] = STATE(558), + [sym__list_upper_alpha_paren] = STATE(712), + [sym__list_item_upper_alpha_paren] = STATE(557), + [sym__list_upper_alpha_parens] = STATE(712), + [sym__list_item_upper_alpha_parens] = STATE(556), + [sym__list_lower_roman_period] = STATE(712), + [sym__list_item_lower_roman_period] = STATE(555), + [sym__list_lower_roman_paren] = STATE(712), + [sym__list_item_lower_roman_paren] = STATE(554), + [sym__list_lower_roman_parens] = STATE(712), + [sym__list_item_lower_roman_parens] = STATE(553), + [sym__list_upper_roman_period] = STATE(712), + [sym__list_item_upper_roman_period] = STATE(552), + [sym__list_upper_roman_paren] = STATE(712), + [sym__list_item_upper_roman_paren] = STATE(551), + [sym__list_upper_roman_parens] = STATE(712), + [sym__list_item_upper_roman_parens] = STATE(550), + [sym_table] = STATE(890), + [sym__table_content] = STATE(291), + [sym_table_separator] = STATE(291), + [sym_table_row] = STATE(376), + [sym_footnote] = STATE(890), + [sym_div] = STATE(890), + [sym_div_marker_begin] = STATE(963), + [sym_code_block] = STATE(890), + [sym_raw_block] = STATE(890), + [sym_thematic_break] = STATE(890), + [sym_block_quote] = STATE(890), + [sym__block_quote_prefix] = STATE(287), + [sym_link_reference_definition] = STATE(890), + [sym_block_attribute] = STATE(890), + [sym__paragraph] = STATE(890), + [sym__paragraph_content] = STATE(745), + [sym__inline] = STATE(703), + [sym__symbol_fallback] = STATE(366), + [aux_sym__list_dash_repeat1] = STATE(400), + [aux_sym__list_plus_repeat1] = STATE(401), + [aux_sym__list_star_repeat1] = STATE(402), + [aux_sym__list_task_repeat1] = STATE(387), + [aux_sym__list_definition_repeat1] = STATE(489), + [aux_sym__list_decimal_period_repeat1] = STATE(565), + [aux_sym__list_decimal_paren_repeat1] = STATE(564), + [aux_sym__list_decimal_parens_repeat1] = STATE(563), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(603), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(561), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(560), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(558), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(557), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(556), + [aux_sym__list_lower_roman_period_repeat1] = STATE(555), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(554), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(553), + [aux_sym__list_upper_roman_period_repeat1] = STATE(552), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(551), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(550), + [aux_sym_table_repeat1] = STATE(291), + [aux_sym__block_quote_prefix_repeat1] = STATE(323), + [aux_sym__inline_repeat1] = STATE(366), + [anon_sym_LBRACK] = ACTIONS(461), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(465), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [sym__block_close] = ACTIONS(481), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(469), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(471), + [sym__block_quote_continuation] = ACTIONS(483), + [sym__thematic_break_dash] = ACTIONS(473), + [sym__thematic_break_star] = ACTIONS(473), + [sym__footnote_begin] = ACTIONS(475), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 11, + ACTIONS(490), 1, + anon_sym_PIPE, + ACTIONS(492), 1, + sym__newline, + ACTIONS(494), 1, + sym__block_quote_continuation, + ACTIONS(496), 1, + sym__table_caption_begin, + STATE(70), 1, + sym_table_row, + STATE(180), 1, + sym_table_caption, + STATE(702), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(1005), 1, + sym__block_quote_prefix, + STATE(67), 3, + sym__table_content, + sym_table_separator, + aux_sym_table_repeat1, + ACTIONS(488), 4, + anon_sym_LBRACK, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + ACTIONS(486), 28, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + ts_builtin_sym_end, [66] = 11, - ACTIONS(477), 1, + ACTIONS(494), 1, sym__block_quote_continuation, - ACTIONS(481), 1, + ACTIONS(498), 1, anon_sym_PIPE, - ACTIONS(483), 1, + ACTIONS(500), 1, sym__newline, - ACTIONS(485), 1, + ACTIONS(502), 1, sym__table_caption_begin, - STATE(66), 1, + STATE(71), 1, sym_table_row, - STATE(176), 1, + STATE(261), 1, sym_table_caption, - STATE(664), 1, + STATE(702), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1046), 1, + STATE(1050), 1, sym__block_quote_prefix, - STATE(63), 3, + STATE(68), 3, sym__table_content, sym_table_separator, aux_sym_table_repeat1, - ACTIONS(469), 4, + ACTIONS(488), 4, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(475), 28, + ACTIONS(486), 28, sym__heading_begin, sym__div_begin, sym__code_block_begin, @@ -11645,34 +12195,34 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, - ts_builtin_sym_end, + sym__footnote_end, [132] = 11, - ACTIONS(477), 1, + ACTIONS(494), 1, sym__block_quote_continuation, - ACTIONS(487), 1, + ACTIONS(504), 1, anon_sym_PIPE, - ACTIONS(489), 1, + ACTIONS(506), 1, sym__newline, - ACTIONS(491), 1, + ACTIONS(508), 1, sym__table_caption_begin, - STATE(68), 1, + STATE(72), 1, sym_table_row, - STATE(232), 1, + STATE(205), 1, sym_table_caption, - STATE(664), 1, + STATE(702), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1012), 1, + STATE(1043), 1, sym__block_quote_prefix, - STATE(65), 3, + STATE(69), 3, sym__table_content, sym_table_separator, aux_sym_table_repeat1, - ACTIONS(469), 4, + ACTIONS(488), 4, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(475), 28, + ACTIONS(486), 28, sym__block_close, sym__heading_begin, sym__div_begin, @@ -11702,26 +12252,26 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, sym__footnote_begin, [198] = 8, - ACTIONS(497), 1, + ACTIONS(514), 1, anon_sym_PIPE, - ACTIONS(500), 1, + ACTIONS(517), 1, sym__block_quote_continuation, - STATE(66), 1, + STATE(70), 1, sym_table_row, - STATE(664), 1, + STATE(702), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1046), 1, + STATE(1005), 1, sym__block_quote_prefix, - STATE(63), 3, + STATE(67), 3, sym__table_content, sym_table_separator, aux_sym_table_repeat1, - ACTIONS(495), 4, + ACTIONS(512), 4, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(493), 30, + ACTIONS(510), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -11753,26 +12303,26 @@ static const uint16_t ts_small_parse_table[] = { sym__table_caption_begin, ts_builtin_sym_end, [257] = 8, - ACTIONS(500), 1, + ACTIONS(517), 1, sym__block_quote_continuation, - ACTIONS(503), 1, + ACTIONS(520), 1, anon_sym_PIPE, - STATE(67), 1, + STATE(71), 1, sym_table_row, - STATE(664), 1, + STATE(702), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1019), 1, + STATE(1050), 1, sym__block_quote_prefix, - STATE(64), 3, + STATE(68), 3, sym__table_content, sym_table_separator, aux_sym_table_repeat1, - ACTIONS(495), 4, + ACTIONS(512), 4, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(493), 30, + ACTIONS(510), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -11804,26 +12354,26 @@ static const uint16_t ts_small_parse_table[] = { sym__footnote_end, sym__table_caption_begin, [316] = 8, - ACTIONS(500), 1, + ACTIONS(517), 1, sym__block_quote_continuation, - ACTIONS(506), 1, + ACTIONS(523), 1, anon_sym_PIPE, - STATE(68), 1, + STATE(72), 1, sym_table_row, - STATE(664), 1, + STATE(702), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1012), 1, + STATE(1043), 1, sym__block_quote_prefix, - STATE(65), 3, + STATE(69), 3, sym__table_content, sym_table_separator, aux_sym_table_repeat1, - ACTIONS(495), 4, + ACTIONS(512), 4, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(493), 30, + ACTIONS(510), 30, sym__block_close, sym__newline, sym__heading_begin, @@ -11855,22 +12405,22 @@ static const uint16_t ts_small_parse_table[] = { sym__footnote_begin, sym__table_caption_begin, [375] = 7, - ACTIONS(513), 1, + ACTIONS(530), 1, anon_sym_PIPE, - ACTIONS(516), 1, + ACTIONS(533), 1, sym__block_quote_continuation, - STATE(117), 1, + STATE(119), 1, sym_table_separator, - STATE(664), 1, + STATE(702), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1009), 1, + STATE(951), 1, sym__block_quote_prefix, - ACTIONS(511), 4, + ACTIONS(528), 4, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(509), 30, + ACTIONS(526), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -11902,22 +12452,22 @@ static const uint16_t ts_small_parse_table[] = { sym__table_caption_begin, ts_builtin_sym_end, [429] = 7, - ACTIONS(516), 1, + ACTIONS(533), 1, sym__block_quote_continuation, - ACTIONS(519), 1, + ACTIONS(536), 1, anon_sym_PIPE, - STATE(91), 1, + STATE(94), 1, sym_table_separator, - STATE(664), 1, + STATE(702), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1036), 1, + STATE(1067), 1, sym__block_quote_prefix, - ACTIONS(511), 4, + ACTIONS(528), 4, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(509), 30, + ACTIONS(526), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -11949,22 +12499,22 @@ static const uint16_t ts_small_parse_table[] = { sym__footnote_end, sym__table_caption_begin, [483] = 7, - ACTIONS(516), 1, + ACTIONS(533), 1, sym__block_quote_continuation, - ACTIONS(522), 1, + ACTIONS(539), 1, anon_sym_PIPE, - STATE(87), 1, + STATE(89), 1, sym_table_separator, - STATE(664), 1, + STATE(702), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1032), 1, + STATE(1063), 1, sym__block_quote_prefix, - ACTIONS(511), 4, + ACTIONS(528), 4, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(509), 30, + ACTIONS(526), 30, sym__block_close, sym__newline, sym__heading_begin, @@ -11996,17 +12546,17 @@ static const uint16_t ts_small_parse_table[] = { sym__footnote_begin, sym__table_caption_begin, [537] = 4, - ACTIONS(479), 1, + ACTIONS(502), 1, sym__table_caption_begin, - STATE(164), 1, + STATE(262), 1, sym_table_caption, - ACTIONS(525), 5, + ACTIONS(542), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(527), 30, + ACTIONS(544), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -12038,17 +12588,17 @@ static const uint16_t ts_small_parse_table[] = { sym__footnote_begin, sym__footnote_end, [583] = 4, - ACTIONS(491), 1, + ACTIONS(508), 1, sym__table_caption_begin, - STATE(229), 1, + STATE(207), 1, sym_table_caption, - ACTIONS(525), 5, + ACTIONS(542), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(527), 30, + ACTIONS(544), 30, sym__block_close, sym__newline, sym__heading_begin, @@ -12080,17 +12630,17 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, sym__footnote_begin, [629] = 4, - ACTIONS(485), 1, + ACTIONS(496), 1, sym__table_caption_begin, - STATE(233), 1, + STATE(240), 1, sym_table_caption, - ACTIONS(525), 5, + ACTIONS(542), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(527), 30, + ACTIONS(544), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -12122,16 +12672,15 @@ static const uint16_t ts_small_parse_table[] = { sym__footnote_begin, ts_builtin_sym_end, [675] = 3, - ACTIONS(533), 1, - sym__code_block_end, - ACTIONS(529), 5, + ACTIONS(550), 1, + sym__div_end, + ACTIONS(548), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(531), 30, - sym__block_close, + ACTIONS(546), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -12161,17 +12710,17 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, + ts_builtin_sym_end, [718] = 3, - ACTIONS(539), 1, + ACTIONS(556), 1, sym__code_block_end, - ACTIONS(535), 5, + ACTIONS(552), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(537), 30, - sym__block_close, + ACTIONS(554), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -12201,16 +12750,15 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, - [761] = 3, - ACTIONS(545), 1, - sym__div_end, - ACTIONS(541), 5, + sym__footnote_end, + [761] = 2, + ACTIONS(558), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(543), 30, + ACTIONS(560), 31, sym__block_close, sym__newline, sym__heading_begin, @@ -12241,14 +12789,17 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, - [804] = 2, - ACTIONS(547), 5, + sym__table_caption_begin, + [802] = 3, + ACTIONS(566), 1, + sym__code_block_end, + ACTIONS(562), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(549), 31, + ACTIONS(564), 30, sym__block_close, sym__newline, sym__heading_begin, @@ -12279,15 +12830,16 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, - sym__table_caption_begin, - [845] = 2, - ACTIONS(551), 5, + [845] = 3, + ACTIONS(572), 1, + sym__code_block_end, + ACTIONS(568), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(553), 31, + ACTIONS(570), 30, sym__block_close, sym__newline, sym__heading_begin, @@ -12318,17 +12870,16 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, - sym__table_caption_begin, - [886] = 3, - ACTIONS(559), 1, - sym__code_block_end, - ACTIONS(555), 5, + [888] = 3, + ACTIONS(578), 1, + sym__div_end, + ACTIONS(574), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(557), 30, + ACTIONS(576), 30, sym__block_close, sym__newline, sym__heading_begin, @@ -12359,16 +12910,16 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, - [929] = 3, - ACTIONS(565), 1, - sym__code_block_end, - ACTIONS(561), 5, + [931] = 3, + ACTIONS(584), 1, + sym__div_end, + ACTIONS(580), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(563), 30, + ACTIONS(582), 30, sym__block_close, sym__newline, sym__heading_begin, @@ -12399,16 +12950,14 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, - [972] = 3, - ACTIONS(571), 1, - sym__div_end, - ACTIONS(567), 5, + [974] = 2, + ACTIONS(586), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(569), 30, + ACTIONS(588), 31, sym__block_close, sym__newline, sym__heading_begin, @@ -12439,16 +12988,15 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, - [1015] = 3, - ACTIONS(577), 1, - sym__div_end, - ACTIONS(573), 5, + sym__table_caption_begin, + [1015] = 2, + ACTIONS(590), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(575), 30, + ACTIONS(592), 31, sym__block_close, sym__newline, sym__heading_begin, @@ -12479,14 +13027,17 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, - [1058] = 2, - ACTIONS(579), 5, + sym__table_caption_begin, + [1056] = 3, + ACTIONS(598), 1, + sym__code_block_end, + ACTIONS(594), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(581), 31, + ACTIONS(596), 30, sym__block_close, sym__newline, sym__heading_begin, @@ -12517,15 +13068,16 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, - sym__table_caption_begin, - [1099] = 2, - ACTIONS(583), 5, + [1099] = 3, + ACTIONS(604), 1, + sym__div_end, + ACTIONS(600), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(585), 31, + ACTIONS(602), 30, sym__block_close, sym__newline, sym__heading_begin, @@ -12556,18 +13108,16 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, - sym__table_caption_begin, - [1140] = 3, - ACTIONS(591), 1, - sym__code_block_end, - ACTIONS(587), 5, + [1142] = 3, + ACTIONS(608), 1, + sym__eof_or_newline, + ACTIONS(606), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(589), 30, - sym__block_close, + ACTIONS(610), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -12597,17 +13147,17 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, - [1183] = 3, - ACTIONS(597), 1, - sym__div_end, - ACTIONS(593), 5, + sym__footnote_end, + [1185] = 3, + ACTIONS(614), 1, + sym__eof_or_newline, + ACTIONS(612), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(595), 30, - sym__block_close, + ACTIONS(616), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -12637,16 +13187,16 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, - [1226] = 3, - ACTIONS(601), 1, - sym__eof_or_newline, - ACTIONS(599), 5, + sym__footnote_end, + [1228] = 2, + ACTIONS(618), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(603), 30, + ACTIONS(620), 31, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -12676,17 +13226,18 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, - sym__footnote_end, + sym__table_caption_begin, [1269] = 3, - ACTIONS(607), 1, - sym__eof_or_newline, - ACTIONS(605), 5, + ACTIONS(626), 1, + sym__code_block_end, + ACTIONS(622), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(609), 30, + ACTIONS(624), 30, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -12716,15 +13267,14 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, - sym__footnote_end, [1312] = 2, - ACTIONS(611), 5, + ACTIONS(628), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(613), 31, + ACTIONS(630), 31, sym__block_close, sym__newline, sym__heading_begin, @@ -12757,13 +13307,13 @@ static const uint16_t ts_small_parse_table[] = { sym__footnote_begin, sym__table_caption_begin, [1353] = 2, - ACTIONS(615), 5, + ACTIONS(632), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(617), 31, + ACTIONS(634), 31, sym__block_close, sym__newline, sym__heading_begin, @@ -12795,14 +13345,16 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, sym__footnote_begin, sym__table_caption_begin, - [1394] = 2, - ACTIONS(619), 5, + [1394] = 3, + ACTIONS(636), 1, + sym__eof_or_newline, + ACTIONS(612), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(621), 31, + ACTIONS(616), 30, sym__block_close, sym__newline, sym__heading_begin, @@ -12833,18 +13385,14 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, - sym__table_caption_begin, - [1435] = 3, - ACTIONS(623), 1, - sym__eof_or_newline, - ACTIONS(605), 5, + [1437] = 2, + ACTIONS(618), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(609), 30, - sym__block_close, + ACTIONS(620), 31, sym__newline, sym__heading_begin, sym__div_begin, @@ -12874,14 +13422,18 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, - [1478] = 2, - ACTIONS(611), 5, + sym__footnote_end, + sym__table_caption_begin, + [1478] = 3, + ACTIONS(638), 1, + sym__eof_or_newline, + ACTIONS(612), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(613), 31, + ACTIONS(616), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -12911,18 +13463,15 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, - sym__footnote_end, - sym__table_caption_begin, - [1519] = 3, - ACTIONS(625), 1, - sym__eof_or_newline, - ACTIONS(605), 5, + ts_builtin_sym_end, + [1521] = 2, + ACTIONS(632), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(609), 30, + ACTIONS(634), 31, sym__newline, sym__heading_begin, sym__div_begin, @@ -12952,15 +13501,18 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, + sym__table_caption_begin, ts_builtin_sym_end, - [1562] = 2, - ACTIONS(619), 5, + [1562] = 3, + ACTIONS(640), 1, + sym__code_block_end, + ACTIONS(568), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(621), 31, + ACTIONS(570), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -12990,16 +13542,17 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, - sym__table_caption_begin, ts_builtin_sym_end, - [1603] = 2, - ACTIONS(615), 5, + [1605] = 3, + ACTIONS(642), 1, + sym__code_block_end, + ACTIONS(622), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(617), 31, + ACTIONS(624), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -13029,18 +13582,17 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, - sym__table_caption_begin, ts_builtin_sym_end, - [1644] = 3, - ACTIONS(627), 1, + [1648] = 3, + ACTIONS(644), 1, sym__code_block_end, - ACTIONS(529), 5, + ACTIONS(552), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(531), 30, + ACTIONS(554), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -13071,16 +13623,17 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, sym__footnote_begin, ts_builtin_sym_end, - [1687] = 3, - ACTIONS(629), 1, + [1691] = 3, + ACTIONS(646), 1, sym__code_block_end, - ACTIONS(535), 5, + ACTIONS(552), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(537), 30, + ACTIONS(554), 30, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -13110,17 +13663,14 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, - ts_builtin_sym_end, - [1730] = 3, - ACTIONS(631), 1, - sym__div_end, - ACTIONS(541), 5, + [1734] = 2, + ACTIONS(650), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(543), 30, + ACTIONS(648), 31, sym__newline, sym__heading_begin, sym__div_begin, @@ -13150,15 +13700,17 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, + sym__table_caption_begin, ts_builtin_sym_end, - [1773] = 2, - ACTIONS(547), 5, + [1775] = 2, + ACTIONS(650), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(549), 31, + ACTIONS(648), 31, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -13189,15 +13741,14 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, sym__footnote_begin, sym__table_caption_begin, - ts_builtin_sym_end, - [1814] = 2, - ACTIONS(551), 5, + [1816] = 2, + ACTIONS(558), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(553), 31, + ACTIONS(560), 31, sym__newline, sym__heading_begin, sym__div_begin, @@ -13229,16 +13780,14 @@ static const uint16_t ts_small_parse_table[] = { sym__footnote_begin, sym__table_caption_begin, ts_builtin_sym_end, - [1855] = 3, - ACTIONS(633), 1, - sym__code_block_end, - ACTIONS(555), 5, + [1857] = 2, + ACTIONS(628), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(557), 30, + ACTIONS(630), 31, sym__newline, sym__heading_begin, sym__div_begin, @@ -13268,17 +13817,18 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, + sym__table_caption_begin, ts_builtin_sym_end, [1898] = 3, - ACTIONS(635), 1, - sym__code_block_end, - ACTIONS(561), 5, + ACTIONS(652), 1, + sym__div_end, + ACTIONS(600), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(563), 30, + ACTIONS(602), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -13308,17 +13858,17 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, - ts_builtin_sym_end, + sym__footnote_end, [1941] = 3, - ACTIONS(637), 1, + ACTIONS(654), 1, sym__div_end, - ACTIONS(593), 5, + ACTIONS(574), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(595), 30, + ACTIONS(576), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -13348,17 +13898,17 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, - sym__footnote_end, + ts_builtin_sym_end, [1984] = 3, - ACTIONS(639), 1, + ACTIONS(656), 1, sym__div_end, - ACTIONS(567), 5, + ACTIONS(580), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(569), 30, + ACTIONS(582), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -13389,16 +13939,14 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, sym__footnote_begin, ts_builtin_sym_end, - [2027] = 3, - ACTIONS(641), 1, - sym__div_end, - ACTIONS(573), 5, + [2027] = 2, + ACTIONS(586), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(575), 30, + ACTIONS(588), 31, sym__newline, sym__heading_begin, sym__div_begin, @@ -13428,15 +13976,16 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, + sym__table_caption_begin, ts_builtin_sym_end, - [2070] = 2, - ACTIONS(579), 5, + [2068] = 2, + ACTIONS(590), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(581), 31, + ACTIONS(592), 31, sym__newline, sym__heading_begin, sym__div_begin, @@ -13468,14 +14017,16 @@ static const uint16_t ts_small_parse_table[] = { sym__footnote_begin, sym__table_caption_begin, ts_builtin_sym_end, - [2111] = 2, - ACTIONS(583), 5, + [2109] = 3, + ACTIONS(658), 1, + sym__code_block_end, + ACTIONS(594), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(585), 31, + ACTIONS(596), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -13505,18 +14056,15 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, - sym__table_caption_begin, - ts_builtin_sym_end, - [2152] = 3, - ACTIONS(643), 1, - sym__code_block_end, - ACTIONS(587), 5, + sym__footnote_end, + [2152] = 2, + ACTIONS(590), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(589), 30, + ACTIONS(592), 31, sym__newline, sym__heading_begin, sym__div_begin, @@ -13547,14 +14095,17 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, sym__footnote_begin, sym__footnote_end, - [2195] = 2, - ACTIONS(583), 5, + sym__table_caption_begin, + [2193] = 3, + ACTIONS(660), 1, + sym__code_block_end, + ACTIONS(594), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(585), 31, + ACTIONS(596), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -13584,18 +14135,15 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, - sym__footnote_end, - sym__table_caption_begin, - [2236] = 3, - ACTIONS(645), 1, - sym__code_block_end, - ACTIONS(587), 5, + ts_builtin_sym_end, + [2236] = 2, + ACTIONS(586), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(589), 30, + ACTIONS(588), 31, sym__newline, sym__heading_begin, sym__div_begin, @@ -13625,15 +14173,18 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, - ts_builtin_sym_end, - [2279] = 2, - ACTIONS(579), 5, + sym__footnote_end, + sym__table_caption_begin, + [2277] = 3, + ACTIONS(662), 1, + sym__div_end, + ACTIONS(580), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(581), 31, + ACTIONS(582), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -13664,17 +14215,16 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, sym__footnote_begin, sym__footnote_end, - sym__table_caption_begin, [2320] = 3, - ACTIONS(647), 1, + ACTIONS(664), 1, sym__div_end, - ACTIONS(593), 5, + ACTIONS(600), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(595), 30, + ACTIONS(602), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -13706,15 +14256,15 @@ static const uint16_t ts_small_parse_table[] = { sym__footnote_begin, ts_builtin_sym_end, [2363] = 3, - ACTIONS(649), 1, + ACTIONS(666), 1, sym__div_end, - ACTIONS(573), 5, + ACTIONS(574), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(575), 30, + ACTIONS(576), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -13746,15 +14296,15 @@ static const uint16_t ts_small_parse_table[] = { sym__footnote_begin, sym__footnote_end, [2406] = 3, - ACTIONS(651), 1, - sym__div_end, - ACTIONS(567), 5, + ACTIONS(668), 1, + sym__code_block_end, + ACTIONS(568), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(569), 30, + ACTIONS(570), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -13786,15 +14336,15 @@ static const uint16_t ts_small_parse_table[] = { sym__footnote_begin, sym__footnote_end, [2449] = 3, - ACTIONS(653), 1, + ACTIONS(670), 1, sym__code_block_end, - ACTIONS(561), 5, + ACTIONS(562), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(563), 30, + ACTIONS(564), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -13825,16 +14375,14 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, sym__footnote_begin, sym__footnote_end, - [2492] = 3, - ACTIONS(655), 1, - sym__code_block_end, - ACTIONS(555), 5, + [2492] = 2, + ACTIONS(618), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(557), 30, + ACTIONS(620), 31, sym__newline, sym__heading_begin, sym__div_begin, @@ -13864,15 +14412,16 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, - sym__footnote_end, - [2535] = 2, - ACTIONS(551), 5, + sym__table_caption_begin, + ts_builtin_sym_end, + [2533] = 2, + ACTIONS(558), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(553), 31, + ACTIONS(560), 31, sym__newline, sym__heading_begin, sym__div_begin, @@ -13904,14 +14453,14 @@ static const uint16_t ts_small_parse_table[] = { sym__footnote_begin, sym__footnote_end, sym__table_caption_begin, - [2576] = 2, - ACTIONS(611), 5, + [2574] = 2, + ACTIONS(650), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(613), 31, + ACTIONS(648), 31, sym__newline, sym__heading_begin, sym__div_begin, @@ -13941,19 +14490,18 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, + sym__footnote_end, sym__table_caption_begin, - ts_builtin_sym_end, - [2617] = 3, - ACTIONS(657), 1, - sym__eof_or_newline, - ACTIONS(599), 5, + [2615] = 3, + ACTIONS(672), 1, + sym__div_end, + ACTIONS(548), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(603), 30, - sym__block_close, + ACTIONS(546), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -13983,14 +14531,17 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, - [2660] = 2, - ACTIONS(547), 5, + sym__footnote_end, + [2658] = 3, + ACTIONS(674), 1, + sym__code_block_end, + ACTIONS(562), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(549), 31, + ACTIONS(564), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -14020,18 +14571,17 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, - sym__footnote_end, - sym__table_caption_begin, + ts_builtin_sym_end, [2701] = 3, - ACTIONS(659), 1, - sym__div_end, - ACTIONS(541), 5, + ACTIONS(676), 1, + sym__code_block_end, + ACTIONS(622), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(543), 30, + ACTIONS(624), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -14063,15 +14613,16 @@ static const uint16_t ts_small_parse_table[] = { sym__footnote_begin, sym__footnote_end, [2744] = 3, - ACTIONS(661), 1, - sym__code_block_end, - ACTIONS(535), 5, + ACTIONS(678), 1, + sym__eof_or_newline, + ACTIONS(606), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(537), 30, + ACTIONS(610), 30, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -14101,17 +14652,14 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, - sym__footnote_end, - [2787] = 3, - ACTIONS(663), 1, - sym__code_block_end, - ACTIONS(529), 5, + [2787] = 2, + ACTIONS(628), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(531), 30, + ACTIONS(630), 31, sym__newline, sym__heading_begin, sym__div_begin, @@ -14142,14 +14690,15 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, sym__footnote_begin, sym__footnote_end, - [2830] = 2, - ACTIONS(615), 5, + sym__table_caption_begin, + [2828] = 2, + ACTIONS(632), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(617), 31, + ACTIONS(634), 31, sym__newline, sym__heading_begin, sym__div_begin, @@ -14181,14 +14730,17 @@ static const uint16_t ts_small_parse_table[] = { sym__footnote_begin, sym__footnote_end, sym__table_caption_begin, - [2871] = 2, - ACTIONS(619), 5, + [2869] = 3, + ACTIONS(680), 1, + sym__div_end, + ACTIONS(548), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(621), 31, + ACTIONS(546), 30, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -14218,16 +14770,14 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, - sym__footnote_end, - sym__table_caption_begin, [2912] = 2, - ACTIONS(665), 5, + ACTIONS(682), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(667), 30, + ACTIONS(684), 30, sym__block_close, sym__newline, sym__heading_begin, @@ -14259,13 +14809,13 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, sym__footnote_begin, [2952] = 2, - ACTIONS(669), 5, + ACTIONS(686), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(671), 30, + ACTIONS(688), 30, sym__block_close, sym__newline, sym__heading_begin, @@ -14297,13 +14847,13 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, sym__footnote_begin, [2992] = 2, - ACTIONS(535), 5, + ACTIONS(692), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(537), 30, + ACTIONS(690), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -14335,13 +14885,13 @@ static const uint16_t ts_small_parse_table[] = { sym__footnote_begin, ts_builtin_sym_end, [3032] = 2, - ACTIONS(675), 5, + ACTIONS(696), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(673), 30, + ACTIONS(694), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -14373,13 +14923,13 @@ static const uint16_t ts_small_parse_table[] = { sym__footnote_begin, ts_builtin_sym_end, [3072] = 2, - ACTIONS(679), 5, + ACTIONS(700), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(677), 30, + ACTIONS(698), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -14411,13 +14961,13 @@ static const uint16_t ts_small_parse_table[] = { sym__footnote_begin, ts_builtin_sym_end, [3112] = 2, - ACTIONS(683), 5, + ACTIONS(552), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(681), 30, + ACTIONS(554), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -14449,13 +14999,14 @@ static const uint16_t ts_small_parse_table[] = { sym__footnote_begin, ts_builtin_sym_end, [3152] = 2, - ACTIONS(685), 5, + ACTIONS(702), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(687), 30, + ACTIONS(704), 30, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -14485,15 +15036,14 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, - sym__footnote_end, [3192] = 2, - ACTIONS(691), 5, + ACTIONS(708), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(689), 30, + ACTIONS(706), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -14525,13 +15075,13 @@ static const uint16_t ts_small_parse_table[] = { sym__footnote_begin, ts_builtin_sym_end, [3232] = 2, - ACTIONS(669), 5, + ACTIONS(712), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(671), 30, + ACTIONS(710), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -14563,13 +15113,14 @@ static const uint16_t ts_small_parse_table[] = { sym__footnote_begin, ts_builtin_sym_end, [3272] = 2, - ACTIONS(693), 5, + ACTIONS(708), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(695), 30, + ACTIONS(706), 30, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -14599,15 +15150,14 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, - sym__footnote_end, [3312] = 2, - ACTIONS(699), 5, + ACTIONS(702), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(697), 30, + ACTIONS(704), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -14639,13 +15189,13 @@ static const uint16_t ts_small_parse_table[] = { sym__footnote_begin, ts_builtin_sym_end, [3352] = 2, - ACTIONS(701), 5, + ACTIONS(716), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(703), 30, + ACTIONS(714), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -14675,15 +15225,16 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, - sym__footnote_end, + ts_builtin_sym_end, [3392] = 2, - ACTIONS(705), 5, + ACTIONS(718), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(707), 30, + ACTIONS(720), 30, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -14713,15 +15264,14 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, - sym__footnote_end, [3432] = 2, - ACTIONS(711), 5, + ACTIONS(724), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(709), 30, + ACTIONS(722), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -14753,13 +15303,13 @@ static const uint16_t ts_small_parse_table[] = { sym__footnote_begin, ts_builtin_sym_end, [3472] = 2, - ACTIONS(715), 5, + ACTIONS(718), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(713), 30, + ACTIONS(720), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -14791,13 +15341,14 @@ static const uint16_t ts_small_parse_table[] = { sym__footnote_begin, ts_builtin_sym_end, [3512] = 2, - ACTIONS(717), 5, + ACTIONS(726), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(719), 30, + ACTIONS(728), 30, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -14827,15 +15378,14 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, - sym__footnote_end, [3552] = 2, - ACTIONS(723), 5, + ACTIONS(732), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(721), 30, + ACTIONS(730), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -14867,13 +15417,14 @@ static const uint16_t ts_small_parse_table[] = { sym__footnote_begin, ts_builtin_sym_end, [3592] = 2, - ACTIONS(675), 5, + ACTIONS(734), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(673), 30, + ACTIONS(736), 30, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -14903,15 +15454,14 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, - sym__footnote_end, [3632] = 2, - ACTIONS(727), 5, + ACTIONS(740), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(725), 30, + ACTIONS(738), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -14943,13 +15493,13 @@ static const uint16_t ts_small_parse_table[] = { sym__footnote_begin, ts_builtin_sym_end, [3672] = 2, - ACTIONS(669), 5, + ACTIONS(744), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(671), 30, + ACTIONS(742), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -14979,15 +15529,15 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, - sym__footnote_end, + ts_builtin_sym_end, [3712] = 2, - ACTIONS(731), 5, + ACTIONS(748), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(729), 30, + ACTIONS(746), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -15019,13 +15569,13 @@ static const uint16_t ts_small_parse_table[] = { sym__footnote_begin, ts_builtin_sym_end, [3752] = 2, - ACTIONS(733), 5, + ACTIONS(752), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(735), 30, + ACTIONS(750), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -15055,15 +15605,15 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, - sym__footnote_end, + ts_builtin_sym_end, [3792] = 2, - ACTIONS(739), 5, + ACTIONS(756), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(737), 30, + ACTIONS(754), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -15095,13 +15645,13 @@ static const uint16_t ts_small_parse_table[] = { sym__footnote_begin, ts_builtin_sym_end, [3832] = 2, - ACTIONS(741), 5, + ACTIONS(760), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(743), 30, + ACTIONS(758), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -15131,15 +15681,15 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, - sym__footnote_end, + ts_builtin_sym_end, [3872] = 2, - ACTIONS(747), 5, + ACTIONS(764), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(745), 30, + ACTIONS(762), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -15171,13 +15721,14 @@ static const uint16_t ts_small_parse_table[] = { sym__footnote_begin, ts_builtin_sym_end, [3912] = 2, - ACTIONS(749), 5, + ACTIONS(766), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(751), 30, + ACTIONS(768), 30, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -15207,15 +15758,14 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, - sym__footnote_end, [3952] = 2, - ACTIONS(755), 5, + ACTIONS(772), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(753), 30, + ACTIONS(770), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -15247,13 +15797,13 @@ static const uint16_t ts_small_parse_table[] = { sym__footnote_begin, ts_builtin_sym_end, [3992] = 2, - ACTIONS(535), 5, + ACTIONS(734), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(537), 30, + ACTIONS(736), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -15283,15 +15833,15 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, - sym__footnote_end, + ts_builtin_sym_end, [4032] = 2, - ACTIONS(759), 5, + ACTIONS(776), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(757), 30, + ACTIONS(774), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -15323,13 +15873,13 @@ static const uint16_t ts_small_parse_table[] = { sym__footnote_begin, ts_builtin_sym_end, [4072] = 2, - ACTIONS(761), 5, + ACTIONS(780), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(763), 30, + ACTIONS(778), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -15359,15 +15909,15 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, - sym__footnote_end, + ts_builtin_sym_end, [4112] = 2, - ACTIONS(767), 5, + ACTIONS(784), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(765), 30, + ACTIONS(782), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -15399,13 +15949,13 @@ static const uint16_t ts_small_parse_table[] = { sym__footnote_begin, ts_builtin_sym_end, [4152] = 2, - ACTIONS(769), 5, + ACTIONS(788), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(771), 30, + ACTIONS(786), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -15435,15 +15985,15 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, - sym__footnote_end, + ts_builtin_sym_end, [4192] = 2, - ACTIONS(775), 5, + ACTIONS(792), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(773), 30, + ACTIONS(790), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -15475,13 +16025,14 @@ static const uint16_t ts_small_parse_table[] = { sym__footnote_begin, ts_builtin_sym_end, [4232] = 2, - ACTIONS(715), 5, + ACTIONS(724), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(713), 30, + ACTIONS(722), 30, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -15511,15 +16062,14 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, - sym__footnote_end, [4272] = 2, - ACTIONS(779), 5, + ACTIONS(796), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(777), 30, + ACTIONS(794), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -15551,13 +16101,13 @@ static const uint16_t ts_small_parse_table[] = { sym__footnote_begin, ts_builtin_sym_end, [4312] = 2, - ACTIONS(781), 5, + ACTIONS(800), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(783), 30, + ACTIONS(798), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -15587,15 +16137,15 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, - sym__footnote_end, + ts_builtin_sym_end, [4352] = 2, - ACTIONS(787), 5, + ACTIONS(804), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(785), 30, + ACTIONS(802), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -15627,13 +16177,13 @@ static const uint16_t ts_small_parse_table[] = { sym__footnote_begin, ts_builtin_sym_end, [4392] = 2, - ACTIONS(733), 5, + ACTIONS(808), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(735), 30, + ACTIONS(806), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -15665,13 +16215,13 @@ static const uint16_t ts_small_parse_table[] = { sym__footnote_begin, ts_builtin_sym_end, [4432] = 2, - ACTIONS(791), 5, + ACTIONS(812), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(789), 30, + ACTIONS(810), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -15703,13 +16253,14 @@ static const uint16_t ts_small_parse_table[] = { sym__footnote_begin, ts_builtin_sym_end, [4472] = 2, - ACTIONS(793), 5, + ACTIONS(700), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(795), 30, + ACTIONS(698), 30, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -15739,15 +16290,14 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, - sym__footnote_end, [4512] = 2, - ACTIONS(799), 5, + ACTIONS(816), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(797), 30, + ACTIONS(814), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -15779,13 +16329,14 @@ static const uint16_t ts_small_parse_table[] = { sym__footnote_begin, ts_builtin_sym_end, [4552] = 2, - ACTIONS(665), 5, + ACTIONS(818), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(667), 30, + ACTIONS(820), 30, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -15815,15 +16366,14 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, - sym__footnote_end, [4592] = 2, - ACTIONS(803), 5, + ACTIONS(824), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(801), 30, + ACTIONS(822), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -15855,13 +16405,14 @@ static const uint16_t ts_small_parse_table[] = { sym__footnote_begin, ts_builtin_sym_end, [4632] = 2, - ACTIONS(525), 5, + ACTIONS(732), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(527), 30, + ACTIONS(730), 30, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -15891,15 +16442,14 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, - sym__footnote_end, [4672] = 2, - ACTIONS(807), 5, + ACTIONS(828), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(805), 30, + ACTIONS(826), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -15931,13 +16481,14 @@ static const uint16_t ts_small_parse_table[] = { sym__footnote_begin, ts_builtin_sym_end, [4712] = 2, - ACTIONS(809), 5, + ACTIONS(740), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(811), 30, + ACTIONS(738), 30, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -15967,15 +16518,14 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, - sym__footnote_end, [4752] = 2, - ACTIONS(809), 5, + ACTIONS(832), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(811), 30, + ACTIONS(830), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -16007,13 +16557,13 @@ static const uint16_t ts_small_parse_table[] = { sym__footnote_begin, ts_builtin_sym_end, [4792] = 2, - ACTIONS(807), 5, + ACTIONS(836), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(805), 30, + ACTIONS(834), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -16043,15 +16593,15 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, - sym__footnote_end, + ts_builtin_sym_end, [4832] = 2, - ACTIONS(815), 5, + ACTIONS(840), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(813), 30, + ACTIONS(838), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -16083,13 +16633,14 @@ static const uint16_t ts_small_parse_table[] = { sym__footnote_begin, ts_builtin_sym_end, [4872] = 2, - ACTIONS(803), 5, + ACTIONS(748), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(801), 30, + ACTIONS(746), 30, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -16119,15 +16670,15 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, - sym__footnote_end, [4912] = 2, - ACTIONS(799), 5, + ACTIONS(756), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(797), 30, + ACTIONS(754), 30, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -16157,15 +16708,14 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, - sym__footnote_end, [4952] = 2, - ACTIONS(525), 5, + ACTIONS(542), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(527), 30, + ACTIONS(544), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -16197,13 +16747,14 @@ static const uint16_t ts_small_parse_table[] = { sym__footnote_begin, ts_builtin_sym_end, [4992] = 2, - ACTIONS(791), 5, + ACTIONS(764), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(789), 30, + ACTIONS(762), 30, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -16233,15 +16784,14 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, - sym__footnote_end, [5032] = 2, - ACTIONS(819), 5, + ACTIONS(818), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(817), 30, + ACTIONS(820), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -16273,13 +16823,13 @@ static const uint16_t ts_small_parse_table[] = { sym__footnote_begin, ts_builtin_sym_end, [5072] = 2, - ACTIONS(787), 5, + ACTIONS(788), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(785), 30, + ACTIONS(786), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -16311,13 +16861,14 @@ static const uint16_t ts_small_parse_table[] = { sym__footnote_begin, sym__footnote_end, [5112] = 2, - ACTIONS(779), 5, + ACTIONS(772), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(777), 30, + ACTIONS(770), 30, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -16347,15 +16898,15 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, - sym__footnote_end, [5152] = 2, - ACTIONS(775), 5, + ACTIONS(776), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(773), 30, + ACTIONS(774), 30, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -16385,15 +16936,15 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, - sym__footnote_end, [5192] = 2, - ACTIONS(767), 5, + ACTIONS(784), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(765), 30, + ACTIONS(782), 30, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -16423,15 +16974,14 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, - sym__footnote_end, [5232] = 2, - ACTIONS(759), 5, + ACTIONS(836), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(757), 30, + ACTIONS(834), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -16463,13 +17013,13 @@ static const uint16_t ts_small_parse_table[] = { sym__footnote_begin, sym__footnote_end, [5272] = 2, - ACTIONS(755), 5, + ACTIONS(686), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(753), 30, + ACTIONS(688), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -16501,13 +17051,14 @@ static const uint16_t ts_small_parse_table[] = { sym__footnote_begin, sym__footnote_end, [5312] = 2, - ACTIONS(747), 5, + ACTIONS(792), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(745), 30, + ACTIONS(790), 30, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -16537,15 +17088,14 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, - sym__footnote_end, [5352] = 2, - ACTIONS(739), 5, + ACTIONS(842), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(737), 30, + ACTIONS(844), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -16577,13 +17127,14 @@ static const uint16_t ts_small_parse_table[] = { sym__footnote_begin, sym__footnote_end, [5392] = 2, - ACTIONS(731), 5, + ACTIONS(796), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(729), 30, + ACTIONS(794), 30, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -16613,15 +17164,14 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, - sym__footnote_end, [5432] = 2, - ACTIONS(727), 5, + ACTIONS(692), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(725), 30, + ACTIONS(690), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -16653,13 +17203,14 @@ static const uint16_t ts_small_parse_table[] = { sym__footnote_begin, sym__footnote_end, [5472] = 2, - ACTIONS(723), 5, + ACTIONS(804), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(721), 30, + ACTIONS(802), 30, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -16689,15 +17240,14 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, - sym__footnote_end, [5512] = 2, - ACTIONS(761), 5, + ACTIONS(848), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(763), 30, + ACTIONS(846), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -16729,13 +17279,14 @@ static const uint16_t ts_small_parse_table[] = { sym__footnote_begin, ts_builtin_sym_end, [5552] = 2, - ACTIONS(711), 5, + ACTIONS(812), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(709), 30, + ACTIONS(810), 30, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -16765,15 +17316,14 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, - sym__footnote_end, [5592] = 2, - ACTIONS(823), 5, + ACTIONS(696), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(821), 30, + ACTIONS(694), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -16803,15 +17353,15 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, - ts_builtin_sym_end, + sym__footnote_end, [5632] = 2, - ACTIONS(699), 5, + ACTIONS(716), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(697), 30, + ACTIONS(714), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -16843,13 +17393,13 @@ static const uint16_t ts_small_parse_table[] = { sym__footnote_begin, sym__footnote_end, [5672] = 2, - ACTIONS(691), 5, + ACTIONS(744), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(689), 30, + ACTIONS(742), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -16881,13 +17431,13 @@ static const uint16_t ts_small_parse_table[] = { sym__footnote_begin, sym__footnote_end, [5712] = 2, - ACTIONS(815), 5, + ACTIONS(816), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(813), 30, + ACTIONS(814), 30, sym__block_close, sym__newline, sym__heading_begin, @@ -16919,13 +17469,14 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, sym__footnote_begin, [5752] = 2, - ACTIONS(679), 5, + ACTIONS(824), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(677), 30, + ACTIONS(822), 30, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -16955,15 +17506,15 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, - sym__footnote_end, [5792] = 2, - ACTIONS(819), 5, + ACTIONS(828), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(817), 30, + ACTIONS(826), 30, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -16993,15 +17544,14 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, - sym__footnote_end, [5832] = 2, - ACTIONS(825), 5, + ACTIONS(832), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(827), 30, + ACTIONS(830), 30, sym__block_close, sym__newline, sym__heading_begin, @@ -17033,13 +17583,13 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, sym__footnote_begin, [5872] = 2, - ACTIONS(741), 5, + ACTIONS(726), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(743), 30, + ACTIONS(728), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -17071,13 +17621,13 @@ static const uint16_t ts_small_parse_table[] = { sym__footnote_begin, ts_builtin_sym_end, [5912] = 2, - ACTIONS(829), 5, + ACTIONS(800), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(831), 30, + ACTIONS(798), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -17109,13 +17659,14 @@ static const uint16_t ts_small_parse_table[] = { sym__footnote_begin, sym__footnote_end, [5952] = 2, - ACTIONS(833), 5, + ACTIONS(542), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(835), 30, + ACTIONS(544), 30, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -17145,15 +17696,14 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, - sym__footnote_end, [5992] = 2, - ACTIONS(685), 5, + ACTIONS(850), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(687), 30, + ACTIONS(852), 30, sym__block_close, sym__newline, sym__heading_begin, @@ -17185,13 +17735,14 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, sym__footnote_begin, [6032] = 2, - ACTIONS(839), 5, + ACTIONS(854), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(837), 30, + ACTIONS(856), 30, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -17221,16 +17772,14 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, - ts_builtin_sym_end, [6072] = 2, - ACTIONS(693), 5, + ACTIONS(850), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(695), 30, - sym__block_close, + ACTIONS(852), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -17260,15 +17809,15 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, + ts_builtin_sym_end, [6112] = 2, - ACTIONS(705), 5, + ACTIONS(858), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(707), 30, - sym__block_close, + ACTIONS(860), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -17298,15 +17847,15 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, + sym__footnote_end, [6152] = 2, - ACTIONS(717), 5, + ACTIONS(808), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(719), 30, - sym__block_close, + ACTIONS(806), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -17336,14 +17885,15 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, + sym__footnote_end, [6192] = 2, - ACTIONS(781), 5, + ACTIONS(552), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(783), 30, + ACTIONS(554), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -17373,15 +17923,15 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, - ts_builtin_sym_end, + sym__footnote_end, [6232] = 2, - ACTIONS(675), 5, + ACTIONS(848), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(673), 30, + ACTIONS(846), 30, sym__block_close, sym__newline, sym__heading_begin, @@ -17413,13 +17963,14 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, sym__footnote_begin, [6272] = 2, - ACTIONS(717), 5, + ACTIONS(840), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(719), 30, + ACTIONS(838), 30, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -17449,15 +18000,15 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, - ts_builtin_sym_end, [6312] = 2, - ACTIONS(665), 5, + ACTIONS(780), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(667), 30, + ACTIONS(778), 30, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -17487,16 +18038,14 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, - ts_builtin_sym_end, [6352] = 2, - ACTIONS(733), 5, + ACTIONS(682), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(735), 30, - sym__block_close, + ACTIONS(684), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -17526,14 +18075,16 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, + ts_builtin_sym_end, [6392] = 2, - ACTIONS(829), 5, + ACTIONS(752), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(831), 30, + ACTIONS(750), 30, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -17563,15 +18114,14 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, - ts_builtin_sym_end, [6432] = 2, - ACTIONS(741), 5, + ACTIONS(552), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(743), 30, + ACTIONS(554), 30, sym__block_close, sym__newline, sym__heading_begin, @@ -17603,13 +18153,13 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, sym__footnote_begin, [6472] = 2, - ACTIONS(749), 5, + ACTIONS(808), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(751), 30, + ACTIONS(806), 30, sym__block_close, sym__newline, sym__heading_begin, @@ -17641,13 +18191,14 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, sym__footnote_begin, [6512] = 2, - ACTIONS(749), 5, + ACTIONS(800), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(751), 30, + ACTIONS(798), 30, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -17677,15 +18228,15 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, - ts_builtin_sym_end, [6552] = 2, - ACTIONS(769), 5, + ACTIONS(744), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(771), 30, + ACTIONS(742), 30, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -17715,15 +18266,14 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, - ts_builtin_sym_end, [6592] = 2, - ACTIONS(841), 5, + ACTIONS(716), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(843), 30, + ACTIONS(714), 30, sym__block_close, sym__newline, sym__heading_begin, @@ -17755,13 +18305,13 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, sym__footnote_begin, [6632] = 2, - ACTIONS(841), 5, + ACTIONS(752), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(843), 30, + ACTIONS(750), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -17791,16 +18341,15 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, - ts_builtin_sym_end, + sym__footnote_end, [6672] = 2, - ACTIONS(535), 5, + ACTIONS(864), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(537), 30, - sym__block_close, + ACTIONS(862), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -17830,14 +18379,15 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, + ts_builtin_sym_end, [6712] = 2, - ACTIONS(761), 5, + ACTIONS(696), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(763), 30, + ACTIONS(694), 30, sym__block_close, sym__newline, sym__heading_begin, @@ -17869,13 +18419,13 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, sym__footnote_begin, [6752] = 2, - ACTIONS(701), 5, + ACTIONS(692), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(703), 30, + ACTIONS(690), 30, sym__block_close, sym__newline, sym__heading_begin, @@ -17907,13 +18457,13 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, sym__footnote_begin, [6792] = 2, - ACTIONS(769), 5, + ACTIONS(866), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(771), 30, + ACTIONS(868), 30, sym__block_close, sym__newline, sym__heading_begin, @@ -17945,13 +18495,14 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, sym__footnote_begin, [6832] = 2, - ACTIONS(685), 5, + ACTIONS(842), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(687), 30, + ACTIONS(844), 30, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -17981,16 +18532,14 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, - ts_builtin_sym_end, [6872] = 2, - ACTIONS(715), 5, + ACTIONS(766), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(713), 30, - sym__block_close, + ACTIONS(768), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -18020,15 +18569,15 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, + ts_builtin_sym_end, [6912] = 2, - ACTIONS(781), 5, + ACTIONS(686), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(783), 30, - sym__block_close, + ACTIONS(688), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -18058,14 +18607,15 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, + ts_builtin_sym_end, [6952] = 2, - ACTIONS(845), 5, + ACTIONS(780), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(847), 30, + ACTIONS(778), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -18097,13 +18647,14 @@ static const uint16_t ts_small_parse_table[] = { sym__footnote_begin, sym__footnote_end, [6992] = 2, - ACTIONS(839), 5, + ACTIONS(836), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(837), 30, + ACTIONS(834), 30, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -18133,15 +18684,15 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, - sym__footnote_end, [7032] = 2, - ACTIONS(693), 5, + ACTIONS(788), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(695), 30, + ACTIONS(786), 30, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -18171,16 +18722,14 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, - ts_builtin_sym_end, [7072] = 2, - ACTIONS(793), 5, + ACTIONS(726), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(795), 30, - sym__block_close, + ACTIONS(728), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -18210,15 +18759,15 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, + sym__footnote_end, [7112] = 2, - ACTIONS(839), 5, + ACTIONS(718), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(837), 30, - sym__block_close, + ACTIONS(720), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -18248,14 +18797,15 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, + sym__footnote_end, [7152] = 2, - ACTIONS(705), 5, + ACTIONS(840), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(707), 30, + ACTIONS(838), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -18285,16 +18835,15 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, - ts_builtin_sym_end, + sym__footnote_end, [7192] = 2, - ACTIONS(525), 5, + ACTIONS(818), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(527), 30, - sym__block_close, + ACTIONS(820), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -18324,14 +18873,15 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, + sym__footnote_end, [7232] = 2, - ACTIONS(793), 5, + ACTIONS(700), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(795), 30, + ACTIONS(698), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -18361,16 +18911,15 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, - ts_builtin_sym_end, + sym__footnote_end, [7272] = 2, - ACTIONS(809), 5, + ACTIONS(708), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(811), 30, - sym__block_close, + ACTIONS(706), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -18400,14 +18949,15 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, + sym__footnote_end, [7312] = 2, - ACTIONS(825), 5, + ACTIONS(702), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(827), 30, + ACTIONS(704), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -18437,16 +18987,15 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, - ts_builtin_sym_end, + sym__footnote_end, [7352] = 2, - ACTIONS(807), 5, + ACTIONS(854), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(805), 30, - sym__block_close, + ACTIONS(856), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -18476,15 +19025,15 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, + ts_builtin_sym_end, [7392] = 2, - ACTIONS(803), 5, + ACTIONS(724), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(801), 30, - sym__block_close, + ACTIONS(722), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -18514,15 +19063,15 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, + sym__footnote_end, [7432] = 2, - ACTIONS(799), 5, + ACTIONS(848), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(797), 30, - sym__block_close, + ACTIONS(846), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -18552,15 +19101,15 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, + sym__footnote_end, [7472] = 2, - ACTIONS(791), 5, + ACTIONS(732), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(789), 30, - sym__block_close, + ACTIONS(730), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -18590,15 +19139,15 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, + sym__footnote_end, [7512] = 2, - ACTIONS(845), 5, + ACTIONS(740), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(847), 30, - sym__block_close, + ACTIONS(738), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -18628,15 +19177,15 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, + sym__footnote_end, [7552] = 2, - ACTIONS(787), 5, + ACTIONS(748), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(785), 30, - sym__block_close, + ACTIONS(746), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -18666,15 +19215,15 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, + sym__footnote_end, [7592] = 2, - ACTIONS(779), 5, + ACTIONS(756), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(777), 30, - sym__block_close, + ACTIONS(754), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -18704,15 +19253,15 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, + sym__footnote_end, [7632] = 2, - ACTIONS(775), 5, + ACTIONS(764), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(773), 30, - sym__block_close, + ACTIONS(762), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -18742,14 +19291,15 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, + sym__footnote_end, [7672] = 2, - ACTIONS(767), 5, + ACTIONS(858), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(765), 30, + ACTIONS(860), 30, sym__block_close, sym__newline, sym__heading_begin, @@ -18781,14 +19331,13 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, sym__footnote_begin, [7712] = 2, - ACTIONS(833), 5, + ACTIONS(772), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(835), 30, - sym__block_close, + ACTIONS(770), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -18818,15 +19367,15 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, + sym__footnote_end, [7752] = 2, - ACTIONS(759), 5, + ACTIONS(776), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(757), 30, - sym__block_close, + ACTIONS(774), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -18856,15 +19405,15 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, + sym__footnote_end, [7792] = 2, - ACTIONS(755), 5, + ACTIONS(784), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(753), 30, - sym__block_close, + ACTIONS(782), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -18894,15 +19443,15 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, + sym__footnote_end, [7832] = 2, - ACTIONS(747), 5, + ACTIONS(792), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(745), 30, - sym__block_close, + ACTIONS(790), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -18932,15 +19481,15 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, + sym__footnote_end, [7872] = 2, - ACTIONS(739), 5, + ACTIONS(796), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(737), 30, - sym__block_close, + ACTIONS(794), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -18970,15 +19519,15 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, + sym__footnote_end, [7912] = 2, - ACTIONS(731), 5, + ACTIONS(804), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(729), 30, - sym__block_close, + ACTIONS(802), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -19008,15 +19557,15 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, + sym__footnote_end, [7952] = 2, - ACTIONS(727), 5, + ACTIONS(812), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(725), 30, - sym__block_close, + ACTIONS(810), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -19046,15 +19595,15 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, + sym__footnote_end, [7992] = 2, - ACTIONS(723), 5, + ACTIONS(816), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(721), 30, - sym__block_close, + ACTIONS(814), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -19084,15 +19633,15 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, + sym__footnote_end, [8032] = 2, - ACTIONS(711), 5, + ACTIONS(824), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(709), 30, - sym__block_close, + ACTIONS(822), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -19122,15 +19671,15 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, + sym__footnote_end, [8072] = 2, - ACTIONS(829), 5, + ACTIONS(828), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(831), 30, - sym__block_close, + ACTIONS(826), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -19160,14 +19709,15 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, + sym__footnote_end, [8112] = 2, - ACTIONS(833), 5, + ACTIONS(832), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(835), 30, + ACTIONS(830), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -19197,15 +19747,15 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, - ts_builtin_sym_end, + sym__footnote_end, [8152] = 2, - ACTIONS(699), 5, + ACTIONS(864), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(697), 30, + ACTIONS(862), 30, sym__block_close, sym__newline, sym__heading_begin, @@ -19237,14 +19787,13 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, sym__footnote_begin, [8192] = 2, - ACTIONS(691), 5, + ACTIONS(542), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(689), 30, - sym__block_close, + ACTIONS(544), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -19274,15 +19823,15 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, + sym__footnote_end, [8232] = 2, - ACTIONS(679), 5, + ACTIONS(854), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(677), 30, - sym__block_close, + ACTIONS(856), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -19312,15 +19861,15 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, + sym__footnote_end, [8272] = 2, - ACTIONS(819), 5, + ACTIONS(850), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(817), 30, - sym__block_close, + ACTIONS(852), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -19350,14 +19899,15 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, + sym__footnote_end, [8312] = 2, - ACTIONS(849), 5, + ACTIONS(682), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(851), 29, + ACTIONS(684), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -19387,19 +19937,17 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, - [8351] = 4, - ACTIONS(857), 1, - sym__block_quote_continuation, - STATE(261), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(853), 5, + sym__footnote_end, + [8352] = 2, + ACTIONS(866), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(855), 27, - sym__block_close, + ACTIONS(868), 30, + sym__newline, + sym__heading_begin, sym__div_begin, sym__code_block_begin, sym_list_marker_dash, @@ -19423,1508 +19971,2139 @@ static const uint16_t ts_small_parse_table[] = { sym_list_marker_lower_roman_parens, sym_list_marker_upper_roman_parens, sym__block_quote_begin, + sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_begin, - [8394] = 11, - ACTIONS(862), 1, - anon_sym_RBRACE, - ACTIONS(864), 1, - anon_sym_DOT, - ACTIONS(866), 1, - sym_identifier, - ACTIONS(868), 1, - sym__whitespace1, - ACTIONS(870), 1, - sym__id, - ACTIONS(872), 1, - anon_sym_PERCENT, - STATE(288), 1, - aux_sym_block_attribute_repeat1, - STATE(945), 1, - sym_key, - ACTIONS(874), 2, - sym__eof_or_newline, - sym__newline_inline, - STATE(457), 3, - sym_class, - sym_key_value, - sym__comment_no_newline, - ACTIONS(860), 5, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACE, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - [8435] = 11, - ACTIONS(864), 1, - anon_sym_DOT, - ACTIONS(866), 1, - sym_identifier, - ACTIONS(868), 1, - sym__whitespace1, - ACTIONS(870), 1, - sym__id, - ACTIONS(872), 1, - anon_sym_PERCENT, - ACTIONS(876), 1, - anon_sym_RBRACE, - STATE(292), 1, - aux_sym_block_attribute_repeat1, - STATE(945), 1, - sym_key, - ACTIONS(874), 2, - sym__eof_or_newline, - sym__newline_inline, - STATE(457), 3, - sym_class, - sym_key_value, - sym__comment_no_newline, - ACTIONS(860), 5, + sym__footnote_end, + [8392] = 2, + ACTIONS(870), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [8476] = 11, - ACTIONS(864), 1, - anon_sym_DOT, - ACTIONS(866), 1, - sym_identifier, - ACTIONS(868), 1, - sym__whitespace1, - ACTIONS(870), 1, - sym__id, - ACTIONS(872), 1, - anon_sym_PERCENT, + ACTIONS(872), 29, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + [8431] = 4, ACTIONS(878), 1, - anon_sym_RBRACE, - STATE(282), 1, - aux_sym_block_attribute_repeat1, - STATE(945), 1, - sym_key, - ACTIONS(874), 2, - sym__eof_or_newline, - sym__newline_inline, - STATE(457), 3, - sym_class, - sym_key_value, - sym__comment_no_newline, - ACTIONS(860), 5, + sym__block_quote_continuation, + STATE(267), 1, + aux_sym__block_quote_prefix_repeat1, + ACTIONS(874), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [8517] = 11, - ACTIONS(864), 1, - anon_sym_DOT, - ACTIONS(866), 1, - sym_identifier, - ACTIONS(868), 1, - sym__whitespace1, - ACTIONS(870), 1, - sym__id, - ACTIONS(872), 1, - anon_sym_PERCENT, - ACTIONS(880), 1, - anon_sym_RBRACE, - STATE(285), 1, - aux_sym_block_attribute_repeat1, - STATE(945), 1, - sym_key, - ACTIONS(874), 2, - sym__eof_or_newline, + ACTIONS(876), 27, + sym__block_close, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + [8474] = 2, + ACTIONS(455), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + ACTIONS(457), 28, + sym__block_close, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__footnote_begin, + [8512] = 11, + ACTIONS(883), 1, + anon_sym_RBRACE, + ACTIONS(885), 1, + anon_sym_DOT, + ACTIONS(887), 1, + sym_identifier, + ACTIONS(889), 1, + sym__whitespace1, + ACTIONS(891), 1, + sym__id, + ACTIONS(893), 1, + anon_sym_PERCENT, + STATE(314), 1, + aux_sym_block_attribute_repeat1, + STATE(945), 1, + sym_key, + ACTIONS(895), 2, + sym__eof_or_newline, sym__newline_inline, - STATE(457), 3, + STATE(468), 3, sym_class, sym_key_value, sym__comment_no_newline, - ACTIONS(860), 5, + ACTIONS(881), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [8558] = 11, - ACTIONS(864), 1, + [8553] = 11, + ACTIONS(885), 1, anon_sym_DOT, - ACTIONS(866), 1, + ACTIONS(887), 1, sym_identifier, - ACTIONS(868), 1, + ACTIONS(889), 1, sym__whitespace1, - ACTIONS(870), 1, + ACTIONS(891), 1, sym__id, - ACTIONS(872), 1, + ACTIONS(893), 1, anon_sym_PERCENT, - ACTIONS(882), 1, + ACTIONS(897), 1, anon_sym_RBRACE, - STATE(281), 1, + STATE(312), 1, aux_sym_block_attribute_repeat1, STATE(945), 1, sym_key, - ACTIONS(874), 2, + ACTIONS(895), 2, sym__eof_or_newline, sym__newline_inline, - STATE(457), 3, + STATE(468), 3, sym_class, sym_key_value, sym__comment_no_newline, - ACTIONS(860), 5, + ACTIONS(881), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [8599] = 10, - ACTIONS(477), 1, - sym__block_quote_continuation, - ACTIONS(884), 1, - anon_sym_PIPE, - ACTIONS(886), 1, - sym__newline, - ACTIONS(888), 1, - sym__table_caption_begin, - STATE(327), 1, - sym_table_row, - STATE(604), 1, - sym_table_caption, - STATE(664), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(998), 1, - sym__block_quote_prefix, - ACTIONS(475), 2, - sym__list_item_continuation, - sym__list_item_end, - STATE(268), 3, - sym__table_content, - sym_table_separator, - aux_sym_table_repeat1, - [8633] = 7, - ACTIONS(500), 1, - sym__block_quote_continuation, - ACTIONS(890), 1, + [8594] = 11, + ACTIONS(885), 1, + anon_sym_DOT, + ACTIONS(887), 1, + sym_identifier, + ACTIONS(889), 1, + sym__whitespace1, + ACTIONS(891), 1, + sym__id, + ACTIONS(893), 1, + anon_sym_PERCENT, + ACTIONS(899), 1, + anon_sym_RBRACE, + STATE(313), 1, + aux_sym_block_attribute_repeat1, + STATE(945), 1, + sym_key, + ACTIONS(895), 2, + sym__eof_or_newline, + sym__newline_inline, + STATE(468), 3, + sym_class, + sym_key_value, + sym__comment_no_newline, + ACTIONS(881), 5, + anon_sym_LBRACK, anon_sym_PIPE, - STATE(327), 1, - sym_table_row, - STATE(664), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(998), 1, - sym__block_quote_prefix, - STATE(268), 3, - sym__table_content, - sym_table_separator, - aux_sym_table_repeat1, - ACTIONS(493), 4, - sym__newline, - sym__list_item_continuation, - sym__list_item_end, - sym__table_caption_begin, - [8660] = 7, - ACTIONS(895), 1, - anon_sym_NULL, - ACTIONS(897), 1, - sym__table_caption_end, - STATE(271), 1, - aux_sym_table_caption_repeat1, - STATE(387), 1, - sym__inline_line, - STATE(1026), 1, - sym__inline, - STATE(334), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(893), 5, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [8635] = 11, + ACTIONS(885), 1, + anon_sym_DOT, + ACTIONS(887), 1, + sym_identifier, + ACTIONS(889), 1, + sym__whitespace1, + ACTIONS(891), 1, + sym__id, + ACTIONS(893), 1, + anon_sym_PERCENT, + ACTIONS(901), 1, + anon_sym_RBRACE, + STATE(321), 1, + aux_sym_block_attribute_repeat1, + STATE(945), 1, + sym_key, + ACTIONS(895), 2, + sym__eof_or_newline, + sym__newline_inline, + STATE(468), 3, + sym_class, + sym_key_value, + sym__comment_no_newline, + ACTIONS(881), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [8687] = 6, - ACTIONS(902), 1, - sym_table_cell_alignment, - STATE(755), 1, - sym_table_cell, - STATE(904), 1, - sym__inline, - ACTIONS(874), 2, + [8676] = 11, + ACTIONS(885), 1, + anon_sym_DOT, + ACTIONS(887), 1, + sym_identifier, + ACTIONS(889), 1, + sym__whitespace1, + ACTIONS(891), 1, + sym__id, + ACTIONS(893), 1, + anon_sym_PERCENT, + ACTIONS(903), 1, + anon_sym_RBRACE, + STATE(325), 1, + aux_sym_block_attribute_repeat1, + STATE(945), 1, + sym_key, + ACTIONS(895), 2, sym__eof_or_newline, sym__newline_inline, - STATE(376), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(899), 5, + STATE(468), 3, + sym_class, + sym_key_value, + sym__comment_no_newline, + ACTIONS(881), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [8712] = 7, + [8717] = 10, + ACTIONS(29), 1, + sym__list_marker_task_begin, + ACTIONS(905), 1, + anon_sym_PIPE, ACTIONS(907), 1, - anon_sym_NULL, + sym__block_close, ACTIONS(909), 1, - sym__table_caption_end, - STATE(271), 1, - aux_sym_table_caption_repeat1, - STATE(387), 1, - sym__inline_line, - STATE(1026), 1, + sym_list_marker_dash, + ACTIONS(911), 1, + sym_list_marker_star, + ACTIONS(913), 1, + sym_list_marker_plus, + STATE(43), 1, + sym_list_marker_task, + STATE(679), 1, sym__inline, - STATE(334), 2, + STATE(366), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(904), 5, + ACTIONS(11), 4, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [8739] = 6, + [8752] = 10, + ACTIONS(29), 1, + sym__list_marker_task_begin, + ACTIONS(905), 1, + anon_sym_PIPE, + ACTIONS(909), 1, + sym_list_marker_dash, ACTIONS(911), 1, - sym_table_cell_alignment, - STATE(687), 1, - sym_table_cell, - STATE(904), 1, + sym_list_marker_star, + ACTIONS(913), 1, + sym_list_marker_plus, + ACTIONS(915), 1, + sym__block_close, + STATE(43), 1, + sym_list_marker_task, + STATE(679), 1, sym__inline, - ACTIONS(874), 2, - sym__eof_or_newline, - sym__newline_inline, - STATE(376), 2, + STATE(366), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(899), 5, + ACTIONS(11), 4, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [8764] = 6, + [8787] = 10, + ACTIONS(29), 1, + sym__list_marker_task_begin, + ACTIONS(905), 1, + anon_sym_PIPE, + ACTIONS(909), 1, + sym_list_marker_dash, + ACTIONS(911), 1, + sym_list_marker_star, ACTIONS(913), 1, - sym_table_cell_alignment, - STATE(714), 1, - sym_table_cell, - STATE(904), 1, + sym_list_marker_plus, + ACTIONS(917), 1, + sym__block_close, + STATE(43), 1, + sym_list_marker_task, + STATE(679), 1, sym__inline, - ACTIONS(874), 2, - sym__eof_or_newline, - sym__newline_inline, - STATE(376), 2, + STATE(366), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(899), 5, + ACTIONS(11), 4, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [8789] = 10, - ACTIONS(475), 1, - sym__block_close, - ACTIONS(477), 1, - sym__block_quote_continuation, - ACTIONS(915), 1, + [8822] = 10, + ACTIONS(29), 1, + sym__list_marker_task_begin, + ACTIONS(905), 1, anon_sym_PIPE, - ACTIONS(917), 1, - sym__newline, + ACTIONS(909), 1, + sym_list_marker_dash, + ACTIONS(911), 1, + sym_list_marker_star, + ACTIONS(913), 1, + sym_list_marker_plus, ACTIONS(919), 1, - sym__table_caption_begin, - STATE(344), 1, - sym_table_row, - STATE(664), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(809), 1, - sym_table_caption, - STATE(1005), 1, - sym__block_quote_prefix, - STATE(289), 3, - sym__table_content, - sym_table_separator, - aux_sym_table_repeat1, - [8822] = 7, - ACTIONS(921), 1, - anon_sym_NULL, - ACTIONS(923), 1, - sym__table_caption_end, - STATE(271), 1, - aux_sym_table_caption_repeat1, - STATE(387), 1, - sym__inline_line, - STATE(1026), 1, + sym__block_close, + STATE(43), 1, + sym_list_marker_task, + STATE(679), 1, sym__inline, - STATE(334), 2, + STATE(366), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(893), 5, + ACTIONS(11), 4, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [8849] = 7, - ACTIONS(925), 1, - anon_sym_NULL, - ACTIONS(927), 1, - sym__table_caption_end, - STATE(271), 1, - aux_sym_table_caption_repeat1, - STATE(387), 1, - sym__inline_line, - STATE(1026), 1, + [8857] = 10, + ACTIONS(29), 1, + sym__list_marker_task_begin, + ACTIONS(905), 1, + anon_sym_PIPE, + ACTIONS(909), 1, + sym_list_marker_dash, + ACTIONS(911), 1, + sym_list_marker_star, + ACTIONS(913), 1, + sym_list_marker_plus, + ACTIONS(921), 1, + sym__block_close, + STATE(43), 1, + sym_list_marker_task, + STATE(679), 1, sym__inline, - STATE(334), 2, + STATE(366), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(893), 5, + ACTIONS(11), 4, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [8876] = 7, - ACTIONS(929), 1, - anon_sym_NULL, + [8892] = 10, + ACTIONS(29), 1, + sym__list_marker_task_begin, + ACTIONS(905), 1, + anon_sym_PIPE, + ACTIONS(909), 1, + sym_list_marker_dash, + ACTIONS(911), 1, + sym_list_marker_star, + ACTIONS(913), 1, + sym_list_marker_plus, + ACTIONS(923), 1, + sym__block_close, + STATE(43), 1, + sym_list_marker_task, + STATE(679), 1, + sym__inline, + STATE(366), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(11), 4, + anon_sym_LBRACK, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [8927] = 10, + ACTIONS(29), 1, + sym__list_marker_task_begin, + ACTIONS(905), 1, + anon_sym_PIPE, + ACTIONS(909), 1, + sym_list_marker_dash, + ACTIONS(911), 1, + sym_list_marker_star, + ACTIONS(913), 1, + sym_list_marker_plus, + ACTIONS(925), 1, + sym__block_close, + STATE(43), 1, + sym_list_marker_task, + STATE(679), 1, + sym__inline, + STATE(366), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(11), 4, + anon_sym_LBRACK, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [8962] = 10, + ACTIONS(29), 1, + sym__list_marker_task_begin, + ACTIONS(905), 1, + anon_sym_PIPE, + ACTIONS(909), 1, + sym_list_marker_dash, + ACTIONS(911), 1, + sym_list_marker_star, + ACTIONS(913), 1, + sym_list_marker_plus, + ACTIONS(927), 1, + sym__block_close, + STATE(43), 1, + sym_list_marker_task, + STATE(679), 1, + sym__inline, + STATE(366), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(11), 4, + anon_sym_LBRACK, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [8997] = 10, + ACTIONS(29), 1, + sym__list_marker_task_begin, + ACTIONS(905), 1, + anon_sym_PIPE, + ACTIONS(909), 1, + sym_list_marker_dash, + ACTIONS(911), 1, + sym_list_marker_star, + ACTIONS(913), 1, + sym_list_marker_plus, + ACTIONS(929), 1, + sym__block_close, + STATE(43), 1, + sym_list_marker_task, + STATE(679), 1, + sym__inline, + STATE(366), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(11), 4, + anon_sym_LBRACK, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [9032] = 10, + ACTIONS(29), 1, + sym__list_marker_task_begin, + ACTIONS(905), 1, + anon_sym_PIPE, + ACTIONS(909), 1, + sym_list_marker_dash, + ACTIONS(911), 1, + sym_list_marker_star, + ACTIONS(913), 1, + sym_list_marker_plus, ACTIONS(931), 1, + sym__block_close, + STATE(43), 1, + sym_list_marker_task, + STATE(679), 1, + sym__inline, + STATE(366), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(11), 4, + anon_sym_LBRACK, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [9067] = 9, + ACTIONS(29), 1, + sym__list_marker_task_begin, + ACTIONS(909), 1, + sym_list_marker_dash, + ACTIONS(911), 1, + sym_list_marker_star, + ACTIONS(913), 1, + sym_list_marker_plus, + ACTIONS(933), 1, + anon_sym_PIPE, + STATE(43), 1, + sym_list_marker_task, + STATE(679), 1, + sym__inline, + STATE(366), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(11), 4, + anon_sym_LBRACK, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [9099] = 9, + ACTIONS(29), 1, + sym__list_marker_task_begin, + ACTIONS(909), 1, + sym_list_marker_dash, + ACTIONS(911), 1, + sym_list_marker_star, + ACTIONS(913), 1, + sym_list_marker_plus, + ACTIONS(935), 1, + anon_sym_PIPE, + STATE(43), 1, + sym_list_marker_task, + STATE(679), 1, + sym__inline, + STATE(366), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(11), 4, + anon_sym_LBRACK, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [9131] = 9, + ACTIONS(29), 1, + sym__list_marker_task_begin, + ACTIONS(905), 1, + anon_sym_PIPE, + ACTIONS(909), 1, + sym_list_marker_dash, + ACTIONS(911), 1, + sym_list_marker_star, + ACTIONS(913), 1, + sym_list_marker_plus, + STATE(43), 1, + sym_list_marker_task, + STATE(679), 1, + sym__inline, + STATE(366), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(11), 4, + anon_sym_LBRACK, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [9163] = 9, + ACTIONS(29), 1, + sym__list_marker_task_begin, + ACTIONS(909), 1, + sym_list_marker_dash, + ACTIONS(911), 1, + sym_list_marker_star, + ACTIONS(913), 1, + sym_list_marker_plus, + ACTIONS(937), 1, + anon_sym_PIPE, + STATE(43), 1, + sym_list_marker_task, + STATE(679), 1, + sym__inline, + STATE(366), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(11), 4, + anon_sym_LBRACK, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [9195] = 9, + ACTIONS(29), 1, + sym__list_marker_task_begin, + ACTIONS(909), 1, + sym_list_marker_dash, + ACTIONS(911), 1, + sym_list_marker_star, + ACTIONS(913), 1, + sym_list_marker_plus, + ACTIONS(939), 1, + anon_sym_PIPE, + STATE(43), 1, + sym_list_marker_task, + STATE(679), 1, + sym__inline, + STATE(366), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(11), 4, + anon_sym_LBRACK, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [9227] = 10, + ACTIONS(494), 1, + sym__block_quote_continuation, + ACTIONS(941), 1, + anon_sym_PIPE, + ACTIONS(943), 1, + sym__newline, + ACTIONS(945), 1, + sym__table_caption_begin, + STATE(363), 1, + sym_table_row, + STATE(628), 1, + sym_table_caption, + STATE(702), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(1029), 1, + sym__block_quote_prefix, + ACTIONS(486), 2, + sym__list_item_continuation, + sym__list_item_end, + STATE(300), 3, + sym__table_content, + sym_table_separator, + aux_sym_table_repeat1, + [9261] = 7, + ACTIONS(949), 1, + anon_sym_NULL, + ACTIONS(951), 1, + sym__table_caption_end, + STATE(296), 1, + aux_sym_table_caption_repeat1, + STATE(414), 1, + sym__inline_line, + STATE(1062), 1, + sym__inline, + STATE(388), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(947), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [9288] = 10, + ACTIONS(486), 1, + sym__block_close, + ACTIONS(494), 1, + sym__block_quote_continuation, + ACTIONS(953), 1, + anon_sym_PIPE, + ACTIONS(955), 1, + sym__newline, + ACTIONS(957), 1, + sym__table_caption_begin, + STATE(376), 1, + sym_table_row, + STATE(702), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(865), 1, + sym_table_caption, + STATE(1036), 1, + sym__block_quote_prefix, + STATE(315), 3, + sym__table_content, + sym_table_separator, + aux_sym_table_repeat1, + [9321] = 4, + ACTIONS(959), 1, + sym__block_quote_continuation, + STATE(292), 1, + aux_sym__block_quote_prefix_repeat1, + ACTIONS(874), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + ACTIONS(876), 5, + sym__block_close, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + [9342] = 7, + ACTIONS(962), 1, + anon_sym_NULL, + ACTIONS(964), 1, + sym__table_caption_end, + STATE(296), 1, + aux_sym_table_caption_repeat1, + STATE(414), 1, + sym__inline_line, + STATE(1062), 1, + sym__inline, + STATE(388), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(947), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [9369] = 6, + ACTIONS(969), 1, + sym_table_cell_alignment, + STATE(805), 1, + sym_table_cell, + STATE(938), 1, + sym__inline, + ACTIONS(895), 2, + sym__eof_or_newline, + sym__newline_inline, + STATE(410), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(966), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [9394] = 7, + ACTIONS(971), 1, + anon_sym_NULL, + ACTIONS(973), 1, + sym__table_caption_end, + STATE(296), 1, + aux_sym_table_caption_repeat1, + STATE(414), 1, + sym__inline_line, + STATE(1062), 1, + sym__inline, + STATE(388), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(947), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [9421] = 7, + ACTIONS(978), 1, + anon_sym_NULL, + ACTIONS(980), 1, sym__table_caption_end, - STATE(271), 1, + STATE(296), 1, aux_sym_table_caption_repeat1, - STATE(387), 1, + STATE(414), 1, sym__inline_line, - STATE(1026), 1, + STATE(1062), 1, sym__inline, - STATE(334), 2, + STATE(388), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(893), 5, + ACTIONS(975), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [8903] = 7, - ACTIONS(933), 1, + [9448] = 7, + ACTIONS(982), 1, + sym__block_quote_continuation, + STATE(369), 1, + sym__block_quote_prefix, + STATE(403), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(703), 1, + sym__inline, + STATE(810), 1, + sym__paragraph_content, + STATE(366), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(11), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [9475] = 6, + ACTIONS(984), 1, + sym_table_cell_alignment, + STATE(794), 1, + sym_table_cell, + STATE(938), 1, + sym__inline, + ACTIONS(895), 2, + sym__eof_or_newline, + sym__newline_inline, + STATE(410), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(966), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [9500] = 7, + ACTIONS(986), 1, anon_sym_NULL, - ACTIONS(935), 1, + ACTIONS(988), 1, sym__table_caption_end, - STATE(271), 1, + STATE(296), 1, aux_sym_table_caption_repeat1, - STATE(387), 1, + STATE(414), 1, sym__inline_line, - STATE(1026), 1, + STATE(1062), 1, + sym__inline, + STATE(388), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(947), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [9527] = 7, + ACTIONS(517), 1, + sym__block_quote_continuation, + ACTIONS(990), 1, + anon_sym_PIPE, + STATE(363), 1, + sym_table_row, + STATE(702), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(1029), 1, + sym__block_quote_prefix, + STATE(300), 3, + sym__table_content, + sym_table_separator, + aux_sym_table_repeat1, + ACTIONS(510), 4, + sym__newline, + sym__list_item_continuation, + sym__list_item_end, + sym__table_caption_begin, + [9554] = 6, + ACTIONS(993), 1, + sym_table_cell_alignment, + STATE(736), 1, + sym_table_cell, + STATE(938), 1, sym__inline, - STATE(334), 2, + ACTIONS(895), 2, + sym__eof_or_newline, + sym__newline_inline, + STATE(410), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(893), 5, + ACTIONS(966), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [8930] = 6, - ACTIONS(937), 1, + [9579] = 6, + ACTIONS(995), 1, sym_table_cell_alignment, - STATE(816), 1, + STATE(747), 1, sym_table_cell, - STATE(904), 1, + STATE(938), 1, sym__inline, - ACTIONS(874), 2, + ACTIONS(895), 2, sym__eof_or_newline, sym__newline_inline, - STATE(376), 2, + STATE(410), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(899), 5, + ACTIONS(966), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [8955] = 6, - ACTIONS(939), 1, + [9604] = 6, + ACTIONS(997), 1, sym_table_cell_alignment, - STATE(771), 1, + STATE(770), 1, sym_table_cell, - STATE(904), 1, + STATE(938), 1, sym__inline, - ACTIONS(874), 2, + ACTIONS(895), 2, sym__eof_or_newline, sym__newline_inline, - STATE(376), 2, + STATE(410), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(899), 5, + ACTIONS(966), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [8980] = 8, - ACTIONS(941), 1, + [9629] = 6, + ACTIONS(999), 1, + sym_table_cell_alignment, + STATE(827), 1, + sym_table_cell, + STATE(938), 1, + sym__inline, + ACTIONS(895), 2, + sym__eof_or_newline, + sym__newline_inline, + STATE(410), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(966), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [9654] = 6, + ACTIONS(1001), 1, + sym_table_cell_alignment, + STATE(822), 1, + sym_table_cell, + STATE(938), 1, + sym__inline, + ACTIONS(895), 2, + sym__eof_or_newline, + sym__newline_inline, + STATE(410), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(966), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [9679] = 7, + ACTIONS(1003), 1, + anon_sym_NULL, + ACTIONS(1005), 1, + sym__table_caption_end, + STATE(296), 1, + aux_sym_table_caption_repeat1, + STATE(414), 1, + sym__inline_line, + STATE(1062), 1, + sym__inline, + STATE(388), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(947), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [9706] = 4, + ACTIONS(1011), 1, + sym__block_quote_continuation, + STATE(292), 1, + aux_sym__block_quote_prefix_repeat1, + ACTIONS(1007), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + ACTIONS(1009), 5, + sym__block_close, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + [9727] = 6, + ACTIONS(1013), 1, + sym_table_cell_alignment, + STATE(788), 1, + sym_table_cell, + STATE(938), 1, + sym__inline, + ACTIONS(895), 2, + sym__eof_or_newline, + sym__newline_inline, + STATE(410), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(966), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [9752] = 6, + ACTIONS(1015), 1, + sym_table_cell_alignment, + STATE(778), 1, + sym_table_cell, + STATE(938), 1, + sym__inline, + ACTIONS(895), 2, + sym__eof_or_newline, + sym__newline_inline, + STATE(410), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(966), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [9777] = 6, + ACTIONS(1017), 1, + sym_table_cell_alignment, + STATE(851), 1, + sym_table_cell, + STATE(938), 1, + sym__inline, + ACTIONS(895), 2, + sym__eof_or_newline, + sym__newline_inline, + STATE(410), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(966), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [9802] = 5, + STATE(986), 1, + sym__inline, + STATE(989), 1, + sym_link_label, + ACTIONS(895), 2, + sym__eof_or_newline, + sym__newline_inline, + STATE(375), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(1019), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [9824] = 8, + ACTIONS(1022), 1, anon_sym_RBRACE, - ACTIONS(943), 1, + ACTIONS(1024), 1, anon_sym_DOT, - ACTIONS(945), 1, + ACTIONS(1026), 1, sym__id, - ACTIONS(947), 1, + ACTIONS(1028), 1, anon_sym_PERCENT, - STATE(283), 1, + STATE(317), 1, aux_sym_block_attribute_repeat1, STATE(945), 1, sym_key, - ACTIONS(868), 2, + ACTIONS(889), 2, sym_identifier, sym__whitespace1, - STATE(457), 3, + STATE(468), 3, sym_class, sym_key_value, sym__comment_no_newline, - [9008] = 8, - ACTIONS(943), 1, + [9852] = 8, + ACTIONS(1024), 1, anon_sym_DOT, - ACTIONS(945), 1, + ACTIONS(1026), 1, sym__id, - ACTIONS(947), 1, + ACTIONS(1028), 1, anon_sym_PERCENT, - ACTIONS(949), 1, + ACTIONS(1030), 1, anon_sym_RBRACE, - STATE(283), 1, + STATE(317), 1, aux_sym_block_attribute_repeat1, STATE(945), 1, sym_key, - ACTIONS(868), 2, + ACTIONS(889), 2, sym_identifier, sym__whitespace1, - STATE(457), 3, + STATE(468), 3, sym_class, sym_key_value, sym__comment_no_newline, - [9036] = 8, - ACTIONS(951), 1, - anon_sym_RBRACE, - ACTIONS(953), 1, + [9880] = 8, + ACTIONS(1024), 1, anon_sym_DOT, - ACTIONS(959), 1, + ACTIONS(1026), 1, sym__id, - ACTIONS(962), 1, + ACTIONS(1028), 1, anon_sym_PERCENT, - STATE(283), 1, + ACTIONS(1032), 1, + anon_sym_RBRACE, + STATE(317), 1, aux_sym_block_attribute_repeat1, STATE(945), 1, sym_key, - ACTIONS(956), 2, + ACTIONS(889), 2, sym_identifier, sym__whitespace1, - STATE(457), 3, + STATE(468), 3, sym_class, sym_key_value, sym__comment_no_newline, - [9064] = 5, - STATE(895), 1, - sym__inline, - STATE(1042), 1, - sym_link_label, - ACTIONS(874), 2, - sym__eof_or_newline, - sym__newline_inline, - STATE(336), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(965), 5, + [9908] = 7, + ACTIONS(517), 1, + sym__block_quote_continuation, + ACTIONS(1034), 1, + anon_sym_PIPE, + STATE(376), 1, + sym_table_row, + STATE(702), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(1036), 1, + sym__block_quote_prefix, + ACTIONS(510), 3, + sym__block_close, + sym__newline, + sym__table_caption_begin, + STATE(315), 3, + sym__table_content, + sym_table_separator, + aux_sym_table_repeat1, + [9934] = 2, + ACTIONS(455), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [9086] = 8, - ACTIONS(943), 1, + ACTIONS(457), 6, + sym__block_close, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym__block_quote_continuation, + [9950] = 8, + ACTIONS(1037), 1, + anon_sym_RBRACE, + ACTIONS(1039), 1, anon_sym_DOT, - ACTIONS(945), 1, + ACTIONS(1045), 1, sym__id, - ACTIONS(947), 1, + ACTIONS(1048), 1, anon_sym_PERCENT, - ACTIONS(968), 1, - anon_sym_RBRACE, - STATE(283), 1, + STATE(317), 1, aux_sym_block_attribute_repeat1, STATE(945), 1, sym_key, - ACTIONS(868), 2, + ACTIONS(1042), 2, sym_identifier, sym__whitespace1, - STATE(457), 3, + STATE(468), 3, sym_class, sym_key_value, sym__comment_no_newline, - [9114] = 5, - STATE(895), 1, + [9978] = 6, + ACTIONS(982), 1, + sym__block_quote_continuation, + STATE(377), 1, + sym__block_quote_prefix, + STATE(403), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(857), 1, sym__inline, - STATE(1043), 1, - sym_link_label, - ACTIONS(874), 2, - sym__eof_or_newline, - sym__newline_inline, - STATE(336), 2, + STATE(366), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(965), 5, + ACTIONS(11), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [10002] = 4, + ACTIONS(1051), 1, + sym__block_quote_continuation, + STATE(319), 1, + aux_sym__block_quote_prefix_repeat1, + ACTIONS(876), 4, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + ACTIONS(874), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [9136] = 5, - STATE(895), 1, + [10022] = 5, + STATE(986), 1, sym__inline, - STATE(1044), 1, + STATE(1073), 1, sym_link_label, - ACTIONS(874), 2, + ACTIONS(895), 2, sym__eof_or_newline, sym__newline_inline, - STATE(336), 2, + STATE(375), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(965), 5, + ACTIONS(1019), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [9158] = 8, - ACTIONS(943), 1, + [10044] = 8, + ACTIONS(1024), 1, anon_sym_DOT, - ACTIONS(945), 1, + ACTIONS(1026), 1, sym__id, - ACTIONS(947), 1, + ACTIONS(1028), 1, anon_sym_PERCENT, - ACTIONS(970), 1, + ACTIONS(1054), 1, anon_sym_RBRACE, - STATE(283), 1, + STATE(317), 1, aux_sym_block_attribute_repeat1, - STATE(945), 1, - sym_key, - ACTIONS(868), 2, - sym_identifier, - sym__whitespace1, - STATE(457), 3, - sym_class, - sym_key_value, - sym__comment_no_newline, - [9186] = 7, - ACTIONS(500), 1, - sym__block_quote_continuation, - ACTIONS(972), 1, - anon_sym_PIPE, - STATE(344), 1, - sym_table_row, - STATE(664), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(1005), 1, - sym__block_quote_prefix, - ACTIONS(493), 3, - sym__block_close, - sym__newline, - sym__table_caption_begin, - STATE(289), 3, - sym__table_content, - sym_table_separator, - aux_sym_table_repeat1, - [9212] = 5, - STATE(895), 1, + STATE(945), 1, + sym_key, + ACTIONS(889), 2, + sym_identifier, + sym__whitespace1, + STATE(468), 3, + sym_class, + sym_key_value, + sym__comment_no_newline, + [10072] = 5, + STATE(986), 1, sym__inline, - STATE(1045), 1, + STATE(1074), 1, sym_link_label, - ACTIONS(874), 2, + ACTIONS(895), 2, sym__eof_or_newline, sym__newline_inline, - STATE(336), 2, + STATE(375), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(965), 5, + ACTIONS(1019), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [9234] = 5, - STATE(891), 1, - sym_link_label, - STATE(895), 1, + [10094] = 4, + ACTIONS(65), 1, + sym__block_quote_continuation, + STATE(319), 1, + aux_sym__block_quote_prefix_repeat1, + ACTIONS(1009), 4, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + ACTIONS(1007), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [10114] = 5, + STATE(986), 1, sym__inline, - ACTIONS(874), 2, + STATE(1075), 1, + sym_link_label, + ACTIONS(895), 2, sym__eof_or_newline, sym__newline_inline, - STATE(336), 2, + STATE(375), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(965), 5, + ACTIONS(1019), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [9256] = 8, - ACTIONS(943), 1, + [10136] = 8, + ACTIONS(1024), 1, anon_sym_DOT, - ACTIONS(945), 1, + ACTIONS(1026), 1, sym__id, - ACTIONS(947), 1, + ACTIONS(1028), 1, anon_sym_PERCENT, - ACTIONS(975), 1, + ACTIONS(1056), 1, anon_sym_RBRACE, - STATE(283), 1, + STATE(317), 1, aux_sym_block_attribute_repeat1, STATE(945), 1, sym_key, - ACTIONS(868), 2, + ACTIONS(889), 2, sym_identifier, sym__whitespace1, - STATE(457), 3, + STATE(468), 3, sym_class, sym_key_value, sym__comment_no_newline, - [9284] = 5, - STATE(625), 1, - sym__inline_line, - STATE(961), 1, + [10164] = 5, + STATE(986), 1, sym__inline, - STATE(1047), 1, - sym__heading_content, - STATE(334), 2, + STATE(1076), 1, + sym_link_label, + ACTIONS(895), 2, + sym__eof_or_newline, + sym__newline_inline, + STATE(375), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(893), 5, + ACTIONS(1019), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [9305] = 5, - ACTIONS(913), 1, - sym_table_cell_alignment, - STATE(714), 1, + [10186] = 5, + ACTIONS(1060), 1, + sym__newline, + STATE(922), 1, sym_table_cell, - STATE(904), 1, + STATE(938), 1, sym__inline, - STATE(376), 2, + STATE(410), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(977), 5, + ACTIONS(1058), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [9326] = 5, - ACTIONS(979), 1, + [10207] = 5, + ACTIONS(1062), 1, sym__newline, - STATE(904), 1, - sym__inline, - STATE(910), 1, + STATE(922), 1, sym_table_cell, - STATE(376), 2, + STATE(938), 1, + sym__inline, + STATE(410), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(977), 5, + ACTIONS(1058), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [9347] = 5, - ACTIONS(939), 1, - sym_table_cell_alignment, - STATE(771), 1, + [10228] = 5, + ACTIONS(1064), 1, + sym__newline, + STATE(922), 1, sym_table_cell, - STATE(904), 1, + STATE(938), 1, sym__inline, - STATE(376), 2, + STATE(410), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(977), 5, + ACTIONS(1058), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [9368] = 5, - STATE(275), 1, + [10249] = 5, + STATE(299), 1, aux_sym_table_caption_repeat1, - STATE(387), 1, + STATE(414), 1, sym__inline_line, - STATE(1026), 1, + STATE(1062), 1, sym__inline, - STATE(334), 2, + STATE(388), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(893), 5, + ACTIONS(947), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [9389] = 5, - STATE(625), 1, - sym__inline_line, - STATE(933), 1, - sym__heading_content, - STATE(961), 1, + [10270] = 5, + ACTIONS(1017), 1, + sym_table_cell_alignment, + STATE(851), 1, + sym_table_cell, + STATE(938), 1, sym__inline, - STATE(334), 2, + STATE(410), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(893), 5, + ACTIONS(1058), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [9410] = 5, - ACTIONS(981), 1, + [10291] = 5, + ACTIONS(1066), 1, sym__newline, - STATE(904), 1, - sym__inline, - STATE(910), 1, + STATE(922), 1, sym_table_cell, - STATE(376), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(977), 5, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACE, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - [9431] = 5, - ACTIONS(937), 1, - sym_table_cell_alignment, - STATE(816), 1, - sym_table_cell, - STATE(904), 1, + STATE(938), 1, sym__inline, - STATE(376), 2, + STATE(410), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(977), 5, + ACTIONS(1058), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [9452] = 5, - STATE(269), 1, + [10312] = 5, + STATE(293), 1, aux_sym_table_caption_repeat1, - STATE(387), 1, + STATE(414), 1, sym__inline_line, - STATE(1026), 1, + STATE(1062), 1, sym__inline, - STATE(334), 2, + STATE(388), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(893), 5, + ACTIONS(947), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [9473] = 5, - ACTIONS(911), 1, + [10333] = 5, + ACTIONS(999), 1, sym_table_cell_alignment, - STATE(687), 1, + STATE(827), 1, sym_table_cell, - STATE(904), 1, + STATE(938), 1, sym__inline, - STATE(376), 2, + STATE(410), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(977), 5, + ACTIONS(1058), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [9494] = 5, - ACTIONS(983), 1, + [10354] = 5, + ACTIONS(1068), 1, sym__newline, - STATE(904), 1, - sym__inline, - STATE(910), 1, + STATE(922), 1, sym_table_cell, - STATE(376), 2, + STATE(938), 1, + sym__inline, + STATE(410), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(977), 5, + ACTIONS(1058), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [9515] = 5, - STATE(277), 1, - aux_sym_table_caption_repeat1, - STATE(387), 1, - sym__inline_line, - STATE(1026), 1, + [10375] = 5, + ACTIONS(1070), 1, + sym__newline, + STATE(922), 1, + sym_table_cell, + STATE(938), 1, sym__inline, - STATE(334), 2, + STATE(410), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(893), 5, + ACTIONS(1058), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [9536] = 5, - ACTIONS(985), 1, - sym__newline, - STATE(904), 1, - sym__inline, - STATE(910), 1, + [10396] = 5, + ACTIONS(1001), 1, + sym_table_cell_alignment, + STATE(822), 1, sym_table_cell, - STATE(376), 2, + STATE(938), 1, + sym__inline, + STATE(410), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(977), 5, + ACTIONS(1058), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [9557] = 5, - ACTIONS(987), 1, - sym_table_cell_alignment, - STATE(752), 1, - sym_table_cell, - STATE(904), 1, + [10417] = 5, + STATE(697), 1, + sym__inline_line, + STATE(952), 1, + sym__heading_content, + STATE(1007), 1, sym__inline, - STATE(376), 2, + STATE(388), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(977), 5, + ACTIONS(947), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [9578] = 5, - ACTIONS(989), 1, - sym_table_cell_alignment, - STATE(704), 1, + [10438] = 5, + ACTIONS(1072), 1, + sym__newline, + STATE(922), 1, sym_table_cell, - STATE(904), 1, + STATE(938), 1, sym__inline, - STATE(376), 2, + STATE(410), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(977), 5, + ACTIONS(1058), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [9599] = 5, - ACTIONS(991), 1, + [10459] = 5, + ACTIONS(1074), 1, sym__newline, - STATE(904), 1, - sym__inline, - STATE(910), 1, + STATE(922), 1, sym_table_cell, - STATE(376), 2, + STATE(938), 1, + sym__inline, + STATE(410), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(977), 5, + ACTIONS(1058), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [9620] = 5, - ACTIONS(993), 1, - sym__newline, - STATE(904), 1, - sym__inline, - STATE(910), 1, - sym_table_cell, - STATE(376), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(977), 5, + [10480] = 2, + ACTIONS(455), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [9641] = 5, - ACTIONS(995), 1, - sym__newline, - STATE(904), 1, + ACTIONS(457), 5, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym__block_quote_continuation, + [10495] = 5, + STATE(290), 1, + aux_sym_table_caption_repeat1, + STATE(414), 1, + sym__inline_line, + STATE(1062), 1, sym__inline, - STATE(910), 1, - sym_table_cell, - STATE(376), 2, + STATE(388), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(977), 5, + ACTIONS(947), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [9662] = 5, - ACTIONS(997), 1, - sym__newline, - STATE(904), 1, - sym__inline, - STATE(910), 1, + [10516] = 5, + ACTIONS(984), 1, + sym_table_cell_alignment, + STATE(794), 1, sym_table_cell, - STATE(376), 2, + STATE(938), 1, + sym__inline, + STATE(410), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(977), 5, + ACTIONS(1058), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [9683] = 5, - ACTIONS(999), 1, + [10537] = 5, + ACTIONS(1076), 1, sym__newline, - STATE(904), 1, - sym__inline, - STATE(910), 1, + STATE(922), 1, sym_table_cell, - STATE(376), 2, + STATE(938), 1, + sym__inline, + STATE(410), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(977), 5, + ACTIONS(1058), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [9704] = 5, - ACTIONS(1001), 1, + [10558] = 5, + ACTIONS(1078), 1, sym__newline, - STATE(904), 1, - sym__inline, - STATE(910), 1, + STATE(922), 1, sym_table_cell, - STATE(376), 2, + STATE(938), 1, + sym__inline, + STATE(410), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(977), 5, + ACTIONS(1058), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [9725] = 5, - ACTIONS(1003), 1, - sym_table_cell_alignment, - STATE(742), 1, + [10579] = 5, + ACTIONS(1080), 1, + sym__newline, + STATE(922), 1, sym_table_cell, - STATE(904), 1, + STATE(938), 1, sym__inline, - STATE(376), 2, + STATE(410), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(977), 5, + ACTIONS(1058), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [9746] = 5, - ACTIONS(1005), 1, + [10600] = 5, + ACTIONS(1082), 1, sym__newline, - STATE(904), 1, - sym__inline, - STATE(910), 1, + STATE(922), 1, sym_table_cell, - STATE(376), 2, + STATE(938), 1, + sym__inline, + STATE(410), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(977), 5, + ACTIONS(1058), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [9767] = 5, - ACTIONS(1007), 1, + [10621] = 5, + ACTIONS(1013), 1, sym_table_cell_alignment, - STATE(764), 1, + STATE(788), 1, sym_table_cell, - STATE(904), 1, + STATE(938), 1, sym__inline, - STATE(376), 2, + STATE(410), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(977), 5, + ACTIONS(1058), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [9788] = 5, - STATE(625), 1, + [10642] = 5, + STATE(697), 1, sym__inline_line, - STATE(961), 1, - sym__inline, - STATE(971), 1, + STATE(956), 1, sym__heading_content, - STATE(334), 2, + STATE(1007), 1, + sym__inline, + STATE(388), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(893), 5, + ACTIONS(947), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [9809] = 5, - ACTIONS(1009), 1, - sym__newline, - STATE(904), 1, + [10663] = 5, + STATE(697), 1, + sym__inline_line, + STATE(1007), 1, sym__inline, - STATE(910), 1, - sym_table_cell, - STATE(376), 2, + STATE(1065), 1, + sym__heading_content, + STATE(388), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(977), 5, + ACTIONS(947), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [9830] = 5, - ACTIONS(1011), 1, - sym__newline, - STATE(904), 1, + [10684] = 5, + STATE(306), 1, + aux_sym_table_caption_repeat1, + STATE(414), 1, + sym__inline_line, + STATE(1062), 1, sym__inline, - STATE(910), 1, - sym_table_cell, - STATE(376), 2, + STATE(388), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(977), 5, + ACTIONS(947), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [9851] = 5, - ACTIONS(1013), 1, - sym_table_cell_alignment, - STATE(804), 1, + [10705] = 5, + ACTIONS(1084), 1, + sym__newline, + STATE(922), 1, sym_table_cell, - STATE(904), 1, + STATE(938), 1, sym__inline, - STATE(376), 2, + STATE(410), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(977), 5, + ACTIONS(1058), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [9872] = 5, - STATE(276), 1, - aux_sym_table_caption_repeat1, - STATE(387), 1, - sym__inline_line, - STATE(1026), 1, + [10726] = 5, + ACTIONS(993), 1, + sym_table_cell_alignment, + STATE(736), 1, + sym_table_cell, + STATE(938), 1, sym__inline, - STATE(334), 2, + STATE(410), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(893), 5, + ACTIONS(1058), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [9893] = 5, - ACTIONS(902), 1, - sym_table_cell_alignment, - STATE(755), 1, + [10747] = 5, + ACTIONS(1086), 1, + sym__newline, + STATE(922), 1, sym_table_cell, - STATE(904), 1, + STATE(938), 1, sym__inline, - STATE(376), 2, + STATE(410), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(977), 5, + ACTIONS(1058), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [9914] = 5, - ACTIONS(1015), 1, - sym__newline, - STATE(904), 1, + [10768] = 5, + STATE(295), 1, + aux_sym_table_caption_repeat1, + STATE(414), 1, + sym__inline_line, + STATE(1062), 1, sym__inline, - STATE(910), 1, - sym_table_cell, - STATE(376), 2, + STATE(388), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(977), 5, + ACTIONS(947), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [9935] = 5, - STATE(278), 1, - aux_sym_table_caption_repeat1, - STATE(387), 1, - sym__inline_line, - STATE(1026), 1, + [10789] = 5, + ACTIONS(1088), 1, + sym__newline, + STATE(922), 1, + sym_table_cell, + STATE(938), 1, sym__inline, - STATE(334), 2, + STATE(410), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(893), 5, + ACTIONS(1058), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [9956] = 5, - STATE(625), 1, - sym__inline_line, - STATE(961), 1, + [10810] = 5, + ACTIONS(1015), 1, + sym_table_cell_alignment, + STATE(778), 1, + sym_table_cell, + STATE(938), 1, sym__inline, - STATE(962), 1, - sym__heading_content, - STATE(334), 2, + STATE(410), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(893), 5, + ACTIONS(1058), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [9977] = 5, - ACTIONS(1017), 1, - sym__newline, - STATE(904), 1, + [10831] = 5, + STATE(697), 1, + sym__inline_line, + STATE(1007), 1, sym__inline, - STATE(910), 1, - sym_table_cell, - STATE(376), 2, + STATE(1066), 1, + sym__heading_content, + STATE(388), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(977), 5, + ACTIONS(947), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [9998] = 6, - ACTIONS(516), 1, - sym__block_quote_continuation, - ACTIONS(1019), 1, - anon_sym_PIPE, - STATE(415), 1, - sym_table_separator, - STATE(664), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(1024), 1, - sym__block_quote_prefix, - ACTIONS(509), 4, - sym__newline, - sym__list_item_continuation, - sym__list_item_end, - sym__table_caption_begin, - [10020] = 4, - STATE(761), 1, - sym__inline_line, - STATE(961), 1, + [10852] = 5, + ACTIONS(995), 1, + sym_table_cell_alignment, + STATE(747), 1, + sym_table_cell, + STATE(938), 1, sym__inline, - STATE(334), 2, + STATE(410), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(893), 5, + ACTIONS(1058), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [10038] = 3, - ACTIONS(1024), 2, - sym__eof_or_newline, - sym__newline_inline, - STATE(331), 2, + [10873] = 5, + ACTIONS(969), 1, + sym_table_cell_alignment, + STATE(805), 1, + sym_table_cell, + STATE(938), 1, + sym__inline, + STATE(410), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1022), 5, + ACTIONS(1058), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [10054] = 4, - STATE(904), 1, - sym__inline, - STATE(910), 1, + [10894] = 5, + ACTIONS(997), 1, + sym_table_cell_alignment, + STATE(770), 1, sym_table_cell, - STATE(376), 2, + STATE(938), 1, + sym__inline, + STATE(410), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(977), 5, + ACTIONS(1058), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [10072] = 3, - ACTIONS(1029), 2, + [10915] = 3, + ACTIONS(1093), 2, sym__eof_or_newline, sym__newline_inline, - STATE(331), 2, + STATE(362), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1026), 5, + ACTIONS(1090), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [10088] = 4, - STATE(683), 1, + [10931] = 6, + ACTIONS(533), 1, + sym__block_quote_continuation, + ACTIONS(1095), 1, + anon_sym_PIPE, + STATE(474), 1, + sym_table_separator, + STATE(702), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(1055), 1, + sym__block_quote_prefix, + ACTIONS(526), 4, + sym__newline, + sym__list_item_continuation, + sym__list_item_end, + sym__table_caption_begin, + [10953] = 4, + STATE(879), 1, + sym__inline_line, + STATE(1007), 1, sym__inline, - STATE(758), 1, - sym__paragraph_content, - STATE(329), 2, + STATE(388), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(11), 5, + ACTIONS(947), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [10106] = 7, - ACTIONS(29), 1, - sym__list_marker_task_begin, - ACTIONS(1031), 1, - sym__block_close, - ACTIONS(1033), 1, - sym__block_quote_continuation, - STATE(37), 1, - sym_list_marker_task, - STATE(623), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(689), 1, - sym__block_quote_prefix, - STATE(358), 2, - sym__list_item_task, - aux_sym__list_task_repeat1, - [10129] = 3, - ACTIONS(1024), 1, - sym__eof_or_newline, - STATE(359), 2, + [10971] = 4, + STATE(922), 1, + sym_table_cell, + STATE(938), 1, + sym__inline, + STATE(410), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1035), 5, + ACTIONS(1058), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [10144] = 7, - ACTIONS(1037), 1, - aux_sym__line_token1, - ACTIONS(1039), 1, - sym__block_close, - ACTIONS(1041), 1, - sym__block_quote_continuation, - STATE(590), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(770), 1, - sym__block_quote_prefix, - STATE(872), 1, - sym_code, - STATE(365), 2, - sym__line, - aux_sym_code_repeat1, - [10167] = 3, - ACTIONS(1045), 1, - anon_sym_RBRACK, - STATE(351), 2, + [10989] = 3, + ACTIONS(1100), 2, + sym__eof_or_newline, + sym__newline_inline, + STATE(362), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1043), 5, + ACTIONS(1098), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [10182] = 7, - ACTIONS(1037), 1, + [11005] = 7, + ACTIONS(1102), 1, aux_sym__line_token1, - ACTIONS(1041), 1, - sym__block_quote_continuation, - ACTIONS(1047), 1, + ACTIONS(1104), 1, sym__block_close, - STATE(590), 1, + ACTIONS(1106), 1, + sym__block_quote_continuation, + STATE(665), 1, aux_sym__block_quote_prefix_repeat1, - STATE(770), 1, + STATE(885), 1, sym__block_quote_prefix, - STATE(871), 1, + STATE(1026), 1, sym_code, - STATE(365), 2, + STATE(408), 2, sym__line, aux_sym_code_repeat1, - [10205] = 7, - ACTIONS(1037), 1, + [11028] = 7, + ACTIONS(1102), 1, aux_sym__line_token1, - ACTIONS(1041), 1, + ACTIONS(1106), 1, sym__block_quote_continuation, - ACTIONS(1049), 1, + ACTIONS(1108), 1, sym__block_close, - STATE(590), 1, + STATE(665), 1, aux_sym__block_quote_prefix_repeat1, - STATE(770), 1, + STATE(885), 1, sym__block_quote_prefix, - STATE(992), 1, + STATE(977), 1, sym_code, - STATE(365), 2, + STATE(408), 2, sym__line, aux_sym_code_repeat1, - [10228] = 7, - ACTIONS(1037), 1, + [11051] = 3, + STATE(679), 1, + sym__inline, + STATE(366), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(11), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [11066] = 7, + ACTIONS(1102), 1, aux_sym__line_token1, - ACTIONS(1041), 1, + ACTIONS(1106), 1, sym__block_quote_continuation, - ACTIONS(1051), 1, + ACTIONS(1110), 1, sym__block_close, - STATE(590), 1, + STATE(665), 1, aux_sym__block_quote_prefix_repeat1, - STATE(770), 1, + STATE(885), 1, sym__block_quote_prefix, - STATE(942), 1, + STATE(899), 1, sym_code, - STATE(365), 2, + STATE(408), 2, sym__line, aux_sym_code_repeat1, - [10251] = 7, + [11089] = 7, ACTIONS(29), 1, sym__list_marker_task_begin, - ACTIONS(1033), 1, - sym__block_quote_continuation, - ACTIONS(1053), 1, + ACTIONS(1112), 1, sym__block_close, - STATE(37), 1, - sym_list_marker_task, - STATE(623), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(689), 1, - sym__block_quote_prefix, - STATE(358), 2, - sym__list_item_task, - aux_sym__list_task_repeat1, - [10274] = 7, - ACTIONS(29), 1, - sym__list_marker_task_begin, - ACTIONS(1033), 1, + ACTIONS(1114), 1, sym__block_quote_continuation, - ACTIONS(1055), 1, - sym__block_close, - STATE(37), 1, + STATE(38), 1, sym_list_marker_task, - STATE(623), 1, + STATE(646), 1, aux_sym__block_quote_prefix_repeat1, - STATE(689), 1, + STATE(886), 1, sym__block_quote_prefix, - STATE(358), 2, + STATE(391), 2, sym__list_item_task, aux_sym__list_task_repeat1, - [10297] = 7, - ACTIONS(1037), 1, + [11112] = 7, + ACTIONS(1102), 1, aux_sym__line_token1, - ACTIONS(1041), 1, + ACTIONS(1106), 1, sym__block_quote_continuation, - ACTIONS(1057), 1, + ACTIONS(1116), 1, sym__block_close, - STATE(590), 1, + STATE(665), 1, aux_sym__block_quote_prefix_repeat1, - STATE(770), 1, + STATE(885), 1, sym__block_quote_prefix, - STATE(862), 1, + STATE(942), 1, sym_code, - STATE(365), 2, + STATE(408), 2, sym__line, aux_sym_code_repeat1, - [10320] = 7, - ACTIONS(1037), 1, + [11135] = 7, + ACTIONS(1102), 1, aux_sym__line_token1, - ACTIONS(1041), 1, + ACTIONS(1106), 1, sym__block_quote_continuation, - ACTIONS(1059), 1, + ACTIONS(1118), 1, sym__block_close, - STATE(590), 1, + STATE(665), 1, aux_sym__block_quote_prefix_repeat1, - STATE(770), 1, + STATE(885), 1, sym__block_quote_prefix, - STATE(951), 1, + STATE(893), 1, sym_code, - STATE(365), 2, + STATE(408), 2, sym__line, aux_sym_code_repeat1, - [10343] = 6, - ACTIONS(516), 1, - sym__block_quote_continuation, - ACTIONS(1061), 1, - anon_sym_PIPE, - STATE(468), 1, - sym_table_separator, - STATE(664), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(1028), 1, - sym__block_quote_prefix, - ACTIONS(509), 3, - sym__block_close, - sym__newline, - sym__table_caption_begin, - [10364] = 7, - ACTIONS(1037), 1, + [11158] = 7, + ACTIONS(1102), 1, aux_sym__line_token1, - ACTIONS(1041), 1, + ACTIONS(1106), 1, sym__block_quote_continuation, - ACTIONS(1064), 1, + ACTIONS(1120), 1, sym__block_close, - STATE(590), 1, + STATE(665), 1, aux_sym__block_quote_prefix_repeat1, - STATE(770), 1, + STATE(885), 1, sym__block_quote_prefix, - STATE(913), 1, + STATE(932), 1, sym_code, - STATE(365), 2, + STATE(408), 2, sym__line, aux_sym_code_repeat1, - [10387] = 3, - ACTIONS(1066), 1, + [11181] = 3, + ACTIONS(1124), 1, + anon_sym_RBRACK, + STATE(380), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(1122), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [11196] = 6, + ACTIONS(533), 1, sym__block_quote_continuation, - STATE(346), 1, + ACTIONS(1126), 1, + anon_sym_PIPE, + STATE(488), 1, + sym_table_separator, + STATE(702), 1, aux_sym__block_quote_prefix_repeat1, - ACTIONS(855), 6, + STATE(1059), 1, + sym__block_quote_prefix, + ACTIONS(526), 3, sym__block_close, - sym_list_marker_dash, - sym_list_marker_star, - sym_list_marker_plus, - sym__list_marker_task_begin, - anon_sym_PIPE, - [10402] = 3, - STATE(753), 1, + sym__newline, + sym__table_caption_begin, + [11217] = 3, + STATE(833), 1, sym__inline, - STATE(329), 2, + STATE(366), 2, sym__symbol_fallback, aux_sym__inline_repeat1, ACTIONS(11), 5, @@ -20933,6414 +22112,6351 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [10417] = 7, - ACTIONS(1037), 1, - aux_sym__line_token1, - ACTIONS(1041), 1, + [11232] = 7, + ACTIONS(29), 1, + sym__list_marker_task_begin, + ACTIONS(1114), 1, sym__block_quote_continuation, - ACTIONS(1069), 1, + ACTIONS(1129), 1, sym__block_close, - STATE(590), 1, + STATE(38), 1, + sym_list_marker_task, + STATE(646), 1, aux_sym__block_quote_prefix_repeat1, - STATE(770), 1, + STATE(886), 1, sym__block_quote_prefix, - STATE(950), 1, - sym_code, - STATE(365), 2, - sym__line, - aux_sym_code_repeat1, - [10440] = 3, - ACTIONS(1073), 1, - sym__block_quote_continuation, - STATE(346), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(1071), 6, - sym__block_close, - sym_list_marker_dash, - sym_list_marker_star, - sym_list_marker_plus, - sym__list_marker_task_begin, - anon_sym_PIPE, - [10455] = 7, - ACTIONS(1037), 1, + STATE(391), 2, + sym__list_item_task, + aux_sym__list_task_repeat1, + [11255] = 7, + ACTIONS(1102), 1, aux_sym__line_token1, - ACTIONS(1041), 1, + ACTIONS(1106), 1, sym__block_quote_continuation, - ACTIONS(1075), 1, + ACTIONS(1131), 1, sym__block_close, - STATE(590), 1, + STATE(665), 1, aux_sym__block_quote_prefix_repeat1, - STATE(770), 1, + STATE(885), 1, sym__block_quote_prefix, - STATE(916), 1, + STATE(976), 1, sym_code, - STATE(365), 2, + STATE(408), 2, sym__line, aux_sym_code_repeat1, - [10478] = 3, - ACTIONS(1080), 1, + [11278] = 3, + ACTIONS(1136), 1, anon_sym_RBRACK, - STATE(351), 2, + STATE(380), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1077), 5, + ACTIONS(1133), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [10493] = 7, - ACTIONS(1037), 1, - aux_sym__line_token1, - ACTIONS(1041), 1, - sym__block_quote_continuation, - ACTIONS(1082), 1, - sym__block_close, - STATE(590), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(770), 1, - sym__block_quote_prefix, - STATE(960), 1, - sym_code, - STATE(365), 2, - sym__line, - aux_sym_code_repeat1, - [10516] = 7, - ACTIONS(1037), 1, - aux_sym__line_token1, - ACTIONS(1041), 1, + [11293] = 7, + ACTIONS(29), 1, + sym__list_marker_task_begin, + ACTIONS(1114), 1, sym__block_quote_continuation, - ACTIONS(1084), 1, + ACTIONS(1138), 1, sym__block_close, - STATE(590), 1, + STATE(38), 1, + sym_list_marker_task, + STATE(646), 1, aux_sym__block_quote_prefix_repeat1, - STATE(770), 1, + STATE(886), 1, sym__block_quote_prefix, - STATE(988), 1, - sym_code, - STATE(365), 2, - sym__line, - aux_sym_code_repeat1, - [10539] = 7, - ACTIONS(1037), 1, + STATE(391), 2, + sym__list_item_task, + aux_sym__list_task_repeat1, + [11316] = 7, + ACTIONS(1102), 1, aux_sym__line_token1, - ACTIONS(1041), 1, + ACTIONS(1106), 1, sym__block_quote_continuation, - ACTIONS(1086), 1, + ACTIONS(1140), 1, sym__block_close, - STATE(590), 1, + STATE(665), 1, aux_sym__block_quote_prefix_repeat1, - STATE(770), 1, + STATE(885), 1, sym__block_quote_prefix, STATE(987), 1, sym_code, - STATE(365), 2, + STATE(408), 2, sym__line, aux_sym_code_repeat1, - [10562] = 7, - ACTIONS(1037), 1, + [11339] = 7, + ACTIONS(1102), 1, aux_sym__line_token1, - ACTIONS(1041), 1, + ACTIONS(1106), 1, sym__block_quote_continuation, - ACTIONS(1088), 1, + ACTIONS(1142), 1, sym__block_close, - STATE(590), 1, + STATE(665), 1, aux_sym__block_quote_prefix_repeat1, - STATE(770), 1, + STATE(885), 1, sym__block_quote_prefix, - STATE(926), 1, + STATE(957), 1, sym_code, - STATE(365), 2, + STATE(408), 2, sym__line, aux_sym_code_repeat1, - [10585] = 7, - ACTIONS(1037), 1, + [11362] = 7, + ACTIONS(1102), 1, aux_sym__line_token1, - ACTIONS(1041), 1, + ACTIONS(1106), 1, sym__block_quote_continuation, - ACTIONS(1090), 1, + ACTIONS(1144), 1, sym__block_close, - STATE(590), 1, + STATE(665), 1, aux_sym__block_quote_prefix_repeat1, - STATE(770), 1, + STATE(885), 1, sym__block_quote_prefix, - STATE(894), 1, + STATE(967), 1, sym_code, - STATE(365), 2, + STATE(408), 2, sym__line, aux_sym_code_repeat1, - [10608] = 7, - ACTIONS(1037), 1, + [11385] = 3, + ACTIONS(1093), 1, + sym__eof_or_newline, + STATE(385), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(1146), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [11400] = 7, + ACTIONS(1102), 1, aux_sym__line_token1, - ACTIONS(1041), 1, + ACTIONS(1106), 1, sym__block_quote_continuation, - ACTIONS(1092), 1, + ACTIONS(1149), 1, sym__block_close, - STATE(590), 1, + STATE(665), 1, aux_sym__block_quote_prefix_repeat1, - STATE(770), 1, + STATE(885), 1, sym__block_quote_prefix, - STATE(896), 1, + STATE(1049), 1, sym_code, - STATE(365), 2, + STATE(408), 2, sym__line, aux_sym_code_repeat1, - [10631] = 7, - ACTIONS(1094), 1, - sym__block_close, - ACTIONS(1096), 1, + [11423] = 7, + ACTIONS(29), 1, sym__list_marker_task_begin, - ACTIONS(1099), 1, + ACTIONS(1114), 1, sym__block_quote_continuation, - STATE(37), 1, + ACTIONS(1151), 1, + sym__block_close, + STATE(38), 1, sym_list_marker_task, - STATE(623), 1, + STATE(646), 1, aux_sym__block_quote_prefix_repeat1, - STATE(689), 1, + STATE(886), 1, sym__block_quote_prefix, - STATE(358), 2, + STATE(391), 2, sym__list_item_task, aux_sym__list_task_repeat1, - [10654] = 3, - ACTIONS(1029), 1, + [11446] = 3, + ACTIONS(1100), 1, sym__eof_or_newline, - STATE(359), 2, + STATE(385), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1102), 5, + ACTIONS(1153), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [10669] = 7, + [11461] = 7, ACTIONS(29), 1, sym__list_marker_task_begin, - ACTIONS(1033), 1, + ACTIONS(1114), 1, sym__block_quote_continuation, - ACTIONS(1105), 1, + ACTIONS(1155), 1, sym__block_close, - STATE(37), 1, + STATE(38), 1, sym_list_marker_task, - STATE(623), 1, + STATE(646), 1, aux_sym__block_quote_prefix_repeat1, - STATE(689), 1, + STATE(886), 1, sym__block_quote_prefix, - STATE(358), 2, + STATE(391), 2, sym__list_item_task, aux_sym__list_task_repeat1, - [10692] = 7, - ACTIONS(29), 1, - sym__list_marker_task_begin, - ACTIONS(1033), 1, + [11484] = 7, + ACTIONS(1102), 1, + aux_sym__line_token1, + ACTIONS(1106), 1, sym__block_quote_continuation, - ACTIONS(1107), 1, + ACTIONS(1157), 1, sym__block_close, - STATE(37), 1, - sym_list_marker_task, - STATE(623), 1, + STATE(665), 1, aux_sym__block_quote_prefix_repeat1, - STATE(689), 1, + STATE(885), 1, sym__block_quote_prefix, - STATE(358), 2, - sym__list_item_task, - aux_sym__list_task_repeat1, - [10715] = 3, - ACTIONS(1109), 1, - sym__block_quote_continuation, - STATE(362), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(855), 5, - sym_list_marker_dash, - sym_list_marker_star, - sym_list_marker_plus, - sym__list_marker_task_begin, - anon_sym_PIPE, - [10729] = 7, - ACTIONS(29), 1, - sym__list_marker_task_begin, - ACTIONS(1112), 1, - anon_sym_PIPE, - ACTIONS(1114), 1, - sym__block_close, - ACTIONS(1116), 1, - sym_list_marker_dash, - ACTIONS(1118), 1, - sym_list_marker_star, - ACTIONS(1120), 1, - sym_list_marker_plus, - STATE(44), 1, - sym_list_marker_task, - [10751] = 6, - ACTIONS(23), 1, - sym_list_marker_dash, - ACTIONS(1122), 1, + STATE(898), 1, + sym_code, + STATE(408), 2, + sym__line, + aux_sym_code_repeat1, + [11507] = 7, + ACTIONS(1159), 1, sym__block_close, - ACTIONS(1124), 1, + ACTIONS(1161), 1, + sym__list_marker_task_begin, + ACTIONS(1164), 1, sym__block_quote_continuation, - STATE(642), 1, + STATE(38), 1, + sym_list_marker_task, + STATE(646), 1, aux_sym__block_quote_prefix_repeat1, - STATE(932), 1, + STATE(886), 1, sym__block_quote_prefix, - STATE(371), 2, - sym__list_item_dash, - aux_sym__list_dash_repeat1, - [10771] = 6, - ACTIONS(1037), 1, + STATE(391), 2, + sym__list_item_task, + aux_sym__list_task_repeat1, + [11530] = 7, + ACTIONS(1102), 1, aux_sym__line_token1, - ACTIONS(1041), 1, + ACTIONS(1106), 1, sym__block_quote_continuation, - ACTIONS(1126), 1, + ACTIONS(1167), 1, sym__block_close, - STATE(590), 1, + STATE(665), 1, aux_sym__block_quote_prefix_repeat1, - STATE(770), 1, + STATE(885), 1, sym__block_quote_prefix, - STATE(394), 2, + STATE(909), 1, + sym_code, + STATE(408), 2, sym__line, aux_sym_code_repeat1, - [10791] = 6, - ACTIONS(23), 1, - sym_list_marker_dash, - ACTIONS(1124), 1, + [11553] = 7, + ACTIONS(1102), 1, + aux_sym__line_token1, + ACTIONS(1106), 1, sym__block_quote_continuation, - ACTIONS(1128), 1, + ACTIONS(1169), 1, sym__block_close, - STATE(642), 1, + STATE(665), 1, aux_sym__block_quote_prefix_repeat1, - STATE(932), 1, + STATE(885), 1, sym__block_quote_prefix, - STATE(371), 2, - sym__list_item_dash, - aux_sym__list_dash_repeat1, - [10811] = 7, - ACTIONS(29), 1, - sym__list_marker_task_begin, - ACTIONS(1112), 1, - anon_sym_PIPE, - ACTIONS(1116), 1, - sym_list_marker_dash, - ACTIONS(1118), 1, - sym_list_marker_star, - ACTIONS(1120), 1, - sym_list_marker_plus, - ACTIONS(1130), 1, - sym__block_close, - STATE(44), 1, - sym_list_marker_task, - [10833] = 6, - ACTIONS(23), 1, - sym_list_marker_dash, - ACTIONS(1124), 1, + STATE(1023), 1, + sym_code, + STATE(408), 2, + sym__line, + aux_sym_code_repeat1, + [11576] = 7, + ACTIONS(1102), 1, + aux_sym__line_token1, + ACTIONS(1106), 1, sym__block_quote_continuation, - ACTIONS(1132), 1, + ACTIONS(1171), 1, sym__block_close, - STATE(642), 1, + STATE(665), 1, aux_sym__block_quote_prefix_repeat1, - STATE(932), 1, + STATE(885), 1, sym__block_quote_prefix, - STATE(371), 2, - sym__list_item_dash, - aux_sym__list_dash_repeat1, - [10853] = 6, + STATE(914), 1, + sym_code, + STATE(408), 2, + sym__line, + aux_sym_code_repeat1, + [11599] = 6, ACTIONS(27), 1, sym_list_marker_plus, - ACTIONS(1134), 1, + ACTIONS(1173), 1, sym__block_close, - ACTIONS(1136), 1, + ACTIONS(1175), 1, sym__block_quote_continuation, - STATE(677), 1, + STATE(695), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1049), 1, + STATE(1079), 1, sym__block_quote_prefix, - STATE(372), 2, + STATE(404), 2, sym__list_item_plus, aux_sym__list_plus_repeat1, - [10873] = 6, + [11619] = 6, ACTIONS(25), 1, sym_list_marker_star, - ACTIONS(1138), 1, + ACTIONS(1177), 1, sym__block_close, - ACTIONS(1140), 1, + ACTIONS(1179), 1, sym__block_quote_continuation, - STATE(605), 1, + STATE(641), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1048), 1, + STATE(1078), 1, sym__block_quote_prefix, - STATE(373), 2, + STATE(399), 2, sym__list_item_star, aux_sym__list_star_repeat1, - [10893] = 6, - ACTIONS(1142), 1, + [11639] = 6, + ACTIONS(27), 1, + sym_list_marker_plus, + ACTIONS(1175), 1, + sym__block_quote_continuation, + ACTIONS(1181), 1, sym__block_close, - ACTIONS(1144), 1, + STATE(695), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(1079), 1, + sym__block_quote_prefix, + STATE(404), 2, + sym__list_item_plus, + aux_sym__list_plus_repeat1, + [11659] = 6, + ACTIONS(1183), 1, + sym__block_close, + ACTIONS(1185), 1, sym_list_marker_dash, - ACTIONS(1147), 1, + ACTIONS(1188), 1, sym__block_quote_continuation, - STATE(642), 1, + STATE(640), 1, aux_sym__block_quote_prefix_repeat1, - STATE(932), 1, + STATE(1080), 1, sym__block_quote_prefix, - STATE(371), 2, + STATE(398), 2, sym__list_item_dash, aux_sym__list_dash_repeat1, - [10913] = 6, - ACTIONS(1150), 1, + [11679] = 6, + ACTIONS(1191), 1, sym__block_close, - ACTIONS(1152), 1, - sym_list_marker_plus, - ACTIONS(1155), 1, + ACTIONS(1193), 1, + sym_list_marker_star, + ACTIONS(1196), 1, sym__block_quote_continuation, - STATE(677), 1, + STATE(641), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1049), 1, + STATE(1078), 1, sym__block_quote_prefix, - STATE(372), 2, - sym__list_item_plus, - aux_sym__list_plus_repeat1, - [10933] = 6, - ACTIONS(1158), 1, + STATE(399), 2, + sym__list_item_star, + aux_sym__list_star_repeat1, + [11699] = 6, + ACTIONS(23), 1, + sym_list_marker_dash, + ACTIONS(1199), 1, sym__block_close, - ACTIONS(1160), 1, - sym_list_marker_star, - ACTIONS(1163), 1, + ACTIONS(1201), 1, sym__block_quote_continuation, - STATE(605), 1, + STATE(640), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1048), 1, + STATE(1080), 1, sym__block_quote_prefix, - STATE(373), 2, - sym__list_item_star, - aux_sym__list_star_repeat1, - [10953] = 6, + STATE(398), 2, + sym__list_item_dash, + aux_sym__list_dash_repeat1, + [11719] = 6, ACTIONS(27), 1, sym_list_marker_plus, - ACTIONS(1136), 1, + ACTIONS(1175), 1, sym__block_quote_continuation, - ACTIONS(1166), 1, + ACTIONS(1203), 1, sym__block_close, - STATE(677), 1, + STATE(695), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1049), 1, + STATE(1079), 1, sym__block_quote_prefix, - STATE(372), 2, + STATE(404), 2, sym__list_item_plus, aux_sym__list_plus_repeat1, - [10973] = 6, + [11739] = 6, ACTIONS(25), 1, sym_list_marker_star, - ACTIONS(1140), 1, + ACTIONS(1179), 1, sym__block_quote_continuation, - ACTIONS(1168), 1, + ACTIONS(1205), 1, sym__block_close, - STATE(605), 1, + STATE(641), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1048), 1, + STATE(1078), 1, sym__block_quote_prefix, - STATE(373), 2, + STATE(399), 2, sym__list_item_star, aux_sym__list_star_repeat1, - [10993] = 3, - ACTIONS(1045), 1, - anon_sym_PIPE, - STATE(388), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(1170), 4, + [11759] = 3, + ACTIONS(982), 1, + sym__block_quote_continuation, + STATE(406), 1, + aux_sym__block_quote_prefix_repeat1, + ACTIONS(1007), 5, anon_sym_LBRACK, + anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [11007] = 7, - ACTIONS(29), 1, - sym__list_marker_task_begin, - ACTIONS(1112), 1, - anon_sym_PIPE, - ACTIONS(1116), 1, - sym_list_marker_dash, - ACTIONS(1118), 1, - sym_list_marker_star, - ACTIONS(1120), 1, - sym_list_marker_plus, - ACTIONS(1172), 1, + [11773] = 6, + ACTIONS(1207), 1, sym__block_close, - STATE(44), 1, - sym_list_marker_task, - [11029] = 7, - ACTIONS(29), 1, - sym__list_marker_task_begin, - ACTIONS(1112), 1, - anon_sym_PIPE, - ACTIONS(1116), 1, - sym_list_marker_dash, - ACTIONS(1118), 1, - sym_list_marker_star, - ACTIONS(1120), 1, + ACTIONS(1209), 1, sym_list_marker_plus, - ACTIONS(1174), 1, - sym__block_close, - STATE(44), 1, - sym_list_marker_task, - [11051] = 2, - ACTIONS(1178), 1, + ACTIONS(1212), 1, + sym__block_quote_continuation, + STATE(695), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(1079), 1, + sym__block_quote_prefix, + STATE(404), 2, + sym__list_item_plus, + aux_sym__list_plus_repeat1, + [11793] = 2, + ACTIONS(1217), 1, sym__table_caption_end, - ACTIONS(1176), 6, + ACTIONS(1215), 6, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_NULL, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [11063] = 7, - ACTIONS(29), 1, - sym__list_marker_task_begin, - ACTIONS(1112), 1, - anon_sym_PIPE, - ACTIONS(1116), 1, - sym_list_marker_dash, - ACTIONS(1118), 1, - sym_list_marker_star, - ACTIONS(1120), 1, - sym_list_marker_plus, - ACTIONS(1180), 1, - sym__block_close, - STATE(44), 1, - sym_list_marker_task, - [11085] = 7, - ACTIONS(29), 1, - sym__list_marker_task_begin, - ACTIONS(1112), 1, - anon_sym_PIPE, - ACTIONS(1116), 1, - sym_list_marker_dash, - ACTIONS(1118), 1, - sym_list_marker_star, - ACTIONS(1120), 1, - sym_list_marker_plus, - ACTIONS(1182), 1, - sym__block_close, - STATE(44), 1, - sym_list_marker_task, - [11107] = 6, - ACTIONS(23), 1, - sym_list_marker_dash, - ACTIONS(1124), 1, - sym__block_quote_continuation, - ACTIONS(1184), 1, - sym__block_close, - STATE(642), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(932), 1, - sym__block_quote_prefix, - STATE(371), 2, - sym__list_item_dash, - aux_sym__list_dash_repeat1, - [11127] = 6, - ACTIONS(27), 1, - sym_list_marker_plus, - ACTIONS(1136), 1, - sym__block_quote_continuation, - ACTIONS(1186), 1, - sym__block_close, - STATE(677), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(1049), 1, - sym__block_quote_prefix, - STATE(372), 2, - sym__list_item_plus, - aux_sym__list_plus_repeat1, - [11147] = 6, - ACTIONS(27), 1, - sym_list_marker_plus, - ACTIONS(1136), 1, + [11805] = 3, + ACTIONS(1219), 1, sym__block_quote_continuation, - ACTIONS(1188), 1, - sym__block_close, - STATE(677), 1, + STATE(406), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1049), 1, - sym__block_quote_prefix, - STATE(372), 2, - sym__list_item_plus, - aux_sym__list_plus_repeat1, - [11167] = 6, + ACTIONS(874), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [11819] = 6, ACTIONS(25), 1, sym_list_marker_star, - ACTIONS(1140), 1, + ACTIONS(1179), 1, sym__block_quote_continuation, - ACTIONS(1190), 1, + ACTIONS(1222), 1, sym__block_close, - STATE(605), 1, + STATE(641), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1048), 1, + STATE(1078), 1, sym__block_quote_prefix, - STATE(373), 2, + STATE(399), 2, sym__list_item_star, aux_sym__list_star_repeat1, - [11187] = 6, + [11839] = 6, + ACTIONS(1102), 1, + aux_sym__line_token1, + ACTIONS(1106), 1, + sym__block_quote_continuation, + ACTIONS(1224), 1, + sym__block_close, + STATE(665), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(885), 1, + sym__block_quote_prefix, + STATE(420), 2, + sym__line, + aux_sym_code_repeat1, + [11859] = 6, ACTIONS(25), 1, sym_list_marker_star, - ACTIONS(1140), 1, + ACTIONS(1179), 1, sym__block_quote_continuation, - ACTIONS(1192), 1, + ACTIONS(1226), 1, sym__block_close, - STATE(605), 1, + STATE(641), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1048), 1, + STATE(1078), 1, sym__block_quote_prefix, - STATE(373), 2, + STATE(399), 2, sym__list_item_star, aux_sym__list_star_repeat1, - [11207] = 2, - ACTIONS(1196), 1, - sym__table_caption_end, - ACTIONS(1194), 6, - anon_sym_LBRACK, + [11879] = 3, + ACTIONS(1124), 1, anon_sym_PIPE, - anon_sym_NULL, + STATE(411), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(1228), 4, + anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [11219] = 2, - STATE(388), 2, + [11893] = 2, + STATE(411), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1198), 5, + ACTIONS(1230), 5, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [11231] = 6, - ACTIONS(25), 1, - sym_list_marker_star, - ACTIONS(1140), 1, - sym__block_quote_continuation, + [11905] = 6, + ACTIONS(23), 1, + sym_list_marker_dash, ACTIONS(1201), 1, + sym__block_quote_continuation, + ACTIONS(1233), 1, sym__block_close, - STATE(605), 1, + STATE(640), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1048), 1, + STATE(1080), 1, sym__block_quote_prefix, - STATE(373), 2, - sym__list_item_star, - aux_sym__list_star_repeat1, - [11251] = 6, - ACTIONS(27), 1, - sym_list_marker_plus, - ACTIONS(1136), 1, + STATE(398), 2, + sym__list_item_dash, + aux_sym__list_dash_repeat1, + [11925] = 6, + ACTIONS(23), 1, + sym_list_marker_dash, + ACTIONS(1201), 1, sym__block_quote_continuation, - ACTIONS(1203), 1, + ACTIONS(1235), 1, sym__block_close, - STATE(677), 1, + STATE(640), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1049), 1, + STATE(1080), 1, sym__block_quote_prefix, - STATE(372), 2, - sym__list_item_plus, - aux_sym__list_plus_repeat1, - [11271] = 6, + STATE(398), 2, + sym__list_item_dash, + aux_sym__list_dash_repeat1, + [11945] = 2, + ACTIONS(1239), 1, + sym__table_caption_end, + ACTIONS(1237), 6, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_NULL, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [11957] = 6, ACTIONS(23), 1, sym_list_marker_dash, - ACTIONS(1124), 1, + ACTIONS(1201), 1, sym__block_quote_continuation, - ACTIONS(1205), 1, + ACTIONS(1241), 1, sym__block_close, - STATE(642), 1, + STATE(640), 1, aux_sym__block_quote_prefix_repeat1, - STATE(932), 1, + STATE(1080), 1, sym__block_quote_prefix, - STATE(371), 2, + STATE(398), 2, sym__list_item_dash, aux_sym__list_dash_repeat1, - [11291] = 7, - ACTIONS(29), 1, - sym__list_marker_task_begin, - ACTIONS(1112), 1, - anon_sym_PIPE, - ACTIONS(1116), 1, + [11977] = 6, + ACTIONS(23), 1, sym_list_marker_dash, - ACTIONS(1118), 1, + ACTIONS(1201), 1, + sym__block_quote_continuation, + ACTIONS(1243), 1, + sym__block_close, + STATE(640), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(1080), 1, + sym__block_quote_prefix, + STATE(398), 2, + sym__list_item_dash, + aux_sym__list_dash_repeat1, + [11997] = 6, + ACTIONS(25), 1, sym_list_marker_star, - ACTIONS(1120), 1, + ACTIONS(1179), 1, + sym__block_quote_continuation, + ACTIONS(1245), 1, + sym__block_close, + STATE(641), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(1078), 1, + sym__block_quote_prefix, + STATE(399), 2, + sym__list_item_star, + aux_sym__list_star_repeat1, + [12017] = 6, + ACTIONS(27), 1, sym_list_marker_plus, - ACTIONS(1207), 1, + ACTIONS(1175), 1, + sym__block_quote_continuation, + ACTIONS(1247), 1, sym__block_close, - STATE(44), 1, - sym_list_marker_task, - [11313] = 7, - ACTIONS(29), 1, - sym__list_marker_task_begin, - ACTIONS(1112), 1, - anon_sym_PIPE, - ACTIONS(1116), 1, - sym_list_marker_dash, - ACTIONS(1118), 1, - sym_list_marker_star, - ACTIONS(1120), 1, + STATE(695), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(1079), 1, + sym__block_quote_prefix, + STATE(404), 2, + sym__list_item_plus, + aux_sym__list_plus_repeat1, + [12037] = 6, + ACTIONS(27), 1, sym_list_marker_plus, - ACTIONS(1209), 1, + ACTIONS(1175), 1, + sym__block_quote_continuation, + ACTIONS(1249), 1, sym__block_close, - STATE(44), 1, - sym_list_marker_task, - [11335] = 6, - ACTIONS(1211), 1, + STATE(695), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(1079), 1, + sym__block_quote_prefix, + STATE(404), 2, + sym__list_item_plus, + aux_sym__list_plus_repeat1, + [12057] = 6, + ACTIONS(1251), 1, aux_sym__line_token1, - ACTIONS(1214), 1, + ACTIONS(1254), 1, sym__block_close, - ACTIONS(1216), 1, + ACTIONS(1256), 1, sym__block_quote_continuation, - STATE(590), 1, + STATE(665), 1, aux_sym__block_quote_prefix_repeat1, - STATE(770), 1, + STATE(885), 1, sym__block_quote_prefix, - STATE(394), 2, + STATE(420), 2, sym__line, aux_sym_code_repeat1, - [11355] = 7, - ACTIONS(29), 1, - sym__list_marker_task_begin, - ACTIONS(1112), 1, - anon_sym_PIPE, - ACTIONS(1116), 1, - sym_list_marker_dash, - ACTIONS(1118), 1, - sym_list_marker_star, - ACTIONS(1120), 1, - sym_list_marker_plus, - ACTIONS(1219), 1, - sym__block_close, - STATE(44), 1, - sym_list_marker_task, - [11377] = 7, - ACTIONS(29), 1, - sym__list_marker_task_begin, - ACTIONS(1112), 1, - anon_sym_PIPE, - ACTIONS(1116), 1, - sym_list_marker_dash, - ACTIONS(1118), 1, - sym_list_marker_star, - ACTIONS(1120), 1, - sym_list_marker_plus, - ACTIONS(1221), 1, - sym__block_close, - STATE(44), 1, - sym_list_marker_task, - [11399] = 3, - ACTIONS(1223), 1, + [12077] = 6, + ACTIONS(1259), 1, + sym__list_item_continuation, + ACTIONS(1261), 1, + sym__list_item_end, + ACTIONS(1263), 1, sym__block_quote_continuation, - STATE(362), 1, + STATE(461), 1, + aux_sym__list_item_definition_repeat1, + STATE(651), 1, aux_sym__block_quote_prefix_repeat1, - ACTIONS(1071), 5, - sym_list_marker_dash, - sym_list_marker_star, - sym_list_marker_plus, - sym__list_marker_task_begin, + STATE(961), 1, + sym__block_quote_prefix, + [12096] = 1, + ACTIONS(560), 6, + sym__newline, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + sym__table_caption_begin, anon_sym_PIPE, - [11413] = 6, - ACTIONS(1225), 1, + [12105] = 6, + ACTIONS(1259), 1, sym__list_item_continuation, - ACTIONS(1227), 1, - sym__list_item_end, - ACTIONS(1229), 1, + ACTIONS(1263), 1, sym__block_quote_continuation, - STATE(454), 1, + ACTIONS(1265), 1, + sym__list_item_end, + STATE(461), 1, aux_sym__list_item_definition_repeat1, - STATE(627), 1, + STATE(651), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1004), 1, + STATE(961), 1, sym__block_quote_prefix, - [11432] = 6, - ACTIONS(1225), 1, + [12124] = 6, + ACTIONS(1259), 1, sym__list_item_continuation, - ACTIONS(1229), 1, + ACTIONS(1263), 1, sym__block_quote_continuation, - ACTIONS(1231), 1, + ACTIONS(1267), 1, sym__list_item_end, - STATE(454), 1, + STATE(461), 1, aux_sym__list_item_definition_repeat1, - STATE(627), 1, + STATE(651), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1004), 1, + STATE(961), 1, sym__block_quote_prefix, - [11451] = 6, - ACTIONS(1225), 1, + [12143] = 6, + ACTIONS(1259), 1, sym__list_item_continuation, - ACTIONS(1229), 1, + ACTIONS(1263), 1, sym__block_quote_continuation, - ACTIONS(1233), 1, + ACTIONS(1269), 1, sym__list_item_end, - STATE(455), 1, + STATE(427), 1, aux_sym__list_item_definition_repeat1, - STATE(627), 1, + STATE(651), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1004), 1, + STATE(961), 1, sym__block_quote_prefix, - [11470] = 1, - ACTIONS(553), 6, - sym__newline, + [12162] = 6, + ACTIONS(1259), 1, sym__list_item_continuation, - sym__list_item_end, + ACTIONS(1263), 1, sym__block_quote_continuation, - sym__table_caption_begin, - anon_sym_PIPE, - [11479] = 1, - ACTIONS(549), 6, - sym__newline, - sym__list_item_continuation, + ACTIONS(1271), 1, sym__list_item_end, - sym__block_quote_continuation, - sym__table_caption_begin, - anon_sym_PIPE, - [11488] = 6, - ACTIONS(1225), 1, + STATE(428), 1, + aux_sym__list_item_definition_repeat1, + STATE(651), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(961), 1, + sym__block_quote_prefix, + [12181] = 6, + ACTIONS(1259), 1, sym__list_item_continuation, - ACTIONS(1229), 1, + ACTIONS(1263), 1, sym__block_quote_continuation, - ACTIONS(1235), 1, + ACTIONS(1273), 1, sym__list_item_end, - STATE(404), 1, + STATE(461), 1, aux_sym__list_item_definition_repeat1, - STATE(627), 1, + STATE(651), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1004), 1, + STATE(961), 1, sym__block_quote_prefix, - [11507] = 6, - ACTIONS(1225), 1, + [12200] = 6, + ACTIONS(1259), 1, sym__list_item_continuation, - ACTIONS(1229), 1, + ACTIONS(1263), 1, sym__block_quote_continuation, - ACTIONS(1237), 1, + ACTIONS(1275), 1, sym__list_item_end, - STATE(454), 1, + STATE(461), 1, aux_sym__list_item_definition_repeat1, - STATE(627), 1, + STATE(651), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1004), 1, + STATE(961), 1, sym__block_quote_prefix, - [11526] = 1, - ACTIONS(1239), 6, - anon_sym_RBRACE, - anon_sym_DOT, - sym_identifier, - sym__whitespace1, - sym__id, - anon_sym_PERCENT, - [11535] = 6, - ACTIONS(1225), 1, + [12219] = 6, + ACTIONS(1259), 1, sym__list_item_continuation, - ACTIONS(1229), 1, + ACTIONS(1263), 1, sym__block_quote_continuation, - ACTIONS(1241), 1, + ACTIONS(1277), 1, sym__list_item_end, - STATE(407), 1, + STATE(430), 1, aux_sym__list_item_definition_repeat1, - STATE(627), 1, + STATE(651), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1004), 1, + STATE(961), 1, sym__block_quote_prefix, - [11554] = 6, - ACTIONS(1225), 1, + [12238] = 6, + ACTIONS(1259), 1, sym__list_item_continuation, - ACTIONS(1229), 1, + ACTIONS(1263), 1, sym__block_quote_continuation, - ACTIONS(1243), 1, + ACTIONS(1279), 1, sym__list_item_end, - STATE(454), 1, + STATE(461), 1, aux_sym__list_item_definition_repeat1, - STATE(627), 1, + STATE(651), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1004), 1, + STATE(961), 1, sym__block_quote_prefix, - [11573] = 6, - ACTIONS(1225), 1, + [12257] = 6, + ACTIONS(1259), 1, sym__list_item_continuation, - ACTIONS(1229), 1, + ACTIONS(1263), 1, sym__block_quote_continuation, - ACTIONS(1245), 1, + ACTIONS(1281), 1, sym__list_item_end, - STATE(411), 1, + STATE(432), 1, aux_sym__list_item_definition_repeat1, - STATE(627), 1, + STATE(651), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1004), 1, + STATE(961), 1, sym__block_quote_prefix, - [11592] = 1, - ACTIONS(617), 6, - sym__newline, + [12276] = 6, + ACTIONS(1259), 1, sym__list_item_continuation, - sym__list_item_end, + ACTIONS(1263), 1, sym__block_quote_continuation, - sym__table_caption_begin, - anon_sym_PIPE, - [11601] = 1, - ACTIONS(621), 6, - sym__newline, - sym__list_item_continuation, + ACTIONS(1283), 1, sym__list_item_end, - sym__block_quote_continuation, - sym__table_caption_begin, - anon_sym_PIPE, - [11610] = 6, - ACTIONS(1225), 1, + STATE(461), 1, + aux_sym__list_item_definition_repeat1, + STATE(651), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(961), 1, + sym__block_quote_prefix, + [12295] = 6, + ACTIONS(1259), 1, sym__list_item_continuation, - ACTIONS(1229), 1, + ACTIONS(1263), 1, sym__block_quote_continuation, - ACTIONS(1247), 1, + ACTIONS(1285), 1, sym__list_item_end, - STATE(454), 1, + STATE(436), 1, aux_sym__list_item_definition_repeat1, - STATE(627), 1, + STATE(651), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1004), 1, + STATE(961), 1, sym__block_quote_prefix, - [11629] = 1, - ACTIONS(1249), 6, - anon_sym_RBRACE, - anon_sym_DOT, - sym_identifier, - sym__whitespace1, - sym__id, - anon_sym_PERCENT, - [11638] = 1, - ACTIONS(1251), 6, - anon_sym_RBRACE, - anon_sym_DOT, - sym_identifier, - sym__whitespace1, - sym__id, - anon_sym_PERCENT, - [11647] = 6, - ACTIONS(1225), 1, + [12314] = 6, + ACTIONS(1259), 1, sym__list_item_continuation, - ACTIONS(1229), 1, + ACTIONS(1263), 1, sym__block_quote_continuation, - ACTIONS(1253), 1, + ACTIONS(1287), 1, sym__list_item_end, - STATE(398), 1, + STATE(435), 1, aux_sym__list_item_definition_repeat1, - STATE(627), 1, + STATE(651), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1004), 1, + STATE(961), 1, sym__block_quote_prefix, - [11666] = 1, - ACTIONS(613), 6, - sym__newline, + [12333] = 6, + ACTIONS(1259), 1, sym__list_item_continuation, - sym__list_item_end, + ACTIONS(1263), 1, sym__block_quote_continuation, - sym__table_caption_begin, - anon_sym_PIPE, - [11675] = 6, - ACTIONS(1225), 1, + ACTIONS(1289), 1, + sym__list_item_end, + STATE(461), 1, + aux_sym__list_item_definition_repeat1, + STATE(651), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(961), 1, + sym__block_quote_prefix, + [12352] = 6, + ACTIONS(1259), 1, sym__list_item_continuation, - ACTIONS(1229), 1, + ACTIONS(1263), 1, sym__block_quote_continuation, - ACTIONS(1255), 1, + ACTIONS(1291), 1, sym__list_item_end, - STATE(433), 1, + STATE(461), 1, aux_sym__list_item_definition_repeat1, - STATE(627), 1, + STATE(651), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1004), 1, + STATE(961), 1, sym__block_quote_prefix, - [11694] = 6, - ACTIONS(1225), 1, + [12371] = 6, + ACTIONS(1259), 1, sym__list_item_continuation, - ACTIONS(1229), 1, + ACTIONS(1263), 1, sym__block_quote_continuation, - ACTIONS(1257), 1, + ACTIONS(1293), 1, sym__list_item_end, - STATE(418), 1, + STATE(452), 1, aux_sym__list_item_definition_repeat1, - STATE(627), 1, + STATE(651), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1004), 1, + STATE(961), 1, sym__block_quote_prefix, - [11713] = 6, - ACTIONS(1225), 1, + [12390] = 6, + ACTIONS(1259), 1, sym__list_item_continuation, - ACTIONS(1229), 1, + ACTIONS(1263), 1, sym__block_quote_continuation, - ACTIONS(1259), 1, + ACTIONS(1295), 1, sym__list_item_end, - STATE(454), 1, + STATE(439), 1, aux_sym__list_item_definition_repeat1, - STATE(627), 1, + STATE(651), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1004), 1, + STATE(961), 1, sym__block_quote_prefix, - [11732] = 6, - ACTIONS(1225), 1, + [12409] = 6, + ACTIONS(1259), 1, sym__list_item_continuation, - ACTIONS(1229), 1, + ACTIONS(1263), 1, sym__block_quote_continuation, - ACTIONS(1261), 1, + ACTIONS(1297), 1, sym__list_item_end, - STATE(437), 1, + STATE(461), 1, aux_sym__list_item_definition_repeat1, - STATE(627), 1, + STATE(651), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1004), 1, + STATE(961), 1, sym__block_quote_prefix, - [11751] = 6, - ACTIONS(1225), 1, + [12428] = 6, + ACTIONS(1259), 1, sym__list_item_continuation, - ACTIONS(1229), 1, - sym__block_quote_continuation, ACTIONS(1263), 1, + sym__block_quote_continuation, + ACTIONS(1299), 1, sym__list_item_end, - STATE(421), 1, + STATE(441), 1, aux_sym__list_item_definition_repeat1, - STATE(627), 1, + STATE(651), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1004), 1, + STATE(961), 1, sym__block_quote_prefix, - [11770] = 6, - ACTIONS(1225), 1, + [12447] = 6, + ACTIONS(1259), 1, sym__list_item_continuation, - ACTIONS(1229), 1, + ACTIONS(1263), 1, sym__block_quote_continuation, - ACTIONS(1265), 1, + ACTIONS(1301), 1, sym__list_item_end, - STATE(454), 1, + STATE(461), 1, aux_sym__list_item_definition_repeat1, - STATE(627), 1, + STATE(651), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1004), 1, + STATE(961), 1, sym__block_quote_prefix, - [11789] = 6, - ACTIONS(1225), 1, + [12466] = 6, + ACTIONS(1259), 1, sym__list_item_continuation, - ACTIONS(1229), 1, + ACTIONS(1263), 1, sym__block_quote_continuation, - ACTIONS(1267), 1, + ACTIONS(1303), 1, sym__list_item_end, - STATE(426), 1, + STATE(443), 1, aux_sym__list_item_definition_repeat1, - STATE(627), 1, + STATE(651), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1004), 1, + STATE(961), 1, sym__block_quote_prefix, - [11808] = 6, - ACTIONS(1225), 1, + [12485] = 6, + ACTIONS(1259), 1, sym__list_item_continuation, - ACTIONS(1229), 1, + ACTIONS(1263), 1, sym__block_quote_continuation, - ACTIONS(1269), 1, + ACTIONS(1305), 1, sym__list_item_end, - STATE(438), 1, + STATE(461), 1, aux_sym__list_item_definition_repeat1, - STATE(627), 1, + STATE(651), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1004), 1, + STATE(961), 1, sym__block_quote_prefix, - [11827] = 6, - ACTIONS(29), 1, - sym__list_marker_task_begin, - ACTIONS(1116), 1, - sym_list_marker_dash, - ACTIONS(1118), 1, - sym_list_marker_star, - ACTIONS(1120), 1, - sym_list_marker_plus, - ACTIONS(1271), 1, - anon_sym_PIPE, - STATE(44), 1, - sym_list_marker_task, - [11846] = 6, - ACTIONS(1225), 1, + [12504] = 1, + ACTIONS(1307), 6, + anon_sym_RBRACE, + anon_sym_DOT, + sym_identifier, + sym__whitespace1, + sym__id, + anon_sym_PERCENT, + [12513] = 6, + ACTIONS(1259), 1, sym__list_item_continuation, - ACTIONS(1229), 1, + ACTIONS(1263), 1, sym__block_quote_continuation, - ACTIONS(1273), 1, + ACTIONS(1309), 1, sym__list_item_end, - STATE(454), 1, + STATE(458), 1, aux_sym__list_item_definition_repeat1, - STATE(627), 1, + STATE(651), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1004), 1, + STATE(961), 1, sym__block_quote_prefix, - [11865] = 6, - ACTIONS(1225), 1, + [12532] = 6, + ACTIONS(1259), 1, sym__list_item_continuation, - ACTIONS(1229), 1, + ACTIONS(1263), 1, sym__block_quote_continuation, - ACTIONS(1275), 1, + ACTIONS(1311), 1, sym__list_item_end, - STATE(454), 1, + STATE(448), 1, aux_sym__list_item_definition_repeat1, - STATE(627), 1, + STATE(651), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1004), 1, + STATE(961), 1, sym__block_quote_prefix, - [11884] = 1, - ACTIONS(1277), 6, + [12551] = 1, + ACTIONS(1313), 6, anon_sym_RBRACE, anon_sym_DOT, sym_identifier, sym__whitespace1, sym__id, anon_sym_PERCENT, - [11893] = 6, - ACTIONS(1225), 1, + [12560] = 6, + ACTIONS(1259), 1, sym__list_item_continuation, - ACTIONS(1229), 1, + ACTIONS(1263), 1, sym__block_quote_continuation, - ACTIONS(1279), 1, + ACTIONS(1315), 1, sym__list_item_end, - STATE(454), 1, + STATE(461), 1, aux_sym__list_item_definition_repeat1, - STATE(627), 1, + STATE(651), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1004), 1, + STATE(961), 1, sym__block_quote_prefix, - [11912] = 6, - ACTIONS(1225), 1, + [12579] = 6, + ACTIONS(1259), 1, sym__list_item_continuation, - ACTIONS(1229), 1, + ACTIONS(1263), 1, sym__block_quote_continuation, - ACTIONS(1281), 1, + ACTIONS(1317), 1, sym__list_item_end, - STATE(428), 1, + STATE(424), 1, aux_sym__list_item_definition_repeat1, - STATE(627), 1, + STATE(651), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1004), 1, + STATE(961), 1, sym__block_quote_prefix, - [11931] = 6, - ACTIONS(1225), 1, + [12598] = 1, + ACTIONS(630), 6, + sym__newline, sym__list_item_continuation, - ACTIONS(1229), 1, - sym__block_quote_continuation, - ACTIONS(1283), 1, sym__list_item_end, - STATE(399), 1, - aux_sym__list_item_definition_repeat1, - STATE(627), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(1004), 1, - sym__block_quote_prefix, - [11950] = 6, - ACTIONS(29), 1, - sym__list_marker_task_begin, - ACTIONS(1116), 1, - sym_list_marker_dash, - ACTIONS(1118), 1, - sym_list_marker_star, - ACTIONS(1120), 1, - sym_list_marker_plus, - ACTIONS(1285), 1, + sym__block_quote_continuation, + sym__table_caption_begin, anon_sym_PIPE, - STATE(44), 1, - sym_list_marker_task, - [11969] = 1, - ACTIONS(581), 6, + [12607] = 1, + ACTIONS(634), 6, sym__newline, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, sym__table_caption_begin, anon_sym_PIPE, - [11978] = 6, - ACTIONS(1225), 1, + [12616] = 6, + ACTIONS(1259), 1, sym__list_item_continuation, - ACTIONS(1229), 1, + ACTIONS(1263), 1, sym__block_quote_continuation, - ACTIONS(1287), 1, + ACTIONS(1319), 1, sym__list_item_end, - STATE(454), 1, + STATE(461), 1, aux_sym__list_item_definition_repeat1, - STATE(627), 1, + STATE(651), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1004), 1, + STATE(961), 1, sym__block_quote_prefix, - [11997] = 1, - ACTIONS(585), 6, + [12635] = 1, + ACTIONS(1321), 6, + anon_sym_RBRACE, + anon_sym_DOT, + sym_identifier, + sym__whitespace1, + sym__id, + anon_sym_PERCENT, + [12644] = 1, + ACTIONS(648), 6, sym__newline, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, sym__table_caption_begin, anon_sym_PIPE, - [12006] = 6, - ACTIONS(29), 1, - sym__list_marker_task_begin, - ACTIONS(1116), 1, - sym_list_marker_dash, - ACTIONS(1118), 1, - sym_list_marker_star, - ACTIONS(1120), 1, - sym_list_marker_plus, - ACTIONS(1289), 1, - anon_sym_PIPE, - STATE(44), 1, - sym_list_marker_task, - [12025] = 6, - ACTIONS(29), 1, - sym__list_marker_task_begin, - ACTIONS(1112), 1, - anon_sym_PIPE, - ACTIONS(1116), 1, - sym_list_marker_dash, - ACTIONS(1118), 1, - sym_list_marker_star, - ACTIONS(1120), 1, - sym_list_marker_plus, - STATE(44), 1, - sym_list_marker_task, - [12044] = 6, - ACTIONS(1225), 1, + [12653] = 6, + ACTIONS(1259), 1, sym__list_item_continuation, - ACTIONS(1229), 1, + ACTIONS(1263), 1, sym__block_quote_continuation, - ACTIONS(1291), 1, + ACTIONS(1323), 1, sym__list_item_end, - STATE(454), 1, + STATE(423), 1, aux_sym__list_item_definition_repeat1, - STATE(627), 1, + STATE(651), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1004), 1, + STATE(961), 1, sym__block_quote_prefix, - [12063] = 6, - ACTIONS(1225), 1, + [12672] = 6, + ACTIONS(1259), 1, sym__list_item_continuation, - ACTIONS(1229), 1, + ACTIONS(1263), 1, sym__block_quote_continuation, - ACTIONS(1293), 1, + ACTIONS(1325), 1, sym__list_item_end, - STATE(454), 1, + STATE(464), 1, aux_sym__list_item_definition_repeat1, - STATE(627), 1, + STATE(651), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1004), 1, + STATE(961), 1, sym__block_quote_prefix, - [12082] = 6, - ACTIONS(1225), 1, + [12691] = 6, + ACTIONS(1259), 1, sym__list_item_continuation, - ACTIONS(1229), 1, + ACTIONS(1263), 1, sym__block_quote_continuation, - ACTIONS(1295), 1, + ACTIONS(1327), 1, sym__list_item_end, - STATE(440), 1, + STATE(461), 1, aux_sym__list_item_definition_repeat1, - STATE(627), 1, + STATE(651), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1004), 1, + STATE(961), 1, sym__block_quote_prefix, - [12101] = 6, - ACTIONS(1225), 1, + [12710] = 6, + ACTIONS(1259), 1, sym__list_item_continuation, - ACTIONS(1229), 1, + ACTIONS(1263), 1, sym__block_quote_continuation, - ACTIONS(1297), 1, + ACTIONS(1329), 1, sym__list_item_end, - STATE(454), 1, + STATE(461), 1, aux_sym__list_item_definition_repeat1, - STATE(627), 1, + STATE(651), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1004), 1, + STATE(961), 1, sym__block_quote_prefix, - [12120] = 6, - ACTIONS(1225), 1, + [12729] = 6, + ACTIONS(1259), 1, sym__list_item_continuation, - ACTIONS(1229), 1, + ACTIONS(1263), 1, sym__block_quote_continuation, - ACTIONS(1299), 1, + ACTIONS(1331), 1, sym__list_item_end, - STATE(444), 1, + STATE(457), 1, aux_sym__list_item_definition_repeat1, - STATE(627), 1, + STATE(651), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1004), 1, + STATE(961), 1, sym__block_quote_prefix, - [12139] = 6, - ACTIONS(1225), 1, + [12748] = 6, + ACTIONS(1259), 1, sym__list_item_continuation, - ACTIONS(1229), 1, + ACTIONS(1263), 1, sym__block_quote_continuation, - ACTIONS(1301), 1, + ACTIONS(1333), 1, sym__list_item_end, - STATE(443), 1, + STATE(421), 1, aux_sym__list_item_definition_repeat1, - STATE(627), 1, + STATE(651), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1004), 1, + STATE(961), 1, sym__block_quote_prefix, - [12158] = 6, - ACTIONS(1225), 1, + [12767] = 6, + ACTIONS(1335), 1, sym__list_item_continuation, - ACTIONS(1229), 1, - sym__block_quote_continuation, - ACTIONS(1303), 1, + ACTIONS(1338), 1, sym__list_item_end, - STATE(454), 1, + ACTIONS(1340), 1, + sym__block_quote_continuation, + STATE(461), 1, aux_sym__list_item_definition_repeat1, - STATE(627), 1, + STATE(651), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1004), 1, + STATE(961), 1, sym__block_quote_prefix, - [12177] = 6, - ACTIONS(1225), 1, + [12786] = 1, + ACTIONS(588), 6, + sym__newline, sym__list_item_continuation, - ACTIONS(1229), 1, + sym__list_item_end, sym__block_quote_continuation, - ACTIONS(1305), 1, + sym__table_caption_begin, + anon_sym_PIPE, + [12795] = 1, + ACTIONS(592), 6, + sym__newline, + sym__list_item_continuation, sym__list_item_end, - STATE(454), 1, - aux_sym__list_item_definition_repeat1, - STATE(627), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(1004), 1, - sym__block_quote_prefix, - [12196] = 6, - ACTIONS(29), 1, - sym__list_marker_task_begin, - ACTIONS(1116), 1, - sym_list_marker_dash, - ACTIONS(1118), 1, - sym_list_marker_star, - ACTIONS(1120), 1, - sym_list_marker_plus, - ACTIONS(1307), 1, + sym__block_quote_continuation, + sym__table_caption_begin, anon_sym_PIPE, - STATE(44), 1, - sym_list_marker_task, - [12215] = 1, - ACTIONS(1309), 6, - anon_sym_RBRACE, - anon_sym_DOT, - sym_identifier, - sym__whitespace1, - sym__id, - anon_sym_PERCENT, - [12224] = 6, - ACTIONS(1225), 1, + [12804] = 6, + ACTIONS(1259), 1, sym__list_item_continuation, - ACTIONS(1229), 1, + ACTIONS(1263), 1, sym__block_quote_continuation, - ACTIONS(1311), 1, + ACTIONS(1343), 1, sym__list_item_end, - STATE(454), 1, + STATE(461), 1, aux_sym__list_item_definition_repeat1, - STATE(627), 1, + STATE(651), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1004), 1, + STATE(961), 1, sym__block_quote_prefix, - [12243] = 6, - ACTIONS(1225), 1, + [12823] = 2, + ACTIONS(457), 1, + sym__block_quote_continuation, + ACTIONS(455), 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + [12834] = 6, + ACTIONS(1259), 1, sym__list_item_continuation, - ACTIONS(1229), 1, + ACTIONS(1263), 1, sym__block_quote_continuation, - ACTIONS(1313), 1, + ACTIONS(1345), 1, sym__list_item_end, - STATE(458), 1, + STATE(461), 1, aux_sym__list_item_definition_repeat1, - STATE(627), 1, + STATE(651), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1004), 1, + STATE(961), 1, sym__block_quote_prefix, - [12262] = 6, - ACTIONS(1225), 1, + [12853] = 6, + ACTIONS(1259), 1, sym__list_item_continuation, - ACTIONS(1229), 1, + ACTIONS(1263), 1, sym__block_quote_continuation, - ACTIONS(1315), 1, + ACTIONS(1347), 1, sym__list_item_end, - STATE(451), 1, + STATE(466), 1, aux_sym__list_item_definition_repeat1, - STATE(627), 1, + STATE(651), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1004), 1, + STATE(961), 1, sym__block_quote_prefix, - [12281] = 1, - ACTIONS(1317), 6, + [12872] = 1, + ACTIONS(1349), 6, anon_sym_RBRACE, anon_sym_DOT, sym_identifier, sym__whitespace1, sym__id, anon_sym_PERCENT, - [12290] = 6, - ACTIONS(1225), 1, - sym__list_item_continuation, - ACTIONS(1229), 1, - sym__block_quote_continuation, - ACTIONS(1319), 1, - sym__list_item_end, - STATE(454), 1, - aux_sym__list_item_definition_repeat1, - STATE(627), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(1004), 1, - sym__block_quote_prefix, - [12309] = 6, - ACTIONS(1225), 1, + [12881] = 1, + ACTIONS(1351), 6, + anon_sym_RBRACE, + anon_sym_DOT, + sym_identifier, + sym__whitespace1, + sym__id, + anon_sym_PERCENT, + [12890] = 1, + ACTIONS(1353), 6, + anon_sym_RBRACE, + anon_sym_DOT, + sym_identifier, + sym__whitespace1, + sym__id, + anon_sym_PERCENT, + [12899] = 6, + ACTIONS(1259), 1, sym__list_item_continuation, - ACTIONS(1229), 1, + ACTIONS(1263), 1, sym__block_quote_continuation, - ACTIONS(1321), 1, + ACTIONS(1355), 1, sym__list_item_end, - STATE(447), 1, + STATE(461), 1, aux_sym__list_item_definition_repeat1, - STATE(627), 1, + STATE(651), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1004), 1, + STATE(961), 1, sym__block_quote_prefix, - [12328] = 1, - ACTIONS(1323), 6, + [12918] = 1, + ACTIONS(1357), 6, anon_sym_RBRACE, anon_sym_DOT, sym_identifier, sym__whitespace1, sym__id, anon_sym_PERCENT, - [12337] = 6, - ACTIONS(1325), 1, + [12927] = 1, + ACTIONS(1359), 6, + anon_sym_RBRACE, + anon_sym_DOT, + sym_identifier, + sym__whitespace1, + sym__id, + anon_sym_PERCENT, + [12936] = 1, + ACTIONS(620), 6, + sym__newline, sym__list_item_continuation, - ACTIONS(1328), 1, sym__list_item_end, - ACTIONS(1330), 1, sym__block_quote_continuation, - STATE(454), 1, - aux_sym__list_item_definition_repeat1, - STATE(627), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(1004), 1, - sym__block_quote_prefix, - [12356] = 6, - ACTIONS(1225), 1, + sym__table_caption_begin, + anon_sym_PIPE, + [12945] = 6, + ACTIONS(1259), 1, sym__list_item_continuation, - ACTIONS(1229), 1, + ACTIONS(1263), 1, sym__block_quote_continuation, - ACTIONS(1333), 1, + ACTIONS(1361), 1, sym__list_item_end, - STATE(454), 1, + STATE(471), 1, aux_sym__list_item_definition_repeat1, - STATE(627), 1, + STATE(651), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1004), 1, + STATE(961), 1, sym__block_quote_prefix, - [12375] = 6, - ACTIONS(1225), 1, + [12964] = 6, + ACTIONS(1259), 1, sym__list_item_continuation, - ACTIONS(1229), 1, + ACTIONS(1263), 1, sym__block_quote_continuation, - ACTIONS(1335), 1, + ACTIONS(1363), 1, sym__list_item_end, - STATE(425), 1, + STATE(461), 1, aux_sym__list_item_definition_repeat1, - STATE(627), 1, + STATE(651), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1004), 1, + STATE(961), 1, sym__block_quote_prefix, - [12394] = 1, - ACTIONS(1337), 6, - anon_sym_RBRACE, - anon_sym_DOT, - sym_identifier, - sym__whitespace1, - sym__id, - anon_sym_PERCENT, - [12403] = 6, - ACTIONS(1225), 1, + [12983] = 6, + ACTIONS(1259), 1, sym__list_item_continuation, - ACTIONS(1229), 1, + ACTIONS(1263), 1, sym__block_quote_continuation, - ACTIONS(1339), 1, + ACTIONS(1365), 1, sym__list_item_end, - STATE(454), 1, + STATE(476), 1, aux_sym__list_item_definition_repeat1, - STATE(627), 1, + STATE(651), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1004), 1, + STATE(961), 1, sym__block_quote_prefix, - [12422] = 3, - ACTIONS(888), 1, - sym__table_caption_begin, - STATE(594), 1, - sym_table_caption, - ACTIONS(527), 3, - sym__list_item_continuation, - sym__list_item_end, + [13002] = 1, + ACTIONS(588), 5, + sym__block_close, + sym__newline, sym__block_quote_continuation, - [12434] = 4, - ACTIONS(1341), 1, + sym__table_caption_begin, + anon_sym_PIPE, + [13010] = 1, + ACTIONS(630), 5, sym__block_close, - ACTIONS(1343), 1, + sym__newline, sym__block_quote_continuation, - STATE(460), 1, - aux_sym__block_quote_content_repeat1, - STATE(59), 2, - sym__block_quote_prefix, - aux_sym__block_quote_prefix_repeat1, - [12448] = 1, - ACTIONS(621), 5, + sym__table_caption_begin, + anon_sym_PIPE, + [13018] = 1, + ACTIONS(634), 5, sym__block_close, sym__newline, sym__block_quote_continuation, sym__table_caption_begin, anon_sym_PIPE, - [12456] = 1, - ACTIONS(617), 5, + [13026] = 1, + ACTIONS(592), 5, sym__block_close, sym__newline, sym__block_quote_continuation, sym__table_caption_begin, anon_sym_PIPE, - [12464] = 1, - ACTIONS(549), 5, + [13034] = 3, + ACTIONS(945), 1, + sym__table_caption_begin, + STATE(616), 1, + sym_table_caption, + ACTIONS(544), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [13046] = 1, + ACTIONS(560), 5, sym__block_close, sym__newline, sym__block_quote_continuation, sym__table_caption_begin, anon_sym_PIPE, - [12472] = 1, - ACTIONS(553), 5, + [13054] = 1, + ACTIONS(648), 5, sym__block_close, sym__newline, sym__block_quote_continuation, sym__table_caption_begin, anon_sym_PIPE, - [12480] = 1, - ACTIONS(581), 5, + [13062] = 4, + ACTIONS(1367), 1, + sym__block_close, + ACTIONS(1369), 1, + sym__block_quote_continuation, + STATE(485), 1, + aux_sym__block_quote_content_repeat1, + STATE(63), 2, + sym__block_quote_prefix, + aux_sym__block_quote_prefix_repeat1, + [13076] = 4, + ACTIONS(1372), 1, + sym__block_close, + ACTIONS(1374), 1, + sym__block_quote_continuation, + STATE(487), 1, + aux_sym__block_quote_content_repeat1, + STATE(63), 2, + sym__block_quote_prefix, + aux_sym__block_quote_prefix_repeat1, + [13090] = 4, + ACTIONS(1374), 1, + sym__block_quote_continuation, + ACTIONS(1376), 1, + sym__block_close, + STATE(485), 1, + aux_sym__block_quote_content_repeat1, + STATE(63), 2, + sym__block_quote_prefix, + aux_sym__block_quote_prefix_repeat1, + [13104] = 1, + ACTIONS(620), 5, sym__block_close, sym__newline, sym__block_quote_continuation, sym__table_caption_begin, anon_sym_PIPE, - [12488] = 1, - ACTIONS(585), 5, + [13112] = 3, + ACTIONS(31), 1, + sym_list_marker_definition, + ACTIONS(1378), 1, + sym__block_close, + STATE(605), 2, + sym__list_item_definition, + aux_sym__list_definition_repeat1, + [13123] = 3, + ACTIONS(47), 1, + sym_list_marker_upper_alpha_paren, + ACTIONS(1380), 1, + sym__block_close, + STATE(498), 2, + sym__list_item_upper_alpha_paren, + aux_sym__list_upper_alpha_paren_repeat1, + [13134] = 3, + ACTIONS(1382), 1, + sym__block_close, + ACTIONS(1384), 1, + sym_list_marker_decimal_period, + STATE(491), 2, + sym__list_item_decimal_period, + aux_sym__list_decimal_period_repeat1, + [13145] = 3, + ACTIONS(1387), 1, + sym__block_close, + ACTIONS(1389), 1, + sym_list_marker_decimal_paren, + STATE(492), 2, + sym__list_item_decimal_paren, + aux_sym__list_decimal_paren_repeat1, + [13156] = 3, + ACTIONS(1392), 1, + sym__block_close, + ACTIONS(1394), 1, + sym_list_marker_decimal_parens, + STATE(493), 2, + sym__list_item_decimal_parens, + aux_sym__list_decimal_parens_repeat1, + [13167] = 3, + ACTIONS(1397), 1, + sym__block_close, + ACTIONS(1399), 1, + sym_list_marker_lower_alpha_period, + STATE(494), 2, + sym__list_item_lower_alpha_period, + aux_sym__list_lower_alpha_period_repeat1, + [13178] = 3, + ACTIONS(1402), 1, + sym__block_close, + ACTIONS(1404), 1, + sym_list_marker_lower_alpha_paren, + STATE(495), 2, + sym__list_item_lower_alpha_paren, + aux_sym__list_lower_alpha_paren_repeat1, + [13189] = 3, + ACTIONS(1407), 1, sym__block_close, + ACTIONS(1409), 1, + sym_list_marker_lower_alpha_parens, + STATE(496), 2, + sym__list_item_lower_alpha_parens, + aux_sym__list_lower_alpha_parens_repeat1, + [13200] = 3, + ACTIONS(1412), 1, + sym__block_close, + ACTIONS(1414), 1, + sym_list_marker_upper_alpha_period, + STATE(497), 2, + sym__list_item_upper_alpha_period, + aux_sym__list_upper_alpha_period_repeat1, + [13211] = 3, + ACTIONS(1417), 1, + sym__block_close, + ACTIONS(1419), 1, + sym_list_marker_upper_alpha_paren, + STATE(498), 2, + sym__list_item_upper_alpha_paren, + aux_sym__list_upper_alpha_paren_repeat1, + [13222] = 3, + ACTIONS(1422), 1, + sym__block_close, + ACTIONS(1424), 1, + sym_list_marker_upper_alpha_parens, + STATE(499), 2, + sym__list_item_upper_alpha_parens, + aux_sym__list_upper_alpha_parens_repeat1, + [13233] = 3, + ACTIONS(1427), 1, + sym__block_close, + ACTIONS(1429), 1, + sym_list_marker_lower_roman_period, + STATE(500), 2, + sym__list_item_lower_roman_period, + aux_sym__list_lower_roman_period_repeat1, + [13244] = 3, + ACTIONS(1432), 1, + sym__block_close, + ACTIONS(1434), 1, + sym_list_marker_lower_roman_paren, + STATE(501), 2, + sym__list_item_lower_roman_paren, + aux_sym__list_lower_roman_paren_repeat1, + [13255] = 3, + ACTIONS(1437), 1, + sym__block_close, + ACTIONS(1439), 1, + sym_list_marker_lower_roman_parens, + STATE(502), 2, + sym__list_item_lower_roman_parens, + aux_sym__list_lower_roman_parens_repeat1, + [13266] = 3, + ACTIONS(1442), 1, + sym__block_close, + ACTIONS(1444), 1, + sym_list_marker_upper_roman_period, + STATE(503), 2, + sym__list_item_upper_roman_period, + aux_sym__list_upper_roman_period_repeat1, + [13277] = 3, + ACTIONS(1447), 1, + sym__block_close, + ACTIONS(1449), 1, + sym_list_marker_upper_roman_paren, + STATE(504), 2, + sym__list_item_upper_roman_paren, + aux_sym__list_upper_roman_paren_repeat1, + [13288] = 3, + ACTIONS(1452), 1, + sym__block_close, + ACTIONS(1454), 1, + sym_list_marker_upper_roman_parens, + STATE(505), 2, + sym__list_item_upper_roman_parens, + aux_sym__list_upper_roman_parens_repeat1, + [13299] = 4, + ACTIONS(1457), 1, + anon_sym_EQ, + ACTIONS(1459), 1, + sym_language, + ACTIONS(1461), 1, + sym__newline, + STATE(1015), 1, + sym_raw_block_info, + [13312] = 3, + ACTIONS(1463), 1, + aux_sym__line_token1, + STATE(920), 1, + sym_frontmatter_content, + STATE(512), 2, + sym__line, + aux_sym_frontmatter_content_repeat1, + [13323] = 4, + ACTIONS(1457), 1, + anon_sym_EQ, + ACTIONS(1465), 1, + sym_language, + ACTIONS(1467), 1, sym__newline, - sym__block_quote_continuation, - sym__table_caption_begin, - anon_sym_PIPE, - [12496] = 4, - ACTIONS(1346), 1, - sym__block_close, - ACTIONS(1348), 1, - sym__block_quote_continuation, - STATE(469), 1, - aux_sym__block_quote_content_repeat1, - STATE(59), 2, - sym__block_quote_prefix, - aux_sym__block_quote_prefix_repeat1, - [12510] = 1, - ACTIONS(613), 5, - sym__block_close, + STATE(994), 1, + sym_raw_block_info, + [13336] = 4, + ACTIONS(1457), 1, + anon_sym_EQ, + ACTIONS(1469), 1, + sym_language, + ACTIONS(1471), 1, sym__newline, - sym__block_quote_continuation, - sym__table_caption_begin, - anon_sym_PIPE, - [12518] = 4, - ACTIONS(1348), 1, - sym__block_quote_continuation, - ACTIONS(1350), 1, + STATE(972), 1, + sym_raw_block_info, + [13349] = 4, + ACTIONS(1457), 1, + anon_sym_EQ, + ACTIONS(1473), 1, + sym_language, + ACTIONS(1475), 1, + sym__newline, + STATE(950), 1, + sym_raw_block_info, + [13362] = 3, + ACTIONS(1479), 1, + anon_sym_PERCENT, + STATE(532), 1, + aux_sym__comment_no_newline_repeat1, + ACTIONS(1477), 2, + sym_backslash_escape, + aux_sym__comment_no_newline_token1, + [13373] = 3, + ACTIONS(1463), 1, + aux_sym__line_token1, + ACTIONS(1481), 1, + sym_frontmatter_marker, + STATE(533), 2, + sym__line, + aux_sym_frontmatter_content_repeat1, + [13384] = 3, + ACTIONS(1463), 1, + aux_sym__line_token1, + STATE(1061), 1, + sym_frontmatter_content, + STATE(512), 2, + sym__line, + aux_sym_frontmatter_content_repeat1, + [13395] = 3, + ACTIONS(1483), 1, + anon_sym_PERCENT, + STATE(511), 1, + aux_sym__comment_no_newline_repeat1, + ACTIONS(1477), 2, + sym_backslash_escape, + aux_sym__comment_no_newline_token1, + [13406] = 3, + ACTIONS(61), 1, + sym_list_marker_upper_roman_parens, + ACTIONS(1485), 1, sym__block_close, - STATE(460), 1, - aux_sym__block_quote_content_repeat1, - STATE(59), 2, - sym__block_quote_prefix, - aux_sym__block_quote_prefix_repeat1, - [12532] = 3, + STATE(505), 2, + sym__list_item_upper_roman_parens, + aux_sym__list_upper_roman_parens_repeat1, + [13417] = 3, ACTIONS(51), 1, sym_list_marker_upper_roman_paren, - ACTIONS(1352), 1, + ACTIONS(1487), 1, sym__block_close, - STATE(585), 2, + STATE(504), 2, sym__list_item_upper_roman_paren, aux_sym__list_upper_roman_paren_repeat1, - [12543] = 3, - ACTIONS(39), 1, - sym_list_marker_lower_roman_period, - ACTIONS(1354), 1, - sym__block_close, - STATE(573), 2, - sym__list_item_lower_roman_period, - aux_sym__list_lower_roman_period_repeat1, - [12554] = 3, + [13428] = 3, ACTIONS(41), 1, sym_list_marker_upper_roman_period, - ACTIONS(1356), 1, + ACTIONS(1489), 1, sym__block_close, - STATE(589), 2, + STATE(503), 2, sym__list_item_upper_roman_period, aux_sym__list_upper_roman_period_repeat1, - [12565] = 3, - ACTIONS(1358), 1, - aux_sym__line_token1, - ACTIONS(1361), 1, - sym_frontmatter_marker, - STATE(473), 2, - sym__line, - aux_sym_frontmatter_content_repeat1, - [12576] = 3, - ACTIONS(61), 1, - sym_list_marker_upper_roman_parens, - ACTIONS(1363), 1, - sym__block_close, - STATE(583), 2, - sym__list_item_upper_roman_parens, - aux_sym__list_upper_roman_parens_repeat1, - [12587] = 3, + [13439] = 3, ACTIONS(59), 1, sym_list_marker_lower_roman_parens, - ACTIONS(1365), 1, + ACTIONS(1491), 1, sym__block_close, - STATE(581), 2, + STATE(502), 2, sym__list_item_lower_roman_parens, aux_sym__list_lower_roman_parens_repeat1, - [12598] = 3, + [13450] = 3, ACTIONS(49), 1, sym_list_marker_lower_roman_paren, - ACTIONS(1367), 1, + ACTIONS(1493), 1, sym__block_close, - STATE(578), 2, + STATE(501), 2, sym__list_item_lower_roman_paren, aux_sym__list_lower_roman_paren_repeat1, - [12609] = 3, - ACTIONS(33), 1, - sym_list_marker_decimal_period, - ACTIONS(1369), 1, - sym__block_close, - STATE(547), 2, - sym__list_item_decimal_period, - aux_sym__list_decimal_period_repeat1, - [12620] = 3, - ACTIONS(51), 1, - sym_list_marker_upper_roman_paren, - ACTIONS(1371), 1, - sym__block_close, - STATE(585), 2, - sym__list_item_upper_roman_paren, - aux_sym__list_upper_roman_paren_repeat1, - [12631] = 3, + [13461] = 3, ACTIONS(39), 1, sym_list_marker_lower_roman_period, - ACTIONS(1373), 1, + ACTIONS(1495), 1, sym__block_close, - STATE(573), 2, + STATE(500), 2, sym__list_item_lower_roman_period, aux_sym__list_lower_roman_period_repeat1, - [12642] = 3, + [13472] = 3, ACTIONS(57), 1, sym_list_marker_upper_alpha_parens, - ACTIONS(1375), 1, + ACTIONS(1497), 1, sym__block_close, - STATE(568), 2, + STATE(499), 2, sym__list_item_upper_alpha_parens, aux_sym__list_upper_alpha_parens_repeat1, - [12653] = 3, + [13483] = 3, ACTIONS(47), 1, sym_list_marker_upper_alpha_paren, - ACTIONS(1377), 1, + ACTIONS(1499), 1, sym__block_close, - STATE(563), 2, + STATE(498), 2, sym__list_item_upper_alpha_paren, aux_sym__list_upper_alpha_paren_repeat1, - [12664] = 3, + [13494] = 3, ACTIONS(37), 1, sym_list_marker_upper_alpha_period, - ACTIONS(1379), 1, + ACTIONS(1501), 1, sym__block_close, - STATE(559), 2, + STATE(497), 2, sym__list_item_upper_alpha_period, aux_sym__list_upper_alpha_period_repeat1, - [12675] = 3, + [13505] = 3, ACTIONS(55), 1, sym_list_marker_lower_alpha_parens, - ACTIONS(1381), 1, + ACTIONS(1503), 1, sym__block_close, - STATE(555), 2, + STATE(496), 2, sym__list_item_lower_alpha_parens, aux_sym__list_lower_alpha_parens_repeat1, - [12686] = 3, - ACTIONS(41), 1, - sym_list_marker_upper_roman_period, - ACTIONS(1383), 1, - sym__block_close, - STATE(589), 2, - sym__list_item_upper_roman_period, - aux_sym__list_upper_roman_period_repeat1, - [12697] = 3, + [13516] = 3, ACTIONS(45), 1, sym_list_marker_lower_alpha_paren, - ACTIONS(1385), 1, + ACTIONS(1505), 1, sym__block_close, - STATE(552), 2, + STATE(495), 2, sym__list_item_lower_alpha_paren, aux_sym__list_lower_alpha_paren_repeat1, - [12708] = 3, - ACTIONS(35), 1, - sym_list_marker_lower_alpha_period, - ACTIONS(1387), 1, - sym__block_close, - STATE(550), 2, - sym__list_item_lower_alpha_period, - aux_sym__list_lower_alpha_period_repeat1, - [12719] = 3, - ACTIONS(59), 1, - sym_list_marker_lower_roman_parens, - ACTIONS(1389), 1, - sym__block_close, - STATE(581), 2, - sym__list_item_lower_roman_parens, - aux_sym__list_lower_roman_parens_repeat1, - [12730] = 4, - ACTIONS(1391), 1, - anon_sym_EQ, - ACTIONS(1393), 1, - sym_language, - ACTIONS(1395), 1, - sym__newline, - STATE(923), 1, - sym_raw_block_info, - [12743] = 3, + [13527] = 3, ACTIONS(35), 1, sym_list_marker_lower_alpha_period, - ACTIONS(1397), 1, + ACTIONS(1507), 1, sym__block_close, - STATE(550), 2, + STATE(494), 2, sym__list_item_lower_alpha_period, aux_sym__list_lower_alpha_period_repeat1, - [12754] = 3, + [13538] = 3, ACTIONS(53), 1, sym_list_marker_decimal_parens, - ACTIONS(1399), 1, + ACTIONS(1509), 1, sym__block_close, - STATE(549), 2, + STATE(493), 2, sym__list_item_decimal_parens, aux_sym__list_decimal_parens_repeat1, - [12765] = 3, + [13549] = 3, + ACTIONS(957), 1, + sym__table_caption_begin, + STATE(872), 1, + sym_table_caption, + ACTIONS(544), 2, + sym__block_close, + sym__block_quote_continuation, + [13560] = 3, + ACTIONS(43), 1, + sym_list_marker_decimal_paren, + ACTIONS(1511), 1, + sym__block_close, + STATE(492), 2, + sym__list_item_decimal_paren, + aux_sym__list_decimal_paren_repeat1, + [13571] = 3, + ACTIONS(33), 1, + sym_list_marker_decimal_period, + ACTIONS(1513), 1, + sym__block_close, + STATE(491), 2, + sym__list_item_decimal_period, + aux_sym__list_decimal_period_repeat1, + [13582] = 3, + ACTIONS(31), 1, + sym_list_marker_definition, + ACTIONS(1515), 1, + sym__block_close, + STATE(605), 2, + sym__list_item_definition, + aux_sym__list_definition_repeat1, + [13593] = 3, + ACTIONS(1520), 1, + anon_sym_PERCENT, + STATE(532), 1, + aux_sym__comment_no_newline_repeat1, + ACTIONS(1517), 2, + sym_backslash_escape, + aux_sym__comment_no_newline_token1, + [13604] = 3, + ACTIONS(1522), 1, + aux_sym__line_token1, + ACTIONS(1525), 1, + sym_frontmatter_marker, + STATE(533), 2, + sym__line, + aux_sym_frontmatter_content_repeat1, + [13615] = 3, + ACTIONS(61), 1, + sym_list_marker_upper_roman_parens, + ACTIONS(1527), 1, + sym__block_close, + STATE(505), 2, + sym__list_item_upper_roman_parens, + aux_sym__list_upper_roman_parens_repeat1, + [13626] = 3, + ACTIONS(51), 1, + sym_list_marker_upper_roman_paren, + ACTIONS(1529), 1, + sym__block_close, + STATE(504), 2, + sym__list_item_upper_roman_paren, + aux_sym__list_upper_roman_paren_repeat1, + [13637] = 3, + ACTIONS(41), 1, + sym_list_marker_upper_roman_period, + ACTIONS(1531), 1, + sym__block_close, + STATE(503), 2, + sym__list_item_upper_roman_period, + aux_sym__list_upper_roman_period_repeat1, + [13648] = 3, + ACTIONS(59), 1, + sym_list_marker_lower_roman_parens, + ACTIONS(1533), 1, + sym__block_close, + STATE(502), 2, + sym__list_item_lower_roman_parens, + aux_sym__list_lower_roman_parens_repeat1, + [13659] = 3, ACTIONS(49), 1, sym_list_marker_lower_roman_paren, - ACTIONS(1401), 1, + ACTIONS(1535), 1, sym__block_close, - STATE(578), 2, + STATE(501), 2, sym__list_item_lower_roman_paren, aux_sym__list_lower_roman_paren_repeat1, - [12776] = 3, + [13670] = 3, ACTIONS(39), 1, sym_list_marker_lower_roman_period, - ACTIONS(1403), 1, + ACTIONS(1537), 1, sym__block_close, - STATE(573), 2, + STATE(500), 2, sym__list_item_lower_roman_period, aux_sym__list_lower_roman_period_repeat1, - [12787] = 3, + [13681] = 3, + ACTIONS(57), 1, + sym_list_marker_upper_alpha_parens, + ACTIONS(1539), 1, + sym__block_close, + STATE(499), 2, + sym__list_item_upper_alpha_parens, + aux_sym__list_upper_alpha_parens_repeat1, + [13692] = 3, + ACTIONS(47), 1, + sym_list_marker_upper_alpha_paren, + ACTIONS(1541), 1, + sym__block_close, + STATE(498), 2, + sym__list_item_upper_alpha_paren, + aux_sym__list_upper_alpha_paren_repeat1, + [13703] = 3, + ACTIONS(37), 1, + sym_list_marker_upper_alpha_period, + ACTIONS(1543), 1, + sym__block_close, + STATE(497), 2, + sym__list_item_upper_alpha_period, + aux_sym__list_upper_alpha_period_repeat1, + [13714] = 3, + ACTIONS(55), 1, + sym_list_marker_lower_alpha_parens, + ACTIONS(1545), 1, + sym__block_close, + STATE(496), 2, + sym__list_item_lower_alpha_parens, + aux_sym__list_lower_alpha_parens_repeat1, + [13725] = 3, + ACTIONS(45), 1, + sym_list_marker_lower_alpha_paren, + ACTIONS(1547), 1, + sym__block_close, + STATE(495), 2, + sym__list_item_lower_alpha_paren, + aux_sym__list_lower_alpha_paren_repeat1, + [13736] = 3, + ACTIONS(35), 1, + sym_list_marker_lower_alpha_period, + ACTIONS(1549), 1, + sym__block_close, + STATE(494), 2, + sym__list_item_lower_alpha_period, + aux_sym__list_lower_alpha_period_repeat1, + [13747] = 3, + ACTIONS(53), 1, + sym_list_marker_decimal_parens, + ACTIONS(1551), 1, + sym__block_close, + STATE(493), 2, + sym__list_item_decimal_parens, + aux_sym__list_decimal_parens_repeat1, + [13758] = 3, ACTIONS(43), 1, sym_list_marker_decimal_paren, - ACTIONS(1405), 1, + ACTIONS(1553), 1, sym__block_close, - STATE(548), 2, + STATE(492), 2, sym__list_item_decimal_paren, aux_sym__list_decimal_paren_repeat1, - [12798] = 3, + [13769] = 3, + ACTIONS(33), 1, + sym_list_marker_decimal_period, + ACTIONS(1555), 1, + sym__block_close, + STATE(491), 2, + sym__list_item_decimal_period, + aux_sym__list_decimal_period_repeat1, + [13780] = 3, ACTIONS(31), 1, sym_list_marker_definition, - ACTIONS(1407), 1, + ACTIONS(1557), 1, sym__block_close, - STATE(545), 2, + STATE(605), 2, sym__list_item_definition, aux_sym__list_definition_repeat1, - [12809] = 3, + [13791] = 3, + ACTIONS(61), 1, + sym_list_marker_upper_roman_parens, + ACTIONS(1559), 1, + sym__block_close, + STATE(505), 2, + sym__list_item_upper_roman_parens, + aux_sym__list_upper_roman_parens_repeat1, + [13802] = 3, + ACTIONS(51), 1, + sym_list_marker_upper_roman_paren, + ACTIONS(1561), 1, + sym__block_close, + STATE(504), 2, + sym__list_item_upper_roman_paren, + aux_sym__list_upper_roman_paren_repeat1, + [13813] = 3, + ACTIONS(41), 1, + sym_list_marker_upper_roman_period, + ACTIONS(1563), 1, + sym__block_close, + STATE(503), 2, + sym__list_item_upper_roman_period, + aux_sym__list_upper_roman_period_repeat1, + [13824] = 3, + ACTIONS(59), 1, + sym_list_marker_lower_roman_parens, + ACTIONS(1565), 1, + sym__block_close, + STATE(502), 2, + sym__list_item_lower_roman_parens, + aux_sym__list_lower_roman_parens_repeat1, + [13835] = 3, + ACTIONS(49), 1, + sym_list_marker_lower_roman_paren, + ACTIONS(1567), 1, + sym__block_close, + STATE(501), 2, + sym__list_item_lower_roman_paren, + aux_sym__list_lower_roman_paren_repeat1, + [13846] = 3, + ACTIONS(39), 1, + sym_list_marker_lower_roman_period, + ACTIONS(1569), 1, + sym__block_close, + STATE(500), 2, + sym__list_item_lower_roman_period, + aux_sym__list_lower_roman_period_repeat1, + [13857] = 3, ACTIONS(57), 1, sym_list_marker_upper_alpha_parens, - ACTIONS(1409), 1, + ACTIONS(1571), 1, sym__block_close, - STATE(568), 2, + STATE(499), 2, sym__list_item_upper_alpha_parens, aux_sym__list_upper_alpha_parens_repeat1, - [12820] = 3, + [13868] = 3, ACTIONS(47), 1, sym_list_marker_upper_alpha_paren, - ACTIONS(1411), 1, + ACTIONS(1573), 1, sym__block_close, - STATE(563), 2, + STATE(498), 2, sym__list_item_upper_alpha_paren, aux_sym__list_upper_alpha_paren_repeat1, - [12831] = 3, + [13879] = 3, ACTIONS(37), 1, sym_list_marker_upper_alpha_period, - ACTIONS(1413), 1, + ACTIONS(1575), 1, sym__block_close, - STATE(559), 2, + STATE(497), 2, sym__list_item_upper_alpha_period, aux_sym__list_upper_alpha_period_repeat1, - [12842] = 3, + [13890] = 4, + ACTIONS(1457), 1, + anon_sym_EQ, + ACTIONS(1577), 1, + sym_language, + ACTIONS(1579), 1, + sym__newline, + STATE(969), 1, + sym_raw_block_info, + [13903] = 3, ACTIONS(55), 1, sym_list_marker_lower_alpha_parens, - ACTIONS(1415), 1, + ACTIONS(1581), 1, sym__block_close, - STATE(555), 2, + STATE(496), 2, sym__list_item_lower_alpha_parens, aux_sym__list_lower_alpha_parens_repeat1, - [12853] = 3, + [13914] = 3, ACTIONS(45), 1, sym_list_marker_lower_alpha_paren, - ACTIONS(1417), 1, + ACTIONS(1583), 1, sym__block_close, - STATE(552), 2, + STATE(495), 2, sym__list_item_lower_alpha_paren, aux_sym__list_lower_alpha_paren_repeat1, - [12864] = 3, - ACTIONS(35), 1, - sym_list_marker_lower_alpha_period, - ACTIONS(1419), 1, + [13925] = 3, + ACTIONS(51), 1, + sym_list_marker_upper_roman_paren, + ACTIONS(1585), 1, sym__block_close, - STATE(550), 2, - sym__list_item_lower_alpha_period, - aux_sym__list_lower_alpha_period_repeat1, - [12875] = 3, - ACTIONS(1423), 1, - anon_sym_PERCENT, - STATE(546), 1, - aux_sym__comment_no_newline_repeat1, - ACTIONS(1421), 2, - sym_backslash_escape, - aux_sym__comment_no_newline_token1, - [12886] = 3, + STATE(504), 2, + sym__list_item_upper_roman_paren, + aux_sym__list_upper_roman_paren_repeat1, + [13936] = 3, ACTIONS(53), 1, sym_list_marker_decimal_parens, - ACTIONS(1425), 1, + ACTIONS(1587), 1, sym__block_close, - STATE(549), 2, + STATE(493), 2, sym__list_item_decimal_parens, aux_sym__list_decimal_parens_repeat1, - [12897] = 3, - ACTIONS(919), 1, - sym__table_caption_begin, - STATE(803), 1, - sym_table_caption, - ACTIONS(527), 2, - sym__block_close, - sym__block_quote_continuation, - [12908] = 3, + [13947] = 3, ACTIONS(43), 1, sym_list_marker_decimal_paren, - ACTIONS(1427), 1, + ACTIONS(1589), 1, sym__block_close, - STATE(548), 2, + STATE(492), 2, sym__list_item_decimal_paren, aux_sym__list_decimal_paren_repeat1, - [12919] = 4, - ACTIONS(1391), 1, - anon_sym_EQ, - ACTIONS(1429), 1, - sym_language, - ACTIONS(1431), 1, - sym__newline, - STATE(944), 1, - sym_raw_block_info, - [12932] = 3, + [13958] = 3, ACTIONS(33), 1, sym_list_marker_decimal_period, - ACTIONS(1433), 1, + ACTIONS(1591), 1, sym__block_close, - STATE(547), 2, + STATE(491), 2, sym__list_item_decimal_period, aux_sym__list_decimal_period_repeat1, - [12943] = 3, - ACTIONS(61), 1, - sym_list_marker_upper_roman_parens, - ACTIONS(1435), 1, - sym__block_close, - STATE(583), 2, - sym__list_item_upper_roman_parens, - aux_sym__list_upper_roman_parens_repeat1, - [12954] = 3, - ACTIONS(43), 1, - sym_list_marker_decimal_paren, - ACTIONS(1437), 1, - sym__block_close, - STATE(548), 2, - sym__list_item_decimal_paren, - aux_sym__list_decimal_paren_repeat1, - [12965] = 3, - ACTIONS(31), 1, - sym_list_marker_definition, - ACTIONS(1439), 1, - sym__block_close, - STATE(545), 2, - sym__list_item_definition, - aux_sym__list_definition_repeat1, - [12976] = 3, + [13969] = 3, ACTIONS(61), 1, sym_list_marker_upper_roman_parens, - ACTIONS(1441), 1, + ACTIONS(1593), 1, sym__block_close, - STATE(583), 2, + STATE(505), 2, sym__list_item_upper_roman_parens, aux_sym__list_upper_roman_parens_repeat1, - [12987] = 3, - ACTIONS(1443), 1, - aux_sym__line_token1, - STATE(899), 1, - sym_frontmatter_content, - STATE(512), 2, - sym__line, - aux_sym_frontmatter_content_repeat1, - [12998] = 3, - ACTIONS(1443), 1, - aux_sym__line_token1, - ACTIONS(1445), 1, - sym_frontmatter_marker, - STATE(473), 2, - sym__line, - aux_sym_frontmatter_content_repeat1, - [13009] = 3, + [13980] = 3, ACTIONS(51), 1, sym_list_marker_upper_roman_paren, - ACTIONS(1447), 1, + ACTIONS(1595), 1, sym__block_close, - STATE(585), 2, + STATE(504), 2, sym__list_item_upper_roman_paren, aux_sym__list_upper_roman_paren_repeat1, - [13020] = 3, - ACTIONS(31), 1, - sym_list_marker_definition, - ACTIONS(1449), 1, - sym__block_close, - STATE(545), 2, - sym__list_item_definition, - aux_sym__list_definition_repeat1, - [13031] = 3, - ACTIONS(33), 1, - sym_list_marker_decimal_period, - ACTIONS(1451), 1, - sym__block_close, - STATE(547), 2, - sym__list_item_decimal_period, - aux_sym__list_decimal_period_repeat1, - [13042] = 3, - ACTIONS(33), 1, - sym_list_marker_decimal_period, - ACTIONS(1453), 1, - sym__block_close, - STATE(547), 2, - sym__list_item_decimal_period, - aux_sym__list_decimal_period_repeat1, - [13053] = 3, - ACTIONS(31), 1, - sym_list_marker_definition, - ACTIONS(1455), 1, - sym__block_close, - STATE(545), 2, - sym__list_item_definition, - aux_sym__list_definition_repeat1, - [13064] = 3, - ACTIONS(43), 1, - sym_list_marker_decimal_paren, - ACTIONS(1457), 1, - sym__block_close, - STATE(548), 2, - sym__list_item_decimal_paren, - aux_sym__list_decimal_paren_repeat1, - [13075] = 3, - ACTIONS(53), 1, - sym_list_marker_decimal_parens, - ACTIONS(1459), 1, - sym__block_close, - STATE(549), 2, - sym__list_item_decimal_parens, - aux_sym__list_decimal_parens_repeat1, - [13086] = 3, - ACTIONS(35), 1, - sym_list_marker_lower_alpha_period, - ACTIONS(1461), 1, - sym__block_close, - STATE(550), 2, - sym__list_item_lower_alpha_period, - aux_sym__list_lower_alpha_period_repeat1, - [13097] = 3, - ACTIONS(45), 1, - sym_list_marker_lower_alpha_paren, - ACTIONS(1463), 1, - sym__block_close, - STATE(552), 2, - sym__list_item_lower_alpha_paren, - aux_sym__list_lower_alpha_paren_repeat1, - [13108] = 3, - ACTIONS(53), 1, - sym_list_marker_decimal_parens, - ACTIONS(1465), 1, - sym__block_close, - STATE(549), 2, - sym__list_item_decimal_parens, - aux_sym__list_decimal_parens_repeat1, - [13119] = 3, - ACTIONS(55), 1, - sym_list_marker_lower_alpha_parens, - ACTIONS(1467), 1, - sym__block_close, - STATE(555), 2, - sym__list_item_lower_alpha_parens, - aux_sym__list_lower_alpha_parens_repeat1, - [13130] = 3, - ACTIONS(37), 1, - sym_list_marker_upper_alpha_period, - ACTIONS(1469), 1, - sym__block_close, - STATE(559), 2, - sym__list_item_upper_alpha_period, - aux_sym__list_upper_alpha_period_repeat1, - [13141] = 4, - ACTIONS(1391), 1, - anon_sym_EQ, - ACTIONS(1471), 1, - sym_language, - ACTIONS(1473), 1, - sym__newline, - STATE(965), 1, - sym_raw_block_info, - [13154] = 3, - ACTIONS(35), 1, - sym_list_marker_lower_alpha_period, - ACTIONS(1475), 1, - sym__block_close, - STATE(550), 2, - sym__list_item_lower_alpha_period, - aux_sym__list_lower_alpha_period_repeat1, - [13165] = 3, - ACTIONS(47), 1, - sym_list_marker_upper_alpha_paren, - ACTIONS(1477), 1, - sym__block_close, - STATE(563), 2, - sym__list_item_upper_alpha_paren, - aux_sym__list_upper_alpha_paren_repeat1, - [13176] = 3, - ACTIONS(57), 1, - sym_list_marker_upper_alpha_parens, - ACTIONS(1479), 1, + [13991] = 3, + ACTIONS(41), 1, + sym_list_marker_upper_roman_period, + ACTIONS(1597), 1, sym__block_close, - STATE(568), 2, - sym__list_item_upper_alpha_parens, - aux_sym__list_upper_alpha_parens_repeat1, - [13187] = 3, - ACTIONS(39), 1, - sym_list_marker_lower_roman_period, - ACTIONS(1481), 1, + STATE(503), 2, + sym__list_item_upper_roman_period, + aux_sym__list_upper_roman_period_repeat1, + [14002] = 3, + ACTIONS(59), 1, + sym_list_marker_lower_roman_parens, + ACTIONS(1599), 1, sym__block_close, - STATE(573), 2, - sym__list_item_lower_roman_period, - aux_sym__list_lower_roman_period_repeat1, - [13198] = 3, + STATE(502), 2, + sym__list_item_lower_roman_parens, + aux_sym__list_lower_roman_parens_repeat1, + [14013] = 3, ACTIONS(49), 1, sym_list_marker_lower_roman_paren, - ACTIONS(1483), 1, + ACTIONS(1601), 1, sym__block_close, - STATE(578), 2, + STATE(501), 2, sym__list_item_lower_roman_paren, aux_sym__list_lower_roman_paren_repeat1, - [13209] = 3, - ACTIONS(45), 1, - sym_list_marker_lower_alpha_paren, - ACTIONS(1485), 1, - sym__block_close, - STATE(552), 2, - sym__list_item_lower_alpha_paren, - aux_sym__list_lower_alpha_paren_repeat1, - [13220] = 3, - ACTIONS(59), 1, - sym_list_marker_lower_roman_parens, - ACTIONS(1487), 1, - sym__block_close, - STATE(581), 2, - sym__list_item_lower_roman_parens, - aux_sym__list_lower_roman_parens_repeat1, - [13231] = 3, - ACTIONS(55), 1, - sym_list_marker_lower_alpha_parens, - ACTIONS(1489), 1, + [14024] = 3, + ACTIONS(39), 1, + sym_list_marker_lower_roman_period, + ACTIONS(1603), 1, sym__block_close, - STATE(555), 2, - sym__list_item_lower_alpha_parens, - aux_sym__list_lower_alpha_parens_repeat1, - [13242] = 3, - ACTIONS(37), 1, - sym_list_marker_upper_alpha_period, - ACTIONS(1491), 1, + STATE(500), 2, + sym__list_item_lower_roman_period, + aux_sym__list_lower_roman_period_repeat1, + [14035] = 3, + ACTIONS(57), 1, + sym_list_marker_upper_alpha_parens, + ACTIONS(1605), 1, sym__block_close, - STATE(559), 2, - sym__list_item_upper_alpha_period, - aux_sym__list_upper_alpha_period_repeat1, - [13253] = 3, + STATE(499), 2, + sym__list_item_upper_alpha_parens, + aux_sym__list_upper_alpha_parens_repeat1, + [14046] = 3, ACTIONS(47), 1, sym_list_marker_upper_alpha_paren, - ACTIONS(1493), 1, + ACTIONS(1607), 1, sym__block_close, - STATE(563), 2, + STATE(498), 2, sym__list_item_upper_alpha_paren, aux_sym__list_upper_alpha_paren_repeat1, - [13264] = 3, - ACTIONS(57), 1, - sym_list_marker_upper_alpha_parens, - ACTIONS(1495), 1, + [14057] = 3, + ACTIONS(37), 1, + sym_list_marker_upper_alpha_period, + ACTIONS(1609), 1, sym__block_close, - STATE(568), 2, - sym__list_item_upper_alpha_parens, - aux_sym__list_upper_alpha_parens_repeat1, - [13275] = 3, - ACTIONS(49), 1, - sym_list_marker_lower_roman_paren, - ACTIONS(1497), 1, + STATE(497), 2, + sym__list_item_upper_alpha_period, + aux_sym__list_upper_alpha_period_repeat1, + [14068] = 3, + ACTIONS(55), 1, + sym_list_marker_lower_alpha_parens, + ACTIONS(1611), 1, sym__block_close, - STATE(578), 2, - sym__list_item_lower_roman_paren, - aux_sym__list_lower_roman_paren_repeat1, - [13286] = 3, - ACTIONS(59), 1, - sym_list_marker_lower_roman_parens, - ACTIONS(1499), 1, + STATE(496), 2, + sym__list_item_lower_alpha_parens, + aux_sym__list_lower_alpha_parens_repeat1, + [14079] = 3, + ACTIONS(45), 1, + sym_list_marker_lower_alpha_paren, + ACTIONS(1613), 1, sym__block_close, - STATE(581), 2, - sym__list_item_lower_roman_parens, - aux_sym__list_lower_roman_parens_repeat1, - [13297] = 3, - ACTIONS(41), 1, - sym_list_marker_upper_roman_period, - ACTIONS(1501), 1, + STATE(495), 2, + sym__list_item_lower_alpha_paren, + aux_sym__list_lower_alpha_paren_repeat1, + [14090] = 3, + ACTIONS(35), 1, + sym_list_marker_lower_alpha_period, + ACTIONS(1615), 1, sym__block_close, - STATE(589), 2, - sym__list_item_upper_roman_period, - aux_sym__list_upper_roman_period_repeat1, - [13308] = 3, - ACTIONS(41), 1, - sym_list_marker_upper_roman_period, - ACTIONS(1503), 1, + STATE(494), 2, + sym__list_item_lower_alpha_period, + aux_sym__list_lower_alpha_period_repeat1, + [14101] = 3, + ACTIONS(53), 1, + sym_list_marker_decimal_parens, + ACTIONS(1617), 1, sym__block_close, - STATE(589), 2, - sym__list_item_upper_roman_period, - aux_sym__list_upper_roman_period_repeat1, - [13319] = 4, - ACTIONS(1391), 1, - anon_sym_EQ, - ACTIONS(1505), 1, - sym_language, - ACTIONS(1507), 1, - sym__newline, - STATE(1011), 1, - sym_raw_block_info, - [13332] = 3, - ACTIONS(51), 1, - sym_list_marker_upper_roman_paren, - ACTIONS(1509), 1, + STATE(493), 2, + sym__list_item_decimal_parens, + aux_sym__list_decimal_parens_repeat1, + [14112] = 3, + ACTIONS(43), 1, + sym_list_marker_decimal_paren, + ACTIONS(1619), 1, sym__block_close, - STATE(585), 2, - sym__list_item_upper_roman_paren, - aux_sym__list_upper_roman_paren_repeat1, - [13343] = 2, - ACTIONS(1511), 1, + STATE(492), 2, + sym__list_item_decimal_paren, + aux_sym__list_decimal_paren_repeat1, + [14123] = 2, + ACTIONS(1621), 1, sym__eof_or_newline, - ACTIONS(609), 3, + ACTIONS(616), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13352] = 3, - ACTIONS(61), 1, - sym_list_marker_upper_roman_parens, - ACTIONS(1513), 1, - sym__block_close, - STATE(583), 2, - sym__list_item_upper_roman_parens, - aux_sym__list_upper_roman_parens_repeat1, - [13363] = 3, - ACTIONS(1515), 1, - sym__block_close, - ACTIONS(1517), 1, - sym_list_marker_definition, - STATE(545), 2, - sym__list_item_definition, - aux_sym__list_definition_repeat1, - [13374] = 3, - ACTIONS(1520), 1, - anon_sym_PERCENT, - STATE(588), 1, - aux_sym__comment_no_newline_repeat1, - ACTIONS(1421), 2, - sym_backslash_escape, - aux_sym__comment_no_newline_token1, - [13385] = 3, - ACTIONS(1522), 1, - sym__block_close, - ACTIONS(1524), 1, + [14132] = 3, + ACTIONS(33), 1, sym_list_marker_decimal_period, - STATE(547), 2, + ACTIONS(1623), 1, + sym__block_close, + STATE(491), 2, sym__list_item_decimal_period, aux_sym__list_decimal_period_repeat1, - [13396] = 3, - ACTIONS(1527), 1, - sym__block_close, - ACTIONS(1529), 1, - sym_list_marker_decimal_paren, - STATE(548), 2, - sym__list_item_decimal_paren, - aux_sym__list_decimal_paren_repeat1, - [13407] = 3, - ACTIONS(1532), 1, - sym__block_close, - ACTIONS(1534), 1, - sym_list_marker_decimal_parens, - STATE(549), 2, - sym__list_item_decimal_parens, - aux_sym__list_decimal_parens_repeat1, - [13418] = 3, - ACTIONS(1537), 1, - sym__block_close, - ACTIONS(1539), 1, - sym_list_marker_lower_alpha_period, - STATE(550), 2, - sym__list_item_lower_alpha_period, - aux_sym__list_lower_alpha_period_repeat1, - [13429] = 4, - ACTIONS(1391), 1, - anon_sym_EQ, - ACTIONS(1542), 1, - sym_language, - ACTIONS(1544), 1, - sym__newline, - STATE(985), 1, - sym_raw_block_info, - [13442] = 3, - ACTIONS(1546), 1, + [14143] = 3, + ACTIONS(31), 1, + sym_list_marker_definition, + ACTIONS(1625), 1, sym__block_close, - ACTIONS(1548), 1, - sym_list_marker_lower_alpha_paren, - STATE(552), 2, - sym__list_item_lower_alpha_paren, - aux_sym__list_lower_alpha_paren_repeat1, - [13453] = 3, + STATE(605), 2, + sym__list_item_definition, + aux_sym__list_definition_repeat1, + [14154] = 3, ACTIONS(31), 1, sym_list_marker_definition, - ACTIONS(1551), 1, + ACTIONS(1627), 1, sym__block_close, - STATE(545), 2, + STATE(605), 2, sym__list_item_definition, aux_sym__list_definition_repeat1, - [13464] = 3, + [14165] = 3, ACTIONS(33), 1, sym_list_marker_decimal_period, - ACTIONS(1553), 1, + ACTIONS(1629), 1, sym__block_close, - STATE(547), 2, + STATE(491), 2, sym__list_item_decimal_period, aux_sym__list_decimal_period_repeat1, - [13475] = 3, - ACTIONS(1555), 1, - sym__block_close, - ACTIONS(1557), 1, - sym_list_marker_lower_alpha_parens, - STATE(555), 2, - sym__list_item_lower_alpha_parens, - aux_sym__list_lower_alpha_parens_repeat1, - [13486] = 3, + [14176] = 3, ACTIONS(43), 1, sym_list_marker_decimal_paren, - ACTIONS(1560), 1, + ACTIONS(1631), 1, sym__block_close, - STATE(548), 2, + STATE(492), 2, sym__list_item_decimal_paren, aux_sym__list_decimal_paren_repeat1, - [13497] = 2, - ACTIONS(1562), 1, + [14187] = 2, + ACTIONS(1633), 1, + sym__eof_or_newline, + ACTIONS(610), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [14196] = 3, + ACTIONS(53), 1, + sym_list_marker_decimal_parens, + ACTIONS(1635), 1, + sym__block_close, + STATE(493), 2, + sym__list_item_decimal_parens, + aux_sym__list_decimal_parens_repeat1, + [14207] = 2, + ACTIONS(1637), 1, sym__code_block_end, - ACTIONS(531), 3, + ACTIONS(624), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13506] = 2, - ACTIONS(1564), 1, + [14216] = 2, + ACTIONS(1639), 1, sym__code_block_end, - ACTIONS(537), 3, + ACTIONS(554), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13515] = 3, - ACTIONS(1566), 1, + [14225] = 3, + ACTIONS(35), 1, + sym_list_marker_lower_alpha_period, + ACTIONS(1641), 1, sym__block_close, - ACTIONS(1568), 1, - sym_list_marker_upper_alpha_period, - STATE(559), 2, - sym__list_item_upper_alpha_period, - aux_sym__list_upper_alpha_period_repeat1, - [13526] = 2, - ACTIONS(1571), 1, + STATE(494), 2, + sym__list_item_lower_alpha_period, + aux_sym__list_lower_alpha_period_repeat1, + [14236] = 2, + ACTIONS(1643), 1, sym__div_end, - ACTIONS(543), 3, + ACTIONS(546), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13535] = 3, - ACTIONS(53), 1, - sym_list_marker_decimal_parens, - ACTIONS(1573), 1, - sym__block_close, - STATE(549), 2, - sym__list_item_decimal_parens, - aux_sym__list_decimal_parens_repeat1, - [13546] = 3, - ACTIONS(61), 1, - sym_list_marker_upper_roman_parens, - ACTIONS(1575), 1, - sym__block_close, - STATE(583), 2, - sym__list_item_upper_roman_parens, - aux_sym__list_upper_roman_parens_repeat1, - [13557] = 3, - ACTIONS(1577), 1, - sym__block_close, - ACTIONS(1579), 1, - sym_list_marker_upper_alpha_paren, - STATE(563), 2, - sym__list_item_upper_alpha_paren, - aux_sym__list_upper_alpha_paren_repeat1, - [13568] = 3, + [14245] = 3, ACTIONS(45), 1, sym_list_marker_lower_alpha_paren, - ACTIONS(1582), 1, + ACTIONS(1645), 1, sym__block_close, - STATE(552), 2, + STATE(495), 2, sym__list_item_lower_alpha_paren, aux_sym__list_lower_alpha_paren_repeat1, - [13579] = 2, - ACTIONS(1584), 1, - sym__code_block_end, - ACTIONS(557), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [13588] = 3, + [14256] = 3, ACTIONS(55), 1, sym_list_marker_lower_alpha_parens, - ACTIONS(1586), 1, + ACTIONS(1647), 1, sym__block_close, - STATE(555), 2, + STATE(496), 2, sym__list_item_lower_alpha_parens, aux_sym__list_lower_alpha_parens_repeat1, - [13599] = 2, - ACTIONS(1588), 1, + [14267] = 2, + ACTIONS(1649), 1, + sym__code_block_end, + ACTIONS(564), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [14276] = 2, + ACTIONS(1651), 1, sym__code_block_end, - ACTIONS(563), 3, + ACTIONS(570), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13608] = 3, - ACTIONS(1590), 1, + [14285] = 3, + ACTIONS(59), 1, + sym_list_marker_lower_roman_parens, + ACTIONS(1653), 1, sym__block_close, - ACTIONS(1592), 1, - sym_list_marker_upper_alpha_parens, - STATE(568), 2, - sym__list_item_upper_alpha_parens, - aux_sym__list_upper_alpha_parens_repeat1, - [13619] = 3, + STATE(502), 2, + sym__list_item_lower_roman_parens, + aux_sym__list_lower_roman_parens_repeat1, + [14296] = 3, ACTIONS(37), 1, sym_list_marker_upper_alpha_period, - ACTIONS(1595), 1, + ACTIONS(1655), 1, sym__block_close, - STATE(559), 2, + STATE(497), 2, sym__list_item_upper_alpha_period, aux_sym__list_upper_alpha_period_repeat1, - [13630] = 2, - ACTIONS(1597), 1, + [14307] = 3, + ACTIONS(49), 1, + sym_list_marker_lower_roman_paren, + ACTIONS(1657), 1, + sym__block_close, + STATE(501), 2, + sym__list_item_lower_roman_paren, + aux_sym__list_lower_roman_paren_repeat1, + [14318] = 2, + ACTIONS(1659), 1, sym__div_end, - ACTIONS(569), 3, + ACTIONS(576), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13639] = 2, - ACTIONS(1599), 1, + [14327] = 2, + ACTIONS(1661), 1, sym__div_end, - ACTIONS(575), 3, + ACTIONS(582), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13648] = 3, - ACTIONS(47), 1, - sym_list_marker_upper_alpha_paren, - ACTIONS(1601), 1, - sym__block_close, - STATE(563), 2, - sym__list_item_upper_alpha_paren, - aux_sym__list_upper_alpha_paren_repeat1, - [13659] = 3, - ACTIONS(1603), 1, - sym__block_close, - ACTIONS(1605), 1, - sym_list_marker_lower_roman_period, - STATE(573), 2, - sym__list_item_lower_roman_period, - aux_sym__list_lower_roman_period_repeat1, - [13670] = 3, - ACTIONS(57), 1, - sym_list_marker_upper_alpha_parens, - ACTIONS(1608), 1, + [14336] = 3, + ACTIONS(61), 1, + sym_list_marker_upper_roman_parens, + ACTIONS(1663), 1, sym__block_close, - STATE(568), 2, - sym__list_item_upper_alpha_parens, - aux_sym__list_upper_alpha_parens_repeat1, - [13681] = 2, - ACTIONS(1610), 1, - sym__code_block_end, - ACTIONS(589), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [13690] = 3, + STATE(505), 2, + sym__list_item_upper_roman_parens, + aux_sym__list_upper_roman_parens_repeat1, + [14347] = 3, ACTIONS(39), 1, sym_list_marker_lower_roman_period, - ACTIONS(1612), 1, + ACTIONS(1665), 1, sym__block_close, - STATE(573), 2, + STATE(500), 2, sym__list_item_lower_roman_period, aux_sym__list_lower_roman_period_repeat1, - [13701] = 3, - ACTIONS(1443), 1, - aux_sym__line_token1, - STATE(954), 1, - sym_frontmatter_content, - STATE(512), 2, - sym__line, - aux_sym_frontmatter_content_repeat1, - [13712] = 3, - ACTIONS(1614), 1, + [14358] = 3, + ACTIONS(35), 1, + sym_list_marker_lower_alpha_period, + ACTIONS(1667), 1, sym__block_close, - ACTIONS(1616), 1, - sym_list_marker_lower_roman_paren, - STATE(578), 2, - sym__list_item_lower_roman_paren, - aux_sym__list_lower_roman_paren_repeat1, - [13723] = 2, - ACTIONS(1619), 1, + STATE(494), 2, + sym__list_item_lower_alpha_period, + aux_sym__list_lower_alpha_period_repeat1, + [14369] = 2, + ACTIONS(1669), 1, sym__div_end, - ACTIONS(595), 3, + ACTIONS(602), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13732] = 3, - ACTIONS(49), 1, - sym_list_marker_lower_roman_paren, - ACTIONS(1621), 1, - sym__block_close, - STATE(578), 2, - sym__list_item_lower_roman_paren, - aux_sym__list_lower_roman_paren_repeat1, - [13743] = 3, - ACTIONS(1623), 1, - sym__block_close, - ACTIONS(1625), 1, - sym_list_marker_lower_roman_parens, - STATE(581), 2, - sym__list_item_lower_roman_parens, - aux_sym__list_lower_roman_parens_repeat1, - [13754] = 3, - ACTIONS(59), 1, - sym_list_marker_lower_roman_parens, - ACTIONS(1628), 1, - sym__block_close, - STATE(581), 2, - sym__list_item_lower_roman_parens, - aux_sym__list_lower_roman_parens_repeat1, - [13765] = 3, - ACTIONS(1630), 1, - sym__block_close, - ACTIONS(1632), 1, - sym_list_marker_upper_roman_parens, - STATE(583), 2, - sym__list_item_upper_roman_parens, - aux_sym__list_upper_roman_parens_repeat1, - [13776] = 3, - ACTIONS(51), 1, - sym_list_marker_upper_roman_paren, - ACTIONS(1635), 1, - sym__block_close, - STATE(585), 2, - sym__list_item_upper_roman_paren, - aux_sym__list_upper_roman_paren_repeat1, - [13787] = 3, - ACTIONS(1637), 1, - sym__block_close, - ACTIONS(1639), 1, - sym_list_marker_upper_roman_paren, - STATE(585), 2, - sym__list_item_upper_roman_paren, - aux_sym__list_upper_roman_paren_repeat1, - [13798] = 3, - ACTIONS(41), 1, - sym_list_marker_upper_roman_period, - ACTIONS(1642), 1, + [14378] = 3, + ACTIONS(1671), 1, sym__block_close, - STATE(589), 2, - sym__list_item_upper_roman_period, - aux_sym__list_upper_roman_period_repeat1, - [13809] = 2, - ACTIONS(1644), 1, - sym__eof_or_newline, - ACTIONS(603), 3, + ACTIONS(1673), 1, + sym_list_marker_definition, + STATE(605), 2, + sym__list_item_definition, + aux_sym__list_definition_repeat1, + [14389] = 2, + ACTIONS(1676), 1, + sym__code_block_end, + ACTIONS(596), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13818] = 3, - ACTIONS(1649), 1, - anon_sym_PERCENT, - STATE(588), 1, - aux_sym__comment_no_newline_repeat1, - ACTIONS(1646), 2, - sym_backslash_escape, - aux_sym__comment_no_newline_token1, - [13829] = 3, - ACTIONS(1651), 1, + [14398] = 3, + ACTIONS(57), 1, + sym_list_marker_upper_alpha_parens, + ACTIONS(1678), 1, sym__block_close, - ACTIONS(1653), 1, + STATE(499), 2, + sym__list_item_upper_alpha_parens, + aux_sym__list_upper_alpha_parens_repeat1, + [14409] = 3, + ACTIONS(41), 1, sym_list_marker_upper_roman_period, - STATE(589), 2, + ACTIONS(1680), 1, + sym__block_close, + STATE(503), 2, sym__list_item_upper_roman_period, aux_sym__list_upper_roman_period_repeat1, - [13840] = 3, - ACTIONS(1071), 1, - aux_sym__line_token1, - ACTIONS(1656), 1, - sym__block_quote_continuation, - STATE(671), 1, - aux_sym__block_quote_prefix_repeat1, - [13850] = 2, - ACTIONS(1658), 1, - sym__div_end, - ACTIONS(569), 2, + [14420] = 1, + ACTIONS(1682), 3, sym__block_close, + sym_list_marker_dash, sym__block_quote_continuation, - [13858] = 1, - ACTIONS(837), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [13864] = 1, - ACTIONS(667), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [13870] = 1, - ACTIONS(795), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [13876] = 1, - ACTIONS(847), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [13882] = 1, - ACTIONS(1660), 3, + [14426] = 2, + ACTIONS(1684), 1, + sym__code_block_end, + ACTIONS(570), 2, sym__block_close, - sym_list_marker_star, sym__block_quote_continuation, - [13888] = 1, - ACTIONS(783), 3, + [14434] = 1, + ACTIONS(838), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13894] = 3, - ACTIONS(1662), 1, + [14440] = 1, + ACTIONS(1686), 3, sym__block_close, - ACTIONS(1664), 1, - sym__heading_continuation, - STATE(666), 1, - aux_sym__heading_content_repeat1, - [13904] = 1, - ACTIONS(713), 3, + sym_list_marker_dash, + sym__block_quote_continuation, + [14446] = 1, + ACTIONS(846), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13910] = 1, - ACTIONS(1666), 3, + [14452] = 1, + ACTIONS(1686), 3, sym__block_close, + sym_list_marker_star, sym__block_quote_continuation, - aux_sym__line_token1, - [13916] = 1, - ACTIONS(1668), 3, - sym__block_close, - sym_list_marker_dash, - sym__block_quote_continuation, - [13922] = 1, - ACTIONS(771), 3, + [14458] = 1, + ACTIONS(860), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13928] = 1, - ACTIONS(763), 3, + [14464] = 1, + ACTIONS(856), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13934] = 1, - ACTIONS(527), 3, + [14470] = 1, + ACTIONS(1338), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13940] = 3, - ACTIONS(1071), 1, - sym_list_marker_star, - ACTIONS(1670), 1, + [14476] = 1, + ACTIONS(684), 3, + sym__list_item_continuation, + sym__list_item_end, sym__block_quote_continuation, - STATE(606), 1, - aux_sym__block_quote_prefix_repeat1, - [13950] = 3, - ACTIONS(855), 1, - sym_list_marker_star, - ACTIONS(1672), 1, + [14482] = 1, + ACTIONS(694), 3, + sym__list_item_continuation, + sym__list_item_end, sym__block_quote_continuation, - STATE(606), 1, - aux_sym__block_quote_prefix_repeat1, - [13960] = 1, - ACTIONS(1675), 3, - sym__block_close, - sym__list_marker_task_begin, + [14488] = 1, + ACTIONS(852), 3, + sym__list_item_continuation, + sym__list_item_end, sym__block_quote_continuation, - [13966] = 1, - ACTIONS(751), 3, + [14494] = 1, + ACTIONS(778), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13972] = 1, - ACTIONS(743), 3, + [14500] = 1, + ACTIONS(750), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13978] = 1, - ACTIONS(735), 3, + [14506] = 1, + ACTIONS(698), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13984] = 1, - ACTIONS(671), 3, + [14512] = 1, + ACTIONS(554), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13990] = 1, - ACTIONS(673), 3, + [14518] = 1, + ACTIONS(806), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13996] = 1, - ACTIONS(811), 3, + [14524] = 1, + ACTIONS(798), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14002] = 1, - ACTIONS(805), 3, + [14530] = 1, + ACTIONS(742), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14008] = 1, - ACTIONS(1677), 3, - sym_backslash_escape, - anon_sym_PERCENT, - aux_sym__comment_no_newline_token1, - [14014] = 1, - ACTIONS(719), 3, + [14536] = 1, + ACTIONS(544), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14020] = 1, - ACTIONS(707), 3, + [14542] = 1, + ACTIONS(830), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14026] = 3, - ACTIONS(1679), 1, - anon_sym_DQUOTE, - ACTIONS(1681), 1, - aux_sym_value_token2, - STATE(453), 1, - sym_value, - [14036] = 1, - ACTIONS(801), 3, + [14548] = 1, + ACTIONS(714), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14042] = 1, - ACTIONS(797), 3, + [14554] = 1, + ACTIONS(826), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14048] = 1, - ACTIONS(789), 3, + [14560] = 1, + ACTIONS(822), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14054] = 1, - ACTIONS(785), 3, + [14566] = 1, + ACTIONS(814), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14060] = 3, - ACTIONS(1071), 1, - sym__list_marker_task_begin, - ACTIONS(1683), 1, + [14572] = 1, + ACTIONS(810), 3, + sym__list_item_continuation, + sym__list_item_end, sym__block_quote_continuation, - STATE(624), 1, - aux_sym__block_quote_prefix_repeat1, - [14070] = 3, - ACTIONS(855), 1, - sym__list_marker_task_begin, - ACTIONS(1685), 1, + [14578] = 1, + ACTIONS(802), 3, + sym__list_item_continuation, + sym__list_item_end, sym__block_quote_continuation, - STATE(624), 1, - aux_sym__block_quote_prefix_repeat1, - [14080] = 3, - ACTIONS(1664), 1, - sym__heading_continuation, + [14584] = 1, + ACTIONS(794), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [14590] = 3, ACTIONS(1688), 1, sym__block_close, - STATE(598), 1, + ACTIONS(1690), 1, + sym__heading_continuation, + STATE(637), 1, aux_sym__heading_content_repeat1, - [14090] = 1, - ACTIONS(695), 3, + [14600] = 1, + ACTIONS(790), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14096] = 3, - ACTIONS(1071), 1, + [14606] = 1, + ACTIONS(782), 3, sym__list_item_continuation, - ACTIONS(1690), 1, + sym__list_item_end, sym__block_quote_continuation, - STATE(628), 1, + [14612] = 3, + ACTIONS(1009), 1, + sym_list_marker_dash, + ACTIONS(1201), 1, + sym__block_quote_continuation, + STATE(671), 1, aux_sym__block_quote_prefix_repeat1, - [14106] = 3, - ACTIONS(855), 1, - sym__list_item_continuation, - ACTIONS(1692), 1, + [14622] = 3, + ACTIONS(1009), 1, + sym_list_marker_star, + ACTIONS(1179), 1, sym__block_quote_continuation, - STATE(628), 1, + STATE(642), 1, aux_sym__block_quote_prefix_repeat1, - [14116] = 1, - ACTIONS(687), 3, - sym__list_item_continuation, - sym__list_item_end, + [14632] = 3, + ACTIONS(876), 1, + sym_list_marker_star, + ACTIONS(1693), 1, sym__block_quote_continuation, - [14122] = 1, - ACTIONS(1695), 3, + STATE(642), 1, + aux_sym__block_quote_prefix_repeat1, + [14642] = 1, + ACTIONS(1686), 3, sym__block_close, - sym_list_marker_dash, - sym__block_quote_continuation, - [14128] = 1, - ACTIONS(777), 3, - sym__list_item_continuation, - sym__list_item_end, + sym_list_marker_plus, sym__block_quote_continuation, - [14134] = 1, - ACTIONS(1697), 3, + [14648] = 2, + ACTIONS(1696), 1, + sym__code_block_end, + ACTIONS(596), 2, sym__block_close, - sym_list_marker_dash, sym__block_quote_continuation, - [14140] = 2, - ACTIONS(1699), 1, + [14656] = 2, + ACTIONS(1698), 1, sym__div_end, - ACTIONS(543), 2, + ACTIONS(602), 2, sym__block_close, sym__block_quote_continuation, - [14148] = 1, - ACTIONS(773), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [14154] = 1, - ACTIONS(765), 3, - sym__list_item_continuation, - sym__list_item_end, + [14664] = 3, + ACTIONS(1009), 1, + sym__list_marker_task_begin, + ACTIONS(1114), 1, sym__block_quote_continuation, - [14160] = 1, - ACTIONS(1701), 3, - sym__block_close, - sym_list_marker_star, + STATE(647), 1, + aux_sym__block_quote_prefix_repeat1, + [14674] = 3, + ACTIONS(876), 1, + sym__list_marker_task_begin, + ACTIONS(1700), 1, sym__block_quote_continuation, - [14166] = 1, + STATE(647), 1, + aux_sym__block_quote_prefix_repeat1, + [14684] = 1, ACTIONS(1703), 3, sym__block_close, sym_list_marker_plus, sym__block_quote_continuation, - [14172] = 1, - ACTIONS(1668), 3, - sym__block_close, - sym_list_marker_star, - sym__block_quote_continuation, - [14178] = 1, - ACTIONS(1705), 3, + [14690] = 2, + ACTIONS(1705), 1, + sym__eof_or_newline, + ACTIONS(610), 2, sym__block_close, - sym_list_marker_star, sym__block_quote_continuation, - [14184] = 3, - ACTIONS(855), 1, + [14698] = 3, + ACTIONS(876), 1, anon_sym_PIPE, ACTIONS(1707), 1, sym__block_quote_continuation, - STATE(640), 1, + STATE(650), 1, aux_sym__block_quote_prefix_repeat1, - [14194] = 2, - ACTIONS(1712), 1, - anon_sym_SPACE, - ACTIONS(1710), 2, - anon_sym_x, - anon_sym_X, - [14202] = 3, - ACTIONS(1071), 1, - sym_list_marker_dash, - ACTIONS(1714), 1, + [14708] = 3, + ACTIONS(1009), 1, + sym__list_item_continuation, + ACTIONS(1263), 1, sym__block_quote_continuation, - STATE(680), 1, + STATE(652), 1, aux_sym__block_quote_prefix_repeat1, - [14212] = 1, - ACTIONS(1716), 3, - sym__block_close, - sym__list_marker_task_begin, + [14718] = 3, + ACTIONS(876), 1, + sym__list_item_continuation, + ACTIONS(1710), 1, sym__block_quote_continuation, - [14218] = 3, + STATE(652), 1, + aux_sym__block_quote_prefix_repeat1, + [14728] = 3, + ACTIONS(1713), 1, + sym__eof_or_newline, + ACTIONS(1715), 1, + sym__newline_inline, + STATE(653), 1, + aux_sym__paragraph_content_repeat1, + [14738] = 3, ACTIONS(1718), 1, sym__eof_or_newline, ACTIONS(1720), 1, sym__newline_inline, - STATE(644), 1, + STATE(653), 1, aux_sym__paragraph_content_repeat1, - [14228] = 3, - ACTIONS(855), 1, - sym_list_marker_plus, - ACTIONS(1723), 1, - sym__block_quote_continuation, - STATE(645), 1, - aux_sym__block_quote_prefix_repeat1, - [14238] = 1, - ACTIONS(537), 3, + [14748] = 1, + ACTIONS(774), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14244] = 2, - ACTIONS(1726), 1, - anon_sym_LBRACK, - STATE(959), 2, - sym_checked, - sym_unchecked, - [14252] = 1, - ACTIONS(757), 3, + [14754] = 1, + ACTIONS(770), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14258] = 1, - ACTIONS(753), 3, - sym__list_item_continuation, - sym__list_item_end, + [14760] = 1, + ACTIONS(1722), 3, + sym__block_close, + sym__list_marker_task_begin, sym__block_quote_continuation, - [14264] = 1, - ACTIONS(745), 3, - sym__list_item_continuation, - sym__list_item_end, + [14766] = 1, + ACTIONS(1724), 3, + sym__block_close, + sym_list_marker_plus, sym__block_quote_continuation, - [14270] = 1, - ACTIONS(737), 3, - sym__list_item_continuation, - sym__list_item_end, + [14772] = 1, + ACTIONS(1726), 3, + sym__block_close, + sym_list_marker_star, sym__block_quote_continuation, - [14276] = 1, - ACTIONS(729), 3, + [14778] = 1, + ACTIONS(762), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14282] = 1, - ACTIONS(725), 3, + [14784] = 1, + ACTIONS(754), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14288] = 1, - ACTIONS(721), 3, + [14790] = 2, + ACTIONS(1728), 1, + sym__div_end, + ACTIONS(582), 2, + sym__block_close, + sym__block_quote_continuation, + [14798] = 1, + ACTIONS(1730), 3, + sym__block_close, + sym__block_quote_continuation, + aux_sym__line_token1, + [14804] = 1, + ACTIONS(746), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14294] = 1, - ACTIONS(709), 3, + [14810] = 3, + ACTIONS(1009), 1, + aux_sym__line_token1, + ACTIONS(1106), 1, + sym__block_quote_continuation, + STATE(666), 1, + aux_sym__block_quote_prefix_repeat1, + [14820] = 3, + ACTIONS(876), 1, + aux_sym__line_token1, + ACTIONS(1732), 1, + sym__block_quote_continuation, + STATE(666), 1, + aux_sym__block_quote_prefix_repeat1, + [14830] = 1, + ACTIONS(1735), 3, + sym__block_close, + sym__list_marker_task_begin, + sym__block_quote_continuation, + [14836] = 3, + ACTIONS(1737), 1, + anon_sym_DQUOTE, + ACTIONS(1739), 1, + aux_sym_value_token2, + STATE(473), 1, + sym_value, + [14846] = 2, + ACTIONS(1741), 1, + sym__div_end, + ACTIONS(576), 2, + sym__block_close, + sym__block_quote_continuation, + [14854] = 1, + ACTIONS(1743), 3, + sym_backslash_escape, + anon_sym_PERCENT, + aux_sym__comment_no_newline_token1, + [14860] = 3, + ACTIONS(876), 1, + sym_list_marker_dash, + ACTIONS(1745), 1, + sym__block_quote_continuation, + STATE(671), 1, + aux_sym__block_quote_prefix_repeat1, + [14870] = 1, + ACTIONS(1254), 3, + sym__block_close, + sym__block_quote_continuation, + aux_sym__line_token1, + [14876] = 3, + ACTIONS(1720), 1, + sym__newline_inline, + ACTIONS(1748), 1, + sym__eof_or_newline, + STATE(653), 1, + aux_sym__paragraph_content_repeat1, + [14886] = 1, + ACTIONS(1703), 3, + sym__block_close, + sym_list_marker_dash, + sym__block_quote_continuation, + [14892] = 1, + ACTIONS(844), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14300] = 1, - ACTIONS(697), 3, + [14898] = 1, + ACTIONS(1750), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14306] = 3, - ACTIONS(1728), 1, - sym__eof_or_newline, - ACTIONS(1730), 1, + [14904] = 2, + ACTIONS(1752), 1, + anon_sym_LBRACK, + STATE(1077), 2, + sym_checked, + sym_unchecked, + [14912] = 3, + ACTIONS(1754), 1, + sym__block_close, + ACTIONS(1756), 1, + sym__heading_continuation, + STATE(637), 1, + aux_sym__heading_content_repeat1, + [14922] = 3, + ACTIONS(1720), 1, sym__newline_inline, - STATE(644), 1, + ACTIONS(1748), 1, + sym__eof_or_newline, + STATE(654), 1, aux_sym__paragraph_content_repeat1, - [14316] = 1, - ACTIONS(1668), 3, + [14932] = 2, + ACTIONS(1758), 1, + sym__eof_or_newline, + ACTIONS(616), 2, sym__block_close, - sym__list_marker_task_begin, sym__block_quote_continuation, - [14322] = 1, - ACTIONS(1660), 3, + [14940] = 2, + ACTIONS(1762), 1, + anon_sym_SPACE, + ACTIONS(1760), 2, + anon_sym_x, + anon_sym_X, + [14948] = 1, + ACTIONS(1764), 3, + sym__block_close, + sym_list_marker_plus, + sym__block_quote_continuation, + [14954] = 1, + ACTIONS(1703), 3, sym__block_close, sym__list_marker_task_begin, sym__block_quote_continuation, - [14328] = 1, - ACTIONS(689), 3, - sym__list_item_continuation, - sym__list_item_end, + [14960] = 1, + ACTIONS(1686), 3, + sym__block_close, + sym__list_marker_task_begin, sym__block_quote_continuation, - [14334] = 1, - ACTIONS(677), 3, + [14966] = 1, + ACTIONS(738), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14340] = 2, - ACTIONS(1732), 1, - sym__div_end, - ACTIONS(595), 2, + [14972] = 1, + ACTIONS(1766), 3, sym__block_close, + sym_list_marker_star, sym__block_quote_continuation, - [14348] = 1, - ACTIONS(817), 3, + [14978] = 1, + ACTIONS(730), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14354] = 3, - ACTIONS(1071), 1, - anon_sym_PIPE, - ACTIONS(1734), 1, - sym__block_quote_continuation, - STATE(640), 1, - aux_sym__block_quote_prefix_repeat1, - [14364] = 1, - ACTIONS(831), 3, + [14984] = 1, + ACTIONS(722), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14370] = 3, - ACTIONS(1736), 1, - sym__block_close, - ACTIONS(1738), 1, - sym__heading_continuation, - STATE(666), 1, - aux_sym__heading_content_repeat1, - [14380] = 2, - ACTIONS(1741), 1, - sym__code_block_end, - ACTIONS(557), 2, - sym__block_close, - sym__block_quote_continuation, - [14388] = 2, - ACTIONS(1743), 1, - sym__code_block_end, - ACTIONS(563), 2, - sym__block_close, + [14990] = 1, + ACTIONS(704), 3, + sym__list_item_continuation, + sym__list_item_end, sym__block_quote_continuation, - [14396] = 1, - ACTIONS(1328), 3, + [14996] = 1, + ACTIONS(706), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14402] = 1, - ACTIONS(1660), 3, + [15002] = 1, + ACTIONS(1768), 3, sym__block_close, sym_list_marker_dash, sym__block_quote_continuation, - [14408] = 3, - ACTIONS(855), 1, - aux_sym__line_token1, - ACTIONS(1745), 1, + [15008] = 1, + ACTIONS(690), 3, + sym__list_item_continuation, + sym__list_item_end, sym__block_quote_continuation, - STATE(671), 1, - aux_sym__block_quote_prefix_repeat1, - [14418] = 1, - ACTIONS(1748), 3, - sym__block_close, - sym_list_marker_plus, + [15014] = 1, + ACTIONS(688), 3, + sym__list_item_continuation, + sym__list_item_end, sym__block_quote_continuation, - [14424] = 2, - ACTIONS(1750), 1, - sym__div_end, - ACTIONS(575), 2, - sym__block_close, + [15020] = 1, + ACTIONS(834), 3, + sym__list_item_continuation, + sym__list_item_end, sym__block_quote_continuation, - [14432] = 1, - ACTIONS(1668), 3, - sym__block_close, + [15026] = 3, + ACTIONS(1009), 1, sym_list_marker_plus, + ACTIONS(1175), 1, sym__block_quote_continuation, - [14438] = 2, - ACTIONS(1752), 1, - sym__eof_or_newline, - ACTIONS(603), 2, - sym__block_close, + STATE(698), 1, + aux_sym__block_quote_prefix_repeat1, + [15036] = 1, + ACTIONS(786), 3, + sym__list_item_continuation, + sym__list_item_end, sym__block_quote_continuation, - [14446] = 1, - ACTIONS(1660), 3, + [15042] = 3, + ACTIONS(1756), 1, + sym__heading_continuation, + ACTIONS(1770), 1, sym__block_close, + STATE(678), 1, + aux_sym__heading_content_repeat1, + [15052] = 3, + ACTIONS(876), 1, sym_list_marker_plus, + ACTIONS(1772), 1, sym__block_quote_continuation, - [14452] = 3, - ACTIONS(1071), 1, - sym_list_marker_plus, - ACTIONS(1754), 1, - sym__block_quote_continuation, - STATE(645), 1, + STATE(698), 1, aux_sym__block_quote_prefix_repeat1, - [14462] = 2, - ACTIONS(1756), 1, + [15062] = 1, + ACTIONS(720), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [15068] = 2, + ACTIONS(1775), 1, sym__code_block_end, - ACTIONS(589), 2, + ACTIONS(624), 2, sym__block_close, sym__block_quote_continuation, - [14470] = 2, - ACTIONS(1758), 1, - sym__eof_or_newline, - ACTIONS(609), 2, + [15076] = 2, + ACTIONS(1777), 1, + sym__code_block_end, + ACTIONS(564), 2, sym__block_close, sym__block_quote_continuation, - [14478] = 3, - ACTIONS(855), 1, - sym_list_marker_dash, - ACTIONS(1760), 1, + [15084] = 3, + ACTIONS(494), 1, sym__block_quote_continuation, - STATE(680), 1, + ACTIONS(1009), 1, + anon_sym_PIPE, + STATE(650), 1, aux_sym__block_quote_prefix_repeat1, - [14488] = 2, - ACTIONS(1763), 1, - sym__code_block_end, - ACTIONS(531), 2, + [15094] = 3, + ACTIONS(1720), 1, + sym__newline_inline, + ACTIONS(1779), 1, + sym__eof_or_newline, + STATE(673), 1, + aux_sym__paragraph_content_repeat1, + [15104] = 1, + ACTIONS(1703), 3, sym__block_close, + sym_list_marker_star, sym__block_quote_continuation, - [14496] = 1, - ACTIONS(835), 3, + [15110] = 1, + ACTIONS(728), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14502] = 3, - ACTIONS(1730), 1, - sym__newline_inline, - ACTIONS(1765), 1, - sym__eof_or_newline, - STATE(657), 1, - aux_sym__paragraph_content_repeat1, - [14512] = 1, - ACTIONS(1767), 3, + [15116] = 1, + ACTIONS(820), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14518] = 1, - ACTIONS(1214), 3, + [15122] = 2, + ACTIONS(1781), 1, + sym__code_block_end, + ACTIONS(554), 2, sym__block_close, sym__block_quote_continuation, - aux_sym__line_token1, - [14524] = 2, - ACTIONS(1769), 1, - sym__code_block_end, - ACTIONS(537), 2, + [15130] = 2, + ACTIONS(1783), 1, + sym__div_end, + ACTIONS(546), 2, sym__block_close, sym__block_quote_continuation, - [14532] = 2, - ACTIONS(1771), 1, - anon_sym_PIPE, - STATE(713), 1, - aux_sym_table_row_repeat1, - [14539] = 2, - ACTIONS(1773), 1, - anon_sym_PIPE, - STATE(746), 1, - aux_sym_table_separator_repeat1, - [14546] = 2, - ACTIONS(29), 1, - sym__list_marker_task_begin, - STATE(44), 1, - sym_list_marker_task, - [14553] = 2, - ACTIONS(1775), 1, + [15138] = 1, + ACTIONS(688), 2, + sym__block_close, + sym__block_quote_continuation, + [15143] = 2, + ACTIONS(1785), 1, + sym__eof_or_newline, + STATE(780), 1, + sym__one_or_two_newlines, + [15150] = 1, + ACTIONS(457), 2, + sym_list_marker_plus, + sym__block_quote_continuation, + [15155] = 1, + ACTIONS(720), 2, + sym__block_close, + sym__block_quote_continuation, + [15160] = 2, + ACTIONS(1787), 1, sym__id, - STATE(1017), 1, + STATE(1048), 1, sym_reference_label, - [14560] = 2, - ACTIONS(1777), 1, - sym_table_cell_alignment, - ACTIONS(1779), 1, - sym__newline, - [14567] = 1, - ACTIONS(1178), 2, + [15167] = 1, + ACTIONS(698), 2, sym__block_close, - sym__heading_continuation, - [14572] = 2, - ACTIONS(1775), 1, + sym__block_quote_continuation, + [15172] = 1, + ACTIONS(706), 2, + sym__block_close, + sym__block_quote_continuation, + [15177] = 1, + ACTIONS(838), 2, + sym__block_close, + sym__block_quote_continuation, + [15182] = 2, + ACTIONS(1787), 1, sym__id, - STATE(1010), 1, + STATE(1041), 1, sym_reference_label, - [14579] = 2, - ACTIONS(1775), 1, + [15189] = 1, + ACTIONS(1789), 2, + sym__block_close, + sym_list_marker_lower_alpha_parens, + [15194] = 2, + ACTIONS(1787), 1, sym__id, - STATE(1003), 1, + STATE(1034), 1, sym_reference_label, - [14586] = 1, - ACTIONS(1668), 2, - sym__block_close, - sym_list_marker_upper_alpha_paren, - [14591] = 1, - ACTIONS(1781), 2, + [15201] = 1, + ACTIONS(1791), 2, sym__eof_or_newline, sym__close_paragraph, - [14596] = 2, - ACTIONS(1775), 1, + [15206] = 1, + ACTIONS(1793), 2, + sym__block_close, + sym_list_marker_upper_alpha_parens, + [15211] = 2, + ACTIONS(1795), 1, + sym_table_cell_alignment, + ACTIONS(1797), 1, + sym__newline, + [15218] = 2, + ACTIONS(1787), 1, sym__id, - STATE(996), 1, + STATE(1027), 1, sym_reference_label, - [14603] = 2, - ACTIONS(1783), 1, - anon_sym_PIPE, - STATE(823), 1, - aux_sym_table_row_repeat1, - [14610] = 1, - ACTIONS(1660), 2, + [15225] = 1, + ACTIONS(1799), 2, sym__block_close, - sym_list_marker_upper_roman_parens, - [14615] = 1, - ACTIONS(1668), 2, + sym_list_marker_lower_roman_parens, + [15230] = 2, + ACTIONS(1801), 1, + sym__eof_or_newline, + STATE(176), 1, + sym__one_or_two_newlines, + [15237] = 1, + ACTIONS(778), 2, sym__block_close, - sym_list_marker_upper_roman_parens, - [14620] = 2, - ACTIONS(1785), 1, - anon_sym_PIPE, - STATE(819), 1, - aux_sym_table_separator_repeat1, - [14627] = 2, - ACTIONS(1777), 1, + sym__block_quote_continuation, + [15242] = 1, + ACTIONS(750), 2, + sym__block_close, + sym__block_quote_continuation, + [15247] = 1, + ACTIONS(554), 2, + sym__block_close, + sym__block_quote_continuation, + [15252] = 2, + ACTIONS(1795), 1, sym_table_cell_alignment, - ACTIONS(1787), 1, + ACTIONS(1803), 1, sym__newline, - [14634] = 1, - ACTIONS(1660), 2, + [15259] = 1, + ACTIONS(1805), 2, sym__block_close, - sym_list_marker_lower_roman_parens, - [14639] = 2, - ACTIONS(1789), 1, + sym_list_marker_upper_roman_parens, + [15264] = 1, + ACTIONS(806), 2, + sym__block_close, + sym__block_quote_continuation, + [15269] = 1, + ACTIONS(798), 2, + sym__block_close, + sym__block_quote_continuation, + [15274] = 2, + ACTIONS(1807), 1, anon_sym_PIPE, - STATE(698), 1, + STATE(860), 1, aux_sym_table_row_repeat1, - [14646] = 1, - ACTIONS(1668), 2, - sym__block_close, - sym_list_marker_lower_roman_parens, - [14651] = 2, - ACTIONS(1791), 1, + [15281] = 2, + ACTIONS(1809), 1, anon_sym_PIPE, - STATE(701), 1, + STATE(880), 1, aux_sym_table_separator_repeat1, - [14658] = 2, - ACTIONS(1789), 1, + [15288] = 1, + ACTIONS(742), 2, + sym__block_close, + sym__block_quote_continuation, + [15293] = 2, + ACTIONS(1811), 1, anon_sym_PIPE, - STATE(823), 1, + STATE(733), 1, aux_sym_table_row_repeat1, - [14665] = 2, - ACTIONS(1791), 1, - anon_sym_PIPE, - STATE(819), 1, - aux_sym_table_separator_repeat1, - [14672] = 2, - ACTIONS(1777), 1, - sym_table_cell_alignment, - ACTIONS(1793), 1, - sym__newline, - [14679] = 2, + [15300] = 2, ACTIONS(1795), 1, - anon_sym_PIPE, - STATE(819), 1, - aux_sym_table_separator_repeat1, - [14686] = 2, - ACTIONS(1777), 1, sym_table_cell_alignment, - ACTIONS(1797), 1, + ACTIONS(1813), 1, sym__newline, - [14693] = 1, - ACTIONS(1660), 2, - sym__block_close, - sym_list_marker_upper_alpha_parens, - [14698] = 2, - ACTIONS(1799), 1, + [15307] = 2, + ACTIONS(1815), 1, anon_sym_PIPE, - STATE(823), 1, - aux_sym_table_row_repeat1, - [14705] = 2, - ACTIONS(1801), 1, + STATE(734), 1, + aux_sym_table_separator_repeat1, + [15314] = 2, + ACTIONS(1811), 1, anon_sym_PIPE, - STATE(707), 1, + STATE(860), 1, aux_sym_table_row_repeat1, - [14712] = 2, - ACTIONS(1803), 1, + [15321] = 2, + ACTIONS(1815), 1, anon_sym_PIPE, - STATE(708), 1, + STATE(880), 1, aux_sym_table_separator_repeat1, - [14719] = 2, - ACTIONS(1805), 1, - sym__whitespace1, - ACTIONS(1807), 1, - sym__newline, - [14726] = 2, - ACTIONS(1809), 1, - anon_sym_PIPE, - STATE(823), 1, - aux_sym_table_row_repeat1, - [14733] = 2, - ACTIONS(1811), 1, + [15328] = 1, + ACTIONS(714), 2, + sym__block_close, + sym__block_quote_continuation, + [15333] = 1, + ACTIONS(694), 2, + sym__block_close, + sym__block_quote_continuation, + [15338] = 1, + ACTIONS(690), 2, + sym__block_close, + sym__block_quote_continuation, + [15343] = 2, + ACTIONS(1817), 1, sym__eof_or_newline, - STATE(626), 1, + STATE(694), 1, sym__one_or_two_newlines, - [14740] = 1, - ACTIONS(1813), 2, + [15350] = 1, + ACTIONS(1819), 2, sym__eof_or_newline, sym__close_paragraph, - [14745] = 1, - ACTIONS(1668), 2, - sym__block_close, - sym_list_marker_upper_alpha_parens, - [14750] = 1, - ACTIONS(1660), 2, - sym__block_close, - sym_list_marker_lower_alpha_parens, - [14755] = 1, - ACTIONS(1668), 2, - sym__block_close, - sym_list_marker_lower_alpha_parens, - [14760] = 1, - ACTIONS(1660), 2, - sym__block_close, - sym_list_marker_decimal_parens, - [14765] = 1, - ACTIONS(1668), 2, - sym__block_close, - sym_list_marker_decimal_parens, - [14770] = 1, - ACTIONS(1660), 2, - sym__block_close, - sym_list_marker_upper_roman_paren, - [14775] = 1, - ACTIONS(1668), 2, - sym__block_close, - sym_list_marker_upper_roman_paren, - [14780] = 1, - ACTIONS(1660), 2, - sym__block_close, - sym_list_marker_lower_roman_paren, - [14785] = 1, - ACTIONS(1668), 2, - sym__block_close, - sym_list_marker_lower_roman_paren, - [14790] = 1, - ACTIONS(1660), 2, + [15355] = 1, + ACTIONS(1821), 2, + sym__eof_or_newline, + sym__close_paragraph, + [15360] = 2, + ACTIONS(1823), 1, + anon_sym_PIPE, + STATE(739), 1, + aux_sym_table_row_repeat1, + [15367] = 2, + ACTIONS(1825), 1, + anon_sym_PIPE, + STATE(740), 1, + aux_sym_table_separator_repeat1, + [15374] = 2, + ACTIONS(1795), 1, + sym_table_cell_alignment, + ACTIONS(1827), 1, + sym__newline, + [15381] = 1, + ACTIONS(1703), 2, sym__block_close, - sym_list_marker_upper_alpha_paren, - [14795] = 1, - ACTIONS(1815), 2, + sym_list_marker_lower_alpha_period, + [15386] = 1, + ACTIONS(704), 2, sym__block_close, - sym_list_marker_lower_alpha_paren, - [14800] = 1, - ACTIONS(1660), 2, + sym__block_quote_continuation, + [15391] = 1, + ACTIONS(722), 2, sym__block_close, - sym_list_marker_lower_alpha_paren, - [14805] = 1, - ACTIONS(1668), 2, + sym__block_quote_continuation, + [15396] = 2, + ACTIONS(1829), 1, + sym__whitespace1, + ACTIONS(1831), 1, + sym__newline, + [15403] = 1, + ACTIONS(457), 2, + sym__block_quote_continuation, + anon_sym_PIPE, + [15408] = 1, + ACTIONS(730), 2, sym__block_close, - sym_list_marker_lower_alpha_paren, - [14810] = 1, - ACTIONS(1660), 2, + sym__block_quote_continuation, + [15413] = 1, + ACTIONS(738), 2, sym__block_close, - sym_list_marker_decimal_paren, - [14815] = 1, - ACTIONS(1668), 2, + sym__block_quote_continuation, + [15418] = 2, + ACTIONS(1833), 1, + sym__id, + STATE(978), 1, + sym_class_name, + [15425] = 1, + ACTIONS(746), 2, sym__block_close, - sym_list_marker_decimal_paren, - [14820] = 1, - ACTIONS(1660), 2, + sym__block_quote_continuation, + [15430] = 1, + ACTIONS(754), 2, sym__block_close, - sym_list_marker_upper_roman_period, - [14825] = 1, - ACTIONS(1668), 2, + sym__block_quote_continuation, + [15435] = 1, + ACTIONS(762), 2, sym__block_close, - sym_list_marker_upper_roman_period, - [14830] = 1, - ACTIONS(1660), 2, + sym__block_quote_continuation, + [15440] = 2, + ACTIONS(1835), 1, + sym_language, + ACTIONS(1837), 1, + sym__newline, + [15447] = 1, + ACTIONS(1839), 2, sym__block_close, - sym_list_marker_lower_roman_period, - [14835] = 1, - ACTIONS(1668), 2, + sym_list_marker_upper_roman_paren, + [15452] = 1, + ACTIONS(770), 2, sym__block_close, - sym_list_marker_lower_roman_period, - [14840] = 1, - ACTIONS(1660), 2, + sym__block_quote_continuation, + [15457] = 1, + ACTIONS(1841), 2, + sym__eof_or_newline, + sym__close_paragraph, + [15462] = 1, + ACTIONS(1686), 2, sym__block_close, - sym_list_marker_upper_alpha_period, - [14845] = 2, - ACTIONS(1817), 1, + sym_list_marker_upper_roman_parens, + [15467] = 2, + ACTIONS(1843), 1, + anon_sym_PIPE, + STATE(860), 1, + aux_sym_table_row_repeat1, + [15474] = 2, + ACTIONS(1787), 1, + sym__id, + STATE(999), 1, + sym_reference_label, + [15481] = 2, + ACTIONS(1845), 1, anon_sym_PIPE, - STATE(819), 1, + STATE(880), 1, aux_sym_table_separator_repeat1, - [14852] = 1, - ACTIONS(1668), 2, + [15488] = 1, + ACTIONS(1703), 2, sym__block_close, - sym_list_marker_upper_alpha_period, - [14857] = 2, - ACTIONS(1819), 1, + sym_list_marker_upper_roman_parens, + [15493] = 2, + ACTIONS(1847), 1, anon_sym_PIPE, - STATE(717), 1, + STATE(766), 1, aux_sym_table_row_repeat1, - [14864] = 2, - ACTIONS(1821), 1, + [15500] = 2, + ACTIONS(1795), 1, + sym_table_cell_alignment, + ACTIONS(1849), 1, + sym__newline, + [15507] = 2, + ACTIONS(1851), 1, anon_sym_PIPE, - STATE(740), 1, + STATE(768), 1, aux_sym_table_separator_repeat1, - [14871] = 2, - ACTIONS(1819), 1, + [15514] = 2, + ACTIONS(1847), 1, anon_sym_PIPE, - STATE(823), 1, + STATE(860), 1, aux_sym_table_row_repeat1, - [14878] = 1, - ACTIONS(1660), 2, - sym__block_close, - sym_list_marker_lower_alpha_period, - [14883] = 2, - ACTIONS(1821), 1, - anon_sym_PIPE, - STATE(819), 1, - aux_sym_table_separator_repeat1, - [14890] = 2, - ACTIONS(1777), 1, + [15521] = 2, + ACTIONS(1795), 1, sym_table_cell_alignment, - ACTIONS(1823), 1, - sym__newline, - [14897] = 1, - ACTIONS(1825), 2, - sym__eof_or_newline, - sym__close_paragraph, - [14902] = 1, - ACTIONS(1827), 2, - sym__block_close, - sym_list_marker_lower_alpha_parens, - [14907] = 2, - ACTIONS(1829), 1, - sym_language, - ACTIONS(1831), 1, + ACTIONS(1853), 1, sym__newline, - [14914] = 2, - ACTIONS(1795), 1, + [15528] = 2, + ACTIONS(1851), 1, anon_sym_PIPE, - STATE(825), 1, + STATE(880), 1, aux_sym_table_separator_repeat1, - [14921] = 2, - ACTIONS(1799), 1, + [15535] = 1, + ACTIONS(1686), 2, + sym__block_close, + sym_list_marker_lower_roman_parens, + [15540] = 1, + ACTIONS(1217), 2, + sym__block_close, + sym__heading_continuation, + [15545] = 2, + ACTIONS(1855), 1, anon_sym_PIPE, - STATE(826), 1, + STATE(773), 1, aux_sym_table_row_repeat1, - [14928] = 1, - ACTIONS(1718), 2, - sym__eof_or_newline, - sym__newline_inline, - [14933] = 2, - ACTIONS(1833), 1, - sym__id, - STATE(1023), 1, - sym_class_name, - [14940] = 2, - ACTIONS(1835), 1, + [15552] = 2, + ACTIONS(1857), 1, + anon_sym_PIPE, + STATE(775), 1, + aux_sym_table_separator_repeat1, + [15559] = 1, + ACTIONS(834), 2, + sym__block_close, + sym__block_quote_continuation, + [15564] = 1, + ACTIONS(1703), 2, + sym__block_close, + sym_list_marker_lower_roman_parens, + [15569] = 1, + ACTIONS(1686), 2, + sym__block_close, + sym_list_marker_upper_alpha_parens, + [15574] = 2, + ACTIONS(1859), 1, anon_sym_PIPE, - STATE(744), 1, + STATE(860), 1, aux_sym_table_row_repeat1, - [14947] = 1, - ACTIONS(1837), 2, - sym__eof_or_newline, - sym__close_paragraph, - [14952] = 2, - ACTIONS(1777), 1, + [15581] = 2, + ACTIONS(1795), 1, sym_table_cell_alignment, - ACTIONS(1839), 1, + ACTIONS(1861), 1, sym__newline, - [14959] = 1, - ACTIONS(1841), 2, - sym__eof_or_newline, - sym__close_paragraph, - [14964] = 1, - ACTIONS(1843), 2, - sym__eof_or_newline, - sym__close_paragraph, - [14969] = 1, - ACTIONS(1845), 2, + [15588] = 1, + ACTIONS(1863), 2, sym__block_close, - sym_list_marker_decimal_period, - [14974] = 1, - ACTIONS(1736), 2, + sym_list_marker_definition, + [15593] = 2, + ACTIONS(1865), 1, + anon_sym_PIPE, + STATE(880), 1, + aux_sym_table_separator_repeat1, + [15600] = 1, + ACTIONS(1703), 2, sym__block_close, - sym__heading_continuation, - [14979] = 2, - ACTIONS(1847), 1, + sym_list_marker_upper_alpha_parens, + [15605] = 2, + ACTIONS(1867), 1, anon_sym_PIPE, - STATE(823), 1, + STATE(783), 1, aux_sym_table_row_repeat1, - [14986] = 2, - ACTIONS(1849), 1, + [15612] = 2, + ACTIONS(1869), 1, anon_sym_PIPE, - STATE(819), 1, + STATE(786), 1, aux_sym_table_separator_repeat1, - [14993] = 2, - ACTIONS(1851), 1, + [15619] = 2, + ACTIONS(1867), 1, anon_sym_PIPE, - STATE(762), 1, + STATE(860), 1, aux_sym_table_row_repeat1, - [15000] = 2, - ACTIONS(1853), 1, + [15626] = 2, + ACTIONS(1869), 1, anon_sym_PIPE, - STATE(763), 1, + STATE(880), 1, aux_sym_table_separator_repeat1, - [15007] = 2, - ACTIONS(1777), 1, + [15633] = 1, + ACTIONS(1686), 2, + sym__block_close, + sym_list_marker_lower_alpha_parens, + [15638] = 2, + ACTIONS(1795), 1, sym_table_cell_alignment, - ACTIONS(1855), 1, + ACTIONS(1871), 1, sym__newline, - [15014] = 1, - ACTIONS(1660), 2, - sym__block_close, - sym_list_marker_decimal_period, - [15019] = 2, - ACTIONS(1851), 1, + [15645] = 2, + ACTIONS(1873), 1, anon_sym_PIPE, - STATE(823), 1, + STATE(790), 1, aux_sym_table_row_repeat1, - [15026] = 2, - ACTIONS(1853), 1, + [15652] = 2, + ACTIONS(1875), 1, anon_sym_PIPE, - STATE(819), 1, + STATE(791), 1, aux_sym_table_separator_repeat1, - [15033] = 2, - ACTIONS(1037), 1, - aux_sym__line_token1, - STATE(685), 1, - sym__line, - [15040] = 2, - ACTIONS(1857), 1, + [15659] = 1, + ACTIONS(786), 2, + sym__block_close, + sym__block_quote_continuation, + [15664] = 1, + ACTIONS(1703), 2, + sym__block_close, + sym_list_marker_lower_alpha_parens, + [15669] = 2, + ACTIONS(1877), 1, anon_sym_PIPE, - STATE(768), 1, + STATE(860), 1, aux_sym_table_row_repeat1, - [15047] = 2, - ACTIONS(1859), 1, + [15676] = 2, + ACTIONS(1879), 1, anon_sym_PIPE, - STATE(769), 1, + STATE(880), 1, aux_sym_table_separator_repeat1, - [15054] = 2, - ACTIONS(1861), 1, - sym__eof_or_newline, - STATE(785), 1, - sym__one_or_two_newlines, - [15061] = 1, - ACTIONS(1863), 2, + [15683] = 1, + ACTIONS(728), 2, + sym__block_close, + sym__block_quote_continuation, + [15688] = 1, + ACTIONS(1881), 2, sym__eof_or_newline, sym__close_paragraph, - [15066] = 1, - ACTIONS(1865), 2, - sym__block_close, - sym_list_marker_lower_alpha_period, - [15071] = 1, - ACTIONS(1867), 2, - sym__block_close, - sym_list_marker_upper_alpha_period, - [15076] = 1, - ACTIONS(1869), 2, - sym__block_close, - sym_list_marker_lower_roman_period, - [15081] = 1, - ACTIONS(1668), 2, - sym__block_close, - sym_list_marker_decimal_period, - [15086] = 1, - ACTIONS(1871), 2, + [15693] = 2, + ACTIONS(1883), 1, + anon_sym_PIPE, + STATE(835), 1, + aux_sym_table_separator_repeat1, + [15700] = 1, + ACTIONS(1686), 2, sym__block_close, - sym_list_marker_upper_roman_period, - [15091] = 1, - ACTIONS(1873), 2, + sym_list_marker_decimal_parens, + [15705] = 1, + ACTIONS(1703), 2, sym__block_close, - sym_list_marker_decimal_paren, - [15096] = 1, - ACTIONS(763), 2, + sym_list_marker_decimal_parens, + [15710] = 2, + ACTIONS(1885), 1, + anon_sym_PIPE, + STATE(838), 1, + aux_sym_table_row_repeat1, + [15717] = 1, + ACTIONS(774), 2, sym__block_close, sym__block_quote_continuation, - [15101] = 1, - ACTIONS(1875), 2, - sym__block_close, - sym_list_marker_upper_alpha_paren, - [15106] = 1, - ACTIONS(1877), 2, + [15722] = 1, + ACTIONS(1887), 2, sym__block_close, sym_list_marker_lower_roman_paren, - [15111] = 1, - ACTIONS(687), 2, + [15727] = 1, + ACTIONS(782), 2, sym__block_close, sym__block_quote_continuation, - [15116] = 1, - ACTIONS(695), 2, + [15732] = 1, + ACTIONS(790), 2, sym__block_close, sym__block_quote_continuation, - [15121] = 1, - ACTIONS(707), 2, + [15737] = 1, + ACTIONS(1889), 2, + sym__eof_or_newline, + sym__close_paragraph, + [15742] = 1, + ACTIONS(1891), 2, sym__block_close, - sym__block_quote_continuation, - [15126] = 1, - ACTIONS(719), 2, + sym_list_marker_decimal_period, + [15747] = 1, + ACTIONS(1686), 2, sym__block_close, - sym__block_quote_continuation, - [15131] = 1, - ACTIONS(673), 2, + sym_list_marker_decimal_period, + [15752] = 1, + ACTIONS(1893), 2, sym__block_close, - sym__block_quote_continuation, - [15136] = 1, - ACTIONS(671), 2, + sym_list_marker_lower_alpha_period, + [15757] = 1, + ACTIONS(794), 2, sym__block_close, sym__block_quote_continuation, - [15141] = 1, - ACTIONS(735), 2, + [15762] = 1, + ACTIONS(802), 2, sym__block_close, sym__block_quote_continuation, - [15146] = 1, - ACTIONS(743), 2, + [15767] = 1, + ACTIONS(1895), 2, sym__block_close, - sym__block_quote_continuation, - [15151] = 1, - ACTIONS(751), 2, + sym_list_marker_upper_alpha_period, + [15772] = 1, + ACTIONS(1897), 2, sym__block_close, - sym__block_quote_continuation, - [15156] = 1, - ACTIONS(537), 2, + sym_list_marker_lower_roman_period, + [15777] = 1, + ACTIONS(810), 2, sym__block_close, sym__block_quote_continuation, - [15161] = 1, - ACTIONS(1879), 2, + [15782] = 1, + ACTIONS(1703), 2, sym__block_close, - sym_list_marker_decimal_parens, - [15166] = 1, - ACTIONS(1881), 2, + sym_list_marker_decimal_period, + [15787] = 1, + ACTIONS(1899), 2, sym__block_close, - sym_list_marker_definition, - [15171] = 1, - ACTIONS(771), 2, + sym_list_marker_upper_roman_period, + [15792] = 1, + ACTIONS(814), 2, sym__block_close, sym__block_quote_continuation, - [15176] = 2, - ACTIONS(1883), 1, + [15797] = 2, + ACTIONS(1901), 1, anon_sym_PIPE, - STATE(823), 1, + STATE(798), 1, aux_sym_table_row_repeat1, - [15183] = 2, - ACTIONS(1885), 1, + [15804] = 2, + ACTIONS(1903), 1, anon_sym_PIPE, - STATE(819), 1, + STATE(799), 1, aux_sym_table_separator_repeat1, - [15190] = 1, - ACTIONS(713), 2, - sym__block_close, - sym__block_quote_continuation, - [15195] = 1, - ACTIONS(783), 2, - sym__block_close, - sym__block_quote_continuation, - [15200] = 1, - ACTIONS(847), 2, - sym__block_close, - sym__block_quote_continuation, - [15205] = 2, - ACTIONS(1777), 1, + [15811] = 2, + ACTIONS(1901), 1, + anon_sym_PIPE, + STATE(860), 1, + aux_sym_table_row_repeat1, + [15818] = 2, + ACTIONS(1903), 1, + anon_sym_PIPE, + STATE(880), 1, + aux_sym_table_separator_repeat1, + [15825] = 2, + ACTIONS(1795), 1, sym_table_cell_alignment, - ACTIONS(1887), 1, + ACTIONS(1905), 1, sym__newline, - [15212] = 1, - ACTIONS(795), 2, - sym__block_close, - sym__block_quote_continuation, - [15217] = 2, - ACTIONS(1889), 1, + [15832] = 2, + ACTIONS(1907), 1, anon_sym_PIPE, - STATE(797), 1, + STATE(824), 1, aux_sym_table_row_repeat1, - [15224] = 1, - ACTIONS(667), 2, + [15839] = 1, + ACTIONS(1686), 2, sym__block_close, - sym__block_quote_continuation, - [15229] = 2, - ACTIONS(1891), 1, + sym_list_marker_upper_roman_paren, + [15844] = 2, + ACTIONS(1795), 1, + sym_table_cell_alignment, + ACTIONS(1909), 1, + sym__newline, + [15851] = 2, + ACTIONS(1911), 1, anon_sym_PIPE, - STATE(798), 1, + STATE(825), 1, aux_sym_table_separator_repeat1, - [15236] = 1, - ACTIONS(837), 2, - sym__block_close, + [15858] = 1, + ACTIONS(457), 2, + sym_list_marker_dash, sym__block_quote_continuation, - [15241] = 2, - ACTIONS(1889), 1, + [15863] = 1, + ACTIONS(1730), 2, + sym_frontmatter_marker, + aux_sym__line_token1, + [15868] = 1, + ACTIONS(1913), 2, + sym__eof_or_newline, + sym__newline_inline, + [15873] = 1, + ACTIONS(1915), 2, + sym__eof_or_newline, + sym__close_paragraph, + [15878] = 2, + ACTIONS(1917), 1, anon_sym_PIPE, - STATE(823), 1, + STATE(880), 1, + aux_sym_table_separator_repeat1, + [15885] = 2, + ACTIONS(1919), 1, + anon_sym_PIPE, + STATE(860), 1, aux_sym_table_row_repeat1, - [15248] = 1, - ACTIONS(527), 2, - sym__block_close, - sym__block_quote_continuation, - [15253] = 1, - ACTIONS(811), 2, - sym__block_close, - sym__block_quote_continuation, - [15258] = 2, - ACTIONS(1891), 1, + [15892] = 2, + ACTIONS(1921), 1, anon_sym_PIPE, - STATE(819), 1, + STATE(880), 1, aux_sym_table_separator_repeat1, - [15265] = 2, - ACTIONS(1777), 1, + [15899] = 2, + ACTIONS(1923), 1, + anon_sym_PIPE, + STATE(860), 1, + aux_sym_table_row_repeat1, + [15906] = 2, + ACTIONS(1795), 1, sym_table_cell_alignment, - ACTIONS(1893), 1, + ACTIONS(1925), 1, sym__newline, - [15272] = 1, - ACTIONS(805), 2, + [15913] = 1, + ACTIONS(1703), 2, sym__block_close, - sym__block_quote_continuation, - [15277] = 2, - ACTIONS(1775), 1, - sym__id, - STATE(889), 1, - sym_reference_label, - [15284] = 1, - ACTIONS(801), 2, + sym_list_marker_upper_roman_paren, + [15918] = 1, + ACTIONS(1686), 2, + sym__block_close, + sym_list_marker_lower_roman_paren, + [15923] = 1, + ACTIONS(1703), 2, + sym__block_close, + sym_list_marker_lower_roman_paren, + [15928] = 1, + ACTIONS(1686), 2, + sym__block_close, + sym_list_marker_upper_alpha_paren, + [15933] = 1, + ACTIONS(1703), 2, + sym__block_close, + sym_list_marker_upper_alpha_paren, + [15938] = 1, + ACTIONS(1686), 2, + sym__block_close, + sym_list_marker_lower_alpha_paren, + [15943] = 1, + ACTIONS(1703), 2, sym__block_close, + sym_list_marker_lower_alpha_paren, + [15948] = 1, + ACTIONS(457), 2, sym__block_quote_continuation, - [15289] = 2, - ACTIONS(1895), 1, - anon_sym_PIPE, - STATE(808), 1, - aux_sym_table_row_repeat1, - [15296] = 2, - ACTIONS(1897), 1, - anon_sym_PIPE, - STATE(811), 1, - aux_sym_table_separator_repeat1, - [15303] = 2, - ACTIONS(1777), 1, + aux_sym__line_token1, + [15953] = 2, + ACTIONS(1795), 1, sym_table_cell_alignment, - ACTIONS(1899), 1, + ACTIONS(1927), 1, sym__newline, - [15310] = 2, - ACTIONS(1901), 1, - anon_sym_PIPE, - STATE(819), 1, - aux_sym_table_separator_repeat1, - [15317] = 2, - ACTIONS(1904), 1, + [15960] = 2, + ACTIONS(1929), 1, sym__id, - STATE(412), 1, + STATE(447), 1, sym_class_name, - [15324] = 2, - ACTIONS(1777), 1, - sym_table_cell_alignment, - ACTIONS(1906), 1, - sym__newline, - [15331] = 1, - ACTIONS(797), 2, - sym__block_close, - sym__block_quote_continuation, - [15336] = 2, - ACTIONS(1908), 1, - anon_sym_PIPE, - STATE(823), 1, - aux_sym_table_row_repeat1, - [15343] = 1, - ACTIONS(1668), 2, - sym__block_close, - sym_list_marker_lower_alpha_period, - [15348] = 2, - ACTIONS(1911), 1, + [15967] = 2, + ACTIONS(1917), 1, anon_sym_PIPE, - STATE(819), 1, + STATE(837), 1, aux_sym_table_separator_repeat1, - [15355] = 2, - ACTIONS(1913), 1, + [15974] = 2, + ACTIONS(1923), 1, anon_sym_PIPE, - STATE(823), 1, + STATE(836), 1, aux_sym_table_row_repeat1, - [15362] = 1, - ACTIONS(1666), 2, - sym_frontmatter_marker, - aux_sym__line_token1, - [15367] = 2, - ACTIONS(1915), 1, + [15981] = 1, + ACTIONS(1686), 2, + sym__block_close, + sym_list_marker_decimal_paren, + [15986] = 1, + ACTIONS(1931), 2, + sym__eof_or_newline, + sym__close_paragraph, + [15991] = 1, + ACTIONS(1703), 2, + sym__block_close, + sym_list_marker_decimal_paren, + [15996] = 2, + ACTIONS(1933), 1, sym__eof_or_newline, - STATE(204), 1, + STATE(231), 1, sym__one_or_two_newlines, - [15374] = 1, - ACTIONS(1917), 2, + [16003] = 1, + ACTIONS(1935), 2, sym__eof_or_newline, sym__close_paragraph, - [15379] = 1, - ACTIONS(789), 2, - sym__block_close, - sym__block_quote_continuation, - [15384] = 1, - ACTIONS(785), 2, + [16008] = 1, + ACTIONS(1713), 2, + sym__eof_or_newline, + sym__newline_inline, + [16013] = 1, + ACTIONS(1686), 2, sym__block_close, - sym__block_quote_continuation, - [15389] = 1, - ACTIONS(777), 2, + sym_list_marker_upper_roman_period, + [16018] = 1, + ACTIONS(1937), 2, sym__block_close, - sym__block_quote_continuation, - [15394] = 1, - ACTIONS(773), 2, + sym_list_marker_decimal_paren, + [16023] = 2, + ACTIONS(1939), 1, + anon_sym_PIPE, + STATE(860), 1, + aux_sym_table_row_repeat1, + [16030] = 1, + ACTIONS(822), 2, sym__block_close, sym__block_quote_continuation, - [15399] = 1, - ACTIONS(765), 2, + [16035] = 1, + ACTIONS(1942), 2, sym__block_close, - sym__block_quote_continuation, - [15404] = 1, - ACTIONS(757), 2, + sym_list_marker_lower_alpha_paren, + [16040] = 1, + ACTIONS(826), 2, sym__block_close, sym__block_quote_continuation, - [15409] = 1, - ACTIONS(753), 2, + [16045] = 1, + ACTIONS(830), 2, sym__block_close, sym__block_quote_continuation, - [15414] = 1, - ACTIONS(745), 2, + [16050] = 1, + ACTIONS(544), 2, sym__block_close, sym__block_quote_continuation, - [15419] = 1, - ACTIONS(737), 2, + [16055] = 1, + ACTIONS(1703), 2, sym__block_close, + sym_list_marker_upper_roman_period, + [16060] = 1, + ACTIONS(457), 2, + sym__list_item_continuation, sym__block_quote_continuation, - [15424] = 1, - ACTIONS(729), 2, + [16065] = 1, + ACTIONS(1686), 2, sym__block_close, - sym__block_quote_continuation, - [15429] = 1, - ACTIONS(725), 2, + sym_list_marker_lower_roman_period, + [16070] = 1, + ACTIONS(852), 2, sym__block_close, sym__block_quote_continuation, - [15434] = 1, - ACTIONS(721), 2, + [16075] = 1, + ACTIONS(684), 2, sym__block_close, sym__block_quote_continuation, - [15439] = 1, - ACTIONS(709), 2, + [16080] = 1, + ACTIONS(1703), 2, sym__block_close, - sym__block_quote_continuation, - [15444] = 1, - ACTIONS(697), 2, + sym_list_marker_lower_roman_period, + [16085] = 1, + ACTIONS(856), 2, sym__block_close, sym__block_quote_continuation, - [15449] = 1, - ACTIONS(689), 2, + [16090] = 1, + ACTIONS(860), 2, sym__block_close, sym__block_quote_continuation, - [15454] = 1, - ACTIONS(677), 2, - sym__block_close, + [16095] = 1, + ACTIONS(457), 2, + sym__list_marker_task_begin, sym__block_quote_continuation, - [15459] = 1, - ACTIONS(817), 2, + [16100] = 1, + ACTIONS(1686), 2, sym__block_close, - sym__block_quote_continuation, - [15464] = 1, - ACTIONS(831), 2, + sym_list_marker_upper_alpha_period, + [16105] = 1, + ACTIONS(846), 2, sym__block_close, sym__block_quote_continuation, - [15469] = 1, - ACTIONS(835), 2, + [16110] = 1, + ACTIONS(1703), 2, sym__block_close, - sym__block_quote_continuation, - [15474] = 1, - ACTIONS(1341), 2, + sym_list_marker_upper_alpha_period, + [16115] = 1, + ACTIONS(1944), 2, sym__block_close, - sym__block_quote_continuation, - [15479] = 1, - ACTIONS(1919), 2, + sym_list_marker_upper_alpha_paren, + [16120] = 1, + ACTIONS(1688), 2, sym__block_close, - sym_list_marker_upper_roman_paren, - [15484] = 2, - ACTIONS(1921), 1, + sym__heading_continuation, + [16125] = 2, + ACTIONS(1946), 1, anon_sym_PIPE, - STATE(710), 1, + STATE(880), 1, aux_sym_table_separator_repeat1, - [15491] = 1, - ACTIONS(1923), 2, - sym__block_close, - sym_list_marker_definition, - [15496] = 1, - ACTIONS(1925), 2, - sym__block_close, - sym_list_marker_upper_alpha_parens, - [15501] = 2, - ACTIONS(1927), 1, - sym__eof_or_newline, - STATE(228), 1, - sym__one_or_two_newlines, - [15508] = 2, - ACTIONS(1777), 1, - sym_table_cell_alignment, - ACTIONS(1929), 1, - sym__newline, - [15515] = 2, - ACTIONS(1777), 1, - sym_table_cell_alignment, - ACTIONS(1931), 1, - sym__newline, - [15522] = 2, - ACTIONS(1933), 1, - sym__eof_or_newline, - STATE(134), 1, - sym__one_or_two_newlines, - [15529] = 2, - ACTIONS(1777), 1, + [16132] = 2, + ACTIONS(1795), 1, sym_table_cell_alignment, - ACTIONS(1935), 1, - sym__newline, - [15536] = 1, - ACTIONS(1937), 2, - sym__block_close, - sym_list_marker_lower_roman_parens, - [15541] = 2, - ACTIONS(1777), 1, + ACTIONS(1949), 1, + sym__newline, + [16139] = 1, + ACTIONS(457), 2, + sym_list_marker_star, + sym__block_quote_continuation, + [16144] = 2, + ACTIONS(1795), 1, sym_table_cell_alignment, - ACTIONS(1939), 1, + ACTIONS(1951), 1, sym__newline, - [15548] = 1, - ACTIONS(1941), 2, + [16151] = 1, + ACTIONS(1953), 2, sym__block_close, - sym_list_marker_upper_roman_parens, - [15553] = 1, - ACTIONS(1047), 1, + sym_list_marker_decimal_parens, + [16156] = 2, + ACTIONS(1102), 1, + aux_sym__line_token1, + STATE(672), 1, + sym__line, + [16163] = 2, + ACTIONS(29), 1, + sym__list_marker_task_begin, + STATE(43), 1, + sym_list_marker_task, + [16170] = 1, + ACTIONS(820), 2, sym__block_close, - [15557] = 1, - ACTIONS(1943), 1, - sym__newline, - [15561] = 1, - ACTIONS(1945), 1, - sym__whitespace, - [15565] = 1, - ACTIONS(1947), 1, - sym__footnote_end, - [15569] = 1, - ACTIONS(1949), 1, - sym__whitespace, - [15573] = 1, - ACTIONS(1951), 1, - sym__newline, - [15577] = 1, - ACTIONS(1953), 1, - sym__newline, - [15581] = 1, + sym__block_quote_continuation, + [16175] = 2, ACTIONS(1955), 1, + sym__eof_or_newline, + STATE(187), 1, + sym__one_or_two_newlines, + [16182] = 1, + ACTIONS(1686), 2, sym__block_close, - [15585] = 1, - ACTIONS(1957), 1, - sym__newline, - [15589] = 1, - ACTIONS(1959), 1, + sym_list_marker_lower_alpha_period, + [16187] = 1, + ACTIONS(1367), 2, sym__block_close, - [15593] = 1, + sym__block_quote_continuation, + [16192] = 1, + ACTIONS(1957), 2, + sym__block_close, + sym_list_marker_definition, + [16197] = 2, + ACTIONS(1795), 1, + sym_table_cell_alignment, + ACTIONS(1959), 1, + sym__newline, + [16204] = 1, ACTIONS(1961), 1, sym__block_close, - [15597] = 1, + [16208] = 1, ACTIONS(1963), 1, - sym__newline, - [15601] = 1, + sym__whitespace1, + [16212] = 1, ACTIONS(1965), 1, sym__newline, - [15605] = 1, + [16216] = 1, ACTIONS(1967), 1, - sym__newline, - [15609] = 1, + sym__whitespace1, + [16220] = 1, ACTIONS(1969), 1, sym__newline, - [15613] = 1, + [16224] = 1, ACTIONS(1971), 1, - sym__newline, - [15617] = 1, + sym__block_close, + [16228] = 1, ACTIONS(1973), 1, - sym__newline, - [15621] = 1, + sym__block_close, + [16232] = 1, ACTIONS(1975), 1, sym__newline, - [15625] = 1, + [16236] = 1, ACTIONS(1977), 1, sym__newline, - [15629] = 1, + [16240] = 1, ACTIONS(1979), 1, - sym__newline, - [15633] = 1, + ts_builtin_sym_end, + [16244] = 1, ACTIONS(1981), 1, - sym__newline, - [15637] = 1, + sym__footnote_end, + [16248] = 1, ACTIONS(1983), 1, sym__newline, - [15641] = 1, + [16252] = 1, ACTIONS(1985), 1, sym__newline, - [15645] = 1, + [16256] = 1, ACTIONS(1987), 1, - anon_sym_RBRACK_COLON, - [15649] = 1, + sym__newline, + [16260] = 1, ACTIONS(1989), 1, sym__newline, - [15653] = 1, + [16264] = 1, ACTIONS(1991), 1, sym__newline, - [15657] = 1, + [16268] = 1, + ACTIONS(1157), 1, + sym__block_close, + [16272] = 1, ACTIONS(1993), 1, - anon_sym_DQUOTE, - [15661] = 1, + anon_sym_RBRACK, + [16276] = 1, ACTIONS(1995), 1, - anon_sym_RBRACK_COLON, - [15665] = 1, - ACTIONS(1777), 1, - sym_table_cell_alignment, - [15669] = 1, + sym__footnote_end, + [16280] = 1, ACTIONS(1997), 1, - anon_sym_RBRACK, - [15673] = 1, + sym__newline, + [16284] = 1, ACTIONS(1999), 1, - sym_link_destination, - [15677] = 1, + sym__whitespace1, + [16288] = 1, + ACTIONS(1142), 1, + sym__block_close, + [16292] = 1, ACTIONS(2001), 1, sym__newline, - [15681] = 1, + [16296] = 1, ACTIONS(2003), 1, - sym__block_close, - [15685] = 1, + anon_sym_EQ, + [16300] = 1, ACTIONS(2005), 1, - anon_sym_RBRACK, - [15689] = 1, + anon_sym_PIPE, + [16304] = 1, ACTIONS(2007), 1, - sym__block_close, - [15693] = 1, + sym__newline, + [16308] = 1, ACTIONS(2009), 1, sym__block_close, - [15697] = 1, + [16312] = 1, ACTIONS(2011), 1, - sym__newline, - [15701] = 1, - ACTIONS(2013), 1, sym_frontmatter_marker, - [15705] = 1, - ACTIONS(2015), 1, + [16316] = 1, + ACTIONS(2013), 1, sym__newline, - [15709] = 1, + [16320] = 1, + ACTIONS(2015), 1, + anon_sym_PIPE, + [16324] = 1, ACTIONS(2017), 1, - sym__newline, - [15713] = 1, + aux_sym_value_token1, + [16328] = 1, ACTIONS(2019), 1, sym__newline, - [15717] = 1, + [16332] = 1, ACTIONS(2021), 1, sym__newline, - [15721] = 1, + [16336] = 1, ACTIONS(2023), 1, - anon_sym_PIPE, - [15725] = 1, + sym__newline, + [16340] = 1, ACTIONS(2025), 1, sym__newline, - [15729] = 1, + [16344] = 1, ACTIONS(2027), 1, sym__newline, - [15733] = 1, + [16348] = 1, ACTIONS(2029), 1, - aux_sym_value_token1, - [15737] = 1, + sym__newline, + [16352] = 1, ACTIONS(2031), 1, sym__newline, - [15741] = 1, + [16356] = 1, ACTIONS(2033), 1, sym__newline, - [15745] = 1, + [16360] = 1, ACTIONS(2035), 1, - anon_sym_PIPE, - [15749] = 1, + sym__block_close, + [16364] = 1, ACTIONS(2037), 1, - sym__newline, - [15753] = 1, + sym_table_cell_alignment, + [16368] = 1, ACTIONS(2039), 1, sym__newline, - [15757] = 1, + [16372] = 1, ACTIONS(2041), 1, - sym__block_close, - [15761] = 1, + sym__newline, + [16376] = 1, ACTIONS(2043), 1, sym__newline, - [15765] = 1, + [16380] = 1, ACTIONS(2045), 1, - anon_sym_PIPE, - [15769] = 1, + sym__newline, + [16384] = 1, ACTIONS(2047), 1, - sym__block_close, - [15773] = 1, + anon_sym_PIPE, + [16388] = 1, ACTIONS(2049), 1, - sym__newline, - [15777] = 1, + sym__whitespace, + [16392] = 1, ACTIONS(2051), 1, - sym__whitespace1, - [15781] = 1, + sym__footnote_end, + [16396] = 1, ACTIONS(2053), 1, - sym_table_cell_alignment, - [15785] = 1, + sym__newline, + [16400] = 1, + ACTIONS(1118), 1, + sym__block_close, + [16404] = 1, ACTIONS(2055), 1, - anon_sym_EQ, - [15789] = 1, + sym__newline, + [16408] = 1, ACTIONS(2057), 1, - sym__footnote_end, - [15793] = 1, - ACTIONS(2059), 1, sym__newline, - [15797] = 1, + [16412] = 1, + ACTIONS(2059), 1, + anon_sym_EQ, + [16416] = 1, ACTIONS(2061), 1, - sym__newline, - [15801] = 1, + sym_table_cell_alignment, + [16420] = 1, ACTIONS(2063), 1, - sym__newline, - [15805] = 1, + anon_sym_COLON, + [16424] = 1, ACTIONS(2065), 1, - sym__footnote_end, - [15809] = 1, - ACTIONS(1075), 1, - sym__block_close, - [15813] = 1, + sym_table_cell_alignment, + [16428] = 1, ACTIONS(2067), 1, - ts_builtin_sym_end, - [15817] = 1, + sym__newline, + [16432] = 1, ACTIONS(2069), 1, sym__newline, - [15821] = 1, + [16436] = 1, ACTIONS(2071), 1, - sym__newline, - [15825] = 1, + anon_sym_PIPE, + [16440] = 1, ACTIONS(2073), 1, sym__block_close, - [15829] = 1, + [16444] = 1, ACTIONS(2075), 1, - sym__whitespace, - [15833] = 1, - ACTIONS(1116), 1, - sym_list_marker_dash, - [15837] = 1, + sym__newline, + [16448] = 1, ACTIONS(2077), 1, sym__block_close, - [15841] = 1, + [16452] = 1, ACTIONS(2079), 1, - sym__whitespace1, - [15845] = 1, - ACTIONS(2081), 1, sym__newline, - [15849] = 1, + [16456] = 1, + ACTIONS(2081), 1, + sym__block_close, + [16460] = 1, ACTIONS(2083), 1, - sym__whitespace1, - [15853] = 1, + sym__block_close, + [16464] = 1, ACTIONS(2085), 1, sym__newline, - [15857] = 1, + [16468] = 1, ACTIONS(2087), 1, - sym__newline, - [15861] = 1, + sym__whitespace, + [16472] = 1, ACTIONS(2089), 1, - sym__newline, - [15865] = 1, + anon_sym_RBRACK, + [16476] = 1, ACTIONS(2091), 1, - sym_table_cell_alignment, - [15869] = 1, + sym__list_item_continuation, + [16480] = 1, ACTIONS(2093), 1, sym__newline, - [15873] = 1, - ACTIONS(1092), 1, - sym__block_close, - [15877] = 1, + [16484] = 1, ACTIONS(2095), 1, sym__newline, - [15881] = 1, + [16488] = 1, ACTIONS(2097), 1, sym__newline, - [15885] = 1, + [16492] = 1, ACTIONS(2099), 1, - anon_sym_EQ, - [15889] = 1, + sym__newline, + [16496] = 1, ACTIONS(2101), 1, sym__newline, - [15893] = 1, + [16500] = 1, ACTIONS(2103), 1, - sym__newline, - [15897] = 1, + sym__block_close, + [16504] = 1, ACTIONS(2105), 1, - sym__newline, - [15901] = 1, + sym_table_cell_alignment, + [16508] = 1, ACTIONS(2107), 1, sym__newline, - [15905] = 1, + [16512] = 1, ACTIONS(2109), 1, - sym__block_close, - [15909] = 1, + sym__newline, + [16516] = 1, ACTIONS(2111), 1, - sym__block_close, - [15913] = 1, + sym__newline, + [16520] = 1, ACTIONS(2113), 1, - sym__whitespace, - [15917] = 1, - ACTIONS(2115), 1, sym__newline, - [15921] = 1, + [16524] = 1, + ACTIONS(2115), 1, + sym_language, + [16528] = 1, ACTIONS(2117), 1, - sym_frontmatter_marker, - [15925] = 1, + sym__newline, + [16532] = 1, ACTIONS(2119), 1, sym__newline, - [15929] = 1, + [16536] = 1, ACTIONS(2121), 1, - sym__newline, - [15933] = 1, + sym__block_close, + [16540] = 1, ACTIONS(2123), 1, - sym__newline, - [15937] = 1, + sym__block_close, + [16544] = 1, ACTIONS(2125), 1, - sym__footnote_end, - [15941] = 1, + sym__newline, + [16548] = 1, ACTIONS(2127), 1, - sym__whitespace1, - [15945] = 1, - ACTIONS(1059), 1, - sym__block_close, - [15949] = 1, + sym__newline, + [16552] = 1, ACTIONS(2129), 1, - sym__eof_or_newline, - [15953] = 1, + sym__newline, + [16556] = 1, ACTIONS(2131), 1, - sym__block_close, - [15957] = 1, - ACTIONS(2133), 1, + sym__whitespace, + [16560] = 1, + ACTIONS(1351), 1, sym__newline, - [15961] = 1, + [16564] = 1, + ACTIONS(2133), 1, + sym__footnote_end, + [16568] = 1, ACTIONS(2135), 1, - sym__newline, - [15965] = 1, + sym_link_destination, + [16572] = 1, ACTIONS(2137), 1, sym__newline, - [15969] = 1, + [16576] = 1, ACTIONS(2139), 1, - sym__whitespace, - [15973] = 1, - ACTIONS(2141), 1, + anon_sym_RBRACK, + [16580] = 1, + ACTIONS(1108), 1, + sym__block_close, + [16584] = 1, + ACTIONS(1795), 1, sym_table_cell_alignment, - [15977] = 1, + [16588] = 1, + ACTIONS(2141), 1, + anon_sym_RBRACK, + [16592] = 1, ACTIONS(2143), 1, - sym__newline, - [15981] = 1, + sym_table_cell_alignment, + [16596] = 1, ACTIONS(2145), 1, - sym__newline, - [15985] = 1, + anon_sym_DQUOTE, + [16600] = 1, ACTIONS(2147), 1, - sym__block_close, - [15989] = 1, + sym__newline, + [16604] = 1, ACTIONS(2149), 1, - sym__block_close, - [15993] = 1, + sym__newline, + [16608] = 1, ACTIONS(2151), 1, sym__newline, - [15997] = 1, + [16612] = 1, ACTIONS(2153), 1, sym__whitespace, - [16001] = 1, + [16616] = 1, ACTIONS(2155), 1, sym__newline, - [16005] = 1, + [16620] = 1, ACTIONS(2157), 1, - sym_table_cell_alignment, - [16009] = 1, + sym__newline, + [16624] = 1, ACTIONS(2159), 1, sym__newline, - [16013] = 1, + [16628] = 1, ACTIONS(2161), 1, - sym__newline, - [16017] = 1, + anon_sym_RBRACK_COLON, + [16632] = 1, ACTIONS(2163), 1, sym__newline, - [16021] = 1, + [16636] = 1, ACTIONS(2165), 1, - sym__newline, - [16025] = 1, + sym__block_close, + [16640] = 1, ACTIONS(2167), 1, sym__newline, - [16029] = 1, + [16644] = 1, ACTIONS(2169), 1, - sym_table_cell_alignment, - [16033] = 1, + sym__whitespace, + [16648] = 1, ACTIONS(2171), 1, sym__newline, - [16037] = 1, + [16652] = 1, ACTIONS(2173), 1, - sym__newline, - [16041] = 1, + anon_sym_PIPE, + [16656] = 1, ACTIONS(2175), 1, sym__newline, - [16045] = 1, + [16660] = 1, ACTIONS(2177), 1, - sym__newline, - [16049] = 1, + sym__eof_or_newline, + [16664] = 1, ACTIONS(2179), 1, - anon_sym_COLON, - [16053] = 1, + sym__newline, + [16668] = 1, ACTIONS(2181), 1, - sym__block_close, - [16057] = 1, + anon_sym_RBRACK_COLON, + [16672] = 1, ACTIONS(2183), 1, - sym__block_close, - [16061] = 1, - ACTIONS(2185), 1, sym__newline, - [16065] = 1, + [16676] = 1, + ACTIONS(2185), 1, + sym_table_cell_alignment, + [16680] = 1, ACTIONS(2187), 1, - sym__newline, - [16069] = 1, - ACTIONS(2189), 1, - sym__footnote_end, - [16073] = 1, - ACTIONS(1084), 1, sym__block_close, - [16077] = 1, + [16684] = 1, + ACTIONS(2189), 1, + sym__newline, + [16688] = 1, ACTIONS(2191), 1, - sym__whitespace, - [16081] = 1, + sym__newline, + [16692] = 1, ACTIONS(2193), 1, - sym__whitespace, - [16085] = 1, + sym__newline, + [16696] = 1, ACTIONS(2195), 1, - sym_table_cell_alignment, - [16089] = 1, + sym__newline, + [16700] = 1, ACTIONS(2197), 1, - anon_sym_RBRACK_COLON, - [16093] = 1, + sym__newline, + [16704] = 1, ACTIONS(2199), 1, - anon_sym_RBRACK, - [16097] = 1, - ACTIONS(1285), 1, - anon_sym_PIPE, - [16101] = 1, + sym__newline, + [16708] = 1, ACTIONS(2201), 1, - sym_table_cell_alignment, - [16105] = 1, + sym__newline, + [16712] = 1, ACTIONS(2203), 1, - sym_link_destination, - [16109] = 1, - ACTIONS(2205), 1, sym__whitespace, - [16113] = 1, + [16716] = 1, + ACTIONS(2205), 1, + sym__newline, + [16720] = 1, ACTIONS(2207), 1, - anon_sym_RBRACK, - [16117] = 1, + sym__newline, + [16724] = 1, ACTIONS(2209), 1, - anon_sym_RBRACK_COLON, - [16121] = 1, + sym__block_close, + [16728] = 1, ACTIONS(2211), 1, - sym__list_item_continuation, - [16125] = 1, - ACTIONS(1289), 1, - anon_sym_PIPE, - [16129] = 1, + sym__whitespace, + [16732] = 1, ACTIONS(2213), 1, - sym_table_cell_alignment, - [16133] = 1, + sym__whitespace, + [16736] = 1, ACTIONS(2215), 1, - sym_link_destination, - [16137] = 1, + sym__block_close, + [16740] = 1, ACTIONS(2217), 1, - sym__whitespace, - [16141] = 1, - ACTIONS(2219), 1, - anon_sym_PIPE, - [16145] = 1, - ACTIONS(2221), 1, anon_sym_RBRACK_COLON, - [16149] = 1, - ACTIONS(2223), 1, + [16744] = 1, + ACTIONS(2219), 1, sym__newline, - [16153] = 1, - ACTIONS(1112), 1, + [16748] = 1, + ACTIONS(2221), 1, anon_sym_PIPE, - [16157] = 1, - ACTIONS(2225), 1, + [16752] = 1, + ACTIONS(2223), 1, sym_table_cell_alignment, - [16161] = 1, - ACTIONS(2227), 1, + [16756] = 1, + ACTIONS(2225), 1, sym_link_destination, - [16165] = 1, - ACTIONS(2229), 1, + [16760] = 1, + ACTIONS(2227), 1, sym__whitespace, - [16169] = 1, - ACTIONS(2231), 1, + [16764] = 1, + ACTIONS(2229), 1, sym__newline, - [16173] = 1, - ACTIONS(2233), 1, + [16768] = 1, + ACTIONS(2231), 1, anon_sym_RBRACK_COLON, - [16177] = 1, + [16772] = 1, + ACTIONS(2233), 1, + sym__newline, + [16776] = 1, ACTIONS(2235), 1, - sym_language, - [16181] = 1, - ACTIONS(1307), 1, anon_sym_PIPE, - [16185] = 1, + [16780] = 1, ACTIONS(2237), 1, sym_table_cell_alignment, - [16189] = 1, + [16784] = 1, ACTIONS(2239), 1, sym_link_destination, - [16193] = 1, + [16788] = 1, ACTIONS(2241), 1, - sym__newline, - [16197] = 1, + sym__whitespace, + [16792] = 1, ACTIONS(2243), 1, - sym__newline, - [16201] = 1, + sym__footnote_end, + [16796] = 1, ACTIONS(2245), 1, - anon_sym_PIPE, - [16205] = 1, + anon_sym_RBRACK_COLON, + [16800] = 1, ACTIONS(2247), 1, - sym__whitespace1, - [16209] = 1, - ACTIONS(2249), 1, - sym__eof_or_newline, - [16213] = 1, - ACTIONS(1309), 1, sym__newline, - [16217] = 1, - ACTIONS(2251), 1, + [16804] = 1, + ACTIONS(2249), 1, anon_sym_PIPE, - [16221] = 1, + [16808] = 1, + ACTIONS(2251), 1, + sym_table_cell_alignment, + [16812] = 1, ACTIONS(2253), 1, - sym__whitespace1, - [16225] = 1, + sym_link_destination, + [16816] = 1, ACTIONS(2255), 1, - sym__newline, - [16229] = 1, + sym__whitespace, + [16820] = 1, ACTIONS(2257), 1, sym__newline, - [16233] = 1, + [16824] = 1, ACTIONS(2259), 1, - anon_sym_PIPE, - [16237] = 1, + anon_sym_RBRACK_COLON, + [16828] = 1, + ACTIONS(1104), 1, + sym__block_close, + [16832] = 1, ACTIONS(2261), 1, - sym__whitespace1, - [16241] = 1, + anon_sym_PIPE, + [16836] = 1, ACTIONS(2263), 1, - sym__block_close, - [16245] = 1, + sym_table_cell_alignment, + [16840] = 1, ACTIONS(2265), 1, - sym__newline, - [16249] = 1, + sym_link_destination, + [16844] = 1, ACTIONS(2267), 1, - anon_sym_PIPE, - [16253] = 1, + sym__newline, + [16848] = 1, ACTIONS(2269), 1, - sym__whitespace1, - [16257] = 1, + sym__newline, + [16852] = 1, ACTIONS(2271), 1, - anon_sym_COLON, - [16261] = 1, + anon_sym_PIPE, + [16856] = 1, ACTIONS(2273), 1, - anon_sym_COLON, - [16265] = 1, + sym__whitespace1, + [16860] = 1, ACTIONS(2275), 1, - anon_sym_COLON, - [16269] = 1, + sym__newline, + [16864] = 1, ACTIONS(2277), 1, - anon_sym_COLON, - [16273] = 1, + sym__block_close, + [16868] = 1, ACTIONS(2279), 1, - anon_sym_RBRACK, - [16277] = 1, + anon_sym_PIPE, + [16872] = 1, ACTIONS(2281), 1, - anon_sym_RBRACK, - [16281] = 1, + sym__whitespace1, + [16876] = 1, ACTIONS(2283), 1, - anon_sym_RBRACK, - [16285] = 1, + sym_frontmatter_marker, + [16880] = 1, ACTIONS(2285), 1, - anon_sym_RBRACK, - [16289] = 1, - ACTIONS(1271), 1, - anon_sym_PIPE, - [16293] = 1, + sym__eof_or_newline, + [16884] = 1, ACTIONS(2287), 1, + anon_sym_PIPE, + [16888] = 1, + ACTIONS(2289), 1, + sym__whitespace1, + [16892] = 1, + ACTIONS(2291), 1, sym__block_close, - [16297] = 1, - ACTIONS(1118), 1, + [16896] = 1, + ACTIONS(2293), 1, + sym__block_close, + [16900] = 1, + ACTIONS(2295), 1, + anon_sym_PIPE, + [16904] = 1, + ACTIONS(2297), 1, + sym__whitespace1, + [16908] = 1, + ACTIONS(2299), 1, + anon_sym_COLON, + [16912] = 1, + ACTIONS(2301), 1, + anon_sym_COLON, + [16916] = 1, + ACTIONS(2303), 1, + anon_sym_COLON, + [16920] = 1, + ACTIONS(2305), 1, + anon_sym_COLON, + [16924] = 1, + ACTIONS(2307), 1, + anon_sym_RBRACK, + [16928] = 1, + ACTIONS(2309), 1, + anon_sym_RBRACK, + [16932] = 1, + ACTIONS(2311), 1, + anon_sym_RBRACK, + [16936] = 1, + ACTIONS(2313), 1, + anon_sym_RBRACK, + [16940] = 1, + ACTIONS(2315), 1, + sym__whitespace1, + [16944] = 1, + ACTIONS(911), 1, sym_list_marker_star, - [16301] = 1, - ACTIONS(1120), 1, + [16948] = 1, + ACTIONS(913), 1, sym_list_marker_plus, + [16952] = 1, + ACTIONS(909), 1, + sym_list_marker_dash, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(60)] = 0, - [SMALL_STATE(61)] = 66, - [SMALL_STATE(62)] = 132, - [SMALL_STATE(63)] = 198, - [SMALL_STATE(64)] = 257, - [SMALL_STATE(65)] = 316, - [SMALL_STATE(66)] = 375, - [SMALL_STATE(67)] = 429, - [SMALL_STATE(68)] = 483, - [SMALL_STATE(69)] = 537, - [SMALL_STATE(70)] = 583, - [SMALL_STATE(71)] = 629, - [SMALL_STATE(72)] = 675, - [SMALL_STATE(73)] = 718, - [SMALL_STATE(74)] = 761, - [SMALL_STATE(75)] = 804, - [SMALL_STATE(76)] = 845, - [SMALL_STATE(77)] = 886, - [SMALL_STATE(78)] = 929, - [SMALL_STATE(79)] = 972, - [SMALL_STATE(80)] = 1015, - [SMALL_STATE(81)] = 1058, - [SMALL_STATE(82)] = 1099, - [SMALL_STATE(83)] = 1140, - [SMALL_STATE(84)] = 1183, - [SMALL_STATE(85)] = 1226, - [SMALL_STATE(86)] = 1269, - [SMALL_STATE(87)] = 1312, - [SMALL_STATE(88)] = 1353, - [SMALL_STATE(89)] = 1394, - [SMALL_STATE(90)] = 1435, - [SMALL_STATE(91)] = 1478, - [SMALL_STATE(92)] = 1519, - [SMALL_STATE(93)] = 1562, - [SMALL_STATE(94)] = 1603, - [SMALL_STATE(95)] = 1644, - [SMALL_STATE(96)] = 1687, - [SMALL_STATE(97)] = 1730, - [SMALL_STATE(98)] = 1773, - [SMALL_STATE(99)] = 1814, - [SMALL_STATE(100)] = 1855, - [SMALL_STATE(101)] = 1898, - [SMALL_STATE(102)] = 1941, - [SMALL_STATE(103)] = 1984, - [SMALL_STATE(104)] = 2027, - [SMALL_STATE(105)] = 2070, - [SMALL_STATE(106)] = 2111, - [SMALL_STATE(107)] = 2152, - [SMALL_STATE(108)] = 2195, - [SMALL_STATE(109)] = 2236, - [SMALL_STATE(110)] = 2279, - [SMALL_STATE(111)] = 2320, - [SMALL_STATE(112)] = 2363, - [SMALL_STATE(113)] = 2406, - [SMALL_STATE(114)] = 2449, - [SMALL_STATE(115)] = 2492, - [SMALL_STATE(116)] = 2535, - [SMALL_STATE(117)] = 2576, - [SMALL_STATE(118)] = 2617, - [SMALL_STATE(119)] = 2660, - [SMALL_STATE(120)] = 2701, - [SMALL_STATE(121)] = 2744, - [SMALL_STATE(122)] = 2787, - [SMALL_STATE(123)] = 2830, - [SMALL_STATE(124)] = 2871, - [SMALL_STATE(125)] = 2912, - [SMALL_STATE(126)] = 2952, - [SMALL_STATE(127)] = 2992, - [SMALL_STATE(128)] = 3032, - [SMALL_STATE(129)] = 3072, - [SMALL_STATE(130)] = 3112, - [SMALL_STATE(131)] = 3152, - [SMALL_STATE(132)] = 3192, - [SMALL_STATE(133)] = 3232, - [SMALL_STATE(134)] = 3272, - [SMALL_STATE(135)] = 3312, - [SMALL_STATE(136)] = 3352, - [SMALL_STATE(137)] = 3392, - [SMALL_STATE(138)] = 3432, - [SMALL_STATE(139)] = 3472, - [SMALL_STATE(140)] = 3512, - [SMALL_STATE(141)] = 3552, - [SMALL_STATE(142)] = 3592, - [SMALL_STATE(143)] = 3632, - [SMALL_STATE(144)] = 3672, - [SMALL_STATE(145)] = 3712, - [SMALL_STATE(146)] = 3752, - [SMALL_STATE(147)] = 3792, - [SMALL_STATE(148)] = 3832, - [SMALL_STATE(149)] = 3872, - [SMALL_STATE(150)] = 3912, - [SMALL_STATE(151)] = 3952, - [SMALL_STATE(152)] = 3992, - [SMALL_STATE(153)] = 4032, - [SMALL_STATE(154)] = 4072, - [SMALL_STATE(155)] = 4112, - [SMALL_STATE(156)] = 4152, - [SMALL_STATE(157)] = 4192, - [SMALL_STATE(158)] = 4232, - [SMALL_STATE(159)] = 4272, - [SMALL_STATE(160)] = 4312, - [SMALL_STATE(161)] = 4352, - [SMALL_STATE(162)] = 4392, - [SMALL_STATE(163)] = 4432, - [SMALL_STATE(164)] = 4472, - [SMALL_STATE(165)] = 4512, - [SMALL_STATE(166)] = 4552, - [SMALL_STATE(167)] = 4592, - [SMALL_STATE(168)] = 4632, - [SMALL_STATE(169)] = 4672, - [SMALL_STATE(170)] = 4712, - [SMALL_STATE(171)] = 4752, - [SMALL_STATE(172)] = 4792, - [SMALL_STATE(173)] = 4832, - [SMALL_STATE(174)] = 4872, - [SMALL_STATE(175)] = 4912, - [SMALL_STATE(176)] = 4952, - [SMALL_STATE(177)] = 4992, - [SMALL_STATE(178)] = 5032, - [SMALL_STATE(179)] = 5072, - [SMALL_STATE(180)] = 5112, - [SMALL_STATE(181)] = 5152, - [SMALL_STATE(182)] = 5192, - [SMALL_STATE(183)] = 5232, - [SMALL_STATE(184)] = 5272, - [SMALL_STATE(185)] = 5312, - [SMALL_STATE(186)] = 5352, - [SMALL_STATE(187)] = 5392, - [SMALL_STATE(188)] = 5432, - [SMALL_STATE(189)] = 5472, - [SMALL_STATE(190)] = 5512, - [SMALL_STATE(191)] = 5552, - [SMALL_STATE(192)] = 5592, - [SMALL_STATE(193)] = 5632, - [SMALL_STATE(194)] = 5672, - [SMALL_STATE(195)] = 5712, - [SMALL_STATE(196)] = 5752, - [SMALL_STATE(197)] = 5792, - [SMALL_STATE(198)] = 5832, - [SMALL_STATE(199)] = 5872, - [SMALL_STATE(200)] = 5912, - [SMALL_STATE(201)] = 5952, - [SMALL_STATE(202)] = 5992, - [SMALL_STATE(203)] = 6032, - [SMALL_STATE(204)] = 6072, - [SMALL_STATE(205)] = 6112, - [SMALL_STATE(206)] = 6152, - [SMALL_STATE(207)] = 6192, - [SMALL_STATE(208)] = 6232, - [SMALL_STATE(209)] = 6272, - [SMALL_STATE(210)] = 6312, - [SMALL_STATE(211)] = 6352, - [SMALL_STATE(212)] = 6392, - [SMALL_STATE(213)] = 6432, - [SMALL_STATE(214)] = 6472, - [SMALL_STATE(215)] = 6512, - [SMALL_STATE(216)] = 6552, - [SMALL_STATE(217)] = 6592, - [SMALL_STATE(218)] = 6632, - [SMALL_STATE(219)] = 6672, - [SMALL_STATE(220)] = 6712, - [SMALL_STATE(221)] = 6752, - [SMALL_STATE(222)] = 6792, - [SMALL_STATE(223)] = 6832, - [SMALL_STATE(224)] = 6872, - [SMALL_STATE(225)] = 6912, - [SMALL_STATE(226)] = 6952, - [SMALL_STATE(227)] = 6992, - [SMALL_STATE(228)] = 7032, - [SMALL_STATE(229)] = 7072, - [SMALL_STATE(230)] = 7112, - [SMALL_STATE(231)] = 7152, - [SMALL_STATE(232)] = 7192, - [SMALL_STATE(233)] = 7232, - [SMALL_STATE(234)] = 7272, - [SMALL_STATE(235)] = 7312, - [SMALL_STATE(236)] = 7352, - [SMALL_STATE(237)] = 7392, - [SMALL_STATE(238)] = 7432, - [SMALL_STATE(239)] = 7472, - [SMALL_STATE(240)] = 7512, - [SMALL_STATE(241)] = 7552, - [SMALL_STATE(242)] = 7592, - [SMALL_STATE(243)] = 7632, - [SMALL_STATE(244)] = 7672, - [SMALL_STATE(245)] = 7712, - [SMALL_STATE(246)] = 7752, - [SMALL_STATE(247)] = 7792, - [SMALL_STATE(248)] = 7832, - [SMALL_STATE(249)] = 7872, - [SMALL_STATE(250)] = 7912, - [SMALL_STATE(251)] = 7952, - [SMALL_STATE(252)] = 7992, - [SMALL_STATE(253)] = 8032, - [SMALL_STATE(254)] = 8072, - [SMALL_STATE(255)] = 8112, - [SMALL_STATE(256)] = 8152, - [SMALL_STATE(257)] = 8192, - [SMALL_STATE(258)] = 8232, - [SMALL_STATE(259)] = 8272, - [SMALL_STATE(260)] = 8312, - [SMALL_STATE(261)] = 8351, - [SMALL_STATE(262)] = 8394, - [SMALL_STATE(263)] = 8435, - [SMALL_STATE(264)] = 8476, - [SMALL_STATE(265)] = 8517, - [SMALL_STATE(266)] = 8558, - [SMALL_STATE(267)] = 8599, - [SMALL_STATE(268)] = 8633, - [SMALL_STATE(269)] = 8660, - [SMALL_STATE(270)] = 8687, - [SMALL_STATE(271)] = 8712, - [SMALL_STATE(272)] = 8739, - [SMALL_STATE(273)] = 8764, - [SMALL_STATE(274)] = 8789, - [SMALL_STATE(275)] = 8822, - [SMALL_STATE(276)] = 8849, - [SMALL_STATE(277)] = 8876, - [SMALL_STATE(278)] = 8903, - [SMALL_STATE(279)] = 8930, - [SMALL_STATE(280)] = 8955, - [SMALL_STATE(281)] = 8980, - [SMALL_STATE(282)] = 9008, - [SMALL_STATE(283)] = 9036, - [SMALL_STATE(284)] = 9064, - [SMALL_STATE(285)] = 9086, - [SMALL_STATE(286)] = 9114, - [SMALL_STATE(287)] = 9136, - [SMALL_STATE(288)] = 9158, - [SMALL_STATE(289)] = 9186, - [SMALL_STATE(290)] = 9212, - [SMALL_STATE(291)] = 9234, - [SMALL_STATE(292)] = 9256, - [SMALL_STATE(293)] = 9284, - [SMALL_STATE(294)] = 9305, - [SMALL_STATE(295)] = 9326, - [SMALL_STATE(296)] = 9347, - [SMALL_STATE(297)] = 9368, - [SMALL_STATE(298)] = 9389, - [SMALL_STATE(299)] = 9410, - [SMALL_STATE(300)] = 9431, - [SMALL_STATE(301)] = 9452, - [SMALL_STATE(302)] = 9473, - [SMALL_STATE(303)] = 9494, - [SMALL_STATE(304)] = 9515, - [SMALL_STATE(305)] = 9536, - [SMALL_STATE(306)] = 9557, - [SMALL_STATE(307)] = 9578, - [SMALL_STATE(308)] = 9599, - [SMALL_STATE(309)] = 9620, - [SMALL_STATE(310)] = 9641, - [SMALL_STATE(311)] = 9662, - [SMALL_STATE(312)] = 9683, - [SMALL_STATE(313)] = 9704, - [SMALL_STATE(314)] = 9725, - [SMALL_STATE(315)] = 9746, - [SMALL_STATE(316)] = 9767, - [SMALL_STATE(317)] = 9788, - [SMALL_STATE(318)] = 9809, - [SMALL_STATE(319)] = 9830, - [SMALL_STATE(320)] = 9851, - [SMALL_STATE(321)] = 9872, - [SMALL_STATE(322)] = 9893, - [SMALL_STATE(323)] = 9914, - [SMALL_STATE(324)] = 9935, - [SMALL_STATE(325)] = 9956, - [SMALL_STATE(326)] = 9977, - [SMALL_STATE(327)] = 9998, - [SMALL_STATE(328)] = 10020, - [SMALL_STATE(329)] = 10038, - [SMALL_STATE(330)] = 10054, - [SMALL_STATE(331)] = 10072, - [SMALL_STATE(332)] = 10088, - [SMALL_STATE(333)] = 10106, - [SMALL_STATE(334)] = 10129, - [SMALL_STATE(335)] = 10144, - [SMALL_STATE(336)] = 10167, - [SMALL_STATE(337)] = 10182, - [SMALL_STATE(338)] = 10205, - [SMALL_STATE(339)] = 10228, - [SMALL_STATE(340)] = 10251, - [SMALL_STATE(341)] = 10274, - [SMALL_STATE(342)] = 10297, - [SMALL_STATE(343)] = 10320, - [SMALL_STATE(344)] = 10343, - [SMALL_STATE(345)] = 10364, - [SMALL_STATE(346)] = 10387, - [SMALL_STATE(347)] = 10402, - [SMALL_STATE(348)] = 10417, - [SMALL_STATE(349)] = 10440, - [SMALL_STATE(350)] = 10455, - [SMALL_STATE(351)] = 10478, - [SMALL_STATE(352)] = 10493, - [SMALL_STATE(353)] = 10516, - [SMALL_STATE(354)] = 10539, - [SMALL_STATE(355)] = 10562, - [SMALL_STATE(356)] = 10585, - [SMALL_STATE(357)] = 10608, - [SMALL_STATE(358)] = 10631, - [SMALL_STATE(359)] = 10654, - [SMALL_STATE(360)] = 10669, - [SMALL_STATE(361)] = 10692, - [SMALL_STATE(362)] = 10715, - [SMALL_STATE(363)] = 10729, - [SMALL_STATE(364)] = 10751, - [SMALL_STATE(365)] = 10771, - [SMALL_STATE(366)] = 10791, - [SMALL_STATE(367)] = 10811, - [SMALL_STATE(368)] = 10833, - [SMALL_STATE(369)] = 10853, - [SMALL_STATE(370)] = 10873, - [SMALL_STATE(371)] = 10893, - [SMALL_STATE(372)] = 10913, - [SMALL_STATE(373)] = 10933, - [SMALL_STATE(374)] = 10953, - [SMALL_STATE(375)] = 10973, - [SMALL_STATE(376)] = 10993, - [SMALL_STATE(377)] = 11007, - [SMALL_STATE(378)] = 11029, - [SMALL_STATE(379)] = 11051, - [SMALL_STATE(380)] = 11063, - [SMALL_STATE(381)] = 11085, - [SMALL_STATE(382)] = 11107, - [SMALL_STATE(383)] = 11127, - [SMALL_STATE(384)] = 11147, - [SMALL_STATE(385)] = 11167, - [SMALL_STATE(386)] = 11187, - [SMALL_STATE(387)] = 11207, - [SMALL_STATE(388)] = 11219, - [SMALL_STATE(389)] = 11231, - [SMALL_STATE(390)] = 11251, - [SMALL_STATE(391)] = 11271, - [SMALL_STATE(392)] = 11291, - [SMALL_STATE(393)] = 11313, - [SMALL_STATE(394)] = 11335, - [SMALL_STATE(395)] = 11355, - [SMALL_STATE(396)] = 11377, - [SMALL_STATE(397)] = 11399, - [SMALL_STATE(398)] = 11413, - [SMALL_STATE(399)] = 11432, - [SMALL_STATE(400)] = 11451, - [SMALL_STATE(401)] = 11470, - [SMALL_STATE(402)] = 11479, - [SMALL_STATE(403)] = 11488, - [SMALL_STATE(404)] = 11507, - [SMALL_STATE(405)] = 11526, - [SMALL_STATE(406)] = 11535, - [SMALL_STATE(407)] = 11554, - [SMALL_STATE(408)] = 11573, - [SMALL_STATE(409)] = 11592, - [SMALL_STATE(410)] = 11601, - [SMALL_STATE(411)] = 11610, - [SMALL_STATE(412)] = 11629, - [SMALL_STATE(413)] = 11638, - [SMALL_STATE(414)] = 11647, - [SMALL_STATE(415)] = 11666, - [SMALL_STATE(416)] = 11675, - [SMALL_STATE(417)] = 11694, - [SMALL_STATE(418)] = 11713, - [SMALL_STATE(419)] = 11732, - [SMALL_STATE(420)] = 11751, - [SMALL_STATE(421)] = 11770, - [SMALL_STATE(422)] = 11789, - [SMALL_STATE(423)] = 11808, - [SMALL_STATE(424)] = 11827, - [SMALL_STATE(425)] = 11846, - [SMALL_STATE(426)] = 11865, - [SMALL_STATE(427)] = 11884, - [SMALL_STATE(428)] = 11893, - [SMALL_STATE(429)] = 11912, - [SMALL_STATE(430)] = 11931, - [SMALL_STATE(431)] = 11950, - [SMALL_STATE(432)] = 11969, - [SMALL_STATE(433)] = 11978, - [SMALL_STATE(434)] = 11997, - [SMALL_STATE(435)] = 12006, - [SMALL_STATE(436)] = 12025, - [SMALL_STATE(437)] = 12044, - [SMALL_STATE(438)] = 12063, - [SMALL_STATE(439)] = 12082, - [SMALL_STATE(440)] = 12101, - [SMALL_STATE(441)] = 12120, - [SMALL_STATE(442)] = 12139, - [SMALL_STATE(443)] = 12158, - [SMALL_STATE(444)] = 12177, - [SMALL_STATE(445)] = 12196, - [SMALL_STATE(446)] = 12215, - [SMALL_STATE(447)] = 12224, - [SMALL_STATE(448)] = 12243, - [SMALL_STATE(449)] = 12262, - [SMALL_STATE(450)] = 12281, - [SMALL_STATE(451)] = 12290, - [SMALL_STATE(452)] = 12309, - [SMALL_STATE(453)] = 12328, - [SMALL_STATE(454)] = 12337, - [SMALL_STATE(455)] = 12356, - [SMALL_STATE(456)] = 12375, - [SMALL_STATE(457)] = 12394, - [SMALL_STATE(458)] = 12403, - [SMALL_STATE(459)] = 12422, - [SMALL_STATE(460)] = 12434, - [SMALL_STATE(461)] = 12448, - [SMALL_STATE(462)] = 12456, - [SMALL_STATE(463)] = 12464, - [SMALL_STATE(464)] = 12472, - [SMALL_STATE(465)] = 12480, - [SMALL_STATE(466)] = 12488, - [SMALL_STATE(467)] = 12496, - [SMALL_STATE(468)] = 12510, - [SMALL_STATE(469)] = 12518, - [SMALL_STATE(470)] = 12532, - [SMALL_STATE(471)] = 12543, - [SMALL_STATE(472)] = 12554, - [SMALL_STATE(473)] = 12565, - [SMALL_STATE(474)] = 12576, - [SMALL_STATE(475)] = 12587, - [SMALL_STATE(476)] = 12598, - [SMALL_STATE(477)] = 12609, - [SMALL_STATE(478)] = 12620, - [SMALL_STATE(479)] = 12631, - [SMALL_STATE(480)] = 12642, - [SMALL_STATE(481)] = 12653, - [SMALL_STATE(482)] = 12664, - [SMALL_STATE(483)] = 12675, - [SMALL_STATE(484)] = 12686, - [SMALL_STATE(485)] = 12697, - [SMALL_STATE(486)] = 12708, - [SMALL_STATE(487)] = 12719, - [SMALL_STATE(488)] = 12730, - [SMALL_STATE(489)] = 12743, - [SMALL_STATE(490)] = 12754, - [SMALL_STATE(491)] = 12765, - [SMALL_STATE(492)] = 12776, - [SMALL_STATE(493)] = 12787, - [SMALL_STATE(494)] = 12798, - [SMALL_STATE(495)] = 12809, - [SMALL_STATE(496)] = 12820, - [SMALL_STATE(497)] = 12831, - [SMALL_STATE(498)] = 12842, - [SMALL_STATE(499)] = 12853, - [SMALL_STATE(500)] = 12864, - [SMALL_STATE(501)] = 12875, - [SMALL_STATE(502)] = 12886, - [SMALL_STATE(503)] = 12897, - [SMALL_STATE(504)] = 12908, - [SMALL_STATE(505)] = 12919, - [SMALL_STATE(506)] = 12932, - [SMALL_STATE(507)] = 12943, - [SMALL_STATE(508)] = 12954, - [SMALL_STATE(509)] = 12965, - [SMALL_STATE(510)] = 12976, - [SMALL_STATE(511)] = 12987, - [SMALL_STATE(512)] = 12998, - [SMALL_STATE(513)] = 13009, - [SMALL_STATE(514)] = 13020, - [SMALL_STATE(515)] = 13031, - [SMALL_STATE(516)] = 13042, - [SMALL_STATE(517)] = 13053, - [SMALL_STATE(518)] = 13064, - [SMALL_STATE(519)] = 13075, - [SMALL_STATE(520)] = 13086, - [SMALL_STATE(521)] = 13097, - [SMALL_STATE(522)] = 13108, - [SMALL_STATE(523)] = 13119, - [SMALL_STATE(524)] = 13130, - [SMALL_STATE(525)] = 13141, - [SMALL_STATE(526)] = 13154, - [SMALL_STATE(527)] = 13165, - [SMALL_STATE(528)] = 13176, - [SMALL_STATE(529)] = 13187, - [SMALL_STATE(530)] = 13198, - [SMALL_STATE(531)] = 13209, - [SMALL_STATE(532)] = 13220, - [SMALL_STATE(533)] = 13231, - [SMALL_STATE(534)] = 13242, - [SMALL_STATE(535)] = 13253, - [SMALL_STATE(536)] = 13264, - [SMALL_STATE(537)] = 13275, - [SMALL_STATE(538)] = 13286, - [SMALL_STATE(539)] = 13297, - [SMALL_STATE(540)] = 13308, - [SMALL_STATE(541)] = 13319, - [SMALL_STATE(542)] = 13332, - [SMALL_STATE(543)] = 13343, - [SMALL_STATE(544)] = 13352, - [SMALL_STATE(545)] = 13363, - [SMALL_STATE(546)] = 13374, - [SMALL_STATE(547)] = 13385, - [SMALL_STATE(548)] = 13396, - [SMALL_STATE(549)] = 13407, - [SMALL_STATE(550)] = 13418, - [SMALL_STATE(551)] = 13429, - [SMALL_STATE(552)] = 13442, - [SMALL_STATE(553)] = 13453, - [SMALL_STATE(554)] = 13464, - [SMALL_STATE(555)] = 13475, - [SMALL_STATE(556)] = 13486, - [SMALL_STATE(557)] = 13497, - [SMALL_STATE(558)] = 13506, - [SMALL_STATE(559)] = 13515, - [SMALL_STATE(560)] = 13526, - [SMALL_STATE(561)] = 13535, - [SMALL_STATE(562)] = 13546, - [SMALL_STATE(563)] = 13557, - [SMALL_STATE(564)] = 13568, - [SMALL_STATE(565)] = 13579, - [SMALL_STATE(566)] = 13588, - [SMALL_STATE(567)] = 13599, - [SMALL_STATE(568)] = 13608, - [SMALL_STATE(569)] = 13619, - [SMALL_STATE(570)] = 13630, - [SMALL_STATE(571)] = 13639, - [SMALL_STATE(572)] = 13648, - [SMALL_STATE(573)] = 13659, - [SMALL_STATE(574)] = 13670, - [SMALL_STATE(575)] = 13681, - [SMALL_STATE(576)] = 13690, - [SMALL_STATE(577)] = 13701, - [SMALL_STATE(578)] = 13712, - [SMALL_STATE(579)] = 13723, - [SMALL_STATE(580)] = 13732, - [SMALL_STATE(581)] = 13743, - [SMALL_STATE(582)] = 13754, - [SMALL_STATE(583)] = 13765, - [SMALL_STATE(584)] = 13776, - [SMALL_STATE(585)] = 13787, - [SMALL_STATE(586)] = 13798, - [SMALL_STATE(587)] = 13809, - [SMALL_STATE(588)] = 13818, - [SMALL_STATE(589)] = 13829, - [SMALL_STATE(590)] = 13840, - [SMALL_STATE(591)] = 13850, - [SMALL_STATE(592)] = 13858, - [SMALL_STATE(593)] = 13864, - [SMALL_STATE(594)] = 13870, - [SMALL_STATE(595)] = 13876, - [SMALL_STATE(596)] = 13882, - [SMALL_STATE(597)] = 13888, - [SMALL_STATE(598)] = 13894, - [SMALL_STATE(599)] = 13904, - [SMALL_STATE(600)] = 13910, - [SMALL_STATE(601)] = 13916, - [SMALL_STATE(602)] = 13922, - [SMALL_STATE(603)] = 13928, - [SMALL_STATE(604)] = 13934, - [SMALL_STATE(605)] = 13940, - [SMALL_STATE(606)] = 13950, - [SMALL_STATE(607)] = 13960, - [SMALL_STATE(608)] = 13966, - [SMALL_STATE(609)] = 13972, - [SMALL_STATE(610)] = 13978, - [SMALL_STATE(611)] = 13984, - [SMALL_STATE(612)] = 13990, - [SMALL_STATE(613)] = 13996, - [SMALL_STATE(614)] = 14002, - [SMALL_STATE(615)] = 14008, - [SMALL_STATE(616)] = 14014, - [SMALL_STATE(617)] = 14020, - [SMALL_STATE(618)] = 14026, - [SMALL_STATE(619)] = 14036, - [SMALL_STATE(620)] = 14042, - [SMALL_STATE(621)] = 14048, - [SMALL_STATE(622)] = 14054, - [SMALL_STATE(623)] = 14060, - [SMALL_STATE(624)] = 14070, - [SMALL_STATE(625)] = 14080, - [SMALL_STATE(626)] = 14090, - [SMALL_STATE(627)] = 14096, - [SMALL_STATE(628)] = 14106, - [SMALL_STATE(629)] = 14116, - [SMALL_STATE(630)] = 14122, - [SMALL_STATE(631)] = 14128, - [SMALL_STATE(632)] = 14134, - [SMALL_STATE(633)] = 14140, - [SMALL_STATE(634)] = 14148, - [SMALL_STATE(635)] = 14154, - [SMALL_STATE(636)] = 14160, - [SMALL_STATE(637)] = 14166, - [SMALL_STATE(638)] = 14172, - [SMALL_STATE(639)] = 14178, - [SMALL_STATE(640)] = 14184, - [SMALL_STATE(641)] = 14194, - [SMALL_STATE(642)] = 14202, - [SMALL_STATE(643)] = 14212, - [SMALL_STATE(644)] = 14218, - [SMALL_STATE(645)] = 14228, - [SMALL_STATE(646)] = 14238, - [SMALL_STATE(647)] = 14244, - [SMALL_STATE(648)] = 14252, - [SMALL_STATE(649)] = 14258, - [SMALL_STATE(650)] = 14264, - [SMALL_STATE(651)] = 14270, - [SMALL_STATE(652)] = 14276, - [SMALL_STATE(653)] = 14282, - [SMALL_STATE(654)] = 14288, - [SMALL_STATE(655)] = 14294, - [SMALL_STATE(656)] = 14300, - [SMALL_STATE(657)] = 14306, - [SMALL_STATE(658)] = 14316, - [SMALL_STATE(659)] = 14322, - [SMALL_STATE(660)] = 14328, - [SMALL_STATE(661)] = 14334, - [SMALL_STATE(662)] = 14340, - [SMALL_STATE(663)] = 14348, - [SMALL_STATE(664)] = 14354, - [SMALL_STATE(665)] = 14364, - [SMALL_STATE(666)] = 14370, - [SMALL_STATE(667)] = 14380, - [SMALL_STATE(668)] = 14388, - [SMALL_STATE(669)] = 14396, - [SMALL_STATE(670)] = 14402, - [SMALL_STATE(671)] = 14408, - [SMALL_STATE(672)] = 14418, - [SMALL_STATE(673)] = 14424, - [SMALL_STATE(674)] = 14432, - [SMALL_STATE(675)] = 14438, - [SMALL_STATE(676)] = 14446, - [SMALL_STATE(677)] = 14452, - [SMALL_STATE(678)] = 14462, - [SMALL_STATE(679)] = 14470, - [SMALL_STATE(680)] = 14478, - [SMALL_STATE(681)] = 14488, - [SMALL_STATE(682)] = 14496, - [SMALL_STATE(683)] = 14502, - [SMALL_STATE(684)] = 14512, - [SMALL_STATE(685)] = 14518, - [SMALL_STATE(686)] = 14524, - [SMALL_STATE(687)] = 14532, - [SMALL_STATE(688)] = 14539, - [SMALL_STATE(689)] = 14546, - [SMALL_STATE(690)] = 14553, - [SMALL_STATE(691)] = 14560, - [SMALL_STATE(692)] = 14567, - [SMALL_STATE(693)] = 14572, - [SMALL_STATE(694)] = 14579, - [SMALL_STATE(695)] = 14586, - [SMALL_STATE(696)] = 14591, - [SMALL_STATE(697)] = 14596, - [SMALL_STATE(698)] = 14603, - [SMALL_STATE(699)] = 14610, - [SMALL_STATE(700)] = 14615, - [SMALL_STATE(701)] = 14620, - [SMALL_STATE(702)] = 14627, - [SMALL_STATE(703)] = 14634, - [SMALL_STATE(704)] = 14639, - [SMALL_STATE(705)] = 14646, - [SMALL_STATE(706)] = 14651, - [SMALL_STATE(707)] = 14658, - [SMALL_STATE(708)] = 14665, - [SMALL_STATE(709)] = 14672, - [SMALL_STATE(710)] = 14679, - [SMALL_STATE(711)] = 14686, - [SMALL_STATE(712)] = 14693, - [SMALL_STATE(713)] = 14698, - [SMALL_STATE(714)] = 14705, - [SMALL_STATE(715)] = 14712, - [SMALL_STATE(716)] = 14719, - [SMALL_STATE(717)] = 14726, - [SMALL_STATE(718)] = 14733, - [SMALL_STATE(719)] = 14740, - [SMALL_STATE(720)] = 14745, - [SMALL_STATE(721)] = 14750, - [SMALL_STATE(722)] = 14755, - [SMALL_STATE(723)] = 14760, - [SMALL_STATE(724)] = 14765, - [SMALL_STATE(725)] = 14770, - [SMALL_STATE(726)] = 14775, - [SMALL_STATE(727)] = 14780, - [SMALL_STATE(728)] = 14785, - [SMALL_STATE(729)] = 14790, - [SMALL_STATE(730)] = 14795, - [SMALL_STATE(731)] = 14800, - [SMALL_STATE(732)] = 14805, - [SMALL_STATE(733)] = 14810, - [SMALL_STATE(734)] = 14815, - [SMALL_STATE(735)] = 14820, - [SMALL_STATE(736)] = 14825, - [SMALL_STATE(737)] = 14830, - [SMALL_STATE(738)] = 14835, - [SMALL_STATE(739)] = 14840, - [SMALL_STATE(740)] = 14845, - [SMALL_STATE(741)] = 14852, - [SMALL_STATE(742)] = 14857, - [SMALL_STATE(743)] = 14864, - [SMALL_STATE(744)] = 14871, - [SMALL_STATE(745)] = 14878, - [SMALL_STATE(746)] = 14883, - [SMALL_STATE(747)] = 14890, - [SMALL_STATE(748)] = 14897, - [SMALL_STATE(749)] = 14902, - [SMALL_STATE(750)] = 14907, - [SMALL_STATE(751)] = 14914, - [SMALL_STATE(752)] = 14921, - [SMALL_STATE(753)] = 14928, - [SMALL_STATE(754)] = 14933, - [SMALL_STATE(755)] = 14940, - [SMALL_STATE(756)] = 14947, - [SMALL_STATE(757)] = 14952, - [SMALL_STATE(758)] = 14959, - [SMALL_STATE(759)] = 14964, - [SMALL_STATE(760)] = 14969, - [SMALL_STATE(761)] = 14974, - [SMALL_STATE(762)] = 14979, - [SMALL_STATE(763)] = 14986, - [SMALL_STATE(764)] = 14993, - [SMALL_STATE(765)] = 15000, - [SMALL_STATE(766)] = 15007, - [SMALL_STATE(767)] = 15014, - [SMALL_STATE(768)] = 15019, - [SMALL_STATE(769)] = 15026, - [SMALL_STATE(770)] = 15033, - [SMALL_STATE(771)] = 15040, - [SMALL_STATE(772)] = 15047, - [SMALL_STATE(773)] = 15054, - [SMALL_STATE(774)] = 15061, - [SMALL_STATE(775)] = 15066, - [SMALL_STATE(776)] = 15071, - [SMALL_STATE(777)] = 15076, - [SMALL_STATE(778)] = 15081, - [SMALL_STATE(779)] = 15086, - [SMALL_STATE(780)] = 15091, - [SMALL_STATE(781)] = 15096, - [SMALL_STATE(782)] = 15101, - [SMALL_STATE(783)] = 15106, - [SMALL_STATE(784)] = 15111, - [SMALL_STATE(785)] = 15116, - [SMALL_STATE(786)] = 15121, - [SMALL_STATE(787)] = 15126, - [SMALL_STATE(788)] = 15131, - [SMALL_STATE(789)] = 15136, - [SMALL_STATE(790)] = 15141, - [SMALL_STATE(791)] = 15146, - [SMALL_STATE(792)] = 15151, - [SMALL_STATE(793)] = 15156, - [SMALL_STATE(794)] = 15161, - [SMALL_STATE(795)] = 15166, - [SMALL_STATE(796)] = 15171, - [SMALL_STATE(797)] = 15176, - [SMALL_STATE(798)] = 15183, - [SMALL_STATE(799)] = 15190, - [SMALL_STATE(800)] = 15195, - [SMALL_STATE(801)] = 15200, - [SMALL_STATE(802)] = 15205, - [SMALL_STATE(803)] = 15212, - [SMALL_STATE(804)] = 15217, - [SMALL_STATE(805)] = 15224, - [SMALL_STATE(806)] = 15229, - [SMALL_STATE(807)] = 15236, - [SMALL_STATE(808)] = 15241, - [SMALL_STATE(809)] = 15248, - [SMALL_STATE(810)] = 15253, - [SMALL_STATE(811)] = 15258, - [SMALL_STATE(812)] = 15265, - [SMALL_STATE(813)] = 15272, - [SMALL_STATE(814)] = 15277, - [SMALL_STATE(815)] = 15284, - [SMALL_STATE(816)] = 15289, - [SMALL_STATE(817)] = 15296, - [SMALL_STATE(818)] = 15303, - [SMALL_STATE(819)] = 15310, - [SMALL_STATE(820)] = 15317, - [SMALL_STATE(821)] = 15324, - [SMALL_STATE(822)] = 15331, - [SMALL_STATE(823)] = 15336, - [SMALL_STATE(824)] = 15343, - [SMALL_STATE(825)] = 15348, - [SMALL_STATE(826)] = 15355, - [SMALL_STATE(827)] = 15362, - [SMALL_STATE(828)] = 15367, - [SMALL_STATE(829)] = 15374, - [SMALL_STATE(830)] = 15379, - [SMALL_STATE(831)] = 15384, - [SMALL_STATE(832)] = 15389, - [SMALL_STATE(833)] = 15394, - [SMALL_STATE(834)] = 15399, - [SMALL_STATE(835)] = 15404, - [SMALL_STATE(836)] = 15409, - [SMALL_STATE(837)] = 15414, - [SMALL_STATE(838)] = 15419, - [SMALL_STATE(839)] = 15424, - [SMALL_STATE(840)] = 15429, - [SMALL_STATE(841)] = 15434, - [SMALL_STATE(842)] = 15439, - [SMALL_STATE(843)] = 15444, - [SMALL_STATE(844)] = 15449, - [SMALL_STATE(845)] = 15454, - [SMALL_STATE(846)] = 15459, - [SMALL_STATE(847)] = 15464, - [SMALL_STATE(848)] = 15469, - [SMALL_STATE(849)] = 15474, - [SMALL_STATE(850)] = 15479, - [SMALL_STATE(851)] = 15484, - [SMALL_STATE(852)] = 15491, - [SMALL_STATE(853)] = 15496, - [SMALL_STATE(854)] = 15501, - [SMALL_STATE(855)] = 15508, - [SMALL_STATE(856)] = 15515, - [SMALL_STATE(857)] = 15522, - [SMALL_STATE(858)] = 15529, - [SMALL_STATE(859)] = 15536, - [SMALL_STATE(860)] = 15541, - [SMALL_STATE(861)] = 15548, - [SMALL_STATE(862)] = 15553, - [SMALL_STATE(863)] = 15557, - [SMALL_STATE(864)] = 15561, - [SMALL_STATE(865)] = 15565, - [SMALL_STATE(866)] = 15569, - [SMALL_STATE(867)] = 15573, - [SMALL_STATE(868)] = 15577, - [SMALL_STATE(869)] = 15581, - [SMALL_STATE(870)] = 15585, - [SMALL_STATE(871)] = 15589, - [SMALL_STATE(872)] = 15593, - [SMALL_STATE(873)] = 15597, - [SMALL_STATE(874)] = 15601, - [SMALL_STATE(875)] = 15605, - [SMALL_STATE(876)] = 15609, - [SMALL_STATE(877)] = 15613, - [SMALL_STATE(878)] = 15617, - [SMALL_STATE(879)] = 15621, - [SMALL_STATE(880)] = 15625, - [SMALL_STATE(881)] = 15629, - [SMALL_STATE(882)] = 15633, - [SMALL_STATE(883)] = 15637, - [SMALL_STATE(884)] = 15641, - [SMALL_STATE(885)] = 15645, - [SMALL_STATE(886)] = 15649, - [SMALL_STATE(887)] = 15653, - [SMALL_STATE(888)] = 15657, - [SMALL_STATE(889)] = 15661, - [SMALL_STATE(890)] = 15665, - [SMALL_STATE(891)] = 15669, - [SMALL_STATE(892)] = 15673, - [SMALL_STATE(893)] = 15677, - [SMALL_STATE(894)] = 15681, - [SMALL_STATE(895)] = 15685, - [SMALL_STATE(896)] = 15689, - [SMALL_STATE(897)] = 15693, - [SMALL_STATE(898)] = 15697, - [SMALL_STATE(899)] = 15701, - [SMALL_STATE(900)] = 15705, - [SMALL_STATE(901)] = 15709, - [SMALL_STATE(902)] = 15713, - [SMALL_STATE(903)] = 15717, - [SMALL_STATE(904)] = 15721, - [SMALL_STATE(905)] = 15725, - [SMALL_STATE(906)] = 15729, - [SMALL_STATE(907)] = 15733, - [SMALL_STATE(908)] = 15737, - [SMALL_STATE(909)] = 15741, - [SMALL_STATE(910)] = 15745, - [SMALL_STATE(911)] = 15749, - [SMALL_STATE(912)] = 15753, - [SMALL_STATE(913)] = 15757, - [SMALL_STATE(914)] = 15761, - [SMALL_STATE(915)] = 15765, - [SMALL_STATE(916)] = 15769, - [SMALL_STATE(917)] = 15773, - [SMALL_STATE(918)] = 15777, - [SMALL_STATE(919)] = 15781, - [SMALL_STATE(920)] = 15785, - [SMALL_STATE(921)] = 15789, - [SMALL_STATE(922)] = 15793, - [SMALL_STATE(923)] = 15797, - [SMALL_STATE(924)] = 15801, - [SMALL_STATE(925)] = 15805, - [SMALL_STATE(926)] = 15809, - [SMALL_STATE(927)] = 15813, - [SMALL_STATE(928)] = 15817, - [SMALL_STATE(929)] = 15821, - [SMALL_STATE(930)] = 15825, - [SMALL_STATE(931)] = 15829, - [SMALL_STATE(932)] = 15833, - [SMALL_STATE(933)] = 15837, - [SMALL_STATE(934)] = 15841, - [SMALL_STATE(935)] = 15845, - [SMALL_STATE(936)] = 15849, - [SMALL_STATE(937)] = 15853, - [SMALL_STATE(938)] = 15857, - [SMALL_STATE(939)] = 15861, - [SMALL_STATE(940)] = 15865, - [SMALL_STATE(941)] = 15869, - [SMALL_STATE(942)] = 15873, - [SMALL_STATE(943)] = 15877, - [SMALL_STATE(944)] = 15881, - [SMALL_STATE(945)] = 15885, - [SMALL_STATE(946)] = 15889, - [SMALL_STATE(947)] = 15893, - [SMALL_STATE(948)] = 15897, - [SMALL_STATE(949)] = 15901, - [SMALL_STATE(950)] = 15905, - [SMALL_STATE(951)] = 15909, - [SMALL_STATE(952)] = 15913, - [SMALL_STATE(953)] = 15917, - [SMALL_STATE(954)] = 15921, - [SMALL_STATE(955)] = 15925, - [SMALL_STATE(956)] = 15929, - [SMALL_STATE(957)] = 15933, - [SMALL_STATE(958)] = 15937, - [SMALL_STATE(959)] = 15941, - [SMALL_STATE(960)] = 15945, - [SMALL_STATE(961)] = 15949, - [SMALL_STATE(962)] = 15953, - [SMALL_STATE(963)] = 15957, - [SMALL_STATE(964)] = 15961, - [SMALL_STATE(965)] = 15965, - [SMALL_STATE(966)] = 15969, - [SMALL_STATE(967)] = 15973, - [SMALL_STATE(968)] = 15977, - [SMALL_STATE(969)] = 15981, - [SMALL_STATE(970)] = 15985, - [SMALL_STATE(971)] = 15989, - [SMALL_STATE(972)] = 15993, - [SMALL_STATE(973)] = 15997, - [SMALL_STATE(974)] = 16001, - [SMALL_STATE(975)] = 16005, - [SMALL_STATE(976)] = 16009, - [SMALL_STATE(977)] = 16013, - [SMALL_STATE(978)] = 16017, - [SMALL_STATE(979)] = 16021, - [SMALL_STATE(980)] = 16025, - [SMALL_STATE(981)] = 16029, - [SMALL_STATE(982)] = 16033, - [SMALL_STATE(983)] = 16037, - [SMALL_STATE(984)] = 16041, - [SMALL_STATE(985)] = 16045, - [SMALL_STATE(986)] = 16049, - [SMALL_STATE(987)] = 16053, - [SMALL_STATE(988)] = 16057, - [SMALL_STATE(989)] = 16061, - [SMALL_STATE(990)] = 16065, - [SMALL_STATE(991)] = 16069, - [SMALL_STATE(992)] = 16073, - [SMALL_STATE(993)] = 16077, - [SMALL_STATE(994)] = 16081, - [SMALL_STATE(995)] = 16085, - [SMALL_STATE(996)] = 16089, - [SMALL_STATE(997)] = 16093, - [SMALL_STATE(998)] = 16097, - [SMALL_STATE(999)] = 16101, - [SMALL_STATE(1000)] = 16105, - [SMALL_STATE(1001)] = 16109, - [SMALL_STATE(1002)] = 16113, - [SMALL_STATE(1003)] = 16117, - [SMALL_STATE(1004)] = 16121, - [SMALL_STATE(1005)] = 16125, - [SMALL_STATE(1006)] = 16129, - [SMALL_STATE(1007)] = 16133, - [SMALL_STATE(1008)] = 16137, - [SMALL_STATE(1009)] = 16141, - [SMALL_STATE(1010)] = 16145, - [SMALL_STATE(1011)] = 16149, - [SMALL_STATE(1012)] = 16153, - [SMALL_STATE(1013)] = 16157, - [SMALL_STATE(1014)] = 16161, - [SMALL_STATE(1015)] = 16165, - [SMALL_STATE(1016)] = 16169, - [SMALL_STATE(1017)] = 16173, - [SMALL_STATE(1018)] = 16177, - [SMALL_STATE(1019)] = 16181, - [SMALL_STATE(1020)] = 16185, - [SMALL_STATE(1021)] = 16189, - [SMALL_STATE(1022)] = 16193, - [SMALL_STATE(1023)] = 16197, - [SMALL_STATE(1024)] = 16201, - [SMALL_STATE(1025)] = 16205, - [SMALL_STATE(1026)] = 16209, - [SMALL_STATE(1027)] = 16213, - [SMALL_STATE(1028)] = 16217, - [SMALL_STATE(1029)] = 16221, - [SMALL_STATE(1030)] = 16225, - [SMALL_STATE(1031)] = 16229, - [SMALL_STATE(1032)] = 16233, - [SMALL_STATE(1033)] = 16237, - [SMALL_STATE(1034)] = 16241, - [SMALL_STATE(1035)] = 16245, - [SMALL_STATE(1036)] = 16249, - [SMALL_STATE(1037)] = 16253, - [SMALL_STATE(1038)] = 16257, - [SMALL_STATE(1039)] = 16261, - [SMALL_STATE(1040)] = 16265, - [SMALL_STATE(1041)] = 16269, - [SMALL_STATE(1042)] = 16273, - [SMALL_STATE(1043)] = 16277, - [SMALL_STATE(1044)] = 16281, - [SMALL_STATE(1045)] = 16285, - [SMALL_STATE(1046)] = 16289, - [SMALL_STATE(1047)] = 16293, - [SMALL_STATE(1048)] = 16297, - [SMALL_STATE(1049)] = 16301, + [SMALL_STATE(64)] = 0, + [SMALL_STATE(65)] = 66, + [SMALL_STATE(66)] = 132, + [SMALL_STATE(67)] = 198, + [SMALL_STATE(68)] = 257, + [SMALL_STATE(69)] = 316, + [SMALL_STATE(70)] = 375, + [SMALL_STATE(71)] = 429, + [SMALL_STATE(72)] = 483, + [SMALL_STATE(73)] = 537, + [SMALL_STATE(74)] = 583, + [SMALL_STATE(75)] = 629, + [SMALL_STATE(76)] = 675, + [SMALL_STATE(77)] = 718, + [SMALL_STATE(78)] = 761, + [SMALL_STATE(79)] = 802, + [SMALL_STATE(80)] = 845, + [SMALL_STATE(81)] = 888, + [SMALL_STATE(82)] = 931, + [SMALL_STATE(83)] = 974, + [SMALL_STATE(84)] = 1015, + [SMALL_STATE(85)] = 1056, + [SMALL_STATE(86)] = 1099, + [SMALL_STATE(87)] = 1142, + [SMALL_STATE(88)] = 1185, + [SMALL_STATE(89)] = 1228, + [SMALL_STATE(90)] = 1269, + [SMALL_STATE(91)] = 1312, + [SMALL_STATE(92)] = 1353, + [SMALL_STATE(93)] = 1394, + [SMALL_STATE(94)] = 1437, + [SMALL_STATE(95)] = 1478, + [SMALL_STATE(96)] = 1521, + [SMALL_STATE(97)] = 1562, + [SMALL_STATE(98)] = 1605, + [SMALL_STATE(99)] = 1648, + [SMALL_STATE(100)] = 1691, + [SMALL_STATE(101)] = 1734, + [SMALL_STATE(102)] = 1775, + [SMALL_STATE(103)] = 1816, + [SMALL_STATE(104)] = 1857, + [SMALL_STATE(105)] = 1898, + [SMALL_STATE(106)] = 1941, + [SMALL_STATE(107)] = 1984, + [SMALL_STATE(108)] = 2027, + [SMALL_STATE(109)] = 2068, + [SMALL_STATE(110)] = 2109, + [SMALL_STATE(111)] = 2152, + [SMALL_STATE(112)] = 2193, + [SMALL_STATE(113)] = 2236, + [SMALL_STATE(114)] = 2277, + [SMALL_STATE(115)] = 2320, + [SMALL_STATE(116)] = 2363, + [SMALL_STATE(117)] = 2406, + [SMALL_STATE(118)] = 2449, + [SMALL_STATE(119)] = 2492, + [SMALL_STATE(120)] = 2533, + [SMALL_STATE(121)] = 2574, + [SMALL_STATE(122)] = 2615, + [SMALL_STATE(123)] = 2658, + [SMALL_STATE(124)] = 2701, + [SMALL_STATE(125)] = 2744, + [SMALL_STATE(126)] = 2787, + [SMALL_STATE(127)] = 2828, + [SMALL_STATE(128)] = 2869, + [SMALL_STATE(129)] = 2912, + [SMALL_STATE(130)] = 2952, + [SMALL_STATE(131)] = 2992, + [SMALL_STATE(132)] = 3032, + [SMALL_STATE(133)] = 3072, + [SMALL_STATE(134)] = 3112, + [SMALL_STATE(135)] = 3152, + [SMALL_STATE(136)] = 3192, + [SMALL_STATE(137)] = 3232, + [SMALL_STATE(138)] = 3272, + [SMALL_STATE(139)] = 3312, + [SMALL_STATE(140)] = 3352, + [SMALL_STATE(141)] = 3392, + [SMALL_STATE(142)] = 3432, + [SMALL_STATE(143)] = 3472, + [SMALL_STATE(144)] = 3512, + [SMALL_STATE(145)] = 3552, + [SMALL_STATE(146)] = 3592, + [SMALL_STATE(147)] = 3632, + [SMALL_STATE(148)] = 3672, + [SMALL_STATE(149)] = 3712, + [SMALL_STATE(150)] = 3752, + [SMALL_STATE(151)] = 3792, + [SMALL_STATE(152)] = 3832, + [SMALL_STATE(153)] = 3872, + [SMALL_STATE(154)] = 3912, + [SMALL_STATE(155)] = 3952, + [SMALL_STATE(156)] = 3992, + [SMALL_STATE(157)] = 4032, + [SMALL_STATE(158)] = 4072, + [SMALL_STATE(159)] = 4112, + [SMALL_STATE(160)] = 4152, + [SMALL_STATE(161)] = 4192, + [SMALL_STATE(162)] = 4232, + [SMALL_STATE(163)] = 4272, + [SMALL_STATE(164)] = 4312, + [SMALL_STATE(165)] = 4352, + [SMALL_STATE(166)] = 4392, + [SMALL_STATE(167)] = 4432, + [SMALL_STATE(168)] = 4472, + [SMALL_STATE(169)] = 4512, + [SMALL_STATE(170)] = 4552, + [SMALL_STATE(171)] = 4592, + [SMALL_STATE(172)] = 4632, + [SMALL_STATE(173)] = 4672, + [SMALL_STATE(174)] = 4712, + [SMALL_STATE(175)] = 4752, + [SMALL_STATE(176)] = 4792, + [SMALL_STATE(177)] = 4832, + [SMALL_STATE(178)] = 4872, + [SMALL_STATE(179)] = 4912, + [SMALL_STATE(180)] = 4952, + [SMALL_STATE(181)] = 4992, + [SMALL_STATE(182)] = 5032, + [SMALL_STATE(183)] = 5072, + [SMALL_STATE(184)] = 5112, + [SMALL_STATE(185)] = 5152, + [SMALL_STATE(186)] = 5192, + [SMALL_STATE(187)] = 5232, + [SMALL_STATE(188)] = 5272, + [SMALL_STATE(189)] = 5312, + [SMALL_STATE(190)] = 5352, + [SMALL_STATE(191)] = 5392, + [SMALL_STATE(192)] = 5432, + [SMALL_STATE(193)] = 5472, + [SMALL_STATE(194)] = 5512, + [SMALL_STATE(195)] = 5552, + [SMALL_STATE(196)] = 5592, + [SMALL_STATE(197)] = 5632, + [SMALL_STATE(198)] = 5672, + [SMALL_STATE(199)] = 5712, + [SMALL_STATE(200)] = 5752, + [SMALL_STATE(201)] = 5792, + [SMALL_STATE(202)] = 5832, + [SMALL_STATE(203)] = 5872, + [SMALL_STATE(204)] = 5912, + [SMALL_STATE(205)] = 5952, + [SMALL_STATE(206)] = 5992, + [SMALL_STATE(207)] = 6032, + [SMALL_STATE(208)] = 6072, + [SMALL_STATE(209)] = 6112, + [SMALL_STATE(210)] = 6152, + [SMALL_STATE(211)] = 6192, + [SMALL_STATE(212)] = 6232, + [SMALL_STATE(213)] = 6272, + [SMALL_STATE(214)] = 6312, + [SMALL_STATE(215)] = 6352, + [SMALL_STATE(216)] = 6392, + [SMALL_STATE(217)] = 6432, + [SMALL_STATE(218)] = 6472, + [SMALL_STATE(219)] = 6512, + [SMALL_STATE(220)] = 6552, + [SMALL_STATE(221)] = 6592, + [SMALL_STATE(222)] = 6632, + [SMALL_STATE(223)] = 6672, + [SMALL_STATE(224)] = 6712, + [SMALL_STATE(225)] = 6752, + [SMALL_STATE(226)] = 6792, + [SMALL_STATE(227)] = 6832, + [SMALL_STATE(228)] = 6872, + [SMALL_STATE(229)] = 6912, + [SMALL_STATE(230)] = 6952, + [SMALL_STATE(231)] = 6992, + [SMALL_STATE(232)] = 7032, + [SMALL_STATE(233)] = 7072, + [SMALL_STATE(234)] = 7112, + [SMALL_STATE(235)] = 7152, + [SMALL_STATE(236)] = 7192, + [SMALL_STATE(237)] = 7232, + [SMALL_STATE(238)] = 7272, + [SMALL_STATE(239)] = 7312, + [SMALL_STATE(240)] = 7352, + [SMALL_STATE(241)] = 7392, + [SMALL_STATE(242)] = 7432, + [SMALL_STATE(243)] = 7472, + [SMALL_STATE(244)] = 7512, + [SMALL_STATE(245)] = 7552, + [SMALL_STATE(246)] = 7592, + [SMALL_STATE(247)] = 7632, + [SMALL_STATE(248)] = 7672, + [SMALL_STATE(249)] = 7712, + [SMALL_STATE(250)] = 7752, + [SMALL_STATE(251)] = 7792, + [SMALL_STATE(252)] = 7832, + [SMALL_STATE(253)] = 7872, + [SMALL_STATE(254)] = 7912, + [SMALL_STATE(255)] = 7952, + [SMALL_STATE(256)] = 7992, + [SMALL_STATE(257)] = 8032, + [SMALL_STATE(258)] = 8072, + [SMALL_STATE(259)] = 8112, + [SMALL_STATE(260)] = 8152, + [SMALL_STATE(261)] = 8192, + [SMALL_STATE(262)] = 8232, + [SMALL_STATE(263)] = 8272, + [SMALL_STATE(264)] = 8312, + [SMALL_STATE(265)] = 8352, + [SMALL_STATE(266)] = 8392, + [SMALL_STATE(267)] = 8431, + [SMALL_STATE(268)] = 8474, + [SMALL_STATE(269)] = 8512, + [SMALL_STATE(270)] = 8553, + [SMALL_STATE(271)] = 8594, + [SMALL_STATE(272)] = 8635, + [SMALL_STATE(273)] = 8676, + [SMALL_STATE(274)] = 8717, + [SMALL_STATE(275)] = 8752, + [SMALL_STATE(276)] = 8787, + [SMALL_STATE(277)] = 8822, + [SMALL_STATE(278)] = 8857, + [SMALL_STATE(279)] = 8892, + [SMALL_STATE(280)] = 8927, + [SMALL_STATE(281)] = 8962, + [SMALL_STATE(282)] = 8997, + [SMALL_STATE(283)] = 9032, + [SMALL_STATE(284)] = 9067, + [SMALL_STATE(285)] = 9099, + [SMALL_STATE(286)] = 9131, + [SMALL_STATE(287)] = 9163, + [SMALL_STATE(288)] = 9195, + [SMALL_STATE(289)] = 9227, + [SMALL_STATE(290)] = 9261, + [SMALL_STATE(291)] = 9288, + [SMALL_STATE(292)] = 9321, + [SMALL_STATE(293)] = 9342, + [SMALL_STATE(294)] = 9369, + [SMALL_STATE(295)] = 9394, + [SMALL_STATE(296)] = 9421, + [SMALL_STATE(297)] = 9448, + [SMALL_STATE(298)] = 9475, + [SMALL_STATE(299)] = 9500, + [SMALL_STATE(300)] = 9527, + [SMALL_STATE(301)] = 9554, + [SMALL_STATE(302)] = 9579, + [SMALL_STATE(303)] = 9604, + [SMALL_STATE(304)] = 9629, + [SMALL_STATE(305)] = 9654, + [SMALL_STATE(306)] = 9679, + [SMALL_STATE(307)] = 9706, + [SMALL_STATE(308)] = 9727, + [SMALL_STATE(309)] = 9752, + [SMALL_STATE(310)] = 9777, + [SMALL_STATE(311)] = 9802, + [SMALL_STATE(312)] = 9824, + [SMALL_STATE(313)] = 9852, + [SMALL_STATE(314)] = 9880, + [SMALL_STATE(315)] = 9908, + [SMALL_STATE(316)] = 9934, + [SMALL_STATE(317)] = 9950, + [SMALL_STATE(318)] = 9978, + [SMALL_STATE(319)] = 10002, + [SMALL_STATE(320)] = 10022, + [SMALL_STATE(321)] = 10044, + [SMALL_STATE(322)] = 10072, + [SMALL_STATE(323)] = 10094, + [SMALL_STATE(324)] = 10114, + [SMALL_STATE(325)] = 10136, + [SMALL_STATE(326)] = 10164, + [SMALL_STATE(327)] = 10186, + [SMALL_STATE(328)] = 10207, + [SMALL_STATE(329)] = 10228, + [SMALL_STATE(330)] = 10249, + [SMALL_STATE(331)] = 10270, + [SMALL_STATE(332)] = 10291, + [SMALL_STATE(333)] = 10312, + [SMALL_STATE(334)] = 10333, + [SMALL_STATE(335)] = 10354, + [SMALL_STATE(336)] = 10375, + [SMALL_STATE(337)] = 10396, + [SMALL_STATE(338)] = 10417, + [SMALL_STATE(339)] = 10438, + [SMALL_STATE(340)] = 10459, + [SMALL_STATE(341)] = 10480, + [SMALL_STATE(342)] = 10495, + [SMALL_STATE(343)] = 10516, + [SMALL_STATE(344)] = 10537, + [SMALL_STATE(345)] = 10558, + [SMALL_STATE(346)] = 10579, + [SMALL_STATE(347)] = 10600, + [SMALL_STATE(348)] = 10621, + [SMALL_STATE(349)] = 10642, + [SMALL_STATE(350)] = 10663, + [SMALL_STATE(351)] = 10684, + [SMALL_STATE(352)] = 10705, + [SMALL_STATE(353)] = 10726, + [SMALL_STATE(354)] = 10747, + [SMALL_STATE(355)] = 10768, + [SMALL_STATE(356)] = 10789, + [SMALL_STATE(357)] = 10810, + [SMALL_STATE(358)] = 10831, + [SMALL_STATE(359)] = 10852, + [SMALL_STATE(360)] = 10873, + [SMALL_STATE(361)] = 10894, + [SMALL_STATE(362)] = 10915, + [SMALL_STATE(363)] = 10931, + [SMALL_STATE(364)] = 10953, + [SMALL_STATE(365)] = 10971, + [SMALL_STATE(366)] = 10989, + [SMALL_STATE(367)] = 11005, + [SMALL_STATE(368)] = 11028, + [SMALL_STATE(369)] = 11051, + [SMALL_STATE(370)] = 11066, + [SMALL_STATE(371)] = 11089, + [SMALL_STATE(372)] = 11112, + [SMALL_STATE(373)] = 11135, + [SMALL_STATE(374)] = 11158, + [SMALL_STATE(375)] = 11181, + [SMALL_STATE(376)] = 11196, + [SMALL_STATE(377)] = 11217, + [SMALL_STATE(378)] = 11232, + [SMALL_STATE(379)] = 11255, + [SMALL_STATE(380)] = 11278, + [SMALL_STATE(381)] = 11293, + [SMALL_STATE(382)] = 11316, + [SMALL_STATE(383)] = 11339, + [SMALL_STATE(384)] = 11362, + [SMALL_STATE(385)] = 11385, + [SMALL_STATE(386)] = 11400, + [SMALL_STATE(387)] = 11423, + [SMALL_STATE(388)] = 11446, + [SMALL_STATE(389)] = 11461, + [SMALL_STATE(390)] = 11484, + [SMALL_STATE(391)] = 11507, + [SMALL_STATE(392)] = 11530, + [SMALL_STATE(393)] = 11553, + [SMALL_STATE(394)] = 11576, + [SMALL_STATE(395)] = 11599, + [SMALL_STATE(396)] = 11619, + [SMALL_STATE(397)] = 11639, + [SMALL_STATE(398)] = 11659, + [SMALL_STATE(399)] = 11679, + [SMALL_STATE(400)] = 11699, + [SMALL_STATE(401)] = 11719, + [SMALL_STATE(402)] = 11739, + [SMALL_STATE(403)] = 11759, + [SMALL_STATE(404)] = 11773, + [SMALL_STATE(405)] = 11793, + [SMALL_STATE(406)] = 11805, + [SMALL_STATE(407)] = 11819, + [SMALL_STATE(408)] = 11839, + [SMALL_STATE(409)] = 11859, + [SMALL_STATE(410)] = 11879, + [SMALL_STATE(411)] = 11893, + [SMALL_STATE(412)] = 11905, + [SMALL_STATE(413)] = 11925, + [SMALL_STATE(414)] = 11945, + [SMALL_STATE(415)] = 11957, + [SMALL_STATE(416)] = 11977, + [SMALL_STATE(417)] = 11997, + [SMALL_STATE(418)] = 12017, + [SMALL_STATE(419)] = 12037, + [SMALL_STATE(420)] = 12057, + [SMALL_STATE(421)] = 12077, + [SMALL_STATE(422)] = 12096, + [SMALL_STATE(423)] = 12105, + [SMALL_STATE(424)] = 12124, + [SMALL_STATE(425)] = 12143, + [SMALL_STATE(426)] = 12162, + [SMALL_STATE(427)] = 12181, + [SMALL_STATE(428)] = 12200, + [SMALL_STATE(429)] = 12219, + [SMALL_STATE(430)] = 12238, + [SMALL_STATE(431)] = 12257, + [SMALL_STATE(432)] = 12276, + [SMALL_STATE(433)] = 12295, + [SMALL_STATE(434)] = 12314, + [SMALL_STATE(435)] = 12333, + [SMALL_STATE(436)] = 12352, + [SMALL_STATE(437)] = 12371, + [SMALL_STATE(438)] = 12390, + [SMALL_STATE(439)] = 12409, + [SMALL_STATE(440)] = 12428, + [SMALL_STATE(441)] = 12447, + [SMALL_STATE(442)] = 12466, + [SMALL_STATE(443)] = 12485, + [SMALL_STATE(444)] = 12504, + [SMALL_STATE(445)] = 12513, + [SMALL_STATE(446)] = 12532, + [SMALL_STATE(447)] = 12551, + [SMALL_STATE(448)] = 12560, + [SMALL_STATE(449)] = 12579, + [SMALL_STATE(450)] = 12598, + [SMALL_STATE(451)] = 12607, + [SMALL_STATE(452)] = 12616, + [SMALL_STATE(453)] = 12635, + [SMALL_STATE(454)] = 12644, + [SMALL_STATE(455)] = 12653, + [SMALL_STATE(456)] = 12672, + [SMALL_STATE(457)] = 12691, + [SMALL_STATE(458)] = 12710, + [SMALL_STATE(459)] = 12729, + [SMALL_STATE(460)] = 12748, + [SMALL_STATE(461)] = 12767, + [SMALL_STATE(462)] = 12786, + [SMALL_STATE(463)] = 12795, + [SMALL_STATE(464)] = 12804, + [SMALL_STATE(465)] = 12823, + [SMALL_STATE(466)] = 12834, + [SMALL_STATE(467)] = 12853, + [SMALL_STATE(468)] = 12872, + [SMALL_STATE(469)] = 12881, + [SMALL_STATE(470)] = 12890, + [SMALL_STATE(471)] = 12899, + [SMALL_STATE(472)] = 12918, + [SMALL_STATE(473)] = 12927, + [SMALL_STATE(474)] = 12936, + [SMALL_STATE(475)] = 12945, + [SMALL_STATE(476)] = 12964, + [SMALL_STATE(477)] = 12983, + [SMALL_STATE(478)] = 13002, + [SMALL_STATE(479)] = 13010, + [SMALL_STATE(480)] = 13018, + [SMALL_STATE(481)] = 13026, + [SMALL_STATE(482)] = 13034, + [SMALL_STATE(483)] = 13046, + [SMALL_STATE(484)] = 13054, + [SMALL_STATE(485)] = 13062, + [SMALL_STATE(486)] = 13076, + [SMALL_STATE(487)] = 13090, + [SMALL_STATE(488)] = 13104, + [SMALL_STATE(489)] = 13112, + [SMALL_STATE(490)] = 13123, + [SMALL_STATE(491)] = 13134, + [SMALL_STATE(492)] = 13145, + [SMALL_STATE(493)] = 13156, + [SMALL_STATE(494)] = 13167, + [SMALL_STATE(495)] = 13178, + [SMALL_STATE(496)] = 13189, + [SMALL_STATE(497)] = 13200, + [SMALL_STATE(498)] = 13211, + [SMALL_STATE(499)] = 13222, + [SMALL_STATE(500)] = 13233, + [SMALL_STATE(501)] = 13244, + [SMALL_STATE(502)] = 13255, + [SMALL_STATE(503)] = 13266, + [SMALL_STATE(504)] = 13277, + [SMALL_STATE(505)] = 13288, + [SMALL_STATE(506)] = 13299, + [SMALL_STATE(507)] = 13312, + [SMALL_STATE(508)] = 13323, + [SMALL_STATE(509)] = 13336, + [SMALL_STATE(510)] = 13349, + [SMALL_STATE(511)] = 13362, + [SMALL_STATE(512)] = 13373, + [SMALL_STATE(513)] = 13384, + [SMALL_STATE(514)] = 13395, + [SMALL_STATE(515)] = 13406, + [SMALL_STATE(516)] = 13417, + [SMALL_STATE(517)] = 13428, + [SMALL_STATE(518)] = 13439, + [SMALL_STATE(519)] = 13450, + [SMALL_STATE(520)] = 13461, + [SMALL_STATE(521)] = 13472, + [SMALL_STATE(522)] = 13483, + [SMALL_STATE(523)] = 13494, + [SMALL_STATE(524)] = 13505, + [SMALL_STATE(525)] = 13516, + [SMALL_STATE(526)] = 13527, + [SMALL_STATE(527)] = 13538, + [SMALL_STATE(528)] = 13549, + [SMALL_STATE(529)] = 13560, + [SMALL_STATE(530)] = 13571, + [SMALL_STATE(531)] = 13582, + [SMALL_STATE(532)] = 13593, + [SMALL_STATE(533)] = 13604, + [SMALL_STATE(534)] = 13615, + [SMALL_STATE(535)] = 13626, + [SMALL_STATE(536)] = 13637, + [SMALL_STATE(537)] = 13648, + [SMALL_STATE(538)] = 13659, + [SMALL_STATE(539)] = 13670, + [SMALL_STATE(540)] = 13681, + [SMALL_STATE(541)] = 13692, + [SMALL_STATE(542)] = 13703, + [SMALL_STATE(543)] = 13714, + [SMALL_STATE(544)] = 13725, + [SMALL_STATE(545)] = 13736, + [SMALL_STATE(546)] = 13747, + [SMALL_STATE(547)] = 13758, + [SMALL_STATE(548)] = 13769, + [SMALL_STATE(549)] = 13780, + [SMALL_STATE(550)] = 13791, + [SMALL_STATE(551)] = 13802, + [SMALL_STATE(552)] = 13813, + [SMALL_STATE(553)] = 13824, + [SMALL_STATE(554)] = 13835, + [SMALL_STATE(555)] = 13846, + [SMALL_STATE(556)] = 13857, + [SMALL_STATE(557)] = 13868, + [SMALL_STATE(558)] = 13879, + [SMALL_STATE(559)] = 13890, + [SMALL_STATE(560)] = 13903, + [SMALL_STATE(561)] = 13914, + [SMALL_STATE(562)] = 13925, + [SMALL_STATE(563)] = 13936, + [SMALL_STATE(564)] = 13947, + [SMALL_STATE(565)] = 13958, + [SMALL_STATE(566)] = 13969, + [SMALL_STATE(567)] = 13980, + [SMALL_STATE(568)] = 13991, + [SMALL_STATE(569)] = 14002, + [SMALL_STATE(570)] = 14013, + [SMALL_STATE(571)] = 14024, + [SMALL_STATE(572)] = 14035, + [SMALL_STATE(573)] = 14046, + [SMALL_STATE(574)] = 14057, + [SMALL_STATE(575)] = 14068, + [SMALL_STATE(576)] = 14079, + [SMALL_STATE(577)] = 14090, + [SMALL_STATE(578)] = 14101, + [SMALL_STATE(579)] = 14112, + [SMALL_STATE(580)] = 14123, + [SMALL_STATE(581)] = 14132, + [SMALL_STATE(582)] = 14143, + [SMALL_STATE(583)] = 14154, + [SMALL_STATE(584)] = 14165, + [SMALL_STATE(585)] = 14176, + [SMALL_STATE(586)] = 14187, + [SMALL_STATE(587)] = 14196, + [SMALL_STATE(588)] = 14207, + [SMALL_STATE(589)] = 14216, + [SMALL_STATE(590)] = 14225, + [SMALL_STATE(591)] = 14236, + [SMALL_STATE(592)] = 14245, + [SMALL_STATE(593)] = 14256, + [SMALL_STATE(594)] = 14267, + [SMALL_STATE(595)] = 14276, + [SMALL_STATE(596)] = 14285, + [SMALL_STATE(597)] = 14296, + [SMALL_STATE(598)] = 14307, + [SMALL_STATE(599)] = 14318, + [SMALL_STATE(600)] = 14327, + [SMALL_STATE(601)] = 14336, + [SMALL_STATE(602)] = 14347, + [SMALL_STATE(603)] = 14358, + [SMALL_STATE(604)] = 14369, + [SMALL_STATE(605)] = 14378, + [SMALL_STATE(606)] = 14389, + [SMALL_STATE(607)] = 14398, + [SMALL_STATE(608)] = 14409, + [SMALL_STATE(609)] = 14420, + [SMALL_STATE(610)] = 14426, + [SMALL_STATE(611)] = 14434, + [SMALL_STATE(612)] = 14440, + [SMALL_STATE(613)] = 14446, + [SMALL_STATE(614)] = 14452, + [SMALL_STATE(615)] = 14458, + [SMALL_STATE(616)] = 14464, + [SMALL_STATE(617)] = 14470, + [SMALL_STATE(618)] = 14476, + [SMALL_STATE(619)] = 14482, + [SMALL_STATE(620)] = 14488, + [SMALL_STATE(621)] = 14494, + [SMALL_STATE(622)] = 14500, + [SMALL_STATE(623)] = 14506, + [SMALL_STATE(624)] = 14512, + [SMALL_STATE(625)] = 14518, + [SMALL_STATE(626)] = 14524, + [SMALL_STATE(627)] = 14530, + [SMALL_STATE(628)] = 14536, + [SMALL_STATE(629)] = 14542, + [SMALL_STATE(630)] = 14548, + [SMALL_STATE(631)] = 14554, + [SMALL_STATE(632)] = 14560, + [SMALL_STATE(633)] = 14566, + [SMALL_STATE(634)] = 14572, + [SMALL_STATE(635)] = 14578, + [SMALL_STATE(636)] = 14584, + [SMALL_STATE(637)] = 14590, + [SMALL_STATE(638)] = 14600, + [SMALL_STATE(639)] = 14606, + [SMALL_STATE(640)] = 14612, + [SMALL_STATE(641)] = 14622, + [SMALL_STATE(642)] = 14632, + [SMALL_STATE(643)] = 14642, + [SMALL_STATE(644)] = 14648, + [SMALL_STATE(645)] = 14656, + [SMALL_STATE(646)] = 14664, + [SMALL_STATE(647)] = 14674, + [SMALL_STATE(648)] = 14684, + [SMALL_STATE(649)] = 14690, + [SMALL_STATE(650)] = 14698, + [SMALL_STATE(651)] = 14708, + [SMALL_STATE(652)] = 14718, + [SMALL_STATE(653)] = 14728, + [SMALL_STATE(654)] = 14738, + [SMALL_STATE(655)] = 14748, + [SMALL_STATE(656)] = 14754, + [SMALL_STATE(657)] = 14760, + [SMALL_STATE(658)] = 14766, + [SMALL_STATE(659)] = 14772, + [SMALL_STATE(660)] = 14778, + [SMALL_STATE(661)] = 14784, + [SMALL_STATE(662)] = 14790, + [SMALL_STATE(663)] = 14798, + [SMALL_STATE(664)] = 14804, + [SMALL_STATE(665)] = 14810, + [SMALL_STATE(666)] = 14820, + [SMALL_STATE(667)] = 14830, + [SMALL_STATE(668)] = 14836, + [SMALL_STATE(669)] = 14846, + [SMALL_STATE(670)] = 14854, + [SMALL_STATE(671)] = 14860, + [SMALL_STATE(672)] = 14870, + [SMALL_STATE(673)] = 14876, + [SMALL_STATE(674)] = 14886, + [SMALL_STATE(675)] = 14892, + [SMALL_STATE(676)] = 14898, + [SMALL_STATE(677)] = 14904, + [SMALL_STATE(678)] = 14912, + [SMALL_STATE(679)] = 14922, + [SMALL_STATE(680)] = 14932, + [SMALL_STATE(681)] = 14940, + [SMALL_STATE(682)] = 14948, + [SMALL_STATE(683)] = 14954, + [SMALL_STATE(684)] = 14960, + [SMALL_STATE(685)] = 14966, + [SMALL_STATE(686)] = 14972, + [SMALL_STATE(687)] = 14978, + [SMALL_STATE(688)] = 14984, + [SMALL_STATE(689)] = 14990, + [SMALL_STATE(690)] = 14996, + [SMALL_STATE(691)] = 15002, + [SMALL_STATE(692)] = 15008, + [SMALL_STATE(693)] = 15014, + [SMALL_STATE(694)] = 15020, + [SMALL_STATE(695)] = 15026, + [SMALL_STATE(696)] = 15036, + [SMALL_STATE(697)] = 15042, + [SMALL_STATE(698)] = 15052, + [SMALL_STATE(699)] = 15062, + [SMALL_STATE(700)] = 15068, + [SMALL_STATE(701)] = 15076, + [SMALL_STATE(702)] = 15084, + [SMALL_STATE(703)] = 15094, + [SMALL_STATE(704)] = 15104, + [SMALL_STATE(705)] = 15110, + [SMALL_STATE(706)] = 15116, + [SMALL_STATE(707)] = 15122, + [SMALL_STATE(708)] = 15130, + [SMALL_STATE(709)] = 15138, + [SMALL_STATE(710)] = 15143, + [SMALL_STATE(711)] = 15150, + [SMALL_STATE(712)] = 15155, + [SMALL_STATE(713)] = 15160, + [SMALL_STATE(714)] = 15167, + [SMALL_STATE(715)] = 15172, + [SMALL_STATE(716)] = 15177, + [SMALL_STATE(717)] = 15182, + [SMALL_STATE(718)] = 15189, + [SMALL_STATE(719)] = 15194, + [SMALL_STATE(720)] = 15201, + [SMALL_STATE(721)] = 15206, + [SMALL_STATE(722)] = 15211, + [SMALL_STATE(723)] = 15218, + [SMALL_STATE(724)] = 15225, + [SMALL_STATE(725)] = 15230, + [SMALL_STATE(726)] = 15237, + [SMALL_STATE(727)] = 15242, + [SMALL_STATE(728)] = 15247, + [SMALL_STATE(729)] = 15252, + [SMALL_STATE(730)] = 15259, + [SMALL_STATE(731)] = 15264, + [SMALL_STATE(732)] = 15269, + [SMALL_STATE(733)] = 15274, + [SMALL_STATE(734)] = 15281, + [SMALL_STATE(735)] = 15288, + [SMALL_STATE(736)] = 15293, + [SMALL_STATE(737)] = 15300, + [SMALL_STATE(738)] = 15307, + [SMALL_STATE(739)] = 15314, + [SMALL_STATE(740)] = 15321, + [SMALL_STATE(741)] = 15328, + [SMALL_STATE(742)] = 15333, + [SMALL_STATE(743)] = 15338, + [SMALL_STATE(744)] = 15343, + [SMALL_STATE(745)] = 15350, + [SMALL_STATE(746)] = 15355, + [SMALL_STATE(747)] = 15360, + [SMALL_STATE(748)] = 15367, + [SMALL_STATE(749)] = 15374, + [SMALL_STATE(750)] = 15381, + [SMALL_STATE(751)] = 15386, + [SMALL_STATE(752)] = 15391, + [SMALL_STATE(753)] = 15396, + [SMALL_STATE(754)] = 15403, + [SMALL_STATE(755)] = 15408, + [SMALL_STATE(756)] = 15413, + [SMALL_STATE(757)] = 15418, + [SMALL_STATE(758)] = 15425, + [SMALL_STATE(759)] = 15430, + [SMALL_STATE(760)] = 15435, + [SMALL_STATE(761)] = 15440, + [SMALL_STATE(762)] = 15447, + [SMALL_STATE(763)] = 15452, + [SMALL_STATE(764)] = 15457, + [SMALL_STATE(765)] = 15462, + [SMALL_STATE(766)] = 15467, + [SMALL_STATE(767)] = 15474, + [SMALL_STATE(768)] = 15481, + [SMALL_STATE(769)] = 15488, + [SMALL_STATE(770)] = 15493, + [SMALL_STATE(771)] = 15500, + [SMALL_STATE(772)] = 15507, + [SMALL_STATE(773)] = 15514, + [SMALL_STATE(774)] = 15521, + [SMALL_STATE(775)] = 15528, + [SMALL_STATE(776)] = 15535, + [SMALL_STATE(777)] = 15540, + [SMALL_STATE(778)] = 15545, + [SMALL_STATE(779)] = 15552, + [SMALL_STATE(780)] = 15559, + [SMALL_STATE(781)] = 15564, + [SMALL_STATE(782)] = 15569, + [SMALL_STATE(783)] = 15574, + [SMALL_STATE(784)] = 15581, + [SMALL_STATE(785)] = 15588, + [SMALL_STATE(786)] = 15593, + [SMALL_STATE(787)] = 15600, + [SMALL_STATE(788)] = 15605, + [SMALL_STATE(789)] = 15612, + [SMALL_STATE(790)] = 15619, + [SMALL_STATE(791)] = 15626, + [SMALL_STATE(792)] = 15633, + [SMALL_STATE(793)] = 15638, + [SMALL_STATE(794)] = 15645, + [SMALL_STATE(795)] = 15652, + [SMALL_STATE(796)] = 15659, + [SMALL_STATE(797)] = 15664, + [SMALL_STATE(798)] = 15669, + [SMALL_STATE(799)] = 15676, + [SMALL_STATE(800)] = 15683, + [SMALL_STATE(801)] = 15688, + [SMALL_STATE(802)] = 15693, + [SMALL_STATE(803)] = 15700, + [SMALL_STATE(804)] = 15705, + [SMALL_STATE(805)] = 15710, + [SMALL_STATE(806)] = 15717, + [SMALL_STATE(807)] = 15722, + [SMALL_STATE(808)] = 15727, + [SMALL_STATE(809)] = 15732, + [SMALL_STATE(810)] = 15737, + [SMALL_STATE(811)] = 15742, + [SMALL_STATE(812)] = 15747, + [SMALL_STATE(813)] = 15752, + [SMALL_STATE(814)] = 15757, + [SMALL_STATE(815)] = 15762, + [SMALL_STATE(816)] = 15767, + [SMALL_STATE(817)] = 15772, + [SMALL_STATE(818)] = 15777, + [SMALL_STATE(819)] = 15782, + [SMALL_STATE(820)] = 15787, + [SMALL_STATE(821)] = 15792, + [SMALL_STATE(822)] = 15797, + [SMALL_STATE(823)] = 15804, + [SMALL_STATE(824)] = 15811, + [SMALL_STATE(825)] = 15818, + [SMALL_STATE(826)] = 15825, + [SMALL_STATE(827)] = 15832, + [SMALL_STATE(828)] = 15839, + [SMALL_STATE(829)] = 15844, + [SMALL_STATE(830)] = 15851, + [SMALL_STATE(831)] = 15858, + [SMALL_STATE(832)] = 15863, + [SMALL_STATE(833)] = 15868, + [SMALL_STATE(834)] = 15873, + [SMALL_STATE(835)] = 15878, + [SMALL_STATE(836)] = 15885, + [SMALL_STATE(837)] = 15892, + [SMALL_STATE(838)] = 15899, + [SMALL_STATE(839)] = 15906, + [SMALL_STATE(840)] = 15913, + [SMALL_STATE(841)] = 15918, + [SMALL_STATE(842)] = 15923, + [SMALL_STATE(843)] = 15928, + [SMALL_STATE(844)] = 15933, + [SMALL_STATE(845)] = 15938, + [SMALL_STATE(846)] = 15943, + [SMALL_STATE(847)] = 15948, + [SMALL_STATE(848)] = 15953, + [SMALL_STATE(849)] = 15960, + [SMALL_STATE(850)] = 15967, + [SMALL_STATE(851)] = 15974, + [SMALL_STATE(852)] = 15981, + [SMALL_STATE(853)] = 15986, + [SMALL_STATE(854)] = 15991, + [SMALL_STATE(855)] = 15996, + [SMALL_STATE(856)] = 16003, + [SMALL_STATE(857)] = 16008, + [SMALL_STATE(858)] = 16013, + [SMALL_STATE(859)] = 16018, + [SMALL_STATE(860)] = 16023, + [SMALL_STATE(861)] = 16030, + [SMALL_STATE(862)] = 16035, + [SMALL_STATE(863)] = 16040, + [SMALL_STATE(864)] = 16045, + [SMALL_STATE(865)] = 16050, + [SMALL_STATE(866)] = 16055, + [SMALL_STATE(867)] = 16060, + [SMALL_STATE(868)] = 16065, + [SMALL_STATE(869)] = 16070, + [SMALL_STATE(870)] = 16075, + [SMALL_STATE(871)] = 16080, + [SMALL_STATE(872)] = 16085, + [SMALL_STATE(873)] = 16090, + [SMALL_STATE(874)] = 16095, + [SMALL_STATE(875)] = 16100, + [SMALL_STATE(876)] = 16105, + [SMALL_STATE(877)] = 16110, + [SMALL_STATE(878)] = 16115, + [SMALL_STATE(879)] = 16120, + [SMALL_STATE(880)] = 16125, + [SMALL_STATE(881)] = 16132, + [SMALL_STATE(882)] = 16139, + [SMALL_STATE(883)] = 16144, + [SMALL_STATE(884)] = 16151, + [SMALL_STATE(885)] = 16156, + [SMALL_STATE(886)] = 16163, + [SMALL_STATE(887)] = 16170, + [SMALL_STATE(888)] = 16175, + [SMALL_STATE(889)] = 16182, + [SMALL_STATE(890)] = 16187, + [SMALL_STATE(891)] = 16192, + [SMALL_STATE(892)] = 16197, + [SMALL_STATE(893)] = 16204, + [SMALL_STATE(894)] = 16208, + [SMALL_STATE(895)] = 16212, + [SMALL_STATE(896)] = 16216, + [SMALL_STATE(897)] = 16220, + [SMALL_STATE(898)] = 16224, + [SMALL_STATE(899)] = 16228, + [SMALL_STATE(900)] = 16232, + [SMALL_STATE(901)] = 16236, + [SMALL_STATE(902)] = 16240, + [SMALL_STATE(903)] = 16244, + [SMALL_STATE(904)] = 16248, + [SMALL_STATE(905)] = 16252, + [SMALL_STATE(906)] = 16256, + [SMALL_STATE(907)] = 16260, + [SMALL_STATE(908)] = 16264, + [SMALL_STATE(909)] = 16268, + [SMALL_STATE(910)] = 16272, + [SMALL_STATE(911)] = 16276, + [SMALL_STATE(912)] = 16280, + [SMALL_STATE(913)] = 16284, + [SMALL_STATE(914)] = 16288, + [SMALL_STATE(915)] = 16292, + [SMALL_STATE(916)] = 16296, + [SMALL_STATE(917)] = 16300, + [SMALL_STATE(918)] = 16304, + [SMALL_STATE(919)] = 16308, + [SMALL_STATE(920)] = 16312, + [SMALL_STATE(921)] = 16316, + [SMALL_STATE(922)] = 16320, + [SMALL_STATE(923)] = 16324, + [SMALL_STATE(924)] = 16328, + [SMALL_STATE(925)] = 16332, + [SMALL_STATE(926)] = 16336, + [SMALL_STATE(927)] = 16340, + [SMALL_STATE(928)] = 16344, + [SMALL_STATE(929)] = 16348, + [SMALL_STATE(930)] = 16352, + [SMALL_STATE(931)] = 16356, + [SMALL_STATE(932)] = 16360, + [SMALL_STATE(933)] = 16364, + [SMALL_STATE(934)] = 16368, + [SMALL_STATE(935)] = 16372, + [SMALL_STATE(936)] = 16376, + [SMALL_STATE(937)] = 16380, + [SMALL_STATE(938)] = 16384, + [SMALL_STATE(939)] = 16388, + [SMALL_STATE(940)] = 16392, + [SMALL_STATE(941)] = 16396, + [SMALL_STATE(942)] = 16400, + [SMALL_STATE(943)] = 16404, + [SMALL_STATE(944)] = 16408, + [SMALL_STATE(945)] = 16412, + [SMALL_STATE(946)] = 16416, + [SMALL_STATE(947)] = 16420, + [SMALL_STATE(948)] = 16424, + [SMALL_STATE(949)] = 16428, + [SMALL_STATE(950)] = 16432, + [SMALL_STATE(951)] = 16436, + [SMALL_STATE(952)] = 16440, + [SMALL_STATE(953)] = 16444, + [SMALL_STATE(954)] = 16448, + [SMALL_STATE(955)] = 16452, + [SMALL_STATE(956)] = 16456, + [SMALL_STATE(957)] = 16460, + [SMALL_STATE(958)] = 16464, + [SMALL_STATE(959)] = 16468, + [SMALL_STATE(960)] = 16472, + [SMALL_STATE(961)] = 16476, + [SMALL_STATE(962)] = 16480, + [SMALL_STATE(963)] = 16484, + [SMALL_STATE(964)] = 16488, + [SMALL_STATE(965)] = 16492, + [SMALL_STATE(966)] = 16496, + [SMALL_STATE(967)] = 16500, + [SMALL_STATE(968)] = 16504, + [SMALL_STATE(969)] = 16508, + [SMALL_STATE(970)] = 16512, + [SMALL_STATE(971)] = 16516, + [SMALL_STATE(972)] = 16520, + [SMALL_STATE(973)] = 16524, + [SMALL_STATE(974)] = 16528, + [SMALL_STATE(975)] = 16532, + [SMALL_STATE(976)] = 16536, + [SMALL_STATE(977)] = 16540, + [SMALL_STATE(978)] = 16544, + [SMALL_STATE(979)] = 16548, + [SMALL_STATE(980)] = 16552, + [SMALL_STATE(981)] = 16556, + [SMALL_STATE(982)] = 16560, + [SMALL_STATE(983)] = 16564, + [SMALL_STATE(984)] = 16568, + [SMALL_STATE(985)] = 16572, + [SMALL_STATE(986)] = 16576, + [SMALL_STATE(987)] = 16580, + [SMALL_STATE(988)] = 16584, + [SMALL_STATE(989)] = 16588, + [SMALL_STATE(990)] = 16592, + [SMALL_STATE(991)] = 16596, + [SMALL_STATE(992)] = 16600, + [SMALL_STATE(993)] = 16604, + [SMALL_STATE(994)] = 16608, + [SMALL_STATE(995)] = 16612, + [SMALL_STATE(996)] = 16616, + [SMALL_STATE(997)] = 16620, + [SMALL_STATE(998)] = 16624, + [SMALL_STATE(999)] = 16628, + [SMALL_STATE(1000)] = 16632, + [SMALL_STATE(1001)] = 16636, + [SMALL_STATE(1002)] = 16640, + [SMALL_STATE(1003)] = 16644, + [SMALL_STATE(1004)] = 16648, + [SMALL_STATE(1005)] = 16652, + [SMALL_STATE(1006)] = 16656, + [SMALL_STATE(1007)] = 16660, + [SMALL_STATE(1008)] = 16664, + [SMALL_STATE(1009)] = 16668, + [SMALL_STATE(1010)] = 16672, + [SMALL_STATE(1011)] = 16676, + [SMALL_STATE(1012)] = 16680, + [SMALL_STATE(1013)] = 16684, + [SMALL_STATE(1014)] = 16688, + [SMALL_STATE(1015)] = 16692, + [SMALL_STATE(1016)] = 16696, + [SMALL_STATE(1017)] = 16700, + [SMALL_STATE(1018)] = 16704, + [SMALL_STATE(1019)] = 16708, + [SMALL_STATE(1020)] = 16712, + [SMALL_STATE(1021)] = 16716, + [SMALL_STATE(1022)] = 16720, + [SMALL_STATE(1023)] = 16724, + [SMALL_STATE(1024)] = 16728, + [SMALL_STATE(1025)] = 16732, + [SMALL_STATE(1026)] = 16736, + [SMALL_STATE(1027)] = 16740, + [SMALL_STATE(1028)] = 16744, + [SMALL_STATE(1029)] = 16748, + [SMALL_STATE(1030)] = 16752, + [SMALL_STATE(1031)] = 16756, + [SMALL_STATE(1032)] = 16760, + [SMALL_STATE(1033)] = 16764, + [SMALL_STATE(1034)] = 16768, + [SMALL_STATE(1035)] = 16772, + [SMALL_STATE(1036)] = 16776, + [SMALL_STATE(1037)] = 16780, + [SMALL_STATE(1038)] = 16784, + [SMALL_STATE(1039)] = 16788, + [SMALL_STATE(1040)] = 16792, + [SMALL_STATE(1041)] = 16796, + [SMALL_STATE(1042)] = 16800, + [SMALL_STATE(1043)] = 16804, + [SMALL_STATE(1044)] = 16808, + [SMALL_STATE(1045)] = 16812, + [SMALL_STATE(1046)] = 16816, + [SMALL_STATE(1047)] = 16820, + [SMALL_STATE(1048)] = 16824, + [SMALL_STATE(1049)] = 16828, + [SMALL_STATE(1050)] = 16832, + [SMALL_STATE(1051)] = 16836, + [SMALL_STATE(1052)] = 16840, + [SMALL_STATE(1053)] = 16844, + [SMALL_STATE(1054)] = 16848, + [SMALL_STATE(1055)] = 16852, + [SMALL_STATE(1056)] = 16856, + [SMALL_STATE(1057)] = 16860, + [SMALL_STATE(1058)] = 16864, + [SMALL_STATE(1059)] = 16868, + [SMALL_STATE(1060)] = 16872, + [SMALL_STATE(1061)] = 16876, + [SMALL_STATE(1062)] = 16880, + [SMALL_STATE(1063)] = 16884, + [SMALL_STATE(1064)] = 16888, + [SMALL_STATE(1065)] = 16892, + [SMALL_STATE(1066)] = 16896, + [SMALL_STATE(1067)] = 16900, + [SMALL_STATE(1068)] = 16904, + [SMALL_STATE(1069)] = 16908, + [SMALL_STATE(1070)] = 16912, + [SMALL_STATE(1071)] = 16916, + [SMALL_STATE(1072)] = 16920, + [SMALL_STATE(1073)] = 16924, + [SMALL_STATE(1074)] = 16928, + [SMALL_STATE(1075)] = 16932, + [SMALL_STATE(1076)] = 16936, + [SMALL_STATE(1077)] = 16940, + [SMALL_STATE(1078)] = 16944, + [SMALL_STATE(1079)] = 16948, + [SMALL_STATE(1080)] = 16952, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 0), - [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [71] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 2), - [73] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 1), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [95] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), - [97] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(291), - [100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(272), - [103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(265), - [106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(329), - [109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(235), - [112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(325), - [115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(716), - [118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(966), - [121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(31), - [124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(32), - [127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(33), - [130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(647), - [133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(332), - [136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(38), - [139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(45), - [142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(50), - [145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(51), - [148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(49), - [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(43), - [154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(29), - [157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(42), - [160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(41), - [163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(40), - [166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(39), - [169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(36), - [172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(35), - [175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(34), - [178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(48), - [181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(57), - [184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(397), - [187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(255), - [190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(814), - [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(287), - [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(270), - [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(262), - [202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(198), - [205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1008), - [208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(58), - [211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(245), - [214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(693), - [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), - [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), - [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_footnote_content, 1), - [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(287), - [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(270), - [257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(262), - [260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(329), - [263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), - [265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(221), - [268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(325), - [271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(716), - [274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(1008), - [277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(31), - [280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(32), - [283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(33), - [286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(647), - [289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(332), - [292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(38), - [295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(45), - [298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(50), - [301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(51), - [304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(49), - [307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(43), - [310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(29), - [313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(42), - [316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(41), - [319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(40), - [322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(39), - [325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(36), - [328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(35), - [331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(34), - [334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(48), - [337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(58), - [340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(397), - [343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(245), - [346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(693), - [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(290), - [360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(273), - [363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(266), - [366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(136), - [369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(298), - [372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(1015), - [375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(55), - [378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(201), - [381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(690), - [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), - [392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), - [394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), - [450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), - [452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), - [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 1), - [466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 1), SHIFT_REPEAT(397), - [469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 1), - [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 1), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2), - [495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_table_repeat1, 2), - [497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(302), - [500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(664), - [503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(294), - [506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(322), - [509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_content, 1), - [511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_content, 1), - [513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__table_content, 1), SHIFT(995), - [516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__table_content, 1), SHIFT(664), - [519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__table_content, 1), SHIFT(981), - [522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__table_content, 1), SHIFT(967), - [525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 2), - [527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 2), - [529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 6, .production_id = 11), - [531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 6, .production_id = 11), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 6), - [537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 6), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 5, .production_id = 8), - [543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 5, .production_id = 8), - [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_row, 5), - [549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_row, 5), - [551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_separator, 5), - [553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_separator, 5), - [555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 5, .production_id = 9), - [557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 5, .production_id = 9), - [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 5), - [563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 5), - [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 4, .production_id = 8), - [569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 4, .production_id = 8), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 4), - [575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 4), - [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_row, 4), - [581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_row, 4), - [583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_separator, 4), - [585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_separator, 4), - [587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 4), - [589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 4), - [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 3), - [595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 3), - [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heading, 3), - [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heading, 3), - [605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_or_two_newlines, 1), - [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_or_two_newlines, 1), - [611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_content, 2, .production_id = 1), - [613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_content, 2, .production_id = 1), - [615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_separator, 6), - [617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_separator, 6), - [619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_row, 6), - [621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_row, 6), - [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_attribute, 3), - [667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_attribute, 3), - [669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 7, .production_id = 12), - [671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 7, .production_id = 12), - [673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 7, .production_id = 8), - [675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 7, .production_id = 8), - [677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_dash, 2), - [679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_dash, 2), - [681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frontmatter, 6), - [683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_frontmatter, 6), - [685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_or_two_newlines, 2), - [687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_or_two_newlines, 2), - [689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_plus, 2), - [691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_plus, 2), - [693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 8), - [695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 8), - [697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_star, 2), - [699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_star, 2), - [701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 1), - [703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 1), - [705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 8, .production_id = 13), - [707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 8, .production_id = 13), - [709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_task, 2), - [711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_task, 2), - [713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_caption, 3, .production_id = 6), - [715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_caption, 3, .production_id = 6), - [717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 8), - [719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 8), - [721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_definition, 2), - [723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_definition, 2), - [725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_decimal_period, 2), - [727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_decimal_period, 2), - [729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_decimal_paren, 2), - [731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_decimal_paren, 2), - [733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 7), - [735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 7), - [737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_decimal_parens, 2), - [739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_decimal_parens, 2), - [741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 6, .production_id = 8), - [743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 6, .production_id = 8), - [745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_alpha_period, 2), - [747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_alpha_period, 2), - [749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 6), - [751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 6), - [753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_alpha_paren, 2), - [755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_alpha_paren, 2), - [757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_alpha_parens, 2), - [759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_alpha_parens, 2), - [761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 5), - [763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 5), - [765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_alpha_period, 2), - [767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_alpha_period, 2), - [769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_footnote, 5), - [771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_footnote, 5), - [773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_alpha_paren, 2), - [775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_alpha_paren, 2), - [777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_alpha_parens, 2), - [779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_alpha_parens, 2), - [781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_attribute, 4, .production_id = 7), - [783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_attribute, 4, .production_id = 7), - [785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_roman_period, 2), - [787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_roman_period, 2), - [789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_roman_paren, 2), - [791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_roman_paren, 2), - [793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 3), - [795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 3), - [797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_roman_parens, 2), - [799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_roman_parens, 2), - [801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_roman_period, 2), - [803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_roman_period, 2), - [805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_roman_paren, 2), - [807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_roman_paren, 2), - [809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_roman_parens, 2), - [811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_roman_parens, 2), - [813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 2), - [815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 2), - [817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph, 2, .production_id = 2), - [819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__paragraph, 2, .production_id = 2), - [821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frontmatter, 7), - [823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_frontmatter, 7), - [825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 1), - [827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 1), - [829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 1), - [831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 1), - [833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_thematic_break, 1), - [835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_thematic_break, 1), - [837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_quote, 3), - [839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_quote, 3), - [841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 3, .production_id = 4), - [843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 3, .production_id = 4), - [845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heading, 4), - [847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heading, 4), - [849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_task, 3), - [851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_task, 3), - [853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), - [855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), - [857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(261), - [860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), - [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), - [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), - [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), - [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), - [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), - [874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), - [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), - [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), - [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), - [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), - [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(300), - [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), - [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(376), - [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), - [904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 2), SHIFT_REPEAT(334), - [907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 2), - [909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_caption_repeat1, 2), - [911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), - [913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), - [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), - [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), - [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), - [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), - [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2), - [953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2), SHIFT_REPEAT(820), - [956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2), SHIFT_REPEAT(457), - [959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2), SHIFT_REPEAT(920), - [962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2), SHIFT_REPEAT(501), - [965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(336), - [968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(296), - [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), - [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), - [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), - [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), - [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), - [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [1019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__table_content, 1), SHIFT(919), - [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), - [1024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline, 1), - [1026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(331), - [1029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), - [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), - [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), - [1045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline, 1), - [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [1061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__table_content, 1), SHIFT(940), - [1064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [1066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(346), - [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [1071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_quote_prefix, 1), - [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [1077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(351), - [1080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), - [1082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [1084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [1086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [1090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [1094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 2), - [1096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 2), SHIFT_REPEAT(647), - [1099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 2), SHIFT_REPEAT(623), - [1102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(359), - [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [1109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(362), - [1112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [1114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [1116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [1118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [1120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [1122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [1124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [1126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code, 1), - [1128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [1130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [1132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [1134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [1136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [1138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [1140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [1142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 2), - [1144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 2), SHIFT_REPEAT(31), - [1147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 2), SHIFT_REPEAT(642), - [1150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2), - [1152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2), SHIFT_REPEAT(33), - [1155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2), SHIFT_REPEAT(677), - [1158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2), - [1160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2), SHIFT_REPEAT(32), - [1163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2), SHIFT_REPEAT(605), - [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), - [1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [1176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_line, 2), - [1178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_line, 2), - [1180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [1184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [1188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [1192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [1194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 1), - [1196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_caption_repeat1, 1), - [1198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(388), - [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [1211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_repeat1, 2), SHIFT_REPEAT(1022), - [1214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_code_repeat1, 2), - [1216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_repeat1, 2), SHIFT_REPEAT(590), - [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [1239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_no_newline, 3, .production_id = 6), - [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [1249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, .production_id = 3), - [1251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_no_newline, 2), - [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [1277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 3), - [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [1309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_name, 1), - [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [1317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1), - [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [1323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value, 3), - [1325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 2), SHIFT_REPEAT(52), - [1328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 2), - [1330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 2), SHIFT_REPEAT(627), - [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [1337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 1), - [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [1341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 2), - [1343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 2), SHIFT_REPEAT(59), - [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_quote_content, 1), - [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_quote_content, 2), - [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [1358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_frontmatter_content_repeat1, 2), SHIFT_REPEAT(955), - [1361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_frontmatter_content_repeat1, 2), - [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), - [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), - [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [1445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frontmatter_content, 1), - [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [1515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_definition_repeat1, 2), - [1517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_definition_repeat1, 2), SHIFT_REPEAT(332), - [1520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), - [1522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_period_repeat1, 2), - [1524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_decimal_period_repeat1, 2), SHIFT_REPEAT(38), - [1527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_paren_repeat1, 2), - [1529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_decimal_paren_repeat1, 2), SHIFT_REPEAT(43), - [1532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_parens_repeat1, 2), - [1534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_decimal_parens_repeat1, 2), SHIFT_REPEAT(39), - [1537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_period_repeat1, 2), - [1539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_period_repeat1, 2), SHIFT_REPEAT(45), - [1542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [1544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [1546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_paren_repeat1, 2), - [1548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_paren_repeat1, 2), SHIFT_REPEAT(29), - [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [1555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_parens_repeat1, 2), - [1557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_parens_repeat1, 2), SHIFT_REPEAT(36), - [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [1562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [1566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_period_repeat1, 2), - [1568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_period_repeat1, 2), SHIFT_REPEAT(50), - [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [1577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_paren_repeat1, 2), - [1579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_paren_repeat1, 2), SHIFT_REPEAT(42), - [1582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [1584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [1586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [1590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_parens_repeat1, 2), - [1592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_parens_repeat1, 2), SHIFT_REPEAT(35), - [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [1603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_period_repeat1, 2), - [1605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_period_repeat1, 2), SHIFT_REPEAT(51), - [1608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [1614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_paren_repeat1, 2), - [1616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_paren_repeat1, 2), SHIFT_REPEAT(41), - [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [1623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_parens_repeat1, 2), - [1625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_parens_repeat1, 2), SHIFT_REPEAT(34), - [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [1630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_parens_repeat1, 2), - [1632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_parens_repeat1, 2), SHIFT_REPEAT(48), - [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [1637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_paren_repeat1, 2), - [1639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_paren_repeat1, 2), SHIFT_REPEAT(40), - [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [1646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__comment_no_newline_repeat1, 2), SHIFT_REPEAT(615), - [1649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_no_newline_repeat1, 2), - [1651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_period_repeat1, 2), - [1653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_period_repeat1, 2), SHIFT_REPEAT(49), - [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [1660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_item_content, 3), - [1662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heading_content, 2), - [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [1666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line, 2), - [1668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_item_content, 2), - [1670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [1672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(606), - [1675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_task, 2), - [1677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_no_newline_repeat1, 1), - [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [1685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(624), - [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heading_content, 1), - [1690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [1692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(628), - [1695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dash, 2), - [1697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dash, 3), - [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [1701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 2), - [1703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 2), - [1705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 3), - [1707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(640), - [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [1716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_task, 3), - [1718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__paragraph_content_repeat1, 2), - [1720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__paragraph_content_repeat1, 2), SHIFT_REPEAT(347), - [1723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(645), - [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [1736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__heading_content_repeat1, 2), - [1738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__heading_content_repeat1, 2), SHIFT_REPEAT(328), - [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [1745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(671), - [1748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 3), - [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [1760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(680), - [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [1767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 3), - [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [1807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div_marker_begin, 1), - [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [1815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_alpha_paren, 2), - [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [1825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_content, 2), - [1827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_alpha_parens, 2), - [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [1843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_content, 3), - [1845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_decimal_period, 2), - [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [1865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_alpha_period, 2), - [1867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_alpha_period, 2), - [1869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_roman_period, 2), - [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_roman_period, 2), - [1873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_decimal_paren, 2), - [1875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_alpha_paren, 2), - [1877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_roman_paren, 2), - [1879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_decimal_parens, 2), - [1881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_definition, 4), - [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [1901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_separator_repeat1, 2), SHIFT_REPEAT(890), - [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [1908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_row_repeat1, 2), SHIFT_REPEAT(330), - [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_roman_paren, 2), - [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_definition, 5, .production_id = 10), - [1925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_alpha_parens, 2), - [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [1937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_roman_parens, 2), - [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [1941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_roman_parens, 2), - [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_label, 1), - [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [2005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_label, 1), - [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_cell, 1), - [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [2035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_row_repeat1, 2), - [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [2045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_separator_repeat1, 2), - [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [2055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key, 1), - [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [2067] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [2079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unchecked, 3), - [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [2083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_checked, 3), - [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [2089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block_info, 2, .production_id = 5), - [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [2243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div_marker_begin, 3), - [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [71] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 1), + [73] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(324), + [76] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(309), + [79] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(272), + [82] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(366), + [85] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), + [87] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(146), + [90] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(358), + [93] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(753), + [96] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1039), + [99] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(39), + [102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(46), + [105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(45), + [108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(677), + [111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(297), + [114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(36), + [117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(42), + [120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(30), + [123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(44), + [126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(47), + [129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(51), + [132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(29), + [135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(40), + [138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(37), + [141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(35), + [144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(34), + [147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(33), + [150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(32), + [153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(31), + [156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(41), + [159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(56), + [162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(341), + [165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(144), + [168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(717), + [171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(311), + [174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(294), + [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(273), + [180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(156), + [183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(995), + [186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(55), + [189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(203), + [192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(767), + [195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 2), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(324), + [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(309), + [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(272), + [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(366), + [253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), + [255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(226), + [258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(358), + [261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(753), + [264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(1039), + [267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(39), + [270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(46), + [273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(45), + [276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(677), + [279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(297), + [282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(36), + [285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(42), + [288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(30), + [291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(44), + [294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(47), + [297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(51), + [300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(29), + [303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(40), + [306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(37), + [309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(35), + [312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(34), + [315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(33), + [318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(32), + [321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(31), + [324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(41), + [327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(56), + [330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(61), + [333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(144), + [336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(717), + [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_footnote_content, 1), + [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(326), + [368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(302), + [371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(270), + [374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(265), + [377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(349), + [380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(1046), + [383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(60), + [386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(58), + [389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(233), + [392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(713), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 1, .production_id = 1), + [457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 1, .production_id = 1), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 1), + [483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 1), SHIFT_REPEAT(341), + [486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 1), + [488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 1), + [490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), + [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), + [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2), + [512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_table_repeat1, 2), + [514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(360), + [517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(754), + [520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(359), + [523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(357), + [526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_content, 1), + [528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_content, 1), + [530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__table_content, 1), SHIFT(948), + [533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__table_content, 1), SHIFT(754), + [536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__table_content, 1), SHIFT(1011), + [539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__table_content, 1), SHIFT(990), + [542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 2), + [544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 2), + [546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 5, .production_id = 9), + [548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 5, .production_id = 9), + [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 6), + [554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 6), + [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_separator, 5), + [560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_separator, 5), + [562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 5, .production_id = 10), + [564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 5, .production_id = 10), + [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 5), + [570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 5), + [572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 4, .production_id = 9), + [576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 4, .production_id = 9), + [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 4), + [582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 4), + [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_row, 4), + [588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_row, 4), + [590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_separator, 4), + [592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_separator, 4), + [594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 4), + [596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 4), + [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 3), + [602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 3), + [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heading, 3), + [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heading, 3), + [612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_or_two_newlines, 1), + [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_or_two_newlines, 1), + [618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_content, 2, .production_id = 2), + [620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_content, 2, .production_id = 2), + [622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 6, .production_id = 12), + [624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 6, .production_id = 12), + [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_separator, 6), + [630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_separator, 6), + [632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_row, 6), + [634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_row, 6), + [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_row, 5), + [650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_row, 5), + [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_attribute, 3), + [684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_attribute, 3), + [686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 8, .production_id = 14), + [688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 8, .production_id = 14), + [690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 8), + [692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 8), + [694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 7, .production_id = 9), + [696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 7, .production_id = 9), + [698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_dash, 2), + [700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_dash, 2), + [702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_star, 2), + [704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_star, 2), + [706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_plus, 2), + [708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_plus, 2), + [710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frontmatter, 6), + [712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_frontmatter, 6), + [714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 7, .production_id = 13), + [716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 7, .production_id = 13), + [718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 1), + [720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 1), + [722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_task, 2), + [724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_task, 2), + [726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_thematic_break, 1), + [728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_thematic_break, 1), + [730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_definition, 2), + [732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_definition, 2), + [734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 1), + [736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 1), + [738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_decimal_period, 2), + [740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_decimal_period, 2), + [742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 7), + [744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 7), + [746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_decimal_paren, 2), + [748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_decimal_paren, 2), + [750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 5), + [752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 5), + [754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_decimal_parens, 2), + [756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_decimal_parens, 2), + [758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frontmatter, 7), + [760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_frontmatter, 7), + [762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_alpha_period, 2), + [764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_alpha_period, 2), + [766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 2), + [768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 2), + [770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_alpha_paren, 2), + [772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_alpha_paren, 2), + [774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_alpha_parens, 2), + [776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_alpha_parens, 2), + [778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_footnote, 5), + [780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_footnote, 5), + [782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_alpha_period, 2), + [784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_alpha_period, 2), + [786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_or_two_newlines, 2), + [788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_or_two_newlines, 2), + [790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_alpha_paren, 2), + [792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_alpha_paren, 2), + [794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_alpha_parens, 2), + [796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_alpha_parens, 2), + [798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 6, .production_id = 9), + [800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 6, .production_id = 9), + [802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_roman_period, 2), + [804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_roman_period, 2), + [806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 6), + [808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 6), + [810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_roman_paren, 2), + [812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_roman_paren, 2), + [814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_roman_parens, 2), + [816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_roman_parens, 2), + [818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__paragraph, 2, .production_id = 3), + [820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph, 2, .production_id = 3), + [822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_roman_period, 2), + [824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_roman_period, 2), + [826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_roman_paren, 2), + [828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_roman_paren, 2), + [830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_roman_parens, 2), + [832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_roman_parens, 2), + [834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 8), + [836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 8), + [838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_caption, 3, .production_id = 7), + [840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_caption, 3, .production_id = 7), + [842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_with_heading, 2), + [844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_with_heading, 2), + [846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_attribute, 4, .production_id = 8), + [848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_attribute, 4, .production_id = 8), + [850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_quote, 3), + [852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_quote, 3), + [854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 3), + [856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 3), + [858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heading, 4), + [860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heading, 4), + [862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 3, .production_id = 5), + [864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 3, .production_id = 5), + [866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 1), + [868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 1), + [870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_task, 3), + [872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_task, 3), + [874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), + [876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), + [878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(268), + [881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), + [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), + [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), + [887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), + [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), + [899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), + [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), + [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), + [905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), + [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), + [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), + [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), + [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), + [949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), + [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(316), + [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), + [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(410), + [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), + [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 2), SHIFT_REPEAT(388), + [978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 2), + [980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_caption_repeat1, 2), + [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(334), + [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), + [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), + [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), + [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), + [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), + [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [1007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_quote_prefix, 1), + [1009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_quote_prefix, 1), + [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), + [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), + [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), + [1019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(375), + [1022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [1024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [1026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [1028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [1030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [1034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(343), + [1037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2), + [1039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2), SHIFT_REPEAT(849), + [1042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2), SHIFT_REPEAT(468), + [1045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2), SHIFT_REPEAT(916), + [1048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2), SHIFT_REPEAT(514), + [1051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(341), + [1054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [1056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [1058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [1062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [1064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [1066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [1068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [1070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [1072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [1074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [1078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [1080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [1082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [1084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [1086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [1090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(362), + [1093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), + [1095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__table_content, 1), SHIFT(946), + [1098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [1100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline, 1), + [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [1104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [1106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [1108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [1110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [1112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [1114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [1116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [1118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [1120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [1122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), + [1124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline, 1), + [1126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__table_content, 1), SHIFT(968), + [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [1133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(380), + [1136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), + [1138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [1140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [1142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [1144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [1146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(385), + [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [1159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 2), + [1161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 2), SHIFT_REPEAT(677), + [1164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 2), SHIFT_REPEAT(874), + [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [1183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 2), + [1185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 2), SHIFT_REPEAT(39), + [1188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 2), SHIFT_REPEAT(831), + [1191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2), + [1193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2), SHIFT_REPEAT(46), + [1196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2), SHIFT_REPEAT(882), + [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [1207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2), + [1209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2), SHIFT_REPEAT(45), + [1212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2), SHIFT_REPEAT(711), + [1215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_line, 2), + [1217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_line, 2), + [1219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(465), + [1222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code, 1), + [1226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [1228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [1230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(411), + [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [1237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 1), + [1239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_caption_repeat1, 1), + [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [1251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_repeat1, 2), SHIFT_REPEAT(1053), + [1254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_code_repeat1, 2), + [1256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_repeat1, 2), SHIFT_REPEAT(847), + [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [1307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_no_newline, 2), + [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [1313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, .production_id = 4), + [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [1321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 3), + [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [1335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 2), SHIFT_REPEAT(52), + [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 2), + [1340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 2), SHIFT_REPEAT(867), + [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [1349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 1), + [1351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_name, 1), + [1353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_no_newline, 3, .production_id = 7), + [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [1357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1), + [1359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value, 3), + [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [1367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 2), + [1369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 2), SHIFT_REPEAT(268), + [1372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_quote_content, 1), + [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [1376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_quote_content, 2), + [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_period_repeat1, 2), + [1384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_decimal_period_repeat1, 2), SHIFT_REPEAT(36), + [1387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_paren_repeat1, 2), + [1389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_decimal_paren_repeat1, 2), SHIFT_REPEAT(51), + [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_parens_repeat1, 2), + [1394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_decimal_parens_repeat1, 2), SHIFT_REPEAT(34), + [1397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_period_repeat1, 2), + [1399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_period_repeat1, 2), SHIFT_REPEAT(42), + [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_paren_repeat1, 2), + [1404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_paren_repeat1, 2), SHIFT_REPEAT(29), + [1407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_parens_repeat1, 2), + [1409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_parens_repeat1, 2), SHIFT_REPEAT(33), + [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_period_repeat1, 2), + [1414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_period_repeat1, 2), SHIFT_REPEAT(30), + [1417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_paren_repeat1, 2), + [1419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_paren_repeat1, 2), SHIFT_REPEAT(40), + [1422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_parens_repeat1, 2), + [1424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_parens_repeat1, 2), SHIFT_REPEAT(32), + [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_period_repeat1, 2), + [1429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_period_repeat1, 2), SHIFT_REPEAT(44), + [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_paren_repeat1, 2), + [1434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_paren_repeat1, 2), SHIFT_REPEAT(37), + [1437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_parens_repeat1, 2), + [1439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_parens_repeat1, 2), SHIFT_REPEAT(31), + [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_period_repeat1, 2), + [1444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_period_repeat1, 2), SHIFT_REPEAT(47), + [1447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_paren_repeat1, 2), + [1449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_paren_repeat1, 2), SHIFT_REPEAT(35), + [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_parens_repeat1, 2), + [1454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_parens_repeat1, 2), SHIFT_REPEAT(41), + [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), + [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), + [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [1481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frontmatter_content, 1), + [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [1517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__comment_no_newline_repeat1, 2), SHIFT_REPEAT(670), + [1520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_no_newline_repeat1, 2), + [1522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_frontmatter_content_repeat1, 2), SHIFT_REPEAT(921), + [1525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_frontmatter_content_repeat1, 2), + [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [1671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_definition_repeat1, 2), + [1673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_definition_repeat1, 2), SHIFT_REPEAT(297), + [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [1678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [1682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dash, 3), + [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [1686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_item_content, 3), + [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__heading_content_repeat1, 2), + [1690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__heading_content_repeat1, 2), SHIFT_REPEAT(364), + [1693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(882), + [1696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [1700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(874), + [1703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_item_content, 2), + [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [1707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(754), + [1710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(867), + [1713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__paragraph_content_repeat1, 2), + [1715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__paragraph_content_repeat1, 2), SHIFT_REPEAT(318), + [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [1722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_task, 3), + [1724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 3), + [1726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 3), + [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line, 2), + [1732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(847), + [1735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_task, 2), + [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [1743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_no_newline_repeat1, 1), + [1745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(831), + [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [1750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 3), + [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [1754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heading_content, 2), + [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [1764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 2), + [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 2), + [1768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dash, 2), + [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heading_content, 1), + [1772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(711), + [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [1789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_alpha_parens, 2), + [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [1793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_alpha_parens, 2), + [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [1799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_roman_parens, 2), + [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [1805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_roman_parens, 2), + [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [1821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_content, 2), + [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [1831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div_marker_begin, 1), + [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [1839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_roman_paren, 2), + [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [1863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_definition, 5, .production_id = 11), + [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [1887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_roman_paren, 2), + [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_decimal_period, 2), + [1893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_alpha_period, 2), + [1895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_alpha_period, 2), + [1897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_roman_period, 2), + [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_roman_period, 2), + [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [1913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__paragraph_content_repeat1, 3), + [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_content, 4), + [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_content, 3), + [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [1937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_decimal_paren, 2), + [1939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_row_repeat1, 2), SHIFT_REPEAT(365), + [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_alpha_paren, 2), + [1944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_alpha_paren, 2), + [1946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_separator_repeat1, 2), SHIFT_REPEAT(988), + [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [1953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_decimal_parens, 2), + [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [1957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_definition, 4), + [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [1963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unchecked, 3), + [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [1967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_checked, 3), + [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [1979] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [1997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block_info, 2, .production_id = 6), + [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key, 1), + [2005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_separator_repeat1, 2), + [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_row_repeat1, 2), + [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [2047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_cell, 1), + [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [2125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div_marker_begin, 3), + [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [2139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_label, 1), + [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [2181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_label, 1), + [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), }; enum ts_external_scanner_symbol_identifiers { @@ -27710,7 +28826,6 @@ static const bool ts_external_scanner_states[76][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__thematic_break_dash] = true, [ts_external_token__thematic_break_star] = true, [ts_external_token__footnote_begin] = true, - [ts_external_token__footnote_end] = true, [ts_external_token__table_caption_begin] = true, }, [9] = { @@ -27743,6 +28858,7 @@ static const bool ts_external_scanner_states[76][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__thematic_break_dash] = true, [ts_external_token__thematic_break_star] = true, [ts_external_token__footnote_begin] = true, + [ts_external_token__footnote_end] = true, [ts_external_token__table_caption_begin] = true, }, [10] = { @@ -27779,12 +28895,11 @@ static const bool ts_external_scanner_states[76][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__table_caption_begin] = true, }, [11] = { - [ts_external_token__block_close] = true, [ts_external_token__newline] = true, [ts_external_token__heading_begin] = true, [ts_external_token__div_begin] = true, + [ts_external_token__div_end] = true, [ts_external_token__code_block_begin] = true, - [ts_external_token__code_block_end] = true, [ts_external_token_list_marker_dash] = true, [ts_external_token_list_marker_star] = true, [ts_external_token_list_marker_plus] = true, @@ -27812,12 +28927,11 @@ static const bool ts_external_scanner_states[76][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__footnote_begin] = true, }, [12] = { - [ts_external_token__block_close] = true, [ts_external_token__newline] = true, [ts_external_token__heading_begin] = true, [ts_external_token__div_begin] = true, - [ts_external_token__div_end] = true, [ts_external_token__code_block_begin] = true, + [ts_external_token__code_block_end] = true, [ts_external_token_list_marker_dash] = true, [ts_external_token_list_marker_star] = true, [ts_external_token_list_marker_plus] = true, @@ -27843,13 +28957,15 @@ static const bool ts_external_scanner_states[76][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__thematic_break_dash] = true, [ts_external_token__thematic_break_star] = true, [ts_external_token__footnote_begin] = true, + [ts_external_token__footnote_end] = true, }, [13] = { - [ts_external_token__eof_or_newline] = true, + [ts_external_token__block_close] = true, [ts_external_token__newline] = true, [ts_external_token__heading_begin] = true, [ts_external_token__div_begin] = true, [ts_external_token__code_block_begin] = true, + [ts_external_token__code_block_end] = true, [ts_external_token_list_marker_dash] = true, [ts_external_token_list_marker_star] = true, [ts_external_token_list_marker_plus] = true, @@ -27875,14 +28991,13 @@ static const bool ts_external_scanner_states[76][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__thematic_break_dash] = true, [ts_external_token__thematic_break_star] = true, [ts_external_token__footnote_begin] = true, - [ts_external_token__footnote_end] = true, }, [14] = { [ts_external_token__block_close] = true, - [ts_external_token__eof_or_newline] = true, [ts_external_token__newline] = true, [ts_external_token__heading_begin] = true, [ts_external_token__div_begin] = true, + [ts_external_token__div_end] = true, [ts_external_token__code_block_begin] = true, [ts_external_token_list_marker_dash] = true, [ts_external_token_list_marker_star] = true, @@ -27941,13 +29056,15 @@ static const bool ts_external_scanner_states[76][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__thematic_break_dash] = true, [ts_external_token__thematic_break_star] = true, [ts_external_token__footnote_begin] = true, + [ts_external_token__footnote_end] = true, }, [16] = { + [ts_external_token__block_close] = true, + [ts_external_token__eof_or_newline] = true, [ts_external_token__newline] = true, [ts_external_token__heading_begin] = true, [ts_external_token__div_begin] = true, [ts_external_token__code_block_begin] = true, - [ts_external_token__code_block_end] = true, [ts_external_token_list_marker_dash] = true, [ts_external_token_list_marker_star] = true, [ts_external_token_list_marker_plus] = true, @@ -27975,10 +29092,10 @@ static const bool ts_external_scanner_states[76][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__footnote_begin] = true, }, [17] = { + [ts_external_token__eof_or_newline] = true, [ts_external_token__newline] = true, [ts_external_token__heading_begin] = true, [ts_external_token__div_begin] = true, - [ts_external_token__div_end] = true, [ts_external_token__code_block_begin] = true, [ts_external_token_list_marker_dash] = true, [ts_external_token_list_marker_star] = true, @@ -28010,8 +29127,8 @@ static const bool ts_external_scanner_states[76][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__newline] = true, [ts_external_token__heading_begin] = true, [ts_external_token__div_begin] = true, - [ts_external_token__div_end] = true, [ts_external_token__code_block_begin] = true, + [ts_external_token__code_block_end] = true, [ts_external_token_list_marker_dash] = true, [ts_external_token_list_marker_star] = true, [ts_external_token_list_marker_plus] = true, @@ -28037,14 +29154,13 @@ static const bool ts_external_scanner_states[76][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__thematic_break_dash] = true, [ts_external_token__thematic_break_star] = true, [ts_external_token__footnote_begin] = true, - [ts_external_token__footnote_end] = true, }, [19] = { [ts_external_token__newline] = true, [ts_external_token__heading_begin] = true, [ts_external_token__div_begin] = true, + [ts_external_token__div_end] = true, [ts_external_token__code_block_begin] = true, - [ts_external_token__code_block_end] = true, [ts_external_token_list_marker_dash] = true, [ts_external_token_list_marker_star] = true, [ts_external_token_list_marker_plus] = true, @@ -28077,38 +29193,46 @@ static const bool ts_external_scanner_states[76][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__newline_inline] = true, }, [21] = { + [ts_external_token__block_close] = true, + [ts_external_token_list_marker_dash] = true, + [ts_external_token_list_marker_star] = true, + [ts_external_token_list_marker_plus] = true, + [ts_external_token__list_marker_task_begin] = true, + }, + [22] = { + [ts_external_token_list_marker_dash] = true, + [ts_external_token_list_marker_star] = true, + [ts_external_token_list_marker_plus] = true, + [ts_external_token__list_marker_task_begin] = true, + }, + [23] = { [ts_external_token__newline] = true, [ts_external_token__list_item_continuation] = true, [ts_external_token__list_item_end] = true, [ts_external_token__block_quote_continuation] = true, [ts_external_token__table_caption_begin] = true, }, - [22] = { + [24] = { [ts_external_token__table_caption_end] = true, }, - [23] = { + [25] = { [ts_external_token__block_close] = true, [ts_external_token__newline] = true, [ts_external_token__block_quote_continuation] = true, [ts_external_token__table_caption_begin] = true, }, - [24] = { - [ts_external_token__newline] = true, - }, - [25] = { + [26] = { [ts_external_token__block_close] = true, + [ts_external_token_list_marker_dash] = true, + [ts_external_token_list_marker_star] = true, + [ts_external_token_list_marker_plus] = true, [ts_external_token__list_marker_task_begin] = true, [ts_external_token__block_quote_continuation] = true, }, - [26] = { - [ts_external_token__eof_or_newline] = true, - }, [27] = { - [ts_external_token__block_close] = true, [ts_external_token__block_quote_continuation] = true, }, [28] = { - [ts_external_token__block_close] = true, [ts_external_token_list_marker_dash] = true, [ts_external_token_list_marker_star] = true, [ts_external_token_list_marker_plus] = true, @@ -28116,147 +29240,139 @@ static const bool ts_external_scanner_states[76][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__block_quote_continuation] = true, }, [29] = { - [ts_external_token_list_marker_dash] = true, - [ts_external_token_list_marker_star] = true, - [ts_external_token_list_marker_plus] = true, - [ts_external_token__list_marker_task_begin] = true, - [ts_external_token__block_quote_continuation] = true, + [ts_external_token__newline] = true, }, [30] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_dash] = true, - [ts_external_token_list_marker_star] = true, - [ts_external_token_list_marker_plus] = true, - [ts_external_token__list_marker_task_begin] = true, + [ts_external_token__block_quote_continuation] = true, }, [31] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_dash] = true, + [ts_external_token__list_marker_task_begin] = true, [ts_external_token__block_quote_continuation] = true, }, [32] = { - [ts_external_token__block_close] = true, - [ts_external_token_list_marker_plus] = true, - [ts_external_token__block_quote_continuation] = true, + [ts_external_token__eof_or_newline] = true, }, [33] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_star] = true, + [ts_external_token_list_marker_plus] = true, [ts_external_token__block_quote_continuation] = true, }, [34] = { - [ts_external_token__list_item_continuation] = true, - [ts_external_token__list_item_end] = true, + [ts_external_token__block_close] = true, + [ts_external_token_list_marker_star] = true, [ts_external_token__block_quote_continuation] = true, }, [35] = { + [ts_external_token__block_close] = true, [ts_external_token_list_marker_dash] = true, - [ts_external_token_list_marker_star] = true, - [ts_external_token_list_marker_plus] = true, - [ts_external_token__list_marker_task_begin] = true, + [ts_external_token__block_quote_continuation] = true, }, [36] = { [ts_external_token__list_item_continuation] = true, [ts_external_token__list_item_end] = true, [ts_external_token__block_quote_continuation] = true, - [ts_external_token__table_caption_begin] = true, }, [37] = { - [ts_external_token__block_close] = true, - [ts_external_token_list_marker_upper_roman_paren] = true, + [ts_external_token__list_item_continuation] = true, + [ts_external_token__list_item_end] = true, + [ts_external_token__block_quote_continuation] = true, + [ts_external_token__table_caption_begin] = true, }, [38] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_lower_roman_period] = true, + [ts_external_token_list_marker_definition] = true, }, [39] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_upper_roman_period] = true, + [ts_external_token_list_marker_upper_alpha_paren] = true, }, [40] = { - [ts_external_token_frontmatter_marker] = true, + [ts_external_token__block_close] = true, + [ts_external_token_list_marker_decimal_period] = true, }, [41] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_upper_roman_parens] = true, + [ts_external_token_list_marker_decimal_paren] = true, }, [42] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_lower_roman_parens] = true, + [ts_external_token_list_marker_decimal_parens] = true, }, [43] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_lower_roman_paren] = true, + [ts_external_token_list_marker_lower_alpha_period] = true, }, [44] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_decimal_period] = true, + [ts_external_token_list_marker_lower_alpha_paren] = true, }, [45] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_upper_alpha_parens] = true, + [ts_external_token_list_marker_lower_alpha_parens] = true, }, [46] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_upper_alpha_paren] = true, + [ts_external_token_list_marker_upper_alpha_period] = true, }, [47] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_upper_alpha_period] = true, + [ts_external_token_list_marker_upper_alpha_parens] = true, }, [48] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_lower_alpha_parens] = true, + [ts_external_token_list_marker_lower_roman_period] = true, }, [49] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_lower_alpha_paren] = true, + [ts_external_token_list_marker_lower_roman_paren] = true, }, [50] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_lower_alpha_period] = true, + [ts_external_token_list_marker_lower_roman_parens] = true, }, [51] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_decimal_parens] = true, + [ts_external_token_list_marker_upper_roman_period] = true, }, [52] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_decimal_paren] = true, + [ts_external_token_list_marker_upper_roman_paren] = true, }, [53] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_definition] = true, + [ts_external_token_list_marker_upper_roman_parens] = true, }, [54] = { + [ts_external_token_frontmatter_marker] = true, + }, + [55] = { [ts_external_token__block_close] = true, [ts_external_token__block_quote_continuation] = true, [ts_external_token__table_caption_begin] = true, }, - [55] = { + [56] = { [ts_external_token__eof_or_newline] = true, [ts_external_token__list_item_continuation] = true, [ts_external_token__list_item_end] = true, [ts_external_token__block_quote_continuation] = true, }, - [56] = { + [57] = { [ts_external_token__code_block_end] = true, [ts_external_token__list_item_continuation] = true, [ts_external_token__list_item_end] = true, [ts_external_token__block_quote_continuation] = true, }, - [57] = { + [58] = { [ts_external_token__div_end] = true, [ts_external_token__list_item_continuation] = true, [ts_external_token__list_item_end] = true, [ts_external_token__block_quote_continuation] = true, }, - [58] = { - [ts_external_token__block_quote_continuation] = true, - }, [59] = { [ts_external_token__block_close] = true, - [ts_external_token__div_end] = true, + [ts_external_token__code_block_end] = true, [ts_external_token__block_quote_continuation] = true, }, [60] = { @@ -28264,42 +29380,42 @@ static const bool ts_external_scanner_states[76][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__heading_continuation] = true, }, [61] = { - [ts_external_token_list_marker_star] = true, + [ts_external_token_list_marker_dash] = true, [ts_external_token__block_quote_continuation] = true, }, [62] = { - [ts_external_token__list_marker_task_begin] = true, + [ts_external_token_list_marker_star] = true, [ts_external_token__block_quote_continuation] = true, }, [63] = { - [ts_external_token__list_item_continuation] = true, + [ts_external_token__block_close] = true, + [ts_external_token__div_end] = true, [ts_external_token__block_quote_continuation] = true, }, [64] = { - [ts_external_token_list_marker_dash] = true, + [ts_external_token__list_marker_task_begin] = true, [ts_external_token__block_quote_continuation] = true, }, [65] = { - [ts_external_token_list_marker_plus] = true, + [ts_external_token__block_close] = true, + [ts_external_token__eof_or_newline] = true, [ts_external_token__block_quote_continuation] = true, }, [66] = { - [ts_external_token__block_close] = true, - [ts_external_token__code_block_end] = true, + [ts_external_token__list_item_continuation] = true, [ts_external_token__block_quote_continuation] = true, }, [67] = { - [ts_external_token__block_close] = true, - [ts_external_token__eof_or_newline] = true, + [ts_external_token_list_marker_plus] = true, [ts_external_token__block_quote_continuation] = true, }, [68] = { - [ts_external_token__list_marker_task_begin] = true, - }, - [69] = { [ts_external_token__eof_or_newline] = true, [ts_external_token__close_paragraph] = true, }, + [69] = { + [ts_external_token__list_marker_task_begin] = true, + }, [70] = { [ts_external_token__block_close] = true, }, @@ -28307,16 +29423,16 @@ static const bool ts_external_scanner_states[76][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__footnote_end] = true, }, [72] = { - [ts_external_token_list_marker_dash] = true, + [ts_external_token__list_item_continuation] = true, }, [73] = { - [ts_external_token__list_item_continuation] = true, + [ts_external_token_list_marker_star] = true, }, [74] = { - [ts_external_token_list_marker_star] = true, + [ts_external_token_list_marker_plus] = true, }, [75] = { - [ts_external_token_list_marker_plus] = true, + [ts_external_token_list_marker_dash] = true, }, }; diff --git a/tree-sitter-djot/src/scanner.c b/tree-sitter-djot/src/scanner.c index 1890a4c..2f85db3 100644 --- a/tree-sitter-djot/src/scanner.c +++ b/tree-sitter-djot/src/scanner.c @@ -3,7 +3,7 @@ #include "tree_sitter/parser.h" #include -// #define DEBUG +#define DEBUG #ifdef DEBUG #include diff --git a/tree-sitter-djot/test/corpus/syntax.txt b/tree-sitter-djot/test/corpus/syntax.txt index 2236ab1..b9782f2 100644 --- a/tree-sitter-djot/test/corpus/syntax.txt +++ b/tree-sitter-djot/test/corpus/syntax.txt @@ -335,6 +335,23 @@ Block quote: oneline (content (paragraph)))) +=============================================================================== +Block quote: directly after +=============================================================================== +> One +> Two +> Three + +------------------------------------------------------------------------------- + +(document + (block_quote + (block_quote_marker) + (content + (paragraph + (block_quote_marker) + (block_quote_marker))))) + =============================================================================== Block quote: long =============================================================================== @@ -1262,6 +1279,27 @@ Div: close nested div (paragraph)))) (div_marker_end))) +=============================================================================== +Div: inside block quote +=============================================================================== +> ::: +> a +> ::: + +------------------------------------------------------------------------------- + +(document + (block_quote + (block_quote_marker) + (content + (div + (div_marker_begin) + (content + (paragraph + (block_quote_marker))) + (block_quote_marker) + (div_marker_end))))) + =============================================================================== Paragraph: not recognized =============================================================================== From 5dcfb87d8ac97d08ecdfa012ab9161b68c23941e Mon Sep 17 00:00:00 2001 From: Jonas Hietala Date: Sun, 25 Aug 2024 12:56:53 +0200 Subject: [PATCH 05/46] Inline parser for verbatim --- tree-sitter-djot-inline/grammar.js | 20 +- tree-sitter-djot-inline/src/grammar.json | 35 +- tree-sitter-djot-inline/src/node-types.json | 58 +- tree-sitter-djot-inline/src/parser.c | 35779 ++++++++-------- tree-sitter-djot-inline/src/scanner.c | 145 + .../test/corpus/syntax.txt | 710 +- tree-sitter-djot/grammar.js | 8 - tree-sitter-djot/src/grammar.json | 12 - tree-sitter-djot/src/parser.c | 311 +- tree-sitter-djot/src/scanner.c | 103 +- 10 files changed, 18042 insertions(+), 19139 deletions(-) create mode 100644 tree-sitter-djot-inline/src/scanner.c diff --git a/tree-sitter-djot-inline/grammar.js b/tree-sitter-djot-inline/grammar.js index a80d8f3..86bbb2f 100644 --- a/tree-sitter-djot-inline/grammar.js +++ b/tree-sitter-djot-inline/grammar.js @@ -233,7 +233,7 @@ module.exports = grammar({ // These exists to explicit trigger an LR collision with existing // prefixes. A collision isn't detected with a string and the // catch-all `_text` regex. - _symbol_fallback: ($) => + _symbol_fallback: (_) => prec.dynamic( -1000, choice( @@ -258,10 +258,6 @@ module.exports = grammar({ ), ), - _verbatim_begin: (_) => "`", - _verbatim_end: (_) => "`", - _verbatim_content: (_) => /[^`]*/, - language: (_) => /[^\n\t \{\}=]+/, _whitespace: (_) => token.immediate(/[ \t]*/), @@ -277,4 +273,18 @@ module.exports = grammar({ key: ($) => $._id, value: (_) => choice(seq('"', /[^"\n]+/, '"'), /\w+/), }, + + externals: ($) => [ + // Used as default value in scanner, should never be referenced. + $._ignored, + + // Verbatim is handled externally to match a varying number of `, + // and to close open verbatim when a paragraph ends with a blankline. + $._verbatim_begin, + $._verbatim_end, + $._verbatim_content, + + // Never valid and is only used to signal an internal scanner error. + $._error, + ], }); diff --git a/tree-sitter-djot-inline/src/grammar.json b/tree-sitter-djot-inline/src/grammar.json index 25459cb..0ffe6fe 100644 --- a/tree-sitter-djot-inline/src/grammar.json +++ b/tree-sitter-djot-inline/src/grammar.json @@ -1263,18 +1263,6 @@ ] } }, - "_verbatim_begin": { - "type": "STRING", - "value": "`" - }, - "_verbatim_end": { - "type": "STRING", - "value": "`" - }, - "_verbatim_content": { - "type": "PATTERN", - "value": "[^`]*" - }, "language": { "type": "PATTERN", "value": "[^\\n\\t \\{\\}=]+" @@ -1447,7 +1435,28 @@ ] ], "precedences": [], - "externals": [], + "externals": [ + { + "type": "SYMBOL", + "name": "_ignored" + }, + { + "type": "SYMBOL", + "name": "_verbatim_begin" + }, + { + "type": "SYMBOL", + "name": "_verbatim_end" + }, + { + "type": "SYMBOL", + "name": "_verbatim_content" + }, + { + "type": "SYMBOL", + "name": "_error" + } + ], "inline": [], "supertypes": [] } diff --git a/tree-sitter-djot-inline/src/node-types.json b/tree-sitter-djot-inline/src/node-types.json index 7225172..53b1533 100644 --- a/tree-sitter-djot-inline/src/node-types.json +++ b/tree-sitter-djot-inline/src/node-types.json @@ -1009,16 +1009,6 @@ ] } }, - { - "type": "math_marker_begin", - "named": true, - "fields": {} - }, - { - "type": "math_marker_end", - "named": true, - "fields": {} - }, { "type": "note", "named": true, @@ -1066,16 +1056,6 @@ ] } }, - { - "type": "raw_inline_marker_begin", - "named": true, - "fields": {} - }, - { - "type": "raw_inline_marker_end", - "named": true, - "fields": {} - }, { "type": "reference_label", "named": true, @@ -1312,16 +1292,6 @@ ] } }, - { - "type": "verbatim_marker_begin", - "named": true, - "fields": {} - }, - { - "type": "verbatim_marker_end", - "named": true, - "fields": {} - }, { "type": " ", "named": false @@ -1434,10 +1404,6 @@ "type": "_", "named": false }, - { - "type": "`", - "named": false - }, { "type": "backslash_escape", "named": true @@ -1478,14 +1444,38 @@ "type": "math_marker", "named": true }, + { + "type": "math_marker_begin", + "named": true + }, + { + "type": "math_marker_end", + "named": true + }, { "type": "quotation_marks", "named": true }, + { + "type": "raw_inline_marker_begin", + "named": true + }, + { + "type": "raw_inline_marker_end", + "named": true + }, { "type": "symbol", "named": true }, + { + "type": "verbatim_marker_begin", + "named": true + }, + { + "type": "verbatim_marker_end", + "named": true + }, { "type": "{", "named": false diff --git a/tree-sitter-djot-inline/src/parser.c b/tree-sitter-djot-inline/src/parser.c index 7ff4e1d..ec5f8a2 100644 --- a/tree-sitter-djot-inline/src/parser.c +++ b/tree-sitter-djot-inline/src/parser.c @@ -13,12 +13,12 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 913 +#define STATE_COUNT 892 #define LARGE_STATE_COUNT 122 -#define SYMBOL_COUNT 124 +#define SYMBOL_COUNT 125 #define ALIAS_COUNT 10 -#define TOKEN_COUNT 67 -#define EXTERNAL_TOKEN_COUNT 0 +#define TOKEN_COUNT 70 +#define EXTERNAL_TOKEN_COUNT 5 #define FIELD_COUNT 0 #define MAX_ALIAS_SEQUENCE_LENGTH 4 #define PRODUCTION_ID_COUNT 10 @@ -77,86 +77,87 @@ enum ts_symbol_identifiers { anon_sym_XXX = 51, sym_fixme = 52, anon_sym_PIPE = 53, - anon_sym_BQUOTE = 54, - sym__verbatim_content = 55, - sym_language = 56, - sym__whitespace = 57, - sym__whitespace1 = 58, - sym__newline = 59, - aux_sym__text_token1 = 60, - anon_sym_DOT = 61, - sym_identifier = 62, - anon_sym_EQ = 63, - anon_sym_DQUOTE = 64, - aux_sym_value_token1 = 65, - aux_sym_value_token2 = 66, - sym_inline = 67, - sym__inline = 68, - sym__element = 69, - sym_inline_attribute = 70, - sym_emphasis = 71, - sym_emphasis_begin = 72, - sym_emphasis_end = 73, - sym_strong = 74, - sym_strong_begin = 75, - sym_strong_end = 76, - sym__hard_line_break = 77, - sym_hard_line_break = 78, - sym__smart_punctuation = 79, - sym_autolink = 80, - sym_highlighted = 81, - sym_insert = 82, - sym_delete = 83, - sym_superscript = 84, - sym_subscript = 85, - sym_footnote_reference = 86, - sym_reference_label = 87, - sym__image = 88, - sym_full_reference_image = 89, - sym_collapsed_reference_image = 90, - sym_inline_image = 91, - sym__image_description = 92, - sym__link = 93, - sym_full_reference_link = 94, - sym_collapsed_reference_link = 95, - sym_inline_link = 96, - sym_link_text = 97, - sym__link_label = 98, - sym_inline_link_destination = 99, - sym_comment = 100, - sym__comment_with_spaces = 101, - sym_span = 102, - sym__comment_with_newline = 103, - sym_raw_inline = 104, - sym_raw_inline_attribute = 105, - sym_math = 106, - sym_verbatim = 107, - sym__todo_highlights = 108, - sym_todo = 109, - sym_note = 110, - sym__symbol_fallback = 111, - sym__verbatim_begin = 112, - sym__verbatim_end = 113, - aux_sym__text = 114, - sym_class_name = 115, - sym_class = 116, - sym_key_value = 117, - sym_key = 118, - sym_value = 119, - aux_sym__inline_repeat1 = 120, - aux_sym_inline_attribute_repeat1 = 121, - aux_sym_emphasis_begin_repeat1 = 122, - aux_sym__comment_with_newline_repeat1 = 123, - alias_sym_args = 124, - alias_sym_footnote_marker_begin = 125, - alias_sym_footnote_marker_end = 126, - alias_sym_image_description = 127, - alias_sym_link_label = 128, - alias_sym_math_marker = 129, - alias_sym_math_marker_begin = 130, - alias_sym_math_marker_end = 131, - alias_sym_verbatim_marker_begin = 132, - alias_sym_verbatim_marker_end = 133, + sym_language = 54, + sym__whitespace = 55, + sym__whitespace1 = 56, + sym__newline = 57, + aux_sym__text_token1 = 58, + anon_sym_DOT = 59, + sym_identifier = 60, + anon_sym_EQ = 61, + anon_sym_DQUOTE = 62, + aux_sym_value_token1 = 63, + aux_sym_value_token2 = 64, + sym__ignored = 65, + sym__verbatim_begin = 66, + sym__verbatim_end = 67, + sym__verbatim_content = 68, + sym__error = 69, + sym_inline = 70, + sym__inline = 71, + sym__element = 72, + sym_inline_attribute = 73, + sym_emphasis = 74, + sym_emphasis_begin = 75, + sym_emphasis_end = 76, + sym_strong = 77, + sym_strong_begin = 78, + sym_strong_end = 79, + sym__hard_line_break = 80, + sym_hard_line_break = 81, + sym__smart_punctuation = 82, + sym_autolink = 83, + sym_highlighted = 84, + sym_insert = 85, + sym_delete = 86, + sym_superscript = 87, + sym_subscript = 88, + sym_footnote_reference = 89, + sym_reference_label = 90, + sym__image = 91, + sym_full_reference_image = 92, + sym_collapsed_reference_image = 93, + sym_inline_image = 94, + sym__image_description = 95, + sym__link = 96, + sym_full_reference_link = 97, + sym_collapsed_reference_link = 98, + sym_inline_link = 99, + sym_link_text = 100, + sym__link_label = 101, + sym_inline_link_destination = 102, + sym_comment = 103, + sym__comment_with_spaces = 104, + sym_span = 105, + sym__comment_with_newline = 106, + sym_raw_inline = 107, + sym_raw_inline_attribute = 108, + sym_math = 109, + sym_verbatim = 110, + sym__todo_highlights = 111, + sym_todo = 112, + sym_note = 113, + sym__symbol_fallback = 114, + aux_sym__text = 115, + sym_class_name = 116, + sym_class = 117, + sym_key_value = 118, + sym_key = 119, + sym_value = 120, + aux_sym__inline_repeat1 = 121, + aux_sym_inline_attribute_repeat1 = 122, + aux_sym_emphasis_begin_repeat1 = 123, + aux_sym__comment_with_newline_repeat1 = 124, + alias_sym_args = 125, + alias_sym_footnote_marker_begin = 126, + alias_sym_footnote_marker_end = 127, + alias_sym_image_description = 128, + alias_sym_link_label = 129, + alias_sym_math_marker = 130, + alias_sym_math_marker_begin = 131, + alias_sym_math_marker_end = 132, + alias_sym_verbatim_marker_begin = 133, + alias_sym_verbatim_marker_end = 134, }; static const char * const ts_symbol_names[] = { @@ -214,8 +215,6 @@ static const char * const ts_symbol_names[] = { [anon_sym_XXX] = "XXX", [sym_fixme] = "fixme", [anon_sym_PIPE] = "|", - [anon_sym_BQUOTE] = "`", - [sym__verbatim_content] = "content", [sym_language] = "language", [sym__whitespace] = "_whitespace", [sym__whitespace1] = "_whitespace1", @@ -227,6 +226,11 @@ static const char * const ts_symbol_names[] = { [anon_sym_DQUOTE] = "\"", [aux_sym_value_token1] = "value_token1", [aux_sym_value_token2] = "value_token2", + [sym__ignored] = "_ignored", + [sym__verbatim_begin] = "raw_inline_marker_begin", + [sym__verbatim_end] = "raw_inline_marker_end", + [sym__verbatim_content] = "content", + [sym__error] = "_error", [sym_inline] = "inline", [sym__inline] = "_inline", [sym__element] = "_element", @@ -272,8 +276,6 @@ static const char * const ts_symbol_names[] = { [sym_todo] = "todo", [sym_note] = "note", [sym__symbol_fallback] = "_symbol_fallback", - [sym__verbatim_begin] = "raw_inline_marker_begin", - [sym__verbatim_end] = "raw_inline_marker_end", [aux_sym__text] = "_text", [sym_class_name] = "class", [sym_class] = "class", @@ -351,8 +353,6 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_XXX] = anon_sym_XXX, [sym_fixme] = sym_fixme, [anon_sym_PIPE] = anon_sym_PIPE, - [anon_sym_BQUOTE] = anon_sym_BQUOTE, - [sym__verbatim_content] = sym__verbatim_content, [sym_language] = sym_language, [sym__whitespace] = sym__whitespace, [sym__whitespace1] = sym__whitespace1, @@ -364,6 +364,11 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_DQUOTE] = anon_sym_DQUOTE, [aux_sym_value_token1] = aux_sym_value_token1, [aux_sym_value_token2] = aux_sym_value_token2, + [sym__ignored] = sym__ignored, + [sym__verbatim_begin] = sym__verbatim_begin, + [sym__verbatim_end] = sym__verbatim_end, + [sym__verbatim_content] = sym__verbatim_content, + [sym__error] = sym__error, [sym_inline] = sym_inline, [sym__inline] = sym__inline, [sym__element] = sym__element, @@ -409,8 +414,6 @@ static const TSSymbol ts_symbol_map[] = { [sym_todo] = sym_todo, [sym_note] = sym_note, [sym__symbol_fallback] = sym__symbol_fallback, - [sym__verbatim_begin] = sym__verbatim_begin, - [sym__verbatim_end] = sym__verbatim_end, [aux_sym__text] = aux_sym__text, [sym_class_name] = sym_class_name, [sym_class] = sym_class, @@ -650,14 +653,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_BQUOTE] = { - .visible = true, - .named = false, - }, - [sym__verbatim_content] = { - .visible = true, - .named = true, - }, [sym_language] = { .visible = true, .named = true, @@ -702,6 +697,26 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [sym__ignored] = { + .visible = false, + .named = true, + }, + [sym__verbatim_begin] = { + .visible = true, + .named = true, + }, + [sym__verbatim_end] = { + .visible = true, + .named = true, + }, + [sym__verbatim_content] = { + .visible = true, + .named = true, + }, + [sym__error] = { + .visible = false, + .named = true, + }, [sym_inline] = { .visible = true, .named = true, @@ -882,14 +897,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, - [sym__verbatim_begin] = { - .visible = true, - .named = true, - }, - [sym__verbatim_end] = { - .visible = true, - .named = true, - }, [aux_sym__text] = { .visible = false, .named = false, @@ -975,21 +982,21 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { [0] = {0}, [1] = { - [0] = sym_comment, + [0] = alias_sym_verbatim_marker_begin, + [2] = alias_sym_verbatim_marker_end, }, [2] = { - [1] = sym__verbatim_content, + [0] = sym_comment, }, [3] = { - [0] = alias_sym_footnote_marker_begin, - [2] = alias_sym_footnote_marker_end, + [1] = sym__verbatim_content, }, [4] = { - [1] = alias_sym_image_description, + [0] = alias_sym_footnote_marker_begin, + [2] = alias_sym_footnote_marker_end, }, [5] = { - [0] = alias_sym_verbatim_marker_begin, - [2] = alias_sym_verbatim_marker_end, + [1] = alias_sym_image_description, }, [6] = { [1] = alias_sym_args, @@ -1016,14 +1023,6 @@ static const uint16_t ts_non_terminal_alias_map[] = { sym__comment_with_newline, 2, sym__comment_with_newline, sym_comment, - sym__verbatim_begin, 3, - sym__verbatim_begin, - alias_sym_math_marker_begin, - alias_sym_verbatim_marker_begin, - sym__verbatim_end, 3, - sym__verbatim_end, - alias_sym_math_marker_end, - alias_sym_verbatim_marker_end, aux_sym_inline_attribute_repeat1, 2, aux_sym_inline_attribute_repeat1, alias_sym_args, @@ -1049,213 +1048,213 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [12] = 12, [13] = 13, [14] = 14, - [15] = 11, - [16] = 11, - [17] = 12, - [18] = 14, - [19] = 12, - [20] = 11, + [15] = 12, + [16] = 16, + [17] = 11, + [18] = 18, + [19] = 13, + [20] = 13, [21] = 14, - [22] = 13, - [23] = 23, - [24] = 24, + [22] = 12, + [23] = 16, + [24] = 11, [25] = 2, - [26] = 12, - [27] = 14, - [28] = 13, - [29] = 23, - [30] = 13, - [31] = 24, - [32] = 24, - [33] = 23, - [34] = 13, - [35] = 11, - [36] = 12, - [37] = 12, - [38] = 11, - [39] = 14, - [40] = 13, - [41] = 23, - [42] = 13, - [43] = 24, - [44] = 24, - [45] = 23, - [46] = 13, - [47] = 23, - [48] = 24, + [26] = 18, + [27] = 11, + [28] = 16, + [29] = 11, + [30] = 12, + [31] = 14, + [32] = 13, + [33] = 14, + [34] = 12, + [35] = 16, + [36] = 11, + [37] = 13, + [38] = 18, + [39] = 18, + [40] = 14, + [41] = 18, + [42] = 18, + [43] = 11, + [44] = 16, + [45] = 16, + [46] = 12, + [47] = 12, + [48] = 13, [49] = 14, - [50] = 11, - [51] = 24, - [52] = 24, - [53] = 23, - [54] = 12, - [55] = 13, + [50] = 18, + [51] = 16, + [52] = 13, + [53] = 14, + [54] = 11, + [55] = 16, [56] = 12, [57] = 14, - [58] = 11, - [59] = 14, - [60] = 13, - [61] = 11, - [62] = 12, - [63] = 23, - [64] = 24, - [65] = 23, + [58] = 13, + [59] = 12, + [60] = 18, + [61] = 16, + [62] = 11, + [63] = 11, + [64] = 16, + [65] = 12, [66] = 14, - [67] = 23, - [68] = 12, - [69] = 24, - [70] = 11, + [67] = 13, + [68] = 13, + [69] = 18, + [70] = 18, [71] = 14, [72] = 72, [73] = 73, [74] = 74, - [75] = 75, - [76] = 72, - [77] = 74, - [78] = 75, + [75] = 72, + [76] = 74, + [77] = 73, + [78] = 72, [79] = 73, [80] = 74, - [81] = 74, + [81] = 81, [82] = 82, [83] = 72, - [84] = 73, - [85] = 74, - [86] = 75, - [87] = 82, - [88] = 75, + [84] = 74, + [85] = 73, + [86] = 81, + [87] = 73, + [88] = 74, [89] = 82, - [90] = 74, - [91] = 74, + [90] = 72, + [91] = 81, [92] = 82, [93] = 72, - [94] = 73, - [95] = 75, - [96] = 73, - [97] = 82, - [98] = 73, - [99] = 74, - [100] = 72, - [101] = 73, - [102] = 75, - [103] = 82, - [104] = 72, - [105] = 74, - [106] = 75, - [107] = 73, - [108] = 82, - [109] = 73, + [94] = 81, + [95] = 82, + [96] = 72, + [97] = 81, + [98] = 74, + [99] = 82, + [100] = 73, + [101] = 81, + [102] = 74, + [103] = 73, + [104] = 82, + [105] = 82, + [106] = 81, + [107] = 72, + [108] = 81, + [109] = 82, [110] = 72, - [111] = 74, - [112] = 73, - [113] = 75, + [111] = 81, + [112] = 82, + [113] = 74, [114] = 72, - [115] = 82, - [116] = 82, - [117] = 72, - [118] = 75, - [119] = 82, - [120] = 75, - [121] = 72, + [115] = 81, + [116] = 73, + [117] = 82, + [118] = 74, + [119] = 73, + [120] = 73, + [121] = 74, [122] = 122, [123] = 123, [124] = 124, - [125] = 124, + [125] = 123, [126] = 123, - [127] = 127, - [128] = 127, - [129] = 127, + [127] = 122, + [128] = 128, + [129] = 122, [130] = 123, - [131] = 127, - [132] = 122, - [133] = 133, - [134] = 123, - [135] = 122, - [136] = 133, - [137] = 133, - [138] = 124, - [139] = 123, - [140] = 124, - [141] = 124, - [142] = 133, - [143] = 122, - [144] = 122, - [145] = 133, - [146] = 124, - [147] = 127, - [148] = 127, - [149] = 127, + [131] = 128, + [132] = 132, + [133] = 124, + [134] = 132, + [135] = 124, + [136] = 132, + [137] = 124, + [138] = 132, + [139] = 124, + [140] = 122, + [141] = 128, + [142] = 128, + [143] = 128, + [144] = 123, + [145] = 128, + [146] = 132, + [147] = 124, + [148] = 132, + [149] = 132, [150] = 123, - [151] = 127, - [152] = 124, - [153] = 123, - [154] = 127, - [155] = 123, - [156] = 122, - [157] = 133, - [158] = 122, - [159] = 123, + [151] = 122, + [152] = 128, + [153] = 124, + [154] = 123, + [155] = 132, + [156] = 132, + [157] = 122, + [158] = 128, + [159] = 124, [160] = 122, - [161] = 133, - [162] = 122, - [163] = 127, + [161] = 122, + [162] = 128, + [163] = 124, [164] = 124, - [165] = 133, + [165] = 123, [166] = 122, - [167] = 123, - [168] = 124, - [169] = 133, - [170] = 133, - [171] = 124, + [167] = 122, + [168] = 123, + [169] = 123, + [170] = 128, + [171] = 132, [172] = 172, [173] = 173, [174] = 174, [175] = 174, [176] = 172, - [177] = 177, - [178] = 173, - [179] = 172, - [180] = 180, - [181] = 180, - [182] = 173, - [183] = 177, - [184] = 174, - [185] = 177, - [186] = 180, - [187] = 180, + [177] = 172, + [178] = 174, + [179] = 174, + [180] = 173, + [181] = 173, + [182] = 174, + [183] = 174, + [184] = 172, + [185] = 173, + [186] = 172, + [187] = 172, [188] = 172, - [189] = 173, - [190] = 177, - [191] = 174, - [192] = 172, - [193] = 177, - [194] = 177, - [195] = 172, - [196] = 174, - [197] = 173, - [198] = 172, - [199] = 172, + [189] = 174, + [190] = 173, + [191] = 173, + [192] = 173, + [193] = 173, + [194] = 172, + [195] = 173, + [196] = 172, + [197] = 174, + [198] = 174, + [199] = 173, [200] = 174, - [201] = 173, - [202] = 172, - [203] = 180, - [204] = 172, - [205] = 180, - [206] = 173, - [207] = 173, - [208] = 174, - [209] = 180, - [210] = 174, - [211] = 180, - [212] = 180, - [213] = 180, - [214] = 177, - [215] = 177, - [216] = 177, - [217] = 174, - [218] = 174, - [219] = 177, - [220] = 173, - [221] = 173, + [201] = 172, + [202] = 202, + [203] = 203, + [204] = 204, + [205] = 203, + [206] = 202, + [207] = 207, + [208] = 208, + [209] = 209, + [210] = 210, + [211] = 211, + [212] = 212, + [213] = 213, + [214] = 214, + [215] = 215, + [216] = 216, + [217] = 217, + [218] = 218, + [219] = 219, + [220] = 220, + [221] = 221, [222] = 222, [223] = 223, [224] = 224, @@ -1269,684 +1268,663 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [232] = 232, [233] = 233, [234] = 234, - [235] = 235, - [236] = 236, - [237] = 237, + [235] = 207, + [236] = 215, + [237] = 228, [238] = 238, - [239] = 239, - [240] = 231, - [241] = 241, - [242] = 242, - [243] = 243, - [244] = 244, - [245] = 241, - [246] = 246, - [247] = 222, - [248] = 248, - [249] = 249, - [250] = 250, - [251] = 223, - [252] = 252, - [253] = 242, - [254] = 254, - [255] = 255, - [256] = 256, - [257] = 257, - [258] = 224, - [259] = 225, - [260] = 226, - [261] = 227, - [262] = 228, - [263] = 229, - [264] = 230, - [265] = 255, - [266] = 256, - [267] = 243, - [268] = 232, - [269] = 233, - [270] = 234, - [271] = 235, - [272] = 236, - [273] = 237, - [274] = 238, - [275] = 241, - [276] = 239, - [277] = 254, - [278] = 231, - [279] = 279, - [280] = 252, - [281] = 223, - [282] = 250, - [283] = 249, - [284] = 248, - [285] = 222, - [286] = 246, - [287] = 287, - [288] = 244, - [289] = 243, - [290] = 241, - [291] = 242, - [292] = 243, - [293] = 242, - [294] = 241, - [295] = 244, - [296] = 244, - [297] = 246, - [298] = 222, - [299] = 248, - [300] = 249, - [301] = 250, - [302] = 223, - [303] = 252, - [304] = 231, - [305] = 239, - [306] = 239, - [307] = 254, - [308] = 255, - [309] = 256, - [310] = 257, + [239] = 204, + [240] = 203, + [241] = 202, + [242] = 238, + [243] = 208, + [244] = 209, + [245] = 210, + [246] = 211, + [247] = 212, + [248] = 213, + [249] = 214, + [250] = 204, + [251] = 216, + [252] = 217, + [253] = 218, + [254] = 219, + [255] = 220, + [256] = 221, + [257] = 222, + [258] = 223, + [259] = 224, + [260] = 225, + [261] = 226, + [262] = 227, + [263] = 203, + [264] = 229, + [265] = 230, + [266] = 231, + [267] = 232, + [268] = 233, + [269] = 234, + [270] = 204, + [271] = 207, + [272] = 228, + [273] = 215, + [274] = 215, + [275] = 207, + [276] = 234, + [277] = 233, + [278] = 232, + [279] = 231, + [280] = 230, + [281] = 229, + [282] = 282, + [283] = 227, + [284] = 228, + [285] = 238, + [286] = 204, + [287] = 203, + [288] = 226, + [289] = 225, + [290] = 202, + [291] = 291, + [292] = 208, + [293] = 209, + [294] = 210, + [295] = 211, + [296] = 212, + [297] = 213, + [298] = 214, + [299] = 224, + [300] = 223, + [301] = 222, + [302] = 202, + [303] = 216, + [304] = 217, + [305] = 218, + [306] = 219, + [307] = 220, + [308] = 221, + [309] = 222, + [310] = 223, [311] = 224, [312] = 225, [313] = 226, [314] = 227, - [315] = 228, + [315] = 315, [316] = 229, [317] = 230, - [318] = 238, - [319] = 237, - [320] = 320, - [321] = 232, - [322] = 233, - [323] = 234, - [324] = 235, - [325] = 236, - [326] = 237, - [327] = 238, - [328] = 236, - [329] = 239, - [330] = 235, - [331] = 231, - [332] = 234, - [333] = 233, - [334] = 232, - [335] = 180, - [336] = 230, - [337] = 229, - [338] = 228, - [339] = 227, - [340] = 226, - [341] = 225, - [342] = 224, - [343] = 241, - [344] = 242, - [345] = 243, - [346] = 257, - [347] = 256, - [348] = 244, - [349] = 349, - [350] = 246, - [351] = 222, - [352] = 248, - [353] = 249, - [354] = 250, - [355] = 223, - [356] = 252, - [357] = 255, - [358] = 254, - [359] = 320, - [360] = 254, - [361] = 255, - [362] = 256, - [363] = 257, - [364] = 224, - [365] = 225, - [366] = 226, - [367] = 227, - [368] = 228, - [369] = 229, - [370] = 230, - [371] = 349, - [372] = 252, - [373] = 320, - [374] = 232, - [375] = 233, - [376] = 234, - [377] = 235, - [378] = 236, - [379] = 237, - [380] = 238, - [381] = 223, - [382] = 239, - [383] = 250, - [384] = 231, - [385] = 249, - [386] = 248, - [387] = 222, - [388] = 246, - [389] = 180, - [390] = 244, - [391] = 243, - [392] = 242, - [393] = 349, - [394] = 231, - [395] = 239, - [396] = 241, - [397] = 242, - [398] = 243, - [399] = 320, - [400] = 238, - [401] = 244, - [402] = 180, - [403] = 246, - [404] = 222, - [405] = 248, - [406] = 249, - [407] = 250, - [408] = 223, - [409] = 252, - [410] = 349, - [411] = 320, - [412] = 180, - [413] = 254, - [414] = 255, - [415] = 256, - [416] = 257, - [417] = 224, - [418] = 225, - [419] = 226, - [420] = 227, - [421] = 228, - [422] = 229, - [423] = 230, - [424] = 349, - [425] = 320, - [426] = 180, - [427] = 232, - [428] = 233, - [429] = 234, - [430] = 235, - [431] = 236, - [432] = 237, - [433] = 238, - [434] = 349, - [435] = 239, - [436] = 320, - [437] = 231, - [438] = 180, - [439] = 349, - [440] = 320, - [441] = 180, - [442] = 237, - [443] = 349, - [444] = 236, - [445] = 235, - [446] = 234, - [447] = 233, - [448] = 232, - [449] = 241, - [450] = 242, - [451] = 243, - [452] = 320, - [453] = 180, - [454] = 244, - [455] = 349, - [456] = 246, - [457] = 180, - [458] = 248, - [459] = 249, - [460] = 250, - [461] = 223, - [462] = 252, - [463] = 238, - [464] = 237, - [465] = 236, - [466] = 254, - [467] = 255, - [468] = 256, - [469] = 257, - [470] = 224, - [471] = 225, - [472] = 226, - [473] = 227, - [474] = 228, - [475] = 229, - [476] = 230, - [477] = 180, - [478] = 235, - [479] = 234, - [480] = 232, - [481] = 233, - [482] = 234, - [483] = 235, - [484] = 236, - [485] = 237, - [486] = 238, - [487] = 233, - [488] = 239, - [489] = 232, - [490] = 231, - [491] = 230, - [492] = 229, - [493] = 228, - [494] = 227, - [495] = 320, - [496] = 246, - [497] = 230, - [498] = 229, - [499] = 226, - [500] = 225, - [501] = 224, - [502] = 241, - [503] = 242, - [504] = 243, - [505] = 257, - [506] = 256, - [507] = 244, - [508] = 228, - [509] = 246, - [510] = 222, - [511] = 248, - [512] = 249, - [513] = 250, - [514] = 223, - [515] = 252, - [516] = 255, - [517] = 254, - [518] = 227, - [519] = 254, - [520] = 255, - [521] = 256, - [522] = 257, - [523] = 224, - [524] = 225, - [525] = 226, - [526] = 227, - [527] = 228, - [528] = 229, - [529] = 230, - [530] = 226, - [531] = 225, - [532] = 224, - [533] = 232, - [534] = 233, - [535] = 234, - [536] = 235, - [537] = 236, - [538] = 237, - [539] = 238, - [540] = 257, - [541] = 239, - [542] = 256, - [543] = 231, - [544] = 255, - [545] = 254, - [546] = 349, - [547] = 252, - [548] = 548, - [549] = 257, - [550] = 252, - [551] = 223, - [552] = 250, - [553] = 249, - [554] = 248, - [555] = 241, - [556] = 242, - [557] = 243, - [558] = 250, - [559] = 222, - [560] = 244, - [561] = 249, - [562] = 246, - [563] = 222, - [564] = 248, - [565] = 320, - [566] = 320, - [567] = 567, - [568] = 349, - [569] = 349, - [570] = 320, - [571] = 567, - [572] = 320, - [573] = 320, - [574] = 349, - [575] = 567, - [576] = 320, - [577] = 567, - [578] = 567, - [579] = 349, - [580] = 567, - [581] = 349, - [582] = 349, - [583] = 567, - [584] = 349, - [585] = 320, - [586] = 567, - [587] = 320, - [588] = 320, - [589] = 320, - [590] = 349, - [591] = 567, - [592] = 567, - [593] = 349, - [594] = 349, - [595] = 595, - [596] = 595, - [597] = 597, - [598] = 595, - [599] = 597, - [600] = 595, - [601] = 597, - [602] = 602, - [603] = 597, - [604] = 597, - [605] = 595, - [606] = 595, - [607] = 595, - [608] = 597, - [609] = 597, - [610] = 597, - [611] = 595, - [612] = 597, - [613] = 595, - [614] = 597, - [615] = 595, - [616] = 595, - [617] = 597, - [618] = 597, - [619] = 597, - [620] = 595, - [621] = 595, - [622] = 595, - [623] = 595, - [624] = 597, - [625] = 597, - [626] = 595, - [627] = 597, - [628] = 595, - [629] = 597, - [630] = 595, - [631] = 597, - [632] = 595, - [633] = 597, - [634] = 595, - [635] = 597, - [636] = 636, + [318] = 231, + [319] = 232, + [320] = 233, + [321] = 234, + [322] = 221, + [323] = 207, + [324] = 220, + [325] = 215, + [326] = 219, + [327] = 218, + [328] = 217, + [329] = 216, + [330] = 330, + [331] = 214, + [332] = 213, + [333] = 212, + [334] = 211, + [335] = 210, + [336] = 228, + [337] = 238, + [338] = 204, + [339] = 203, + [340] = 209, + [341] = 208, + [342] = 202, + [343] = 315, + [344] = 208, + [345] = 209, + [346] = 210, + [347] = 211, + [348] = 212, + [349] = 213, + [350] = 214, + [351] = 330, + [352] = 202, + [353] = 203, + [354] = 315, + [355] = 216, + [356] = 217, + [357] = 218, + [358] = 219, + [359] = 220, + [360] = 221, + [361] = 222, + [362] = 223, + [363] = 224, + [364] = 225, + [365] = 226, + [366] = 227, + [367] = 330, + [368] = 229, + [369] = 230, + [370] = 231, + [371] = 232, + [372] = 233, + [373] = 234, + [374] = 228, + [375] = 207, + [376] = 238, + [377] = 215, + [378] = 315, + [379] = 215, + [380] = 207, + [381] = 330, + [382] = 315, + [383] = 330, + [384] = 315, + [385] = 234, + [386] = 330, + [387] = 315, + [388] = 228, + [389] = 238, + [390] = 204, + [391] = 203, + [392] = 330, + [393] = 315, + [394] = 202, + [395] = 330, + [396] = 208, + [397] = 209, + [398] = 210, + [399] = 211, + [400] = 212, + [401] = 213, + [402] = 214, + [403] = 315, + [404] = 330, + [405] = 234, + [406] = 233, + [407] = 216, + [408] = 217, + [409] = 218, + [410] = 219, + [411] = 220, + [412] = 221, + [413] = 222, + [414] = 223, + [415] = 224, + [416] = 225, + [417] = 226, + [418] = 227, + [419] = 232, + [420] = 229, + [421] = 230, + [422] = 231, + [423] = 232, + [424] = 233, + [425] = 234, + [426] = 233, + [427] = 207, + [428] = 232, + [429] = 215, + [430] = 231, + [431] = 230, + [432] = 229, + [433] = 231, + [434] = 230, + [435] = 229, + [436] = 315, + [437] = 227, + [438] = 226, + [439] = 227, + [440] = 228, + [441] = 238, + [442] = 204, + [443] = 203, + [444] = 225, + [445] = 224, + [446] = 223, + [447] = 222, + [448] = 208, + [449] = 209, + [450] = 210, + [451] = 211, + [452] = 212, + [453] = 213, + [454] = 214, + [455] = 226, + [456] = 225, + [457] = 224, + [458] = 221, + [459] = 216, + [460] = 217, + [461] = 218, + [462] = 219, + [463] = 220, + [464] = 221, + [465] = 222, + [466] = 223, + [467] = 224, + [468] = 225, + [469] = 226, + [470] = 227, + [471] = 220, + [472] = 229, + [473] = 230, + [474] = 231, + [475] = 232, + [476] = 233, + [477] = 234, + [478] = 223, + [479] = 207, + [480] = 219, + [481] = 215, + [482] = 218, + [483] = 217, + [484] = 216, + [485] = 222, + [486] = 221, + [487] = 220, + [488] = 219, + [489] = 218, + [490] = 217, + [491] = 216, + [492] = 228, + [493] = 238, + [494] = 204, + [495] = 203, + [496] = 330, + [497] = 214, + [498] = 202, + [499] = 213, + [500] = 208, + [501] = 209, + [502] = 210, + [503] = 211, + [504] = 212, + [505] = 213, + [506] = 214, + [507] = 212, + [508] = 211, + [509] = 210, + [510] = 209, + [511] = 216, + [512] = 217, + [513] = 218, + [514] = 219, + [515] = 220, + [516] = 221, + [517] = 222, + [518] = 223, + [519] = 224, + [520] = 225, + [521] = 226, + [522] = 227, + [523] = 208, + [524] = 229, + [525] = 230, + [526] = 231, + [527] = 232, + [528] = 233, + [529] = 234, + [530] = 202, + [531] = 207, + [532] = 208, + [533] = 215, + [534] = 238, + [535] = 535, + [536] = 214, + [537] = 213, + [538] = 212, + [539] = 211, + [540] = 210, + [541] = 204, + [542] = 209, + [543] = 238, + [544] = 228, + [545] = 315, + [546] = 546, + [547] = 330, + [548] = 315, + [549] = 330, + [550] = 315, + [551] = 546, + [552] = 315, + [553] = 330, + [554] = 330, + [555] = 546, + [556] = 330, + [557] = 546, + [558] = 315, + [559] = 546, + [560] = 546, + [561] = 315, + [562] = 330, + [563] = 315, + [564] = 546, + [565] = 546, + [566] = 330, + [567] = 315, + [568] = 330, + [569] = 546, + [570] = 315, + [571] = 546, + [572] = 330, + [573] = 330, + [574] = 315, + [575] = 575, + [576] = 576, + [577] = 575, + [578] = 578, + [579] = 576, + [580] = 576, + [581] = 576, + [582] = 575, + [583] = 575, + [584] = 576, + [585] = 576, + [586] = 575, + [587] = 575, + [588] = 575, + [589] = 576, + [590] = 575, + [591] = 575, + [592] = 576, + [593] = 576, + [594] = 576, + [595] = 575, + [596] = 576, + [597] = 576, + [598] = 576, + [599] = 576, + [600] = 575, + [601] = 576, + [602] = 575, + [603] = 575, + [604] = 576, + [605] = 576, + [606] = 575, + [607] = 575, + [608] = 576, + [609] = 575, + [610] = 576, + [611] = 575, + [612] = 576, + [613] = 575, + [614] = 575, + [615] = 575, + [616] = 616, + [617] = 617, + [618] = 618, + [619] = 619, + [620] = 620, + [621] = 621, + [622] = 622, + [623] = 623, + [624] = 624, + [625] = 625, + [626] = 626, + [627] = 626, + [628] = 625, + [629] = 629, + [630] = 625, + [631] = 626, + [632] = 629, + [633] = 629, + [634] = 625, + [635] = 629, + [636] = 626, [637] = 637, - [638] = 638, - [639] = 639, - [640] = 640, - [641] = 641, - [642] = 642, - [643] = 643, + [638] = 629, + [639] = 629, + [640] = 625, + [641] = 629, + [642] = 625, + [643] = 626, [644] = 644, - [645] = 645, - [646] = 646, - [647] = 647, - [648] = 646, - [649] = 645, - [650] = 646, - [651] = 647, - [652] = 645, - [653] = 647, - [654] = 654, - [655] = 646, - [656] = 647, - [657] = 646, - [658] = 645, - [659] = 645, - [660] = 647, - [661] = 646, - [662] = 645, - [663] = 646, - [664] = 647, - [665] = 645, - [666] = 647, - [667] = 646, - [668] = 668, - [669] = 647, - [670] = 645, - [671] = 646, - [672] = 647, - [673] = 645, - [674] = 674, - [675] = 645, - [676] = 647, - [677] = 646, - [678] = 678, - [679] = 679, - [680] = 680, - [681] = 680, - [682] = 679, - [683] = 680, - [684] = 679, - [685] = 679, - [686] = 680, - [687] = 679, - [688] = 680, - [689] = 680, - [690] = 679, - [691] = 680, - [692] = 680, - [693] = 679, - [694] = 679, - [695] = 679, - [696] = 696, - [697] = 680, - [698] = 679, - [699] = 680, - [700] = 700, - [701] = 701, - [702] = 702, - [703] = 702, - [704] = 704, - [705] = 705, - [706] = 706, - [707] = 706, - [708] = 706, - [709] = 702, - [710] = 704, - [711] = 702, - [712] = 706, - [713] = 706, - [714] = 702, - [715] = 704, - [716] = 705, - [717] = 704, + [645] = 625, + [646] = 626, + [647] = 626, + [648] = 626, + [649] = 626, + [650] = 629, + [651] = 626, + [652] = 625, + [653] = 629, + [654] = 625, + [655] = 625, + [656] = 629, + [657] = 657, + [658] = 658, + [659] = 659, + [660] = 660, + [661] = 659, + [662] = 662, + [663] = 663, + [664] = 659, + [665] = 663, + [666] = 663, + [667] = 663, + [668] = 659, + [669] = 663, + [670] = 670, + [671] = 663, + [672] = 663, + [673] = 659, + [674] = 659, + [675] = 663, + [676] = 659, + [677] = 663, + [678] = 663, + [679] = 659, + [680] = 659, + [681] = 659, + [682] = 682, + [683] = 682, + [684] = 684, + [685] = 685, + [686] = 684, + [687] = 682, + [688] = 684, + [689] = 684, + [690] = 690, + [691] = 684, + [692] = 684, + [693] = 684, + [694] = 684, + [695] = 690, + [696] = 682, + [697] = 690, + [698] = 684, + [699] = 682, + [700] = 684, + [701] = 690, + [702] = 682, + [703] = 690, + [704] = 690, + [705] = 690, + [706] = 690, + [707] = 682, + [708] = 682, + [709] = 682, + [710] = 690, + [711] = 682, + [712] = 690, + [713] = 713, + [714] = 714, + [715] = 715, + [716] = 716, + [717] = 717, [718] = 718, - [719] = 718, - [720] = 718, - [721] = 704, - [722] = 718, - [723] = 705, - [724] = 705, - [725] = 705, - [726] = 718, - [727] = 705, - [728] = 706, - [729] = 704, - [730] = 702, - [731] = 706, - [732] = 732, - [733] = 718, - [734] = 702, - [735] = 704, - [736] = 702, - [737] = 704, - [738] = 702, - [739] = 706, - [740] = 706, - [741] = 718, - [742] = 706, - [743] = 705, - [744] = 705, - [745] = 718, - [746] = 702, - [747] = 704, - [748] = 705, - [749] = 704, - [750] = 718, - [751] = 718, - [752] = 705, - [753] = 753, - [754] = 754, - [755] = 755, - [756] = 753, - [757] = 757, - [758] = 758, - [759] = 759, - [760] = 760, - [761] = 754, - [762] = 754, - [763] = 760, - [764] = 764, - [765] = 765, + [719] = 719, + [720] = 720, + [721] = 721, + [722] = 722, + [723] = 722, + [724] = 720, + [725] = 719, + [726] = 726, + [727] = 721, + [728] = 728, + [729] = 718, + [730] = 717, + [731] = 716, + [732] = 715, + [733] = 714, + [734] = 713, + [735] = 715, + [736] = 716, + [737] = 717, + [738] = 718, + [739] = 713, + [740] = 714, + [741] = 721, + [742] = 728, + [743] = 722, + [744] = 720, + [745] = 719, + [746] = 726, + [747] = 728, + [748] = 726, + [749] = 719, + [750] = 714, + [751] = 713, + [752] = 715, + [753] = 716, + [754] = 717, + [755] = 718, + [756] = 720, + [757] = 722, + [758] = 721, + [759] = 721, + [760] = 722, + [761] = 720, + [762] = 719, + [763] = 726, + [764] = 728, + [765] = 718, [766] = 766, - [767] = 755, - [768] = 753, - [769] = 757, - [770] = 758, - [771] = 759, - [772] = 759, - [773] = 754, - [774] = 760, - [775] = 764, - [776] = 765, - [777] = 766, - [778] = 758, - [779] = 757, - [780] = 755, - [781] = 753, - [782] = 757, - [783] = 758, - [784] = 759, - [785] = 785, - [786] = 755, - [787] = 754, - [788] = 760, - [789] = 764, - [790] = 765, - [791] = 766, - [792] = 766, - [793] = 765, - [794] = 764, - [795] = 755, - [796] = 759, - [797] = 757, - [798] = 758, - [799] = 754, - [800] = 765, - [801] = 759, - [802] = 766, - [803] = 766, - [804] = 765, - [805] = 760, - [806] = 754, - [807] = 764, - [808] = 754, - [809] = 760, - [810] = 764, - [811] = 765, - [812] = 760, - [813] = 754, - [814] = 755, - [815] = 753, - [816] = 759, - [817] = 759, - [818] = 758, - [819] = 758, - [820] = 757, - [821] = 753, - [822] = 755, - [823] = 766, - [824] = 824, - [825] = 825, - [826] = 765, - [827] = 827, - [828] = 828, - [829] = 757, - [830] = 764, - [831] = 760, - [832] = 764, - [833] = 833, - [834] = 834, - [835] = 835, - [836] = 824, - [837] = 753, - [838] = 755, - [839] = 785, - [840] = 828, - [841] = 759, - [842] = 842, - [843] = 834, - [844] = 835, - [845] = 824, - [846] = 757, - [847] = 758, - [848] = 785, - [849] = 828, - [850] = 766, - [851] = 758, - [852] = 834, - [853] = 835, - [854] = 824, - [855] = 765, - [856] = 757, - [857] = 785, - [858] = 828, - [859] = 753, - [860] = 755, - [861] = 834, - [862] = 835, - [863] = 824, - [864] = 764, - [865] = 760, - [866] = 785, - [867] = 828, - [868] = 754, - [869] = 753, - [870] = 834, - [871] = 835, - [872] = 824, - [873] = 759, - [874] = 835, - [875] = 785, - [876] = 828, - [877] = 877, - [878] = 834, - [879] = 834, - [880] = 835, - [881] = 824, - [882] = 758, - [883] = 757, - [884] = 785, - [885] = 828, - [886] = 886, - [887] = 887, - [888] = 834, - [889] = 835, - [890] = 824, - [891] = 753, - [892] = 892, - [893] = 785, - [894] = 828, - [895] = 895, - [896] = 896, - [897] = 834, - [898] = 835, - [899] = 824, - [900] = 755, - [901] = 766, - [902] = 785, - [903] = 828, - [904] = 765, - [905] = 766, - [906] = 834, - [907] = 835, - [908] = 824, - [909] = 764, - [910] = 760, - [911] = 785, - [912] = 828, + [767] = 716, + [768] = 715, + [769] = 714, + [770] = 713, + [771] = 715, + [772] = 716, + [773] = 717, + [774] = 718, + [775] = 713, + [776] = 714, + [777] = 721, + [778] = 728, + [779] = 722, + [780] = 720, + [781] = 719, + [782] = 726, + [783] = 728, + [784] = 726, + [785] = 719, + [786] = 714, + [787] = 715, + [788] = 715, + [789] = 716, + [790] = 717, + [791] = 720, + [792] = 722, + [793] = 721, + [794] = 718, + [795] = 717, + [796] = 716, + [797] = 715, + [798] = 713, + [799] = 714, + [800] = 728, + [801] = 716, + [802] = 713, + [803] = 726, + [804] = 719, + [805] = 720, + [806] = 722, + [807] = 721, + [808] = 718, + [809] = 809, + [810] = 810, + [811] = 811, + [812] = 811, + [813] = 717, + [814] = 814, + [815] = 815, + [816] = 726, + [817] = 728, + [818] = 766, + [819] = 819, + [820] = 811, + [821] = 821, + [822] = 717, + [823] = 814, + [824] = 815, + [825] = 713, + [826] = 714, + [827] = 766, + [828] = 819, + [829] = 811, + [830] = 726, + [831] = 719, + [832] = 814, + [833] = 815, + [834] = 728, + [835] = 720, + [836] = 766, + [837] = 819, + [838] = 811, + [839] = 722, + [840] = 819, + [841] = 814, + [842] = 815, + [843] = 726, + [844] = 716, + [845] = 766, + [846] = 819, + [847] = 811, + [848] = 715, + [849] = 713, + [850] = 814, + [851] = 815, + [852] = 719, + [853] = 714, + [854] = 766, + [855] = 819, + [856] = 811, + [857] = 721, + [858] = 814, + [859] = 814, + [860] = 815, + [861] = 720, + [862] = 815, + [863] = 766, + [864] = 819, + [865] = 811, + [866] = 866, + [867] = 867, + [868] = 814, + [869] = 815, + [870] = 722, + [871] = 721, + [872] = 766, + [873] = 819, + [874] = 811, + [875] = 875, + [876] = 876, + [877] = 814, + [878] = 815, + [879] = 728, + [880] = 718, + [881] = 766, + [882] = 819, + [883] = 811, + [884] = 718, + [885] = 885, + [886] = 814, + [887] = 815, + [888] = 717, + [889] = 889, + [890] = 766, + [891] = 819, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -1955,23 +1933,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { switch (state) { case 0: if (eof) ADVANCE(145); - if (lookahead == '\t') ADVANCE(329); - if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\t') ADVANCE(325); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(133) if (lookahead == ' ') ADVANCE(155); - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(351); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(347); if (lookahead == '$') ADVANCE(297); if (lookahead == '%') ADVANCE(292); if (lookahead == '(') ADVANCE(285); if (lookahead == ')') ADVANCE(288); if (lookahead == '*') ADVANCE(173); - if (lookahead == '+') ADVANCE(342); + if (lookahead == '+') ADVANCE(338); if (lookahead == '-') ADVANCE(256); - if (lookahead == '.') ADVANCE(347); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '.') ADVANCE(343); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); - if (lookahead == '=') ADVANCE(350); + if (lookahead == '=') ADVANCE(346); if (lookahead == '>') ADVANCE(222); if (lookahead == 'F') ADVANCE(263); if (lookahead == 'I') ADVANCE(265); @@ -1984,192 +1962,187 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ']') ADVANCE(283); if (lookahead == '^') ADVANCE(239); if (lookahead == '_') ADVANCE(164); - if (lookahead == '`') ADVANCE(319); if (lookahead == '{') ADVANCE(147); if (lookahead == '|') ADVANCE(317); if (lookahead == '}') ADVANCE(151); if (lookahead == '~') ADVANCE(247); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'z')) ADVANCE(275); + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(331); + lookahead != '\f') ADVANCE(327); END_STATE(); case 1: - if (lookahead == '\t') ADVANCE(329); - if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\t') ADVANCE(325); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(25) - if (lookahead == ' ') ADVANCE(327); - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + if (lookahead == ' ') ADVANCE(323); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(332); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(173); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(335); - if (lookahead == 'I') ADVANCE(337); - if (lookahead == 'N') ADVANCE(338); - if (lookahead == 'T') ADVANCE(339); - if (lookahead == 'W') ADVANCE(336); - if (lookahead == 'X') ADVANCE(340); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); if (lookahead == '[') ADVANCE(281); if (lookahead == '\\') ADVANCE(178); if (lookahead == ']') ADVANCE(254); if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(163); - if (lookahead == '`') ADVANCE(319); + if (lookahead == '_') ADVANCE(162); if (lookahead == '{') ADVANCE(149); if (lookahead == '|') ADVANCE(317); if (lookahead == '~') ADVANCE(246); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(331); + lookahead != '\f') ADVANCE(327); END_STATE(); case 2: - if (lookahead == '\t') ADVANCE(329); - if (lookahead == '\n') ADVANCE(330); - if (lookahead == '\r') SKIP(38) - if (lookahead == ' ') ADVANCE(327); - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + if (lookahead == '\t') ADVANCE(325); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(30) + if (lookahead == ' ') ADVANCE(324); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); + if (lookahead == '\'') ADVANCE(340); if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(332); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(335); - if (lookahead == 'I') ADVANCE(337); - if (lookahead == 'N') ADVANCE(338); - if (lookahead == 'T') ADVANCE(339); - if (lookahead == 'W') ADVANCE(336); - if (lookahead == 'X') ADVANCE(340); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); if (lookahead == '[') ADVANCE(281); if (lookahead == '\\') ADVANCE(178); if (lookahead == '^') ADVANCE(238); if (lookahead == '_') ADVANCE(163); - if (lookahead == '`') ADVANCE(319); if (lookahead == '{') ADVANCE(290); if (lookahead == '|') ADVANCE(317); if (lookahead == '~') ADVANCE(246); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(331); + lookahead != '\f') ADVANCE(327); END_STATE(); case 3: - if (lookahead == '\t') ADVANCE(329); - if (lookahead == '\n') ADVANCE(330); - if (lookahead == '\r') SKIP(38) - if (lookahead == ' ') ADVANCE(327); - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + if (lookahead == '\t') ADVANCE(325); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(30) + if (lookahead == ' ') ADVANCE(324); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); + if (lookahead == '\'') ADVANCE(340); if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(332); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(335); - if (lookahead == 'I') ADVANCE(337); - if (lookahead == 'N') ADVANCE(338); - if (lookahead == 'T') ADVANCE(339); - if (lookahead == 'W') ADVANCE(336); - if (lookahead == 'X') ADVANCE(340); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); if (lookahead == '[') ADVANCE(281); if (lookahead == '\\') ADVANCE(178); if (lookahead == '^') ADVANCE(238); if (lookahead == '_') ADVANCE(163); - if (lookahead == '`') ADVANCE(319); if (lookahead == '{') ADVANCE(149); if (lookahead == '|') ADVANCE(317); if (lookahead == '~') ADVANCE(246); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(331); + lookahead != '\f') ADVANCE(327); END_STATE(); case 4: - if (lookahead == '\t') ADVANCE(329); - if (lookahead == '\n') ADVANCE(330); - if (lookahead == '\r') SKIP(38) - if (lookahead == ' ') ADVANCE(327); - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + if (lookahead == '\t') ADVANCE(325); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(30) + if (lookahead == ' ') ADVANCE(324); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); + if (lookahead == '\'') ADVANCE(340); if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(332); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(335); - if (lookahead == 'I') ADVANCE(337); - if (lookahead == 'N') ADVANCE(338); - if (lookahead == 'T') ADVANCE(339); - if (lookahead == 'W') ADVANCE(336); - if (lookahead == 'X') ADVANCE(340); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); if (lookahead == '[') ADVANCE(281); if (lookahead == '\\') ADVANCE(178); if (lookahead == '^') ADVANCE(238); if (lookahead == '_') ADVANCE(163); - if (lookahead == '`') ADVANCE(319); if (lookahead == '{') ADVANCE(148); if (lookahead == '|') ADVANCE(317); if (lookahead == '~') ADVANCE(246); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(331); + lookahead != '\f') ADVANCE(327); END_STATE(); case 5: - if (lookahead == '\t') ADVANCE(329); - if (lookahead == '\n') ADVANCE(330); - if (lookahead == '\r') SKIP(43) + if (lookahead == '\t') ADVANCE(325); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(45) if (lookahead == ' ') ADVANCE(161); - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); + if (lookahead == '\'') ADVANCE(340); if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(332); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); - if (lookahead == '=') ADVANCE(343); - if (lookahead == 'F') ADVANCE(335); - if (lookahead == 'I') ADVANCE(337); - if (lookahead == 'N') ADVANCE(338); - if (lookahead == 'T') ADVANCE(339); - if (lookahead == 'W') ADVANCE(336); - if (lookahead == 'X') ADVANCE(340); + if (lookahead == '=') ADVANCE(339); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); if (lookahead == '[') ADVANCE(281); if (lookahead == '\\') ADVANCE(178); if (lookahead == '^') ADVANCE(238); if (lookahead == '_') ADVANCE(162); - if (lookahead == '`') ADVANCE(319); if (lookahead == '{') ADVANCE(149); if (lookahead == '|') ADVANCE(317); if (lookahead == '~') ADVANCE(246); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(331); + lookahead != '\f') ADVANCE(327); END_STATE(); case 6: - if (lookahead == '\t') ADVANCE(329); - if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\t') ADVANCE(325); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(50) - if (lookahead == ' ') ADVANCE(328); - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + if (lookahead == ' ') ADVANCE(324); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); - if (lookahead == '*') ADVANCE(173); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); if (lookahead == '-') ADVANCE(257); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); if (lookahead == 'F') ADVANCE(263); if (lookahead == 'I') ADVANCE(265); @@ -2180,8 +2153,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(281); if (lookahead == '\\') ADVANCE(178); if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(166); - if (lookahead == '`') ADVANCE(319); + if (lookahead == '_') ADVANCE(164); if (lookahead == '{') ADVANCE(149); if (lookahead == '|') ADVANCE(317); if (lookahead == '~') ADVANCE(246); @@ -2190,46 +2162,45 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(331); + lookahead != '\f') ADVANCE(327); END_STATE(); case 7: - if (lookahead == '\t') ADVANCE(329); - if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\t') ADVANCE(325); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(53) if (lookahead == ' ') ADVANCE(161); - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); + if (lookahead == '\'') ADVANCE(340); if (lookahead == '*') ADVANCE(172); - if (lookahead == '+') ADVANCE(342); - if (lookahead == '-') ADVANCE(332); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '+') ADVANCE(338); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(335); - if (lookahead == 'I') ADVANCE(337); - if (lookahead == 'N') ADVANCE(338); - if (lookahead == 'T') ADVANCE(339); - if (lookahead == 'W') ADVANCE(336); - if (lookahead == 'X') ADVANCE(340); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); if (lookahead == '[') ADVANCE(281); if (lookahead == '\\') ADVANCE(178); if (lookahead == '^') ADVANCE(238); if (lookahead == '_') ADVANCE(162); - if (lookahead == '`') ADVANCE(319); if (lookahead == '{') ADVANCE(149); if (lookahead == '|') ADVANCE(317); if (lookahead == '~') ADVANCE(246); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(331); + lookahead != '\f') ADVANCE(327); END_STATE(); case 8: - if (lookahead == '\t') ADVANCE(329); - if (lookahead == '\n') ADVANCE(330); - if (lookahead == '\r') SKIP(56) - if (lookahead == ' ') ADVANCE(328); + if (lookahead == '\t') ADVANCE(325); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(58) + if (lookahead == ' ') ADVANCE(323); if (lookahead == '!') ADVANCE(217); if (lookahead == '"') ADVANCE(218); if (lookahead == '$') ADVANCE(298); @@ -2239,7 +2210,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '.') ADVANCE(198); if (lookahead == ':') ADVANCE(199); if (lookahead == '<') ADVANCE(194); - if (lookahead == '>') ADVANCE(331); + if (lookahead == '>') ADVANCE(327); if (lookahead == 'F') ADVANCE(205); if (lookahead == 'I') ADVANCE(207); if (lookahead == 'N') ADVANCE(208); @@ -2250,7 +2221,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\\') ADVANCE(179); if (lookahead == '^') ADVANCE(241); if (lookahead == '_') ADVANCE(167); - if (lookahead == '`') ADVANCE(320); if (lookahead == '{') ADVANCE(150); if (lookahead == '|') ADVANCE(318); if (lookahead == '~') ADVANCE(249); @@ -2259,147 +2229,143 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\f') ADVANCE(221); END_STATE(); case 9: - if (lookahead == '\t') ADVANCE(329); - if (lookahead == '\n') ADVANCE(330); - if (lookahead == '\r') SKIP(66) - if (lookahead == ' ') ADVANCE(328); - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + if (lookahead == '\t') ADVANCE(325); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(70) + if (lookahead == ' ') ADVANCE(324); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); - if (lookahead == '*') ADVANCE(173); - if (lookahead == '-') ADVANCE(332); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(335); - if (lookahead == 'I') ADVANCE(337); - if (lookahead == 'N') ADVANCE(338); - if (lookahead == 'T') ADVANCE(339); - if (lookahead == 'W') ADVANCE(336); - if (lookahead == 'X') ADVANCE(340); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); if (lookahead == '[') ADVANCE(281); if (lookahead == '\\') ADVANCE(178); if (lookahead == ']') ADVANCE(254); if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(162); - if (lookahead == '`') ADVANCE(319); + if (lookahead == '_') ADVANCE(163); if (lookahead == '{') ADVANCE(149); if (lookahead == '|') ADVANCE(317); if (lookahead == '~') ADVANCE(246); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(331); + lookahead != '\f') ADVANCE(327); END_STATE(); case 10: - if (lookahead == '\t') ADVANCE(329); - if (lookahead == '\n') ADVANCE(330); - if (lookahead == '\r') SKIP(73) - if (lookahead == ' ') ADVANCE(328); - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + if (lookahead == '\t') ADVANCE(325); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(71) + if (lookahead == ' ') ADVANCE(323); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); + if (lookahead == '\'') ADVANCE(340); if (lookahead == '*') ADVANCE(173); - if (lookahead == '-') ADVANCE(332); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(335); - if (lookahead == 'I') ADVANCE(337); - if (lookahead == 'N') ADVANCE(338); - if (lookahead == 'T') ADVANCE(339); - if (lookahead == 'W') ADVANCE(336); - if (lookahead == 'X') ADVANCE(340); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); if (lookahead == '[') ADVANCE(281); if (lookahead == '\\') ADVANCE(178); if (lookahead == '^') ADVANCE(238); if (lookahead == '_') ADVANCE(162); - if (lookahead == '`') ADVANCE(319); if (lookahead == '{') ADVANCE(290); if (lookahead == '|') ADVANCE(317); if (lookahead == '~') ADVANCE(246); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(331); + lookahead != '\f') ADVANCE(327); END_STATE(); case 11: - if (lookahead == '\t') ADVANCE(329); - if (lookahead == '\n') ADVANCE(330); - if (lookahead == '\r') SKIP(73) - if (lookahead == ' ') ADVANCE(328); - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + if (lookahead == '\t') ADVANCE(325); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(71) + if (lookahead == ' ') ADVANCE(323); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); + if (lookahead == '\'') ADVANCE(340); if (lookahead == '*') ADVANCE(173); - if (lookahead == '-') ADVANCE(332); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(335); - if (lookahead == 'I') ADVANCE(337); - if (lookahead == 'N') ADVANCE(338); - if (lookahead == 'T') ADVANCE(339); - if (lookahead == 'W') ADVANCE(336); - if (lookahead == 'X') ADVANCE(340); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); if (lookahead == '[') ADVANCE(281); if (lookahead == '\\') ADVANCE(178); if (lookahead == '^') ADVANCE(238); if (lookahead == '_') ADVANCE(162); - if (lookahead == '`') ADVANCE(319); if (lookahead == '{') ADVANCE(149); if (lookahead == '|') ADVANCE(317); if (lookahead == '~') ADVANCE(246); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(331); + lookahead != '\f') ADVANCE(327); END_STATE(); case 12: - if (lookahead == '\t') ADVANCE(329); - if (lookahead == '\n') ADVANCE(330); - if (lookahead == '\r') SKIP(73) - if (lookahead == ' ') ADVANCE(328); - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + if (lookahead == '\t') ADVANCE(325); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(71) + if (lookahead == ' ') ADVANCE(323); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); + if (lookahead == '\'') ADVANCE(340); if (lookahead == '*') ADVANCE(173); - if (lookahead == '-') ADVANCE(332); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(335); - if (lookahead == 'I') ADVANCE(337); - if (lookahead == 'N') ADVANCE(338); - if (lookahead == 'T') ADVANCE(339); - if (lookahead == 'W') ADVANCE(336); - if (lookahead == 'X') ADVANCE(340); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); if (lookahead == '[') ADVANCE(281); if (lookahead == '\\') ADVANCE(178); if (lookahead == '^') ADVANCE(238); if (lookahead == '_') ADVANCE(162); - if (lookahead == '`') ADVANCE(319); if (lookahead == '{') ADVANCE(148); if (lookahead == '|') ADVANCE(317); if (lookahead == '~') ADVANCE(246); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(331); + lookahead != '\f') ADVANCE(327); END_STATE(); case 13: - if (lookahead == '\t') ADVANCE(329); - if (lookahead == '\n') ADVANCE(330); - if (lookahead == '\r') SKIP(76) - if (lookahead == ' ') ADVANCE(327); - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + if (lookahead == '\t') ADVANCE(325); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(78) + if (lookahead == ' ') ADVANCE(323); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); - if (lookahead == '*') ADVANCE(172); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(173); if (lookahead == '-') ADVANCE(257); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); if (lookahead == 'F') ADVANCE(263); if (lookahead == 'I') ADVANCE(265); @@ -2410,8 +2376,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(281); if (lookahead == '\\') ADVANCE(178); if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(164); - if (lookahead == '`') ADVANCE(319); + if (lookahead == '_') ADVANCE(166); if (lookahead == '{') ADVANCE(149); if (lookahead == '|') ADVANCE(317); if (lookahead == '~') ADVANCE(246); @@ -2420,13 +2385,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(331); + lookahead != '\f') ADVANCE(327); END_STATE(); case 14: - if (lookahead == '\t') ADVANCE(329); - if (lookahead == '\n') ADVANCE(330); - if (lookahead == '\r') SKIP(77) - if (lookahead == ' ') ADVANCE(327); + if (lookahead == '\t') ADVANCE(325); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(81) + if (lookahead == ' ') ADVANCE(324); if (lookahead == '!') ADVANCE(217); if (lookahead == '"') ADVANCE(218); if (lookahead == '$') ADVANCE(298); @@ -2436,7 +2401,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '.') ADVANCE(198); if (lookahead == ':') ADVANCE(199); if (lookahead == '<') ADVANCE(194); - if (lookahead == '>') ADVANCE(331); + if (lookahead == '>') ADVANCE(327); if (lookahead == 'F') ADVANCE(205); if (lookahead == 'I') ADVANCE(207); if (lookahead == 'N') ADVANCE(208); @@ -2447,7 +2412,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\\') ADVANCE(179); if (lookahead == '^') ADVANCE(241); if (lookahead == '_') ADVANCE(165); - if (lookahead == '`') ADVANCE(320); if (lookahead == '{') ADVANCE(150); if (lookahead == '|') ADVANCE(318); if (lookahead == '~') ADVANCE(249); @@ -2456,950 +2420,891 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\f') ADVANCE(221); END_STATE(); case 15: - if (lookahead == '\t') ADVANCE(329); - if (lookahead == '\n') ADVANCE(330); - if (lookahead == '\r') SKIP(80) + if (lookahead == '\t') ADVANCE(325); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(84) if (lookahead == ' ') ADVANCE(161); - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); + if (lookahead == '\'') ADVANCE(340); if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(332); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(335); - if (lookahead == 'I') ADVANCE(337); - if (lookahead == 'N') ADVANCE(338); - if (lookahead == 'T') ADVANCE(339); - if (lookahead == 'W') ADVANCE(336); - if (lookahead == 'X') ADVANCE(340); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); if (lookahead == '[') ADVANCE(281); if (lookahead == '\\') ADVANCE(178); if (lookahead == ']') ADVANCE(254); if (lookahead == '^') ADVANCE(238); if (lookahead == '_') ADVANCE(162); - if (lookahead == '`') ADVANCE(319); if (lookahead == '{') ADVANCE(149); if (lookahead == '|') ADVANCE(317); if (lookahead == '~') ADVANCE(246); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(331); + lookahead != '\f') ADVANCE(327); END_STATE(); case 16: - if (lookahead == '\t') ADVANCE(329); - if (lookahead == '\n') ADVANCE(330); - if (lookahead == '\r') SKIP(87) - if (lookahead == ' ') ADVANCE(161); - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + if (lookahead == '\t') ADVANCE(325); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(85) + if (lookahead == ' ') ADVANCE(157); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); + if (lookahead == '\'') ADVANCE(340); if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(333); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(335); - if (lookahead == 'I') ADVANCE(337); - if (lookahead == 'N') ADVANCE(338); - if (lookahead == 'T') ADVANCE(339); - if (lookahead == 'W') ADVANCE(336); - if (lookahead == 'X') ADVANCE(340); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); if (lookahead == '[') ADVANCE(281); if (lookahead == '\\') ADVANCE(178); if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(162); - if (lookahead == '`') ADVANCE(319); + if (lookahead == '_') ADVANCE(163); if (lookahead == '{') ADVANCE(149); if (lookahead == '|') ADVANCE(317); if (lookahead == '~') ADVANCE(246); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(331); + lookahead != '\f') ADVANCE(327); END_STATE(); case 17: - if (lookahead == '\t') ADVANCE(329); - if (lookahead == '\n') ADVANCE(330); - if (lookahead == '\r') SKIP(100) + if (lookahead == '\t') ADVANCE(325); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(96) if (lookahead == ' ') ADVANCE(156); - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(332); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(173); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(335); - if (lookahead == 'I') ADVANCE(337); - if (lookahead == 'N') ADVANCE(338); - if (lookahead == 'T') ADVANCE(339); - if (lookahead == 'W') ADVANCE(336); - if (lookahead == 'X') ADVANCE(340); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); if (lookahead == '[') ADVANCE(281); if (lookahead == '\\') ADVANCE(178); if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(163); - if (lookahead == '`') ADVANCE(319); + if (lookahead == '_') ADVANCE(162); if (lookahead == '{') ADVANCE(149); if (lookahead == '|') ADVANCE(317); if (lookahead == '~') ADVANCE(246); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(331); + lookahead != '\f') ADVANCE(327); END_STATE(); case 18: - if (lookahead == '\t') ADVANCE(329); - if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\t') ADVANCE(325); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(105) if (lookahead == ' ') ADVANCE(161); - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); + if (lookahead == '\'') ADVANCE(340); if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(332); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '-') ADVANCE(329); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(335); - if (lookahead == 'I') ADVANCE(337); - if (lookahead == 'N') ADVANCE(338); - if (lookahead == 'T') ADVANCE(339); - if (lookahead == 'W') ADVANCE(336); - if (lookahead == 'X') ADVANCE(340); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); if (lookahead == '[') ADVANCE(281); if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(239); + if (lookahead == '^') ADVANCE(238); if (lookahead == '_') ADVANCE(162); - if (lookahead == '`') ADVANCE(319); if (lookahead == '{') ADVANCE(149); if (lookahead == '|') ADVANCE(317); if (lookahead == '~') ADVANCE(246); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(331); + lookahead != '\f') ADVANCE(327); END_STATE(); case 19: - if (lookahead == '\t') ADVANCE(329); - if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\t') ADVANCE(325); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(106) if (lookahead == ' ') ADVANCE(161); - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); + if (lookahead == '\'') ADVANCE(340); if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(332); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(335); - if (lookahead == 'I') ADVANCE(337); - if (lookahead == 'N') ADVANCE(338); - if (lookahead == 'T') ADVANCE(339); - if (lookahead == 'W') ADVANCE(336); - if (lookahead == 'X') ADVANCE(340); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); if (lookahead == '[') ADVANCE(281); if (lookahead == '\\') ADVANCE(178); - if (lookahead == ']') ADVANCE(283); if (lookahead == '^') ADVANCE(238); if (lookahead == '_') ADVANCE(162); - if (lookahead == '`') ADVANCE(319); if (lookahead == '{') ADVANCE(149); if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '~') ADVANCE(247); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(331); + lookahead != '\f') ADVANCE(327); END_STATE(); case 20: - if (lookahead == '\t') ADVANCE(329); - if (lookahead == '\n') ADVANCE(330); - if (lookahead == '\r') SKIP(106) + if (lookahead == '\t') ADVANCE(325); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(107) if (lookahead == ' ') ADVANCE(161); - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); + if (lookahead == '\'') ADVANCE(340); if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(332); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(335); - if (lookahead == 'I') ADVANCE(337); - if (lookahead == 'N') ADVANCE(338); - if (lookahead == 'T') ADVANCE(339); - if (lookahead == 'W') ADVANCE(336); - if (lookahead == 'X') ADVANCE(340); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); if (lookahead == '[') ADVANCE(281); if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); + if (lookahead == '^') ADVANCE(239); if (lookahead == '_') ADVANCE(162); - if (lookahead == '`') ADVANCE(319); - if (lookahead == '{') ADVANCE(290); + if (lookahead == '{') ADVANCE(149); if (lookahead == '|') ADVANCE(317); if (lookahead == '~') ADVANCE(246); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(331); + lookahead != '\f') ADVANCE(327); END_STATE(); case 21: - if (lookahead == '\t') ADVANCE(329); - if (lookahead == '\n') ADVANCE(330); - if (lookahead == '\r') SKIP(107) - if (lookahead == ' ') ADVANCE(157); - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + if (lookahead == '\t') ADVANCE(325); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(108) + if (lookahead == ' ') ADVANCE(161); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); - if (lookahead == '*') ADVANCE(173); - if (lookahead == '-') ADVANCE(332); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(335); - if (lookahead == 'I') ADVANCE(337); - if (lookahead == 'N') ADVANCE(338); - if (lookahead == 'T') ADVANCE(339); - if (lookahead == 'W') ADVANCE(336); - if (lookahead == 'X') ADVANCE(340); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); if (lookahead == '[') ADVANCE(281); if (lookahead == '\\') ADVANCE(178); + if (lookahead == ']') ADVANCE(283); if (lookahead == '^') ADVANCE(238); if (lookahead == '_') ADVANCE(162); - if (lookahead == '`') ADVANCE(319); if (lookahead == '{') ADVANCE(149); if (lookahead == '|') ADVANCE(317); if (lookahead == '~') ADVANCE(246); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(331); + lookahead != '\f') ADVANCE(327); END_STATE(); case 22: - if (lookahead == '\t') ADVANCE(329); - if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\t') ADVANCE(325); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(108) if (lookahead == ' ') ADVANCE(161); - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); + if (lookahead == '\'') ADVANCE(340); if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(332); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(335); - if (lookahead == 'I') ADVANCE(337); - if (lookahead == 'N') ADVANCE(338); - if (lookahead == 'T') ADVANCE(339); - if (lookahead == 'W') ADVANCE(336); - if (lookahead == 'X') ADVANCE(340); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); if (lookahead == '[') ADVANCE(281); if (lookahead == '\\') ADVANCE(178); if (lookahead == '^') ADVANCE(238); if (lookahead == '_') ADVANCE(162); - if (lookahead == '`') ADVANCE(319); - if (lookahead == '{') ADVANCE(149); + if (lookahead == '{') ADVANCE(290); if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(247); + if (lookahead == '~') ADVANCE(246); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(331); + lookahead != '\f') ADVANCE(327); END_STATE(); case 23: - if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(23) - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); + if (lookahead == '\'') ADVANCE(340); if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(332); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); - if (lookahead == '=') ADVANCE(343); - if (lookahead == 'F') ADVANCE(335); - if (lookahead == 'I') ADVANCE(337); - if (lookahead == 'N') ADVANCE(338); - if (lookahead == 'T') ADVANCE(339); - if (lookahead == 'W') ADVANCE(336); - if (lookahead == 'X') ADVANCE(340); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); if (lookahead == '[') ADVANCE(281); if (lookahead == '\\') ADVANCE(178); if (lookahead == ']') ADVANCE(254); if (lookahead == '^') ADVANCE(238); if (lookahead == '_') ADVANCE(162); - if (lookahead == '`') ADVANCE(319); if (lookahead == '{') ADVANCE(290); if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '~') ADVANCE(247); if (lookahead != 0 && (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(331); + lookahead != ' ') ADVANCE(327); END_STATE(); case 24: - if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(23) - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); + if (lookahead == '\'') ADVANCE(340); if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(332); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); - if (lookahead == '=') ADVANCE(343); - if (lookahead == 'F') ADVANCE(335); - if (lookahead == 'I') ADVANCE(337); - if (lookahead == 'N') ADVANCE(338); - if (lookahead == 'T') ADVANCE(339); - if (lookahead == 'W') ADVANCE(336); - if (lookahead == 'X') ADVANCE(340); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); if (lookahead == '[') ADVANCE(281); if (lookahead == '\\') ADVANCE(178); if (lookahead == ']') ADVANCE(254); if (lookahead == '^') ADVANCE(238); if (lookahead == '_') ADVANCE(162); - if (lookahead == '`') ADVANCE(319); if (lookahead == '{') ADVANCE(149); if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '~') ADVANCE(247); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(329); + lookahead == ' ') ADVANCE(325); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(331); + lookahead != '\f') ADVANCE(327); END_STATE(); case 25: - if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(25) if (lookahead == ' ') ADVANCE(114); - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(332); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(173); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(335); - if (lookahead == 'I') ADVANCE(337); - if (lookahead == 'N') ADVANCE(338); - if (lookahead == 'T') ADVANCE(339); - if (lookahead == 'W') ADVANCE(336); - if (lookahead == 'X') ADVANCE(340); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); if (lookahead == '[') ADVANCE(281); if (lookahead == '\\') ADVANCE(178); if (lookahead == ']') ADVANCE(254); if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(163); - if (lookahead == '`') ADVANCE(319); + if (lookahead == '_') ADVANCE(162); if (lookahead == '{') ADVANCE(290); if (lookahead == '|') ADVANCE(317); if (lookahead == '~') ADVANCE(246); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(331); + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(327); END_STATE(); case 26: - if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(26) - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); + if (lookahead == '\'') ADVANCE(340); if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(332); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '+') ADVANCE(338); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(335); - if (lookahead == 'I') ADVANCE(337); - if (lookahead == 'N') ADVANCE(338); - if (lookahead == 'T') ADVANCE(339); - if (lookahead == 'W') ADVANCE(336); - if (lookahead == 'X') ADVANCE(340); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); if (lookahead == '[') ADVANCE(281); if (lookahead == '\\') ADVANCE(178); if (lookahead == ']') ADVANCE(254); if (lookahead == '^') ADVANCE(238); if (lookahead == '_') ADVANCE(162); - if (lookahead == '`') ADVANCE(319); if (lookahead == '{') ADVANCE(290); if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(247); + if (lookahead == '~') ADVANCE(246); if (lookahead != 0 && (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(331); + lookahead != ' ') ADVANCE(327); END_STATE(); case 27: - if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(26) - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); + if (lookahead == '\'') ADVANCE(340); if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(332); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '+') ADVANCE(338); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(335); - if (lookahead == 'I') ADVANCE(337); - if (lookahead == 'N') ADVANCE(338); - if (lookahead == 'T') ADVANCE(339); - if (lookahead == 'W') ADVANCE(336); - if (lookahead == 'X') ADVANCE(340); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); if (lookahead == '[') ADVANCE(281); if (lookahead == '\\') ADVANCE(178); if (lookahead == ']') ADVANCE(254); if (lookahead == '^') ADVANCE(238); if (lookahead == '_') ADVANCE(162); - if (lookahead == '`') ADVANCE(319); if (lookahead == '{') ADVANCE(149); if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(247); + if (lookahead == '~') ADVANCE(246); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(329); + lookahead == ' ') ADVANCE(325); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(331); + lookahead != '\f') ADVANCE(327); END_STATE(); case 28: - if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(28) - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); + if (lookahead == '\'') ADVANCE(340); if (lookahead == '*') ADVANCE(172); - if (lookahead == '+') ADVANCE(342); - if (lookahead == '-') ADVANCE(332); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(335); - if (lookahead == 'I') ADVANCE(337); - if (lookahead == 'N') ADVANCE(338); - if (lookahead == 'T') ADVANCE(339); - if (lookahead == 'W') ADVANCE(336); - if (lookahead == 'X') ADVANCE(340); + if (lookahead == '=') ADVANCE(339); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); if (lookahead == '[') ADVANCE(281); if (lookahead == '\\') ADVANCE(178); if (lookahead == ']') ADVANCE(254); if (lookahead == '^') ADVANCE(238); if (lookahead == '_') ADVANCE(162); - if (lookahead == '`') ADVANCE(319); if (lookahead == '{') ADVANCE(290); if (lookahead == '|') ADVANCE(317); if (lookahead == '~') ADVANCE(246); if (lookahead != 0 && (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(331); + lookahead != ' ') ADVANCE(327); END_STATE(); case 29: - if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(28) - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); + if (lookahead == '\'') ADVANCE(340); if (lookahead == '*') ADVANCE(172); - if (lookahead == '+') ADVANCE(342); - if (lookahead == '-') ADVANCE(332); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(335); - if (lookahead == 'I') ADVANCE(337); - if (lookahead == 'N') ADVANCE(338); - if (lookahead == 'T') ADVANCE(339); - if (lookahead == 'W') ADVANCE(336); - if (lookahead == 'X') ADVANCE(340); + if (lookahead == '=') ADVANCE(339); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); if (lookahead == '[') ADVANCE(281); if (lookahead == '\\') ADVANCE(178); if (lookahead == ']') ADVANCE(254); if (lookahead == '^') ADVANCE(238); if (lookahead == '_') ADVANCE(162); - if (lookahead == '`') ADVANCE(319); if (lookahead == '{') ADVANCE(149); if (lookahead == '|') ADVANCE(317); if (lookahead == '~') ADVANCE(246); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(329); + lookahead == ' ') ADVANCE(325); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(331); + lookahead != '\f') ADVANCE(327); END_STATE(); case 30: - if (lookahead == '\n') ADVANCE(330); - if (lookahead == '\r') SKIP(31) - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(30) + if (lookahead == ' ') ADVANCE(115); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); + if (lookahead == '\'') ADVANCE(340); if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(332); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(335); - if (lookahead == 'I') ADVANCE(337); - if (lookahead == 'N') ADVANCE(338); - if (lookahead == 'T') ADVANCE(339); - if (lookahead == 'W') ADVANCE(336); - if (lookahead == 'X') ADVANCE(340); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); if (lookahead == '[') ADVANCE(281); if (lookahead == '\\') ADVANCE(178); if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(162); - if (lookahead == '`') ADVANCE(319); + if (lookahead == '_') ADVANCE(163); if (lookahead == '{') ADVANCE(290); if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(247); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(329); + if (lookahead == '~') ADVANCE(246); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(331); + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(327); END_STATE(); case 31: - if (lookahead == '\n') ADVANCE(330); - if (lookahead == '\r') SKIP(31) - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(32) + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); + if (lookahead == '\'') ADVANCE(340); if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(332); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(335); - if (lookahead == 'I') ADVANCE(337); - if (lookahead == 'N') ADVANCE(338); - if (lookahead == 'T') ADVANCE(339); - if (lookahead == 'W') ADVANCE(336); - if (lookahead == 'X') ADVANCE(340); + if (lookahead == '=') ADVANCE(339); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); if (lookahead == '[') ADVANCE(281); if (lookahead == '\\') ADVANCE(178); if (lookahead == '^') ADVANCE(238); if (lookahead == '_') ADVANCE(162); - if (lookahead == '`') ADVANCE(319); if (lookahead == '{') ADVANCE(290); if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(247); + if (lookahead == '~') ADVANCE(246); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(325); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(331); + lookahead != 11 && + lookahead != '\f') ADVANCE(327); END_STATE(); case 32: - if (lookahead == '\n') ADVANCE(330); - if (lookahead == '\r') SKIP(31) - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(32) + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); + if (lookahead == '\'') ADVANCE(340); if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(332); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(335); - if (lookahead == 'I') ADVANCE(337); - if (lookahead == 'N') ADVANCE(338); - if (lookahead == 'T') ADVANCE(339); - if (lookahead == 'W') ADVANCE(336); - if (lookahead == 'X') ADVANCE(340); + if (lookahead == '=') ADVANCE(339); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); if (lookahead == '[') ADVANCE(281); if (lookahead == '\\') ADVANCE(178); if (lookahead == '^') ADVANCE(238); if (lookahead == '_') ADVANCE(162); - if (lookahead == '`') ADVANCE(319); - if (lookahead == '{') ADVANCE(149); + if (lookahead == '{') ADVANCE(290); if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(247); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(329); + if (lookahead == '~') ADVANCE(246); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(331); + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(327); END_STATE(); case 33: - if (lookahead == '\n') ADVANCE(330); - if (lookahead == '\r') SKIP(31) - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(32) + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); + if (lookahead == '\'') ADVANCE(340); if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(332); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(335); - if (lookahead == 'I') ADVANCE(337); - if (lookahead == 'N') ADVANCE(338); - if (lookahead == 'T') ADVANCE(339); - if (lookahead == 'W') ADVANCE(336); - if (lookahead == 'X') ADVANCE(340); + if (lookahead == '=') ADVANCE(339); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); if (lookahead == '[') ADVANCE(281); if (lookahead == '\\') ADVANCE(178); if (lookahead == '^') ADVANCE(238); if (lookahead == '_') ADVANCE(162); - if (lookahead == '`') ADVANCE(319); - if (lookahead == '{') ADVANCE(148); + if (lookahead == '{') ADVANCE(149); if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(247); + if (lookahead == '~') ADVANCE(246); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(329); + lookahead == ' ') ADVANCE(325); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(331); + lookahead != '\f') ADVANCE(327); END_STATE(); case 34: - if (lookahead == '\n') ADVANCE(330); - if (lookahead == '\r') SKIP(35) - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(32) + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); + if (lookahead == '\'') ADVANCE(340); if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(332); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); - if (lookahead == '=') ADVANCE(343); - if (lookahead == 'F') ADVANCE(335); - if (lookahead == 'I') ADVANCE(337); - if (lookahead == 'N') ADVANCE(338); - if (lookahead == 'T') ADVANCE(339); - if (lookahead == 'W') ADVANCE(336); - if (lookahead == 'X') ADVANCE(340); + if (lookahead == '=') ADVANCE(339); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); if (lookahead == '[') ADVANCE(281); if (lookahead == '\\') ADVANCE(178); if (lookahead == '^') ADVANCE(238); if (lookahead == '_') ADVANCE(162); - if (lookahead == '`') ADVANCE(319); - if (lookahead == '{') ADVANCE(290); + if (lookahead == '{') ADVANCE(148); if (lookahead == '|') ADVANCE(317); if (lookahead == '~') ADVANCE(246); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(329); + lookahead == ' ') ADVANCE(325); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(331); + lookahead != '\f') ADVANCE(327); END_STATE(); case 35: - if (lookahead == '\n') ADVANCE(330); - if (lookahead == '\r') SKIP(35) - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(36) + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); + if (lookahead == '\'') ADVANCE(340); if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(332); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); - if (lookahead == '=') ADVANCE(343); - if (lookahead == 'F') ADVANCE(335); - if (lookahead == 'I') ADVANCE(337); - if (lookahead == 'N') ADVANCE(338); - if (lookahead == 'T') ADVANCE(339); - if (lookahead == 'W') ADVANCE(336); - if (lookahead == 'X') ADVANCE(340); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); if (lookahead == '[') ADVANCE(281); if (lookahead == '\\') ADVANCE(178); if (lookahead == '^') ADVANCE(238); if (lookahead == '_') ADVANCE(162); - if (lookahead == '`') ADVANCE(319); if (lookahead == '{') ADVANCE(290); if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '~') ADVANCE(247); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(325); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(331); + lookahead != 11 && + lookahead != '\f') ADVANCE(327); END_STATE(); case 36: - if (lookahead == '\n') ADVANCE(330); - if (lookahead == '\r') SKIP(35) - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(36) + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); + if (lookahead == '\'') ADVANCE(340); if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(332); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); - if (lookahead == '=') ADVANCE(343); - if (lookahead == 'F') ADVANCE(335); - if (lookahead == 'I') ADVANCE(337); - if (lookahead == 'N') ADVANCE(338); - if (lookahead == 'T') ADVANCE(339); - if (lookahead == 'W') ADVANCE(336); - if (lookahead == 'X') ADVANCE(340); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); if (lookahead == '[') ADVANCE(281); if (lookahead == '\\') ADVANCE(178); if (lookahead == '^') ADVANCE(238); if (lookahead == '_') ADVANCE(162); - if (lookahead == '`') ADVANCE(319); - if (lookahead == '{') ADVANCE(149); + if (lookahead == '{') ADVANCE(290); if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(329); + if (lookahead == '~') ADVANCE(247); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(331); + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(327); END_STATE(); case 37: - if (lookahead == '\n') ADVANCE(330); - if (lookahead == '\r') SKIP(35) - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(36) + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); + if (lookahead == '\'') ADVANCE(340); if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(332); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); - if (lookahead == '=') ADVANCE(343); - if (lookahead == 'F') ADVANCE(335); - if (lookahead == 'I') ADVANCE(337); - if (lookahead == 'N') ADVANCE(338); - if (lookahead == 'T') ADVANCE(339); - if (lookahead == 'W') ADVANCE(336); - if (lookahead == 'X') ADVANCE(340); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); if (lookahead == '[') ADVANCE(281); if (lookahead == '\\') ADVANCE(178); if (lookahead == '^') ADVANCE(238); if (lookahead == '_') ADVANCE(162); - if (lookahead == '`') ADVANCE(319); - if (lookahead == '{') ADVANCE(148); + if (lookahead == '{') ADVANCE(149); if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '~') ADVANCE(247); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(329); + lookahead == ' ') ADVANCE(325); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(331); + lookahead != '\f') ADVANCE(327); END_STATE(); case 38: - if (lookahead == '\n') ADVANCE(330); - if (lookahead == '\r') SKIP(38) - if (lookahead == ' ') ADVANCE(114); - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(36) + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); + if (lookahead == '\'') ADVANCE(340); if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(332); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(335); - if (lookahead == 'I') ADVANCE(337); - if (lookahead == 'N') ADVANCE(338); - if (lookahead == 'T') ADVANCE(339); - if (lookahead == 'W') ADVANCE(336); - if (lookahead == 'X') ADVANCE(340); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); if (lookahead == '[') ADVANCE(281); if (lookahead == '\\') ADVANCE(178); if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(163); - if (lookahead == '`') ADVANCE(319); - if (lookahead == '{') ADVANCE(290); + if (lookahead == '_') ADVANCE(162); + if (lookahead == '{') ADVANCE(148); if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '~') ADVANCE(247); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(325); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(331); + lookahead != 11 && + lookahead != '\f') ADVANCE(327); END_STATE(); case 39: - if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(40) - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); + if (lookahead == '\'') ADVANCE(340); if (lookahead == '*') ADVANCE(172); - if (lookahead == '+') ADVANCE(342); - if (lookahead == '-') ADVANCE(332); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '+') ADVANCE(338); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(335); - if (lookahead == 'I') ADVANCE(337); - if (lookahead == 'N') ADVANCE(338); - if (lookahead == 'T') ADVANCE(339); - if (lookahead == 'W') ADVANCE(336); - if (lookahead == 'X') ADVANCE(340); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); if (lookahead == '[') ADVANCE(281); if (lookahead == '\\') ADVANCE(178); if (lookahead == '^') ADVANCE(238); if (lookahead == '_') ADVANCE(162); - if (lookahead == '`') ADVANCE(319); if (lookahead == '{') ADVANCE(290); if (lookahead == '|') ADVANCE(317); if (lookahead == '~') ADVANCE(246); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(329); + lookahead == ' ') ADVANCE(325); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(331); + lookahead != '\f') ADVANCE(327); END_STATE(); case 40: - if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(40) - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); + if (lookahead == '\'') ADVANCE(340); if (lookahead == '*') ADVANCE(172); - if (lookahead == '+') ADVANCE(342); - if (lookahead == '-') ADVANCE(332); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '+') ADVANCE(338); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(335); - if (lookahead == 'I') ADVANCE(337); - if (lookahead == 'N') ADVANCE(338); - if (lookahead == 'T') ADVANCE(339); - if (lookahead == 'W') ADVANCE(336); - if (lookahead == 'X') ADVANCE(340); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); if (lookahead == '[') ADVANCE(281); if (lookahead == '\\') ADVANCE(178); if (lookahead == '^') ADVANCE(238); if (lookahead == '_') ADVANCE(162); - if (lookahead == '`') ADVANCE(319); if (lookahead == '{') ADVANCE(290); if (lookahead == '|') ADVANCE(317); if (lookahead == '~') ADVANCE(246); if (lookahead != 0 && (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(331); + lookahead != ' ') ADVANCE(327); END_STATE(); case 41: - if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(40) - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); + if (lookahead == '\'') ADVANCE(340); if (lookahead == '*') ADVANCE(172); - if (lookahead == '+') ADVANCE(342); - if (lookahead == '-') ADVANCE(332); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '+') ADVANCE(338); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(335); - if (lookahead == 'I') ADVANCE(337); - if (lookahead == 'N') ADVANCE(338); - if (lookahead == 'T') ADVANCE(339); - if (lookahead == 'W') ADVANCE(336); - if (lookahead == 'X') ADVANCE(340); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); if (lookahead == '[') ADVANCE(281); if (lookahead == '\\') ADVANCE(178); if (lookahead == '^') ADVANCE(238); if (lookahead == '_') ADVANCE(162); - if (lookahead == '`') ADVANCE(319); if (lookahead == '{') ADVANCE(149); if (lookahead == '|') ADVANCE(317); if (lookahead == '~') ADVANCE(246); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(329); + lookahead == ' ') ADVANCE(325); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(331); + lookahead != '\f') ADVANCE(327); END_STATE(); case 42: - if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(40) - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); + if (lookahead == '\'') ADVANCE(340); if (lookahead == '*') ADVANCE(172); - if (lookahead == '+') ADVANCE(342); - if (lookahead == '-') ADVANCE(332); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '+') ADVANCE(338); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(335); - if (lookahead == 'I') ADVANCE(337); - if (lookahead == 'N') ADVANCE(338); - if (lookahead == 'T') ADVANCE(339); - if (lookahead == 'W') ADVANCE(336); - if (lookahead == 'X') ADVANCE(340); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); if (lookahead == '[') ADVANCE(281); if (lookahead == '\\') ADVANCE(178); if (lookahead == '^') ADVANCE(238); if (lookahead == '_') ADVANCE(162); - if (lookahead == '`') ADVANCE(319); if (lookahead == '{') ADVANCE(148); if (lookahead == '|') ADVANCE(317); if (lookahead == '~') ADVANCE(246); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(329); + lookahead == ' ') ADVANCE(325); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(331); + lookahead != '\f') ADVANCE(327); END_STATE(); case 43: - if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(43) - if (lookahead == ' ') ADVANCE(154); - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(332); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); - if (lookahead == '<') ADVANCE(193); - if (lookahead == '=') ADVANCE(343); - if (lookahead == 'F') ADVANCE(335); - if (lookahead == 'I') ADVANCE(337); - if (lookahead == 'N') ADVANCE(338); - if (lookahead == 'T') ADVANCE(339); - if (lookahead == 'W') ADVANCE(336); - if (lookahead == 'X') ADVANCE(340); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(162); - if (lookahead == '`') ADVANCE(319); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(331); - END_STATE(); - case 44: - if (lookahead == '\n') ADVANCE(330); - if (lookahead == '\r') SKIP(44) - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); + if (lookahead == '\'') ADVANCE(340); if (lookahead == '*') ADVANCE(172); if (lookahead == '-') ADVANCE(257); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); - if (lookahead == '=') ADVANCE(343); + if (lookahead == '=') ADVANCE(339); if (lookahead == 'F') ADVANCE(263); if (lookahead == 'I') ADVANCE(265); if (lookahead == 'N') ADVANCE(266); @@ -3410,7 +3315,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\\') ADVANCE(178); if (lookahead == '^') ADVANCE(238); if (lookahead == '_') ADVANCE(166); - if (lookahead == '`') ADVANCE(319); if (lookahead == '{') ADVANCE(290); if (lookahead == '|') ADVANCE(317); if (lookahead == '~') ADVANCE(246); @@ -3419,21 +3323,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); if (lookahead != 0 && (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(331); + lookahead != ' ') ADVANCE(327); END_STATE(); - case 45: - if (lookahead == '\n') ADVANCE(330); - if (lookahead == '\r') SKIP(44) - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + case 44: + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(43) + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); + if (lookahead == '\'') ADVANCE(340); if (lookahead == '*') ADVANCE(172); if (lookahead == '-') ADVANCE(257); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); - if (lookahead == '=') ADVANCE(343); + if (lookahead == '=') ADVANCE(339); if (lookahead == 'F') ADVANCE(263); if (lookahead == 'I') ADVANCE(265); if (lookahead == 'N') ADVANCE(266); @@ -3444,30 +3348,59 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\\') ADVANCE(178); if (lookahead == '^') ADVANCE(238); if (lookahead == '_') ADVANCE(166); - if (lookahead == '`') ADVANCE(319); if (lookahead == '{') ADVANCE(149); if (lookahead == '|') ADVANCE(317); if (lookahead == '~') ADVANCE(246); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(329); + lookahead == ' ') ADVANCE(325); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(331); + lookahead != '\f') ADVANCE(327); + END_STATE(); + case 45: + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(45) + if (lookahead == ' ') ADVANCE(154); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == '=') ADVANCE(339); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(162); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead != 0 && + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(327); END_STATE(); case 46: - if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(46) - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); + if (lookahead == '\'') ADVANCE(340); if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(256); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '-') ADVANCE(257); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); if (lookahead == 'F') ADVANCE(263); if (lookahead == 'I') ADVANCE(265); @@ -3477,9 +3410,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'X') ADVANCE(274); if (lookahead == '[') ADVANCE(281); if (lookahead == '\\') ADVANCE(178); + if (lookahead == ']') ADVANCE(254); if (lookahead == '^') ADVANCE(238); if (lookahead == '_') ADVANCE(166); - if (lookahead == '`') ADVANCE(319); if (lookahead == '{') ADVANCE(290); if (lookahead == '|') ADVANCE(317); if (lookahead == '~') ADVANCE(246); @@ -3488,19 +3421,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); if (lookahead != 0 && (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(331); + lookahead != ' ') ADVANCE(327); END_STATE(); case 47: - if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(46) - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); + if (lookahead == '\'') ADVANCE(340); if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(256); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '-') ADVANCE(257); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); if (lookahead == 'F') ADVANCE(263); if (lookahead == 'I') ADVANCE(265); @@ -3510,32 +3443,32 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'X') ADVANCE(274); if (lookahead == '[') ADVANCE(281); if (lookahead == '\\') ADVANCE(178); + if (lookahead == ']') ADVANCE(254); if (lookahead == '^') ADVANCE(238); if (lookahead == '_') ADVANCE(166); - if (lookahead == '`') ADVANCE(319); if (lookahead == '{') ADVANCE(149); if (lookahead == '|') ADVANCE(317); if (lookahead == '~') ADVANCE(246); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(329); + lookahead == ' ') ADVANCE(325); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(331); + lookahead != '\f') ADVANCE(327); END_STATE(); case 48: - if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(48) - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); + if (lookahead == '\'') ADVANCE(340); if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(257); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '-') ADVANCE(256); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); if (lookahead == 'F') ADVANCE(263); if (lookahead == 'I') ADVANCE(265); @@ -3545,30 +3478,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'X') ADVANCE(274); if (lookahead == '[') ADVANCE(281); if (lookahead == '\\') ADVANCE(178); - if (lookahead == ']') ADVANCE(254); if (lookahead == '^') ADVANCE(238); if (lookahead == '_') ADVANCE(166); - if (lookahead == '`') ADVANCE(319); if (lookahead == '{') ADVANCE(290); if (lookahead == '|') ADVANCE(317); if (lookahead == '~') ADVANCE(246); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'z')) ADVANCE(275); + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); if (lookahead != 0 && (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(331); + lookahead != ' ') ADVANCE(327); END_STATE(); case 49: - if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(48) - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); + if (lookahead == '\'') ADVANCE(340); if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(257); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '-') ADVANCE(256); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); if (lookahead == 'F') ADVANCE(263); if (lookahead == 'I') ADVANCE(265); @@ -3578,33 +3510,32 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'X') ADVANCE(274); if (lookahead == '[') ADVANCE(281); if (lookahead == '\\') ADVANCE(178); - if (lookahead == ']') ADVANCE(254); if (lookahead == '^') ADVANCE(238); if (lookahead == '_') ADVANCE(166); - if (lookahead == '`') ADVANCE(319); if (lookahead == '{') ADVANCE(149); if (lookahead == '|') ADVANCE(317); if (lookahead == '~') ADVANCE(246); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(329); + lookahead == ' ') ADVANCE(325); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'z')) ADVANCE(275); + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(331); + lookahead != '\f') ADVANCE(327); END_STATE(); case 50: - if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(50) if (lookahead == ' ') ADVANCE(115); - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); - if (lookahead == '*') ADVANCE(173); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); if (lookahead == '-') ADVANCE(257); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); if (lookahead == 'F') ADVANCE(263); if (lookahead == 'I') ADVANCE(265); @@ -3615,8 +3546,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(281); if (lookahead == '\\') ADVANCE(178); if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(166); - if (lookahead == '`') ADVANCE(319); + if (lookahead == '_') ADVANCE(164); if (lookahead == '{') ADVANCE(290); if (lookahead == '|') ADVANCE(317); if (lookahead == '~') ADVANCE(246); @@ -3624,20 +3554,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(331); + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(327); END_STATE(); case 51: - if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(51) - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); + if (lookahead == '\'') ADVANCE(340); if (lookahead == '*') ADVANCE(172); - if (lookahead == '+') ADVANCE(342); + if (lookahead == '+') ADVANCE(338); if (lookahead == '-') ADVANCE(257); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); if (lookahead == 'F') ADVANCE(263); if (lookahead == 'I') ADVANCE(265); @@ -3649,7 +3579,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\\') ADVANCE(178); if (lookahead == '^') ADVANCE(238); if (lookahead == '_') ADVANCE(166); - if (lookahead == '`') ADVANCE(319); if (lookahead == '{') ADVANCE(290); if (lookahead == '|') ADVANCE(317); if (lookahead == '~') ADVANCE(246); @@ -3658,20 +3587,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); if (lookahead != 0 && (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(331); + lookahead != ' ') ADVANCE(327); END_STATE(); case 52: - if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(51) - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); + if (lookahead == '\'') ADVANCE(340); if (lookahead == '*') ADVANCE(172); - if (lookahead == '+') ADVANCE(342); + if (lookahead == '+') ADVANCE(338); if (lookahead == '-') ADVANCE(257); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); if (lookahead == 'F') ADVANCE(263); if (lookahead == 'I') ADVANCE(265); @@ -3683,52 +3612,50 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\\') ADVANCE(178); if (lookahead == '^') ADVANCE(238); if (lookahead == '_') ADVANCE(166); - if (lookahead == '`') ADVANCE(319); if (lookahead == '{') ADVANCE(149); if (lookahead == '|') ADVANCE(317); if (lookahead == '~') ADVANCE(246); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(329); + lookahead == ' ') ADVANCE(325); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(331); + lookahead != '\f') ADVANCE(327); END_STATE(); case 53: - if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(53) if (lookahead == ' ') ADVANCE(154); - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); + if (lookahead == '\'') ADVANCE(340); if (lookahead == '*') ADVANCE(172); - if (lookahead == '+') ADVANCE(342); - if (lookahead == '-') ADVANCE(332); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '+') ADVANCE(338); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(335); - if (lookahead == 'I') ADVANCE(337); - if (lookahead == 'N') ADVANCE(338); - if (lookahead == 'T') ADVANCE(339); - if (lookahead == 'W') ADVANCE(336); - if (lookahead == 'X') ADVANCE(340); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); if (lookahead == '[') ADVANCE(281); if (lookahead == '\\') ADVANCE(178); if (lookahead == '^') ADVANCE(238); if (lookahead == '_') ADVANCE(162); - if (lookahead == '`') ADVANCE(319); if (lookahead == '{') ADVANCE(290); if (lookahead == '|') ADVANCE(317); if (lookahead == '~') ADVANCE(246); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(331); + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(327); END_STATE(); case 54: - if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(55) if (lookahead == '!') ADVANCE(217); if (lookahead == '"') ADVANCE(218); @@ -3740,7 +3667,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '.') ADVANCE(198); if (lookahead == ':') ADVANCE(199); if (lookahead == '<') ADVANCE(194); - if (lookahead == '>') ADVANCE(331); + if (lookahead == '>') ADVANCE(327); if (lookahead == 'F') ADVANCE(205); if (lookahead == 'I') ADVANCE(207); if (lookahead == 'N') ADVANCE(208); @@ -3751,18 +3678,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\\') ADVANCE(179); if (lookahead == '^') ADVANCE(241); if (lookahead == '_') ADVANCE(167); - if (lookahead == '`') ADVANCE(320); if (lookahead == '{') ADVANCE(150); if (lookahead == '|') ADVANCE(318); if (lookahead == '~') ADVANCE(249); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(329); + lookahead == ' ') ADVANCE(325); if (lookahead != 0 && lookahead != 11 && lookahead != '\f') ADVANCE(221); END_STATE(); case 55: - if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(55) if (lookahead == '!') ADVANCE(217); if (lookahead == '"') ADVANCE(218); @@ -3774,7 +3700,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '.') ADVANCE(198); if (lookahead == ':') ADVANCE(199); if (lookahead == '<') ADVANCE(194); - if (lookahead == '>') ADVANCE(331); + if (lookahead == '>') ADVANCE(327); if (lookahead == 'F') ADVANCE(205); if (lookahead == 'I') ADVANCE(207); if (lookahead == 'N') ADVANCE(208); @@ -3785,7 +3711,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\\') ADVANCE(179); if (lookahead == '^') ADVANCE(241); if (lookahead == '_') ADVANCE(167); - if (lookahead == '`') ADVANCE(320); if (lookahead == '{') ADVANCE(291); if (lookahead == '|') ADVANCE(318); if (lookahead == '~') ADVANCE(249); @@ -3794,19 +3719,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(221); END_STATE(); case 56: - if (lookahead == '\n') ADVANCE(330); - if (lookahead == '\r') SKIP(56) - if (lookahead == ' ') ADVANCE(115); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(57) if (lookahead == '!') ADVANCE(217); if (lookahead == '"') ADVANCE(218); if (lookahead == '$') ADVANCE(298); if (lookahead == '\'') ADVANCE(218); - if (lookahead == '*') ADVANCE(174); + if (lookahead == '*') ADVANCE(175); if (lookahead == '-') ADVANCE(196); if (lookahead == '.') ADVANCE(198); if (lookahead == ':') ADVANCE(199); if (lookahead == '<') ADVANCE(194); - if (lookahead == '>') ADVANCE(331); + if (lookahead == '>') ADVANCE(327); if (lookahead == 'F') ADVANCE(205); if (lookahead == 'I') ADVANCE(207); if (lookahead == 'N') ADVANCE(208); @@ -3815,18 +3739,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'X') ADVANCE(216); if (lookahead == '[') ADVANCE(282); if (lookahead == '\\') ADVANCE(179); - if (lookahead == '^') ADVANCE(241); + if (lookahead == '^') ADVANCE(240); if (lookahead == '_') ADVANCE(167); - if (lookahead == '`') ADVANCE(320); - if (lookahead == '{') ADVANCE(291); + if (lookahead == '{') ADVANCE(150); if (lookahead == '|') ADVANCE(318); if (lookahead == '~') ADVANCE(249); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(325); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(221); + lookahead != 11 && + lookahead != '\f') ADVANCE(221); END_STATE(); case 57: - if (lookahead == '\n') ADVANCE(330); - if (lookahead == '\r') SKIP(58) + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(57) if (lookahead == '!') ADVANCE(217); if (lookahead == '"') ADVANCE(218); if (lookahead == '$') ADVANCE(298); @@ -3836,7 +3762,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '.') ADVANCE(198); if (lookahead == ':') ADVANCE(199); if (lookahead == '<') ADVANCE(194); - if (lookahead == '>') ADVANCE(331); + if (lookahead == '>') ADVANCE(327); if (lookahead == 'F') ADVANCE(205); if (lookahead == 'I') ADVANCE(207); if (lookahead == 'N') ADVANCE(208); @@ -3845,31 +3771,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'X') ADVANCE(216); if (lookahead == '[') ADVANCE(282); if (lookahead == '\\') ADVANCE(179); - if (lookahead == '^') ADVANCE(241); + if (lookahead == '^') ADVANCE(240); if (lookahead == '_') ADVANCE(167); - if (lookahead == '`') ADVANCE(320); - if (lookahead == '{') ADVANCE(150); + if (lookahead == '{') ADVANCE(291); if (lookahead == '|') ADVANCE(318); - if (lookahead == '~') ADVANCE(248); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(329); + if (lookahead == '~') ADVANCE(249); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(221); + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(221); END_STATE(); case 58: - if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(58) + if (lookahead == ' ') ADVANCE(114); if (lookahead == '!') ADVANCE(217); if (lookahead == '"') ADVANCE(218); if (lookahead == '$') ADVANCE(298); if (lookahead == '\'') ADVANCE(218); - if (lookahead == '*') ADVANCE(175); + if (lookahead == '*') ADVANCE(174); if (lookahead == '-') ADVANCE(196); if (lookahead == '.') ADVANCE(198); if (lookahead == ':') ADVANCE(199); if (lookahead == '<') ADVANCE(194); - if (lookahead == '>') ADVANCE(331); + if (lookahead == '>') ADVANCE(327); if (lookahead == 'F') ADVANCE(205); if (lookahead == 'I') ADVANCE(207); if (lookahead == 'N') ADVANCE(208); @@ -3880,16 +3804,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\\') ADVANCE(179); if (lookahead == '^') ADVANCE(241); if (lookahead == '_') ADVANCE(167); - if (lookahead == '`') ADVANCE(320); if (lookahead == '{') ADVANCE(291); if (lookahead == '|') ADVANCE(318); - if (lookahead == '~') ADVANCE(248); + if (lookahead == '~') ADVANCE(249); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(221); + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(221); END_STATE(); case 59: - if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(60) if (lookahead == '!') ADVANCE(217); if (lookahead == '"') ADVANCE(218); @@ -3900,7 +3822,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '.') ADVANCE(198); if (lookahead == ':') ADVANCE(199); if (lookahead == '<') ADVANCE(194); - if (lookahead == '>') ADVANCE(331); + if (lookahead == '=') ADVANCE(220); + if (lookahead == '>') ADVANCE(327); if (lookahead == 'F') ADVANCE(205); if (lookahead == 'I') ADVANCE(207); if (lookahead == 'N') ADVANCE(208); @@ -3909,21 +3832,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'X') ADVANCE(216); if (lookahead == '[') ADVANCE(282); if (lookahead == '\\') ADVANCE(179); - if (lookahead == ']') ADVANCE(255); if (lookahead == '^') ADVANCE(241); if (lookahead == '_') ADVANCE(167); - if (lookahead == '`') ADVANCE(320); if (lookahead == '{') ADVANCE(150); if (lookahead == '|') ADVANCE(318); if (lookahead == '~') ADVANCE(249); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(329); + lookahead == ' ') ADVANCE(325); if (lookahead != 0 && lookahead != 11 && lookahead != '\f') ADVANCE(221); END_STATE(); case 60: - if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(60) if (lookahead == '!') ADVANCE(217); if (lookahead == '"') ADVANCE(218); @@ -3934,7 +3855,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '.') ADVANCE(198); if (lookahead == ':') ADVANCE(199); if (lookahead == '<') ADVANCE(194); - if (lookahead == '>') ADVANCE(331); + if (lookahead == '=') ADVANCE(220); + if (lookahead == '>') ADVANCE(327); if (lookahead == 'F') ADVANCE(205); if (lookahead == 'I') ADVANCE(207); if (lookahead == 'N') ADVANCE(208); @@ -3943,10 +3865,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'X') ADVANCE(216); if (lookahead == '[') ADVANCE(282); if (lookahead == '\\') ADVANCE(179); - if (lookahead == ']') ADVANCE(255); if (lookahead == '^') ADVANCE(241); if (lookahead == '_') ADVANCE(167); - if (lookahead == '`') ADVANCE(320); if (lookahead == '{') ADVANCE(291); if (lookahead == '|') ADVANCE(318); if (lookahead == '~') ADVANCE(249); @@ -3955,7 +3875,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(221); END_STATE(); case 61: - if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(62) if (lookahead == '!') ADVANCE(217); if (lookahead == '"') ADVANCE(218); @@ -3966,8 +3886,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '.') ADVANCE(198); if (lookahead == ':') ADVANCE(199); if (lookahead == '<') ADVANCE(194); - if (lookahead == '=') ADVANCE(220); - if (lookahead == '>') ADVANCE(331); + if (lookahead == '>') ADVANCE(327); if (lookahead == 'F') ADVANCE(205); if (lookahead == 'I') ADVANCE(207); if (lookahead == 'N') ADVANCE(208); @@ -3976,20 +3895,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'X') ADVANCE(216); if (lookahead == '[') ADVANCE(282); if (lookahead == '\\') ADVANCE(179); + if (lookahead == ']') ADVANCE(255); if (lookahead == '^') ADVANCE(241); if (lookahead == '_') ADVANCE(167); - if (lookahead == '`') ADVANCE(320); if (lookahead == '{') ADVANCE(150); if (lookahead == '|') ADVANCE(318); if (lookahead == '~') ADVANCE(249); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(329); + lookahead == ' ') ADVANCE(325); if (lookahead != 0 && lookahead != 11 && lookahead != '\f') ADVANCE(221); END_STATE(); case 62: - if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(62) if (lookahead == '!') ADVANCE(217); if (lookahead == '"') ADVANCE(218); @@ -4000,8 +3919,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '.') ADVANCE(198); if (lookahead == ':') ADVANCE(199); if (lookahead == '<') ADVANCE(194); - if (lookahead == '=') ADVANCE(220); - if (lookahead == '>') ADVANCE(331); + if (lookahead == '>') ADVANCE(327); if (lookahead == 'F') ADVANCE(205); if (lookahead == 'I') ADVANCE(207); if (lookahead == 'N') ADVANCE(208); @@ -4010,9 +3928,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'X') ADVANCE(216); if (lookahead == '[') ADVANCE(282); if (lookahead == '\\') ADVANCE(179); + if (lookahead == ']') ADVANCE(255); if (lookahead == '^') ADVANCE(241); if (lookahead == '_') ADVANCE(167); - if (lookahead == '`') ADVANCE(320); if (lookahead == '{') ADVANCE(291); if (lookahead == '|') ADVANCE(318); if (lookahead == '~') ADVANCE(249); @@ -4021,21 +3939,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(221); END_STATE(); case 63: - if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(64) - if (lookahead == '"') ADVANCE(351); + if (lookahead == '"') ADVANCE(347); if (lookahead == '#') ADVANCE(131); if (lookahead == '%') ADVANCE(292); if (lookahead == '(') ADVANCE(285); if (lookahead == ')') ADVANCE(288); - if (lookahead == '.') ADVANCE(346); - if (lookahead == '=') ADVANCE(349); + if (lookahead == '.') ADVANCE(342); + if (lookahead == '=') ADVANCE(345); if (lookahead == '>') ADVANCE(222); if (lookahead == '[') ADVANCE(280); if (lookahead == '{') ADVANCE(146); if (lookahead == '}') ADVANCE(151); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(329); + lookahead == ' ') ADVANCE(325); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -4043,15 +3961,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); END_STATE(); case 64: - if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(64) - if (lookahead == '"') ADVANCE(351); + if (lookahead == '"') ADVANCE(347); if (lookahead == '#') ADVANCE(131); if (lookahead == '%') ADVANCE(292); if (lookahead == '(') ADVANCE(285); if (lookahead == ')') ADVANCE(288); - if (lookahead == '.') ADVANCE(346); - if (lookahead == '=') ADVANCE(349); + if (lookahead == '.') ADVANCE(342); + if (lookahead == '=') ADVANCE(345); if (lookahead == '>') ADVANCE(222); if (lookahead == '[') ADVANCE(279); if (lookahead == '}') ADVANCE(151); @@ -4062,274 +3980,330 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); END_STATE(); case 65: - if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') ADVANCE(294); if (lookahead == '%') ADVANCE(292); if (lookahead == '\\') ADVANCE(295); if (lookahead != 0) ADVANCE(293); END_STATE(); case 66: - if (lookahead == '\n') ADVANCE(330); - if (lookahead == '\r') SKIP(66) - if (lookahead == ' ') ADVANCE(115); - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(68) + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); - if (lookahead == '*') ADVANCE(173); - if (lookahead == '-') ADVANCE(332); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(335); - if (lookahead == 'I') ADVANCE(337); - if (lookahead == 'N') ADVANCE(338); - if (lookahead == 'T') ADVANCE(339); - if (lookahead == 'W') ADVANCE(336); - if (lookahead == 'X') ADVANCE(340); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); if (lookahead == '[') ADVANCE(281); if (lookahead == '\\') ADVANCE(178); - if (lookahead == ']') ADVANCE(254); + if (lookahead == ']') ADVANCE(283); if (lookahead == '^') ADVANCE(238); if (lookahead == '_') ADVANCE(162); - if (lookahead == '`') ADVANCE(319); - if (lookahead == '{') ADVANCE(290); + if (lookahead == '{') ADVANCE(149); if (lookahead == '|') ADVANCE(317); if (lookahead == '~') ADVANCE(246); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(325); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(331); + lookahead != 11 && + lookahead != '\f') ADVANCE(327); END_STATE(); case 67: - if (lookahead == '\n') ADVANCE(330); - if (lookahead == '\r') SKIP(67) - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(68) + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); + if (lookahead == '\'') ADVANCE(340); if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(333); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(335); - if (lookahead == 'I') ADVANCE(337); - if (lookahead == 'N') ADVANCE(338); - if (lookahead == 'T') ADVANCE(339); - if (lookahead == 'W') ADVANCE(336); - if (lookahead == 'X') ADVANCE(340); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); if (lookahead == '[') ADVANCE(281); if (lookahead == '\\') ADVANCE(178); if (lookahead == ']') ADVANCE(254); if (lookahead == '^') ADVANCE(238); if (lookahead == '_') ADVANCE(162); - if (lookahead == '`') ADVANCE(319); if (lookahead == '{') ADVANCE(290); if (lookahead == '|') ADVANCE(317); if (lookahead == '~') ADVANCE(246); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(325); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(331); + lookahead != 11 && + lookahead != '\f') ADVANCE(327); END_STATE(); case 68: - if (lookahead == '\n') ADVANCE(330); - if (lookahead == '\r') SKIP(67) - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(68) + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); + if (lookahead == '\'') ADVANCE(340); if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(333); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(335); - if (lookahead == 'I') ADVANCE(337); - if (lookahead == 'N') ADVANCE(338); - if (lookahead == 'T') ADVANCE(339); - if (lookahead == 'W') ADVANCE(336); - if (lookahead == 'X') ADVANCE(340); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); if (lookahead == '[') ADVANCE(281); if (lookahead == '\\') ADVANCE(178); if (lookahead == ']') ADVANCE(254); if (lookahead == '^') ADVANCE(238); if (lookahead == '_') ADVANCE(162); - if (lookahead == '`') ADVANCE(319); - if (lookahead == '{') ADVANCE(149); + if (lookahead == '{') ADVANCE(290); if (lookahead == '|') ADVANCE(317); if (lookahead == '~') ADVANCE(246); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(329); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(331); + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(327); END_STATE(); case 69: - if (lookahead == '\n') ADVANCE(330); - if (lookahead == '\r') SKIP(70) - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(68) + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); + if (lookahead == '\'') ADVANCE(340); if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(332); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(335); - if (lookahead == 'I') ADVANCE(337); - if (lookahead == 'N') ADVANCE(338); - if (lookahead == 'T') ADVANCE(339); - if (lookahead == 'W') ADVANCE(336); - if (lookahead == 'X') ADVANCE(340); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); if (lookahead == '[') ADVANCE(281); if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(239); + if (lookahead == ']') ADVANCE(254); + if (lookahead == '^') ADVANCE(238); if (lookahead == '_') ADVANCE(162); - if (lookahead == '`') ADVANCE(319); - if (lookahead == '{') ADVANCE(290); + if (lookahead == '{') ADVANCE(148); if (lookahead == '|') ADVANCE(317); if (lookahead == '~') ADVANCE(246); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(329); + lookahead == ' ') ADVANCE(325); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(331); + lookahead != '\f') ADVANCE(327); END_STATE(); case 70: - if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(70) - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + if (lookahead == ' ') ADVANCE(115); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); + if (lookahead == '\'') ADVANCE(340); if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(332); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(335); - if (lookahead == 'I') ADVANCE(337); - if (lookahead == 'N') ADVANCE(338); - if (lookahead == 'T') ADVANCE(339); - if (lookahead == 'W') ADVANCE(336); - if (lookahead == 'X') ADVANCE(340); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); if (lookahead == '[') ADVANCE(281); if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(239); - if (lookahead == '_') ADVANCE(162); - if (lookahead == '`') ADVANCE(319); + if (lookahead == ']') ADVANCE(254); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(163); if (lookahead == '{') ADVANCE(290); if (lookahead == '|') ADVANCE(317); if (lookahead == '~') ADVANCE(246); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(331); + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(327); END_STATE(); case 71: - if (lookahead == '\n') ADVANCE(330); - if (lookahead == '\r') SKIP(70) - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(71) + if (lookahead == ' ') ADVANCE(114); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(332); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(173); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(335); - if (lookahead == 'I') ADVANCE(337); - if (lookahead == 'N') ADVANCE(338); - if (lookahead == 'T') ADVANCE(339); - if (lookahead == 'W') ADVANCE(336); - if (lookahead == 'X') ADVANCE(340); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); if (lookahead == '[') ADVANCE(281); if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(239); + if (lookahead == '^') ADVANCE(238); if (lookahead == '_') ADVANCE(162); - if (lookahead == '`') ADVANCE(319); - if (lookahead == '{') ADVANCE(149); + if (lookahead == '{') ADVANCE(290); if (lookahead == '|') ADVANCE(317); if (lookahead == '~') ADVANCE(246); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(329); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(331); + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(327); END_STATE(); case 72: - if (lookahead == '\n') ADVANCE(330); - if (lookahead == '\r') SKIP(70) - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(73) + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); + if (lookahead == '\'') ADVANCE(340); if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(332); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '-') ADVANCE(329); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(335); - if (lookahead == 'I') ADVANCE(337); - if (lookahead == 'N') ADVANCE(338); - if (lookahead == 'T') ADVANCE(339); - if (lookahead == 'W') ADVANCE(336); - if (lookahead == 'X') ADVANCE(340); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); if (lookahead == '[') ADVANCE(281); if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(239); + if (lookahead == '^') ADVANCE(238); if (lookahead == '_') ADVANCE(162); - if (lookahead == '`') ADVANCE(319); - if (lookahead == '{') ADVANCE(148); + if (lookahead == '{') ADVANCE(290); if (lookahead == '|') ADVANCE(317); if (lookahead == '~') ADVANCE(246); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(329); + lookahead == ' ') ADVANCE(325); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(331); + lookahead != '\f') ADVANCE(327); END_STATE(); case 73: - if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(73) - if (lookahead == ' ') ADVANCE(115); - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); - if (lookahead == '*') ADVANCE(173); - if (lookahead == '-') ADVANCE(332); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(329); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(335); - if (lookahead == 'I') ADVANCE(337); - if (lookahead == 'N') ADVANCE(338); - if (lookahead == 'T') ADVANCE(339); - if (lookahead == 'W') ADVANCE(336); - if (lookahead == 'X') ADVANCE(340); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); if (lookahead == '[') ADVANCE(281); if (lookahead == '\\') ADVANCE(178); if (lookahead == '^') ADVANCE(238); if (lookahead == '_') ADVANCE(162); - if (lookahead == '`') ADVANCE(319); if (lookahead == '{') ADVANCE(290); if (lookahead == '|') ADVANCE(317); if (lookahead == '~') ADVANCE(246); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(331); + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(327); END_STATE(); case 74: - if (lookahead == '\n') ADVANCE(330); - if (lookahead == '\r') SKIP(75) - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(73) + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(329); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(162); + if (lookahead == '{') ADVANCE(149); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(325); + if (lookahead != 0 && + lookahead != 11 && + lookahead != '\f') ADVANCE(327); + END_STATE(); + case 75: + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(73) + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(329); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(162); + if (lookahead == '{') ADVANCE(148); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(325); + if (lookahead != 0 && + lookahead != 11 && + lookahead != '\f') ADVANCE(327); + END_STATE(); + case 76: + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(76) + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); + if (lookahead == '\'') ADVANCE(340); if (lookahead == '*') ADVANCE(172); if (lookahead == '-') ADVANCE(257); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); if (lookahead == 'F') ADVANCE(263); if (lookahead == 'I') ADVANCE(265); @@ -4339,32 +4313,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'X') ADVANCE(274); if (lookahead == '[') ADVANCE(281); if (lookahead == '\\') ADVANCE(178); - if (lookahead == ']') ADVANCE(283); if (lookahead == '^') ADVANCE(238); if (lookahead == '_') ADVANCE(166); - if (lookahead == '`') ADVANCE(319); - if (lookahead == '{') ADVANCE(149); + if (lookahead == '{') ADVANCE(290); if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(329); + if (lookahead == '~') ADVANCE(247); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'z')) ADVANCE(275); + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(331); + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(327); END_STATE(); - case 75: - if (lookahead == '\n') ADVANCE(330); - if (lookahead == '\r') SKIP(75) - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + case 77: + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(76) + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); + if (lookahead == '\'') ADVANCE(340); if (lookahead == '*') ADVANCE(172); if (lookahead == '-') ADVANCE(257); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); if (lookahead == 'F') ADVANCE(263); if (lookahead == 'I') ADVANCE(265); @@ -4376,29 +4347,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\\') ADVANCE(178); if (lookahead == '^') ADVANCE(238); if (lookahead == '_') ADVANCE(166); - if (lookahead == '`') ADVANCE(319); - if (lookahead == '{') ADVANCE(290); + if (lookahead == '{') ADVANCE(149); if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '~') ADVANCE(247); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(325); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(331); + lookahead != 11 && + lookahead != '\f') ADVANCE(327); END_STATE(); - case 76: - if (lookahead == '\n') ADVANCE(330); - if (lookahead == '\r') SKIP(76) + case 78: + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(78) if (lookahead == ' ') ADVANCE(114); - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); - if (lookahead == '*') ADVANCE(172); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(173); if (lookahead == '-') ADVANCE(257); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); if (lookahead == 'F') ADVANCE(263); if (lookahead == 'I') ADVANCE(265); @@ -4409,8 +4381,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(281); if (lookahead == '\\') ADVANCE(178); if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(164); - if (lookahead == '`') ADVANCE(319); + if (lookahead == '_') ADVANCE(166); if (lookahead == '{') ADVANCE(290); if (lookahead == '|') ADVANCE(317); if (lookahead == '~') ADVANCE(246); @@ -4418,12 +4389,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(331); + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(327); END_STATE(); - case 77: - if (lookahead == '\n') ADVANCE(330); - if (lookahead == '\r') SKIP(77) - if (lookahead == ' ') ADVANCE(114); + case 79: + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(80) if (lookahead == '!') ADVANCE(217); if (lookahead == '"') ADVANCE(218); if (lookahead == '$') ADVANCE(298); @@ -4433,7 +4403,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '.') ADVANCE(198); if (lookahead == ':') ADVANCE(199); if (lookahead == '<') ADVANCE(194); - if (lookahead == '>') ADVANCE(331); + if (lookahead == '>') ADVANCE(327); if (lookahead == 'F') ADVANCE(205); if (lookahead == 'I') ADVANCE(207); if (lookahead == 'N') ADVANCE(208); @@ -4443,17 +4413,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(282); if (lookahead == '\\') ADVANCE(179); if (lookahead == '^') ADVANCE(241); - if (lookahead == '_') ADVANCE(165); - if (lookahead == '`') ADVANCE(320); - if (lookahead == '{') ADVANCE(291); + if (lookahead == '_') ADVANCE(167); + if (lookahead == '{') ADVANCE(150); if (lookahead == '|') ADVANCE(318); - if (lookahead == '~') ADVANCE(249); + if (lookahead == '~') ADVANCE(248); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(325); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(221); + lookahead != 11 && + lookahead != '\f') ADVANCE(221); END_STATE(); - case 78: - if (lookahead == '\n') ADVANCE(330); - if (lookahead == '\r') SKIP(79) + case 80: + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(80) if (lookahead == '!') ADVANCE(217); if (lookahead == '"') ADVANCE(218); if (lookahead == '$') ADVANCE(298); @@ -4463,7 +4435,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '.') ADVANCE(198); if (lookahead == ':') ADVANCE(199); if (lookahead == '<') ADVANCE(194); - if (lookahead == '>') ADVANCE(331); + if (lookahead == '>') ADVANCE(327); if (lookahead == 'F') ADVANCE(205); if (lookahead == 'I') ADVANCE(207); if (lookahead == 'N') ADVANCE(208); @@ -4472,22 +4444,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'X') ADVANCE(216); if (lookahead == '[') ADVANCE(282); if (lookahead == '\\') ADVANCE(179); - if (lookahead == ']') ADVANCE(284); if (lookahead == '^') ADVANCE(241); if (lookahead == '_') ADVANCE(167); - if (lookahead == '`') ADVANCE(320); - if (lookahead == '{') ADVANCE(150); + if (lookahead == '{') ADVANCE(291); if (lookahead == '|') ADVANCE(318); - if (lookahead == '~') ADVANCE(249); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(329); + if (lookahead == '~') ADVANCE(248); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(221); + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(221); END_STATE(); - case 79: - if (lookahead == '\n') ADVANCE(330); - if (lookahead == '\r') SKIP(79) + case 81: + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(81) + if (lookahead == ' ') ADVANCE(115); if (lookahead == '!') ADVANCE(217); if (lookahead == '"') ADVANCE(218); if (lookahead == '$') ADVANCE(298); @@ -4497,7 +4466,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '.') ADVANCE(198); if (lookahead == ':') ADVANCE(199); if (lookahead == '<') ADVANCE(194); - if (lookahead == '>') ADVANCE(331); + if (lookahead == '>') ADVANCE(327); if (lookahead == 'F') ADVANCE(205); if (lookahead == 'I') ADVANCE(207); if (lookahead == 'N') ADVANCE(208); @@ -4507,277 +4476,267 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(282); if (lookahead == '\\') ADVANCE(179); if (lookahead == '^') ADVANCE(241); - if (lookahead == '_') ADVANCE(167); - if (lookahead == '`') ADVANCE(320); + if (lookahead == '_') ADVANCE(165); if (lookahead == '{') ADVANCE(291); if (lookahead == '|') ADVANCE(318); if (lookahead == '~') ADVANCE(249); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(221); + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(221); END_STATE(); - case 80: - if (lookahead == '\n') ADVANCE(330); - if (lookahead == '\r') SKIP(80) - if (lookahead == ' ') ADVANCE(154); - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + case 82: + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(82) + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); + if (lookahead == '\'') ADVANCE(340); if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(332); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(335); - if (lookahead == 'I') ADVANCE(337); - if (lookahead == 'N') ADVANCE(338); - if (lookahead == 'T') ADVANCE(339); - if (lookahead == 'W') ADVANCE(336); - if (lookahead == 'X') ADVANCE(340); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); if (lookahead == '[') ADVANCE(281); if (lookahead == '\\') ADVANCE(178); if (lookahead == ']') ADVANCE(254); - if (lookahead == '^') ADVANCE(238); + if (lookahead == '^') ADVANCE(239); if (lookahead == '_') ADVANCE(162); - if (lookahead == '`') ADVANCE(319); if (lookahead == '{') ADVANCE(290); if (lookahead == '|') ADVANCE(317); if (lookahead == '~') ADVANCE(246); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(331); + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(327); END_STATE(); - case 81: - if (lookahead == '\n') ADVANCE(330); - if (lookahead == '\r') SKIP(81) - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + case 83: + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(82) + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); + if (lookahead == '\'') ADVANCE(340); if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(332); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(335); - if (lookahead == 'I') ADVANCE(337); - if (lookahead == 'N') ADVANCE(338); - if (lookahead == 'T') ADVANCE(339); - if (lookahead == 'W') ADVANCE(336); - if (lookahead == 'X') ADVANCE(340); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); if (lookahead == '[') ADVANCE(281); if (lookahead == '\\') ADVANCE(178); if (lookahead == ']') ADVANCE(254); if (lookahead == '^') ADVANCE(239); if (lookahead == '_') ADVANCE(162); - if (lookahead == '`') ADVANCE(319); - if (lookahead == '{') ADVANCE(290); + if (lookahead == '{') ADVANCE(149); if (lookahead == '|') ADVANCE(317); if (lookahead == '~') ADVANCE(246); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(325); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(331); + lookahead != 11 && + lookahead != '\f') ADVANCE(327); END_STATE(); - case 82: - if (lookahead == '\n') ADVANCE(330); - if (lookahead == '\r') SKIP(81) - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + case 84: + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(84) + if (lookahead == ' ') ADVANCE(154); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); + if (lookahead == '\'') ADVANCE(340); if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(332); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(335); - if (lookahead == 'I') ADVANCE(337); - if (lookahead == 'N') ADVANCE(338); - if (lookahead == 'T') ADVANCE(339); - if (lookahead == 'W') ADVANCE(336); - if (lookahead == 'X') ADVANCE(340); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); if (lookahead == '[') ADVANCE(281); if (lookahead == '\\') ADVANCE(178); if (lookahead == ']') ADVANCE(254); - if (lookahead == '^') ADVANCE(239); + if (lookahead == '^') ADVANCE(238); if (lookahead == '_') ADVANCE(162); - if (lookahead == '`') ADVANCE(319); - if (lookahead == '{') ADVANCE(149); + if (lookahead == '{') ADVANCE(290); if (lookahead == '|') ADVANCE(317); if (lookahead == '~') ADVANCE(246); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(329); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(331); + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(327); END_STATE(); - case 83: - if (lookahead == '\n') ADVANCE(330); - if (lookahead == '\r') SKIP(84) - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + case 85: + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(85) + if (lookahead == ' ') ADVANCE(160); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); + if (lookahead == '\'') ADVANCE(340); if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(333); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(335); - if (lookahead == 'I') ADVANCE(337); - if (lookahead == 'N') ADVANCE(338); - if (lookahead == 'T') ADVANCE(339); - if (lookahead == 'W') ADVANCE(336); - if (lookahead == 'X') ADVANCE(340); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); if (lookahead == '[') ADVANCE(281); if (lookahead == '\\') ADVANCE(178); if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(163); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead != 0 && + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(327); + END_STATE(); + case 86: + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(87) + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(239); if (lookahead == '_') ADVANCE(162); - if (lookahead == '`') ADVANCE(319); if (lookahead == '{') ADVANCE(290); if (lookahead == '|') ADVANCE(317); if (lookahead == '~') ADVANCE(246); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(329); + lookahead == ' ') ADVANCE(325); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(331); + lookahead != '\f') ADVANCE(327); END_STATE(); - case 84: - if (lookahead == '\n') ADVANCE(330); - if (lookahead == '\r') SKIP(84) - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + case 87: + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(87) + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); + if (lookahead == '\'') ADVANCE(340); if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(333); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(335); - if (lookahead == 'I') ADVANCE(337); - if (lookahead == 'N') ADVANCE(338); - if (lookahead == 'T') ADVANCE(339); - if (lookahead == 'W') ADVANCE(336); - if (lookahead == 'X') ADVANCE(340); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); if (lookahead == '[') ADVANCE(281); if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); + if (lookahead == '^') ADVANCE(239); if (lookahead == '_') ADVANCE(162); - if (lookahead == '`') ADVANCE(319); if (lookahead == '{') ADVANCE(290); if (lookahead == '|') ADVANCE(317); if (lookahead == '~') ADVANCE(246); if (lookahead != 0 && (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(331); + lookahead != ' ') ADVANCE(327); END_STATE(); - case 85: - if (lookahead == '\n') ADVANCE(330); - if (lookahead == '\r') SKIP(84) - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + case 88: + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(87) + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); + if (lookahead == '\'') ADVANCE(340); if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(333); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(335); - if (lookahead == 'I') ADVANCE(337); - if (lookahead == 'N') ADVANCE(338); - if (lookahead == 'T') ADVANCE(339); - if (lookahead == 'W') ADVANCE(336); - if (lookahead == 'X') ADVANCE(340); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); if (lookahead == '[') ADVANCE(281); if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); + if (lookahead == '^') ADVANCE(239); if (lookahead == '_') ADVANCE(162); - if (lookahead == '`') ADVANCE(319); if (lookahead == '{') ADVANCE(149); if (lookahead == '|') ADVANCE(317); if (lookahead == '~') ADVANCE(246); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(329); + lookahead == ' ') ADVANCE(325); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(331); + lookahead != '\f') ADVANCE(327); END_STATE(); - case 86: - if (lookahead == '\n') ADVANCE(330); - if (lookahead == '\r') SKIP(84) - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + case 89: + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(87) + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); + if (lookahead == '\'') ADVANCE(340); if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(333); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(335); - if (lookahead == 'I') ADVANCE(337); - if (lookahead == 'N') ADVANCE(338); - if (lookahead == 'T') ADVANCE(339); - if (lookahead == 'W') ADVANCE(336); - if (lookahead == 'X') ADVANCE(340); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); if (lookahead == '[') ADVANCE(281); if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); + if (lookahead == '^') ADVANCE(239); if (lookahead == '_') ADVANCE(162); - if (lookahead == '`') ADVANCE(319); if (lookahead == '{') ADVANCE(148); if (lookahead == '|') ADVANCE(317); if (lookahead == '~') ADVANCE(246); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(329); + lookahead == ' ') ADVANCE(325); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(331); + lookahead != '\f') ADVANCE(327); END_STATE(); - case 87: - if (lookahead == '\n') ADVANCE(330); - if (lookahead == '\r') SKIP(87) - if (lookahead == ' ') ADVANCE(154); - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(333); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(335); - if (lookahead == 'I') ADVANCE(337); - if (lookahead == 'N') ADVANCE(338); - if (lookahead == 'T') ADVANCE(339); - if (lookahead == 'W') ADVANCE(336); - if (lookahead == 'X') ADVANCE(340); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(162); - if (lookahead == '`') ADVANCE(319); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(331); - END_STATE(); - case 88: - if (lookahead == '\n') ADVANCE(330); - if (lookahead == '\r') SKIP(88) - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + case 90: + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(91) + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); + if (lookahead == '\'') ADVANCE(340); if (lookahead == '*') ADVANCE(172); if (lookahead == '-') ADVANCE(257); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); if (lookahead == 'F') ADVANCE(263); if (lookahead == 'I') ADVANCE(265); @@ -4787,30 +4746,32 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'X') ADVANCE(274); if (lookahead == '[') ADVANCE(281); if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(239); + if (lookahead == ']') ADVANCE(283); + if (lookahead == '^') ADVANCE(238); if (lookahead == '_') ADVANCE(166); - if (lookahead == '`') ADVANCE(319); - if (lookahead == '{') ADVANCE(290); + if (lookahead == '{') ADVANCE(149); if (lookahead == '|') ADVANCE(317); if (lookahead == '~') ADVANCE(246); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(325); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(331); + lookahead != 11 && + lookahead != '\f') ADVANCE(327); END_STATE(); - case 89: - if (lookahead == '\n') ADVANCE(330); - if (lookahead == '\r') SKIP(88) - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + case 91: + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(91) + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); + if (lookahead == '\'') ADVANCE(340); if (lookahead == '*') ADVANCE(172); if (lookahead == '-') ADVANCE(257); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); if (lookahead == 'F') ADVANCE(263); if (lookahead == 'I') ADVANCE(265); @@ -4820,34 +4781,31 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'X') ADVANCE(274); if (lookahead == '[') ADVANCE(281); if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(239); + if (lookahead == '^') ADVANCE(238); if (lookahead == '_') ADVANCE(166); - if (lookahead == '`') ADVANCE(319); - if (lookahead == '{') ADVANCE(149); + if (lookahead == '{') ADVANCE(290); if (lookahead == '|') ADVANCE(317); if (lookahead == '~') ADVANCE(246); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(329); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(331); + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(327); END_STATE(); - case 90: - if (lookahead == '\n') ADVANCE(330); - if (lookahead == '\r') SKIP(91) + case 92: + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(93) if (lookahead == '!') ADVANCE(217); if (lookahead == '"') ADVANCE(218); if (lookahead == '$') ADVANCE(298); if (lookahead == '\'') ADVANCE(218); if (lookahead == '*') ADVANCE(175); - if (lookahead == '-') ADVANCE(196); + if (lookahead == '-') ADVANCE(195); if (lookahead == '.') ADVANCE(198); if (lookahead == ':') ADVANCE(199); if (lookahead == '<') ADVANCE(194); - if (lookahead == '>') ADVANCE(331); + if (lookahead == '>') ADVANCE(327); if (lookahead == 'F') ADVANCE(205); if (lookahead == 'I') ADVANCE(207); if (lookahead == 'N') ADVANCE(208); @@ -4856,31 +4814,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'X') ADVANCE(216); if (lookahead == '[') ADVANCE(282); if (lookahead == '\\') ADVANCE(179); - if (lookahead == '^') ADVANCE(240); + if (lookahead == '^') ADVANCE(241); if (lookahead == '_') ADVANCE(167); - if (lookahead == '`') ADVANCE(320); if (lookahead == '{') ADVANCE(150); if (lookahead == '|') ADVANCE(318); if (lookahead == '~') ADVANCE(249); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(329); + lookahead == ' ') ADVANCE(325); if (lookahead != 0 && lookahead != 11 && lookahead != '\f') ADVANCE(221); END_STATE(); - case 91: - if (lookahead == '\n') ADVANCE(330); - if (lookahead == '\r') SKIP(91) + case 93: + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(93) if (lookahead == '!') ADVANCE(217); if (lookahead == '"') ADVANCE(218); if (lookahead == '$') ADVANCE(298); if (lookahead == '\'') ADVANCE(218); if (lookahead == '*') ADVANCE(175); - if (lookahead == '-') ADVANCE(196); + if (lookahead == '-') ADVANCE(195); if (lookahead == '.') ADVANCE(198); if (lookahead == ':') ADVANCE(199); if (lookahead == '<') ADVANCE(194); - if (lookahead == '>') ADVANCE(331); + if (lookahead == '>') ADVANCE(327); if (lookahead == 'F') ADVANCE(205); if (lookahead == 'I') ADVANCE(207); if (lookahead == 'N') ADVANCE(208); @@ -4889,9 +4846,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'X') ADVANCE(216); if (lookahead == '[') ADVANCE(282); if (lookahead == '\\') ADVANCE(179); - if (lookahead == '^') ADVANCE(240); + if (lookahead == '^') ADVANCE(241); if (lookahead == '_') ADVANCE(167); - if (lookahead == '`') ADVANCE(320); if (lookahead == '{') ADVANCE(291); if (lookahead == '|') ADVANCE(318); if (lookahead == '~') ADVANCE(249); @@ -4899,306 +4855,233 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '\t' || '\f' < lookahead) && lookahead != ' ') ADVANCE(221); END_STATE(); - case 92: - if (lookahead == '\n') ADVANCE(330); - if (lookahead == '\r') SKIP(94) - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(332); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(335); - if (lookahead == 'I') ADVANCE(337); - if (lookahead == 'N') ADVANCE(338); - if (lookahead == 'T') ADVANCE(339); - if (lookahead == 'W') ADVANCE(336); - if (lookahead == 'X') ADVANCE(340); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == ']') ADVANCE(283); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(162); - if (lookahead == '`') ADVANCE(319); - if (lookahead == '{') ADVANCE(149); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(329); - if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(331); - END_STATE(); - case 93: - if (lookahead == '\n') ADVANCE(330); - if (lookahead == '\r') SKIP(94) - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(332); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(335); - if (lookahead == 'I') ADVANCE(337); - if (lookahead == 'N') ADVANCE(338); - if (lookahead == 'T') ADVANCE(339); - if (lookahead == 'W') ADVANCE(336); - if (lookahead == 'X') ADVANCE(340); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == ']') ADVANCE(254); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(162); - if (lookahead == '`') ADVANCE(319); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(329); - if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(331); - END_STATE(); case 94: - if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(94) - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); + if (lookahead == '\'') ADVANCE(340); if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(332); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '-') ADVANCE(329); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(335); - if (lookahead == 'I') ADVANCE(337); - if (lookahead == 'N') ADVANCE(338); - if (lookahead == 'T') ADVANCE(339); - if (lookahead == 'W') ADVANCE(336); - if (lookahead == 'X') ADVANCE(340); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); if (lookahead == '[') ADVANCE(281); if (lookahead == '\\') ADVANCE(178); if (lookahead == ']') ADVANCE(254); if (lookahead == '^') ADVANCE(238); if (lookahead == '_') ADVANCE(162); - if (lookahead == '`') ADVANCE(319); if (lookahead == '{') ADVANCE(290); if (lookahead == '|') ADVANCE(317); if (lookahead == '~') ADVANCE(246); if (lookahead != 0 && (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(331); + lookahead != ' ') ADVANCE(327); END_STATE(); case 95: - if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(94) - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); + if (lookahead == '\'') ADVANCE(340); if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(332); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '-') ADVANCE(329); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(335); - if (lookahead == 'I') ADVANCE(337); - if (lookahead == 'N') ADVANCE(338); - if (lookahead == 'T') ADVANCE(339); - if (lookahead == 'W') ADVANCE(336); - if (lookahead == 'X') ADVANCE(340); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); if (lookahead == '[') ADVANCE(281); if (lookahead == '\\') ADVANCE(178); if (lookahead == ']') ADVANCE(254); if (lookahead == '^') ADVANCE(238); if (lookahead == '_') ADVANCE(162); - if (lookahead == '`') ADVANCE(319); - if (lookahead == '{') ADVANCE(148); + if (lookahead == '{') ADVANCE(149); if (lookahead == '|') ADVANCE(317); if (lookahead == '~') ADVANCE(246); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(329); + lookahead == ' ') ADVANCE(325); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(331); + lookahead != '\f') ADVANCE(327); END_STATE(); case 96: - if (lookahead == '\n') ADVANCE(330); - if (lookahead == '\r') SKIP(99) - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(96) + if (lookahead == ' ') ADVANCE(159); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(332); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(173); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(335); - if (lookahead == 'I') ADVANCE(337); - if (lookahead == 'N') ADVANCE(338); - if (lookahead == 'T') ADVANCE(339); - if (lookahead == 'W') ADVANCE(336); - if (lookahead == 'X') ADVANCE(340); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); if (lookahead == '[') ADVANCE(281); if (lookahead == '\\') ADVANCE(178); - if (lookahead == ']') ADVANCE(283); if (lookahead == '^') ADVANCE(238); if (lookahead == '_') ADVANCE(162); - if (lookahead == '`') ADVANCE(319); if (lookahead == '{') ADVANCE(290); if (lookahead == '|') ADVANCE(317); if (lookahead == '~') ADVANCE(246); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(329); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(331); + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(327); END_STATE(); case 97: - if (lookahead == '\n') ADVANCE(330); - if (lookahead == '\r') SKIP(99) - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(100) + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); + if (lookahead == '\'') ADVANCE(340); if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(332); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(335); - if (lookahead == 'I') ADVANCE(337); - if (lookahead == 'N') ADVANCE(338); - if (lookahead == 'T') ADVANCE(339); - if (lookahead == 'W') ADVANCE(336); - if (lookahead == 'X') ADVANCE(340); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); if (lookahead == '[') ADVANCE(281); if (lookahead == '\\') ADVANCE(178); if (lookahead == ']') ADVANCE(283); if (lookahead == '^') ADVANCE(238); if (lookahead == '_') ADVANCE(162); - if (lookahead == '`') ADVANCE(319); - if (lookahead == '{') ADVANCE(149); + if (lookahead == '{') ADVANCE(290); if (lookahead == '|') ADVANCE(317); if (lookahead == '~') ADVANCE(246); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(329); + lookahead == ' ') ADVANCE(325); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(331); + lookahead != '\f') ADVANCE(327); END_STATE(); case 98: - if (lookahead == '\n') ADVANCE(330); - if (lookahead == '\r') SKIP(99) - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(100) + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); + if (lookahead == '\'') ADVANCE(340); if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(332); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(335); - if (lookahead == 'I') ADVANCE(337); - if (lookahead == 'N') ADVANCE(338); - if (lookahead == 'T') ADVANCE(339); - if (lookahead == 'W') ADVANCE(336); - if (lookahead == 'X') ADVANCE(340); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); if (lookahead == '[') ADVANCE(281); if (lookahead == '\\') ADVANCE(178); if (lookahead == ']') ADVANCE(283); if (lookahead == '^') ADVANCE(238); if (lookahead == '_') ADVANCE(162); - if (lookahead == '`') ADVANCE(319); - if (lookahead == '{') ADVANCE(148); + if (lookahead == '{') ADVANCE(149); if (lookahead == '|') ADVANCE(317); if (lookahead == '~') ADVANCE(246); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(329); + lookahead == ' ') ADVANCE(325); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(331); + lookahead != '\f') ADVANCE(327); END_STATE(); case 99: - if (lookahead == '\n') ADVANCE(330); - if (lookahead == '\r') SKIP(99) - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(100) + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); + if (lookahead == '\'') ADVANCE(340); if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(332); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(335); - if (lookahead == 'I') ADVANCE(337); - if (lookahead == 'N') ADVANCE(338); - if (lookahead == 'T') ADVANCE(339); - if (lookahead == 'W') ADVANCE(336); - if (lookahead == 'X') ADVANCE(340); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); if (lookahead == '[') ADVANCE(281); if (lookahead == '\\') ADVANCE(178); + if (lookahead == ']') ADVANCE(283); if (lookahead == '^') ADVANCE(238); if (lookahead == '_') ADVANCE(162); - if (lookahead == '`') ADVANCE(319); - if (lookahead == '{') ADVANCE(290); + if (lookahead == '{') ADVANCE(148); if (lookahead == '|') ADVANCE(317); if (lookahead == '~') ADVANCE(246); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(325); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(331); + lookahead != 11 && + lookahead != '\f') ADVANCE(327); END_STATE(); case 100: - if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(100) - if (lookahead == ' ') ADVANCE(159); - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); + if (lookahead == '\'') ADVANCE(340); if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(332); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(335); - if (lookahead == 'I') ADVANCE(337); - if (lookahead == 'N') ADVANCE(338); - if (lookahead == 'T') ADVANCE(339); - if (lookahead == 'W') ADVANCE(336); - if (lookahead == 'X') ADVANCE(340); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); if (lookahead == '[') ADVANCE(281); if (lookahead == '\\') ADVANCE(178); if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(163); - if (lookahead == '`') ADVANCE(319); + if (lookahead == '_') ADVANCE(162); if (lookahead == '{') ADVANCE(290); if (lookahead == '|') ADVANCE(317); if (lookahead == '~') ADVANCE(246); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(331); + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(327); END_STATE(); case 101: - if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(101) - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); + if (lookahead == '\'') ADVANCE(340); if (lookahead == '*') ADVANCE(172); if (lookahead == '-') ADVANCE(257); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); if (lookahead == 'F') ADVANCE(263); if (lookahead == 'I') ADVANCE(265); @@ -5208,30 +5091,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'X') ADVANCE(274); if (lookahead == '[') ADVANCE(281); if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); + if (lookahead == '^') ADVANCE(239); if (lookahead == '_') ADVANCE(166); - if (lookahead == '`') ADVANCE(319); if (lookahead == '{') ADVANCE(290); if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(247); + if (lookahead == '~') ADVANCE(246); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); if (lookahead != 0 && (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(331); + lookahead != ' ') ADVANCE(327); END_STATE(); case 102: - if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(101) - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); + if (lookahead == '\'') ADVANCE(340); if (lookahead == '*') ADVANCE(172); if (lookahead == '-') ADVANCE(257); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); if (lookahead == 'F') ADVANCE(263); if (lookahead == 'I') ADVANCE(265); @@ -5241,34 +5123,33 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'X') ADVANCE(274); if (lookahead == '[') ADVANCE(281); if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); + if (lookahead == '^') ADVANCE(239); if (lookahead == '_') ADVANCE(166); - if (lookahead == '`') ADVANCE(319); if (lookahead == '{') ADVANCE(149); if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(247); + if (lookahead == '~') ADVANCE(246); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(329); + lookahead == ' ') ADVANCE(325); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(331); + lookahead != '\f') ADVANCE(327); END_STATE(); case 103: - if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(104) if (lookahead == '!') ADVANCE(217); if (lookahead == '"') ADVANCE(218); if (lookahead == '$') ADVANCE(298); if (lookahead == '\'') ADVANCE(218); if (lookahead == '*') ADVANCE(175); - if (lookahead == '-') ADVANCE(195); + if (lookahead == '-') ADVANCE(196); if (lookahead == '.') ADVANCE(198); if (lookahead == ':') ADVANCE(199); if (lookahead == '<') ADVANCE(194); - if (lookahead == '>') ADVANCE(331); + if (lookahead == '>') ADVANCE(327); if (lookahead == 'F') ADVANCE(205); if (lookahead == 'I') ADVANCE(207); if (lookahead == 'N') ADVANCE(208); @@ -5277,31 +5158,31 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'X') ADVANCE(216); if (lookahead == '[') ADVANCE(282); if (lookahead == '\\') ADVANCE(179); + if (lookahead == ']') ADVANCE(284); if (lookahead == '^') ADVANCE(241); if (lookahead == '_') ADVANCE(167); - if (lookahead == '`') ADVANCE(320); if (lookahead == '{') ADVANCE(150); if (lookahead == '|') ADVANCE(318); if (lookahead == '~') ADVANCE(249); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(329); + lookahead == ' ') ADVANCE(325); if (lookahead != 0 && lookahead != 11 && lookahead != '\f') ADVANCE(221); END_STATE(); case 104: - if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(104) if (lookahead == '!') ADVANCE(217); if (lookahead == '"') ADVANCE(218); if (lookahead == '$') ADVANCE(298); if (lookahead == '\'') ADVANCE(218); if (lookahead == '*') ADVANCE(175); - if (lookahead == '-') ADVANCE(195); + if (lookahead == '-') ADVANCE(196); if (lookahead == '.') ADVANCE(198); if (lookahead == ':') ADVANCE(199); if (lookahead == '<') ADVANCE(194); - if (lookahead == '>') ADVANCE(331); + if (lookahead == '>') ADVANCE(327); if (lookahead == 'F') ADVANCE(205); if (lookahead == 'I') ADVANCE(207); if (lookahead == 'N') ADVANCE(208); @@ -5312,7 +5193,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\\') ADVANCE(179); if (lookahead == '^') ADVANCE(241); if (lookahead == '_') ADVANCE(167); - if (lookahead == '`') ADVANCE(320); if (lookahead == '{') ADVANCE(291); if (lookahead == '|') ADVANCE(318); if (lookahead == '~') ADVANCE(249); @@ -5321,132 +5201,128 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(221); END_STATE(); case 105: - if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(105) if (lookahead == ' ') ADVANCE(154); - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); + if (lookahead == '\'') ADVANCE(340); if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(332); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '-') ADVANCE(329); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(335); - if (lookahead == 'I') ADVANCE(337); - if (lookahead == 'N') ADVANCE(338); - if (lookahead == 'T') ADVANCE(339); - if (lookahead == 'W') ADVANCE(336); - if (lookahead == 'X') ADVANCE(340); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); if (lookahead == '[') ADVANCE(281); if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(239); + if (lookahead == '^') ADVANCE(238); if (lookahead == '_') ADVANCE(162); - if (lookahead == '`') ADVANCE(319); if (lookahead == '{') ADVANCE(290); if (lookahead == '|') ADVANCE(317); if (lookahead == '~') ADVANCE(246); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(331); + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(327); END_STATE(); case 106: - if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(106) if (lookahead == ' ') ADVANCE(154); - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); + if (lookahead == '\'') ADVANCE(340); if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(332); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(335); - if (lookahead == 'I') ADVANCE(337); - if (lookahead == 'N') ADVANCE(338); - if (lookahead == 'T') ADVANCE(339); - if (lookahead == 'W') ADVANCE(336); - if (lookahead == 'X') ADVANCE(340); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); if (lookahead == '[') ADVANCE(281); if (lookahead == '\\') ADVANCE(178); if (lookahead == '^') ADVANCE(238); if (lookahead == '_') ADVANCE(162); - if (lookahead == '`') ADVANCE(319); if (lookahead == '{') ADVANCE(290); if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '~') ADVANCE(247); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(331); + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(327); END_STATE(); case 107: - if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(107) - if (lookahead == ' ') ADVANCE(160); - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + if (lookahead == ' ') ADVANCE(154); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); - if (lookahead == '*') ADVANCE(173); - if (lookahead == '-') ADVANCE(332); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(335); - if (lookahead == 'I') ADVANCE(337); - if (lookahead == 'N') ADVANCE(338); - if (lookahead == 'T') ADVANCE(339); - if (lookahead == 'W') ADVANCE(336); - if (lookahead == 'X') ADVANCE(340); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); if (lookahead == '[') ADVANCE(281); if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); + if (lookahead == '^') ADVANCE(239); if (lookahead == '_') ADVANCE(162); - if (lookahead == '`') ADVANCE(319); if (lookahead == '{') ADVANCE(290); if (lookahead == '|') ADVANCE(317); if (lookahead == '~') ADVANCE(246); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(331); + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(327); END_STATE(); case 108: - if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(108) if (lookahead == ' ') ADVANCE(154); - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); + if (lookahead == '\'') ADVANCE(340); if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(332); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(335); - if (lookahead == 'I') ADVANCE(337); - if (lookahead == 'N') ADVANCE(338); - if (lookahead == 'T') ADVANCE(339); - if (lookahead == 'W') ADVANCE(336); - if (lookahead == 'X') ADVANCE(340); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); if (lookahead == '[') ADVANCE(281); if (lookahead == '\\') ADVANCE(178); if (lookahead == '^') ADVANCE(238); if (lookahead == '_') ADVANCE(162); - if (lookahead == '`') ADVANCE(319); if (lookahead == '{') ADVANCE(290); if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(247); + if (lookahead == '~') ADVANCE(246); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(331); + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(327); END_STATE(); case 109: if (lookahead == '\r') SKIP(109) - if (lookahead == '"') ADVANCE(351); + if (lookahead == '"') ADVANCE(347); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(354); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(350); END_STATE(); case 110: if (lookahead == '\r') ADVANCE(286); @@ -5455,20 +5331,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')') ADVANCE(287); END_STATE(); case 111: - if (lookahead == '\r') ADVANCE(352); + if (lookahead == '\r') ADVANCE(348); if (lookahead != 0 && lookahead != '\n' && - lookahead != '"') ADVANCE(353); + lookahead != '"') ADVANCE(349); END_STATE(); case 112: - if (lookahead == '\r') ADVANCE(323); + if (lookahead == '\r') ADVANCE(319); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && lookahead != '=' && lookahead != '{' && - lookahead != '}') ADVANCE(324); + lookahead != '}') ADVANCE(320); END_STATE(); case 113: if (lookahead == ' ') ADVANCE(113); @@ -5477,11 +5353,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 114: if (lookahead == ' ') ADVANCE(114); - if (lookahead == '_') ADVANCE(130); + if (lookahead == '*') ADVANCE(129); END_STATE(); case 115: if (lookahead == ' ') ADVANCE(115); - if (lookahead == '*') ADVANCE(129); + if (lookahead == '_') ADVANCE(130); END_STATE(); case 116: if (lookahead == '.') ADVANCE(183); @@ -5535,59 +5411,58 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '}') ADVANCE(348); + lookahead != '}') ADVANCE(344); END_STATE(); case 132: if (eof) ADVANCE(145); - if (lookahead == '\t') ADVANCE(329); - if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\t') ADVANCE(325); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(140) if (lookahead == ' ') ADVANCE(161); - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); + if (lookahead == '\'') ADVANCE(340); if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(332); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(335); - if (lookahead == 'I') ADVANCE(337); - if (lookahead == 'N') ADVANCE(338); - if (lookahead == 'T') ADVANCE(339); - if (lookahead == 'W') ADVANCE(336); - if (lookahead == 'X') ADVANCE(340); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); if (lookahead == '[') ADVANCE(281); if (lookahead == '\\') ADVANCE(178); if (lookahead == '^') ADVANCE(238); if (lookahead == '_') ADVANCE(162); - if (lookahead == '`') ADVANCE(319); if (lookahead == '{') ADVANCE(149); if (lookahead == '|') ADVANCE(317); if (lookahead == '~') ADVANCE(246); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(331); + lookahead != '\f') ADVANCE(327); END_STATE(); case 133: if (eof) ADVANCE(145); - if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(133) if (lookahead == ' ') ADVANCE(158); - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(351); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(347); if (lookahead == '$') ADVANCE(297); if (lookahead == '%') ADVANCE(292); if (lookahead == '(') ADVANCE(285); if (lookahead == ')') ADVANCE(288); if (lookahead == '*') ADVANCE(173); - if (lookahead == '+') ADVANCE(342); + if (lookahead == '+') ADVANCE(338); if (lookahead == '-') ADVANCE(256); - if (lookahead == '.') ADVANCE(347); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '.') ADVANCE(343); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); - if (lookahead == '=') ADVANCE(350); + if (lookahead == '=') ADVANCE(346); if (lookahead == '>') ADVANCE(222); if (lookahead == 'F') ADVANCE(263); if (lookahead == 'I') ADVANCE(265); @@ -5600,255 +5475,248 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ']') ADVANCE(254); if (lookahead == '^') ADVANCE(239); if (lookahead == '_') ADVANCE(164); - if (lookahead == '`') ADVANCE(319); if (lookahead == '{') ADVANCE(289); if (lookahead == '|') ADVANCE(317); if (lookahead == '}') ADVANCE(151); if (lookahead == '~') ADVANCE(247); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'z')) ADVANCE(275); + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(331); + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(327); END_STATE(); case 134: if (eof) ADVANCE(145); - if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(135) - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); + if (lookahead == '\'') ADVANCE(340); if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(332); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(335); - if (lookahead == 'I') ADVANCE(337); - if (lookahead == 'N') ADVANCE(338); - if (lookahead == 'T') ADVANCE(339); - if (lookahead == 'W') ADVANCE(336); - if (lookahead == 'X') ADVANCE(340); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); if (lookahead == '[') ADVANCE(281); if (lookahead == '\\') ADVANCE(178); if (lookahead == '^') ADVANCE(238); if (lookahead == '_') ADVANCE(162); - if (lookahead == '`') ADVANCE(319); if (lookahead == '{') ADVANCE(290); if (lookahead == '|') ADVANCE(317); if (lookahead == '~') ADVANCE(246); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(329); + lookahead == ' ') ADVANCE(325); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(331); + lookahead != '\f') ADVANCE(327); END_STATE(); case 135: if (eof) ADVANCE(145); - if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(135) - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); + if (lookahead == '\'') ADVANCE(340); if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(332); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(335); - if (lookahead == 'I') ADVANCE(337); - if (lookahead == 'N') ADVANCE(338); - if (lookahead == 'T') ADVANCE(339); - if (lookahead == 'W') ADVANCE(336); - if (lookahead == 'X') ADVANCE(340); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); if (lookahead == '[') ADVANCE(281); if (lookahead == '\\') ADVANCE(178); if (lookahead == '^') ADVANCE(238); if (lookahead == '_') ADVANCE(162); - if (lookahead == '`') ADVANCE(319); if (lookahead == '{') ADVANCE(290); if (lookahead == '|') ADVANCE(317); if (lookahead == '~') ADVANCE(246); if (lookahead != 0 && (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(331); + lookahead != ' ') ADVANCE(327); END_STATE(); case 136: if (eof) ADVANCE(145); - if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(135) - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); + if (lookahead == '\'') ADVANCE(340); if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(332); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(335); - if (lookahead == 'I') ADVANCE(337); - if (lookahead == 'N') ADVANCE(338); - if (lookahead == 'T') ADVANCE(339); - if (lookahead == 'W') ADVANCE(336); - if (lookahead == 'X') ADVANCE(340); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); if (lookahead == '[') ADVANCE(281); if (lookahead == '\\') ADVANCE(178); if (lookahead == '^') ADVANCE(238); if (lookahead == '_') ADVANCE(162); - if (lookahead == '`') ADVANCE(319); if (lookahead == '{') ADVANCE(149); if (lookahead == '|') ADVANCE(317); if (lookahead == '~') ADVANCE(246); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(329); + lookahead == ' ') ADVANCE(325); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(331); + lookahead != '\f') ADVANCE(327); END_STATE(); case 137: if (eof) ADVANCE(145); - if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(135) - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); + if (lookahead == '\'') ADVANCE(340); if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(332); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(335); - if (lookahead == 'I') ADVANCE(337); - if (lookahead == 'N') ADVANCE(338); - if (lookahead == 'T') ADVANCE(339); - if (lookahead == 'W') ADVANCE(336); - if (lookahead == 'X') ADVANCE(340); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); if (lookahead == '[') ADVANCE(281); if (lookahead == '\\') ADVANCE(178); if (lookahead == '^') ADVANCE(238); if (lookahead == '_') ADVANCE(162); - if (lookahead == '`') ADVANCE(319); if (lookahead == '{') ADVANCE(148); if (lookahead == '|') ADVANCE(317); if (lookahead == '~') ADVANCE(246); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(329); + lookahead == ' ') ADVANCE(325); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(331); + lookahead != '\f') ADVANCE(327); END_STATE(); case 138: if (eof) ADVANCE(145); - if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(138) - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); + if (lookahead == '\'') ADVANCE(340); if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(332); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(335); - if (lookahead == 'I') ADVANCE(337); - if (lookahead == 'N') ADVANCE(338); - if (lookahead == 'T') ADVANCE(339); - if (lookahead == 'W') ADVANCE(336); - if (lookahead == 'X') ADVANCE(340); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); if (lookahead == '[') ADVANCE(281); if (lookahead == '\\') ADVANCE(178); if (lookahead == ']') ADVANCE(254); if (lookahead == '^') ADVANCE(238); if (lookahead == '_') ADVANCE(162); - if (lookahead == '`') ADVANCE(319); if (lookahead == '{') ADVANCE(290); if (lookahead == '|') ADVANCE(317); if (lookahead == '~') ADVANCE(246); if (lookahead != 0 && (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(331); + lookahead != ' ') ADVANCE(327); END_STATE(); case 139: if (eof) ADVANCE(145); - if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(138) - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); + if (lookahead == '\'') ADVANCE(340); if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(332); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(335); - if (lookahead == 'I') ADVANCE(337); - if (lookahead == 'N') ADVANCE(338); - if (lookahead == 'T') ADVANCE(339); - if (lookahead == 'W') ADVANCE(336); - if (lookahead == 'X') ADVANCE(340); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); if (lookahead == '[') ADVANCE(281); if (lookahead == '\\') ADVANCE(178); if (lookahead == ']') ADVANCE(254); if (lookahead == '^') ADVANCE(238); if (lookahead == '_') ADVANCE(162); - if (lookahead == '`') ADVANCE(319); if (lookahead == '{') ADVANCE(149); if (lookahead == '|') ADVANCE(317); if (lookahead == '~') ADVANCE(246); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(329); + lookahead == ' ') ADVANCE(325); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(331); + lookahead != '\f') ADVANCE(327); END_STATE(); case 140: if (eof) ADVANCE(145); - if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(140) if (lookahead == ' ') ADVANCE(154); - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); + if (lookahead == '\'') ADVANCE(340); if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(332); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(335); - if (lookahead == 'I') ADVANCE(337); - if (lookahead == 'N') ADVANCE(338); - if (lookahead == 'T') ADVANCE(339); - if (lookahead == 'W') ADVANCE(336); - if (lookahead == 'X') ADVANCE(340); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); if (lookahead == '[') ADVANCE(281); if (lookahead == '\\') ADVANCE(178); if (lookahead == '^') ADVANCE(238); if (lookahead == '_') ADVANCE(162); - if (lookahead == '`') ADVANCE(319); if (lookahead == '{') ADVANCE(290); if (lookahead == '|') ADVANCE(317); if (lookahead == '~') ADVANCE(246); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(331); + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(327); END_STATE(); case 141: if (eof) ADVANCE(145); - if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(141) - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); + if (lookahead == '\'') ADVANCE(340); if (lookahead == '*') ADVANCE(172); if (lookahead == '-') ADVANCE(257); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); if (lookahead == 'F') ADVANCE(263); if (lookahead == 'I') ADVANCE(265); @@ -5860,7 +5728,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\\') ADVANCE(178); if (lookahead == '^') ADVANCE(238); if (lookahead == '_') ADVANCE(166); - if (lookahead == '`') ADVANCE(319); if (lookahead == '{') ADVANCE(290); if (lookahead == '|') ADVANCE(317); if (lookahead == '~') ADVANCE(246); @@ -5869,20 +5736,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); if (lookahead != 0 && (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(331); + lookahead != ' ') ADVANCE(327); END_STATE(); case 142: if (eof) ADVANCE(145); - if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(141) - if (lookahead == '!') ADVANCE(341); - if (lookahead == '"') ADVANCE(344); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(344); + if (lookahead == '\'') ADVANCE(340); if (lookahead == '*') ADVANCE(172); if (lookahead == '-') ADVANCE(257); - if (lookahead == '.') ADVANCE(334); - if (lookahead == ':') ADVANCE(345); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); if (lookahead == '<') ADVANCE(193); if (lookahead == 'F') ADVANCE(263); if (lookahead == 'I') ADVANCE(265); @@ -5894,22 +5761,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\\') ADVANCE(178); if (lookahead == '^') ADVANCE(238); if (lookahead == '_') ADVANCE(166); - if (lookahead == '`') ADVANCE(319); if (lookahead == '{') ADVANCE(149); if (lookahead == '|') ADVANCE(317); if (lookahead == '~') ADVANCE(246); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(329); + lookahead == ' ') ADVANCE(325); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(331); + lookahead != '\f') ADVANCE(327); END_STATE(); case 143: if (eof) ADVANCE(145); - if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(144) if (lookahead == '!') ADVANCE(217); if (lookahead == '"') ADVANCE(218); @@ -5920,7 +5786,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '.') ADVANCE(198); if (lookahead == ':') ADVANCE(199); if (lookahead == '<') ADVANCE(194); - if (lookahead == '>') ADVANCE(331); + if (lookahead == '>') ADVANCE(327); if (lookahead == 'F') ADVANCE(205); if (lookahead == 'I') ADVANCE(207); if (lookahead == 'N') ADVANCE(208); @@ -5931,19 +5797,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\\') ADVANCE(179); if (lookahead == '^') ADVANCE(241); if (lookahead == '_') ADVANCE(167); - if (lookahead == '`') ADVANCE(320); if (lookahead == '{') ADVANCE(150); if (lookahead == '|') ADVANCE(318); if (lookahead == '~') ADVANCE(249); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(329); + lookahead == ' ') ADVANCE(325); if (lookahead != 0 && lookahead != 11 && lookahead != '\f') ADVANCE(221); END_STATE(); case 144: if (eof) ADVANCE(145); - if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(144) if (lookahead == '!') ADVANCE(217); if (lookahead == '"') ADVANCE(218); @@ -5954,7 +5819,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '.') ADVANCE(198); if (lookahead == ':') ADVANCE(199); if (lookahead == '<') ADVANCE(194); - if (lookahead == '>') ADVANCE(331); + if (lookahead == '>') ADVANCE(327); if (lookahead == 'F') ADVANCE(205); if (lookahead == 'I') ADVANCE(207); if (lookahead == 'N') ADVANCE(208); @@ -5965,7 +5830,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\\') ADVANCE(179); if (lookahead == '^') ADVANCE(241); if (lookahead == '_') ADVANCE(167); - if (lookahead == '`') ADVANCE(320); if (lookahead == '{') ADVANCE(291); if (lookahead == '|') ADVANCE(318); if (lookahead == '~') ADVANCE(249); @@ -6047,22 +5911,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 155: ACCEPT_TOKEN(anon_sym_SPACE); - if (lookahead == '\t') ADVANCE(329); - if (lookahead == ' ') ADVANCE(326); + if (lookahead == '\t') ADVANCE(325); + if (lookahead == ' ') ADVANCE(322); if (lookahead == '*') ADVANCE(129); if (lookahead == '_') ADVANCE(130); END_STATE(); case 156: ACCEPT_TOKEN(anon_sym_SPACE); - if (lookahead == '\t') ADVANCE(329); - if (lookahead == ' ') ADVANCE(327); - if (lookahead == '_') ADVANCE(130); + if (lookahead == '\t') ADVANCE(325); + if (lookahead == ' ') ADVANCE(323); + if (lookahead == '*') ADVANCE(129); END_STATE(); case 157: ACCEPT_TOKEN(anon_sym_SPACE); - if (lookahead == '\t') ADVANCE(329); - if (lookahead == ' ') ADVANCE(328); - if (lookahead == '*') ADVANCE(129); + if (lookahead == '\t') ADVANCE(325); + if (lookahead == ' ') ADVANCE(324); + if (lookahead == '_') ADVANCE(130); END_STATE(); case 158: ACCEPT_TOKEN(anon_sym_SPACE); @@ -6073,17 +5937,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 159: ACCEPT_TOKEN(anon_sym_SPACE); if (lookahead == ' ') ADVANCE(114); - if (lookahead == '_') ADVANCE(130); + if (lookahead == '*') ADVANCE(129); END_STATE(); case 160: ACCEPT_TOKEN(anon_sym_SPACE); if (lookahead == ' ') ADVANCE(115); - if (lookahead == '*') ADVANCE(129); + if (lookahead == '_') ADVANCE(130); END_STATE(); case 161: ACCEPT_TOKEN(anon_sym_SPACE); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(329); + lookahead == ' ') ADVANCE(325); END_STATE(); case 162: ACCEPT_TOKEN(anon_sym__); @@ -7099,38 +6963,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>') ADVANCE(221); END_STATE(); case 319: - ACCEPT_TOKEN(anon_sym_BQUOTE); - END_STATE(); - case 320: - ACCEPT_TOKEN(anon_sym_BQUOTE); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(221); - END_STATE(); - case 321: - ACCEPT_TOKEN(sym__verbatim_content); - if (lookahead == '\r') ADVANCE(321); - if (lookahead != 0 && - lookahead != '`') ADVANCE(322); - END_STATE(); - case 322: - ACCEPT_TOKEN(sym__verbatim_content); - if (lookahead != 0 && - lookahead != '`') ADVANCE(322); - END_STATE(); - case 323: ACCEPT_TOKEN(sym_language); - if (lookahead == '\r') ADVANCE(323); + if (lookahead == '\r') ADVANCE(319); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && lookahead != '=' && lookahead != '{' && - lookahead != '}') ADVANCE(324); + lookahead != '}') ADVANCE(320); END_STATE(); - case 324: + case 320: ACCEPT_TOKEN(sym_language); if (lookahead != 0 && lookahead != '\t' && @@ -7138,146 +6981,146 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ' && lookahead != '=' && lookahead != '{' && - lookahead != '}') ADVANCE(324); + lookahead != '}') ADVANCE(320); END_STATE(); - case 325: + case 321: ACCEPT_TOKEN(sym__whitespace); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); + lookahead == ' ') ADVANCE(321); END_STATE(); - case 326: + case 322: ACCEPT_TOKEN(sym__whitespace1); - if (lookahead == '\t') ADVANCE(329); - if (lookahead == ' ') ADVANCE(326); + if (lookahead == '\t') ADVANCE(325); + if (lookahead == ' ') ADVANCE(322); if (lookahead == '*') ADVANCE(129); if (lookahead == '_') ADVANCE(130); END_STATE(); - case 327: + case 323: ACCEPT_TOKEN(sym__whitespace1); - if (lookahead == '\t') ADVANCE(329); - if (lookahead == ' ') ADVANCE(327); - if (lookahead == '_') ADVANCE(130); + if (lookahead == '\t') ADVANCE(325); + if (lookahead == ' ') ADVANCE(323); + if (lookahead == '*') ADVANCE(129); END_STATE(); - case 328: + case 324: ACCEPT_TOKEN(sym__whitespace1); - if (lookahead == '\t') ADVANCE(329); - if (lookahead == ' ') ADVANCE(328); - if (lookahead == '*') ADVANCE(129); + if (lookahead == '\t') ADVANCE(325); + if (lookahead == ' ') ADVANCE(324); + if (lookahead == '_') ADVANCE(130); END_STATE(); - case 329: + case 325: ACCEPT_TOKEN(sym__whitespace1); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(329); + lookahead == ' ') ADVANCE(325); END_STATE(); - case 330: + case 326: ACCEPT_TOKEN(sym__newline); END_STATE(); - case 331: + case 327: ACCEPT_TOKEN(aux_sym__text_token1); END_STATE(); - case 332: + case 328: ACCEPT_TOKEN(aux_sym__text_token1); if (lookahead == '-') ADVANCE(189); END_STATE(); - case 333: + case 329: ACCEPT_TOKEN(aux_sym__text_token1); if (lookahead == '-') ADVANCE(189); if (lookahead == '}') ADVANCE(233); END_STATE(); - case 334: + case 330: ACCEPT_TOKEN(aux_sym__text_token1); if (lookahead == '.') ADVANCE(116); END_STATE(); - case 335: + case 331: ACCEPT_TOKEN(aux_sym__text_token1); if (lookahead == 'I') ADVANCE(127); END_STATE(); - case 336: + case 332: ACCEPT_TOKEN(aux_sym__text_token1); if (lookahead == 'I') ADVANCE(125); END_STATE(); - case 337: + case 333: ACCEPT_TOKEN(aux_sym__text_token1); if (lookahead == 'N') ADVANCE(121); END_STATE(); - case 338: + case 334: ACCEPT_TOKEN(aux_sym__text_token1); if (lookahead == 'O') ADVANCE(126); END_STATE(); - case 339: + case 335: ACCEPT_TOKEN(aux_sym__text_token1); if (lookahead == 'O') ADVANCE(118); END_STATE(); - case 340: + case 336: ACCEPT_TOKEN(aux_sym__text_token1); if (lookahead == 'X') ADVANCE(128); END_STATE(); - case 341: + case 337: ACCEPT_TOKEN(aux_sym__text_token1); if (lookahead == '[') ADVANCE(277); END_STATE(); - case 342: + case 338: ACCEPT_TOKEN(aux_sym__text_token1); if (lookahead == '}') ADVANCE(229); END_STATE(); - case 343: + case 339: ACCEPT_TOKEN(aux_sym__text_token1); if (lookahead == '}') ADVANCE(225); END_STATE(); - case 344: + case 340: ACCEPT_TOKEN(aux_sym__text_token1); if (lookahead == '}') ADVANCE(181); END_STATE(); - case 345: + case 341: ACCEPT_TOKEN(aux_sym__text_token1); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && lookahead != ':') ADVANCE(117); END_STATE(); - case 346: + case 342: ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); - case 347: + case 343: ACCEPT_TOKEN(anon_sym_DOT); if (lookahead == '.') ADVANCE(116); END_STATE(); - case 348: + case 344: ACCEPT_TOKEN(sym_identifier); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '}') ADVANCE(348); + lookahead != '}') ADVANCE(344); END_STATE(); - case 349: + case 345: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 350: + case 346: ACCEPT_TOKEN(anon_sym_EQ); if (lookahead == '}') ADVANCE(225); END_STATE(); - case 351: + case 347: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 352: + case 348: ACCEPT_TOKEN(aux_sym_value_token1); - if (lookahead == '\r') ADVANCE(352); + if (lookahead == '\r') ADVANCE(348); if (lookahead != 0 && lookahead != '\n' && - lookahead != '"') ADVANCE(353); + lookahead != '"') ADVANCE(349); END_STATE(); - case 353: + case 349: ACCEPT_TOKEN(aux_sym_value_token1); if (lookahead != 0 && lookahead != '\n' && - lookahead != '"') ADVANCE(353); + lookahead != '"') ADVANCE(349); END_STATE(); - case 354: + case 350: ACCEPT_TOKEN(aux_sym_value_token2); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(354); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(350); END_STATE(); default: return false; @@ -7285,601 +7128,601 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { } static const TSLexMode ts_lex_modes[STATE_COUNT] = { - [0] = {.lex_state = 0}, - [1] = {.lex_state = 134}, - [2] = {.lex_state = 139}, - [3] = {.lex_state = 24}, - [4] = {.lex_state = 1}, - [5] = {.lex_state = 27}, - [6] = {.lex_state = 9}, - [7] = {.lex_state = 29}, - [8] = {.lex_state = 68}, - [9] = {.lex_state = 82}, - [10] = {.lex_state = 92}, - [11] = {.lex_state = 32}, - [12] = {.lex_state = 71}, - [13] = {.lex_state = 136}, - [14] = {.lex_state = 136}, - [15] = {.lex_state = 136}, - [16] = {.lex_state = 85}, - [17] = {.lex_state = 136}, - [18] = {.lex_state = 85}, - [19] = {.lex_state = 36}, - [20] = {.lex_state = 36}, - [21] = {.lex_state = 36}, - [22] = {.lex_state = 36}, - [23] = {.lex_state = 36}, - [24] = {.lex_state = 36}, - [25] = {.lex_state = 139}, - [26] = {.lex_state = 139}, - [27] = {.lex_state = 139}, - [28] = {.lex_state = 139}, - [29] = {.lex_state = 139}, - [30] = {.lex_state = 85}, - [31] = {.lex_state = 139}, - [32] = {.lex_state = 3}, - [33] = {.lex_state = 3}, - [34] = {.lex_state = 3}, - [35] = {.lex_state = 3}, - [36] = {.lex_state = 3}, - [37] = {.lex_state = 32}, - [38] = {.lex_state = 139}, - [39] = {.lex_state = 32}, - [40] = {.lex_state = 32}, - [41] = {.lex_state = 32}, - [42] = {.lex_state = 41}, - [43] = {.lex_state = 32}, - [44] = {.lex_state = 11}, - [45] = {.lex_state = 11}, - [46] = {.lex_state = 11}, - [47] = {.lex_state = 85}, - [48] = {.lex_state = 85}, - [49] = {.lex_state = 11}, - [50] = {.lex_state = 11}, - [51] = {.lex_state = 71}, - [52] = {.lex_state = 41}, - [53] = {.lex_state = 71}, - [54] = {.lex_state = 85}, - [55] = {.lex_state = 71}, - [56] = {.lex_state = 97}, - [57] = {.lex_state = 71}, - [58] = {.lex_state = 97}, - [59] = {.lex_state = 97}, - [60] = {.lex_state = 97}, - [61] = {.lex_state = 71}, - [62] = {.lex_state = 11}, - [63] = {.lex_state = 97}, - [64] = {.lex_state = 97}, - [65] = {.lex_state = 136}, - [66] = {.lex_state = 3}, - [67] = {.lex_state = 41}, - [68] = {.lex_state = 41}, - [69] = {.lex_state = 136}, - [70] = {.lex_state = 41}, - [71] = {.lex_state = 41}, - [72] = {.lex_state = 134}, - [73] = {.lex_state = 10}, - [74] = {.lex_state = 10}, - [75] = {.lex_state = 134}, - [76] = {.lex_state = 134}, - [77] = {.lex_state = 134}, - [78] = {.lex_state = 134}, - [79] = {.lex_state = 96}, - [80] = {.lex_state = 96}, - [81] = {.lex_state = 39}, - [82] = {.lex_state = 134}, - [83] = {.lex_state = 134}, - [84] = {.lex_state = 69}, - [85] = {.lex_state = 69}, - [86] = {.lex_state = 134}, - [87] = {.lex_state = 134}, - [88] = {.lex_state = 134}, - [89] = {.lex_state = 134}, - [90] = {.lex_state = 83}, - [91] = {.lex_state = 2}, - [92] = {.lex_state = 134}, - [93] = {.lex_state = 134}, - [94] = {.lex_state = 2}, - [95] = {.lex_state = 134}, - [96] = {.lex_state = 30}, - [97] = {.lex_state = 134}, - [98] = {.lex_state = 83}, - [99] = {.lex_state = 30}, - [100] = {.lex_state = 134}, - [101] = {.lex_state = 39}, - [102] = {.lex_state = 134}, - [103] = {.lex_state = 134}, - [104] = {.lex_state = 134}, - [105] = {.lex_state = 34}, - [106] = {.lex_state = 134}, - [107] = {.lex_state = 134}, - [108] = {.lex_state = 134}, - [109] = {.lex_state = 34}, - [110] = {.lex_state = 134}, - [111] = {.lex_state = 93}, - [112] = {.lex_state = 93}, - [113] = {.lex_state = 134}, - [114] = {.lex_state = 134}, - [115] = {.lex_state = 134}, - [116] = {.lex_state = 134}, - [117] = {.lex_state = 134}, - [118] = {.lex_state = 134}, - [119] = {.lex_state = 134}, - [120] = {.lex_state = 134}, - [121] = {.lex_state = 134}, - [122] = {.lex_state = 95}, - [123] = {.lex_state = 97}, - [124] = {.lex_state = 132}, - [125] = {.lex_state = 5}, - [126] = {.lex_state = 139}, - [127] = {.lex_state = 45}, - [128] = {.lex_state = 142}, - [129] = {.lex_state = 47}, - [130] = {.lex_state = 136}, - [131] = {.lex_state = 49}, - [132] = {.lex_state = 42}, - [133] = {.lex_state = 132}, - [134] = {.lex_state = 36}, - [135] = {.lex_state = 98}, - [136] = {.lex_state = 16}, - [137] = {.lex_state = 17}, - [138] = {.lex_state = 17}, - [139] = {.lex_state = 85}, - [140] = {.lex_state = 16}, - [141] = {.lex_state = 15}, - [142] = {.lex_state = 15}, - [143] = {.lex_state = 33}, - [144] = {.lex_state = 86}, - [145] = {.lex_state = 18}, - [146] = {.lex_state = 18}, - [147] = {.lex_state = 6}, - [148] = {.lex_state = 74}, - [149] = {.lex_state = 13}, - [150] = {.lex_state = 32}, - [151] = {.lex_state = 89}, - [152] = {.lex_state = 19}, - [153] = {.lex_state = 3}, - [154] = {.lex_state = 102}, - [155] = {.lex_state = 41}, - [156] = {.lex_state = 137}, - [157] = {.lex_state = 19}, - [158] = {.lex_state = 4}, - [159] = {.lex_state = 71}, - [160] = {.lex_state = 37}, - [161] = {.lex_state = 21}, - [162] = {.lex_state = 12}, - [163] = {.lex_state = 52}, - [164] = {.lex_state = 22}, - [165] = {.lex_state = 22}, - [166] = {.lex_state = 72}, - [167] = {.lex_state = 11}, - [168] = {.lex_state = 21}, - [169] = {.lex_state = 7}, - [170] = {.lex_state = 5}, - [171] = {.lex_state = 7}, - [172] = {.lex_state = 71}, - [173] = {.lex_state = 41}, - [174] = {.lex_state = 54}, - [175] = {.lex_state = 8}, - [176] = {.lex_state = 139}, - [177] = {.lex_state = 11}, - [178] = {.lex_state = 11}, - [179] = {.lex_state = 11}, - [180] = {.lex_state = 72}, - [181] = {.lex_state = 4}, - [182] = {.lex_state = 32}, - [183] = {.lex_state = 41}, - [184] = {.lex_state = 57}, - [185] = {.lex_state = 71}, - [186] = {.lex_state = 37}, - [187] = {.lex_state = 137}, - [188] = {.lex_state = 3}, - [189] = {.lex_state = 97}, - [190] = {.lex_state = 3}, - [191] = {.lex_state = 78}, - [192] = {.lex_state = 136}, - [193] = {.lex_state = 32}, - [194] = {.lex_state = 97}, - [195] = {.lex_state = 32}, - [196] = {.lex_state = 90}, - [197] = {.lex_state = 71}, - [198] = {.lex_state = 41}, - [199] = {.lex_state = 97}, - [200] = {.lex_state = 14}, - [201] = {.lex_state = 3}, - [202] = {.lex_state = 36}, - [203] = {.lex_state = 86}, - [204] = {.lex_state = 85}, - [205] = {.lex_state = 33}, - [206] = {.lex_state = 139}, - [207] = {.lex_state = 85}, - [208] = {.lex_state = 103}, - [209] = {.lex_state = 12}, - [210] = {.lex_state = 59}, - [211] = {.lex_state = 98}, - [212] = {.lex_state = 42}, - [213] = {.lex_state = 95}, - [214] = {.lex_state = 139}, - [215] = {.lex_state = 136}, - [216] = {.lex_state = 36}, - [217] = {.lex_state = 61}, - [218] = {.lex_state = 143}, - [219] = {.lex_state = 85}, - [220] = {.lex_state = 136}, - [221] = {.lex_state = 36}, - [222] = {.lex_state = 3}, - [223] = {.lex_state = 97}, - [224] = {.lex_state = 41}, - [225] = {.lex_state = 41}, - [226] = {.lex_state = 41}, - [227] = {.lex_state = 41}, - [228] = {.lex_state = 41}, - [229] = {.lex_state = 41}, - [230] = {.lex_state = 41}, - [231] = {.lex_state = 136}, - [232] = {.lex_state = 41}, - [233] = {.lex_state = 41}, - [234] = {.lex_state = 41}, - [235] = {.lex_state = 41}, - [236] = {.lex_state = 41}, - [237] = {.lex_state = 41}, - [238] = {.lex_state = 41}, - [239] = {.lex_state = 85}, - [240] = {.lex_state = 85}, - [241] = {.lex_state = 85}, - [242] = {.lex_state = 85}, - [243] = {.lex_state = 83}, - [244] = {.lex_state = 85}, - [245] = {.lex_state = 136}, - [246] = {.lex_state = 85}, - [247] = {.lex_state = 85}, - [248] = {.lex_state = 85}, - [249] = {.lex_state = 85}, - [250] = {.lex_state = 85}, - [251] = {.lex_state = 85}, - [252] = {.lex_state = 85}, - [253] = {.lex_state = 136}, - [254] = {.lex_state = 85}, - [255] = {.lex_state = 85}, - [256] = {.lex_state = 85}, - [257] = {.lex_state = 85}, - [258] = {.lex_state = 85}, - [259] = {.lex_state = 85}, - [260] = {.lex_state = 85}, - [261] = {.lex_state = 85}, - [262] = {.lex_state = 85}, - [263] = {.lex_state = 85}, - [264] = {.lex_state = 85}, - [265] = {.lex_state = 41}, - [266] = {.lex_state = 41}, - [267] = {.lex_state = 134}, - [268] = {.lex_state = 85}, - [269] = {.lex_state = 85}, - [270] = {.lex_state = 85}, - [271] = {.lex_state = 85}, - [272] = {.lex_state = 85}, - [273] = {.lex_state = 85}, - [274] = {.lex_state = 85}, - [275] = {.lex_state = 36}, - [276] = {.lex_state = 71}, - [277] = {.lex_state = 41}, - [278] = {.lex_state = 71}, - [279] = {.lex_state = 20}, - [280] = {.lex_state = 41}, - [281] = {.lex_state = 41}, - [282] = {.lex_state = 41}, - [283] = {.lex_state = 41}, - [284] = {.lex_state = 41}, - [285] = {.lex_state = 41}, - [286] = {.lex_state = 41}, - [287] = {.lex_state = 20}, - [288] = {.lex_state = 41}, - [289] = {.lex_state = 39}, - [290] = {.lex_state = 71}, - [291] = {.lex_state = 71}, - [292] = {.lex_state = 69}, - [293] = {.lex_state = 41}, - [294] = {.lex_state = 41}, - [295] = {.lex_state = 71}, - [296] = {.lex_state = 136}, - [297] = {.lex_state = 71}, - [298] = {.lex_state = 71}, - [299] = {.lex_state = 71}, - [300] = {.lex_state = 71}, - [301] = {.lex_state = 71}, - [302] = {.lex_state = 71}, - [303] = {.lex_state = 71}, - [304] = {.lex_state = 41}, - [305] = {.lex_state = 41}, - [306] = {.lex_state = 136}, - [307] = {.lex_state = 71}, - [308] = {.lex_state = 71}, - [309] = {.lex_state = 71}, - [310] = {.lex_state = 71}, - [311] = {.lex_state = 71}, - [312] = {.lex_state = 71}, - [313] = {.lex_state = 71}, - [314] = {.lex_state = 71}, - [315] = {.lex_state = 71}, - [316] = {.lex_state = 71}, - [317] = {.lex_state = 71}, - [318] = {.lex_state = 36}, - [319] = {.lex_state = 36}, - [320] = {.lex_state = 97}, - [321] = {.lex_state = 71}, - [322] = {.lex_state = 71}, - [323] = {.lex_state = 71}, - [324] = {.lex_state = 71}, - [325] = {.lex_state = 71}, - [326] = {.lex_state = 71}, - [327] = {.lex_state = 71}, - [328] = {.lex_state = 36}, - [329] = {.lex_state = 32}, - [330] = {.lex_state = 36}, - [331] = {.lex_state = 32}, - [332] = {.lex_state = 36}, - [333] = {.lex_state = 36}, - [334] = {.lex_state = 36}, - [335] = {.lex_state = 97}, - [336] = {.lex_state = 36}, - [337] = {.lex_state = 36}, - [338] = {.lex_state = 36}, - [339] = {.lex_state = 36}, - [340] = {.lex_state = 36}, - [341] = {.lex_state = 36}, - [342] = {.lex_state = 36}, - [343] = {.lex_state = 32}, - [344] = {.lex_state = 32}, - [345] = {.lex_state = 30}, - [346] = {.lex_state = 36}, - [347] = {.lex_state = 36}, - [348] = {.lex_state = 32}, - [349] = {.lex_state = 97}, - [350] = {.lex_state = 32}, - [351] = {.lex_state = 32}, - [352] = {.lex_state = 32}, - [353] = {.lex_state = 32}, - [354] = {.lex_state = 32}, - [355] = {.lex_state = 32}, - [356] = {.lex_state = 32}, - [357] = {.lex_state = 36}, - [358] = {.lex_state = 36}, - [359] = {.lex_state = 11}, - [360] = {.lex_state = 32}, - [361] = {.lex_state = 32}, - [362] = {.lex_state = 32}, - [363] = {.lex_state = 32}, - [364] = {.lex_state = 32}, - [365] = {.lex_state = 32}, - [366] = {.lex_state = 32}, - [367] = {.lex_state = 32}, - [368] = {.lex_state = 32}, - [369] = {.lex_state = 32}, - [370] = {.lex_state = 32}, - [371] = {.lex_state = 11}, - [372] = {.lex_state = 36}, - [373] = {.lex_state = 3}, - [374] = {.lex_state = 32}, - [375] = {.lex_state = 32}, - [376] = {.lex_state = 32}, - [377] = {.lex_state = 32}, - [378] = {.lex_state = 32}, - [379] = {.lex_state = 32}, - [380] = {.lex_state = 32}, - [381] = {.lex_state = 36}, - [382] = {.lex_state = 139}, - [383] = {.lex_state = 36}, - [384] = {.lex_state = 139}, - [385] = {.lex_state = 36}, - [386] = {.lex_state = 36}, - [387] = {.lex_state = 36}, - [388] = {.lex_state = 36}, - [389] = {.lex_state = 11}, - [390] = {.lex_state = 36}, - [391] = {.lex_state = 34}, - [392] = {.lex_state = 36}, - [393] = {.lex_state = 3}, - [394] = {.lex_state = 36}, - [395] = {.lex_state = 36}, - [396] = {.lex_state = 139}, - [397] = {.lex_state = 139}, - [398] = {.lex_state = 93}, - [399] = {.lex_state = 139}, - [400] = {.lex_state = 136}, - [401] = {.lex_state = 139}, - [402] = {.lex_state = 3}, - [403] = {.lex_state = 139}, - [404] = {.lex_state = 139}, - [405] = {.lex_state = 139}, - [406] = {.lex_state = 139}, - [407] = {.lex_state = 139}, - [408] = {.lex_state = 139}, - [409] = {.lex_state = 139}, - [410] = {.lex_state = 139}, - [411] = {.lex_state = 32}, - [412] = {.lex_state = 139}, - [413] = {.lex_state = 139}, - [414] = {.lex_state = 139}, - [415] = {.lex_state = 139}, - [416] = {.lex_state = 139}, - [417] = {.lex_state = 139}, - [418] = {.lex_state = 139}, - [419] = {.lex_state = 139}, - [420] = {.lex_state = 139}, - [421] = {.lex_state = 139}, - [422] = {.lex_state = 139}, - [423] = {.lex_state = 139}, - [424] = {.lex_state = 32}, - [425] = {.lex_state = 71}, - [426] = {.lex_state = 32}, - [427] = {.lex_state = 139}, - [428] = {.lex_state = 139}, - [429] = {.lex_state = 139}, - [430] = {.lex_state = 139}, - [431] = {.lex_state = 139}, - [432] = {.lex_state = 139}, - [433] = {.lex_state = 139}, - [434] = {.lex_state = 71}, - [435] = {.lex_state = 3}, - [436] = {.lex_state = 85}, - [437] = {.lex_state = 3}, - [438] = {.lex_state = 71}, - [439] = {.lex_state = 85}, - [440] = {.lex_state = 41}, - [441] = {.lex_state = 85}, - [442] = {.lex_state = 136}, - [443] = {.lex_state = 41}, - [444] = {.lex_state = 136}, - [445] = {.lex_state = 136}, - [446] = {.lex_state = 136}, - [447] = {.lex_state = 136}, - [448] = {.lex_state = 136}, - [449] = {.lex_state = 3}, - [450] = {.lex_state = 3}, - [451] = {.lex_state = 2}, - [452] = {.lex_state = 36}, - [453] = {.lex_state = 41}, - [454] = {.lex_state = 3}, - [455] = {.lex_state = 36}, - [456] = {.lex_state = 3}, - [457] = {.lex_state = 36}, - [458] = {.lex_state = 3}, - [459] = {.lex_state = 3}, - [460] = {.lex_state = 3}, - [461] = {.lex_state = 3}, - [462] = {.lex_state = 3}, - [463] = {.lex_state = 97}, - [464] = {.lex_state = 97}, - [465] = {.lex_state = 97}, - [466] = {.lex_state = 3}, - [467] = {.lex_state = 3}, - [468] = {.lex_state = 3}, - [469] = {.lex_state = 3}, - [470] = {.lex_state = 3}, - [471] = {.lex_state = 3}, - [472] = {.lex_state = 3}, - [473] = {.lex_state = 3}, - [474] = {.lex_state = 3}, - [475] = {.lex_state = 3}, - [476] = {.lex_state = 3}, - [477] = {.lex_state = 136}, - [478] = {.lex_state = 97}, - [479] = {.lex_state = 97}, - [480] = {.lex_state = 3}, - [481] = {.lex_state = 3}, - [482] = {.lex_state = 3}, - [483] = {.lex_state = 3}, - [484] = {.lex_state = 3}, - [485] = {.lex_state = 3}, - [486] = {.lex_state = 3}, - [487] = {.lex_state = 97}, - [488] = {.lex_state = 11}, - [489] = {.lex_state = 97}, - [490] = {.lex_state = 11}, - [491] = {.lex_state = 136}, - [492] = {.lex_state = 136}, - [493] = {.lex_state = 136}, - [494] = {.lex_state = 136}, - [495] = {.lex_state = 136}, - [496] = {.lex_state = 136}, - [497] = {.lex_state = 97}, - [498] = {.lex_state = 97}, - [499] = {.lex_state = 136}, - [500] = {.lex_state = 136}, - [501] = {.lex_state = 136}, - [502] = {.lex_state = 11}, - [503] = {.lex_state = 11}, - [504] = {.lex_state = 10}, - [505] = {.lex_state = 136}, - [506] = {.lex_state = 136}, - [507] = {.lex_state = 11}, - [508] = {.lex_state = 97}, - [509] = {.lex_state = 11}, - [510] = {.lex_state = 11}, - [511] = {.lex_state = 11}, - [512] = {.lex_state = 11}, - [513] = {.lex_state = 11}, - [514] = {.lex_state = 11}, - [515] = {.lex_state = 11}, - [516] = {.lex_state = 136}, - [517] = {.lex_state = 136}, - [518] = {.lex_state = 97}, - [519] = {.lex_state = 11}, - [520] = {.lex_state = 11}, - [521] = {.lex_state = 11}, - [522] = {.lex_state = 11}, - [523] = {.lex_state = 11}, - [524] = {.lex_state = 11}, - [525] = {.lex_state = 11}, - [526] = {.lex_state = 11}, - [527] = {.lex_state = 11}, - [528] = {.lex_state = 11}, - [529] = {.lex_state = 11}, - [530] = {.lex_state = 97}, - [531] = {.lex_state = 97}, - [532] = {.lex_state = 97}, - [533] = {.lex_state = 11}, - [534] = {.lex_state = 11}, - [535] = {.lex_state = 11}, - [536] = {.lex_state = 11}, - [537] = {.lex_state = 11}, - [538] = {.lex_state = 11}, - [539] = {.lex_state = 11}, - [540] = {.lex_state = 97}, - [541] = {.lex_state = 97}, - [542] = {.lex_state = 97}, - [543] = {.lex_state = 97}, - [544] = {.lex_state = 97}, - [545] = {.lex_state = 97}, - [546] = {.lex_state = 136}, - [547] = {.lex_state = 97}, - [548] = {.lex_state = 20}, - [549] = {.lex_state = 41}, - [550] = {.lex_state = 136}, - [551] = {.lex_state = 136}, - [552] = {.lex_state = 136}, - [553] = {.lex_state = 136}, - [554] = {.lex_state = 136}, - [555] = {.lex_state = 97}, - [556] = {.lex_state = 97}, - [557] = {.lex_state = 96}, - [558] = {.lex_state = 97}, - [559] = {.lex_state = 136}, - [560] = {.lex_state = 97}, - [561] = {.lex_state = 97}, - [562] = {.lex_state = 97}, - [563] = {.lex_state = 97}, - [564] = {.lex_state = 97}, - [565] = {.lex_state = 96}, - [566] = {.lex_state = 39}, - [567] = {.lex_state = 83}, - [568] = {.lex_state = 134}, - [569] = {.lex_state = 83}, - [570] = {.lex_state = 83}, - [571] = {.lex_state = 96}, - [572] = {.lex_state = 69}, - [573] = {.lex_state = 34}, - [574] = {.lex_state = 39}, - [575] = {.lex_state = 30}, - [576] = {.lex_state = 10}, - [577] = {.lex_state = 39}, - [578] = {.lex_state = 69}, - [579] = {.lex_state = 10}, - [580] = {.lex_state = 10}, - [581] = {.lex_state = 30}, - [582] = {.lex_state = 34}, - [583] = {.lex_state = 134}, - [584] = {.lex_state = 69}, - [585] = {.lex_state = 30}, - [586] = {.lex_state = 2}, - [587] = {.lex_state = 134}, - [588] = {.lex_state = 2}, - [589] = {.lex_state = 93}, - [590] = {.lex_state = 2}, - [591] = {.lex_state = 93}, - [592] = {.lex_state = 34}, - [593] = {.lex_state = 96}, - [594] = {.lex_state = 93}, + [0] = {.lex_state = 0, .external_lex_state = 1}, + [1] = {.lex_state = 134, .external_lex_state = 2}, + [2] = {.lex_state = 24, .external_lex_state = 2}, + [3] = {.lex_state = 1, .external_lex_state = 2}, + [4] = {.lex_state = 27, .external_lex_state = 2}, + [5] = {.lex_state = 29, .external_lex_state = 2}, + [6] = {.lex_state = 66, .external_lex_state = 2}, + [7] = {.lex_state = 83, .external_lex_state = 2}, + [8] = {.lex_state = 9, .external_lex_state = 2}, + [9] = {.lex_state = 95, .external_lex_state = 2}, + [10] = {.lex_state = 139, .external_lex_state = 2}, + [11] = {.lex_state = 3, .external_lex_state = 2}, + [12] = {.lex_state = 33, .external_lex_state = 2}, + [13] = {.lex_state = 136, .external_lex_state = 2}, + [14] = {.lex_state = 136, .external_lex_state = 2}, + [15] = {.lex_state = 136, .external_lex_state = 2}, + [16] = {.lex_state = 136, .external_lex_state = 2}, + [17] = {.lex_state = 136, .external_lex_state = 2}, + [18] = {.lex_state = 136, .external_lex_state = 2}, + [19] = {.lex_state = 33, .external_lex_state = 2}, + [20] = {.lex_state = 139, .external_lex_state = 2}, + [21] = {.lex_state = 139, .external_lex_state = 2}, + [22] = {.lex_state = 139, .external_lex_state = 2}, + [23] = {.lex_state = 139, .external_lex_state = 2}, + [24] = {.lex_state = 139, .external_lex_state = 2}, + [25] = {.lex_state = 139, .external_lex_state = 2}, + [26] = {.lex_state = 139, .external_lex_state = 2}, + [27] = {.lex_state = 37, .external_lex_state = 2}, + [28] = {.lex_state = 37, .external_lex_state = 2}, + [29] = {.lex_state = 74, .external_lex_state = 2}, + [30] = {.lex_state = 37, .external_lex_state = 2}, + [31] = {.lex_state = 37, .external_lex_state = 2}, + [32] = {.lex_state = 3, .external_lex_state = 2}, + [33] = {.lex_state = 3, .external_lex_state = 2}, + [34] = {.lex_state = 3, .external_lex_state = 2}, + [35] = {.lex_state = 3, .external_lex_state = 2}, + [36] = {.lex_state = 11, .external_lex_state = 2}, + [37] = {.lex_state = 37, .external_lex_state = 2}, + [38] = {.lex_state = 37, .external_lex_state = 2}, + [39] = {.lex_state = 3, .external_lex_state = 2}, + [40] = {.lex_state = 33, .external_lex_state = 2}, + [41] = {.lex_state = 88, .external_lex_state = 2}, + [42] = {.lex_state = 74, .external_lex_state = 2}, + [43] = {.lex_state = 88, .external_lex_state = 2}, + [44] = {.lex_state = 88, .external_lex_state = 2}, + [45] = {.lex_state = 74, .external_lex_state = 2}, + [46] = {.lex_state = 88, .external_lex_state = 2}, + [47] = {.lex_state = 74, .external_lex_state = 2}, + [48] = {.lex_state = 11, .external_lex_state = 2}, + [49] = {.lex_state = 74, .external_lex_state = 2}, + [50] = {.lex_state = 98, .external_lex_state = 2}, + [51] = {.lex_state = 33, .external_lex_state = 2}, + [52] = {.lex_state = 74, .external_lex_state = 2}, + [53] = {.lex_state = 11, .external_lex_state = 2}, + [54] = {.lex_state = 98, .external_lex_state = 2}, + [55] = {.lex_state = 98, .external_lex_state = 2}, + [56] = {.lex_state = 98, .external_lex_state = 2}, + [57] = {.lex_state = 98, .external_lex_state = 2}, + [58] = {.lex_state = 98, .external_lex_state = 2}, + [59] = {.lex_state = 11, .external_lex_state = 2}, + [60] = {.lex_state = 41, .external_lex_state = 2}, + [61] = {.lex_state = 11, .external_lex_state = 2}, + [62] = {.lex_state = 33, .external_lex_state = 2}, + [63] = {.lex_state = 41, .external_lex_state = 2}, + [64] = {.lex_state = 41, .external_lex_state = 2}, + [65] = {.lex_state = 41, .external_lex_state = 2}, + [66] = {.lex_state = 41, .external_lex_state = 2}, + [67] = {.lex_state = 41, .external_lex_state = 2}, + [68] = {.lex_state = 88, .external_lex_state = 2}, + [69] = {.lex_state = 11, .external_lex_state = 2}, + [70] = {.lex_state = 33, .external_lex_state = 2}, + [71] = {.lex_state = 88, .external_lex_state = 2}, + [72] = {.lex_state = 134, .external_lex_state = 2}, + [73] = {.lex_state = 10, .external_lex_state = 2}, + [74] = {.lex_state = 10, .external_lex_state = 2}, + [75] = {.lex_state = 134, .external_lex_state = 2}, + [76] = {.lex_state = 134, .external_lex_state = 2}, + [77] = {.lex_state = 39, .external_lex_state = 2}, + [78] = {.lex_state = 134, .external_lex_state = 2}, + [79] = {.lex_state = 97, .external_lex_state = 2}, + [80] = {.lex_state = 97, .external_lex_state = 2}, + [81] = {.lex_state = 134, .external_lex_state = 2}, + [82] = {.lex_state = 134, .external_lex_state = 2}, + [83] = {.lex_state = 134, .external_lex_state = 2}, + [84] = {.lex_state = 2, .external_lex_state = 2}, + [85] = {.lex_state = 86, .external_lex_state = 2}, + [86] = {.lex_state = 134, .external_lex_state = 2}, + [87] = {.lex_state = 2, .external_lex_state = 2}, + [88] = {.lex_state = 86, .external_lex_state = 2}, + [89] = {.lex_state = 134, .external_lex_state = 2}, + [90] = {.lex_state = 134, .external_lex_state = 2}, + [91] = {.lex_state = 134, .external_lex_state = 2}, + [92] = {.lex_state = 134, .external_lex_state = 2}, + [93] = {.lex_state = 134, .external_lex_state = 2}, + [94] = {.lex_state = 134, .external_lex_state = 2}, + [95] = {.lex_state = 134, .external_lex_state = 2}, + [96] = {.lex_state = 134, .external_lex_state = 2}, + [97] = {.lex_state = 134, .external_lex_state = 2}, + [98] = {.lex_state = 31, .external_lex_state = 2}, + [99] = {.lex_state = 134, .external_lex_state = 2}, + [100] = {.lex_state = 134, .external_lex_state = 2}, + [101] = {.lex_state = 134, .external_lex_state = 2}, + [102] = {.lex_state = 67, .external_lex_state = 2}, + [103] = {.lex_state = 67, .external_lex_state = 2}, + [104] = {.lex_state = 134, .external_lex_state = 2}, + [105] = {.lex_state = 134, .external_lex_state = 2}, + [106] = {.lex_state = 134, .external_lex_state = 2}, + [107] = {.lex_state = 134, .external_lex_state = 2}, + [108] = {.lex_state = 134, .external_lex_state = 2}, + [109] = {.lex_state = 134, .external_lex_state = 2}, + [110] = {.lex_state = 134, .external_lex_state = 2}, + [111] = {.lex_state = 134, .external_lex_state = 2}, + [112] = {.lex_state = 134, .external_lex_state = 2}, + [113] = {.lex_state = 39, .external_lex_state = 2}, + [114] = {.lex_state = 134, .external_lex_state = 2}, + [115] = {.lex_state = 134, .external_lex_state = 2}, + [116] = {.lex_state = 72, .external_lex_state = 2}, + [117] = {.lex_state = 134, .external_lex_state = 2}, + [118] = {.lex_state = 35, .external_lex_state = 2}, + [119] = {.lex_state = 31, .external_lex_state = 2}, + [120] = {.lex_state = 35, .external_lex_state = 2}, + [121] = {.lex_state = 72, .external_lex_state = 2}, + [122] = {.lex_state = 16, .external_lex_state = 2}, + [123] = {.lex_state = 17, .external_lex_state = 2}, + [124] = {.lex_state = 44, .external_lex_state = 2}, + [125] = {.lex_state = 5, .external_lex_state = 2}, + [126] = {.lex_state = 15, .external_lex_state = 2}, + [127] = {.lex_state = 15, .external_lex_state = 2}, + [128] = {.lex_state = 38, .external_lex_state = 2}, + [129] = {.lex_state = 18, .external_lex_state = 2}, + [130] = {.lex_state = 132, .external_lex_state = 2}, + [131] = {.lex_state = 42, .external_lex_state = 2}, + [132] = {.lex_state = 33, .external_lex_state = 2}, + [133] = {.lex_state = 142, .external_lex_state = 2}, + [134] = {.lex_state = 136, .external_lex_state = 2}, + [135] = {.lex_state = 47, .external_lex_state = 2}, + [136] = {.lex_state = 37, .external_lex_state = 2}, + [137] = {.lex_state = 49, .external_lex_state = 2}, + [138] = {.lex_state = 139, .external_lex_state = 2}, + [139] = {.lex_state = 77, .external_lex_state = 2}, + [140] = {.lex_state = 132, .external_lex_state = 2}, + [141] = {.lex_state = 69, .external_lex_state = 2}, + [142] = {.lex_state = 75, .external_lex_state = 2}, + [143] = {.lex_state = 99, .external_lex_state = 2}, + [144] = {.lex_state = 16, .external_lex_state = 2}, + [145] = {.lex_state = 34, .external_lex_state = 2}, + [146] = {.lex_state = 98, .external_lex_state = 2}, + [147] = {.lex_state = 90, .external_lex_state = 2}, + [148] = {.lex_state = 41, .external_lex_state = 2}, + [149] = {.lex_state = 74, .external_lex_state = 2}, + [150] = {.lex_state = 19, .external_lex_state = 2}, + [151] = {.lex_state = 19, .external_lex_state = 2}, + [152] = {.lex_state = 89, .external_lex_state = 2}, + [153] = {.lex_state = 6, .external_lex_state = 2}, + [154] = {.lex_state = 18, .external_lex_state = 2}, + [155] = {.lex_state = 3, .external_lex_state = 2}, + [156] = {.lex_state = 88, .external_lex_state = 2}, + [157] = {.lex_state = 20, .external_lex_state = 2}, + [158] = {.lex_state = 4, .external_lex_state = 2}, + [159] = {.lex_state = 102, .external_lex_state = 2}, + [160] = {.lex_state = 17, .external_lex_state = 2}, + [161] = {.lex_state = 5, .external_lex_state = 2}, + [162] = {.lex_state = 137, .external_lex_state = 2}, + [163] = {.lex_state = 52, .external_lex_state = 2}, + [164] = {.lex_state = 13, .external_lex_state = 2}, + [165] = {.lex_state = 21, .external_lex_state = 2}, + [166] = {.lex_state = 7, .external_lex_state = 2}, + [167] = {.lex_state = 21, .external_lex_state = 2}, + [168] = {.lex_state = 7, .external_lex_state = 2}, + [169] = {.lex_state = 20, .external_lex_state = 2}, + [170] = {.lex_state = 12, .external_lex_state = 2}, + [171] = {.lex_state = 11, .external_lex_state = 2}, + [172] = {.lex_state = 54, .external_lex_state = 2}, + [173] = {.lex_state = 11, .external_lex_state = 2}, + [174] = {.lex_state = 41, .external_lex_state = 2}, + [175] = {.lex_state = 88, .external_lex_state = 2}, + [176] = {.lex_state = 56, .external_lex_state = 2}, + [177] = {.lex_state = 8, .external_lex_state = 2}, + [178] = {.lex_state = 98, .external_lex_state = 2}, + [179] = {.lex_state = 11, .external_lex_state = 2}, + [180] = {.lex_state = 3, .external_lex_state = 2}, + [181] = {.lex_state = 88, .external_lex_state = 2}, + [182] = {.lex_state = 37, .external_lex_state = 2}, + [183] = {.lex_state = 74, .external_lex_state = 2}, + [184] = {.lex_state = 79, .external_lex_state = 2}, + [185] = {.lex_state = 136, .external_lex_state = 2}, + [186] = {.lex_state = 92, .external_lex_state = 2}, + [187] = {.lex_state = 103, .external_lex_state = 2}, + [188] = {.lex_state = 14, .external_lex_state = 2}, + [189] = {.lex_state = 3, .external_lex_state = 2}, + [190] = {.lex_state = 98, .external_lex_state = 2}, + [191] = {.lex_state = 33, .external_lex_state = 2}, + [192] = {.lex_state = 139, .external_lex_state = 2}, + [193] = {.lex_state = 37, .external_lex_state = 2}, + [194] = {.lex_state = 59, .external_lex_state = 2}, + [195] = {.lex_state = 41, .external_lex_state = 2}, + [196] = {.lex_state = 143, .external_lex_state = 2}, + [197] = {.lex_state = 33, .external_lex_state = 2}, + [198] = {.lex_state = 136, .external_lex_state = 2}, + [199] = {.lex_state = 74, .external_lex_state = 2}, + [200] = {.lex_state = 139, .external_lex_state = 2}, + [201] = {.lex_state = 61, .external_lex_state = 2}, + [202] = {.lex_state = 3, .external_lex_state = 2}, + [203] = {.lex_state = 97, .external_lex_state = 2}, + [204] = {.lex_state = 41, .external_lex_state = 2}, + [205] = {.lex_state = 39, .external_lex_state = 2}, + [206] = {.lex_state = 41, .external_lex_state = 2}, + [207] = {.lex_state = 136, .external_lex_state = 2}, + [208] = {.lex_state = 41, .external_lex_state = 2}, + [209] = {.lex_state = 41, .external_lex_state = 2}, + [210] = {.lex_state = 41, .external_lex_state = 2}, + [211] = {.lex_state = 41, .external_lex_state = 2}, + [212] = {.lex_state = 41, .external_lex_state = 2}, + [213] = {.lex_state = 41, .external_lex_state = 2}, + [214] = {.lex_state = 41, .external_lex_state = 2}, + [215] = {.lex_state = 136, .external_lex_state = 2}, + [216] = {.lex_state = 41, .external_lex_state = 2}, + [217] = {.lex_state = 41, .external_lex_state = 2}, + [218] = {.lex_state = 41, .external_lex_state = 2}, + [219] = {.lex_state = 41, .external_lex_state = 2}, + [220] = {.lex_state = 41, .external_lex_state = 2}, + [221] = {.lex_state = 41, .external_lex_state = 2}, + [222] = {.lex_state = 41, .external_lex_state = 2}, + [223] = {.lex_state = 41, .external_lex_state = 2}, + [224] = {.lex_state = 41, .external_lex_state = 2}, + [225] = {.lex_state = 41, .external_lex_state = 2}, + [226] = {.lex_state = 41, .external_lex_state = 2}, + [227] = {.lex_state = 41, .external_lex_state = 2}, + [228] = {.lex_state = 136, .external_lex_state = 2}, + [229] = {.lex_state = 41, .external_lex_state = 2}, + [230] = {.lex_state = 41, .external_lex_state = 2}, + [231] = {.lex_state = 41, .external_lex_state = 2}, + [232] = {.lex_state = 41, .external_lex_state = 2}, + [233] = {.lex_state = 41, .external_lex_state = 2}, + [234] = {.lex_state = 41, .external_lex_state = 2}, + [235] = {.lex_state = 74, .external_lex_state = 2}, + [236] = {.lex_state = 74, .external_lex_state = 2}, + [237] = {.lex_state = 74, .external_lex_state = 2}, + [238] = {.lex_state = 74, .external_lex_state = 2}, + [239] = {.lex_state = 74, .external_lex_state = 2}, + [240] = {.lex_state = 72, .external_lex_state = 2}, + [241] = {.lex_state = 74, .external_lex_state = 2}, + [242] = {.lex_state = 136, .external_lex_state = 2}, + [243] = {.lex_state = 74, .external_lex_state = 2}, + [244] = {.lex_state = 74, .external_lex_state = 2}, + [245] = {.lex_state = 74, .external_lex_state = 2}, + [246] = {.lex_state = 74, .external_lex_state = 2}, + [247] = {.lex_state = 74, .external_lex_state = 2}, + [248] = {.lex_state = 74, .external_lex_state = 2}, + [249] = {.lex_state = 74, .external_lex_state = 2}, + [250] = {.lex_state = 136, .external_lex_state = 2}, + [251] = {.lex_state = 74, .external_lex_state = 2}, + [252] = {.lex_state = 74, .external_lex_state = 2}, + [253] = {.lex_state = 74, .external_lex_state = 2}, + [254] = {.lex_state = 74, .external_lex_state = 2}, + [255] = {.lex_state = 74, .external_lex_state = 2}, + [256] = {.lex_state = 74, .external_lex_state = 2}, + [257] = {.lex_state = 74, .external_lex_state = 2}, + [258] = {.lex_state = 74, .external_lex_state = 2}, + [259] = {.lex_state = 74, .external_lex_state = 2}, + [260] = {.lex_state = 74, .external_lex_state = 2}, + [261] = {.lex_state = 74, .external_lex_state = 2}, + [262] = {.lex_state = 74, .external_lex_state = 2}, + [263] = {.lex_state = 134, .external_lex_state = 2}, + [264] = {.lex_state = 74, .external_lex_state = 2}, + [265] = {.lex_state = 74, .external_lex_state = 2}, + [266] = {.lex_state = 74, .external_lex_state = 2}, + [267] = {.lex_state = 74, .external_lex_state = 2}, + [268] = {.lex_state = 74, .external_lex_state = 2}, + [269] = {.lex_state = 74, .external_lex_state = 2}, + [270] = {.lex_state = 33, .external_lex_state = 2}, + [271] = {.lex_state = 88, .external_lex_state = 2}, + [272] = {.lex_state = 41, .external_lex_state = 2}, + [273] = {.lex_state = 88, .external_lex_state = 2}, + [274] = {.lex_state = 41, .external_lex_state = 2}, + [275] = {.lex_state = 41, .external_lex_state = 2}, + [276] = {.lex_state = 33, .external_lex_state = 2}, + [277] = {.lex_state = 33, .external_lex_state = 2}, + [278] = {.lex_state = 33, .external_lex_state = 2}, + [279] = {.lex_state = 33, .external_lex_state = 2}, + [280] = {.lex_state = 33, .external_lex_state = 2}, + [281] = {.lex_state = 33, .external_lex_state = 2}, + [282] = {.lex_state = 22, .external_lex_state = 2}, + [283] = {.lex_state = 33, .external_lex_state = 2}, + [284] = {.lex_state = 88, .external_lex_state = 2}, + [285] = {.lex_state = 88, .external_lex_state = 2}, + [286] = {.lex_state = 88, .external_lex_state = 2}, + [287] = {.lex_state = 86, .external_lex_state = 2}, + [288] = {.lex_state = 33, .external_lex_state = 2}, + [289] = {.lex_state = 33, .external_lex_state = 2}, + [290] = {.lex_state = 88, .external_lex_state = 2}, + [291] = {.lex_state = 22, .external_lex_state = 2}, + [292] = {.lex_state = 88, .external_lex_state = 2}, + [293] = {.lex_state = 88, .external_lex_state = 2}, + [294] = {.lex_state = 88, .external_lex_state = 2}, + [295] = {.lex_state = 88, .external_lex_state = 2}, + [296] = {.lex_state = 88, .external_lex_state = 2}, + [297] = {.lex_state = 88, .external_lex_state = 2}, + [298] = {.lex_state = 88, .external_lex_state = 2}, + [299] = {.lex_state = 33, .external_lex_state = 2}, + [300] = {.lex_state = 33, .external_lex_state = 2}, + [301] = {.lex_state = 33, .external_lex_state = 2}, + [302] = {.lex_state = 136, .external_lex_state = 2}, + [303] = {.lex_state = 88, .external_lex_state = 2}, + [304] = {.lex_state = 88, .external_lex_state = 2}, + [305] = {.lex_state = 88, .external_lex_state = 2}, + [306] = {.lex_state = 88, .external_lex_state = 2}, + [307] = {.lex_state = 88, .external_lex_state = 2}, + [308] = {.lex_state = 88, .external_lex_state = 2}, + [309] = {.lex_state = 88, .external_lex_state = 2}, + [310] = {.lex_state = 88, .external_lex_state = 2}, + [311] = {.lex_state = 88, .external_lex_state = 2}, + [312] = {.lex_state = 88, .external_lex_state = 2}, + [313] = {.lex_state = 88, .external_lex_state = 2}, + [314] = {.lex_state = 88, .external_lex_state = 2}, + [315] = {.lex_state = 98, .external_lex_state = 2}, + [316] = {.lex_state = 88, .external_lex_state = 2}, + [317] = {.lex_state = 88, .external_lex_state = 2}, + [318] = {.lex_state = 88, .external_lex_state = 2}, + [319] = {.lex_state = 88, .external_lex_state = 2}, + [320] = {.lex_state = 88, .external_lex_state = 2}, + [321] = {.lex_state = 88, .external_lex_state = 2}, + [322] = {.lex_state = 33, .external_lex_state = 2}, + [323] = {.lex_state = 37, .external_lex_state = 2}, + [324] = {.lex_state = 33, .external_lex_state = 2}, + [325] = {.lex_state = 37, .external_lex_state = 2}, + [326] = {.lex_state = 33, .external_lex_state = 2}, + [327] = {.lex_state = 33, .external_lex_state = 2}, + [328] = {.lex_state = 33, .external_lex_state = 2}, + [329] = {.lex_state = 33, .external_lex_state = 2}, + [330] = {.lex_state = 98, .external_lex_state = 2}, + [331] = {.lex_state = 33, .external_lex_state = 2}, + [332] = {.lex_state = 33, .external_lex_state = 2}, + [333] = {.lex_state = 33, .external_lex_state = 2}, + [334] = {.lex_state = 33, .external_lex_state = 2}, + [335] = {.lex_state = 33, .external_lex_state = 2}, + [336] = {.lex_state = 37, .external_lex_state = 2}, + [337] = {.lex_state = 37, .external_lex_state = 2}, + [338] = {.lex_state = 37, .external_lex_state = 2}, + [339] = {.lex_state = 35, .external_lex_state = 2}, + [340] = {.lex_state = 33, .external_lex_state = 2}, + [341] = {.lex_state = 33, .external_lex_state = 2}, + [342] = {.lex_state = 37, .external_lex_state = 2}, + [343] = {.lex_state = 11, .external_lex_state = 2}, + [344] = {.lex_state = 37, .external_lex_state = 2}, + [345] = {.lex_state = 37, .external_lex_state = 2}, + [346] = {.lex_state = 37, .external_lex_state = 2}, + [347] = {.lex_state = 37, .external_lex_state = 2}, + [348] = {.lex_state = 37, .external_lex_state = 2}, + [349] = {.lex_state = 37, .external_lex_state = 2}, + [350] = {.lex_state = 37, .external_lex_state = 2}, + [351] = {.lex_state = 11, .external_lex_state = 2}, + [352] = {.lex_state = 33, .external_lex_state = 2}, + [353] = {.lex_state = 31, .external_lex_state = 2}, + [354] = {.lex_state = 3, .external_lex_state = 2}, + [355] = {.lex_state = 37, .external_lex_state = 2}, + [356] = {.lex_state = 37, .external_lex_state = 2}, + [357] = {.lex_state = 37, .external_lex_state = 2}, + [358] = {.lex_state = 37, .external_lex_state = 2}, + [359] = {.lex_state = 37, .external_lex_state = 2}, + [360] = {.lex_state = 37, .external_lex_state = 2}, + [361] = {.lex_state = 37, .external_lex_state = 2}, + [362] = {.lex_state = 37, .external_lex_state = 2}, + [363] = {.lex_state = 37, .external_lex_state = 2}, + [364] = {.lex_state = 37, .external_lex_state = 2}, + [365] = {.lex_state = 37, .external_lex_state = 2}, + [366] = {.lex_state = 37, .external_lex_state = 2}, + [367] = {.lex_state = 3, .external_lex_state = 2}, + [368] = {.lex_state = 37, .external_lex_state = 2}, + [369] = {.lex_state = 37, .external_lex_state = 2}, + [370] = {.lex_state = 37, .external_lex_state = 2}, + [371] = {.lex_state = 37, .external_lex_state = 2}, + [372] = {.lex_state = 37, .external_lex_state = 2}, + [373] = {.lex_state = 37, .external_lex_state = 2}, + [374] = {.lex_state = 33, .external_lex_state = 2}, + [375] = {.lex_state = 139, .external_lex_state = 2}, + [376] = {.lex_state = 33, .external_lex_state = 2}, + [377] = {.lex_state = 139, .external_lex_state = 2}, + [378] = {.lex_state = 139, .external_lex_state = 2}, + [379] = {.lex_state = 33, .external_lex_state = 2}, + [380] = {.lex_state = 33, .external_lex_state = 2}, + [381] = {.lex_state = 139, .external_lex_state = 2}, + [382] = {.lex_state = 37, .external_lex_state = 2}, + [383] = {.lex_state = 37, .external_lex_state = 2}, + [384] = {.lex_state = 88, .external_lex_state = 2}, + [385] = {.lex_state = 136, .external_lex_state = 2}, + [386] = {.lex_state = 88, .external_lex_state = 2}, + [387] = {.lex_state = 74, .external_lex_state = 2}, + [388] = {.lex_state = 139, .external_lex_state = 2}, + [389] = {.lex_state = 139, .external_lex_state = 2}, + [390] = {.lex_state = 139, .external_lex_state = 2}, + [391] = {.lex_state = 67, .external_lex_state = 2}, + [392] = {.lex_state = 74, .external_lex_state = 2}, + [393] = {.lex_state = 41, .external_lex_state = 2}, + [394] = {.lex_state = 139, .external_lex_state = 2}, + [395] = {.lex_state = 41, .external_lex_state = 2}, + [396] = {.lex_state = 139, .external_lex_state = 2}, + [397] = {.lex_state = 139, .external_lex_state = 2}, + [398] = {.lex_state = 139, .external_lex_state = 2}, + [399] = {.lex_state = 139, .external_lex_state = 2}, + [400] = {.lex_state = 139, .external_lex_state = 2}, + [401] = {.lex_state = 139, .external_lex_state = 2}, + [402] = {.lex_state = 139, .external_lex_state = 2}, + [403] = {.lex_state = 33, .external_lex_state = 2}, + [404] = {.lex_state = 33, .external_lex_state = 2}, + [405] = {.lex_state = 98, .external_lex_state = 2}, + [406] = {.lex_state = 98, .external_lex_state = 2}, + [407] = {.lex_state = 139, .external_lex_state = 2}, + [408] = {.lex_state = 139, .external_lex_state = 2}, + [409] = {.lex_state = 139, .external_lex_state = 2}, + [410] = {.lex_state = 139, .external_lex_state = 2}, + [411] = {.lex_state = 139, .external_lex_state = 2}, + [412] = {.lex_state = 139, .external_lex_state = 2}, + [413] = {.lex_state = 139, .external_lex_state = 2}, + [414] = {.lex_state = 139, .external_lex_state = 2}, + [415] = {.lex_state = 139, .external_lex_state = 2}, + [416] = {.lex_state = 139, .external_lex_state = 2}, + [417] = {.lex_state = 139, .external_lex_state = 2}, + [418] = {.lex_state = 139, .external_lex_state = 2}, + [419] = {.lex_state = 98, .external_lex_state = 2}, + [420] = {.lex_state = 139, .external_lex_state = 2}, + [421] = {.lex_state = 139, .external_lex_state = 2}, + [422] = {.lex_state = 139, .external_lex_state = 2}, + [423] = {.lex_state = 139, .external_lex_state = 2}, + [424] = {.lex_state = 139, .external_lex_state = 2}, + [425] = {.lex_state = 139, .external_lex_state = 2}, + [426] = {.lex_state = 136, .external_lex_state = 2}, + [427] = {.lex_state = 3, .external_lex_state = 2}, + [428] = {.lex_state = 136, .external_lex_state = 2}, + [429] = {.lex_state = 3, .external_lex_state = 2}, + [430] = {.lex_state = 136, .external_lex_state = 2}, + [431] = {.lex_state = 136, .external_lex_state = 2}, + [432] = {.lex_state = 136, .external_lex_state = 2}, + [433] = {.lex_state = 98, .external_lex_state = 2}, + [434] = {.lex_state = 98, .external_lex_state = 2}, + [435] = {.lex_state = 98, .external_lex_state = 2}, + [436] = {.lex_state = 136, .external_lex_state = 2}, + [437] = {.lex_state = 98, .external_lex_state = 2}, + [438] = {.lex_state = 98, .external_lex_state = 2}, + [439] = {.lex_state = 136, .external_lex_state = 2}, + [440] = {.lex_state = 3, .external_lex_state = 2}, + [441] = {.lex_state = 3, .external_lex_state = 2}, + [442] = {.lex_state = 3, .external_lex_state = 2}, + [443] = {.lex_state = 2, .external_lex_state = 2}, + [444] = {.lex_state = 98, .external_lex_state = 2}, + [445] = {.lex_state = 98, .external_lex_state = 2}, + [446] = {.lex_state = 98, .external_lex_state = 2}, + [447] = {.lex_state = 98, .external_lex_state = 2}, + [448] = {.lex_state = 3, .external_lex_state = 2}, + [449] = {.lex_state = 3, .external_lex_state = 2}, + [450] = {.lex_state = 3, .external_lex_state = 2}, + [451] = {.lex_state = 3, .external_lex_state = 2}, + [452] = {.lex_state = 3, .external_lex_state = 2}, + [453] = {.lex_state = 3, .external_lex_state = 2}, + [454] = {.lex_state = 3, .external_lex_state = 2}, + [455] = {.lex_state = 136, .external_lex_state = 2}, + [456] = {.lex_state = 136, .external_lex_state = 2}, + [457] = {.lex_state = 136, .external_lex_state = 2}, + [458] = {.lex_state = 98, .external_lex_state = 2}, + [459] = {.lex_state = 3, .external_lex_state = 2}, + [460] = {.lex_state = 3, .external_lex_state = 2}, + [461] = {.lex_state = 3, .external_lex_state = 2}, + [462] = {.lex_state = 3, .external_lex_state = 2}, + [463] = {.lex_state = 3, .external_lex_state = 2}, + [464] = {.lex_state = 3, .external_lex_state = 2}, + [465] = {.lex_state = 3, .external_lex_state = 2}, + [466] = {.lex_state = 3, .external_lex_state = 2}, + [467] = {.lex_state = 3, .external_lex_state = 2}, + [468] = {.lex_state = 3, .external_lex_state = 2}, + [469] = {.lex_state = 3, .external_lex_state = 2}, + [470] = {.lex_state = 3, .external_lex_state = 2}, + [471] = {.lex_state = 98, .external_lex_state = 2}, + [472] = {.lex_state = 3, .external_lex_state = 2}, + [473] = {.lex_state = 3, .external_lex_state = 2}, + [474] = {.lex_state = 3, .external_lex_state = 2}, + [475] = {.lex_state = 3, .external_lex_state = 2}, + [476] = {.lex_state = 3, .external_lex_state = 2}, + [477] = {.lex_state = 3, .external_lex_state = 2}, + [478] = {.lex_state = 136, .external_lex_state = 2}, + [479] = {.lex_state = 11, .external_lex_state = 2}, + [480] = {.lex_state = 98, .external_lex_state = 2}, + [481] = {.lex_state = 11, .external_lex_state = 2}, + [482] = {.lex_state = 98, .external_lex_state = 2}, + [483] = {.lex_state = 98, .external_lex_state = 2}, + [484] = {.lex_state = 98, .external_lex_state = 2}, + [485] = {.lex_state = 136, .external_lex_state = 2}, + [486] = {.lex_state = 136, .external_lex_state = 2}, + [487] = {.lex_state = 136, .external_lex_state = 2}, + [488] = {.lex_state = 136, .external_lex_state = 2}, + [489] = {.lex_state = 136, .external_lex_state = 2}, + [490] = {.lex_state = 136, .external_lex_state = 2}, + [491] = {.lex_state = 136, .external_lex_state = 2}, + [492] = {.lex_state = 11, .external_lex_state = 2}, + [493] = {.lex_state = 11, .external_lex_state = 2}, + [494] = {.lex_state = 11, .external_lex_state = 2}, + [495] = {.lex_state = 10, .external_lex_state = 2}, + [496] = {.lex_state = 136, .external_lex_state = 2}, + [497] = {.lex_state = 98, .external_lex_state = 2}, + [498] = {.lex_state = 11, .external_lex_state = 2}, + [499] = {.lex_state = 98, .external_lex_state = 2}, + [500] = {.lex_state = 11, .external_lex_state = 2}, + [501] = {.lex_state = 11, .external_lex_state = 2}, + [502] = {.lex_state = 11, .external_lex_state = 2}, + [503] = {.lex_state = 11, .external_lex_state = 2}, + [504] = {.lex_state = 11, .external_lex_state = 2}, + [505] = {.lex_state = 11, .external_lex_state = 2}, + [506] = {.lex_state = 11, .external_lex_state = 2}, + [507] = {.lex_state = 98, .external_lex_state = 2}, + [508] = {.lex_state = 98, .external_lex_state = 2}, + [509] = {.lex_state = 98, .external_lex_state = 2}, + [510] = {.lex_state = 98, .external_lex_state = 2}, + [511] = {.lex_state = 11, .external_lex_state = 2}, + [512] = {.lex_state = 11, .external_lex_state = 2}, + [513] = {.lex_state = 11, .external_lex_state = 2}, + [514] = {.lex_state = 11, .external_lex_state = 2}, + [515] = {.lex_state = 11, .external_lex_state = 2}, + [516] = {.lex_state = 11, .external_lex_state = 2}, + [517] = {.lex_state = 11, .external_lex_state = 2}, + [518] = {.lex_state = 11, .external_lex_state = 2}, + [519] = {.lex_state = 11, .external_lex_state = 2}, + [520] = {.lex_state = 11, .external_lex_state = 2}, + [521] = {.lex_state = 11, .external_lex_state = 2}, + [522] = {.lex_state = 11, .external_lex_state = 2}, + [523] = {.lex_state = 98, .external_lex_state = 2}, + [524] = {.lex_state = 11, .external_lex_state = 2}, + [525] = {.lex_state = 11, .external_lex_state = 2}, + [526] = {.lex_state = 11, .external_lex_state = 2}, + [527] = {.lex_state = 11, .external_lex_state = 2}, + [528] = {.lex_state = 11, .external_lex_state = 2}, + [529] = {.lex_state = 11, .external_lex_state = 2}, + [530] = {.lex_state = 98, .external_lex_state = 2}, + [531] = {.lex_state = 98, .external_lex_state = 2}, + [532] = {.lex_state = 136, .external_lex_state = 2}, + [533] = {.lex_state = 98, .external_lex_state = 2}, + [534] = {.lex_state = 41, .external_lex_state = 2}, + [535] = {.lex_state = 22, .external_lex_state = 2}, + [536] = {.lex_state = 136, .external_lex_state = 2}, + [537] = {.lex_state = 136, .external_lex_state = 2}, + [538] = {.lex_state = 136, .external_lex_state = 2}, + [539] = {.lex_state = 136, .external_lex_state = 2}, + [540] = {.lex_state = 136, .external_lex_state = 2}, + [541] = {.lex_state = 98, .external_lex_state = 2}, + [542] = {.lex_state = 136, .external_lex_state = 2}, + [543] = {.lex_state = 98, .external_lex_state = 2}, + [544] = {.lex_state = 98, .external_lex_state = 2}, + [545] = {.lex_state = 134, .external_lex_state = 2}, + [546] = {.lex_state = 39, .external_lex_state = 2}, + [547] = {.lex_state = 134, .external_lex_state = 2}, + [548] = {.lex_state = 86, .external_lex_state = 2}, + [549] = {.lex_state = 39, .external_lex_state = 2}, + [550] = {.lex_state = 39, .external_lex_state = 2}, + [551] = {.lex_state = 97, .external_lex_state = 2}, + [552] = {.lex_state = 10, .external_lex_state = 2}, + [553] = {.lex_state = 10, .external_lex_state = 2}, + [554] = {.lex_state = 31, .external_lex_state = 2}, + [555] = {.lex_state = 72, .external_lex_state = 2}, + [556] = {.lex_state = 72, .external_lex_state = 2}, + [557] = {.lex_state = 10, .external_lex_state = 2}, + [558] = {.lex_state = 72, .external_lex_state = 2}, + [559] = {.lex_state = 35, .external_lex_state = 2}, + [560] = {.lex_state = 31, .external_lex_state = 2}, + [561] = {.lex_state = 31, .external_lex_state = 2}, + [562] = {.lex_state = 35, .external_lex_state = 2}, + [563] = {.lex_state = 35, .external_lex_state = 2}, + [564] = {.lex_state = 67, .external_lex_state = 2}, + [565] = {.lex_state = 86, .external_lex_state = 2}, + [566] = {.lex_state = 86, .external_lex_state = 2}, + [567] = {.lex_state = 2, .external_lex_state = 2}, + [568] = {.lex_state = 2, .external_lex_state = 2}, + [569] = {.lex_state = 2, .external_lex_state = 2}, + [570] = {.lex_state = 97, .external_lex_state = 2}, + [571] = {.lex_state = 134, .external_lex_state = 2}, + [572] = {.lex_state = 97, .external_lex_state = 2}, + [573] = {.lex_state = 67, .external_lex_state = 2}, + [574] = {.lex_state = 67, .external_lex_state = 2}, + [575] = {.lex_state = 63}, + [576] = {.lex_state = 63}, + [577] = {.lex_state = 63}, + [578] = {.lex_state = 63}, + [579] = {.lex_state = 63}, + [580] = {.lex_state = 63}, + [581] = {.lex_state = 63}, + [582] = {.lex_state = 63}, + [583] = {.lex_state = 63}, + [584] = {.lex_state = 63}, + [585] = {.lex_state = 63}, + [586] = {.lex_state = 63}, + [587] = {.lex_state = 63}, + [588] = {.lex_state = 63}, + [589] = {.lex_state = 63}, + [590] = {.lex_state = 63}, + [591] = {.lex_state = 63}, + [592] = {.lex_state = 63}, + [593] = {.lex_state = 63}, + [594] = {.lex_state = 63}, [595] = {.lex_state = 63}, [596] = {.lex_state = 63}, [597] = {.lex_state = 63}, @@ -7922,14 +7765,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [634] = {.lex_state = 63}, [635] = {.lex_state = 63}, [636] = {.lex_state = 63}, - [637] = {.lex_state = 63}, + [637] = {.lex_state = 65}, [638] = {.lex_state = 63}, [639] = {.lex_state = 63}, [640] = {.lex_state = 63}, [641] = {.lex_state = 63}, [642] = {.lex_state = 63}, [643] = {.lex_state = 63}, - [644] = {.lex_state = 63}, + [644] = {.lex_state = 65}, [645] = {.lex_state = 63}, [646] = {.lex_state = 63}, [647] = {.lex_state = 63}, @@ -7939,265 +7782,244 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [651] = {.lex_state = 63}, [652] = {.lex_state = 63}, [653] = {.lex_state = 63}, - [654] = {.lex_state = 65}, + [654] = {.lex_state = 63}, [655] = {.lex_state = 63}, [656] = {.lex_state = 63}, - [657] = {.lex_state = 63}, - [658] = {.lex_state = 63}, - [659] = {.lex_state = 63}, + [657] = {.lex_state = 65}, + [658] = {.lex_state = 65}, + [659] = {.lex_state = 9}, [660] = {.lex_state = 63}, - [661] = {.lex_state = 63}, - [662] = {.lex_state = 63}, - [663] = {.lex_state = 63}, - [664] = {.lex_state = 63}, - [665] = {.lex_state = 63}, - [666] = {.lex_state = 63}, - [667] = {.lex_state = 63}, - [668] = {.lex_state = 65}, - [669] = {.lex_state = 63}, + [661] = {.lex_state = 9}, + [662] = {.lex_state = 109}, + [663] = {.lex_state = 0}, + [664] = {.lex_state = 9}, + [665] = {.lex_state = 0}, + [666] = {.lex_state = 0}, + [667] = {.lex_state = 0}, + [668] = {.lex_state = 9}, + [669] = {.lex_state = 0}, [670] = {.lex_state = 63}, - [671] = {.lex_state = 63}, - [672] = {.lex_state = 63}, - [673] = {.lex_state = 63}, - [674] = {.lex_state = 65}, - [675] = {.lex_state = 63}, - [676] = {.lex_state = 63}, - [677] = {.lex_state = 63}, - [678] = {.lex_state = 65}, - [679] = {.lex_state = 0}, - [680] = {.lex_state = 1}, - [681] = {.lex_state = 1}, + [671] = {.lex_state = 0}, + [672] = {.lex_state = 0}, + [673] = {.lex_state = 9}, + [674] = {.lex_state = 9}, + [675] = {.lex_state = 0}, + [676] = {.lex_state = 9}, + [677] = {.lex_state = 0}, + [678] = {.lex_state = 0}, + [679] = {.lex_state = 9}, + [680] = {.lex_state = 9}, + [681] = {.lex_state = 9}, [682] = {.lex_state = 0}, - [683] = {.lex_state = 1}, - [684] = {.lex_state = 0}, - [685] = {.lex_state = 0}, - [686] = {.lex_state = 1}, + [683] = {.lex_state = 0}, + [684] = {.lex_state = 63}, + [685] = {.lex_state = 63}, + [686] = {.lex_state = 63}, [687] = {.lex_state = 0}, - [688] = {.lex_state = 1}, - [689] = {.lex_state = 1}, + [688] = {.lex_state = 63}, + [689] = {.lex_state = 63}, [690] = {.lex_state = 0}, - [691] = {.lex_state = 1}, - [692] = {.lex_state = 1}, - [693] = {.lex_state = 0}, - [694] = {.lex_state = 0}, + [691] = {.lex_state = 63}, + [692] = {.lex_state = 63}, + [693] = {.lex_state = 63}, + [694] = {.lex_state = 63}, [695] = {.lex_state = 0}, - [696] = {.lex_state = 63}, - [697] = {.lex_state = 1}, - [698] = {.lex_state = 0}, - [699] = {.lex_state = 1}, - [700] = {.lex_state = 109}, - [701] = {.lex_state = 63}, + [696] = {.lex_state = 0}, + [697] = {.lex_state = 0}, + [698] = {.lex_state = 63}, + [699] = {.lex_state = 0}, + [700] = {.lex_state = 63}, + [701] = {.lex_state = 0}, [702] = {.lex_state = 0}, [703] = {.lex_state = 0}, [704] = {.lex_state = 0}, [705] = {.lex_state = 0}, - [706] = {.lex_state = 63}, - [707] = {.lex_state = 63}, - [708] = {.lex_state = 63}, + [706] = {.lex_state = 0}, + [707] = {.lex_state = 0}, + [708] = {.lex_state = 0}, [709] = {.lex_state = 0}, [710] = {.lex_state = 0}, [711] = {.lex_state = 0}, - [712] = {.lex_state = 63}, + [712] = {.lex_state = 0}, [713] = {.lex_state = 63}, - [714] = {.lex_state = 0}, + [714] = {.lex_state = 0, .external_lex_state = 3}, [715] = {.lex_state = 0}, - [716] = {.lex_state = 0}, - [717] = {.lex_state = 0}, + [716] = {.lex_state = 63}, + [717] = {.lex_state = 63}, [718] = {.lex_state = 0}, [719] = {.lex_state = 0}, - [720] = {.lex_state = 0}, - [721] = {.lex_state = 0}, - [722] = {.lex_state = 0}, - [723] = {.lex_state = 0}, - [724] = {.lex_state = 0}, + [720] = {.lex_state = 29}, + [721] = {.lex_state = 0, .external_lex_state = 3}, + [722] = {.lex_state = 63}, + [723] = {.lex_state = 63}, + [724] = {.lex_state = 29}, [725] = {.lex_state = 0}, [726] = {.lex_state = 0}, - [727] = {.lex_state = 0}, - [728] = {.lex_state = 63}, + [727] = {.lex_state = 0, .external_lex_state = 3}, + [728] = {.lex_state = 24}, [729] = {.lex_state = 0}, - [730] = {.lex_state = 0}, + [730] = {.lex_state = 63}, [731] = {.lex_state = 63}, - [732] = {.lex_state = 63}, - [733] = {.lex_state = 0}, - [734] = {.lex_state = 0}, + [732] = {.lex_state = 0}, + [733] = {.lex_state = 0, .external_lex_state = 3}, + [734] = {.lex_state = 63}, [735] = {.lex_state = 0}, - [736] = {.lex_state = 0}, - [737] = {.lex_state = 0}, + [736] = {.lex_state = 63}, + [737] = {.lex_state = 63}, [738] = {.lex_state = 0}, [739] = {.lex_state = 63}, - [740] = {.lex_state = 63}, - [741] = {.lex_state = 0}, - [742] = {.lex_state = 63}, - [743] = {.lex_state = 0}, - [744] = {.lex_state = 0}, + [740] = {.lex_state = 0, .external_lex_state = 3}, + [741] = {.lex_state = 0, .external_lex_state = 3}, + [742] = {.lex_state = 24}, + [743] = {.lex_state = 63}, + [744] = {.lex_state = 29}, [745] = {.lex_state = 0}, [746] = {.lex_state = 0}, - [747] = {.lex_state = 0}, + [747] = {.lex_state = 24}, [748] = {.lex_state = 0}, [749] = {.lex_state = 0}, - [750] = {.lex_state = 0}, - [751] = {.lex_state = 0}, + [750] = {.lex_state = 0, .external_lex_state = 3}, + [751] = {.lex_state = 63}, [752] = {.lex_state = 0}, - [753] = {.lex_state = 24}, + [753] = {.lex_state = 63}, [754] = {.lex_state = 63}, - [755] = {.lex_state = 63}, - [756] = {.lex_state = 24}, - [757] = {.lex_state = 0}, - [758] = {.lex_state = 0}, - [759] = {.lex_state = 139}, - [760] = {.lex_state = 0}, - [761] = {.lex_state = 63}, - [762] = {.lex_state = 63}, + [755] = {.lex_state = 0}, + [756] = {.lex_state = 29}, + [757] = {.lex_state = 63}, + [758] = {.lex_state = 0, .external_lex_state = 3}, + [759] = {.lex_state = 0, .external_lex_state = 3}, + [760] = {.lex_state = 63}, + [761] = {.lex_state = 29}, + [762] = {.lex_state = 0}, [763] = {.lex_state = 0}, - [764] = {.lex_state = 63}, - [765] = {.lex_state = 63}, - [766] = {.lex_state = 0}, + [764] = {.lex_state = 24}, + [765] = {.lex_state = 0}, + [766] = {.lex_state = 110}, [767] = {.lex_state = 63}, - [768] = {.lex_state = 24}, - [769] = {.lex_state = 0}, - [770] = {.lex_state = 0}, - [771] = {.lex_state = 139}, - [772] = {.lex_state = 139}, + [768] = {.lex_state = 0}, + [769] = {.lex_state = 0, .external_lex_state = 3}, + [770] = {.lex_state = 63}, + [771] = {.lex_state = 0}, + [772] = {.lex_state = 63}, [773] = {.lex_state = 63}, [774] = {.lex_state = 0}, [775] = {.lex_state = 63}, - [776] = {.lex_state = 63}, - [777] = {.lex_state = 0}, - [778] = {.lex_state = 0}, - [779] = {.lex_state = 0}, - [780] = {.lex_state = 63}, - [781] = {.lex_state = 24}, + [776] = {.lex_state = 0, .external_lex_state = 3}, + [777] = {.lex_state = 0, .external_lex_state = 3}, + [778] = {.lex_state = 24}, + [779] = {.lex_state = 63}, + [780] = {.lex_state = 29}, + [781] = {.lex_state = 0}, [782] = {.lex_state = 0}, - [783] = {.lex_state = 0}, - [784] = {.lex_state = 139}, - [785] = {.lex_state = 110}, - [786] = {.lex_state = 63}, - [787] = {.lex_state = 63}, + [783] = {.lex_state = 24}, + [784] = {.lex_state = 0}, + [785] = {.lex_state = 0}, + [786] = {.lex_state = 0, .external_lex_state = 3}, + [787] = {.lex_state = 0}, [788] = {.lex_state = 0}, [789] = {.lex_state = 63}, [790] = {.lex_state = 63}, - [791] = {.lex_state = 0}, - [792] = {.lex_state = 0}, - [793] = {.lex_state = 63}, - [794] = {.lex_state = 63}, + [791] = {.lex_state = 29}, + [792] = {.lex_state = 63}, + [793] = {.lex_state = 0, .external_lex_state = 3}, + [794] = {.lex_state = 0}, [795] = {.lex_state = 63}, - [796] = {.lex_state = 139}, + [796] = {.lex_state = 63}, [797] = {.lex_state = 0}, - [798] = {.lex_state = 0}, - [799] = {.lex_state = 63}, - [800] = {.lex_state = 63}, - [801] = {.lex_state = 139}, - [802] = {.lex_state = 0}, + [798] = {.lex_state = 63}, + [799] = {.lex_state = 0, .external_lex_state = 3}, + [800] = {.lex_state = 24}, + [801] = {.lex_state = 63}, + [802] = {.lex_state = 63}, [803] = {.lex_state = 0}, - [804] = {.lex_state = 63}, - [805] = {.lex_state = 0}, + [804] = {.lex_state = 0}, + [805] = {.lex_state = 29}, [806] = {.lex_state = 63}, - [807] = {.lex_state = 63}, - [808] = {.lex_state = 63}, - [809] = {.lex_state = 0}, - [810] = {.lex_state = 63}, - [811] = {.lex_state = 63}, - [812] = {.lex_state = 0}, + [807] = {.lex_state = 0, .external_lex_state = 3}, + [808] = {.lex_state = 0}, + [809] = {.lex_state = 63}, + [810] = {.lex_state = 111}, + [811] = {.lex_state = 0, .external_lex_state = 4}, + [812] = {.lex_state = 0, .external_lex_state = 4}, [813] = {.lex_state = 63}, - [814] = {.lex_state = 63}, - [815] = {.lex_state = 24}, - [816] = {.lex_state = 139}, - [817] = {.lex_state = 139}, - [818] = {.lex_state = 0}, - [819] = {.lex_state = 0}, - [820] = {.lex_state = 0}, + [814] = {.lex_state = 24}, + [815] = {.lex_state = 0, .external_lex_state = 4}, + [816] = {.lex_state = 0}, + [817] = {.lex_state = 24}, + [818] = {.lex_state = 110}, + [819] = {.lex_state = 112}, + [820] = {.lex_state = 0, .external_lex_state = 4}, [821] = {.lex_state = 24}, [822] = {.lex_state = 63}, - [823] = {.lex_state = 0}, - [824] = {.lex_state = 321}, + [823] = {.lex_state = 24}, + [824] = {.lex_state = 0, .external_lex_state = 4}, [825] = {.lex_state = 63}, - [826] = {.lex_state = 63}, - [827] = {.lex_state = 111}, + [826] = {.lex_state = 0, .external_lex_state = 3}, + [827] = {.lex_state = 110}, [828] = {.lex_state = 112}, - [829] = {.lex_state = 0}, - [830] = {.lex_state = 63}, + [829] = {.lex_state = 0, .external_lex_state = 4}, + [830] = {.lex_state = 0}, [831] = {.lex_state = 0}, - [832] = {.lex_state = 63}, - [833] = {.lex_state = 139}, - [834] = {.lex_state = 321}, - [835] = {.lex_state = 139}, - [836] = {.lex_state = 321}, - [837] = {.lex_state = 24}, - [838] = {.lex_state = 63}, - [839] = {.lex_state = 110}, + [832] = {.lex_state = 24}, + [833] = {.lex_state = 0, .external_lex_state = 4}, + [834] = {.lex_state = 24}, + [835] = {.lex_state = 29}, + [836] = {.lex_state = 110}, + [837] = {.lex_state = 112}, + [838] = {.lex_state = 0, .external_lex_state = 4}, + [839] = {.lex_state = 63}, [840] = {.lex_state = 112}, - [841] = {.lex_state = 139}, - [842] = {.lex_state = 139}, - [843] = {.lex_state = 321}, - [844] = {.lex_state = 139}, - [845] = {.lex_state = 321}, - [846] = {.lex_state = 0}, - [847] = {.lex_state = 0}, - [848] = {.lex_state = 110}, - [849] = {.lex_state = 112}, - [850] = {.lex_state = 0}, - [851] = {.lex_state = 0}, - [852] = {.lex_state = 321}, - [853] = {.lex_state = 139}, - [854] = {.lex_state = 321}, - [855] = {.lex_state = 63}, - [856] = {.lex_state = 0}, - [857] = {.lex_state = 110}, - [858] = {.lex_state = 112}, + [841] = {.lex_state = 24}, + [842] = {.lex_state = 0, .external_lex_state = 4}, + [843] = {.lex_state = 0}, + [844] = {.lex_state = 63}, + [845] = {.lex_state = 110}, + [846] = {.lex_state = 112}, + [847] = {.lex_state = 0, .external_lex_state = 4}, + [848] = {.lex_state = 0}, + [849] = {.lex_state = 63}, + [850] = {.lex_state = 24}, + [851] = {.lex_state = 0, .external_lex_state = 4}, + [852] = {.lex_state = 0}, + [853] = {.lex_state = 0, .external_lex_state = 3}, + [854] = {.lex_state = 110}, + [855] = {.lex_state = 112}, + [856] = {.lex_state = 0, .external_lex_state = 4}, + [857] = {.lex_state = 0, .external_lex_state = 3}, + [858] = {.lex_state = 24}, [859] = {.lex_state = 24}, - [860] = {.lex_state = 63}, - [861] = {.lex_state = 321}, - [862] = {.lex_state = 139}, - [863] = {.lex_state = 321}, - [864] = {.lex_state = 63}, - [865] = {.lex_state = 0}, - [866] = {.lex_state = 110}, - [867] = {.lex_state = 112}, - [868] = {.lex_state = 63}, - [869] = {.lex_state = 24}, - [870] = {.lex_state = 321}, - [871] = {.lex_state = 139}, - [872] = {.lex_state = 321}, - [873] = {.lex_state = 139}, - [874] = {.lex_state = 139}, - [875] = {.lex_state = 110}, - [876] = {.lex_state = 112}, - [877] = {.lex_state = 63}, - [878] = {.lex_state = 321}, - [879] = {.lex_state = 321}, - [880] = {.lex_state = 139}, - [881] = {.lex_state = 321}, - [882] = {.lex_state = 0}, - [883] = {.lex_state = 0}, - [884] = {.lex_state = 110}, - [885] = {.lex_state = 112}, - [886] = {.lex_state = 325}, - [887] = {.lex_state = 0}, - [888] = {.lex_state = 321}, - [889] = {.lex_state = 139}, - [890] = {.lex_state = 321}, - [891] = {.lex_state = 24}, - [892] = {.lex_state = 0}, - [893] = {.lex_state = 110}, - [894] = {.lex_state = 112}, - [895] = {.lex_state = 63}, - [896] = {.lex_state = 321}, - [897] = {.lex_state = 321}, - [898] = {.lex_state = 139}, - [899] = {.lex_state = 321}, - [900] = {.lex_state = 63}, - [901] = {.lex_state = 0}, - [902] = {.lex_state = 110}, - [903] = {.lex_state = 112}, - [904] = {.lex_state = 63}, - [905] = {.lex_state = 0}, - [906] = {.lex_state = 321}, - [907] = {.lex_state = 139}, - [908] = {.lex_state = 321}, - [909] = {.lex_state = 63}, - [910] = {.lex_state = 0}, - [911] = {.lex_state = 110}, - [912] = {.lex_state = 112}, + [860] = {.lex_state = 0, .external_lex_state = 4}, + [861] = {.lex_state = 29}, + [862] = {.lex_state = 0, .external_lex_state = 4}, + [863] = {.lex_state = 110}, + [864] = {.lex_state = 112}, + [865] = {.lex_state = 0, .external_lex_state = 4}, + [866] = {.lex_state = 0}, + [867] = {.lex_state = 0}, + [868] = {.lex_state = 24}, + [869] = {.lex_state = 0, .external_lex_state = 4}, + [870] = {.lex_state = 63}, + [871] = {.lex_state = 0, .external_lex_state = 3}, + [872] = {.lex_state = 110}, + [873] = {.lex_state = 112}, + [874] = {.lex_state = 0, .external_lex_state = 4}, + [875] = {.lex_state = 63}, + [876] = {.lex_state = 24}, + [877] = {.lex_state = 24}, + [878] = {.lex_state = 0, .external_lex_state = 4}, + [879] = {.lex_state = 24}, + [880] = {.lex_state = 0}, + [881] = {.lex_state = 110}, + [882] = {.lex_state = 112}, + [883] = {.lex_state = 0, .external_lex_state = 4}, + [884] = {.lex_state = 0}, + [885] = {.lex_state = 321}, + [886] = {.lex_state = 24}, + [887] = {.lex_state = 0, .external_lex_state = 4}, + [888] = {.lex_state = 63}, + [889] = {.lex_state = 63}, + [890] = {.lex_state = 110}, + [891] = {.lex_state = 112}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -8251,54 +8073,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_XXX] = ACTIONS(1), [sym_fixme] = ACTIONS(1), [anon_sym_PIPE] = ACTIONS(1), - [anon_sym_BQUOTE] = ACTIONS(1), [sym__whitespace1] = ACTIONS(1), [sym__newline] = ACTIONS(1), [aux_sym__text_token1] = ACTIONS(1), [anon_sym_DOT] = ACTIONS(1), [anon_sym_EQ] = ACTIONS(1), [anon_sym_DQUOTE] = ACTIONS(1), + [sym__ignored] = ACTIONS(1), + [sym__verbatim_begin] = ACTIONS(1), + [sym__verbatim_end] = ACTIONS(1), + [sym__verbatim_content] = ACTIONS(1), + [sym__error] = ACTIONS(1), }, [1] = { - [sym_inline] = STATE(892), - [sym__inline] = STATE(887), - [sym__element] = STATE(107), - [sym_emphasis] = STATE(220), - [sym_emphasis_begin] = STATE(115), - [sym_strong] = STATE(220), - [sym_strong_begin] = STATE(114), - [sym__hard_line_break] = STATE(220), - [sym_hard_line_break] = STATE(220), - [sym__smart_punctuation] = STATE(220), - [sym_autolink] = STATE(220), - [sym_highlighted] = STATE(220), - [sym_insert] = STATE(220), - [sym_delete] = STATE(220), - [sym_superscript] = STATE(220), - [sym_subscript] = STATE(220), - [sym_footnote_reference] = STATE(220), - [sym__image] = STATE(220), - [sym_full_reference_image] = STATE(220), - [sym_collapsed_reference_image] = STATE(220), - [sym_inline_image] = STATE(220), - [sym__image_description] = STATE(653), - [sym__link] = STATE(220), - [sym_full_reference_link] = STATE(220), - [sym_collapsed_reference_link] = STATE(220), - [sym_inline_link] = STATE(220), - [sym_link_text] = STATE(661), - [sym__comment_with_spaces] = STATE(220), - [sym_span] = STATE(220), - [sym_raw_inline] = STATE(220), - [sym_math] = STATE(220), - [sym_verbatim] = STATE(220), - [sym__todo_highlights] = STATE(220), - [sym_todo] = STATE(220), - [sym_note] = STATE(220), - [sym__symbol_fallback] = STATE(220), - [sym__verbatim_begin] = STATE(878), - [aux_sym__text] = STATE(130), - [aux_sym__inline_repeat1] = STATE(107), + [sym_inline] = STATE(867), + [sym__inline] = STATE(866), + [sym__element] = STATE(100), + [sym_emphasis] = STATE(198), + [sym_emphasis_begin] = STATE(106), + [sym_strong] = STATE(198), + [sym_strong_begin] = STATE(105), + [sym__hard_line_break] = STATE(198), + [sym_hard_line_break] = STATE(198), + [sym__smart_punctuation] = STATE(198), + [sym_autolink] = STATE(198), + [sym_highlighted] = STATE(198), + [sym_insert] = STATE(198), + [sym_delete] = STATE(198), + [sym_superscript] = STATE(198), + [sym_subscript] = STATE(198), + [sym_footnote_reference] = STATE(198), + [sym__image] = STATE(198), + [sym_full_reference_image] = STATE(198), + [sym_collapsed_reference_image] = STATE(198), + [sym_inline_image] = STATE(198), + [sym__image_description] = STATE(634), + [sym__link] = STATE(198), + [sym_full_reference_link] = STATE(198), + [sym_collapsed_reference_link] = STATE(198), + [sym_inline_link] = STATE(198), + [sym_link_text] = STATE(648), + [sym__comment_with_spaces] = STATE(198), + [sym_span] = STATE(198), + [sym_raw_inline] = STATE(198), + [sym_math] = STATE(198), + [sym_verbatim] = STATE(198), + [sym__todo_highlights] = STATE(198), + [sym_todo] = STATE(198), + [sym_note] = STATE(198), + [sym__symbol_fallback] = STATE(198), + [aux_sym__text] = STATE(134), + [aux_sym__inline_repeat1] = STATE(100), [anon_sym_LBRACE_] = ACTIONS(3), [anon_sym__] = ACTIONS(5), [anon_sym_LBRACE_STAR] = ACTIONS(7), @@ -8330,720 +8155,711 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_XXX] = ACTIONS(39), [sym_fixme] = ACTIONS(13), [anon_sym_PIPE] = ACTIONS(13), - [anon_sym_BQUOTE] = ACTIONS(41), - [sym__whitespace1] = ACTIONS(43), - [sym__newline] = ACTIONS(45), - [aux_sym__text_token1] = ACTIONS(47), + [sym__whitespace1] = ACTIONS(41), + [sym__newline] = ACTIONS(43), + [aux_sym__text_token1] = ACTIONS(45), + [sym__verbatim_begin] = ACTIONS(47), }, [2] = { - [sym__inline] = STATE(833), - [sym__element] = STATE(112), - [sym_emphasis] = STATE(206), - [sym_emphasis_begin] = STATE(108), - [sym_strong] = STATE(206), - [sym_strong_begin] = STATE(110), - [sym__hard_line_break] = STATE(206), - [sym_hard_line_break] = STATE(206), - [sym__smart_punctuation] = STATE(206), - [sym_autolink] = STATE(206), - [sym_highlighted] = STATE(206), - [sym_insert] = STATE(206), - [sym_delete] = STATE(206), - [sym_superscript] = STATE(206), - [sym_subscript] = STATE(206), - [sym_footnote_reference] = STATE(206), - [sym__image] = STATE(206), - [sym_full_reference_image] = STATE(206), - [sym_collapsed_reference_image] = STATE(206), - [sym_inline_image] = STATE(206), - [sym__image_description] = STATE(664), - [sym__link] = STATE(206), - [sym_full_reference_link] = STATE(206), - [sym_collapsed_reference_link] = STATE(206), - [sym_inline_link] = STATE(206), - [sym_link_text] = STATE(663), - [sym__comment_with_spaces] = STATE(206), - [sym_span] = STATE(206), - [sym_raw_inline] = STATE(206), - [sym_math] = STATE(206), - [sym_verbatim] = STATE(206), - [sym__todo_highlights] = STATE(206), - [sym_todo] = STATE(206), - [sym_note] = STATE(206), - [sym__symbol_fallback] = STATE(206), - [sym__verbatim_begin] = STATE(879), - [aux_sym__text] = STATE(126), - [aux_sym__inline_repeat1] = STATE(112), - [ts_builtin_sym_end] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACE_] = ACTIONS(53), - [anon_sym__] = ACTIONS(56), - [anon_sym_LBRACE_STAR] = ACTIONS(59), - [anon_sym_STAR] = ACTIONS(62), - [anon_sym_BSLASH] = ACTIONS(65), - [sym_quotation_marks] = ACTIONS(68), - [sym_ellipsis] = ACTIONS(68), - [sym_em_dash] = ACTIONS(68), - [sym_en_dash] = ACTIONS(71), - [sym_backslash_escape] = ACTIONS(71), - [anon_sym_LT] = ACTIONS(74), - [anon_sym_LBRACE_EQ] = ACTIONS(77), - [anon_sym_LBRACE_PLUS] = ACTIONS(80), - [anon_sym_LBRACE_DASH] = ACTIONS(83), - [sym_symbol] = ACTIONS(68), - [anon_sym_LBRACE_CARET] = ACTIONS(86), - [anon_sym_CARET] = ACTIONS(86), - [anon_sym_LBRACE_TILDE] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_LBRACK_CARET] = ACTIONS(92), - [anon_sym_RBRACK] = ACTIONS(95), - [anon_sym_BANG_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK] = ACTIONS(100), - [anon_sym_LBRACE2] = ACTIONS(71), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_TODO] = ACTIONS(106), - [anon_sym_WIP] = ACTIONS(106), - [anon_sym_NOTE] = ACTIONS(109), - [anon_sym_INFO] = ACTIONS(109), - [anon_sym_XXX] = ACTIONS(109), - [sym_fixme] = ACTIONS(68), - [anon_sym_PIPE] = ACTIONS(68), - [anon_sym_BQUOTE] = ACTIONS(112), + [sym__inline] = STATE(876), + [sym__element] = STATE(103), + [sym_emphasis] = STATE(200), + [sym_emphasis_begin] = STATE(101), + [sym_strong] = STATE(200), + [sym_strong_begin] = STATE(104), + [sym__hard_line_break] = STATE(200), + [sym_hard_line_break] = STATE(200), + [sym__smart_punctuation] = STATE(200), + [sym_autolink] = STATE(200), + [sym_highlighted] = STATE(200), + [sym_insert] = STATE(200), + [sym_delete] = STATE(200), + [sym_superscript] = STATE(200), + [sym_subscript] = STATE(200), + [sym_footnote_reference] = STATE(200), + [sym__image] = STATE(200), + [sym_full_reference_image] = STATE(200), + [sym_collapsed_reference_image] = STATE(200), + [sym_inline_image] = STATE(200), + [sym__image_description] = STATE(642), + [sym__link] = STATE(200), + [sym_full_reference_link] = STATE(200), + [sym_collapsed_reference_link] = STATE(200), + [sym_inline_link] = STATE(200), + [sym_link_text] = STATE(643), + [sym__comment_with_spaces] = STATE(200), + [sym_span] = STATE(200), + [sym_raw_inline] = STATE(200), + [sym_math] = STATE(200), + [sym_verbatim] = STATE(200), + [sym__todo_highlights] = STATE(200), + [sym_todo] = STATE(200), + [sym_note] = STATE(200), + [sym__symbol_fallback] = STATE(200), + [aux_sym__text] = STATE(138), + [aux_sym__inline_repeat1] = STATE(103), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(51), + [anon_sym__] = ACTIONS(54), + [anon_sym_LBRACE_STAR] = ACTIONS(57), + [anon_sym_STAR] = ACTIONS(60), + [anon_sym_BSLASH] = ACTIONS(63), + [sym_quotation_marks] = ACTIONS(66), + [sym_ellipsis] = ACTIONS(66), + [sym_em_dash] = ACTIONS(66), + [sym_en_dash] = ACTIONS(69), + [sym_backslash_escape] = ACTIONS(69), + [anon_sym_LT] = ACTIONS(72), + [anon_sym_LBRACE_EQ] = ACTIONS(75), + [anon_sym_LBRACE_PLUS] = ACTIONS(78), + [anon_sym_LBRACE_DASH] = ACTIONS(81), + [sym_symbol] = ACTIONS(66), + [anon_sym_LBRACE_CARET] = ACTIONS(84), + [anon_sym_CARET] = ACTIONS(84), + [anon_sym_LBRACE_TILDE] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(90), + [anon_sym_TILDE_RBRACE] = ACTIONS(93), + [anon_sym_LBRACK_CARET] = ACTIONS(95), + [anon_sym_RBRACK] = ACTIONS(98), + [anon_sym_BANG_LBRACK] = ACTIONS(100), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_LBRACE2] = ACTIONS(69), + [anon_sym_DOLLAR] = ACTIONS(106), + [anon_sym_TODO] = ACTIONS(109), + [anon_sym_WIP] = ACTIONS(109), + [anon_sym_NOTE] = ACTIONS(112), + [anon_sym_INFO] = ACTIONS(112), + [anon_sym_XXX] = ACTIONS(112), + [sym_fixme] = ACTIONS(66), + [anon_sym_PIPE] = ACTIONS(66), [sym__whitespace1] = ACTIONS(115), [sym__newline] = ACTIONS(118), [aux_sym__text_token1] = ACTIONS(121), + [sym__verbatim_begin] = ACTIONS(124), }, [3] = { - [sym__inline] = STATE(833), - [sym__element] = STATE(112), - [sym_emphasis] = STATE(206), - [sym_emphasis_begin] = STATE(108), - [sym_strong] = STATE(206), - [sym_strong_begin] = STATE(110), - [sym__hard_line_break] = STATE(206), - [sym_hard_line_break] = STATE(206), - [sym__smart_punctuation] = STATE(206), - [sym_autolink] = STATE(206), - [sym_highlighted] = STATE(206), - [sym_insert] = STATE(206), - [sym_delete] = STATE(206), - [sym_superscript] = STATE(206), - [sym_subscript] = STATE(206), - [sym_footnote_reference] = STATE(206), - [sym__image] = STATE(206), - [sym_full_reference_image] = STATE(206), - [sym_collapsed_reference_image] = STATE(206), - [sym_inline_image] = STATE(206), - [sym__image_description] = STATE(664), - [sym__link] = STATE(206), - [sym_full_reference_link] = STATE(206), - [sym_collapsed_reference_link] = STATE(206), - [sym_inline_link] = STATE(206), - [sym_link_text] = STATE(663), - [sym__comment_with_spaces] = STATE(206), - [sym_span] = STATE(206), - [sym_raw_inline] = STATE(206), - [sym_math] = STATE(206), - [sym_verbatim] = STATE(206), - [sym__todo_highlights] = STATE(206), - [sym_todo] = STATE(206), - [sym_note] = STATE(206), - [sym__symbol_fallback] = STATE(206), - [sym__verbatim_begin] = STATE(879), - [aux_sym__text] = STATE(126), - [aux_sym__inline_repeat1] = STATE(112), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACE_] = ACTIONS(53), - [anon_sym__] = ACTIONS(56), - [anon_sym_LBRACE_STAR] = ACTIONS(59), - [anon_sym_STAR] = ACTIONS(62), - [anon_sym_BSLASH] = ACTIONS(65), - [sym_quotation_marks] = ACTIONS(68), - [sym_ellipsis] = ACTIONS(68), - [sym_em_dash] = ACTIONS(68), - [sym_en_dash] = ACTIONS(71), - [sym_backslash_escape] = ACTIONS(71), - [anon_sym_LT] = ACTIONS(74), - [anon_sym_LBRACE_EQ] = ACTIONS(77), - [anon_sym_EQ_RBRACE] = ACTIONS(49), - [anon_sym_LBRACE_PLUS] = ACTIONS(80), - [anon_sym_LBRACE_DASH] = ACTIONS(83), - [sym_symbol] = ACTIONS(68), - [anon_sym_LBRACE_CARET] = ACTIONS(86), - [anon_sym_CARET] = ACTIONS(86), - [anon_sym_LBRACE_TILDE] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_LBRACK_CARET] = ACTIONS(92), - [anon_sym_RBRACK] = ACTIONS(95), - [anon_sym_BANG_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK] = ACTIONS(100), - [anon_sym_LBRACE2] = ACTIONS(71), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_TODO] = ACTIONS(106), - [anon_sym_WIP] = ACTIONS(106), - [anon_sym_NOTE] = ACTIONS(109), - [anon_sym_INFO] = ACTIONS(109), - [anon_sym_XXX] = ACTIONS(109), - [sym_fixme] = ACTIONS(68), - [anon_sym_PIPE] = ACTIONS(68), - [anon_sym_BQUOTE] = ACTIONS(112), - [sym__whitespace1] = ACTIONS(115), + [sym__inline] = STATE(876), + [sym__element] = STATE(103), + [sym_emphasis] = STATE(200), + [sym_emphasis_begin] = STATE(101), + [sym_strong] = STATE(200), + [sym_strong_begin] = STATE(104), + [sym__hard_line_break] = STATE(200), + [sym_hard_line_break] = STATE(200), + [sym__smart_punctuation] = STATE(200), + [sym_autolink] = STATE(200), + [sym_highlighted] = STATE(200), + [sym_insert] = STATE(200), + [sym_delete] = STATE(200), + [sym_superscript] = STATE(200), + [sym_subscript] = STATE(200), + [sym_footnote_reference] = STATE(200), + [sym__image] = STATE(200), + [sym_full_reference_image] = STATE(200), + [sym_collapsed_reference_image] = STATE(200), + [sym_inline_image] = STATE(200), + [sym__image_description] = STATE(642), + [sym__link] = STATE(200), + [sym_full_reference_link] = STATE(200), + [sym_collapsed_reference_link] = STATE(200), + [sym_inline_link] = STATE(200), + [sym_link_text] = STATE(643), + [sym__comment_with_spaces] = STATE(200), + [sym_span] = STATE(200), + [sym_raw_inline] = STATE(200), + [sym_math] = STATE(200), + [sym_verbatim] = STATE(200), + [sym__todo_highlights] = STATE(200), + [sym_todo] = STATE(200), + [sym_note] = STATE(200), + [sym__symbol_fallback] = STATE(200), + [aux_sym__text] = STATE(138), + [aux_sym__inline_repeat1] = STATE(103), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(51), + [anon_sym__] = ACTIONS(54), + [anon_sym_LBRACE_STAR] = ACTIONS(57), + [anon_sym_STAR] = ACTIONS(127), + [aux_sym_strong_end_token1] = ACTIONS(93), + [anon_sym_BSLASH] = ACTIONS(63), + [sym_quotation_marks] = ACTIONS(66), + [sym_ellipsis] = ACTIONS(66), + [sym_em_dash] = ACTIONS(66), + [sym_en_dash] = ACTIONS(69), + [sym_backslash_escape] = ACTIONS(69), + [anon_sym_LT] = ACTIONS(72), + [anon_sym_LBRACE_EQ] = ACTIONS(75), + [anon_sym_LBRACE_PLUS] = ACTIONS(78), + [anon_sym_LBRACE_DASH] = ACTIONS(81), + [sym_symbol] = ACTIONS(66), + [anon_sym_LBRACE_CARET] = ACTIONS(84), + [anon_sym_CARET] = ACTIONS(84), + [anon_sym_LBRACE_TILDE] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_LBRACK_CARET] = ACTIONS(95), + [anon_sym_RBRACK] = ACTIONS(98), + [anon_sym_BANG_LBRACK] = ACTIONS(100), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_LBRACE2] = ACTIONS(69), + [anon_sym_DOLLAR] = ACTIONS(106), + [anon_sym_TODO] = ACTIONS(109), + [anon_sym_WIP] = ACTIONS(109), + [anon_sym_NOTE] = ACTIONS(112), + [anon_sym_INFO] = ACTIONS(112), + [anon_sym_XXX] = ACTIONS(112), + [sym_fixme] = ACTIONS(66), + [anon_sym_PIPE] = ACTIONS(66), + [sym__whitespace1] = ACTIONS(130), [sym__newline] = ACTIONS(118), [aux_sym__text_token1] = ACTIONS(121), + [sym__verbatim_begin] = ACTIONS(124), }, [4] = { - [sym__inline] = STATE(833), - [sym__element] = STATE(112), - [sym_emphasis] = STATE(206), - [sym_emphasis_begin] = STATE(108), - [sym_strong] = STATE(206), - [sym_strong_begin] = STATE(110), - [sym__hard_line_break] = STATE(206), - [sym_hard_line_break] = STATE(206), - [sym__smart_punctuation] = STATE(206), - [sym_autolink] = STATE(206), - [sym_highlighted] = STATE(206), - [sym_insert] = STATE(206), - [sym_delete] = STATE(206), - [sym_superscript] = STATE(206), - [sym_subscript] = STATE(206), - [sym_footnote_reference] = STATE(206), - [sym__image] = STATE(206), - [sym_full_reference_image] = STATE(206), - [sym_collapsed_reference_image] = STATE(206), - [sym_inline_image] = STATE(206), - [sym__image_description] = STATE(664), - [sym__link] = STATE(206), - [sym_full_reference_link] = STATE(206), - [sym_collapsed_reference_link] = STATE(206), - [sym_inline_link] = STATE(206), - [sym_link_text] = STATE(663), - [sym__comment_with_spaces] = STATE(206), - [sym_span] = STATE(206), - [sym_raw_inline] = STATE(206), - [sym_math] = STATE(206), - [sym_verbatim] = STATE(206), - [sym__todo_highlights] = STATE(206), - [sym_todo] = STATE(206), - [sym_note] = STATE(206), - [sym__symbol_fallback] = STATE(206), - [sym__verbatim_begin] = STATE(879), - [aux_sym__text] = STATE(126), - [aux_sym__inline_repeat1] = STATE(112), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACE_] = ACTIONS(53), - [anon_sym__] = ACTIONS(124), - [aux_sym_emphasis_end_token1] = ACTIONS(49), - [anon_sym_LBRACE_STAR] = ACTIONS(59), - [anon_sym_STAR] = ACTIONS(62), - [anon_sym_BSLASH] = ACTIONS(65), - [sym_quotation_marks] = ACTIONS(68), - [sym_ellipsis] = ACTIONS(68), - [sym_em_dash] = ACTIONS(68), - [sym_en_dash] = ACTIONS(71), - [sym_backslash_escape] = ACTIONS(71), - [anon_sym_LT] = ACTIONS(74), - [anon_sym_LBRACE_EQ] = ACTIONS(77), - [anon_sym_LBRACE_PLUS] = ACTIONS(80), - [anon_sym_LBRACE_DASH] = ACTIONS(83), - [sym_symbol] = ACTIONS(68), - [anon_sym_LBRACE_CARET] = ACTIONS(86), - [anon_sym_CARET] = ACTIONS(86), - [anon_sym_LBRACE_TILDE] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_LBRACK_CARET] = ACTIONS(92), - [anon_sym_RBRACK] = ACTIONS(95), - [anon_sym_BANG_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK] = ACTIONS(100), - [anon_sym_LBRACE2] = ACTIONS(71), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_TODO] = ACTIONS(106), - [anon_sym_WIP] = ACTIONS(106), - [anon_sym_NOTE] = ACTIONS(109), - [anon_sym_INFO] = ACTIONS(109), - [anon_sym_XXX] = ACTIONS(109), - [sym_fixme] = ACTIONS(68), - [anon_sym_PIPE] = ACTIONS(68), - [anon_sym_BQUOTE] = ACTIONS(112), - [sym__whitespace1] = ACTIONS(127), + [sym__inline] = STATE(876), + [sym__element] = STATE(103), + [sym_emphasis] = STATE(200), + [sym_emphasis_begin] = STATE(101), + [sym_strong] = STATE(200), + [sym_strong_begin] = STATE(104), + [sym__hard_line_break] = STATE(200), + [sym_hard_line_break] = STATE(200), + [sym__smart_punctuation] = STATE(200), + [sym_autolink] = STATE(200), + [sym_highlighted] = STATE(200), + [sym_insert] = STATE(200), + [sym_delete] = STATE(200), + [sym_superscript] = STATE(200), + [sym_subscript] = STATE(200), + [sym_footnote_reference] = STATE(200), + [sym__image] = STATE(200), + [sym_full_reference_image] = STATE(200), + [sym_collapsed_reference_image] = STATE(200), + [sym_inline_image] = STATE(200), + [sym__image_description] = STATE(642), + [sym__link] = STATE(200), + [sym_full_reference_link] = STATE(200), + [sym_collapsed_reference_link] = STATE(200), + [sym_inline_link] = STATE(200), + [sym_link_text] = STATE(643), + [sym__comment_with_spaces] = STATE(200), + [sym_span] = STATE(200), + [sym_raw_inline] = STATE(200), + [sym_math] = STATE(200), + [sym_verbatim] = STATE(200), + [sym__todo_highlights] = STATE(200), + [sym_todo] = STATE(200), + [sym_note] = STATE(200), + [sym__symbol_fallback] = STATE(200), + [aux_sym__text] = STATE(138), + [aux_sym__inline_repeat1] = STATE(103), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(51), + [anon_sym__] = ACTIONS(54), + [anon_sym_LBRACE_STAR] = ACTIONS(57), + [anon_sym_STAR] = ACTIONS(60), + [anon_sym_BSLASH] = ACTIONS(63), + [sym_quotation_marks] = ACTIONS(66), + [sym_ellipsis] = ACTIONS(66), + [sym_em_dash] = ACTIONS(66), + [sym_en_dash] = ACTIONS(69), + [sym_backslash_escape] = ACTIONS(69), + [anon_sym_LT] = ACTIONS(72), + [anon_sym_LBRACE_EQ] = ACTIONS(75), + [anon_sym_LBRACE_PLUS] = ACTIONS(78), + [anon_sym_PLUS_RBRACE] = ACTIONS(93), + [anon_sym_LBRACE_DASH] = ACTIONS(81), + [sym_symbol] = ACTIONS(66), + [anon_sym_LBRACE_CARET] = ACTIONS(84), + [anon_sym_CARET] = ACTIONS(84), + [anon_sym_LBRACE_TILDE] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_LBRACK_CARET] = ACTIONS(95), + [anon_sym_RBRACK] = ACTIONS(98), + [anon_sym_BANG_LBRACK] = ACTIONS(100), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_LBRACE2] = ACTIONS(69), + [anon_sym_DOLLAR] = ACTIONS(106), + [anon_sym_TODO] = ACTIONS(109), + [anon_sym_WIP] = ACTIONS(109), + [anon_sym_NOTE] = ACTIONS(112), + [anon_sym_INFO] = ACTIONS(112), + [anon_sym_XXX] = ACTIONS(112), + [sym_fixme] = ACTIONS(66), + [anon_sym_PIPE] = ACTIONS(66), + [sym__whitespace1] = ACTIONS(115), [sym__newline] = ACTIONS(118), [aux_sym__text_token1] = ACTIONS(121), + [sym__verbatim_begin] = ACTIONS(124), }, [5] = { - [sym__inline] = STATE(833), - [sym__element] = STATE(112), - [sym_emphasis] = STATE(206), - [sym_emphasis_begin] = STATE(108), - [sym_strong] = STATE(206), - [sym_strong_begin] = STATE(110), - [sym__hard_line_break] = STATE(206), - [sym_hard_line_break] = STATE(206), - [sym__smart_punctuation] = STATE(206), - [sym_autolink] = STATE(206), - [sym_highlighted] = STATE(206), - [sym_insert] = STATE(206), - [sym_delete] = STATE(206), - [sym_superscript] = STATE(206), - [sym_subscript] = STATE(206), - [sym_footnote_reference] = STATE(206), - [sym__image] = STATE(206), - [sym_full_reference_image] = STATE(206), - [sym_collapsed_reference_image] = STATE(206), - [sym_inline_image] = STATE(206), - [sym__image_description] = STATE(664), - [sym__link] = STATE(206), - [sym_full_reference_link] = STATE(206), - [sym_collapsed_reference_link] = STATE(206), - [sym_inline_link] = STATE(206), - [sym_link_text] = STATE(663), - [sym__comment_with_spaces] = STATE(206), - [sym_span] = STATE(206), - [sym_raw_inline] = STATE(206), - [sym_math] = STATE(206), - [sym_verbatim] = STATE(206), - [sym__todo_highlights] = STATE(206), - [sym_todo] = STATE(206), - [sym_note] = STATE(206), - [sym__symbol_fallback] = STATE(206), - [sym__verbatim_begin] = STATE(879), - [aux_sym__text] = STATE(126), - [aux_sym__inline_repeat1] = STATE(112), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACE_] = ACTIONS(53), - [anon_sym__] = ACTIONS(56), - [anon_sym_LBRACE_STAR] = ACTIONS(59), - [anon_sym_STAR] = ACTIONS(62), - [anon_sym_BSLASH] = ACTIONS(65), - [sym_quotation_marks] = ACTIONS(68), - [sym_ellipsis] = ACTIONS(68), - [sym_em_dash] = ACTIONS(68), - [sym_en_dash] = ACTIONS(71), - [sym_backslash_escape] = ACTIONS(71), - [anon_sym_LT] = ACTIONS(74), - [anon_sym_LBRACE_EQ] = ACTIONS(77), - [anon_sym_LBRACE_PLUS] = ACTIONS(80), - [anon_sym_LBRACE_DASH] = ACTIONS(83), - [sym_symbol] = ACTIONS(68), - [anon_sym_LBRACE_CARET] = ACTIONS(86), - [anon_sym_CARET] = ACTIONS(86), - [anon_sym_LBRACE_TILDE] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(130), - [anon_sym_TILDE_RBRACE] = ACTIONS(49), - [anon_sym_LBRACK_CARET] = ACTIONS(92), - [anon_sym_RBRACK] = ACTIONS(95), - [anon_sym_BANG_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK] = ACTIONS(100), - [anon_sym_LBRACE2] = ACTIONS(71), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_TODO] = ACTIONS(106), - [anon_sym_WIP] = ACTIONS(106), - [anon_sym_NOTE] = ACTIONS(109), - [anon_sym_INFO] = ACTIONS(109), - [anon_sym_XXX] = ACTIONS(109), - [sym_fixme] = ACTIONS(68), - [anon_sym_PIPE] = ACTIONS(68), - [anon_sym_BQUOTE] = ACTIONS(112), + [sym__inline] = STATE(876), + [sym__element] = STATE(103), + [sym_emphasis] = STATE(200), + [sym_emphasis_begin] = STATE(101), + [sym_strong] = STATE(200), + [sym_strong_begin] = STATE(104), + [sym__hard_line_break] = STATE(200), + [sym_hard_line_break] = STATE(200), + [sym__smart_punctuation] = STATE(200), + [sym_autolink] = STATE(200), + [sym_highlighted] = STATE(200), + [sym_insert] = STATE(200), + [sym_delete] = STATE(200), + [sym_superscript] = STATE(200), + [sym_subscript] = STATE(200), + [sym_footnote_reference] = STATE(200), + [sym__image] = STATE(200), + [sym_full_reference_image] = STATE(200), + [sym_collapsed_reference_image] = STATE(200), + [sym_inline_image] = STATE(200), + [sym__image_description] = STATE(642), + [sym__link] = STATE(200), + [sym_full_reference_link] = STATE(200), + [sym_collapsed_reference_link] = STATE(200), + [sym_inline_link] = STATE(200), + [sym_link_text] = STATE(643), + [sym__comment_with_spaces] = STATE(200), + [sym_span] = STATE(200), + [sym_raw_inline] = STATE(200), + [sym_math] = STATE(200), + [sym_verbatim] = STATE(200), + [sym__todo_highlights] = STATE(200), + [sym_todo] = STATE(200), + [sym_note] = STATE(200), + [sym__symbol_fallback] = STATE(200), + [aux_sym__text] = STATE(138), + [aux_sym__inline_repeat1] = STATE(103), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(51), + [anon_sym__] = ACTIONS(54), + [anon_sym_LBRACE_STAR] = ACTIONS(57), + [anon_sym_STAR] = ACTIONS(60), + [anon_sym_BSLASH] = ACTIONS(63), + [sym_quotation_marks] = ACTIONS(66), + [sym_ellipsis] = ACTIONS(66), + [sym_em_dash] = ACTIONS(66), + [sym_en_dash] = ACTIONS(69), + [sym_backslash_escape] = ACTIONS(69), + [anon_sym_LT] = ACTIONS(72), + [anon_sym_LBRACE_EQ] = ACTIONS(75), + [anon_sym_EQ_RBRACE] = ACTIONS(93), + [anon_sym_LBRACE_PLUS] = ACTIONS(78), + [anon_sym_LBRACE_DASH] = ACTIONS(81), + [sym_symbol] = ACTIONS(66), + [anon_sym_LBRACE_CARET] = ACTIONS(84), + [anon_sym_CARET] = ACTIONS(84), + [anon_sym_LBRACE_TILDE] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_LBRACK_CARET] = ACTIONS(95), + [anon_sym_RBRACK] = ACTIONS(98), + [anon_sym_BANG_LBRACK] = ACTIONS(100), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_LBRACE2] = ACTIONS(69), + [anon_sym_DOLLAR] = ACTIONS(106), + [anon_sym_TODO] = ACTIONS(109), + [anon_sym_WIP] = ACTIONS(109), + [anon_sym_NOTE] = ACTIONS(112), + [anon_sym_INFO] = ACTIONS(112), + [anon_sym_XXX] = ACTIONS(112), + [sym_fixme] = ACTIONS(66), + [anon_sym_PIPE] = ACTIONS(66), [sym__whitespace1] = ACTIONS(115), [sym__newline] = ACTIONS(118), [aux_sym__text_token1] = ACTIONS(121), + [sym__verbatim_begin] = ACTIONS(124), }, [6] = { - [sym__inline] = STATE(833), - [sym__element] = STATE(112), - [sym_emphasis] = STATE(206), - [sym_emphasis_begin] = STATE(108), - [sym_strong] = STATE(206), - [sym_strong_begin] = STATE(110), - [sym__hard_line_break] = STATE(206), - [sym_hard_line_break] = STATE(206), - [sym__smart_punctuation] = STATE(206), - [sym_autolink] = STATE(206), - [sym_highlighted] = STATE(206), - [sym_insert] = STATE(206), - [sym_delete] = STATE(206), - [sym_superscript] = STATE(206), - [sym_subscript] = STATE(206), - [sym_footnote_reference] = STATE(206), - [sym__image] = STATE(206), - [sym_full_reference_image] = STATE(206), - [sym_collapsed_reference_image] = STATE(206), - [sym_inline_image] = STATE(206), - [sym__image_description] = STATE(664), - [sym__link] = STATE(206), - [sym_full_reference_link] = STATE(206), - [sym_collapsed_reference_link] = STATE(206), - [sym_inline_link] = STATE(206), - [sym_link_text] = STATE(663), - [sym__comment_with_spaces] = STATE(206), - [sym_span] = STATE(206), - [sym_raw_inline] = STATE(206), - [sym_math] = STATE(206), - [sym_verbatim] = STATE(206), - [sym__todo_highlights] = STATE(206), - [sym_todo] = STATE(206), - [sym_note] = STATE(206), - [sym__symbol_fallback] = STATE(206), - [sym__verbatim_begin] = STATE(879), - [aux_sym__text] = STATE(126), - [aux_sym__inline_repeat1] = STATE(112), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACE_] = ACTIONS(53), - [anon_sym__] = ACTIONS(56), - [anon_sym_LBRACE_STAR] = ACTIONS(59), - [anon_sym_STAR] = ACTIONS(133), - [aux_sym_strong_end_token1] = ACTIONS(49), - [anon_sym_BSLASH] = ACTIONS(65), - [sym_quotation_marks] = ACTIONS(68), - [sym_ellipsis] = ACTIONS(68), - [sym_em_dash] = ACTIONS(68), - [sym_en_dash] = ACTIONS(71), - [sym_backslash_escape] = ACTIONS(71), - [anon_sym_LT] = ACTIONS(74), - [anon_sym_LBRACE_EQ] = ACTIONS(77), - [anon_sym_LBRACE_PLUS] = ACTIONS(80), - [anon_sym_LBRACE_DASH] = ACTIONS(83), - [sym_symbol] = ACTIONS(68), - [anon_sym_LBRACE_CARET] = ACTIONS(86), - [anon_sym_CARET] = ACTIONS(86), - [anon_sym_LBRACE_TILDE] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_LBRACK_CARET] = ACTIONS(92), - [anon_sym_RBRACK] = ACTIONS(95), - [anon_sym_BANG_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK] = ACTIONS(100), - [anon_sym_LBRACE2] = ACTIONS(71), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_TODO] = ACTIONS(106), - [anon_sym_WIP] = ACTIONS(106), - [anon_sym_NOTE] = ACTIONS(109), - [anon_sym_INFO] = ACTIONS(109), - [anon_sym_XXX] = ACTIONS(109), - [sym_fixme] = ACTIONS(68), - [anon_sym_PIPE] = ACTIONS(68), - [anon_sym_BQUOTE] = ACTIONS(112), - [sym__whitespace1] = ACTIONS(127), - [sym__newline] = ACTIONS(118), + [sym__inline] = STATE(876), + [sym__element] = STATE(103), + [sym_emphasis] = STATE(200), + [sym_emphasis_begin] = STATE(101), + [sym_strong] = STATE(200), + [sym_strong_begin] = STATE(104), + [sym__hard_line_break] = STATE(200), + [sym_hard_line_break] = STATE(200), + [sym__smart_punctuation] = STATE(200), + [sym_autolink] = STATE(200), + [sym_highlighted] = STATE(200), + [sym_insert] = STATE(200), + [sym_delete] = STATE(200), + [sym_superscript] = STATE(200), + [sym_subscript] = STATE(200), + [sym_footnote_reference] = STATE(200), + [sym__image] = STATE(200), + [sym_full_reference_image] = STATE(200), + [sym_collapsed_reference_image] = STATE(200), + [sym_inline_image] = STATE(200), + [sym__image_description] = STATE(642), + [sym__link] = STATE(200), + [sym_full_reference_link] = STATE(200), + [sym_collapsed_reference_link] = STATE(200), + [sym_inline_link] = STATE(200), + [sym_link_text] = STATE(643), + [sym__comment_with_spaces] = STATE(200), + [sym_span] = STATE(200), + [sym_raw_inline] = STATE(200), + [sym_math] = STATE(200), + [sym_verbatim] = STATE(200), + [sym__todo_highlights] = STATE(200), + [sym_todo] = STATE(200), + [sym_note] = STATE(200), + [sym__symbol_fallback] = STATE(200), + [aux_sym__text] = STATE(138), + [aux_sym__inline_repeat1] = STATE(103), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(51), + [anon_sym__] = ACTIONS(54), + [anon_sym_LBRACE_STAR] = ACTIONS(57), + [anon_sym_STAR] = ACTIONS(60), + [anon_sym_BSLASH] = ACTIONS(63), + [sym_quotation_marks] = ACTIONS(66), + [sym_ellipsis] = ACTIONS(66), + [sym_em_dash] = ACTIONS(66), + [sym_en_dash] = ACTIONS(69), + [sym_backslash_escape] = ACTIONS(69), + [anon_sym_LT] = ACTIONS(72), + [anon_sym_LBRACE_EQ] = ACTIONS(75), + [anon_sym_LBRACE_PLUS] = ACTIONS(78), + [anon_sym_LBRACE_DASH] = ACTIONS(81), + [sym_symbol] = ACTIONS(66), + [anon_sym_LBRACE_CARET] = ACTIONS(84), + [anon_sym_CARET] = ACTIONS(84), + [anon_sym_LBRACE_TILDE] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_LBRACK_CARET] = ACTIONS(95), + [anon_sym_RBRACK] = ACTIONS(133), + [anon_sym_BANG_LBRACK] = ACTIONS(100), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_RBRACK2] = ACTIONS(93), + [anon_sym_LBRACE2] = ACTIONS(69), + [anon_sym_DOLLAR] = ACTIONS(106), + [anon_sym_TODO] = ACTIONS(109), + [anon_sym_WIP] = ACTIONS(109), + [anon_sym_NOTE] = ACTIONS(112), + [anon_sym_INFO] = ACTIONS(112), + [anon_sym_XXX] = ACTIONS(112), + [sym_fixme] = ACTIONS(66), + [anon_sym_PIPE] = ACTIONS(66), + [sym__whitespace1] = ACTIONS(115), + [sym__newline] = ACTIONS(118), [aux_sym__text_token1] = ACTIONS(121), + [sym__verbatim_begin] = ACTIONS(124), }, [7] = { - [sym__inline] = STATE(833), - [sym__element] = STATE(112), - [sym_emphasis] = STATE(206), - [sym_emphasis_begin] = STATE(108), - [sym_strong] = STATE(206), - [sym_strong_begin] = STATE(110), - [sym__hard_line_break] = STATE(206), - [sym_hard_line_break] = STATE(206), - [sym__smart_punctuation] = STATE(206), - [sym_autolink] = STATE(206), - [sym_highlighted] = STATE(206), - [sym_insert] = STATE(206), - [sym_delete] = STATE(206), - [sym_superscript] = STATE(206), - [sym_subscript] = STATE(206), - [sym_footnote_reference] = STATE(206), - [sym__image] = STATE(206), - [sym_full_reference_image] = STATE(206), - [sym_collapsed_reference_image] = STATE(206), - [sym_inline_image] = STATE(206), - [sym__image_description] = STATE(664), - [sym__link] = STATE(206), - [sym_full_reference_link] = STATE(206), - [sym_collapsed_reference_link] = STATE(206), - [sym_inline_link] = STATE(206), - [sym_link_text] = STATE(663), - [sym__comment_with_spaces] = STATE(206), - [sym_span] = STATE(206), - [sym_raw_inline] = STATE(206), - [sym_math] = STATE(206), - [sym_verbatim] = STATE(206), - [sym__todo_highlights] = STATE(206), - [sym_todo] = STATE(206), - [sym_note] = STATE(206), - [sym__symbol_fallback] = STATE(206), - [sym__verbatim_begin] = STATE(879), - [aux_sym__text] = STATE(126), - [aux_sym__inline_repeat1] = STATE(112), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACE_] = ACTIONS(53), - [anon_sym__] = ACTIONS(56), - [anon_sym_LBRACE_STAR] = ACTIONS(59), - [anon_sym_STAR] = ACTIONS(62), - [anon_sym_BSLASH] = ACTIONS(65), - [sym_quotation_marks] = ACTIONS(68), - [sym_ellipsis] = ACTIONS(68), - [sym_em_dash] = ACTIONS(68), - [sym_en_dash] = ACTIONS(71), - [sym_backslash_escape] = ACTIONS(71), - [anon_sym_LT] = ACTIONS(74), - [anon_sym_LBRACE_EQ] = ACTIONS(77), - [anon_sym_LBRACE_PLUS] = ACTIONS(80), - [anon_sym_PLUS_RBRACE] = ACTIONS(49), - [anon_sym_LBRACE_DASH] = ACTIONS(83), - [sym_symbol] = ACTIONS(68), - [anon_sym_LBRACE_CARET] = ACTIONS(86), - [anon_sym_CARET] = ACTIONS(86), - [anon_sym_LBRACE_TILDE] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_LBRACK_CARET] = ACTIONS(92), - [anon_sym_RBRACK] = ACTIONS(95), - [anon_sym_BANG_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK] = ACTIONS(100), - [anon_sym_LBRACE2] = ACTIONS(71), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_TODO] = ACTIONS(106), - [anon_sym_WIP] = ACTIONS(106), - [anon_sym_NOTE] = ACTIONS(109), - [anon_sym_INFO] = ACTIONS(109), - [anon_sym_XXX] = ACTIONS(109), - [sym_fixme] = ACTIONS(68), - [anon_sym_PIPE] = ACTIONS(68), - [anon_sym_BQUOTE] = ACTIONS(112), + [sym__inline] = STATE(876), + [sym__element] = STATE(103), + [sym_emphasis] = STATE(200), + [sym_emphasis_begin] = STATE(101), + [sym_strong] = STATE(200), + [sym_strong_begin] = STATE(104), + [sym__hard_line_break] = STATE(200), + [sym_hard_line_break] = STATE(200), + [sym__smart_punctuation] = STATE(200), + [sym_autolink] = STATE(200), + [sym_highlighted] = STATE(200), + [sym_insert] = STATE(200), + [sym_delete] = STATE(200), + [sym_superscript] = STATE(200), + [sym_subscript] = STATE(200), + [sym_footnote_reference] = STATE(200), + [sym__image] = STATE(200), + [sym_full_reference_image] = STATE(200), + [sym_collapsed_reference_image] = STATE(200), + [sym_inline_image] = STATE(200), + [sym__image_description] = STATE(642), + [sym__link] = STATE(200), + [sym_full_reference_link] = STATE(200), + [sym_collapsed_reference_link] = STATE(200), + [sym_inline_link] = STATE(200), + [sym_link_text] = STATE(643), + [sym__comment_with_spaces] = STATE(200), + [sym_span] = STATE(200), + [sym_raw_inline] = STATE(200), + [sym_math] = STATE(200), + [sym_verbatim] = STATE(200), + [sym__todo_highlights] = STATE(200), + [sym_todo] = STATE(200), + [sym_note] = STATE(200), + [sym__symbol_fallback] = STATE(200), + [aux_sym__text] = STATE(138), + [aux_sym__inline_repeat1] = STATE(103), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(51), + [anon_sym__] = ACTIONS(54), + [anon_sym_LBRACE_STAR] = ACTIONS(57), + [anon_sym_STAR] = ACTIONS(60), + [anon_sym_BSLASH] = ACTIONS(63), + [sym_quotation_marks] = ACTIONS(66), + [sym_ellipsis] = ACTIONS(66), + [sym_em_dash] = ACTIONS(66), + [sym_en_dash] = ACTIONS(69), + [sym_backslash_escape] = ACTIONS(69), + [anon_sym_LT] = ACTIONS(72), + [anon_sym_LBRACE_EQ] = ACTIONS(75), + [anon_sym_LBRACE_PLUS] = ACTIONS(78), + [anon_sym_LBRACE_DASH] = ACTIONS(81), + [sym_symbol] = ACTIONS(66), + [anon_sym_LBRACE_CARET] = ACTIONS(84), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_CARET_RBRACE] = ACTIONS(93), + [anon_sym_LBRACE_TILDE] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_LBRACK_CARET] = ACTIONS(95), + [anon_sym_RBRACK] = ACTIONS(98), + [anon_sym_BANG_LBRACK] = ACTIONS(100), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_LBRACE2] = ACTIONS(69), + [anon_sym_DOLLAR] = ACTIONS(106), + [anon_sym_TODO] = ACTIONS(109), + [anon_sym_WIP] = ACTIONS(109), + [anon_sym_NOTE] = ACTIONS(112), + [anon_sym_INFO] = ACTIONS(112), + [anon_sym_XXX] = ACTIONS(112), + [sym_fixme] = ACTIONS(66), + [anon_sym_PIPE] = ACTIONS(66), [sym__whitespace1] = ACTIONS(115), [sym__newline] = ACTIONS(118), [aux_sym__text_token1] = ACTIONS(121), + [sym__verbatim_begin] = ACTIONS(124), }, [8] = { - [sym__inline] = STATE(833), - [sym__element] = STATE(112), - [sym_emphasis] = STATE(206), - [sym_emphasis_begin] = STATE(108), - [sym_strong] = STATE(206), - [sym_strong_begin] = STATE(110), - [sym__hard_line_break] = STATE(206), - [sym_hard_line_break] = STATE(206), - [sym__smart_punctuation] = STATE(206), - [sym_autolink] = STATE(206), - [sym_highlighted] = STATE(206), - [sym_insert] = STATE(206), - [sym_delete] = STATE(206), - [sym_superscript] = STATE(206), - [sym_subscript] = STATE(206), - [sym_footnote_reference] = STATE(206), - [sym__image] = STATE(206), - [sym_full_reference_image] = STATE(206), - [sym_collapsed_reference_image] = STATE(206), - [sym_inline_image] = STATE(206), - [sym__image_description] = STATE(664), - [sym__link] = STATE(206), - [sym_full_reference_link] = STATE(206), - [sym_collapsed_reference_link] = STATE(206), - [sym_inline_link] = STATE(206), - [sym_link_text] = STATE(663), - [sym__comment_with_spaces] = STATE(206), - [sym_span] = STATE(206), - [sym_raw_inline] = STATE(206), - [sym_math] = STATE(206), - [sym_verbatim] = STATE(206), - [sym__todo_highlights] = STATE(206), - [sym_todo] = STATE(206), - [sym_note] = STATE(206), - [sym__symbol_fallback] = STATE(206), - [sym__verbatim_begin] = STATE(879), - [aux_sym__text] = STATE(126), - [aux_sym__inline_repeat1] = STATE(112), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACE_] = ACTIONS(53), - [anon_sym__] = ACTIONS(56), - [anon_sym_LBRACE_STAR] = ACTIONS(59), - [anon_sym_STAR] = ACTIONS(62), - [anon_sym_BSLASH] = ACTIONS(65), - [sym_quotation_marks] = ACTIONS(68), - [sym_ellipsis] = ACTIONS(68), - [sym_em_dash] = ACTIONS(68), - [sym_en_dash] = ACTIONS(71), - [sym_backslash_escape] = ACTIONS(71), - [anon_sym_LT] = ACTIONS(74), - [anon_sym_LBRACE_EQ] = ACTIONS(77), - [anon_sym_LBRACE_PLUS] = ACTIONS(80), - [anon_sym_LBRACE_DASH] = ACTIONS(83), - [anon_sym_DASH_RBRACE] = ACTIONS(49), - [sym_symbol] = ACTIONS(68), - [anon_sym_LBRACE_CARET] = ACTIONS(86), - [anon_sym_CARET] = ACTIONS(86), - [anon_sym_LBRACE_TILDE] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_LBRACK_CARET] = ACTIONS(92), - [anon_sym_RBRACK] = ACTIONS(95), - [anon_sym_BANG_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK] = ACTIONS(100), - [anon_sym_LBRACE2] = ACTIONS(71), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_TODO] = ACTIONS(106), - [anon_sym_WIP] = ACTIONS(106), - [anon_sym_NOTE] = ACTIONS(109), - [anon_sym_INFO] = ACTIONS(109), - [anon_sym_XXX] = ACTIONS(109), - [sym_fixme] = ACTIONS(68), - [anon_sym_PIPE] = ACTIONS(68), - [anon_sym_BQUOTE] = ACTIONS(112), - [sym__whitespace1] = ACTIONS(115), + [sym__inline] = STATE(876), + [sym__element] = STATE(103), + [sym_emphasis] = STATE(200), + [sym_emphasis_begin] = STATE(101), + [sym_strong] = STATE(200), + [sym_strong_begin] = STATE(104), + [sym__hard_line_break] = STATE(200), + [sym_hard_line_break] = STATE(200), + [sym__smart_punctuation] = STATE(200), + [sym_autolink] = STATE(200), + [sym_highlighted] = STATE(200), + [sym_insert] = STATE(200), + [sym_delete] = STATE(200), + [sym_superscript] = STATE(200), + [sym_subscript] = STATE(200), + [sym_footnote_reference] = STATE(200), + [sym__image] = STATE(200), + [sym_full_reference_image] = STATE(200), + [sym_collapsed_reference_image] = STATE(200), + [sym_inline_image] = STATE(200), + [sym__image_description] = STATE(642), + [sym__link] = STATE(200), + [sym_full_reference_link] = STATE(200), + [sym_collapsed_reference_link] = STATE(200), + [sym_inline_link] = STATE(200), + [sym_link_text] = STATE(643), + [sym__comment_with_spaces] = STATE(200), + [sym_span] = STATE(200), + [sym_raw_inline] = STATE(200), + [sym_math] = STATE(200), + [sym_verbatim] = STATE(200), + [sym__todo_highlights] = STATE(200), + [sym_todo] = STATE(200), + [sym_note] = STATE(200), + [sym__symbol_fallback] = STATE(200), + [aux_sym__text] = STATE(138), + [aux_sym__inline_repeat1] = STATE(103), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(51), + [anon_sym__] = ACTIONS(138), + [aux_sym_emphasis_end_token1] = ACTIONS(93), + [anon_sym_LBRACE_STAR] = ACTIONS(57), + [anon_sym_STAR] = ACTIONS(60), + [anon_sym_BSLASH] = ACTIONS(63), + [sym_quotation_marks] = ACTIONS(66), + [sym_ellipsis] = ACTIONS(66), + [sym_em_dash] = ACTIONS(66), + [sym_en_dash] = ACTIONS(69), + [sym_backslash_escape] = ACTIONS(69), + [anon_sym_LT] = ACTIONS(72), + [anon_sym_LBRACE_EQ] = ACTIONS(75), + [anon_sym_LBRACE_PLUS] = ACTIONS(78), + [anon_sym_LBRACE_DASH] = ACTIONS(81), + [sym_symbol] = ACTIONS(66), + [anon_sym_LBRACE_CARET] = ACTIONS(84), + [anon_sym_CARET] = ACTIONS(84), + [anon_sym_LBRACE_TILDE] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_LBRACK_CARET] = ACTIONS(95), + [anon_sym_RBRACK] = ACTIONS(98), + [anon_sym_BANG_LBRACK] = ACTIONS(100), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_LBRACE2] = ACTIONS(69), + [anon_sym_DOLLAR] = ACTIONS(106), + [anon_sym_TODO] = ACTIONS(109), + [anon_sym_WIP] = ACTIONS(109), + [anon_sym_NOTE] = ACTIONS(112), + [anon_sym_INFO] = ACTIONS(112), + [anon_sym_XXX] = ACTIONS(112), + [sym_fixme] = ACTIONS(66), + [anon_sym_PIPE] = ACTIONS(66), + [sym__whitespace1] = ACTIONS(130), [sym__newline] = ACTIONS(118), [aux_sym__text_token1] = ACTIONS(121), + [sym__verbatim_begin] = ACTIONS(124), }, [9] = { - [sym__inline] = STATE(833), - [sym__element] = STATE(112), - [sym_emphasis] = STATE(206), - [sym_emphasis_begin] = STATE(108), - [sym_strong] = STATE(206), - [sym_strong_begin] = STATE(110), - [sym__hard_line_break] = STATE(206), - [sym_hard_line_break] = STATE(206), - [sym__smart_punctuation] = STATE(206), - [sym_autolink] = STATE(206), - [sym_highlighted] = STATE(206), - [sym_insert] = STATE(206), - [sym_delete] = STATE(206), - [sym_superscript] = STATE(206), - [sym_subscript] = STATE(206), - [sym_footnote_reference] = STATE(206), - [sym__image] = STATE(206), - [sym_full_reference_image] = STATE(206), - [sym_collapsed_reference_image] = STATE(206), - [sym_inline_image] = STATE(206), - [sym__image_description] = STATE(664), - [sym__link] = STATE(206), - [sym_full_reference_link] = STATE(206), - [sym_collapsed_reference_link] = STATE(206), - [sym_inline_link] = STATE(206), - [sym_link_text] = STATE(663), - [sym__comment_with_spaces] = STATE(206), - [sym_span] = STATE(206), - [sym_raw_inline] = STATE(206), - [sym_math] = STATE(206), - [sym_verbatim] = STATE(206), - [sym__todo_highlights] = STATE(206), - [sym_todo] = STATE(206), - [sym_note] = STATE(206), - [sym__symbol_fallback] = STATE(206), - [sym__verbatim_begin] = STATE(879), - [aux_sym__text] = STATE(126), - [aux_sym__inline_repeat1] = STATE(112), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACE_] = ACTIONS(53), - [anon_sym__] = ACTIONS(56), - [anon_sym_LBRACE_STAR] = ACTIONS(59), - [anon_sym_STAR] = ACTIONS(62), - [anon_sym_BSLASH] = ACTIONS(65), - [sym_quotation_marks] = ACTIONS(68), - [sym_ellipsis] = ACTIONS(68), - [sym_em_dash] = ACTIONS(68), - [sym_en_dash] = ACTIONS(71), - [sym_backslash_escape] = ACTIONS(71), - [anon_sym_LT] = ACTIONS(74), - [anon_sym_LBRACE_EQ] = ACTIONS(77), - [anon_sym_LBRACE_PLUS] = ACTIONS(80), - [anon_sym_LBRACE_DASH] = ACTIONS(83), - [sym_symbol] = ACTIONS(68), - [anon_sym_LBRACE_CARET] = ACTIONS(86), - [anon_sym_CARET] = ACTIONS(136), - [anon_sym_CARET_RBRACE] = ACTIONS(49), - [anon_sym_LBRACE_TILDE] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_LBRACK_CARET] = ACTIONS(92), - [anon_sym_RBRACK] = ACTIONS(95), - [anon_sym_BANG_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK] = ACTIONS(100), - [anon_sym_LBRACE2] = ACTIONS(71), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_TODO] = ACTIONS(106), - [anon_sym_WIP] = ACTIONS(106), - [anon_sym_NOTE] = ACTIONS(109), - [anon_sym_INFO] = ACTIONS(109), - [anon_sym_XXX] = ACTIONS(109), - [sym_fixme] = ACTIONS(68), - [anon_sym_PIPE] = ACTIONS(68), - [anon_sym_BQUOTE] = ACTIONS(112), + [sym__inline] = STATE(876), + [sym__element] = STATE(103), + [sym_emphasis] = STATE(200), + [sym_emphasis_begin] = STATE(101), + [sym_strong] = STATE(200), + [sym_strong_begin] = STATE(104), + [sym__hard_line_break] = STATE(200), + [sym_hard_line_break] = STATE(200), + [sym__smart_punctuation] = STATE(200), + [sym_autolink] = STATE(200), + [sym_highlighted] = STATE(200), + [sym_insert] = STATE(200), + [sym_delete] = STATE(200), + [sym_superscript] = STATE(200), + [sym_subscript] = STATE(200), + [sym_footnote_reference] = STATE(200), + [sym__image] = STATE(200), + [sym_full_reference_image] = STATE(200), + [sym_collapsed_reference_image] = STATE(200), + [sym_inline_image] = STATE(200), + [sym__image_description] = STATE(642), + [sym__link] = STATE(200), + [sym_full_reference_link] = STATE(200), + [sym_collapsed_reference_link] = STATE(200), + [sym_inline_link] = STATE(200), + [sym_link_text] = STATE(643), + [sym__comment_with_spaces] = STATE(200), + [sym_span] = STATE(200), + [sym_raw_inline] = STATE(200), + [sym_math] = STATE(200), + [sym_verbatim] = STATE(200), + [sym__todo_highlights] = STATE(200), + [sym_todo] = STATE(200), + [sym_note] = STATE(200), + [sym__symbol_fallback] = STATE(200), + [aux_sym__text] = STATE(138), + [aux_sym__inline_repeat1] = STATE(103), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(51), + [anon_sym__] = ACTIONS(54), + [anon_sym_LBRACE_STAR] = ACTIONS(57), + [anon_sym_STAR] = ACTIONS(60), + [anon_sym_BSLASH] = ACTIONS(63), + [sym_quotation_marks] = ACTIONS(66), + [sym_ellipsis] = ACTIONS(66), + [sym_em_dash] = ACTIONS(66), + [sym_en_dash] = ACTIONS(69), + [sym_backslash_escape] = ACTIONS(69), + [anon_sym_LT] = ACTIONS(72), + [anon_sym_LBRACE_EQ] = ACTIONS(75), + [anon_sym_LBRACE_PLUS] = ACTIONS(78), + [anon_sym_LBRACE_DASH] = ACTIONS(81), + [anon_sym_DASH_RBRACE] = ACTIONS(93), + [sym_symbol] = ACTIONS(66), + [anon_sym_LBRACE_CARET] = ACTIONS(84), + [anon_sym_CARET] = ACTIONS(84), + [anon_sym_LBRACE_TILDE] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_LBRACK_CARET] = ACTIONS(95), + [anon_sym_RBRACK] = ACTIONS(98), + [anon_sym_BANG_LBRACK] = ACTIONS(100), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_LBRACE2] = ACTIONS(69), + [anon_sym_DOLLAR] = ACTIONS(106), + [anon_sym_TODO] = ACTIONS(109), + [anon_sym_WIP] = ACTIONS(109), + [anon_sym_NOTE] = ACTIONS(112), + [anon_sym_INFO] = ACTIONS(112), + [anon_sym_XXX] = ACTIONS(112), + [sym_fixme] = ACTIONS(66), + [anon_sym_PIPE] = ACTIONS(66), [sym__whitespace1] = ACTIONS(115), [sym__newline] = ACTIONS(118), [aux_sym__text_token1] = ACTIONS(121), + [sym__verbatim_begin] = ACTIONS(124), }, [10] = { - [sym__inline] = STATE(833), - [sym__element] = STATE(112), - [sym_emphasis] = STATE(206), - [sym_emphasis_begin] = STATE(108), - [sym_strong] = STATE(206), - [sym_strong_begin] = STATE(110), - [sym__hard_line_break] = STATE(206), - [sym_hard_line_break] = STATE(206), - [sym__smart_punctuation] = STATE(206), - [sym_autolink] = STATE(206), - [sym_highlighted] = STATE(206), - [sym_insert] = STATE(206), - [sym_delete] = STATE(206), - [sym_superscript] = STATE(206), - [sym_subscript] = STATE(206), - [sym_footnote_reference] = STATE(206), - [sym__image] = STATE(206), - [sym_full_reference_image] = STATE(206), - [sym_collapsed_reference_image] = STATE(206), - [sym_inline_image] = STATE(206), - [sym__image_description] = STATE(664), - [sym__link] = STATE(206), - [sym_full_reference_link] = STATE(206), - [sym_collapsed_reference_link] = STATE(206), - [sym_inline_link] = STATE(206), - [sym_link_text] = STATE(663), - [sym__comment_with_spaces] = STATE(206), - [sym_span] = STATE(206), - [sym_raw_inline] = STATE(206), - [sym_math] = STATE(206), - [sym_verbatim] = STATE(206), - [sym__todo_highlights] = STATE(206), - [sym_todo] = STATE(206), - [sym_note] = STATE(206), - [sym__symbol_fallback] = STATE(206), - [sym__verbatim_begin] = STATE(879), - [aux_sym__text] = STATE(126), - [aux_sym__inline_repeat1] = STATE(112), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACE_] = ACTIONS(53), - [anon_sym__] = ACTIONS(56), - [anon_sym_LBRACE_STAR] = ACTIONS(59), - [anon_sym_STAR] = ACTIONS(62), - [anon_sym_BSLASH] = ACTIONS(65), - [sym_quotation_marks] = ACTIONS(68), - [sym_ellipsis] = ACTIONS(68), - [sym_em_dash] = ACTIONS(68), - [sym_en_dash] = ACTIONS(71), - [sym_backslash_escape] = ACTIONS(71), - [anon_sym_LT] = ACTIONS(74), - [anon_sym_LBRACE_EQ] = ACTIONS(77), - [anon_sym_LBRACE_PLUS] = ACTIONS(80), - [anon_sym_LBRACE_DASH] = ACTIONS(83), - [sym_symbol] = ACTIONS(68), - [anon_sym_LBRACE_CARET] = ACTIONS(86), - [anon_sym_CARET] = ACTIONS(86), - [anon_sym_LBRACE_TILDE] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_LBRACK_CARET] = ACTIONS(92), - [anon_sym_RBRACK] = ACTIONS(139), - [anon_sym_BANG_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK] = ACTIONS(100), - [anon_sym_RBRACK2] = ACTIONS(49), - [anon_sym_LBRACE2] = ACTIONS(71), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_TODO] = ACTIONS(106), - [anon_sym_WIP] = ACTIONS(106), - [anon_sym_NOTE] = ACTIONS(109), - [anon_sym_INFO] = ACTIONS(109), - [anon_sym_XXX] = ACTIONS(109), - [sym_fixme] = ACTIONS(68), - [anon_sym_PIPE] = ACTIONS(68), - [anon_sym_BQUOTE] = ACTIONS(112), + [sym__inline] = STATE(876), + [sym__element] = STATE(103), + [sym_emphasis] = STATE(200), + [sym_emphasis_begin] = STATE(101), + [sym_strong] = STATE(200), + [sym_strong_begin] = STATE(104), + [sym__hard_line_break] = STATE(200), + [sym_hard_line_break] = STATE(200), + [sym__smart_punctuation] = STATE(200), + [sym_autolink] = STATE(200), + [sym_highlighted] = STATE(200), + [sym_insert] = STATE(200), + [sym_delete] = STATE(200), + [sym_superscript] = STATE(200), + [sym_subscript] = STATE(200), + [sym_footnote_reference] = STATE(200), + [sym__image] = STATE(200), + [sym_full_reference_image] = STATE(200), + [sym_collapsed_reference_image] = STATE(200), + [sym_inline_image] = STATE(200), + [sym__image_description] = STATE(642), + [sym__link] = STATE(200), + [sym_full_reference_link] = STATE(200), + [sym_collapsed_reference_link] = STATE(200), + [sym_inline_link] = STATE(200), + [sym_link_text] = STATE(643), + [sym__comment_with_spaces] = STATE(200), + [sym_span] = STATE(200), + [sym_raw_inline] = STATE(200), + [sym_math] = STATE(200), + [sym_verbatim] = STATE(200), + [sym__todo_highlights] = STATE(200), + [sym_todo] = STATE(200), + [sym_note] = STATE(200), + [sym__symbol_fallback] = STATE(200), + [aux_sym__text] = STATE(138), + [aux_sym__inline_repeat1] = STATE(103), + [ts_builtin_sym_end] = ACTIONS(93), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(51), + [anon_sym__] = ACTIONS(54), + [anon_sym_LBRACE_STAR] = ACTIONS(57), + [anon_sym_STAR] = ACTIONS(60), + [anon_sym_BSLASH] = ACTIONS(63), + [sym_quotation_marks] = ACTIONS(66), + [sym_ellipsis] = ACTIONS(66), + [sym_em_dash] = ACTIONS(66), + [sym_en_dash] = ACTIONS(69), + [sym_backslash_escape] = ACTIONS(69), + [anon_sym_LT] = ACTIONS(72), + [anon_sym_LBRACE_EQ] = ACTIONS(75), + [anon_sym_LBRACE_PLUS] = ACTIONS(78), + [anon_sym_LBRACE_DASH] = ACTIONS(81), + [sym_symbol] = ACTIONS(66), + [anon_sym_LBRACE_CARET] = ACTIONS(84), + [anon_sym_CARET] = ACTIONS(84), + [anon_sym_LBRACE_TILDE] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_LBRACK_CARET] = ACTIONS(95), + [anon_sym_RBRACK] = ACTIONS(98), + [anon_sym_BANG_LBRACK] = ACTIONS(100), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_LBRACE2] = ACTIONS(69), + [anon_sym_DOLLAR] = ACTIONS(106), + [anon_sym_TODO] = ACTIONS(109), + [anon_sym_WIP] = ACTIONS(109), + [anon_sym_NOTE] = ACTIONS(112), + [anon_sym_INFO] = ACTIONS(112), + [anon_sym_XXX] = ACTIONS(112), + [sym_fixme] = ACTIONS(66), + [anon_sym_PIPE] = ACTIONS(66), [sym__whitespace1] = ACTIONS(115), [sym__newline] = ACTIONS(118), [aux_sym__text_token1] = ACTIONS(121), + [sym__verbatim_begin] = ACTIONS(124), }, [11] = { - [sym__inline] = STATE(717), - [sym__element] = STATE(96), + [sym__inline] = STATE(707), + [sym__element] = STATE(120), [sym_emphasis] = STATE(182), - [sym_emphasis_begin] = STATE(103), + [sym_emphasis_begin] = STATE(97), [sym_strong] = STATE(182), - [sym_strong_begin] = STATE(104), + [sym_strong_begin] = STATE(99), [sym__hard_line_break] = STATE(182), [sym_hard_line_break] = STATE(182), [sym__smart_punctuation] = STATE(182), @@ -9058,12 +8874,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_full_reference_image] = STATE(182), [sym_collapsed_reference_image] = STATE(182), [sym_inline_image] = STATE(182), - [sym__image_description] = STATE(672), + [sym__image_description] = STATE(628), [sym__link] = STATE(182), [sym_full_reference_link] = STATE(182), [sym_collapsed_reference_link] = STATE(182), [sym_inline_link] = STATE(182), - [sym_link_text] = STATE(671), + [sym_link_text] = STATE(627), [sym__comment_with_spaces] = STATE(182), [sym_span] = STATE(182), [sym_raw_inline] = STATE(182), @@ -9073,12 +8889,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(182), [sym_note] = STATE(182), [sym__symbol_fallback] = STATE(182), - [sym__verbatim_begin] = STATE(870), - [aux_sym__text] = STATE(150), - [aux_sym__inline_repeat1] = STATE(96), - [anon_sym_LBRACE] = ACTIONS(51), + [aux_sym__text] = STATE(136), + [aux_sym__inline_repeat1] = STATE(120), + [anon_sym_LBRACE] = ACTIONS(49), [anon_sym_LBRACE_] = ACTIONS(141), [anon_sym__] = ACTIONS(144), + [aux_sym_emphasis_end_token1] = ACTIONS(93), [anon_sym_LBRACE_STAR] = ACTIONS(147), [anon_sym_STAR] = ACTIONS(150), [anon_sym_BSLASH] = ACTIONS(153), @@ -9095,143 +8911,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_CARET] = ACTIONS(174), [anon_sym_CARET] = ACTIONS(174), [anon_sym_LBRACE_TILDE] = ACTIONS(177), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_TILDE_RBRACE] = ACTIONS(49), - [anon_sym_LBRACK_CARET] = ACTIONS(183), - [anon_sym_BANG_LBRACK] = ACTIONS(186), - [anon_sym_LBRACK] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_LBRACK_CARET] = ACTIONS(180), + [anon_sym_BANG_LBRACK] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(186), [anon_sym_LBRACE2] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(192), - [anon_sym_TODO] = ACTIONS(195), - [anon_sym_WIP] = ACTIONS(195), - [anon_sym_NOTE] = ACTIONS(198), - [anon_sym_INFO] = ACTIONS(198), - [anon_sym_XXX] = ACTIONS(198), + [anon_sym_DOLLAR] = ACTIONS(189), + [anon_sym_TODO] = ACTIONS(192), + [anon_sym_WIP] = ACTIONS(192), + [anon_sym_NOTE] = ACTIONS(195), + [anon_sym_INFO] = ACTIONS(195), + [anon_sym_XXX] = ACTIONS(195), [sym_fixme] = ACTIONS(156), [anon_sym_PIPE] = ACTIONS(156), - [anon_sym_BQUOTE] = ACTIONS(112), - [sym__whitespace1] = ACTIONS(201), - [sym__newline] = ACTIONS(204), - [aux_sym__text_token1] = ACTIONS(207), + [sym__whitespace1] = ACTIONS(198), + [sym__newline] = ACTIONS(201), + [aux_sym__text_token1] = ACTIONS(204), + [sym__verbatim_begin] = ACTIONS(207), }, [12] = { - [sym__inline] = STATE(862), - [sym__element] = STATE(112), - [sym_emphasis] = STATE(206), - [sym_emphasis_begin] = STATE(108), - [sym_strong] = STATE(206), - [sym_strong_begin] = STATE(110), - [sym__hard_line_break] = STATE(206), - [sym_hard_line_break] = STATE(206), - [sym__smart_punctuation] = STATE(206), - [sym_autolink] = STATE(206), - [sym_highlighted] = STATE(206), - [sym_insert] = STATE(206), - [sym_delete] = STATE(206), - [sym_superscript] = STATE(206), - [sym_subscript] = STATE(206), - [sym_footnote_reference] = STATE(206), - [sym__image] = STATE(206), - [sym_full_reference_image] = STATE(206), - [sym_collapsed_reference_image] = STATE(206), - [sym_inline_image] = STATE(206), - [sym__image_description] = STATE(664), - [sym__link] = STATE(206), - [sym_full_reference_link] = STATE(206), - [sym_collapsed_reference_link] = STATE(206), - [sym_inline_link] = STATE(206), - [sym_link_text] = STATE(663), - [sym__comment_with_spaces] = STATE(206), - [sym_span] = STATE(206), - [sym_raw_inline] = STATE(206), - [sym_math] = STATE(206), - [sym_verbatim] = STATE(206), - [sym__todo_highlights] = STATE(206), - [sym_todo] = STATE(206), - [sym_note] = STATE(206), - [sym__symbol_fallback] = STATE(206), - [sym__verbatim_begin] = STATE(879), - [aux_sym__text] = STATE(126), - [aux_sym__inline_repeat1] = STATE(112), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACE_] = ACTIONS(53), - [anon_sym__] = ACTIONS(56), - [anon_sym_LBRACE_STAR] = ACTIONS(59), - [anon_sym_STAR] = ACTIONS(62), - [anon_sym_BSLASH] = ACTIONS(65), - [sym_quotation_marks] = ACTIONS(68), - [sym_ellipsis] = ACTIONS(68), - [sym_em_dash] = ACTIONS(68), - [sym_en_dash] = ACTIONS(71), - [sym_backslash_escape] = ACTIONS(71), - [anon_sym_LT] = ACTIONS(74), - [anon_sym_LBRACE_EQ] = ACTIONS(77), - [anon_sym_LBRACE_PLUS] = ACTIONS(80), - [anon_sym_LBRACE_DASH] = ACTIONS(83), - [sym_symbol] = ACTIONS(68), - [anon_sym_LBRACE_CARET] = ACTIONS(86), - [anon_sym_CARET] = ACTIONS(136), - [anon_sym_CARET_RBRACE] = ACTIONS(49), - [anon_sym_LBRACE_TILDE] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_LBRACK_CARET] = ACTIONS(92), - [anon_sym_BANG_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK] = ACTIONS(100), - [anon_sym_LBRACE2] = ACTIONS(71), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_TODO] = ACTIONS(106), - [anon_sym_WIP] = ACTIONS(106), - [anon_sym_NOTE] = ACTIONS(109), - [anon_sym_INFO] = ACTIONS(109), - [anon_sym_XXX] = ACTIONS(109), - [sym_fixme] = ACTIONS(68), - [anon_sym_PIPE] = ACTIONS(68), - [anon_sym_BQUOTE] = ACTIONS(112), - [sym__whitespace1] = ACTIONS(115), - [sym__newline] = ACTIONS(118), - [aux_sym__text_token1] = ACTIONS(121), - }, - [13] = { - [sym__inline] = STATE(851), - [sym__element] = STATE(98), - [sym_emphasis] = STATE(207), - [sym_emphasis_begin] = STATE(89), - [sym_strong] = STATE(207), - [sym_strong_begin] = STATE(72), - [sym__hard_line_break] = STATE(207), - [sym_hard_line_break] = STATE(207), - [sym__smart_punctuation] = STATE(207), - [sym_autolink] = STATE(207), - [sym_highlighted] = STATE(207), - [sym_insert] = STATE(207), - [sym_delete] = STATE(207), - [sym_superscript] = STATE(207), - [sym_subscript] = STATE(207), - [sym_footnote_reference] = STATE(207), - [sym__image] = STATE(207), - [sym_full_reference_image] = STATE(207), - [sym_collapsed_reference_image] = STATE(207), - [sym_inline_image] = STATE(207), - [sym__image_description] = STATE(666), - [sym__link] = STATE(207), - [sym_full_reference_link] = STATE(207), - [sym_collapsed_reference_link] = STATE(207), - [sym_inline_link] = STATE(207), - [sym_link_text] = STATE(667), - [sym__comment_with_spaces] = STATE(207), - [sym_span] = STATE(207), - [sym_raw_inline] = STATE(207), - [sym_math] = STATE(207), - [sym_verbatim] = STATE(207), - [sym__todo_highlights] = STATE(207), - [sym_todo] = STATE(207), - [sym_note] = STATE(207), - [sym__symbol_fallback] = STATE(207), - [sym__verbatim_begin] = STATE(852), - [aux_sym__text] = STATE(139), - [aux_sym__inline_repeat1] = STATE(98), - [ts_builtin_sym_end] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), + [sym__inline] = STATE(803), + [sym__element] = STATE(116), + [sym_emphasis] = STATE(183), + [sym_emphasis_begin] = STATE(91), + [sym_strong] = STATE(183), + [sym_strong_begin] = STATE(92), + [sym__hard_line_break] = STATE(183), + [sym_hard_line_break] = STATE(183), + [sym__smart_punctuation] = STATE(183), + [sym_autolink] = STATE(183), + [sym_highlighted] = STATE(183), + [sym_insert] = STATE(183), + [sym_delete] = STATE(183), + [sym_superscript] = STATE(183), + [sym_subscript] = STATE(183), + [sym_footnote_reference] = STATE(183), + [sym__image] = STATE(183), + [sym_full_reference_image] = STATE(183), + [sym_collapsed_reference_image] = STATE(183), + [sym_inline_image] = STATE(183), + [sym__image_description] = STATE(645), + [sym__link] = STATE(183), + [sym_full_reference_link] = STATE(183), + [sym_collapsed_reference_link] = STATE(183), + [sym_inline_link] = STATE(183), + [sym_link_text] = STATE(646), + [sym__comment_with_spaces] = STATE(183), + [sym_span] = STATE(183), + [sym_raw_inline] = STATE(183), + [sym_math] = STATE(183), + [sym_verbatim] = STATE(183), + [sym__todo_highlights] = STATE(183), + [sym_todo] = STATE(183), + [sym_note] = STATE(183), + [sym__symbol_fallback] = STATE(183), + [aux_sym__text] = STATE(149), + [aux_sym__inline_repeat1] = STATE(116), + [anon_sym_LBRACE] = ACTIONS(49), [anon_sym_LBRACE_] = ACTIONS(210), [anon_sym__] = ACTIONS(213), [anon_sym_LBRACE_STAR] = ACTIONS(216), @@ -9244,6 +8980,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_backslash_escape] = ACTIONS(228), [anon_sym_LT] = ACTIONS(231), [anon_sym_LBRACE_EQ] = ACTIONS(234), + [anon_sym_EQ_RBRACE] = ACTIONS(93), [anon_sym_LBRACE_PLUS] = ACTIONS(237), [anon_sym_LBRACE_DASH] = ACTIONS(240), [sym_symbol] = ACTIONS(225), @@ -9263,18 +9000,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_XXX] = ACTIONS(264), [sym_fixme] = ACTIONS(225), [anon_sym_PIPE] = ACTIONS(225), - [anon_sym_BQUOTE] = ACTIONS(112), [sym__whitespace1] = ACTIONS(267), [sym__newline] = ACTIONS(270), [aux_sym__text_token1] = ACTIONS(273), + [sym__verbatim_begin] = ACTIONS(276), }, - [14] = { - [sym__inline] = STATE(709), - [sym__element] = STATE(84), + [13] = { + [sym__inline] = STATE(835), + [sym__element] = STATE(119), [sym_emphasis] = STATE(197), - [sym_emphasis_begin] = STATE(97), + [sym_emphasis_begin] = STATE(81), [sym_strong] = STATE(197), - [sym_strong_begin] = STATE(100), + [sym_strong_begin] = STATE(82), [sym__hard_line_break] = STATE(197), [sym_hard_line_break] = STATE(197), [sym__smart_punctuation] = STATE(197), @@ -9289,12 +9026,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_full_reference_image] = STATE(197), [sym_collapsed_reference_image] = STATE(197), [sym_inline_image] = STATE(197), - [sym__image_description] = STATE(676), + [sym__image_description] = STATE(654), [sym__link] = STATE(197), [sym_full_reference_link] = STATE(197), [sym_collapsed_reference_link] = STATE(197), [sym_inline_link] = STATE(197), - [sym_link_text] = STATE(677), + [sym_link_text] = STATE(651), [sym__comment_with_spaces] = STATE(197), [sym_span] = STATE(197), [sym_raw_inline] = STATE(197), @@ -9304,54 +9041,281 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(197), [sym_note] = STATE(197), [sym__symbol_fallback] = STATE(197), - [sym__verbatim_begin] = STATE(861), - [aux_sym__text] = STATE(159), - [aux_sym__inline_repeat1] = STATE(84), - [ts_builtin_sym_end] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACE_] = ACTIONS(276), - [anon_sym__] = ACTIONS(279), - [anon_sym_LBRACE_STAR] = ACTIONS(282), - [anon_sym_STAR] = ACTIONS(285), - [anon_sym_BSLASH] = ACTIONS(288), - [sym_quotation_marks] = ACTIONS(291), - [sym_ellipsis] = ACTIONS(291), - [sym_em_dash] = ACTIONS(291), - [sym_en_dash] = ACTIONS(294), - [sym_backslash_escape] = ACTIONS(294), - [anon_sym_LT] = ACTIONS(297), - [anon_sym_LBRACE_EQ] = ACTIONS(300), - [anon_sym_LBRACE_PLUS] = ACTIONS(303), - [anon_sym_LBRACE_DASH] = ACTIONS(306), - [sym_symbol] = ACTIONS(291), - [anon_sym_LBRACE_CARET] = ACTIONS(309), - [anon_sym_CARET] = ACTIONS(309), - [anon_sym_LBRACE_TILDE] = ACTIONS(312), - [anon_sym_TILDE] = ACTIONS(312), - [anon_sym_LBRACK_CARET] = ACTIONS(315), - [anon_sym_BANG_LBRACK] = ACTIONS(318), - [anon_sym_LBRACK] = ACTIONS(321), - [anon_sym_LBRACE2] = ACTIONS(294), - [anon_sym_DOLLAR] = ACTIONS(324), - [anon_sym_TODO] = ACTIONS(327), - [anon_sym_WIP] = ACTIONS(327), - [anon_sym_NOTE] = ACTIONS(330), - [anon_sym_INFO] = ACTIONS(330), - [anon_sym_XXX] = ACTIONS(330), - [sym_fixme] = ACTIONS(291), - [anon_sym_PIPE] = ACTIONS(291), - [anon_sym_BQUOTE] = ACTIONS(112), - [sym__whitespace1] = ACTIONS(333), - [sym__newline] = ACTIONS(336), - [aux_sym__text_token1] = ACTIONS(339), + [aux_sym__text] = STATE(132), + [aux_sym__inline_repeat1] = STATE(119), + [ts_builtin_sym_end] = ACTIONS(93), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(279), + [anon_sym__] = ACTIONS(282), + [anon_sym_LBRACE_STAR] = ACTIONS(285), + [anon_sym_STAR] = ACTIONS(288), + [anon_sym_BSLASH] = ACTIONS(291), + [sym_quotation_marks] = ACTIONS(294), + [sym_ellipsis] = ACTIONS(294), + [sym_em_dash] = ACTIONS(294), + [sym_en_dash] = ACTIONS(297), + [sym_backslash_escape] = ACTIONS(297), + [anon_sym_LT] = ACTIONS(300), + [anon_sym_LBRACE_EQ] = ACTIONS(303), + [anon_sym_LBRACE_PLUS] = ACTIONS(306), + [anon_sym_LBRACE_DASH] = ACTIONS(309), + [sym_symbol] = ACTIONS(294), + [anon_sym_LBRACE_CARET] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(312), + [anon_sym_LBRACE_TILDE] = ACTIONS(315), + [anon_sym_TILDE] = ACTIONS(315), + [anon_sym_LBRACK_CARET] = ACTIONS(318), + [anon_sym_BANG_LBRACK] = ACTIONS(321), + [anon_sym_LBRACK] = ACTIONS(324), + [anon_sym_LBRACE2] = ACTIONS(297), + [anon_sym_DOLLAR] = ACTIONS(327), + [anon_sym_TODO] = ACTIONS(330), + [anon_sym_WIP] = ACTIONS(330), + [anon_sym_NOTE] = ACTIONS(333), + [anon_sym_INFO] = ACTIONS(333), + [anon_sym_XXX] = ACTIONS(333), + [sym_fixme] = ACTIONS(294), + [anon_sym_PIPE] = ACTIONS(294), + [sym__whitespace1] = ACTIONS(336), + [sym__newline] = ACTIONS(339), + [aux_sym__text_token1] = ACTIONS(342), + [sym__verbatim_begin] = ACTIONS(345), + }, + [14] = { + [sym__inline] = STATE(831), + [sym__element] = STATE(77), + [sym_emphasis] = STATE(174), + [sym_emphasis_begin] = STATE(86), + [sym_strong] = STATE(174), + [sym_strong_begin] = STATE(89), + [sym__hard_line_break] = STATE(174), + [sym_hard_line_break] = STATE(174), + [sym__smart_punctuation] = STATE(174), + [sym_autolink] = STATE(174), + [sym_highlighted] = STATE(174), + [sym_insert] = STATE(174), + [sym_delete] = STATE(174), + [sym_superscript] = STATE(174), + [sym_subscript] = STATE(174), + [sym_footnote_reference] = STATE(174), + [sym__image] = STATE(174), + [sym_full_reference_image] = STATE(174), + [sym_collapsed_reference_image] = STATE(174), + [sym_inline_image] = STATE(174), + [sym__image_description] = STATE(630), + [sym__link] = STATE(174), + [sym_full_reference_link] = STATE(174), + [sym_collapsed_reference_link] = STATE(174), + [sym_inline_link] = STATE(174), + [sym_link_text] = STATE(631), + [sym__comment_with_spaces] = STATE(174), + [sym_span] = STATE(174), + [sym_raw_inline] = STATE(174), + [sym_math] = STATE(174), + [sym_verbatim] = STATE(174), + [sym__todo_highlights] = STATE(174), + [sym_todo] = STATE(174), + [sym_note] = STATE(174), + [sym__symbol_fallback] = STATE(174), + [aux_sym__text] = STATE(148), + [aux_sym__inline_repeat1] = STATE(77), + [ts_builtin_sym_end] = ACTIONS(93), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(348), + [anon_sym__] = ACTIONS(351), + [anon_sym_LBRACE_STAR] = ACTIONS(354), + [anon_sym_STAR] = ACTIONS(357), + [anon_sym_BSLASH] = ACTIONS(360), + [sym_quotation_marks] = ACTIONS(363), + [sym_ellipsis] = ACTIONS(363), + [sym_em_dash] = ACTIONS(363), + [sym_en_dash] = ACTIONS(366), + [sym_backslash_escape] = ACTIONS(366), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_LBRACE_EQ] = ACTIONS(372), + [anon_sym_LBRACE_PLUS] = ACTIONS(375), + [anon_sym_LBRACE_DASH] = ACTIONS(378), + [sym_symbol] = ACTIONS(363), + [anon_sym_LBRACE_CARET] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(381), + [anon_sym_LBRACE_TILDE] = ACTIONS(384), + [anon_sym_TILDE] = ACTIONS(384), + [anon_sym_LBRACK_CARET] = ACTIONS(387), + [anon_sym_BANG_LBRACK] = ACTIONS(390), + [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_LBRACE2] = ACTIONS(366), + [anon_sym_DOLLAR] = ACTIONS(396), + [anon_sym_TODO] = ACTIONS(399), + [anon_sym_WIP] = ACTIONS(399), + [anon_sym_NOTE] = ACTIONS(402), + [anon_sym_INFO] = ACTIONS(402), + [anon_sym_XXX] = ACTIONS(402), + [sym_fixme] = ACTIONS(363), + [anon_sym_PIPE] = ACTIONS(363), + [sym__whitespace1] = ACTIONS(405), + [sym__newline] = ACTIONS(408), + [aux_sym__text_token1] = ACTIONS(411), + [sym__verbatim_begin] = ACTIONS(414), }, [15] = { - [sym__inline] = STATE(710), - [sym__element] = STATE(96), + [sym__inline] = STATE(830), + [sym__element] = STATE(116), + [sym_emphasis] = STATE(183), + [sym_emphasis_begin] = STATE(91), + [sym_strong] = STATE(183), + [sym_strong_begin] = STATE(92), + [sym__hard_line_break] = STATE(183), + [sym_hard_line_break] = STATE(183), + [sym__smart_punctuation] = STATE(183), + [sym_autolink] = STATE(183), + [sym_highlighted] = STATE(183), + [sym_insert] = STATE(183), + [sym_delete] = STATE(183), + [sym_superscript] = STATE(183), + [sym_subscript] = STATE(183), + [sym_footnote_reference] = STATE(183), + [sym__image] = STATE(183), + [sym_full_reference_image] = STATE(183), + [sym_collapsed_reference_image] = STATE(183), + [sym_inline_image] = STATE(183), + [sym__image_description] = STATE(645), + [sym__link] = STATE(183), + [sym_full_reference_link] = STATE(183), + [sym_collapsed_reference_link] = STATE(183), + [sym_inline_link] = STATE(183), + [sym_link_text] = STATE(646), + [sym__comment_with_spaces] = STATE(183), + [sym_span] = STATE(183), + [sym_raw_inline] = STATE(183), + [sym_math] = STATE(183), + [sym_verbatim] = STATE(183), + [sym__todo_highlights] = STATE(183), + [sym_todo] = STATE(183), + [sym_note] = STATE(183), + [sym__symbol_fallback] = STATE(183), + [aux_sym__text] = STATE(149), + [aux_sym__inline_repeat1] = STATE(116), + [ts_builtin_sym_end] = ACTIONS(93), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(210), + [anon_sym__] = ACTIONS(213), + [anon_sym_LBRACE_STAR] = ACTIONS(216), + [anon_sym_STAR] = ACTIONS(219), + [anon_sym_BSLASH] = ACTIONS(222), + [sym_quotation_marks] = ACTIONS(225), + [sym_ellipsis] = ACTIONS(225), + [sym_em_dash] = ACTIONS(225), + [sym_en_dash] = ACTIONS(228), + [sym_backslash_escape] = ACTIONS(228), + [anon_sym_LT] = ACTIONS(231), + [anon_sym_LBRACE_EQ] = ACTIONS(234), + [anon_sym_LBRACE_PLUS] = ACTIONS(237), + [anon_sym_LBRACE_DASH] = ACTIONS(240), + [sym_symbol] = ACTIONS(225), + [anon_sym_LBRACE_CARET] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(243), + [anon_sym_LBRACE_TILDE] = ACTIONS(246), + [anon_sym_TILDE] = ACTIONS(246), + [anon_sym_LBRACK_CARET] = ACTIONS(249), + [anon_sym_BANG_LBRACK] = ACTIONS(252), + [anon_sym_LBRACK] = ACTIONS(255), + [anon_sym_LBRACE2] = ACTIONS(228), + [anon_sym_DOLLAR] = ACTIONS(258), + [anon_sym_TODO] = ACTIONS(261), + [anon_sym_WIP] = ACTIONS(261), + [anon_sym_NOTE] = ACTIONS(264), + [anon_sym_INFO] = ACTIONS(264), + [anon_sym_XXX] = ACTIONS(264), + [sym_fixme] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(225), + [sym__whitespace1] = ACTIONS(267), + [sym__newline] = ACTIONS(270), + [aux_sym__text_token1] = ACTIONS(273), + [sym__verbatim_begin] = ACTIONS(276), + }, + [16] = { + [sym__inline] = STATE(697), + [sym__element] = STATE(85), + [sym_emphasis] = STATE(175), + [sym_emphasis_begin] = STATE(94), + [sym_strong] = STATE(175), + [sym_strong_begin] = STATE(95), + [sym__hard_line_break] = STATE(175), + [sym_hard_line_break] = STATE(175), + [sym__smart_punctuation] = STATE(175), + [sym_autolink] = STATE(175), + [sym_highlighted] = STATE(175), + [sym_insert] = STATE(175), + [sym_delete] = STATE(175), + [sym_superscript] = STATE(175), + [sym_subscript] = STATE(175), + [sym_footnote_reference] = STATE(175), + [sym__image] = STATE(175), + [sym_full_reference_image] = STATE(175), + [sym_collapsed_reference_image] = STATE(175), + [sym_inline_image] = STATE(175), + [sym__image_description] = STATE(652), + [sym__link] = STATE(175), + [sym_full_reference_link] = STATE(175), + [sym_collapsed_reference_link] = STATE(175), + [sym_inline_link] = STATE(175), + [sym_link_text] = STATE(649), + [sym__comment_with_spaces] = STATE(175), + [sym_span] = STATE(175), + [sym_raw_inline] = STATE(175), + [sym_math] = STATE(175), + [sym_verbatim] = STATE(175), + [sym__todo_highlights] = STATE(175), + [sym_todo] = STATE(175), + [sym_note] = STATE(175), + [sym__symbol_fallback] = STATE(175), + [aux_sym__text] = STATE(156), + [aux_sym__inline_repeat1] = STATE(85), + [ts_builtin_sym_end] = ACTIONS(93), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(417), + [anon_sym__] = ACTIONS(420), + [anon_sym_LBRACE_STAR] = ACTIONS(423), + [anon_sym_STAR] = ACTIONS(426), + [anon_sym_BSLASH] = ACTIONS(429), + [sym_quotation_marks] = ACTIONS(432), + [sym_ellipsis] = ACTIONS(432), + [sym_em_dash] = ACTIONS(432), + [sym_en_dash] = ACTIONS(435), + [sym_backslash_escape] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(438), + [anon_sym_LBRACE_EQ] = ACTIONS(441), + [anon_sym_LBRACE_PLUS] = ACTIONS(444), + [anon_sym_LBRACE_DASH] = ACTIONS(447), + [sym_symbol] = ACTIONS(432), + [anon_sym_LBRACE_CARET] = ACTIONS(450), + [anon_sym_CARET] = ACTIONS(450), + [anon_sym_LBRACE_TILDE] = ACTIONS(453), + [anon_sym_TILDE] = ACTIONS(453), + [anon_sym_LBRACK_CARET] = ACTIONS(456), + [anon_sym_BANG_LBRACK] = ACTIONS(459), + [anon_sym_LBRACK] = ACTIONS(462), + [anon_sym_LBRACE2] = ACTIONS(435), + [anon_sym_DOLLAR] = ACTIONS(465), + [anon_sym_TODO] = ACTIONS(468), + [anon_sym_WIP] = ACTIONS(468), + [anon_sym_NOTE] = ACTIONS(471), + [anon_sym_INFO] = ACTIONS(471), + [anon_sym_XXX] = ACTIONS(471), + [sym_fixme] = ACTIONS(432), + [anon_sym_PIPE] = ACTIONS(432), + [sym__whitespace1] = ACTIONS(474), + [sym__newline] = ACTIONS(477), + [aux_sym__text_token1] = ACTIONS(480), + [sym__verbatim_begin] = ACTIONS(483), + }, + [17] = { + [sym__inline] = STATE(699), + [sym__element] = STATE(120), [sym_emphasis] = STATE(182), - [sym_emphasis_begin] = STATE(103), + [sym_emphasis_begin] = STATE(97), [sym_strong] = STATE(182), - [sym_strong_begin] = STATE(104), + [sym_strong_begin] = STATE(99), [sym__hard_line_break] = STATE(182), [sym_hard_line_break] = STATE(182), [sym__smart_punctuation] = STATE(182), @@ -9366,12 +9330,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_full_reference_image] = STATE(182), [sym_collapsed_reference_image] = STATE(182), [sym_inline_image] = STATE(182), - [sym__image_description] = STATE(672), + [sym__image_description] = STATE(628), [sym__link] = STATE(182), [sym_full_reference_link] = STATE(182), [sym_collapsed_reference_link] = STATE(182), [sym_inline_link] = STATE(182), - [sym_link_text] = STATE(671), + [sym_link_text] = STATE(627), [sym__comment_with_spaces] = STATE(182), [sym_span] = STATE(182), [sym_raw_inline] = STATE(182), @@ -9381,13 +9345,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(182), [sym_note] = STATE(182), [sym__symbol_fallback] = STATE(182), - [sym__verbatim_begin] = STATE(870), - [aux_sym__text] = STATE(150), - [aux_sym__inline_repeat1] = STATE(96), - [ts_builtin_sym_end] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), + [aux_sym__text] = STATE(136), + [aux_sym__inline_repeat1] = STATE(120), + [ts_builtin_sym_end] = ACTIONS(93), + [anon_sym_LBRACE] = ACTIONS(49), [anon_sym_LBRACE_] = ACTIONS(141), - [anon_sym__] = ACTIONS(144), + [anon_sym__] = ACTIONS(486), [anon_sym_LBRACE_STAR] = ACTIONS(147), [anon_sym_STAR] = ACTIONS(150), [anon_sym_BSLASH] = ACTIONS(153), @@ -9405,30 +9368,486 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(174), [anon_sym_LBRACE_TILDE] = ACTIONS(177), [anon_sym_TILDE] = ACTIONS(177), - [anon_sym_LBRACK_CARET] = ACTIONS(183), - [anon_sym_BANG_LBRACK] = ACTIONS(186), - [anon_sym_LBRACK] = ACTIONS(189), + [anon_sym_LBRACK_CARET] = ACTIONS(180), + [anon_sym_BANG_LBRACK] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(186), [anon_sym_LBRACE2] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(192), - [anon_sym_TODO] = ACTIONS(195), - [anon_sym_WIP] = ACTIONS(195), - [anon_sym_NOTE] = ACTIONS(198), - [anon_sym_INFO] = ACTIONS(198), - [anon_sym_XXX] = ACTIONS(198), + [anon_sym_DOLLAR] = ACTIONS(189), + [anon_sym_TODO] = ACTIONS(192), + [anon_sym_WIP] = ACTIONS(192), + [anon_sym_NOTE] = ACTIONS(195), + [anon_sym_INFO] = ACTIONS(195), + [anon_sym_XXX] = ACTIONS(195), [sym_fixme] = ACTIONS(156), [anon_sym_PIPE] = ACTIONS(156), - [anon_sym_BQUOTE] = ACTIONS(112), - [sym__whitespace1] = ACTIONS(201), - [sym__newline] = ACTIONS(204), - [aux_sym__text_token1] = ACTIONS(207), + [sym__whitespace1] = ACTIONS(489), + [sym__newline] = ACTIONS(201), + [aux_sym__text_token1] = ACTIONS(204), + [sym__verbatim_begin] = ACTIONS(207), }, - [16] = { - [sym__inline] = STATE(704), - [sym__element] = STATE(96), + [18] = { + [sym__inline] = STATE(858), + [sym__element] = STATE(103), + [sym_emphasis] = STATE(200), + [sym_emphasis_begin] = STATE(101), + [sym_strong] = STATE(200), + [sym_strong_begin] = STATE(104), + [sym__hard_line_break] = STATE(200), + [sym_hard_line_break] = STATE(200), + [sym__smart_punctuation] = STATE(200), + [sym_autolink] = STATE(200), + [sym_highlighted] = STATE(200), + [sym_insert] = STATE(200), + [sym_delete] = STATE(200), + [sym_superscript] = STATE(200), + [sym_subscript] = STATE(200), + [sym_footnote_reference] = STATE(200), + [sym__image] = STATE(200), + [sym_full_reference_image] = STATE(200), + [sym_collapsed_reference_image] = STATE(200), + [sym_inline_image] = STATE(200), + [sym__image_description] = STATE(642), + [sym__link] = STATE(200), + [sym_full_reference_link] = STATE(200), + [sym_collapsed_reference_link] = STATE(200), + [sym_inline_link] = STATE(200), + [sym_link_text] = STATE(643), + [sym__comment_with_spaces] = STATE(200), + [sym_span] = STATE(200), + [sym_raw_inline] = STATE(200), + [sym_math] = STATE(200), + [sym_verbatim] = STATE(200), + [sym__todo_highlights] = STATE(200), + [sym_todo] = STATE(200), + [sym_note] = STATE(200), + [sym__symbol_fallback] = STATE(200), + [aux_sym__text] = STATE(138), + [aux_sym__inline_repeat1] = STATE(103), + [ts_builtin_sym_end] = ACTIONS(93), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(51), + [anon_sym__] = ACTIONS(54), + [anon_sym_LBRACE_STAR] = ACTIONS(57), + [anon_sym_STAR] = ACTIONS(60), + [anon_sym_BSLASH] = ACTIONS(63), + [sym_quotation_marks] = ACTIONS(66), + [sym_ellipsis] = ACTIONS(66), + [sym_em_dash] = ACTIONS(66), + [sym_en_dash] = ACTIONS(69), + [sym_backslash_escape] = ACTIONS(69), + [anon_sym_LT] = ACTIONS(72), + [anon_sym_LBRACE_EQ] = ACTIONS(75), + [anon_sym_LBRACE_PLUS] = ACTIONS(78), + [anon_sym_LBRACE_DASH] = ACTIONS(81), + [sym_symbol] = ACTIONS(66), + [anon_sym_LBRACE_CARET] = ACTIONS(84), + [anon_sym_CARET] = ACTIONS(84), + [anon_sym_LBRACE_TILDE] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_LBRACK_CARET] = ACTIONS(95), + [anon_sym_BANG_LBRACK] = ACTIONS(100), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_LBRACE2] = ACTIONS(69), + [anon_sym_DOLLAR] = ACTIONS(106), + [anon_sym_TODO] = ACTIONS(109), + [anon_sym_WIP] = ACTIONS(109), + [anon_sym_NOTE] = ACTIONS(112), + [anon_sym_INFO] = ACTIONS(112), + [anon_sym_XXX] = ACTIONS(112), + [sym_fixme] = ACTIONS(66), + [anon_sym_PIPE] = ACTIONS(66), + [sym__whitespace1] = ACTIONS(115), + [sym__newline] = ACTIONS(118), + [aux_sym__text_token1] = ACTIONS(121), + [sym__verbatim_begin] = ACTIONS(124), + }, + [19] = { + [sym__inline] = STATE(805), + [sym__element] = STATE(119), + [sym_emphasis] = STATE(197), + [sym_emphasis_begin] = STATE(81), + [sym_strong] = STATE(197), + [sym_strong_begin] = STATE(82), + [sym__hard_line_break] = STATE(197), + [sym_hard_line_break] = STATE(197), + [sym__smart_punctuation] = STATE(197), + [sym_autolink] = STATE(197), + [sym_highlighted] = STATE(197), + [sym_insert] = STATE(197), + [sym_delete] = STATE(197), + [sym_superscript] = STATE(197), + [sym_subscript] = STATE(197), + [sym_footnote_reference] = STATE(197), + [sym__image] = STATE(197), + [sym_full_reference_image] = STATE(197), + [sym_collapsed_reference_image] = STATE(197), + [sym_inline_image] = STATE(197), + [sym__image_description] = STATE(654), + [sym__link] = STATE(197), + [sym_full_reference_link] = STATE(197), + [sym_collapsed_reference_link] = STATE(197), + [sym_inline_link] = STATE(197), + [sym_link_text] = STATE(651), + [sym__comment_with_spaces] = STATE(197), + [sym_span] = STATE(197), + [sym_raw_inline] = STATE(197), + [sym_math] = STATE(197), + [sym_verbatim] = STATE(197), + [sym__todo_highlights] = STATE(197), + [sym_todo] = STATE(197), + [sym_note] = STATE(197), + [sym__symbol_fallback] = STATE(197), + [aux_sym__text] = STATE(132), + [aux_sym__inline_repeat1] = STATE(119), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(279), + [anon_sym__] = ACTIONS(282), + [anon_sym_LBRACE_STAR] = ACTIONS(285), + [anon_sym_STAR] = ACTIONS(288), + [anon_sym_BSLASH] = ACTIONS(291), + [sym_quotation_marks] = ACTIONS(294), + [sym_ellipsis] = ACTIONS(294), + [sym_em_dash] = ACTIONS(294), + [sym_en_dash] = ACTIONS(297), + [sym_backslash_escape] = ACTIONS(297), + [anon_sym_LT] = ACTIONS(300), + [anon_sym_LBRACE_EQ] = ACTIONS(303), + [anon_sym_EQ_RBRACE] = ACTIONS(93), + [anon_sym_LBRACE_PLUS] = ACTIONS(306), + [anon_sym_LBRACE_DASH] = ACTIONS(309), + [sym_symbol] = ACTIONS(294), + [anon_sym_LBRACE_CARET] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(312), + [anon_sym_LBRACE_TILDE] = ACTIONS(315), + [anon_sym_TILDE] = ACTIONS(315), + [anon_sym_LBRACK_CARET] = ACTIONS(318), + [anon_sym_BANG_LBRACK] = ACTIONS(321), + [anon_sym_LBRACK] = ACTIONS(324), + [anon_sym_LBRACE2] = ACTIONS(297), + [anon_sym_DOLLAR] = ACTIONS(327), + [anon_sym_TODO] = ACTIONS(330), + [anon_sym_WIP] = ACTIONS(330), + [anon_sym_NOTE] = ACTIONS(333), + [anon_sym_INFO] = ACTIONS(333), + [anon_sym_XXX] = ACTIONS(333), + [sym_fixme] = ACTIONS(294), + [anon_sym_PIPE] = ACTIONS(294), + [sym__whitespace1] = ACTIONS(336), + [sym__newline] = ACTIONS(339), + [aux_sym__text_token1] = ACTIONS(342), + [sym__verbatim_begin] = ACTIONS(345), + }, + [20] = { + [sym__inline] = STATE(724), + [sym__element] = STATE(119), + [sym_emphasis] = STATE(197), + [sym_emphasis_begin] = STATE(81), + [sym_strong] = STATE(197), + [sym_strong_begin] = STATE(82), + [sym__hard_line_break] = STATE(197), + [sym_hard_line_break] = STATE(197), + [sym__smart_punctuation] = STATE(197), + [sym_autolink] = STATE(197), + [sym_highlighted] = STATE(197), + [sym_insert] = STATE(197), + [sym_delete] = STATE(197), + [sym_superscript] = STATE(197), + [sym_subscript] = STATE(197), + [sym_footnote_reference] = STATE(197), + [sym__image] = STATE(197), + [sym_full_reference_image] = STATE(197), + [sym_collapsed_reference_image] = STATE(197), + [sym_inline_image] = STATE(197), + [sym__image_description] = STATE(654), + [sym__link] = STATE(197), + [sym_full_reference_link] = STATE(197), + [sym_collapsed_reference_link] = STATE(197), + [sym_inline_link] = STATE(197), + [sym_link_text] = STATE(651), + [sym__comment_with_spaces] = STATE(197), + [sym_span] = STATE(197), + [sym_raw_inline] = STATE(197), + [sym_math] = STATE(197), + [sym_verbatim] = STATE(197), + [sym__todo_highlights] = STATE(197), + [sym_todo] = STATE(197), + [sym_note] = STATE(197), + [sym__symbol_fallback] = STATE(197), + [aux_sym__text] = STATE(132), + [aux_sym__inline_repeat1] = STATE(119), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(279), + [anon_sym__] = ACTIONS(282), + [anon_sym_LBRACE_STAR] = ACTIONS(285), + [anon_sym_STAR] = ACTIONS(288), + [anon_sym_BSLASH] = ACTIONS(291), + [sym_quotation_marks] = ACTIONS(294), + [sym_ellipsis] = ACTIONS(294), + [sym_em_dash] = ACTIONS(294), + [sym_en_dash] = ACTIONS(297), + [sym_backslash_escape] = ACTIONS(297), + [anon_sym_LT] = ACTIONS(300), + [anon_sym_LBRACE_EQ] = ACTIONS(303), + [anon_sym_LBRACE_PLUS] = ACTIONS(306), + [anon_sym_LBRACE_DASH] = ACTIONS(309), + [sym_symbol] = ACTIONS(294), + [anon_sym_LBRACE_CARET] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(312), + [anon_sym_LBRACE_TILDE] = ACTIONS(315), + [anon_sym_TILDE] = ACTIONS(315), + [anon_sym_LBRACK_CARET] = ACTIONS(318), + [anon_sym_RBRACK] = ACTIONS(93), + [anon_sym_BANG_LBRACK] = ACTIONS(321), + [anon_sym_LBRACK] = ACTIONS(324), + [anon_sym_LBRACE2] = ACTIONS(297), + [anon_sym_DOLLAR] = ACTIONS(327), + [anon_sym_TODO] = ACTIONS(330), + [anon_sym_WIP] = ACTIONS(330), + [anon_sym_NOTE] = ACTIONS(333), + [anon_sym_INFO] = ACTIONS(333), + [anon_sym_XXX] = ACTIONS(333), + [sym_fixme] = ACTIONS(294), + [anon_sym_PIPE] = ACTIONS(294), + [sym__whitespace1] = ACTIONS(336), + [sym__newline] = ACTIONS(339), + [aux_sym__text_token1] = ACTIONS(342), + [sym__verbatim_begin] = ACTIONS(345), + }, + [21] = { + [sym__inline] = STATE(725), + [sym__element] = STATE(77), + [sym_emphasis] = STATE(174), + [sym_emphasis_begin] = STATE(86), + [sym_strong] = STATE(174), + [sym_strong_begin] = STATE(89), + [sym__hard_line_break] = STATE(174), + [sym_hard_line_break] = STATE(174), + [sym__smart_punctuation] = STATE(174), + [sym_autolink] = STATE(174), + [sym_highlighted] = STATE(174), + [sym_insert] = STATE(174), + [sym_delete] = STATE(174), + [sym_superscript] = STATE(174), + [sym_subscript] = STATE(174), + [sym_footnote_reference] = STATE(174), + [sym__image] = STATE(174), + [sym_full_reference_image] = STATE(174), + [sym_collapsed_reference_image] = STATE(174), + [sym_inline_image] = STATE(174), + [sym__image_description] = STATE(630), + [sym__link] = STATE(174), + [sym_full_reference_link] = STATE(174), + [sym_collapsed_reference_link] = STATE(174), + [sym_inline_link] = STATE(174), + [sym_link_text] = STATE(631), + [sym__comment_with_spaces] = STATE(174), + [sym_span] = STATE(174), + [sym_raw_inline] = STATE(174), + [sym_math] = STATE(174), + [sym_verbatim] = STATE(174), + [sym__todo_highlights] = STATE(174), + [sym_todo] = STATE(174), + [sym_note] = STATE(174), + [sym__symbol_fallback] = STATE(174), + [aux_sym__text] = STATE(148), + [aux_sym__inline_repeat1] = STATE(77), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(348), + [anon_sym__] = ACTIONS(351), + [anon_sym_LBRACE_STAR] = ACTIONS(354), + [anon_sym_STAR] = ACTIONS(357), + [anon_sym_BSLASH] = ACTIONS(360), + [sym_quotation_marks] = ACTIONS(363), + [sym_ellipsis] = ACTIONS(363), + [sym_em_dash] = ACTIONS(363), + [sym_en_dash] = ACTIONS(366), + [sym_backslash_escape] = ACTIONS(366), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_LBRACE_EQ] = ACTIONS(372), + [anon_sym_LBRACE_PLUS] = ACTIONS(375), + [anon_sym_LBRACE_DASH] = ACTIONS(378), + [sym_symbol] = ACTIONS(363), + [anon_sym_LBRACE_CARET] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(381), + [anon_sym_LBRACE_TILDE] = ACTIONS(384), + [anon_sym_TILDE] = ACTIONS(384), + [anon_sym_LBRACK_CARET] = ACTIONS(387), + [anon_sym_RBRACK] = ACTIONS(93), + [anon_sym_BANG_LBRACK] = ACTIONS(390), + [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_LBRACE2] = ACTIONS(366), + [anon_sym_DOLLAR] = ACTIONS(396), + [anon_sym_TODO] = ACTIONS(399), + [anon_sym_WIP] = ACTIONS(399), + [anon_sym_NOTE] = ACTIONS(402), + [anon_sym_INFO] = ACTIONS(402), + [anon_sym_XXX] = ACTIONS(402), + [sym_fixme] = ACTIONS(363), + [anon_sym_PIPE] = ACTIONS(363), + [sym__whitespace1] = ACTIONS(405), + [sym__newline] = ACTIONS(408), + [aux_sym__text_token1] = ACTIONS(411), + [sym__verbatim_begin] = ACTIONS(414), + }, + [22] = { + [sym__inline] = STATE(726), + [sym__element] = STATE(116), + [sym_emphasis] = STATE(183), + [sym_emphasis_begin] = STATE(91), + [sym_strong] = STATE(183), + [sym_strong_begin] = STATE(92), + [sym__hard_line_break] = STATE(183), + [sym_hard_line_break] = STATE(183), + [sym__smart_punctuation] = STATE(183), + [sym_autolink] = STATE(183), + [sym_highlighted] = STATE(183), + [sym_insert] = STATE(183), + [sym_delete] = STATE(183), + [sym_superscript] = STATE(183), + [sym_subscript] = STATE(183), + [sym_footnote_reference] = STATE(183), + [sym__image] = STATE(183), + [sym_full_reference_image] = STATE(183), + [sym_collapsed_reference_image] = STATE(183), + [sym_inline_image] = STATE(183), + [sym__image_description] = STATE(645), + [sym__link] = STATE(183), + [sym_full_reference_link] = STATE(183), + [sym_collapsed_reference_link] = STATE(183), + [sym_inline_link] = STATE(183), + [sym_link_text] = STATE(646), + [sym__comment_with_spaces] = STATE(183), + [sym_span] = STATE(183), + [sym_raw_inline] = STATE(183), + [sym_math] = STATE(183), + [sym_verbatim] = STATE(183), + [sym__todo_highlights] = STATE(183), + [sym_todo] = STATE(183), + [sym_note] = STATE(183), + [sym__symbol_fallback] = STATE(183), + [aux_sym__text] = STATE(149), + [aux_sym__inline_repeat1] = STATE(116), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(210), + [anon_sym__] = ACTIONS(213), + [anon_sym_LBRACE_STAR] = ACTIONS(216), + [anon_sym_STAR] = ACTIONS(219), + [anon_sym_BSLASH] = ACTIONS(222), + [sym_quotation_marks] = ACTIONS(225), + [sym_ellipsis] = ACTIONS(225), + [sym_em_dash] = ACTIONS(225), + [sym_en_dash] = ACTIONS(228), + [sym_backslash_escape] = ACTIONS(228), + [anon_sym_LT] = ACTIONS(231), + [anon_sym_LBRACE_EQ] = ACTIONS(234), + [anon_sym_LBRACE_PLUS] = ACTIONS(237), + [anon_sym_LBRACE_DASH] = ACTIONS(240), + [sym_symbol] = ACTIONS(225), + [anon_sym_LBRACE_CARET] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(243), + [anon_sym_LBRACE_TILDE] = ACTIONS(246), + [anon_sym_TILDE] = ACTIONS(246), + [anon_sym_LBRACK_CARET] = ACTIONS(249), + [anon_sym_RBRACK] = ACTIONS(93), + [anon_sym_BANG_LBRACK] = ACTIONS(252), + [anon_sym_LBRACK] = ACTIONS(255), + [anon_sym_LBRACE2] = ACTIONS(228), + [anon_sym_DOLLAR] = ACTIONS(258), + [anon_sym_TODO] = ACTIONS(261), + [anon_sym_WIP] = ACTIONS(261), + [anon_sym_NOTE] = ACTIONS(264), + [anon_sym_INFO] = ACTIONS(264), + [anon_sym_XXX] = ACTIONS(264), + [sym_fixme] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(225), + [sym__whitespace1] = ACTIONS(267), + [sym__newline] = ACTIONS(270), + [aux_sym__text_token1] = ACTIONS(273), + [sym__verbatim_begin] = ACTIONS(276), + }, + [23] = { + [sym__inline] = STATE(705), + [sym__element] = STATE(85), + [sym_emphasis] = STATE(175), + [sym_emphasis_begin] = STATE(94), + [sym_strong] = STATE(175), + [sym_strong_begin] = STATE(95), + [sym__hard_line_break] = STATE(175), + [sym_hard_line_break] = STATE(175), + [sym__smart_punctuation] = STATE(175), + [sym_autolink] = STATE(175), + [sym_highlighted] = STATE(175), + [sym_insert] = STATE(175), + [sym_delete] = STATE(175), + [sym_superscript] = STATE(175), + [sym_subscript] = STATE(175), + [sym_footnote_reference] = STATE(175), + [sym__image] = STATE(175), + [sym_full_reference_image] = STATE(175), + [sym_collapsed_reference_image] = STATE(175), + [sym_inline_image] = STATE(175), + [sym__image_description] = STATE(652), + [sym__link] = STATE(175), + [sym_full_reference_link] = STATE(175), + [sym_collapsed_reference_link] = STATE(175), + [sym_inline_link] = STATE(175), + [sym_link_text] = STATE(649), + [sym__comment_with_spaces] = STATE(175), + [sym_span] = STATE(175), + [sym_raw_inline] = STATE(175), + [sym_math] = STATE(175), + [sym_verbatim] = STATE(175), + [sym__todo_highlights] = STATE(175), + [sym_todo] = STATE(175), + [sym_note] = STATE(175), + [sym__symbol_fallback] = STATE(175), + [aux_sym__text] = STATE(156), + [aux_sym__inline_repeat1] = STATE(85), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(417), + [anon_sym__] = ACTIONS(420), + [anon_sym_LBRACE_STAR] = ACTIONS(423), + [anon_sym_STAR] = ACTIONS(426), + [anon_sym_BSLASH] = ACTIONS(429), + [sym_quotation_marks] = ACTIONS(432), + [sym_ellipsis] = ACTIONS(432), + [sym_em_dash] = ACTIONS(432), + [sym_en_dash] = ACTIONS(435), + [sym_backslash_escape] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(438), + [anon_sym_LBRACE_EQ] = ACTIONS(441), + [anon_sym_LBRACE_PLUS] = ACTIONS(444), + [anon_sym_LBRACE_DASH] = ACTIONS(447), + [sym_symbol] = ACTIONS(432), + [anon_sym_LBRACE_CARET] = ACTIONS(450), + [anon_sym_CARET] = ACTIONS(450), + [anon_sym_LBRACE_TILDE] = ACTIONS(453), + [anon_sym_TILDE] = ACTIONS(453), + [anon_sym_LBRACK_CARET] = ACTIONS(456), + [anon_sym_RBRACK] = ACTIONS(93), + [anon_sym_BANG_LBRACK] = ACTIONS(459), + [anon_sym_LBRACK] = ACTIONS(462), + [anon_sym_LBRACE2] = ACTIONS(435), + [anon_sym_DOLLAR] = ACTIONS(465), + [anon_sym_TODO] = ACTIONS(468), + [anon_sym_WIP] = ACTIONS(468), + [anon_sym_NOTE] = ACTIONS(471), + [anon_sym_INFO] = ACTIONS(471), + [anon_sym_XXX] = ACTIONS(471), + [sym_fixme] = ACTIONS(432), + [anon_sym_PIPE] = ACTIONS(432), + [sym__whitespace1] = ACTIONS(474), + [sym__newline] = ACTIONS(477), + [aux_sym__text_token1] = ACTIONS(480), + [sym__verbatim_begin] = ACTIONS(483), + }, + [24] = { + [sym__inline] = STATE(682), + [sym__element] = STATE(120), [sym_emphasis] = STATE(182), - [sym_emphasis_begin] = STATE(103), + [sym_emphasis_begin] = STATE(97), [sym_strong] = STATE(182), - [sym_strong_begin] = STATE(104), + [sym_strong_begin] = STATE(99), [sym__hard_line_break] = STATE(182), [sym_hard_line_break] = STATE(182), [sym__smart_punctuation] = STATE(182), @@ -9443,12 +9862,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_full_reference_image] = STATE(182), [sym_collapsed_reference_image] = STATE(182), [sym_inline_image] = STATE(182), - [sym__image_description] = STATE(672), + [sym__image_description] = STATE(628), [sym__link] = STATE(182), [sym_full_reference_link] = STATE(182), [sym_collapsed_reference_link] = STATE(182), [sym_inline_link] = STATE(182), - [sym_link_text] = STATE(671), + [sym_link_text] = STATE(627), [sym__comment_with_spaces] = STATE(182), [sym_span] = STATE(182), [sym_raw_inline] = STATE(182), @@ -9458,12 +9877,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(182), [sym_note] = STATE(182), [sym__symbol_fallback] = STATE(182), - [sym__verbatim_begin] = STATE(870), - [aux_sym__text] = STATE(150), - [aux_sym__inline_repeat1] = STATE(96), - [anon_sym_LBRACE] = ACTIONS(51), + [aux_sym__text] = STATE(136), + [aux_sym__inline_repeat1] = STATE(120), + [anon_sym_LBRACE] = ACTIONS(49), [anon_sym_LBRACE_] = ACTIONS(141), - [anon_sym__] = ACTIONS(144), + [anon_sym__] = ACTIONS(486), [anon_sym_LBRACE_STAR] = ACTIONS(147), [anon_sym_STAR] = ACTIONS(150), [anon_sym_BSLASH] = ACTIONS(153), @@ -9476,267 +9894,188 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_EQ] = ACTIONS(165), [anon_sym_LBRACE_PLUS] = ACTIONS(168), [anon_sym_LBRACE_DASH] = ACTIONS(171), - [anon_sym_DASH_RBRACE] = ACTIONS(49), [sym_symbol] = ACTIONS(156), [anon_sym_LBRACE_CARET] = ACTIONS(174), [anon_sym_CARET] = ACTIONS(174), [anon_sym_LBRACE_TILDE] = ACTIONS(177), [anon_sym_TILDE] = ACTIONS(177), - [anon_sym_LBRACK_CARET] = ACTIONS(183), - [anon_sym_BANG_LBRACK] = ACTIONS(186), - [anon_sym_LBRACK] = ACTIONS(189), + [anon_sym_LBRACK_CARET] = ACTIONS(180), + [anon_sym_RBRACK] = ACTIONS(93), + [anon_sym_BANG_LBRACK] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(186), [anon_sym_LBRACE2] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(192), - [anon_sym_TODO] = ACTIONS(195), - [anon_sym_WIP] = ACTIONS(195), - [anon_sym_NOTE] = ACTIONS(198), - [anon_sym_INFO] = ACTIONS(198), - [anon_sym_XXX] = ACTIONS(198), + [anon_sym_DOLLAR] = ACTIONS(189), + [anon_sym_TODO] = ACTIONS(192), + [anon_sym_WIP] = ACTIONS(192), + [anon_sym_NOTE] = ACTIONS(195), + [anon_sym_INFO] = ACTIONS(195), + [anon_sym_XXX] = ACTIONS(195), [sym_fixme] = ACTIONS(156), [anon_sym_PIPE] = ACTIONS(156), - [anon_sym_BQUOTE] = ACTIONS(112), - [sym__whitespace1] = ACTIONS(201), - [sym__newline] = ACTIONS(204), - [aux_sym__text_token1] = ACTIONS(207), + [sym__whitespace1] = ACTIONS(489), + [sym__newline] = ACTIONS(201), + [aux_sym__text_token1] = ACTIONS(204), + [sym__verbatim_begin] = ACTIONS(207), }, - [17] = { - [sym__inline] = STATE(874), - [sym__element] = STATE(112), - [sym_emphasis] = STATE(206), - [sym_emphasis_begin] = STATE(108), - [sym_strong] = STATE(206), - [sym_strong_begin] = STATE(110), - [sym__hard_line_break] = STATE(206), - [sym_hard_line_break] = STATE(206), - [sym__smart_punctuation] = STATE(206), - [sym_autolink] = STATE(206), - [sym_highlighted] = STATE(206), - [sym_insert] = STATE(206), - [sym_delete] = STATE(206), - [sym_superscript] = STATE(206), - [sym_subscript] = STATE(206), - [sym_footnote_reference] = STATE(206), - [sym__image] = STATE(206), - [sym_full_reference_image] = STATE(206), - [sym_collapsed_reference_image] = STATE(206), - [sym_inline_image] = STATE(206), - [sym__image_description] = STATE(664), - [sym__link] = STATE(206), - [sym_full_reference_link] = STATE(206), - [sym_collapsed_reference_link] = STATE(206), - [sym_inline_link] = STATE(206), - [sym_link_text] = STATE(663), - [sym__comment_with_spaces] = STATE(206), - [sym_span] = STATE(206), - [sym_raw_inline] = STATE(206), - [sym_math] = STATE(206), - [sym_verbatim] = STATE(206), - [sym__todo_highlights] = STATE(206), - [sym_todo] = STATE(206), - [sym_note] = STATE(206), - [sym__symbol_fallback] = STATE(206), - [sym__verbatim_begin] = STATE(879), - [aux_sym__text] = STATE(126), - [aux_sym__inline_repeat1] = STATE(112), - [ts_builtin_sym_end] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACE_] = ACTIONS(53), - [anon_sym__] = ACTIONS(56), - [anon_sym_LBRACE_STAR] = ACTIONS(59), - [anon_sym_STAR] = ACTIONS(62), - [anon_sym_BSLASH] = ACTIONS(65), - [sym_quotation_marks] = ACTIONS(68), - [sym_ellipsis] = ACTIONS(68), - [sym_em_dash] = ACTIONS(68), - [sym_en_dash] = ACTIONS(71), - [sym_backslash_escape] = ACTIONS(71), - [anon_sym_LT] = ACTIONS(74), - [anon_sym_LBRACE_EQ] = ACTIONS(77), - [anon_sym_LBRACE_PLUS] = ACTIONS(80), - [anon_sym_LBRACE_DASH] = ACTIONS(83), - [sym_symbol] = ACTIONS(68), - [anon_sym_LBRACE_CARET] = ACTIONS(86), - [anon_sym_CARET] = ACTIONS(86), - [anon_sym_LBRACE_TILDE] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_LBRACK_CARET] = ACTIONS(92), - [anon_sym_BANG_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK] = ACTIONS(100), - [anon_sym_LBRACE2] = ACTIONS(71), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_TODO] = ACTIONS(106), - [anon_sym_WIP] = ACTIONS(106), - [anon_sym_NOTE] = ACTIONS(109), - [anon_sym_INFO] = ACTIONS(109), - [anon_sym_XXX] = ACTIONS(109), - [sym_fixme] = ACTIONS(68), - [anon_sym_PIPE] = ACTIONS(68), - [anon_sym_BQUOTE] = ACTIONS(112), + [25] = { + [sym__inline] = STATE(876), + [sym__element] = STATE(103), + [sym_emphasis] = STATE(200), + [sym_emphasis_begin] = STATE(101), + [sym_strong] = STATE(200), + [sym_strong_begin] = STATE(104), + [sym__hard_line_break] = STATE(200), + [sym_hard_line_break] = STATE(200), + [sym__smart_punctuation] = STATE(200), + [sym_autolink] = STATE(200), + [sym_highlighted] = STATE(200), + [sym_insert] = STATE(200), + [sym_delete] = STATE(200), + [sym_superscript] = STATE(200), + [sym_subscript] = STATE(200), + [sym_footnote_reference] = STATE(200), + [sym__image] = STATE(200), + [sym_full_reference_image] = STATE(200), + [sym_collapsed_reference_image] = STATE(200), + [sym_inline_image] = STATE(200), + [sym__image_description] = STATE(642), + [sym__link] = STATE(200), + [sym_full_reference_link] = STATE(200), + [sym_collapsed_reference_link] = STATE(200), + [sym_inline_link] = STATE(200), + [sym_link_text] = STATE(643), + [sym__comment_with_spaces] = STATE(200), + [sym_span] = STATE(200), + [sym_raw_inline] = STATE(200), + [sym_math] = STATE(200), + [sym_verbatim] = STATE(200), + [sym__todo_highlights] = STATE(200), + [sym_todo] = STATE(200), + [sym_note] = STATE(200), + [sym__symbol_fallback] = STATE(200), + [aux_sym__text] = STATE(138), + [aux_sym__inline_repeat1] = STATE(103), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(51), + [anon_sym__] = ACTIONS(54), + [anon_sym_LBRACE_STAR] = ACTIONS(57), + [anon_sym_STAR] = ACTIONS(60), + [anon_sym_BSLASH] = ACTIONS(63), + [sym_quotation_marks] = ACTIONS(66), + [sym_ellipsis] = ACTIONS(66), + [sym_em_dash] = ACTIONS(66), + [sym_en_dash] = ACTIONS(69), + [sym_backslash_escape] = ACTIONS(69), + [anon_sym_LT] = ACTIONS(72), + [anon_sym_LBRACE_EQ] = ACTIONS(75), + [anon_sym_LBRACE_PLUS] = ACTIONS(78), + [anon_sym_LBRACE_DASH] = ACTIONS(81), + [sym_symbol] = ACTIONS(66), + [anon_sym_LBRACE_CARET] = ACTIONS(84), + [anon_sym_CARET] = ACTIONS(84), + [anon_sym_LBRACE_TILDE] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_LBRACK_CARET] = ACTIONS(95), + [anon_sym_RBRACK] = ACTIONS(492), + [anon_sym_BANG_LBRACK] = ACTIONS(100), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_LBRACE2] = ACTIONS(69), + [anon_sym_DOLLAR] = ACTIONS(106), + [anon_sym_TODO] = ACTIONS(109), + [anon_sym_WIP] = ACTIONS(109), + [anon_sym_NOTE] = ACTIONS(112), + [anon_sym_INFO] = ACTIONS(112), + [anon_sym_XXX] = ACTIONS(112), + [sym_fixme] = ACTIONS(66), + [anon_sym_PIPE] = ACTIONS(66), [sym__whitespace1] = ACTIONS(115), [sym__newline] = ACTIONS(118), [aux_sym__text_token1] = ACTIONS(121), + [sym__verbatim_begin] = ACTIONS(124), }, - [18] = { - [sym__inline] = STATE(711), - [sym__element] = STATE(84), - [sym_emphasis] = STATE(197), - [sym_emphasis_begin] = STATE(97), - [sym_strong] = STATE(197), - [sym_strong_begin] = STATE(100), - [sym__hard_line_break] = STATE(197), - [sym_hard_line_break] = STATE(197), - [sym__smart_punctuation] = STATE(197), - [sym_autolink] = STATE(197), - [sym_highlighted] = STATE(197), - [sym_insert] = STATE(197), - [sym_delete] = STATE(197), - [sym_superscript] = STATE(197), - [sym_subscript] = STATE(197), - [sym_footnote_reference] = STATE(197), - [sym__image] = STATE(197), - [sym_full_reference_image] = STATE(197), - [sym_collapsed_reference_image] = STATE(197), - [sym_inline_image] = STATE(197), - [sym__image_description] = STATE(676), - [sym__link] = STATE(197), - [sym_full_reference_link] = STATE(197), - [sym_collapsed_reference_link] = STATE(197), - [sym_inline_link] = STATE(197), - [sym_link_text] = STATE(677), - [sym__comment_with_spaces] = STATE(197), - [sym_span] = STATE(197), - [sym_raw_inline] = STATE(197), - [sym_math] = STATE(197), - [sym_verbatim] = STATE(197), - [sym__todo_highlights] = STATE(197), - [sym_todo] = STATE(197), - [sym_note] = STATE(197), - [sym__symbol_fallback] = STATE(197), - [sym__verbatim_begin] = STATE(861), - [aux_sym__text] = STATE(159), - [aux_sym__inline_repeat1] = STATE(84), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACE_] = ACTIONS(276), - [anon_sym__] = ACTIONS(279), - [anon_sym_LBRACE_STAR] = ACTIONS(282), - [anon_sym_STAR] = ACTIONS(285), - [anon_sym_BSLASH] = ACTIONS(288), - [sym_quotation_marks] = ACTIONS(291), - [sym_ellipsis] = ACTIONS(291), - [sym_em_dash] = ACTIONS(291), - [sym_en_dash] = ACTIONS(294), - [sym_backslash_escape] = ACTIONS(294), - [anon_sym_LT] = ACTIONS(297), - [anon_sym_LBRACE_EQ] = ACTIONS(300), - [anon_sym_LBRACE_PLUS] = ACTIONS(303), - [anon_sym_LBRACE_DASH] = ACTIONS(306), - [anon_sym_DASH_RBRACE] = ACTIONS(49), - [sym_symbol] = ACTIONS(291), - [anon_sym_LBRACE_CARET] = ACTIONS(309), - [anon_sym_CARET] = ACTIONS(309), - [anon_sym_LBRACE_TILDE] = ACTIONS(312), - [anon_sym_TILDE] = ACTIONS(312), - [anon_sym_LBRACK_CARET] = ACTIONS(315), - [anon_sym_BANG_LBRACK] = ACTIONS(318), - [anon_sym_LBRACK] = ACTIONS(321), - [anon_sym_LBRACE2] = ACTIONS(294), - [anon_sym_DOLLAR] = ACTIONS(324), - [anon_sym_TODO] = ACTIONS(327), - [anon_sym_WIP] = ACTIONS(327), - [anon_sym_NOTE] = ACTIONS(330), - [anon_sym_INFO] = ACTIONS(330), - [anon_sym_XXX] = ACTIONS(330), - [sym_fixme] = ACTIONS(291), - [anon_sym_PIPE] = ACTIONS(291), - [anon_sym_BQUOTE] = ACTIONS(112), - [sym__whitespace1] = ACTIONS(333), - [sym__newline] = ACTIONS(336), - [aux_sym__text_token1] = ACTIONS(339), - }, - [19] = { - [sym__inline] = STATE(835), - [sym__element] = STATE(112), - [sym_emphasis] = STATE(206), - [sym_emphasis_begin] = STATE(108), - [sym_strong] = STATE(206), - [sym_strong_begin] = STATE(110), - [sym__hard_line_break] = STATE(206), - [sym_hard_line_break] = STATE(206), - [sym__smart_punctuation] = STATE(206), - [sym_autolink] = STATE(206), - [sym_highlighted] = STATE(206), - [sym_insert] = STATE(206), - [sym_delete] = STATE(206), - [sym_superscript] = STATE(206), - [sym_subscript] = STATE(206), - [sym_footnote_reference] = STATE(206), - [sym__image] = STATE(206), - [sym_full_reference_image] = STATE(206), - [sym_collapsed_reference_image] = STATE(206), - [sym_inline_image] = STATE(206), - [sym__image_description] = STATE(664), - [sym__link] = STATE(206), - [sym_full_reference_link] = STATE(206), - [sym_collapsed_reference_link] = STATE(206), - [sym_inline_link] = STATE(206), - [sym_link_text] = STATE(663), - [sym__comment_with_spaces] = STATE(206), - [sym_span] = STATE(206), - [sym_raw_inline] = STATE(206), - [sym_math] = STATE(206), - [sym_verbatim] = STATE(206), - [sym__todo_highlights] = STATE(206), - [sym_todo] = STATE(206), - [sym_note] = STATE(206), - [sym__symbol_fallback] = STATE(206), - [sym__verbatim_begin] = STATE(879), - [aux_sym__text] = STATE(126), - [aux_sym__inline_repeat1] = STATE(112), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACE_] = ACTIONS(53), - [anon_sym__] = ACTIONS(56), - [anon_sym_LBRACE_STAR] = ACTIONS(59), - [anon_sym_STAR] = ACTIONS(62), - [anon_sym_BSLASH] = ACTIONS(65), - [sym_quotation_marks] = ACTIONS(68), - [sym_ellipsis] = ACTIONS(68), - [sym_em_dash] = ACTIONS(68), - [sym_en_dash] = ACTIONS(71), - [sym_backslash_escape] = ACTIONS(71), - [anon_sym_LT] = ACTIONS(74), - [anon_sym_LBRACE_EQ] = ACTIONS(77), - [anon_sym_EQ_RBRACE] = ACTIONS(49), - [anon_sym_LBRACE_PLUS] = ACTIONS(80), - [anon_sym_LBRACE_DASH] = ACTIONS(83), - [sym_symbol] = ACTIONS(68), - [anon_sym_LBRACE_CARET] = ACTIONS(86), - [anon_sym_CARET] = ACTIONS(86), - [anon_sym_LBRACE_TILDE] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_LBRACK_CARET] = ACTIONS(92), - [anon_sym_BANG_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK] = ACTIONS(100), - [anon_sym_LBRACE2] = ACTIONS(71), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_TODO] = ACTIONS(106), - [anon_sym_WIP] = ACTIONS(106), - [anon_sym_NOTE] = ACTIONS(109), - [anon_sym_INFO] = ACTIONS(109), - [anon_sym_XXX] = ACTIONS(109), - [sym_fixme] = ACTIONS(68), - [anon_sym_PIPE] = ACTIONS(68), - [anon_sym_BQUOTE] = ACTIONS(112), + [26] = { + [sym__inline] = STATE(859), + [sym__element] = STATE(103), + [sym_emphasis] = STATE(200), + [sym_emphasis_begin] = STATE(101), + [sym_strong] = STATE(200), + [sym_strong_begin] = STATE(104), + [sym__hard_line_break] = STATE(200), + [sym_hard_line_break] = STATE(200), + [sym__smart_punctuation] = STATE(200), + [sym_autolink] = STATE(200), + [sym_highlighted] = STATE(200), + [sym_insert] = STATE(200), + [sym_delete] = STATE(200), + [sym_superscript] = STATE(200), + [sym_subscript] = STATE(200), + [sym_footnote_reference] = STATE(200), + [sym__image] = STATE(200), + [sym_full_reference_image] = STATE(200), + [sym_collapsed_reference_image] = STATE(200), + [sym_inline_image] = STATE(200), + [sym__image_description] = STATE(642), + [sym__link] = STATE(200), + [sym_full_reference_link] = STATE(200), + [sym_collapsed_reference_link] = STATE(200), + [sym_inline_link] = STATE(200), + [sym_link_text] = STATE(643), + [sym__comment_with_spaces] = STATE(200), + [sym_span] = STATE(200), + [sym_raw_inline] = STATE(200), + [sym_math] = STATE(200), + [sym_verbatim] = STATE(200), + [sym__todo_highlights] = STATE(200), + [sym_todo] = STATE(200), + [sym_note] = STATE(200), + [sym__symbol_fallback] = STATE(200), + [aux_sym__text] = STATE(138), + [aux_sym__inline_repeat1] = STATE(103), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(51), + [anon_sym__] = ACTIONS(54), + [anon_sym_LBRACE_STAR] = ACTIONS(57), + [anon_sym_STAR] = ACTIONS(60), + [anon_sym_BSLASH] = ACTIONS(63), + [sym_quotation_marks] = ACTIONS(66), + [sym_ellipsis] = ACTIONS(66), + [sym_em_dash] = ACTIONS(66), + [sym_en_dash] = ACTIONS(69), + [sym_backslash_escape] = ACTIONS(69), + [anon_sym_LT] = ACTIONS(72), + [anon_sym_LBRACE_EQ] = ACTIONS(75), + [anon_sym_LBRACE_PLUS] = ACTIONS(78), + [anon_sym_LBRACE_DASH] = ACTIONS(81), + [sym_symbol] = ACTIONS(66), + [anon_sym_LBRACE_CARET] = ACTIONS(84), + [anon_sym_CARET] = ACTIONS(84), + [anon_sym_LBRACE_TILDE] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_LBRACK_CARET] = ACTIONS(95), + [anon_sym_RBRACK] = ACTIONS(93), + [anon_sym_BANG_LBRACK] = ACTIONS(100), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_LBRACE2] = ACTIONS(69), + [anon_sym_DOLLAR] = ACTIONS(106), + [anon_sym_TODO] = ACTIONS(109), + [anon_sym_WIP] = ACTIONS(109), + [anon_sym_NOTE] = ACTIONS(112), + [anon_sym_INFO] = ACTIONS(112), + [anon_sym_XXX] = ACTIONS(112), + [sym_fixme] = ACTIONS(66), + [anon_sym_PIPE] = ACTIONS(66), [sym__whitespace1] = ACTIONS(115), [sym__newline] = ACTIONS(118), [aux_sym__text_token1] = ACTIONS(121), + [sym__verbatim_begin] = ACTIONS(124), }, - [20] = { - [sym__inline] = STATE(715), - [sym__element] = STATE(96), + [27] = { + [sym__inline] = STATE(696), + [sym__element] = STATE(120), [sym_emphasis] = STATE(182), - [sym_emphasis_begin] = STATE(103), + [sym_emphasis_begin] = STATE(97), [sym_strong] = STATE(182), - [sym_strong_begin] = STATE(104), + [sym_strong_begin] = STATE(99), [sym__hard_line_break] = STATE(182), [sym_hard_line_break] = STATE(182), [sym__smart_punctuation] = STATE(182), @@ -9751,12 +10090,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_full_reference_image] = STATE(182), [sym_collapsed_reference_image] = STATE(182), [sym_inline_image] = STATE(182), - [sym__image_description] = STATE(672), + [sym__image_description] = STATE(628), [sym__link] = STATE(182), [sym_full_reference_link] = STATE(182), [sym_collapsed_reference_link] = STATE(182), [sym_inline_link] = STATE(182), - [sym_link_text] = STATE(671), + [sym_link_text] = STATE(627), [sym__comment_with_spaces] = STATE(182), [sym_span] = STATE(182), [sym_raw_inline] = STATE(182), @@ -9766,12 +10105,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(182), [sym_note] = STATE(182), [sym__symbol_fallback] = STATE(182), - [sym__verbatim_begin] = STATE(870), - [aux_sym__text] = STATE(150), - [aux_sym__inline_repeat1] = STATE(96), - [anon_sym_LBRACE] = ACTIONS(51), + [aux_sym__text] = STATE(136), + [aux_sym__inline_repeat1] = STATE(120), + [anon_sym_LBRACE] = ACTIONS(49), [anon_sym_LBRACE_] = ACTIONS(141), - [anon_sym__] = ACTIONS(144), + [anon_sym__] = ACTIONS(486), [anon_sym_LBRACE_STAR] = ACTIONS(147), [anon_sym_STAR] = ACTIONS(150), [anon_sym_BSLASH] = ACTIONS(153), @@ -9782,148 +10120,222 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_backslash_escape] = ACTIONS(159), [anon_sym_LT] = ACTIONS(162), [anon_sym_LBRACE_EQ] = ACTIONS(165), - [anon_sym_EQ_RBRACE] = ACTIONS(49), [anon_sym_LBRACE_PLUS] = ACTIONS(168), [anon_sym_LBRACE_DASH] = ACTIONS(171), [sym_symbol] = ACTIONS(156), [anon_sym_LBRACE_CARET] = ACTIONS(174), [anon_sym_CARET] = ACTIONS(174), [anon_sym_LBRACE_TILDE] = ACTIONS(177), - [anon_sym_TILDE] = ACTIONS(177), - [anon_sym_LBRACK_CARET] = ACTIONS(183), - [anon_sym_BANG_LBRACK] = ACTIONS(186), - [anon_sym_LBRACK] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(495), + [anon_sym_TILDE_RBRACE] = ACTIONS(93), + [anon_sym_LBRACK_CARET] = ACTIONS(180), + [anon_sym_BANG_LBRACK] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(186), [anon_sym_LBRACE2] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(192), - [anon_sym_TODO] = ACTIONS(195), - [anon_sym_WIP] = ACTIONS(195), - [anon_sym_NOTE] = ACTIONS(198), - [anon_sym_INFO] = ACTIONS(198), - [anon_sym_XXX] = ACTIONS(198), + [anon_sym_DOLLAR] = ACTIONS(189), + [anon_sym_TODO] = ACTIONS(192), + [anon_sym_WIP] = ACTIONS(192), + [anon_sym_NOTE] = ACTIONS(195), + [anon_sym_INFO] = ACTIONS(195), + [anon_sym_XXX] = ACTIONS(195), [sym_fixme] = ACTIONS(156), [anon_sym_PIPE] = ACTIONS(156), - [anon_sym_BQUOTE] = ACTIONS(112), - [sym__whitespace1] = ACTIONS(201), - [sym__newline] = ACTIONS(204), - [aux_sym__text_token1] = ACTIONS(207), + [sym__whitespace1] = ACTIONS(489), + [sym__newline] = ACTIONS(201), + [aux_sym__text_token1] = ACTIONS(204), + [sym__verbatim_begin] = ACTIONS(207), }, - [21] = { - [sym__inline] = STATE(714), - [sym__element] = STATE(84), - [sym_emphasis] = STATE(197), + [28] = { + [sym__inline] = STATE(695), + [sym__element] = STATE(85), + [sym_emphasis] = STATE(175), + [sym_emphasis_begin] = STATE(94), + [sym_strong] = STATE(175), + [sym_strong_begin] = STATE(95), + [sym__hard_line_break] = STATE(175), + [sym_hard_line_break] = STATE(175), + [sym__smart_punctuation] = STATE(175), + [sym_autolink] = STATE(175), + [sym_highlighted] = STATE(175), + [sym_insert] = STATE(175), + [sym_delete] = STATE(175), + [sym_superscript] = STATE(175), + [sym_subscript] = STATE(175), + [sym_footnote_reference] = STATE(175), + [sym__image] = STATE(175), + [sym_full_reference_image] = STATE(175), + [sym_collapsed_reference_image] = STATE(175), + [sym_inline_image] = STATE(175), + [sym__image_description] = STATE(652), + [sym__link] = STATE(175), + [sym_full_reference_link] = STATE(175), + [sym_collapsed_reference_link] = STATE(175), + [sym_inline_link] = STATE(175), + [sym_link_text] = STATE(649), + [sym__comment_with_spaces] = STATE(175), + [sym_span] = STATE(175), + [sym_raw_inline] = STATE(175), + [sym_math] = STATE(175), + [sym_verbatim] = STATE(175), + [sym__todo_highlights] = STATE(175), + [sym_todo] = STATE(175), + [sym_note] = STATE(175), + [sym__symbol_fallback] = STATE(175), + [aux_sym__text] = STATE(156), + [aux_sym__inline_repeat1] = STATE(85), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(417), + [anon_sym__] = ACTIONS(420), + [anon_sym_LBRACE_STAR] = ACTIONS(423), + [anon_sym_STAR] = ACTIONS(426), + [anon_sym_BSLASH] = ACTIONS(429), + [sym_quotation_marks] = ACTIONS(432), + [sym_ellipsis] = ACTIONS(432), + [sym_em_dash] = ACTIONS(432), + [sym_en_dash] = ACTIONS(435), + [sym_backslash_escape] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(438), + [anon_sym_LBRACE_EQ] = ACTIONS(441), + [anon_sym_LBRACE_PLUS] = ACTIONS(444), + [anon_sym_LBRACE_DASH] = ACTIONS(447), + [sym_symbol] = ACTIONS(432), + [anon_sym_LBRACE_CARET] = ACTIONS(450), + [anon_sym_CARET] = ACTIONS(450), + [anon_sym_LBRACE_TILDE] = ACTIONS(453), + [anon_sym_TILDE] = ACTIONS(498), + [anon_sym_TILDE_RBRACE] = ACTIONS(93), + [anon_sym_LBRACK_CARET] = ACTIONS(456), + [anon_sym_BANG_LBRACK] = ACTIONS(459), + [anon_sym_LBRACK] = ACTIONS(462), + [anon_sym_LBRACE2] = ACTIONS(435), + [anon_sym_DOLLAR] = ACTIONS(465), + [anon_sym_TODO] = ACTIONS(468), + [anon_sym_WIP] = ACTIONS(468), + [anon_sym_NOTE] = ACTIONS(471), + [anon_sym_INFO] = ACTIONS(471), + [anon_sym_XXX] = ACTIONS(471), + [sym_fixme] = ACTIONS(432), + [anon_sym_PIPE] = ACTIONS(432), + [sym__whitespace1] = ACTIONS(474), + [sym__newline] = ACTIONS(477), + [aux_sym__text_token1] = ACTIONS(480), + [sym__verbatim_begin] = ACTIONS(483), + }, + [29] = { + [sym__inline] = STATE(709), + [sym__element] = STATE(120), + [sym_emphasis] = STATE(182), [sym_emphasis_begin] = STATE(97), - [sym_strong] = STATE(197), - [sym_strong_begin] = STATE(100), - [sym__hard_line_break] = STATE(197), - [sym_hard_line_break] = STATE(197), - [sym__smart_punctuation] = STATE(197), - [sym_autolink] = STATE(197), - [sym_highlighted] = STATE(197), - [sym_insert] = STATE(197), - [sym_delete] = STATE(197), - [sym_superscript] = STATE(197), - [sym_subscript] = STATE(197), - [sym_footnote_reference] = STATE(197), - [sym__image] = STATE(197), - [sym_full_reference_image] = STATE(197), - [sym_collapsed_reference_image] = STATE(197), - [sym_inline_image] = STATE(197), - [sym__image_description] = STATE(676), - [sym__link] = STATE(197), - [sym_full_reference_link] = STATE(197), - [sym_collapsed_reference_link] = STATE(197), - [sym_inline_link] = STATE(197), - [sym_link_text] = STATE(677), - [sym__comment_with_spaces] = STATE(197), - [sym_span] = STATE(197), - [sym_raw_inline] = STATE(197), - [sym_math] = STATE(197), - [sym_verbatim] = STATE(197), - [sym__todo_highlights] = STATE(197), - [sym_todo] = STATE(197), - [sym_note] = STATE(197), - [sym__symbol_fallback] = STATE(197), - [sym__verbatim_begin] = STATE(861), - [aux_sym__text] = STATE(159), - [aux_sym__inline_repeat1] = STATE(84), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACE_] = ACTIONS(276), - [anon_sym__] = ACTIONS(279), - [anon_sym_LBRACE_STAR] = ACTIONS(282), - [anon_sym_STAR] = ACTIONS(285), - [anon_sym_BSLASH] = ACTIONS(288), - [sym_quotation_marks] = ACTIONS(291), - [sym_ellipsis] = ACTIONS(291), - [sym_em_dash] = ACTIONS(291), - [sym_en_dash] = ACTIONS(294), - [sym_backslash_escape] = ACTIONS(294), - [anon_sym_LT] = ACTIONS(297), - [anon_sym_LBRACE_EQ] = ACTIONS(300), - [anon_sym_EQ_RBRACE] = ACTIONS(49), - [anon_sym_LBRACE_PLUS] = ACTIONS(303), - [anon_sym_LBRACE_DASH] = ACTIONS(306), - [sym_symbol] = ACTIONS(291), - [anon_sym_LBRACE_CARET] = ACTIONS(309), - [anon_sym_CARET] = ACTIONS(309), - [anon_sym_LBRACE_TILDE] = ACTIONS(312), - [anon_sym_TILDE] = ACTIONS(312), - [anon_sym_LBRACK_CARET] = ACTIONS(315), - [anon_sym_BANG_LBRACK] = ACTIONS(318), - [anon_sym_LBRACK] = ACTIONS(321), - [anon_sym_LBRACE2] = ACTIONS(294), - [anon_sym_DOLLAR] = ACTIONS(324), - [anon_sym_TODO] = ACTIONS(327), - [anon_sym_WIP] = ACTIONS(327), - [anon_sym_NOTE] = ACTIONS(330), - [anon_sym_INFO] = ACTIONS(330), - [anon_sym_XXX] = ACTIONS(330), - [sym_fixme] = ACTIONS(291), - [anon_sym_PIPE] = ACTIONS(291), - [anon_sym_BQUOTE] = ACTIONS(112), - [sym__whitespace1] = ACTIONS(333), - [sym__newline] = ACTIONS(336), - [aux_sym__text_token1] = ACTIONS(339), + [sym_strong] = STATE(182), + [sym_strong_begin] = STATE(99), + [sym__hard_line_break] = STATE(182), + [sym_hard_line_break] = STATE(182), + [sym__smart_punctuation] = STATE(182), + [sym_autolink] = STATE(182), + [sym_highlighted] = STATE(182), + [sym_insert] = STATE(182), + [sym_delete] = STATE(182), + [sym_superscript] = STATE(182), + [sym_subscript] = STATE(182), + [sym_footnote_reference] = STATE(182), + [sym__image] = STATE(182), + [sym_full_reference_image] = STATE(182), + [sym_collapsed_reference_image] = STATE(182), + [sym_inline_image] = STATE(182), + [sym__image_description] = STATE(628), + [sym__link] = STATE(182), + [sym_full_reference_link] = STATE(182), + [sym_collapsed_reference_link] = STATE(182), + [sym_inline_link] = STATE(182), + [sym_link_text] = STATE(627), + [sym__comment_with_spaces] = STATE(182), + [sym_span] = STATE(182), + [sym_raw_inline] = STATE(182), + [sym_math] = STATE(182), + [sym_verbatim] = STATE(182), + [sym__todo_highlights] = STATE(182), + [sym_todo] = STATE(182), + [sym_note] = STATE(182), + [sym__symbol_fallback] = STATE(182), + [aux_sym__text] = STATE(136), + [aux_sym__inline_repeat1] = STATE(120), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(141), + [anon_sym__] = ACTIONS(486), + [anon_sym_LBRACE_STAR] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(150), + [anon_sym_BSLASH] = ACTIONS(153), + [sym_quotation_marks] = ACTIONS(156), + [sym_ellipsis] = ACTIONS(156), + [sym_em_dash] = ACTIONS(156), + [sym_en_dash] = ACTIONS(159), + [sym_backslash_escape] = ACTIONS(159), + [anon_sym_LT] = ACTIONS(162), + [anon_sym_LBRACE_EQ] = ACTIONS(165), + [anon_sym_LBRACE_PLUS] = ACTIONS(168), + [anon_sym_LBRACE_DASH] = ACTIONS(171), + [anon_sym_DASH_RBRACE] = ACTIONS(93), + [sym_symbol] = ACTIONS(156), + [anon_sym_LBRACE_CARET] = ACTIONS(174), + [anon_sym_CARET] = ACTIONS(174), + [anon_sym_LBRACE_TILDE] = ACTIONS(177), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_LBRACK_CARET] = ACTIONS(180), + [anon_sym_BANG_LBRACK] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(186), + [anon_sym_LBRACE2] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(189), + [anon_sym_TODO] = ACTIONS(192), + [anon_sym_WIP] = ACTIONS(192), + [anon_sym_NOTE] = ACTIONS(195), + [anon_sym_INFO] = ACTIONS(195), + [anon_sym_XXX] = ACTIONS(195), + [sym_fixme] = ACTIONS(156), + [anon_sym_PIPE] = ACTIONS(156), + [sym__whitespace1] = ACTIONS(489), + [sym__newline] = ACTIONS(201), + [aux_sym__text_token1] = ACTIONS(204), + [sym__verbatim_begin] = ACTIONS(207), }, - [22] = { - [sym__inline] = STATE(819), - [sym__element] = STATE(98), - [sym_emphasis] = STATE(207), - [sym_emphasis_begin] = STATE(89), - [sym_strong] = STATE(207), - [sym_strong_begin] = STATE(72), - [sym__hard_line_break] = STATE(207), - [sym_hard_line_break] = STATE(207), - [sym__smart_punctuation] = STATE(207), - [sym_autolink] = STATE(207), - [sym_highlighted] = STATE(207), - [sym_insert] = STATE(207), - [sym_delete] = STATE(207), - [sym_superscript] = STATE(207), - [sym_subscript] = STATE(207), - [sym_footnote_reference] = STATE(207), - [sym__image] = STATE(207), - [sym_full_reference_image] = STATE(207), - [sym_collapsed_reference_image] = STATE(207), - [sym_inline_image] = STATE(207), - [sym__image_description] = STATE(666), - [sym__link] = STATE(207), - [sym_full_reference_link] = STATE(207), - [sym_collapsed_reference_link] = STATE(207), - [sym_inline_link] = STATE(207), - [sym_link_text] = STATE(667), - [sym__comment_with_spaces] = STATE(207), - [sym_span] = STATE(207), - [sym_raw_inline] = STATE(207), - [sym_math] = STATE(207), - [sym_verbatim] = STATE(207), - [sym__todo_highlights] = STATE(207), - [sym_todo] = STATE(207), - [sym_note] = STATE(207), - [sym__symbol_fallback] = STATE(207), - [sym__verbatim_begin] = STATE(852), - [aux_sym__text] = STATE(139), - [aux_sym__inline_repeat1] = STATE(98), - [anon_sym_LBRACE] = ACTIONS(51), + [30] = { + [sym__inline] = STATE(843), + [sym__element] = STATE(116), + [sym_emphasis] = STATE(183), + [sym_emphasis_begin] = STATE(91), + [sym_strong] = STATE(183), + [sym_strong_begin] = STATE(92), + [sym__hard_line_break] = STATE(183), + [sym_hard_line_break] = STATE(183), + [sym__smart_punctuation] = STATE(183), + [sym_autolink] = STATE(183), + [sym_highlighted] = STATE(183), + [sym_insert] = STATE(183), + [sym_delete] = STATE(183), + [sym_superscript] = STATE(183), + [sym_subscript] = STATE(183), + [sym_footnote_reference] = STATE(183), + [sym__image] = STATE(183), + [sym_full_reference_image] = STATE(183), + [sym_collapsed_reference_image] = STATE(183), + [sym_inline_image] = STATE(183), + [sym__image_description] = STATE(645), + [sym__link] = STATE(183), + [sym_full_reference_link] = STATE(183), + [sym_collapsed_reference_link] = STATE(183), + [sym_inline_link] = STATE(183), + [sym_link_text] = STATE(646), + [sym__comment_with_spaces] = STATE(183), + [sym_span] = STATE(183), + [sym_raw_inline] = STATE(183), + [sym_math] = STATE(183), + [sym_verbatim] = STATE(183), + [sym__todo_highlights] = STATE(183), + [sym_todo] = STATE(183), + [sym_note] = STATE(183), + [sym__symbol_fallback] = STATE(183), + [aux_sym__text] = STATE(149), + [aux_sym__inline_repeat1] = STATE(116), + [anon_sym_LBRACE] = ACTIONS(49), [anon_sym_LBRACE_] = ACTIONS(210), [anon_sym__] = ACTIONS(213), [anon_sym_LBRACE_STAR] = ACTIONS(216), @@ -9936,14 +10348,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_backslash_escape] = ACTIONS(228), [anon_sym_LT] = ACTIONS(231), [anon_sym_LBRACE_EQ] = ACTIONS(234), - [anon_sym_EQ_RBRACE] = ACTIONS(49), [anon_sym_LBRACE_PLUS] = ACTIONS(237), [anon_sym_LBRACE_DASH] = ACTIONS(240), [sym_symbol] = ACTIONS(225), [anon_sym_LBRACE_CARET] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(243), [anon_sym_LBRACE_TILDE] = ACTIONS(246), - [anon_sym_TILDE] = ACTIONS(246), + [anon_sym_TILDE] = ACTIONS(501), + [anon_sym_TILDE_RBRACE] = ACTIONS(93), [anon_sym_LBRACK_CARET] = ACTIONS(249), [anon_sym_BANG_LBRACK] = ACTIONS(252), [anon_sym_LBRACK] = ACTIONS(255), @@ -9956,326 +10368,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_XXX] = ACTIONS(264), [sym_fixme] = ACTIONS(225), [anon_sym_PIPE] = ACTIONS(225), - [anon_sym_BQUOTE] = ACTIONS(112), [sym__whitespace1] = ACTIONS(267), [sym__newline] = ACTIONS(270), [aux_sym__text_token1] = ACTIONS(273), + [sym__verbatim_begin] = ACTIONS(276), }, - [23] = { - [sym__inline] = STATE(820), - [sym__element] = STATE(101), - [sym_emphasis] = STATE(173), - [sym_emphasis_begin] = STATE(87), - [sym_strong] = STATE(173), - [sym_strong_begin] = STATE(76), - [sym__hard_line_break] = STATE(173), - [sym_hard_line_break] = STATE(173), - [sym__smart_punctuation] = STATE(173), - [sym_autolink] = STATE(173), - [sym_highlighted] = STATE(173), - [sym_insert] = STATE(173), - [sym_delete] = STATE(173), - [sym_superscript] = STATE(173), - [sym_subscript] = STATE(173), - [sym_footnote_reference] = STATE(173), - [sym__image] = STATE(173), - [sym_full_reference_image] = STATE(173), - [sym_collapsed_reference_image] = STATE(173), - [sym_inline_image] = STATE(173), - [sym__image_description] = STATE(647), - [sym__link] = STATE(173), - [sym_full_reference_link] = STATE(173), - [sym_collapsed_reference_link] = STATE(173), - [sym_inline_link] = STATE(173), - [sym_link_text] = STATE(648), - [sym__comment_with_spaces] = STATE(173), - [sym_span] = STATE(173), - [sym_raw_inline] = STATE(173), - [sym_math] = STATE(173), - [sym_verbatim] = STATE(173), - [sym__todo_highlights] = STATE(173), - [sym_todo] = STATE(173), - [sym_note] = STATE(173), - [sym__symbol_fallback] = STATE(173), - [sym__verbatim_begin] = STATE(843), - [aux_sym__text] = STATE(155), - [aux_sym__inline_repeat1] = STATE(101), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACE_] = ACTIONS(342), - [anon_sym__] = ACTIONS(345), - [anon_sym_LBRACE_STAR] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(351), - [anon_sym_BSLASH] = ACTIONS(354), - [sym_quotation_marks] = ACTIONS(357), - [sym_ellipsis] = ACTIONS(357), - [sym_em_dash] = ACTIONS(357), - [sym_en_dash] = ACTIONS(360), - [sym_backslash_escape] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(363), - [anon_sym_LBRACE_EQ] = ACTIONS(366), - [anon_sym_EQ_RBRACE] = ACTIONS(49), - [anon_sym_LBRACE_PLUS] = ACTIONS(369), - [anon_sym_LBRACE_DASH] = ACTIONS(372), - [sym_symbol] = ACTIONS(357), - [anon_sym_LBRACE_CARET] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(375), - [anon_sym_LBRACE_TILDE] = ACTIONS(378), - [anon_sym_TILDE] = ACTIONS(378), - [anon_sym_LBRACK_CARET] = ACTIONS(381), - [anon_sym_BANG_LBRACK] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(387), - [anon_sym_LBRACE2] = ACTIONS(360), - [anon_sym_DOLLAR] = ACTIONS(390), - [anon_sym_TODO] = ACTIONS(393), - [anon_sym_WIP] = ACTIONS(393), - [anon_sym_NOTE] = ACTIONS(396), - [anon_sym_INFO] = ACTIONS(396), - [anon_sym_XXX] = ACTIONS(396), - [sym_fixme] = ACTIONS(357), - [anon_sym_PIPE] = ACTIONS(357), - [anon_sym_BQUOTE] = ACTIONS(112), - [sym__whitespace1] = ACTIONS(399), - [sym__newline] = ACTIONS(402), - [aux_sym__text_token1] = ACTIONS(405), - }, - [24] = { - [sym__inline] = STATE(821), - [sym__element] = STATE(109), - [sym_emphasis] = STATE(221), - [sym_emphasis_begin] = STATE(82), - [sym_strong] = STATE(221), - [sym_strong_begin] = STATE(83), - [sym__hard_line_break] = STATE(221), - [sym_hard_line_break] = STATE(221), - [sym__smart_punctuation] = STATE(221), - [sym_autolink] = STATE(221), - [sym_highlighted] = STATE(221), - [sym_insert] = STATE(221), - [sym_delete] = STATE(221), - [sym_superscript] = STATE(221), - [sym_subscript] = STATE(221), - [sym_footnote_reference] = STATE(221), - [sym__image] = STATE(221), - [sym_full_reference_image] = STATE(221), - [sym_collapsed_reference_image] = STATE(221), - [sym_inline_image] = STATE(221), - [sym__image_description] = STATE(669), - [sym__link] = STATE(221), - [sym_full_reference_link] = STATE(221), - [sym_collapsed_reference_link] = STATE(221), - [sym_inline_link] = STATE(221), - [sym_link_text] = STATE(657), - [sym__comment_with_spaces] = STATE(221), - [sym_span] = STATE(221), - [sym_raw_inline] = STATE(221), - [sym_math] = STATE(221), - [sym_verbatim] = STATE(221), - [sym__todo_highlights] = STATE(221), - [sym_todo] = STATE(221), - [sym_note] = STATE(221), - [sym__symbol_fallback] = STATE(221), - [sym__verbatim_begin] = STATE(834), - [aux_sym__text] = STATE(134), - [aux_sym__inline_repeat1] = STATE(109), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACE_] = ACTIONS(408), - [anon_sym__] = ACTIONS(411), - [anon_sym_LBRACE_STAR] = ACTIONS(414), - [anon_sym_STAR] = ACTIONS(417), - [anon_sym_BSLASH] = ACTIONS(420), - [sym_quotation_marks] = ACTIONS(423), - [sym_ellipsis] = ACTIONS(423), - [sym_em_dash] = ACTIONS(423), - [sym_en_dash] = ACTIONS(426), - [sym_backslash_escape] = ACTIONS(426), - [anon_sym_LT] = ACTIONS(429), - [anon_sym_LBRACE_EQ] = ACTIONS(432), - [anon_sym_EQ_RBRACE] = ACTIONS(49), - [anon_sym_LBRACE_PLUS] = ACTIONS(435), - [anon_sym_LBRACE_DASH] = ACTIONS(438), - [sym_symbol] = ACTIONS(423), - [anon_sym_LBRACE_CARET] = ACTIONS(441), - [anon_sym_CARET] = ACTIONS(441), - [anon_sym_LBRACE_TILDE] = ACTIONS(444), - [anon_sym_TILDE] = ACTIONS(444), - [anon_sym_LBRACK_CARET] = ACTIONS(447), - [anon_sym_BANG_LBRACK] = ACTIONS(450), - [anon_sym_LBRACK] = ACTIONS(453), - [anon_sym_LBRACE2] = ACTIONS(426), - [anon_sym_DOLLAR] = ACTIONS(456), - [anon_sym_TODO] = ACTIONS(459), - [anon_sym_WIP] = ACTIONS(459), - [anon_sym_NOTE] = ACTIONS(462), - [anon_sym_INFO] = ACTIONS(462), - [anon_sym_XXX] = ACTIONS(462), - [sym_fixme] = ACTIONS(423), - [anon_sym_PIPE] = ACTIONS(423), - [anon_sym_BQUOTE] = ACTIONS(112), - [sym__whitespace1] = ACTIONS(465), - [sym__newline] = ACTIONS(468), - [aux_sym__text_token1] = ACTIONS(471), - }, - [25] = { - [sym__inline] = STATE(833), - [sym__element] = STATE(112), - [sym_emphasis] = STATE(206), - [sym_emphasis_begin] = STATE(108), - [sym_strong] = STATE(206), - [sym_strong_begin] = STATE(110), - [sym__hard_line_break] = STATE(206), - [sym_hard_line_break] = STATE(206), - [sym__smart_punctuation] = STATE(206), - [sym_autolink] = STATE(206), - [sym_highlighted] = STATE(206), - [sym_insert] = STATE(206), - [sym_delete] = STATE(206), - [sym_superscript] = STATE(206), - [sym_subscript] = STATE(206), - [sym_footnote_reference] = STATE(206), - [sym__image] = STATE(206), - [sym_full_reference_image] = STATE(206), - [sym_collapsed_reference_image] = STATE(206), - [sym_inline_image] = STATE(206), - [sym__image_description] = STATE(664), - [sym__link] = STATE(206), - [sym_full_reference_link] = STATE(206), - [sym_collapsed_reference_link] = STATE(206), - [sym_inline_link] = STATE(206), - [sym_link_text] = STATE(663), - [sym__comment_with_spaces] = STATE(206), - [sym_span] = STATE(206), - [sym_raw_inline] = STATE(206), - [sym_math] = STATE(206), - [sym_verbatim] = STATE(206), - [sym__todo_highlights] = STATE(206), - [sym_todo] = STATE(206), - [sym_note] = STATE(206), - [sym__symbol_fallback] = STATE(206), - [sym__verbatim_begin] = STATE(879), - [aux_sym__text] = STATE(126), - [aux_sym__inline_repeat1] = STATE(112), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACE_] = ACTIONS(53), - [anon_sym__] = ACTIONS(56), - [anon_sym_LBRACE_STAR] = ACTIONS(59), - [anon_sym_STAR] = ACTIONS(62), - [anon_sym_BSLASH] = ACTIONS(65), - [sym_quotation_marks] = ACTIONS(68), - [sym_ellipsis] = ACTIONS(68), - [sym_em_dash] = ACTIONS(68), - [sym_en_dash] = ACTIONS(71), - [sym_backslash_escape] = ACTIONS(71), - [anon_sym_LT] = ACTIONS(74), - [anon_sym_LBRACE_EQ] = ACTIONS(77), - [anon_sym_LBRACE_PLUS] = ACTIONS(80), - [anon_sym_LBRACE_DASH] = ACTIONS(83), - [sym_symbol] = ACTIONS(68), - [anon_sym_LBRACE_CARET] = ACTIONS(86), - [anon_sym_CARET] = ACTIONS(86), - [anon_sym_LBRACE_TILDE] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_LBRACK_CARET] = ACTIONS(92), - [anon_sym_RBRACK] = ACTIONS(474), - [anon_sym_BANG_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK] = ACTIONS(100), - [anon_sym_LBRACE2] = ACTIONS(71), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_TODO] = ACTIONS(106), - [anon_sym_WIP] = ACTIONS(106), - [anon_sym_NOTE] = ACTIONS(109), - [anon_sym_INFO] = ACTIONS(109), - [anon_sym_XXX] = ACTIONS(109), - [sym_fixme] = ACTIONS(68), - [anon_sym_PIPE] = ACTIONS(68), - [anon_sym_BQUOTE] = ACTIONS(112), - [sym__whitespace1] = ACTIONS(115), - [sym__newline] = ACTIONS(118), - [aux_sym__text_token1] = ACTIONS(121), - }, - [26] = { - [sym__inline] = STATE(880), - [sym__element] = STATE(112), - [sym_emphasis] = STATE(206), - [sym_emphasis_begin] = STATE(108), - [sym_strong] = STATE(206), - [sym_strong_begin] = STATE(110), - [sym__hard_line_break] = STATE(206), - [sym_hard_line_break] = STATE(206), - [sym__smart_punctuation] = STATE(206), - [sym_autolink] = STATE(206), - [sym_highlighted] = STATE(206), - [sym_insert] = STATE(206), - [sym_delete] = STATE(206), - [sym_superscript] = STATE(206), - [sym_subscript] = STATE(206), - [sym_footnote_reference] = STATE(206), - [sym__image] = STATE(206), - [sym_full_reference_image] = STATE(206), - [sym_collapsed_reference_image] = STATE(206), - [sym_inline_image] = STATE(206), - [sym__image_description] = STATE(664), - [sym__link] = STATE(206), - [sym_full_reference_link] = STATE(206), - [sym_collapsed_reference_link] = STATE(206), - [sym_inline_link] = STATE(206), - [sym_link_text] = STATE(663), - [sym__comment_with_spaces] = STATE(206), - [sym_span] = STATE(206), - [sym_raw_inline] = STATE(206), - [sym_math] = STATE(206), - [sym_verbatim] = STATE(206), - [sym__todo_highlights] = STATE(206), - [sym_todo] = STATE(206), - [sym_note] = STATE(206), - [sym__symbol_fallback] = STATE(206), - [sym__verbatim_begin] = STATE(879), - [aux_sym__text] = STATE(126), - [aux_sym__inline_repeat1] = STATE(112), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACE_] = ACTIONS(53), - [anon_sym__] = ACTIONS(56), - [anon_sym_LBRACE_STAR] = ACTIONS(59), - [anon_sym_STAR] = ACTIONS(62), - [anon_sym_BSLASH] = ACTIONS(65), - [sym_quotation_marks] = ACTIONS(68), - [sym_ellipsis] = ACTIONS(68), - [sym_em_dash] = ACTIONS(68), - [sym_en_dash] = ACTIONS(71), - [sym_backslash_escape] = ACTIONS(71), - [anon_sym_LT] = ACTIONS(74), - [anon_sym_LBRACE_EQ] = ACTIONS(77), - [anon_sym_LBRACE_PLUS] = ACTIONS(80), - [anon_sym_LBRACE_DASH] = ACTIONS(83), - [sym_symbol] = ACTIONS(68), - [anon_sym_LBRACE_CARET] = ACTIONS(86), - [anon_sym_CARET] = ACTIONS(86), - [anon_sym_LBRACE_TILDE] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_LBRACK_CARET] = ACTIONS(92), - [anon_sym_RBRACK] = ACTIONS(49), - [anon_sym_BANG_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK] = ACTIONS(100), - [anon_sym_LBRACE2] = ACTIONS(71), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_TODO] = ACTIONS(106), - [anon_sym_WIP] = ACTIONS(106), - [anon_sym_NOTE] = ACTIONS(109), - [anon_sym_INFO] = ACTIONS(109), - [anon_sym_XXX] = ACTIONS(109), - [sym_fixme] = ACTIONS(68), - [anon_sym_PIPE] = ACTIONS(68), - [anon_sym_BQUOTE] = ACTIONS(112), - [sym__whitespace1] = ACTIONS(115), - [sym__newline] = ACTIONS(118), - [aux_sym__text_token1] = ACTIONS(121), + [31] = { + [sym__inline] = STATE(852), + [sym__element] = STATE(77), + [sym_emphasis] = STATE(174), + [sym_emphasis_begin] = STATE(86), + [sym_strong] = STATE(174), + [sym_strong_begin] = STATE(89), + [sym__hard_line_break] = STATE(174), + [sym_hard_line_break] = STATE(174), + [sym__smart_punctuation] = STATE(174), + [sym_autolink] = STATE(174), + [sym_highlighted] = STATE(174), + [sym_insert] = STATE(174), + [sym_delete] = STATE(174), + [sym_superscript] = STATE(174), + [sym_subscript] = STATE(174), + [sym_footnote_reference] = STATE(174), + [sym__image] = STATE(174), + [sym_full_reference_image] = STATE(174), + [sym_collapsed_reference_image] = STATE(174), + [sym_inline_image] = STATE(174), + [sym__image_description] = STATE(630), + [sym__link] = STATE(174), + [sym_full_reference_link] = STATE(174), + [sym_collapsed_reference_link] = STATE(174), + [sym_inline_link] = STATE(174), + [sym_link_text] = STATE(631), + [sym__comment_with_spaces] = STATE(174), + [sym_span] = STATE(174), + [sym_raw_inline] = STATE(174), + [sym_math] = STATE(174), + [sym_verbatim] = STATE(174), + [sym__todo_highlights] = STATE(174), + [sym_todo] = STATE(174), + [sym_note] = STATE(174), + [sym__symbol_fallback] = STATE(174), + [aux_sym__text] = STATE(148), + [aux_sym__inline_repeat1] = STATE(77), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(348), + [anon_sym__] = ACTIONS(351), + [anon_sym_LBRACE_STAR] = ACTIONS(354), + [anon_sym_STAR] = ACTIONS(357), + [anon_sym_BSLASH] = ACTIONS(360), + [sym_quotation_marks] = ACTIONS(363), + [sym_ellipsis] = ACTIONS(363), + [sym_em_dash] = ACTIONS(363), + [sym_en_dash] = ACTIONS(366), + [sym_backslash_escape] = ACTIONS(366), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_LBRACE_EQ] = ACTIONS(372), + [anon_sym_LBRACE_PLUS] = ACTIONS(375), + [anon_sym_LBRACE_DASH] = ACTIONS(378), + [sym_symbol] = ACTIONS(363), + [anon_sym_LBRACE_CARET] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(381), + [anon_sym_LBRACE_TILDE] = ACTIONS(384), + [anon_sym_TILDE] = ACTIONS(504), + [anon_sym_TILDE_RBRACE] = ACTIONS(93), + [anon_sym_LBRACK_CARET] = ACTIONS(387), + [anon_sym_BANG_LBRACK] = ACTIONS(390), + [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_LBRACE2] = ACTIONS(366), + [anon_sym_DOLLAR] = ACTIONS(396), + [anon_sym_TODO] = ACTIONS(399), + [anon_sym_WIP] = ACTIONS(399), + [anon_sym_NOTE] = ACTIONS(402), + [anon_sym_INFO] = ACTIONS(402), + [anon_sym_XXX] = ACTIONS(402), + [sym_fixme] = ACTIONS(363), + [anon_sym_PIPE] = ACTIONS(363), + [sym__whitespace1] = ACTIONS(405), + [sym__newline] = ACTIONS(408), + [aux_sym__text_token1] = ACTIONS(411), + [sym__verbatim_begin] = ACTIONS(414), }, - [27] = { - [sym__inline] = STATE(736), - [sym__element] = STATE(84), + [32] = { + [sym__inline] = STATE(744), + [sym__element] = STATE(119), [sym_emphasis] = STATE(197), - [sym_emphasis_begin] = STATE(97), + [sym_emphasis_begin] = STATE(81), [sym_strong] = STATE(197), - [sym_strong_begin] = STATE(100), + [sym_strong_begin] = STATE(82), [sym__hard_line_break] = STATE(197), [sym_hard_line_break] = STATE(197), [sym__smart_punctuation] = STATE(197), @@ -10290,12 +10470,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_full_reference_image] = STATE(197), [sym_collapsed_reference_image] = STATE(197), [sym_inline_image] = STATE(197), - [sym__image_description] = STATE(676), + [sym__image_description] = STATE(654), [sym__link] = STATE(197), [sym_full_reference_link] = STATE(197), [sym_collapsed_reference_link] = STATE(197), [sym_inline_link] = STATE(197), - [sym_link_text] = STATE(677), + [sym_link_text] = STATE(651), [sym__comment_with_spaces] = STATE(197), [sym_span] = STATE(197), [sym_raw_inline] = STATE(197), @@ -10305,552 +10485,164 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(197), [sym_note] = STATE(197), [sym__symbol_fallback] = STATE(197), - [sym__verbatim_begin] = STATE(861), - [aux_sym__text] = STATE(159), - [aux_sym__inline_repeat1] = STATE(84), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACE_] = ACTIONS(276), - [anon_sym__] = ACTIONS(279), - [anon_sym_LBRACE_STAR] = ACTIONS(282), - [anon_sym_STAR] = ACTIONS(285), - [anon_sym_BSLASH] = ACTIONS(288), - [sym_quotation_marks] = ACTIONS(291), - [sym_ellipsis] = ACTIONS(291), - [sym_em_dash] = ACTIONS(291), - [sym_en_dash] = ACTIONS(294), - [sym_backslash_escape] = ACTIONS(294), - [anon_sym_LT] = ACTIONS(297), - [anon_sym_LBRACE_EQ] = ACTIONS(300), - [anon_sym_LBRACE_PLUS] = ACTIONS(303), - [anon_sym_LBRACE_DASH] = ACTIONS(306), - [sym_symbol] = ACTIONS(291), - [anon_sym_LBRACE_CARET] = ACTIONS(309), - [anon_sym_CARET] = ACTIONS(309), - [anon_sym_LBRACE_TILDE] = ACTIONS(312), - [anon_sym_TILDE] = ACTIONS(312), - [anon_sym_LBRACK_CARET] = ACTIONS(315), - [anon_sym_RBRACK] = ACTIONS(49), - [anon_sym_BANG_LBRACK] = ACTIONS(318), - [anon_sym_LBRACK] = ACTIONS(321), - [anon_sym_LBRACE2] = ACTIONS(294), - [anon_sym_DOLLAR] = ACTIONS(324), - [anon_sym_TODO] = ACTIONS(327), - [anon_sym_WIP] = ACTIONS(327), - [anon_sym_NOTE] = ACTIONS(330), - [anon_sym_INFO] = ACTIONS(330), - [anon_sym_XXX] = ACTIONS(330), - [sym_fixme] = ACTIONS(291), - [anon_sym_PIPE] = ACTIONS(291), - [anon_sym_BQUOTE] = ACTIONS(112), - [sym__whitespace1] = ACTIONS(333), - [sym__newline] = ACTIONS(336), - [aux_sym__text_token1] = ACTIONS(339), - }, - [28] = { - [sym__inline] = STATE(758), - [sym__element] = STATE(98), - [sym_emphasis] = STATE(207), - [sym_emphasis_begin] = STATE(89), - [sym_strong] = STATE(207), - [sym_strong_begin] = STATE(72), - [sym__hard_line_break] = STATE(207), - [sym_hard_line_break] = STATE(207), - [sym__smart_punctuation] = STATE(207), - [sym_autolink] = STATE(207), - [sym_highlighted] = STATE(207), - [sym_insert] = STATE(207), - [sym_delete] = STATE(207), - [sym_superscript] = STATE(207), - [sym_subscript] = STATE(207), - [sym_footnote_reference] = STATE(207), - [sym__image] = STATE(207), - [sym_full_reference_image] = STATE(207), - [sym_collapsed_reference_image] = STATE(207), - [sym_inline_image] = STATE(207), - [sym__image_description] = STATE(666), - [sym__link] = STATE(207), - [sym_full_reference_link] = STATE(207), - [sym_collapsed_reference_link] = STATE(207), - [sym_inline_link] = STATE(207), - [sym_link_text] = STATE(667), - [sym__comment_with_spaces] = STATE(207), - [sym_span] = STATE(207), - [sym_raw_inline] = STATE(207), - [sym_math] = STATE(207), - [sym_verbatim] = STATE(207), - [sym__todo_highlights] = STATE(207), - [sym_todo] = STATE(207), - [sym_note] = STATE(207), - [sym__symbol_fallback] = STATE(207), - [sym__verbatim_begin] = STATE(852), - [aux_sym__text] = STATE(139), - [aux_sym__inline_repeat1] = STATE(98), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACE_] = ACTIONS(210), - [anon_sym__] = ACTIONS(213), - [anon_sym_LBRACE_STAR] = ACTIONS(216), - [anon_sym_STAR] = ACTIONS(219), - [anon_sym_BSLASH] = ACTIONS(222), - [sym_quotation_marks] = ACTIONS(225), - [sym_ellipsis] = ACTIONS(225), - [sym_em_dash] = ACTIONS(225), - [sym_en_dash] = ACTIONS(228), - [sym_backslash_escape] = ACTIONS(228), - [anon_sym_LT] = ACTIONS(231), - [anon_sym_LBRACE_EQ] = ACTIONS(234), - [anon_sym_LBRACE_PLUS] = ACTIONS(237), - [anon_sym_LBRACE_DASH] = ACTIONS(240), - [sym_symbol] = ACTIONS(225), - [anon_sym_LBRACE_CARET] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(243), - [anon_sym_LBRACE_TILDE] = ACTIONS(246), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_LBRACK_CARET] = ACTIONS(249), - [anon_sym_RBRACK] = ACTIONS(49), - [anon_sym_BANG_LBRACK] = ACTIONS(252), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_LBRACE2] = ACTIONS(228), - [anon_sym_DOLLAR] = ACTIONS(258), - [anon_sym_TODO] = ACTIONS(261), - [anon_sym_WIP] = ACTIONS(261), - [anon_sym_NOTE] = ACTIONS(264), - [anon_sym_INFO] = ACTIONS(264), - [anon_sym_XXX] = ACTIONS(264), - [sym_fixme] = ACTIONS(225), - [anon_sym_PIPE] = ACTIONS(225), - [anon_sym_BQUOTE] = ACTIONS(112), - [sym__whitespace1] = ACTIONS(267), - [sym__newline] = ACTIONS(270), - [aux_sym__text_token1] = ACTIONS(273), - }, - [29] = { - [sym__inline] = STATE(757), - [sym__element] = STATE(101), - [sym_emphasis] = STATE(173), - [sym_emphasis_begin] = STATE(87), - [sym_strong] = STATE(173), - [sym_strong_begin] = STATE(76), - [sym__hard_line_break] = STATE(173), - [sym_hard_line_break] = STATE(173), - [sym__smart_punctuation] = STATE(173), - [sym_autolink] = STATE(173), - [sym_highlighted] = STATE(173), - [sym_insert] = STATE(173), - [sym_delete] = STATE(173), - [sym_superscript] = STATE(173), - [sym_subscript] = STATE(173), - [sym_footnote_reference] = STATE(173), - [sym__image] = STATE(173), - [sym_full_reference_image] = STATE(173), - [sym_collapsed_reference_image] = STATE(173), - [sym_inline_image] = STATE(173), - [sym__image_description] = STATE(647), - [sym__link] = STATE(173), - [sym_full_reference_link] = STATE(173), - [sym_collapsed_reference_link] = STATE(173), - [sym_inline_link] = STATE(173), - [sym_link_text] = STATE(648), - [sym__comment_with_spaces] = STATE(173), - [sym_span] = STATE(173), - [sym_raw_inline] = STATE(173), - [sym_math] = STATE(173), - [sym_verbatim] = STATE(173), - [sym__todo_highlights] = STATE(173), - [sym_todo] = STATE(173), - [sym_note] = STATE(173), - [sym__symbol_fallback] = STATE(173), - [sym__verbatim_begin] = STATE(843), - [aux_sym__text] = STATE(155), - [aux_sym__inline_repeat1] = STATE(101), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACE_] = ACTIONS(342), - [anon_sym__] = ACTIONS(345), - [anon_sym_LBRACE_STAR] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(351), - [anon_sym_BSLASH] = ACTIONS(354), - [sym_quotation_marks] = ACTIONS(357), - [sym_ellipsis] = ACTIONS(357), - [sym_em_dash] = ACTIONS(357), - [sym_en_dash] = ACTIONS(360), - [sym_backslash_escape] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(363), - [anon_sym_LBRACE_EQ] = ACTIONS(366), - [anon_sym_LBRACE_PLUS] = ACTIONS(369), - [anon_sym_LBRACE_DASH] = ACTIONS(372), - [sym_symbol] = ACTIONS(357), - [anon_sym_LBRACE_CARET] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(375), - [anon_sym_LBRACE_TILDE] = ACTIONS(378), - [anon_sym_TILDE] = ACTIONS(378), - [anon_sym_LBRACK_CARET] = ACTIONS(381), - [anon_sym_RBRACK] = ACTIONS(49), - [anon_sym_BANG_LBRACK] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(387), - [anon_sym_LBRACE2] = ACTIONS(360), - [anon_sym_DOLLAR] = ACTIONS(390), - [anon_sym_TODO] = ACTIONS(393), - [anon_sym_WIP] = ACTIONS(393), - [anon_sym_NOTE] = ACTIONS(396), - [anon_sym_INFO] = ACTIONS(396), - [anon_sym_XXX] = ACTIONS(396), - [sym_fixme] = ACTIONS(357), - [anon_sym_PIPE] = ACTIONS(357), - [anon_sym_BQUOTE] = ACTIONS(112), - [sym__whitespace1] = ACTIONS(399), - [sym__newline] = ACTIONS(402), - [aux_sym__text_token1] = ACTIONS(405), - }, - [30] = { - [sym__inline] = STATE(847), - [sym__element] = STATE(98), - [sym_emphasis] = STATE(207), - [sym_emphasis_begin] = STATE(89), - [sym_strong] = STATE(207), - [sym_strong_begin] = STATE(72), - [sym__hard_line_break] = STATE(207), - [sym_hard_line_break] = STATE(207), - [sym__smart_punctuation] = STATE(207), - [sym_autolink] = STATE(207), - [sym_highlighted] = STATE(207), - [sym_insert] = STATE(207), - [sym_delete] = STATE(207), - [sym_superscript] = STATE(207), - [sym_subscript] = STATE(207), - [sym_footnote_reference] = STATE(207), - [sym__image] = STATE(207), - [sym_full_reference_image] = STATE(207), - [sym_collapsed_reference_image] = STATE(207), - [sym_inline_image] = STATE(207), - [sym__image_description] = STATE(666), - [sym__link] = STATE(207), - [sym_full_reference_link] = STATE(207), - [sym_collapsed_reference_link] = STATE(207), - [sym_inline_link] = STATE(207), - [sym_link_text] = STATE(667), - [sym__comment_with_spaces] = STATE(207), - [sym_span] = STATE(207), - [sym_raw_inline] = STATE(207), - [sym_math] = STATE(207), - [sym_verbatim] = STATE(207), - [sym__todo_highlights] = STATE(207), - [sym_todo] = STATE(207), - [sym_note] = STATE(207), - [sym__symbol_fallback] = STATE(207), - [sym__verbatim_begin] = STATE(852), - [aux_sym__text] = STATE(139), - [aux_sym__inline_repeat1] = STATE(98), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACE_] = ACTIONS(210), - [anon_sym__] = ACTIONS(213), - [anon_sym_LBRACE_STAR] = ACTIONS(216), - [anon_sym_STAR] = ACTIONS(219), - [anon_sym_BSLASH] = ACTIONS(222), - [sym_quotation_marks] = ACTIONS(225), - [sym_ellipsis] = ACTIONS(225), - [sym_em_dash] = ACTIONS(225), - [sym_en_dash] = ACTIONS(228), - [sym_backslash_escape] = ACTIONS(228), - [anon_sym_LT] = ACTIONS(231), - [anon_sym_LBRACE_EQ] = ACTIONS(234), - [anon_sym_LBRACE_PLUS] = ACTIONS(237), - [anon_sym_LBRACE_DASH] = ACTIONS(240), - [anon_sym_DASH_RBRACE] = ACTIONS(49), - [sym_symbol] = ACTIONS(225), - [anon_sym_LBRACE_CARET] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(243), - [anon_sym_LBRACE_TILDE] = ACTIONS(246), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_LBRACK_CARET] = ACTIONS(249), - [anon_sym_BANG_LBRACK] = ACTIONS(252), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_LBRACE2] = ACTIONS(228), - [anon_sym_DOLLAR] = ACTIONS(258), - [anon_sym_TODO] = ACTIONS(261), - [anon_sym_WIP] = ACTIONS(261), - [anon_sym_NOTE] = ACTIONS(264), - [anon_sym_INFO] = ACTIONS(264), - [anon_sym_XXX] = ACTIONS(264), - [sym_fixme] = ACTIONS(225), - [anon_sym_PIPE] = ACTIONS(225), - [anon_sym_BQUOTE] = ACTIONS(112), - [sym__whitespace1] = ACTIONS(267), - [sym__newline] = ACTIONS(270), - [aux_sym__text_token1] = ACTIONS(273), - }, - [31] = { - [sym__inline] = STATE(756), - [sym__element] = STATE(109), - [sym_emphasis] = STATE(221), - [sym_emphasis_begin] = STATE(82), - [sym_strong] = STATE(221), - [sym_strong_begin] = STATE(83), - [sym__hard_line_break] = STATE(221), - [sym_hard_line_break] = STATE(221), - [sym__smart_punctuation] = STATE(221), - [sym_autolink] = STATE(221), - [sym_highlighted] = STATE(221), - [sym_insert] = STATE(221), - [sym_delete] = STATE(221), - [sym_superscript] = STATE(221), - [sym_subscript] = STATE(221), - [sym_footnote_reference] = STATE(221), - [sym__image] = STATE(221), - [sym_full_reference_image] = STATE(221), - [sym_collapsed_reference_image] = STATE(221), - [sym_inline_image] = STATE(221), - [sym__image_description] = STATE(669), - [sym__link] = STATE(221), - [sym_full_reference_link] = STATE(221), - [sym_collapsed_reference_link] = STATE(221), - [sym_inline_link] = STATE(221), - [sym_link_text] = STATE(657), - [sym__comment_with_spaces] = STATE(221), - [sym_span] = STATE(221), - [sym_raw_inline] = STATE(221), - [sym_math] = STATE(221), - [sym_verbatim] = STATE(221), - [sym__todo_highlights] = STATE(221), - [sym_todo] = STATE(221), - [sym_note] = STATE(221), - [sym__symbol_fallback] = STATE(221), - [sym__verbatim_begin] = STATE(834), - [aux_sym__text] = STATE(134), - [aux_sym__inline_repeat1] = STATE(109), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACE_] = ACTIONS(408), - [anon_sym__] = ACTIONS(411), - [anon_sym_LBRACE_STAR] = ACTIONS(414), - [anon_sym_STAR] = ACTIONS(417), - [anon_sym_BSLASH] = ACTIONS(420), - [sym_quotation_marks] = ACTIONS(423), - [sym_ellipsis] = ACTIONS(423), - [sym_em_dash] = ACTIONS(423), - [sym_en_dash] = ACTIONS(426), - [sym_backslash_escape] = ACTIONS(426), - [anon_sym_LT] = ACTIONS(429), - [anon_sym_LBRACE_EQ] = ACTIONS(432), - [anon_sym_LBRACE_PLUS] = ACTIONS(435), - [anon_sym_LBRACE_DASH] = ACTIONS(438), - [sym_symbol] = ACTIONS(423), - [anon_sym_LBRACE_CARET] = ACTIONS(441), - [anon_sym_CARET] = ACTIONS(441), - [anon_sym_LBRACE_TILDE] = ACTIONS(444), - [anon_sym_TILDE] = ACTIONS(444), - [anon_sym_LBRACK_CARET] = ACTIONS(447), - [anon_sym_RBRACK] = ACTIONS(49), - [anon_sym_BANG_LBRACK] = ACTIONS(450), - [anon_sym_LBRACK] = ACTIONS(453), - [anon_sym_LBRACE2] = ACTIONS(426), - [anon_sym_DOLLAR] = ACTIONS(456), - [anon_sym_TODO] = ACTIONS(459), - [anon_sym_WIP] = ACTIONS(459), - [anon_sym_NOTE] = ACTIONS(462), - [anon_sym_INFO] = ACTIONS(462), - [anon_sym_XXX] = ACTIONS(462), - [sym_fixme] = ACTIONS(423), - [anon_sym_PIPE] = ACTIONS(423), - [anon_sym_BQUOTE] = ACTIONS(112), - [sym__whitespace1] = ACTIONS(465), - [sym__newline] = ACTIONS(468), - [aux_sym__text_token1] = ACTIONS(471), - }, - [32] = { - [sym__inline] = STATE(768), - [sym__element] = STATE(109), - [sym_emphasis] = STATE(221), - [sym_emphasis_begin] = STATE(82), - [sym_strong] = STATE(221), - [sym_strong_begin] = STATE(83), - [sym__hard_line_break] = STATE(221), - [sym_hard_line_break] = STATE(221), - [sym__smart_punctuation] = STATE(221), - [sym_autolink] = STATE(221), - [sym_highlighted] = STATE(221), - [sym_insert] = STATE(221), - [sym_delete] = STATE(221), - [sym_superscript] = STATE(221), - [sym_subscript] = STATE(221), - [sym_footnote_reference] = STATE(221), - [sym__image] = STATE(221), - [sym_full_reference_image] = STATE(221), - [sym_collapsed_reference_image] = STATE(221), - [sym_inline_image] = STATE(221), - [sym__image_description] = STATE(669), - [sym__link] = STATE(221), - [sym_full_reference_link] = STATE(221), - [sym_collapsed_reference_link] = STATE(221), - [sym_inline_link] = STATE(221), - [sym_link_text] = STATE(657), - [sym__comment_with_spaces] = STATE(221), - [sym_span] = STATE(221), - [sym_raw_inline] = STATE(221), - [sym_math] = STATE(221), - [sym_verbatim] = STATE(221), - [sym__todo_highlights] = STATE(221), - [sym_todo] = STATE(221), - [sym_note] = STATE(221), - [sym__symbol_fallback] = STATE(221), - [sym__verbatim_begin] = STATE(834), - [aux_sym__text] = STATE(134), - [aux_sym__inline_repeat1] = STATE(109), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACE_] = ACTIONS(408), - [anon_sym__] = ACTIONS(477), - [aux_sym_emphasis_end_token1] = ACTIONS(49), - [anon_sym_LBRACE_STAR] = ACTIONS(414), - [anon_sym_STAR] = ACTIONS(417), - [anon_sym_BSLASH] = ACTIONS(420), - [sym_quotation_marks] = ACTIONS(423), - [sym_ellipsis] = ACTIONS(423), - [sym_em_dash] = ACTIONS(423), - [sym_en_dash] = ACTIONS(426), - [sym_backslash_escape] = ACTIONS(426), - [anon_sym_LT] = ACTIONS(429), - [anon_sym_LBRACE_EQ] = ACTIONS(432), - [anon_sym_LBRACE_PLUS] = ACTIONS(435), - [anon_sym_LBRACE_DASH] = ACTIONS(438), - [sym_symbol] = ACTIONS(423), - [anon_sym_LBRACE_CARET] = ACTIONS(441), - [anon_sym_CARET] = ACTIONS(441), - [anon_sym_LBRACE_TILDE] = ACTIONS(444), - [anon_sym_TILDE] = ACTIONS(444), - [anon_sym_LBRACK_CARET] = ACTIONS(447), - [anon_sym_BANG_LBRACK] = ACTIONS(450), - [anon_sym_LBRACK] = ACTIONS(453), - [anon_sym_LBRACE2] = ACTIONS(426), - [anon_sym_DOLLAR] = ACTIONS(456), - [anon_sym_TODO] = ACTIONS(459), - [anon_sym_WIP] = ACTIONS(459), - [anon_sym_NOTE] = ACTIONS(462), - [anon_sym_INFO] = ACTIONS(462), - [anon_sym_XXX] = ACTIONS(462), - [sym_fixme] = ACTIONS(423), - [anon_sym_PIPE] = ACTIONS(423), - [anon_sym_BQUOTE] = ACTIONS(112), - [sym__whitespace1] = ACTIONS(480), - [sym__newline] = ACTIONS(468), - [aux_sym__text_token1] = ACTIONS(471), + [aux_sym__text] = STATE(132), + [aux_sym__inline_repeat1] = STATE(119), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(279), + [anon_sym__] = ACTIONS(507), + [aux_sym_emphasis_end_token1] = ACTIONS(93), + [anon_sym_LBRACE_STAR] = ACTIONS(285), + [anon_sym_STAR] = ACTIONS(288), + [anon_sym_BSLASH] = ACTIONS(291), + [sym_quotation_marks] = ACTIONS(294), + [sym_ellipsis] = ACTIONS(294), + [sym_em_dash] = ACTIONS(294), + [sym_en_dash] = ACTIONS(297), + [sym_backslash_escape] = ACTIONS(297), + [anon_sym_LT] = ACTIONS(300), + [anon_sym_LBRACE_EQ] = ACTIONS(303), + [anon_sym_LBRACE_PLUS] = ACTIONS(306), + [anon_sym_LBRACE_DASH] = ACTIONS(309), + [sym_symbol] = ACTIONS(294), + [anon_sym_LBRACE_CARET] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(312), + [anon_sym_LBRACE_TILDE] = ACTIONS(315), + [anon_sym_TILDE] = ACTIONS(315), + [anon_sym_LBRACK_CARET] = ACTIONS(318), + [anon_sym_BANG_LBRACK] = ACTIONS(321), + [anon_sym_LBRACK] = ACTIONS(324), + [anon_sym_LBRACE2] = ACTIONS(297), + [anon_sym_DOLLAR] = ACTIONS(327), + [anon_sym_TODO] = ACTIONS(330), + [anon_sym_WIP] = ACTIONS(330), + [anon_sym_NOTE] = ACTIONS(333), + [anon_sym_INFO] = ACTIONS(333), + [anon_sym_XXX] = ACTIONS(333), + [sym_fixme] = ACTIONS(294), + [anon_sym_PIPE] = ACTIONS(294), + [sym__whitespace1] = ACTIONS(510), + [sym__newline] = ACTIONS(339), + [aux_sym__text_token1] = ACTIONS(342), + [sym__verbatim_begin] = ACTIONS(345), }, [33] = { - [sym__inline] = STATE(769), - [sym__element] = STATE(101), - [sym_emphasis] = STATE(173), - [sym_emphasis_begin] = STATE(87), - [sym_strong] = STATE(173), - [sym_strong_begin] = STATE(76), - [sym__hard_line_break] = STATE(173), - [sym_hard_line_break] = STATE(173), - [sym__smart_punctuation] = STATE(173), - [sym_autolink] = STATE(173), - [sym_highlighted] = STATE(173), - [sym_insert] = STATE(173), - [sym_delete] = STATE(173), - [sym_superscript] = STATE(173), - [sym_subscript] = STATE(173), - [sym_footnote_reference] = STATE(173), - [sym__image] = STATE(173), - [sym_full_reference_image] = STATE(173), - [sym_collapsed_reference_image] = STATE(173), - [sym_inline_image] = STATE(173), - [sym__image_description] = STATE(647), - [sym__link] = STATE(173), - [sym_full_reference_link] = STATE(173), - [sym_collapsed_reference_link] = STATE(173), - [sym_inline_link] = STATE(173), - [sym_link_text] = STATE(648), - [sym__comment_with_spaces] = STATE(173), - [sym_span] = STATE(173), - [sym_raw_inline] = STATE(173), - [sym_math] = STATE(173), - [sym_verbatim] = STATE(173), - [sym__todo_highlights] = STATE(173), - [sym_todo] = STATE(173), - [sym_note] = STATE(173), - [sym__symbol_fallback] = STATE(173), - [sym__verbatim_begin] = STATE(843), - [aux_sym__text] = STATE(155), - [aux_sym__inline_repeat1] = STATE(101), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACE_] = ACTIONS(342), - [anon_sym__] = ACTIONS(483), - [aux_sym_emphasis_end_token1] = ACTIONS(49), - [anon_sym_LBRACE_STAR] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(351), - [anon_sym_BSLASH] = ACTIONS(354), - [sym_quotation_marks] = ACTIONS(357), - [sym_ellipsis] = ACTIONS(357), - [sym_em_dash] = ACTIONS(357), - [sym_en_dash] = ACTIONS(360), - [sym_backslash_escape] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(363), - [anon_sym_LBRACE_EQ] = ACTIONS(366), - [anon_sym_LBRACE_PLUS] = ACTIONS(369), - [anon_sym_LBRACE_DASH] = ACTIONS(372), - [sym_symbol] = ACTIONS(357), - [anon_sym_LBRACE_CARET] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(375), - [anon_sym_LBRACE_TILDE] = ACTIONS(378), - [anon_sym_TILDE] = ACTIONS(378), - [anon_sym_LBRACK_CARET] = ACTIONS(381), - [anon_sym_BANG_LBRACK] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(387), - [anon_sym_LBRACE2] = ACTIONS(360), - [anon_sym_DOLLAR] = ACTIONS(390), - [anon_sym_TODO] = ACTIONS(393), - [anon_sym_WIP] = ACTIONS(393), - [anon_sym_NOTE] = ACTIONS(396), - [anon_sym_INFO] = ACTIONS(396), - [anon_sym_XXX] = ACTIONS(396), - [sym_fixme] = ACTIONS(357), - [anon_sym_PIPE] = ACTIONS(357), - [anon_sym_BQUOTE] = ACTIONS(112), - [sym__whitespace1] = ACTIONS(486), - [sym__newline] = ACTIONS(402), - [aux_sym__text_token1] = ACTIONS(405), + [sym__inline] = STATE(745), + [sym__element] = STATE(77), + [sym_emphasis] = STATE(174), + [sym_emphasis_begin] = STATE(86), + [sym_strong] = STATE(174), + [sym_strong_begin] = STATE(89), + [sym__hard_line_break] = STATE(174), + [sym_hard_line_break] = STATE(174), + [sym__smart_punctuation] = STATE(174), + [sym_autolink] = STATE(174), + [sym_highlighted] = STATE(174), + [sym_insert] = STATE(174), + [sym_delete] = STATE(174), + [sym_superscript] = STATE(174), + [sym_subscript] = STATE(174), + [sym_footnote_reference] = STATE(174), + [sym__image] = STATE(174), + [sym_full_reference_image] = STATE(174), + [sym_collapsed_reference_image] = STATE(174), + [sym_inline_image] = STATE(174), + [sym__image_description] = STATE(630), + [sym__link] = STATE(174), + [sym_full_reference_link] = STATE(174), + [sym_collapsed_reference_link] = STATE(174), + [sym_inline_link] = STATE(174), + [sym_link_text] = STATE(631), + [sym__comment_with_spaces] = STATE(174), + [sym_span] = STATE(174), + [sym_raw_inline] = STATE(174), + [sym_math] = STATE(174), + [sym_verbatim] = STATE(174), + [sym__todo_highlights] = STATE(174), + [sym_todo] = STATE(174), + [sym_note] = STATE(174), + [sym__symbol_fallback] = STATE(174), + [aux_sym__text] = STATE(148), + [aux_sym__inline_repeat1] = STATE(77), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(348), + [anon_sym__] = ACTIONS(513), + [aux_sym_emphasis_end_token1] = ACTIONS(93), + [anon_sym_LBRACE_STAR] = ACTIONS(354), + [anon_sym_STAR] = ACTIONS(357), + [anon_sym_BSLASH] = ACTIONS(360), + [sym_quotation_marks] = ACTIONS(363), + [sym_ellipsis] = ACTIONS(363), + [sym_em_dash] = ACTIONS(363), + [sym_en_dash] = ACTIONS(366), + [sym_backslash_escape] = ACTIONS(366), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_LBRACE_EQ] = ACTIONS(372), + [anon_sym_LBRACE_PLUS] = ACTIONS(375), + [anon_sym_LBRACE_DASH] = ACTIONS(378), + [sym_symbol] = ACTIONS(363), + [anon_sym_LBRACE_CARET] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(381), + [anon_sym_LBRACE_TILDE] = ACTIONS(384), + [anon_sym_TILDE] = ACTIONS(384), + [anon_sym_LBRACK_CARET] = ACTIONS(387), + [anon_sym_BANG_LBRACK] = ACTIONS(390), + [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_LBRACE2] = ACTIONS(366), + [anon_sym_DOLLAR] = ACTIONS(396), + [anon_sym_TODO] = ACTIONS(399), + [anon_sym_WIP] = ACTIONS(399), + [anon_sym_NOTE] = ACTIONS(402), + [anon_sym_INFO] = ACTIONS(402), + [anon_sym_XXX] = ACTIONS(402), + [sym_fixme] = ACTIONS(363), + [anon_sym_PIPE] = ACTIONS(363), + [sym__whitespace1] = ACTIONS(516), + [sym__newline] = ACTIONS(408), + [aux_sym__text_token1] = ACTIONS(411), + [sym__verbatim_begin] = ACTIONS(414), }, [34] = { - [sym__inline] = STATE(770), - [sym__element] = STATE(98), - [sym_emphasis] = STATE(207), - [sym_emphasis_begin] = STATE(89), - [sym_strong] = STATE(207), - [sym_strong_begin] = STATE(72), - [sym__hard_line_break] = STATE(207), - [sym_hard_line_break] = STATE(207), - [sym__smart_punctuation] = STATE(207), - [sym_autolink] = STATE(207), - [sym_highlighted] = STATE(207), - [sym_insert] = STATE(207), - [sym_delete] = STATE(207), - [sym_superscript] = STATE(207), - [sym_subscript] = STATE(207), - [sym_footnote_reference] = STATE(207), - [sym__image] = STATE(207), - [sym_full_reference_image] = STATE(207), - [sym_collapsed_reference_image] = STATE(207), - [sym_inline_image] = STATE(207), - [sym__image_description] = STATE(666), - [sym__link] = STATE(207), - [sym_full_reference_link] = STATE(207), - [sym_collapsed_reference_link] = STATE(207), - [sym_inline_link] = STATE(207), - [sym_link_text] = STATE(667), - [sym__comment_with_spaces] = STATE(207), - [sym_span] = STATE(207), - [sym_raw_inline] = STATE(207), - [sym_math] = STATE(207), - [sym_verbatim] = STATE(207), - [sym__todo_highlights] = STATE(207), - [sym_todo] = STATE(207), - [sym_note] = STATE(207), - [sym__symbol_fallback] = STATE(207), - [sym__verbatim_begin] = STATE(852), - [aux_sym__text] = STATE(139), - [aux_sym__inline_repeat1] = STATE(98), - [anon_sym_LBRACE] = ACTIONS(51), + [sym__inline] = STATE(746), + [sym__element] = STATE(116), + [sym_emphasis] = STATE(183), + [sym_emphasis_begin] = STATE(91), + [sym_strong] = STATE(183), + [sym_strong_begin] = STATE(92), + [sym__hard_line_break] = STATE(183), + [sym_hard_line_break] = STATE(183), + [sym__smart_punctuation] = STATE(183), + [sym_autolink] = STATE(183), + [sym_highlighted] = STATE(183), + [sym_insert] = STATE(183), + [sym_delete] = STATE(183), + [sym_superscript] = STATE(183), + [sym_subscript] = STATE(183), + [sym_footnote_reference] = STATE(183), + [sym__image] = STATE(183), + [sym_full_reference_image] = STATE(183), + [sym_collapsed_reference_image] = STATE(183), + [sym_inline_image] = STATE(183), + [sym__image_description] = STATE(645), + [sym__link] = STATE(183), + [sym_full_reference_link] = STATE(183), + [sym_collapsed_reference_link] = STATE(183), + [sym_inline_link] = STATE(183), + [sym_link_text] = STATE(646), + [sym__comment_with_spaces] = STATE(183), + [sym_span] = STATE(183), + [sym_raw_inline] = STATE(183), + [sym_math] = STATE(183), + [sym_verbatim] = STATE(183), + [sym__todo_highlights] = STATE(183), + [sym_todo] = STATE(183), + [sym_note] = STATE(183), + [sym__symbol_fallback] = STATE(183), + [aux_sym__text] = STATE(149), + [aux_sym__inline_repeat1] = STATE(116), + [anon_sym_LBRACE] = ACTIONS(49), [anon_sym_LBRACE_] = ACTIONS(210), - [anon_sym__] = ACTIONS(489), - [aux_sym_emphasis_end_token1] = ACTIONS(49), + [anon_sym__] = ACTIONS(519), + [aux_sym_emphasis_end_token1] = ACTIONS(93), [anon_sym_LBRACE_STAR] = ACTIONS(216), [anon_sym_STAR] = ACTIONS(219), [anon_sym_BSLASH] = ACTIONS(222), @@ -10880,18 +10672,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_XXX] = ACTIONS(264), [sym_fixme] = ACTIONS(225), [anon_sym_PIPE] = ACTIONS(225), - [anon_sym_BQUOTE] = ACTIONS(112), - [sym__whitespace1] = ACTIONS(492), + [sym__whitespace1] = ACTIONS(522), [sym__newline] = ACTIONS(270), [aux_sym__text_token1] = ACTIONS(273), + [sym__verbatim_begin] = ACTIONS(276), }, [35] = { - [sym__inline] = STATE(735), - [sym__element] = STATE(96), + [sym__inline] = STATE(706), + [sym__element] = STATE(85), + [sym_emphasis] = STATE(175), + [sym_emphasis_begin] = STATE(94), + [sym_strong] = STATE(175), + [sym_strong_begin] = STATE(95), + [sym__hard_line_break] = STATE(175), + [sym_hard_line_break] = STATE(175), + [sym__smart_punctuation] = STATE(175), + [sym_autolink] = STATE(175), + [sym_highlighted] = STATE(175), + [sym_insert] = STATE(175), + [sym_delete] = STATE(175), + [sym_superscript] = STATE(175), + [sym_subscript] = STATE(175), + [sym_footnote_reference] = STATE(175), + [sym__image] = STATE(175), + [sym_full_reference_image] = STATE(175), + [sym_collapsed_reference_image] = STATE(175), + [sym_inline_image] = STATE(175), + [sym__image_description] = STATE(652), + [sym__link] = STATE(175), + [sym_full_reference_link] = STATE(175), + [sym_collapsed_reference_link] = STATE(175), + [sym_inline_link] = STATE(175), + [sym_link_text] = STATE(649), + [sym__comment_with_spaces] = STATE(175), + [sym_span] = STATE(175), + [sym_raw_inline] = STATE(175), + [sym_math] = STATE(175), + [sym_verbatim] = STATE(175), + [sym__todo_highlights] = STATE(175), + [sym_todo] = STATE(175), + [sym_note] = STATE(175), + [sym__symbol_fallback] = STATE(175), + [aux_sym__text] = STATE(156), + [aux_sym__inline_repeat1] = STATE(85), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(417), + [anon_sym__] = ACTIONS(525), + [aux_sym_emphasis_end_token1] = ACTIONS(93), + [anon_sym_LBRACE_STAR] = ACTIONS(423), + [anon_sym_STAR] = ACTIONS(426), + [anon_sym_BSLASH] = ACTIONS(429), + [sym_quotation_marks] = ACTIONS(432), + [sym_ellipsis] = ACTIONS(432), + [sym_em_dash] = ACTIONS(432), + [sym_en_dash] = ACTIONS(435), + [sym_backslash_escape] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(438), + [anon_sym_LBRACE_EQ] = ACTIONS(441), + [anon_sym_LBRACE_PLUS] = ACTIONS(444), + [anon_sym_LBRACE_DASH] = ACTIONS(447), + [sym_symbol] = ACTIONS(432), + [anon_sym_LBRACE_CARET] = ACTIONS(450), + [anon_sym_CARET] = ACTIONS(450), + [anon_sym_LBRACE_TILDE] = ACTIONS(453), + [anon_sym_TILDE] = ACTIONS(453), + [anon_sym_LBRACK_CARET] = ACTIONS(456), + [anon_sym_BANG_LBRACK] = ACTIONS(459), + [anon_sym_LBRACK] = ACTIONS(462), + [anon_sym_LBRACE2] = ACTIONS(435), + [anon_sym_DOLLAR] = ACTIONS(465), + [anon_sym_TODO] = ACTIONS(468), + [anon_sym_WIP] = ACTIONS(468), + [anon_sym_NOTE] = ACTIONS(471), + [anon_sym_INFO] = ACTIONS(471), + [anon_sym_XXX] = ACTIONS(471), + [sym_fixme] = ACTIONS(432), + [anon_sym_PIPE] = ACTIONS(432), + [sym__whitespace1] = ACTIONS(528), + [sym__newline] = ACTIONS(477), + [aux_sym__text_token1] = ACTIONS(480), + [sym__verbatim_begin] = ACTIONS(483), + }, + [36] = { + [sym__inline] = STATE(708), + [sym__element] = STATE(120), [sym_emphasis] = STATE(182), - [sym_emphasis_begin] = STATE(103), + [sym_emphasis_begin] = STATE(97), [sym_strong] = STATE(182), - [sym_strong_begin] = STATE(104), + [sym_strong_begin] = STATE(99), [sym__hard_line_break] = STATE(182), [sym_hard_line_break] = STATE(182), [sym__smart_punctuation] = STATE(182), @@ -10906,12 +10774,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_full_reference_image] = STATE(182), [sym_collapsed_reference_image] = STATE(182), [sym_inline_image] = STATE(182), - [sym__image_description] = STATE(672), + [sym__image_description] = STATE(628), [sym__link] = STATE(182), [sym_full_reference_link] = STATE(182), [sym_collapsed_reference_link] = STATE(182), [sym_inline_link] = STATE(182), - [sym_link_text] = STATE(671), + [sym_link_text] = STATE(627), [sym__comment_with_spaces] = STATE(182), [sym_span] = STATE(182), [sym_raw_inline] = STATE(182), @@ -10921,15 +10789,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(182), [sym_note] = STATE(182), [sym__symbol_fallback] = STATE(182), - [sym__verbatim_begin] = STATE(870), - [aux_sym__text] = STATE(150), - [aux_sym__inline_repeat1] = STATE(96), - [anon_sym_LBRACE] = ACTIONS(51), + [aux_sym__text] = STATE(136), + [aux_sym__inline_repeat1] = STATE(120), + [anon_sym_LBRACE] = ACTIONS(49), [anon_sym_LBRACE_] = ACTIONS(141), - [anon_sym__] = ACTIONS(495), - [aux_sym_emphasis_end_token1] = ACTIONS(49), + [anon_sym__] = ACTIONS(486), [anon_sym_LBRACE_STAR] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(150), + [anon_sym_STAR] = ACTIONS(531), + [aux_sym_strong_end_token1] = ACTIONS(93), [anon_sym_BSLASH] = ACTIONS(153), [sym_quotation_marks] = ACTIONS(156), [sym_ellipsis] = ACTIONS(156), @@ -10945,204 +10812,506 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(174), [anon_sym_LBRACE_TILDE] = ACTIONS(177), [anon_sym_TILDE] = ACTIONS(177), - [anon_sym_LBRACK_CARET] = ACTIONS(183), - [anon_sym_BANG_LBRACK] = ACTIONS(186), - [anon_sym_LBRACK] = ACTIONS(189), + [anon_sym_LBRACK_CARET] = ACTIONS(180), + [anon_sym_BANG_LBRACK] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(186), [anon_sym_LBRACE2] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(192), - [anon_sym_TODO] = ACTIONS(195), - [anon_sym_WIP] = ACTIONS(195), - [anon_sym_NOTE] = ACTIONS(198), - [anon_sym_INFO] = ACTIONS(198), - [anon_sym_XXX] = ACTIONS(198), + [anon_sym_DOLLAR] = ACTIONS(189), + [anon_sym_TODO] = ACTIONS(192), + [anon_sym_WIP] = ACTIONS(192), + [anon_sym_NOTE] = ACTIONS(195), + [anon_sym_INFO] = ACTIONS(195), + [anon_sym_XXX] = ACTIONS(195), [sym_fixme] = ACTIONS(156), [anon_sym_PIPE] = ACTIONS(156), - [anon_sym_BQUOTE] = ACTIONS(112), - [sym__whitespace1] = ACTIONS(498), - [sym__newline] = ACTIONS(204), - [aux_sym__text_token1] = ACTIONS(207), - }, - [36] = { - [sym__inline] = STATE(889), - [sym__element] = STATE(112), - [sym_emphasis] = STATE(206), - [sym_emphasis_begin] = STATE(108), - [sym_strong] = STATE(206), - [sym_strong_begin] = STATE(110), - [sym__hard_line_break] = STATE(206), - [sym_hard_line_break] = STATE(206), - [sym__smart_punctuation] = STATE(206), - [sym_autolink] = STATE(206), - [sym_highlighted] = STATE(206), - [sym_insert] = STATE(206), - [sym_delete] = STATE(206), - [sym_superscript] = STATE(206), - [sym_subscript] = STATE(206), - [sym_footnote_reference] = STATE(206), - [sym__image] = STATE(206), - [sym_full_reference_image] = STATE(206), - [sym_collapsed_reference_image] = STATE(206), - [sym_inline_image] = STATE(206), - [sym__image_description] = STATE(664), - [sym__link] = STATE(206), - [sym_full_reference_link] = STATE(206), - [sym_collapsed_reference_link] = STATE(206), - [sym_inline_link] = STATE(206), - [sym_link_text] = STATE(663), - [sym__comment_with_spaces] = STATE(206), - [sym_span] = STATE(206), - [sym_raw_inline] = STATE(206), - [sym_math] = STATE(206), - [sym_verbatim] = STATE(206), - [sym__todo_highlights] = STATE(206), - [sym_todo] = STATE(206), - [sym_note] = STATE(206), - [sym__symbol_fallback] = STATE(206), - [sym__verbatim_begin] = STATE(879), - [aux_sym__text] = STATE(126), - [aux_sym__inline_repeat1] = STATE(112), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACE_] = ACTIONS(53), - [anon_sym__] = ACTIONS(124), - [aux_sym_emphasis_end_token1] = ACTIONS(49), - [anon_sym_LBRACE_STAR] = ACTIONS(59), - [anon_sym_STAR] = ACTIONS(62), - [anon_sym_BSLASH] = ACTIONS(65), - [sym_quotation_marks] = ACTIONS(68), - [sym_ellipsis] = ACTIONS(68), - [sym_em_dash] = ACTIONS(68), - [sym_en_dash] = ACTIONS(71), - [sym_backslash_escape] = ACTIONS(71), - [anon_sym_LT] = ACTIONS(74), - [anon_sym_LBRACE_EQ] = ACTIONS(77), - [anon_sym_LBRACE_PLUS] = ACTIONS(80), - [anon_sym_LBRACE_DASH] = ACTIONS(83), - [sym_symbol] = ACTIONS(68), - [anon_sym_LBRACE_CARET] = ACTIONS(86), - [anon_sym_CARET] = ACTIONS(86), - [anon_sym_LBRACE_TILDE] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_LBRACK_CARET] = ACTIONS(92), - [anon_sym_BANG_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK] = ACTIONS(100), - [anon_sym_LBRACE2] = ACTIONS(71), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_TODO] = ACTIONS(106), - [anon_sym_WIP] = ACTIONS(106), - [anon_sym_NOTE] = ACTIONS(109), - [anon_sym_INFO] = ACTIONS(109), - [anon_sym_XXX] = ACTIONS(109), - [sym_fixme] = ACTIONS(68), - [anon_sym_PIPE] = ACTIONS(68), - [anon_sym_BQUOTE] = ACTIONS(112), - [sym__whitespace1] = ACTIONS(127), - [sym__newline] = ACTIONS(118), - [aux_sym__text_token1] = ACTIONS(121), + [sym__whitespace1] = ACTIONS(198), + [sym__newline] = ACTIONS(201), + [aux_sym__text_token1] = ACTIONS(204), + [sym__verbatim_begin] = ACTIONS(207), }, [37] = { - [sym__inline] = STATE(871), - [sym__element] = STATE(112), - [sym_emphasis] = STATE(206), - [sym_emphasis_begin] = STATE(108), - [sym_strong] = STATE(206), - [sym_strong_begin] = STATE(110), - [sym__hard_line_break] = STATE(206), - [sym_hard_line_break] = STATE(206), - [sym__smart_punctuation] = STATE(206), - [sym_autolink] = STATE(206), - [sym_highlighted] = STATE(206), - [sym_insert] = STATE(206), - [sym_delete] = STATE(206), - [sym_superscript] = STATE(206), - [sym_subscript] = STATE(206), - [sym_footnote_reference] = STATE(206), - [sym__image] = STATE(206), - [sym_full_reference_image] = STATE(206), - [sym_collapsed_reference_image] = STATE(206), - [sym_inline_image] = STATE(206), - [sym__image_description] = STATE(664), - [sym__link] = STATE(206), - [sym_full_reference_link] = STATE(206), - [sym_collapsed_reference_link] = STATE(206), - [sym_inline_link] = STATE(206), - [sym_link_text] = STATE(663), - [sym__comment_with_spaces] = STATE(206), - [sym_span] = STATE(206), - [sym_raw_inline] = STATE(206), - [sym_math] = STATE(206), - [sym_verbatim] = STATE(206), - [sym__todo_highlights] = STATE(206), - [sym_todo] = STATE(206), - [sym_note] = STATE(206), - [sym__symbol_fallback] = STATE(206), - [sym__verbatim_begin] = STATE(879), - [aux_sym__text] = STATE(126), - [aux_sym__inline_repeat1] = STATE(112), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACE_] = ACTIONS(53), - [anon_sym__] = ACTIONS(56), - [anon_sym_LBRACE_STAR] = ACTIONS(59), - [anon_sym_STAR] = ACTIONS(62), - [anon_sym_BSLASH] = ACTIONS(65), - [sym_quotation_marks] = ACTIONS(68), - [sym_ellipsis] = ACTIONS(68), - [sym_em_dash] = ACTIONS(68), - [sym_en_dash] = ACTIONS(71), - [sym_backslash_escape] = ACTIONS(71), - [anon_sym_LT] = ACTIONS(74), - [anon_sym_LBRACE_EQ] = ACTIONS(77), - [anon_sym_LBRACE_PLUS] = ACTIONS(80), - [anon_sym_LBRACE_DASH] = ACTIONS(83), - [sym_symbol] = ACTIONS(68), - [anon_sym_LBRACE_CARET] = ACTIONS(86), - [anon_sym_CARET] = ACTIONS(86), - [anon_sym_LBRACE_TILDE] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(130), - [anon_sym_TILDE_RBRACE] = ACTIONS(49), - [anon_sym_LBRACK_CARET] = ACTIONS(92), - [anon_sym_BANG_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK] = ACTIONS(100), - [anon_sym_LBRACE2] = ACTIONS(71), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_TODO] = ACTIONS(106), - [anon_sym_WIP] = ACTIONS(106), - [anon_sym_NOTE] = ACTIONS(109), - [anon_sym_INFO] = ACTIONS(109), - [anon_sym_XXX] = ACTIONS(109), - [sym_fixme] = ACTIONS(68), - [anon_sym_PIPE] = ACTIONS(68), - [anon_sym_BQUOTE] = ACTIONS(112), - [sym__whitespace1] = ACTIONS(115), - [sym__newline] = ACTIONS(118), - [aux_sym__text_token1] = ACTIONS(121), - }, - [38] = { - [sym__inline] = STATE(737), - [sym__element] = STATE(96), - [sym_emphasis] = STATE(182), - [sym_emphasis_begin] = STATE(103), - [sym_strong] = STATE(182), - [sym_strong_begin] = STATE(104), - [sym__hard_line_break] = STATE(182), - [sym_hard_line_break] = STATE(182), - [sym__smart_punctuation] = STATE(182), - [sym_autolink] = STATE(182), - [sym_highlighted] = STATE(182), - [sym_insert] = STATE(182), - [sym_delete] = STATE(182), - [sym_superscript] = STATE(182), - [sym_subscript] = STATE(182), - [sym_footnote_reference] = STATE(182), - [sym__image] = STATE(182), - [sym_full_reference_image] = STATE(182), - [sym_collapsed_reference_image] = STATE(182), - [sym_inline_image] = STATE(182), - [sym__image_description] = STATE(672), - [sym__link] = STATE(182), + [sym__inline] = STATE(861), + [sym__element] = STATE(119), + [sym_emphasis] = STATE(197), + [sym_emphasis_begin] = STATE(81), + [sym_strong] = STATE(197), + [sym_strong_begin] = STATE(82), + [sym__hard_line_break] = STATE(197), + [sym_hard_line_break] = STATE(197), + [sym__smart_punctuation] = STATE(197), + [sym_autolink] = STATE(197), + [sym_highlighted] = STATE(197), + [sym_insert] = STATE(197), + [sym_delete] = STATE(197), + [sym_superscript] = STATE(197), + [sym_subscript] = STATE(197), + [sym_footnote_reference] = STATE(197), + [sym__image] = STATE(197), + [sym_full_reference_image] = STATE(197), + [sym_collapsed_reference_image] = STATE(197), + [sym_inline_image] = STATE(197), + [sym__image_description] = STATE(654), + [sym__link] = STATE(197), + [sym_full_reference_link] = STATE(197), + [sym_collapsed_reference_link] = STATE(197), + [sym_inline_link] = STATE(197), + [sym_link_text] = STATE(651), + [sym__comment_with_spaces] = STATE(197), + [sym_span] = STATE(197), + [sym_raw_inline] = STATE(197), + [sym_math] = STATE(197), + [sym_verbatim] = STATE(197), + [sym__todo_highlights] = STATE(197), + [sym_todo] = STATE(197), + [sym_note] = STATE(197), + [sym__symbol_fallback] = STATE(197), + [aux_sym__text] = STATE(132), + [aux_sym__inline_repeat1] = STATE(119), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(279), + [anon_sym__] = ACTIONS(282), + [anon_sym_LBRACE_STAR] = ACTIONS(285), + [anon_sym_STAR] = ACTIONS(288), + [anon_sym_BSLASH] = ACTIONS(291), + [sym_quotation_marks] = ACTIONS(294), + [sym_ellipsis] = ACTIONS(294), + [sym_em_dash] = ACTIONS(294), + [sym_en_dash] = ACTIONS(297), + [sym_backslash_escape] = ACTIONS(297), + [anon_sym_LT] = ACTIONS(300), + [anon_sym_LBRACE_EQ] = ACTIONS(303), + [anon_sym_LBRACE_PLUS] = ACTIONS(306), + [anon_sym_LBRACE_DASH] = ACTIONS(309), + [sym_symbol] = ACTIONS(294), + [anon_sym_LBRACE_CARET] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(312), + [anon_sym_LBRACE_TILDE] = ACTIONS(315), + [anon_sym_TILDE] = ACTIONS(534), + [anon_sym_TILDE_RBRACE] = ACTIONS(93), + [anon_sym_LBRACK_CARET] = ACTIONS(318), + [anon_sym_BANG_LBRACK] = ACTIONS(321), + [anon_sym_LBRACK] = ACTIONS(324), + [anon_sym_LBRACE2] = ACTIONS(297), + [anon_sym_DOLLAR] = ACTIONS(327), + [anon_sym_TODO] = ACTIONS(330), + [anon_sym_WIP] = ACTIONS(330), + [anon_sym_NOTE] = ACTIONS(333), + [anon_sym_INFO] = ACTIONS(333), + [anon_sym_XXX] = ACTIONS(333), + [sym_fixme] = ACTIONS(294), + [anon_sym_PIPE] = ACTIONS(294), + [sym__whitespace1] = ACTIONS(336), + [sym__newline] = ACTIONS(339), + [aux_sym__text_token1] = ACTIONS(342), + [sym__verbatim_begin] = ACTIONS(345), + }, + [38] = { + [sym__inline] = STATE(850), + [sym__element] = STATE(103), + [sym_emphasis] = STATE(200), + [sym_emphasis_begin] = STATE(101), + [sym_strong] = STATE(200), + [sym_strong_begin] = STATE(104), + [sym__hard_line_break] = STATE(200), + [sym_hard_line_break] = STATE(200), + [sym__smart_punctuation] = STATE(200), + [sym_autolink] = STATE(200), + [sym_highlighted] = STATE(200), + [sym_insert] = STATE(200), + [sym_delete] = STATE(200), + [sym_superscript] = STATE(200), + [sym_subscript] = STATE(200), + [sym_footnote_reference] = STATE(200), + [sym__image] = STATE(200), + [sym_full_reference_image] = STATE(200), + [sym_collapsed_reference_image] = STATE(200), + [sym_inline_image] = STATE(200), + [sym__image_description] = STATE(642), + [sym__link] = STATE(200), + [sym_full_reference_link] = STATE(200), + [sym_collapsed_reference_link] = STATE(200), + [sym_inline_link] = STATE(200), + [sym_link_text] = STATE(643), + [sym__comment_with_spaces] = STATE(200), + [sym_span] = STATE(200), + [sym_raw_inline] = STATE(200), + [sym_math] = STATE(200), + [sym_verbatim] = STATE(200), + [sym__todo_highlights] = STATE(200), + [sym_todo] = STATE(200), + [sym_note] = STATE(200), + [sym__symbol_fallback] = STATE(200), + [aux_sym__text] = STATE(138), + [aux_sym__inline_repeat1] = STATE(103), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(51), + [anon_sym__] = ACTIONS(54), + [anon_sym_LBRACE_STAR] = ACTIONS(57), + [anon_sym_STAR] = ACTIONS(60), + [anon_sym_BSLASH] = ACTIONS(63), + [sym_quotation_marks] = ACTIONS(66), + [sym_ellipsis] = ACTIONS(66), + [sym_em_dash] = ACTIONS(66), + [sym_en_dash] = ACTIONS(69), + [sym_backslash_escape] = ACTIONS(69), + [anon_sym_LT] = ACTIONS(72), + [anon_sym_LBRACE_EQ] = ACTIONS(75), + [anon_sym_LBRACE_PLUS] = ACTIONS(78), + [anon_sym_LBRACE_DASH] = ACTIONS(81), + [sym_symbol] = ACTIONS(66), + [anon_sym_LBRACE_CARET] = ACTIONS(84), + [anon_sym_CARET] = ACTIONS(84), + [anon_sym_LBRACE_TILDE] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(90), + [anon_sym_TILDE_RBRACE] = ACTIONS(93), + [anon_sym_LBRACK_CARET] = ACTIONS(95), + [anon_sym_BANG_LBRACK] = ACTIONS(100), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_LBRACE2] = ACTIONS(69), + [anon_sym_DOLLAR] = ACTIONS(106), + [anon_sym_TODO] = ACTIONS(109), + [anon_sym_WIP] = ACTIONS(109), + [anon_sym_NOTE] = ACTIONS(112), + [anon_sym_INFO] = ACTIONS(112), + [anon_sym_XXX] = ACTIONS(112), + [sym_fixme] = ACTIONS(66), + [anon_sym_PIPE] = ACTIONS(66), + [sym__whitespace1] = ACTIONS(115), + [sym__newline] = ACTIONS(118), + [aux_sym__text_token1] = ACTIONS(121), + [sym__verbatim_begin] = ACTIONS(124), + }, + [39] = { + [sym__inline] = STATE(868), + [sym__element] = STATE(103), + [sym_emphasis] = STATE(200), + [sym_emphasis_begin] = STATE(101), + [sym_strong] = STATE(200), + [sym_strong_begin] = STATE(104), + [sym__hard_line_break] = STATE(200), + [sym_hard_line_break] = STATE(200), + [sym__smart_punctuation] = STATE(200), + [sym_autolink] = STATE(200), + [sym_highlighted] = STATE(200), + [sym_insert] = STATE(200), + [sym_delete] = STATE(200), + [sym_superscript] = STATE(200), + [sym_subscript] = STATE(200), + [sym_footnote_reference] = STATE(200), + [sym__image] = STATE(200), + [sym_full_reference_image] = STATE(200), + [sym_collapsed_reference_image] = STATE(200), + [sym_inline_image] = STATE(200), + [sym__image_description] = STATE(642), + [sym__link] = STATE(200), + [sym_full_reference_link] = STATE(200), + [sym_collapsed_reference_link] = STATE(200), + [sym_inline_link] = STATE(200), + [sym_link_text] = STATE(643), + [sym__comment_with_spaces] = STATE(200), + [sym_span] = STATE(200), + [sym_raw_inline] = STATE(200), + [sym_math] = STATE(200), + [sym_verbatim] = STATE(200), + [sym__todo_highlights] = STATE(200), + [sym_todo] = STATE(200), + [sym_note] = STATE(200), + [sym__symbol_fallback] = STATE(200), + [aux_sym__text] = STATE(138), + [aux_sym__inline_repeat1] = STATE(103), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(51), + [anon_sym__] = ACTIONS(138), + [aux_sym_emphasis_end_token1] = ACTIONS(93), + [anon_sym_LBRACE_STAR] = ACTIONS(57), + [anon_sym_STAR] = ACTIONS(60), + [anon_sym_BSLASH] = ACTIONS(63), + [sym_quotation_marks] = ACTIONS(66), + [sym_ellipsis] = ACTIONS(66), + [sym_em_dash] = ACTIONS(66), + [sym_en_dash] = ACTIONS(69), + [sym_backslash_escape] = ACTIONS(69), + [anon_sym_LT] = ACTIONS(72), + [anon_sym_LBRACE_EQ] = ACTIONS(75), + [anon_sym_LBRACE_PLUS] = ACTIONS(78), + [anon_sym_LBRACE_DASH] = ACTIONS(81), + [sym_symbol] = ACTIONS(66), + [anon_sym_LBRACE_CARET] = ACTIONS(84), + [anon_sym_CARET] = ACTIONS(84), + [anon_sym_LBRACE_TILDE] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_LBRACK_CARET] = ACTIONS(95), + [anon_sym_BANG_LBRACK] = ACTIONS(100), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_LBRACE2] = ACTIONS(69), + [anon_sym_DOLLAR] = ACTIONS(106), + [anon_sym_TODO] = ACTIONS(109), + [anon_sym_WIP] = ACTIONS(109), + [anon_sym_NOTE] = ACTIONS(112), + [anon_sym_INFO] = ACTIONS(112), + [anon_sym_XXX] = ACTIONS(112), + [sym_fixme] = ACTIONS(66), + [anon_sym_PIPE] = ACTIONS(66), + [sym__whitespace1] = ACTIONS(130), + [sym__newline] = ACTIONS(118), + [aux_sym__text_token1] = ACTIONS(121), + [sym__verbatim_begin] = ACTIONS(124), + }, + [40] = { + [sym__inline] = STATE(804), + [sym__element] = STATE(77), + [sym_emphasis] = STATE(174), + [sym_emphasis_begin] = STATE(86), + [sym_strong] = STATE(174), + [sym_strong_begin] = STATE(89), + [sym__hard_line_break] = STATE(174), + [sym_hard_line_break] = STATE(174), + [sym__smart_punctuation] = STATE(174), + [sym_autolink] = STATE(174), + [sym_highlighted] = STATE(174), + [sym_insert] = STATE(174), + [sym_delete] = STATE(174), + [sym_superscript] = STATE(174), + [sym_subscript] = STATE(174), + [sym_footnote_reference] = STATE(174), + [sym__image] = STATE(174), + [sym_full_reference_image] = STATE(174), + [sym_collapsed_reference_image] = STATE(174), + [sym_inline_image] = STATE(174), + [sym__image_description] = STATE(630), + [sym__link] = STATE(174), + [sym_full_reference_link] = STATE(174), + [sym_collapsed_reference_link] = STATE(174), + [sym_inline_link] = STATE(174), + [sym_link_text] = STATE(631), + [sym__comment_with_spaces] = STATE(174), + [sym_span] = STATE(174), + [sym_raw_inline] = STATE(174), + [sym_math] = STATE(174), + [sym_verbatim] = STATE(174), + [sym__todo_highlights] = STATE(174), + [sym_todo] = STATE(174), + [sym_note] = STATE(174), + [sym__symbol_fallback] = STATE(174), + [aux_sym__text] = STATE(148), + [aux_sym__inline_repeat1] = STATE(77), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(348), + [anon_sym__] = ACTIONS(351), + [anon_sym_LBRACE_STAR] = ACTIONS(354), + [anon_sym_STAR] = ACTIONS(357), + [anon_sym_BSLASH] = ACTIONS(360), + [sym_quotation_marks] = ACTIONS(363), + [sym_ellipsis] = ACTIONS(363), + [sym_em_dash] = ACTIONS(363), + [sym_en_dash] = ACTIONS(366), + [sym_backslash_escape] = ACTIONS(366), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_LBRACE_EQ] = ACTIONS(372), + [anon_sym_EQ_RBRACE] = ACTIONS(93), + [anon_sym_LBRACE_PLUS] = ACTIONS(375), + [anon_sym_LBRACE_DASH] = ACTIONS(378), + [sym_symbol] = ACTIONS(363), + [anon_sym_LBRACE_CARET] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(381), + [anon_sym_LBRACE_TILDE] = ACTIONS(384), + [anon_sym_TILDE] = ACTIONS(384), + [anon_sym_LBRACK_CARET] = ACTIONS(387), + [anon_sym_BANG_LBRACK] = ACTIONS(390), + [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_LBRACE2] = ACTIONS(366), + [anon_sym_DOLLAR] = ACTIONS(396), + [anon_sym_TODO] = ACTIONS(399), + [anon_sym_WIP] = ACTIONS(399), + [anon_sym_NOTE] = ACTIONS(402), + [anon_sym_INFO] = ACTIONS(402), + [anon_sym_XXX] = ACTIONS(402), + [sym_fixme] = ACTIONS(363), + [anon_sym_PIPE] = ACTIONS(363), + [sym__whitespace1] = ACTIONS(405), + [sym__newline] = ACTIONS(408), + [aux_sym__text_token1] = ACTIONS(411), + [sym__verbatim_begin] = ACTIONS(414), + }, + [41] = { + [sym__inline] = STATE(841), + [sym__element] = STATE(103), + [sym_emphasis] = STATE(200), + [sym_emphasis_begin] = STATE(101), + [sym_strong] = STATE(200), + [sym_strong_begin] = STATE(104), + [sym__hard_line_break] = STATE(200), + [sym_hard_line_break] = STATE(200), + [sym__smart_punctuation] = STATE(200), + [sym_autolink] = STATE(200), + [sym_highlighted] = STATE(200), + [sym_insert] = STATE(200), + [sym_delete] = STATE(200), + [sym_superscript] = STATE(200), + [sym_subscript] = STATE(200), + [sym_footnote_reference] = STATE(200), + [sym__image] = STATE(200), + [sym_full_reference_image] = STATE(200), + [sym_collapsed_reference_image] = STATE(200), + [sym_inline_image] = STATE(200), + [sym__image_description] = STATE(642), + [sym__link] = STATE(200), + [sym_full_reference_link] = STATE(200), + [sym_collapsed_reference_link] = STATE(200), + [sym_inline_link] = STATE(200), + [sym_link_text] = STATE(643), + [sym__comment_with_spaces] = STATE(200), + [sym_span] = STATE(200), + [sym_raw_inline] = STATE(200), + [sym_math] = STATE(200), + [sym_verbatim] = STATE(200), + [sym__todo_highlights] = STATE(200), + [sym_todo] = STATE(200), + [sym_note] = STATE(200), + [sym__symbol_fallback] = STATE(200), + [aux_sym__text] = STATE(138), + [aux_sym__inline_repeat1] = STATE(103), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(51), + [anon_sym__] = ACTIONS(54), + [anon_sym_LBRACE_STAR] = ACTIONS(57), + [anon_sym_STAR] = ACTIONS(60), + [anon_sym_BSLASH] = ACTIONS(63), + [sym_quotation_marks] = ACTIONS(66), + [sym_ellipsis] = ACTIONS(66), + [sym_em_dash] = ACTIONS(66), + [sym_en_dash] = ACTIONS(69), + [sym_backslash_escape] = ACTIONS(69), + [anon_sym_LT] = ACTIONS(72), + [anon_sym_LBRACE_EQ] = ACTIONS(75), + [anon_sym_LBRACE_PLUS] = ACTIONS(78), + [anon_sym_LBRACE_DASH] = ACTIONS(81), + [sym_symbol] = ACTIONS(66), + [anon_sym_LBRACE_CARET] = ACTIONS(84), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_CARET_RBRACE] = ACTIONS(93), + [anon_sym_LBRACE_TILDE] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_LBRACK_CARET] = ACTIONS(95), + [anon_sym_BANG_LBRACK] = ACTIONS(100), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_LBRACE2] = ACTIONS(69), + [anon_sym_DOLLAR] = ACTIONS(106), + [anon_sym_TODO] = ACTIONS(109), + [anon_sym_WIP] = ACTIONS(109), + [anon_sym_NOTE] = ACTIONS(112), + [anon_sym_INFO] = ACTIONS(112), + [anon_sym_XXX] = ACTIONS(112), + [sym_fixme] = ACTIONS(66), + [anon_sym_PIPE] = ACTIONS(66), + [sym__whitespace1] = ACTIONS(115), + [sym__newline] = ACTIONS(118), + [aux_sym__text_token1] = ACTIONS(121), + [sym__verbatim_begin] = ACTIONS(124), + }, + [42] = { + [sym__inline] = STATE(832), + [sym__element] = STATE(103), + [sym_emphasis] = STATE(200), + [sym_emphasis_begin] = STATE(101), + [sym_strong] = STATE(200), + [sym_strong_begin] = STATE(104), + [sym__hard_line_break] = STATE(200), + [sym_hard_line_break] = STATE(200), + [sym__smart_punctuation] = STATE(200), + [sym_autolink] = STATE(200), + [sym_highlighted] = STATE(200), + [sym_insert] = STATE(200), + [sym_delete] = STATE(200), + [sym_superscript] = STATE(200), + [sym_subscript] = STATE(200), + [sym_footnote_reference] = STATE(200), + [sym__image] = STATE(200), + [sym_full_reference_image] = STATE(200), + [sym_collapsed_reference_image] = STATE(200), + [sym_inline_image] = STATE(200), + [sym__image_description] = STATE(642), + [sym__link] = STATE(200), + [sym_full_reference_link] = STATE(200), + [sym_collapsed_reference_link] = STATE(200), + [sym_inline_link] = STATE(200), + [sym_link_text] = STATE(643), + [sym__comment_with_spaces] = STATE(200), + [sym_span] = STATE(200), + [sym_raw_inline] = STATE(200), + [sym_math] = STATE(200), + [sym_verbatim] = STATE(200), + [sym__todo_highlights] = STATE(200), + [sym_todo] = STATE(200), + [sym_note] = STATE(200), + [sym__symbol_fallback] = STATE(200), + [aux_sym__text] = STATE(138), + [aux_sym__inline_repeat1] = STATE(103), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(51), + [anon_sym__] = ACTIONS(54), + [anon_sym_LBRACE_STAR] = ACTIONS(57), + [anon_sym_STAR] = ACTIONS(60), + [anon_sym_BSLASH] = ACTIONS(63), + [sym_quotation_marks] = ACTIONS(66), + [sym_ellipsis] = ACTIONS(66), + [sym_em_dash] = ACTIONS(66), + [sym_en_dash] = ACTIONS(69), + [sym_backslash_escape] = ACTIONS(69), + [anon_sym_LT] = ACTIONS(72), + [anon_sym_LBRACE_EQ] = ACTIONS(75), + [anon_sym_LBRACE_PLUS] = ACTIONS(78), + [anon_sym_LBRACE_DASH] = ACTIONS(81), + [anon_sym_DASH_RBRACE] = ACTIONS(93), + [sym_symbol] = ACTIONS(66), + [anon_sym_LBRACE_CARET] = ACTIONS(84), + [anon_sym_CARET] = ACTIONS(84), + [anon_sym_LBRACE_TILDE] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_LBRACK_CARET] = ACTIONS(95), + [anon_sym_BANG_LBRACK] = ACTIONS(100), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_LBRACE2] = ACTIONS(69), + [anon_sym_DOLLAR] = ACTIONS(106), + [anon_sym_TODO] = ACTIONS(109), + [anon_sym_WIP] = ACTIONS(109), + [anon_sym_NOTE] = ACTIONS(112), + [anon_sym_INFO] = ACTIONS(112), + [anon_sym_XXX] = ACTIONS(112), + [sym_fixme] = ACTIONS(66), + [anon_sym_PIPE] = ACTIONS(66), + [sym__whitespace1] = ACTIONS(115), + [sym__newline] = ACTIONS(118), + [aux_sym__text_token1] = ACTIONS(121), + [sym__verbatim_begin] = ACTIONS(124), + }, + [43] = { + [sym__inline] = STATE(687), + [sym__element] = STATE(120), + [sym_emphasis] = STATE(182), + [sym_emphasis_begin] = STATE(97), + [sym_strong] = STATE(182), + [sym_strong_begin] = STATE(99), + [sym__hard_line_break] = STATE(182), + [sym_hard_line_break] = STATE(182), + [sym__smart_punctuation] = STATE(182), + [sym_autolink] = STATE(182), + [sym_highlighted] = STATE(182), + [sym_insert] = STATE(182), + [sym_delete] = STATE(182), + [sym_superscript] = STATE(182), + [sym_subscript] = STATE(182), + [sym_footnote_reference] = STATE(182), + [sym__image] = STATE(182), + [sym_full_reference_image] = STATE(182), + [sym_collapsed_reference_image] = STATE(182), + [sym_inline_image] = STATE(182), + [sym__image_description] = STATE(628), + [sym__link] = STATE(182), [sym_full_reference_link] = STATE(182), [sym_collapsed_reference_link] = STATE(182), [sym_inline_link] = STATE(182), - [sym_link_text] = STATE(671), + [sym_link_text] = STATE(627), [sym__comment_with_spaces] = STATE(182), [sym_span] = STATE(182), [sym_raw_inline] = STATE(182), @@ -11152,12 +11321,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(182), [sym_note] = STATE(182), [sym__symbol_fallback] = STATE(182), - [sym__verbatim_begin] = STATE(870), - [aux_sym__text] = STATE(150), - [aux_sym__inline_repeat1] = STATE(96), - [anon_sym_LBRACE] = ACTIONS(51), + [aux_sym__text] = STATE(136), + [aux_sym__inline_repeat1] = STATE(120), + [anon_sym_LBRACE] = ACTIONS(49), [anon_sym_LBRACE_] = ACTIONS(141), - [anon_sym__] = ACTIONS(144), + [anon_sym__] = ACTIONS(486), [anon_sym_LBRACE_STAR] = ACTIONS(147), [anon_sym_STAR] = ACTIONS(150), [anon_sym_BSLASH] = ACTIONS(153), @@ -11172,144 +11340,218 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_DASH] = ACTIONS(171), [sym_symbol] = ACTIONS(156), [anon_sym_LBRACE_CARET] = ACTIONS(174), - [anon_sym_CARET] = ACTIONS(174), + [anon_sym_CARET] = ACTIONS(537), + [anon_sym_CARET_RBRACE] = ACTIONS(93), [anon_sym_LBRACE_TILDE] = ACTIONS(177), [anon_sym_TILDE] = ACTIONS(177), - [anon_sym_LBRACK_CARET] = ACTIONS(183), - [anon_sym_RBRACK] = ACTIONS(49), - [anon_sym_BANG_LBRACK] = ACTIONS(186), - [anon_sym_LBRACK] = ACTIONS(189), + [anon_sym_LBRACK_CARET] = ACTIONS(180), + [anon_sym_BANG_LBRACK] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(186), [anon_sym_LBRACE2] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(192), - [anon_sym_TODO] = ACTIONS(195), - [anon_sym_WIP] = ACTIONS(195), - [anon_sym_NOTE] = ACTIONS(198), - [anon_sym_INFO] = ACTIONS(198), - [anon_sym_XXX] = ACTIONS(198), + [anon_sym_DOLLAR] = ACTIONS(189), + [anon_sym_TODO] = ACTIONS(192), + [anon_sym_WIP] = ACTIONS(192), + [anon_sym_NOTE] = ACTIONS(195), + [anon_sym_INFO] = ACTIONS(195), + [anon_sym_XXX] = ACTIONS(195), [sym_fixme] = ACTIONS(156), [anon_sym_PIPE] = ACTIONS(156), - [anon_sym_BQUOTE] = ACTIONS(112), - [sym__whitespace1] = ACTIONS(201), - [sym__newline] = ACTIONS(204), - [aux_sym__text_token1] = ACTIONS(207), + [sym__whitespace1] = ACTIONS(489), + [sym__newline] = ACTIONS(201), + [aux_sym__text_token1] = ACTIONS(204), + [sym__verbatim_begin] = ACTIONS(207), }, - [39] = { - [sym__inline] = STATE(702), - [sym__element] = STATE(84), - [sym_emphasis] = STATE(197), - [sym_emphasis_begin] = STATE(97), - [sym_strong] = STATE(197), - [sym_strong_begin] = STATE(100), - [sym__hard_line_break] = STATE(197), - [sym_hard_line_break] = STATE(197), - [sym__smart_punctuation] = STATE(197), - [sym_autolink] = STATE(197), - [sym_highlighted] = STATE(197), - [sym_insert] = STATE(197), - [sym_delete] = STATE(197), - [sym_superscript] = STATE(197), - [sym_subscript] = STATE(197), - [sym_footnote_reference] = STATE(197), - [sym__image] = STATE(197), - [sym_full_reference_image] = STATE(197), - [sym_collapsed_reference_image] = STATE(197), - [sym_inline_image] = STATE(197), - [sym__image_description] = STATE(676), - [sym__link] = STATE(197), - [sym_full_reference_link] = STATE(197), - [sym_collapsed_reference_link] = STATE(197), - [sym_inline_link] = STATE(197), - [sym_link_text] = STATE(677), - [sym__comment_with_spaces] = STATE(197), - [sym_span] = STATE(197), - [sym_raw_inline] = STATE(197), - [sym_math] = STATE(197), - [sym_verbatim] = STATE(197), - [sym__todo_highlights] = STATE(197), - [sym_todo] = STATE(197), - [sym_note] = STATE(197), - [sym__symbol_fallback] = STATE(197), - [sym__verbatim_begin] = STATE(861), - [aux_sym__text] = STATE(159), - [aux_sym__inline_repeat1] = STATE(84), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACE_] = ACTIONS(276), - [anon_sym__] = ACTIONS(279), - [anon_sym_LBRACE_STAR] = ACTIONS(282), - [anon_sym_STAR] = ACTIONS(285), - [anon_sym_BSLASH] = ACTIONS(288), - [sym_quotation_marks] = ACTIONS(291), - [sym_ellipsis] = ACTIONS(291), - [sym_em_dash] = ACTIONS(291), - [sym_en_dash] = ACTIONS(294), - [sym_backslash_escape] = ACTIONS(294), - [anon_sym_LT] = ACTIONS(297), - [anon_sym_LBRACE_EQ] = ACTIONS(300), - [anon_sym_LBRACE_PLUS] = ACTIONS(303), - [anon_sym_LBRACE_DASH] = ACTIONS(306), - [sym_symbol] = ACTIONS(291), - [anon_sym_LBRACE_CARET] = ACTIONS(309), - [anon_sym_CARET] = ACTIONS(309), - [anon_sym_LBRACE_TILDE] = ACTIONS(312), - [anon_sym_TILDE] = ACTIONS(501), - [anon_sym_TILDE_RBRACE] = ACTIONS(49), - [anon_sym_LBRACK_CARET] = ACTIONS(315), - [anon_sym_BANG_LBRACK] = ACTIONS(318), - [anon_sym_LBRACK] = ACTIONS(321), - [anon_sym_LBRACE2] = ACTIONS(294), - [anon_sym_DOLLAR] = ACTIONS(324), - [anon_sym_TODO] = ACTIONS(327), - [anon_sym_WIP] = ACTIONS(327), - [anon_sym_NOTE] = ACTIONS(330), - [anon_sym_INFO] = ACTIONS(330), - [anon_sym_XXX] = ACTIONS(330), - [sym_fixme] = ACTIONS(291), - [anon_sym_PIPE] = ACTIONS(291), - [anon_sym_BQUOTE] = ACTIONS(112), - [sym__whitespace1] = ACTIONS(333), - [sym__newline] = ACTIONS(336), - [aux_sym__text_token1] = ACTIONS(339), + [44] = { + [sym__inline] = STATE(690), + [sym__element] = STATE(85), + [sym_emphasis] = STATE(175), + [sym_emphasis_begin] = STATE(94), + [sym_strong] = STATE(175), + [sym_strong_begin] = STATE(95), + [sym__hard_line_break] = STATE(175), + [sym_hard_line_break] = STATE(175), + [sym__smart_punctuation] = STATE(175), + [sym_autolink] = STATE(175), + [sym_highlighted] = STATE(175), + [sym_insert] = STATE(175), + [sym_delete] = STATE(175), + [sym_superscript] = STATE(175), + [sym_subscript] = STATE(175), + [sym_footnote_reference] = STATE(175), + [sym__image] = STATE(175), + [sym_full_reference_image] = STATE(175), + [sym_collapsed_reference_image] = STATE(175), + [sym_inline_image] = STATE(175), + [sym__image_description] = STATE(652), + [sym__link] = STATE(175), + [sym_full_reference_link] = STATE(175), + [sym_collapsed_reference_link] = STATE(175), + [sym_inline_link] = STATE(175), + [sym_link_text] = STATE(649), + [sym__comment_with_spaces] = STATE(175), + [sym_span] = STATE(175), + [sym_raw_inline] = STATE(175), + [sym_math] = STATE(175), + [sym_verbatim] = STATE(175), + [sym__todo_highlights] = STATE(175), + [sym_todo] = STATE(175), + [sym_note] = STATE(175), + [sym__symbol_fallback] = STATE(175), + [aux_sym__text] = STATE(156), + [aux_sym__inline_repeat1] = STATE(85), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(417), + [anon_sym__] = ACTIONS(420), + [anon_sym_LBRACE_STAR] = ACTIONS(423), + [anon_sym_STAR] = ACTIONS(426), + [anon_sym_BSLASH] = ACTIONS(429), + [sym_quotation_marks] = ACTIONS(432), + [sym_ellipsis] = ACTIONS(432), + [sym_em_dash] = ACTIONS(432), + [sym_en_dash] = ACTIONS(435), + [sym_backslash_escape] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(438), + [anon_sym_LBRACE_EQ] = ACTIONS(441), + [anon_sym_LBRACE_PLUS] = ACTIONS(444), + [anon_sym_LBRACE_DASH] = ACTIONS(447), + [sym_symbol] = ACTIONS(432), + [anon_sym_LBRACE_CARET] = ACTIONS(450), + [anon_sym_CARET] = ACTIONS(540), + [anon_sym_CARET_RBRACE] = ACTIONS(93), + [anon_sym_LBRACE_TILDE] = ACTIONS(453), + [anon_sym_TILDE] = ACTIONS(453), + [anon_sym_LBRACK_CARET] = ACTIONS(456), + [anon_sym_BANG_LBRACK] = ACTIONS(459), + [anon_sym_LBRACK] = ACTIONS(462), + [anon_sym_LBRACE2] = ACTIONS(435), + [anon_sym_DOLLAR] = ACTIONS(465), + [anon_sym_TODO] = ACTIONS(468), + [anon_sym_WIP] = ACTIONS(468), + [anon_sym_NOTE] = ACTIONS(471), + [anon_sym_INFO] = ACTIONS(471), + [anon_sym_XXX] = ACTIONS(471), + [sym_fixme] = ACTIONS(432), + [anon_sym_PIPE] = ACTIONS(432), + [sym__whitespace1] = ACTIONS(474), + [sym__newline] = ACTIONS(477), + [aux_sym__text_token1] = ACTIONS(480), + [sym__verbatim_begin] = ACTIONS(483), }, - [40] = { - [sym__inline] = STATE(818), - [sym__element] = STATE(98), - [sym_emphasis] = STATE(207), - [sym_emphasis_begin] = STATE(89), - [sym_strong] = STATE(207), - [sym_strong_begin] = STATE(72), - [sym__hard_line_break] = STATE(207), - [sym_hard_line_break] = STATE(207), - [sym__smart_punctuation] = STATE(207), - [sym_autolink] = STATE(207), - [sym_highlighted] = STATE(207), - [sym_insert] = STATE(207), - [sym_delete] = STATE(207), - [sym_superscript] = STATE(207), - [sym_subscript] = STATE(207), - [sym_footnote_reference] = STATE(207), - [sym__image] = STATE(207), - [sym_full_reference_image] = STATE(207), - [sym_collapsed_reference_image] = STATE(207), - [sym_inline_image] = STATE(207), - [sym__image_description] = STATE(666), - [sym__link] = STATE(207), - [sym_full_reference_link] = STATE(207), - [sym_collapsed_reference_link] = STATE(207), - [sym_inline_link] = STATE(207), - [sym_link_text] = STATE(667), - [sym__comment_with_spaces] = STATE(207), - [sym_span] = STATE(207), - [sym_raw_inline] = STATE(207), - [sym_math] = STATE(207), - [sym_verbatim] = STATE(207), - [sym__todo_highlights] = STATE(207), - [sym_todo] = STATE(207), - [sym_note] = STATE(207), - [sym__symbol_fallback] = STATE(207), - [sym__verbatim_begin] = STATE(852), - [aux_sym__text] = STATE(139), - [aux_sym__inline_repeat1] = STATE(98), - [anon_sym_LBRACE] = ACTIONS(51), + [45] = { + [sym__inline] = STATE(710), + [sym__element] = STATE(85), + [sym_emphasis] = STATE(175), + [sym_emphasis_begin] = STATE(94), + [sym_strong] = STATE(175), + [sym_strong_begin] = STATE(95), + [sym__hard_line_break] = STATE(175), + [sym_hard_line_break] = STATE(175), + [sym__smart_punctuation] = STATE(175), + [sym_autolink] = STATE(175), + [sym_highlighted] = STATE(175), + [sym_insert] = STATE(175), + [sym_delete] = STATE(175), + [sym_superscript] = STATE(175), + [sym_subscript] = STATE(175), + [sym_footnote_reference] = STATE(175), + [sym__image] = STATE(175), + [sym_full_reference_image] = STATE(175), + [sym_collapsed_reference_image] = STATE(175), + [sym_inline_image] = STATE(175), + [sym__image_description] = STATE(652), + [sym__link] = STATE(175), + [sym_full_reference_link] = STATE(175), + [sym_collapsed_reference_link] = STATE(175), + [sym_inline_link] = STATE(175), + [sym_link_text] = STATE(649), + [sym__comment_with_spaces] = STATE(175), + [sym_span] = STATE(175), + [sym_raw_inline] = STATE(175), + [sym_math] = STATE(175), + [sym_verbatim] = STATE(175), + [sym__todo_highlights] = STATE(175), + [sym_todo] = STATE(175), + [sym_note] = STATE(175), + [sym__symbol_fallback] = STATE(175), + [aux_sym__text] = STATE(156), + [aux_sym__inline_repeat1] = STATE(85), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(417), + [anon_sym__] = ACTIONS(420), + [anon_sym_LBRACE_STAR] = ACTIONS(423), + [anon_sym_STAR] = ACTIONS(426), + [anon_sym_BSLASH] = ACTIONS(429), + [sym_quotation_marks] = ACTIONS(432), + [sym_ellipsis] = ACTIONS(432), + [sym_em_dash] = ACTIONS(432), + [sym_en_dash] = ACTIONS(435), + [sym_backslash_escape] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(438), + [anon_sym_LBRACE_EQ] = ACTIONS(441), + [anon_sym_LBRACE_PLUS] = ACTIONS(444), + [anon_sym_LBRACE_DASH] = ACTIONS(447), + [anon_sym_DASH_RBRACE] = ACTIONS(93), + [sym_symbol] = ACTIONS(432), + [anon_sym_LBRACE_CARET] = ACTIONS(450), + [anon_sym_CARET] = ACTIONS(450), + [anon_sym_LBRACE_TILDE] = ACTIONS(453), + [anon_sym_TILDE] = ACTIONS(453), + [anon_sym_LBRACK_CARET] = ACTIONS(456), + [anon_sym_BANG_LBRACK] = ACTIONS(459), + [anon_sym_LBRACK] = ACTIONS(462), + [anon_sym_LBRACE2] = ACTIONS(435), + [anon_sym_DOLLAR] = ACTIONS(465), + [anon_sym_TODO] = ACTIONS(468), + [anon_sym_WIP] = ACTIONS(468), + [anon_sym_NOTE] = ACTIONS(471), + [anon_sym_INFO] = ACTIONS(471), + [anon_sym_XXX] = ACTIONS(471), + [sym_fixme] = ACTIONS(432), + [anon_sym_PIPE] = ACTIONS(432), + [sym__whitespace1] = ACTIONS(474), + [sym__newline] = ACTIONS(477), + [aux_sym__text_token1] = ACTIONS(480), + [sym__verbatim_begin] = ACTIONS(483), + }, + [46] = { + [sym__inline] = STATE(816), + [sym__element] = STATE(116), + [sym_emphasis] = STATE(183), + [sym_emphasis_begin] = STATE(91), + [sym_strong] = STATE(183), + [sym_strong_begin] = STATE(92), + [sym__hard_line_break] = STATE(183), + [sym_hard_line_break] = STATE(183), + [sym__smart_punctuation] = STATE(183), + [sym_autolink] = STATE(183), + [sym_highlighted] = STATE(183), + [sym_insert] = STATE(183), + [sym_delete] = STATE(183), + [sym_superscript] = STATE(183), + [sym_subscript] = STATE(183), + [sym_footnote_reference] = STATE(183), + [sym__image] = STATE(183), + [sym_full_reference_image] = STATE(183), + [sym_collapsed_reference_image] = STATE(183), + [sym_inline_image] = STATE(183), + [sym__image_description] = STATE(645), + [sym__link] = STATE(183), + [sym_full_reference_link] = STATE(183), + [sym_collapsed_reference_link] = STATE(183), + [sym_inline_link] = STATE(183), + [sym_link_text] = STATE(646), + [sym__comment_with_spaces] = STATE(183), + [sym_span] = STATE(183), + [sym_raw_inline] = STATE(183), + [sym_math] = STATE(183), + [sym_verbatim] = STATE(183), + [sym__todo_highlights] = STATE(183), + [sym_todo] = STATE(183), + [sym_note] = STATE(183), + [sym__symbol_fallback] = STATE(183), + [aux_sym__text] = STATE(149), + [aux_sym__inline_repeat1] = STATE(116), + [anon_sym_LBRACE] = ACTIONS(49), [anon_sym_LBRACE_] = ACTIONS(210), [anon_sym__] = ACTIONS(213), [anon_sym_LBRACE_STAR] = ACTIONS(216), @@ -11326,10 +11568,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_DASH] = ACTIONS(240), [sym_symbol] = ACTIONS(225), [anon_sym_LBRACE_CARET] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(543), + [anon_sym_CARET_RBRACE] = ACTIONS(93), [anon_sym_LBRACE_TILDE] = ACTIONS(246), - [anon_sym_TILDE] = ACTIONS(504), - [anon_sym_TILDE_RBRACE] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(246), [anon_sym_LBRACK_CARET] = ACTIONS(249), [anon_sym_BANG_LBRACK] = ACTIONS(252), [anon_sym_LBRACK] = ACTIONS(255), @@ -11342,128 +11584,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_XXX] = ACTIONS(264), [sym_fixme] = ACTIONS(225), [anon_sym_PIPE] = ACTIONS(225), - [anon_sym_BQUOTE] = ACTIONS(112), [sym__whitespace1] = ACTIONS(267), [sym__newline] = ACTIONS(270), [aux_sym__text_token1] = ACTIONS(273), + [sym__verbatim_begin] = ACTIONS(276), }, - [41] = { - [sym__inline] = STATE(829), - [sym__element] = STATE(101), - [sym_emphasis] = STATE(173), - [sym_emphasis_begin] = STATE(87), - [sym_strong] = STATE(173), - [sym_strong_begin] = STATE(76), - [sym__hard_line_break] = STATE(173), - [sym_hard_line_break] = STATE(173), - [sym__smart_punctuation] = STATE(173), - [sym_autolink] = STATE(173), - [sym_highlighted] = STATE(173), - [sym_insert] = STATE(173), - [sym_delete] = STATE(173), - [sym_superscript] = STATE(173), - [sym_subscript] = STATE(173), - [sym_footnote_reference] = STATE(173), - [sym__image] = STATE(173), - [sym_full_reference_image] = STATE(173), - [sym_collapsed_reference_image] = STATE(173), - [sym_inline_image] = STATE(173), - [sym__image_description] = STATE(647), - [sym__link] = STATE(173), - [sym_full_reference_link] = STATE(173), - [sym_collapsed_reference_link] = STATE(173), - [sym_inline_link] = STATE(173), - [sym_link_text] = STATE(648), - [sym__comment_with_spaces] = STATE(173), - [sym_span] = STATE(173), - [sym_raw_inline] = STATE(173), - [sym_math] = STATE(173), - [sym_verbatim] = STATE(173), - [sym__todo_highlights] = STATE(173), - [sym_todo] = STATE(173), - [sym_note] = STATE(173), - [sym__symbol_fallback] = STATE(173), - [sym__verbatim_begin] = STATE(843), - [aux_sym__text] = STATE(155), - [aux_sym__inline_repeat1] = STATE(101), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACE_] = ACTIONS(342), - [anon_sym__] = ACTIONS(345), - [anon_sym_LBRACE_STAR] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(351), - [anon_sym_BSLASH] = ACTIONS(354), - [sym_quotation_marks] = ACTIONS(357), - [sym_ellipsis] = ACTIONS(357), - [sym_em_dash] = ACTIONS(357), - [sym_en_dash] = ACTIONS(360), - [sym_backslash_escape] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(363), - [anon_sym_LBRACE_EQ] = ACTIONS(366), - [anon_sym_LBRACE_PLUS] = ACTIONS(369), - [anon_sym_LBRACE_DASH] = ACTIONS(372), - [sym_symbol] = ACTIONS(357), - [anon_sym_LBRACE_CARET] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(375), - [anon_sym_LBRACE_TILDE] = ACTIONS(378), - [anon_sym_TILDE] = ACTIONS(507), - [anon_sym_TILDE_RBRACE] = ACTIONS(49), - [anon_sym_LBRACK_CARET] = ACTIONS(381), - [anon_sym_BANG_LBRACK] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(387), - [anon_sym_LBRACE2] = ACTIONS(360), - [anon_sym_DOLLAR] = ACTIONS(390), - [anon_sym_TODO] = ACTIONS(393), - [anon_sym_WIP] = ACTIONS(393), - [anon_sym_NOTE] = ACTIONS(396), - [anon_sym_INFO] = ACTIONS(396), - [anon_sym_XXX] = ACTIONS(396), - [sym_fixme] = ACTIONS(357), - [anon_sym_PIPE] = ACTIONS(357), - [anon_sym_BQUOTE] = ACTIONS(112), - [sym__whitespace1] = ACTIONS(399), - [sym__newline] = ACTIONS(402), - [aux_sym__text_token1] = ACTIONS(405), - }, - [42] = { - [sym__inline] = STATE(778), - [sym__element] = STATE(98), - [sym_emphasis] = STATE(207), - [sym_emphasis_begin] = STATE(89), - [sym_strong] = STATE(207), - [sym_strong_begin] = STATE(72), - [sym__hard_line_break] = STATE(207), - [sym_hard_line_break] = STATE(207), - [sym__smart_punctuation] = STATE(207), - [sym_autolink] = STATE(207), - [sym_highlighted] = STATE(207), - [sym_insert] = STATE(207), - [sym_delete] = STATE(207), - [sym_superscript] = STATE(207), - [sym_subscript] = STATE(207), - [sym_footnote_reference] = STATE(207), - [sym__image] = STATE(207), - [sym_full_reference_image] = STATE(207), - [sym_collapsed_reference_image] = STATE(207), - [sym_inline_image] = STATE(207), - [sym__image_description] = STATE(666), - [sym__link] = STATE(207), - [sym_full_reference_link] = STATE(207), - [sym_collapsed_reference_link] = STATE(207), - [sym_inline_link] = STATE(207), - [sym_link_text] = STATE(667), - [sym__comment_with_spaces] = STATE(207), - [sym_span] = STATE(207), - [sym_raw_inline] = STATE(207), - [sym_math] = STATE(207), - [sym_verbatim] = STATE(207), - [sym__todo_highlights] = STATE(207), - [sym_todo] = STATE(207), - [sym_note] = STATE(207), - [sym__symbol_fallback] = STATE(207), - [sym__verbatim_begin] = STATE(852), - [aux_sym__text] = STATE(139), - [aux_sym__inline_repeat1] = STATE(98), - [anon_sym_LBRACE] = ACTIONS(51), + [47] = { + [sym__inline] = STATE(748), + [sym__element] = STATE(116), + [sym_emphasis] = STATE(183), + [sym_emphasis_begin] = STATE(91), + [sym_strong] = STATE(183), + [sym_strong_begin] = STATE(92), + [sym__hard_line_break] = STATE(183), + [sym_hard_line_break] = STATE(183), + [sym__smart_punctuation] = STATE(183), + [sym_autolink] = STATE(183), + [sym_highlighted] = STATE(183), + [sym_insert] = STATE(183), + [sym_delete] = STATE(183), + [sym_superscript] = STATE(183), + [sym_subscript] = STATE(183), + [sym_footnote_reference] = STATE(183), + [sym__image] = STATE(183), + [sym_full_reference_image] = STATE(183), + [sym_collapsed_reference_image] = STATE(183), + [sym_inline_image] = STATE(183), + [sym__image_description] = STATE(645), + [sym__link] = STATE(183), + [sym_full_reference_link] = STATE(183), + [sym_collapsed_reference_link] = STATE(183), + [sym_inline_link] = STATE(183), + [sym_link_text] = STATE(646), + [sym__comment_with_spaces] = STATE(183), + [sym_span] = STATE(183), + [sym_raw_inline] = STATE(183), + [sym_math] = STATE(183), + [sym_verbatim] = STATE(183), + [sym__todo_highlights] = STATE(183), + [sym_todo] = STATE(183), + [sym_note] = STATE(183), + [sym__symbol_fallback] = STATE(183), + [aux_sym__text] = STATE(149), + [aux_sym__inline_repeat1] = STATE(116), + [anon_sym_LBRACE] = ACTIONS(49), [anon_sym_LBRACE_] = ACTIONS(210), [anon_sym__] = ACTIONS(213), [anon_sym_LBRACE_STAR] = ACTIONS(216), @@ -11477,8 +11641,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(231), [anon_sym_LBRACE_EQ] = ACTIONS(234), [anon_sym_LBRACE_PLUS] = ACTIONS(237), - [anon_sym_PLUS_RBRACE] = ACTIONS(49), [anon_sym_LBRACE_DASH] = ACTIONS(240), + [anon_sym_DASH_RBRACE] = ACTIONS(93), [sym_symbol] = ACTIONS(225), [anon_sym_LBRACE_CARET] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(243), @@ -11496,480 +11660,322 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_XXX] = ACTIONS(264), [sym_fixme] = ACTIONS(225), [anon_sym_PIPE] = ACTIONS(225), - [anon_sym_BQUOTE] = ACTIONS(112), [sym__whitespace1] = ACTIONS(267), [sym__newline] = ACTIONS(270), [aux_sym__text_token1] = ACTIONS(273), + [sym__verbatim_begin] = ACTIONS(276), }, - [43] = { - [sym__inline] = STATE(837), - [sym__element] = STATE(109), - [sym_emphasis] = STATE(221), - [sym_emphasis_begin] = STATE(82), - [sym_strong] = STATE(221), - [sym_strong_begin] = STATE(83), - [sym__hard_line_break] = STATE(221), - [sym_hard_line_break] = STATE(221), - [sym__smart_punctuation] = STATE(221), - [sym_autolink] = STATE(221), - [sym_highlighted] = STATE(221), - [sym_insert] = STATE(221), - [sym_delete] = STATE(221), - [sym_superscript] = STATE(221), - [sym_subscript] = STATE(221), - [sym_footnote_reference] = STATE(221), - [sym__image] = STATE(221), - [sym_full_reference_image] = STATE(221), - [sym_collapsed_reference_image] = STATE(221), - [sym_inline_image] = STATE(221), - [sym__image_description] = STATE(669), - [sym__link] = STATE(221), - [sym_full_reference_link] = STATE(221), - [sym_collapsed_reference_link] = STATE(221), - [sym_inline_link] = STATE(221), - [sym_link_text] = STATE(657), - [sym__comment_with_spaces] = STATE(221), - [sym_span] = STATE(221), - [sym_raw_inline] = STATE(221), - [sym_math] = STATE(221), - [sym_verbatim] = STATE(221), - [sym__todo_highlights] = STATE(221), - [sym_todo] = STATE(221), - [sym_note] = STATE(221), - [sym__symbol_fallback] = STATE(221), - [sym__verbatim_begin] = STATE(834), - [aux_sym__text] = STATE(134), - [aux_sym__inline_repeat1] = STATE(109), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACE_] = ACTIONS(408), - [anon_sym__] = ACTIONS(411), - [anon_sym_LBRACE_STAR] = ACTIONS(414), - [anon_sym_STAR] = ACTIONS(417), - [anon_sym_BSLASH] = ACTIONS(420), - [sym_quotation_marks] = ACTIONS(423), - [sym_ellipsis] = ACTIONS(423), - [sym_em_dash] = ACTIONS(423), - [sym_en_dash] = ACTIONS(426), - [sym_backslash_escape] = ACTIONS(426), - [anon_sym_LT] = ACTIONS(429), - [anon_sym_LBRACE_EQ] = ACTIONS(432), - [anon_sym_LBRACE_PLUS] = ACTIONS(435), - [anon_sym_LBRACE_DASH] = ACTIONS(438), - [sym_symbol] = ACTIONS(423), - [anon_sym_LBRACE_CARET] = ACTIONS(441), - [anon_sym_CARET] = ACTIONS(441), - [anon_sym_LBRACE_TILDE] = ACTIONS(444), - [anon_sym_TILDE] = ACTIONS(510), - [anon_sym_TILDE_RBRACE] = ACTIONS(49), - [anon_sym_LBRACK_CARET] = ACTIONS(447), - [anon_sym_BANG_LBRACK] = ACTIONS(450), - [anon_sym_LBRACK] = ACTIONS(453), - [anon_sym_LBRACE2] = ACTIONS(426), - [anon_sym_DOLLAR] = ACTIONS(456), - [anon_sym_TODO] = ACTIONS(459), - [anon_sym_WIP] = ACTIONS(459), - [anon_sym_NOTE] = ACTIONS(462), - [anon_sym_INFO] = ACTIONS(462), - [anon_sym_XXX] = ACTIONS(462), - [sym_fixme] = ACTIONS(423), - [anon_sym_PIPE] = ACTIONS(423), - [anon_sym_BQUOTE] = ACTIONS(112), - [sym__whitespace1] = ACTIONS(465), - [sym__newline] = ACTIONS(468), - [aux_sym__text_token1] = ACTIONS(471), - }, - [44] = { - [sym__inline] = STATE(781), - [sym__element] = STATE(109), - [sym_emphasis] = STATE(221), - [sym_emphasis_begin] = STATE(82), - [sym_strong] = STATE(221), - [sym_strong_begin] = STATE(83), - [sym__hard_line_break] = STATE(221), - [sym_hard_line_break] = STATE(221), - [sym__smart_punctuation] = STATE(221), - [sym_autolink] = STATE(221), - [sym_highlighted] = STATE(221), - [sym_insert] = STATE(221), - [sym_delete] = STATE(221), - [sym_superscript] = STATE(221), - [sym_subscript] = STATE(221), - [sym_footnote_reference] = STATE(221), - [sym__image] = STATE(221), - [sym_full_reference_image] = STATE(221), - [sym_collapsed_reference_image] = STATE(221), - [sym_inline_image] = STATE(221), - [sym__image_description] = STATE(669), - [sym__link] = STATE(221), - [sym_full_reference_link] = STATE(221), - [sym_collapsed_reference_link] = STATE(221), - [sym_inline_link] = STATE(221), - [sym_link_text] = STATE(657), - [sym__comment_with_spaces] = STATE(221), - [sym_span] = STATE(221), - [sym_raw_inline] = STATE(221), - [sym_math] = STATE(221), - [sym_verbatim] = STATE(221), - [sym__todo_highlights] = STATE(221), - [sym_todo] = STATE(221), - [sym_note] = STATE(221), - [sym__symbol_fallback] = STATE(221), - [sym__verbatim_begin] = STATE(834), - [aux_sym__text] = STATE(134), - [aux_sym__inline_repeat1] = STATE(109), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACE_] = ACTIONS(408), - [anon_sym__] = ACTIONS(411), - [anon_sym_LBRACE_STAR] = ACTIONS(414), - [anon_sym_STAR] = ACTIONS(513), - [aux_sym_strong_end_token1] = ACTIONS(49), - [anon_sym_BSLASH] = ACTIONS(420), - [sym_quotation_marks] = ACTIONS(423), - [sym_ellipsis] = ACTIONS(423), - [sym_em_dash] = ACTIONS(423), - [sym_en_dash] = ACTIONS(426), - [sym_backslash_escape] = ACTIONS(426), - [anon_sym_LT] = ACTIONS(429), - [anon_sym_LBRACE_EQ] = ACTIONS(432), - [anon_sym_LBRACE_PLUS] = ACTIONS(435), - [anon_sym_LBRACE_DASH] = ACTIONS(438), - [sym_symbol] = ACTIONS(423), - [anon_sym_LBRACE_CARET] = ACTIONS(441), - [anon_sym_CARET] = ACTIONS(441), - [anon_sym_LBRACE_TILDE] = ACTIONS(444), - [anon_sym_TILDE] = ACTIONS(444), - [anon_sym_LBRACK_CARET] = ACTIONS(447), - [anon_sym_BANG_LBRACK] = ACTIONS(450), - [anon_sym_LBRACK] = ACTIONS(453), - [anon_sym_LBRACE2] = ACTIONS(426), - [anon_sym_DOLLAR] = ACTIONS(456), - [anon_sym_TODO] = ACTIONS(459), - [anon_sym_WIP] = ACTIONS(459), - [anon_sym_NOTE] = ACTIONS(462), - [anon_sym_INFO] = ACTIONS(462), - [anon_sym_XXX] = ACTIONS(462), - [sym_fixme] = ACTIONS(423), - [anon_sym_PIPE] = ACTIONS(423), - [anon_sym_BQUOTE] = ACTIONS(112), - [sym__whitespace1] = ACTIONS(480), - [sym__newline] = ACTIONS(468), - [aux_sym__text_token1] = ACTIONS(471), - }, - [45] = { - [sym__inline] = STATE(782), - [sym__element] = STATE(101), - [sym_emphasis] = STATE(173), - [sym_emphasis_begin] = STATE(87), - [sym_strong] = STATE(173), - [sym_strong_begin] = STATE(76), - [sym__hard_line_break] = STATE(173), - [sym_hard_line_break] = STATE(173), - [sym__smart_punctuation] = STATE(173), - [sym_autolink] = STATE(173), - [sym_highlighted] = STATE(173), - [sym_insert] = STATE(173), - [sym_delete] = STATE(173), - [sym_superscript] = STATE(173), - [sym_subscript] = STATE(173), - [sym_footnote_reference] = STATE(173), - [sym__image] = STATE(173), - [sym_full_reference_image] = STATE(173), - [sym_collapsed_reference_image] = STATE(173), - [sym_inline_image] = STATE(173), - [sym__image_description] = STATE(647), - [sym__link] = STATE(173), - [sym_full_reference_link] = STATE(173), - [sym_collapsed_reference_link] = STATE(173), - [sym_inline_link] = STATE(173), - [sym_link_text] = STATE(648), - [sym__comment_with_spaces] = STATE(173), - [sym_span] = STATE(173), - [sym_raw_inline] = STATE(173), - [sym_math] = STATE(173), - [sym_verbatim] = STATE(173), - [sym__todo_highlights] = STATE(173), - [sym_todo] = STATE(173), - [sym_note] = STATE(173), - [sym__symbol_fallback] = STATE(173), - [sym__verbatim_begin] = STATE(843), - [aux_sym__text] = STATE(155), - [aux_sym__inline_repeat1] = STATE(101), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACE_] = ACTIONS(342), - [anon_sym__] = ACTIONS(345), - [anon_sym_LBRACE_STAR] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(516), - [aux_sym_strong_end_token1] = ACTIONS(49), - [anon_sym_BSLASH] = ACTIONS(354), - [sym_quotation_marks] = ACTIONS(357), - [sym_ellipsis] = ACTIONS(357), - [sym_em_dash] = ACTIONS(357), - [sym_en_dash] = ACTIONS(360), - [sym_backslash_escape] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(363), - [anon_sym_LBRACE_EQ] = ACTIONS(366), - [anon_sym_LBRACE_PLUS] = ACTIONS(369), - [anon_sym_LBRACE_DASH] = ACTIONS(372), - [sym_symbol] = ACTIONS(357), - [anon_sym_LBRACE_CARET] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(375), - [anon_sym_LBRACE_TILDE] = ACTIONS(378), - [anon_sym_TILDE] = ACTIONS(378), - [anon_sym_LBRACK_CARET] = ACTIONS(381), - [anon_sym_BANG_LBRACK] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(387), - [anon_sym_LBRACE2] = ACTIONS(360), - [anon_sym_DOLLAR] = ACTIONS(390), - [anon_sym_TODO] = ACTIONS(393), - [anon_sym_WIP] = ACTIONS(393), - [anon_sym_NOTE] = ACTIONS(396), - [anon_sym_INFO] = ACTIONS(396), - [anon_sym_XXX] = ACTIONS(396), - [sym_fixme] = ACTIONS(357), - [anon_sym_PIPE] = ACTIONS(357), - [anon_sym_BQUOTE] = ACTIONS(112), - [sym__whitespace1] = ACTIONS(486), - [sym__newline] = ACTIONS(402), - [aux_sym__text_token1] = ACTIONS(405), + [48] = { + [sym__inline] = STATE(761), + [sym__element] = STATE(119), + [sym_emphasis] = STATE(197), + [sym_emphasis_begin] = STATE(81), + [sym_strong] = STATE(197), + [sym_strong_begin] = STATE(82), + [sym__hard_line_break] = STATE(197), + [sym_hard_line_break] = STATE(197), + [sym__smart_punctuation] = STATE(197), + [sym_autolink] = STATE(197), + [sym_highlighted] = STATE(197), + [sym_insert] = STATE(197), + [sym_delete] = STATE(197), + [sym_superscript] = STATE(197), + [sym_subscript] = STATE(197), + [sym_footnote_reference] = STATE(197), + [sym__image] = STATE(197), + [sym_full_reference_image] = STATE(197), + [sym_collapsed_reference_image] = STATE(197), + [sym_inline_image] = STATE(197), + [sym__image_description] = STATE(654), + [sym__link] = STATE(197), + [sym_full_reference_link] = STATE(197), + [sym_collapsed_reference_link] = STATE(197), + [sym_inline_link] = STATE(197), + [sym_link_text] = STATE(651), + [sym__comment_with_spaces] = STATE(197), + [sym_span] = STATE(197), + [sym_raw_inline] = STATE(197), + [sym_math] = STATE(197), + [sym_verbatim] = STATE(197), + [sym__todo_highlights] = STATE(197), + [sym_todo] = STATE(197), + [sym_note] = STATE(197), + [sym__symbol_fallback] = STATE(197), + [aux_sym__text] = STATE(132), + [aux_sym__inline_repeat1] = STATE(119), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(279), + [anon_sym__] = ACTIONS(282), + [anon_sym_LBRACE_STAR] = ACTIONS(285), + [anon_sym_STAR] = ACTIONS(546), + [aux_sym_strong_end_token1] = ACTIONS(93), + [anon_sym_BSLASH] = ACTIONS(291), + [sym_quotation_marks] = ACTIONS(294), + [sym_ellipsis] = ACTIONS(294), + [sym_em_dash] = ACTIONS(294), + [sym_en_dash] = ACTIONS(297), + [sym_backslash_escape] = ACTIONS(297), + [anon_sym_LT] = ACTIONS(300), + [anon_sym_LBRACE_EQ] = ACTIONS(303), + [anon_sym_LBRACE_PLUS] = ACTIONS(306), + [anon_sym_LBRACE_DASH] = ACTIONS(309), + [sym_symbol] = ACTIONS(294), + [anon_sym_LBRACE_CARET] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(312), + [anon_sym_LBRACE_TILDE] = ACTIONS(315), + [anon_sym_TILDE] = ACTIONS(315), + [anon_sym_LBRACK_CARET] = ACTIONS(318), + [anon_sym_BANG_LBRACK] = ACTIONS(321), + [anon_sym_LBRACK] = ACTIONS(324), + [anon_sym_LBRACE2] = ACTIONS(297), + [anon_sym_DOLLAR] = ACTIONS(327), + [anon_sym_TODO] = ACTIONS(330), + [anon_sym_WIP] = ACTIONS(330), + [anon_sym_NOTE] = ACTIONS(333), + [anon_sym_INFO] = ACTIONS(333), + [anon_sym_XXX] = ACTIONS(333), + [sym_fixme] = ACTIONS(294), + [anon_sym_PIPE] = ACTIONS(294), + [sym__whitespace1] = ACTIONS(510), + [sym__newline] = ACTIONS(339), + [aux_sym__text_token1] = ACTIONS(342), + [sym__verbatim_begin] = ACTIONS(345), }, - [46] = { - [sym__inline] = STATE(783), - [sym__element] = STATE(98), - [sym_emphasis] = STATE(207), - [sym_emphasis_begin] = STATE(89), - [sym_strong] = STATE(207), - [sym_strong_begin] = STATE(72), - [sym__hard_line_break] = STATE(207), - [sym_hard_line_break] = STATE(207), - [sym__smart_punctuation] = STATE(207), - [sym_autolink] = STATE(207), - [sym_highlighted] = STATE(207), - [sym_insert] = STATE(207), - [sym_delete] = STATE(207), - [sym_superscript] = STATE(207), - [sym_subscript] = STATE(207), - [sym_footnote_reference] = STATE(207), - [sym__image] = STATE(207), - [sym_full_reference_image] = STATE(207), - [sym_collapsed_reference_image] = STATE(207), - [sym_inline_image] = STATE(207), - [sym__image_description] = STATE(666), - [sym__link] = STATE(207), - [sym_full_reference_link] = STATE(207), - [sym_collapsed_reference_link] = STATE(207), - [sym_inline_link] = STATE(207), - [sym_link_text] = STATE(667), - [sym__comment_with_spaces] = STATE(207), - [sym_span] = STATE(207), - [sym_raw_inline] = STATE(207), - [sym_math] = STATE(207), - [sym_verbatim] = STATE(207), - [sym__todo_highlights] = STATE(207), - [sym_todo] = STATE(207), - [sym_note] = STATE(207), - [sym__symbol_fallback] = STATE(207), - [sym__verbatim_begin] = STATE(852), - [aux_sym__text] = STATE(139), - [aux_sym__inline_repeat1] = STATE(98), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACE_] = ACTIONS(210), - [anon_sym__] = ACTIONS(213), - [anon_sym_LBRACE_STAR] = ACTIONS(216), - [anon_sym_STAR] = ACTIONS(519), - [aux_sym_strong_end_token1] = ACTIONS(49), - [anon_sym_BSLASH] = ACTIONS(222), - [sym_quotation_marks] = ACTIONS(225), - [sym_ellipsis] = ACTIONS(225), - [sym_em_dash] = ACTIONS(225), - [sym_en_dash] = ACTIONS(228), - [sym_backslash_escape] = ACTIONS(228), - [anon_sym_LT] = ACTIONS(231), - [anon_sym_LBRACE_EQ] = ACTIONS(234), - [anon_sym_LBRACE_PLUS] = ACTIONS(237), - [anon_sym_LBRACE_DASH] = ACTIONS(240), - [sym_symbol] = ACTIONS(225), - [anon_sym_LBRACE_CARET] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(243), - [anon_sym_LBRACE_TILDE] = ACTIONS(246), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_LBRACK_CARET] = ACTIONS(249), - [anon_sym_BANG_LBRACK] = ACTIONS(252), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_LBRACE2] = ACTIONS(228), - [anon_sym_DOLLAR] = ACTIONS(258), - [anon_sym_TODO] = ACTIONS(261), - [anon_sym_WIP] = ACTIONS(261), - [anon_sym_NOTE] = ACTIONS(264), - [anon_sym_INFO] = ACTIONS(264), - [anon_sym_XXX] = ACTIONS(264), - [sym_fixme] = ACTIONS(225), - [anon_sym_PIPE] = ACTIONS(225), - [anon_sym_BQUOTE] = ACTIONS(112), - [sym__whitespace1] = ACTIONS(492), - [sym__newline] = ACTIONS(270), - [aux_sym__text_token1] = ACTIONS(273), + [49] = { + [sym__inline] = STATE(749), + [sym__element] = STATE(77), + [sym_emphasis] = STATE(174), + [sym_emphasis_begin] = STATE(86), + [sym_strong] = STATE(174), + [sym_strong_begin] = STATE(89), + [sym__hard_line_break] = STATE(174), + [sym_hard_line_break] = STATE(174), + [sym__smart_punctuation] = STATE(174), + [sym_autolink] = STATE(174), + [sym_highlighted] = STATE(174), + [sym_insert] = STATE(174), + [sym_delete] = STATE(174), + [sym_superscript] = STATE(174), + [sym_subscript] = STATE(174), + [sym_footnote_reference] = STATE(174), + [sym__image] = STATE(174), + [sym_full_reference_image] = STATE(174), + [sym_collapsed_reference_image] = STATE(174), + [sym_inline_image] = STATE(174), + [sym__image_description] = STATE(630), + [sym__link] = STATE(174), + [sym_full_reference_link] = STATE(174), + [sym_collapsed_reference_link] = STATE(174), + [sym_inline_link] = STATE(174), + [sym_link_text] = STATE(631), + [sym__comment_with_spaces] = STATE(174), + [sym_span] = STATE(174), + [sym_raw_inline] = STATE(174), + [sym_math] = STATE(174), + [sym_verbatim] = STATE(174), + [sym__todo_highlights] = STATE(174), + [sym_todo] = STATE(174), + [sym_note] = STATE(174), + [sym__symbol_fallback] = STATE(174), + [aux_sym__text] = STATE(148), + [aux_sym__inline_repeat1] = STATE(77), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(348), + [anon_sym__] = ACTIONS(351), + [anon_sym_LBRACE_STAR] = ACTIONS(354), + [anon_sym_STAR] = ACTIONS(357), + [anon_sym_BSLASH] = ACTIONS(360), + [sym_quotation_marks] = ACTIONS(363), + [sym_ellipsis] = ACTIONS(363), + [sym_em_dash] = ACTIONS(363), + [sym_en_dash] = ACTIONS(366), + [sym_backslash_escape] = ACTIONS(366), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_LBRACE_EQ] = ACTIONS(372), + [anon_sym_LBRACE_PLUS] = ACTIONS(375), + [anon_sym_LBRACE_DASH] = ACTIONS(378), + [anon_sym_DASH_RBRACE] = ACTIONS(93), + [sym_symbol] = ACTIONS(363), + [anon_sym_LBRACE_CARET] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(381), + [anon_sym_LBRACE_TILDE] = ACTIONS(384), + [anon_sym_TILDE] = ACTIONS(384), + [anon_sym_LBRACK_CARET] = ACTIONS(387), + [anon_sym_BANG_LBRACK] = ACTIONS(390), + [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_LBRACE2] = ACTIONS(366), + [anon_sym_DOLLAR] = ACTIONS(396), + [anon_sym_TODO] = ACTIONS(399), + [anon_sym_WIP] = ACTIONS(399), + [anon_sym_NOTE] = ACTIONS(402), + [anon_sym_INFO] = ACTIONS(402), + [anon_sym_XXX] = ACTIONS(402), + [sym_fixme] = ACTIONS(363), + [anon_sym_PIPE] = ACTIONS(363), + [sym__whitespace1] = ACTIONS(405), + [sym__newline] = ACTIONS(408), + [aux_sym__text_token1] = ACTIONS(411), + [sym__verbatim_begin] = ACTIONS(414), }, - [47] = { - [sym__inline] = STATE(846), - [sym__element] = STATE(101), - [sym_emphasis] = STATE(173), - [sym_emphasis_begin] = STATE(87), - [sym_strong] = STATE(173), - [sym_strong_begin] = STATE(76), - [sym__hard_line_break] = STATE(173), - [sym_hard_line_break] = STATE(173), - [sym__smart_punctuation] = STATE(173), - [sym_autolink] = STATE(173), - [sym_highlighted] = STATE(173), - [sym_insert] = STATE(173), - [sym_delete] = STATE(173), - [sym_superscript] = STATE(173), - [sym_subscript] = STATE(173), - [sym_footnote_reference] = STATE(173), - [sym__image] = STATE(173), - [sym_full_reference_image] = STATE(173), - [sym_collapsed_reference_image] = STATE(173), - [sym_inline_image] = STATE(173), - [sym__image_description] = STATE(647), - [sym__link] = STATE(173), - [sym_full_reference_link] = STATE(173), - [sym_collapsed_reference_link] = STATE(173), - [sym_inline_link] = STATE(173), - [sym_link_text] = STATE(648), - [sym__comment_with_spaces] = STATE(173), - [sym_span] = STATE(173), - [sym_raw_inline] = STATE(173), - [sym_math] = STATE(173), - [sym_verbatim] = STATE(173), - [sym__todo_highlights] = STATE(173), - [sym_todo] = STATE(173), - [sym_note] = STATE(173), - [sym__symbol_fallback] = STATE(173), - [sym__verbatim_begin] = STATE(843), - [aux_sym__text] = STATE(155), - [aux_sym__inline_repeat1] = STATE(101), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACE_] = ACTIONS(342), - [anon_sym__] = ACTIONS(345), - [anon_sym_LBRACE_STAR] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(351), - [anon_sym_BSLASH] = ACTIONS(354), - [sym_quotation_marks] = ACTIONS(357), - [sym_ellipsis] = ACTIONS(357), - [sym_em_dash] = ACTIONS(357), - [sym_en_dash] = ACTIONS(360), - [sym_backslash_escape] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(363), - [anon_sym_LBRACE_EQ] = ACTIONS(366), - [anon_sym_LBRACE_PLUS] = ACTIONS(369), - [anon_sym_LBRACE_DASH] = ACTIONS(372), - [anon_sym_DASH_RBRACE] = ACTIONS(49), - [sym_symbol] = ACTIONS(357), - [anon_sym_LBRACE_CARET] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(375), - [anon_sym_LBRACE_TILDE] = ACTIONS(378), - [anon_sym_TILDE] = ACTIONS(378), - [anon_sym_LBRACK_CARET] = ACTIONS(381), - [anon_sym_BANG_LBRACK] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(387), - [anon_sym_LBRACE2] = ACTIONS(360), - [anon_sym_DOLLAR] = ACTIONS(390), - [anon_sym_TODO] = ACTIONS(393), - [anon_sym_WIP] = ACTIONS(393), - [anon_sym_NOTE] = ACTIONS(396), - [anon_sym_INFO] = ACTIONS(396), - [anon_sym_XXX] = ACTIONS(396), - [sym_fixme] = ACTIONS(357), - [anon_sym_PIPE] = ACTIONS(357), - [anon_sym_BQUOTE] = ACTIONS(112), - [sym__whitespace1] = ACTIONS(399), - [sym__newline] = ACTIONS(402), - [aux_sym__text_token1] = ACTIONS(405), + [50] = { + [sym__inline] = STATE(886), + [sym__element] = STATE(103), + [sym_emphasis] = STATE(200), + [sym_emphasis_begin] = STATE(101), + [sym_strong] = STATE(200), + [sym_strong_begin] = STATE(104), + [sym__hard_line_break] = STATE(200), + [sym_hard_line_break] = STATE(200), + [sym__smart_punctuation] = STATE(200), + [sym_autolink] = STATE(200), + [sym_highlighted] = STATE(200), + [sym_insert] = STATE(200), + [sym_delete] = STATE(200), + [sym_superscript] = STATE(200), + [sym_subscript] = STATE(200), + [sym_footnote_reference] = STATE(200), + [sym__image] = STATE(200), + [sym_full_reference_image] = STATE(200), + [sym_collapsed_reference_image] = STATE(200), + [sym_inline_image] = STATE(200), + [sym__image_description] = STATE(642), + [sym__link] = STATE(200), + [sym_full_reference_link] = STATE(200), + [sym_collapsed_reference_link] = STATE(200), + [sym_inline_link] = STATE(200), + [sym_link_text] = STATE(643), + [sym__comment_with_spaces] = STATE(200), + [sym_span] = STATE(200), + [sym_raw_inline] = STATE(200), + [sym_math] = STATE(200), + [sym_verbatim] = STATE(200), + [sym__todo_highlights] = STATE(200), + [sym_todo] = STATE(200), + [sym_note] = STATE(200), + [sym__symbol_fallback] = STATE(200), + [aux_sym__text] = STATE(138), + [aux_sym__inline_repeat1] = STATE(103), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(51), + [anon_sym__] = ACTIONS(54), + [anon_sym_LBRACE_STAR] = ACTIONS(57), + [anon_sym_STAR] = ACTIONS(60), + [anon_sym_BSLASH] = ACTIONS(63), + [sym_quotation_marks] = ACTIONS(66), + [sym_ellipsis] = ACTIONS(66), + [sym_em_dash] = ACTIONS(66), + [sym_en_dash] = ACTIONS(69), + [sym_backslash_escape] = ACTIONS(69), + [anon_sym_LT] = ACTIONS(72), + [anon_sym_LBRACE_EQ] = ACTIONS(75), + [anon_sym_LBRACE_PLUS] = ACTIONS(78), + [anon_sym_LBRACE_DASH] = ACTIONS(81), + [sym_symbol] = ACTIONS(66), + [anon_sym_LBRACE_CARET] = ACTIONS(84), + [anon_sym_CARET] = ACTIONS(84), + [anon_sym_LBRACE_TILDE] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_LBRACK_CARET] = ACTIONS(95), + [anon_sym_BANG_LBRACK] = ACTIONS(100), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_RBRACK2] = ACTIONS(93), + [anon_sym_LBRACE2] = ACTIONS(69), + [anon_sym_DOLLAR] = ACTIONS(106), + [anon_sym_TODO] = ACTIONS(109), + [anon_sym_WIP] = ACTIONS(109), + [anon_sym_NOTE] = ACTIONS(112), + [anon_sym_INFO] = ACTIONS(112), + [anon_sym_XXX] = ACTIONS(112), + [sym_fixme] = ACTIONS(66), + [anon_sym_PIPE] = ACTIONS(66), + [sym__whitespace1] = ACTIONS(115), + [sym__newline] = ACTIONS(118), + [aux_sym__text_token1] = ACTIONS(121), + [sym__verbatim_begin] = ACTIONS(124), }, - [48] = { - [sym__inline] = STATE(815), - [sym__element] = STATE(109), - [sym_emphasis] = STATE(221), - [sym_emphasis_begin] = STATE(82), - [sym_strong] = STATE(221), - [sym_strong_begin] = STATE(83), - [sym__hard_line_break] = STATE(221), - [sym_hard_line_break] = STATE(221), - [sym__smart_punctuation] = STATE(221), - [sym_autolink] = STATE(221), - [sym_highlighted] = STATE(221), - [sym_insert] = STATE(221), - [sym_delete] = STATE(221), - [sym_superscript] = STATE(221), - [sym_subscript] = STATE(221), - [sym_footnote_reference] = STATE(221), - [sym__image] = STATE(221), - [sym_full_reference_image] = STATE(221), - [sym_collapsed_reference_image] = STATE(221), - [sym_inline_image] = STATE(221), - [sym__image_description] = STATE(669), - [sym__link] = STATE(221), - [sym_full_reference_link] = STATE(221), - [sym_collapsed_reference_link] = STATE(221), - [sym_inline_link] = STATE(221), - [sym_link_text] = STATE(657), - [sym__comment_with_spaces] = STATE(221), - [sym_span] = STATE(221), - [sym_raw_inline] = STATE(221), - [sym_math] = STATE(221), - [sym_verbatim] = STATE(221), - [sym__todo_highlights] = STATE(221), - [sym_todo] = STATE(221), - [sym_note] = STATE(221), - [sym__symbol_fallback] = STATE(221), - [sym__verbatim_begin] = STATE(834), - [aux_sym__text] = STATE(134), - [aux_sym__inline_repeat1] = STATE(109), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACE_] = ACTIONS(408), - [anon_sym__] = ACTIONS(411), - [anon_sym_LBRACE_STAR] = ACTIONS(414), - [anon_sym_STAR] = ACTIONS(417), - [anon_sym_BSLASH] = ACTIONS(420), - [sym_quotation_marks] = ACTIONS(423), - [sym_ellipsis] = ACTIONS(423), - [sym_em_dash] = ACTIONS(423), - [sym_en_dash] = ACTIONS(426), - [sym_backslash_escape] = ACTIONS(426), - [anon_sym_LT] = ACTIONS(429), - [anon_sym_LBRACE_EQ] = ACTIONS(432), - [anon_sym_LBRACE_PLUS] = ACTIONS(435), - [anon_sym_LBRACE_DASH] = ACTIONS(438), - [anon_sym_DASH_RBRACE] = ACTIONS(49), - [sym_symbol] = ACTIONS(423), - [anon_sym_LBRACE_CARET] = ACTIONS(441), - [anon_sym_CARET] = ACTIONS(441), - [anon_sym_LBRACE_TILDE] = ACTIONS(444), - [anon_sym_TILDE] = ACTIONS(444), - [anon_sym_LBRACK_CARET] = ACTIONS(447), - [anon_sym_BANG_LBRACK] = ACTIONS(450), - [anon_sym_LBRACK] = ACTIONS(453), - [anon_sym_LBRACE2] = ACTIONS(426), - [anon_sym_DOLLAR] = ACTIONS(456), - [anon_sym_TODO] = ACTIONS(459), - [anon_sym_WIP] = ACTIONS(459), - [anon_sym_NOTE] = ACTIONS(462), - [anon_sym_INFO] = ACTIONS(462), - [anon_sym_XXX] = ACTIONS(462), - [sym_fixme] = ACTIONS(423), - [anon_sym_PIPE] = ACTIONS(423), - [anon_sym_BQUOTE] = ACTIONS(112), - [sym__whitespace1] = ACTIONS(465), - [sym__newline] = ACTIONS(468), - [aux_sym__text_token1] = ACTIONS(471), + [51] = { + [sym__inline] = STATE(701), + [sym__element] = STATE(85), + [sym_emphasis] = STATE(175), + [sym_emphasis_begin] = STATE(94), + [sym_strong] = STATE(175), + [sym_strong_begin] = STATE(95), + [sym__hard_line_break] = STATE(175), + [sym_hard_line_break] = STATE(175), + [sym__smart_punctuation] = STATE(175), + [sym_autolink] = STATE(175), + [sym_highlighted] = STATE(175), + [sym_insert] = STATE(175), + [sym_delete] = STATE(175), + [sym_superscript] = STATE(175), + [sym_subscript] = STATE(175), + [sym_footnote_reference] = STATE(175), + [sym__image] = STATE(175), + [sym_full_reference_image] = STATE(175), + [sym_collapsed_reference_image] = STATE(175), + [sym_inline_image] = STATE(175), + [sym__image_description] = STATE(652), + [sym__link] = STATE(175), + [sym_full_reference_link] = STATE(175), + [sym_collapsed_reference_link] = STATE(175), + [sym_inline_link] = STATE(175), + [sym_link_text] = STATE(649), + [sym__comment_with_spaces] = STATE(175), + [sym_span] = STATE(175), + [sym_raw_inline] = STATE(175), + [sym_math] = STATE(175), + [sym_verbatim] = STATE(175), + [sym__todo_highlights] = STATE(175), + [sym_todo] = STATE(175), + [sym_note] = STATE(175), + [sym__symbol_fallback] = STATE(175), + [aux_sym__text] = STATE(156), + [aux_sym__inline_repeat1] = STATE(85), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(417), + [anon_sym__] = ACTIONS(420), + [anon_sym_LBRACE_STAR] = ACTIONS(423), + [anon_sym_STAR] = ACTIONS(426), + [anon_sym_BSLASH] = ACTIONS(429), + [sym_quotation_marks] = ACTIONS(432), + [sym_ellipsis] = ACTIONS(432), + [sym_em_dash] = ACTIONS(432), + [sym_en_dash] = ACTIONS(435), + [sym_backslash_escape] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(438), + [anon_sym_LBRACE_EQ] = ACTIONS(441), + [anon_sym_EQ_RBRACE] = ACTIONS(93), + [anon_sym_LBRACE_PLUS] = ACTIONS(444), + [anon_sym_LBRACE_DASH] = ACTIONS(447), + [sym_symbol] = ACTIONS(432), + [anon_sym_LBRACE_CARET] = ACTIONS(450), + [anon_sym_CARET] = ACTIONS(450), + [anon_sym_LBRACE_TILDE] = ACTIONS(453), + [anon_sym_TILDE] = ACTIONS(453), + [anon_sym_LBRACK_CARET] = ACTIONS(456), + [anon_sym_BANG_LBRACK] = ACTIONS(459), + [anon_sym_LBRACK] = ACTIONS(462), + [anon_sym_LBRACE2] = ACTIONS(435), + [anon_sym_DOLLAR] = ACTIONS(465), + [anon_sym_TODO] = ACTIONS(468), + [anon_sym_WIP] = ACTIONS(468), + [anon_sym_NOTE] = ACTIONS(471), + [anon_sym_INFO] = ACTIONS(471), + [anon_sym_XXX] = ACTIONS(471), + [sym_fixme] = ACTIONS(432), + [anon_sym_PIPE] = ACTIONS(432), + [sym__whitespace1] = ACTIONS(474), + [sym__newline] = ACTIONS(477), + [aux_sym__text_token1] = ACTIONS(480), + [sym__verbatim_begin] = ACTIONS(483), }, - [49] = { - [sym__inline] = STATE(746), - [sym__element] = STATE(84), + [52] = { + [sym__inline] = STATE(756), + [sym__element] = STATE(119), [sym_emphasis] = STATE(197), - [sym_emphasis_begin] = STATE(97), + [sym_emphasis_begin] = STATE(81), [sym_strong] = STATE(197), - [sym_strong_begin] = STATE(100), + [sym_strong_begin] = STATE(82), [sym__hard_line_break] = STATE(197), [sym_hard_line_break] = STATE(197), [sym__smart_punctuation] = STATE(197), @@ -11984,12 +11990,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_full_reference_image] = STATE(197), [sym_collapsed_reference_image] = STATE(197), [sym_inline_image] = STATE(197), - [sym__image_description] = STATE(676), + [sym__image_description] = STATE(654), [sym__link] = STATE(197), [sym_full_reference_link] = STATE(197), [sym_collapsed_reference_link] = STATE(197), [sym_inline_link] = STATE(197), - [sym_link_text] = STATE(677), + [sym_link_text] = STATE(651), [sym__comment_with_spaces] = STATE(197), [sym_span] = STATE(197), [sym_raw_inline] = STATE(197), @@ -11999,54 +12005,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(197), [sym_note] = STATE(197), [sym__symbol_fallback] = STATE(197), - [sym__verbatim_begin] = STATE(861), - [aux_sym__text] = STATE(159), - [aux_sym__inline_repeat1] = STATE(84), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACE_] = ACTIONS(276), - [anon_sym__] = ACTIONS(279), - [anon_sym_LBRACE_STAR] = ACTIONS(282), - [anon_sym_STAR] = ACTIONS(522), - [aux_sym_strong_end_token1] = ACTIONS(49), - [anon_sym_BSLASH] = ACTIONS(288), - [sym_quotation_marks] = ACTIONS(291), - [sym_ellipsis] = ACTIONS(291), - [sym_em_dash] = ACTIONS(291), - [sym_en_dash] = ACTIONS(294), - [sym_backslash_escape] = ACTIONS(294), - [anon_sym_LT] = ACTIONS(297), - [anon_sym_LBRACE_EQ] = ACTIONS(300), - [anon_sym_LBRACE_PLUS] = ACTIONS(303), - [anon_sym_LBRACE_DASH] = ACTIONS(306), - [sym_symbol] = ACTIONS(291), - [anon_sym_LBRACE_CARET] = ACTIONS(309), - [anon_sym_CARET] = ACTIONS(309), - [anon_sym_LBRACE_TILDE] = ACTIONS(312), - [anon_sym_TILDE] = ACTIONS(312), - [anon_sym_LBRACK_CARET] = ACTIONS(315), - [anon_sym_BANG_LBRACK] = ACTIONS(318), - [anon_sym_LBRACK] = ACTIONS(321), - [anon_sym_LBRACE2] = ACTIONS(294), - [anon_sym_DOLLAR] = ACTIONS(324), - [anon_sym_TODO] = ACTIONS(327), - [anon_sym_WIP] = ACTIONS(327), - [anon_sym_NOTE] = ACTIONS(330), - [anon_sym_INFO] = ACTIONS(330), - [anon_sym_XXX] = ACTIONS(330), - [sym_fixme] = ACTIONS(291), - [anon_sym_PIPE] = ACTIONS(291), - [anon_sym_BQUOTE] = ACTIONS(112), - [sym__whitespace1] = ACTIONS(525), - [sym__newline] = ACTIONS(336), - [aux_sym__text_token1] = ACTIONS(339), + [aux_sym__text] = STATE(132), + [aux_sym__inline_repeat1] = STATE(119), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(279), + [anon_sym__] = ACTIONS(282), + [anon_sym_LBRACE_STAR] = ACTIONS(285), + [anon_sym_STAR] = ACTIONS(288), + [anon_sym_BSLASH] = ACTIONS(291), + [sym_quotation_marks] = ACTIONS(294), + [sym_ellipsis] = ACTIONS(294), + [sym_em_dash] = ACTIONS(294), + [sym_en_dash] = ACTIONS(297), + [sym_backslash_escape] = ACTIONS(297), + [anon_sym_LT] = ACTIONS(300), + [anon_sym_LBRACE_EQ] = ACTIONS(303), + [anon_sym_LBRACE_PLUS] = ACTIONS(306), + [anon_sym_LBRACE_DASH] = ACTIONS(309), + [anon_sym_DASH_RBRACE] = ACTIONS(93), + [sym_symbol] = ACTIONS(294), + [anon_sym_LBRACE_CARET] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(312), + [anon_sym_LBRACE_TILDE] = ACTIONS(315), + [anon_sym_TILDE] = ACTIONS(315), + [anon_sym_LBRACK_CARET] = ACTIONS(318), + [anon_sym_BANG_LBRACK] = ACTIONS(321), + [anon_sym_LBRACK] = ACTIONS(324), + [anon_sym_LBRACE2] = ACTIONS(297), + [anon_sym_DOLLAR] = ACTIONS(327), + [anon_sym_TODO] = ACTIONS(330), + [anon_sym_WIP] = ACTIONS(330), + [anon_sym_NOTE] = ACTIONS(333), + [anon_sym_INFO] = ACTIONS(333), + [anon_sym_XXX] = ACTIONS(333), + [sym_fixme] = ACTIONS(294), + [anon_sym_PIPE] = ACTIONS(294), + [sym__whitespace1] = ACTIONS(336), + [sym__newline] = ACTIONS(339), + [aux_sym__text_token1] = ACTIONS(342), + [sym__verbatim_begin] = ACTIONS(345), }, - [50] = { - [sym__inline] = STATE(749), - [sym__element] = STATE(96), + [53] = { + [sym__inline] = STATE(762), + [sym__element] = STATE(77), + [sym_emphasis] = STATE(174), + [sym_emphasis_begin] = STATE(86), + [sym_strong] = STATE(174), + [sym_strong_begin] = STATE(89), + [sym__hard_line_break] = STATE(174), + [sym_hard_line_break] = STATE(174), + [sym__smart_punctuation] = STATE(174), + [sym_autolink] = STATE(174), + [sym_highlighted] = STATE(174), + [sym_insert] = STATE(174), + [sym_delete] = STATE(174), + [sym_superscript] = STATE(174), + [sym_subscript] = STATE(174), + [sym_footnote_reference] = STATE(174), + [sym__image] = STATE(174), + [sym_full_reference_image] = STATE(174), + [sym_collapsed_reference_image] = STATE(174), + [sym_inline_image] = STATE(174), + [sym__image_description] = STATE(630), + [sym__link] = STATE(174), + [sym_full_reference_link] = STATE(174), + [sym_collapsed_reference_link] = STATE(174), + [sym_inline_link] = STATE(174), + [sym_link_text] = STATE(631), + [sym__comment_with_spaces] = STATE(174), + [sym_span] = STATE(174), + [sym_raw_inline] = STATE(174), + [sym_math] = STATE(174), + [sym_verbatim] = STATE(174), + [sym__todo_highlights] = STATE(174), + [sym_todo] = STATE(174), + [sym_note] = STATE(174), + [sym__symbol_fallback] = STATE(174), + [aux_sym__text] = STATE(148), + [aux_sym__inline_repeat1] = STATE(77), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(348), + [anon_sym__] = ACTIONS(351), + [anon_sym_LBRACE_STAR] = ACTIONS(354), + [anon_sym_STAR] = ACTIONS(549), + [aux_sym_strong_end_token1] = ACTIONS(93), + [anon_sym_BSLASH] = ACTIONS(360), + [sym_quotation_marks] = ACTIONS(363), + [sym_ellipsis] = ACTIONS(363), + [sym_em_dash] = ACTIONS(363), + [sym_en_dash] = ACTIONS(366), + [sym_backslash_escape] = ACTIONS(366), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_LBRACE_EQ] = ACTIONS(372), + [anon_sym_LBRACE_PLUS] = ACTIONS(375), + [anon_sym_LBRACE_DASH] = ACTIONS(378), + [sym_symbol] = ACTIONS(363), + [anon_sym_LBRACE_CARET] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(381), + [anon_sym_LBRACE_TILDE] = ACTIONS(384), + [anon_sym_TILDE] = ACTIONS(384), + [anon_sym_LBRACK_CARET] = ACTIONS(387), + [anon_sym_BANG_LBRACK] = ACTIONS(390), + [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_LBRACE2] = ACTIONS(366), + [anon_sym_DOLLAR] = ACTIONS(396), + [anon_sym_TODO] = ACTIONS(399), + [anon_sym_WIP] = ACTIONS(399), + [anon_sym_NOTE] = ACTIONS(402), + [anon_sym_INFO] = ACTIONS(402), + [anon_sym_XXX] = ACTIONS(402), + [sym_fixme] = ACTIONS(363), + [anon_sym_PIPE] = ACTIONS(363), + [sym__whitespace1] = ACTIONS(516), + [sym__newline] = ACTIONS(408), + [aux_sym__text_token1] = ACTIONS(411), + [sym__verbatim_begin] = ACTIONS(414), + }, + [54] = { + [sym__inline] = STATE(711), + [sym__element] = STATE(120), [sym_emphasis] = STATE(182), - [sym_emphasis_begin] = STATE(103), + [sym_emphasis_begin] = STATE(97), [sym_strong] = STATE(182), - [sym_strong_begin] = STATE(104), + [sym_strong_begin] = STATE(99), [sym__hard_line_break] = STATE(182), [sym_hard_line_break] = STATE(182), [sym__smart_punctuation] = STATE(182), @@ -12061,12 +12142,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_full_reference_image] = STATE(182), [sym_collapsed_reference_image] = STATE(182), [sym_inline_image] = STATE(182), - [sym__image_description] = STATE(672), + [sym__image_description] = STATE(628), [sym__link] = STATE(182), [sym_full_reference_link] = STATE(182), [sym_collapsed_reference_link] = STATE(182), [sym_inline_link] = STATE(182), - [sym_link_text] = STATE(671), + [sym_link_text] = STATE(627), [sym__comment_with_spaces] = STATE(182), [sym_span] = STATE(182), [sym_raw_inline] = STATE(182), @@ -12076,15 +12157,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(182), [sym_note] = STATE(182), [sym__symbol_fallback] = STATE(182), - [sym__verbatim_begin] = STATE(870), - [aux_sym__text] = STATE(150), - [aux_sym__inline_repeat1] = STATE(96), - [anon_sym_LBRACE] = ACTIONS(51), + [aux_sym__text] = STATE(136), + [aux_sym__inline_repeat1] = STATE(120), + [anon_sym_LBRACE] = ACTIONS(49), [anon_sym_LBRACE_] = ACTIONS(141), - [anon_sym__] = ACTIONS(144), + [anon_sym__] = ACTIONS(486), [anon_sym_LBRACE_STAR] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(528), - [aux_sym_strong_end_token1] = ACTIONS(49), + [anon_sym_STAR] = ACTIONS(150), [anon_sym_BSLASH] = ACTIONS(153), [sym_quotation_marks] = ACTIONS(156), [sym_ellipsis] = ACTIONS(156), @@ -12100,371 +12179,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(174), [anon_sym_LBRACE_TILDE] = ACTIONS(177), [anon_sym_TILDE] = ACTIONS(177), - [anon_sym_LBRACK_CARET] = ACTIONS(183), - [anon_sym_BANG_LBRACK] = ACTIONS(186), - [anon_sym_LBRACK] = ACTIONS(189), + [anon_sym_LBRACK_CARET] = ACTIONS(180), + [anon_sym_BANG_LBRACK] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(186), + [anon_sym_RBRACK2] = ACTIONS(93), [anon_sym_LBRACE2] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(192), - [anon_sym_TODO] = ACTIONS(195), - [anon_sym_WIP] = ACTIONS(195), - [anon_sym_NOTE] = ACTIONS(198), - [anon_sym_INFO] = ACTIONS(198), - [anon_sym_XXX] = ACTIONS(198), + [anon_sym_DOLLAR] = ACTIONS(189), + [anon_sym_TODO] = ACTIONS(192), + [anon_sym_WIP] = ACTIONS(192), + [anon_sym_NOTE] = ACTIONS(195), + [anon_sym_INFO] = ACTIONS(195), + [anon_sym_XXX] = ACTIONS(195), [sym_fixme] = ACTIONS(156), [anon_sym_PIPE] = ACTIONS(156), - [anon_sym_BQUOTE] = ACTIONS(112), - [sym__whitespace1] = ACTIONS(498), - [sym__newline] = ACTIONS(204), - [aux_sym__text_token1] = ACTIONS(207), - }, - [51] = { - [sym__inline] = STATE(891), - [sym__element] = STATE(109), - [sym_emphasis] = STATE(221), - [sym_emphasis_begin] = STATE(82), - [sym_strong] = STATE(221), - [sym_strong_begin] = STATE(83), - [sym__hard_line_break] = STATE(221), - [sym_hard_line_break] = STATE(221), - [sym__smart_punctuation] = STATE(221), - [sym_autolink] = STATE(221), - [sym_highlighted] = STATE(221), - [sym_insert] = STATE(221), - [sym_delete] = STATE(221), - [sym_superscript] = STATE(221), - [sym_subscript] = STATE(221), - [sym_footnote_reference] = STATE(221), - [sym__image] = STATE(221), - [sym_full_reference_image] = STATE(221), - [sym_collapsed_reference_image] = STATE(221), - [sym_inline_image] = STATE(221), - [sym__image_description] = STATE(669), - [sym__link] = STATE(221), - [sym_full_reference_link] = STATE(221), - [sym_collapsed_reference_link] = STATE(221), - [sym_inline_link] = STATE(221), - [sym_link_text] = STATE(657), - [sym__comment_with_spaces] = STATE(221), - [sym_span] = STATE(221), - [sym_raw_inline] = STATE(221), - [sym_math] = STATE(221), - [sym_verbatim] = STATE(221), - [sym__todo_highlights] = STATE(221), - [sym_todo] = STATE(221), - [sym_note] = STATE(221), - [sym__symbol_fallback] = STATE(221), - [sym__verbatim_begin] = STATE(834), - [aux_sym__text] = STATE(134), - [aux_sym__inline_repeat1] = STATE(109), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACE_] = ACTIONS(408), - [anon_sym__] = ACTIONS(411), - [anon_sym_LBRACE_STAR] = ACTIONS(414), - [anon_sym_STAR] = ACTIONS(417), - [anon_sym_BSLASH] = ACTIONS(420), - [sym_quotation_marks] = ACTIONS(423), - [sym_ellipsis] = ACTIONS(423), - [sym_em_dash] = ACTIONS(423), - [sym_en_dash] = ACTIONS(426), - [sym_backslash_escape] = ACTIONS(426), - [anon_sym_LT] = ACTIONS(429), - [anon_sym_LBRACE_EQ] = ACTIONS(432), - [anon_sym_LBRACE_PLUS] = ACTIONS(435), - [anon_sym_LBRACE_DASH] = ACTIONS(438), - [sym_symbol] = ACTIONS(423), - [anon_sym_LBRACE_CARET] = ACTIONS(441), - [anon_sym_CARET] = ACTIONS(531), - [anon_sym_CARET_RBRACE] = ACTIONS(49), - [anon_sym_LBRACE_TILDE] = ACTIONS(444), - [anon_sym_TILDE] = ACTIONS(444), - [anon_sym_LBRACK_CARET] = ACTIONS(447), - [anon_sym_BANG_LBRACK] = ACTIONS(450), - [anon_sym_LBRACK] = ACTIONS(453), - [anon_sym_LBRACE2] = ACTIONS(426), - [anon_sym_DOLLAR] = ACTIONS(456), - [anon_sym_TODO] = ACTIONS(459), - [anon_sym_WIP] = ACTIONS(459), - [anon_sym_NOTE] = ACTIONS(462), - [anon_sym_INFO] = ACTIONS(462), - [anon_sym_XXX] = ACTIONS(462), - [sym_fixme] = ACTIONS(423), - [anon_sym_PIPE] = ACTIONS(423), - [anon_sym_BQUOTE] = ACTIONS(112), - [sym__whitespace1] = ACTIONS(465), - [sym__newline] = ACTIONS(468), - [aux_sym__text_token1] = ACTIONS(471), - }, - [52] = { - [sym__inline] = STATE(869), - [sym__element] = STATE(109), - [sym_emphasis] = STATE(221), - [sym_emphasis_begin] = STATE(82), - [sym_strong] = STATE(221), - [sym_strong_begin] = STATE(83), - [sym__hard_line_break] = STATE(221), - [sym_hard_line_break] = STATE(221), - [sym__smart_punctuation] = STATE(221), - [sym_autolink] = STATE(221), - [sym_highlighted] = STATE(221), - [sym_insert] = STATE(221), - [sym_delete] = STATE(221), - [sym_superscript] = STATE(221), - [sym_subscript] = STATE(221), - [sym_footnote_reference] = STATE(221), - [sym__image] = STATE(221), - [sym_full_reference_image] = STATE(221), - [sym_collapsed_reference_image] = STATE(221), - [sym_inline_image] = STATE(221), - [sym__image_description] = STATE(669), - [sym__link] = STATE(221), - [sym_full_reference_link] = STATE(221), - [sym_collapsed_reference_link] = STATE(221), - [sym_inline_link] = STATE(221), - [sym_link_text] = STATE(657), - [sym__comment_with_spaces] = STATE(221), - [sym_span] = STATE(221), - [sym_raw_inline] = STATE(221), - [sym_math] = STATE(221), - [sym_verbatim] = STATE(221), - [sym__todo_highlights] = STATE(221), - [sym_todo] = STATE(221), - [sym_note] = STATE(221), - [sym__symbol_fallback] = STATE(221), - [sym__verbatim_begin] = STATE(834), - [aux_sym__text] = STATE(134), - [aux_sym__inline_repeat1] = STATE(109), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACE_] = ACTIONS(408), - [anon_sym__] = ACTIONS(411), - [anon_sym_LBRACE_STAR] = ACTIONS(414), - [anon_sym_STAR] = ACTIONS(417), - [anon_sym_BSLASH] = ACTIONS(420), - [sym_quotation_marks] = ACTIONS(423), - [sym_ellipsis] = ACTIONS(423), - [sym_em_dash] = ACTIONS(423), - [sym_en_dash] = ACTIONS(426), - [sym_backslash_escape] = ACTIONS(426), - [anon_sym_LT] = ACTIONS(429), - [anon_sym_LBRACE_EQ] = ACTIONS(432), - [anon_sym_LBRACE_PLUS] = ACTIONS(435), - [anon_sym_PLUS_RBRACE] = ACTIONS(49), - [anon_sym_LBRACE_DASH] = ACTIONS(438), - [sym_symbol] = ACTIONS(423), - [anon_sym_LBRACE_CARET] = ACTIONS(441), - [anon_sym_CARET] = ACTIONS(441), - [anon_sym_LBRACE_TILDE] = ACTIONS(444), - [anon_sym_TILDE] = ACTIONS(444), - [anon_sym_LBRACK_CARET] = ACTIONS(447), - [anon_sym_BANG_LBRACK] = ACTIONS(450), - [anon_sym_LBRACK] = ACTIONS(453), - [anon_sym_LBRACE2] = ACTIONS(426), - [anon_sym_DOLLAR] = ACTIONS(456), - [anon_sym_TODO] = ACTIONS(459), - [anon_sym_WIP] = ACTIONS(459), - [anon_sym_NOTE] = ACTIONS(462), - [anon_sym_INFO] = ACTIONS(462), - [anon_sym_XXX] = ACTIONS(462), - [sym_fixme] = ACTIONS(423), - [anon_sym_PIPE] = ACTIONS(423), - [anon_sym_BQUOTE] = ACTIONS(112), - [sym__whitespace1] = ACTIONS(465), - [sym__newline] = ACTIONS(468), - [aux_sym__text_token1] = ACTIONS(471), - }, - [53] = { - [sym__inline] = STATE(883), - [sym__element] = STATE(101), - [sym_emphasis] = STATE(173), - [sym_emphasis_begin] = STATE(87), - [sym_strong] = STATE(173), - [sym_strong_begin] = STATE(76), - [sym__hard_line_break] = STATE(173), - [sym_hard_line_break] = STATE(173), - [sym__smart_punctuation] = STATE(173), - [sym_autolink] = STATE(173), - [sym_highlighted] = STATE(173), - [sym_insert] = STATE(173), - [sym_delete] = STATE(173), - [sym_superscript] = STATE(173), - [sym_subscript] = STATE(173), - [sym_footnote_reference] = STATE(173), - [sym__image] = STATE(173), - [sym_full_reference_image] = STATE(173), - [sym_collapsed_reference_image] = STATE(173), - [sym_inline_image] = STATE(173), - [sym__image_description] = STATE(647), - [sym__link] = STATE(173), - [sym_full_reference_link] = STATE(173), - [sym_collapsed_reference_link] = STATE(173), - [sym_inline_link] = STATE(173), - [sym_link_text] = STATE(648), - [sym__comment_with_spaces] = STATE(173), - [sym_span] = STATE(173), - [sym_raw_inline] = STATE(173), - [sym_math] = STATE(173), - [sym_verbatim] = STATE(173), - [sym__todo_highlights] = STATE(173), - [sym_todo] = STATE(173), - [sym_note] = STATE(173), - [sym__symbol_fallback] = STATE(173), - [sym__verbatim_begin] = STATE(843), - [aux_sym__text] = STATE(155), - [aux_sym__inline_repeat1] = STATE(101), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACE_] = ACTIONS(342), - [anon_sym__] = ACTIONS(345), - [anon_sym_LBRACE_STAR] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(351), - [anon_sym_BSLASH] = ACTIONS(354), - [sym_quotation_marks] = ACTIONS(357), - [sym_ellipsis] = ACTIONS(357), - [sym_em_dash] = ACTIONS(357), - [sym_en_dash] = ACTIONS(360), - [sym_backslash_escape] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(363), - [anon_sym_LBRACE_EQ] = ACTIONS(366), - [anon_sym_LBRACE_PLUS] = ACTIONS(369), - [anon_sym_LBRACE_DASH] = ACTIONS(372), - [sym_symbol] = ACTIONS(357), - [anon_sym_LBRACE_CARET] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(534), - [anon_sym_CARET_RBRACE] = ACTIONS(49), - [anon_sym_LBRACE_TILDE] = ACTIONS(378), - [anon_sym_TILDE] = ACTIONS(378), - [anon_sym_LBRACK_CARET] = ACTIONS(381), - [anon_sym_BANG_LBRACK] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(387), - [anon_sym_LBRACE2] = ACTIONS(360), - [anon_sym_DOLLAR] = ACTIONS(390), - [anon_sym_TODO] = ACTIONS(393), - [anon_sym_WIP] = ACTIONS(393), - [anon_sym_NOTE] = ACTIONS(396), - [anon_sym_INFO] = ACTIONS(396), - [anon_sym_XXX] = ACTIONS(396), - [sym_fixme] = ACTIONS(357), - [anon_sym_PIPE] = ACTIONS(357), - [anon_sym_BQUOTE] = ACTIONS(112), - [sym__whitespace1] = ACTIONS(399), - [sym__newline] = ACTIONS(402), - [aux_sym__text_token1] = ACTIONS(405), - }, - [54] = { - [sym__inline] = STATE(853), - [sym__element] = STATE(112), - [sym_emphasis] = STATE(206), - [sym_emphasis_begin] = STATE(108), - [sym_strong] = STATE(206), - [sym_strong_begin] = STATE(110), - [sym__hard_line_break] = STATE(206), - [sym_hard_line_break] = STATE(206), - [sym__smart_punctuation] = STATE(206), - [sym_autolink] = STATE(206), - [sym_highlighted] = STATE(206), - [sym_insert] = STATE(206), - [sym_delete] = STATE(206), - [sym_superscript] = STATE(206), - [sym_subscript] = STATE(206), - [sym_footnote_reference] = STATE(206), - [sym__image] = STATE(206), - [sym_full_reference_image] = STATE(206), - [sym_collapsed_reference_image] = STATE(206), - [sym_inline_image] = STATE(206), - [sym__image_description] = STATE(664), - [sym__link] = STATE(206), - [sym_full_reference_link] = STATE(206), - [sym_collapsed_reference_link] = STATE(206), - [sym_inline_link] = STATE(206), - [sym_link_text] = STATE(663), - [sym__comment_with_spaces] = STATE(206), - [sym_span] = STATE(206), - [sym_raw_inline] = STATE(206), - [sym_math] = STATE(206), - [sym_verbatim] = STATE(206), - [sym__todo_highlights] = STATE(206), - [sym_todo] = STATE(206), - [sym_note] = STATE(206), - [sym__symbol_fallback] = STATE(206), - [sym__verbatim_begin] = STATE(879), - [aux_sym__text] = STATE(126), - [aux_sym__inline_repeat1] = STATE(112), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACE_] = ACTIONS(53), - [anon_sym__] = ACTIONS(56), - [anon_sym_LBRACE_STAR] = ACTIONS(59), - [anon_sym_STAR] = ACTIONS(62), - [anon_sym_BSLASH] = ACTIONS(65), - [sym_quotation_marks] = ACTIONS(68), - [sym_ellipsis] = ACTIONS(68), - [sym_em_dash] = ACTIONS(68), - [sym_en_dash] = ACTIONS(71), - [sym_backslash_escape] = ACTIONS(71), - [anon_sym_LT] = ACTIONS(74), - [anon_sym_LBRACE_EQ] = ACTIONS(77), - [anon_sym_LBRACE_PLUS] = ACTIONS(80), - [anon_sym_LBRACE_DASH] = ACTIONS(83), - [anon_sym_DASH_RBRACE] = ACTIONS(49), - [sym_symbol] = ACTIONS(68), - [anon_sym_LBRACE_CARET] = ACTIONS(86), - [anon_sym_CARET] = ACTIONS(86), - [anon_sym_LBRACE_TILDE] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_LBRACK_CARET] = ACTIONS(92), - [anon_sym_BANG_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK] = ACTIONS(100), - [anon_sym_LBRACE2] = ACTIONS(71), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_TODO] = ACTIONS(106), - [anon_sym_WIP] = ACTIONS(106), - [anon_sym_NOTE] = ACTIONS(109), - [anon_sym_INFO] = ACTIONS(109), - [anon_sym_XXX] = ACTIONS(109), - [sym_fixme] = ACTIONS(68), - [anon_sym_PIPE] = ACTIONS(68), - [anon_sym_BQUOTE] = ACTIONS(112), - [sym__whitespace1] = ACTIONS(115), - [sym__newline] = ACTIONS(118), - [aux_sym__text_token1] = ACTIONS(121), + [sym__whitespace1] = ACTIONS(489), + [sym__newline] = ACTIONS(201), + [aux_sym__text_token1] = ACTIONS(204), + [sym__verbatim_begin] = ACTIONS(207), }, [55] = { - [sym__inline] = STATE(882), - [sym__element] = STATE(98), - [sym_emphasis] = STATE(207), - [sym_emphasis_begin] = STATE(89), - [sym_strong] = STATE(207), - [sym_strong_begin] = STATE(72), - [sym__hard_line_break] = STATE(207), - [sym_hard_line_break] = STATE(207), - [sym__smart_punctuation] = STATE(207), - [sym_autolink] = STATE(207), - [sym_highlighted] = STATE(207), - [sym_insert] = STATE(207), - [sym_delete] = STATE(207), - [sym_superscript] = STATE(207), - [sym_subscript] = STATE(207), - [sym_footnote_reference] = STATE(207), - [sym__image] = STATE(207), - [sym_full_reference_image] = STATE(207), - [sym_collapsed_reference_image] = STATE(207), - [sym_inline_image] = STATE(207), - [sym__image_description] = STATE(666), - [sym__link] = STATE(207), - [sym_full_reference_link] = STATE(207), - [sym_collapsed_reference_link] = STATE(207), - [sym_inline_link] = STATE(207), - [sym_link_text] = STATE(667), - [sym__comment_with_spaces] = STATE(207), - [sym_span] = STATE(207), - [sym_raw_inline] = STATE(207), - [sym_math] = STATE(207), - [sym_verbatim] = STATE(207), - [sym__todo_highlights] = STATE(207), - [sym_todo] = STATE(207), - [sym_note] = STATE(207), - [sym__symbol_fallback] = STATE(207), - [sym__verbatim_begin] = STATE(852), - [aux_sym__text] = STATE(139), - [aux_sym__inline_repeat1] = STATE(98), - [anon_sym_LBRACE] = ACTIONS(51), + [sym__inline] = STATE(703), + [sym__element] = STATE(85), + [sym_emphasis] = STATE(175), + [sym_emphasis_begin] = STATE(94), + [sym_strong] = STATE(175), + [sym_strong_begin] = STATE(95), + [sym__hard_line_break] = STATE(175), + [sym_hard_line_break] = STATE(175), + [sym__smart_punctuation] = STATE(175), + [sym_autolink] = STATE(175), + [sym_highlighted] = STATE(175), + [sym_insert] = STATE(175), + [sym_delete] = STATE(175), + [sym_superscript] = STATE(175), + [sym_subscript] = STATE(175), + [sym_footnote_reference] = STATE(175), + [sym__image] = STATE(175), + [sym_full_reference_image] = STATE(175), + [sym_collapsed_reference_image] = STATE(175), + [sym_inline_image] = STATE(175), + [sym__image_description] = STATE(652), + [sym__link] = STATE(175), + [sym_full_reference_link] = STATE(175), + [sym_collapsed_reference_link] = STATE(175), + [sym_inline_link] = STATE(175), + [sym_link_text] = STATE(649), + [sym__comment_with_spaces] = STATE(175), + [sym_span] = STATE(175), + [sym_raw_inline] = STATE(175), + [sym_math] = STATE(175), + [sym_verbatim] = STATE(175), + [sym__todo_highlights] = STATE(175), + [sym_todo] = STATE(175), + [sym_note] = STATE(175), + [sym__symbol_fallback] = STATE(175), + [aux_sym__text] = STATE(156), + [aux_sym__inline_repeat1] = STATE(85), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(417), + [anon_sym__] = ACTIONS(420), + [anon_sym_LBRACE_STAR] = ACTIONS(423), + [anon_sym_STAR] = ACTIONS(426), + [anon_sym_BSLASH] = ACTIONS(429), + [sym_quotation_marks] = ACTIONS(432), + [sym_ellipsis] = ACTIONS(432), + [sym_em_dash] = ACTIONS(432), + [sym_en_dash] = ACTIONS(435), + [sym_backslash_escape] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(438), + [anon_sym_LBRACE_EQ] = ACTIONS(441), + [anon_sym_LBRACE_PLUS] = ACTIONS(444), + [anon_sym_LBRACE_DASH] = ACTIONS(447), + [sym_symbol] = ACTIONS(432), + [anon_sym_LBRACE_CARET] = ACTIONS(450), + [anon_sym_CARET] = ACTIONS(450), + [anon_sym_LBRACE_TILDE] = ACTIONS(453), + [anon_sym_TILDE] = ACTIONS(453), + [anon_sym_LBRACK_CARET] = ACTIONS(456), + [anon_sym_BANG_LBRACK] = ACTIONS(459), + [anon_sym_LBRACK] = ACTIONS(462), + [anon_sym_RBRACK2] = ACTIONS(93), + [anon_sym_LBRACE2] = ACTIONS(435), + [anon_sym_DOLLAR] = ACTIONS(465), + [anon_sym_TODO] = ACTIONS(468), + [anon_sym_WIP] = ACTIONS(468), + [anon_sym_NOTE] = ACTIONS(471), + [anon_sym_INFO] = ACTIONS(471), + [anon_sym_XXX] = ACTIONS(471), + [sym_fixme] = ACTIONS(432), + [anon_sym_PIPE] = ACTIONS(432), + [sym__whitespace1] = ACTIONS(474), + [sym__newline] = ACTIONS(477), + [aux_sym__text_token1] = ACTIONS(480), + [sym__verbatim_begin] = ACTIONS(483), + }, + [56] = { + [sym__inline] = STATE(782), + [sym__element] = STATE(116), + [sym_emphasis] = STATE(183), + [sym_emphasis_begin] = STATE(91), + [sym_strong] = STATE(183), + [sym_strong_begin] = STATE(92), + [sym__hard_line_break] = STATE(183), + [sym_hard_line_break] = STATE(183), + [sym__smart_punctuation] = STATE(183), + [sym_autolink] = STATE(183), + [sym_highlighted] = STATE(183), + [sym_insert] = STATE(183), + [sym_delete] = STATE(183), + [sym_superscript] = STATE(183), + [sym_subscript] = STATE(183), + [sym_footnote_reference] = STATE(183), + [sym__image] = STATE(183), + [sym_full_reference_image] = STATE(183), + [sym_collapsed_reference_image] = STATE(183), + [sym_inline_image] = STATE(183), + [sym__image_description] = STATE(645), + [sym__link] = STATE(183), + [sym_full_reference_link] = STATE(183), + [sym_collapsed_reference_link] = STATE(183), + [sym_inline_link] = STATE(183), + [sym_link_text] = STATE(646), + [sym__comment_with_spaces] = STATE(183), + [sym_span] = STATE(183), + [sym_raw_inline] = STATE(183), + [sym_math] = STATE(183), + [sym_verbatim] = STATE(183), + [sym__todo_highlights] = STATE(183), + [sym_todo] = STATE(183), + [sym_note] = STATE(183), + [sym__symbol_fallback] = STATE(183), + [aux_sym__text] = STATE(149), + [aux_sym__inline_repeat1] = STATE(116), + [anon_sym_LBRACE] = ACTIONS(49), [anon_sym_LBRACE_] = ACTIONS(210), [anon_sym__] = ACTIONS(213), [anon_sym_LBRACE_STAR] = ACTIONS(216), @@ -12481,13 +12328,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_DASH] = ACTIONS(240), [sym_symbol] = ACTIONS(225), [anon_sym_LBRACE_CARET] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(537), - [anon_sym_CARET_RBRACE] = ACTIONS(49), + [anon_sym_CARET] = ACTIONS(243), [anon_sym_LBRACE_TILDE] = ACTIONS(246), [anon_sym_TILDE] = ACTIONS(246), [anon_sym_LBRACK_CARET] = ACTIONS(249), [anon_sym_BANG_LBRACK] = ACTIONS(252), [anon_sym_LBRACK] = ACTIONS(255), + [anon_sym_RBRACK2] = ACTIONS(93), [anon_sym_LBRACE2] = ACTIONS(228), [anon_sym_DOLLAR] = ACTIONS(258), [anon_sym_TODO] = ACTIONS(261), @@ -12497,249 +12344,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_XXX] = ACTIONS(264), [sym_fixme] = ACTIONS(225), [anon_sym_PIPE] = ACTIONS(225), - [anon_sym_BQUOTE] = ACTIONS(112), [sym__whitespace1] = ACTIONS(267), [sym__newline] = ACTIONS(270), [aux_sym__text_token1] = ACTIONS(273), - }, - [56] = { - [sym__inline] = STATE(907), - [sym__element] = STATE(112), - [sym_emphasis] = STATE(206), - [sym_emphasis_begin] = STATE(108), - [sym_strong] = STATE(206), - [sym_strong_begin] = STATE(110), - [sym__hard_line_break] = STATE(206), - [sym_hard_line_break] = STATE(206), - [sym__smart_punctuation] = STATE(206), - [sym_autolink] = STATE(206), - [sym_highlighted] = STATE(206), - [sym_insert] = STATE(206), - [sym_delete] = STATE(206), - [sym_superscript] = STATE(206), - [sym_subscript] = STATE(206), - [sym_footnote_reference] = STATE(206), - [sym__image] = STATE(206), - [sym_full_reference_image] = STATE(206), - [sym_collapsed_reference_image] = STATE(206), - [sym_inline_image] = STATE(206), - [sym__image_description] = STATE(664), - [sym__link] = STATE(206), - [sym_full_reference_link] = STATE(206), - [sym_collapsed_reference_link] = STATE(206), - [sym_inline_link] = STATE(206), - [sym_link_text] = STATE(663), - [sym__comment_with_spaces] = STATE(206), - [sym_span] = STATE(206), - [sym_raw_inline] = STATE(206), - [sym_math] = STATE(206), - [sym_verbatim] = STATE(206), - [sym__todo_highlights] = STATE(206), - [sym_todo] = STATE(206), - [sym_note] = STATE(206), - [sym__symbol_fallback] = STATE(206), - [sym__verbatim_begin] = STATE(879), - [aux_sym__text] = STATE(126), - [aux_sym__inline_repeat1] = STATE(112), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACE_] = ACTIONS(53), - [anon_sym__] = ACTIONS(56), - [anon_sym_LBRACE_STAR] = ACTIONS(59), - [anon_sym_STAR] = ACTIONS(62), - [anon_sym_BSLASH] = ACTIONS(65), - [sym_quotation_marks] = ACTIONS(68), - [sym_ellipsis] = ACTIONS(68), - [sym_em_dash] = ACTIONS(68), - [sym_en_dash] = ACTIONS(71), - [sym_backslash_escape] = ACTIONS(71), - [anon_sym_LT] = ACTIONS(74), - [anon_sym_LBRACE_EQ] = ACTIONS(77), - [anon_sym_LBRACE_PLUS] = ACTIONS(80), - [anon_sym_LBRACE_DASH] = ACTIONS(83), - [sym_symbol] = ACTIONS(68), - [anon_sym_LBRACE_CARET] = ACTIONS(86), - [anon_sym_CARET] = ACTIONS(86), - [anon_sym_LBRACE_TILDE] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_LBRACK_CARET] = ACTIONS(92), - [anon_sym_BANG_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK] = ACTIONS(100), - [anon_sym_RBRACK2] = ACTIONS(49), - [anon_sym_LBRACE2] = ACTIONS(71), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_TODO] = ACTIONS(106), - [anon_sym_WIP] = ACTIONS(106), - [anon_sym_NOTE] = ACTIONS(109), - [anon_sym_INFO] = ACTIONS(109), - [anon_sym_XXX] = ACTIONS(109), - [sym_fixme] = ACTIONS(68), - [anon_sym_PIPE] = ACTIONS(68), - [anon_sym_BQUOTE] = ACTIONS(112), - [sym__whitespace1] = ACTIONS(115), - [sym__newline] = ACTIONS(118), - [aux_sym__text_token1] = ACTIONS(121), + [sym__verbatim_begin] = ACTIONS(276), }, [57] = { - [sym__inline] = STATE(703), - [sym__element] = STATE(84), - [sym_emphasis] = STATE(197), - [sym_emphasis_begin] = STATE(97), - [sym_strong] = STATE(197), - [sym_strong_begin] = STATE(100), - [sym__hard_line_break] = STATE(197), - [sym_hard_line_break] = STATE(197), - [sym__smart_punctuation] = STATE(197), - [sym_autolink] = STATE(197), - [sym_highlighted] = STATE(197), - [sym_insert] = STATE(197), - [sym_delete] = STATE(197), - [sym_superscript] = STATE(197), - [sym_subscript] = STATE(197), - [sym_footnote_reference] = STATE(197), - [sym__image] = STATE(197), - [sym_full_reference_image] = STATE(197), - [sym_collapsed_reference_image] = STATE(197), - [sym_inline_image] = STATE(197), - [sym__image_description] = STATE(676), - [sym__link] = STATE(197), - [sym_full_reference_link] = STATE(197), - [sym_collapsed_reference_link] = STATE(197), - [sym_inline_link] = STATE(197), - [sym_link_text] = STATE(677), - [sym__comment_with_spaces] = STATE(197), - [sym_span] = STATE(197), - [sym_raw_inline] = STATE(197), - [sym_math] = STATE(197), - [sym_verbatim] = STATE(197), - [sym__todo_highlights] = STATE(197), - [sym_todo] = STATE(197), - [sym_note] = STATE(197), - [sym__symbol_fallback] = STATE(197), - [sym__verbatim_begin] = STATE(861), - [aux_sym__text] = STATE(159), - [aux_sym__inline_repeat1] = STATE(84), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACE_] = ACTIONS(276), - [anon_sym__] = ACTIONS(279), - [anon_sym_LBRACE_STAR] = ACTIONS(282), - [anon_sym_STAR] = ACTIONS(285), - [anon_sym_BSLASH] = ACTIONS(288), - [sym_quotation_marks] = ACTIONS(291), - [sym_ellipsis] = ACTIONS(291), - [sym_em_dash] = ACTIONS(291), - [sym_en_dash] = ACTIONS(294), - [sym_backslash_escape] = ACTIONS(294), - [anon_sym_LT] = ACTIONS(297), - [anon_sym_LBRACE_EQ] = ACTIONS(300), - [anon_sym_LBRACE_PLUS] = ACTIONS(303), - [anon_sym_LBRACE_DASH] = ACTIONS(306), - [sym_symbol] = ACTIONS(291), - [anon_sym_LBRACE_CARET] = ACTIONS(309), - [anon_sym_CARET] = ACTIONS(540), - [anon_sym_CARET_RBRACE] = ACTIONS(49), - [anon_sym_LBRACE_TILDE] = ACTIONS(312), - [anon_sym_TILDE] = ACTIONS(312), - [anon_sym_LBRACK_CARET] = ACTIONS(315), - [anon_sym_BANG_LBRACK] = ACTIONS(318), - [anon_sym_LBRACK] = ACTIONS(321), - [anon_sym_LBRACE2] = ACTIONS(294), - [anon_sym_DOLLAR] = ACTIONS(324), - [anon_sym_TODO] = ACTIONS(327), - [anon_sym_WIP] = ACTIONS(327), - [anon_sym_NOTE] = ACTIONS(330), - [anon_sym_INFO] = ACTIONS(330), - [anon_sym_XXX] = ACTIONS(330), - [sym_fixme] = ACTIONS(291), - [anon_sym_PIPE] = ACTIONS(291), - [anon_sym_BQUOTE] = ACTIONS(112), - [sym__whitespace1] = ACTIONS(333), - [sym__newline] = ACTIONS(336), - [aux_sym__text_token1] = ACTIONS(339), + [sym__inline] = STATE(781), + [sym__element] = STATE(77), + [sym_emphasis] = STATE(174), + [sym_emphasis_begin] = STATE(86), + [sym_strong] = STATE(174), + [sym_strong_begin] = STATE(89), + [sym__hard_line_break] = STATE(174), + [sym_hard_line_break] = STATE(174), + [sym__smart_punctuation] = STATE(174), + [sym_autolink] = STATE(174), + [sym_highlighted] = STATE(174), + [sym_insert] = STATE(174), + [sym_delete] = STATE(174), + [sym_superscript] = STATE(174), + [sym_subscript] = STATE(174), + [sym_footnote_reference] = STATE(174), + [sym__image] = STATE(174), + [sym_full_reference_image] = STATE(174), + [sym_collapsed_reference_image] = STATE(174), + [sym_inline_image] = STATE(174), + [sym__image_description] = STATE(630), + [sym__link] = STATE(174), + [sym_full_reference_link] = STATE(174), + [sym_collapsed_reference_link] = STATE(174), + [sym_inline_link] = STATE(174), + [sym_link_text] = STATE(631), + [sym__comment_with_spaces] = STATE(174), + [sym_span] = STATE(174), + [sym_raw_inline] = STATE(174), + [sym_math] = STATE(174), + [sym_verbatim] = STATE(174), + [sym__todo_highlights] = STATE(174), + [sym_todo] = STATE(174), + [sym_note] = STATE(174), + [sym__symbol_fallback] = STATE(174), + [aux_sym__text] = STATE(148), + [aux_sym__inline_repeat1] = STATE(77), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(348), + [anon_sym__] = ACTIONS(351), + [anon_sym_LBRACE_STAR] = ACTIONS(354), + [anon_sym_STAR] = ACTIONS(357), + [anon_sym_BSLASH] = ACTIONS(360), + [sym_quotation_marks] = ACTIONS(363), + [sym_ellipsis] = ACTIONS(363), + [sym_em_dash] = ACTIONS(363), + [sym_en_dash] = ACTIONS(366), + [sym_backslash_escape] = ACTIONS(366), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_LBRACE_EQ] = ACTIONS(372), + [anon_sym_LBRACE_PLUS] = ACTIONS(375), + [anon_sym_LBRACE_DASH] = ACTIONS(378), + [sym_symbol] = ACTIONS(363), + [anon_sym_LBRACE_CARET] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(381), + [anon_sym_LBRACE_TILDE] = ACTIONS(384), + [anon_sym_TILDE] = ACTIONS(384), + [anon_sym_LBRACK_CARET] = ACTIONS(387), + [anon_sym_BANG_LBRACK] = ACTIONS(390), + [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_RBRACK2] = ACTIONS(93), + [anon_sym_LBRACE2] = ACTIONS(366), + [anon_sym_DOLLAR] = ACTIONS(396), + [anon_sym_TODO] = ACTIONS(399), + [anon_sym_WIP] = ACTIONS(399), + [anon_sym_NOTE] = ACTIONS(402), + [anon_sym_INFO] = ACTIONS(402), + [anon_sym_XXX] = ACTIONS(402), + [sym_fixme] = ACTIONS(363), + [anon_sym_PIPE] = ACTIONS(363), + [sym__whitespace1] = ACTIONS(405), + [sym__newline] = ACTIONS(408), + [aux_sym__text_token1] = ACTIONS(411), + [sym__verbatim_begin] = ACTIONS(414), }, [58] = { - [sym__inline] = STATE(729), - [sym__element] = STATE(96), - [sym_emphasis] = STATE(182), - [sym_emphasis_begin] = STATE(103), - [sym_strong] = STATE(182), - [sym_strong_begin] = STATE(104), - [sym__hard_line_break] = STATE(182), - [sym_hard_line_break] = STATE(182), - [sym__smart_punctuation] = STATE(182), - [sym_autolink] = STATE(182), - [sym_highlighted] = STATE(182), - [sym_insert] = STATE(182), - [sym_delete] = STATE(182), - [sym_superscript] = STATE(182), - [sym_subscript] = STATE(182), - [sym_footnote_reference] = STATE(182), - [sym__image] = STATE(182), - [sym_full_reference_image] = STATE(182), - [sym_collapsed_reference_image] = STATE(182), - [sym_inline_image] = STATE(182), - [sym__image_description] = STATE(672), - [sym__link] = STATE(182), - [sym_full_reference_link] = STATE(182), - [sym_collapsed_reference_link] = STATE(182), - [sym_inline_link] = STATE(182), - [sym_link_text] = STATE(671), - [sym__comment_with_spaces] = STATE(182), - [sym_span] = STATE(182), - [sym_raw_inline] = STATE(182), - [sym_math] = STATE(182), - [sym_verbatim] = STATE(182), - [sym__todo_highlights] = STATE(182), - [sym_todo] = STATE(182), - [sym_note] = STATE(182), - [sym__symbol_fallback] = STATE(182), - [sym__verbatim_begin] = STATE(870), - [aux_sym__text] = STATE(150), - [aux_sym__inline_repeat1] = STATE(96), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACE_] = ACTIONS(141), - [anon_sym__] = ACTIONS(144), - [anon_sym_LBRACE_STAR] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(150), - [anon_sym_BSLASH] = ACTIONS(153), - [sym_quotation_marks] = ACTIONS(156), - [sym_ellipsis] = ACTIONS(156), - [sym_em_dash] = ACTIONS(156), - [sym_en_dash] = ACTIONS(159), - [sym_backslash_escape] = ACTIONS(159), - [anon_sym_LT] = ACTIONS(162), - [anon_sym_LBRACE_EQ] = ACTIONS(165), - [anon_sym_LBRACE_PLUS] = ACTIONS(168), - [anon_sym_LBRACE_DASH] = ACTIONS(171), - [sym_symbol] = ACTIONS(156), - [anon_sym_LBRACE_CARET] = ACTIONS(174), - [anon_sym_CARET] = ACTIONS(174), - [anon_sym_LBRACE_TILDE] = ACTIONS(177), - [anon_sym_TILDE] = ACTIONS(177), - [anon_sym_LBRACK_CARET] = ACTIONS(183), - [anon_sym_BANG_LBRACK] = ACTIONS(186), - [anon_sym_LBRACK] = ACTIONS(189), - [anon_sym_RBRACK2] = ACTIONS(49), - [anon_sym_LBRACE2] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(192), - [anon_sym_TODO] = ACTIONS(195), - [anon_sym_WIP] = ACTIONS(195), - [anon_sym_NOTE] = ACTIONS(198), - [anon_sym_INFO] = ACTIONS(198), - [anon_sym_XXX] = ACTIONS(198), - [sym_fixme] = ACTIONS(156), - [anon_sym_PIPE] = ACTIONS(156), - [anon_sym_BQUOTE] = ACTIONS(112), - [sym__whitespace1] = ACTIONS(201), - [sym__newline] = ACTIONS(204), - [aux_sym__text_token1] = ACTIONS(207), - }, - [59] = { - [sym__inline] = STATE(730), - [sym__element] = STATE(84), + [sym__inline] = STATE(780), + [sym__element] = STATE(119), [sym_emphasis] = STATE(197), - [sym_emphasis_begin] = STATE(97), + [sym_emphasis_begin] = STATE(81), [sym_strong] = STATE(197), - [sym_strong_begin] = STATE(100), + [sym_strong_begin] = STATE(82), [sym__hard_line_break] = STATE(197), [sym_hard_line_break] = STATE(197), [sym__smart_punctuation] = STATE(197), @@ -12754,12 +12446,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_full_reference_image] = STATE(197), [sym_collapsed_reference_image] = STATE(197), [sym_inline_image] = STATE(197), - [sym__image_description] = STATE(676), + [sym__image_description] = STATE(654), [sym__link] = STATE(197), [sym_full_reference_link] = STATE(197), [sym_collapsed_reference_link] = STATE(197), [sym_inline_link] = STATE(197), - [sym_link_text] = STATE(677), + [sym_link_text] = STATE(651), [sym__comment_with_spaces] = STATE(197), [sym_span] = STATE(197), [sym_raw_inline] = STATE(197), @@ -12769,91 +12461,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(197), [sym_note] = STATE(197), [sym__symbol_fallback] = STATE(197), - [sym__verbatim_begin] = STATE(861), - [aux_sym__text] = STATE(159), - [aux_sym__inline_repeat1] = STATE(84), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACE_] = ACTIONS(276), - [anon_sym__] = ACTIONS(279), - [anon_sym_LBRACE_STAR] = ACTIONS(282), - [anon_sym_STAR] = ACTIONS(285), - [anon_sym_BSLASH] = ACTIONS(288), - [sym_quotation_marks] = ACTIONS(291), - [sym_ellipsis] = ACTIONS(291), - [sym_em_dash] = ACTIONS(291), - [sym_en_dash] = ACTIONS(294), - [sym_backslash_escape] = ACTIONS(294), - [anon_sym_LT] = ACTIONS(297), - [anon_sym_LBRACE_EQ] = ACTIONS(300), - [anon_sym_LBRACE_PLUS] = ACTIONS(303), - [anon_sym_LBRACE_DASH] = ACTIONS(306), - [sym_symbol] = ACTIONS(291), - [anon_sym_LBRACE_CARET] = ACTIONS(309), - [anon_sym_CARET] = ACTIONS(309), - [anon_sym_LBRACE_TILDE] = ACTIONS(312), - [anon_sym_TILDE] = ACTIONS(312), - [anon_sym_LBRACK_CARET] = ACTIONS(315), - [anon_sym_BANG_LBRACK] = ACTIONS(318), - [anon_sym_LBRACK] = ACTIONS(321), - [anon_sym_RBRACK2] = ACTIONS(49), - [anon_sym_LBRACE2] = ACTIONS(294), - [anon_sym_DOLLAR] = ACTIONS(324), - [anon_sym_TODO] = ACTIONS(327), - [anon_sym_WIP] = ACTIONS(327), - [anon_sym_NOTE] = ACTIONS(330), - [anon_sym_INFO] = ACTIONS(330), - [anon_sym_XXX] = ACTIONS(330), - [sym_fixme] = ACTIONS(291), - [anon_sym_PIPE] = ACTIONS(291), - [anon_sym_BQUOTE] = ACTIONS(112), - [sym__whitespace1] = ACTIONS(333), - [sym__newline] = ACTIONS(336), - [aux_sym__text_token1] = ACTIONS(339), + [aux_sym__text] = STATE(132), + [aux_sym__inline_repeat1] = STATE(119), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(279), + [anon_sym__] = ACTIONS(282), + [anon_sym_LBRACE_STAR] = ACTIONS(285), + [anon_sym_STAR] = ACTIONS(288), + [anon_sym_BSLASH] = ACTIONS(291), + [sym_quotation_marks] = ACTIONS(294), + [sym_ellipsis] = ACTIONS(294), + [sym_em_dash] = ACTIONS(294), + [sym_en_dash] = ACTIONS(297), + [sym_backslash_escape] = ACTIONS(297), + [anon_sym_LT] = ACTIONS(300), + [anon_sym_LBRACE_EQ] = ACTIONS(303), + [anon_sym_LBRACE_PLUS] = ACTIONS(306), + [anon_sym_LBRACE_DASH] = ACTIONS(309), + [sym_symbol] = ACTIONS(294), + [anon_sym_LBRACE_CARET] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(312), + [anon_sym_LBRACE_TILDE] = ACTIONS(315), + [anon_sym_TILDE] = ACTIONS(315), + [anon_sym_LBRACK_CARET] = ACTIONS(318), + [anon_sym_BANG_LBRACK] = ACTIONS(321), + [anon_sym_LBRACK] = ACTIONS(324), + [anon_sym_RBRACK2] = ACTIONS(93), + [anon_sym_LBRACE2] = ACTIONS(297), + [anon_sym_DOLLAR] = ACTIONS(327), + [anon_sym_TODO] = ACTIONS(330), + [anon_sym_WIP] = ACTIONS(330), + [anon_sym_NOTE] = ACTIONS(333), + [anon_sym_INFO] = ACTIONS(333), + [anon_sym_XXX] = ACTIONS(333), + [sym_fixme] = ACTIONS(294), + [anon_sym_PIPE] = ACTIONS(294), + [sym__whitespace1] = ACTIONS(336), + [sym__newline] = ACTIONS(339), + [aux_sym__text_token1] = ACTIONS(342), + [sym__verbatim_begin] = ACTIONS(345), }, - [60] = { - [sym__inline] = STATE(798), - [sym__element] = STATE(98), - [sym_emphasis] = STATE(207), - [sym_emphasis_begin] = STATE(89), - [sym_strong] = STATE(207), - [sym_strong_begin] = STATE(72), - [sym__hard_line_break] = STATE(207), - [sym_hard_line_break] = STATE(207), - [sym__smart_punctuation] = STATE(207), - [sym_autolink] = STATE(207), - [sym_highlighted] = STATE(207), - [sym_insert] = STATE(207), - [sym_delete] = STATE(207), - [sym_superscript] = STATE(207), - [sym_subscript] = STATE(207), - [sym_footnote_reference] = STATE(207), - [sym__image] = STATE(207), - [sym_full_reference_image] = STATE(207), - [sym_collapsed_reference_image] = STATE(207), - [sym_inline_image] = STATE(207), - [sym__image_description] = STATE(666), - [sym__link] = STATE(207), - [sym_full_reference_link] = STATE(207), - [sym_collapsed_reference_link] = STATE(207), - [sym_inline_link] = STATE(207), - [sym_link_text] = STATE(667), - [sym__comment_with_spaces] = STATE(207), - [sym_span] = STATE(207), - [sym_raw_inline] = STATE(207), - [sym_math] = STATE(207), - [sym_verbatim] = STATE(207), - [sym__todo_highlights] = STATE(207), - [sym_todo] = STATE(207), - [sym_note] = STATE(207), - [sym__symbol_fallback] = STATE(207), - [sym__verbatim_begin] = STATE(852), - [aux_sym__text] = STATE(139), - [aux_sym__inline_repeat1] = STATE(98), - [anon_sym_LBRACE] = ACTIONS(51), + [59] = { + [sym__inline] = STATE(763), + [sym__element] = STATE(116), + [sym_emphasis] = STATE(183), + [sym_emphasis_begin] = STATE(91), + [sym_strong] = STATE(183), + [sym_strong_begin] = STATE(92), + [sym__hard_line_break] = STATE(183), + [sym_hard_line_break] = STATE(183), + [sym__smart_punctuation] = STATE(183), + [sym_autolink] = STATE(183), + [sym_highlighted] = STATE(183), + [sym_insert] = STATE(183), + [sym_delete] = STATE(183), + [sym_superscript] = STATE(183), + [sym_subscript] = STATE(183), + [sym_footnote_reference] = STATE(183), + [sym__image] = STATE(183), + [sym_full_reference_image] = STATE(183), + [sym_collapsed_reference_image] = STATE(183), + [sym_inline_image] = STATE(183), + [sym__image_description] = STATE(645), + [sym__link] = STATE(183), + [sym_full_reference_link] = STATE(183), + [sym_collapsed_reference_link] = STATE(183), + [sym_inline_link] = STATE(183), + [sym_link_text] = STATE(646), + [sym__comment_with_spaces] = STATE(183), + [sym_span] = STATE(183), + [sym_raw_inline] = STATE(183), + [sym_math] = STATE(183), + [sym_verbatim] = STATE(183), + [sym__todo_highlights] = STATE(183), + [sym_todo] = STATE(183), + [sym_note] = STATE(183), + [sym__symbol_fallback] = STATE(183), + [aux_sym__text] = STATE(149), + [aux_sym__inline_repeat1] = STATE(116), + [anon_sym_LBRACE] = ACTIONS(49), [anon_sym_LBRACE_] = ACTIONS(210), [anon_sym__] = ACTIONS(213), [anon_sym_LBRACE_STAR] = ACTIONS(216), - [anon_sym_STAR] = ACTIONS(219), + [anon_sym_STAR] = ACTIONS(552), + [aux_sym_strong_end_token1] = ACTIONS(93), [anon_sym_BSLASH] = ACTIONS(222), [sym_quotation_marks] = ACTIONS(225), [sym_ellipsis] = ACTIONS(225), @@ -12872,7 +12563,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_CARET] = ACTIONS(249), [anon_sym_BANG_LBRACK] = ACTIONS(252), [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_RBRACK2] = ACTIONS(49), [anon_sym_LBRACE2] = ACTIONS(228), [anon_sym_DOLLAR] = ACTIONS(258), [anon_sym_TODO] = ACTIONS(261), @@ -12882,18 +12572,170 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_XXX] = ACTIONS(264), [sym_fixme] = ACTIONS(225), [anon_sym_PIPE] = ACTIONS(225), - [anon_sym_BQUOTE] = ACTIONS(112), - [sym__whitespace1] = ACTIONS(267), + [sym__whitespace1] = ACTIONS(522), [sym__newline] = ACTIONS(270), [aux_sym__text_token1] = ACTIONS(273), + [sym__verbatim_begin] = ACTIONS(276), + }, + [60] = { + [sym__inline] = STATE(823), + [sym__element] = STATE(103), + [sym_emphasis] = STATE(200), + [sym_emphasis_begin] = STATE(101), + [sym_strong] = STATE(200), + [sym_strong_begin] = STATE(104), + [sym__hard_line_break] = STATE(200), + [sym_hard_line_break] = STATE(200), + [sym__smart_punctuation] = STATE(200), + [sym_autolink] = STATE(200), + [sym_highlighted] = STATE(200), + [sym_insert] = STATE(200), + [sym_delete] = STATE(200), + [sym_superscript] = STATE(200), + [sym_subscript] = STATE(200), + [sym_footnote_reference] = STATE(200), + [sym__image] = STATE(200), + [sym_full_reference_image] = STATE(200), + [sym_collapsed_reference_image] = STATE(200), + [sym_inline_image] = STATE(200), + [sym__image_description] = STATE(642), + [sym__link] = STATE(200), + [sym_full_reference_link] = STATE(200), + [sym_collapsed_reference_link] = STATE(200), + [sym_inline_link] = STATE(200), + [sym_link_text] = STATE(643), + [sym__comment_with_spaces] = STATE(200), + [sym_span] = STATE(200), + [sym_raw_inline] = STATE(200), + [sym_math] = STATE(200), + [sym_verbatim] = STATE(200), + [sym__todo_highlights] = STATE(200), + [sym_todo] = STATE(200), + [sym_note] = STATE(200), + [sym__symbol_fallback] = STATE(200), + [aux_sym__text] = STATE(138), + [aux_sym__inline_repeat1] = STATE(103), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(51), + [anon_sym__] = ACTIONS(54), + [anon_sym_LBRACE_STAR] = ACTIONS(57), + [anon_sym_STAR] = ACTIONS(60), + [anon_sym_BSLASH] = ACTIONS(63), + [sym_quotation_marks] = ACTIONS(66), + [sym_ellipsis] = ACTIONS(66), + [sym_em_dash] = ACTIONS(66), + [sym_en_dash] = ACTIONS(69), + [sym_backslash_escape] = ACTIONS(69), + [anon_sym_LT] = ACTIONS(72), + [anon_sym_LBRACE_EQ] = ACTIONS(75), + [anon_sym_LBRACE_PLUS] = ACTIONS(78), + [anon_sym_PLUS_RBRACE] = ACTIONS(93), + [anon_sym_LBRACE_DASH] = ACTIONS(81), + [sym_symbol] = ACTIONS(66), + [anon_sym_LBRACE_CARET] = ACTIONS(84), + [anon_sym_CARET] = ACTIONS(84), + [anon_sym_LBRACE_TILDE] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_LBRACK_CARET] = ACTIONS(95), + [anon_sym_BANG_LBRACK] = ACTIONS(100), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_LBRACE2] = ACTIONS(69), + [anon_sym_DOLLAR] = ACTIONS(106), + [anon_sym_TODO] = ACTIONS(109), + [anon_sym_WIP] = ACTIONS(109), + [anon_sym_NOTE] = ACTIONS(112), + [anon_sym_INFO] = ACTIONS(112), + [anon_sym_XXX] = ACTIONS(112), + [sym_fixme] = ACTIONS(66), + [anon_sym_PIPE] = ACTIONS(66), + [sym__whitespace1] = ACTIONS(115), + [sym__newline] = ACTIONS(118), + [aux_sym__text_token1] = ACTIONS(121), + [sym__verbatim_begin] = ACTIONS(124), }, [61] = { - [sym__inline] = STATE(721), - [sym__element] = STATE(96), + [sym__inline] = STATE(704), + [sym__element] = STATE(85), + [sym_emphasis] = STATE(175), + [sym_emphasis_begin] = STATE(94), + [sym_strong] = STATE(175), + [sym_strong_begin] = STATE(95), + [sym__hard_line_break] = STATE(175), + [sym_hard_line_break] = STATE(175), + [sym__smart_punctuation] = STATE(175), + [sym_autolink] = STATE(175), + [sym_highlighted] = STATE(175), + [sym_insert] = STATE(175), + [sym_delete] = STATE(175), + [sym_superscript] = STATE(175), + [sym_subscript] = STATE(175), + [sym_footnote_reference] = STATE(175), + [sym__image] = STATE(175), + [sym_full_reference_image] = STATE(175), + [sym_collapsed_reference_image] = STATE(175), + [sym_inline_image] = STATE(175), + [sym__image_description] = STATE(652), + [sym__link] = STATE(175), + [sym_full_reference_link] = STATE(175), + [sym_collapsed_reference_link] = STATE(175), + [sym_inline_link] = STATE(175), + [sym_link_text] = STATE(649), + [sym__comment_with_spaces] = STATE(175), + [sym_span] = STATE(175), + [sym_raw_inline] = STATE(175), + [sym_math] = STATE(175), + [sym_verbatim] = STATE(175), + [sym__todo_highlights] = STATE(175), + [sym_todo] = STATE(175), + [sym_note] = STATE(175), + [sym__symbol_fallback] = STATE(175), + [aux_sym__text] = STATE(156), + [aux_sym__inline_repeat1] = STATE(85), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(417), + [anon_sym__] = ACTIONS(420), + [anon_sym_LBRACE_STAR] = ACTIONS(423), + [anon_sym_STAR] = ACTIONS(555), + [aux_sym_strong_end_token1] = ACTIONS(93), + [anon_sym_BSLASH] = ACTIONS(429), + [sym_quotation_marks] = ACTIONS(432), + [sym_ellipsis] = ACTIONS(432), + [sym_em_dash] = ACTIONS(432), + [sym_en_dash] = ACTIONS(435), + [sym_backslash_escape] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(438), + [anon_sym_LBRACE_EQ] = ACTIONS(441), + [anon_sym_LBRACE_PLUS] = ACTIONS(444), + [anon_sym_LBRACE_DASH] = ACTIONS(447), + [sym_symbol] = ACTIONS(432), + [anon_sym_LBRACE_CARET] = ACTIONS(450), + [anon_sym_CARET] = ACTIONS(450), + [anon_sym_LBRACE_TILDE] = ACTIONS(453), + [anon_sym_TILDE] = ACTIONS(453), + [anon_sym_LBRACK_CARET] = ACTIONS(456), + [anon_sym_BANG_LBRACK] = ACTIONS(459), + [anon_sym_LBRACK] = ACTIONS(462), + [anon_sym_LBRACE2] = ACTIONS(435), + [anon_sym_DOLLAR] = ACTIONS(465), + [anon_sym_TODO] = ACTIONS(468), + [anon_sym_WIP] = ACTIONS(468), + [anon_sym_NOTE] = ACTIONS(471), + [anon_sym_INFO] = ACTIONS(471), + [anon_sym_XXX] = ACTIONS(471), + [sym_fixme] = ACTIONS(432), + [anon_sym_PIPE] = ACTIONS(432), + [sym__whitespace1] = ACTIONS(528), + [sym__newline] = ACTIONS(477), + [aux_sym__text_token1] = ACTIONS(480), + [sym__verbatim_begin] = ACTIONS(483), + }, + [62] = { + [sym__inline] = STATE(702), + [sym__element] = STATE(120), [sym_emphasis] = STATE(182), - [sym_emphasis_begin] = STATE(103), + [sym_emphasis_begin] = STATE(97), [sym_strong] = STATE(182), - [sym_strong_begin] = STATE(104), + [sym_strong_begin] = STATE(99), [sym__hard_line_break] = STATE(182), [sym_hard_line_break] = STATE(182), [sym__smart_punctuation] = STATE(182), @@ -12908,12 +12750,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_full_reference_image] = STATE(182), [sym_collapsed_reference_image] = STATE(182), [sym_inline_image] = STATE(182), - [sym__image_description] = STATE(672), + [sym__image_description] = STATE(628), [sym__link] = STATE(182), [sym_full_reference_link] = STATE(182), [sym_collapsed_reference_link] = STATE(182), [sym_inline_link] = STATE(182), - [sym_link_text] = STATE(671), + [sym_link_text] = STATE(627), [sym__comment_with_spaces] = STATE(182), [sym_span] = STATE(182), [sym_raw_inline] = STATE(182), @@ -12923,12 +12765,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(182), [sym_note] = STATE(182), [sym__symbol_fallback] = STATE(182), - [sym__verbatim_begin] = STATE(870), - [aux_sym__text] = STATE(150), - [aux_sym__inline_repeat1] = STATE(96), - [anon_sym_LBRACE] = ACTIONS(51), + [aux_sym__text] = STATE(136), + [aux_sym__inline_repeat1] = STATE(120), + [anon_sym_LBRACE] = ACTIONS(49), [anon_sym_LBRACE_] = ACTIONS(141), - [anon_sym__] = ACTIONS(144), + [anon_sym__] = ACTIONS(486), [anon_sym_LBRACE_STAR] = ACTIONS(147), [anon_sym_STAR] = ACTIONS(150), [anon_sym_BSLASH] = ACTIONS(153), @@ -12939,654 +12780,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_backslash_escape] = ACTIONS(159), [anon_sym_LT] = ACTIONS(162), [anon_sym_LBRACE_EQ] = ACTIONS(165), + [anon_sym_EQ_RBRACE] = ACTIONS(93), [anon_sym_LBRACE_PLUS] = ACTIONS(168), [anon_sym_LBRACE_DASH] = ACTIONS(171), [sym_symbol] = ACTIONS(156), [anon_sym_LBRACE_CARET] = ACTIONS(174), - [anon_sym_CARET] = ACTIONS(543), - [anon_sym_CARET_RBRACE] = ACTIONS(49), + [anon_sym_CARET] = ACTIONS(174), [anon_sym_LBRACE_TILDE] = ACTIONS(177), [anon_sym_TILDE] = ACTIONS(177), - [anon_sym_LBRACK_CARET] = ACTIONS(183), - [anon_sym_BANG_LBRACK] = ACTIONS(186), - [anon_sym_LBRACK] = ACTIONS(189), + [anon_sym_LBRACK_CARET] = ACTIONS(180), + [anon_sym_BANG_LBRACK] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(186), [anon_sym_LBRACE2] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(192), - [anon_sym_TODO] = ACTIONS(195), - [anon_sym_WIP] = ACTIONS(195), - [anon_sym_NOTE] = ACTIONS(198), - [anon_sym_INFO] = ACTIONS(198), - [anon_sym_XXX] = ACTIONS(198), + [anon_sym_DOLLAR] = ACTIONS(189), + [anon_sym_TODO] = ACTIONS(192), + [anon_sym_WIP] = ACTIONS(192), + [anon_sym_NOTE] = ACTIONS(195), + [anon_sym_INFO] = ACTIONS(195), + [anon_sym_XXX] = ACTIONS(195), [sym_fixme] = ACTIONS(156), [anon_sym_PIPE] = ACTIONS(156), - [anon_sym_BQUOTE] = ACTIONS(112), - [sym__whitespace1] = ACTIONS(201), - [sym__newline] = ACTIONS(204), - [aux_sym__text_token1] = ACTIONS(207), - }, - [62] = { - [sym__inline] = STATE(898), - [sym__element] = STATE(112), - [sym_emphasis] = STATE(206), - [sym_emphasis_begin] = STATE(108), - [sym_strong] = STATE(206), - [sym_strong_begin] = STATE(110), - [sym__hard_line_break] = STATE(206), - [sym_hard_line_break] = STATE(206), - [sym__smart_punctuation] = STATE(206), - [sym_autolink] = STATE(206), - [sym_highlighted] = STATE(206), - [sym_insert] = STATE(206), - [sym_delete] = STATE(206), - [sym_superscript] = STATE(206), - [sym_subscript] = STATE(206), - [sym_footnote_reference] = STATE(206), - [sym__image] = STATE(206), - [sym_full_reference_image] = STATE(206), - [sym_collapsed_reference_image] = STATE(206), - [sym_inline_image] = STATE(206), - [sym__image_description] = STATE(664), - [sym__link] = STATE(206), - [sym_full_reference_link] = STATE(206), - [sym_collapsed_reference_link] = STATE(206), - [sym_inline_link] = STATE(206), - [sym_link_text] = STATE(663), - [sym__comment_with_spaces] = STATE(206), - [sym_span] = STATE(206), - [sym_raw_inline] = STATE(206), - [sym_math] = STATE(206), - [sym_verbatim] = STATE(206), - [sym__todo_highlights] = STATE(206), - [sym_todo] = STATE(206), - [sym_note] = STATE(206), - [sym__symbol_fallback] = STATE(206), - [sym__verbatim_begin] = STATE(879), - [aux_sym__text] = STATE(126), - [aux_sym__inline_repeat1] = STATE(112), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACE_] = ACTIONS(53), - [anon_sym__] = ACTIONS(56), - [anon_sym_LBRACE_STAR] = ACTIONS(59), - [anon_sym_STAR] = ACTIONS(133), - [aux_sym_strong_end_token1] = ACTIONS(49), - [anon_sym_BSLASH] = ACTIONS(65), - [sym_quotation_marks] = ACTIONS(68), - [sym_ellipsis] = ACTIONS(68), - [sym_em_dash] = ACTIONS(68), - [sym_en_dash] = ACTIONS(71), - [sym_backslash_escape] = ACTIONS(71), - [anon_sym_LT] = ACTIONS(74), - [anon_sym_LBRACE_EQ] = ACTIONS(77), - [anon_sym_LBRACE_PLUS] = ACTIONS(80), - [anon_sym_LBRACE_DASH] = ACTIONS(83), - [sym_symbol] = ACTIONS(68), - [anon_sym_LBRACE_CARET] = ACTIONS(86), - [anon_sym_CARET] = ACTIONS(86), - [anon_sym_LBRACE_TILDE] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_LBRACK_CARET] = ACTIONS(92), - [anon_sym_BANG_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK] = ACTIONS(100), - [anon_sym_LBRACE2] = ACTIONS(71), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_TODO] = ACTIONS(106), - [anon_sym_WIP] = ACTIONS(106), - [anon_sym_NOTE] = ACTIONS(109), - [anon_sym_INFO] = ACTIONS(109), - [anon_sym_XXX] = ACTIONS(109), - [sym_fixme] = ACTIONS(68), - [anon_sym_PIPE] = ACTIONS(68), - [anon_sym_BQUOTE] = ACTIONS(112), - [sym__whitespace1] = ACTIONS(127), - [sym__newline] = ACTIONS(118), - [aux_sym__text_token1] = ACTIONS(121), + [sym__whitespace1] = ACTIONS(489), + [sym__newline] = ACTIONS(201), + [aux_sym__text_token1] = ACTIONS(204), + [sym__verbatim_begin] = ACTIONS(207), }, [63] = { - [sym__inline] = STATE(797), - [sym__element] = STATE(101), - [sym_emphasis] = STATE(173), - [sym_emphasis_begin] = STATE(87), - [sym_strong] = STATE(173), - [sym_strong_begin] = STATE(76), - [sym__hard_line_break] = STATE(173), - [sym_hard_line_break] = STATE(173), - [sym__smart_punctuation] = STATE(173), - [sym_autolink] = STATE(173), - [sym_highlighted] = STATE(173), - [sym_insert] = STATE(173), - [sym_delete] = STATE(173), - [sym_superscript] = STATE(173), - [sym_subscript] = STATE(173), - [sym_footnote_reference] = STATE(173), - [sym__image] = STATE(173), - [sym_full_reference_image] = STATE(173), - [sym_collapsed_reference_image] = STATE(173), - [sym_inline_image] = STATE(173), - [sym__image_description] = STATE(647), - [sym__link] = STATE(173), - [sym_full_reference_link] = STATE(173), - [sym_collapsed_reference_link] = STATE(173), - [sym_inline_link] = STATE(173), - [sym_link_text] = STATE(648), - [sym__comment_with_spaces] = STATE(173), - [sym_span] = STATE(173), - [sym_raw_inline] = STATE(173), - [sym_math] = STATE(173), - [sym_verbatim] = STATE(173), - [sym__todo_highlights] = STATE(173), - [sym_todo] = STATE(173), - [sym_note] = STATE(173), - [sym__symbol_fallback] = STATE(173), - [sym__verbatim_begin] = STATE(843), - [aux_sym__text] = STATE(155), - [aux_sym__inline_repeat1] = STATE(101), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACE_] = ACTIONS(342), - [anon_sym__] = ACTIONS(345), - [anon_sym_LBRACE_STAR] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(351), - [anon_sym_BSLASH] = ACTIONS(354), - [sym_quotation_marks] = ACTIONS(357), - [sym_ellipsis] = ACTIONS(357), - [sym_em_dash] = ACTIONS(357), - [sym_en_dash] = ACTIONS(360), - [sym_backslash_escape] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(363), - [anon_sym_LBRACE_EQ] = ACTIONS(366), - [anon_sym_LBRACE_PLUS] = ACTIONS(369), - [anon_sym_LBRACE_DASH] = ACTIONS(372), - [sym_symbol] = ACTIONS(357), - [anon_sym_LBRACE_CARET] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(375), - [anon_sym_LBRACE_TILDE] = ACTIONS(378), - [anon_sym_TILDE] = ACTIONS(378), - [anon_sym_LBRACK_CARET] = ACTIONS(381), - [anon_sym_BANG_LBRACK] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(387), - [anon_sym_RBRACK2] = ACTIONS(49), - [anon_sym_LBRACE2] = ACTIONS(360), - [anon_sym_DOLLAR] = ACTIONS(390), - [anon_sym_TODO] = ACTIONS(393), - [anon_sym_WIP] = ACTIONS(393), - [anon_sym_NOTE] = ACTIONS(396), - [anon_sym_INFO] = ACTIONS(396), - [anon_sym_XXX] = ACTIONS(396), - [sym_fixme] = ACTIONS(357), - [anon_sym_PIPE] = ACTIONS(357), - [anon_sym_BQUOTE] = ACTIONS(112), - [sym__whitespace1] = ACTIONS(399), - [sym__newline] = ACTIONS(402), - [aux_sym__text_token1] = ACTIONS(405), - }, - [64] = { - [sym__inline] = STATE(753), - [sym__element] = STATE(109), - [sym_emphasis] = STATE(221), - [sym_emphasis_begin] = STATE(82), - [sym_strong] = STATE(221), - [sym_strong_begin] = STATE(83), - [sym__hard_line_break] = STATE(221), - [sym_hard_line_break] = STATE(221), - [sym__smart_punctuation] = STATE(221), - [sym_autolink] = STATE(221), - [sym_highlighted] = STATE(221), - [sym_insert] = STATE(221), - [sym_delete] = STATE(221), - [sym_superscript] = STATE(221), - [sym_subscript] = STATE(221), - [sym_footnote_reference] = STATE(221), - [sym__image] = STATE(221), - [sym_full_reference_image] = STATE(221), - [sym_collapsed_reference_image] = STATE(221), - [sym_inline_image] = STATE(221), - [sym__image_description] = STATE(669), - [sym__link] = STATE(221), - [sym_full_reference_link] = STATE(221), - [sym_collapsed_reference_link] = STATE(221), - [sym_inline_link] = STATE(221), - [sym_link_text] = STATE(657), - [sym__comment_with_spaces] = STATE(221), - [sym_span] = STATE(221), - [sym_raw_inline] = STATE(221), - [sym_math] = STATE(221), - [sym_verbatim] = STATE(221), - [sym__todo_highlights] = STATE(221), - [sym_todo] = STATE(221), - [sym_note] = STATE(221), - [sym__symbol_fallback] = STATE(221), - [sym__verbatim_begin] = STATE(834), - [aux_sym__text] = STATE(134), - [aux_sym__inline_repeat1] = STATE(109), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACE_] = ACTIONS(408), - [anon_sym__] = ACTIONS(411), - [anon_sym_LBRACE_STAR] = ACTIONS(414), - [anon_sym_STAR] = ACTIONS(417), - [anon_sym_BSLASH] = ACTIONS(420), - [sym_quotation_marks] = ACTIONS(423), - [sym_ellipsis] = ACTIONS(423), - [sym_em_dash] = ACTIONS(423), - [sym_en_dash] = ACTIONS(426), - [sym_backslash_escape] = ACTIONS(426), - [anon_sym_LT] = ACTIONS(429), - [anon_sym_LBRACE_EQ] = ACTIONS(432), - [anon_sym_LBRACE_PLUS] = ACTIONS(435), - [anon_sym_LBRACE_DASH] = ACTIONS(438), - [sym_symbol] = ACTIONS(423), - [anon_sym_LBRACE_CARET] = ACTIONS(441), - [anon_sym_CARET] = ACTIONS(441), - [anon_sym_LBRACE_TILDE] = ACTIONS(444), - [anon_sym_TILDE] = ACTIONS(444), - [anon_sym_LBRACK_CARET] = ACTIONS(447), - [anon_sym_BANG_LBRACK] = ACTIONS(450), - [anon_sym_LBRACK] = ACTIONS(453), - [anon_sym_RBRACK2] = ACTIONS(49), - [anon_sym_LBRACE2] = ACTIONS(426), - [anon_sym_DOLLAR] = ACTIONS(456), - [anon_sym_TODO] = ACTIONS(459), - [anon_sym_WIP] = ACTIONS(459), - [anon_sym_NOTE] = ACTIONS(462), - [anon_sym_INFO] = ACTIONS(462), - [anon_sym_XXX] = ACTIONS(462), - [sym_fixme] = ACTIONS(423), - [anon_sym_PIPE] = ACTIONS(423), - [anon_sym_BQUOTE] = ACTIONS(112), - [sym__whitespace1] = ACTIONS(465), - [sym__newline] = ACTIONS(468), - [aux_sym__text_token1] = ACTIONS(471), - }, - [65] = { - [sym__inline] = STATE(856), - [sym__element] = STATE(101), - [sym_emphasis] = STATE(173), - [sym_emphasis_begin] = STATE(87), - [sym_strong] = STATE(173), - [sym_strong_begin] = STATE(76), - [sym__hard_line_break] = STATE(173), - [sym_hard_line_break] = STATE(173), - [sym__smart_punctuation] = STATE(173), - [sym_autolink] = STATE(173), - [sym_highlighted] = STATE(173), - [sym_insert] = STATE(173), - [sym_delete] = STATE(173), - [sym_superscript] = STATE(173), - [sym_subscript] = STATE(173), - [sym_footnote_reference] = STATE(173), - [sym__image] = STATE(173), - [sym_full_reference_image] = STATE(173), - [sym_collapsed_reference_image] = STATE(173), - [sym_inline_image] = STATE(173), - [sym__image_description] = STATE(647), - [sym__link] = STATE(173), - [sym_full_reference_link] = STATE(173), - [sym_collapsed_reference_link] = STATE(173), - [sym_inline_link] = STATE(173), - [sym_link_text] = STATE(648), - [sym__comment_with_spaces] = STATE(173), - [sym_span] = STATE(173), - [sym_raw_inline] = STATE(173), - [sym_math] = STATE(173), - [sym_verbatim] = STATE(173), - [sym__todo_highlights] = STATE(173), - [sym_todo] = STATE(173), - [sym_note] = STATE(173), - [sym__symbol_fallback] = STATE(173), - [sym__verbatim_begin] = STATE(843), - [aux_sym__text] = STATE(155), - [aux_sym__inline_repeat1] = STATE(101), - [ts_builtin_sym_end] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACE_] = ACTIONS(342), - [anon_sym__] = ACTIONS(345), - [anon_sym_LBRACE_STAR] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(351), - [anon_sym_BSLASH] = ACTIONS(354), - [sym_quotation_marks] = ACTIONS(357), - [sym_ellipsis] = ACTIONS(357), - [sym_em_dash] = ACTIONS(357), - [sym_en_dash] = ACTIONS(360), - [sym_backslash_escape] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(363), - [anon_sym_LBRACE_EQ] = ACTIONS(366), - [anon_sym_LBRACE_PLUS] = ACTIONS(369), - [anon_sym_LBRACE_DASH] = ACTIONS(372), - [sym_symbol] = ACTIONS(357), - [anon_sym_LBRACE_CARET] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(375), - [anon_sym_LBRACE_TILDE] = ACTIONS(378), - [anon_sym_TILDE] = ACTIONS(378), - [anon_sym_LBRACK_CARET] = ACTIONS(381), - [anon_sym_BANG_LBRACK] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(387), - [anon_sym_LBRACE2] = ACTIONS(360), - [anon_sym_DOLLAR] = ACTIONS(390), - [anon_sym_TODO] = ACTIONS(393), - [anon_sym_WIP] = ACTIONS(393), - [anon_sym_NOTE] = ACTIONS(396), - [anon_sym_INFO] = ACTIONS(396), - [anon_sym_XXX] = ACTIONS(396), - [sym_fixme] = ACTIONS(357), - [anon_sym_PIPE] = ACTIONS(357), - [anon_sym_BQUOTE] = ACTIONS(112), - [sym__whitespace1] = ACTIONS(399), - [sym__newline] = ACTIONS(402), - [aux_sym__text_token1] = ACTIONS(405), - }, - [66] = { - [sym__inline] = STATE(734), - [sym__element] = STATE(84), - [sym_emphasis] = STATE(197), - [sym_emphasis_begin] = STATE(97), - [sym_strong] = STATE(197), - [sym_strong_begin] = STATE(100), - [sym__hard_line_break] = STATE(197), - [sym_hard_line_break] = STATE(197), - [sym__smart_punctuation] = STATE(197), - [sym_autolink] = STATE(197), - [sym_highlighted] = STATE(197), - [sym_insert] = STATE(197), - [sym_delete] = STATE(197), - [sym_superscript] = STATE(197), - [sym_subscript] = STATE(197), - [sym_footnote_reference] = STATE(197), - [sym__image] = STATE(197), - [sym_full_reference_image] = STATE(197), - [sym_collapsed_reference_image] = STATE(197), - [sym_inline_image] = STATE(197), - [sym__image_description] = STATE(676), - [sym__link] = STATE(197), - [sym_full_reference_link] = STATE(197), - [sym_collapsed_reference_link] = STATE(197), - [sym_inline_link] = STATE(197), - [sym_link_text] = STATE(677), - [sym__comment_with_spaces] = STATE(197), - [sym_span] = STATE(197), - [sym_raw_inline] = STATE(197), - [sym_math] = STATE(197), - [sym_verbatim] = STATE(197), - [sym__todo_highlights] = STATE(197), - [sym_todo] = STATE(197), - [sym_note] = STATE(197), - [sym__symbol_fallback] = STATE(197), - [sym__verbatim_begin] = STATE(861), - [aux_sym__text] = STATE(159), - [aux_sym__inline_repeat1] = STATE(84), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACE_] = ACTIONS(276), - [anon_sym__] = ACTIONS(546), - [aux_sym_emphasis_end_token1] = ACTIONS(49), - [anon_sym_LBRACE_STAR] = ACTIONS(282), - [anon_sym_STAR] = ACTIONS(285), - [anon_sym_BSLASH] = ACTIONS(288), - [sym_quotation_marks] = ACTIONS(291), - [sym_ellipsis] = ACTIONS(291), - [sym_em_dash] = ACTIONS(291), - [sym_en_dash] = ACTIONS(294), - [sym_backslash_escape] = ACTIONS(294), - [anon_sym_LT] = ACTIONS(297), - [anon_sym_LBRACE_EQ] = ACTIONS(300), - [anon_sym_LBRACE_PLUS] = ACTIONS(303), - [anon_sym_LBRACE_DASH] = ACTIONS(306), - [sym_symbol] = ACTIONS(291), - [anon_sym_LBRACE_CARET] = ACTIONS(309), - [anon_sym_CARET] = ACTIONS(309), - [anon_sym_LBRACE_TILDE] = ACTIONS(312), - [anon_sym_TILDE] = ACTIONS(312), - [anon_sym_LBRACK_CARET] = ACTIONS(315), - [anon_sym_BANG_LBRACK] = ACTIONS(318), - [anon_sym_LBRACK] = ACTIONS(321), - [anon_sym_LBRACE2] = ACTIONS(294), - [anon_sym_DOLLAR] = ACTIONS(324), - [anon_sym_TODO] = ACTIONS(327), - [anon_sym_WIP] = ACTIONS(327), - [anon_sym_NOTE] = ACTIONS(330), - [anon_sym_INFO] = ACTIONS(330), - [anon_sym_XXX] = ACTIONS(330), - [sym_fixme] = ACTIONS(291), - [anon_sym_PIPE] = ACTIONS(291), - [anon_sym_BQUOTE] = ACTIONS(112), - [sym__whitespace1] = ACTIONS(525), - [sym__newline] = ACTIONS(336), - [aux_sym__text_token1] = ACTIONS(339), - }, - [67] = { - [sym__inline] = STATE(779), - [sym__element] = STATE(101), - [sym_emphasis] = STATE(173), - [sym_emphasis_begin] = STATE(87), - [sym_strong] = STATE(173), - [sym_strong_begin] = STATE(76), - [sym__hard_line_break] = STATE(173), - [sym_hard_line_break] = STATE(173), - [sym__smart_punctuation] = STATE(173), - [sym_autolink] = STATE(173), - [sym_highlighted] = STATE(173), - [sym_insert] = STATE(173), - [sym_delete] = STATE(173), - [sym_superscript] = STATE(173), - [sym_subscript] = STATE(173), - [sym_footnote_reference] = STATE(173), - [sym__image] = STATE(173), - [sym_full_reference_image] = STATE(173), - [sym_collapsed_reference_image] = STATE(173), - [sym_inline_image] = STATE(173), - [sym__image_description] = STATE(647), - [sym__link] = STATE(173), - [sym_full_reference_link] = STATE(173), - [sym_collapsed_reference_link] = STATE(173), - [sym_inline_link] = STATE(173), - [sym_link_text] = STATE(648), - [sym__comment_with_spaces] = STATE(173), - [sym_span] = STATE(173), - [sym_raw_inline] = STATE(173), - [sym_math] = STATE(173), - [sym_verbatim] = STATE(173), - [sym__todo_highlights] = STATE(173), - [sym_todo] = STATE(173), - [sym_note] = STATE(173), - [sym__symbol_fallback] = STATE(173), - [sym__verbatim_begin] = STATE(843), - [aux_sym__text] = STATE(155), - [aux_sym__inline_repeat1] = STATE(101), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACE_] = ACTIONS(342), - [anon_sym__] = ACTIONS(345), - [anon_sym_LBRACE_STAR] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(351), - [anon_sym_BSLASH] = ACTIONS(354), - [sym_quotation_marks] = ACTIONS(357), - [sym_ellipsis] = ACTIONS(357), - [sym_em_dash] = ACTIONS(357), - [sym_en_dash] = ACTIONS(360), - [sym_backslash_escape] = ACTIONS(360), - [anon_sym_LT] = ACTIONS(363), - [anon_sym_LBRACE_EQ] = ACTIONS(366), - [anon_sym_LBRACE_PLUS] = ACTIONS(369), - [anon_sym_PLUS_RBRACE] = ACTIONS(49), - [anon_sym_LBRACE_DASH] = ACTIONS(372), - [sym_symbol] = ACTIONS(357), - [anon_sym_LBRACE_CARET] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(375), - [anon_sym_LBRACE_TILDE] = ACTIONS(378), - [anon_sym_TILDE] = ACTIONS(378), - [anon_sym_LBRACK_CARET] = ACTIONS(381), - [anon_sym_BANG_LBRACK] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(387), - [anon_sym_LBRACE2] = ACTIONS(360), - [anon_sym_DOLLAR] = ACTIONS(390), - [anon_sym_TODO] = ACTIONS(393), - [anon_sym_WIP] = ACTIONS(393), - [anon_sym_NOTE] = ACTIONS(396), - [anon_sym_INFO] = ACTIONS(396), - [anon_sym_XXX] = ACTIONS(396), - [sym_fixme] = ACTIONS(357), - [anon_sym_PIPE] = ACTIONS(357), - [anon_sym_BQUOTE] = ACTIONS(112), - [sym__whitespace1] = ACTIONS(399), - [sym__newline] = ACTIONS(402), - [aux_sym__text_token1] = ACTIONS(405), - }, - [68] = { - [sym__inline] = STATE(844), - [sym__element] = STATE(112), - [sym_emphasis] = STATE(206), - [sym_emphasis_begin] = STATE(108), - [sym_strong] = STATE(206), - [sym_strong_begin] = STATE(110), - [sym__hard_line_break] = STATE(206), - [sym_hard_line_break] = STATE(206), - [sym__smart_punctuation] = STATE(206), - [sym_autolink] = STATE(206), - [sym_highlighted] = STATE(206), - [sym_insert] = STATE(206), - [sym_delete] = STATE(206), - [sym_superscript] = STATE(206), - [sym_subscript] = STATE(206), - [sym_footnote_reference] = STATE(206), - [sym__image] = STATE(206), - [sym_full_reference_image] = STATE(206), - [sym_collapsed_reference_image] = STATE(206), - [sym_inline_image] = STATE(206), - [sym__image_description] = STATE(664), - [sym__link] = STATE(206), - [sym_full_reference_link] = STATE(206), - [sym_collapsed_reference_link] = STATE(206), - [sym_inline_link] = STATE(206), - [sym_link_text] = STATE(663), - [sym__comment_with_spaces] = STATE(206), - [sym_span] = STATE(206), - [sym_raw_inline] = STATE(206), - [sym_math] = STATE(206), - [sym_verbatim] = STATE(206), - [sym__todo_highlights] = STATE(206), - [sym_todo] = STATE(206), - [sym_note] = STATE(206), - [sym__symbol_fallback] = STATE(206), - [sym__verbatim_begin] = STATE(879), - [aux_sym__text] = STATE(126), - [aux_sym__inline_repeat1] = STATE(112), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACE_] = ACTIONS(53), - [anon_sym__] = ACTIONS(56), - [anon_sym_LBRACE_STAR] = ACTIONS(59), - [anon_sym_STAR] = ACTIONS(62), - [anon_sym_BSLASH] = ACTIONS(65), - [sym_quotation_marks] = ACTIONS(68), - [sym_ellipsis] = ACTIONS(68), - [sym_em_dash] = ACTIONS(68), - [sym_en_dash] = ACTIONS(71), - [sym_backslash_escape] = ACTIONS(71), - [anon_sym_LT] = ACTIONS(74), - [anon_sym_LBRACE_EQ] = ACTIONS(77), - [anon_sym_LBRACE_PLUS] = ACTIONS(80), - [anon_sym_PLUS_RBRACE] = ACTIONS(49), - [anon_sym_LBRACE_DASH] = ACTIONS(83), - [sym_symbol] = ACTIONS(68), - [anon_sym_LBRACE_CARET] = ACTIONS(86), - [anon_sym_CARET] = ACTIONS(86), - [anon_sym_LBRACE_TILDE] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_LBRACK_CARET] = ACTIONS(92), - [anon_sym_BANG_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK] = ACTIONS(100), - [anon_sym_LBRACE2] = ACTIONS(71), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_TODO] = ACTIONS(106), - [anon_sym_WIP] = ACTIONS(106), - [anon_sym_NOTE] = ACTIONS(109), - [anon_sym_INFO] = ACTIONS(109), - [anon_sym_XXX] = ACTIONS(109), - [sym_fixme] = ACTIONS(68), - [anon_sym_PIPE] = ACTIONS(68), - [anon_sym_BQUOTE] = ACTIONS(112), - [sym__whitespace1] = ACTIONS(115), - [sym__newline] = ACTIONS(118), - [aux_sym__text_token1] = ACTIONS(121), - }, - [69] = { - [sym__inline] = STATE(859), - [sym__element] = STATE(109), - [sym_emphasis] = STATE(221), - [sym_emphasis_begin] = STATE(82), - [sym_strong] = STATE(221), - [sym_strong_begin] = STATE(83), - [sym__hard_line_break] = STATE(221), - [sym_hard_line_break] = STATE(221), - [sym__smart_punctuation] = STATE(221), - [sym_autolink] = STATE(221), - [sym_highlighted] = STATE(221), - [sym_insert] = STATE(221), - [sym_delete] = STATE(221), - [sym_superscript] = STATE(221), - [sym_subscript] = STATE(221), - [sym_footnote_reference] = STATE(221), - [sym__image] = STATE(221), - [sym_full_reference_image] = STATE(221), - [sym_collapsed_reference_image] = STATE(221), - [sym_inline_image] = STATE(221), - [sym__image_description] = STATE(669), - [sym__link] = STATE(221), - [sym_full_reference_link] = STATE(221), - [sym_collapsed_reference_link] = STATE(221), - [sym_inline_link] = STATE(221), - [sym_link_text] = STATE(657), - [sym__comment_with_spaces] = STATE(221), - [sym_span] = STATE(221), - [sym_raw_inline] = STATE(221), - [sym_math] = STATE(221), - [sym_verbatim] = STATE(221), - [sym__todo_highlights] = STATE(221), - [sym_todo] = STATE(221), - [sym_note] = STATE(221), - [sym__symbol_fallback] = STATE(221), - [sym__verbatim_begin] = STATE(834), - [aux_sym__text] = STATE(134), - [aux_sym__inline_repeat1] = STATE(109), - [ts_builtin_sym_end] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACE_] = ACTIONS(408), - [anon_sym__] = ACTIONS(411), - [anon_sym_LBRACE_STAR] = ACTIONS(414), - [anon_sym_STAR] = ACTIONS(417), - [anon_sym_BSLASH] = ACTIONS(420), - [sym_quotation_marks] = ACTIONS(423), - [sym_ellipsis] = ACTIONS(423), - [sym_em_dash] = ACTIONS(423), - [sym_en_dash] = ACTIONS(426), - [sym_backslash_escape] = ACTIONS(426), - [anon_sym_LT] = ACTIONS(429), - [anon_sym_LBRACE_EQ] = ACTIONS(432), - [anon_sym_LBRACE_PLUS] = ACTIONS(435), - [anon_sym_LBRACE_DASH] = ACTIONS(438), - [sym_symbol] = ACTIONS(423), - [anon_sym_LBRACE_CARET] = ACTIONS(441), - [anon_sym_CARET] = ACTIONS(441), - [anon_sym_LBRACE_TILDE] = ACTIONS(444), - [anon_sym_TILDE] = ACTIONS(444), - [anon_sym_LBRACK_CARET] = ACTIONS(447), - [anon_sym_BANG_LBRACK] = ACTIONS(450), - [anon_sym_LBRACK] = ACTIONS(453), - [anon_sym_LBRACE2] = ACTIONS(426), - [anon_sym_DOLLAR] = ACTIONS(456), - [anon_sym_TODO] = ACTIONS(459), - [anon_sym_WIP] = ACTIONS(459), - [anon_sym_NOTE] = ACTIONS(462), - [anon_sym_INFO] = ACTIONS(462), - [anon_sym_XXX] = ACTIONS(462), - [sym_fixme] = ACTIONS(423), - [anon_sym_PIPE] = ACTIONS(423), - [anon_sym_BQUOTE] = ACTIONS(112), - [sym__whitespace1] = ACTIONS(465), - [sym__newline] = ACTIONS(468), - [aux_sym__text_token1] = ACTIONS(471), - }, - [70] = { - [sym__inline] = STATE(747), - [sym__element] = STATE(96), + [sym__inline] = STATE(683), + [sym__element] = STATE(120), [sym_emphasis] = STATE(182), - [sym_emphasis_begin] = STATE(103), + [sym_emphasis_begin] = STATE(97), [sym_strong] = STATE(182), - [sym_strong_begin] = STATE(104), + [sym_strong_begin] = STATE(99), [sym__hard_line_break] = STATE(182), [sym_hard_line_break] = STATE(182), [sym__smart_punctuation] = STATE(182), @@ -13601,12 +12826,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_full_reference_image] = STATE(182), [sym_collapsed_reference_image] = STATE(182), [sym_inline_image] = STATE(182), - [sym__image_description] = STATE(672), + [sym__image_description] = STATE(628), [sym__link] = STATE(182), [sym_full_reference_link] = STATE(182), [sym_collapsed_reference_link] = STATE(182), [sym_inline_link] = STATE(182), - [sym_link_text] = STATE(671), + [sym_link_text] = STATE(627), [sym__comment_with_spaces] = STATE(182), [sym_span] = STATE(182), [sym_raw_inline] = STATE(182), @@ -13616,12 +12841,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(182), [sym_note] = STATE(182), [sym__symbol_fallback] = STATE(182), - [sym__verbatim_begin] = STATE(870), - [aux_sym__text] = STATE(150), - [aux_sym__inline_repeat1] = STATE(96), - [anon_sym_LBRACE] = ACTIONS(51), + [aux_sym__text] = STATE(136), + [aux_sym__inline_repeat1] = STATE(120), + [anon_sym_LBRACE] = ACTIONS(49), [anon_sym_LBRACE_] = ACTIONS(141), - [anon_sym__] = ACTIONS(144), + [anon_sym__] = ACTIONS(486), [anon_sym_LBRACE_STAR] = ACTIONS(147), [anon_sym_STAR] = ACTIONS(150), [anon_sym_BSLASH] = ACTIONS(153), @@ -13633,114 +12857,645 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(162), [anon_sym_LBRACE_EQ] = ACTIONS(165), [anon_sym_LBRACE_PLUS] = ACTIONS(168), - [anon_sym_PLUS_RBRACE] = ACTIONS(49), + [anon_sym_PLUS_RBRACE] = ACTIONS(93), [anon_sym_LBRACE_DASH] = ACTIONS(171), [sym_symbol] = ACTIONS(156), [anon_sym_LBRACE_CARET] = ACTIONS(174), [anon_sym_CARET] = ACTIONS(174), [anon_sym_LBRACE_TILDE] = ACTIONS(177), [anon_sym_TILDE] = ACTIONS(177), - [anon_sym_LBRACK_CARET] = ACTIONS(183), - [anon_sym_BANG_LBRACK] = ACTIONS(186), - [anon_sym_LBRACK] = ACTIONS(189), + [anon_sym_LBRACK_CARET] = ACTIONS(180), + [anon_sym_BANG_LBRACK] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(186), [anon_sym_LBRACE2] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(192), - [anon_sym_TODO] = ACTIONS(195), - [anon_sym_WIP] = ACTIONS(195), - [anon_sym_NOTE] = ACTIONS(198), - [anon_sym_INFO] = ACTIONS(198), - [anon_sym_XXX] = ACTIONS(198), + [anon_sym_DOLLAR] = ACTIONS(189), + [anon_sym_TODO] = ACTIONS(192), + [anon_sym_WIP] = ACTIONS(192), + [anon_sym_NOTE] = ACTIONS(195), + [anon_sym_INFO] = ACTIONS(195), + [anon_sym_XXX] = ACTIONS(195), [sym_fixme] = ACTIONS(156), [anon_sym_PIPE] = ACTIONS(156), - [anon_sym_BQUOTE] = ACTIONS(112), - [sym__whitespace1] = ACTIONS(201), - [sym__newline] = ACTIONS(204), - [aux_sym__text_token1] = ACTIONS(207), - }, - [71] = { - [sym__inline] = STATE(738), - [sym__element] = STATE(84), - [sym_emphasis] = STATE(197), - [sym_emphasis_begin] = STATE(97), - [sym_strong] = STATE(197), - [sym_strong_begin] = STATE(100), - [sym__hard_line_break] = STATE(197), - [sym_hard_line_break] = STATE(197), - [sym__smart_punctuation] = STATE(197), - [sym_autolink] = STATE(197), - [sym_highlighted] = STATE(197), - [sym_insert] = STATE(197), - [sym_delete] = STATE(197), - [sym_superscript] = STATE(197), - [sym_subscript] = STATE(197), - [sym_footnote_reference] = STATE(197), - [sym__image] = STATE(197), - [sym_full_reference_image] = STATE(197), - [sym_collapsed_reference_image] = STATE(197), - [sym_inline_image] = STATE(197), - [sym__image_description] = STATE(676), - [sym__link] = STATE(197), - [sym_full_reference_link] = STATE(197), - [sym_collapsed_reference_link] = STATE(197), - [sym_inline_link] = STATE(197), - [sym_link_text] = STATE(677), - [sym__comment_with_spaces] = STATE(197), - [sym_span] = STATE(197), - [sym_raw_inline] = STATE(197), - [sym_math] = STATE(197), - [sym_verbatim] = STATE(197), - [sym__todo_highlights] = STATE(197), - [sym_todo] = STATE(197), - [sym_note] = STATE(197), - [sym__symbol_fallback] = STATE(197), - [sym__verbatim_begin] = STATE(861), - [aux_sym__text] = STATE(159), - [aux_sym__inline_repeat1] = STATE(84), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACE_] = ACTIONS(276), - [anon_sym__] = ACTIONS(279), - [anon_sym_LBRACE_STAR] = ACTIONS(282), - [anon_sym_STAR] = ACTIONS(285), - [anon_sym_BSLASH] = ACTIONS(288), - [sym_quotation_marks] = ACTIONS(291), - [sym_ellipsis] = ACTIONS(291), - [sym_em_dash] = ACTIONS(291), - [sym_en_dash] = ACTIONS(294), - [sym_backslash_escape] = ACTIONS(294), - [anon_sym_LT] = ACTIONS(297), - [anon_sym_LBRACE_EQ] = ACTIONS(300), - [anon_sym_LBRACE_PLUS] = ACTIONS(303), - [anon_sym_PLUS_RBRACE] = ACTIONS(49), - [anon_sym_LBRACE_DASH] = ACTIONS(306), - [sym_symbol] = ACTIONS(291), - [anon_sym_LBRACE_CARET] = ACTIONS(309), - [anon_sym_CARET] = ACTIONS(309), - [anon_sym_LBRACE_TILDE] = ACTIONS(312), - [anon_sym_TILDE] = ACTIONS(312), - [anon_sym_LBRACK_CARET] = ACTIONS(315), - [anon_sym_BANG_LBRACK] = ACTIONS(318), - [anon_sym_LBRACK] = ACTIONS(321), - [anon_sym_LBRACE2] = ACTIONS(294), - [anon_sym_DOLLAR] = ACTIONS(324), - [anon_sym_TODO] = ACTIONS(327), - [anon_sym_WIP] = ACTIONS(327), - [anon_sym_NOTE] = ACTIONS(330), - [anon_sym_INFO] = ACTIONS(330), - [anon_sym_XXX] = ACTIONS(330), - [sym_fixme] = ACTIONS(291), - [anon_sym_PIPE] = ACTIONS(291), - [anon_sym_BQUOTE] = ACTIONS(112), - [sym__whitespace1] = ACTIONS(333), - [sym__newline] = ACTIONS(336), - [aux_sym__text_token1] = ACTIONS(339), + [sym__whitespace1] = ACTIONS(489), + [sym__newline] = ACTIONS(201), + [aux_sym__text_token1] = ACTIONS(204), + [sym__verbatim_begin] = ACTIONS(207), }, - [72] = { - [sym__inline] = STATE(682), - [sym__element] = STATE(73), + [64] = { + [sym__inline] = STATE(712), + [sym__element] = STATE(85), + [sym_emphasis] = STATE(175), + [sym_emphasis_begin] = STATE(94), + [sym_strong] = STATE(175), + [sym_strong_begin] = STATE(95), + [sym__hard_line_break] = STATE(175), + [sym_hard_line_break] = STATE(175), + [sym__smart_punctuation] = STATE(175), + [sym_autolink] = STATE(175), + [sym_highlighted] = STATE(175), + [sym_insert] = STATE(175), + [sym_delete] = STATE(175), + [sym_superscript] = STATE(175), + [sym_subscript] = STATE(175), + [sym_footnote_reference] = STATE(175), + [sym__image] = STATE(175), + [sym_full_reference_image] = STATE(175), + [sym_collapsed_reference_image] = STATE(175), + [sym_inline_image] = STATE(175), + [sym__image_description] = STATE(652), + [sym__link] = STATE(175), + [sym_full_reference_link] = STATE(175), + [sym_collapsed_reference_link] = STATE(175), + [sym_inline_link] = STATE(175), + [sym_link_text] = STATE(649), + [sym__comment_with_spaces] = STATE(175), + [sym_span] = STATE(175), + [sym_raw_inline] = STATE(175), + [sym_math] = STATE(175), + [sym_verbatim] = STATE(175), + [sym__todo_highlights] = STATE(175), + [sym_todo] = STATE(175), + [sym_note] = STATE(175), + [sym__symbol_fallback] = STATE(175), + [aux_sym__text] = STATE(156), + [aux_sym__inline_repeat1] = STATE(85), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(417), + [anon_sym__] = ACTIONS(420), + [anon_sym_LBRACE_STAR] = ACTIONS(423), + [anon_sym_STAR] = ACTIONS(426), + [anon_sym_BSLASH] = ACTIONS(429), + [sym_quotation_marks] = ACTIONS(432), + [sym_ellipsis] = ACTIONS(432), + [sym_em_dash] = ACTIONS(432), + [sym_en_dash] = ACTIONS(435), + [sym_backslash_escape] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(438), + [anon_sym_LBRACE_EQ] = ACTIONS(441), + [anon_sym_LBRACE_PLUS] = ACTIONS(444), + [anon_sym_PLUS_RBRACE] = ACTIONS(93), + [anon_sym_LBRACE_DASH] = ACTIONS(447), + [sym_symbol] = ACTIONS(432), + [anon_sym_LBRACE_CARET] = ACTIONS(450), + [anon_sym_CARET] = ACTIONS(450), + [anon_sym_LBRACE_TILDE] = ACTIONS(453), + [anon_sym_TILDE] = ACTIONS(453), + [anon_sym_LBRACK_CARET] = ACTIONS(456), + [anon_sym_BANG_LBRACK] = ACTIONS(459), + [anon_sym_LBRACK] = ACTIONS(462), + [anon_sym_LBRACE2] = ACTIONS(435), + [anon_sym_DOLLAR] = ACTIONS(465), + [anon_sym_TODO] = ACTIONS(468), + [anon_sym_WIP] = ACTIONS(468), + [anon_sym_NOTE] = ACTIONS(471), + [anon_sym_INFO] = ACTIONS(471), + [anon_sym_XXX] = ACTIONS(471), + [sym_fixme] = ACTIONS(432), + [anon_sym_PIPE] = ACTIONS(432), + [sym__whitespace1] = ACTIONS(474), + [sym__newline] = ACTIONS(477), + [aux_sym__text_token1] = ACTIONS(480), + [sym__verbatim_begin] = ACTIONS(483), + }, + [65] = { + [sym__inline] = STATE(784), + [sym__element] = STATE(116), + [sym_emphasis] = STATE(183), + [sym_emphasis_begin] = STATE(91), + [sym_strong] = STATE(183), + [sym_strong_begin] = STATE(92), + [sym__hard_line_break] = STATE(183), + [sym_hard_line_break] = STATE(183), + [sym__smart_punctuation] = STATE(183), + [sym_autolink] = STATE(183), + [sym_highlighted] = STATE(183), + [sym_insert] = STATE(183), + [sym_delete] = STATE(183), + [sym_superscript] = STATE(183), + [sym_subscript] = STATE(183), + [sym_footnote_reference] = STATE(183), + [sym__image] = STATE(183), + [sym_full_reference_image] = STATE(183), + [sym_collapsed_reference_image] = STATE(183), + [sym_inline_image] = STATE(183), + [sym__image_description] = STATE(645), + [sym__link] = STATE(183), + [sym_full_reference_link] = STATE(183), + [sym_collapsed_reference_link] = STATE(183), + [sym_inline_link] = STATE(183), + [sym_link_text] = STATE(646), + [sym__comment_with_spaces] = STATE(183), + [sym_span] = STATE(183), + [sym_raw_inline] = STATE(183), + [sym_math] = STATE(183), + [sym_verbatim] = STATE(183), + [sym__todo_highlights] = STATE(183), + [sym_todo] = STATE(183), + [sym_note] = STATE(183), + [sym__symbol_fallback] = STATE(183), + [aux_sym__text] = STATE(149), + [aux_sym__inline_repeat1] = STATE(116), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(210), + [anon_sym__] = ACTIONS(213), + [anon_sym_LBRACE_STAR] = ACTIONS(216), + [anon_sym_STAR] = ACTIONS(219), + [anon_sym_BSLASH] = ACTIONS(222), + [sym_quotation_marks] = ACTIONS(225), + [sym_ellipsis] = ACTIONS(225), + [sym_em_dash] = ACTIONS(225), + [sym_en_dash] = ACTIONS(228), + [sym_backslash_escape] = ACTIONS(228), + [anon_sym_LT] = ACTIONS(231), + [anon_sym_LBRACE_EQ] = ACTIONS(234), + [anon_sym_LBRACE_PLUS] = ACTIONS(237), + [anon_sym_PLUS_RBRACE] = ACTIONS(93), + [anon_sym_LBRACE_DASH] = ACTIONS(240), + [sym_symbol] = ACTIONS(225), + [anon_sym_LBRACE_CARET] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(243), + [anon_sym_LBRACE_TILDE] = ACTIONS(246), + [anon_sym_TILDE] = ACTIONS(246), + [anon_sym_LBRACK_CARET] = ACTIONS(249), + [anon_sym_BANG_LBRACK] = ACTIONS(252), + [anon_sym_LBRACK] = ACTIONS(255), + [anon_sym_LBRACE2] = ACTIONS(228), + [anon_sym_DOLLAR] = ACTIONS(258), + [anon_sym_TODO] = ACTIONS(261), + [anon_sym_WIP] = ACTIONS(261), + [anon_sym_NOTE] = ACTIONS(264), + [anon_sym_INFO] = ACTIONS(264), + [anon_sym_XXX] = ACTIONS(264), + [sym_fixme] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(225), + [sym__whitespace1] = ACTIONS(267), + [sym__newline] = ACTIONS(270), + [aux_sym__text_token1] = ACTIONS(273), + [sym__verbatim_begin] = ACTIONS(276), + }, + [66] = { + [sym__inline] = STATE(785), + [sym__element] = STATE(77), + [sym_emphasis] = STATE(174), + [sym_emphasis_begin] = STATE(86), + [sym_strong] = STATE(174), + [sym_strong_begin] = STATE(89), + [sym__hard_line_break] = STATE(174), + [sym_hard_line_break] = STATE(174), + [sym__smart_punctuation] = STATE(174), + [sym_autolink] = STATE(174), + [sym_highlighted] = STATE(174), + [sym_insert] = STATE(174), + [sym_delete] = STATE(174), + [sym_superscript] = STATE(174), + [sym_subscript] = STATE(174), + [sym_footnote_reference] = STATE(174), + [sym__image] = STATE(174), + [sym_full_reference_image] = STATE(174), + [sym_collapsed_reference_image] = STATE(174), + [sym_inline_image] = STATE(174), + [sym__image_description] = STATE(630), + [sym__link] = STATE(174), + [sym_full_reference_link] = STATE(174), + [sym_collapsed_reference_link] = STATE(174), + [sym_inline_link] = STATE(174), + [sym_link_text] = STATE(631), + [sym__comment_with_spaces] = STATE(174), + [sym_span] = STATE(174), + [sym_raw_inline] = STATE(174), + [sym_math] = STATE(174), + [sym_verbatim] = STATE(174), + [sym__todo_highlights] = STATE(174), + [sym_todo] = STATE(174), + [sym_note] = STATE(174), + [sym__symbol_fallback] = STATE(174), + [aux_sym__text] = STATE(148), + [aux_sym__inline_repeat1] = STATE(77), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(348), + [anon_sym__] = ACTIONS(351), + [anon_sym_LBRACE_STAR] = ACTIONS(354), + [anon_sym_STAR] = ACTIONS(357), + [anon_sym_BSLASH] = ACTIONS(360), + [sym_quotation_marks] = ACTIONS(363), + [sym_ellipsis] = ACTIONS(363), + [sym_em_dash] = ACTIONS(363), + [sym_en_dash] = ACTIONS(366), + [sym_backslash_escape] = ACTIONS(366), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_LBRACE_EQ] = ACTIONS(372), + [anon_sym_LBRACE_PLUS] = ACTIONS(375), + [anon_sym_PLUS_RBRACE] = ACTIONS(93), + [anon_sym_LBRACE_DASH] = ACTIONS(378), + [sym_symbol] = ACTIONS(363), + [anon_sym_LBRACE_CARET] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(381), + [anon_sym_LBRACE_TILDE] = ACTIONS(384), + [anon_sym_TILDE] = ACTIONS(384), + [anon_sym_LBRACK_CARET] = ACTIONS(387), + [anon_sym_BANG_LBRACK] = ACTIONS(390), + [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_LBRACE2] = ACTIONS(366), + [anon_sym_DOLLAR] = ACTIONS(396), + [anon_sym_TODO] = ACTIONS(399), + [anon_sym_WIP] = ACTIONS(399), + [anon_sym_NOTE] = ACTIONS(402), + [anon_sym_INFO] = ACTIONS(402), + [anon_sym_XXX] = ACTIONS(402), + [sym_fixme] = ACTIONS(363), + [anon_sym_PIPE] = ACTIONS(363), + [sym__whitespace1] = ACTIONS(405), + [sym__newline] = ACTIONS(408), + [aux_sym__text_token1] = ACTIONS(411), + [sym__verbatim_begin] = ACTIONS(414), + }, + [67] = { + [sym__inline] = STATE(791), + [sym__element] = STATE(119), + [sym_emphasis] = STATE(197), + [sym_emphasis_begin] = STATE(81), + [sym_strong] = STATE(197), + [sym_strong_begin] = STATE(82), + [sym__hard_line_break] = STATE(197), + [sym_hard_line_break] = STATE(197), + [sym__smart_punctuation] = STATE(197), + [sym_autolink] = STATE(197), + [sym_highlighted] = STATE(197), + [sym_insert] = STATE(197), + [sym_delete] = STATE(197), + [sym_superscript] = STATE(197), + [sym_subscript] = STATE(197), + [sym_footnote_reference] = STATE(197), + [sym__image] = STATE(197), + [sym_full_reference_image] = STATE(197), + [sym_collapsed_reference_image] = STATE(197), + [sym_inline_image] = STATE(197), + [sym__image_description] = STATE(654), + [sym__link] = STATE(197), + [sym_full_reference_link] = STATE(197), + [sym_collapsed_reference_link] = STATE(197), + [sym_inline_link] = STATE(197), + [sym_link_text] = STATE(651), + [sym__comment_with_spaces] = STATE(197), + [sym_span] = STATE(197), + [sym_raw_inline] = STATE(197), + [sym_math] = STATE(197), + [sym_verbatim] = STATE(197), + [sym__todo_highlights] = STATE(197), + [sym_todo] = STATE(197), + [sym_note] = STATE(197), + [sym__symbol_fallback] = STATE(197), + [aux_sym__text] = STATE(132), + [aux_sym__inline_repeat1] = STATE(119), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(279), + [anon_sym__] = ACTIONS(282), + [anon_sym_LBRACE_STAR] = ACTIONS(285), + [anon_sym_STAR] = ACTIONS(288), + [anon_sym_BSLASH] = ACTIONS(291), + [sym_quotation_marks] = ACTIONS(294), + [sym_ellipsis] = ACTIONS(294), + [sym_em_dash] = ACTIONS(294), + [sym_en_dash] = ACTIONS(297), + [sym_backslash_escape] = ACTIONS(297), + [anon_sym_LT] = ACTIONS(300), + [anon_sym_LBRACE_EQ] = ACTIONS(303), + [anon_sym_LBRACE_PLUS] = ACTIONS(306), + [anon_sym_PLUS_RBRACE] = ACTIONS(93), + [anon_sym_LBRACE_DASH] = ACTIONS(309), + [sym_symbol] = ACTIONS(294), + [anon_sym_LBRACE_CARET] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(312), + [anon_sym_LBRACE_TILDE] = ACTIONS(315), + [anon_sym_TILDE] = ACTIONS(315), + [anon_sym_LBRACK_CARET] = ACTIONS(318), + [anon_sym_BANG_LBRACK] = ACTIONS(321), + [anon_sym_LBRACK] = ACTIONS(324), + [anon_sym_LBRACE2] = ACTIONS(297), + [anon_sym_DOLLAR] = ACTIONS(327), + [anon_sym_TODO] = ACTIONS(330), + [anon_sym_WIP] = ACTIONS(330), + [anon_sym_NOTE] = ACTIONS(333), + [anon_sym_INFO] = ACTIONS(333), + [anon_sym_XXX] = ACTIONS(333), + [sym_fixme] = ACTIONS(294), + [anon_sym_PIPE] = ACTIONS(294), + [sym__whitespace1] = ACTIONS(336), + [sym__newline] = ACTIONS(339), + [aux_sym__text_token1] = ACTIONS(342), + [sym__verbatim_begin] = ACTIONS(345), + }, + [68] = { + [sym__inline] = STATE(720), + [sym__element] = STATE(119), + [sym_emphasis] = STATE(197), + [sym_emphasis_begin] = STATE(81), + [sym_strong] = STATE(197), + [sym_strong_begin] = STATE(82), + [sym__hard_line_break] = STATE(197), + [sym_hard_line_break] = STATE(197), + [sym__smart_punctuation] = STATE(197), + [sym_autolink] = STATE(197), + [sym_highlighted] = STATE(197), + [sym_insert] = STATE(197), + [sym_delete] = STATE(197), + [sym_superscript] = STATE(197), + [sym_subscript] = STATE(197), + [sym_footnote_reference] = STATE(197), + [sym__image] = STATE(197), + [sym_full_reference_image] = STATE(197), + [sym_collapsed_reference_image] = STATE(197), + [sym_inline_image] = STATE(197), + [sym__image_description] = STATE(654), + [sym__link] = STATE(197), + [sym_full_reference_link] = STATE(197), + [sym_collapsed_reference_link] = STATE(197), + [sym_inline_link] = STATE(197), + [sym_link_text] = STATE(651), + [sym__comment_with_spaces] = STATE(197), + [sym_span] = STATE(197), + [sym_raw_inline] = STATE(197), + [sym_math] = STATE(197), + [sym_verbatim] = STATE(197), + [sym__todo_highlights] = STATE(197), + [sym_todo] = STATE(197), + [sym_note] = STATE(197), + [sym__symbol_fallback] = STATE(197), + [aux_sym__text] = STATE(132), + [aux_sym__inline_repeat1] = STATE(119), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(279), + [anon_sym__] = ACTIONS(282), + [anon_sym_LBRACE_STAR] = ACTIONS(285), + [anon_sym_STAR] = ACTIONS(288), + [anon_sym_BSLASH] = ACTIONS(291), + [sym_quotation_marks] = ACTIONS(294), + [sym_ellipsis] = ACTIONS(294), + [sym_em_dash] = ACTIONS(294), + [sym_en_dash] = ACTIONS(297), + [sym_backslash_escape] = ACTIONS(297), + [anon_sym_LT] = ACTIONS(300), + [anon_sym_LBRACE_EQ] = ACTIONS(303), + [anon_sym_LBRACE_PLUS] = ACTIONS(306), + [anon_sym_LBRACE_DASH] = ACTIONS(309), + [sym_symbol] = ACTIONS(294), + [anon_sym_LBRACE_CARET] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(558), + [anon_sym_CARET_RBRACE] = ACTIONS(93), + [anon_sym_LBRACE_TILDE] = ACTIONS(315), + [anon_sym_TILDE] = ACTIONS(315), + [anon_sym_LBRACK_CARET] = ACTIONS(318), + [anon_sym_BANG_LBRACK] = ACTIONS(321), + [anon_sym_LBRACK] = ACTIONS(324), + [anon_sym_LBRACE2] = ACTIONS(297), + [anon_sym_DOLLAR] = ACTIONS(327), + [anon_sym_TODO] = ACTIONS(330), + [anon_sym_WIP] = ACTIONS(330), + [anon_sym_NOTE] = ACTIONS(333), + [anon_sym_INFO] = ACTIONS(333), + [anon_sym_XXX] = ACTIONS(333), + [sym_fixme] = ACTIONS(294), + [anon_sym_PIPE] = ACTIONS(294), + [sym__whitespace1] = ACTIONS(336), + [sym__newline] = ACTIONS(339), + [aux_sym__text_token1] = ACTIONS(342), + [sym__verbatim_begin] = ACTIONS(345), + }, + [69] = { + [sym__inline] = STATE(877), + [sym__element] = STATE(103), + [sym_emphasis] = STATE(200), + [sym_emphasis_begin] = STATE(101), + [sym_strong] = STATE(200), + [sym_strong_begin] = STATE(104), + [sym__hard_line_break] = STATE(200), + [sym_hard_line_break] = STATE(200), + [sym__smart_punctuation] = STATE(200), + [sym_autolink] = STATE(200), + [sym_highlighted] = STATE(200), + [sym_insert] = STATE(200), + [sym_delete] = STATE(200), + [sym_superscript] = STATE(200), + [sym_subscript] = STATE(200), + [sym_footnote_reference] = STATE(200), + [sym__image] = STATE(200), + [sym_full_reference_image] = STATE(200), + [sym_collapsed_reference_image] = STATE(200), + [sym_inline_image] = STATE(200), + [sym__image_description] = STATE(642), + [sym__link] = STATE(200), + [sym_full_reference_link] = STATE(200), + [sym_collapsed_reference_link] = STATE(200), + [sym_inline_link] = STATE(200), + [sym_link_text] = STATE(643), + [sym__comment_with_spaces] = STATE(200), + [sym_span] = STATE(200), + [sym_raw_inline] = STATE(200), + [sym_math] = STATE(200), + [sym_verbatim] = STATE(200), + [sym__todo_highlights] = STATE(200), + [sym_todo] = STATE(200), + [sym_note] = STATE(200), + [sym__symbol_fallback] = STATE(200), + [aux_sym__text] = STATE(138), + [aux_sym__inline_repeat1] = STATE(103), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(51), + [anon_sym__] = ACTIONS(54), + [anon_sym_LBRACE_STAR] = ACTIONS(57), + [anon_sym_STAR] = ACTIONS(127), + [aux_sym_strong_end_token1] = ACTIONS(93), + [anon_sym_BSLASH] = ACTIONS(63), + [sym_quotation_marks] = ACTIONS(66), + [sym_ellipsis] = ACTIONS(66), + [sym_em_dash] = ACTIONS(66), + [sym_en_dash] = ACTIONS(69), + [sym_backslash_escape] = ACTIONS(69), + [anon_sym_LT] = ACTIONS(72), + [anon_sym_LBRACE_EQ] = ACTIONS(75), + [anon_sym_LBRACE_PLUS] = ACTIONS(78), + [anon_sym_LBRACE_DASH] = ACTIONS(81), + [sym_symbol] = ACTIONS(66), + [anon_sym_LBRACE_CARET] = ACTIONS(84), + [anon_sym_CARET] = ACTIONS(84), + [anon_sym_LBRACE_TILDE] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_LBRACK_CARET] = ACTIONS(95), + [anon_sym_BANG_LBRACK] = ACTIONS(100), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_LBRACE2] = ACTIONS(69), + [anon_sym_DOLLAR] = ACTIONS(106), + [anon_sym_TODO] = ACTIONS(109), + [anon_sym_WIP] = ACTIONS(109), + [anon_sym_NOTE] = ACTIONS(112), + [anon_sym_INFO] = ACTIONS(112), + [anon_sym_XXX] = ACTIONS(112), + [sym_fixme] = ACTIONS(66), + [anon_sym_PIPE] = ACTIONS(66), + [sym__whitespace1] = ACTIONS(130), + [sym__newline] = ACTIONS(118), + [aux_sym__text_token1] = ACTIONS(121), + [sym__verbatim_begin] = ACTIONS(124), + }, + [70] = { + [sym__inline] = STATE(814), + [sym__element] = STATE(103), + [sym_emphasis] = STATE(200), + [sym_emphasis_begin] = STATE(101), + [sym_strong] = STATE(200), + [sym_strong_begin] = STATE(104), + [sym__hard_line_break] = STATE(200), + [sym_hard_line_break] = STATE(200), + [sym__smart_punctuation] = STATE(200), + [sym_autolink] = STATE(200), + [sym_highlighted] = STATE(200), + [sym_insert] = STATE(200), + [sym_delete] = STATE(200), + [sym_superscript] = STATE(200), + [sym_subscript] = STATE(200), + [sym_footnote_reference] = STATE(200), + [sym__image] = STATE(200), + [sym_full_reference_image] = STATE(200), + [sym_collapsed_reference_image] = STATE(200), + [sym_inline_image] = STATE(200), + [sym__image_description] = STATE(642), + [sym__link] = STATE(200), + [sym_full_reference_link] = STATE(200), + [sym_collapsed_reference_link] = STATE(200), + [sym_inline_link] = STATE(200), + [sym_link_text] = STATE(643), + [sym__comment_with_spaces] = STATE(200), + [sym_span] = STATE(200), + [sym_raw_inline] = STATE(200), + [sym_math] = STATE(200), + [sym_verbatim] = STATE(200), + [sym__todo_highlights] = STATE(200), + [sym_todo] = STATE(200), + [sym_note] = STATE(200), + [sym__symbol_fallback] = STATE(200), + [aux_sym__text] = STATE(138), + [aux_sym__inline_repeat1] = STATE(103), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(51), + [anon_sym__] = ACTIONS(54), + [anon_sym_LBRACE_STAR] = ACTIONS(57), + [anon_sym_STAR] = ACTIONS(60), + [anon_sym_BSLASH] = ACTIONS(63), + [sym_quotation_marks] = ACTIONS(66), + [sym_ellipsis] = ACTIONS(66), + [sym_em_dash] = ACTIONS(66), + [sym_en_dash] = ACTIONS(69), + [sym_backslash_escape] = ACTIONS(69), + [anon_sym_LT] = ACTIONS(72), + [anon_sym_LBRACE_EQ] = ACTIONS(75), + [anon_sym_EQ_RBRACE] = ACTIONS(93), + [anon_sym_LBRACE_PLUS] = ACTIONS(78), + [anon_sym_LBRACE_DASH] = ACTIONS(81), + [sym_symbol] = ACTIONS(66), + [anon_sym_LBRACE_CARET] = ACTIONS(84), + [anon_sym_CARET] = ACTIONS(84), + [anon_sym_LBRACE_TILDE] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_LBRACK_CARET] = ACTIONS(95), + [anon_sym_BANG_LBRACK] = ACTIONS(100), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_LBRACE2] = ACTIONS(69), + [anon_sym_DOLLAR] = ACTIONS(106), + [anon_sym_TODO] = ACTIONS(109), + [anon_sym_WIP] = ACTIONS(109), + [anon_sym_NOTE] = ACTIONS(112), + [anon_sym_INFO] = ACTIONS(112), + [anon_sym_XXX] = ACTIONS(112), + [sym_fixme] = ACTIONS(66), + [anon_sym_PIPE] = ACTIONS(66), + [sym__whitespace1] = ACTIONS(115), + [sym__newline] = ACTIONS(118), + [aux_sym__text_token1] = ACTIONS(121), + [sym__verbatim_begin] = ACTIONS(124), + }, + [71] = { + [sym__inline] = STATE(719), + [sym__element] = STATE(77), + [sym_emphasis] = STATE(174), + [sym_emphasis_begin] = STATE(86), + [sym_strong] = STATE(174), + [sym_strong_begin] = STATE(89), + [sym__hard_line_break] = STATE(174), + [sym_hard_line_break] = STATE(174), + [sym__smart_punctuation] = STATE(174), + [sym_autolink] = STATE(174), + [sym_highlighted] = STATE(174), + [sym_insert] = STATE(174), + [sym_delete] = STATE(174), + [sym_superscript] = STATE(174), + [sym_subscript] = STATE(174), + [sym_footnote_reference] = STATE(174), + [sym__image] = STATE(174), + [sym_full_reference_image] = STATE(174), + [sym_collapsed_reference_image] = STATE(174), + [sym_inline_image] = STATE(174), + [sym__image_description] = STATE(630), + [sym__link] = STATE(174), + [sym_full_reference_link] = STATE(174), + [sym_collapsed_reference_link] = STATE(174), + [sym_inline_link] = STATE(174), + [sym_link_text] = STATE(631), + [sym__comment_with_spaces] = STATE(174), + [sym_span] = STATE(174), + [sym_raw_inline] = STATE(174), + [sym_math] = STATE(174), + [sym_verbatim] = STATE(174), + [sym__todo_highlights] = STATE(174), + [sym_todo] = STATE(174), + [sym_note] = STATE(174), + [sym__symbol_fallback] = STATE(174), + [aux_sym__text] = STATE(148), + [aux_sym__inline_repeat1] = STATE(77), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(348), + [anon_sym__] = ACTIONS(351), + [anon_sym_LBRACE_STAR] = ACTIONS(354), + [anon_sym_STAR] = ACTIONS(357), + [anon_sym_BSLASH] = ACTIONS(360), + [sym_quotation_marks] = ACTIONS(363), + [sym_ellipsis] = ACTIONS(363), + [sym_em_dash] = ACTIONS(363), + [sym_en_dash] = ACTIONS(366), + [sym_backslash_escape] = ACTIONS(366), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_LBRACE_EQ] = ACTIONS(372), + [anon_sym_LBRACE_PLUS] = ACTIONS(375), + [anon_sym_LBRACE_DASH] = ACTIONS(378), + [sym_symbol] = ACTIONS(363), + [anon_sym_LBRACE_CARET] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(561), + [anon_sym_CARET_RBRACE] = ACTIONS(93), + [anon_sym_LBRACE_TILDE] = ACTIONS(384), + [anon_sym_TILDE] = ACTIONS(384), + [anon_sym_LBRACK_CARET] = ACTIONS(387), + [anon_sym_BANG_LBRACK] = ACTIONS(390), + [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_LBRACE2] = ACTIONS(366), + [anon_sym_DOLLAR] = ACTIONS(396), + [anon_sym_TODO] = ACTIONS(399), + [anon_sym_WIP] = ACTIONS(399), + [anon_sym_NOTE] = ACTIONS(402), + [anon_sym_INFO] = ACTIONS(402), + [anon_sym_XXX] = ACTIONS(402), + [sym_fixme] = ACTIONS(363), + [anon_sym_PIPE] = ACTIONS(363), + [sym__whitespace1] = ACTIONS(405), + [sym__newline] = ACTIONS(408), + [aux_sym__text_token1] = ACTIONS(411), + [sym__verbatim_begin] = ACTIONS(414), + }, + [72] = { + [sym__inline] = STATE(715), + [sym__element] = STATE(79), [sym_emphasis] = STATE(178), - [sym_emphasis_begin] = STATE(119), + [sym_emphasis_begin] = STATE(115), [sym_strong] = STATE(178), - [sym_strong_begin] = STATE(121), + [sym_strong_begin] = STATE(117), [sym__hard_line_break] = STATE(178), [sym_hard_line_break] = STATE(178), [sym__smart_punctuation] = STATE(178), @@ -13755,12 +13510,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_full_reference_image] = STATE(178), [sym_collapsed_reference_image] = STATE(178), [sym_inline_image] = STATE(178), - [sym__image_description] = STATE(651), + [sym__image_description] = STATE(640), [sym__link] = STATE(178), [sym_full_reference_link] = STATE(178), [sym_collapsed_reference_link] = STATE(178), [sym_inline_link] = STATE(178), - [sym_link_text] = STATE(650), + [sym_link_text] = STATE(636), [sym__comment_with_spaces] = STATE(178), [sym_span] = STATE(178), [sym_raw_inline] = STATE(178), @@ -13770,51 +13525,199 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(178), [sym_note] = STATE(178), [sym__symbol_fallback] = STATE(178), - [sym__verbatim_begin] = STATE(897), - [aux_sym__text] = STATE(167), - [aux_sym__inline_repeat1] = STATE(73), - [anon_sym_LBRACE_] = ACTIONS(549), - [anon_sym__] = ACTIONS(551), - [anon_sym_LBRACE_STAR] = ACTIONS(553), - [anon_sym_STAR] = ACTIONS(555), - [anon_sym_BSLASH] = ACTIONS(557), - [sym_quotation_marks] = ACTIONS(559), - [sym_ellipsis] = ACTIONS(559), - [sym_em_dash] = ACTIONS(559), - [sym_en_dash] = ACTIONS(561), - [sym_backslash_escape] = ACTIONS(561), - [anon_sym_LT] = ACTIONS(563), - [anon_sym_LBRACE_EQ] = ACTIONS(565), - [anon_sym_LBRACE_PLUS] = ACTIONS(567), - [anon_sym_LBRACE_DASH] = ACTIONS(569), - [sym_symbol] = ACTIONS(559), - [anon_sym_LBRACE_CARET] = ACTIONS(571), - [anon_sym_CARET] = ACTIONS(571), - [anon_sym_LBRACE_TILDE] = ACTIONS(573), - [anon_sym_TILDE] = ACTIONS(573), - [anon_sym_LBRACK_CARET] = ACTIONS(575), - [anon_sym_BANG_LBRACK] = ACTIONS(577), - [anon_sym_LBRACK] = ACTIONS(579), - [anon_sym_LBRACE2] = ACTIONS(561), - [anon_sym_DOLLAR] = ACTIONS(581), - [anon_sym_TODO] = ACTIONS(583), - [anon_sym_WIP] = ACTIONS(583), - [anon_sym_NOTE] = ACTIONS(585), - [anon_sym_INFO] = ACTIONS(585), - [anon_sym_XXX] = ACTIONS(585), - [sym_fixme] = ACTIONS(559), - [anon_sym_PIPE] = ACTIONS(559), - [anon_sym_BQUOTE] = ACTIONS(41), - [sym__whitespace1] = ACTIONS(587), - [sym__newline] = ACTIONS(589), - [aux_sym__text_token1] = ACTIONS(591), + [aux_sym__text] = STATE(146), + [aux_sym__inline_repeat1] = STATE(79), + [anon_sym_LBRACE_] = ACTIONS(564), + [anon_sym__] = ACTIONS(566), + [anon_sym_LBRACE_STAR] = ACTIONS(568), + [anon_sym_STAR] = ACTIONS(570), + [anon_sym_BSLASH] = ACTIONS(572), + [sym_quotation_marks] = ACTIONS(574), + [sym_ellipsis] = ACTIONS(574), + [sym_em_dash] = ACTIONS(574), + [sym_en_dash] = ACTIONS(576), + [sym_backslash_escape] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(578), + [anon_sym_LBRACE_EQ] = ACTIONS(580), + [anon_sym_LBRACE_PLUS] = ACTIONS(582), + [anon_sym_LBRACE_DASH] = ACTIONS(584), + [sym_symbol] = ACTIONS(574), + [anon_sym_LBRACE_CARET] = ACTIONS(586), + [anon_sym_CARET] = ACTIONS(586), + [anon_sym_LBRACE_TILDE] = ACTIONS(588), + [anon_sym_TILDE] = ACTIONS(588), + [anon_sym_LBRACK_CARET] = ACTIONS(590), + [anon_sym_BANG_LBRACK] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_LBRACE2] = ACTIONS(576), + [anon_sym_DOLLAR] = ACTIONS(596), + [anon_sym_TODO] = ACTIONS(598), + [anon_sym_WIP] = ACTIONS(598), + [anon_sym_NOTE] = ACTIONS(600), + [anon_sym_INFO] = ACTIONS(600), + [anon_sym_XXX] = ACTIONS(600), + [sym_fixme] = ACTIONS(574), + [anon_sym_PIPE] = ACTIONS(574), + [sym__whitespace1] = ACTIONS(602), + [sym__newline] = ACTIONS(604), + [aux_sym__text_token1] = ACTIONS(606), + [sym__verbatim_begin] = ACTIONS(608), }, [73] = { [sym__element] = STATE(74), + [sym_emphasis] = STATE(179), + [sym_emphasis_begin] = STATE(111), + [sym_strong] = STATE(179), + [sym_strong_begin] = STATE(112), + [sym__hard_line_break] = STATE(179), + [sym_hard_line_break] = STATE(179), + [sym__smart_punctuation] = STATE(179), + [sym_autolink] = STATE(179), + [sym_highlighted] = STATE(179), + [sym_insert] = STATE(179), + [sym_delete] = STATE(179), + [sym_superscript] = STATE(179), + [sym_subscript] = STATE(179), + [sym_footnote_reference] = STATE(179), + [sym__image] = STATE(179), + [sym_full_reference_image] = STATE(179), + [sym_collapsed_reference_image] = STATE(179), + [sym_inline_image] = STATE(179), + [sym__image_description] = STATE(625), + [sym__link] = STATE(179), + [sym_full_reference_link] = STATE(179), + [sym_collapsed_reference_link] = STATE(179), + [sym_inline_link] = STATE(179), + [sym_link_text] = STATE(647), + [sym__comment_with_spaces] = STATE(179), + [sym_span] = STATE(179), + [sym_raw_inline] = STATE(179), + [sym_math] = STATE(179), + [sym_verbatim] = STATE(179), + [sym__todo_highlights] = STATE(179), + [sym_todo] = STATE(179), + [sym_note] = STATE(179), + [sym__symbol_fallback] = STATE(179), + [aux_sym__text] = STATE(171), + [aux_sym__inline_repeat1] = STATE(74), + [anon_sym_LBRACE_] = ACTIONS(610), + [anon_sym__] = ACTIONS(612), + [anon_sym_LBRACE_STAR] = ACTIONS(614), + [anon_sym_STAR] = ACTIONS(616), + [aux_sym_strong_end_token1] = ACTIONS(618), + [anon_sym_BSLASH] = ACTIONS(620), + [sym_quotation_marks] = ACTIONS(622), + [sym_ellipsis] = ACTIONS(622), + [sym_em_dash] = ACTIONS(622), + [sym_en_dash] = ACTIONS(624), + [sym_backslash_escape] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_LBRACE_EQ] = ACTIONS(628), + [anon_sym_LBRACE_PLUS] = ACTIONS(630), + [anon_sym_LBRACE_DASH] = ACTIONS(632), + [sym_symbol] = ACTIONS(622), + [anon_sym_LBRACE_CARET] = ACTIONS(634), + [anon_sym_CARET] = ACTIONS(634), + [anon_sym_LBRACE_TILDE] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(636), + [anon_sym_LBRACK_CARET] = ACTIONS(638), + [anon_sym_BANG_LBRACK] = ACTIONS(640), + [anon_sym_LBRACK] = ACTIONS(642), + [anon_sym_LBRACE2] = ACTIONS(624), + [anon_sym_DOLLAR] = ACTIONS(644), + [anon_sym_TODO] = ACTIONS(646), + [anon_sym_WIP] = ACTIONS(646), + [anon_sym_NOTE] = ACTIONS(648), + [anon_sym_INFO] = ACTIONS(648), + [anon_sym_XXX] = ACTIONS(648), + [sym_fixme] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [sym__whitespace1] = ACTIONS(650), + [sym__newline] = ACTIONS(652), + [aux_sym__text_token1] = ACTIONS(654), + [sym__verbatim_begin] = ACTIONS(656), + }, + [74] = { + [sym__element] = STATE(74), + [sym_emphasis] = STATE(179), + [sym_emphasis_begin] = STATE(111), + [sym_strong] = STATE(179), + [sym_strong_begin] = STATE(112), + [sym__hard_line_break] = STATE(179), + [sym_hard_line_break] = STATE(179), + [sym__smart_punctuation] = STATE(179), + [sym_autolink] = STATE(179), + [sym_highlighted] = STATE(179), + [sym_insert] = STATE(179), + [sym_delete] = STATE(179), + [sym_superscript] = STATE(179), + [sym_subscript] = STATE(179), + [sym_footnote_reference] = STATE(179), + [sym__image] = STATE(179), + [sym_full_reference_image] = STATE(179), + [sym_collapsed_reference_image] = STATE(179), + [sym_inline_image] = STATE(179), + [sym__image_description] = STATE(625), + [sym__link] = STATE(179), + [sym_full_reference_link] = STATE(179), + [sym_collapsed_reference_link] = STATE(179), + [sym_inline_link] = STATE(179), + [sym_link_text] = STATE(647), + [sym__comment_with_spaces] = STATE(179), + [sym_span] = STATE(179), + [sym_raw_inline] = STATE(179), + [sym_math] = STATE(179), + [sym_verbatim] = STATE(179), + [sym__todo_highlights] = STATE(179), + [sym_todo] = STATE(179), + [sym_note] = STATE(179), + [sym__symbol_fallback] = STATE(179), + [aux_sym__text] = STATE(171), + [aux_sym__inline_repeat1] = STATE(74), + [anon_sym_LBRACE_] = ACTIONS(658), + [anon_sym__] = ACTIONS(661), + [anon_sym_LBRACE_STAR] = ACTIONS(664), + [anon_sym_STAR] = ACTIONS(667), + [aux_sym_strong_end_token1] = ACTIONS(670), + [anon_sym_BSLASH] = ACTIONS(672), + [sym_quotation_marks] = ACTIONS(675), + [sym_ellipsis] = ACTIONS(675), + [sym_em_dash] = ACTIONS(675), + [sym_en_dash] = ACTIONS(678), + [sym_backslash_escape] = ACTIONS(678), + [anon_sym_LT] = ACTIONS(681), + [anon_sym_LBRACE_EQ] = ACTIONS(684), + [anon_sym_LBRACE_PLUS] = ACTIONS(687), + [anon_sym_LBRACE_DASH] = ACTIONS(690), + [sym_symbol] = ACTIONS(675), + [anon_sym_LBRACE_CARET] = ACTIONS(693), + [anon_sym_CARET] = ACTIONS(693), + [anon_sym_LBRACE_TILDE] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_LBRACK_CARET] = ACTIONS(699), + [anon_sym_BANG_LBRACK] = ACTIONS(702), + [anon_sym_LBRACK] = ACTIONS(705), + [anon_sym_LBRACE2] = ACTIONS(678), + [anon_sym_DOLLAR] = ACTIONS(708), + [anon_sym_TODO] = ACTIONS(711), + [anon_sym_WIP] = ACTIONS(711), + [anon_sym_NOTE] = ACTIONS(714), + [anon_sym_INFO] = ACTIONS(714), + [anon_sym_XXX] = ACTIONS(714), + [sym_fixme] = ACTIONS(675), + [anon_sym_PIPE] = ACTIONS(675), + [sym__whitespace1] = ACTIONS(717), + [sym__newline] = ACTIONS(720), + [aux_sym__text_token1] = ACTIONS(723), + [sym__verbatim_begin] = ACTIONS(726), + }, + [75] = { + [sym__inline] = STATE(788), + [sym__element] = STATE(79), [sym_emphasis] = STATE(178), - [sym_emphasis_begin] = STATE(119), + [sym_emphasis_begin] = STATE(115), [sym_strong] = STATE(178), - [sym_strong_begin] = STATE(121), + [sym_strong_begin] = STATE(117), [sym__hard_line_break] = STATE(178), [sym_hard_line_break] = STATE(178), [sym__smart_punctuation] = STATE(178), @@ -13829,12 +13732,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_full_reference_image] = STATE(178), [sym_collapsed_reference_image] = STATE(178), [sym_inline_image] = STATE(178), - [sym__image_description] = STATE(651), + [sym__image_description] = STATE(640), [sym__link] = STATE(178), [sym_full_reference_link] = STATE(178), [sym_collapsed_reference_link] = STATE(178), [sym_inline_link] = STATE(178), - [sym_link_text] = STATE(650), + [sym_link_text] = STATE(636), [sym__comment_with_spaces] = STATE(178), [sym_span] = STATE(178), [sym_raw_inline] = STATE(178), @@ -13844,52 +13747,199 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(178), [sym_note] = STATE(178), [sym__symbol_fallback] = STATE(178), - [sym__verbatim_begin] = STATE(897), - [aux_sym__text] = STATE(167), - [aux_sym__inline_repeat1] = STATE(74), - [anon_sym_LBRACE_] = ACTIONS(549), - [anon_sym__] = ACTIONS(551), - [anon_sym_LBRACE_STAR] = ACTIONS(553), - [anon_sym_STAR] = ACTIONS(593), - [aux_sym_strong_end_token1] = ACTIONS(595), - [anon_sym_BSLASH] = ACTIONS(557), - [sym_quotation_marks] = ACTIONS(559), - [sym_ellipsis] = ACTIONS(559), - [sym_em_dash] = ACTIONS(559), - [sym_en_dash] = ACTIONS(561), - [sym_backslash_escape] = ACTIONS(561), - [anon_sym_LT] = ACTIONS(563), - [anon_sym_LBRACE_EQ] = ACTIONS(565), - [anon_sym_LBRACE_PLUS] = ACTIONS(567), - [anon_sym_LBRACE_DASH] = ACTIONS(569), - [sym_symbol] = ACTIONS(559), - [anon_sym_LBRACE_CARET] = ACTIONS(571), - [anon_sym_CARET] = ACTIONS(571), - [anon_sym_LBRACE_TILDE] = ACTIONS(573), - [anon_sym_TILDE] = ACTIONS(573), - [anon_sym_LBRACK_CARET] = ACTIONS(575), - [anon_sym_BANG_LBRACK] = ACTIONS(577), - [anon_sym_LBRACK] = ACTIONS(579), - [anon_sym_LBRACE2] = ACTIONS(561), - [anon_sym_DOLLAR] = ACTIONS(581), - [anon_sym_TODO] = ACTIONS(583), - [anon_sym_WIP] = ACTIONS(583), - [anon_sym_NOTE] = ACTIONS(585), - [anon_sym_INFO] = ACTIONS(585), - [anon_sym_XXX] = ACTIONS(585), - [sym_fixme] = ACTIONS(559), - [anon_sym_PIPE] = ACTIONS(559), - [anon_sym_BQUOTE] = ACTIONS(41), - [sym__whitespace1] = ACTIONS(597), - [sym__newline] = ACTIONS(599), - [aux_sym__text_token1] = ACTIONS(591), + [aux_sym__text] = STATE(146), + [aux_sym__inline_repeat1] = STATE(79), + [anon_sym_LBRACE_] = ACTIONS(564), + [anon_sym__] = ACTIONS(566), + [anon_sym_LBRACE_STAR] = ACTIONS(568), + [anon_sym_STAR] = ACTIONS(570), + [anon_sym_BSLASH] = ACTIONS(572), + [sym_quotation_marks] = ACTIONS(574), + [sym_ellipsis] = ACTIONS(574), + [sym_em_dash] = ACTIONS(574), + [sym_en_dash] = ACTIONS(576), + [sym_backslash_escape] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(578), + [anon_sym_LBRACE_EQ] = ACTIONS(580), + [anon_sym_LBRACE_PLUS] = ACTIONS(582), + [anon_sym_LBRACE_DASH] = ACTIONS(584), + [sym_symbol] = ACTIONS(574), + [anon_sym_LBRACE_CARET] = ACTIONS(586), + [anon_sym_CARET] = ACTIONS(586), + [anon_sym_LBRACE_TILDE] = ACTIONS(588), + [anon_sym_TILDE] = ACTIONS(588), + [anon_sym_LBRACK_CARET] = ACTIONS(590), + [anon_sym_BANG_LBRACK] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_LBRACE2] = ACTIONS(576), + [anon_sym_DOLLAR] = ACTIONS(596), + [anon_sym_TODO] = ACTIONS(598), + [anon_sym_WIP] = ACTIONS(598), + [anon_sym_NOTE] = ACTIONS(600), + [anon_sym_INFO] = ACTIONS(600), + [anon_sym_XXX] = ACTIONS(600), + [sym_fixme] = ACTIONS(574), + [anon_sym_PIPE] = ACTIONS(574), + [sym__whitespace1] = ACTIONS(602), + [sym__newline] = ACTIONS(604), + [aux_sym__text_token1] = ACTIONS(606), + [sym__verbatim_begin] = ACTIONS(608), }, - [74] = { - [sym__element] = STATE(74), + [76] = { + [sym__element] = STATE(76), + [sym_emphasis] = STATE(198), + [sym_emphasis_begin] = STATE(106), + [sym_strong] = STATE(198), + [sym_strong_begin] = STATE(105), + [sym__hard_line_break] = STATE(198), + [sym_hard_line_break] = STATE(198), + [sym__smart_punctuation] = STATE(198), + [sym_autolink] = STATE(198), + [sym_highlighted] = STATE(198), + [sym_insert] = STATE(198), + [sym_delete] = STATE(198), + [sym_superscript] = STATE(198), + [sym_subscript] = STATE(198), + [sym_footnote_reference] = STATE(198), + [sym__image] = STATE(198), + [sym_full_reference_image] = STATE(198), + [sym_collapsed_reference_image] = STATE(198), + [sym_inline_image] = STATE(198), + [sym__image_description] = STATE(634), + [sym__link] = STATE(198), + [sym_full_reference_link] = STATE(198), + [sym_collapsed_reference_link] = STATE(198), + [sym_inline_link] = STATE(198), + [sym_link_text] = STATE(648), + [sym__comment_with_spaces] = STATE(198), + [sym_span] = STATE(198), + [sym_raw_inline] = STATE(198), + [sym_math] = STATE(198), + [sym_verbatim] = STATE(198), + [sym__todo_highlights] = STATE(198), + [sym_todo] = STATE(198), + [sym_note] = STATE(198), + [sym__symbol_fallback] = STATE(198), + [aux_sym__text] = STATE(134), + [aux_sym__inline_repeat1] = STATE(76), + [ts_builtin_sym_end] = ACTIONS(670), + [anon_sym_LBRACE_] = ACTIONS(729), + [anon_sym__] = ACTIONS(732), + [anon_sym_LBRACE_STAR] = ACTIONS(735), + [anon_sym_STAR] = ACTIONS(738), + [anon_sym_BSLASH] = ACTIONS(741), + [sym_quotation_marks] = ACTIONS(744), + [sym_ellipsis] = ACTIONS(744), + [sym_em_dash] = ACTIONS(744), + [sym_en_dash] = ACTIONS(747), + [sym_backslash_escape] = ACTIONS(747), + [anon_sym_LT] = ACTIONS(750), + [anon_sym_LBRACE_EQ] = ACTIONS(753), + [anon_sym_LBRACE_PLUS] = ACTIONS(756), + [anon_sym_LBRACE_DASH] = ACTIONS(759), + [sym_symbol] = ACTIONS(744), + [anon_sym_LBRACE_CARET] = ACTIONS(762), + [anon_sym_CARET] = ACTIONS(762), + [anon_sym_LBRACE_TILDE] = ACTIONS(765), + [anon_sym_TILDE] = ACTIONS(765), + [anon_sym_LBRACK_CARET] = ACTIONS(768), + [anon_sym_BANG_LBRACK] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(774), + [anon_sym_LBRACE2] = ACTIONS(747), + [anon_sym_DOLLAR] = ACTIONS(777), + [anon_sym_TODO] = ACTIONS(780), + [anon_sym_WIP] = ACTIONS(780), + [anon_sym_NOTE] = ACTIONS(783), + [anon_sym_INFO] = ACTIONS(783), + [anon_sym_XXX] = ACTIONS(783), + [sym_fixme] = ACTIONS(744), + [anon_sym_PIPE] = ACTIONS(744), + [sym__whitespace1] = ACTIONS(786), + [sym__newline] = ACTIONS(789), + [aux_sym__text_token1] = ACTIONS(792), + [sym__verbatim_begin] = ACTIONS(795), + }, + [77] = { + [sym__element] = STATE(113), + [sym_emphasis] = STATE(174), + [sym_emphasis_begin] = STATE(86), + [sym_strong] = STATE(174), + [sym_strong_begin] = STATE(89), + [sym__hard_line_break] = STATE(174), + [sym_hard_line_break] = STATE(174), + [sym__smart_punctuation] = STATE(174), + [sym_autolink] = STATE(174), + [sym_highlighted] = STATE(174), + [sym_insert] = STATE(174), + [sym_delete] = STATE(174), + [sym_superscript] = STATE(174), + [sym_subscript] = STATE(174), + [sym_footnote_reference] = STATE(174), + [sym__image] = STATE(174), + [sym_full_reference_image] = STATE(174), + [sym_collapsed_reference_image] = STATE(174), + [sym_inline_image] = STATE(174), + [sym__image_description] = STATE(630), + [sym__link] = STATE(174), + [sym_full_reference_link] = STATE(174), + [sym_collapsed_reference_link] = STATE(174), + [sym_inline_link] = STATE(174), + [sym_link_text] = STATE(631), + [sym__comment_with_spaces] = STATE(174), + [sym_span] = STATE(174), + [sym_raw_inline] = STATE(174), + [sym_math] = STATE(174), + [sym_verbatim] = STATE(174), + [sym__todo_highlights] = STATE(174), + [sym_todo] = STATE(174), + [sym_note] = STATE(174), + [sym__symbol_fallback] = STATE(174), + [aux_sym__text] = STATE(148), + [aux_sym__inline_repeat1] = STATE(113), + [anon_sym_LBRACE_] = ACTIONS(798), + [anon_sym__] = ACTIONS(800), + [anon_sym_LBRACE_STAR] = ACTIONS(802), + [anon_sym_STAR] = ACTIONS(804), + [anon_sym_BSLASH] = ACTIONS(806), + [sym_quotation_marks] = ACTIONS(808), + [sym_ellipsis] = ACTIONS(808), + [sym_em_dash] = ACTIONS(808), + [sym_en_dash] = ACTIONS(810), + [sym_backslash_escape] = ACTIONS(810), + [anon_sym_LT] = ACTIONS(812), + [anon_sym_LBRACE_EQ] = ACTIONS(814), + [anon_sym_LBRACE_PLUS] = ACTIONS(816), + [anon_sym_PLUS_RBRACE] = ACTIONS(618), + [anon_sym_LBRACE_DASH] = ACTIONS(818), + [sym_symbol] = ACTIONS(808), + [anon_sym_LBRACE_CARET] = ACTIONS(820), + [anon_sym_CARET] = ACTIONS(820), + [anon_sym_LBRACE_TILDE] = ACTIONS(822), + [anon_sym_TILDE] = ACTIONS(822), + [anon_sym_LBRACK_CARET] = ACTIONS(824), + [anon_sym_BANG_LBRACK] = ACTIONS(826), + [anon_sym_LBRACK] = ACTIONS(828), + [anon_sym_LBRACE2] = ACTIONS(810), + [anon_sym_DOLLAR] = ACTIONS(830), + [anon_sym_TODO] = ACTIONS(832), + [anon_sym_WIP] = ACTIONS(832), + [anon_sym_NOTE] = ACTIONS(834), + [anon_sym_INFO] = ACTIONS(834), + [anon_sym_XXX] = ACTIONS(834), + [sym_fixme] = ACTIONS(808), + [anon_sym_PIPE] = ACTIONS(808), + [sym__whitespace1] = ACTIONS(836), + [sym__newline] = ACTIONS(838), + [aux_sym__text_token1] = ACTIONS(840), + [sym__verbatim_begin] = ACTIONS(842), + }, + [78] = { + [sym__inline] = STATE(848), + [sym__element] = STATE(79), [sym_emphasis] = STATE(178), - [sym_emphasis_begin] = STATE(119), + [sym_emphasis_begin] = STATE(115), [sym_strong] = STATE(178), - [sym_strong_begin] = STATE(121), + [sym_strong_begin] = STATE(117), [sym__hard_line_break] = STATE(178), [sym_hard_line_break] = STATE(178), [sym__smart_punctuation] = STATE(178), @@ -13904,12 +13954,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_full_reference_image] = STATE(178), [sym_collapsed_reference_image] = STATE(178), [sym_inline_image] = STATE(178), - [sym__image_description] = STATE(651), + [sym__image_description] = STATE(640), [sym__link] = STATE(178), [sym_full_reference_link] = STATE(178), [sym_collapsed_reference_link] = STATE(178), [sym_inline_link] = STATE(178), - [sym_link_text] = STATE(650), + [sym_link_text] = STATE(636), [sym__comment_with_spaces] = STATE(178), [sym_span] = STATE(178), [sym_raw_inline] = STATE(178), @@ -13919,128 +13969,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(178), [sym_note] = STATE(178), [sym__symbol_fallback] = STATE(178), - [sym__verbatim_begin] = STATE(897), - [aux_sym__text] = STATE(167), - [aux_sym__inline_repeat1] = STATE(74), - [anon_sym_LBRACE_] = ACTIONS(601), - [anon_sym__] = ACTIONS(604), - [anon_sym_LBRACE_STAR] = ACTIONS(607), - [anon_sym_STAR] = ACTIONS(610), - [aux_sym_strong_end_token1] = ACTIONS(613), - [anon_sym_BSLASH] = ACTIONS(615), - [sym_quotation_marks] = ACTIONS(618), - [sym_ellipsis] = ACTIONS(618), - [sym_em_dash] = ACTIONS(618), - [sym_en_dash] = ACTIONS(621), - [sym_backslash_escape] = ACTIONS(621), - [anon_sym_LT] = ACTIONS(624), - [anon_sym_LBRACE_EQ] = ACTIONS(627), - [anon_sym_LBRACE_PLUS] = ACTIONS(630), - [anon_sym_LBRACE_DASH] = ACTIONS(633), - [sym_symbol] = ACTIONS(618), - [anon_sym_LBRACE_CARET] = ACTIONS(636), - [anon_sym_CARET] = ACTIONS(636), - [anon_sym_LBRACE_TILDE] = ACTIONS(639), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_LBRACK_CARET] = ACTIONS(642), - [anon_sym_BANG_LBRACK] = ACTIONS(645), - [anon_sym_LBRACK] = ACTIONS(648), - [anon_sym_LBRACE2] = ACTIONS(621), - [anon_sym_DOLLAR] = ACTIONS(651), - [anon_sym_TODO] = ACTIONS(654), - [anon_sym_WIP] = ACTIONS(654), - [anon_sym_NOTE] = ACTIONS(657), - [anon_sym_INFO] = ACTIONS(657), - [anon_sym_XXX] = ACTIONS(657), - [sym_fixme] = ACTIONS(618), - [anon_sym_PIPE] = ACTIONS(618), - [anon_sym_BQUOTE] = ACTIONS(660), - [sym__whitespace1] = ACTIONS(663), - [sym__newline] = ACTIONS(666), - [aux_sym__text_token1] = ACTIONS(669), - }, - [75] = { - [sym__inline] = STATE(788), - [sym__element] = STATE(79), - [sym_emphasis] = STATE(189), - [sym_emphasis_begin] = STATE(92), - [sym_strong] = STATE(189), - [sym_strong_begin] = STATE(93), - [sym__hard_line_break] = STATE(189), - [sym_hard_line_break] = STATE(189), - [sym__smart_punctuation] = STATE(189), - [sym_autolink] = STATE(189), - [sym_highlighted] = STATE(189), - [sym_insert] = STATE(189), - [sym_delete] = STATE(189), - [sym_superscript] = STATE(189), - [sym_subscript] = STATE(189), - [sym_footnote_reference] = STATE(189), - [sym__image] = STATE(189), - [sym_full_reference_image] = STATE(189), - [sym_collapsed_reference_image] = STATE(189), - [sym_inline_image] = STATE(189), - [sym__image_description] = STATE(660), - [sym__link] = STATE(189), - [sym_full_reference_link] = STATE(189), - [sym_collapsed_reference_link] = STATE(189), - [sym_inline_link] = STATE(189), - [sym_link_text] = STATE(646), - [sym__comment_with_spaces] = STATE(189), - [sym_span] = STATE(189), - [sym_raw_inline] = STATE(189), - [sym_math] = STATE(189), - [sym_verbatim] = STATE(189), - [sym__todo_highlights] = STATE(189), - [sym_todo] = STATE(189), - [sym_note] = STATE(189), - [sym__symbol_fallback] = STATE(189), - [sym__verbatim_begin] = STATE(906), - [aux_sym__text] = STATE(123), + [aux_sym__text] = STATE(146), [aux_sym__inline_repeat1] = STATE(79), - [anon_sym_LBRACE_] = ACTIONS(672), - [anon_sym__] = ACTIONS(674), - [anon_sym_LBRACE_STAR] = ACTIONS(676), - [anon_sym_STAR] = ACTIONS(678), - [anon_sym_BSLASH] = ACTIONS(680), - [sym_quotation_marks] = ACTIONS(682), - [sym_ellipsis] = ACTIONS(682), - [sym_em_dash] = ACTIONS(682), - [sym_en_dash] = ACTIONS(684), - [sym_backslash_escape] = ACTIONS(684), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_LBRACE_EQ] = ACTIONS(688), - [anon_sym_LBRACE_PLUS] = ACTIONS(690), - [anon_sym_LBRACE_DASH] = ACTIONS(692), - [sym_symbol] = ACTIONS(682), - [anon_sym_LBRACE_CARET] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym_LBRACE_TILDE] = ACTIONS(696), - [anon_sym_TILDE] = ACTIONS(696), - [anon_sym_LBRACK_CARET] = ACTIONS(698), - [anon_sym_BANG_LBRACK] = ACTIONS(700), - [anon_sym_LBRACK] = ACTIONS(702), - [anon_sym_LBRACE2] = ACTIONS(684), - [anon_sym_DOLLAR] = ACTIONS(704), - [anon_sym_TODO] = ACTIONS(706), - [anon_sym_WIP] = ACTIONS(706), - [anon_sym_NOTE] = ACTIONS(708), - [anon_sym_INFO] = ACTIONS(708), - [anon_sym_XXX] = ACTIONS(708), - [sym_fixme] = ACTIONS(682), - [anon_sym_PIPE] = ACTIONS(682), - [anon_sym_BQUOTE] = ACTIONS(41), - [sym__whitespace1] = ACTIONS(710), - [sym__newline] = ACTIONS(712), - [aux_sym__text_token1] = ACTIONS(714), + [anon_sym_LBRACE_] = ACTIONS(564), + [anon_sym__] = ACTIONS(566), + [anon_sym_LBRACE_STAR] = ACTIONS(568), + [anon_sym_STAR] = ACTIONS(570), + [anon_sym_BSLASH] = ACTIONS(572), + [sym_quotation_marks] = ACTIONS(574), + [sym_ellipsis] = ACTIONS(574), + [sym_em_dash] = ACTIONS(574), + [sym_en_dash] = ACTIONS(576), + [sym_backslash_escape] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(578), + [anon_sym_LBRACE_EQ] = ACTIONS(580), + [anon_sym_LBRACE_PLUS] = ACTIONS(582), + [anon_sym_LBRACE_DASH] = ACTIONS(584), + [sym_symbol] = ACTIONS(574), + [anon_sym_LBRACE_CARET] = ACTIONS(586), + [anon_sym_CARET] = ACTIONS(586), + [anon_sym_LBRACE_TILDE] = ACTIONS(588), + [anon_sym_TILDE] = ACTIONS(588), + [anon_sym_LBRACK_CARET] = ACTIONS(590), + [anon_sym_BANG_LBRACK] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_LBRACE2] = ACTIONS(576), + [anon_sym_DOLLAR] = ACTIONS(596), + [anon_sym_TODO] = ACTIONS(598), + [anon_sym_WIP] = ACTIONS(598), + [anon_sym_NOTE] = ACTIONS(600), + [anon_sym_INFO] = ACTIONS(600), + [anon_sym_XXX] = ACTIONS(600), + [sym_fixme] = ACTIONS(574), + [anon_sym_PIPE] = ACTIONS(574), + [sym__whitespace1] = ACTIONS(602), + [sym__newline] = ACTIONS(604), + [aux_sym__text_token1] = ACTIONS(606), + [sym__verbatim_begin] = ACTIONS(608), }, - [76] = { - [sym__inline] = STATE(684), - [sym__element] = STATE(73), + [79] = { + [sym__element] = STATE(80), [sym_emphasis] = STATE(178), - [sym_emphasis_begin] = STATE(119), + [sym_emphasis_begin] = STATE(115), [sym_strong] = STATE(178), - [sym_strong_begin] = STATE(121), + [sym_strong_begin] = STATE(117), [sym__hard_line_break] = STATE(178), [sym_hard_line_break] = STATE(178), [sym__smart_punctuation] = STATE(178), @@ -14055,12 +14027,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_full_reference_image] = STATE(178), [sym_collapsed_reference_image] = STATE(178), [sym_inline_image] = STATE(178), - [sym__image_description] = STATE(651), + [sym__image_description] = STATE(640), [sym__link] = STATE(178), [sym_full_reference_link] = STATE(178), [sym_collapsed_reference_link] = STATE(178), [sym_inline_link] = STATE(178), - [sym_link_text] = STATE(650), + [sym_link_text] = STATE(636), [sym__comment_with_spaces] = STATE(178), [sym_span] = STATE(178), [sym_raw_inline] = STATE(178), @@ -14070,127 +14042,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(178), [sym_note] = STATE(178), [sym__symbol_fallback] = STATE(178), - [sym__verbatim_begin] = STATE(897), - [aux_sym__text] = STATE(167), - [aux_sym__inline_repeat1] = STATE(73), - [anon_sym_LBRACE_] = ACTIONS(549), - [anon_sym__] = ACTIONS(551), - [anon_sym_LBRACE_STAR] = ACTIONS(553), - [anon_sym_STAR] = ACTIONS(555), - [anon_sym_BSLASH] = ACTIONS(557), - [sym_quotation_marks] = ACTIONS(559), - [sym_ellipsis] = ACTIONS(559), - [sym_em_dash] = ACTIONS(559), - [sym_en_dash] = ACTIONS(561), - [sym_backslash_escape] = ACTIONS(561), - [anon_sym_LT] = ACTIONS(563), - [anon_sym_LBRACE_EQ] = ACTIONS(565), - [anon_sym_LBRACE_PLUS] = ACTIONS(567), - [anon_sym_LBRACE_DASH] = ACTIONS(569), - [sym_symbol] = ACTIONS(559), - [anon_sym_LBRACE_CARET] = ACTIONS(571), - [anon_sym_CARET] = ACTIONS(571), - [anon_sym_LBRACE_TILDE] = ACTIONS(573), - [anon_sym_TILDE] = ACTIONS(573), - [anon_sym_LBRACK_CARET] = ACTIONS(575), - [anon_sym_BANG_LBRACK] = ACTIONS(577), - [anon_sym_LBRACK] = ACTIONS(579), - [anon_sym_LBRACE2] = ACTIONS(561), - [anon_sym_DOLLAR] = ACTIONS(581), - [anon_sym_TODO] = ACTIONS(583), - [anon_sym_WIP] = ACTIONS(583), - [anon_sym_NOTE] = ACTIONS(585), - [anon_sym_INFO] = ACTIONS(585), - [anon_sym_XXX] = ACTIONS(585), - [sym_fixme] = ACTIONS(559), - [anon_sym_PIPE] = ACTIONS(559), - [anon_sym_BQUOTE] = ACTIONS(41), - [sym__whitespace1] = ACTIONS(587), - [sym__newline] = ACTIONS(589), - [aux_sym__text_token1] = ACTIONS(591), + [aux_sym__text] = STATE(146), + [aux_sym__inline_repeat1] = STATE(80), + [anon_sym_LBRACE_] = ACTIONS(564), + [anon_sym__] = ACTIONS(566), + [anon_sym_LBRACE_STAR] = ACTIONS(568), + [anon_sym_STAR] = ACTIONS(570), + [anon_sym_BSLASH] = ACTIONS(572), + [sym_quotation_marks] = ACTIONS(574), + [sym_ellipsis] = ACTIONS(574), + [sym_em_dash] = ACTIONS(574), + [sym_en_dash] = ACTIONS(576), + [sym_backslash_escape] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(578), + [anon_sym_LBRACE_EQ] = ACTIONS(580), + [anon_sym_LBRACE_PLUS] = ACTIONS(582), + [anon_sym_LBRACE_DASH] = ACTIONS(584), + [sym_symbol] = ACTIONS(574), + [anon_sym_LBRACE_CARET] = ACTIONS(586), + [anon_sym_CARET] = ACTIONS(586), + [anon_sym_LBRACE_TILDE] = ACTIONS(588), + [anon_sym_TILDE] = ACTIONS(588), + [anon_sym_LBRACK_CARET] = ACTIONS(590), + [anon_sym_BANG_LBRACK] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_RBRACK2] = ACTIONS(618), + [anon_sym_LBRACE2] = ACTIONS(576), + [anon_sym_DOLLAR] = ACTIONS(596), + [anon_sym_TODO] = ACTIONS(598), + [anon_sym_WIP] = ACTIONS(598), + [anon_sym_NOTE] = ACTIONS(600), + [anon_sym_INFO] = ACTIONS(600), + [anon_sym_XXX] = ACTIONS(600), + [sym_fixme] = ACTIONS(574), + [anon_sym_PIPE] = ACTIONS(574), + [sym__whitespace1] = ACTIONS(602), + [sym__newline] = ACTIONS(844), + [aux_sym__text_token1] = ACTIONS(606), + [sym__verbatim_begin] = ACTIONS(608), }, - [77] = { - [sym__element] = STATE(77), - [sym_emphasis] = STATE(220), + [80] = { + [sym__element] = STATE(80), + [sym_emphasis] = STATE(178), [sym_emphasis_begin] = STATE(115), - [sym_strong] = STATE(220), - [sym_strong_begin] = STATE(114), - [sym__hard_line_break] = STATE(220), - [sym_hard_line_break] = STATE(220), - [sym__smart_punctuation] = STATE(220), - [sym_autolink] = STATE(220), - [sym_highlighted] = STATE(220), - [sym_insert] = STATE(220), - [sym_delete] = STATE(220), - [sym_superscript] = STATE(220), - [sym_subscript] = STATE(220), - [sym_footnote_reference] = STATE(220), - [sym__image] = STATE(220), - [sym_full_reference_image] = STATE(220), - [sym_collapsed_reference_image] = STATE(220), - [sym_inline_image] = STATE(220), - [sym__image_description] = STATE(653), - [sym__link] = STATE(220), - [sym_full_reference_link] = STATE(220), - [sym_collapsed_reference_link] = STATE(220), - [sym_inline_link] = STATE(220), - [sym_link_text] = STATE(661), - [sym__comment_with_spaces] = STATE(220), - [sym_span] = STATE(220), - [sym_raw_inline] = STATE(220), - [sym_math] = STATE(220), - [sym_verbatim] = STATE(220), - [sym__todo_highlights] = STATE(220), - [sym_todo] = STATE(220), - [sym_note] = STATE(220), - [sym__symbol_fallback] = STATE(220), - [sym__verbatim_begin] = STATE(878), - [aux_sym__text] = STATE(130), - [aux_sym__inline_repeat1] = STATE(77), - [ts_builtin_sym_end] = ACTIONS(613), - [anon_sym_LBRACE_] = ACTIONS(716), - [anon_sym__] = ACTIONS(719), - [anon_sym_LBRACE_STAR] = ACTIONS(722), - [anon_sym_STAR] = ACTIONS(725), - [anon_sym_BSLASH] = ACTIONS(728), - [sym_quotation_marks] = ACTIONS(731), - [sym_ellipsis] = ACTIONS(731), - [sym_em_dash] = ACTIONS(731), - [sym_en_dash] = ACTIONS(734), - [sym_backslash_escape] = ACTIONS(734), - [anon_sym_LT] = ACTIONS(737), - [anon_sym_LBRACE_EQ] = ACTIONS(740), - [anon_sym_LBRACE_PLUS] = ACTIONS(743), - [anon_sym_LBRACE_DASH] = ACTIONS(746), - [sym_symbol] = ACTIONS(731), - [anon_sym_LBRACE_CARET] = ACTIONS(749), - [anon_sym_CARET] = ACTIONS(749), - [anon_sym_LBRACE_TILDE] = ACTIONS(752), - [anon_sym_TILDE] = ACTIONS(752), - [anon_sym_LBRACK_CARET] = ACTIONS(755), - [anon_sym_BANG_LBRACK] = ACTIONS(758), - [anon_sym_LBRACK] = ACTIONS(761), - [anon_sym_LBRACE2] = ACTIONS(734), - [anon_sym_DOLLAR] = ACTIONS(764), - [anon_sym_TODO] = ACTIONS(767), - [anon_sym_WIP] = ACTIONS(767), - [anon_sym_NOTE] = ACTIONS(770), - [anon_sym_INFO] = ACTIONS(770), - [anon_sym_XXX] = ACTIONS(770), - [sym_fixme] = ACTIONS(731), - [anon_sym_PIPE] = ACTIONS(731), - [anon_sym_BQUOTE] = ACTIONS(660), - [sym__whitespace1] = ACTIONS(773), - [sym__newline] = ACTIONS(776), - [aux_sym__text_token1] = ACTIONS(779), + [sym_strong] = STATE(178), + [sym_strong_begin] = STATE(117), + [sym__hard_line_break] = STATE(178), + [sym_hard_line_break] = STATE(178), + [sym__smart_punctuation] = STATE(178), + [sym_autolink] = STATE(178), + [sym_highlighted] = STATE(178), + [sym_insert] = STATE(178), + [sym_delete] = STATE(178), + [sym_superscript] = STATE(178), + [sym_subscript] = STATE(178), + [sym_footnote_reference] = STATE(178), + [sym__image] = STATE(178), + [sym_full_reference_image] = STATE(178), + [sym_collapsed_reference_image] = STATE(178), + [sym_inline_image] = STATE(178), + [sym__image_description] = STATE(640), + [sym__link] = STATE(178), + [sym_full_reference_link] = STATE(178), + [sym_collapsed_reference_link] = STATE(178), + [sym_inline_link] = STATE(178), + [sym_link_text] = STATE(636), + [sym__comment_with_spaces] = STATE(178), + [sym_span] = STATE(178), + [sym_raw_inline] = STATE(178), + [sym_math] = STATE(178), + [sym_verbatim] = STATE(178), + [sym__todo_highlights] = STATE(178), + [sym_todo] = STATE(178), + [sym_note] = STATE(178), + [sym__symbol_fallback] = STATE(178), + [aux_sym__text] = STATE(146), + [aux_sym__inline_repeat1] = STATE(80), + [anon_sym_LBRACE_] = ACTIONS(846), + [anon_sym__] = ACTIONS(849), + [anon_sym_LBRACE_STAR] = ACTIONS(852), + [anon_sym_STAR] = ACTIONS(855), + [anon_sym_BSLASH] = ACTIONS(858), + [sym_quotation_marks] = ACTIONS(861), + [sym_ellipsis] = ACTIONS(861), + [sym_em_dash] = ACTIONS(861), + [sym_en_dash] = ACTIONS(864), + [sym_backslash_escape] = ACTIONS(864), + [anon_sym_LT] = ACTIONS(867), + [anon_sym_LBRACE_EQ] = ACTIONS(870), + [anon_sym_LBRACE_PLUS] = ACTIONS(873), + [anon_sym_LBRACE_DASH] = ACTIONS(876), + [sym_symbol] = ACTIONS(861), + [anon_sym_LBRACE_CARET] = ACTIONS(879), + [anon_sym_CARET] = ACTIONS(879), + [anon_sym_LBRACE_TILDE] = ACTIONS(882), + [anon_sym_TILDE] = ACTIONS(882), + [anon_sym_LBRACK_CARET] = ACTIONS(885), + [anon_sym_BANG_LBRACK] = ACTIONS(888), + [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_RBRACK2] = ACTIONS(670), + [anon_sym_LBRACE2] = ACTIONS(864), + [anon_sym_DOLLAR] = ACTIONS(894), + [anon_sym_TODO] = ACTIONS(897), + [anon_sym_WIP] = ACTIONS(897), + [anon_sym_NOTE] = ACTIONS(900), + [anon_sym_INFO] = ACTIONS(900), + [anon_sym_XXX] = ACTIONS(900), + [sym_fixme] = ACTIONS(861), + [anon_sym_PIPE] = ACTIONS(861), + [sym__whitespace1] = ACTIONS(903), + [sym__newline] = ACTIONS(906), + [aux_sym__text_token1] = ACTIONS(909), + [sym__verbatim_begin] = ACTIONS(912), }, - [78] = { - [sym__inline] = STATE(831), - [sym__element] = STATE(79), + [81] = { + [sym__inline] = STATE(679), + [sym__element] = STATE(87), [sym_emphasis] = STATE(189), - [sym_emphasis_begin] = STATE(92), + [sym_emphasis_begin] = STATE(108), [sym_strong] = STATE(189), - [sym_strong_begin] = STATE(93), + [sym_strong_begin] = STATE(109), [sym__hard_line_break] = STATE(189), [sym_hard_line_break] = STATE(189), [sym__smart_punctuation] = STATE(189), @@ -14205,12 +14176,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_full_reference_image] = STATE(189), [sym_collapsed_reference_image] = STATE(189), [sym_inline_image] = STATE(189), - [sym__image_description] = STATE(660), + [sym__image_description] = STATE(655), [sym__link] = STATE(189), [sym_full_reference_link] = STATE(189), [sym_collapsed_reference_link] = STATE(189), [sym_inline_link] = STATE(189), - [sym_link_text] = STATE(646), + [sym_link_text] = STATE(626), [sym__comment_with_spaces] = STATE(189), [sym_span] = STATE(189), [sym_raw_inline] = STATE(189), @@ -14220,51 +14191,198 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(189), [sym_note] = STATE(189), [sym__symbol_fallback] = STATE(189), - [sym__verbatim_begin] = STATE(906), - [aux_sym__text] = STATE(123), - [aux_sym__inline_repeat1] = STATE(79), - [anon_sym_LBRACE_] = ACTIONS(672), - [anon_sym__] = ACTIONS(674), - [anon_sym_LBRACE_STAR] = ACTIONS(676), - [anon_sym_STAR] = ACTIONS(678), - [anon_sym_BSLASH] = ACTIONS(680), - [sym_quotation_marks] = ACTIONS(682), - [sym_ellipsis] = ACTIONS(682), - [sym_em_dash] = ACTIONS(682), - [sym_en_dash] = ACTIONS(684), - [sym_backslash_escape] = ACTIONS(684), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_LBRACE_EQ] = ACTIONS(688), - [anon_sym_LBRACE_PLUS] = ACTIONS(690), - [anon_sym_LBRACE_DASH] = ACTIONS(692), - [sym_symbol] = ACTIONS(682), - [anon_sym_LBRACE_CARET] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym_LBRACE_TILDE] = ACTIONS(696), - [anon_sym_TILDE] = ACTIONS(696), - [anon_sym_LBRACK_CARET] = ACTIONS(698), - [anon_sym_BANG_LBRACK] = ACTIONS(700), - [anon_sym_LBRACK] = ACTIONS(702), - [anon_sym_LBRACE2] = ACTIONS(684), - [anon_sym_DOLLAR] = ACTIONS(704), - [anon_sym_TODO] = ACTIONS(706), - [anon_sym_WIP] = ACTIONS(706), - [anon_sym_NOTE] = ACTIONS(708), - [anon_sym_INFO] = ACTIONS(708), - [anon_sym_XXX] = ACTIONS(708), - [sym_fixme] = ACTIONS(682), - [anon_sym_PIPE] = ACTIONS(682), - [anon_sym_BQUOTE] = ACTIONS(41), - [sym__whitespace1] = ACTIONS(710), - [sym__newline] = ACTIONS(712), - [aux_sym__text_token1] = ACTIONS(714), + [aux_sym__text] = STATE(155), + [aux_sym__inline_repeat1] = STATE(87), + [anon_sym_LBRACE_] = ACTIONS(915), + [anon_sym__] = ACTIONS(917), + [anon_sym_LBRACE_STAR] = ACTIONS(919), + [anon_sym_STAR] = ACTIONS(921), + [anon_sym_BSLASH] = ACTIONS(923), + [sym_quotation_marks] = ACTIONS(925), + [sym_ellipsis] = ACTIONS(925), + [sym_em_dash] = ACTIONS(925), + [sym_en_dash] = ACTIONS(927), + [sym_backslash_escape] = ACTIONS(927), + [anon_sym_LT] = ACTIONS(929), + [anon_sym_LBRACE_EQ] = ACTIONS(931), + [anon_sym_LBRACE_PLUS] = ACTIONS(933), + [anon_sym_LBRACE_DASH] = ACTIONS(935), + [sym_symbol] = ACTIONS(925), + [anon_sym_LBRACE_CARET] = ACTIONS(937), + [anon_sym_CARET] = ACTIONS(937), + [anon_sym_LBRACE_TILDE] = ACTIONS(939), + [anon_sym_TILDE] = ACTIONS(939), + [anon_sym_LBRACK_CARET] = ACTIONS(941), + [anon_sym_BANG_LBRACK] = ACTIONS(943), + [anon_sym_LBRACK] = ACTIONS(945), + [anon_sym_LBRACE2] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(947), + [anon_sym_TODO] = ACTIONS(949), + [anon_sym_WIP] = ACTIONS(949), + [anon_sym_NOTE] = ACTIONS(951), + [anon_sym_INFO] = ACTIONS(951), + [anon_sym_XXX] = ACTIONS(951), + [sym_fixme] = ACTIONS(925), + [anon_sym_PIPE] = ACTIONS(925), + [sym__whitespace1] = ACTIONS(953), + [sym__newline] = ACTIONS(955), + [aux_sym__text_token1] = ACTIONS(957), + [sym__verbatim_begin] = ACTIONS(959), }, - [79] = { - [sym__element] = STATE(80), + [82] = { + [sym__inline] = STATE(678), + [sym__element] = STATE(73), + [sym_emphasis] = STATE(179), + [sym_emphasis_begin] = STATE(111), + [sym_strong] = STATE(179), + [sym_strong_begin] = STATE(112), + [sym__hard_line_break] = STATE(179), + [sym_hard_line_break] = STATE(179), + [sym__smart_punctuation] = STATE(179), + [sym_autolink] = STATE(179), + [sym_highlighted] = STATE(179), + [sym_insert] = STATE(179), + [sym_delete] = STATE(179), + [sym_superscript] = STATE(179), + [sym_subscript] = STATE(179), + [sym_footnote_reference] = STATE(179), + [sym__image] = STATE(179), + [sym_full_reference_image] = STATE(179), + [sym_collapsed_reference_image] = STATE(179), + [sym_inline_image] = STATE(179), + [sym__image_description] = STATE(625), + [sym__link] = STATE(179), + [sym_full_reference_link] = STATE(179), + [sym_collapsed_reference_link] = STATE(179), + [sym_inline_link] = STATE(179), + [sym_link_text] = STATE(647), + [sym__comment_with_spaces] = STATE(179), + [sym_span] = STATE(179), + [sym_raw_inline] = STATE(179), + [sym_math] = STATE(179), + [sym_verbatim] = STATE(179), + [sym__todo_highlights] = STATE(179), + [sym_todo] = STATE(179), + [sym_note] = STATE(179), + [sym__symbol_fallback] = STATE(179), + [aux_sym__text] = STATE(171), + [aux_sym__inline_repeat1] = STATE(73), + [anon_sym_LBRACE_] = ACTIONS(610), + [anon_sym__] = ACTIONS(612), + [anon_sym_LBRACE_STAR] = ACTIONS(614), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_BSLASH] = ACTIONS(620), + [sym_quotation_marks] = ACTIONS(622), + [sym_ellipsis] = ACTIONS(622), + [sym_em_dash] = ACTIONS(622), + [sym_en_dash] = ACTIONS(624), + [sym_backslash_escape] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_LBRACE_EQ] = ACTIONS(628), + [anon_sym_LBRACE_PLUS] = ACTIONS(630), + [anon_sym_LBRACE_DASH] = ACTIONS(632), + [sym_symbol] = ACTIONS(622), + [anon_sym_LBRACE_CARET] = ACTIONS(634), + [anon_sym_CARET] = ACTIONS(634), + [anon_sym_LBRACE_TILDE] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(636), + [anon_sym_LBRACK_CARET] = ACTIONS(638), + [anon_sym_BANG_LBRACK] = ACTIONS(640), + [anon_sym_LBRACK] = ACTIONS(642), + [anon_sym_LBRACE2] = ACTIONS(624), + [anon_sym_DOLLAR] = ACTIONS(644), + [anon_sym_TODO] = ACTIONS(646), + [anon_sym_WIP] = ACTIONS(646), + [anon_sym_NOTE] = ACTIONS(648), + [anon_sym_INFO] = ACTIONS(648), + [anon_sym_XXX] = ACTIONS(648), + [sym_fixme] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [sym__whitespace1] = ACTIONS(963), + [sym__newline] = ACTIONS(965), + [aux_sym__text_token1] = ACTIONS(654), + [sym__verbatim_begin] = ACTIONS(656), + }, + [83] = { + [sym__inline] = STATE(797), + [sym__element] = STATE(79), + [sym_emphasis] = STATE(178), + [sym_emphasis_begin] = STATE(115), + [sym_strong] = STATE(178), + [sym_strong_begin] = STATE(117), + [sym__hard_line_break] = STATE(178), + [sym_hard_line_break] = STATE(178), + [sym__smart_punctuation] = STATE(178), + [sym_autolink] = STATE(178), + [sym_highlighted] = STATE(178), + [sym_insert] = STATE(178), + [sym_delete] = STATE(178), + [sym_superscript] = STATE(178), + [sym_subscript] = STATE(178), + [sym_footnote_reference] = STATE(178), + [sym__image] = STATE(178), + [sym_full_reference_image] = STATE(178), + [sym_collapsed_reference_image] = STATE(178), + [sym_inline_image] = STATE(178), + [sym__image_description] = STATE(640), + [sym__link] = STATE(178), + [sym_full_reference_link] = STATE(178), + [sym_collapsed_reference_link] = STATE(178), + [sym_inline_link] = STATE(178), + [sym_link_text] = STATE(636), + [sym__comment_with_spaces] = STATE(178), + [sym_span] = STATE(178), + [sym_raw_inline] = STATE(178), + [sym_math] = STATE(178), + [sym_verbatim] = STATE(178), + [sym__todo_highlights] = STATE(178), + [sym_todo] = STATE(178), + [sym_note] = STATE(178), + [sym__symbol_fallback] = STATE(178), + [aux_sym__text] = STATE(146), + [aux_sym__inline_repeat1] = STATE(79), + [anon_sym_LBRACE_] = ACTIONS(564), + [anon_sym__] = ACTIONS(566), + [anon_sym_LBRACE_STAR] = ACTIONS(568), + [anon_sym_STAR] = ACTIONS(570), + [anon_sym_BSLASH] = ACTIONS(572), + [sym_quotation_marks] = ACTIONS(574), + [sym_ellipsis] = ACTIONS(574), + [sym_em_dash] = ACTIONS(574), + [sym_en_dash] = ACTIONS(576), + [sym_backslash_escape] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(578), + [anon_sym_LBRACE_EQ] = ACTIONS(580), + [anon_sym_LBRACE_PLUS] = ACTIONS(582), + [anon_sym_LBRACE_DASH] = ACTIONS(584), + [sym_symbol] = ACTIONS(574), + [anon_sym_LBRACE_CARET] = ACTIONS(586), + [anon_sym_CARET] = ACTIONS(586), + [anon_sym_LBRACE_TILDE] = ACTIONS(588), + [anon_sym_TILDE] = ACTIONS(588), + [anon_sym_LBRACK_CARET] = ACTIONS(590), + [anon_sym_BANG_LBRACK] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_LBRACE2] = ACTIONS(576), + [anon_sym_DOLLAR] = ACTIONS(596), + [anon_sym_TODO] = ACTIONS(598), + [anon_sym_WIP] = ACTIONS(598), + [anon_sym_NOTE] = ACTIONS(600), + [anon_sym_INFO] = ACTIONS(600), + [anon_sym_XXX] = ACTIONS(600), + [sym_fixme] = ACTIONS(574), + [anon_sym_PIPE] = ACTIONS(574), + [sym__whitespace1] = ACTIONS(602), + [sym__newline] = ACTIONS(604), + [aux_sym__text_token1] = ACTIONS(606), + [sym__verbatim_begin] = ACTIONS(608), + }, + [84] = { + [sym__element] = STATE(84), [sym_emphasis] = STATE(189), - [sym_emphasis_begin] = STATE(92), + [sym_emphasis_begin] = STATE(108), [sym_strong] = STATE(189), - [sym_strong_begin] = STATE(93), + [sym_strong_begin] = STATE(109), [sym__hard_line_break] = STATE(189), [sym_hard_line_break] = STATE(189), [sym__smart_punctuation] = STATE(189), @@ -14279,12 +14397,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_full_reference_image] = STATE(189), [sym_collapsed_reference_image] = STATE(189), [sym_inline_image] = STATE(189), - [sym__image_description] = STATE(660), + [sym__image_description] = STATE(655), [sym__link] = STATE(189), [sym_full_reference_link] = STATE(189), [sym_collapsed_reference_link] = STATE(189), [sym_inline_link] = STATE(189), - [sym_link_text] = STATE(646), + [sym_link_text] = STATE(626), [sym__comment_with_spaces] = STATE(189), [sym_span] = STATE(189), [sym_raw_inline] = STATE(189), @@ -14294,52 +14412,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(189), [sym_note] = STATE(189), [sym__symbol_fallback] = STATE(189), - [sym__verbatim_begin] = STATE(906), - [aux_sym__text] = STATE(123), - [aux_sym__inline_repeat1] = STATE(80), - [anon_sym_LBRACE_] = ACTIONS(672), - [anon_sym__] = ACTIONS(674), - [anon_sym_LBRACE_STAR] = ACTIONS(676), - [anon_sym_STAR] = ACTIONS(678), - [anon_sym_BSLASH] = ACTIONS(680), - [sym_quotation_marks] = ACTIONS(682), - [sym_ellipsis] = ACTIONS(682), - [sym_em_dash] = ACTIONS(682), - [sym_en_dash] = ACTIONS(684), - [sym_backslash_escape] = ACTIONS(684), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_LBRACE_EQ] = ACTIONS(688), - [anon_sym_LBRACE_PLUS] = ACTIONS(690), - [anon_sym_LBRACE_DASH] = ACTIONS(692), - [sym_symbol] = ACTIONS(682), - [anon_sym_LBRACE_CARET] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym_LBRACE_TILDE] = ACTIONS(696), - [anon_sym_TILDE] = ACTIONS(696), - [anon_sym_LBRACK_CARET] = ACTIONS(698), - [anon_sym_BANG_LBRACK] = ACTIONS(700), - [anon_sym_LBRACK] = ACTIONS(702), - [anon_sym_RBRACK2] = ACTIONS(595), - [anon_sym_LBRACE2] = ACTIONS(684), - [anon_sym_DOLLAR] = ACTIONS(704), - [anon_sym_TODO] = ACTIONS(706), - [anon_sym_WIP] = ACTIONS(706), - [anon_sym_NOTE] = ACTIONS(708), - [anon_sym_INFO] = ACTIONS(708), - [anon_sym_XXX] = ACTIONS(708), - [sym_fixme] = ACTIONS(682), - [anon_sym_PIPE] = ACTIONS(682), - [anon_sym_BQUOTE] = ACTIONS(41), - [sym__whitespace1] = ACTIONS(710), - [sym__newline] = ACTIONS(782), - [aux_sym__text_token1] = ACTIONS(714), + [aux_sym__text] = STATE(155), + [aux_sym__inline_repeat1] = STATE(84), + [anon_sym_LBRACE_] = ACTIONS(967), + [anon_sym__] = ACTIONS(970), + [aux_sym_emphasis_end_token1] = ACTIONS(670), + [anon_sym_LBRACE_STAR] = ACTIONS(973), + [anon_sym_STAR] = ACTIONS(976), + [anon_sym_BSLASH] = ACTIONS(979), + [sym_quotation_marks] = ACTIONS(982), + [sym_ellipsis] = ACTIONS(982), + [sym_em_dash] = ACTIONS(982), + [sym_en_dash] = ACTIONS(985), + [sym_backslash_escape] = ACTIONS(985), + [anon_sym_LT] = ACTIONS(988), + [anon_sym_LBRACE_EQ] = ACTIONS(991), + [anon_sym_LBRACE_PLUS] = ACTIONS(994), + [anon_sym_LBRACE_DASH] = ACTIONS(997), + [sym_symbol] = ACTIONS(982), + [anon_sym_LBRACE_CARET] = ACTIONS(1000), + [anon_sym_CARET] = ACTIONS(1000), + [anon_sym_LBRACE_TILDE] = ACTIONS(1003), + [anon_sym_TILDE] = ACTIONS(1003), + [anon_sym_LBRACK_CARET] = ACTIONS(1006), + [anon_sym_BANG_LBRACK] = ACTIONS(1009), + [anon_sym_LBRACK] = ACTIONS(1012), + [anon_sym_LBRACE2] = ACTIONS(985), + [anon_sym_DOLLAR] = ACTIONS(1015), + [anon_sym_TODO] = ACTIONS(1018), + [anon_sym_WIP] = ACTIONS(1018), + [anon_sym_NOTE] = ACTIONS(1021), + [anon_sym_INFO] = ACTIONS(1021), + [anon_sym_XXX] = ACTIONS(1021), + [sym_fixme] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(982), + [sym__whitespace1] = ACTIONS(1024), + [sym__newline] = ACTIONS(1027), + [aux_sym__text_token1] = ACTIONS(1030), + [sym__verbatim_begin] = ACTIONS(1033), }, - [80] = { - [sym__element] = STATE(80), + [85] = { + [sym__element] = STATE(88), + [sym_emphasis] = STATE(175), + [sym_emphasis_begin] = STATE(94), + [sym_strong] = STATE(175), + [sym_strong_begin] = STATE(95), + [sym__hard_line_break] = STATE(175), + [sym_hard_line_break] = STATE(175), + [sym__smart_punctuation] = STATE(175), + [sym_autolink] = STATE(175), + [sym_highlighted] = STATE(175), + [sym_insert] = STATE(175), + [sym_delete] = STATE(175), + [sym_superscript] = STATE(175), + [sym_subscript] = STATE(175), + [sym_footnote_reference] = STATE(175), + [sym__image] = STATE(175), + [sym_full_reference_image] = STATE(175), + [sym_collapsed_reference_image] = STATE(175), + [sym_inline_image] = STATE(175), + [sym__image_description] = STATE(652), + [sym__link] = STATE(175), + [sym_full_reference_link] = STATE(175), + [sym_collapsed_reference_link] = STATE(175), + [sym_inline_link] = STATE(175), + [sym_link_text] = STATE(649), + [sym__comment_with_spaces] = STATE(175), + [sym_span] = STATE(175), + [sym_raw_inline] = STATE(175), + [sym_math] = STATE(175), + [sym_verbatim] = STATE(175), + [sym__todo_highlights] = STATE(175), + [sym_todo] = STATE(175), + [sym_note] = STATE(175), + [sym__symbol_fallback] = STATE(175), + [aux_sym__text] = STATE(156), + [aux_sym__inline_repeat1] = STATE(88), + [anon_sym_LBRACE_] = ACTIONS(1036), + [anon_sym__] = ACTIONS(1038), + [anon_sym_LBRACE_STAR] = ACTIONS(1040), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_BSLASH] = ACTIONS(1044), + [sym_quotation_marks] = ACTIONS(1046), + [sym_ellipsis] = ACTIONS(1046), + [sym_em_dash] = ACTIONS(1046), + [sym_en_dash] = ACTIONS(1048), + [sym_backslash_escape] = ACTIONS(1048), + [anon_sym_LT] = ACTIONS(1050), + [anon_sym_LBRACE_EQ] = ACTIONS(1052), + [anon_sym_LBRACE_PLUS] = ACTIONS(1054), + [anon_sym_LBRACE_DASH] = ACTIONS(1056), + [sym_symbol] = ACTIONS(1046), + [anon_sym_LBRACE_CARET] = ACTIONS(1058), + [anon_sym_CARET] = ACTIONS(616), + [anon_sym_CARET_RBRACE] = ACTIONS(618), + [anon_sym_LBRACE_TILDE] = ACTIONS(1060), + [anon_sym_TILDE] = ACTIONS(1060), + [anon_sym_LBRACK_CARET] = ACTIONS(1062), + [anon_sym_BANG_LBRACK] = ACTIONS(1064), + [anon_sym_LBRACK] = ACTIONS(1066), + [anon_sym_LBRACE2] = ACTIONS(1048), + [anon_sym_DOLLAR] = ACTIONS(1068), + [anon_sym_TODO] = ACTIONS(1070), + [anon_sym_WIP] = ACTIONS(1070), + [anon_sym_NOTE] = ACTIONS(1072), + [anon_sym_INFO] = ACTIONS(1072), + [anon_sym_XXX] = ACTIONS(1072), + [sym_fixme] = ACTIONS(1046), + [anon_sym_PIPE] = ACTIONS(1046), + [sym__whitespace1] = ACTIONS(1074), + [sym__newline] = ACTIONS(1076), + [aux_sym__text_token1] = ACTIONS(1078), + [sym__verbatim_begin] = ACTIONS(1080), + }, + [86] = { + [sym__inline] = STATE(673), + [sym__element] = STATE(87), [sym_emphasis] = STATE(189), - [sym_emphasis_begin] = STATE(92), + [sym_emphasis_begin] = STATE(108), [sym_strong] = STATE(189), - [sym_strong_begin] = STATE(93), + [sym_strong_begin] = STATE(109), [sym__hard_line_break] = STATE(189), [sym_hard_line_break] = STATE(189), [sym__smart_punctuation] = STATE(189), @@ -14354,12 +14546,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_full_reference_image] = STATE(189), [sym_collapsed_reference_image] = STATE(189), [sym_inline_image] = STATE(189), - [sym__image_description] = STATE(660), + [sym__image_description] = STATE(655), [sym__link] = STATE(189), [sym_full_reference_link] = STATE(189), [sym_collapsed_reference_link] = STATE(189), [sym_inline_link] = STATE(189), - [sym_link_text] = STATE(646), + [sym_link_text] = STATE(626), [sym__comment_with_spaces] = STATE(189), [sym_span] = STATE(189), [sym_raw_inline] = STATE(189), @@ -14369,203 +14561,273 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(189), [sym_note] = STATE(189), [sym__symbol_fallback] = STATE(189), - [sym__verbatim_begin] = STATE(906), - [aux_sym__text] = STATE(123), - [aux_sym__inline_repeat1] = STATE(80), - [anon_sym_LBRACE_] = ACTIONS(784), - [anon_sym__] = ACTIONS(787), - [anon_sym_LBRACE_STAR] = ACTIONS(790), - [anon_sym_STAR] = ACTIONS(793), - [anon_sym_BSLASH] = ACTIONS(796), - [sym_quotation_marks] = ACTIONS(799), - [sym_ellipsis] = ACTIONS(799), - [sym_em_dash] = ACTIONS(799), - [sym_en_dash] = ACTIONS(802), - [sym_backslash_escape] = ACTIONS(802), - [anon_sym_LT] = ACTIONS(805), - [anon_sym_LBRACE_EQ] = ACTIONS(808), - [anon_sym_LBRACE_PLUS] = ACTIONS(811), - [anon_sym_LBRACE_DASH] = ACTIONS(814), - [sym_symbol] = ACTIONS(799), - [anon_sym_LBRACE_CARET] = ACTIONS(817), - [anon_sym_CARET] = ACTIONS(817), - [anon_sym_LBRACE_TILDE] = ACTIONS(820), - [anon_sym_TILDE] = ACTIONS(820), - [anon_sym_LBRACK_CARET] = ACTIONS(823), - [anon_sym_BANG_LBRACK] = ACTIONS(826), - [anon_sym_LBRACK] = ACTIONS(829), - [anon_sym_RBRACK2] = ACTIONS(613), - [anon_sym_LBRACE2] = ACTIONS(802), - [anon_sym_DOLLAR] = ACTIONS(832), - [anon_sym_TODO] = ACTIONS(835), - [anon_sym_WIP] = ACTIONS(835), - [anon_sym_NOTE] = ACTIONS(838), - [anon_sym_INFO] = ACTIONS(838), - [anon_sym_XXX] = ACTIONS(838), - [sym_fixme] = ACTIONS(799), - [anon_sym_PIPE] = ACTIONS(799), - [anon_sym_BQUOTE] = ACTIONS(660), - [sym__whitespace1] = ACTIONS(841), - [sym__newline] = ACTIONS(844), - [aux_sym__text_token1] = ACTIONS(847), + [aux_sym__text] = STATE(155), + [aux_sym__inline_repeat1] = STATE(87), + [anon_sym_LBRACE_] = ACTIONS(915), + [anon_sym__] = ACTIONS(917), + [anon_sym_LBRACE_STAR] = ACTIONS(919), + [anon_sym_STAR] = ACTIONS(921), + [anon_sym_BSLASH] = ACTIONS(923), + [sym_quotation_marks] = ACTIONS(925), + [sym_ellipsis] = ACTIONS(925), + [sym_em_dash] = ACTIONS(925), + [sym_en_dash] = ACTIONS(927), + [sym_backslash_escape] = ACTIONS(927), + [anon_sym_LT] = ACTIONS(929), + [anon_sym_LBRACE_EQ] = ACTIONS(931), + [anon_sym_LBRACE_PLUS] = ACTIONS(933), + [anon_sym_LBRACE_DASH] = ACTIONS(935), + [sym_symbol] = ACTIONS(925), + [anon_sym_LBRACE_CARET] = ACTIONS(937), + [anon_sym_CARET] = ACTIONS(937), + [anon_sym_LBRACE_TILDE] = ACTIONS(939), + [anon_sym_TILDE] = ACTIONS(939), + [anon_sym_LBRACK_CARET] = ACTIONS(941), + [anon_sym_BANG_LBRACK] = ACTIONS(943), + [anon_sym_LBRACK] = ACTIONS(945), + [anon_sym_LBRACE2] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(947), + [anon_sym_TODO] = ACTIONS(949), + [anon_sym_WIP] = ACTIONS(949), + [anon_sym_NOTE] = ACTIONS(951), + [anon_sym_INFO] = ACTIONS(951), + [anon_sym_XXX] = ACTIONS(951), + [sym_fixme] = ACTIONS(925), + [anon_sym_PIPE] = ACTIONS(925), + [sym__whitespace1] = ACTIONS(953), + [sym__newline] = ACTIONS(955), + [aux_sym__text_token1] = ACTIONS(957), + [sym__verbatim_begin] = ACTIONS(959), }, - [81] = { - [sym__element] = STATE(81), - [sym_emphasis] = STATE(173), - [sym_emphasis_begin] = STATE(87), - [sym_strong] = STATE(173), - [sym_strong_begin] = STATE(76), - [sym__hard_line_break] = STATE(173), - [sym_hard_line_break] = STATE(173), - [sym__smart_punctuation] = STATE(173), - [sym_autolink] = STATE(173), - [sym_highlighted] = STATE(173), - [sym_insert] = STATE(173), - [sym_delete] = STATE(173), - [sym_superscript] = STATE(173), - [sym_subscript] = STATE(173), - [sym_footnote_reference] = STATE(173), - [sym__image] = STATE(173), - [sym_full_reference_image] = STATE(173), - [sym_collapsed_reference_image] = STATE(173), - [sym_inline_image] = STATE(173), - [sym__image_description] = STATE(647), - [sym__link] = STATE(173), - [sym_full_reference_link] = STATE(173), - [sym_collapsed_reference_link] = STATE(173), - [sym_inline_link] = STATE(173), - [sym_link_text] = STATE(648), - [sym__comment_with_spaces] = STATE(173), - [sym_span] = STATE(173), - [sym_raw_inline] = STATE(173), - [sym_math] = STATE(173), - [sym_verbatim] = STATE(173), - [sym__todo_highlights] = STATE(173), - [sym_todo] = STATE(173), - [sym_note] = STATE(173), - [sym__symbol_fallback] = STATE(173), - [sym__verbatim_begin] = STATE(843), + [87] = { + [sym__element] = STATE(84), + [sym_emphasis] = STATE(189), + [sym_emphasis_begin] = STATE(108), + [sym_strong] = STATE(189), + [sym_strong_begin] = STATE(109), + [sym__hard_line_break] = STATE(189), + [sym_hard_line_break] = STATE(189), + [sym__smart_punctuation] = STATE(189), + [sym_autolink] = STATE(189), + [sym_highlighted] = STATE(189), + [sym_insert] = STATE(189), + [sym_delete] = STATE(189), + [sym_superscript] = STATE(189), + [sym_subscript] = STATE(189), + [sym_footnote_reference] = STATE(189), + [sym__image] = STATE(189), + [sym_full_reference_image] = STATE(189), + [sym_collapsed_reference_image] = STATE(189), + [sym_inline_image] = STATE(189), + [sym__image_description] = STATE(655), + [sym__link] = STATE(189), + [sym_full_reference_link] = STATE(189), + [sym_collapsed_reference_link] = STATE(189), + [sym_inline_link] = STATE(189), + [sym_link_text] = STATE(626), + [sym__comment_with_spaces] = STATE(189), + [sym_span] = STATE(189), + [sym_raw_inline] = STATE(189), + [sym_math] = STATE(189), + [sym_verbatim] = STATE(189), + [sym__todo_highlights] = STATE(189), + [sym_todo] = STATE(189), + [sym_note] = STATE(189), + [sym__symbol_fallback] = STATE(189), [aux_sym__text] = STATE(155), - [aux_sym__inline_repeat1] = STATE(81), - [anon_sym_LBRACE_] = ACTIONS(850), - [anon_sym__] = ACTIONS(853), - [anon_sym_LBRACE_STAR] = ACTIONS(856), - [anon_sym_STAR] = ACTIONS(859), - [anon_sym_BSLASH] = ACTIONS(862), - [sym_quotation_marks] = ACTIONS(865), - [sym_ellipsis] = ACTIONS(865), - [sym_em_dash] = ACTIONS(865), - [sym_en_dash] = ACTIONS(868), - [sym_backslash_escape] = ACTIONS(868), - [anon_sym_LT] = ACTIONS(871), - [anon_sym_LBRACE_EQ] = ACTIONS(874), - [anon_sym_LBRACE_PLUS] = ACTIONS(877), - [anon_sym_PLUS_RBRACE] = ACTIONS(613), - [anon_sym_LBRACE_DASH] = ACTIONS(880), - [sym_symbol] = ACTIONS(865), - [anon_sym_LBRACE_CARET] = ACTIONS(883), - [anon_sym_CARET] = ACTIONS(883), - [anon_sym_LBRACE_TILDE] = ACTIONS(886), - [anon_sym_TILDE] = ACTIONS(886), - [anon_sym_LBRACK_CARET] = ACTIONS(889), - [anon_sym_BANG_LBRACK] = ACTIONS(892), - [anon_sym_LBRACK] = ACTIONS(895), - [anon_sym_LBRACE2] = ACTIONS(868), - [anon_sym_DOLLAR] = ACTIONS(898), - [anon_sym_TODO] = ACTIONS(901), - [anon_sym_WIP] = ACTIONS(901), - [anon_sym_NOTE] = ACTIONS(904), - [anon_sym_INFO] = ACTIONS(904), - [anon_sym_XXX] = ACTIONS(904), - [sym_fixme] = ACTIONS(865), - [anon_sym_PIPE] = ACTIONS(865), - [anon_sym_BQUOTE] = ACTIONS(660), - [sym__whitespace1] = ACTIONS(907), - [sym__newline] = ACTIONS(910), - [aux_sym__text_token1] = ACTIONS(913), + [aux_sym__inline_repeat1] = STATE(84), + [anon_sym_LBRACE_] = ACTIONS(915), + [anon_sym__] = ACTIONS(616), + [aux_sym_emphasis_end_token1] = ACTIONS(618), + [anon_sym_LBRACE_STAR] = ACTIONS(919), + [anon_sym_STAR] = ACTIONS(921), + [anon_sym_BSLASH] = ACTIONS(923), + [sym_quotation_marks] = ACTIONS(925), + [sym_ellipsis] = ACTIONS(925), + [sym_em_dash] = ACTIONS(925), + [sym_en_dash] = ACTIONS(927), + [sym_backslash_escape] = ACTIONS(927), + [anon_sym_LT] = ACTIONS(929), + [anon_sym_LBRACE_EQ] = ACTIONS(931), + [anon_sym_LBRACE_PLUS] = ACTIONS(933), + [anon_sym_LBRACE_DASH] = ACTIONS(935), + [sym_symbol] = ACTIONS(925), + [anon_sym_LBRACE_CARET] = ACTIONS(937), + [anon_sym_CARET] = ACTIONS(937), + [anon_sym_LBRACE_TILDE] = ACTIONS(939), + [anon_sym_TILDE] = ACTIONS(939), + [anon_sym_LBRACK_CARET] = ACTIONS(941), + [anon_sym_BANG_LBRACK] = ACTIONS(943), + [anon_sym_LBRACK] = ACTIONS(945), + [anon_sym_LBRACE2] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(947), + [anon_sym_TODO] = ACTIONS(949), + [anon_sym_WIP] = ACTIONS(949), + [anon_sym_NOTE] = ACTIONS(951), + [anon_sym_INFO] = ACTIONS(951), + [anon_sym_XXX] = ACTIONS(951), + [sym_fixme] = ACTIONS(925), + [anon_sym_PIPE] = ACTIONS(925), + [sym__whitespace1] = ACTIONS(1082), + [sym__newline] = ACTIONS(1084), + [aux_sym__text_token1] = ACTIONS(957), + [sym__verbatim_begin] = ACTIONS(959), }, - [82] = { - [sym__inline] = STATE(680), - [sym__element] = STATE(94), - [sym_emphasis] = STATE(201), - [sym_emphasis_begin] = STATE(116), - [sym_strong] = STATE(201), - [sym_strong_begin] = STATE(117), - [sym__hard_line_break] = STATE(201), - [sym_hard_line_break] = STATE(201), - [sym__smart_punctuation] = STATE(201), - [sym_autolink] = STATE(201), - [sym_highlighted] = STATE(201), - [sym_insert] = STATE(201), - [sym_delete] = STATE(201), - [sym_superscript] = STATE(201), - [sym_subscript] = STATE(201), - [sym_footnote_reference] = STATE(201), - [sym__image] = STATE(201), - [sym_full_reference_image] = STATE(201), - [sym_collapsed_reference_image] = STATE(201), - [sym_inline_image] = STATE(201), - [sym__image_description] = STATE(656), - [sym__link] = STATE(201), - [sym_full_reference_link] = STATE(201), - [sym_collapsed_reference_link] = STATE(201), - [sym_inline_link] = STATE(201), - [sym_link_text] = STATE(655), - [sym__comment_with_spaces] = STATE(201), - [sym_span] = STATE(201), - [sym_raw_inline] = STATE(201), - [sym_math] = STATE(201), - [sym_verbatim] = STATE(201), - [sym__todo_highlights] = STATE(201), - [sym_todo] = STATE(201), - [sym_note] = STATE(201), - [sym__symbol_fallback] = STATE(201), - [sym__verbatim_begin] = STATE(888), - [aux_sym__text] = STATE(153), - [aux_sym__inline_repeat1] = STATE(94), - [anon_sym_LBRACE_] = ACTIONS(916), - [anon_sym__] = ACTIONS(918), - [anon_sym_LBRACE_STAR] = ACTIONS(920), - [anon_sym_STAR] = ACTIONS(922), - [anon_sym_BSLASH] = ACTIONS(924), - [sym_quotation_marks] = ACTIONS(926), - [sym_ellipsis] = ACTIONS(926), - [sym_em_dash] = ACTIONS(926), - [sym_en_dash] = ACTIONS(928), - [sym_backslash_escape] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(930), - [anon_sym_LBRACE_EQ] = ACTIONS(932), - [anon_sym_LBRACE_PLUS] = ACTIONS(934), - [anon_sym_LBRACE_DASH] = ACTIONS(936), - [sym_symbol] = ACTIONS(926), - [anon_sym_LBRACE_CARET] = ACTIONS(938), - [anon_sym_CARET] = ACTIONS(938), - [anon_sym_LBRACE_TILDE] = ACTIONS(940), - [anon_sym_TILDE] = ACTIONS(940), - [anon_sym_LBRACK_CARET] = ACTIONS(942), - [anon_sym_BANG_LBRACK] = ACTIONS(944), - [anon_sym_LBRACK] = ACTIONS(946), - [anon_sym_LBRACE2] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(948), - [anon_sym_TODO] = ACTIONS(950), - [anon_sym_WIP] = ACTIONS(950), - [anon_sym_NOTE] = ACTIONS(952), - [anon_sym_INFO] = ACTIONS(952), - [anon_sym_XXX] = ACTIONS(952), - [sym_fixme] = ACTIONS(926), - [anon_sym_PIPE] = ACTIONS(926), - [anon_sym_BQUOTE] = ACTIONS(41), - [sym__whitespace1] = ACTIONS(954), - [sym__newline] = ACTIONS(956), - [aux_sym__text_token1] = ACTIONS(958), + [88] = { + [sym__element] = STATE(88), + [sym_emphasis] = STATE(175), + [sym_emphasis_begin] = STATE(94), + [sym_strong] = STATE(175), + [sym_strong_begin] = STATE(95), + [sym__hard_line_break] = STATE(175), + [sym_hard_line_break] = STATE(175), + [sym__smart_punctuation] = STATE(175), + [sym_autolink] = STATE(175), + [sym_highlighted] = STATE(175), + [sym_insert] = STATE(175), + [sym_delete] = STATE(175), + [sym_superscript] = STATE(175), + [sym_subscript] = STATE(175), + [sym_footnote_reference] = STATE(175), + [sym__image] = STATE(175), + [sym_full_reference_image] = STATE(175), + [sym_collapsed_reference_image] = STATE(175), + [sym_inline_image] = STATE(175), + [sym__image_description] = STATE(652), + [sym__link] = STATE(175), + [sym_full_reference_link] = STATE(175), + [sym_collapsed_reference_link] = STATE(175), + [sym_inline_link] = STATE(175), + [sym_link_text] = STATE(649), + [sym__comment_with_spaces] = STATE(175), + [sym_span] = STATE(175), + [sym_raw_inline] = STATE(175), + [sym_math] = STATE(175), + [sym_verbatim] = STATE(175), + [sym__todo_highlights] = STATE(175), + [sym_todo] = STATE(175), + [sym_note] = STATE(175), + [sym__symbol_fallback] = STATE(175), + [aux_sym__text] = STATE(156), + [aux_sym__inline_repeat1] = STATE(88), + [anon_sym_LBRACE_] = ACTIONS(1086), + [anon_sym__] = ACTIONS(1089), + [anon_sym_LBRACE_STAR] = ACTIONS(1092), + [anon_sym_STAR] = ACTIONS(1095), + [anon_sym_BSLASH] = ACTIONS(1098), + [sym_quotation_marks] = ACTIONS(1101), + [sym_ellipsis] = ACTIONS(1101), + [sym_em_dash] = ACTIONS(1101), + [sym_en_dash] = ACTIONS(1104), + [sym_backslash_escape] = ACTIONS(1104), + [anon_sym_LT] = ACTIONS(1107), + [anon_sym_LBRACE_EQ] = ACTIONS(1110), + [anon_sym_LBRACE_PLUS] = ACTIONS(1113), + [anon_sym_LBRACE_DASH] = ACTIONS(1116), + [sym_symbol] = ACTIONS(1101), + [anon_sym_LBRACE_CARET] = ACTIONS(1119), + [anon_sym_CARET] = ACTIONS(1122), + [anon_sym_CARET_RBRACE] = ACTIONS(670), + [anon_sym_LBRACE_TILDE] = ACTIONS(1125), + [anon_sym_TILDE] = ACTIONS(1125), + [anon_sym_LBRACK_CARET] = ACTIONS(1128), + [anon_sym_BANG_LBRACK] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(1134), + [anon_sym_LBRACE2] = ACTIONS(1104), + [anon_sym_DOLLAR] = ACTIONS(1137), + [anon_sym_TODO] = ACTIONS(1140), + [anon_sym_WIP] = ACTIONS(1140), + [anon_sym_NOTE] = ACTIONS(1143), + [anon_sym_INFO] = ACTIONS(1143), + [anon_sym_XXX] = ACTIONS(1143), + [sym_fixme] = ACTIONS(1101), + [anon_sym_PIPE] = ACTIONS(1101), + [sym__whitespace1] = ACTIONS(1146), + [sym__newline] = ACTIONS(1149), + [aux_sym__text_token1] = ACTIONS(1152), + [sym__verbatim_begin] = ACTIONS(1155), }, - [83] = { - [sym__inline] = STATE(694), + [89] = { + [sym__inline] = STATE(672), [sym__element] = STATE(73), + [sym_emphasis] = STATE(179), + [sym_emphasis_begin] = STATE(111), + [sym_strong] = STATE(179), + [sym_strong_begin] = STATE(112), + [sym__hard_line_break] = STATE(179), + [sym_hard_line_break] = STATE(179), + [sym__smart_punctuation] = STATE(179), + [sym_autolink] = STATE(179), + [sym_highlighted] = STATE(179), + [sym_insert] = STATE(179), + [sym_delete] = STATE(179), + [sym_superscript] = STATE(179), + [sym_subscript] = STATE(179), + [sym_footnote_reference] = STATE(179), + [sym__image] = STATE(179), + [sym_full_reference_image] = STATE(179), + [sym_collapsed_reference_image] = STATE(179), + [sym_inline_image] = STATE(179), + [sym__image_description] = STATE(625), + [sym__link] = STATE(179), + [sym_full_reference_link] = STATE(179), + [sym_collapsed_reference_link] = STATE(179), + [sym_inline_link] = STATE(179), + [sym_link_text] = STATE(647), + [sym__comment_with_spaces] = STATE(179), + [sym_span] = STATE(179), + [sym_raw_inline] = STATE(179), + [sym_math] = STATE(179), + [sym_verbatim] = STATE(179), + [sym__todo_highlights] = STATE(179), + [sym_todo] = STATE(179), + [sym_note] = STATE(179), + [sym__symbol_fallback] = STATE(179), + [aux_sym__text] = STATE(171), + [aux_sym__inline_repeat1] = STATE(73), + [anon_sym_LBRACE_] = ACTIONS(610), + [anon_sym__] = ACTIONS(612), + [anon_sym_LBRACE_STAR] = ACTIONS(614), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_BSLASH] = ACTIONS(620), + [sym_quotation_marks] = ACTIONS(622), + [sym_ellipsis] = ACTIONS(622), + [sym_em_dash] = ACTIONS(622), + [sym_en_dash] = ACTIONS(624), + [sym_backslash_escape] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_LBRACE_EQ] = ACTIONS(628), + [anon_sym_LBRACE_PLUS] = ACTIONS(630), + [anon_sym_LBRACE_DASH] = ACTIONS(632), + [sym_symbol] = ACTIONS(622), + [anon_sym_LBRACE_CARET] = ACTIONS(634), + [anon_sym_CARET] = ACTIONS(634), + [anon_sym_LBRACE_TILDE] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(636), + [anon_sym_LBRACK_CARET] = ACTIONS(638), + [anon_sym_BANG_LBRACK] = ACTIONS(640), + [anon_sym_LBRACK] = ACTIONS(642), + [anon_sym_LBRACE2] = ACTIONS(624), + [anon_sym_DOLLAR] = ACTIONS(644), + [anon_sym_TODO] = ACTIONS(646), + [anon_sym_WIP] = ACTIONS(646), + [anon_sym_NOTE] = ACTIONS(648), + [anon_sym_INFO] = ACTIONS(648), + [anon_sym_XXX] = ACTIONS(648), + [sym_fixme] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [sym__whitespace1] = ACTIONS(963), + [sym__newline] = ACTIONS(965), + [aux_sym__text_token1] = ACTIONS(654), + [sym__verbatim_begin] = ACTIONS(656), + }, + [90] = { + [sym__inline] = STATE(768), + [sym__element] = STATE(79), [sym_emphasis] = STATE(178), - [sym_emphasis_begin] = STATE(119), + [sym_emphasis_begin] = STATE(115), [sym_strong] = STATE(178), - [sym_strong_begin] = STATE(121), + [sym_strong_begin] = STATE(117), [sym__hard_line_break] = STATE(178), [sym_hard_line_break] = STATE(178), [sym__smart_punctuation] = STATE(178), @@ -14580,12 +14842,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_full_reference_image] = STATE(178), [sym_collapsed_reference_image] = STATE(178), [sym_inline_image] = STATE(178), - [sym__image_description] = STATE(651), + [sym__image_description] = STATE(640), [sym__link] = STATE(178), [sym_full_reference_link] = STATE(178), [sym_collapsed_reference_link] = STATE(178), [sym_inline_link] = STATE(178), - [sym_link_text] = STATE(650), + [sym_link_text] = STATE(636), [sym__comment_with_spaces] = STATE(178), [sym_span] = STATE(178), [sym_raw_inline] = STATE(178), @@ -14595,352 +14857,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(178), [sym_note] = STATE(178), [sym__symbol_fallback] = STATE(178), - [sym__verbatim_begin] = STATE(897), - [aux_sym__text] = STATE(167), - [aux_sym__inline_repeat1] = STATE(73), - [anon_sym_LBRACE_] = ACTIONS(549), - [anon_sym__] = ACTIONS(551), - [anon_sym_LBRACE_STAR] = ACTIONS(553), - [anon_sym_STAR] = ACTIONS(555), - [anon_sym_BSLASH] = ACTIONS(557), - [sym_quotation_marks] = ACTIONS(559), - [sym_ellipsis] = ACTIONS(559), - [sym_em_dash] = ACTIONS(559), - [sym_en_dash] = ACTIONS(561), - [sym_backslash_escape] = ACTIONS(561), - [anon_sym_LT] = ACTIONS(563), - [anon_sym_LBRACE_EQ] = ACTIONS(565), - [anon_sym_LBRACE_PLUS] = ACTIONS(567), - [anon_sym_LBRACE_DASH] = ACTIONS(569), - [sym_symbol] = ACTIONS(559), - [anon_sym_LBRACE_CARET] = ACTIONS(571), - [anon_sym_CARET] = ACTIONS(571), - [anon_sym_LBRACE_TILDE] = ACTIONS(573), - [anon_sym_TILDE] = ACTIONS(573), - [anon_sym_LBRACK_CARET] = ACTIONS(575), - [anon_sym_BANG_LBRACK] = ACTIONS(577), - [anon_sym_LBRACK] = ACTIONS(579), - [anon_sym_LBRACE2] = ACTIONS(561), - [anon_sym_DOLLAR] = ACTIONS(581), - [anon_sym_TODO] = ACTIONS(583), - [anon_sym_WIP] = ACTIONS(583), - [anon_sym_NOTE] = ACTIONS(585), - [anon_sym_INFO] = ACTIONS(585), - [anon_sym_XXX] = ACTIONS(585), - [sym_fixme] = ACTIONS(559), - [anon_sym_PIPE] = ACTIONS(559), - [anon_sym_BQUOTE] = ACTIONS(41), - [sym__whitespace1] = ACTIONS(587), - [sym__newline] = ACTIONS(589), - [aux_sym__text_token1] = ACTIONS(591), - }, - [84] = { - [sym__element] = STATE(85), - [sym_emphasis] = STATE(197), - [sym_emphasis_begin] = STATE(97), - [sym_strong] = STATE(197), - [sym_strong_begin] = STATE(100), - [sym__hard_line_break] = STATE(197), - [sym_hard_line_break] = STATE(197), - [sym__smart_punctuation] = STATE(197), - [sym_autolink] = STATE(197), - [sym_highlighted] = STATE(197), - [sym_insert] = STATE(197), - [sym_delete] = STATE(197), - [sym_superscript] = STATE(197), - [sym_subscript] = STATE(197), - [sym_footnote_reference] = STATE(197), - [sym__image] = STATE(197), - [sym_full_reference_image] = STATE(197), - [sym_collapsed_reference_image] = STATE(197), - [sym_inline_image] = STATE(197), - [sym__image_description] = STATE(676), - [sym__link] = STATE(197), - [sym_full_reference_link] = STATE(197), - [sym_collapsed_reference_link] = STATE(197), - [sym_inline_link] = STATE(197), - [sym_link_text] = STATE(677), - [sym__comment_with_spaces] = STATE(197), - [sym_span] = STATE(197), - [sym_raw_inline] = STATE(197), - [sym_math] = STATE(197), - [sym_verbatim] = STATE(197), - [sym__todo_highlights] = STATE(197), - [sym_todo] = STATE(197), - [sym_note] = STATE(197), - [sym__symbol_fallback] = STATE(197), - [sym__verbatim_begin] = STATE(861), - [aux_sym__text] = STATE(159), - [aux_sym__inline_repeat1] = STATE(85), - [anon_sym_LBRACE_] = ACTIONS(960), - [anon_sym__] = ACTIONS(962), - [anon_sym_LBRACE_STAR] = ACTIONS(964), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_BSLASH] = ACTIONS(968), - [sym_quotation_marks] = ACTIONS(970), - [sym_ellipsis] = ACTIONS(970), - [sym_em_dash] = ACTIONS(970), - [sym_en_dash] = ACTIONS(972), - [sym_backslash_escape] = ACTIONS(972), - [anon_sym_LT] = ACTIONS(974), - [anon_sym_LBRACE_EQ] = ACTIONS(976), - [anon_sym_LBRACE_PLUS] = ACTIONS(978), - [anon_sym_LBRACE_DASH] = ACTIONS(980), - [sym_symbol] = ACTIONS(970), - [anon_sym_LBRACE_CARET] = ACTIONS(982), - [anon_sym_CARET] = ACTIONS(593), - [anon_sym_CARET_RBRACE] = ACTIONS(595), - [anon_sym_LBRACE_TILDE] = ACTIONS(984), - [anon_sym_TILDE] = ACTIONS(984), - [anon_sym_LBRACK_CARET] = ACTIONS(986), - [anon_sym_BANG_LBRACK] = ACTIONS(988), - [anon_sym_LBRACK] = ACTIONS(990), - [anon_sym_LBRACE2] = ACTIONS(972), - [anon_sym_DOLLAR] = ACTIONS(992), - [anon_sym_TODO] = ACTIONS(994), - [anon_sym_WIP] = ACTIONS(994), - [anon_sym_NOTE] = ACTIONS(996), - [anon_sym_INFO] = ACTIONS(996), - [anon_sym_XXX] = ACTIONS(996), - [sym_fixme] = ACTIONS(970), - [anon_sym_PIPE] = ACTIONS(970), - [anon_sym_BQUOTE] = ACTIONS(41), - [sym__whitespace1] = ACTIONS(998), - [sym__newline] = ACTIONS(1000), - [aux_sym__text_token1] = ACTIONS(1002), - }, - [85] = { - [sym__element] = STATE(85), - [sym_emphasis] = STATE(197), - [sym_emphasis_begin] = STATE(97), - [sym_strong] = STATE(197), - [sym_strong_begin] = STATE(100), - [sym__hard_line_break] = STATE(197), - [sym_hard_line_break] = STATE(197), - [sym__smart_punctuation] = STATE(197), - [sym_autolink] = STATE(197), - [sym_highlighted] = STATE(197), - [sym_insert] = STATE(197), - [sym_delete] = STATE(197), - [sym_superscript] = STATE(197), - [sym_subscript] = STATE(197), - [sym_footnote_reference] = STATE(197), - [sym__image] = STATE(197), - [sym_full_reference_image] = STATE(197), - [sym_collapsed_reference_image] = STATE(197), - [sym_inline_image] = STATE(197), - [sym__image_description] = STATE(676), - [sym__link] = STATE(197), - [sym_full_reference_link] = STATE(197), - [sym_collapsed_reference_link] = STATE(197), - [sym_inline_link] = STATE(197), - [sym_link_text] = STATE(677), - [sym__comment_with_spaces] = STATE(197), - [sym_span] = STATE(197), - [sym_raw_inline] = STATE(197), - [sym_math] = STATE(197), - [sym_verbatim] = STATE(197), - [sym__todo_highlights] = STATE(197), - [sym_todo] = STATE(197), - [sym_note] = STATE(197), - [sym__symbol_fallback] = STATE(197), - [sym__verbatim_begin] = STATE(861), - [aux_sym__text] = STATE(159), - [aux_sym__inline_repeat1] = STATE(85), - [anon_sym_LBRACE_] = ACTIONS(1004), - [anon_sym__] = ACTIONS(1007), - [anon_sym_LBRACE_STAR] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1013), - [anon_sym_BSLASH] = ACTIONS(1016), - [sym_quotation_marks] = ACTIONS(1019), - [sym_ellipsis] = ACTIONS(1019), - [sym_em_dash] = ACTIONS(1019), - [sym_en_dash] = ACTIONS(1022), - [sym_backslash_escape] = ACTIONS(1022), - [anon_sym_LT] = ACTIONS(1025), - [anon_sym_LBRACE_EQ] = ACTIONS(1028), - [anon_sym_LBRACE_PLUS] = ACTIONS(1031), - [anon_sym_LBRACE_DASH] = ACTIONS(1034), - [sym_symbol] = ACTIONS(1019), - [anon_sym_LBRACE_CARET] = ACTIONS(1037), - [anon_sym_CARET] = ACTIONS(1040), - [anon_sym_CARET_RBRACE] = ACTIONS(613), - [anon_sym_LBRACE_TILDE] = ACTIONS(1043), - [anon_sym_TILDE] = ACTIONS(1043), - [anon_sym_LBRACK_CARET] = ACTIONS(1046), - [anon_sym_BANG_LBRACK] = ACTIONS(1049), - [anon_sym_LBRACK] = ACTIONS(1052), - [anon_sym_LBRACE2] = ACTIONS(1022), - [anon_sym_DOLLAR] = ACTIONS(1055), - [anon_sym_TODO] = ACTIONS(1058), - [anon_sym_WIP] = ACTIONS(1058), - [anon_sym_NOTE] = ACTIONS(1061), - [anon_sym_INFO] = ACTIONS(1061), - [anon_sym_XXX] = ACTIONS(1061), - [sym_fixme] = ACTIONS(1019), - [anon_sym_PIPE] = ACTIONS(1019), - [anon_sym_BQUOTE] = ACTIONS(660), - [sym__whitespace1] = ACTIONS(1064), - [sym__newline] = ACTIONS(1067), - [aux_sym__text_token1] = ACTIONS(1070), - }, - [86] = { - [sym__inline] = STATE(805), - [sym__element] = STATE(79), - [sym_emphasis] = STATE(189), - [sym_emphasis_begin] = STATE(92), - [sym_strong] = STATE(189), - [sym_strong_begin] = STATE(93), - [sym__hard_line_break] = STATE(189), - [sym_hard_line_break] = STATE(189), - [sym__smart_punctuation] = STATE(189), - [sym_autolink] = STATE(189), - [sym_highlighted] = STATE(189), - [sym_insert] = STATE(189), - [sym_delete] = STATE(189), - [sym_superscript] = STATE(189), - [sym_subscript] = STATE(189), - [sym_footnote_reference] = STATE(189), - [sym__image] = STATE(189), - [sym_full_reference_image] = STATE(189), - [sym_collapsed_reference_image] = STATE(189), - [sym_inline_image] = STATE(189), - [sym__image_description] = STATE(660), - [sym__link] = STATE(189), - [sym_full_reference_link] = STATE(189), - [sym_collapsed_reference_link] = STATE(189), - [sym_inline_link] = STATE(189), - [sym_link_text] = STATE(646), - [sym__comment_with_spaces] = STATE(189), - [sym_span] = STATE(189), - [sym_raw_inline] = STATE(189), - [sym_math] = STATE(189), - [sym_verbatim] = STATE(189), - [sym__todo_highlights] = STATE(189), - [sym_todo] = STATE(189), - [sym_note] = STATE(189), - [sym__symbol_fallback] = STATE(189), - [sym__verbatim_begin] = STATE(906), - [aux_sym__text] = STATE(123), + [aux_sym__text] = STATE(146), [aux_sym__inline_repeat1] = STATE(79), - [anon_sym_LBRACE_] = ACTIONS(672), - [anon_sym__] = ACTIONS(674), - [anon_sym_LBRACE_STAR] = ACTIONS(676), - [anon_sym_STAR] = ACTIONS(678), - [anon_sym_BSLASH] = ACTIONS(680), - [sym_quotation_marks] = ACTIONS(682), - [sym_ellipsis] = ACTIONS(682), - [sym_em_dash] = ACTIONS(682), - [sym_en_dash] = ACTIONS(684), - [sym_backslash_escape] = ACTIONS(684), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_LBRACE_EQ] = ACTIONS(688), - [anon_sym_LBRACE_PLUS] = ACTIONS(690), - [anon_sym_LBRACE_DASH] = ACTIONS(692), - [sym_symbol] = ACTIONS(682), - [anon_sym_LBRACE_CARET] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym_LBRACE_TILDE] = ACTIONS(696), - [anon_sym_TILDE] = ACTIONS(696), - [anon_sym_LBRACK_CARET] = ACTIONS(698), - [anon_sym_BANG_LBRACK] = ACTIONS(700), - [anon_sym_LBRACK] = ACTIONS(702), - [anon_sym_LBRACE2] = ACTIONS(684), - [anon_sym_DOLLAR] = ACTIONS(704), - [anon_sym_TODO] = ACTIONS(706), - [anon_sym_WIP] = ACTIONS(706), - [anon_sym_NOTE] = ACTIONS(708), - [anon_sym_INFO] = ACTIONS(708), - [anon_sym_XXX] = ACTIONS(708), - [sym_fixme] = ACTIONS(682), - [anon_sym_PIPE] = ACTIONS(682), - [anon_sym_BQUOTE] = ACTIONS(41), - [sym__whitespace1] = ACTIONS(710), - [sym__newline] = ACTIONS(712), - [aux_sym__text_token1] = ACTIONS(714), - }, - [87] = { - [sym__inline] = STATE(683), - [sym__element] = STATE(94), - [sym_emphasis] = STATE(201), - [sym_emphasis_begin] = STATE(116), - [sym_strong] = STATE(201), - [sym_strong_begin] = STATE(117), - [sym__hard_line_break] = STATE(201), - [sym_hard_line_break] = STATE(201), - [sym__smart_punctuation] = STATE(201), - [sym_autolink] = STATE(201), - [sym_highlighted] = STATE(201), - [sym_insert] = STATE(201), - [sym_delete] = STATE(201), - [sym_superscript] = STATE(201), - [sym_subscript] = STATE(201), - [sym_footnote_reference] = STATE(201), - [sym__image] = STATE(201), - [sym_full_reference_image] = STATE(201), - [sym_collapsed_reference_image] = STATE(201), - [sym_inline_image] = STATE(201), - [sym__image_description] = STATE(656), - [sym__link] = STATE(201), - [sym_full_reference_link] = STATE(201), - [sym_collapsed_reference_link] = STATE(201), - [sym_inline_link] = STATE(201), - [sym_link_text] = STATE(655), - [sym__comment_with_spaces] = STATE(201), - [sym_span] = STATE(201), - [sym_raw_inline] = STATE(201), - [sym_math] = STATE(201), - [sym_verbatim] = STATE(201), - [sym__todo_highlights] = STATE(201), - [sym_todo] = STATE(201), - [sym_note] = STATE(201), - [sym__symbol_fallback] = STATE(201), - [sym__verbatim_begin] = STATE(888), - [aux_sym__text] = STATE(153), - [aux_sym__inline_repeat1] = STATE(94), - [anon_sym_LBRACE_] = ACTIONS(916), - [anon_sym__] = ACTIONS(918), - [anon_sym_LBRACE_STAR] = ACTIONS(920), - [anon_sym_STAR] = ACTIONS(922), - [anon_sym_BSLASH] = ACTIONS(924), - [sym_quotation_marks] = ACTIONS(926), - [sym_ellipsis] = ACTIONS(926), - [sym_em_dash] = ACTIONS(926), - [sym_en_dash] = ACTIONS(928), - [sym_backslash_escape] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(930), - [anon_sym_LBRACE_EQ] = ACTIONS(932), - [anon_sym_LBRACE_PLUS] = ACTIONS(934), - [anon_sym_LBRACE_DASH] = ACTIONS(936), - [sym_symbol] = ACTIONS(926), - [anon_sym_LBRACE_CARET] = ACTIONS(938), - [anon_sym_CARET] = ACTIONS(938), - [anon_sym_LBRACE_TILDE] = ACTIONS(940), - [anon_sym_TILDE] = ACTIONS(940), - [anon_sym_LBRACK_CARET] = ACTIONS(942), - [anon_sym_BANG_LBRACK] = ACTIONS(944), - [anon_sym_LBRACK] = ACTIONS(946), - [anon_sym_LBRACE2] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(948), - [anon_sym_TODO] = ACTIONS(950), - [anon_sym_WIP] = ACTIONS(950), - [anon_sym_NOTE] = ACTIONS(952), - [anon_sym_INFO] = ACTIONS(952), - [anon_sym_XXX] = ACTIONS(952), - [sym_fixme] = ACTIONS(926), - [anon_sym_PIPE] = ACTIONS(926), - [anon_sym_BQUOTE] = ACTIONS(41), - [sym__whitespace1] = ACTIONS(954), - [sym__newline] = ACTIONS(956), - [aux_sym__text_token1] = ACTIONS(958), + [anon_sym_LBRACE_] = ACTIONS(564), + [anon_sym__] = ACTIONS(566), + [anon_sym_LBRACE_STAR] = ACTIONS(568), + [anon_sym_STAR] = ACTIONS(570), + [anon_sym_BSLASH] = ACTIONS(572), + [sym_quotation_marks] = ACTIONS(574), + [sym_ellipsis] = ACTIONS(574), + [sym_em_dash] = ACTIONS(574), + [sym_en_dash] = ACTIONS(576), + [sym_backslash_escape] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(578), + [anon_sym_LBRACE_EQ] = ACTIONS(580), + [anon_sym_LBRACE_PLUS] = ACTIONS(582), + [anon_sym_LBRACE_DASH] = ACTIONS(584), + [sym_symbol] = ACTIONS(574), + [anon_sym_LBRACE_CARET] = ACTIONS(586), + [anon_sym_CARET] = ACTIONS(586), + [anon_sym_LBRACE_TILDE] = ACTIONS(588), + [anon_sym_TILDE] = ACTIONS(588), + [anon_sym_LBRACK_CARET] = ACTIONS(590), + [anon_sym_BANG_LBRACK] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_LBRACE2] = ACTIONS(576), + [anon_sym_DOLLAR] = ACTIONS(596), + [anon_sym_TODO] = ACTIONS(598), + [anon_sym_WIP] = ACTIONS(598), + [anon_sym_NOTE] = ACTIONS(600), + [anon_sym_INFO] = ACTIONS(600), + [anon_sym_XXX] = ACTIONS(600), + [sym_fixme] = ACTIONS(574), + [anon_sym_PIPE] = ACTIONS(574), + [sym__whitespace1] = ACTIONS(602), + [sym__newline] = ACTIONS(604), + [aux_sym__text_token1] = ACTIONS(606), + [sym__verbatim_begin] = ACTIONS(608), }, - [88] = { - [sym__inline] = STATE(760), - [sym__element] = STATE(79), + [91] = { + [sym__inline] = STATE(668), + [sym__element] = STATE(87), [sym_emphasis] = STATE(189), - [sym_emphasis_begin] = STATE(92), + [sym_emphasis_begin] = STATE(108), [sym_strong] = STATE(189), - [sym_strong_begin] = STATE(93), + [sym_strong_begin] = STATE(109), [sym__hard_line_break] = STATE(189), [sym_hard_line_break] = STATE(189), [sym__smart_punctuation] = STATE(189), @@ -14955,12 +14916,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_full_reference_image] = STATE(189), [sym_collapsed_reference_image] = STATE(189), [sym_inline_image] = STATE(189), - [sym__image_description] = STATE(660), + [sym__image_description] = STATE(655), [sym__link] = STATE(189), [sym_full_reference_link] = STATE(189), [sym_collapsed_reference_link] = STATE(189), [sym_inline_link] = STATE(189), - [sym_link_text] = STATE(646), + [sym_link_text] = STATE(626), [sym__comment_with_spaces] = STATE(189), [sym_span] = STATE(189), [sym_raw_inline] = STATE(189), @@ -14970,352 +14931,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(189), [sym_note] = STATE(189), [sym__symbol_fallback] = STATE(189), - [sym__verbatim_begin] = STATE(906), - [aux_sym__text] = STATE(123), - [aux_sym__inline_repeat1] = STATE(79), - [anon_sym_LBRACE_] = ACTIONS(672), - [anon_sym__] = ACTIONS(674), - [anon_sym_LBRACE_STAR] = ACTIONS(676), - [anon_sym_STAR] = ACTIONS(678), - [anon_sym_BSLASH] = ACTIONS(680), - [sym_quotation_marks] = ACTIONS(682), - [sym_ellipsis] = ACTIONS(682), - [sym_em_dash] = ACTIONS(682), - [sym_en_dash] = ACTIONS(684), - [sym_backslash_escape] = ACTIONS(684), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_LBRACE_EQ] = ACTIONS(688), - [anon_sym_LBRACE_PLUS] = ACTIONS(690), - [anon_sym_LBRACE_DASH] = ACTIONS(692), - [sym_symbol] = ACTIONS(682), - [anon_sym_LBRACE_CARET] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym_LBRACE_TILDE] = ACTIONS(696), - [anon_sym_TILDE] = ACTIONS(696), - [anon_sym_LBRACK_CARET] = ACTIONS(698), - [anon_sym_BANG_LBRACK] = ACTIONS(700), - [anon_sym_LBRACK] = ACTIONS(702), - [anon_sym_LBRACE2] = ACTIONS(684), - [anon_sym_DOLLAR] = ACTIONS(704), - [anon_sym_TODO] = ACTIONS(706), - [anon_sym_WIP] = ACTIONS(706), - [anon_sym_NOTE] = ACTIONS(708), - [anon_sym_INFO] = ACTIONS(708), - [anon_sym_XXX] = ACTIONS(708), - [sym_fixme] = ACTIONS(682), - [anon_sym_PIPE] = ACTIONS(682), - [anon_sym_BQUOTE] = ACTIONS(41), - [sym__whitespace1] = ACTIONS(710), - [sym__newline] = ACTIONS(712), - [aux_sym__text_token1] = ACTIONS(714), - }, - [89] = { - [sym__inline] = STATE(681), - [sym__element] = STATE(94), - [sym_emphasis] = STATE(201), - [sym_emphasis_begin] = STATE(116), - [sym_strong] = STATE(201), - [sym_strong_begin] = STATE(117), - [sym__hard_line_break] = STATE(201), - [sym_hard_line_break] = STATE(201), - [sym__smart_punctuation] = STATE(201), - [sym_autolink] = STATE(201), - [sym_highlighted] = STATE(201), - [sym_insert] = STATE(201), - [sym_delete] = STATE(201), - [sym_superscript] = STATE(201), - [sym_subscript] = STATE(201), - [sym_footnote_reference] = STATE(201), - [sym__image] = STATE(201), - [sym_full_reference_image] = STATE(201), - [sym_collapsed_reference_image] = STATE(201), - [sym_inline_image] = STATE(201), - [sym__image_description] = STATE(656), - [sym__link] = STATE(201), - [sym_full_reference_link] = STATE(201), - [sym_collapsed_reference_link] = STATE(201), - [sym_inline_link] = STATE(201), - [sym_link_text] = STATE(655), - [sym__comment_with_spaces] = STATE(201), - [sym_span] = STATE(201), - [sym_raw_inline] = STATE(201), - [sym_math] = STATE(201), - [sym_verbatim] = STATE(201), - [sym__todo_highlights] = STATE(201), - [sym_todo] = STATE(201), - [sym_note] = STATE(201), - [sym__symbol_fallback] = STATE(201), - [sym__verbatim_begin] = STATE(888), - [aux_sym__text] = STATE(153), - [aux_sym__inline_repeat1] = STATE(94), - [anon_sym_LBRACE_] = ACTIONS(916), - [anon_sym__] = ACTIONS(918), - [anon_sym_LBRACE_STAR] = ACTIONS(920), - [anon_sym_STAR] = ACTIONS(922), - [anon_sym_BSLASH] = ACTIONS(924), - [sym_quotation_marks] = ACTIONS(926), - [sym_ellipsis] = ACTIONS(926), - [sym_em_dash] = ACTIONS(926), - [sym_en_dash] = ACTIONS(928), - [sym_backslash_escape] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(930), - [anon_sym_LBRACE_EQ] = ACTIONS(932), - [anon_sym_LBRACE_PLUS] = ACTIONS(934), - [anon_sym_LBRACE_DASH] = ACTIONS(936), - [sym_symbol] = ACTIONS(926), - [anon_sym_LBRACE_CARET] = ACTIONS(938), - [anon_sym_CARET] = ACTIONS(938), - [anon_sym_LBRACE_TILDE] = ACTIONS(940), - [anon_sym_TILDE] = ACTIONS(940), - [anon_sym_LBRACK_CARET] = ACTIONS(942), - [anon_sym_BANG_LBRACK] = ACTIONS(944), - [anon_sym_LBRACK] = ACTIONS(946), - [anon_sym_LBRACE2] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(948), - [anon_sym_TODO] = ACTIONS(950), - [anon_sym_WIP] = ACTIONS(950), - [anon_sym_NOTE] = ACTIONS(952), - [anon_sym_INFO] = ACTIONS(952), - [anon_sym_XXX] = ACTIONS(952), - [sym_fixme] = ACTIONS(926), - [anon_sym_PIPE] = ACTIONS(926), - [anon_sym_BQUOTE] = ACTIONS(41), - [sym__whitespace1] = ACTIONS(954), - [sym__newline] = ACTIONS(956), - [aux_sym__text_token1] = ACTIONS(958), - }, - [90] = { - [sym__element] = STATE(90), - [sym_emphasis] = STATE(207), - [sym_emphasis_begin] = STATE(89), - [sym_strong] = STATE(207), - [sym_strong_begin] = STATE(72), - [sym__hard_line_break] = STATE(207), - [sym_hard_line_break] = STATE(207), - [sym__smart_punctuation] = STATE(207), - [sym_autolink] = STATE(207), - [sym_highlighted] = STATE(207), - [sym_insert] = STATE(207), - [sym_delete] = STATE(207), - [sym_superscript] = STATE(207), - [sym_subscript] = STATE(207), - [sym_footnote_reference] = STATE(207), - [sym__image] = STATE(207), - [sym_full_reference_image] = STATE(207), - [sym_collapsed_reference_image] = STATE(207), - [sym_inline_image] = STATE(207), - [sym__image_description] = STATE(666), - [sym__link] = STATE(207), - [sym_full_reference_link] = STATE(207), - [sym_collapsed_reference_link] = STATE(207), - [sym_inline_link] = STATE(207), - [sym_link_text] = STATE(667), - [sym__comment_with_spaces] = STATE(207), - [sym_span] = STATE(207), - [sym_raw_inline] = STATE(207), - [sym_math] = STATE(207), - [sym_verbatim] = STATE(207), - [sym__todo_highlights] = STATE(207), - [sym_todo] = STATE(207), - [sym_note] = STATE(207), - [sym__symbol_fallback] = STATE(207), - [sym__verbatim_begin] = STATE(852), - [aux_sym__text] = STATE(139), - [aux_sym__inline_repeat1] = STATE(90), - [anon_sym_LBRACE_] = ACTIONS(1073), - [anon_sym__] = ACTIONS(1076), - [anon_sym_LBRACE_STAR] = ACTIONS(1079), - [anon_sym_STAR] = ACTIONS(1082), - [anon_sym_BSLASH] = ACTIONS(1085), - [sym_quotation_marks] = ACTIONS(1088), - [sym_ellipsis] = ACTIONS(1088), - [sym_em_dash] = ACTIONS(1088), - [sym_en_dash] = ACTIONS(1091), - [sym_backslash_escape] = ACTIONS(1091), - [anon_sym_LT] = ACTIONS(1094), - [anon_sym_LBRACE_EQ] = ACTIONS(1097), - [anon_sym_LBRACE_PLUS] = ACTIONS(1100), - [anon_sym_LBRACE_DASH] = ACTIONS(1103), - [anon_sym_DASH_RBRACE] = ACTIONS(613), - [sym_symbol] = ACTIONS(1088), - [anon_sym_LBRACE_CARET] = ACTIONS(1106), - [anon_sym_CARET] = ACTIONS(1106), - [anon_sym_LBRACE_TILDE] = ACTIONS(1109), - [anon_sym_TILDE] = ACTIONS(1109), - [anon_sym_LBRACK_CARET] = ACTIONS(1112), - [anon_sym_BANG_LBRACK] = ACTIONS(1115), - [anon_sym_LBRACK] = ACTIONS(1118), - [anon_sym_LBRACE2] = ACTIONS(1091), - [anon_sym_DOLLAR] = ACTIONS(1121), - [anon_sym_TODO] = ACTIONS(1124), - [anon_sym_WIP] = ACTIONS(1124), - [anon_sym_NOTE] = ACTIONS(1127), - [anon_sym_INFO] = ACTIONS(1127), - [anon_sym_XXX] = ACTIONS(1127), - [sym_fixme] = ACTIONS(1088), - [anon_sym_PIPE] = ACTIONS(1088), - [anon_sym_BQUOTE] = ACTIONS(660), - [sym__whitespace1] = ACTIONS(1130), - [sym__newline] = ACTIONS(1133), - [aux_sym__text_token1] = ACTIONS(1136), - }, - [91] = { - [sym__element] = STATE(91), - [sym_emphasis] = STATE(201), - [sym_emphasis_begin] = STATE(116), - [sym_strong] = STATE(201), - [sym_strong_begin] = STATE(117), - [sym__hard_line_break] = STATE(201), - [sym_hard_line_break] = STATE(201), - [sym__smart_punctuation] = STATE(201), - [sym_autolink] = STATE(201), - [sym_highlighted] = STATE(201), - [sym_insert] = STATE(201), - [sym_delete] = STATE(201), - [sym_superscript] = STATE(201), - [sym_subscript] = STATE(201), - [sym_footnote_reference] = STATE(201), - [sym__image] = STATE(201), - [sym_full_reference_image] = STATE(201), - [sym_collapsed_reference_image] = STATE(201), - [sym_inline_image] = STATE(201), - [sym__image_description] = STATE(656), - [sym__link] = STATE(201), - [sym_full_reference_link] = STATE(201), - [sym_collapsed_reference_link] = STATE(201), - [sym_inline_link] = STATE(201), - [sym_link_text] = STATE(655), - [sym__comment_with_spaces] = STATE(201), - [sym_span] = STATE(201), - [sym_raw_inline] = STATE(201), - [sym_math] = STATE(201), - [sym_verbatim] = STATE(201), - [sym__todo_highlights] = STATE(201), - [sym_todo] = STATE(201), - [sym_note] = STATE(201), - [sym__symbol_fallback] = STATE(201), - [sym__verbatim_begin] = STATE(888), - [aux_sym__text] = STATE(153), - [aux_sym__inline_repeat1] = STATE(91), - [anon_sym_LBRACE_] = ACTIONS(1139), - [anon_sym__] = ACTIONS(1142), - [aux_sym_emphasis_end_token1] = ACTIONS(613), - [anon_sym_LBRACE_STAR] = ACTIONS(1145), - [anon_sym_STAR] = ACTIONS(1148), - [anon_sym_BSLASH] = ACTIONS(1151), - [sym_quotation_marks] = ACTIONS(1154), - [sym_ellipsis] = ACTIONS(1154), - [sym_em_dash] = ACTIONS(1154), - [sym_en_dash] = ACTIONS(1157), - [sym_backslash_escape] = ACTIONS(1157), - [anon_sym_LT] = ACTIONS(1160), - [anon_sym_LBRACE_EQ] = ACTIONS(1163), - [anon_sym_LBRACE_PLUS] = ACTIONS(1166), - [anon_sym_LBRACE_DASH] = ACTIONS(1169), - [sym_symbol] = ACTIONS(1154), - [anon_sym_LBRACE_CARET] = ACTIONS(1172), - [anon_sym_CARET] = ACTIONS(1172), - [anon_sym_LBRACE_TILDE] = ACTIONS(1175), - [anon_sym_TILDE] = ACTIONS(1175), - [anon_sym_LBRACK_CARET] = ACTIONS(1178), - [anon_sym_BANG_LBRACK] = ACTIONS(1181), - [anon_sym_LBRACK] = ACTIONS(1184), - [anon_sym_LBRACE2] = ACTIONS(1157), - [anon_sym_DOLLAR] = ACTIONS(1187), - [anon_sym_TODO] = ACTIONS(1190), - [anon_sym_WIP] = ACTIONS(1190), - [anon_sym_NOTE] = ACTIONS(1193), - [anon_sym_INFO] = ACTIONS(1193), - [anon_sym_XXX] = ACTIONS(1193), - [sym_fixme] = ACTIONS(1154), - [anon_sym_PIPE] = ACTIONS(1154), - [anon_sym_BQUOTE] = ACTIONS(660), - [sym__whitespace1] = ACTIONS(1196), - [sym__newline] = ACTIONS(1199), - [aux_sym__text_token1] = ACTIONS(1202), + [aux_sym__text] = STATE(155), + [aux_sym__inline_repeat1] = STATE(87), + [anon_sym_LBRACE_] = ACTIONS(915), + [anon_sym__] = ACTIONS(917), + [anon_sym_LBRACE_STAR] = ACTIONS(919), + [anon_sym_STAR] = ACTIONS(921), + [anon_sym_BSLASH] = ACTIONS(923), + [sym_quotation_marks] = ACTIONS(925), + [sym_ellipsis] = ACTIONS(925), + [sym_em_dash] = ACTIONS(925), + [sym_en_dash] = ACTIONS(927), + [sym_backslash_escape] = ACTIONS(927), + [anon_sym_LT] = ACTIONS(929), + [anon_sym_LBRACE_EQ] = ACTIONS(931), + [anon_sym_LBRACE_PLUS] = ACTIONS(933), + [anon_sym_LBRACE_DASH] = ACTIONS(935), + [sym_symbol] = ACTIONS(925), + [anon_sym_LBRACE_CARET] = ACTIONS(937), + [anon_sym_CARET] = ACTIONS(937), + [anon_sym_LBRACE_TILDE] = ACTIONS(939), + [anon_sym_TILDE] = ACTIONS(939), + [anon_sym_LBRACK_CARET] = ACTIONS(941), + [anon_sym_BANG_LBRACK] = ACTIONS(943), + [anon_sym_LBRACK] = ACTIONS(945), + [anon_sym_LBRACE2] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(947), + [anon_sym_TODO] = ACTIONS(949), + [anon_sym_WIP] = ACTIONS(949), + [anon_sym_NOTE] = ACTIONS(951), + [anon_sym_INFO] = ACTIONS(951), + [anon_sym_XXX] = ACTIONS(951), + [sym_fixme] = ACTIONS(925), + [anon_sym_PIPE] = ACTIONS(925), + [sym__whitespace1] = ACTIONS(953), + [sym__newline] = ACTIONS(955), + [aux_sym__text_token1] = ACTIONS(957), + [sym__verbatim_begin] = ACTIONS(959), }, [92] = { - [sym__inline] = STATE(692), - [sym__element] = STATE(94), - [sym_emphasis] = STATE(201), - [sym_emphasis_begin] = STATE(116), - [sym_strong] = STATE(201), - [sym_strong_begin] = STATE(117), - [sym__hard_line_break] = STATE(201), - [sym_hard_line_break] = STATE(201), - [sym__smart_punctuation] = STATE(201), - [sym_autolink] = STATE(201), - [sym_highlighted] = STATE(201), - [sym_insert] = STATE(201), - [sym_delete] = STATE(201), - [sym_superscript] = STATE(201), - [sym_subscript] = STATE(201), - [sym_footnote_reference] = STATE(201), - [sym__image] = STATE(201), - [sym_full_reference_image] = STATE(201), - [sym_collapsed_reference_image] = STATE(201), - [sym_inline_image] = STATE(201), - [sym__image_description] = STATE(656), - [sym__link] = STATE(201), - [sym_full_reference_link] = STATE(201), - [sym_collapsed_reference_link] = STATE(201), - [sym_inline_link] = STATE(201), - [sym_link_text] = STATE(655), - [sym__comment_with_spaces] = STATE(201), - [sym_span] = STATE(201), - [sym_raw_inline] = STATE(201), - [sym_math] = STATE(201), - [sym_verbatim] = STATE(201), - [sym__todo_highlights] = STATE(201), - [sym_todo] = STATE(201), - [sym_note] = STATE(201), - [sym__symbol_fallback] = STATE(201), - [sym__verbatim_begin] = STATE(888), - [aux_sym__text] = STATE(153), - [aux_sym__inline_repeat1] = STATE(94), - [anon_sym_LBRACE_] = ACTIONS(916), - [anon_sym__] = ACTIONS(918), - [anon_sym_LBRACE_STAR] = ACTIONS(920), - [anon_sym_STAR] = ACTIONS(922), - [anon_sym_BSLASH] = ACTIONS(924), - [sym_quotation_marks] = ACTIONS(926), - [sym_ellipsis] = ACTIONS(926), - [sym_em_dash] = ACTIONS(926), - [sym_en_dash] = ACTIONS(928), - [sym_backslash_escape] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(930), - [anon_sym_LBRACE_EQ] = ACTIONS(932), - [anon_sym_LBRACE_PLUS] = ACTIONS(934), - [anon_sym_LBRACE_DASH] = ACTIONS(936), - [sym_symbol] = ACTIONS(926), - [anon_sym_LBRACE_CARET] = ACTIONS(938), - [anon_sym_CARET] = ACTIONS(938), - [anon_sym_LBRACE_TILDE] = ACTIONS(940), - [anon_sym_TILDE] = ACTIONS(940), - [anon_sym_LBRACK_CARET] = ACTIONS(942), - [anon_sym_BANG_LBRACK] = ACTIONS(944), - [anon_sym_LBRACK] = ACTIONS(946), - [anon_sym_LBRACE2] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(948), - [anon_sym_TODO] = ACTIONS(950), - [anon_sym_WIP] = ACTIONS(950), - [anon_sym_NOTE] = ACTIONS(952), - [anon_sym_INFO] = ACTIONS(952), - [anon_sym_XXX] = ACTIONS(952), - [sym_fixme] = ACTIONS(926), - [anon_sym_PIPE] = ACTIONS(926), - [anon_sym_BQUOTE] = ACTIONS(41), - [sym__whitespace1] = ACTIONS(954), - [sym__newline] = ACTIONS(956), - [aux_sym__text_token1] = ACTIONS(958), + [sym__inline] = STATE(667), + [sym__element] = STATE(73), + [sym_emphasis] = STATE(179), + [sym_emphasis_begin] = STATE(111), + [sym_strong] = STATE(179), + [sym_strong_begin] = STATE(112), + [sym__hard_line_break] = STATE(179), + [sym_hard_line_break] = STATE(179), + [sym__smart_punctuation] = STATE(179), + [sym_autolink] = STATE(179), + [sym_highlighted] = STATE(179), + [sym_insert] = STATE(179), + [sym_delete] = STATE(179), + [sym_superscript] = STATE(179), + [sym_subscript] = STATE(179), + [sym_footnote_reference] = STATE(179), + [sym__image] = STATE(179), + [sym_full_reference_image] = STATE(179), + [sym_collapsed_reference_image] = STATE(179), + [sym_inline_image] = STATE(179), + [sym__image_description] = STATE(625), + [sym__link] = STATE(179), + [sym_full_reference_link] = STATE(179), + [sym_collapsed_reference_link] = STATE(179), + [sym_inline_link] = STATE(179), + [sym_link_text] = STATE(647), + [sym__comment_with_spaces] = STATE(179), + [sym_span] = STATE(179), + [sym_raw_inline] = STATE(179), + [sym_math] = STATE(179), + [sym_verbatim] = STATE(179), + [sym__todo_highlights] = STATE(179), + [sym_todo] = STATE(179), + [sym_note] = STATE(179), + [sym__symbol_fallback] = STATE(179), + [aux_sym__text] = STATE(171), + [aux_sym__inline_repeat1] = STATE(73), + [anon_sym_LBRACE_] = ACTIONS(610), + [anon_sym__] = ACTIONS(612), + [anon_sym_LBRACE_STAR] = ACTIONS(614), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_BSLASH] = ACTIONS(620), + [sym_quotation_marks] = ACTIONS(622), + [sym_ellipsis] = ACTIONS(622), + [sym_em_dash] = ACTIONS(622), + [sym_en_dash] = ACTIONS(624), + [sym_backslash_escape] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_LBRACE_EQ] = ACTIONS(628), + [anon_sym_LBRACE_PLUS] = ACTIONS(630), + [anon_sym_LBRACE_DASH] = ACTIONS(632), + [sym_symbol] = ACTIONS(622), + [anon_sym_LBRACE_CARET] = ACTIONS(634), + [anon_sym_CARET] = ACTIONS(634), + [anon_sym_LBRACE_TILDE] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(636), + [anon_sym_LBRACK_CARET] = ACTIONS(638), + [anon_sym_BANG_LBRACK] = ACTIONS(640), + [anon_sym_LBRACK] = ACTIONS(642), + [anon_sym_LBRACE2] = ACTIONS(624), + [anon_sym_DOLLAR] = ACTIONS(644), + [anon_sym_TODO] = ACTIONS(646), + [anon_sym_WIP] = ACTIONS(646), + [anon_sym_NOTE] = ACTIONS(648), + [anon_sym_INFO] = ACTIONS(648), + [anon_sym_XXX] = ACTIONS(648), + [sym_fixme] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [sym__whitespace1] = ACTIONS(963), + [sym__newline] = ACTIONS(965), + [aux_sym__text_token1] = ACTIONS(654), + [sym__verbatim_begin] = ACTIONS(656), }, [93] = { - [sym__inline] = STATE(693), - [sym__element] = STATE(73), + [sym__inline] = STATE(732), + [sym__element] = STATE(79), [sym_emphasis] = STATE(178), - [sym_emphasis_begin] = STATE(119), + [sym_emphasis_begin] = STATE(115), [sym_strong] = STATE(178), - [sym_strong_begin] = STATE(121), + [sym_strong_begin] = STATE(117), [sym__hard_line_break] = STATE(178), [sym_hard_line_break] = STATE(178), [sym__smart_punctuation] = STATE(178), @@ -15330,12 +15064,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_full_reference_image] = STATE(178), [sym_collapsed_reference_image] = STATE(178), [sym_inline_image] = STATE(178), - [sym__image_description] = STATE(651), + [sym__image_description] = STATE(640), [sym__link] = STATE(178), [sym_full_reference_link] = STATE(178), [sym_collapsed_reference_link] = STATE(178), [sym_inline_link] = STATE(178), - [sym_link_text] = STATE(650), + [sym_link_text] = STATE(636), [sym__comment_with_spaces] = STATE(178), [sym_span] = STATE(178), [sym_raw_inline] = STATE(178), @@ -15345,127 +15079,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(178), [sym_note] = STATE(178), [sym__symbol_fallback] = STATE(178), - [sym__verbatim_begin] = STATE(897), - [aux_sym__text] = STATE(167), - [aux_sym__inline_repeat1] = STATE(73), - [anon_sym_LBRACE_] = ACTIONS(549), - [anon_sym__] = ACTIONS(551), - [anon_sym_LBRACE_STAR] = ACTIONS(553), - [anon_sym_STAR] = ACTIONS(555), - [anon_sym_BSLASH] = ACTIONS(557), - [sym_quotation_marks] = ACTIONS(559), - [sym_ellipsis] = ACTIONS(559), - [sym_em_dash] = ACTIONS(559), - [sym_en_dash] = ACTIONS(561), - [sym_backslash_escape] = ACTIONS(561), - [anon_sym_LT] = ACTIONS(563), - [anon_sym_LBRACE_EQ] = ACTIONS(565), - [anon_sym_LBRACE_PLUS] = ACTIONS(567), - [anon_sym_LBRACE_DASH] = ACTIONS(569), - [sym_symbol] = ACTIONS(559), - [anon_sym_LBRACE_CARET] = ACTIONS(571), - [anon_sym_CARET] = ACTIONS(571), - [anon_sym_LBRACE_TILDE] = ACTIONS(573), - [anon_sym_TILDE] = ACTIONS(573), - [anon_sym_LBRACK_CARET] = ACTIONS(575), - [anon_sym_BANG_LBRACK] = ACTIONS(577), - [anon_sym_LBRACK] = ACTIONS(579), - [anon_sym_LBRACE2] = ACTIONS(561), - [anon_sym_DOLLAR] = ACTIONS(581), - [anon_sym_TODO] = ACTIONS(583), - [anon_sym_WIP] = ACTIONS(583), - [anon_sym_NOTE] = ACTIONS(585), - [anon_sym_INFO] = ACTIONS(585), - [anon_sym_XXX] = ACTIONS(585), - [sym_fixme] = ACTIONS(559), - [anon_sym_PIPE] = ACTIONS(559), - [anon_sym_BQUOTE] = ACTIONS(41), - [sym__whitespace1] = ACTIONS(587), - [sym__newline] = ACTIONS(589), - [aux_sym__text_token1] = ACTIONS(591), + [aux_sym__text] = STATE(146), + [aux_sym__inline_repeat1] = STATE(79), + [anon_sym_LBRACE_] = ACTIONS(564), + [anon_sym__] = ACTIONS(566), + [anon_sym_LBRACE_STAR] = ACTIONS(568), + [anon_sym_STAR] = ACTIONS(570), + [anon_sym_BSLASH] = ACTIONS(572), + [sym_quotation_marks] = ACTIONS(574), + [sym_ellipsis] = ACTIONS(574), + [sym_em_dash] = ACTIONS(574), + [sym_en_dash] = ACTIONS(576), + [sym_backslash_escape] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(578), + [anon_sym_LBRACE_EQ] = ACTIONS(580), + [anon_sym_LBRACE_PLUS] = ACTIONS(582), + [anon_sym_LBRACE_DASH] = ACTIONS(584), + [sym_symbol] = ACTIONS(574), + [anon_sym_LBRACE_CARET] = ACTIONS(586), + [anon_sym_CARET] = ACTIONS(586), + [anon_sym_LBRACE_TILDE] = ACTIONS(588), + [anon_sym_TILDE] = ACTIONS(588), + [anon_sym_LBRACK_CARET] = ACTIONS(590), + [anon_sym_BANG_LBRACK] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_LBRACE2] = ACTIONS(576), + [anon_sym_DOLLAR] = ACTIONS(596), + [anon_sym_TODO] = ACTIONS(598), + [anon_sym_WIP] = ACTIONS(598), + [anon_sym_NOTE] = ACTIONS(600), + [anon_sym_INFO] = ACTIONS(600), + [anon_sym_XXX] = ACTIONS(600), + [sym_fixme] = ACTIONS(574), + [anon_sym_PIPE] = ACTIONS(574), + [sym__whitespace1] = ACTIONS(602), + [sym__newline] = ACTIONS(604), + [aux_sym__text_token1] = ACTIONS(606), + [sym__verbatim_begin] = ACTIONS(608), }, [94] = { - [sym__element] = STATE(91), - [sym_emphasis] = STATE(201), - [sym_emphasis_begin] = STATE(116), - [sym_strong] = STATE(201), - [sym_strong_begin] = STATE(117), - [sym__hard_line_break] = STATE(201), - [sym_hard_line_break] = STATE(201), - [sym__smart_punctuation] = STATE(201), - [sym_autolink] = STATE(201), - [sym_highlighted] = STATE(201), - [sym_insert] = STATE(201), - [sym_delete] = STATE(201), - [sym_superscript] = STATE(201), - [sym_subscript] = STATE(201), - [sym_footnote_reference] = STATE(201), - [sym__image] = STATE(201), - [sym_full_reference_image] = STATE(201), - [sym_collapsed_reference_image] = STATE(201), - [sym_inline_image] = STATE(201), - [sym__image_description] = STATE(656), - [sym__link] = STATE(201), - [sym_full_reference_link] = STATE(201), - [sym_collapsed_reference_link] = STATE(201), - [sym_inline_link] = STATE(201), - [sym_link_text] = STATE(655), - [sym__comment_with_spaces] = STATE(201), - [sym_span] = STATE(201), - [sym_raw_inline] = STATE(201), - [sym_math] = STATE(201), - [sym_verbatim] = STATE(201), - [sym__todo_highlights] = STATE(201), - [sym_todo] = STATE(201), - [sym_note] = STATE(201), - [sym__symbol_fallback] = STATE(201), - [sym__verbatim_begin] = STATE(888), - [aux_sym__text] = STATE(153), - [aux_sym__inline_repeat1] = STATE(91), - [anon_sym_LBRACE_] = ACTIONS(916), - [anon_sym__] = ACTIONS(593), - [aux_sym_emphasis_end_token1] = ACTIONS(595), - [anon_sym_LBRACE_STAR] = ACTIONS(920), - [anon_sym_STAR] = ACTIONS(922), - [anon_sym_BSLASH] = ACTIONS(924), - [sym_quotation_marks] = ACTIONS(926), - [sym_ellipsis] = ACTIONS(926), - [sym_em_dash] = ACTIONS(926), - [sym_en_dash] = ACTIONS(928), - [sym_backslash_escape] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(930), - [anon_sym_LBRACE_EQ] = ACTIONS(932), - [anon_sym_LBRACE_PLUS] = ACTIONS(934), - [anon_sym_LBRACE_DASH] = ACTIONS(936), - [sym_symbol] = ACTIONS(926), - [anon_sym_LBRACE_CARET] = ACTIONS(938), - [anon_sym_CARET] = ACTIONS(938), - [anon_sym_LBRACE_TILDE] = ACTIONS(940), - [anon_sym_TILDE] = ACTIONS(940), - [anon_sym_LBRACK_CARET] = ACTIONS(942), - [anon_sym_BANG_LBRACK] = ACTIONS(944), - [anon_sym_LBRACK] = ACTIONS(946), - [anon_sym_LBRACE2] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(948), - [anon_sym_TODO] = ACTIONS(950), - [anon_sym_WIP] = ACTIONS(950), - [anon_sym_NOTE] = ACTIONS(952), - [anon_sym_INFO] = ACTIONS(952), - [anon_sym_XXX] = ACTIONS(952), - [sym_fixme] = ACTIONS(926), - [anon_sym_PIPE] = ACTIONS(926), - [anon_sym_BQUOTE] = ACTIONS(41), - [sym__whitespace1] = ACTIONS(1205), - [sym__newline] = ACTIONS(1207), - [aux_sym__text_token1] = ACTIONS(958), - }, - [95] = { - [sym__inline] = STATE(910), - [sym__element] = STATE(79), + [sym__inline] = STATE(674), + [sym__element] = STATE(87), [sym_emphasis] = STATE(189), - [sym_emphasis_begin] = STATE(92), + [sym_emphasis_begin] = STATE(108), [sym_strong] = STATE(189), - [sym_strong_begin] = STATE(93), + [sym_strong_begin] = STATE(109), [sym__hard_line_break] = STATE(189), [sym_hard_line_break] = STATE(189), [sym__smart_punctuation] = STATE(189), @@ -15480,12 +15138,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_full_reference_image] = STATE(189), [sym_collapsed_reference_image] = STATE(189), [sym_inline_image] = STATE(189), - [sym__image_description] = STATE(660), + [sym__image_description] = STATE(655), [sym__link] = STATE(189), [sym_full_reference_link] = STATE(189), [sym_collapsed_reference_link] = STATE(189), [sym_inline_link] = STATE(189), - [sym_link_text] = STATE(646), + [sym_link_text] = STATE(626), [sym__comment_with_spaces] = STATE(189), [sym_span] = STATE(189), [sym_raw_inline] = STATE(189), @@ -15495,352 +15153,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(189), [sym_note] = STATE(189), [sym__symbol_fallback] = STATE(189), - [sym__verbatim_begin] = STATE(906), - [aux_sym__text] = STATE(123), - [aux_sym__inline_repeat1] = STATE(79), - [anon_sym_LBRACE_] = ACTIONS(672), - [anon_sym__] = ACTIONS(674), - [anon_sym_LBRACE_STAR] = ACTIONS(676), - [anon_sym_STAR] = ACTIONS(678), - [anon_sym_BSLASH] = ACTIONS(680), - [sym_quotation_marks] = ACTIONS(682), - [sym_ellipsis] = ACTIONS(682), - [sym_em_dash] = ACTIONS(682), - [sym_en_dash] = ACTIONS(684), - [sym_backslash_escape] = ACTIONS(684), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_LBRACE_EQ] = ACTIONS(688), - [anon_sym_LBRACE_PLUS] = ACTIONS(690), - [anon_sym_LBRACE_DASH] = ACTIONS(692), - [sym_symbol] = ACTIONS(682), - [anon_sym_LBRACE_CARET] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym_LBRACE_TILDE] = ACTIONS(696), - [anon_sym_TILDE] = ACTIONS(696), - [anon_sym_LBRACK_CARET] = ACTIONS(698), - [anon_sym_BANG_LBRACK] = ACTIONS(700), - [anon_sym_LBRACK] = ACTIONS(702), - [anon_sym_LBRACE2] = ACTIONS(684), - [anon_sym_DOLLAR] = ACTIONS(704), - [anon_sym_TODO] = ACTIONS(706), - [anon_sym_WIP] = ACTIONS(706), - [anon_sym_NOTE] = ACTIONS(708), - [anon_sym_INFO] = ACTIONS(708), - [anon_sym_XXX] = ACTIONS(708), - [sym_fixme] = ACTIONS(682), - [anon_sym_PIPE] = ACTIONS(682), - [anon_sym_BQUOTE] = ACTIONS(41), - [sym__whitespace1] = ACTIONS(710), - [sym__newline] = ACTIONS(712), - [aux_sym__text_token1] = ACTIONS(714), - }, - [96] = { - [sym__element] = STATE(99), - [sym_emphasis] = STATE(182), - [sym_emphasis_begin] = STATE(103), - [sym_strong] = STATE(182), - [sym_strong_begin] = STATE(104), - [sym__hard_line_break] = STATE(182), - [sym_hard_line_break] = STATE(182), - [sym__smart_punctuation] = STATE(182), - [sym_autolink] = STATE(182), - [sym_highlighted] = STATE(182), - [sym_insert] = STATE(182), - [sym_delete] = STATE(182), - [sym_superscript] = STATE(182), - [sym_subscript] = STATE(182), - [sym_footnote_reference] = STATE(182), - [sym__image] = STATE(182), - [sym_full_reference_image] = STATE(182), - [sym_collapsed_reference_image] = STATE(182), - [sym_inline_image] = STATE(182), - [sym__image_description] = STATE(672), - [sym__link] = STATE(182), - [sym_full_reference_link] = STATE(182), - [sym_collapsed_reference_link] = STATE(182), - [sym_inline_link] = STATE(182), - [sym_link_text] = STATE(671), - [sym__comment_with_spaces] = STATE(182), - [sym_span] = STATE(182), - [sym_raw_inline] = STATE(182), - [sym_math] = STATE(182), - [sym_verbatim] = STATE(182), - [sym__todo_highlights] = STATE(182), - [sym_todo] = STATE(182), - [sym_note] = STATE(182), - [sym__symbol_fallback] = STATE(182), - [sym__verbatim_begin] = STATE(870), - [aux_sym__text] = STATE(150), - [aux_sym__inline_repeat1] = STATE(99), - [anon_sym_LBRACE_] = ACTIONS(1209), - [anon_sym__] = ACTIONS(1211), - [anon_sym_LBRACE_STAR] = ACTIONS(1213), - [anon_sym_STAR] = ACTIONS(1215), - [anon_sym_BSLASH] = ACTIONS(1217), - [sym_quotation_marks] = ACTIONS(1219), - [sym_ellipsis] = ACTIONS(1219), - [sym_em_dash] = ACTIONS(1219), - [sym_en_dash] = ACTIONS(1221), - [sym_backslash_escape] = ACTIONS(1221), - [anon_sym_LT] = ACTIONS(1223), - [anon_sym_LBRACE_EQ] = ACTIONS(1225), - [anon_sym_LBRACE_PLUS] = ACTIONS(1227), - [anon_sym_LBRACE_DASH] = ACTIONS(1229), - [sym_symbol] = ACTIONS(1219), - [anon_sym_LBRACE_CARET] = ACTIONS(1231), - [anon_sym_CARET] = ACTIONS(1231), - [anon_sym_LBRACE_TILDE] = ACTIONS(1233), - [anon_sym_TILDE] = ACTIONS(593), - [anon_sym_TILDE_RBRACE] = ACTIONS(595), - [anon_sym_LBRACK_CARET] = ACTIONS(1235), - [anon_sym_BANG_LBRACK] = ACTIONS(1237), - [anon_sym_LBRACK] = ACTIONS(1239), - [anon_sym_LBRACE2] = ACTIONS(1221), - [anon_sym_DOLLAR] = ACTIONS(1241), - [anon_sym_TODO] = ACTIONS(1243), - [anon_sym_WIP] = ACTIONS(1243), - [anon_sym_NOTE] = ACTIONS(1245), - [anon_sym_INFO] = ACTIONS(1245), - [anon_sym_XXX] = ACTIONS(1245), - [sym_fixme] = ACTIONS(1219), - [anon_sym_PIPE] = ACTIONS(1219), - [anon_sym_BQUOTE] = ACTIONS(41), - [sym__whitespace1] = ACTIONS(1247), - [sym__newline] = ACTIONS(1249), - [aux_sym__text_token1] = ACTIONS(1251), - }, - [97] = { - [sym__inline] = STATE(697), - [sym__element] = STATE(94), - [sym_emphasis] = STATE(201), - [sym_emphasis_begin] = STATE(116), - [sym_strong] = STATE(201), - [sym_strong_begin] = STATE(117), - [sym__hard_line_break] = STATE(201), - [sym_hard_line_break] = STATE(201), - [sym__smart_punctuation] = STATE(201), - [sym_autolink] = STATE(201), - [sym_highlighted] = STATE(201), - [sym_insert] = STATE(201), - [sym_delete] = STATE(201), - [sym_superscript] = STATE(201), - [sym_subscript] = STATE(201), - [sym_footnote_reference] = STATE(201), - [sym__image] = STATE(201), - [sym_full_reference_image] = STATE(201), - [sym_collapsed_reference_image] = STATE(201), - [sym_inline_image] = STATE(201), - [sym__image_description] = STATE(656), - [sym__link] = STATE(201), - [sym_full_reference_link] = STATE(201), - [sym_collapsed_reference_link] = STATE(201), - [sym_inline_link] = STATE(201), - [sym_link_text] = STATE(655), - [sym__comment_with_spaces] = STATE(201), - [sym_span] = STATE(201), - [sym_raw_inline] = STATE(201), - [sym_math] = STATE(201), - [sym_verbatim] = STATE(201), - [sym__todo_highlights] = STATE(201), - [sym_todo] = STATE(201), - [sym_note] = STATE(201), - [sym__symbol_fallback] = STATE(201), - [sym__verbatim_begin] = STATE(888), - [aux_sym__text] = STATE(153), - [aux_sym__inline_repeat1] = STATE(94), - [anon_sym_LBRACE_] = ACTIONS(916), - [anon_sym__] = ACTIONS(918), - [anon_sym_LBRACE_STAR] = ACTIONS(920), - [anon_sym_STAR] = ACTIONS(922), - [anon_sym_BSLASH] = ACTIONS(924), - [sym_quotation_marks] = ACTIONS(926), - [sym_ellipsis] = ACTIONS(926), - [sym_em_dash] = ACTIONS(926), - [sym_en_dash] = ACTIONS(928), - [sym_backslash_escape] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(930), - [anon_sym_LBRACE_EQ] = ACTIONS(932), - [anon_sym_LBRACE_PLUS] = ACTIONS(934), - [anon_sym_LBRACE_DASH] = ACTIONS(936), - [sym_symbol] = ACTIONS(926), - [anon_sym_LBRACE_CARET] = ACTIONS(938), - [anon_sym_CARET] = ACTIONS(938), - [anon_sym_LBRACE_TILDE] = ACTIONS(940), - [anon_sym_TILDE] = ACTIONS(940), - [anon_sym_LBRACK_CARET] = ACTIONS(942), - [anon_sym_BANG_LBRACK] = ACTIONS(944), - [anon_sym_LBRACK] = ACTIONS(946), - [anon_sym_LBRACE2] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(948), - [anon_sym_TODO] = ACTIONS(950), - [anon_sym_WIP] = ACTIONS(950), - [anon_sym_NOTE] = ACTIONS(952), - [anon_sym_INFO] = ACTIONS(952), - [anon_sym_XXX] = ACTIONS(952), - [sym_fixme] = ACTIONS(926), - [anon_sym_PIPE] = ACTIONS(926), - [anon_sym_BQUOTE] = ACTIONS(41), - [sym__whitespace1] = ACTIONS(954), - [sym__newline] = ACTIONS(956), - [aux_sym__text_token1] = ACTIONS(958), - }, - [98] = { - [sym__element] = STATE(90), - [sym_emphasis] = STATE(207), - [sym_emphasis_begin] = STATE(89), - [sym_strong] = STATE(207), - [sym_strong_begin] = STATE(72), - [sym__hard_line_break] = STATE(207), - [sym_hard_line_break] = STATE(207), - [sym__smart_punctuation] = STATE(207), - [sym_autolink] = STATE(207), - [sym_highlighted] = STATE(207), - [sym_insert] = STATE(207), - [sym_delete] = STATE(207), - [sym_superscript] = STATE(207), - [sym_subscript] = STATE(207), - [sym_footnote_reference] = STATE(207), - [sym__image] = STATE(207), - [sym_full_reference_image] = STATE(207), - [sym_collapsed_reference_image] = STATE(207), - [sym_inline_image] = STATE(207), - [sym__image_description] = STATE(666), - [sym__link] = STATE(207), - [sym_full_reference_link] = STATE(207), - [sym_collapsed_reference_link] = STATE(207), - [sym_inline_link] = STATE(207), - [sym_link_text] = STATE(667), - [sym__comment_with_spaces] = STATE(207), - [sym_span] = STATE(207), - [sym_raw_inline] = STATE(207), - [sym_math] = STATE(207), - [sym_verbatim] = STATE(207), - [sym__todo_highlights] = STATE(207), - [sym_todo] = STATE(207), - [sym_note] = STATE(207), - [sym__symbol_fallback] = STATE(207), - [sym__verbatim_begin] = STATE(852), - [aux_sym__text] = STATE(139), - [aux_sym__inline_repeat1] = STATE(90), - [anon_sym_LBRACE_] = ACTIONS(1253), - [anon_sym__] = ACTIONS(1255), - [anon_sym_LBRACE_STAR] = ACTIONS(1257), - [anon_sym_STAR] = ACTIONS(1259), - [anon_sym_BSLASH] = ACTIONS(1261), - [sym_quotation_marks] = ACTIONS(1263), - [sym_ellipsis] = ACTIONS(1263), - [sym_em_dash] = ACTIONS(1263), - [sym_en_dash] = ACTIONS(1265), - [sym_backslash_escape] = ACTIONS(1265), - [anon_sym_LT] = ACTIONS(1267), - [anon_sym_LBRACE_EQ] = ACTIONS(1269), - [anon_sym_LBRACE_PLUS] = ACTIONS(1271), - [anon_sym_LBRACE_DASH] = ACTIONS(1273), - [anon_sym_DASH_RBRACE] = ACTIONS(595), - [sym_symbol] = ACTIONS(1263), - [anon_sym_LBRACE_CARET] = ACTIONS(1275), - [anon_sym_CARET] = ACTIONS(1275), - [anon_sym_LBRACE_TILDE] = ACTIONS(1277), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_LBRACK_CARET] = ACTIONS(1279), - [anon_sym_BANG_LBRACK] = ACTIONS(1281), - [anon_sym_LBRACK] = ACTIONS(1283), - [anon_sym_LBRACE2] = ACTIONS(1265), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_TODO] = ACTIONS(1287), - [anon_sym_WIP] = ACTIONS(1287), - [anon_sym_NOTE] = ACTIONS(1289), - [anon_sym_INFO] = ACTIONS(1289), - [anon_sym_XXX] = ACTIONS(1289), - [sym_fixme] = ACTIONS(1263), - [anon_sym_PIPE] = ACTIONS(1263), - [anon_sym_BQUOTE] = ACTIONS(41), - [sym__whitespace1] = ACTIONS(1291), - [sym__newline] = ACTIONS(1293), - [aux_sym__text_token1] = ACTIONS(1295), - }, - [99] = { - [sym__element] = STATE(99), - [sym_emphasis] = STATE(182), - [sym_emphasis_begin] = STATE(103), - [sym_strong] = STATE(182), - [sym_strong_begin] = STATE(104), - [sym__hard_line_break] = STATE(182), - [sym_hard_line_break] = STATE(182), - [sym__smart_punctuation] = STATE(182), - [sym_autolink] = STATE(182), - [sym_highlighted] = STATE(182), - [sym_insert] = STATE(182), - [sym_delete] = STATE(182), - [sym_superscript] = STATE(182), - [sym_subscript] = STATE(182), - [sym_footnote_reference] = STATE(182), - [sym__image] = STATE(182), - [sym_full_reference_image] = STATE(182), - [sym_collapsed_reference_image] = STATE(182), - [sym_inline_image] = STATE(182), - [sym__image_description] = STATE(672), - [sym__link] = STATE(182), - [sym_full_reference_link] = STATE(182), - [sym_collapsed_reference_link] = STATE(182), - [sym_inline_link] = STATE(182), - [sym_link_text] = STATE(671), - [sym__comment_with_spaces] = STATE(182), - [sym_span] = STATE(182), - [sym_raw_inline] = STATE(182), - [sym_math] = STATE(182), - [sym_verbatim] = STATE(182), - [sym__todo_highlights] = STATE(182), - [sym_todo] = STATE(182), - [sym_note] = STATE(182), - [sym__symbol_fallback] = STATE(182), - [sym__verbatim_begin] = STATE(870), - [aux_sym__text] = STATE(150), - [aux_sym__inline_repeat1] = STATE(99), - [anon_sym_LBRACE_] = ACTIONS(1297), - [anon_sym__] = ACTIONS(1300), - [anon_sym_LBRACE_STAR] = ACTIONS(1303), - [anon_sym_STAR] = ACTIONS(1306), - [anon_sym_BSLASH] = ACTIONS(1309), - [sym_quotation_marks] = ACTIONS(1312), - [sym_ellipsis] = ACTIONS(1312), - [sym_em_dash] = ACTIONS(1312), - [sym_en_dash] = ACTIONS(1315), - [sym_backslash_escape] = ACTIONS(1315), - [anon_sym_LT] = ACTIONS(1318), - [anon_sym_LBRACE_EQ] = ACTIONS(1321), - [anon_sym_LBRACE_PLUS] = ACTIONS(1324), - [anon_sym_LBRACE_DASH] = ACTIONS(1327), - [sym_symbol] = ACTIONS(1312), - [anon_sym_LBRACE_CARET] = ACTIONS(1330), - [anon_sym_CARET] = ACTIONS(1330), - [anon_sym_LBRACE_TILDE] = ACTIONS(1333), - [anon_sym_TILDE] = ACTIONS(1336), - [anon_sym_TILDE_RBRACE] = ACTIONS(613), - [anon_sym_LBRACK_CARET] = ACTIONS(1339), - [anon_sym_BANG_LBRACK] = ACTIONS(1342), - [anon_sym_LBRACK] = ACTIONS(1345), - [anon_sym_LBRACE2] = ACTIONS(1315), - [anon_sym_DOLLAR] = ACTIONS(1348), - [anon_sym_TODO] = ACTIONS(1351), - [anon_sym_WIP] = ACTIONS(1351), - [anon_sym_NOTE] = ACTIONS(1354), - [anon_sym_INFO] = ACTIONS(1354), - [anon_sym_XXX] = ACTIONS(1354), - [sym_fixme] = ACTIONS(1312), - [anon_sym_PIPE] = ACTIONS(1312), - [anon_sym_BQUOTE] = ACTIONS(660), - [sym__whitespace1] = ACTIONS(1357), - [sym__newline] = ACTIONS(1360), - [aux_sym__text_token1] = ACTIONS(1363), + [aux_sym__text] = STATE(155), + [aux_sym__inline_repeat1] = STATE(87), + [anon_sym_LBRACE_] = ACTIONS(915), + [anon_sym__] = ACTIONS(917), + [anon_sym_LBRACE_STAR] = ACTIONS(919), + [anon_sym_STAR] = ACTIONS(921), + [anon_sym_BSLASH] = ACTIONS(923), + [sym_quotation_marks] = ACTIONS(925), + [sym_ellipsis] = ACTIONS(925), + [sym_em_dash] = ACTIONS(925), + [sym_en_dash] = ACTIONS(927), + [sym_backslash_escape] = ACTIONS(927), + [anon_sym_LT] = ACTIONS(929), + [anon_sym_LBRACE_EQ] = ACTIONS(931), + [anon_sym_LBRACE_PLUS] = ACTIONS(933), + [anon_sym_LBRACE_DASH] = ACTIONS(935), + [sym_symbol] = ACTIONS(925), + [anon_sym_LBRACE_CARET] = ACTIONS(937), + [anon_sym_CARET] = ACTIONS(937), + [anon_sym_LBRACE_TILDE] = ACTIONS(939), + [anon_sym_TILDE] = ACTIONS(939), + [anon_sym_LBRACK_CARET] = ACTIONS(941), + [anon_sym_BANG_LBRACK] = ACTIONS(943), + [anon_sym_LBRACK] = ACTIONS(945), + [anon_sym_LBRACE2] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(947), + [anon_sym_TODO] = ACTIONS(949), + [anon_sym_WIP] = ACTIONS(949), + [anon_sym_NOTE] = ACTIONS(951), + [anon_sym_INFO] = ACTIONS(951), + [anon_sym_XXX] = ACTIONS(951), + [sym_fixme] = ACTIONS(925), + [anon_sym_PIPE] = ACTIONS(925), + [sym__whitespace1] = ACTIONS(953), + [sym__newline] = ACTIONS(955), + [aux_sym__text_token1] = ACTIONS(957), + [sym__verbatim_begin] = ACTIONS(959), }, - [100] = { - [sym__inline] = STATE(698), + [95] = { + [sym__inline] = STATE(675), [sym__element] = STATE(73), + [sym_emphasis] = STATE(179), + [sym_emphasis_begin] = STATE(111), + [sym_strong] = STATE(179), + [sym_strong_begin] = STATE(112), + [sym__hard_line_break] = STATE(179), + [sym_hard_line_break] = STATE(179), + [sym__smart_punctuation] = STATE(179), + [sym_autolink] = STATE(179), + [sym_highlighted] = STATE(179), + [sym_insert] = STATE(179), + [sym_delete] = STATE(179), + [sym_superscript] = STATE(179), + [sym_subscript] = STATE(179), + [sym_footnote_reference] = STATE(179), + [sym__image] = STATE(179), + [sym_full_reference_image] = STATE(179), + [sym_collapsed_reference_image] = STATE(179), + [sym_inline_image] = STATE(179), + [sym__image_description] = STATE(625), + [sym__link] = STATE(179), + [sym_full_reference_link] = STATE(179), + [sym_collapsed_reference_link] = STATE(179), + [sym_inline_link] = STATE(179), + [sym_link_text] = STATE(647), + [sym__comment_with_spaces] = STATE(179), + [sym_span] = STATE(179), + [sym_raw_inline] = STATE(179), + [sym_math] = STATE(179), + [sym_verbatim] = STATE(179), + [sym__todo_highlights] = STATE(179), + [sym_todo] = STATE(179), + [sym_note] = STATE(179), + [sym__symbol_fallback] = STATE(179), + [aux_sym__text] = STATE(171), + [aux_sym__inline_repeat1] = STATE(73), + [anon_sym_LBRACE_] = ACTIONS(610), + [anon_sym__] = ACTIONS(612), + [anon_sym_LBRACE_STAR] = ACTIONS(614), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_BSLASH] = ACTIONS(620), + [sym_quotation_marks] = ACTIONS(622), + [sym_ellipsis] = ACTIONS(622), + [sym_em_dash] = ACTIONS(622), + [sym_en_dash] = ACTIONS(624), + [sym_backslash_escape] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_LBRACE_EQ] = ACTIONS(628), + [anon_sym_LBRACE_PLUS] = ACTIONS(630), + [anon_sym_LBRACE_DASH] = ACTIONS(632), + [sym_symbol] = ACTIONS(622), + [anon_sym_LBRACE_CARET] = ACTIONS(634), + [anon_sym_CARET] = ACTIONS(634), + [anon_sym_LBRACE_TILDE] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(636), + [anon_sym_LBRACK_CARET] = ACTIONS(638), + [anon_sym_BANG_LBRACK] = ACTIONS(640), + [anon_sym_LBRACK] = ACTIONS(642), + [anon_sym_LBRACE2] = ACTIONS(624), + [anon_sym_DOLLAR] = ACTIONS(644), + [anon_sym_TODO] = ACTIONS(646), + [anon_sym_WIP] = ACTIONS(646), + [anon_sym_NOTE] = ACTIONS(648), + [anon_sym_INFO] = ACTIONS(648), + [anon_sym_XXX] = ACTIONS(648), + [sym_fixme] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [sym__whitespace1] = ACTIONS(963), + [sym__newline] = ACTIONS(965), + [aux_sym__text_token1] = ACTIONS(654), + [sym__verbatim_begin] = ACTIONS(656), + }, + [96] = { + [sym__inline] = STATE(787), + [sym__element] = STATE(79), [sym_emphasis] = STATE(178), - [sym_emphasis_begin] = STATE(119), + [sym_emphasis_begin] = STATE(115), [sym_strong] = STATE(178), - [sym_strong_begin] = STATE(121), + [sym_strong_begin] = STATE(117), [sym__hard_line_break] = STATE(178), [sym_hard_line_break] = STATE(178), [sym__smart_punctuation] = STATE(178), @@ -15855,12 +15286,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_full_reference_image] = STATE(178), [sym_collapsed_reference_image] = STATE(178), [sym_inline_image] = STATE(178), - [sym__image_description] = STATE(651), + [sym__image_description] = STATE(640), [sym__link] = STATE(178), [sym_full_reference_link] = STATE(178), [sym_collapsed_reference_link] = STATE(178), [sym_inline_link] = STATE(178), - [sym_link_text] = STATE(650), + [sym_link_text] = STATE(636), [sym__comment_with_spaces] = STATE(178), [sym_span] = STATE(178), [sym_raw_inline] = STATE(178), @@ -15870,127 +15301,347 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(178), [sym_note] = STATE(178), [sym__symbol_fallback] = STATE(178), - [sym__verbatim_begin] = STATE(897), - [aux_sym__text] = STATE(167), + [aux_sym__text] = STATE(146), + [aux_sym__inline_repeat1] = STATE(79), + [anon_sym_LBRACE_] = ACTIONS(564), + [anon_sym__] = ACTIONS(566), + [anon_sym_LBRACE_STAR] = ACTIONS(568), + [anon_sym_STAR] = ACTIONS(570), + [anon_sym_BSLASH] = ACTIONS(572), + [sym_quotation_marks] = ACTIONS(574), + [sym_ellipsis] = ACTIONS(574), + [sym_em_dash] = ACTIONS(574), + [sym_en_dash] = ACTIONS(576), + [sym_backslash_escape] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(578), + [anon_sym_LBRACE_EQ] = ACTIONS(580), + [anon_sym_LBRACE_PLUS] = ACTIONS(582), + [anon_sym_LBRACE_DASH] = ACTIONS(584), + [sym_symbol] = ACTIONS(574), + [anon_sym_LBRACE_CARET] = ACTIONS(586), + [anon_sym_CARET] = ACTIONS(586), + [anon_sym_LBRACE_TILDE] = ACTIONS(588), + [anon_sym_TILDE] = ACTIONS(588), + [anon_sym_LBRACK_CARET] = ACTIONS(590), + [anon_sym_BANG_LBRACK] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_LBRACE2] = ACTIONS(576), + [anon_sym_DOLLAR] = ACTIONS(596), + [anon_sym_TODO] = ACTIONS(598), + [anon_sym_WIP] = ACTIONS(598), + [anon_sym_NOTE] = ACTIONS(600), + [anon_sym_INFO] = ACTIONS(600), + [anon_sym_XXX] = ACTIONS(600), + [sym_fixme] = ACTIONS(574), + [anon_sym_PIPE] = ACTIONS(574), + [sym__whitespace1] = ACTIONS(602), + [sym__newline] = ACTIONS(604), + [aux_sym__text_token1] = ACTIONS(606), + [sym__verbatim_begin] = ACTIONS(608), + }, + [97] = { + [sym__inline] = STATE(681), + [sym__element] = STATE(87), + [sym_emphasis] = STATE(189), + [sym_emphasis_begin] = STATE(108), + [sym_strong] = STATE(189), + [sym_strong_begin] = STATE(109), + [sym__hard_line_break] = STATE(189), + [sym_hard_line_break] = STATE(189), + [sym__smart_punctuation] = STATE(189), + [sym_autolink] = STATE(189), + [sym_highlighted] = STATE(189), + [sym_insert] = STATE(189), + [sym_delete] = STATE(189), + [sym_superscript] = STATE(189), + [sym_subscript] = STATE(189), + [sym_footnote_reference] = STATE(189), + [sym__image] = STATE(189), + [sym_full_reference_image] = STATE(189), + [sym_collapsed_reference_image] = STATE(189), + [sym_inline_image] = STATE(189), + [sym__image_description] = STATE(655), + [sym__link] = STATE(189), + [sym_full_reference_link] = STATE(189), + [sym_collapsed_reference_link] = STATE(189), + [sym_inline_link] = STATE(189), + [sym_link_text] = STATE(626), + [sym__comment_with_spaces] = STATE(189), + [sym_span] = STATE(189), + [sym_raw_inline] = STATE(189), + [sym_math] = STATE(189), + [sym_verbatim] = STATE(189), + [sym__todo_highlights] = STATE(189), + [sym_todo] = STATE(189), + [sym_note] = STATE(189), + [sym__symbol_fallback] = STATE(189), + [aux_sym__text] = STATE(155), + [aux_sym__inline_repeat1] = STATE(87), + [anon_sym_LBRACE_] = ACTIONS(915), + [anon_sym__] = ACTIONS(917), + [anon_sym_LBRACE_STAR] = ACTIONS(919), + [anon_sym_STAR] = ACTIONS(921), + [anon_sym_BSLASH] = ACTIONS(923), + [sym_quotation_marks] = ACTIONS(925), + [sym_ellipsis] = ACTIONS(925), + [sym_em_dash] = ACTIONS(925), + [sym_en_dash] = ACTIONS(927), + [sym_backslash_escape] = ACTIONS(927), + [anon_sym_LT] = ACTIONS(929), + [anon_sym_LBRACE_EQ] = ACTIONS(931), + [anon_sym_LBRACE_PLUS] = ACTIONS(933), + [anon_sym_LBRACE_DASH] = ACTIONS(935), + [sym_symbol] = ACTIONS(925), + [anon_sym_LBRACE_CARET] = ACTIONS(937), + [anon_sym_CARET] = ACTIONS(937), + [anon_sym_LBRACE_TILDE] = ACTIONS(939), + [anon_sym_TILDE] = ACTIONS(939), + [anon_sym_LBRACK_CARET] = ACTIONS(941), + [anon_sym_BANG_LBRACK] = ACTIONS(943), + [anon_sym_LBRACK] = ACTIONS(945), + [anon_sym_LBRACE2] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(947), + [anon_sym_TODO] = ACTIONS(949), + [anon_sym_WIP] = ACTIONS(949), + [anon_sym_NOTE] = ACTIONS(951), + [anon_sym_INFO] = ACTIONS(951), + [anon_sym_XXX] = ACTIONS(951), + [sym_fixme] = ACTIONS(925), + [anon_sym_PIPE] = ACTIONS(925), + [sym__whitespace1] = ACTIONS(953), + [sym__newline] = ACTIONS(955), + [aux_sym__text_token1] = ACTIONS(957), + [sym__verbatim_begin] = ACTIONS(959), + }, + [98] = { + [sym__element] = STATE(98), + [sym_emphasis] = STATE(197), + [sym_emphasis_begin] = STATE(81), + [sym_strong] = STATE(197), + [sym_strong_begin] = STATE(82), + [sym__hard_line_break] = STATE(197), + [sym_hard_line_break] = STATE(197), + [sym__smart_punctuation] = STATE(197), + [sym_autolink] = STATE(197), + [sym_highlighted] = STATE(197), + [sym_insert] = STATE(197), + [sym_delete] = STATE(197), + [sym_superscript] = STATE(197), + [sym_subscript] = STATE(197), + [sym_footnote_reference] = STATE(197), + [sym__image] = STATE(197), + [sym_full_reference_image] = STATE(197), + [sym_collapsed_reference_image] = STATE(197), + [sym_inline_image] = STATE(197), + [sym__image_description] = STATE(654), + [sym__link] = STATE(197), + [sym_full_reference_link] = STATE(197), + [sym_collapsed_reference_link] = STATE(197), + [sym_inline_link] = STATE(197), + [sym_link_text] = STATE(651), + [sym__comment_with_spaces] = STATE(197), + [sym_span] = STATE(197), + [sym_raw_inline] = STATE(197), + [sym_math] = STATE(197), + [sym_verbatim] = STATE(197), + [sym__todo_highlights] = STATE(197), + [sym_todo] = STATE(197), + [sym_note] = STATE(197), + [sym__symbol_fallback] = STATE(197), + [aux_sym__text] = STATE(132), + [aux_sym__inline_repeat1] = STATE(98), + [anon_sym_LBRACE_] = ACTIONS(1158), + [anon_sym__] = ACTIONS(1161), + [anon_sym_LBRACE_STAR] = ACTIONS(1164), + [anon_sym_STAR] = ACTIONS(1167), + [anon_sym_BSLASH] = ACTIONS(1170), + [sym_quotation_marks] = ACTIONS(1173), + [sym_ellipsis] = ACTIONS(1173), + [sym_em_dash] = ACTIONS(1173), + [sym_en_dash] = ACTIONS(1176), + [sym_backslash_escape] = ACTIONS(1176), + [anon_sym_LT] = ACTIONS(1179), + [anon_sym_LBRACE_EQ] = ACTIONS(1182), + [anon_sym_EQ_RBRACE] = ACTIONS(670), + [anon_sym_LBRACE_PLUS] = ACTIONS(1185), + [anon_sym_LBRACE_DASH] = ACTIONS(1188), + [sym_symbol] = ACTIONS(1173), + [anon_sym_LBRACE_CARET] = ACTIONS(1191), + [anon_sym_CARET] = ACTIONS(1191), + [anon_sym_LBRACE_TILDE] = ACTIONS(1194), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_LBRACK_CARET] = ACTIONS(1197), + [anon_sym_BANG_LBRACK] = ACTIONS(1200), + [anon_sym_LBRACK] = ACTIONS(1203), + [anon_sym_LBRACE2] = ACTIONS(1176), + [anon_sym_DOLLAR] = ACTIONS(1206), + [anon_sym_TODO] = ACTIONS(1209), + [anon_sym_WIP] = ACTIONS(1209), + [anon_sym_NOTE] = ACTIONS(1212), + [anon_sym_INFO] = ACTIONS(1212), + [anon_sym_XXX] = ACTIONS(1212), + [sym_fixme] = ACTIONS(1173), + [anon_sym_PIPE] = ACTIONS(1173), + [sym__whitespace1] = ACTIONS(1215), + [sym__newline] = ACTIONS(1218), + [aux_sym__text_token1] = ACTIONS(1221), + [sym__verbatim_begin] = ACTIONS(1224), + }, + [99] = { + [sym__inline] = STATE(669), + [sym__element] = STATE(73), + [sym_emphasis] = STATE(179), + [sym_emphasis_begin] = STATE(111), + [sym_strong] = STATE(179), + [sym_strong_begin] = STATE(112), + [sym__hard_line_break] = STATE(179), + [sym_hard_line_break] = STATE(179), + [sym__smart_punctuation] = STATE(179), + [sym_autolink] = STATE(179), + [sym_highlighted] = STATE(179), + [sym_insert] = STATE(179), + [sym_delete] = STATE(179), + [sym_superscript] = STATE(179), + [sym_subscript] = STATE(179), + [sym_footnote_reference] = STATE(179), + [sym__image] = STATE(179), + [sym_full_reference_image] = STATE(179), + [sym_collapsed_reference_image] = STATE(179), + [sym_inline_image] = STATE(179), + [sym__image_description] = STATE(625), + [sym__link] = STATE(179), + [sym_full_reference_link] = STATE(179), + [sym_collapsed_reference_link] = STATE(179), + [sym_inline_link] = STATE(179), + [sym_link_text] = STATE(647), + [sym__comment_with_spaces] = STATE(179), + [sym_span] = STATE(179), + [sym_raw_inline] = STATE(179), + [sym_math] = STATE(179), + [sym_verbatim] = STATE(179), + [sym__todo_highlights] = STATE(179), + [sym_todo] = STATE(179), + [sym_note] = STATE(179), + [sym__symbol_fallback] = STATE(179), + [aux_sym__text] = STATE(171), [aux_sym__inline_repeat1] = STATE(73), - [anon_sym_LBRACE_] = ACTIONS(549), - [anon_sym__] = ACTIONS(551), - [anon_sym_LBRACE_STAR] = ACTIONS(553), - [anon_sym_STAR] = ACTIONS(555), - [anon_sym_BSLASH] = ACTIONS(557), - [sym_quotation_marks] = ACTIONS(559), - [sym_ellipsis] = ACTIONS(559), - [sym_em_dash] = ACTIONS(559), - [sym_en_dash] = ACTIONS(561), - [sym_backslash_escape] = ACTIONS(561), - [anon_sym_LT] = ACTIONS(563), - [anon_sym_LBRACE_EQ] = ACTIONS(565), - [anon_sym_LBRACE_PLUS] = ACTIONS(567), - [anon_sym_LBRACE_DASH] = ACTIONS(569), - [sym_symbol] = ACTIONS(559), - [anon_sym_LBRACE_CARET] = ACTIONS(571), - [anon_sym_CARET] = ACTIONS(571), - [anon_sym_LBRACE_TILDE] = ACTIONS(573), - [anon_sym_TILDE] = ACTIONS(573), - [anon_sym_LBRACK_CARET] = ACTIONS(575), - [anon_sym_BANG_LBRACK] = ACTIONS(577), - [anon_sym_LBRACK] = ACTIONS(579), - [anon_sym_LBRACE2] = ACTIONS(561), - [anon_sym_DOLLAR] = ACTIONS(581), - [anon_sym_TODO] = ACTIONS(583), - [anon_sym_WIP] = ACTIONS(583), - [anon_sym_NOTE] = ACTIONS(585), - [anon_sym_INFO] = ACTIONS(585), - [anon_sym_XXX] = ACTIONS(585), - [sym_fixme] = ACTIONS(559), - [anon_sym_PIPE] = ACTIONS(559), - [anon_sym_BQUOTE] = ACTIONS(41), - [sym__whitespace1] = ACTIONS(587), - [sym__newline] = ACTIONS(589), - [aux_sym__text_token1] = ACTIONS(591), + [anon_sym_LBRACE_] = ACTIONS(610), + [anon_sym__] = ACTIONS(612), + [anon_sym_LBRACE_STAR] = ACTIONS(614), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_BSLASH] = ACTIONS(620), + [sym_quotation_marks] = ACTIONS(622), + [sym_ellipsis] = ACTIONS(622), + [sym_em_dash] = ACTIONS(622), + [sym_en_dash] = ACTIONS(624), + [sym_backslash_escape] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_LBRACE_EQ] = ACTIONS(628), + [anon_sym_LBRACE_PLUS] = ACTIONS(630), + [anon_sym_LBRACE_DASH] = ACTIONS(632), + [sym_symbol] = ACTIONS(622), + [anon_sym_LBRACE_CARET] = ACTIONS(634), + [anon_sym_CARET] = ACTIONS(634), + [anon_sym_LBRACE_TILDE] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(636), + [anon_sym_LBRACK_CARET] = ACTIONS(638), + [anon_sym_BANG_LBRACK] = ACTIONS(640), + [anon_sym_LBRACK] = ACTIONS(642), + [anon_sym_LBRACE2] = ACTIONS(624), + [anon_sym_DOLLAR] = ACTIONS(644), + [anon_sym_TODO] = ACTIONS(646), + [anon_sym_WIP] = ACTIONS(646), + [anon_sym_NOTE] = ACTIONS(648), + [anon_sym_INFO] = ACTIONS(648), + [anon_sym_XXX] = ACTIONS(648), + [sym_fixme] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [sym__whitespace1] = ACTIONS(963), + [sym__newline] = ACTIONS(965), + [aux_sym__text_token1] = ACTIONS(654), + [sym__verbatim_begin] = ACTIONS(656), }, - [101] = { - [sym__element] = STATE(81), - [sym_emphasis] = STATE(173), - [sym_emphasis_begin] = STATE(87), - [sym_strong] = STATE(173), - [sym_strong_begin] = STATE(76), - [sym__hard_line_break] = STATE(173), - [sym_hard_line_break] = STATE(173), - [sym__smart_punctuation] = STATE(173), - [sym_autolink] = STATE(173), - [sym_highlighted] = STATE(173), - [sym_insert] = STATE(173), - [sym_delete] = STATE(173), - [sym_superscript] = STATE(173), - [sym_subscript] = STATE(173), - [sym_footnote_reference] = STATE(173), - [sym__image] = STATE(173), - [sym_full_reference_image] = STATE(173), - [sym_collapsed_reference_image] = STATE(173), - [sym_inline_image] = STATE(173), - [sym__image_description] = STATE(647), - [sym__link] = STATE(173), - [sym_full_reference_link] = STATE(173), - [sym_collapsed_reference_link] = STATE(173), - [sym_inline_link] = STATE(173), + [100] = { + [sym__element] = STATE(76), + [sym_emphasis] = STATE(198), + [sym_emphasis_begin] = STATE(106), + [sym_strong] = STATE(198), + [sym_strong_begin] = STATE(105), + [sym__hard_line_break] = STATE(198), + [sym_hard_line_break] = STATE(198), + [sym__smart_punctuation] = STATE(198), + [sym_autolink] = STATE(198), + [sym_highlighted] = STATE(198), + [sym_insert] = STATE(198), + [sym_delete] = STATE(198), + [sym_superscript] = STATE(198), + [sym_subscript] = STATE(198), + [sym_footnote_reference] = STATE(198), + [sym__image] = STATE(198), + [sym_full_reference_image] = STATE(198), + [sym_collapsed_reference_image] = STATE(198), + [sym_inline_image] = STATE(198), + [sym__image_description] = STATE(634), + [sym__link] = STATE(198), + [sym_full_reference_link] = STATE(198), + [sym_collapsed_reference_link] = STATE(198), + [sym_inline_link] = STATE(198), [sym_link_text] = STATE(648), - [sym__comment_with_spaces] = STATE(173), - [sym_span] = STATE(173), - [sym_raw_inline] = STATE(173), - [sym_math] = STATE(173), - [sym_verbatim] = STATE(173), - [sym__todo_highlights] = STATE(173), - [sym_todo] = STATE(173), - [sym_note] = STATE(173), - [sym__symbol_fallback] = STATE(173), - [sym__verbatim_begin] = STATE(843), - [aux_sym__text] = STATE(155), - [aux_sym__inline_repeat1] = STATE(81), - [anon_sym_LBRACE_] = ACTIONS(1366), - [anon_sym__] = ACTIONS(1368), - [anon_sym_LBRACE_STAR] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_BSLASH] = ACTIONS(1374), - [sym_quotation_marks] = ACTIONS(1376), - [sym_ellipsis] = ACTIONS(1376), - [sym_em_dash] = ACTIONS(1376), - [sym_en_dash] = ACTIONS(1378), - [sym_backslash_escape] = ACTIONS(1378), - [anon_sym_LT] = ACTIONS(1380), - [anon_sym_LBRACE_EQ] = ACTIONS(1382), - [anon_sym_LBRACE_PLUS] = ACTIONS(1384), - [anon_sym_PLUS_RBRACE] = ACTIONS(595), - [anon_sym_LBRACE_DASH] = ACTIONS(1386), - [sym_symbol] = ACTIONS(1376), - [anon_sym_LBRACE_CARET] = ACTIONS(1388), - [anon_sym_CARET] = ACTIONS(1388), - [anon_sym_LBRACE_TILDE] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1390), - [anon_sym_LBRACK_CARET] = ACTIONS(1392), - [anon_sym_BANG_LBRACK] = ACTIONS(1394), - [anon_sym_LBRACK] = ACTIONS(1396), - [anon_sym_LBRACE2] = ACTIONS(1378), - [anon_sym_DOLLAR] = ACTIONS(1398), - [anon_sym_TODO] = ACTIONS(1400), - [anon_sym_WIP] = ACTIONS(1400), - [anon_sym_NOTE] = ACTIONS(1402), - [anon_sym_INFO] = ACTIONS(1402), - [anon_sym_XXX] = ACTIONS(1402), - [sym_fixme] = ACTIONS(1376), - [anon_sym_PIPE] = ACTIONS(1376), - [anon_sym_BQUOTE] = ACTIONS(41), - [sym__whitespace1] = ACTIONS(1404), - [sym__newline] = ACTIONS(1406), - [aux_sym__text_token1] = ACTIONS(1408), + [sym__comment_with_spaces] = STATE(198), + [sym_span] = STATE(198), + [sym_raw_inline] = STATE(198), + [sym_math] = STATE(198), + [sym_verbatim] = STATE(198), + [sym__todo_highlights] = STATE(198), + [sym_todo] = STATE(198), + [sym_note] = STATE(198), + [sym__symbol_fallback] = STATE(198), + [aux_sym__text] = STATE(134), + [aux_sym__inline_repeat1] = STATE(76), + [ts_builtin_sym_end] = ACTIONS(618), + [anon_sym_LBRACE_] = ACTIONS(3), + [anon_sym__] = ACTIONS(5), + [anon_sym_LBRACE_STAR] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(9), + [anon_sym_BSLASH] = ACTIONS(11), + [sym_quotation_marks] = ACTIONS(13), + [sym_ellipsis] = ACTIONS(13), + [sym_em_dash] = ACTIONS(13), + [sym_en_dash] = ACTIONS(15), + [sym_backslash_escape] = ACTIONS(15), + [anon_sym_LT] = ACTIONS(17), + [anon_sym_LBRACE_EQ] = ACTIONS(19), + [anon_sym_LBRACE_PLUS] = ACTIONS(21), + [anon_sym_LBRACE_DASH] = ACTIONS(23), + [sym_symbol] = ACTIONS(13), + [anon_sym_LBRACE_CARET] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_LBRACE_TILDE] = ACTIONS(27), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_LBRACK_CARET] = ACTIONS(29), + [anon_sym_BANG_LBRACK] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACE2] = ACTIONS(15), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_TODO] = ACTIONS(37), + [anon_sym_WIP] = ACTIONS(37), + [anon_sym_NOTE] = ACTIONS(39), + [anon_sym_INFO] = ACTIONS(39), + [anon_sym_XXX] = ACTIONS(39), + [sym_fixme] = ACTIONS(13), + [anon_sym_PIPE] = ACTIONS(13), + [sym__whitespace1] = ACTIONS(41), + [sym__newline] = ACTIONS(1227), + [aux_sym__text_token1] = ACTIONS(45), + [sym__verbatim_begin] = ACTIONS(47), }, - [102] = { - [sym__inline] = STATE(865), - [sym__element] = STATE(79), + [101] = { + [sym__inline] = STATE(664), + [sym__element] = STATE(87), [sym_emphasis] = STATE(189), - [sym_emphasis_begin] = STATE(92), + [sym_emphasis_begin] = STATE(108), [sym_strong] = STATE(189), - [sym_strong_begin] = STATE(93), + [sym_strong_begin] = STATE(109), [sym__hard_line_break] = STATE(189), [sym_hard_line_break] = STATE(189), [sym__smart_punctuation] = STATE(189), @@ -16005,12 +15656,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_full_reference_image] = STATE(189), [sym_collapsed_reference_image] = STATE(189), [sym_inline_image] = STATE(189), - [sym__image_description] = STATE(660), + [sym__image_description] = STATE(655), [sym__link] = STATE(189), [sym_full_reference_link] = STATE(189), [sym_collapsed_reference_link] = STATE(189), [sym_inline_link] = STATE(189), - [sym_link_text] = STATE(646), + [sym_link_text] = STATE(626), [sym__comment_with_spaces] = STATE(189), [sym_span] = STATE(189), [sym_raw_inline] = STATE(189), @@ -16020,277 +15671,347 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(189), [sym_note] = STATE(189), [sym__symbol_fallback] = STATE(189), - [sym__verbatim_begin] = STATE(906), - [aux_sym__text] = STATE(123), - [aux_sym__inline_repeat1] = STATE(79), - [anon_sym_LBRACE_] = ACTIONS(672), - [anon_sym__] = ACTIONS(674), - [anon_sym_LBRACE_STAR] = ACTIONS(676), - [anon_sym_STAR] = ACTIONS(678), - [anon_sym_BSLASH] = ACTIONS(680), - [sym_quotation_marks] = ACTIONS(682), - [sym_ellipsis] = ACTIONS(682), - [sym_em_dash] = ACTIONS(682), - [sym_en_dash] = ACTIONS(684), - [sym_backslash_escape] = ACTIONS(684), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_LBRACE_EQ] = ACTIONS(688), - [anon_sym_LBRACE_PLUS] = ACTIONS(690), - [anon_sym_LBRACE_DASH] = ACTIONS(692), - [sym_symbol] = ACTIONS(682), - [anon_sym_LBRACE_CARET] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym_LBRACE_TILDE] = ACTIONS(696), - [anon_sym_TILDE] = ACTIONS(696), - [anon_sym_LBRACK_CARET] = ACTIONS(698), - [anon_sym_BANG_LBRACK] = ACTIONS(700), - [anon_sym_LBRACK] = ACTIONS(702), - [anon_sym_LBRACE2] = ACTIONS(684), - [anon_sym_DOLLAR] = ACTIONS(704), - [anon_sym_TODO] = ACTIONS(706), - [anon_sym_WIP] = ACTIONS(706), - [anon_sym_NOTE] = ACTIONS(708), - [anon_sym_INFO] = ACTIONS(708), - [anon_sym_XXX] = ACTIONS(708), - [sym_fixme] = ACTIONS(682), - [anon_sym_PIPE] = ACTIONS(682), - [anon_sym_BQUOTE] = ACTIONS(41), - [sym__whitespace1] = ACTIONS(710), - [sym__newline] = ACTIONS(712), - [aux_sym__text_token1] = ACTIONS(714), + [aux_sym__text] = STATE(155), + [aux_sym__inline_repeat1] = STATE(87), + [anon_sym_LBRACE_] = ACTIONS(915), + [anon_sym__] = ACTIONS(917), + [anon_sym_LBRACE_STAR] = ACTIONS(919), + [anon_sym_STAR] = ACTIONS(921), + [anon_sym_BSLASH] = ACTIONS(923), + [sym_quotation_marks] = ACTIONS(925), + [sym_ellipsis] = ACTIONS(925), + [sym_em_dash] = ACTIONS(925), + [sym_en_dash] = ACTIONS(927), + [sym_backslash_escape] = ACTIONS(927), + [anon_sym_LT] = ACTIONS(929), + [anon_sym_LBRACE_EQ] = ACTIONS(931), + [anon_sym_LBRACE_PLUS] = ACTIONS(933), + [anon_sym_LBRACE_DASH] = ACTIONS(935), + [sym_symbol] = ACTIONS(925), + [anon_sym_LBRACE_CARET] = ACTIONS(937), + [anon_sym_CARET] = ACTIONS(937), + [anon_sym_LBRACE_TILDE] = ACTIONS(939), + [anon_sym_TILDE] = ACTIONS(939), + [anon_sym_LBRACK_CARET] = ACTIONS(941), + [anon_sym_BANG_LBRACK] = ACTIONS(943), + [anon_sym_LBRACK] = ACTIONS(945), + [anon_sym_LBRACE2] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(947), + [anon_sym_TODO] = ACTIONS(949), + [anon_sym_WIP] = ACTIONS(949), + [anon_sym_NOTE] = ACTIONS(951), + [anon_sym_INFO] = ACTIONS(951), + [anon_sym_XXX] = ACTIONS(951), + [sym_fixme] = ACTIONS(925), + [anon_sym_PIPE] = ACTIONS(925), + [sym__whitespace1] = ACTIONS(953), + [sym__newline] = ACTIONS(955), + [aux_sym__text_token1] = ACTIONS(957), + [sym__verbatim_begin] = ACTIONS(959), + }, + [102] = { + [sym__element] = STATE(102), + [sym_emphasis] = STATE(200), + [sym_emphasis_begin] = STATE(101), + [sym_strong] = STATE(200), + [sym_strong_begin] = STATE(104), + [sym__hard_line_break] = STATE(200), + [sym_hard_line_break] = STATE(200), + [sym__smart_punctuation] = STATE(200), + [sym_autolink] = STATE(200), + [sym_highlighted] = STATE(200), + [sym_insert] = STATE(200), + [sym_delete] = STATE(200), + [sym_superscript] = STATE(200), + [sym_subscript] = STATE(200), + [sym_footnote_reference] = STATE(200), + [sym__image] = STATE(200), + [sym_full_reference_image] = STATE(200), + [sym_collapsed_reference_image] = STATE(200), + [sym_inline_image] = STATE(200), + [sym__image_description] = STATE(642), + [sym__link] = STATE(200), + [sym_full_reference_link] = STATE(200), + [sym_collapsed_reference_link] = STATE(200), + [sym_inline_link] = STATE(200), + [sym_link_text] = STATE(643), + [sym__comment_with_spaces] = STATE(200), + [sym_span] = STATE(200), + [sym_raw_inline] = STATE(200), + [sym_math] = STATE(200), + [sym_verbatim] = STATE(200), + [sym__todo_highlights] = STATE(200), + [sym_todo] = STATE(200), + [sym_note] = STATE(200), + [sym__symbol_fallback] = STATE(200), + [aux_sym__text] = STATE(138), + [aux_sym__inline_repeat1] = STATE(102), + [anon_sym_LBRACE_] = ACTIONS(1229), + [anon_sym__] = ACTIONS(1232), + [anon_sym_LBRACE_STAR] = ACTIONS(1235), + [anon_sym_STAR] = ACTIONS(1238), + [anon_sym_BSLASH] = ACTIONS(1241), + [sym_quotation_marks] = ACTIONS(1244), + [sym_ellipsis] = ACTIONS(1244), + [sym_em_dash] = ACTIONS(1244), + [sym_en_dash] = ACTIONS(1247), + [sym_backslash_escape] = ACTIONS(1247), + [anon_sym_LT] = ACTIONS(1250), + [anon_sym_LBRACE_EQ] = ACTIONS(1253), + [anon_sym_LBRACE_PLUS] = ACTIONS(1256), + [anon_sym_LBRACE_DASH] = ACTIONS(1259), + [sym_symbol] = ACTIONS(1244), + [anon_sym_LBRACE_CARET] = ACTIONS(1262), + [anon_sym_CARET] = ACTIONS(1262), + [anon_sym_LBRACE_TILDE] = ACTIONS(1265), + [anon_sym_TILDE] = ACTIONS(1265), + [anon_sym_LBRACK_CARET] = ACTIONS(1268), + [anon_sym_RBRACK] = ACTIONS(670), + [anon_sym_BANG_LBRACK] = ACTIONS(1271), + [anon_sym_LBRACK] = ACTIONS(1274), + [anon_sym_LBRACE2] = ACTIONS(1247), + [anon_sym_DOLLAR] = ACTIONS(1277), + [anon_sym_TODO] = ACTIONS(1280), + [anon_sym_WIP] = ACTIONS(1280), + [anon_sym_NOTE] = ACTIONS(1283), + [anon_sym_INFO] = ACTIONS(1283), + [anon_sym_XXX] = ACTIONS(1283), + [sym_fixme] = ACTIONS(1244), + [anon_sym_PIPE] = ACTIONS(1244), + [sym__whitespace1] = ACTIONS(1286), + [sym__newline] = ACTIONS(1289), + [aux_sym__text_token1] = ACTIONS(1292), + [sym__verbatim_begin] = ACTIONS(1295), }, [103] = { - [sym__inline] = STATE(699), - [sym__element] = STATE(94), - [sym_emphasis] = STATE(201), - [sym_emphasis_begin] = STATE(116), - [sym_strong] = STATE(201), - [sym_strong_begin] = STATE(117), - [sym__hard_line_break] = STATE(201), - [sym_hard_line_break] = STATE(201), - [sym__smart_punctuation] = STATE(201), - [sym_autolink] = STATE(201), - [sym_highlighted] = STATE(201), - [sym_insert] = STATE(201), - [sym_delete] = STATE(201), - [sym_superscript] = STATE(201), - [sym_subscript] = STATE(201), - [sym_footnote_reference] = STATE(201), - [sym__image] = STATE(201), - [sym_full_reference_image] = STATE(201), - [sym_collapsed_reference_image] = STATE(201), - [sym_inline_image] = STATE(201), - [sym__image_description] = STATE(656), - [sym__link] = STATE(201), - [sym_full_reference_link] = STATE(201), - [sym_collapsed_reference_link] = STATE(201), - [sym_inline_link] = STATE(201), - [sym_link_text] = STATE(655), - [sym__comment_with_spaces] = STATE(201), - [sym_span] = STATE(201), - [sym_raw_inline] = STATE(201), - [sym_math] = STATE(201), - [sym_verbatim] = STATE(201), - [sym__todo_highlights] = STATE(201), - [sym_todo] = STATE(201), - [sym_note] = STATE(201), - [sym__symbol_fallback] = STATE(201), - [sym__verbatim_begin] = STATE(888), - [aux_sym__text] = STATE(153), - [aux_sym__inline_repeat1] = STATE(94), - [anon_sym_LBRACE_] = ACTIONS(916), - [anon_sym__] = ACTIONS(918), - [anon_sym_LBRACE_STAR] = ACTIONS(920), - [anon_sym_STAR] = ACTIONS(922), - [anon_sym_BSLASH] = ACTIONS(924), - [sym_quotation_marks] = ACTIONS(926), - [sym_ellipsis] = ACTIONS(926), - [sym_em_dash] = ACTIONS(926), - [sym_en_dash] = ACTIONS(928), - [sym_backslash_escape] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(930), - [anon_sym_LBRACE_EQ] = ACTIONS(932), - [anon_sym_LBRACE_PLUS] = ACTIONS(934), - [anon_sym_LBRACE_DASH] = ACTIONS(936), - [sym_symbol] = ACTIONS(926), - [anon_sym_LBRACE_CARET] = ACTIONS(938), - [anon_sym_CARET] = ACTIONS(938), - [anon_sym_LBRACE_TILDE] = ACTIONS(940), - [anon_sym_TILDE] = ACTIONS(940), - [anon_sym_LBRACK_CARET] = ACTIONS(942), - [anon_sym_BANG_LBRACK] = ACTIONS(944), - [anon_sym_LBRACK] = ACTIONS(946), - [anon_sym_LBRACE2] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(948), - [anon_sym_TODO] = ACTIONS(950), - [anon_sym_WIP] = ACTIONS(950), - [anon_sym_NOTE] = ACTIONS(952), - [anon_sym_INFO] = ACTIONS(952), - [anon_sym_XXX] = ACTIONS(952), - [sym_fixme] = ACTIONS(926), - [anon_sym_PIPE] = ACTIONS(926), - [anon_sym_BQUOTE] = ACTIONS(41), - [sym__whitespace1] = ACTIONS(954), - [sym__newline] = ACTIONS(956), - [aux_sym__text_token1] = ACTIONS(958), + [sym__element] = STATE(102), + [sym_emphasis] = STATE(200), + [sym_emphasis_begin] = STATE(101), + [sym_strong] = STATE(200), + [sym_strong_begin] = STATE(104), + [sym__hard_line_break] = STATE(200), + [sym_hard_line_break] = STATE(200), + [sym__smart_punctuation] = STATE(200), + [sym_autolink] = STATE(200), + [sym_highlighted] = STATE(200), + [sym_insert] = STATE(200), + [sym_delete] = STATE(200), + [sym_superscript] = STATE(200), + [sym_subscript] = STATE(200), + [sym_footnote_reference] = STATE(200), + [sym__image] = STATE(200), + [sym_full_reference_image] = STATE(200), + [sym_collapsed_reference_image] = STATE(200), + [sym_inline_image] = STATE(200), + [sym__image_description] = STATE(642), + [sym__link] = STATE(200), + [sym_full_reference_link] = STATE(200), + [sym_collapsed_reference_link] = STATE(200), + [sym_inline_link] = STATE(200), + [sym_link_text] = STATE(643), + [sym__comment_with_spaces] = STATE(200), + [sym_span] = STATE(200), + [sym_raw_inline] = STATE(200), + [sym_math] = STATE(200), + [sym_verbatim] = STATE(200), + [sym__todo_highlights] = STATE(200), + [sym_todo] = STATE(200), + [sym_note] = STATE(200), + [sym__symbol_fallback] = STATE(200), + [aux_sym__text] = STATE(138), + [aux_sym__inline_repeat1] = STATE(102), + [anon_sym_LBRACE_] = ACTIONS(1298), + [anon_sym__] = ACTIONS(1300), + [anon_sym_LBRACE_STAR] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_BSLASH] = ACTIONS(1306), + [sym_quotation_marks] = ACTIONS(1308), + [sym_ellipsis] = ACTIONS(1308), + [sym_em_dash] = ACTIONS(1308), + [sym_en_dash] = ACTIONS(1310), + [sym_backslash_escape] = ACTIONS(1310), + [anon_sym_LT] = ACTIONS(1312), + [anon_sym_LBRACE_EQ] = ACTIONS(1314), + [anon_sym_LBRACE_PLUS] = ACTIONS(1316), + [anon_sym_LBRACE_DASH] = ACTIONS(1318), + [sym_symbol] = ACTIONS(1308), + [anon_sym_LBRACE_CARET] = ACTIONS(1320), + [anon_sym_CARET] = ACTIONS(1320), + [anon_sym_LBRACE_TILDE] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_LBRACK_CARET] = ACTIONS(1324), + [anon_sym_RBRACK] = ACTIONS(618), + [anon_sym_BANG_LBRACK] = ACTIONS(1326), + [anon_sym_LBRACK] = ACTIONS(1328), + [anon_sym_LBRACE2] = ACTIONS(1310), + [anon_sym_DOLLAR] = ACTIONS(1330), + [anon_sym_TODO] = ACTIONS(1332), + [anon_sym_WIP] = ACTIONS(1332), + [anon_sym_NOTE] = ACTIONS(1334), + [anon_sym_INFO] = ACTIONS(1334), + [anon_sym_XXX] = ACTIONS(1334), + [sym_fixme] = ACTIONS(1308), + [anon_sym_PIPE] = ACTIONS(1308), + [sym__whitespace1] = ACTIONS(1336), + [sym__newline] = ACTIONS(1338), + [aux_sym__text_token1] = ACTIONS(1340), + [sym__verbatim_begin] = ACTIONS(1342), }, [104] = { - [sym__inline] = STATE(695), + [sym__inline] = STATE(663), [sym__element] = STATE(73), - [sym_emphasis] = STATE(178), - [sym_emphasis_begin] = STATE(119), - [sym_strong] = STATE(178), - [sym_strong_begin] = STATE(121), - [sym__hard_line_break] = STATE(178), - [sym_hard_line_break] = STATE(178), - [sym__smart_punctuation] = STATE(178), - [sym_autolink] = STATE(178), - [sym_highlighted] = STATE(178), - [sym_insert] = STATE(178), - [sym_delete] = STATE(178), - [sym_superscript] = STATE(178), - [sym_subscript] = STATE(178), - [sym_footnote_reference] = STATE(178), - [sym__image] = STATE(178), - [sym_full_reference_image] = STATE(178), - [sym_collapsed_reference_image] = STATE(178), - [sym_inline_image] = STATE(178), - [sym__image_description] = STATE(651), - [sym__link] = STATE(178), - [sym_full_reference_link] = STATE(178), - [sym_collapsed_reference_link] = STATE(178), - [sym_inline_link] = STATE(178), - [sym_link_text] = STATE(650), - [sym__comment_with_spaces] = STATE(178), - [sym_span] = STATE(178), - [sym_raw_inline] = STATE(178), - [sym_math] = STATE(178), - [sym_verbatim] = STATE(178), - [sym__todo_highlights] = STATE(178), - [sym_todo] = STATE(178), - [sym_note] = STATE(178), - [sym__symbol_fallback] = STATE(178), - [sym__verbatim_begin] = STATE(897), - [aux_sym__text] = STATE(167), + [sym_emphasis] = STATE(179), + [sym_emphasis_begin] = STATE(111), + [sym_strong] = STATE(179), + [sym_strong_begin] = STATE(112), + [sym__hard_line_break] = STATE(179), + [sym_hard_line_break] = STATE(179), + [sym__smart_punctuation] = STATE(179), + [sym_autolink] = STATE(179), + [sym_highlighted] = STATE(179), + [sym_insert] = STATE(179), + [sym_delete] = STATE(179), + [sym_superscript] = STATE(179), + [sym_subscript] = STATE(179), + [sym_footnote_reference] = STATE(179), + [sym__image] = STATE(179), + [sym_full_reference_image] = STATE(179), + [sym_collapsed_reference_image] = STATE(179), + [sym_inline_image] = STATE(179), + [sym__image_description] = STATE(625), + [sym__link] = STATE(179), + [sym_full_reference_link] = STATE(179), + [sym_collapsed_reference_link] = STATE(179), + [sym_inline_link] = STATE(179), + [sym_link_text] = STATE(647), + [sym__comment_with_spaces] = STATE(179), + [sym_span] = STATE(179), + [sym_raw_inline] = STATE(179), + [sym_math] = STATE(179), + [sym_verbatim] = STATE(179), + [sym__todo_highlights] = STATE(179), + [sym_todo] = STATE(179), + [sym_note] = STATE(179), + [sym__symbol_fallback] = STATE(179), + [aux_sym__text] = STATE(171), [aux_sym__inline_repeat1] = STATE(73), - [anon_sym_LBRACE_] = ACTIONS(549), - [anon_sym__] = ACTIONS(551), - [anon_sym_LBRACE_STAR] = ACTIONS(553), - [anon_sym_STAR] = ACTIONS(555), - [anon_sym_BSLASH] = ACTIONS(557), - [sym_quotation_marks] = ACTIONS(559), - [sym_ellipsis] = ACTIONS(559), - [sym_em_dash] = ACTIONS(559), - [sym_en_dash] = ACTIONS(561), - [sym_backslash_escape] = ACTIONS(561), - [anon_sym_LT] = ACTIONS(563), - [anon_sym_LBRACE_EQ] = ACTIONS(565), - [anon_sym_LBRACE_PLUS] = ACTIONS(567), - [anon_sym_LBRACE_DASH] = ACTIONS(569), - [sym_symbol] = ACTIONS(559), - [anon_sym_LBRACE_CARET] = ACTIONS(571), - [anon_sym_CARET] = ACTIONS(571), - [anon_sym_LBRACE_TILDE] = ACTIONS(573), - [anon_sym_TILDE] = ACTIONS(573), - [anon_sym_LBRACK_CARET] = ACTIONS(575), - [anon_sym_BANG_LBRACK] = ACTIONS(577), - [anon_sym_LBRACK] = ACTIONS(579), - [anon_sym_LBRACE2] = ACTIONS(561), - [anon_sym_DOLLAR] = ACTIONS(581), - [anon_sym_TODO] = ACTIONS(583), - [anon_sym_WIP] = ACTIONS(583), - [anon_sym_NOTE] = ACTIONS(585), - [anon_sym_INFO] = ACTIONS(585), - [anon_sym_XXX] = ACTIONS(585), - [sym_fixme] = ACTIONS(559), - [anon_sym_PIPE] = ACTIONS(559), - [anon_sym_BQUOTE] = ACTIONS(41), - [sym__whitespace1] = ACTIONS(587), - [sym__newline] = ACTIONS(589), - [aux_sym__text_token1] = ACTIONS(591), + [anon_sym_LBRACE_] = ACTIONS(610), + [anon_sym__] = ACTIONS(612), + [anon_sym_LBRACE_STAR] = ACTIONS(614), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_BSLASH] = ACTIONS(620), + [sym_quotation_marks] = ACTIONS(622), + [sym_ellipsis] = ACTIONS(622), + [sym_em_dash] = ACTIONS(622), + [sym_en_dash] = ACTIONS(624), + [sym_backslash_escape] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_LBRACE_EQ] = ACTIONS(628), + [anon_sym_LBRACE_PLUS] = ACTIONS(630), + [anon_sym_LBRACE_DASH] = ACTIONS(632), + [sym_symbol] = ACTIONS(622), + [anon_sym_LBRACE_CARET] = ACTIONS(634), + [anon_sym_CARET] = ACTIONS(634), + [anon_sym_LBRACE_TILDE] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(636), + [anon_sym_LBRACK_CARET] = ACTIONS(638), + [anon_sym_BANG_LBRACK] = ACTIONS(640), + [anon_sym_LBRACK] = ACTIONS(642), + [anon_sym_LBRACE2] = ACTIONS(624), + [anon_sym_DOLLAR] = ACTIONS(644), + [anon_sym_TODO] = ACTIONS(646), + [anon_sym_WIP] = ACTIONS(646), + [anon_sym_NOTE] = ACTIONS(648), + [anon_sym_INFO] = ACTIONS(648), + [anon_sym_XXX] = ACTIONS(648), + [sym_fixme] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [sym__whitespace1] = ACTIONS(963), + [sym__newline] = ACTIONS(965), + [aux_sym__text_token1] = ACTIONS(654), + [sym__verbatim_begin] = ACTIONS(656), }, [105] = { - [sym__element] = STATE(105), - [sym_emphasis] = STATE(221), - [sym_emphasis_begin] = STATE(82), - [sym_strong] = STATE(221), - [sym_strong_begin] = STATE(83), - [sym__hard_line_break] = STATE(221), - [sym_hard_line_break] = STATE(221), - [sym__smart_punctuation] = STATE(221), - [sym_autolink] = STATE(221), - [sym_highlighted] = STATE(221), - [sym_insert] = STATE(221), - [sym_delete] = STATE(221), - [sym_superscript] = STATE(221), - [sym_subscript] = STATE(221), - [sym_footnote_reference] = STATE(221), - [sym__image] = STATE(221), - [sym_full_reference_image] = STATE(221), - [sym_collapsed_reference_image] = STATE(221), - [sym_inline_image] = STATE(221), - [sym__image_description] = STATE(669), - [sym__link] = STATE(221), - [sym_full_reference_link] = STATE(221), - [sym_collapsed_reference_link] = STATE(221), - [sym_inline_link] = STATE(221), - [sym_link_text] = STATE(657), - [sym__comment_with_spaces] = STATE(221), - [sym_span] = STATE(221), - [sym_raw_inline] = STATE(221), - [sym_math] = STATE(221), - [sym_verbatim] = STATE(221), - [sym__todo_highlights] = STATE(221), - [sym_todo] = STATE(221), - [sym_note] = STATE(221), - [sym__symbol_fallback] = STATE(221), - [sym__verbatim_begin] = STATE(834), - [aux_sym__text] = STATE(134), - [aux_sym__inline_repeat1] = STATE(105), - [anon_sym_LBRACE_] = ACTIONS(1410), - [anon_sym__] = ACTIONS(1413), - [anon_sym_LBRACE_STAR] = ACTIONS(1416), - [anon_sym_STAR] = ACTIONS(1419), - [anon_sym_BSLASH] = ACTIONS(1422), - [sym_quotation_marks] = ACTIONS(1425), - [sym_ellipsis] = ACTIONS(1425), - [sym_em_dash] = ACTIONS(1425), - [sym_en_dash] = ACTIONS(1428), - [sym_backslash_escape] = ACTIONS(1428), - [anon_sym_LT] = ACTIONS(1431), - [anon_sym_LBRACE_EQ] = ACTIONS(1434), - [anon_sym_EQ_RBRACE] = ACTIONS(613), - [anon_sym_LBRACE_PLUS] = ACTIONS(1437), - [anon_sym_LBRACE_DASH] = ACTIONS(1440), - [sym_symbol] = ACTIONS(1425), - [anon_sym_LBRACE_CARET] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(1443), - [anon_sym_LBRACE_TILDE] = ACTIONS(1446), - [anon_sym_TILDE] = ACTIONS(1446), - [anon_sym_LBRACK_CARET] = ACTIONS(1449), - [anon_sym_BANG_LBRACK] = ACTIONS(1452), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LBRACE2] = ACTIONS(1428), - [anon_sym_DOLLAR] = ACTIONS(1458), - [anon_sym_TODO] = ACTIONS(1461), - [anon_sym_WIP] = ACTIONS(1461), - [anon_sym_NOTE] = ACTIONS(1464), - [anon_sym_INFO] = ACTIONS(1464), - [anon_sym_XXX] = ACTIONS(1464), - [sym_fixme] = ACTIONS(1425), - [anon_sym_PIPE] = ACTIONS(1425), - [anon_sym_BQUOTE] = ACTIONS(660), - [sym__whitespace1] = ACTIONS(1467), - [sym__newline] = ACTIONS(1470), - [aux_sym__text_token1] = ACTIONS(1473), + [sym__inline] = STATE(665), + [sym__element] = STATE(73), + [sym_emphasis] = STATE(179), + [sym_emphasis_begin] = STATE(111), + [sym_strong] = STATE(179), + [sym_strong_begin] = STATE(112), + [sym__hard_line_break] = STATE(179), + [sym_hard_line_break] = STATE(179), + [sym__smart_punctuation] = STATE(179), + [sym_autolink] = STATE(179), + [sym_highlighted] = STATE(179), + [sym_insert] = STATE(179), + [sym_delete] = STATE(179), + [sym_superscript] = STATE(179), + [sym_subscript] = STATE(179), + [sym_footnote_reference] = STATE(179), + [sym__image] = STATE(179), + [sym_full_reference_image] = STATE(179), + [sym_collapsed_reference_image] = STATE(179), + [sym_inline_image] = STATE(179), + [sym__image_description] = STATE(625), + [sym__link] = STATE(179), + [sym_full_reference_link] = STATE(179), + [sym_collapsed_reference_link] = STATE(179), + [sym_inline_link] = STATE(179), + [sym_link_text] = STATE(647), + [sym__comment_with_spaces] = STATE(179), + [sym_span] = STATE(179), + [sym_raw_inline] = STATE(179), + [sym_math] = STATE(179), + [sym_verbatim] = STATE(179), + [sym__todo_highlights] = STATE(179), + [sym_todo] = STATE(179), + [sym_note] = STATE(179), + [sym__symbol_fallback] = STATE(179), + [aux_sym__text] = STATE(171), + [aux_sym__inline_repeat1] = STATE(73), + [anon_sym_LBRACE_] = ACTIONS(610), + [anon_sym__] = ACTIONS(612), + [anon_sym_LBRACE_STAR] = ACTIONS(614), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_BSLASH] = ACTIONS(620), + [sym_quotation_marks] = ACTIONS(622), + [sym_ellipsis] = ACTIONS(622), + [sym_em_dash] = ACTIONS(622), + [sym_en_dash] = ACTIONS(624), + [sym_backslash_escape] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_LBRACE_EQ] = ACTIONS(628), + [anon_sym_LBRACE_PLUS] = ACTIONS(630), + [anon_sym_LBRACE_DASH] = ACTIONS(632), + [sym_symbol] = ACTIONS(622), + [anon_sym_LBRACE_CARET] = ACTIONS(634), + [anon_sym_CARET] = ACTIONS(634), + [anon_sym_LBRACE_TILDE] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(636), + [anon_sym_LBRACK_CARET] = ACTIONS(638), + [anon_sym_BANG_LBRACK] = ACTIONS(640), + [anon_sym_LBRACK] = ACTIONS(642), + [anon_sym_LBRACE2] = ACTIONS(624), + [anon_sym_DOLLAR] = ACTIONS(644), + [anon_sym_TODO] = ACTIONS(646), + [anon_sym_WIP] = ACTIONS(646), + [anon_sym_NOTE] = ACTIONS(648), + [anon_sym_INFO] = ACTIONS(648), + [anon_sym_XXX] = ACTIONS(648), + [sym_fixme] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [sym__whitespace1] = ACTIONS(963), + [sym__newline] = ACTIONS(965), + [aux_sym__text_token1] = ACTIONS(654), + [sym__verbatim_begin] = ACTIONS(656), }, [106] = { - [sym__inline] = STATE(812), - [sym__element] = STATE(79), + [sym__inline] = STATE(680), + [sym__element] = STATE(87), [sym_emphasis] = STATE(189), - [sym_emphasis_begin] = STATE(92), + [sym_emphasis_begin] = STATE(108), [sym_strong] = STATE(189), - [sym_strong_begin] = STATE(93), + [sym_strong_begin] = STATE(109), [sym__hard_line_break] = STATE(189), [sym_hard_line_break] = STATE(189), [sym__smart_punctuation] = STATE(189), @@ -16305,12 +16026,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_full_reference_image] = STATE(189), [sym_collapsed_reference_image] = STATE(189), [sym_inline_image] = STATE(189), - [sym__image_description] = STATE(660), + [sym__image_description] = STATE(655), [sym__link] = STATE(189), [sym_full_reference_link] = STATE(189), [sym_collapsed_reference_link] = STATE(189), [sym_inline_link] = STATE(189), - [sym_link_text] = STATE(646), + [sym_link_text] = STATE(626), [sym__comment_with_spaces] = STATE(189), [sym_span] = STATE(189), [sym_raw_inline] = STATE(189), @@ -16320,277 +16041,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(189), [sym_note] = STATE(189), [sym__symbol_fallback] = STATE(189), - [sym__verbatim_begin] = STATE(906), - [aux_sym__text] = STATE(123), - [aux_sym__inline_repeat1] = STATE(79), - [anon_sym_LBRACE_] = ACTIONS(672), - [anon_sym__] = ACTIONS(674), - [anon_sym_LBRACE_STAR] = ACTIONS(676), - [anon_sym_STAR] = ACTIONS(678), - [anon_sym_BSLASH] = ACTIONS(680), - [sym_quotation_marks] = ACTIONS(682), - [sym_ellipsis] = ACTIONS(682), - [sym_em_dash] = ACTIONS(682), - [sym_en_dash] = ACTIONS(684), - [sym_backslash_escape] = ACTIONS(684), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_LBRACE_EQ] = ACTIONS(688), - [anon_sym_LBRACE_PLUS] = ACTIONS(690), - [anon_sym_LBRACE_DASH] = ACTIONS(692), - [sym_symbol] = ACTIONS(682), - [anon_sym_LBRACE_CARET] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym_LBRACE_TILDE] = ACTIONS(696), - [anon_sym_TILDE] = ACTIONS(696), - [anon_sym_LBRACK_CARET] = ACTIONS(698), - [anon_sym_BANG_LBRACK] = ACTIONS(700), - [anon_sym_LBRACK] = ACTIONS(702), - [anon_sym_LBRACE2] = ACTIONS(684), - [anon_sym_DOLLAR] = ACTIONS(704), - [anon_sym_TODO] = ACTIONS(706), - [anon_sym_WIP] = ACTIONS(706), - [anon_sym_NOTE] = ACTIONS(708), - [anon_sym_INFO] = ACTIONS(708), - [anon_sym_XXX] = ACTIONS(708), - [sym_fixme] = ACTIONS(682), - [anon_sym_PIPE] = ACTIONS(682), - [anon_sym_BQUOTE] = ACTIONS(41), - [sym__whitespace1] = ACTIONS(710), - [sym__newline] = ACTIONS(712), - [aux_sym__text_token1] = ACTIONS(714), + [aux_sym__text] = STATE(155), + [aux_sym__inline_repeat1] = STATE(87), + [anon_sym_LBRACE_] = ACTIONS(915), + [anon_sym__] = ACTIONS(917), + [anon_sym_LBRACE_STAR] = ACTIONS(919), + [anon_sym_STAR] = ACTIONS(921), + [anon_sym_BSLASH] = ACTIONS(923), + [sym_quotation_marks] = ACTIONS(925), + [sym_ellipsis] = ACTIONS(925), + [sym_em_dash] = ACTIONS(925), + [sym_en_dash] = ACTIONS(927), + [sym_backslash_escape] = ACTIONS(927), + [anon_sym_LT] = ACTIONS(929), + [anon_sym_LBRACE_EQ] = ACTIONS(931), + [anon_sym_LBRACE_PLUS] = ACTIONS(933), + [anon_sym_LBRACE_DASH] = ACTIONS(935), + [sym_symbol] = ACTIONS(925), + [anon_sym_LBRACE_CARET] = ACTIONS(937), + [anon_sym_CARET] = ACTIONS(937), + [anon_sym_LBRACE_TILDE] = ACTIONS(939), + [anon_sym_TILDE] = ACTIONS(939), + [anon_sym_LBRACK_CARET] = ACTIONS(941), + [anon_sym_BANG_LBRACK] = ACTIONS(943), + [anon_sym_LBRACK] = ACTIONS(945), + [anon_sym_LBRACE2] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(947), + [anon_sym_TODO] = ACTIONS(949), + [anon_sym_WIP] = ACTIONS(949), + [anon_sym_NOTE] = ACTIONS(951), + [anon_sym_INFO] = ACTIONS(951), + [anon_sym_XXX] = ACTIONS(951), + [sym_fixme] = ACTIONS(925), + [anon_sym_PIPE] = ACTIONS(925), + [sym__whitespace1] = ACTIONS(953), + [sym__newline] = ACTIONS(955), + [aux_sym__text_token1] = ACTIONS(957), + [sym__verbatim_begin] = ACTIONS(959), }, [107] = { - [sym__element] = STATE(77), - [sym_emphasis] = STATE(220), - [sym_emphasis_begin] = STATE(115), - [sym_strong] = STATE(220), - [sym_strong_begin] = STATE(114), - [sym__hard_line_break] = STATE(220), - [sym_hard_line_break] = STATE(220), - [sym__smart_punctuation] = STATE(220), - [sym_autolink] = STATE(220), - [sym_highlighted] = STATE(220), - [sym_insert] = STATE(220), - [sym_delete] = STATE(220), - [sym_superscript] = STATE(220), - [sym_subscript] = STATE(220), - [sym_footnote_reference] = STATE(220), - [sym__image] = STATE(220), - [sym_full_reference_image] = STATE(220), - [sym_collapsed_reference_image] = STATE(220), - [sym_inline_image] = STATE(220), - [sym__image_description] = STATE(653), - [sym__link] = STATE(220), - [sym_full_reference_link] = STATE(220), - [sym_collapsed_reference_link] = STATE(220), - [sym_inline_link] = STATE(220), - [sym_link_text] = STATE(661), - [sym__comment_with_spaces] = STATE(220), - [sym_span] = STATE(220), - [sym_raw_inline] = STATE(220), - [sym_math] = STATE(220), - [sym_verbatim] = STATE(220), - [sym__todo_highlights] = STATE(220), - [sym_todo] = STATE(220), - [sym_note] = STATE(220), - [sym__symbol_fallback] = STATE(220), - [sym__verbatim_begin] = STATE(878), - [aux_sym__text] = STATE(130), - [aux_sym__inline_repeat1] = STATE(77), - [ts_builtin_sym_end] = ACTIONS(595), - [anon_sym_LBRACE_] = ACTIONS(3), - [anon_sym__] = ACTIONS(5), - [anon_sym_LBRACE_STAR] = ACTIONS(7), - [anon_sym_STAR] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(11), - [sym_quotation_marks] = ACTIONS(13), - [sym_ellipsis] = ACTIONS(13), - [sym_em_dash] = ACTIONS(13), - [sym_en_dash] = ACTIONS(15), - [sym_backslash_escape] = ACTIONS(15), - [anon_sym_LT] = ACTIONS(17), - [anon_sym_LBRACE_EQ] = ACTIONS(19), - [anon_sym_LBRACE_PLUS] = ACTIONS(21), - [anon_sym_LBRACE_DASH] = ACTIONS(23), - [sym_symbol] = ACTIONS(13), - [anon_sym_LBRACE_CARET] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(25), - [anon_sym_LBRACE_TILDE] = ACTIONS(27), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_LBRACK_CARET] = ACTIONS(29), - [anon_sym_BANG_LBRACK] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACE2] = ACTIONS(15), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_TODO] = ACTIONS(37), - [anon_sym_WIP] = ACTIONS(37), - [anon_sym_NOTE] = ACTIONS(39), - [anon_sym_INFO] = ACTIONS(39), - [anon_sym_XXX] = ACTIONS(39), - [sym_fixme] = ACTIONS(13), - [anon_sym_PIPE] = ACTIONS(13), - [anon_sym_BQUOTE] = ACTIONS(41), - [sym__whitespace1] = ACTIONS(43), - [sym__newline] = ACTIONS(1476), - [aux_sym__text_token1] = ACTIONS(47), - }, - [108] = { - [sym__inline] = STATE(689), - [sym__element] = STATE(94), - [sym_emphasis] = STATE(201), - [sym_emphasis_begin] = STATE(116), - [sym_strong] = STATE(201), - [sym_strong_begin] = STATE(117), - [sym__hard_line_break] = STATE(201), - [sym_hard_line_break] = STATE(201), - [sym__smart_punctuation] = STATE(201), - [sym_autolink] = STATE(201), - [sym_highlighted] = STATE(201), - [sym_insert] = STATE(201), - [sym_delete] = STATE(201), - [sym_superscript] = STATE(201), - [sym_subscript] = STATE(201), - [sym_footnote_reference] = STATE(201), - [sym__image] = STATE(201), - [sym_full_reference_image] = STATE(201), - [sym_collapsed_reference_image] = STATE(201), - [sym_inline_image] = STATE(201), - [sym__image_description] = STATE(656), - [sym__link] = STATE(201), - [sym_full_reference_link] = STATE(201), - [sym_collapsed_reference_link] = STATE(201), - [sym_inline_link] = STATE(201), - [sym_link_text] = STATE(655), - [sym__comment_with_spaces] = STATE(201), - [sym_span] = STATE(201), - [sym_raw_inline] = STATE(201), - [sym_math] = STATE(201), - [sym_verbatim] = STATE(201), - [sym__todo_highlights] = STATE(201), - [sym_todo] = STATE(201), - [sym_note] = STATE(201), - [sym__symbol_fallback] = STATE(201), - [sym__verbatim_begin] = STATE(888), - [aux_sym__text] = STATE(153), - [aux_sym__inline_repeat1] = STATE(94), - [anon_sym_LBRACE_] = ACTIONS(916), - [anon_sym__] = ACTIONS(918), - [anon_sym_LBRACE_STAR] = ACTIONS(920), - [anon_sym_STAR] = ACTIONS(922), - [anon_sym_BSLASH] = ACTIONS(924), - [sym_quotation_marks] = ACTIONS(926), - [sym_ellipsis] = ACTIONS(926), - [sym_em_dash] = ACTIONS(926), - [sym_en_dash] = ACTIONS(928), - [sym_backslash_escape] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(930), - [anon_sym_LBRACE_EQ] = ACTIONS(932), - [anon_sym_LBRACE_PLUS] = ACTIONS(934), - [anon_sym_LBRACE_DASH] = ACTIONS(936), - [sym_symbol] = ACTIONS(926), - [anon_sym_LBRACE_CARET] = ACTIONS(938), - [anon_sym_CARET] = ACTIONS(938), - [anon_sym_LBRACE_TILDE] = ACTIONS(940), - [anon_sym_TILDE] = ACTIONS(940), - [anon_sym_LBRACK_CARET] = ACTIONS(942), - [anon_sym_BANG_LBRACK] = ACTIONS(944), - [anon_sym_LBRACK] = ACTIONS(946), - [anon_sym_LBRACE2] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(948), - [anon_sym_TODO] = ACTIONS(950), - [anon_sym_WIP] = ACTIONS(950), - [anon_sym_NOTE] = ACTIONS(952), - [anon_sym_INFO] = ACTIONS(952), - [anon_sym_XXX] = ACTIONS(952), - [sym_fixme] = ACTIONS(926), - [anon_sym_PIPE] = ACTIONS(926), - [anon_sym_BQUOTE] = ACTIONS(41), - [sym__whitespace1] = ACTIONS(954), - [sym__newline] = ACTIONS(956), - [aux_sym__text_token1] = ACTIONS(958), - }, - [109] = { - [sym__element] = STATE(105), - [sym_emphasis] = STATE(221), - [sym_emphasis_begin] = STATE(82), - [sym_strong] = STATE(221), - [sym_strong_begin] = STATE(83), - [sym__hard_line_break] = STATE(221), - [sym_hard_line_break] = STATE(221), - [sym__smart_punctuation] = STATE(221), - [sym_autolink] = STATE(221), - [sym_highlighted] = STATE(221), - [sym_insert] = STATE(221), - [sym_delete] = STATE(221), - [sym_superscript] = STATE(221), - [sym_subscript] = STATE(221), - [sym_footnote_reference] = STATE(221), - [sym__image] = STATE(221), - [sym_full_reference_image] = STATE(221), - [sym_collapsed_reference_image] = STATE(221), - [sym_inline_image] = STATE(221), - [sym__image_description] = STATE(669), - [sym__link] = STATE(221), - [sym_full_reference_link] = STATE(221), - [sym_collapsed_reference_link] = STATE(221), - [sym_inline_link] = STATE(221), - [sym_link_text] = STATE(657), - [sym__comment_with_spaces] = STATE(221), - [sym_span] = STATE(221), - [sym_raw_inline] = STATE(221), - [sym_math] = STATE(221), - [sym_verbatim] = STATE(221), - [sym__todo_highlights] = STATE(221), - [sym_todo] = STATE(221), - [sym_note] = STATE(221), - [sym__symbol_fallback] = STATE(221), - [sym__verbatim_begin] = STATE(834), - [aux_sym__text] = STATE(134), - [aux_sym__inline_repeat1] = STATE(105), - [anon_sym_LBRACE_] = ACTIONS(1478), - [anon_sym__] = ACTIONS(1480), - [anon_sym_LBRACE_STAR] = ACTIONS(1482), - [anon_sym_STAR] = ACTIONS(1484), - [anon_sym_BSLASH] = ACTIONS(1486), - [sym_quotation_marks] = ACTIONS(1488), - [sym_ellipsis] = ACTIONS(1488), - [sym_em_dash] = ACTIONS(1488), - [sym_en_dash] = ACTIONS(1490), - [sym_backslash_escape] = ACTIONS(1490), - [anon_sym_LT] = ACTIONS(1492), - [anon_sym_LBRACE_EQ] = ACTIONS(1494), - [anon_sym_EQ_RBRACE] = ACTIONS(595), - [anon_sym_LBRACE_PLUS] = ACTIONS(1496), - [anon_sym_LBRACE_DASH] = ACTIONS(1498), - [sym_symbol] = ACTIONS(1488), - [anon_sym_LBRACE_CARET] = ACTIONS(1500), - [anon_sym_CARET] = ACTIONS(1500), - [anon_sym_LBRACE_TILDE] = ACTIONS(1502), - [anon_sym_TILDE] = ACTIONS(1502), - [anon_sym_LBRACK_CARET] = ACTIONS(1504), - [anon_sym_BANG_LBRACK] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_LBRACE2] = ACTIONS(1490), - [anon_sym_DOLLAR] = ACTIONS(1510), - [anon_sym_TODO] = ACTIONS(1512), - [anon_sym_WIP] = ACTIONS(1512), - [anon_sym_NOTE] = ACTIONS(1514), - [anon_sym_INFO] = ACTIONS(1514), - [anon_sym_XXX] = ACTIONS(1514), - [sym_fixme] = ACTIONS(1488), - [anon_sym_PIPE] = ACTIONS(1488), - [anon_sym_BQUOTE] = ACTIONS(41), - [sym__whitespace1] = ACTIONS(1516), - [sym__newline] = ACTIONS(1518), - [aux_sym__text_token1] = ACTIONS(1520), - }, - [110] = { - [sym__inline] = STATE(679), - [sym__element] = STATE(73), + [sym__inline] = STATE(735), + [sym__element] = STATE(79), [sym_emphasis] = STATE(178), - [sym_emphasis_begin] = STATE(119), + [sym_emphasis_begin] = STATE(115), [sym_strong] = STATE(178), - [sym_strong_begin] = STATE(121), + [sym_strong_begin] = STATE(117), [sym__hard_line_break] = STATE(178), [sym_hard_line_break] = STATE(178), [sym__smart_punctuation] = STATE(178), @@ -16605,12 +16100,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_full_reference_image] = STATE(178), [sym_collapsed_reference_image] = STATE(178), [sym_inline_image] = STATE(178), - [sym__image_description] = STATE(651), + [sym__image_description] = STATE(640), [sym__link] = STATE(178), [sym_full_reference_link] = STATE(178), [sym_collapsed_reference_link] = STATE(178), [sym_inline_link] = STATE(178), - [sym_link_text] = STATE(650), + [sym_link_text] = STATE(636), [sym__comment_with_spaces] = STATE(178), [sym_span] = STATE(178), [sym_raw_inline] = STATE(178), @@ -16620,202 +16115,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(178), [sym_note] = STATE(178), [sym__symbol_fallback] = STATE(178), - [sym__verbatim_begin] = STATE(897), - [aux_sym__text] = STATE(167), - [aux_sym__inline_repeat1] = STATE(73), - [anon_sym_LBRACE_] = ACTIONS(549), - [anon_sym__] = ACTIONS(551), - [anon_sym_LBRACE_STAR] = ACTIONS(553), - [anon_sym_STAR] = ACTIONS(555), - [anon_sym_BSLASH] = ACTIONS(557), - [sym_quotation_marks] = ACTIONS(559), - [sym_ellipsis] = ACTIONS(559), - [sym_em_dash] = ACTIONS(559), - [sym_en_dash] = ACTIONS(561), - [sym_backslash_escape] = ACTIONS(561), - [anon_sym_LT] = ACTIONS(563), - [anon_sym_LBRACE_EQ] = ACTIONS(565), - [anon_sym_LBRACE_PLUS] = ACTIONS(567), - [anon_sym_LBRACE_DASH] = ACTIONS(569), - [sym_symbol] = ACTIONS(559), - [anon_sym_LBRACE_CARET] = ACTIONS(571), - [anon_sym_CARET] = ACTIONS(571), - [anon_sym_LBRACE_TILDE] = ACTIONS(573), - [anon_sym_TILDE] = ACTIONS(573), - [anon_sym_LBRACK_CARET] = ACTIONS(575), - [anon_sym_BANG_LBRACK] = ACTIONS(577), - [anon_sym_LBRACK] = ACTIONS(579), - [anon_sym_LBRACE2] = ACTIONS(561), - [anon_sym_DOLLAR] = ACTIONS(581), - [anon_sym_TODO] = ACTIONS(583), - [anon_sym_WIP] = ACTIONS(583), - [anon_sym_NOTE] = ACTIONS(585), - [anon_sym_INFO] = ACTIONS(585), - [anon_sym_XXX] = ACTIONS(585), - [sym_fixme] = ACTIONS(559), - [anon_sym_PIPE] = ACTIONS(559), - [anon_sym_BQUOTE] = ACTIONS(41), - [sym__whitespace1] = ACTIONS(587), - [sym__newline] = ACTIONS(589), - [aux_sym__text_token1] = ACTIONS(591), - }, - [111] = { - [sym__element] = STATE(111), - [sym_emphasis] = STATE(206), - [sym_emphasis_begin] = STATE(108), - [sym_strong] = STATE(206), - [sym_strong_begin] = STATE(110), - [sym__hard_line_break] = STATE(206), - [sym_hard_line_break] = STATE(206), - [sym__smart_punctuation] = STATE(206), - [sym_autolink] = STATE(206), - [sym_highlighted] = STATE(206), - [sym_insert] = STATE(206), - [sym_delete] = STATE(206), - [sym_superscript] = STATE(206), - [sym_subscript] = STATE(206), - [sym_footnote_reference] = STATE(206), - [sym__image] = STATE(206), - [sym_full_reference_image] = STATE(206), - [sym_collapsed_reference_image] = STATE(206), - [sym_inline_image] = STATE(206), - [sym__image_description] = STATE(664), - [sym__link] = STATE(206), - [sym_full_reference_link] = STATE(206), - [sym_collapsed_reference_link] = STATE(206), - [sym_inline_link] = STATE(206), - [sym_link_text] = STATE(663), - [sym__comment_with_spaces] = STATE(206), - [sym_span] = STATE(206), - [sym_raw_inline] = STATE(206), - [sym_math] = STATE(206), - [sym_verbatim] = STATE(206), - [sym__todo_highlights] = STATE(206), - [sym_todo] = STATE(206), - [sym_note] = STATE(206), - [sym__symbol_fallback] = STATE(206), - [sym__verbatim_begin] = STATE(879), - [aux_sym__text] = STATE(126), - [aux_sym__inline_repeat1] = STATE(111), - [anon_sym_LBRACE_] = ACTIONS(1522), - [anon_sym__] = ACTIONS(1525), - [anon_sym_LBRACE_STAR] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(1531), - [anon_sym_BSLASH] = ACTIONS(1534), - [sym_quotation_marks] = ACTIONS(1537), - [sym_ellipsis] = ACTIONS(1537), - [sym_em_dash] = ACTIONS(1537), - [sym_en_dash] = ACTIONS(1540), - [sym_backslash_escape] = ACTIONS(1540), - [anon_sym_LT] = ACTIONS(1543), - [anon_sym_LBRACE_EQ] = ACTIONS(1546), - [anon_sym_LBRACE_PLUS] = ACTIONS(1549), - [anon_sym_LBRACE_DASH] = ACTIONS(1552), - [sym_symbol] = ACTIONS(1537), - [anon_sym_LBRACE_CARET] = ACTIONS(1555), - [anon_sym_CARET] = ACTIONS(1555), - [anon_sym_LBRACE_TILDE] = ACTIONS(1558), - [anon_sym_TILDE] = ACTIONS(1558), - [anon_sym_LBRACK_CARET] = ACTIONS(1561), - [anon_sym_RBRACK] = ACTIONS(613), - [anon_sym_BANG_LBRACK] = ACTIONS(1564), - [anon_sym_LBRACK] = ACTIONS(1567), - [anon_sym_LBRACE2] = ACTIONS(1540), - [anon_sym_DOLLAR] = ACTIONS(1570), - [anon_sym_TODO] = ACTIONS(1573), - [anon_sym_WIP] = ACTIONS(1573), - [anon_sym_NOTE] = ACTIONS(1576), - [anon_sym_INFO] = ACTIONS(1576), - [anon_sym_XXX] = ACTIONS(1576), - [sym_fixme] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1537), - [anon_sym_BQUOTE] = ACTIONS(660), - [sym__whitespace1] = ACTIONS(1579), - [sym__newline] = ACTIONS(1582), - [aux_sym__text_token1] = ACTIONS(1585), - }, - [112] = { - [sym__element] = STATE(111), - [sym_emphasis] = STATE(206), - [sym_emphasis_begin] = STATE(108), - [sym_strong] = STATE(206), - [sym_strong_begin] = STATE(110), - [sym__hard_line_break] = STATE(206), - [sym_hard_line_break] = STATE(206), - [sym__smart_punctuation] = STATE(206), - [sym_autolink] = STATE(206), - [sym_highlighted] = STATE(206), - [sym_insert] = STATE(206), - [sym_delete] = STATE(206), - [sym_superscript] = STATE(206), - [sym_subscript] = STATE(206), - [sym_footnote_reference] = STATE(206), - [sym__image] = STATE(206), - [sym_full_reference_image] = STATE(206), - [sym_collapsed_reference_image] = STATE(206), - [sym_inline_image] = STATE(206), - [sym__image_description] = STATE(664), - [sym__link] = STATE(206), - [sym_full_reference_link] = STATE(206), - [sym_collapsed_reference_link] = STATE(206), - [sym_inline_link] = STATE(206), - [sym_link_text] = STATE(663), - [sym__comment_with_spaces] = STATE(206), - [sym_span] = STATE(206), - [sym_raw_inline] = STATE(206), - [sym_math] = STATE(206), - [sym_verbatim] = STATE(206), - [sym__todo_highlights] = STATE(206), - [sym_todo] = STATE(206), - [sym_note] = STATE(206), - [sym__symbol_fallback] = STATE(206), - [sym__verbatim_begin] = STATE(879), - [aux_sym__text] = STATE(126), - [aux_sym__inline_repeat1] = STATE(111), - [anon_sym_LBRACE_] = ACTIONS(1588), - [anon_sym__] = ACTIONS(1590), - [anon_sym_LBRACE_STAR] = ACTIONS(1592), - [anon_sym_STAR] = ACTIONS(1594), - [anon_sym_BSLASH] = ACTIONS(1596), - [sym_quotation_marks] = ACTIONS(1598), - [sym_ellipsis] = ACTIONS(1598), - [sym_em_dash] = ACTIONS(1598), - [sym_en_dash] = ACTIONS(1600), - [sym_backslash_escape] = ACTIONS(1600), - [anon_sym_LT] = ACTIONS(1602), - [anon_sym_LBRACE_EQ] = ACTIONS(1604), - [anon_sym_LBRACE_PLUS] = ACTIONS(1606), - [anon_sym_LBRACE_DASH] = ACTIONS(1608), - [sym_symbol] = ACTIONS(1598), - [anon_sym_LBRACE_CARET] = ACTIONS(1610), - [anon_sym_CARET] = ACTIONS(1610), - [anon_sym_LBRACE_TILDE] = ACTIONS(1612), - [anon_sym_TILDE] = ACTIONS(1612), - [anon_sym_LBRACK_CARET] = ACTIONS(1614), - [anon_sym_RBRACK] = ACTIONS(595), - [anon_sym_BANG_LBRACK] = ACTIONS(1616), - [anon_sym_LBRACK] = ACTIONS(1618), - [anon_sym_LBRACE2] = ACTIONS(1600), - [anon_sym_DOLLAR] = ACTIONS(1620), - [anon_sym_TODO] = ACTIONS(1622), - [anon_sym_WIP] = ACTIONS(1622), - [anon_sym_NOTE] = ACTIONS(1624), - [anon_sym_INFO] = ACTIONS(1624), - [anon_sym_XXX] = ACTIONS(1624), - [sym_fixme] = ACTIONS(1598), - [anon_sym_PIPE] = ACTIONS(1598), - [anon_sym_BQUOTE] = ACTIONS(41), - [sym__whitespace1] = ACTIONS(1626), - [sym__newline] = ACTIONS(1628), - [aux_sym__text_token1] = ACTIONS(1630), + [aux_sym__text] = STATE(146), + [aux_sym__inline_repeat1] = STATE(79), + [anon_sym_LBRACE_] = ACTIONS(564), + [anon_sym__] = ACTIONS(566), + [anon_sym_LBRACE_STAR] = ACTIONS(568), + [anon_sym_STAR] = ACTIONS(570), + [anon_sym_BSLASH] = ACTIONS(572), + [sym_quotation_marks] = ACTIONS(574), + [sym_ellipsis] = ACTIONS(574), + [sym_em_dash] = ACTIONS(574), + [sym_en_dash] = ACTIONS(576), + [sym_backslash_escape] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(578), + [anon_sym_LBRACE_EQ] = ACTIONS(580), + [anon_sym_LBRACE_PLUS] = ACTIONS(582), + [anon_sym_LBRACE_DASH] = ACTIONS(584), + [sym_symbol] = ACTIONS(574), + [anon_sym_LBRACE_CARET] = ACTIONS(586), + [anon_sym_CARET] = ACTIONS(586), + [anon_sym_LBRACE_TILDE] = ACTIONS(588), + [anon_sym_TILDE] = ACTIONS(588), + [anon_sym_LBRACK_CARET] = ACTIONS(590), + [anon_sym_BANG_LBRACK] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_LBRACE2] = ACTIONS(576), + [anon_sym_DOLLAR] = ACTIONS(596), + [anon_sym_TODO] = ACTIONS(598), + [anon_sym_WIP] = ACTIONS(598), + [anon_sym_NOTE] = ACTIONS(600), + [anon_sym_INFO] = ACTIONS(600), + [anon_sym_XXX] = ACTIONS(600), + [sym_fixme] = ACTIONS(574), + [anon_sym_PIPE] = ACTIONS(574), + [sym__whitespace1] = ACTIONS(602), + [sym__newline] = ACTIONS(604), + [aux_sym__text_token1] = ACTIONS(606), + [sym__verbatim_begin] = ACTIONS(608), }, - [113] = { - [sym__inline] = STATE(763), - [sym__element] = STATE(79), + [108] = { + [sym__inline] = STATE(661), + [sym__element] = STATE(87), [sym_emphasis] = STATE(189), - [sym_emphasis_begin] = STATE(92), + [sym_emphasis_begin] = STATE(108), [sym_strong] = STATE(189), - [sym_strong_begin] = STATE(93), + [sym_strong_begin] = STATE(109), [sym__hard_line_break] = STATE(189), [sym_hard_line_break] = STATE(189), [sym__smart_punctuation] = STATE(189), @@ -16830,12 +16174,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_full_reference_image] = STATE(189), [sym_collapsed_reference_image] = STATE(189), [sym_inline_image] = STATE(189), - [sym__image_description] = STATE(660), + [sym__image_description] = STATE(655), [sym__link] = STATE(189), [sym_full_reference_link] = STATE(189), [sym_collapsed_reference_link] = STATE(189), [sym_inline_link] = STATE(189), - [sym_link_text] = STATE(646), + [sym_link_text] = STATE(626), [sym__comment_with_spaces] = STATE(189), [sym_span] = STATE(189), [sym_raw_inline] = STATE(189), @@ -16845,277 +16189,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(189), [sym_note] = STATE(189), [sym__symbol_fallback] = STATE(189), - [sym__verbatim_begin] = STATE(906), - [aux_sym__text] = STATE(123), - [aux_sym__inline_repeat1] = STATE(79), - [anon_sym_LBRACE_] = ACTIONS(672), - [anon_sym__] = ACTIONS(674), - [anon_sym_LBRACE_STAR] = ACTIONS(676), - [anon_sym_STAR] = ACTIONS(678), - [anon_sym_BSLASH] = ACTIONS(680), - [sym_quotation_marks] = ACTIONS(682), - [sym_ellipsis] = ACTIONS(682), - [sym_em_dash] = ACTIONS(682), - [sym_en_dash] = ACTIONS(684), - [sym_backslash_escape] = ACTIONS(684), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_LBRACE_EQ] = ACTIONS(688), - [anon_sym_LBRACE_PLUS] = ACTIONS(690), - [anon_sym_LBRACE_DASH] = ACTIONS(692), - [sym_symbol] = ACTIONS(682), - [anon_sym_LBRACE_CARET] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym_LBRACE_TILDE] = ACTIONS(696), - [anon_sym_TILDE] = ACTIONS(696), - [anon_sym_LBRACK_CARET] = ACTIONS(698), - [anon_sym_BANG_LBRACK] = ACTIONS(700), - [anon_sym_LBRACK] = ACTIONS(702), - [anon_sym_LBRACE2] = ACTIONS(684), - [anon_sym_DOLLAR] = ACTIONS(704), - [anon_sym_TODO] = ACTIONS(706), - [anon_sym_WIP] = ACTIONS(706), - [anon_sym_NOTE] = ACTIONS(708), - [anon_sym_INFO] = ACTIONS(708), - [anon_sym_XXX] = ACTIONS(708), - [sym_fixme] = ACTIONS(682), - [anon_sym_PIPE] = ACTIONS(682), - [anon_sym_BQUOTE] = ACTIONS(41), - [sym__whitespace1] = ACTIONS(710), - [sym__newline] = ACTIONS(712), - [aux_sym__text_token1] = ACTIONS(714), + [aux_sym__text] = STATE(155), + [aux_sym__inline_repeat1] = STATE(87), + [anon_sym_LBRACE_] = ACTIONS(915), + [anon_sym__] = ACTIONS(917), + [anon_sym_LBRACE_STAR] = ACTIONS(919), + [anon_sym_STAR] = ACTIONS(921), + [anon_sym_BSLASH] = ACTIONS(923), + [sym_quotation_marks] = ACTIONS(925), + [sym_ellipsis] = ACTIONS(925), + [sym_em_dash] = ACTIONS(925), + [sym_en_dash] = ACTIONS(927), + [sym_backslash_escape] = ACTIONS(927), + [anon_sym_LT] = ACTIONS(929), + [anon_sym_LBRACE_EQ] = ACTIONS(931), + [anon_sym_LBRACE_PLUS] = ACTIONS(933), + [anon_sym_LBRACE_DASH] = ACTIONS(935), + [sym_symbol] = ACTIONS(925), + [anon_sym_LBRACE_CARET] = ACTIONS(937), + [anon_sym_CARET] = ACTIONS(937), + [anon_sym_LBRACE_TILDE] = ACTIONS(939), + [anon_sym_TILDE] = ACTIONS(939), + [anon_sym_LBRACK_CARET] = ACTIONS(941), + [anon_sym_BANG_LBRACK] = ACTIONS(943), + [anon_sym_LBRACK] = ACTIONS(945), + [anon_sym_LBRACE2] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(947), + [anon_sym_TODO] = ACTIONS(949), + [anon_sym_WIP] = ACTIONS(949), + [anon_sym_NOTE] = ACTIONS(951), + [anon_sym_INFO] = ACTIONS(951), + [anon_sym_XXX] = ACTIONS(951), + [sym_fixme] = ACTIONS(925), + [anon_sym_PIPE] = ACTIONS(925), + [sym__whitespace1] = ACTIONS(953), + [sym__newline] = ACTIONS(955), + [aux_sym__text_token1] = ACTIONS(957), + [sym__verbatim_begin] = ACTIONS(959), }, - [114] = { - [sym__inline] = STATE(687), + [109] = { + [sym__inline] = STATE(671), [sym__element] = STATE(73), - [sym_emphasis] = STATE(178), - [sym_emphasis_begin] = STATE(119), - [sym_strong] = STATE(178), - [sym_strong_begin] = STATE(121), - [sym__hard_line_break] = STATE(178), - [sym_hard_line_break] = STATE(178), - [sym__smart_punctuation] = STATE(178), - [sym_autolink] = STATE(178), - [sym_highlighted] = STATE(178), - [sym_insert] = STATE(178), - [sym_delete] = STATE(178), - [sym_superscript] = STATE(178), - [sym_subscript] = STATE(178), - [sym_footnote_reference] = STATE(178), - [sym__image] = STATE(178), - [sym_full_reference_image] = STATE(178), - [sym_collapsed_reference_image] = STATE(178), - [sym_inline_image] = STATE(178), - [sym__image_description] = STATE(651), - [sym__link] = STATE(178), - [sym_full_reference_link] = STATE(178), - [sym_collapsed_reference_link] = STATE(178), - [sym_inline_link] = STATE(178), - [sym_link_text] = STATE(650), - [sym__comment_with_spaces] = STATE(178), - [sym_span] = STATE(178), - [sym_raw_inline] = STATE(178), - [sym_math] = STATE(178), - [sym_verbatim] = STATE(178), - [sym__todo_highlights] = STATE(178), - [sym_todo] = STATE(178), - [sym_note] = STATE(178), - [sym__symbol_fallback] = STATE(178), - [sym__verbatim_begin] = STATE(897), - [aux_sym__text] = STATE(167), + [sym_emphasis] = STATE(179), + [sym_emphasis_begin] = STATE(111), + [sym_strong] = STATE(179), + [sym_strong_begin] = STATE(112), + [sym__hard_line_break] = STATE(179), + [sym_hard_line_break] = STATE(179), + [sym__smart_punctuation] = STATE(179), + [sym_autolink] = STATE(179), + [sym_highlighted] = STATE(179), + [sym_insert] = STATE(179), + [sym_delete] = STATE(179), + [sym_superscript] = STATE(179), + [sym_subscript] = STATE(179), + [sym_footnote_reference] = STATE(179), + [sym__image] = STATE(179), + [sym_full_reference_image] = STATE(179), + [sym_collapsed_reference_image] = STATE(179), + [sym_inline_image] = STATE(179), + [sym__image_description] = STATE(625), + [sym__link] = STATE(179), + [sym_full_reference_link] = STATE(179), + [sym_collapsed_reference_link] = STATE(179), + [sym_inline_link] = STATE(179), + [sym_link_text] = STATE(647), + [sym__comment_with_spaces] = STATE(179), + [sym_span] = STATE(179), + [sym_raw_inline] = STATE(179), + [sym_math] = STATE(179), + [sym_verbatim] = STATE(179), + [sym__todo_highlights] = STATE(179), + [sym_todo] = STATE(179), + [sym_note] = STATE(179), + [sym__symbol_fallback] = STATE(179), + [aux_sym__text] = STATE(171), [aux_sym__inline_repeat1] = STATE(73), - [anon_sym_LBRACE_] = ACTIONS(549), - [anon_sym__] = ACTIONS(551), - [anon_sym_LBRACE_STAR] = ACTIONS(553), - [anon_sym_STAR] = ACTIONS(555), - [anon_sym_BSLASH] = ACTIONS(557), - [sym_quotation_marks] = ACTIONS(559), - [sym_ellipsis] = ACTIONS(559), - [sym_em_dash] = ACTIONS(559), - [sym_en_dash] = ACTIONS(561), - [sym_backslash_escape] = ACTIONS(561), - [anon_sym_LT] = ACTIONS(563), - [anon_sym_LBRACE_EQ] = ACTIONS(565), - [anon_sym_LBRACE_PLUS] = ACTIONS(567), - [anon_sym_LBRACE_DASH] = ACTIONS(569), - [sym_symbol] = ACTIONS(559), - [anon_sym_LBRACE_CARET] = ACTIONS(571), - [anon_sym_CARET] = ACTIONS(571), - [anon_sym_LBRACE_TILDE] = ACTIONS(573), - [anon_sym_TILDE] = ACTIONS(573), - [anon_sym_LBRACK_CARET] = ACTIONS(575), - [anon_sym_BANG_LBRACK] = ACTIONS(577), - [anon_sym_LBRACK] = ACTIONS(579), - [anon_sym_LBRACE2] = ACTIONS(561), - [anon_sym_DOLLAR] = ACTIONS(581), - [anon_sym_TODO] = ACTIONS(583), - [anon_sym_WIP] = ACTIONS(583), - [anon_sym_NOTE] = ACTIONS(585), - [anon_sym_INFO] = ACTIONS(585), - [anon_sym_XXX] = ACTIONS(585), - [sym_fixme] = ACTIONS(559), - [anon_sym_PIPE] = ACTIONS(559), - [anon_sym_BQUOTE] = ACTIONS(41), - [sym__whitespace1] = ACTIONS(587), - [sym__newline] = ACTIONS(589), - [aux_sym__text_token1] = ACTIONS(591), - }, - [115] = { - [sym__inline] = STATE(688), - [sym__element] = STATE(94), - [sym_emphasis] = STATE(201), - [sym_emphasis_begin] = STATE(116), - [sym_strong] = STATE(201), - [sym_strong_begin] = STATE(117), - [sym__hard_line_break] = STATE(201), - [sym_hard_line_break] = STATE(201), - [sym__smart_punctuation] = STATE(201), - [sym_autolink] = STATE(201), - [sym_highlighted] = STATE(201), - [sym_insert] = STATE(201), - [sym_delete] = STATE(201), - [sym_superscript] = STATE(201), - [sym_subscript] = STATE(201), - [sym_footnote_reference] = STATE(201), - [sym__image] = STATE(201), - [sym_full_reference_image] = STATE(201), - [sym_collapsed_reference_image] = STATE(201), - [sym_inline_image] = STATE(201), - [sym__image_description] = STATE(656), - [sym__link] = STATE(201), - [sym_full_reference_link] = STATE(201), - [sym_collapsed_reference_link] = STATE(201), - [sym_inline_link] = STATE(201), - [sym_link_text] = STATE(655), - [sym__comment_with_spaces] = STATE(201), - [sym_span] = STATE(201), - [sym_raw_inline] = STATE(201), - [sym_math] = STATE(201), - [sym_verbatim] = STATE(201), - [sym__todo_highlights] = STATE(201), - [sym_todo] = STATE(201), - [sym_note] = STATE(201), - [sym__symbol_fallback] = STATE(201), - [sym__verbatim_begin] = STATE(888), - [aux_sym__text] = STATE(153), - [aux_sym__inline_repeat1] = STATE(94), - [anon_sym_LBRACE_] = ACTIONS(916), - [anon_sym__] = ACTIONS(918), - [anon_sym_LBRACE_STAR] = ACTIONS(920), - [anon_sym_STAR] = ACTIONS(922), - [anon_sym_BSLASH] = ACTIONS(924), - [sym_quotation_marks] = ACTIONS(926), - [sym_ellipsis] = ACTIONS(926), - [sym_em_dash] = ACTIONS(926), - [sym_en_dash] = ACTIONS(928), - [sym_backslash_escape] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(930), - [anon_sym_LBRACE_EQ] = ACTIONS(932), - [anon_sym_LBRACE_PLUS] = ACTIONS(934), - [anon_sym_LBRACE_DASH] = ACTIONS(936), - [sym_symbol] = ACTIONS(926), - [anon_sym_LBRACE_CARET] = ACTIONS(938), - [anon_sym_CARET] = ACTIONS(938), - [anon_sym_LBRACE_TILDE] = ACTIONS(940), - [anon_sym_TILDE] = ACTIONS(940), - [anon_sym_LBRACK_CARET] = ACTIONS(942), - [anon_sym_BANG_LBRACK] = ACTIONS(944), - [anon_sym_LBRACK] = ACTIONS(946), - [anon_sym_LBRACE2] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(948), - [anon_sym_TODO] = ACTIONS(950), - [anon_sym_WIP] = ACTIONS(950), - [anon_sym_NOTE] = ACTIONS(952), - [anon_sym_INFO] = ACTIONS(952), - [anon_sym_XXX] = ACTIONS(952), - [sym_fixme] = ACTIONS(926), - [anon_sym_PIPE] = ACTIONS(926), - [anon_sym_BQUOTE] = ACTIONS(41), - [sym__whitespace1] = ACTIONS(954), - [sym__newline] = ACTIONS(956), - [aux_sym__text_token1] = ACTIONS(958), - }, - [116] = { - [sym__inline] = STATE(686), - [sym__element] = STATE(94), - [sym_emphasis] = STATE(201), - [sym_emphasis_begin] = STATE(116), - [sym_strong] = STATE(201), - [sym_strong_begin] = STATE(117), - [sym__hard_line_break] = STATE(201), - [sym_hard_line_break] = STATE(201), - [sym__smart_punctuation] = STATE(201), - [sym_autolink] = STATE(201), - [sym_highlighted] = STATE(201), - [sym_insert] = STATE(201), - [sym_delete] = STATE(201), - [sym_superscript] = STATE(201), - [sym_subscript] = STATE(201), - [sym_footnote_reference] = STATE(201), - [sym__image] = STATE(201), - [sym_full_reference_image] = STATE(201), - [sym_collapsed_reference_image] = STATE(201), - [sym_inline_image] = STATE(201), - [sym__image_description] = STATE(656), - [sym__link] = STATE(201), - [sym_full_reference_link] = STATE(201), - [sym_collapsed_reference_link] = STATE(201), - [sym_inline_link] = STATE(201), - [sym_link_text] = STATE(655), - [sym__comment_with_spaces] = STATE(201), - [sym_span] = STATE(201), - [sym_raw_inline] = STATE(201), - [sym_math] = STATE(201), - [sym_verbatim] = STATE(201), - [sym__todo_highlights] = STATE(201), - [sym_todo] = STATE(201), - [sym_note] = STATE(201), - [sym__symbol_fallback] = STATE(201), - [sym__verbatim_begin] = STATE(888), - [aux_sym__text] = STATE(153), - [aux_sym__inline_repeat1] = STATE(94), - [anon_sym_LBRACE_] = ACTIONS(916), - [anon_sym__] = ACTIONS(918), - [anon_sym_LBRACE_STAR] = ACTIONS(920), - [anon_sym_STAR] = ACTIONS(922), - [anon_sym_BSLASH] = ACTIONS(924), - [sym_quotation_marks] = ACTIONS(926), - [sym_ellipsis] = ACTIONS(926), - [sym_em_dash] = ACTIONS(926), - [sym_en_dash] = ACTIONS(928), - [sym_backslash_escape] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(930), - [anon_sym_LBRACE_EQ] = ACTIONS(932), - [anon_sym_LBRACE_PLUS] = ACTIONS(934), - [anon_sym_LBRACE_DASH] = ACTIONS(936), - [sym_symbol] = ACTIONS(926), - [anon_sym_LBRACE_CARET] = ACTIONS(938), - [anon_sym_CARET] = ACTIONS(938), - [anon_sym_LBRACE_TILDE] = ACTIONS(940), - [anon_sym_TILDE] = ACTIONS(940), - [anon_sym_LBRACK_CARET] = ACTIONS(942), - [anon_sym_BANG_LBRACK] = ACTIONS(944), - [anon_sym_LBRACK] = ACTIONS(946), - [anon_sym_LBRACE2] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(948), - [anon_sym_TODO] = ACTIONS(950), - [anon_sym_WIP] = ACTIONS(950), - [anon_sym_NOTE] = ACTIONS(952), - [anon_sym_INFO] = ACTIONS(952), - [anon_sym_XXX] = ACTIONS(952), - [sym_fixme] = ACTIONS(926), - [anon_sym_PIPE] = ACTIONS(926), - [anon_sym_BQUOTE] = ACTIONS(41), - [sym__whitespace1] = ACTIONS(954), - [sym__newline] = ACTIONS(956), - [aux_sym__text_token1] = ACTIONS(958), + [anon_sym_LBRACE_] = ACTIONS(610), + [anon_sym__] = ACTIONS(612), + [anon_sym_LBRACE_STAR] = ACTIONS(614), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_BSLASH] = ACTIONS(620), + [sym_quotation_marks] = ACTIONS(622), + [sym_ellipsis] = ACTIONS(622), + [sym_em_dash] = ACTIONS(622), + [sym_en_dash] = ACTIONS(624), + [sym_backslash_escape] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_LBRACE_EQ] = ACTIONS(628), + [anon_sym_LBRACE_PLUS] = ACTIONS(630), + [anon_sym_LBRACE_DASH] = ACTIONS(632), + [sym_symbol] = ACTIONS(622), + [anon_sym_LBRACE_CARET] = ACTIONS(634), + [anon_sym_CARET] = ACTIONS(634), + [anon_sym_LBRACE_TILDE] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(636), + [anon_sym_LBRACK_CARET] = ACTIONS(638), + [anon_sym_BANG_LBRACK] = ACTIONS(640), + [anon_sym_LBRACK] = ACTIONS(642), + [anon_sym_LBRACE2] = ACTIONS(624), + [anon_sym_DOLLAR] = ACTIONS(644), + [anon_sym_TODO] = ACTIONS(646), + [anon_sym_WIP] = ACTIONS(646), + [anon_sym_NOTE] = ACTIONS(648), + [anon_sym_INFO] = ACTIONS(648), + [anon_sym_XXX] = ACTIONS(648), + [sym_fixme] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [sym__whitespace1] = ACTIONS(963), + [sym__newline] = ACTIONS(965), + [aux_sym__text_token1] = ACTIONS(654), + [sym__verbatim_begin] = ACTIONS(656), }, - [117] = { - [sym__inline] = STATE(685), - [sym__element] = STATE(73), + [110] = { + [sym__inline] = STATE(752), + [sym__element] = STATE(79), [sym_emphasis] = STATE(178), - [sym_emphasis_begin] = STATE(119), + [sym_emphasis_begin] = STATE(115), [sym_strong] = STATE(178), - [sym_strong_begin] = STATE(121), + [sym_strong_begin] = STATE(117), [sym__hard_line_break] = STATE(178), [sym_hard_line_break] = STATE(178), [sym__smart_punctuation] = STATE(178), @@ -17130,12 +16322,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_full_reference_image] = STATE(178), [sym_collapsed_reference_image] = STATE(178), [sym_inline_image] = STATE(178), - [sym__image_description] = STATE(651), + [sym__image_description] = STATE(640), [sym__link] = STATE(178), [sym_full_reference_link] = STATE(178), [sym_collapsed_reference_link] = STATE(178), [sym_inline_link] = STATE(178), - [sym_link_text] = STATE(650), + [sym_link_text] = STATE(636), [sym__comment_with_spaces] = STATE(178), [sym_span] = STATE(178), [sym_raw_inline] = STATE(178), @@ -17145,52 +16337,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(178), [sym_note] = STATE(178), [sym__symbol_fallback] = STATE(178), - [sym__verbatim_begin] = STATE(897), - [aux_sym__text] = STATE(167), - [aux_sym__inline_repeat1] = STATE(73), - [anon_sym_LBRACE_] = ACTIONS(549), - [anon_sym__] = ACTIONS(551), - [anon_sym_LBRACE_STAR] = ACTIONS(553), - [anon_sym_STAR] = ACTIONS(555), - [anon_sym_BSLASH] = ACTIONS(557), - [sym_quotation_marks] = ACTIONS(559), - [sym_ellipsis] = ACTIONS(559), - [sym_em_dash] = ACTIONS(559), - [sym_en_dash] = ACTIONS(561), - [sym_backslash_escape] = ACTIONS(561), - [anon_sym_LT] = ACTIONS(563), - [anon_sym_LBRACE_EQ] = ACTIONS(565), - [anon_sym_LBRACE_PLUS] = ACTIONS(567), - [anon_sym_LBRACE_DASH] = ACTIONS(569), - [sym_symbol] = ACTIONS(559), - [anon_sym_LBRACE_CARET] = ACTIONS(571), - [anon_sym_CARET] = ACTIONS(571), - [anon_sym_LBRACE_TILDE] = ACTIONS(573), - [anon_sym_TILDE] = ACTIONS(573), - [anon_sym_LBRACK_CARET] = ACTIONS(575), - [anon_sym_BANG_LBRACK] = ACTIONS(577), - [anon_sym_LBRACK] = ACTIONS(579), - [anon_sym_LBRACE2] = ACTIONS(561), - [anon_sym_DOLLAR] = ACTIONS(581), - [anon_sym_TODO] = ACTIONS(583), - [anon_sym_WIP] = ACTIONS(583), - [anon_sym_NOTE] = ACTIONS(585), - [anon_sym_INFO] = ACTIONS(585), - [anon_sym_XXX] = ACTIONS(585), - [sym_fixme] = ACTIONS(559), - [anon_sym_PIPE] = ACTIONS(559), - [anon_sym_BQUOTE] = ACTIONS(41), - [sym__whitespace1] = ACTIONS(587), - [sym__newline] = ACTIONS(589), - [aux_sym__text_token1] = ACTIONS(591), + [aux_sym__text] = STATE(146), + [aux_sym__inline_repeat1] = STATE(79), + [anon_sym_LBRACE_] = ACTIONS(564), + [anon_sym__] = ACTIONS(566), + [anon_sym_LBRACE_STAR] = ACTIONS(568), + [anon_sym_STAR] = ACTIONS(570), + [anon_sym_BSLASH] = ACTIONS(572), + [sym_quotation_marks] = ACTIONS(574), + [sym_ellipsis] = ACTIONS(574), + [sym_em_dash] = ACTIONS(574), + [sym_en_dash] = ACTIONS(576), + [sym_backslash_escape] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(578), + [anon_sym_LBRACE_EQ] = ACTIONS(580), + [anon_sym_LBRACE_PLUS] = ACTIONS(582), + [anon_sym_LBRACE_DASH] = ACTIONS(584), + [sym_symbol] = ACTIONS(574), + [anon_sym_LBRACE_CARET] = ACTIONS(586), + [anon_sym_CARET] = ACTIONS(586), + [anon_sym_LBRACE_TILDE] = ACTIONS(588), + [anon_sym_TILDE] = ACTIONS(588), + [anon_sym_LBRACK_CARET] = ACTIONS(590), + [anon_sym_BANG_LBRACK] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_LBRACE2] = ACTIONS(576), + [anon_sym_DOLLAR] = ACTIONS(596), + [anon_sym_TODO] = ACTIONS(598), + [anon_sym_WIP] = ACTIONS(598), + [anon_sym_NOTE] = ACTIONS(600), + [anon_sym_INFO] = ACTIONS(600), + [anon_sym_XXX] = ACTIONS(600), + [sym_fixme] = ACTIONS(574), + [anon_sym_PIPE] = ACTIONS(574), + [sym__whitespace1] = ACTIONS(602), + [sym__newline] = ACTIONS(604), + [aux_sym__text_token1] = ACTIONS(606), + [sym__verbatim_begin] = ACTIONS(608), }, - [118] = { - [sym__inline] = STATE(774), - [sym__element] = STATE(79), + [111] = { + [sym__inline] = STATE(659), + [sym__element] = STATE(87), [sym_emphasis] = STATE(189), - [sym_emphasis_begin] = STATE(92), + [sym_emphasis_begin] = STATE(108), [sym_strong] = STATE(189), - [sym_strong_begin] = STATE(93), + [sym_strong_begin] = STATE(109), [sym__hard_line_break] = STATE(189), [sym_hard_line_break] = STATE(189), [sym__smart_punctuation] = STATE(189), @@ -17205,12 +16396,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_full_reference_image] = STATE(189), [sym_collapsed_reference_image] = STATE(189), [sym_inline_image] = STATE(189), - [sym__image_description] = STATE(660), + [sym__image_description] = STATE(655), [sym__link] = STATE(189), [sym_full_reference_link] = STATE(189), [sym_collapsed_reference_link] = STATE(189), [sym_inline_link] = STATE(189), - [sym_link_text] = STATE(646), + [sym_link_text] = STATE(626), [sym__comment_with_spaces] = STATE(189), [sym_span] = STATE(189), [sym_raw_inline] = STATE(189), @@ -17220,127 +16411,273 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(189), [sym_note] = STATE(189), [sym__symbol_fallback] = STATE(189), - [sym__verbatim_begin] = STATE(906), - [aux_sym__text] = STATE(123), - [aux_sym__inline_repeat1] = STATE(79), - [anon_sym_LBRACE_] = ACTIONS(672), - [anon_sym__] = ACTIONS(674), - [anon_sym_LBRACE_STAR] = ACTIONS(676), - [anon_sym_STAR] = ACTIONS(678), - [anon_sym_BSLASH] = ACTIONS(680), - [sym_quotation_marks] = ACTIONS(682), - [sym_ellipsis] = ACTIONS(682), - [sym_em_dash] = ACTIONS(682), - [sym_en_dash] = ACTIONS(684), - [sym_backslash_escape] = ACTIONS(684), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_LBRACE_EQ] = ACTIONS(688), - [anon_sym_LBRACE_PLUS] = ACTIONS(690), - [anon_sym_LBRACE_DASH] = ACTIONS(692), - [sym_symbol] = ACTIONS(682), - [anon_sym_LBRACE_CARET] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym_LBRACE_TILDE] = ACTIONS(696), - [anon_sym_TILDE] = ACTIONS(696), - [anon_sym_LBRACK_CARET] = ACTIONS(698), - [anon_sym_BANG_LBRACK] = ACTIONS(700), - [anon_sym_LBRACK] = ACTIONS(702), - [anon_sym_LBRACE2] = ACTIONS(684), - [anon_sym_DOLLAR] = ACTIONS(704), - [anon_sym_TODO] = ACTIONS(706), - [anon_sym_WIP] = ACTIONS(706), - [anon_sym_NOTE] = ACTIONS(708), - [anon_sym_INFO] = ACTIONS(708), - [anon_sym_XXX] = ACTIONS(708), - [sym_fixme] = ACTIONS(682), - [anon_sym_PIPE] = ACTIONS(682), - [anon_sym_BQUOTE] = ACTIONS(41), - [sym__whitespace1] = ACTIONS(710), - [sym__newline] = ACTIONS(712), - [aux_sym__text_token1] = ACTIONS(714), + [aux_sym__text] = STATE(155), + [aux_sym__inline_repeat1] = STATE(87), + [anon_sym_LBRACE_] = ACTIONS(915), + [anon_sym__] = ACTIONS(917), + [anon_sym_LBRACE_STAR] = ACTIONS(919), + [anon_sym_STAR] = ACTIONS(921), + [anon_sym_BSLASH] = ACTIONS(923), + [sym_quotation_marks] = ACTIONS(925), + [sym_ellipsis] = ACTIONS(925), + [sym_em_dash] = ACTIONS(925), + [sym_en_dash] = ACTIONS(927), + [sym_backslash_escape] = ACTIONS(927), + [anon_sym_LT] = ACTIONS(929), + [anon_sym_LBRACE_EQ] = ACTIONS(931), + [anon_sym_LBRACE_PLUS] = ACTIONS(933), + [anon_sym_LBRACE_DASH] = ACTIONS(935), + [sym_symbol] = ACTIONS(925), + [anon_sym_LBRACE_CARET] = ACTIONS(937), + [anon_sym_CARET] = ACTIONS(937), + [anon_sym_LBRACE_TILDE] = ACTIONS(939), + [anon_sym_TILDE] = ACTIONS(939), + [anon_sym_LBRACK_CARET] = ACTIONS(941), + [anon_sym_BANG_LBRACK] = ACTIONS(943), + [anon_sym_LBRACK] = ACTIONS(945), + [anon_sym_LBRACE2] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(947), + [anon_sym_TODO] = ACTIONS(949), + [anon_sym_WIP] = ACTIONS(949), + [anon_sym_NOTE] = ACTIONS(951), + [anon_sym_INFO] = ACTIONS(951), + [anon_sym_XXX] = ACTIONS(951), + [sym_fixme] = ACTIONS(925), + [anon_sym_PIPE] = ACTIONS(925), + [sym__whitespace1] = ACTIONS(953), + [sym__newline] = ACTIONS(955), + [aux_sym__text_token1] = ACTIONS(957), + [sym__verbatim_begin] = ACTIONS(959), }, - [119] = { - [sym__inline] = STATE(691), - [sym__element] = STATE(94), - [sym_emphasis] = STATE(201), - [sym_emphasis_begin] = STATE(116), - [sym_strong] = STATE(201), - [sym_strong_begin] = STATE(117), - [sym__hard_line_break] = STATE(201), - [sym_hard_line_break] = STATE(201), - [sym__smart_punctuation] = STATE(201), - [sym_autolink] = STATE(201), - [sym_highlighted] = STATE(201), - [sym_insert] = STATE(201), - [sym_delete] = STATE(201), - [sym_superscript] = STATE(201), - [sym_subscript] = STATE(201), - [sym_footnote_reference] = STATE(201), - [sym__image] = STATE(201), - [sym_full_reference_image] = STATE(201), - [sym_collapsed_reference_image] = STATE(201), - [sym_inline_image] = STATE(201), - [sym__image_description] = STATE(656), - [sym__link] = STATE(201), - [sym_full_reference_link] = STATE(201), - [sym_collapsed_reference_link] = STATE(201), - [sym_inline_link] = STATE(201), - [sym_link_text] = STATE(655), - [sym__comment_with_spaces] = STATE(201), - [sym_span] = STATE(201), - [sym_raw_inline] = STATE(201), - [sym_math] = STATE(201), - [sym_verbatim] = STATE(201), - [sym__todo_highlights] = STATE(201), - [sym_todo] = STATE(201), - [sym_note] = STATE(201), - [sym__symbol_fallback] = STATE(201), - [sym__verbatim_begin] = STATE(888), - [aux_sym__text] = STATE(153), - [aux_sym__inline_repeat1] = STATE(94), - [anon_sym_LBRACE_] = ACTIONS(916), - [anon_sym__] = ACTIONS(918), - [anon_sym_LBRACE_STAR] = ACTIONS(920), - [anon_sym_STAR] = ACTIONS(922), - [anon_sym_BSLASH] = ACTIONS(924), - [sym_quotation_marks] = ACTIONS(926), - [sym_ellipsis] = ACTIONS(926), - [sym_em_dash] = ACTIONS(926), - [sym_en_dash] = ACTIONS(928), - [sym_backslash_escape] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(930), - [anon_sym_LBRACE_EQ] = ACTIONS(932), - [anon_sym_LBRACE_PLUS] = ACTIONS(934), - [anon_sym_LBRACE_DASH] = ACTIONS(936), - [sym_symbol] = ACTIONS(926), - [anon_sym_LBRACE_CARET] = ACTIONS(938), - [anon_sym_CARET] = ACTIONS(938), - [anon_sym_LBRACE_TILDE] = ACTIONS(940), - [anon_sym_TILDE] = ACTIONS(940), - [anon_sym_LBRACK_CARET] = ACTIONS(942), - [anon_sym_BANG_LBRACK] = ACTIONS(944), - [anon_sym_LBRACK] = ACTIONS(946), - [anon_sym_LBRACE2] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(948), - [anon_sym_TODO] = ACTIONS(950), - [anon_sym_WIP] = ACTIONS(950), - [anon_sym_NOTE] = ACTIONS(952), - [anon_sym_INFO] = ACTIONS(952), - [anon_sym_XXX] = ACTIONS(952), - [sym_fixme] = ACTIONS(926), - [anon_sym_PIPE] = ACTIONS(926), - [anon_sym_BQUOTE] = ACTIONS(41), - [sym__whitespace1] = ACTIONS(954), - [sym__newline] = ACTIONS(956), - [aux_sym__text_token1] = ACTIONS(958), + [112] = { + [sym__inline] = STATE(666), + [sym__element] = STATE(73), + [sym_emphasis] = STATE(179), + [sym_emphasis_begin] = STATE(111), + [sym_strong] = STATE(179), + [sym_strong_begin] = STATE(112), + [sym__hard_line_break] = STATE(179), + [sym_hard_line_break] = STATE(179), + [sym__smart_punctuation] = STATE(179), + [sym_autolink] = STATE(179), + [sym_highlighted] = STATE(179), + [sym_insert] = STATE(179), + [sym_delete] = STATE(179), + [sym_superscript] = STATE(179), + [sym_subscript] = STATE(179), + [sym_footnote_reference] = STATE(179), + [sym__image] = STATE(179), + [sym_full_reference_image] = STATE(179), + [sym_collapsed_reference_image] = STATE(179), + [sym_inline_image] = STATE(179), + [sym__image_description] = STATE(625), + [sym__link] = STATE(179), + [sym_full_reference_link] = STATE(179), + [sym_collapsed_reference_link] = STATE(179), + [sym_inline_link] = STATE(179), + [sym_link_text] = STATE(647), + [sym__comment_with_spaces] = STATE(179), + [sym_span] = STATE(179), + [sym_raw_inline] = STATE(179), + [sym_math] = STATE(179), + [sym_verbatim] = STATE(179), + [sym__todo_highlights] = STATE(179), + [sym_todo] = STATE(179), + [sym_note] = STATE(179), + [sym__symbol_fallback] = STATE(179), + [aux_sym__text] = STATE(171), + [aux_sym__inline_repeat1] = STATE(73), + [anon_sym_LBRACE_] = ACTIONS(610), + [anon_sym__] = ACTIONS(612), + [anon_sym_LBRACE_STAR] = ACTIONS(614), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_BSLASH] = ACTIONS(620), + [sym_quotation_marks] = ACTIONS(622), + [sym_ellipsis] = ACTIONS(622), + [sym_em_dash] = ACTIONS(622), + [sym_en_dash] = ACTIONS(624), + [sym_backslash_escape] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_LBRACE_EQ] = ACTIONS(628), + [anon_sym_LBRACE_PLUS] = ACTIONS(630), + [anon_sym_LBRACE_DASH] = ACTIONS(632), + [sym_symbol] = ACTIONS(622), + [anon_sym_LBRACE_CARET] = ACTIONS(634), + [anon_sym_CARET] = ACTIONS(634), + [anon_sym_LBRACE_TILDE] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(636), + [anon_sym_LBRACK_CARET] = ACTIONS(638), + [anon_sym_BANG_LBRACK] = ACTIONS(640), + [anon_sym_LBRACK] = ACTIONS(642), + [anon_sym_LBRACE2] = ACTIONS(624), + [anon_sym_DOLLAR] = ACTIONS(644), + [anon_sym_TODO] = ACTIONS(646), + [anon_sym_WIP] = ACTIONS(646), + [anon_sym_NOTE] = ACTIONS(648), + [anon_sym_INFO] = ACTIONS(648), + [anon_sym_XXX] = ACTIONS(648), + [sym_fixme] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [sym__whitespace1] = ACTIONS(963), + [sym__newline] = ACTIONS(965), + [aux_sym__text_token1] = ACTIONS(654), + [sym__verbatim_begin] = ACTIONS(656), }, - [120] = { - [sym__inline] = STATE(809), + [113] = { + [sym__element] = STATE(113), + [sym_emphasis] = STATE(174), + [sym_emphasis_begin] = STATE(86), + [sym_strong] = STATE(174), + [sym_strong_begin] = STATE(89), + [sym__hard_line_break] = STATE(174), + [sym_hard_line_break] = STATE(174), + [sym__smart_punctuation] = STATE(174), + [sym_autolink] = STATE(174), + [sym_highlighted] = STATE(174), + [sym_insert] = STATE(174), + [sym_delete] = STATE(174), + [sym_superscript] = STATE(174), + [sym_subscript] = STATE(174), + [sym_footnote_reference] = STATE(174), + [sym__image] = STATE(174), + [sym_full_reference_image] = STATE(174), + [sym_collapsed_reference_image] = STATE(174), + [sym_inline_image] = STATE(174), + [sym__image_description] = STATE(630), + [sym__link] = STATE(174), + [sym_full_reference_link] = STATE(174), + [sym_collapsed_reference_link] = STATE(174), + [sym_inline_link] = STATE(174), + [sym_link_text] = STATE(631), + [sym__comment_with_spaces] = STATE(174), + [sym_span] = STATE(174), + [sym_raw_inline] = STATE(174), + [sym_math] = STATE(174), + [sym_verbatim] = STATE(174), + [sym__todo_highlights] = STATE(174), + [sym_todo] = STATE(174), + [sym_note] = STATE(174), + [sym__symbol_fallback] = STATE(174), + [aux_sym__text] = STATE(148), + [aux_sym__inline_repeat1] = STATE(113), + [anon_sym_LBRACE_] = ACTIONS(1344), + [anon_sym__] = ACTIONS(1347), + [anon_sym_LBRACE_STAR] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1353), + [anon_sym_BSLASH] = ACTIONS(1356), + [sym_quotation_marks] = ACTIONS(1359), + [sym_ellipsis] = ACTIONS(1359), + [sym_em_dash] = ACTIONS(1359), + [sym_en_dash] = ACTIONS(1362), + [sym_backslash_escape] = ACTIONS(1362), + [anon_sym_LT] = ACTIONS(1365), + [anon_sym_LBRACE_EQ] = ACTIONS(1368), + [anon_sym_LBRACE_PLUS] = ACTIONS(1371), + [anon_sym_PLUS_RBRACE] = ACTIONS(670), + [anon_sym_LBRACE_DASH] = ACTIONS(1374), + [sym_symbol] = ACTIONS(1359), + [anon_sym_LBRACE_CARET] = ACTIONS(1377), + [anon_sym_CARET] = ACTIONS(1377), + [anon_sym_LBRACE_TILDE] = ACTIONS(1380), + [anon_sym_TILDE] = ACTIONS(1380), + [anon_sym_LBRACK_CARET] = ACTIONS(1383), + [anon_sym_BANG_LBRACK] = ACTIONS(1386), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LBRACE2] = ACTIONS(1362), + [anon_sym_DOLLAR] = ACTIONS(1392), + [anon_sym_TODO] = ACTIONS(1395), + [anon_sym_WIP] = ACTIONS(1395), + [anon_sym_NOTE] = ACTIONS(1398), + [anon_sym_INFO] = ACTIONS(1398), + [anon_sym_XXX] = ACTIONS(1398), + [sym_fixme] = ACTIONS(1359), + [anon_sym_PIPE] = ACTIONS(1359), + [sym__whitespace1] = ACTIONS(1401), + [sym__newline] = ACTIONS(1404), + [aux_sym__text_token1] = ACTIONS(1407), + [sym__verbatim_begin] = ACTIONS(1410), + }, + [114] = { + [sym__inline] = STATE(771), [sym__element] = STATE(79), + [sym_emphasis] = STATE(178), + [sym_emphasis_begin] = STATE(115), + [sym_strong] = STATE(178), + [sym_strong_begin] = STATE(117), + [sym__hard_line_break] = STATE(178), + [sym_hard_line_break] = STATE(178), + [sym__smart_punctuation] = STATE(178), + [sym_autolink] = STATE(178), + [sym_highlighted] = STATE(178), + [sym_insert] = STATE(178), + [sym_delete] = STATE(178), + [sym_superscript] = STATE(178), + [sym_subscript] = STATE(178), + [sym_footnote_reference] = STATE(178), + [sym__image] = STATE(178), + [sym_full_reference_image] = STATE(178), + [sym_collapsed_reference_image] = STATE(178), + [sym_inline_image] = STATE(178), + [sym__image_description] = STATE(640), + [sym__link] = STATE(178), + [sym_full_reference_link] = STATE(178), + [sym_collapsed_reference_link] = STATE(178), + [sym_inline_link] = STATE(178), + [sym_link_text] = STATE(636), + [sym__comment_with_spaces] = STATE(178), + [sym_span] = STATE(178), + [sym_raw_inline] = STATE(178), + [sym_math] = STATE(178), + [sym_verbatim] = STATE(178), + [sym__todo_highlights] = STATE(178), + [sym_todo] = STATE(178), + [sym_note] = STATE(178), + [sym__symbol_fallback] = STATE(178), + [aux_sym__text] = STATE(146), + [aux_sym__inline_repeat1] = STATE(79), + [anon_sym_LBRACE_] = ACTIONS(564), + [anon_sym__] = ACTIONS(566), + [anon_sym_LBRACE_STAR] = ACTIONS(568), + [anon_sym_STAR] = ACTIONS(570), + [anon_sym_BSLASH] = ACTIONS(572), + [sym_quotation_marks] = ACTIONS(574), + [sym_ellipsis] = ACTIONS(574), + [sym_em_dash] = ACTIONS(574), + [sym_en_dash] = ACTIONS(576), + [sym_backslash_escape] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(578), + [anon_sym_LBRACE_EQ] = ACTIONS(580), + [anon_sym_LBRACE_PLUS] = ACTIONS(582), + [anon_sym_LBRACE_DASH] = ACTIONS(584), + [sym_symbol] = ACTIONS(574), + [anon_sym_LBRACE_CARET] = ACTIONS(586), + [anon_sym_CARET] = ACTIONS(586), + [anon_sym_LBRACE_TILDE] = ACTIONS(588), + [anon_sym_TILDE] = ACTIONS(588), + [anon_sym_LBRACK_CARET] = ACTIONS(590), + [anon_sym_BANG_LBRACK] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_LBRACE2] = ACTIONS(576), + [anon_sym_DOLLAR] = ACTIONS(596), + [anon_sym_TODO] = ACTIONS(598), + [anon_sym_WIP] = ACTIONS(598), + [anon_sym_NOTE] = ACTIONS(600), + [anon_sym_INFO] = ACTIONS(600), + [anon_sym_XXX] = ACTIONS(600), + [sym_fixme] = ACTIONS(574), + [anon_sym_PIPE] = ACTIONS(574), + [sym__whitespace1] = ACTIONS(602), + [sym__newline] = ACTIONS(604), + [aux_sym__text_token1] = ACTIONS(606), + [sym__verbatim_begin] = ACTIONS(608), + }, + [115] = { + [sym__inline] = STATE(676), + [sym__element] = STATE(87), [sym_emphasis] = STATE(189), - [sym_emphasis_begin] = STATE(92), + [sym_emphasis_begin] = STATE(108), [sym_strong] = STATE(189), - [sym_strong_begin] = STATE(93), + [sym_strong_begin] = STATE(109), [sym__hard_line_break] = STATE(189), [sym_hard_line_break] = STATE(189), [sym__smart_punctuation] = STATE(189), @@ -17355,12 +16692,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_full_reference_image] = STATE(189), [sym_collapsed_reference_image] = STATE(189), [sym_inline_image] = STATE(189), - [sym__image_description] = STATE(660), + [sym__image_description] = STATE(655), [sym__link] = STATE(189), [sym_full_reference_link] = STATE(189), [sym_collapsed_reference_link] = STATE(189), [sym_inline_link] = STATE(189), - [sym_link_text] = STATE(646), + [sym_link_text] = STATE(626), [sym__comment_with_spaces] = STATE(189), [sym_span] = STATE(189), [sym_raw_inline] = STATE(189), @@ -17370,759 +16707,502 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(189), [sym_note] = STATE(189), [sym__symbol_fallback] = STATE(189), - [sym__verbatim_begin] = STATE(906), - [aux_sym__text] = STATE(123), - [aux_sym__inline_repeat1] = STATE(79), - [anon_sym_LBRACE_] = ACTIONS(672), - [anon_sym__] = ACTIONS(674), - [anon_sym_LBRACE_STAR] = ACTIONS(676), - [anon_sym_STAR] = ACTIONS(678), - [anon_sym_BSLASH] = ACTIONS(680), - [sym_quotation_marks] = ACTIONS(682), - [sym_ellipsis] = ACTIONS(682), - [sym_em_dash] = ACTIONS(682), - [sym_en_dash] = ACTIONS(684), - [sym_backslash_escape] = ACTIONS(684), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_LBRACE_EQ] = ACTIONS(688), - [anon_sym_LBRACE_PLUS] = ACTIONS(690), - [anon_sym_LBRACE_DASH] = ACTIONS(692), - [sym_symbol] = ACTIONS(682), - [anon_sym_LBRACE_CARET] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym_LBRACE_TILDE] = ACTIONS(696), - [anon_sym_TILDE] = ACTIONS(696), - [anon_sym_LBRACK_CARET] = ACTIONS(698), - [anon_sym_BANG_LBRACK] = ACTIONS(700), - [anon_sym_LBRACK] = ACTIONS(702), - [anon_sym_LBRACE2] = ACTIONS(684), - [anon_sym_DOLLAR] = ACTIONS(704), - [anon_sym_TODO] = ACTIONS(706), - [anon_sym_WIP] = ACTIONS(706), - [anon_sym_NOTE] = ACTIONS(708), - [anon_sym_INFO] = ACTIONS(708), - [anon_sym_XXX] = ACTIONS(708), - [sym_fixme] = ACTIONS(682), - [anon_sym_PIPE] = ACTIONS(682), - [anon_sym_BQUOTE] = ACTIONS(41), - [sym__whitespace1] = ACTIONS(710), - [sym__newline] = ACTIONS(712), - [aux_sym__text_token1] = ACTIONS(714), + [aux_sym__text] = STATE(155), + [aux_sym__inline_repeat1] = STATE(87), + [anon_sym_LBRACE_] = ACTIONS(915), + [anon_sym__] = ACTIONS(917), + [anon_sym_LBRACE_STAR] = ACTIONS(919), + [anon_sym_STAR] = ACTIONS(921), + [anon_sym_BSLASH] = ACTIONS(923), + [sym_quotation_marks] = ACTIONS(925), + [sym_ellipsis] = ACTIONS(925), + [sym_em_dash] = ACTIONS(925), + [sym_en_dash] = ACTIONS(927), + [sym_backslash_escape] = ACTIONS(927), + [anon_sym_LT] = ACTIONS(929), + [anon_sym_LBRACE_EQ] = ACTIONS(931), + [anon_sym_LBRACE_PLUS] = ACTIONS(933), + [anon_sym_LBRACE_DASH] = ACTIONS(935), + [sym_symbol] = ACTIONS(925), + [anon_sym_LBRACE_CARET] = ACTIONS(937), + [anon_sym_CARET] = ACTIONS(937), + [anon_sym_LBRACE_TILDE] = ACTIONS(939), + [anon_sym_TILDE] = ACTIONS(939), + [anon_sym_LBRACK_CARET] = ACTIONS(941), + [anon_sym_BANG_LBRACK] = ACTIONS(943), + [anon_sym_LBRACK] = ACTIONS(945), + [anon_sym_LBRACE2] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(947), + [anon_sym_TODO] = ACTIONS(949), + [anon_sym_WIP] = ACTIONS(949), + [anon_sym_NOTE] = ACTIONS(951), + [anon_sym_INFO] = ACTIONS(951), + [anon_sym_XXX] = ACTIONS(951), + [sym_fixme] = ACTIONS(925), + [anon_sym_PIPE] = ACTIONS(925), + [sym__whitespace1] = ACTIONS(953), + [sym__newline] = ACTIONS(955), + [aux_sym__text_token1] = ACTIONS(957), + [sym__verbatim_begin] = ACTIONS(959), }, - [121] = { - [sym__inline] = STATE(690), + [116] = { + [sym__element] = STATE(121), + [sym_emphasis] = STATE(183), + [sym_emphasis_begin] = STATE(91), + [sym_strong] = STATE(183), + [sym_strong_begin] = STATE(92), + [sym__hard_line_break] = STATE(183), + [sym_hard_line_break] = STATE(183), + [sym__smart_punctuation] = STATE(183), + [sym_autolink] = STATE(183), + [sym_highlighted] = STATE(183), + [sym_insert] = STATE(183), + [sym_delete] = STATE(183), + [sym_superscript] = STATE(183), + [sym_subscript] = STATE(183), + [sym_footnote_reference] = STATE(183), + [sym__image] = STATE(183), + [sym_full_reference_image] = STATE(183), + [sym_collapsed_reference_image] = STATE(183), + [sym_inline_image] = STATE(183), + [sym__image_description] = STATE(645), + [sym__link] = STATE(183), + [sym_full_reference_link] = STATE(183), + [sym_collapsed_reference_link] = STATE(183), + [sym_inline_link] = STATE(183), + [sym_link_text] = STATE(646), + [sym__comment_with_spaces] = STATE(183), + [sym_span] = STATE(183), + [sym_raw_inline] = STATE(183), + [sym_math] = STATE(183), + [sym_verbatim] = STATE(183), + [sym__todo_highlights] = STATE(183), + [sym_todo] = STATE(183), + [sym_note] = STATE(183), + [sym__symbol_fallback] = STATE(183), + [aux_sym__text] = STATE(149), + [aux_sym__inline_repeat1] = STATE(121), + [anon_sym_LBRACE_] = ACTIONS(1413), + [anon_sym__] = ACTIONS(1415), + [anon_sym_LBRACE_STAR] = ACTIONS(1417), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_BSLASH] = ACTIONS(1421), + [sym_quotation_marks] = ACTIONS(1423), + [sym_ellipsis] = ACTIONS(1423), + [sym_em_dash] = ACTIONS(1423), + [sym_en_dash] = ACTIONS(1425), + [sym_backslash_escape] = ACTIONS(1425), + [anon_sym_LT] = ACTIONS(1427), + [anon_sym_LBRACE_EQ] = ACTIONS(1429), + [anon_sym_LBRACE_PLUS] = ACTIONS(1431), + [anon_sym_LBRACE_DASH] = ACTIONS(1433), + [anon_sym_DASH_RBRACE] = ACTIONS(618), + [sym_symbol] = ACTIONS(1423), + [anon_sym_LBRACE_CARET] = ACTIONS(1435), + [anon_sym_CARET] = ACTIONS(1435), + [anon_sym_LBRACE_TILDE] = ACTIONS(1437), + [anon_sym_TILDE] = ACTIONS(1437), + [anon_sym_LBRACK_CARET] = ACTIONS(1439), + [anon_sym_BANG_LBRACK] = ACTIONS(1441), + [anon_sym_LBRACK] = ACTIONS(1443), + [anon_sym_LBRACE2] = ACTIONS(1425), + [anon_sym_DOLLAR] = ACTIONS(1445), + [anon_sym_TODO] = ACTIONS(1447), + [anon_sym_WIP] = ACTIONS(1447), + [anon_sym_NOTE] = ACTIONS(1449), + [anon_sym_INFO] = ACTIONS(1449), + [anon_sym_XXX] = ACTIONS(1449), + [sym_fixme] = ACTIONS(1423), + [anon_sym_PIPE] = ACTIONS(1423), + [sym__whitespace1] = ACTIONS(1451), + [sym__newline] = ACTIONS(1453), + [aux_sym__text_token1] = ACTIONS(1455), + [sym__verbatim_begin] = ACTIONS(1457), + }, + [117] = { + [sym__inline] = STATE(677), [sym__element] = STATE(73), - [sym_emphasis] = STATE(178), - [sym_emphasis_begin] = STATE(119), - [sym_strong] = STATE(178), - [sym_strong_begin] = STATE(121), - [sym__hard_line_break] = STATE(178), - [sym_hard_line_break] = STATE(178), - [sym__smart_punctuation] = STATE(178), - [sym_autolink] = STATE(178), - [sym_highlighted] = STATE(178), - [sym_insert] = STATE(178), - [sym_delete] = STATE(178), - [sym_superscript] = STATE(178), - [sym_subscript] = STATE(178), - [sym_footnote_reference] = STATE(178), - [sym__image] = STATE(178), - [sym_full_reference_image] = STATE(178), - [sym_collapsed_reference_image] = STATE(178), - [sym_inline_image] = STATE(178), - [sym__image_description] = STATE(651), - [sym__link] = STATE(178), - [sym_full_reference_link] = STATE(178), - [sym_collapsed_reference_link] = STATE(178), - [sym_inline_link] = STATE(178), - [sym_link_text] = STATE(650), - [sym__comment_with_spaces] = STATE(178), - [sym_span] = STATE(178), - [sym_raw_inline] = STATE(178), - [sym_math] = STATE(178), - [sym_verbatim] = STATE(178), - [sym__todo_highlights] = STATE(178), - [sym_todo] = STATE(178), - [sym_note] = STATE(178), - [sym__symbol_fallback] = STATE(178), - [sym__verbatim_begin] = STATE(897), - [aux_sym__text] = STATE(167), + [sym_emphasis] = STATE(179), + [sym_emphasis_begin] = STATE(111), + [sym_strong] = STATE(179), + [sym_strong_begin] = STATE(112), + [sym__hard_line_break] = STATE(179), + [sym_hard_line_break] = STATE(179), + [sym__smart_punctuation] = STATE(179), + [sym_autolink] = STATE(179), + [sym_highlighted] = STATE(179), + [sym_insert] = STATE(179), + [sym_delete] = STATE(179), + [sym_superscript] = STATE(179), + [sym_subscript] = STATE(179), + [sym_footnote_reference] = STATE(179), + [sym__image] = STATE(179), + [sym_full_reference_image] = STATE(179), + [sym_collapsed_reference_image] = STATE(179), + [sym_inline_image] = STATE(179), + [sym__image_description] = STATE(625), + [sym__link] = STATE(179), + [sym_full_reference_link] = STATE(179), + [sym_collapsed_reference_link] = STATE(179), + [sym_inline_link] = STATE(179), + [sym_link_text] = STATE(647), + [sym__comment_with_spaces] = STATE(179), + [sym_span] = STATE(179), + [sym_raw_inline] = STATE(179), + [sym_math] = STATE(179), + [sym_verbatim] = STATE(179), + [sym__todo_highlights] = STATE(179), + [sym_todo] = STATE(179), + [sym_note] = STATE(179), + [sym__symbol_fallback] = STATE(179), + [aux_sym__text] = STATE(171), [aux_sym__inline_repeat1] = STATE(73), - [anon_sym_LBRACE_] = ACTIONS(549), - [anon_sym__] = ACTIONS(551), - [anon_sym_LBRACE_STAR] = ACTIONS(553), - [anon_sym_STAR] = ACTIONS(555), - [anon_sym_BSLASH] = ACTIONS(557), - [sym_quotation_marks] = ACTIONS(559), - [sym_ellipsis] = ACTIONS(559), - [sym_em_dash] = ACTIONS(559), - [sym_en_dash] = ACTIONS(561), - [sym_backslash_escape] = ACTIONS(561), - [anon_sym_LT] = ACTIONS(563), - [anon_sym_LBRACE_EQ] = ACTIONS(565), - [anon_sym_LBRACE_PLUS] = ACTIONS(567), - [anon_sym_LBRACE_DASH] = ACTIONS(569), - [sym_symbol] = ACTIONS(559), - [anon_sym_LBRACE_CARET] = ACTIONS(571), - [anon_sym_CARET] = ACTIONS(571), - [anon_sym_LBRACE_TILDE] = ACTIONS(573), - [anon_sym_TILDE] = ACTIONS(573), - [anon_sym_LBRACK_CARET] = ACTIONS(575), - [anon_sym_BANG_LBRACK] = ACTIONS(577), - [anon_sym_LBRACK] = ACTIONS(579), - [anon_sym_LBRACE2] = ACTIONS(561), - [anon_sym_DOLLAR] = ACTIONS(581), - [anon_sym_TODO] = ACTIONS(583), - [anon_sym_WIP] = ACTIONS(583), - [anon_sym_NOTE] = ACTIONS(585), - [anon_sym_INFO] = ACTIONS(585), - [anon_sym_XXX] = ACTIONS(585), - [sym_fixme] = ACTIONS(559), - [anon_sym_PIPE] = ACTIONS(559), - [anon_sym_BQUOTE] = ACTIONS(41), - [sym__whitespace1] = ACTIONS(587), - [sym__newline] = ACTIONS(589), - [aux_sym__text_token1] = ACTIONS(591), + [anon_sym_LBRACE_] = ACTIONS(610), + [anon_sym__] = ACTIONS(612), + [anon_sym_LBRACE_STAR] = ACTIONS(614), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_BSLASH] = ACTIONS(620), + [sym_quotation_marks] = ACTIONS(622), + [sym_ellipsis] = ACTIONS(622), + [sym_em_dash] = ACTIONS(622), + [sym_en_dash] = ACTIONS(624), + [sym_backslash_escape] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_LBRACE_EQ] = ACTIONS(628), + [anon_sym_LBRACE_PLUS] = ACTIONS(630), + [anon_sym_LBRACE_DASH] = ACTIONS(632), + [sym_symbol] = ACTIONS(622), + [anon_sym_LBRACE_CARET] = ACTIONS(634), + [anon_sym_CARET] = ACTIONS(634), + [anon_sym_LBRACE_TILDE] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(636), + [anon_sym_LBRACK_CARET] = ACTIONS(638), + [anon_sym_BANG_LBRACK] = ACTIONS(640), + [anon_sym_LBRACK] = ACTIONS(642), + [anon_sym_LBRACE2] = ACTIONS(624), + [anon_sym_DOLLAR] = ACTIONS(644), + [anon_sym_TODO] = ACTIONS(646), + [anon_sym_WIP] = ACTIONS(646), + [anon_sym_NOTE] = ACTIONS(648), + [anon_sym_INFO] = ACTIONS(648), + [anon_sym_XXX] = ACTIONS(648), + [sym_fixme] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [sym__whitespace1] = ACTIONS(963), + [sym__newline] = ACTIONS(965), + [aux_sym__text_token1] = ACTIONS(654), + [sym__verbatim_begin] = ACTIONS(656), }, -}; - -static const uint16_t ts_small_parse_table[] = { - [0] = 4, - ACTIONS(1636), 1, - anon_sym_LBRACE_EQ2, - STATE(432), 1, - sym_raw_inline_attribute, - ACTIONS(1632), 8, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE_EQ, - anon_sym_LBRACK, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(1634), 29, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_RBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - anon_sym_PIPE, - anon_sym_BQUOTE, - sym__whitespace1, - sym__newline, - [48] = 5, - ACTIONS(1638), 1, - anon_sym_LBRACE, - STATE(199), 1, - aux_sym__text, - STATE(571), 1, - sym_inline_attribute, - ACTIONS(1642), 6, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(1640), 30, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - anon_sym_PIPE, - anon_sym_BQUOTE, - sym__whitespace1, - sym__newline, - [98] = 6, - ACTIONS(49), 1, - ts_builtin_sym_end, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(1647), 1, - anon_sym_SPACE, - STATE(287), 1, - aux_sym_emphasis_begin_repeat1, - ACTIONS(1649), 7, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE2, - sym__whitespace1, - aux_sym__text_token1, - ACTIONS(1644), 28, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - anon_sym_PIPE, - anon_sym_BQUOTE, - sym__newline, - [150] = 6, - ACTIONS(49), 1, - anon_sym_EQ_RBRACE, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(1647), 1, - anon_sym_SPACE, - STATE(287), 1, - aux_sym_emphasis_begin_repeat1, - ACTIONS(1649), 7, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE2, - sym__whitespace1, - aux_sym__text_token1, - ACTIONS(1644), 28, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - anon_sym_PIPE, - anon_sym_BQUOTE, - sym__newline, - [202] = 5, - ACTIONS(1652), 1, - anon_sym_LBRACE, - STATE(176), 1, - aux_sym__text, - STATE(591), 1, - sym_inline_attribute, - ACTIONS(1642), 6, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(1640), 30, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_RBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - anon_sym_PIPE, - anon_sym_BQUOTE, - sym__whitespace1, - sym__newline, - [252] = 4, - ACTIONS(1654), 1, - sym__id, - STATE(816), 1, - sym_reference_label, - ACTIONS(51), 15, - anon_sym_LBRACE, - anon_sym__, - anon_sym_BSLASH, - sym_em_dash, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE2, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - aux_sym__text_token1, - ACTIONS(49), 22, - anon_sym_LBRACE_, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_PIPE, - anon_sym_BQUOTE, - sym__whitespace1, - sym__newline, - [300] = 4, - ACTIONS(1654), 1, - sym__id, - STATE(841), 1, - sym_reference_label, - ACTIONS(51), 15, - anon_sym_LBRACE, - anon_sym__, - anon_sym_BSLASH, - sym_em_dash, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE2, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - aux_sym__text_token1, - ACTIONS(49), 22, - ts_builtin_sym_end, - anon_sym_LBRACE_, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_PIPE, - anon_sym_BQUOTE, - sym__whitespace1, - sym__newline, - [348] = 4, - ACTIONS(1654), 1, - sym__id, - STATE(796), 1, - sym_reference_label, - ACTIONS(51), 15, - anon_sym_LBRACE, - anon_sym__, - anon_sym_BSLASH, - sym_em_dash, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE2, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - aux_sym__text_token1, - ACTIONS(49), 22, - anon_sym_LBRACE_, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_PIPE, - anon_sym_BQUOTE, - sym__whitespace1, - sym__newline, - [396] = 5, - ACTIONS(1656), 1, - anon_sym_LBRACE, - STATE(192), 1, - aux_sym__text, - STATE(583), 1, - sym_inline_attribute, - ACTIONS(1642), 6, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(1640), 30, - ts_builtin_sym_end, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - anon_sym_PIPE, - anon_sym_BQUOTE, - sym__whitespace1, - sym__newline, - [446] = 4, - ACTIONS(1654), 1, - sym__id, - STATE(759), 1, - sym_reference_label, - ACTIONS(51), 15, - anon_sym_LBRACE, - anon_sym__, - anon_sym_BSLASH, - sym_em_dash, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE2, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - aux_sym__text_token1, - ACTIONS(49), 22, - anon_sym_LBRACE_, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_RBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_PIPE, - anon_sym_BQUOTE, - sym__whitespace1, - sym__newline, - [494] = 4, - ACTIONS(1658), 1, - anon_sym_LBRACE_EQ2, - STATE(237), 1, - sym_raw_inline_attribute, - ACTIONS(1632), 8, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE_EQ, - anon_sym_LBRACK, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(1634), 29, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - anon_sym_PIPE, - anon_sym_BQUOTE, - sym__whitespace1, - sym__newline, - [542] = 6, - ACTIONS(49), 1, - ts_builtin_sym_end, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(1663), 1, - anon_sym_SPACE, - STATE(279), 1, - aux_sym_emphasis_begin_repeat1, - ACTIONS(1665), 7, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE2, - sym__whitespace1, - aux_sym__text_token1, - ACTIONS(1660), 28, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - anon_sym_PIPE, - anon_sym_BQUOTE, - sym__newline, - [594] = 5, - ACTIONS(1668), 1, - anon_sym_LBRACE, - STATE(202), 1, - aux_sym__text, - STATE(592), 1, - sym_inline_attribute, - ACTIONS(1642), 6, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(1640), 30, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - anon_sym_PIPE, - anon_sym_BQUOTE, - sym__whitespace1, - sym__newline, - [644] = 4, - ACTIONS(1670), 1, - anon_sym_LBRACE_EQ2, - STATE(464), 1, - sym_raw_inline_attribute, - ACTIONS(1632), 8, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE_EQ, - anon_sym_LBRACK, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(1634), 29, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - anon_sym_PIPE, - anon_sym_BQUOTE, - sym__whitespace1, - sym__newline, - [692] = 6, + [118] = { + [sym__element] = STATE(118), + [sym_emphasis] = STATE(182), + [sym_emphasis_begin] = STATE(97), + [sym_strong] = STATE(182), + [sym_strong_begin] = STATE(99), + [sym__hard_line_break] = STATE(182), + [sym_hard_line_break] = STATE(182), + [sym__smart_punctuation] = STATE(182), + [sym_autolink] = STATE(182), + [sym_highlighted] = STATE(182), + [sym_insert] = STATE(182), + [sym_delete] = STATE(182), + [sym_superscript] = STATE(182), + [sym_subscript] = STATE(182), + [sym_footnote_reference] = STATE(182), + [sym__image] = STATE(182), + [sym_full_reference_image] = STATE(182), + [sym_collapsed_reference_image] = STATE(182), + [sym_inline_image] = STATE(182), + [sym__image_description] = STATE(628), + [sym__link] = STATE(182), + [sym_full_reference_link] = STATE(182), + [sym_collapsed_reference_link] = STATE(182), + [sym_inline_link] = STATE(182), + [sym_link_text] = STATE(627), + [sym__comment_with_spaces] = STATE(182), + [sym_span] = STATE(182), + [sym_raw_inline] = STATE(182), + [sym_math] = STATE(182), + [sym_verbatim] = STATE(182), + [sym__todo_highlights] = STATE(182), + [sym_todo] = STATE(182), + [sym_note] = STATE(182), + [sym__symbol_fallback] = STATE(182), + [aux_sym__text] = STATE(136), + [aux_sym__inline_repeat1] = STATE(118), + [anon_sym_LBRACE_] = ACTIONS(1459), + [anon_sym__] = ACTIONS(1462), + [anon_sym_LBRACE_STAR] = ACTIONS(1465), + [anon_sym_STAR] = ACTIONS(1468), + [anon_sym_BSLASH] = ACTIONS(1471), + [sym_quotation_marks] = ACTIONS(1474), + [sym_ellipsis] = ACTIONS(1474), + [sym_em_dash] = ACTIONS(1474), + [sym_en_dash] = ACTIONS(1477), + [sym_backslash_escape] = ACTIONS(1477), + [anon_sym_LT] = ACTIONS(1480), + [anon_sym_LBRACE_EQ] = ACTIONS(1483), + [anon_sym_LBRACE_PLUS] = ACTIONS(1486), + [anon_sym_LBRACE_DASH] = ACTIONS(1489), + [sym_symbol] = ACTIONS(1474), + [anon_sym_LBRACE_CARET] = ACTIONS(1492), + [anon_sym_CARET] = ACTIONS(1492), + [anon_sym_LBRACE_TILDE] = ACTIONS(1495), + [anon_sym_TILDE] = ACTIONS(1498), + [anon_sym_TILDE_RBRACE] = ACTIONS(670), + [anon_sym_LBRACK_CARET] = ACTIONS(1501), + [anon_sym_BANG_LBRACK] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1507), + [anon_sym_LBRACE2] = ACTIONS(1477), + [anon_sym_DOLLAR] = ACTIONS(1510), + [anon_sym_TODO] = ACTIONS(1513), + [anon_sym_WIP] = ACTIONS(1513), + [anon_sym_NOTE] = ACTIONS(1516), + [anon_sym_INFO] = ACTIONS(1516), + [anon_sym_XXX] = ACTIONS(1516), + [sym_fixme] = ACTIONS(1474), + [anon_sym_PIPE] = ACTIONS(1474), + [sym__whitespace1] = ACTIONS(1519), + [sym__newline] = ACTIONS(1522), + [aux_sym__text_token1] = ACTIONS(1525), + [sym__verbatim_begin] = ACTIONS(1528), + }, + [119] = { + [sym__element] = STATE(98), + [sym_emphasis] = STATE(197), + [sym_emphasis_begin] = STATE(81), + [sym_strong] = STATE(197), + [sym_strong_begin] = STATE(82), + [sym__hard_line_break] = STATE(197), + [sym_hard_line_break] = STATE(197), + [sym__smart_punctuation] = STATE(197), + [sym_autolink] = STATE(197), + [sym_highlighted] = STATE(197), + [sym_insert] = STATE(197), + [sym_delete] = STATE(197), + [sym_superscript] = STATE(197), + [sym_subscript] = STATE(197), + [sym_footnote_reference] = STATE(197), + [sym__image] = STATE(197), + [sym_full_reference_image] = STATE(197), + [sym_collapsed_reference_image] = STATE(197), + [sym_inline_image] = STATE(197), + [sym__image_description] = STATE(654), + [sym__link] = STATE(197), + [sym_full_reference_link] = STATE(197), + [sym_collapsed_reference_link] = STATE(197), + [sym_inline_link] = STATE(197), + [sym_link_text] = STATE(651), + [sym__comment_with_spaces] = STATE(197), + [sym_span] = STATE(197), + [sym_raw_inline] = STATE(197), + [sym_math] = STATE(197), + [sym_verbatim] = STATE(197), + [sym__todo_highlights] = STATE(197), + [sym_todo] = STATE(197), + [sym_note] = STATE(197), + [sym__symbol_fallback] = STATE(197), + [aux_sym__text] = STATE(132), + [aux_sym__inline_repeat1] = STATE(98), + [anon_sym_LBRACE_] = ACTIONS(1531), + [anon_sym__] = ACTIONS(1533), + [anon_sym_LBRACE_STAR] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(1537), + [anon_sym_BSLASH] = ACTIONS(1539), + [sym_quotation_marks] = ACTIONS(1541), + [sym_ellipsis] = ACTIONS(1541), + [sym_em_dash] = ACTIONS(1541), + [sym_en_dash] = ACTIONS(1543), + [sym_backslash_escape] = ACTIONS(1543), + [anon_sym_LT] = ACTIONS(1545), + [anon_sym_LBRACE_EQ] = ACTIONS(1547), + [anon_sym_EQ_RBRACE] = ACTIONS(618), + [anon_sym_LBRACE_PLUS] = ACTIONS(1549), + [anon_sym_LBRACE_DASH] = ACTIONS(1551), + [sym_symbol] = ACTIONS(1541), + [anon_sym_LBRACE_CARET] = ACTIONS(1553), + [anon_sym_CARET] = ACTIONS(1553), + [anon_sym_LBRACE_TILDE] = ACTIONS(1555), + [anon_sym_TILDE] = ACTIONS(1555), + [anon_sym_LBRACK_CARET] = ACTIONS(1557), + [anon_sym_BANG_LBRACK] = ACTIONS(1559), + [anon_sym_LBRACK] = ACTIONS(1561), + [anon_sym_LBRACE2] = ACTIONS(1543), + [anon_sym_DOLLAR] = ACTIONS(1563), + [anon_sym_TODO] = ACTIONS(1565), + [anon_sym_WIP] = ACTIONS(1565), + [anon_sym_NOTE] = ACTIONS(1567), + [anon_sym_INFO] = ACTIONS(1567), + [anon_sym_XXX] = ACTIONS(1567), + [sym_fixme] = ACTIONS(1541), + [anon_sym_PIPE] = ACTIONS(1541), + [sym__whitespace1] = ACTIONS(1569), + [sym__newline] = ACTIONS(1571), + [aux_sym__text_token1] = ACTIONS(1573), + [sym__verbatim_begin] = ACTIONS(1575), + }, + [120] = { + [sym__element] = STATE(118), + [sym_emphasis] = STATE(182), + [sym_emphasis_begin] = STATE(97), + [sym_strong] = STATE(182), + [sym_strong_begin] = STATE(99), + [sym__hard_line_break] = STATE(182), + [sym_hard_line_break] = STATE(182), + [sym__smart_punctuation] = STATE(182), + [sym_autolink] = STATE(182), + [sym_highlighted] = STATE(182), + [sym_insert] = STATE(182), + [sym_delete] = STATE(182), + [sym_superscript] = STATE(182), + [sym_subscript] = STATE(182), + [sym_footnote_reference] = STATE(182), + [sym__image] = STATE(182), + [sym_full_reference_image] = STATE(182), + [sym_collapsed_reference_image] = STATE(182), + [sym_inline_image] = STATE(182), + [sym__image_description] = STATE(628), + [sym__link] = STATE(182), + [sym_full_reference_link] = STATE(182), + [sym_collapsed_reference_link] = STATE(182), + [sym_inline_link] = STATE(182), + [sym_link_text] = STATE(627), + [sym__comment_with_spaces] = STATE(182), + [sym_span] = STATE(182), + [sym_raw_inline] = STATE(182), + [sym_math] = STATE(182), + [sym_verbatim] = STATE(182), + [sym__todo_highlights] = STATE(182), + [sym_todo] = STATE(182), + [sym_note] = STATE(182), + [sym__symbol_fallback] = STATE(182), + [aux_sym__text] = STATE(136), + [aux_sym__inline_repeat1] = STATE(118), + [anon_sym_LBRACE_] = ACTIONS(1577), + [anon_sym__] = ACTIONS(1579), + [anon_sym_LBRACE_STAR] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(1583), + [anon_sym_BSLASH] = ACTIONS(1585), + [sym_quotation_marks] = ACTIONS(1587), + [sym_ellipsis] = ACTIONS(1587), + [sym_em_dash] = ACTIONS(1587), + [sym_en_dash] = ACTIONS(1589), + [sym_backslash_escape] = ACTIONS(1589), + [anon_sym_LT] = ACTIONS(1591), + [anon_sym_LBRACE_EQ] = ACTIONS(1593), + [anon_sym_LBRACE_PLUS] = ACTIONS(1595), + [anon_sym_LBRACE_DASH] = ACTIONS(1597), + [sym_symbol] = ACTIONS(1587), + [anon_sym_LBRACE_CARET] = ACTIONS(1599), + [anon_sym_CARET] = ACTIONS(1599), + [anon_sym_LBRACE_TILDE] = ACTIONS(1601), + [anon_sym_TILDE] = ACTIONS(616), + [anon_sym_TILDE_RBRACE] = ACTIONS(618), + [anon_sym_LBRACK_CARET] = ACTIONS(1603), + [anon_sym_BANG_LBRACK] = ACTIONS(1605), + [anon_sym_LBRACK] = ACTIONS(1607), + [anon_sym_LBRACE2] = ACTIONS(1589), + [anon_sym_DOLLAR] = ACTIONS(1609), + [anon_sym_TODO] = ACTIONS(1611), + [anon_sym_WIP] = ACTIONS(1611), + [anon_sym_NOTE] = ACTIONS(1613), + [anon_sym_INFO] = ACTIONS(1613), + [anon_sym_XXX] = ACTIONS(1613), + [sym_fixme] = ACTIONS(1587), + [anon_sym_PIPE] = ACTIONS(1587), + [sym__whitespace1] = ACTIONS(1615), + [sym__newline] = ACTIONS(1617), + [aux_sym__text_token1] = ACTIONS(1619), + [sym__verbatim_begin] = ACTIONS(1621), + }, + [121] = { + [sym__element] = STATE(121), + [sym_emphasis] = STATE(183), + [sym_emphasis_begin] = STATE(91), + [sym_strong] = STATE(183), + [sym_strong_begin] = STATE(92), + [sym__hard_line_break] = STATE(183), + [sym_hard_line_break] = STATE(183), + [sym__smart_punctuation] = STATE(183), + [sym_autolink] = STATE(183), + [sym_highlighted] = STATE(183), + [sym_insert] = STATE(183), + [sym_delete] = STATE(183), + [sym_superscript] = STATE(183), + [sym_subscript] = STATE(183), + [sym_footnote_reference] = STATE(183), + [sym__image] = STATE(183), + [sym_full_reference_image] = STATE(183), + [sym_collapsed_reference_image] = STATE(183), + [sym_inline_image] = STATE(183), + [sym__image_description] = STATE(645), + [sym__link] = STATE(183), + [sym_full_reference_link] = STATE(183), + [sym_collapsed_reference_link] = STATE(183), + [sym_inline_link] = STATE(183), + [sym_link_text] = STATE(646), + [sym__comment_with_spaces] = STATE(183), + [sym_span] = STATE(183), + [sym_raw_inline] = STATE(183), + [sym_math] = STATE(183), + [sym_verbatim] = STATE(183), + [sym__todo_highlights] = STATE(183), + [sym_todo] = STATE(183), + [sym_note] = STATE(183), + [sym__symbol_fallback] = STATE(183), + [aux_sym__text] = STATE(149), + [aux_sym__inline_repeat1] = STATE(121), + [anon_sym_LBRACE_] = ACTIONS(1623), + [anon_sym__] = ACTIONS(1626), + [anon_sym_LBRACE_STAR] = ACTIONS(1629), + [anon_sym_STAR] = ACTIONS(1632), + [anon_sym_BSLASH] = ACTIONS(1635), + [sym_quotation_marks] = ACTIONS(1638), + [sym_ellipsis] = ACTIONS(1638), + [sym_em_dash] = ACTIONS(1638), + [sym_en_dash] = ACTIONS(1641), + [sym_backslash_escape] = ACTIONS(1641), + [anon_sym_LT] = ACTIONS(1644), + [anon_sym_LBRACE_EQ] = ACTIONS(1647), + [anon_sym_LBRACE_PLUS] = ACTIONS(1650), + [anon_sym_LBRACE_DASH] = ACTIONS(1653), + [anon_sym_DASH_RBRACE] = ACTIONS(670), + [sym_symbol] = ACTIONS(1638), + [anon_sym_LBRACE_CARET] = ACTIONS(1656), + [anon_sym_CARET] = ACTIONS(1656), + [anon_sym_LBRACE_TILDE] = ACTIONS(1659), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_LBRACK_CARET] = ACTIONS(1662), + [anon_sym_BANG_LBRACK] = ACTIONS(1665), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACE2] = ACTIONS(1641), + [anon_sym_DOLLAR] = ACTIONS(1671), + [anon_sym_TODO] = ACTIONS(1674), + [anon_sym_WIP] = ACTIONS(1674), + [anon_sym_NOTE] = ACTIONS(1677), + [anon_sym_INFO] = ACTIONS(1677), + [anon_sym_XXX] = ACTIONS(1677), + [sym_fixme] = ACTIONS(1638), + [anon_sym_PIPE] = ACTIONS(1638), + [sym__whitespace1] = ACTIONS(1680), + [sym__newline] = ACTIONS(1683), + [aux_sym__text_token1] = ACTIONS(1686), + [sym__verbatim_begin] = ACTIONS(1689), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 6, ACTIONS(49), 1, - anon_sym_DASH_RBRACE, - ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(1663), 1, + ACTIONS(93), 1, + aux_sym_emphasis_end_token1, + ACTIONS(1695), 1, anon_sym_SPACE, - STATE(279), 1, + STATE(282), 1, aux_sym_emphasis_begin_repeat1, - ACTIONS(1665), 7, + ACTIONS(1697), 8, + anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, @@ -18130,9 +17210,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1660), 28, + ACTIONS(1692), 27, + sym__verbatim_begin, anon_sym_LBRACE_, - anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -18157,19 +17237,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__newline, - [744] = 6, + [52] = 6, ACTIONS(49), 1, - aux_sym_emphasis_end_token1, - ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(1663), 1, + ACTIONS(93), 1, + aux_sym_strong_end_token1, + ACTIONS(1703), 1, anon_sym_SPACE, - STATE(279), 1, + STATE(291), 1, aux_sym_emphasis_begin_repeat1, - ACTIONS(1665), 8, - anon_sym__, + ACTIONS(1705), 8, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, @@ -18177,10 +17256,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1660), 27, + ACTIONS(1700), 27, + sym__verbatim_begin, anon_sym_LBRACE_, + anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -18203,81 +17283,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__newline, - [796] = 6, - ACTIONS(49), 1, - aux_sym_emphasis_end_token1, - ACTIONS(51), 1, + [104] = 4, + ACTIONS(1708), 1, + sym__id, + STATE(800), 1, + sym_reference_label, + ACTIONS(49), 15, anon_sym_LBRACE, - ACTIONS(1647), 1, - anon_sym_SPACE, - STATE(287), 1, - aux_sym_emphasis_begin_repeat1, - ACTIONS(1649), 8, anon_sym__, anon_sym_BSLASH, + sym_em_dash, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, - aux_sym__text_token1, - ACTIONS(1644), 27, - anon_sym_LBRACE_, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, anon_sym_NOTE, anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, - anon_sym_BQUOTE, - sym__newline, - [848] = 5, - ACTIONS(1672), 1, - anon_sym_LBRACE, - STATE(204), 1, - aux_sym__text, - STATE(567), 1, - sym_inline_attribute, - ACTIONS(1642), 6, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1640), 30, + ACTIONS(93), 22, + sym__verbatim_begin, anon_sym_LBRACE_, - anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, sym_ellipsis, - sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -18286,26 +17325,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [898] = 6, + [152] = 6, ACTIONS(49), 1, - anon_sym_DASH_RBRACE, - ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(1647), 1, + ACTIONS(93), 1, + anon_sym_EQ_RBRACE, + ACTIONS(1703), 1, anon_sym_SPACE, - STATE(287), 1, + STATE(291), 1, aux_sym_emphasis_begin_repeat1, - ACTIONS(1649), 7, + ACTIONS(1705), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, @@ -18313,7 +17345,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1644), 28, + ACTIONS(1700), 28, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18340,18 +17373,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__newline, - [950] = 6, + [204] = 6, ACTIONS(49), 1, - anon_sym_RBRACK, - ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(1647), 1, + ACTIONS(93), 1, + anon_sym_RBRACK, + ACTIONS(1703), 1, anon_sym_SPACE, - STATE(287), 1, + STATE(291), 1, aux_sym_emphasis_begin_repeat1, - ACTIONS(1649), 7, + ACTIONS(1705), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, @@ -18359,7 +17391,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1644), 28, + ACTIONS(1700), 28, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18386,18 +17419,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__newline, - [1002] = 6, + [256] = 6, ACTIONS(49), 1, - anon_sym_RBRACK, - ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(1663), 1, + ACTIONS(93), 1, + anon_sym_RBRACK, + ACTIONS(1695), 1, anon_sym_SPACE, - STATE(279), 1, + STATE(282), 1, aux_sym_emphasis_begin_repeat1, - ACTIONS(1665), 7, + ACTIONS(1697), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, @@ -18405,7 +17437,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1660), 28, + ACTIONS(1692), 28, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18432,14 +17465,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__newline, - [1054] = 4, - ACTIONS(1674), 1, + [308] = 4, + ACTIONS(1714), 1, anon_sym_LBRACE_EQ2, - STATE(379), 1, + STATE(366), 1, sym_raw_inline_attribute, - ACTIONS(1632), 9, + ACTIONS(1710), 9, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -18449,7 +17481,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1634), 28, + ACTIONS(1712), 28, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18475,24 +17508,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [1102] = 4, - ACTIONS(1676), 1, - anon_sym_LBRACE_EQ2, - STATE(273), 1, - sym_raw_inline_attribute, - ACTIONS(1632), 8, + [356] = 6, + ACTIONS(49), 1, anon_sym_LBRACE, + ACTIONS(93), 1, + anon_sym_DASH_RBRACE, + ACTIONS(1695), 1, + anon_sym_SPACE, + STATE(282), 1, + aux_sym_emphasis_begin_repeat1, + ACTIONS(1697), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE_EQ, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1634), 29, + ACTIONS(1692), 28, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18501,9 +17537,9 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, sym_em_dash, anon_sym_LT, + anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -18519,28 +17555,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, - sym__whitespace1, sym__newline, - [1150] = 6, + [408] = 6, ACTIONS(49), 1, - anon_sym_CARET_RBRACE, - ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(1663), 1, + ACTIONS(93), 1, + ts_builtin_sym_end, + ACTIONS(1703), 1, anon_sym_SPACE, - STATE(279), 1, + STATE(291), 1, aux_sym_emphasis_begin_repeat1, - ACTIONS(1665), 8, + ACTIONS(1705), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1660), 27, + ACTIONS(1700), 28, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18554,6 +17588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, + anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -18566,27 +17601,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__newline, - [1202] = 6, - ACTIONS(49), 1, - anon_sym_CARET_RBRACE, - ACTIONS(51), 1, + [460] = 4, + ACTIONS(1716), 1, + anon_sym_LBRACE_EQ2, + STATE(227), 1, + sym_raw_inline_attribute, + ACTIONS(1710), 8, anon_sym_LBRACE, - ACTIONS(1647), 1, - anon_sym_SPACE, - STATE(287), 1, - aux_sym_emphasis_begin_repeat1, - ACTIONS(1649), 8, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, + anon_sym_LBRACE_EQ, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1644), 27, + ACTIONS(1712), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18595,11 +17626,12 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, + anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -18612,39 +17644,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, + sym__whitespace1, sym__newline, - [1254] = 4, - ACTIONS(1654), 1, - sym__id, - STATE(784), 1, - sym_reference_label, - ACTIONS(51), 17, + [508] = 5, + ACTIONS(1718), 1, anon_sym_LBRACE, - anon_sym__, - anon_sym_STAR, + STATE(191), 1, + aux_sym__text, + STATE(560), 1, + sym_inline_attribute, + ACTIONS(1722), 6, anon_sym_BSLASH, - sym_em_dash, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(49), 20, + ACTIONS(1720), 30, + sym__verbatim_begin, anon_sym_LBRACE_, + anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, + sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -18655,59 +17682,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, - anon_sym_PIPE, - anon_sym_BQUOTE, - sym__newline, - [1302] = 4, - ACTIONS(1654), 1, - sym__id, - STATE(801), 1, - sym_reference_label, - ACTIONS(51), 15, - anon_sym_LBRACE, - anon_sym__, - anon_sym_BSLASH, - sym_em_dash, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE2, anon_sym_TODO, anon_sym_WIP, anon_sym_NOTE, anon_sym_INFO, anon_sym_XXX, sym_fixme, - aux_sym__text_token1, - ACTIONS(49), 22, - anon_sym_LBRACE_, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, - anon_sym_DOLLAR, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [1350] = 4, - ACTIONS(1654), 1, + [558] = 4, + ACTIONS(1708), 1, sym__id, - STATE(771), 1, + STATE(817), 1, sym_reference_label, - ACTIONS(51), 16, + ACTIONS(49), 15, anon_sym_LBRACE, anon_sym__, anon_sym_BSLASH, @@ -18722,11 +17711,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(49), 21, + ACTIONS(93), 22, + sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -18744,24 +17733,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_PIPE, - anon_sym_BQUOTE, + sym__whitespace1, sym__newline, - [1398] = 5, - ACTIONS(1678), 1, + [606] = 5, + ACTIONS(1724), 1, anon_sym_LBRACE, - STATE(195), 1, + STATE(185), 1, aux_sym__text, - STATE(575), 1, + STATE(571), 1, sym_inline_attribute, - ACTIONS(1642), 7, + ACTIONS(1722), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1640), 29, + ACTIONS(1720), 30, + sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18777,7 +17767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -18788,22 +17778,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [1448] = 4, - ACTIONS(1654), 1, + [656] = 4, + ACTIONS(1708), 1, sym__id, - STATE(873), 1, + STATE(728), 1, sym_reference_label, - ACTIONS(51), 16, + ACTIONS(49), 15, anon_sym_LBRACE, anon_sym__, anon_sym_BSLASH, sym_em_dash, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, anon_sym_TODO, @@ -18813,53 +17801,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, aux_sym__text_token1, - ACTIONS(49), 21, - anon_sym_LBRACE_, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_PIPE, - anon_sym_BQUOTE, - sym__whitespace1, - sym__newline, - [1496] = 6, - ACTIONS(49), 1, - anon_sym_RBRACK2, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(1647), 1, - anon_sym_SPACE, - STATE(287), 1, - aux_sym_emphasis_begin_repeat1, - ACTIONS(1649), 7, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE2, - sym__whitespace1, - aux_sym__text_token1, - ACTIONS(1644), 28, + ACTIONS(93), 22, + sym__verbatim_begin, anon_sym_LBRACE_, - anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, sym_ellipsis, - sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, @@ -18870,36 +17818,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, + sym__whitespace1, sym__newline, - [1548] = 5, - ACTIONS(1680), 1, + [704] = 5, + ACTIONS(1726), 1, anon_sym_LBRACE, - STATE(188), 1, + STATE(193), 1, aux_sym__text, - STATE(586), 1, + STATE(559), 1, sym_inline_attribute, - ACTIONS(1642), 8, - anon_sym__, + ACTIONS(1722), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1640), 28, + ACTIONS(1720), 29, + sym__verbatim_begin, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -18913,7 +17856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -18924,21 +17867,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, + sym__whitespace1, sym__newline, - [1598] = 4, - ACTIONS(1654), 1, + [754] = 4, + ACTIONS(1708), 1, sym__id, - STATE(817), 1, + STATE(742), 1, sym_reference_label, - ACTIONS(51), 16, + ACTIONS(49), 15, anon_sym_LBRACE, anon_sym__, anon_sym_BSLASH, sym_em_dash, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, anon_sym_TODO, @@ -18948,7 +17890,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, aux_sym__text_token1, - ACTIONS(49), 21, + ACTIONS(93), 22, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym_LBRACE_STAR, anon_sym_STAR, @@ -18958,33 +17901,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [1646] = 5, - ACTIONS(1682), 1, + [802] = 5, + ACTIONS(1728), 1, anon_sym_LBRACE, - STATE(198), 1, + STATE(192), 1, aux_sym__text, - STATE(577), 1, + STATE(564), 1, sym_inline_attribute, - ACTIONS(1642), 6, + ACTIONS(1722), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1640), 30, + ACTIONS(1720), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18995,7 +17939,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -19003,6 +17946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -19012,63 +17956,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [1696] = 4, - ACTIONS(1684), 1, - anon_sym_LBRACE_EQ2, - STATE(442), 1, - sym_raw_inline_attribute, - ACTIONS(1632), 8, + [852] = 4, + ACTIONS(1708), 1, + sym__id, + STATE(834), 1, + sym_reference_label, + ACTIONS(49), 16, anon_sym_LBRACE, + anon_sym__, anon_sym_BSLASH, + sym_em_dash, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE_EQ, + anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, aux_sym__text_token1, - ACTIONS(1634), 29, - ts_builtin_sym_end, + ACTIONS(93), 21, + sym__verbatim_begin, anon_sym_LBRACE_, - anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, sym_ellipsis, - sym_em_dash, anon_sym_LT, + anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [1744] = 6, + [900] = 6, ACTIONS(49), 1, - anon_sym_RBRACK2, - ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(1663), 1, + ACTIONS(93), 1, + ts_builtin_sym_end, + ACTIONS(1695), 1, anon_sym_SPACE, - STATE(279), 1, + STATE(282), 1, aux_sym_emphasis_begin_repeat1, - ACTIONS(1665), 7, + ACTIONS(1697), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, @@ -19076,7 +18019,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1660), 28, + ACTIONS(1692), 28, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19103,27 +18047,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__newline, - [1796] = 4, - ACTIONS(1686), 1, + [952] = 4, + ACTIONS(1730), 1, anon_sym_LBRACE_EQ2, - STATE(485), 1, + STATE(418), 1, sym_raw_inline_attribute, - ACTIONS(1632), 10, + ACTIONS(1710), 8, anon_sym_LBRACE, - anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE_EQ, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1634), 27, + ACTIONS(1712), 29, + sym__verbatim_begin, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -19138,6 +18080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -19147,24 +18090,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, + sym__whitespace1, sym__newline, - [1844] = 5, - ACTIONS(1688), 1, + [1000] = 4, + ACTIONS(1732), 1, + anon_sym_LBRACE_EQ2, + STATE(262), 1, + sym_raw_inline_attribute, + ACTIONS(1710), 8, anon_sym_LBRACE, - STATE(172), 1, - aux_sym__text, - STATE(578), 1, - sym_inline_attribute, - ACTIONS(1642), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, + anon_sym_LBRACE_EQ, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1640), 29, + ACTIONS(1712), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19173,12 +18116,12 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -19191,15 +18134,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [1894] = 4, - ACTIONS(1690), 1, + [1048] = 4, + ACTIONS(1734), 1, anon_sym_LBRACE_EQ2, - STATE(319), 1, + STATE(437), 1, sym_raw_inline_attribute, - ACTIONS(1632), 8, + ACTIONS(1710), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -19208,7 +18150,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1634), 29, + ACTIONS(1712), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19217,7 +18160,6 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -19227,6 +18169,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -19235,20 +18178,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [1942] = 6, + [1096] = 6, ACTIONS(49), 1, - aux_sym_strong_end_token1, - ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(1663), 1, + ACTIONS(93), 1, + aux_sym_emphasis_end_token1, + ACTIONS(1703), 1, anon_sym_SPACE, - STATE(279), 1, + STATE(291), 1, aux_sym_emphasis_begin_repeat1, - ACTIONS(1665), 8, - anon_sym_STAR, + ACTIONS(1705), 8, + anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, @@ -19256,10 +18198,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1660), 27, + ACTIONS(1700), 27, + sym__verbatim_begin, anon_sym_LBRACE_, - anon_sym__, anon_sym_LBRACE_STAR, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -19282,33 +18225,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__newline, - [1994] = 4, - ACTIONS(1692), 1, + [1148] = 4, + ACTIONS(1736), 1, anon_sym_LBRACE_EQ2, - STATE(538), 1, + STATE(283), 1, sym_raw_inline_attribute, - ACTIONS(1632), 10, + ACTIONS(1710), 8, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE_EQ, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1634), 27, + ACTIONS(1712), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -19326,71 +18268,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, - sym__newline, - [2042] = 4, - ACTIONS(1654), 1, - sym__id, - STATE(772), 1, - sym_reference_label, - ACTIONS(51), 15, - anon_sym_LBRACE, - anon_sym__, - anon_sym_BSLASH, - sym_em_dash, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE2, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - aux_sym__text_token1, - ACTIONS(49), 22, - anon_sym_LBRACE_, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [2090] = 6, - ACTIONS(49), 1, - anon_sym_TILDE_RBRACE, - ACTIONS(51), 1, + [1196] = 5, + ACTIONS(1738), 1, anon_sym_LBRACE, - ACTIONS(1647), 1, - anon_sym_SPACE, - STATE(287), 1, - aux_sym_emphasis_begin_repeat1, - ACTIONS(1649), 8, + STATE(190), 1, + aux_sym__text, + STATE(551), 1, + sym_inline_attribute, + ACTIONS(1722), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1644), 27, + ACTIONS(1720), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19406,8 +18301,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -19416,125 +18313,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, + sym__whitespace1, sym__newline, - [2142] = 6, - ACTIONS(49), 1, - anon_sym_TILDE_RBRACE, - ACTIONS(51), 1, + [1246] = 4, + ACTIONS(1708), 1, + sym__id, + STATE(783), 1, + sym_reference_label, + ACTIONS(49), 15, anon_sym_LBRACE, - ACTIONS(1663), 1, - anon_sym_SPACE, - STATE(279), 1, - aux_sym_emphasis_begin_repeat1, - ACTIONS(1665), 8, + anon_sym__, anon_sym_BSLASH, + sym_em_dash, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, - aux_sym__text_token1, - ACTIONS(1660), 27, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, anon_sym_NOTE, anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, - anon_sym_BQUOTE, - sym__newline, - [2194] = 4, - ACTIONS(1694), 1, - anon_sym_LBRACE_EQ2, - STATE(326), 1, - sym_raw_inline_attribute, - ACTIONS(1632), 9, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE_EQ, - anon_sym_CARET, - anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1634), 28, + ACTIONS(93), 22, + sym__verbatim_begin, anon_sym_LBRACE_, - anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, sym_ellipsis, - sym_em_dash, anon_sym_LT, + anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [2242] = 5, - ACTIONS(1696), 1, + [1294] = 5, + ACTIONS(1740), 1, anon_sym_LBRACE, - STATE(179), 1, + STATE(195), 1, aux_sym__text, - STATE(580), 1, + STATE(546), 1, sym_inline_attribute, - ACTIONS(1642), 8, - anon_sym_STAR, + ACTIONS(1722), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1640), 28, + ACTIONS(1720), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -19551,30 +18402,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, + sym__whitespace1, sym__newline, - [2292] = 6, - ACTIONS(49), 1, - aux_sym_strong_end_token1, - ACTIONS(51), 1, + [1344] = 5, + ACTIONS(1742), 1, anon_sym_LBRACE, - ACTIONS(1647), 1, - anon_sym_SPACE, - STATE(287), 1, - aux_sym_emphasis_begin_repeat1, - ACTIONS(1649), 8, - anon_sym_STAR, + STATE(199), 1, + aux_sym__text, + STATE(555), 1, + sym_inline_attribute, + ACTIONS(1722), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1644), 27, + ACTIONS(1720), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -19582,6 +18431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -19597,26 +18447,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, + sym__whitespace1, sym__newline, - [2344] = 6, + [1394] = 6, ACTIONS(49), 1, - anon_sym_PLUS_RBRACE, - ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(1663), 1, + ACTIONS(93), 1, + anon_sym_TILDE_RBRACE, + ACTIONS(1703), 1, anon_sym_SPACE, - STATE(279), 1, + STATE(291), 1, aux_sym_emphasis_begin_repeat1, - ACTIONS(1665), 7, + ACTIONS(1705), 8, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1660), 28, + ACTIONS(1700), 27, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19632,7 +18484,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -19643,26 +18494,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__newline, - [2396] = 6, + [1446] = 6, ACTIONS(49), 1, - anon_sym_EQ_RBRACE, - ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(1663), 1, + ACTIONS(93), 1, + anon_sym_TILDE_RBRACE, + ACTIONS(1695), 1, anon_sym_SPACE, - STATE(279), 1, + STATE(282), 1, aux_sym_emphasis_begin_repeat1, - ACTIONS(1665), 7, + ACTIONS(1697), 8, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1660), 28, + ACTIONS(1692), 27, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19678,7 +18530,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -19689,26 +18540,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__newline, - [2448] = 6, - ACTIONS(49), 1, - anon_sym_PLUS_RBRACE, - ACTIONS(51), 1, + [1498] = 4, + ACTIONS(1744), 1, + anon_sym_LBRACE_EQ2, + STATE(314), 1, + sym_raw_inline_attribute, + ACTIONS(1710), 9, anon_sym_LBRACE, - ACTIONS(1647), 1, - anon_sym_SPACE, - STATE(287), 1, - aux_sym_emphasis_begin_repeat1, - ACTIONS(1649), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE_EQ, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1644), 28, + ACTIONS(1712), 28, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19717,12 +18566,11 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -19735,64 +18583,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, + sym__whitespace1, sym__newline, - [2500] = 4, - ACTIONS(1702), 1, - aux_sym__text_token1, - STATE(172), 1, - aux_sym__text, - ACTIONS(1698), 7, + [1546] = 4, + ACTIONS(1708), 1, + sym__id, + STATE(747), 1, + sym_reference_label, + ACTIONS(49), 16, anon_sym_LBRACE, + anon_sym__, anon_sym_BSLASH, + sym_em_dash, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, - ACTIONS(1700), 29, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(93), 21, + sym__verbatim_begin, anon_sym_LBRACE_, - anon_sym__, + aux_sym_emphasis_end_token1, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, sym_ellipsis, - sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, - sym__whitespace1, sym__newline, - [2547] = 4, - ACTIONS(1682), 1, + [1594] = 6, + ACTIONS(49), 1, anon_sym_LBRACE, - STATE(577), 1, - sym_inline_attribute, - ACTIONS(1642), 6, + ACTIONS(93), 1, + anon_sym_DASH_RBRACE, + ACTIONS(1703), 1, + anon_sym_SPACE, + STATE(291), 1, + aux_sym_emphasis_begin_repeat1, + ACTIONS(1705), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1640), 30, + ACTIONS(1700), 28, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19803,7 +18658,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -19820,31 +18674,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, - sym__whitespace1, - sym__newline, - [2594] = 3, - ACTIONS(1705), 1, - aux_sym_autolink_token1, - ACTIONS(49), 2, - sym__whitespace1, sym__newline, - ACTIONS(51), 35, + [1646] = 5, + ACTIONS(1746), 1, anon_sym_LBRACE, - anon_sym_LBRACE_, + STATE(180), 1, + aux_sym__text, + STATE(569), 1, + sym_inline_attribute, + ACTIONS(1722), 8, anon_sym__, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1720), 28, + sym__verbatim_begin, + anon_sym_LBRACE_, + aux_sym_emphasis_end_token1, anon_sym_LBRACE_STAR, anon_sym_STAR, - anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, - sym_en_dash, - sym_backslash_escape, anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -19853,8 +18711,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LBRACK, - anon_sym_LBRACE2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -19863,39 +18719,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, - aux_sym__text_token1, - [2639] = 3, - ACTIONS(49), 1, sym__newline, - ACTIONS(1707), 1, - aux_sym_autolink_token1, - ACTIONS(51), 36, + [1696] = 5, + ACTIONS(1748), 1, anon_sym_LBRACE, + STATE(181), 1, + aux_sym__text, + STATE(565), 1, + sym_inline_attribute, + ACTIONS(1722), 7, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_CARET, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1720), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, - aux_sym_strong_end_token1, - anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, - sym_en_dash, - sym_backslash_escape, anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LBRACK, - anon_sym_LBRACE2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -19904,22 +18763,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, - aux_sym__text_token1, - [2684] = 4, - ACTIONS(1709), 1, - aux_sym__text_token1, - STATE(176), 1, - aux_sym__text, - ACTIONS(1698), 6, + sym__newline, + [1746] = 6, + ACTIONS(49), 1, anon_sym_LBRACE, + ACTIONS(93), 1, + anon_sym_CARET_RBRACE, + ACTIONS(1695), 1, + anon_sym_SPACE, + STATE(282), 1, + aux_sym_emphasis_begin_repeat1, + ACTIONS(1697), 8, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, - ACTIONS(1700), 30, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1692), 27, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19933,11 +18798,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -19947,34 +18810,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, - sym__whitespace1, sym__newline, - [2731] = 4, - ACTIONS(112), 1, - anon_sym_BQUOTE, - STATE(899), 1, - sym__verbatim_begin, - ACTIONS(51), 9, + [1798] = 4, + ACTIONS(1750), 1, + anon_sym_LBRACE_EQ2, + STATE(470), 1, + sym_raw_inline_attribute, + ACTIONS(1710), 10, anon_sym_LBRACE, - anon_sym_STAR, + anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE_EQ, anon_sym_LBRACK, anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(49), 27, + ACTIONS(1712), 27, + sym__verbatim_begin, anon_sym_LBRACE_, - anon_sym__, + aux_sym_emphasis_end_token1, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -19993,56 +18855,60 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [2778] = 4, - ACTIONS(1696), 1, + [1846] = 4, + ACTIONS(1708), 1, + sym__id, + STATE(879), 1, + sym_reference_label, + ACTIONS(49), 16, anon_sym_LBRACE, - STATE(580), 1, - sym_inline_attribute, - ACTIONS(1642), 8, - anon_sym_STAR, + anon_sym__, anon_sym_BSLASH, + sym_em_dash, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, aux_sym__text_token1, - ACTIONS(1640), 28, + ACTIONS(93), 21, + sym__verbatim_begin, anon_sym_LBRACE_, - anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, - sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, + sym__whitespace1, sym__newline, - [2825] = 4, - ACTIONS(1712), 1, - aux_sym__text_token1, - STATE(179), 1, - aux_sym__text, - ACTIONS(1698), 8, + [1894] = 6, + ACTIONS(49), 1, anon_sym_LBRACE, + ACTIONS(93), 1, + aux_sym_strong_end_token1, + ACTIONS(1695), 1, + anon_sym_SPACE, + STATE(282), 1, + aux_sym_emphasis_begin_repeat1, + ACTIONS(1697), 8, anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, @@ -20050,11 +18916,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, sym__whitespace1, - ACTIONS(1700), 28, + aux_sym__text_token1, + ACTIONS(1692), 27, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -20077,20 +18944,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__newline, - [2872] = 2, - ACTIONS(1715), 9, + [1946] = 6, + ACTIONS(49), 1, anon_sym_LBRACE, + ACTIONS(93), 1, + anon_sym_EQ_RBRACE, + ACTIONS(1695), 1, + anon_sym_SPACE, + STATE(282), 1, + aux_sym_emphasis_begin_repeat1, + ACTIONS(1697), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE_EQ, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1717), 29, + ACTIONS(1692), 28, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20099,16 +18972,16 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, sym_em_dash, anon_sym_LT, + anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LBRACE_EQ2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -20117,24 +18990,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, - sym__whitespace1, sym__newline, - [2915] = 2, - ACTIONS(1715), 10, + [1998] = 4, + ACTIONS(1752), 1, + anon_sym_LBRACE_EQ2, + STATE(439), 1, + sym_raw_inline_attribute, + ACTIONS(1710), 8, anon_sym_LBRACE, - anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE_EQ, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1717), 28, + ACTIONS(1712), 29, + sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -20150,7 +19025,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LBRACE_EQ2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -20159,76 +19033,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, + sym__whitespace1, sym__newline, - [2958] = 4, - ACTIONS(1678), 1, + [2046] = 4, + ACTIONS(1708), 1, + sym__id, + STATE(778), 1, + sym_reference_label, + ACTIONS(49), 15, anon_sym_LBRACE, - STATE(575), 1, - sym_inline_attribute, - ACTIONS(1642), 7, + anon_sym__, anon_sym_BSLASH, + sym_em_dash, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, aux_sym__text_token1, - ACTIONS(1640), 29, + ACTIONS(93), 22, + sym__verbatim_begin, anon_sym_LBRACE_, - anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, sym_ellipsis, - sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [3005] = 4, - ACTIONS(112), 1, - anon_sym_BQUOTE, - STATE(845), 1, - sym__verbatim_begin, - ACTIONS(51), 7, + [2094] = 4, + ACTIONS(1708), 1, + sym__id, + STATE(764), 1, + sym_reference_label, + ACTIONS(49), 17, anon_sym_LBRACE, + anon_sym__, + anon_sym_STAR, anon_sym_BSLASH, + sym_em_dash, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(49), 29, + ACTIONS(93), 20, + sym__verbatim_begin, anon_sym_LBRACE_, - anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, - sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -20238,33 +19121,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [3052] = 3, - ACTIONS(1719), 1, - aux_sym_autolink_token1, - ACTIONS(49), 2, - sym__whitespace1, - sym__newline, - ACTIONS(51), 35, + [2142] = 6, + ACTIONS(49), 1, anon_sym_LBRACE, + ACTIONS(93), 1, + anon_sym_RBRACK2, + ACTIONS(1703), 1, + anon_sym_SPACE, + STATE(291), 1, + aux_sym_emphasis_begin_repeat1, + ACTIONS(1705), 7, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1700), 28, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, - anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, - sym_en_dash, - sym_backslash_escape, anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, @@ -20274,11 +19158,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, - anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LBRACK, - anon_sym_LBRACE2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -20287,23 +19168,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, - aux_sym__text_token1, - [3097] = 4, - ACTIONS(112), 1, - anon_sym_BQUOTE, - STATE(863), 1, - sym__verbatim_begin, - ACTIONS(51), 8, + sym__newline, + [2194] = 6, + ACTIONS(49), 1, anon_sym_LBRACE, + ACTIONS(93), 1, + anon_sym_PLUS_RBRACE, + ACTIONS(1695), 1, + anon_sym_SPACE, + STATE(282), 1, + aux_sym_emphasis_begin_repeat1, + ACTIONS(1697), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(49), 28, + ACTIONS(1692), 28, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20317,7 +19201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -20330,19 +19214,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [3144] = 2, - ACTIONS(1715), 8, + [2246] = 6, + ACTIONS(49), 1, anon_sym_LBRACE, + ACTIONS(93), 1, + anon_sym_RBRACK2, + ACTIONS(1695), 1, + anon_sym_SPACE, + STATE(282), 1, + aux_sym_emphasis_begin_repeat1, + ACTIONS(1697), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE_EQ, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1717), 30, + ACTIONS(1692), 28, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20351,7 +19242,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_EQ_RBRACE, + anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -20361,7 +19252,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LBRACE_EQ2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -20370,21 +19260,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, - sym__whitespace1, sym__newline, - [3187] = 2, - ACTIONS(1715), 8, + [2298] = 6, + ACTIONS(49), 1, anon_sym_LBRACE, + ACTIONS(93), 1, + anon_sym_PLUS_RBRACE, + ACTIONS(1703), 1, + anon_sym_SPACE, + STATE(291), 1, + aux_sym_emphasis_begin_repeat1, + ACTIONS(1705), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE_EQ, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1717), 30, - ts_builtin_sym_end, + ACTIONS(1700), 28, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20393,6 +19288,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, sym_em_dash, anon_sym_LT, + anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -20402,7 +19298,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LBRACE_EQ2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -20411,26 +19306,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, - sym__whitespace1, sym__newline, - [3230] = 4, - ACTIONS(1721), 1, - aux_sym__text_token1, - STATE(188), 1, - aux_sym__text, - ACTIONS(1698), 8, + [2350] = 6, + ACTIONS(49), 1, anon_sym_LBRACE, - anon_sym__, + ACTIONS(93), 1, + anon_sym_CARET_RBRACE, + ACTIONS(1703), 1, + anon_sym_SPACE, + STATE(291), 1, + aux_sym_emphasis_begin_repeat1, + ACTIONS(1705), 8, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, sym__whitespace1, - ACTIONS(1700), 28, + aux_sym__text_token1, + ACTIONS(1700), 27, + sym__verbatim_begin, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -20442,7 +19340,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -20455,30 +19352,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__newline, - [3277] = 4, - ACTIONS(1638), 1, + [2402] = 4, + ACTIONS(1754), 1, + anon_sym_LBRACE_EQ2, + STATE(522), 1, + sym_raw_inline_attribute, + ACTIONS(1710), 10, anon_sym_LBRACE, - STATE(571), 1, - sym_inline_attribute, - ACTIONS(1642), 6, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE_EQ, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1640), 30, + ACTIONS(1712), 27, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -20488,7 +19388,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -20497,17 +19396,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, - sym__whitespace1, sym__newline, - [3324] = 4, - ACTIONS(112), 1, - anon_sym_BQUOTE, - STATE(890), 1, - sym__verbatim_begin, - ACTIONS(51), 9, + [2450] = 5, + ACTIONS(1756), 1, anon_sym_LBRACE, - anon_sym__, + STATE(173), 1, + aux_sym__text, + STATE(557), 1, + sym_inline_attribute, + ACTIONS(1722), 8, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, @@ -20515,11 +19413,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(49), 27, + ACTIONS(1720), 28, + sym__verbatim_begin, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -20543,13 +19442,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [3371] = 3, - ACTIONS(1724), 1, + [2500] = 3, + ACTIONS(1758), 1, aux_sym_autolink_token1, - ACTIONS(49), 2, + ACTIONS(93), 3, + sym__verbatim_begin, sym__whitespace1, sym__newline, - ACTIONS(51), 35, + ACTIONS(49), 34, anon_sym_LBRACE, anon_sym_LBRACE_, anon_sym__, @@ -20564,6 +19464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -20573,7 +19474,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_LBRACK, - anon_sym_RBRACK2, anon_sym_LBRACE2, anon_sym_DOLLAR, anon_sym_TODO, @@ -20583,70 +19483,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, aux_sym__text_token1, - [3416] = 4, - ACTIONS(1726), 1, + [2545] = 4, + ACTIONS(1764), 1, aux_sym__text_token1, - STATE(192), 1, + STATE(173), 1, aux_sym__text, - ACTIONS(1698), 6, + ACTIONS(1760), 8, anon_sym_LBRACE, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - ACTIONS(1700), 30, - ts_builtin_sym_end, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, - sym__newline, - [3463] = 4, - ACTIONS(112), 1, - anon_sym_BQUOTE, - STATE(872), 1, + ACTIONS(1762), 28, sym__verbatim_begin, - ACTIONS(51), 8, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_TILDE, - anon_sym_LBRACK, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(49), 28, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -20658,7 +19515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -20669,22 +19526,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [3510] = 4, - ACTIONS(112), 1, - anon_sym_BQUOTE, - STATE(908), 1, - sym__verbatim_begin, - ACTIONS(51), 7, + [2592] = 4, + ACTIONS(1740), 1, anon_sym_LBRACE, + STATE(546), 1, + sym_inline_attribute, + ACTIONS(1722), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(49), 29, + ACTIONS(1720), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20695,6 +19551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -20703,7 +19560,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -20714,20 +19570,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [3557] = 4, - ACTIONS(1729), 1, - aux_sym__text_token1, - STATE(195), 1, - aux_sym__text, - ACTIONS(1698), 7, + [2639] = 4, + ACTIONS(1748), 1, anon_sym_LBRACE, + STATE(565), 1, + sym_inline_attribute, + ACTIONS(1722), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, - ACTIONS(1700), 29, + aux_sym__text_token1, + ACTIONS(1720), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20741,9 +19598,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -20754,16 +19611,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [3604] = 3, - ACTIONS(1732), 1, + [2686] = 3, + ACTIONS(1767), 1, aux_sym_autolink_token1, - ACTIONS(49), 2, + ACTIONS(93), 3, + sym__verbatim_begin, sym__whitespace1, sym__newline, - ACTIONS(51), 35, + ACTIONS(49), 34, anon_sym_LBRACE, anon_sym_LBRACE_, anon_sym__, @@ -20797,40 +19654,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, aux_sym__text_token1, - [3649] = 4, - ACTIONS(1688), 1, + [2731] = 3, + ACTIONS(1769), 1, + aux_sym_autolink_token1, + ACTIONS(93), 2, + sym__verbatim_begin, + sym__newline, + ACTIONS(49), 35, anon_sym_LBRACE, - STATE(578), 1, - sym_inline_attribute, - ACTIONS(1642), 7, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_CARET, - anon_sym_LBRACK, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(1640), 29, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + aux_sym_strong_end_token1, + anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, + sym_en_dash, + sym_backslash_escape, anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK, + anon_sym_LBRACE2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -20839,22 +19695,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, - sym__newline, - [3696] = 4, - ACTIONS(1734), 1, aux_sym__text_token1, - STATE(198), 1, - aux_sym__text, - ACTIONS(1698), 6, + [2776] = 4, + ACTIONS(1738), 1, anon_sym_LBRACE, + STATE(551), 1, + sym_inline_attribute, + ACTIONS(1722), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - ACTIONS(1700), 30, + aux_sym__text_token1, + ACTIONS(1720), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20865,7 +19721,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -20874,6 +19729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -20882,70 +19738,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [3743] = 4, - ACTIONS(1737), 1, - aux_sym__text_token1, - STATE(199), 1, - aux_sym__text, - ACTIONS(1698), 6, + [2823] = 4, + ACTIONS(1756), 1, anon_sym_LBRACE, + STATE(557), 1, + sym_inline_attribute, + ACTIONS(1722), 8, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - ACTIONS(1700), 30, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, - sym__newline, - [3790] = 3, - ACTIONS(49), 1, - sym__newline, - ACTIONS(1740), 1, - aux_sym_autolink_token1, - ACTIONS(51), 36, - anon_sym_LBRACE, + aux_sym__text_token1, + ACTIONS(1720), 28, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, - aux_sym_emphasis_end_token1, anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_BSLASH, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, - sym_en_dash, - sym_backslash_escape, anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, @@ -20957,8 +19774,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LBRACK, - anon_sym_LBRACE2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -20967,15 +19782,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, - sym__whitespace1, + sym__newline, + [2870] = 4, + ACTIONS(1771), 1, aux_sym__text_token1, - [3835] = 4, - ACTIONS(1680), 1, + STATE(180), 1, + aux_sym__text, + ACTIONS(1760), 8, anon_sym_LBRACE, - STATE(586), 1, - sym_inline_attribute, - ACTIONS(1642), 8, anon_sym__, anon_sym_BSLASH, sym_en_dash, @@ -20983,8 +19797,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, sym__whitespace1, - aux_sym__text_token1, - ACTIONS(1640), 28, + ACTIONS(1762), 28, + sym__verbatim_begin, anon_sym_LBRACE_, aux_sym_emphasis_end_token1, anon_sym_LBRACE_STAR, @@ -21011,21 +19825,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__newline, - [3882] = 4, - ACTIONS(1742), 1, + [2917] = 4, + ACTIONS(1774), 1, aux_sym__text_token1, - STATE(202), 1, + STATE(181), 1, aux_sym__text, - ACTIONS(1698), 6, + ACTIONS(1760), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, - ACTIONS(1700), 30, + ACTIONS(1762), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21035,12 +19850,11 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -21053,20 +19867,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [3929] = 2, - ACTIONS(1715), 8, + [2964] = 4, + ACTIONS(1726), 1, anon_sym_LBRACE, + STATE(559), 1, + sym_inline_attribute, + ACTIONS(1722), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE_EQ, + anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1717), 30, + ACTIONS(1720), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21075,17 +19892,16 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, sym_em_dash, anon_sym_LT, + anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LBRACE_EQ2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -21094,22 +19910,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [3972] = 4, - ACTIONS(1745), 1, - aux_sym__text_token1, - STATE(204), 1, - aux_sym__text, - ACTIONS(1698), 6, + [3011] = 4, + ACTIONS(1742), 1, anon_sym_LBRACE, + STATE(555), 1, + sym_inline_attribute, + ACTIONS(1722), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - ACTIONS(1700), 30, + aux_sym__text_token1, + ACTIONS(1720), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21137,39 +19953,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [4019] = 2, - ACTIONS(1715), 9, + [3058] = 3, + ACTIONS(1777), 1, + aux_sym_autolink_token1, + ACTIONS(93), 3, + sym__verbatim_begin, + sym__whitespace1, + sym__newline, + ACTIONS(49), 34, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE_EQ, - anon_sym_TILDE, - anon_sym_LBRACK, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(1717), 29, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, + sym_en_dash, + sym_backslash_escape, anon_sym_LT, + anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, + anon_sym_TILDE, anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LBRACE_EQ2, + anon_sym_LBRACK, + anon_sym_LBRACE2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -21178,22 +19996,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, - sym__whitespace1, - sym__newline, - [4062] = 4, - ACTIONS(1652), 1, + aux_sym__text_token1, + [3103] = 4, + ACTIONS(1779), 1, + aux_sym__text_token1, + STATE(185), 1, + aux_sym__text, + ACTIONS(1760), 6, anon_sym_LBRACE, - STATE(591), 1, - sym_inline_attribute, - ACTIONS(1642), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(1640), 30, + ACTIONS(1762), 30, + sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21211,7 +20029,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -21221,29 +20038,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [4109] = 4, - ACTIONS(1672), 1, + [3150] = 3, + ACTIONS(1782), 1, + aux_sym_autolink_token1, + ACTIONS(93), 3, + sym__verbatim_begin, + sym__whitespace1, + sym__newline, + ACTIONS(49), 34, anon_sym_LBRACE, - STATE(567), 1, - sym_inline_attribute, - ACTIONS(1642), 6, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(1640), 30, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, + sym_en_dash, + sym_backslash_escape, anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, @@ -21256,6 +20071,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK, + anon_sym_LBRACE2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -21264,16 +20081,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, - sym__whitespace1, - sym__newline, - [4156] = 3, - ACTIONS(1748), 1, + aux_sym__text_token1, + [3195] = 3, + ACTIONS(1784), 1, aux_sym_autolink_token1, - ACTIONS(49), 2, + ACTIONS(93), 3, + sym__verbatim_begin, sym__whitespace1, sym__newline, - ACTIONS(51), 35, + ACTIONS(49), 34, anon_sym_LBRACE, anon_sym_LBRACE_, anon_sym__, @@ -21289,7 +20105,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -21298,6 +20113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_LBRACK, + anon_sym_RBRACK2, anon_sym_LBRACE2, anon_sym_DOLLAR, anon_sym_TODO, @@ -21307,29 +20123,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, aux_sym__text_token1, - [4201] = 2, - ACTIONS(1715), 10, + [3240] = 3, + ACTIONS(1786), 1, + aux_sym_autolink_token1, + ACTIONS(93), 2, + sym__verbatim_begin, + sym__newline, + ACTIONS(49), 35, anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE_EQ, - anon_sym_LBRACK, - anon_sym_LBRACE2, - sym__whitespace1, - aux_sym__text_token1, - ACTIONS(1717), 28, anon_sym_LBRACE_, anon_sym__, + aux_sym_emphasis_end_token1, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, + anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, + sym_en_dash, + sym_backslash_escape, anon_sym_LT, + anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -21339,7 +20154,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LBRACE_EQ2, + anon_sym_LBRACK, + anon_sym_LBRACE2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -21348,26 +20164,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, - sym__newline, - [4244] = 3, - ACTIONS(1750), 1, - aux_sym_autolink_token1, - ACTIONS(49), 2, sym__whitespace1, - sym__newline, - ACTIONS(51), 35, + aux_sym__text_token1, + [3285] = 4, + ACTIONS(1746), 1, anon_sym_LBRACE, - anon_sym_LBRACE_, + STATE(569), 1, + sym_inline_attribute, + ACTIONS(1722), 8, anon_sym__, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1720), 28, + sym__verbatim_begin, + anon_sym_LBRACE_, + aux_sym_emphasis_end_token1, anon_sym_LBRACE_STAR, anon_sym_STAR, - anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, - sym_en_dash, - sym_backslash_escape, anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, @@ -21378,10 +20199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, - anon_sym_LBRACK, - anon_sym_LBRACE2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -21390,19 +20208,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, + sym__newline, + [3332] = 4, + ACTIONS(1788), 1, aux_sym__text_token1, - [4289] = 2, - ACTIONS(1715), 8, + STATE(190), 1, + aux_sym__text, + ACTIONS(1760), 6, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE_EQ, anon_sym_LBRACK, anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(1717), 30, + ACTIONS(1762), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21411,6 +20231,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, sym_em_dash, anon_sym_LT, + anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -21421,7 +20242,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_RBRACK2, - anon_sym_LBRACE_EQ2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -21430,20 +20250,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [4332] = 2, - ACTIONS(1715), 8, + [3379] = 4, + ACTIONS(1791), 1, + aux_sym__text_token1, + STATE(191), 1, + aux_sym__text, + ACTIONS(1760), 6, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE_EQ, anon_sym_LBRACK, anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(1717), 30, + ACTIONS(1762), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21452,8 +20274,9 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, sym_em_dash, anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -21462,7 +20285,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LBRACE_EQ2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -21471,20 +20293,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [4375] = 2, - ACTIONS(1715), 8, + [3426] = 4, + ACTIONS(1794), 1, + aux_sym__text_token1, + STATE(192), 1, + aux_sym__text, + ACTIONS(1760), 6, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE_EQ, anon_sym_LBRACK, anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(1717), 30, + ACTIONS(1762), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21493,6 +20317,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, sym_em_dash, anon_sym_LT, + anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -21503,7 +20328,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_CARET, anon_sym_RBRACK, anon_sym_BANG_LBRACK, - anon_sym_LBRACE_EQ2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -21512,23 +20336,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [4418] = 4, - ACTIONS(112), 1, - anon_sym_BQUOTE, - STATE(881), 1, - sym__verbatim_begin, - ACTIONS(51), 7, + [3473] = 4, + ACTIONS(1797), 1, + aux_sym__text_token1, + STATE(193), 1, + aux_sym__text, + ACTIONS(1760), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(49), 29, + ACTIONS(1762), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21544,9 +20368,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -21558,30 +20381,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [4465] = 4, - ACTIONS(112), 1, - anon_sym_BQUOTE, - STATE(824), 1, + [3520] = 3, + ACTIONS(1800), 1, + aux_sym_autolink_token1, + ACTIONS(93), 3, sym__verbatim_begin, - ACTIONS(51), 7, + sym__whitespace1, + sym__newline, + ACTIONS(49), 34, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(49), 29, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, + sym_en_dash, + sym_backslash_escape, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -21591,6 +20412,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK, + anon_sym_LBRACE2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -21599,22 +20422,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, - sym__newline, - [4512] = 4, - ACTIONS(112), 1, - anon_sym_BQUOTE, - STATE(836), 1, - sym__verbatim_begin, - ACTIONS(51), 7, + aux_sym__text_token1, + [3565] = 4, + ACTIONS(1802), 1, + aux_sym__text_token1, + STATE(195), 1, + aux_sym__text, + ACTIONS(1760), 6, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(49), 29, + ACTIONS(1762), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21624,8 +20446,8 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -21644,13 +20466,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [4559] = 3, - ACTIONS(1752), 1, + [3612] = 3, + ACTIONS(1805), 1, aux_sym_autolink_token1, - ACTIONS(49), 2, + ACTIONS(93), 4, + sym__verbatim_begin, + ts_builtin_sym_end, sym__whitespace1, sym__newline, - ACTIONS(51), 35, + ACTIONS(49), 33, anon_sym_LBRACE, anon_sym_LBRACE_, anon_sym__, @@ -21664,7 +20488,6 @@ static const uint16_t ts_small_parse_table[] = { sym_backslash_escape, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -21684,29 +20507,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, aux_sym__text_token1, - [4604] = 3, - ACTIONS(1754), 1, - aux_sym_autolink_token1, - ACTIONS(49), 3, - ts_builtin_sym_end, - sym__whitespace1, - sym__newline, - ACTIONS(51), 34, + [3657] = 4, + ACTIONS(1718), 1, anon_sym_LBRACE, + STATE(560), 1, + sym_inline_attribute, + ACTIONS(1722), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1720), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, - anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, - sym_en_dash, - sym_backslash_escape, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -21716,8 +20541,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LBRACK, - anon_sym_LBRACE2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -21726,22 +20549,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, - aux_sym__text_token1, - [4649] = 4, - ACTIONS(112), 1, - anon_sym_BQUOTE, - STATE(854), 1, - sym__verbatim_begin, - ACTIONS(51), 7, + sym__whitespace1, + sym__newline, + [3704] = 4, + ACTIONS(1724), 1, anon_sym_LBRACE, + STATE(571), 1, + sym_inline_attribute, + ACTIONS(1722), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(49), 29, + ACTIONS(1720), 30, + sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21753,7 +20577,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -21771,20 +20594,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [4696] = 4, - ACTIONS(1656), 1, + [3751] = 4, + ACTIONS(1807), 1, + aux_sym__text_token1, + STATE(199), 1, + aux_sym__text, + ACTIONS(1760), 6, anon_sym_LBRACE, - STATE(583), 1, - sym_inline_attribute, - ACTIONS(1642), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(1640), 30, - ts_builtin_sym_end, + ACTIONS(1762), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21796,6 +20619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -21811,22 +20635,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [4743] = 4, - ACTIONS(1668), 1, + [3798] = 4, + ACTIONS(1728), 1, anon_sym_LBRACE, - STATE(592), 1, + STATE(564), 1, sym_inline_attribute, - ACTIONS(1642), 6, + ACTIONS(1722), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1640), 30, + ACTIONS(1720), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21836,7 +20660,6 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -21845,6 +20668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -21854,11 +20678,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [4790] = 2, - ACTIONS(1756), 9, + [3845] = 3, + ACTIONS(1810), 1, + aux_sym_autolink_token1, + ACTIONS(93), 3, + sym__verbatim_begin, + sym__whitespace1, + sym__newline, + ACTIONS(49), 34, + anon_sym_LBRACE, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_BSLASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + sym_en_dash, + sym_backslash_escape, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_RBRACK, + anon_sym_BANG_LBRACK, + anon_sym_LBRACK, + anon_sym_LBRACE2, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + aux_sym__text_token1, + [3890] = 2, + ACTIONS(1812), 9, anon_sym_LBRACE, anon_sym__, anon_sym_BSLASH, @@ -21868,7 +20733,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1758), 28, + ACTIONS(1814), 28, + sym__verbatim_begin, anon_sym_LBRACE_, aux_sym_emphasis_end_token1, anon_sym_LBRACE_STAR, @@ -21895,18 +20761,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__newline, - [4832] = 2, - ACTIONS(1760), 7, - anon_sym_LBRACE, + [3932] = 4, + ACTIONS(1820), 1, + anon_sym_LBRACE2, + STATE(523), 1, + sym_comment, + ACTIONS(1818), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1762), 30, + ACTIONS(1816), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21934,11 +20802,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [4874] = 2, - ACTIONS(1764), 7, + [3978] = 2, + ACTIONS(1823), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -21946,7 +20813,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1766), 30, + ACTIONS(1825), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21974,19 +20842,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [4916] = 2, - ACTIONS(1768), 7, - anon_sym_LBRACE, + [4020] = 4, + ACTIONS(1827), 1, + anon_sym_LBRACE2, + STATE(208), 1, + sym_comment, + ACTIONS(1818), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1770), 30, + ACTIONS(1816), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22014,11 +20884,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [4958] = 2, - ACTIONS(1772), 7, + [4066] = 2, + ACTIONS(1812), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22026,7 +20895,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1774), 30, + ACTIONS(1814), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22054,19 +20924,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [5000] = 2, - ACTIONS(1776), 7, + [4108] = 4, + ACTIONS(49), 1, anon_sym_LBRACE, + ACTIONS(93), 1, + ts_builtin_sym_end, + ACTIONS(1697), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1778), 30, + ACTIONS(1692), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22077,7 +20950,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -22094,11 +20966,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [5042] = 2, - ACTIONS(1780), 7, + [4154] = 2, + ACTIONS(1830), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22106,7 +20977,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1782), 30, + ACTIONS(1832), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22134,11 +21006,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [5084] = 2, - ACTIONS(1784), 7, + [4196] = 2, + ACTIONS(1834), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22146,7 +21017,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1786), 30, + ACTIONS(1836), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22174,11 +21046,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [5126] = 2, - ACTIONS(1788), 7, + [4238] = 2, + ACTIONS(1838), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22186,7 +21057,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1790), 30, + ACTIONS(1840), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22214,22 +21086,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [5168] = 4, - ACTIONS(49), 1, - ts_builtin_sym_end, - ACTIONS(51), 1, + [4280] = 2, + ACTIONS(1842), 7, anon_sym_LBRACE, - ACTIONS(1649), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1644), 29, + ACTIONS(1844), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22240,6 +21109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -22256,11 +21126,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [5214] = 2, - ACTIONS(1792), 7, + [4322] = 2, + ACTIONS(1846), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22268,7 +21137,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1794), 30, + ACTIONS(1848), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22296,11 +21166,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [5256] = 2, - ACTIONS(1796), 7, + [4364] = 2, + ACTIONS(1850), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22308,7 +21177,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1798), 30, + ACTIONS(1852), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22336,11 +21206,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [5298] = 2, - ACTIONS(1800), 7, + [4406] = 2, + ACTIONS(1854), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22348,7 +21217,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1802), 30, + ACTIONS(1856), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22376,19 +21246,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [5340] = 2, - ACTIONS(1804), 7, + [4448] = 4, + ACTIONS(49), 1, anon_sym_LBRACE, + ACTIONS(93), 1, + ts_builtin_sym_end, + ACTIONS(1705), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1806), 30, + ACTIONS(1700), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22399,7 +21272,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -22416,11 +21288,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [5382] = 2, - ACTIONS(1808), 7, + [4494] = 2, + ACTIONS(1858), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22428,7 +21299,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1810), 30, + ACTIONS(1860), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22456,11 +21328,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [5424] = 2, - ACTIONS(1812), 7, + [4536] = 2, + ACTIONS(1862), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22468,7 +21339,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1814), 30, + ACTIONS(1864), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22496,11 +21368,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [5466] = 2, - ACTIONS(1816), 7, + [4578] = 2, + ACTIONS(1866), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22508,7 +21379,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1818), 30, + ACTIONS(1868), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22536,22 +21408,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [5508] = 4, - ACTIONS(49), 1, - anon_sym_DASH_RBRACE, - ACTIONS(51), 1, + [4620] = 2, + ACTIONS(1870), 7, anon_sym_LBRACE, - ACTIONS(1665), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1660), 29, + ACTIONS(1872), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22562,6 +21431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -22578,22 +21448,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [5554] = 4, - ACTIONS(49), 1, - anon_sym_DASH_RBRACE, - ACTIONS(51), 1, + [4662] = 2, + ACTIONS(1874), 7, anon_sym_LBRACE, - ACTIONS(1649), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1644), 29, + ACTIONS(1876), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22604,6 +21471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -22620,11 +21488,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [5600] = 2, - ACTIONS(1820), 7, + [4704] = 2, + ACTIONS(1878), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22632,7 +21499,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1822), 30, + ACTIONS(1880), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22643,8 +21511,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -22660,11 +21528,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [5642] = 2, - ACTIONS(1824), 7, + [4746] = 2, + ACTIONS(1882), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22672,7 +21539,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1826), 30, + ACTIONS(1884), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22683,8 +21551,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -22700,21 +21568,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [5684] = 4, - ACTIONS(1832), 1, - anon_sym_LBRACE2, - STATE(246), 1, - sym_comment, - ACTIONS(1830), 5, + [4788] = 2, + ACTIONS(1886), 7, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1828), 30, + ACTIONS(1888), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22725,8 +21591,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -22742,11 +21608,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [5730] = 2, - ACTIONS(1835), 7, + [4830] = 2, + ACTIONS(1890), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22754,7 +21619,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1837), 30, + ACTIONS(1892), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22765,8 +21631,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -22782,11 +21648,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [5772] = 2, - ACTIONS(1820), 7, + [4872] = 2, + ACTIONS(1894), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22794,8 +21659,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1822), 30, - ts_builtin_sym_end, + ACTIONS(1896), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22806,6 +21671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -22822,11 +21688,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [5814] = 2, - ACTIONS(1839), 7, + [4914] = 2, + ACTIONS(1898), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22834,7 +21699,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1841), 30, + ACTIONS(1900), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22845,8 +21711,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -22862,11 +21728,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [5856] = 2, - ACTIONS(1756), 7, + [4956] = 2, + ACTIONS(1902), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22874,7 +21739,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1758), 30, + ACTIONS(1904), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22885,8 +21751,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -22902,11 +21768,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [5898] = 2, - ACTIONS(1843), 7, + [4998] = 3, + ACTIONS(1906), 1, + sym__verbatim_begin, + ACTIONS(49), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22914,7 +21781,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1845), 30, + ACTIONS(93), 29, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22926,7 +21794,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -22942,11 +21809,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [5940] = 2, - ACTIONS(1847), 7, + [5042] = 2, + ACTIONS(1909), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22954,7 +21820,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1849), 30, + ACTIONS(1911), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22965,8 +21832,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -22982,11 +21849,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [5982] = 2, - ACTIONS(1851), 7, + [5084] = 2, + ACTIONS(1913), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22994,7 +21860,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1853), 30, + ACTIONS(1915), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23005,8 +21872,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -23022,11 +21889,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [6024] = 2, - ACTIONS(1760), 7, + [5126] = 2, + ACTIONS(1917), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -23034,7 +21900,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1762), 30, + ACTIONS(1919), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23045,8 +21912,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -23062,11 +21929,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [6066] = 2, - ACTIONS(1855), 7, + [5168] = 2, + ACTIONS(1921), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -23074,7 +21940,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1857), 30, + ACTIONS(1923), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23085,8 +21952,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -23102,11 +21969,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [6108] = 2, - ACTIONS(1824), 7, + [5210] = 2, + ACTIONS(1925), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -23114,8 +21980,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1826), 30, - ts_builtin_sym_end, + ACTIONS(1927), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23126,6 +21992,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -23142,11 +22009,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [6150] = 2, - ACTIONS(1859), 7, + [5252] = 2, + ACTIONS(1929), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -23154,7 +22020,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1861), 30, + ACTIONS(1931), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23165,8 +22032,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -23182,19 +22049,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [6192] = 2, - ACTIONS(1863), 7, + [5294] = 4, + ACTIONS(49), 1, anon_sym_LBRACE, + ACTIONS(93), 1, + anon_sym_DASH_RBRACE, + ACTIONS(1697), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1865), 30, + ACTIONS(1692), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23206,7 +22076,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -23222,19 +22091,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [6234] = 2, - ACTIONS(1867), 7, + [5340] = 4, + ACTIONS(49), 1, anon_sym_LBRACE, + ACTIONS(93), 1, + anon_sym_DASH_RBRACE, + ACTIONS(1705), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1869), 30, + ACTIONS(1700), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23246,7 +22118,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -23262,11 +22133,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [6276] = 2, - ACTIONS(1871), 7, + [5386] = 3, + ACTIONS(1933), 1, + sym__verbatim_begin, + ACTIONS(49), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -23274,7 +22146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1873), 30, + ACTIONS(93), 29, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23302,11 +22174,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [6318] = 2, - ACTIONS(1764), 7, + [5430] = 2, + ACTIONS(1936), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -23314,7 +22185,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1766), 30, + ACTIONS(1938), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23342,11 +22214,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [6360] = 2, - ACTIONS(1768), 7, + [5472] = 2, + ACTIONS(1823), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -23354,7 +22225,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1770), 30, + ACTIONS(1825), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23382,19 +22254,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [6402] = 2, - ACTIONS(1772), 7, - anon_sym_LBRACE, + [5514] = 4, + ACTIONS(1940), 1, + anon_sym_LBRACE2, + STATE(243), 1, + sym_comment, + ACTIONS(1818), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1774), 30, + ACTIONS(1816), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23422,11 +22296,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [6444] = 2, - ACTIONS(1776), 7, + [5560] = 2, + ACTIONS(1812), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -23434,7 +22307,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1778), 30, + ACTIONS(1814), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23462,11 +22336,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [6486] = 2, - ACTIONS(1780), 7, + [5602] = 2, + ACTIONS(1936), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -23474,7 +22347,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1782), 30, + ACTIONS(1938), 30, + sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23486,7 +22361,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -23502,11 +22376,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [6528] = 2, - ACTIONS(1784), 7, + [5644] = 2, + ACTIONS(1830), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -23514,7 +22387,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1786), 30, + ACTIONS(1832), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23542,11 +22416,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [6570] = 2, - ACTIONS(1788), 7, + [5686] = 2, + ACTIONS(1834), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -23554,7 +22427,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1790), 30, + ACTIONS(1836), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23582,11 +22456,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [6612] = 2, - ACTIONS(1863), 7, + [5728] = 2, + ACTIONS(1838), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -23594,7 +22467,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1865), 30, + ACTIONS(1840), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23605,8 +22479,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -23622,11 +22496,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [6654] = 2, - ACTIONS(1867), 7, + [5770] = 2, + ACTIONS(1842), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -23634,7 +22507,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1869), 30, + ACTIONS(1844), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23645,8 +22519,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -23662,22 +22536,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [6696] = 4, - ACTIONS(1875), 1, - anon_sym_LBRACE2, - STATE(496), 1, - sym_comment, - ACTIONS(1830), 5, + [5812] = 2, + ACTIONS(1846), 7, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1828), 30, - ts_builtin_sym_end, + ACTIONS(1848), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23689,6 +22560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -23704,11 +22576,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [6742] = 2, - ACTIONS(1792), 7, + [5854] = 2, + ACTIONS(1850), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -23716,7 +22587,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1794), 30, + ACTIONS(1852), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23744,11 +22616,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [6784] = 2, - ACTIONS(1796), 7, + [5896] = 2, + ACTIONS(1854), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -23756,7 +22627,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1798), 30, + ACTIONS(1856), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23784,11 +22656,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [6826] = 2, - ACTIONS(1800), 7, + [5938] = 2, + ACTIONS(1823), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -23796,7 +22667,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1802), 30, + ACTIONS(1825), 30, + sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23808,7 +22681,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -23824,11 +22696,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [6868] = 2, - ACTIONS(1804), 7, + [5980] = 2, + ACTIONS(1858), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -23836,7 +22707,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1806), 30, + ACTIONS(1860), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23864,11 +22736,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [6910] = 2, - ACTIONS(1808), 7, + [6022] = 2, + ACTIONS(1862), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -23876,7 +22747,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1810), 30, + ACTIONS(1864), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23904,11 +22776,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [6952] = 2, - ACTIONS(1812), 7, + [6064] = 2, + ACTIONS(1866), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -23916,7 +22787,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1814), 30, + ACTIONS(1868), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23944,11 +22816,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [6994] = 2, - ACTIONS(1816), 7, + [6106] = 2, + ACTIONS(1870), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -23956,7 +22827,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1818), 30, + ACTIONS(1872), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23984,11 +22856,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [7036] = 2, - ACTIONS(1820), 7, + [6148] = 2, + ACTIONS(1874), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -23996,7 +22867,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1822), 30, + ACTIONS(1876), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24006,9 +22878,9 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -24024,23 +22896,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [7078] = 4, - ACTIONS(49), 1, - anon_sym_CARET_RBRACE, - ACTIONS(51), 1, + [6190] = 2, + ACTIONS(1878), 7, anon_sym_LBRACE, - ACTIONS(1665), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1660), 28, + ACTIONS(1880), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24052,8 +22920,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, + anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -24066,11 +22936,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [7124] = 2, - ACTIONS(1859), 7, + [6232] = 2, + ACTIONS(1882), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -24078,7 +22947,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1861), 30, + ACTIONS(1884), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24089,8 +22959,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -24106,23 +22976,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [7166] = 4, - ACTIONS(49), 1, - anon_sym_CARET_RBRACE, - ACTIONS(51), 1, + [6274] = 2, + ACTIONS(1886), 7, anon_sym_LBRACE, - ACTIONS(1649), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1644), 28, + ACTIONS(1888), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24134,8 +23000,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, + anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -24148,23 +23016,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [7212] = 4, - ACTIONS(1880), 1, - anon_sym_SPACE, - STATE(548), 1, - aux_sym_emphasis_begin_repeat1, - ACTIONS(1882), 7, + [6316] = 2, + ACTIONS(1890), 7, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1878), 28, + ACTIONS(1892), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24176,6 +23040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -24191,10 +23056,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, + sym__whitespace1, sym__newline, - [7258] = 2, - ACTIONS(1855), 7, + [6358] = 2, + ACTIONS(1894), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -24202,7 +23067,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1857), 30, + ACTIONS(1896), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24213,8 +23079,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -24230,11 +23096,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [7300] = 2, - ACTIONS(1760), 7, + [6400] = 2, + ACTIONS(1898), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -24242,7 +23107,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1762), 30, + ACTIONS(1900), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24253,8 +23119,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -24270,11 +23136,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [7342] = 2, - ACTIONS(1851), 7, + [6442] = 2, + ACTIONS(1902), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -24282,7 +23147,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1853), 30, + ACTIONS(1904), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24293,8 +23159,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -24310,19 +23176,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [7384] = 2, - ACTIONS(1847), 7, - anon_sym_LBRACE, + [6484] = 4, + ACTIONS(1943), 1, + anon_sym_LBRACE2, + STATE(532), 1, + sym_comment, + ACTIONS(1818), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1849), 30, + ACTIONS(1816), 30, + sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24333,7 +23202,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -24350,11 +23218,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [7426] = 2, - ACTIONS(1843), 7, + [6530] = 2, + ACTIONS(1909), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -24362,7 +23229,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1845), 30, + ACTIONS(1911), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24373,8 +23241,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -24390,11 +23258,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [7468] = 2, - ACTIONS(1756), 7, + [6572] = 2, + ACTIONS(1913), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -24402,7 +23269,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1758), 30, + ACTIONS(1915), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24413,8 +23281,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -24430,11 +23298,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [7510] = 2, - ACTIONS(1839), 7, + [6614] = 2, + ACTIONS(1917), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -24442,7 +23309,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1841), 30, + ACTIONS(1919), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24453,8 +23321,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -24470,23 +23338,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [7552] = 4, - ACTIONS(1880), 1, - anon_sym_SPACE, - STATE(548), 1, - aux_sym_emphasis_begin_repeat1, - ACTIONS(1886), 7, + [6656] = 2, + ACTIONS(1921), 7, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1884), 28, + ACTIONS(1923), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24498,6 +23362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -24513,10 +23378,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, + sym__whitespace1, sym__newline, - [7598] = 2, - ACTIONS(1835), 7, + [6698] = 2, + ACTIONS(1925), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -24524,7 +23389,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1837), 30, + ACTIONS(1927), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24535,8 +23401,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -24552,21 +23418,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [7640] = 4, - ACTIONS(1888), 1, - anon_sym_LBRACE2, - STATE(286), 1, - sym_comment, - ACTIONS(1830), 5, + [6740] = 2, + ACTIONS(1929), 7, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1828), 30, + ACTIONS(1931), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24577,8 +23441,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -24594,20 +23458,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [7686] = 2, - ACTIONS(1820), 8, + [6782] = 2, + ACTIONS(1823), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1822), 29, + ACTIONS(1825), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24617,11 +23480,12 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -24634,12 +23498,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [7728] = 2, - ACTIONS(1824), 8, + [6824] = 4, + ACTIONS(49), 1, anon_sym_LBRACE, + ACTIONS(93), 1, + anon_sym_CARET_RBRACE, + ACTIONS(1697), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, @@ -24647,7 +23513,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1826), 29, + ACTIONS(1692), 28, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24661,7 +23528,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -24674,22 +23540,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [7770] = 4, - ACTIONS(1891), 1, - anon_sym_LBRACE2, - STATE(297), 1, - sym_comment, - ACTIONS(1830), 6, + [6870] = 3, + ACTIONS(1946), 1, + sym__verbatim_begin, + ACTIONS(49), 7, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, + anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1828), 29, + ACTIONS(93), 29, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24700,10 +23564,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -24716,19 +23581,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [7816] = 2, - ACTIONS(1824), 7, + [6914] = 4, + ACTIONS(49), 1, anon_sym_LBRACE, + ACTIONS(93), 1, + anon_sym_CARET_RBRACE, + ACTIONS(1705), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1826), 30, + ACTIONS(1700), 28, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24739,11 +23608,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -24756,19 +23623,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [7858] = 2, - ACTIONS(1820), 7, + [6960] = 4, + ACTIONS(49), 1, anon_sym_LBRACE, + ACTIONS(93), 1, + anon_sym_PLUS_RBRACE, + ACTIONS(1705), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1822), 30, + ACTIONS(1700), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24779,7 +23649,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -24796,20 +23665,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [7900] = 2, - ACTIONS(1835), 8, + [7006] = 4, + ACTIONS(49), 1, anon_sym_LBRACE, + ACTIONS(93), 1, + anon_sym_PLUS_RBRACE, + ACTIONS(1697), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1837), 29, + ACTIONS(1692), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24823,7 +23694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -24836,11 +23707,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [7942] = 2, - ACTIONS(1835), 7, + [7052] = 2, + ACTIONS(1929), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -24848,8 +23718,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1837), 30, - ts_builtin_sym_end, + ACTIONS(1931), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24859,6 +23729,7 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -24876,20 +23747,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [7984] = 2, - ACTIONS(1839), 8, + [7094] = 2, + ACTIONS(1925), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1841), 29, + ACTIONS(1927), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24899,11 +23769,12 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -24916,20 +23787,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [8026] = 2, - ACTIONS(1756), 8, + [7136] = 2, + ACTIONS(1921), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1758), 29, + ACTIONS(1923), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24939,11 +23809,12 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -24956,20 +23827,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [8068] = 2, - ACTIONS(1843), 8, + [7178] = 2, + ACTIONS(1917), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1845), 29, + ACTIONS(1919), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24979,11 +23849,12 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -24996,20 +23867,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [8110] = 2, - ACTIONS(1847), 8, + [7220] = 2, + ACTIONS(1913), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1849), 29, + ACTIONS(1915), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25019,11 +23889,12 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -25036,20 +23907,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [8152] = 2, - ACTIONS(1851), 8, + [7262] = 2, + ACTIONS(1909), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1853), 29, + ACTIONS(1911), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25059,11 +23929,12 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -25076,20 +23947,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [8194] = 2, - ACTIONS(1760), 8, - anon_sym_LBRACE, + [7304] = 4, + ACTIONS(1951), 1, + anon_sym_SPACE, + STATE(535), 1, + aux_sym_emphasis_begin_repeat1, + ACTIONS(1953), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1762), 29, + ACTIONS(1949), 28, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25103,7 +23977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -25116,20 +23990,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, - sym__whitespace1, sym__newline, - [8236] = 2, - ACTIONS(1855), 8, + [7350] = 2, + ACTIONS(1902), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1857), 29, + ACTIONS(1904), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25139,11 +24011,12 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -25156,22 +24029,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [8278] = 4, - ACTIONS(49), 1, - anon_sym_PLUS_RBRACE, - ACTIONS(51), 1, + [7392] = 3, + ACTIONS(1955), 1, + sym__verbatim_begin, + ACTIONS(49), 8, anon_sym_LBRACE, - ACTIONS(1649), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1644), 29, + ACTIONS(93), 28, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25185,7 +24057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -25198,22 +24070,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [8324] = 4, - ACTIONS(49), 1, - anon_sym_PLUS_RBRACE, - ACTIONS(51), 1, + [7436] = 2, + ACTIONS(1936), 8, anon_sym_LBRACE, - ACTIONS(1665), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1660), 29, + ACTIONS(1938), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25227,7 +24097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -25240,22 +24110,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [8370] = 4, - ACTIONS(49), 1, - ts_builtin_sym_end, - ACTIONS(51), 1, + [7478] = 2, + ACTIONS(1823), 8, anon_sym_LBRACE, - ACTIONS(1665), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1660), 29, + ACTIONS(1825), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25269,7 +24137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -25282,20 +24150,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [8416] = 2, - ACTIONS(1859), 8, - anon_sym_LBRACE, + [7520] = 4, + ACTIONS(1958), 1, + anon_sym_LBRACE2, + STATE(292), 1, + sym_comment, + ACTIONS(1818), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_CARET, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1861), 29, + ACTIONS(1816), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25322,20 +24192,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [8458] = 2, - ACTIONS(1863), 8, + [7566] = 2, + ACTIONS(1898), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1865), 29, + ACTIONS(1900), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25345,11 +24214,12 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -25362,20 +24232,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [8500] = 2, - ACTIONS(1867), 8, + [7608] = 2, + ACTIONS(1894), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1869), 29, + ACTIONS(1896), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25385,11 +24254,12 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -25402,11 +24272,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [8542] = 2, - ACTIONS(1871), 8, + [7650] = 2, + ACTIONS(1812), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -25415,7 +24284,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1873), 29, + ACTIONS(1814), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25442,20 +24312,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [8584] = 2, - ACTIONS(1764), 8, - anon_sym_LBRACE, + [7692] = 4, + ACTIONS(1951), 1, + anon_sym_SPACE, + STATE(535), 1, + aux_sym_emphasis_begin_repeat1, + ACTIONS(1963), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1766), 29, + ACTIONS(1961), 28, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25469,7 +24342,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -25482,11 +24355,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, - sym__whitespace1, sym__newline, - [8626] = 2, - ACTIONS(1768), 8, + [7738] = 2, + ACTIONS(1830), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -25495,7 +24366,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1770), 29, + ACTIONS(1832), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25522,11 +24394,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [8668] = 2, - ACTIONS(1772), 8, + [7780] = 2, + ACTIONS(1834), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -25535,7 +24406,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1774), 29, + ACTIONS(1836), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25562,11 +24434,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [8710] = 2, - ACTIONS(1776), 8, + [7822] = 2, + ACTIONS(1838), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -25575,7 +24446,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1778), 29, + ACTIONS(1840), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25602,11 +24474,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [8752] = 2, - ACTIONS(1780), 8, + [7864] = 2, + ACTIONS(1842), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -25615,7 +24486,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1782), 29, + ACTIONS(1844), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25642,11 +24514,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [8794] = 2, - ACTIONS(1784), 8, + [7906] = 2, + ACTIONS(1846), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -25655,7 +24526,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1786), 29, + ACTIONS(1848), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25682,11 +24554,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [8836] = 2, - ACTIONS(1788), 8, + [7948] = 2, + ACTIONS(1850), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -25695,7 +24566,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1790), 29, + ACTIONS(1852), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25722,19 +24594,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [8878] = 2, - ACTIONS(1816), 7, + [7990] = 2, + ACTIONS(1854), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1818), 30, + ACTIONS(1856), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25744,12 +24617,11 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -25762,11 +24634,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [8920] = 2, - ACTIONS(1812), 7, + [8032] = 2, + ACTIONS(1890), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -25774,7 +24645,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1814), 30, + ACTIONS(1892), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25802,11 +24674,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [8962] = 2, - ACTIONS(1894), 7, + [8074] = 2, + ACTIONS(1886), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -25814,7 +24685,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1896), 30, + ACTIONS(1888), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25824,6 +24696,7 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -25833,7 +24706,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -25842,20 +24714,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [9004] = 2, - ACTIONS(1792), 8, + [8116] = 2, + ACTIONS(1882), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1794), 29, + ACTIONS(1884), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25865,11 +24736,12 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -25882,20 +24754,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [9046] = 2, - ACTIONS(1796), 8, + [8158] = 2, + ACTIONS(1812), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1798), 29, + ACTIONS(1814), 30, + sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25909,7 +24781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -25922,11 +24794,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [9088] = 2, - ACTIONS(1800), 8, + [8200] = 2, + ACTIONS(1858), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -25935,7 +24806,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1802), 29, + ACTIONS(1860), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25962,11 +24834,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [9130] = 2, - ACTIONS(1804), 8, + [8242] = 2, + ACTIONS(1862), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -25975,7 +24846,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1806), 29, + ACTIONS(1864), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26002,11 +24874,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [9172] = 2, - ACTIONS(1808), 8, + [8284] = 2, + ACTIONS(1866), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -26015,7 +24886,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1810), 29, + ACTIONS(1868), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26042,11 +24914,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [9214] = 2, - ACTIONS(1812), 8, + [8326] = 2, + ACTIONS(1870), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -26055,7 +24926,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1814), 29, + ACTIONS(1872), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26082,11 +24954,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [9256] = 2, - ACTIONS(1816), 8, + [8368] = 2, + ACTIONS(1874), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -26095,7 +24966,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1818), 29, + ACTIONS(1876), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26122,19 +24994,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [9298] = 2, - ACTIONS(1808), 7, + [8410] = 2, + ACTIONS(1878), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1810), 30, + ACTIONS(1880), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26144,12 +25017,11 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -26162,23 +25034,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [9340] = 4, - ACTIONS(49), 1, - anon_sym_TILDE_RBRACE, - ACTIONS(51), 1, + [8452] = 2, + ACTIONS(1882), 8, anon_sym_LBRACE, - ACTIONS(1665), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1660), 28, + ACTIONS(1884), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26192,8 +25061,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -26204,19 +25074,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [9386] = 2, - ACTIONS(1804), 7, + [8494] = 2, + ACTIONS(1886), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1806), 30, + ACTIONS(1888), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26226,12 +25097,11 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -26244,23 +25114,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [9428] = 4, - ACTIONS(49), 1, - anon_sym_TILDE_RBRACE, - ACTIONS(51), 1, + [8536] = 2, + ACTIONS(1890), 8, anon_sym_LBRACE, - ACTIONS(1649), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1644), 28, + ACTIONS(1892), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26274,8 +25141,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -26286,19 +25154,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [9474] = 2, - ACTIONS(1800), 7, + [8578] = 2, + ACTIONS(1894), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1802), 30, + ACTIONS(1896), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26308,12 +25177,11 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -26326,19 +25194,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [9516] = 2, - ACTIONS(1796), 7, + [8620] = 2, + ACTIONS(1898), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1798), 30, + ACTIONS(1900), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26348,12 +25217,11 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -26366,19 +25234,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [9558] = 2, - ACTIONS(1792), 7, + [8662] = 2, + ACTIONS(1902), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1794), 30, + ACTIONS(1904), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26388,12 +25257,11 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -26406,11 +25274,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [9600] = 2, - ACTIONS(1715), 7, + [8704] = 2, + ACTIONS(1965), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -26418,7 +25285,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1717), 30, + ACTIONS(1967), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26446,19 +25314,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [9642] = 2, - ACTIONS(1788), 7, + [8746] = 2, + ACTIONS(1909), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1790), 30, + ACTIONS(1911), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26468,12 +25337,11 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -26486,19 +25354,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [9684] = 2, - ACTIONS(1784), 7, + [8788] = 2, + ACTIONS(1913), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1786), 30, + ACTIONS(1915), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26508,12 +25377,11 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -26526,19 +25394,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [9726] = 2, - ACTIONS(1780), 7, + [8830] = 2, + ACTIONS(1917), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1782), 30, + ACTIONS(1919), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26548,12 +25417,11 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -26566,19 +25434,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [9768] = 2, - ACTIONS(1776), 7, + [8872] = 2, + ACTIONS(1921), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1778), 30, + ACTIONS(1923), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26588,12 +25457,11 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -26606,19 +25474,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [9810] = 2, - ACTIONS(1772), 7, + [8914] = 2, + ACTIONS(1925), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1774), 30, + ACTIONS(1927), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26628,12 +25497,11 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -26646,19 +25514,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [9852] = 2, - ACTIONS(1768), 7, + [8956] = 2, + ACTIONS(1929), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1770), 30, + ACTIONS(1931), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26668,12 +25537,11 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -26686,11 +25554,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [9894] = 2, - ACTIONS(1764), 7, + [8998] = 2, + ACTIONS(1878), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -26698,7 +25565,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1766), 30, + ACTIONS(1880), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26726,12 +25594,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [9936] = 2, - ACTIONS(1820), 8, + [9040] = 4, + ACTIONS(49), 1, anon_sym_LBRACE, + ACTIONS(93), 1, + anon_sym_TILDE_RBRACE, + ACTIONS(1697), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, @@ -26739,7 +25609,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1822), 29, + ACTIONS(1692), 28, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26755,7 +25626,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -26766,20 +25636,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [9978] = 2, - ACTIONS(1824), 8, + [9086] = 2, + ACTIONS(1874), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1826), 29, + ACTIONS(1876), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26789,13 +25658,14 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -26806,22 +25676,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [10020] = 4, - ACTIONS(1898), 1, - anon_sym_LBRACE2, - STATE(350), 1, - sym_comment, - ACTIONS(1830), 6, + [9128] = 4, + ACTIONS(49), 1, + anon_sym_LBRACE, + ACTIONS(93), 1, + anon_sym_TILDE_RBRACE, + ACTIONS(1705), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_TILDE, anon_sym_LBRACK, + anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1828), 29, + ACTIONS(1700), 28, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26837,7 +25708,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -26848,11 +25718,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [10066] = 2, - ACTIONS(1871), 7, + [9174] = 2, + ACTIONS(1870), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -26860,7 +25729,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1873), 30, + ACTIONS(1872), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26888,11 +25758,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [10108] = 2, - ACTIONS(1867), 7, + [9216] = 2, + ACTIONS(1866), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -26900,7 +25769,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1869), 30, + ACTIONS(1868), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26928,20 +25798,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [10150] = 2, - ACTIONS(1835), 8, + [9258] = 2, + ACTIONS(1862), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1837), 29, + ACTIONS(1864), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26951,13 +25820,14 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -26968,11 +25838,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [10192] = 2, - ACTIONS(1901), 7, + [9300] = 2, + ACTIONS(1858), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -26980,7 +25849,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1903), 30, + ACTIONS(1860), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26990,6 +25860,7 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -26999,7 +25870,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -27008,20 +25878,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [10234] = 2, - ACTIONS(1839), 8, + [9342] = 2, + ACTIONS(1969), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1841), 29, + ACTIONS(1971), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27037,9 +25906,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -27048,20 +25918,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [10276] = 2, - ACTIONS(1756), 8, + [9384] = 2, + ACTIONS(1854), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1758), 29, + ACTIONS(1856), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27071,13 +25940,14 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -27088,20 +25958,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [10318] = 2, - ACTIONS(1843), 8, + [9426] = 2, + ACTIONS(1850), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1845), 29, + ACTIONS(1852), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27111,13 +25980,14 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -27128,20 +25998,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [10360] = 2, - ACTIONS(1847), 8, + [9468] = 2, + ACTIONS(1846), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1849), 29, + ACTIONS(1848), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27151,13 +26020,14 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -27168,20 +26038,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [10402] = 2, - ACTIONS(1851), 8, + [9510] = 2, + ACTIONS(1842), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1853), 29, + ACTIONS(1844), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27191,13 +26060,14 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -27208,20 +26078,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [10444] = 2, - ACTIONS(1760), 8, + [9552] = 2, + ACTIONS(1838), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1762), 29, + ACTIONS(1840), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27231,13 +26100,14 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -27248,11 +26118,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [10486] = 2, - ACTIONS(1855), 8, + [9594] = 3, + ACTIONS(1973), 1, + sym__verbatim_begin, + ACTIONS(49), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -27261,7 +26132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1857), 29, + ACTIONS(93), 28, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27288,19 +26159,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [10528] = 2, - ACTIONS(1863), 7, + [9638] = 2, + ACTIONS(1936), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1865), 30, + ACTIONS(1938), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27310,14 +26182,13 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -27328,19 +26199,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [10570] = 2, - ACTIONS(1859), 7, + [9680] = 2, + ACTIONS(1823), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1861), 30, + ACTIONS(1825), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27350,14 +26222,13 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -27368,25 +26239,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [10612] = 2, - ACTIONS(1894), 9, - anon_sym_LBRACE, - anon_sym_STAR, + [9722] = 4, + ACTIONS(1976), 1, + anon_sym_LBRACE2, + STATE(344), 1, + sym_comment, + ACTIONS(1818), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_TILDE, anon_sym_LBRACK, - anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1896), 28, + ACTIONS(1816), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -27398,7 +26270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -27409,19 +26281,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, + sym__whitespace1, sym__newline, - [10654] = 2, - ACTIONS(1859), 8, + [9768] = 2, + ACTIONS(1834), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1861), 29, + ACTIONS(1836), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27431,13 +26303,14 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -27448,20 +26321,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [10696] = 2, - ACTIONS(1863), 8, + [9810] = 2, + ACTIONS(1830), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1865), 29, + ACTIONS(1832), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27471,13 +26343,14 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -27488,11 +26361,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [10738] = 2, - ACTIONS(1867), 8, + [9852] = 2, + ACTIONS(1812), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -27501,7 +26373,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1869), 29, + ACTIONS(1814), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27528,24 +26401,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [10780] = 2, - ACTIONS(1871), 8, + [9894] = 2, + ACTIONS(1965), 9, anon_sym_LBRACE, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1873), 29, + ACTIONS(1967), 28, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -27557,7 +26431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -27568,11 +26442,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, - sym__whitespace1, sym__newline, - [10822] = 2, - ACTIONS(1764), 8, + [9936] = 2, + ACTIONS(1830), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -27581,7 +26453,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1766), 29, + ACTIONS(1832), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27608,11 +26481,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [10864] = 2, - ACTIONS(1768), 8, + [9978] = 2, + ACTIONS(1834), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -27621,7 +26493,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1770), 29, + ACTIONS(1836), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27648,11 +26521,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [10906] = 2, - ACTIONS(1772), 8, + [10020] = 2, + ACTIONS(1838), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -27661,7 +26533,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1774), 29, + ACTIONS(1840), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27688,11 +26561,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [10948] = 2, - ACTIONS(1776), 8, + [10062] = 2, + ACTIONS(1842), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -27701,7 +26573,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1778), 29, + ACTIONS(1844), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27728,11 +26601,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [10990] = 2, - ACTIONS(1780), 8, + [10104] = 2, + ACTIONS(1846), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -27741,7 +26613,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1782), 29, + ACTIONS(1848), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27768,11 +26641,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [11032] = 2, - ACTIONS(1784), 8, + [10146] = 2, + ACTIONS(1850), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -27781,7 +26653,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1786), 29, + ACTIONS(1852), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27808,11 +26681,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [11074] = 2, - ACTIONS(1788), 8, + [10188] = 2, + ACTIONS(1854), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -27821,7 +26693,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1790), 29, + ACTIONS(1856), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27848,11 +26721,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [11116] = 2, - ACTIONS(1901), 9, + [10230] = 2, + ACTIONS(1969), 9, anon_sym_LBRACE, anon_sym_STAR, anon_sym_BSLASH, @@ -27862,7 +26734,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1903), 28, + ACTIONS(1971), 28, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27889,10 +26762,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__newline, - [11158] = 2, - ACTIONS(1855), 7, + [10272] = 2, + ACTIONS(1812), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -27900,7 +26772,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1857), 30, + ACTIONS(1814), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27928,23 +26801,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [11200] = 2, - ACTIONS(1894), 9, - anon_sym_LBRACE, - anon_sym__, + [10314] = 4, + ACTIONS(1979), 1, + anon_sym_LBRACE2, + STATE(341), 1, + sym_comment, + ACTIONS(1818), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1896), 28, + ACTIONS(1816), 30, + sym__verbatim_begin, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -27952,6 +26825,7 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -27969,21 +26843,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, + sym__whitespace1, sym__newline, - [11242] = 2, - ACTIONS(1792), 8, + [10360] = 2, + ACTIONS(1965), 9, anon_sym_LBRACE, + anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1794), 29, + ACTIONS(1967), 28, + sym__verbatim_begin, anon_sym_LBRACE_, - anon_sym__, + aux_sym_emphasis_end_token1, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -27997,7 +26873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -28008,11 +26884,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, - sym__whitespace1, sym__newline, - [11284] = 2, - ACTIONS(1796), 8, + [10402] = 2, + ACTIONS(1858), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -28021,7 +26895,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1798), 29, + ACTIONS(1860), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28048,11 +26923,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [11326] = 2, - ACTIONS(1800), 8, + [10444] = 2, + ACTIONS(1862), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -28061,7 +26935,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1802), 29, + ACTIONS(1864), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28088,11 +26963,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [11368] = 2, - ACTIONS(1804), 8, + [10486] = 2, + ACTIONS(1866), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -28101,7 +26975,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1806), 29, + ACTIONS(1868), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28128,11 +27003,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [11410] = 2, - ACTIONS(1808), 8, + [10528] = 2, + ACTIONS(1870), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -28141,7 +27015,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1810), 29, + ACTIONS(1872), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28168,11 +27043,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [11452] = 2, - ACTIONS(1812), 8, + [10570] = 2, + ACTIONS(1874), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -28181,7 +27055,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1814), 29, + ACTIONS(1876), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28208,11 +27083,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [11494] = 2, - ACTIONS(1816), 8, + [10612] = 2, + ACTIONS(1878), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -28221,7 +27095,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1818), 29, + ACTIONS(1880), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28248,19 +27123,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [11536] = 2, - ACTIONS(1760), 7, + [10654] = 2, + ACTIONS(1882), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1762), 30, + ACTIONS(1884), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28270,14 +27146,13 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -28288,22 +27163,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [11578] = 4, - ACTIONS(49), 1, - anon_sym_RBRACK, - ACTIONS(51), 1, + [10696] = 2, + ACTIONS(1886), 8, anon_sym_LBRACE, - ACTIONS(1665), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1660), 29, + ACTIONS(1888), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28319,7 +27192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -28330,19 +27203,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [11624] = 2, - ACTIONS(1851), 7, + [10738] = 2, + ACTIONS(1890), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1853), 30, + ACTIONS(1892), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28352,14 +27226,13 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -28370,22 +27243,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [11666] = 4, - ACTIONS(49), 1, - anon_sym_RBRACK, - ACTIONS(51), 1, + [10780] = 2, + ACTIONS(1894), 8, anon_sym_LBRACE, - ACTIONS(1649), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1644), 29, + ACTIONS(1896), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28401,7 +27272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -28412,19 +27283,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [11712] = 2, - ACTIONS(1847), 7, + [10822] = 2, + ACTIONS(1898), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1849), 30, + ACTIONS(1900), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28434,14 +27306,13 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -28452,19 +27323,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [11754] = 2, - ACTIONS(1843), 7, + [10864] = 2, + ACTIONS(1902), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1845), 30, + ACTIONS(1904), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28474,14 +27346,13 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -28492,21 +27363,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [11796] = 2, - ACTIONS(1756), 7, + [10906] = 2, + ACTIONS(1969), 9, anon_sym_LBRACE, + anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1758), 30, + ACTIONS(1971), 28, + sym__verbatim_begin, anon_sym_LBRACE_, - anon_sym__, + aux_sym_emphasis_end_token1, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -28514,7 +27387,6 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -28532,19 +27404,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, - sym__whitespace1, sym__newline, - [11838] = 2, - ACTIONS(1839), 7, + [10948] = 2, + ACTIONS(1909), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1841), 30, + ACTIONS(1911), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28554,14 +27426,13 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -28572,25 +27443,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [11880] = 2, - ACTIONS(1715), 9, + [10990] = 2, + ACTIONS(1913), 8, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1717), 28, + ACTIONS(1915), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -28602,7 +27472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -28613,18 +27483,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, + sym__whitespace1, sym__newline, - [11922] = 2, - ACTIONS(1835), 7, + [11032] = 2, + ACTIONS(1917), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1837), 30, + ACTIONS(1919), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28634,14 +27506,13 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -28652,21 +27523,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [11964] = 4, - ACTIONS(1905), 1, - anon_sym_LBRACE2, - STATE(388), 1, - sym_comment, - ACTIONS(1830), 5, + [11074] = 2, + ACTIONS(1921), 8, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_TILDE, anon_sym_LBRACK, + anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1828), 30, + ACTIONS(1923), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28676,14 +27546,13 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -28694,19 +27563,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [12010] = 2, - ACTIONS(1824), 7, + [11116] = 2, + ACTIONS(1925), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1826), 30, + ACTIONS(1927), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28716,14 +27586,13 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -28734,23 +27603,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [12052] = 2, - ACTIONS(1901), 9, + [11158] = 2, + ACTIONS(1929), 8, anon_sym_LBRACE, - anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1903), 28, + ACTIONS(1931), 29, + sym__verbatim_begin, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -28764,7 +27632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -28775,21 +27643,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, + sym__whitespace1, sym__newline, - [12094] = 4, - ACTIONS(49), 1, - anon_sym_EQ_RBRACE, - ACTIONS(51), 1, + [11200] = 3, + ACTIONS(1982), 1, + sym__verbatim_begin, + ACTIONS(49), 7, anon_sym_LBRACE, - ACTIONS(1649), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1644), 29, + ACTIONS(93), 29, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28799,6 +27666,7 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -28816,22 +27684,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [12140] = 4, + [11244] = 4, ACTIONS(49), 1, - anon_sym_EQ_RBRACE, - ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(1665), 6, + ACTIONS(93), 1, + anon_sym_RBRACK, + ACTIONS(1697), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1660), 29, + ACTIONS(1692), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28858,11 +27726,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [12186] = 2, - ACTIONS(1820), 7, + [11290] = 2, + ACTIONS(1936), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -28870,7 +27737,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1822), 30, + ACTIONS(1938), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28880,6 +27748,7 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -28888,7 +27757,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -28898,19 +27766,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [12228] = 2, - ACTIONS(1824), 7, + [11332] = 4, + ACTIONS(49), 1, anon_sym_LBRACE, + ACTIONS(93), 1, + anon_sym_RBRACK, + ACTIONS(1705), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1826), 30, + ACTIONS(1700), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28928,7 +27799,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -28938,21 +27808,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [12270] = 4, - ACTIONS(1908), 1, - anon_sym_LBRACE2, - STATE(403), 1, - sym_comment, - ACTIONS(1830), 5, + [11378] = 2, + ACTIONS(1965), 7, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1828), 30, + ACTIONS(1967), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28980,19 +27848,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [12316] = 2, - ACTIONS(1894), 7, + [11420] = 4, + ACTIONS(49), 1, anon_sym_LBRACE, + ACTIONS(93), 1, + anon_sym_EQ_RBRACE, + ACTIONS(1705), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1896), 30, + ACTIONS(1700), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29010,7 +27881,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -29020,20 +27890,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [12358] = 2, - ACTIONS(1816), 7, + [11466] = 4, + ACTIONS(49), 1, anon_sym_LBRACE, + ACTIONS(93), 1, + anon_sym_EQ_RBRACE, + ACTIONS(1697), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1818), 30, - ts_builtin_sym_end, + ACTIONS(1692), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29060,11 +27932,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [12400] = 2, - ACTIONS(1835), 7, + [11512] = 2, + ACTIONS(1969), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -29072,7 +27943,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1837), 30, + ACTIONS(1971), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29100,23 +27972,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [12442] = 2, - ACTIONS(1715), 9, + [11554] = 2, + ACTIONS(1965), 8, anon_sym_LBRACE, - anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1717), 28, + ACTIONS(1967), 29, + sym__verbatim_begin, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -29130,7 +28001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -29141,18 +28012,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, + sym__whitespace1, sym__newline, - [12484] = 2, - ACTIONS(1839), 7, + [11596] = 2, + ACTIONS(1969), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1841), 30, + ACTIONS(1971), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29168,9 +28041,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -29180,19 +28052,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [12526] = 2, - ACTIONS(1756), 7, + [11638] = 2, + ACTIONS(1965), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1758), 30, + ACTIONS(1967), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29206,11 +28079,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -29220,11 +28092,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [12568] = 2, - ACTIONS(1843), 7, + [11680] = 2, + ACTIONS(1929), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -29232,7 +28103,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1845), 30, + ACTIONS(1931), 30, + sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29250,7 +28123,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -29260,19 +28132,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [12610] = 2, - ACTIONS(1847), 7, + [11722] = 2, + ACTIONS(1969), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1849), 30, + ACTIONS(1971), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29286,11 +28159,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -29300,11 +28172,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [12652] = 2, - ACTIONS(1851), 7, + [11764] = 2, + ACTIONS(1965), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -29312,7 +28183,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1853), 30, + ACTIONS(1967), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29324,13 +28196,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -29340,11 +28212,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [12694] = 2, - ACTIONS(1760), 7, + [11806] = 3, + ACTIONS(1985), 1, + sym__verbatim_begin, + ACTIONS(49), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -29352,7 +28225,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1762), 30, + ACTIONS(93), 29, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29380,11 +28253,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [12736] = 2, - ACTIONS(1855), 7, + [11850] = 2, + ACTIONS(1936), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -29392,7 +28264,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1857), 30, + ACTIONS(1938), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29420,11 +28293,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [12778] = 2, - ACTIONS(1901), 7, + [11892] = 2, + ACTIONS(1823), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -29432,7 +28304,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1903), 30, + ACTIONS(1825), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29460,20 +28333,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [12820] = 2, - ACTIONS(1894), 8, - anon_sym_LBRACE, + [11934] = 4, + ACTIONS(1988), 1, + anon_sym_LBRACE2, + STATE(396), 1, + sym_comment, + ACTIONS(1818), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1896), 29, + ACTIONS(1816), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29489,8 +28363,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -29500,11 +28375,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [12862] = 2, - ACTIONS(1715), 7, + [11980] = 2, + ACTIONS(1969), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -29512,7 +28386,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1717), 30, + ACTIONS(1971), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29524,13 +28399,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -29540,11 +28415,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [12904] = 2, - ACTIONS(1859), 7, + [12022] = 2, + ACTIONS(1965), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -29552,7 +28426,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1861), 30, + ACTIONS(1967), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29563,6 +28438,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -29570,7 +28446,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -29580,11 +28455,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [12946] = 2, - ACTIONS(1863), 7, + [12064] = 2, + ACTIONS(1812), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -29592,7 +28466,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1865), 30, + ACTIONS(1814), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29620,11 +28495,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [12988] = 2, - ACTIONS(1867), 7, + [12106] = 2, + ACTIONS(1969), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -29632,7 +28506,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1869), 30, + ACTIONS(1971), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29643,6 +28518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -29650,7 +28526,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -29660,11 +28535,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [13030] = 2, - ACTIONS(1871), 7, + [12148] = 2, + ACTIONS(1830), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -29672,7 +28546,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1873), 30, + ACTIONS(1832), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29700,11 +28575,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [13072] = 2, - ACTIONS(1764), 7, + [12190] = 2, + ACTIONS(1834), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -29712,7 +28586,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1766), 30, + ACTIONS(1836), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29740,11 +28615,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [13114] = 2, - ACTIONS(1768), 7, + [12232] = 2, + ACTIONS(1838), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -29752,7 +28626,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1770), 30, + ACTIONS(1840), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29780,11 +28655,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [13156] = 2, - ACTIONS(1772), 7, + [12274] = 2, + ACTIONS(1842), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -29792,7 +28666,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1774), 30, + ACTIONS(1844), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29820,11 +28695,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [13198] = 2, - ACTIONS(1776), 7, + [12316] = 2, + ACTIONS(1846), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -29832,7 +28706,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1778), 30, + ACTIONS(1848), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29860,11 +28735,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [13240] = 2, - ACTIONS(1780), 7, + [12358] = 2, + ACTIONS(1850), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -29872,7 +28746,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1782), 30, + ACTIONS(1852), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29900,11 +28775,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [13282] = 2, - ACTIONS(1784), 7, + [12400] = 2, + ACTIONS(1854), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -29912,7 +28786,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1786), 30, + ACTIONS(1856), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29940,11 +28815,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [13324] = 2, - ACTIONS(1788), 7, + [12442] = 2, + ACTIONS(1965), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -29952,7 +28826,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1790), 30, + ACTIONS(1967), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29962,6 +28837,7 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -29970,7 +28846,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -29980,20 +28855,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [13366] = 2, - ACTIONS(1901), 8, + [12484] = 2, + ACTIONS(1969), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1903), 29, + ACTIONS(1971), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30003,13 +28877,14 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -30020,20 +28895,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [13408] = 2, - ACTIONS(1894), 8, + [12526] = 2, + ACTIONS(1929), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1896), 29, + ACTIONS(1931), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30047,11 +28921,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -30060,20 +28935,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [13450] = 2, - ACTIONS(1715), 8, + [12568] = 2, + ACTIONS(1925), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1717), 29, + ACTIONS(1927), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30089,9 +28963,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -30100,11 +28975,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [13492] = 2, - ACTIONS(1792), 7, + [12610] = 2, + ACTIONS(1858), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -30112,7 +28986,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1794), 30, + ACTIONS(1860), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30140,11 +29015,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [13534] = 2, - ACTIONS(1796), 7, + [12652] = 2, + ACTIONS(1862), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -30152,7 +29026,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1798), 30, + ACTIONS(1864), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30180,11 +29055,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [13576] = 2, - ACTIONS(1800), 7, + [12694] = 2, + ACTIONS(1866), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -30192,7 +29066,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1802), 30, + ACTIONS(1868), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30220,11 +29095,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [13618] = 2, - ACTIONS(1804), 7, + [12736] = 2, + ACTIONS(1870), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -30232,7 +29106,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1806), 30, + ACTIONS(1872), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30260,11 +29135,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [13660] = 2, - ACTIONS(1808), 7, + [12778] = 2, + ACTIONS(1874), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -30272,7 +29146,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1810), 30, + ACTIONS(1876), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30300,11 +29175,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [13702] = 2, - ACTIONS(1812), 7, + [12820] = 2, + ACTIONS(1878), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -30312,7 +29186,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1814), 30, + ACTIONS(1880), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30340,11 +29215,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [13744] = 2, - ACTIONS(1816), 7, + [12862] = 2, + ACTIONS(1882), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -30352,7 +29226,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1818), 30, + ACTIONS(1884), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30380,20 +29255,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [13786] = 2, - ACTIONS(1901), 8, + [12904] = 2, + ACTIONS(1886), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1903), 29, + ACTIONS(1888), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30407,10 +29281,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -30420,25 +29295,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [13828] = 4, - ACTIONS(49), 1, - aux_sym_emphasis_end_token1, - ACTIONS(51), 1, + [12946] = 2, + ACTIONS(1890), 7, anon_sym_LBRACE, - ACTIONS(1665), 8, - anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1660), 27, + ACTIONS(1892), 30, + sym__verbatim_begin, anon_sym_LBRACE_, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -30454,6 +29325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -30463,9 +29335,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, + sym__whitespace1, sym__newline, - [13874] = 2, + [12988] = 2, ACTIONS(1894), 7, anon_sym_LBRACE, anon_sym_BSLASH, @@ -30475,6 +29347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, aux_sym__text_token1, ACTIONS(1896), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30486,13 +29359,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -30502,25 +29375,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [13916] = 4, - ACTIONS(49), 1, - aux_sym_emphasis_end_token1, - ACTIONS(51), 1, + [13030] = 2, + ACTIONS(1898), 7, anon_sym_LBRACE, - ACTIONS(1649), 8, - anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1644), 27, + ACTIONS(1900), 30, + sym__verbatim_begin, anon_sym_LBRACE_, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -30536,6 +29405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -30545,19 +29415,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, + sym__whitespace1, sym__newline, - [13962] = 2, - ACTIONS(1715), 8, + [13072] = 2, + ACTIONS(1902), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1717), 29, + ACTIONS(1904), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30571,10 +29441,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -30584,11 +29455,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [14004] = 2, - ACTIONS(1901), 7, + [13114] = 2, + ACTIONS(1921), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -30596,7 +29466,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1903), 30, + ACTIONS(1923), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30608,7 +29479,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -30616,6 +29486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -30624,11 +29495,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [14046] = 2, - ACTIONS(1894), 7, + [13156] = 2, + ACTIONS(1909), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -30636,7 +29506,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1896), 30, + ACTIONS(1911), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30647,7 +29518,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -30655,6 +29525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -30664,11 +29535,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [14088] = 2, - ACTIONS(1715), 7, + [13198] = 2, + ACTIONS(1913), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -30676,7 +29546,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1717), 30, + ACTIONS(1915), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30688,13 +29559,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -30704,11 +29575,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [14130] = 2, - ACTIONS(1812), 7, + [13240] = 2, + ACTIONS(1917), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -30716,8 +29586,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1814), 30, - ts_builtin_sym_end, + ACTIONS(1919), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30735,6 +29605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -30744,11 +29615,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [14172] = 2, - ACTIONS(1901), 7, + [13282] = 2, + ACTIONS(1921), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -30756,7 +29626,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1903), 30, + ACTIONS(1923), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30767,7 +29638,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -30775,6 +29645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -30784,11 +29655,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [14214] = 2, - ACTIONS(1808), 7, + [13324] = 2, + ACTIONS(1925), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -30796,8 +29666,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1810), 30, - ts_builtin_sym_end, + ACTIONS(1927), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30815,6 +29685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -30824,11 +29695,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [14256] = 2, - ACTIONS(1804), 7, + [13366] = 2, + ACTIONS(1929), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -30836,8 +29706,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1806), 30, - ts_builtin_sym_end, + ACTIONS(1931), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30855,6 +29725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -30864,11 +29735,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [14298] = 2, - ACTIONS(1800), 7, + [13408] = 2, + ACTIONS(1925), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -30876,7 +29746,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1802), 30, + ACTIONS(1927), 30, + sym__verbatim_begin, ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, @@ -30904,22 +29775,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [14340] = 2, - ACTIONS(1796), 7, + [13450] = 4, + ACTIONS(49), 1, anon_sym_LBRACE, + ACTIONS(93), 1, + aux_sym_emphasis_end_token1, + ACTIONS(1697), 8, + anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1798), 30, - ts_builtin_sym_end, + ACTIONS(1692), 27, + sym__verbatim_begin, anon_sym_LBRACE_, - anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -30944,11 +29818,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, - sym__whitespace1, sym__newline, - [14382] = 2, - ACTIONS(1792), 7, + [13496] = 2, + ACTIONS(1921), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -30956,7 +29828,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1794), 30, + ACTIONS(1923), 30, + sym__verbatim_begin, ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, @@ -30984,12 +29857,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [14424] = 2, - ACTIONS(1820), 9, + [13538] = 4, + ACTIONS(49), 1, anon_sym_LBRACE, + ACTIONS(93), 1, + aux_sym_emphasis_end_token1, + ACTIONS(1705), 8, anon_sym__, anon_sym_BSLASH, sym_en_dash, @@ -30998,9 +29873,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1822), 28, + ACTIONS(1700), 27, + sym__verbatim_begin, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -31025,22 +29900,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__newline, - [14466] = 2, - ACTIONS(1824), 9, + [13584] = 2, + ACTIONS(1917), 7, anon_sym_LBRACE, - anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1826), 28, + ACTIONS(1919), 30, + sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -31065,24 +29939,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, - sym__newline, - [14508] = 4, - ACTIONS(1911), 1, - anon_sym_LBRACE2, - STATE(456), 1, - sym_comment, - ACTIONS(1830), 7, - anon_sym__, + sym__whitespace1, + sym__newline, + [13626] = 2, + ACTIONS(1913), 7, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - sym__whitespace1, + anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1828), 28, + ACTIONS(1915), 30, + sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -31107,10 +29979,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, + sym__whitespace1, sym__newline, - [14554] = 2, - ACTIONS(1894), 7, + [13668] = 2, + ACTIONS(1909), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -31118,7 +29990,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1896), 30, + ACTIONS(1911), 30, + sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31128,7 +30002,6 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -31146,11 +30019,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [14596] = 2, - ACTIONS(1715), 7, + [13710] = 2, + ACTIONS(1917), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -31158,7 +30030,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1717), 30, + ACTIONS(1919), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31169,7 +30042,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -31178,6 +30050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -31186,23 +30059,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [14638] = 2, - ACTIONS(1835), 9, + [13752] = 2, + ACTIONS(1913), 7, anon_sym_LBRACE, - anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1837), 28, + ACTIONS(1915), 30, + sym__verbatim_begin, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -31219,6 +30090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -31227,10 +30099,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, + sym__whitespace1, sym__newline, - [14680] = 2, - ACTIONS(1901), 7, + [13794] = 2, + ACTIONS(1909), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -31238,7 +30110,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1903), 30, + ACTIONS(1911), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31248,7 +30121,6 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -31258,6 +30130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -31266,23 +30139,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [14722] = 2, - ACTIONS(1839), 9, + [13836] = 2, + ACTIONS(1965), 7, anon_sym_LBRACE, - anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1841), 28, + ACTIONS(1967), 30, + sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -31307,10 +30179,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, + sym__whitespace1, sym__newline, - [14764] = 2, - ACTIONS(1715), 7, + [13878] = 2, + ACTIONS(1902), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -31318,7 +30190,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1717), 30, + ACTIONS(1904), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31328,7 +30201,6 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -31338,6 +30210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -31346,23 +30219,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [14806] = 2, - ACTIONS(1843), 9, + [13920] = 2, + ACTIONS(1898), 7, anon_sym_LBRACE, - anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1845), 28, + ACTIONS(1900), 30, + sym__verbatim_begin, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -31379,6 +30250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -31387,22 +30259,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, + sym__whitespace1, sym__newline, - [14848] = 2, - ACTIONS(1847), 9, + [13962] = 2, + ACTIONS(1902), 7, anon_sym_LBRACE, - anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1849), 28, + ACTIONS(1904), 30, + sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -31427,10 +30299,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, + sym__whitespace1, sym__newline, - [14890] = 2, - ACTIONS(1851), 9, + [14004] = 3, + ACTIONS(1991), 1, + sym__verbatim_begin, + ACTIONS(49), 9, anon_sym_LBRACE, anon_sym__, anon_sym_BSLASH, @@ -31440,7 +30314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1853), 28, + ACTIONS(93), 27, anon_sym_LBRACE_, aux_sym_emphasis_end_token1, anon_sym_LBRACE_STAR, @@ -31467,10 +30341,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__newline, - [14932] = 2, - ACTIONS(1760), 9, + [14048] = 2, + ACTIONS(1936), 9, anon_sym_LBRACE, anon_sym__, anon_sym_BSLASH, @@ -31480,7 +30353,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1762), 28, + ACTIONS(1938), 28, + sym__verbatim_begin, anon_sym_LBRACE_, aux_sym_emphasis_end_token1, anon_sym_LBRACE_STAR, @@ -31507,10 +30381,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__newline, - [14974] = 2, - ACTIONS(1855), 9, + [14090] = 2, + ACTIONS(1823), 9, anon_sym_LBRACE, anon_sym__, anon_sym_BSLASH, @@ -31520,7 +30393,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1857), 28, + ACTIONS(1825), 28, + sym__verbatim_begin, anon_sym_LBRACE_, aux_sym_emphasis_end_token1, anon_sym_LBRACE_STAR, @@ -31547,20 +30421,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__newline, - [15016] = 2, - ACTIONS(1816), 7, - anon_sym_LBRACE, + [14132] = 4, + ACTIONS(1994), 1, + anon_sym_LBRACE2, + STATE(448), 1, + sym_comment, + ACTIONS(1818), 7, + anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1818), 30, + ACTIONS(1816), 28, + sym__verbatim_begin, anon_sym_LBRACE_, - anon_sym__, + aux_sym_emphasis_end_token1, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -31577,7 +30455,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -31586,11 +30463,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, - sym__whitespace1, sym__newline, - [15058] = 2, - ACTIONS(1812), 7, + [14178] = 2, + ACTIONS(1894), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -31598,7 +30473,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1814), 30, + ACTIONS(1896), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31626,11 +30502,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [15100] = 2, - ACTIONS(1808), 7, + [14220] = 2, + ACTIONS(1890), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -31638,7 +30513,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1810), 30, + ACTIONS(1892), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31666,23 +30542,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [15142] = 2, - ACTIONS(1859), 9, + [14262] = 2, + ACTIONS(1886), 7, anon_sym_LBRACE, - anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1861), 28, + ACTIONS(1888), 30, + sym__verbatim_begin, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -31699,6 +30573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -31707,22 +30582,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, + sym__whitespace1, sym__newline, - [15184] = 2, - ACTIONS(1863), 9, + [14304] = 2, + ACTIONS(1882), 7, anon_sym_LBRACE, - anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1865), 28, + ACTIONS(1884), 30, + sym__verbatim_begin, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -31739,6 +30613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -31747,10 +30622,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, + sym__whitespace1, sym__newline, - [15226] = 2, - ACTIONS(1867), 9, + [14346] = 2, + ACTIONS(1830), 9, anon_sym_LBRACE, anon_sym__, anon_sym_BSLASH, @@ -31760,7 +30635,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1869), 28, + ACTIONS(1832), 28, + sym__verbatim_begin, anon_sym_LBRACE_, aux_sym_emphasis_end_token1, anon_sym_LBRACE_STAR, @@ -31787,10 +30663,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__newline, - [15268] = 2, - ACTIONS(1871), 9, + [14388] = 2, + ACTIONS(1834), 9, anon_sym_LBRACE, anon_sym__, anon_sym_BSLASH, @@ -31800,7 +30675,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1873), 28, + ACTIONS(1836), 28, + sym__verbatim_begin, anon_sym_LBRACE_, aux_sym_emphasis_end_token1, anon_sym_LBRACE_STAR, @@ -31827,10 +30703,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__newline, - [15310] = 2, - ACTIONS(1764), 9, + [14430] = 2, + ACTIONS(1838), 9, anon_sym_LBRACE, anon_sym__, anon_sym_BSLASH, @@ -31840,7 +30715,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1766), 28, + ACTIONS(1840), 28, + sym__verbatim_begin, anon_sym_LBRACE_, aux_sym_emphasis_end_token1, anon_sym_LBRACE_STAR, @@ -31867,10 +30743,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__newline, - [15352] = 2, - ACTIONS(1768), 9, + [14472] = 2, + ACTIONS(1842), 9, anon_sym_LBRACE, anon_sym__, anon_sym_BSLASH, @@ -31880,7 +30755,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1770), 28, + ACTIONS(1844), 28, + sym__verbatim_begin, anon_sym_LBRACE_, aux_sym_emphasis_end_token1, anon_sym_LBRACE_STAR, @@ -31907,10 +30783,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__newline, - [15394] = 2, - ACTIONS(1772), 9, + [14514] = 2, + ACTIONS(1846), 9, anon_sym_LBRACE, anon_sym__, anon_sym_BSLASH, @@ -31920,7 +30795,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1774), 28, + ACTIONS(1848), 28, + sym__verbatim_begin, anon_sym_LBRACE_, aux_sym_emphasis_end_token1, anon_sym_LBRACE_STAR, @@ -31947,10 +30823,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__newline, - [15436] = 2, - ACTIONS(1776), 9, + [14556] = 2, + ACTIONS(1850), 9, anon_sym_LBRACE, anon_sym__, anon_sym_BSLASH, @@ -31960,7 +30835,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1778), 28, + ACTIONS(1852), 28, + sym__verbatim_begin, anon_sym_LBRACE_, aux_sym_emphasis_end_token1, anon_sym_LBRACE_STAR, @@ -31987,10 +30863,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__newline, - [15478] = 2, - ACTIONS(1780), 9, + [14598] = 2, + ACTIONS(1854), 9, anon_sym_LBRACE, anon_sym__, anon_sym_BSLASH, @@ -32000,7 +30875,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1782), 28, + ACTIONS(1856), 28, + sym__verbatim_begin, anon_sym_LBRACE_, aux_sym_emphasis_end_token1, anon_sym_LBRACE_STAR, @@ -32027,22 +30903,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__newline, - [15520] = 2, - ACTIONS(1784), 9, + [14640] = 2, + ACTIONS(1898), 7, anon_sym_LBRACE, - anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1786), 28, + ACTIONS(1900), 30, + sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -32067,22 +30942,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, + sym__whitespace1, sym__newline, - [15562] = 2, - ACTIONS(1788), 9, + [14682] = 2, + ACTIONS(1894), 7, anon_sym_LBRACE, - anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1790), 28, + ACTIONS(1896), 30, + sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -32107,10 +30982,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, + sym__whitespace1, sym__newline, - [15604] = 2, - ACTIONS(1715), 7, + [14724] = 2, + ACTIONS(1890), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -32118,7 +30993,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1717), 30, + ACTIONS(1892), 30, + sym__verbatim_begin, ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, @@ -32146,11 +31022,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [15646] = 2, - ACTIONS(1804), 7, + [14766] = 2, + ACTIONS(1878), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -32158,7 +31033,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1806), 30, + ACTIONS(1880), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32186,21 +31062,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [15688] = 2, - ACTIONS(1800), 7, + [14808] = 2, + ACTIONS(1858), 9, anon_sym_LBRACE, + anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1802), 30, + ACTIONS(1860), 28, + sym__verbatim_begin, anon_sym_LBRACE_, - anon_sym__, + aux_sym_emphasis_end_token1, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -32217,7 +31095,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -32226,11 +31103,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, - sym__whitespace1, sym__newline, - [15730] = 2, - ACTIONS(1792), 9, + [14850] = 2, + ACTIONS(1862), 9, anon_sym_LBRACE, anon_sym__, anon_sym_BSLASH, @@ -32240,7 +31115,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1794), 28, + ACTIONS(1864), 28, + sym__verbatim_begin, anon_sym_LBRACE_, aux_sym_emphasis_end_token1, anon_sym_LBRACE_STAR, @@ -32267,10 +31143,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__newline, - [15772] = 2, - ACTIONS(1796), 9, + [14892] = 2, + ACTIONS(1866), 9, anon_sym_LBRACE, anon_sym__, anon_sym_BSLASH, @@ -32280,7 +31155,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1798), 28, + ACTIONS(1868), 28, + sym__verbatim_begin, anon_sym_LBRACE_, aux_sym_emphasis_end_token1, anon_sym_LBRACE_STAR, @@ -32307,10 +31183,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__newline, - [15814] = 2, - ACTIONS(1800), 9, + [14934] = 2, + ACTIONS(1870), 9, anon_sym_LBRACE, anon_sym__, anon_sym_BSLASH, @@ -32320,7 +31195,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1802), 28, + ACTIONS(1872), 28, + sym__verbatim_begin, anon_sym_LBRACE_, aux_sym_emphasis_end_token1, anon_sym_LBRACE_STAR, @@ -32347,10 +31223,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__newline, - [15856] = 2, - ACTIONS(1804), 9, + [14976] = 2, + ACTIONS(1874), 9, anon_sym_LBRACE, anon_sym__, anon_sym_BSLASH, @@ -32360,7 +31235,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1806), 28, + ACTIONS(1876), 28, + sym__verbatim_begin, anon_sym_LBRACE_, aux_sym_emphasis_end_token1, anon_sym_LBRACE_STAR, @@ -32387,10 +31263,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__newline, - [15898] = 2, - ACTIONS(1808), 9, + [15018] = 2, + ACTIONS(1878), 9, anon_sym_LBRACE, anon_sym__, anon_sym_BSLASH, @@ -32400,7 +31275,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1810), 28, + ACTIONS(1880), 28, + sym__verbatim_begin, anon_sym_LBRACE_, aux_sym_emphasis_end_token1, anon_sym_LBRACE_STAR, @@ -32427,10 +31303,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__newline, - [15940] = 2, - ACTIONS(1812), 9, + [15060] = 2, + ACTIONS(1882), 9, anon_sym_LBRACE, anon_sym__, anon_sym_BSLASH, @@ -32440,7 +31315,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1814), 28, + ACTIONS(1884), 28, + sym__verbatim_begin, anon_sym_LBRACE_, aux_sym_emphasis_end_token1, anon_sym_LBRACE_STAR, @@ -32467,10 +31343,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__newline, - [15982] = 2, - ACTIONS(1816), 9, + [15102] = 2, + ACTIONS(1886), 9, anon_sym_LBRACE, anon_sym__, anon_sym_BSLASH, @@ -32480,7 +31355,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1818), 28, + ACTIONS(1888), 28, + sym__verbatim_begin, anon_sym_LBRACE_, aux_sym_emphasis_end_token1, anon_sym_LBRACE_STAR, @@ -32507,20 +31383,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__newline, - [16024] = 2, - ACTIONS(1796), 7, + [15144] = 2, + ACTIONS(1890), 9, anon_sym_LBRACE, + anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1798), 30, + ACTIONS(1892), 28, + sym__verbatim_begin, anon_sym_LBRACE_, - anon_sym__, + aux_sym_emphasis_end_token1, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -32537,7 +31415,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -32546,16 +31423,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, - sym__whitespace1, sym__newline, - [16066] = 4, - ACTIONS(49), 1, - aux_sym_strong_end_token1, - ACTIONS(51), 1, + [15186] = 2, + ACTIONS(1894), 9, anon_sym_LBRACE, - ACTIONS(1665), 8, - anon_sym_STAR, + anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, @@ -32563,10 +31435,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1660), 27, + ACTIONS(1896), 28, + sym__verbatim_begin, anon_sym_LBRACE_, - anon_sym__, + aux_sym_emphasis_end_token1, anon_sym_LBRACE_STAR, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -32589,20 +31463,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__newline, - [16112] = 2, - ACTIONS(1792), 7, + [15228] = 2, + ACTIONS(1898), 9, anon_sym_LBRACE, + anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1794), 30, + ACTIONS(1900), 28, + sym__verbatim_begin, anon_sym_LBRACE_, - anon_sym__, + aux_sym_emphasis_end_token1, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -32619,7 +31495,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -32628,16 +31503,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, - sym__whitespace1, sym__newline, - [16154] = 4, - ACTIONS(49), 1, - aux_sym_strong_end_token1, - ACTIONS(51), 1, + [15270] = 2, + ACTIONS(1902), 9, anon_sym_LBRACE, - ACTIONS(1649), 8, - anon_sym_STAR, + anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, @@ -32645,10 +31515,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1644), 27, + ACTIONS(1904), 28, + sym__verbatim_begin, anon_sym_LBRACE_, - anon_sym__, + aux_sym_emphasis_end_token1, anon_sym_LBRACE_STAR, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -32671,10 +31543,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__newline, - [16200] = 2, - ACTIONS(1788), 7, + [15312] = 2, + ACTIONS(1874), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -32682,8 +31553,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1790), 30, - ts_builtin_sym_end, + ACTIONS(1876), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32702,6 +31573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -32710,22 +31582,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [16242] = 2, - ACTIONS(1784), 7, + [15354] = 2, + ACTIONS(1909), 9, anon_sym_LBRACE, + anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1786), 30, - ts_builtin_sym_end, + ACTIONS(1911), 28, + sym__verbatim_begin, anon_sym_LBRACE_, - anon_sym__, + aux_sym_emphasis_end_token1, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -32750,22 +31623,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, - sym__whitespace1, sym__newline, - [16284] = 2, - ACTIONS(1780), 7, + [15396] = 2, + ACTIONS(1913), 9, anon_sym_LBRACE, + anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1782), 30, - ts_builtin_sym_end, + ACTIONS(1915), 28, + sym__verbatim_begin, anon_sym_LBRACE_, - anon_sym__, + aux_sym_emphasis_end_token1, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -32790,22 +31663,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, - sym__whitespace1, sym__newline, - [16326] = 2, - ACTIONS(1776), 7, + [15438] = 2, + ACTIONS(1917), 9, anon_sym_LBRACE, + anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1778), 30, - ts_builtin_sym_end, + ACTIONS(1919), 28, + sym__verbatim_begin, anon_sym_LBRACE_, - anon_sym__, + aux_sym_emphasis_end_token1, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -32830,22 +31703,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, - sym__whitespace1, sym__newline, - [16368] = 2, - ACTIONS(1894), 7, + [15480] = 2, + ACTIONS(1921), 9, anon_sym_LBRACE, + anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1896), 30, - ts_builtin_sym_end, + ACTIONS(1923), 28, + sym__verbatim_begin, anon_sym_LBRACE_, - anon_sym__, + aux_sym_emphasis_end_token1, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -32870,22 +31743,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, - sym__whitespace1, sym__newline, - [16410] = 2, - ACTIONS(1839), 7, + [15522] = 2, + ACTIONS(1925), 9, anon_sym_LBRACE, + anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1841), 30, - ts_builtin_sym_end, + ACTIONS(1927), 28, + sym__verbatim_begin, anon_sym_LBRACE_, - anon_sym__, + aux_sym_emphasis_end_token1, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -32910,21 +31783,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, - sym__whitespace1, sym__newline, - [16452] = 2, - ACTIONS(1788), 7, + [15564] = 2, + ACTIONS(1929), 9, anon_sym_LBRACE, + anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1790), 30, + ACTIONS(1931), 28, + sym__verbatim_begin, anon_sym_LBRACE_, - anon_sym__, + aux_sym_emphasis_end_token1, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -32941,7 +31815,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -32950,11 +31823,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, - sym__whitespace1, sym__newline, - [16494] = 2, - ACTIONS(1784), 7, + [15606] = 2, + ACTIONS(1886), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -32962,7 +31833,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1786), 30, + ACTIONS(1888), 30, + sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32981,7 +31854,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -32990,24 +31862,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [16536] = 2, - ACTIONS(1772), 7, + [15648] = 4, + ACTIONS(49), 1, anon_sym_LBRACE, + ACTIONS(93), 1, + aux_sym_strong_end_token1, + ACTIONS(1697), 8, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1774), 30, - ts_builtin_sym_end, + ACTIONS(1692), 27, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -33030,11 +31905,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, - sym__whitespace1, sym__newline, - [16578] = 2, - ACTIONS(1768), 7, + [15694] = 2, + ACTIONS(1870), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -33042,8 +31915,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1770), 30, - ts_builtin_sym_end, + ACTIONS(1872), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33062,6 +31935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -33070,24 +31944,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [16620] = 2, - ACTIONS(1764), 7, + [15736] = 4, + ACTIONS(49), 1, anon_sym_LBRACE, + ACTIONS(93), 1, + aux_sym_strong_end_token1, + ACTIONS(1705), 8, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1766), 30, - ts_builtin_sym_end, + ACTIONS(1700), 27, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -33110,25 +31987,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, - sym__whitespace1, sym__newline, - [16662] = 2, - ACTIONS(1820), 9, + [15782] = 2, + ACTIONS(1866), 7, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1822), 28, + ACTIONS(1868), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -33143,6 +32017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -33151,24 +32026,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, + sym__whitespace1, sym__newline, - [16704] = 2, - ACTIONS(1824), 9, + [15824] = 2, + ACTIONS(1862), 7, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1826), 28, + ACTIONS(1864), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -33183,6 +32057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -33191,26 +32066,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, + sym__whitespace1, sym__newline, - [16746] = 4, - ACTIONS(1914), 1, - anon_sym_LBRACE2, - STATE(509), 1, - sym_comment, - ACTIONS(1830), 7, - anon_sym_STAR, + [15866] = 2, + ACTIONS(1858), 7, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - sym__whitespace1, + anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1828), 28, + ACTIONS(1860), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -33225,6 +32097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -33233,10 +32106,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, + sym__whitespace1, sym__newline, - [16792] = 2, - ACTIONS(1871), 7, + [15908] = 2, + ACTIONS(1882), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -33244,7 +32117,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1873), 30, + ACTIONS(1884), 30, + sym__verbatim_begin, ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, @@ -33272,11 +32146,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [16834] = 2, - ACTIONS(1867), 7, + [15950] = 2, + ACTIONS(1878), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -33284,7 +32157,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1869), 30, + ACTIONS(1880), 30, + sym__verbatim_begin, ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, @@ -33312,25 +32186,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [16876] = 2, - ACTIONS(1835), 9, + [15992] = 2, + ACTIONS(1874), 7, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1837), 28, + ACTIONS(1876), 30, + sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -33353,10 +32226,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, + sym__whitespace1, sym__newline, - [16918] = 2, - ACTIONS(1780), 7, + [16034] = 2, + ACTIONS(1870), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -33364,7 +32237,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1782), 30, + ACTIONS(1872), 30, + sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33383,7 +32258,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -33392,25 +32266,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [16960] = 2, - ACTIONS(1839), 9, + [16076] = 2, + ACTIONS(1866), 7, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1841), 28, + ACTIONS(1868), 30, + sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -33433,24 +32306,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, + sym__whitespace1, sym__newline, - [17002] = 2, - ACTIONS(1756), 9, + [16118] = 2, + ACTIONS(1862), 7, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1758), 28, + ACTIONS(1864), 30, + sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -33473,24 +32346,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, + sym__whitespace1, sym__newline, - [17044] = 2, - ACTIONS(1843), 9, + [16160] = 2, + ACTIONS(1858), 7, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1845), 28, + ACTIONS(1860), 30, + sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -33513,10 +32386,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, + sym__whitespace1, sym__newline, - [17086] = 2, - ACTIONS(1847), 9, + [16202] = 3, + ACTIONS(1997), 1, + sym__verbatim_begin, + ACTIONS(49), 9, anon_sym_LBRACE, anon_sym_STAR, anon_sym_BSLASH, @@ -33526,7 +32401,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1849), 28, + ACTIONS(93), 27, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33553,10 +32428,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__newline, - [17128] = 2, - ACTIONS(1851), 9, + [16246] = 2, + ACTIONS(1936), 9, anon_sym_LBRACE, anon_sym_STAR, anon_sym_BSLASH, @@ -33566,7 +32440,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1853), 28, + ACTIONS(1938), 28, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33593,10 +32468,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__newline, - [17170] = 2, - ACTIONS(1760), 9, + [16288] = 2, + ACTIONS(1823), 9, anon_sym_LBRACE, anon_sym_STAR, anon_sym_BSLASH, @@ -33606,7 +32480,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1762), 28, + ACTIONS(1825), 28, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33633,20 +32508,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__newline, - [17212] = 2, - ACTIONS(1855), 9, - anon_sym_LBRACE, + [16330] = 4, + ACTIONS(2000), 1, + anon_sym_LBRACE2, + STATE(500), 1, + sym_comment, + ACTIONS(1818), 7, anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1857), 28, + ACTIONS(1816), 28, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33673,10 +32550,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__newline, - [17254] = 2, - ACTIONS(1863), 7, + [16376] = 2, + ACTIONS(1969), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -33684,7 +32560,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1865), 30, + ACTIONS(1971), 30, + sym__verbatim_begin, ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, @@ -33712,11 +32589,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [17296] = 2, - ACTIONS(1859), 7, + [16418] = 2, + ACTIONS(1854), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -33724,8 +32600,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1861), 30, - ts_builtin_sym_end, + ACTIONS(1856), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33744,6 +32620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -33752,23 +32629,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [17338] = 2, - ACTIONS(1776), 7, + [16460] = 2, + ACTIONS(1812), 9, anon_sym_LBRACE, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1778), 30, + ACTIONS(1814), 28, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -33783,7 +32662,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -33792,25 +32670,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, - sym__whitespace1, sym__newline, - [17380] = 2, - ACTIONS(1859), 9, + [16502] = 2, + ACTIONS(1850), 7, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1861), 28, + ACTIONS(1852), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -33825,6 +32700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -33833,10 +32709,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, + sym__whitespace1, sym__newline, - [17422] = 2, - ACTIONS(1863), 9, + [16544] = 2, + ACTIONS(1830), 9, anon_sym_LBRACE, anon_sym_STAR, anon_sym_BSLASH, @@ -33846,7 +32722,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1865), 28, + ACTIONS(1832), 28, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33873,10 +32750,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__newline, - [17464] = 2, - ACTIONS(1867), 9, + [16586] = 2, + ACTIONS(1834), 9, anon_sym_LBRACE, anon_sym_STAR, anon_sym_BSLASH, @@ -33886,7 +32762,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1869), 28, + ACTIONS(1836), 28, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33913,10 +32790,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__newline, - [17506] = 2, - ACTIONS(1871), 9, + [16628] = 2, + ACTIONS(1838), 9, anon_sym_LBRACE, anon_sym_STAR, anon_sym_BSLASH, @@ -33926,7 +32802,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1873), 28, + ACTIONS(1840), 28, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33953,10 +32830,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__newline, - [17548] = 2, - ACTIONS(1764), 9, + [16670] = 2, + ACTIONS(1842), 9, anon_sym_LBRACE, anon_sym_STAR, anon_sym_BSLASH, @@ -33966,7 +32842,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1766), 28, + ACTIONS(1844), 28, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33993,10 +32870,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__newline, - [17590] = 2, - ACTIONS(1768), 9, + [16712] = 2, + ACTIONS(1846), 9, anon_sym_LBRACE, anon_sym_STAR, anon_sym_BSLASH, @@ -34006,7 +32882,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1770), 28, + ACTIONS(1848), 28, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -34033,10 +32910,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__newline, - [17632] = 2, - ACTIONS(1772), 9, + [16754] = 2, + ACTIONS(1850), 9, anon_sym_LBRACE, anon_sym_STAR, anon_sym_BSLASH, @@ -34046,7 +32922,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1774), 28, + ACTIONS(1852), 28, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -34073,10 +32950,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__newline, - [17674] = 2, - ACTIONS(1776), 9, + [16796] = 2, + ACTIONS(1854), 9, anon_sym_LBRACE, anon_sym_STAR, anon_sym_BSLASH, @@ -34086,7 +32962,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1778), 28, + ACTIONS(1856), 28, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -34113,24 +32990,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__newline, - [17716] = 2, - ACTIONS(1780), 9, + [16838] = 2, + ACTIONS(1846), 7, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1782), 28, + ACTIONS(1848), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -34145,6 +33020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -34153,24 +33029,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, + sym__whitespace1, sym__newline, - [17758] = 2, - ACTIONS(1784), 9, + [16880] = 2, + ACTIONS(1842), 7, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1786), 28, + ACTIONS(1844), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -34185,6 +33060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -34193,24 +33069,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, + sym__whitespace1, sym__newline, - [17800] = 2, - ACTIONS(1788), 9, + [16922] = 2, + ACTIONS(1838), 7, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1790), 28, + ACTIONS(1840), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -34225,6 +33100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -34233,10 +33109,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, + sym__whitespace1, sym__newline, - [17842] = 2, - ACTIONS(1772), 7, + [16964] = 2, + ACTIONS(1834), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -34244,7 +33120,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1774), 30, + ACTIONS(1836), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -34272,23 +33149,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [17884] = 2, - ACTIONS(1768), 7, + [17006] = 2, + ACTIONS(1858), 9, anon_sym_LBRACE, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1770), 30, + ACTIONS(1860), 28, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -34303,7 +33182,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -34312,23 +33190,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, - sym__whitespace1, sym__newline, - [17926] = 2, - ACTIONS(1764), 7, + [17048] = 2, + ACTIONS(1862), 9, anon_sym_LBRACE, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1766), 30, + ACTIONS(1864), 28, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -34343,7 +33222,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -34352,11 +33230,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, - sym__whitespace1, sym__newline, - [17968] = 2, - ACTIONS(1792), 9, + [17090] = 2, + ACTIONS(1866), 9, anon_sym_LBRACE, anon_sym_STAR, anon_sym_BSLASH, @@ -34366,7 +33242,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1794), 28, + ACTIONS(1868), 28, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -34393,10 +33270,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__newline, - [18010] = 2, - ACTIONS(1796), 9, + [17132] = 2, + ACTIONS(1870), 9, anon_sym_LBRACE, anon_sym_STAR, anon_sym_BSLASH, @@ -34406,7 +33282,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1798), 28, + ACTIONS(1872), 28, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -34433,10 +33310,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__newline, - [18052] = 2, - ACTIONS(1800), 9, + [17174] = 2, + ACTIONS(1874), 9, anon_sym_LBRACE, anon_sym_STAR, anon_sym_BSLASH, @@ -34446,7 +33322,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1802), 28, + ACTIONS(1876), 28, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -34473,10 +33350,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__newline, - [18094] = 2, - ACTIONS(1804), 9, + [17216] = 2, + ACTIONS(1878), 9, anon_sym_LBRACE, anon_sym_STAR, anon_sym_BSLASH, @@ -34486,7 +33362,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1806), 28, + ACTIONS(1880), 28, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -34513,10 +33390,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__newline, - [18136] = 2, - ACTIONS(1808), 9, + [17258] = 2, + ACTIONS(1882), 9, anon_sym_LBRACE, anon_sym_STAR, anon_sym_BSLASH, @@ -34526,7 +33402,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1810), 28, + ACTIONS(1884), 28, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -34553,10 +33430,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__newline, - [18178] = 2, - ACTIONS(1812), 9, + [17300] = 2, + ACTIONS(1886), 9, anon_sym_LBRACE, anon_sym_STAR, anon_sym_BSLASH, @@ -34566,7 +33442,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1814), 28, + ACTIONS(1888), 28, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -34593,10 +33470,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__newline, - [18220] = 2, - ACTIONS(1816), 9, + [17342] = 2, + ACTIONS(1890), 9, anon_sym_LBRACE, anon_sym_STAR, anon_sym_BSLASH, @@ -34606,7 +33482,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1818), 28, + ACTIONS(1892), 28, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -34633,22 +33510,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__newline, - [18262] = 2, - ACTIONS(1871), 7, + [17384] = 2, + ACTIONS(1894), 9, anon_sym_LBRACE, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1873), 30, + ACTIONS(1896), 28, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -34663,7 +33542,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -34672,26 +33550,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, - sym__whitespace1, sym__newline, - [18304] = 4, - ACTIONS(49), 1, - anon_sym_RBRACK2, - ACTIONS(51), 1, + [17426] = 2, + ACTIONS(1898), 9, anon_sym_LBRACE, - ACTIONS(1665), 6, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1660), 29, + ACTIONS(1900), 28, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -34714,23 +33590,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, - sym__whitespace1, sym__newline, - [18350] = 2, - ACTIONS(1867), 7, + [17468] = 2, + ACTIONS(1902), 9, anon_sym_LBRACE, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1869), 30, + ACTIONS(1904), 28, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -34745,7 +33622,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -34754,22 +33630,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, - sym__whitespace1, sym__newline, - [18392] = 4, - ACTIONS(49), 1, - anon_sym_RBRACK2, - ACTIONS(51), 1, + [17510] = 2, + ACTIONS(1830), 7, anon_sym_LBRACE, - ACTIONS(1649), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1644), 29, + ACTIONS(1832), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -34788,6 +33660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -34796,23 +33669,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [18438] = 2, - ACTIONS(1863), 7, + [17552] = 2, + ACTIONS(1909), 9, anon_sym_LBRACE, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1865), 30, + ACTIONS(1911), 28, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -34827,7 +33702,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -34836,23 +33710,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, - sym__whitespace1, sym__newline, - [18480] = 2, - ACTIONS(1859), 7, + [17594] = 2, + ACTIONS(1913), 9, anon_sym_LBRACE, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1861), 30, + ACTIONS(1915), 28, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -34867,7 +33742,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -34876,24 +33750,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, - sym__whitespace1, sym__newline, - [18522] = 2, - ACTIONS(1901), 7, + [17636] = 2, + ACTIONS(1917), 9, anon_sym_LBRACE, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1903), 30, - ts_builtin_sym_end, + ACTIONS(1919), 28, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -34916,23 +33790,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, - sym__whitespace1, sym__newline, - [18564] = 2, - ACTIONS(1855), 7, + [17678] = 2, + ACTIONS(1921), 9, anon_sym_LBRACE, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1857), 30, + ACTIONS(1923), 28, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -34947,7 +33822,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -34956,15 +33830,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, - sym__whitespace1, sym__newline, - [18606] = 4, - ACTIONS(1919), 1, - anon_sym_SPACE, - STATE(548), 1, - aux_sym_emphasis_begin_repeat1, - ACTIONS(1922), 7, + [17720] = 2, + ACTIONS(1925), 9, + anon_sym_LBRACE, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, @@ -34972,11 +33842,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1917), 28, + ACTIONS(1927), 28, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -34999,29 +33870,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__newline, - [18652] = 2, - ACTIONS(1871), 7, + [17762] = 2, + ACTIONS(1929), 9, anon_sym_LBRACE, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1873), 30, + ACTIONS(1931), 28, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -35038,11 +33910,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, - sym__whitespace1, sym__newline, - [18694] = 2, - ACTIONS(1855), 7, + [17804] = 2, + ACTIONS(1812), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -35050,8 +33920,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1857), 30, - ts_builtin_sym_end, + ACTIONS(1814), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -35070,6 +33940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -35078,20 +33949,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [18736] = 2, - ACTIONS(1760), 7, + [17846] = 4, + ACTIONS(49), 1, anon_sym_LBRACE, + ACTIONS(93), 1, + anon_sym_RBRACK2, + ACTIONS(1697), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1762), 30, - ts_builtin_sym_end, + ACTIONS(1692), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -35118,11 +33991,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [18778] = 2, - ACTIONS(1851), 7, + [17892] = 2, + ACTIONS(1830), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -35130,7 +34002,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1853), 30, + ACTIONS(1832), 30, + sym__verbatim_begin, ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, @@ -35158,20 +34031,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [18820] = 2, - ACTIONS(1847), 7, + [17934] = 4, + ACTIONS(49), 1, anon_sym_LBRACE, + ACTIONS(93), 1, + anon_sym_RBRACK2, + ACTIONS(1705), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1849), 30, - ts_builtin_sym_end, + ACTIONS(1700), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -35198,11 +34073,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [18862] = 2, - ACTIONS(1843), 7, + [17980] = 2, + ACTIONS(1936), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -35210,8 +34084,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1845), 30, - ts_builtin_sym_end, + ACTIONS(1938), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -35222,6 +34096,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -35238,19 +34113,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [18904] = 2, - ACTIONS(1820), 7, - anon_sym_LBRACE, + [18022] = 4, + ACTIONS(2005), 1, + anon_sym_SPACE, + STATE(535), 1, + aux_sym_emphasis_begin_repeat1, + ACTIONS(2008), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1822), 30, + ACTIONS(2003), 28, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -35269,7 +34148,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -35278,11 +34156,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, - sym__whitespace1, sym__newline, - [18946] = 2, - ACTIONS(1824), 7, + [18068] = 2, + ACTIONS(1854), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -35290,7 +34166,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1826), 30, + ACTIONS(1856), 30, + sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -35309,7 +34187,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -35318,21 +34195,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [18988] = 4, - ACTIONS(1924), 1, - anon_sym_LBRACE2, - STATE(562), 1, - sym_comment, - ACTIONS(1830), 5, + [18110] = 2, + ACTIONS(1850), 7, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1828), 30, + ACTIONS(1852), 30, + sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -35351,7 +34227,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -35360,11 +34235,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [19034] = 2, - ACTIONS(1851), 7, + [18152] = 2, + ACTIONS(1846), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -35372,7 +34246,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1853), 30, + ACTIONS(1848), 30, + sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -35391,7 +34267,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -35400,11 +34275,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [19076] = 2, - ACTIONS(1756), 7, + [18194] = 2, + ACTIONS(1842), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -35412,7 +34286,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1758), 30, + ACTIONS(1844), 30, + sym__verbatim_begin, ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, @@ -35440,11 +34315,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [19118] = 2, - ACTIONS(1835), 7, + [18236] = 2, + ACTIONS(1838), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -35452,7 +34326,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1837), 30, + ACTIONS(1840), 30, + sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -35471,7 +34347,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -35480,11 +34355,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [19160] = 2, - ACTIONS(1847), 7, + [18278] = 2, + ACTIONS(1823), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -35492,7 +34366,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1849), 30, + ACTIONS(1825), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -35520,11 +34395,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [19202] = 2, - ACTIONS(1839), 7, + [18320] = 2, + ACTIONS(1834), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -35532,7 +34406,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1841), 30, + ACTIONS(1836), 30, + sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -35551,7 +34427,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -35560,11 +34435,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [19244] = 2, - ACTIONS(1756), 7, + [18362] = 2, + ACTIONS(1936), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -35572,7 +34446,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1758), 30, + ACTIONS(1938), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -35600,11 +34475,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [19286] = 2, - ACTIONS(1843), 7, + [18404] = 3, + ACTIONS(2010), 1, + sym__verbatim_begin, + ACTIONS(49), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -35612,7 +34488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1845), 30, + ACTIONS(93), 29, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -35640,18 +34516,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [19328] = 2, - ACTIONS(1894), 6, + [18448] = 2, + ACTIONS(1965), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1896), 30, + ACTIONS(1967), 30, + sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -35670,7 +34547,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -35679,18 +34555,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [19369] = 2, - ACTIONS(1894), 6, + [18489] = 2, + ACTIONS(2015), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1896), 30, + ACTIONS(2013), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -35718,18 +34594,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [19410] = 2, - ACTIONS(1929), 6, + [18530] = 2, + ACTIONS(1969), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1927), 30, + ACTIONS(1971), 30, + sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -35741,7 +34618,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -35757,19 +34633,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [19451] = 2, - ACTIONS(1901), 6, + [18571] = 2, + ACTIONS(1965), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1903), 30, - ts_builtin_sym_end, + ACTIONS(1967), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -35783,7 +34659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -35796,18 +34672,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [19492] = 2, - ACTIONS(1901), 6, + [18612] = 2, + ACTIONS(1969), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1903), 30, + ACTIONS(1971), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -35818,8 +34694,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -35835,18 +34711,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [19533] = 2, - ACTIONS(1894), 6, + [18653] = 2, + ACTIONS(1965), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1896), 30, + ACTIONS(1967), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -35857,8 +34733,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -35874,18 +34750,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [19574] = 2, - ACTIONS(1929), 6, + [18694] = 2, + ACTIONS(2015), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1927), 30, + ACTIONS(2013), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -35913,23 +34789,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [19615] = 2, - ACTIONS(1894), 7, + [18735] = 2, + ACTIONS(1965), 8, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1896), 29, + ACTIONS(1967), 28, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -35939,7 +34816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -35952,28 +34829,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, - sym__whitespace1, sym__newline, - [19656] = 2, - ACTIONS(1894), 6, + [18776] = 2, + ACTIONS(1969), 8, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1896), 30, + ACTIONS(1971), 28, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -35991,18 +34868,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, - sym__whitespace1, sym__newline, - [19697] = 2, - ACTIONS(1901), 6, + [18817] = 2, + ACTIONS(1969), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1903), 30, + ACTIONS(1971), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -36012,8 +34888,8 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -36030,19 +34906,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [19738] = 2, - ACTIONS(1929), 7, + [18858] = 2, + ACTIONS(2015), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1927), 29, + ACTIONS(2013), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -36054,11 +34929,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -36069,24 +34945,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [19779] = 2, - ACTIONS(1894), 8, - anon_sym_STAR, + [18899] = 2, + ACTIONS(1969), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1896), 28, + ACTIONS(1971), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -36094,6 +34968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -36109,28 +34984,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, + sym__whitespace1, sym__newline, - [19820] = 2, - ACTIONS(1929), 6, + [18940] = 2, + ACTIONS(2015), 8, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1927), 30, + ACTIONS(2013), 28, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -36147,19 +35024,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, - sym__whitespace1, sym__newline, - [19861] = 2, - ACTIONS(1929), 7, + [18981] = 2, + ACTIONS(1965), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1927), 29, + ACTIONS(1967), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -36171,9 +35046,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -36186,24 +35062,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [19902] = 2, - ACTIONS(1901), 8, - anon_sym_STAR, + [19022] = 2, + ACTIONS(2015), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1903), 28, + ACTIONS(2013), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -36215,7 +35090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -36226,28 +35101,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, + sym__whitespace1, sym__newline, - [19943] = 2, - ACTIONS(1929), 8, - anon_sym_STAR, + [19063] = 2, + ACTIONS(2015), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1927), 28, + ACTIONS(2013), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -36265,18 +35140,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, + sym__whitespace1, sym__newline, - [19984] = 2, - ACTIONS(1901), 7, + [19104] = 2, + ACTIONS(1965), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1903), 29, + ACTIONS(1967), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -36286,13 +35161,14 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -36303,18 +35179,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [20025] = 2, - ACTIONS(1901), 6, + [19145] = 2, + ACTIONS(1969), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1903), 30, + ACTIONS(1971), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -36324,14 +35201,13 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -36342,19 +35218,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [20066] = 2, - ACTIONS(1929), 6, + [19186] = 2, + ACTIONS(1965), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1927), 30, - ts_builtin_sym_end, + ACTIONS(1967), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -36370,7 +35246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -36381,19 +35257,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [20107] = 2, - ACTIONS(1901), 7, + [19227] = 2, + ACTIONS(2015), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1903), 29, + ACTIONS(2013), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -36407,10 +35282,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -36420,19 +35296,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [20148] = 2, - ACTIONS(1894), 7, + [19268] = 2, + ACTIONS(2015), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1896), 29, + ACTIONS(2013), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -36446,9 +35322,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -36459,22 +35335,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [20189] = 2, - ACTIONS(1929), 8, - anon_sym__, + [19309] = 2, + ACTIONS(1969), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1927), 28, + ACTIONS(1971), 29, + sym__verbatim_begin, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -36486,7 +35361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -36499,20 +35374,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, + sym__whitespace1, sym__newline, - [20230] = 2, - ACTIONS(1894), 6, + [19350] = 2, + ACTIONS(1965), 8, + anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1896), 30, - ts_builtin_sym_end, + ACTIONS(1967), 28, + sym__verbatim_begin, anon_sym_LBRACE_, - anon_sym__, + aux_sym_emphasis_end_token1, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -36537,11 +35414,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, - sym__whitespace1, sym__newline, - [20271] = 2, - ACTIONS(1894), 8, + [19391] = 2, + ACTIONS(1969), 8, anon_sym__, anon_sym_BSLASH, sym_en_dash, @@ -36550,7 +35425,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1896), 28, + ACTIONS(1971), 28, + sym__verbatim_begin, anon_sym_LBRACE_, aux_sym_emphasis_end_token1, anon_sym_LBRACE_STAR, @@ -36577,19 +35453,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__newline, - [20312] = 2, - ACTIONS(1894), 6, + [19432] = 2, + ACTIONS(2015), 8, + anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1896), 30, + ACTIONS(2013), 28, + sym__verbatim_begin, anon_sym_LBRACE_, - anon_sym__, + aux_sym_emphasis_end_token1, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -36605,7 +35483,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -36615,22 +35492,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, - sym__whitespace1, sym__newline, - [20353] = 2, - ACTIONS(1901), 8, - anon_sym__, + [19473] = 2, + ACTIONS(1965), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1903), 28, + ACTIONS(1967), 30, + sym__verbatim_begin, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -36647,6 +35521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -36655,17 +35530,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, + sym__whitespace1, sym__newline, - [20394] = 2, - ACTIONS(1929), 6, + [19514] = 2, + ACTIONS(2015), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1927), 30, + ACTIONS(2013), 30, + sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -36683,7 +35560,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -36693,18 +35569,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [20435] = 2, - ACTIONS(1929), 6, + [19555] = 2, + ACTIONS(1969), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1927), 30, + ACTIONS(1971), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -36714,7 +35590,6 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -36724,6 +35599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -36732,18 +35608,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [20476] = 2, - ACTIONS(1901), 6, + [19596] = 2, + ACTIONS(1969), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1903), 30, + ACTIONS(1971), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -36761,8 +35637,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -36771,18 +35647,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [20517] = 2, - ACTIONS(1901), 6, + [19637] = 2, + ACTIONS(1965), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1903), 30, + ACTIONS(1967), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -36810,913 +35686,912 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - anon_sym_BQUOTE, sym__whitespace1, sym__newline, - [20558] = 9, - ACTIONS(1931), 1, + [19678] = 9, + ACTIONS(2017), 1, anon_sym_RBRACE, - ACTIONS(1933), 1, + ACTIONS(2019), 1, sym__id, - ACTIONS(1935), 1, + ACTIONS(2021), 1, anon_sym_PERCENT, - ACTIONS(1939), 1, + ACTIONS(2025), 1, anon_sym_DOT, - STATE(597), 1, + STATE(612), 1, aux_sym_inline_attribute_repeat1, - STATE(644), 1, + STATE(617), 1, sym__comment_with_newline, - STATE(877), 1, + STATE(875), 1, sym_key, - STATE(637), 2, + STATE(616), 2, sym_class, sym_key_value, - ACTIONS(1937), 3, + ACTIONS(2023), 3, sym__whitespace1, sym__newline, sym_identifier, - [20589] = 9, - ACTIONS(1933), 1, + [19709] = 9, + ACTIONS(2019), 1, sym__id, - ACTIONS(1935), 1, + ACTIONS(2021), 1, anon_sym_PERCENT, - ACTIONS(1939), 1, + ACTIONS(2025), 1, anon_sym_DOT, - ACTIONS(1941), 1, + ACTIONS(2027), 1, anon_sym_RBRACE, - STATE(635), 1, + STATE(578), 1, aux_sym_inline_attribute_repeat1, - STATE(644), 1, + STATE(617), 1, sym__comment_with_newline, - STATE(877), 1, + STATE(875), 1, sym_key, - STATE(637), 2, + STATE(616), 2, sym_class, sym_key_value, - ACTIONS(1937), 3, + ACTIONS(2023), 3, sym__whitespace1, sym__newline, sym_identifier, - [20620] = 9, - ACTIONS(1933), 1, + [19740] = 9, + ACTIONS(2019), 1, sym__id, - ACTIONS(1935), 1, + ACTIONS(2021), 1, anon_sym_PERCENT, - ACTIONS(1939), 1, + ACTIONS(2025), 1, anon_sym_DOT, - ACTIONS(1943), 1, + ACTIONS(2029), 1, anon_sym_RBRACE, - STATE(602), 1, + STATE(580), 1, aux_sym_inline_attribute_repeat1, - STATE(644), 1, + STATE(617), 1, sym__comment_with_newline, - STATE(877), 1, + STATE(875), 1, sym_key, - STATE(637), 2, + STATE(616), 2, sym_class, sym_key_value, - ACTIONS(1937), 3, + ACTIONS(2023), 3, sym__whitespace1, sym__newline, sym_identifier, - [20651] = 9, - ACTIONS(1933), 1, + [19771] = 9, + ACTIONS(2031), 1, + anon_sym_RBRACE, + ACTIONS(2033), 1, sym__id, - ACTIONS(1935), 1, + ACTIONS(2036), 1, anon_sym_PERCENT, - ACTIONS(1939), 1, + ACTIONS(2042), 1, anon_sym_DOT, - ACTIONS(1945), 1, - anon_sym_RBRACE, - STATE(599), 1, + STATE(578), 1, aux_sym_inline_attribute_repeat1, - STATE(644), 1, + STATE(617), 1, sym__comment_with_newline, - STATE(877), 1, + STATE(875), 1, sym_key, - STATE(637), 2, + STATE(616), 2, sym_class, sym_key_value, - ACTIONS(1937), 3, + ACTIONS(2039), 3, sym__whitespace1, sym__newline, sym_identifier, - [20682] = 9, - ACTIONS(1933), 1, + [19802] = 9, + ACTIONS(2019), 1, sym__id, - ACTIONS(1935), 1, + ACTIONS(2021), 1, anon_sym_PERCENT, - ACTIONS(1939), 1, + ACTIONS(2025), 1, anon_sym_DOT, - ACTIONS(1947), 1, + ACTIONS(2045), 1, anon_sym_RBRACE, - STATE(602), 1, + STATE(578), 1, aux_sym_inline_attribute_repeat1, - STATE(644), 1, + STATE(617), 1, sym__comment_with_newline, - STATE(877), 1, + STATE(875), 1, sym_key, - STATE(637), 2, + STATE(616), 2, sym_class, sym_key_value, - ACTIONS(1937), 3, + ACTIONS(2023), 3, sym__whitespace1, sym__newline, sym_identifier, - [20713] = 9, - ACTIONS(1933), 1, + [19833] = 9, + ACTIONS(2019), 1, sym__id, - ACTIONS(1935), 1, + ACTIONS(2021), 1, anon_sym_PERCENT, - ACTIONS(1939), 1, + ACTIONS(2025), 1, anon_sym_DOT, - ACTIONS(1949), 1, + ACTIONS(2047), 1, anon_sym_RBRACE, - STATE(604), 1, + STATE(578), 1, aux_sym_inline_attribute_repeat1, - STATE(644), 1, + STATE(617), 1, sym__comment_with_newline, - STATE(877), 1, + STATE(875), 1, sym_key, - STATE(637), 2, + STATE(616), 2, sym_class, sym_key_value, - ACTIONS(1937), 3, + ACTIONS(2023), 3, sym__whitespace1, sym__newline, sym_identifier, - [20744] = 9, - ACTIONS(1933), 1, + [19864] = 9, + ACTIONS(2019), 1, sym__id, - ACTIONS(1935), 1, + ACTIONS(2021), 1, anon_sym_PERCENT, - ACTIONS(1939), 1, + ACTIONS(2025), 1, anon_sym_DOT, - ACTIONS(1951), 1, + ACTIONS(2049), 1, anon_sym_RBRACE, - STATE(602), 1, + STATE(578), 1, aux_sym_inline_attribute_repeat1, - STATE(644), 1, + STATE(617), 1, sym__comment_with_newline, - STATE(877), 1, + STATE(875), 1, sym_key, - STATE(637), 2, + STATE(616), 2, sym_class, sym_key_value, - ACTIONS(1937), 3, + ACTIONS(2023), 3, sym__whitespace1, sym__newline, sym_identifier, - [20775] = 9, - ACTIONS(1953), 1, - anon_sym_RBRACE, - ACTIONS(1955), 1, + [19895] = 9, + ACTIONS(2019), 1, sym__id, - ACTIONS(1958), 1, + ACTIONS(2021), 1, anon_sym_PERCENT, - ACTIONS(1964), 1, + ACTIONS(2025), 1, anon_sym_DOT, - STATE(602), 1, + ACTIONS(2051), 1, + anon_sym_RBRACE, + STATE(579), 1, aux_sym_inline_attribute_repeat1, - STATE(644), 1, + STATE(617), 1, sym__comment_with_newline, - STATE(877), 1, + STATE(875), 1, sym_key, - STATE(637), 2, + STATE(616), 2, sym_class, sym_key_value, - ACTIONS(1961), 3, + ACTIONS(2023), 3, sym__whitespace1, sym__newline, sym_identifier, - [20806] = 9, - ACTIONS(1933), 1, + [19926] = 9, + ACTIONS(2019), 1, sym__id, - ACTIONS(1935), 1, + ACTIONS(2021), 1, anon_sym_PERCENT, - ACTIONS(1939), 1, + ACTIONS(2025), 1, anon_sym_DOT, - ACTIONS(1967), 1, + ACTIONS(2053), 1, anon_sym_RBRACE, - STATE(602), 1, + STATE(584), 1, aux_sym_inline_attribute_repeat1, - STATE(644), 1, + STATE(617), 1, sym__comment_with_newline, - STATE(877), 1, + STATE(875), 1, sym_key, - STATE(637), 2, + STATE(616), 2, sym_class, sym_key_value, - ACTIONS(1937), 3, + ACTIONS(2023), 3, sym__whitespace1, sym__newline, sym_identifier, - [20837] = 9, - ACTIONS(1933), 1, + [19957] = 9, + ACTIONS(2019), 1, sym__id, - ACTIONS(1935), 1, + ACTIONS(2021), 1, anon_sym_PERCENT, - ACTIONS(1939), 1, + ACTIONS(2025), 1, anon_sym_DOT, - ACTIONS(1969), 1, + ACTIONS(2055), 1, anon_sym_RBRACE, - STATE(602), 1, + STATE(578), 1, aux_sym_inline_attribute_repeat1, - STATE(644), 1, + STATE(617), 1, sym__comment_with_newline, - STATE(877), 1, + STATE(875), 1, sym_key, - STATE(637), 2, + STATE(616), 2, sym_class, sym_key_value, - ACTIONS(1937), 3, + ACTIONS(2023), 3, sym__whitespace1, sym__newline, sym_identifier, - [20868] = 9, - ACTIONS(1933), 1, + [19988] = 9, + ACTIONS(2019), 1, sym__id, - ACTIONS(1935), 1, + ACTIONS(2021), 1, anon_sym_PERCENT, - ACTIONS(1939), 1, + ACTIONS(2025), 1, anon_sym_DOT, - ACTIONS(1971), 1, + ACTIONS(2057), 1, anon_sym_RBRACE, - STATE(601), 1, + STATE(578), 1, aux_sym_inline_attribute_repeat1, - STATE(644), 1, + STATE(617), 1, sym__comment_with_newline, - STATE(877), 1, + STATE(875), 1, sym_key, - STATE(637), 2, + STATE(616), 2, sym_class, sym_key_value, - ACTIONS(1937), 3, + ACTIONS(2023), 3, sym__whitespace1, sym__newline, sym_identifier, - [20899] = 9, - ACTIONS(1933), 1, + [20019] = 9, + ACTIONS(2019), 1, sym__id, - ACTIONS(1935), 1, + ACTIONS(2021), 1, anon_sym_PERCENT, - ACTIONS(1939), 1, + ACTIONS(2025), 1, anon_sym_DOT, - ACTIONS(1973), 1, + ACTIONS(2059), 1, anon_sym_RBRACE, - STATE(608), 1, + STATE(598), 1, aux_sym_inline_attribute_repeat1, - STATE(644), 1, + STATE(617), 1, sym__comment_with_newline, - STATE(877), 1, + STATE(875), 1, sym_key, - STATE(637), 2, + STATE(616), 2, sym_class, sym_key_value, - ACTIONS(1937), 3, + ACTIONS(2023), 3, sym__whitespace1, sym__newline, sym_identifier, - [20930] = 9, - ACTIONS(1933), 1, + [20050] = 9, + ACTIONS(2019), 1, sym__id, - ACTIONS(1935), 1, + ACTIONS(2021), 1, anon_sym_PERCENT, - ACTIONS(1939), 1, + ACTIONS(2025), 1, anon_sym_DOT, - ACTIONS(1975), 1, + ACTIONS(2061), 1, anon_sym_RBRACE, - STATE(603), 1, + STATE(589), 1, aux_sym_inline_attribute_repeat1, - STATE(644), 1, + STATE(617), 1, sym__comment_with_newline, - STATE(877), 1, + STATE(875), 1, sym_key, - STATE(637), 2, + STATE(616), 2, sym_class, sym_key_value, - ACTIONS(1937), 3, + ACTIONS(2023), 3, sym__whitespace1, sym__newline, sym_identifier, - [20961] = 9, - ACTIONS(1933), 1, + [20081] = 9, + ACTIONS(2019), 1, sym__id, - ACTIONS(1935), 1, + ACTIONS(2021), 1, anon_sym_PERCENT, - ACTIONS(1939), 1, + ACTIONS(2025), 1, anon_sym_DOT, - ACTIONS(1977), 1, + ACTIONS(2063), 1, anon_sym_RBRACE, - STATE(602), 1, + STATE(581), 1, aux_sym_inline_attribute_repeat1, - STATE(644), 1, + STATE(617), 1, sym__comment_with_newline, - STATE(877), 1, + STATE(875), 1, sym_key, - STATE(637), 2, + STATE(616), 2, sym_class, sym_key_value, - ACTIONS(1937), 3, + ACTIONS(2023), 3, sym__whitespace1, sym__newline, sym_identifier, - [20992] = 9, - ACTIONS(1933), 1, + [20112] = 9, + ACTIONS(2019), 1, sym__id, - ACTIONS(1935), 1, + ACTIONS(2021), 1, anon_sym_PERCENT, - ACTIONS(1939), 1, + ACTIONS(2025), 1, anon_sym_DOT, - ACTIONS(1979), 1, + ACTIONS(2065), 1, anon_sym_RBRACE, - STATE(602), 1, + STATE(578), 1, aux_sym_inline_attribute_repeat1, - STATE(644), 1, + STATE(617), 1, sym__comment_with_newline, - STATE(877), 1, + STATE(875), 1, sym_key, - STATE(637), 2, + STATE(616), 2, sym_class, sym_key_value, - ACTIONS(1937), 3, + ACTIONS(2023), 3, sym__whitespace1, sym__newline, sym_identifier, - [21023] = 9, - ACTIONS(1933), 1, + [20143] = 9, + ACTIONS(2019), 1, sym__id, - ACTIONS(1935), 1, + ACTIONS(2021), 1, anon_sym_PERCENT, - ACTIONS(1939), 1, + ACTIONS(2025), 1, anon_sym_DOT, - ACTIONS(1981), 1, + ACTIONS(2067), 1, anon_sym_RBRACE, - STATE(602), 1, + STATE(585), 1, aux_sym_inline_attribute_repeat1, - STATE(644), 1, + STATE(617), 1, sym__comment_with_newline, - STATE(877), 1, + STATE(875), 1, sym_key, - STATE(637), 2, + STATE(616), 2, sym_class, sym_key_value, - ACTIONS(1937), 3, + ACTIONS(2023), 3, sym__whitespace1, sym__newline, sym_identifier, - [21054] = 9, - ACTIONS(1933), 1, + [20174] = 9, + ACTIONS(2019), 1, sym__id, - ACTIONS(1935), 1, + ACTIONS(2021), 1, anon_sym_PERCENT, - ACTIONS(1939), 1, + ACTIONS(2025), 1, anon_sym_DOT, - ACTIONS(1983), 1, + ACTIONS(2069), 1, anon_sym_RBRACE, - STATE(612), 1, + STATE(592), 1, aux_sym_inline_attribute_repeat1, - STATE(644), 1, + STATE(617), 1, sym__comment_with_newline, - STATE(877), 1, + STATE(875), 1, sym_key, - STATE(637), 2, + STATE(616), 2, sym_class, sym_key_value, - ACTIONS(1937), 3, + ACTIONS(2023), 3, sym__whitespace1, sym__newline, sym_identifier, - [21085] = 9, - ACTIONS(1933), 1, + [20205] = 9, + ACTIONS(2019), 1, sym__id, - ACTIONS(1935), 1, + ACTIONS(2021), 1, anon_sym_PERCENT, - ACTIONS(1939), 1, + ACTIONS(2025), 1, anon_sym_DOT, - ACTIONS(1985), 1, + ACTIONS(2071), 1, anon_sym_RBRACE, - STATE(602), 1, + STATE(578), 1, aux_sym_inline_attribute_repeat1, - STATE(644), 1, + STATE(617), 1, sym__comment_with_newline, - STATE(877), 1, + STATE(875), 1, sym_key, - STATE(637), 2, + STATE(616), 2, sym_class, sym_key_value, - ACTIONS(1937), 3, + ACTIONS(2023), 3, sym__whitespace1, sym__newline, sym_identifier, - [21116] = 9, - ACTIONS(1933), 1, + [20236] = 9, + ACTIONS(2019), 1, sym__id, - ACTIONS(1935), 1, + ACTIONS(2021), 1, anon_sym_PERCENT, - ACTIONS(1939), 1, + ACTIONS(2025), 1, anon_sym_DOT, - ACTIONS(1987), 1, + ACTIONS(2073), 1, anon_sym_RBRACE, - STATE(610), 1, + STATE(578), 1, aux_sym_inline_attribute_repeat1, - STATE(644), 1, + STATE(617), 1, sym__comment_with_newline, - STATE(877), 1, + STATE(875), 1, sym_key, - STATE(637), 2, + STATE(616), 2, sym_class, sym_key_value, - ACTIONS(1937), 3, + ACTIONS(2023), 3, sym__whitespace1, sym__newline, sym_identifier, - [21147] = 9, - ACTIONS(1933), 1, + [20267] = 9, + ACTIONS(2019), 1, sym__id, - ACTIONS(1935), 1, + ACTIONS(2021), 1, anon_sym_PERCENT, - ACTIONS(1939), 1, + ACTIONS(2025), 1, anon_sym_DOT, - ACTIONS(1989), 1, + ACTIONS(2075), 1, anon_sym_RBRACE, - STATE(602), 1, + STATE(578), 1, aux_sym_inline_attribute_repeat1, - STATE(644), 1, + STATE(617), 1, sym__comment_with_newline, - STATE(877), 1, + STATE(875), 1, sym_key, - STATE(637), 2, + STATE(616), 2, sym_class, sym_key_value, - ACTIONS(1937), 3, + ACTIONS(2023), 3, sym__whitespace1, sym__newline, sym_identifier, - [21178] = 9, - ACTIONS(1933), 1, + [20298] = 9, + ACTIONS(2019), 1, sym__id, - ACTIONS(1935), 1, + ACTIONS(2021), 1, anon_sym_PERCENT, - ACTIONS(1939), 1, + ACTIONS(2025), 1, anon_sym_DOT, - ACTIONS(1991), 1, + ACTIONS(2077), 1, anon_sym_RBRACE, - STATE(617), 1, + STATE(596), 1, aux_sym_inline_attribute_repeat1, - STATE(644), 1, + STATE(617), 1, sym__comment_with_newline, - STATE(877), 1, + STATE(875), 1, sym_key, - STATE(637), 2, + STATE(616), 2, sym_class, sym_key_value, - ACTIONS(1937), 3, + ACTIONS(2023), 3, sym__whitespace1, sym__newline, sym_identifier, - [21209] = 9, - ACTIONS(1933), 1, + [20329] = 9, + ACTIONS(2019), 1, sym__id, - ACTIONS(1935), 1, + ACTIONS(2021), 1, anon_sym_PERCENT, - ACTIONS(1939), 1, + ACTIONS(2025), 1, anon_sym_DOT, - ACTIONS(1993), 1, + ACTIONS(2079), 1, anon_sym_RBRACE, - STATE(619), 1, + STATE(578), 1, aux_sym_inline_attribute_repeat1, - STATE(644), 1, + STATE(617), 1, sym__comment_with_newline, - STATE(877), 1, + STATE(875), 1, sym_key, - STATE(637), 2, + STATE(616), 2, sym_class, sym_key_value, - ACTIONS(1937), 3, + ACTIONS(2023), 3, sym__whitespace1, sym__newline, sym_identifier, - [21240] = 9, - ACTIONS(1933), 1, + [20360] = 9, + ACTIONS(2019), 1, sym__id, - ACTIONS(1935), 1, + ACTIONS(2021), 1, anon_sym_PERCENT, - ACTIONS(1939), 1, + ACTIONS(2025), 1, anon_sym_DOT, - ACTIONS(1995), 1, + ACTIONS(2081), 1, anon_sym_RBRACE, - STATE(602), 1, + STATE(578), 1, aux_sym_inline_attribute_repeat1, - STATE(644), 1, + STATE(617), 1, sym__comment_with_newline, - STATE(877), 1, + STATE(875), 1, sym_key, - STATE(637), 2, + STATE(616), 2, sym_class, sym_key_value, - ACTIONS(1937), 3, + ACTIONS(2023), 3, sym__whitespace1, sym__newline, sym_identifier, - [21271] = 9, - ACTIONS(1933), 1, + [20391] = 9, + ACTIONS(2019), 1, sym__id, - ACTIONS(1935), 1, + ACTIONS(2021), 1, anon_sym_PERCENT, - ACTIONS(1939), 1, + ACTIONS(2025), 1, anon_sym_DOT, - ACTIONS(1997), 1, + ACTIONS(2083), 1, anon_sym_RBRACE, - STATE(602), 1, + STATE(578), 1, aux_sym_inline_attribute_repeat1, - STATE(644), 1, + STATE(617), 1, sym__comment_with_newline, - STATE(877), 1, + STATE(875), 1, sym_key, - STATE(637), 2, + STATE(616), 2, sym_class, sym_key_value, - ACTIONS(1937), 3, + ACTIONS(2023), 3, sym__whitespace1, sym__newline, sym_identifier, - [21302] = 9, - ACTIONS(1933), 1, + [20422] = 9, + ACTIONS(2019), 1, sym__id, - ACTIONS(1935), 1, + ACTIONS(2021), 1, anon_sym_PERCENT, - ACTIONS(1939), 1, + ACTIONS(2025), 1, anon_sym_DOT, - ACTIONS(1999), 1, + ACTIONS(2085), 1, anon_sym_RBRACE, - STATE(602), 1, + STATE(578), 1, aux_sym_inline_attribute_repeat1, - STATE(644), 1, + STATE(617), 1, sym__comment_with_newline, - STATE(877), 1, + STATE(875), 1, sym_key, - STATE(637), 2, + STATE(616), 2, sym_class, sym_key_value, - ACTIONS(1937), 3, + ACTIONS(2023), 3, sym__whitespace1, sym__newline, sym_identifier, - [21333] = 9, - ACTIONS(1933), 1, + [20453] = 9, + ACTIONS(2019), 1, sym__id, - ACTIONS(1935), 1, + ACTIONS(2021), 1, anon_sym_PERCENT, - ACTIONS(1939), 1, + ACTIONS(2025), 1, anon_sym_DOT, - ACTIONS(2001), 1, + ACTIONS(2087), 1, anon_sym_RBRACE, - STATE(614), 1, + STATE(599), 1, aux_sym_inline_attribute_repeat1, - STATE(644), 1, + STATE(617), 1, sym__comment_with_newline, - STATE(877), 1, + STATE(875), 1, sym_key, - STATE(637), 2, + STATE(616), 2, sym_class, sym_key_value, - ACTIONS(1937), 3, + ACTIONS(2023), 3, sym__whitespace1, sym__newline, sym_identifier, - [21364] = 9, - ACTIONS(1933), 1, + [20484] = 9, + ACTIONS(2019), 1, sym__id, - ACTIONS(1935), 1, + ACTIONS(2021), 1, anon_sym_PERCENT, - ACTIONS(1939), 1, + ACTIONS(2025), 1, anon_sym_DOT, - ACTIONS(2003), 1, + ACTIONS(2089), 1, anon_sym_RBRACE, - STATE(609), 1, + STATE(578), 1, aux_sym_inline_attribute_repeat1, - STATE(644), 1, + STATE(617), 1, sym__comment_with_newline, - STATE(877), 1, + STATE(875), 1, sym_key, - STATE(637), 2, + STATE(616), 2, sym_class, sym_key_value, - ACTIONS(1937), 3, + ACTIONS(2023), 3, sym__whitespace1, sym__newline, sym_identifier, - [21395] = 9, - ACTIONS(1933), 1, + [20515] = 9, + ACTIONS(2019), 1, sym__id, - ACTIONS(1935), 1, + ACTIONS(2021), 1, anon_sym_PERCENT, - ACTIONS(1939), 1, + ACTIONS(2025), 1, anon_sym_DOT, - ACTIONS(2005), 1, + ACTIONS(2091), 1, anon_sym_RBRACE, - STATE(624), 1, + STATE(593), 1, aux_sym_inline_attribute_repeat1, - STATE(644), 1, + STATE(617), 1, sym__comment_with_newline, - STATE(877), 1, + STATE(875), 1, sym_key, - STATE(637), 2, + STATE(616), 2, sym_class, sym_key_value, - ACTIONS(1937), 3, + ACTIONS(2023), 3, sym__whitespace1, sym__newline, sym_identifier, - [21426] = 9, - ACTIONS(1933), 1, + [20546] = 9, + ACTIONS(2019), 1, sym__id, - ACTIONS(1935), 1, + ACTIONS(2021), 1, anon_sym_PERCENT, - ACTIONS(1939), 1, + ACTIONS(2025), 1, anon_sym_DOT, - ACTIONS(2007), 1, + ACTIONS(2093), 1, anon_sym_RBRACE, - STATE(618), 1, + STATE(601), 1, aux_sym_inline_attribute_repeat1, - STATE(644), 1, + STATE(617), 1, sym__comment_with_newline, - STATE(877), 1, + STATE(875), 1, sym_key, - STATE(637), 2, + STATE(616), 2, sym_class, sym_key_value, - ACTIONS(1937), 3, + ACTIONS(2023), 3, sym__whitespace1, sym__newline, sym_identifier, - [21457] = 9, - ACTIONS(1933), 1, + [20577] = 9, + ACTIONS(2019), 1, sym__id, - ACTIONS(1935), 1, + ACTIONS(2021), 1, anon_sym_PERCENT, - ACTIONS(1939), 1, + ACTIONS(2025), 1, anon_sym_DOT, - ACTIONS(2009), 1, + ACTIONS(2095), 1, anon_sym_RBRACE, - STATE(602), 1, + STATE(578), 1, aux_sym_inline_attribute_repeat1, - STATE(644), 1, + STATE(617), 1, sym__comment_with_newline, - STATE(877), 1, + STATE(875), 1, sym_key, - STATE(637), 2, + STATE(616), 2, sym_class, sym_key_value, - ACTIONS(1937), 3, + ACTIONS(2023), 3, sym__whitespace1, sym__newline, sym_identifier, - [21488] = 9, - ACTIONS(1933), 1, + [20608] = 9, + ACTIONS(2019), 1, sym__id, - ACTIONS(1935), 1, + ACTIONS(2021), 1, anon_sym_PERCENT, - ACTIONS(1939), 1, + ACTIONS(2025), 1, anon_sym_DOT, - ACTIONS(2011), 1, + ACTIONS(2097), 1, anon_sym_RBRACE, - STATE(602), 1, + STATE(578), 1, aux_sym_inline_attribute_repeat1, - STATE(644), 1, + STATE(617), 1, sym__comment_with_newline, - STATE(877), 1, + STATE(875), 1, sym_key, - STATE(637), 2, + STATE(616), 2, sym_class, sym_key_value, - ACTIONS(1937), 3, + ACTIONS(2023), 3, sym__whitespace1, sym__newline, sym_identifier, - [21519] = 9, - ACTIONS(1933), 1, + [20639] = 9, + ACTIONS(2019), 1, sym__id, - ACTIONS(1935), 1, + ACTIONS(2021), 1, anon_sym_PERCENT, - ACTIONS(1939), 1, + ACTIONS(2025), 1, anon_sym_DOT, - ACTIONS(2013), 1, + ACTIONS(2099), 1, anon_sym_RBRACE, - STATE(625), 1, + STATE(576), 1, aux_sym_inline_attribute_repeat1, - STATE(644), 1, + STATE(617), 1, sym__comment_with_newline, - STATE(877), 1, + STATE(875), 1, sym_key, - STATE(637), 2, + STATE(616), 2, sym_class, sym_key_value, - ACTIONS(1937), 3, + ACTIONS(2023), 3, sym__whitespace1, sym__newline, sym_identifier, - [21550] = 9, - ACTIONS(1933), 1, + [20670] = 9, + ACTIONS(2019), 1, sym__id, - ACTIONS(1935), 1, + ACTIONS(2021), 1, anon_sym_PERCENT, - ACTIONS(1939), 1, + ACTIONS(2025), 1, anon_sym_DOT, - ACTIONS(2015), 1, + ACTIONS(2101), 1, anon_sym_RBRACE, - STATE(602), 1, + STATE(605), 1, aux_sym_inline_attribute_repeat1, - STATE(644), 1, + STATE(617), 1, sym__comment_with_newline, - STATE(877), 1, + STATE(875), 1, sym_key, - STATE(637), 2, + STATE(616), 2, sym_class, sym_key_value, - ACTIONS(1937), 3, + ACTIONS(2023), 3, sym__whitespace1, sym__newline, sym_identifier, - [21581] = 9, - ACTIONS(1933), 1, + [20701] = 9, + ACTIONS(2019), 1, sym__id, - ACTIONS(1935), 1, + ACTIONS(2021), 1, anon_sym_PERCENT, - ACTIONS(1939), 1, + ACTIONS(2025), 1, anon_sym_DOT, - ACTIONS(2017), 1, + ACTIONS(2103), 1, anon_sym_RBRACE, - STATE(627), 1, + STATE(578), 1, aux_sym_inline_attribute_repeat1, - STATE(644), 1, + STATE(617), 1, sym__comment_with_newline, - STATE(877), 1, + STATE(875), 1, sym_key, - STATE(637), 2, + STATE(616), 2, sym_class, sym_key_value, - ACTIONS(1937), 3, + ACTIONS(2023), 3, sym__whitespace1, sym__newline, sym_identifier, - [21612] = 9, - ACTIONS(1933), 1, + [20732] = 9, + ACTIONS(2019), 1, sym__id, - ACTIONS(1935), 1, + ACTIONS(2021), 1, anon_sym_PERCENT, - ACTIONS(1939), 1, + ACTIONS(2025), 1, anon_sym_DOT, - ACTIONS(2019), 1, + ACTIONS(2105), 1, anon_sym_RBRACE, - STATE(602), 1, + STATE(608), 1, aux_sym_inline_attribute_repeat1, - STATE(644), 1, + STATE(617), 1, sym__comment_with_newline, - STATE(877), 1, + STATE(875), 1, sym_key, - STATE(637), 2, + STATE(616), 2, sym_class, sym_key_value, - ACTIONS(1937), 3, + ACTIONS(2023), 3, sym__whitespace1, sym__newline, sym_identifier, - [21643] = 9, - ACTIONS(1933), 1, + [20763] = 9, + ACTIONS(2019), 1, sym__id, - ACTIONS(1935), 1, + ACTIONS(2021), 1, anon_sym_PERCENT, - ACTIONS(1939), 1, + ACTIONS(2025), 1, anon_sym_DOT, - ACTIONS(2021), 1, + ACTIONS(2107), 1, anon_sym_RBRACE, - STATE(629), 1, + STATE(578), 1, aux_sym_inline_attribute_repeat1, - STATE(644), 1, + STATE(617), 1, sym__comment_with_newline, - STATE(877), 1, + STATE(875), 1, sym_key, - STATE(637), 2, + STATE(616), 2, sym_class, sym_key_value, - ACTIONS(1937), 3, + ACTIONS(2023), 3, sym__whitespace1, sym__newline, sym_identifier, - [21674] = 9, - ACTIONS(1933), 1, + [20794] = 9, + ACTIONS(2019), 1, sym__id, - ACTIONS(1935), 1, + ACTIONS(2021), 1, anon_sym_PERCENT, - ACTIONS(1939), 1, + ACTIONS(2025), 1, anon_sym_DOT, - ACTIONS(2023), 1, + ACTIONS(2109), 1, anon_sym_RBRACE, - STATE(602), 1, + STATE(610), 1, aux_sym_inline_attribute_repeat1, - STATE(644), 1, + STATE(617), 1, sym__comment_with_newline, - STATE(877), 1, + STATE(875), 1, sym_key, - STATE(637), 2, + STATE(616), 2, sym_class, sym_key_value, - ACTIONS(1937), 3, + ACTIONS(2023), 3, sym__whitespace1, sym__newline, sym_identifier, - [21705] = 9, - ACTIONS(1933), 1, + [20825] = 9, + ACTIONS(2019), 1, sym__id, - ACTIONS(1935), 1, + ACTIONS(2021), 1, anon_sym_PERCENT, - ACTIONS(1939), 1, - anon_sym_DOT, ACTIONS(2025), 1, + anon_sym_DOT, + ACTIONS(2111), 1, anon_sym_RBRACE, - STATE(631), 1, + STATE(578), 1, aux_sym_inline_attribute_repeat1, - STATE(644), 1, + STATE(617), 1, sym__comment_with_newline, - STATE(877), 1, + STATE(875), 1, sym_key, - STATE(637), 2, + STATE(616), 2, sym_class, sym_key_value, - ACTIONS(1937), 3, + ACTIONS(2023), 3, sym__whitespace1, sym__newline, sym_identifier, - [21736] = 9, - ACTIONS(1933), 1, + [20856] = 9, + ACTIONS(2019), 1, sym__id, - ACTIONS(1935), 1, + ACTIONS(2021), 1, anon_sym_PERCENT, - ACTIONS(1939), 1, + ACTIONS(2025), 1, anon_sym_DOT, - ACTIONS(2027), 1, + ACTIONS(2113), 1, anon_sym_RBRACE, - STATE(602), 1, + STATE(604), 1, aux_sym_inline_attribute_repeat1, - STATE(644), 1, + STATE(617), 1, sym__comment_with_newline, - STATE(877), 1, + STATE(875), 1, sym_key, - STATE(637), 2, + STATE(616), 2, sym_class, sym_key_value, - ACTIONS(1937), 3, + ACTIONS(2023), 3, sym__whitespace1, sym__newline, sym_identifier, - [21767] = 9, - ACTIONS(1933), 1, + [20887] = 9, + ACTIONS(2019), 1, sym__id, - ACTIONS(1935), 1, + ACTIONS(2021), 1, anon_sym_PERCENT, - ACTIONS(1939), 1, + ACTIONS(2025), 1, anon_sym_DOT, - ACTIONS(2029), 1, + ACTIONS(2115), 1, anon_sym_RBRACE, - STATE(633), 1, + STATE(594), 1, aux_sym_inline_attribute_repeat1, - STATE(644), 1, + STATE(617), 1, sym__comment_with_newline, - STATE(877), 1, + STATE(875), 1, sym_key, - STATE(637), 2, + STATE(616), 2, sym_class, sym_key_value, - ACTIONS(1937), 3, + ACTIONS(2023), 3, sym__whitespace1, sym__newline, sym_identifier, - [21798] = 9, - ACTIONS(1933), 1, + [20918] = 9, + ACTIONS(2019), 1, sym__id, - ACTIONS(1935), 1, + ACTIONS(2021), 1, anon_sym_PERCENT, - ACTIONS(1939), 1, + ACTIONS(2025), 1, anon_sym_DOT, - ACTIONS(2031), 1, + ACTIONS(2117), 1, anon_sym_RBRACE, - STATE(602), 1, + STATE(597), 1, aux_sym_inline_attribute_repeat1, - STATE(644), 1, + STATE(617), 1, sym__comment_with_newline, - STATE(877), 1, + STATE(875), 1, sym_key, - STATE(637), 2, + STATE(616), 2, sym_class, sym_key_value, - ACTIONS(1937), 3, + ACTIONS(2023), 3, sym__whitespace1, sym__newline, sym_identifier, - [21829] = 1, - ACTIONS(2033), 7, + [20949] = 1, + ACTIONS(2119), 7, anon_sym_RBRACE, sym__id, anon_sym_PERCENT, @@ -37724,8 +36599,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_DOT, sym_identifier, - [21839] = 1, - ACTIONS(2035), 7, + [20959] = 1, + ACTIONS(2121), 7, anon_sym_RBRACE, sym__id, anon_sym_PERCENT, @@ -37733,8 +36608,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_DOT, sym_identifier, - [21849] = 1, - ACTIONS(2037), 7, + [20969] = 1, + ACTIONS(2123), 7, anon_sym_RBRACE, sym__id, anon_sym_PERCENT, @@ -37742,8 +36617,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_DOT, sym_identifier, - [21859] = 1, - ACTIONS(2039), 7, + [20979] = 1, + ACTIONS(2125), 7, anon_sym_RBRACE, sym__id, anon_sym_PERCENT, @@ -37751,8 +36626,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_DOT, sym_identifier, - [21869] = 1, - ACTIONS(2041), 7, + [20989] = 1, + ACTIONS(2127), 7, anon_sym_RBRACE, sym__id, anon_sym_PERCENT, @@ -37760,8 +36635,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_DOT, sym_identifier, - [21879] = 1, - ACTIONS(2043), 7, + [20999] = 1, + ACTIONS(2129), 7, anon_sym_RBRACE, sym__id, anon_sym_PERCENT, @@ -37769,8 +36644,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_DOT, sym_identifier, - [21889] = 1, - ACTIONS(2045), 7, + [21009] = 1, + ACTIONS(2131), 7, anon_sym_RBRACE, sym__id, anon_sym_PERCENT, @@ -37778,8 +36653,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_DOT, sym_identifier, - [21899] = 1, - ACTIONS(2047), 7, + [21019] = 1, + ACTIONS(2133), 7, anon_sym_RBRACE, sym__id, anon_sym_PERCENT, @@ -37787,8 +36662,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_DOT, sym_identifier, - [21909] = 1, - ACTIONS(2049), 7, + [21029] = 1, + ACTIONS(2135), 7, anon_sym_RBRACE, sym__id, anon_sym_PERCENT, @@ -37796,3198 +36671,3205 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_DOT, sym_identifier, - [21919] = 4, - ACTIONS(2051), 1, - anon_sym_LBRACE, - ACTIONS(2055), 1, - anon_sym_LBRACK, - STATE(427), 1, - sym_inline_attribute, - ACTIONS(2053), 2, + [21039] = 5, + ACTIONS(2137), 1, anon_sym_LBRACK_RBRACK, + ACTIONS(2139), 1, + anon_sym_LBRACK, + ACTIONS(2141), 1, anon_sym_LPAREN, - [21933] = 5, - ACTIONS(2057), 1, + STATE(502), 1, + sym__link_label, + STATE(503), 1, + sym_inline_link_destination, + [21055] = 5, + ACTIONS(2143), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(2059), 1, + ACTIONS(2145), 1, anon_sym_LBRACK, - ACTIONS(2061), 1, + ACTIONS(2147), 1, anon_sym_LPAREN, - STATE(223), 1, + STATE(453), 1, sym__link_label, - STATE(547), 1, + STATE(454), 1, sym_inline_link_destination, - [21949] = 5, - ACTIONS(2063), 1, + [21071] = 5, + ACTIONS(2149), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(2065), 1, + ACTIONS(2151), 1, anon_sym_LBRACK, - ACTIONS(2067), 1, + ACTIONS(2153), 1, anon_sym_LPAREN, - STATE(283), 1, - sym_inline_link_destination, - STATE(284), 1, + STATE(349), 1, sym__link_label, - [21965] = 5, - ACTIONS(2065), 1, + STATE(350), 1, + sym_inline_link_destination, + [21087] = 5, + ACTIONS(2151), 1, anon_sym_LBRACK, - ACTIONS(2067), 1, + ACTIONS(2153), 1, anon_sym_LPAREN, - ACTIONS(2069), 1, + ACTIONS(2155), 1, anon_sym_LBRACK_RBRACK, - STATE(280), 1, - sym_inline_link_destination, - STATE(281), 1, + STATE(346), 1, sym__link_label, - [21981] = 4, - ACTIONS(2055), 1, - anon_sym_LBRACK, - ACTIONS(2071), 1, + STATE(347), 1, + sym_inline_link_destination, + [21103] = 4, + ACTIONS(2157), 1, anon_sym_LBRACE, - STATE(448), 1, + ACTIONS(2161), 1, + anon_sym_LBRACK, + STATE(281), 1, sym_inline_attribute, - ACTIONS(2053), 2, + ACTIONS(2159), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - [21995] = 5, - ACTIONS(2073), 1, + [21117] = 5, + ACTIONS(2163), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(2075), 1, + ACTIONS(2165), 1, anon_sym_LBRACK, - ACTIONS(2077), 1, + ACTIONS(2167), 1, anon_sym_LPAREN, - STATE(514), 1, + STATE(210), 1, sym__link_label, - STATE(515), 1, + STATE(211), 1, sym_inline_link_destination, - [22011] = 5, - ACTIONS(2075), 1, + [21133] = 5, + ACTIONS(2165), 1, anon_sym_LBRACK, - ACTIONS(2077), 1, + ACTIONS(2167), 1, anon_sym_LPAREN, - ACTIONS(2079), 1, + ACTIONS(2169), 1, anon_sym_LBRACK_RBRACK, - STATE(511), 1, + STATE(213), 1, sym__link_label, - STATE(512), 1, + STATE(214), 1, sym_inline_link_destination, - [22027] = 4, - ACTIONS(2055), 1, + [21149] = 4, + ACTIONS(2161), 1, anon_sym_LBRACK, - ACTIONS(2081), 1, + ACTIONS(2171), 1, anon_sym_LBRACE, - STATE(480), 1, + STATE(435), 1, sym_inline_attribute, - ACTIONS(2053), 2, + ACTIONS(2159), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - [22041] = 5, - ACTIONS(2083), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(2085), 1, + [21163] = 4, + ACTIONS(2161), 1, anon_sym_LBRACK, - ACTIONS(2087), 1, + ACTIONS(2173), 1, + anon_sym_LBRACE, + STATE(316), 1, + sym_inline_attribute, + ACTIONS(2159), 2, + anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - STATE(553), 1, - sym_inline_link_destination, - STATE(554), 1, - sym__link_label, - [22057] = 3, - ACTIONS(2092), 1, - anon_sym_PERCENT, - STATE(654), 1, - aux_sym__comment_with_newline_repeat1, - ACTIONS(2089), 3, - sym_backslash_escape, - aux_sym__comment_with_newline_token1, - sym__newline, - [22069] = 5, - ACTIONS(2094), 1, + [21177] = 5, + ACTIONS(2175), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(2096), 1, + ACTIONS(2177), 1, anon_sym_LBRACK, - ACTIONS(2098), 1, + ACTIONS(2179), 1, anon_sym_LPAREN, - STATE(461), 1, - sym__link_label, - STATE(462), 1, + STATE(539), 1, sym_inline_link_destination, - [22085] = 5, - ACTIONS(2096), 1, + STATE(540), 1, + sym__link_label, + [21193] = 4, + ACTIONS(2161), 1, anon_sym_LBRACK, - ACTIONS(2098), 1, - anon_sym_LPAREN, - ACTIONS(2100), 1, + ACTIONS(2181), 1, + anon_sym_LBRACE, + STATE(432), 1, + sym_inline_attribute, + ACTIONS(2159), 2, anon_sym_LBRACK_RBRACK, - STATE(458), 1, - sym__link_label, - STATE(459), 1, - sym_inline_link_destination, - [22101] = 5, - ACTIONS(2102), 1, + anon_sym_LPAREN, + [21207] = 5, + ACTIONS(2183), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(2104), 1, + ACTIONS(2185), 1, anon_sym_LBRACK, - ACTIONS(2106), 1, + ACTIONS(2187), 1, anon_sym_LPAREN, - STATE(372), 1, + STATE(497), 1, sym_inline_link_destination, - STATE(381), 1, + STATE(499), 1, sym__link_label, - [22117] = 4, - ACTIONS(2055), 1, + [21223] = 3, + ACTIONS(2191), 1, + anon_sym_PERCENT, + STATE(657), 1, + aux_sym__comment_with_newline_repeat1, + ACTIONS(2189), 3, + sym_backslash_escape, + aux_sym__comment_with_newline_token1, + sym__newline, + [21235] = 4, + ACTIONS(2161), 1, anon_sym_LBRACK, - ACTIONS(2108), 1, + ACTIONS(2193), 1, anon_sym_LBRACE, - STATE(334), 1, + STATE(368), 1, sym_inline_attribute, - ACTIONS(2053), 2, + ACTIONS(2159), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - [22131] = 4, - ACTIONS(2055), 1, + [21249] = 4, + ACTIONS(2161), 1, anon_sym_LBRACK, - ACTIONS(2110), 1, + ACTIONS(2195), 1, anon_sym_LBRACE, - STATE(232), 1, + STATE(229), 1, sym_inline_attribute, - ACTIONS(2053), 2, + ACTIONS(2159), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - [22145] = 5, - ACTIONS(2059), 1, - anon_sym_LBRACK, - ACTIONS(2061), 1, - anon_sym_LPAREN, - ACTIONS(2112), 1, - anon_sym_LBRACK_RBRACK, - STATE(561), 1, - sym_inline_link_destination, - STATE(564), 1, - sym__link_label, - [22161] = 5, - ACTIONS(2085), 1, + [21263] = 5, + ACTIONS(2185), 1, anon_sym_LBRACK, - ACTIONS(2087), 1, + ACTIONS(2187), 1, anon_sym_LPAREN, - ACTIONS(2114), 1, + ACTIONS(2197), 1, anon_sym_LBRACK_RBRACK, - STATE(550), 1, + STATE(508), 1, sym_inline_link_destination, - STATE(551), 1, + STATE(509), 1, sym__link_label, - [22177] = 4, - ACTIONS(2055), 1, + [21279] = 4, + ACTIONS(2161), 1, anon_sym_LBRACK, - ACTIONS(2116), 1, + ACTIONS(2199), 1, anon_sym_LBRACE, - STATE(533), 1, + STATE(524), 1, sym_inline_attribute, - ACTIONS(2053), 2, + ACTIONS(2159), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - [22191] = 5, - ACTIONS(2118), 1, + [21293] = 5, + ACTIONS(2201), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(2120), 1, + ACTIONS(2203), 1, anon_sym_LBRACK, - ACTIONS(2122), 1, + ACTIONS(2205), 1, anon_sym_LPAREN, - STATE(408), 1, + STATE(398), 1, sym__link_label, - STATE(409), 1, + STATE(399), 1, sym_inline_link_destination, - [22207] = 5, - ACTIONS(2120), 1, + [21309] = 5, + ACTIONS(2203), 1, anon_sym_LBRACK, - ACTIONS(2122), 1, + ACTIONS(2205), 1, anon_sym_LPAREN, - ACTIONS(2124), 1, + ACTIONS(2207), 1, anon_sym_LBRACK_RBRACK, - STATE(405), 1, + STATE(401), 1, sym__link_label, - STATE(406), 1, + STATE(402), 1, sym_inline_link_destination, - [22223] = 4, - ACTIONS(2055), 1, - anon_sym_LBRACK, - ACTIONS(2126), 1, - anon_sym_LBRACE, - STATE(374), 1, - sym_inline_attribute, - ACTIONS(2053), 2, + [21325] = 3, + ACTIONS(2212), 1, + anon_sym_PERCENT, + STATE(644), 1, + aux_sym__comment_with_newline_repeat1, + ACTIONS(2209), 3, + sym_backslash_escape, + aux_sym__comment_with_newline_token1, + sym__newline, + [21337] = 5, + ACTIONS(2214), 1, anon_sym_LBRACK_RBRACK, + ACTIONS(2216), 1, + anon_sym_LBRACK, + ACTIONS(2218), 1, anon_sym_LPAREN, - [22237] = 5, - ACTIONS(2128), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(2130), 1, + STATE(245), 1, + sym__link_label, + STATE(246), 1, + sym_inline_link_destination, + [21353] = 5, + ACTIONS(2216), 1, anon_sym_LBRACK, - ACTIONS(2132), 1, + ACTIONS(2218), 1, anon_sym_LPAREN, + ACTIONS(2220), 1, + anon_sym_LBRACK_RBRACK, STATE(248), 1, sym__link_label, STATE(249), 1, sym_inline_link_destination, - [22253] = 5, - ACTIONS(2130), 1, + [21369] = 5, + ACTIONS(2139), 1, anon_sym_LBRACK, - ACTIONS(2132), 1, + ACTIONS(2141), 1, anon_sym_LPAREN, - ACTIONS(2134), 1, + ACTIONS(2222), 1, anon_sym_LBRACK_RBRACK, - STATE(251), 1, + STATE(505), 1, sym__link_label, - STATE(252), 1, + STATE(506), 1, sym_inline_link_destination, - [22269] = 3, - ACTIONS(2138), 1, - anon_sym_PERCENT, - STATE(654), 1, - aux_sym__comment_with_newline_repeat1, - ACTIONS(2136), 3, - sym_backslash_escape, - aux_sym__comment_with_newline_token1, - sym__newline, - [22281] = 5, - ACTIONS(2104), 1, + [21385] = 5, + ACTIONS(2177), 1, anon_sym_LBRACK, - ACTIONS(2106), 1, + ACTIONS(2179), 1, anon_sym_LPAREN, - ACTIONS(2140), 1, + ACTIONS(2224), 1, anon_sym_LBRACK_RBRACK, - STATE(385), 1, + STATE(536), 1, sym_inline_link_destination, - STATE(386), 1, + STATE(537), 1, sym__link_label, - [22297] = 4, - ACTIONS(2055), 1, + [21401] = 5, + ACTIONS(2226), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(2228), 1, + anon_sym_LBRACK, + ACTIONS(2230), 1, + anon_sym_LPAREN, + STATE(297), 1, + sym__link_label, + STATE(298), 1, + sym_inline_link_destination, + [21417] = 4, + ACTIONS(2161), 1, anon_sym_LBRACK, - ACTIONS(2142), 1, + ACTIONS(2232), 1, anon_sym_LBRACE, - STATE(489), 1, + STATE(472), 1, sym_inline_attribute, - ACTIONS(2053), 2, + ACTIONS(2159), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - [22311] = 5, - ACTIONS(2144), 1, + [21431] = 5, + ACTIONS(2234), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(2146), 1, + ACTIONS(2236), 1, anon_sym_LBRACK, - ACTIONS(2148), 1, + ACTIONS(2238), 1, anon_sym_LPAREN, - STATE(355), 1, - sym__link_label, - STATE(356), 1, + STATE(331), 1, sym_inline_link_destination, - [22327] = 5, - ACTIONS(2146), 1, + STATE(332), 1, + sym__link_label, + [21447] = 5, + ACTIONS(2228), 1, anon_sym_LBRACK, - ACTIONS(2148), 1, + ACTIONS(2230), 1, anon_sym_LPAREN, - ACTIONS(2150), 1, + ACTIONS(2240), 1, anon_sym_LBRACK_RBRACK, - STATE(352), 1, + STATE(294), 1, sym__link_label, - STATE(353), 1, + STATE(295), 1, sym_inline_link_destination, - [22343] = 4, - ACTIONS(2055), 1, + [21463] = 4, + ACTIONS(2161), 1, anon_sym_LBRACK, - ACTIONS(2152), 1, + ACTIONS(2242), 1, anon_sym_LBRACE, - STATE(321), 1, + STATE(420), 1, sym_inline_attribute, - ACTIONS(2053), 2, + ACTIONS(2159), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - [22357] = 3, - ACTIONS(2154), 1, - anon_sym_PERCENT, - STATE(668), 1, - aux_sym__comment_with_newline_repeat1, - ACTIONS(2136), 3, - sym_backslash_escape, - aux_sym__comment_with_newline_token1, - sym__newline, - [22369] = 4, - ACTIONS(2055), 1, + [21477] = 5, + ACTIONS(2236), 1, anon_sym_LBRACK, - ACTIONS(2156), 1, - anon_sym_LBRACE, - STATE(268), 1, - sym_inline_attribute, - ACTIONS(2053), 2, - anon_sym_LBRACK_RBRACK, + ACTIONS(2238), 1, anon_sym_LPAREN, - [22383] = 5, - ACTIONS(2158), 1, + ACTIONS(2244), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(2160), 1, - anon_sym_LBRACK, - ACTIONS(2162), 1, - anon_sym_LPAREN, - STATE(299), 1, - sym__link_label, - STATE(300), 1, + STATE(334), 1, sym_inline_link_destination, - [22399] = 5, - ACTIONS(2160), 1, + STATE(335), 1, + sym__link_label, + [21493] = 5, + ACTIONS(2145), 1, anon_sym_LBRACK, - ACTIONS(2162), 1, + ACTIONS(2147), 1, anon_sym_LPAREN, - ACTIONS(2164), 1, + ACTIONS(2246), 1, anon_sym_LBRACK_RBRACK, - STATE(302), 1, + STATE(450), 1, sym__link_label, - STATE(303), 1, + STATE(451), 1, sym_inline_link_destination, - [22415] = 1, - ACTIONS(2166), 4, + [21509] = 4, + ACTIONS(2161), 1, + anon_sym_LBRACK, + ACTIONS(2248), 1, + anon_sym_LBRACE, + STATE(264), 1, + sym_inline_attribute, + ACTIONS(2159), 2, + anon_sym_LBRACK_RBRACK, + anon_sym_LPAREN, + [21523] = 3, + ACTIONS(2250), 1, + anon_sym_PERCENT, + STATE(644), 1, + aux_sym__comment_with_newline_repeat1, + ACTIONS(2189), 3, + sym_backslash_escape, + aux_sym__comment_with_newline_token1, + sym__newline, + [21535] = 1, + ACTIONS(2252), 4, sym_backslash_escape, anon_sym_PERCENT, aux_sym__comment_with_newline_token1, sym__newline, - [22422] = 3, - ACTIONS(2168), 1, - anon_sym_STAR, - ACTIONS(2170), 1, - aux_sym_strong_end_token1, - STATE(423), 1, - sym_strong_end, - [22432] = 3, - ACTIONS(2172), 1, - anon_sym__, - ACTIONS(2174), 1, - aux_sym_emphasis_end_token1, - STATE(338), 1, - sym_emphasis_end, - [22442] = 3, - ACTIONS(2176), 1, - anon_sym__, - ACTIONS(2178), 1, - aux_sym_emphasis_end_token1, - STATE(262), 1, - sym_emphasis_end, - [22452] = 3, - ACTIONS(2180), 1, - anon_sym_STAR, - ACTIONS(2182), 1, - aux_sym_strong_end_token1, - STATE(264), 1, - sym_strong_end, - [22462] = 3, - ACTIONS(2184), 1, - anon_sym__, - ACTIONS(2186), 1, - aux_sym_emphasis_end_token1, - STATE(228), 1, - sym_emphasis_end, - [22472] = 3, - ACTIONS(2188), 1, - anon_sym_STAR, - ACTIONS(2190), 1, - aux_sym_strong_end_token1, - STATE(230), 1, - sym_strong_end, - [22482] = 3, - ACTIONS(2192), 1, - anon_sym_STAR, - ACTIONS(2194), 1, - aux_sym_strong_end_token1, - STATE(476), 1, - sym_strong_end, - [22492] = 3, - ACTIONS(2196), 1, - anon_sym__, - ACTIONS(2198), 1, - aux_sym_emphasis_end_token1, - STATE(474), 1, - sym_emphasis_end, - [22502] = 3, - ACTIONS(2200), 1, - anon_sym_STAR, - ACTIONS(2202), 1, - aux_sym_strong_end_token1, - STATE(491), 1, - sym_strong_end, - [22512] = 3, - ACTIONS(2204), 1, - anon_sym__, - ACTIONS(2206), 1, - aux_sym_emphasis_end_token1, - STATE(493), 1, - sym_emphasis_end, - [22522] = 3, - ACTIONS(2208), 1, - anon_sym__, - ACTIONS(2210), 1, - aux_sym_emphasis_end_token1, - STATE(421), 1, - sym_emphasis_end, - [22532] = 3, - ACTIONS(2212), 1, - anon_sym_STAR, - ACTIONS(2214), 1, - aux_sym_strong_end_token1, - STATE(529), 1, - sym_strong_end, - [22542] = 3, - ACTIONS(2216), 1, - anon_sym__, - ACTIONS(2218), 1, - aux_sym_emphasis_end_token1, - STATE(527), 1, - sym_emphasis_end, - [22552] = 3, - ACTIONS(2220), 1, + [21542] = 3, + ACTIONS(2254), 1, anon_sym__, - ACTIONS(2222), 1, + ACTIONS(2256), 1, aux_sym_emphasis_end_token1, - STATE(508), 1, + STATE(519), 1, sym_emphasis_end, - [22562] = 3, - ACTIONS(2224), 1, - anon_sym_STAR, - ACTIONS(2226), 1, - aux_sym_strong_end_token1, - STATE(497), 1, - sym_strong_end, - [22572] = 3, - ACTIONS(2228), 1, - anon_sym_STAR, - ACTIONS(2230), 1, - aux_sym_strong_end_token1, - STATE(336), 1, - sym_strong_end, - [22582] = 3, - ACTIONS(2232), 1, - anon_sym_STAR, - ACTIONS(2234), 1, - aux_sym_strong_end_token1, - STATE(370), 1, - sym_strong_end, - [22592] = 2, - ACTIONS(2238), 1, + [21552] = 2, + ACTIONS(2260), 1, anon_sym_LBRACK, - ACTIONS(2236), 2, + ACTIONS(2258), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - [22600] = 3, - ACTIONS(2240), 1, - anon_sym__, - ACTIONS(2242), 1, - aux_sym_emphasis_end_token1, - STATE(315), 1, - sym_emphasis_end, - [22610] = 3, - ACTIONS(2244), 1, - anon_sym_STAR, - ACTIONS(2246), 1, - aux_sym_strong_end_token1, - STATE(317), 1, - sym_strong_end, - [22620] = 3, - ACTIONS(2248), 1, + [21560] = 3, + ACTIONS(2262), 1, anon_sym__, - ACTIONS(2250), 1, + ACTIONS(2264), 1, aux_sym_emphasis_end_token1, - STATE(368), 1, + STATE(467), 1, sym_emphasis_end, - [22630] = 3, - ACTIONS(2252), 1, - anon_sym_DQUOTE, - ACTIONS(2254), 1, - aux_sym_value_token2, - STATE(642), 1, - sym_value, - [22640] = 2, - ACTIONS(2258), 1, - anon_sym_LBRACK, - ACTIONS(2256), 2, - anon_sym_LBRACK_RBRACK, - anon_sym_LPAREN, - [22648] = 2, - ACTIONS(2260), 1, - anon_sym_CARET, - ACTIONS(2262), 1, - anon_sym_CARET_RBRACE, - [22655] = 2, - ACTIONS(2264), 1, - anon_sym_CARET, + [21570] = 3, ACTIONS(2266), 1, - anon_sym_CARET_RBRACE, - [22662] = 2, + anon_sym_DQUOTE, ACTIONS(2268), 1, - anon_sym_TILDE, - ACTIONS(2270), 1, - anon_sym_TILDE_RBRACE, - [22669] = 2, - ACTIONS(2272), 1, - anon_sym_BQUOTE, - STATE(322), 1, - sym__verbatim_end, - [22676] = 2, - ACTIONS(1935), 1, - anon_sym_PERCENT, - STATE(754), 1, - sym__comment_with_newline, - [22683] = 2, - ACTIONS(1935), 1, - anon_sym_PERCENT, - STATE(868), 1, - sym__comment_with_newline, - [22690] = 2, - ACTIONS(1935), 1, - anon_sym_PERCENT, - STATE(799), 1, - sym__comment_with_newline, - [22697] = 2, + aux_sym_value_token2, + STATE(621), 1, + sym_value, + [21580] = 3, + ACTIONS(2270), 1, + anon_sym_STAR, + ACTIONS(2272), 1, + aux_sym_strong_end_token1, + STATE(417), 1, + sym_strong_end, + [21590] = 3, ACTIONS(2274), 1, - anon_sym_CARET, + anon_sym__, ACTIONS(2276), 1, - anon_sym_CARET_RBRACE, - [22704] = 2, + aux_sym_emphasis_end_token1, + STATE(415), 1, + sym_emphasis_end, + [21600] = 3, ACTIONS(2278), 1, - anon_sym_TILDE, + anon_sym_STAR, ACTIONS(2280), 1, - anon_sym_TILDE_RBRACE, - [22711] = 2, + aux_sym_strong_end_token1, + STATE(455), 1, + sym_strong_end, + [21610] = 3, ACTIONS(2282), 1, - anon_sym_CARET, + anon_sym_STAR, ACTIONS(2284), 1, - anon_sym_CARET_RBRACE, - [22718] = 2, - ACTIONS(1935), 1, - anon_sym_PERCENT, - STATE(761), 1, - sym__comment_with_newline, - [22725] = 2, - ACTIONS(1935), 1, - anon_sym_PERCENT, - STATE(806), 1, - sym__comment_with_newline, - [22732] = 2, + aux_sym_strong_end_token1, + STATE(521), 1, + sym_strong_end, + [21620] = 3, ACTIONS(2286), 1, - anon_sym_CARET, + anon_sym_STAR, ACTIONS(2288), 1, - anon_sym_CARET_RBRACE, - [22739] = 2, + aux_sym_strong_end_token1, + STATE(261), 1, + sym_strong_end, + [21630] = 3, ACTIONS(2290), 1, - anon_sym_TILDE, + anon_sym__, ACTIONS(2292), 1, - anon_sym_TILDE_RBRACE, - [22746] = 2, + aux_sym_emphasis_end_token1, + STATE(259), 1, + sym_emphasis_end, + [21640] = 3, ACTIONS(2294), 1, - anon_sym_BQUOTE, - STATE(534), 1, - sym__verbatim_end, - [22753] = 2, + anon_sym_STAR, ACTIONS(2296), 1, - anon_sym_TILDE, - ACTIONS(2298), 1, - anon_sym_TILDE_RBRACE, - [22760] = 2, + aux_sym_strong_end_token1, + STATE(365), 1, + sym_strong_end, + [21650] = 2, ACTIONS(2300), 1, - anon_sym_BQUOTE, - STATE(144), 1, - sym__verbatim_end, - [22767] = 2, + anon_sym_LBRACK, + ACTIONS(2298), 2, + anon_sym_LBRACK_RBRACK, + anon_sym_LPAREN, + [21658] = 3, ACTIONS(2302), 1, - anon_sym_BQUOTE, - STATE(166), 1, - sym__verbatim_end, - [22774] = 2, + anon_sym_STAR, ACTIONS(2304), 1, - anon_sym_BQUOTE, - STATE(143), 1, - sym__verbatim_end, - [22781] = 2, + aux_sym_strong_end_token1, + STATE(469), 1, + sym_strong_end, + [21668] = 3, ACTIONS(2306), 1, - anon_sym_TILDE, + anon_sym_STAR, ACTIONS(2308), 1, - anon_sym_TILDE_RBRACE, - [22788] = 2, + aux_sym_strong_end_token1, + STATE(226), 1, + sym_strong_end, + [21678] = 3, ACTIONS(2310), 1, - anon_sym_BQUOTE, - STATE(160), 1, - sym__verbatim_end, - [22795] = 2, + anon_sym__, ACTIONS(2312), 1, - anon_sym_BQUOTE, - STATE(375), 1, - sym__verbatim_end, - [22802] = 2, + aux_sym_emphasis_end_token1, + STATE(224), 1, + sym_emphasis_end, + [21688] = 3, ACTIONS(2314), 1, - anon_sym_BQUOTE, - STATE(333), 1, - sym__verbatim_end, - [22809] = 2, + anon_sym__, ACTIONS(2316), 1, - anon_sym_BQUOTE, - STATE(487), 1, - sym__verbatim_end, - [22816] = 2, + aux_sym_emphasis_end_token1, + STATE(311), 1, + sym_emphasis_end, + [21698] = 3, ACTIONS(2318), 1, - anon_sym_BQUOTE, - STATE(135), 1, - sym__verbatim_end, - [22823] = 2, + anon_sym_STAR, ACTIONS(2320), 1, - anon_sym_BQUOTE, - STATE(447), 1, - sym__verbatim_end, - [22830] = 2, - ACTIONS(1935), 1, - anon_sym_PERCENT, - STATE(813), 1, - sym__comment_with_newline, - [22837] = 2, + aux_sym_strong_end_token1, + STATE(313), 1, + sym_strong_end, + [21708] = 3, ACTIONS(2322), 1, - anon_sym_TILDE, + anon_sym__, ACTIONS(2324), 1, - anon_sym_TILDE_RBRACE, - [22844] = 2, + aux_sym_emphasis_end_token1, + STATE(445), 1, + sym_emphasis_end, + [21718] = 3, ACTIONS(2326), 1, - anon_sym_CARET, + anon_sym_STAR, ACTIONS(2328), 1, - anon_sym_CARET_RBRACE, - [22851] = 2, - ACTIONS(1935), 1, - anon_sym_PERCENT, - STATE(762), 1, - sym__comment_with_newline, - [22858] = 2, + aux_sym_strong_end_token1, + STATE(438), 1, + sym_strong_end, + [21728] = 3, ACTIONS(2330), 1, - sym__id, - STATE(639), 1, - sym_class_name, - [22865] = 2, + anon_sym_STAR, ACTIONS(2332), 1, - anon_sym_BQUOTE, - STATE(162), 1, - sym__verbatim_end, - [22872] = 2, + aux_sym_strong_end_token1, + STATE(288), 1, + sym_strong_end, + [21738] = 3, ACTIONS(2334), 1, - anon_sym_CARET, + anon_sym__, ACTIONS(2336), 1, - anon_sym_CARET_RBRACE, - [22879] = 2, + aux_sym_emphasis_end_token1, + STATE(299), 1, + sym_emphasis_end, + [21748] = 3, ACTIONS(2338), 1, - anon_sym_TILDE, + anon_sym__, ACTIONS(2340), 1, - anon_sym_TILDE_RBRACE, - [22886] = 2, + aux_sym_emphasis_end_token1, + STATE(457), 1, + sym_emphasis_end, + [21758] = 3, ACTIONS(2342), 1, - anon_sym_CARET, + anon_sym__, ACTIONS(2344), 1, - anon_sym_CARET_RBRACE, - [22893] = 2, + aux_sym_emphasis_end_token1, + STATE(363), 1, + sym_emphasis_end, + [21768] = 2, ACTIONS(2346), 1, anon_sym_TILDE, ACTIONS(2348), 1, anon_sym_TILDE_RBRACE, - [22900] = 2, + [21775] = 2, ACTIONS(2350), 1, - anon_sym_CARET, + anon_sym_TILDE, ACTIONS(2352), 1, - anon_sym_CARET_RBRACE, - [22907] = 2, - ACTIONS(1935), 1, - anon_sym_PERCENT, - STATE(773), 1, - sym__comment_with_newline, - [22914] = 2, - ACTIONS(1935), 1, + anon_sym_TILDE_RBRACE, + [21782] = 2, + ACTIONS(2021), 1, anon_sym_PERCENT, - STATE(787), 1, + STATE(713), 1, sym__comment_with_newline, - [22921] = 2, + [21789] = 2, ACTIONS(2354), 1, - anon_sym_BQUOTE, - STATE(122), 1, - sym__verbatim_end, - [22928] = 2, - ACTIONS(1935), 1, + sym__id, + STATE(624), 1, + sym_class_name, + [21796] = 2, + ACTIONS(2021), 1, anon_sym_PERCENT, - STATE(808), 1, + STATE(770), 1, sym__comment_with_newline, - [22935] = 2, + [21803] = 2, ACTIONS(2356), 1, - anon_sym_BQUOTE, - STATE(233), 1, - sym__verbatim_end, - [22942] = 2, + anon_sym_TILDE, ACTIONS(2358), 1, - anon_sym_BQUOTE, - STATE(428), 1, - sym__verbatim_end, - [22949] = 2, + anon_sym_TILDE_RBRACE, + [21810] = 2, + ACTIONS(2021), 1, + anon_sym_PERCENT, + STATE(849), 1, + sym__comment_with_newline, + [21817] = 2, + ACTIONS(2021), 1, + anon_sym_PERCENT, + STATE(751), 1, + sym__comment_with_newline, + [21824] = 2, ACTIONS(2360), 1, - anon_sym_BQUOTE, - STATE(158), 1, - sym__verbatim_end, - [22956] = 2, - ACTIONS(2362), 1, anon_sym_CARET, - ACTIONS(2364), 1, + ACTIONS(2362), 1, anon_sym_CARET_RBRACE, - [22963] = 2, + [21831] = 2, + ACTIONS(2021), 1, + anon_sym_PERCENT, + STATE(734), 1, + sym__comment_with_newline, + [21838] = 2, + ACTIONS(2021), 1, + anon_sym_PERCENT, + STATE(802), 1, + sym__comment_with_newline, + [21845] = 2, + ACTIONS(2021), 1, + anon_sym_PERCENT, + STATE(825), 1, + sym__comment_with_newline, + [21852] = 2, + ACTIONS(2021), 1, + anon_sym_PERCENT, + STATE(739), 1, + sym__comment_with_newline, + [21859] = 2, + ACTIONS(2364), 1, + anon_sym_CARET, ACTIONS(2366), 1, - anon_sym_TILDE, + anon_sym_CARET_RBRACE, + [21866] = 2, ACTIONS(2368), 1, - anon_sym_TILDE_RBRACE, - [22970] = 2, + anon_sym_TILDE, ACTIONS(2370), 1, - anon_sym_BQUOTE, - STATE(481), 1, - sym__verbatim_end, - [22977] = 2, + anon_sym_TILDE_RBRACE, + [21873] = 2, ACTIONS(2372), 1, - anon_sym_TILDE, + anon_sym_CARET, ACTIONS(2374), 1, - anon_sym_TILDE_RBRACE, - [22984] = 2, + anon_sym_CARET_RBRACE, + [21880] = 2, + ACTIONS(2021), 1, + anon_sym_PERCENT, + STATE(775), 1, + sym__comment_with_newline, + [21887] = 2, ACTIONS(2376), 1, - anon_sym_BQUOTE, - STATE(132), 1, - sym__verbatim_end, - [22991] = 2, + anon_sym_TILDE, ACTIONS(2378), 1, - anon_sym_BQUOTE, - STATE(156), 1, - sym__verbatim_end, - [22998] = 2, + anon_sym_TILDE_RBRACE, + [21894] = 2, + ACTIONS(2021), 1, + anon_sym_PERCENT, + STATE(798), 1, + sym__comment_with_newline, + [21901] = 2, ACTIONS(2380), 1, - anon_sym_BQUOTE, - STATE(269), 1, - sym__verbatim_end, - [23005] = 1, + anon_sym_CARET, ACTIONS(2382), 1, - anon_sym_EQ_RBRACE, - [23009] = 1, + anon_sym_CARET_RBRACE, + [21908] = 2, ACTIONS(2384), 1, - anon_sym_RBRACE, - [23013] = 1, + anon_sym_TILDE, ACTIONS(2386), 1, - anon_sym_GT, - [23017] = 1, + anon_sym_TILDE_RBRACE, + [21915] = 2, ACTIONS(2388), 1, - anon_sym_EQ_RBRACE, - [23021] = 1, + anon_sym_CARET, ACTIONS(2390), 1, - anon_sym_PLUS_RBRACE, - [23025] = 1, + anon_sym_CARET_RBRACE, + [21922] = 2, ACTIONS(2392), 1, - anon_sym_DASH_RBRACE, - [23029] = 1, + anon_sym_CARET, ACTIONS(2394), 1, - anon_sym_RBRACK, - [23033] = 1, + anon_sym_CARET_RBRACE, + [21929] = 2, ACTIONS(2396), 1, - anon_sym_RBRACK2, - [23037] = 1, + anon_sym_CARET, ACTIONS(2398), 1, - anon_sym_RBRACE, - [23041] = 1, + anon_sym_CARET_RBRACE, + [21936] = 2, ACTIONS(2400), 1, - anon_sym_RBRACE, - [23045] = 1, + anon_sym_CARET, ACTIONS(2402), 1, - anon_sym_RBRACK2, - [23049] = 1, + anon_sym_CARET_RBRACE, + [21943] = 2, ACTIONS(2404), 1, - anon_sym_RPAREN, - [23053] = 1, + anon_sym_TILDE, ACTIONS(2406), 1, - anon_sym_RBRACE, - [23057] = 1, + anon_sym_TILDE_RBRACE, + [21950] = 2, ACTIONS(2408), 1, - sym__newline, - [23061] = 1, + anon_sym_TILDE, ACTIONS(2410), 1, - anon_sym_GT, - [23065] = 1, + anon_sym_TILDE_RBRACE, + [21957] = 2, ACTIONS(2412), 1, - anon_sym_EQ_RBRACE, - [23069] = 1, + anon_sym_TILDE, ACTIONS(2414), 1, - anon_sym_PLUS_RBRACE, - [23073] = 1, + anon_sym_TILDE_RBRACE, + [21964] = 2, ACTIONS(2416), 1, - anon_sym_DASH_RBRACE, - [23077] = 1, + anon_sym_CARET, ACTIONS(2418), 1, - anon_sym_RBRACK, - [23081] = 1, + anon_sym_CARET_RBRACE, + [21971] = 2, ACTIONS(2420), 1, - anon_sym_RBRACK, - [23085] = 1, + anon_sym_TILDE, ACTIONS(2422), 1, - anon_sym_RBRACE, - [23089] = 1, + anon_sym_TILDE_RBRACE, + [21978] = 2, ACTIONS(2424), 1, - anon_sym_RBRACK2, - [23093] = 1, + anon_sym_CARET, ACTIONS(2426), 1, - anon_sym_RPAREN, - [23097] = 1, + anon_sym_CARET_RBRACE, + [21985] = 1, ACTIONS(2428), 1, anon_sym_RBRACE, - [23101] = 1, + [21989] = 1, ACTIONS(2430), 1, - sym__newline, - [23105] = 1, + sym__verbatim_end, + [21993] = 1, ACTIONS(2432), 1, - anon_sym_DASH_RBRACE, - [23109] = 1, + anon_sym_RBRACK2, + [21997] = 1, ACTIONS(2434), 1, - anon_sym_PLUS_RBRACE, - [23113] = 1, + anon_sym_RPAREN, + [22001] = 1, ACTIONS(2436), 1, - anon_sym_GT, - [23117] = 1, + anon_sym_RBRACE, + [22005] = 1, ACTIONS(2438), 1, - anon_sym_EQ_RBRACE, - [23121] = 1, + sym__newline, + [22009] = 1, ACTIONS(2440), 1, anon_sym_PLUS_RBRACE, - [23125] = 1, + [22013] = 1, ACTIONS(2442), 1, - anon_sym_DASH_RBRACE, - [23129] = 1, + anon_sym_EQ_RBRACE, + [22017] = 1, ACTIONS(2444), 1, - anon_sym_RBRACK, - [23133] = 1, + sym__verbatim_end, + [22021] = 1, ACTIONS(2446), 1, - aux_sym_inline_link_destination_token1, - [23137] = 1, + anon_sym_GT, + [22025] = 1, ACTIONS(2448), 1, anon_sym_GT, - [23141] = 1, + [22029] = 1, ACTIONS(2450), 1, - anon_sym_RBRACE, - [23145] = 1, + anon_sym_EQ_RBRACE, + [22033] = 1, ACTIONS(2452), 1, - anon_sym_RBRACK2, - [23149] = 1, + anon_sym_PLUS_RBRACE, + [22037] = 1, ACTIONS(2454), 1, - anon_sym_RPAREN, - [23153] = 1, + anon_sym_DASH_RBRACE, + [22041] = 1, ACTIONS(2456), 1, - anon_sym_RBRACE, - [23157] = 1, + sym__verbatim_end, + [22045] = 1, ACTIONS(2458), 1, - sym__newline, - [23161] = 1, + anon_sym_RBRACK, + [22049] = 1, ACTIONS(2460), 1, sym__newline, - [23165] = 1, + [22053] = 1, ACTIONS(2462), 1, anon_sym_RBRACE, - [23169] = 1, + [22057] = 1, ACTIONS(2464), 1, anon_sym_RPAREN, - [23173] = 1, + [22061] = 1, ACTIONS(2466), 1, - anon_sym_GT, - [23177] = 1, + anon_sym_RBRACK2, + [22065] = 1, ACTIONS(2468), 1, - anon_sym_RBRACK, - [23181] = 1, + sym__verbatim_end, + [22069] = 1, ACTIONS(2470), 1, - anon_sym_PLUS_RBRACE, - [23185] = 1, + anon_sym_RBRACE, + [22073] = 1, ACTIONS(2472), 1, - anon_sym_DASH_RBRACE, - [23189] = 1, + anon_sym_RBRACK2, + [22077] = 1, ACTIONS(2474), 1, - anon_sym_RBRACE, - [23193] = 1, + anon_sym_RPAREN, + [22081] = 1, ACTIONS(2476), 1, anon_sym_RBRACE, - [23197] = 1, + [22085] = 1, ACTIONS(2478), 1, - anon_sym_RBRACK, - [23201] = 1, - ACTIONS(2480), 1, sym__newline, - [23205] = 1, + [22089] = 1, + ACTIONS(2480), 1, + anon_sym_RBRACE, + [22093] = 1, ACTIONS(2482), 1, - sym__newline, - [23209] = 1, + sym__verbatim_end, + [22097] = 1, ACTIONS(2484), 1, - anon_sym_RBRACE, - [23213] = 1, + sym__verbatim_end, + [22101] = 1, ACTIONS(2486), 1, - anon_sym_RBRACK2, - [23217] = 1, + anon_sym_RBRACK, + [22105] = 1, ACTIONS(2488), 1, - anon_sym_RBRACE, - [23221] = 1, + anon_sym_GT, + [22109] = 1, ACTIONS(2490), 1, - anon_sym_RPAREN, - [23225] = 1, + anon_sym_EQ_RBRACE, + [22113] = 1, ACTIONS(2492), 1, - anon_sym_RBRACE, - [23229] = 1, + anon_sym_PLUS_RBRACE, + [22117] = 1, ACTIONS(2494), 1, - anon_sym_RBRACK2, - [23233] = 1, + anon_sym_DASH_RBRACE, + [22121] = 1, ACTIONS(2496), 1, - anon_sym_RPAREN, - [23237] = 1, + anon_sym_RBRACK, + [22125] = 1, ACTIONS(2498), 1, - anon_sym_RBRACE, - [23241] = 1, + anon_sym_DASH_RBRACE, + [22129] = 1, ACTIONS(2500), 1, - anon_sym_RBRACK2, - [23245] = 1, + anon_sym_PLUS_RBRACE, + [22133] = 1, ACTIONS(2502), 1, - anon_sym_RBRACE, - [23249] = 1, + sym__verbatim_end, + [22137] = 1, ACTIONS(2504), 1, - anon_sym_GT, - [23253] = 1, + anon_sym_RBRACE, + [22141] = 1, ACTIONS(2506), 1, - anon_sym_EQ_RBRACE, - [23257] = 1, + anon_sym_RBRACK2, + [22145] = 1, ACTIONS(2508), 1, - anon_sym_RBRACK, - [23261] = 1, + anon_sym_RPAREN, + [22149] = 1, ACTIONS(2510), 1, - anon_sym_RBRACK, - [23265] = 1, + anon_sym_RBRACE, + [22153] = 1, ACTIONS(2512), 1, - anon_sym_DASH_RBRACE, - [23269] = 1, + sym__newline, + [22157] = 1, ACTIONS(2514), 1, - anon_sym_DASH_RBRACE, - [23273] = 1, + anon_sym_EQ_RBRACE, + [22161] = 1, ACTIONS(2516), 1, - anon_sym_PLUS_RBRACE, - [23277] = 1, + anon_sym_GT, + [22165] = 1, ACTIONS(2518), 1, - anon_sym_EQ_RBRACE, - [23281] = 1, + sym__verbatim_end, + [22169] = 1, ACTIONS(2520), 1, - anon_sym_GT, - [23285] = 1, + sym__verbatim_end, + [22173] = 1, ACTIONS(2522), 1, - sym__newline, - [23289] = 1, + anon_sym_GT, + [22177] = 1, ACTIONS(2524), 1, - sym__verbatim_content, - [23293] = 1, + anon_sym_EQ_RBRACE, + [22181] = 1, ACTIONS(2526), 1, - anon_sym_DQUOTE, - [23297] = 1, + anon_sym_PLUS_RBRACE, + [22185] = 1, ACTIONS(2528), 1, - anon_sym_RBRACE, - [23301] = 1, + anon_sym_DASH_RBRACE, + [22189] = 1, ACTIONS(2530), 1, - aux_sym_value_token1, - [23305] = 1, + anon_sym_RBRACK, + [22193] = 1, ACTIONS(2532), 1, - sym_language, - [23309] = 1, + sym__newline, + [22197] = 1, ACTIONS(2534), 1, - anon_sym_PLUS_RBRACE, - [23313] = 1, + aux_sym_inline_link_destination_token1, + [22201] = 1, ACTIONS(2536), 1, anon_sym_RPAREN, - [23317] = 1, + [22205] = 1, ACTIONS(2538), 1, anon_sym_RBRACK2, - [23321] = 1, + [22209] = 1, ACTIONS(2540), 1, - anon_sym_RPAREN, - [23325] = 1, + sym__verbatim_end, + [22213] = 1, ACTIONS(2542), 1, - anon_sym_RBRACK, - [23329] = 1, + anon_sym_RBRACE, + [22217] = 1, ACTIONS(2544), 1, - sym__verbatim_content, - [23333] = 1, + anon_sym_RBRACK2, + [22221] = 1, ACTIONS(2546), 1, - anon_sym_RBRACK, - [23337] = 1, + anon_sym_RPAREN, + [22225] = 1, ACTIONS(2548), 1, - sym__verbatim_content, - [23341] = 1, + anon_sym_RBRACE, + [22229] = 1, ACTIONS(2550), 1, - anon_sym_EQ_RBRACE, - [23345] = 1, + sym__newline, + [22233] = 1, ACTIONS(2552), 1, - anon_sym_GT, - [23349] = 1, + anon_sym_RBRACE, + [22237] = 1, ACTIONS(2554), 1, - aux_sym_inline_link_destination_token1, - [23353] = 1, + sym__verbatim_end, + [22241] = 1, ACTIONS(2556), 1, - sym_language, - [23357] = 1, + sym__verbatim_end, + [22245] = 1, ACTIONS(2558), 1, anon_sym_RBRACK, - [23361] = 1, + [22249] = 1, ACTIONS(2560), 1, - anon_sym_RBRACK, - [23365] = 1, + anon_sym_GT, + [22253] = 1, ACTIONS(2562), 1, - sym__verbatim_content, - [23369] = 1, + anon_sym_EQ_RBRACE, + [22257] = 1, ACTIONS(2564), 1, - anon_sym_RBRACK, - [23373] = 1, + anon_sym_PLUS_RBRACE, + [22261] = 1, ACTIONS(2566), 1, - sym__verbatim_content, - [23377] = 1, + anon_sym_DASH_RBRACE, + [22265] = 1, ACTIONS(2568), 1, - anon_sym_PLUS_RBRACE, - [23381] = 1, + anon_sym_RBRACK, + [22269] = 1, ACTIONS(2570), 1, anon_sym_DASH_RBRACE, - [23385] = 1, + [22273] = 1, ACTIONS(2572), 1, - aux_sym_inline_link_destination_token1, - [23389] = 1, + anon_sym_PLUS_RBRACE, + [22277] = 1, ACTIONS(2574), 1, - sym_language, - [23393] = 1, + sym__verbatim_end, + [22281] = 1, ACTIONS(2576), 1, - sym__newline, - [23397] = 1, + anon_sym_RBRACK2, + [22285] = 1, ACTIONS(2578), 1, - anon_sym_DASH_RBRACE, - [23401] = 1, + anon_sym_RBRACK2, + [22289] = 1, ACTIONS(2580), 1, - sym__verbatim_content, - [23405] = 1, + anon_sym_RPAREN, + [22293] = 1, ACTIONS(2582), 1, - anon_sym_RBRACK, - [23409] = 1, + anon_sym_RBRACE, + [22297] = 1, ACTIONS(2584), 1, - sym__verbatim_content, - [23413] = 1, + anon_sym_EQ_RBRACE, + [22301] = 1, ACTIONS(2586), 1, - anon_sym_RBRACE, - [23417] = 1, + anon_sym_GT, + [22305] = 1, ACTIONS(2588), 1, - anon_sym_PLUS_RBRACE, - [23421] = 1, + sym__verbatim_end, + [22309] = 1, ACTIONS(2590), 1, - aux_sym_inline_link_destination_token1, - [23425] = 1, + sym__newline, + [22313] = 1, ACTIONS(2592), 1, - sym_language, - [23429] = 1, + anon_sym_RBRACE, + [22317] = 1, ACTIONS(2594), 1, - anon_sym_EQ_RBRACE, - [23433] = 1, + anon_sym_RPAREN, + [22321] = 1, ACTIONS(2596), 1, - anon_sym_GT, - [23437] = 1, + anon_sym_RBRACK2, + [22325] = 1, ACTIONS(2598), 1, - sym__verbatim_content, - [23441] = 1, + anon_sym_RBRACE, + [22329] = 1, ACTIONS(2600), 1, - anon_sym_RBRACK, - [23445] = 1, + sym__verbatim_end, + [22333] = 1, ACTIONS(2602), 1, - sym__verbatim_content, - [23449] = 1, + anon_sym_RBRACK, + [22337] = 1, ACTIONS(2604), 1, anon_sym_RPAREN, - [23453] = 1, + [22341] = 1, ACTIONS(2606), 1, - anon_sym_RBRACK2, - [23457] = 1, + anon_sym_RBRACE, + [22345] = 1, ACTIONS(2608), 1, - aux_sym_inline_link_destination_token1, - [23461] = 1, + anon_sym_DASH_RBRACE, + [22349] = 1, ACTIONS(2610), 1, - sym_language, - [23465] = 1, + anon_sym_PLUS_RBRACE, + [22353] = 1, ACTIONS(2612), 1, - anon_sym_RBRACE, - [23469] = 1, - ACTIONS(2614), 1, anon_sym_EQ_RBRACE, - [23473] = 1, + [22357] = 1, + ACTIONS(2614), 1, + anon_sym_GT, + [22361] = 1, ACTIONS(2616), 1, - sym__verbatim_content, - [23477] = 1, + sym__verbatim_end, + [22365] = 1, ACTIONS(2618), 1, - anon_sym_RBRACK, - [23481] = 1, + sym__newline, + [22369] = 1, ACTIONS(2620), 1, - sym__verbatim_content, - [23485] = 1, + anon_sym_DQUOTE, + [22373] = 1, ACTIONS(2622), 1, - anon_sym_RBRACK, - [23489] = 1, + aux_sym_value_token1, + [22377] = 1, ACTIONS(2624), 1, - anon_sym_RBRACK, - [23493] = 1, + sym__verbatim_content, + [22381] = 1, ACTIONS(2626), 1, - aux_sym_inline_link_destination_token1, - [23497] = 1, + sym__verbatim_content, + [22385] = 1, ACTIONS(2628), 1, - sym_language, - [23501] = 1, + anon_sym_RBRACE, + [22389] = 1, ACTIONS(2630), 1, - anon_sym_EQ, - [23505] = 1, + anon_sym_RBRACK, + [22393] = 1, ACTIONS(2632), 1, sym__verbatim_content, - [23509] = 1, + [22397] = 1, ACTIONS(2634), 1, - sym__verbatim_content, - [23513] = 1, + anon_sym_DASH_RBRACE, + [22401] = 1, ACTIONS(2636), 1, anon_sym_RBRACK, - [23517] = 1, + [22405] = 1, ACTIONS(2638), 1, - sym__verbatim_content, - [23521] = 1, + aux_sym_inline_link_destination_token1, + [22409] = 1, ACTIONS(2640), 1, - anon_sym_DASH_RBRACE, - [23525] = 1, + sym_language, + [22413] = 1, ACTIONS(2642), 1, - anon_sym_PLUS_RBRACE, - [23529] = 1, + sym__verbatim_content, + [22417] = 1, ACTIONS(2644), 1, - aux_sym_inline_link_destination_token1, - [23533] = 1, + anon_sym_RBRACK, + [22421] = 1, ACTIONS(2646), 1, - sym_language, - [23537] = 1, + anon_sym_RBRACE, + [22425] = 1, ACTIONS(2648), 1, - sym__whitespace, - [23541] = 1, + anon_sym_RBRACK, + [22429] = 1, ACTIONS(2650), 1, - ts_builtin_sym_end, - [23545] = 1, - ACTIONS(2652), 1, sym__verbatim_content, - [23549] = 1, + [22433] = 1, + ACTIONS(2652), 1, + anon_sym_RBRACE, + [22437] = 1, ACTIONS(2654), 1, - anon_sym_RBRACK, - [23553] = 1, + sym__verbatim_end, + [22441] = 1, ACTIONS(2656), 1, - sym__verbatim_content, - [23557] = 1, + aux_sym_inline_link_destination_token1, + [22445] = 1, ACTIONS(2658), 1, - anon_sym_EQ_RBRACE, - [23561] = 1, + sym_language, + [22449] = 1, ACTIONS(2660), 1, - ts_builtin_sym_end, - [23565] = 1, + sym__verbatim_content, + [22453] = 1, ACTIONS(2662), 1, - aux_sym_inline_link_destination_token1, - [23569] = 1, + anon_sym_DASH_RBRACE, + [22457] = 1, ACTIONS(2664), 1, - sym_language, - [23573] = 1, + anon_sym_PLUS_RBRACE, + [22461] = 1, ACTIONS(2666), 1, - anon_sym_EQ, - [23577] = 1, + anon_sym_RBRACK, + [22465] = 1, ACTIONS(2668), 1, sym__verbatim_content, - [23581] = 1, + [22469] = 1, ACTIONS(2670), 1, - sym__verbatim_content, - [23585] = 1, - ACTIONS(2672), 1, anon_sym_RBRACK, - [23589] = 1, + [22473] = 1, + ACTIONS(2672), 1, + anon_sym_EQ_RBRACE, + [22477] = 1, ACTIONS(2674), 1, - sym__verbatim_content, - [23593] = 1, + aux_sym_inline_link_destination_token1, + [22481] = 1, ACTIONS(2676), 1, - anon_sym_GT, - [23597] = 1, + sym_language, + [22485] = 1, ACTIONS(2678), 1, - sym__newline, - [23601] = 1, + sym__verbatim_content, + [22489] = 1, ACTIONS(2680), 1, - aux_sym_inline_link_destination_token1, - [23605] = 1, + anon_sym_GT, + [22493] = 1, ACTIONS(2682), 1, sym_language, - [23609] = 1, + [22497] = 1, ACTIONS(2684), 1, - anon_sym_RBRACE, - [23613] = 1, + anon_sym_RBRACK, + [22501] = 1, ACTIONS(2686), 1, - sym__newline, - [23617] = 1, - ACTIONS(2688), 1, sym__verbatim_content, - [23621] = 1, + [22505] = 1, + ACTIONS(2688), 1, + anon_sym_DASH_RBRACE, + [22509] = 1, ACTIONS(2690), 1, - anon_sym_RBRACK, - [23625] = 1, + anon_sym_RPAREN, + [22513] = 1, ACTIONS(2692), 1, - sym__verbatim_content, - [23629] = 1, + aux_sym_inline_link_destination_token1, + [22517] = 1, ACTIONS(2694), 1, - anon_sym_RPAREN, - [23633] = 1, + sym_language, + [22521] = 1, ACTIONS(2696), 1, - anon_sym_RBRACK2, - [23637] = 1, + sym__verbatim_content, + [22525] = 1, ACTIONS(2698), 1, - aux_sym_inline_link_destination_token1, - [23641] = 1, + anon_sym_RBRACK2, + [22529] = 1, ACTIONS(2700), 1, + anon_sym_RBRACE, + [22533] = 1, + ACTIONS(2702), 1, + anon_sym_RBRACK, + [22537] = 1, + ACTIONS(2704), 1, + sym__verbatim_content, + [22541] = 1, + ACTIONS(2706), 1, + anon_sym_PLUS_RBRACE, + [22545] = 1, + ACTIONS(2708), 1, + sym__verbatim_end, + [22549] = 1, + ACTIONS(2710), 1, + aux_sym_inline_link_destination_token1, + [22553] = 1, + ACTIONS(2712), 1, + sym_language, + [22557] = 1, + ACTIONS(2714), 1, + sym__verbatim_content, + [22561] = 1, + ACTIONS(2716), 1, + sym__verbatim_end, + [22565] = 1, + ACTIONS(2718), 1, + anon_sym_RBRACK, + [22569] = 1, + ACTIONS(2720), 1, + anon_sym_RBRACK, + [22573] = 1, + ACTIONS(2722), 1, + sym__verbatim_content, + [22577] = 1, + ACTIONS(2724), 1, + anon_sym_EQ_RBRACE, + [22581] = 1, + ACTIONS(2726), 1, + sym__verbatim_content, + [22585] = 1, + ACTIONS(2728), 1, + aux_sym_inline_link_destination_token1, + [22589] = 1, + ACTIONS(2730), 1, + sym_language, + [22593] = 1, + ACTIONS(2732), 1, + sym__verbatim_content, + [22597] = 1, + ACTIONS(2734), 1, + ts_builtin_sym_end, + [22601] = 1, + ACTIONS(2736), 1, + ts_builtin_sym_end, + [22605] = 1, + ACTIONS(2738), 1, + anon_sym_RBRACK, + [22609] = 1, + ACTIONS(2740), 1, + sym__verbatim_content, + [22613] = 1, + ACTIONS(2742), 1, + anon_sym_GT, + [22617] = 1, + ACTIONS(2744), 1, + sym__verbatim_end, + [22621] = 1, + ACTIONS(2746), 1, + aux_sym_inline_link_destination_token1, + [22625] = 1, + ACTIONS(2748), 1, + sym_language, + [22629] = 1, + ACTIONS(2750), 1, + sym__verbatim_content, + [22633] = 1, + ACTIONS(2752), 1, + anon_sym_EQ, + [22637] = 1, + ACTIONS(2754), 1, + anon_sym_RBRACK, + [22641] = 1, + ACTIONS(2756), 1, + anon_sym_RBRACK, + [22645] = 1, + ACTIONS(2758), 1, + sym__verbatim_content, + [22649] = 1, + ACTIONS(2760), 1, + anon_sym_RBRACK, + [22653] = 1, + ACTIONS(2762), 1, + sym__newline, + [22657] = 1, + ACTIONS(2764), 1, + aux_sym_inline_link_destination_token1, + [22661] = 1, + ACTIONS(2766), 1, + sym_language, + [22665] = 1, + ACTIONS(2768), 1, + sym__verbatim_content, + [22669] = 1, + ACTIONS(2770), 1, + sym__newline, + [22673] = 1, + ACTIONS(2772), 1, + sym__whitespace, + [22677] = 1, + ACTIONS(2774), 1, + anon_sym_RBRACK, + [22681] = 1, + ACTIONS(2776), 1, + sym__verbatim_content, + [22685] = 1, + ACTIONS(2778), 1, + anon_sym_RBRACE, + [22689] = 1, + ACTIONS(2780), 1, + anon_sym_EQ, + [22693] = 1, + ACTIONS(2782), 1, + aux_sym_inline_link_destination_token1, + [22697] = 1, + ACTIONS(2784), 1, sym_language, }; static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(122)] = 0, - [SMALL_STATE(123)] = 48, - [SMALL_STATE(124)] = 98, - [SMALL_STATE(125)] = 150, - [SMALL_STATE(126)] = 202, - [SMALL_STATE(127)] = 252, - [SMALL_STATE(128)] = 300, - [SMALL_STATE(129)] = 348, - [SMALL_STATE(130)] = 396, - [SMALL_STATE(131)] = 446, - [SMALL_STATE(132)] = 494, - [SMALL_STATE(133)] = 542, - [SMALL_STATE(134)] = 594, - [SMALL_STATE(135)] = 644, - [SMALL_STATE(136)] = 692, - [SMALL_STATE(137)] = 744, - [SMALL_STATE(138)] = 796, - [SMALL_STATE(139)] = 848, - [SMALL_STATE(140)] = 898, - [SMALL_STATE(141)] = 950, - [SMALL_STATE(142)] = 1002, - [SMALL_STATE(143)] = 1054, - [SMALL_STATE(144)] = 1102, - [SMALL_STATE(145)] = 1150, - [SMALL_STATE(146)] = 1202, - [SMALL_STATE(147)] = 1254, - [SMALL_STATE(148)] = 1302, - [SMALL_STATE(149)] = 1350, - [SMALL_STATE(150)] = 1398, - [SMALL_STATE(151)] = 1448, - [SMALL_STATE(152)] = 1496, - [SMALL_STATE(153)] = 1548, - [SMALL_STATE(154)] = 1598, + [SMALL_STATE(123)] = 52, + [SMALL_STATE(124)] = 104, + [SMALL_STATE(125)] = 152, + [SMALL_STATE(126)] = 204, + [SMALL_STATE(127)] = 256, + [SMALL_STATE(128)] = 308, + [SMALL_STATE(129)] = 356, + [SMALL_STATE(130)] = 408, + [SMALL_STATE(131)] = 460, + [SMALL_STATE(132)] = 508, + [SMALL_STATE(133)] = 558, + [SMALL_STATE(134)] = 606, + [SMALL_STATE(135)] = 656, + [SMALL_STATE(136)] = 704, + [SMALL_STATE(137)] = 754, + [SMALL_STATE(138)] = 802, + [SMALL_STATE(139)] = 852, + [SMALL_STATE(140)] = 900, + [SMALL_STATE(141)] = 952, + [SMALL_STATE(142)] = 1000, + [SMALL_STATE(143)] = 1048, + [SMALL_STATE(144)] = 1096, + [SMALL_STATE(145)] = 1148, + [SMALL_STATE(146)] = 1196, + [SMALL_STATE(147)] = 1246, + [SMALL_STATE(148)] = 1294, + [SMALL_STATE(149)] = 1344, + [SMALL_STATE(150)] = 1394, + [SMALL_STATE(151)] = 1446, + [SMALL_STATE(152)] = 1498, + [SMALL_STATE(153)] = 1546, + [SMALL_STATE(154)] = 1594, [SMALL_STATE(155)] = 1646, [SMALL_STATE(156)] = 1696, - [SMALL_STATE(157)] = 1744, - [SMALL_STATE(158)] = 1796, - [SMALL_STATE(159)] = 1844, + [SMALL_STATE(157)] = 1746, + [SMALL_STATE(158)] = 1798, + [SMALL_STATE(159)] = 1846, [SMALL_STATE(160)] = 1894, - [SMALL_STATE(161)] = 1942, - [SMALL_STATE(162)] = 1994, - [SMALL_STATE(163)] = 2042, - [SMALL_STATE(164)] = 2090, + [SMALL_STATE(161)] = 1946, + [SMALL_STATE(162)] = 1998, + [SMALL_STATE(163)] = 2046, + [SMALL_STATE(164)] = 2094, [SMALL_STATE(165)] = 2142, [SMALL_STATE(166)] = 2194, - [SMALL_STATE(167)] = 2242, - [SMALL_STATE(168)] = 2292, - [SMALL_STATE(169)] = 2344, - [SMALL_STATE(170)] = 2396, - [SMALL_STATE(171)] = 2448, + [SMALL_STATE(167)] = 2246, + [SMALL_STATE(168)] = 2298, + [SMALL_STATE(169)] = 2350, + [SMALL_STATE(170)] = 2402, + [SMALL_STATE(171)] = 2450, [SMALL_STATE(172)] = 2500, - [SMALL_STATE(173)] = 2547, - [SMALL_STATE(174)] = 2594, + [SMALL_STATE(173)] = 2545, + [SMALL_STATE(174)] = 2592, [SMALL_STATE(175)] = 2639, - [SMALL_STATE(176)] = 2684, + [SMALL_STATE(176)] = 2686, [SMALL_STATE(177)] = 2731, - [SMALL_STATE(178)] = 2778, - [SMALL_STATE(179)] = 2825, - [SMALL_STATE(180)] = 2872, - [SMALL_STATE(181)] = 2915, - [SMALL_STATE(182)] = 2958, - [SMALL_STATE(183)] = 3005, - [SMALL_STATE(184)] = 3052, - [SMALL_STATE(185)] = 3097, - [SMALL_STATE(186)] = 3144, - [SMALL_STATE(187)] = 3187, - [SMALL_STATE(188)] = 3230, - [SMALL_STATE(189)] = 3277, - [SMALL_STATE(190)] = 3324, - [SMALL_STATE(191)] = 3371, - [SMALL_STATE(192)] = 3416, - [SMALL_STATE(193)] = 3463, - [SMALL_STATE(194)] = 3510, - [SMALL_STATE(195)] = 3557, - [SMALL_STATE(196)] = 3604, - [SMALL_STATE(197)] = 3649, - [SMALL_STATE(198)] = 3696, - [SMALL_STATE(199)] = 3743, - [SMALL_STATE(200)] = 3790, - [SMALL_STATE(201)] = 3835, - [SMALL_STATE(202)] = 3882, - [SMALL_STATE(203)] = 3929, - [SMALL_STATE(204)] = 3972, - [SMALL_STATE(205)] = 4019, - [SMALL_STATE(206)] = 4062, - [SMALL_STATE(207)] = 4109, - [SMALL_STATE(208)] = 4156, - [SMALL_STATE(209)] = 4201, - [SMALL_STATE(210)] = 4244, - [SMALL_STATE(211)] = 4289, - [SMALL_STATE(212)] = 4332, - [SMALL_STATE(213)] = 4375, - [SMALL_STATE(214)] = 4418, - [SMALL_STATE(215)] = 4465, - [SMALL_STATE(216)] = 4512, - [SMALL_STATE(217)] = 4559, - [SMALL_STATE(218)] = 4604, - [SMALL_STATE(219)] = 4649, - [SMALL_STATE(220)] = 4696, - [SMALL_STATE(221)] = 4743, - [SMALL_STATE(222)] = 4790, - [SMALL_STATE(223)] = 4832, - [SMALL_STATE(224)] = 4874, - [SMALL_STATE(225)] = 4916, - [SMALL_STATE(226)] = 4958, - [SMALL_STATE(227)] = 5000, - [SMALL_STATE(228)] = 5042, - [SMALL_STATE(229)] = 5084, - [SMALL_STATE(230)] = 5126, - [SMALL_STATE(231)] = 5168, - [SMALL_STATE(232)] = 5214, - [SMALL_STATE(233)] = 5256, - [SMALL_STATE(234)] = 5298, - [SMALL_STATE(235)] = 5340, - [SMALL_STATE(236)] = 5382, - [SMALL_STATE(237)] = 5424, - [SMALL_STATE(238)] = 5466, - [SMALL_STATE(239)] = 5508, - [SMALL_STATE(240)] = 5554, - [SMALL_STATE(241)] = 5600, - [SMALL_STATE(242)] = 5642, - [SMALL_STATE(243)] = 5684, - [SMALL_STATE(244)] = 5730, - [SMALL_STATE(245)] = 5772, - [SMALL_STATE(246)] = 5814, - [SMALL_STATE(247)] = 5856, - [SMALL_STATE(248)] = 5898, - [SMALL_STATE(249)] = 5940, - [SMALL_STATE(250)] = 5982, - [SMALL_STATE(251)] = 6024, - [SMALL_STATE(252)] = 6066, - [SMALL_STATE(253)] = 6108, - [SMALL_STATE(254)] = 6150, - [SMALL_STATE(255)] = 6192, - [SMALL_STATE(256)] = 6234, - [SMALL_STATE(257)] = 6276, - [SMALL_STATE(258)] = 6318, - [SMALL_STATE(259)] = 6360, - [SMALL_STATE(260)] = 6402, - [SMALL_STATE(261)] = 6444, - [SMALL_STATE(262)] = 6486, - [SMALL_STATE(263)] = 6528, - [SMALL_STATE(264)] = 6570, - [SMALL_STATE(265)] = 6612, - [SMALL_STATE(266)] = 6654, - [SMALL_STATE(267)] = 6696, - [SMALL_STATE(268)] = 6742, - [SMALL_STATE(269)] = 6784, - [SMALL_STATE(270)] = 6826, - [SMALL_STATE(271)] = 6868, - [SMALL_STATE(272)] = 6910, - [SMALL_STATE(273)] = 6952, - [SMALL_STATE(274)] = 6994, - [SMALL_STATE(275)] = 7036, - [SMALL_STATE(276)] = 7078, - [SMALL_STATE(277)] = 7124, - [SMALL_STATE(278)] = 7166, - [SMALL_STATE(279)] = 7212, - [SMALL_STATE(280)] = 7258, - [SMALL_STATE(281)] = 7300, - [SMALL_STATE(282)] = 7342, - [SMALL_STATE(283)] = 7384, - [SMALL_STATE(284)] = 7426, - [SMALL_STATE(285)] = 7468, - [SMALL_STATE(286)] = 7510, - [SMALL_STATE(287)] = 7552, - [SMALL_STATE(288)] = 7598, - [SMALL_STATE(289)] = 7640, - [SMALL_STATE(290)] = 7686, - [SMALL_STATE(291)] = 7728, - [SMALL_STATE(292)] = 7770, - [SMALL_STATE(293)] = 7816, - [SMALL_STATE(294)] = 7858, - [SMALL_STATE(295)] = 7900, - [SMALL_STATE(296)] = 7942, - [SMALL_STATE(297)] = 7984, - [SMALL_STATE(298)] = 8026, - [SMALL_STATE(299)] = 8068, - [SMALL_STATE(300)] = 8110, - [SMALL_STATE(301)] = 8152, - [SMALL_STATE(302)] = 8194, - [SMALL_STATE(303)] = 8236, - [SMALL_STATE(304)] = 8278, - [SMALL_STATE(305)] = 8324, - [SMALL_STATE(306)] = 8370, - [SMALL_STATE(307)] = 8416, - [SMALL_STATE(308)] = 8458, - [SMALL_STATE(309)] = 8500, - [SMALL_STATE(310)] = 8542, - [SMALL_STATE(311)] = 8584, - [SMALL_STATE(312)] = 8626, - [SMALL_STATE(313)] = 8668, - [SMALL_STATE(314)] = 8710, - [SMALL_STATE(315)] = 8752, - [SMALL_STATE(316)] = 8794, - [SMALL_STATE(317)] = 8836, - [SMALL_STATE(318)] = 8878, - [SMALL_STATE(319)] = 8920, - [SMALL_STATE(320)] = 8962, - [SMALL_STATE(321)] = 9004, - [SMALL_STATE(322)] = 9046, - [SMALL_STATE(323)] = 9088, - [SMALL_STATE(324)] = 9130, - [SMALL_STATE(325)] = 9172, - [SMALL_STATE(326)] = 9214, - [SMALL_STATE(327)] = 9256, - [SMALL_STATE(328)] = 9298, - [SMALL_STATE(329)] = 9340, - [SMALL_STATE(330)] = 9386, - [SMALL_STATE(331)] = 9428, - [SMALL_STATE(332)] = 9474, - [SMALL_STATE(333)] = 9516, - [SMALL_STATE(334)] = 9558, - [SMALL_STATE(335)] = 9600, - [SMALL_STATE(336)] = 9642, - [SMALL_STATE(337)] = 9684, - [SMALL_STATE(338)] = 9726, - [SMALL_STATE(339)] = 9768, - [SMALL_STATE(340)] = 9810, - [SMALL_STATE(341)] = 9852, - [SMALL_STATE(342)] = 9894, - [SMALL_STATE(343)] = 9936, - [SMALL_STATE(344)] = 9978, - [SMALL_STATE(345)] = 10020, - [SMALL_STATE(346)] = 10066, - [SMALL_STATE(347)] = 10108, - [SMALL_STATE(348)] = 10150, - [SMALL_STATE(349)] = 10192, - [SMALL_STATE(350)] = 10234, - [SMALL_STATE(351)] = 10276, - [SMALL_STATE(352)] = 10318, - [SMALL_STATE(353)] = 10360, - [SMALL_STATE(354)] = 10402, - [SMALL_STATE(355)] = 10444, - [SMALL_STATE(356)] = 10486, - [SMALL_STATE(357)] = 10528, - [SMALL_STATE(358)] = 10570, - [SMALL_STATE(359)] = 10612, - [SMALL_STATE(360)] = 10654, - [SMALL_STATE(361)] = 10696, - [SMALL_STATE(362)] = 10738, - [SMALL_STATE(363)] = 10780, - [SMALL_STATE(364)] = 10822, - [SMALL_STATE(365)] = 10864, - [SMALL_STATE(366)] = 10906, - [SMALL_STATE(367)] = 10948, - [SMALL_STATE(368)] = 10990, - [SMALL_STATE(369)] = 11032, - [SMALL_STATE(370)] = 11074, - [SMALL_STATE(371)] = 11116, - [SMALL_STATE(372)] = 11158, - [SMALL_STATE(373)] = 11200, - [SMALL_STATE(374)] = 11242, - [SMALL_STATE(375)] = 11284, - [SMALL_STATE(376)] = 11326, - [SMALL_STATE(377)] = 11368, - [SMALL_STATE(378)] = 11410, - [SMALL_STATE(379)] = 11452, - [SMALL_STATE(380)] = 11494, - [SMALL_STATE(381)] = 11536, - [SMALL_STATE(382)] = 11578, - [SMALL_STATE(383)] = 11624, - [SMALL_STATE(384)] = 11666, - [SMALL_STATE(385)] = 11712, - [SMALL_STATE(386)] = 11754, - [SMALL_STATE(387)] = 11796, - [SMALL_STATE(388)] = 11838, - [SMALL_STATE(389)] = 11880, - [SMALL_STATE(390)] = 11922, - [SMALL_STATE(391)] = 11964, - [SMALL_STATE(392)] = 12010, - [SMALL_STATE(393)] = 12052, - [SMALL_STATE(394)] = 12094, - [SMALL_STATE(395)] = 12140, - [SMALL_STATE(396)] = 12186, - [SMALL_STATE(397)] = 12228, - [SMALL_STATE(398)] = 12270, - [SMALL_STATE(399)] = 12316, - [SMALL_STATE(400)] = 12358, - [SMALL_STATE(401)] = 12400, - [SMALL_STATE(402)] = 12442, - [SMALL_STATE(403)] = 12484, - [SMALL_STATE(404)] = 12526, - [SMALL_STATE(405)] = 12568, - [SMALL_STATE(406)] = 12610, - [SMALL_STATE(407)] = 12652, - [SMALL_STATE(408)] = 12694, - [SMALL_STATE(409)] = 12736, - [SMALL_STATE(410)] = 12778, - [SMALL_STATE(411)] = 12820, - [SMALL_STATE(412)] = 12862, - [SMALL_STATE(413)] = 12904, - [SMALL_STATE(414)] = 12946, - [SMALL_STATE(415)] = 12988, - [SMALL_STATE(416)] = 13030, - [SMALL_STATE(417)] = 13072, - [SMALL_STATE(418)] = 13114, - [SMALL_STATE(419)] = 13156, - [SMALL_STATE(420)] = 13198, - [SMALL_STATE(421)] = 13240, - [SMALL_STATE(422)] = 13282, - [SMALL_STATE(423)] = 13324, - [SMALL_STATE(424)] = 13366, - [SMALL_STATE(425)] = 13408, - [SMALL_STATE(426)] = 13450, - [SMALL_STATE(427)] = 13492, - [SMALL_STATE(428)] = 13534, - [SMALL_STATE(429)] = 13576, - [SMALL_STATE(430)] = 13618, - [SMALL_STATE(431)] = 13660, - [SMALL_STATE(432)] = 13702, - [SMALL_STATE(433)] = 13744, - [SMALL_STATE(434)] = 13786, - [SMALL_STATE(435)] = 13828, - [SMALL_STATE(436)] = 13874, - [SMALL_STATE(437)] = 13916, - [SMALL_STATE(438)] = 13962, - [SMALL_STATE(439)] = 14004, - [SMALL_STATE(440)] = 14046, - [SMALL_STATE(441)] = 14088, - [SMALL_STATE(442)] = 14130, - [SMALL_STATE(443)] = 14172, - [SMALL_STATE(444)] = 14214, - [SMALL_STATE(445)] = 14256, - [SMALL_STATE(446)] = 14298, - [SMALL_STATE(447)] = 14340, - [SMALL_STATE(448)] = 14382, - [SMALL_STATE(449)] = 14424, - [SMALL_STATE(450)] = 14466, - [SMALL_STATE(451)] = 14508, - [SMALL_STATE(452)] = 14554, - [SMALL_STATE(453)] = 14596, - [SMALL_STATE(454)] = 14638, - [SMALL_STATE(455)] = 14680, - [SMALL_STATE(456)] = 14722, - [SMALL_STATE(457)] = 14764, - [SMALL_STATE(458)] = 14806, - [SMALL_STATE(459)] = 14848, - [SMALL_STATE(460)] = 14890, - [SMALL_STATE(461)] = 14932, - [SMALL_STATE(462)] = 14974, - [SMALL_STATE(463)] = 15016, - [SMALL_STATE(464)] = 15058, - [SMALL_STATE(465)] = 15100, - [SMALL_STATE(466)] = 15142, - [SMALL_STATE(467)] = 15184, - [SMALL_STATE(468)] = 15226, - [SMALL_STATE(469)] = 15268, - [SMALL_STATE(470)] = 15310, - [SMALL_STATE(471)] = 15352, - [SMALL_STATE(472)] = 15394, - [SMALL_STATE(473)] = 15436, - [SMALL_STATE(474)] = 15478, - [SMALL_STATE(475)] = 15520, - [SMALL_STATE(476)] = 15562, - [SMALL_STATE(477)] = 15604, - [SMALL_STATE(478)] = 15646, - [SMALL_STATE(479)] = 15688, - [SMALL_STATE(480)] = 15730, - [SMALL_STATE(481)] = 15772, - [SMALL_STATE(482)] = 15814, - [SMALL_STATE(483)] = 15856, - [SMALL_STATE(484)] = 15898, - [SMALL_STATE(485)] = 15940, - [SMALL_STATE(486)] = 15982, - [SMALL_STATE(487)] = 16024, - [SMALL_STATE(488)] = 16066, - [SMALL_STATE(489)] = 16112, - [SMALL_STATE(490)] = 16154, - [SMALL_STATE(491)] = 16200, - [SMALL_STATE(492)] = 16242, - [SMALL_STATE(493)] = 16284, - [SMALL_STATE(494)] = 16326, - [SMALL_STATE(495)] = 16368, - [SMALL_STATE(496)] = 16410, - [SMALL_STATE(497)] = 16452, - [SMALL_STATE(498)] = 16494, - [SMALL_STATE(499)] = 16536, - [SMALL_STATE(500)] = 16578, - [SMALL_STATE(501)] = 16620, - [SMALL_STATE(502)] = 16662, - [SMALL_STATE(503)] = 16704, - [SMALL_STATE(504)] = 16746, - [SMALL_STATE(505)] = 16792, - [SMALL_STATE(506)] = 16834, - [SMALL_STATE(507)] = 16876, - [SMALL_STATE(508)] = 16918, - [SMALL_STATE(509)] = 16960, - [SMALL_STATE(510)] = 17002, - [SMALL_STATE(511)] = 17044, - [SMALL_STATE(512)] = 17086, - [SMALL_STATE(513)] = 17128, - [SMALL_STATE(514)] = 17170, - [SMALL_STATE(515)] = 17212, - [SMALL_STATE(516)] = 17254, - [SMALL_STATE(517)] = 17296, - [SMALL_STATE(518)] = 17338, - [SMALL_STATE(519)] = 17380, - [SMALL_STATE(520)] = 17422, - [SMALL_STATE(521)] = 17464, - [SMALL_STATE(522)] = 17506, - [SMALL_STATE(523)] = 17548, - [SMALL_STATE(524)] = 17590, - [SMALL_STATE(525)] = 17632, - [SMALL_STATE(526)] = 17674, - [SMALL_STATE(527)] = 17716, - [SMALL_STATE(528)] = 17758, - [SMALL_STATE(529)] = 17800, - [SMALL_STATE(530)] = 17842, - [SMALL_STATE(531)] = 17884, - [SMALL_STATE(532)] = 17926, - [SMALL_STATE(533)] = 17968, - [SMALL_STATE(534)] = 18010, - [SMALL_STATE(535)] = 18052, - [SMALL_STATE(536)] = 18094, - [SMALL_STATE(537)] = 18136, - [SMALL_STATE(538)] = 18178, - [SMALL_STATE(539)] = 18220, - [SMALL_STATE(540)] = 18262, - [SMALL_STATE(541)] = 18304, - [SMALL_STATE(542)] = 18350, - [SMALL_STATE(543)] = 18392, - [SMALL_STATE(544)] = 18438, - [SMALL_STATE(545)] = 18480, - [SMALL_STATE(546)] = 18522, - [SMALL_STATE(547)] = 18564, - [SMALL_STATE(548)] = 18606, - [SMALL_STATE(549)] = 18652, - [SMALL_STATE(550)] = 18694, - [SMALL_STATE(551)] = 18736, - [SMALL_STATE(552)] = 18778, - [SMALL_STATE(553)] = 18820, - [SMALL_STATE(554)] = 18862, - [SMALL_STATE(555)] = 18904, - [SMALL_STATE(556)] = 18946, - [SMALL_STATE(557)] = 18988, - [SMALL_STATE(558)] = 19034, - [SMALL_STATE(559)] = 19076, - [SMALL_STATE(560)] = 19118, - [SMALL_STATE(561)] = 19160, - [SMALL_STATE(562)] = 19202, - [SMALL_STATE(563)] = 19244, - [SMALL_STATE(564)] = 19286, - [SMALL_STATE(565)] = 19328, - [SMALL_STATE(566)] = 19369, - [SMALL_STATE(567)] = 19410, - [SMALL_STATE(568)] = 19451, - [SMALL_STATE(569)] = 19492, - [SMALL_STATE(570)] = 19533, - [SMALL_STATE(571)] = 19574, - [SMALL_STATE(572)] = 19615, - [SMALL_STATE(573)] = 19656, - [SMALL_STATE(574)] = 19697, - [SMALL_STATE(575)] = 19738, - [SMALL_STATE(576)] = 19779, - [SMALL_STATE(577)] = 19820, - [SMALL_STATE(578)] = 19861, - [SMALL_STATE(579)] = 19902, - [SMALL_STATE(580)] = 19943, - [SMALL_STATE(581)] = 19984, - [SMALL_STATE(582)] = 20025, - [SMALL_STATE(583)] = 20066, - [SMALL_STATE(584)] = 20107, - [SMALL_STATE(585)] = 20148, - [SMALL_STATE(586)] = 20189, - [SMALL_STATE(587)] = 20230, - [SMALL_STATE(588)] = 20271, - [SMALL_STATE(589)] = 20312, - [SMALL_STATE(590)] = 20353, - [SMALL_STATE(591)] = 20394, - [SMALL_STATE(592)] = 20435, - [SMALL_STATE(593)] = 20476, - [SMALL_STATE(594)] = 20517, - [SMALL_STATE(595)] = 20558, - [SMALL_STATE(596)] = 20589, - [SMALL_STATE(597)] = 20620, - [SMALL_STATE(598)] = 20651, - [SMALL_STATE(599)] = 20682, - [SMALL_STATE(600)] = 20713, - [SMALL_STATE(601)] = 20744, - [SMALL_STATE(602)] = 20775, - [SMALL_STATE(603)] = 20806, - [SMALL_STATE(604)] = 20837, - [SMALL_STATE(605)] = 20868, - [SMALL_STATE(606)] = 20899, - [SMALL_STATE(607)] = 20930, - [SMALL_STATE(608)] = 20961, - [SMALL_STATE(609)] = 20992, - [SMALL_STATE(610)] = 21023, - [SMALL_STATE(611)] = 21054, - [SMALL_STATE(612)] = 21085, - [SMALL_STATE(613)] = 21116, - [SMALL_STATE(614)] = 21147, - [SMALL_STATE(615)] = 21178, - [SMALL_STATE(616)] = 21209, - [SMALL_STATE(617)] = 21240, - [SMALL_STATE(618)] = 21271, - [SMALL_STATE(619)] = 21302, - [SMALL_STATE(620)] = 21333, - [SMALL_STATE(621)] = 21364, - [SMALL_STATE(622)] = 21395, - [SMALL_STATE(623)] = 21426, - [SMALL_STATE(624)] = 21457, - [SMALL_STATE(625)] = 21488, - [SMALL_STATE(626)] = 21519, - [SMALL_STATE(627)] = 21550, - [SMALL_STATE(628)] = 21581, - [SMALL_STATE(629)] = 21612, - [SMALL_STATE(630)] = 21643, - [SMALL_STATE(631)] = 21674, - [SMALL_STATE(632)] = 21705, - [SMALL_STATE(633)] = 21736, - [SMALL_STATE(634)] = 21767, - [SMALL_STATE(635)] = 21798, - [SMALL_STATE(636)] = 21829, - [SMALL_STATE(637)] = 21839, - [SMALL_STATE(638)] = 21849, - [SMALL_STATE(639)] = 21859, - [SMALL_STATE(640)] = 21869, - [SMALL_STATE(641)] = 21879, - [SMALL_STATE(642)] = 21889, - [SMALL_STATE(643)] = 21899, - [SMALL_STATE(644)] = 21909, - [SMALL_STATE(645)] = 21919, - [SMALL_STATE(646)] = 21933, - [SMALL_STATE(647)] = 21949, - [SMALL_STATE(648)] = 21965, - [SMALL_STATE(649)] = 21981, - [SMALL_STATE(650)] = 21995, - [SMALL_STATE(651)] = 22011, - [SMALL_STATE(652)] = 22027, - [SMALL_STATE(653)] = 22041, - [SMALL_STATE(654)] = 22057, - [SMALL_STATE(655)] = 22069, - [SMALL_STATE(656)] = 22085, - [SMALL_STATE(657)] = 22101, - [SMALL_STATE(658)] = 22117, - [SMALL_STATE(659)] = 22131, - [SMALL_STATE(660)] = 22145, - [SMALL_STATE(661)] = 22161, - [SMALL_STATE(662)] = 22177, - [SMALL_STATE(663)] = 22191, - [SMALL_STATE(664)] = 22207, - [SMALL_STATE(665)] = 22223, - [SMALL_STATE(666)] = 22237, - [SMALL_STATE(667)] = 22253, - [SMALL_STATE(668)] = 22269, - [SMALL_STATE(669)] = 22281, - [SMALL_STATE(670)] = 22297, - [SMALL_STATE(671)] = 22311, - [SMALL_STATE(672)] = 22327, - [SMALL_STATE(673)] = 22343, - [SMALL_STATE(674)] = 22357, - [SMALL_STATE(675)] = 22369, - [SMALL_STATE(676)] = 22383, - [SMALL_STATE(677)] = 22399, - [SMALL_STATE(678)] = 22415, - [SMALL_STATE(679)] = 22422, - [SMALL_STATE(680)] = 22432, - [SMALL_STATE(681)] = 22442, - [SMALL_STATE(682)] = 22452, - [SMALL_STATE(683)] = 22462, - [SMALL_STATE(684)] = 22472, - [SMALL_STATE(685)] = 22482, - [SMALL_STATE(686)] = 22492, - [SMALL_STATE(687)] = 22502, - [SMALL_STATE(688)] = 22512, - [SMALL_STATE(689)] = 22522, - [SMALL_STATE(690)] = 22532, - [SMALL_STATE(691)] = 22542, - [SMALL_STATE(692)] = 22552, - [SMALL_STATE(693)] = 22562, - [SMALL_STATE(694)] = 22572, - [SMALL_STATE(695)] = 22582, - [SMALL_STATE(696)] = 22592, - [SMALL_STATE(697)] = 22600, - [SMALL_STATE(698)] = 22610, - [SMALL_STATE(699)] = 22620, - [SMALL_STATE(700)] = 22630, - [SMALL_STATE(701)] = 22640, - [SMALL_STATE(702)] = 22648, - [SMALL_STATE(703)] = 22655, - [SMALL_STATE(704)] = 22662, - [SMALL_STATE(705)] = 22669, - [SMALL_STATE(706)] = 22676, - [SMALL_STATE(707)] = 22683, - [SMALL_STATE(708)] = 22690, - [SMALL_STATE(709)] = 22697, - [SMALL_STATE(710)] = 22704, - [SMALL_STATE(711)] = 22711, - [SMALL_STATE(712)] = 22718, - [SMALL_STATE(713)] = 22725, - [SMALL_STATE(714)] = 22732, - [SMALL_STATE(715)] = 22739, - [SMALL_STATE(716)] = 22746, - [SMALL_STATE(717)] = 22753, - [SMALL_STATE(718)] = 22760, - [SMALL_STATE(719)] = 22767, - [SMALL_STATE(720)] = 22774, - [SMALL_STATE(721)] = 22781, - [SMALL_STATE(722)] = 22788, - [SMALL_STATE(723)] = 22795, - [SMALL_STATE(724)] = 22802, - [SMALL_STATE(725)] = 22809, - [SMALL_STATE(726)] = 22816, - [SMALL_STATE(727)] = 22823, - [SMALL_STATE(728)] = 22830, - [SMALL_STATE(729)] = 22837, - [SMALL_STATE(730)] = 22844, - [SMALL_STATE(731)] = 22851, - [SMALL_STATE(732)] = 22858, - [SMALL_STATE(733)] = 22865, - [SMALL_STATE(734)] = 22872, - [SMALL_STATE(735)] = 22879, - [SMALL_STATE(736)] = 22886, - [SMALL_STATE(737)] = 22893, - [SMALL_STATE(738)] = 22900, - [SMALL_STATE(739)] = 22907, - [SMALL_STATE(740)] = 22914, - [SMALL_STATE(741)] = 22921, - [SMALL_STATE(742)] = 22928, - [SMALL_STATE(743)] = 22935, - [SMALL_STATE(744)] = 22942, - [SMALL_STATE(745)] = 22949, - [SMALL_STATE(746)] = 22956, - [SMALL_STATE(747)] = 22963, - [SMALL_STATE(748)] = 22970, - [SMALL_STATE(749)] = 22977, - [SMALL_STATE(750)] = 22984, - [SMALL_STATE(751)] = 22991, - [SMALL_STATE(752)] = 22998, - [SMALL_STATE(753)] = 23005, - [SMALL_STATE(754)] = 23009, - [SMALL_STATE(755)] = 23013, - [SMALL_STATE(756)] = 23017, - [SMALL_STATE(757)] = 23021, - [SMALL_STATE(758)] = 23025, - [SMALL_STATE(759)] = 23029, - [SMALL_STATE(760)] = 23033, - [SMALL_STATE(761)] = 23037, - [SMALL_STATE(762)] = 23041, - [SMALL_STATE(763)] = 23045, - [SMALL_STATE(764)] = 23049, - [SMALL_STATE(765)] = 23053, - [SMALL_STATE(766)] = 23057, - [SMALL_STATE(767)] = 23061, - [SMALL_STATE(768)] = 23065, - [SMALL_STATE(769)] = 23069, - [SMALL_STATE(770)] = 23073, - [SMALL_STATE(771)] = 23077, - [SMALL_STATE(772)] = 23081, - [SMALL_STATE(773)] = 23085, - [SMALL_STATE(774)] = 23089, - [SMALL_STATE(775)] = 23093, - [SMALL_STATE(776)] = 23097, - [SMALL_STATE(777)] = 23101, - [SMALL_STATE(778)] = 23105, - [SMALL_STATE(779)] = 23109, - [SMALL_STATE(780)] = 23113, - [SMALL_STATE(781)] = 23117, - [SMALL_STATE(782)] = 23121, - [SMALL_STATE(783)] = 23125, - [SMALL_STATE(784)] = 23129, - [SMALL_STATE(785)] = 23133, - [SMALL_STATE(786)] = 23137, - [SMALL_STATE(787)] = 23141, - [SMALL_STATE(788)] = 23145, - [SMALL_STATE(789)] = 23149, - [SMALL_STATE(790)] = 23153, - [SMALL_STATE(791)] = 23157, - [SMALL_STATE(792)] = 23161, - [SMALL_STATE(793)] = 23165, - [SMALL_STATE(794)] = 23169, - [SMALL_STATE(795)] = 23173, - [SMALL_STATE(796)] = 23177, - [SMALL_STATE(797)] = 23181, - [SMALL_STATE(798)] = 23185, - [SMALL_STATE(799)] = 23189, - [SMALL_STATE(800)] = 23193, - [SMALL_STATE(801)] = 23197, - [SMALL_STATE(802)] = 23201, - [SMALL_STATE(803)] = 23205, - [SMALL_STATE(804)] = 23209, - [SMALL_STATE(805)] = 23213, - [SMALL_STATE(806)] = 23217, - [SMALL_STATE(807)] = 23221, - [SMALL_STATE(808)] = 23225, - [SMALL_STATE(809)] = 23229, - [SMALL_STATE(810)] = 23233, - [SMALL_STATE(811)] = 23237, - [SMALL_STATE(812)] = 23241, - [SMALL_STATE(813)] = 23245, - [SMALL_STATE(814)] = 23249, - [SMALL_STATE(815)] = 23253, - [SMALL_STATE(816)] = 23257, - [SMALL_STATE(817)] = 23261, - [SMALL_STATE(818)] = 23265, - [SMALL_STATE(819)] = 23269, - [SMALL_STATE(820)] = 23273, - [SMALL_STATE(821)] = 23277, - [SMALL_STATE(822)] = 23281, - [SMALL_STATE(823)] = 23285, - [SMALL_STATE(824)] = 23289, - [SMALL_STATE(825)] = 23293, - [SMALL_STATE(826)] = 23297, - [SMALL_STATE(827)] = 23301, - [SMALL_STATE(828)] = 23305, - [SMALL_STATE(829)] = 23309, - [SMALL_STATE(830)] = 23313, - [SMALL_STATE(831)] = 23317, - [SMALL_STATE(832)] = 23321, - [SMALL_STATE(833)] = 23325, - [SMALL_STATE(834)] = 23329, - [SMALL_STATE(835)] = 23333, - [SMALL_STATE(836)] = 23337, - [SMALL_STATE(837)] = 23341, - [SMALL_STATE(838)] = 23345, - [SMALL_STATE(839)] = 23349, - [SMALL_STATE(840)] = 23353, - [SMALL_STATE(841)] = 23357, - [SMALL_STATE(842)] = 23361, - [SMALL_STATE(843)] = 23365, - [SMALL_STATE(844)] = 23369, - [SMALL_STATE(845)] = 23373, - [SMALL_STATE(846)] = 23377, - [SMALL_STATE(847)] = 23381, - [SMALL_STATE(848)] = 23385, - [SMALL_STATE(849)] = 23389, - [SMALL_STATE(850)] = 23393, - [SMALL_STATE(851)] = 23397, - [SMALL_STATE(852)] = 23401, - [SMALL_STATE(853)] = 23405, - [SMALL_STATE(854)] = 23409, - [SMALL_STATE(855)] = 23413, - [SMALL_STATE(856)] = 23417, - [SMALL_STATE(857)] = 23421, - [SMALL_STATE(858)] = 23425, - [SMALL_STATE(859)] = 23429, - [SMALL_STATE(860)] = 23433, - [SMALL_STATE(861)] = 23437, - [SMALL_STATE(862)] = 23441, - [SMALL_STATE(863)] = 23445, - [SMALL_STATE(864)] = 23449, - [SMALL_STATE(865)] = 23453, - [SMALL_STATE(866)] = 23457, - [SMALL_STATE(867)] = 23461, - [SMALL_STATE(868)] = 23465, - [SMALL_STATE(869)] = 23469, - [SMALL_STATE(870)] = 23473, - [SMALL_STATE(871)] = 23477, - [SMALL_STATE(872)] = 23481, - [SMALL_STATE(873)] = 23485, - [SMALL_STATE(874)] = 23489, - [SMALL_STATE(875)] = 23493, - [SMALL_STATE(876)] = 23497, - [SMALL_STATE(877)] = 23501, - [SMALL_STATE(878)] = 23505, - [SMALL_STATE(879)] = 23509, - [SMALL_STATE(880)] = 23513, - [SMALL_STATE(881)] = 23517, - [SMALL_STATE(882)] = 23521, - [SMALL_STATE(883)] = 23525, - [SMALL_STATE(884)] = 23529, - [SMALL_STATE(885)] = 23533, - [SMALL_STATE(886)] = 23537, - [SMALL_STATE(887)] = 23541, - [SMALL_STATE(888)] = 23545, - [SMALL_STATE(889)] = 23549, - [SMALL_STATE(890)] = 23553, - [SMALL_STATE(891)] = 23557, - [SMALL_STATE(892)] = 23561, - [SMALL_STATE(893)] = 23565, - [SMALL_STATE(894)] = 23569, - [SMALL_STATE(895)] = 23573, - [SMALL_STATE(896)] = 23577, - [SMALL_STATE(897)] = 23581, - [SMALL_STATE(898)] = 23585, - [SMALL_STATE(899)] = 23589, - [SMALL_STATE(900)] = 23593, - [SMALL_STATE(901)] = 23597, - [SMALL_STATE(902)] = 23601, - [SMALL_STATE(903)] = 23605, - [SMALL_STATE(904)] = 23609, - [SMALL_STATE(905)] = 23613, - [SMALL_STATE(906)] = 23617, - [SMALL_STATE(907)] = 23621, - [SMALL_STATE(908)] = 23625, - [SMALL_STATE(909)] = 23629, - [SMALL_STATE(910)] = 23633, - [SMALL_STATE(911)] = 23637, - [SMALL_STATE(912)] = 23641, + [SMALL_STATE(178)] = 2776, + [SMALL_STATE(179)] = 2823, + [SMALL_STATE(180)] = 2870, + [SMALL_STATE(181)] = 2917, + [SMALL_STATE(182)] = 2964, + [SMALL_STATE(183)] = 3011, + [SMALL_STATE(184)] = 3058, + [SMALL_STATE(185)] = 3103, + [SMALL_STATE(186)] = 3150, + [SMALL_STATE(187)] = 3195, + [SMALL_STATE(188)] = 3240, + [SMALL_STATE(189)] = 3285, + [SMALL_STATE(190)] = 3332, + [SMALL_STATE(191)] = 3379, + [SMALL_STATE(192)] = 3426, + [SMALL_STATE(193)] = 3473, + [SMALL_STATE(194)] = 3520, + [SMALL_STATE(195)] = 3565, + [SMALL_STATE(196)] = 3612, + [SMALL_STATE(197)] = 3657, + [SMALL_STATE(198)] = 3704, + [SMALL_STATE(199)] = 3751, + [SMALL_STATE(200)] = 3798, + [SMALL_STATE(201)] = 3845, + [SMALL_STATE(202)] = 3890, + [SMALL_STATE(203)] = 3932, + [SMALL_STATE(204)] = 3978, + [SMALL_STATE(205)] = 4020, + [SMALL_STATE(206)] = 4066, + [SMALL_STATE(207)] = 4108, + [SMALL_STATE(208)] = 4154, + [SMALL_STATE(209)] = 4196, + [SMALL_STATE(210)] = 4238, + [SMALL_STATE(211)] = 4280, + [SMALL_STATE(212)] = 4322, + [SMALL_STATE(213)] = 4364, + [SMALL_STATE(214)] = 4406, + [SMALL_STATE(215)] = 4448, + [SMALL_STATE(216)] = 4494, + [SMALL_STATE(217)] = 4536, + [SMALL_STATE(218)] = 4578, + [SMALL_STATE(219)] = 4620, + [SMALL_STATE(220)] = 4662, + [SMALL_STATE(221)] = 4704, + [SMALL_STATE(222)] = 4746, + [SMALL_STATE(223)] = 4788, + [SMALL_STATE(224)] = 4830, + [SMALL_STATE(225)] = 4872, + [SMALL_STATE(226)] = 4914, + [SMALL_STATE(227)] = 4956, + [SMALL_STATE(228)] = 4998, + [SMALL_STATE(229)] = 5042, + [SMALL_STATE(230)] = 5084, + [SMALL_STATE(231)] = 5126, + [SMALL_STATE(232)] = 5168, + [SMALL_STATE(233)] = 5210, + [SMALL_STATE(234)] = 5252, + [SMALL_STATE(235)] = 5294, + [SMALL_STATE(236)] = 5340, + [SMALL_STATE(237)] = 5386, + [SMALL_STATE(238)] = 5430, + [SMALL_STATE(239)] = 5472, + [SMALL_STATE(240)] = 5514, + [SMALL_STATE(241)] = 5560, + [SMALL_STATE(242)] = 5602, + [SMALL_STATE(243)] = 5644, + [SMALL_STATE(244)] = 5686, + [SMALL_STATE(245)] = 5728, + [SMALL_STATE(246)] = 5770, + [SMALL_STATE(247)] = 5812, + [SMALL_STATE(248)] = 5854, + [SMALL_STATE(249)] = 5896, + [SMALL_STATE(250)] = 5938, + [SMALL_STATE(251)] = 5980, + [SMALL_STATE(252)] = 6022, + [SMALL_STATE(253)] = 6064, + [SMALL_STATE(254)] = 6106, + [SMALL_STATE(255)] = 6148, + [SMALL_STATE(256)] = 6190, + [SMALL_STATE(257)] = 6232, + [SMALL_STATE(258)] = 6274, + [SMALL_STATE(259)] = 6316, + [SMALL_STATE(260)] = 6358, + [SMALL_STATE(261)] = 6400, + [SMALL_STATE(262)] = 6442, + [SMALL_STATE(263)] = 6484, + [SMALL_STATE(264)] = 6530, + [SMALL_STATE(265)] = 6572, + [SMALL_STATE(266)] = 6614, + [SMALL_STATE(267)] = 6656, + [SMALL_STATE(268)] = 6698, + [SMALL_STATE(269)] = 6740, + [SMALL_STATE(270)] = 6782, + [SMALL_STATE(271)] = 6824, + [SMALL_STATE(272)] = 6870, + [SMALL_STATE(273)] = 6914, + [SMALL_STATE(274)] = 6960, + [SMALL_STATE(275)] = 7006, + [SMALL_STATE(276)] = 7052, + [SMALL_STATE(277)] = 7094, + [SMALL_STATE(278)] = 7136, + [SMALL_STATE(279)] = 7178, + [SMALL_STATE(280)] = 7220, + [SMALL_STATE(281)] = 7262, + [SMALL_STATE(282)] = 7304, + [SMALL_STATE(283)] = 7350, + [SMALL_STATE(284)] = 7392, + [SMALL_STATE(285)] = 7436, + [SMALL_STATE(286)] = 7478, + [SMALL_STATE(287)] = 7520, + [SMALL_STATE(288)] = 7566, + [SMALL_STATE(289)] = 7608, + [SMALL_STATE(290)] = 7650, + [SMALL_STATE(291)] = 7692, + [SMALL_STATE(292)] = 7738, + [SMALL_STATE(293)] = 7780, + [SMALL_STATE(294)] = 7822, + [SMALL_STATE(295)] = 7864, + [SMALL_STATE(296)] = 7906, + [SMALL_STATE(297)] = 7948, + [SMALL_STATE(298)] = 7990, + [SMALL_STATE(299)] = 8032, + [SMALL_STATE(300)] = 8074, + [SMALL_STATE(301)] = 8116, + [SMALL_STATE(302)] = 8158, + [SMALL_STATE(303)] = 8200, + [SMALL_STATE(304)] = 8242, + [SMALL_STATE(305)] = 8284, + [SMALL_STATE(306)] = 8326, + [SMALL_STATE(307)] = 8368, + [SMALL_STATE(308)] = 8410, + [SMALL_STATE(309)] = 8452, + [SMALL_STATE(310)] = 8494, + [SMALL_STATE(311)] = 8536, + [SMALL_STATE(312)] = 8578, + [SMALL_STATE(313)] = 8620, + [SMALL_STATE(314)] = 8662, + [SMALL_STATE(315)] = 8704, + [SMALL_STATE(316)] = 8746, + [SMALL_STATE(317)] = 8788, + [SMALL_STATE(318)] = 8830, + [SMALL_STATE(319)] = 8872, + [SMALL_STATE(320)] = 8914, + [SMALL_STATE(321)] = 8956, + [SMALL_STATE(322)] = 8998, + [SMALL_STATE(323)] = 9040, + [SMALL_STATE(324)] = 9086, + [SMALL_STATE(325)] = 9128, + [SMALL_STATE(326)] = 9174, + [SMALL_STATE(327)] = 9216, + [SMALL_STATE(328)] = 9258, + [SMALL_STATE(329)] = 9300, + [SMALL_STATE(330)] = 9342, + [SMALL_STATE(331)] = 9384, + [SMALL_STATE(332)] = 9426, + [SMALL_STATE(333)] = 9468, + [SMALL_STATE(334)] = 9510, + [SMALL_STATE(335)] = 9552, + [SMALL_STATE(336)] = 9594, + [SMALL_STATE(337)] = 9638, + [SMALL_STATE(338)] = 9680, + [SMALL_STATE(339)] = 9722, + [SMALL_STATE(340)] = 9768, + [SMALL_STATE(341)] = 9810, + [SMALL_STATE(342)] = 9852, + [SMALL_STATE(343)] = 9894, + [SMALL_STATE(344)] = 9936, + [SMALL_STATE(345)] = 9978, + [SMALL_STATE(346)] = 10020, + [SMALL_STATE(347)] = 10062, + [SMALL_STATE(348)] = 10104, + [SMALL_STATE(349)] = 10146, + [SMALL_STATE(350)] = 10188, + [SMALL_STATE(351)] = 10230, + [SMALL_STATE(352)] = 10272, + [SMALL_STATE(353)] = 10314, + [SMALL_STATE(354)] = 10360, + [SMALL_STATE(355)] = 10402, + [SMALL_STATE(356)] = 10444, + [SMALL_STATE(357)] = 10486, + [SMALL_STATE(358)] = 10528, + [SMALL_STATE(359)] = 10570, + [SMALL_STATE(360)] = 10612, + [SMALL_STATE(361)] = 10654, + [SMALL_STATE(362)] = 10696, + [SMALL_STATE(363)] = 10738, + [SMALL_STATE(364)] = 10780, + [SMALL_STATE(365)] = 10822, + [SMALL_STATE(366)] = 10864, + [SMALL_STATE(367)] = 10906, + [SMALL_STATE(368)] = 10948, + [SMALL_STATE(369)] = 10990, + [SMALL_STATE(370)] = 11032, + [SMALL_STATE(371)] = 11074, + [SMALL_STATE(372)] = 11116, + [SMALL_STATE(373)] = 11158, + [SMALL_STATE(374)] = 11200, + [SMALL_STATE(375)] = 11244, + [SMALL_STATE(376)] = 11290, + [SMALL_STATE(377)] = 11332, + [SMALL_STATE(378)] = 11378, + [SMALL_STATE(379)] = 11420, + [SMALL_STATE(380)] = 11466, + [SMALL_STATE(381)] = 11512, + [SMALL_STATE(382)] = 11554, + [SMALL_STATE(383)] = 11596, + [SMALL_STATE(384)] = 11638, + [SMALL_STATE(385)] = 11680, + [SMALL_STATE(386)] = 11722, + [SMALL_STATE(387)] = 11764, + [SMALL_STATE(388)] = 11806, + [SMALL_STATE(389)] = 11850, + [SMALL_STATE(390)] = 11892, + [SMALL_STATE(391)] = 11934, + [SMALL_STATE(392)] = 11980, + [SMALL_STATE(393)] = 12022, + [SMALL_STATE(394)] = 12064, + [SMALL_STATE(395)] = 12106, + [SMALL_STATE(396)] = 12148, + [SMALL_STATE(397)] = 12190, + [SMALL_STATE(398)] = 12232, + [SMALL_STATE(399)] = 12274, + [SMALL_STATE(400)] = 12316, + [SMALL_STATE(401)] = 12358, + [SMALL_STATE(402)] = 12400, + [SMALL_STATE(403)] = 12442, + [SMALL_STATE(404)] = 12484, + [SMALL_STATE(405)] = 12526, + [SMALL_STATE(406)] = 12568, + [SMALL_STATE(407)] = 12610, + [SMALL_STATE(408)] = 12652, + [SMALL_STATE(409)] = 12694, + [SMALL_STATE(410)] = 12736, + [SMALL_STATE(411)] = 12778, + [SMALL_STATE(412)] = 12820, + [SMALL_STATE(413)] = 12862, + [SMALL_STATE(414)] = 12904, + [SMALL_STATE(415)] = 12946, + [SMALL_STATE(416)] = 12988, + [SMALL_STATE(417)] = 13030, + [SMALL_STATE(418)] = 13072, + [SMALL_STATE(419)] = 13114, + [SMALL_STATE(420)] = 13156, + [SMALL_STATE(421)] = 13198, + [SMALL_STATE(422)] = 13240, + [SMALL_STATE(423)] = 13282, + [SMALL_STATE(424)] = 13324, + [SMALL_STATE(425)] = 13366, + [SMALL_STATE(426)] = 13408, + [SMALL_STATE(427)] = 13450, + [SMALL_STATE(428)] = 13496, + [SMALL_STATE(429)] = 13538, + [SMALL_STATE(430)] = 13584, + [SMALL_STATE(431)] = 13626, + [SMALL_STATE(432)] = 13668, + [SMALL_STATE(433)] = 13710, + [SMALL_STATE(434)] = 13752, + [SMALL_STATE(435)] = 13794, + [SMALL_STATE(436)] = 13836, + [SMALL_STATE(437)] = 13878, + [SMALL_STATE(438)] = 13920, + [SMALL_STATE(439)] = 13962, + [SMALL_STATE(440)] = 14004, + [SMALL_STATE(441)] = 14048, + [SMALL_STATE(442)] = 14090, + [SMALL_STATE(443)] = 14132, + [SMALL_STATE(444)] = 14178, + [SMALL_STATE(445)] = 14220, + [SMALL_STATE(446)] = 14262, + [SMALL_STATE(447)] = 14304, + [SMALL_STATE(448)] = 14346, + [SMALL_STATE(449)] = 14388, + [SMALL_STATE(450)] = 14430, + [SMALL_STATE(451)] = 14472, + [SMALL_STATE(452)] = 14514, + [SMALL_STATE(453)] = 14556, + [SMALL_STATE(454)] = 14598, + [SMALL_STATE(455)] = 14640, + [SMALL_STATE(456)] = 14682, + [SMALL_STATE(457)] = 14724, + [SMALL_STATE(458)] = 14766, + [SMALL_STATE(459)] = 14808, + [SMALL_STATE(460)] = 14850, + [SMALL_STATE(461)] = 14892, + [SMALL_STATE(462)] = 14934, + [SMALL_STATE(463)] = 14976, + [SMALL_STATE(464)] = 15018, + [SMALL_STATE(465)] = 15060, + [SMALL_STATE(466)] = 15102, + [SMALL_STATE(467)] = 15144, + [SMALL_STATE(468)] = 15186, + [SMALL_STATE(469)] = 15228, + [SMALL_STATE(470)] = 15270, + [SMALL_STATE(471)] = 15312, + [SMALL_STATE(472)] = 15354, + [SMALL_STATE(473)] = 15396, + [SMALL_STATE(474)] = 15438, + [SMALL_STATE(475)] = 15480, + [SMALL_STATE(476)] = 15522, + [SMALL_STATE(477)] = 15564, + [SMALL_STATE(478)] = 15606, + [SMALL_STATE(479)] = 15648, + [SMALL_STATE(480)] = 15694, + [SMALL_STATE(481)] = 15736, + [SMALL_STATE(482)] = 15782, + [SMALL_STATE(483)] = 15824, + [SMALL_STATE(484)] = 15866, + [SMALL_STATE(485)] = 15908, + [SMALL_STATE(486)] = 15950, + [SMALL_STATE(487)] = 15992, + [SMALL_STATE(488)] = 16034, + [SMALL_STATE(489)] = 16076, + [SMALL_STATE(490)] = 16118, + [SMALL_STATE(491)] = 16160, + [SMALL_STATE(492)] = 16202, + [SMALL_STATE(493)] = 16246, + [SMALL_STATE(494)] = 16288, + [SMALL_STATE(495)] = 16330, + [SMALL_STATE(496)] = 16376, + [SMALL_STATE(497)] = 16418, + [SMALL_STATE(498)] = 16460, + [SMALL_STATE(499)] = 16502, + [SMALL_STATE(500)] = 16544, + [SMALL_STATE(501)] = 16586, + [SMALL_STATE(502)] = 16628, + [SMALL_STATE(503)] = 16670, + [SMALL_STATE(504)] = 16712, + [SMALL_STATE(505)] = 16754, + [SMALL_STATE(506)] = 16796, + [SMALL_STATE(507)] = 16838, + [SMALL_STATE(508)] = 16880, + [SMALL_STATE(509)] = 16922, + [SMALL_STATE(510)] = 16964, + [SMALL_STATE(511)] = 17006, + [SMALL_STATE(512)] = 17048, + [SMALL_STATE(513)] = 17090, + [SMALL_STATE(514)] = 17132, + [SMALL_STATE(515)] = 17174, + [SMALL_STATE(516)] = 17216, + [SMALL_STATE(517)] = 17258, + [SMALL_STATE(518)] = 17300, + [SMALL_STATE(519)] = 17342, + [SMALL_STATE(520)] = 17384, + [SMALL_STATE(521)] = 17426, + [SMALL_STATE(522)] = 17468, + [SMALL_STATE(523)] = 17510, + [SMALL_STATE(524)] = 17552, + [SMALL_STATE(525)] = 17594, + [SMALL_STATE(526)] = 17636, + [SMALL_STATE(527)] = 17678, + [SMALL_STATE(528)] = 17720, + [SMALL_STATE(529)] = 17762, + [SMALL_STATE(530)] = 17804, + [SMALL_STATE(531)] = 17846, + [SMALL_STATE(532)] = 17892, + [SMALL_STATE(533)] = 17934, + [SMALL_STATE(534)] = 17980, + [SMALL_STATE(535)] = 18022, + [SMALL_STATE(536)] = 18068, + [SMALL_STATE(537)] = 18110, + [SMALL_STATE(538)] = 18152, + [SMALL_STATE(539)] = 18194, + [SMALL_STATE(540)] = 18236, + [SMALL_STATE(541)] = 18278, + [SMALL_STATE(542)] = 18320, + [SMALL_STATE(543)] = 18362, + [SMALL_STATE(544)] = 18404, + [SMALL_STATE(545)] = 18448, + [SMALL_STATE(546)] = 18489, + [SMALL_STATE(547)] = 18530, + [SMALL_STATE(548)] = 18571, + [SMALL_STATE(549)] = 18612, + [SMALL_STATE(550)] = 18653, + [SMALL_STATE(551)] = 18694, + [SMALL_STATE(552)] = 18735, + [SMALL_STATE(553)] = 18776, + [SMALL_STATE(554)] = 18817, + [SMALL_STATE(555)] = 18858, + [SMALL_STATE(556)] = 18899, + [SMALL_STATE(557)] = 18940, + [SMALL_STATE(558)] = 18981, + [SMALL_STATE(559)] = 19022, + [SMALL_STATE(560)] = 19063, + [SMALL_STATE(561)] = 19104, + [SMALL_STATE(562)] = 19145, + [SMALL_STATE(563)] = 19186, + [SMALL_STATE(564)] = 19227, + [SMALL_STATE(565)] = 19268, + [SMALL_STATE(566)] = 19309, + [SMALL_STATE(567)] = 19350, + [SMALL_STATE(568)] = 19391, + [SMALL_STATE(569)] = 19432, + [SMALL_STATE(570)] = 19473, + [SMALL_STATE(571)] = 19514, + [SMALL_STATE(572)] = 19555, + [SMALL_STATE(573)] = 19596, + [SMALL_STATE(574)] = 19637, + [SMALL_STATE(575)] = 19678, + [SMALL_STATE(576)] = 19709, + [SMALL_STATE(577)] = 19740, + [SMALL_STATE(578)] = 19771, + [SMALL_STATE(579)] = 19802, + [SMALL_STATE(580)] = 19833, + [SMALL_STATE(581)] = 19864, + [SMALL_STATE(582)] = 19895, + [SMALL_STATE(583)] = 19926, + [SMALL_STATE(584)] = 19957, + [SMALL_STATE(585)] = 19988, + [SMALL_STATE(586)] = 20019, + [SMALL_STATE(587)] = 20050, + [SMALL_STATE(588)] = 20081, + [SMALL_STATE(589)] = 20112, + [SMALL_STATE(590)] = 20143, + [SMALL_STATE(591)] = 20174, + [SMALL_STATE(592)] = 20205, + [SMALL_STATE(593)] = 20236, + [SMALL_STATE(594)] = 20267, + [SMALL_STATE(595)] = 20298, + [SMALL_STATE(596)] = 20329, + [SMALL_STATE(597)] = 20360, + [SMALL_STATE(598)] = 20391, + [SMALL_STATE(599)] = 20422, + [SMALL_STATE(600)] = 20453, + [SMALL_STATE(601)] = 20484, + [SMALL_STATE(602)] = 20515, + [SMALL_STATE(603)] = 20546, + [SMALL_STATE(604)] = 20577, + [SMALL_STATE(605)] = 20608, + [SMALL_STATE(606)] = 20639, + [SMALL_STATE(607)] = 20670, + [SMALL_STATE(608)] = 20701, + [SMALL_STATE(609)] = 20732, + [SMALL_STATE(610)] = 20763, + [SMALL_STATE(611)] = 20794, + [SMALL_STATE(612)] = 20825, + [SMALL_STATE(613)] = 20856, + [SMALL_STATE(614)] = 20887, + [SMALL_STATE(615)] = 20918, + [SMALL_STATE(616)] = 20949, + [SMALL_STATE(617)] = 20959, + [SMALL_STATE(618)] = 20969, + [SMALL_STATE(619)] = 20979, + [SMALL_STATE(620)] = 20989, + [SMALL_STATE(621)] = 20999, + [SMALL_STATE(622)] = 21009, + [SMALL_STATE(623)] = 21019, + [SMALL_STATE(624)] = 21029, + [SMALL_STATE(625)] = 21039, + [SMALL_STATE(626)] = 21055, + [SMALL_STATE(627)] = 21071, + [SMALL_STATE(628)] = 21087, + [SMALL_STATE(629)] = 21103, + [SMALL_STATE(630)] = 21117, + [SMALL_STATE(631)] = 21133, + [SMALL_STATE(632)] = 21149, + [SMALL_STATE(633)] = 21163, + [SMALL_STATE(634)] = 21177, + [SMALL_STATE(635)] = 21193, + [SMALL_STATE(636)] = 21207, + [SMALL_STATE(637)] = 21223, + [SMALL_STATE(638)] = 21235, + [SMALL_STATE(639)] = 21249, + [SMALL_STATE(640)] = 21263, + [SMALL_STATE(641)] = 21279, + [SMALL_STATE(642)] = 21293, + [SMALL_STATE(643)] = 21309, + [SMALL_STATE(644)] = 21325, + [SMALL_STATE(645)] = 21337, + [SMALL_STATE(646)] = 21353, + [SMALL_STATE(647)] = 21369, + [SMALL_STATE(648)] = 21385, + [SMALL_STATE(649)] = 21401, + [SMALL_STATE(650)] = 21417, + [SMALL_STATE(651)] = 21431, + [SMALL_STATE(652)] = 21447, + [SMALL_STATE(653)] = 21463, + [SMALL_STATE(654)] = 21477, + [SMALL_STATE(655)] = 21493, + [SMALL_STATE(656)] = 21509, + [SMALL_STATE(657)] = 21523, + [SMALL_STATE(658)] = 21535, + [SMALL_STATE(659)] = 21542, + [SMALL_STATE(660)] = 21552, + [SMALL_STATE(661)] = 21560, + [SMALL_STATE(662)] = 21570, + [SMALL_STATE(663)] = 21580, + [SMALL_STATE(664)] = 21590, + [SMALL_STATE(665)] = 21600, + [SMALL_STATE(666)] = 21610, + [SMALL_STATE(667)] = 21620, + [SMALL_STATE(668)] = 21630, + [SMALL_STATE(669)] = 21640, + [SMALL_STATE(670)] = 21650, + [SMALL_STATE(671)] = 21658, + [SMALL_STATE(672)] = 21668, + [SMALL_STATE(673)] = 21678, + [SMALL_STATE(674)] = 21688, + [SMALL_STATE(675)] = 21698, + [SMALL_STATE(676)] = 21708, + [SMALL_STATE(677)] = 21718, + [SMALL_STATE(678)] = 21728, + [SMALL_STATE(679)] = 21738, + [SMALL_STATE(680)] = 21748, + [SMALL_STATE(681)] = 21758, + [SMALL_STATE(682)] = 21768, + [SMALL_STATE(683)] = 21775, + [SMALL_STATE(684)] = 21782, + [SMALL_STATE(685)] = 21789, + [SMALL_STATE(686)] = 21796, + [SMALL_STATE(687)] = 21803, + [SMALL_STATE(688)] = 21810, + [SMALL_STATE(689)] = 21817, + [SMALL_STATE(690)] = 21824, + [SMALL_STATE(691)] = 21831, + [SMALL_STATE(692)] = 21838, + [SMALL_STATE(693)] = 21845, + [SMALL_STATE(694)] = 21852, + [SMALL_STATE(695)] = 21859, + [SMALL_STATE(696)] = 21866, + [SMALL_STATE(697)] = 21873, + [SMALL_STATE(698)] = 21880, + [SMALL_STATE(699)] = 21887, + [SMALL_STATE(700)] = 21894, + [SMALL_STATE(701)] = 21901, + [SMALL_STATE(702)] = 21908, + [SMALL_STATE(703)] = 21915, + [SMALL_STATE(704)] = 21922, + [SMALL_STATE(705)] = 21929, + [SMALL_STATE(706)] = 21936, + [SMALL_STATE(707)] = 21943, + [SMALL_STATE(708)] = 21950, + [SMALL_STATE(709)] = 21957, + [SMALL_STATE(710)] = 21964, + [SMALL_STATE(711)] = 21971, + [SMALL_STATE(712)] = 21978, + [SMALL_STATE(713)] = 21985, + [SMALL_STATE(714)] = 21989, + [SMALL_STATE(715)] = 21993, + [SMALL_STATE(716)] = 21997, + [SMALL_STATE(717)] = 22001, + [SMALL_STATE(718)] = 22005, + [SMALL_STATE(719)] = 22009, + [SMALL_STATE(720)] = 22013, + [SMALL_STATE(721)] = 22017, + [SMALL_STATE(722)] = 22021, + [SMALL_STATE(723)] = 22025, + [SMALL_STATE(724)] = 22029, + [SMALL_STATE(725)] = 22033, + [SMALL_STATE(726)] = 22037, + [SMALL_STATE(727)] = 22041, + [SMALL_STATE(728)] = 22045, + [SMALL_STATE(729)] = 22049, + [SMALL_STATE(730)] = 22053, + [SMALL_STATE(731)] = 22057, + [SMALL_STATE(732)] = 22061, + [SMALL_STATE(733)] = 22065, + [SMALL_STATE(734)] = 22069, + [SMALL_STATE(735)] = 22073, + [SMALL_STATE(736)] = 22077, + [SMALL_STATE(737)] = 22081, + [SMALL_STATE(738)] = 22085, + [SMALL_STATE(739)] = 22089, + [SMALL_STATE(740)] = 22093, + [SMALL_STATE(741)] = 22097, + [SMALL_STATE(742)] = 22101, + [SMALL_STATE(743)] = 22105, + [SMALL_STATE(744)] = 22109, + [SMALL_STATE(745)] = 22113, + [SMALL_STATE(746)] = 22117, + [SMALL_STATE(747)] = 22121, + [SMALL_STATE(748)] = 22125, + [SMALL_STATE(749)] = 22129, + [SMALL_STATE(750)] = 22133, + [SMALL_STATE(751)] = 22137, + [SMALL_STATE(752)] = 22141, + [SMALL_STATE(753)] = 22145, + [SMALL_STATE(754)] = 22149, + [SMALL_STATE(755)] = 22153, + [SMALL_STATE(756)] = 22157, + [SMALL_STATE(757)] = 22161, + [SMALL_STATE(758)] = 22165, + [SMALL_STATE(759)] = 22169, + [SMALL_STATE(760)] = 22173, + [SMALL_STATE(761)] = 22177, + [SMALL_STATE(762)] = 22181, + [SMALL_STATE(763)] = 22185, + [SMALL_STATE(764)] = 22189, + [SMALL_STATE(765)] = 22193, + [SMALL_STATE(766)] = 22197, + [SMALL_STATE(767)] = 22201, + [SMALL_STATE(768)] = 22205, + [SMALL_STATE(769)] = 22209, + [SMALL_STATE(770)] = 22213, + [SMALL_STATE(771)] = 22217, + [SMALL_STATE(772)] = 22221, + [SMALL_STATE(773)] = 22225, + [SMALL_STATE(774)] = 22229, + [SMALL_STATE(775)] = 22233, + [SMALL_STATE(776)] = 22237, + [SMALL_STATE(777)] = 22241, + [SMALL_STATE(778)] = 22245, + [SMALL_STATE(779)] = 22249, + [SMALL_STATE(780)] = 22253, + [SMALL_STATE(781)] = 22257, + [SMALL_STATE(782)] = 22261, + [SMALL_STATE(783)] = 22265, + [SMALL_STATE(784)] = 22269, + [SMALL_STATE(785)] = 22273, + [SMALL_STATE(786)] = 22277, + [SMALL_STATE(787)] = 22281, + [SMALL_STATE(788)] = 22285, + [SMALL_STATE(789)] = 22289, + [SMALL_STATE(790)] = 22293, + [SMALL_STATE(791)] = 22297, + [SMALL_STATE(792)] = 22301, + [SMALL_STATE(793)] = 22305, + [SMALL_STATE(794)] = 22309, + [SMALL_STATE(795)] = 22313, + [SMALL_STATE(796)] = 22317, + [SMALL_STATE(797)] = 22321, + [SMALL_STATE(798)] = 22325, + [SMALL_STATE(799)] = 22329, + [SMALL_STATE(800)] = 22333, + [SMALL_STATE(801)] = 22337, + [SMALL_STATE(802)] = 22341, + [SMALL_STATE(803)] = 22345, + [SMALL_STATE(804)] = 22349, + [SMALL_STATE(805)] = 22353, + [SMALL_STATE(806)] = 22357, + [SMALL_STATE(807)] = 22361, + [SMALL_STATE(808)] = 22365, + [SMALL_STATE(809)] = 22369, + [SMALL_STATE(810)] = 22373, + [SMALL_STATE(811)] = 22377, + [SMALL_STATE(812)] = 22381, + [SMALL_STATE(813)] = 22385, + [SMALL_STATE(814)] = 22389, + [SMALL_STATE(815)] = 22393, + [SMALL_STATE(816)] = 22397, + [SMALL_STATE(817)] = 22401, + [SMALL_STATE(818)] = 22405, + [SMALL_STATE(819)] = 22409, + [SMALL_STATE(820)] = 22413, + [SMALL_STATE(821)] = 22417, + [SMALL_STATE(822)] = 22421, + [SMALL_STATE(823)] = 22425, + [SMALL_STATE(824)] = 22429, + [SMALL_STATE(825)] = 22433, + [SMALL_STATE(826)] = 22437, + [SMALL_STATE(827)] = 22441, + [SMALL_STATE(828)] = 22445, + [SMALL_STATE(829)] = 22449, + [SMALL_STATE(830)] = 22453, + [SMALL_STATE(831)] = 22457, + [SMALL_STATE(832)] = 22461, + [SMALL_STATE(833)] = 22465, + [SMALL_STATE(834)] = 22469, + [SMALL_STATE(835)] = 22473, + [SMALL_STATE(836)] = 22477, + [SMALL_STATE(837)] = 22481, + [SMALL_STATE(838)] = 22485, + [SMALL_STATE(839)] = 22489, + [SMALL_STATE(840)] = 22493, + [SMALL_STATE(841)] = 22497, + [SMALL_STATE(842)] = 22501, + [SMALL_STATE(843)] = 22505, + [SMALL_STATE(844)] = 22509, + [SMALL_STATE(845)] = 22513, + [SMALL_STATE(846)] = 22517, + [SMALL_STATE(847)] = 22521, + [SMALL_STATE(848)] = 22525, + [SMALL_STATE(849)] = 22529, + [SMALL_STATE(850)] = 22533, + [SMALL_STATE(851)] = 22537, + [SMALL_STATE(852)] = 22541, + [SMALL_STATE(853)] = 22545, + [SMALL_STATE(854)] = 22549, + [SMALL_STATE(855)] = 22553, + [SMALL_STATE(856)] = 22557, + [SMALL_STATE(857)] = 22561, + [SMALL_STATE(858)] = 22565, + [SMALL_STATE(859)] = 22569, + [SMALL_STATE(860)] = 22573, + [SMALL_STATE(861)] = 22577, + [SMALL_STATE(862)] = 22581, + [SMALL_STATE(863)] = 22585, + [SMALL_STATE(864)] = 22589, + [SMALL_STATE(865)] = 22593, + [SMALL_STATE(866)] = 22597, + [SMALL_STATE(867)] = 22601, + [SMALL_STATE(868)] = 22605, + [SMALL_STATE(869)] = 22609, + [SMALL_STATE(870)] = 22613, + [SMALL_STATE(871)] = 22617, + [SMALL_STATE(872)] = 22621, + [SMALL_STATE(873)] = 22625, + [SMALL_STATE(874)] = 22629, + [SMALL_STATE(875)] = 22633, + [SMALL_STATE(876)] = 22637, + [SMALL_STATE(877)] = 22641, + [SMALL_STATE(878)] = 22645, + [SMALL_STATE(879)] = 22649, + [SMALL_STATE(880)] = 22653, + [SMALL_STATE(881)] = 22657, + [SMALL_STATE(882)] = 22661, + [SMALL_STATE(883)] = 22665, + [SMALL_STATE(884)] = 22669, + [SMALL_STATE(885)] = 22673, + [SMALL_STATE(886)] = 22677, + [SMALL_STATE(887)] = 22681, + [SMALL_STATE(888)] = 22685, + [SMALL_STATE(889)] = 22689, + [SMALL_STATE(890)] = 22693, + [SMALL_STATE(891)] = 22697, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [49] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), - [51] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), - [53] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(142), - [56] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(382), - [59] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(141), - [62] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(384), - [65] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(803), - [68] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(206), - [71] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(206), - [74] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(210), - [77] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(31), - [80] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(29), - [83] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(28), - [86] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(27), - [89] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(38), - [92] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(131), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [97] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(25), - [100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(26), - [103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(214), - [106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(396), - [109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(397), - [112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(896), - [115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(398), - [118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(112), - [121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(126), - [124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(382), - [127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(398), - [130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(38), - [133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(384), - [136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(27), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), - [141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(165), - [144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(329), - [147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(164), - [150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(331), - [153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(850), + [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [49] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), + [51] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(127), + [54] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(375), + [57] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(126), + [60] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(377), + [63] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(718), + [66] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(200), + [69] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(200), + [72] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(201), + [75] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(20), + [78] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(21), + [81] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(22), + [84] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(23), + [87] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(24), + [90] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(24), + [93] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), + [95] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(135), + [98] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(25), + [103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(26), + [106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(388), + [109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(389), + [112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(390), + [115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(391), + [118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(103), + [121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(138), + [124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(856), + [127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(377), + [130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(391), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), + [135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(23), + [138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(375), + [141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(151), + [144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(323), + [147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(150), + [150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(325), + [153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(880), [156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(182), [159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(182), [162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(184), - [165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(43), - [168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(41), - [171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(40), - [174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(39), - [177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(11), - [180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(11), - [183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(154), - [186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(5), - [189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(37), - [192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(193), - [195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(343), - [198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(344), - [201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(345), - [204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(96), - [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(150), - [210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(136), - [213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(239), - [216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(140), - [219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(240), - [222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(802), - [225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(207), - [228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(207), - [231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(208), - [234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(48), - [237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(47), - [240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(30), - [243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(18), - [246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(16), - [249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(129), - [252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(8), - [255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(54), - [258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(219), - [261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(241), - [264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(242), - [267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(243), - [270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(98), - [273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(139), - [276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(145), - [279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(276), - [282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(146), - [285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(278), - [288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(901), - [291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(197), - [294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(197), - [297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(196), - [300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(51), - [303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(53), - [306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(55), - [309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(57), - [312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(61), - [315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(151), - [318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(9), - [321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(12), - [324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(185), - [327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(290), - [330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(291), - [333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(292), - [336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(84), - [339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(159), - [342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(169), - [345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(305), - [348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(171), - [351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(304), - [354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(792), - [357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(173), - [360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(173), + [165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(37), + [168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(31), + [171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(30), + [174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(28), + [177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(27), + [180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(139), + [183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(2), + [186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(38), + [189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(336), + [192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(337), + [195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(338), + [198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(339), + [201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(120), + [204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(136), + [207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(847), + [210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(129), + [213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(235), + [216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(154), + [219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(236), + [222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(765), + [225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(183), + [228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(183), + [231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(186), + [234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(52), + [237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(49), + [240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(47), + [243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(45), + [246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(29), + [249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(137), + [252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(9), + [255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(42), + [258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(237), + [261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(238), + [264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(239), + [267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(240), + [270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(116), + [273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(149), + [276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(829), + [279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(161), + [282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(380), + [285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(125), + [288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(379), + [291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(808), + [294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(197), + [297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(197), + [300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(194), + [303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(19), + [306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(40), + [309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(12), + [312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(51), + [315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(62), + [318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(124), + [321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(5), + [324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(70), + [327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(374), + [330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(376), + [333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(270), + [336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(353), + [339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(119), + [342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(132), + [345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(811), + [348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(166), + [351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(275), + [354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(168), + [357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(274), + [360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(794), [363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(174), - [366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(52), - [369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(67), - [372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(42), - [375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(71), - [378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(70), - [381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(163), - [384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(7), - [387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(68), - [390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(183), - [393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(294), - [396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(293), - [399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(289), - [402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(101), - [405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(155), - [408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(170), - [411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(395), - [414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(125), - [417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(394), - [420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(823), - [423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(221), - [426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(221), - [429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(217), - [432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(24), - [435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(23), - [438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(22), - [441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(21), - [444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(20), - [447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(127), - [450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(3), - [453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(19), - [456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(216), - [459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(275), - [462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(392), - [465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(391), - [468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(109), - [471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(134), - [474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(701), - [477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(395), - [480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(391), - [483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(305), - [486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(289), - [489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(239), - [492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(243), - [495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(329), - [498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(345), - [501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(61), - [504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(16), - [507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(70), - [510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(20), - [513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(394), - [516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(304), - [519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(240), - [522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(278), - [525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(292), - [528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(331), - [531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(21), - [534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(71), - [537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(18), - [540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(57), - [543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(39), - [546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(276), - [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), - [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), - [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline, 1), - [595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline, 1), - [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), - [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(161), - [604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(488), - [607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(168), - [610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(490), - [613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), - [615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(777), - [618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(178), - [621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(178), - [624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(175), - [627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(44), - [630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(45), - [633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(46), - [636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(49), - [639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(50), - [642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(147), - [645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(6), - [648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(62), - [651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(177), - [654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(502), - [657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(503), - [660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(896), - [663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(504), - [666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(74), - [669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(167), - [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), - [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), - [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(133), - [719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(306), - [722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(124), - [725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(231), - [728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(905), - [731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(220), - [734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(220), - [737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(218), - [740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(69), - [743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(65), - [746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(13), - [749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(14), - [752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(15), - [755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(128), - [758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(2), - [761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(17), - [764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(215), - [767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(245), - [770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(253), - [773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(267), - [776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(77), - [779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(130), - [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(157), - [787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(541), - [790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(152), - [793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(543), - [796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(791), - [799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(189), - [802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(189), - [805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(191), - [808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(64), - [811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(63), - [814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(60), - [817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(59), - [820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(58), - [823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(148), - [826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(10), - [829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(56), - [832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(194), - [835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(555), - [838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(556), - [841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(557), - [844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(80), - [847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(123), - [850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(169), - [853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(305), - [856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(171), - [859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(304), - [862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(792), - [865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(173), - [868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(173), - [871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(174), - [874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(52), - [877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(67), - [880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(42), - [883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(71), - [886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(70), - [889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(163), - [892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(7), - [895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(68), - [898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(183), - [901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(294), - [904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(293), - [907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(289), - [910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(81), - [913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(155), - [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), - [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), - [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), - [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), - [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), - [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [1000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [1002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [1004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(145), - [1007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(276), - [1010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(146), - [1013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(278), - [1016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(901), - [1019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(197), - [1022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(197), - [1025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(196), - [1028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(51), - [1031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(53), - [1034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(55), - [1037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(57), - [1040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(57), - [1043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(61), - [1046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(151), - [1049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(9), - [1052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(12), - [1055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(185), - [1058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(290), - [1061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(291), - [1064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(292), - [1067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(85), - [1070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(159), - [1073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(136), - [1076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(239), - [1079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(140), - [1082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(240), - [1085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(802), - [1088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(207), - [1091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(207), - [1094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(208), - [1097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(48), - [1100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(47), - [1103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(30), - [1106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(18), - [1109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(16), - [1112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(129), - [1115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(8), - [1118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(54), - [1121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(219), - [1124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(241), - [1127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(242), - [1130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(243), - [1133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(90), - [1136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(139), - [1139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(137), - [1142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(435), - [1145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(138), - [1148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(437), - [1151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(766), - [1154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(201), - [1157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(201), - [1160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(200), - [1163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(32), - [1166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(33), - [1169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(34), - [1172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(66), - [1175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(35), - [1178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(149), - [1181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(4), - [1184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(36), - [1187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(190), - [1190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(449), - [1193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(450), - [1196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(451), - [1199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(91), - [1202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(153), - [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), - [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), - [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), - [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), - [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [1297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(165), - [1300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(329), - [1303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(164), - [1306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(331), - [1309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(850), - [1312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(182), - [1315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(182), - [1318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(184), - [1321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(43), - [1324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(41), - [1327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(40), - [1330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(39), - [1333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(11), - [1336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(11), - [1339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(154), - [1342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(5), - [1345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(37), - [1348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(193), - [1351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(343), - [1354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(344), - [1357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(345), - [1360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(99), - [1363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(150), - [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), - [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [1396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), - [1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [1400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [1402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [1410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(170), - [1413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(395), - [1416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(125), - [1419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(394), - [1422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(823), - [1425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(221), - [1428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(221), - [1431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(217), - [1434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(24), - [1437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(23), - [1440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(22), - [1443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(21), - [1446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(20), - [1449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(127), - [1452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(3), - [1455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(19), - [1458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(216), - [1461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(275), - [1464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(392), - [1467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(391), - [1470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(105), - [1473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(134), - [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [1486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [1490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), - [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [1502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [1508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), - [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [1520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [1522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(142), - [1525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(382), - [1528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(141), - [1531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(384), - [1534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(803), - [1537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(206), - [1540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(206), - [1543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(210), - [1546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(31), - [1549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(29), - [1552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(28), - [1555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(27), - [1558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(38), - [1561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(131), - [1564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(25), - [1567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(26), - [1570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(214), - [1573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(396), - [1576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(397), - [1579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(398), - [1582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(111), - [1585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(126), - [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [1596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), - [1598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [1600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), - [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [1604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [1608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [1616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [1618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), - [1620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [1630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), - [1632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verbatim, 3, .production_id = 5), - [1634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verbatim, 3, .production_id = 5), - [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [1638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), - [1640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element, 1), - [1642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__element, 1), - [1644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), - [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), - [1649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_strong_begin, 1), REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), - [1652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [1654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), - [1656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), - [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [1660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), - [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), - [1665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_emphasis_begin, 1), REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), - [1668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), - [1670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [1672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), - [1674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [1678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), - [1680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), - [1682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [1686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [1688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), - [1690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [1692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), - [1698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__text, 2), - [1700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__text, 2), - [1702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(172), - [1705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), - [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), - [1709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(176), - [1712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(179), - [1715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__verbatim_end, 1), - [1717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__verbatim_end, 1), - [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), - [1721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(188), - [1724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), - [1726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(192), - [1729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(195), - [1732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), - [1734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(198), - [1737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(199), - [1740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [1742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(202), - [1745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(204), - [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), - [1750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), - [1752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), - [1754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), - [1756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collapsed_reference_image, 2), - [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collapsed_reference_image, 2), - [1760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_reference_link, 2), - [1762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_reference_link, 2), - [1764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_superscript, 3, .production_id = 2), - [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_superscript, 3, .production_id = 2), - [1768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 3, .production_id = 2), - [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 3, .production_id = 2), - [1772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_footnote_reference, 3, .production_id = 3), - [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_footnote_reference, 3, .production_id = 3), - [1776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_emphasis_end, 1), - [1778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emphasis_end, 1), - [1780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_emphasis, 3, .production_id = 2), - [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emphasis, 3, .production_id = 2), - [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strong_end, 1), - [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strong_end, 1), - [1788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strong, 3, .production_id = 2), - [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strong, 3, .production_id = 2), - [1792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_span, 4), - [1794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_span, 4), - [1796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math, 4, .production_id = 7), - [1798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math, 4, .production_id = 7), - [1800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comment, 3), - [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 3), - [1804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_label, 3, .production_id = 8), - [1806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_label, 3, .production_id = 8), - [1808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link_destination, 3), - [1810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link_destination, 3), - [1812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_inline, 4), - [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_inline, 4), - [1816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_inline_attribute, 3), - [1818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_inline_attribute, 3), - [1820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_todo, 1), - [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_todo, 1), - [1824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_note, 1), - [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note, 1), - [1828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 1), - [1830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), - [1832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(708), - [1835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hard_line_break, 2), - [1837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hard_line_break, 2), - [1839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__comment_with_spaces, 2), - [1841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_with_spaces, 2), - [1843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_reference_image, 2), - [1845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_reference_image, 2), - [1847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_image, 2), - [1849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_image, 2), - [1851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collapsed_reference_link, 2), - [1853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collapsed_reference_link, 2), - [1855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 2), - [1857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 2), - [1859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_autolink, 3), - [1861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_autolink, 3), - [1863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_highlighted, 3, .production_id = 2), - [1865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlighted, 3, .production_id = 2), - [1867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 3, .production_id = 2), - [1869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 3, .production_id = 2), - [1871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete, 3, .production_id = 2), - [1873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete, 3, .production_id = 2), - [1875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(706), - [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), - [1880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), - [1882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_emphasis_begin, 2), - [1884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strong_begin, 2), - [1886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strong_begin, 2), - [1888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(712), - [1891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(707), - [1894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_attribute, 3, .production_id = 6), - [1896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_attribute, 3, .production_id = 6), - [1898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(728), - [1901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_attribute, 2), - [1903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_attribute, 2), - [1905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(713), - [1908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(731), - [1911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(739), - [1914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(740), - [1917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_emphasis_begin_repeat1, 2), - [1919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_emphasis_begin_repeat1, 2), SHIFT_REPEAT(548), - [1922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_emphasis_begin_repeat1, 2), - [1924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(742), - [1927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element, 2), - [1929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__element, 2), - [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [1953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), - [1955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(895), - [1958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(886), - [1961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(637), - [1964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(732), - [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [2033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 3), - [2035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 1), - [2037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_name, 1), - [2039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2), - [2041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_with_newline, 3), - [2043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1), - [2045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value, 3), - [2047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_with_newline, 4, .production_id = 9), - [2049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 1, .production_id = 1), - [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [2053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_text, 3), - [2055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_text, 3), + [366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(174), + [369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(172), + [372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(67), + [375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(66), + [378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(65), + [381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(64), + [384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(63), + [387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(163), + [390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(4), + [393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(60), + [396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(272), + [399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(534), + [402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(204), + [405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(205), + [408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(77), + [411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(148), + [414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(820), + [417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(157), + [420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(271), + [423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(169), + [426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(273), + [429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(729), + [432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(175), + [435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(175), + [438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(176), + [441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(68), + [444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(71), + [447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(46), + [450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(44), + [453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(43), + [456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(159), + [459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(7), + [462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(41), + [465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(284), + [468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(285), + [471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(286), + [474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(287), + [477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(85), + [480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(156), + [483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(838), + [486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(323), + [489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(339), + [492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(670), + [495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(27), + [498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(43), + [501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(29), + [504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(63), + [507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(380), + [510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(353), + [513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(275), + [516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(205), + [519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(235), + [522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(240), + [525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(271), + [528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(287), + [531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(325), + [534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(62), + [537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(28), + [540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(44), + [543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(45), + [546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(379), + [549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(274), + [552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(236), + [555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(273), + [558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(51), + [561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(64), + [564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), + [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), + [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline, 1), + [618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline, 1), + [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), + [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), + [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), + [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(160), + [661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(479), + [664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(123), + [667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(481), + [670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), + [672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(755), + [675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(179), + [678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(179), + [681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(177), + [684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(48), + [687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(53), + [690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(59), + [693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(61), + [696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(36), + [699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(164), + [702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(3), + [705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(69), + [708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(492), + [711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(493), + [714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(494), + [717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(495), + [720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(74), + [723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(171), + [726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(874), + [729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(140), + [732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(207), + [735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(130), + [738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(215), + [741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(884), + [744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(198), + [747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(198), + [750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(196), + [753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(13), + [756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(14), + [759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(15), + [762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(16), + [765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(17), + [768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(133), + [771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(10), + [774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(18), + [777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(228), + [780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(242), + [783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(250), + [786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(263), + [789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(76), + [792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(134), + [795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(812), + [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), + [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(167), + [849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(531), + [852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(165), + [855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(533), + [858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(774), + [861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(178), + [864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(178), + [867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(187), + [870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(58), + [873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(57), + [876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(56), + [879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(55), + [882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(54), + [885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(147), + [888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(6), + [891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(50), + [894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(544), + [897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(543), + [900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(541), + [903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(203), + [906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(80), + [909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(146), + [912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(883), + [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), + [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), + [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(122), + [970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(427), + [973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(144), + [976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(429), + [979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(738), + [982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(189), + [985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(189), + [988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(188), + [991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(32), + [994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(33), + [997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(34), + [1000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(35), + [1003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(11), + [1006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(153), + [1009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(8), + [1012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(39), + [1015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(440), + [1018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(441), + [1021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(442), + [1024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(443), + [1027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(84), + [1030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(155), + [1033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(865), + [1036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [1038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [1040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [1042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [1044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), + [1046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [1048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [1050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [1054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [1056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [1058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [1062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [1064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [1066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), + [1068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [1070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [1072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [1074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [1078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [1080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [1082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [1084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [1086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(157), + [1089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(271), + [1092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(169), + [1095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(273), + [1098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(729), + [1101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(175), + [1104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(175), + [1107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(176), + [1110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(68), + [1113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(71), + [1116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(46), + [1119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(44), + [1122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(44), + [1125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(43), + [1128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(159), + [1131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(7), + [1134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(41), + [1137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(284), + [1140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(285), + [1143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(286), + [1146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(287), + [1149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(88), + [1152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(156), + [1155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(838), + [1158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(161), + [1161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(380), + [1164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(125), + [1167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(379), + [1170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(808), + [1173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(197), + [1176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(197), + [1179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(194), + [1182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(19), + [1185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(40), + [1188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(12), + [1191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(51), + [1194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(62), + [1197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(124), + [1200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(5), + [1203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(70), + [1206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(374), + [1209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(376), + [1212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(270), + [1215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(353), + [1218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(98), + [1221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(132), + [1224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(811), + [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [1229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(127), + [1232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(375), + [1235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(126), + [1238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(377), + [1241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(718), + [1244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(200), + [1247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(200), + [1250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(201), + [1253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(20), + [1256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(21), + [1259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(22), + [1262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(23), + [1265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(24), + [1268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(135), + [1271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(25), + [1274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(26), + [1277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(388), + [1280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(389), + [1283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(390), + [1286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(391), + [1289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(102), + [1292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(138), + [1295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(856), + [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [1306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [1328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), + [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [1340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [1344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(166), + [1347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(275), + [1350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(168), + [1353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(274), + [1356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(794), + [1359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(174), + [1362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(174), + [1365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(172), + [1368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(67), + [1371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(66), + [1374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(65), + [1377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(64), + [1380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(63), + [1383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(163), + [1386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(4), + [1389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(60), + [1392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(272), + [1395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(534), + [1398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(204), + [1401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(205), + [1404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(113), + [1407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(148), + [1410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(820), + [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), + [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), + [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [1459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(151), + [1462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(323), + [1465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(150), + [1468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(325), + [1471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(880), + [1474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(182), + [1477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(182), + [1480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(184), + [1483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(37), + [1486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(31), + [1489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(30), + [1492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(28), + [1495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(27), + [1498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(27), + [1501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(139), + [1504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(2), + [1507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(38), + [1510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(336), + [1513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(337), + [1516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(338), + [1519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(339), + [1522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(118), + [1525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(136), + [1528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(847), + [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), + [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), + [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [1585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), + [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), + [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), + [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [1623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(129), + [1626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(235), + [1629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(154), + [1632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(236), + [1635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(765), + [1638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(183), + [1641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(183), + [1644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(186), + [1647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(52), + [1650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(49), + [1653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(47), + [1656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(45), + [1659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(29), + [1662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(137), + [1665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(9), + [1668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(42), + [1671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(237), + [1674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(238), + [1677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(239), + [1680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(240), + [1683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(121), + [1686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(149), + [1689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(829), + [1692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), + [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), + [1697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_emphasis_begin, 1), REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), + [1700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), + [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), + [1705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_strong_begin, 1), REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), + [1708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [1710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verbatim, 3, .production_id = 1), + [1712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verbatim, 3, .production_id = 1), + [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [1718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [1720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element, 1), + [1722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__element, 1), + [1724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), + [1726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [1728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), + [1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [1738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [1740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), + [1742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), + [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), + [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), + [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [1756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), + [1758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), + [1760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__text, 2), + [1762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__text, 2), + [1764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(173), + [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), + [1771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(180), + [1774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(181), + [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), + [1779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(185), + [1782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), + [1784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), + [1786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), + [1788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(190), + [1791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(191), + [1794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(192), + [1797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(193), + [1800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), + [1802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(195), + [1805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), + [1807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(199), + [1810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), + [1812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hard_line_break, 2), + [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hard_line_break, 2), + [1816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 1), + [1818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), + [1820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(684), + [1823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_note, 1), + [1825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note, 1), + [1827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(698), + [1830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__comment_with_spaces, 2), + [1832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_with_spaces, 2), + [1834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collapsed_reference_image, 2), + [1836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collapsed_reference_image, 2), + [1838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_reference_image, 2), + [1840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_reference_image, 2), + [1842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_image, 2), + [1844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_image, 2), + [1846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collapsed_reference_link, 2), + [1848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collapsed_reference_link, 2), + [1850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_reference_link, 2), + [1852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_reference_link, 2), + [1854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 2), + [1856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 2), + [1858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_autolink, 3), + [1860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_autolink, 3), + [1862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_highlighted, 3, .production_id = 3), + [1864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlighted, 3, .production_id = 3), + [1866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 3, .production_id = 3), + [1868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 3, .production_id = 3), + [1870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete, 3, .production_id = 3), + [1872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete, 3, .production_id = 3), + [1874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_superscript, 3, .production_id = 3), + [1876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_superscript, 3, .production_id = 3), + [1878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 3, .production_id = 3), + [1880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 3, .production_id = 3), + [1882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_footnote_reference, 3, .production_id = 4), + [1884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_footnote_reference, 3, .production_id = 4), + [1886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_emphasis_end, 1), + [1888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emphasis_end, 1), + [1890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_emphasis, 3, .production_id = 3), + [1892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emphasis, 3, .production_id = 3), + [1894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strong_end, 1), + [1896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strong_end, 1), + [1898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strong, 3, .production_id = 3), + [1900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strong, 3, .production_id = 3), + [1902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_inline, 4), + [1904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_inline, 4), + [1906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(862), + [1909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_span, 4), + [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_span, 4), + [1913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math, 4, .production_id = 7), + [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math, 4, .production_id = 7), + [1917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comment, 3), + [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 3), + [1921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_label, 3, .production_id = 8), + [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_label, 3, .production_id = 8), + [1925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link_destination, 3), + [1927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link_destination, 3), + [1929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_inline_attribute, 3), + [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_inline_attribute, 3), + [1933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(833), + [1936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_todo, 1), + [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_todo, 1), + [1940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(694), + [1943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(688), + [1946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(824), + [1949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), + [1951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [1953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_emphasis_begin, 2), + [1955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(842), + [1958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(693), + [1961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strong_begin, 2), + [1963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strong_begin, 2), + [1965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_attribute, 3, .production_id = 6), + [1967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_attribute, 3, .production_id = 6), + [1969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_attribute, 2), + [1971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_attribute, 2), + [1973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(851), + [1976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(692), + [1979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(700), + [1982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(815), + [1985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(860), + [1988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(691), + [1991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(869), + [1994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(689), + [1997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(878), + [2000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(686), + [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_emphasis_begin_repeat1, 2), + [2005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_emphasis_begin_repeat1, 2), SHIFT_REPEAT(535), + [2008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_emphasis_begin_repeat1, 2), + [2010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(887), + [2013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element, 2), + [2015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__element, 2), + [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [2031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), + [2033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(889), + [2036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(885), + [2039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(616), + [2042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(685), + [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), - [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), - [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), - [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), - [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [2089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__comment_with_newline_repeat1, 2), SHIFT_REPEAT(678), - [2092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_with_newline_repeat1, 2), - [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [2096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), - [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [2104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), - [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [2120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), - [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [2130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), - [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [2136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), - [2138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), - [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [2146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), - [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [2154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), - [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [2160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), - [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [2166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_with_newline_repeat1, 1), - [2168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [2172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), - [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [2176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), - [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [2180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), - [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), - [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [2188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), - [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), - [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [2196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), - [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [2200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), - [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), - [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [2208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [2212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), - [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [2216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [2220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), - [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [2224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), - [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [2228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [2232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), - [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [2236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_description, 3, .production_id = 4), - [2238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_description, 3, .production_id = 4), - [2240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), - [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [2244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), - [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [2248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), - [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [2256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_description, 2), - [2258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_description, 2), - [2260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), - [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [2264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [2268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), - [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [2274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), - [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [2278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), - [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [2282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), - [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [2286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), - [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [2290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), - [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [2296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), - [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [2306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), - [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [2322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), - [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [2326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), - [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [2334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [2338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [2342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [2346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [2350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), - [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [2362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), - [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [2366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), - [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [2372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), - [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [2119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 1), + [2121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 1, .production_id = 2), + [2123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_name, 1), + [2125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_with_newline, 3), + [2127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1), + [2129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value, 3), + [2131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_with_newline, 4, .production_id = 9), + [2133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 3), + [2135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2), + [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), + [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), + [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), + [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [2159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_text, 3), + [2161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_text, 3), + [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), + [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), + [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), + [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), + [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [2209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__comment_with_newline_repeat1, 2), SHIFT_REPEAT(658), + [2212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_with_newline_repeat1, 2), + [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [2216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), + [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [2228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), + [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), + [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [2250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [2252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_with_newline_repeat1, 1), + [2254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [2258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_description, 3, .production_id = 5), + [2260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_description, 3, .production_id = 5), + [2262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), + [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [2270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [2274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [2278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), + [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [2282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), + [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [2286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), + [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [2290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [2294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_description, 2), + [2300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_description, 2), + [2302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [2306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), + [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [2310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), + [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [2314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), + [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [2318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), + [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [2322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [2326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [2330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), + [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [2334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [2338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), + [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [2342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [2346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [2350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), + [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [2356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), + [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [2360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [2364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [2368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), + [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [2372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), + [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [2376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), + [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [2380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [2384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [2388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [2392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [2396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [2400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), + [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [2404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), + [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [2408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [2412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), + [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [2416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), + [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [2420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), + [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [2424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [2560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_label, 1), - [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [2650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline, 1), - [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [2660] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [2666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key, 1), - [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__verbatim_begin, 1), - [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [2644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_label, 1), + [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [2734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline, 1), + [2736] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key, 1), + [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), +}; + +enum ts_external_scanner_symbol_identifiers { + ts_external_token__ignored = 0, + ts_external_token__verbatim_begin = 1, + ts_external_token__verbatim_end = 2, + ts_external_token__verbatim_content = 3, + ts_external_token__error = 4, +}; + +static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { + [ts_external_token__ignored] = sym__ignored, + [ts_external_token__verbatim_begin] = sym__verbatim_begin, + [ts_external_token__verbatim_end] = sym__verbatim_end, + [ts_external_token__verbatim_content] = sym__verbatim_content, + [ts_external_token__error] = sym__error, +}; + +static const bool ts_external_scanner_states[5][EXTERNAL_TOKEN_COUNT] = { + [1] = { + [ts_external_token__ignored] = true, + [ts_external_token__verbatim_begin] = true, + [ts_external_token__verbatim_end] = true, + [ts_external_token__verbatim_content] = true, + [ts_external_token__error] = true, + }, + [2] = { + [ts_external_token__verbatim_begin] = true, + }, + [3] = { + [ts_external_token__verbatim_end] = true, + }, + [4] = { + [ts_external_token__verbatim_content] = true, + }, }; #ifdef __cplusplus extern "C" { #endif +void *tree_sitter_djot_inline_external_scanner_create(void); +void tree_sitter_djot_inline_external_scanner_destroy(void *); +bool tree_sitter_djot_inline_external_scanner_scan(void *, TSLexer *, const bool *); +unsigned tree_sitter_djot_inline_external_scanner_serialize(void *, char *); +void tree_sitter_djot_inline_external_scanner_deserialize(void *, const char *, unsigned); + #ifdef _WIN32 #define TS_PUBLIC __declspec(dllexport) #else @@ -41017,6 +39899,15 @@ TS_PUBLIC const TSLanguage *tree_sitter_djot_inline() { .alias_sequences = &ts_alias_sequences[0][0], .lex_modes = ts_lex_modes, .lex_fn = ts_lex, + .external_scanner = { + &ts_external_scanner_states[0][0], + ts_external_scanner_symbol_map, + tree_sitter_djot_inline_external_scanner_create, + tree_sitter_djot_inline_external_scanner_destroy, + tree_sitter_djot_inline_external_scanner_scan, + tree_sitter_djot_inline_external_scanner_serialize, + tree_sitter_djot_inline_external_scanner_deserialize, + }, .primary_state_ids = ts_primary_state_ids, }; return &language; diff --git a/tree-sitter-djot-inline/src/scanner.c b/tree-sitter-djot-inline/src/scanner.c new file mode 100644 index 0000000..38b1f37 --- /dev/null +++ b/tree-sitter-djot-inline/src/scanner.c @@ -0,0 +1,145 @@ +#include "tree_sitter/alloc.h" +#include "tree_sitter/parser.h" +#include + +// The different tokens the external scanner support +// See `externals` in `grammar.js` for a description of most of them. +typedef enum { + IGNORED, + + VERBATIM_BEGIN, + VERBATIM_END, + VERBATIM_CONTENT, + + ERROR, +} TokenType; + +typedef struct { + // The number of ` we are currently matching, or 0 when not inside. + uint8_t verbatim_tick_count; +} Scanner; + +static void advance(Scanner *s, TSLexer *lexer) { + lexer->advance(lexer, false); + // Carriage returns should simply be ignored. + if (lexer->lookahead == '\r') { + lexer->advance(lexer, false); + } +} + +static uint8_t consume_chars(Scanner *s, TSLexer *lexer, char c) { + uint8_t count = 0; + while (lexer->lookahead == c) { + advance(s, lexer); + ++count; + } + return count; +} + +static bool parse_verbatim_content(Scanner *s, TSLexer *lexer) { + uint8_t ticks = 0; + while (!lexer->eof(lexer)) { + if (lexer->lookahead == '`') { + // If we find a `, we need to count them to see if we should stop. + uint8_t current = consume_chars(s, lexer, '`'); + if (current == s->verbatim_tick_count) { + // We found a matching number of ` + break; + } else { + // Found a number of ` that doesn't match the start, + // we should consume them. + lexer->mark_end(lexer); + ticks = 0; + } + } else { + // Non-` token found, just consume. + advance(s, lexer); + lexer->mark_end(lexer); + ticks = 0; + } + } + + // Scanned all the verbatim. + lexer->result_symbol = VERBATIM_CONTENT; + return true; +} + +static bool parse_verbatim_end(Scanner *s, TSLexer *lexer) { + if (lexer->eof(lexer)) { + lexer->result_symbol = VERBATIM_END; + return true; + } + if (s->verbatim_tick_count == 0) { + return false; + } + uint8_t ticks = consume_chars(s, lexer, '`'); + if (ticks != s->verbatim_tick_count) { + return false; + } + s->verbatim_tick_count = 0; + lexer->mark_end(lexer); + lexer->result_symbol = VERBATIM_END; + return true; +} + +static bool parse_verbatim_start(Scanner *s, TSLexer *lexer) { + uint8_t ticks = consume_chars(s, lexer, '`'); + if (ticks == 0) { + return false; + } + s->verbatim_tick_count = ticks; + lexer->mark_end(lexer); + lexer->result_symbol = VERBATIM_BEGIN; + return true; +} + +bool tree_sitter_djot_inline_external_scanner_scan(void *payload, + TSLexer *lexer, + const bool *valid_symbols) { + + Scanner *s = (Scanner *)payload; + + if (valid_symbols[VERBATIM_CONTENT] && parse_verbatim_content(s, lexer)) { + return true; + } + if (valid_symbols[VERBATIM_END] && parse_verbatim_end(s, lexer)) { + return true; + } + if (valid_symbols[VERBATIM_BEGIN] && parse_verbatim_start(s, lexer)) { + return true; + } + + return false; +} + +void init(Scanner *s) { s->verbatim_tick_count = 0; } + +void *tree_sitter_djot_inline_external_scanner_create() { + Scanner *s = (Scanner *)ts_malloc(sizeof(Scanner)); + init(s); + return s; +} + +void tree_sitter_djot_inline_external_scanner_destroy(void *payload) { + Scanner *s = (Scanner *)payload; + ts_free(s); +} + +unsigned tree_sitter_djot_inline_external_scanner_serialize(void *payload, + char *buffer) { + Scanner *s = (Scanner *)payload; + unsigned size = 0; + buffer[size++] = (char)s->verbatim_tick_count; + return size; +} + +void tree_sitter_djot_inline_external_scanner_deserialize(void *payload, + char *buffer, + unsigned length) { + Scanner *s = (Scanner *)payload; + init(s); + if (length > 0) { + size_t size = 0; + s->verbatim_tick_count = (uint8_t)buffer[size++]; + } +} diff --git a/tree-sitter-djot-inline/test/corpus/syntax.txt b/tree-sitter-djot-inline/test/corpus/syntax.txt index cae7602..65a94ad 100644 --- a/tree-sitter-djot-inline/test/corpus/syntax.txt +++ b/tree-sitter-djot-inline/test/corpus/syntax.txt @@ -18,12 +18,11 @@ Simple `verbatim` here ------------------------------------------------------------------------------- -(document - (paragraph - (verbatim - (verbatim_marker_begin) - (content) - (verbatim_marker_end)))) +(inline + (verbatim + (verbatim_marker_begin) + (content) + (verbatim_marker_end))) =============================================================================== Verbatim: double with single inside @@ -32,12 +31,11 @@ Verbatim: double with single inside ------------------------------------------------------------------------------- -(document - (paragraph - (verbatim - (verbatim_marker_begin) - (content) - (verbatim_marker_end)))) +(inline + (verbatim + (verbatim_marker_begin) + (content) + (verbatim_marker_end))) =============================================================================== Verbatim: with triple inside @@ -46,12 +44,11 @@ Verbatim: with triple inside ------------------------------------------------------------------------------- -(document - (paragraph - (verbatim - (verbatim_marker_begin) - (content) - (verbatim_marker_end)))) +(inline + (verbatim + (verbatim_marker_begin) + (content) + (verbatim_marker_end))) =============================================================================== Verbatim: newline closes @@ -60,12 +57,11 @@ Verbatim: newline closes ------------------------------------------------------------------------------- -(document - (paragraph - (verbatim - (verbatim_marker_begin) - (content) - (verbatim_marker_end)))) +(inline + (verbatim + (verbatim_marker_begin) + (content) + (verbatim_marker_end))) =============================================================================== Verbatim: can contain newlines @@ -74,17 +70,13 @@ Verbatim: can contain newlines with newlines` -trailing - ------------------------------------------------------------------------------- -(document - (paragraph - (verbatim - (verbatim_marker_begin) - (content) - (verbatim_marker_end))) - (paragraph)) +(inline + (verbatim + (verbatim_marker_begin) + (content) + (verbatim_marker_end))) =============================================================================== @@ -94,16 +86,15 @@ Verbatim: multiple ------------------------------------------------------------------------------- -(document - (paragraph - (verbatim - (verbatim_marker_begin) - (content) - (verbatim_marker_end)) - (verbatim - (verbatim_marker_begin) - (content) - (verbatim_marker_end)))) +(inline + (verbatim + (verbatim_marker_begin) + (content) + (verbatim_marker_end)) + (verbatim + (verbatim_marker_begin) + (content) + (verbatim_marker_end))) =============================================================================== Verbatim: with hash @@ -112,12 +103,11 @@ Don't consume `#` in heading parser code ------------------------------------------------------------------------------- -(document - (paragraph - (verbatim - (verbatim_marker_begin) - (content) - (verbatim_marker_end)))) +(inline + (verbatim + (verbatim_marker_begin) + (content) + (verbatim_marker_end))) =============================================================================== Paragraph: todo note fixme @@ -126,69 +116,55 @@ Higlight TODO NOTE and FIXME ------------------------------------------------------------------------------- -(document - (paragraph (todo) (note) (fixme))) +(inline (todo) (note) (fixme)) =============================================================================== Smart punctuation =============================================================================== Ellipsis... - Em---dash Eh--dash - Some{"quotes"} be{'here'}yo - \"Straight\" \'quotes\' ------------------------------------------------------------------------------- -(document - (paragraph - (ellipsis)) - (paragraph +(inline + (ellipsis) (em_dash) - (en_dash)) - (paragraph + (en_dash) (quotation_marks) (quotation_marks) (quotation_marks) - (quotation_marks)) - (paragraph (quotation_marks) (quotation_marks) (quotation_marks) - (quotation_marks))) + (quotation_marks) + (quotation_marks)) =============================================================================== Backslash escape =============================================================================== No \_emphasis\_ - No \_strong\_ - No \ - Regular \.\.\. dots - Inside _x\_y_ - No \{+insert\*} - \> no quote ------------------------------------------------------------------------------- -(document - (paragraph (backslash_escape) (backslash_escape)) - (paragraph (backslash_escape) (backslash_escape)) - (paragraph (backslash_escape)) - (paragraph (backslash_escape) (backslash_escape) (backslash_escape)) - (paragraph (emphasis (emphasis_begin) (content (backslash_escape)) (emphasis_end))) - (paragraph (backslash_escape) (backslash_escape)) - (paragraph (backslash_escape))) +(inline + (backslash_escape) (backslash_escape) + (backslash_escape) (backslash_escape) + (backslash_escape) + (backslash_escape) (backslash_escape) (backslash_escape) + (emphasis (emphasis_begin) (content (backslash_escape)) (emphasis_end)) + (backslash_escape) (backslash_escape) + (backslash_escape)) =============================================================================== Image: inline @@ -197,11 +173,10 @@ Image: inline ------------------------------------------------------------------------------- -(document - (paragraph - (inline_image - (image_description) - (inline_link_destination)))) +(inline + (inline_image + (image_description) + (inline_link_destination))) =============================================================================== Image: empty inline @@ -210,10 +185,9 @@ Image: empty inline ------------------------------------------------------------------------------- -(document - (paragraph - (inline_image - (inline_link_destination)))) +(inline + (inline_image + (inline_link_destination))) =============================================================================== Image: collapsed reference link @@ -222,10 +196,9 @@ Image: collapsed reference link ------------------------------------------------------------------------------- -(document - (paragraph - (collapsed_reference_image - (image_description)))) +(inline + (collapsed_reference_image + (image_description))) =============================================================================== Image: full reference @@ -234,11 +207,10 @@ Image: full reference ------------------------------------------------------------------------------- -(document - (paragraph - (full_reference_image - (image_description) - (link_label)))) +(inline + (full_reference_image + (image_description) + (link_label))) =============================================================================== Emphasis @@ -247,9 +219,8 @@ With _emphasis_ here ------------------------------------------------------------------------------- -(document - (paragraph - (emphasis (emphasis_begin) (content) (emphasis_end)))) +(inline + (emphasis (emphasis_begin) (content) (emphasis_end))) =============================================================================== Strong @@ -258,30 +229,26 @@ With *strong* here ------------------------------------------------------------------------------- -(document - (paragraph - (strong (strong_begin) (content) (strong_end)))) +(inline + (strong (strong_begin) (content) (strong_end))) =============================================================================== Emphasis and strong =============================================================================== With _*strong* emphasis_ here - With *_emphasis_ strong* here ------------------------------------------------------------------------------- -(document - (paragraph - (emphasis - (emphasis_begin) - (content (strong (strong_begin) (content) (strong_end))) - (emphasis_end))) - (paragraph - (strong - (strong_begin) - (content (emphasis (emphasis_begin) (content) (emphasis_end))) - (strong_end)))) +(inline + (emphasis + (emphasis_begin) + (content (strong (strong_begin) (content) (strong_end))) + (emphasis_end)) + (strong + (strong_begin) + (content (emphasis (emphasis_begin) (content) (emphasis_end))) + (strong_end))) =============================================================================== Emphasis and strong two chars @@ -291,16 +258,15 @@ _bc a_ ------------------------------------------------------------------------------- -(document - (paragraph - (strong - (strong_begin) - (content) - (strong_end)) - (emphasis - (emphasis_begin) - (content) - (emphasis_end)))) +(inline + (strong + (strong_begin) + (content) + (strong_end)) + (emphasis + (emphasis_begin) + (content) + (emphasis_end))) =============================================================================== Emphasis and strong with newlines @@ -312,100 +278,195 @@ b_ ------------------------------------------------------------------------------- -(document - (paragraph - (strong - (strong_begin) - (content) - (strong_end)) - (emphasis - (emphasis_begin) - (content) - (emphasis_end)))) +(inline + (strong + (strong_begin) + (content) + (strong_end)) + (emphasis + (emphasis_begin) + (content) + (emphasis_end))) =============================================================================== -Emphasis: various weird tests +Emphasis: three chars with spaces =============================================================================== _a b c_ +------------------------------------------------------------------------------- + +(inline (emphasis (emphasis_begin) (content) (emphasis_end))) + +=============================================================================== +Emphasis: two chars with spaces +=============================================================================== _a b_ +------------------------------------------------------------------------------- + +(inline (emphasis (emphasis_begin) (content) (emphasis_end))) + +=============================================================================== +Emphasis: one char between +=============================================================================== _a_ +------------------------------------------------------------------------------- + +(inline (emphasis (emphasis_begin) (content) (emphasis_end))) + +=============================================================================== +Emphasis: three chars with a newline +=============================================================================== _a b c_ +------------------------------------------------------------------------------- + +(inline (emphasis (emphasis_begin) (content) (emphasis_end))) + + +=============================================================================== +Emphasis: three chars with a newline 2 +=============================================================================== _ai b c_ +------------------------------------------------------------------------------- + +(inline (emphasis (emphasis_begin) (content) (emphasis_end))) + +=============================================================================== +Emphasis: three chars with a two newlines +=============================================================================== _a b c_ +------------------------------------------------------------------------------- + +(inline (emphasis (emphasis_begin) (content) (emphasis_end))) + +=============================================================================== +Emphasis: two chars with a newline +=============================================================================== _a b_ +------------------------------------------------------------------------------- + +(inline (emphasis (emphasis_begin) (content) (emphasis_end))) + +=============================================================================== +Emphasis: two chars with a newline 2 +=============================================================================== _ab cd_ +------------------------------------------------------------------------------- + +(inline (emphasis (emphasis_begin) (content) (emphasis_end))) + +=============================================================================== +Emphasis: two chars with a newline 3 +=============================================================================== _ab x cd_ ------------------------------------------------------------------------------- -(document - (paragraph (emphasis (emphasis_begin) (content) (emphasis_end))) - (paragraph (emphasis (emphasis_begin) (content) (emphasis_end))) - (paragraph (emphasis (emphasis_begin) (content) (emphasis_end))) - (paragraph (emphasis (emphasis_begin) (content) (emphasis_end))) - (paragraph (emphasis (emphasis_begin) (content) (emphasis_end))) - (paragraph (emphasis (emphasis_begin) (content) (emphasis_end))) - (paragraph (emphasis (emphasis_begin) (content) (emphasis_end))) - (paragraph (emphasis (emphasis_begin) (content) (emphasis_end))) - (paragraph (emphasis (emphasis_begin) (content) (emphasis_end)))) +(inline (emphasis (emphasis_begin) (content) (emphasis_end))) =============================================================================== -Superscipt: various weird tests +Superscript: three chars with spaces =============================================================================== ^a b c^ +------------------------------------------------------------------------------- + +(inline (superscript (content))) + +=============================================================================== +Superscript: two chars with spaces +=============================================================================== ^a b^ +------------------------------------------------------------------------------- + +(inline (superscript (content))) + +=============================================================================== +Superscript: one char between +=============================================================================== ^a^ +------------------------------------------------------------------------------- + +(inline (superscript (content))) + +=============================================================================== +Superscript: three chars with a newline +=============================================================================== ^a b c^ +------------------------------------------------------------------------------- + +(inline (superscript (content))) + + +=============================================================================== +Superscript: three chars with a newline 2 +=============================================================================== ^ai b c^ +------------------------------------------------------------------------------- + +(inline (superscript (content))) + +=============================================================================== +Superscript: three chars with a two newlines +=============================================================================== ^a b c^ +------------------------------------------------------------------------------- + +(inline (superscript (content))) + +=============================================================================== +Superscript: two chars with a newline +=============================================================================== ^a b^ +------------------------------------------------------------------------------- + +(inline (superscript (content))) + +=============================================================================== +Superscript: two chars with a newline 2 +=============================================================================== ^ab cd^ +------------------------------------------------------------------------------- + +(inline (superscript (content))) + +=============================================================================== +Superscript: two chars with a newline 3 +=============================================================================== ^ab x cd^ ------------------------------------------------------------------------------- -(document - (paragraph (superscript (content))) - (paragraph (superscript (content))) - (paragraph (superscript (content))) - (paragraph (superscript (content))) - (paragraph (superscript (content))) - (paragraph (superscript (content))) - (paragraph (superscript (content))) - (paragraph (superscript (content))) - (paragraph (superscript (content)))) +(inline (superscript (content))) =============================================================================== Emphasis: nested @@ -414,76 +475,67 @@ With __nested_ emphasis_ ------------------------------------------------------------------------------- -(document - (paragraph - (emphasis - (emphasis_begin) - (content (emphasis (emphasis_begin) (content) (emphasis_end))) - (emphasis_end)))) +(inline + (emphasis + (emphasis_begin) + (content (emphasis (emphasis_begin) (content) (emphasis_end))) + (emphasis_end))) =============================================================================== Emphasis: forced despite spaces =============================================================================== {_yes_} - {_ yes _} - _yes _} - {_ yes_} ------------------------------------------------------------------------------- -(document - (paragraph (emphasis (emphasis_begin) (content) (emphasis_end))) - (paragraph (emphasis (emphasis_begin) (content) (emphasis_end))) - (paragraph (emphasis (emphasis_begin) (content) (emphasis_end))) - (paragraph (emphasis (emphasis_begin) (content) (emphasis_end)))) +(inline + (emphasis (emphasis_begin) (content) (emphasis_end)) + (emphasis (emphasis_begin) (content) (emphasis_end)) + (emphasis (emphasis_begin) (content) (emphasis_end)) + (emphasis (emphasis_begin) (content) (emphasis_end))) =============================================================================== Strong: forced despite spaces =============================================================================== {*yes*} - *yes *} - {* yes* - {* yes *} ------------------------------------------------------------------------------- -(document - (paragraph (strong (strong_begin) (content) (strong_end))) - (paragraph (strong (strong_begin) (content) (strong_end))) - (paragraph (strong (strong_begin) (content) (strong_end))) - (paragraph (strong (strong_begin) (content) (strong_end)))) +(inline + (strong (strong_begin) (content) (strong_end)) + (strong (strong_begin) (content) (strong_end)) + (strong (strong_begin) (content) (strong_end)) + (strong (strong_begin) (content) (strong_end))) =============================================================================== Subscript =============================================================================== ~sub~ - {~many sub~} ------------------------------------------------------------------------------- -(document - (paragraph (subscript (content))) - (paragraph (subscript (content)))) +(inline + (subscript (content)) + (subscript (content))) =============================================================================== Superscript =============================================================================== ^sup^ - {^many sup^} ------------------------------------------------------------------------------- -(document - (paragraph (superscript (content))) - (paragraph (superscript (content)))) +(inline + (superscript (content)) + (superscript (content))) =============================================================================== Highlighted @@ -492,9 +544,8 @@ With {=mark=} here ------------------------------------------------------------------------------- -(document - (paragraph - (highlighted (content)))) +(inline + (highlighted (content))) =============================================================================== Insert @@ -503,9 +554,8 @@ With {+insert+} here ------------------------------------------------------------------------------- -(document - (paragraph - (insert (content)))) +(inline + (insert (content))) =============================================================================== Delete @@ -514,46 +564,36 @@ With {-delete-} here ------------------------------------------------------------------------------- -(document - (paragraph - (delete (content)))) +(inline + (delete (content))) =============================================================================== Inline with newlines =============================================================================== {=a b=} - {+a b+} - {-a b-} - ^a b^ - ~a b~ ------------------------------------------------------------------------------- -(document - (paragraph - (highlighted - (content))) - (paragraph +(inline + (highlighted + (content)) (insert - (content))) - (paragraph + (content)) (delete - (content))) - (paragraph + (content)) (superscript - (content))) - (paragraph + (content)) (subscript - (content)))) + (content))) =============================================================================== Hard line break @@ -563,9 +603,8 @@ break ------------------------------------------------------------------------------- -(document - (paragraph - (hard_line_break))) +(inline + (hard_line_break)) =============================================================================== Symbol @@ -574,9 +613,8 @@ With :wink: here ------------------------------------------------------------------------------- -(document - (paragraph - (symbol))) +(inline + (symbol)) =============================================================================== Link: inline @@ -585,11 +623,10 @@ With [link](/url) ------------------------------------------------------------------------------- -(document - (paragraph - (inline_link - (link_text) - (inline_link_destination)))) +(inline + (inline_link + (link_text) + (inline_link_destination))) =============================================================================== Link: with newline @@ -599,11 +636,10 @@ newline](/url) ------------------------------------------------------------------------------- -(document - (paragraph - (inline_link - (link_text) - (inline_link_destination)))) +(inline + (inline_link + (link_text) + (inline_link_destination))) =============================================================================== Link: begin @@ -612,11 +648,10 @@ Link: begin ------------------------------------------------------------------------------- -(document - (paragraph - (inline_link - (link_text) - (inline_link_destination)))) +(inline + (inline_link + (link_text) + (inline_link_destination))) =============================================================================== Link: collapsed reference link @@ -625,10 +660,9 @@ With [a reference][] ------------------------------------------------------------------------------- -(document - (paragraph - (collapsed_reference_link - (link_text)))) +(inline + (collapsed_reference_link + (link_text))) =============================================================================== Link: full reference single @@ -637,29 +671,22 @@ With [a reference][ref] ------------------------------------------------------------------------------- -(document - (paragraph - (full_reference_link - (link_text) - (link_label)))) +(inline + (full_reference_link + (link_text) + (link_label))) =============================================================================== Link: full reference =============================================================================== With [a reference][ref] -[ref]: /url - ------------------------------------------------------------------------------- -(document - (paragraph - (full_reference_link - (link_text) - (link_label))) - (link_reference_definition - (link_label) - (link_destination))) +(inline + (full_reference_link + (link_text) + (link_label))) =============================================================================== Inline attribute: mixed @@ -668,16 +695,15 @@ text{.one .two #id author="with spaces"} ------------------------------------------------------------------------------- -(document - (paragraph - (inline_attribute - (args - (class) - (class) - (identifier) - (key_value - (key) - (value)))))) +(inline + (inline_attribute + (args + (class) + (class) + (identifier) + (key_value + (key) + (value))))) =============================================================================== Inline attribute: casing @@ -686,12 +712,11 @@ text{.snake_case .cebab-case} ------------------------------------------------------------------------------- -(document - (paragraph - (inline_attribute - (args - (class) - (class))))) +(inline + (inline_attribute + (args + (class) + (class)))) =============================================================================== Inline attribute: key casing @@ -700,16 +725,15 @@ text{snake_case=2 kebab-case=3} ------------------------------------------------------------------------------- -(document - (paragraph - (inline_attribute - (args - (key_value - (key) - (value)) - (key_value - (key) - (value)))))) +(inline + (inline_attribute + (args + (key_value + (key) + (value)) + (key_value + (key) + (value))))) =============================================================================== Inline attribute: surrounding spaces @@ -718,11 +742,10 @@ text{ .class } ------------------------------------------------------------------------------- -(document - (paragraph - (inline_attribute - (args - (class))))) +(inline + (inline_attribute + (args + (class)))) =============================================================================== Inline attribute: with newlines @@ -733,13 +756,12 @@ text{.one ------------------------------------------------------------------------------- -(document - (paragraph - (inline_attribute - (args - (class) - (class) - (identifier))))) +(inline + (inline_attribute + (args + (class) + (class) + (identifier)))) =============================================================================== Inline attribute: with comment @@ -748,13 +770,12 @@ text{#ident % later we'll add a class %} ------------------------------------------------------------------------------- -(document - (paragraph - (inline_attribute - (args - (identifier) - (comment - (content)))))) +(inline + (inline_attribute + (args + (identifier) + (comment + (content))))) =============================================================================== Inline attribute: comment @@ -765,12 +786,11 @@ some text here ------------------------------------------------------------------------------- -(document - (paragraph - (inline_attribute - (args - (comment - (content)))))) +(inline + (inline_attribute + (args + (comment + (content))))) =============================================================================== Inline attribute: standalone comment @@ -780,10 +800,9 @@ multiple lines %} baz. ------------------------------------------------------------------------------- -(document - (paragraph - (comment - (content)))) +(inline + (comment + (content))) =============================================================================== Inline attribute: comment escape % @@ -792,11 +811,10 @@ Before {% escape \% %} ------------------------------------------------------------------------------- -(document - (paragraph - (comment - (content - (backslash_escape))))) +(inline + (comment + (content + (backslash_escape)))) =============================================================================== Inline attribute: mixed comment escape % @@ -805,14 +823,13 @@ Before{#id % escape \% %} ------------------------------------------------------------------------------- -(document - (paragraph - (inline_attribute - (args - (identifier) - (comment - (content - (backslash_escape))))))) +(inline + (inline_attribute + (args + (identifier) + (comment + (content + (backslash_escape)))))) =============================================================================== Span @@ -822,13 +839,12 @@ One [two three]{.class ------------------------------------------------------------------------------- -(document - (paragraph - (span - (inline_attribute - (args - (class) - (identifier)))))) +(inline + (span + (inline_attribute + (args + (class) + (identifier))))) =============================================================================== Autolink @@ -837,9 +853,8 @@ With link ------------------------------------------------------------------------------- -(document - (paragraph - (autolink))) +(inline + (autolink)) =============================================================================== Footnote: reference @@ -849,12 +864,11 @@ Here's a ref.[^foo] ------------------------------------------------------------------------------- -(document - (paragraph - (footnote_reference - (footnote_marker_begin) - (reference_label) - (footnote_marker_end)))) +(inline + (footnote_reference + (footnote_marker_begin) + (reference_label) + (footnote_marker_end))) =============================================================================== Raw inline @@ -863,14 +877,13 @@ Raw inline ------------------------------------------------------------------------------- -(document - (paragraph - (raw_inline - (raw_inline_marker_begin) - (content) - (raw_inline_marker_end) - (raw_inline_attribute - (language))))) +(inline + (raw_inline + (raw_inline_marker_begin) + (content) + (raw_inline_marker_end) + (raw_inline_attribute + (language)))) =============================================================================== Math @@ -879,11 +892,10 @@ $`1 + 2` ------------------------------------------------------------------------------- -(document - (paragraph - (math - (math_marker) - (math_marker_begin) - (content) - (math_marker_end)))) +(inline + (math + (math_marker) + (math_marker_begin) + (content) + (math_marker_end))) diff --git a/tree-sitter-djot/grammar.js b/tree-sitter-djot/grammar.js index fd50761..b0e4786 100644 --- a/tree-sitter-djot/grammar.js +++ b/tree-sitter-djot/grammar.js @@ -602,14 +602,6 @@ module.exports = grammar({ $._table_caption_begin, $._table_caption_end, - // Inline elements. - - // Verbatim is handled externally to match a varying number of `, - // and to close open verbatim when a paragraph ends with a blankline. - $._verbatim_begin, - $._verbatim_end, - $._verbatim_content, - // Never valid and is only used to signal an internal scanner error. $._error, ], diff --git a/tree-sitter-djot/src/grammar.json b/tree-sitter-djot/src/grammar.json index e28a574..3021c36 100644 --- a/tree-sitter-djot/src/grammar.json +++ b/tree-sitter-djot/src/grammar.json @@ -2555,18 +2555,6 @@ "type": "SYMBOL", "name": "_table_caption_end" }, - { - "type": "SYMBOL", - "name": "_verbatim_begin" - }, - { - "type": "SYMBOL", - "name": "_verbatim_end" - }, - { - "type": "SYMBOL", - "name": "_verbatim_content" - }, { "type": "SYMBOL", "name": "_error" diff --git a/tree-sitter-djot/src/parser.c b/tree-sitter-djot/src/parser.c index 05b1e05..51ad15a 100644 --- a/tree-sitter-djot/src/parser.c +++ b/tree-sitter-djot/src/parser.c @@ -7,10 +7,10 @@ #define LANGUAGE_VERSION 14 #define STATE_COUNT 1081 #define LARGE_STATE_COUNT 64 -#define SYMBOL_COUNT 202 +#define SYMBOL_COUNT 199 #define ALIAS_COUNT 9 -#define TOKEN_COUNT 77 -#define EXTERNAL_TOKEN_COUNT 47 +#define TOKEN_COUNT 74 +#define EXTERNAL_TOKEN_COUNT 44 #define FIELD_COUNT 0 #define MAX_ALIAS_SEQUENCE_LENGTH 8 #define PRODUCTION_ID_COUNT 15 @@ -88,144 +88,141 @@ enum ts_symbol_identifiers { sym__footnote_end = 70, sym__table_caption_begin = 71, sym__table_caption_end = 72, - sym__verbatim_begin = 73, - sym__verbatim_end = 74, - sym__verbatim_content = 75, - sym__error = 76, - sym_document = 77, - sym_frontmatter = 78, - sym_frontmatter_content = 79, - sym__block_with_section = 80, - sym__block_with_heading = 81, - sym__block_element = 82, - sym_section = 83, - sym_heading = 84, - sym__heading_content = 85, - sym_list = 86, - sym__list_dash = 87, - sym__list_item_dash = 88, - sym__list_plus = 89, - sym__list_item_plus = 90, - sym__list_star = 91, - sym__list_item_star = 92, - sym__list_task = 93, - sym__list_item_task = 94, - sym_list_marker_task = 95, - sym_checked = 96, - sym_unchecked = 97, - sym__list_definition = 98, - sym__list_item_definition = 99, - sym__list_decimal_period = 100, - sym__list_item_decimal_period = 101, - sym__list_decimal_paren = 102, - sym__list_item_decimal_paren = 103, - sym__list_decimal_parens = 104, - sym__list_item_decimal_parens = 105, - sym__list_lower_alpha_period = 106, - sym__list_item_lower_alpha_period = 107, - sym__list_lower_alpha_paren = 108, - sym__list_item_lower_alpha_paren = 109, - sym__list_lower_alpha_parens = 110, - sym__list_item_lower_alpha_parens = 111, - sym__list_upper_alpha_period = 112, - sym__list_item_upper_alpha_period = 113, - sym__list_upper_alpha_paren = 114, - sym__list_item_upper_alpha_paren = 115, - sym__list_upper_alpha_parens = 116, - sym__list_item_upper_alpha_parens = 117, - sym__list_lower_roman_period = 118, - sym__list_item_lower_roman_period = 119, - sym__list_lower_roman_paren = 120, - sym__list_item_lower_roman_paren = 121, - sym__list_lower_roman_parens = 122, - sym__list_item_lower_roman_parens = 123, - sym__list_upper_roman_period = 124, - sym__list_item_upper_roman_period = 125, - sym__list_upper_roman_paren = 126, - sym__list_item_upper_roman_paren = 127, - sym__list_upper_roman_parens = 128, - sym__list_item_upper_roman_parens = 129, - sym_list_item_content = 130, - sym_table = 131, - sym__table_content = 132, - sym_table_separator = 133, - sym_table_row = 134, - sym_table_cell = 135, - sym_table_caption = 136, - sym_footnote = 137, - sym_footnote_content = 138, - sym_div = 139, - sym_div_marker_begin = 140, - sym_class_name = 141, - sym_code_block = 142, - sym_raw_block = 143, - sym_raw_block_info = 144, - sym_code = 145, - sym__line = 146, - sym_thematic_break = 147, - sym_block_quote = 148, - sym__block_quote_content = 149, - sym__block_quote_prefix = 150, - sym_link_reference_definition = 151, - sym_link_label = 152, - sym_block_attribute = 153, - sym_class = 154, - sym_key_value = 155, - sym_key = 156, - sym_value = 157, - sym__paragraph = 158, - sym__paragraph_content = 159, - sym__one_or_two_newlines = 160, - sym__inline = 161, - sym__inline_line = 162, - sym__symbol_fallback = 163, - sym_reference_label = 164, - sym__comment_no_newline = 165, - aux_sym_document_repeat1 = 166, - aux_sym_frontmatter_content_repeat1 = 167, - aux_sym__heading_content_repeat1 = 168, - aux_sym__list_dash_repeat1 = 169, - aux_sym__list_plus_repeat1 = 170, - aux_sym__list_star_repeat1 = 171, - aux_sym__list_task_repeat1 = 172, - aux_sym__list_definition_repeat1 = 173, - aux_sym__list_item_definition_repeat1 = 174, - aux_sym__list_decimal_period_repeat1 = 175, - aux_sym__list_decimal_paren_repeat1 = 176, - aux_sym__list_decimal_parens_repeat1 = 177, - aux_sym__list_lower_alpha_period_repeat1 = 178, - aux_sym__list_lower_alpha_paren_repeat1 = 179, - aux_sym__list_lower_alpha_parens_repeat1 = 180, - aux_sym__list_upper_alpha_period_repeat1 = 181, - aux_sym__list_upper_alpha_paren_repeat1 = 182, - aux_sym__list_upper_alpha_parens_repeat1 = 183, - aux_sym__list_lower_roman_period_repeat1 = 184, - aux_sym__list_lower_roman_paren_repeat1 = 185, - aux_sym__list_lower_roman_parens_repeat1 = 186, - aux_sym__list_upper_roman_period_repeat1 = 187, - aux_sym__list_upper_roman_paren_repeat1 = 188, - aux_sym__list_upper_roman_parens_repeat1 = 189, - aux_sym_table_repeat1 = 190, - aux_sym_table_separator_repeat1 = 191, - aux_sym_table_row_repeat1 = 192, - aux_sym_table_caption_repeat1 = 193, - aux_sym_footnote_content_repeat1 = 194, - aux_sym_code_repeat1 = 195, - aux_sym__block_quote_content_repeat1 = 196, - aux_sym__block_quote_prefix_repeat1 = 197, - aux_sym_block_attribute_repeat1 = 198, - aux_sym__paragraph_content_repeat1 = 199, - aux_sym__inline_repeat1 = 200, - aux_sym__comment_no_newline_repeat1 = 201, - alias_sym_args = 202, - anon_alias_sym_class = 203, - alias_sym_definition = 204, - alias_sym_language_marker = 205, - alias_sym_paragraph = 206, - alias_sym_raw_block_marker_begin = 207, - alias_sym_raw_block_marker_end = 208, - alias_sym_section_content = 209, - alias_sym_table_header = 210, + sym__error = 73, + sym_document = 74, + sym_frontmatter = 75, + sym_frontmatter_content = 76, + sym__block_with_section = 77, + sym__block_with_heading = 78, + sym__block_element = 79, + sym_section = 80, + sym_heading = 81, + sym__heading_content = 82, + sym_list = 83, + sym__list_dash = 84, + sym__list_item_dash = 85, + sym__list_plus = 86, + sym__list_item_plus = 87, + sym__list_star = 88, + sym__list_item_star = 89, + sym__list_task = 90, + sym__list_item_task = 91, + sym_list_marker_task = 92, + sym_checked = 93, + sym_unchecked = 94, + sym__list_definition = 95, + sym__list_item_definition = 96, + sym__list_decimal_period = 97, + sym__list_item_decimal_period = 98, + sym__list_decimal_paren = 99, + sym__list_item_decimal_paren = 100, + sym__list_decimal_parens = 101, + sym__list_item_decimal_parens = 102, + sym__list_lower_alpha_period = 103, + sym__list_item_lower_alpha_period = 104, + sym__list_lower_alpha_paren = 105, + sym__list_item_lower_alpha_paren = 106, + sym__list_lower_alpha_parens = 107, + sym__list_item_lower_alpha_parens = 108, + sym__list_upper_alpha_period = 109, + sym__list_item_upper_alpha_period = 110, + sym__list_upper_alpha_paren = 111, + sym__list_item_upper_alpha_paren = 112, + sym__list_upper_alpha_parens = 113, + sym__list_item_upper_alpha_parens = 114, + sym__list_lower_roman_period = 115, + sym__list_item_lower_roman_period = 116, + sym__list_lower_roman_paren = 117, + sym__list_item_lower_roman_paren = 118, + sym__list_lower_roman_parens = 119, + sym__list_item_lower_roman_parens = 120, + sym__list_upper_roman_period = 121, + sym__list_item_upper_roman_period = 122, + sym__list_upper_roman_paren = 123, + sym__list_item_upper_roman_paren = 124, + sym__list_upper_roman_parens = 125, + sym__list_item_upper_roman_parens = 126, + sym_list_item_content = 127, + sym_table = 128, + sym__table_content = 129, + sym_table_separator = 130, + sym_table_row = 131, + sym_table_cell = 132, + sym_table_caption = 133, + sym_footnote = 134, + sym_footnote_content = 135, + sym_div = 136, + sym_div_marker_begin = 137, + sym_class_name = 138, + sym_code_block = 139, + sym_raw_block = 140, + sym_raw_block_info = 141, + sym_code = 142, + sym__line = 143, + sym_thematic_break = 144, + sym_block_quote = 145, + sym__block_quote_content = 146, + sym__block_quote_prefix = 147, + sym_link_reference_definition = 148, + sym_link_label = 149, + sym_block_attribute = 150, + sym_class = 151, + sym_key_value = 152, + sym_key = 153, + sym_value = 154, + sym__paragraph = 155, + sym__paragraph_content = 156, + sym__one_or_two_newlines = 157, + sym__inline = 158, + sym__inline_line = 159, + sym__symbol_fallback = 160, + sym_reference_label = 161, + sym__comment_no_newline = 162, + aux_sym_document_repeat1 = 163, + aux_sym_frontmatter_content_repeat1 = 164, + aux_sym__heading_content_repeat1 = 165, + aux_sym__list_dash_repeat1 = 166, + aux_sym__list_plus_repeat1 = 167, + aux_sym__list_star_repeat1 = 168, + aux_sym__list_task_repeat1 = 169, + aux_sym__list_definition_repeat1 = 170, + aux_sym__list_item_definition_repeat1 = 171, + aux_sym__list_decimal_period_repeat1 = 172, + aux_sym__list_decimal_paren_repeat1 = 173, + aux_sym__list_decimal_parens_repeat1 = 174, + aux_sym__list_lower_alpha_period_repeat1 = 175, + aux_sym__list_lower_alpha_paren_repeat1 = 176, + aux_sym__list_lower_alpha_parens_repeat1 = 177, + aux_sym__list_upper_alpha_period_repeat1 = 178, + aux_sym__list_upper_alpha_paren_repeat1 = 179, + aux_sym__list_upper_alpha_parens_repeat1 = 180, + aux_sym__list_lower_roman_period_repeat1 = 181, + aux_sym__list_lower_roman_paren_repeat1 = 182, + aux_sym__list_lower_roman_parens_repeat1 = 183, + aux_sym__list_upper_roman_period_repeat1 = 184, + aux_sym__list_upper_roman_paren_repeat1 = 185, + aux_sym__list_upper_roman_parens_repeat1 = 186, + aux_sym_table_repeat1 = 187, + aux_sym_table_separator_repeat1 = 188, + aux_sym_table_row_repeat1 = 189, + aux_sym_table_caption_repeat1 = 190, + aux_sym_footnote_content_repeat1 = 191, + aux_sym_code_repeat1 = 192, + aux_sym__block_quote_content_repeat1 = 193, + aux_sym__block_quote_prefix_repeat1 = 194, + aux_sym_block_attribute_repeat1 = 195, + aux_sym__paragraph_content_repeat1 = 196, + aux_sym__inline_repeat1 = 197, + aux_sym__comment_no_newline_repeat1 = 198, + alias_sym_args = 199, + anon_alias_sym_class = 200, + alias_sym_definition = 201, + alias_sym_language_marker = 202, + alias_sym_paragraph = 203, + alias_sym_raw_block_marker_begin = 204, + alias_sym_raw_block_marker_end = 205, + alias_sym_section_content = 206, + alias_sym_table_header = 207, }; static const char * const ts_symbol_names[] = { @@ -302,9 +299,6 @@ static const char * const ts_symbol_names[] = { [sym__footnote_end] = "_footnote_end", [sym__table_caption_begin] = "marker", [sym__table_caption_end] = "_table_caption_end", - [sym__verbatim_begin] = "_verbatim_begin", - [sym__verbatim_end] = "_verbatim_end", - [sym__verbatim_content] = "_verbatim_content", [sym__error] = "_error", [sym_document] = "document", [sym_frontmatter] = "frontmatter", @@ -516,9 +510,6 @@ static const TSSymbol ts_symbol_map[] = { [sym__footnote_end] = sym__footnote_end, [sym__table_caption_begin] = sym__heading_begin, [sym__table_caption_end] = sym__table_caption_end, - [sym__verbatim_begin] = sym__verbatim_begin, - [sym__verbatim_end] = sym__verbatim_end, - [sym__verbatim_content] = sym__verbatim_content, [sym__error] = sym__error, [sym_document] = sym_document, [sym_frontmatter] = sym_frontmatter, @@ -949,18 +940,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, - [sym__verbatim_begin] = { - .visible = false, - .named = true, - }, - [sym__verbatim_end] = { - .visible = false, - .named = true, - }, - [sym__verbatim_content] = { - .visible = false, - .named = true, - }, [sym__error] = { .visible = false, .named = true, @@ -4311,9 +4290,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__footnote_end] = ACTIONS(1), [sym__table_caption_begin] = ACTIONS(1), [sym__table_caption_end] = ACTIONS(1), - [sym__verbatim_begin] = ACTIONS(1), - [sym__verbatim_end] = ACTIONS(1), - [sym__verbatim_content] = ACTIONS(1), [sym__error] = ACTIONS(1), }, [1] = { @@ -28503,10 +28479,7 @@ enum ts_external_scanner_symbol_identifiers { ts_external_token__footnote_end = 40, ts_external_token__table_caption_begin = 41, ts_external_token__table_caption_end = 42, - ts_external_token__verbatim_begin = 43, - ts_external_token__verbatim_end = 44, - ts_external_token__verbatim_content = 45, - ts_external_token__error = 46, + ts_external_token__error = 43, }; static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { @@ -28553,9 +28526,6 @@ static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { [ts_external_token__footnote_end] = sym__footnote_end, [ts_external_token__table_caption_begin] = sym__table_caption_begin, [ts_external_token__table_caption_end] = sym__table_caption_end, - [ts_external_token__verbatim_begin] = sym__verbatim_begin, - [ts_external_token__verbatim_end] = sym__verbatim_end, - [ts_external_token__verbatim_content] = sym__verbatim_content, [ts_external_token__error] = sym__error, }; @@ -28604,9 +28574,6 @@ static const bool ts_external_scanner_states[76][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__footnote_end] = true, [ts_external_token__table_caption_begin] = true, [ts_external_token__table_caption_end] = true, - [ts_external_token__verbatim_begin] = true, - [ts_external_token__verbatim_end] = true, - [ts_external_token__verbatim_content] = true, [ts_external_token__error] = true, }, [2] = { diff --git a/tree-sitter-djot/src/scanner.c b/tree-sitter-djot/src/scanner.c index 2f85db3..53e3c83 100644 --- a/tree-sitter-djot/src/scanner.c +++ b/tree-sitter-djot/src/scanner.c @@ -59,10 +59,6 @@ typedef enum { TABLE_CAPTION_BEGIN, TABLE_CAPTION_END, - VERBATIM_BEGIN, - VERBATIM_END, - VERBATIM_CONTENT, - ERROR, } TokenType; @@ -522,76 +518,6 @@ static bool parse_code_block(Scanner *s, TSLexer *lexer, uint8_t ticks) { return true; } -static void output_verbatim_begin(Scanner *s, TSLexer *lexer, uint8_t ticks) { - lexer->mark_end(lexer); - s->verbatim_tick_count = ticks; - lexer->result_symbol = VERBATIM_BEGIN; -} - -static bool try_close_verbatim(Scanner *s, TSLexer *lexer) { - if (s->verbatim_tick_count > 0) { - s->verbatim_tick_count = 0; - lexer->result_symbol = VERBATIM_END; - return true; - } else { - return false; - } -} - -// Parsing verbatim content is also responsible for parsing VERBATIM_END. -static bool parse_verbatim_content(Scanner *s, TSLexer *lexer) { - if (s->verbatim_tick_count == 0) { - return false; - } - - uint8_t ticks = 0; - while (!lexer->eof(lexer)) { - if (lexer->lookahead == '\n') { - // We should only end verbatim if the paragraph is ended by a - // blankline. - - // Advance over the first newline. - advance(s, lexer); - // Remove any whitespace on the next line. - consume_whitespace(s, lexer); - if (lexer->eof(lexer) || lexer->lookahead == '\n') { - // Found a blankline, meaning the paragraph containing the varbatim - // should be closed. So now we can close the verbatim. - break; - } else { - // No blankline, continue parsing. - lexer->mark_end(lexer); - ticks = 0; - } - } else if (lexer->lookahead == '`') { - // If we find a `, we need to count them to see if we should stop. - uint8_t current = consume_chars(s, lexer, '`'); - if (current == s->verbatim_tick_count) { - // We found a matching number of ` - // We need to return VERBATIM_CONTENT then VERBATIM_END in the next - // scan. - s->verbatim_tick_count = 0; - set_delayed_token(s, VERBATIM_END, current); - break; - } else { - // Found a number of ` that doesn't match the start, - // we should consume them. - lexer->mark_end(lexer); - ticks = 0; - } - } else { - // Non-` token found, this we should consume. - advance(s, lexer); - lexer->mark_end(lexer); - ticks = 0; - } - } - - // Scanned all the verbatim. - lexer->result_symbol = VERBATIM_CONTENT; - return true; -} - static bool parse_backtick(Scanner *s, TSLexer *lexer, const bool *valid_symbols) { uint8_t ticks = consume_chars(s, lexer, '`'); @@ -606,12 +532,7 @@ static bool parse_backtick(Scanner *s, TSLexer *lexer, return true; } } - // VERBATIM_END is handled by `parse_verbatim_content`. - // Don't capture leading whitespace for prettier conceal. - if (valid_symbols[VERBATIM_BEGIN] && s->indent == 0) { - output_verbatim_begin(s, lexer, ticks); - return true; - } + return false; } @@ -1596,10 +1517,6 @@ static bool emit_newline_inline(Scanner *s, TSLexer *lexer, static bool parse_newline(Scanner *s, TSLexer *lexer, const bool *valid_symbols) { - if (valid_symbols[VERBATIM_END] && try_close_verbatim(s, lexer)) { - return true; - } - // Various different newline types share the `\n` consumption. if (!valid_symbols[NEWLINE] && !valid_symbols[NEWLINE_INLINE] && !valid_symbols[EOF_OR_NEWLINE]) { @@ -1722,17 +1639,6 @@ bool tree_sitter_djot_external_scanner_scan(void *payload, TSLexer *lexer, return true; } - // Verbatim content parsing is responsible for setting VERBATIM_END - // for normal instances as well. - if (valid_symbols[VERBATIM_CONTENT] && parse_verbatim_content(s, lexer)) { - return true; - } - if (valid_symbols[VERBATIM_END] && lexer->eof) { - if (try_close_verbatim(s, lexer)) { - return true; - } - } - if (parse_block_quote(s, lexer, valid_symbols)) { return true; } @@ -1971,13 +1877,6 @@ static char *token_type_s(TokenType t) { case TABLE_CAPTION_END: return "TABLE_CAPTION_END"; - case VERBATIM_BEGIN: - return "VERBATIM_BEGIN"; - case VERBATIM_END: - return "VERBATIM_END"; - case VERBATIM_CONTENT: - return "VERBATIM_CONTENT"; - case ERROR: return "ERROR"; case IGNORED: From 6cc531ac526898668e82b2e343b71899e5d723ec Mon Sep 17 00:00:00 2001 From: Jonas Hietala Date: Mon, 26 Aug 2024 09:24:27 +0200 Subject: [PATCH 06/46] WIP external scanner for emphasis attempt There's real promise here! --- tree-sitter-djot-inline/grammar.js | 30 +- tree-sitter-djot-inline/src/grammar.json | 115 +- tree-sitter-djot-inline/src/parser.c | 40457 ++++++++++----------- tree-sitter-djot-inline/src/scanner.c | 241 +- 4 files changed, 19932 insertions(+), 20911 deletions(-) diff --git a/tree-sitter-djot-inline/grammar.js b/tree-sitter-djot-inline/grammar.js index 86bbb2f..54fd04f 100644 --- a/tree-sitter-djot-inline/grammar.js +++ b/tree-sitter-djot-inline/grammar.js @@ -80,12 +80,22 @@ module.exports = grammar({ ), emphasis: ($) => - seq($.emphasis_begin, alias($._inline, $.content), $.emphasis_end), + seq( + $.emphasis_begin, + $._emphasis_begin_check, + alias($._inline, $.content), + // FIXME no space before closing `_` marker + $.emphasis_end, + $._emphasis_end_check, + ), + + emphasis_begin: (_) => "{_", + emphasis_end: (_) => "_", // Use explicit begin/end to be able to capture ending tokens with arbitrary whitespace. // Note that I couldn't replace repeat(" ") with $._whitespace for some reason... - emphasis_begin: (_) => choice(seq("{_", repeat(" ")), "_"), - emphasis_end: (_) => choice(token(seq(repeat(" "), "_}")), "_"), + // emphasis_begin: (_) => choice(seq("{_", repeat(" ")), "_"), + // emphasis_end: (_) => choice(token(seq(repeat(" "), "_}")), "_"), strong: ($) => seq($.strong_begin, alias($._inline, $.content), $.strong_end), @@ -233,7 +243,7 @@ module.exports = grammar({ // These exists to explicit trigger an LR collision with existing // prefixes. A collision isn't detected with a string and the // catch-all `_text` regex. - _symbol_fallback: (_) => + _symbol_fallback: ($) => prec.dynamic( -1000, choice( @@ -249,7 +259,8 @@ module.exports = grammar({ "{-", "{=", "{^", - "{_", + seq("{_", choice($._emphasis_begin_check, $._in_fallback)), + // "{_", "{~", "|", "~", @@ -284,6 +295,15 @@ module.exports = grammar({ $._verbatim_end, $._verbatim_content, + $.emphasis_begin_2, + $.emphasis_end_2, + $.strong_begin_2, + $.strong_end_2, + $._emphasis_begin_check, + $._emphasis_end_check, + $._in_real_emphasis, + $._in_fallback, + // Never valid and is only used to signal an internal scanner error. $._error, ], diff --git a/tree-sitter-djot-inline/src/grammar.json b/tree-sitter-djot-inline/src/grammar.json index 0ffe6fe..95f2bcc 100644 --- a/tree-sitter-djot-inline/src/grammar.json +++ b/tree-sitter-djot-inline/src/grammar.json @@ -221,6 +221,10 @@ "type": "SYMBOL", "name": "emphasis_begin" }, + { + "type": "SYMBOL", + "name": "_emphasis_begin_check" + }, { "type": "ALIAS", "content": { @@ -233,61 +237,20 @@ { "type": "SYMBOL", "name": "emphasis_end" - } - ] - }, - "emphasis_begin": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "{_" - }, - { - "type": "REPEAT", - "content": { - "type": "STRING", - "value": " " - } - } - ] }, { - "type": "STRING", - "value": "_" + "type": "SYMBOL", + "name": "_emphasis_end_check" } ] }, + "emphasis_begin": { + "type": "STRING", + "value": "{_" + }, "emphasis_end": { - "type": "CHOICE", - "members": [ - { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "REPEAT", - "content": { - "type": "STRING", - "value": " " - } - }, - { - "type": "STRING", - "value": "_}" - } - ] - } - }, - { - "type": "STRING", - "value": "_" - } - ] + "type": "STRING", + "value": "_" }, "strong": { "type": "SEQ", @@ -1237,8 +1200,26 @@ "value": "{^" }, { - "type": "STRING", - "value": "{_" + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{_" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_emphasis_begin_check" + }, + { + "type": "SYMBOL", + "name": "_in_fallback" + } + ] + } + ] }, { "type": "STRING", @@ -1452,6 +1433,38 @@ "type": "SYMBOL", "name": "_verbatim_content" }, + { + "type": "SYMBOL", + "name": "emphasis_begin_2" + }, + { + "type": "SYMBOL", + "name": "emphasis_end_2" + }, + { + "type": "SYMBOL", + "name": "strong_begin_2" + }, + { + "type": "SYMBOL", + "name": "strong_end_2" + }, + { + "type": "SYMBOL", + "name": "_emphasis_begin_check" + }, + { + "type": "SYMBOL", + "name": "_emphasis_end_check" + }, + { + "type": "SYMBOL", + "name": "_in_real_emphasis" + }, + { + "type": "SYMBOL", + "name": "_in_fallback" + }, { "type": "SYMBOL", "name": "_error" diff --git a/tree-sitter-djot-inline/src/parser.c b/tree-sitter-djot-inline/src/parser.c index ec5f8a2..dd7715d 100644 --- a/tree-sitter-djot-inline/src/parser.c +++ b/tree-sitter-djot-inline/src/parser.c @@ -13,151 +13,158 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 892 +#define STATE_COUNT 902 #define LARGE_STATE_COUNT 122 -#define SYMBOL_COUNT 125 +#define SYMBOL_COUNT 132 #define ALIAS_COUNT 10 -#define TOKEN_COUNT 70 -#define EXTERNAL_TOKEN_COUNT 5 +#define TOKEN_COUNT 77 +#define EXTERNAL_TOKEN_COUNT 13 #define FIELD_COUNT 0 -#define MAX_ALIAS_SEQUENCE_LENGTH 4 +#define MAX_ALIAS_SEQUENCE_LENGTH 5 #define PRODUCTION_ID_COUNT 10 enum ts_symbol_identifiers { anon_sym_LBRACE = 1, anon_sym_RBRACE = 2, anon_sym_LBRACE_ = 3, - anon_sym_SPACE = 4, - anon_sym__ = 5, - aux_sym_emphasis_end_token1 = 6, - anon_sym_LBRACE_STAR = 7, - anon_sym_STAR = 8, - aux_sym_strong_end_token1 = 9, - anon_sym_BSLASH = 10, - sym_quotation_marks = 11, - sym_ellipsis = 12, - sym_em_dash = 13, - sym_en_dash = 14, - sym_backslash_escape = 15, - anon_sym_LT = 16, - aux_sym_autolink_token1 = 17, - anon_sym_GT = 18, - anon_sym_LBRACE_EQ = 19, - anon_sym_EQ_RBRACE = 20, - anon_sym_LBRACE_PLUS = 21, - anon_sym_PLUS_RBRACE = 22, - anon_sym_LBRACE_DASH = 23, - anon_sym_DASH_RBRACE = 24, - sym_symbol = 25, - anon_sym_LBRACE_CARET = 26, - anon_sym_CARET = 27, - anon_sym_CARET_RBRACE = 28, - anon_sym_LBRACE_TILDE = 29, - anon_sym_TILDE = 30, - anon_sym_TILDE_RBRACE = 31, - anon_sym_LBRACK_CARET = 32, - anon_sym_RBRACK = 33, - sym__id = 34, - anon_sym_LBRACK_RBRACK = 35, - anon_sym_BANG_LBRACK = 36, - anon_sym_LBRACK = 37, - anon_sym_RBRACK2 = 38, - anon_sym_LPAREN = 39, - aux_sym_inline_link_destination_token1 = 40, - anon_sym_RPAREN = 41, - anon_sym_LBRACE2 = 42, - anon_sym_PERCENT = 43, - aux_sym__comment_with_newline_token1 = 44, - anon_sym_LBRACE_EQ2 = 45, - anon_sym_DOLLAR = 46, - anon_sym_TODO = 47, - anon_sym_WIP = 48, - anon_sym_NOTE = 49, - anon_sym_INFO = 50, - anon_sym_XXX = 51, - sym_fixme = 52, - anon_sym_PIPE = 53, - sym_language = 54, - sym__whitespace = 55, - sym__whitespace1 = 56, - sym__newline = 57, - aux_sym__text_token1 = 58, - anon_sym_DOT = 59, - sym_identifier = 60, - anon_sym_EQ = 61, - anon_sym_DQUOTE = 62, - aux_sym_value_token1 = 63, - aux_sym_value_token2 = 64, - sym__ignored = 65, - sym__verbatim_begin = 66, - sym__verbatim_end = 67, - sym__verbatim_content = 68, - sym__error = 69, - sym_inline = 70, - sym__inline = 71, - sym__element = 72, - sym_inline_attribute = 73, - sym_emphasis = 74, - sym_emphasis_begin = 75, - sym_emphasis_end = 76, - sym_strong = 77, - sym_strong_begin = 78, - sym_strong_end = 79, - sym__hard_line_break = 80, - sym_hard_line_break = 81, - sym__smart_punctuation = 82, - sym_autolink = 83, - sym_highlighted = 84, - sym_insert = 85, - sym_delete = 86, - sym_superscript = 87, - sym_subscript = 88, - sym_footnote_reference = 89, - sym_reference_label = 90, - sym__image = 91, - sym_full_reference_image = 92, - sym_collapsed_reference_image = 93, - sym_inline_image = 94, - sym__image_description = 95, - sym__link = 96, - sym_full_reference_link = 97, - sym_collapsed_reference_link = 98, - sym_inline_link = 99, - sym_link_text = 100, - sym__link_label = 101, - sym_inline_link_destination = 102, - sym_comment = 103, - sym__comment_with_spaces = 104, - sym_span = 105, - sym__comment_with_newline = 106, - sym_raw_inline = 107, - sym_raw_inline_attribute = 108, - sym_math = 109, - sym_verbatim = 110, - sym__todo_highlights = 111, - sym_todo = 112, - sym_note = 113, - sym__symbol_fallback = 114, - aux_sym__text = 115, - sym_class_name = 116, - sym_class = 117, - sym_key_value = 118, - sym_key = 119, - sym_value = 120, - aux_sym__inline_repeat1 = 121, - aux_sym_inline_attribute_repeat1 = 122, - aux_sym_emphasis_begin_repeat1 = 123, - aux_sym__comment_with_newline_repeat1 = 124, - alias_sym_args = 125, - alias_sym_footnote_marker_begin = 126, - alias_sym_footnote_marker_end = 127, - alias_sym_image_description = 128, - alias_sym_link_label = 129, - alias_sym_math_marker = 130, - alias_sym_math_marker_begin = 131, - alias_sym_math_marker_end = 132, - alias_sym_verbatim_marker_begin = 133, - alias_sym_verbatim_marker_end = 134, + anon_sym__ = 4, + anon_sym_LBRACE_STAR = 5, + anon_sym_SPACE = 6, + anon_sym_STAR = 7, + aux_sym_strong_end_token1 = 8, + anon_sym_BSLASH = 9, + sym_quotation_marks = 10, + sym_ellipsis = 11, + sym_em_dash = 12, + sym_en_dash = 13, + sym_backslash_escape = 14, + anon_sym_LT = 15, + aux_sym_autolink_token1 = 16, + anon_sym_GT = 17, + anon_sym_LBRACE_EQ = 18, + anon_sym_EQ_RBRACE = 19, + anon_sym_LBRACE_PLUS = 20, + anon_sym_PLUS_RBRACE = 21, + anon_sym_LBRACE_DASH = 22, + anon_sym_DASH_RBRACE = 23, + sym_symbol = 24, + anon_sym_LBRACE_CARET = 25, + anon_sym_CARET = 26, + anon_sym_CARET_RBRACE = 27, + anon_sym_LBRACE_TILDE = 28, + anon_sym_TILDE = 29, + anon_sym_TILDE_RBRACE = 30, + anon_sym_LBRACK_CARET = 31, + anon_sym_RBRACK = 32, + sym__id = 33, + anon_sym_LBRACK_RBRACK = 34, + anon_sym_BANG_LBRACK = 35, + anon_sym_LBRACK = 36, + anon_sym_RBRACK2 = 37, + anon_sym_LPAREN = 38, + aux_sym_inline_link_destination_token1 = 39, + anon_sym_RPAREN = 40, + anon_sym_LBRACE2 = 41, + anon_sym_PERCENT = 42, + aux_sym__comment_with_newline_token1 = 43, + anon_sym_LBRACE_EQ2 = 44, + anon_sym_DOLLAR = 45, + anon_sym_TODO = 46, + anon_sym_WIP = 47, + anon_sym_NOTE = 48, + anon_sym_INFO = 49, + anon_sym_XXX = 50, + sym_fixme = 51, + anon_sym_PIPE = 52, + sym_language = 53, + sym__whitespace = 54, + sym__whitespace1 = 55, + sym__newline = 56, + aux_sym__text_token1 = 57, + anon_sym_DOT = 58, + sym_identifier = 59, + anon_sym_EQ = 60, + anon_sym_DQUOTE = 61, + aux_sym_value_token1 = 62, + aux_sym_value_token2 = 63, + sym__ignored = 64, + sym__verbatim_begin = 65, + sym__verbatim_end = 66, + sym__verbatim_content = 67, + sym_emphasis_begin_2 = 68, + sym_emphasis_end_2 = 69, + sym_strong_begin_2 = 70, + sym_strong_end_2 = 71, + sym__emphasis_begin_check = 72, + sym__emphasis_end_check = 73, + sym__in_real_emphasis = 74, + sym__in_fallback = 75, + sym__error = 76, + sym_inline = 77, + sym__inline = 78, + sym__element = 79, + sym_inline_attribute = 80, + sym_emphasis = 81, + sym_emphasis_begin = 82, + sym_emphasis_end = 83, + sym_strong = 84, + sym_strong_begin = 85, + sym_strong_end = 86, + sym__hard_line_break = 87, + sym_hard_line_break = 88, + sym__smart_punctuation = 89, + sym_autolink = 90, + sym_highlighted = 91, + sym_insert = 92, + sym_delete = 93, + sym_superscript = 94, + sym_subscript = 95, + sym_footnote_reference = 96, + sym_reference_label = 97, + sym__image = 98, + sym_full_reference_image = 99, + sym_collapsed_reference_image = 100, + sym_inline_image = 101, + sym__image_description = 102, + sym__link = 103, + sym_full_reference_link = 104, + sym_collapsed_reference_link = 105, + sym_inline_link = 106, + sym_link_text = 107, + sym__link_label = 108, + sym_inline_link_destination = 109, + sym_comment = 110, + sym__comment_with_spaces = 111, + sym_span = 112, + sym__comment_with_newline = 113, + sym_raw_inline = 114, + sym_raw_inline_attribute = 115, + sym_math = 116, + sym_verbatim = 117, + sym__todo_highlights = 118, + sym_todo = 119, + sym_note = 120, + sym__symbol_fallback = 121, + aux_sym__text = 122, + sym_class_name = 123, + sym_class = 124, + sym_key_value = 125, + sym_key = 126, + sym_value = 127, + aux_sym__inline_repeat1 = 128, + aux_sym_inline_attribute_repeat1 = 129, + aux_sym_strong_begin_repeat1 = 130, + aux_sym__comment_with_newline_repeat1 = 131, + alias_sym_args = 132, + alias_sym_footnote_marker_begin = 133, + alias_sym_footnote_marker_end = 134, + alias_sym_image_description = 135, + alias_sym_link_label = 136, + alias_sym_math_marker = 137, + alias_sym_math_marker_begin = 138, + alias_sym_math_marker_end = 139, + alias_sym_verbatim_marker_begin = 140, + alias_sym_verbatim_marker_end = 141, }; static const char * const ts_symbol_names[] = { @@ -165,10 +172,9 @@ static const char * const ts_symbol_names[] = { [anon_sym_LBRACE] = "{", [anon_sym_RBRACE] = "}", [anon_sym_LBRACE_] = "{_", - [anon_sym_SPACE] = " ", [anon_sym__] = "_", - [aux_sym_emphasis_end_token1] = "emphasis_end_token1", [anon_sym_LBRACE_STAR] = "{*", + [anon_sym_SPACE] = " ", [anon_sym_STAR] = "*", [aux_sym_strong_end_token1] = "strong_end_token1", [anon_sym_BSLASH] = "\\", @@ -230,6 +236,14 @@ static const char * const ts_symbol_names[] = { [sym__verbatim_begin] = "raw_inline_marker_begin", [sym__verbatim_end] = "raw_inline_marker_end", [sym__verbatim_content] = "content", + [sym_emphasis_begin_2] = "emphasis_begin_2", + [sym_emphasis_end_2] = "emphasis_end_2", + [sym_strong_begin_2] = "strong_begin_2", + [sym_strong_end_2] = "strong_end_2", + [sym__emphasis_begin_check] = "_emphasis_begin_check", + [sym__emphasis_end_check] = "_emphasis_end_check", + [sym__in_real_emphasis] = "_in_real_emphasis", + [sym__in_fallback] = "_in_fallback", [sym__error] = "_error", [sym_inline] = "inline", [sym__inline] = "_inline", @@ -284,7 +298,7 @@ static const char * const ts_symbol_names[] = { [sym_value] = "value", [aux_sym__inline_repeat1] = "_inline_repeat1", [aux_sym_inline_attribute_repeat1] = "inline_attribute_repeat1", - [aux_sym_emphasis_begin_repeat1] = "emphasis_begin_repeat1", + [aux_sym_strong_begin_repeat1] = "strong_begin_repeat1", [aux_sym__comment_with_newline_repeat1] = "_comment_with_newline_repeat1", [alias_sym_args] = "args", [alias_sym_footnote_marker_begin] = "footnote_marker_begin", @@ -303,10 +317,9 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_LBRACE] = anon_sym_LBRACE, [anon_sym_RBRACE] = anon_sym_RBRACE, [anon_sym_LBRACE_] = anon_sym_LBRACE_, - [anon_sym_SPACE] = anon_sym_SPACE, [anon_sym__] = anon_sym__, - [aux_sym_emphasis_end_token1] = aux_sym_emphasis_end_token1, [anon_sym_LBRACE_STAR] = anon_sym_LBRACE_STAR, + [anon_sym_SPACE] = anon_sym_SPACE, [anon_sym_STAR] = anon_sym_STAR, [aux_sym_strong_end_token1] = aux_sym_strong_end_token1, [anon_sym_BSLASH] = anon_sym_BSLASH, @@ -368,6 +381,14 @@ static const TSSymbol ts_symbol_map[] = { [sym__verbatim_begin] = sym__verbatim_begin, [sym__verbatim_end] = sym__verbatim_end, [sym__verbatim_content] = sym__verbatim_content, + [sym_emphasis_begin_2] = sym_emphasis_begin_2, + [sym_emphasis_end_2] = sym_emphasis_end_2, + [sym_strong_begin_2] = sym_strong_begin_2, + [sym_strong_end_2] = sym_strong_end_2, + [sym__emphasis_begin_check] = sym__emphasis_begin_check, + [sym__emphasis_end_check] = sym__emphasis_end_check, + [sym__in_real_emphasis] = sym__in_real_emphasis, + [sym__in_fallback] = sym__in_fallback, [sym__error] = sym__error, [sym_inline] = sym_inline, [sym__inline] = sym__inline, @@ -422,7 +443,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_value] = sym_value, [aux_sym__inline_repeat1] = aux_sym__inline_repeat1, [aux_sym_inline_attribute_repeat1] = aux_sym_inline_attribute_repeat1, - [aux_sym_emphasis_begin_repeat1] = aux_sym_emphasis_begin_repeat1, + [aux_sym_strong_begin_repeat1] = aux_sym_strong_begin_repeat1, [aux_sym__comment_with_newline_repeat1] = aux_sym__comment_with_newline_repeat1, [alias_sym_args] = alias_sym_args, [alias_sym_footnote_marker_begin] = alias_sym_footnote_marker_begin, @@ -453,19 +474,15 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_SPACE] = { - .visible = true, - .named = false, - }, [anon_sym__] = { .visible = true, .named = false, }, - [aux_sym_emphasis_end_token1] = { - .visible = false, + [anon_sym_LBRACE_STAR] = { + .visible = true, .named = false, }, - [anon_sym_LBRACE_STAR] = { + [anon_sym_SPACE] = { .visible = true, .named = false, }, @@ -713,6 +730,38 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_emphasis_begin_2] = { + .visible = true, + .named = true, + }, + [sym_emphasis_end_2] = { + .visible = true, + .named = true, + }, + [sym_strong_begin_2] = { + .visible = true, + .named = true, + }, + [sym_strong_end_2] = { + .visible = true, + .named = true, + }, + [sym__emphasis_begin_check] = { + .visible = false, + .named = true, + }, + [sym__emphasis_end_check] = { + .visible = false, + .named = true, + }, + [sym__in_real_emphasis] = { + .visible = false, + .named = true, + }, + [sym__in_fallback] = { + .visible = false, + .named = true, + }, [sym__error] = { .visible = false, .named = true, @@ -929,7 +978,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_emphasis_begin_repeat1] = { + [aux_sym_strong_begin_repeat1] = { .visible = false, .named = false, }, @@ -1043,888 +1092,898 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [7] = 2, [8] = 2, [9] = 2, - [10] = 2, + [10] = 10, [11] = 11, [12] = 12, - [13] = 13, - [14] = 14, - [15] = 12, + [13] = 11, + [14] = 10, + [15] = 15, [16] = 16, - [17] = 11, + [17] = 16, [18] = 18, - [19] = 13, - [20] = 13, - [21] = 14, + [19] = 15, + [20] = 18, + [21] = 11, [22] = 12, - [23] = 16, - [24] = 11, - [25] = 2, - [26] = 18, - [27] = 11, + [23] = 18, + [24] = 12, + [25] = 11, + [26] = 10, + [27] = 15, [28] = 16, - [29] = 11, + [29] = 18, [30] = 12, - [31] = 14, - [32] = 13, - [33] = 14, - [34] = 12, + [31] = 11, + [32] = 10, + [33] = 15, + [34] = 16, [35] = 16, - [36] = 11, - [37] = 13, - [38] = 18, - [39] = 18, - [40] = 14, + [36] = 18, + [37] = 12, + [38] = 16, + [39] = 15, + [40] = 10, [41] = 18, - [42] = 18, - [43] = 11, - [44] = 16, - [45] = 16, - [46] = 12, - [47] = 12, - [48] = 13, - [49] = 14, - [50] = 18, - [51] = 16, - [52] = 13, - [53] = 14, - [54] = 11, - [55] = 16, - [56] = 12, - [57] = 14, - [58] = 13, - [59] = 12, - [60] = 18, - [61] = 16, - [62] = 11, - [63] = 11, + [42] = 12, + [43] = 18, + [44] = 12, + [45] = 11, + [46] = 10, + [47] = 15, + [48] = 18, + [49] = 16, + [50] = 11, + [51] = 2, + [52] = 18, + [53] = 16, + [54] = 15, + [55] = 10, + [56] = 11, + [57] = 12, + [58] = 2, + [59] = 11, + [60] = 10, + [61] = 10, + [62] = 15, + [63] = 12, [64] = 16, - [65] = 12, - [66] = 14, - [67] = 13, - [68] = 13, - [69] = 18, - [70] = 18, - [71] = 14, + [65] = 15, + [66] = 12, + [67] = 11, + [68] = 18, + [69] = 10, + [70] = 15, + [71] = 16, [72] = 72, - [73] = 73, + [73] = 72, [74] = 74, - [75] = 72, + [75] = 75, [76] = 74, - [77] = 73, + [77] = 74, [78] = 72, - [79] = 73, + [79] = 75, [80] = 74, - [81] = 81, - [82] = 82, - [83] = 72, + [81] = 74, + [82] = 74, + [83] = 74, [84] = 74, - [85] = 73, - [86] = 81, - [87] = 73, - [88] = 74, - [89] = 82, - [90] = 72, - [91] = 81, - [92] = 82, + [85] = 75, + [86] = 75, + [87] = 87, + [88] = 72, + [89] = 89, + [90] = 89, + [91] = 87, + [92] = 89, [93] = 72, - [94] = 81, - [95] = 82, - [96] = 72, - [97] = 81, - [98] = 74, - [99] = 82, - [100] = 73, - [101] = 81, - [102] = 74, - [103] = 73, - [104] = 82, - [105] = 82, - [106] = 81, + [94] = 87, + [95] = 75, + [96] = 89, + [97] = 72, + [98] = 75, + [99] = 74, + [100] = 87, + [101] = 75, + [102] = 87, + [103] = 74, + [104] = 89, + [105] = 72, + [106] = 87, [107] = 72, - [108] = 81, - [109] = 82, - [110] = 72, - [111] = 81, - [112] = 82, - [113] = 74, - [114] = 72, - [115] = 81, - [116] = 73, - [117] = 82, - [118] = 74, - [119] = 73, - [120] = 73, - [121] = 74, + [108] = 89, + [109] = 87, + [110] = 89, + [111] = 75, + [112] = 87, + [113] = 72, + [114] = 89, + [115] = 87, + [116] = 75, + [117] = 89, + [118] = 87, + [119] = 89, + [120] = 75, + [121] = 72, [122] = 122, - [123] = 123, + [123] = 122, [124] = 124, - [125] = 123, - [126] = 123, - [127] = 122, - [128] = 128, + [125] = 125, + [126] = 122, + [127] = 127, + [128] = 124, [129] = 122, - [130] = 123, - [131] = 128, - [132] = 132, - [133] = 124, - [134] = 132, + [130] = 125, + [131] = 125, + [132] = 125, + [133] = 122, + [134] = 125, [135] = 124, - [136] = 132, + [136] = 124, [137] = 124, - [138] = 132, - [139] = 124, + [138] = 127, + [139] = 127, [140] = 122, - [141] = 128, - [142] = 128, - [143] = 128, - [144] = 123, - [145] = 128, - [146] = 132, - [147] = 124, - [148] = 132, - [149] = 132, - [150] = 123, - [151] = 122, - [152] = 128, - [153] = 124, - [154] = 123, - [155] = 132, - [156] = 132, - [157] = 122, - [158] = 128, - [159] = 124, - [160] = 122, - [161] = 122, - [162] = 128, - [163] = 124, - [164] = 124, - [165] = 123, - [166] = 122, - [167] = 122, - [168] = 123, - [169] = 123, - [170] = 128, - [171] = 132, - [172] = 172, - [173] = 173, - [174] = 174, - [175] = 174, - [176] = 172, - [177] = 172, - [178] = 174, - [179] = 174, - [180] = 173, - [181] = 173, - [182] = 174, - [183] = 174, - [184] = 172, - [185] = 173, - [186] = 172, - [187] = 172, - [188] = 172, - [189] = 174, - [190] = 173, - [191] = 173, - [192] = 173, - [193] = 173, - [194] = 172, - [195] = 173, - [196] = 172, - [197] = 174, - [198] = 174, - [199] = 173, - [200] = 174, - [201] = 172, + [141] = 122, + [142] = 124, + [143] = 127, + [144] = 125, + [145] = 127, + [146] = 125, + [147] = 122, + [148] = 127, + [149] = 124, + [150] = 124, + [151] = 125, + [152] = 127, + [153] = 127, + [154] = 124, + [155] = 122, + [156] = 125, + [157] = 127, + [158] = 158, + [159] = 159, + [160] = 158, + [161] = 159, + [162] = 158, + [163] = 163, + [164] = 158, + [165] = 163, + [166] = 159, + [167] = 163, + [168] = 158, + [169] = 122, + [170] = 124, + [171] = 125, + [172] = 159, + [173] = 159, + [174] = 159, + [175] = 163, + [176] = 158, + [177] = 127, + [178] = 158, + [179] = 159, + [180] = 163, + [181] = 158, + [182] = 163, + [183] = 158, + [184] = 163, + [185] = 163, + [186] = 159, + [187] = 163, + [188] = 159, + [189] = 189, + [190] = 190, + [191] = 191, + [192] = 192, + [193] = 193, + [194] = 194, + [195] = 195, + [196] = 196, + [197] = 197, + [198] = 198, + [199] = 199, + [200] = 200, + [201] = 201, [202] = 202, [203] = 203, [204] = 204, - [205] = 203, - [206] = 202, + [205] = 205, + [206] = 206, [207] = 207, [208] = 208, [209] = 209, [210] = 210, - [211] = 211, + [211] = 190, [212] = 212, [213] = 213, [214] = 214, [215] = 215, - [216] = 216, + [216] = 189, [217] = 217, [218] = 218, [219] = 219, [220] = 220, [221] = 221, [222] = 222, - [223] = 223, + [223] = 204, [224] = 224, - [225] = 225, - [226] = 226, - [227] = 227, - [228] = 228, - [229] = 229, - [230] = 230, - [231] = 231, - [232] = 232, - [233] = 233, - [234] = 234, - [235] = 207, - [236] = 215, - [237] = 228, - [238] = 238, - [239] = 204, - [240] = 203, - [241] = 202, - [242] = 238, - [243] = 208, - [244] = 209, - [245] = 210, - [246] = 211, - [247] = 212, - [248] = 213, - [249] = 214, - [250] = 204, - [251] = 216, - [252] = 217, - [253] = 218, - [254] = 219, - [255] = 220, - [256] = 221, - [257] = 222, - [258] = 223, - [259] = 224, - [260] = 225, - [261] = 226, - [262] = 227, - [263] = 203, - [264] = 229, - [265] = 230, - [266] = 231, - [267] = 232, - [268] = 233, - [269] = 234, - [270] = 204, - [271] = 207, - [272] = 228, - [273] = 215, - [274] = 215, - [275] = 207, - [276] = 234, - [277] = 233, - [278] = 232, - [279] = 231, - [280] = 230, - [281] = 229, - [282] = 282, - [283] = 227, - [284] = 228, - [285] = 238, - [286] = 204, - [287] = 203, - [288] = 226, - [289] = 225, - [290] = 202, - [291] = 291, - [292] = 208, - [293] = 209, + [225] = 191, + [226] = 192, + [227] = 193, + [228] = 194, + [229] = 195, + [230] = 196, + [231] = 197, + [232] = 198, + [233] = 199, + [234] = 200, + [235] = 201, + [236] = 202, + [237] = 203, + [238] = 212, + [239] = 205, + [240] = 206, + [241] = 207, + [242] = 208, + [243] = 209, + [244] = 210, + [245] = 190, + [246] = 204, + [247] = 213, + [248] = 214, + [249] = 215, + [250] = 189, + [251] = 217, + [252] = 218, + [253] = 219, + [254] = 220, + [255] = 221, + [256] = 222, + [257] = 212, + [258] = 224, + [259] = 191, + [260] = 192, + [261] = 193, + [262] = 194, + [263] = 195, + [264] = 196, + [265] = 201, + [266] = 197, + [267] = 204, + [268] = 222, + [269] = 221, + [270] = 220, + [271] = 219, + [272] = 218, + [273] = 217, + [274] = 189, + [275] = 215, + [276] = 214, + [277] = 198, + [278] = 199, + [279] = 200, + [280] = 201, + [281] = 213, + [282] = 212, + [283] = 202, + [284] = 203, + [285] = 204, + [286] = 205, + [287] = 206, + [288] = 207, + [289] = 208, + [290] = 209, + [291] = 210, + [292] = 190, + [293] = 190, [294] = 210, - [295] = 211, + [295] = 209, [296] = 212, [297] = 213, [298] = 214, - [299] = 224, - [300] = 223, - [301] = 222, - [302] = 202, - [303] = 216, - [304] = 217, - [305] = 218, - [306] = 219, - [307] = 220, - [308] = 221, - [309] = 222, - [310] = 223, - [311] = 224, - [312] = 225, - [313] = 226, - [314] = 227, - [315] = 315, - [316] = 229, - [317] = 230, - [318] = 231, - [319] = 232, - [320] = 233, - [321] = 234, - [322] = 221, - [323] = 207, - [324] = 220, - [325] = 215, - [326] = 219, - [327] = 218, - [328] = 217, - [329] = 216, - [330] = 330, - [331] = 214, - [332] = 213, - [333] = 212, - [334] = 211, - [335] = 210, - [336] = 228, - [337] = 238, - [338] = 204, - [339] = 203, + [299] = 215, + [300] = 189, + [301] = 217, + [302] = 218, + [303] = 219, + [304] = 220, + [305] = 221, + [306] = 222, + [307] = 204, + [308] = 224, + [309] = 191, + [310] = 192, + [311] = 193, + [312] = 194, + [313] = 195, + [314] = 196, + [315] = 208, + [316] = 197, + [317] = 207, + [318] = 206, + [319] = 205, + [320] = 212, + [321] = 203, + [322] = 202, + [323] = 197, + [324] = 200, + [325] = 199, + [326] = 198, + [327] = 198, + [328] = 199, + [329] = 200, + [330] = 201, + [331] = 197, + [332] = 198, + [333] = 202, + [334] = 203, + [335] = 204, + [336] = 205, + [337] = 206, + [338] = 207, + [339] = 208, [340] = 209, - [341] = 208, - [342] = 202, - [343] = 315, - [344] = 208, - [345] = 209, - [346] = 210, - [347] = 211, - [348] = 212, - [349] = 213, - [350] = 214, - [351] = 330, - [352] = 202, - [353] = 203, - [354] = 315, - [355] = 216, - [356] = 217, - [357] = 218, - [358] = 219, - [359] = 220, - [360] = 221, - [361] = 222, - [362] = 223, - [363] = 224, - [364] = 225, - [365] = 226, - [366] = 227, - [367] = 330, - [368] = 229, - [369] = 230, - [370] = 231, - [371] = 232, - [372] = 233, - [373] = 234, - [374] = 228, - [375] = 207, - [376] = 238, - [377] = 215, - [378] = 315, - [379] = 215, - [380] = 207, - [381] = 330, - [382] = 315, - [383] = 330, - [384] = 315, - [385] = 234, - [386] = 330, - [387] = 315, - [388] = 228, - [389] = 238, - [390] = 204, - [391] = 203, - [392] = 330, - [393] = 315, - [394] = 202, - [395] = 330, - [396] = 208, - [397] = 209, - [398] = 210, - [399] = 211, - [400] = 212, - [401] = 213, - [402] = 214, - [403] = 315, - [404] = 330, - [405] = 234, - [406] = 233, - [407] = 216, - [408] = 217, - [409] = 218, - [410] = 219, - [411] = 220, - [412] = 221, - [413] = 222, - [414] = 223, - [415] = 224, - [416] = 225, - [417] = 226, - [418] = 227, - [419] = 232, - [420] = 229, - [421] = 230, - [422] = 231, - [423] = 232, - [424] = 233, - [425] = 234, - [426] = 233, - [427] = 207, - [428] = 232, - [429] = 215, - [430] = 231, - [431] = 230, - [432] = 229, - [433] = 231, - [434] = 230, - [435] = 229, - [436] = 315, - [437] = 227, - [438] = 226, - [439] = 227, - [440] = 228, - [441] = 238, - [442] = 204, - [443] = 203, - [444] = 225, - [445] = 224, - [446] = 223, - [447] = 222, - [448] = 208, - [449] = 209, - [450] = 210, - [451] = 211, - [452] = 212, - [453] = 213, - [454] = 214, - [455] = 226, - [456] = 225, - [457] = 224, - [458] = 221, - [459] = 216, - [460] = 217, - [461] = 218, - [462] = 219, - [463] = 220, - [464] = 221, - [465] = 222, - [466] = 223, - [467] = 224, - [468] = 225, - [469] = 226, - [470] = 227, - [471] = 220, - [472] = 229, - [473] = 230, - [474] = 231, - [475] = 232, - [476] = 233, - [477] = 234, - [478] = 223, - [479] = 207, - [480] = 219, - [481] = 215, - [482] = 218, - [483] = 217, - [484] = 216, - [485] = 222, - [486] = 221, - [487] = 220, - [488] = 219, - [489] = 218, - [490] = 217, - [491] = 216, - [492] = 228, - [493] = 238, - [494] = 204, - [495] = 203, - [496] = 330, - [497] = 214, - [498] = 202, - [499] = 213, - [500] = 208, - [501] = 209, - [502] = 210, - [503] = 211, - [504] = 212, - [505] = 213, - [506] = 214, - [507] = 212, - [508] = 211, - [509] = 210, - [510] = 209, - [511] = 216, - [512] = 217, - [513] = 218, - [514] = 219, - [515] = 220, - [516] = 221, - [517] = 222, - [518] = 223, - [519] = 224, - [520] = 225, - [521] = 226, - [522] = 227, - [523] = 208, - [524] = 229, - [525] = 230, - [526] = 231, - [527] = 232, - [528] = 233, - [529] = 234, - [530] = 202, - [531] = 207, - [532] = 208, - [533] = 215, - [534] = 238, - [535] = 535, - [536] = 214, - [537] = 213, - [538] = 212, - [539] = 211, + [341] = 210, + [342] = 190, + [343] = 199, + [344] = 200, + [345] = 201, + [346] = 212, + [347] = 213, + [348] = 214, + [349] = 215, + [350] = 189, + [351] = 217, + [352] = 218, + [353] = 219, + [354] = 220, + [355] = 221, + [356] = 222, + [357] = 204, + [358] = 224, + [359] = 191, + [360] = 192, + [361] = 193, + [362] = 194, + [363] = 195, + [364] = 196, + [365] = 196, + [366] = 197, + [367] = 195, + [368] = 224, + [369] = 202, + [370] = 370, + [371] = 203, + [372] = 212, + [373] = 196, + [374] = 195, + [375] = 194, + [376] = 193, + [377] = 198, + [378] = 199, + [379] = 200, + [380] = 201, + [381] = 194, + [382] = 193, + [383] = 202, + [384] = 203, + [385] = 192, + [386] = 205, + [387] = 206, + [388] = 207, + [389] = 208, + [390] = 209, + [391] = 210, + [392] = 191, + [393] = 192, + [394] = 191, + [395] = 224, + [396] = 224, + [397] = 213, + [398] = 214, + [399] = 215, + [400] = 189, + [401] = 217, + [402] = 218, + [403] = 219, + [404] = 220, + [405] = 221, + [406] = 222, + [407] = 222, + [408] = 224, + [409] = 191, + [410] = 192, + [411] = 193, + [412] = 194, + [413] = 195, + [414] = 196, + [415] = 221, + [416] = 197, + [417] = 220, + [418] = 219, + [419] = 218, + [420] = 217, + [421] = 189, + [422] = 222, + [423] = 215, + [424] = 214, + [425] = 213, + [426] = 221, + [427] = 198, + [428] = 199, + [429] = 200, + [430] = 201, + [431] = 220, + [432] = 190, + [433] = 202, + [434] = 203, + [435] = 210, + [436] = 205, + [437] = 206, + [438] = 207, + [439] = 208, + [440] = 209, + [441] = 210, + [442] = 190, + [443] = 209, + [444] = 208, + [445] = 207, + [446] = 206, + [447] = 213, + [448] = 214, + [449] = 215, + [450] = 205, + [451] = 217, + [452] = 218, + [453] = 219, + [454] = 220, + [455] = 221, + [456] = 222, + [457] = 203, + [458] = 224, + [459] = 191, + [460] = 192, + [461] = 193, + [462] = 194, + [463] = 195, + [464] = 196, + [465] = 219, + [466] = 202, + [467] = 163, + [468] = 158, + [469] = 218, + [470] = 217, + [471] = 189, + [472] = 215, + [473] = 214, + [474] = 213, + [475] = 205, + [476] = 201, + [477] = 200, + [478] = 199, + [479] = 198, + [480] = 206, + [481] = 207, + [482] = 208, + [483] = 209, + [484] = 210, + [485] = 190, + [486] = 486, + [487] = 197, + [488] = 204, + [489] = 212, + [490] = 159, + [491] = 212, + [492] = 206, + [493] = 209, + [494] = 494, + [495] = 212, + [496] = 208, + [497] = 213, + [498] = 214, + [499] = 215, + [500] = 189, + [501] = 217, + [502] = 218, + [503] = 219, + [504] = 220, + [505] = 221, + [506] = 222, + [507] = 207, + [508] = 224, + [509] = 191, + [510] = 192, + [511] = 193, + [512] = 204, + [513] = 195, + [514] = 196, + [515] = 212, + [516] = 204, + [517] = 212, + [518] = 205, + [519] = 494, + [520] = 203, + [521] = 202, + [522] = 212, + [523] = 204, + [524] = 204, + [525] = 201, + [526] = 212, + [527] = 200, + [528] = 199, + [529] = 198, + [530] = 494, + [531] = 494, + [532] = 212, + [533] = 197, + [534] = 204, + [535] = 494, + [536] = 204, + [537] = 212, + [538] = 494, + [539] = 494, [540] = 210, [541] = 204, - [542] = 209, - [543] = 238, - [544] = 228, - [545] = 315, - [546] = 546, - [547] = 330, - [548] = 315, - [549] = 330, - [550] = 315, - [551] = 546, - [552] = 315, - [553] = 330, - [554] = 330, - [555] = 546, - [556] = 330, - [557] = 546, - [558] = 315, - [559] = 546, - [560] = 546, - [561] = 315, - [562] = 330, - [563] = 315, - [564] = 546, - [565] = 546, - [566] = 330, - [567] = 315, - [568] = 330, - [569] = 546, - [570] = 315, - [571] = 546, - [572] = 330, - [573] = 330, - [574] = 315, - [575] = 575, - [576] = 576, - [577] = 575, - [578] = 578, - [579] = 576, - [580] = 576, - [581] = 576, - [582] = 575, - [583] = 575, - [584] = 576, - [585] = 576, - [586] = 575, - [587] = 575, - [588] = 575, - [589] = 576, - [590] = 575, - [591] = 575, - [592] = 576, - [593] = 576, - [594] = 576, - [595] = 575, - [596] = 576, - [597] = 576, - [598] = 576, - [599] = 576, - [600] = 575, - [601] = 576, - [602] = 575, - [603] = 575, - [604] = 576, - [605] = 576, - [606] = 575, - [607] = 575, - [608] = 576, - [609] = 575, - [610] = 576, - [611] = 575, - [612] = 576, - [613] = 575, - [614] = 575, - [615] = 575, - [616] = 616, - [617] = 617, + [542] = 194, + [543] = 190, + [544] = 204, + [545] = 212, + [546] = 494, + [547] = 494, + [548] = 212, + [549] = 204, + [550] = 204, + [551] = 212, + [552] = 494, + [553] = 204, + [554] = 554, + [555] = 554, + [556] = 554, + [557] = 557, + [558] = 558, + [559] = 554, + [560] = 554, + [561] = 558, + [562] = 554, + [563] = 558, + [564] = 558, + [565] = 558, + [566] = 558, + [567] = 558, + [568] = 554, + [569] = 558, + [570] = 554, + [571] = 558, + [572] = 558, + [573] = 554, + [574] = 558, + [575] = 558, + [576] = 554, + [577] = 554, + [578] = 558, + [579] = 554, + [580] = 554, + [581] = 554, + [582] = 554, + [583] = 558, + [584] = 554, + [585] = 558, + [586] = 554, + [587] = 558, + [588] = 554, + [589] = 558, + [590] = 558, + [591] = 554, + [592] = 558, + [593] = 554, + [594] = 558, + [595] = 595, + [596] = 596, + [597] = 597, + [598] = 598, + [599] = 599, + [600] = 600, + [601] = 601, + [602] = 602, + [603] = 603, + [604] = 604, + [605] = 605, + [606] = 604, + [607] = 607, + [608] = 605, + [609] = 607, + [610] = 607, + [611] = 605, + [612] = 605, + [613] = 607, + [614] = 605, + [615] = 604, + [616] = 607, + [617] = 604, [618] = 618, - [619] = 619, - [620] = 620, - [621] = 621, - [622] = 622, - [623] = 623, - [624] = 624, - [625] = 625, - [626] = 626, - [627] = 626, - [628] = 625, - [629] = 629, - [630] = 625, - [631] = 626, - [632] = 629, - [633] = 629, - [634] = 625, - [635] = 629, - [636] = 626, + [619] = 607, + [620] = 605, + [621] = 604, + [622] = 607, + [623] = 604, + [624] = 605, + [625] = 604, + [626] = 607, + [627] = 604, + [628] = 607, + [629] = 605, + [630] = 604, + [631] = 604, + [632] = 607, + [633] = 605, + [634] = 605, + [635] = 635, + [636] = 636, [637] = 637, - [638] = 629, - [639] = 629, - [640] = 625, - [641] = 629, - [642] = 625, - [643] = 626, - [644] = 644, - [645] = 625, - [646] = 626, - [647] = 626, - [648] = 626, - [649] = 626, - [650] = 629, - [651] = 626, - [652] = 625, - [653] = 629, - [654] = 625, - [655] = 625, - [656] = 629, - [657] = 657, - [658] = 658, + [638] = 638, + [639] = 639, + [640] = 638, + [641] = 638, + [642] = 638, + [643] = 638, + [644] = 638, + [645] = 638, + [646] = 638, + [647] = 638, + [648] = 648, + [649] = 638, + [650] = 650, + [651] = 651, + [652] = 652, + [653] = 651, + [654] = 654, + [655] = 652, + [656] = 654, + [657] = 651, + [658] = 652, [659] = 659, [660] = 660, - [661] = 659, - [662] = 662, - [663] = 663, + [661] = 661, + [662] = 651, + [663] = 661, [664] = 659, - [665] = 663, - [666] = 663, - [667] = 663, - [668] = 659, - [669] = 663, - [670] = 670, - [671] = 663, - [672] = 663, - [673] = 659, - [674] = 659, - [675] = 663, - [676] = 659, - [677] = 663, - [678] = 663, - [679] = 659, + [665] = 659, + [666] = 652, + [667] = 661, + [668] = 654, + [669] = 661, + [670] = 654, + [671] = 652, + [672] = 651, + [673] = 654, + [674] = 652, + [675] = 651, + [676] = 654, + [677] = 659, + [678] = 651, + [679] = 661, [680] = 659, - [681] = 659, - [682] = 682, - [683] = 682, - [684] = 684, - [685] = 685, - [686] = 684, - [687] = 682, - [688] = 684, - [689] = 684, - [690] = 690, - [691] = 684, - [692] = 684, - [693] = 684, - [694] = 684, - [695] = 690, - [696] = 682, - [697] = 690, - [698] = 684, - [699] = 682, - [700] = 684, - [701] = 690, - [702] = 682, - [703] = 690, - [704] = 690, - [705] = 690, - [706] = 690, - [707] = 682, - [708] = 682, - [709] = 682, - [710] = 690, - [711] = 682, - [712] = 690, + [681] = 661, + [682] = 654, + [683] = 661, + [684] = 659, + [685] = 652, + [686] = 652, + [687] = 651, + [688] = 652, + [689] = 659, + [690] = 659, + [691] = 661, + [692] = 654, + [693] = 651, + [694] = 661, + [695] = 654, + [696] = 659, + [697] = 654, + [698] = 652, + [699] = 651, + [700] = 661, + [701] = 659, + [702] = 702, + [703] = 703, + [704] = 704, + [705] = 705, + [706] = 706, + [707] = 707, + [708] = 706, + [709] = 709, + [710] = 710, + [711] = 702, + [712] = 712, [713] = 713, [714] = 714, [715] = 715, [716] = 716, [717] = 717, - [718] = 718, - [719] = 719, - [720] = 720, - [721] = 721, + [718] = 704, + [719] = 705, + [720] = 706, + [721] = 707, [722] = 722, - [723] = 722, - [724] = 720, - [725] = 719, - [726] = 726, - [727] = 721, - [728] = 728, - [729] = 718, - [730] = 717, - [731] = 716, - [732] = 715, + [723] = 709, + [724] = 710, + [725] = 702, + [726] = 712, + [727] = 715, + [728] = 716, + [729] = 713, + [730] = 715, + [731] = 731, + [732] = 714, [733] = 714, - [734] = 713, - [735] = 715, - [736] = 716, - [737] = 717, - [738] = 718, + [734] = 715, + [735] = 716, + [736] = 717, + [737] = 704, + [738] = 705, [739] = 713, - [740] = 714, - [741] = 721, - [742] = 728, - [743] = 722, - [744] = 720, - [745] = 719, - [746] = 726, - [747] = 728, - [748] = 726, - [749] = 719, - [750] = 714, + [740] = 706, + [741] = 712, + [742] = 702, + [743] = 707, + [744] = 744, + [745] = 709, + [746] = 710, + [747] = 710, + [748] = 712, + [749] = 710, + [750] = 709, [751] = 713, - [752] = 715, - [753] = 716, - [754] = 717, - [755] = 718, - [756] = 720, - [757] = 722, - [758] = 721, - [759] = 721, - [760] = 722, - [761] = 720, - [762] = 719, - [763] = 726, - [764] = 728, - [765] = 718, + [752] = 707, + [753] = 706, + [754] = 705, + [755] = 714, + [756] = 715, + [757] = 716, + [758] = 717, + [759] = 704, + [760] = 705, + [761] = 704, + [762] = 706, + [763] = 717, + [764] = 716, + [765] = 707, [766] = 766, - [767] = 716, - [768] = 715, - [769] = 714, - [770] = 713, - [771] = 715, - [772] = 716, - [773] = 717, - [774] = 718, - [775] = 713, - [776] = 714, - [777] = 721, - [778] = 728, - [779] = 722, - [780] = 720, - [781] = 719, - [782] = 726, - [783] = 728, - [784] = 726, - [785] = 719, - [786] = 714, - [787] = 715, - [788] = 715, - [789] = 716, - [790] = 717, - [791] = 720, - [792] = 722, - [793] = 721, - [794] = 718, + [767] = 709, + [768] = 710, + [769] = 702, + [770] = 712, + [771] = 702, + [772] = 714, + [773] = 713, + [774] = 707, + [775] = 775, + [776] = 713, + [777] = 714, + [778] = 715, + [779] = 716, + [780] = 717, + [781] = 704, + [782] = 705, + [783] = 712, + [784] = 784, + [785] = 702, + [786] = 710, + [787] = 709, + [788] = 704, + [789] = 709, + [790] = 707, + [791] = 714, + [792] = 715, + [793] = 706, + [794] = 716, [795] = 717, - [796] = 716, - [797] = 715, - [798] = 713, - [799] = 714, - [800] = 728, - [801] = 716, - [802] = 713, - [803] = 726, - [804] = 719, - [805] = 720, - [806] = 722, - [807] = 721, - [808] = 718, - [809] = 809, - [810] = 810, - [811] = 811, - [812] = 811, - [813] = 717, - [814] = 814, - [815] = 815, - [816] = 726, - [817] = 728, - [818] = 766, - [819] = 819, - [820] = 811, - [821] = 821, - [822] = 717, - [823] = 814, - [824] = 815, - [825] = 713, - [826] = 714, - [827] = 766, - [828] = 819, - [829] = 811, - [830] = 726, - [831] = 719, - [832] = 814, - [833] = 815, - [834] = 728, - [835] = 720, - [836] = 766, - [837] = 819, - [838] = 811, - [839] = 722, - [840] = 819, - [841] = 814, - [842] = 815, - [843] = 726, - [844] = 716, - [845] = 766, - [846] = 819, - [847] = 811, - [848] = 715, - [849] = 713, - [850] = 814, - [851] = 815, - [852] = 719, + [796] = 796, + [797] = 705, + [798] = 704, + [799] = 717, + [800] = 716, + [801] = 717, + [802] = 802, + [803] = 803, + [804] = 803, + [805] = 731, + [806] = 744, + [807] = 715, + [808] = 713, + [809] = 775, + [810] = 714, + [811] = 796, + [812] = 803, + [813] = 813, + [814] = 731, + [815] = 744, + [816] = 713, + [817] = 712, + [818] = 775, + [819] = 702, + [820] = 796, + [821] = 803, + [822] = 710, + [823] = 731, + [824] = 744, + [825] = 709, + [826] = 712, + [827] = 775, + [828] = 707, + [829] = 796, + [830] = 803, + [831] = 702, + [832] = 731, + [833] = 744, + [834] = 706, + [835] = 710, + [836] = 775, + [837] = 705, + [838] = 796, + [839] = 803, + [840] = 709, + [841] = 731, + [842] = 744, + [843] = 704, + [844] = 705, + [845] = 775, + [846] = 717, + [847] = 796, + [848] = 803, + [849] = 716, + [850] = 731, + [851] = 744, + [852] = 715, [853] = 714, - [854] = 766, - [855] = 819, - [856] = 811, - [857] = 721, - [858] = 814, - [859] = 814, - [860] = 815, - [861] = 720, - [862] = 815, - [863] = 766, - [864] = 819, - [865] = 811, - [866] = 866, - [867] = 867, - [868] = 814, - [869] = 815, - [870] = 722, - [871] = 721, - [872] = 766, - [873] = 819, - [874] = 811, - [875] = 875, - [876] = 876, - [877] = 814, - [878] = 815, - [879] = 728, - [880] = 718, - [881] = 766, - [882] = 819, - [883] = 811, - [884] = 718, + [854] = 775, + [855] = 713, + [856] = 796, + [857] = 803, + [858] = 712, + [859] = 731, + [860] = 744, + [861] = 702, + [862] = 862, + [863] = 775, + [864] = 710, + [865] = 796, + [866] = 803, + [867] = 707, + [868] = 731, + [869] = 744, + [870] = 709, + [871] = 707, + [872] = 775, + [873] = 706, + [874] = 796, + [875] = 803, + [876] = 705, + [877] = 731, + [878] = 744, + [879] = 704, + [880] = 880, + [881] = 775, + [882] = 717, + [883] = 796, + [884] = 884, [885] = 885, - [886] = 814, - [887] = 815, - [888] = 717, + [886] = 716, + [887] = 715, + [888] = 714, [889] = 889, - [890] = 766, - [891] = 819, + [890] = 706, + [891] = 713, + [892] = 712, + [893] = 880, + [894] = 880, + [895] = 880, + [896] = 880, + [897] = 880, + [898] = 880, + [899] = 880, + [900] = 880, + [901] = 880, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -1932,5048 +1991,4609 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(145); - if (lookahead == '\t') ADVANCE(325); - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(133) - if (lookahead == ' ') ADVANCE(155); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(347); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '%') ADVANCE(292); - if (lookahead == '(') ADVANCE(285); - if (lookahead == ')') ADVANCE(288); - if (lookahead == '*') ADVANCE(173); - if (lookahead == '+') ADVANCE(338); - if (lookahead == '-') ADVANCE(256); - if (lookahead == '.') ADVANCE(343); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == '=') ADVANCE(346); - if (lookahead == '>') ADVANCE(222); - if (lookahead == 'F') ADVANCE(263); - if (lookahead == 'I') ADVANCE(265); - if (lookahead == 'N') ADVANCE(266); - if (lookahead == 'T') ADVANCE(267); - if (lookahead == 'W') ADVANCE(262); - if (lookahead == 'X') ADVANCE(274); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(180); - if (lookahead == ']') ADVANCE(283); - if (lookahead == '^') ADVANCE(239); - if (lookahead == '_') ADVANCE(164); - if (lookahead == '{') ADVANCE(147); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '}') ADVANCE(151); - if (lookahead == '~') ADVANCE(247); + if (eof) ADVANCE(130); + if (lookahead == '\t') ADVANCE(299); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(118) + if (lookahead == ' ') ADVANCE(145); + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(321); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '%') ADVANCE(268); + if (lookahead == '(') ADVANCE(261); + if (lookahead == ')') ADVANCE(264); + if (lookahead == '*') ADVANCE(149); + if (lookahead == '+') ADVANCE(312); + if (lookahead == '-') ADVANCE(232); + if (lookahead == '.') ADVANCE(317); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == '=') ADVANCE(320); + if (lookahead == '>') ADVANCE(198); + if (lookahead == 'F') ADVANCE(239); + if (lookahead == 'I') ADVANCE(241); + if (lookahead == 'N') ADVANCE(242); + if (lookahead == 'T') ADVANCE(243); + if (lookahead == 'W') ADVANCE(238); + if (lookahead == 'X') ADVANCE(250); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(156); + if (lookahead == ']') ADVANCE(259); + if (lookahead == '^') ADVANCE(215); + if (lookahead == '_') ADVANCE(140); + if (lookahead == '{') ADVANCE(132); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '}') ADVANCE(136); + if (lookahead == '~') ADVANCE(223); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(327); + lookahead != '\f') ADVANCE(301); END_STATE(); case 1: - if (lookahead == '\t') ADVANCE(325); - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(25) - if (lookahead == ' ') ADVANCE(323); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(173); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == ']') ADVANCE(254); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(162); - if (lookahead == '{') ADVANCE(149); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '\t') ADVANCE(299); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(18) + if (lookahead == ' ') ADVANCE(298); + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(149); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == ']') ADVANCE(230); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(134); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(327); + lookahead != '\f') ADVANCE(301); END_STATE(); case 2: - if (lookahead == '\t') ADVANCE(325); - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(30) - if (lookahead == ' ') ADVANCE(324); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(163); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '\t') ADVANCE(299); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(31) + if (lookahead == ' ') ADVANCE(298); + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(149); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(327); + lookahead != '\f') ADVANCE(301); END_STATE(); case 3: - if (lookahead == '\t') ADVANCE(325); - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(30) - if (lookahead == ' ') ADVANCE(324); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(163); - if (lookahead == '{') ADVANCE(149); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '\t') ADVANCE(299); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(31) + if (lookahead == ' ') ADVANCE(298); + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(149); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(134); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(327); + lookahead != '\f') ADVANCE(301); END_STATE(); case 4: - if (lookahead == '\t') ADVANCE(325); - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(30) - if (lookahead == ' ') ADVANCE(324); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(163); - if (lookahead == '{') ADVANCE(148); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '\t') ADVANCE(299); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(31) + if (lookahead == ' ') ADVANCE(298); + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(149); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(133); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(327); + lookahead != '\f') ADVANCE(301); END_STATE(); case 5: - if (lookahead == '\t') ADVANCE(325); - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(45) - if (lookahead == ' ') ADVANCE(161); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == '=') ADVANCE(339); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(162); - if (lookahead == '{') ADVANCE(149); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '\t') ADVANCE(299); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(36) + if (lookahead == ' ') ADVANCE(147); + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == '=') ADVANCE(313); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(134); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(327); + lookahead != '\f') ADVANCE(301); END_STATE(); case 6: - if (lookahead == '\t') ADVANCE(325); - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(50) - if (lookahead == ' ') ADVANCE(324); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(257); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(263); - if (lookahead == 'I') ADVANCE(265); - if (lookahead == 'N') ADVANCE(266); - if (lookahead == 'T') ADVANCE(267); - if (lookahead == 'W') ADVANCE(262); - if (lookahead == 'X') ADVANCE(274); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(164); - if (lookahead == '{') ADVANCE(149); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + if (lookahead == '\t') ADVANCE(299); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(43) + if (lookahead == ' ') ADVANCE(147); + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '+') ADVANCE(312); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(134); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(327); + lookahead != '\f') ADVANCE(301); END_STATE(); case 7: - if (lookahead == '\t') ADVANCE(325); - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(53) - if (lookahead == ' ') ADVANCE(161); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '+') ADVANCE(338); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(162); - if (lookahead == '{') ADVANCE(149); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '\t') ADVANCE(299); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(46) + if (lookahead == ' ') ADVANCE(298); + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(149); + if (lookahead == '-') ADVANCE(233); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(239); + if (lookahead == 'I') ADVANCE(241); + if (lookahead == 'N') ADVANCE(242); + if (lookahead == 'T') ADVANCE(243); + if (lookahead == 'W') ADVANCE(238); + if (lookahead == 'X') ADVANCE(250); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(140); + if (lookahead == '{') ADVANCE(134); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(327); + lookahead != '\f') ADVANCE(301); END_STATE(); case 8: - if (lookahead == '\t') ADVANCE(325); - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(58) - if (lookahead == ' ') ADVANCE(323); - if (lookahead == '!') ADVANCE(217); - if (lookahead == '"') ADVANCE(218); - if (lookahead == '$') ADVANCE(298); - if (lookahead == '\'') ADVANCE(218); - if (lookahead == '*') ADVANCE(174); - if (lookahead == '-') ADVANCE(196); - if (lookahead == '.') ADVANCE(198); - if (lookahead == ':') ADVANCE(199); - if (lookahead == '<') ADVANCE(194); - if (lookahead == '>') ADVANCE(327); - if (lookahead == 'F') ADVANCE(205); - if (lookahead == 'I') ADVANCE(207); - if (lookahead == 'N') ADVANCE(208); - if (lookahead == 'T') ADVANCE(209); - if (lookahead == 'W') ADVANCE(204); - if (lookahead == 'X') ADVANCE(216); - if (lookahead == '[') ADVANCE(282); - if (lookahead == '\\') ADVANCE(179); - if (lookahead == '^') ADVANCE(241); - if (lookahead == '_') ADVANCE(167); - if (lookahead == '{') ADVANCE(150); - if (lookahead == '|') ADVANCE(318); - if (lookahead == '~') ADVANCE(249); + if (lookahead == '\t') ADVANCE(299); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(47) + if (lookahead == ' ') ADVANCE(298); + if (lookahead == '!') ADVANCE(193); + if (lookahead == '"') ADVANCE(194); + if (lookahead == '$') ADVANCE(274); + if (lookahead == '\'') ADVANCE(194); + if (lookahead == '*') ADVANCE(150); + if (lookahead == '-') ADVANCE(172); + if (lookahead == '.') ADVANCE(174); + if (lookahead == ':') ADVANCE(175); + if (lookahead == '<') ADVANCE(170); + if (lookahead == '>') ADVANCE(301); + if (lookahead == 'F') ADVANCE(181); + if (lookahead == 'I') ADVANCE(183); + if (lookahead == 'N') ADVANCE(184); + if (lookahead == 'T') ADVANCE(185); + if (lookahead == 'W') ADVANCE(180); + if (lookahead == 'X') ADVANCE(192); + if (lookahead == '[') ADVANCE(258); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == '^') ADVANCE(217); + if (lookahead == '_') ADVANCE(141); + if (lookahead == '{') ADVANCE(135); + if (lookahead == '|') ADVANCE(294); + if (lookahead == '~') ADVANCE(225); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(221); + lookahead != '\f') ADVANCE(197); END_STATE(); case 9: - if (lookahead == '\t') ADVANCE(325); - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(70) - if (lookahead == ' ') ADVANCE(324); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == ']') ADVANCE(254); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(163); - if (lookahead == '{') ADVANCE(149); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '\t') ADVANCE(299); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(63) + if (lookahead == ' ') ADVANCE(147); + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == ']') ADVANCE(230); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(134); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(327); + lookahead != '\f') ADVANCE(301); END_STATE(); case 10: - if (lookahead == '\t') ADVANCE(325); - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(71) - if (lookahead == ' ') ADVANCE(323); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(173); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(162); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '\t') ADVANCE(299); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(64) + if (lookahead == ' ') ADVANCE(147); + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(134); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(223); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(327); + lookahead != '\f') ADVANCE(301); END_STATE(); case 11: - if (lookahead == '\t') ADVANCE(325); - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(71) - if (lookahead == ' ') ADVANCE(323); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(173); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(162); - if (lookahead == '{') ADVANCE(149); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '\t') ADVANCE(299); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(75) + if (lookahead == ' ') ADVANCE(147); + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == ']') ADVANCE(259); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(134); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(327); + lookahead != '\f') ADVANCE(301); END_STATE(); case 12: - if (lookahead == '\t') ADVANCE(325); - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(71) - if (lookahead == ' ') ADVANCE(323); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(173); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(162); - if (lookahead == '{') ADVANCE(148); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '\t') ADVANCE(299); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(75) + if (lookahead == ' ') ADVANCE(147); + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(327); + lookahead != '\f') ADVANCE(301); END_STATE(); case 13: - if (lookahead == '\t') ADVANCE(325); - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(78) - if (lookahead == ' ') ADVANCE(323); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(173); - if (lookahead == '-') ADVANCE(257); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(263); - if (lookahead == 'I') ADVANCE(265); - if (lookahead == 'N') ADVANCE(266); - if (lookahead == 'T') ADVANCE(267); - if (lookahead == 'W') ADVANCE(262); - if (lookahead == 'X') ADVANCE(274); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(166); - if (lookahead == '{') ADVANCE(149); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + if (lookahead == '\t') ADVANCE(299); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(86) + if (lookahead == ' ') ADVANCE(147); + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(303); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(134); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(327); + lookahead != '\f') ADVANCE(301); END_STATE(); case 14: - if (lookahead == '\t') ADVANCE(325); - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(81) - if (lookahead == ' ') ADVANCE(324); - if (lookahead == '!') ADVANCE(217); - if (lookahead == '"') ADVANCE(218); - if (lookahead == '$') ADVANCE(298); - if (lookahead == '\'') ADVANCE(218); - if (lookahead == '*') ADVANCE(175); - if (lookahead == '-') ADVANCE(196); - if (lookahead == '.') ADVANCE(198); - if (lookahead == ':') ADVANCE(199); - if (lookahead == '<') ADVANCE(194); - if (lookahead == '>') ADVANCE(327); - if (lookahead == 'F') ADVANCE(205); - if (lookahead == 'I') ADVANCE(207); - if (lookahead == 'N') ADVANCE(208); - if (lookahead == 'T') ADVANCE(209); - if (lookahead == 'W') ADVANCE(204); - if (lookahead == 'X') ADVANCE(216); - if (lookahead == '[') ADVANCE(282); - if (lookahead == '\\') ADVANCE(179); - if (lookahead == '^') ADVANCE(241); - if (lookahead == '_') ADVANCE(165); - if (lookahead == '{') ADVANCE(150); - if (lookahead == '|') ADVANCE(318); - if (lookahead == '~') ADVANCE(249); + if (lookahead == '\t') ADVANCE(299); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(95) + if (lookahead == ' ') ADVANCE(145); + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(149); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(134); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(221); + lookahead != '\f') ADVANCE(301); END_STATE(); case 15: - if (lookahead == '\t') ADVANCE(325); - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(84) - if (lookahead == ' ') ADVANCE(161); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == ']') ADVANCE(254); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(162); - if (lookahead == '{') ADVANCE(149); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '\t') ADVANCE(299); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(96) + if (lookahead == ' ') ADVANCE(147); + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(215); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(134); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(327); + lookahead != '\f') ADVANCE(301); END_STATE(); case 16: - if (lookahead == '\t') ADVANCE(325); - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(85) - if (lookahead == ' ') ADVANCE(157); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(163); - if (lookahead == '{') ADVANCE(149); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(16) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(303); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == ']') ADVANCE(230); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(327); + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(301); END_STATE(); case 17: - if (lookahead == '\t') ADVANCE(325); - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(96) - if (lookahead == ' ') ADVANCE(156); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(173); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(162); - if (lookahead == '{') ADVANCE(149); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(16) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(303); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == ']') ADVANCE(230); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(134); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(299); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(327); + lookahead != '\f') ADVANCE(301); END_STATE(); case 18: - if (lookahead == '\t') ADVANCE(325); - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(105) - if (lookahead == ' ') ADVANCE(161); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(329); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(162); - if (lookahead == '{') ADVANCE(149); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(18) + if (lookahead == ' ') ADVANCE(101); + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(149); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == ']') ADVANCE(230); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(327); + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(301); END_STATE(); case 19: - if (lookahead == '\t') ADVANCE(325); - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(106) - if (lookahead == ' ') ADVANCE(161); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(162); - if (lookahead == '{') ADVANCE(149); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(247); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(19) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == '=') ADVANCE(313); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == ']') ADVANCE(230); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(327); + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(301); END_STATE(); case 20: - if (lookahead == '\t') ADVANCE(325); - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(107) - if (lookahead == ' ') ADVANCE(161); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(239); - if (lookahead == '_') ADVANCE(162); - if (lookahead == '{') ADVANCE(149); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(19) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == '=') ADVANCE(313); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == ']') ADVANCE(230); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(134); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(299); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(327); + lookahead != '\f') ADVANCE(301); END_STATE(); case 21: - if (lookahead == '\t') ADVANCE(325); - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(108) - if (lookahead == ' ') ADVANCE(161); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == ']') ADVANCE(283); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(162); - if (lookahead == '{') ADVANCE(149); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(21) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '+') ADVANCE(312); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == ']') ADVANCE(230); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(327); + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(301); END_STATE(); case 22: - if (lookahead == '\t') ADVANCE(325); - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(108) - if (lookahead == ' ') ADVANCE(161); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(162); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(21) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '+') ADVANCE(312); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == ']') ADVANCE(230); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(134); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(299); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(327); + lookahead != '\f') ADVANCE(301); END_STATE(); case 23: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(23) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == ']') ADVANCE(254); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(162); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(247); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(24) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '+') ADVANCE(312); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(299); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(327); + lookahead != 11 && + lookahead != '\f') ADVANCE(301); END_STATE(); case 24: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(23) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == ']') ADVANCE(254); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(162); - if (lookahead == '{') ADVANCE(149); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(247); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(24) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '+') ADVANCE(312); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(327); + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(301); END_STATE(); case 25: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(25) - if (lookahead == ' ') ADVANCE(114); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(173); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == ']') ADVANCE(254); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(162); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(24) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '+') ADVANCE(312); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(134); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(299); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(327); + lookahead != 11 && + lookahead != '\f') ADVANCE(301); END_STATE(); case 26: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(26) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '+') ADVANCE(338); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == ']') ADVANCE(254); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(162); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(24) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '+') ADVANCE(312); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(133); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(299); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(327); + lookahead != 11 && + lookahead != '\f') ADVANCE(301); END_STATE(); case 27: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(26) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '+') ADVANCE(338); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == ']') ADVANCE(254); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(162); - if (lookahead == '{') ADVANCE(149); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(28) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == '=') ADVANCE(313); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); + lookahead == ' ') ADVANCE(299); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(327); + lookahead != '\f') ADVANCE(301); END_STATE(); case 28: - if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\n') ADVANCE(300); if (lookahead == '\r') SKIP(28) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == '=') ADVANCE(339); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == ']') ADVANCE(254); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(162); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == '=') ADVANCE(313); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead != 0 && (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(327); + lookahead != ' ') ADVANCE(301); END_STATE(); case 29: - if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\n') ADVANCE(300); if (lookahead == '\r') SKIP(28) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == '=') ADVANCE(339); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == ']') ADVANCE(254); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(162); - if (lookahead == '{') ADVANCE(149); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == '=') ADVANCE(313); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(134); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); + lookahead == ' ') ADVANCE(299); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(327); + lookahead != '\f') ADVANCE(301); END_STATE(); case 30: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(30) - if (lookahead == ' ') ADVANCE(115); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(163); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(28) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == '=') ADVANCE(313); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(133); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(299); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(327); + lookahead != 11 && + lookahead != '\f') ADVANCE(301); END_STATE(); case 31: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(32) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == '=') ADVANCE(339); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(162); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(31) + if (lookahead == ' ') ADVANCE(101); + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(149); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(327); + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(301); END_STATE(); case 32: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(32) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == '=') ADVANCE(339); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(162); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(33) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(303); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(299); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(327); + lookahead != 11 && + lookahead != '\f') ADVANCE(301); END_STATE(); case 33: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(32) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == '=') ADVANCE(339); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(162); - if (lookahead == '{') ADVANCE(149); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(33) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(303); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(327); + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(301); END_STATE(); case 34: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(32) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == '=') ADVANCE(339); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(162); - if (lookahead == '{') ADVANCE(148); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(33) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(303); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(134); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); + lookahead == ' ') ADVANCE(299); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(327); + lookahead != '\f') ADVANCE(301); END_STATE(); case 35: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(36) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(162); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(247); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(33) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(303); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(133); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); + lookahead == ' ') ADVANCE(299); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(327); + lookahead != '\f') ADVANCE(301); END_STATE(); case 36: - if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\n') ADVANCE(300); if (lookahead == '\r') SKIP(36) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(162); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(247); + if (lookahead == ' ') ADVANCE(144); + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == '=') ADVANCE(313); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(327); + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(301); END_STATE(); case 37: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(36) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(162); - if (lookahead == '{') ADVANCE(149); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(247); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(37) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(233); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == '=') ADVANCE(313); + if (lookahead == 'F') ADVANCE(239); + if (lookahead == 'I') ADVANCE(241); + if (lookahead == 'N') ADVANCE(242); + if (lookahead == 'T') ADVANCE(243); + if (lookahead == 'W') ADVANCE(238); + if (lookahead == 'X') ADVANCE(250); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(140); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(327); + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(301); END_STATE(); case 38: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(36) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(162); - if (lookahead == '{') ADVANCE(148); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(247); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(37) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(233); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == '=') ADVANCE(313); + if (lookahead == 'F') ADVANCE(239); + if (lookahead == 'I') ADVANCE(241); + if (lookahead == 'N') ADVANCE(242); + if (lookahead == 'T') ADVANCE(243); + if (lookahead == 'W') ADVANCE(238); + if (lookahead == 'X') ADVANCE(250); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(140); + if (lookahead == '{') ADVANCE(134); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); + lookahead == ' ') ADVANCE(299); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(327); + lookahead != '\f') ADVANCE(301); END_STATE(); case 39: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(40) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '+') ADVANCE(338); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(162); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(39) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(233); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(239); + if (lookahead == 'I') ADVANCE(241); + if (lookahead == 'N') ADVANCE(242); + if (lookahead == 'T') ADVANCE(243); + if (lookahead == 'W') ADVANCE(238); + if (lookahead == 'X') ADVANCE(250); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(140); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(223); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(327); + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(301); END_STATE(); case 40: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(40) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '+') ADVANCE(338); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(162); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(39) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(233); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(239); + if (lookahead == 'I') ADVANCE(241); + if (lookahead == 'N') ADVANCE(242); + if (lookahead == 'T') ADVANCE(243); + if (lookahead == 'W') ADVANCE(238); + if (lookahead == 'X') ADVANCE(250); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(140); + if (lookahead == '{') ADVANCE(134); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(223); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(299); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(327); + lookahead != 11 && + lookahead != '\f') ADVANCE(301); END_STATE(); case 41: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(40) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '+') ADVANCE(338); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(162); - if (lookahead == '{') ADVANCE(149); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(41) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '+') ADVANCE(312); + if (lookahead == '-') ADVANCE(233); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(239); + if (lookahead == 'I') ADVANCE(241); + if (lookahead == 'N') ADVANCE(242); + if (lookahead == 'T') ADVANCE(243); + if (lookahead == 'W') ADVANCE(238); + if (lookahead == 'X') ADVANCE(250); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(140); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(327); + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(301); END_STATE(); case 42: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(40) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '+') ADVANCE(338); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(162); - if (lookahead == '{') ADVANCE(148); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(41) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '+') ADVANCE(312); + if (lookahead == '-') ADVANCE(233); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(239); + if (lookahead == 'I') ADVANCE(241); + if (lookahead == 'N') ADVANCE(242); + if (lookahead == 'T') ADVANCE(243); + if (lookahead == 'W') ADVANCE(238); + if (lookahead == 'X') ADVANCE(250); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(140); + if (lookahead == '{') ADVANCE(134); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); + lookahead == ' ') ADVANCE(299); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(327); + lookahead != '\f') ADVANCE(301); END_STATE(); case 43: - if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\n') ADVANCE(300); if (lookahead == '\r') SKIP(43) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(257); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == '=') ADVANCE(339); - if (lookahead == 'F') ADVANCE(263); - if (lookahead == 'I') ADVANCE(265); - if (lookahead == 'N') ADVANCE(266); - if (lookahead == 'T') ADVANCE(267); - if (lookahead == 'W') ADVANCE(262); - if (lookahead == 'X') ADVANCE(274); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(166); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == ' ') ADVANCE(144); + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '+') ADVANCE(312); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); + if (lookahead != 0 && + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(301); + END_STATE(); + case 44: + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(44) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(233); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(239); + if (lookahead == 'I') ADVANCE(241); + if (lookahead == 'N') ADVANCE(242); + if (lookahead == 'T') ADVANCE(243); + if (lookahead == 'W') ADVANCE(238); + if (lookahead == 'X') ADVANCE(250); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == ']') ADVANCE(230); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(140); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); if (lookahead != 0 && (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(327); + lookahead != ' ') ADVANCE(301); END_STATE(); - case 44: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(43) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(257); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == '=') ADVANCE(339); - if (lookahead == 'F') ADVANCE(263); - if (lookahead == 'I') ADVANCE(265); - if (lookahead == 'N') ADVANCE(266); - if (lookahead == 'T') ADVANCE(267); - if (lookahead == 'W') ADVANCE(262); - if (lookahead == 'X') ADVANCE(274); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(166); - if (lookahead == '{') ADVANCE(149); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + case 45: + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(44) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(233); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(239); + if (lookahead == 'I') ADVANCE(241); + if (lookahead == 'N') ADVANCE(242); + if (lookahead == 'T') ADVANCE(243); + if (lookahead == 'W') ADVANCE(238); + if (lookahead == 'X') ADVANCE(250); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == ']') ADVANCE(230); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(140); + if (lookahead == '{') ADVANCE(134); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); + lookahead == ' ') ADVANCE(299); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(327); - END_STATE(); - case 45: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(45) - if (lookahead == ' ') ADVANCE(154); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == '=') ADVANCE(339); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(162); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(327); + lookahead != '\f') ADVANCE(301); END_STATE(); case 46: - if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\n') ADVANCE(300); if (lookahead == '\r') SKIP(46) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(257); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(263); - if (lookahead == 'I') ADVANCE(265); - if (lookahead == 'N') ADVANCE(266); - if (lookahead == 'T') ADVANCE(267); - if (lookahead == 'W') ADVANCE(262); - if (lookahead == 'X') ADVANCE(274); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == ']') ADVANCE(254); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(166); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == ' ') ADVANCE(101); + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(149); + if (lookahead == '-') ADVANCE(233); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(239); + if (lookahead == 'I') ADVANCE(241); + if (lookahead == 'N') ADVANCE(242); + if (lookahead == 'T') ADVANCE(243); + if (lookahead == 'W') ADVANCE(238); + if (lookahead == 'X') ADVANCE(250); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(140); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(327); + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(301); END_STATE(); case 47: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(46) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(257); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(263); - if (lookahead == 'I') ADVANCE(265); - if (lookahead == 'N') ADVANCE(266); - if (lookahead == 'T') ADVANCE(267); - if (lookahead == 'W') ADVANCE(262); - if (lookahead == 'X') ADVANCE(274); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == ']') ADVANCE(254); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(166); - if (lookahead == '{') ADVANCE(149); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(47) + if (lookahead == ' ') ADVANCE(101); + if (lookahead == '!') ADVANCE(193); + if (lookahead == '"') ADVANCE(194); + if (lookahead == '$') ADVANCE(274); + if (lookahead == '\'') ADVANCE(194); + if (lookahead == '*') ADVANCE(150); + if (lookahead == '-') ADVANCE(172); + if (lookahead == '.') ADVANCE(174); + if (lookahead == ':') ADVANCE(175); + if (lookahead == '<') ADVANCE(170); + if (lookahead == '>') ADVANCE(301); + if (lookahead == 'F') ADVANCE(181); + if (lookahead == 'I') ADVANCE(183); + if (lookahead == 'N') ADVANCE(184); + if (lookahead == 'T') ADVANCE(185); + if (lookahead == 'W') ADVANCE(180); + if (lookahead == 'X') ADVANCE(192); + if (lookahead == '[') ADVANCE(258); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == '^') ADVANCE(217); + if (lookahead == '_') ADVANCE(141); + if (lookahead == '{') ADVANCE(267); + if (lookahead == '|') ADVANCE(294); + if (lookahead == '~') ADVANCE(225); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(327); + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(197); END_STATE(); case 48: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(48) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(256); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(263); - if (lookahead == 'I') ADVANCE(265); - if (lookahead == 'N') ADVANCE(266); - if (lookahead == 'T') ADVANCE(267); - if (lookahead == 'W') ADVANCE(262); - if (lookahead == 'X') ADVANCE(274); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(166); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(49) + if (lookahead == '!') ADVANCE(193); + if (lookahead == '"') ADVANCE(194); + if (lookahead == '$') ADVANCE(274); + if (lookahead == '\'') ADVANCE(194); + if (lookahead == '*') ADVANCE(151); + if (lookahead == '-') ADVANCE(172); + if (lookahead == '.') ADVANCE(174); + if (lookahead == ':') ADVANCE(175); + if (lookahead == '<') ADVANCE(170); + if (lookahead == '>') ADVANCE(301); + if (lookahead == 'F') ADVANCE(181); + if (lookahead == 'I') ADVANCE(183); + if (lookahead == 'N') ADVANCE(184); + if (lookahead == 'T') ADVANCE(185); + if (lookahead == 'W') ADVANCE(180); + if (lookahead == 'X') ADVANCE(192); + if (lookahead == '[') ADVANCE(258); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == ']') ADVANCE(260); + if (lookahead == '^') ADVANCE(217); + if (lookahead == '_') ADVANCE(141); + if (lookahead == '{') ADVANCE(135); + if (lookahead == '|') ADVANCE(294); + if (lookahead == '~') ADVANCE(225); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(299); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(327); + lookahead != 11 && + lookahead != '\f') ADVANCE(197); END_STATE(); case 49: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(48) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(256); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(263); - if (lookahead == 'I') ADVANCE(265); - if (lookahead == 'N') ADVANCE(266); - if (lookahead == 'T') ADVANCE(267); - if (lookahead == 'W') ADVANCE(262); - if (lookahead == 'X') ADVANCE(274); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(166); - if (lookahead == '{') ADVANCE(149); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(49) + if (lookahead == '!') ADVANCE(193); + if (lookahead == '"') ADVANCE(194); + if (lookahead == '$') ADVANCE(274); + if (lookahead == '\'') ADVANCE(194); + if (lookahead == '*') ADVANCE(151); + if (lookahead == '-') ADVANCE(172); + if (lookahead == '.') ADVANCE(174); + if (lookahead == ':') ADVANCE(175); + if (lookahead == '<') ADVANCE(170); + if (lookahead == '>') ADVANCE(301); + if (lookahead == 'F') ADVANCE(181); + if (lookahead == 'I') ADVANCE(183); + if (lookahead == 'N') ADVANCE(184); + if (lookahead == 'T') ADVANCE(185); + if (lookahead == 'W') ADVANCE(180); + if (lookahead == 'X') ADVANCE(192); + if (lookahead == '[') ADVANCE(258); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == '^') ADVANCE(217); + if (lookahead == '_') ADVANCE(141); + if (lookahead == '{') ADVANCE(267); + if (lookahead == '|') ADVANCE(294); + if (lookahead == '~') ADVANCE(225); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(327); + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(197); END_STATE(); case 50: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(50) - if (lookahead == ' ') ADVANCE(115); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(257); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(263); - if (lookahead == 'I') ADVANCE(265); - if (lookahead == 'N') ADVANCE(266); - if (lookahead == 'T') ADVANCE(267); - if (lookahead == 'W') ADVANCE(262); - if (lookahead == 'X') ADVANCE(274); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(164); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(51) + if (lookahead == '!') ADVANCE(193); + if (lookahead == '"') ADVANCE(194); + if (lookahead == '$') ADVANCE(274); + if (lookahead == '\'') ADVANCE(194); + if (lookahead == '*') ADVANCE(151); + if (lookahead == '-') ADVANCE(172); + if (lookahead == '.') ADVANCE(174); + if (lookahead == ':') ADVANCE(175); + if (lookahead == '<') ADVANCE(170); + if (lookahead == '=') ADVANCE(195); + if (lookahead == '>') ADVANCE(301); + if (lookahead == 'F') ADVANCE(181); + if (lookahead == 'I') ADVANCE(183); + if (lookahead == 'N') ADVANCE(184); + if (lookahead == 'T') ADVANCE(185); + if (lookahead == 'W') ADVANCE(180); + if (lookahead == 'X') ADVANCE(192); + if (lookahead == '[') ADVANCE(258); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == '^') ADVANCE(217); + if (lookahead == '_') ADVANCE(141); + if (lookahead == '{') ADVANCE(135); + if (lookahead == '|') ADVANCE(294); + if (lookahead == '~') ADVANCE(225); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(299); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(327); + lookahead != 11 && + lookahead != '\f') ADVANCE(197); END_STATE(); case 51: - if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\n') ADVANCE(300); if (lookahead == '\r') SKIP(51) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '+') ADVANCE(338); - if (lookahead == '-') ADVANCE(257); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(263); - if (lookahead == 'I') ADVANCE(265); - if (lookahead == 'N') ADVANCE(266); - if (lookahead == 'T') ADVANCE(267); - if (lookahead == 'W') ADVANCE(262); - if (lookahead == 'X') ADVANCE(274); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(166); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + if (lookahead == '!') ADVANCE(193); + if (lookahead == '"') ADVANCE(194); + if (lookahead == '$') ADVANCE(274); + if (lookahead == '\'') ADVANCE(194); + if (lookahead == '*') ADVANCE(151); + if (lookahead == '-') ADVANCE(172); + if (lookahead == '.') ADVANCE(174); + if (lookahead == ':') ADVANCE(175); + if (lookahead == '<') ADVANCE(170); + if (lookahead == '=') ADVANCE(195); + if (lookahead == '>') ADVANCE(301); + if (lookahead == 'F') ADVANCE(181); + if (lookahead == 'I') ADVANCE(183); + if (lookahead == 'N') ADVANCE(184); + if (lookahead == 'T') ADVANCE(185); + if (lookahead == 'W') ADVANCE(180); + if (lookahead == 'X') ADVANCE(192); + if (lookahead == '[') ADVANCE(258); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == '^') ADVANCE(217); + if (lookahead == '_') ADVANCE(141); + if (lookahead == '{') ADVANCE(267); + if (lookahead == '|') ADVANCE(294); + if (lookahead == '~') ADVANCE(225); if (lookahead != 0 && (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(327); + lookahead != ' ') ADVANCE(197); END_STATE(); case 52: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(51) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '+') ADVANCE(338); - if (lookahead == '-') ADVANCE(257); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(263); - if (lookahead == 'I') ADVANCE(265); - if (lookahead == 'N') ADVANCE(266); - if (lookahead == 'T') ADVANCE(267); - if (lookahead == 'W') ADVANCE(262); - if (lookahead == 'X') ADVANCE(274); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(166); - if (lookahead == '{') ADVANCE(149); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(53) + if (lookahead == '!') ADVANCE(193); + if (lookahead == '"') ADVANCE(194); + if (lookahead == '$') ADVANCE(274); + if (lookahead == '\'') ADVANCE(194); + if (lookahead == '*') ADVANCE(151); + if (lookahead == '+') ADVANCE(196); + if (lookahead == '-') ADVANCE(172); + if (lookahead == '.') ADVANCE(174); + if (lookahead == ':') ADVANCE(175); + if (lookahead == '<') ADVANCE(170); + if (lookahead == '>') ADVANCE(301); + if (lookahead == 'F') ADVANCE(181); + if (lookahead == 'I') ADVANCE(183); + if (lookahead == 'N') ADVANCE(184); + if (lookahead == 'T') ADVANCE(185); + if (lookahead == 'W') ADVANCE(180); + if (lookahead == 'X') ADVANCE(192); + if (lookahead == '[') ADVANCE(258); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == '^') ADVANCE(217); + if (lookahead == '_') ADVANCE(141); + if (lookahead == '{') ADVANCE(135); + if (lookahead == '|') ADVANCE(294); + if (lookahead == '~') ADVANCE(225); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + lookahead == ' ') ADVANCE(299); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(327); + lookahead != '\f') ADVANCE(197); END_STATE(); case 53: - if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\n') ADVANCE(300); if (lookahead == '\r') SKIP(53) - if (lookahead == ' ') ADVANCE(154); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '+') ADVANCE(338); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(162); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '!') ADVANCE(193); + if (lookahead == '"') ADVANCE(194); + if (lookahead == '$') ADVANCE(274); + if (lookahead == '\'') ADVANCE(194); + if (lookahead == '*') ADVANCE(151); + if (lookahead == '+') ADVANCE(196); + if (lookahead == '-') ADVANCE(172); + if (lookahead == '.') ADVANCE(174); + if (lookahead == ':') ADVANCE(175); + if (lookahead == '<') ADVANCE(170); + if (lookahead == '>') ADVANCE(301); + if (lookahead == 'F') ADVANCE(181); + if (lookahead == 'I') ADVANCE(183); + if (lookahead == 'N') ADVANCE(184); + if (lookahead == 'T') ADVANCE(185); + if (lookahead == 'W') ADVANCE(180); + if (lookahead == 'X') ADVANCE(192); + if (lookahead == '[') ADVANCE(258); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == '^') ADVANCE(217); + if (lookahead == '_') ADVANCE(141); + if (lookahead == '{') ADVANCE(267); + if (lookahead == '|') ADVANCE(294); + if (lookahead == '~') ADVANCE(225); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(327); + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(197); END_STATE(); case 54: - if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\n') ADVANCE(300); if (lookahead == '\r') SKIP(55) - if (lookahead == '!') ADVANCE(217); - if (lookahead == '"') ADVANCE(218); - if (lookahead == '$') ADVANCE(298); - if (lookahead == '\'') ADVANCE(218); - if (lookahead == '*') ADVANCE(175); - if (lookahead == '+') ADVANCE(219); - if (lookahead == '-') ADVANCE(196); - if (lookahead == '.') ADVANCE(198); - if (lookahead == ':') ADVANCE(199); - if (lookahead == '<') ADVANCE(194); - if (lookahead == '>') ADVANCE(327); - if (lookahead == 'F') ADVANCE(205); - if (lookahead == 'I') ADVANCE(207); - if (lookahead == 'N') ADVANCE(208); - if (lookahead == 'T') ADVANCE(209); - if (lookahead == 'W') ADVANCE(204); - if (lookahead == 'X') ADVANCE(216); - if (lookahead == '[') ADVANCE(282); - if (lookahead == '\\') ADVANCE(179); - if (lookahead == '^') ADVANCE(241); - if (lookahead == '_') ADVANCE(167); - if (lookahead == '{') ADVANCE(150); - if (lookahead == '|') ADVANCE(318); - if (lookahead == '~') ADVANCE(249); + if (lookahead == '!') ADVANCE(193); + if (lookahead == '"') ADVANCE(194); + if (lookahead == '$') ADVANCE(274); + if (lookahead == '\'') ADVANCE(194); + if (lookahead == '*') ADVANCE(151); + if (lookahead == '-') ADVANCE(172); + if (lookahead == '.') ADVANCE(174); + if (lookahead == ':') ADVANCE(175); + if (lookahead == '<') ADVANCE(170); + if (lookahead == '>') ADVANCE(301); + if (lookahead == 'F') ADVANCE(181); + if (lookahead == 'I') ADVANCE(183); + if (lookahead == 'N') ADVANCE(184); + if (lookahead == 'T') ADVANCE(185); + if (lookahead == 'W') ADVANCE(180); + if (lookahead == 'X') ADVANCE(192); + if (lookahead == '[') ADVANCE(258); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == ']') ADVANCE(231); + if (lookahead == '^') ADVANCE(217); + if (lookahead == '_') ADVANCE(141); + if (lookahead == '{') ADVANCE(135); + if (lookahead == '|') ADVANCE(294); + if (lookahead == '~') ADVANCE(225); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); + lookahead == ' ') ADVANCE(299); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(221); + lookahead != '\f') ADVANCE(197); END_STATE(); case 55: - if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\n') ADVANCE(300); if (lookahead == '\r') SKIP(55) - if (lookahead == '!') ADVANCE(217); - if (lookahead == '"') ADVANCE(218); - if (lookahead == '$') ADVANCE(298); - if (lookahead == '\'') ADVANCE(218); - if (lookahead == '*') ADVANCE(175); - if (lookahead == '+') ADVANCE(219); - if (lookahead == '-') ADVANCE(196); - if (lookahead == '.') ADVANCE(198); - if (lookahead == ':') ADVANCE(199); - if (lookahead == '<') ADVANCE(194); - if (lookahead == '>') ADVANCE(327); - if (lookahead == 'F') ADVANCE(205); - if (lookahead == 'I') ADVANCE(207); - if (lookahead == 'N') ADVANCE(208); - if (lookahead == 'T') ADVANCE(209); - if (lookahead == 'W') ADVANCE(204); - if (lookahead == 'X') ADVANCE(216); - if (lookahead == '[') ADVANCE(282); - if (lookahead == '\\') ADVANCE(179); - if (lookahead == '^') ADVANCE(241); - if (lookahead == '_') ADVANCE(167); - if (lookahead == '{') ADVANCE(291); - if (lookahead == '|') ADVANCE(318); - if (lookahead == '~') ADVANCE(249); + if (lookahead == '!') ADVANCE(193); + if (lookahead == '"') ADVANCE(194); + if (lookahead == '$') ADVANCE(274); + if (lookahead == '\'') ADVANCE(194); + if (lookahead == '*') ADVANCE(151); + if (lookahead == '-') ADVANCE(172); + if (lookahead == '.') ADVANCE(174); + if (lookahead == ':') ADVANCE(175); + if (lookahead == '<') ADVANCE(170); + if (lookahead == '>') ADVANCE(301); + if (lookahead == 'F') ADVANCE(181); + if (lookahead == 'I') ADVANCE(183); + if (lookahead == 'N') ADVANCE(184); + if (lookahead == 'T') ADVANCE(185); + if (lookahead == 'W') ADVANCE(180); + if (lookahead == 'X') ADVANCE(192); + if (lookahead == '[') ADVANCE(258); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == ']') ADVANCE(231); + if (lookahead == '^') ADVANCE(217); + if (lookahead == '_') ADVANCE(141); + if (lookahead == '{') ADVANCE(267); + if (lookahead == '|') ADVANCE(294); + if (lookahead == '~') ADVANCE(225); if (lookahead != 0 && (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(221); + lookahead != ' ') ADVANCE(197); END_STATE(); case 56: - if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\n') ADVANCE(300); if (lookahead == '\r') SKIP(57) - if (lookahead == '!') ADVANCE(217); - if (lookahead == '"') ADVANCE(218); - if (lookahead == '$') ADVANCE(298); - if (lookahead == '\'') ADVANCE(218); - if (lookahead == '*') ADVANCE(175); - if (lookahead == '-') ADVANCE(196); - if (lookahead == '.') ADVANCE(198); - if (lookahead == ':') ADVANCE(199); - if (lookahead == '<') ADVANCE(194); - if (lookahead == '>') ADVANCE(327); - if (lookahead == 'F') ADVANCE(205); - if (lookahead == 'I') ADVANCE(207); - if (lookahead == 'N') ADVANCE(208); - if (lookahead == 'T') ADVANCE(209); - if (lookahead == 'W') ADVANCE(204); - if (lookahead == 'X') ADVANCE(216); - if (lookahead == '[') ADVANCE(282); - if (lookahead == '\\') ADVANCE(179); - if (lookahead == '^') ADVANCE(240); - if (lookahead == '_') ADVANCE(167); - if (lookahead == '{') ADVANCE(150); - if (lookahead == '|') ADVANCE(318); - if (lookahead == '~') ADVANCE(249); + if (lookahead == '"') ADVANCE(321); + if (lookahead == '#') ADVANCE(116); + if (lookahead == '%') ADVANCE(268); + if (lookahead == '(') ADVANCE(261); + if (lookahead == ')') ADVANCE(264); + if (lookahead == '.') ADVANCE(316); + if (lookahead == '=') ADVANCE(319); + if (lookahead == '>') ADVANCE(198); + if (lookahead == '[') ADVANCE(256); + if (lookahead == '{') ADVANCE(131); + if (lookahead == '}') ADVANCE(136); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); - if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(221); + lookahead == ' ') ADVANCE(299); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); END_STATE(); case 57: - if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\n') ADVANCE(300); if (lookahead == '\r') SKIP(57) - if (lookahead == '!') ADVANCE(217); - if (lookahead == '"') ADVANCE(218); - if (lookahead == '$') ADVANCE(298); - if (lookahead == '\'') ADVANCE(218); - if (lookahead == '*') ADVANCE(175); - if (lookahead == '-') ADVANCE(196); - if (lookahead == '.') ADVANCE(198); - if (lookahead == ':') ADVANCE(199); - if (lookahead == '<') ADVANCE(194); - if (lookahead == '>') ADVANCE(327); - if (lookahead == 'F') ADVANCE(205); - if (lookahead == 'I') ADVANCE(207); - if (lookahead == 'N') ADVANCE(208); - if (lookahead == 'T') ADVANCE(209); - if (lookahead == 'W') ADVANCE(204); - if (lookahead == 'X') ADVANCE(216); - if (lookahead == '[') ADVANCE(282); - if (lookahead == '\\') ADVANCE(179); - if (lookahead == '^') ADVANCE(240); - if (lookahead == '_') ADVANCE(167); - if (lookahead == '{') ADVANCE(291); - if (lookahead == '|') ADVANCE(318); - if (lookahead == '~') ADVANCE(249); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(221); + if (lookahead == '"') ADVANCE(321); + if (lookahead == '#') ADVANCE(116); + if (lookahead == '%') ADVANCE(268); + if (lookahead == '(') ADVANCE(261); + if (lookahead == ')') ADVANCE(264); + if (lookahead == '.') ADVANCE(316); + if (lookahead == '=') ADVANCE(319); + if (lookahead == '>') ADVANCE(198); + if (lookahead == '[') ADVANCE(255); + if (lookahead == '}') ADVANCE(136); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); END_STATE(); case 58: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(58) - if (lookahead == ' ') ADVANCE(114); - if (lookahead == '!') ADVANCE(217); - if (lookahead == '"') ADVANCE(218); - if (lookahead == '$') ADVANCE(298); - if (lookahead == '\'') ADVANCE(218); - if (lookahead == '*') ADVANCE(174); - if (lookahead == '-') ADVANCE(196); - if (lookahead == '.') ADVANCE(198); - if (lookahead == ':') ADVANCE(199); - if (lookahead == '<') ADVANCE(194); - if (lookahead == '>') ADVANCE(327); - if (lookahead == 'F') ADVANCE(205); - if (lookahead == 'I') ADVANCE(207); - if (lookahead == 'N') ADVANCE(208); - if (lookahead == 'T') ADVANCE(209); - if (lookahead == 'W') ADVANCE(204); - if (lookahead == 'X') ADVANCE(216); - if (lookahead == '[') ADVANCE(282); - if (lookahead == '\\') ADVANCE(179); - if (lookahead == '^') ADVANCE(241); - if (lookahead == '_') ADVANCE(167); - if (lookahead == '{') ADVANCE(291); - if (lookahead == '|') ADVANCE(318); - if (lookahead == '~') ADVANCE(249); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(221); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') ADVANCE(270); + if (lookahead == '%') ADVANCE(268); + if (lookahead == '\\') ADVANCE(271); + if (lookahead != 0) ADVANCE(269); END_STATE(); case 59: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(60) - if (lookahead == '!') ADVANCE(217); - if (lookahead == '"') ADVANCE(218); - if (lookahead == '$') ADVANCE(298); - if (lookahead == '\'') ADVANCE(218); - if (lookahead == '*') ADVANCE(175); - if (lookahead == '-') ADVANCE(196); - if (lookahead == '.') ADVANCE(198); - if (lookahead == ':') ADVANCE(199); - if (lookahead == '<') ADVANCE(194); - if (lookahead == '=') ADVANCE(220); - if (lookahead == '>') ADVANCE(327); - if (lookahead == 'F') ADVANCE(205); - if (lookahead == 'I') ADVANCE(207); - if (lookahead == 'N') ADVANCE(208); - if (lookahead == 'T') ADVANCE(209); - if (lookahead == 'W') ADVANCE(204); - if (lookahead == 'X') ADVANCE(216); - if (lookahead == '[') ADVANCE(282); - if (lookahead == '\\') ADVANCE(179); - if (lookahead == '^') ADVANCE(241); - if (lookahead == '_') ADVANCE(167); - if (lookahead == '{') ADVANCE(150); - if (lookahead == '|') ADVANCE(318); - if (lookahead == '~') ADVANCE(249); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(61) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == ']') ADVANCE(259); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(134); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); + lookahead == ' ') ADVANCE(299); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(221); + lookahead != '\f') ADVANCE(301); END_STATE(); case 60: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(60) - if (lookahead == '!') ADVANCE(217); - if (lookahead == '"') ADVANCE(218); - if (lookahead == '$') ADVANCE(298); - if (lookahead == '\'') ADVANCE(218); - if (lookahead == '*') ADVANCE(175); - if (lookahead == '-') ADVANCE(196); - if (lookahead == '.') ADVANCE(198); - if (lookahead == ':') ADVANCE(199); - if (lookahead == '<') ADVANCE(194); - if (lookahead == '=') ADVANCE(220); - if (lookahead == '>') ADVANCE(327); - if (lookahead == 'F') ADVANCE(205); - if (lookahead == 'I') ADVANCE(207); - if (lookahead == 'N') ADVANCE(208); - if (lookahead == 'T') ADVANCE(209); - if (lookahead == 'W') ADVANCE(204); - if (lookahead == 'X') ADVANCE(216); - if (lookahead == '[') ADVANCE(282); - if (lookahead == '\\') ADVANCE(179); - if (lookahead == '^') ADVANCE(241); - if (lookahead == '_') ADVANCE(167); - if (lookahead == '{') ADVANCE(291); - if (lookahead == '|') ADVANCE(318); - if (lookahead == '~') ADVANCE(249); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(61) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == ']') ADVANCE(230); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(299); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(221); + lookahead != 11 && + lookahead != '\f') ADVANCE(301); END_STATE(); case 61: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(62) - if (lookahead == '!') ADVANCE(217); - if (lookahead == '"') ADVANCE(218); - if (lookahead == '$') ADVANCE(298); - if (lookahead == '\'') ADVANCE(218); - if (lookahead == '*') ADVANCE(175); - if (lookahead == '-') ADVANCE(196); - if (lookahead == '.') ADVANCE(198); - if (lookahead == ':') ADVANCE(199); - if (lookahead == '<') ADVANCE(194); - if (lookahead == '>') ADVANCE(327); - if (lookahead == 'F') ADVANCE(205); - if (lookahead == 'I') ADVANCE(207); - if (lookahead == 'N') ADVANCE(208); - if (lookahead == 'T') ADVANCE(209); - if (lookahead == 'W') ADVANCE(204); - if (lookahead == 'X') ADVANCE(216); - if (lookahead == '[') ADVANCE(282); - if (lookahead == '\\') ADVANCE(179); - if (lookahead == ']') ADVANCE(255); - if (lookahead == '^') ADVANCE(241); - if (lookahead == '_') ADVANCE(167); - if (lookahead == '{') ADVANCE(150); - if (lookahead == '|') ADVANCE(318); - if (lookahead == '~') ADVANCE(249); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(61) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == ']') ADVANCE(230); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(221); + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(301); END_STATE(); case 62: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(62) - if (lookahead == '!') ADVANCE(217); - if (lookahead == '"') ADVANCE(218); - if (lookahead == '$') ADVANCE(298); - if (lookahead == '\'') ADVANCE(218); - if (lookahead == '*') ADVANCE(175); - if (lookahead == '-') ADVANCE(196); - if (lookahead == '.') ADVANCE(198); - if (lookahead == ':') ADVANCE(199); - if (lookahead == '<') ADVANCE(194); - if (lookahead == '>') ADVANCE(327); - if (lookahead == 'F') ADVANCE(205); - if (lookahead == 'I') ADVANCE(207); - if (lookahead == 'N') ADVANCE(208); - if (lookahead == 'T') ADVANCE(209); - if (lookahead == 'W') ADVANCE(204); - if (lookahead == 'X') ADVANCE(216); - if (lookahead == '[') ADVANCE(282); - if (lookahead == '\\') ADVANCE(179); - if (lookahead == ']') ADVANCE(255); - if (lookahead == '^') ADVANCE(241); - if (lookahead == '_') ADVANCE(167); - if (lookahead == '{') ADVANCE(291); - if (lookahead == '|') ADVANCE(318); - if (lookahead == '~') ADVANCE(249); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(61) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == ']') ADVANCE(230); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(133); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(299); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(221); + lookahead != 11 && + lookahead != '\f') ADVANCE(301); END_STATE(); case 63: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(64) - if (lookahead == '"') ADVANCE(347); - if (lookahead == '#') ADVANCE(131); - if (lookahead == '%') ADVANCE(292); - if (lookahead == '(') ADVANCE(285); - if (lookahead == ')') ADVANCE(288); - if (lookahead == '.') ADVANCE(342); - if (lookahead == '=') ADVANCE(345); - if (lookahead == '>') ADVANCE(222); - if (lookahead == '[') ADVANCE(280); - if (lookahead == '{') ADVANCE(146); - if (lookahead == '}') ADVANCE(151); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(63) + if (lookahead == ' ') ADVANCE(144); + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == ']') ADVANCE(230); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); + if (lookahead != 0 && + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(301); END_STATE(); case 64: - if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\n') ADVANCE(300); if (lookahead == '\r') SKIP(64) - if (lookahead == '"') ADVANCE(347); - if (lookahead == '#') ADVANCE(131); - if (lookahead == '%') ADVANCE(292); - if (lookahead == '(') ADVANCE(285); - if (lookahead == ')') ADVANCE(288); - if (lookahead == '.') ADVANCE(342); - if (lookahead == '=') ADVANCE(345); - if (lookahead == '>') ADVANCE(222); - if (lookahead == '[') ADVANCE(279); - if (lookahead == '}') ADVANCE(151); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + if (lookahead == ' ') ADVANCE(144); + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(223); + if (lookahead != 0 && + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(301); END_STATE(); case 65: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') ADVANCE(294); - if (lookahead == '%') ADVANCE(292); - if (lookahead == '\\') ADVANCE(295); - if (lookahead != 0) ADVANCE(293); - END_STATE(); - case 66: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(68) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == ']') ADVANCE(283); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(162); - if (lookahead == '{') ADVANCE(149); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(66) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(215); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); + lookahead == ' ') ADVANCE(299); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(327); + lookahead != '\f') ADVANCE(301); + END_STATE(); + case 66: + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(66) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(215); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); + if (lookahead != 0 && + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(301); END_STATE(); case 67: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(68) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == ']') ADVANCE(254); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(162); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(66) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(215); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(134); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); + lookahead == ' ') ADVANCE(299); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(327); + lookahead != '\f') ADVANCE(301); END_STATE(); case 68: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(68) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == ']') ADVANCE(254); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(162); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(66) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(215); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(133); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(299); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(327); + lookahead != 11 && + lookahead != '\f') ADVANCE(301); END_STATE(); case 69: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(68) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == ']') ADVANCE(254); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(162); - if (lookahead == '{') ADVANCE(148); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(70) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(233); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(239); + if (lookahead == 'I') ADVANCE(241); + if (lookahead == 'N') ADVANCE(242); + if (lookahead == 'T') ADVANCE(243); + if (lookahead == 'W') ADVANCE(238); + if (lookahead == 'X') ADVANCE(250); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == ']') ADVANCE(259); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(140); + if (lookahead == '{') ADVANCE(134); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); + lookahead == ' ') ADVANCE(299); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(327); + lookahead != '\f') ADVANCE(301); END_STATE(); case 70: - if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\n') ADVANCE(300); if (lookahead == '\r') SKIP(70) - if (lookahead == ' ') ADVANCE(115); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == ']') ADVANCE(254); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(163); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(233); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(239); + if (lookahead == 'I') ADVANCE(241); + if (lookahead == 'N') ADVANCE(242); + if (lookahead == 'T') ADVANCE(243); + if (lookahead == 'W') ADVANCE(238); + if (lookahead == 'X') ADVANCE(250); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(140); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(327); + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(301); END_STATE(); case 71: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(71) - if (lookahead == ' ') ADVANCE(114); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(173); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(162); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(72) + if (lookahead == '!') ADVANCE(193); + if (lookahead == '"') ADVANCE(194); + if (lookahead == '$') ADVANCE(274); + if (lookahead == '\'') ADVANCE(194); + if (lookahead == '*') ADVANCE(151); + if (lookahead == '-') ADVANCE(172); + if (lookahead == '.') ADVANCE(174); + if (lookahead == ':') ADVANCE(175); + if (lookahead == '<') ADVANCE(170); + if (lookahead == '>') ADVANCE(301); + if (lookahead == 'F') ADVANCE(181); + if (lookahead == 'I') ADVANCE(183); + if (lookahead == 'N') ADVANCE(184); + if (lookahead == 'T') ADVANCE(185); + if (lookahead == 'W') ADVANCE(180); + if (lookahead == 'X') ADVANCE(192); + if (lookahead == '[') ADVANCE(258); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == '^') ADVANCE(216); + if (lookahead == '_') ADVANCE(141); + if (lookahead == '{') ADVANCE(135); + if (lookahead == '|') ADVANCE(294); + if (lookahead == '~') ADVANCE(225); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(299); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(327); + lookahead != 11 && + lookahead != '\f') ADVANCE(197); END_STATE(); case 72: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(73) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(329); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(162); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(72) + if (lookahead == '!') ADVANCE(193); + if (lookahead == '"') ADVANCE(194); + if (lookahead == '$') ADVANCE(274); + if (lookahead == '\'') ADVANCE(194); + if (lookahead == '*') ADVANCE(151); + if (lookahead == '-') ADVANCE(172); + if (lookahead == '.') ADVANCE(174); + if (lookahead == ':') ADVANCE(175); + if (lookahead == '<') ADVANCE(170); + if (lookahead == '>') ADVANCE(301); + if (lookahead == 'F') ADVANCE(181); + if (lookahead == 'I') ADVANCE(183); + if (lookahead == 'N') ADVANCE(184); + if (lookahead == 'T') ADVANCE(185); + if (lookahead == 'W') ADVANCE(180); + if (lookahead == 'X') ADVANCE(192); + if (lookahead == '[') ADVANCE(258); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == '^') ADVANCE(216); + if (lookahead == '_') ADVANCE(141); + if (lookahead == '{') ADVANCE(267); + if (lookahead == '|') ADVANCE(294); + if (lookahead == '~') ADVANCE(225); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(327); + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(197); END_STATE(); case 73: - if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\n') ADVANCE(300); if (lookahead == '\r') SKIP(73) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(329); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(162); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == ']') ADVANCE(230); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(223); if (lookahead != 0 && (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(327); + lookahead != ' ') ADVANCE(301); END_STATE(); case 74: - if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\n') ADVANCE(300); if (lookahead == '\r') SKIP(73) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(329); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(162); - if (lookahead == '{') ADVANCE(149); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == ']') ADVANCE(230); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(134); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(223); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); + lookahead == ' ') ADVANCE(299); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(327); + lookahead != '\f') ADVANCE(301); END_STATE(); case 75: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(73) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(329); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(162); - if (lookahead == '{') ADVANCE(148); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(75) + if (lookahead == ' ') ADVANCE(144); + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(327); + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(301); END_STATE(); case 76: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(76) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(257); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(263); - if (lookahead == 'I') ADVANCE(265); - if (lookahead == 'N') ADVANCE(266); - if (lookahead == 'T') ADVANCE(267); - if (lookahead == 'W') ADVANCE(262); - if (lookahead == 'X') ADVANCE(274); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(166); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(247); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(77) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(223); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(299); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(327); + lookahead != 11 && + lookahead != '\f') ADVANCE(301); END_STATE(); case 77: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(76) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(257); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(263); - if (lookahead == 'I') ADVANCE(265); - if (lookahead == 'N') ADVANCE(266); - if (lookahead == 'T') ADVANCE(267); - if (lookahead == 'W') ADVANCE(262); - if (lookahead == 'X') ADVANCE(274); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(166); - if (lookahead == '{') ADVANCE(149); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(247); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(77) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(223); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(327); + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(301); END_STATE(); case 78: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(78) - if (lookahead == ' ') ADVANCE(114); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(173); - if (lookahead == '-') ADVANCE(257); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(263); - if (lookahead == 'I') ADVANCE(265); - if (lookahead == 'N') ADVANCE(266); - if (lookahead == 'T') ADVANCE(267); - if (lookahead == 'W') ADVANCE(262); - if (lookahead == 'X') ADVANCE(274); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(166); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(77) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(134); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(223); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(299); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(327); + lookahead != 11 && + lookahead != '\f') ADVANCE(301); END_STATE(); case 79: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(80) - if (lookahead == '!') ADVANCE(217); - if (lookahead == '"') ADVANCE(218); - if (lookahead == '$') ADVANCE(298); - if (lookahead == '\'') ADVANCE(218); - if (lookahead == '*') ADVANCE(175); - if (lookahead == '-') ADVANCE(196); - if (lookahead == '.') ADVANCE(198); - if (lookahead == ':') ADVANCE(199); - if (lookahead == '<') ADVANCE(194); - if (lookahead == '>') ADVANCE(327); - if (lookahead == 'F') ADVANCE(205); - if (lookahead == 'I') ADVANCE(207); - if (lookahead == 'N') ADVANCE(208); - if (lookahead == 'T') ADVANCE(209); - if (lookahead == 'W') ADVANCE(204); - if (lookahead == 'X') ADVANCE(216); - if (lookahead == '[') ADVANCE(282); - if (lookahead == '\\') ADVANCE(179); - if (lookahead == '^') ADVANCE(241); - if (lookahead == '_') ADVANCE(167); - if (lookahead == '{') ADVANCE(150); - if (lookahead == '|') ADVANCE(318); - if (lookahead == '~') ADVANCE(248); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(77) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(133); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(223); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); + lookahead == ' ') ADVANCE(299); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(221); + lookahead != '\f') ADVANCE(301); END_STATE(); case 80: - if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\n') ADVANCE(300); if (lookahead == '\r') SKIP(80) - if (lookahead == '!') ADVANCE(217); - if (lookahead == '"') ADVANCE(218); - if (lookahead == '$') ADVANCE(298); - if (lookahead == '\'') ADVANCE(218); - if (lookahead == '*') ADVANCE(175); - if (lookahead == '-') ADVANCE(196); - if (lookahead == '.') ADVANCE(198); - if (lookahead == ':') ADVANCE(199); - if (lookahead == '<') ADVANCE(194); - if (lookahead == '>') ADVANCE(327); - if (lookahead == 'F') ADVANCE(205); - if (lookahead == 'I') ADVANCE(207); - if (lookahead == 'N') ADVANCE(208); - if (lookahead == 'T') ADVANCE(209); - if (lookahead == 'W') ADVANCE(204); - if (lookahead == 'X') ADVANCE(216); - if (lookahead == '[') ADVANCE(282); - if (lookahead == '\\') ADVANCE(179); - if (lookahead == '^') ADVANCE(241); - if (lookahead == '_') ADVANCE(167); - if (lookahead == '{') ADVANCE(291); - if (lookahead == '|') ADVANCE(318); - if (lookahead == '~') ADVANCE(248); + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(232); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(239); + if (lookahead == 'I') ADVANCE(241); + if (lookahead == 'N') ADVANCE(242); + if (lookahead == 'T') ADVANCE(243); + if (lookahead == 'W') ADVANCE(238); + if (lookahead == 'X') ADVANCE(250); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(140); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); if (lookahead != 0 && (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(221); + lookahead != ' ') ADVANCE(301); END_STATE(); case 81: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(81) - if (lookahead == ' ') ADVANCE(115); - if (lookahead == '!') ADVANCE(217); - if (lookahead == '"') ADVANCE(218); - if (lookahead == '$') ADVANCE(298); - if (lookahead == '\'') ADVANCE(218); - if (lookahead == '*') ADVANCE(175); - if (lookahead == '-') ADVANCE(196); - if (lookahead == '.') ADVANCE(198); - if (lookahead == ':') ADVANCE(199); - if (lookahead == '<') ADVANCE(194); - if (lookahead == '>') ADVANCE(327); - if (lookahead == 'F') ADVANCE(205); - if (lookahead == 'I') ADVANCE(207); - if (lookahead == 'N') ADVANCE(208); - if (lookahead == 'T') ADVANCE(209); - if (lookahead == 'W') ADVANCE(204); - if (lookahead == 'X') ADVANCE(216); - if (lookahead == '[') ADVANCE(282); - if (lookahead == '\\') ADVANCE(179); - if (lookahead == '^') ADVANCE(241); - if (lookahead == '_') ADVANCE(165); - if (lookahead == '{') ADVANCE(291); - if (lookahead == '|') ADVANCE(318); - if (lookahead == '~') ADVANCE(249); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(80) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(232); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(239); + if (lookahead == 'I') ADVANCE(241); + if (lookahead == 'N') ADVANCE(242); + if (lookahead == 'T') ADVANCE(243); + if (lookahead == 'W') ADVANCE(238); + if (lookahead == 'X') ADVANCE(250); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(140); + if (lookahead == '{') ADVANCE(134); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(299); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(221); + lookahead != 11 && + lookahead != '\f') ADVANCE(301); END_STATE(); case 82: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(82) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == ']') ADVANCE(254); - if (lookahead == '^') ADVANCE(239); - if (lookahead == '_') ADVANCE(162); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(83) + if (lookahead == '!') ADVANCE(193); + if (lookahead == '"') ADVANCE(194); + if (lookahead == '$') ADVANCE(274); + if (lookahead == '\'') ADVANCE(194); + if (lookahead == '*') ADVANCE(151); + if (lookahead == '-') ADVANCE(172); + if (lookahead == '.') ADVANCE(174); + if (lookahead == ':') ADVANCE(175); + if (lookahead == '<') ADVANCE(170); + if (lookahead == '>') ADVANCE(301); + if (lookahead == 'F') ADVANCE(181); + if (lookahead == 'I') ADVANCE(183); + if (lookahead == 'N') ADVANCE(184); + if (lookahead == 'T') ADVANCE(185); + if (lookahead == 'W') ADVANCE(180); + if (lookahead == 'X') ADVANCE(192); + if (lookahead == '[') ADVANCE(258); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == '^') ADVANCE(217); + if (lookahead == '_') ADVANCE(141); + if (lookahead == '{') ADVANCE(135); + if (lookahead == '|') ADVANCE(294); + if (lookahead == '~') ADVANCE(224); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(299); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(327); + lookahead != 11 && + lookahead != '\f') ADVANCE(197); END_STATE(); case 83: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(82) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == ']') ADVANCE(254); - if (lookahead == '^') ADVANCE(239); - if (lookahead == '_') ADVANCE(162); - if (lookahead == '{') ADVANCE(149); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(83) + if (lookahead == '!') ADVANCE(193); + if (lookahead == '"') ADVANCE(194); + if (lookahead == '$') ADVANCE(274); + if (lookahead == '\'') ADVANCE(194); + if (lookahead == '*') ADVANCE(151); + if (lookahead == '-') ADVANCE(172); + if (lookahead == '.') ADVANCE(174); + if (lookahead == ':') ADVANCE(175); + if (lookahead == '<') ADVANCE(170); + if (lookahead == '>') ADVANCE(301); + if (lookahead == 'F') ADVANCE(181); + if (lookahead == 'I') ADVANCE(183); + if (lookahead == 'N') ADVANCE(184); + if (lookahead == 'T') ADVANCE(185); + if (lookahead == 'W') ADVANCE(180); + if (lookahead == 'X') ADVANCE(192); + if (lookahead == '[') ADVANCE(258); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == '^') ADVANCE(217); + if (lookahead == '_') ADVANCE(141); + if (lookahead == '{') ADVANCE(267); + if (lookahead == '|') ADVANCE(294); + if (lookahead == '~') ADVANCE(224); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(327); + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(197); END_STATE(); case 84: - if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\n') ADVANCE(300); if (lookahead == '\r') SKIP(84) - if (lookahead == ' ') ADVANCE(154); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == ']') ADVANCE(254); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(162); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == ']') ADVANCE(230); + if (lookahead == '^') ADVANCE(215); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(327); + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(301); END_STATE(); case 85: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(85) - if (lookahead == ' ') ADVANCE(160); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(163); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(84) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == ']') ADVANCE(230); + if (lookahead == '^') ADVANCE(215); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(134); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(299); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(327); + lookahead != 11 && + lookahead != '\f') ADVANCE(301); END_STATE(); case 86: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(87) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(239); - if (lookahead == '_') ADVANCE(162); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(86) + if (lookahead == ' ') ADVANCE(144); + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(303); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(327); + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(301); END_STATE(); case 87: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(87) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(239); - if (lookahead == '_') ADVANCE(162); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(90) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == ']') ADVANCE(259); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(299); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(327); + lookahead != 11 && + lookahead != '\f') ADVANCE(301); END_STATE(); case 88: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(87) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(239); - if (lookahead == '_') ADVANCE(162); - if (lookahead == '{') ADVANCE(149); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(90) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == ']') ADVANCE(259); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(134); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); + lookahead == ' ') ADVANCE(299); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(327); + lookahead != '\f') ADVANCE(301); END_STATE(); case 89: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(87) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(239); - if (lookahead == '_') ADVANCE(162); - if (lookahead == '{') ADVANCE(148); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(90) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == ']') ADVANCE(259); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(133); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); + lookahead == ' ') ADVANCE(299); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(327); + lookahead != '\f') ADVANCE(301); END_STATE(); case 90: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(91) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(257); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(263); - if (lookahead == 'I') ADVANCE(265); - if (lookahead == 'N') ADVANCE(266); - if (lookahead == 'T') ADVANCE(267); - if (lookahead == 'W') ADVANCE(262); - if (lookahead == 'X') ADVANCE(274); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == ']') ADVANCE(283); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(166); - if (lookahead == '{') ADVANCE(149); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(90) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(327); + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(301); END_STATE(); case 91: - if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\n') ADVANCE(300); if (lookahead == '\r') SKIP(91) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(257); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(263); - if (lookahead == 'I') ADVANCE(265); - if (lookahead == 'N') ADVANCE(266); - if (lookahead == 'T') ADVANCE(267); - if (lookahead == 'W') ADVANCE(262); - if (lookahead == 'X') ADVANCE(274); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(166); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(233); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(239); + if (lookahead == 'I') ADVANCE(241); + if (lookahead == 'N') ADVANCE(242); + if (lookahead == 'T') ADVANCE(243); + if (lookahead == 'W') ADVANCE(238); + if (lookahead == 'X') ADVANCE(250); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(215); + if (lookahead == '_') ADVANCE(140); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); if (lookahead != 0 && (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(327); + lookahead != ' ') ADVANCE(301); END_STATE(); case 92: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(93) - if (lookahead == '!') ADVANCE(217); - if (lookahead == '"') ADVANCE(218); - if (lookahead == '$') ADVANCE(298); - if (lookahead == '\'') ADVANCE(218); - if (lookahead == '*') ADVANCE(175); - if (lookahead == '-') ADVANCE(195); - if (lookahead == '.') ADVANCE(198); - if (lookahead == ':') ADVANCE(199); - if (lookahead == '<') ADVANCE(194); - if (lookahead == '>') ADVANCE(327); - if (lookahead == 'F') ADVANCE(205); - if (lookahead == 'I') ADVANCE(207); - if (lookahead == 'N') ADVANCE(208); - if (lookahead == 'T') ADVANCE(209); - if (lookahead == 'W') ADVANCE(204); - if (lookahead == 'X') ADVANCE(216); - if (lookahead == '[') ADVANCE(282); - if (lookahead == '\\') ADVANCE(179); - if (lookahead == '^') ADVANCE(241); - if (lookahead == '_') ADVANCE(167); - if (lookahead == '{') ADVANCE(150); - if (lookahead == '|') ADVANCE(318); - if (lookahead == '~') ADVANCE(249); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(91) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(233); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(239); + if (lookahead == 'I') ADVANCE(241); + if (lookahead == 'N') ADVANCE(242); + if (lookahead == 'T') ADVANCE(243); + if (lookahead == 'W') ADVANCE(238); + if (lookahead == 'X') ADVANCE(250); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(215); + if (lookahead == '_') ADVANCE(140); + if (lookahead == '{') ADVANCE(134); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); - if (lookahead != 0 && + lookahead == ' ') ADVANCE(299); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); + if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(221); + lookahead != '\f') ADVANCE(301); END_STATE(); case 93: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(93) - if (lookahead == '!') ADVANCE(217); - if (lookahead == '"') ADVANCE(218); - if (lookahead == '$') ADVANCE(298); - if (lookahead == '\'') ADVANCE(218); - if (lookahead == '*') ADVANCE(175); - if (lookahead == '-') ADVANCE(195); - if (lookahead == '.') ADVANCE(198); - if (lookahead == ':') ADVANCE(199); - if (lookahead == '<') ADVANCE(194); - if (lookahead == '>') ADVANCE(327); - if (lookahead == 'F') ADVANCE(205); - if (lookahead == 'I') ADVANCE(207); - if (lookahead == 'N') ADVANCE(208); - if (lookahead == 'T') ADVANCE(209); - if (lookahead == 'W') ADVANCE(204); - if (lookahead == 'X') ADVANCE(216); - if (lookahead == '[') ADVANCE(282); - if (lookahead == '\\') ADVANCE(179); - if (lookahead == '^') ADVANCE(241); - if (lookahead == '_') ADVANCE(167); - if (lookahead == '{') ADVANCE(291); - if (lookahead == '|') ADVANCE(318); - if (lookahead == '~') ADVANCE(249); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(94) + if (lookahead == '!') ADVANCE(193); + if (lookahead == '"') ADVANCE(194); + if (lookahead == '$') ADVANCE(274); + if (lookahead == '\'') ADVANCE(194); + if (lookahead == '*') ADVANCE(151); + if (lookahead == '-') ADVANCE(171); + if (lookahead == '.') ADVANCE(174); + if (lookahead == ':') ADVANCE(175); + if (lookahead == '<') ADVANCE(170); + if (lookahead == '>') ADVANCE(301); + if (lookahead == 'F') ADVANCE(181); + if (lookahead == 'I') ADVANCE(183); + if (lookahead == 'N') ADVANCE(184); + if (lookahead == 'T') ADVANCE(185); + if (lookahead == 'W') ADVANCE(180); + if (lookahead == 'X') ADVANCE(192); + if (lookahead == '[') ADVANCE(258); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == '^') ADVANCE(217); + if (lookahead == '_') ADVANCE(141); + if (lookahead == '{') ADVANCE(135); + if (lookahead == '|') ADVANCE(294); + if (lookahead == '~') ADVANCE(225); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(299); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(221); + lookahead != 11 && + lookahead != '\f') ADVANCE(197); END_STATE(); case 94: - if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\n') ADVANCE(300); if (lookahead == '\r') SKIP(94) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(329); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == ']') ADVANCE(254); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(162); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '!') ADVANCE(193); + if (lookahead == '"') ADVANCE(194); + if (lookahead == '$') ADVANCE(274); + if (lookahead == '\'') ADVANCE(194); + if (lookahead == '*') ADVANCE(151); + if (lookahead == '-') ADVANCE(171); + if (lookahead == '.') ADVANCE(174); + if (lookahead == ':') ADVANCE(175); + if (lookahead == '<') ADVANCE(170); + if (lookahead == '>') ADVANCE(301); + if (lookahead == 'F') ADVANCE(181); + if (lookahead == 'I') ADVANCE(183); + if (lookahead == 'N') ADVANCE(184); + if (lookahead == 'T') ADVANCE(185); + if (lookahead == 'W') ADVANCE(180); + if (lookahead == 'X') ADVANCE(192); + if (lookahead == '[') ADVANCE(258); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == '^') ADVANCE(217); + if (lookahead == '_') ADVANCE(141); + if (lookahead == '{') ADVANCE(267); + if (lookahead == '|') ADVANCE(294); + if (lookahead == '~') ADVANCE(225); if (lookahead != 0 && (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(327); + lookahead != ' ') ADVANCE(197); END_STATE(); case 95: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(94) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(329); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == ']') ADVANCE(254); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(162); - if (lookahead == '{') ADVANCE(149); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(95) + if (lookahead == ' ') ADVANCE(146); + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(149); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(327); + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(301); END_STATE(); case 96: - if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\n') ADVANCE(300); if (lookahead == '\r') SKIP(96) - if (lookahead == ' ') ADVANCE(159); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(173); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(162); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == ' ') ADVANCE(144); + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(215); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(327); + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(301); END_STATE(); case 97: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(100) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == ']') ADVANCE(283); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(162); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); - if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(327); + if (lookahead == '\r') SKIP(97) + if (lookahead == '"') ADVANCE(321); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(324); END_STATE(); case 98: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(100) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == ']') ADVANCE(283); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(162); - if (lookahead == '{') ADVANCE(149); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); + if (lookahead == '\r') ADVANCE(262); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(327); + lookahead != '\n' && + lookahead != ')') ADVANCE(263); END_STATE(); case 99: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(100) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == ']') ADVANCE(283); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(162); - if (lookahead == '{') ADVANCE(148); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); + if (lookahead == '\r') ADVANCE(295); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(327); + lookahead != '\t' && + lookahead != '\n' && + lookahead != ' ' && + lookahead != '=' && + lookahead != '{' && + lookahead != '}') ADVANCE(296); END_STATE(); case 100: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(100) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(162); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '\r') ADVANCE(322); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(327); + lookahead != '\n' && + lookahead != '"') ADVANCE(323); END_STATE(); case 101: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(101) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(257); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(263); - if (lookahead == 'I') ADVANCE(265); - if (lookahead == 'N') ADVANCE(266); - if (lookahead == 'T') ADVANCE(267); - if (lookahead == 'W') ADVANCE(262); - if (lookahead == 'X') ADVANCE(274); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(239); - if (lookahead == '_') ADVANCE(166); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(327); + if (lookahead == ' ') ADVANCE(101); + if (lookahead == '*') ADVANCE(115); END_STATE(); case 102: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(101) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(257); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(263); - if (lookahead == 'I') ADVANCE(265); - if (lookahead == 'N') ADVANCE(266); - if (lookahead == 'T') ADVANCE(267); - if (lookahead == 'W') ADVANCE(262); - if (lookahead == 'X') ADVANCE(274); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(239); - if (lookahead == '_') ADVANCE(166); - if (lookahead == '{') ADVANCE(149); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); - if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(327); + if (lookahead == '.') ADVANCE(159); END_STATE(); case 103: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(104) - if (lookahead == '!') ADVANCE(217); - if (lookahead == '"') ADVANCE(218); - if (lookahead == '$') ADVANCE(298); - if (lookahead == '\'') ADVANCE(218); - if (lookahead == '*') ADVANCE(175); - if (lookahead == '-') ADVANCE(196); - if (lookahead == '.') ADVANCE(198); - if (lookahead == ':') ADVANCE(199); - if (lookahead == '<') ADVANCE(194); - if (lookahead == '>') ADVANCE(327); - if (lookahead == 'F') ADVANCE(205); - if (lookahead == 'I') ADVANCE(207); - if (lookahead == 'N') ADVANCE(208); - if (lookahead == 'T') ADVANCE(209); - if (lookahead == 'W') ADVANCE(204); - if (lookahead == 'X') ADVANCE(216); - if (lookahead == '[') ADVANCE(282); - if (lookahead == '\\') ADVANCE(179); - if (lookahead == ']') ADVANCE(284); - if (lookahead == '^') ADVANCE(241); - if (lookahead == '_') ADVANCE(167); - if (lookahead == '{') ADVANCE(150); - if (lookahead == '|') ADVANCE(318); - if (lookahead == '~') ADVANCE(249); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); + if (lookahead == ':') ADVANCE(211); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(221); + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ') ADVANCE(103); END_STATE(); case 104: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(104) - if (lookahead == '!') ADVANCE(217); - if (lookahead == '"') ADVANCE(218); - if (lookahead == '$') ADVANCE(298); - if (lookahead == '\'') ADVANCE(218); - if (lookahead == '*') ADVANCE(175); - if (lookahead == '-') ADVANCE(196); - if (lookahead == '.') ADVANCE(198); - if (lookahead == ':') ADVANCE(199); - if (lookahead == '<') ADVANCE(194); - if (lookahead == '>') ADVANCE(327); - if (lookahead == 'F') ADVANCE(205); - if (lookahead == 'I') ADVANCE(207); - if (lookahead == 'N') ADVANCE(208); - if (lookahead == 'T') ADVANCE(209); - if (lookahead == 'W') ADVANCE(204); - if (lookahead == 'X') ADVANCE(216); - if (lookahead == '[') ADVANCE(282); - if (lookahead == '\\') ADVANCE(179); - if (lookahead == '^') ADVANCE(241); - if (lookahead == '_') ADVANCE(167); - if (lookahead == '{') ADVANCE(291); - if (lookahead == '|') ADVANCE(318); - if (lookahead == '~') ADVANCE(249); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(221); + if (lookahead == 'D') ADVANCE(110); END_STATE(); case 105: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(105) - if (lookahead == ' ') ADVANCE(154); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(329); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(162); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(327); + if (lookahead == 'E') ADVANCE(281); END_STATE(); case 106: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(106) - if (lookahead == ' ') ADVANCE(154); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(162); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(247); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(327); + if (lookahead == 'E') ADVANCE(290); END_STATE(); case 107: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(107) - if (lookahead == ' ') ADVANCE(154); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(239); - if (lookahead == '_') ADVANCE(162); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(327); + if (lookahead == 'F') ADVANCE(109); END_STATE(); case 108: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(108) - if (lookahead == ' ') ADVANCE(154); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(162); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(327); + if (lookahead == 'M') ADVANCE(106); END_STATE(); case 109: - if (lookahead == '\r') SKIP(109) - if (lookahead == '"') ADVANCE(347); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(350); + if (lookahead == 'O') ADVANCE(284); END_STATE(); case 110: - if (lookahead == '\r') ADVANCE(286); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != ')') ADVANCE(287); + if (lookahead == 'O') ADVANCE(275); END_STATE(); case 111: - if (lookahead == '\r') ADVANCE(348); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '"') ADVANCE(349); + if (lookahead == 'P') ADVANCE(278); END_STATE(); case 112: - if (lookahead == '\r') ADVANCE(319); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != ' ' && - lookahead != '=' && - lookahead != '{' && - lookahead != '}') ADVANCE(320); + if (lookahead == 'T') ADVANCE(105); END_STATE(); case 113: - if (lookahead == ' ') ADVANCE(113); - if (lookahead == '*') ADVANCE(129); - if (lookahead == '_') ADVANCE(130); + if (lookahead == 'X') ADVANCE(108); END_STATE(); case 114: - if (lookahead == ' ') ADVANCE(114); - if (lookahead == '*') ADVANCE(129); + if (lookahead == 'X') ADVANCE(287); END_STATE(); case 115: - if (lookahead == ' ') ADVANCE(115); - if (lookahead == '_') ADVANCE(130); + if (lookahead == '}') ADVANCE(152); END_STATE(); case 116: - if (lookahead == '.') ADVANCE(183); - END_STATE(); - case 117: - if (lookahead == ':') ADVANCE(235); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ') ADVANCE(117); - END_STATE(); - case 118: - if (lookahead == 'D') ADVANCE(124); - END_STATE(); - case 119: - if (lookahead == 'E') ADVANCE(305); - END_STATE(); - case 120: - if (lookahead == 'E') ADVANCE(314); - END_STATE(); - case 121: - if (lookahead == 'F') ADVANCE(123); - END_STATE(); - case 122: - if (lookahead == 'M') ADVANCE(120); - END_STATE(); - case 123: - if (lookahead == 'O') ADVANCE(308); - END_STATE(); - case 124: - if (lookahead == 'O') ADVANCE(299); - END_STATE(); - case 125: - if (lookahead == 'P') ADVANCE(302); - END_STATE(); - case 126: - if (lookahead == 'T') ADVANCE(119); - END_STATE(); - case 127: - if (lookahead == 'X') ADVANCE(122); - END_STATE(); - case 128: - if (lookahead == 'X') ADVANCE(311); - END_STATE(); - case 129: - if (lookahead == '}') ADVANCE(176); - END_STATE(); - case 130: - if (lookahead == '}') ADVANCE(168); - END_STATE(); - case 131: if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '}') ADVANCE(344); + lookahead != '}') ADVANCE(318); END_STATE(); - case 132: - if (eof) ADVANCE(145); - if (lookahead == '\t') ADVANCE(325); - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(140) - if (lookahead == ' ') ADVANCE(161); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(162); - if (lookahead == '{') ADVANCE(149); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + case 117: + if (eof) ADVANCE(130); + if (lookahead == '\t') ADVANCE(299); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(127) + if (lookahead == ' ') ADVANCE(147); + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(134); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(327); + lookahead != '\f') ADVANCE(301); END_STATE(); - case 133: - if (eof) ADVANCE(145); - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(133) - if (lookahead == ' ') ADVANCE(158); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(347); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '%') ADVANCE(292); - if (lookahead == '(') ADVANCE(285); - if (lookahead == ')') ADVANCE(288); - if (lookahead == '*') ADVANCE(173); - if (lookahead == '+') ADVANCE(338); - if (lookahead == '-') ADVANCE(256); - if (lookahead == '.') ADVANCE(343); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == '=') ADVANCE(346); - if (lookahead == '>') ADVANCE(222); - if (lookahead == 'F') ADVANCE(263); - if (lookahead == 'I') ADVANCE(265); - if (lookahead == 'N') ADVANCE(266); - if (lookahead == 'T') ADVANCE(267); - if (lookahead == 'W') ADVANCE(262); - if (lookahead == 'X') ADVANCE(274); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(180); - if (lookahead == ']') ADVANCE(254); - if (lookahead == '^') ADVANCE(239); - if (lookahead == '_') ADVANCE(164); - if (lookahead == '{') ADVANCE(289); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '}') ADVANCE(151); - if (lookahead == '~') ADVANCE(247); + case 118: + if (eof) ADVANCE(130); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(118) + if (lookahead == ' ') ADVANCE(146); + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(321); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '%') ADVANCE(268); + if (lookahead == '(') ADVANCE(261); + if (lookahead == ')') ADVANCE(264); + if (lookahead == '*') ADVANCE(149); + if (lookahead == '+') ADVANCE(312); + if (lookahead == '-') ADVANCE(232); + if (lookahead == '.') ADVANCE(317); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == '=') ADVANCE(320); + if (lookahead == '>') ADVANCE(198); + if (lookahead == 'F') ADVANCE(239); + if (lookahead == 'I') ADVANCE(241); + if (lookahead == 'N') ADVANCE(242); + if (lookahead == 'T') ADVANCE(243); + if (lookahead == 'W') ADVANCE(238); + if (lookahead == 'X') ADVANCE(250); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(156); + if (lookahead == ']') ADVANCE(230); + if (lookahead == '^') ADVANCE(215); + if (lookahead == '_') ADVANCE(140); + if (lookahead == '{') ADVANCE(265); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '}') ADVANCE(136); + if (lookahead == '~') ADVANCE(223); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(327); + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(301); END_STATE(); - case 134: - if (eof) ADVANCE(145); - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(135) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(162); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + case 119: + if (eof) ADVANCE(130); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(120) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); + lookahead == ' ') ADVANCE(299); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(327); + lookahead != '\f') ADVANCE(301); END_STATE(); - case 135: - if (eof) ADVANCE(145); - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(135) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(162); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + case 120: + if (eof) ADVANCE(130); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(120) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead != 0 && (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(327); + lookahead != ' ') ADVANCE(301); END_STATE(); - case 136: - if (eof) ADVANCE(145); - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(135) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(162); - if (lookahead == '{') ADVANCE(149); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + case 121: + if (eof) ADVANCE(130); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(120) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(134); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); + lookahead == ' ') ADVANCE(299); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(327); + lookahead != '\f') ADVANCE(301); END_STATE(); - case 137: - if (eof) ADVANCE(145); - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(135) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(162); - if (lookahead == '{') ADVANCE(148); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + case 122: + if (eof) ADVANCE(130); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(120) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(133); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); + lookahead == ' ') ADVANCE(299); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(327); + lookahead != '\f') ADVANCE(301); END_STATE(); - case 138: - if (eof) ADVANCE(145); - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(138) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == ']') ADVANCE(254); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(162); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + case 123: + if (eof) ADVANCE(130); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(123) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == ']') ADVANCE(230); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead != 0 && (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(327); + lookahead != ' ') ADVANCE(301); END_STATE(); - case 139: - if (eof) ADVANCE(145); - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(138) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == ']') ADVANCE(254); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(162); - if (lookahead == '{') ADVANCE(149); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + case 124: + if (eof) ADVANCE(130); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(123) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == ']') ADVANCE(230); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(134); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); + lookahead == ' ') ADVANCE(299); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(327); + lookahead != '\f') ADVANCE(301); END_STATE(); - case 140: - if (eof) ADVANCE(145); - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(140) - if (lookahead == ' ') ADVANCE(154); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(162); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(327); - END_STATE(); - case 141: - if (eof) ADVANCE(145); - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(141) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(257); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(263); - if (lookahead == 'I') ADVANCE(265); - if (lookahead == 'N') ADVANCE(266); - if (lookahead == 'T') ADVANCE(267); - if (lookahead == 'W') ADVANCE(262); - if (lookahead == 'X') ADVANCE(274); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(166); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + case 125: + if (eof) ADVANCE(130); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(125) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(233); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(239); + if (lookahead == 'I') ADVANCE(241); + if (lookahead == 'N') ADVANCE(242); + if (lookahead == 'T') ADVANCE(243); + if (lookahead == 'W') ADVANCE(238); + if (lookahead == 'X') ADVANCE(250); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(140); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); if (lookahead != 0 && (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(327); + lookahead != ' ') ADVANCE(301); END_STATE(); - case 142: - if (eof) ADVANCE(145); - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(141) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(257); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(263); - if (lookahead == 'I') ADVANCE(265); - if (lookahead == 'N') ADVANCE(266); - if (lookahead == 'T') ADVANCE(267); - if (lookahead == 'W') ADVANCE(262); - if (lookahead == 'X') ADVANCE(274); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(166); - if (lookahead == '{') ADVANCE(149); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + case 126: + if (eof) ADVANCE(130); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(125) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(233); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(239); + if (lookahead == 'I') ADVANCE(241); + if (lookahead == 'N') ADVANCE(242); + if (lookahead == 'T') ADVANCE(243); + if (lookahead == 'W') ADVANCE(238); + if (lookahead == 'X') ADVANCE(250); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(140); + if (lookahead == '{') ADVANCE(134); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); + lookahead == ' ') ADVANCE(299); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(327); + lookahead != '\f') ADVANCE(301); END_STATE(); - case 143: - if (eof) ADVANCE(145); - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(144) - if (lookahead == '!') ADVANCE(217); - if (lookahead == '"') ADVANCE(218); - if (lookahead == '$') ADVANCE(298); - if (lookahead == '\'') ADVANCE(218); - if (lookahead == '*') ADVANCE(175); - if (lookahead == '-') ADVANCE(196); - if (lookahead == '.') ADVANCE(198); - if (lookahead == ':') ADVANCE(199); - if (lookahead == '<') ADVANCE(194); - if (lookahead == '>') ADVANCE(327); - if (lookahead == 'F') ADVANCE(205); - if (lookahead == 'I') ADVANCE(207); - if (lookahead == 'N') ADVANCE(208); - if (lookahead == 'T') ADVANCE(209); - if (lookahead == 'W') ADVANCE(204); - if (lookahead == 'X') ADVANCE(216); - if (lookahead == '[') ADVANCE(282); - if (lookahead == '\\') ADVANCE(179); - if (lookahead == '^') ADVANCE(241); - if (lookahead == '_') ADVANCE(167); - if (lookahead == '{') ADVANCE(150); - if (lookahead == '|') ADVANCE(318); - if (lookahead == '~') ADVANCE(249); + case 127: + if (eof) ADVANCE(130); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(127) + if (lookahead == ' ') ADVANCE(144); + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); + if (lookahead != 0 && + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(301); + END_STATE(); + case 128: + if (eof) ADVANCE(130); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(129) + if (lookahead == '!') ADVANCE(193); + if (lookahead == '"') ADVANCE(194); + if (lookahead == '$') ADVANCE(274); + if (lookahead == '\'') ADVANCE(194); + if (lookahead == '*') ADVANCE(151); + if (lookahead == '-') ADVANCE(172); + if (lookahead == '.') ADVANCE(174); + if (lookahead == ':') ADVANCE(175); + if (lookahead == '<') ADVANCE(170); + if (lookahead == '>') ADVANCE(301); + if (lookahead == 'F') ADVANCE(181); + if (lookahead == 'I') ADVANCE(183); + if (lookahead == 'N') ADVANCE(184); + if (lookahead == 'T') ADVANCE(185); + if (lookahead == 'W') ADVANCE(180); + if (lookahead == 'X') ADVANCE(192); + if (lookahead == '[') ADVANCE(258); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == '^') ADVANCE(217); + if (lookahead == '_') ADVANCE(141); + if (lookahead == '{') ADVANCE(135); + if (lookahead == '|') ADVANCE(294); + if (lookahead == '~') ADVANCE(225); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); + lookahead == ' ') ADVANCE(299); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(221); + lookahead != '\f') ADVANCE(197); END_STATE(); - case 144: - if (eof) ADVANCE(145); - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(144) - if (lookahead == '!') ADVANCE(217); - if (lookahead == '"') ADVANCE(218); - if (lookahead == '$') ADVANCE(298); - if (lookahead == '\'') ADVANCE(218); - if (lookahead == '*') ADVANCE(175); - if (lookahead == '-') ADVANCE(196); - if (lookahead == '.') ADVANCE(198); - if (lookahead == ':') ADVANCE(199); - if (lookahead == '<') ADVANCE(194); - if (lookahead == '>') ADVANCE(327); - if (lookahead == 'F') ADVANCE(205); - if (lookahead == 'I') ADVANCE(207); - if (lookahead == 'N') ADVANCE(208); - if (lookahead == 'T') ADVANCE(209); - if (lookahead == 'W') ADVANCE(204); - if (lookahead == 'X') ADVANCE(216); - if (lookahead == '[') ADVANCE(282); - if (lookahead == '\\') ADVANCE(179); - if (lookahead == '^') ADVANCE(241); - if (lookahead == '_') ADVANCE(167); - if (lookahead == '{') ADVANCE(291); - if (lookahead == '|') ADVANCE(318); - if (lookahead == '~') ADVANCE(249); + case 129: + if (eof) ADVANCE(130); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(129) + if (lookahead == '!') ADVANCE(193); + if (lookahead == '"') ADVANCE(194); + if (lookahead == '$') ADVANCE(274); + if (lookahead == '\'') ADVANCE(194); + if (lookahead == '*') ADVANCE(151); + if (lookahead == '-') ADVANCE(172); + if (lookahead == '.') ADVANCE(174); + if (lookahead == ':') ADVANCE(175); + if (lookahead == '<') ADVANCE(170); + if (lookahead == '>') ADVANCE(301); + if (lookahead == 'F') ADVANCE(181); + if (lookahead == 'I') ADVANCE(183); + if (lookahead == 'N') ADVANCE(184); + if (lookahead == 'T') ADVANCE(185); + if (lookahead == 'W') ADVANCE(180); + if (lookahead == 'X') ADVANCE(192); + if (lookahead == '[') ADVANCE(258); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == '^') ADVANCE(217); + if (lookahead == '_') ADVANCE(141); + if (lookahead == '{') ADVANCE(267); + if (lookahead == '|') ADVANCE(294); + if (lookahead == '~') ADVANCE(225); if (lookahead != 0 && (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(221); + lookahead != ' ') ADVANCE(197); END_STATE(); - case 145: + case 130: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 146: + case 131: ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 147: + case 132: ACCEPT_TOKEN(anon_sym_LBRACE); - if (lookahead == '*') ADVANCE(170); - if (lookahead == '+') ADVANCE(227); - if (lookahead == '-') ADVANCE(231); - if (lookahead == '=') ADVANCE(296); - if (lookahead == '^') ADVANCE(236); - if (lookahead == '_') ADVANCE(152); - if (lookahead == '~') ADVANCE(244); + if (lookahead == '*') ADVANCE(142); + if (lookahead == '+') ADVANCE(203); + if (lookahead == '-') ADVANCE(207); + if (lookahead == '=') ADVANCE(272); + if (lookahead == '^') ADVANCE(212); + if (lookahead == '_') ADVANCE(137); + if (lookahead == '~') ADVANCE(220); END_STATE(); - case 148: + case 133: ACCEPT_TOKEN(anon_sym_LBRACE); if (lookahead == '"' || - lookahead == '\'') ADVANCE(181); - if (lookahead == '*') ADVANCE(170); - if (lookahead == '+') ADVANCE(227); - if (lookahead == '-') ADVANCE(231); - if (lookahead == '=') ADVANCE(296); - if (lookahead == '^') ADVANCE(236); - if (lookahead == '_') ADVANCE(152); - if (lookahead == '~') ADVANCE(244); + lookahead == '\'') ADVANCE(157); + if (lookahead == '*') ADVANCE(142); + if (lookahead == '+') ADVANCE(203); + if (lookahead == '-') ADVANCE(207); + if (lookahead == '=') ADVANCE(272); + if (lookahead == '^') ADVANCE(212); + if (lookahead == '_') ADVANCE(137); + if (lookahead == '~') ADVANCE(220); END_STATE(); - case 149: + case 134: ACCEPT_TOKEN(anon_sym_LBRACE); if (lookahead == '"' || - lookahead == '\'') ADVANCE(181); - if (lookahead == '*') ADVANCE(170); - if (lookahead == '+') ADVANCE(227); - if (lookahead == '-') ADVANCE(231); - if (lookahead == '=') ADVANCE(223); - if (lookahead == '^') ADVANCE(236); - if (lookahead == '_') ADVANCE(152); - if (lookahead == '~') ADVANCE(244); + lookahead == '\'') ADVANCE(157); + if (lookahead == '*') ADVANCE(142); + if (lookahead == '+') ADVANCE(203); + if (lookahead == '-') ADVANCE(207); + if (lookahead == '=') ADVANCE(199); + if (lookahead == '^') ADVANCE(212); + if (lookahead == '_') ADVANCE(137); + if (lookahead == '~') ADVANCE(220); END_STATE(); - case 150: + case 135: ACCEPT_TOKEN(anon_sym_LBRACE); if (lookahead == '"' || - lookahead == '\'') ADVANCE(182); - if (lookahead == '*') ADVANCE(171); - if (lookahead == '+') ADVANCE(228); - if (lookahead == '-') ADVANCE(232); - if (lookahead == '=') ADVANCE(224); - if (lookahead == '^') ADVANCE(237); - if (lookahead == '_') ADVANCE(153); - if (lookahead == '~') ADVANCE(245); + lookahead == '\'') ADVANCE(158); + if (lookahead == '*') ADVANCE(143); + if (lookahead == '+') ADVANCE(204); + if (lookahead == '-') ADVANCE(208); + if (lookahead == '=') ADVANCE(200); + if (lookahead == '^') ADVANCE(213); + if (lookahead == '_') ADVANCE(138); + if (lookahead == '~') ADVANCE(221); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 151: + case 136: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 152: + case 137: ACCEPT_TOKEN(anon_sym_LBRACE_); END_STATE(); - case 153: + case 138: ACCEPT_TOKEN(anon_sym_LBRACE_); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); - END_STATE(); - case 154: - ACCEPT_TOKEN(anon_sym_SPACE); - END_STATE(); - case 155: - ACCEPT_TOKEN(anon_sym_SPACE); - if (lookahead == '\t') ADVANCE(325); - if (lookahead == ' ') ADVANCE(322); - if (lookahead == '*') ADVANCE(129); - if (lookahead == '_') ADVANCE(130); - END_STATE(); - case 156: - ACCEPT_TOKEN(anon_sym_SPACE); - if (lookahead == '\t') ADVANCE(325); - if (lookahead == ' ') ADVANCE(323); - if (lookahead == '*') ADVANCE(129); - END_STATE(); - case 157: - ACCEPT_TOKEN(anon_sym_SPACE); - if (lookahead == '\t') ADVANCE(325); - if (lookahead == ' ') ADVANCE(324); - if (lookahead == '_') ADVANCE(130); - END_STATE(); - case 158: - ACCEPT_TOKEN(anon_sym_SPACE); - if (lookahead == ' ') ADVANCE(113); - if (lookahead == '*') ADVANCE(129); - if (lookahead == '_') ADVANCE(130); - END_STATE(); - case 159: - ACCEPT_TOKEN(anon_sym_SPACE); - if (lookahead == ' ') ADVANCE(114); - if (lookahead == '*') ADVANCE(129); - END_STATE(); - case 160: - ACCEPT_TOKEN(anon_sym_SPACE); - if (lookahead == ' ') ADVANCE(115); - if (lookahead == '_') ADVANCE(130); - END_STATE(); - case 161: - ACCEPT_TOKEN(anon_sym_SPACE); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); - END_STATE(); - case 162: - ACCEPT_TOKEN(anon_sym__); + lookahead != '>') ADVANCE(197); END_STATE(); - case 163: + case 139: ACCEPT_TOKEN(anon_sym__); - if (lookahead == '}') ADVANCE(168); END_STATE(); - case 164: + case 140: ACCEPT_TOKEN(anon_sym__); - if (lookahead == '}') ADVANCE(168); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); END_STATE(); - case 165: + case 141: ACCEPT_TOKEN(anon_sym__); - if (lookahead == '}') ADVANCE(169); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 166: - ACCEPT_TOKEN(anon_sym__); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + case 142: + ACCEPT_TOKEN(anon_sym_LBRACE_STAR); END_STATE(); - case 167: - ACCEPT_TOKEN(anon_sym__); + case 143: + ACCEPT_TOKEN(anon_sym_LBRACE_STAR); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 168: - ACCEPT_TOKEN(aux_sym_emphasis_end_token1); + case 144: + ACCEPT_TOKEN(anon_sym_SPACE); END_STATE(); - case 169: - ACCEPT_TOKEN(aux_sym_emphasis_end_token1); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(221); + case 145: + ACCEPT_TOKEN(anon_sym_SPACE); + if (lookahead == '\t') ADVANCE(299); + if (lookahead == ' ') ADVANCE(298); + if (lookahead == '*') ADVANCE(115); END_STATE(); - case 170: - ACCEPT_TOKEN(anon_sym_LBRACE_STAR); + case 146: + ACCEPT_TOKEN(anon_sym_SPACE); + if (lookahead == ' ') ADVANCE(101); + if (lookahead == '*') ADVANCE(115); END_STATE(); - case 171: - ACCEPT_TOKEN(anon_sym_LBRACE_STAR); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(221); + case 147: + ACCEPT_TOKEN(anon_sym_SPACE); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(299); END_STATE(); - case 172: + case 148: ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); - case 173: + case 149: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '}') ADVANCE(176); + if (lookahead == '}') ADVANCE(152); END_STATE(); - case 174: + case 150: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '}') ADVANCE(177); + if (lookahead == '}') ADVANCE(153); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 175: + case 151: ACCEPT_TOKEN(anon_sym_STAR); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 176: + case 152: ACCEPT_TOKEN(aux_sym_strong_end_token1); END_STATE(); - case 177: + case 153: ACCEPT_TOKEN(aux_sym_strong_end_token1); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 178: + case 154: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '"' || - lookahead == '\'') ADVANCE(181); + lookahead == '\'') ADVANCE(157); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && - lookahead != '\\') ADVANCE(191); + lookahead != '\\') ADVANCE(167); END_STATE(); - case 179: + case 155: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '"' || - lookahead == '\'') ADVANCE(182); - if (lookahead == '\\') ADVANCE(221); + lookahead == '\'') ADVANCE(158); + if (lookahead == '\\') ADVANCE(197); if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || lookahead == ' ' || - lookahead == '>') ADVANCE(191); + lookahead == '>') ADVANCE(167); if (lookahead != 0 && - (lookahead < '\n' || '\r' < lookahead)) ADVANCE(192); + (lookahead < '\n' || '\r' < lookahead)) ADVANCE(168); END_STATE(); - case 180: + case 156: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && - lookahead != '\\') ADVANCE(191); + lookahead != '\\') ADVANCE(167); END_STATE(); - case 181: + case 157: ACCEPT_TOKEN(sym_quotation_marks); END_STATE(); - case 182: + case 158: ACCEPT_TOKEN(sym_quotation_marks); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 183: + case 159: ACCEPT_TOKEN(sym_ellipsis); END_STATE(); - case 184: + case 160: ACCEPT_TOKEN(sym_ellipsis); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 185: + case 161: ACCEPT_TOKEN(sym_em_dash); END_STATE(); - case 186: + case 162: ACCEPT_TOKEN(sym_em_dash); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); END_STATE(); - case 187: + case 163: ACCEPT_TOKEN(sym_em_dash); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 188: + case 164: ACCEPT_TOKEN(sym_en_dash); - if (lookahead == '-') ADVANCE(186); + if (lookahead == '-') ADVANCE(162); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); END_STATE(); - case 189: + case 165: ACCEPT_TOKEN(sym_en_dash); - if (lookahead == '-') ADVANCE(185); + if (lookahead == '-') ADVANCE(161); END_STATE(); - case 190: + case 166: ACCEPT_TOKEN(sym_en_dash); - if (lookahead == '-') ADVANCE(187); + if (lookahead == '-') ADVANCE(163); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 191: + case 167: ACCEPT_TOKEN(sym_backslash_escape); END_STATE(); - case 192: + case 168: ACCEPT_TOKEN(sym_backslash_escape); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 193: + case 169: ACCEPT_TOKEN(anon_sym_LT); END_STATE(); - case 194: + case 170: ACCEPT_TOKEN(anon_sym_LT); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 195: + case 171: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == '-') ADVANCE(190); - if (lookahead == '}') ADVANCE(234); + if (lookahead == '-') ADVANCE(166); + if (lookahead == '}') ADVANCE(210); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 196: + case 172: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == '-') ADVANCE(190); + if (lookahead == '-') ADVANCE(166); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 197: + case 173: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == '.') ADVANCE(184); + if (lookahead == '.') ADVANCE(160); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 198: + case 174: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == '.') ADVANCE(197); + if (lookahead == '.') ADVANCE(173); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 199: + case 175: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == ':') ADVANCE(221); - if (lookahead == '>') ADVANCE(117); + if (lookahead == ':') ADVANCE(197); + if (lookahead == '>') ADVANCE(103); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ') ADVANCE(199); + lookahead != ' ') ADVANCE(175); END_STATE(); - case 200: + case 176: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'D') ADVANCE(211); + if (lookahead == 'D') ADVANCE(187); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 201: + case 177: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'E') ADVANCE(307); + if (lookahead == 'E') ADVANCE(283); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 202: + case 178: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'E') ADVANCE(316); + if (lookahead == 'E') ADVANCE(292); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 203: + case 179: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'F') ADVANCE(210); + if (lookahead == 'F') ADVANCE(186); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 204: + case 180: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'I') ADVANCE(212); + if (lookahead == 'I') ADVANCE(188); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 205: + case 181: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'I') ADVANCE(214); + if (lookahead == 'I') ADVANCE(190); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 206: + case 182: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'M') ADVANCE(202); + if (lookahead == 'M') ADVANCE(178); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 207: + case 183: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'N') ADVANCE(203); + if (lookahead == 'N') ADVANCE(179); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 208: + case 184: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'O') ADVANCE(213); + if (lookahead == 'O') ADVANCE(189); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 209: + case 185: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'O') ADVANCE(200); + if (lookahead == 'O') ADVANCE(176); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 210: + case 186: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'O') ADVANCE(310); + if (lookahead == 'O') ADVANCE(286); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 211: + case 187: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'O') ADVANCE(301); + if (lookahead == 'O') ADVANCE(277); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 212: + case 188: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'P') ADVANCE(304); + if (lookahead == 'P') ADVANCE(280); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 213: + case 189: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'T') ADVANCE(201); + if (lookahead == 'T') ADVANCE(177); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 214: + case 190: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'X') ADVANCE(206); + if (lookahead == 'X') ADVANCE(182); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 215: + case 191: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'X') ADVANCE(313); + if (lookahead == 'X') ADVANCE(289); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 216: + case 192: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'X') ADVANCE(215); + if (lookahead == 'X') ADVANCE(191); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 217: + case 193: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == '[') ADVANCE(278); + if (lookahead == '[') ADVANCE(254); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 218: + case 194: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == '}') ADVANCE(182); + if (lookahead == '}') ADVANCE(158); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 219: + case 195: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == '}') ADVANCE(230); + if (lookahead == '}') ADVANCE(202); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 220: + case 196: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == '}') ADVANCE(226); + if (lookahead == '}') ADVANCE(206); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 221: + case 197: ACCEPT_TOKEN(aux_sym_autolink_token1); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 222: + case 198: ACCEPT_TOKEN(anon_sym_GT); END_STATE(); - case 223: + case 199: ACCEPT_TOKEN(anon_sym_LBRACE_EQ); END_STATE(); - case 224: + case 200: ACCEPT_TOKEN(anon_sym_LBRACE_EQ); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 225: + case 201: ACCEPT_TOKEN(anon_sym_EQ_RBRACE); END_STATE(); - case 226: + case 202: ACCEPT_TOKEN(anon_sym_EQ_RBRACE); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 227: + case 203: ACCEPT_TOKEN(anon_sym_LBRACE_PLUS); END_STATE(); - case 228: + case 204: ACCEPT_TOKEN(anon_sym_LBRACE_PLUS); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 229: + case 205: ACCEPT_TOKEN(anon_sym_PLUS_RBRACE); END_STATE(); - case 230: + case 206: ACCEPT_TOKEN(anon_sym_PLUS_RBRACE); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 231: + case 207: ACCEPT_TOKEN(anon_sym_LBRACE_DASH); END_STATE(); - case 232: + case 208: ACCEPT_TOKEN(anon_sym_LBRACE_DASH); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 233: + case 209: ACCEPT_TOKEN(anon_sym_DASH_RBRACE); END_STATE(); - case 234: + case 210: ACCEPT_TOKEN(anon_sym_DASH_RBRACE); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 235: + case 211: ACCEPT_TOKEN(sym_symbol); END_STATE(); - case 236: + case 212: ACCEPT_TOKEN(anon_sym_LBRACE_CARET); END_STATE(); - case 237: + case 213: ACCEPT_TOKEN(anon_sym_LBRACE_CARET); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 238: + case 214: ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); - case 239: + case 215: ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '}') ADVANCE(242); + if (lookahead == '}') ADVANCE(218); END_STATE(); - case 240: + case 216: ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '}') ADVANCE(243); + if (lookahead == '}') ADVANCE(219); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 241: + case 217: ACCEPT_TOKEN(anon_sym_CARET); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 242: + case 218: ACCEPT_TOKEN(anon_sym_CARET_RBRACE); END_STATE(); - case 243: + case 219: ACCEPT_TOKEN(anon_sym_CARET_RBRACE); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 244: + case 220: ACCEPT_TOKEN(anon_sym_LBRACE_TILDE); END_STATE(); - case 245: + case 221: ACCEPT_TOKEN(anon_sym_LBRACE_TILDE); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 246: + case 222: ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); - case 247: + case 223: ACCEPT_TOKEN(anon_sym_TILDE); - if (lookahead == '}') ADVANCE(250); + if (lookahead == '}') ADVANCE(226); END_STATE(); - case 248: + case 224: ACCEPT_TOKEN(anon_sym_TILDE); - if (lookahead == '}') ADVANCE(251); + if (lookahead == '}') ADVANCE(227); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 249: + case 225: ACCEPT_TOKEN(anon_sym_TILDE); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 250: + case 226: ACCEPT_TOKEN(anon_sym_TILDE_RBRACE); END_STATE(); - case 251: + case 227: ACCEPT_TOKEN(anon_sym_TILDE_RBRACE); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 252: + case 228: ACCEPT_TOKEN(anon_sym_LBRACK_CARET); END_STATE(); - case 253: + case 229: ACCEPT_TOKEN(anon_sym_LBRACK_CARET); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 254: + case 230: ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); - case 255: + case 231: ACCEPT_TOKEN(anon_sym_RBRACK); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 256: + case 232: ACCEPT_TOKEN(sym__id); - if (lookahead == '-') ADVANCE(188); - if (lookahead == '}') ADVANCE(233); + if (lookahead == '-') ADVANCE(164); + if (lookahead == '}') ADVANCE(209); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); END_STATE(); - case 257: + case 233: ACCEPT_TOKEN(sym__id); - if (lookahead == '-') ADVANCE(188); + if (lookahead == '-') ADVANCE(164); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); END_STATE(); - case 258: + case 234: ACCEPT_TOKEN(sym__id); - if (lookahead == 'D') ADVANCE(269); + if (lookahead == 'D') ADVANCE(245); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); END_STATE(); - case 259: + case 235: ACCEPT_TOKEN(sym__id); - if (lookahead == 'E') ADVANCE(306); + if (lookahead == 'E') ADVANCE(282); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); END_STATE(); - case 260: + case 236: ACCEPT_TOKEN(sym__id); - if (lookahead == 'E') ADVANCE(315); + if (lookahead == 'E') ADVANCE(291); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); END_STATE(); - case 261: + case 237: ACCEPT_TOKEN(sym__id); - if (lookahead == 'F') ADVANCE(268); + if (lookahead == 'F') ADVANCE(244); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); END_STATE(); - case 262: + case 238: ACCEPT_TOKEN(sym__id); - if (lookahead == 'I') ADVANCE(270); + if (lookahead == 'I') ADVANCE(246); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); END_STATE(); - case 263: + case 239: ACCEPT_TOKEN(sym__id); - if (lookahead == 'I') ADVANCE(272); + if (lookahead == 'I') ADVANCE(248); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); END_STATE(); - case 264: + case 240: ACCEPT_TOKEN(sym__id); - if (lookahead == 'M') ADVANCE(260); + if (lookahead == 'M') ADVANCE(236); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); END_STATE(); - case 265: + case 241: ACCEPT_TOKEN(sym__id); - if (lookahead == 'N') ADVANCE(261); + if (lookahead == 'N') ADVANCE(237); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); END_STATE(); - case 266: + case 242: ACCEPT_TOKEN(sym__id); - if (lookahead == 'O') ADVANCE(271); + if (lookahead == 'O') ADVANCE(247); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); END_STATE(); - case 267: + case 243: ACCEPT_TOKEN(sym__id); - if (lookahead == 'O') ADVANCE(258); + if (lookahead == 'O') ADVANCE(234); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); END_STATE(); - case 268: + case 244: ACCEPT_TOKEN(sym__id); - if (lookahead == 'O') ADVANCE(309); + if (lookahead == 'O') ADVANCE(285); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); END_STATE(); - case 269: + case 245: ACCEPT_TOKEN(sym__id); - if (lookahead == 'O') ADVANCE(300); + if (lookahead == 'O') ADVANCE(276); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); END_STATE(); - case 270: + case 246: ACCEPT_TOKEN(sym__id); - if (lookahead == 'P') ADVANCE(303); + if (lookahead == 'P') ADVANCE(279); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); END_STATE(); - case 271: + case 247: ACCEPT_TOKEN(sym__id); - if (lookahead == 'T') ADVANCE(259); + if (lookahead == 'T') ADVANCE(235); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); END_STATE(); - case 272: + case 248: ACCEPT_TOKEN(sym__id); - if (lookahead == 'X') ADVANCE(264); + if (lookahead == 'X') ADVANCE(240); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); END_STATE(); - case 273: + case 249: ACCEPT_TOKEN(sym__id); - if (lookahead == 'X') ADVANCE(312); + if (lookahead == 'X') ADVANCE(288); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); END_STATE(); - case 274: + case 250: ACCEPT_TOKEN(sym__id); - if (lookahead == 'X') ADVANCE(273); + if (lookahead == 'X') ADVANCE(249); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); END_STATE(); - case 275: + case 251: ACCEPT_TOKEN(sym__id); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); END_STATE(); - case 276: + case 252: ACCEPT_TOKEN(anon_sym_LBRACK_RBRACK); END_STATE(); - case 277: + case 253: ACCEPT_TOKEN(anon_sym_BANG_LBRACK); END_STATE(); - case 278: + case 254: ACCEPT_TOKEN(anon_sym_BANG_LBRACK); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 279: + case 255: ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); - case 280: + case 256: ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == ']') ADVANCE(276); + if (lookahead == ']') ADVANCE(252); END_STATE(); - case 281: + case 257: ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '^') ADVANCE(252); + if (lookahead == '^') ADVANCE(228); END_STATE(); - case 282: + case 258: ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '^') ADVANCE(253); + if (lookahead == '^') ADVANCE(229); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 283: + case 259: ACCEPT_TOKEN(anon_sym_RBRACK2); END_STATE(); - case 284: + case 260: ACCEPT_TOKEN(anon_sym_RBRACK2); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 285: + case 261: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 286: + case 262: ACCEPT_TOKEN(aux_sym_inline_link_destination_token1); - if (lookahead == '\r') ADVANCE(286); + if (lookahead == '\r') ADVANCE(262); if (lookahead != 0 && lookahead != '\n' && - lookahead != ')') ADVANCE(287); + lookahead != ')') ADVANCE(263); END_STATE(); - case 287: + case 263: ACCEPT_TOKEN(aux_sym_inline_link_destination_token1); if (lookahead != 0 && lookahead != '\n' && - lookahead != ')') ADVANCE(287); + lookahead != ')') ADVANCE(263); END_STATE(); - case 288: + case 264: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 289: + case 265: ACCEPT_TOKEN(anon_sym_LBRACE2); - if (lookahead == '*') ADVANCE(170); - if (lookahead == '+') ADVANCE(227); - if (lookahead == '-') ADVANCE(231); - if (lookahead == '=') ADVANCE(223); - if (lookahead == '^') ADVANCE(236); - if (lookahead == '_') ADVANCE(152); - if (lookahead == '~') ADVANCE(244); + if (lookahead == '*') ADVANCE(142); + if (lookahead == '+') ADVANCE(203); + if (lookahead == '-') ADVANCE(207); + if (lookahead == '=') ADVANCE(199); + if (lookahead == '^') ADVANCE(212); + if (lookahead == '_') ADVANCE(137); + if (lookahead == '~') ADVANCE(220); END_STATE(); - case 290: + case 266: ACCEPT_TOKEN(anon_sym_LBRACE2); if (lookahead == '"' || - lookahead == '\'') ADVANCE(181); - if (lookahead == '*') ADVANCE(170); - if (lookahead == '+') ADVANCE(227); - if (lookahead == '-') ADVANCE(231); - if (lookahead == '=') ADVANCE(223); - if (lookahead == '^') ADVANCE(236); - if (lookahead == '_') ADVANCE(152); - if (lookahead == '~') ADVANCE(244); + lookahead == '\'') ADVANCE(157); + if (lookahead == '*') ADVANCE(142); + if (lookahead == '+') ADVANCE(203); + if (lookahead == '-') ADVANCE(207); + if (lookahead == '=') ADVANCE(199); + if (lookahead == '^') ADVANCE(212); + if (lookahead == '_') ADVANCE(137); + if (lookahead == '~') ADVANCE(220); END_STATE(); - case 291: + case 267: ACCEPT_TOKEN(anon_sym_LBRACE2); if (lookahead == '"' || - lookahead == '\'') ADVANCE(182); - if (lookahead == '*') ADVANCE(171); - if (lookahead == '+') ADVANCE(228); - if (lookahead == '-') ADVANCE(232); - if (lookahead == '=') ADVANCE(224); - if (lookahead == '^') ADVANCE(237); - if (lookahead == '_') ADVANCE(153); - if (lookahead == '~') ADVANCE(245); + lookahead == '\'') ADVANCE(158); + if (lookahead == '*') ADVANCE(143); + if (lookahead == '+') ADVANCE(204); + if (lookahead == '-') ADVANCE(208); + if (lookahead == '=') ADVANCE(200); + if (lookahead == '^') ADVANCE(213); + if (lookahead == '_') ADVANCE(138); + if (lookahead == '~') ADVANCE(221); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 292: + case 268: ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); - case 293: + case 269: ACCEPT_TOKEN(aux_sym__comment_with_newline_token1); END_STATE(); - case 294: + case 270: ACCEPT_TOKEN(aux_sym__comment_with_newline_token1); - if (lookahead == '\r') ADVANCE(294); - if (lookahead == '\\') ADVANCE(295); + if (lookahead == '\r') ADVANCE(270); + if (lookahead == '\\') ADVANCE(271); if (lookahead != 0 && lookahead != '\n' && - lookahead != '%') ADVANCE(293); + lookahead != '%') ADVANCE(269); END_STATE(); - case 295: + case 271: ACCEPT_TOKEN(aux_sym__comment_with_newline_token1); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && - lookahead != '\\') ADVANCE(191); + lookahead != '\\') ADVANCE(167); END_STATE(); - case 296: + case 272: ACCEPT_TOKEN(anon_sym_LBRACE_EQ2); END_STATE(); - case 297: + case 273: ACCEPT_TOKEN(anon_sym_DOLLAR); END_STATE(); - case 298: + case 274: ACCEPT_TOKEN(anon_sym_DOLLAR); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 299: + case 275: ACCEPT_TOKEN(anon_sym_TODO); END_STATE(); - case 300: + case 276: ACCEPT_TOKEN(anon_sym_TODO); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); END_STATE(); - case 301: + case 277: ACCEPT_TOKEN(anon_sym_TODO); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 302: + case 278: ACCEPT_TOKEN(anon_sym_WIP); END_STATE(); - case 303: + case 279: ACCEPT_TOKEN(anon_sym_WIP); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); END_STATE(); - case 304: + case 280: ACCEPT_TOKEN(anon_sym_WIP); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 305: + case 281: ACCEPT_TOKEN(anon_sym_NOTE); END_STATE(); - case 306: + case 282: ACCEPT_TOKEN(anon_sym_NOTE); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); END_STATE(); - case 307: + case 283: ACCEPT_TOKEN(anon_sym_NOTE); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 308: + case 284: ACCEPT_TOKEN(anon_sym_INFO); END_STATE(); - case 309: + case 285: ACCEPT_TOKEN(anon_sym_INFO); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); END_STATE(); - case 310: + case 286: ACCEPT_TOKEN(anon_sym_INFO); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 311: + case 287: ACCEPT_TOKEN(anon_sym_XXX); END_STATE(); - case 312: + case 288: ACCEPT_TOKEN(anon_sym_XXX); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); END_STATE(); - case 313: + case 289: ACCEPT_TOKEN(anon_sym_XXX); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 314: + case 290: ACCEPT_TOKEN(sym_fixme); END_STATE(); - case 315: + case 291: ACCEPT_TOKEN(sym_fixme); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); END_STATE(); - case 316: + case 292: ACCEPT_TOKEN(sym_fixme); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 317: + case 293: ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); - case 318: + case 294: ACCEPT_TOKEN(anon_sym_PIPE); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 319: + case 295: ACCEPT_TOKEN(sym_language); - if (lookahead == '\r') ADVANCE(319); + if (lookahead == '\r') ADVANCE(295); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && lookahead != '=' && lookahead != '{' && - lookahead != '}') ADVANCE(320); + lookahead != '}') ADVANCE(296); END_STATE(); - case 320: + case 296: ACCEPT_TOKEN(sym_language); if (lookahead != 0 && lookahead != '\t' && @@ -6981,146 +6601,133 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ' && lookahead != '=' && lookahead != '{' && - lookahead != '}') ADVANCE(320); + lookahead != '}') ADVANCE(296); END_STATE(); - case 321: + case 297: ACCEPT_TOKEN(sym__whitespace); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(321); + lookahead == ' ') ADVANCE(297); END_STATE(); - case 322: - ACCEPT_TOKEN(sym__whitespace1); - if (lookahead == '\t') ADVANCE(325); - if (lookahead == ' ') ADVANCE(322); - if (lookahead == '*') ADVANCE(129); - if (lookahead == '_') ADVANCE(130); - END_STATE(); - case 323: - ACCEPT_TOKEN(sym__whitespace1); - if (lookahead == '\t') ADVANCE(325); - if (lookahead == ' ') ADVANCE(323); - if (lookahead == '*') ADVANCE(129); - END_STATE(); - case 324: + case 298: ACCEPT_TOKEN(sym__whitespace1); - if (lookahead == '\t') ADVANCE(325); - if (lookahead == ' ') ADVANCE(324); - if (lookahead == '_') ADVANCE(130); + if (lookahead == '\t') ADVANCE(299); + if (lookahead == ' ') ADVANCE(298); + if (lookahead == '*') ADVANCE(115); END_STATE(); - case 325: + case 299: ACCEPT_TOKEN(sym__whitespace1); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); + lookahead == ' ') ADVANCE(299); END_STATE(); - case 326: + case 300: ACCEPT_TOKEN(sym__newline); END_STATE(); - case 327: + case 301: ACCEPT_TOKEN(aux_sym__text_token1); END_STATE(); - case 328: + case 302: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == '-') ADVANCE(189); + if (lookahead == '-') ADVANCE(165); END_STATE(); - case 329: + case 303: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == '-') ADVANCE(189); - if (lookahead == '}') ADVANCE(233); + if (lookahead == '-') ADVANCE(165); + if (lookahead == '}') ADVANCE(209); END_STATE(); - case 330: + case 304: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == '.') ADVANCE(116); + if (lookahead == '.') ADVANCE(102); END_STATE(); - case 331: + case 305: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'I') ADVANCE(127); + if (lookahead == 'I') ADVANCE(113); END_STATE(); - case 332: + case 306: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'I') ADVANCE(125); + if (lookahead == 'I') ADVANCE(111); END_STATE(); - case 333: + case 307: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'N') ADVANCE(121); + if (lookahead == 'N') ADVANCE(107); END_STATE(); - case 334: + case 308: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'O') ADVANCE(126); + if (lookahead == 'O') ADVANCE(112); END_STATE(); - case 335: + case 309: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'O') ADVANCE(118); + if (lookahead == 'O') ADVANCE(104); END_STATE(); - case 336: + case 310: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'X') ADVANCE(128); + if (lookahead == 'X') ADVANCE(114); END_STATE(); - case 337: + case 311: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == '[') ADVANCE(277); + if (lookahead == '[') ADVANCE(253); END_STATE(); - case 338: + case 312: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == '}') ADVANCE(229); + if (lookahead == '}') ADVANCE(205); END_STATE(); - case 339: + case 313: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == '}') ADVANCE(225); + if (lookahead == '}') ADVANCE(201); END_STATE(); - case 340: + case 314: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == '}') ADVANCE(181); + if (lookahead == '}') ADVANCE(157); END_STATE(); - case 341: + case 315: ACCEPT_TOKEN(aux_sym__text_token1); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != ':') ADVANCE(117); + lookahead != ':') ADVANCE(103); END_STATE(); - case 342: + case 316: ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); - case 343: + case 317: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(116); + if (lookahead == '.') ADVANCE(102); END_STATE(); - case 344: + case 318: ACCEPT_TOKEN(sym_identifier); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '}') ADVANCE(344); + lookahead != '}') ADVANCE(318); END_STATE(); - case 345: + case 319: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 346: + case 320: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '}') ADVANCE(225); + if (lookahead == '}') ADVANCE(201); END_STATE(); - case 347: + case 321: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 348: + case 322: ACCEPT_TOKEN(aux_sym_value_token1); - if (lookahead == '\r') ADVANCE(348); + if (lookahead == '\r') ADVANCE(322); if (lookahead != 0 && lookahead != '\n' && - lookahead != '"') ADVANCE(349); + lookahead != '"') ADVANCE(323); END_STATE(); - case 349: + case 323: ACCEPT_TOKEN(aux_sym_value_token1); if (lookahead != 0 && lookahead != '\n' && - lookahead != '"') ADVANCE(349); + lookahead != '"') ADVANCE(323); END_STATE(); - case 350: + case 324: ACCEPT_TOKEN(aux_sym_value_token2); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(350); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(324); END_STATE(); default: return false; @@ -7129,897 +6736,907 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 134, .external_lex_state = 2}, - [2] = {.lex_state = 24, .external_lex_state = 2}, + [1] = {.lex_state = 119, .external_lex_state = 2}, + [2] = {.lex_state = 17, .external_lex_state = 2}, [3] = {.lex_state = 1, .external_lex_state = 2}, - [4] = {.lex_state = 27, .external_lex_state = 2}, - [5] = {.lex_state = 29, .external_lex_state = 2}, - [6] = {.lex_state = 66, .external_lex_state = 2}, - [7] = {.lex_state = 83, .external_lex_state = 2}, - [8] = {.lex_state = 9, .external_lex_state = 2}, - [9] = {.lex_state = 95, .external_lex_state = 2}, - [10] = {.lex_state = 139, .external_lex_state = 2}, - [11] = {.lex_state = 3, .external_lex_state = 2}, - [12] = {.lex_state = 33, .external_lex_state = 2}, - [13] = {.lex_state = 136, .external_lex_state = 2}, - [14] = {.lex_state = 136, .external_lex_state = 2}, - [15] = {.lex_state = 136, .external_lex_state = 2}, - [16] = {.lex_state = 136, .external_lex_state = 2}, - [17] = {.lex_state = 136, .external_lex_state = 2}, - [18] = {.lex_state = 136, .external_lex_state = 2}, - [19] = {.lex_state = 33, .external_lex_state = 2}, - [20] = {.lex_state = 139, .external_lex_state = 2}, - [21] = {.lex_state = 139, .external_lex_state = 2}, - [22] = {.lex_state = 139, .external_lex_state = 2}, - [23] = {.lex_state = 139, .external_lex_state = 2}, - [24] = {.lex_state = 139, .external_lex_state = 2}, - [25] = {.lex_state = 139, .external_lex_state = 2}, - [26] = {.lex_state = 139, .external_lex_state = 2}, - [27] = {.lex_state = 37, .external_lex_state = 2}, - [28] = {.lex_state = 37, .external_lex_state = 2}, - [29] = {.lex_state = 74, .external_lex_state = 2}, - [30] = {.lex_state = 37, .external_lex_state = 2}, - [31] = {.lex_state = 37, .external_lex_state = 2}, - [32] = {.lex_state = 3, .external_lex_state = 2}, - [33] = {.lex_state = 3, .external_lex_state = 2}, - [34] = {.lex_state = 3, .external_lex_state = 2}, - [35] = {.lex_state = 3, .external_lex_state = 2}, - [36] = {.lex_state = 11, .external_lex_state = 2}, - [37] = {.lex_state = 37, .external_lex_state = 2}, - [38] = {.lex_state = 37, .external_lex_state = 2}, - [39] = {.lex_state = 3, .external_lex_state = 2}, - [40] = {.lex_state = 33, .external_lex_state = 2}, - [41] = {.lex_state = 88, .external_lex_state = 2}, - [42] = {.lex_state = 74, .external_lex_state = 2}, - [43] = {.lex_state = 88, .external_lex_state = 2}, - [44] = {.lex_state = 88, .external_lex_state = 2}, - [45] = {.lex_state = 74, .external_lex_state = 2}, - [46] = {.lex_state = 88, .external_lex_state = 2}, - [47] = {.lex_state = 74, .external_lex_state = 2}, - [48] = {.lex_state = 11, .external_lex_state = 2}, - [49] = {.lex_state = 74, .external_lex_state = 2}, - [50] = {.lex_state = 98, .external_lex_state = 2}, - [51] = {.lex_state = 33, .external_lex_state = 2}, - [52] = {.lex_state = 74, .external_lex_state = 2}, - [53] = {.lex_state = 11, .external_lex_state = 2}, - [54] = {.lex_state = 98, .external_lex_state = 2}, - [55] = {.lex_state = 98, .external_lex_state = 2}, - [56] = {.lex_state = 98, .external_lex_state = 2}, - [57] = {.lex_state = 98, .external_lex_state = 2}, - [58] = {.lex_state = 98, .external_lex_state = 2}, - [59] = {.lex_state = 11, .external_lex_state = 2}, - [60] = {.lex_state = 41, .external_lex_state = 2}, - [61] = {.lex_state = 11, .external_lex_state = 2}, - [62] = {.lex_state = 33, .external_lex_state = 2}, - [63] = {.lex_state = 41, .external_lex_state = 2}, - [64] = {.lex_state = 41, .external_lex_state = 2}, - [65] = {.lex_state = 41, .external_lex_state = 2}, - [66] = {.lex_state = 41, .external_lex_state = 2}, - [67] = {.lex_state = 41, .external_lex_state = 2}, - [68] = {.lex_state = 88, .external_lex_state = 2}, - [69] = {.lex_state = 11, .external_lex_state = 2}, - [70] = {.lex_state = 33, .external_lex_state = 2}, - [71] = {.lex_state = 88, .external_lex_state = 2}, - [72] = {.lex_state = 134, .external_lex_state = 2}, - [73] = {.lex_state = 10, .external_lex_state = 2}, - [74] = {.lex_state = 10, .external_lex_state = 2}, - [75] = {.lex_state = 134, .external_lex_state = 2}, - [76] = {.lex_state = 134, .external_lex_state = 2}, - [77] = {.lex_state = 39, .external_lex_state = 2}, - [78] = {.lex_state = 134, .external_lex_state = 2}, - [79] = {.lex_state = 97, .external_lex_state = 2}, - [80] = {.lex_state = 97, .external_lex_state = 2}, - [81] = {.lex_state = 134, .external_lex_state = 2}, - [82] = {.lex_state = 134, .external_lex_state = 2}, - [83] = {.lex_state = 134, .external_lex_state = 2}, - [84] = {.lex_state = 2, .external_lex_state = 2}, - [85] = {.lex_state = 86, .external_lex_state = 2}, - [86] = {.lex_state = 134, .external_lex_state = 2}, - [87] = {.lex_state = 2, .external_lex_state = 2}, - [88] = {.lex_state = 86, .external_lex_state = 2}, - [89] = {.lex_state = 134, .external_lex_state = 2}, - [90] = {.lex_state = 134, .external_lex_state = 2}, - [91] = {.lex_state = 134, .external_lex_state = 2}, - [92] = {.lex_state = 134, .external_lex_state = 2}, - [93] = {.lex_state = 134, .external_lex_state = 2}, - [94] = {.lex_state = 134, .external_lex_state = 2}, - [95] = {.lex_state = 134, .external_lex_state = 2}, - [96] = {.lex_state = 134, .external_lex_state = 2}, - [97] = {.lex_state = 134, .external_lex_state = 2}, - [98] = {.lex_state = 31, .external_lex_state = 2}, - [99] = {.lex_state = 134, .external_lex_state = 2}, - [100] = {.lex_state = 134, .external_lex_state = 2}, - [101] = {.lex_state = 134, .external_lex_state = 2}, - [102] = {.lex_state = 67, .external_lex_state = 2}, - [103] = {.lex_state = 67, .external_lex_state = 2}, - [104] = {.lex_state = 134, .external_lex_state = 2}, - [105] = {.lex_state = 134, .external_lex_state = 2}, - [106] = {.lex_state = 134, .external_lex_state = 2}, - [107] = {.lex_state = 134, .external_lex_state = 2}, - [108] = {.lex_state = 134, .external_lex_state = 2}, - [109] = {.lex_state = 134, .external_lex_state = 2}, - [110] = {.lex_state = 134, .external_lex_state = 2}, - [111] = {.lex_state = 134, .external_lex_state = 2}, - [112] = {.lex_state = 134, .external_lex_state = 2}, - [113] = {.lex_state = 39, .external_lex_state = 2}, - [114] = {.lex_state = 134, .external_lex_state = 2}, - [115] = {.lex_state = 134, .external_lex_state = 2}, - [116] = {.lex_state = 72, .external_lex_state = 2}, - [117] = {.lex_state = 134, .external_lex_state = 2}, - [118] = {.lex_state = 35, .external_lex_state = 2}, - [119] = {.lex_state = 31, .external_lex_state = 2}, - [120] = {.lex_state = 35, .external_lex_state = 2}, - [121] = {.lex_state = 72, .external_lex_state = 2}, - [122] = {.lex_state = 16, .external_lex_state = 2}, - [123] = {.lex_state = 17, .external_lex_state = 2}, - [124] = {.lex_state = 44, .external_lex_state = 2}, - [125] = {.lex_state = 5, .external_lex_state = 2}, - [126] = {.lex_state = 15, .external_lex_state = 2}, - [127] = {.lex_state = 15, .external_lex_state = 2}, - [128] = {.lex_state = 38, .external_lex_state = 2}, - [129] = {.lex_state = 18, .external_lex_state = 2}, - [130] = {.lex_state = 132, .external_lex_state = 2}, - [131] = {.lex_state = 42, .external_lex_state = 2}, - [132] = {.lex_state = 33, .external_lex_state = 2}, - [133] = {.lex_state = 142, .external_lex_state = 2}, - [134] = {.lex_state = 136, .external_lex_state = 2}, - [135] = {.lex_state = 47, .external_lex_state = 2}, - [136] = {.lex_state = 37, .external_lex_state = 2}, - [137] = {.lex_state = 49, .external_lex_state = 2}, - [138] = {.lex_state = 139, .external_lex_state = 2}, - [139] = {.lex_state = 77, .external_lex_state = 2}, - [140] = {.lex_state = 132, .external_lex_state = 2}, - [141] = {.lex_state = 69, .external_lex_state = 2}, - [142] = {.lex_state = 75, .external_lex_state = 2}, - [143] = {.lex_state = 99, .external_lex_state = 2}, - [144] = {.lex_state = 16, .external_lex_state = 2}, - [145] = {.lex_state = 34, .external_lex_state = 2}, - [146] = {.lex_state = 98, .external_lex_state = 2}, - [147] = {.lex_state = 90, .external_lex_state = 2}, - [148] = {.lex_state = 41, .external_lex_state = 2}, - [149] = {.lex_state = 74, .external_lex_state = 2}, - [150] = {.lex_state = 19, .external_lex_state = 2}, - [151] = {.lex_state = 19, .external_lex_state = 2}, - [152] = {.lex_state = 89, .external_lex_state = 2}, - [153] = {.lex_state = 6, .external_lex_state = 2}, - [154] = {.lex_state = 18, .external_lex_state = 2}, - [155] = {.lex_state = 3, .external_lex_state = 2}, - [156] = {.lex_state = 88, .external_lex_state = 2}, - [157] = {.lex_state = 20, .external_lex_state = 2}, - [158] = {.lex_state = 4, .external_lex_state = 2}, - [159] = {.lex_state = 102, .external_lex_state = 2}, - [160] = {.lex_state = 17, .external_lex_state = 2}, - [161] = {.lex_state = 5, .external_lex_state = 2}, - [162] = {.lex_state = 137, .external_lex_state = 2}, - [163] = {.lex_state = 52, .external_lex_state = 2}, - [164] = {.lex_state = 13, .external_lex_state = 2}, - [165] = {.lex_state = 21, .external_lex_state = 2}, - [166] = {.lex_state = 7, .external_lex_state = 2}, - [167] = {.lex_state = 21, .external_lex_state = 2}, - [168] = {.lex_state = 7, .external_lex_state = 2}, - [169] = {.lex_state = 20, .external_lex_state = 2}, - [170] = {.lex_state = 12, .external_lex_state = 2}, - [171] = {.lex_state = 11, .external_lex_state = 2}, - [172] = {.lex_state = 54, .external_lex_state = 2}, - [173] = {.lex_state = 11, .external_lex_state = 2}, - [174] = {.lex_state = 41, .external_lex_state = 2}, - [175] = {.lex_state = 88, .external_lex_state = 2}, - [176] = {.lex_state = 56, .external_lex_state = 2}, - [177] = {.lex_state = 8, .external_lex_state = 2}, - [178] = {.lex_state = 98, .external_lex_state = 2}, - [179] = {.lex_state = 11, .external_lex_state = 2}, - [180] = {.lex_state = 3, .external_lex_state = 2}, - [181] = {.lex_state = 88, .external_lex_state = 2}, - [182] = {.lex_state = 37, .external_lex_state = 2}, - [183] = {.lex_state = 74, .external_lex_state = 2}, - [184] = {.lex_state = 79, .external_lex_state = 2}, - [185] = {.lex_state = 136, .external_lex_state = 2}, - [186] = {.lex_state = 92, .external_lex_state = 2}, - [187] = {.lex_state = 103, .external_lex_state = 2}, - [188] = {.lex_state = 14, .external_lex_state = 2}, + [4] = {.lex_state = 59, .external_lex_state = 2}, + [5] = {.lex_state = 20, .external_lex_state = 2}, + [6] = {.lex_state = 74, .external_lex_state = 2}, + [7] = {.lex_state = 85, .external_lex_state = 2}, + [8] = {.lex_state = 22, .external_lex_state = 2}, + [9] = {.lex_state = 124, .external_lex_state = 2}, + [10] = {.lex_state = 25, .external_lex_state = 2}, + [11] = {.lex_state = 29, .external_lex_state = 2}, + [12] = {.lex_state = 121, .external_lex_state = 2}, + [13] = {.lex_state = 121, .external_lex_state = 2}, + [14] = {.lex_state = 121, .external_lex_state = 2}, + [15] = {.lex_state = 121, .external_lex_state = 2}, + [16] = {.lex_state = 121, .external_lex_state = 2}, + [17] = {.lex_state = 25, .external_lex_state = 2}, + [18] = {.lex_state = 121, .external_lex_state = 2}, + [19] = {.lex_state = 25, .external_lex_state = 2}, + [20] = {.lex_state = 3, .external_lex_state = 2}, + [21] = {.lex_state = 25, .external_lex_state = 2}, + [22] = {.lex_state = 25, .external_lex_state = 2}, + [23] = {.lex_state = 34, .external_lex_state = 2}, + [24] = {.lex_state = 67, .external_lex_state = 2}, + [25] = {.lex_state = 67, .external_lex_state = 2}, + [26] = {.lex_state = 67, .external_lex_state = 2}, + [27] = {.lex_state = 67, .external_lex_state = 2}, + [28] = {.lex_state = 67, .external_lex_state = 2}, + [29] = {.lex_state = 67, .external_lex_state = 2}, + [30] = {.lex_state = 78, .external_lex_state = 2}, + [31] = {.lex_state = 78, .external_lex_state = 2}, + [32] = {.lex_state = 78, .external_lex_state = 2}, + [33] = {.lex_state = 78, .external_lex_state = 2}, + [34] = {.lex_state = 78, .external_lex_state = 2}, + [35] = {.lex_state = 34, .external_lex_state = 2}, + [36] = {.lex_state = 29, .external_lex_state = 2}, + [37] = {.lex_state = 34, .external_lex_state = 2}, + [38] = {.lex_state = 29, .external_lex_state = 2}, + [39] = {.lex_state = 29, .external_lex_state = 2}, + [40] = {.lex_state = 29, .external_lex_state = 2}, + [41] = {.lex_state = 25, .external_lex_state = 2}, + [42] = {.lex_state = 29, .external_lex_state = 2}, + [43] = {.lex_state = 78, .external_lex_state = 2}, + [44] = {.lex_state = 124, .external_lex_state = 2}, + [45] = {.lex_state = 124, .external_lex_state = 2}, + [46] = {.lex_state = 124, .external_lex_state = 2}, + [47] = {.lex_state = 124, .external_lex_state = 2}, + [48] = {.lex_state = 88, .external_lex_state = 2}, + [49] = {.lex_state = 124, .external_lex_state = 2}, + [50] = {.lex_state = 34, .external_lex_state = 2}, + [51] = {.lex_state = 124, .external_lex_state = 2}, + [52] = {.lex_state = 124, .external_lex_state = 2}, + [53] = {.lex_state = 88, .external_lex_state = 2}, + [54] = {.lex_state = 88, .external_lex_state = 2}, + [55] = {.lex_state = 88, .external_lex_state = 2}, + [56] = {.lex_state = 88, .external_lex_state = 2}, + [57] = {.lex_state = 88, .external_lex_state = 2}, + [58] = {.lex_state = 124, .external_lex_state = 2}, + [59] = {.lex_state = 3, .external_lex_state = 2}, + [60] = {.lex_state = 3, .external_lex_state = 2}, + [61] = {.lex_state = 34, .external_lex_state = 2}, + [62] = {.lex_state = 34, .external_lex_state = 2}, + [63] = {.lex_state = 3, .external_lex_state = 2}, + [64] = {.lex_state = 3, .external_lex_state = 2}, + [65] = {.lex_state = 3, .external_lex_state = 2}, + [66] = {.lex_state = 121, .external_lex_state = 2}, + [67] = {.lex_state = 121, .external_lex_state = 2}, + [68] = {.lex_state = 121, .external_lex_state = 2}, + [69] = {.lex_state = 121, .external_lex_state = 2}, + [70] = {.lex_state = 121, .external_lex_state = 2}, + [71] = {.lex_state = 121, .external_lex_state = 2}, + [72] = {.lex_state = 65, .external_lex_state = 2}, + [73] = {.lex_state = 32, .external_lex_state = 2}, + [74] = {.lex_state = 119, .external_lex_state = 2}, + [75] = {.lex_state = 119, .external_lex_state = 2}, + [76] = {.lex_state = 119, .external_lex_state = 2}, + [77] = {.lex_state = 119, .external_lex_state = 2}, + [78] = {.lex_state = 23, .external_lex_state = 2}, + [79] = {.lex_state = 32, .external_lex_state = 2}, + [80] = {.lex_state = 119, .external_lex_state = 2}, + [81] = {.lex_state = 119, .external_lex_state = 2}, + [82] = {.lex_state = 119, .external_lex_state = 2}, + [83] = {.lex_state = 119, .external_lex_state = 2}, + [84] = {.lex_state = 119, .external_lex_state = 2}, + [85] = {.lex_state = 23, .external_lex_state = 2}, + [86] = {.lex_state = 2, .external_lex_state = 2}, + [87] = {.lex_state = 119, .external_lex_state = 2}, + [88] = {.lex_state = 2, .external_lex_state = 2}, + [89] = {.lex_state = 119, .external_lex_state = 2}, + [90] = {.lex_state = 119, .external_lex_state = 2}, + [91] = {.lex_state = 119, .external_lex_state = 2}, + [92] = {.lex_state = 119, .external_lex_state = 2}, + [93] = {.lex_state = 119, .external_lex_state = 2}, + [94] = {.lex_state = 119, .external_lex_state = 2}, + [95] = {.lex_state = 60, .external_lex_state = 2}, + [96] = {.lex_state = 119, .external_lex_state = 2}, + [97] = {.lex_state = 60, .external_lex_state = 2}, + [98] = {.lex_state = 27, .external_lex_state = 2}, + [99] = {.lex_state = 119, .external_lex_state = 2}, + [100] = {.lex_state = 119, .external_lex_state = 2}, + [101] = {.lex_state = 65, .external_lex_state = 2}, + [102] = {.lex_state = 119, .external_lex_state = 2}, + [103] = {.lex_state = 119, .external_lex_state = 2}, + [104] = {.lex_state = 119, .external_lex_state = 2}, + [105] = {.lex_state = 87, .external_lex_state = 2}, + [106] = {.lex_state = 119, .external_lex_state = 2}, + [107] = {.lex_state = 27, .external_lex_state = 2}, + [108] = {.lex_state = 119, .external_lex_state = 2}, + [109] = {.lex_state = 119, .external_lex_state = 2}, + [110] = {.lex_state = 119, .external_lex_state = 2}, + [111] = {.lex_state = 76, .external_lex_state = 2}, + [112] = {.lex_state = 119, .external_lex_state = 2}, + [113] = {.lex_state = 76, .external_lex_state = 2}, + [114] = {.lex_state = 119, .external_lex_state = 2}, + [115] = {.lex_state = 119, .external_lex_state = 2}, + [116] = {.lex_state = 87, .external_lex_state = 2}, + [117] = {.lex_state = 119, .external_lex_state = 2}, + [118] = {.lex_state = 119, .external_lex_state = 2}, + [119] = {.lex_state = 119, .external_lex_state = 2}, + [120] = {.lex_state = 119, .external_lex_state = 2}, + [121] = {.lex_state = 119, .external_lex_state = 2}, + [122] = {.lex_state = 10, .external_lex_state = 2}, + [123] = {.lex_state = 5, .external_lex_state = 2}, + [124] = {.lex_state = 38, .external_lex_state = 2}, + [125] = {.lex_state = 78, .external_lex_state = 2}, + [126] = {.lex_state = 11, .external_lex_state = 2}, + [127] = {.lex_state = 79, .external_lex_state = 2}, + [128] = {.lex_state = 40, .external_lex_state = 2}, + [129] = {.lex_state = 9, .external_lex_state = 2}, + [130] = {.lex_state = 25, .external_lex_state = 2}, + [131] = {.lex_state = 29, .external_lex_state = 2}, + [132] = {.lex_state = 34, .external_lex_state = 2}, + [133] = {.lex_state = 13, .external_lex_state = 2}, + [134] = {.lex_state = 88, .external_lex_state = 2}, + [135] = {.lex_state = 69, .external_lex_state = 2}, + [136] = {.lex_state = 126, .external_lex_state = 2}, + [137] = {.lex_state = 42, .external_lex_state = 2}, + [138] = {.lex_state = 68, .external_lex_state = 2}, + [139] = {.lex_state = 26, .external_lex_state = 2}, + [140] = {.lex_state = 14, .external_lex_state = 2}, + [141] = {.lex_state = 117, .external_lex_state = 2}, + [142] = {.lex_state = 81, .external_lex_state = 2}, + [143] = {.lex_state = 122, .external_lex_state = 2}, + [144] = {.lex_state = 124, .external_lex_state = 2}, + [145] = {.lex_state = 30, .external_lex_state = 2}, + [146] = {.lex_state = 67, .external_lex_state = 2}, + [147] = {.lex_state = 6, .external_lex_state = 2}, + [148] = {.lex_state = 62, .external_lex_state = 2}, + [149] = {.lex_state = 92, .external_lex_state = 2}, + [150] = {.lex_state = 45, .external_lex_state = 2}, + [151] = {.lex_state = 121, .external_lex_state = 2}, + [152] = {.lex_state = 35, .external_lex_state = 2}, + [153] = {.lex_state = 89, .external_lex_state = 2}, + [154] = {.lex_state = 7, .external_lex_state = 2}, + [155] = {.lex_state = 15, .external_lex_state = 2}, + [156] = {.lex_state = 3, .external_lex_state = 2}, + [157] = {.lex_state = 4, .external_lex_state = 2}, + [158] = {.lex_state = 8, .external_lex_state = 2}, + [159] = {.lex_state = 3, .external_lex_state = 2}, + [160] = {.lex_state = 48, .external_lex_state = 2}, + [161] = {.lex_state = 25, .external_lex_state = 2}, + [162] = {.lex_state = 71, .external_lex_state = 2}, + [163] = {.lex_state = 67, .external_lex_state = 2}, + [164] = {.lex_state = 50, .external_lex_state = 2}, + [165] = {.lex_state = 3, .external_lex_state = 2}, + [166] = {.lex_state = 34, .external_lex_state = 2}, + [167] = {.lex_state = 25, .external_lex_state = 2}, + [168] = {.lex_state = 52, .external_lex_state = 2}, + [169] = {.lex_state = 117, .external_lex_state = 2}, + [170] = {.lex_state = 126, .external_lex_state = 2}, + [171] = {.lex_state = 121, .external_lex_state = 2}, + [172] = {.lex_state = 124, .external_lex_state = 2}, + [173] = {.lex_state = 29, .external_lex_state = 2}, + [174] = {.lex_state = 67, .external_lex_state = 2}, + [175] = {.lex_state = 78, .external_lex_state = 2}, + [176] = {.lex_state = 128, .external_lex_state = 2}, + [177] = {.lex_state = 122, .external_lex_state = 2}, + [178] = {.lex_state = 82, .external_lex_state = 2}, + [179] = {.lex_state = 88, .external_lex_state = 2}, + [180] = {.lex_state = 34, .external_lex_state = 2}, + [181] = {.lex_state = 54, .external_lex_state = 2}, + [182] = {.lex_state = 124, .external_lex_state = 2}, + [183] = {.lex_state = 93, .external_lex_state = 2}, + [184] = {.lex_state = 121, .external_lex_state = 2}, + [185] = {.lex_state = 88, .external_lex_state = 2}, + [186] = {.lex_state = 78, .external_lex_state = 2}, + [187] = {.lex_state = 29, .external_lex_state = 2}, + [188] = {.lex_state = 121, .external_lex_state = 2}, [189] = {.lex_state = 3, .external_lex_state = 2}, - [190] = {.lex_state = 98, .external_lex_state = 2}, - [191] = {.lex_state = 33, .external_lex_state = 2}, - [192] = {.lex_state = 139, .external_lex_state = 2}, - [193] = {.lex_state = 37, .external_lex_state = 2}, - [194] = {.lex_state = 59, .external_lex_state = 2}, - [195] = {.lex_state = 41, .external_lex_state = 2}, - [196] = {.lex_state = 143, .external_lex_state = 2}, - [197] = {.lex_state = 33, .external_lex_state = 2}, - [198] = {.lex_state = 136, .external_lex_state = 2}, - [199] = {.lex_state = 74, .external_lex_state = 2}, - [200] = {.lex_state = 139, .external_lex_state = 2}, - [201] = {.lex_state = 61, .external_lex_state = 2}, - [202] = {.lex_state = 3, .external_lex_state = 2}, - [203] = {.lex_state = 97, .external_lex_state = 2}, - [204] = {.lex_state = 41, .external_lex_state = 2}, - [205] = {.lex_state = 39, .external_lex_state = 2}, - [206] = {.lex_state = 41, .external_lex_state = 2}, - [207] = {.lex_state = 136, .external_lex_state = 2}, - [208] = {.lex_state = 41, .external_lex_state = 2}, - [209] = {.lex_state = 41, .external_lex_state = 2}, - [210] = {.lex_state = 41, .external_lex_state = 2}, - [211] = {.lex_state = 41, .external_lex_state = 2}, - [212] = {.lex_state = 41, .external_lex_state = 2}, - [213] = {.lex_state = 41, .external_lex_state = 2}, - [214] = {.lex_state = 41, .external_lex_state = 2}, - [215] = {.lex_state = 136, .external_lex_state = 2}, - [216] = {.lex_state = 41, .external_lex_state = 2}, - [217] = {.lex_state = 41, .external_lex_state = 2}, - [218] = {.lex_state = 41, .external_lex_state = 2}, - [219] = {.lex_state = 41, .external_lex_state = 2}, - [220] = {.lex_state = 41, .external_lex_state = 2}, - [221] = {.lex_state = 41, .external_lex_state = 2}, - [222] = {.lex_state = 41, .external_lex_state = 2}, - [223] = {.lex_state = 41, .external_lex_state = 2}, - [224] = {.lex_state = 41, .external_lex_state = 2}, - [225] = {.lex_state = 41, .external_lex_state = 2}, - [226] = {.lex_state = 41, .external_lex_state = 2}, - [227] = {.lex_state = 41, .external_lex_state = 2}, - [228] = {.lex_state = 136, .external_lex_state = 2}, - [229] = {.lex_state = 41, .external_lex_state = 2}, - [230] = {.lex_state = 41, .external_lex_state = 2}, - [231] = {.lex_state = 41, .external_lex_state = 2}, - [232] = {.lex_state = 41, .external_lex_state = 2}, - [233] = {.lex_state = 41, .external_lex_state = 2}, - [234] = {.lex_state = 41, .external_lex_state = 2}, - [235] = {.lex_state = 74, .external_lex_state = 2}, - [236] = {.lex_state = 74, .external_lex_state = 2}, - [237] = {.lex_state = 74, .external_lex_state = 2}, - [238] = {.lex_state = 74, .external_lex_state = 2}, - [239] = {.lex_state = 74, .external_lex_state = 2}, - [240] = {.lex_state = 72, .external_lex_state = 2}, - [241] = {.lex_state = 74, .external_lex_state = 2}, - [242] = {.lex_state = 136, .external_lex_state = 2}, - [243] = {.lex_state = 74, .external_lex_state = 2}, - [244] = {.lex_state = 74, .external_lex_state = 2}, - [245] = {.lex_state = 74, .external_lex_state = 2}, - [246] = {.lex_state = 74, .external_lex_state = 2}, - [247] = {.lex_state = 74, .external_lex_state = 2}, - [248] = {.lex_state = 74, .external_lex_state = 2}, - [249] = {.lex_state = 74, .external_lex_state = 2}, - [250] = {.lex_state = 136, .external_lex_state = 2}, - [251] = {.lex_state = 74, .external_lex_state = 2}, - [252] = {.lex_state = 74, .external_lex_state = 2}, - [253] = {.lex_state = 74, .external_lex_state = 2}, - [254] = {.lex_state = 74, .external_lex_state = 2}, - [255] = {.lex_state = 74, .external_lex_state = 2}, - [256] = {.lex_state = 74, .external_lex_state = 2}, - [257] = {.lex_state = 74, .external_lex_state = 2}, - [258] = {.lex_state = 74, .external_lex_state = 2}, - [259] = {.lex_state = 74, .external_lex_state = 2}, - [260] = {.lex_state = 74, .external_lex_state = 2}, - [261] = {.lex_state = 74, .external_lex_state = 2}, - [262] = {.lex_state = 74, .external_lex_state = 2}, - [263] = {.lex_state = 134, .external_lex_state = 2}, - [264] = {.lex_state = 74, .external_lex_state = 2}, - [265] = {.lex_state = 74, .external_lex_state = 2}, - [266] = {.lex_state = 74, .external_lex_state = 2}, - [267] = {.lex_state = 74, .external_lex_state = 2}, - [268] = {.lex_state = 74, .external_lex_state = 2}, - [269] = {.lex_state = 74, .external_lex_state = 2}, - [270] = {.lex_state = 33, .external_lex_state = 2}, - [271] = {.lex_state = 88, .external_lex_state = 2}, - [272] = {.lex_state = 41, .external_lex_state = 2}, - [273] = {.lex_state = 88, .external_lex_state = 2}, - [274] = {.lex_state = 41, .external_lex_state = 2}, - [275] = {.lex_state = 41, .external_lex_state = 2}, - [276] = {.lex_state = 33, .external_lex_state = 2}, - [277] = {.lex_state = 33, .external_lex_state = 2}, - [278] = {.lex_state = 33, .external_lex_state = 2}, - [279] = {.lex_state = 33, .external_lex_state = 2}, - [280] = {.lex_state = 33, .external_lex_state = 2}, - [281] = {.lex_state = 33, .external_lex_state = 2}, - [282] = {.lex_state = 22, .external_lex_state = 2}, - [283] = {.lex_state = 33, .external_lex_state = 2}, - [284] = {.lex_state = 88, .external_lex_state = 2}, - [285] = {.lex_state = 88, .external_lex_state = 2}, - [286] = {.lex_state = 88, .external_lex_state = 2}, - [287] = {.lex_state = 86, .external_lex_state = 2}, - [288] = {.lex_state = 33, .external_lex_state = 2}, - [289] = {.lex_state = 33, .external_lex_state = 2}, - [290] = {.lex_state = 88, .external_lex_state = 2}, - [291] = {.lex_state = 22, .external_lex_state = 2}, - [292] = {.lex_state = 88, .external_lex_state = 2}, - [293] = {.lex_state = 88, .external_lex_state = 2}, - [294] = {.lex_state = 88, .external_lex_state = 2}, - [295] = {.lex_state = 88, .external_lex_state = 2}, - [296] = {.lex_state = 88, .external_lex_state = 2}, - [297] = {.lex_state = 88, .external_lex_state = 2}, - [298] = {.lex_state = 88, .external_lex_state = 2}, - [299] = {.lex_state = 33, .external_lex_state = 2}, - [300] = {.lex_state = 33, .external_lex_state = 2}, - [301] = {.lex_state = 33, .external_lex_state = 2}, - [302] = {.lex_state = 136, .external_lex_state = 2}, - [303] = {.lex_state = 88, .external_lex_state = 2}, - [304] = {.lex_state = 88, .external_lex_state = 2}, - [305] = {.lex_state = 88, .external_lex_state = 2}, - [306] = {.lex_state = 88, .external_lex_state = 2}, - [307] = {.lex_state = 88, .external_lex_state = 2}, - [308] = {.lex_state = 88, .external_lex_state = 2}, - [309] = {.lex_state = 88, .external_lex_state = 2}, - [310] = {.lex_state = 88, .external_lex_state = 2}, - [311] = {.lex_state = 88, .external_lex_state = 2}, - [312] = {.lex_state = 88, .external_lex_state = 2}, - [313] = {.lex_state = 88, .external_lex_state = 2}, - [314] = {.lex_state = 88, .external_lex_state = 2}, - [315] = {.lex_state = 98, .external_lex_state = 2}, - [316] = {.lex_state = 88, .external_lex_state = 2}, - [317] = {.lex_state = 88, .external_lex_state = 2}, - [318] = {.lex_state = 88, .external_lex_state = 2}, - [319] = {.lex_state = 88, .external_lex_state = 2}, - [320] = {.lex_state = 88, .external_lex_state = 2}, - [321] = {.lex_state = 88, .external_lex_state = 2}, - [322] = {.lex_state = 33, .external_lex_state = 2}, - [323] = {.lex_state = 37, .external_lex_state = 2}, - [324] = {.lex_state = 33, .external_lex_state = 2}, - [325] = {.lex_state = 37, .external_lex_state = 2}, - [326] = {.lex_state = 33, .external_lex_state = 2}, - [327] = {.lex_state = 33, .external_lex_state = 2}, - [328] = {.lex_state = 33, .external_lex_state = 2}, - [329] = {.lex_state = 33, .external_lex_state = 2}, - [330] = {.lex_state = 98, .external_lex_state = 2}, - [331] = {.lex_state = 33, .external_lex_state = 2}, - [332] = {.lex_state = 33, .external_lex_state = 2}, - [333] = {.lex_state = 33, .external_lex_state = 2}, - [334] = {.lex_state = 33, .external_lex_state = 2}, - [335] = {.lex_state = 33, .external_lex_state = 2}, - [336] = {.lex_state = 37, .external_lex_state = 2}, - [337] = {.lex_state = 37, .external_lex_state = 2}, - [338] = {.lex_state = 37, .external_lex_state = 2}, - [339] = {.lex_state = 35, .external_lex_state = 2}, - [340] = {.lex_state = 33, .external_lex_state = 2}, - [341] = {.lex_state = 33, .external_lex_state = 2}, - [342] = {.lex_state = 37, .external_lex_state = 2}, - [343] = {.lex_state = 11, .external_lex_state = 2}, - [344] = {.lex_state = 37, .external_lex_state = 2}, - [345] = {.lex_state = 37, .external_lex_state = 2}, - [346] = {.lex_state = 37, .external_lex_state = 2}, - [347] = {.lex_state = 37, .external_lex_state = 2}, - [348] = {.lex_state = 37, .external_lex_state = 2}, - [349] = {.lex_state = 37, .external_lex_state = 2}, - [350] = {.lex_state = 37, .external_lex_state = 2}, - [351] = {.lex_state = 11, .external_lex_state = 2}, - [352] = {.lex_state = 33, .external_lex_state = 2}, - [353] = {.lex_state = 31, .external_lex_state = 2}, - [354] = {.lex_state = 3, .external_lex_state = 2}, - [355] = {.lex_state = 37, .external_lex_state = 2}, - [356] = {.lex_state = 37, .external_lex_state = 2}, - [357] = {.lex_state = 37, .external_lex_state = 2}, - [358] = {.lex_state = 37, .external_lex_state = 2}, - [359] = {.lex_state = 37, .external_lex_state = 2}, - [360] = {.lex_state = 37, .external_lex_state = 2}, - [361] = {.lex_state = 37, .external_lex_state = 2}, - [362] = {.lex_state = 37, .external_lex_state = 2}, - [363] = {.lex_state = 37, .external_lex_state = 2}, - [364] = {.lex_state = 37, .external_lex_state = 2}, - [365] = {.lex_state = 37, .external_lex_state = 2}, - [366] = {.lex_state = 37, .external_lex_state = 2}, - [367] = {.lex_state = 3, .external_lex_state = 2}, - [368] = {.lex_state = 37, .external_lex_state = 2}, - [369] = {.lex_state = 37, .external_lex_state = 2}, - [370] = {.lex_state = 37, .external_lex_state = 2}, - [371] = {.lex_state = 37, .external_lex_state = 2}, - [372] = {.lex_state = 37, .external_lex_state = 2}, - [373] = {.lex_state = 37, .external_lex_state = 2}, - [374] = {.lex_state = 33, .external_lex_state = 2}, - [375] = {.lex_state = 139, .external_lex_state = 2}, - [376] = {.lex_state = 33, .external_lex_state = 2}, - [377] = {.lex_state = 139, .external_lex_state = 2}, - [378] = {.lex_state = 139, .external_lex_state = 2}, - [379] = {.lex_state = 33, .external_lex_state = 2}, - [380] = {.lex_state = 33, .external_lex_state = 2}, - [381] = {.lex_state = 139, .external_lex_state = 2}, - [382] = {.lex_state = 37, .external_lex_state = 2}, - [383] = {.lex_state = 37, .external_lex_state = 2}, - [384] = {.lex_state = 88, .external_lex_state = 2}, - [385] = {.lex_state = 136, .external_lex_state = 2}, - [386] = {.lex_state = 88, .external_lex_state = 2}, - [387] = {.lex_state = 74, .external_lex_state = 2}, - [388] = {.lex_state = 139, .external_lex_state = 2}, - [389] = {.lex_state = 139, .external_lex_state = 2}, - [390] = {.lex_state = 139, .external_lex_state = 2}, - [391] = {.lex_state = 67, .external_lex_state = 2}, - [392] = {.lex_state = 74, .external_lex_state = 2}, - [393] = {.lex_state = 41, .external_lex_state = 2}, - [394] = {.lex_state = 139, .external_lex_state = 2}, - [395] = {.lex_state = 41, .external_lex_state = 2}, - [396] = {.lex_state = 139, .external_lex_state = 2}, - [397] = {.lex_state = 139, .external_lex_state = 2}, - [398] = {.lex_state = 139, .external_lex_state = 2}, - [399] = {.lex_state = 139, .external_lex_state = 2}, - [400] = {.lex_state = 139, .external_lex_state = 2}, - [401] = {.lex_state = 139, .external_lex_state = 2}, - [402] = {.lex_state = 139, .external_lex_state = 2}, - [403] = {.lex_state = 33, .external_lex_state = 2}, - [404] = {.lex_state = 33, .external_lex_state = 2}, - [405] = {.lex_state = 98, .external_lex_state = 2}, - [406] = {.lex_state = 98, .external_lex_state = 2}, - [407] = {.lex_state = 139, .external_lex_state = 2}, - [408] = {.lex_state = 139, .external_lex_state = 2}, - [409] = {.lex_state = 139, .external_lex_state = 2}, - [410] = {.lex_state = 139, .external_lex_state = 2}, - [411] = {.lex_state = 139, .external_lex_state = 2}, - [412] = {.lex_state = 139, .external_lex_state = 2}, - [413] = {.lex_state = 139, .external_lex_state = 2}, - [414] = {.lex_state = 139, .external_lex_state = 2}, - [415] = {.lex_state = 139, .external_lex_state = 2}, - [416] = {.lex_state = 139, .external_lex_state = 2}, - [417] = {.lex_state = 139, .external_lex_state = 2}, - [418] = {.lex_state = 139, .external_lex_state = 2}, - [419] = {.lex_state = 98, .external_lex_state = 2}, - [420] = {.lex_state = 139, .external_lex_state = 2}, - [421] = {.lex_state = 139, .external_lex_state = 2}, - [422] = {.lex_state = 139, .external_lex_state = 2}, - [423] = {.lex_state = 139, .external_lex_state = 2}, - [424] = {.lex_state = 139, .external_lex_state = 2}, - [425] = {.lex_state = 139, .external_lex_state = 2}, - [426] = {.lex_state = 136, .external_lex_state = 2}, + [190] = {.lex_state = 124, .external_lex_state = 2}, + [191] = {.lex_state = 29, .external_lex_state = 2}, + [192] = {.lex_state = 29, .external_lex_state = 2}, + [193] = {.lex_state = 29, .external_lex_state = 2}, + [194] = {.lex_state = 29, .external_lex_state = 2}, + [195] = {.lex_state = 29, .external_lex_state = 2}, + [196] = {.lex_state = 29, .external_lex_state = 2}, + [197] = {.lex_state = 25, .external_lex_state = 2}, + [198] = {.lex_state = 25, .external_lex_state = 2}, + [199] = {.lex_state = 25, .external_lex_state = 2}, + [200] = {.lex_state = 25, .external_lex_state = 2}, + [201] = {.lex_state = 23, .external_lex_state = 2}, + [202] = {.lex_state = 25, .external_lex_state = 2}, + [203] = {.lex_state = 25, .external_lex_state = 2}, + [204] = {.lex_state = 88, .external_lex_state = 2}, + [205] = {.lex_state = 25, .external_lex_state = 2}, + [206] = {.lex_state = 25, .external_lex_state = 2}, + [207] = {.lex_state = 25, .external_lex_state = 2}, + [208] = {.lex_state = 25, .external_lex_state = 2}, + [209] = {.lex_state = 25, .external_lex_state = 2}, + [210] = {.lex_state = 25, .external_lex_state = 2}, + [211] = {.lex_state = 25, .external_lex_state = 2}, + [212] = {.lex_state = 88, .external_lex_state = 2}, + [213] = {.lex_state = 25, .external_lex_state = 2}, + [214] = {.lex_state = 25, .external_lex_state = 2}, + [215] = {.lex_state = 25, .external_lex_state = 2}, + [216] = {.lex_state = 25, .external_lex_state = 2}, + [217] = {.lex_state = 25, .external_lex_state = 2}, + [218] = {.lex_state = 25, .external_lex_state = 2}, + [219] = {.lex_state = 25, .external_lex_state = 2}, + [220] = {.lex_state = 25, .external_lex_state = 2}, + [221] = {.lex_state = 25, .external_lex_state = 2}, + [222] = {.lex_state = 25, .external_lex_state = 2}, + [223] = {.lex_state = 3, .external_lex_state = 2}, + [224] = {.lex_state = 25, .external_lex_state = 2}, + [225] = {.lex_state = 25, .external_lex_state = 2}, + [226] = {.lex_state = 25, .external_lex_state = 2}, + [227] = {.lex_state = 25, .external_lex_state = 2}, + [228] = {.lex_state = 25, .external_lex_state = 2}, + [229] = {.lex_state = 25, .external_lex_state = 2}, + [230] = {.lex_state = 25, .external_lex_state = 2}, + [231] = {.lex_state = 34, .external_lex_state = 2}, + [232] = {.lex_state = 34, .external_lex_state = 2}, + [233] = {.lex_state = 34, .external_lex_state = 2}, + [234] = {.lex_state = 34, .external_lex_state = 2}, + [235] = {.lex_state = 32, .external_lex_state = 2}, + [236] = {.lex_state = 34, .external_lex_state = 2}, + [237] = {.lex_state = 34, .external_lex_state = 2}, + [238] = {.lex_state = 3, .external_lex_state = 2}, + [239] = {.lex_state = 34, .external_lex_state = 2}, + [240] = {.lex_state = 34, .external_lex_state = 2}, + [241] = {.lex_state = 34, .external_lex_state = 2}, + [242] = {.lex_state = 34, .external_lex_state = 2}, + [243] = {.lex_state = 34, .external_lex_state = 2}, + [244] = {.lex_state = 34, .external_lex_state = 2}, + [245] = {.lex_state = 34, .external_lex_state = 2}, + [246] = {.lex_state = 124, .external_lex_state = 2}, + [247] = {.lex_state = 34, .external_lex_state = 2}, + [248] = {.lex_state = 34, .external_lex_state = 2}, + [249] = {.lex_state = 34, .external_lex_state = 2}, + [250] = {.lex_state = 34, .external_lex_state = 2}, + [251] = {.lex_state = 34, .external_lex_state = 2}, + [252] = {.lex_state = 34, .external_lex_state = 2}, + [253] = {.lex_state = 34, .external_lex_state = 2}, + [254] = {.lex_state = 34, .external_lex_state = 2}, + [255] = {.lex_state = 34, .external_lex_state = 2}, + [256] = {.lex_state = 34, .external_lex_state = 2}, + [257] = {.lex_state = 124, .external_lex_state = 2}, + [258] = {.lex_state = 34, .external_lex_state = 2}, + [259] = {.lex_state = 34, .external_lex_state = 2}, + [260] = {.lex_state = 34, .external_lex_state = 2}, + [261] = {.lex_state = 34, .external_lex_state = 2}, + [262] = {.lex_state = 34, .external_lex_state = 2}, + [263] = {.lex_state = 34, .external_lex_state = 2}, + [264] = {.lex_state = 34, .external_lex_state = 2}, + [265] = {.lex_state = 27, .external_lex_state = 2}, + [266] = {.lex_state = 67, .external_lex_state = 2}, + [267] = {.lex_state = 78, .external_lex_state = 2}, + [268] = {.lex_state = 29, .external_lex_state = 2}, + [269] = {.lex_state = 29, .external_lex_state = 2}, + [270] = {.lex_state = 29, .external_lex_state = 2}, + [271] = {.lex_state = 29, .external_lex_state = 2}, + [272] = {.lex_state = 29, .external_lex_state = 2}, + [273] = {.lex_state = 29, .external_lex_state = 2}, + [274] = {.lex_state = 29, .external_lex_state = 2}, + [275] = {.lex_state = 29, .external_lex_state = 2}, + [276] = {.lex_state = 29, .external_lex_state = 2}, + [277] = {.lex_state = 67, .external_lex_state = 2}, + [278] = {.lex_state = 67, .external_lex_state = 2}, + [279] = {.lex_state = 67, .external_lex_state = 2}, + [280] = {.lex_state = 65, .external_lex_state = 2}, + [281] = {.lex_state = 29, .external_lex_state = 2}, + [282] = {.lex_state = 78, .external_lex_state = 2}, + [283] = {.lex_state = 67, .external_lex_state = 2}, + [284] = {.lex_state = 67, .external_lex_state = 2}, + [285] = {.lex_state = 67, .external_lex_state = 2}, + [286] = {.lex_state = 67, .external_lex_state = 2}, + [287] = {.lex_state = 67, .external_lex_state = 2}, + [288] = {.lex_state = 67, .external_lex_state = 2}, + [289] = {.lex_state = 67, .external_lex_state = 2}, + [290] = {.lex_state = 67, .external_lex_state = 2}, + [291] = {.lex_state = 67, .external_lex_state = 2}, + [292] = {.lex_state = 67, .external_lex_state = 2}, + [293] = {.lex_state = 29, .external_lex_state = 2}, + [294] = {.lex_state = 29, .external_lex_state = 2}, + [295] = {.lex_state = 29, .external_lex_state = 2}, + [296] = {.lex_state = 67, .external_lex_state = 2}, + [297] = {.lex_state = 67, .external_lex_state = 2}, + [298] = {.lex_state = 67, .external_lex_state = 2}, + [299] = {.lex_state = 67, .external_lex_state = 2}, + [300] = {.lex_state = 67, .external_lex_state = 2}, + [301] = {.lex_state = 67, .external_lex_state = 2}, + [302] = {.lex_state = 67, .external_lex_state = 2}, + [303] = {.lex_state = 67, .external_lex_state = 2}, + [304] = {.lex_state = 67, .external_lex_state = 2}, + [305] = {.lex_state = 67, .external_lex_state = 2}, + [306] = {.lex_state = 67, .external_lex_state = 2}, + [307] = {.lex_state = 34, .external_lex_state = 2}, + [308] = {.lex_state = 67, .external_lex_state = 2}, + [309] = {.lex_state = 67, .external_lex_state = 2}, + [310] = {.lex_state = 67, .external_lex_state = 2}, + [311] = {.lex_state = 67, .external_lex_state = 2}, + [312] = {.lex_state = 67, .external_lex_state = 2}, + [313] = {.lex_state = 67, .external_lex_state = 2}, + [314] = {.lex_state = 67, .external_lex_state = 2}, + [315] = {.lex_state = 29, .external_lex_state = 2}, + [316] = {.lex_state = 78, .external_lex_state = 2}, + [317] = {.lex_state = 29, .external_lex_state = 2}, + [318] = {.lex_state = 29, .external_lex_state = 2}, + [319] = {.lex_state = 29, .external_lex_state = 2}, + [320] = {.lex_state = 34, .external_lex_state = 2}, + [321] = {.lex_state = 29, .external_lex_state = 2}, + [322] = {.lex_state = 29, .external_lex_state = 2}, + [323] = {.lex_state = 121, .external_lex_state = 2}, + [324] = {.lex_state = 29, .external_lex_state = 2}, + [325] = {.lex_state = 29, .external_lex_state = 2}, + [326] = {.lex_state = 29, .external_lex_state = 2}, + [327] = {.lex_state = 78, .external_lex_state = 2}, + [328] = {.lex_state = 78, .external_lex_state = 2}, + [329] = {.lex_state = 78, .external_lex_state = 2}, + [330] = {.lex_state = 76, .external_lex_state = 2}, + [331] = {.lex_state = 29, .external_lex_state = 2}, + [332] = {.lex_state = 121, .external_lex_state = 2}, + [333] = {.lex_state = 78, .external_lex_state = 2}, + [334] = {.lex_state = 78, .external_lex_state = 2}, + [335] = {.lex_state = 25, .external_lex_state = 2}, + [336] = {.lex_state = 78, .external_lex_state = 2}, + [337] = {.lex_state = 78, .external_lex_state = 2}, + [338] = {.lex_state = 78, .external_lex_state = 2}, + [339] = {.lex_state = 78, .external_lex_state = 2}, + [340] = {.lex_state = 78, .external_lex_state = 2}, + [341] = {.lex_state = 78, .external_lex_state = 2}, + [342] = {.lex_state = 78, .external_lex_state = 2}, + [343] = {.lex_state = 121, .external_lex_state = 2}, + [344] = {.lex_state = 121, .external_lex_state = 2}, + [345] = {.lex_state = 119, .external_lex_state = 2}, + [346] = {.lex_state = 25, .external_lex_state = 2}, + [347] = {.lex_state = 78, .external_lex_state = 2}, + [348] = {.lex_state = 78, .external_lex_state = 2}, + [349] = {.lex_state = 78, .external_lex_state = 2}, + [350] = {.lex_state = 78, .external_lex_state = 2}, + [351] = {.lex_state = 78, .external_lex_state = 2}, + [352] = {.lex_state = 78, .external_lex_state = 2}, + [353] = {.lex_state = 78, .external_lex_state = 2}, + [354] = {.lex_state = 78, .external_lex_state = 2}, + [355] = {.lex_state = 78, .external_lex_state = 2}, + [356] = {.lex_state = 78, .external_lex_state = 2}, + [357] = {.lex_state = 29, .external_lex_state = 2}, + [358] = {.lex_state = 78, .external_lex_state = 2}, + [359] = {.lex_state = 78, .external_lex_state = 2}, + [360] = {.lex_state = 78, .external_lex_state = 2}, + [361] = {.lex_state = 78, .external_lex_state = 2}, + [362] = {.lex_state = 78, .external_lex_state = 2}, + [363] = {.lex_state = 78, .external_lex_state = 2}, + [364] = {.lex_state = 78, .external_lex_state = 2}, + [365] = {.lex_state = 121, .external_lex_state = 2}, + [366] = {.lex_state = 124, .external_lex_state = 2}, + [367] = {.lex_state = 121, .external_lex_state = 2}, + [368] = {.lex_state = 29, .external_lex_state = 2}, + [369] = {.lex_state = 121, .external_lex_state = 2}, + [370] = {.lex_state = 12, .external_lex_state = 2}, + [371] = {.lex_state = 121, .external_lex_state = 2}, + [372] = {.lex_state = 29, .external_lex_state = 2}, + [373] = {.lex_state = 88, .external_lex_state = 2}, + [374] = {.lex_state = 88, .external_lex_state = 2}, + [375] = {.lex_state = 121, .external_lex_state = 2}, + [376] = {.lex_state = 121, .external_lex_state = 2}, + [377] = {.lex_state = 124, .external_lex_state = 2}, + [378] = {.lex_state = 124, .external_lex_state = 2}, + [379] = {.lex_state = 124, .external_lex_state = 2}, + [380] = {.lex_state = 60, .external_lex_state = 2}, + [381] = {.lex_state = 88, .external_lex_state = 2}, + [382] = {.lex_state = 88, .external_lex_state = 2}, + [383] = {.lex_state = 124, .external_lex_state = 2}, + [384] = {.lex_state = 124, .external_lex_state = 2}, + [385] = {.lex_state = 88, .external_lex_state = 2}, + [386] = {.lex_state = 124, .external_lex_state = 2}, + [387] = {.lex_state = 124, .external_lex_state = 2}, + [388] = {.lex_state = 124, .external_lex_state = 2}, + [389] = {.lex_state = 124, .external_lex_state = 2}, + [390] = {.lex_state = 124, .external_lex_state = 2}, + [391] = {.lex_state = 124, .external_lex_state = 2}, + [392] = {.lex_state = 88, .external_lex_state = 2}, + [393] = {.lex_state = 121, .external_lex_state = 2}, + [394] = {.lex_state = 121, .external_lex_state = 2}, + [395] = {.lex_state = 121, .external_lex_state = 2}, + [396] = {.lex_state = 88, .external_lex_state = 2}, + [397] = {.lex_state = 124, .external_lex_state = 2}, + [398] = {.lex_state = 124, .external_lex_state = 2}, + [399] = {.lex_state = 124, .external_lex_state = 2}, + [400] = {.lex_state = 124, .external_lex_state = 2}, + [401] = {.lex_state = 124, .external_lex_state = 2}, + [402] = {.lex_state = 124, .external_lex_state = 2}, + [403] = {.lex_state = 124, .external_lex_state = 2}, + [404] = {.lex_state = 124, .external_lex_state = 2}, + [405] = {.lex_state = 124, .external_lex_state = 2}, + [406] = {.lex_state = 124, .external_lex_state = 2}, + [407] = {.lex_state = 88, .external_lex_state = 2}, + [408] = {.lex_state = 124, .external_lex_state = 2}, + [409] = {.lex_state = 124, .external_lex_state = 2}, + [410] = {.lex_state = 124, .external_lex_state = 2}, + [411] = {.lex_state = 124, .external_lex_state = 2}, + [412] = {.lex_state = 124, .external_lex_state = 2}, + [413] = {.lex_state = 124, .external_lex_state = 2}, + [414] = {.lex_state = 124, .external_lex_state = 2}, + [415] = {.lex_state = 88, .external_lex_state = 2}, + [416] = {.lex_state = 3, .external_lex_state = 2}, + [417] = {.lex_state = 88, .external_lex_state = 2}, + [418] = {.lex_state = 88, .external_lex_state = 2}, + [419] = {.lex_state = 88, .external_lex_state = 2}, + [420] = {.lex_state = 88, .external_lex_state = 2}, + [421] = {.lex_state = 88, .external_lex_state = 2}, + [422] = {.lex_state = 121, .external_lex_state = 2}, + [423] = {.lex_state = 88, .external_lex_state = 2}, + [424] = {.lex_state = 88, .external_lex_state = 2}, + [425] = {.lex_state = 88, .external_lex_state = 2}, + [426] = {.lex_state = 121, .external_lex_state = 2}, [427] = {.lex_state = 3, .external_lex_state = 2}, - [428] = {.lex_state = 136, .external_lex_state = 2}, + [428] = {.lex_state = 3, .external_lex_state = 2}, [429] = {.lex_state = 3, .external_lex_state = 2}, - [430] = {.lex_state = 136, .external_lex_state = 2}, - [431] = {.lex_state = 136, .external_lex_state = 2}, - [432] = {.lex_state = 136, .external_lex_state = 2}, - [433] = {.lex_state = 98, .external_lex_state = 2}, - [434] = {.lex_state = 98, .external_lex_state = 2}, - [435] = {.lex_state = 98, .external_lex_state = 2}, - [436] = {.lex_state = 136, .external_lex_state = 2}, - [437] = {.lex_state = 98, .external_lex_state = 2}, - [438] = {.lex_state = 98, .external_lex_state = 2}, - [439] = {.lex_state = 136, .external_lex_state = 2}, + [430] = {.lex_state = 2, .external_lex_state = 2}, + [431] = {.lex_state = 121, .external_lex_state = 2}, + [432] = {.lex_state = 88, .external_lex_state = 2}, + [433] = {.lex_state = 3, .external_lex_state = 2}, + [434] = {.lex_state = 3, .external_lex_state = 2}, + [435] = {.lex_state = 88, .external_lex_state = 2}, + [436] = {.lex_state = 3, .external_lex_state = 2}, + [437] = {.lex_state = 3, .external_lex_state = 2}, + [438] = {.lex_state = 3, .external_lex_state = 2}, + [439] = {.lex_state = 3, .external_lex_state = 2}, [440] = {.lex_state = 3, .external_lex_state = 2}, [441] = {.lex_state = 3, .external_lex_state = 2}, [442] = {.lex_state = 3, .external_lex_state = 2}, - [443] = {.lex_state = 2, .external_lex_state = 2}, - [444] = {.lex_state = 98, .external_lex_state = 2}, - [445] = {.lex_state = 98, .external_lex_state = 2}, - [446] = {.lex_state = 98, .external_lex_state = 2}, - [447] = {.lex_state = 98, .external_lex_state = 2}, + [443] = {.lex_state = 88, .external_lex_state = 2}, + [444] = {.lex_state = 88, .external_lex_state = 2}, + [445] = {.lex_state = 88, .external_lex_state = 2}, + [446] = {.lex_state = 88, .external_lex_state = 2}, + [447] = {.lex_state = 3, .external_lex_state = 2}, [448] = {.lex_state = 3, .external_lex_state = 2}, [449] = {.lex_state = 3, .external_lex_state = 2}, - [450] = {.lex_state = 3, .external_lex_state = 2}, + [450] = {.lex_state = 88, .external_lex_state = 2}, [451] = {.lex_state = 3, .external_lex_state = 2}, [452] = {.lex_state = 3, .external_lex_state = 2}, [453] = {.lex_state = 3, .external_lex_state = 2}, [454] = {.lex_state = 3, .external_lex_state = 2}, - [455] = {.lex_state = 136, .external_lex_state = 2}, - [456] = {.lex_state = 136, .external_lex_state = 2}, - [457] = {.lex_state = 136, .external_lex_state = 2}, - [458] = {.lex_state = 98, .external_lex_state = 2}, + [455] = {.lex_state = 3, .external_lex_state = 2}, + [456] = {.lex_state = 3, .external_lex_state = 2}, + [457] = {.lex_state = 88, .external_lex_state = 2}, + [458] = {.lex_state = 3, .external_lex_state = 2}, [459] = {.lex_state = 3, .external_lex_state = 2}, [460] = {.lex_state = 3, .external_lex_state = 2}, [461] = {.lex_state = 3, .external_lex_state = 2}, [462] = {.lex_state = 3, .external_lex_state = 2}, [463] = {.lex_state = 3, .external_lex_state = 2}, [464] = {.lex_state = 3, .external_lex_state = 2}, - [465] = {.lex_state = 3, .external_lex_state = 2}, - [466] = {.lex_state = 3, .external_lex_state = 2}, - [467] = {.lex_state = 3, .external_lex_state = 2}, - [468] = {.lex_state = 3, .external_lex_state = 2}, - [469] = {.lex_state = 3, .external_lex_state = 2}, - [470] = {.lex_state = 3, .external_lex_state = 2}, - [471] = {.lex_state = 98, .external_lex_state = 2}, - [472] = {.lex_state = 3, .external_lex_state = 2}, - [473] = {.lex_state = 3, .external_lex_state = 2}, - [474] = {.lex_state = 3, .external_lex_state = 2}, - [475] = {.lex_state = 3, .external_lex_state = 2}, - [476] = {.lex_state = 3, .external_lex_state = 2}, - [477] = {.lex_state = 3, .external_lex_state = 2}, - [478] = {.lex_state = 136, .external_lex_state = 2}, - [479] = {.lex_state = 11, .external_lex_state = 2}, - [480] = {.lex_state = 98, .external_lex_state = 2}, - [481] = {.lex_state = 11, .external_lex_state = 2}, - [482] = {.lex_state = 98, .external_lex_state = 2}, - [483] = {.lex_state = 98, .external_lex_state = 2}, - [484] = {.lex_state = 98, .external_lex_state = 2}, - [485] = {.lex_state = 136, .external_lex_state = 2}, - [486] = {.lex_state = 136, .external_lex_state = 2}, - [487] = {.lex_state = 136, .external_lex_state = 2}, - [488] = {.lex_state = 136, .external_lex_state = 2}, - [489] = {.lex_state = 136, .external_lex_state = 2}, - [490] = {.lex_state = 136, .external_lex_state = 2}, - [491] = {.lex_state = 136, .external_lex_state = 2}, - [492] = {.lex_state = 11, .external_lex_state = 2}, - [493] = {.lex_state = 11, .external_lex_state = 2}, - [494] = {.lex_state = 11, .external_lex_state = 2}, - [495] = {.lex_state = 10, .external_lex_state = 2}, - [496] = {.lex_state = 136, .external_lex_state = 2}, - [497] = {.lex_state = 98, .external_lex_state = 2}, - [498] = {.lex_state = 11, .external_lex_state = 2}, - [499] = {.lex_state = 98, .external_lex_state = 2}, - [500] = {.lex_state = 11, .external_lex_state = 2}, - [501] = {.lex_state = 11, .external_lex_state = 2}, - [502] = {.lex_state = 11, .external_lex_state = 2}, - [503] = {.lex_state = 11, .external_lex_state = 2}, - [504] = {.lex_state = 11, .external_lex_state = 2}, - [505] = {.lex_state = 11, .external_lex_state = 2}, - [506] = {.lex_state = 11, .external_lex_state = 2}, - [507] = {.lex_state = 98, .external_lex_state = 2}, - [508] = {.lex_state = 98, .external_lex_state = 2}, - [509] = {.lex_state = 98, .external_lex_state = 2}, - [510] = {.lex_state = 98, .external_lex_state = 2}, - [511] = {.lex_state = 11, .external_lex_state = 2}, - [512] = {.lex_state = 11, .external_lex_state = 2}, - [513] = {.lex_state = 11, .external_lex_state = 2}, - [514] = {.lex_state = 11, .external_lex_state = 2}, - [515] = {.lex_state = 11, .external_lex_state = 2}, - [516] = {.lex_state = 11, .external_lex_state = 2}, - [517] = {.lex_state = 11, .external_lex_state = 2}, - [518] = {.lex_state = 11, .external_lex_state = 2}, - [519] = {.lex_state = 11, .external_lex_state = 2}, - [520] = {.lex_state = 11, .external_lex_state = 2}, - [521] = {.lex_state = 11, .external_lex_state = 2}, - [522] = {.lex_state = 11, .external_lex_state = 2}, - [523] = {.lex_state = 98, .external_lex_state = 2}, - [524] = {.lex_state = 11, .external_lex_state = 2}, - [525] = {.lex_state = 11, .external_lex_state = 2}, - [526] = {.lex_state = 11, .external_lex_state = 2}, - [527] = {.lex_state = 11, .external_lex_state = 2}, - [528] = {.lex_state = 11, .external_lex_state = 2}, - [529] = {.lex_state = 11, .external_lex_state = 2}, - [530] = {.lex_state = 98, .external_lex_state = 2}, - [531] = {.lex_state = 98, .external_lex_state = 2}, - [532] = {.lex_state = 136, .external_lex_state = 2}, - [533] = {.lex_state = 98, .external_lex_state = 2}, - [534] = {.lex_state = 41, .external_lex_state = 2}, - [535] = {.lex_state = 22, .external_lex_state = 2}, - [536] = {.lex_state = 136, .external_lex_state = 2}, - [537] = {.lex_state = 136, .external_lex_state = 2}, - [538] = {.lex_state = 136, .external_lex_state = 2}, - [539] = {.lex_state = 136, .external_lex_state = 2}, - [540] = {.lex_state = 136, .external_lex_state = 2}, - [541] = {.lex_state = 98, .external_lex_state = 2}, - [542] = {.lex_state = 136, .external_lex_state = 2}, - [543] = {.lex_state = 98, .external_lex_state = 2}, - [544] = {.lex_state = 98, .external_lex_state = 2}, - [545] = {.lex_state = 134, .external_lex_state = 2}, - [546] = {.lex_state = 39, .external_lex_state = 2}, - [547] = {.lex_state = 134, .external_lex_state = 2}, - [548] = {.lex_state = 86, .external_lex_state = 2}, - [549] = {.lex_state = 39, .external_lex_state = 2}, - [550] = {.lex_state = 39, .external_lex_state = 2}, - [551] = {.lex_state = 97, .external_lex_state = 2}, - [552] = {.lex_state = 10, .external_lex_state = 2}, - [553] = {.lex_state = 10, .external_lex_state = 2}, - [554] = {.lex_state = 31, .external_lex_state = 2}, - [555] = {.lex_state = 72, .external_lex_state = 2}, - [556] = {.lex_state = 72, .external_lex_state = 2}, - [557] = {.lex_state = 10, .external_lex_state = 2}, - [558] = {.lex_state = 72, .external_lex_state = 2}, - [559] = {.lex_state = 35, .external_lex_state = 2}, - [560] = {.lex_state = 31, .external_lex_state = 2}, - [561] = {.lex_state = 31, .external_lex_state = 2}, - [562] = {.lex_state = 35, .external_lex_state = 2}, - [563] = {.lex_state = 35, .external_lex_state = 2}, - [564] = {.lex_state = 67, .external_lex_state = 2}, - [565] = {.lex_state = 86, .external_lex_state = 2}, - [566] = {.lex_state = 86, .external_lex_state = 2}, - [567] = {.lex_state = 2, .external_lex_state = 2}, - [568] = {.lex_state = 2, .external_lex_state = 2}, - [569] = {.lex_state = 2, .external_lex_state = 2}, - [570] = {.lex_state = 97, .external_lex_state = 2}, - [571] = {.lex_state = 134, .external_lex_state = 2}, - [572] = {.lex_state = 97, .external_lex_state = 2}, - [573] = {.lex_state = 67, .external_lex_state = 2}, - [574] = {.lex_state = 67, .external_lex_state = 2}, - [575] = {.lex_state = 63}, - [576] = {.lex_state = 63}, - [577] = {.lex_state = 63}, - [578] = {.lex_state = 63}, - [579] = {.lex_state = 63}, - [580] = {.lex_state = 63}, - [581] = {.lex_state = 63}, - [582] = {.lex_state = 63}, - [583] = {.lex_state = 63}, - [584] = {.lex_state = 63}, - [585] = {.lex_state = 63}, - [586] = {.lex_state = 63}, - [587] = {.lex_state = 63}, - [588] = {.lex_state = 63}, - [589] = {.lex_state = 63}, - [590] = {.lex_state = 63}, - [591] = {.lex_state = 63}, - [592] = {.lex_state = 63}, - [593] = {.lex_state = 63}, - [594] = {.lex_state = 63}, - [595] = {.lex_state = 63}, - [596] = {.lex_state = 63}, - [597] = {.lex_state = 63}, - [598] = {.lex_state = 63}, - [599] = {.lex_state = 63}, - [600] = {.lex_state = 63}, - [601] = {.lex_state = 63}, - [602] = {.lex_state = 63}, - [603] = {.lex_state = 63}, - [604] = {.lex_state = 63}, - [605] = {.lex_state = 63}, - [606] = {.lex_state = 63}, - [607] = {.lex_state = 63}, - [608] = {.lex_state = 63}, - [609] = {.lex_state = 63}, - [610] = {.lex_state = 63}, - [611] = {.lex_state = 63}, - [612] = {.lex_state = 63}, - [613] = {.lex_state = 63}, - [614] = {.lex_state = 63}, - [615] = {.lex_state = 63}, - [616] = {.lex_state = 63}, - [617] = {.lex_state = 63}, - [618] = {.lex_state = 63}, - [619] = {.lex_state = 63}, - [620] = {.lex_state = 63}, - [621] = {.lex_state = 63}, - [622] = {.lex_state = 63}, - [623] = {.lex_state = 63}, - [624] = {.lex_state = 63}, - [625] = {.lex_state = 63}, - [626] = {.lex_state = 63}, - [627] = {.lex_state = 63}, - [628] = {.lex_state = 63}, - [629] = {.lex_state = 63}, - [630] = {.lex_state = 63}, - [631] = {.lex_state = 63}, - [632] = {.lex_state = 63}, - [633] = {.lex_state = 63}, - [634] = {.lex_state = 63}, - [635] = {.lex_state = 63}, - [636] = {.lex_state = 63}, - [637] = {.lex_state = 65}, - [638] = {.lex_state = 63}, - [639] = {.lex_state = 63}, - [640] = {.lex_state = 63}, - [641] = {.lex_state = 63}, - [642] = {.lex_state = 63}, - [643] = {.lex_state = 63}, - [644] = {.lex_state = 65}, - [645] = {.lex_state = 63}, - [646] = {.lex_state = 63}, - [647] = {.lex_state = 63}, - [648] = {.lex_state = 63}, - [649] = {.lex_state = 63}, - [650] = {.lex_state = 63}, - [651] = {.lex_state = 63}, - [652] = {.lex_state = 63}, - [653] = {.lex_state = 63}, - [654] = {.lex_state = 63}, - [655] = {.lex_state = 63}, - [656] = {.lex_state = 63}, - [657] = {.lex_state = 65}, - [658] = {.lex_state = 65}, - [659] = {.lex_state = 9}, - [660] = {.lex_state = 63}, - [661] = {.lex_state = 9}, - [662] = {.lex_state = 109}, + [465] = {.lex_state = 121, .external_lex_state = 2}, + [466] = {.lex_state = 88, .external_lex_state = 2}, + [467] = {.lex_state = 121, .external_lex_state = 2}, + [468] = {.lex_state = 128, .external_lex_state = 2}, + [469] = {.lex_state = 121, .external_lex_state = 2}, + [470] = {.lex_state = 121, .external_lex_state = 2}, + [471] = {.lex_state = 121, .external_lex_state = 2}, + [472] = {.lex_state = 121, .external_lex_state = 2}, + [473] = {.lex_state = 121, .external_lex_state = 2}, + [474] = {.lex_state = 121, .external_lex_state = 2}, + [475] = {.lex_state = 121, .external_lex_state = 2}, + [476] = {.lex_state = 87, .external_lex_state = 2}, + [477] = {.lex_state = 88, .external_lex_state = 2}, + [478] = {.lex_state = 88, .external_lex_state = 2}, + [479] = {.lex_state = 88, .external_lex_state = 2}, + [480] = {.lex_state = 121, .external_lex_state = 2}, + [481] = {.lex_state = 121, .external_lex_state = 2}, + [482] = {.lex_state = 121, .external_lex_state = 2}, + [483] = {.lex_state = 121, .external_lex_state = 2}, + [484] = {.lex_state = 121, .external_lex_state = 2}, + [485] = {.lex_state = 121, .external_lex_state = 2}, + [486] = {.lex_state = 12, .external_lex_state = 2}, + [487] = {.lex_state = 88, .external_lex_state = 2}, + [488] = {.lex_state = 121, .external_lex_state = 2}, + [489] = {.lex_state = 121, .external_lex_state = 2}, + [490] = {.lex_state = 121, .external_lex_state = 2}, + [491] = {.lex_state = 76, .external_lex_state = 2}, + [492] = {.lex_state = 121, .external_lex_state = 2}, + [493] = {.lex_state = 121, .external_lex_state = 2}, + [494] = {.lex_state = 23, .external_lex_state = 2}, + [495] = {.lex_state = 23, .external_lex_state = 2}, + [496] = {.lex_state = 121, .external_lex_state = 2}, + [497] = {.lex_state = 121, .external_lex_state = 2}, + [498] = {.lex_state = 121, .external_lex_state = 2}, + [499] = {.lex_state = 121, .external_lex_state = 2}, + [500] = {.lex_state = 121, .external_lex_state = 2}, + [501] = {.lex_state = 121, .external_lex_state = 2}, + [502] = {.lex_state = 121, .external_lex_state = 2}, + [503] = {.lex_state = 121, .external_lex_state = 2}, + [504] = {.lex_state = 121, .external_lex_state = 2}, + [505] = {.lex_state = 121, .external_lex_state = 2}, + [506] = {.lex_state = 121, .external_lex_state = 2}, + [507] = {.lex_state = 121, .external_lex_state = 2}, + [508] = {.lex_state = 121, .external_lex_state = 2}, + [509] = {.lex_state = 121, .external_lex_state = 2}, + [510] = {.lex_state = 121, .external_lex_state = 2}, + [511] = {.lex_state = 121, .external_lex_state = 2}, + [512] = {.lex_state = 121, .external_lex_state = 2}, + [513] = {.lex_state = 121, .external_lex_state = 2}, + [514] = {.lex_state = 121, .external_lex_state = 2}, + [515] = {.lex_state = 121, .external_lex_state = 2}, + [516] = {.lex_state = 23, .external_lex_state = 2}, + [517] = {.lex_state = 119, .external_lex_state = 2}, + [518] = {.lex_state = 121, .external_lex_state = 2}, + [519] = {.lex_state = 32, .external_lex_state = 2}, + [520] = {.lex_state = 121, .external_lex_state = 2}, + [521] = {.lex_state = 121, .external_lex_state = 2}, + [522] = {.lex_state = 32, .external_lex_state = 2}, + [523] = {.lex_state = 32, .external_lex_state = 2}, + [524] = {.lex_state = 27, .external_lex_state = 2}, + [525] = {.lex_state = 119, .external_lex_state = 2}, + [526] = {.lex_state = 27, .external_lex_state = 2}, + [527] = {.lex_state = 121, .external_lex_state = 2}, + [528] = {.lex_state = 121, .external_lex_state = 2}, + [529] = {.lex_state = 121, .external_lex_state = 2}, + [530] = {.lex_state = 65, .external_lex_state = 2}, + [531] = {.lex_state = 2, .external_lex_state = 2}, + [532] = {.lex_state = 65, .external_lex_state = 2}, + [533] = {.lex_state = 121, .external_lex_state = 2}, + [534] = {.lex_state = 2, .external_lex_state = 2}, + [535] = {.lex_state = 87, .external_lex_state = 2}, + [536] = {.lex_state = 65, .external_lex_state = 2}, + [537] = {.lex_state = 2, .external_lex_state = 2}, + [538] = {.lex_state = 27, .external_lex_state = 2}, + [539] = {.lex_state = 76, .external_lex_state = 2}, + [540] = {.lex_state = 121, .external_lex_state = 2}, + [541] = {.lex_state = 76, .external_lex_state = 2}, + [542] = {.lex_state = 121, .external_lex_state = 2}, + [543] = {.lex_state = 121, .external_lex_state = 2}, + [544] = {.lex_state = 87, .external_lex_state = 2}, + [545] = {.lex_state = 87, .external_lex_state = 2}, + [546] = {.lex_state = 119, .external_lex_state = 2}, + [547] = {.lex_state = 60, .external_lex_state = 2}, + [548] = {.lex_state = 60, .external_lex_state = 2}, + [549] = {.lex_state = 60, .external_lex_state = 2}, + [550] = {.lex_state = 119, .external_lex_state = 2}, + [551] = {.lex_state = 119, .external_lex_state = 2}, + [552] = {.lex_state = 119, .external_lex_state = 2}, + [553] = {.lex_state = 119, .external_lex_state = 2}, + [554] = {.lex_state = 56}, + [555] = {.lex_state = 56}, + [556] = {.lex_state = 56}, + [557] = {.lex_state = 56}, + [558] = {.lex_state = 56}, + [559] = {.lex_state = 56}, + [560] = {.lex_state = 56}, + [561] = {.lex_state = 56}, + [562] = {.lex_state = 56}, + [563] = {.lex_state = 56}, + [564] = {.lex_state = 56}, + [565] = {.lex_state = 56}, + [566] = {.lex_state = 56}, + [567] = {.lex_state = 56}, + [568] = {.lex_state = 56}, + [569] = {.lex_state = 56}, + [570] = {.lex_state = 56}, + [571] = {.lex_state = 56}, + [572] = {.lex_state = 56}, + [573] = {.lex_state = 56}, + [574] = {.lex_state = 56}, + [575] = {.lex_state = 56}, + [576] = {.lex_state = 56}, + [577] = {.lex_state = 56}, + [578] = {.lex_state = 56}, + [579] = {.lex_state = 56}, + [580] = {.lex_state = 56}, + [581] = {.lex_state = 56}, + [582] = {.lex_state = 56}, + [583] = {.lex_state = 56}, + [584] = {.lex_state = 56}, + [585] = {.lex_state = 56}, + [586] = {.lex_state = 56}, + [587] = {.lex_state = 56}, + [588] = {.lex_state = 56}, + [589] = {.lex_state = 56}, + [590] = {.lex_state = 56}, + [591] = {.lex_state = 56}, + [592] = {.lex_state = 56}, + [593] = {.lex_state = 56}, + [594] = {.lex_state = 56}, + [595] = {.lex_state = 56}, + [596] = {.lex_state = 56}, + [597] = {.lex_state = 56}, + [598] = {.lex_state = 56}, + [599] = {.lex_state = 56}, + [600] = {.lex_state = 56}, + [601] = {.lex_state = 56}, + [602] = {.lex_state = 56}, + [603] = {.lex_state = 56}, + [604] = {.lex_state = 56}, + [605] = {.lex_state = 56}, + [606] = {.lex_state = 56}, + [607] = {.lex_state = 56}, + [608] = {.lex_state = 56}, + [609] = {.lex_state = 56}, + [610] = {.lex_state = 56}, + [611] = {.lex_state = 56}, + [612] = {.lex_state = 56}, + [613] = {.lex_state = 56}, + [614] = {.lex_state = 56}, + [615] = {.lex_state = 56}, + [616] = {.lex_state = 56}, + [617] = {.lex_state = 56}, + [618] = {.lex_state = 58}, + [619] = {.lex_state = 56}, + [620] = {.lex_state = 56}, + [621] = {.lex_state = 56}, + [622] = {.lex_state = 56}, + [623] = {.lex_state = 56}, + [624] = {.lex_state = 56}, + [625] = {.lex_state = 56}, + [626] = {.lex_state = 56}, + [627] = {.lex_state = 56}, + [628] = {.lex_state = 56}, + [629] = {.lex_state = 56}, + [630] = {.lex_state = 56}, + [631] = {.lex_state = 56}, + [632] = {.lex_state = 56}, + [633] = {.lex_state = 56}, + [634] = {.lex_state = 56}, + [635] = {.lex_state = 58}, + [636] = {.lex_state = 58}, + [637] = {.lex_state = 58}, + [638] = {.lex_state = 0}, + [639] = {.lex_state = 56}, + [640] = {.lex_state = 0}, + [641] = {.lex_state = 0}, + [642] = {.lex_state = 0}, + [643] = {.lex_state = 0}, + [644] = {.lex_state = 0}, + [645] = {.lex_state = 0}, + [646] = {.lex_state = 0}, + [647] = {.lex_state = 0}, + [648] = {.lex_state = 97}, + [649] = {.lex_state = 0}, + [650] = {.lex_state = 56}, + [651] = {.lex_state = 56}, + [652] = {.lex_state = 119}, + [653] = {.lex_state = 56}, + [654] = {.lex_state = 0, .external_lex_state = 3}, + [655] = {.lex_state = 119}, + [656] = {.lex_state = 0, .external_lex_state = 3}, + [657] = {.lex_state = 56}, + [658] = {.lex_state = 119}, + [659] = {.lex_state = 0}, + [660] = {.lex_state = 56}, + [661] = {.lex_state = 0}, + [662] = {.lex_state = 56}, [663] = {.lex_state = 0}, - [664] = {.lex_state = 9}, + [664] = {.lex_state = 0}, [665] = {.lex_state = 0}, - [666] = {.lex_state = 0}, + [666] = {.lex_state = 119}, [667] = {.lex_state = 0}, - [668] = {.lex_state = 9}, + [668] = {.lex_state = 0, .external_lex_state = 3}, [669] = {.lex_state = 0}, - [670] = {.lex_state = 63}, - [671] = {.lex_state = 0}, - [672] = {.lex_state = 0}, - [673] = {.lex_state = 9}, - [674] = {.lex_state = 9}, - [675] = {.lex_state = 0}, - [676] = {.lex_state = 9}, + [670] = {.lex_state = 0, .external_lex_state = 3}, + [671] = {.lex_state = 119}, + [672] = {.lex_state = 56}, + [673] = {.lex_state = 0, .external_lex_state = 3}, + [674] = {.lex_state = 119}, + [675] = {.lex_state = 56}, + [676] = {.lex_state = 0, .external_lex_state = 3}, [677] = {.lex_state = 0}, - [678] = {.lex_state = 0}, - [679] = {.lex_state = 9}, - [680] = {.lex_state = 9}, - [681] = {.lex_state = 9}, - [682] = {.lex_state = 0}, + [678] = {.lex_state = 56}, + [679] = {.lex_state = 0}, + [680] = {.lex_state = 0}, + [681] = {.lex_state = 0}, + [682] = {.lex_state = 0, .external_lex_state = 3}, [683] = {.lex_state = 0}, - [684] = {.lex_state = 63}, - [685] = {.lex_state = 63}, - [686] = {.lex_state = 63}, - [687] = {.lex_state = 0}, - [688] = {.lex_state = 63}, - [689] = {.lex_state = 63}, + [684] = {.lex_state = 0}, + [685] = {.lex_state = 119}, + [686] = {.lex_state = 119}, + [687] = {.lex_state = 56}, + [688] = {.lex_state = 119}, + [689] = {.lex_state = 0}, [690] = {.lex_state = 0}, - [691] = {.lex_state = 63}, - [692] = {.lex_state = 63}, - [693] = {.lex_state = 63}, - [694] = {.lex_state = 63}, - [695] = {.lex_state = 0}, + [691] = {.lex_state = 0}, + [692] = {.lex_state = 0, .external_lex_state = 3}, + [693] = {.lex_state = 56}, + [694] = {.lex_state = 0}, + [695] = {.lex_state = 0, .external_lex_state = 3}, [696] = {.lex_state = 0}, - [697] = {.lex_state = 0}, - [698] = {.lex_state = 63}, - [699] = {.lex_state = 0}, - [700] = {.lex_state = 63}, + [697] = {.lex_state = 0, .external_lex_state = 3}, + [698] = {.lex_state = 119}, + [699] = {.lex_state = 56}, + [700] = {.lex_state = 0}, [701] = {.lex_state = 0}, [702] = {.lex_state = 0}, - [703] = {.lex_state = 0}, - [704] = {.lex_state = 0}, - [705] = {.lex_state = 0}, + [703] = {.lex_state = 0, .external_lex_state = 4}, + [704] = {.lex_state = 0, .external_lex_state = 4}, + [705] = {.lex_state = 56}, [706] = {.lex_state = 0}, - [707] = {.lex_state = 0}, + [707] = {.lex_state = 0, .external_lex_state = 5}, [708] = {.lex_state = 0}, - [709] = {.lex_state = 0}, - [710] = {.lex_state = 0}, + [709] = {.lex_state = 56}, + [710] = {.lex_state = 20}, [711] = {.lex_state = 0}, [712] = {.lex_state = 0}, - [713] = {.lex_state = 63}, - [714] = {.lex_state = 0, .external_lex_state = 3}, - [715] = {.lex_state = 0}, - [716] = {.lex_state = 63}, - [717] = {.lex_state = 63}, - [718] = {.lex_state = 0}, - [719] = {.lex_state = 0}, - [720] = {.lex_state = 29}, - [721] = {.lex_state = 0, .external_lex_state = 3}, - [722] = {.lex_state = 63}, - [723] = {.lex_state = 63}, - [724] = {.lex_state = 29}, + [713] = {.lex_state = 17}, + [714] = {.lex_state = 0, .external_lex_state = 5}, + [715] = {.lex_state = 56}, + [716] = {.lex_state = 0}, + [717] = {.lex_state = 56}, + [718] = {.lex_state = 0, .external_lex_state = 4}, + [719] = {.lex_state = 56}, + [720] = {.lex_state = 0}, + [721] = {.lex_state = 0, .external_lex_state = 5}, + [722] = {.lex_state = 17}, + [723] = {.lex_state = 56}, + [724] = {.lex_state = 20}, [725] = {.lex_state = 0}, [726] = {.lex_state = 0}, - [727] = {.lex_state = 0, .external_lex_state = 3}, - [728] = {.lex_state = 24}, - [729] = {.lex_state = 0}, - [730] = {.lex_state = 63}, - [731] = {.lex_state = 63}, - [732] = {.lex_state = 0}, - [733] = {.lex_state = 0, .external_lex_state = 3}, - [734] = {.lex_state = 63}, + [727] = {.lex_state = 56}, + [728] = {.lex_state = 0}, + [729] = {.lex_state = 17}, + [730] = {.lex_state = 56}, + [731] = {.lex_state = 17}, + [732] = {.lex_state = 0, .external_lex_state = 5}, + [733] = {.lex_state = 0, .external_lex_state = 5}, + [734] = {.lex_state = 56}, [735] = {.lex_state = 0}, - [736] = {.lex_state = 63}, - [737] = {.lex_state = 63}, - [738] = {.lex_state = 0}, - [739] = {.lex_state = 63}, - [740] = {.lex_state = 0, .external_lex_state = 3}, - [741] = {.lex_state = 0, .external_lex_state = 3}, - [742] = {.lex_state = 24}, - [743] = {.lex_state = 63}, - [744] = {.lex_state = 29}, - [745] = {.lex_state = 0}, - [746] = {.lex_state = 0}, - [747] = {.lex_state = 24}, + [736] = {.lex_state = 56}, + [737] = {.lex_state = 0, .external_lex_state = 4}, + [738] = {.lex_state = 56}, + [739] = {.lex_state = 17}, + [740] = {.lex_state = 0}, + [741] = {.lex_state = 0}, + [742] = {.lex_state = 0}, + [743] = {.lex_state = 0, .external_lex_state = 5}, + [744] = {.lex_state = 0, .external_lex_state = 6}, + [745] = {.lex_state = 56}, + [746] = {.lex_state = 20}, + [747] = {.lex_state = 20}, [748] = {.lex_state = 0}, - [749] = {.lex_state = 0}, - [750] = {.lex_state = 0, .external_lex_state = 3}, - [751] = {.lex_state = 63}, - [752] = {.lex_state = 0}, - [753] = {.lex_state = 63}, - [754] = {.lex_state = 63}, - [755] = {.lex_state = 0}, - [756] = {.lex_state = 29}, - [757] = {.lex_state = 63}, - [758] = {.lex_state = 0, .external_lex_state = 3}, - [759] = {.lex_state = 0, .external_lex_state = 3}, - [760] = {.lex_state = 63}, - [761] = {.lex_state = 29}, + [749] = {.lex_state = 20}, + [750] = {.lex_state = 56}, + [751] = {.lex_state = 17}, + [752] = {.lex_state = 0, .external_lex_state = 5}, + [753] = {.lex_state = 0}, + [754] = {.lex_state = 56}, + [755] = {.lex_state = 0, .external_lex_state = 5}, + [756] = {.lex_state = 56}, + [757] = {.lex_state = 0}, + [758] = {.lex_state = 56}, + [759] = {.lex_state = 0, .external_lex_state = 4}, + [760] = {.lex_state = 56}, + [761] = {.lex_state = 0, .external_lex_state = 4}, [762] = {.lex_state = 0}, - [763] = {.lex_state = 0}, - [764] = {.lex_state = 24}, - [765] = {.lex_state = 0}, - [766] = {.lex_state = 110}, - [767] = {.lex_state = 63}, - [768] = {.lex_state = 0}, - [769] = {.lex_state = 0, .external_lex_state = 3}, - [770] = {.lex_state = 63}, + [763] = {.lex_state = 56}, + [764] = {.lex_state = 0}, + [765] = {.lex_state = 0, .external_lex_state = 5}, + [766] = {.lex_state = 56}, + [767] = {.lex_state = 56}, + [768] = {.lex_state = 20}, + [769] = {.lex_state = 0}, + [770] = {.lex_state = 0}, [771] = {.lex_state = 0}, - [772] = {.lex_state = 63}, - [773] = {.lex_state = 63}, - [774] = {.lex_state = 0}, - [775] = {.lex_state = 63}, - [776] = {.lex_state = 0, .external_lex_state = 3}, - [777] = {.lex_state = 0, .external_lex_state = 3}, - [778] = {.lex_state = 24}, - [779] = {.lex_state = 63}, - [780] = {.lex_state = 29}, - [781] = {.lex_state = 0}, - [782] = {.lex_state = 0}, - [783] = {.lex_state = 24}, - [784] = {.lex_state = 0}, + [772] = {.lex_state = 0, .external_lex_state = 5}, + [773] = {.lex_state = 17}, + [774] = {.lex_state = 0, .external_lex_state = 5}, + [775] = {.lex_state = 98}, + [776] = {.lex_state = 17}, + [777] = {.lex_state = 0, .external_lex_state = 5}, + [778] = {.lex_state = 56}, + [779] = {.lex_state = 0}, + [780] = {.lex_state = 56}, + [781] = {.lex_state = 0, .external_lex_state = 4}, + [782] = {.lex_state = 56}, + [783] = {.lex_state = 0}, + [784] = {.lex_state = 297}, [785] = {.lex_state = 0}, - [786] = {.lex_state = 0, .external_lex_state = 3}, - [787] = {.lex_state = 0}, - [788] = {.lex_state = 0}, - [789] = {.lex_state = 63}, - [790] = {.lex_state = 63}, - [791] = {.lex_state = 29}, - [792] = {.lex_state = 63}, - [793] = {.lex_state = 0, .external_lex_state = 3}, + [786] = {.lex_state = 20}, + [787] = {.lex_state = 56}, + [788] = {.lex_state = 0, .external_lex_state = 4}, + [789] = {.lex_state = 56}, + [790] = {.lex_state = 0, .external_lex_state = 5}, + [791] = {.lex_state = 0, .external_lex_state = 5}, + [792] = {.lex_state = 56}, + [793] = {.lex_state = 0}, [794] = {.lex_state = 0}, - [795] = {.lex_state = 63}, - [796] = {.lex_state = 63}, - [797] = {.lex_state = 0}, - [798] = {.lex_state = 63}, - [799] = {.lex_state = 0, .external_lex_state = 3}, - [800] = {.lex_state = 24}, - [801] = {.lex_state = 63}, - [802] = {.lex_state = 63}, - [803] = {.lex_state = 0}, - [804] = {.lex_state = 0}, - [805] = {.lex_state = 29}, - [806] = {.lex_state = 63}, - [807] = {.lex_state = 0, .external_lex_state = 3}, - [808] = {.lex_state = 0}, - [809] = {.lex_state = 63}, - [810] = {.lex_state = 111}, - [811] = {.lex_state = 0, .external_lex_state = 4}, - [812] = {.lex_state = 0, .external_lex_state = 4}, - [813] = {.lex_state = 63}, - [814] = {.lex_state = 24}, - [815] = {.lex_state = 0, .external_lex_state = 4}, - [816] = {.lex_state = 0}, - [817] = {.lex_state = 24}, - [818] = {.lex_state = 110}, - [819] = {.lex_state = 112}, - [820] = {.lex_state = 0, .external_lex_state = 4}, - [821] = {.lex_state = 24}, - [822] = {.lex_state = 63}, - [823] = {.lex_state = 24}, - [824] = {.lex_state = 0, .external_lex_state = 4}, - [825] = {.lex_state = 63}, - [826] = {.lex_state = 0, .external_lex_state = 3}, - [827] = {.lex_state = 110}, - [828] = {.lex_state = 112}, - [829] = {.lex_state = 0, .external_lex_state = 4}, - [830] = {.lex_state = 0}, + [795] = {.lex_state = 56}, + [796] = {.lex_state = 99}, + [797] = {.lex_state = 56}, + [798] = {.lex_state = 0, .external_lex_state = 4}, + [799] = {.lex_state = 56}, + [800] = {.lex_state = 0}, + [801] = {.lex_state = 56}, + [802] = {.lex_state = 56}, + [803] = {.lex_state = 0, .external_lex_state = 6}, + [804] = {.lex_state = 0, .external_lex_state = 6}, + [805] = {.lex_state = 17}, + [806] = {.lex_state = 0, .external_lex_state = 6}, + [807] = {.lex_state = 56}, + [808] = {.lex_state = 17}, + [809] = {.lex_state = 98}, + [810] = {.lex_state = 0, .external_lex_state = 5}, + [811] = {.lex_state = 99}, + [812] = {.lex_state = 0, .external_lex_state = 6}, + [813] = {.lex_state = 17}, + [814] = {.lex_state = 17}, + [815] = {.lex_state = 0, .external_lex_state = 6}, + [816] = {.lex_state = 17}, + [817] = {.lex_state = 0}, + [818] = {.lex_state = 98}, + [819] = {.lex_state = 0}, + [820] = {.lex_state = 99}, + [821] = {.lex_state = 0, .external_lex_state = 6}, + [822] = {.lex_state = 20}, + [823] = {.lex_state = 17}, + [824] = {.lex_state = 0, .external_lex_state = 6}, + [825] = {.lex_state = 56}, + [826] = {.lex_state = 0}, + [827] = {.lex_state = 98}, + [828] = {.lex_state = 0, .external_lex_state = 5}, + [829] = {.lex_state = 99}, + [830] = {.lex_state = 0, .external_lex_state = 6}, [831] = {.lex_state = 0}, - [832] = {.lex_state = 24}, - [833] = {.lex_state = 0, .external_lex_state = 4}, - [834] = {.lex_state = 24}, - [835] = {.lex_state = 29}, - [836] = {.lex_state = 110}, - [837] = {.lex_state = 112}, - [838] = {.lex_state = 0, .external_lex_state = 4}, - [839] = {.lex_state = 63}, - [840] = {.lex_state = 112}, - [841] = {.lex_state = 24}, - [842] = {.lex_state = 0, .external_lex_state = 4}, - [843] = {.lex_state = 0}, - [844] = {.lex_state = 63}, - [845] = {.lex_state = 110}, - [846] = {.lex_state = 112}, - [847] = {.lex_state = 0, .external_lex_state = 4}, - [848] = {.lex_state = 0}, - [849] = {.lex_state = 63}, - [850] = {.lex_state = 24}, - [851] = {.lex_state = 0, .external_lex_state = 4}, - [852] = {.lex_state = 0}, - [853] = {.lex_state = 0, .external_lex_state = 3}, - [854] = {.lex_state = 110}, - [855] = {.lex_state = 112}, - [856] = {.lex_state = 0, .external_lex_state = 4}, - [857] = {.lex_state = 0, .external_lex_state = 3}, - [858] = {.lex_state = 24}, - [859] = {.lex_state = 24}, - [860] = {.lex_state = 0, .external_lex_state = 4}, - [861] = {.lex_state = 29}, - [862] = {.lex_state = 0, .external_lex_state = 4}, - [863] = {.lex_state = 110}, - [864] = {.lex_state = 112}, - [865] = {.lex_state = 0, .external_lex_state = 4}, - [866] = {.lex_state = 0}, - [867] = {.lex_state = 0}, - [868] = {.lex_state = 24}, - [869] = {.lex_state = 0, .external_lex_state = 4}, - [870] = {.lex_state = 63}, - [871] = {.lex_state = 0, .external_lex_state = 3}, - [872] = {.lex_state = 110}, - [873] = {.lex_state = 112}, - [874] = {.lex_state = 0, .external_lex_state = 4}, - [875] = {.lex_state = 63}, - [876] = {.lex_state = 24}, - [877] = {.lex_state = 24}, - [878] = {.lex_state = 0, .external_lex_state = 4}, - [879] = {.lex_state = 24}, - [880] = {.lex_state = 0}, - [881] = {.lex_state = 110}, - [882] = {.lex_state = 112}, - [883] = {.lex_state = 0, .external_lex_state = 4}, + [832] = {.lex_state = 17}, + [833] = {.lex_state = 0, .external_lex_state = 6}, + [834] = {.lex_state = 0}, + [835] = {.lex_state = 20}, + [836] = {.lex_state = 98}, + [837] = {.lex_state = 56}, + [838] = {.lex_state = 99}, + [839] = {.lex_state = 0, .external_lex_state = 6}, + [840] = {.lex_state = 56}, + [841] = {.lex_state = 17}, + [842] = {.lex_state = 0, .external_lex_state = 6}, + [843] = {.lex_state = 0, .external_lex_state = 4}, + [844] = {.lex_state = 56}, + [845] = {.lex_state = 98}, + [846] = {.lex_state = 56}, + [847] = {.lex_state = 99}, + [848] = {.lex_state = 0, .external_lex_state = 6}, + [849] = {.lex_state = 0}, + [850] = {.lex_state = 17}, + [851] = {.lex_state = 0, .external_lex_state = 6}, + [852] = {.lex_state = 56}, + [853] = {.lex_state = 0, .external_lex_state = 5}, + [854] = {.lex_state = 98}, + [855] = {.lex_state = 17}, + [856] = {.lex_state = 99}, + [857] = {.lex_state = 0, .external_lex_state = 6}, + [858] = {.lex_state = 0}, + [859] = {.lex_state = 17}, + [860] = {.lex_state = 0, .external_lex_state = 6}, + [861] = {.lex_state = 0}, + [862] = {.lex_state = 100}, + [863] = {.lex_state = 98}, + [864] = {.lex_state = 20}, + [865] = {.lex_state = 99}, + [866] = {.lex_state = 0, .external_lex_state = 6}, + [867] = {.lex_state = 0, .external_lex_state = 5}, + [868] = {.lex_state = 17}, + [869] = {.lex_state = 0, .external_lex_state = 6}, + [870] = {.lex_state = 56}, + [871] = {.lex_state = 0, .external_lex_state = 5}, + [872] = {.lex_state = 98}, + [873] = {.lex_state = 0}, + [874] = {.lex_state = 99}, + [875] = {.lex_state = 0, .external_lex_state = 6}, + [876] = {.lex_state = 56}, + [877] = {.lex_state = 17}, + [878] = {.lex_state = 0, .external_lex_state = 6}, + [879] = {.lex_state = 0, .external_lex_state = 4}, + [880] = {.lex_state = 0, .external_lex_state = 7}, + [881] = {.lex_state = 98}, + [882] = {.lex_state = 56}, + [883] = {.lex_state = 99}, [884] = {.lex_state = 0}, - [885] = {.lex_state = 321}, - [886] = {.lex_state = 24}, - [887] = {.lex_state = 0, .external_lex_state = 4}, - [888] = {.lex_state = 63}, - [889] = {.lex_state = 63}, - [890] = {.lex_state = 110}, - [891] = {.lex_state = 112}, + [885] = {.lex_state = 0}, + [886] = {.lex_state = 0}, + [887] = {.lex_state = 56}, + [888] = {.lex_state = 0, .external_lex_state = 5}, + [889] = {.lex_state = 56}, + [890] = {.lex_state = 0}, + [891] = {.lex_state = 17}, + [892] = {.lex_state = 0}, + [893] = {.lex_state = 0, .external_lex_state = 7}, + [894] = {.lex_state = 0, .external_lex_state = 7}, + [895] = {.lex_state = 0, .external_lex_state = 7}, + [896] = {.lex_state = 0, .external_lex_state = 7}, + [897] = {.lex_state = 0, .external_lex_state = 7}, + [898] = {.lex_state = 0, .external_lex_state = 7}, + [899] = {.lex_state = 0, .external_lex_state = 7}, + [900] = {.lex_state = 0, .external_lex_state = 7}, + [901] = {.lex_state = 0, .external_lex_state = 7}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -8028,10 +7645,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1), [anon_sym_RBRACE] = ACTIONS(1), [anon_sym_LBRACE_] = ACTIONS(1), - [anon_sym_SPACE] = ACTIONS(1), [anon_sym__] = ACTIONS(1), - [aux_sym_emphasis_end_token1] = ACTIONS(1), [anon_sym_LBRACE_STAR] = ACTIONS(1), + [anon_sym_SPACE] = ACTIONS(1), [anon_sym_STAR] = ACTIONS(1), [aux_sym_strong_end_token1] = ACTIONS(1), [anon_sym_BSLASH] = ACTIONS(1), @@ -8083,783 +7699,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(1), [sym__verbatim_end] = ACTIONS(1), [sym__verbatim_content] = ACTIONS(1), + [sym_emphasis_begin_2] = ACTIONS(1), + [sym_emphasis_end_2] = ACTIONS(1), + [sym_strong_begin_2] = ACTIONS(1), + [sym_strong_end_2] = ACTIONS(1), + [sym__emphasis_begin_check] = ACTIONS(1), + [sym__emphasis_end_check] = ACTIONS(1), + [sym__in_real_emphasis] = ACTIONS(1), + [sym__in_fallback] = ACTIONS(1), [sym__error] = ACTIONS(1), }, [1] = { - [sym_inline] = STATE(867), - [sym__inline] = STATE(866), - [sym__element] = STATE(100), - [sym_emphasis] = STATE(198), - [sym_emphasis_begin] = STATE(106), - [sym_strong] = STATE(198), - [sym_strong_begin] = STATE(105), - [sym__hard_line_break] = STATE(198), - [sym_hard_line_break] = STATE(198), - [sym__smart_punctuation] = STATE(198), - [sym_autolink] = STATE(198), - [sym_highlighted] = STATE(198), - [sym_insert] = STATE(198), - [sym_delete] = STATE(198), - [sym_superscript] = STATE(198), - [sym_subscript] = STATE(198), - [sym_footnote_reference] = STATE(198), - [sym__image] = STATE(198), - [sym_full_reference_image] = STATE(198), - [sym_collapsed_reference_image] = STATE(198), - [sym_inline_image] = STATE(198), - [sym__image_description] = STATE(634), - [sym__link] = STATE(198), - [sym_full_reference_link] = STATE(198), - [sym_collapsed_reference_link] = STATE(198), - [sym_inline_link] = STATE(198), - [sym_link_text] = STATE(648), - [sym__comment_with_spaces] = STATE(198), - [sym_span] = STATE(198), - [sym_raw_inline] = STATE(198), - [sym_math] = STATE(198), - [sym_verbatim] = STATE(198), - [sym__todo_highlights] = STATE(198), - [sym_todo] = STATE(198), - [sym_note] = STATE(198), - [sym__symbol_fallback] = STATE(198), - [aux_sym__text] = STATE(134), - [aux_sym__inline_repeat1] = STATE(100), + [sym_inline] = STATE(885), + [sym__inline] = STATE(884), + [sym__element] = STATE(93), + [sym_emphasis] = STATE(184), + [sym_emphasis_begin] = STATE(880), + [sym_strong] = STATE(184), + [sym_strong_begin] = STATE(90), + [sym__hard_line_break] = STATE(184), + [sym_hard_line_break] = STATE(184), + [sym__smart_punctuation] = STATE(184), + [sym_autolink] = STATE(184), + [sym_highlighted] = STATE(184), + [sym_insert] = STATE(184), + [sym_delete] = STATE(184), + [sym_superscript] = STATE(184), + [sym_subscript] = STATE(184), + [sym_footnote_reference] = STATE(184), + [sym__image] = STATE(184), + [sym_full_reference_image] = STATE(184), + [sym_collapsed_reference_image] = STATE(184), + [sym_inline_image] = STATE(184), + [sym__image_description] = STATE(609), + [sym__link] = STATE(184), + [sym_full_reference_link] = STATE(184), + [sym_collapsed_reference_link] = STATE(184), + [sym_inline_link] = STATE(184), + [sym_link_text] = STATE(612), + [sym__comment_with_spaces] = STATE(184), + [sym_span] = STATE(184), + [sym_raw_inline] = STATE(184), + [sym_math] = STATE(184), + [sym_verbatim] = STATE(184), + [sym__todo_highlights] = STATE(184), + [sym_todo] = STATE(184), + [sym_note] = STATE(184), + [sym__symbol_fallback] = STATE(184), + [aux_sym__text] = STATE(151), + [aux_sym__inline_repeat1] = STATE(93), [anon_sym_LBRACE_] = ACTIONS(3), [anon_sym__] = ACTIONS(5), [anon_sym_LBRACE_STAR] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(9), [anon_sym_BSLASH] = ACTIONS(11), - [sym_quotation_marks] = ACTIONS(13), - [sym_ellipsis] = ACTIONS(13), - [sym_em_dash] = ACTIONS(13), - [sym_en_dash] = ACTIONS(15), - [sym_backslash_escape] = ACTIONS(15), - [anon_sym_LT] = ACTIONS(17), - [anon_sym_LBRACE_EQ] = ACTIONS(19), - [anon_sym_LBRACE_PLUS] = ACTIONS(21), - [anon_sym_LBRACE_DASH] = ACTIONS(23), - [sym_symbol] = ACTIONS(13), - [anon_sym_LBRACE_CARET] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(25), - [anon_sym_LBRACE_TILDE] = ACTIONS(27), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_LBRACK_CARET] = ACTIONS(29), - [anon_sym_BANG_LBRACK] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACE2] = ACTIONS(15), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_TODO] = ACTIONS(37), - [anon_sym_WIP] = ACTIONS(37), - [anon_sym_NOTE] = ACTIONS(39), - [anon_sym_INFO] = ACTIONS(39), - [anon_sym_XXX] = ACTIONS(39), - [sym_fixme] = ACTIONS(13), - [anon_sym_PIPE] = ACTIONS(13), - [sym__whitespace1] = ACTIONS(41), - [sym__newline] = ACTIONS(43), - [aux_sym__text_token1] = ACTIONS(45), - [sym__verbatim_begin] = ACTIONS(47), + [sym_quotation_marks] = ACTIONS(5), + [sym_ellipsis] = ACTIONS(5), + [sym_em_dash] = ACTIONS(5), + [sym_en_dash] = ACTIONS(13), + [sym_backslash_escape] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_LBRACE_EQ] = ACTIONS(17), + [anon_sym_LBRACE_PLUS] = ACTIONS(19), + [anon_sym_LBRACE_DASH] = ACTIONS(21), + [sym_symbol] = ACTIONS(5), + [anon_sym_LBRACE_CARET] = ACTIONS(23), + [anon_sym_CARET] = ACTIONS(23), + [anon_sym_LBRACE_TILDE] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_LBRACK_CARET] = ACTIONS(27), + [anon_sym_BANG_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_LBRACE2] = ACTIONS(13), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_TODO] = ACTIONS(35), + [anon_sym_WIP] = ACTIONS(35), + [anon_sym_NOTE] = ACTIONS(37), + [anon_sym_INFO] = ACTIONS(37), + [anon_sym_XXX] = ACTIONS(37), + [sym_fixme] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [sym__whitespace1] = ACTIONS(39), + [sym__newline] = ACTIONS(41), + [aux_sym__text_token1] = ACTIONS(43), + [sym__verbatim_begin] = ACTIONS(45), }, [2] = { - [sym__inline] = STATE(876), - [sym__element] = STATE(103), - [sym_emphasis] = STATE(200), - [sym_emphasis_begin] = STATE(101), - [sym_strong] = STATE(200), - [sym_strong_begin] = STATE(104), - [sym__hard_line_break] = STATE(200), - [sym_hard_line_break] = STATE(200), - [sym__smart_punctuation] = STATE(200), - [sym_autolink] = STATE(200), - [sym_highlighted] = STATE(200), - [sym_insert] = STATE(200), - [sym_delete] = STATE(200), - [sym_superscript] = STATE(200), - [sym_subscript] = STATE(200), - [sym_footnote_reference] = STATE(200), - [sym__image] = STATE(200), - [sym_full_reference_image] = STATE(200), - [sym_collapsed_reference_image] = STATE(200), - [sym_inline_image] = STATE(200), - [sym__image_description] = STATE(642), - [sym__link] = STATE(200), - [sym_full_reference_link] = STATE(200), - [sym_collapsed_reference_link] = STATE(200), - [sym_inline_link] = STATE(200), - [sym_link_text] = STATE(643), - [sym__comment_with_spaces] = STATE(200), - [sym_span] = STATE(200), - [sym_raw_inline] = STATE(200), - [sym_math] = STATE(200), - [sym_verbatim] = STATE(200), - [sym__todo_highlights] = STATE(200), - [sym_todo] = STATE(200), - [sym_note] = STATE(200), - [sym__symbol_fallback] = STATE(200), - [aux_sym__text] = STATE(138), - [aux_sym__inline_repeat1] = STATE(103), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(51), - [anon_sym__] = ACTIONS(54), - [anon_sym_LBRACE_STAR] = ACTIONS(57), - [anon_sym_STAR] = ACTIONS(60), - [anon_sym_BSLASH] = ACTIONS(63), - [sym_quotation_marks] = ACTIONS(66), - [sym_ellipsis] = ACTIONS(66), - [sym_em_dash] = ACTIONS(66), - [sym_en_dash] = ACTIONS(69), - [sym_backslash_escape] = ACTIONS(69), - [anon_sym_LT] = ACTIONS(72), - [anon_sym_LBRACE_EQ] = ACTIONS(75), - [anon_sym_LBRACE_PLUS] = ACTIONS(78), - [anon_sym_LBRACE_DASH] = ACTIONS(81), - [sym_symbol] = ACTIONS(66), - [anon_sym_LBRACE_CARET] = ACTIONS(84), - [anon_sym_CARET] = ACTIONS(84), - [anon_sym_LBRACE_TILDE] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(90), - [anon_sym_TILDE_RBRACE] = ACTIONS(93), - [anon_sym_LBRACK_CARET] = ACTIONS(95), - [anon_sym_RBRACK] = ACTIONS(98), - [anon_sym_BANG_LBRACK] = ACTIONS(100), - [anon_sym_LBRACK] = ACTIONS(103), - [anon_sym_LBRACE2] = ACTIONS(69), - [anon_sym_DOLLAR] = ACTIONS(106), - [anon_sym_TODO] = ACTIONS(109), - [anon_sym_WIP] = ACTIONS(109), - [anon_sym_NOTE] = ACTIONS(112), - [anon_sym_INFO] = ACTIONS(112), - [anon_sym_XXX] = ACTIONS(112), - [sym_fixme] = ACTIONS(66), - [anon_sym_PIPE] = ACTIONS(66), - [sym__whitespace1] = ACTIONS(115), - [sym__newline] = ACTIONS(118), - [aux_sym__text_token1] = ACTIONS(121), - [sym__verbatim_begin] = ACTIONS(124), - }, - [3] = { - [sym__inline] = STATE(876), - [sym__element] = STATE(103), - [sym_emphasis] = STATE(200), - [sym_emphasis_begin] = STATE(101), - [sym_strong] = STATE(200), - [sym_strong_begin] = STATE(104), - [sym__hard_line_break] = STATE(200), - [sym_hard_line_break] = STATE(200), - [sym__smart_punctuation] = STATE(200), - [sym_autolink] = STATE(200), - [sym_highlighted] = STATE(200), - [sym_insert] = STATE(200), - [sym_delete] = STATE(200), - [sym_superscript] = STATE(200), - [sym_subscript] = STATE(200), - [sym_footnote_reference] = STATE(200), - [sym__image] = STATE(200), - [sym_full_reference_image] = STATE(200), - [sym_collapsed_reference_image] = STATE(200), - [sym_inline_image] = STATE(200), - [sym__image_description] = STATE(642), - [sym__link] = STATE(200), - [sym_full_reference_link] = STATE(200), - [sym_collapsed_reference_link] = STATE(200), - [sym_inline_link] = STATE(200), - [sym_link_text] = STATE(643), - [sym__comment_with_spaces] = STATE(200), - [sym_span] = STATE(200), - [sym_raw_inline] = STATE(200), - [sym_math] = STATE(200), - [sym_verbatim] = STATE(200), - [sym__todo_highlights] = STATE(200), - [sym_todo] = STATE(200), - [sym_note] = STATE(200), - [sym__symbol_fallback] = STATE(200), - [aux_sym__text] = STATE(138), - [aux_sym__inline_repeat1] = STATE(103), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(51), - [anon_sym__] = ACTIONS(54), - [anon_sym_LBRACE_STAR] = ACTIONS(57), - [anon_sym_STAR] = ACTIONS(127), - [aux_sym_strong_end_token1] = ACTIONS(93), - [anon_sym_BSLASH] = ACTIONS(63), - [sym_quotation_marks] = ACTIONS(66), - [sym_ellipsis] = ACTIONS(66), - [sym_em_dash] = ACTIONS(66), - [sym_en_dash] = ACTIONS(69), - [sym_backslash_escape] = ACTIONS(69), - [anon_sym_LT] = ACTIONS(72), - [anon_sym_LBRACE_EQ] = ACTIONS(75), - [anon_sym_LBRACE_PLUS] = ACTIONS(78), - [anon_sym_LBRACE_DASH] = ACTIONS(81), - [sym_symbol] = ACTIONS(66), - [anon_sym_LBRACE_CARET] = ACTIONS(84), - [anon_sym_CARET] = ACTIONS(84), - [anon_sym_LBRACE_TILDE] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(87), - [anon_sym_LBRACK_CARET] = ACTIONS(95), - [anon_sym_RBRACK] = ACTIONS(98), - [anon_sym_BANG_LBRACK] = ACTIONS(100), - [anon_sym_LBRACK] = ACTIONS(103), - [anon_sym_LBRACE2] = ACTIONS(69), - [anon_sym_DOLLAR] = ACTIONS(106), - [anon_sym_TODO] = ACTIONS(109), - [anon_sym_WIP] = ACTIONS(109), - [anon_sym_NOTE] = ACTIONS(112), - [anon_sym_INFO] = ACTIONS(112), - [anon_sym_XXX] = ACTIONS(112), - [sym_fixme] = ACTIONS(66), - [anon_sym_PIPE] = ACTIONS(66), - [sym__whitespace1] = ACTIONS(130), - [sym__newline] = ACTIONS(118), - [aux_sym__text_token1] = ACTIONS(121), - [sym__verbatim_begin] = ACTIONS(124), - }, - [4] = { - [sym__inline] = STATE(876), - [sym__element] = STATE(103), - [sym_emphasis] = STATE(200), - [sym_emphasis_begin] = STATE(101), - [sym_strong] = STATE(200), - [sym_strong_begin] = STATE(104), - [sym__hard_line_break] = STATE(200), - [sym_hard_line_break] = STATE(200), - [sym__smart_punctuation] = STATE(200), - [sym_autolink] = STATE(200), - [sym_highlighted] = STATE(200), - [sym_insert] = STATE(200), - [sym_delete] = STATE(200), - [sym_superscript] = STATE(200), - [sym_subscript] = STATE(200), - [sym_footnote_reference] = STATE(200), - [sym__image] = STATE(200), - [sym_full_reference_image] = STATE(200), - [sym_collapsed_reference_image] = STATE(200), - [sym_inline_image] = STATE(200), - [sym__image_description] = STATE(642), - [sym__link] = STATE(200), - [sym_full_reference_link] = STATE(200), - [sym_collapsed_reference_link] = STATE(200), - [sym_inline_link] = STATE(200), - [sym_link_text] = STATE(643), - [sym__comment_with_spaces] = STATE(200), - [sym_span] = STATE(200), - [sym_raw_inline] = STATE(200), - [sym_math] = STATE(200), - [sym_verbatim] = STATE(200), - [sym__todo_highlights] = STATE(200), - [sym_todo] = STATE(200), - [sym_note] = STATE(200), - [sym__symbol_fallback] = STATE(200), - [aux_sym__text] = STATE(138), - [aux_sym__inline_repeat1] = STATE(103), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(51), - [anon_sym__] = ACTIONS(54), - [anon_sym_LBRACE_STAR] = ACTIONS(57), - [anon_sym_STAR] = ACTIONS(60), - [anon_sym_BSLASH] = ACTIONS(63), - [sym_quotation_marks] = ACTIONS(66), - [sym_ellipsis] = ACTIONS(66), - [sym_em_dash] = ACTIONS(66), - [sym_en_dash] = ACTIONS(69), - [sym_backslash_escape] = ACTIONS(69), - [anon_sym_LT] = ACTIONS(72), - [anon_sym_LBRACE_EQ] = ACTIONS(75), - [anon_sym_LBRACE_PLUS] = ACTIONS(78), - [anon_sym_PLUS_RBRACE] = ACTIONS(93), - [anon_sym_LBRACE_DASH] = ACTIONS(81), - [sym_symbol] = ACTIONS(66), - [anon_sym_LBRACE_CARET] = ACTIONS(84), - [anon_sym_CARET] = ACTIONS(84), - [anon_sym_LBRACE_TILDE] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(87), - [anon_sym_LBRACK_CARET] = ACTIONS(95), - [anon_sym_RBRACK] = ACTIONS(98), - [anon_sym_BANG_LBRACK] = ACTIONS(100), - [anon_sym_LBRACK] = ACTIONS(103), - [anon_sym_LBRACE2] = ACTIONS(69), - [anon_sym_DOLLAR] = ACTIONS(106), - [anon_sym_TODO] = ACTIONS(109), - [anon_sym_WIP] = ACTIONS(109), - [anon_sym_NOTE] = ACTIONS(112), - [anon_sym_INFO] = ACTIONS(112), - [anon_sym_XXX] = ACTIONS(112), - [sym_fixme] = ACTIONS(66), - [anon_sym_PIPE] = ACTIONS(66), - [sym__whitespace1] = ACTIONS(115), - [sym__newline] = ACTIONS(118), - [aux_sym__text_token1] = ACTIONS(121), - [sym__verbatim_begin] = ACTIONS(124), - }, - [5] = { - [sym__inline] = STATE(876), - [sym__element] = STATE(103), - [sym_emphasis] = STATE(200), - [sym_emphasis_begin] = STATE(101), - [sym_strong] = STATE(200), - [sym_strong_begin] = STATE(104), - [sym__hard_line_break] = STATE(200), - [sym_hard_line_break] = STATE(200), - [sym__smart_punctuation] = STATE(200), - [sym_autolink] = STATE(200), - [sym_highlighted] = STATE(200), - [sym_insert] = STATE(200), - [sym_delete] = STATE(200), - [sym_superscript] = STATE(200), - [sym_subscript] = STATE(200), - [sym_footnote_reference] = STATE(200), - [sym__image] = STATE(200), - [sym_full_reference_image] = STATE(200), - [sym_collapsed_reference_image] = STATE(200), - [sym_inline_image] = STATE(200), - [sym__image_description] = STATE(642), - [sym__link] = STATE(200), - [sym_full_reference_link] = STATE(200), - [sym_collapsed_reference_link] = STATE(200), - [sym_inline_link] = STATE(200), - [sym_link_text] = STATE(643), - [sym__comment_with_spaces] = STATE(200), - [sym_span] = STATE(200), - [sym_raw_inline] = STATE(200), - [sym_math] = STATE(200), - [sym_verbatim] = STATE(200), - [sym__todo_highlights] = STATE(200), - [sym_todo] = STATE(200), - [sym_note] = STATE(200), - [sym__symbol_fallback] = STATE(200), - [aux_sym__text] = STATE(138), - [aux_sym__inline_repeat1] = STATE(103), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(51), - [anon_sym__] = ACTIONS(54), - [anon_sym_LBRACE_STAR] = ACTIONS(57), - [anon_sym_STAR] = ACTIONS(60), - [anon_sym_BSLASH] = ACTIONS(63), - [sym_quotation_marks] = ACTIONS(66), - [sym_ellipsis] = ACTIONS(66), - [sym_em_dash] = ACTIONS(66), - [sym_en_dash] = ACTIONS(69), - [sym_backslash_escape] = ACTIONS(69), - [anon_sym_LT] = ACTIONS(72), - [anon_sym_LBRACE_EQ] = ACTIONS(75), - [anon_sym_EQ_RBRACE] = ACTIONS(93), - [anon_sym_LBRACE_PLUS] = ACTIONS(78), - [anon_sym_LBRACE_DASH] = ACTIONS(81), - [sym_symbol] = ACTIONS(66), - [anon_sym_LBRACE_CARET] = ACTIONS(84), - [anon_sym_CARET] = ACTIONS(84), - [anon_sym_LBRACE_TILDE] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(87), - [anon_sym_LBRACK_CARET] = ACTIONS(95), - [anon_sym_RBRACK] = ACTIONS(98), - [anon_sym_BANG_LBRACK] = ACTIONS(100), - [anon_sym_LBRACK] = ACTIONS(103), - [anon_sym_LBRACE2] = ACTIONS(69), - [anon_sym_DOLLAR] = ACTIONS(106), - [anon_sym_TODO] = ACTIONS(109), - [anon_sym_WIP] = ACTIONS(109), - [anon_sym_NOTE] = ACTIONS(112), - [anon_sym_INFO] = ACTIONS(112), - [anon_sym_XXX] = ACTIONS(112), - [sym_fixme] = ACTIONS(66), - [anon_sym_PIPE] = ACTIONS(66), - [sym__whitespace1] = ACTIONS(115), - [sym__newline] = ACTIONS(118), - [aux_sym__text_token1] = ACTIONS(121), - [sym__verbatim_begin] = ACTIONS(124), - }, - [6] = { - [sym__inline] = STATE(876), - [sym__element] = STATE(103), - [sym_emphasis] = STATE(200), - [sym_emphasis_begin] = STATE(101), - [sym_strong] = STATE(200), - [sym_strong_begin] = STATE(104), - [sym__hard_line_break] = STATE(200), - [sym_hard_line_break] = STATE(200), - [sym__smart_punctuation] = STATE(200), - [sym_autolink] = STATE(200), - [sym_highlighted] = STATE(200), - [sym_insert] = STATE(200), - [sym_delete] = STATE(200), - [sym_superscript] = STATE(200), - [sym_subscript] = STATE(200), - [sym_footnote_reference] = STATE(200), - [sym__image] = STATE(200), - [sym_full_reference_image] = STATE(200), - [sym_collapsed_reference_image] = STATE(200), - [sym_inline_image] = STATE(200), - [sym__image_description] = STATE(642), - [sym__link] = STATE(200), - [sym_full_reference_link] = STATE(200), - [sym_collapsed_reference_link] = STATE(200), - [sym_inline_link] = STATE(200), - [sym_link_text] = STATE(643), - [sym__comment_with_spaces] = STATE(200), - [sym_span] = STATE(200), - [sym_raw_inline] = STATE(200), - [sym_math] = STATE(200), - [sym_verbatim] = STATE(200), - [sym__todo_highlights] = STATE(200), - [sym_todo] = STATE(200), - [sym_note] = STATE(200), - [sym__symbol_fallback] = STATE(200), - [aux_sym__text] = STATE(138), - [aux_sym__inline_repeat1] = STATE(103), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(51), - [anon_sym__] = ACTIONS(54), - [anon_sym_LBRACE_STAR] = ACTIONS(57), - [anon_sym_STAR] = ACTIONS(60), - [anon_sym_BSLASH] = ACTIONS(63), - [sym_quotation_marks] = ACTIONS(66), - [sym_ellipsis] = ACTIONS(66), - [sym_em_dash] = ACTIONS(66), - [sym_en_dash] = ACTIONS(69), - [sym_backslash_escape] = ACTIONS(69), - [anon_sym_LT] = ACTIONS(72), - [anon_sym_LBRACE_EQ] = ACTIONS(75), - [anon_sym_LBRACE_PLUS] = ACTIONS(78), - [anon_sym_LBRACE_DASH] = ACTIONS(81), - [sym_symbol] = ACTIONS(66), - [anon_sym_LBRACE_CARET] = ACTIONS(84), - [anon_sym_CARET] = ACTIONS(84), - [anon_sym_LBRACE_TILDE] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(87), - [anon_sym_LBRACK_CARET] = ACTIONS(95), - [anon_sym_RBRACK] = ACTIONS(133), - [anon_sym_BANG_LBRACK] = ACTIONS(100), - [anon_sym_LBRACK] = ACTIONS(103), - [anon_sym_RBRACK2] = ACTIONS(93), - [anon_sym_LBRACE2] = ACTIONS(69), - [anon_sym_DOLLAR] = ACTIONS(106), - [anon_sym_TODO] = ACTIONS(109), - [anon_sym_WIP] = ACTIONS(109), - [anon_sym_NOTE] = ACTIONS(112), - [anon_sym_INFO] = ACTIONS(112), - [anon_sym_XXX] = ACTIONS(112), - [sym_fixme] = ACTIONS(66), - [anon_sym_PIPE] = ACTIONS(66), - [sym__whitespace1] = ACTIONS(115), - [sym__newline] = ACTIONS(118), - [aux_sym__text_token1] = ACTIONS(121), - [sym__verbatim_begin] = ACTIONS(124), - }, - [7] = { - [sym__inline] = STATE(876), - [sym__element] = STATE(103), - [sym_emphasis] = STATE(200), - [sym_emphasis_begin] = STATE(101), - [sym_strong] = STATE(200), - [sym_strong_begin] = STATE(104), - [sym__hard_line_break] = STATE(200), - [sym_hard_line_break] = STATE(200), - [sym__smart_punctuation] = STATE(200), - [sym_autolink] = STATE(200), - [sym_highlighted] = STATE(200), - [sym_insert] = STATE(200), - [sym_delete] = STATE(200), - [sym_superscript] = STATE(200), - [sym_subscript] = STATE(200), - [sym_footnote_reference] = STATE(200), - [sym__image] = STATE(200), - [sym_full_reference_image] = STATE(200), - [sym_collapsed_reference_image] = STATE(200), - [sym_inline_image] = STATE(200), - [sym__image_description] = STATE(642), - [sym__link] = STATE(200), - [sym_full_reference_link] = STATE(200), - [sym_collapsed_reference_link] = STATE(200), - [sym_inline_link] = STATE(200), - [sym_link_text] = STATE(643), - [sym__comment_with_spaces] = STATE(200), - [sym_span] = STATE(200), - [sym_raw_inline] = STATE(200), - [sym_math] = STATE(200), - [sym_verbatim] = STATE(200), - [sym__todo_highlights] = STATE(200), - [sym_todo] = STATE(200), - [sym_note] = STATE(200), - [sym__symbol_fallback] = STATE(200), - [aux_sym__text] = STATE(138), - [aux_sym__inline_repeat1] = STATE(103), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(51), - [anon_sym__] = ACTIONS(54), - [anon_sym_LBRACE_STAR] = ACTIONS(57), - [anon_sym_STAR] = ACTIONS(60), - [anon_sym_BSLASH] = ACTIONS(63), - [sym_quotation_marks] = ACTIONS(66), - [sym_ellipsis] = ACTIONS(66), - [sym_em_dash] = ACTIONS(66), - [sym_en_dash] = ACTIONS(69), - [sym_backslash_escape] = ACTIONS(69), - [anon_sym_LT] = ACTIONS(72), - [anon_sym_LBRACE_EQ] = ACTIONS(75), - [anon_sym_LBRACE_PLUS] = ACTIONS(78), - [anon_sym_LBRACE_DASH] = ACTIONS(81), - [sym_symbol] = ACTIONS(66), - [anon_sym_LBRACE_CARET] = ACTIONS(84), - [anon_sym_CARET] = ACTIONS(135), - [anon_sym_CARET_RBRACE] = ACTIONS(93), - [anon_sym_LBRACE_TILDE] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(87), - [anon_sym_LBRACK_CARET] = ACTIONS(95), - [anon_sym_RBRACK] = ACTIONS(98), - [anon_sym_BANG_LBRACK] = ACTIONS(100), - [anon_sym_LBRACK] = ACTIONS(103), - [anon_sym_LBRACE2] = ACTIONS(69), - [anon_sym_DOLLAR] = ACTIONS(106), - [anon_sym_TODO] = ACTIONS(109), - [anon_sym_WIP] = ACTIONS(109), - [anon_sym_NOTE] = ACTIONS(112), - [anon_sym_INFO] = ACTIONS(112), - [anon_sym_XXX] = ACTIONS(112), - [sym_fixme] = ACTIONS(66), - [anon_sym_PIPE] = ACTIONS(66), - [sym__whitespace1] = ACTIONS(115), - [sym__newline] = ACTIONS(118), - [aux_sym__text_token1] = ACTIONS(121), - [sym__verbatim_begin] = ACTIONS(124), - }, - [8] = { - [sym__inline] = STATE(876), - [sym__element] = STATE(103), - [sym_emphasis] = STATE(200), - [sym_emphasis_begin] = STATE(101), - [sym_strong] = STATE(200), - [sym_strong_begin] = STATE(104), - [sym__hard_line_break] = STATE(200), - [sym_hard_line_break] = STATE(200), - [sym__smart_punctuation] = STATE(200), - [sym_autolink] = STATE(200), - [sym_highlighted] = STATE(200), - [sym_insert] = STATE(200), - [sym_delete] = STATE(200), - [sym_superscript] = STATE(200), - [sym_subscript] = STATE(200), - [sym_footnote_reference] = STATE(200), - [sym__image] = STATE(200), - [sym_full_reference_image] = STATE(200), - [sym_collapsed_reference_image] = STATE(200), - [sym_inline_image] = STATE(200), - [sym__image_description] = STATE(642), - [sym__link] = STATE(200), - [sym_full_reference_link] = STATE(200), - [sym_collapsed_reference_link] = STATE(200), - [sym_inline_link] = STATE(200), - [sym_link_text] = STATE(643), - [sym__comment_with_spaces] = STATE(200), - [sym_span] = STATE(200), - [sym_raw_inline] = STATE(200), - [sym_math] = STATE(200), - [sym_verbatim] = STATE(200), - [sym__todo_highlights] = STATE(200), - [sym_todo] = STATE(200), - [sym_note] = STATE(200), - [sym__symbol_fallback] = STATE(200), - [aux_sym__text] = STATE(138), - [aux_sym__inline_repeat1] = STATE(103), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(51), - [anon_sym__] = ACTIONS(138), - [aux_sym_emphasis_end_token1] = ACTIONS(93), - [anon_sym_LBRACE_STAR] = ACTIONS(57), - [anon_sym_STAR] = ACTIONS(60), - [anon_sym_BSLASH] = ACTIONS(63), - [sym_quotation_marks] = ACTIONS(66), - [sym_ellipsis] = ACTIONS(66), - [sym_em_dash] = ACTIONS(66), - [sym_en_dash] = ACTIONS(69), - [sym_backslash_escape] = ACTIONS(69), - [anon_sym_LT] = ACTIONS(72), - [anon_sym_LBRACE_EQ] = ACTIONS(75), - [anon_sym_LBRACE_PLUS] = ACTIONS(78), - [anon_sym_LBRACE_DASH] = ACTIONS(81), - [sym_symbol] = ACTIONS(66), - [anon_sym_LBRACE_CARET] = ACTIONS(84), - [anon_sym_CARET] = ACTIONS(84), - [anon_sym_LBRACE_TILDE] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(87), - [anon_sym_LBRACK_CARET] = ACTIONS(95), - [anon_sym_RBRACK] = ACTIONS(98), - [anon_sym_BANG_LBRACK] = ACTIONS(100), - [anon_sym_LBRACK] = ACTIONS(103), - [anon_sym_LBRACE2] = ACTIONS(69), - [anon_sym_DOLLAR] = ACTIONS(106), - [anon_sym_TODO] = ACTIONS(109), - [anon_sym_WIP] = ACTIONS(109), - [anon_sym_NOTE] = ACTIONS(112), - [anon_sym_INFO] = ACTIONS(112), - [anon_sym_XXX] = ACTIONS(112), - [sym_fixme] = ACTIONS(66), - [anon_sym_PIPE] = ACTIONS(66), - [sym__whitespace1] = ACTIONS(130), - [sym__newline] = ACTIONS(118), - [aux_sym__text_token1] = ACTIONS(121), - [sym__verbatim_begin] = ACTIONS(124), - }, - [9] = { - [sym__inline] = STATE(876), - [sym__element] = STATE(103), - [sym_emphasis] = STATE(200), - [sym_emphasis_begin] = STATE(101), - [sym_strong] = STATE(200), - [sym_strong_begin] = STATE(104), - [sym__hard_line_break] = STATE(200), - [sym_hard_line_break] = STATE(200), - [sym__smart_punctuation] = STATE(200), - [sym_autolink] = STATE(200), - [sym_highlighted] = STATE(200), - [sym_insert] = STATE(200), - [sym_delete] = STATE(200), - [sym_superscript] = STATE(200), - [sym_subscript] = STATE(200), - [sym_footnote_reference] = STATE(200), - [sym__image] = STATE(200), - [sym_full_reference_image] = STATE(200), - [sym_collapsed_reference_image] = STATE(200), - [sym_inline_image] = STATE(200), - [sym__image_description] = STATE(642), - [sym__link] = STATE(200), - [sym_full_reference_link] = STATE(200), - [sym_collapsed_reference_link] = STATE(200), - [sym_inline_link] = STATE(200), - [sym_link_text] = STATE(643), - [sym__comment_with_spaces] = STATE(200), - [sym_span] = STATE(200), - [sym_raw_inline] = STATE(200), - [sym_math] = STATE(200), - [sym_verbatim] = STATE(200), - [sym__todo_highlights] = STATE(200), - [sym_todo] = STATE(200), - [sym_note] = STATE(200), - [sym__symbol_fallback] = STATE(200), - [aux_sym__text] = STATE(138), - [aux_sym__inline_repeat1] = STATE(103), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(51), - [anon_sym__] = ACTIONS(54), - [anon_sym_LBRACE_STAR] = ACTIONS(57), - [anon_sym_STAR] = ACTIONS(60), - [anon_sym_BSLASH] = ACTIONS(63), - [sym_quotation_marks] = ACTIONS(66), - [sym_ellipsis] = ACTIONS(66), - [sym_em_dash] = ACTIONS(66), - [sym_en_dash] = ACTIONS(69), - [sym_backslash_escape] = ACTIONS(69), - [anon_sym_LT] = ACTIONS(72), - [anon_sym_LBRACE_EQ] = ACTIONS(75), - [anon_sym_LBRACE_PLUS] = ACTIONS(78), - [anon_sym_LBRACE_DASH] = ACTIONS(81), - [anon_sym_DASH_RBRACE] = ACTIONS(93), - [sym_symbol] = ACTIONS(66), - [anon_sym_LBRACE_CARET] = ACTIONS(84), - [anon_sym_CARET] = ACTIONS(84), - [anon_sym_LBRACE_TILDE] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(87), - [anon_sym_LBRACK_CARET] = ACTIONS(95), - [anon_sym_RBRACK] = ACTIONS(98), - [anon_sym_BANG_LBRACK] = ACTIONS(100), - [anon_sym_LBRACK] = ACTIONS(103), - [anon_sym_LBRACE2] = ACTIONS(69), - [anon_sym_DOLLAR] = ACTIONS(106), - [anon_sym_TODO] = ACTIONS(109), - [anon_sym_WIP] = ACTIONS(109), - [anon_sym_NOTE] = ACTIONS(112), - [anon_sym_INFO] = ACTIONS(112), - [anon_sym_XXX] = ACTIONS(112), - [sym_fixme] = ACTIONS(66), - [anon_sym_PIPE] = ACTIONS(66), - [sym__whitespace1] = ACTIONS(115), - [sym__newline] = ACTIONS(118), - [aux_sym__text_token1] = ACTIONS(121), - [sym__verbatim_begin] = ACTIONS(124), - }, - [10] = { - [sym__inline] = STATE(876), - [sym__element] = STATE(103), - [sym_emphasis] = STATE(200), - [sym_emphasis_begin] = STATE(101), - [sym_strong] = STATE(200), - [sym_strong_begin] = STATE(104), - [sym__hard_line_break] = STATE(200), - [sym_hard_line_break] = STATE(200), - [sym__smart_punctuation] = STATE(200), - [sym_autolink] = STATE(200), - [sym_highlighted] = STATE(200), - [sym_insert] = STATE(200), - [sym_delete] = STATE(200), - [sym_superscript] = STATE(200), - [sym_subscript] = STATE(200), - [sym_footnote_reference] = STATE(200), - [sym__image] = STATE(200), - [sym_full_reference_image] = STATE(200), - [sym_collapsed_reference_image] = STATE(200), - [sym_inline_image] = STATE(200), - [sym__image_description] = STATE(642), - [sym__link] = STATE(200), - [sym_full_reference_link] = STATE(200), - [sym_collapsed_reference_link] = STATE(200), - [sym_inline_link] = STATE(200), - [sym_link_text] = STATE(643), - [sym__comment_with_spaces] = STATE(200), - [sym_span] = STATE(200), - [sym_raw_inline] = STATE(200), - [sym_math] = STATE(200), - [sym_verbatim] = STATE(200), - [sym__todo_highlights] = STATE(200), - [sym_todo] = STATE(200), - [sym_note] = STATE(200), - [sym__symbol_fallback] = STATE(200), - [aux_sym__text] = STATE(138), - [aux_sym__inline_repeat1] = STATE(103), - [ts_builtin_sym_end] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(51), - [anon_sym__] = ACTIONS(54), - [anon_sym_LBRACE_STAR] = ACTIONS(57), - [anon_sym_STAR] = ACTIONS(60), - [anon_sym_BSLASH] = ACTIONS(63), - [sym_quotation_marks] = ACTIONS(66), - [sym_ellipsis] = ACTIONS(66), - [sym_em_dash] = ACTIONS(66), - [sym_en_dash] = ACTIONS(69), - [sym_backslash_escape] = ACTIONS(69), - [anon_sym_LT] = ACTIONS(72), - [anon_sym_LBRACE_EQ] = ACTIONS(75), - [anon_sym_LBRACE_PLUS] = ACTIONS(78), - [anon_sym_LBRACE_DASH] = ACTIONS(81), - [sym_symbol] = ACTIONS(66), - [anon_sym_LBRACE_CARET] = ACTIONS(84), - [anon_sym_CARET] = ACTIONS(84), - [anon_sym_LBRACE_TILDE] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(87), - [anon_sym_LBRACK_CARET] = ACTIONS(95), - [anon_sym_RBRACK] = ACTIONS(98), - [anon_sym_BANG_LBRACK] = ACTIONS(100), - [anon_sym_LBRACK] = ACTIONS(103), - [anon_sym_LBRACE2] = ACTIONS(69), - [anon_sym_DOLLAR] = ACTIONS(106), - [anon_sym_TODO] = ACTIONS(109), - [anon_sym_WIP] = ACTIONS(109), - [anon_sym_NOTE] = ACTIONS(112), - [anon_sym_INFO] = ACTIONS(112), - [anon_sym_XXX] = ACTIONS(112), - [sym_fixme] = ACTIONS(66), - [anon_sym_PIPE] = ACTIONS(66), - [sym__whitespace1] = ACTIONS(115), - [sym__newline] = ACTIONS(118), - [aux_sym__text_token1] = ACTIONS(121), - [sym__verbatim_begin] = ACTIONS(124), - }, - [11] = { - [sym__inline] = STATE(707), - [sym__element] = STATE(120), + [sym__inline] = STATE(722), + [sym__element] = STATE(97), [sym_emphasis] = STATE(182), - [sym_emphasis_begin] = STATE(97), + [sym_emphasis_begin] = STATE(898), [sym_strong] = STATE(182), - [sym_strong_begin] = STATE(99), + [sym_strong_begin] = STATE(104), [sym__hard_line_break] = STATE(182), [sym_hard_line_break] = STATE(182), [sym__smart_punctuation] = STATE(182), @@ -8874,12 +7805,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_full_reference_image] = STATE(182), [sym_collapsed_reference_image] = STATE(182), [sym_inline_image] = STATE(182), - [sym__image_description] = STATE(628), + [sym__image_description] = STATE(610), [sym__link] = STATE(182), [sym_full_reference_link] = STATE(182), [sym_collapsed_reference_link] = STATE(182), [sym_inline_link] = STATE(182), - [sym_link_text] = STATE(627), + [sym_link_text] = STATE(608), [sym__comment_with_spaces] = STATE(182), [sym_span] = STATE(182), [sym_raw_inline] = STATE(182), @@ -8889,433 +7820,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(182), [sym_note] = STATE(182), [sym__symbol_fallback] = STATE(182), - [aux_sym__text] = STATE(136), - [aux_sym__inline_repeat1] = STATE(120), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(141), - [anon_sym__] = ACTIONS(144), - [aux_sym_emphasis_end_token1] = ACTIONS(93), - [anon_sym_LBRACE_STAR] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(150), - [anon_sym_BSLASH] = ACTIONS(153), - [sym_quotation_marks] = ACTIONS(156), - [sym_ellipsis] = ACTIONS(156), - [sym_em_dash] = ACTIONS(156), - [sym_en_dash] = ACTIONS(159), - [sym_backslash_escape] = ACTIONS(159), - [anon_sym_LT] = ACTIONS(162), - [anon_sym_LBRACE_EQ] = ACTIONS(165), - [anon_sym_LBRACE_PLUS] = ACTIONS(168), - [anon_sym_LBRACE_DASH] = ACTIONS(171), - [sym_symbol] = ACTIONS(156), - [anon_sym_LBRACE_CARET] = ACTIONS(174), - [anon_sym_CARET] = ACTIONS(174), - [anon_sym_LBRACE_TILDE] = ACTIONS(177), - [anon_sym_TILDE] = ACTIONS(177), - [anon_sym_LBRACK_CARET] = ACTIONS(180), - [anon_sym_BANG_LBRACK] = ACTIONS(183), - [anon_sym_LBRACK] = ACTIONS(186), - [anon_sym_LBRACE2] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(189), - [anon_sym_TODO] = ACTIONS(192), - [anon_sym_WIP] = ACTIONS(192), - [anon_sym_NOTE] = ACTIONS(195), - [anon_sym_INFO] = ACTIONS(195), - [anon_sym_XXX] = ACTIONS(195), - [sym_fixme] = ACTIONS(156), - [anon_sym_PIPE] = ACTIONS(156), - [sym__whitespace1] = ACTIONS(198), - [sym__newline] = ACTIONS(201), - [aux_sym__text_token1] = ACTIONS(204), - [sym__verbatim_begin] = ACTIONS(207), - }, - [12] = { - [sym__inline] = STATE(803), - [sym__element] = STATE(116), - [sym_emphasis] = STATE(183), - [sym_emphasis_begin] = STATE(91), - [sym_strong] = STATE(183), - [sym_strong_begin] = STATE(92), - [sym__hard_line_break] = STATE(183), - [sym_hard_line_break] = STATE(183), - [sym__smart_punctuation] = STATE(183), - [sym_autolink] = STATE(183), - [sym_highlighted] = STATE(183), - [sym_insert] = STATE(183), - [sym_delete] = STATE(183), - [sym_superscript] = STATE(183), - [sym_subscript] = STATE(183), - [sym_footnote_reference] = STATE(183), - [sym__image] = STATE(183), - [sym_full_reference_image] = STATE(183), - [sym_collapsed_reference_image] = STATE(183), - [sym_inline_image] = STATE(183), - [sym__image_description] = STATE(645), - [sym__link] = STATE(183), - [sym_full_reference_link] = STATE(183), - [sym_collapsed_reference_link] = STATE(183), - [sym_inline_link] = STATE(183), - [sym_link_text] = STATE(646), - [sym__comment_with_spaces] = STATE(183), - [sym_span] = STATE(183), - [sym_raw_inline] = STATE(183), - [sym_math] = STATE(183), - [sym_verbatim] = STATE(183), - [sym__todo_highlights] = STATE(183), - [sym_todo] = STATE(183), - [sym_note] = STATE(183), - [sym__symbol_fallback] = STATE(183), - [aux_sym__text] = STATE(149), - [aux_sym__inline_repeat1] = STATE(116), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(210), - [anon_sym__] = ACTIONS(213), - [anon_sym_LBRACE_STAR] = ACTIONS(216), - [anon_sym_STAR] = ACTIONS(219), - [anon_sym_BSLASH] = ACTIONS(222), - [sym_quotation_marks] = ACTIONS(225), - [sym_ellipsis] = ACTIONS(225), - [sym_em_dash] = ACTIONS(225), - [sym_en_dash] = ACTIONS(228), - [sym_backslash_escape] = ACTIONS(228), - [anon_sym_LT] = ACTIONS(231), - [anon_sym_LBRACE_EQ] = ACTIONS(234), - [anon_sym_EQ_RBRACE] = ACTIONS(93), - [anon_sym_LBRACE_PLUS] = ACTIONS(237), - [anon_sym_LBRACE_DASH] = ACTIONS(240), - [sym_symbol] = ACTIONS(225), - [anon_sym_LBRACE_CARET] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(243), - [anon_sym_LBRACE_TILDE] = ACTIONS(246), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_LBRACK_CARET] = ACTIONS(249), - [anon_sym_BANG_LBRACK] = ACTIONS(252), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_LBRACE2] = ACTIONS(228), - [anon_sym_DOLLAR] = ACTIONS(258), - [anon_sym_TODO] = ACTIONS(261), - [anon_sym_WIP] = ACTIONS(261), - [anon_sym_NOTE] = ACTIONS(264), - [anon_sym_INFO] = ACTIONS(264), - [anon_sym_XXX] = ACTIONS(264), - [sym_fixme] = ACTIONS(225), - [anon_sym_PIPE] = ACTIONS(225), - [sym__whitespace1] = ACTIONS(267), - [sym__newline] = ACTIONS(270), - [aux_sym__text_token1] = ACTIONS(273), - [sym__verbatim_begin] = ACTIONS(276), - }, - [13] = { - [sym__inline] = STATE(835), - [sym__element] = STATE(119), - [sym_emphasis] = STATE(197), - [sym_emphasis_begin] = STATE(81), - [sym_strong] = STATE(197), - [sym_strong_begin] = STATE(82), - [sym__hard_line_break] = STATE(197), - [sym_hard_line_break] = STATE(197), - [sym__smart_punctuation] = STATE(197), - [sym_autolink] = STATE(197), - [sym_highlighted] = STATE(197), - [sym_insert] = STATE(197), - [sym_delete] = STATE(197), - [sym_superscript] = STATE(197), - [sym_subscript] = STATE(197), - [sym_footnote_reference] = STATE(197), - [sym__image] = STATE(197), - [sym_full_reference_image] = STATE(197), - [sym_collapsed_reference_image] = STATE(197), - [sym_inline_image] = STATE(197), - [sym__image_description] = STATE(654), - [sym__link] = STATE(197), - [sym_full_reference_link] = STATE(197), - [sym_collapsed_reference_link] = STATE(197), - [sym_inline_link] = STATE(197), - [sym_link_text] = STATE(651), - [sym__comment_with_spaces] = STATE(197), - [sym_span] = STATE(197), - [sym_raw_inline] = STATE(197), - [sym_math] = STATE(197), - [sym_verbatim] = STATE(197), - [sym__todo_highlights] = STATE(197), - [sym_todo] = STATE(197), - [sym_note] = STATE(197), - [sym__symbol_fallback] = STATE(197), - [aux_sym__text] = STATE(132), - [aux_sym__inline_repeat1] = STATE(119), - [ts_builtin_sym_end] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(279), - [anon_sym__] = ACTIONS(282), - [anon_sym_LBRACE_STAR] = ACTIONS(285), - [anon_sym_STAR] = ACTIONS(288), - [anon_sym_BSLASH] = ACTIONS(291), - [sym_quotation_marks] = ACTIONS(294), - [sym_ellipsis] = ACTIONS(294), - [sym_em_dash] = ACTIONS(294), - [sym_en_dash] = ACTIONS(297), - [sym_backslash_escape] = ACTIONS(297), - [anon_sym_LT] = ACTIONS(300), - [anon_sym_LBRACE_EQ] = ACTIONS(303), - [anon_sym_LBRACE_PLUS] = ACTIONS(306), - [anon_sym_LBRACE_DASH] = ACTIONS(309), - [sym_symbol] = ACTIONS(294), - [anon_sym_LBRACE_CARET] = ACTIONS(312), - [anon_sym_CARET] = ACTIONS(312), - [anon_sym_LBRACE_TILDE] = ACTIONS(315), - [anon_sym_TILDE] = ACTIONS(315), - [anon_sym_LBRACK_CARET] = ACTIONS(318), - [anon_sym_BANG_LBRACK] = ACTIONS(321), - [anon_sym_LBRACK] = ACTIONS(324), - [anon_sym_LBRACE2] = ACTIONS(297), - [anon_sym_DOLLAR] = ACTIONS(327), - [anon_sym_TODO] = ACTIONS(330), - [anon_sym_WIP] = ACTIONS(330), - [anon_sym_NOTE] = ACTIONS(333), - [anon_sym_INFO] = ACTIONS(333), - [anon_sym_XXX] = ACTIONS(333), - [sym_fixme] = ACTIONS(294), - [anon_sym_PIPE] = ACTIONS(294), - [sym__whitespace1] = ACTIONS(336), - [sym__newline] = ACTIONS(339), - [aux_sym__text_token1] = ACTIONS(342), - [sym__verbatim_begin] = ACTIONS(345), - }, - [14] = { - [sym__inline] = STATE(831), - [sym__element] = STATE(77), - [sym_emphasis] = STATE(174), - [sym_emphasis_begin] = STATE(86), - [sym_strong] = STATE(174), - [sym_strong_begin] = STATE(89), - [sym__hard_line_break] = STATE(174), - [sym_hard_line_break] = STATE(174), - [sym__smart_punctuation] = STATE(174), - [sym_autolink] = STATE(174), - [sym_highlighted] = STATE(174), - [sym_insert] = STATE(174), - [sym_delete] = STATE(174), - [sym_superscript] = STATE(174), - [sym_subscript] = STATE(174), - [sym_footnote_reference] = STATE(174), - [sym__image] = STATE(174), - [sym_full_reference_image] = STATE(174), - [sym_collapsed_reference_image] = STATE(174), - [sym_inline_image] = STATE(174), - [sym__image_description] = STATE(630), - [sym__link] = STATE(174), - [sym_full_reference_link] = STATE(174), - [sym_collapsed_reference_link] = STATE(174), - [sym_inline_link] = STATE(174), - [sym_link_text] = STATE(631), - [sym__comment_with_spaces] = STATE(174), - [sym_span] = STATE(174), - [sym_raw_inline] = STATE(174), - [sym_math] = STATE(174), - [sym_verbatim] = STATE(174), - [sym__todo_highlights] = STATE(174), - [sym_todo] = STATE(174), - [sym_note] = STATE(174), - [sym__symbol_fallback] = STATE(174), - [aux_sym__text] = STATE(148), - [aux_sym__inline_repeat1] = STATE(77), - [ts_builtin_sym_end] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(348), - [anon_sym__] = ACTIONS(351), - [anon_sym_LBRACE_STAR] = ACTIONS(354), - [anon_sym_STAR] = ACTIONS(357), - [anon_sym_BSLASH] = ACTIONS(360), - [sym_quotation_marks] = ACTIONS(363), - [sym_ellipsis] = ACTIONS(363), - [sym_em_dash] = ACTIONS(363), - [sym_en_dash] = ACTIONS(366), - [sym_backslash_escape] = ACTIONS(366), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_LBRACE_EQ] = ACTIONS(372), - [anon_sym_LBRACE_PLUS] = ACTIONS(375), - [anon_sym_LBRACE_DASH] = ACTIONS(378), - [sym_symbol] = ACTIONS(363), - [anon_sym_LBRACE_CARET] = ACTIONS(381), - [anon_sym_CARET] = ACTIONS(381), - [anon_sym_LBRACE_TILDE] = ACTIONS(384), - [anon_sym_TILDE] = ACTIONS(384), - [anon_sym_LBRACK_CARET] = ACTIONS(387), - [anon_sym_BANG_LBRACK] = ACTIONS(390), - [anon_sym_LBRACK] = ACTIONS(393), - [anon_sym_LBRACE2] = ACTIONS(366), - [anon_sym_DOLLAR] = ACTIONS(396), - [anon_sym_TODO] = ACTIONS(399), - [anon_sym_WIP] = ACTIONS(399), - [anon_sym_NOTE] = ACTIONS(402), - [anon_sym_INFO] = ACTIONS(402), - [anon_sym_XXX] = ACTIONS(402), - [sym_fixme] = ACTIONS(363), - [anon_sym_PIPE] = ACTIONS(363), - [sym__whitespace1] = ACTIONS(405), - [sym__newline] = ACTIONS(408), - [aux_sym__text_token1] = ACTIONS(411), - [sym__verbatim_begin] = ACTIONS(414), - }, - [15] = { - [sym__inline] = STATE(830), - [sym__element] = STATE(116), - [sym_emphasis] = STATE(183), - [sym_emphasis_begin] = STATE(91), - [sym_strong] = STATE(183), - [sym_strong_begin] = STATE(92), - [sym__hard_line_break] = STATE(183), - [sym_hard_line_break] = STATE(183), - [sym__smart_punctuation] = STATE(183), - [sym_autolink] = STATE(183), - [sym_highlighted] = STATE(183), - [sym_insert] = STATE(183), - [sym_delete] = STATE(183), - [sym_superscript] = STATE(183), - [sym_subscript] = STATE(183), - [sym_footnote_reference] = STATE(183), - [sym__image] = STATE(183), - [sym_full_reference_image] = STATE(183), - [sym_collapsed_reference_image] = STATE(183), - [sym_inline_image] = STATE(183), - [sym__image_description] = STATE(645), - [sym__link] = STATE(183), - [sym_full_reference_link] = STATE(183), - [sym_collapsed_reference_link] = STATE(183), - [sym_inline_link] = STATE(183), - [sym_link_text] = STATE(646), - [sym__comment_with_spaces] = STATE(183), - [sym_span] = STATE(183), - [sym_raw_inline] = STATE(183), - [sym_math] = STATE(183), - [sym_verbatim] = STATE(183), - [sym__todo_highlights] = STATE(183), - [sym_todo] = STATE(183), - [sym_note] = STATE(183), - [sym__symbol_fallback] = STATE(183), - [aux_sym__text] = STATE(149), - [aux_sym__inline_repeat1] = STATE(116), - [ts_builtin_sym_end] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(210), - [anon_sym__] = ACTIONS(213), - [anon_sym_LBRACE_STAR] = ACTIONS(216), - [anon_sym_STAR] = ACTIONS(219), - [anon_sym_BSLASH] = ACTIONS(222), - [sym_quotation_marks] = ACTIONS(225), - [sym_ellipsis] = ACTIONS(225), - [sym_em_dash] = ACTIONS(225), - [sym_en_dash] = ACTIONS(228), - [sym_backslash_escape] = ACTIONS(228), - [anon_sym_LT] = ACTIONS(231), - [anon_sym_LBRACE_EQ] = ACTIONS(234), - [anon_sym_LBRACE_PLUS] = ACTIONS(237), - [anon_sym_LBRACE_DASH] = ACTIONS(240), - [sym_symbol] = ACTIONS(225), - [anon_sym_LBRACE_CARET] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(243), - [anon_sym_LBRACE_TILDE] = ACTIONS(246), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_LBRACK_CARET] = ACTIONS(249), - [anon_sym_BANG_LBRACK] = ACTIONS(252), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_LBRACE2] = ACTIONS(228), - [anon_sym_DOLLAR] = ACTIONS(258), - [anon_sym_TODO] = ACTIONS(261), - [anon_sym_WIP] = ACTIONS(261), - [anon_sym_NOTE] = ACTIONS(264), - [anon_sym_INFO] = ACTIONS(264), - [anon_sym_XXX] = ACTIONS(264), - [sym_fixme] = ACTIONS(225), - [anon_sym_PIPE] = ACTIONS(225), - [sym__whitespace1] = ACTIONS(267), - [sym__newline] = ACTIONS(270), - [aux_sym__text_token1] = ACTIONS(273), - [sym__verbatim_begin] = ACTIONS(276), - }, - [16] = { - [sym__inline] = STATE(697), - [sym__element] = STATE(85), - [sym_emphasis] = STATE(175), - [sym_emphasis_begin] = STATE(94), - [sym_strong] = STATE(175), - [sym_strong_begin] = STATE(95), - [sym__hard_line_break] = STATE(175), - [sym_hard_line_break] = STATE(175), - [sym__smart_punctuation] = STATE(175), - [sym_autolink] = STATE(175), - [sym_highlighted] = STATE(175), - [sym_insert] = STATE(175), - [sym_delete] = STATE(175), - [sym_superscript] = STATE(175), - [sym_subscript] = STATE(175), - [sym_footnote_reference] = STATE(175), - [sym__image] = STATE(175), - [sym_full_reference_image] = STATE(175), - [sym_collapsed_reference_image] = STATE(175), - [sym_inline_image] = STATE(175), - [sym__image_description] = STATE(652), - [sym__link] = STATE(175), - [sym_full_reference_link] = STATE(175), - [sym_collapsed_reference_link] = STATE(175), - [sym_inline_link] = STATE(175), - [sym_link_text] = STATE(649), - [sym__comment_with_spaces] = STATE(175), - [sym_span] = STATE(175), - [sym_raw_inline] = STATE(175), - [sym_math] = STATE(175), - [sym_verbatim] = STATE(175), - [sym__todo_highlights] = STATE(175), - [sym_todo] = STATE(175), - [sym_note] = STATE(175), - [sym__symbol_fallback] = STATE(175), - [aux_sym__text] = STATE(156), - [aux_sym__inline_repeat1] = STATE(85), - [ts_builtin_sym_end] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(417), - [anon_sym__] = ACTIONS(420), - [anon_sym_LBRACE_STAR] = ACTIONS(423), - [anon_sym_STAR] = ACTIONS(426), - [anon_sym_BSLASH] = ACTIONS(429), - [sym_quotation_marks] = ACTIONS(432), - [sym_ellipsis] = ACTIONS(432), - [sym_em_dash] = ACTIONS(432), - [sym_en_dash] = ACTIONS(435), - [sym_backslash_escape] = ACTIONS(435), - [anon_sym_LT] = ACTIONS(438), - [anon_sym_LBRACE_EQ] = ACTIONS(441), - [anon_sym_LBRACE_PLUS] = ACTIONS(444), - [anon_sym_LBRACE_DASH] = ACTIONS(447), - [sym_symbol] = ACTIONS(432), - [anon_sym_LBRACE_CARET] = ACTIONS(450), - [anon_sym_CARET] = ACTIONS(450), - [anon_sym_LBRACE_TILDE] = ACTIONS(453), - [anon_sym_TILDE] = ACTIONS(453), - [anon_sym_LBRACK_CARET] = ACTIONS(456), - [anon_sym_BANG_LBRACK] = ACTIONS(459), - [anon_sym_LBRACK] = ACTIONS(462), - [anon_sym_LBRACE2] = ACTIONS(435), - [anon_sym_DOLLAR] = ACTIONS(465), - [anon_sym_TODO] = ACTIONS(468), - [anon_sym_WIP] = ACTIONS(468), - [anon_sym_NOTE] = ACTIONS(471), - [anon_sym_INFO] = ACTIONS(471), - [anon_sym_XXX] = ACTIONS(471), - [sym_fixme] = ACTIONS(432), - [anon_sym_PIPE] = ACTIONS(432), - [sym__whitespace1] = ACTIONS(474), - [sym__newline] = ACTIONS(477), - [aux_sym__text_token1] = ACTIONS(480), - [sym__verbatim_begin] = ACTIONS(483), + [aux_sym__text] = STATE(144), + [aux_sym__inline_repeat1] = STATE(97), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_] = ACTIONS(49), + [anon_sym__] = ACTIONS(52), + [anon_sym_LBRACE_STAR] = ACTIONS(55), + [anon_sym_STAR] = ACTIONS(58), + [anon_sym_BSLASH] = ACTIONS(61), + [sym_quotation_marks] = ACTIONS(52), + [sym_ellipsis] = ACTIONS(52), + [sym_em_dash] = ACTIONS(52), + [sym_en_dash] = ACTIONS(64), + [sym_backslash_escape] = ACTIONS(64), + [anon_sym_LT] = ACTIONS(67), + [anon_sym_LBRACE_EQ] = ACTIONS(70), + [anon_sym_LBRACE_PLUS] = ACTIONS(73), + [anon_sym_LBRACE_DASH] = ACTIONS(76), + [anon_sym_DASH_RBRACE] = ACTIONS(79), + [sym_symbol] = ACTIONS(52), + [anon_sym_LBRACE_CARET] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_LBRACE_TILDE] = ACTIONS(84), + [anon_sym_TILDE] = ACTIONS(84), + [anon_sym_LBRACK_CARET] = ACTIONS(87), + [anon_sym_RBRACK] = ACTIONS(90), + [anon_sym_BANG_LBRACK] = ACTIONS(92), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACE2] = ACTIONS(64), + [anon_sym_DOLLAR] = ACTIONS(98), + [anon_sym_TODO] = ACTIONS(101), + [anon_sym_WIP] = ACTIONS(101), + [anon_sym_NOTE] = ACTIONS(104), + [anon_sym_INFO] = ACTIONS(104), + [anon_sym_XXX] = ACTIONS(104), + [sym_fixme] = ACTIONS(52), + [anon_sym_PIPE] = ACTIONS(52), + [sym__whitespace1] = ACTIONS(107), + [sym__newline] = ACTIONS(110), + [aux_sym__text_token1] = ACTIONS(113), + [sym__verbatim_begin] = ACTIONS(116), }, - [17] = { - [sym__inline] = STATE(699), - [sym__element] = STATE(120), + [3] = { + [sym__inline] = STATE(722), + [sym__element] = STATE(97), [sym_emphasis] = STATE(182), - [sym_emphasis_begin] = STATE(97), + [sym_emphasis_begin] = STATE(898), [sym_strong] = STATE(182), - [sym_strong_begin] = STATE(99), + [sym_strong_begin] = STATE(104), [sym__hard_line_break] = STATE(182), [sym_hard_line_break] = STATE(182), [sym__smart_punctuation] = STATE(182), @@ -9330,12 +7882,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_full_reference_image] = STATE(182), [sym_collapsed_reference_image] = STATE(182), [sym_inline_image] = STATE(182), - [sym__image_description] = STATE(628), + [sym__image_description] = STATE(610), [sym__link] = STATE(182), [sym_full_reference_link] = STATE(182), [sym_collapsed_reference_link] = STATE(182), [sym_inline_link] = STATE(182), - [sym_link_text] = STATE(627), + [sym_link_text] = STATE(608), [sym__comment_with_spaces] = STATE(182), [sym_span] = STATE(182), [sym_raw_inline] = STATE(182), @@ -9345,509 +7897,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(182), [sym_note] = STATE(182), [sym__symbol_fallback] = STATE(182), - [aux_sym__text] = STATE(136), - [aux_sym__inline_repeat1] = STATE(120), - [ts_builtin_sym_end] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(141), - [anon_sym__] = ACTIONS(486), - [anon_sym_LBRACE_STAR] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(150), - [anon_sym_BSLASH] = ACTIONS(153), - [sym_quotation_marks] = ACTIONS(156), - [sym_ellipsis] = ACTIONS(156), - [sym_em_dash] = ACTIONS(156), - [sym_en_dash] = ACTIONS(159), - [sym_backslash_escape] = ACTIONS(159), - [anon_sym_LT] = ACTIONS(162), - [anon_sym_LBRACE_EQ] = ACTIONS(165), - [anon_sym_LBRACE_PLUS] = ACTIONS(168), - [anon_sym_LBRACE_DASH] = ACTIONS(171), - [sym_symbol] = ACTIONS(156), - [anon_sym_LBRACE_CARET] = ACTIONS(174), - [anon_sym_CARET] = ACTIONS(174), - [anon_sym_LBRACE_TILDE] = ACTIONS(177), - [anon_sym_TILDE] = ACTIONS(177), - [anon_sym_LBRACK_CARET] = ACTIONS(180), - [anon_sym_BANG_LBRACK] = ACTIONS(183), - [anon_sym_LBRACK] = ACTIONS(186), - [anon_sym_LBRACE2] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(189), - [anon_sym_TODO] = ACTIONS(192), - [anon_sym_WIP] = ACTIONS(192), - [anon_sym_NOTE] = ACTIONS(195), - [anon_sym_INFO] = ACTIONS(195), - [anon_sym_XXX] = ACTIONS(195), - [sym_fixme] = ACTIONS(156), - [anon_sym_PIPE] = ACTIONS(156), - [sym__whitespace1] = ACTIONS(489), - [sym__newline] = ACTIONS(201), - [aux_sym__text_token1] = ACTIONS(204), - [sym__verbatim_begin] = ACTIONS(207), - }, - [18] = { - [sym__inline] = STATE(858), - [sym__element] = STATE(103), - [sym_emphasis] = STATE(200), - [sym_emphasis_begin] = STATE(101), - [sym_strong] = STATE(200), - [sym_strong_begin] = STATE(104), - [sym__hard_line_break] = STATE(200), - [sym_hard_line_break] = STATE(200), - [sym__smart_punctuation] = STATE(200), - [sym_autolink] = STATE(200), - [sym_highlighted] = STATE(200), - [sym_insert] = STATE(200), - [sym_delete] = STATE(200), - [sym_superscript] = STATE(200), - [sym_subscript] = STATE(200), - [sym_footnote_reference] = STATE(200), - [sym__image] = STATE(200), - [sym_full_reference_image] = STATE(200), - [sym_collapsed_reference_image] = STATE(200), - [sym_inline_image] = STATE(200), - [sym__image_description] = STATE(642), - [sym__link] = STATE(200), - [sym_full_reference_link] = STATE(200), - [sym_collapsed_reference_link] = STATE(200), - [sym_inline_link] = STATE(200), - [sym_link_text] = STATE(643), - [sym__comment_with_spaces] = STATE(200), - [sym_span] = STATE(200), - [sym_raw_inline] = STATE(200), - [sym_math] = STATE(200), - [sym_verbatim] = STATE(200), - [sym__todo_highlights] = STATE(200), - [sym_todo] = STATE(200), - [sym_note] = STATE(200), - [sym__symbol_fallback] = STATE(200), - [aux_sym__text] = STATE(138), - [aux_sym__inline_repeat1] = STATE(103), - [ts_builtin_sym_end] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(51), - [anon_sym__] = ACTIONS(54), - [anon_sym_LBRACE_STAR] = ACTIONS(57), - [anon_sym_STAR] = ACTIONS(60), - [anon_sym_BSLASH] = ACTIONS(63), - [sym_quotation_marks] = ACTIONS(66), - [sym_ellipsis] = ACTIONS(66), - [sym_em_dash] = ACTIONS(66), - [sym_en_dash] = ACTIONS(69), - [sym_backslash_escape] = ACTIONS(69), - [anon_sym_LT] = ACTIONS(72), - [anon_sym_LBRACE_EQ] = ACTIONS(75), - [anon_sym_LBRACE_PLUS] = ACTIONS(78), - [anon_sym_LBRACE_DASH] = ACTIONS(81), - [sym_symbol] = ACTIONS(66), - [anon_sym_LBRACE_CARET] = ACTIONS(84), - [anon_sym_CARET] = ACTIONS(84), - [anon_sym_LBRACE_TILDE] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(87), - [anon_sym_LBRACK_CARET] = ACTIONS(95), - [anon_sym_BANG_LBRACK] = ACTIONS(100), - [anon_sym_LBRACK] = ACTIONS(103), - [anon_sym_LBRACE2] = ACTIONS(69), - [anon_sym_DOLLAR] = ACTIONS(106), - [anon_sym_TODO] = ACTIONS(109), - [anon_sym_WIP] = ACTIONS(109), - [anon_sym_NOTE] = ACTIONS(112), - [anon_sym_INFO] = ACTIONS(112), - [anon_sym_XXX] = ACTIONS(112), - [sym_fixme] = ACTIONS(66), - [anon_sym_PIPE] = ACTIONS(66), - [sym__whitespace1] = ACTIONS(115), - [sym__newline] = ACTIONS(118), - [aux_sym__text_token1] = ACTIONS(121), - [sym__verbatim_begin] = ACTIONS(124), - }, - [19] = { - [sym__inline] = STATE(805), - [sym__element] = STATE(119), - [sym_emphasis] = STATE(197), - [sym_emphasis_begin] = STATE(81), - [sym_strong] = STATE(197), - [sym_strong_begin] = STATE(82), - [sym__hard_line_break] = STATE(197), - [sym_hard_line_break] = STATE(197), - [sym__smart_punctuation] = STATE(197), - [sym_autolink] = STATE(197), - [sym_highlighted] = STATE(197), - [sym_insert] = STATE(197), - [sym_delete] = STATE(197), - [sym_superscript] = STATE(197), - [sym_subscript] = STATE(197), - [sym_footnote_reference] = STATE(197), - [sym__image] = STATE(197), - [sym_full_reference_image] = STATE(197), - [sym_collapsed_reference_image] = STATE(197), - [sym_inline_image] = STATE(197), - [sym__image_description] = STATE(654), - [sym__link] = STATE(197), - [sym_full_reference_link] = STATE(197), - [sym_collapsed_reference_link] = STATE(197), - [sym_inline_link] = STATE(197), - [sym_link_text] = STATE(651), - [sym__comment_with_spaces] = STATE(197), - [sym_span] = STATE(197), - [sym_raw_inline] = STATE(197), - [sym_math] = STATE(197), - [sym_verbatim] = STATE(197), - [sym__todo_highlights] = STATE(197), - [sym_todo] = STATE(197), - [sym_note] = STATE(197), - [sym__symbol_fallback] = STATE(197), - [aux_sym__text] = STATE(132), - [aux_sym__inline_repeat1] = STATE(119), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(279), - [anon_sym__] = ACTIONS(282), - [anon_sym_LBRACE_STAR] = ACTIONS(285), - [anon_sym_STAR] = ACTIONS(288), - [anon_sym_BSLASH] = ACTIONS(291), - [sym_quotation_marks] = ACTIONS(294), - [sym_ellipsis] = ACTIONS(294), - [sym_em_dash] = ACTIONS(294), - [sym_en_dash] = ACTIONS(297), - [sym_backslash_escape] = ACTIONS(297), - [anon_sym_LT] = ACTIONS(300), - [anon_sym_LBRACE_EQ] = ACTIONS(303), - [anon_sym_EQ_RBRACE] = ACTIONS(93), - [anon_sym_LBRACE_PLUS] = ACTIONS(306), - [anon_sym_LBRACE_DASH] = ACTIONS(309), - [sym_symbol] = ACTIONS(294), - [anon_sym_LBRACE_CARET] = ACTIONS(312), - [anon_sym_CARET] = ACTIONS(312), - [anon_sym_LBRACE_TILDE] = ACTIONS(315), - [anon_sym_TILDE] = ACTIONS(315), - [anon_sym_LBRACK_CARET] = ACTIONS(318), - [anon_sym_BANG_LBRACK] = ACTIONS(321), - [anon_sym_LBRACK] = ACTIONS(324), - [anon_sym_LBRACE2] = ACTIONS(297), - [anon_sym_DOLLAR] = ACTIONS(327), - [anon_sym_TODO] = ACTIONS(330), - [anon_sym_WIP] = ACTIONS(330), - [anon_sym_NOTE] = ACTIONS(333), - [anon_sym_INFO] = ACTIONS(333), - [anon_sym_XXX] = ACTIONS(333), - [sym_fixme] = ACTIONS(294), - [anon_sym_PIPE] = ACTIONS(294), - [sym__whitespace1] = ACTIONS(336), - [sym__newline] = ACTIONS(339), - [aux_sym__text_token1] = ACTIONS(342), - [sym__verbatim_begin] = ACTIONS(345), - }, - [20] = { - [sym__inline] = STATE(724), - [sym__element] = STATE(119), - [sym_emphasis] = STATE(197), - [sym_emphasis_begin] = STATE(81), - [sym_strong] = STATE(197), - [sym_strong_begin] = STATE(82), - [sym__hard_line_break] = STATE(197), - [sym_hard_line_break] = STATE(197), - [sym__smart_punctuation] = STATE(197), - [sym_autolink] = STATE(197), - [sym_highlighted] = STATE(197), - [sym_insert] = STATE(197), - [sym_delete] = STATE(197), - [sym_superscript] = STATE(197), - [sym_subscript] = STATE(197), - [sym_footnote_reference] = STATE(197), - [sym__image] = STATE(197), - [sym_full_reference_image] = STATE(197), - [sym_collapsed_reference_image] = STATE(197), - [sym_inline_image] = STATE(197), - [sym__image_description] = STATE(654), - [sym__link] = STATE(197), - [sym_full_reference_link] = STATE(197), - [sym_collapsed_reference_link] = STATE(197), - [sym_inline_link] = STATE(197), - [sym_link_text] = STATE(651), - [sym__comment_with_spaces] = STATE(197), - [sym_span] = STATE(197), - [sym_raw_inline] = STATE(197), - [sym_math] = STATE(197), - [sym_verbatim] = STATE(197), - [sym__todo_highlights] = STATE(197), - [sym_todo] = STATE(197), - [sym_note] = STATE(197), - [sym__symbol_fallback] = STATE(197), - [aux_sym__text] = STATE(132), - [aux_sym__inline_repeat1] = STATE(119), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(279), - [anon_sym__] = ACTIONS(282), - [anon_sym_LBRACE_STAR] = ACTIONS(285), - [anon_sym_STAR] = ACTIONS(288), - [anon_sym_BSLASH] = ACTIONS(291), - [sym_quotation_marks] = ACTIONS(294), - [sym_ellipsis] = ACTIONS(294), - [sym_em_dash] = ACTIONS(294), - [sym_en_dash] = ACTIONS(297), - [sym_backslash_escape] = ACTIONS(297), - [anon_sym_LT] = ACTIONS(300), - [anon_sym_LBRACE_EQ] = ACTIONS(303), - [anon_sym_LBRACE_PLUS] = ACTIONS(306), - [anon_sym_LBRACE_DASH] = ACTIONS(309), - [sym_symbol] = ACTIONS(294), - [anon_sym_LBRACE_CARET] = ACTIONS(312), - [anon_sym_CARET] = ACTIONS(312), - [anon_sym_LBRACE_TILDE] = ACTIONS(315), - [anon_sym_TILDE] = ACTIONS(315), - [anon_sym_LBRACK_CARET] = ACTIONS(318), - [anon_sym_RBRACK] = ACTIONS(93), - [anon_sym_BANG_LBRACK] = ACTIONS(321), - [anon_sym_LBRACK] = ACTIONS(324), - [anon_sym_LBRACE2] = ACTIONS(297), - [anon_sym_DOLLAR] = ACTIONS(327), - [anon_sym_TODO] = ACTIONS(330), - [anon_sym_WIP] = ACTIONS(330), - [anon_sym_NOTE] = ACTIONS(333), - [anon_sym_INFO] = ACTIONS(333), - [anon_sym_XXX] = ACTIONS(333), - [sym_fixme] = ACTIONS(294), - [anon_sym_PIPE] = ACTIONS(294), - [sym__whitespace1] = ACTIONS(336), - [sym__newline] = ACTIONS(339), - [aux_sym__text_token1] = ACTIONS(342), - [sym__verbatim_begin] = ACTIONS(345), - }, - [21] = { - [sym__inline] = STATE(725), - [sym__element] = STATE(77), - [sym_emphasis] = STATE(174), - [sym_emphasis_begin] = STATE(86), - [sym_strong] = STATE(174), - [sym_strong_begin] = STATE(89), - [sym__hard_line_break] = STATE(174), - [sym_hard_line_break] = STATE(174), - [sym__smart_punctuation] = STATE(174), - [sym_autolink] = STATE(174), - [sym_highlighted] = STATE(174), - [sym_insert] = STATE(174), - [sym_delete] = STATE(174), - [sym_superscript] = STATE(174), - [sym_subscript] = STATE(174), - [sym_footnote_reference] = STATE(174), - [sym__image] = STATE(174), - [sym_full_reference_image] = STATE(174), - [sym_collapsed_reference_image] = STATE(174), - [sym_inline_image] = STATE(174), - [sym__image_description] = STATE(630), - [sym__link] = STATE(174), - [sym_full_reference_link] = STATE(174), - [sym_collapsed_reference_link] = STATE(174), - [sym_inline_link] = STATE(174), - [sym_link_text] = STATE(631), - [sym__comment_with_spaces] = STATE(174), - [sym_span] = STATE(174), - [sym_raw_inline] = STATE(174), - [sym_math] = STATE(174), - [sym_verbatim] = STATE(174), - [sym__todo_highlights] = STATE(174), - [sym_todo] = STATE(174), - [sym_note] = STATE(174), - [sym__symbol_fallback] = STATE(174), - [aux_sym__text] = STATE(148), - [aux_sym__inline_repeat1] = STATE(77), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(348), - [anon_sym__] = ACTIONS(351), - [anon_sym_LBRACE_STAR] = ACTIONS(354), - [anon_sym_STAR] = ACTIONS(357), - [anon_sym_BSLASH] = ACTIONS(360), - [sym_quotation_marks] = ACTIONS(363), - [sym_ellipsis] = ACTIONS(363), - [sym_em_dash] = ACTIONS(363), - [sym_en_dash] = ACTIONS(366), - [sym_backslash_escape] = ACTIONS(366), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_LBRACE_EQ] = ACTIONS(372), - [anon_sym_LBRACE_PLUS] = ACTIONS(375), - [anon_sym_LBRACE_DASH] = ACTIONS(378), - [sym_symbol] = ACTIONS(363), - [anon_sym_LBRACE_CARET] = ACTIONS(381), - [anon_sym_CARET] = ACTIONS(381), - [anon_sym_LBRACE_TILDE] = ACTIONS(384), - [anon_sym_TILDE] = ACTIONS(384), - [anon_sym_LBRACK_CARET] = ACTIONS(387), - [anon_sym_RBRACK] = ACTIONS(93), - [anon_sym_BANG_LBRACK] = ACTIONS(390), - [anon_sym_LBRACK] = ACTIONS(393), - [anon_sym_LBRACE2] = ACTIONS(366), - [anon_sym_DOLLAR] = ACTIONS(396), - [anon_sym_TODO] = ACTIONS(399), - [anon_sym_WIP] = ACTIONS(399), - [anon_sym_NOTE] = ACTIONS(402), - [anon_sym_INFO] = ACTIONS(402), - [anon_sym_XXX] = ACTIONS(402), - [sym_fixme] = ACTIONS(363), - [anon_sym_PIPE] = ACTIONS(363), - [sym__whitespace1] = ACTIONS(405), - [sym__newline] = ACTIONS(408), - [aux_sym__text_token1] = ACTIONS(411), - [sym__verbatim_begin] = ACTIONS(414), - }, - [22] = { - [sym__inline] = STATE(726), - [sym__element] = STATE(116), - [sym_emphasis] = STATE(183), - [sym_emphasis_begin] = STATE(91), - [sym_strong] = STATE(183), - [sym_strong_begin] = STATE(92), - [sym__hard_line_break] = STATE(183), - [sym_hard_line_break] = STATE(183), - [sym__smart_punctuation] = STATE(183), - [sym_autolink] = STATE(183), - [sym_highlighted] = STATE(183), - [sym_insert] = STATE(183), - [sym_delete] = STATE(183), - [sym_superscript] = STATE(183), - [sym_subscript] = STATE(183), - [sym_footnote_reference] = STATE(183), - [sym__image] = STATE(183), - [sym_full_reference_image] = STATE(183), - [sym_collapsed_reference_image] = STATE(183), - [sym_inline_image] = STATE(183), - [sym__image_description] = STATE(645), - [sym__link] = STATE(183), - [sym_full_reference_link] = STATE(183), - [sym_collapsed_reference_link] = STATE(183), - [sym_inline_link] = STATE(183), - [sym_link_text] = STATE(646), - [sym__comment_with_spaces] = STATE(183), - [sym_span] = STATE(183), - [sym_raw_inline] = STATE(183), - [sym_math] = STATE(183), - [sym_verbatim] = STATE(183), - [sym__todo_highlights] = STATE(183), - [sym_todo] = STATE(183), - [sym_note] = STATE(183), - [sym__symbol_fallback] = STATE(183), - [aux_sym__text] = STATE(149), - [aux_sym__inline_repeat1] = STATE(116), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(210), - [anon_sym__] = ACTIONS(213), - [anon_sym_LBRACE_STAR] = ACTIONS(216), - [anon_sym_STAR] = ACTIONS(219), - [anon_sym_BSLASH] = ACTIONS(222), - [sym_quotation_marks] = ACTIONS(225), - [sym_ellipsis] = ACTIONS(225), - [sym_em_dash] = ACTIONS(225), - [sym_en_dash] = ACTIONS(228), - [sym_backslash_escape] = ACTIONS(228), - [anon_sym_LT] = ACTIONS(231), - [anon_sym_LBRACE_EQ] = ACTIONS(234), - [anon_sym_LBRACE_PLUS] = ACTIONS(237), - [anon_sym_LBRACE_DASH] = ACTIONS(240), - [sym_symbol] = ACTIONS(225), - [anon_sym_LBRACE_CARET] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(243), - [anon_sym_LBRACE_TILDE] = ACTIONS(246), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_LBRACK_CARET] = ACTIONS(249), - [anon_sym_RBRACK] = ACTIONS(93), - [anon_sym_BANG_LBRACK] = ACTIONS(252), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_LBRACE2] = ACTIONS(228), - [anon_sym_DOLLAR] = ACTIONS(258), - [anon_sym_TODO] = ACTIONS(261), - [anon_sym_WIP] = ACTIONS(261), - [anon_sym_NOTE] = ACTIONS(264), - [anon_sym_INFO] = ACTIONS(264), - [anon_sym_XXX] = ACTIONS(264), - [sym_fixme] = ACTIONS(225), - [anon_sym_PIPE] = ACTIONS(225), - [sym__whitespace1] = ACTIONS(267), - [sym__newline] = ACTIONS(270), - [aux_sym__text_token1] = ACTIONS(273), - [sym__verbatim_begin] = ACTIONS(276), - }, - [23] = { - [sym__inline] = STATE(705), - [sym__element] = STATE(85), - [sym_emphasis] = STATE(175), - [sym_emphasis_begin] = STATE(94), - [sym_strong] = STATE(175), - [sym_strong_begin] = STATE(95), - [sym__hard_line_break] = STATE(175), - [sym_hard_line_break] = STATE(175), - [sym__smart_punctuation] = STATE(175), - [sym_autolink] = STATE(175), - [sym_highlighted] = STATE(175), - [sym_insert] = STATE(175), - [sym_delete] = STATE(175), - [sym_superscript] = STATE(175), - [sym_subscript] = STATE(175), - [sym_footnote_reference] = STATE(175), - [sym__image] = STATE(175), - [sym_full_reference_image] = STATE(175), - [sym_collapsed_reference_image] = STATE(175), - [sym_inline_image] = STATE(175), - [sym__image_description] = STATE(652), - [sym__link] = STATE(175), - [sym_full_reference_link] = STATE(175), - [sym_collapsed_reference_link] = STATE(175), - [sym_inline_link] = STATE(175), - [sym_link_text] = STATE(649), - [sym__comment_with_spaces] = STATE(175), - [sym_span] = STATE(175), - [sym_raw_inline] = STATE(175), - [sym_math] = STATE(175), - [sym_verbatim] = STATE(175), - [sym__todo_highlights] = STATE(175), - [sym_todo] = STATE(175), - [sym_note] = STATE(175), - [sym__symbol_fallback] = STATE(175), - [aux_sym__text] = STATE(156), - [aux_sym__inline_repeat1] = STATE(85), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(417), - [anon_sym__] = ACTIONS(420), - [anon_sym_LBRACE_STAR] = ACTIONS(423), - [anon_sym_STAR] = ACTIONS(426), - [anon_sym_BSLASH] = ACTIONS(429), - [sym_quotation_marks] = ACTIONS(432), - [sym_ellipsis] = ACTIONS(432), - [sym_em_dash] = ACTIONS(432), - [sym_en_dash] = ACTIONS(435), - [sym_backslash_escape] = ACTIONS(435), - [anon_sym_LT] = ACTIONS(438), - [anon_sym_LBRACE_EQ] = ACTIONS(441), - [anon_sym_LBRACE_PLUS] = ACTIONS(444), - [anon_sym_LBRACE_DASH] = ACTIONS(447), - [sym_symbol] = ACTIONS(432), - [anon_sym_LBRACE_CARET] = ACTIONS(450), - [anon_sym_CARET] = ACTIONS(450), - [anon_sym_LBRACE_TILDE] = ACTIONS(453), - [anon_sym_TILDE] = ACTIONS(453), - [anon_sym_LBRACK_CARET] = ACTIONS(456), - [anon_sym_RBRACK] = ACTIONS(93), - [anon_sym_BANG_LBRACK] = ACTIONS(459), - [anon_sym_LBRACK] = ACTIONS(462), - [anon_sym_LBRACE2] = ACTIONS(435), - [anon_sym_DOLLAR] = ACTIONS(465), - [anon_sym_TODO] = ACTIONS(468), - [anon_sym_WIP] = ACTIONS(468), - [anon_sym_NOTE] = ACTIONS(471), - [anon_sym_INFO] = ACTIONS(471), - [anon_sym_XXX] = ACTIONS(471), - [sym_fixme] = ACTIONS(432), - [anon_sym_PIPE] = ACTIONS(432), - [sym__whitespace1] = ACTIONS(474), - [sym__newline] = ACTIONS(477), - [aux_sym__text_token1] = ACTIONS(480), - [sym__verbatim_begin] = ACTIONS(483), + [aux_sym__text] = STATE(144), + [aux_sym__inline_repeat1] = STATE(97), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_] = ACTIONS(49), + [anon_sym__] = ACTIONS(52), + [anon_sym_LBRACE_STAR] = ACTIONS(55), + [anon_sym_STAR] = ACTIONS(119), + [aux_sym_strong_end_token1] = ACTIONS(79), + [anon_sym_BSLASH] = ACTIONS(61), + [sym_quotation_marks] = ACTIONS(52), + [sym_ellipsis] = ACTIONS(52), + [sym_em_dash] = ACTIONS(52), + [sym_en_dash] = ACTIONS(64), + [sym_backslash_escape] = ACTIONS(64), + [anon_sym_LT] = ACTIONS(67), + [anon_sym_LBRACE_EQ] = ACTIONS(70), + [anon_sym_LBRACE_PLUS] = ACTIONS(73), + [anon_sym_LBRACE_DASH] = ACTIONS(76), + [sym_symbol] = ACTIONS(52), + [anon_sym_LBRACE_CARET] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_LBRACE_TILDE] = ACTIONS(84), + [anon_sym_TILDE] = ACTIONS(84), + [anon_sym_LBRACK_CARET] = ACTIONS(87), + [anon_sym_RBRACK] = ACTIONS(90), + [anon_sym_BANG_LBRACK] = ACTIONS(92), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACE2] = ACTIONS(64), + [anon_sym_DOLLAR] = ACTIONS(98), + [anon_sym_TODO] = ACTIONS(101), + [anon_sym_WIP] = ACTIONS(101), + [anon_sym_NOTE] = ACTIONS(104), + [anon_sym_INFO] = ACTIONS(104), + [anon_sym_XXX] = ACTIONS(104), + [sym_fixme] = ACTIONS(52), + [anon_sym_PIPE] = ACTIONS(52), + [sym__whitespace1] = ACTIONS(122), + [sym__newline] = ACTIONS(110), + [aux_sym__text_token1] = ACTIONS(113), + [sym__verbatim_begin] = ACTIONS(116), }, - [24] = { - [sym__inline] = STATE(682), - [sym__element] = STATE(120), + [4] = { + [sym__inline] = STATE(722), + [sym__element] = STATE(97), [sym_emphasis] = STATE(182), - [sym_emphasis_begin] = STATE(97), + [sym_emphasis_begin] = STATE(898), [sym_strong] = STATE(182), - [sym_strong_begin] = STATE(99), + [sym_strong_begin] = STATE(104), [sym__hard_line_break] = STATE(182), [sym_hard_line_break] = STATE(182), [sym__smart_punctuation] = STATE(182), @@ -9862,12 +7959,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_full_reference_image] = STATE(182), [sym_collapsed_reference_image] = STATE(182), [sym_inline_image] = STATE(182), - [sym__image_description] = STATE(628), + [sym__image_description] = STATE(610), [sym__link] = STATE(182), [sym_full_reference_link] = STATE(182), [sym_collapsed_reference_link] = STATE(182), [sym_inline_link] = STATE(182), - [sym_link_text] = STATE(627), + [sym_link_text] = STATE(608), [sym__comment_with_spaces] = STATE(182), [sym_span] = STATE(182), [sym_raw_inline] = STATE(182), @@ -9877,205 +7974,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(182), [sym_note] = STATE(182), [sym__symbol_fallback] = STATE(182), - [aux_sym__text] = STATE(136), - [aux_sym__inline_repeat1] = STATE(120), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(141), - [anon_sym__] = ACTIONS(486), - [anon_sym_LBRACE_STAR] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(150), - [anon_sym_BSLASH] = ACTIONS(153), - [sym_quotation_marks] = ACTIONS(156), - [sym_ellipsis] = ACTIONS(156), - [sym_em_dash] = ACTIONS(156), - [sym_en_dash] = ACTIONS(159), - [sym_backslash_escape] = ACTIONS(159), - [anon_sym_LT] = ACTIONS(162), - [anon_sym_LBRACE_EQ] = ACTIONS(165), - [anon_sym_LBRACE_PLUS] = ACTIONS(168), - [anon_sym_LBRACE_DASH] = ACTIONS(171), - [sym_symbol] = ACTIONS(156), - [anon_sym_LBRACE_CARET] = ACTIONS(174), - [anon_sym_CARET] = ACTIONS(174), - [anon_sym_LBRACE_TILDE] = ACTIONS(177), - [anon_sym_TILDE] = ACTIONS(177), - [anon_sym_LBRACK_CARET] = ACTIONS(180), - [anon_sym_RBRACK] = ACTIONS(93), - [anon_sym_BANG_LBRACK] = ACTIONS(183), - [anon_sym_LBRACK] = ACTIONS(186), - [anon_sym_LBRACE2] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(189), - [anon_sym_TODO] = ACTIONS(192), - [anon_sym_WIP] = ACTIONS(192), - [anon_sym_NOTE] = ACTIONS(195), - [anon_sym_INFO] = ACTIONS(195), - [anon_sym_XXX] = ACTIONS(195), - [sym_fixme] = ACTIONS(156), - [anon_sym_PIPE] = ACTIONS(156), - [sym__whitespace1] = ACTIONS(489), - [sym__newline] = ACTIONS(201), - [aux_sym__text_token1] = ACTIONS(204), - [sym__verbatim_begin] = ACTIONS(207), - }, - [25] = { - [sym__inline] = STATE(876), - [sym__element] = STATE(103), - [sym_emphasis] = STATE(200), - [sym_emphasis_begin] = STATE(101), - [sym_strong] = STATE(200), - [sym_strong_begin] = STATE(104), - [sym__hard_line_break] = STATE(200), - [sym_hard_line_break] = STATE(200), - [sym__smart_punctuation] = STATE(200), - [sym_autolink] = STATE(200), - [sym_highlighted] = STATE(200), - [sym_insert] = STATE(200), - [sym_delete] = STATE(200), - [sym_superscript] = STATE(200), - [sym_subscript] = STATE(200), - [sym_footnote_reference] = STATE(200), - [sym__image] = STATE(200), - [sym_full_reference_image] = STATE(200), - [sym_collapsed_reference_image] = STATE(200), - [sym_inline_image] = STATE(200), - [sym__image_description] = STATE(642), - [sym__link] = STATE(200), - [sym_full_reference_link] = STATE(200), - [sym_collapsed_reference_link] = STATE(200), - [sym_inline_link] = STATE(200), - [sym_link_text] = STATE(643), - [sym__comment_with_spaces] = STATE(200), - [sym_span] = STATE(200), - [sym_raw_inline] = STATE(200), - [sym_math] = STATE(200), - [sym_verbatim] = STATE(200), - [sym__todo_highlights] = STATE(200), - [sym_todo] = STATE(200), - [sym_note] = STATE(200), - [sym__symbol_fallback] = STATE(200), - [aux_sym__text] = STATE(138), - [aux_sym__inline_repeat1] = STATE(103), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(51), - [anon_sym__] = ACTIONS(54), - [anon_sym_LBRACE_STAR] = ACTIONS(57), - [anon_sym_STAR] = ACTIONS(60), - [anon_sym_BSLASH] = ACTIONS(63), - [sym_quotation_marks] = ACTIONS(66), - [sym_ellipsis] = ACTIONS(66), - [sym_em_dash] = ACTIONS(66), - [sym_en_dash] = ACTIONS(69), - [sym_backslash_escape] = ACTIONS(69), - [anon_sym_LT] = ACTIONS(72), - [anon_sym_LBRACE_EQ] = ACTIONS(75), - [anon_sym_LBRACE_PLUS] = ACTIONS(78), - [anon_sym_LBRACE_DASH] = ACTIONS(81), - [sym_symbol] = ACTIONS(66), - [anon_sym_LBRACE_CARET] = ACTIONS(84), - [anon_sym_CARET] = ACTIONS(84), - [anon_sym_LBRACE_TILDE] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(87), - [anon_sym_LBRACK_CARET] = ACTIONS(95), - [anon_sym_RBRACK] = ACTIONS(492), - [anon_sym_BANG_LBRACK] = ACTIONS(100), - [anon_sym_LBRACK] = ACTIONS(103), - [anon_sym_LBRACE2] = ACTIONS(69), - [anon_sym_DOLLAR] = ACTIONS(106), - [anon_sym_TODO] = ACTIONS(109), - [anon_sym_WIP] = ACTIONS(109), - [anon_sym_NOTE] = ACTIONS(112), - [anon_sym_INFO] = ACTIONS(112), - [anon_sym_XXX] = ACTIONS(112), - [sym_fixme] = ACTIONS(66), - [anon_sym_PIPE] = ACTIONS(66), - [sym__whitespace1] = ACTIONS(115), - [sym__newline] = ACTIONS(118), - [aux_sym__text_token1] = ACTIONS(121), - [sym__verbatim_begin] = ACTIONS(124), - }, - [26] = { - [sym__inline] = STATE(859), - [sym__element] = STATE(103), - [sym_emphasis] = STATE(200), - [sym_emphasis_begin] = STATE(101), - [sym_strong] = STATE(200), - [sym_strong_begin] = STATE(104), - [sym__hard_line_break] = STATE(200), - [sym_hard_line_break] = STATE(200), - [sym__smart_punctuation] = STATE(200), - [sym_autolink] = STATE(200), - [sym_highlighted] = STATE(200), - [sym_insert] = STATE(200), - [sym_delete] = STATE(200), - [sym_superscript] = STATE(200), - [sym_subscript] = STATE(200), - [sym_footnote_reference] = STATE(200), - [sym__image] = STATE(200), - [sym_full_reference_image] = STATE(200), - [sym_collapsed_reference_image] = STATE(200), - [sym_inline_image] = STATE(200), - [sym__image_description] = STATE(642), - [sym__link] = STATE(200), - [sym_full_reference_link] = STATE(200), - [sym_collapsed_reference_link] = STATE(200), - [sym_inline_link] = STATE(200), - [sym_link_text] = STATE(643), - [sym__comment_with_spaces] = STATE(200), - [sym_span] = STATE(200), - [sym_raw_inline] = STATE(200), - [sym_math] = STATE(200), - [sym_verbatim] = STATE(200), - [sym__todo_highlights] = STATE(200), - [sym_todo] = STATE(200), - [sym_note] = STATE(200), - [sym__symbol_fallback] = STATE(200), - [aux_sym__text] = STATE(138), - [aux_sym__inline_repeat1] = STATE(103), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(51), - [anon_sym__] = ACTIONS(54), - [anon_sym_LBRACE_STAR] = ACTIONS(57), - [anon_sym_STAR] = ACTIONS(60), - [anon_sym_BSLASH] = ACTIONS(63), - [sym_quotation_marks] = ACTIONS(66), - [sym_ellipsis] = ACTIONS(66), - [sym_em_dash] = ACTIONS(66), - [sym_en_dash] = ACTIONS(69), - [sym_backslash_escape] = ACTIONS(69), - [anon_sym_LT] = ACTIONS(72), - [anon_sym_LBRACE_EQ] = ACTIONS(75), - [anon_sym_LBRACE_PLUS] = ACTIONS(78), - [anon_sym_LBRACE_DASH] = ACTIONS(81), - [sym_symbol] = ACTIONS(66), - [anon_sym_LBRACE_CARET] = ACTIONS(84), - [anon_sym_CARET] = ACTIONS(84), - [anon_sym_LBRACE_TILDE] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(87), - [anon_sym_LBRACK_CARET] = ACTIONS(95), - [anon_sym_RBRACK] = ACTIONS(93), - [anon_sym_BANG_LBRACK] = ACTIONS(100), - [anon_sym_LBRACK] = ACTIONS(103), - [anon_sym_LBRACE2] = ACTIONS(69), - [anon_sym_DOLLAR] = ACTIONS(106), - [anon_sym_TODO] = ACTIONS(109), - [anon_sym_WIP] = ACTIONS(109), - [anon_sym_NOTE] = ACTIONS(112), - [anon_sym_INFO] = ACTIONS(112), - [anon_sym_XXX] = ACTIONS(112), - [sym_fixme] = ACTIONS(66), - [anon_sym_PIPE] = ACTIONS(66), - [sym__whitespace1] = ACTIONS(115), - [sym__newline] = ACTIONS(118), - [aux_sym__text_token1] = ACTIONS(121), - [sym__verbatim_begin] = ACTIONS(124), + [aux_sym__text] = STATE(144), + [aux_sym__inline_repeat1] = STATE(97), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_] = ACTIONS(49), + [anon_sym__] = ACTIONS(52), + [anon_sym_LBRACE_STAR] = ACTIONS(55), + [anon_sym_STAR] = ACTIONS(58), + [anon_sym_BSLASH] = ACTIONS(61), + [sym_quotation_marks] = ACTIONS(52), + [sym_ellipsis] = ACTIONS(52), + [sym_em_dash] = ACTIONS(52), + [sym_en_dash] = ACTIONS(64), + [sym_backslash_escape] = ACTIONS(64), + [anon_sym_LT] = ACTIONS(67), + [anon_sym_LBRACE_EQ] = ACTIONS(70), + [anon_sym_LBRACE_PLUS] = ACTIONS(73), + [anon_sym_LBRACE_DASH] = ACTIONS(76), + [sym_symbol] = ACTIONS(52), + [anon_sym_LBRACE_CARET] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_LBRACE_TILDE] = ACTIONS(84), + [anon_sym_TILDE] = ACTIONS(84), + [anon_sym_LBRACK_CARET] = ACTIONS(87), + [anon_sym_RBRACK] = ACTIONS(125), + [anon_sym_BANG_LBRACK] = ACTIONS(92), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_RBRACK2] = ACTIONS(79), + [anon_sym_LBRACE2] = ACTIONS(64), + [anon_sym_DOLLAR] = ACTIONS(98), + [anon_sym_TODO] = ACTIONS(101), + [anon_sym_WIP] = ACTIONS(101), + [anon_sym_NOTE] = ACTIONS(104), + [anon_sym_INFO] = ACTIONS(104), + [anon_sym_XXX] = ACTIONS(104), + [sym_fixme] = ACTIONS(52), + [anon_sym_PIPE] = ACTIONS(52), + [sym__whitespace1] = ACTIONS(107), + [sym__newline] = ACTIONS(110), + [aux_sym__text_token1] = ACTIONS(113), + [sym__verbatim_begin] = ACTIONS(116), }, - [27] = { - [sym__inline] = STATE(696), - [sym__element] = STATE(120), + [5] = { + [sym__inline] = STATE(722), + [sym__element] = STATE(97), [sym_emphasis] = STATE(182), - [sym_emphasis_begin] = STATE(97), + [sym_emphasis_begin] = STATE(898), [sym_strong] = STATE(182), - [sym_strong_begin] = STATE(99), + [sym_strong_begin] = STATE(104), [sym__hard_line_break] = STATE(182), [sym_hard_line_break] = STATE(182), [sym__smart_punctuation] = STATE(182), @@ -10090,12 +8036,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_full_reference_image] = STATE(182), [sym_collapsed_reference_image] = STATE(182), [sym_inline_image] = STATE(182), - [sym__image_description] = STATE(628), + [sym__image_description] = STATE(610), [sym__link] = STATE(182), [sym_full_reference_link] = STATE(182), [sym_collapsed_reference_link] = STATE(182), [sym_inline_link] = STATE(182), - [sym_link_text] = STATE(627), + [sym_link_text] = STATE(608), [sym__comment_with_spaces] = STATE(182), [sym_span] = STATE(182), [sym_raw_inline] = STATE(182), @@ -10105,129 +8051,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(182), [sym_note] = STATE(182), [sym__symbol_fallback] = STATE(182), - [aux_sym__text] = STATE(136), - [aux_sym__inline_repeat1] = STATE(120), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(141), - [anon_sym__] = ACTIONS(486), - [anon_sym_LBRACE_STAR] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(150), - [anon_sym_BSLASH] = ACTIONS(153), - [sym_quotation_marks] = ACTIONS(156), - [sym_ellipsis] = ACTIONS(156), - [sym_em_dash] = ACTIONS(156), - [sym_en_dash] = ACTIONS(159), - [sym_backslash_escape] = ACTIONS(159), - [anon_sym_LT] = ACTIONS(162), - [anon_sym_LBRACE_EQ] = ACTIONS(165), - [anon_sym_LBRACE_PLUS] = ACTIONS(168), - [anon_sym_LBRACE_DASH] = ACTIONS(171), - [sym_symbol] = ACTIONS(156), - [anon_sym_LBRACE_CARET] = ACTIONS(174), - [anon_sym_CARET] = ACTIONS(174), - [anon_sym_LBRACE_TILDE] = ACTIONS(177), - [anon_sym_TILDE] = ACTIONS(495), - [anon_sym_TILDE_RBRACE] = ACTIONS(93), - [anon_sym_LBRACK_CARET] = ACTIONS(180), - [anon_sym_BANG_LBRACK] = ACTIONS(183), - [anon_sym_LBRACK] = ACTIONS(186), - [anon_sym_LBRACE2] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(189), - [anon_sym_TODO] = ACTIONS(192), - [anon_sym_WIP] = ACTIONS(192), - [anon_sym_NOTE] = ACTIONS(195), - [anon_sym_INFO] = ACTIONS(195), - [anon_sym_XXX] = ACTIONS(195), - [sym_fixme] = ACTIONS(156), - [anon_sym_PIPE] = ACTIONS(156), - [sym__whitespace1] = ACTIONS(489), - [sym__newline] = ACTIONS(201), - [aux_sym__text_token1] = ACTIONS(204), - [sym__verbatim_begin] = ACTIONS(207), - }, - [28] = { - [sym__inline] = STATE(695), - [sym__element] = STATE(85), - [sym_emphasis] = STATE(175), - [sym_emphasis_begin] = STATE(94), - [sym_strong] = STATE(175), - [sym_strong_begin] = STATE(95), - [sym__hard_line_break] = STATE(175), - [sym_hard_line_break] = STATE(175), - [sym__smart_punctuation] = STATE(175), - [sym_autolink] = STATE(175), - [sym_highlighted] = STATE(175), - [sym_insert] = STATE(175), - [sym_delete] = STATE(175), - [sym_superscript] = STATE(175), - [sym_subscript] = STATE(175), - [sym_footnote_reference] = STATE(175), - [sym__image] = STATE(175), - [sym_full_reference_image] = STATE(175), - [sym_collapsed_reference_image] = STATE(175), - [sym_inline_image] = STATE(175), - [sym__image_description] = STATE(652), - [sym__link] = STATE(175), - [sym_full_reference_link] = STATE(175), - [sym_collapsed_reference_link] = STATE(175), - [sym_inline_link] = STATE(175), - [sym_link_text] = STATE(649), - [sym__comment_with_spaces] = STATE(175), - [sym_span] = STATE(175), - [sym_raw_inline] = STATE(175), - [sym_math] = STATE(175), - [sym_verbatim] = STATE(175), - [sym__todo_highlights] = STATE(175), - [sym_todo] = STATE(175), - [sym_note] = STATE(175), - [sym__symbol_fallback] = STATE(175), - [aux_sym__text] = STATE(156), - [aux_sym__inline_repeat1] = STATE(85), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(417), - [anon_sym__] = ACTIONS(420), - [anon_sym_LBRACE_STAR] = ACTIONS(423), - [anon_sym_STAR] = ACTIONS(426), - [anon_sym_BSLASH] = ACTIONS(429), - [sym_quotation_marks] = ACTIONS(432), - [sym_ellipsis] = ACTIONS(432), - [sym_em_dash] = ACTIONS(432), - [sym_en_dash] = ACTIONS(435), - [sym_backslash_escape] = ACTIONS(435), - [anon_sym_LT] = ACTIONS(438), - [anon_sym_LBRACE_EQ] = ACTIONS(441), - [anon_sym_LBRACE_PLUS] = ACTIONS(444), - [anon_sym_LBRACE_DASH] = ACTIONS(447), - [sym_symbol] = ACTIONS(432), - [anon_sym_LBRACE_CARET] = ACTIONS(450), - [anon_sym_CARET] = ACTIONS(450), - [anon_sym_LBRACE_TILDE] = ACTIONS(453), - [anon_sym_TILDE] = ACTIONS(498), - [anon_sym_TILDE_RBRACE] = ACTIONS(93), - [anon_sym_LBRACK_CARET] = ACTIONS(456), - [anon_sym_BANG_LBRACK] = ACTIONS(459), - [anon_sym_LBRACK] = ACTIONS(462), - [anon_sym_LBRACE2] = ACTIONS(435), - [anon_sym_DOLLAR] = ACTIONS(465), - [anon_sym_TODO] = ACTIONS(468), - [anon_sym_WIP] = ACTIONS(468), - [anon_sym_NOTE] = ACTIONS(471), - [anon_sym_INFO] = ACTIONS(471), - [anon_sym_XXX] = ACTIONS(471), - [sym_fixme] = ACTIONS(432), - [anon_sym_PIPE] = ACTIONS(432), - [sym__whitespace1] = ACTIONS(474), - [sym__newline] = ACTIONS(477), - [aux_sym__text_token1] = ACTIONS(480), - [sym__verbatim_begin] = ACTIONS(483), + [aux_sym__text] = STATE(144), + [aux_sym__inline_repeat1] = STATE(97), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_] = ACTIONS(49), + [anon_sym__] = ACTIONS(52), + [anon_sym_LBRACE_STAR] = ACTIONS(55), + [anon_sym_STAR] = ACTIONS(58), + [anon_sym_BSLASH] = ACTIONS(61), + [sym_quotation_marks] = ACTIONS(52), + [sym_ellipsis] = ACTIONS(52), + [sym_em_dash] = ACTIONS(52), + [sym_en_dash] = ACTIONS(64), + [sym_backslash_escape] = ACTIONS(64), + [anon_sym_LT] = ACTIONS(67), + [anon_sym_LBRACE_EQ] = ACTIONS(70), + [anon_sym_EQ_RBRACE] = ACTIONS(79), + [anon_sym_LBRACE_PLUS] = ACTIONS(73), + [anon_sym_LBRACE_DASH] = ACTIONS(76), + [sym_symbol] = ACTIONS(52), + [anon_sym_LBRACE_CARET] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_LBRACE_TILDE] = ACTIONS(84), + [anon_sym_TILDE] = ACTIONS(84), + [anon_sym_LBRACK_CARET] = ACTIONS(87), + [anon_sym_RBRACK] = ACTIONS(90), + [anon_sym_BANG_LBRACK] = ACTIONS(92), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACE2] = ACTIONS(64), + [anon_sym_DOLLAR] = ACTIONS(98), + [anon_sym_TODO] = ACTIONS(101), + [anon_sym_WIP] = ACTIONS(101), + [anon_sym_NOTE] = ACTIONS(104), + [anon_sym_INFO] = ACTIONS(104), + [anon_sym_XXX] = ACTIONS(104), + [sym_fixme] = ACTIONS(52), + [anon_sym_PIPE] = ACTIONS(52), + [sym__whitespace1] = ACTIONS(107), + [sym__newline] = ACTIONS(110), + [aux_sym__text_token1] = ACTIONS(113), + [sym__verbatim_begin] = ACTIONS(116), }, - [29] = { - [sym__inline] = STATE(709), - [sym__element] = STATE(120), + [6] = { + [sym__inline] = STATE(722), + [sym__element] = STATE(97), [sym_emphasis] = STATE(182), - [sym_emphasis_begin] = STATE(97), + [sym_emphasis_begin] = STATE(898), [sym_strong] = STATE(182), - [sym_strong_begin] = STATE(99), + [sym_strong_begin] = STATE(104), [sym__hard_line_break] = STATE(182), [sym_hard_line_break] = STATE(182), [sym__smart_punctuation] = STATE(182), @@ -10242,12 +8113,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_full_reference_image] = STATE(182), [sym_collapsed_reference_image] = STATE(182), [sym_inline_image] = STATE(182), - [sym__image_description] = STATE(628), + [sym__image_description] = STATE(610), [sym__link] = STATE(182), [sym_full_reference_link] = STATE(182), [sym_collapsed_reference_link] = STATE(182), [sym_inline_link] = STATE(182), - [sym_link_text] = STATE(627), + [sym_link_text] = STATE(608), [sym__comment_with_spaces] = STATE(182), [sym_span] = STATE(182), [sym_raw_inline] = STATE(182), @@ -10257,509 +8128,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(182), [sym_note] = STATE(182), [sym__symbol_fallback] = STATE(182), - [aux_sym__text] = STATE(136), - [aux_sym__inline_repeat1] = STATE(120), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(141), - [anon_sym__] = ACTIONS(486), - [anon_sym_LBRACE_STAR] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(150), - [anon_sym_BSLASH] = ACTIONS(153), - [sym_quotation_marks] = ACTIONS(156), - [sym_ellipsis] = ACTIONS(156), - [sym_em_dash] = ACTIONS(156), - [sym_en_dash] = ACTIONS(159), - [sym_backslash_escape] = ACTIONS(159), - [anon_sym_LT] = ACTIONS(162), - [anon_sym_LBRACE_EQ] = ACTIONS(165), - [anon_sym_LBRACE_PLUS] = ACTIONS(168), - [anon_sym_LBRACE_DASH] = ACTIONS(171), - [anon_sym_DASH_RBRACE] = ACTIONS(93), - [sym_symbol] = ACTIONS(156), - [anon_sym_LBRACE_CARET] = ACTIONS(174), - [anon_sym_CARET] = ACTIONS(174), - [anon_sym_LBRACE_TILDE] = ACTIONS(177), - [anon_sym_TILDE] = ACTIONS(177), - [anon_sym_LBRACK_CARET] = ACTIONS(180), - [anon_sym_BANG_LBRACK] = ACTIONS(183), - [anon_sym_LBRACK] = ACTIONS(186), - [anon_sym_LBRACE2] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(189), - [anon_sym_TODO] = ACTIONS(192), - [anon_sym_WIP] = ACTIONS(192), - [anon_sym_NOTE] = ACTIONS(195), - [anon_sym_INFO] = ACTIONS(195), - [anon_sym_XXX] = ACTIONS(195), - [sym_fixme] = ACTIONS(156), - [anon_sym_PIPE] = ACTIONS(156), - [sym__whitespace1] = ACTIONS(489), - [sym__newline] = ACTIONS(201), - [aux_sym__text_token1] = ACTIONS(204), - [sym__verbatim_begin] = ACTIONS(207), - }, - [30] = { - [sym__inline] = STATE(843), - [sym__element] = STATE(116), - [sym_emphasis] = STATE(183), - [sym_emphasis_begin] = STATE(91), - [sym_strong] = STATE(183), - [sym_strong_begin] = STATE(92), - [sym__hard_line_break] = STATE(183), - [sym_hard_line_break] = STATE(183), - [sym__smart_punctuation] = STATE(183), - [sym_autolink] = STATE(183), - [sym_highlighted] = STATE(183), - [sym_insert] = STATE(183), - [sym_delete] = STATE(183), - [sym_superscript] = STATE(183), - [sym_subscript] = STATE(183), - [sym_footnote_reference] = STATE(183), - [sym__image] = STATE(183), - [sym_full_reference_image] = STATE(183), - [sym_collapsed_reference_image] = STATE(183), - [sym_inline_image] = STATE(183), - [sym__image_description] = STATE(645), - [sym__link] = STATE(183), - [sym_full_reference_link] = STATE(183), - [sym_collapsed_reference_link] = STATE(183), - [sym_inline_link] = STATE(183), - [sym_link_text] = STATE(646), - [sym__comment_with_spaces] = STATE(183), - [sym_span] = STATE(183), - [sym_raw_inline] = STATE(183), - [sym_math] = STATE(183), - [sym_verbatim] = STATE(183), - [sym__todo_highlights] = STATE(183), - [sym_todo] = STATE(183), - [sym_note] = STATE(183), - [sym__symbol_fallback] = STATE(183), - [aux_sym__text] = STATE(149), - [aux_sym__inline_repeat1] = STATE(116), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(210), - [anon_sym__] = ACTIONS(213), - [anon_sym_LBRACE_STAR] = ACTIONS(216), - [anon_sym_STAR] = ACTIONS(219), - [anon_sym_BSLASH] = ACTIONS(222), - [sym_quotation_marks] = ACTIONS(225), - [sym_ellipsis] = ACTIONS(225), - [sym_em_dash] = ACTIONS(225), - [sym_en_dash] = ACTIONS(228), - [sym_backslash_escape] = ACTIONS(228), - [anon_sym_LT] = ACTIONS(231), - [anon_sym_LBRACE_EQ] = ACTIONS(234), - [anon_sym_LBRACE_PLUS] = ACTIONS(237), - [anon_sym_LBRACE_DASH] = ACTIONS(240), - [sym_symbol] = ACTIONS(225), - [anon_sym_LBRACE_CARET] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(243), - [anon_sym_LBRACE_TILDE] = ACTIONS(246), - [anon_sym_TILDE] = ACTIONS(501), - [anon_sym_TILDE_RBRACE] = ACTIONS(93), - [anon_sym_LBRACK_CARET] = ACTIONS(249), - [anon_sym_BANG_LBRACK] = ACTIONS(252), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_LBRACE2] = ACTIONS(228), - [anon_sym_DOLLAR] = ACTIONS(258), - [anon_sym_TODO] = ACTIONS(261), - [anon_sym_WIP] = ACTIONS(261), - [anon_sym_NOTE] = ACTIONS(264), - [anon_sym_INFO] = ACTIONS(264), - [anon_sym_XXX] = ACTIONS(264), - [sym_fixme] = ACTIONS(225), - [anon_sym_PIPE] = ACTIONS(225), - [sym__whitespace1] = ACTIONS(267), - [sym__newline] = ACTIONS(270), - [aux_sym__text_token1] = ACTIONS(273), - [sym__verbatim_begin] = ACTIONS(276), - }, - [31] = { - [sym__inline] = STATE(852), - [sym__element] = STATE(77), - [sym_emphasis] = STATE(174), - [sym_emphasis_begin] = STATE(86), - [sym_strong] = STATE(174), - [sym_strong_begin] = STATE(89), - [sym__hard_line_break] = STATE(174), - [sym_hard_line_break] = STATE(174), - [sym__smart_punctuation] = STATE(174), - [sym_autolink] = STATE(174), - [sym_highlighted] = STATE(174), - [sym_insert] = STATE(174), - [sym_delete] = STATE(174), - [sym_superscript] = STATE(174), - [sym_subscript] = STATE(174), - [sym_footnote_reference] = STATE(174), - [sym__image] = STATE(174), - [sym_full_reference_image] = STATE(174), - [sym_collapsed_reference_image] = STATE(174), - [sym_inline_image] = STATE(174), - [sym__image_description] = STATE(630), - [sym__link] = STATE(174), - [sym_full_reference_link] = STATE(174), - [sym_collapsed_reference_link] = STATE(174), - [sym_inline_link] = STATE(174), - [sym_link_text] = STATE(631), - [sym__comment_with_spaces] = STATE(174), - [sym_span] = STATE(174), - [sym_raw_inline] = STATE(174), - [sym_math] = STATE(174), - [sym_verbatim] = STATE(174), - [sym__todo_highlights] = STATE(174), - [sym_todo] = STATE(174), - [sym_note] = STATE(174), - [sym__symbol_fallback] = STATE(174), - [aux_sym__text] = STATE(148), - [aux_sym__inline_repeat1] = STATE(77), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(348), - [anon_sym__] = ACTIONS(351), - [anon_sym_LBRACE_STAR] = ACTIONS(354), - [anon_sym_STAR] = ACTIONS(357), - [anon_sym_BSLASH] = ACTIONS(360), - [sym_quotation_marks] = ACTIONS(363), - [sym_ellipsis] = ACTIONS(363), - [sym_em_dash] = ACTIONS(363), - [sym_en_dash] = ACTIONS(366), - [sym_backslash_escape] = ACTIONS(366), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_LBRACE_EQ] = ACTIONS(372), - [anon_sym_LBRACE_PLUS] = ACTIONS(375), - [anon_sym_LBRACE_DASH] = ACTIONS(378), - [sym_symbol] = ACTIONS(363), - [anon_sym_LBRACE_CARET] = ACTIONS(381), - [anon_sym_CARET] = ACTIONS(381), - [anon_sym_LBRACE_TILDE] = ACTIONS(384), - [anon_sym_TILDE] = ACTIONS(504), - [anon_sym_TILDE_RBRACE] = ACTIONS(93), - [anon_sym_LBRACK_CARET] = ACTIONS(387), - [anon_sym_BANG_LBRACK] = ACTIONS(390), - [anon_sym_LBRACK] = ACTIONS(393), - [anon_sym_LBRACE2] = ACTIONS(366), - [anon_sym_DOLLAR] = ACTIONS(396), - [anon_sym_TODO] = ACTIONS(399), - [anon_sym_WIP] = ACTIONS(399), - [anon_sym_NOTE] = ACTIONS(402), - [anon_sym_INFO] = ACTIONS(402), - [anon_sym_XXX] = ACTIONS(402), - [sym_fixme] = ACTIONS(363), - [anon_sym_PIPE] = ACTIONS(363), - [sym__whitespace1] = ACTIONS(405), - [sym__newline] = ACTIONS(408), - [aux_sym__text_token1] = ACTIONS(411), - [sym__verbatim_begin] = ACTIONS(414), - }, - [32] = { - [sym__inline] = STATE(744), - [sym__element] = STATE(119), - [sym_emphasis] = STATE(197), - [sym_emphasis_begin] = STATE(81), - [sym_strong] = STATE(197), - [sym_strong_begin] = STATE(82), - [sym__hard_line_break] = STATE(197), - [sym_hard_line_break] = STATE(197), - [sym__smart_punctuation] = STATE(197), - [sym_autolink] = STATE(197), - [sym_highlighted] = STATE(197), - [sym_insert] = STATE(197), - [sym_delete] = STATE(197), - [sym_superscript] = STATE(197), - [sym_subscript] = STATE(197), - [sym_footnote_reference] = STATE(197), - [sym__image] = STATE(197), - [sym_full_reference_image] = STATE(197), - [sym_collapsed_reference_image] = STATE(197), - [sym_inline_image] = STATE(197), - [sym__image_description] = STATE(654), - [sym__link] = STATE(197), - [sym_full_reference_link] = STATE(197), - [sym_collapsed_reference_link] = STATE(197), - [sym_inline_link] = STATE(197), - [sym_link_text] = STATE(651), - [sym__comment_with_spaces] = STATE(197), - [sym_span] = STATE(197), - [sym_raw_inline] = STATE(197), - [sym_math] = STATE(197), - [sym_verbatim] = STATE(197), - [sym__todo_highlights] = STATE(197), - [sym_todo] = STATE(197), - [sym_note] = STATE(197), - [sym__symbol_fallback] = STATE(197), - [aux_sym__text] = STATE(132), - [aux_sym__inline_repeat1] = STATE(119), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(279), - [anon_sym__] = ACTIONS(507), - [aux_sym_emphasis_end_token1] = ACTIONS(93), - [anon_sym_LBRACE_STAR] = ACTIONS(285), - [anon_sym_STAR] = ACTIONS(288), - [anon_sym_BSLASH] = ACTIONS(291), - [sym_quotation_marks] = ACTIONS(294), - [sym_ellipsis] = ACTIONS(294), - [sym_em_dash] = ACTIONS(294), - [sym_en_dash] = ACTIONS(297), - [sym_backslash_escape] = ACTIONS(297), - [anon_sym_LT] = ACTIONS(300), - [anon_sym_LBRACE_EQ] = ACTIONS(303), - [anon_sym_LBRACE_PLUS] = ACTIONS(306), - [anon_sym_LBRACE_DASH] = ACTIONS(309), - [sym_symbol] = ACTIONS(294), - [anon_sym_LBRACE_CARET] = ACTIONS(312), - [anon_sym_CARET] = ACTIONS(312), - [anon_sym_LBRACE_TILDE] = ACTIONS(315), - [anon_sym_TILDE] = ACTIONS(315), - [anon_sym_LBRACK_CARET] = ACTIONS(318), - [anon_sym_BANG_LBRACK] = ACTIONS(321), - [anon_sym_LBRACK] = ACTIONS(324), - [anon_sym_LBRACE2] = ACTIONS(297), - [anon_sym_DOLLAR] = ACTIONS(327), - [anon_sym_TODO] = ACTIONS(330), - [anon_sym_WIP] = ACTIONS(330), - [anon_sym_NOTE] = ACTIONS(333), - [anon_sym_INFO] = ACTIONS(333), - [anon_sym_XXX] = ACTIONS(333), - [sym_fixme] = ACTIONS(294), - [anon_sym_PIPE] = ACTIONS(294), - [sym__whitespace1] = ACTIONS(510), - [sym__newline] = ACTIONS(339), - [aux_sym__text_token1] = ACTIONS(342), - [sym__verbatim_begin] = ACTIONS(345), + [aux_sym__text] = STATE(144), + [aux_sym__inline_repeat1] = STATE(97), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_] = ACTIONS(49), + [anon_sym__] = ACTIONS(52), + [anon_sym_LBRACE_STAR] = ACTIONS(55), + [anon_sym_STAR] = ACTIONS(58), + [anon_sym_BSLASH] = ACTIONS(61), + [sym_quotation_marks] = ACTIONS(52), + [sym_ellipsis] = ACTIONS(52), + [sym_em_dash] = ACTIONS(52), + [sym_en_dash] = ACTIONS(64), + [sym_backslash_escape] = ACTIONS(64), + [anon_sym_LT] = ACTIONS(67), + [anon_sym_LBRACE_EQ] = ACTIONS(70), + [anon_sym_LBRACE_PLUS] = ACTIONS(73), + [anon_sym_LBRACE_DASH] = ACTIONS(76), + [sym_symbol] = ACTIONS(52), + [anon_sym_LBRACE_CARET] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_LBRACE_TILDE] = ACTIONS(84), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_TILDE_RBRACE] = ACTIONS(79), + [anon_sym_LBRACK_CARET] = ACTIONS(87), + [anon_sym_RBRACK] = ACTIONS(90), + [anon_sym_BANG_LBRACK] = ACTIONS(92), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACE2] = ACTIONS(64), + [anon_sym_DOLLAR] = ACTIONS(98), + [anon_sym_TODO] = ACTIONS(101), + [anon_sym_WIP] = ACTIONS(101), + [anon_sym_NOTE] = ACTIONS(104), + [anon_sym_INFO] = ACTIONS(104), + [anon_sym_XXX] = ACTIONS(104), + [sym_fixme] = ACTIONS(52), + [anon_sym_PIPE] = ACTIONS(52), + [sym__whitespace1] = ACTIONS(107), + [sym__newline] = ACTIONS(110), + [aux_sym__text_token1] = ACTIONS(113), + [sym__verbatim_begin] = ACTIONS(116), }, - [33] = { - [sym__inline] = STATE(745), - [sym__element] = STATE(77), - [sym_emphasis] = STATE(174), - [sym_emphasis_begin] = STATE(86), - [sym_strong] = STATE(174), - [sym_strong_begin] = STATE(89), - [sym__hard_line_break] = STATE(174), - [sym_hard_line_break] = STATE(174), - [sym__smart_punctuation] = STATE(174), - [sym_autolink] = STATE(174), - [sym_highlighted] = STATE(174), - [sym_insert] = STATE(174), - [sym_delete] = STATE(174), - [sym_superscript] = STATE(174), - [sym_subscript] = STATE(174), - [sym_footnote_reference] = STATE(174), - [sym__image] = STATE(174), - [sym_full_reference_image] = STATE(174), - [sym_collapsed_reference_image] = STATE(174), - [sym_inline_image] = STATE(174), - [sym__image_description] = STATE(630), - [sym__link] = STATE(174), - [sym_full_reference_link] = STATE(174), - [sym_collapsed_reference_link] = STATE(174), - [sym_inline_link] = STATE(174), - [sym_link_text] = STATE(631), - [sym__comment_with_spaces] = STATE(174), - [sym_span] = STATE(174), - [sym_raw_inline] = STATE(174), - [sym_math] = STATE(174), - [sym_verbatim] = STATE(174), - [sym__todo_highlights] = STATE(174), - [sym_todo] = STATE(174), - [sym_note] = STATE(174), - [sym__symbol_fallback] = STATE(174), - [aux_sym__text] = STATE(148), - [aux_sym__inline_repeat1] = STATE(77), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(348), - [anon_sym__] = ACTIONS(513), - [aux_sym_emphasis_end_token1] = ACTIONS(93), - [anon_sym_LBRACE_STAR] = ACTIONS(354), - [anon_sym_STAR] = ACTIONS(357), - [anon_sym_BSLASH] = ACTIONS(360), - [sym_quotation_marks] = ACTIONS(363), - [sym_ellipsis] = ACTIONS(363), - [sym_em_dash] = ACTIONS(363), - [sym_en_dash] = ACTIONS(366), - [sym_backslash_escape] = ACTIONS(366), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_LBRACE_EQ] = ACTIONS(372), - [anon_sym_LBRACE_PLUS] = ACTIONS(375), - [anon_sym_LBRACE_DASH] = ACTIONS(378), - [sym_symbol] = ACTIONS(363), - [anon_sym_LBRACE_CARET] = ACTIONS(381), - [anon_sym_CARET] = ACTIONS(381), - [anon_sym_LBRACE_TILDE] = ACTIONS(384), - [anon_sym_TILDE] = ACTIONS(384), - [anon_sym_LBRACK_CARET] = ACTIONS(387), - [anon_sym_BANG_LBRACK] = ACTIONS(390), - [anon_sym_LBRACK] = ACTIONS(393), - [anon_sym_LBRACE2] = ACTIONS(366), - [anon_sym_DOLLAR] = ACTIONS(396), - [anon_sym_TODO] = ACTIONS(399), - [anon_sym_WIP] = ACTIONS(399), - [anon_sym_NOTE] = ACTIONS(402), - [anon_sym_INFO] = ACTIONS(402), - [anon_sym_XXX] = ACTIONS(402), - [sym_fixme] = ACTIONS(363), - [anon_sym_PIPE] = ACTIONS(363), - [sym__whitespace1] = ACTIONS(516), - [sym__newline] = ACTIONS(408), - [aux_sym__text_token1] = ACTIONS(411), - [sym__verbatim_begin] = ACTIONS(414), - }, - [34] = { - [sym__inline] = STATE(746), - [sym__element] = STATE(116), - [sym_emphasis] = STATE(183), - [sym_emphasis_begin] = STATE(91), - [sym_strong] = STATE(183), - [sym_strong_begin] = STATE(92), - [sym__hard_line_break] = STATE(183), - [sym_hard_line_break] = STATE(183), - [sym__smart_punctuation] = STATE(183), - [sym_autolink] = STATE(183), - [sym_highlighted] = STATE(183), - [sym_insert] = STATE(183), - [sym_delete] = STATE(183), - [sym_superscript] = STATE(183), - [sym_subscript] = STATE(183), - [sym_footnote_reference] = STATE(183), - [sym__image] = STATE(183), - [sym_full_reference_image] = STATE(183), - [sym_collapsed_reference_image] = STATE(183), - [sym_inline_image] = STATE(183), - [sym__image_description] = STATE(645), - [sym__link] = STATE(183), - [sym_full_reference_link] = STATE(183), - [sym_collapsed_reference_link] = STATE(183), - [sym_inline_link] = STATE(183), - [sym_link_text] = STATE(646), - [sym__comment_with_spaces] = STATE(183), - [sym_span] = STATE(183), - [sym_raw_inline] = STATE(183), - [sym_math] = STATE(183), - [sym_verbatim] = STATE(183), - [sym__todo_highlights] = STATE(183), - [sym_todo] = STATE(183), - [sym_note] = STATE(183), - [sym__symbol_fallback] = STATE(183), - [aux_sym__text] = STATE(149), - [aux_sym__inline_repeat1] = STATE(116), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(210), - [anon_sym__] = ACTIONS(519), - [aux_sym_emphasis_end_token1] = ACTIONS(93), - [anon_sym_LBRACE_STAR] = ACTIONS(216), - [anon_sym_STAR] = ACTIONS(219), - [anon_sym_BSLASH] = ACTIONS(222), - [sym_quotation_marks] = ACTIONS(225), - [sym_ellipsis] = ACTIONS(225), - [sym_em_dash] = ACTIONS(225), - [sym_en_dash] = ACTIONS(228), - [sym_backslash_escape] = ACTIONS(228), - [anon_sym_LT] = ACTIONS(231), - [anon_sym_LBRACE_EQ] = ACTIONS(234), - [anon_sym_LBRACE_PLUS] = ACTIONS(237), - [anon_sym_LBRACE_DASH] = ACTIONS(240), - [sym_symbol] = ACTIONS(225), - [anon_sym_LBRACE_CARET] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(243), - [anon_sym_LBRACE_TILDE] = ACTIONS(246), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_LBRACK_CARET] = ACTIONS(249), - [anon_sym_BANG_LBRACK] = ACTIONS(252), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_LBRACE2] = ACTIONS(228), - [anon_sym_DOLLAR] = ACTIONS(258), - [anon_sym_TODO] = ACTIONS(261), - [anon_sym_WIP] = ACTIONS(261), - [anon_sym_NOTE] = ACTIONS(264), - [anon_sym_INFO] = ACTIONS(264), - [anon_sym_XXX] = ACTIONS(264), - [sym_fixme] = ACTIONS(225), - [anon_sym_PIPE] = ACTIONS(225), - [sym__whitespace1] = ACTIONS(522), - [sym__newline] = ACTIONS(270), - [aux_sym__text_token1] = ACTIONS(273), - [sym__verbatim_begin] = ACTIONS(276), - }, - [35] = { - [sym__inline] = STATE(706), - [sym__element] = STATE(85), - [sym_emphasis] = STATE(175), - [sym_emphasis_begin] = STATE(94), - [sym_strong] = STATE(175), - [sym_strong_begin] = STATE(95), - [sym__hard_line_break] = STATE(175), - [sym_hard_line_break] = STATE(175), - [sym__smart_punctuation] = STATE(175), - [sym_autolink] = STATE(175), - [sym_highlighted] = STATE(175), - [sym_insert] = STATE(175), - [sym_delete] = STATE(175), - [sym_superscript] = STATE(175), - [sym_subscript] = STATE(175), - [sym_footnote_reference] = STATE(175), - [sym__image] = STATE(175), - [sym_full_reference_image] = STATE(175), - [sym_collapsed_reference_image] = STATE(175), - [sym_inline_image] = STATE(175), - [sym__image_description] = STATE(652), - [sym__link] = STATE(175), - [sym_full_reference_link] = STATE(175), - [sym_collapsed_reference_link] = STATE(175), - [sym_inline_link] = STATE(175), - [sym_link_text] = STATE(649), - [sym__comment_with_spaces] = STATE(175), - [sym_span] = STATE(175), - [sym_raw_inline] = STATE(175), - [sym_math] = STATE(175), - [sym_verbatim] = STATE(175), - [sym__todo_highlights] = STATE(175), - [sym_todo] = STATE(175), - [sym_note] = STATE(175), - [sym__symbol_fallback] = STATE(175), - [aux_sym__text] = STATE(156), - [aux_sym__inline_repeat1] = STATE(85), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(417), - [anon_sym__] = ACTIONS(525), - [aux_sym_emphasis_end_token1] = ACTIONS(93), - [anon_sym_LBRACE_STAR] = ACTIONS(423), - [anon_sym_STAR] = ACTIONS(426), - [anon_sym_BSLASH] = ACTIONS(429), - [sym_quotation_marks] = ACTIONS(432), - [sym_ellipsis] = ACTIONS(432), - [sym_em_dash] = ACTIONS(432), - [sym_en_dash] = ACTIONS(435), - [sym_backslash_escape] = ACTIONS(435), - [anon_sym_LT] = ACTIONS(438), - [anon_sym_LBRACE_EQ] = ACTIONS(441), - [anon_sym_LBRACE_PLUS] = ACTIONS(444), - [anon_sym_LBRACE_DASH] = ACTIONS(447), - [sym_symbol] = ACTIONS(432), - [anon_sym_LBRACE_CARET] = ACTIONS(450), - [anon_sym_CARET] = ACTIONS(450), - [anon_sym_LBRACE_TILDE] = ACTIONS(453), - [anon_sym_TILDE] = ACTIONS(453), - [anon_sym_LBRACK_CARET] = ACTIONS(456), - [anon_sym_BANG_LBRACK] = ACTIONS(459), - [anon_sym_LBRACK] = ACTIONS(462), - [anon_sym_LBRACE2] = ACTIONS(435), - [anon_sym_DOLLAR] = ACTIONS(465), - [anon_sym_TODO] = ACTIONS(468), - [anon_sym_WIP] = ACTIONS(468), - [anon_sym_NOTE] = ACTIONS(471), - [anon_sym_INFO] = ACTIONS(471), - [anon_sym_XXX] = ACTIONS(471), - [sym_fixme] = ACTIONS(432), - [anon_sym_PIPE] = ACTIONS(432), - [sym__whitespace1] = ACTIONS(528), - [sym__newline] = ACTIONS(477), - [aux_sym__text_token1] = ACTIONS(480), - [sym__verbatim_begin] = ACTIONS(483), - }, - [36] = { - [sym__inline] = STATE(708), - [sym__element] = STATE(120), + [7] = { + [sym__inline] = STATE(722), + [sym__element] = STATE(97), [sym_emphasis] = STATE(182), - [sym_emphasis_begin] = STATE(97), + [sym_emphasis_begin] = STATE(898), [sym_strong] = STATE(182), - [sym_strong_begin] = STATE(99), + [sym_strong_begin] = STATE(104), [sym__hard_line_break] = STATE(182), [sym_hard_line_break] = STATE(182), [sym__smart_punctuation] = STATE(182), @@ -10774,12 +8190,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_full_reference_image] = STATE(182), [sym_collapsed_reference_image] = STATE(182), [sym_inline_image] = STATE(182), - [sym__image_description] = STATE(628), + [sym__image_description] = STATE(610), [sym__link] = STATE(182), [sym_full_reference_link] = STATE(182), [sym_collapsed_reference_link] = STATE(182), [sym_inline_link] = STATE(182), - [sym_link_text] = STATE(627), + [sym_link_text] = STATE(608), [sym__comment_with_spaces] = STATE(182), [sym_span] = STATE(182), [sym_raw_inline] = STATE(182), @@ -10789,509 +8205,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(182), [sym_note] = STATE(182), [sym__symbol_fallback] = STATE(182), - [aux_sym__text] = STATE(136), - [aux_sym__inline_repeat1] = STATE(120), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(141), - [anon_sym__] = ACTIONS(486), - [anon_sym_LBRACE_STAR] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(531), - [aux_sym_strong_end_token1] = ACTIONS(93), - [anon_sym_BSLASH] = ACTIONS(153), - [sym_quotation_marks] = ACTIONS(156), - [sym_ellipsis] = ACTIONS(156), - [sym_em_dash] = ACTIONS(156), - [sym_en_dash] = ACTIONS(159), - [sym_backslash_escape] = ACTIONS(159), - [anon_sym_LT] = ACTIONS(162), - [anon_sym_LBRACE_EQ] = ACTIONS(165), - [anon_sym_LBRACE_PLUS] = ACTIONS(168), - [anon_sym_LBRACE_DASH] = ACTIONS(171), - [sym_symbol] = ACTIONS(156), - [anon_sym_LBRACE_CARET] = ACTIONS(174), - [anon_sym_CARET] = ACTIONS(174), - [anon_sym_LBRACE_TILDE] = ACTIONS(177), - [anon_sym_TILDE] = ACTIONS(177), - [anon_sym_LBRACK_CARET] = ACTIONS(180), - [anon_sym_BANG_LBRACK] = ACTIONS(183), - [anon_sym_LBRACK] = ACTIONS(186), - [anon_sym_LBRACE2] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(189), - [anon_sym_TODO] = ACTIONS(192), - [anon_sym_WIP] = ACTIONS(192), - [anon_sym_NOTE] = ACTIONS(195), - [anon_sym_INFO] = ACTIONS(195), - [anon_sym_XXX] = ACTIONS(195), - [sym_fixme] = ACTIONS(156), - [anon_sym_PIPE] = ACTIONS(156), - [sym__whitespace1] = ACTIONS(198), - [sym__newline] = ACTIONS(201), - [aux_sym__text_token1] = ACTIONS(204), - [sym__verbatim_begin] = ACTIONS(207), - }, - [37] = { - [sym__inline] = STATE(861), - [sym__element] = STATE(119), - [sym_emphasis] = STATE(197), - [sym_emphasis_begin] = STATE(81), - [sym_strong] = STATE(197), - [sym_strong_begin] = STATE(82), - [sym__hard_line_break] = STATE(197), - [sym_hard_line_break] = STATE(197), - [sym__smart_punctuation] = STATE(197), - [sym_autolink] = STATE(197), - [sym_highlighted] = STATE(197), - [sym_insert] = STATE(197), - [sym_delete] = STATE(197), - [sym_superscript] = STATE(197), - [sym_subscript] = STATE(197), - [sym_footnote_reference] = STATE(197), - [sym__image] = STATE(197), - [sym_full_reference_image] = STATE(197), - [sym_collapsed_reference_image] = STATE(197), - [sym_inline_image] = STATE(197), - [sym__image_description] = STATE(654), - [sym__link] = STATE(197), - [sym_full_reference_link] = STATE(197), - [sym_collapsed_reference_link] = STATE(197), - [sym_inline_link] = STATE(197), - [sym_link_text] = STATE(651), - [sym__comment_with_spaces] = STATE(197), - [sym_span] = STATE(197), - [sym_raw_inline] = STATE(197), - [sym_math] = STATE(197), - [sym_verbatim] = STATE(197), - [sym__todo_highlights] = STATE(197), - [sym_todo] = STATE(197), - [sym_note] = STATE(197), - [sym__symbol_fallback] = STATE(197), - [aux_sym__text] = STATE(132), - [aux_sym__inline_repeat1] = STATE(119), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(279), - [anon_sym__] = ACTIONS(282), - [anon_sym_LBRACE_STAR] = ACTIONS(285), - [anon_sym_STAR] = ACTIONS(288), - [anon_sym_BSLASH] = ACTIONS(291), - [sym_quotation_marks] = ACTIONS(294), - [sym_ellipsis] = ACTIONS(294), - [sym_em_dash] = ACTIONS(294), - [sym_en_dash] = ACTIONS(297), - [sym_backslash_escape] = ACTIONS(297), - [anon_sym_LT] = ACTIONS(300), - [anon_sym_LBRACE_EQ] = ACTIONS(303), - [anon_sym_LBRACE_PLUS] = ACTIONS(306), - [anon_sym_LBRACE_DASH] = ACTIONS(309), - [sym_symbol] = ACTIONS(294), - [anon_sym_LBRACE_CARET] = ACTIONS(312), - [anon_sym_CARET] = ACTIONS(312), - [anon_sym_LBRACE_TILDE] = ACTIONS(315), - [anon_sym_TILDE] = ACTIONS(534), - [anon_sym_TILDE_RBRACE] = ACTIONS(93), - [anon_sym_LBRACK_CARET] = ACTIONS(318), - [anon_sym_BANG_LBRACK] = ACTIONS(321), - [anon_sym_LBRACK] = ACTIONS(324), - [anon_sym_LBRACE2] = ACTIONS(297), - [anon_sym_DOLLAR] = ACTIONS(327), - [anon_sym_TODO] = ACTIONS(330), - [anon_sym_WIP] = ACTIONS(330), - [anon_sym_NOTE] = ACTIONS(333), - [anon_sym_INFO] = ACTIONS(333), - [anon_sym_XXX] = ACTIONS(333), - [sym_fixme] = ACTIONS(294), - [anon_sym_PIPE] = ACTIONS(294), - [sym__whitespace1] = ACTIONS(336), - [sym__newline] = ACTIONS(339), - [aux_sym__text_token1] = ACTIONS(342), - [sym__verbatim_begin] = ACTIONS(345), - }, - [38] = { - [sym__inline] = STATE(850), - [sym__element] = STATE(103), - [sym_emphasis] = STATE(200), - [sym_emphasis_begin] = STATE(101), - [sym_strong] = STATE(200), - [sym_strong_begin] = STATE(104), - [sym__hard_line_break] = STATE(200), - [sym_hard_line_break] = STATE(200), - [sym__smart_punctuation] = STATE(200), - [sym_autolink] = STATE(200), - [sym_highlighted] = STATE(200), - [sym_insert] = STATE(200), - [sym_delete] = STATE(200), - [sym_superscript] = STATE(200), - [sym_subscript] = STATE(200), - [sym_footnote_reference] = STATE(200), - [sym__image] = STATE(200), - [sym_full_reference_image] = STATE(200), - [sym_collapsed_reference_image] = STATE(200), - [sym_inline_image] = STATE(200), - [sym__image_description] = STATE(642), - [sym__link] = STATE(200), - [sym_full_reference_link] = STATE(200), - [sym_collapsed_reference_link] = STATE(200), - [sym_inline_link] = STATE(200), - [sym_link_text] = STATE(643), - [sym__comment_with_spaces] = STATE(200), - [sym_span] = STATE(200), - [sym_raw_inline] = STATE(200), - [sym_math] = STATE(200), - [sym_verbatim] = STATE(200), - [sym__todo_highlights] = STATE(200), - [sym_todo] = STATE(200), - [sym_note] = STATE(200), - [sym__symbol_fallback] = STATE(200), - [aux_sym__text] = STATE(138), - [aux_sym__inline_repeat1] = STATE(103), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(51), - [anon_sym__] = ACTIONS(54), - [anon_sym_LBRACE_STAR] = ACTIONS(57), - [anon_sym_STAR] = ACTIONS(60), - [anon_sym_BSLASH] = ACTIONS(63), - [sym_quotation_marks] = ACTIONS(66), - [sym_ellipsis] = ACTIONS(66), - [sym_em_dash] = ACTIONS(66), - [sym_en_dash] = ACTIONS(69), - [sym_backslash_escape] = ACTIONS(69), - [anon_sym_LT] = ACTIONS(72), - [anon_sym_LBRACE_EQ] = ACTIONS(75), - [anon_sym_LBRACE_PLUS] = ACTIONS(78), - [anon_sym_LBRACE_DASH] = ACTIONS(81), - [sym_symbol] = ACTIONS(66), - [anon_sym_LBRACE_CARET] = ACTIONS(84), - [anon_sym_CARET] = ACTIONS(84), - [anon_sym_LBRACE_TILDE] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(90), - [anon_sym_TILDE_RBRACE] = ACTIONS(93), - [anon_sym_LBRACK_CARET] = ACTIONS(95), - [anon_sym_BANG_LBRACK] = ACTIONS(100), - [anon_sym_LBRACK] = ACTIONS(103), - [anon_sym_LBRACE2] = ACTIONS(69), - [anon_sym_DOLLAR] = ACTIONS(106), - [anon_sym_TODO] = ACTIONS(109), - [anon_sym_WIP] = ACTIONS(109), - [anon_sym_NOTE] = ACTIONS(112), - [anon_sym_INFO] = ACTIONS(112), - [anon_sym_XXX] = ACTIONS(112), - [sym_fixme] = ACTIONS(66), - [anon_sym_PIPE] = ACTIONS(66), - [sym__whitespace1] = ACTIONS(115), - [sym__newline] = ACTIONS(118), - [aux_sym__text_token1] = ACTIONS(121), - [sym__verbatim_begin] = ACTIONS(124), - }, - [39] = { - [sym__inline] = STATE(868), - [sym__element] = STATE(103), - [sym_emphasis] = STATE(200), - [sym_emphasis_begin] = STATE(101), - [sym_strong] = STATE(200), - [sym_strong_begin] = STATE(104), - [sym__hard_line_break] = STATE(200), - [sym_hard_line_break] = STATE(200), - [sym__smart_punctuation] = STATE(200), - [sym_autolink] = STATE(200), - [sym_highlighted] = STATE(200), - [sym_insert] = STATE(200), - [sym_delete] = STATE(200), - [sym_superscript] = STATE(200), - [sym_subscript] = STATE(200), - [sym_footnote_reference] = STATE(200), - [sym__image] = STATE(200), - [sym_full_reference_image] = STATE(200), - [sym_collapsed_reference_image] = STATE(200), - [sym_inline_image] = STATE(200), - [sym__image_description] = STATE(642), - [sym__link] = STATE(200), - [sym_full_reference_link] = STATE(200), - [sym_collapsed_reference_link] = STATE(200), - [sym_inline_link] = STATE(200), - [sym_link_text] = STATE(643), - [sym__comment_with_spaces] = STATE(200), - [sym_span] = STATE(200), - [sym_raw_inline] = STATE(200), - [sym_math] = STATE(200), - [sym_verbatim] = STATE(200), - [sym__todo_highlights] = STATE(200), - [sym_todo] = STATE(200), - [sym_note] = STATE(200), - [sym__symbol_fallback] = STATE(200), - [aux_sym__text] = STATE(138), - [aux_sym__inline_repeat1] = STATE(103), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(51), - [anon_sym__] = ACTIONS(138), - [aux_sym_emphasis_end_token1] = ACTIONS(93), - [anon_sym_LBRACE_STAR] = ACTIONS(57), - [anon_sym_STAR] = ACTIONS(60), - [anon_sym_BSLASH] = ACTIONS(63), - [sym_quotation_marks] = ACTIONS(66), - [sym_ellipsis] = ACTIONS(66), - [sym_em_dash] = ACTIONS(66), - [sym_en_dash] = ACTIONS(69), - [sym_backslash_escape] = ACTIONS(69), - [anon_sym_LT] = ACTIONS(72), - [anon_sym_LBRACE_EQ] = ACTIONS(75), - [anon_sym_LBRACE_PLUS] = ACTIONS(78), - [anon_sym_LBRACE_DASH] = ACTIONS(81), - [sym_symbol] = ACTIONS(66), - [anon_sym_LBRACE_CARET] = ACTIONS(84), - [anon_sym_CARET] = ACTIONS(84), - [anon_sym_LBRACE_TILDE] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(87), - [anon_sym_LBRACK_CARET] = ACTIONS(95), - [anon_sym_BANG_LBRACK] = ACTIONS(100), - [anon_sym_LBRACK] = ACTIONS(103), - [anon_sym_LBRACE2] = ACTIONS(69), - [anon_sym_DOLLAR] = ACTIONS(106), - [anon_sym_TODO] = ACTIONS(109), - [anon_sym_WIP] = ACTIONS(109), - [anon_sym_NOTE] = ACTIONS(112), - [anon_sym_INFO] = ACTIONS(112), - [anon_sym_XXX] = ACTIONS(112), - [sym_fixme] = ACTIONS(66), - [anon_sym_PIPE] = ACTIONS(66), - [sym__whitespace1] = ACTIONS(130), - [sym__newline] = ACTIONS(118), - [aux_sym__text_token1] = ACTIONS(121), - [sym__verbatim_begin] = ACTIONS(124), - }, - [40] = { - [sym__inline] = STATE(804), - [sym__element] = STATE(77), - [sym_emphasis] = STATE(174), - [sym_emphasis_begin] = STATE(86), - [sym_strong] = STATE(174), - [sym_strong_begin] = STATE(89), - [sym__hard_line_break] = STATE(174), - [sym_hard_line_break] = STATE(174), - [sym__smart_punctuation] = STATE(174), - [sym_autolink] = STATE(174), - [sym_highlighted] = STATE(174), - [sym_insert] = STATE(174), - [sym_delete] = STATE(174), - [sym_superscript] = STATE(174), - [sym_subscript] = STATE(174), - [sym_footnote_reference] = STATE(174), - [sym__image] = STATE(174), - [sym_full_reference_image] = STATE(174), - [sym_collapsed_reference_image] = STATE(174), - [sym_inline_image] = STATE(174), - [sym__image_description] = STATE(630), - [sym__link] = STATE(174), - [sym_full_reference_link] = STATE(174), - [sym_collapsed_reference_link] = STATE(174), - [sym_inline_link] = STATE(174), - [sym_link_text] = STATE(631), - [sym__comment_with_spaces] = STATE(174), - [sym_span] = STATE(174), - [sym_raw_inline] = STATE(174), - [sym_math] = STATE(174), - [sym_verbatim] = STATE(174), - [sym__todo_highlights] = STATE(174), - [sym_todo] = STATE(174), - [sym_note] = STATE(174), - [sym__symbol_fallback] = STATE(174), - [aux_sym__text] = STATE(148), - [aux_sym__inline_repeat1] = STATE(77), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(348), - [anon_sym__] = ACTIONS(351), - [anon_sym_LBRACE_STAR] = ACTIONS(354), - [anon_sym_STAR] = ACTIONS(357), - [anon_sym_BSLASH] = ACTIONS(360), - [sym_quotation_marks] = ACTIONS(363), - [sym_ellipsis] = ACTIONS(363), - [sym_em_dash] = ACTIONS(363), - [sym_en_dash] = ACTIONS(366), - [sym_backslash_escape] = ACTIONS(366), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_LBRACE_EQ] = ACTIONS(372), - [anon_sym_EQ_RBRACE] = ACTIONS(93), - [anon_sym_LBRACE_PLUS] = ACTIONS(375), - [anon_sym_LBRACE_DASH] = ACTIONS(378), - [sym_symbol] = ACTIONS(363), - [anon_sym_LBRACE_CARET] = ACTIONS(381), - [anon_sym_CARET] = ACTIONS(381), - [anon_sym_LBRACE_TILDE] = ACTIONS(384), - [anon_sym_TILDE] = ACTIONS(384), - [anon_sym_LBRACK_CARET] = ACTIONS(387), - [anon_sym_BANG_LBRACK] = ACTIONS(390), - [anon_sym_LBRACK] = ACTIONS(393), - [anon_sym_LBRACE2] = ACTIONS(366), - [anon_sym_DOLLAR] = ACTIONS(396), - [anon_sym_TODO] = ACTIONS(399), - [anon_sym_WIP] = ACTIONS(399), - [anon_sym_NOTE] = ACTIONS(402), - [anon_sym_INFO] = ACTIONS(402), - [anon_sym_XXX] = ACTIONS(402), - [sym_fixme] = ACTIONS(363), - [anon_sym_PIPE] = ACTIONS(363), - [sym__whitespace1] = ACTIONS(405), - [sym__newline] = ACTIONS(408), - [aux_sym__text_token1] = ACTIONS(411), - [sym__verbatim_begin] = ACTIONS(414), - }, - [41] = { - [sym__inline] = STATE(841), - [sym__element] = STATE(103), - [sym_emphasis] = STATE(200), - [sym_emphasis_begin] = STATE(101), - [sym_strong] = STATE(200), - [sym_strong_begin] = STATE(104), - [sym__hard_line_break] = STATE(200), - [sym_hard_line_break] = STATE(200), - [sym__smart_punctuation] = STATE(200), - [sym_autolink] = STATE(200), - [sym_highlighted] = STATE(200), - [sym_insert] = STATE(200), - [sym_delete] = STATE(200), - [sym_superscript] = STATE(200), - [sym_subscript] = STATE(200), - [sym_footnote_reference] = STATE(200), - [sym__image] = STATE(200), - [sym_full_reference_image] = STATE(200), - [sym_collapsed_reference_image] = STATE(200), - [sym_inline_image] = STATE(200), - [sym__image_description] = STATE(642), - [sym__link] = STATE(200), - [sym_full_reference_link] = STATE(200), - [sym_collapsed_reference_link] = STATE(200), - [sym_inline_link] = STATE(200), - [sym_link_text] = STATE(643), - [sym__comment_with_spaces] = STATE(200), - [sym_span] = STATE(200), - [sym_raw_inline] = STATE(200), - [sym_math] = STATE(200), - [sym_verbatim] = STATE(200), - [sym__todo_highlights] = STATE(200), - [sym_todo] = STATE(200), - [sym_note] = STATE(200), - [sym__symbol_fallback] = STATE(200), - [aux_sym__text] = STATE(138), - [aux_sym__inline_repeat1] = STATE(103), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(51), - [anon_sym__] = ACTIONS(54), - [anon_sym_LBRACE_STAR] = ACTIONS(57), - [anon_sym_STAR] = ACTIONS(60), - [anon_sym_BSLASH] = ACTIONS(63), - [sym_quotation_marks] = ACTIONS(66), - [sym_ellipsis] = ACTIONS(66), - [sym_em_dash] = ACTIONS(66), - [sym_en_dash] = ACTIONS(69), - [sym_backslash_escape] = ACTIONS(69), - [anon_sym_LT] = ACTIONS(72), - [anon_sym_LBRACE_EQ] = ACTIONS(75), - [anon_sym_LBRACE_PLUS] = ACTIONS(78), - [anon_sym_LBRACE_DASH] = ACTIONS(81), - [sym_symbol] = ACTIONS(66), - [anon_sym_LBRACE_CARET] = ACTIONS(84), - [anon_sym_CARET] = ACTIONS(135), - [anon_sym_CARET_RBRACE] = ACTIONS(93), - [anon_sym_LBRACE_TILDE] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(87), - [anon_sym_LBRACK_CARET] = ACTIONS(95), - [anon_sym_BANG_LBRACK] = ACTIONS(100), - [anon_sym_LBRACK] = ACTIONS(103), - [anon_sym_LBRACE2] = ACTIONS(69), - [anon_sym_DOLLAR] = ACTIONS(106), - [anon_sym_TODO] = ACTIONS(109), - [anon_sym_WIP] = ACTIONS(109), - [anon_sym_NOTE] = ACTIONS(112), - [anon_sym_INFO] = ACTIONS(112), - [anon_sym_XXX] = ACTIONS(112), - [sym_fixme] = ACTIONS(66), - [anon_sym_PIPE] = ACTIONS(66), - [sym__whitespace1] = ACTIONS(115), - [sym__newline] = ACTIONS(118), - [aux_sym__text_token1] = ACTIONS(121), - [sym__verbatim_begin] = ACTIONS(124), + [aux_sym__text] = STATE(144), + [aux_sym__inline_repeat1] = STATE(97), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_] = ACTIONS(49), + [anon_sym__] = ACTIONS(52), + [anon_sym_LBRACE_STAR] = ACTIONS(55), + [anon_sym_STAR] = ACTIONS(58), + [anon_sym_BSLASH] = ACTIONS(61), + [sym_quotation_marks] = ACTIONS(52), + [sym_ellipsis] = ACTIONS(52), + [sym_em_dash] = ACTIONS(52), + [sym_en_dash] = ACTIONS(64), + [sym_backslash_escape] = ACTIONS(64), + [anon_sym_LT] = ACTIONS(67), + [anon_sym_LBRACE_EQ] = ACTIONS(70), + [anon_sym_LBRACE_PLUS] = ACTIONS(73), + [anon_sym_LBRACE_DASH] = ACTIONS(76), + [sym_symbol] = ACTIONS(52), + [anon_sym_LBRACE_CARET] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(130), + [anon_sym_CARET_RBRACE] = ACTIONS(79), + [anon_sym_LBRACE_TILDE] = ACTIONS(84), + [anon_sym_TILDE] = ACTIONS(84), + [anon_sym_LBRACK_CARET] = ACTIONS(87), + [anon_sym_RBRACK] = ACTIONS(90), + [anon_sym_BANG_LBRACK] = ACTIONS(92), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACE2] = ACTIONS(64), + [anon_sym_DOLLAR] = ACTIONS(98), + [anon_sym_TODO] = ACTIONS(101), + [anon_sym_WIP] = ACTIONS(101), + [anon_sym_NOTE] = ACTIONS(104), + [anon_sym_INFO] = ACTIONS(104), + [anon_sym_XXX] = ACTIONS(104), + [sym_fixme] = ACTIONS(52), + [anon_sym_PIPE] = ACTIONS(52), + [sym__whitespace1] = ACTIONS(107), + [sym__newline] = ACTIONS(110), + [aux_sym__text_token1] = ACTIONS(113), + [sym__verbatim_begin] = ACTIONS(116), }, - [42] = { - [sym__inline] = STATE(832), - [sym__element] = STATE(103), - [sym_emphasis] = STATE(200), - [sym_emphasis_begin] = STATE(101), - [sym_strong] = STATE(200), + [8] = { + [sym__inline] = STATE(722), + [sym__element] = STATE(97), + [sym_emphasis] = STATE(182), + [sym_emphasis_begin] = STATE(898), + [sym_strong] = STATE(182), [sym_strong_begin] = STATE(104), - [sym__hard_line_break] = STATE(200), - [sym_hard_line_break] = STATE(200), - [sym__smart_punctuation] = STATE(200), - [sym_autolink] = STATE(200), - [sym_highlighted] = STATE(200), - [sym_insert] = STATE(200), - [sym_delete] = STATE(200), - [sym_superscript] = STATE(200), - [sym_subscript] = STATE(200), - [sym_footnote_reference] = STATE(200), - [sym__image] = STATE(200), - [sym_full_reference_image] = STATE(200), - [sym_collapsed_reference_image] = STATE(200), - [sym_inline_image] = STATE(200), - [sym__image_description] = STATE(642), - [sym__link] = STATE(200), - [sym_full_reference_link] = STATE(200), - [sym_collapsed_reference_link] = STATE(200), - [sym_inline_link] = STATE(200), - [sym_link_text] = STATE(643), - [sym__comment_with_spaces] = STATE(200), - [sym_span] = STATE(200), - [sym_raw_inline] = STATE(200), - [sym_math] = STATE(200), - [sym_verbatim] = STATE(200), - [sym__todo_highlights] = STATE(200), - [sym_todo] = STATE(200), - [sym_note] = STATE(200), - [sym__symbol_fallback] = STATE(200), - [aux_sym__text] = STATE(138), - [aux_sym__inline_repeat1] = STATE(103), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(51), - [anon_sym__] = ACTIONS(54), - [anon_sym_LBRACE_STAR] = ACTIONS(57), - [anon_sym_STAR] = ACTIONS(60), - [anon_sym_BSLASH] = ACTIONS(63), - [sym_quotation_marks] = ACTIONS(66), - [sym_ellipsis] = ACTIONS(66), - [sym_em_dash] = ACTIONS(66), - [sym_en_dash] = ACTIONS(69), - [sym_backslash_escape] = ACTIONS(69), - [anon_sym_LT] = ACTIONS(72), - [anon_sym_LBRACE_EQ] = ACTIONS(75), - [anon_sym_LBRACE_PLUS] = ACTIONS(78), - [anon_sym_LBRACE_DASH] = ACTIONS(81), - [anon_sym_DASH_RBRACE] = ACTIONS(93), - [sym_symbol] = ACTIONS(66), - [anon_sym_LBRACE_CARET] = ACTIONS(84), - [anon_sym_CARET] = ACTIONS(84), - [anon_sym_LBRACE_TILDE] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(87), - [anon_sym_LBRACK_CARET] = ACTIONS(95), - [anon_sym_BANG_LBRACK] = ACTIONS(100), - [anon_sym_LBRACK] = ACTIONS(103), - [anon_sym_LBRACE2] = ACTIONS(69), - [anon_sym_DOLLAR] = ACTIONS(106), - [anon_sym_TODO] = ACTIONS(109), - [anon_sym_WIP] = ACTIONS(109), - [anon_sym_NOTE] = ACTIONS(112), - [anon_sym_INFO] = ACTIONS(112), - [anon_sym_XXX] = ACTIONS(112), - [sym_fixme] = ACTIONS(66), - [anon_sym_PIPE] = ACTIONS(66), - [sym__whitespace1] = ACTIONS(115), - [sym__newline] = ACTIONS(118), - [aux_sym__text_token1] = ACTIONS(121), - [sym__verbatim_begin] = ACTIONS(124), + [sym__hard_line_break] = STATE(182), + [sym_hard_line_break] = STATE(182), + [sym__smart_punctuation] = STATE(182), + [sym_autolink] = STATE(182), + [sym_highlighted] = STATE(182), + [sym_insert] = STATE(182), + [sym_delete] = STATE(182), + [sym_superscript] = STATE(182), + [sym_subscript] = STATE(182), + [sym_footnote_reference] = STATE(182), + [sym__image] = STATE(182), + [sym_full_reference_image] = STATE(182), + [sym_collapsed_reference_image] = STATE(182), + [sym_inline_image] = STATE(182), + [sym__image_description] = STATE(610), + [sym__link] = STATE(182), + [sym_full_reference_link] = STATE(182), + [sym_collapsed_reference_link] = STATE(182), + [sym_inline_link] = STATE(182), + [sym_link_text] = STATE(608), + [sym__comment_with_spaces] = STATE(182), + [sym_span] = STATE(182), + [sym_raw_inline] = STATE(182), + [sym_math] = STATE(182), + [sym_verbatim] = STATE(182), + [sym__todo_highlights] = STATE(182), + [sym_todo] = STATE(182), + [sym_note] = STATE(182), + [sym__symbol_fallback] = STATE(182), + [aux_sym__text] = STATE(144), + [aux_sym__inline_repeat1] = STATE(97), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_] = ACTIONS(49), + [anon_sym__] = ACTIONS(52), + [anon_sym_LBRACE_STAR] = ACTIONS(55), + [anon_sym_STAR] = ACTIONS(58), + [anon_sym_BSLASH] = ACTIONS(61), + [sym_quotation_marks] = ACTIONS(52), + [sym_ellipsis] = ACTIONS(52), + [sym_em_dash] = ACTIONS(52), + [sym_en_dash] = ACTIONS(64), + [sym_backslash_escape] = ACTIONS(64), + [anon_sym_LT] = ACTIONS(67), + [anon_sym_LBRACE_EQ] = ACTIONS(70), + [anon_sym_LBRACE_PLUS] = ACTIONS(73), + [anon_sym_PLUS_RBRACE] = ACTIONS(79), + [anon_sym_LBRACE_DASH] = ACTIONS(76), + [sym_symbol] = ACTIONS(52), + [anon_sym_LBRACE_CARET] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_LBRACE_TILDE] = ACTIONS(84), + [anon_sym_TILDE] = ACTIONS(84), + [anon_sym_LBRACK_CARET] = ACTIONS(87), + [anon_sym_RBRACK] = ACTIONS(90), + [anon_sym_BANG_LBRACK] = ACTIONS(92), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACE2] = ACTIONS(64), + [anon_sym_DOLLAR] = ACTIONS(98), + [anon_sym_TODO] = ACTIONS(101), + [anon_sym_WIP] = ACTIONS(101), + [anon_sym_NOTE] = ACTIONS(104), + [anon_sym_INFO] = ACTIONS(104), + [anon_sym_XXX] = ACTIONS(104), + [sym_fixme] = ACTIONS(52), + [anon_sym_PIPE] = ACTIONS(52), + [sym__whitespace1] = ACTIONS(107), + [sym__newline] = ACTIONS(110), + [aux_sym__text_token1] = ACTIONS(113), + [sym__verbatim_begin] = ACTIONS(116), }, - [43] = { - [sym__inline] = STATE(687), - [sym__element] = STATE(120), + [9] = { + [sym__inline] = STATE(722), + [sym__element] = STATE(97), [sym_emphasis] = STATE(182), - [sym_emphasis_begin] = STATE(97), + [sym_emphasis_begin] = STATE(898), [sym_strong] = STATE(182), - [sym_strong_begin] = STATE(99), + [sym_strong_begin] = STATE(104), [sym__hard_line_break] = STATE(182), [sym_hard_line_break] = STATE(182), [sym__smart_punctuation] = STATE(182), @@ -11306,12 +8344,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_full_reference_image] = STATE(182), [sym_collapsed_reference_image] = STATE(182), [sym_inline_image] = STATE(182), - [sym__image_description] = STATE(628), + [sym__image_description] = STATE(610), [sym__link] = STATE(182), [sym_full_reference_link] = STATE(182), [sym_collapsed_reference_link] = STATE(182), [sym_inline_link] = STATE(182), - [sym_link_text] = STATE(627), + [sym_link_text] = STATE(608), [sym__comment_with_spaces] = STATE(182), [sym_span] = STATE(182), [sym_raw_inline] = STATE(182), @@ -11321,129 +8359,510 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(182), [sym_note] = STATE(182), [sym__symbol_fallback] = STATE(182), - [aux_sym__text] = STATE(136), - [aux_sym__inline_repeat1] = STATE(120), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(141), - [anon_sym__] = ACTIONS(486), - [anon_sym_LBRACE_STAR] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(150), - [anon_sym_BSLASH] = ACTIONS(153), - [sym_quotation_marks] = ACTIONS(156), - [sym_ellipsis] = ACTIONS(156), - [sym_em_dash] = ACTIONS(156), - [sym_en_dash] = ACTIONS(159), - [sym_backslash_escape] = ACTIONS(159), - [anon_sym_LT] = ACTIONS(162), - [anon_sym_LBRACE_EQ] = ACTIONS(165), - [anon_sym_LBRACE_PLUS] = ACTIONS(168), - [anon_sym_LBRACE_DASH] = ACTIONS(171), - [sym_symbol] = ACTIONS(156), - [anon_sym_LBRACE_CARET] = ACTIONS(174), - [anon_sym_CARET] = ACTIONS(537), - [anon_sym_CARET_RBRACE] = ACTIONS(93), - [anon_sym_LBRACE_TILDE] = ACTIONS(177), - [anon_sym_TILDE] = ACTIONS(177), - [anon_sym_LBRACK_CARET] = ACTIONS(180), - [anon_sym_BANG_LBRACK] = ACTIONS(183), - [anon_sym_LBRACK] = ACTIONS(186), - [anon_sym_LBRACE2] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(189), - [anon_sym_TODO] = ACTIONS(192), - [anon_sym_WIP] = ACTIONS(192), - [anon_sym_NOTE] = ACTIONS(195), - [anon_sym_INFO] = ACTIONS(195), - [anon_sym_XXX] = ACTIONS(195), - [sym_fixme] = ACTIONS(156), - [anon_sym_PIPE] = ACTIONS(156), - [sym__whitespace1] = ACTIONS(489), - [sym__newline] = ACTIONS(201), - [aux_sym__text_token1] = ACTIONS(204), - [sym__verbatim_begin] = ACTIONS(207), + [aux_sym__text] = STATE(144), + [aux_sym__inline_repeat1] = STATE(97), + [ts_builtin_sym_end] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_] = ACTIONS(49), + [anon_sym__] = ACTIONS(52), + [anon_sym_LBRACE_STAR] = ACTIONS(55), + [anon_sym_STAR] = ACTIONS(58), + [anon_sym_BSLASH] = ACTIONS(61), + [sym_quotation_marks] = ACTIONS(52), + [sym_ellipsis] = ACTIONS(52), + [sym_em_dash] = ACTIONS(52), + [sym_en_dash] = ACTIONS(64), + [sym_backslash_escape] = ACTIONS(64), + [anon_sym_LT] = ACTIONS(67), + [anon_sym_LBRACE_EQ] = ACTIONS(70), + [anon_sym_LBRACE_PLUS] = ACTIONS(73), + [anon_sym_LBRACE_DASH] = ACTIONS(76), + [sym_symbol] = ACTIONS(52), + [anon_sym_LBRACE_CARET] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_LBRACE_TILDE] = ACTIONS(84), + [anon_sym_TILDE] = ACTIONS(84), + [anon_sym_LBRACK_CARET] = ACTIONS(87), + [anon_sym_RBRACK] = ACTIONS(90), + [anon_sym_BANG_LBRACK] = ACTIONS(92), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACE2] = ACTIONS(64), + [anon_sym_DOLLAR] = ACTIONS(98), + [anon_sym_TODO] = ACTIONS(101), + [anon_sym_WIP] = ACTIONS(101), + [anon_sym_NOTE] = ACTIONS(104), + [anon_sym_INFO] = ACTIONS(104), + [anon_sym_XXX] = ACTIONS(104), + [sym_fixme] = ACTIONS(52), + [anon_sym_PIPE] = ACTIONS(52), + [sym__whitespace1] = ACTIONS(107), + [sym__newline] = ACTIONS(110), + [aux_sym__text_token1] = ACTIONS(113), + [sym__verbatim_begin] = ACTIONS(116), }, - [44] = { - [sym__inline] = STATE(690), - [sym__element] = STATE(85), - [sym_emphasis] = STATE(175), - [sym_emphasis_begin] = STATE(94), - [sym_strong] = STATE(175), - [sym_strong_begin] = STATE(95), - [sym__hard_line_break] = STATE(175), - [sym_hard_line_break] = STATE(175), - [sym__smart_punctuation] = STATE(175), - [sym_autolink] = STATE(175), - [sym_highlighted] = STATE(175), - [sym_insert] = STATE(175), - [sym_delete] = STATE(175), - [sym_superscript] = STATE(175), - [sym_subscript] = STATE(175), - [sym_footnote_reference] = STATE(175), - [sym__image] = STATE(175), - [sym_full_reference_image] = STATE(175), - [sym_collapsed_reference_image] = STATE(175), - [sym_inline_image] = STATE(175), - [sym__image_description] = STATE(652), - [sym__link] = STATE(175), - [sym_full_reference_link] = STATE(175), - [sym_collapsed_reference_link] = STATE(175), - [sym_inline_link] = STATE(175), - [sym_link_text] = STATE(649), - [sym__comment_with_spaces] = STATE(175), - [sym_span] = STATE(175), - [sym_raw_inline] = STATE(175), - [sym_math] = STATE(175), - [sym_verbatim] = STATE(175), - [sym__todo_highlights] = STATE(175), - [sym_todo] = STATE(175), - [sym_note] = STATE(175), - [sym__symbol_fallback] = STATE(175), - [aux_sym__text] = STATE(156), - [aux_sym__inline_repeat1] = STATE(85), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(417), - [anon_sym__] = ACTIONS(420), - [anon_sym_LBRACE_STAR] = ACTIONS(423), - [anon_sym_STAR] = ACTIONS(426), - [anon_sym_BSLASH] = ACTIONS(429), - [sym_quotation_marks] = ACTIONS(432), - [sym_ellipsis] = ACTIONS(432), - [sym_em_dash] = ACTIONS(432), - [sym_en_dash] = ACTIONS(435), - [sym_backslash_escape] = ACTIONS(435), - [anon_sym_LT] = ACTIONS(438), - [anon_sym_LBRACE_EQ] = ACTIONS(441), - [anon_sym_LBRACE_PLUS] = ACTIONS(444), - [anon_sym_LBRACE_DASH] = ACTIONS(447), - [sym_symbol] = ACTIONS(432), - [anon_sym_LBRACE_CARET] = ACTIONS(450), - [anon_sym_CARET] = ACTIONS(540), - [anon_sym_CARET_RBRACE] = ACTIONS(93), - [anon_sym_LBRACE_TILDE] = ACTIONS(453), - [anon_sym_TILDE] = ACTIONS(453), - [anon_sym_LBRACK_CARET] = ACTIONS(456), - [anon_sym_BANG_LBRACK] = ACTIONS(459), - [anon_sym_LBRACK] = ACTIONS(462), - [anon_sym_LBRACE2] = ACTIONS(435), - [anon_sym_DOLLAR] = ACTIONS(465), - [anon_sym_TODO] = ACTIONS(468), - [anon_sym_WIP] = ACTIONS(468), - [anon_sym_NOTE] = ACTIONS(471), - [anon_sym_INFO] = ACTIONS(471), - [anon_sym_XXX] = ACTIONS(471), - [sym_fixme] = ACTIONS(432), - [anon_sym_PIPE] = ACTIONS(432), - [sym__whitespace1] = ACTIONS(474), - [sym__newline] = ACTIONS(477), - [aux_sym__text_token1] = ACTIONS(480), - [sym__verbatim_begin] = ACTIONS(483), + [10] = { + [sym__inline] = STATE(858), + [sym__element] = STATE(73), + [sym_emphasis] = STATE(180), + [sym_emphasis_begin] = STATE(895), + [sym_strong] = STATE(180), + [sym_strong_begin] = STATE(114), + [sym__hard_line_break] = STATE(180), + [sym_hard_line_break] = STATE(180), + [sym__smart_punctuation] = STATE(180), + [sym_autolink] = STATE(180), + [sym_highlighted] = STATE(180), + [sym_insert] = STATE(180), + [sym_delete] = STATE(180), + [sym_superscript] = STATE(180), + [sym_subscript] = STATE(180), + [sym_footnote_reference] = STATE(180), + [sym__image] = STATE(180), + [sym_full_reference_image] = STATE(180), + [sym_collapsed_reference_image] = STATE(180), + [sym_inline_image] = STATE(180), + [sym__image_description] = STATE(632), + [sym__link] = STATE(180), + [sym_full_reference_link] = STATE(180), + [sym_collapsed_reference_link] = STATE(180), + [sym_inline_link] = STATE(180), + [sym_link_text] = STATE(633), + [sym__comment_with_spaces] = STATE(180), + [sym_span] = STATE(180), + [sym_raw_inline] = STATE(180), + [sym_math] = STATE(180), + [sym_verbatim] = STATE(180), + [sym__todo_highlights] = STATE(180), + [sym_todo] = STATE(180), + [sym_note] = STATE(180), + [sym__symbol_fallback] = STATE(180), + [aux_sym__text] = STATE(132), + [aux_sym__inline_repeat1] = STATE(73), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_] = ACTIONS(133), + [anon_sym__] = ACTIONS(136), + [anon_sym_LBRACE_STAR] = ACTIONS(139), + [anon_sym_STAR] = ACTIONS(142), + [anon_sym_BSLASH] = ACTIONS(145), + [sym_quotation_marks] = ACTIONS(136), + [sym_ellipsis] = ACTIONS(136), + [sym_em_dash] = ACTIONS(136), + [sym_en_dash] = ACTIONS(148), + [sym_backslash_escape] = ACTIONS(148), + [anon_sym_LT] = ACTIONS(151), + [anon_sym_LBRACE_EQ] = ACTIONS(154), + [anon_sym_LBRACE_PLUS] = ACTIONS(157), + [anon_sym_PLUS_RBRACE] = ACTIONS(79), + [anon_sym_LBRACE_DASH] = ACTIONS(160), + [sym_symbol] = ACTIONS(136), + [anon_sym_LBRACE_CARET] = ACTIONS(163), + [anon_sym_CARET] = ACTIONS(163), + [anon_sym_LBRACE_TILDE] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(166), + [anon_sym_LBRACK_CARET] = ACTIONS(169), + [anon_sym_BANG_LBRACK] = ACTIONS(172), + [anon_sym_LBRACK] = ACTIONS(175), + [anon_sym_LBRACE2] = ACTIONS(148), + [anon_sym_DOLLAR] = ACTIONS(178), + [anon_sym_TODO] = ACTIONS(181), + [anon_sym_WIP] = ACTIONS(181), + [anon_sym_NOTE] = ACTIONS(184), + [anon_sym_INFO] = ACTIONS(184), + [anon_sym_XXX] = ACTIONS(184), + [sym_fixme] = ACTIONS(136), + [anon_sym_PIPE] = ACTIONS(136), + [sym__whitespace1] = ACTIONS(187), + [sym__newline] = ACTIONS(190), + [aux_sym__text_token1] = ACTIONS(193), + [sym__verbatim_begin] = ACTIONS(196), }, - [45] = { - [sym__inline] = STATE(710), - [sym__element] = STATE(85), + [11] = { + [sym__inline] = STATE(771), + [sym__element] = STATE(78), + [sym_emphasis] = STATE(167), + [sym_emphasis_begin] = STATE(894), + [sym_strong] = STATE(167), + [sym_strong_begin] = STATE(117), + [sym__hard_line_break] = STATE(167), + [sym_hard_line_break] = STATE(167), + [sym__smart_punctuation] = STATE(167), + [sym_autolink] = STATE(167), + [sym_highlighted] = STATE(167), + [sym_insert] = STATE(167), + [sym_delete] = STATE(167), + [sym_superscript] = STATE(167), + [sym_subscript] = STATE(167), + [sym_footnote_reference] = STATE(167), + [sym__image] = STATE(167), + [sym_full_reference_image] = STATE(167), + [sym_collapsed_reference_image] = STATE(167), + [sym_inline_image] = STATE(167), + [sym__image_description] = STATE(613), + [sym__link] = STATE(167), + [sym_full_reference_link] = STATE(167), + [sym_collapsed_reference_link] = STATE(167), + [sym_inline_link] = STATE(167), + [sym_link_text] = STATE(614), + [sym__comment_with_spaces] = STATE(167), + [sym_span] = STATE(167), + [sym_raw_inline] = STATE(167), + [sym_math] = STATE(167), + [sym_verbatim] = STATE(167), + [sym__todo_highlights] = STATE(167), + [sym_todo] = STATE(167), + [sym_note] = STATE(167), + [sym__symbol_fallback] = STATE(167), + [aux_sym__text] = STATE(130), + [aux_sym__inline_repeat1] = STATE(78), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_] = ACTIONS(199), + [anon_sym__] = ACTIONS(202), + [anon_sym_LBRACE_STAR] = ACTIONS(205), + [anon_sym_STAR] = ACTIONS(208), + [anon_sym_BSLASH] = ACTIONS(211), + [sym_quotation_marks] = ACTIONS(202), + [sym_ellipsis] = ACTIONS(202), + [sym_em_dash] = ACTIONS(202), + [sym_en_dash] = ACTIONS(214), + [sym_backslash_escape] = ACTIONS(214), + [anon_sym_LT] = ACTIONS(217), + [anon_sym_LBRACE_EQ] = ACTIONS(220), + [anon_sym_EQ_RBRACE] = ACTIONS(79), + [anon_sym_LBRACE_PLUS] = ACTIONS(223), + [anon_sym_LBRACE_DASH] = ACTIONS(226), + [sym_symbol] = ACTIONS(202), + [anon_sym_LBRACE_CARET] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym_LBRACE_TILDE] = ACTIONS(232), + [anon_sym_TILDE] = ACTIONS(232), + [anon_sym_LBRACK_CARET] = ACTIONS(235), + [anon_sym_BANG_LBRACK] = ACTIONS(238), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_LBRACE2] = ACTIONS(214), + [anon_sym_DOLLAR] = ACTIONS(244), + [anon_sym_TODO] = ACTIONS(247), + [anon_sym_WIP] = ACTIONS(247), + [anon_sym_NOTE] = ACTIONS(250), + [anon_sym_INFO] = ACTIONS(250), + [anon_sym_XXX] = ACTIONS(250), + [sym_fixme] = ACTIONS(202), + [anon_sym_PIPE] = ACTIONS(202), + [sym__whitespace1] = ACTIONS(253), + [sym__newline] = ACTIONS(256), + [aux_sym__text_token1] = ACTIONS(259), + [sym__verbatim_begin] = ACTIONS(262), + }, + [12] = { + [sym__inline] = STATE(835), + [sym__element] = STATE(107), + [sym_emphasis] = STATE(187), + [sym_emphasis_begin] = STATE(893), + [sym_strong] = STATE(187), + [sym_strong_begin] = STATE(119), + [sym__hard_line_break] = STATE(187), + [sym_hard_line_break] = STATE(187), + [sym__smart_punctuation] = STATE(187), + [sym_autolink] = STATE(187), + [sym_highlighted] = STATE(187), + [sym_insert] = STATE(187), + [sym_delete] = STATE(187), + [sym_superscript] = STATE(187), + [sym_subscript] = STATE(187), + [sym_footnote_reference] = STATE(187), + [sym__image] = STATE(187), + [sym_full_reference_image] = STATE(187), + [sym_collapsed_reference_image] = STATE(187), + [sym_inline_image] = STATE(187), + [sym__image_description] = STATE(616), + [sym__link] = STATE(187), + [sym_full_reference_link] = STATE(187), + [sym_collapsed_reference_link] = STATE(187), + [sym_inline_link] = STATE(187), + [sym_link_text] = STATE(634), + [sym__comment_with_spaces] = STATE(187), + [sym_span] = STATE(187), + [sym_raw_inline] = STATE(187), + [sym_math] = STATE(187), + [sym_verbatim] = STATE(187), + [sym__todo_highlights] = STATE(187), + [sym_todo] = STATE(187), + [sym_note] = STATE(187), + [sym__symbol_fallback] = STATE(187), + [aux_sym__text] = STATE(131), + [aux_sym__inline_repeat1] = STATE(107), + [ts_builtin_sym_end] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_] = ACTIONS(265), + [anon_sym__] = ACTIONS(268), + [anon_sym_LBRACE_STAR] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(274), + [anon_sym_BSLASH] = ACTIONS(277), + [sym_quotation_marks] = ACTIONS(268), + [sym_ellipsis] = ACTIONS(268), + [sym_em_dash] = ACTIONS(268), + [sym_en_dash] = ACTIONS(280), + [sym_backslash_escape] = ACTIONS(280), + [anon_sym_LT] = ACTIONS(283), + [anon_sym_LBRACE_EQ] = ACTIONS(286), + [anon_sym_LBRACE_PLUS] = ACTIONS(289), + [anon_sym_LBRACE_DASH] = ACTIONS(292), + [sym_symbol] = ACTIONS(268), + [anon_sym_LBRACE_CARET] = ACTIONS(295), + [anon_sym_CARET] = ACTIONS(295), + [anon_sym_LBRACE_TILDE] = ACTIONS(298), + [anon_sym_TILDE] = ACTIONS(298), + [anon_sym_LBRACK_CARET] = ACTIONS(301), + [anon_sym_BANG_LBRACK] = ACTIONS(304), + [anon_sym_LBRACK] = ACTIONS(307), + [anon_sym_LBRACE2] = ACTIONS(280), + [anon_sym_DOLLAR] = ACTIONS(310), + [anon_sym_TODO] = ACTIONS(313), + [anon_sym_WIP] = ACTIONS(313), + [anon_sym_NOTE] = ACTIONS(316), + [anon_sym_INFO] = ACTIONS(316), + [anon_sym_XXX] = ACTIONS(316), + [sym_fixme] = ACTIONS(268), + [anon_sym_PIPE] = ACTIONS(268), + [sym__whitespace1] = ACTIONS(319), + [sym__newline] = ACTIONS(322), + [aux_sym__text_token1] = ACTIONS(325), + [sym__verbatim_begin] = ACTIONS(328), + }, + [13] = { + [sym__inline] = STATE(831), + [sym__element] = STATE(78), + [sym_emphasis] = STATE(167), + [sym_emphasis_begin] = STATE(894), + [sym_strong] = STATE(167), + [sym_strong_begin] = STATE(117), + [sym__hard_line_break] = STATE(167), + [sym_hard_line_break] = STATE(167), + [sym__smart_punctuation] = STATE(167), + [sym_autolink] = STATE(167), + [sym_highlighted] = STATE(167), + [sym_insert] = STATE(167), + [sym_delete] = STATE(167), + [sym_superscript] = STATE(167), + [sym_subscript] = STATE(167), + [sym_footnote_reference] = STATE(167), + [sym__image] = STATE(167), + [sym_full_reference_image] = STATE(167), + [sym_collapsed_reference_image] = STATE(167), + [sym_inline_image] = STATE(167), + [sym__image_description] = STATE(613), + [sym__link] = STATE(167), + [sym_full_reference_link] = STATE(167), + [sym_collapsed_reference_link] = STATE(167), + [sym_inline_link] = STATE(167), + [sym_link_text] = STATE(614), + [sym__comment_with_spaces] = STATE(167), + [sym_span] = STATE(167), + [sym_raw_inline] = STATE(167), + [sym_math] = STATE(167), + [sym_verbatim] = STATE(167), + [sym__todo_highlights] = STATE(167), + [sym_todo] = STATE(167), + [sym_note] = STATE(167), + [sym__symbol_fallback] = STATE(167), + [aux_sym__text] = STATE(130), + [aux_sym__inline_repeat1] = STATE(78), + [ts_builtin_sym_end] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_] = ACTIONS(199), + [anon_sym__] = ACTIONS(202), + [anon_sym_LBRACE_STAR] = ACTIONS(205), + [anon_sym_STAR] = ACTIONS(208), + [anon_sym_BSLASH] = ACTIONS(211), + [sym_quotation_marks] = ACTIONS(202), + [sym_ellipsis] = ACTIONS(202), + [sym_em_dash] = ACTIONS(202), + [sym_en_dash] = ACTIONS(214), + [sym_backslash_escape] = ACTIONS(214), + [anon_sym_LT] = ACTIONS(217), + [anon_sym_LBRACE_EQ] = ACTIONS(220), + [anon_sym_LBRACE_PLUS] = ACTIONS(223), + [anon_sym_LBRACE_DASH] = ACTIONS(226), + [sym_symbol] = ACTIONS(202), + [anon_sym_LBRACE_CARET] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym_LBRACE_TILDE] = ACTIONS(232), + [anon_sym_TILDE] = ACTIONS(232), + [anon_sym_LBRACK_CARET] = ACTIONS(235), + [anon_sym_BANG_LBRACK] = ACTIONS(238), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_LBRACE2] = ACTIONS(214), + [anon_sym_DOLLAR] = ACTIONS(244), + [anon_sym_TODO] = ACTIONS(247), + [anon_sym_WIP] = ACTIONS(247), + [anon_sym_NOTE] = ACTIONS(250), + [anon_sym_INFO] = ACTIONS(250), + [anon_sym_XXX] = ACTIONS(250), + [sym_fixme] = ACTIONS(202), + [anon_sym_PIPE] = ACTIONS(202), + [sym__whitespace1] = ACTIONS(253), + [sym__newline] = ACTIONS(256), + [aux_sym__text_token1] = ACTIONS(259), + [sym__verbatim_begin] = ACTIONS(262), + }, + [14] = { + [sym__inline] = STATE(826), + [sym__element] = STATE(73), + [sym_emphasis] = STATE(180), + [sym_emphasis_begin] = STATE(895), + [sym_strong] = STATE(180), + [sym_strong_begin] = STATE(114), + [sym__hard_line_break] = STATE(180), + [sym_hard_line_break] = STATE(180), + [sym__smart_punctuation] = STATE(180), + [sym_autolink] = STATE(180), + [sym_highlighted] = STATE(180), + [sym_insert] = STATE(180), + [sym_delete] = STATE(180), + [sym_superscript] = STATE(180), + [sym_subscript] = STATE(180), + [sym_footnote_reference] = STATE(180), + [sym__image] = STATE(180), + [sym_full_reference_image] = STATE(180), + [sym_collapsed_reference_image] = STATE(180), + [sym_inline_image] = STATE(180), + [sym__image_description] = STATE(632), + [sym__link] = STATE(180), + [sym_full_reference_link] = STATE(180), + [sym_collapsed_reference_link] = STATE(180), + [sym_inline_link] = STATE(180), + [sym_link_text] = STATE(633), + [sym__comment_with_spaces] = STATE(180), + [sym_span] = STATE(180), + [sym_raw_inline] = STATE(180), + [sym_math] = STATE(180), + [sym_verbatim] = STATE(180), + [sym__todo_highlights] = STATE(180), + [sym_todo] = STATE(180), + [sym_note] = STATE(180), + [sym__symbol_fallback] = STATE(180), + [aux_sym__text] = STATE(132), + [aux_sym__inline_repeat1] = STATE(73), + [ts_builtin_sym_end] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_] = ACTIONS(133), + [anon_sym__] = ACTIONS(136), + [anon_sym_LBRACE_STAR] = ACTIONS(139), + [anon_sym_STAR] = ACTIONS(142), + [anon_sym_BSLASH] = ACTIONS(145), + [sym_quotation_marks] = ACTIONS(136), + [sym_ellipsis] = ACTIONS(136), + [sym_em_dash] = ACTIONS(136), + [sym_en_dash] = ACTIONS(148), + [sym_backslash_escape] = ACTIONS(148), + [anon_sym_LT] = ACTIONS(151), + [anon_sym_LBRACE_EQ] = ACTIONS(154), + [anon_sym_LBRACE_PLUS] = ACTIONS(157), + [anon_sym_LBRACE_DASH] = ACTIONS(160), + [sym_symbol] = ACTIONS(136), + [anon_sym_LBRACE_CARET] = ACTIONS(163), + [anon_sym_CARET] = ACTIONS(163), + [anon_sym_LBRACE_TILDE] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(166), + [anon_sym_LBRACK_CARET] = ACTIONS(169), + [anon_sym_BANG_LBRACK] = ACTIONS(172), + [anon_sym_LBRACK] = ACTIONS(175), + [anon_sym_LBRACE2] = ACTIONS(148), + [anon_sym_DOLLAR] = ACTIONS(178), + [anon_sym_TODO] = ACTIONS(181), + [anon_sym_WIP] = ACTIONS(181), + [anon_sym_NOTE] = ACTIONS(184), + [anon_sym_INFO] = ACTIONS(184), + [anon_sym_XXX] = ACTIONS(184), + [sym_fixme] = ACTIONS(136), + [anon_sym_PIPE] = ACTIONS(136), + [sym__whitespace1] = ACTIONS(187), + [sym__newline] = ACTIONS(190), + [aux_sym__text_token1] = ACTIONS(193), + [sym__verbatim_begin] = ACTIONS(196), + }, + [15] = { + [sym__inline] = STATE(669), + [sym__element] = STATE(72), + [sym_emphasis] = STATE(163), + [sym_emphasis_begin] = STATE(896), + [sym_strong] = STATE(163), + [sym_strong_begin] = STATE(110), + [sym__hard_line_break] = STATE(163), + [sym_hard_line_break] = STATE(163), + [sym__smart_punctuation] = STATE(163), + [sym_autolink] = STATE(163), + [sym_highlighted] = STATE(163), + [sym_insert] = STATE(163), + [sym_delete] = STATE(163), + [sym_superscript] = STATE(163), + [sym_subscript] = STATE(163), + [sym_footnote_reference] = STATE(163), + [sym__image] = STATE(163), + [sym_full_reference_image] = STATE(163), + [sym_collapsed_reference_image] = STATE(163), + [sym_inline_image] = STATE(163), + [sym__image_description] = STATE(622), + [sym__link] = STATE(163), + [sym_full_reference_link] = STATE(163), + [sym_collapsed_reference_link] = STATE(163), + [sym_inline_link] = STATE(163), + [sym_link_text] = STATE(605), + [sym__comment_with_spaces] = STATE(163), + [sym_span] = STATE(163), + [sym_raw_inline] = STATE(163), + [sym_math] = STATE(163), + [sym_verbatim] = STATE(163), + [sym__todo_highlights] = STATE(163), + [sym_todo] = STATE(163), + [sym_note] = STATE(163), + [sym__symbol_fallback] = STATE(163), + [aux_sym__text] = STATE(146), + [aux_sym__inline_repeat1] = STATE(72), + [ts_builtin_sym_end] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_] = ACTIONS(331), + [anon_sym__] = ACTIONS(334), + [anon_sym_LBRACE_STAR] = ACTIONS(337), + [anon_sym_STAR] = ACTIONS(340), + [anon_sym_BSLASH] = ACTIONS(343), + [sym_quotation_marks] = ACTIONS(334), + [sym_ellipsis] = ACTIONS(334), + [sym_em_dash] = ACTIONS(334), + [sym_en_dash] = ACTIONS(346), + [sym_backslash_escape] = ACTIONS(346), + [anon_sym_LT] = ACTIONS(349), + [anon_sym_LBRACE_EQ] = ACTIONS(352), + [anon_sym_LBRACE_PLUS] = ACTIONS(355), + [anon_sym_LBRACE_DASH] = ACTIONS(358), + [sym_symbol] = ACTIONS(334), + [anon_sym_LBRACE_CARET] = ACTIONS(361), + [anon_sym_CARET] = ACTIONS(361), + [anon_sym_LBRACE_TILDE] = ACTIONS(364), + [anon_sym_TILDE] = ACTIONS(364), + [anon_sym_LBRACK_CARET] = ACTIONS(367), + [anon_sym_BANG_LBRACK] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(373), + [anon_sym_LBRACE2] = ACTIONS(346), + [anon_sym_DOLLAR] = ACTIONS(376), + [anon_sym_TODO] = ACTIONS(379), + [anon_sym_WIP] = ACTIONS(379), + [anon_sym_NOTE] = ACTIONS(382), + [anon_sym_INFO] = ACTIONS(382), + [anon_sym_XXX] = ACTIONS(382), + [sym_fixme] = ACTIONS(334), + [anon_sym_PIPE] = ACTIONS(334), + [sym__whitespace1] = ACTIONS(385), + [sym__newline] = ACTIONS(388), + [aux_sym__text_token1] = ACTIONS(391), + [sym__verbatim_begin] = ACTIONS(394), + }, + [16] = { + [sym__inline] = STATE(701), + [sym__element] = STATE(113), [sym_emphasis] = STATE(175), - [sym_emphasis_begin] = STATE(94), + [sym_emphasis_begin] = STATE(897), [sym_strong] = STATE(175), - [sym_strong_begin] = STATE(95), + [sym_strong_begin] = STATE(108), [sym__hard_line_break] = STATE(175), [sym_hard_line_break] = STATE(175), [sym__smart_punctuation] = STATE(175), @@ -11458,12 +8877,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_full_reference_image] = STATE(175), [sym_collapsed_reference_image] = STATE(175), [sym_inline_image] = STATE(175), - [sym__image_description] = STATE(652), + [sym__image_description] = STATE(626), [sym__link] = STATE(175), [sym_full_reference_link] = STATE(175), [sym_collapsed_reference_link] = STATE(175), [sym_inline_link] = STATE(175), - [sym_link_text] = STATE(649), + [sym_link_text] = STATE(624), [sym__comment_with_spaces] = STATE(175), [sym_span] = STATE(175), [sym_raw_inline] = STATE(175), @@ -11473,433 +8892,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(175), [sym_note] = STATE(175), [sym__symbol_fallback] = STATE(175), - [aux_sym__text] = STATE(156), - [aux_sym__inline_repeat1] = STATE(85), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(417), - [anon_sym__] = ACTIONS(420), - [anon_sym_LBRACE_STAR] = ACTIONS(423), - [anon_sym_STAR] = ACTIONS(426), - [anon_sym_BSLASH] = ACTIONS(429), - [sym_quotation_marks] = ACTIONS(432), - [sym_ellipsis] = ACTIONS(432), - [sym_em_dash] = ACTIONS(432), - [sym_en_dash] = ACTIONS(435), - [sym_backslash_escape] = ACTIONS(435), - [anon_sym_LT] = ACTIONS(438), - [anon_sym_LBRACE_EQ] = ACTIONS(441), - [anon_sym_LBRACE_PLUS] = ACTIONS(444), - [anon_sym_LBRACE_DASH] = ACTIONS(447), - [anon_sym_DASH_RBRACE] = ACTIONS(93), - [sym_symbol] = ACTIONS(432), - [anon_sym_LBRACE_CARET] = ACTIONS(450), - [anon_sym_CARET] = ACTIONS(450), - [anon_sym_LBRACE_TILDE] = ACTIONS(453), - [anon_sym_TILDE] = ACTIONS(453), - [anon_sym_LBRACK_CARET] = ACTIONS(456), - [anon_sym_BANG_LBRACK] = ACTIONS(459), - [anon_sym_LBRACK] = ACTIONS(462), - [anon_sym_LBRACE2] = ACTIONS(435), - [anon_sym_DOLLAR] = ACTIONS(465), - [anon_sym_TODO] = ACTIONS(468), - [anon_sym_WIP] = ACTIONS(468), - [anon_sym_NOTE] = ACTIONS(471), - [anon_sym_INFO] = ACTIONS(471), - [anon_sym_XXX] = ACTIONS(471), - [sym_fixme] = ACTIONS(432), - [anon_sym_PIPE] = ACTIONS(432), - [sym__whitespace1] = ACTIONS(474), - [sym__newline] = ACTIONS(477), - [aux_sym__text_token1] = ACTIONS(480), - [sym__verbatim_begin] = ACTIONS(483), - }, - [46] = { - [sym__inline] = STATE(816), - [sym__element] = STATE(116), - [sym_emphasis] = STATE(183), - [sym_emphasis_begin] = STATE(91), - [sym_strong] = STATE(183), - [sym_strong_begin] = STATE(92), - [sym__hard_line_break] = STATE(183), - [sym_hard_line_break] = STATE(183), - [sym__smart_punctuation] = STATE(183), - [sym_autolink] = STATE(183), - [sym_highlighted] = STATE(183), - [sym_insert] = STATE(183), - [sym_delete] = STATE(183), - [sym_superscript] = STATE(183), - [sym_subscript] = STATE(183), - [sym_footnote_reference] = STATE(183), - [sym__image] = STATE(183), - [sym_full_reference_image] = STATE(183), - [sym_collapsed_reference_image] = STATE(183), - [sym_inline_image] = STATE(183), - [sym__image_description] = STATE(645), - [sym__link] = STATE(183), - [sym_full_reference_link] = STATE(183), - [sym_collapsed_reference_link] = STATE(183), - [sym_inline_link] = STATE(183), - [sym_link_text] = STATE(646), - [sym__comment_with_spaces] = STATE(183), - [sym_span] = STATE(183), - [sym_raw_inline] = STATE(183), - [sym_math] = STATE(183), - [sym_verbatim] = STATE(183), - [sym__todo_highlights] = STATE(183), - [sym_todo] = STATE(183), - [sym_note] = STATE(183), - [sym__symbol_fallback] = STATE(183), - [aux_sym__text] = STATE(149), - [aux_sym__inline_repeat1] = STATE(116), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(210), - [anon_sym__] = ACTIONS(213), - [anon_sym_LBRACE_STAR] = ACTIONS(216), - [anon_sym_STAR] = ACTIONS(219), - [anon_sym_BSLASH] = ACTIONS(222), - [sym_quotation_marks] = ACTIONS(225), - [sym_ellipsis] = ACTIONS(225), - [sym_em_dash] = ACTIONS(225), - [sym_en_dash] = ACTIONS(228), - [sym_backslash_escape] = ACTIONS(228), - [anon_sym_LT] = ACTIONS(231), - [anon_sym_LBRACE_EQ] = ACTIONS(234), - [anon_sym_LBRACE_PLUS] = ACTIONS(237), - [anon_sym_LBRACE_DASH] = ACTIONS(240), - [sym_symbol] = ACTIONS(225), - [anon_sym_LBRACE_CARET] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(543), - [anon_sym_CARET_RBRACE] = ACTIONS(93), - [anon_sym_LBRACE_TILDE] = ACTIONS(246), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_LBRACK_CARET] = ACTIONS(249), - [anon_sym_BANG_LBRACK] = ACTIONS(252), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_LBRACE2] = ACTIONS(228), - [anon_sym_DOLLAR] = ACTIONS(258), - [anon_sym_TODO] = ACTIONS(261), - [anon_sym_WIP] = ACTIONS(261), - [anon_sym_NOTE] = ACTIONS(264), - [anon_sym_INFO] = ACTIONS(264), - [anon_sym_XXX] = ACTIONS(264), - [sym_fixme] = ACTIONS(225), - [anon_sym_PIPE] = ACTIONS(225), - [sym__whitespace1] = ACTIONS(267), - [sym__newline] = ACTIONS(270), - [aux_sym__text_token1] = ACTIONS(273), - [sym__verbatim_begin] = ACTIONS(276), - }, - [47] = { - [sym__inline] = STATE(748), - [sym__element] = STATE(116), - [sym_emphasis] = STATE(183), - [sym_emphasis_begin] = STATE(91), - [sym_strong] = STATE(183), - [sym_strong_begin] = STATE(92), - [sym__hard_line_break] = STATE(183), - [sym_hard_line_break] = STATE(183), - [sym__smart_punctuation] = STATE(183), - [sym_autolink] = STATE(183), - [sym_highlighted] = STATE(183), - [sym_insert] = STATE(183), - [sym_delete] = STATE(183), - [sym_superscript] = STATE(183), - [sym_subscript] = STATE(183), - [sym_footnote_reference] = STATE(183), - [sym__image] = STATE(183), - [sym_full_reference_image] = STATE(183), - [sym_collapsed_reference_image] = STATE(183), - [sym_inline_image] = STATE(183), - [sym__image_description] = STATE(645), - [sym__link] = STATE(183), - [sym_full_reference_link] = STATE(183), - [sym_collapsed_reference_link] = STATE(183), - [sym_inline_link] = STATE(183), - [sym_link_text] = STATE(646), - [sym__comment_with_spaces] = STATE(183), - [sym_span] = STATE(183), - [sym_raw_inline] = STATE(183), - [sym_math] = STATE(183), - [sym_verbatim] = STATE(183), - [sym__todo_highlights] = STATE(183), - [sym_todo] = STATE(183), - [sym_note] = STATE(183), - [sym__symbol_fallback] = STATE(183), - [aux_sym__text] = STATE(149), - [aux_sym__inline_repeat1] = STATE(116), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(210), - [anon_sym__] = ACTIONS(213), - [anon_sym_LBRACE_STAR] = ACTIONS(216), - [anon_sym_STAR] = ACTIONS(219), - [anon_sym_BSLASH] = ACTIONS(222), - [sym_quotation_marks] = ACTIONS(225), - [sym_ellipsis] = ACTIONS(225), - [sym_em_dash] = ACTIONS(225), - [sym_en_dash] = ACTIONS(228), - [sym_backslash_escape] = ACTIONS(228), - [anon_sym_LT] = ACTIONS(231), - [anon_sym_LBRACE_EQ] = ACTIONS(234), - [anon_sym_LBRACE_PLUS] = ACTIONS(237), - [anon_sym_LBRACE_DASH] = ACTIONS(240), - [anon_sym_DASH_RBRACE] = ACTIONS(93), - [sym_symbol] = ACTIONS(225), - [anon_sym_LBRACE_CARET] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(243), - [anon_sym_LBRACE_TILDE] = ACTIONS(246), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_LBRACK_CARET] = ACTIONS(249), - [anon_sym_BANG_LBRACK] = ACTIONS(252), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_LBRACE2] = ACTIONS(228), - [anon_sym_DOLLAR] = ACTIONS(258), - [anon_sym_TODO] = ACTIONS(261), - [anon_sym_WIP] = ACTIONS(261), - [anon_sym_NOTE] = ACTIONS(264), - [anon_sym_INFO] = ACTIONS(264), - [anon_sym_XXX] = ACTIONS(264), - [sym_fixme] = ACTIONS(225), - [anon_sym_PIPE] = ACTIONS(225), - [sym__whitespace1] = ACTIONS(267), - [sym__newline] = ACTIONS(270), - [aux_sym__text_token1] = ACTIONS(273), - [sym__verbatim_begin] = ACTIONS(276), - }, - [48] = { - [sym__inline] = STATE(761), - [sym__element] = STATE(119), - [sym_emphasis] = STATE(197), - [sym_emphasis_begin] = STATE(81), - [sym_strong] = STATE(197), - [sym_strong_begin] = STATE(82), - [sym__hard_line_break] = STATE(197), - [sym_hard_line_break] = STATE(197), - [sym__smart_punctuation] = STATE(197), - [sym_autolink] = STATE(197), - [sym_highlighted] = STATE(197), - [sym_insert] = STATE(197), - [sym_delete] = STATE(197), - [sym_superscript] = STATE(197), - [sym_subscript] = STATE(197), - [sym_footnote_reference] = STATE(197), - [sym__image] = STATE(197), - [sym_full_reference_image] = STATE(197), - [sym_collapsed_reference_image] = STATE(197), - [sym_inline_image] = STATE(197), - [sym__image_description] = STATE(654), - [sym__link] = STATE(197), - [sym_full_reference_link] = STATE(197), - [sym_collapsed_reference_link] = STATE(197), - [sym_inline_link] = STATE(197), - [sym_link_text] = STATE(651), - [sym__comment_with_spaces] = STATE(197), - [sym_span] = STATE(197), - [sym_raw_inline] = STATE(197), - [sym_math] = STATE(197), - [sym_verbatim] = STATE(197), - [sym__todo_highlights] = STATE(197), - [sym_todo] = STATE(197), - [sym_note] = STATE(197), - [sym__symbol_fallback] = STATE(197), - [aux_sym__text] = STATE(132), - [aux_sym__inline_repeat1] = STATE(119), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(279), - [anon_sym__] = ACTIONS(282), - [anon_sym_LBRACE_STAR] = ACTIONS(285), - [anon_sym_STAR] = ACTIONS(546), - [aux_sym_strong_end_token1] = ACTIONS(93), - [anon_sym_BSLASH] = ACTIONS(291), - [sym_quotation_marks] = ACTIONS(294), - [sym_ellipsis] = ACTIONS(294), - [sym_em_dash] = ACTIONS(294), - [sym_en_dash] = ACTIONS(297), - [sym_backslash_escape] = ACTIONS(297), - [anon_sym_LT] = ACTIONS(300), - [anon_sym_LBRACE_EQ] = ACTIONS(303), - [anon_sym_LBRACE_PLUS] = ACTIONS(306), - [anon_sym_LBRACE_DASH] = ACTIONS(309), - [sym_symbol] = ACTIONS(294), - [anon_sym_LBRACE_CARET] = ACTIONS(312), - [anon_sym_CARET] = ACTIONS(312), - [anon_sym_LBRACE_TILDE] = ACTIONS(315), - [anon_sym_TILDE] = ACTIONS(315), - [anon_sym_LBRACK_CARET] = ACTIONS(318), - [anon_sym_BANG_LBRACK] = ACTIONS(321), - [anon_sym_LBRACK] = ACTIONS(324), - [anon_sym_LBRACE2] = ACTIONS(297), - [anon_sym_DOLLAR] = ACTIONS(327), - [anon_sym_TODO] = ACTIONS(330), - [anon_sym_WIP] = ACTIONS(330), - [anon_sym_NOTE] = ACTIONS(333), - [anon_sym_INFO] = ACTIONS(333), - [anon_sym_XXX] = ACTIONS(333), - [sym_fixme] = ACTIONS(294), - [anon_sym_PIPE] = ACTIONS(294), - [sym__whitespace1] = ACTIONS(510), - [sym__newline] = ACTIONS(339), - [aux_sym__text_token1] = ACTIONS(342), - [sym__verbatim_begin] = ACTIONS(345), - }, - [49] = { - [sym__inline] = STATE(749), - [sym__element] = STATE(77), - [sym_emphasis] = STATE(174), - [sym_emphasis_begin] = STATE(86), - [sym_strong] = STATE(174), - [sym_strong_begin] = STATE(89), - [sym__hard_line_break] = STATE(174), - [sym_hard_line_break] = STATE(174), - [sym__smart_punctuation] = STATE(174), - [sym_autolink] = STATE(174), - [sym_highlighted] = STATE(174), - [sym_insert] = STATE(174), - [sym_delete] = STATE(174), - [sym_superscript] = STATE(174), - [sym_subscript] = STATE(174), - [sym_footnote_reference] = STATE(174), - [sym__image] = STATE(174), - [sym_full_reference_image] = STATE(174), - [sym_collapsed_reference_image] = STATE(174), - [sym_inline_image] = STATE(174), - [sym__image_description] = STATE(630), - [sym__link] = STATE(174), - [sym_full_reference_link] = STATE(174), - [sym_collapsed_reference_link] = STATE(174), - [sym_inline_link] = STATE(174), - [sym_link_text] = STATE(631), - [sym__comment_with_spaces] = STATE(174), - [sym_span] = STATE(174), - [sym_raw_inline] = STATE(174), - [sym_math] = STATE(174), - [sym_verbatim] = STATE(174), - [sym__todo_highlights] = STATE(174), - [sym_todo] = STATE(174), - [sym_note] = STATE(174), - [sym__symbol_fallback] = STATE(174), - [aux_sym__text] = STATE(148), - [aux_sym__inline_repeat1] = STATE(77), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(348), - [anon_sym__] = ACTIONS(351), - [anon_sym_LBRACE_STAR] = ACTIONS(354), - [anon_sym_STAR] = ACTIONS(357), - [anon_sym_BSLASH] = ACTIONS(360), - [sym_quotation_marks] = ACTIONS(363), - [sym_ellipsis] = ACTIONS(363), - [sym_em_dash] = ACTIONS(363), - [sym_en_dash] = ACTIONS(366), - [sym_backslash_escape] = ACTIONS(366), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_LBRACE_EQ] = ACTIONS(372), - [anon_sym_LBRACE_PLUS] = ACTIONS(375), - [anon_sym_LBRACE_DASH] = ACTIONS(378), - [anon_sym_DASH_RBRACE] = ACTIONS(93), - [sym_symbol] = ACTIONS(363), - [anon_sym_LBRACE_CARET] = ACTIONS(381), - [anon_sym_CARET] = ACTIONS(381), - [anon_sym_LBRACE_TILDE] = ACTIONS(384), - [anon_sym_TILDE] = ACTIONS(384), - [anon_sym_LBRACK_CARET] = ACTIONS(387), - [anon_sym_BANG_LBRACK] = ACTIONS(390), - [anon_sym_LBRACK] = ACTIONS(393), - [anon_sym_LBRACE2] = ACTIONS(366), - [anon_sym_DOLLAR] = ACTIONS(396), - [anon_sym_TODO] = ACTIONS(399), - [anon_sym_WIP] = ACTIONS(399), - [anon_sym_NOTE] = ACTIONS(402), - [anon_sym_INFO] = ACTIONS(402), - [anon_sym_XXX] = ACTIONS(402), - [sym_fixme] = ACTIONS(363), - [anon_sym_PIPE] = ACTIONS(363), - [sym__whitespace1] = ACTIONS(405), - [sym__newline] = ACTIONS(408), - [aux_sym__text_token1] = ACTIONS(411), - [sym__verbatim_begin] = ACTIONS(414), - }, - [50] = { - [sym__inline] = STATE(886), - [sym__element] = STATE(103), - [sym_emphasis] = STATE(200), - [sym_emphasis_begin] = STATE(101), - [sym_strong] = STATE(200), - [sym_strong_begin] = STATE(104), - [sym__hard_line_break] = STATE(200), - [sym_hard_line_break] = STATE(200), - [sym__smart_punctuation] = STATE(200), - [sym_autolink] = STATE(200), - [sym_highlighted] = STATE(200), - [sym_insert] = STATE(200), - [sym_delete] = STATE(200), - [sym_superscript] = STATE(200), - [sym_subscript] = STATE(200), - [sym_footnote_reference] = STATE(200), - [sym__image] = STATE(200), - [sym_full_reference_image] = STATE(200), - [sym_collapsed_reference_image] = STATE(200), - [sym_inline_image] = STATE(200), - [sym__image_description] = STATE(642), - [sym__link] = STATE(200), - [sym_full_reference_link] = STATE(200), - [sym_collapsed_reference_link] = STATE(200), - [sym_inline_link] = STATE(200), - [sym_link_text] = STATE(643), - [sym__comment_with_spaces] = STATE(200), - [sym_span] = STATE(200), - [sym_raw_inline] = STATE(200), - [sym_math] = STATE(200), - [sym_verbatim] = STATE(200), - [sym__todo_highlights] = STATE(200), - [sym_todo] = STATE(200), - [sym_note] = STATE(200), - [sym__symbol_fallback] = STATE(200), - [aux_sym__text] = STATE(138), - [aux_sym__inline_repeat1] = STATE(103), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(51), - [anon_sym__] = ACTIONS(54), - [anon_sym_LBRACE_STAR] = ACTIONS(57), - [anon_sym_STAR] = ACTIONS(60), - [anon_sym_BSLASH] = ACTIONS(63), - [sym_quotation_marks] = ACTIONS(66), - [sym_ellipsis] = ACTIONS(66), - [sym_em_dash] = ACTIONS(66), - [sym_en_dash] = ACTIONS(69), - [sym_backslash_escape] = ACTIONS(69), - [anon_sym_LT] = ACTIONS(72), - [anon_sym_LBRACE_EQ] = ACTIONS(75), - [anon_sym_LBRACE_PLUS] = ACTIONS(78), - [anon_sym_LBRACE_DASH] = ACTIONS(81), - [sym_symbol] = ACTIONS(66), - [anon_sym_LBRACE_CARET] = ACTIONS(84), - [anon_sym_CARET] = ACTIONS(84), - [anon_sym_LBRACE_TILDE] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(87), - [anon_sym_LBRACK_CARET] = ACTIONS(95), - [anon_sym_BANG_LBRACK] = ACTIONS(100), - [anon_sym_LBRACK] = ACTIONS(103), - [anon_sym_RBRACK2] = ACTIONS(93), - [anon_sym_LBRACE2] = ACTIONS(69), - [anon_sym_DOLLAR] = ACTIONS(106), - [anon_sym_TODO] = ACTIONS(109), - [anon_sym_WIP] = ACTIONS(109), - [anon_sym_NOTE] = ACTIONS(112), - [anon_sym_INFO] = ACTIONS(112), - [anon_sym_XXX] = ACTIONS(112), - [sym_fixme] = ACTIONS(66), - [anon_sym_PIPE] = ACTIONS(66), - [sym__whitespace1] = ACTIONS(115), - [sym__newline] = ACTIONS(118), - [aux_sym__text_token1] = ACTIONS(121), - [sym__verbatim_begin] = ACTIONS(124), + [aux_sym__text] = STATE(125), + [aux_sym__inline_repeat1] = STATE(113), + [ts_builtin_sym_end] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_] = ACTIONS(397), + [anon_sym__] = ACTIONS(400), + [anon_sym_LBRACE_STAR] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(406), + [anon_sym_BSLASH] = ACTIONS(409), + [sym_quotation_marks] = ACTIONS(400), + [sym_ellipsis] = ACTIONS(400), + [sym_em_dash] = ACTIONS(400), + [sym_en_dash] = ACTIONS(412), + [sym_backslash_escape] = ACTIONS(412), + [anon_sym_LT] = ACTIONS(415), + [anon_sym_LBRACE_EQ] = ACTIONS(418), + [anon_sym_LBRACE_PLUS] = ACTIONS(421), + [anon_sym_LBRACE_DASH] = ACTIONS(424), + [sym_symbol] = ACTIONS(400), + [anon_sym_LBRACE_CARET] = ACTIONS(427), + [anon_sym_CARET] = ACTIONS(427), + [anon_sym_LBRACE_TILDE] = ACTIONS(430), + [anon_sym_TILDE] = ACTIONS(430), + [anon_sym_LBRACK_CARET] = ACTIONS(433), + [anon_sym_BANG_LBRACK] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(439), + [anon_sym_LBRACE2] = ACTIONS(412), + [anon_sym_DOLLAR] = ACTIONS(442), + [anon_sym_TODO] = ACTIONS(445), + [anon_sym_WIP] = ACTIONS(445), + [anon_sym_NOTE] = ACTIONS(448), + [anon_sym_INFO] = ACTIONS(448), + [anon_sym_XXX] = ACTIONS(448), + [sym_fixme] = ACTIONS(400), + [anon_sym_PIPE] = ACTIONS(400), + [sym__whitespace1] = ACTIONS(451), + [sym__newline] = ACTIONS(454), + [aux_sym__text_token1] = ACTIONS(457), + [sym__verbatim_begin] = ACTIONS(460), }, - [51] = { - [sym__inline] = STATE(701), - [sym__element] = STATE(85), + [17] = { + [sym__inline] = STATE(680), + [sym__element] = STATE(113), [sym_emphasis] = STATE(175), - [sym_emphasis_begin] = STATE(94), + [sym_emphasis_begin] = STATE(897), [sym_strong] = STATE(175), - [sym_strong_begin] = STATE(95), + [sym_strong_begin] = STATE(108), [sym__hard_line_break] = STATE(175), [sym_hard_line_break] = STATE(175), [sym__smart_punctuation] = STATE(175), @@ -11914,12 +8953,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_full_reference_image] = STATE(175), [sym_collapsed_reference_image] = STATE(175), [sym_inline_image] = STATE(175), - [sym__image_description] = STATE(652), + [sym__image_description] = STATE(626), [sym__link] = STATE(175), [sym_full_reference_link] = STATE(175), [sym_collapsed_reference_link] = STATE(175), [sym_inline_link] = STATE(175), - [sym_link_text] = STATE(649), + [sym_link_text] = STATE(624), [sym__comment_with_spaces] = STATE(175), [sym_span] = STATE(175), [sym_raw_inline] = STATE(175), @@ -11929,205 +8968,205 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(175), [sym_note] = STATE(175), [sym__symbol_fallback] = STATE(175), - [aux_sym__text] = STATE(156), - [aux_sym__inline_repeat1] = STATE(85), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(417), - [anon_sym__] = ACTIONS(420), - [anon_sym_LBRACE_STAR] = ACTIONS(423), - [anon_sym_STAR] = ACTIONS(426), - [anon_sym_BSLASH] = ACTIONS(429), - [sym_quotation_marks] = ACTIONS(432), - [sym_ellipsis] = ACTIONS(432), - [sym_em_dash] = ACTIONS(432), - [sym_en_dash] = ACTIONS(435), - [sym_backslash_escape] = ACTIONS(435), - [anon_sym_LT] = ACTIONS(438), - [anon_sym_LBRACE_EQ] = ACTIONS(441), - [anon_sym_EQ_RBRACE] = ACTIONS(93), - [anon_sym_LBRACE_PLUS] = ACTIONS(444), - [anon_sym_LBRACE_DASH] = ACTIONS(447), - [sym_symbol] = ACTIONS(432), - [anon_sym_LBRACE_CARET] = ACTIONS(450), - [anon_sym_CARET] = ACTIONS(450), - [anon_sym_LBRACE_TILDE] = ACTIONS(453), - [anon_sym_TILDE] = ACTIONS(453), - [anon_sym_LBRACK_CARET] = ACTIONS(456), - [anon_sym_BANG_LBRACK] = ACTIONS(459), - [anon_sym_LBRACK] = ACTIONS(462), - [anon_sym_LBRACE2] = ACTIONS(435), - [anon_sym_DOLLAR] = ACTIONS(465), - [anon_sym_TODO] = ACTIONS(468), - [anon_sym_WIP] = ACTIONS(468), - [anon_sym_NOTE] = ACTIONS(471), - [anon_sym_INFO] = ACTIONS(471), - [anon_sym_XXX] = ACTIONS(471), - [sym_fixme] = ACTIONS(432), - [anon_sym_PIPE] = ACTIONS(432), - [sym__whitespace1] = ACTIONS(474), - [sym__newline] = ACTIONS(477), - [aux_sym__text_token1] = ACTIONS(480), - [sym__verbatim_begin] = ACTIONS(483), + [aux_sym__text] = STATE(125), + [aux_sym__inline_repeat1] = STATE(113), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_] = ACTIONS(397), + [anon_sym__] = ACTIONS(400), + [anon_sym_LBRACE_STAR] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(406), + [anon_sym_BSLASH] = ACTIONS(409), + [sym_quotation_marks] = ACTIONS(400), + [sym_ellipsis] = ACTIONS(400), + [sym_em_dash] = ACTIONS(400), + [sym_en_dash] = ACTIONS(412), + [sym_backslash_escape] = ACTIONS(412), + [anon_sym_LT] = ACTIONS(415), + [anon_sym_LBRACE_EQ] = ACTIONS(418), + [anon_sym_LBRACE_PLUS] = ACTIONS(421), + [anon_sym_PLUS_RBRACE] = ACTIONS(79), + [anon_sym_LBRACE_DASH] = ACTIONS(424), + [sym_symbol] = ACTIONS(400), + [anon_sym_LBRACE_CARET] = ACTIONS(427), + [anon_sym_CARET] = ACTIONS(427), + [anon_sym_LBRACE_TILDE] = ACTIONS(430), + [anon_sym_TILDE] = ACTIONS(430), + [anon_sym_LBRACK_CARET] = ACTIONS(433), + [anon_sym_BANG_LBRACK] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(439), + [anon_sym_LBRACE2] = ACTIONS(412), + [anon_sym_DOLLAR] = ACTIONS(442), + [anon_sym_TODO] = ACTIONS(445), + [anon_sym_WIP] = ACTIONS(445), + [anon_sym_NOTE] = ACTIONS(448), + [anon_sym_INFO] = ACTIONS(448), + [anon_sym_XXX] = ACTIONS(448), + [sym_fixme] = ACTIONS(400), + [anon_sym_PIPE] = ACTIONS(400), + [sym__whitespace1] = ACTIONS(451), + [sym__newline] = ACTIONS(454), + [aux_sym__text_token1] = ACTIONS(457), + [sym__verbatim_begin] = ACTIONS(460), }, - [52] = { - [sym__inline] = STATE(756), - [sym__element] = STATE(119), - [sym_emphasis] = STATE(197), - [sym_emphasis_begin] = STATE(81), - [sym_strong] = STATE(197), - [sym_strong_begin] = STATE(82), - [sym__hard_line_break] = STATE(197), - [sym_hard_line_break] = STATE(197), - [sym__smart_punctuation] = STATE(197), - [sym_autolink] = STATE(197), - [sym_highlighted] = STATE(197), - [sym_insert] = STATE(197), - [sym_delete] = STATE(197), - [sym_superscript] = STATE(197), - [sym_subscript] = STATE(197), - [sym_footnote_reference] = STATE(197), - [sym__image] = STATE(197), - [sym_full_reference_image] = STATE(197), - [sym_collapsed_reference_image] = STATE(197), - [sym_inline_image] = STATE(197), - [sym__image_description] = STATE(654), - [sym__link] = STATE(197), - [sym_full_reference_link] = STATE(197), - [sym_collapsed_reference_link] = STATE(197), - [sym_inline_link] = STATE(197), - [sym_link_text] = STATE(651), - [sym__comment_with_spaces] = STATE(197), - [sym_span] = STATE(197), - [sym_raw_inline] = STATE(197), - [sym_math] = STATE(197), - [sym_verbatim] = STATE(197), - [sym__todo_highlights] = STATE(197), - [sym_todo] = STATE(197), - [sym_note] = STATE(197), - [sym__symbol_fallback] = STATE(197), - [aux_sym__text] = STATE(132), - [aux_sym__inline_repeat1] = STATE(119), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(279), - [anon_sym__] = ACTIONS(282), - [anon_sym_LBRACE_STAR] = ACTIONS(285), - [anon_sym_STAR] = ACTIONS(288), - [anon_sym_BSLASH] = ACTIONS(291), - [sym_quotation_marks] = ACTIONS(294), - [sym_ellipsis] = ACTIONS(294), - [sym_em_dash] = ACTIONS(294), - [sym_en_dash] = ACTIONS(297), - [sym_backslash_escape] = ACTIONS(297), - [anon_sym_LT] = ACTIONS(300), - [anon_sym_LBRACE_EQ] = ACTIONS(303), - [anon_sym_LBRACE_PLUS] = ACTIONS(306), - [anon_sym_LBRACE_DASH] = ACTIONS(309), - [anon_sym_DASH_RBRACE] = ACTIONS(93), - [sym_symbol] = ACTIONS(294), - [anon_sym_LBRACE_CARET] = ACTIONS(312), - [anon_sym_CARET] = ACTIONS(312), - [anon_sym_LBRACE_TILDE] = ACTIONS(315), - [anon_sym_TILDE] = ACTIONS(315), - [anon_sym_LBRACK_CARET] = ACTIONS(318), - [anon_sym_BANG_LBRACK] = ACTIONS(321), - [anon_sym_LBRACK] = ACTIONS(324), - [anon_sym_LBRACE2] = ACTIONS(297), - [anon_sym_DOLLAR] = ACTIONS(327), - [anon_sym_TODO] = ACTIONS(330), - [anon_sym_WIP] = ACTIONS(330), - [anon_sym_NOTE] = ACTIONS(333), - [anon_sym_INFO] = ACTIONS(333), - [anon_sym_XXX] = ACTIONS(333), - [sym_fixme] = ACTIONS(294), - [anon_sym_PIPE] = ACTIONS(294), - [sym__whitespace1] = ACTIONS(336), - [sym__newline] = ACTIONS(339), - [aux_sym__text_token1] = ACTIONS(342), - [sym__verbatim_begin] = ACTIONS(345), + [18] = { + [sym__inline] = STATE(731), + [sym__element] = STATE(97), + [sym_emphasis] = STATE(182), + [sym_emphasis_begin] = STATE(898), + [sym_strong] = STATE(182), + [sym_strong_begin] = STATE(104), + [sym__hard_line_break] = STATE(182), + [sym_hard_line_break] = STATE(182), + [sym__smart_punctuation] = STATE(182), + [sym_autolink] = STATE(182), + [sym_highlighted] = STATE(182), + [sym_insert] = STATE(182), + [sym_delete] = STATE(182), + [sym_superscript] = STATE(182), + [sym_subscript] = STATE(182), + [sym_footnote_reference] = STATE(182), + [sym__image] = STATE(182), + [sym_full_reference_image] = STATE(182), + [sym_collapsed_reference_image] = STATE(182), + [sym_inline_image] = STATE(182), + [sym__image_description] = STATE(610), + [sym__link] = STATE(182), + [sym_full_reference_link] = STATE(182), + [sym_collapsed_reference_link] = STATE(182), + [sym_inline_link] = STATE(182), + [sym_link_text] = STATE(608), + [sym__comment_with_spaces] = STATE(182), + [sym_span] = STATE(182), + [sym_raw_inline] = STATE(182), + [sym_math] = STATE(182), + [sym_verbatim] = STATE(182), + [sym__todo_highlights] = STATE(182), + [sym_todo] = STATE(182), + [sym_note] = STATE(182), + [sym__symbol_fallback] = STATE(182), + [aux_sym__text] = STATE(144), + [aux_sym__inline_repeat1] = STATE(97), + [ts_builtin_sym_end] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_] = ACTIONS(49), + [anon_sym__] = ACTIONS(52), + [anon_sym_LBRACE_STAR] = ACTIONS(55), + [anon_sym_STAR] = ACTIONS(58), + [anon_sym_BSLASH] = ACTIONS(61), + [sym_quotation_marks] = ACTIONS(52), + [sym_ellipsis] = ACTIONS(52), + [sym_em_dash] = ACTIONS(52), + [sym_en_dash] = ACTIONS(64), + [sym_backslash_escape] = ACTIONS(64), + [anon_sym_LT] = ACTIONS(67), + [anon_sym_LBRACE_EQ] = ACTIONS(70), + [anon_sym_LBRACE_PLUS] = ACTIONS(73), + [anon_sym_LBRACE_DASH] = ACTIONS(76), + [sym_symbol] = ACTIONS(52), + [anon_sym_LBRACE_CARET] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_LBRACE_TILDE] = ACTIONS(84), + [anon_sym_TILDE] = ACTIONS(84), + [anon_sym_LBRACK_CARET] = ACTIONS(87), + [anon_sym_BANG_LBRACK] = ACTIONS(92), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACE2] = ACTIONS(64), + [anon_sym_DOLLAR] = ACTIONS(98), + [anon_sym_TODO] = ACTIONS(101), + [anon_sym_WIP] = ACTIONS(101), + [anon_sym_NOTE] = ACTIONS(104), + [anon_sym_INFO] = ACTIONS(104), + [anon_sym_XXX] = ACTIONS(104), + [sym_fixme] = ACTIONS(52), + [anon_sym_PIPE] = ACTIONS(52), + [sym__whitespace1] = ACTIONS(107), + [sym__newline] = ACTIONS(110), + [aux_sym__text_token1] = ACTIONS(113), + [sym__verbatim_begin] = ACTIONS(116), }, - [53] = { - [sym__inline] = STATE(762), - [sym__element] = STATE(77), - [sym_emphasis] = STATE(174), - [sym_emphasis_begin] = STATE(86), - [sym_strong] = STATE(174), - [sym_strong_begin] = STATE(89), - [sym__hard_line_break] = STATE(174), - [sym_hard_line_break] = STATE(174), - [sym__smart_punctuation] = STATE(174), - [sym_autolink] = STATE(174), - [sym_highlighted] = STATE(174), - [sym_insert] = STATE(174), - [sym_delete] = STATE(174), - [sym_superscript] = STATE(174), - [sym_subscript] = STATE(174), - [sym_footnote_reference] = STATE(174), - [sym__image] = STATE(174), - [sym_full_reference_image] = STATE(174), - [sym_collapsed_reference_image] = STATE(174), - [sym_inline_image] = STATE(174), - [sym__image_description] = STATE(630), - [sym__link] = STATE(174), - [sym_full_reference_link] = STATE(174), - [sym_collapsed_reference_link] = STATE(174), - [sym_inline_link] = STATE(174), - [sym_link_text] = STATE(631), - [sym__comment_with_spaces] = STATE(174), - [sym_span] = STATE(174), - [sym_raw_inline] = STATE(174), - [sym_math] = STATE(174), - [sym_verbatim] = STATE(174), - [sym__todo_highlights] = STATE(174), - [sym_todo] = STATE(174), - [sym_note] = STATE(174), - [sym__symbol_fallback] = STATE(174), - [aux_sym__text] = STATE(148), - [aux_sym__inline_repeat1] = STATE(77), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(348), - [anon_sym__] = ACTIONS(351), - [anon_sym_LBRACE_STAR] = ACTIONS(354), - [anon_sym_STAR] = ACTIONS(549), - [aux_sym_strong_end_token1] = ACTIONS(93), - [anon_sym_BSLASH] = ACTIONS(360), - [sym_quotation_marks] = ACTIONS(363), - [sym_ellipsis] = ACTIONS(363), - [sym_em_dash] = ACTIONS(363), - [sym_en_dash] = ACTIONS(366), - [sym_backslash_escape] = ACTIONS(366), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_LBRACE_EQ] = ACTIONS(372), - [anon_sym_LBRACE_PLUS] = ACTIONS(375), - [anon_sym_LBRACE_DASH] = ACTIONS(378), - [sym_symbol] = ACTIONS(363), - [anon_sym_LBRACE_CARET] = ACTIONS(381), - [anon_sym_CARET] = ACTIONS(381), - [anon_sym_LBRACE_TILDE] = ACTIONS(384), - [anon_sym_TILDE] = ACTIONS(384), - [anon_sym_LBRACK_CARET] = ACTIONS(387), - [anon_sym_BANG_LBRACK] = ACTIONS(390), - [anon_sym_LBRACK] = ACTIONS(393), - [anon_sym_LBRACE2] = ACTIONS(366), - [anon_sym_DOLLAR] = ACTIONS(396), - [anon_sym_TODO] = ACTIONS(399), - [anon_sym_WIP] = ACTIONS(399), - [anon_sym_NOTE] = ACTIONS(402), - [anon_sym_INFO] = ACTIONS(402), - [anon_sym_XXX] = ACTIONS(402), - [sym_fixme] = ACTIONS(363), - [anon_sym_PIPE] = ACTIONS(363), - [sym__whitespace1] = ACTIONS(516), - [sym__newline] = ACTIONS(408), - [aux_sym__text_token1] = ACTIONS(411), - [sym__verbatim_begin] = ACTIONS(414), + [19] = { + [sym__inline] = STATE(681), + [sym__element] = STATE(72), + [sym_emphasis] = STATE(163), + [sym_emphasis_begin] = STATE(896), + [sym_strong] = STATE(163), + [sym_strong_begin] = STATE(110), + [sym__hard_line_break] = STATE(163), + [sym_hard_line_break] = STATE(163), + [sym__smart_punctuation] = STATE(163), + [sym_autolink] = STATE(163), + [sym_highlighted] = STATE(163), + [sym_insert] = STATE(163), + [sym_delete] = STATE(163), + [sym_superscript] = STATE(163), + [sym_subscript] = STATE(163), + [sym_footnote_reference] = STATE(163), + [sym__image] = STATE(163), + [sym_full_reference_image] = STATE(163), + [sym_collapsed_reference_image] = STATE(163), + [sym_inline_image] = STATE(163), + [sym__image_description] = STATE(622), + [sym__link] = STATE(163), + [sym_full_reference_link] = STATE(163), + [sym_collapsed_reference_link] = STATE(163), + [sym_inline_link] = STATE(163), + [sym_link_text] = STATE(605), + [sym__comment_with_spaces] = STATE(163), + [sym_span] = STATE(163), + [sym_raw_inline] = STATE(163), + [sym_math] = STATE(163), + [sym_verbatim] = STATE(163), + [sym__todo_highlights] = STATE(163), + [sym_todo] = STATE(163), + [sym_note] = STATE(163), + [sym__symbol_fallback] = STATE(163), + [aux_sym__text] = STATE(146), + [aux_sym__inline_repeat1] = STATE(72), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_] = ACTIONS(331), + [anon_sym__] = ACTIONS(334), + [anon_sym_LBRACE_STAR] = ACTIONS(337), + [anon_sym_STAR] = ACTIONS(340), + [anon_sym_BSLASH] = ACTIONS(343), + [sym_quotation_marks] = ACTIONS(334), + [sym_ellipsis] = ACTIONS(334), + [sym_em_dash] = ACTIONS(334), + [sym_en_dash] = ACTIONS(346), + [sym_backslash_escape] = ACTIONS(346), + [anon_sym_LT] = ACTIONS(349), + [anon_sym_LBRACE_EQ] = ACTIONS(352), + [anon_sym_LBRACE_PLUS] = ACTIONS(355), + [anon_sym_PLUS_RBRACE] = ACTIONS(79), + [anon_sym_LBRACE_DASH] = ACTIONS(358), + [sym_symbol] = ACTIONS(334), + [anon_sym_LBRACE_CARET] = ACTIONS(361), + [anon_sym_CARET] = ACTIONS(361), + [anon_sym_LBRACE_TILDE] = ACTIONS(364), + [anon_sym_TILDE] = ACTIONS(364), + [anon_sym_LBRACK_CARET] = ACTIONS(367), + [anon_sym_BANG_LBRACK] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(373), + [anon_sym_LBRACE2] = ACTIONS(346), + [anon_sym_DOLLAR] = ACTIONS(376), + [anon_sym_TODO] = ACTIONS(379), + [anon_sym_WIP] = ACTIONS(379), + [anon_sym_NOTE] = ACTIONS(382), + [anon_sym_INFO] = ACTIONS(382), + [anon_sym_XXX] = ACTIONS(382), + [sym_fixme] = ACTIONS(334), + [anon_sym_PIPE] = ACTIONS(334), + [sym__whitespace1] = ACTIONS(385), + [sym__newline] = ACTIONS(388), + [aux_sym__text_token1] = ACTIONS(391), + [sym__verbatim_begin] = ACTIONS(394), }, - [54] = { - [sym__inline] = STATE(711), - [sym__element] = STATE(120), + [20] = { + [sym__inline] = STATE(859), + [sym__element] = STATE(97), [sym_emphasis] = STATE(182), - [sym_emphasis_begin] = STATE(97), + [sym_emphasis_begin] = STATE(898), [sym_strong] = STATE(182), - [sym_strong_begin] = STATE(99), + [sym_strong_begin] = STATE(104), [sym__hard_line_break] = STATE(182), [sym_hard_line_break] = STATE(182), [sym__smart_punctuation] = STATE(182), @@ -12142,12 +9181,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_full_reference_image] = STATE(182), [sym_collapsed_reference_image] = STATE(182), [sym_inline_image] = STATE(182), - [sym__image_description] = STATE(628), + [sym__image_description] = STATE(610), [sym__link] = STATE(182), [sym_full_reference_link] = STATE(182), [sym_collapsed_reference_link] = STATE(182), [sym_inline_link] = STATE(182), - [sym_link_text] = STATE(627), + [sym_link_text] = STATE(608), [sym__comment_with_spaces] = STATE(182), [sym_span] = STATE(182), [sym_raw_inline] = STATE(182), @@ -12157,509 +9196,585 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(182), [sym_note] = STATE(182), [sym__symbol_fallback] = STATE(182), - [aux_sym__text] = STATE(136), - [aux_sym__inline_repeat1] = STATE(120), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(141), - [anon_sym__] = ACTIONS(486), - [anon_sym_LBRACE_STAR] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(150), - [anon_sym_BSLASH] = ACTIONS(153), - [sym_quotation_marks] = ACTIONS(156), - [sym_ellipsis] = ACTIONS(156), - [sym_em_dash] = ACTIONS(156), - [sym_en_dash] = ACTIONS(159), - [sym_backslash_escape] = ACTIONS(159), - [anon_sym_LT] = ACTIONS(162), - [anon_sym_LBRACE_EQ] = ACTIONS(165), - [anon_sym_LBRACE_PLUS] = ACTIONS(168), - [anon_sym_LBRACE_DASH] = ACTIONS(171), - [sym_symbol] = ACTIONS(156), - [anon_sym_LBRACE_CARET] = ACTIONS(174), - [anon_sym_CARET] = ACTIONS(174), - [anon_sym_LBRACE_TILDE] = ACTIONS(177), - [anon_sym_TILDE] = ACTIONS(177), - [anon_sym_LBRACK_CARET] = ACTIONS(180), - [anon_sym_BANG_LBRACK] = ACTIONS(183), - [anon_sym_LBRACK] = ACTIONS(186), - [anon_sym_RBRACK2] = ACTIONS(93), - [anon_sym_LBRACE2] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(189), - [anon_sym_TODO] = ACTIONS(192), - [anon_sym_WIP] = ACTIONS(192), - [anon_sym_NOTE] = ACTIONS(195), - [anon_sym_INFO] = ACTIONS(195), - [anon_sym_XXX] = ACTIONS(195), - [sym_fixme] = ACTIONS(156), - [anon_sym_PIPE] = ACTIONS(156), - [sym__whitespace1] = ACTIONS(489), - [sym__newline] = ACTIONS(201), - [aux_sym__text_token1] = ACTIONS(204), - [sym__verbatim_begin] = ACTIONS(207), + [aux_sym__text] = STATE(144), + [aux_sym__inline_repeat1] = STATE(97), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_] = ACTIONS(49), + [anon_sym__] = ACTIONS(52), + [anon_sym_LBRACE_STAR] = ACTIONS(55), + [anon_sym_STAR] = ACTIONS(119), + [aux_sym_strong_end_token1] = ACTIONS(79), + [anon_sym_BSLASH] = ACTIONS(61), + [sym_quotation_marks] = ACTIONS(52), + [sym_ellipsis] = ACTIONS(52), + [sym_em_dash] = ACTIONS(52), + [sym_en_dash] = ACTIONS(64), + [sym_backslash_escape] = ACTIONS(64), + [anon_sym_LT] = ACTIONS(67), + [anon_sym_LBRACE_EQ] = ACTIONS(70), + [anon_sym_LBRACE_PLUS] = ACTIONS(73), + [anon_sym_LBRACE_DASH] = ACTIONS(76), + [sym_symbol] = ACTIONS(52), + [anon_sym_LBRACE_CARET] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_LBRACE_TILDE] = ACTIONS(84), + [anon_sym_TILDE] = ACTIONS(84), + [anon_sym_LBRACK_CARET] = ACTIONS(87), + [anon_sym_BANG_LBRACK] = ACTIONS(92), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACE2] = ACTIONS(64), + [anon_sym_DOLLAR] = ACTIONS(98), + [anon_sym_TODO] = ACTIONS(101), + [anon_sym_WIP] = ACTIONS(101), + [anon_sym_NOTE] = ACTIONS(104), + [anon_sym_INFO] = ACTIONS(104), + [anon_sym_XXX] = ACTIONS(104), + [sym_fixme] = ACTIONS(52), + [anon_sym_PIPE] = ACTIONS(52), + [sym__whitespace1] = ACTIONS(122), + [sym__newline] = ACTIONS(110), + [aux_sym__text_token1] = ACTIONS(113), + [sym__verbatim_begin] = ACTIONS(116), }, - [55] = { - [sym__inline] = STATE(703), - [sym__element] = STATE(85), - [sym_emphasis] = STATE(175), - [sym_emphasis_begin] = STATE(94), - [sym_strong] = STATE(175), - [sym_strong_begin] = STATE(95), - [sym__hard_line_break] = STATE(175), - [sym_hard_line_break] = STATE(175), - [sym__smart_punctuation] = STATE(175), - [sym_autolink] = STATE(175), - [sym_highlighted] = STATE(175), - [sym_insert] = STATE(175), - [sym_delete] = STATE(175), - [sym_superscript] = STATE(175), - [sym_subscript] = STATE(175), - [sym_footnote_reference] = STATE(175), - [sym__image] = STATE(175), - [sym_full_reference_image] = STATE(175), - [sym_collapsed_reference_image] = STATE(175), - [sym_inline_image] = STATE(175), - [sym__image_description] = STATE(652), - [sym__link] = STATE(175), - [sym_full_reference_link] = STATE(175), - [sym_collapsed_reference_link] = STATE(175), - [sym_inline_link] = STATE(175), - [sym_link_text] = STATE(649), - [sym__comment_with_spaces] = STATE(175), - [sym_span] = STATE(175), - [sym_raw_inline] = STATE(175), - [sym_math] = STATE(175), - [sym_verbatim] = STATE(175), - [sym__todo_highlights] = STATE(175), - [sym_todo] = STATE(175), - [sym_note] = STATE(175), - [sym__symbol_fallback] = STATE(175), - [aux_sym__text] = STATE(156), - [aux_sym__inline_repeat1] = STATE(85), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(417), - [anon_sym__] = ACTIONS(420), - [anon_sym_LBRACE_STAR] = ACTIONS(423), - [anon_sym_STAR] = ACTIONS(426), - [anon_sym_BSLASH] = ACTIONS(429), - [sym_quotation_marks] = ACTIONS(432), - [sym_ellipsis] = ACTIONS(432), - [sym_em_dash] = ACTIONS(432), - [sym_en_dash] = ACTIONS(435), - [sym_backslash_escape] = ACTIONS(435), - [anon_sym_LT] = ACTIONS(438), - [anon_sym_LBRACE_EQ] = ACTIONS(441), - [anon_sym_LBRACE_PLUS] = ACTIONS(444), - [anon_sym_LBRACE_DASH] = ACTIONS(447), - [sym_symbol] = ACTIONS(432), - [anon_sym_LBRACE_CARET] = ACTIONS(450), - [anon_sym_CARET] = ACTIONS(450), - [anon_sym_LBRACE_TILDE] = ACTIONS(453), - [anon_sym_TILDE] = ACTIONS(453), - [anon_sym_LBRACK_CARET] = ACTIONS(456), - [anon_sym_BANG_LBRACK] = ACTIONS(459), - [anon_sym_LBRACK] = ACTIONS(462), - [anon_sym_RBRACK2] = ACTIONS(93), - [anon_sym_LBRACE2] = ACTIONS(435), - [anon_sym_DOLLAR] = ACTIONS(465), - [anon_sym_TODO] = ACTIONS(468), - [anon_sym_WIP] = ACTIONS(468), - [anon_sym_NOTE] = ACTIONS(471), - [anon_sym_INFO] = ACTIONS(471), - [anon_sym_XXX] = ACTIONS(471), - [sym_fixme] = ACTIONS(432), - [anon_sym_PIPE] = ACTIONS(432), - [sym__whitespace1] = ACTIONS(474), - [sym__newline] = ACTIONS(477), - [aux_sym__text_token1] = ACTIONS(480), - [sym__verbatim_begin] = ACTIONS(483), + [21] = { + [sym__inline] = STATE(861), + [sym__element] = STATE(78), + [sym_emphasis] = STATE(167), + [sym_emphasis_begin] = STATE(894), + [sym_strong] = STATE(167), + [sym_strong_begin] = STATE(117), + [sym__hard_line_break] = STATE(167), + [sym_hard_line_break] = STATE(167), + [sym__smart_punctuation] = STATE(167), + [sym_autolink] = STATE(167), + [sym_highlighted] = STATE(167), + [sym_insert] = STATE(167), + [sym_delete] = STATE(167), + [sym_superscript] = STATE(167), + [sym_subscript] = STATE(167), + [sym_footnote_reference] = STATE(167), + [sym__image] = STATE(167), + [sym_full_reference_image] = STATE(167), + [sym_collapsed_reference_image] = STATE(167), + [sym_inline_image] = STATE(167), + [sym__image_description] = STATE(613), + [sym__link] = STATE(167), + [sym_full_reference_link] = STATE(167), + [sym_collapsed_reference_link] = STATE(167), + [sym_inline_link] = STATE(167), + [sym_link_text] = STATE(614), + [sym__comment_with_spaces] = STATE(167), + [sym_span] = STATE(167), + [sym_raw_inline] = STATE(167), + [sym_math] = STATE(167), + [sym_verbatim] = STATE(167), + [sym__todo_highlights] = STATE(167), + [sym_todo] = STATE(167), + [sym_note] = STATE(167), + [sym__symbol_fallback] = STATE(167), + [aux_sym__text] = STATE(130), + [aux_sym__inline_repeat1] = STATE(78), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_] = ACTIONS(199), + [anon_sym__] = ACTIONS(202), + [anon_sym_LBRACE_STAR] = ACTIONS(205), + [anon_sym_STAR] = ACTIONS(208), + [anon_sym_BSLASH] = ACTIONS(211), + [sym_quotation_marks] = ACTIONS(202), + [sym_ellipsis] = ACTIONS(202), + [sym_em_dash] = ACTIONS(202), + [sym_en_dash] = ACTIONS(214), + [sym_backslash_escape] = ACTIONS(214), + [anon_sym_LT] = ACTIONS(217), + [anon_sym_LBRACE_EQ] = ACTIONS(220), + [anon_sym_LBRACE_PLUS] = ACTIONS(223), + [anon_sym_PLUS_RBRACE] = ACTIONS(79), + [anon_sym_LBRACE_DASH] = ACTIONS(226), + [sym_symbol] = ACTIONS(202), + [anon_sym_LBRACE_CARET] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym_LBRACE_TILDE] = ACTIONS(232), + [anon_sym_TILDE] = ACTIONS(232), + [anon_sym_LBRACK_CARET] = ACTIONS(235), + [anon_sym_BANG_LBRACK] = ACTIONS(238), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_LBRACE2] = ACTIONS(214), + [anon_sym_DOLLAR] = ACTIONS(244), + [anon_sym_TODO] = ACTIONS(247), + [anon_sym_WIP] = ACTIONS(247), + [anon_sym_NOTE] = ACTIONS(250), + [anon_sym_INFO] = ACTIONS(250), + [anon_sym_XXX] = ACTIONS(250), + [sym_fixme] = ACTIONS(202), + [anon_sym_PIPE] = ACTIONS(202), + [sym__whitespace1] = ACTIONS(253), + [sym__newline] = ACTIONS(256), + [aux_sym__text_token1] = ACTIONS(259), + [sym__verbatim_begin] = ACTIONS(262), }, - [56] = { - [sym__inline] = STATE(782), - [sym__element] = STATE(116), - [sym_emphasis] = STATE(183), - [sym_emphasis_begin] = STATE(91), - [sym_strong] = STATE(183), - [sym_strong_begin] = STATE(92), - [sym__hard_line_break] = STATE(183), - [sym_hard_line_break] = STATE(183), - [sym__smart_punctuation] = STATE(183), - [sym_autolink] = STATE(183), - [sym_highlighted] = STATE(183), - [sym_insert] = STATE(183), - [sym_delete] = STATE(183), - [sym_superscript] = STATE(183), - [sym_subscript] = STATE(183), - [sym_footnote_reference] = STATE(183), - [sym__image] = STATE(183), - [sym_full_reference_image] = STATE(183), - [sym_collapsed_reference_image] = STATE(183), - [sym_inline_image] = STATE(183), - [sym__image_description] = STATE(645), - [sym__link] = STATE(183), - [sym_full_reference_link] = STATE(183), - [sym_collapsed_reference_link] = STATE(183), - [sym_inline_link] = STATE(183), - [sym_link_text] = STATE(646), - [sym__comment_with_spaces] = STATE(183), - [sym_span] = STATE(183), - [sym_raw_inline] = STATE(183), - [sym_math] = STATE(183), - [sym_verbatim] = STATE(183), - [sym__todo_highlights] = STATE(183), - [sym_todo] = STATE(183), - [sym_note] = STATE(183), - [sym__symbol_fallback] = STATE(183), - [aux_sym__text] = STATE(149), - [aux_sym__inline_repeat1] = STATE(116), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(210), - [anon_sym__] = ACTIONS(213), - [anon_sym_LBRACE_STAR] = ACTIONS(216), - [anon_sym_STAR] = ACTIONS(219), - [anon_sym_BSLASH] = ACTIONS(222), - [sym_quotation_marks] = ACTIONS(225), - [sym_ellipsis] = ACTIONS(225), - [sym_em_dash] = ACTIONS(225), - [sym_en_dash] = ACTIONS(228), - [sym_backslash_escape] = ACTIONS(228), - [anon_sym_LT] = ACTIONS(231), - [anon_sym_LBRACE_EQ] = ACTIONS(234), - [anon_sym_LBRACE_PLUS] = ACTIONS(237), - [anon_sym_LBRACE_DASH] = ACTIONS(240), - [sym_symbol] = ACTIONS(225), - [anon_sym_LBRACE_CARET] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(243), - [anon_sym_LBRACE_TILDE] = ACTIONS(246), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_LBRACK_CARET] = ACTIONS(249), - [anon_sym_BANG_LBRACK] = ACTIONS(252), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_RBRACK2] = ACTIONS(93), - [anon_sym_LBRACE2] = ACTIONS(228), - [anon_sym_DOLLAR] = ACTIONS(258), - [anon_sym_TODO] = ACTIONS(261), - [anon_sym_WIP] = ACTIONS(261), - [anon_sym_NOTE] = ACTIONS(264), - [anon_sym_INFO] = ACTIONS(264), - [anon_sym_XXX] = ACTIONS(264), - [sym_fixme] = ACTIONS(225), - [anon_sym_PIPE] = ACTIONS(225), - [sym__whitespace1] = ACTIONS(267), - [sym__newline] = ACTIONS(270), - [aux_sym__text_token1] = ACTIONS(273), - [sym__verbatim_begin] = ACTIONS(276), + [22] = { + [sym__inline] = STATE(864), + [sym__element] = STATE(107), + [sym_emphasis] = STATE(187), + [sym_emphasis_begin] = STATE(893), + [sym_strong] = STATE(187), + [sym_strong_begin] = STATE(119), + [sym__hard_line_break] = STATE(187), + [sym_hard_line_break] = STATE(187), + [sym__smart_punctuation] = STATE(187), + [sym_autolink] = STATE(187), + [sym_highlighted] = STATE(187), + [sym_insert] = STATE(187), + [sym_delete] = STATE(187), + [sym_superscript] = STATE(187), + [sym_subscript] = STATE(187), + [sym_footnote_reference] = STATE(187), + [sym__image] = STATE(187), + [sym_full_reference_image] = STATE(187), + [sym_collapsed_reference_image] = STATE(187), + [sym_inline_image] = STATE(187), + [sym__image_description] = STATE(616), + [sym__link] = STATE(187), + [sym_full_reference_link] = STATE(187), + [sym_collapsed_reference_link] = STATE(187), + [sym_inline_link] = STATE(187), + [sym_link_text] = STATE(634), + [sym__comment_with_spaces] = STATE(187), + [sym_span] = STATE(187), + [sym_raw_inline] = STATE(187), + [sym_math] = STATE(187), + [sym_verbatim] = STATE(187), + [sym__todo_highlights] = STATE(187), + [sym_todo] = STATE(187), + [sym_note] = STATE(187), + [sym__symbol_fallback] = STATE(187), + [aux_sym__text] = STATE(131), + [aux_sym__inline_repeat1] = STATE(107), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_] = ACTIONS(265), + [anon_sym__] = ACTIONS(268), + [anon_sym_LBRACE_STAR] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(274), + [anon_sym_BSLASH] = ACTIONS(277), + [sym_quotation_marks] = ACTIONS(268), + [sym_ellipsis] = ACTIONS(268), + [sym_em_dash] = ACTIONS(268), + [sym_en_dash] = ACTIONS(280), + [sym_backslash_escape] = ACTIONS(280), + [anon_sym_LT] = ACTIONS(283), + [anon_sym_LBRACE_EQ] = ACTIONS(286), + [anon_sym_LBRACE_PLUS] = ACTIONS(289), + [anon_sym_PLUS_RBRACE] = ACTIONS(79), + [anon_sym_LBRACE_DASH] = ACTIONS(292), + [sym_symbol] = ACTIONS(268), + [anon_sym_LBRACE_CARET] = ACTIONS(295), + [anon_sym_CARET] = ACTIONS(295), + [anon_sym_LBRACE_TILDE] = ACTIONS(298), + [anon_sym_TILDE] = ACTIONS(298), + [anon_sym_LBRACK_CARET] = ACTIONS(301), + [anon_sym_BANG_LBRACK] = ACTIONS(304), + [anon_sym_LBRACK] = ACTIONS(307), + [anon_sym_LBRACE2] = ACTIONS(280), + [anon_sym_DOLLAR] = ACTIONS(310), + [anon_sym_TODO] = ACTIONS(313), + [anon_sym_WIP] = ACTIONS(313), + [anon_sym_NOTE] = ACTIONS(316), + [anon_sym_INFO] = ACTIONS(316), + [anon_sym_XXX] = ACTIONS(316), + [sym_fixme] = ACTIONS(268), + [anon_sym_PIPE] = ACTIONS(268), + [sym__whitespace1] = ACTIONS(319), + [sym__newline] = ACTIONS(322), + [aux_sym__text_token1] = ACTIONS(325), + [sym__verbatim_begin] = ACTIONS(328), }, - [57] = { - [sym__inline] = STATE(781), - [sym__element] = STATE(77), - [sym_emphasis] = STATE(174), - [sym_emphasis_begin] = STATE(86), - [sym_strong] = STATE(174), - [sym_strong_begin] = STATE(89), - [sym__hard_line_break] = STATE(174), - [sym_hard_line_break] = STATE(174), - [sym__smart_punctuation] = STATE(174), - [sym_autolink] = STATE(174), - [sym_highlighted] = STATE(174), - [sym_insert] = STATE(174), - [sym_delete] = STATE(174), - [sym_superscript] = STATE(174), - [sym_subscript] = STATE(174), - [sym_footnote_reference] = STATE(174), - [sym__image] = STATE(174), - [sym_full_reference_image] = STATE(174), - [sym_collapsed_reference_image] = STATE(174), - [sym_inline_image] = STATE(174), - [sym__image_description] = STATE(630), - [sym__link] = STATE(174), - [sym_full_reference_link] = STATE(174), - [sym_collapsed_reference_link] = STATE(174), - [sym_inline_link] = STATE(174), - [sym_link_text] = STATE(631), - [sym__comment_with_spaces] = STATE(174), - [sym_span] = STATE(174), - [sym_raw_inline] = STATE(174), - [sym_math] = STATE(174), - [sym_verbatim] = STATE(174), - [sym__todo_highlights] = STATE(174), - [sym_todo] = STATE(174), - [sym_note] = STATE(174), - [sym__symbol_fallback] = STATE(174), - [aux_sym__text] = STATE(148), - [aux_sym__inline_repeat1] = STATE(77), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(348), - [anon_sym__] = ACTIONS(351), - [anon_sym_LBRACE_STAR] = ACTIONS(354), - [anon_sym_STAR] = ACTIONS(357), - [anon_sym_BSLASH] = ACTIONS(360), - [sym_quotation_marks] = ACTIONS(363), - [sym_ellipsis] = ACTIONS(363), - [sym_em_dash] = ACTIONS(363), - [sym_en_dash] = ACTIONS(366), - [sym_backslash_escape] = ACTIONS(366), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_LBRACE_EQ] = ACTIONS(372), - [anon_sym_LBRACE_PLUS] = ACTIONS(375), - [anon_sym_LBRACE_DASH] = ACTIONS(378), - [sym_symbol] = ACTIONS(363), - [anon_sym_LBRACE_CARET] = ACTIONS(381), - [anon_sym_CARET] = ACTIONS(381), - [anon_sym_LBRACE_TILDE] = ACTIONS(384), - [anon_sym_TILDE] = ACTIONS(384), - [anon_sym_LBRACK_CARET] = ACTIONS(387), - [anon_sym_BANG_LBRACK] = ACTIONS(390), - [anon_sym_LBRACK] = ACTIONS(393), - [anon_sym_RBRACK2] = ACTIONS(93), - [anon_sym_LBRACE2] = ACTIONS(366), - [anon_sym_DOLLAR] = ACTIONS(396), - [anon_sym_TODO] = ACTIONS(399), - [anon_sym_WIP] = ACTIONS(399), - [anon_sym_NOTE] = ACTIONS(402), - [anon_sym_INFO] = ACTIONS(402), - [anon_sym_XXX] = ACTIONS(402), - [sym_fixme] = ACTIONS(363), - [anon_sym_PIPE] = ACTIONS(363), - [sym__whitespace1] = ACTIONS(405), - [sym__newline] = ACTIONS(408), - [aux_sym__text_token1] = ACTIONS(411), - [sym__verbatim_begin] = ACTIONS(414), + [23] = { + [sym__inline] = STATE(823), + [sym__element] = STATE(97), + [sym_emphasis] = STATE(182), + [sym_emphasis_begin] = STATE(898), + [sym_strong] = STATE(182), + [sym_strong_begin] = STATE(104), + [sym__hard_line_break] = STATE(182), + [sym_hard_line_break] = STATE(182), + [sym__smart_punctuation] = STATE(182), + [sym_autolink] = STATE(182), + [sym_highlighted] = STATE(182), + [sym_insert] = STATE(182), + [sym_delete] = STATE(182), + [sym_superscript] = STATE(182), + [sym_subscript] = STATE(182), + [sym_footnote_reference] = STATE(182), + [sym__image] = STATE(182), + [sym_full_reference_image] = STATE(182), + [sym_collapsed_reference_image] = STATE(182), + [sym_inline_image] = STATE(182), + [sym__image_description] = STATE(610), + [sym__link] = STATE(182), + [sym_full_reference_link] = STATE(182), + [sym_collapsed_reference_link] = STATE(182), + [sym_inline_link] = STATE(182), + [sym_link_text] = STATE(608), + [sym__comment_with_spaces] = STATE(182), + [sym_span] = STATE(182), + [sym_raw_inline] = STATE(182), + [sym_math] = STATE(182), + [sym_verbatim] = STATE(182), + [sym__todo_highlights] = STATE(182), + [sym_todo] = STATE(182), + [sym_note] = STATE(182), + [sym__symbol_fallback] = STATE(182), + [aux_sym__text] = STATE(144), + [aux_sym__inline_repeat1] = STATE(97), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_] = ACTIONS(49), + [anon_sym__] = ACTIONS(52), + [anon_sym_LBRACE_STAR] = ACTIONS(55), + [anon_sym_STAR] = ACTIONS(58), + [anon_sym_BSLASH] = ACTIONS(61), + [sym_quotation_marks] = ACTIONS(52), + [sym_ellipsis] = ACTIONS(52), + [sym_em_dash] = ACTIONS(52), + [sym_en_dash] = ACTIONS(64), + [sym_backslash_escape] = ACTIONS(64), + [anon_sym_LT] = ACTIONS(67), + [anon_sym_LBRACE_EQ] = ACTIONS(70), + [anon_sym_LBRACE_PLUS] = ACTIONS(73), + [anon_sym_LBRACE_DASH] = ACTIONS(76), + [anon_sym_DASH_RBRACE] = ACTIONS(79), + [sym_symbol] = ACTIONS(52), + [anon_sym_LBRACE_CARET] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_LBRACE_TILDE] = ACTIONS(84), + [anon_sym_TILDE] = ACTIONS(84), + [anon_sym_LBRACK_CARET] = ACTIONS(87), + [anon_sym_BANG_LBRACK] = ACTIONS(92), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACE2] = ACTIONS(64), + [anon_sym_DOLLAR] = ACTIONS(98), + [anon_sym_TODO] = ACTIONS(101), + [anon_sym_WIP] = ACTIONS(101), + [anon_sym_NOTE] = ACTIONS(104), + [anon_sym_INFO] = ACTIONS(104), + [anon_sym_XXX] = ACTIONS(104), + [sym_fixme] = ACTIONS(52), + [anon_sym_PIPE] = ACTIONS(52), + [sym__whitespace1] = ACTIONS(107), + [sym__newline] = ACTIONS(110), + [aux_sym__text_token1] = ACTIONS(113), + [sym__verbatim_begin] = ACTIONS(116), }, - [58] = { - [sym__inline] = STATE(780), - [sym__element] = STATE(119), - [sym_emphasis] = STATE(197), - [sym_emphasis_begin] = STATE(81), - [sym_strong] = STATE(197), - [sym_strong_begin] = STATE(82), - [sym__hard_line_break] = STATE(197), - [sym_hard_line_break] = STATE(197), - [sym__smart_punctuation] = STATE(197), - [sym_autolink] = STATE(197), - [sym_highlighted] = STATE(197), - [sym_insert] = STATE(197), - [sym_delete] = STATE(197), - [sym_superscript] = STATE(197), - [sym_subscript] = STATE(197), - [sym_footnote_reference] = STATE(197), - [sym__image] = STATE(197), - [sym_full_reference_image] = STATE(197), - [sym_collapsed_reference_image] = STATE(197), - [sym_inline_image] = STATE(197), - [sym__image_description] = STATE(654), - [sym__link] = STATE(197), - [sym_full_reference_link] = STATE(197), - [sym_collapsed_reference_link] = STATE(197), - [sym_inline_link] = STATE(197), - [sym_link_text] = STATE(651), - [sym__comment_with_spaces] = STATE(197), - [sym_span] = STATE(197), - [sym_raw_inline] = STATE(197), - [sym_math] = STATE(197), - [sym_verbatim] = STATE(197), - [sym__todo_highlights] = STATE(197), - [sym_todo] = STATE(197), - [sym_note] = STATE(197), - [sym__symbol_fallback] = STATE(197), - [aux_sym__text] = STATE(132), - [aux_sym__inline_repeat1] = STATE(119), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(279), - [anon_sym__] = ACTIONS(282), - [anon_sym_LBRACE_STAR] = ACTIONS(285), - [anon_sym_STAR] = ACTIONS(288), - [anon_sym_BSLASH] = ACTIONS(291), - [sym_quotation_marks] = ACTIONS(294), - [sym_ellipsis] = ACTIONS(294), - [sym_em_dash] = ACTIONS(294), - [sym_en_dash] = ACTIONS(297), - [sym_backslash_escape] = ACTIONS(297), - [anon_sym_LT] = ACTIONS(300), - [anon_sym_LBRACE_EQ] = ACTIONS(303), - [anon_sym_LBRACE_PLUS] = ACTIONS(306), - [anon_sym_LBRACE_DASH] = ACTIONS(309), - [sym_symbol] = ACTIONS(294), - [anon_sym_LBRACE_CARET] = ACTIONS(312), - [anon_sym_CARET] = ACTIONS(312), - [anon_sym_LBRACE_TILDE] = ACTIONS(315), - [anon_sym_TILDE] = ACTIONS(315), - [anon_sym_LBRACK_CARET] = ACTIONS(318), - [anon_sym_BANG_LBRACK] = ACTIONS(321), - [anon_sym_LBRACK] = ACTIONS(324), - [anon_sym_RBRACK2] = ACTIONS(93), - [anon_sym_LBRACE2] = ACTIONS(297), - [anon_sym_DOLLAR] = ACTIONS(327), - [anon_sym_TODO] = ACTIONS(330), - [anon_sym_WIP] = ACTIONS(330), - [anon_sym_NOTE] = ACTIONS(333), - [anon_sym_INFO] = ACTIONS(333), - [anon_sym_XXX] = ACTIONS(333), - [sym_fixme] = ACTIONS(294), - [anon_sym_PIPE] = ACTIONS(294), - [sym__whitespace1] = ACTIONS(336), - [sym__newline] = ACTIONS(339), - [aux_sym__text_token1] = ACTIONS(342), - [sym__verbatim_begin] = ACTIONS(345), + [24] = { + [sym__inline] = STATE(786), + [sym__element] = STATE(107), + [sym_emphasis] = STATE(187), + [sym_emphasis_begin] = STATE(893), + [sym_strong] = STATE(187), + [sym_strong_begin] = STATE(119), + [sym__hard_line_break] = STATE(187), + [sym_hard_line_break] = STATE(187), + [sym__smart_punctuation] = STATE(187), + [sym_autolink] = STATE(187), + [sym_highlighted] = STATE(187), + [sym_insert] = STATE(187), + [sym_delete] = STATE(187), + [sym_superscript] = STATE(187), + [sym_subscript] = STATE(187), + [sym_footnote_reference] = STATE(187), + [sym__image] = STATE(187), + [sym_full_reference_image] = STATE(187), + [sym_collapsed_reference_image] = STATE(187), + [sym_inline_image] = STATE(187), + [sym__image_description] = STATE(616), + [sym__link] = STATE(187), + [sym_full_reference_link] = STATE(187), + [sym_collapsed_reference_link] = STATE(187), + [sym_inline_link] = STATE(187), + [sym_link_text] = STATE(634), + [sym__comment_with_spaces] = STATE(187), + [sym_span] = STATE(187), + [sym_raw_inline] = STATE(187), + [sym_math] = STATE(187), + [sym_verbatim] = STATE(187), + [sym__todo_highlights] = STATE(187), + [sym_todo] = STATE(187), + [sym_note] = STATE(187), + [sym__symbol_fallback] = STATE(187), + [aux_sym__text] = STATE(131), + [aux_sym__inline_repeat1] = STATE(107), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_] = ACTIONS(265), + [anon_sym__] = ACTIONS(268), + [anon_sym_LBRACE_STAR] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(274), + [anon_sym_BSLASH] = ACTIONS(277), + [sym_quotation_marks] = ACTIONS(268), + [sym_ellipsis] = ACTIONS(268), + [sym_em_dash] = ACTIONS(268), + [sym_en_dash] = ACTIONS(280), + [sym_backslash_escape] = ACTIONS(280), + [anon_sym_LT] = ACTIONS(283), + [anon_sym_LBRACE_EQ] = ACTIONS(286), + [anon_sym_LBRACE_PLUS] = ACTIONS(289), + [anon_sym_LBRACE_DASH] = ACTIONS(292), + [sym_symbol] = ACTIONS(268), + [anon_sym_LBRACE_CARET] = ACTIONS(295), + [anon_sym_CARET] = ACTIONS(463), + [anon_sym_CARET_RBRACE] = ACTIONS(79), + [anon_sym_LBRACE_TILDE] = ACTIONS(298), + [anon_sym_TILDE] = ACTIONS(298), + [anon_sym_LBRACK_CARET] = ACTIONS(301), + [anon_sym_BANG_LBRACK] = ACTIONS(304), + [anon_sym_LBRACK] = ACTIONS(307), + [anon_sym_LBRACE2] = ACTIONS(280), + [anon_sym_DOLLAR] = ACTIONS(310), + [anon_sym_TODO] = ACTIONS(313), + [anon_sym_WIP] = ACTIONS(313), + [anon_sym_NOTE] = ACTIONS(316), + [anon_sym_INFO] = ACTIONS(316), + [anon_sym_XXX] = ACTIONS(316), + [sym_fixme] = ACTIONS(268), + [anon_sym_PIPE] = ACTIONS(268), + [sym__whitespace1] = ACTIONS(319), + [sym__newline] = ACTIONS(322), + [aux_sym__text_token1] = ACTIONS(325), + [sym__verbatim_begin] = ACTIONS(328), }, - [59] = { - [sym__inline] = STATE(763), - [sym__element] = STATE(116), - [sym_emphasis] = STATE(183), - [sym_emphasis_begin] = STATE(91), - [sym_strong] = STATE(183), - [sym_strong_begin] = STATE(92), - [sym__hard_line_break] = STATE(183), - [sym_hard_line_break] = STATE(183), - [sym__smart_punctuation] = STATE(183), - [sym_autolink] = STATE(183), - [sym_highlighted] = STATE(183), - [sym_insert] = STATE(183), - [sym_delete] = STATE(183), - [sym_superscript] = STATE(183), - [sym_subscript] = STATE(183), - [sym_footnote_reference] = STATE(183), - [sym__image] = STATE(183), - [sym_full_reference_image] = STATE(183), - [sym_collapsed_reference_image] = STATE(183), - [sym_inline_image] = STATE(183), - [sym__image_description] = STATE(645), - [sym__link] = STATE(183), - [sym_full_reference_link] = STATE(183), - [sym_collapsed_reference_link] = STATE(183), - [sym_inline_link] = STATE(183), - [sym_link_text] = STATE(646), - [sym__comment_with_spaces] = STATE(183), - [sym_span] = STATE(183), - [sym_raw_inline] = STATE(183), - [sym_math] = STATE(183), - [sym_verbatim] = STATE(183), - [sym__todo_highlights] = STATE(183), - [sym_todo] = STATE(183), - [sym_note] = STATE(183), - [sym__symbol_fallback] = STATE(183), - [aux_sym__text] = STATE(149), - [aux_sym__inline_repeat1] = STATE(116), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(210), - [anon_sym__] = ACTIONS(213), - [anon_sym_LBRACE_STAR] = ACTIONS(216), - [anon_sym_STAR] = ACTIONS(552), - [aux_sym_strong_end_token1] = ACTIONS(93), - [anon_sym_BSLASH] = ACTIONS(222), - [sym_quotation_marks] = ACTIONS(225), - [sym_ellipsis] = ACTIONS(225), - [sym_em_dash] = ACTIONS(225), - [sym_en_dash] = ACTIONS(228), - [sym_backslash_escape] = ACTIONS(228), - [anon_sym_LT] = ACTIONS(231), - [anon_sym_LBRACE_EQ] = ACTIONS(234), - [anon_sym_LBRACE_PLUS] = ACTIONS(237), - [anon_sym_LBRACE_DASH] = ACTIONS(240), - [sym_symbol] = ACTIONS(225), - [anon_sym_LBRACE_CARET] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(243), - [anon_sym_LBRACE_TILDE] = ACTIONS(246), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_LBRACK_CARET] = ACTIONS(249), - [anon_sym_BANG_LBRACK] = ACTIONS(252), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_LBRACE2] = ACTIONS(228), - [anon_sym_DOLLAR] = ACTIONS(258), - [anon_sym_TODO] = ACTIONS(261), - [anon_sym_WIP] = ACTIONS(261), - [anon_sym_NOTE] = ACTIONS(264), - [anon_sym_INFO] = ACTIONS(264), - [anon_sym_XXX] = ACTIONS(264), - [sym_fixme] = ACTIONS(225), - [anon_sym_PIPE] = ACTIONS(225), - [sym__whitespace1] = ACTIONS(522), - [sym__newline] = ACTIONS(270), - [aux_sym__text_token1] = ACTIONS(273), - [sym__verbatim_begin] = ACTIONS(276), + [25] = { + [sym__inline] = STATE(785), + [sym__element] = STATE(78), + [sym_emphasis] = STATE(167), + [sym_emphasis_begin] = STATE(894), + [sym_strong] = STATE(167), + [sym_strong_begin] = STATE(117), + [sym__hard_line_break] = STATE(167), + [sym_hard_line_break] = STATE(167), + [sym__smart_punctuation] = STATE(167), + [sym_autolink] = STATE(167), + [sym_highlighted] = STATE(167), + [sym_insert] = STATE(167), + [sym_delete] = STATE(167), + [sym_superscript] = STATE(167), + [sym_subscript] = STATE(167), + [sym_footnote_reference] = STATE(167), + [sym__image] = STATE(167), + [sym_full_reference_image] = STATE(167), + [sym_collapsed_reference_image] = STATE(167), + [sym_inline_image] = STATE(167), + [sym__image_description] = STATE(613), + [sym__link] = STATE(167), + [sym_full_reference_link] = STATE(167), + [sym_collapsed_reference_link] = STATE(167), + [sym_inline_link] = STATE(167), + [sym_link_text] = STATE(614), + [sym__comment_with_spaces] = STATE(167), + [sym_span] = STATE(167), + [sym_raw_inline] = STATE(167), + [sym_math] = STATE(167), + [sym_verbatim] = STATE(167), + [sym__todo_highlights] = STATE(167), + [sym_todo] = STATE(167), + [sym_note] = STATE(167), + [sym__symbol_fallback] = STATE(167), + [aux_sym__text] = STATE(130), + [aux_sym__inline_repeat1] = STATE(78), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_] = ACTIONS(199), + [anon_sym__] = ACTIONS(202), + [anon_sym_LBRACE_STAR] = ACTIONS(205), + [anon_sym_STAR] = ACTIONS(208), + [anon_sym_BSLASH] = ACTIONS(211), + [sym_quotation_marks] = ACTIONS(202), + [sym_ellipsis] = ACTIONS(202), + [sym_em_dash] = ACTIONS(202), + [sym_en_dash] = ACTIONS(214), + [sym_backslash_escape] = ACTIONS(214), + [anon_sym_LT] = ACTIONS(217), + [anon_sym_LBRACE_EQ] = ACTIONS(220), + [anon_sym_LBRACE_PLUS] = ACTIONS(223), + [anon_sym_LBRACE_DASH] = ACTIONS(226), + [sym_symbol] = ACTIONS(202), + [anon_sym_LBRACE_CARET] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(466), + [anon_sym_CARET_RBRACE] = ACTIONS(79), + [anon_sym_LBRACE_TILDE] = ACTIONS(232), + [anon_sym_TILDE] = ACTIONS(232), + [anon_sym_LBRACK_CARET] = ACTIONS(235), + [anon_sym_BANG_LBRACK] = ACTIONS(238), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_LBRACE2] = ACTIONS(214), + [anon_sym_DOLLAR] = ACTIONS(244), + [anon_sym_TODO] = ACTIONS(247), + [anon_sym_WIP] = ACTIONS(247), + [anon_sym_NOTE] = ACTIONS(250), + [anon_sym_INFO] = ACTIONS(250), + [anon_sym_XXX] = ACTIONS(250), + [sym_fixme] = ACTIONS(202), + [anon_sym_PIPE] = ACTIONS(202), + [sym__whitespace1] = ACTIONS(253), + [sym__newline] = ACTIONS(256), + [aux_sym__text_token1] = ACTIONS(259), + [sym__verbatim_begin] = ACTIONS(262), }, - [60] = { - [sym__inline] = STATE(823), - [sym__element] = STATE(103), - [sym_emphasis] = STATE(200), - [sym_emphasis_begin] = STATE(101), - [sym_strong] = STATE(200), - [sym_strong_begin] = STATE(104), - [sym__hard_line_break] = STATE(200), - [sym_hard_line_break] = STATE(200), - [sym__smart_punctuation] = STATE(200), - [sym_autolink] = STATE(200), - [sym_highlighted] = STATE(200), - [sym_insert] = STATE(200), - [sym_delete] = STATE(200), - [sym_superscript] = STATE(200), - [sym_subscript] = STATE(200), - [sym_footnote_reference] = STATE(200), - [sym__image] = STATE(200), - [sym_full_reference_image] = STATE(200), - [sym_collapsed_reference_image] = STATE(200), - [sym_inline_image] = STATE(200), - [sym__image_description] = STATE(642), - [sym__link] = STATE(200), - [sym_full_reference_link] = STATE(200), - [sym_collapsed_reference_link] = STATE(200), - [sym_inline_link] = STATE(200), - [sym_link_text] = STATE(643), - [sym__comment_with_spaces] = STATE(200), - [sym_span] = STATE(200), - [sym_raw_inline] = STATE(200), - [sym_math] = STATE(200), - [sym_verbatim] = STATE(200), - [sym__todo_highlights] = STATE(200), - [sym_todo] = STATE(200), - [sym_note] = STATE(200), - [sym__symbol_fallback] = STATE(200), - [aux_sym__text] = STATE(138), - [aux_sym__inline_repeat1] = STATE(103), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(51), - [anon_sym__] = ACTIONS(54), - [anon_sym_LBRACE_STAR] = ACTIONS(57), - [anon_sym_STAR] = ACTIONS(60), - [anon_sym_BSLASH] = ACTIONS(63), - [sym_quotation_marks] = ACTIONS(66), - [sym_ellipsis] = ACTIONS(66), - [sym_em_dash] = ACTIONS(66), - [sym_en_dash] = ACTIONS(69), - [sym_backslash_escape] = ACTIONS(69), - [anon_sym_LT] = ACTIONS(72), - [anon_sym_LBRACE_EQ] = ACTIONS(75), - [anon_sym_LBRACE_PLUS] = ACTIONS(78), - [anon_sym_PLUS_RBRACE] = ACTIONS(93), - [anon_sym_LBRACE_DASH] = ACTIONS(81), - [sym_symbol] = ACTIONS(66), - [anon_sym_LBRACE_CARET] = ACTIONS(84), - [anon_sym_CARET] = ACTIONS(84), - [anon_sym_LBRACE_TILDE] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(87), - [anon_sym_LBRACK_CARET] = ACTIONS(95), - [anon_sym_BANG_LBRACK] = ACTIONS(100), - [anon_sym_LBRACK] = ACTIONS(103), - [anon_sym_LBRACE2] = ACTIONS(69), - [anon_sym_DOLLAR] = ACTIONS(106), - [anon_sym_TODO] = ACTIONS(109), - [anon_sym_WIP] = ACTIONS(109), - [anon_sym_NOTE] = ACTIONS(112), - [anon_sym_INFO] = ACTIONS(112), - [anon_sym_XXX] = ACTIONS(112), - [sym_fixme] = ACTIONS(66), - [anon_sym_PIPE] = ACTIONS(66), - [sym__whitespace1] = ACTIONS(115), - [sym__newline] = ACTIONS(118), - [aux_sym__text_token1] = ACTIONS(121), - [sym__verbatim_begin] = ACTIONS(124), + [26] = { + [sym__inline] = STATE(783), + [sym__element] = STATE(73), + [sym_emphasis] = STATE(180), + [sym_emphasis_begin] = STATE(895), + [sym_strong] = STATE(180), + [sym_strong_begin] = STATE(114), + [sym__hard_line_break] = STATE(180), + [sym_hard_line_break] = STATE(180), + [sym__smart_punctuation] = STATE(180), + [sym_autolink] = STATE(180), + [sym_highlighted] = STATE(180), + [sym_insert] = STATE(180), + [sym_delete] = STATE(180), + [sym_superscript] = STATE(180), + [sym_subscript] = STATE(180), + [sym_footnote_reference] = STATE(180), + [sym__image] = STATE(180), + [sym_full_reference_image] = STATE(180), + [sym_collapsed_reference_image] = STATE(180), + [sym_inline_image] = STATE(180), + [sym__image_description] = STATE(632), + [sym__link] = STATE(180), + [sym_full_reference_link] = STATE(180), + [sym_collapsed_reference_link] = STATE(180), + [sym_inline_link] = STATE(180), + [sym_link_text] = STATE(633), + [sym__comment_with_spaces] = STATE(180), + [sym_span] = STATE(180), + [sym_raw_inline] = STATE(180), + [sym_math] = STATE(180), + [sym_verbatim] = STATE(180), + [sym__todo_highlights] = STATE(180), + [sym_todo] = STATE(180), + [sym_note] = STATE(180), + [sym__symbol_fallback] = STATE(180), + [aux_sym__text] = STATE(132), + [aux_sym__inline_repeat1] = STATE(73), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_] = ACTIONS(133), + [anon_sym__] = ACTIONS(136), + [anon_sym_LBRACE_STAR] = ACTIONS(139), + [anon_sym_STAR] = ACTIONS(142), + [anon_sym_BSLASH] = ACTIONS(145), + [sym_quotation_marks] = ACTIONS(136), + [sym_ellipsis] = ACTIONS(136), + [sym_em_dash] = ACTIONS(136), + [sym_en_dash] = ACTIONS(148), + [sym_backslash_escape] = ACTIONS(148), + [anon_sym_LT] = ACTIONS(151), + [anon_sym_LBRACE_EQ] = ACTIONS(154), + [anon_sym_LBRACE_PLUS] = ACTIONS(157), + [anon_sym_LBRACE_DASH] = ACTIONS(160), + [sym_symbol] = ACTIONS(136), + [anon_sym_LBRACE_CARET] = ACTIONS(163), + [anon_sym_CARET] = ACTIONS(469), + [anon_sym_CARET_RBRACE] = ACTIONS(79), + [anon_sym_LBRACE_TILDE] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(166), + [anon_sym_LBRACK_CARET] = ACTIONS(169), + [anon_sym_BANG_LBRACK] = ACTIONS(172), + [anon_sym_LBRACK] = ACTIONS(175), + [anon_sym_LBRACE2] = ACTIONS(148), + [anon_sym_DOLLAR] = ACTIONS(178), + [anon_sym_TODO] = ACTIONS(181), + [anon_sym_WIP] = ACTIONS(181), + [anon_sym_NOTE] = ACTIONS(184), + [anon_sym_INFO] = ACTIONS(184), + [anon_sym_XXX] = ACTIONS(184), + [sym_fixme] = ACTIONS(136), + [anon_sym_PIPE] = ACTIONS(136), + [sym__whitespace1] = ACTIONS(187), + [sym__newline] = ACTIONS(190), + [aux_sym__text_token1] = ACTIONS(193), + [sym__verbatim_begin] = ACTIONS(196), }, - [61] = { - [sym__inline] = STATE(704), - [sym__element] = STATE(85), + [27] = { + [sym__inline] = STATE(663), + [sym__element] = STATE(72), + [sym_emphasis] = STATE(163), + [sym_emphasis_begin] = STATE(896), + [sym_strong] = STATE(163), + [sym_strong_begin] = STATE(110), + [sym__hard_line_break] = STATE(163), + [sym_hard_line_break] = STATE(163), + [sym__smart_punctuation] = STATE(163), + [sym_autolink] = STATE(163), + [sym_highlighted] = STATE(163), + [sym_insert] = STATE(163), + [sym_delete] = STATE(163), + [sym_superscript] = STATE(163), + [sym_subscript] = STATE(163), + [sym_footnote_reference] = STATE(163), + [sym__image] = STATE(163), + [sym_full_reference_image] = STATE(163), + [sym_collapsed_reference_image] = STATE(163), + [sym_inline_image] = STATE(163), + [sym__image_description] = STATE(622), + [sym__link] = STATE(163), + [sym_full_reference_link] = STATE(163), + [sym_collapsed_reference_link] = STATE(163), + [sym_inline_link] = STATE(163), + [sym_link_text] = STATE(605), + [sym__comment_with_spaces] = STATE(163), + [sym_span] = STATE(163), + [sym_raw_inline] = STATE(163), + [sym_math] = STATE(163), + [sym_verbatim] = STATE(163), + [sym__todo_highlights] = STATE(163), + [sym_todo] = STATE(163), + [sym_note] = STATE(163), + [sym__symbol_fallback] = STATE(163), + [aux_sym__text] = STATE(146), + [aux_sym__inline_repeat1] = STATE(72), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_] = ACTIONS(331), + [anon_sym__] = ACTIONS(334), + [anon_sym_LBRACE_STAR] = ACTIONS(337), + [anon_sym_STAR] = ACTIONS(340), + [anon_sym_BSLASH] = ACTIONS(343), + [sym_quotation_marks] = ACTIONS(334), + [sym_ellipsis] = ACTIONS(334), + [sym_em_dash] = ACTIONS(334), + [sym_en_dash] = ACTIONS(346), + [sym_backslash_escape] = ACTIONS(346), + [anon_sym_LT] = ACTIONS(349), + [anon_sym_LBRACE_EQ] = ACTIONS(352), + [anon_sym_LBRACE_PLUS] = ACTIONS(355), + [anon_sym_LBRACE_DASH] = ACTIONS(358), + [sym_symbol] = ACTIONS(334), + [anon_sym_LBRACE_CARET] = ACTIONS(361), + [anon_sym_CARET] = ACTIONS(472), + [anon_sym_CARET_RBRACE] = ACTIONS(79), + [anon_sym_LBRACE_TILDE] = ACTIONS(364), + [anon_sym_TILDE] = ACTIONS(364), + [anon_sym_LBRACK_CARET] = ACTIONS(367), + [anon_sym_BANG_LBRACK] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(373), + [anon_sym_LBRACE2] = ACTIONS(346), + [anon_sym_DOLLAR] = ACTIONS(376), + [anon_sym_TODO] = ACTIONS(379), + [anon_sym_WIP] = ACTIONS(379), + [anon_sym_NOTE] = ACTIONS(382), + [anon_sym_INFO] = ACTIONS(382), + [anon_sym_XXX] = ACTIONS(382), + [sym_fixme] = ACTIONS(334), + [anon_sym_PIPE] = ACTIONS(334), + [sym__whitespace1] = ACTIONS(385), + [sym__newline] = ACTIONS(388), + [aux_sym__text_token1] = ACTIONS(391), + [sym__verbatim_begin] = ACTIONS(394), + }, + [28] = { + [sym__inline] = STATE(664), + [sym__element] = STATE(113), [sym_emphasis] = STATE(175), - [sym_emphasis_begin] = STATE(94), + [sym_emphasis_begin] = STATE(897), [sym_strong] = STATE(175), - [sym_strong_begin] = STATE(95), + [sym_strong_begin] = STATE(108), [sym__hard_line_break] = STATE(175), [sym_hard_line_break] = STATE(175), [sym__smart_punctuation] = STATE(175), @@ -12674,12 +9789,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_full_reference_image] = STATE(175), [sym_collapsed_reference_image] = STATE(175), [sym_inline_image] = STATE(175), - [sym__image_description] = STATE(652), + [sym__image_description] = STATE(626), [sym__link] = STATE(175), [sym_full_reference_link] = STATE(175), [sym_collapsed_reference_link] = STATE(175), [sym_inline_link] = STATE(175), - [sym_link_text] = STATE(649), + [sym_link_text] = STATE(624), [sym__comment_with_spaces] = STATE(175), [sym_span] = STATE(175), [sym_raw_inline] = STATE(175), @@ -12689,53 +9804,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(175), [sym_note] = STATE(175), [sym__symbol_fallback] = STATE(175), - [aux_sym__text] = STATE(156), - [aux_sym__inline_repeat1] = STATE(85), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(417), - [anon_sym__] = ACTIONS(420), - [anon_sym_LBRACE_STAR] = ACTIONS(423), - [anon_sym_STAR] = ACTIONS(555), - [aux_sym_strong_end_token1] = ACTIONS(93), - [anon_sym_BSLASH] = ACTIONS(429), - [sym_quotation_marks] = ACTIONS(432), - [sym_ellipsis] = ACTIONS(432), - [sym_em_dash] = ACTIONS(432), - [sym_en_dash] = ACTIONS(435), - [sym_backslash_escape] = ACTIONS(435), - [anon_sym_LT] = ACTIONS(438), - [anon_sym_LBRACE_EQ] = ACTIONS(441), - [anon_sym_LBRACE_PLUS] = ACTIONS(444), - [anon_sym_LBRACE_DASH] = ACTIONS(447), - [sym_symbol] = ACTIONS(432), - [anon_sym_LBRACE_CARET] = ACTIONS(450), - [anon_sym_CARET] = ACTIONS(450), - [anon_sym_LBRACE_TILDE] = ACTIONS(453), - [anon_sym_TILDE] = ACTIONS(453), - [anon_sym_LBRACK_CARET] = ACTIONS(456), - [anon_sym_BANG_LBRACK] = ACTIONS(459), - [anon_sym_LBRACK] = ACTIONS(462), - [anon_sym_LBRACE2] = ACTIONS(435), - [anon_sym_DOLLAR] = ACTIONS(465), - [anon_sym_TODO] = ACTIONS(468), - [anon_sym_WIP] = ACTIONS(468), - [anon_sym_NOTE] = ACTIONS(471), - [anon_sym_INFO] = ACTIONS(471), - [anon_sym_XXX] = ACTIONS(471), - [sym_fixme] = ACTIONS(432), - [anon_sym_PIPE] = ACTIONS(432), - [sym__whitespace1] = ACTIONS(528), - [sym__newline] = ACTIONS(477), - [aux_sym__text_token1] = ACTIONS(480), - [sym__verbatim_begin] = ACTIONS(483), + [aux_sym__text] = STATE(125), + [aux_sym__inline_repeat1] = STATE(113), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_] = ACTIONS(397), + [anon_sym__] = ACTIONS(400), + [anon_sym_LBRACE_STAR] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(406), + [anon_sym_BSLASH] = ACTIONS(409), + [sym_quotation_marks] = ACTIONS(400), + [sym_ellipsis] = ACTIONS(400), + [sym_em_dash] = ACTIONS(400), + [sym_en_dash] = ACTIONS(412), + [sym_backslash_escape] = ACTIONS(412), + [anon_sym_LT] = ACTIONS(415), + [anon_sym_LBRACE_EQ] = ACTIONS(418), + [anon_sym_LBRACE_PLUS] = ACTIONS(421), + [anon_sym_LBRACE_DASH] = ACTIONS(424), + [sym_symbol] = ACTIONS(400), + [anon_sym_LBRACE_CARET] = ACTIONS(427), + [anon_sym_CARET] = ACTIONS(475), + [anon_sym_CARET_RBRACE] = ACTIONS(79), + [anon_sym_LBRACE_TILDE] = ACTIONS(430), + [anon_sym_TILDE] = ACTIONS(430), + [anon_sym_LBRACK_CARET] = ACTIONS(433), + [anon_sym_BANG_LBRACK] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(439), + [anon_sym_LBRACE2] = ACTIONS(412), + [anon_sym_DOLLAR] = ACTIONS(442), + [anon_sym_TODO] = ACTIONS(445), + [anon_sym_WIP] = ACTIONS(445), + [anon_sym_NOTE] = ACTIONS(448), + [anon_sym_INFO] = ACTIONS(448), + [anon_sym_XXX] = ACTIONS(448), + [sym_fixme] = ACTIONS(400), + [anon_sym_PIPE] = ACTIONS(400), + [sym__whitespace1] = ACTIONS(451), + [sym__newline] = ACTIONS(454), + [aux_sym__text_token1] = ACTIONS(457), + [sym__verbatim_begin] = ACTIONS(460), }, - [62] = { - [sym__inline] = STATE(702), - [sym__element] = STATE(120), + [29] = { + [sym__inline] = STATE(832), + [sym__element] = STATE(97), [sym_emphasis] = STATE(182), - [sym_emphasis_begin] = STATE(97), + [sym_emphasis_begin] = STATE(898), [sym_strong] = STATE(182), - [sym_strong_begin] = STATE(99), + [sym_strong_begin] = STATE(104), [sym__hard_line_break] = STATE(182), [sym_hard_line_break] = STATE(182), [sym__smart_punctuation] = STATE(182), @@ -12750,12 +9865,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_full_reference_image] = STATE(182), [sym_collapsed_reference_image] = STATE(182), [sym_inline_image] = STATE(182), - [sym__image_description] = STATE(628), + [sym__image_description] = STATE(610), [sym__link] = STATE(182), [sym_full_reference_link] = STATE(182), [sym_collapsed_reference_link] = STATE(182), [sym_inline_link] = STATE(182), - [sym_link_text] = STATE(627), + [sym_link_text] = STATE(608), [sym__comment_with_spaces] = STATE(182), [sym_span] = STATE(182), [sym_raw_inline] = STATE(182), @@ -12765,53 +9880,509 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(182), [sym_note] = STATE(182), [sym__symbol_fallback] = STATE(182), - [aux_sym__text] = STATE(136), - [aux_sym__inline_repeat1] = STATE(120), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(141), - [anon_sym__] = ACTIONS(486), - [anon_sym_LBRACE_STAR] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(150), - [anon_sym_BSLASH] = ACTIONS(153), - [sym_quotation_marks] = ACTIONS(156), - [sym_ellipsis] = ACTIONS(156), - [sym_em_dash] = ACTIONS(156), - [sym_en_dash] = ACTIONS(159), - [sym_backslash_escape] = ACTIONS(159), - [anon_sym_LT] = ACTIONS(162), - [anon_sym_LBRACE_EQ] = ACTIONS(165), - [anon_sym_EQ_RBRACE] = ACTIONS(93), - [anon_sym_LBRACE_PLUS] = ACTIONS(168), - [anon_sym_LBRACE_DASH] = ACTIONS(171), - [sym_symbol] = ACTIONS(156), - [anon_sym_LBRACE_CARET] = ACTIONS(174), - [anon_sym_CARET] = ACTIONS(174), - [anon_sym_LBRACE_TILDE] = ACTIONS(177), - [anon_sym_TILDE] = ACTIONS(177), - [anon_sym_LBRACK_CARET] = ACTIONS(180), - [anon_sym_BANG_LBRACK] = ACTIONS(183), - [anon_sym_LBRACK] = ACTIONS(186), - [anon_sym_LBRACE2] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(189), - [anon_sym_TODO] = ACTIONS(192), - [anon_sym_WIP] = ACTIONS(192), - [anon_sym_NOTE] = ACTIONS(195), - [anon_sym_INFO] = ACTIONS(195), - [anon_sym_XXX] = ACTIONS(195), - [sym_fixme] = ACTIONS(156), - [anon_sym_PIPE] = ACTIONS(156), - [sym__whitespace1] = ACTIONS(489), - [sym__newline] = ACTIONS(201), - [aux_sym__text_token1] = ACTIONS(204), - [sym__verbatim_begin] = ACTIONS(207), + [aux_sym__text] = STATE(144), + [aux_sym__inline_repeat1] = STATE(97), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_] = ACTIONS(49), + [anon_sym__] = ACTIONS(52), + [anon_sym_LBRACE_STAR] = ACTIONS(55), + [anon_sym_STAR] = ACTIONS(58), + [anon_sym_BSLASH] = ACTIONS(61), + [sym_quotation_marks] = ACTIONS(52), + [sym_ellipsis] = ACTIONS(52), + [sym_em_dash] = ACTIONS(52), + [sym_en_dash] = ACTIONS(64), + [sym_backslash_escape] = ACTIONS(64), + [anon_sym_LT] = ACTIONS(67), + [anon_sym_LBRACE_EQ] = ACTIONS(70), + [anon_sym_LBRACE_PLUS] = ACTIONS(73), + [anon_sym_LBRACE_DASH] = ACTIONS(76), + [sym_symbol] = ACTIONS(52), + [anon_sym_LBRACE_CARET] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(130), + [anon_sym_CARET_RBRACE] = ACTIONS(79), + [anon_sym_LBRACE_TILDE] = ACTIONS(84), + [anon_sym_TILDE] = ACTIONS(84), + [anon_sym_LBRACK_CARET] = ACTIONS(87), + [anon_sym_BANG_LBRACK] = ACTIONS(92), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACE2] = ACTIONS(64), + [anon_sym_DOLLAR] = ACTIONS(98), + [anon_sym_TODO] = ACTIONS(101), + [anon_sym_WIP] = ACTIONS(101), + [anon_sym_NOTE] = ACTIONS(104), + [anon_sym_INFO] = ACTIONS(104), + [anon_sym_XXX] = ACTIONS(104), + [sym_fixme] = ACTIONS(52), + [anon_sym_PIPE] = ACTIONS(52), + [sym__whitespace1] = ACTIONS(107), + [sym__newline] = ACTIONS(110), + [aux_sym__text_token1] = ACTIONS(113), + [sym__verbatim_begin] = ACTIONS(116), }, - [63] = { + [30] = { + [sym__inline] = STATE(749), + [sym__element] = STATE(107), + [sym_emphasis] = STATE(187), + [sym_emphasis_begin] = STATE(893), + [sym_strong] = STATE(187), + [sym_strong_begin] = STATE(119), + [sym__hard_line_break] = STATE(187), + [sym_hard_line_break] = STATE(187), + [sym__smart_punctuation] = STATE(187), + [sym_autolink] = STATE(187), + [sym_highlighted] = STATE(187), + [sym_insert] = STATE(187), + [sym_delete] = STATE(187), + [sym_superscript] = STATE(187), + [sym_subscript] = STATE(187), + [sym_footnote_reference] = STATE(187), + [sym__image] = STATE(187), + [sym_full_reference_image] = STATE(187), + [sym_collapsed_reference_image] = STATE(187), + [sym_inline_image] = STATE(187), + [sym__image_description] = STATE(616), + [sym__link] = STATE(187), + [sym_full_reference_link] = STATE(187), + [sym_collapsed_reference_link] = STATE(187), + [sym_inline_link] = STATE(187), + [sym_link_text] = STATE(634), + [sym__comment_with_spaces] = STATE(187), + [sym_span] = STATE(187), + [sym_raw_inline] = STATE(187), + [sym_math] = STATE(187), + [sym_verbatim] = STATE(187), + [sym__todo_highlights] = STATE(187), + [sym_todo] = STATE(187), + [sym_note] = STATE(187), + [sym__symbol_fallback] = STATE(187), + [aux_sym__text] = STATE(131), + [aux_sym__inline_repeat1] = STATE(107), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_] = ACTIONS(265), + [anon_sym__] = ACTIONS(268), + [anon_sym_LBRACE_STAR] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(274), + [anon_sym_BSLASH] = ACTIONS(277), + [sym_quotation_marks] = ACTIONS(268), + [sym_ellipsis] = ACTIONS(268), + [sym_em_dash] = ACTIONS(268), + [sym_en_dash] = ACTIONS(280), + [sym_backslash_escape] = ACTIONS(280), + [anon_sym_LT] = ACTIONS(283), + [anon_sym_LBRACE_EQ] = ACTIONS(286), + [anon_sym_LBRACE_PLUS] = ACTIONS(289), + [anon_sym_LBRACE_DASH] = ACTIONS(292), + [sym_symbol] = ACTIONS(268), + [anon_sym_LBRACE_CARET] = ACTIONS(295), + [anon_sym_CARET] = ACTIONS(295), + [anon_sym_LBRACE_TILDE] = ACTIONS(298), + [anon_sym_TILDE] = ACTIONS(478), + [anon_sym_TILDE_RBRACE] = ACTIONS(79), + [anon_sym_LBRACK_CARET] = ACTIONS(301), + [anon_sym_BANG_LBRACK] = ACTIONS(304), + [anon_sym_LBRACK] = ACTIONS(307), + [anon_sym_LBRACE2] = ACTIONS(280), + [anon_sym_DOLLAR] = ACTIONS(310), + [anon_sym_TODO] = ACTIONS(313), + [anon_sym_WIP] = ACTIONS(313), + [anon_sym_NOTE] = ACTIONS(316), + [anon_sym_INFO] = ACTIONS(316), + [anon_sym_XXX] = ACTIONS(316), + [sym_fixme] = ACTIONS(268), + [anon_sym_PIPE] = ACTIONS(268), + [sym__whitespace1] = ACTIONS(319), + [sym__newline] = ACTIONS(322), + [aux_sym__text_token1] = ACTIONS(325), + [sym__verbatim_begin] = ACTIONS(328), + }, + [31] = { + [sym__inline] = STATE(742), + [sym__element] = STATE(78), + [sym_emphasis] = STATE(167), + [sym_emphasis_begin] = STATE(894), + [sym_strong] = STATE(167), + [sym_strong_begin] = STATE(117), + [sym__hard_line_break] = STATE(167), + [sym_hard_line_break] = STATE(167), + [sym__smart_punctuation] = STATE(167), + [sym_autolink] = STATE(167), + [sym_highlighted] = STATE(167), + [sym_insert] = STATE(167), + [sym_delete] = STATE(167), + [sym_superscript] = STATE(167), + [sym_subscript] = STATE(167), + [sym_footnote_reference] = STATE(167), + [sym__image] = STATE(167), + [sym_full_reference_image] = STATE(167), + [sym_collapsed_reference_image] = STATE(167), + [sym_inline_image] = STATE(167), + [sym__image_description] = STATE(613), + [sym__link] = STATE(167), + [sym_full_reference_link] = STATE(167), + [sym_collapsed_reference_link] = STATE(167), + [sym_inline_link] = STATE(167), + [sym_link_text] = STATE(614), + [sym__comment_with_spaces] = STATE(167), + [sym_span] = STATE(167), + [sym_raw_inline] = STATE(167), + [sym_math] = STATE(167), + [sym_verbatim] = STATE(167), + [sym__todo_highlights] = STATE(167), + [sym_todo] = STATE(167), + [sym_note] = STATE(167), + [sym__symbol_fallback] = STATE(167), + [aux_sym__text] = STATE(130), + [aux_sym__inline_repeat1] = STATE(78), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_] = ACTIONS(199), + [anon_sym__] = ACTIONS(202), + [anon_sym_LBRACE_STAR] = ACTIONS(205), + [anon_sym_STAR] = ACTIONS(208), + [anon_sym_BSLASH] = ACTIONS(211), + [sym_quotation_marks] = ACTIONS(202), + [sym_ellipsis] = ACTIONS(202), + [sym_em_dash] = ACTIONS(202), + [sym_en_dash] = ACTIONS(214), + [sym_backslash_escape] = ACTIONS(214), + [anon_sym_LT] = ACTIONS(217), + [anon_sym_LBRACE_EQ] = ACTIONS(220), + [anon_sym_LBRACE_PLUS] = ACTIONS(223), + [anon_sym_LBRACE_DASH] = ACTIONS(226), + [sym_symbol] = ACTIONS(202), + [anon_sym_LBRACE_CARET] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym_LBRACE_TILDE] = ACTIONS(232), + [anon_sym_TILDE] = ACTIONS(481), + [anon_sym_TILDE_RBRACE] = ACTIONS(79), + [anon_sym_LBRACK_CARET] = ACTIONS(235), + [anon_sym_BANG_LBRACK] = ACTIONS(238), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_LBRACE2] = ACTIONS(214), + [anon_sym_DOLLAR] = ACTIONS(244), + [anon_sym_TODO] = ACTIONS(247), + [anon_sym_WIP] = ACTIONS(247), + [anon_sym_NOTE] = ACTIONS(250), + [anon_sym_INFO] = ACTIONS(250), + [anon_sym_XXX] = ACTIONS(250), + [sym_fixme] = ACTIONS(202), + [anon_sym_PIPE] = ACTIONS(202), + [sym__whitespace1] = ACTIONS(253), + [sym__newline] = ACTIONS(256), + [aux_sym__text_token1] = ACTIONS(259), + [sym__verbatim_begin] = ACTIONS(262), + }, + [32] = { + [sym__inline] = STATE(741), + [sym__element] = STATE(73), + [sym_emphasis] = STATE(180), + [sym_emphasis_begin] = STATE(895), + [sym_strong] = STATE(180), + [sym_strong_begin] = STATE(114), + [sym__hard_line_break] = STATE(180), + [sym_hard_line_break] = STATE(180), + [sym__smart_punctuation] = STATE(180), + [sym_autolink] = STATE(180), + [sym_highlighted] = STATE(180), + [sym_insert] = STATE(180), + [sym_delete] = STATE(180), + [sym_superscript] = STATE(180), + [sym_subscript] = STATE(180), + [sym_footnote_reference] = STATE(180), + [sym__image] = STATE(180), + [sym_full_reference_image] = STATE(180), + [sym_collapsed_reference_image] = STATE(180), + [sym_inline_image] = STATE(180), + [sym__image_description] = STATE(632), + [sym__link] = STATE(180), + [sym_full_reference_link] = STATE(180), + [sym_collapsed_reference_link] = STATE(180), + [sym_inline_link] = STATE(180), + [sym_link_text] = STATE(633), + [sym__comment_with_spaces] = STATE(180), + [sym_span] = STATE(180), + [sym_raw_inline] = STATE(180), + [sym_math] = STATE(180), + [sym_verbatim] = STATE(180), + [sym__todo_highlights] = STATE(180), + [sym_todo] = STATE(180), + [sym_note] = STATE(180), + [sym__symbol_fallback] = STATE(180), + [aux_sym__text] = STATE(132), + [aux_sym__inline_repeat1] = STATE(73), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_] = ACTIONS(133), + [anon_sym__] = ACTIONS(136), + [anon_sym_LBRACE_STAR] = ACTIONS(139), + [anon_sym_STAR] = ACTIONS(142), + [anon_sym_BSLASH] = ACTIONS(145), + [sym_quotation_marks] = ACTIONS(136), + [sym_ellipsis] = ACTIONS(136), + [sym_em_dash] = ACTIONS(136), + [sym_en_dash] = ACTIONS(148), + [sym_backslash_escape] = ACTIONS(148), + [anon_sym_LT] = ACTIONS(151), + [anon_sym_LBRACE_EQ] = ACTIONS(154), + [anon_sym_LBRACE_PLUS] = ACTIONS(157), + [anon_sym_LBRACE_DASH] = ACTIONS(160), + [sym_symbol] = ACTIONS(136), + [anon_sym_LBRACE_CARET] = ACTIONS(163), + [anon_sym_CARET] = ACTIONS(163), + [anon_sym_LBRACE_TILDE] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(484), + [anon_sym_TILDE_RBRACE] = ACTIONS(79), + [anon_sym_LBRACK_CARET] = ACTIONS(169), + [anon_sym_BANG_LBRACK] = ACTIONS(172), + [anon_sym_LBRACK] = ACTIONS(175), + [anon_sym_LBRACE2] = ACTIONS(148), + [anon_sym_DOLLAR] = ACTIONS(178), + [anon_sym_TODO] = ACTIONS(181), + [anon_sym_WIP] = ACTIONS(181), + [anon_sym_NOTE] = ACTIONS(184), + [anon_sym_INFO] = ACTIONS(184), + [anon_sym_XXX] = ACTIONS(184), + [sym_fixme] = ACTIONS(136), + [anon_sym_PIPE] = ACTIONS(136), + [sym__whitespace1] = ACTIONS(187), + [sym__newline] = ACTIONS(190), + [aux_sym__text_token1] = ACTIONS(193), + [sym__verbatim_begin] = ACTIONS(196), + }, + [33] = { [sym__inline] = STATE(683), - [sym__element] = STATE(120), + [sym__element] = STATE(72), + [sym_emphasis] = STATE(163), + [sym_emphasis_begin] = STATE(896), + [sym_strong] = STATE(163), + [sym_strong_begin] = STATE(110), + [sym__hard_line_break] = STATE(163), + [sym_hard_line_break] = STATE(163), + [sym__smart_punctuation] = STATE(163), + [sym_autolink] = STATE(163), + [sym_highlighted] = STATE(163), + [sym_insert] = STATE(163), + [sym_delete] = STATE(163), + [sym_superscript] = STATE(163), + [sym_subscript] = STATE(163), + [sym_footnote_reference] = STATE(163), + [sym__image] = STATE(163), + [sym_full_reference_image] = STATE(163), + [sym_collapsed_reference_image] = STATE(163), + [sym_inline_image] = STATE(163), + [sym__image_description] = STATE(622), + [sym__link] = STATE(163), + [sym_full_reference_link] = STATE(163), + [sym_collapsed_reference_link] = STATE(163), + [sym_inline_link] = STATE(163), + [sym_link_text] = STATE(605), + [sym__comment_with_spaces] = STATE(163), + [sym_span] = STATE(163), + [sym_raw_inline] = STATE(163), + [sym_math] = STATE(163), + [sym_verbatim] = STATE(163), + [sym__todo_highlights] = STATE(163), + [sym_todo] = STATE(163), + [sym_note] = STATE(163), + [sym__symbol_fallback] = STATE(163), + [aux_sym__text] = STATE(146), + [aux_sym__inline_repeat1] = STATE(72), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_] = ACTIONS(331), + [anon_sym__] = ACTIONS(334), + [anon_sym_LBRACE_STAR] = ACTIONS(337), + [anon_sym_STAR] = ACTIONS(340), + [anon_sym_BSLASH] = ACTIONS(343), + [sym_quotation_marks] = ACTIONS(334), + [sym_ellipsis] = ACTIONS(334), + [sym_em_dash] = ACTIONS(334), + [sym_en_dash] = ACTIONS(346), + [sym_backslash_escape] = ACTIONS(346), + [anon_sym_LT] = ACTIONS(349), + [anon_sym_LBRACE_EQ] = ACTIONS(352), + [anon_sym_LBRACE_PLUS] = ACTIONS(355), + [anon_sym_LBRACE_DASH] = ACTIONS(358), + [sym_symbol] = ACTIONS(334), + [anon_sym_LBRACE_CARET] = ACTIONS(361), + [anon_sym_CARET] = ACTIONS(361), + [anon_sym_LBRACE_TILDE] = ACTIONS(364), + [anon_sym_TILDE] = ACTIONS(487), + [anon_sym_TILDE_RBRACE] = ACTIONS(79), + [anon_sym_LBRACK_CARET] = ACTIONS(367), + [anon_sym_BANG_LBRACK] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(373), + [anon_sym_LBRACE2] = ACTIONS(346), + [anon_sym_DOLLAR] = ACTIONS(376), + [anon_sym_TODO] = ACTIONS(379), + [anon_sym_WIP] = ACTIONS(379), + [anon_sym_NOTE] = ACTIONS(382), + [anon_sym_INFO] = ACTIONS(382), + [anon_sym_XXX] = ACTIONS(382), + [sym_fixme] = ACTIONS(334), + [anon_sym_PIPE] = ACTIONS(334), + [sym__whitespace1] = ACTIONS(385), + [sym__newline] = ACTIONS(388), + [aux_sym__text_token1] = ACTIONS(391), + [sym__verbatim_begin] = ACTIONS(394), + }, + [34] = { + [sym__inline] = STATE(684), + [sym__element] = STATE(113), + [sym_emphasis] = STATE(175), + [sym_emphasis_begin] = STATE(897), + [sym_strong] = STATE(175), + [sym_strong_begin] = STATE(108), + [sym__hard_line_break] = STATE(175), + [sym_hard_line_break] = STATE(175), + [sym__smart_punctuation] = STATE(175), + [sym_autolink] = STATE(175), + [sym_highlighted] = STATE(175), + [sym_insert] = STATE(175), + [sym_delete] = STATE(175), + [sym_superscript] = STATE(175), + [sym_subscript] = STATE(175), + [sym_footnote_reference] = STATE(175), + [sym__image] = STATE(175), + [sym_full_reference_image] = STATE(175), + [sym_collapsed_reference_image] = STATE(175), + [sym_inline_image] = STATE(175), + [sym__image_description] = STATE(626), + [sym__link] = STATE(175), + [sym_full_reference_link] = STATE(175), + [sym_collapsed_reference_link] = STATE(175), + [sym_inline_link] = STATE(175), + [sym_link_text] = STATE(624), + [sym__comment_with_spaces] = STATE(175), + [sym_span] = STATE(175), + [sym_raw_inline] = STATE(175), + [sym_math] = STATE(175), + [sym_verbatim] = STATE(175), + [sym__todo_highlights] = STATE(175), + [sym_todo] = STATE(175), + [sym_note] = STATE(175), + [sym__symbol_fallback] = STATE(175), + [aux_sym__text] = STATE(125), + [aux_sym__inline_repeat1] = STATE(113), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_] = ACTIONS(397), + [anon_sym__] = ACTIONS(400), + [anon_sym_LBRACE_STAR] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(406), + [anon_sym_BSLASH] = ACTIONS(409), + [sym_quotation_marks] = ACTIONS(400), + [sym_ellipsis] = ACTIONS(400), + [sym_em_dash] = ACTIONS(400), + [sym_en_dash] = ACTIONS(412), + [sym_backslash_escape] = ACTIONS(412), + [anon_sym_LT] = ACTIONS(415), + [anon_sym_LBRACE_EQ] = ACTIONS(418), + [anon_sym_LBRACE_PLUS] = ACTIONS(421), + [anon_sym_LBRACE_DASH] = ACTIONS(424), + [sym_symbol] = ACTIONS(400), + [anon_sym_LBRACE_CARET] = ACTIONS(427), + [anon_sym_CARET] = ACTIONS(427), + [anon_sym_LBRACE_TILDE] = ACTIONS(430), + [anon_sym_TILDE] = ACTIONS(490), + [anon_sym_TILDE_RBRACE] = ACTIONS(79), + [anon_sym_LBRACK_CARET] = ACTIONS(433), + [anon_sym_BANG_LBRACK] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(439), + [anon_sym_LBRACE2] = ACTIONS(412), + [anon_sym_DOLLAR] = ACTIONS(442), + [anon_sym_TODO] = ACTIONS(445), + [anon_sym_WIP] = ACTIONS(445), + [anon_sym_NOTE] = ACTIONS(448), + [anon_sym_INFO] = ACTIONS(448), + [anon_sym_XXX] = ACTIONS(448), + [sym_fixme] = ACTIONS(400), + [anon_sym_PIPE] = ACTIONS(400), + [sym__whitespace1] = ACTIONS(451), + [sym__newline] = ACTIONS(454), + [aux_sym__text_token1] = ACTIONS(457), + [sym__verbatim_begin] = ACTIONS(460), + }, + [35] = { + [sym__inline] = STATE(689), + [sym__element] = STATE(113), + [sym_emphasis] = STATE(175), + [sym_emphasis_begin] = STATE(897), + [sym_strong] = STATE(175), + [sym_strong_begin] = STATE(108), + [sym__hard_line_break] = STATE(175), + [sym_hard_line_break] = STATE(175), + [sym__smart_punctuation] = STATE(175), + [sym_autolink] = STATE(175), + [sym_highlighted] = STATE(175), + [sym_insert] = STATE(175), + [sym_delete] = STATE(175), + [sym_superscript] = STATE(175), + [sym_subscript] = STATE(175), + [sym_footnote_reference] = STATE(175), + [sym__image] = STATE(175), + [sym_full_reference_image] = STATE(175), + [sym_collapsed_reference_image] = STATE(175), + [sym_inline_image] = STATE(175), + [sym__image_description] = STATE(626), + [sym__link] = STATE(175), + [sym_full_reference_link] = STATE(175), + [sym_collapsed_reference_link] = STATE(175), + [sym_inline_link] = STATE(175), + [sym_link_text] = STATE(624), + [sym__comment_with_spaces] = STATE(175), + [sym_span] = STATE(175), + [sym_raw_inline] = STATE(175), + [sym_math] = STATE(175), + [sym_verbatim] = STATE(175), + [sym__todo_highlights] = STATE(175), + [sym_todo] = STATE(175), + [sym_note] = STATE(175), + [sym__symbol_fallback] = STATE(175), + [aux_sym__text] = STATE(125), + [aux_sym__inline_repeat1] = STATE(113), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_] = ACTIONS(397), + [anon_sym__] = ACTIONS(400), + [anon_sym_LBRACE_STAR] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(406), + [anon_sym_BSLASH] = ACTIONS(409), + [sym_quotation_marks] = ACTIONS(400), + [sym_ellipsis] = ACTIONS(400), + [sym_em_dash] = ACTIONS(400), + [sym_en_dash] = ACTIONS(412), + [sym_backslash_escape] = ACTIONS(412), + [anon_sym_LT] = ACTIONS(415), + [anon_sym_LBRACE_EQ] = ACTIONS(418), + [anon_sym_LBRACE_PLUS] = ACTIONS(421), + [anon_sym_LBRACE_DASH] = ACTIONS(424), + [anon_sym_DASH_RBRACE] = ACTIONS(79), + [sym_symbol] = ACTIONS(400), + [anon_sym_LBRACE_CARET] = ACTIONS(427), + [anon_sym_CARET] = ACTIONS(427), + [anon_sym_LBRACE_TILDE] = ACTIONS(430), + [anon_sym_TILDE] = ACTIONS(430), + [anon_sym_LBRACK_CARET] = ACTIONS(433), + [anon_sym_BANG_LBRACK] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(439), + [anon_sym_LBRACE2] = ACTIONS(412), + [anon_sym_DOLLAR] = ACTIONS(442), + [anon_sym_TODO] = ACTIONS(445), + [anon_sym_WIP] = ACTIONS(445), + [anon_sym_NOTE] = ACTIONS(448), + [anon_sym_INFO] = ACTIONS(448), + [anon_sym_XXX] = ACTIONS(448), + [sym_fixme] = ACTIONS(400), + [anon_sym_PIPE] = ACTIONS(400), + [sym__whitespace1] = ACTIONS(451), + [sym__newline] = ACTIONS(454), + [aux_sym__text_token1] = ACTIONS(457), + [sym__verbatim_begin] = ACTIONS(460), + }, + [36] = { + [sym__inline] = STATE(805), + [sym__element] = STATE(97), [sym_emphasis] = STATE(182), - [sym_emphasis_begin] = STATE(97), + [sym_emphasis_begin] = STATE(898), [sym_strong] = STATE(182), - [sym_strong_begin] = STATE(99), + [sym_strong_begin] = STATE(104), [sym__hard_line_break] = STATE(182), [sym_hard_line_break] = STATE(182), [sym__smart_punctuation] = STATE(182), @@ -12826,12 +10397,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_full_reference_image] = STATE(182), [sym_collapsed_reference_image] = STATE(182), [sym_inline_image] = STATE(182), - [sym__image_description] = STATE(628), + [sym__image_description] = STATE(610), [sym__link] = STATE(182), [sym_full_reference_link] = STATE(182), [sym_collapsed_reference_link] = STATE(182), [sym_inline_link] = STATE(182), - [sym_link_text] = STATE(627), + [sym_link_text] = STATE(608), [sym__comment_with_spaces] = STATE(182), [sym_span] = STATE(182), [sym_raw_inline] = STATE(182), @@ -12841,53 +10412,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(182), [sym_note] = STATE(182), [sym__symbol_fallback] = STATE(182), - [aux_sym__text] = STATE(136), - [aux_sym__inline_repeat1] = STATE(120), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(141), - [anon_sym__] = ACTIONS(486), - [anon_sym_LBRACE_STAR] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(150), - [anon_sym_BSLASH] = ACTIONS(153), - [sym_quotation_marks] = ACTIONS(156), - [sym_ellipsis] = ACTIONS(156), - [sym_em_dash] = ACTIONS(156), - [sym_en_dash] = ACTIONS(159), - [sym_backslash_escape] = ACTIONS(159), - [anon_sym_LT] = ACTIONS(162), - [anon_sym_LBRACE_EQ] = ACTIONS(165), - [anon_sym_LBRACE_PLUS] = ACTIONS(168), - [anon_sym_PLUS_RBRACE] = ACTIONS(93), - [anon_sym_LBRACE_DASH] = ACTIONS(171), - [sym_symbol] = ACTIONS(156), - [anon_sym_LBRACE_CARET] = ACTIONS(174), - [anon_sym_CARET] = ACTIONS(174), - [anon_sym_LBRACE_TILDE] = ACTIONS(177), - [anon_sym_TILDE] = ACTIONS(177), - [anon_sym_LBRACK_CARET] = ACTIONS(180), - [anon_sym_BANG_LBRACK] = ACTIONS(183), - [anon_sym_LBRACK] = ACTIONS(186), - [anon_sym_LBRACE2] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(189), - [anon_sym_TODO] = ACTIONS(192), - [anon_sym_WIP] = ACTIONS(192), - [anon_sym_NOTE] = ACTIONS(195), - [anon_sym_INFO] = ACTIONS(195), - [anon_sym_XXX] = ACTIONS(195), - [sym_fixme] = ACTIONS(156), - [anon_sym_PIPE] = ACTIONS(156), - [sym__whitespace1] = ACTIONS(489), - [sym__newline] = ACTIONS(201), - [aux_sym__text_token1] = ACTIONS(204), - [sym__verbatim_begin] = ACTIONS(207), + [aux_sym__text] = STATE(144), + [aux_sym__inline_repeat1] = STATE(97), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_] = ACTIONS(49), + [anon_sym__] = ACTIONS(52), + [anon_sym_LBRACE_STAR] = ACTIONS(55), + [anon_sym_STAR] = ACTIONS(58), + [anon_sym_BSLASH] = ACTIONS(61), + [sym_quotation_marks] = ACTIONS(52), + [sym_ellipsis] = ACTIONS(52), + [sym_em_dash] = ACTIONS(52), + [sym_en_dash] = ACTIONS(64), + [sym_backslash_escape] = ACTIONS(64), + [anon_sym_LT] = ACTIONS(67), + [anon_sym_LBRACE_EQ] = ACTIONS(70), + [anon_sym_EQ_RBRACE] = ACTIONS(79), + [anon_sym_LBRACE_PLUS] = ACTIONS(73), + [anon_sym_LBRACE_DASH] = ACTIONS(76), + [sym_symbol] = ACTIONS(52), + [anon_sym_LBRACE_CARET] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_LBRACE_TILDE] = ACTIONS(84), + [anon_sym_TILDE] = ACTIONS(84), + [anon_sym_LBRACK_CARET] = ACTIONS(87), + [anon_sym_BANG_LBRACK] = ACTIONS(92), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACE2] = ACTIONS(64), + [anon_sym_DOLLAR] = ACTIONS(98), + [anon_sym_TODO] = ACTIONS(101), + [anon_sym_WIP] = ACTIONS(101), + [anon_sym_NOTE] = ACTIONS(104), + [anon_sym_INFO] = ACTIONS(104), + [anon_sym_XXX] = ACTIONS(104), + [sym_fixme] = ACTIONS(52), + [anon_sym_PIPE] = ACTIONS(52), + [sym__whitespace1] = ACTIONS(107), + [sym__newline] = ACTIONS(110), + [aux_sym__text_token1] = ACTIONS(113), + [sym__verbatim_begin] = ACTIONS(116), }, - [64] = { - [sym__inline] = STATE(712), - [sym__element] = STATE(85), + [37] = { + [sym__inline] = STATE(822), + [sym__element] = STATE(107), + [sym_emphasis] = STATE(187), + [sym_emphasis_begin] = STATE(893), + [sym_strong] = STATE(187), + [sym_strong_begin] = STATE(119), + [sym__hard_line_break] = STATE(187), + [sym_hard_line_break] = STATE(187), + [sym__smart_punctuation] = STATE(187), + [sym_autolink] = STATE(187), + [sym_highlighted] = STATE(187), + [sym_insert] = STATE(187), + [sym_delete] = STATE(187), + [sym_superscript] = STATE(187), + [sym_subscript] = STATE(187), + [sym_footnote_reference] = STATE(187), + [sym__image] = STATE(187), + [sym_full_reference_image] = STATE(187), + [sym_collapsed_reference_image] = STATE(187), + [sym_inline_image] = STATE(187), + [sym__image_description] = STATE(616), + [sym__link] = STATE(187), + [sym_full_reference_link] = STATE(187), + [sym_collapsed_reference_link] = STATE(187), + [sym_inline_link] = STATE(187), + [sym_link_text] = STATE(634), + [sym__comment_with_spaces] = STATE(187), + [sym_span] = STATE(187), + [sym_raw_inline] = STATE(187), + [sym_math] = STATE(187), + [sym_verbatim] = STATE(187), + [sym__todo_highlights] = STATE(187), + [sym_todo] = STATE(187), + [sym_note] = STATE(187), + [sym__symbol_fallback] = STATE(187), + [aux_sym__text] = STATE(131), + [aux_sym__inline_repeat1] = STATE(107), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_] = ACTIONS(265), + [anon_sym__] = ACTIONS(268), + [anon_sym_LBRACE_STAR] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(274), + [anon_sym_BSLASH] = ACTIONS(277), + [sym_quotation_marks] = ACTIONS(268), + [sym_ellipsis] = ACTIONS(268), + [sym_em_dash] = ACTIONS(268), + [sym_en_dash] = ACTIONS(280), + [sym_backslash_escape] = ACTIONS(280), + [anon_sym_LT] = ACTIONS(283), + [anon_sym_LBRACE_EQ] = ACTIONS(286), + [anon_sym_LBRACE_PLUS] = ACTIONS(289), + [anon_sym_LBRACE_DASH] = ACTIONS(292), + [anon_sym_DASH_RBRACE] = ACTIONS(79), + [sym_symbol] = ACTIONS(268), + [anon_sym_LBRACE_CARET] = ACTIONS(295), + [anon_sym_CARET] = ACTIONS(295), + [anon_sym_LBRACE_TILDE] = ACTIONS(298), + [anon_sym_TILDE] = ACTIONS(298), + [anon_sym_LBRACK_CARET] = ACTIONS(301), + [anon_sym_BANG_LBRACK] = ACTIONS(304), + [anon_sym_LBRACK] = ACTIONS(307), + [anon_sym_LBRACE2] = ACTIONS(280), + [anon_sym_DOLLAR] = ACTIONS(310), + [anon_sym_TODO] = ACTIONS(313), + [anon_sym_WIP] = ACTIONS(313), + [anon_sym_NOTE] = ACTIONS(316), + [anon_sym_INFO] = ACTIONS(316), + [anon_sym_XXX] = ACTIONS(316), + [sym_fixme] = ACTIONS(268), + [anon_sym_PIPE] = ACTIONS(268), + [sym__whitespace1] = ACTIONS(319), + [sym__newline] = ACTIONS(322), + [aux_sym__text_token1] = ACTIONS(325), + [sym__verbatim_begin] = ACTIONS(328), + }, + [38] = { + [sym__inline] = STATE(659), + [sym__element] = STATE(113), [sym_emphasis] = STATE(175), - [sym_emphasis_begin] = STATE(94), + [sym_emphasis_begin] = STATE(897), [sym_strong] = STATE(175), - [sym_strong_begin] = STATE(95), + [sym_strong_begin] = STATE(108), [sym__hard_line_break] = STATE(175), [sym_hard_line_break] = STATE(175), [sym__smart_punctuation] = STATE(175), @@ -12902,12 +10549,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_full_reference_image] = STATE(175), [sym_collapsed_reference_image] = STATE(175), [sym_inline_image] = STATE(175), - [sym__image_description] = STATE(652), + [sym__image_description] = STATE(626), [sym__link] = STATE(175), [sym_full_reference_link] = STATE(175), [sym_collapsed_reference_link] = STATE(175), [sym_inline_link] = STATE(175), - [sym_link_text] = STATE(649), + [sym_link_text] = STATE(624), [sym__comment_with_spaces] = STATE(175), [sym_span] = STATE(175), [sym_raw_inline] = STATE(175), @@ -12917,1546 +10564,813 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(175), [sym_note] = STATE(175), [sym__symbol_fallback] = STATE(175), - [aux_sym__text] = STATE(156), - [aux_sym__inline_repeat1] = STATE(85), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(417), - [anon_sym__] = ACTIONS(420), - [anon_sym_LBRACE_STAR] = ACTIONS(423), - [anon_sym_STAR] = ACTIONS(426), - [anon_sym_BSLASH] = ACTIONS(429), - [sym_quotation_marks] = ACTIONS(432), - [sym_ellipsis] = ACTIONS(432), - [sym_em_dash] = ACTIONS(432), - [sym_en_dash] = ACTIONS(435), - [sym_backslash_escape] = ACTIONS(435), - [anon_sym_LT] = ACTIONS(438), - [anon_sym_LBRACE_EQ] = ACTIONS(441), - [anon_sym_LBRACE_PLUS] = ACTIONS(444), - [anon_sym_PLUS_RBRACE] = ACTIONS(93), - [anon_sym_LBRACE_DASH] = ACTIONS(447), - [sym_symbol] = ACTIONS(432), - [anon_sym_LBRACE_CARET] = ACTIONS(450), - [anon_sym_CARET] = ACTIONS(450), - [anon_sym_LBRACE_TILDE] = ACTIONS(453), - [anon_sym_TILDE] = ACTIONS(453), - [anon_sym_LBRACK_CARET] = ACTIONS(456), - [anon_sym_BANG_LBRACK] = ACTIONS(459), - [anon_sym_LBRACK] = ACTIONS(462), - [anon_sym_LBRACE2] = ACTIONS(435), - [anon_sym_DOLLAR] = ACTIONS(465), - [anon_sym_TODO] = ACTIONS(468), - [anon_sym_WIP] = ACTIONS(468), - [anon_sym_NOTE] = ACTIONS(471), - [anon_sym_INFO] = ACTIONS(471), - [anon_sym_XXX] = ACTIONS(471), - [sym_fixme] = ACTIONS(432), - [anon_sym_PIPE] = ACTIONS(432), - [sym__whitespace1] = ACTIONS(474), - [sym__newline] = ACTIONS(477), - [aux_sym__text_token1] = ACTIONS(480), - [sym__verbatim_begin] = ACTIONS(483), - }, - [65] = { - [sym__inline] = STATE(784), - [sym__element] = STATE(116), - [sym_emphasis] = STATE(183), - [sym_emphasis_begin] = STATE(91), - [sym_strong] = STATE(183), - [sym_strong_begin] = STATE(92), - [sym__hard_line_break] = STATE(183), - [sym_hard_line_break] = STATE(183), - [sym__smart_punctuation] = STATE(183), - [sym_autolink] = STATE(183), - [sym_highlighted] = STATE(183), - [sym_insert] = STATE(183), - [sym_delete] = STATE(183), - [sym_superscript] = STATE(183), - [sym_subscript] = STATE(183), - [sym_footnote_reference] = STATE(183), - [sym__image] = STATE(183), - [sym_full_reference_image] = STATE(183), - [sym_collapsed_reference_image] = STATE(183), - [sym_inline_image] = STATE(183), - [sym__image_description] = STATE(645), - [sym__link] = STATE(183), - [sym_full_reference_link] = STATE(183), - [sym_collapsed_reference_link] = STATE(183), - [sym_inline_link] = STATE(183), - [sym_link_text] = STATE(646), - [sym__comment_with_spaces] = STATE(183), - [sym_span] = STATE(183), - [sym_raw_inline] = STATE(183), - [sym_math] = STATE(183), - [sym_verbatim] = STATE(183), - [sym__todo_highlights] = STATE(183), - [sym_todo] = STATE(183), - [sym_note] = STATE(183), - [sym__symbol_fallback] = STATE(183), - [aux_sym__text] = STATE(149), - [aux_sym__inline_repeat1] = STATE(116), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(210), - [anon_sym__] = ACTIONS(213), - [anon_sym_LBRACE_STAR] = ACTIONS(216), - [anon_sym_STAR] = ACTIONS(219), - [anon_sym_BSLASH] = ACTIONS(222), - [sym_quotation_marks] = ACTIONS(225), - [sym_ellipsis] = ACTIONS(225), - [sym_em_dash] = ACTIONS(225), - [sym_en_dash] = ACTIONS(228), - [sym_backslash_escape] = ACTIONS(228), - [anon_sym_LT] = ACTIONS(231), - [anon_sym_LBRACE_EQ] = ACTIONS(234), - [anon_sym_LBRACE_PLUS] = ACTIONS(237), - [anon_sym_PLUS_RBRACE] = ACTIONS(93), - [anon_sym_LBRACE_DASH] = ACTIONS(240), - [sym_symbol] = ACTIONS(225), - [anon_sym_LBRACE_CARET] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(243), - [anon_sym_LBRACE_TILDE] = ACTIONS(246), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_LBRACK_CARET] = ACTIONS(249), - [anon_sym_BANG_LBRACK] = ACTIONS(252), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_LBRACE2] = ACTIONS(228), - [anon_sym_DOLLAR] = ACTIONS(258), - [anon_sym_TODO] = ACTIONS(261), - [anon_sym_WIP] = ACTIONS(261), - [anon_sym_NOTE] = ACTIONS(264), - [anon_sym_INFO] = ACTIONS(264), - [anon_sym_XXX] = ACTIONS(264), - [sym_fixme] = ACTIONS(225), - [anon_sym_PIPE] = ACTIONS(225), - [sym__whitespace1] = ACTIONS(267), - [sym__newline] = ACTIONS(270), - [aux_sym__text_token1] = ACTIONS(273), - [sym__verbatim_begin] = ACTIONS(276), - }, - [66] = { - [sym__inline] = STATE(785), - [sym__element] = STATE(77), - [sym_emphasis] = STATE(174), - [sym_emphasis_begin] = STATE(86), - [sym_strong] = STATE(174), - [sym_strong_begin] = STATE(89), - [sym__hard_line_break] = STATE(174), - [sym_hard_line_break] = STATE(174), - [sym__smart_punctuation] = STATE(174), - [sym_autolink] = STATE(174), - [sym_highlighted] = STATE(174), - [sym_insert] = STATE(174), - [sym_delete] = STATE(174), - [sym_superscript] = STATE(174), - [sym_subscript] = STATE(174), - [sym_footnote_reference] = STATE(174), - [sym__image] = STATE(174), - [sym_full_reference_image] = STATE(174), - [sym_collapsed_reference_image] = STATE(174), - [sym_inline_image] = STATE(174), - [sym__image_description] = STATE(630), - [sym__link] = STATE(174), - [sym_full_reference_link] = STATE(174), - [sym_collapsed_reference_link] = STATE(174), - [sym_inline_link] = STATE(174), - [sym_link_text] = STATE(631), - [sym__comment_with_spaces] = STATE(174), - [sym_span] = STATE(174), - [sym_raw_inline] = STATE(174), - [sym_math] = STATE(174), - [sym_verbatim] = STATE(174), - [sym__todo_highlights] = STATE(174), - [sym_todo] = STATE(174), - [sym_note] = STATE(174), - [sym__symbol_fallback] = STATE(174), - [aux_sym__text] = STATE(148), - [aux_sym__inline_repeat1] = STATE(77), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(348), - [anon_sym__] = ACTIONS(351), - [anon_sym_LBRACE_STAR] = ACTIONS(354), - [anon_sym_STAR] = ACTIONS(357), - [anon_sym_BSLASH] = ACTIONS(360), - [sym_quotation_marks] = ACTIONS(363), - [sym_ellipsis] = ACTIONS(363), - [sym_em_dash] = ACTIONS(363), - [sym_en_dash] = ACTIONS(366), - [sym_backslash_escape] = ACTIONS(366), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_LBRACE_EQ] = ACTIONS(372), - [anon_sym_LBRACE_PLUS] = ACTIONS(375), - [anon_sym_PLUS_RBRACE] = ACTIONS(93), - [anon_sym_LBRACE_DASH] = ACTIONS(378), - [sym_symbol] = ACTIONS(363), - [anon_sym_LBRACE_CARET] = ACTIONS(381), - [anon_sym_CARET] = ACTIONS(381), - [anon_sym_LBRACE_TILDE] = ACTIONS(384), - [anon_sym_TILDE] = ACTIONS(384), - [anon_sym_LBRACK_CARET] = ACTIONS(387), - [anon_sym_BANG_LBRACK] = ACTIONS(390), - [anon_sym_LBRACK] = ACTIONS(393), - [anon_sym_LBRACE2] = ACTIONS(366), - [anon_sym_DOLLAR] = ACTIONS(396), - [anon_sym_TODO] = ACTIONS(399), - [anon_sym_WIP] = ACTIONS(399), - [anon_sym_NOTE] = ACTIONS(402), - [anon_sym_INFO] = ACTIONS(402), - [anon_sym_XXX] = ACTIONS(402), - [sym_fixme] = ACTIONS(363), - [anon_sym_PIPE] = ACTIONS(363), - [sym__whitespace1] = ACTIONS(405), - [sym__newline] = ACTIONS(408), - [aux_sym__text_token1] = ACTIONS(411), - [sym__verbatim_begin] = ACTIONS(414), + [aux_sym__text] = STATE(125), + [aux_sym__inline_repeat1] = STATE(113), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_] = ACTIONS(397), + [anon_sym__] = ACTIONS(400), + [anon_sym_LBRACE_STAR] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(406), + [anon_sym_BSLASH] = ACTIONS(409), + [sym_quotation_marks] = ACTIONS(400), + [sym_ellipsis] = ACTIONS(400), + [sym_em_dash] = ACTIONS(400), + [sym_en_dash] = ACTIONS(412), + [sym_backslash_escape] = ACTIONS(412), + [anon_sym_LT] = ACTIONS(415), + [anon_sym_LBRACE_EQ] = ACTIONS(418), + [anon_sym_EQ_RBRACE] = ACTIONS(79), + [anon_sym_LBRACE_PLUS] = ACTIONS(421), + [anon_sym_LBRACE_DASH] = ACTIONS(424), + [sym_symbol] = ACTIONS(400), + [anon_sym_LBRACE_CARET] = ACTIONS(427), + [anon_sym_CARET] = ACTIONS(427), + [anon_sym_LBRACE_TILDE] = ACTIONS(430), + [anon_sym_TILDE] = ACTIONS(430), + [anon_sym_LBRACK_CARET] = ACTIONS(433), + [anon_sym_BANG_LBRACK] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(439), + [anon_sym_LBRACE2] = ACTIONS(412), + [anon_sym_DOLLAR] = ACTIONS(442), + [anon_sym_TODO] = ACTIONS(445), + [anon_sym_WIP] = ACTIONS(445), + [anon_sym_NOTE] = ACTIONS(448), + [anon_sym_INFO] = ACTIONS(448), + [anon_sym_XXX] = ACTIONS(448), + [sym_fixme] = ACTIONS(400), + [anon_sym_PIPE] = ACTIONS(400), + [sym__whitespace1] = ACTIONS(451), + [sym__newline] = ACTIONS(454), + [aux_sym__text_token1] = ACTIONS(457), + [sym__verbatim_begin] = ACTIONS(460), }, - [67] = { - [sym__inline] = STATE(791), - [sym__element] = STATE(119), - [sym_emphasis] = STATE(197), - [sym_emphasis_begin] = STATE(81), - [sym_strong] = STATE(197), - [sym_strong_begin] = STATE(82), - [sym__hard_line_break] = STATE(197), - [sym_hard_line_break] = STATE(197), - [sym__smart_punctuation] = STATE(197), - [sym_autolink] = STATE(197), - [sym_highlighted] = STATE(197), - [sym_insert] = STATE(197), - [sym_delete] = STATE(197), - [sym_superscript] = STATE(197), - [sym_subscript] = STATE(197), - [sym_footnote_reference] = STATE(197), - [sym__image] = STATE(197), - [sym_full_reference_image] = STATE(197), - [sym_collapsed_reference_image] = STATE(197), - [sym_inline_image] = STATE(197), - [sym__image_description] = STATE(654), - [sym__link] = STATE(197), - [sym_full_reference_link] = STATE(197), - [sym_collapsed_reference_link] = STATE(197), - [sym_inline_link] = STATE(197), - [sym_link_text] = STATE(651), - [sym__comment_with_spaces] = STATE(197), - [sym_span] = STATE(197), - [sym_raw_inline] = STATE(197), - [sym_math] = STATE(197), - [sym_verbatim] = STATE(197), - [sym__todo_highlights] = STATE(197), - [sym_todo] = STATE(197), - [sym_note] = STATE(197), - [sym__symbol_fallback] = STATE(197), - [aux_sym__text] = STATE(132), - [aux_sym__inline_repeat1] = STATE(119), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(279), - [anon_sym__] = ACTIONS(282), - [anon_sym_LBRACE_STAR] = ACTIONS(285), - [anon_sym_STAR] = ACTIONS(288), - [anon_sym_BSLASH] = ACTIONS(291), - [sym_quotation_marks] = ACTIONS(294), - [sym_ellipsis] = ACTIONS(294), - [sym_em_dash] = ACTIONS(294), - [sym_en_dash] = ACTIONS(297), - [sym_backslash_escape] = ACTIONS(297), - [anon_sym_LT] = ACTIONS(300), - [anon_sym_LBRACE_EQ] = ACTIONS(303), - [anon_sym_LBRACE_PLUS] = ACTIONS(306), - [anon_sym_PLUS_RBRACE] = ACTIONS(93), - [anon_sym_LBRACE_DASH] = ACTIONS(309), - [sym_symbol] = ACTIONS(294), - [anon_sym_LBRACE_CARET] = ACTIONS(312), - [anon_sym_CARET] = ACTIONS(312), - [anon_sym_LBRACE_TILDE] = ACTIONS(315), - [anon_sym_TILDE] = ACTIONS(315), - [anon_sym_LBRACK_CARET] = ACTIONS(318), - [anon_sym_BANG_LBRACK] = ACTIONS(321), - [anon_sym_LBRACK] = ACTIONS(324), - [anon_sym_LBRACE2] = ACTIONS(297), - [anon_sym_DOLLAR] = ACTIONS(327), - [anon_sym_TODO] = ACTIONS(330), - [anon_sym_WIP] = ACTIONS(330), - [anon_sym_NOTE] = ACTIONS(333), - [anon_sym_INFO] = ACTIONS(333), - [anon_sym_XXX] = ACTIONS(333), - [sym_fixme] = ACTIONS(294), - [anon_sym_PIPE] = ACTIONS(294), - [sym__whitespace1] = ACTIONS(336), - [sym__newline] = ACTIONS(339), - [aux_sym__text_token1] = ACTIONS(342), - [sym__verbatim_begin] = ACTIONS(345), + [39] = { + [sym__inline] = STATE(661), + [sym__element] = STATE(72), + [sym_emphasis] = STATE(163), + [sym_emphasis_begin] = STATE(896), + [sym_strong] = STATE(163), + [sym_strong_begin] = STATE(110), + [sym__hard_line_break] = STATE(163), + [sym_hard_line_break] = STATE(163), + [sym__smart_punctuation] = STATE(163), + [sym_autolink] = STATE(163), + [sym_highlighted] = STATE(163), + [sym_insert] = STATE(163), + [sym_delete] = STATE(163), + [sym_superscript] = STATE(163), + [sym_subscript] = STATE(163), + [sym_footnote_reference] = STATE(163), + [sym__image] = STATE(163), + [sym_full_reference_image] = STATE(163), + [sym_collapsed_reference_image] = STATE(163), + [sym_inline_image] = STATE(163), + [sym__image_description] = STATE(622), + [sym__link] = STATE(163), + [sym_full_reference_link] = STATE(163), + [sym_collapsed_reference_link] = STATE(163), + [sym_inline_link] = STATE(163), + [sym_link_text] = STATE(605), + [sym__comment_with_spaces] = STATE(163), + [sym_span] = STATE(163), + [sym_raw_inline] = STATE(163), + [sym_math] = STATE(163), + [sym_verbatim] = STATE(163), + [sym__todo_highlights] = STATE(163), + [sym_todo] = STATE(163), + [sym_note] = STATE(163), + [sym__symbol_fallback] = STATE(163), + [aux_sym__text] = STATE(146), + [aux_sym__inline_repeat1] = STATE(72), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_] = ACTIONS(331), + [anon_sym__] = ACTIONS(334), + [anon_sym_LBRACE_STAR] = ACTIONS(337), + [anon_sym_STAR] = ACTIONS(340), + [anon_sym_BSLASH] = ACTIONS(343), + [sym_quotation_marks] = ACTIONS(334), + [sym_ellipsis] = ACTIONS(334), + [sym_em_dash] = ACTIONS(334), + [sym_en_dash] = ACTIONS(346), + [sym_backslash_escape] = ACTIONS(346), + [anon_sym_LT] = ACTIONS(349), + [anon_sym_LBRACE_EQ] = ACTIONS(352), + [anon_sym_EQ_RBRACE] = ACTIONS(79), + [anon_sym_LBRACE_PLUS] = ACTIONS(355), + [anon_sym_LBRACE_DASH] = ACTIONS(358), + [sym_symbol] = ACTIONS(334), + [anon_sym_LBRACE_CARET] = ACTIONS(361), + [anon_sym_CARET] = ACTIONS(361), + [anon_sym_LBRACE_TILDE] = ACTIONS(364), + [anon_sym_TILDE] = ACTIONS(364), + [anon_sym_LBRACK_CARET] = ACTIONS(367), + [anon_sym_BANG_LBRACK] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(373), + [anon_sym_LBRACE2] = ACTIONS(346), + [anon_sym_DOLLAR] = ACTIONS(376), + [anon_sym_TODO] = ACTIONS(379), + [anon_sym_WIP] = ACTIONS(379), + [anon_sym_NOTE] = ACTIONS(382), + [anon_sym_INFO] = ACTIONS(382), + [anon_sym_XXX] = ACTIONS(382), + [sym_fixme] = ACTIONS(334), + [anon_sym_PIPE] = ACTIONS(334), + [sym__whitespace1] = ACTIONS(385), + [sym__newline] = ACTIONS(388), + [aux_sym__text_token1] = ACTIONS(391), + [sym__verbatim_begin] = ACTIONS(394), }, - [68] = { - [sym__inline] = STATE(720), - [sym__element] = STATE(119), - [sym_emphasis] = STATE(197), - [sym_emphasis_begin] = STATE(81), - [sym_strong] = STATE(197), - [sym_strong_begin] = STATE(82), - [sym__hard_line_break] = STATE(197), - [sym_hard_line_break] = STATE(197), - [sym__smart_punctuation] = STATE(197), - [sym_autolink] = STATE(197), - [sym_highlighted] = STATE(197), - [sym_insert] = STATE(197), - [sym_delete] = STATE(197), - [sym_superscript] = STATE(197), - [sym_subscript] = STATE(197), - [sym_footnote_reference] = STATE(197), - [sym__image] = STATE(197), - [sym_full_reference_image] = STATE(197), - [sym_collapsed_reference_image] = STATE(197), - [sym_inline_image] = STATE(197), - [sym__image_description] = STATE(654), - [sym__link] = STATE(197), - [sym_full_reference_link] = STATE(197), - [sym_collapsed_reference_link] = STATE(197), - [sym_inline_link] = STATE(197), - [sym_link_text] = STATE(651), - [sym__comment_with_spaces] = STATE(197), - [sym_span] = STATE(197), - [sym_raw_inline] = STATE(197), - [sym_math] = STATE(197), - [sym_verbatim] = STATE(197), - [sym__todo_highlights] = STATE(197), - [sym_todo] = STATE(197), - [sym_note] = STATE(197), - [sym__symbol_fallback] = STATE(197), + [40] = { + [sym__inline] = STATE(892), + [sym__element] = STATE(73), + [sym_emphasis] = STATE(180), + [sym_emphasis_begin] = STATE(895), + [sym_strong] = STATE(180), + [sym_strong_begin] = STATE(114), + [sym__hard_line_break] = STATE(180), + [sym_hard_line_break] = STATE(180), + [sym__smart_punctuation] = STATE(180), + [sym_autolink] = STATE(180), + [sym_highlighted] = STATE(180), + [sym_insert] = STATE(180), + [sym_delete] = STATE(180), + [sym_superscript] = STATE(180), + [sym_subscript] = STATE(180), + [sym_footnote_reference] = STATE(180), + [sym__image] = STATE(180), + [sym_full_reference_image] = STATE(180), + [sym_collapsed_reference_image] = STATE(180), + [sym_inline_image] = STATE(180), + [sym__image_description] = STATE(632), + [sym__link] = STATE(180), + [sym_full_reference_link] = STATE(180), + [sym_collapsed_reference_link] = STATE(180), + [sym_inline_link] = STATE(180), + [sym_link_text] = STATE(633), + [sym__comment_with_spaces] = STATE(180), + [sym_span] = STATE(180), + [sym_raw_inline] = STATE(180), + [sym_math] = STATE(180), + [sym_verbatim] = STATE(180), + [sym__todo_highlights] = STATE(180), + [sym_todo] = STATE(180), + [sym_note] = STATE(180), + [sym__symbol_fallback] = STATE(180), [aux_sym__text] = STATE(132), - [aux_sym__inline_repeat1] = STATE(119), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(279), - [anon_sym__] = ACTIONS(282), - [anon_sym_LBRACE_STAR] = ACTIONS(285), - [anon_sym_STAR] = ACTIONS(288), - [anon_sym_BSLASH] = ACTIONS(291), - [sym_quotation_marks] = ACTIONS(294), - [sym_ellipsis] = ACTIONS(294), - [sym_em_dash] = ACTIONS(294), - [sym_en_dash] = ACTIONS(297), - [sym_backslash_escape] = ACTIONS(297), - [anon_sym_LT] = ACTIONS(300), - [anon_sym_LBRACE_EQ] = ACTIONS(303), - [anon_sym_LBRACE_PLUS] = ACTIONS(306), - [anon_sym_LBRACE_DASH] = ACTIONS(309), - [sym_symbol] = ACTIONS(294), - [anon_sym_LBRACE_CARET] = ACTIONS(312), - [anon_sym_CARET] = ACTIONS(558), - [anon_sym_CARET_RBRACE] = ACTIONS(93), - [anon_sym_LBRACE_TILDE] = ACTIONS(315), - [anon_sym_TILDE] = ACTIONS(315), - [anon_sym_LBRACK_CARET] = ACTIONS(318), - [anon_sym_BANG_LBRACK] = ACTIONS(321), - [anon_sym_LBRACK] = ACTIONS(324), - [anon_sym_LBRACE2] = ACTIONS(297), - [anon_sym_DOLLAR] = ACTIONS(327), - [anon_sym_TODO] = ACTIONS(330), - [anon_sym_WIP] = ACTIONS(330), - [anon_sym_NOTE] = ACTIONS(333), - [anon_sym_INFO] = ACTIONS(333), - [anon_sym_XXX] = ACTIONS(333), - [sym_fixme] = ACTIONS(294), - [anon_sym_PIPE] = ACTIONS(294), - [sym__whitespace1] = ACTIONS(336), - [sym__newline] = ACTIONS(339), - [aux_sym__text_token1] = ACTIONS(342), - [sym__verbatim_begin] = ACTIONS(345), - }, - [69] = { - [sym__inline] = STATE(877), - [sym__element] = STATE(103), - [sym_emphasis] = STATE(200), - [sym_emphasis_begin] = STATE(101), - [sym_strong] = STATE(200), - [sym_strong_begin] = STATE(104), - [sym__hard_line_break] = STATE(200), - [sym_hard_line_break] = STATE(200), - [sym__smart_punctuation] = STATE(200), - [sym_autolink] = STATE(200), - [sym_highlighted] = STATE(200), - [sym_insert] = STATE(200), - [sym_delete] = STATE(200), - [sym_superscript] = STATE(200), - [sym_subscript] = STATE(200), - [sym_footnote_reference] = STATE(200), - [sym__image] = STATE(200), - [sym_full_reference_image] = STATE(200), - [sym_collapsed_reference_image] = STATE(200), - [sym_inline_image] = STATE(200), - [sym__image_description] = STATE(642), - [sym__link] = STATE(200), - [sym_full_reference_link] = STATE(200), - [sym_collapsed_reference_link] = STATE(200), - [sym_inline_link] = STATE(200), - [sym_link_text] = STATE(643), - [sym__comment_with_spaces] = STATE(200), - [sym_span] = STATE(200), - [sym_raw_inline] = STATE(200), - [sym_math] = STATE(200), - [sym_verbatim] = STATE(200), - [sym__todo_highlights] = STATE(200), - [sym_todo] = STATE(200), - [sym_note] = STATE(200), - [sym__symbol_fallback] = STATE(200), - [aux_sym__text] = STATE(138), - [aux_sym__inline_repeat1] = STATE(103), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(51), - [anon_sym__] = ACTIONS(54), - [anon_sym_LBRACE_STAR] = ACTIONS(57), - [anon_sym_STAR] = ACTIONS(127), - [aux_sym_strong_end_token1] = ACTIONS(93), - [anon_sym_BSLASH] = ACTIONS(63), - [sym_quotation_marks] = ACTIONS(66), - [sym_ellipsis] = ACTIONS(66), - [sym_em_dash] = ACTIONS(66), - [sym_en_dash] = ACTIONS(69), - [sym_backslash_escape] = ACTIONS(69), - [anon_sym_LT] = ACTIONS(72), - [anon_sym_LBRACE_EQ] = ACTIONS(75), - [anon_sym_LBRACE_PLUS] = ACTIONS(78), - [anon_sym_LBRACE_DASH] = ACTIONS(81), - [sym_symbol] = ACTIONS(66), - [anon_sym_LBRACE_CARET] = ACTIONS(84), - [anon_sym_CARET] = ACTIONS(84), - [anon_sym_LBRACE_TILDE] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(87), - [anon_sym_LBRACK_CARET] = ACTIONS(95), - [anon_sym_BANG_LBRACK] = ACTIONS(100), - [anon_sym_LBRACK] = ACTIONS(103), - [anon_sym_LBRACE2] = ACTIONS(69), - [anon_sym_DOLLAR] = ACTIONS(106), - [anon_sym_TODO] = ACTIONS(109), - [anon_sym_WIP] = ACTIONS(109), - [anon_sym_NOTE] = ACTIONS(112), - [anon_sym_INFO] = ACTIONS(112), - [anon_sym_XXX] = ACTIONS(112), - [sym_fixme] = ACTIONS(66), - [anon_sym_PIPE] = ACTIONS(66), - [sym__whitespace1] = ACTIONS(130), - [sym__newline] = ACTIONS(118), - [aux_sym__text_token1] = ACTIONS(121), - [sym__verbatim_begin] = ACTIONS(124), + [aux_sym__inline_repeat1] = STATE(73), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_] = ACTIONS(133), + [anon_sym__] = ACTIONS(136), + [anon_sym_LBRACE_STAR] = ACTIONS(139), + [anon_sym_STAR] = ACTIONS(142), + [anon_sym_BSLASH] = ACTIONS(145), + [sym_quotation_marks] = ACTIONS(136), + [sym_ellipsis] = ACTIONS(136), + [sym_em_dash] = ACTIONS(136), + [sym_en_dash] = ACTIONS(148), + [sym_backslash_escape] = ACTIONS(148), + [anon_sym_LT] = ACTIONS(151), + [anon_sym_LBRACE_EQ] = ACTIONS(154), + [anon_sym_EQ_RBRACE] = ACTIONS(79), + [anon_sym_LBRACE_PLUS] = ACTIONS(157), + [anon_sym_LBRACE_DASH] = ACTIONS(160), + [sym_symbol] = ACTIONS(136), + [anon_sym_LBRACE_CARET] = ACTIONS(163), + [anon_sym_CARET] = ACTIONS(163), + [anon_sym_LBRACE_TILDE] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(166), + [anon_sym_LBRACK_CARET] = ACTIONS(169), + [anon_sym_BANG_LBRACK] = ACTIONS(172), + [anon_sym_LBRACK] = ACTIONS(175), + [anon_sym_LBRACE2] = ACTIONS(148), + [anon_sym_DOLLAR] = ACTIONS(178), + [anon_sym_TODO] = ACTIONS(181), + [anon_sym_WIP] = ACTIONS(181), + [anon_sym_NOTE] = ACTIONS(184), + [anon_sym_INFO] = ACTIONS(184), + [anon_sym_XXX] = ACTIONS(184), + [sym_fixme] = ACTIONS(136), + [anon_sym_PIPE] = ACTIONS(136), + [sym__whitespace1] = ACTIONS(187), + [sym__newline] = ACTIONS(190), + [aux_sym__text_token1] = ACTIONS(193), + [sym__verbatim_begin] = ACTIONS(196), }, - [70] = { + [41] = { [sym__inline] = STATE(814), - [sym__element] = STATE(103), - [sym_emphasis] = STATE(200), - [sym_emphasis_begin] = STATE(101), - [sym_strong] = STATE(200), + [sym__element] = STATE(97), + [sym_emphasis] = STATE(182), + [sym_emphasis_begin] = STATE(898), + [sym_strong] = STATE(182), [sym_strong_begin] = STATE(104), - [sym__hard_line_break] = STATE(200), - [sym_hard_line_break] = STATE(200), - [sym__smart_punctuation] = STATE(200), - [sym_autolink] = STATE(200), - [sym_highlighted] = STATE(200), - [sym_insert] = STATE(200), - [sym_delete] = STATE(200), - [sym_superscript] = STATE(200), - [sym_subscript] = STATE(200), - [sym_footnote_reference] = STATE(200), - [sym__image] = STATE(200), - [sym_full_reference_image] = STATE(200), - [sym_collapsed_reference_image] = STATE(200), - [sym_inline_image] = STATE(200), - [sym__image_description] = STATE(642), - [sym__link] = STATE(200), - [sym_full_reference_link] = STATE(200), - [sym_collapsed_reference_link] = STATE(200), - [sym_inline_link] = STATE(200), - [sym_link_text] = STATE(643), - [sym__comment_with_spaces] = STATE(200), - [sym_span] = STATE(200), - [sym_raw_inline] = STATE(200), - [sym_math] = STATE(200), - [sym_verbatim] = STATE(200), - [sym__todo_highlights] = STATE(200), - [sym_todo] = STATE(200), - [sym_note] = STATE(200), - [sym__symbol_fallback] = STATE(200), - [aux_sym__text] = STATE(138), - [aux_sym__inline_repeat1] = STATE(103), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(51), - [anon_sym__] = ACTIONS(54), - [anon_sym_LBRACE_STAR] = ACTIONS(57), - [anon_sym_STAR] = ACTIONS(60), - [anon_sym_BSLASH] = ACTIONS(63), - [sym_quotation_marks] = ACTIONS(66), - [sym_ellipsis] = ACTIONS(66), - [sym_em_dash] = ACTIONS(66), - [sym_en_dash] = ACTIONS(69), - [sym_backslash_escape] = ACTIONS(69), - [anon_sym_LT] = ACTIONS(72), - [anon_sym_LBRACE_EQ] = ACTIONS(75), - [anon_sym_EQ_RBRACE] = ACTIONS(93), - [anon_sym_LBRACE_PLUS] = ACTIONS(78), - [anon_sym_LBRACE_DASH] = ACTIONS(81), - [sym_symbol] = ACTIONS(66), - [anon_sym_LBRACE_CARET] = ACTIONS(84), - [anon_sym_CARET] = ACTIONS(84), - [anon_sym_LBRACE_TILDE] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(87), - [anon_sym_LBRACK_CARET] = ACTIONS(95), - [anon_sym_BANG_LBRACK] = ACTIONS(100), - [anon_sym_LBRACK] = ACTIONS(103), - [anon_sym_LBRACE2] = ACTIONS(69), - [anon_sym_DOLLAR] = ACTIONS(106), - [anon_sym_TODO] = ACTIONS(109), - [anon_sym_WIP] = ACTIONS(109), - [anon_sym_NOTE] = ACTIONS(112), - [anon_sym_INFO] = ACTIONS(112), - [anon_sym_XXX] = ACTIONS(112), - [sym_fixme] = ACTIONS(66), - [anon_sym_PIPE] = ACTIONS(66), - [sym__whitespace1] = ACTIONS(115), - [sym__newline] = ACTIONS(118), - [aux_sym__text_token1] = ACTIONS(121), - [sym__verbatim_begin] = ACTIONS(124), + [sym__hard_line_break] = STATE(182), + [sym_hard_line_break] = STATE(182), + [sym__smart_punctuation] = STATE(182), + [sym_autolink] = STATE(182), + [sym_highlighted] = STATE(182), + [sym_insert] = STATE(182), + [sym_delete] = STATE(182), + [sym_superscript] = STATE(182), + [sym_subscript] = STATE(182), + [sym_footnote_reference] = STATE(182), + [sym__image] = STATE(182), + [sym_full_reference_image] = STATE(182), + [sym_collapsed_reference_image] = STATE(182), + [sym_inline_image] = STATE(182), + [sym__image_description] = STATE(610), + [sym__link] = STATE(182), + [sym_full_reference_link] = STATE(182), + [sym_collapsed_reference_link] = STATE(182), + [sym_inline_link] = STATE(182), + [sym_link_text] = STATE(608), + [sym__comment_with_spaces] = STATE(182), + [sym_span] = STATE(182), + [sym_raw_inline] = STATE(182), + [sym_math] = STATE(182), + [sym_verbatim] = STATE(182), + [sym__todo_highlights] = STATE(182), + [sym_todo] = STATE(182), + [sym_note] = STATE(182), + [sym__symbol_fallback] = STATE(182), + [aux_sym__text] = STATE(144), + [aux_sym__inline_repeat1] = STATE(97), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_] = ACTIONS(49), + [anon_sym__] = ACTIONS(52), + [anon_sym_LBRACE_STAR] = ACTIONS(55), + [anon_sym_STAR] = ACTIONS(58), + [anon_sym_BSLASH] = ACTIONS(61), + [sym_quotation_marks] = ACTIONS(52), + [sym_ellipsis] = ACTIONS(52), + [sym_em_dash] = ACTIONS(52), + [sym_en_dash] = ACTIONS(64), + [sym_backslash_escape] = ACTIONS(64), + [anon_sym_LT] = ACTIONS(67), + [anon_sym_LBRACE_EQ] = ACTIONS(70), + [anon_sym_LBRACE_PLUS] = ACTIONS(73), + [anon_sym_PLUS_RBRACE] = ACTIONS(79), + [anon_sym_LBRACE_DASH] = ACTIONS(76), + [sym_symbol] = ACTIONS(52), + [anon_sym_LBRACE_CARET] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_LBRACE_TILDE] = ACTIONS(84), + [anon_sym_TILDE] = ACTIONS(84), + [anon_sym_LBRACK_CARET] = ACTIONS(87), + [anon_sym_BANG_LBRACK] = ACTIONS(92), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACE2] = ACTIONS(64), + [anon_sym_DOLLAR] = ACTIONS(98), + [anon_sym_TODO] = ACTIONS(101), + [anon_sym_WIP] = ACTIONS(101), + [anon_sym_NOTE] = ACTIONS(104), + [anon_sym_INFO] = ACTIONS(104), + [anon_sym_XXX] = ACTIONS(104), + [sym_fixme] = ACTIONS(52), + [anon_sym_PIPE] = ACTIONS(52), + [sym__whitespace1] = ACTIONS(107), + [sym__newline] = ACTIONS(110), + [aux_sym__text_token1] = ACTIONS(113), + [sym__verbatim_begin] = ACTIONS(116), }, - [71] = { - [sym__inline] = STATE(719), - [sym__element] = STATE(77), - [sym_emphasis] = STATE(174), - [sym_emphasis_begin] = STATE(86), - [sym_strong] = STATE(174), - [sym_strong_begin] = STATE(89), - [sym__hard_line_break] = STATE(174), - [sym_hard_line_break] = STATE(174), - [sym__smart_punctuation] = STATE(174), - [sym_autolink] = STATE(174), - [sym_highlighted] = STATE(174), - [sym_insert] = STATE(174), - [sym_delete] = STATE(174), - [sym_superscript] = STATE(174), - [sym_subscript] = STATE(174), - [sym_footnote_reference] = STATE(174), - [sym__image] = STATE(174), - [sym_full_reference_image] = STATE(174), - [sym_collapsed_reference_image] = STATE(174), - [sym_inline_image] = STATE(174), - [sym__image_description] = STATE(630), - [sym__link] = STATE(174), - [sym_full_reference_link] = STATE(174), - [sym_collapsed_reference_link] = STATE(174), - [sym_inline_link] = STATE(174), - [sym_link_text] = STATE(631), - [sym__comment_with_spaces] = STATE(174), - [sym_span] = STATE(174), - [sym_raw_inline] = STATE(174), - [sym_math] = STATE(174), - [sym_verbatim] = STATE(174), - [sym__todo_highlights] = STATE(174), - [sym_todo] = STATE(174), - [sym_note] = STATE(174), - [sym__symbol_fallback] = STATE(174), - [aux_sym__text] = STATE(148), - [aux_sym__inline_repeat1] = STATE(77), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(348), - [anon_sym__] = ACTIONS(351), - [anon_sym_LBRACE_STAR] = ACTIONS(354), - [anon_sym_STAR] = ACTIONS(357), - [anon_sym_BSLASH] = ACTIONS(360), - [sym_quotation_marks] = ACTIONS(363), - [sym_ellipsis] = ACTIONS(363), - [sym_em_dash] = ACTIONS(363), - [sym_en_dash] = ACTIONS(366), - [sym_backslash_escape] = ACTIONS(366), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_LBRACE_EQ] = ACTIONS(372), - [anon_sym_LBRACE_PLUS] = ACTIONS(375), - [anon_sym_LBRACE_DASH] = ACTIONS(378), - [sym_symbol] = ACTIONS(363), - [anon_sym_LBRACE_CARET] = ACTIONS(381), - [anon_sym_CARET] = ACTIONS(561), - [anon_sym_CARET_RBRACE] = ACTIONS(93), - [anon_sym_LBRACE_TILDE] = ACTIONS(384), - [anon_sym_TILDE] = ACTIONS(384), - [anon_sym_LBRACK_CARET] = ACTIONS(387), - [anon_sym_BANG_LBRACK] = ACTIONS(390), - [anon_sym_LBRACK] = ACTIONS(393), - [anon_sym_LBRACE2] = ACTIONS(366), - [anon_sym_DOLLAR] = ACTIONS(396), - [anon_sym_TODO] = ACTIONS(399), - [anon_sym_WIP] = ACTIONS(399), - [anon_sym_NOTE] = ACTIONS(402), - [anon_sym_INFO] = ACTIONS(402), - [anon_sym_XXX] = ACTIONS(402), - [sym_fixme] = ACTIONS(363), - [anon_sym_PIPE] = ACTIONS(363), - [sym__whitespace1] = ACTIONS(405), - [sym__newline] = ACTIONS(408), - [aux_sym__text_token1] = ACTIONS(411), - [sym__verbatim_begin] = ACTIONS(414), - }, - [72] = { - [sym__inline] = STATE(715), - [sym__element] = STATE(79), - [sym_emphasis] = STATE(178), - [sym_emphasis_begin] = STATE(115), - [sym_strong] = STATE(178), - [sym_strong_begin] = STATE(117), - [sym__hard_line_break] = STATE(178), - [sym_hard_line_break] = STATE(178), - [sym__smart_punctuation] = STATE(178), - [sym_autolink] = STATE(178), - [sym_highlighted] = STATE(178), - [sym_insert] = STATE(178), - [sym_delete] = STATE(178), - [sym_superscript] = STATE(178), - [sym_subscript] = STATE(178), - [sym_footnote_reference] = STATE(178), - [sym__image] = STATE(178), - [sym_full_reference_image] = STATE(178), - [sym_collapsed_reference_image] = STATE(178), - [sym_inline_image] = STATE(178), - [sym__image_description] = STATE(640), - [sym__link] = STATE(178), - [sym_full_reference_link] = STATE(178), - [sym_collapsed_reference_link] = STATE(178), - [sym_inline_link] = STATE(178), - [sym_link_text] = STATE(636), - [sym__comment_with_spaces] = STATE(178), - [sym_span] = STATE(178), - [sym_raw_inline] = STATE(178), - [sym_math] = STATE(178), - [sym_verbatim] = STATE(178), - [sym__todo_highlights] = STATE(178), - [sym_todo] = STATE(178), - [sym_note] = STATE(178), - [sym__symbol_fallback] = STATE(178), - [aux_sym__text] = STATE(146), - [aux_sym__inline_repeat1] = STATE(79), - [anon_sym_LBRACE_] = ACTIONS(564), - [anon_sym__] = ACTIONS(566), - [anon_sym_LBRACE_STAR] = ACTIONS(568), - [anon_sym_STAR] = ACTIONS(570), - [anon_sym_BSLASH] = ACTIONS(572), - [sym_quotation_marks] = ACTIONS(574), - [sym_ellipsis] = ACTIONS(574), - [sym_em_dash] = ACTIONS(574), - [sym_en_dash] = ACTIONS(576), - [sym_backslash_escape] = ACTIONS(576), - [anon_sym_LT] = ACTIONS(578), - [anon_sym_LBRACE_EQ] = ACTIONS(580), - [anon_sym_LBRACE_PLUS] = ACTIONS(582), - [anon_sym_LBRACE_DASH] = ACTIONS(584), - [sym_symbol] = ACTIONS(574), - [anon_sym_LBRACE_CARET] = ACTIONS(586), - [anon_sym_CARET] = ACTIONS(586), - [anon_sym_LBRACE_TILDE] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_LBRACK_CARET] = ACTIONS(590), - [anon_sym_BANG_LBRACK] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(594), - [anon_sym_LBRACE2] = ACTIONS(576), - [anon_sym_DOLLAR] = ACTIONS(596), - [anon_sym_TODO] = ACTIONS(598), - [anon_sym_WIP] = ACTIONS(598), - [anon_sym_NOTE] = ACTIONS(600), - [anon_sym_INFO] = ACTIONS(600), - [anon_sym_XXX] = ACTIONS(600), - [sym_fixme] = ACTIONS(574), - [anon_sym_PIPE] = ACTIONS(574), - [sym__whitespace1] = ACTIONS(602), - [sym__newline] = ACTIONS(604), - [aux_sym__text_token1] = ACTIONS(606), - [sym__verbatim_begin] = ACTIONS(608), - }, - [73] = { - [sym__element] = STATE(74), - [sym_emphasis] = STATE(179), - [sym_emphasis_begin] = STATE(111), - [sym_strong] = STATE(179), - [sym_strong_begin] = STATE(112), - [sym__hard_line_break] = STATE(179), - [sym_hard_line_break] = STATE(179), - [sym__smart_punctuation] = STATE(179), - [sym_autolink] = STATE(179), - [sym_highlighted] = STATE(179), - [sym_insert] = STATE(179), - [sym_delete] = STATE(179), - [sym_superscript] = STATE(179), - [sym_subscript] = STATE(179), - [sym_footnote_reference] = STATE(179), - [sym__image] = STATE(179), - [sym_full_reference_image] = STATE(179), - [sym_collapsed_reference_image] = STATE(179), - [sym_inline_image] = STATE(179), - [sym__image_description] = STATE(625), - [sym__link] = STATE(179), - [sym_full_reference_link] = STATE(179), - [sym_collapsed_reference_link] = STATE(179), - [sym_inline_link] = STATE(179), - [sym_link_text] = STATE(647), - [sym__comment_with_spaces] = STATE(179), - [sym_span] = STATE(179), - [sym_raw_inline] = STATE(179), - [sym_math] = STATE(179), - [sym_verbatim] = STATE(179), - [sym__todo_highlights] = STATE(179), - [sym_todo] = STATE(179), - [sym_note] = STATE(179), - [sym__symbol_fallback] = STATE(179), - [aux_sym__text] = STATE(171), - [aux_sym__inline_repeat1] = STATE(74), - [anon_sym_LBRACE_] = ACTIONS(610), - [anon_sym__] = ACTIONS(612), - [anon_sym_LBRACE_STAR] = ACTIONS(614), - [anon_sym_STAR] = ACTIONS(616), - [aux_sym_strong_end_token1] = ACTIONS(618), - [anon_sym_BSLASH] = ACTIONS(620), - [sym_quotation_marks] = ACTIONS(622), - [sym_ellipsis] = ACTIONS(622), - [sym_em_dash] = ACTIONS(622), - [sym_en_dash] = ACTIONS(624), - [sym_backslash_escape] = ACTIONS(624), - [anon_sym_LT] = ACTIONS(626), - [anon_sym_LBRACE_EQ] = ACTIONS(628), - [anon_sym_LBRACE_PLUS] = ACTIONS(630), - [anon_sym_LBRACE_DASH] = ACTIONS(632), - [sym_symbol] = ACTIONS(622), - [anon_sym_LBRACE_CARET] = ACTIONS(634), - [anon_sym_CARET] = ACTIONS(634), - [anon_sym_LBRACE_TILDE] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(636), - [anon_sym_LBRACK_CARET] = ACTIONS(638), - [anon_sym_BANG_LBRACK] = ACTIONS(640), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_LBRACE2] = ACTIONS(624), - [anon_sym_DOLLAR] = ACTIONS(644), - [anon_sym_TODO] = ACTIONS(646), - [anon_sym_WIP] = ACTIONS(646), - [anon_sym_NOTE] = ACTIONS(648), - [anon_sym_INFO] = ACTIONS(648), - [anon_sym_XXX] = ACTIONS(648), - [sym_fixme] = ACTIONS(622), - [anon_sym_PIPE] = ACTIONS(622), - [sym__whitespace1] = ACTIONS(650), - [sym__newline] = ACTIONS(652), - [aux_sym__text_token1] = ACTIONS(654), - [sym__verbatim_begin] = ACTIONS(656), - }, - [74] = { - [sym__element] = STATE(74), - [sym_emphasis] = STATE(179), - [sym_emphasis_begin] = STATE(111), - [sym_strong] = STATE(179), - [sym_strong_begin] = STATE(112), - [sym__hard_line_break] = STATE(179), - [sym_hard_line_break] = STATE(179), - [sym__smart_punctuation] = STATE(179), - [sym_autolink] = STATE(179), - [sym_highlighted] = STATE(179), - [sym_insert] = STATE(179), - [sym_delete] = STATE(179), - [sym_superscript] = STATE(179), - [sym_subscript] = STATE(179), - [sym_footnote_reference] = STATE(179), - [sym__image] = STATE(179), - [sym_full_reference_image] = STATE(179), - [sym_collapsed_reference_image] = STATE(179), - [sym_inline_image] = STATE(179), - [sym__image_description] = STATE(625), - [sym__link] = STATE(179), - [sym_full_reference_link] = STATE(179), - [sym_collapsed_reference_link] = STATE(179), - [sym_inline_link] = STATE(179), - [sym_link_text] = STATE(647), - [sym__comment_with_spaces] = STATE(179), - [sym_span] = STATE(179), - [sym_raw_inline] = STATE(179), - [sym_math] = STATE(179), - [sym_verbatim] = STATE(179), - [sym__todo_highlights] = STATE(179), - [sym_todo] = STATE(179), - [sym_note] = STATE(179), - [sym__symbol_fallback] = STATE(179), - [aux_sym__text] = STATE(171), - [aux_sym__inline_repeat1] = STATE(74), - [anon_sym_LBRACE_] = ACTIONS(658), - [anon_sym__] = ACTIONS(661), - [anon_sym_LBRACE_STAR] = ACTIONS(664), - [anon_sym_STAR] = ACTIONS(667), - [aux_sym_strong_end_token1] = ACTIONS(670), - [anon_sym_BSLASH] = ACTIONS(672), - [sym_quotation_marks] = ACTIONS(675), - [sym_ellipsis] = ACTIONS(675), - [sym_em_dash] = ACTIONS(675), - [sym_en_dash] = ACTIONS(678), - [sym_backslash_escape] = ACTIONS(678), - [anon_sym_LT] = ACTIONS(681), - [anon_sym_LBRACE_EQ] = ACTIONS(684), - [anon_sym_LBRACE_PLUS] = ACTIONS(687), - [anon_sym_LBRACE_DASH] = ACTIONS(690), - [sym_symbol] = ACTIONS(675), - [anon_sym_LBRACE_CARET] = ACTIONS(693), - [anon_sym_CARET] = ACTIONS(693), - [anon_sym_LBRACE_TILDE] = ACTIONS(696), - [anon_sym_TILDE] = ACTIONS(696), - [anon_sym_LBRACK_CARET] = ACTIONS(699), - [anon_sym_BANG_LBRACK] = ACTIONS(702), - [anon_sym_LBRACK] = ACTIONS(705), - [anon_sym_LBRACE2] = ACTIONS(678), - [anon_sym_DOLLAR] = ACTIONS(708), - [anon_sym_TODO] = ACTIONS(711), - [anon_sym_WIP] = ACTIONS(711), - [anon_sym_NOTE] = ACTIONS(714), - [anon_sym_INFO] = ACTIONS(714), - [anon_sym_XXX] = ACTIONS(714), - [sym_fixme] = ACTIONS(675), - [anon_sym_PIPE] = ACTIONS(675), - [sym__whitespace1] = ACTIONS(717), - [sym__newline] = ACTIONS(720), - [aux_sym__text_token1] = ACTIONS(723), - [sym__verbatim_begin] = ACTIONS(726), - }, - [75] = { - [sym__inline] = STATE(788), - [sym__element] = STATE(79), - [sym_emphasis] = STATE(178), - [sym_emphasis_begin] = STATE(115), - [sym_strong] = STATE(178), - [sym_strong_begin] = STATE(117), - [sym__hard_line_break] = STATE(178), - [sym_hard_line_break] = STATE(178), - [sym__smart_punctuation] = STATE(178), - [sym_autolink] = STATE(178), - [sym_highlighted] = STATE(178), - [sym_insert] = STATE(178), - [sym_delete] = STATE(178), - [sym_superscript] = STATE(178), - [sym_subscript] = STATE(178), - [sym_footnote_reference] = STATE(178), - [sym__image] = STATE(178), - [sym_full_reference_image] = STATE(178), - [sym_collapsed_reference_image] = STATE(178), - [sym_inline_image] = STATE(178), - [sym__image_description] = STATE(640), - [sym__link] = STATE(178), - [sym_full_reference_link] = STATE(178), - [sym_collapsed_reference_link] = STATE(178), - [sym_inline_link] = STATE(178), - [sym_link_text] = STATE(636), - [sym__comment_with_spaces] = STATE(178), - [sym_span] = STATE(178), - [sym_raw_inline] = STATE(178), - [sym_math] = STATE(178), - [sym_verbatim] = STATE(178), - [sym__todo_highlights] = STATE(178), - [sym_todo] = STATE(178), - [sym_note] = STATE(178), - [sym__symbol_fallback] = STATE(178), - [aux_sym__text] = STATE(146), - [aux_sym__inline_repeat1] = STATE(79), - [anon_sym_LBRACE_] = ACTIONS(564), - [anon_sym__] = ACTIONS(566), - [anon_sym_LBRACE_STAR] = ACTIONS(568), - [anon_sym_STAR] = ACTIONS(570), - [anon_sym_BSLASH] = ACTIONS(572), - [sym_quotation_marks] = ACTIONS(574), - [sym_ellipsis] = ACTIONS(574), - [sym_em_dash] = ACTIONS(574), - [sym_en_dash] = ACTIONS(576), - [sym_backslash_escape] = ACTIONS(576), - [anon_sym_LT] = ACTIONS(578), - [anon_sym_LBRACE_EQ] = ACTIONS(580), - [anon_sym_LBRACE_PLUS] = ACTIONS(582), - [anon_sym_LBRACE_DASH] = ACTIONS(584), - [sym_symbol] = ACTIONS(574), - [anon_sym_LBRACE_CARET] = ACTIONS(586), - [anon_sym_CARET] = ACTIONS(586), - [anon_sym_LBRACE_TILDE] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_LBRACK_CARET] = ACTIONS(590), - [anon_sym_BANG_LBRACK] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(594), - [anon_sym_LBRACE2] = ACTIONS(576), - [anon_sym_DOLLAR] = ACTIONS(596), - [anon_sym_TODO] = ACTIONS(598), - [anon_sym_WIP] = ACTIONS(598), - [anon_sym_NOTE] = ACTIONS(600), - [anon_sym_INFO] = ACTIONS(600), - [anon_sym_XXX] = ACTIONS(600), - [sym_fixme] = ACTIONS(574), - [anon_sym_PIPE] = ACTIONS(574), - [sym__whitespace1] = ACTIONS(602), - [sym__newline] = ACTIONS(604), - [aux_sym__text_token1] = ACTIONS(606), - [sym__verbatim_begin] = ACTIONS(608), - }, - [76] = { - [sym__element] = STATE(76), - [sym_emphasis] = STATE(198), - [sym_emphasis_begin] = STATE(106), - [sym_strong] = STATE(198), - [sym_strong_begin] = STATE(105), - [sym__hard_line_break] = STATE(198), - [sym_hard_line_break] = STATE(198), - [sym__smart_punctuation] = STATE(198), - [sym_autolink] = STATE(198), - [sym_highlighted] = STATE(198), - [sym_insert] = STATE(198), - [sym_delete] = STATE(198), - [sym_superscript] = STATE(198), - [sym_subscript] = STATE(198), - [sym_footnote_reference] = STATE(198), - [sym__image] = STATE(198), - [sym_full_reference_image] = STATE(198), - [sym_collapsed_reference_image] = STATE(198), - [sym_inline_image] = STATE(198), - [sym__image_description] = STATE(634), - [sym__link] = STATE(198), - [sym_full_reference_link] = STATE(198), - [sym_collapsed_reference_link] = STATE(198), - [sym_inline_link] = STATE(198), - [sym_link_text] = STATE(648), - [sym__comment_with_spaces] = STATE(198), - [sym_span] = STATE(198), - [sym_raw_inline] = STATE(198), - [sym_math] = STATE(198), - [sym_verbatim] = STATE(198), - [sym__todo_highlights] = STATE(198), - [sym_todo] = STATE(198), - [sym_note] = STATE(198), - [sym__symbol_fallback] = STATE(198), - [aux_sym__text] = STATE(134), - [aux_sym__inline_repeat1] = STATE(76), - [ts_builtin_sym_end] = ACTIONS(670), - [anon_sym_LBRACE_] = ACTIONS(729), - [anon_sym__] = ACTIONS(732), - [anon_sym_LBRACE_STAR] = ACTIONS(735), - [anon_sym_STAR] = ACTIONS(738), - [anon_sym_BSLASH] = ACTIONS(741), - [sym_quotation_marks] = ACTIONS(744), - [sym_ellipsis] = ACTIONS(744), - [sym_em_dash] = ACTIONS(744), - [sym_en_dash] = ACTIONS(747), - [sym_backslash_escape] = ACTIONS(747), - [anon_sym_LT] = ACTIONS(750), - [anon_sym_LBRACE_EQ] = ACTIONS(753), - [anon_sym_LBRACE_PLUS] = ACTIONS(756), - [anon_sym_LBRACE_DASH] = ACTIONS(759), - [sym_symbol] = ACTIONS(744), - [anon_sym_LBRACE_CARET] = ACTIONS(762), - [anon_sym_CARET] = ACTIONS(762), - [anon_sym_LBRACE_TILDE] = ACTIONS(765), - [anon_sym_TILDE] = ACTIONS(765), - [anon_sym_LBRACK_CARET] = ACTIONS(768), - [anon_sym_BANG_LBRACK] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(774), - [anon_sym_LBRACE2] = ACTIONS(747), - [anon_sym_DOLLAR] = ACTIONS(777), - [anon_sym_TODO] = ACTIONS(780), - [anon_sym_WIP] = ACTIONS(780), - [anon_sym_NOTE] = ACTIONS(783), - [anon_sym_INFO] = ACTIONS(783), - [anon_sym_XXX] = ACTIONS(783), - [sym_fixme] = ACTIONS(744), - [anon_sym_PIPE] = ACTIONS(744), - [sym__whitespace1] = ACTIONS(786), - [sym__newline] = ACTIONS(789), - [aux_sym__text_token1] = ACTIONS(792), - [sym__verbatim_begin] = ACTIONS(795), - }, - [77] = { - [sym__element] = STATE(113), - [sym_emphasis] = STATE(174), - [sym_emphasis_begin] = STATE(86), - [sym_strong] = STATE(174), - [sym_strong_begin] = STATE(89), - [sym__hard_line_break] = STATE(174), - [sym_hard_line_break] = STATE(174), - [sym__smart_punctuation] = STATE(174), - [sym_autolink] = STATE(174), - [sym_highlighted] = STATE(174), - [sym_insert] = STATE(174), - [sym_delete] = STATE(174), - [sym_superscript] = STATE(174), - [sym_subscript] = STATE(174), - [sym_footnote_reference] = STATE(174), - [sym__image] = STATE(174), - [sym_full_reference_image] = STATE(174), - [sym_collapsed_reference_image] = STATE(174), - [sym_inline_image] = STATE(174), - [sym__image_description] = STATE(630), - [sym__link] = STATE(174), - [sym_full_reference_link] = STATE(174), - [sym_collapsed_reference_link] = STATE(174), - [sym_inline_link] = STATE(174), - [sym_link_text] = STATE(631), - [sym__comment_with_spaces] = STATE(174), - [sym_span] = STATE(174), - [sym_raw_inline] = STATE(174), - [sym_math] = STATE(174), - [sym_verbatim] = STATE(174), - [sym__todo_highlights] = STATE(174), - [sym_todo] = STATE(174), - [sym_note] = STATE(174), - [sym__symbol_fallback] = STATE(174), - [aux_sym__text] = STATE(148), - [aux_sym__inline_repeat1] = STATE(113), - [anon_sym_LBRACE_] = ACTIONS(798), - [anon_sym__] = ACTIONS(800), - [anon_sym_LBRACE_STAR] = ACTIONS(802), - [anon_sym_STAR] = ACTIONS(804), - [anon_sym_BSLASH] = ACTIONS(806), - [sym_quotation_marks] = ACTIONS(808), - [sym_ellipsis] = ACTIONS(808), - [sym_em_dash] = ACTIONS(808), - [sym_en_dash] = ACTIONS(810), - [sym_backslash_escape] = ACTIONS(810), - [anon_sym_LT] = ACTIONS(812), - [anon_sym_LBRACE_EQ] = ACTIONS(814), - [anon_sym_LBRACE_PLUS] = ACTIONS(816), - [anon_sym_PLUS_RBRACE] = ACTIONS(618), - [anon_sym_LBRACE_DASH] = ACTIONS(818), - [sym_symbol] = ACTIONS(808), - [anon_sym_LBRACE_CARET] = ACTIONS(820), - [anon_sym_CARET] = ACTIONS(820), - [anon_sym_LBRACE_TILDE] = ACTIONS(822), - [anon_sym_TILDE] = ACTIONS(822), - [anon_sym_LBRACK_CARET] = ACTIONS(824), - [anon_sym_BANG_LBRACK] = ACTIONS(826), - [anon_sym_LBRACK] = ACTIONS(828), - [anon_sym_LBRACE2] = ACTIONS(810), - [anon_sym_DOLLAR] = ACTIONS(830), - [anon_sym_TODO] = ACTIONS(832), - [anon_sym_WIP] = ACTIONS(832), - [anon_sym_NOTE] = ACTIONS(834), - [anon_sym_INFO] = ACTIONS(834), - [anon_sym_XXX] = ACTIONS(834), - [sym_fixme] = ACTIONS(808), - [anon_sym_PIPE] = ACTIONS(808), - [sym__whitespace1] = ACTIONS(836), - [sym__newline] = ACTIONS(838), - [aux_sym__text_token1] = ACTIONS(840), - [sym__verbatim_begin] = ACTIONS(842), + [42] = { + [sym__inline] = STATE(747), + [sym__element] = STATE(107), + [sym_emphasis] = STATE(187), + [sym_emphasis_begin] = STATE(893), + [sym_strong] = STATE(187), + [sym_strong_begin] = STATE(119), + [sym__hard_line_break] = STATE(187), + [sym_hard_line_break] = STATE(187), + [sym__smart_punctuation] = STATE(187), + [sym_autolink] = STATE(187), + [sym_highlighted] = STATE(187), + [sym_insert] = STATE(187), + [sym_delete] = STATE(187), + [sym_superscript] = STATE(187), + [sym_subscript] = STATE(187), + [sym_footnote_reference] = STATE(187), + [sym__image] = STATE(187), + [sym_full_reference_image] = STATE(187), + [sym_collapsed_reference_image] = STATE(187), + [sym_inline_image] = STATE(187), + [sym__image_description] = STATE(616), + [sym__link] = STATE(187), + [sym_full_reference_link] = STATE(187), + [sym_collapsed_reference_link] = STATE(187), + [sym_inline_link] = STATE(187), + [sym_link_text] = STATE(634), + [sym__comment_with_spaces] = STATE(187), + [sym_span] = STATE(187), + [sym_raw_inline] = STATE(187), + [sym_math] = STATE(187), + [sym_verbatim] = STATE(187), + [sym__todo_highlights] = STATE(187), + [sym_todo] = STATE(187), + [sym_note] = STATE(187), + [sym__symbol_fallback] = STATE(187), + [aux_sym__text] = STATE(131), + [aux_sym__inline_repeat1] = STATE(107), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_] = ACTIONS(265), + [anon_sym__] = ACTIONS(268), + [anon_sym_LBRACE_STAR] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(274), + [anon_sym_BSLASH] = ACTIONS(277), + [sym_quotation_marks] = ACTIONS(268), + [sym_ellipsis] = ACTIONS(268), + [sym_em_dash] = ACTIONS(268), + [sym_en_dash] = ACTIONS(280), + [sym_backslash_escape] = ACTIONS(280), + [anon_sym_LT] = ACTIONS(283), + [anon_sym_LBRACE_EQ] = ACTIONS(286), + [anon_sym_EQ_RBRACE] = ACTIONS(79), + [anon_sym_LBRACE_PLUS] = ACTIONS(289), + [anon_sym_LBRACE_DASH] = ACTIONS(292), + [sym_symbol] = ACTIONS(268), + [anon_sym_LBRACE_CARET] = ACTIONS(295), + [anon_sym_CARET] = ACTIONS(295), + [anon_sym_LBRACE_TILDE] = ACTIONS(298), + [anon_sym_TILDE] = ACTIONS(298), + [anon_sym_LBRACK_CARET] = ACTIONS(301), + [anon_sym_BANG_LBRACK] = ACTIONS(304), + [anon_sym_LBRACK] = ACTIONS(307), + [anon_sym_LBRACE2] = ACTIONS(280), + [anon_sym_DOLLAR] = ACTIONS(310), + [anon_sym_TODO] = ACTIONS(313), + [anon_sym_WIP] = ACTIONS(313), + [anon_sym_NOTE] = ACTIONS(316), + [anon_sym_INFO] = ACTIONS(316), + [anon_sym_XXX] = ACTIONS(316), + [sym_fixme] = ACTIONS(268), + [anon_sym_PIPE] = ACTIONS(268), + [sym__whitespace1] = ACTIONS(319), + [sym__newline] = ACTIONS(322), + [aux_sym__text_token1] = ACTIONS(325), + [sym__verbatim_begin] = ACTIONS(328), }, - [78] = { - [sym__inline] = STATE(848), - [sym__element] = STATE(79), - [sym_emphasis] = STATE(178), - [sym_emphasis_begin] = STATE(115), - [sym_strong] = STATE(178), - [sym_strong_begin] = STATE(117), - [sym__hard_line_break] = STATE(178), - [sym_hard_line_break] = STATE(178), - [sym__smart_punctuation] = STATE(178), - [sym_autolink] = STATE(178), - [sym_highlighted] = STATE(178), - [sym_insert] = STATE(178), - [sym_delete] = STATE(178), - [sym_superscript] = STATE(178), - [sym_subscript] = STATE(178), - [sym_footnote_reference] = STATE(178), - [sym__image] = STATE(178), - [sym_full_reference_image] = STATE(178), - [sym_collapsed_reference_image] = STATE(178), - [sym_inline_image] = STATE(178), - [sym__image_description] = STATE(640), - [sym__link] = STATE(178), - [sym_full_reference_link] = STATE(178), - [sym_collapsed_reference_link] = STATE(178), - [sym_inline_link] = STATE(178), - [sym_link_text] = STATE(636), - [sym__comment_with_spaces] = STATE(178), - [sym_span] = STATE(178), - [sym_raw_inline] = STATE(178), - [sym_math] = STATE(178), - [sym_verbatim] = STATE(178), - [sym__todo_highlights] = STATE(178), - [sym_todo] = STATE(178), - [sym_note] = STATE(178), - [sym__symbol_fallback] = STATE(178), - [aux_sym__text] = STATE(146), - [aux_sym__inline_repeat1] = STATE(79), - [anon_sym_LBRACE_] = ACTIONS(564), - [anon_sym__] = ACTIONS(566), - [anon_sym_LBRACE_STAR] = ACTIONS(568), - [anon_sym_STAR] = ACTIONS(570), - [anon_sym_BSLASH] = ACTIONS(572), - [sym_quotation_marks] = ACTIONS(574), - [sym_ellipsis] = ACTIONS(574), - [sym_em_dash] = ACTIONS(574), - [sym_en_dash] = ACTIONS(576), - [sym_backslash_escape] = ACTIONS(576), - [anon_sym_LT] = ACTIONS(578), - [anon_sym_LBRACE_EQ] = ACTIONS(580), - [anon_sym_LBRACE_PLUS] = ACTIONS(582), - [anon_sym_LBRACE_DASH] = ACTIONS(584), - [sym_symbol] = ACTIONS(574), - [anon_sym_LBRACE_CARET] = ACTIONS(586), - [anon_sym_CARET] = ACTIONS(586), - [anon_sym_LBRACE_TILDE] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_LBRACK_CARET] = ACTIONS(590), - [anon_sym_BANG_LBRACK] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(594), - [anon_sym_LBRACE2] = ACTIONS(576), - [anon_sym_DOLLAR] = ACTIONS(596), - [anon_sym_TODO] = ACTIONS(598), - [anon_sym_WIP] = ACTIONS(598), - [anon_sym_NOTE] = ACTIONS(600), - [anon_sym_INFO] = ACTIONS(600), - [anon_sym_XXX] = ACTIONS(600), - [sym_fixme] = ACTIONS(574), - [anon_sym_PIPE] = ACTIONS(574), - [sym__whitespace1] = ACTIONS(602), - [sym__newline] = ACTIONS(604), - [aux_sym__text_token1] = ACTIONS(606), - [sym__verbatim_begin] = ACTIONS(608), + [43] = { + [sym__inline] = STATE(841), + [sym__element] = STATE(97), + [sym_emphasis] = STATE(182), + [sym_emphasis_begin] = STATE(898), + [sym_strong] = STATE(182), + [sym_strong_begin] = STATE(104), + [sym__hard_line_break] = STATE(182), + [sym_hard_line_break] = STATE(182), + [sym__smart_punctuation] = STATE(182), + [sym_autolink] = STATE(182), + [sym_highlighted] = STATE(182), + [sym_insert] = STATE(182), + [sym_delete] = STATE(182), + [sym_superscript] = STATE(182), + [sym_subscript] = STATE(182), + [sym_footnote_reference] = STATE(182), + [sym__image] = STATE(182), + [sym_full_reference_image] = STATE(182), + [sym_collapsed_reference_image] = STATE(182), + [sym_inline_image] = STATE(182), + [sym__image_description] = STATE(610), + [sym__link] = STATE(182), + [sym_full_reference_link] = STATE(182), + [sym_collapsed_reference_link] = STATE(182), + [sym_inline_link] = STATE(182), + [sym_link_text] = STATE(608), + [sym__comment_with_spaces] = STATE(182), + [sym_span] = STATE(182), + [sym_raw_inline] = STATE(182), + [sym_math] = STATE(182), + [sym_verbatim] = STATE(182), + [sym__todo_highlights] = STATE(182), + [sym_todo] = STATE(182), + [sym_note] = STATE(182), + [sym__symbol_fallback] = STATE(182), + [aux_sym__text] = STATE(144), + [aux_sym__inline_repeat1] = STATE(97), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_] = ACTIONS(49), + [anon_sym__] = ACTIONS(52), + [anon_sym_LBRACE_STAR] = ACTIONS(55), + [anon_sym_STAR] = ACTIONS(58), + [anon_sym_BSLASH] = ACTIONS(61), + [sym_quotation_marks] = ACTIONS(52), + [sym_ellipsis] = ACTIONS(52), + [sym_em_dash] = ACTIONS(52), + [sym_en_dash] = ACTIONS(64), + [sym_backslash_escape] = ACTIONS(64), + [anon_sym_LT] = ACTIONS(67), + [anon_sym_LBRACE_EQ] = ACTIONS(70), + [anon_sym_LBRACE_PLUS] = ACTIONS(73), + [anon_sym_LBRACE_DASH] = ACTIONS(76), + [sym_symbol] = ACTIONS(52), + [anon_sym_LBRACE_CARET] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_LBRACE_TILDE] = ACTIONS(84), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_TILDE_RBRACE] = ACTIONS(79), + [anon_sym_LBRACK_CARET] = ACTIONS(87), + [anon_sym_BANG_LBRACK] = ACTIONS(92), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACE2] = ACTIONS(64), + [anon_sym_DOLLAR] = ACTIONS(98), + [anon_sym_TODO] = ACTIONS(101), + [anon_sym_WIP] = ACTIONS(101), + [anon_sym_NOTE] = ACTIONS(104), + [anon_sym_INFO] = ACTIONS(104), + [anon_sym_XXX] = ACTIONS(104), + [sym_fixme] = ACTIONS(52), + [anon_sym_PIPE] = ACTIONS(52), + [sym__whitespace1] = ACTIONS(107), + [sym__newline] = ACTIONS(110), + [aux_sym__text_token1] = ACTIONS(113), + [sym__verbatim_begin] = ACTIONS(116), }, - [79] = { - [sym__element] = STATE(80), - [sym_emphasis] = STATE(178), - [sym_emphasis_begin] = STATE(115), - [sym_strong] = STATE(178), - [sym_strong_begin] = STATE(117), - [sym__hard_line_break] = STATE(178), - [sym_hard_line_break] = STATE(178), - [sym__smart_punctuation] = STATE(178), - [sym_autolink] = STATE(178), - [sym_highlighted] = STATE(178), - [sym_insert] = STATE(178), - [sym_delete] = STATE(178), - [sym_superscript] = STATE(178), - [sym_subscript] = STATE(178), - [sym_footnote_reference] = STATE(178), - [sym__image] = STATE(178), - [sym_full_reference_image] = STATE(178), - [sym_collapsed_reference_image] = STATE(178), - [sym_inline_image] = STATE(178), - [sym__image_description] = STATE(640), - [sym__link] = STATE(178), - [sym_full_reference_link] = STATE(178), - [sym_collapsed_reference_link] = STATE(178), - [sym_inline_link] = STATE(178), - [sym_link_text] = STATE(636), - [sym__comment_with_spaces] = STATE(178), - [sym_span] = STATE(178), - [sym_raw_inline] = STATE(178), - [sym_math] = STATE(178), - [sym_verbatim] = STATE(178), - [sym__todo_highlights] = STATE(178), - [sym_todo] = STATE(178), - [sym_note] = STATE(178), - [sym__symbol_fallback] = STATE(178), - [aux_sym__text] = STATE(146), - [aux_sym__inline_repeat1] = STATE(80), - [anon_sym_LBRACE_] = ACTIONS(564), - [anon_sym__] = ACTIONS(566), - [anon_sym_LBRACE_STAR] = ACTIONS(568), - [anon_sym_STAR] = ACTIONS(570), - [anon_sym_BSLASH] = ACTIONS(572), - [sym_quotation_marks] = ACTIONS(574), - [sym_ellipsis] = ACTIONS(574), - [sym_em_dash] = ACTIONS(574), - [sym_en_dash] = ACTIONS(576), - [sym_backslash_escape] = ACTIONS(576), - [anon_sym_LT] = ACTIONS(578), - [anon_sym_LBRACE_EQ] = ACTIONS(580), - [anon_sym_LBRACE_PLUS] = ACTIONS(582), - [anon_sym_LBRACE_DASH] = ACTIONS(584), - [sym_symbol] = ACTIONS(574), - [anon_sym_LBRACE_CARET] = ACTIONS(586), - [anon_sym_CARET] = ACTIONS(586), - [anon_sym_LBRACE_TILDE] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_LBRACK_CARET] = ACTIONS(590), - [anon_sym_BANG_LBRACK] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(594), - [anon_sym_RBRACK2] = ACTIONS(618), - [anon_sym_LBRACE2] = ACTIONS(576), - [anon_sym_DOLLAR] = ACTIONS(596), - [anon_sym_TODO] = ACTIONS(598), - [anon_sym_WIP] = ACTIONS(598), - [anon_sym_NOTE] = ACTIONS(600), - [anon_sym_INFO] = ACTIONS(600), - [anon_sym_XXX] = ACTIONS(600), - [sym_fixme] = ACTIONS(574), - [anon_sym_PIPE] = ACTIONS(574), - [sym__whitespace1] = ACTIONS(602), - [sym__newline] = ACTIONS(844), - [aux_sym__text_token1] = ACTIONS(606), - [sym__verbatim_begin] = ACTIONS(608), + [44] = { + [sym__inline] = STATE(710), + [sym__element] = STATE(107), + [sym_emphasis] = STATE(187), + [sym_emphasis_begin] = STATE(893), + [sym_strong] = STATE(187), + [sym_strong_begin] = STATE(119), + [sym__hard_line_break] = STATE(187), + [sym_hard_line_break] = STATE(187), + [sym__smart_punctuation] = STATE(187), + [sym_autolink] = STATE(187), + [sym_highlighted] = STATE(187), + [sym_insert] = STATE(187), + [sym_delete] = STATE(187), + [sym_superscript] = STATE(187), + [sym_subscript] = STATE(187), + [sym_footnote_reference] = STATE(187), + [sym__image] = STATE(187), + [sym_full_reference_image] = STATE(187), + [sym_collapsed_reference_image] = STATE(187), + [sym_inline_image] = STATE(187), + [sym__image_description] = STATE(616), + [sym__link] = STATE(187), + [sym_full_reference_link] = STATE(187), + [sym_collapsed_reference_link] = STATE(187), + [sym_inline_link] = STATE(187), + [sym_link_text] = STATE(634), + [sym__comment_with_spaces] = STATE(187), + [sym_span] = STATE(187), + [sym_raw_inline] = STATE(187), + [sym_math] = STATE(187), + [sym_verbatim] = STATE(187), + [sym__todo_highlights] = STATE(187), + [sym_todo] = STATE(187), + [sym_note] = STATE(187), + [sym__symbol_fallback] = STATE(187), + [aux_sym__text] = STATE(131), + [aux_sym__inline_repeat1] = STATE(107), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_] = ACTIONS(265), + [anon_sym__] = ACTIONS(268), + [anon_sym_LBRACE_STAR] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(274), + [anon_sym_BSLASH] = ACTIONS(277), + [sym_quotation_marks] = ACTIONS(268), + [sym_ellipsis] = ACTIONS(268), + [sym_em_dash] = ACTIONS(268), + [sym_en_dash] = ACTIONS(280), + [sym_backslash_escape] = ACTIONS(280), + [anon_sym_LT] = ACTIONS(283), + [anon_sym_LBRACE_EQ] = ACTIONS(286), + [anon_sym_LBRACE_PLUS] = ACTIONS(289), + [anon_sym_LBRACE_DASH] = ACTIONS(292), + [sym_symbol] = ACTIONS(268), + [anon_sym_LBRACE_CARET] = ACTIONS(295), + [anon_sym_CARET] = ACTIONS(295), + [anon_sym_LBRACE_TILDE] = ACTIONS(298), + [anon_sym_TILDE] = ACTIONS(298), + [anon_sym_LBRACK_CARET] = ACTIONS(301), + [anon_sym_RBRACK] = ACTIONS(79), + [anon_sym_BANG_LBRACK] = ACTIONS(304), + [anon_sym_LBRACK] = ACTIONS(307), + [anon_sym_LBRACE2] = ACTIONS(280), + [anon_sym_DOLLAR] = ACTIONS(310), + [anon_sym_TODO] = ACTIONS(313), + [anon_sym_WIP] = ACTIONS(313), + [anon_sym_NOTE] = ACTIONS(316), + [anon_sym_INFO] = ACTIONS(316), + [anon_sym_XXX] = ACTIONS(316), + [sym_fixme] = ACTIONS(268), + [anon_sym_PIPE] = ACTIONS(268), + [sym__whitespace1] = ACTIONS(319), + [sym__newline] = ACTIONS(322), + [aux_sym__text_token1] = ACTIONS(325), + [sym__verbatim_begin] = ACTIONS(328), }, - [80] = { - [sym__element] = STATE(80), - [sym_emphasis] = STATE(178), - [sym_emphasis_begin] = STATE(115), - [sym_strong] = STATE(178), + [45] = { + [sym__inline] = STATE(711), + [sym__element] = STATE(78), + [sym_emphasis] = STATE(167), + [sym_emphasis_begin] = STATE(894), + [sym_strong] = STATE(167), [sym_strong_begin] = STATE(117), - [sym__hard_line_break] = STATE(178), - [sym_hard_line_break] = STATE(178), - [sym__smart_punctuation] = STATE(178), - [sym_autolink] = STATE(178), - [sym_highlighted] = STATE(178), - [sym_insert] = STATE(178), - [sym_delete] = STATE(178), - [sym_superscript] = STATE(178), - [sym_subscript] = STATE(178), - [sym_footnote_reference] = STATE(178), - [sym__image] = STATE(178), - [sym_full_reference_image] = STATE(178), - [sym_collapsed_reference_image] = STATE(178), - [sym_inline_image] = STATE(178), - [sym__image_description] = STATE(640), - [sym__link] = STATE(178), - [sym_full_reference_link] = STATE(178), - [sym_collapsed_reference_link] = STATE(178), - [sym_inline_link] = STATE(178), - [sym_link_text] = STATE(636), - [sym__comment_with_spaces] = STATE(178), - [sym_span] = STATE(178), - [sym_raw_inline] = STATE(178), - [sym_math] = STATE(178), - [sym_verbatim] = STATE(178), - [sym__todo_highlights] = STATE(178), - [sym_todo] = STATE(178), - [sym_note] = STATE(178), - [sym__symbol_fallback] = STATE(178), - [aux_sym__text] = STATE(146), - [aux_sym__inline_repeat1] = STATE(80), - [anon_sym_LBRACE_] = ACTIONS(846), - [anon_sym__] = ACTIONS(849), - [anon_sym_LBRACE_STAR] = ACTIONS(852), - [anon_sym_STAR] = ACTIONS(855), - [anon_sym_BSLASH] = ACTIONS(858), - [sym_quotation_marks] = ACTIONS(861), - [sym_ellipsis] = ACTIONS(861), - [sym_em_dash] = ACTIONS(861), - [sym_en_dash] = ACTIONS(864), - [sym_backslash_escape] = ACTIONS(864), - [anon_sym_LT] = ACTIONS(867), - [anon_sym_LBRACE_EQ] = ACTIONS(870), - [anon_sym_LBRACE_PLUS] = ACTIONS(873), - [anon_sym_LBRACE_DASH] = ACTIONS(876), - [sym_symbol] = ACTIONS(861), - [anon_sym_LBRACE_CARET] = ACTIONS(879), - [anon_sym_CARET] = ACTIONS(879), - [anon_sym_LBRACE_TILDE] = ACTIONS(882), - [anon_sym_TILDE] = ACTIONS(882), - [anon_sym_LBRACK_CARET] = ACTIONS(885), - [anon_sym_BANG_LBRACK] = ACTIONS(888), - [anon_sym_LBRACK] = ACTIONS(891), - [anon_sym_RBRACK2] = ACTIONS(670), - [anon_sym_LBRACE2] = ACTIONS(864), - [anon_sym_DOLLAR] = ACTIONS(894), - [anon_sym_TODO] = ACTIONS(897), - [anon_sym_WIP] = ACTIONS(897), - [anon_sym_NOTE] = ACTIONS(900), - [anon_sym_INFO] = ACTIONS(900), - [anon_sym_XXX] = ACTIONS(900), - [sym_fixme] = ACTIONS(861), - [anon_sym_PIPE] = ACTIONS(861), - [sym__whitespace1] = ACTIONS(903), - [sym__newline] = ACTIONS(906), - [aux_sym__text_token1] = ACTIONS(909), - [sym__verbatim_begin] = ACTIONS(912), - }, - [81] = { - [sym__inline] = STATE(679), - [sym__element] = STATE(87), - [sym_emphasis] = STATE(189), - [sym_emphasis_begin] = STATE(108), - [sym_strong] = STATE(189), - [sym_strong_begin] = STATE(109), - [sym__hard_line_break] = STATE(189), - [sym_hard_line_break] = STATE(189), - [sym__smart_punctuation] = STATE(189), - [sym_autolink] = STATE(189), - [sym_highlighted] = STATE(189), - [sym_insert] = STATE(189), - [sym_delete] = STATE(189), - [sym_superscript] = STATE(189), - [sym_subscript] = STATE(189), - [sym_footnote_reference] = STATE(189), - [sym__image] = STATE(189), - [sym_full_reference_image] = STATE(189), - [sym_collapsed_reference_image] = STATE(189), - [sym_inline_image] = STATE(189), - [sym__image_description] = STATE(655), - [sym__link] = STATE(189), - [sym_full_reference_link] = STATE(189), - [sym_collapsed_reference_link] = STATE(189), - [sym_inline_link] = STATE(189), - [sym_link_text] = STATE(626), - [sym__comment_with_spaces] = STATE(189), - [sym_span] = STATE(189), - [sym_raw_inline] = STATE(189), - [sym_math] = STATE(189), - [sym_verbatim] = STATE(189), - [sym__todo_highlights] = STATE(189), - [sym_todo] = STATE(189), - [sym_note] = STATE(189), - [sym__symbol_fallback] = STATE(189), - [aux_sym__text] = STATE(155), - [aux_sym__inline_repeat1] = STATE(87), - [anon_sym_LBRACE_] = ACTIONS(915), - [anon_sym__] = ACTIONS(917), - [anon_sym_LBRACE_STAR] = ACTIONS(919), - [anon_sym_STAR] = ACTIONS(921), - [anon_sym_BSLASH] = ACTIONS(923), - [sym_quotation_marks] = ACTIONS(925), - [sym_ellipsis] = ACTIONS(925), - [sym_em_dash] = ACTIONS(925), - [sym_en_dash] = ACTIONS(927), - [sym_backslash_escape] = ACTIONS(927), - [anon_sym_LT] = ACTIONS(929), - [anon_sym_LBRACE_EQ] = ACTIONS(931), - [anon_sym_LBRACE_PLUS] = ACTIONS(933), - [anon_sym_LBRACE_DASH] = ACTIONS(935), - [sym_symbol] = ACTIONS(925), - [anon_sym_LBRACE_CARET] = ACTIONS(937), - [anon_sym_CARET] = ACTIONS(937), - [anon_sym_LBRACE_TILDE] = ACTIONS(939), - [anon_sym_TILDE] = ACTIONS(939), - [anon_sym_LBRACK_CARET] = ACTIONS(941), - [anon_sym_BANG_LBRACK] = ACTIONS(943), - [anon_sym_LBRACK] = ACTIONS(945), - [anon_sym_LBRACE2] = ACTIONS(927), - [anon_sym_DOLLAR] = ACTIONS(947), - [anon_sym_TODO] = ACTIONS(949), - [anon_sym_WIP] = ACTIONS(949), - [anon_sym_NOTE] = ACTIONS(951), - [anon_sym_INFO] = ACTIONS(951), - [anon_sym_XXX] = ACTIONS(951), - [sym_fixme] = ACTIONS(925), - [anon_sym_PIPE] = ACTIONS(925), - [sym__whitespace1] = ACTIONS(953), - [sym__newline] = ACTIONS(955), - [aux_sym__text_token1] = ACTIONS(957), - [sym__verbatim_begin] = ACTIONS(959), + [sym__hard_line_break] = STATE(167), + [sym_hard_line_break] = STATE(167), + [sym__smart_punctuation] = STATE(167), + [sym_autolink] = STATE(167), + [sym_highlighted] = STATE(167), + [sym_insert] = STATE(167), + [sym_delete] = STATE(167), + [sym_superscript] = STATE(167), + [sym_subscript] = STATE(167), + [sym_footnote_reference] = STATE(167), + [sym__image] = STATE(167), + [sym_full_reference_image] = STATE(167), + [sym_collapsed_reference_image] = STATE(167), + [sym_inline_image] = STATE(167), + [sym__image_description] = STATE(613), + [sym__link] = STATE(167), + [sym_full_reference_link] = STATE(167), + [sym_collapsed_reference_link] = STATE(167), + [sym_inline_link] = STATE(167), + [sym_link_text] = STATE(614), + [sym__comment_with_spaces] = STATE(167), + [sym_span] = STATE(167), + [sym_raw_inline] = STATE(167), + [sym_math] = STATE(167), + [sym_verbatim] = STATE(167), + [sym__todo_highlights] = STATE(167), + [sym_todo] = STATE(167), + [sym_note] = STATE(167), + [sym__symbol_fallback] = STATE(167), + [aux_sym__text] = STATE(130), + [aux_sym__inline_repeat1] = STATE(78), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_] = ACTIONS(199), + [anon_sym__] = ACTIONS(202), + [anon_sym_LBRACE_STAR] = ACTIONS(205), + [anon_sym_STAR] = ACTIONS(208), + [anon_sym_BSLASH] = ACTIONS(211), + [sym_quotation_marks] = ACTIONS(202), + [sym_ellipsis] = ACTIONS(202), + [sym_em_dash] = ACTIONS(202), + [sym_en_dash] = ACTIONS(214), + [sym_backslash_escape] = ACTIONS(214), + [anon_sym_LT] = ACTIONS(217), + [anon_sym_LBRACE_EQ] = ACTIONS(220), + [anon_sym_LBRACE_PLUS] = ACTIONS(223), + [anon_sym_LBRACE_DASH] = ACTIONS(226), + [sym_symbol] = ACTIONS(202), + [anon_sym_LBRACE_CARET] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym_LBRACE_TILDE] = ACTIONS(232), + [anon_sym_TILDE] = ACTIONS(232), + [anon_sym_LBRACK_CARET] = ACTIONS(235), + [anon_sym_RBRACK] = ACTIONS(79), + [anon_sym_BANG_LBRACK] = ACTIONS(238), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_LBRACE2] = ACTIONS(214), + [anon_sym_DOLLAR] = ACTIONS(244), + [anon_sym_TODO] = ACTIONS(247), + [anon_sym_WIP] = ACTIONS(247), + [anon_sym_NOTE] = ACTIONS(250), + [anon_sym_INFO] = ACTIONS(250), + [anon_sym_XXX] = ACTIONS(250), + [sym_fixme] = ACTIONS(202), + [anon_sym_PIPE] = ACTIONS(202), + [sym__whitespace1] = ACTIONS(253), + [sym__newline] = ACTIONS(256), + [aux_sym__text_token1] = ACTIONS(259), + [sym__verbatim_begin] = ACTIONS(262), }, - [82] = { - [sym__inline] = STATE(678), + [46] = { + [sym__inline] = STATE(712), [sym__element] = STATE(73), - [sym_emphasis] = STATE(179), - [sym_emphasis_begin] = STATE(111), - [sym_strong] = STATE(179), - [sym_strong_begin] = STATE(112), - [sym__hard_line_break] = STATE(179), - [sym_hard_line_break] = STATE(179), - [sym__smart_punctuation] = STATE(179), - [sym_autolink] = STATE(179), - [sym_highlighted] = STATE(179), - [sym_insert] = STATE(179), - [sym_delete] = STATE(179), - [sym_superscript] = STATE(179), - [sym_subscript] = STATE(179), - [sym_footnote_reference] = STATE(179), - [sym__image] = STATE(179), - [sym_full_reference_image] = STATE(179), - [sym_collapsed_reference_image] = STATE(179), - [sym_inline_image] = STATE(179), - [sym__image_description] = STATE(625), - [sym__link] = STATE(179), - [sym_full_reference_link] = STATE(179), - [sym_collapsed_reference_link] = STATE(179), - [sym_inline_link] = STATE(179), - [sym_link_text] = STATE(647), - [sym__comment_with_spaces] = STATE(179), - [sym_span] = STATE(179), - [sym_raw_inline] = STATE(179), - [sym_math] = STATE(179), - [sym_verbatim] = STATE(179), - [sym__todo_highlights] = STATE(179), - [sym_todo] = STATE(179), - [sym_note] = STATE(179), - [sym__symbol_fallback] = STATE(179), - [aux_sym__text] = STATE(171), + [sym_emphasis] = STATE(180), + [sym_emphasis_begin] = STATE(895), + [sym_strong] = STATE(180), + [sym_strong_begin] = STATE(114), + [sym__hard_line_break] = STATE(180), + [sym_hard_line_break] = STATE(180), + [sym__smart_punctuation] = STATE(180), + [sym_autolink] = STATE(180), + [sym_highlighted] = STATE(180), + [sym_insert] = STATE(180), + [sym_delete] = STATE(180), + [sym_superscript] = STATE(180), + [sym_subscript] = STATE(180), + [sym_footnote_reference] = STATE(180), + [sym__image] = STATE(180), + [sym_full_reference_image] = STATE(180), + [sym_collapsed_reference_image] = STATE(180), + [sym_inline_image] = STATE(180), + [sym__image_description] = STATE(632), + [sym__link] = STATE(180), + [sym_full_reference_link] = STATE(180), + [sym_collapsed_reference_link] = STATE(180), + [sym_inline_link] = STATE(180), + [sym_link_text] = STATE(633), + [sym__comment_with_spaces] = STATE(180), + [sym_span] = STATE(180), + [sym_raw_inline] = STATE(180), + [sym_math] = STATE(180), + [sym_verbatim] = STATE(180), + [sym__todo_highlights] = STATE(180), + [sym_todo] = STATE(180), + [sym_note] = STATE(180), + [sym__symbol_fallback] = STATE(180), + [aux_sym__text] = STATE(132), [aux_sym__inline_repeat1] = STATE(73), - [anon_sym_LBRACE_] = ACTIONS(610), - [anon_sym__] = ACTIONS(612), - [anon_sym_LBRACE_STAR] = ACTIONS(614), - [anon_sym_STAR] = ACTIONS(961), - [anon_sym_BSLASH] = ACTIONS(620), - [sym_quotation_marks] = ACTIONS(622), - [sym_ellipsis] = ACTIONS(622), - [sym_em_dash] = ACTIONS(622), - [sym_en_dash] = ACTIONS(624), - [sym_backslash_escape] = ACTIONS(624), - [anon_sym_LT] = ACTIONS(626), - [anon_sym_LBRACE_EQ] = ACTIONS(628), - [anon_sym_LBRACE_PLUS] = ACTIONS(630), - [anon_sym_LBRACE_DASH] = ACTIONS(632), - [sym_symbol] = ACTIONS(622), - [anon_sym_LBRACE_CARET] = ACTIONS(634), - [anon_sym_CARET] = ACTIONS(634), - [anon_sym_LBRACE_TILDE] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(636), - [anon_sym_LBRACK_CARET] = ACTIONS(638), - [anon_sym_BANG_LBRACK] = ACTIONS(640), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_LBRACE2] = ACTIONS(624), - [anon_sym_DOLLAR] = ACTIONS(644), - [anon_sym_TODO] = ACTIONS(646), - [anon_sym_WIP] = ACTIONS(646), - [anon_sym_NOTE] = ACTIONS(648), - [anon_sym_INFO] = ACTIONS(648), - [anon_sym_XXX] = ACTIONS(648), - [sym_fixme] = ACTIONS(622), - [anon_sym_PIPE] = ACTIONS(622), - [sym__whitespace1] = ACTIONS(963), - [sym__newline] = ACTIONS(965), - [aux_sym__text_token1] = ACTIONS(654), - [sym__verbatim_begin] = ACTIONS(656), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_] = ACTIONS(133), + [anon_sym__] = ACTIONS(136), + [anon_sym_LBRACE_STAR] = ACTIONS(139), + [anon_sym_STAR] = ACTIONS(142), + [anon_sym_BSLASH] = ACTIONS(145), + [sym_quotation_marks] = ACTIONS(136), + [sym_ellipsis] = ACTIONS(136), + [sym_em_dash] = ACTIONS(136), + [sym_en_dash] = ACTIONS(148), + [sym_backslash_escape] = ACTIONS(148), + [anon_sym_LT] = ACTIONS(151), + [anon_sym_LBRACE_EQ] = ACTIONS(154), + [anon_sym_LBRACE_PLUS] = ACTIONS(157), + [anon_sym_LBRACE_DASH] = ACTIONS(160), + [sym_symbol] = ACTIONS(136), + [anon_sym_LBRACE_CARET] = ACTIONS(163), + [anon_sym_CARET] = ACTIONS(163), + [anon_sym_LBRACE_TILDE] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(166), + [anon_sym_LBRACK_CARET] = ACTIONS(169), + [anon_sym_RBRACK] = ACTIONS(79), + [anon_sym_BANG_LBRACK] = ACTIONS(172), + [anon_sym_LBRACK] = ACTIONS(175), + [anon_sym_LBRACE2] = ACTIONS(148), + [anon_sym_DOLLAR] = ACTIONS(178), + [anon_sym_TODO] = ACTIONS(181), + [anon_sym_WIP] = ACTIONS(181), + [anon_sym_NOTE] = ACTIONS(184), + [anon_sym_INFO] = ACTIONS(184), + [anon_sym_XXX] = ACTIONS(184), + [sym_fixme] = ACTIONS(136), + [anon_sym_PIPE] = ACTIONS(136), + [sym__whitespace1] = ACTIONS(187), + [sym__newline] = ACTIONS(190), + [aux_sym__text_token1] = ACTIONS(193), + [sym__verbatim_begin] = ACTIONS(196), }, - [83] = { - [sym__inline] = STATE(797), - [sym__element] = STATE(79), - [sym_emphasis] = STATE(178), - [sym_emphasis_begin] = STATE(115), - [sym_strong] = STATE(178), - [sym_strong_begin] = STATE(117), - [sym__hard_line_break] = STATE(178), - [sym_hard_line_break] = STATE(178), - [sym__smart_punctuation] = STATE(178), - [sym_autolink] = STATE(178), - [sym_highlighted] = STATE(178), - [sym_insert] = STATE(178), - [sym_delete] = STATE(178), - [sym_superscript] = STATE(178), - [sym_subscript] = STATE(178), - [sym_footnote_reference] = STATE(178), - [sym__image] = STATE(178), - [sym_full_reference_image] = STATE(178), - [sym_collapsed_reference_image] = STATE(178), - [sym_inline_image] = STATE(178), - [sym__image_description] = STATE(640), - [sym__link] = STATE(178), - [sym_full_reference_link] = STATE(178), - [sym_collapsed_reference_link] = STATE(178), - [sym_inline_link] = STATE(178), - [sym_link_text] = STATE(636), - [sym__comment_with_spaces] = STATE(178), - [sym_span] = STATE(178), - [sym_raw_inline] = STATE(178), - [sym_math] = STATE(178), - [sym_verbatim] = STATE(178), - [sym__todo_highlights] = STATE(178), - [sym_todo] = STATE(178), - [sym_note] = STATE(178), - [sym__symbol_fallback] = STATE(178), + [47] = { + [sym__inline] = STATE(694), + [sym__element] = STATE(72), + [sym_emphasis] = STATE(163), + [sym_emphasis_begin] = STATE(896), + [sym_strong] = STATE(163), + [sym_strong_begin] = STATE(110), + [sym__hard_line_break] = STATE(163), + [sym_hard_line_break] = STATE(163), + [sym__smart_punctuation] = STATE(163), + [sym_autolink] = STATE(163), + [sym_highlighted] = STATE(163), + [sym_insert] = STATE(163), + [sym_delete] = STATE(163), + [sym_superscript] = STATE(163), + [sym_subscript] = STATE(163), + [sym_footnote_reference] = STATE(163), + [sym__image] = STATE(163), + [sym_full_reference_image] = STATE(163), + [sym_collapsed_reference_image] = STATE(163), + [sym_inline_image] = STATE(163), + [sym__image_description] = STATE(622), + [sym__link] = STATE(163), + [sym_full_reference_link] = STATE(163), + [sym_collapsed_reference_link] = STATE(163), + [sym_inline_link] = STATE(163), + [sym_link_text] = STATE(605), + [sym__comment_with_spaces] = STATE(163), + [sym_span] = STATE(163), + [sym_raw_inline] = STATE(163), + [sym_math] = STATE(163), + [sym_verbatim] = STATE(163), + [sym__todo_highlights] = STATE(163), + [sym_todo] = STATE(163), + [sym_note] = STATE(163), + [sym__symbol_fallback] = STATE(163), [aux_sym__text] = STATE(146), - [aux_sym__inline_repeat1] = STATE(79), - [anon_sym_LBRACE_] = ACTIONS(564), - [anon_sym__] = ACTIONS(566), - [anon_sym_LBRACE_STAR] = ACTIONS(568), - [anon_sym_STAR] = ACTIONS(570), - [anon_sym_BSLASH] = ACTIONS(572), - [sym_quotation_marks] = ACTIONS(574), - [sym_ellipsis] = ACTIONS(574), - [sym_em_dash] = ACTIONS(574), - [sym_en_dash] = ACTIONS(576), - [sym_backslash_escape] = ACTIONS(576), - [anon_sym_LT] = ACTIONS(578), - [anon_sym_LBRACE_EQ] = ACTIONS(580), - [anon_sym_LBRACE_PLUS] = ACTIONS(582), - [anon_sym_LBRACE_DASH] = ACTIONS(584), - [sym_symbol] = ACTIONS(574), - [anon_sym_LBRACE_CARET] = ACTIONS(586), - [anon_sym_CARET] = ACTIONS(586), - [anon_sym_LBRACE_TILDE] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_LBRACK_CARET] = ACTIONS(590), - [anon_sym_BANG_LBRACK] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(594), - [anon_sym_LBRACE2] = ACTIONS(576), - [anon_sym_DOLLAR] = ACTIONS(596), - [anon_sym_TODO] = ACTIONS(598), - [anon_sym_WIP] = ACTIONS(598), - [anon_sym_NOTE] = ACTIONS(600), - [anon_sym_INFO] = ACTIONS(600), - [anon_sym_XXX] = ACTIONS(600), - [sym_fixme] = ACTIONS(574), - [anon_sym_PIPE] = ACTIONS(574), - [sym__whitespace1] = ACTIONS(602), - [sym__newline] = ACTIONS(604), - [aux_sym__text_token1] = ACTIONS(606), - [sym__verbatim_begin] = ACTIONS(608), + [aux_sym__inline_repeat1] = STATE(72), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_] = ACTIONS(331), + [anon_sym__] = ACTIONS(334), + [anon_sym_LBRACE_STAR] = ACTIONS(337), + [anon_sym_STAR] = ACTIONS(340), + [anon_sym_BSLASH] = ACTIONS(343), + [sym_quotation_marks] = ACTIONS(334), + [sym_ellipsis] = ACTIONS(334), + [sym_em_dash] = ACTIONS(334), + [sym_en_dash] = ACTIONS(346), + [sym_backslash_escape] = ACTIONS(346), + [anon_sym_LT] = ACTIONS(349), + [anon_sym_LBRACE_EQ] = ACTIONS(352), + [anon_sym_LBRACE_PLUS] = ACTIONS(355), + [anon_sym_LBRACE_DASH] = ACTIONS(358), + [sym_symbol] = ACTIONS(334), + [anon_sym_LBRACE_CARET] = ACTIONS(361), + [anon_sym_CARET] = ACTIONS(361), + [anon_sym_LBRACE_TILDE] = ACTIONS(364), + [anon_sym_TILDE] = ACTIONS(364), + [anon_sym_LBRACK_CARET] = ACTIONS(367), + [anon_sym_RBRACK] = ACTIONS(79), + [anon_sym_BANG_LBRACK] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(373), + [anon_sym_LBRACE2] = ACTIONS(346), + [anon_sym_DOLLAR] = ACTIONS(376), + [anon_sym_TODO] = ACTIONS(379), + [anon_sym_WIP] = ACTIONS(379), + [anon_sym_NOTE] = ACTIONS(382), + [anon_sym_INFO] = ACTIONS(382), + [anon_sym_XXX] = ACTIONS(382), + [sym_fixme] = ACTIONS(334), + [anon_sym_PIPE] = ACTIONS(334), + [sym__whitespace1] = ACTIONS(385), + [sym__newline] = ACTIONS(388), + [aux_sym__text_token1] = ACTIONS(391), + [sym__verbatim_begin] = ACTIONS(394), }, - [84] = { - [sym__element] = STATE(84), - [sym_emphasis] = STATE(189), - [sym_emphasis_begin] = STATE(108), - [sym_strong] = STATE(189), - [sym_strong_begin] = STATE(109), - [sym__hard_line_break] = STATE(189), - [sym_hard_line_break] = STATE(189), - [sym__smart_punctuation] = STATE(189), - [sym_autolink] = STATE(189), - [sym_highlighted] = STATE(189), - [sym_insert] = STATE(189), - [sym_delete] = STATE(189), - [sym_superscript] = STATE(189), - [sym_subscript] = STATE(189), - [sym_footnote_reference] = STATE(189), - [sym__image] = STATE(189), - [sym_full_reference_image] = STATE(189), - [sym_collapsed_reference_image] = STATE(189), - [sym_inline_image] = STATE(189), - [sym__image_description] = STATE(655), - [sym__link] = STATE(189), - [sym_full_reference_link] = STATE(189), - [sym_collapsed_reference_link] = STATE(189), - [sym_inline_link] = STATE(189), - [sym_link_text] = STATE(626), - [sym__comment_with_spaces] = STATE(189), - [sym_span] = STATE(189), - [sym_raw_inline] = STATE(189), - [sym_math] = STATE(189), - [sym_verbatim] = STATE(189), - [sym__todo_highlights] = STATE(189), - [sym_todo] = STATE(189), - [sym_note] = STATE(189), - [sym__symbol_fallback] = STATE(189), - [aux_sym__text] = STATE(155), - [aux_sym__inline_repeat1] = STATE(84), - [anon_sym_LBRACE_] = ACTIONS(967), - [anon_sym__] = ACTIONS(970), - [aux_sym_emphasis_end_token1] = ACTIONS(670), - [anon_sym_LBRACE_STAR] = ACTIONS(973), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_BSLASH] = ACTIONS(979), - [sym_quotation_marks] = ACTIONS(982), - [sym_ellipsis] = ACTIONS(982), - [sym_em_dash] = ACTIONS(982), - [sym_en_dash] = ACTIONS(985), - [sym_backslash_escape] = ACTIONS(985), - [anon_sym_LT] = ACTIONS(988), - [anon_sym_LBRACE_EQ] = ACTIONS(991), - [anon_sym_LBRACE_PLUS] = ACTIONS(994), - [anon_sym_LBRACE_DASH] = ACTIONS(997), - [sym_symbol] = ACTIONS(982), - [anon_sym_LBRACE_CARET] = ACTIONS(1000), - [anon_sym_CARET] = ACTIONS(1000), - [anon_sym_LBRACE_TILDE] = ACTIONS(1003), - [anon_sym_TILDE] = ACTIONS(1003), - [anon_sym_LBRACK_CARET] = ACTIONS(1006), - [anon_sym_BANG_LBRACK] = ACTIONS(1009), - [anon_sym_LBRACK] = ACTIONS(1012), - [anon_sym_LBRACE2] = ACTIONS(985), - [anon_sym_DOLLAR] = ACTIONS(1015), - [anon_sym_TODO] = ACTIONS(1018), - [anon_sym_WIP] = ACTIONS(1018), - [anon_sym_NOTE] = ACTIONS(1021), - [anon_sym_INFO] = ACTIONS(1021), - [anon_sym_XXX] = ACTIONS(1021), - [sym_fixme] = ACTIONS(982), - [anon_sym_PIPE] = ACTIONS(982), - [sym__whitespace1] = ACTIONS(1024), - [sym__newline] = ACTIONS(1027), - [aux_sym__text_token1] = ACTIONS(1030), - [sym__verbatim_begin] = ACTIONS(1033), + [48] = { + [sym__inline] = STATE(877), + [sym__element] = STATE(97), + [sym_emphasis] = STATE(182), + [sym_emphasis_begin] = STATE(898), + [sym_strong] = STATE(182), + [sym_strong_begin] = STATE(104), + [sym__hard_line_break] = STATE(182), + [sym_hard_line_break] = STATE(182), + [sym__smart_punctuation] = STATE(182), + [sym_autolink] = STATE(182), + [sym_highlighted] = STATE(182), + [sym_insert] = STATE(182), + [sym_delete] = STATE(182), + [sym_superscript] = STATE(182), + [sym_subscript] = STATE(182), + [sym_footnote_reference] = STATE(182), + [sym__image] = STATE(182), + [sym_full_reference_image] = STATE(182), + [sym_collapsed_reference_image] = STATE(182), + [sym_inline_image] = STATE(182), + [sym__image_description] = STATE(610), + [sym__link] = STATE(182), + [sym_full_reference_link] = STATE(182), + [sym_collapsed_reference_link] = STATE(182), + [sym_inline_link] = STATE(182), + [sym_link_text] = STATE(608), + [sym__comment_with_spaces] = STATE(182), + [sym_span] = STATE(182), + [sym_raw_inline] = STATE(182), + [sym_math] = STATE(182), + [sym_verbatim] = STATE(182), + [sym__todo_highlights] = STATE(182), + [sym_todo] = STATE(182), + [sym_note] = STATE(182), + [sym__symbol_fallback] = STATE(182), + [aux_sym__text] = STATE(144), + [aux_sym__inline_repeat1] = STATE(97), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_] = ACTIONS(49), + [anon_sym__] = ACTIONS(52), + [anon_sym_LBRACE_STAR] = ACTIONS(55), + [anon_sym_STAR] = ACTIONS(58), + [anon_sym_BSLASH] = ACTIONS(61), + [sym_quotation_marks] = ACTIONS(52), + [sym_ellipsis] = ACTIONS(52), + [sym_em_dash] = ACTIONS(52), + [sym_en_dash] = ACTIONS(64), + [sym_backslash_escape] = ACTIONS(64), + [anon_sym_LT] = ACTIONS(67), + [anon_sym_LBRACE_EQ] = ACTIONS(70), + [anon_sym_LBRACE_PLUS] = ACTIONS(73), + [anon_sym_LBRACE_DASH] = ACTIONS(76), + [sym_symbol] = ACTIONS(52), + [anon_sym_LBRACE_CARET] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_LBRACE_TILDE] = ACTIONS(84), + [anon_sym_TILDE] = ACTIONS(84), + [anon_sym_LBRACK_CARET] = ACTIONS(87), + [anon_sym_BANG_LBRACK] = ACTIONS(92), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_RBRACK2] = ACTIONS(79), + [anon_sym_LBRACE2] = ACTIONS(64), + [anon_sym_DOLLAR] = ACTIONS(98), + [anon_sym_TODO] = ACTIONS(101), + [anon_sym_WIP] = ACTIONS(101), + [anon_sym_NOTE] = ACTIONS(104), + [anon_sym_INFO] = ACTIONS(104), + [anon_sym_XXX] = ACTIONS(104), + [sym_fixme] = ACTIONS(52), + [anon_sym_PIPE] = ACTIONS(52), + [sym__whitespace1] = ACTIONS(107), + [sym__newline] = ACTIONS(110), + [aux_sym__text_token1] = ACTIONS(113), + [sym__verbatim_begin] = ACTIONS(116), }, - [85] = { - [sym__element] = STATE(88), + [49] = { + [sym__inline] = STATE(696), + [sym__element] = STATE(113), [sym_emphasis] = STATE(175), - [sym_emphasis_begin] = STATE(94), + [sym_emphasis_begin] = STATE(897), [sym_strong] = STATE(175), - [sym_strong_begin] = STATE(95), + [sym_strong_begin] = STATE(108), [sym__hard_line_break] = STATE(175), [sym_hard_line_break] = STATE(175), [sym__smart_punctuation] = STATE(175), @@ -14471,12 +11385,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_full_reference_image] = STATE(175), [sym_collapsed_reference_image] = STATE(175), [sym_inline_image] = STATE(175), - [sym__image_description] = STATE(652), + [sym__image_description] = STATE(626), [sym__link] = STATE(175), [sym_full_reference_link] = STATE(175), [sym_collapsed_reference_link] = STATE(175), [sym_inline_link] = STATE(175), - [sym_link_text] = STATE(649), + [sym_link_text] = STATE(624), [sym__comment_with_spaces] = STATE(175), [sym_span] = STATE(175), [sym_raw_inline] = STATE(175), @@ -14486,199 +11400,281 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(175), [sym_note] = STATE(175), [sym__symbol_fallback] = STATE(175), - [aux_sym__text] = STATE(156), - [aux_sym__inline_repeat1] = STATE(88), - [anon_sym_LBRACE_] = ACTIONS(1036), - [anon_sym__] = ACTIONS(1038), - [anon_sym_LBRACE_STAR] = ACTIONS(1040), - [anon_sym_STAR] = ACTIONS(1042), - [anon_sym_BSLASH] = ACTIONS(1044), - [sym_quotation_marks] = ACTIONS(1046), - [sym_ellipsis] = ACTIONS(1046), - [sym_em_dash] = ACTIONS(1046), - [sym_en_dash] = ACTIONS(1048), - [sym_backslash_escape] = ACTIONS(1048), - [anon_sym_LT] = ACTIONS(1050), - [anon_sym_LBRACE_EQ] = ACTIONS(1052), - [anon_sym_LBRACE_PLUS] = ACTIONS(1054), - [anon_sym_LBRACE_DASH] = ACTIONS(1056), - [sym_symbol] = ACTIONS(1046), - [anon_sym_LBRACE_CARET] = ACTIONS(1058), - [anon_sym_CARET] = ACTIONS(616), - [anon_sym_CARET_RBRACE] = ACTIONS(618), - [anon_sym_LBRACE_TILDE] = ACTIONS(1060), - [anon_sym_TILDE] = ACTIONS(1060), - [anon_sym_LBRACK_CARET] = ACTIONS(1062), - [anon_sym_BANG_LBRACK] = ACTIONS(1064), - [anon_sym_LBRACK] = ACTIONS(1066), - [anon_sym_LBRACE2] = ACTIONS(1048), - [anon_sym_DOLLAR] = ACTIONS(1068), - [anon_sym_TODO] = ACTIONS(1070), - [anon_sym_WIP] = ACTIONS(1070), - [anon_sym_NOTE] = ACTIONS(1072), - [anon_sym_INFO] = ACTIONS(1072), - [anon_sym_XXX] = ACTIONS(1072), - [sym_fixme] = ACTIONS(1046), - [anon_sym_PIPE] = ACTIONS(1046), - [sym__whitespace1] = ACTIONS(1074), - [sym__newline] = ACTIONS(1076), - [aux_sym__text_token1] = ACTIONS(1078), - [sym__verbatim_begin] = ACTIONS(1080), + [aux_sym__text] = STATE(125), + [aux_sym__inline_repeat1] = STATE(113), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_] = ACTIONS(397), + [anon_sym__] = ACTIONS(400), + [anon_sym_LBRACE_STAR] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(406), + [anon_sym_BSLASH] = ACTIONS(409), + [sym_quotation_marks] = ACTIONS(400), + [sym_ellipsis] = ACTIONS(400), + [sym_em_dash] = ACTIONS(400), + [sym_en_dash] = ACTIONS(412), + [sym_backslash_escape] = ACTIONS(412), + [anon_sym_LT] = ACTIONS(415), + [anon_sym_LBRACE_EQ] = ACTIONS(418), + [anon_sym_LBRACE_PLUS] = ACTIONS(421), + [anon_sym_LBRACE_DASH] = ACTIONS(424), + [sym_symbol] = ACTIONS(400), + [anon_sym_LBRACE_CARET] = ACTIONS(427), + [anon_sym_CARET] = ACTIONS(427), + [anon_sym_LBRACE_TILDE] = ACTIONS(430), + [anon_sym_TILDE] = ACTIONS(430), + [anon_sym_LBRACK_CARET] = ACTIONS(433), + [anon_sym_RBRACK] = ACTIONS(79), + [anon_sym_BANG_LBRACK] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(439), + [anon_sym_LBRACE2] = ACTIONS(412), + [anon_sym_DOLLAR] = ACTIONS(442), + [anon_sym_TODO] = ACTIONS(445), + [anon_sym_WIP] = ACTIONS(445), + [anon_sym_NOTE] = ACTIONS(448), + [anon_sym_INFO] = ACTIONS(448), + [anon_sym_XXX] = ACTIONS(448), + [sym_fixme] = ACTIONS(400), + [anon_sym_PIPE] = ACTIONS(400), + [sym__whitespace1] = ACTIONS(451), + [sym__newline] = ACTIONS(454), + [aux_sym__text_token1] = ACTIONS(457), + [sym__verbatim_begin] = ACTIONS(460), }, - [86] = { - [sym__inline] = STATE(673), - [sym__element] = STATE(87), - [sym_emphasis] = STATE(189), - [sym_emphasis_begin] = STATE(108), - [sym_strong] = STATE(189), - [sym_strong_begin] = STATE(109), - [sym__hard_line_break] = STATE(189), - [sym_hard_line_break] = STATE(189), - [sym__smart_punctuation] = STATE(189), - [sym_autolink] = STATE(189), - [sym_highlighted] = STATE(189), - [sym_insert] = STATE(189), - [sym_delete] = STATE(189), - [sym_superscript] = STATE(189), - [sym_subscript] = STATE(189), - [sym_footnote_reference] = STATE(189), - [sym__image] = STATE(189), - [sym_full_reference_image] = STATE(189), - [sym_collapsed_reference_image] = STATE(189), - [sym_inline_image] = STATE(189), - [sym__image_description] = STATE(655), - [sym__link] = STATE(189), - [sym_full_reference_link] = STATE(189), - [sym_collapsed_reference_link] = STATE(189), - [sym_inline_link] = STATE(189), - [sym_link_text] = STATE(626), - [sym__comment_with_spaces] = STATE(189), - [sym_span] = STATE(189), - [sym_raw_inline] = STATE(189), - [sym_math] = STATE(189), - [sym_verbatim] = STATE(189), - [sym__todo_highlights] = STATE(189), - [sym_todo] = STATE(189), - [sym_note] = STATE(189), - [sym__symbol_fallback] = STATE(189), - [aux_sym__text] = STATE(155), - [aux_sym__inline_repeat1] = STATE(87), - [anon_sym_LBRACE_] = ACTIONS(915), - [anon_sym__] = ACTIONS(917), - [anon_sym_LBRACE_STAR] = ACTIONS(919), - [anon_sym_STAR] = ACTIONS(921), - [anon_sym_BSLASH] = ACTIONS(923), - [sym_quotation_marks] = ACTIONS(925), - [sym_ellipsis] = ACTIONS(925), - [sym_em_dash] = ACTIONS(925), - [sym_en_dash] = ACTIONS(927), - [sym_backslash_escape] = ACTIONS(927), - [anon_sym_LT] = ACTIONS(929), - [anon_sym_LBRACE_EQ] = ACTIONS(931), - [anon_sym_LBRACE_PLUS] = ACTIONS(933), - [anon_sym_LBRACE_DASH] = ACTIONS(935), - [sym_symbol] = ACTIONS(925), - [anon_sym_LBRACE_CARET] = ACTIONS(937), - [anon_sym_CARET] = ACTIONS(937), - [anon_sym_LBRACE_TILDE] = ACTIONS(939), - [anon_sym_TILDE] = ACTIONS(939), - [anon_sym_LBRACK_CARET] = ACTIONS(941), - [anon_sym_BANG_LBRACK] = ACTIONS(943), - [anon_sym_LBRACK] = ACTIONS(945), - [anon_sym_LBRACE2] = ACTIONS(927), - [anon_sym_DOLLAR] = ACTIONS(947), - [anon_sym_TODO] = ACTIONS(949), - [anon_sym_WIP] = ACTIONS(949), - [anon_sym_NOTE] = ACTIONS(951), - [anon_sym_INFO] = ACTIONS(951), - [anon_sym_XXX] = ACTIONS(951), - [sym_fixme] = ACTIONS(925), - [anon_sym_PIPE] = ACTIONS(925), - [sym__whitespace1] = ACTIONS(953), - [sym__newline] = ACTIONS(955), - [aux_sym__text_token1] = ACTIONS(957), - [sym__verbatim_begin] = ACTIONS(959), + [50] = { + [sym__inline] = STATE(819), + [sym__element] = STATE(78), + [sym_emphasis] = STATE(167), + [sym_emphasis_begin] = STATE(894), + [sym_strong] = STATE(167), + [sym_strong_begin] = STATE(117), + [sym__hard_line_break] = STATE(167), + [sym_hard_line_break] = STATE(167), + [sym__smart_punctuation] = STATE(167), + [sym_autolink] = STATE(167), + [sym_highlighted] = STATE(167), + [sym_insert] = STATE(167), + [sym_delete] = STATE(167), + [sym_superscript] = STATE(167), + [sym_subscript] = STATE(167), + [sym_footnote_reference] = STATE(167), + [sym__image] = STATE(167), + [sym_full_reference_image] = STATE(167), + [sym_collapsed_reference_image] = STATE(167), + [sym_inline_image] = STATE(167), + [sym__image_description] = STATE(613), + [sym__link] = STATE(167), + [sym_full_reference_link] = STATE(167), + [sym_collapsed_reference_link] = STATE(167), + [sym_inline_link] = STATE(167), + [sym_link_text] = STATE(614), + [sym__comment_with_spaces] = STATE(167), + [sym_span] = STATE(167), + [sym_raw_inline] = STATE(167), + [sym_math] = STATE(167), + [sym_verbatim] = STATE(167), + [sym__todo_highlights] = STATE(167), + [sym_todo] = STATE(167), + [sym_note] = STATE(167), + [sym__symbol_fallback] = STATE(167), + [aux_sym__text] = STATE(130), + [aux_sym__inline_repeat1] = STATE(78), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_] = ACTIONS(199), + [anon_sym__] = ACTIONS(202), + [anon_sym_LBRACE_STAR] = ACTIONS(205), + [anon_sym_STAR] = ACTIONS(208), + [anon_sym_BSLASH] = ACTIONS(211), + [sym_quotation_marks] = ACTIONS(202), + [sym_ellipsis] = ACTIONS(202), + [sym_em_dash] = ACTIONS(202), + [sym_en_dash] = ACTIONS(214), + [sym_backslash_escape] = ACTIONS(214), + [anon_sym_LT] = ACTIONS(217), + [anon_sym_LBRACE_EQ] = ACTIONS(220), + [anon_sym_LBRACE_PLUS] = ACTIONS(223), + [anon_sym_LBRACE_DASH] = ACTIONS(226), + [anon_sym_DASH_RBRACE] = ACTIONS(79), + [sym_symbol] = ACTIONS(202), + [anon_sym_LBRACE_CARET] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym_LBRACE_TILDE] = ACTIONS(232), + [anon_sym_TILDE] = ACTIONS(232), + [anon_sym_LBRACK_CARET] = ACTIONS(235), + [anon_sym_BANG_LBRACK] = ACTIONS(238), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_LBRACE2] = ACTIONS(214), + [anon_sym_DOLLAR] = ACTIONS(244), + [anon_sym_TODO] = ACTIONS(247), + [anon_sym_WIP] = ACTIONS(247), + [anon_sym_NOTE] = ACTIONS(250), + [anon_sym_INFO] = ACTIONS(250), + [anon_sym_XXX] = ACTIONS(250), + [sym_fixme] = ACTIONS(202), + [anon_sym_PIPE] = ACTIONS(202), + [sym__whitespace1] = ACTIONS(253), + [sym__newline] = ACTIONS(256), + [aux_sym__text_token1] = ACTIONS(259), + [sym__verbatim_begin] = ACTIONS(262), }, - [87] = { - [sym__element] = STATE(84), - [sym_emphasis] = STATE(189), - [sym_emphasis_begin] = STATE(108), - [sym_strong] = STATE(189), - [sym_strong_begin] = STATE(109), - [sym__hard_line_break] = STATE(189), - [sym_hard_line_break] = STATE(189), - [sym__smart_punctuation] = STATE(189), - [sym_autolink] = STATE(189), - [sym_highlighted] = STATE(189), - [sym_insert] = STATE(189), - [sym_delete] = STATE(189), - [sym_superscript] = STATE(189), - [sym_subscript] = STATE(189), - [sym_footnote_reference] = STATE(189), - [sym__image] = STATE(189), - [sym_full_reference_image] = STATE(189), - [sym_collapsed_reference_image] = STATE(189), - [sym_inline_image] = STATE(189), - [sym__image_description] = STATE(655), - [sym__link] = STATE(189), - [sym_full_reference_link] = STATE(189), - [sym_collapsed_reference_link] = STATE(189), - [sym_inline_link] = STATE(189), - [sym_link_text] = STATE(626), - [sym__comment_with_spaces] = STATE(189), - [sym_span] = STATE(189), - [sym_raw_inline] = STATE(189), - [sym_math] = STATE(189), - [sym_verbatim] = STATE(189), - [sym__todo_highlights] = STATE(189), - [sym_todo] = STATE(189), - [sym_note] = STATE(189), - [sym__symbol_fallback] = STATE(189), - [aux_sym__text] = STATE(155), - [aux_sym__inline_repeat1] = STATE(84), - [anon_sym_LBRACE_] = ACTIONS(915), - [anon_sym__] = ACTIONS(616), - [aux_sym_emphasis_end_token1] = ACTIONS(618), - [anon_sym_LBRACE_STAR] = ACTIONS(919), - [anon_sym_STAR] = ACTIONS(921), - [anon_sym_BSLASH] = ACTIONS(923), - [sym_quotation_marks] = ACTIONS(925), - [sym_ellipsis] = ACTIONS(925), - [sym_em_dash] = ACTIONS(925), - [sym_en_dash] = ACTIONS(927), - [sym_backslash_escape] = ACTIONS(927), - [anon_sym_LT] = ACTIONS(929), - [anon_sym_LBRACE_EQ] = ACTIONS(931), - [anon_sym_LBRACE_PLUS] = ACTIONS(933), - [anon_sym_LBRACE_DASH] = ACTIONS(935), - [sym_symbol] = ACTIONS(925), - [anon_sym_LBRACE_CARET] = ACTIONS(937), - [anon_sym_CARET] = ACTIONS(937), - [anon_sym_LBRACE_TILDE] = ACTIONS(939), - [anon_sym_TILDE] = ACTIONS(939), - [anon_sym_LBRACK_CARET] = ACTIONS(941), - [anon_sym_BANG_LBRACK] = ACTIONS(943), - [anon_sym_LBRACK] = ACTIONS(945), - [anon_sym_LBRACE2] = ACTIONS(927), - [anon_sym_DOLLAR] = ACTIONS(947), - [anon_sym_TODO] = ACTIONS(949), - [anon_sym_WIP] = ACTIONS(949), - [anon_sym_NOTE] = ACTIONS(951), - [anon_sym_INFO] = ACTIONS(951), - [anon_sym_XXX] = ACTIONS(951), - [sym_fixme] = ACTIONS(925), - [anon_sym_PIPE] = ACTIONS(925), - [sym__whitespace1] = ACTIONS(1082), - [sym__newline] = ACTIONS(1084), - [aux_sym__text_token1] = ACTIONS(957), - [sym__verbatim_begin] = ACTIONS(959), + [51] = { + [sym__inline] = STATE(722), + [sym__element] = STATE(97), + [sym_emphasis] = STATE(182), + [sym_emphasis_begin] = STATE(898), + [sym_strong] = STATE(182), + [sym_strong_begin] = STATE(104), + [sym__hard_line_break] = STATE(182), + [sym_hard_line_break] = STATE(182), + [sym__smart_punctuation] = STATE(182), + [sym_autolink] = STATE(182), + [sym_highlighted] = STATE(182), + [sym_insert] = STATE(182), + [sym_delete] = STATE(182), + [sym_superscript] = STATE(182), + [sym_subscript] = STATE(182), + [sym_footnote_reference] = STATE(182), + [sym__image] = STATE(182), + [sym_full_reference_image] = STATE(182), + [sym_collapsed_reference_image] = STATE(182), + [sym_inline_image] = STATE(182), + [sym__image_description] = STATE(610), + [sym__link] = STATE(182), + [sym_full_reference_link] = STATE(182), + [sym_collapsed_reference_link] = STATE(182), + [sym_inline_link] = STATE(182), + [sym_link_text] = STATE(608), + [sym__comment_with_spaces] = STATE(182), + [sym_span] = STATE(182), + [sym_raw_inline] = STATE(182), + [sym_math] = STATE(182), + [sym_verbatim] = STATE(182), + [sym__todo_highlights] = STATE(182), + [sym_todo] = STATE(182), + [sym_note] = STATE(182), + [sym__symbol_fallback] = STATE(182), + [aux_sym__text] = STATE(144), + [aux_sym__inline_repeat1] = STATE(97), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_] = ACTIONS(49), + [anon_sym__] = ACTIONS(52), + [anon_sym_LBRACE_STAR] = ACTIONS(55), + [anon_sym_STAR] = ACTIONS(58), + [anon_sym_BSLASH] = ACTIONS(61), + [sym_quotation_marks] = ACTIONS(52), + [sym_ellipsis] = ACTIONS(52), + [sym_em_dash] = ACTIONS(52), + [sym_en_dash] = ACTIONS(64), + [sym_backslash_escape] = ACTIONS(64), + [anon_sym_LT] = ACTIONS(67), + [anon_sym_LBRACE_EQ] = ACTIONS(70), + [anon_sym_LBRACE_PLUS] = ACTIONS(73), + [anon_sym_LBRACE_DASH] = ACTIONS(76), + [sym_symbol] = ACTIONS(52), + [anon_sym_LBRACE_CARET] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_LBRACE_TILDE] = ACTIONS(84), + [anon_sym_TILDE] = ACTIONS(84), + [anon_sym_LBRACK_CARET] = ACTIONS(87), + [anon_sym_RBRACK] = ACTIONS(493), + [anon_sym_BANG_LBRACK] = ACTIONS(92), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACE2] = ACTIONS(64), + [anon_sym_DOLLAR] = ACTIONS(98), + [anon_sym_TODO] = ACTIONS(101), + [anon_sym_WIP] = ACTIONS(101), + [anon_sym_NOTE] = ACTIONS(104), + [anon_sym_INFO] = ACTIONS(104), + [anon_sym_XXX] = ACTIONS(104), + [sym_fixme] = ACTIONS(52), + [anon_sym_PIPE] = ACTIONS(52), + [sym__whitespace1] = ACTIONS(107), + [sym__newline] = ACTIONS(110), + [aux_sym__text_token1] = ACTIONS(113), + [sym__verbatim_begin] = ACTIONS(116), }, - [88] = { - [sym__element] = STATE(88), + [52] = { + [sym__inline] = STATE(850), + [sym__element] = STATE(97), + [sym_emphasis] = STATE(182), + [sym_emphasis_begin] = STATE(898), + [sym_strong] = STATE(182), + [sym_strong_begin] = STATE(104), + [sym__hard_line_break] = STATE(182), + [sym_hard_line_break] = STATE(182), + [sym__smart_punctuation] = STATE(182), + [sym_autolink] = STATE(182), + [sym_highlighted] = STATE(182), + [sym_insert] = STATE(182), + [sym_delete] = STATE(182), + [sym_superscript] = STATE(182), + [sym_subscript] = STATE(182), + [sym_footnote_reference] = STATE(182), + [sym__image] = STATE(182), + [sym_full_reference_image] = STATE(182), + [sym_collapsed_reference_image] = STATE(182), + [sym_inline_image] = STATE(182), + [sym__image_description] = STATE(610), + [sym__link] = STATE(182), + [sym_full_reference_link] = STATE(182), + [sym_collapsed_reference_link] = STATE(182), + [sym_inline_link] = STATE(182), + [sym_link_text] = STATE(608), + [sym__comment_with_spaces] = STATE(182), + [sym_span] = STATE(182), + [sym_raw_inline] = STATE(182), + [sym_math] = STATE(182), + [sym_verbatim] = STATE(182), + [sym__todo_highlights] = STATE(182), + [sym_todo] = STATE(182), + [sym_note] = STATE(182), + [sym__symbol_fallback] = STATE(182), + [aux_sym__text] = STATE(144), + [aux_sym__inline_repeat1] = STATE(97), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_] = ACTIONS(49), + [anon_sym__] = ACTIONS(52), + [anon_sym_LBRACE_STAR] = ACTIONS(55), + [anon_sym_STAR] = ACTIONS(58), + [anon_sym_BSLASH] = ACTIONS(61), + [sym_quotation_marks] = ACTIONS(52), + [sym_ellipsis] = ACTIONS(52), + [sym_em_dash] = ACTIONS(52), + [sym_en_dash] = ACTIONS(64), + [sym_backslash_escape] = ACTIONS(64), + [anon_sym_LT] = ACTIONS(67), + [anon_sym_LBRACE_EQ] = ACTIONS(70), + [anon_sym_LBRACE_PLUS] = ACTIONS(73), + [anon_sym_LBRACE_DASH] = ACTIONS(76), + [sym_symbol] = ACTIONS(52), + [anon_sym_LBRACE_CARET] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_LBRACE_TILDE] = ACTIONS(84), + [anon_sym_TILDE] = ACTIONS(84), + [anon_sym_LBRACK_CARET] = ACTIONS(87), + [anon_sym_RBRACK] = ACTIONS(79), + [anon_sym_BANG_LBRACK] = ACTIONS(92), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACE2] = ACTIONS(64), + [anon_sym_DOLLAR] = ACTIONS(98), + [anon_sym_TODO] = ACTIONS(101), + [anon_sym_WIP] = ACTIONS(101), + [anon_sym_NOTE] = ACTIONS(104), + [anon_sym_INFO] = ACTIONS(104), + [anon_sym_XXX] = ACTIONS(104), + [sym_fixme] = ACTIONS(52), + [anon_sym_PIPE] = ACTIONS(52), + [sym__whitespace1] = ACTIONS(107), + [sym__newline] = ACTIONS(110), + [aux_sym__text_token1] = ACTIONS(113), + [sym__verbatim_begin] = ACTIONS(116), + }, + [53] = { + [sym__inline] = STATE(665), + [sym__element] = STATE(113), [sym_emphasis] = STATE(175), - [sym_emphasis_begin] = STATE(94), + [sym_emphasis_begin] = STATE(897), [sym_strong] = STATE(175), - [sym_strong_begin] = STATE(95), + [sym_strong_begin] = STATE(108), [sym__hard_line_break] = STATE(175), [sym_hard_line_break] = STATE(175), [sym__smart_punctuation] = STATE(175), @@ -14693,12 +11689,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_full_reference_image] = STATE(175), [sym_collapsed_reference_image] = STATE(175), [sym_inline_image] = STATE(175), - [sym__image_description] = STATE(652), + [sym__image_description] = STATE(626), [sym__link] = STATE(175), [sym_full_reference_link] = STATE(175), [sym_collapsed_reference_link] = STATE(175), [sym_inline_link] = STATE(175), - [sym_link_text] = STATE(649), + [sym_link_text] = STATE(624), [sym__comment_with_spaces] = STATE(175), [sym_span] = STATE(175), [sym_raw_inline] = STATE(175), @@ -14708,2197 +11704,357 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(175), [sym_note] = STATE(175), [sym__symbol_fallback] = STATE(175), - [aux_sym__text] = STATE(156), - [aux_sym__inline_repeat1] = STATE(88), - [anon_sym_LBRACE_] = ACTIONS(1086), - [anon_sym__] = ACTIONS(1089), - [anon_sym_LBRACE_STAR] = ACTIONS(1092), - [anon_sym_STAR] = ACTIONS(1095), - [anon_sym_BSLASH] = ACTIONS(1098), - [sym_quotation_marks] = ACTIONS(1101), - [sym_ellipsis] = ACTIONS(1101), - [sym_em_dash] = ACTIONS(1101), - [sym_en_dash] = ACTIONS(1104), - [sym_backslash_escape] = ACTIONS(1104), - [anon_sym_LT] = ACTIONS(1107), - [anon_sym_LBRACE_EQ] = ACTIONS(1110), - [anon_sym_LBRACE_PLUS] = ACTIONS(1113), - [anon_sym_LBRACE_DASH] = ACTIONS(1116), - [sym_symbol] = ACTIONS(1101), - [anon_sym_LBRACE_CARET] = ACTIONS(1119), - [anon_sym_CARET] = ACTIONS(1122), - [anon_sym_CARET_RBRACE] = ACTIONS(670), - [anon_sym_LBRACE_TILDE] = ACTIONS(1125), - [anon_sym_TILDE] = ACTIONS(1125), - [anon_sym_LBRACK_CARET] = ACTIONS(1128), - [anon_sym_BANG_LBRACK] = ACTIONS(1131), - [anon_sym_LBRACK] = ACTIONS(1134), - [anon_sym_LBRACE2] = ACTIONS(1104), - [anon_sym_DOLLAR] = ACTIONS(1137), - [anon_sym_TODO] = ACTIONS(1140), - [anon_sym_WIP] = ACTIONS(1140), - [anon_sym_NOTE] = ACTIONS(1143), - [anon_sym_INFO] = ACTIONS(1143), - [anon_sym_XXX] = ACTIONS(1143), - [sym_fixme] = ACTIONS(1101), - [anon_sym_PIPE] = ACTIONS(1101), - [sym__whitespace1] = ACTIONS(1146), - [sym__newline] = ACTIONS(1149), - [aux_sym__text_token1] = ACTIONS(1152), - [sym__verbatim_begin] = ACTIONS(1155), - }, - [89] = { - [sym__inline] = STATE(672), - [sym__element] = STATE(73), - [sym_emphasis] = STATE(179), - [sym_emphasis_begin] = STATE(111), - [sym_strong] = STATE(179), - [sym_strong_begin] = STATE(112), - [sym__hard_line_break] = STATE(179), - [sym_hard_line_break] = STATE(179), - [sym__smart_punctuation] = STATE(179), - [sym_autolink] = STATE(179), - [sym_highlighted] = STATE(179), - [sym_insert] = STATE(179), - [sym_delete] = STATE(179), - [sym_superscript] = STATE(179), - [sym_subscript] = STATE(179), - [sym_footnote_reference] = STATE(179), - [sym__image] = STATE(179), - [sym_full_reference_image] = STATE(179), - [sym_collapsed_reference_image] = STATE(179), - [sym_inline_image] = STATE(179), - [sym__image_description] = STATE(625), - [sym__link] = STATE(179), - [sym_full_reference_link] = STATE(179), - [sym_collapsed_reference_link] = STATE(179), - [sym_inline_link] = STATE(179), - [sym_link_text] = STATE(647), - [sym__comment_with_spaces] = STATE(179), - [sym_span] = STATE(179), - [sym_raw_inline] = STATE(179), - [sym_math] = STATE(179), - [sym_verbatim] = STATE(179), - [sym__todo_highlights] = STATE(179), - [sym_todo] = STATE(179), - [sym_note] = STATE(179), - [sym__symbol_fallback] = STATE(179), - [aux_sym__text] = STATE(171), - [aux_sym__inline_repeat1] = STATE(73), - [anon_sym_LBRACE_] = ACTIONS(610), - [anon_sym__] = ACTIONS(612), - [anon_sym_LBRACE_STAR] = ACTIONS(614), - [anon_sym_STAR] = ACTIONS(961), - [anon_sym_BSLASH] = ACTIONS(620), - [sym_quotation_marks] = ACTIONS(622), - [sym_ellipsis] = ACTIONS(622), - [sym_em_dash] = ACTIONS(622), - [sym_en_dash] = ACTIONS(624), - [sym_backslash_escape] = ACTIONS(624), - [anon_sym_LT] = ACTIONS(626), - [anon_sym_LBRACE_EQ] = ACTIONS(628), - [anon_sym_LBRACE_PLUS] = ACTIONS(630), - [anon_sym_LBRACE_DASH] = ACTIONS(632), - [sym_symbol] = ACTIONS(622), - [anon_sym_LBRACE_CARET] = ACTIONS(634), - [anon_sym_CARET] = ACTIONS(634), - [anon_sym_LBRACE_TILDE] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(636), - [anon_sym_LBRACK_CARET] = ACTIONS(638), - [anon_sym_BANG_LBRACK] = ACTIONS(640), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_LBRACE2] = ACTIONS(624), - [anon_sym_DOLLAR] = ACTIONS(644), - [anon_sym_TODO] = ACTIONS(646), - [anon_sym_WIP] = ACTIONS(646), - [anon_sym_NOTE] = ACTIONS(648), - [anon_sym_INFO] = ACTIONS(648), - [anon_sym_XXX] = ACTIONS(648), - [sym_fixme] = ACTIONS(622), - [anon_sym_PIPE] = ACTIONS(622), - [sym__whitespace1] = ACTIONS(963), - [sym__newline] = ACTIONS(965), - [aux_sym__text_token1] = ACTIONS(654), - [sym__verbatim_begin] = ACTIONS(656), - }, - [90] = { - [sym__inline] = STATE(768), - [sym__element] = STATE(79), - [sym_emphasis] = STATE(178), - [sym_emphasis_begin] = STATE(115), - [sym_strong] = STATE(178), - [sym_strong_begin] = STATE(117), - [sym__hard_line_break] = STATE(178), - [sym_hard_line_break] = STATE(178), - [sym__smart_punctuation] = STATE(178), - [sym_autolink] = STATE(178), - [sym_highlighted] = STATE(178), - [sym_insert] = STATE(178), - [sym_delete] = STATE(178), - [sym_superscript] = STATE(178), - [sym_subscript] = STATE(178), - [sym_footnote_reference] = STATE(178), - [sym__image] = STATE(178), - [sym_full_reference_image] = STATE(178), - [sym_collapsed_reference_image] = STATE(178), - [sym_inline_image] = STATE(178), - [sym__image_description] = STATE(640), - [sym__link] = STATE(178), - [sym_full_reference_link] = STATE(178), - [sym_collapsed_reference_link] = STATE(178), - [sym_inline_link] = STATE(178), - [sym_link_text] = STATE(636), - [sym__comment_with_spaces] = STATE(178), - [sym_span] = STATE(178), - [sym_raw_inline] = STATE(178), - [sym_math] = STATE(178), - [sym_verbatim] = STATE(178), - [sym__todo_highlights] = STATE(178), - [sym_todo] = STATE(178), - [sym_note] = STATE(178), - [sym__symbol_fallback] = STATE(178), - [aux_sym__text] = STATE(146), - [aux_sym__inline_repeat1] = STATE(79), - [anon_sym_LBRACE_] = ACTIONS(564), - [anon_sym__] = ACTIONS(566), - [anon_sym_LBRACE_STAR] = ACTIONS(568), - [anon_sym_STAR] = ACTIONS(570), - [anon_sym_BSLASH] = ACTIONS(572), - [sym_quotation_marks] = ACTIONS(574), - [sym_ellipsis] = ACTIONS(574), - [sym_em_dash] = ACTIONS(574), - [sym_en_dash] = ACTIONS(576), - [sym_backslash_escape] = ACTIONS(576), - [anon_sym_LT] = ACTIONS(578), - [anon_sym_LBRACE_EQ] = ACTIONS(580), - [anon_sym_LBRACE_PLUS] = ACTIONS(582), - [anon_sym_LBRACE_DASH] = ACTIONS(584), - [sym_symbol] = ACTIONS(574), - [anon_sym_LBRACE_CARET] = ACTIONS(586), - [anon_sym_CARET] = ACTIONS(586), - [anon_sym_LBRACE_TILDE] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_LBRACK_CARET] = ACTIONS(590), - [anon_sym_BANG_LBRACK] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(594), - [anon_sym_LBRACE2] = ACTIONS(576), - [anon_sym_DOLLAR] = ACTIONS(596), - [anon_sym_TODO] = ACTIONS(598), - [anon_sym_WIP] = ACTIONS(598), - [anon_sym_NOTE] = ACTIONS(600), - [anon_sym_INFO] = ACTIONS(600), - [anon_sym_XXX] = ACTIONS(600), - [sym_fixme] = ACTIONS(574), - [anon_sym_PIPE] = ACTIONS(574), - [sym__whitespace1] = ACTIONS(602), - [sym__newline] = ACTIONS(604), - [aux_sym__text_token1] = ACTIONS(606), - [sym__verbatim_begin] = ACTIONS(608), - }, - [91] = { - [sym__inline] = STATE(668), - [sym__element] = STATE(87), - [sym_emphasis] = STATE(189), - [sym_emphasis_begin] = STATE(108), - [sym_strong] = STATE(189), - [sym_strong_begin] = STATE(109), - [sym__hard_line_break] = STATE(189), - [sym_hard_line_break] = STATE(189), - [sym__smart_punctuation] = STATE(189), - [sym_autolink] = STATE(189), - [sym_highlighted] = STATE(189), - [sym_insert] = STATE(189), - [sym_delete] = STATE(189), - [sym_superscript] = STATE(189), - [sym_subscript] = STATE(189), - [sym_footnote_reference] = STATE(189), - [sym__image] = STATE(189), - [sym_full_reference_image] = STATE(189), - [sym_collapsed_reference_image] = STATE(189), - [sym_inline_image] = STATE(189), - [sym__image_description] = STATE(655), - [sym__link] = STATE(189), - [sym_full_reference_link] = STATE(189), - [sym_collapsed_reference_link] = STATE(189), - [sym_inline_link] = STATE(189), - [sym_link_text] = STATE(626), - [sym__comment_with_spaces] = STATE(189), - [sym_span] = STATE(189), - [sym_raw_inline] = STATE(189), - [sym_math] = STATE(189), - [sym_verbatim] = STATE(189), - [sym__todo_highlights] = STATE(189), - [sym_todo] = STATE(189), - [sym_note] = STATE(189), - [sym__symbol_fallback] = STATE(189), - [aux_sym__text] = STATE(155), - [aux_sym__inline_repeat1] = STATE(87), - [anon_sym_LBRACE_] = ACTIONS(915), - [anon_sym__] = ACTIONS(917), - [anon_sym_LBRACE_STAR] = ACTIONS(919), - [anon_sym_STAR] = ACTIONS(921), - [anon_sym_BSLASH] = ACTIONS(923), - [sym_quotation_marks] = ACTIONS(925), - [sym_ellipsis] = ACTIONS(925), - [sym_em_dash] = ACTIONS(925), - [sym_en_dash] = ACTIONS(927), - [sym_backslash_escape] = ACTIONS(927), - [anon_sym_LT] = ACTIONS(929), - [anon_sym_LBRACE_EQ] = ACTIONS(931), - [anon_sym_LBRACE_PLUS] = ACTIONS(933), - [anon_sym_LBRACE_DASH] = ACTIONS(935), - [sym_symbol] = ACTIONS(925), - [anon_sym_LBRACE_CARET] = ACTIONS(937), - [anon_sym_CARET] = ACTIONS(937), - [anon_sym_LBRACE_TILDE] = ACTIONS(939), - [anon_sym_TILDE] = ACTIONS(939), - [anon_sym_LBRACK_CARET] = ACTIONS(941), - [anon_sym_BANG_LBRACK] = ACTIONS(943), - [anon_sym_LBRACK] = ACTIONS(945), - [anon_sym_LBRACE2] = ACTIONS(927), - [anon_sym_DOLLAR] = ACTIONS(947), - [anon_sym_TODO] = ACTIONS(949), - [anon_sym_WIP] = ACTIONS(949), - [anon_sym_NOTE] = ACTIONS(951), - [anon_sym_INFO] = ACTIONS(951), - [anon_sym_XXX] = ACTIONS(951), - [sym_fixme] = ACTIONS(925), - [anon_sym_PIPE] = ACTIONS(925), - [sym__whitespace1] = ACTIONS(953), - [sym__newline] = ACTIONS(955), - [aux_sym__text_token1] = ACTIONS(957), - [sym__verbatim_begin] = ACTIONS(959), + [aux_sym__text] = STATE(125), + [aux_sym__inline_repeat1] = STATE(113), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_] = ACTIONS(397), + [anon_sym__] = ACTIONS(400), + [anon_sym_LBRACE_STAR] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(406), + [anon_sym_BSLASH] = ACTIONS(409), + [sym_quotation_marks] = ACTIONS(400), + [sym_ellipsis] = ACTIONS(400), + [sym_em_dash] = ACTIONS(400), + [sym_en_dash] = ACTIONS(412), + [sym_backslash_escape] = ACTIONS(412), + [anon_sym_LT] = ACTIONS(415), + [anon_sym_LBRACE_EQ] = ACTIONS(418), + [anon_sym_LBRACE_PLUS] = ACTIONS(421), + [anon_sym_LBRACE_DASH] = ACTIONS(424), + [sym_symbol] = ACTIONS(400), + [anon_sym_LBRACE_CARET] = ACTIONS(427), + [anon_sym_CARET] = ACTIONS(427), + [anon_sym_LBRACE_TILDE] = ACTIONS(430), + [anon_sym_TILDE] = ACTIONS(430), + [anon_sym_LBRACK_CARET] = ACTIONS(433), + [anon_sym_BANG_LBRACK] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(439), + [anon_sym_RBRACK2] = ACTIONS(79), + [anon_sym_LBRACE2] = ACTIONS(412), + [anon_sym_DOLLAR] = ACTIONS(442), + [anon_sym_TODO] = ACTIONS(445), + [anon_sym_WIP] = ACTIONS(445), + [anon_sym_NOTE] = ACTIONS(448), + [anon_sym_INFO] = ACTIONS(448), + [anon_sym_XXX] = ACTIONS(448), + [sym_fixme] = ACTIONS(400), + [anon_sym_PIPE] = ACTIONS(400), + [sym__whitespace1] = ACTIONS(451), + [sym__newline] = ACTIONS(454), + [aux_sym__text_token1] = ACTIONS(457), + [sym__verbatim_begin] = ACTIONS(460), }, - [92] = { + [54] = { [sym__inline] = STATE(667), - [sym__element] = STATE(73), - [sym_emphasis] = STATE(179), - [sym_emphasis_begin] = STATE(111), - [sym_strong] = STATE(179), - [sym_strong_begin] = STATE(112), - [sym__hard_line_break] = STATE(179), - [sym_hard_line_break] = STATE(179), - [sym__smart_punctuation] = STATE(179), - [sym_autolink] = STATE(179), - [sym_highlighted] = STATE(179), - [sym_insert] = STATE(179), - [sym_delete] = STATE(179), - [sym_superscript] = STATE(179), - [sym_subscript] = STATE(179), - [sym_footnote_reference] = STATE(179), - [sym__image] = STATE(179), - [sym_full_reference_image] = STATE(179), - [sym_collapsed_reference_image] = STATE(179), - [sym_inline_image] = STATE(179), - [sym__image_description] = STATE(625), - [sym__link] = STATE(179), - [sym_full_reference_link] = STATE(179), - [sym_collapsed_reference_link] = STATE(179), - [sym_inline_link] = STATE(179), - [sym_link_text] = STATE(647), - [sym__comment_with_spaces] = STATE(179), - [sym_span] = STATE(179), - [sym_raw_inline] = STATE(179), - [sym_math] = STATE(179), - [sym_verbatim] = STATE(179), - [sym__todo_highlights] = STATE(179), - [sym_todo] = STATE(179), - [sym_note] = STATE(179), - [sym__symbol_fallback] = STATE(179), - [aux_sym__text] = STATE(171), - [aux_sym__inline_repeat1] = STATE(73), - [anon_sym_LBRACE_] = ACTIONS(610), - [anon_sym__] = ACTIONS(612), - [anon_sym_LBRACE_STAR] = ACTIONS(614), - [anon_sym_STAR] = ACTIONS(961), - [anon_sym_BSLASH] = ACTIONS(620), - [sym_quotation_marks] = ACTIONS(622), - [sym_ellipsis] = ACTIONS(622), - [sym_em_dash] = ACTIONS(622), - [sym_en_dash] = ACTIONS(624), - [sym_backslash_escape] = ACTIONS(624), - [anon_sym_LT] = ACTIONS(626), - [anon_sym_LBRACE_EQ] = ACTIONS(628), - [anon_sym_LBRACE_PLUS] = ACTIONS(630), - [anon_sym_LBRACE_DASH] = ACTIONS(632), - [sym_symbol] = ACTIONS(622), - [anon_sym_LBRACE_CARET] = ACTIONS(634), - [anon_sym_CARET] = ACTIONS(634), - [anon_sym_LBRACE_TILDE] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(636), - [anon_sym_LBRACK_CARET] = ACTIONS(638), - [anon_sym_BANG_LBRACK] = ACTIONS(640), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_LBRACE2] = ACTIONS(624), - [anon_sym_DOLLAR] = ACTIONS(644), - [anon_sym_TODO] = ACTIONS(646), - [anon_sym_WIP] = ACTIONS(646), - [anon_sym_NOTE] = ACTIONS(648), - [anon_sym_INFO] = ACTIONS(648), - [anon_sym_XXX] = ACTIONS(648), - [sym_fixme] = ACTIONS(622), - [anon_sym_PIPE] = ACTIONS(622), - [sym__whitespace1] = ACTIONS(963), - [sym__newline] = ACTIONS(965), - [aux_sym__text_token1] = ACTIONS(654), - [sym__verbatim_begin] = ACTIONS(656), - }, - [93] = { - [sym__inline] = STATE(732), - [sym__element] = STATE(79), - [sym_emphasis] = STATE(178), - [sym_emphasis_begin] = STATE(115), - [sym_strong] = STATE(178), - [sym_strong_begin] = STATE(117), - [sym__hard_line_break] = STATE(178), - [sym_hard_line_break] = STATE(178), - [sym__smart_punctuation] = STATE(178), - [sym_autolink] = STATE(178), - [sym_highlighted] = STATE(178), - [sym_insert] = STATE(178), - [sym_delete] = STATE(178), - [sym_superscript] = STATE(178), - [sym_subscript] = STATE(178), - [sym_footnote_reference] = STATE(178), - [sym__image] = STATE(178), - [sym_full_reference_image] = STATE(178), - [sym_collapsed_reference_image] = STATE(178), - [sym_inline_image] = STATE(178), - [sym__image_description] = STATE(640), - [sym__link] = STATE(178), - [sym_full_reference_link] = STATE(178), - [sym_collapsed_reference_link] = STATE(178), - [sym_inline_link] = STATE(178), - [sym_link_text] = STATE(636), - [sym__comment_with_spaces] = STATE(178), - [sym_span] = STATE(178), - [sym_raw_inline] = STATE(178), - [sym_math] = STATE(178), - [sym_verbatim] = STATE(178), - [sym__todo_highlights] = STATE(178), - [sym_todo] = STATE(178), - [sym_note] = STATE(178), - [sym__symbol_fallback] = STATE(178), + [sym__element] = STATE(72), + [sym_emphasis] = STATE(163), + [sym_emphasis_begin] = STATE(896), + [sym_strong] = STATE(163), + [sym_strong_begin] = STATE(110), + [sym__hard_line_break] = STATE(163), + [sym_hard_line_break] = STATE(163), + [sym__smart_punctuation] = STATE(163), + [sym_autolink] = STATE(163), + [sym_highlighted] = STATE(163), + [sym_insert] = STATE(163), + [sym_delete] = STATE(163), + [sym_superscript] = STATE(163), + [sym_subscript] = STATE(163), + [sym_footnote_reference] = STATE(163), + [sym__image] = STATE(163), + [sym_full_reference_image] = STATE(163), + [sym_collapsed_reference_image] = STATE(163), + [sym_inline_image] = STATE(163), + [sym__image_description] = STATE(622), + [sym__link] = STATE(163), + [sym_full_reference_link] = STATE(163), + [sym_collapsed_reference_link] = STATE(163), + [sym_inline_link] = STATE(163), + [sym_link_text] = STATE(605), + [sym__comment_with_spaces] = STATE(163), + [sym_span] = STATE(163), + [sym_raw_inline] = STATE(163), + [sym_math] = STATE(163), + [sym_verbatim] = STATE(163), + [sym__todo_highlights] = STATE(163), + [sym_todo] = STATE(163), + [sym_note] = STATE(163), + [sym__symbol_fallback] = STATE(163), [aux_sym__text] = STATE(146), - [aux_sym__inline_repeat1] = STATE(79), - [anon_sym_LBRACE_] = ACTIONS(564), - [anon_sym__] = ACTIONS(566), - [anon_sym_LBRACE_STAR] = ACTIONS(568), - [anon_sym_STAR] = ACTIONS(570), - [anon_sym_BSLASH] = ACTIONS(572), - [sym_quotation_marks] = ACTIONS(574), - [sym_ellipsis] = ACTIONS(574), - [sym_em_dash] = ACTIONS(574), - [sym_en_dash] = ACTIONS(576), - [sym_backslash_escape] = ACTIONS(576), - [anon_sym_LT] = ACTIONS(578), - [anon_sym_LBRACE_EQ] = ACTIONS(580), - [anon_sym_LBRACE_PLUS] = ACTIONS(582), - [anon_sym_LBRACE_DASH] = ACTIONS(584), - [sym_symbol] = ACTIONS(574), - [anon_sym_LBRACE_CARET] = ACTIONS(586), - [anon_sym_CARET] = ACTIONS(586), - [anon_sym_LBRACE_TILDE] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_LBRACK_CARET] = ACTIONS(590), - [anon_sym_BANG_LBRACK] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(594), - [anon_sym_LBRACE2] = ACTIONS(576), - [anon_sym_DOLLAR] = ACTIONS(596), - [anon_sym_TODO] = ACTIONS(598), - [anon_sym_WIP] = ACTIONS(598), - [anon_sym_NOTE] = ACTIONS(600), - [anon_sym_INFO] = ACTIONS(600), - [anon_sym_XXX] = ACTIONS(600), - [sym_fixme] = ACTIONS(574), - [anon_sym_PIPE] = ACTIONS(574), - [sym__whitespace1] = ACTIONS(602), - [sym__newline] = ACTIONS(604), - [aux_sym__text_token1] = ACTIONS(606), - [sym__verbatim_begin] = ACTIONS(608), - }, - [94] = { - [sym__inline] = STATE(674), - [sym__element] = STATE(87), - [sym_emphasis] = STATE(189), - [sym_emphasis_begin] = STATE(108), - [sym_strong] = STATE(189), - [sym_strong_begin] = STATE(109), - [sym__hard_line_break] = STATE(189), - [sym_hard_line_break] = STATE(189), - [sym__smart_punctuation] = STATE(189), - [sym_autolink] = STATE(189), - [sym_highlighted] = STATE(189), - [sym_insert] = STATE(189), - [sym_delete] = STATE(189), - [sym_superscript] = STATE(189), - [sym_subscript] = STATE(189), - [sym_footnote_reference] = STATE(189), - [sym__image] = STATE(189), - [sym_full_reference_image] = STATE(189), - [sym_collapsed_reference_image] = STATE(189), - [sym_inline_image] = STATE(189), - [sym__image_description] = STATE(655), - [sym__link] = STATE(189), - [sym_full_reference_link] = STATE(189), - [sym_collapsed_reference_link] = STATE(189), - [sym_inline_link] = STATE(189), - [sym_link_text] = STATE(626), - [sym__comment_with_spaces] = STATE(189), - [sym_span] = STATE(189), - [sym_raw_inline] = STATE(189), - [sym_math] = STATE(189), - [sym_verbatim] = STATE(189), - [sym__todo_highlights] = STATE(189), - [sym_todo] = STATE(189), - [sym_note] = STATE(189), - [sym__symbol_fallback] = STATE(189), - [aux_sym__text] = STATE(155), - [aux_sym__inline_repeat1] = STATE(87), - [anon_sym_LBRACE_] = ACTIONS(915), - [anon_sym__] = ACTIONS(917), - [anon_sym_LBRACE_STAR] = ACTIONS(919), - [anon_sym_STAR] = ACTIONS(921), - [anon_sym_BSLASH] = ACTIONS(923), - [sym_quotation_marks] = ACTIONS(925), - [sym_ellipsis] = ACTIONS(925), - [sym_em_dash] = ACTIONS(925), - [sym_en_dash] = ACTIONS(927), - [sym_backslash_escape] = ACTIONS(927), - [anon_sym_LT] = ACTIONS(929), - [anon_sym_LBRACE_EQ] = ACTIONS(931), - [anon_sym_LBRACE_PLUS] = ACTIONS(933), - [anon_sym_LBRACE_DASH] = ACTIONS(935), - [sym_symbol] = ACTIONS(925), - [anon_sym_LBRACE_CARET] = ACTIONS(937), - [anon_sym_CARET] = ACTIONS(937), - [anon_sym_LBRACE_TILDE] = ACTIONS(939), - [anon_sym_TILDE] = ACTIONS(939), - [anon_sym_LBRACK_CARET] = ACTIONS(941), - [anon_sym_BANG_LBRACK] = ACTIONS(943), - [anon_sym_LBRACK] = ACTIONS(945), - [anon_sym_LBRACE2] = ACTIONS(927), - [anon_sym_DOLLAR] = ACTIONS(947), - [anon_sym_TODO] = ACTIONS(949), - [anon_sym_WIP] = ACTIONS(949), - [anon_sym_NOTE] = ACTIONS(951), - [anon_sym_INFO] = ACTIONS(951), - [anon_sym_XXX] = ACTIONS(951), - [sym_fixme] = ACTIONS(925), - [anon_sym_PIPE] = ACTIONS(925), - [sym__whitespace1] = ACTIONS(953), - [sym__newline] = ACTIONS(955), - [aux_sym__text_token1] = ACTIONS(957), - [sym__verbatim_begin] = ACTIONS(959), + [aux_sym__inline_repeat1] = STATE(72), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_] = ACTIONS(331), + [anon_sym__] = ACTIONS(334), + [anon_sym_LBRACE_STAR] = ACTIONS(337), + [anon_sym_STAR] = ACTIONS(340), + [anon_sym_BSLASH] = ACTIONS(343), + [sym_quotation_marks] = ACTIONS(334), + [sym_ellipsis] = ACTIONS(334), + [sym_em_dash] = ACTIONS(334), + [sym_en_dash] = ACTIONS(346), + [sym_backslash_escape] = ACTIONS(346), + [anon_sym_LT] = ACTIONS(349), + [anon_sym_LBRACE_EQ] = ACTIONS(352), + [anon_sym_LBRACE_PLUS] = ACTIONS(355), + [anon_sym_LBRACE_DASH] = ACTIONS(358), + [sym_symbol] = ACTIONS(334), + [anon_sym_LBRACE_CARET] = ACTIONS(361), + [anon_sym_CARET] = ACTIONS(361), + [anon_sym_LBRACE_TILDE] = ACTIONS(364), + [anon_sym_TILDE] = ACTIONS(364), + [anon_sym_LBRACK_CARET] = ACTIONS(367), + [anon_sym_BANG_LBRACK] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(373), + [anon_sym_RBRACK2] = ACTIONS(79), + [anon_sym_LBRACE2] = ACTIONS(346), + [anon_sym_DOLLAR] = ACTIONS(376), + [anon_sym_TODO] = ACTIONS(379), + [anon_sym_WIP] = ACTIONS(379), + [anon_sym_NOTE] = ACTIONS(382), + [anon_sym_INFO] = ACTIONS(382), + [anon_sym_XXX] = ACTIONS(382), + [sym_fixme] = ACTIONS(334), + [anon_sym_PIPE] = ACTIONS(334), + [sym__whitespace1] = ACTIONS(385), + [sym__newline] = ACTIONS(388), + [aux_sym__text_token1] = ACTIONS(391), + [sym__verbatim_begin] = ACTIONS(394), }, - [95] = { - [sym__inline] = STATE(675), + [55] = { + [sym__inline] = STATE(770), [sym__element] = STATE(73), - [sym_emphasis] = STATE(179), - [sym_emphasis_begin] = STATE(111), - [sym_strong] = STATE(179), - [sym_strong_begin] = STATE(112), - [sym__hard_line_break] = STATE(179), - [sym_hard_line_break] = STATE(179), - [sym__smart_punctuation] = STATE(179), - [sym_autolink] = STATE(179), - [sym_highlighted] = STATE(179), - [sym_insert] = STATE(179), - [sym_delete] = STATE(179), - [sym_superscript] = STATE(179), - [sym_subscript] = STATE(179), - [sym_footnote_reference] = STATE(179), - [sym__image] = STATE(179), - [sym_full_reference_image] = STATE(179), - [sym_collapsed_reference_image] = STATE(179), - [sym_inline_image] = STATE(179), - [sym__image_description] = STATE(625), - [sym__link] = STATE(179), - [sym_full_reference_link] = STATE(179), - [sym_collapsed_reference_link] = STATE(179), - [sym_inline_link] = STATE(179), - [sym_link_text] = STATE(647), - [sym__comment_with_spaces] = STATE(179), - [sym_span] = STATE(179), - [sym_raw_inline] = STATE(179), - [sym_math] = STATE(179), - [sym_verbatim] = STATE(179), - [sym__todo_highlights] = STATE(179), - [sym_todo] = STATE(179), - [sym_note] = STATE(179), - [sym__symbol_fallback] = STATE(179), - [aux_sym__text] = STATE(171), + [sym_emphasis] = STATE(180), + [sym_emphasis_begin] = STATE(895), + [sym_strong] = STATE(180), + [sym_strong_begin] = STATE(114), + [sym__hard_line_break] = STATE(180), + [sym_hard_line_break] = STATE(180), + [sym__smart_punctuation] = STATE(180), + [sym_autolink] = STATE(180), + [sym_highlighted] = STATE(180), + [sym_insert] = STATE(180), + [sym_delete] = STATE(180), + [sym_superscript] = STATE(180), + [sym_subscript] = STATE(180), + [sym_footnote_reference] = STATE(180), + [sym__image] = STATE(180), + [sym_full_reference_image] = STATE(180), + [sym_collapsed_reference_image] = STATE(180), + [sym_inline_image] = STATE(180), + [sym__image_description] = STATE(632), + [sym__link] = STATE(180), + [sym_full_reference_link] = STATE(180), + [sym_collapsed_reference_link] = STATE(180), + [sym_inline_link] = STATE(180), + [sym_link_text] = STATE(633), + [sym__comment_with_spaces] = STATE(180), + [sym_span] = STATE(180), + [sym_raw_inline] = STATE(180), + [sym_math] = STATE(180), + [sym_verbatim] = STATE(180), + [sym__todo_highlights] = STATE(180), + [sym_todo] = STATE(180), + [sym_note] = STATE(180), + [sym__symbol_fallback] = STATE(180), + [aux_sym__text] = STATE(132), [aux_sym__inline_repeat1] = STATE(73), - [anon_sym_LBRACE_] = ACTIONS(610), - [anon_sym__] = ACTIONS(612), - [anon_sym_LBRACE_STAR] = ACTIONS(614), - [anon_sym_STAR] = ACTIONS(961), - [anon_sym_BSLASH] = ACTIONS(620), - [sym_quotation_marks] = ACTIONS(622), - [sym_ellipsis] = ACTIONS(622), - [sym_em_dash] = ACTIONS(622), - [sym_en_dash] = ACTIONS(624), - [sym_backslash_escape] = ACTIONS(624), - [anon_sym_LT] = ACTIONS(626), - [anon_sym_LBRACE_EQ] = ACTIONS(628), - [anon_sym_LBRACE_PLUS] = ACTIONS(630), - [anon_sym_LBRACE_DASH] = ACTIONS(632), - [sym_symbol] = ACTIONS(622), - [anon_sym_LBRACE_CARET] = ACTIONS(634), - [anon_sym_CARET] = ACTIONS(634), - [anon_sym_LBRACE_TILDE] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(636), - [anon_sym_LBRACK_CARET] = ACTIONS(638), - [anon_sym_BANG_LBRACK] = ACTIONS(640), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_LBRACE2] = ACTIONS(624), - [anon_sym_DOLLAR] = ACTIONS(644), - [anon_sym_TODO] = ACTIONS(646), - [anon_sym_WIP] = ACTIONS(646), - [anon_sym_NOTE] = ACTIONS(648), - [anon_sym_INFO] = ACTIONS(648), - [anon_sym_XXX] = ACTIONS(648), - [sym_fixme] = ACTIONS(622), - [anon_sym_PIPE] = ACTIONS(622), - [sym__whitespace1] = ACTIONS(963), - [sym__newline] = ACTIONS(965), - [aux_sym__text_token1] = ACTIONS(654), - [sym__verbatim_begin] = ACTIONS(656), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_] = ACTIONS(133), + [anon_sym__] = ACTIONS(136), + [anon_sym_LBRACE_STAR] = ACTIONS(139), + [anon_sym_STAR] = ACTIONS(142), + [anon_sym_BSLASH] = ACTIONS(145), + [sym_quotation_marks] = ACTIONS(136), + [sym_ellipsis] = ACTIONS(136), + [sym_em_dash] = ACTIONS(136), + [sym_en_dash] = ACTIONS(148), + [sym_backslash_escape] = ACTIONS(148), + [anon_sym_LT] = ACTIONS(151), + [anon_sym_LBRACE_EQ] = ACTIONS(154), + [anon_sym_LBRACE_PLUS] = ACTIONS(157), + [anon_sym_LBRACE_DASH] = ACTIONS(160), + [sym_symbol] = ACTIONS(136), + [anon_sym_LBRACE_CARET] = ACTIONS(163), + [anon_sym_CARET] = ACTIONS(163), + [anon_sym_LBRACE_TILDE] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(166), + [anon_sym_LBRACK_CARET] = ACTIONS(169), + [anon_sym_BANG_LBRACK] = ACTIONS(172), + [anon_sym_LBRACK] = ACTIONS(175), + [anon_sym_RBRACK2] = ACTIONS(79), + [anon_sym_LBRACE2] = ACTIONS(148), + [anon_sym_DOLLAR] = ACTIONS(178), + [anon_sym_TODO] = ACTIONS(181), + [anon_sym_WIP] = ACTIONS(181), + [anon_sym_NOTE] = ACTIONS(184), + [anon_sym_INFO] = ACTIONS(184), + [anon_sym_XXX] = ACTIONS(184), + [sym_fixme] = ACTIONS(136), + [anon_sym_PIPE] = ACTIONS(136), + [sym__whitespace1] = ACTIONS(187), + [sym__newline] = ACTIONS(190), + [aux_sym__text_token1] = ACTIONS(193), + [sym__verbatim_begin] = ACTIONS(196), }, - [96] = { - [sym__inline] = STATE(787), - [sym__element] = STATE(79), - [sym_emphasis] = STATE(178), - [sym_emphasis_begin] = STATE(115), - [sym_strong] = STATE(178), + [56] = { + [sym__inline] = STATE(769), + [sym__element] = STATE(78), + [sym_emphasis] = STATE(167), + [sym_emphasis_begin] = STATE(894), + [sym_strong] = STATE(167), [sym_strong_begin] = STATE(117), - [sym__hard_line_break] = STATE(178), - [sym_hard_line_break] = STATE(178), - [sym__smart_punctuation] = STATE(178), - [sym_autolink] = STATE(178), - [sym_highlighted] = STATE(178), - [sym_insert] = STATE(178), - [sym_delete] = STATE(178), - [sym_superscript] = STATE(178), - [sym_subscript] = STATE(178), - [sym_footnote_reference] = STATE(178), - [sym__image] = STATE(178), - [sym_full_reference_image] = STATE(178), - [sym_collapsed_reference_image] = STATE(178), - [sym_inline_image] = STATE(178), - [sym__image_description] = STATE(640), - [sym__link] = STATE(178), - [sym_full_reference_link] = STATE(178), - [sym_collapsed_reference_link] = STATE(178), - [sym_inline_link] = STATE(178), - [sym_link_text] = STATE(636), - [sym__comment_with_spaces] = STATE(178), - [sym_span] = STATE(178), - [sym_raw_inline] = STATE(178), - [sym_math] = STATE(178), - [sym_verbatim] = STATE(178), - [sym__todo_highlights] = STATE(178), - [sym_todo] = STATE(178), - [sym_note] = STATE(178), - [sym__symbol_fallback] = STATE(178), - [aux_sym__text] = STATE(146), - [aux_sym__inline_repeat1] = STATE(79), - [anon_sym_LBRACE_] = ACTIONS(564), - [anon_sym__] = ACTIONS(566), - [anon_sym_LBRACE_STAR] = ACTIONS(568), - [anon_sym_STAR] = ACTIONS(570), - [anon_sym_BSLASH] = ACTIONS(572), - [sym_quotation_marks] = ACTIONS(574), - [sym_ellipsis] = ACTIONS(574), - [sym_em_dash] = ACTIONS(574), - [sym_en_dash] = ACTIONS(576), - [sym_backslash_escape] = ACTIONS(576), - [anon_sym_LT] = ACTIONS(578), - [anon_sym_LBRACE_EQ] = ACTIONS(580), - [anon_sym_LBRACE_PLUS] = ACTIONS(582), - [anon_sym_LBRACE_DASH] = ACTIONS(584), - [sym_symbol] = ACTIONS(574), - [anon_sym_LBRACE_CARET] = ACTIONS(586), - [anon_sym_CARET] = ACTIONS(586), - [anon_sym_LBRACE_TILDE] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_LBRACK_CARET] = ACTIONS(590), - [anon_sym_BANG_LBRACK] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(594), - [anon_sym_LBRACE2] = ACTIONS(576), - [anon_sym_DOLLAR] = ACTIONS(596), - [anon_sym_TODO] = ACTIONS(598), - [anon_sym_WIP] = ACTIONS(598), - [anon_sym_NOTE] = ACTIONS(600), - [anon_sym_INFO] = ACTIONS(600), - [anon_sym_XXX] = ACTIONS(600), - [sym_fixme] = ACTIONS(574), - [anon_sym_PIPE] = ACTIONS(574), - [sym__whitespace1] = ACTIONS(602), - [sym__newline] = ACTIONS(604), - [aux_sym__text_token1] = ACTIONS(606), - [sym__verbatim_begin] = ACTIONS(608), + [sym__hard_line_break] = STATE(167), + [sym_hard_line_break] = STATE(167), + [sym__smart_punctuation] = STATE(167), + [sym_autolink] = STATE(167), + [sym_highlighted] = STATE(167), + [sym_insert] = STATE(167), + [sym_delete] = STATE(167), + [sym_superscript] = STATE(167), + [sym_subscript] = STATE(167), + [sym_footnote_reference] = STATE(167), + [sym__image] = STATE(167), + [sym_full_reference_image] = STATE(167), + [sym_collapsed_reference_image] = STATE(167), + [sym_inline_image] = STATE(167), + [sym__image_description] = STATE(613), + [sym__link] = STATE(167), + [sym_full_reference_link] = STATE(167), + [sym_collapsed_reference_link] = STATE(167), + [sym_inline_link] = STATE(167), + [sym_link_text] = STATE(614), + [sym__comment_with_spaces] = STATE(167), + [sym_span] = STATE(167), + [sym_raw_inline] = STATE(167), + [sym_math] = STATE(167), + [sym_verbatim] = STATE(167), + [sym__todo_highlights] = STATE(167), + [sym_todo] = STATE(167), + [sym_note] = STATE(167), + [sym__symbol_fallback] = STATE(167), + [aux_sym__text] = STATE(130), + [aux_sym__inline_repeat1] = STATE(78), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_] = ACTIONS(199), + [anon_sym__] = ACTIONS(202), + [anon_sym_LBRACE_STAR] = ACTIONS(205), + [anon_sym_STAR] = ACTIONS(208), + [anon_sym_BSLASH] = ACTIONS(211), + [sym_quotation_marks] = ACTIONS(202), + [sym_ellipsis] = ACTIONS(202), + [sym_em_dash] = ACTIONS(202), + [sym_en_dash] = ACTIONS(214), + [sym_backslash_escape] = ACTIONS(214), + [anon_sym_LT] = ACTIONS(217), + [anon_sym_LBRACE_EQ] = ACTIONS(220), + [anon_sym_LBRACE_PLUS] = ACTIONS(223), + [anon_sym_LBRACE_DASH] = ACTIONS(226), + [sym_symbol] = ACTIONS(202), + [anon_sym_LBRACE_CARET] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym_LBRACE_TILDE] = ACTIONS(232), + [anon_sym_TILDE] = ACTIONS(232), + [anon_sym_LBRACK_CARET] = ACTIONS(235), + [anon_sym_BANG_LBRACK] = ACTIONS(238), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_RBRACK2] = ACTIONS(79), + [anon_sym_LBRACE2] = ACTIONS(214), + [anon_sym_DOLLAR] = ACTIONS(244), + [anon_sym_TODO] = ACTIONS(247), + [anon_sym_WIP] = ACTIONS(247), + [anon_sym_NOTE] = ACTIONS(250), + [anon_sym_INFO] = ACTIONS(250), + [anon_sym_XXX] = ACTIONS(250), + [sym_fixme] = ACTIONS(202), + [anon_sym_PIPE] = ACTIONS(202), + [sym__whitespace1] = ACTIONS(253), + [sym__newline] = ACTIONS(256), + [aux_sym__text_token1] = ACTIONS(259), + [sym__verbatim_begin] = ACTIONS(262), }, - [97] = { - [sym__inline] = STATE(681), - [sym__element] = STATE(87), - [sym_emphasis] = STATE(189), - [sym_emphasis_begin] = STATE(108), - [sym_strong] = STATE(189), - [sym_strong_begin] = STATE(109), - [sym__hard_line_break] = STATE(189), - [sym_hard_line_break] = STATE(189), - [sym__smart_punctuation] = STATE(189), - [sym_autolink] = STATE(189), - [sym_highlighted] = STATE(189), - [sym_insert] = STATE(189), - [sym_delete] = STATE(189), - [sym_superscript] = STATE(189), - [sym_subscript] = STATE(189), - [sym_footnote_reference] = STATE(189), - [sym__image] = STATE(189), - [sym_full_reference_image] = STATE(189), - [sym_collapsed_reference_image] = STATE(189), - [sym_inline_image] = STATE(189), - [sym__image_description] = STATE(655), - [sym__link] = STATE(189), - [sym_full_reference_link] = STATE(189), - [sym_collapsed_reference_link] = STATE(189), - [sym_inline_link] = STATE(189), - [sym_link_text] = STATE(626), - [sym__comment_with_spaces] = STATE(189), - [sym_span] = STATE(189), - [sym_raw_inline] = STATE(189), - [sym_math] = STATE(189), - [sym_verbatim] = STATE(189), - [sym__todo_highlights] = STATE(189), - [sym_todo] = STATE(189), - [sym_note] = STATE(189), - [sym__symbol_fallback] = STATE(189), - [aux_sym__text] = STATE(155), - [aux_sym__inline_repeat1] = STATE(87), - [anon_sym_LBRACE_] = ACTIONS(915), - [anon_sym__] = ACTIONS(917), - [anon_sym_LBRACE_STAR] = ACTIONS(919), - [anon_sym_STAR] = ACTIONS(921), - [anon_sym_BSLASH] = ACTIONS(923), - [sym_quotation_marks] = ACTIONS(925), - [sym_ellipsis] = ACTIONS(925), - [sym_em_dash] = ACTIONS(925), - [sym_en_dash] = ACTIONS(927), - [sym_backslash_escape] = ACTIONS(927), - [anon_sym_LT] = ACTIONS(929), - [anon_sym_LBRACE_EQ] = ACTIONS(931), - [anon_sym_LBRACE_PLUS] = ACTIONS(933), - [anon_sym_LBRACE_DASH] = ACTIONS(935), - [sym_symbol] = ACTIONS(925), - [anon_sym_LBRACE_CARET] = ACTIONS(937), - [anon_sym_CARET] = ACTIONS(937), - [anon_sym_LBRACE_TILDE] = ACTIONS(939), - [anon_sym_TILDE] = ACTIONS(939), - [anon_sym_LBRACK_CARET] = ACTIONS(941), - [anon_sym_BANG_LBRACK] = ACTIONS(943), - [anon_sym_LBRACK] = ACTIONS(945), - [anon_sym_LBRACE2] = ACTIONS(927), - [anon_sym_DOLLAR] = ACTIONS(947), - [anon_sym_TODO] = ACTIONS(949), - [anon_sym_WIP] = ACTIONS(949), - [anon_sym_NOTE] = ACTIONS(951), - [anon_sym_INFO] = ACTIONS(951), - [anon_sym_XXX] = ACTIONS(951), - [sym_fixme] = ACTIONS(925), - [anon_sym_PIPE] = ACTIONS(925), - [sym__whitespace1] = ACTIONS(953), - [sym__newline] = ACTIONS(955), - [aux_sym__text_token1] = ACTIONS(957), - [sym__verbatim_begin] = ACTIONS(959), + [57] = { + [sym__inline] = STATE(768), + [sym__element] = STATE(107), + [sym_emphasis] = STATE(187), + [sym_emphasis_begin] = STATE(893), + [sym_strong] = STATE(187), + [sym_strong_begin] = STATE(119), + [sym__hard_line_break] = STATE(187), + [sym_hard_line_break] = STATE(187), + [sym__smart_punctuation] = STATE(187), + [sym_autolink] = STATE(187), + [sym_highlighted] = STATE(187), + [sym_insert] = STATE(187), + [sym_delete] = STATE(187), + [sym_superscript] = STATE(187), + [sym_subscript] = STATE(187), + [sym_footnote_reference] = STATE(187), + [sym__image] = STATE(187), + [sym_full_reference_image] = STATE(187), + [sym_collapsed_reference_image] = STATE(187), + [sym_inline_image] = STATE(187), + [sym__image_description] = STATE(616), + [sym__link] = STATE(187), + [sym_full_reference_link] = STATE(187), + [sym_collapsed_reference_link] = STATE(187), + [sym_inline_link] = STATE(187), + [sym_link_text] = STATE(634), + [sym__comment_with_spaces] = STATE(187), + [sym_span] = STATE(187), + [sym_raw_inline] = STATE(187), + [sym_math] = STATE(187), + [sym_verbatim] = STATE(187), + [sym__todo_highlights] = STATE(187), + [sym_todo] = STATE(187), + [sym_note] = STATE(187), + [sym__symbol_fallback] = STATE(187), + [aux_sym__text] = STATE(131), + [aux_sym__inline_repeat1] = STATE(107), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_] = ACTIONS(265), + [anon_sym__] = ACTIONS(268), + [anon_sym_LBRACE_STAR] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(274), + [anon_sym_BSLASH] = ACTIONS(277), + [sym_quotation_marks] = ACTIONS(268), + [sym_ellipsis] = ACTIONS(268), + [sym_em_dash] = ACTIONS(268), + [sym_en_dash] = ACTIONS(280), + [sym_backslash_escape] = ACTIONS(280), + [anon_sym_LT] = ACTIONS(283), + [anon_sym_LBRACE_EQ] = ACTIONS(286), + [anon_sym_LBRACE_PLUS] = ACTIONS(289), + [anon_sym_LBRACE_DASH] = ACTIONS(292), + [sym_symbol] = ACTIONS(268), + [anon_sym_LBRACE_CARET] = ACTIONS(295), + [anon_sym_CARET] = ACTIONS(295), + [anon_sym_LBRACE_TILDE] = ACTIONS(298), + [anon_sym_TILDE] = ACTIONS(298), + [anon_sym_LBRACK_CARET] = ACTIONS(301), + [anon_sym_BANG_LBRACK] = ACTIONS(304), + [anon_sym_LBRACK] = ACTIONS(307), + [anon_sym_RBRACK2] = ACTIONS(79), + [anon_sym_LBRACE2] = ACTIONS(280), + [anon_sym_DOLLAR] = ACTIONS(310), + [anon_sym_TODO] = ACTIONS(313), + [anon_sym_WIP] = ACTIONS(313), + [anon_sym_NOTE] = ACTIONS(316), + [anon_sym_INFO] = ACTIONS(316), + [anon_sym_XXX] = ACTIONS(316), + [sym_fixme] = ACTIONS(268), + [anon_sym_PIPE] = ACTIONS(268), + [sym__whitespace1] = ACTIONS(319), + [sym__newline] = ACTIONS(322), + [aux_sym__text_token1] = ACTIONS(325), + [sym__verbatim_begin] = ACTIONS(328), }, - [98] = { - [sym__element] = STATE(98), - [sym_emphasis] = STATE(197), - [sym_emphasis_begin] = STATE(81), - [sym_strong] = STATE(197), - [sym_strong_begin] = STATE(82), - [sym__hard_line_break] = STATE(197), - [sym_hard_line_break] = STATE(197), - [sym__smart_punctuation] = STATE(197), - [sym_autolink] = STATE(197), - [sym_highlighted] = STATE(197), - [sym_insert] = STATE(197), - [sym_delete] = STATE(197), - [sym_superscript] = STATE(197), - [sym_subscript] = STATE(197), - [sym_footnote_reference] = STATE(197), - [sym__image] = STATE(197), - [sym_full_reference_image] = STATE(197), - [sym_collapsed_reference_image] = STATE(197), - [sym_inline_image] = STATE(197), - [sym__image_description] = STATE(654), - [sym__link] = STATE(197), - [sym_full_reference_link] = STATE(197), - [sym_collapsed_reference_link] = STATE(197), - [sym_inline_link] = STATE(197), - [sym_link_text] = STATE(651), - [sym__comment_with_spaces] = STATE(197), - [sym_span] = STATE(197), - [sym_raw_inline] = STATE(197), - [sym_math] = STATE(197), - [sym_verbatim] = STATE(197), - [sym__todo_highlights] = STATE(197), - [sym_todo] = STATE(197), - [sym_note] = STATE(197), - [sym__symbol_fallback] = STATE(197), - [aux_sym__text] = STATE(132), - [aux_sym__inline_repeat1] = STATE(98), - [anon_sym_LBRACE_] = ACTIONS(1158), - [anon_sym__] = ACTIONS(1161), - [anon_sym_LBRACE_STAR] = ACTIONS(1164), - [anon_sym_STAR] = ACTIONS(1167), - [anon_sym_BSLASH] = ACTIONS(1170), - [sym_quotation_marks] = ACTIONS(1173), - [sym_ellipsis] = ACTIONS(1173), - [sym_em_dash] = ACTIONS(1173), - [sym_en_dash] = ACTIONS(1176), - [sym_backslash_escape] = ACTIONS(1176), - [anon_sym_LT] = ACTIONS(1179), - [anon_sym_LBRACE_EQ] = ACTIONS(1182), - [anon_sym_EQ_RBRACE] = ACTIONS(670), - [anon_sym_LBRACE_PLUS] = ACTIONS(1185), - [anon_sym_LBRACE_DASH] = ACTIONS(1188), - [sym_symbol] = ACTIONS(1173), - [anon_sym_LBRACE_CARET] = ACTIONS(1191), - [anon_sym_CARET] = ACTIONS(1191), - [anon_sym_LBRACE_TILDE] = ACTIONS(1194), - [anon_sym_TILDE] = ACTIONS(1194), - [anon_sym_LBRACK_CARET] = ACTIONS(1197), - [anon_sym_BANG_LBRACK] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1203), - [anon_sym_LBRACE2] = ACTIONS(1176), - [anon_sym_DOLLAR] = ACTIONS(1206), - [anon_sym_TODO] = ACTIONS(1209), - [anon_sym_WIP] = ACTIONS(1209), - [anon_sym_NOTE] = ACTIONS(1212), - [anon_sym_INFO] = ACTIONS(1212), - [anon_sym_XXX] = ACTIONS(1212), - [sym_fixme] = ACTIONS(1173), - [anon_sym_PIPE] = ACTIONS(1173), - [sym__whitespace1] = ACTIONS(1215), - [sym__newline] = ACTIONS(1218), - [aux_sym__text_token1] = ACTIONS(1221), - [sym__verbatim_begin] = ACTIONS(1224), - }, - [99] = { - [sym__inline] = STATE(669), - [sym__element] = STATE(73), - [sym_emphasis] = STATE(179), - [sym_emphasis_begin] = STATE(111), - [sym_strong] = STATE(179), - [sym_strong_begin] = STATE(112), - [sym__hard_line_break] = STATE(179), - [sym_hard_line_break] = STATE(179), - [sym__smart_punctuation] = STATE(179), - [sym_autolink] = STATE(179), - [sym_highlighted] = STATE(179), - [sym_insert] = STATE(179), - [sym_delete] = STATE(179), - [sym_superscript] = STATE(179), - [sym_subscript] = STATE(179), - [sym_footnote_reference] = STATE(179), - [sym__image] = STATE(179), - [sym_full_reference_image] = STATE(179), - [sym_collapsed_reference_image] = STATE(179), - [sym_inline_image] = STATE(179), - [sym__image_description] = STATE(625), - [sym__link] = STATE(179), - [sym_full_reference_link] = STATE(179), - [sym_collapsed_reference_link] = STATE(179), - [sym_inline_link] = STATE(179), - [sym_link_text] = STATE(647), - [sym__comment_with_spaces] = STATE(179), - [sym_span] = STATE(179), - [sym_raw_inline] = STATE(179), - [sym_math] = STATE(179), - [sym_verbatim] = STATE(179), - [sym__todo_highlights] = STATE(179), - [sym_todo] = STATE(179), - [sym_note] = STATE(179), - [sym__symbol_fallback] = STATE(179), - [aux_sym__text] = STATE(171), - [aux_sym__inline_repeat1] = STATE(73), - [anon_sym_LBRACE_] = ACTIONS(610), - [anon_sym__] = ACTIONS(612), - [anon_sym_LBRACE_STAR] = ACTIONS(614), - [anon_sym_STAR] = ACTIONS(961), - [anon_sym_BSLASH] = ACTIONS(620), - [sym_quotation_marks] = ACTIONS(622), - [sym_ellipsis] = ACTIONS(622), - [sym_em_dash] = ACTIONS(622), - [sym_en_dash] = ACTIONS(624), - [sym_backslash_escape] = ACTIONS(624), - [anon_sym_LT] = ACTIONS(626), - [anon_sym_LBRACE_EQ] = ACTIONS(628), - [anon_sym_LBRACE_PLUS] = ACTIONS(630), - [anon_sym_LBRACE_DASH] = ACTIONS(632), - [sym_symbol] = ACTIONS(622), - [anon_sym_LBRACE_CARET] = ACTIONS(634), - [anon_sym_CARET] = ACTIONS(634), - [anon_sym_LBRACE_TILDE] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(636), - [anon_sym_LBRACK_CARET] = ACTIONS(638), - [anon_sym_BANG_LBRACK] = ACTIONS(640), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_LBRACE2] = ACTIONS(624), - [anon_sym_DOLLAR] = ACTIONS(644), - [anon_sym_TODO] = ACTIONS(646), - [anon_sym_WIP] = ACTIONS(646), - [anon_sym_NOTE] = ACTIONS(648), - [anon_sym_INFO] = ACTIONS(648), - [anon_sym_XXX] = ACTIONS(648), - [sym_fixme] = ACTIONS(622), - [anon_sym_PIPE] = ACTIONS(622), - [sym__whitespace1] = ACTIONS(963), - [sym__newline] = ACTIONS(965), - [aux_sym__text_token1] = ACTIONS(654), - [sym__verbatim_begin] = ACTIONS(656), - }, - [100] = { - [sym__element] = STATE(76), - [sym_emphasis] = STATE(198), - [sym_emphasis_begin] = STATE(106), - [sym_strong] = STATE(198), - [sym_strong_begin] = STATE(105), - [sym__hard_line_break] = STATE(198), - [sym_hard_line_break] = STATE(198), - [sym__smart_punctuation] = STATE(198), - [sym_autolink] = STATE(198), - [sym_highlighted] = STATE(198), - [sym_insert] = STATE(198), - [sym_delete] = STATE(198), - [sym_superscript] = STATE(198), - [sym_subscript] = STATE(198), - [sym_footnote_reference] = STATE(198), - [sym__image] = STATE(198), - [sym_full_reference_image] = STATE(198), - [sym_collapsed_reference_image] = STATE(198), - [sym_inline_image] = STATE(198), - [sym__image_description] = STATE(634), - [sym__link] = STATE(198), - [sym_full_reference_link] = STATE(198), - [sym_collapsed_reference_link] = STATE(198), - [sym_inline_link] = STATE(198), - [sym_link_text] = STATE(648), - [sym__comment_with_spaces] = STATE(198), - [sym_span] = STATE(198), - [sym_raw_inline] = STATE(198), - [sym_math] = STATE(198), - [sym_verbatim] = STATE(198), - [sym__todo_highlights] = STATE(198), - [sym_todo] = STATE(198), - [sym_note] = STATE(198), - [sym__symbol_fallback] = STATE(198), - [aux_sym__text] = STATE(134), - [aux_sym__inline_repeat1] = STATE(76), - [ts_builtin_sym_end] = ACTIONS(618), - [anon_sym_LBRACE_] = ACTIONS(3), - [anon_sym__] = ACTIONS(5), - [anon_sym_LBRACE_STAR] = ACTIONS(7), - [anon_sym_STAR] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(11), - [sym_quotation_marks] = ACTIONS(13), - [sym_ellipsis] = ACTIONS(13), - [sym_em_dash] = ACTIONS(13), - [sym_en_dash] = ACTIONS(15), - [sym_backslash_escape] = ACTIONS(15), - [anon_sym_LT] = ACTIONS(17), - [anon_sym_LBRACE_EQ] = ACTIONS(19), - [anon_sym_LBRACE_PLUS] = ACTIONS(21), - [anon_sym_LBRACE_DASH] = ACTIONS(23), - [sym_symbol] = ACTIONS(13), - [anon_sym_LBRACE_CARET] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(25), - [anon_sym_LBRACE_TILDE] = ACTIONS(27), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_LBRACK_CARET] = ACTIONS(29), - [anon_sym_BANG_LBRACK] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACE2] = ACTIONS(15), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_TODO] = ACTIONS(37), - [anon_sym_WIP] = ACTIONS(37), - [anon_sym_NOTE] = ACTIONS(39), - [anon_sym_INFO] = ACTIONS(39), - [anon_sym_XXX] = ACTIONS(39), - [sym_fixme] = ACTIONS(13), - [anon_sym_PIPE] = ACTIONS(13), - [sym__whitespace1] = ACTIONS(41), - [sym__newline] = ACTIONS(1227), - [aux_sym__text_token1] = ACTIONS(45), - [sym__verbatim_begin] = ACTIONS(47), - }, - [101] = { - [sym__inline] = STATE(664), - [sym__element] = STATE(87), - [sym_emphasis] = STATE(189), - [sym_emphasis_begin] = STATE(108), - [sym_strong] = STATE(189), - [sym_strong_begin] = STATE(109), - [sym__hard_line_break] = STATE(189), - [sym_hard_line_break] = STATE(189), - [sym__smart_punctuation] = STATE(189), - [sym_autolink] = STATE(189), - [sym_highlighted] = STATE(189), - [sym_insert] = STATE(189), - [sym_delete] = STATE(189), - [sym_superscript] = STATE(189), - [sym_subscript] = STATE(189), - [sym_footnote_reference] = STATE(189), - [sym__image] = STATE(189), - [sym_full_reference_image] = STATE(189), - [sym_collapsed_reference_image] = STATE(189), - [sym_inline_image] = STATE(189), - [sym__image_description] = STATE(655), - [sym__link] = STATE(189), - [sym_full_reference_link] = STATE(189), - [sym_collapsed_reference_link] = STATE(189), - [sym_inline_link] = STATE(189), - [sym_link_text] = STATE(626), - [sym__comment_with_spaces] = STATE(189), - [sym_span] = STATE(189), - [sym_raw_inline] = STATE(189), - [sym_math] = STATE(189), - [sym_verbatim] = STATE(189), - [sym__todo_highlights] = STATE(189), - [sym_todo] = STATE(189), - [sym_note] = STATE(189), - [sym__symbol_fallback] = STATE(189), - [aux_sym__text] = STATE(155), - [aux_sym__inline_repeat1] = STATE(87), - [anon_sym_LBRACE_] = ACTIONS(915), - [anon_sym__] = ACTIONS(917), - [anon_sym_LBRACE_STAR] = ACTIONS(919), - [anon_sym_STAR] = ACTIONS(921), - [anon_sym_BSLASH] = ACTIONS(923), - [sym_quotation_marks] = ACTIONS(925), - [sym_ellipsis] = ACTIONS(925), - [sym_em_dash] = ACTIONS(925), - [sym_en_dash] = ACTIONS(927), - [sym_backslash_escape] = ACTIONS(927), - [anon_sym_LT] = ACTIONS(929), - [anon_sym_LBRACE_EQ] = ACTIONS(931), - [anon_sym_LBRACE_PLUS] = ACTIONS(933), - [anon_sym_LBRACE_DASH] = ACTIONS(935), - [sym_symbol] = ACTIONS(925), - [anon_sym_LBRACE_CARET] = ACTIONS(937), - [anon_sym_CARET] = ACTIONS(937), - [anon_sym_LBRACE_TILDE] = ACTIONS(939), - [anon_sym_TILDE] = ACTIONS(939), - [anon_sym_LBRACK_CARET] = ACTIONS(941), - [anon_sym_BANG_LBRACK] = ACTIONS(943), - [anon_sym_LBRACK] = ACTIONS(945), - [anon_sym_LBRACE2] = ACTIONS(927), - [anon_sym_DOLLAR] = ACTIONS(947), - [anon_sym_TODO] = ACTIONS(949), - [anon_sym_WIP] = ACTIONS(949), - [anon_sym_NOTE] = ACTIONS(951), - [anon_sym_INFO] = ACTIONS(951), - [anon_sym_XXX] = ACTIONS(951), - [sym_fixme] = ACTIONS(925), - [anon_sym_PIPE] = ACTIONS(925), - [sym__whitespace1] = ACTIONS(953), - [sym__newline] = ACTIONS(955), - [aux_sym__text_token1] = ACTIONS(957), - [sym__verbatim_begin] = ACTIONS(959), - }, - [102] = { - [sym__element] = STATE(102), - [sym_emphasis] = STATE(200), - [sym_emphasis_begin] = STATE(101), - [sym_strong] = STATE(200), - [sym_strong_begin] = STATE(104), - [sym__hard_line_break] = STATE(200), - [sym_hard_line_break] = STATE(200), - [sym__smart_punctuation] = STATE(200), - [sym_autolink] = STATE(200), - [sym_highlighted] = STATE(200), - [sym_insert] = STATE(200), - [sym_delete] = STATE(200), - [sym_superscript] = STATE(200), - [sym_subscript] = STATE(200), - [sym_footnote_reference] = STATE(200), - [sym__image] = STATE(200), - [sym_full_reference_image] = STATE(200), - [sym_collapsed_reference_image] = STATE(200), - [sym_inline_image] = STATE(200), - [sym__image_description] = STATE(642), - [sym__link] = STATE(200), - [sym_full_reference_link] = STATE(200), - [sym_collapsed_reference_link] = STATE(200), - [sym_inline_link] = STATE(200), - [sym_link_text] = STATE(643), - [sym__comment_with_spaces] = STATE(200), - [sym_span] = STATE(200), - [sym_raw_inline] = STATE(200), - [sym_math] = STATE(200), - [sym_verbatim] = STATE(200), - [sym__todo_highlights] = STATE(200), - [sym_todo] = STATE(200), - [sym_note] = STATE(200), - [sym__symbol_fallback] = STATE(200), - [aux_sym__text] = STATE(138), - [aux_sym__inline_repeat1] = STATE(102), - [anon_sym_LBRACE_] = ACTIONS(1229), - [anon_sym__] = ACTIONS(1232), - [anon_sym_LBRACE_STAR] = ACTIONS(1235), - [anon_sym_STAR] = ACTIONS(1238), - [anon_sym_BSLASH] = ACTIONS(1241), - [sym_quotation_marks] = ACTIONS(1244), - [sym_ellipsis] = ACTIONS(1244), - [sym_em_dash] = ACTIONS(1244), - [sym_en_dash] = ACTIONS(1247), - [sym_backslash_escape] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(1250), - [anon_sym_LBRACE_EQ] = ACTIONS(1253), - [anon_sym_LBRACE_PLUS] = ACTIONS(1256), - [anon_sym_LBRACE_DASH] = ACTIONS(1259), - [sym_symbol] = ACTIONS(1244), - [anon_sym_LBRACE_CARET] = ACTIONS(1262), - [anon_sym_CARET] = ACTIONS(1262), - [anon_sym_LBRACE_TILDE] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1265), - [anon_sym_LBRACK_CARET] = ACTIONS(1268), - [anon_sym_RBRACK] = ACTIONS(670), - [anon_sym_BANG_LBRACK] = ACTIONS(1271), - [anon_sym_LBRACK] = ACTIONS(1274), - [anon_sym_LBRACE2] = ACTIONS(1247), - [anon_sym_DOLLAR] = ACTIONS(1277), - [anon_sym_TODO] = ACTIONS(1280), - [anon_sym_WIP] = ACTIONS(1280), - [anon_sym_NOTE] = ACTIONS(1283), - [anon_sym_INFO] = ACTIONS(1283), - [anon_sym_XXX] = ACTIONS(1283), - [sym_fixme] = ACTIONS(1244), - [anon_sym_PIPE] = ACTIONS(1244), - [sym__whitespace1] = ACTIONS(1286), - [sym__newline] = ACTIONS(1289), - [aux_sym__text_token1] = ACTIONS(1292), - [sym__verbatim_begin] = ACTIONS(1295), - }, - [103] = { - [sym__element] = STATE(102), - [sym_emphasis] = STATE(200), - [sym_emphasis_begin] = STATE(101), - [sym_strong] = STATE(200), - [sym_strong_begin] = STATE(104), - [sym__hard_line_break] = STATE(200), - [sym_hard_line_break] = STATE(200), - [sym__smart_punctuation] = STATE(200), - [sym_autolink] = STATE(200), - [sym_highlighted] = STATE(200), - [sym_insert] = STATE(200), - [sym_delete] = STATE(200), - [sym_superscript] = STATE(200), - [sym_subscript] = STATE(200), - [sym_footnote_reference] = STATE(200), - [sym__image] = STATE(200), - [sym_full_reference_image] = STATE(200), - [sym_collapsed_reference_image] = STATE(200), - [sym_inline_image] = STATE(200), - [sym__image_description] = STATE(642), - [sym__link] = STATE(200), - [sym_full_reference_link] = STATE(200), - [sym_collapsed_reference_link] = STATE(200), - [sym_inline_link] = STATE(200), - [sym_link_text] = STATE(643), - [sym__comment_with_spaces] = STATE(200), - [sym_span] = STATE(200), - [sym_raw_inline] = STATE(200), - [sym_math] = STATE(200), - [sym_verbatim] = STATE(200), - [sym__todo_highlights] = STATE(200), - [sym_todo] = STATE(200), - [sym_note] = STATE(200), - [sym__symbol_fallback] = STATE(200), - [aux_sym__text] = STATE(138), - [aux_sym__inline_repeat1] = STATE(102), - [anon_sym_LBRACE_] = ACTIONS(1298), - [anon_sym__] = ACTIONS(1300), - [anon_sym_LBRACE_STAR] = ACTIONS(1302), - [anon_sym_STAR] = ACTIONS(1304), - [anon_sym_BSLASH] = ACTIONS(1306), - [sym_quotation_marks] = ACTIONS(1308), - [sym_ellipsis] = ACTIONS(1308), - [sym_em_dash] = ACTIONS(1308), - [sym_en_dash] = ACTIONS(1310), - [sym_backslash_escape] = ACTIONS(1310), - [anon_sym_LT] = ACTIONS(1312), - [anon_sym_LBRACE_EQ] = ACTIONS(1314), - [anon_sym_LBRACE_PLUS] = ACTIONS(1316), - [anon_sym_LBRACE_DASH] = ACTIONS(1318), - [sym_symbol] = ACTIONS(1308), - [anon_sym_LBRACE_CARET] = ACTIONS(1320), - [anon_sym_CARET] = ACTIONS(1320), - [anon_sym_LBRACE_TILDE] = ACTIONS(1322), - [anon_sym_TILDE] = ACTIONS(1322), - [anon_sym_LBRACK_CARET] = ACTIONS(1324), - [anon_sym_RBRACK] = ACTIONS(618), - [anon_sym_BANG_LBRACK] = ACTIONS(1326), - [anon_sym_LBRACK] = ACTIONS(1328), - [anon_sym_LBRACE2] = ACTIONS(1310), - [anon_sym_DOLLAR] = ACTIONS(1330), - [anon_sym_TODO] = ACTIONS(1332), - [anon_sym_WIP] = ACTIONS(1332), - [anon_sym_NOTE] = ACTIONS(1334), - [anon_sym_INFO] = ACTIONS(1334), - [anon_sym_XXX] = ACTIONS(1334), - [sym_fixme] = ACTIONS(1308), - [anon_sym_PIPE] = ACTIONS(1308), - [sym__whitespace1] = ACTIONS(1336), - [sym__newline] = ACTIONS(1338), - [aux_sym__text_token1] = ACTIONS(1340), - [sym__verbatim_begin] = ACTIONS(1342), - }, - [104] = { - [sym__inline] = STATE(663), - [sym__element] = STATE(73), - [sym_emphasis] = STATE(179), - [sym_emphasis_begin] = STATE(111), - [sym_strong] = STATE(179), - [sym_strong_begin] = STATE(112), - [sym__hard_line_break] = STATE(179), - [sym_hard_line_break] = STATE(179), - [sym__smart_punctuation] = STATE(179), - [sym_autolink] = STATE(179), - [sym_highlighted] = STATE(179), - [sym_insert] = STATE(179), - [sym_delete] = STATE(179), - [sym_superscript] = STATE(179), - [sym_subscript] = STATE(179), - [sym_footnote_reference] = STATE(179), - [sym__image] = STATE(179), - [sym_full_reference_image] = STATE(179), - [sym_collapsed_reference_image] = STATE(179), - [sym_inline_image] = STATE(179), - [sym__image_description] = STATE(625), - [sym__link] = STATE(179), - [sym_full_reference_link] = STATE(179), - [sym_collapsed_reference_link] = STATE(179), - [sym_inline_link] = STATE(179), - [sym_link_text] = STATE(647), - [sym__comment_with_spaces] = STATE(179), - [sym_span] = STATE(179), - [sym_raw_inline] = STATE(179), - [sym_math] = STATE(179), - [sym_verbatim] = STATE(179), - [sym__todo_highlights] = STATE(179), - [sym_todo] = STATE(179), - [sym_note] = STATE(179), - [sym__symbol_fallback] = STATE(179), - [aux_sym__text] = STATE(171), - [aux_sym__inline_repeat1] = STATE(73), - [anon_sym_LBRACE_] = ACTIONS(610), - [anon_sym__] = ACTIONS(612), - [anon_sym_LBRACE_STAR] = ACTIONS(614), - [anon_sym_STAR] = ACTIONS(961), - [anon_sym_BSLASH] = ACTIONS(620), - [sym_quotation_marks] = ACTIONS(622), - [sym_ellipsis] = ACTIONS(622), - [sym_em_dash] = ACTIONS(622), - [sym_en_dash] = ACTIONS(624), - [sym_backslash_escape] = ACTIONS(624), - [anon_sym_LT] = ACTIONS(626), - [anon_sym_LBRACE_EQ] = ACTIONS(628), - [anon_sym_LBRACE_PLUS] = ACTIONS(630), - [anon_sym_LBRACE_DASH] = ACTIONS(632), - [sym_symbol] = ACTIONS(622), - [anon_sym_LBRACE_CARET] = ACTIONS(634), - [anon_sym_CARET] = ACTIONS(634), - [anon_sym_LBRACE_TILDE] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(636), - [anon_sym_LBRACK_CARET] = ACTIONS(638), - [anon_sym_BANG_LBRACK] = ACTIONS(640), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_LBRACE2] = ACTIONS(624), - [anon_sym_DOLLAR] = ACTIONS(644), - [anon_sym_TODO] = ACTIONS(646), - [anon_sym_WIP] = ACTIONS(646), - [anon_sym_NOTE] = ACTIONS(648), - [anon_sym_INFO] = ACTIONS(648), - [anon_sym_XXX] = ACTIONS(648), - [sym_fixme] = ACTIONS(622), - [anon_sym_PIPE] = ACTIONS(622), - [sym__whitespace1] = ACTIONS(963), - [sym__newline] = ACTIONS(965), - [aux_sym__text_token1] = ACTIONS(654), - [sym__verbatim_begin] = ACTIONS(656), - }, - [105] = { - [sym__inline] = STATE(665), - [sym__element] = STATE(73), - [sym_emphasis] = STATE(179), - [sym_emphasis_begin] = STATE(111), - [sym_strong] = STATE(179), - [sym_strong_begin] = STATE(112), - [sym__hard_line_break] = STATE(179), - [sym_hard_line_break] = STATE(179), - [sym__smart_punctuation] = STATE(179), - [sym_autolink] = STATE(179), - [sym_highlighted] = STATE(179), - [sym_insert] = STATE(179), - [sym_delete] = STATE(179), - [sym_superscript] = STATE(179), - [sym_subscript] = STATE(179), - [sym_footnote_reference] = STATE(179), - [sym__image] = STATE(179), - [sym_full_reference_image] = STATE(179), - [sym_collapsed_reference_image] = STATE(179), - [sym_inline_image] = STATE(179), - [sym__image_description] = STATE(625), - [sym__link] = STATE(179), - [sym_full_reference_link] = STATE(179), - [sym_collapsed_reference_link] = STATE(179), - [sym_inline_link] = STATE(179), - [sym_link_text] = STATE(647), - [sym__comment_with_spaces] = STATE(179), - [sym_span] = STATE(179), - [sym_raw_inline] = STATE(179), - [sym_math] = STATE(179), - [sym_verbatim] = STATE(179), - [sym__todo_highlights] = STATE(179), - [sym_todo] = STATE(179), - [sym_note] = STATE(179), - [sym__symbol_fallback] = STATE(179), - [aux_sym__text] = STATE(171), - [aux_sym__inline_repeat1] = STATE(73), - [anon_sym_LBRACE_] = ACTIONS(610), - [anon_sym__] = ACTIONS(612), - [anon_sym_LBRACE_STAR] = ACTIONS(614), - [anon_sym_STAR] = ACTIONS(961), - [anon_sym_BSLASH] = ACTIONS(620), - [sym_quotation_marks] = ACTIONS(622), - [sym_ellipsis] = ACTIONS(622), - [sym_em_dash] = ACTIONS(622), - [sym_en_dash] = ACTIONS(624), - [sym_backslash_escape] = ACTIONS(624), - [anon_sym_LT] = ACTIONS(626), - [anon_sym_LBRACE_EQ] = ACTIONS(628), - [anon_sym_LBRACE_PLUS] = ACTIONS(630), - [anon_sym_LBRACE_DASH] = ACTIONS(632), - [sym_symbol] = ACTIONS(622), - [anon_sym_LBRACE_CARET] = ACTIONS(634), - [anon_sym_CARET] = ACTIONS(634), - [anon_sym_LBRACE_TILDE] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(636), - [anon_sym_LBRACK_CARET] = ACTIONS(638), - [anon_sym_BANG_LBRACK] = ACTIONS(640), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_LBRACE2] = ACTIONS(624), - [anon_sym_DOLLAR] = ACTIONS(644), - [anon_sym_TODO] = ACTIONS(646), - [anon_sym_WIP] = ACTIONS(646), - [anon_sym_NOTE] = ACTIONS(648), - [anon_sym_INFO] = ACTIONS(648), - [anon_sym_XXX] = ACTIONS(648), - [sym_fixme] = ACTIONS(622), - [anon_sym_PIPE] = ACTIONS(622), - [sym__whitespace1] = ACTIONS(963), - [sym__newline] = ACTIONS(965), - [aux_sym__text_token1] = ACTIONS(654), - [sym__verbatim_begin] = ACTIONS(656), - }, - [106] = { - [sym__inline] = STATE(680), - [sym__element] = STATE(87), - [sym_emphasis] = STATE(189), - [sym_emphasis_begin] = STATE(108), - [sym_strong] = STATE(189), - [sym_strong_begin] = STATE(109), - [sym__hard_line_break] = STATE(189), - [sym_hard_line_break] = STATE(189), - [sym__smart_punctuation] = STATE(189), - [sym_autolink] = STATE(189), - [sym_highlighted] = STATE(189), - [sym_insert] = STATE(189), - [sym_delete] = STATE(189), - [sym_superscript] = STATE(189), - [sym_subscript] = STATE(189), - [sym_footnote_reference] = STATE(189), - [sym__image] = STATE(189), - [sym_full_reference_image] = STATE(189), - [sym_collapsed_reference_image] = STATE(189), - [sym_inline_image] = STATE(189), - [sym__image_description] = STATE(655), - [sym__link] = STATE(189), - [sym_full_reference_link] = STATE(189), - [sym_collapsed_reference_link] = STATE(189), - [sym_inline_link] = STATE(189), - [sym_link_text] = STATE(626), - [sym__comment_with_spaces] = STATE(189), - [sym_span] = STATE(189), - [sym_raw_inline] = STATE(189), - [sym_math] = STATE(189), - [sym_verbatim] = STATE(189), - [sym__todo_highlights] = STATE(189), - [sym_todo] = STATE(189), - [sym_note] = STATE(189), - [sym__symbol_fallback] = STATE(189), - [aux_sym__text] = STATE(155), - [aux_sym__inline_repeat1] = STATE(87), - [anon_sym_LBRACE_] = ACTIONS(915), - [anon_sym__] = ACTIONS(917), - [anon_sym_LBRACE_STAR] = ACTIONS(919), - [anon_sym_STAR] = ACTIONS(921), - [anon_sym_BSLASH] = ACTIONS(923), - [sym_quotation_marks] = ACTIONS(925), - [sym_ellipsis] = ACTIONS(925), - [sym_em_dash] = ACTIONS(925), - [sym_en_dash] = ACTIONS(927), - [sym_backslash_escape] = ACTIONS(927), - [anon_sym_LT] = ACTIONS(929), - [anon_sym_LBRACE_EQ] = ACTIONS(931), - [anon_sym_LBRACE_PLUS] = ACTIONS(933), - [anon_sym_LBRACE_DASH] = ACTIONS(935), - [sym_symbol] = ACTIONS(925), - [anon_sym_LBRACE_CARET] = ACTIONS(937), - [anon_sym_CARET] = ACTIONS(937), - [anon_sym_LBRACE_TILDE] = ACTIONS(939), - [anon_sym_TILDE] = ACTIONS(939), - [anon_sym_LBRACK_CARET] = ACTIONS(941), - [anon_sym_BANG_LBRACK] = ACTIONS(943), - [anon_sym_LBRACK] = ACTIONS(945), - [anon_sym_LBRACE2] = ACTIONS(927), - [anon_sym_DOLLAR] = ACTIONS(947), - [anon_sym_TODO] = ACTIONS(949), - [anon_sym_WIP] = ACTIONS(949), - [anon_sym_NOTE] = ACTIONS(951), - [anon_sym_INFO] = ACTIONS(951), - [anon_sym_XXX] = ACTIONS(951), - [sym_fixme] = ACTIONS(925), - [anon_sym_PIPE] = ACTIONS(925), - [sym__whitespace1] = ACTIONS(953), - [sym__newline] = ACTIONS(955), - [aux_sym__text_token1] = ACTIONS(957), - [sym__verbatim_begin] = ACTIONS(959), - }, - [107] = { - [sym__inline] = STATE(735), - [sym__element] = STATE(79), - [sym_emphasis] = STATE(178), - [sym_emphasis_begin] = STATE(115), - [sym_strong] = STATE(178), - [sym_strong_begin] = STATE(117), - [sym__hard_line_break] = STATE(178), - [sym_hard_line_break] = STATE(178), - [sym__smart_punctuation] = STATE(178), - [sym_autolink] = STATE(178), - [sym_highlighted] = STATE(178), - [sym_insert] = STATE(178), - [sym_delete] = STATE(178), - [sym_superscript] = STATE(178), - [sym_subscript] = STATE(178), - [sym_footnote_reference] = STATE(178), - [sym__image] = STATE(178), - [sym_full_reference_image] = STATE(178), - [sym_collapsed_reference_image] = STATE(178), - [sym_inline_image] = STATE(178), - [sym__image_description] = STATE(640), - [sym__link] = STATE(178), - [sym_full_reference_link] = STATE(178), - [sym_collapsed_reference_link] = STATE(178), - [sym_inline_link] = STATE(178), - [sym_link_text] = STATE(636), - [sym__comment_with_spaces] = STATE(178), - [sym_span] = STATE(178), - [sym_raw_inline] = STATE(178), - [sym_math] = STATE(178), - [sym_verbatim] = STATE(178), - [sym__todo_highlights] = STATE(178), - [sym_todo] = STATE(178), - [sym_note] = STATE(178), - [sym__symbol_fallback] = STATE(178), - [aux_sym__text] = STATE(146), - [aux_sym__inline_repeat1] = STATE(79), - [anon_sym_LBRACE_] = ACTIONS(564), - [anon_sym__] = ACTIONS(566), - [anon_sym_LBRACE_STAR] = ACTIONS(568), - [anon_sym_STAR] = ACTIONS(570), - [anon_sym_BSLASH] = ACTIONS(572), - [sym_quotation_marks] = ACTIONS(574), - [sym_ellipsis] = ACTIONS(574), - [sym_em_dash] = ACTIONS(574), - [sym_en_dash] = ACTIONS(576), - [sym_backslash_escape] = ACTIONS(576), - [anon_sym_LT] = ACTIONS(578), - [anon_sym_LBRACE_EQ] = ACTIONS(580), - [anon_sym_LBRACE_PLUS] = ACTIONS(582), - [anon_sym_LBRACE_DASH] = ACTIONS(584), - [sym_symbol] = ACTIONS(574), - [anon_sym_LBRACE_CARET] = ACTIONS(586), - [anon_sym_CARET] = ACTIONS(586), - [anon_sym_LBRACE_TILDE] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_LBRACK_CARET] = ACTIONS(590), - [anon_sym_BANG_LBRACK] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(594), - [anon_sym_LBRACE2] = ACTIONS(576), - [anon_sym_DOLLAR] = ACTIONS(596), - [anon_sym_TODO] = ACTIONS(598), - [anon_sym_WIP] = ACTIONS(598), - [anon_sym_NOTE] = ACTIONS(600), - [anon_sym_INFO] = ACTIONS(600), - [anon_sym_XXX] = ACTIONS(600), - [sym_fixme] = ACTIONS(574), - [anon_sym_PIPE] = ACTIONS(574), - [sym__whitespace1] = ACTIONS(602), - [sym__newline] = ACTIONS(604), - [aux_sym__text_token1] = ACTIONS(606), - [sym__verbatim_begin] = ACTIONS(608), - }, - [108] = { - [sym__inline] = STATE(661), - [sym__element] = STATE(87), - [sym_emphasis] = STATE(189), - [sym_emphasis_begin] = STATE(108), - [sym_strong] = STATE(189), - [sym_strong_begin] = STATE(109), - [sym__hard_line_break] = STATE(189), - [sym_hard_line_break] = STATE(189), - [sym__smart_punctuation] = STATE(189), - [sym_autolink] = STATE(189), - [sym_highlighted] = STATE(189), - [sym_insert] = STATE(189), - [sym_delete] = STATE(189), - [sym_superscript] = STATE(189), - [sym_subscript] = STATE(189), - [sym_footnote_reference] = STATE(189), - [sym__image] = STATE(189), - [sym_full_reference_image] = STATE(189), - [sym_collapsed_reference_image] = STATE(189), - [sym_inline_image] = STATE(189), - [sym__image_description] = STATE(655), - [sym__link] = STATE(189), - [sym_full_reference_link] = STATE(189), - [sym_collapsed_reference_link] = STATE(189), - [sym_inline_link] = STATE(189), - [sym_link_text] = STATE(626), - [sym__comment_with_spaces] = STATE(189), - [sym_span] = STATE(189), - [sym_raw_inline] = STATE(189), - [sym_math] = STATE(189), - [sym_verbatim] = STATE(189), - [sym__todo_highlights] = STATE(189), - [sym_todo] = STATE(189), - [sym_note] = STATE(189), - [sym__symbol_fallback] = STATE(189), - [aux_sym__text] = STATE(155), - [aux_sym__inline_repeat1] = STATE(87), - [anon_sym_LBRACE_] = ACTIONS(915), - [anon_sym__] = ACTIONS(917), - [anon_sym_LBRACE_STAR] = ACTIONS(919), - [anon_sym_STAR] = ACTIONS(921), - [anon_sym_BSLASH] = ACTIONS(923), - [sym_quotation_marks] = ACTIONS(925), - [sym_ellipsis] = ACTIONS(925), - [sym_em_dash] = ACTIONS(925), - [sym_en_dash] = ACTIONS(927), - [sym_backslash_escape] = ACTIONS(927), - [anon_sym_LT] = ACTIONS(929), - [anon_sym_LBRACE_EQ] = ACTIONS(931), - [anon_sym_LBRACE_PLUS] = ACTIONS(933), - [anon_sym_LBRACE_DASH] = ACTIONS(935), - [sym_symbol] = ACTIONS(925), - [anon_sym_LBRACE_CARET] = ACTIONS(937), - [anon_sym_CARET] = ACTIONS(937), - [anon_sym_LBRACE_TILDE] = ACTIONS(939), - [anon_sym_TILDE] = ACTIONS(939), - [anon_sym_LBRACK_CARET] = ACTIONS(941), - [anon_sym_BANG_LBRACK] = ACTIONS(943), - [anon_sym_LBRACK] = ACTIONS(945), - [anon_sym_LBRACE2] = ACTIONS(927), - [anon_sym_DOLLAR] = ACTIONS(947), - [anon_sym_TODO] = ACTIONS(949), - [anon_sym_WIP] = ACTIONS(949), - [anon_sym_NOTE] = ACTIONS(951), - [anon_sym_INFO] = ACTIONS(951), - [anon_sym_XXX] = ACTIONS(951), - [sym_fixme] = ACTIONS(925), - [anon_sym_PIPE] = ACTIONS(925), - [sym__whitespace1] = ACTIONS(953), - [sym__newline] = ACTIONS(955), - [aux_sym__text_token1] = ACTIONS(957), - [sym__verbatim_begin] = ACTIONS(959), - }, - [109] = { - [sym__inline] = STATE(671), - [sym__element] = STATE(73), - [sym_emphasis] = STATE(179), - [sym_emphasis_begin] = STATE(111), - [sym_strong] = STATE(179), - [sym_strong_begin] = STATE(112), - [sym__hard_line_break] = STATE(179), - [sym_hard_line_break] = STATE(179), - [sym__smart_punctuation] = STATE(179), - [sym_autolink] = STATE(179), - [sym_highlighted] = STATE(179), - [sym_insert] = STATE(179), - [sym_delete] = STATE(179), - [sym_superscript] = STATE(179), - [sym_subscript] = STATE(179), - [sym_footnote_reference] = STATE(179), - [sym__image] = STATE(179), - [sym_full_reference_image] = STATE(179), - [sym_collapsed_reference_image] = STATE(179), - [sym_inline_image] = STATE(179), - [sym__image_description] = STATE(625), - [sym__link] = STATE(179), - [sym_full_reference_link] = STATE(179), - [sym_collapsed_reference_link] = STATE(179), - [sym_inline_link] = STATE(179), - [sym_link_text] = STATE(647), - [sym__comment_with_spaces] = STATE(179), - [sym_span] = STATE(179), - [sym_raw_inline] = STATE(179), - [sym_math] = STATE(179), - [sym_verbatim] = STATE(179), - [sym__todo_highlights] = STATE(179), - [sym_todo] = STATE(179), - [sym_note] = STATE(179), - [sym__symbol_fallback] = STATE(179), - [aux_sym__text] = STATE(171), - [aux_sym__inline_repeat1] = STATE(73), - [anon_sym_LBRACE_] = ACTIONS(610), - [anon_sym__] = ACTIONS(612), - [anon_sym_LBRACE_STAR] = ACTIONS(614), - [anon_sym_STAR] = ACTIONS(961), - [anon_sym_BSLASH] = ACTIONS(620), - [sym_quotation_marks] = ACTIONS(622), - [sym_ellipsis] = ACTIONS(622), - [sym_em_dash] = ACTIONS(622), - [sym_en_dash] = ACTIONS(624), - [sym_backslash_escape] = ACTIONS(624), - [anon_sym_LT] = ACTIONS(626), - [anon_sym_LBRACE_EQ] = ACTIONS(628), - [anon_sym_LBRACE_PLUS] = ACTIONS(630), - [anon_sym_LBRACE_DASH] = ACTIONS(632), - [sym_symbol] = ACTIONS(622), - [anon_sym_LBRACE_CARET] = ACTIONS(634), - [anon_sym_CARET] = ACTIONS(634), - [anon_sym_LBRACE_TILDE] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(636), - [anon_sym_LBRACK_CARET] = ACTIONS(638), - [anon_sym_BANG_LBRACK] = ACTIONS(640), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_LBRACE2] = ACTIONS(624), - [anon_sym_DOLLAR] = ACTIONS(644), - [anon_sym_TODO] = ACTIONS(646), - [anon_sym_WIP] = ACTIONS(646), - [anon_sym_NOTE] = ACTIONS(648), - [anon_sym_INFO] = ACTIONS(648), - [anon_sym_XXX] = ACTIONS(648), - [sym_fixme] = ACTIONS(622), - [anon_sym_PIPE] = ACTIONS(622), - [sym__whitespace1] = ACTIONS(963), - [sym__newline] = ACTIONS(965), - [aux_sym__text_token1] = ACTIONS(654), - [sym__verbatim_begin] = ACTIONS(656), - }, - [110] = { - [sym__inline] = STATE(752), - [sym__element] = STATE(79), - [sym_emphasis] = STATE(178), - [sym_emphasis_begin] = STATE(115), - [sym_strong] = STATE(178), - [sym_strong_begin] = STATE(117), - [sym__hard_line_break] = STATE(178), - [sym_hard_line_break] = STATE(178), - [sym__smart_punctuation] = STATE(178), - [sym_autolink] = STATE(178), - [sym_highlighted] = STATE(178), - [sym_insert] = STATE(178), - [sym_delete] = STATE(178), - [sym_superscript] = STATE(178), - [sym_subscript] = STATE(178), - [sym_footnote_reference] = STATE(178), - [sym__image] = STATE(178), - [sym_full_reference_image] = STATE(178), - [sym_collapsed_reference_image] = STATE(178), - [sym_inline_image] = STATE(178), - [sym__image_description] = STATE(640), - [sym__link] = STATE(178), - [sym_full_reference_link] = STATE(178), - [sym_collapsed_reference_link] = STATE(178), - [sym_inline_link] = STATE(178), - [sym_link_text] = STATE(636), - [sym__comment_with_spaces] = STATE(178), - [sym_span] = STATE(178), - [sym_raw_inline] = STATE(178), - [sym_math] = STATE(178), - [sym_verbatim] = STATE(178), - [sym__todo_highlights] = STATE(178), - [sym_todo] = STATE(178), - [sym_note] = STATE(178), - [sym__symbol_fallback] = STATE(178), - [aux_sym__text] = STATE(146), - [aux_sym__inline_repeat1] = STATE(79), - [anon_sym_LBRACE_] = ACTIONS(564), - [anon_sym__] = ACTIONS(566), - [anon_sym_LBRACE_STAR] = ACTIONS(568), - [anon_sym_STAR] = ACTIONS(570), - [anon_sym_BSLASH] = ACTIONS(572), - [sym_quotation_marks] = ACTIONS(574), - [sym_ellipsis] = ACTIONS(574), - [sym_em_dash] = ACTIONS(574), - [sym_en_dash] = ACTIONS(576), - [sym_backslash_escape] = ACTIONS(576), - [anon_sym_LT] = ACTIONS(578), - [anon_sym_LBRACE_EQ] = ACTIONS(580), - [anon_sym_LBRACE_PLUS] = ACTIONS(582), - [anon_sym_LBRACE_DASH] = ACTIONS(584), - [sym_symbol] = ACTIONS(574), - [anon_sym_LBRACE_CARET] = ACTIONS(586), - [anon_sym_CARET] = ACTIONS(586), - [anon_sym_LBRACE_TILDE] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_LBRACK_CARET] = ACTIONS(590), - [anon_sym_BANG_LBRACK] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(594), - [anon_sym_LBRACE2] = ACTIONS(576), - [anon_sym_DOLLAR] = ACTIONS(596), - [anon_sym_TODO] = ACTIONS(598), - [anon_sym_WIP] = ACTIONS(598), - [anon_sym_NOTE] = ACTIONS(600), - [anon_sym_INFO] = ACTIONS(600), - [anon_sym_XXX] = ACTIONS(600), - [sym_fixme] = ACTIONS(574), - [anon_sym_PIPE] = ACTIONS(574), - [sym__whitespace1] = ACTIONS(602), - [sym__newline] = ACTIONS(604), - [aux_sym__text_token1] = ACTIONS(606), - [sym__verbatim_begin] = ACTIONS(608), - }, - [111] = { - [sym__inline] = STATE(659), - [sym__element] = STATE(87), - [sym_emphasis] = STATE(189), - [sym_emphasis_begin] = STATE(108), - [sym_strong] = STATE(189), - [sym_strong_begin] = STATE(109), - [sym__hard_line_break] = STATE(189), - [sym_hard_line_break] = STATE(189), - [sym__smart_punctuation] = STATE(189), - [sym_autolink] = STATE(189), - [sym_highlighted] = STATE(189), - [sym_insert] = STATE(189), - [sym_delete] = STATE(189), - [sym_superscript] = STATE(189), - [sym_subscript] = STATE(189), - [sym_footnote_reference] = STATE(189), - [sym__image] = STATE(189), - [sym_full_reference_image] = STATE(189), - [sym_collapsed_reference_image] = STATE(189), - [sym_inline_image] = STATE(189), - [sym__image_description] = STATE(655), - [sym__link] = STATE(189), - [sym_full_reference_link] = STATE(189), - [sym_collapsed_reference_link] = STATE(189), - [sym_inline_link] = STATE(189), - [sym_link_text] = STATE(626), - [sym__comment_with_spaces] = STATE(189), - [sym_span] = STATE(189), - [sym_raw_inline] = STATE(189), - [sym_math] = STATE(189), - [sym_verbatim] = STATE(189), - [sym__todo_highlights] = STATE(189), - [sym_todo] = STATE(189), - [sym_note] = STATE(189), - [sym__symbol_fallback] = STATE(189), - [aux_sym__text] = STATE(155), - [aux_sym__inline_repeat1] = STATE(87), - [anon_sym_LBRACE_] = ACTIONS(915), - [anon_sym__] = ACTIONS(917), - [anon_sym_LBRACE_STAR] = ACTIONS(919), - [anon_sym_STAR] = ACTIONS(921), - [anon_sym_BSLASH] = ACTIONS(923), - [sym_quotation_marks] = ACTIONS(925), - [sym_ellipsis] = ACTIONS(925), - [sym_em_dash] = ACTIONS(925), - [sym_en_dash] = ACTIONS(927), - [sym_backslash_escape] = ACTIONS(927), - [anon_sym_LT] = ACTIONS(929), - [anon_sym_LBRACE_EQ] = ACTIONS(931), - [anon_sym_LBRACE_PLUS] = ACTIONS(933), - [anon_sym_LBRACE_DASH] = ACTIONS(935), - [sym_symbol] = ACTIONS(925), - [anon_sym_LBRACE_CARET] = ACTIONS(937), - [anon_sym_CARET] = ACTIONS(937), - [anon_sym_LBRACE_TILDE] = ACTIONS(939), - [anon_sym_TILDE] = ACTIONS(939), - [anon_sym_LBRACK_CARET] = ACTIONS(941), - [anon_sym_BANG_LBRACK] = ACTIONS(943), - [anon_sym_LBRACK] = ACTIONS(945), - [anon_sym_LBRACE2] = ACTIONS(927), - [anon_sym_DOLLAR] = ACTIONS(947), - [anon_sym_TODO] = ACTIONS(949), - [anon_sym_WIP] = ACTIONS(949), - [anon_sym_NOTE] = ACTIONS(951), - [anon_sym_INFO] = ACTIONS(951), - [anon_sym_XXX] = ACTIONS(951), - [sym_fixme] = ACTIONS(925), - [anon_sym_PIPE] = ACTIONS(925), - [sym__whitespace1] = ACTIONS(953), - [sym__newline] = ACTIONS(955), - [aux_sym__text_token1] = ACTIONS(957), - [sym__verbatim_begin] = ACTIONS(959), - }, - [112] = { - [sym__inline] = STATE(666), - [sym__element] = STATE(73), - [sym_emphasis] = STATE(179), - [sym_emphasis_begin] = STATE(111), - [sym_strong] = STATE(179), - [sym_strong_begin] = STATE(112), - [sym__hard_line_break] = STATE(179), - [sym_hard_line_break] = STATE(179), - [sym__smart_punctuation] = STATE(179), - [sym_autolink] = STATE(179), - [sym_highlighted] = STATE(179), - [sym_insert] = STATE(179), - [sym_delete] = STATE(179), - [sym_superscript] = STATE(179), - [sym_subscript] = STATE(179), - [sym_footnote_reference] = STATE(179), - [sym__image] = STATE(179), - [sym_full_reference_image] = STATE(179), - [sym_collapsed_reference_image] = STATE(179), - [sym_inline_image] = STATE(179), - [sym__image_description] = STATE(625), - [sym__link] = STATE(179), - [sym_full_reference_link] = STATE(179), - [sym_collapsed_reference_link] = STATE(179), - [sym_inline_link] = STATE(179), - [sym_link_text] = STATE(647), - [sym__comment_with_spaces] = STATE(179), - [sym_span] = STATE(179), - [sym_raw_inline] = STATE(179), - [sym_math] = STATE(179), - [sym_verbatim] = STATE(179), - [sym__todo_highlights] = STATE(179), - [sym_todo] = STATE(179), - [sym_note] = STATE(179), - [sym__symbol_fallback] = STATE(179), - [aux_sym__text] = STATE(171), - [aux_sym__inline_repeat1] = STATE(73), - [anon_sym_LBRACE_] = ACTIONS(610), - [anon_sym__] = ACTIONS(612), - [anon_sym_LBRACE_STAR] = ACTIONS(614), - [anon_sym_STAR] = ACTIONS(961), - [anon_sym_BSLASH] = ACTIONS(620), - [sym_quotation_marks] = ACTIONS(622), - [sym_ellipsis] = ACTIONS(622), - [sym_em_dash] = ACTIONS(622), - [sym_en_dash] = ACTIONS(624), - [sym_backslash_escape] = ACTIONS(624), - [anon_sym_LT] = ACTIONS(626), - [anon_sym_LBRACE_EQ] = ACTIONS(628), - [anon_sym_LBRACE_PLUS] = ACTIONS(630), - [anon_sym_LBRACE_DASH] = ACTIONS(632), - [sym_symbol] = ACTIONS(622), - [anon_sym_LBRACE_CARET] = ACTIONS(634), - [anon_sym_CARET] = ACTIONS(634), - [anon_sym_LBRACE_TILDE] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(636), - [anon_sym_LBRACK_CARET] = ACTIONS(638), - [anon_sym_BANG_LBRACK] = ACTIONS(640), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_LBRACE2] = ACTIONS(624), - [anon_sym_DOLLAR] = ACTIONS(644), - [anon_sym_TODO] = ACTIONS(646), - [anon_sym_WIP] = ACTIONS(646), - [anon_sym_NOTE] = ACTIONS(648), - [anon_sym_INFO] = ACTIONS(648), - [anon_sym_XXX] = ACTIONS(648), - [sym_fixme] = ACTIONS(622), - [anon_sym_PIPE] = ACTIONS(622), - [sym__whitespace1] = ACTIONS(963), - [sym__newline] = ACTIONS(965), - [aux_sym__text_token1] = ACTIONS(654), - [sym__verbatim_begin] = ACTIONS(656), - }, - [113] = { - [sym__element] = STATE(113), - [sym_emphasis] = STATE(174), - [sym_emphasis_begin] = STATE(86), - [sym_strong] = STATE(174), - [sym_strong_begin] = STATE(89), - [sym__hard_line_break] = STATE(174), - [sym_hard_line_break] = STATE(174), - [sym__smart_punctuation] = STATE(174), - [sym_autolink] = STATE(174), - [sym_highlighted] = STATE(174), - [sym_insert] = STATE(174), - [sym_delete] = STATE(174), - [sym_superscript] = STATE(174), - [sym_subscript] = STATE(174), - [sym_footnote_reference] = STATE(174), - [sym__image] = STATE(174), - [sym_full_reference_image] = STATE(174), - [sym_collapsed_reference_image] = STATE(174), - [sym_inline_image] = STATE(174), - [sym__image_description] = STATE(630), - [sym__link] = STATE(174), - [sym_full_reference_link] = STATE(174), - [sym_collapsed_reference_link] = STATE(174), - [sym_inline_link] = STATE(174), - [sym_link_text] = STATE(631), - [sym__comment_with_spaces] = STATE(174), - [sym_span] = STATE(174), - [sym_raw_inline] = STATE(174), - [sym_math] = STATE(174), - [sym_verbatim] = STATE(174), - [sym__todo_highlights] = STATE(174), - [sym_todo] = STATE(174), - [sym_note] = STATE(174), - [sym__symbol_fallback] = STATE(174), - [aux_sym__text] = STATE(148), - [aux_sym__inline_repeat1] = STATE(113), - [anon_sym_LBRACE_] = ACTIONS(1344), - [anon_sym__] = ACTIONS(1347), - [anon_sym_LBRACE_STAR] = ACTIONS(1350), - [anon_sym_STAR] = ACTIONS(1353), - [anon_sym_BSLASH] = ACTIONS(1356), - [sym_quotation_marks] = ACTIONS(1359), - [sym_ellipsis] = ACTIONS(1359), - [sym_em_dash] = ACTIONS(1359), - [sym_en_dash] = ACTIONS(1362), - [sym_backslash_escape] = ACTIONS(1362), - [anon_sym_LT] = ACTIONS(1365), - [anon_sym_LBRACE_EQ] = ACTIONS(1368), - [anon_sym_LBRACE_PLUS] = ACTIONS(1371), - [anon_sym_PLUS_RBRACE] = ACTIONS(670), - [anon_sym_LBRACE_DASH] = ACTIONS(1374), - [sym_symbol] = ACTIONS(1359), - [anon_sym_LBRACE_CARET] = ACTIONS(1377), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LBRACE_TILDE] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1380), - [anon_sym_LBRACK_CARET] = ACTIONS(1383), - [anon_sym_BANG_LBRACK] = ACTIONS(1386), - [anon_sym_LBRACK] = ACTIONS(1389), - [anon_sym_LBRACE2] = ACTIONS(1362), - [anon_sym_DOLLAR] = ACTIONS(1392), - [anon_sym_TODO] = ACTIONS(1395), - [anon_sym_WIP] = ACTIONS(1395), - [anon_sym_NOTE] = ACTIONS(1398), - [anon_sym_INFO] = ACTIONS(1398), - [anon_sym_XXX] = ACTIONS(1398), - [sym_fixme] = ACTIONS(1359), - [anon_sym_PIPE] = ACTIONS(1359), - [sym__whitespace1] = ACTIONS(1401), - [sym__newline] = ACTIONS(1404), - [aux_sym__text_token1] = ACTIONS(1407), - [sym__verbatim_begin] = ACTIONS(1410), - }, - [114] = { - [sym__inline] = STATE(771), - [sym__element] = STATE(79), - [sym_emphasis] = STATE(178), - [sym_emphasis_begin] = STATE(115), - [sym_strong] = STATE(178), - [sym_strong_begin] = STATE(117), - [sym__hard_line_break] = STATE(178), - [sym_hard_line_break] = STATE(178), - [sym__smart_punctuation] = STATE(178), - [sym_autolink] = STATE(178), - [sym_highlighted] = STATE(178), - [sym_insert] = STATE(178), - [sym_delete] = STATE(178), - [sym_superscript] = STATE(178), - [sym_subscript] = STATE(178), - [sym_footnote_reference] = STATE(178), - [sym__image] = STATE(178), - [sym_full_reference_image] = STATE(178), - [sym_collapsed_reference_image] = STATE(178), - [sym_inline_image] = STATE(178), - [sym__image_description] = STATE(640), - [sym__link] = STATE(178), - [sym_full_reference_link] = STATE(178), - [sym_collapsed_reference_link] = STATE(178), - [sym_inline_link] = STATE(178), - [sym_link_text] = STATE(636), - [sym__comment_with_spaces] = STATE(178), - [sym_span] = STATE(178), - [sym_raw_inline] = STATE(178), - [sym_math] = STATE(178), - [sym_verbatim] = STATE(178), - [sym__todo_highlights] = STATE(178), - [sym_todo] = STATE(178), - [sym_note] = STATE(178), - [sym__symbol_fallback] = STATE(178), - [aux_sym__text] = STATE(146), - [aux_sym__inline_repeat1] = STATE(79), - [anon_sym_LBRACE_] = ACTIONS(564), - [anon_sym__] = ACTIONS(566), - [anon_sym_LBRACE_STAR] = ACTIONS(568), - [anon_sym_STAR] = ACTIONS(570), - [anon_sym_BSLASH] = ACTIONS(572), - [sym_quotation_marks] = ACTIONS(574), - [sym_ellipsis] = ACTIONS(574), - [sym_em_dash] = ACTIONS(574), - [sym_en_dash] = ACTIONS(576), - [sym_backslash_escape] = ACTIONS(576), - [anon_sym_LT] = ACTIONS(578), - [anon_sym_LBRACE_EQ] = ACTIONS(580), - [anon_sym_LBRACE_PLUS] = ACTIONS(582), - [anon_sym_LBRACE_DASH] = ACTIONS(584), - [sym_symbol] = ACTIONS(574), - [anon_sym_LBRACE_CARET] = ACTIONS(586), - [anon_sym_CARET] = ACTIONS(586), - [anon_sym_LBRACE_TILDE] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_LBRACK_CARET] = ACTIONS(590), - [anon_sym_BANG_LBRACK] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(594), - [anon_sym_LBRACE2] = ACTIONS(576), - [anon_sym_DOLLAR] = ACTIONS(596), - [anon_sym_TODO] = ACTIONS(598), - [anon_sym_WIP] = ACTIONS(598), - [anon_sym_NOTE] = ACTIONS(600), - [anon_sym_INFO] = ACTIONS(600), - [anon_sym_XXX] = ACTIONS(600), - [sym_fixme] = ACTIONS(574), - [anon_sym_PIPE] = ACTIONS(574), - [sym__whitespace1] = ACTIONS(602), - [sym__newline] = ACTIONS(604), - [aux_sym__text_token1] = ACTIONS(606), - [sym__verbatim_begin] = ACTIONS(608), - }, - [115] = { - [sym__inline] = STATE(676), - [sym__element] = STATE(87), - [sym_emphasis] = STATE(189), - [sym_emphasis_begin] = STATE(108), - [sym_strong] = STATE(189), - [sym_strong_begin] = STATE(109), - [sym__hard_line_break] = STATE(189), - [sym_hard_line_break] = STATE(189), - [sym__smart_punctuation] = STATE(189), - [sym_autolink] = STATE(189), - [sym_highlighted] = STATE(189), - [sym_insert] = STATE(189), - [sym_delete] = STATE(189), - [sym_superscript] = STATE(189), - [sym_subscript] = STATE(189), - [sym_footnote_reference] = STATE(189), - [sym__image] = STATE(189), - [sym_full_reference_image] = STATE(189), - [sym_collapsed_reference_image] = STATE(189), - [sym_inline_image] = STATE(189), - [sym__image_description] = STATE(655), - [sym__link] = STATE(189), - [sym_full_reference_link] = STATE(189), - [sym_collapsed_reference_link] = STATE(189), - [sym_inline_link] = STATE(189), - [sym_link_text] = STATE(626), - [sym__comment_with_spaces] = STATE(189), - [sym_span] = STATE(189), - [sym_raw_inline] = STATE(189), - [sym_math] = STATE(189), - [sym_verbatim] = STATE(189), - [sym__todo_highlights] = STATE(189), - [sym_todo] = STATE(189), - [sym_note] = STATE(189), - [sym__symbol_fallback] = STATE(189), - [aux_sym__text] = STATE(155), - [aux_sym__inline_repeat1] = STATE(87), - [anon_sym_LBRACE_] = ACTIONS(915), - [anon_sym__] = ACTIONS(917), - [anon_sym_LBRACE_STAR] = ACTIONS(919), - [anon_sym_STAR] = ACTIONS(921), - [anon_sym_BSLASH] = ACTIONS(923), - [sym_quotation_marks] = ACTIONS(925), - [sym_ellipsis] = ACTIONS(925), - [sym_em_dash] = ACTIONS(925), - [sym_en_dash] = ACTIONS(927), - [sym_backslash_escape] = ACTIONS(927), - [anon_sym_LT] = ACTIONS(929), - [anon_sym_LBRACE_EQ] = ACTIONS(931), - [anon_sym_LBRACE_PLUS] = ACTIONS(933), - [anon_sym_LBRACE_DASH] = ACTIONS(935), - [sym_symbol] = ACTIONS(925), - [anon_sym_LBRACE_CARET] = ACTIONS(937), - [anon_sym_CARET] = ACTIONS(937), - [anon_sym_LBRACE_TILDE] = ACTIONS(939), - [anon_sym_TILDE] = ACTIONS(939), - [anon_sym_LBRACK_CARET] = ACTIONS(941), - [anon_sym_BANG_LBRACK] = ACTIONS(943), - [anon_sym_LBRACK] = ACTIONS(945), - [anon_sym_LBRACE2] = ACTIONS(927), - [anon_sym_DOLLAR] = ACTIONS(947), - [anon_sym_TODO] = ACTIONS(949), - [anon_sym_WIP] = ACTIONS(949), - [anon_sym_NOTE] = ACTIONS(951), - [anon_sym_INFO] = ACTIONS(951), - [anon_sym_XXX] = ACTIONS(951), - [sym_fixme] = ACTIONS(925), - [anon_sym_PIPE] = ACTIONS(925), - [sym__whitespace1] = ACTIONS(953), - [sym__newline] = ACTIONS(955), - [aux_sym__text_token1] = ACTIONS(957), - [sym__verbatim_begin] = ACTIONS(959), - }, - [116] = { - [sym__element] = STATE(121), - [sym_emphasis] = STATE(183), - [sym_emphasis_begin] = STATE(91), - [sym_strong] = STATE(183), - [sym_strong_begin] = STATE(92), - [sym__hard_line_break] = STATE(183), - [sym_hard_line_break] = STATE(183), - [sym__smart_punctuation] = STATE(183), - [sym_autolink] = STATE(183), - [sym_highlighted] = STATE(183), - [sym_insert] = STATE(183), - [sym_delete] = STATE(183), - [sym_superscript] = STATE(183), - [sym_subscript] = STATE(183), - [sym_footnote_reference] = STATE(183), - [sym__image] = STATE(183), - [sym_full_reference_image] = STATE(183), - [sym_collapsed_reference_image] = STATE(183), - [sym_inline_image] = STATE(183), - [sym__image_description] = STATE(645), - [sym__link] = STATE(183), - [sym_full_reference_link] = STATE(183), - [sym_collapsed_reference_link] = STATE(183), - [sym_inline_link] = STATE(183), - [sym_link_text] = STATE(646), - [sym__comment_with_spaces] = STATE(183), - [sym_span] = STATE(183), - [sym_raw_inline] = STATE(183), - [sym_math] = STATE(183), - [sym_verbatim] = STATE(183), - [sym__todo_highlights] = STATE(183), - [sym_todo] = STATE(183), - [sym_note] = STATE(183), - [sym__symbol_fallback] = STATE(183), - [aux_sym__text] = STATE(149), - [aux_sym__inline_repeat1] = STATE(121), - [anon_sym_LBRACE_] = ACTIONS(1413), - [anon_sym__] = ACTIONS(1415), - [anon_sym_LBRACE_STAR] = ACTIONS(1417), - [anon_sym_STAR] = ACTIONS(1419), - [anon_sym_BSLASH] = ACTIONS(1421), - [sym_quotation_marks] = ACTIONS(1423), - [sym_ellipsis] = ACTIONS(1423), - [sym_em_dash] = ACTIONS(1423), - [sym_en_dash] = ACTIONS(1425), - [sym_backslash_escape] = ACTIONS(1425), - [anon_sym_LT] = ACTIONS(1427), - [anon_sym_LBRACE_EQ] = ACTIONS(1429), - [anon_sym_LBRACE_PLUS] = ACTIONS(1431), - [anon_sym_LBRACE_DASH] = ACTIONS(1433), - [anon_sym_DASH_RBRACE] = ACTIONS(618), - [sym_symbol] = ACTIONS(1423), - [anon_sym_LBRACE_CARET] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_LBRACE_TILDE] = ACTIONS(1437), - [anon_sym_TILDE] = ACTIONS(1437), - [anon_sym_LBRACK_CARET] = ACTIONS(1439), - [anon_sym_BANG_LBRACK] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_LBRACE2] = ACTIONS(1425), - [anon_sym_DOLLAR] = ACTIONS(1445), - [anon_sym_TODO] = ACTIONS(1447), - [anon_sym_WIP] = ACTIONS(1447), - [anon_sym_NOTE] = ACTIONS(1449), - [anon_sym_INFO] = ACTIONS(1449), - [anon_sym_XXX] = ACTIONS(1449), - [sym_fixme] = ACTIONS(1423), - [anon_sym_PIPE] = ACTIONS(1423), - [sym__whitespace1] = ACTIONS(1451), - [sym__newline] = ACTIONS(1453), - [aux_sym__text_token1] = ACTIONS(1455), - [sym__verbatim_begin] = ACTIONS(1457), - }, - [117] = { - [sym__inline] = STATE(677), - [sym__element] = STATE(73), - [sym_emphasis] = STATE(179), - [sym_emphasis_begin] = STATE(111), - [sym_strong] = STATE(179), - [sym_strong_begin] = STATE(112), - [sym__hard_line_break] = STATE(179), - [sym_hard_line_break] = STATE(179), - [sym__smart_punctuation] = STATE(179), - [sym_autolink] = STATE(179), - [sym_highlighted] = STATE(179), - [sym_insert] = STATE(179), - [sym_delete] = STATE(179), - [sym_superscript] = STATE(179), - [sym_subscript] = STATE(179), - [sym_footnote_reference] = STATE(179), - [sym__image] = STATE(179), - [sym_full_reference_image] = STATE(179), - [sym_collapsed_reference_image] = STATE(179), - [sym_inline_image] = STATE(179), - [sym__image_description] = STATE(625), - [sym__link] = STATE(179), - [sym_full_reference_link] = STATE(179), - [sym_collapsed_reference_link] = STATE(179), - [sym_inline_link] = STATE(179), - [sym_link_text] = STATE(647), - [sym__comment_with_spaces] = STATE(179), - [sym_span] = STATE(179), - [sym_raw_inline] = STATE(179), - [sym_math] = STATE(179), - [sym_verbatim] = STATE(179), - [sym__todo_highlights] = STATE(179), - [sym_todo] = STATE(179), - [sym_note] = STATE(179), - [sym__symbol_fallback] = STATE(179), - [aux_sym__text] = STATE(171), - [aux_sym__inline_repeat1] = STATE(73), - [anon_sym_LBRACE_] = ACTIONS(610), - [anon_sym__] = ACTIONS(612), - [anon_sym_LBRACE_STAR] = ACTIONS(614), - [anon_sym_STAR] = ACTIONS(961), - [anon_sym_BSLASH] = ACTIONS(620), - [sym_quotation_marks] = ACTIONS(622), - [sym_ellipsis] = ACTIONS(622), - [sym_em_dash] = ACTIONS(622), - [sym_en_dash] = ACTIONS(624), - [sym_backslash_escape] = ACTIONS(624), - [anon_sym_LT] = ACTIONS(626), - [anon_sym_LBRACE_EQ] = ACTIONS(628), - [anon_sym_LBRACE_PLUS] = ACTIONS(630), - [anon_sym_LBRACE_DASH] = ACTIONS(632), - [sym_symbol] = ACTIONS(622), - [anon_sym_LBRACE_CARET] = ACTIONS(634), - [anon_sym_CARET] = ACTIONS(634), - [anon_sym_LBRACE_TILDE] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(636), - [anon_sym_LBRACK_CARET] = ACTIONS(638), - [anon_sym_BANG_LBRACK] = ACTIONS(640), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_LBRACE2] = ACTIONS(624), - [anon_sym_DOLLAR] = ACTIONS(644), - [anon_sym_TODO] = ACTIONS(646), - [anon_sym_WIP] = ACTIONS(646), - [anon_sym_NOTE] = ACTIONS(648), - [anon_sym_INFO] = ACTIONS(648), - [anon_sym_XXX] = ACTIONS(648), - [sym_fixme] = ACTIONS(622), - [anon_sym_PIPE] = ACTIONS(622), - [sym__whitespace1] = ACTIONS(963), - [sym__newline] = ACTIONS(965), - [aux_sym__text_token1] = ACTIONS(654), - [sym__verbatim_begin] = ACTIONS(656), - }, - [118] = { - [sym__element] = STATE(118), + [58] = { + [sym__inline] = STATE(722), + [sym__element] = STATE(97), [sym_emphasis] = STATE(182), - [sym_emphasis_begin] = STATE(97), + [sym_emphasis_begin] = STATE(898), [sym_strong] = STATE(182), - [sym_strong_begin] = STATE(99), + [sym_strong_begin] = STATE(104), [sym__hard_line_break] = STATE(182), [sym_hard_line_break] = STATE(182), [sym__smart_punctuation] = STATE(182), @@ -16913,12 +12069,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_full_reference_image] = STATE(182), [sym_collapsed_reference_image] = STATE(182), [sym_inline_image] = STATE(182), - [sym__image_description] = STATE(628), + [sym__image_description] = STATE(610), [sym__link] = STATE(182), [sym_full_reference_link] = STATE(182), [sym_collapsed_reference_link] = STATE(182), [sym_inline_link] = STATE(182), - [sym_link_text] = STATE(627), + [sym_link_text] = STATE(608), [sym__comment_with_spaces] = STATE(182), [sym_span] = STATE(182), [sym_raw_inline] = STATE(182), @@ -16928,125 +12084,735 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(182), [sym_note] = STATE(182), [sym__symbol_fallback] = STATE(182), - [aux_sym__text] = STATE(136), - [aux_sym__inline_repeat1] = STATE(118), - [anon_sym_LBRACE_] = ACTIONS(1459), - [anon_sym__] = ACTIONS(1462), - [anon_sym_LBRACE_STAR] = ACTIONS(1465), - [anon_sym_STAR] = ACTIONS(1468), - [anon_sym_BSLASH] = ACTIONS(1471), - [sym_quotation_marks] = ACTIONS(1474), - [sym_ellipsis] = ACTIONS(1474), - [sym_em_dash] = ACTIONS(1474), - [sym_en_dash] = ACTIONS(1477), - [sym_backslash_escape] = ACTIONS(1477), - [anon_sym_LT] = ACTIONS(1480), - [anon_sym_LBRACE_EQ] = ACTIONS(1483), - [anon_sym_LBRACE_PLUS] = ACTIONS(1486), - [anon_sym_LBRACE_DASH] = ACTIONS(1489), - [sym_symbol] = ACTIONS(1474), - [anon_sym_LBRACE_CARET] = ACTIONS(1492), - [anon_sym_CARET] = ACTIONS(1492), - [anon_sym_LBRACE_TILDE] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1498), - [anon_sym_TILDE_RBRACE] = ACTIONS(670), - [anon_sym_LBRACK_CARET] = ACTIONS(1501), - [anon_sym_BANG_LBRACK] = ACTIONS(1504), - [anon_sym_LBRACK] = ACTIONS(1507), - [anon_sym_LBRACE2] = ACTIONS(1477), - [anon_sym_DOLLAR] = ACTIONS(1510), - [anon_sym_TODO] = ACTIONS(1513), - [anon_sym_WIP] = ACTIONS(1513), - [anon_sym_NOTE] = ACTIONS(1516), - [anon_sym_INFO] = ACTIONS(1516), - [anon_sym_XXX] = ACTIONS(1516), - [sym_fixme] = ACTIONS(1474), - [anon_sym_PIPE] = ACTIONS(1474), - [sym__whitespace1] = ACTIONS(1519), - [sym__newline] = ACTIONS(1522), - [aux_sym__text_token1] = ACTIONS(1525), - [sym__verbatim_begin] = ACTIONS(1528), + [aux_sym__text] = STATE(144), + [aux_sym__inline_repeat1] = STATE(97), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_] = ACTIONS(49), + [anon_sym__] = ACTIONS(52), + [anon_sym_LBRACE_STAR] = ACTIONS(55), + [anon_sym_STAR] = ACTIONS(58), + [anon_sym_BSLASH] = ACTIONS(61), + [sym_quotation_marks] = ACTIONS(52), + [sym_ellipsis] = ACTIONS(52), + [sym_em_dash] = ACTIONS(52), + [sym_en_dash] = ACTIONS(64), + [sym_backslash_escape] = ACTIONS(64), + [anon_sym_LT] = ACTIONS(67), + [anon_sym_LBRACE_EQ] = ACTIONS(70), + [anon_sym_LBRACE_PLUS] = ACTIONS(73), + [anon_sym_LBRACE_DASH] = ACTIONS(76), + [sym_symbol] = ACTIONS(52), + [anon_sym_LBRACE_CARET] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_LBRACE_TILDE] = ACTIONS(84), + [anon_sym_TILDE] = ACTIONS(84), + [anon_sym_LBRACK_CARET] = ACTIONS(87), + [anon_sym_RBRACK] = ACTIONS(90), + [anon_sym_BANG_LBRACK] = ACTIONS(92), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACE2] = ACTIONS(64), + [anon_sym_DOLLAR] = ACTIONS(98), + [anon_sym_TODO] = ACTIONS(101), + [anon_sym_WIP] = ACTIONS(101), + [anon_sym_NOTE] = ACTIONS(104), + [anon_sym_INFO] = ACTIONS(104), + [anon_sym_XXX] = ACTIONS(104), + [sym_fixme] = ACTIONS(52), + [anon_sym_PIPE] = ACTIONS(52), + [sym__whitespace1] = ACTIONS(107), + [sym__newline] = ACTIONS(110), + [aux_sym__text_token1] = ACTIONS(113), + [sym__verbatim_begin] = ACTIONS(116), }, - [119] = { - [sym__element] = STATE(98), - [sym_emphasis] = STATE(197), - [sym_emphasis_begin] = STATE(81), - [sym_strong] = STATE(197), - [sym_strong_begin] = STATE(82), - [sym__hard_line_break] = STATE(197), - [sym_hard_line_break] = STATE(197), - [sym__smart_punctuation] = STATE(197), - [sym_autolink] = STATE(197), - [sym_highlighted] = STATE(197), - [sym_insert] = STATE(197), - [sym_delete] = STATE(197), - [sym_superscript] = STATE(197), - [sym_subscript] = STATE(197), - [sym_footnote_reference] = STATE(197), - [sym__image] = STATE(197), - [sym_full_reference_image] = STATE(197), - [sym_collapsed_reference_image] = STATE(197), - [sym_inline_image] = STATE(197), - [sym__image_description] = STATE(654), - [sym__link] = STATE(197), - [sym_full_reference_link] = STATE(197), - [sym_collapsed_reference_link] = STATE(197), - [sym_inline_link] = STATE(197), - [sym_link_text] = STATE(651), - [sym__comment_with_spaces] = STATE(197), - [sym_span] = STATE(197), - [sym_raw_inline] = STATE(197), - [sym_math] = STATE(197), - [sym_verbatim] = STATE(197), - [sym__todo_highlights] = STATE(197), - [sym_todo] = STATE(197), - [sym_note] = STATE(197), - [sym__symbol_fallback] = STATE(197), + [59] = { + [sym__inline] = STATE(725), + [sym__element] = STATE(78), + [sym_emphasis] = STATE(167), + [sym_emphasis_begin] = STATE(894), + [sym_strong] = STATE(167), + [sym_strong_begin] = STATE(117), + [sym__hard_line_break] = STATE(167), + [sym_hard_line_break] = STATE(167), + [sym__smart_punctuation] = STATE(167), + [sym_autolink] = STATE(167), + [sym_highlighted] = STATE(167), + [sym_insert] = STATE(167), + [sym_delete] = STATE(167), + [sym_superscript] = STATE(167), + [sym_subscript] = STATE(167), + [sym_footnote_reference] = STATE(167), + [sym__image] = STATE(167), + [sym_full_reference_image] = STATE(167), + [sym_collapsed_reference_image] = STATE(167), + [sym_inline_image] = STATE(167), + [sym__image_description] = STATE(613), + [sym__link] = STATE(167), + [sym_full_reference_link] = STATE(167), + [sym_collapsed_reference_link] = STATE(167), + [sym_inline_link] = STATE(167), + [sym_link_text] = STATE(614), + [sym__comment_with_spaces] = STATE(167), + [sym_span] = STATE(167), + [sym_raw_inline] = STATE(167), + [sym_math] = STATE(167), + [sym_verbatim] = STATE(167), + [sym__todo_highlights] = STATE(167), + [sym_todo] = STATE(167), + [sym_note] = STATE(167), + [sym__symbol_fallback] = STATE(167), + [aux_sym__text] = STATE(130), + [aux_sym__inline_repeat1] = STATE(78), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_] = ACTIONS(199), + [anon_sym__] = ACTIONS(202), + [anon_sym_LBRACE_STAR] = ACTIONS(205), + [anon_sym_STAR] = ACTIONS(496), + [aux_sym_strong_end_token1] = ACTIONS(79), + [anon_sym_BSLASH] = ACTIONS(211), + [sym_quotation_marks] = ACTIONS(202), + [sym_ellipsis] = ACTIONS(202), + [sym_em_dash] = ACTIONS(202), + [sym_en_dash] = ACTIONS(214), + [sym_backslash_escape] = ACTIONS(214), + [anon_sym_LT] = ACTIONS(217), + [anon_sym_LBRACE_EQ] = ACTIONS(220), + [anon_sym_LBRACE_PLUS] = ACTIONS(223), + [anon_sym_LBRACE_DASH] = ACTIONS(226), + [sym_symbol] = ACTIONS(202), + [anon_sym_LBRACE_CARET] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym_LBRACE_TILDE] = ACTIONS(232), + [anon_sym_TILDE] = ACTIONS(232), + [anon_sym_LBRACK_CARET] = ACTIONS(235), + [anon_sym_BANG_LBRACK] = ACTIONS(238), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_LBRACE2] = ACTIONS(214), + [anon_sym_DOLLAR] = ACTIONS(244), + [anon_sym_TODO] = ACTIONS(247), + [anon_sym_WIP] = ACTIONS(247), + [anon_sym_NOTE] = ACTIONS(250), + [anon_sym_INFO] = ACTIONS(250), + [anon_sym_XXX] = ACTIONS(250), + [sym_fixme] = ACTIONS(202), + [anon_sym_PIPE] = ACTIONS(202), + [sym__whitespace1] = ACTIONS(499), + [sym__newline] = ACTIONS(256), + [aux_sym__text_token1] = ACTIONS(259), + [sym__verbatim_begin] = ACTIONS(262), + }, + [60] = { + [sym__inline] = STATE(726), + [sym__element] = STATE(73), + [sym_emphasis] = STATE(180), + [sym_emphasis_begin] = STATE(895), + [sym_strong] = STATE(180), + [sym_strong_begin] = STATE(114), + [sym__hard_line_break] = STATE(180), + [sym_hard_line_break] = STATE(180), + [sym__smart_punctuation] = STATE(180), + [sym_autolink] = STATE(180), + [sym_highlighted] = STATE(180), + [sym_insert] = STATE(180), + [sym_delete] = STATE(180), + [sym_superscript] = STATE(180), + [sym_subscript] = STATE(180), + [sym_footnote_reference] = STATE(180), + [sym__image] = STATE(180), + [sym_full_reference_image] = STATE(180), + [sym_collapsed_reference_image] = STATE(180), + [sym_inline_image] = STATE(180), + [sym__image_description] = STATE(632), + [sym__link] = STATE(180), + [sym_full_reference_link] = STATE(180), + [sym_collapsed_reference_link] = STATE(180), + [sym_inline_link] = STATE(180), + [sym_link_text] = STATE(633), + [sym__comment_with_spaces] = STATE(180), + [sym_span] = STATE(180), + [sym_raw_inline] = STATE(180), + [sym_math] = STATE(180), + [sym_verbatim] = STATE(180), + [sym__todo_highlights] = STATE(180), + [sym_todo] = STATE(180), + [sym_note] = STATE(180), + [sym__symbol_fallback] = STATE(180), [aux_sym__text] = STATE(132), - [aux_sym__inline_repeat1] = STATE(98), - [anon_sym_LBRACE_] = ACTIONS(1531), - [anon_sym__] = ACTIONS(1533), - [anon_sym_LBRACE_STAR] = ACTIONS(1535), - [anon_sym_STAR] = ACTIONS(1537), - [anon_sym_BSLASH] = ACTIONS(1539), - [sym_quotation_marks] = ACTIONS(1541), - [sym_ellipsis] = ACTIONS(1541), - [sym_em_dash] = ACTIONS(1541), - [sym_en_dash] = ACTIONS(1543), - [sym_backslash_escape] = ACTIONS(1543), - [anon_sym_LT] = ACTIONS(1545), - [anon_sym_LBRACE_EQ] = ACTIONS(1547), - [anon_sym_EQ_RBRACE] = ACTIONS(618), - [anon_sym_LBRACE_PLUS] = ACTIONS(1549), - [anon_sym_LBRACE_DASH] = ACTIONS(1551), - [sym_symbol] = ACTIONS(1541), - [anon_sym_LBRACE_CARET] = ACTIONS(1553), - [anon_sym_CARET] = ACTIONS(1553), - [anon_sym_LBRACE_TILDE] = ACTIONS(1555), - [anon_sym_TILDE] = ACTIONS(1555), - [anon_sym_LBRACK_CARET] = ACTIONS(1557), - [anon_sym_BANG_LBRACK] = ACTIONS(1559), - [anon_sym_LBRACK] = ACTIONS(1561), - [anon_sym_LBRACE2] = ACTIONS(1543), - [anon_sym_DOLLAR] = ACTIONS(1563), - [anon_sym_TODO] = ACTIONS(1565), - [anon_sym_WIP] = ACTIONS(1565), - [anon_sym_NOTE] = ACTIONS(1567), - [anon_sym_INFO] = ACTIONS(1567), - [anon_sym_XXX] = ACTIONS(1567), - [sym_fixme] = ACTIONS(1541), - [anon_sym_PIPE] = ACTIONS(1541), - [sym__whitespace1] = ACTIONS(1569), - [sym__newline] = ACTIONS(1571), - [aux_sym__text_token1] = ACTIONS(1573), - [sym__verbatim_begin] = ACTIONS(1575), + [aux_sym__inline_repeat1] = STATE(73), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_] = ACTIONS(133), + [anon_sym__] = ACTIONS(136), + [anon_sym_LBRACE_STAR] = ACTIONS(139), + [anon_sym_STAR] = ACTIONS(502), + [aux_sym_strong_end_token1] = ACTIONS(79), + [anon_sym_BSLASH] = ACTIONS(145), + [sym_quotation_marks] = ACTIONS(136), + [sym_ellipsis] = ACTIONS(136), + [sym_em_dash] = ACTIONS(136), + [sym_en_dash] = ACTIONS(148), + [sym_backslash_escape] = ACTIONS(148), + [anon_sym_LT] = ACTIONS(151), + [anon_sym_LBRACE_EQ] = ACTIONS(154), + [anon_sym_LBRACE_PLUS] = ACTIONS(157), + [anon_sym_LBRACE_DASH] = ACTIONS(160), + [sym_symbol] = ACTIONS(136), + [anon_sym_LBRACE_CARET] = ACTIONS(163), + [anon_sym_CARET] = ACTIONS(163), + [anon_sym_LBRACE_TILDE] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(166), + [anon_sym_LBRACK_CARET] = ACTIONS(169), + [anon_sym_BANG_LBRACK] = ACTIONS(172), + [anon_sym_LBRACK] = ACTIONS(175), + [anon_sym_LBRACE2] = ACTIONS(148), + [anon_sym_DOLLAR] = ACTIONS(178), + [anon_sym_TODO] = ACTIONS(181), + [anon_sym_WIP] = ACTIONS(181), + [anon_sym_NOTE] = ACTIONS(184), + [anon_sym_INFO] = ACTIONS(184), + [anon_sym_XXX] = ACTIONS(184), + [sym_fixme] = ACTIONS(136), + [anon_sym_PIPE] = ACTIONS(136), + [sym__whitespace1] = ACTIONS(505), + [sym__newline] = ACTIONS(190), + [aux_sym__text_token1] = ACTIONS(193), + [sym__verbatim_begin] = ACTIONS(196), }, - [120] = { - [sym__element] = STATE(118), + [61] = { + [sym__inline] = STATE(817), + [sym__element] = STATE(73), + [sym_emphasis] = STATE(180), + [sym_emphasis_begin] = STATE(895), + [sym_strong] = STATE(180), + [sym_strong_begin] = STATE(114), + [sym__hard_line_break] = STATE(180), + [sym_hard_line_break] = STATE(180), + [sym__smart_punctuation] = STATE(180), + [sym_autolink] = STATE(180), + [sym_highlighted] = STATE(180), + [sym_insert] = STATE(180), + [sym_delete] = STATE(180), + [sym_superscript] = STATE(180), + [sym_subscript] = STATE(180), + [sym_footnote_reference] = STATE(180), + [sym__image] = STATE(180), + [sym_full_reference_image] = STATE(180), + [sym_collapsed_reference_image] = STATE(180), + [sym_inline_image] = STATE(180), + [sym__image_description] = STATE(632), + [sym__link] = STATE(180), + [sym_full_reference_link] = STATE(180), + [sym_collapsed_reference_link] = STATE(180), + [sym_inline_link] = STATE(180), + [sym_link_text] = STATE(633), + [sym__comment_with_spaces] = STATE(180), + [sym_span] = STATE(180), + [sym_raw_inline] = STATE(180), + [sym_math] = STATE(180), + [sym_verbatim] = STATE(180), + [sym__todo_highlights] = STATE(180), + [sym_todo] = STATE(180), + [sym_note] = STATE(180), + [sym__symbol_fallback] = STATE(180), + [aux_sym__text] = STATE(132), + [aux_sym__inline_repeat1] = STATE(73), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_] = ACTIONS(133), + [anon_sym__] = ACTIONS(136), + [anon_sym_LBRACE_STAR] = ACTIONS(139), + [anon_sym_STAR] = ACTIONS(142), + [anon_sym_BSLASH] = ACTIONS(145), + [sym_quotation_marks] = ACTIONS(136), + [sym_ellipsis] = ACTIONS(136), + [sym_em_dash] = ACTIONS(136), + [sym_en_dash] = ACTIONS(148), + [sym_backslash_escape] = ACTIONS(148), + [anon_sym_LT] = ACTIONS(151), + [anon_sym_LBRACE_EQ] = ACTIONS(154), + [anon_sym_LBRACE_PLUS] = ACTIONS(157), + [anon_sym_LBRACE_DASH] = ACTIONS(160), + [anon_sym_DASH_RBRACE] = ACTIONS(79), + [sym_symbol] = ACTIONS(136), + [anon_sym_LBRACE_CARET] = ACTIONS(163), + [anon_sym_CARET] = ACTIONS(163), + [anon_sym_LBRACE_TILDE] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(166), + [anon_sym_LBRACK_CARET] = ACTIONS(169), + [anon_sym_BANG_LBRACK] = ACTIONS(172), + [anon_sym_LBRACK] = ACTIONS(175), + [anon_sym_LBRACE2] = ACTIONS(148), + [anon_sym_DOLLAR] = ACTIONS(178), + [anon_sym_TODO] = ACTIONS(181), + [anon_sym_WIP] = ACTIONS(181), + [anon_sym_NOTE] = ACTIONS(184), + [anon_sym_INFO] = ACTIONS(184), + [anon_sym_XXX] = ACTIONS(184), + [sym_fixme] = ACTIONS(136), + [anon_sym_PIPE] = ACTIONS(136), + [sym__whitespace1] = ACTIONS(187), + [sym__newline] = ACTIONS(190), + [aux_sym__text_token1] = ACTIONS(193), + [sym__verbatim_begin] = ACTIONS(196), + }, + [62] = { + [sym__inline] = STATE(700), + [sym__element] = STATE(72), + [sym_emphasis] = STATE(163), + [sym_emphasis_begin] = STATE(896), + [sym_strong] = STATE(163), + [sym_strong_begin] = STATE(110), + [sym__hard_line_break] = STATE(163), + [sym_hard_line_break] = STATE(163), + [sym__smart_punctuation] = STATE(163), + [sym_autolink] = STATE(163), + [sym_highlighted] = STATE(163), + [sym_insert] = STATE(163), + [sym_delete] = STATE(163), + [sym_superscript] = STATE(163), + [sym_subscript] = STATE(163), + [sym_footnote_reference] = STATE(163), + [sym__image] = STATE(163), + [sym_full_reference_image] = STATE(163), + [sym_collapsed_reference_image] = STATE(163), + [sym_inline_image] = STATE(163), + [sym__image_description] = STATE(622), + [sym__link] = STATE(163), + [sym_full_reference_link] = STATE(163), + [sym_collapsed_reference_link] = STATE(163), + [sym_inline_link] = STATE(163), + [sym_link_text] = STATE(605), + [sym__comment_with_spaces] = STATE(163), + [sym_span] = STATE(163), + [sym_raw_inline] = STATE(163), + [sym_math] = STATE(163), + [sym_verbatim] = STATE(163), + [sym__todo_highlights] = STATE(163), + [sym_todo] = STATE(163), + [sym_note] = STATE(163), + [sym__symbol_fallback] = STATE(163), + [aux_sym__text] = STATE(146), + [aux_sym__inline_repeat1] = STATE(72), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_] = ACTIONS(331), + [anon_sym__] = ACTIONS(334), + [anon_sym_LBRACE_STAR] = ACTIONS(337), + [anon_sym_STAR] = ACTIONS(340), + [anon_sym_BSLASH] = ACTIONS(343), + [sym_quotation_marks] = ACTIONS(334), + [sym_ellipsis] = ACTIONS(334), + [sym_em_dash] = ACTIONS(334), + [sym_en_dash] = ACTIONS(346), + [sym_backslash_escape] = ACTIONS(346), + [anon_sym_LT] = ACTIONS(349), + [anon_sym_LBRACE_EQ] = ACTIONS(352), + [anon_sym_LBRACE_PLUS] = ACTIONS(355), + [anon_sym_LBRACE_DASH] = ACTIONS(358), + [anon_sym_DASH_RBRACE] = ACTIONS(79), + [sym_symbol] = ACTIONS(334), + [anon_sym_LBRACE_CARET] = ACTIONS(361), + [anon_sym_CARET] = ACTIONS(361), + [anon_sym_LBRACE_TILDE] = ACTIONS(364), + [anon_sym_TILDE] = ACTIONS(364), + [anon_sym_LBRACK_CARET] = ACTIONS(367), + [anon_sym_BANG_LBRACK] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(373), + [anon_sym_LBRACE2] = ACTIONS(346), + [anon_sym_DOLLAR] = ACTIONS(376), + [anon_sym_TODO] = ACTIONS(379), + [anon_sym_WIP] = ACTIONS(379), + [anon_sym_NOTE] = ACTIONS(382), + [anon_sym_INFO] = ACTIONS(382), + [anon_sym_XXX] = ACTIONS(382), + [sym_fixme] = ACTIONS(334), + [anon_sym_PIPE] = ACTIONS(334), + [sym__whitespace1] = ACTIONS(385), + [sym__newline] = ACTIONS(388), + [aux_sym__text_token1] = ACTIONS(391), + [sym__verbatim_begin] = ACTIONS(394), + }, + [63] = { + [sym__inline] = STATE(724), + [sym__element] = STATE(107), + [sym_emphasis] = STATE(187), + [sym_emphasis_begin] = STATE(893), + [sym_strong] = STATE(187), + [sym_strong_begin] = STATE(119), + [sym__hard_line_break] = STATE(187), + [sym_hard_line_break] = STATE(187), + [sym__smart_punctuation] = STATE(187), + [sym_autolink] = STATE(187), + [sym_highlighted] = STATE(187), + [sym_insert] = STATE(187), + [sym_delete] = STATE(187), + [sym_superscript] = STATE(187), + [sym_subscript] = STATE(187), + [sym_footnote_reference] = STATE(187), + [sym__image] = STATE(187), + [sym_full_reference_image] = STATE(187), + [sym_collapsed_reference_image] = STATE(187), + [sym_inline_image] = STATE(187), + [sym__image_description] = STATE(616), + [sym__link] = STATE(187), + [sym_full_reference_link] = STATE(187), + [sym_collapsed_reference_link] = STATE(187), + [sym_inline_link] = STATE(187), + [sym_link_text] = STATE(634), + [sym__comment_with_spaces] = STATE(187), + [sym_span] = STATE(187), + [sym_raw_inline] = STATE(187), + [sym_math] = STATE(187), + [sym_verbatim] = STATE(187), + [sym__todo_highlights] = STATE(187), + [sym_todo] = STATE(187), + [sym_note] = STATE(187), + [sym__symbol_fallback] = STATE(187), + [aux_sym__text] = STATE(131), + [aux_sym__inline_repeat1] = STATE(107), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_] = ACTIONS(265), + [anon_sym__] = ACTIONS(268), + [anon_sym_LBRACE_STAR] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(508), + [aux_sym_strong_end_token1] = ACTIONS(79), + [anon_sym_BSLASH] = ACTIONS(277), + [sym_quotation_marks] = ACTIONS(268), + [sym_ellipsis] = ACTIONS(268), + [sym_em_dash] = ACTIONS(268), + [sym_en_dash] = ACTIONS(280), + [sym_backslash_escape] = ACTIONS(280), + [anon_sym_LT] = ACTIONS(283), + [anon_sym_LBRACE_EQ] = ACTIONS(286), + [anon_sym_LBRACE_PLUS] = ACTIONS(289), + [anon_sym_LBRACE_DASH] = ACTIONS(292), + [sym_symbol] = ACTIONS(268), + [anon_sym_LBRACE_CARET] = ACTIONS(295), + [anon_sym_CARET] = ACTIONS(295), + [anon_sym_LBRACE_TILDE] = ACTIONS(298), + [anon_sym_TILDE] = ACTIONS(298), + [anon_sym_LBRACK_CARET] = ACTIONS(301), + [anon_sym_BANG_LBRACK] = ACTIONS(304), + [anon_sym_LBRACK] = ACTIONS(307), + [anon_sym_LBRACE2] = ACTIONS(280), + [anon_sym_DOLLAR] = ACTIONS(310), + [anon_sym_TODO] = ACTIONS(313), + [anon_sym_WIP] = ACTIONS(313), + [anon_sym_NOTE] = ACTIONS(316), + [anon_sym_INFO] = ACTIONS(316), + [anon_sym_XXX] = ACTIONS(316), + [sym_fixme] = ACTIONS(268), + [anon_sym_PIPE] = ACTIONS(268), + [sym__whitespace1] = ACTIONS(511), + [sym__newline] = ACTIONS(322), + [aux_sym__text_token1] = ACTIONS(325), + [sym__verbatim_begin] = ACTIONS(328), + }, + [64] = { + [sym__inline] = STATE(690), + [sym__element] = STATE(113), + [sym_emphasis] = STATE(175), + [sym_emphasis_begin] = STATE(897), + [sym_strong] = STATE(175), + [sym_strong_begin] = STATE(108), + [sym__hard_line_break] = STATE(175), + [sym_hard_line_break] = STATE(175), + [sym__smart_punctuation] = STATE(175), + [sym_autolink] = STATE(175), + [sym_highlighted] = STATE(175), + [sym_insert] = STATE(175), + [sym_delete] = STATE(175), + [sym_superscript] = STATE(175), + [sym_subscript] = STATE(175), + [sym_footnote_reference] = STATE(175), + [sym__image] = STATE(175), + [sym_full_reference_image] = STATE(175), + [sym_collapsed_reference_image] = STATE(175), + [sym_inline_image] = STATE(175), + [sym__image_description] = STATE(626), + [sym__link] = STATE(175), + [sym_full_reference_link] = STATE(175), + [sym_collapsed_reference_link] = STATE(175), + [sym_inline_link] = STATE(175), + [sym_link_text] = STATE(624), + [sym__comment_with_spaces] = STATE(175), + [sym_span] = STATE(175), + [sym_raw_inline] = STATE(175), + [sym_math] = STATE(175), + [sym_verbatim] = STATE(175), + [sym__todo_highlights] = STATE(175), + [sym_todo] = STATE(175), + [sym_note] = STATE(175), + [sym__symbol_fallback] = STATE(175), + [aux_sym__text] = STATE(125), + [aux_sym__inline_repeat1] = STATE(113), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_] = ACTIONS(397), + [anon_sym__] = ACTIONS(400), + [anon_sym_LBRACE_STAR] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(514), + [aux_sym_strong_end_token1] = ACTIONS(79), + [anon_sym_BSLASH] = ACTIONS(409), + [sym_quotation_marks] = ACTIONS(400), + [sym_ellipsis] = ACTIONS(400), + [sym_em_dash] = ACTIONS(400), + [sym_en_dash] = ACTIONS(412), + [sym_backslash_escape] = ACTIONS(412), + [anon_sym_LT] = ACTIONS(415), + [anon_sym_LBRACE_EQ] = ACTIONS(418), + [anon_sym_LBRACE_PLUS] = ACTIONS(421), + [anon_sym_LBRACE_DASH] = ACTIONS(424), + [sym_symbol] = ACTIONS(400), + [anon_sym_LBRACE_CARET] = ACTIONS(427), + [anon_sym_CARET] = ACTIONS(427), + [anon_sym_LBRACE_TILDE] = ACTIONS(430), + [anon_sym_TILDE] = ACTIONS(430), + [anon_sym_LBRACK_CARET] = ACTIONS(433), + [anon_sym_BANG_LBRACK] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(439), + [anon_sym_LBRACE2] = ACTIONS(412), + [anon_sym_DOLLAR] = ACTIONS(442), + [anon_sym_TODO] = ACTIONS(445), + [anon_sym_WIP] = ACTIONS(445), + [anon_sym_NOTE] = ACTIONS(448), + [anon_sym_INFO] = ACTIONS(448), + [anon_sym_XXX] = ACTIONS(448), + [sym_fixme] = ACTIONS(400), + [anon_sym_PIPE] = ACTIONS(400), + [sym__whitespace1] = ACTIONS(517), + [sym__newline] = ACTIONS(454), + [aux_sym__text_token1] = ACTIONS(457), + [sym__verbatim_begin] = ACTIONS(460), + }, + [65] = { + [sym__inline] = STATE(691), + [sym__element] = STATE(72), + [sym_emphasis] = STATE(163), + [sym_emphasis_begin] = STATE(896), + [sym_strong] = STATE(163), + [sym_strong_begin] = STATE(110), + [sym__hard_line_break] = STATE(163), + [sym_hard_line_break] = STATE(163), + [sym__smart_punctuation] = STATE(163), + [sym_autolink] = STATE(163), + [sym_highlighted] = STATE(163), + [sym_insert] = STATE(163), + [sym_delete] = STATE(163), + [sym_superscript] = STATE(163), + [sym_subscript] = STATE(163), + [sym_footnote_reference] = STATE(163), + [sym__image] = STATE(163), + [sym_full_reference_image] = STATE(163), + [sym_collapsed_reference_image] = STATE(163), + [sym_inline_image] = STATE(163), + [sym__image_description] = STATE(622), + [sym__link] = STATE(163), + [sym_full_reference_link] = STATE(163), + [sym_collapsed_reference_link] = STATE(163), + [sym_inline_link] = STATE(163), + [sym_link_text] = STATE(605), + [sym__comment_with_spaces] = STATE(163), + [sym_span] = STATE(163), + [sym_raw_inline] = STATE(163), + [sym_math] = STATE(163), + [sym_verbatim] = STATE(163), + [sym__todo_highlights] = STATE(163), + [sym_todo] = STATE(163), + [sym_note] = STATE(163), + [sym__symbol_fallback] = STATE(163), + [aux_sym__text] = STATE(146), + [aux_sym__inline_repeat1] = STATE(72), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_] = ACTIONS(331), + [anon_sym__] = ACTIONS(334), + [anon_sym_LBRACE_STAR] = ACTIONS(337), + [anon_sym_STAR] = ACTIONS(520), + [aux_sym_strong_end_token1] = ACTIONS(79), + [anon_sym_BSLASH] = ACTIONS(343), + [sym_quotation_marks] = ACTIONS(334), + [sym_ellipsis] = ACTIONS(334), + [sym_em_dash] = ACTIONS(334), + [sym_en_dash] = ACTIONS(346), + [sym_backslash_escape] = ACTIONS(346), + [anon_sym_LT] = ACTIONS(349), + [anon_sym_LBRACE_EQ] = ACTIONS(352), + [anon_sym_LBRACE_PLUS] = ACTIONS(355), + [anon_sym_LBRACE_DASH] = ACTIONS(358), + [sym_symbol] = ACTIONS(334), + [anon_sym_LBRACE_CARET] = ACTIONS(361), + [anon_sym_CARET] = ACTIONS(361), + [anon_sym_LBRACE_TILDE] = ACTIONS(364), + [anon_sym_TILDE] = ACTIONS(364), + [anon_sym_LBRACK_CARET] = ACTIONS(367), + [anon_sym_BANG_LBRACK] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(373), + [anon_sym_LBRACE2] = ACTIONS(346), + [anon_sym_DOLLAR] = ACTIONS(376), + [anon_sym_TODO] = ACTIONS(379), + [anon_sym_WIP] = ACTIONS(379), + [anon_sym_NOTE] = ACTIONS(382), + [anon_sym_INFO] = ACTIONS(382), + [anon_sym_XXX] = ACTIONS(382), + [sym_fixme] = ACTIONS(334), + [anon_sym_PIPE] = ACTIONS(334), + [sym__whitespace1] = ACTIONS(523), + [sym__newline] = ACTIONS(388), + [aux_sym__text_token1] = ACTIONS(391), + [sym__verbatim_begin] = ACTIONS(394), + }, + [66] = { + [sym__inline] = STATE(746), + [sym__element] = STATE(107), + [sym_emphasis] = STATE(187), + [sym_emphasis_begin] = STATE(893), + [sym_strong] = STATE(187), + [sym_strong_begin] = STATE(119), + [sym__hard_line_break] = STATE(187), + [sym_hard_line_break] = STATE(187), + [sym__smart_punctuation] = STATE(187), + [sym_autolink] = STATE(187), + [sym_highlighted] = STATE(187), + [sym_insert] = STATE(187), + [sym_delete] = STATE(187), + [sym_superscript] = STATE(187), + [sym_subscript] = STATE(187), + [sym_footnote_reference] = STATE(187), + [sym__image] = STATE(187), + [sym_full_reference_image] = STATE(187), + [sym_collapsed_reference_image] = STATE(187), + [sym_inline_image] = STATE(187), + [sym__image_description] = STATE(616), + [sym__link] = STATE(187), + [sym_full_reference_link] = STATE(187), + [sym_collapsed_reference_link] = STATE(187), + [sym_inline_link] = STATE(187), + [sym_link_text] = STATE(634), + [sym__comment_with_spaces] = STATE(187), + [sym_span] = STATE(187), + [sym_raw_inline] = STATE(187), + [sym_math] = STATE(187), + [sym_verbatim] = STATE(187), + [sym__todo_highlights] = STATE(187), + [sym_todo] = STATE(187), + [sym_note] = STATE(187), + [sym__symbol_fallback] = STATE(187), + [aux_sym__text] = STATE(131), + [aux_sym__inline_repeat1] = STATE(107), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_] = ACTIONS(265), + [anon_sym__] = ACTIONS(268), + [anon_sym_LBRACE_STAR] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(274), + [anon_sym_BSLASH] = ACTIONS(277), + [sym_quotation_marks] = ACTIONS(268), + [sym_ellipsis] = ACTIONS(268), + [sym_em_dash] = ACTIONS(268), + [sym_en_dash] = ACTIONS(280), + [sym_backslash_escape] = ACTIONS(280), + [anon_sym_LT] = ACTIONS(283), + [anon_sym_LBRACE_EQ] = ACTIONS(286), + [anon_sym_LBRACE_PLUS] = ACTIONS(289), + [anon_sym_LBRACE_DASH] = ACTIONS(292), + [sym_symbol] = ACTIONS(268), + [anon_sym_LBRACE_CARET] = ACTIONS(295), + [anon_sym_CARET] = ACTIONS(295), + [anon_sym_LBRACE_TILDE] = ACTIONS(298), + [anon_sym_TILDE] = ACTIONS(298), + [anon_sym_LBRACK_CARET] = ACTIONS(301), + [anon_sym_BANG_LBRACK] = ACTIONS(304), + [anon_sym_LBRACK] = ACTIONS(307), + [anon_sym_LBRACE2] = ACTIONS(280), + [anon_sym_DOLLAR] = ACTIONS(310), + [anon_sym_TODO] = ACTIONS(313), + [anon_sym_WIP] = ACTIONS(313), + [anon_sym_NOTE] = ACTIONS(316), + [anon_sym_INFO] = ACTIONS(316), + [anon_sym_XXX] = ACTIONS(316), + [sym_fixme] = ACTIONS(268), + [anon_sym_PIPE] = ACTIONS(268), + [sym__whitespace1] = ACTIONS(319), + [sym__newline] = ACTIONS(322), + [aux_sym__text_token1] = ACTIONS(325), + [sym__verbatim_begin] = ACTIONS(328), + }, + [67] = { + [sym__inline] = STATE(702), + [sym__element] = STATE(78), + [sym_emphasis] = STATE(167), + [sym_emphasis_begin] = STATE(894), + [sym_strong] = STATE(167), + [sym_strong_begin] = STATE(117), + [sym__hard_line_break] = STATE(167), + [sym_hard_line_break] = STATE(167), + [sym__smart_punctuation] = STATE(167), + [sym_autolink] = STATE(167), + [sym_highlighted] = STATE(167), + [sym_insert] = STATE(167), + [sym_delete] = STATE(167), + [sym_superscript] = STATE(167), + [sym_subscript] = STATE(167), + [sym_footnote_reference] = STATE(167), + [sym__image] = STATE(167), + [sym_full_reference_image] = STATE(167), + [sym_collapsed_reference_image] = STATE(167), + [sym_inline_image] = STATE(167), + [sym__image_description] = STATE(613), + [sym__link] = STATE(167), + [sym_full_reference_link] = STATE(167), + [sym_collapsed_reference_link] = STATE(167), + [sym_inline_link] = STATE(167), + [sym_link_text] = STATE(614), + [sym__comment_with_spaces] = STATE(167), + [sym_span] = STATE(167), + [sym_raw_inline] = STATE(167), + [sym_math] = STATE(167), + [sym_verbatim] = STATE(167), + [sym__todo_highlights] = STATE(167), + [sym_todo] = STATE(167), + [sym_note] = STATE(167), + [sym__symbol_fallback] = STATE(167), + [aux_sym__text] = STATE(130), + [aux_sym__inline_repeat1] = STATE(78), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_] = ACTIONS(199), + [anon_sym__] = ACTIONS(202), + [anon_sym_LBRACE_STAR] = ACTIONS(205), + [anon_sym_STAR] = ACTIONS(208), + [anon_sym_BSLASH] = ACTIONS(211), + [sym_quotation_marks] = ACTIONS(202), + [sym_ellipsis] = ACTIONS(202), + [sym_em_dash] = ACTIONS(202), + [sym_en_dash] = ACTIONS(214), + [sym_backslash_escape] = ACTIONS(214), + [anon_sym_LT] = ACTIONS(217), + [anon_sym_LBRACE_EQ] = ACTIONS(220), + [anon_sym_LBRACE_PLUS] = ACTIONS(223), + [anon_sym_LBRACE_DASH] = ACTIONS(226), + [sym_symbol] = ACTIONS(202), + [anon_sym_LBRACE_CARET] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym_LBRACE_TILDE] = ACTIONS(232), + [anon_sym_TILDE] = ACTIONS(232), + [anon_sym_LBRACK_CARET] = ACTIONS(235), + [anon_sym_BANG_LBRACK] = ACTIONS(238), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_LBRACE2] = ACTIONS(214), + [anon_sym_DOLLAR] = ACTIONS(244), + [anon_sym_TODO] = ACTIONS(247), + [anon_sym_WIP] = ACTIONS(247), + [anon_sym_NOTE] = ACTIONS(250), + [anon_sym_INFO] = ACTIONS(250), + [anon_sym_XXX] = ACTIONS(250), + [sym_fixme] = ACTIONS(202), + [anon_sym_PIPE] = ACTIONS(202), + [sym__whitespace1] = ACTIONS(253), + [sym__newline] = ACTIONS(256), + [aux_sym__text_token1] = ACTIONS(259), + [sym__verbatim_begin] = ACTIONS(262), + }, + [68] = { + [sym__inline] = STATE(868), + [sym__element] = STATE(97), [sym_emphasis] = STATE(182), - [sym_emphasis_begin] = STATE(97), + [sym_emphasis_begin] = STATE(898), [sym_strong] = STATE(182), - [sym_strong_begin] = STATE(99), + [sym_strong_begin] = STATE(104), [sym__hard_line_break] = STATE(182), [sym_hard_line_break] = STATE(182), [sym__smart_punctuation] = STATE(182), @@ -17061,12 +12827,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_full_reference_image] = STATE(182), [sym_collapsed_reference_image] = STATE(182), [sym_inline_image] = STATE(182), - [sym__image_description] = STATE(628), + [sym__image_description] = STATE(610), [sym__link] = STATE(182), [sym_full_reference_link] = STATE(182), [sym_collapsed_reference_link] = STATE(182), [sym_inline_link] = STATE(182), - [sym_link_text] = STATE(627), + [sym_link_text] = STATE(608), [sym__comment_with_spaces] = STATE(182), [sym_span] = STATE(182), [sym_raw_inline] = STATE(182), @@ -17076,682 +12842,3991 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(182), [sym_note] = STATE(182), [sym__symbol_fallback] = STATE(182), - [aux_sym__text] = STATE(136), - [aux_sym__inline_repeat1] = STATE(118), - [anon_sym_LBRACE_] = ACTIONS(1577), - [anon_sym__] = ACTIONS(1579), - [anon_sym_LBRACE_STAR] = ACTIONS(1581), - [anon_sym_STAR] = ACTIONS(1583), - [anon_sym_BSLASH] = ACTIONS(1585), - [sym_quotation_marks] = ACTIONS(1587), - [sym_ellipsis] = ACTIONS(1587), - [sym_em_dash] = ACTIONS(1587), - [sym_en_dash] = ACTIONS(1589), - [sym_backslash_escape] = ACTIONS(1589), - [anon_sym_LT] = ACTIONS(1591), - [anon_sym_LBRACE_EQ] = ACTIONS(1593), - [anon_sym_LBRACE_PLUS] = ACTIONS(1595), - [anon_sym_LBRACE_DASH] = ACTIONS(1597), - [sym_symbol] = ACTIONS(1587), - [anon_sym_LBRACE_CARET] = ACTIONS(1599), - [anon_sym_CARET] = ACTIONS(1599), - [anon_sym_LBRACE_TILDE] = ACTIONS(1601), - [anon_sym_TILDE] = ACTIONS(616), - [anon_sym_TILDE_RBRACE] = ACTIONS(618), - [anon_sym_LBRACK_CARET] = ACTIONS(1603), - [anon_sym_BANG_LBRACK] = ACTIONS(1605), - [anon_sym_LBRACK] = ACTIONS(1607), - [anon_sym_LBRACE2] = ACTIONS(1589), - [anon_sym_DOLLAR] = ACTIONS(1609), - [anon_sym_TODO] = ACTIONS(1611), - [anon_sym_WIP] = ACTIONS(1611), - [anon_sym_NOTE] = ACTIONS(1613), - [anon_sym_INFO] = ACTIONS(1613), - [anon_sym_XXX] = ACTIONS(1613), - [sym_fixme] = ACTIONS(1587), - [anon_sym_PIPE] = ACTIONS(1587), - [sym__whitespace1] = ACTIONS(1615), - [sym__newline] = ACTIONS(1617), - [aux_sym__text_token1] = ACTIONS(1619), - [sym__verbatim_begin] = ACTIONS(1621), + [aux_sym__text] = STATE(144), + [aux_sym__inline_repeat1] = STATE(97), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_] = ACTIONS(49), + [anon_sym__] = ACTIONS(52), + [anon_sym_LBRACE_STAR] = ACTIONS(55), + [anon_sym_STAR] = ACTIONS(58), + [anon_sym_BSLASH] = ACTIONS(61), + [sym_quotation_marks] = ACTIONS(52), + [sym_ellipsis] = ACTIONS(52), + [sym_em_dash] = ACTIONS(52), + [sym_en_dash] = ACTIONS(64), + [sym_backslash_escape] = ACTIONS(64), + [anon_sym_LT] = ACTIONS(67), + [anon_sym_LBRACE_EQ] = ACTIONS(70), + [anon_sym_LBRACE_PLUS] = ACTIONS(73), + [anon_sym_LBRACE_DASH] = ACTIONS(76), + [sym_symbol] = ACTIONS(52), + [anon_sym_LBRACE_CARET] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_LBRACE_TILDE] = ACTIONS(84), + [anon_sym_TILDE] = ACTIONS(84), + [anon_sym_LBRACK_CARET] = ACTIONS(87), + [anon_sym_BANG_LBRACK] = ACTIONS(92), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACE2] = ACTIONS(64), + [anon_sym_DOLLAR] = ACTIONS(98), + [anon_sym_TODO] = ACTIONS(101), + [anon_sym_WIP] = ACTIONS(101), + [anon_sym_NOTE] = ACTIONS(104), + [anon_sym_INFO] = ACTIONS(104), + [anon_sym_XXX] = ACTIONS(104), + [sym_fixme] = ACTIONS(52), + [anon_sym_PIPE] = ACTIONS(52), + [sym__whitespace1] = ACTIONS(107), + [sym__newline] = ACTIONS(110), + [aux_sym__text_token1] = ACTIONS(113), + [sym__verbatim_begin] = ACTIONS(116), }, - [121] = { + [69] = { + [sym__inline] = STATE(748), + [sym__element] = STATE(73), + [sym_emphasis] = STATE(180), + [sym_emphasis_begin] = STATE(895), + [sym_strong] = STATE(180), + [sym_strong_begin] = STATE(114), + [sym__hard_line_break] = STATE(180), + [sym_hard_line_break] = STATE(180), + [sym__smart_punctuation] = STATE(180), + [sym_autolink] = STATE(180), + [sym_highlighted] = STATE(180), + [sym_insert] = STATE(180), + [sym_delete] = STATE(180), + [sym_superscript] = STATE(180), + [sym_subscript] = STATE(180), + [sym_footnote_reference] = STATE(180), + [sym__image] = STATE(180), + [sym_full_reference_image] = STATE(180), + [sym_collapsed_reference_image] = STATE(180), + [sym_inline_image] = STATE(180), + [sym__image_description] = STATE(632), + [sym__link] = STATE(180), + [sym_full_reference_link] = STATE(180), + [sym_collapsed_reference_link] = STATE(180), + [sym_inline_link] = STATE(180), + [sym_link_text] = STATE(633), + [sym__comment_with_spaces] = STATE(180), + [sym_span] = STATE(180), + [sym_raw_inline] = STATE(180), + [sym_math] = STATE(180), + [sym_verbatim] = STATE(180), + [sym__todo_highlights] = STATE(180), + [sym_todo] = STATE(180), + [sym_note] = STATE(180), + [sym__symbol_fallback] = STATE(180), + [aux_sym__text] = STATE(132), + [aux_sym__inline_repeat1] = STATE(73), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_] = ACTIONS(133), + [anon_sym__] = ACTIONS(136), + [anon_sym_LBRACE_STAR] = ACTIONS(139), + [anon_sym_STAR] = ACTIONS(142), + [anon_sym_BSLASH] = ACTIONS(145), + [sym_quotation_marks] = ACTIONS(136), + [sym_ellipsis] = ACTIONS(136), + [sym_em_dash] = ACTIONS(136), + [sym_en_dash] = ACTIONS(148), + [sym_backslash_escape] = ACTIONS(148), + [anon_sym_LT] = ACTIONS(151), + [anon_sym_LBRACE_EQ] = ACTIONS(154), + [anon_sym_LBRACE_PLUS] = ACTIONS(157), + [anon_sym_LBRACE_DASH] = ACTIONS(160), + [sym_symbol] = ACTIONS(136), + [anon_sym_LBRACE_CARET] = ACTIONS(163), + [anon_sym_CARET] = ACTIONS(163), + [anon_sym_LBRACE_TILDE] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(166), + [anon_sym_LBRACK_CARET] = ACTIONS(169), + [anon_sym_BANG_LBRACK] = ACTIONS(172), + [anon_sym_LBRACK] = ACTIONS(175), + [anon_sym_LBRACE2] = ACTIONS(148), + [anon_sym_DOLLAR] = ACTIONS(178), + [anon_sym_TODO] = ACTIONS(181), + [anon_sym_WIP] = ACTIONS(181), + [anon_sym_NOTE] = ACTIONS(184), + [anon_sym_INFO] = ACTIONS(184), + [anon_sym_XXX] = ACTIONS(184), + [sym_fixme] = ACTIONS(136), + [anon_sym_PIPE] = ACTIONS(136), + [sym__whitespace1] = ACTIONS(187), + [sym__newline] = ACTIONS(190), + [aux_sym__text_token1] = ACTIONS(193), + [sym__verbatim_begin] = ACTIONS(196), + }, + [70] = { + [sym__inline] = STATE(679), + [sym__element] = STATE(72), + [sym_emphasis] = STATE(163), + [sym_emphasis_begin] = STATE(896), + [sym_strong] = STATE(163), + [sym_strong_begin] = STATE(110), + [sym__hard_line_break] = STATE(163), + [sym_hard_line_break] = STATE(163), + [sym__smart_punctuation] = STATE(163), + [sym_autolink] = STATE(163), + [sym_highlighted] = STATE(163), + [sym_insert] = STATE(163), + [sym_delete] = STATE(163), + [sym_superscript] = STATE(163), + [sym_subscript] = STATE(163), + [sym_footnote_reference] = STATE(163), + [sym__image] = STATE(163), + [sym_full_reference_image] = STATE(163), + [sym_collapsed_reference_image] = STATE(163), + [sym_inline_image] = STATE(163), + [sym__image_description] = STATE(622), + [sym__link] = STATE(163), + [sym_full_reference_link] = STATE(163), + [sym_collapsed_reference_link] = STATE(163), + [sym_inline_link] = STATE(163), + [sym_link_text] = STATE(605), + [sym__comment_with_spaces] = STATE(163), + [sym_span] = STATE(163), + [sym_raw_inline] = STATE(163), + [sym_math] = STATE(163), + [sym_verbatim] = STATE(163), + [sym__todo_highlights] = STATE(163), + [sym_todo] = STATE(163), + [sym_note] = STATE(163), + [sym__symbol_fallback] = STATE(163), + [aux_sym__text] = STATE(146), + [aux_sym__inline_repeat1] = STATE(72), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_] = ACTIONS(331), + [anon_sym__] = ACTIONS(334), + [anon_sym_LBRACE_STAR] = ACTIONS(337), + [anon_sym_STAR] = ACTIONS(340), + [anon_sym_BSLASH] = ACTIONS(343), + [sym_quotation_marks] = ACTIONS(334), + [sym_ellipsis] = ACTIONS(334), + [sym_em_dash] = ACTIONS(334), + [sym_en_dash] = ACTIONS(346), + [sym_backslash_escape] = ACTIONS(346), + [anon_sym_LT] = ACTIONS(349), + [anon_sym_LBRACE_EQ] = ACTIONS(352), + [anon_sym_LBRACE_PLUS] = ACTIONS(355), + [anon_sym_LBRACE_DASH] = ACTIONS(358), + [sym_symbol] = ACTIONS(334), + [anon_sym_LBRACE_CARET] = ACTIONS(361), + [anon_sym_CARET] = ACTIONS(361), + [anon_sym_LBRACE_TILDE] = ACTIONS(364), + [anon_sym_TILDE] = ACTIONS(364), + [anon_sym_LBRACK_CARET] = ACTIONS(367), + [anon_sym_BANG_LBRACK] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(373), + [anon_sym_LBRACE2] = ACTIONS(346), + [anon_sym_DOLLAR] = ACTIONS(376), + [anon_sym_TODO] = ACTIONS(379), + [anon_sym_WIP] = ACTIONS(379), + [anon_sym_NOTE] = ACTIONS(382), + [anon_sym_INFO] = ACTIONS(382), + [anon_sym_XXX] = ACTIONS(382), + [sym_fixme] = ACTIONS(334), + [anon_sym_PIPE] = ACTIONS(334), + [sym__whitespace1] = ACTIONS(385), + [sym__newline] = ACTIONS(388), + [aux_sym__text_token1] = ACTIONS(391), + [sym__verbatim_begin] = ACTIONS(394), + }, + [71] = { + [sym__inline] = STATE(677), + [sym__element] = STATE(113), + [sym_emphasis] = STATE(175), + [sym_emphasis_begin] = STATE(897), + [sym_strong] = STATE(175), + [sym_strong_begin] = STATE(108), + [sym__hard_line_break] = STATE(175), + [sym_hard_line_break] = STATE(175), + [sym__smart_punctuation] = STATE(175), + [sym_autolink] = STATE(175), + [sym_highlighted] = STATE(175), + [sym_insert] = STATE(175), + [sym_delete] = STATE(175), + [sym_superscript] = STATE(175), + [sym_subscript] = STATE(175), + [sym_footnote_reference] = STATE(175), + [sym__image] = STATE(175), + [sym_full_reference_image] = STATE(175), + [sym_collapsed_reference_image] = STATE(175), + [sym_inline_image] = STATE(175), + [sym__image_description] = STATE(626), + [sym__link] = STATE(175), + [sym_full_reference_link] = STATE(175), + [sym_collapsed_reference_link] = STATE(175), + [sym_inline_link] = STATE(175), + [sym_link_text] = STATE(624), + [sym__comment_with_spaces] = STATE(175), + [sym_span] = STATE(175), + [sym_raw_inline] = STATE(175), + [sym_math] = STATE(175), + [sym_verbatim] = STATE(175), + [sym__todo_highlights] = STATE(175), + [sym_todo] = STATE(175), + [sym_note] = STATE(175), + [sym__symbol_fallback] = STATE(175), + [aux_sym__text] = STATE(125), + [aux_sym__inline_repeat1] = STATE(113), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_] = ACTIONS(397), + [anon_sym__] = ACTIONS(400), + [anon_sym_LBRACE_STAR] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(406), + [anon_sym_BSLASH] = ACTIONS(409), + [sym_quotation_marks] = ACTIONS(400), + [sym_ellipsis] = ACTIONS(400), + [sym_em_dash] = ACTIONS(400), + [sym_en_dash] = ACTIONS(412), + [sym_backslash_escape] = ACTIONS(412), + [anon_sym_LT] = ACTIONS(415), + [anon_sym_LBRACE_EQ] = ACTIONS(418), + [anon_sym_LBRACE_PLUS] = ACTIONS(421), + [anon_sym_LBRACE_DASH] = ACTIONS(424), + [sym_symbol] = ACTIONS(400), + [anon_sym_LBRACE_CARET] = ACTIONS(427), + [anon_sym_CARET] = ACTIONS(427), + [anon_sym_LBRACE_TILDE] = ACTIONS(430), + [anon_sym_TILDE] = ACTIONS(430), + [anon_sym_LBRACK_CARET] = ACTIONS(433), + [anon_sym_BANG_LBRACK] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(439), + [anon_sym_LBRACE2] = ACTIONS(412), + [anon_sym_DOLLAR] = ACTIONS(442), + [anon_sym_TODO] = ACTIONS(445), + [anon_sym_WIP] = ACTIONS(445), + [anon_sym_NOTE] = ACTIONS(448), + [anon_sym_INFO] = ACTIONS(448), + [anon_sym_XXX] = ACTIONS(448), + [sym_fixme] = ACTIONS(400), + [anon_sym_PIPE] = ACTIONS(400), + [sym__whitespace1] = ACTIONS(451), + [sym__newline] = ACTIONS(454), + [aux_sym__text_token1] = ACTIONS(457), + [sym__verbatim_begin] = ACTIONS(460), + }, + [72] = { + [sym__element] = STATE(101), + [sym_emphasis] = STATE(163), + [sym_emphasis_begin] = STATE(896), + [sym_strong] = STATE(163), + [sym_strong_begin] = STATE(110), + [sym__hard_line_break] = STATE(163), + [sym_hard_line_break] = STATE(163), + [sym__smart_punctuation] = STATE(163), + [sym_autolink] = STATE(163), + [sym_highlighted] = STATE(163), + [sym_insert] = STATE(163), + [sym_delete] = STATE(163), + [sym_superscript] = STATE(163), + [sym_subscript] = STATE(163), + [sym_footnote_reference] = STATE(163), + [sym__image] = STATE(163), + [sym_full_reference_image] = STATE(163), + [sym_collapsed_reference_image] = STATE(163), + [sym_inline_image] = STATE(163), + [sym__image_description] = STATE(622), + [sym__link] = STATE(163), + [sym_full_reference_link] = STATE(163), + [sym_collapsed_reference_link] = STATE(163), + [sym_inline_link] = STATE(163), + [sym_link_text] = STATE(605), + [sym__comment_with_spaces] = STATE(163), + [sym_span] = STATE(163), + [sym_raw_inline] = STATE(163), + [sym_math] = STATE(163), + [sym_verbatim] = STATE(163), + [sym__todo_highlights] = STATE(163), + [sym_todo] = STATE(163), + [sym_note] = STATE(163), + [sym__symbol_fallback] = STATE(163), + [aux_sym__text] = STATE(146), + [aux_sym__inline_repeat1] = STATE(101), + [anon_sym_LBRACE_] = ACTIONS(526), + [anon_sym__] = ACTIONS(528), + [anon_sym_LBRACE_STAR] = ACTIONS(530), + [anon_sym_STAR] = ACTIONS(532), + [anon_sym_BSLASH] = ACTIONS(534), + [sym_quotation_marks] = ACTIONS(528), + [sym_ellipsis] = ACTIONS(528), + [sym_em_dash] = ACTIONS(528), + [sym_en_dash] = ACTIONS(536), + [sym_backslash_escape] = ACTIONS(536), + [anon_sym_LT] = ACTIONS(538), + [anon_sym_LBRACE_EQ] = ACTIONS(540), + [anon_sym_LBRACE_PLUS] = ACTIONS(542), + [anon_sym_LBRACE_DASH] = ACTIONS(544), + [sym_symbol] = ACTIONS(528), + [anon_sym_LBRACE_CARET] = ACTIONS(546), + [anon_sym_CARET] = ACTIONS(548), + [anon_sym_CARET_RBRACE] = ACTIONS(550), + [anon_sym_LBRACE_TILDE] = ACTIONS(552), + [anon_sym_TILDE] = ACTIONS(552), + [anon_sym_LBRACK_CARET] = ACTIONS(554), + [anon_sym_BANG_LBRACK] = ACTIONS(556), + [anon_sym_LBRACK] = ACTIONS(558), + [anon_sym_LBRACE2] = ACTIONS(536), + [anon_sym_DOLLAR] = ACTIONS(560), + [anon_sym_TODO] = ACTIONS(562), + [anon_sym_WIP] = ACTIONS(562), + [anon_sym_NOTE] = ACTIONS(564), + [anon_sym_INFO] = ACTIONS(564), + [anon_sym_XXX] = ACTIONS(564), + [sym_fixme] = ACTIONS(528), + [anon_sym_PIPE] = ACTIONS(528), + [sym__whitespace1] = ACTIONS(566), + [sym__newline] = ACTIONS(568), + [aux_sym__text_token1] = ACTIONS(570), + [sym__verbatim_begin] = ACTIONS(572), + }, + [73] = { + [sym__element] = STATE(79), + [sym_emphasis] = STATE(180), + [sym_emphasis_begin] = STATE(895), + [sym_strong] = STATE(180), + [sym_strong_begin] = STATE(114), + [sym__hard_line_break] = STATE(180), + [sym_hard_line_break] = STATE(180), + [sym__smart_punctuation] = STATE(180), + [sym_autolink] = STATE(180), + [sym_highlighted] = STATE(180), + [sym_insert] = STATE(180), + [sym_delete] = STATE(180), + [sym_superscript] = STATE(180), + [sym_subscript] = STATE(180), + [sym_footnote_reference] = STATE(180), + [sym__image] = STATE(180), + [sym_full_reference_image] = STATE(180), + [sym_collapsed_reference_image] = STATE(180), + [sym_inline_image] = STATE(180), + [sym__image_description] = STATE(632), + [sym__link] = STATE(180), + [sym_full_reference_link] = STATE(180), + [sym_collapsed_reference_link] = STATE(180), + [sym_inline_link] = STATE(180), + [sym_link_text] = STATE(633), + [sym__comment_with_spaces] = STATE(180), + [sym_span] = STATE(180), + [sym_raw_inline] = STATE(180), + [sym_math] = STATE(180), + [sym_verbatim] = STATE(180), + [sym__todo_highlights] = STATE(180), + [sym_todo] = STATE(180), + [sym_note] = STATE(180), + [sym__symbol_fallback] = STATE(180), + [aux_sym__text] = STATE(132), + [aux_sym__inline_repeat1] = STATE(79), + [anon_sym_LBRACE_] = ACTIONS(574), + [anon_sym__] = ACTIONS(576), + [anon_sym_LBRACE_STAR] = ACTIONS(578), + [anon_sym_STAR] = ACTIONS(580), + [anon_sym_BSLASH] = ACTIONS(582), + [sym_quotation_marks] = ACTIONS(576), + [sym_ellipsis] = ACTIONS(576), + [sym_em_dash] = ACTIONS(576), + [sym_en_dash] = ACTIONS(584), + [sym_backslash_escape] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(586), + [anon_sym_LBRACE_EQ] = ACTIONS(588), + [anon_sym_LBRACE_PLUS] = ACTIONS(590), + [anon_sym_LBRACE_DASH] = ACTIONS(592), + [anon_sym_DASH_RBRACE] = ACTIONS(550), + [sym_symbol] = ACTIONS(576), + [anon_sym_LBRACE_CARET] = ACTIONS(594), + [anon_sym_CARET] = ACTIONS(594), + [anon_sym_LBRACE_TILDE] = ACTIONS(596), + [anon_sym_TILDE] = ACTIONS(596), + [anon_sym_LBRACK_CARET] = ACTIONS(598), + [anon_sym_BANG_LBRACK] = ACTIONS(600), + [anon_sym_LBRACK] = ACTIONS(602), + [anon_sym_LBRACE2] = ACTIONS(584), + [anon_sym_DOLLAR] = ACTIONS(604), + [anon_sym_TODO] = ACTIONS(606), + [anon_sym_WIP] = ACTIONS(606), + [anon_sym_NOTE] = ACTIONS(608), + [anon_sym_INFO] = ACTIONS(608), + [anon_sym_XXX] = ACTIONS(608), + [sym_fixme] = ACTIONS(576), + [anon_sym_PIPE] = ACTIONS(576), + [sym__whitespace1] = ACTIONS(610), + [sym__newline] = ACTIONS(612), + [aux_sym__text_token1] = ACTIONS(614), + [sym__verbatim_begin] = ACTIONS(616), + }, + [74] = { + [sym__inline] = STATE(698), [sym__element] = STATE(121), - [sym_emphasis] = STATE(183), - [sym_emphasis_begin] = STATE(91), - [sym_strong] = STATE(183), + [sym_emphasis] = STATE(467), + [sym_emphasis_begin] = STATE(900), + [sym_strong] = STATE(467), [sym_strong_begin] = STATE(92), - [sym__hard_line_break] = STATE(183), - [sym_hard_line_break] = STATE(183), - [sym__smart_punctuation] = STATE(183), - [sym_autolink] = STATE(183), - [sym_highlighted] = STATE(183), - [sym_insert] = STATE(183), - [sym_delete] = STATE(183), - [sym_superscript] = STATE(183), - [sym_subscript] = STATE(183), - [sym_footnote_reference] = STATE(183), - [sym__image] = STATE(183), - [sym_full_reference_image] = STATE(183), - [sym_collapsed_reference_image] = STATE(183), - [sym_inline_image] = STATE(183), - [sym__image_description] = STATE(645), - [sym__link] = STATE(183), - [sym_full_reference_link] = STATE(183), - [sym_collapsed_reference_link] = STATE(183), - [sym_inline_link] = STATE(183), - [sym_link_text] = STATE(646), - [sym__comment_with_spaces] = STATE(183), - [sym_span] = STATE(183), - [sym_raw_inline] = STATE(183), - [sym_math] = STATE(183), - [sym_verbatim] = STATE(183), - [sym__todo_highlights] = STATE(183), - [sym_todo] = STATE(183), - [sym_note] = STATE(183), - [sym__symbol_fallback] = STATE(183), - [aux_sym__text] = STATE(149), + [sym__hard_line_break] = STATE(467), + [sym_hard_line_break] = STATE(467), + [sym__smart_punctuation] = STATE(467), + [sym_autolink] = STATE(467), + [sym_highlighted] = STATE(467), + [sym_insert] = STATE(467), + [sym_delete] = STATE(467), + [sym_superscript] = STATE(467), + [sym_subscript] = STATE(467), + [sym_footnote_reference] = STATE(467), + [sym__image] = STATE(467), + [sym_full_reference_image] = STATE(467), + [sym_collapsed_reference_image] = STATE(467), + [sym_inline_image] = STATE(467), + [sym__image_description] = STATE(619), + [sym__link] = STATE(467), + [sym_full_reference_link] = STATE(467), + [sym_collapsed_reference_link] = STATE(467), + [sym_inline_link] = STATE(467), + [sym_link_text] = STATE(620), + [sym__comment_with_spaces] = STATE(467), + [sym_span] = STATE(467), + [sym_raw_inline] = STATE(467), + [sym_math] = STATE(467), + [sym_verbatim] = STATE(467), + [sym__todo_highlights] = STATE(467), + [sym_todo] = STATE(467), + [sym_note] = STATE(467), + [sym__symbol_fallback] = STATE(467), + [aux_sym__text] = STATE(171), [aux_sym__inline_repeat1] = STATE(121), - [anon_sym_LBRACE_] = ACTIONS(1623), - [anon_sym__] = ACTIONS(1626), - [anon_sym_LBRACE_STAR] = ACTIONS(1629), - [anon_sym_STAR] = ACTIONS(1632), - [anon_sym_BSLASH] = ACTIONS(1635), - [sym_quotation_marks] = ACTIONS(1638), - [sym_ellipsis] = ACTIONS(1638), - [sym_em_dash] = ACTIONS(1638), - [sym_en_dash] = ACTIONS(1641), - [sym_backslash_escape] = ACTIONS(1641), - [anon_sym_LT] = ACTIONS(1644), - [anon_sym_LBRACE_EQ] = ACTIONS(1647), - [anon_sym_LBRACE_PLUS] = ACTIONS(1650), - [anon_sym_LBRACE_DASH] = ACTIONS(1653), - [anon_sym_DASH_RBRACE] = ACTIONS(670), - [sym_symbol] = ACTIONS(1638), - [anon_sym_LBRACE_CARET] = ACTIONS(1656), - [anon_sym_CARET] = ACTIONS(1656), - [anon_sym_LBRACE_TILDE] = ACTIONS(1659), - [anon_sym_TILDE] = ACTIONS(1659), - [anon_sym_LBRACK_CARET] = ACTIONS(1662), - [anon_sym_BANG_LBRACK] = ACTIONS(1665), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_LBRACE2] = ACTIONS(1641), - [anon_sym_DOLLAR] = ACTIONS(1671), - [anon_sym_TODO] = ACTIONS(1674), - [anon_sym_WIP] = ACTIONS(1674), - [anon_sym_NOTE] = ACTIONS(1677), - [anon_sym_INFO] = ACTIONS(1677), - [anon_sym_XXX] = ACTIONS(1677), - [sym_fixme] = ACTIONS(1638), - [anon_sym_PIPE] = ACTIONS(1638), - [sym__whitespace1] = ACTIONS(1680), - [sym__newline] = ACTIONS(1683), - [aux_sym__text_token1] = ACTIONS(1686), - [sym__verbatim_begin] = ACTIONS(1689), + [anon_sym_LBRACE_] = ACTIONS(618), + [anon_sym__] = ACTIONS(620), + [anon_sym_LBRACE_STAR] = ACTIONS(622), + [anon_sym_STAR] = ACTIONS(624), + [anon_sym_BSLASH] = ACTIONS(626), + [sym_quotation_marks] = ACTIONS(620), + [sym_ellipsis] = ACTIONS(620), + [sym_em_dash] = ACTIONS(620), + [sym_en_dash] = ACTIONS(628), + [sym_backslash_escape] = ACTIONS(628), + [anon_sym_LT] = ACTIONS(630), + [anon_sym_LBRACE_EQ] = ACTIONS(632), + [anon_sym_LBRACE_PLUS] = ACTIONS(634), + [anon_sym_LBRACE_DASH] = ACTIONS(636), + [sym_symbol] = ACTIONS(620), + [anon_sym_LBRACE_CARET] = ACTIONS(638), + [anon_sym_CARET] = ACTIONS(638), + [anon_sym_LBRACE_TILDE] = ACTIONS(640), + [anon_sym_TILDE] = ACTIONS(640), + [anon_sym_LBRACK_CARET] = ACTIONS(642), + [anon_sym_BANG_LBRACK] = ACTIONS(644), + [anon_sym_LBRACK] = ACTIONS(646), + [anon_sym_LBRACE2] = ACTIONS(628), + [anon_sym_DOLLAR] = ACTIONS(648), + [anon_sym_TODO] = ACTIONS(650), + [anon_sym_WIP] = ACTIONS(650), + [anon_sym_NOTE] = ACTIONS(652), + [anon_sym_INFO] = ACTIONS(652), + [anon_sym_XXX] = ACTIONS(652), + [sym_fixme] = ACTIONS(620), + [anon_sym_PIPE] = ACTIONS(620), + [sym__whitespace1] = ACTIONS(654), + [sym__newline] = ACTIONS(656), + [aux_sym__text_token1] = ACTIONS(658), + [sym__verbatim_begin] = ACTIONS(660), }, -}; - -static const uint16_t ts_small_parse_table[] = { - [0] = 6, - ACTIONS(49), 1, - anon_sym_LBRACE, - ACTIONS(93), 1, - aux_sym_emphasis_end_token1, - ACTIONS(1695), 1, - anon_sym_SPACE, - STATE(282), 1, - aux_sym_emphasis_begin_repeat1, - ACTIONS(1697), 8, - anon_sym__, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE2, - sym__whitespace1, - aux_sym__text_token1, - ACTIONS(1692), 27, - sym__verbatim_begin, - anon_sym_LBRACE_, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - anon_sym_PIPE, - sym__newline, - [52] = 6, - ACTIONS(49), 1, - anon_sym_LBRACE, - ACTIONS(93), 1, - aux_sym_strong_end_token1, - ACTIONS(1703), 1, - anon_sym_SPACE, - STATE(291), 1, - aux_sym_emphasis_begin_repeat1, - ACTIONS(1705), 8, - anon_sym_STAR, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE2, - sym__whitespace1, - aux_sym__text_token1, - ACTIONS(1700), 27, - sym__verbatim_begin, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - anon_sym_PIPE, - sym__newline, - [104] = 4, - ACTIONS(1708), 1, - sym__id, - STATE(800), 1, - sym_reference_label, - ACTIONS(49), 15, - anon_sym_LBRACE, - anon_sym__, - anon_sym_BSLASH, - sym_em_dash, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE2, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - aux_sym__text_token1, - ACTIONS(93), 22, - sym__verbatim_begin, - anon_sym_LBRACE_, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_PIPE, - sym__whitespace1, - sym__newline, - [152] = 6, - ACTIONS(49), 1, - anon_sym_LBRACE, - ACTIONS(93), 1, - anon_sym_EQ_RBRACE, - ACTIONS(1703), 1, - anon_sym_SPACE, - STATE(291), 1, - aux_sym_emphasis_begin_repeat1, - ACTIONS(1705), 7, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE2, - sym__whitespace1, - aux_sym__text_token1, - ACTIONS(1700), 28, - sym__verbatim_begin, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - anon_sym_PIPE, - sym__newline, - [204] = 6, - ACTIONS(49), 1, - anon_sym_LBRACE, - ACTIONS(93), 1, - anon_sym_RBRACK, - ACTIONS(1703), 1, - anon_sym_SPACE, - STATE(291), 1, - aux_sym_emphasis_begin_repeat1, - ACTIONS(1705), 7, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE2, - sym__whitespace1, - aux_sym__text_token1, - ACTIONS(1700), 28, - sym__verbatim_begin, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - anon_sym_PIPE, - sym__newline, - [256] = 6, - ACTIONS(49), 1, - anon_sym_LBRACE, - ACTIONS(93), 1, - anon_sym_RBRACK, - ACTIONS(1695), 1, - anon_sym_SPACE, - STATE(282), 1, - aux_sym_emphasis_begin_repeat1, - ACTIONS(1697), 7, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE2, - sym__whitespace1, - aux_sym__text_token1, - ACTIONS(1692), 28, - sym__verbatim_begin, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - anon_sym_PIPE, - sym__newline, - [308] = 4, - ACTIONS(1714), 1, - anon_sym_LBRACE_EQ2, - STATE(366), 1, - sym_raw_inline_attribute, - ACTIONS(1710), 9, + [75] = { + [sym__element] = STATE(75), + [sym_emphasis] = STATE(184), + [sym_emphasis_begin] = STATE(880), + [sym_strong] = STATE(184), + [sym_strong_begin] = STATE(90), + [sym__hard_line_break] = STATE(184), + [sym_hard_line_break] = STATE(184), + [sym__smart_punctuation] = STATE(184), + [sym_autolink] = STATE(184), + [sym_highlighted] = STATE(184), + [sym_insert] = STATE(184), + [sym_delete] = STATE(184), + [sym_superscript] = STATE(184), + [sym_subscript] = STATE(184), + [sym_footnote_reference] = STATE(184), + [sym__image] = STATE(184), + [sym_full_reference_image] = STATE(184), + [sym_collapsed_reference_image] = STATE(184), + [sym_inline_image] = STATE(184), + [sym__image_description] = STATE(609), + [sym__link] = STATE(184), + [sym_full_reference_link] = STATE(184), + [sym_collapsed_reference_link] = STATE(184), + [sym_inline_link] = STATE(184), + [sym_link_text] = STATE(612), + [sym__comment_with_spaces] = STATE(184), + [sym_span] = STATE(184), + [sym_raw_inline] = STATE(184), + [sym_math] = STATE(184), + [sym_verbatim] = STATE(184), + [sym__todo_highlights] = STATE(184), + [sym_todo] = STATE(184), + [sym_note] = STATE(184), + [sym__symbol_fallback] = STATE(184), + [aux_sym__text] = STATE(151), + [aux_sym__inline_repeat1] = STATE(75), + [ts_builtin_sym_end] = ACTIONS(662), + [anon_sym_LBRACE_] = ACTIONS(664), + [anon_sym__] = ACTIONS(667), + [anon_sym_LBRACE_STAR] = ACTIONS(670), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_BSLASH] = ACTIONS(676), + [sym_quotation_marks] = ACTIONS(667), + [sym_ellipsis] = ACTIONS(667), + [sym_em_dash] = ACTIONS(667), + [sym_en_dash] = ACTIONS(679), + [sym_backslash_escape] = ACTIONS(679), + [anon_sym_LT] = ACTIONS(682), + [anon_sym_LBRACE_EQ] = ACTIONS(685), + [anon_sym_LBRACE_PLUS] = ACTIONS(688), + [anon_sym_LBRACE_DASH] = ACTIONS(691), + [sym_symbol] = ACTIONS(667), + [anon_sym_LBRACE_CARET] = ACTIONS(694), + [anon_sym_CARET] = ACTIONS(694), + [anon_sym_LBRACE_TILDE] = ACTIONS(697), + [anon_sym_TILDE] = ACTIONS(697), + [anon_sym_LBRACK_CARET] = ACTIONS(700), + [anon_sym_BANG_LBRACK] = ACTIONS(703), + [anon_sym_LBRACK] = ACTIONS(706), + [anon_sym_LBRACE2] = ACTIONS(679), + [anon_sym_DOLLAR] = ACTIONS(709), + [anon_sym_TODO] = ACTIONS(712), + [anon_sym_WIP] = ACTIONS(712), + [anon_sym_NOTE] = ACTIONS(715), + [anon_sym_INFO] = ACTIONS(715), + [anon_sym_XXX] = ACTIONS(715), + [sym_fixme] = ACTIONS(667), + [anon_sym_PIPE] = ACTIONS(667), + [sym__whitespace1] = ACTIONS(718), + [sym__newline] = ACTIONS(721), + [aux_sym__text_token1] = ACTIONS(724), + [sym__verbatim_begin] = ACTIONS(727), + }, + [76] = { + [sym__inline] = STATE(688), + [sym__element] = STATE(121), + [sym_emphasis] = STATE(467), + [sym_emphasis_begin] = STATE(900), + [sym_strong] = STATE(467), + [sym_strong_begin] = STATE(92), + [sym__hard_line_break] = STATE(467), + [sym_hard_line_break] = STATE(467), + [sym__smart_punctuation] = STATE(467), + [sym_autolink] = STATE(467), + [sym_highlighted] = STATE(467), + [sym_insert] = STATE(467), + [sym_delete] = STATE(467), + [sym_superscript] = STATE(467), + [sym_subscript] = STATE(467), + [sym_footnote_reference] = STATE(467), + [sym__image] = STATE(467), + [sym_full_reference_image] = STATE(467), + [sym_collapsed_reference_image] = STATE(467), + [sym_inline_image] = STATE(467), + [sym__image_description] = STATE(619), + [sym__link] = STATE(467), + [sym_full_reference_link] = STATE(467), + [sym_collapsed_reference_link] = STATE(467), + [sym_inline_link] = STATE(467), + [sym_link_text] = STATE(620), + [sym__comment_with_spaces] = STATE(467), + [sym_span] = STATE(467), + [sym_raw_inline] = STATE(467), + [sym_math] = STATE(467), + [sym_verbatim] = STATE(467), + [sym__todo_highlights] = STATE(467), + [sym_todo] = STATE(467), + [sym_note] = STATE(467), + [sym__symbol_fallback] = STATE(467), + [aux_sym__text] = STATE(171), + [aux_sym__inline_repeat1] = STATE(121), + [anon_sym_LBRACE_] = ACTIONS(618), + [anon_sym__] = ACTIONS(620), + [anon_sym_LBRACE_STAR] = ACTIONS(622), + [anon_sym_STAR] = ACTIONS(624), + [anon_sym_BSLASH] = ACTIONS(626), + [sym_quotation_marks] = ACTIONS(620), + [sym_ellipsis] = ACTIONS(620), + [sym_em_dash] = ACTIONS(620), + [sym_en_dash] = ACTIONS(628), + [sym_backslash_escape] = ACTIONS(628), + [anon_sym_LT] = ACTIONS(630), + [anon_sym_LBRACE_EQ] = ACTIONS(632), + [anon_sym_LBRACE_PLUS] = ACTIONS(634), + [anon_sym_LBRACE_DASH] = ACTIONS(636), + [sym_symbol] = ACTIONS(620), + [anon_sym_LBRACE_CARET] = ACTIONS(638), + [anon_sym_CARET] = ACTIONS(638), + [anon_sym_LBRACE_TILDE] = ACTIONS(640), + [anon_sym_TILDE] = ACTIONS(640), + [anon_sym_LBRACK_CARET] = ACTIONS(642), + [anon_sym_BANG_LBRACK] = ACTIONS(644), + [anon_sym_LBRACK] = ACTIONS(646), + [anon_sym_LBRACE2] = ACTIONS(628), + [anon_sym_DOLLAR] = ACTIONS(648), + [anon_sym_TODO] = ACTIONS(650), + [anon_sym_WIP] = ACTIONS(650), + [anon_sym_NOTE] = ACTIONS(652), + [anon_sym_INFO] = ACTIONS(652), + [anon_sym_XXX] = ACTIONS(652), + [sym_fixme] = ACTIONS(620), + [anon_sym_PIPE] = ACTIONS(620), + [sym__whitespace1] = ACTIONS(654), + [sym__newline] = ACTIONS(656), + [aux_sym__text_token1] = ACTIONS(658), + [sym__verbatim_begin] = ACTIONS(660), + }, + [77] = { + [sym__inline] = STATE(685), + [sym__element] = STATE(121), + [sym_emphasis] = STATE(467), + [sym_emphasis_begin] = STATE(900), + [sym_strong] = STATE(467), + [sym_strong_begin] = STATE(92), + [sym__hard_line_break] = STATE(467), + [sym_hard_line_break] = STATE(467), + [sym__smart_punctuation] = STATE(467), + [sym_autolink] = STATE(467), + [sym_highlighted] = STATE(467), + [sym_insert] = STATE(467), + [sym_delete] = STATE(467), + [sym_superscript] = STATE(467), + [sym_subscript] = STATE(467), + [sym_footnote_reference] = STATE(467), + [sym__image] = STATE(467), + [sym_full_reference_image] = STATE(467), + [sym_collapsed_reference_image] = STATE(467), + [sym_inline_image] = STATE(467), + [sym__image_description] = STATE(619), + [sym__link] = STATE(467), + [sym_full_reference_link] = STATE(467), + [sym_collapsed_reference_link] = STATE(467), + [sym_inline_link] = STATE(467), + [sym_link_text] = STATE(620), + [sym__comment_with_spaces] = STATE(467), + [sym_span] = STATE(467), + [sym_raw_inline] = STATE(467), + [sym_math] = STATE(467), + [sym_verbatim] = STATE(467), + [sym__todo_highlights] = STATE(467), + [sym_todo] = STATE(467), + [sym_note] = STATE(467), + [sym__symbol_fallback] = STATE(467), + [aux_sym__text] = STATE(171), + [aux_sym__inline_repeat1] = STATE(121), + [anon_sym_LBRACE_] = ACTIONS(618), + [anon_sym__] = ACTIONS(620), + [anon_sym_LBRACE_STAR] = ACTIONS(622), + [anon_sym_STAR] = ACTIONS(624), + [anon_sym_BSLASH] = ACTIONS(626), + [sym_quotation_marks] = ACTIONS(620), + [sym_ellipsis] = ACTIONS(620), + [sym_em_dash] = ACTIONS(620), + [sym_en_dash] = ACTIONS(628), + [sym_backslash_escape] = ACTIONS(628), + [anon_sym_LT] = ACTIONS(630), + [anon_sym_LBRACE_EQ] = ACTIONS(632), + [anon_sym_LBRACE_PLUS] = ACTIONS(634), + [anon_sym_LBRACE_DASH] = ACTIONS(636), + [sym_symbol] = ACTIONS(620), + [anon_sym_LBRACE_CARET] = ACTIONS(638), + [anon_sym_CARET] = ACTIONS(638), + [anon_sym_LBRACE_TILDE] = ACTIONS(640), + [anon_sym_TILDE] = ACTIONS(640), + [anon_sym_LBRACK_CARET] = ACTIONS(642), + [anon_sym_BANG_LBRACK] = ACTIONS(644), + [anon_sym_LBRACK] = ACTIONS(646), + [anon_sym_LBRACE2] = ACTIONS(628), + [anon_sym_DOLLAR] = ACTIONS(648), + [anon_sym_TODO] = ACTIONS(650), + [anon_sym_WIP] = ACTIONS(650), + [anon_sym_NOTE] = ACTIONS(652), + [anon_sym_INFO] = ACTIONS(652), + [anon_sym_XXX] = ACTIONS(652), + [sym_fixme] = ACTIONS(620), + [anon_sym_PIPE] = ACTIONS(620), + [sym__whitespace1] = ACTIONS(654), + [sym__newline] = ACTIONS(656), + [aux_sym__text_token1] = ACTIONS(658), + [sym__verbatim_begin] = ACTIONS(660), + }, + [78] = { + [sym__element] = STATE(85), + [sym_emphasis] = STATE(167), + [sym_emphasis_begin] = STATE(894), + [sym_strong] = STATE(167), + [sym_strong_begin] = STATE(117), + [sym__hard_line_break] = STATE(167), + [sym_hard_line_break] = STATE(167), + [sym__smart_punctuation] = STATE(167), + [sym_autolink] = STATE(167), + [sym_highlighted] = STATE(167), + [sym_insert] = STATE(167), + [sym_delete] = STATE(167), + [sym_superscript] = STATE(167), + [sym_subscript] = STATE(167), + [sym_footnote_reference] = STATE(167), + [sym__image] = STATE(167), + [sym_full_reference_image] = STATE(167), + [sym_collapsed_reference_image] = STATE(167), + [sym_inline_image] = STATE(167), + [sym__image_description] = STATE(613), + [sym__link] = STATE(167), + [sym_full_reference_link] = STATE(167), + [sym_collapsed_reference_link] = STATE(167), + [sym_inline_link] = STATE(167), + [sym_link_text] = STATE(614), + [sym__comment_with_spaces] = STATE(167), + [sym_span] = STATE(167), + [sym_raw_inline] = STATE(167), + [sym_math] = STATE(167), + [sym_verbatim] = STATE(167), + [sym__todo_highlights] = STATE(167), + [sym_todo] = STATE(167), + [sym_note] = STATE(167), + [sym__symbol_fallback] = STATE(167), + [aux_sym__text] = STATE(130), + [aux_sym__inline_repeat1] = STATE(85), + [anon_sym_LBRACE_] = ACTIONS(730), + [anon_sym__] = ACTIONS(732), + [anon_sym_LBRACE_STAR] = ACTIONS(734), + [anon_sym_STAR] = ACTIONS(736), + [anon_sym_BSLASH] = ACTIONS(738), + [sym_quotation_marks] = ACTIONS(732), + [sym_ellipsis] = ACTIONS(732), + [sym_em_dash] = ACTIONS(732), + [sym_en_dash] = ACTIONS(740), + [sym_backslash_escape] = ACTIONS(740), + [anon_sym_LT] = ACTIONS(742), + [anon_sym_LBRACE_EQ] = ACTIONS(744), + [anon_sym_LBRACE_PLUS] = ACTIONS(746), + [anon_sym_PLUS_RBRACE] = ACTIONS(550), + [anon_sym_LBRACE_DASH] = ACTIONS(748), + [sym_symbol] = ACTIONS(732), + [anon_sym_LBRACE_CARET] = ACTIONS(750), + [anon_sym_CARET] = ACTIONS(750), + [anon_sym_LBRACE_TILDE] = ACTIONS(752), + [anon_sym_TILDE] = ACTIONS(752), + [anon_sym_LBRACK_CARET] = ACTIONS(754), + [anon_sym_BANG_LBRACK] = ACTIONS(756), + [anon_sym_LBRACK] = ACTIONS(758), + [anon_sym_LBRACE2] = ACTIONS(740), + [anon_sym_DOLLAR] = ACTIONS(760), + [anon_sym_TODO] = ACTIONS(762), + [anon_sym_WIP] = ACTIONS(762), + [anon_sym_NOTE] = ACTIONS(764), + [anon_sym_INFO] = ACTIONS(764), + [anon_sym_XXX] = ACTIONS(764), + [sym_fixme] = ACTIONS(732), + [anon_sym_PIPE] = ACTIONS(732), + [sym__whitespace1] = ACTIONS(766), + [sym__newline] = ACTIONS(768), + [aux_sym__text_token1] = ACTIONS(770), + [sym__verbatim_begin] = ACTIONS(772), + }, + [79] = { + [sym__element] = STATE(79), + [sym_emphasis] = STATE(180), + [sym_emphasis_begin] = STATE(895), + [sym_strong] = STATE(180), + [sym_strong_begin] = STATE(114), + [sym__hard_line_break] = STATE(180), + [sym_hard_line_break] = STATE(180), + [sym__smart_punctuation] = STATE(180), + [sym_autolink] = STATE(180), + [sym_highlighted] = STATE(180), + [sym_insert] = STATE(180), + [sym_delete] = STATE(180), + [sym_superscript] = STATE(180), + [sym_subscript] = STATE(180), + [sym_footnote_reference] = STATE(180), + [sym__image] = STATE(180), + [sym_full_reference_image] = STATE(180), + [sym_collapsed_reference_image] = STATE(180), + [sym_inline_image] = STATE(180), + [sym__image_description] = STATE(632), + [sym__link] = STATE(180), + [sym_full_reference_link] = STATE(180), + [sym_collapsed_reference_link] = STATE(180), + [sym_inline_link] = STATE(180), + [sym_link_text] = STATE(633), + [sym__comment_with_spaces] = STATE(180), + [sym_span] = STATE(180), + [sym_raw_inline] = STATE(180), + [sym_math] = STATE(180), + [sym_verbatim] = STATE(180), + [sym__todo_highlights] = STATE(180), + [sym_todo] = STATE(180), + [sym_note] = STATE(180), + [sym__symbol_fallback] = STATE(180), + [aux_sym__text] = STATE(132), + [aux_sym__inline_repeat1] = STATE(79), + [anon_sym_LBRACE_] = ACTIONS(774), + [anon_sym__] = ACTIONS(777), + [anon_sym_LBRACE_STAR] = ACTIONS(780), + [anon_sym_STAR] = ACTIONS(783), + [anon_sym_BSLASH] = ACTIONS(786), + [sym_quotation_marks] = ACTIONS(777), + [sym_ellipsis] = ACTIONS(777), + [sym_em_dash] = ACTIONS(777), + [sym_en_dash] = ACTIONS(789), + [sym_backslash_escape] = ACTIONS(789), + [anon_sym_LT] = ACTIONS(792), + [anon_sym_LBRACE_EQ] = ACTIONS(795), + [anon_sym_LBRACE_PLUS] = ACTIONS(798), + [anon_sym_LBRACE_DASH] = ACTIONS(801), + [anon_sym_DASH_RBRACE] = ACTIONS(662), + [sym_symbol] = ACTIONS(777), + [anon_sym_LBRACE_CARET] = ACTIONS(804), + [anon_sym_CARET] = ACTIONS(804), + [anon_sym_LBRACE_TILDE] = ACTIONS(807), + [anon_sym_TILDE] = ACTIONS(807), + [anon_sym_LBRACK_CARET] = ACTIONS(810), + [anon_sym_BANG_LBRACK] = ACTIONS(813), + [anon_sym_LBRACK] = ACTIONS(816), + [anon_sym_LBRACE2] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(819), + [anon_sym_TODO] = ACTIONS(822), + [anon_sym_WIP] = ACTIONS(822), + [anon_sym_NOTE] = ACTIONS(825), + [anon_sym_INFO] = ACTIONS(825), + [anon_sym_XXX] = ACTIONS(825), + [sym_fixme] = ACTIONS(777), + [anon_sym_PIPE] = ACTIONS(777), + [sym__whitespace1] = ACTIONS(828), + [sym__newline] = ACTIONS(831), + [aux_sym__text_token1] = ACTIONS(834), + [sym__verbatim_begin] = ACTIONS(837), + }, + [80] = { + [sym__inline] = STATE(652), + [sym__element] = STATE(121), + [sym_emphasis] = STATE(467), + [sym_emphasis_begin] = STATE(900), + [sym_strong] = STATE(467), + [sym_strong_begin] = STATE(92), + [sym__hard_line_break] = STATE(467), + [sym_hard_line_break] = STATE(467), + [sym__smart_punctuation] = STATE(467), + [sym_autolink] = STATE(467), + [sym_highlighted] = STATE(467), + [sym_insert] = STATE(467), + [sym_delete] = STATE(467), + [sym_superscript] = STATE(467), + [sym_subscript] = STATE(467), + [sym_footnote_reference] = STATE(467), + [sym__image] = STATE(467), + [sym_full_reference_image] = STATE(467), + [sym_collapsed_reference_image] = STATE(467), + [sym_inline_image] = STATE(467), + [sym__image_description] = STATE(619), + [sym__link] = STATE(467), + [sym_full_reference_link] = STATE(467), + [sym_collapsed_reference_link] = STATE(467), + [sym_inline_link] = STATE(467), + [sym_link_text] = STATE(620), + [sym__comment_with_spaces] = STATE(467), + [sym_span] = STATE(467), + [sym_raw_inline] = STATE(467), + [sym_math] = STATE(467), + [sym_verbatim] = STATE(467), + [sym__todo_highlights] = STATE(467), + [sym_todo] = STATE(467), + [sym_note] = STATE(467), + [sym__symbol_fallback] = STATE(467), + [aux_sym__text] = STATE(171), + [aux_sym__inline_repeat1] = STATE(121), + [anon_sym_LBRACE_] = ACTIONS(618), + [anon_sym__] = ACTIONS(620), + [anon_sym_LBRACE_STAR] = ACTIONS(622), + [anon_sym_STAR] = ACTIONS(624), + [anon_sym_BSLASH] = ACTIONS(626), + [sym_quotation_marks] = ACTIONS(620), + [sym_ellipsis] = ACTIONS(620), + [sym_em_dash] = ACTIONS(620), + [sym_en_dash] = ACTIONS(628), + [sym_backslash_escape] = ACTIONS(628), + [anon_sym_LT] = ACTIONS(630), + [anon_sym_LBRACE_EQ] = ACTIONS(632), + [anon_sym_LBRACE_PLUS] = ACTIONS(634), + [anon_sym_LBRACE_DASH] = ACTIONS(636), + [sym_symbol] = ACTIONS(620), + [anon_sym_LBRACE_CARET] = ACTIONS(638), + [anon_sym_CARET] = ACTIONS(638), + [anon_sym_LBRACE_TILDE] = ACTIONS(640), + [anon_sym_TILDE] = ACTIONS(640), + [anon_sym_LBRACK_CARET] = ACTIONS(642), + [anon_sym_BANG_LBRACK] = ACTIONS(644), + [anon_sym_LBRACK] = ACTIONS(646), + [anon_sym_LBRACE2] = ACTIONS(628), + [anon_sym_DOLLAR] = ACTIONS(648), + [anon_sym_TODO] = ACTIONS(650), + [anon_sym_WIP] = ACTIONS(650), + [anon_sym_NOTE] = ACTIONS(652), + [anon_sym_INFO] = ACTIONS(652), + [anon_sym_XXX] = ACTIONS(652), + [sym_fixme] = ACTIONS(620), + [anon_sym_PIPE] = ACTIONS(620), + [sym__whitespace1] = ACTIONS(654), + [sym__newline] = ACTIONS(656), + [aux_sym__text_token1] = ACTIONS(658), + [sym__verbatim_begin] = ACTIONS(660), + }, + [81] = { + [sym__inline] = STATE(671), + [sym__element] = STATE(121), + [sym_emphasis] = STATE(467), + [sym_emphasis_begin] = STATE(900), + [sym_strong] = STATE(467), + [sym_strong_begin] = STATE(92), + [sym__hard_line_break] = STATE(467), + [sym_hard_line_break] = STATE(467), + [sym__smart_punctuation] = STATE(467), + [sym_autolink] = STATE(467), + [sym_highlighted] = STATE(467), + [sym_insert] = STATE(467), + [sym_delete] = STATE(467), + [sym_superscript] = STATE(467), + [sym_subscript] = STATE(467), + [sym_footnote_reference] = STATE(467), + [sym__image] = STATE(467), + [sym_full_reference_image] = STATE(467), + [sym_collapsed_reference_image] = STATE(467), + [sym_inline_image] = STATE(467), + [sym__image_description] = STATE(619), + [sym__link] = STATE(467), + [sym_full_reference_link] = STATE(467), + [sym_collapsed_reference_link] = STATE(467), + [sym_inline_link] = STATE(467), + [sym_link_text] = STATE(620), + [sym__comment_with_spaces] = STATE(467), + [sym_span] = STATE(467), + [sym_raw_inline] = STATE(467), + [sym_math] = STATE(467), + [sym_verbatim] = STATE(467), + [sym__todo_highlights] = STATE(467), + [sym_todo] = STATE(467), + [sym_note] = STATE(467), + [sym__symbol_fallback] = STATE(467), + [aux_sym__text] = STATE(171), + [aux_sym__inline_repeat1] = STATE(121), + [anon_sym_LBRACE_] = ACTIONS(618), + [anon_sym__] = ACTIONS(620), + [anon_sym_LBRACE_STAR] = ACTIONS(622), + [anon_sym_STAR] = ACTIONS(624), + [anon_sym_BSLASH] = ACTIONS(626), + [sym_quotation_marks] = ACTIONS(620), + [sym_ellipsis] = ACTIONS(620), + [sym_em_dash] = ACTIONS(620), + [sym_en_dash] = ACTIONS(628), + [sym_backslash_escape] = ACTIONS(628), + [anon_sym_LT] = ACTIONS(630), + [anon_sym_LBRACE_EQ] = ACTIONS(632), + [anon_sym_LBRACE_PLUS] = ACTIONS(634), + [anon_sym_LBRACE_DASH] = ACTIONS(636), + [sym_symbol] = ACTIONS(620), + [anon_sym_LBRACE_CARET] = ACTIONS(638), + [anon_sym_CARET] = ACTIONS(638), + [anon_sym_LBRACE_TILDE] = ACTIONS(640), + [anon_sym_TILDE] = ACTIONS(640), + [anon_sym_LBRACK_CARET] = ACTIONS(642), + [anon_sym_BANG_LBRACK] = ACTIONS(644), + [anon_sym_LBRACK] = ACTIONS(646), + [anon_sym_LBRACE2] = ACTIONS(628), + [anon_sym_DOLLAR] = ACTIONS(648), + [anon_sym_TODO] = ACTIONS(650), + [anon_sym_WIP] = ACTIONS(650), + [anon_sym_NOTE] = ACTIONS(652), + [anon_sym_INFO] = ACTIONS(652), + [anon_sym_XXX] = ACTIONS(652), + [sym_fixme] = ACTIONS(620), + [anon_sym_PIPE] = ACTIONS(620), + [sym__whitespace1] = ACTIONS(654), + [sym__newline] = ACTIONS(656), + [aux_sym__text_token1] = ACTIONS(658), + [sym__verbatim_begin] = ACTIONS(660), + }, + [82] = { + [sym__inline] = STATE(666), + [sym__element] = STATE(121), + [sym_emphasis] = STATE(467), + [sym_emphasis_begin] = STATE(900), + [sym_strong] = STATE(467), + [sym_strong_begin] = STATE(92), + [sym__hard_line_break] = STATE(467), + [sym_hard_line_break] = STATE(467), + [sym__smart_punctuation] = STATE(467), + [sym_autolink] = STATE(467), + [sym_highlighted] = STATE(467), + [sym_insert] = STATE(467), + [sym_delete] = STATE(467), + [sym_superscript] = STATE(467), + [sym_subscript] = STATE(467), + [sym_footnote_reference] = STATE(467), + [sym__image] = STATE(467), + [sym_full_reference_image] = STATE(467), + [sym_collapsed_reference_image] = STATE(467), + [sym_inline_image] = STATE(467), + [sym__image_description] = STATE(619), + [sym__link] = STATE(467), + [sym_full_reference_link] = STATE(467), + [sym_collapsed_reference_link] = STATE(467), + [sym_inline_link] = STATE(467), + [sym_link_text] = STATE(620), + [sym__comment_with_spaces] = STATE(467), + [sym_span] = STATE(467), + [sym_raw_inline] = STATE(467), + [sym_math] = STATE(467), + [sym_verbatim] = STATE(467), + [sym__todo_highlights] = STATE(467), + [sym_todo] = STATE(467), + [sym_note] = STATE(467), + [sym__symbol_fallback] = STATE(467), + [aux_sym__text] = STATE(171), + [aux_sym__inline_repeat1] = STATE(121), + [anon_sym_LBRACE_] = ACTIONS(618), + [anon_sym__] = ACTIONS(620), + [anon_sym_LBRACE_STAR] = ACTIONS(622), + [anon_sym_STAR] = ACTIONS(624), + [anon_sym_BSLASH] = ACTIONS(626), + [sym_quotation_marks] = ACTIONS(620), + [sym_ellipsis] = ACTIONS(620), + [sym_em_dash] = ACTIONS(620), + [sym_en_dash] = ACTIONS(628), + [sym_backslash_escape] = ACTIONS(628), + [anon_sym_LT] = ACTIONS(630), + [anon_sym_LBRACE_EQ] = ACTIONS(632), + [anon_sym_LBRACE_PLUS] = ACTIONS(634), + [anon_sym_LBRACE_DASH] = ACTIONS(636), + [sym_symbol] = ACTIONS(620), + [anon_sym_LBRACE_CARET] = ACTIONS(638), + [anon_sym_CARET] = ACTIONS(638), + [anon_sym_LBRACE_TILDE] = ACTIONS(640), + [anon_sym_TILDE] = ACTIONS(640), + [anon_sym_LBRACK_CARET] = ACTIONS(642), + [anon_sym_BANG_LBRACK] = ACTIONS(644), + [anon_sym_LBRACK] = ACTIONS(646), + [anon_sym_LBRACE2] = ACTIONS(628), + [anon_sym_DOLLAR] = ACTIONS(648), + [anon_sym_TODO] = ACTIONS(650), + [anon_sym_WIP] = ACTIONS(650), + [anon_sym_NOTE] = ACTIONS(652), + [anon_sym_INFO] = ACTIONS(652), + [anon_sym_XXX] = ACTIONS(652), + [sym_fixme] = ACTIONS(620), + [anon_sym_PIPE] = ACTIONS(620), + [sym__whitespace1] = ACTIONS(654), + [sym__newline] = ACTIONS(656), + [aux_sym__text_token1] = ACTIONS(658), + [sym__verbatim_begin] = ACTIONS(660), + }, + [83] = { + [sym__inline] = STATE(674), + [sym__element] = STATE(121), + [sym_emphasis] = STATE(467), + [sym_emphasis_begin] = STATE(900), + [sym_strong] = STATE(467), + [sym_strong_begin] = STATE(92), + [sym__hard_line_break] = STATE(467), + [sym_hard_line_break] = STATE(467), + [sym__smart_punctuation] = STATE(467), + [sym_autolink] = STATE(467), + [sym_highlighted] = STATE(467), + [sym_insert] = STATE(467), + [sym_delete] = STATE(467), + [sym_superscript] = STATE(467), + [sym_subscript] = STATE(467), + [sym_footnote_reference] = STATE(467), + [sym__image] = STATE(467), + [sym_full_reference_image] = STATE(467), + [sym_collapsed_reference_image] = STATE(467), + [sym_inline_image] = STATE(467), + [sym__image_description] = STATE(619), + [sym__link] = STATE(467), + [sym_full_reference_link] = STATE(467), + [sym_collapsed_reference_link] = STATE(467), + [sym_inline_link] = STATE(467), + [sym_link_text] = STATE(620), + [sym__comment_with_spaces] = STATE(467), + [sym_span] = STATE(467), + [sym_raw_inline] = STATE(467), + [sym_math] = STATE(467), + [sym_verbatim] = STATE(467), + [sym__todo_highlights] = STATE(467), + [sym_todo] = STATE(467), + [sym_note] = STATE(467), + [sym__symbol_fallback] = STATE(467), + [aux_sym__text] = STATE(171), + [aux_sym__inline_repeat1] = STATE(121), + [anon_sym_LBRACE_] = ACTIONS(618), + [anon_sym__] = ACTIONS(620), + [anon_sym_LBRACE_STAR] = ACTIONS(622), + [anon_sym_STAR] = ACTIONS(624), + [anon_sym_BSLASH] = ACTIONS(626), + [sym_quotation_marks] = ACTIONS(620), + [sym_ellipsis] = ACTIONS(620), + [sym_em_dash] = ACTIONS(620), + [sym_en_dash] = ACTIONS(628), + [sym_backslash_escape] = ACTIONS(628), + [anon_sym_LT] = ACTIONS(630), + [anon_sym_LBRACE_EQ] = ACTIONS(632), + [anon_sym_LBRACE_PLUS] = ACTIONS(634), + [anon_sym_LBRACE_DASH] = ACTIONS(636), + [sym_symbol] = ACTIONS(620), + [anon_sym_LBRACE_CARET] = ACTIONS(638), + [anon_sym_CARET] = ACTIONS(638), + [anon_sym_LBRACE_TILDE] = ACTIONS(640), + [anon_sym_TILDE] = ACTIONS(640), + [anon_sym_LBRACK_CARET] = ACTIONS(642), + [anon_sym_BANG_LBRACK] = ACTIONS(644), + [anon_sym_LBRACK] = ACTIONS(646), + [anon_sym_LBRACE2] = ACTIONS(628), + [anon_sym_DOLLAR] = ACTIONS(648), + [anon_sym_TODO] = ACTIONS(650), + [anon_sym_WIP] = ACTIONS(650), + [anon_sym_NOTE] = ACTIONS(652), + [anon_sym_INFO] = ACTIONS(652), + [anon_sym_XXX] = ACTIONS(652), + [sym_fixme] = ACTIONS(620), + [anon_sym_PIPE] = ACTIONS(620), + [sym__whitespace1] = ACTIONS(654), + [sym__newline] = ACTIONS(656), + [aux_sym__text_token1] = ACTIONS(658), + [sym__verbatim_begin] = ACTIONS(660), + }, + [84] = { + [sym__inline] = STATE(686), + [sym__element] = STATE(121), + [sym_emphasis] = STATE(467), + [sym_emphasis_begin] = STATE(900), + [sym_strong] = STATE(467), + [sym_strong_begin] = STATE(92), + [sym__hard_line_break] = STATE(467), + [sym_hard_line_break] = STATE(467), + [sym__smart_punctuation] = STATE(467), + [sym_autolink] = STATE(467), + [sym_highlighted] = STATE(467), + [sym_insert] = STATE(467), + [sym_delete] = STATE(467), + [sym_superscript] = STATE(467), + [sym_subscript] = STATE(467), + [sym_footnote_reference] = STATE(467), + [sym__image] = STATE(467), + [sym_full_reference_image] = STATE(467), + [sym_collapsed_reference_image] = STATE(467), + [sym_inline_image] = STATE(467), + [sym__image_description] = STATE(619), + [sym__link] = STATE(467), + [sym_full_reference_link] = STATE(467), + [sym_collapsed_reference_link] = STATE(467), + [sym_inline_link] = STATE(467), + [sym_link_text] = STATE(620), + [sym__comment_with_spaces] = STATE(467), + [sym_span] = STATE(467), + [sym_raw_inline] = STATE(467), + [sym_math] = STATE(467), + [sym_verbatim] = STATE(467), + [sym__todo_highlights] = STATE(467), + [sym_todo] = STATE(467), + [sym_note] = STATE(467), + [sym__symbol_fallback] = STATE(467), + [aux_sym__text] = STATE(171), + [aux_sym__inline_repeat1] = STATE(121), + [anon_sym_LBRACE_] = ACTIONS(618), + [anon_sym__] = ACTIONS(620), + [anon_sym_LBRACE_STAR] = ACTIONS(622), + [anon_sym_STAR] = ACTIONS(624), + [anon_sym_BSLASH] = ACTIONS(626), + [sym_quotation_marks] = ACTIONS(620), + [sym_ellipsis] = ACTIONS(620), + [sym_em_dash] = ACTIONS(620), + [sym_en_dash] = ACTIONS(628), + [sym_backslash_escape] = ACTIONS(628), + [anon_sym_LT] = ACTIONS(630), + [anon_sym_LBRACE_EQ] = ACTIONS(632), + [anon_sym_LBRACE_PLUS] = ACTIONS(634), + [anon_sym_LBRACE_DASH] = ACTIONS(636), + [sym_symbol] = ACTIONS(620), + [anon_sym_LBRACE_CARET] = ACTIONS(638), + [anon_sym_CARET] = ACTIONS(638), + [anon_sym_LBRACE_TILDE] = ACTIONS(640), + [anon_sym_TILDE] = ACTIONS(640), + [anon_sym_LBRACK_CARET] = ACTIONS(642), + [anon_sym_BANG_LBRACK] = ACTIONS(644), + [anon_sym_LBRACK] = ACTIONS(646), + [anon_sym_LBRACE2] = ACTIONS(628), + [anon_sym_DOLLAR] = ACTIONS(648), + [anon_sym_TODO] = ACTIONS(650), + [anon_sym_WIP] = ACTIONS(650), + [anon_sym_NOTE] = ACTIONS(652), + [anon_sym_INFO] = ACTIONS(652), + [anon_sym_XXX] = ACTIONS(652), + [sym_fixme] = ACTIONS(620), + [anon_sym_PIPE] = ACTIONS(620), + [sym__whitespace1] = ACTIONS(654), + [sym__newline] = ACTIONS(656), + [aux_sym__text_token1] = ACTIONS(658), + [sym__verbatim_begin] = ACTIONS(660), + }, + [85] = { + [sym__element] = STATE(85), + [sym_emphasis] = STATE(167), + [sym_emphasis_begin] = STATE(894), + [sym_strong] = STATE(167), + [sym_strong_begin] = STATE(117), + [sym__hard_line_break] = STATE(167), + [sym_hard_line_break] = STATE(167), + [sym__smart_punctuation] = STATE(167), + [sym_autolink] = STATE(167), + [sym_highlighted] = STATE(167), + [sym_insert] = STATE(167), + [sym_delete] = STATE(167), + [sym_superscript] = STATE(167), + [sym_subscript] = STATE(167), + [sym_footnote_reference] = STATE(167), + [sym__image] = STATE(167), + [sym_full_reference_image] = STATE(167), + [sym_collapsed_reference_image] = STATE(167), + [sym_inline_image] = STATE(167), + [sym__image_description] = STATE(613), + [sym__link] = STATE(167), + [sym_full_reference_link] = STATE(167), + [sym_collapsed_reference_link] = STATE(167), + [sym_inline_link] = STATE(167), + [sym_link_text] = STATE(614), + [sym__comment_with_spaces] = STATE(167), + [sym_span] = STATE(167), + [sym_raw_inline] = STATE(167), + [sym_math] = STATE(167), + [sym_verbatim] = STATE(167), + [sym__todo_highlights] = STATE(167), + [sym_todo] = STATE(167), + [sym_note] = STATE(167), + [sym__symbol_fallback] = STATE(167), + [aux_sym__text] = STATE(130), + [aux_sym__inline_repeat1] = STATE(85), + [anon_sym_LBRACE_] = ACTIONS(840), + [anon_sym__] = ACTIONS(843), + [anon_sym_LBRACE_STAR] = ACTIONS(846), + [anon_sym_STAR] = ACTIONS(849), + [anon_sym_BSLASH] = ACTIONS(852), + [sym_quotation_marks] = ACTIONS(843), + [sym_ellipsis] = ACTIONS(843), + [sym_em_dash] = ACTIONS(843), + [sym_en_dash] = ACTIONS(855), + [sym_backslash_escape] = ACTIONS(855), + [anon_sym_LT] = ACTIONS(858), + [anon_sym_LBRACE_EQ] = ACTIONS(861), + [anon_sym_LBRACE_PLUS] = ACTIONS(864), + [anon_sym_PLUS_RBRACE] = ACTIONS(662), + [anon_sym_LBRACE_DASH] = ACTIONS(867), + [sym_symbol] = ACTIONS(843), + [anon_sym_LBRACE_CARET] = ACTIONS(870), + [anon_sym_CARET] = ACTIONS(870), + [anon_sym_LBRACE_TILDE] = ACTIONS(873), + [anon_sym_TILDE] = ACTIONS(873), + [anon_sym_LBRACK_CARET] = ACTIONS(876), + [anon_sym_BANG_LBRACK] = ACTIONS(879), + [anon_sym_LBRACK] = ACTIONS(882), + [anon_sym_LBRACE2] = ACTIONS(855), + [anon_sym_DOLLAR] = ACTIONS(885), + [anon_sym_TODO] = ACTIONS(888), + [anon_sym_WIP] = ACTIONS(888), + [anon_sym_NOTE] = ACTIONS(891), + [anon_sym_INFO] = ACTIONS(891), + [anon_sym_XXX] = ACTIONS(891), + [sym_fixme] = ACTIONS(843), + [anon_sym_PIPE] = ACTIONS(843), + [sym__whitespace1] = ACTIONS(894), + [sym__newline] = ACTIONS(897), + [aux_sym__text_token1] = ACTIONS(900), + [sym__verbatim_begin] = ACTIONS(903), + }, + [86] = { + [sym__element] = STATE(86), + [sym_emphasis] = STATE(165), + [sym_emphasis_begin] = STATE(899), + [sym_strong] = STATE(165), + [sym_strong_begin] = STATE(96), + [sym__hard_line_break] = STATE(165), + [sym_hard_line_break] = STATE(165), + [sym__smart_punctuation] = STATE(165), + [sym_autolink] = STATE(165), + [sym_highlighted] = STATE(165), + [sym_insert] = STATE(165), + [sym_delete] = STATE(165), + [sym_superscript] = STATE(165), + [sym_subscript] = STATE(165), + [sym_footnote_reference] = STATE(165), + [sym__image] = STATE(165), + [sym_full_reference_image] = STATE(165), + [sym_collapsed_reference_image] = STATE(165), + [sym_inline_image] = STATE(165), + [sym__image_description] = STATE(607), + [sym__link] = STATE(165), + [sym_full_reference_link] = STATE(165), + [sym_collapsed_reference_link] = STATE(165), + [sym_inline_link] = STATE(165), + [sym_link_text] = STATE(611), + [sym__comment_with_spaces] = STATE(165), + [sym_span] = STATE(165), + [sym_raw_inline] = STATE(165), + [sym_math] = STATE(165), + [sym_verbatim] = STATE(165), + [sym__todo_highlights] = STATE(165), + [sym_todo] = STATE(165), + [sym_note] = STATE(165), + [sym__symbol_fallback] = STATE(165), + [aux_sym__text] = STATE(156), + [aux_sym__inline_repeat1] = STATE(86), + [anon_sym_LBRACE_] = ACTIONS(906), + [anon_sym__] = ACTIONS(909), + [anon_sym_LBRACE_STAR] = ACTIONS(912), + [anon_sym_STAR] = ACTIONS(915), + [aux_sym_strong_end_token1] = ACTIONS(662), + [anon_sym_BSLASH] = ACTIONS(918), + [sym_quotation_marks] = ACTIONS(909), + [sym_ellipsis] = ACTIONS(909), + [sym_em_dash] = ACTIONS(909), + [sym_en_dash] = ACTIONS(921), + [sym_backslash_escape] = ACTIONS(921), + [anon_sym_LT] = ACTIONS(924), + [anon_sym_LBRACE_EQ] = ACTIONS(927), + [anon_sym_LBRACE_PLUS] = ACTIONS(930), + [anon_sym_LBRACE_DASH] = ACTIONS(933), + [sym_symbol] = ACTIONS(909), + [anon_sym_LBRACE_CARET] = ACTIONS(936), + [anon_sym_CARET] = ACTIONS(936), + [anon_sym_LBRACE_TILDE] = ACTIONS(939), + [anon_sym_TILDE] = ACTIONS(939), + [anon_sym_LBRACK_CARET] = ACTIONS(942), + [anon_sym_BANG_LBRACK] = ACTIONS(945), + [anon_sym_LBRACK] = ACTIONS(948), + [anon_sym_LBRACE2] = ACTIONS(921), + [anon_sym_DOLLAR] = ACTIONS(951), + [anon_sym_TODO] = ACTIONS(954), + [anon_sym_WIP] = ACTIONS(954), + [anon_sym_NOTE] = ACTIONS(957), + [anon_sym_INFO] = ACTIONS(957), + [anon_sym_XXX] = ACTIONS(957), + [sym_fixme] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(909), + [sym__whitespace1] = ACTIONS(960), + [sym__newline] = ACTIONS(963), + [aux_sym__text_token1] = ACTIONS(966), + [sym__verbatim_begin] = ACTIONS(969), + }, + [87] = { + [sym__inline] = STATE(779), + [sym__element] = STATE(105), + [sym_emphasis] = STATE(185), + [sym_emphasis_begin] = STATE(901), + [sym_strong] = STATE(185), + [sym_strong_begin] = STATE(89), + [sym__hard_line_break] = STATE(185), + [sym_hard_line_break] = STATE(185), + [sym__smart_punctuation] = STATE(185), + [sym_autolink] = STATE(185), + [sym_highlighted] = STATE(185), + [sym_insert] = STATE(185), + [sym_delete] = STATE(185), + [sym_superscript] = STATE(185), + [sym_subscript] = STATE(185), + [sym_footnote_reference] = STATE(185), + [sym__image] = STATE(185), + [sym_full_reference_image] = STATE(185), + [sym_collapsed_reference_image] = STATE(185), + [sym_inline_image] = STATE(185), + [sym__image_description] = STATE(628), + [sym__link] = STATE(185), + [sym_full_reference_link] = STATE(185), + [sym_collapsed_reference_link] = STATE(185), + [sym_inline_link] = STATE(185), + [sym_link_text] = STATE(629), + [sym__comment_with_spaces] = STATE(185), + [sym_span] = STATE(185), + [sym_raw_inline] = STATE(185), + [sym_math] = STATE(185), + [sym_verbatim] = STATE(185), + [sym__todo_highlights] = STATE(185), + [sym_todo] = STATE(185), + [sym_note] = STATE(185), + [sym__symbol_fallback] = STATE(185), + [aux_sym__text] = STATE(134), + [aux_sym__inline_repeat1] = STATE(105), + [anon_sym_LBRACE_] = ACTIONS(972), + [anon_sym__] = ACTIONS(974), + [anon_sym_LBRACE_STAR] = ACTIONS(976), + [anon_sym_STAR] = ACTIONS(978), + [anon_sym_BSLASH] = ACTIONS(980), + [sym_quotation_marks] = ACTIONS(974), + [sym_ellipsis] = ACTIONS(974), + [sym_em_dash] = ACTIONS(974), + [sym_en_dash] = ACTIONS(982), + [sym_backslash_escape] = ACTIONS(982), + [anon_sym_LT] = ACTIONS(984), + [anon_sym_LBRACE_EQ] = ACTIONS(986), + [anon_sym_LBRACE_PLUS] = ACTIONS(988), + [anon_sym_LBRACE_DASH] = ACTIONS(990), + [sym_symbol] = ACTIONS(974), + [anon_sym_LBRACE_CARET] = ACTIONS(992), + [anon_sym_CARET] = ACTIONS(992), + [anon_sym_LBRACE_TILDE] = ACTIONS(994), + [anon_sym_TILDE] = ACTIONS(994), + [anon_sym_LBRACK_CARET] = ACTIONS(996), + [anon_sym_BANG_LBRACK] = ACTIONS(998), + [anon_sym_LBRACK] = ACTIONS(1000), + [anon_sym_LBRACE2] = ACTIONS(982), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_TODO] = ACTIONS(1004), + [anon_sym_WIP] = ACTIONS(1004), + [anon_sym_NOTE] = ACTIONS(1006), + [anon_sym_INFO] = ACTIONS(1006), + [anon_sym_XXX] = ACTIONS(1006), + [sym_fixme] = ACTIONS(974), + [anon_sym_PIPE] = ACTIONS(974), + [sym__whitespace1] = ACTIONS(1008), + [sym__newline] = ACTIONS(1010), + [aux_sym__text_token1] = ACTIONS(1012), + [sym__verbatim_begin] = ACTIONS(1014), + }, + [88] = { + [sym__element] = STATE(86), + [sym_emphasis] = STATE(165), + [sym_emphasis_begin] = STATE(899), + [sym_strong] = STATE(165), + [sym_strong_begin] = STATE(96), + [sym__hard_line_break] = STATE(165), + [sym_hard_line_break] = STATE(165), + [sym__smart_punctuation] = STATE(165), + [sym_autolink] = STATE(165), + [sym_highlighted] = STATE(165), + [sym_insert] = STATE(165), + [sym_delete] = STATE(165), + [sym_superscript] = STATE(165), + [sym_subscript] = STATE(165), + [sym_footnote_reference] = STATE(165), + [sym__image] = STATE(165), + [sym_full_reference_image] = STATE(165), + [sym_collapsed_reference_image] = STATE(165), + [sym_inline_image] = STATE(165), + [sym__image_description] = STATE(607), + [sym__link] = STATE(165), + [sym_full_reference_link] = STATE(165), + [sym_collapsed_reference_link] = STATE(165), + [sym_inline_link] = STATE(165), + [sym_link_text] = STATE(611), + [sym__comment_with_spaces] = STATE(165), + [sym_span] = STATE(165), + [sym_raw_inline] = STATE(165), + [sym_math] = STATE(165), + [sym_verbatim] = STATE(165), + [sym__todo_highlights] = STATE(165), + [sym_todo] = STATE(165), + [sym_note] = STATE(165), + [sym__symbol_fallback] = STATE(165), + [aux_sym__text] = STATE(156), + [aux_sym__inline_repeat1] = STATE(86), + [anon_sym_LBRACE_] = ACTIONS(1016), + [anon_sym__] = ACTIONS(1018), + [anon_sym_LBRACE_STAR] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(548), + [aux_sym_strong_end_token1] = ACTIONS(550), + [anon_sym_BSLASH] = ACTIONS(1022), + [sym_quotation_marks] = ACTIONS(1018), + [sym_ellipsis] = ACTIONS(1018), + [sym_em_dash] = ACTIONS(1018), + [sym_en_dash] = ACTIONS(1024), + [sym_backslash_escape] = ACTIONS(1024), + [anon_sym_LT] = ACTIONS(1026), + [anon_sym_LBRACE_EQ] = ACTIONS(1028), + [anon_sym_LBRACE_PLUS] = ACTIONS(1030), + [anon_sym_LBRACE_DASH] = ACTIONS(1032), + [sym_symbol] = ACTIONS(1018), + [anon_sym_LBRACE_CARET] = ACTIONS(1034), + [anon_sym_CARET] = ACTIONS(1034), + [anon_sym_LBRACE_TILDE] = ACTIONS(1036), + [anon_sym_TILDE] = ACTIONS(1036), + [anon_sym_LBRACK_CARET] = ACTIONS(1038), + [anon_sym_BANG_LBRACK] = ACTIONS(1040), + [anon_sym_LBRACK] = ACTIONS(1042), + [anon_sym_LBRACE2] = ACTIONS(1024), + [anon_sym_DOLLAR] = ACTIONS(1044), + [anon_sym_TODO] = ACTIONS(1046), + [anon_sym_WIP] = ACTIONS(1046), + [anon_sym_NOTE] = ACTIONS(1048), + [anon_sym_INFO] = ACTIONS(1048), + [anon_sym_XXX] = ACTIONS(1048), + [sym_fixme] = ACTIONS(1018), + [anon_sym_PIPE] = ACTIONS(1018), + [sym__whitespace1] = ACTIONS(1050), + [sym__newline] = ACTIONS(1052), + [aux_sym__text_token1] = ACTIONS(1054), + [sym__verbatim_begin] = ACTIONS(1056), + }, + [89] = { + [sym__inline] = STATE(649), + [sym__element] = STATE(88), + [sym_emphasis] = STATE(165), + [sym_emphasis_begin] = STATE(899), + [sym_strong] = STATE(165), + [sym_strong_begin] = STATE(96), + [sym__hard_line_break] = STATE(165), + [sym_hard_line_break] = STATE(165), + [sym__smart_punctuation] = STATE(165), + [sym_autolink] = STATE(165), + [sym_highlighted] = STATE(165), + [sym_insert] = STATE(165), + [sym_delete] = STATE(165), + [sym_superscript] = STATE(165), + [sym_subscript] = STATE(165), + [sym_footnote_reference] = STATE(165), + [sym__image] = STATE(165), + [sym_full_reference_image] = STATE(165), + [sym_collapsed_reference_image] = STATE(165), + [sym_inline_image] = STATE(165), + [sym__image_description] = STATE(607), + [sym__link] = STATE(165), + [sym_full_reference_link] = STATE(165), + [sym_collapsed_reference_link] = STATE(165), + [sym_inline_link] = STATE(165), + [sym_link_text] = STATE(611), + [sym__comment_with_spaces] = STATE(165), + [sym_span] = STATE(165), + [sym_raw_inline] = STATE(165), + [sym_math] = STATE(165), + [sym_verbatim] = STATE(165), + [sym__todo_highlights] = STATE(165), + [sym_todo] = STATE(165), + [sym_note] = STATE(165), + [sym__symbol_fallback] = STATE(165), + [aux_sym__text] = STATE(156), + [aux_sym__inline_repeat1] = STATE(88), + [anon_sym_LBRACE_] = ACTIONS(1016), + [anon_sym__] = ACTIONS(1018), + [anon_sym_LBRACE_STAR] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_BSLASH] = ACTIONS(1022), + [sym_quotation_marks] = ACTIONS(1018), + [sym_ellipsis] = ACTIONS(1018), + [sym_em_dash] = ACTIONS(1018), + [sym_en_dash] = ACTIONS(1024), + [sym_backslash_escape] = ACTIONS(1024), + [anon_sym_LT] = ACTIONS(1026), + [anon_sym_LBRACE_EQ] = ACTIONS(1028), + [anon_sym_LBRACE_PLUS] = ACTIONS(1030), + [anon_sym_LBRACE_DASH] = ACTIONS(1032), + [sym_symbol] = ACTIONS(1018), + [anon_sym_LBRACE_CARET] = ACTIONS(1034), + [anon_sym_CARET] = ACTIONS(1034), + [anon_sym_LBRACE_TILDE] = ACTIONS(1036), + [anon_sym_TILDE] = ACTIONS(1036), + [anon_sym_LBRACK_CARET] = ACTIONS(1038), + [anon_sym_BANG_LBRACK] = ACTIONS(1040), + [anon_sym_LBRACK] = ACTIONS(1042), + [anon_sym_LBRACE2] = ACTIONS(1024), + [anon_sym_DOLLAR] = ACTIONS(1044), + [anon_sym_TODO] = ACTIONS(1046), + [anon_sym_WIP] = ACTIONS(1046), + [anon_sym_NOTE] = ACTIONS(1048), + [anon_sym_INFO] = ACTIONS(1048), + [anon_sym_XXX] = ACTIONS(1048), + [sym_fixme] = ACTIONS(1018), + [anon_sym_PIPE] = ACTIONS(1018), + [sym__whitespace1] = ACTIONS(1060), + [sym__newline] = ACTIONS(1062), + [aux_sym__text_token1] = ACTIONS(1054), + [sym__verbatim_begin] = ACTIONS(1056), + }, + [90] = { + [sym__inline] = STATE(640), + [sym__element] = STATE(88), + [sym_emphasis] = STATE(165), + [sym_emphasis_begin] = STATE(899), + [sym_strong] = STATE(165), + [sym_strong_begin] = STATE(96), + [sym__hard_line_break] = STATE(165), + [sym_hard_line_break] = STATE(165), + [sym__smart_punctuation] = STATE(165), + [sym_autolink] = STATE(165), + [sym_highlighted] = STATE(165), + [sym_insert] = STATE(165), + [sym_delete] = STATE(165), + [sym_superscript] = STATE(165), + [sym_subscript] = STATE(165), + [sym_footnote_reference] = STATE(165), + [sym__image] = STATE(165), + [sym_full_reference_image] = STATE(165), + [sym_collapsed_reference_image] = STATE(165), + [sym_inline_image] = STATE(165), + [sym__image_description] = STATE(607), + [sym__link] = STATE(165), + [sym_full_reference_link] = STATE(165), + [sym_collapsed_reference_link] = STATE(165), + [sym_inline_link] = STATE(165), + [sym_link_text] = STATE(611), + [sym__comment_with_spaces] = STATE(165), + [sym_span] = STATE(165), + [sym_raw_inline] = STATE(165), + [sym_math] = STATE(165), + [sym_verbatim] = STATE(165), + [sym__todo_highlights] = STATE(165), + [sym_todo] = STATE(165), + [sym_note] = STATE(165), + [sym__symbol_fallback] = STATE(165), + [aux_sym__text] = STATE(156), + [aux_sym__inline_repeat1] = STATE(88), + [anon_sym_LBRACE_] = ACTIONS(1016), + [anon_sym__] = ACTIONS(1018), + [anon_sym_LBRACE_STAR] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_BSLASH] = ACTIONS(1022), + [sym_quotation_marks] = ACTIONS(1018), + [sym_ellipsis] = ACTIONS(1018), + [sym_em_dash] = ACTIONS(1018), + [sym_en_dash] = ACTIONS(1024), + [sym_backslash_escape] = ACTIONS(1024), + [anon_sym_LT] = ACTIONS(1026), + [anon_sym_LBRACE_EQ] = ACTIONS(1028), + [anon_sym_LBRACE_PLUS] = ACTIONS(1030), + [anon_sym_LBRACE_DASH] = ACTIONS(1032), + [sym_symbol] = ACTIONS(1018), + [anon_sym_LBRACE_CARET] = ACTIONS(1034), + [anon_sym_CARET] = ACTIONS(1034), + [anon_sym_LBRACE_TILDE] = ACTIONS(1036), + [anon_sym_TILDE] = ACTIONS(1036), + [anon_sym_LBRACK_CARET] = ACTIONS(1038), + [anon_sym_BANG_LBRACK] = ACTIONS(1040), + [anon_sym_LBRACK] = ACTIONS(1042), + [anon_sym_LBRACE2] = ACTIONS(1024), + [anon_sym_DOLLAR] = ACTIONS(1044), + [anon_sym_TODO] = ACTIONS(1046), + [anon_sym_WIP] = ACTIONS(1046), + [anon_sym_NOTE] = ACTIONS(1048), + [anon_sym_INFO] = ACTIONS(1048), + [anon_sym_XXX] = ACTIONS(1048), + [sym_fixme] = ACTIONS(1018), + [anon_sym_PIPE] = ACTIONS(1018), + [sym__whitespace1] = ACTIONS(1060), + [sym__newline] = ACTIONS(1062), + [aux_sym__text_token1] = ACTIONS(1054), + [sym__verbatim_begin] = ACTIONS(1056), + }, + [91] = { + [sym__inline] = STATE(757), + [sym__element] = STATE(105), + [sym_emphasis] = STATE(185), + [sym_emphasis_begin] = STATE(901), + [sym_strong] = STATE(185), + [sym_strong_begin] = STATE(89), + [sym__hard_line_break] = STATE(185), + [sym_hard_line_break] = STATE(185), + [sym__smart_punctuation] = STATE(185), + [sym_autolink] = STATE(185), + [sym_highlighted] = STATE(185), + [sym_insert] = STATE(185), + [sym_delete] = STATE(185), + [sym_superscript] = STATE(185), + [sym_subscript] = STATE(185), + [sym_footnote_reference] = STATE(185), + [sym__image] = STATE(185), + [sym_full_reference_image] = STATE(185), + [sym_collapsed_reference_image] = STATE(185), + [sym_inline_image] = STATE(185), + [sym__image_description] = STATE(628), + [sym__link] = STATE(185), + [sym_full_reference_link] = STATE(185), + [sym_collapsed_reference_link] = STATE(185), + [sym_inline_link] = STATE(185), + [sym_link_text] = STATE(629), + [sym__comment_with_spaces] = STATE(185), + [sym_span] = STATE(185), + [sym_raw_inline] = STATE(185), + [sym_math] = STATE(185), + [sym_verbatim] = STATE(185), + [sym__todo_highlights] = STATE(185), + [sym_todo] = STATE(185), + [sym_note] = STATE(185), + [sym__symbol_fallback] = STATE(185), + [aux_sym__text] = STATE(134), + [aux_sym__inline_repeat1] = STATE(105), + [anon_sym_LBRACE_] = ACTIONS(972), + [anon_sym__] = ACTIONS(974), + [anon_sym_LBRACE_STAR] = ACTIONS(976), + [anon_sym_STAR] = ACTIONS(978), + [anon_sym_BSLASH] = ACTIONS(980), + [sym_quotation_marks] = ACTIONS(974), + [sym_ellipsis] = ACTIONS(974), + [sym_em_dash] = ACTIONS(974), + [sym_en_dash] = ACTIONS(982), + [sym_backslash_escape] = ACTIONS(982), + [anon_sym_LT] = ACTIONS(984), + [anon_sym_LBRACE_EQ] = ACTIONS(986), + [anon_sym_LBRACE_PLUS] = ACTIONS(988), + [anon_sym_LBRACE_DASH] = ACTIONS(990), + [sym_symbol] = ACTIONS(974), + [anon_sym_LBRACE_CARET] = ACTIONS(992), + [anon_sym_CARET] = ACTIONS(992), + [anon_sym_LBRACE_TILDE] = ACTIONS(994), + [anon_sym_TILDE] = ACTIONS(994), + [anon_sym_LBRACK_CARET] = ACTIONS(996), + [anon_sym_BANG_LBRACK] = ACTIONS(998), + [anon_sym_LBRACK] = ACTIONS(1000), + [anon_sym_LBRACE2] = ACTIONS(982), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_TODO] = ACTIONS(1004), + [anon_sym_WIP] = ACTIONS(1004), + [anon_sym_NOTE] = ACTIONS(1006), + [anon_sym_INFO] = ACTIONS(1006), + [anon_sym_XXX] = ACTIONS(1006), + [sym_fixme] = ACTIONS(974), + [anon_sym_PIPE] = ACTIONS(974), + [sym__whitespace1] = ACTIONS(1008), + [sym__newline] = ACTIONS(1010), + [aux_sym__text_token1] = ACTIONS(1012), + [sym__verbatim_begin] = ACTIONS(1014), + }, + [92] = { + [sym__inline] = STATE(644), + [sym__element] = STATE(88), + [sym_emphasis] = STATE(165), + [sym_emphasis_begin] = STATE(899), + [sym_strong] = STATE(165), + [sym_strong_begin] = STATE(96), + [sym__hard_line_break] = STATE(165), + [sym_hard_line_break] = STATE(165), + [sym__smart_punctuation] = STATE(165), + [sym_autolink] = STATE(165), + [sym_highlighted] = STATE(165), + [sym_insert] = STATE(165), + [sym_delete] = STATE(165), + [sym_superscript] = STATE(165), + [sym_subscript] = STATE(165), + [sym_footnote_reference] = STATE(165), + [sym__image] = STATE(165), + [sym_full_reference_image] = STATE(165), + [sym_collapsed_reference_image] = STATE(165), + [sym_inline_image] = STATE(165), + [sym__image_description] = STATE(607), + [sym__link] = STATE(165), + [sym_full_reference_link] = STATE(165), + [sym_collapsed_reference_link] = STATE(165), + [sym_inline_link] = STATE(165), + [sym_link_text] = STATE(611), + [sym__comment_with_spaces] = STATE(165), + [sym_span] = STATE(165), + [sym_raw_inline] = STATE(165), + [sym_math] = STATE(165), + [sym_verbatim] = STATE(165), + [sym__todo_highlights] = STATE(165), + [sym_todo] = STATE(165), + [sym_note] = STATE(165), + [sym__symbol_fallback] = STATE(165), + [aux_sym__text] = STATE(156), + [aux_sym__inline_repeat1] = STATE(88), + [anon_sym_LBRACE_] = ACTIONS(1016), + [anon_sym__] = ACTIONS(1018), + [anon_sym_LBRACE_STAR] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_BSLASH] = ACTIONS(1022), + [sym_quotation_marks] = ACTIONS(1018), + [sym_ellipsis] = ACTIONS(1018), + [sym_em_dash] = ACTIONS(1018), + [sym_en_dash] = ACTIONS(1024), + [sym_backslash_escape] = ACTIONS(1024), + [anon_sym_LT] = ACTIONS(1026), + [anon_sym_LBRACE_EQ] = ACTIONS(1028), + [anon_sym_LBRACE_PLUS] = ACTIONS(1030), + [anon_sym_LBRACE_DASH] = ACTIONS(1032), + [sym_symbol] = ACTIONS(1018), + [anon_sym_LBRACE_CARET] = ACTIONS(1034), + [anon_sym_CARET] = ACTIONS(1034), + [anon_sym_LBRACE_TILDE] = ACTIONS(1036), + [anon_sym_TILDE] = ACTIONS(1036), + [anon_sym_LBRACK_CARET] = ACTIONS(1038), + [anon_sym_BANG_LBRACK] = ACTIONS(1040), + [anon_sym_LBRACK] = ACTIONS(1042), + [anon_sym_LBRACE2] = ACTIONS(1024), + [anon_sym_DOLLAR] = ACTIONS(1044), + [anon_sym_TODO] = ACTIONS(1046), + [anon_sym_WIP] = ACTIONS(1046), + [anon_sym_NOTE] = ACTIONS(1048), + [anon_sym_INFO] = ACTIONS(1048), + [anon_sym_XXX] = ACTIONS(1048), + [sym_fixme] = ACTIONS(1018), + [anon_sym_PIPE] = ACTIONS(1018), + [sym__whitespace1] = ACTIONS(1060), + [sym__newline] = ACTIONS(1062), + [aux_sym__text_token1] = ACTIONS(1054), + [sym__verbatim_begin] = ACTIONS(1056), + }, + [93] = { + [sym__element] = STATE(75), + [sym_emphasis] = STATE(184), + [sym_emphasis_begin] = STATE(880), + [sym_strong] = STATE(184), + [sym_strong_begin] = STATE(90), + [sym__hard_line_break] = STATE(184), + [sym_hard_line_break] = STATE(184), + [sym__smart_punctuation] = STATE(184), + [sym_autolink] = STATE(184), + [sym_highlighted] = STATE(184), + [sym_insert] = STATE(184), + [sym_delete] = STATE(184), + [sym_superscript] = STATE(184), + [sym_subscript] = STATE(184), + [sym_footnote_reference] = STATE(184), + [sym__image] = STATE(184), + [sym_full_reference_image] = STATE(184), + [sym_collapsed_reference_image] = STATE(184), + [sym_inline_image] = STATE(184), + [sym__image_description] = STATE(609), + [sym__link] = STATE(184), + [sym_full_reference_link] = STATE(184), + [sym_collapsed_reference_link] = STATE(184), + [sym_inline_link] = STATE(184), + [sym_link_text] = STATE(612), + [sym__comment_with_spaces] = STATE(184), + [sym_span] = STATE(184), + [sym_raw_inline] = STATE(184), + [sym_math] = STATE(184), + [sym_verbatim] = STATE(184), + [sym__todo_highlights] = STATE(184), + [sym_todo] = STATE(184), + [sym_note] = STATE(184), + [sym__symbol_fallback] = STATE(184), + [aux_sym__text] = STATE(151), + [aux_sym__inline_repeat1] = STATE(75), + [ts_builtin_sym_end] = ACTIONS(550), + [anon_sym_LBRACE_] = ACTIONS(3), + [anon_sym__] = ACTIONS(5), + [anon_sym_LBRACE_STAR] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(9), + [anon_sym_BSLASH] = ACTIONS(11), + [sym_quotation_marks] = ACTIONS(5), + [sym_ellipsis] = ACTIONS(5), + [sym_em_dash] = ACTIONS(5), + [sym_en_dash] = ACTIONS(13), + [sym_backslash_escape] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_LBRACE_EQ] = ACTIONS(17), + [anon_sym_LBRACE_PLUS] = ACTIONS(19), + [anon_sym_LBRACE_DASH] = ACTIONS(21), + [sym_symbol] = ACTIONS(5), + [anon_sym_LBRACE_CARET] = ACTIONS(23), + [anon_sym_CARET] = ACTIONS(23), + [anon_sym_LBRACE_TILDE] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_LBRACK_CARET] = ACTIONS(27), + [anon_sym_BANG_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_LBRACE2] = ACTIONS(13), + [anon_sym_DOLLAR] = ACTIONS(33), + [anon_sym_TODO] = ACTIONS(35), + [anon_sym_WIP] = ACTIONS(35), + [anon_sym_NOTE] = ACTIONS(37), + [anon_sym_INFO] = ACTIONS(37), + [anon_sym_XXX] = ACTIONS(37), + [sym_fixme] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [sym__whitespace1] = ACTIONS(39), + [sym__newline] = ACTIONS(1064), + [aux_sym__text_token1] = ACTIONS(43), + [sym__verbatim_begin] = ACTIONS(45), + }, + [94] = { + [sym__inline] = STATE(735), + [sym__element] = STATE(105), + [sym_emphasis] = STATE(185), + [sym_emphasis_begin] = STATE(901), + [sym_strong] = STATE(185), + [sym_strong_begin] = STATE(89), + [sym__hard_line_break] = STATE(185), + [sym_hard_line_break] = STATE(185), + [sym__smart_punctuation] = STATE(185), + [sym_autolink] = STATE(185), + [sym_highlighted] = STATE(185), + [sym_insert] = STATE(185), + [sym_delete] = STATE(185), + [sym_superscript] = STATE(185), + [sym_subscript] = STATE(185), + [sym_footnote_reference] = STATE(185), + [sym__image] = STATE(185), + [sym_full_reference_image] = STATE(185), + [sym_collapsed_reference_image] = STATE(185), + [sym_inline_image] = STATE(185), + [sym__image_description] = STATE(628), + [sym__link] = STATE(185), + [sym_full_reference_link] = STATE(185), + [sym_collapsed_reference_link] = STATE(185), + [sym_inline_link] = STATE(185), + [sym_link_text] = STATE(629), + [sym__comment_with_spaces] = STATE(185), + [sym_span] = STATE(185), + [sym_raw_inline] = STATE(185), + [sym_math] = STATE(185), + [sym_verbatim] = STATE(185), + [sym__todo_highlights] = STATE(185), + [sym_todo] = STATE(185), + [sym_note] = STATE(185), + [sym__symbol_fallback] = STATE(185), + [aux_sym__text] = STATE(134), + [aux_sym__inline_repeat1] = STATE(105), + [anon_sym_LBRACE_] = ACTIONS(972), + [anon_sym__] = ACTIONS(974), + [anon_sym_LBRACE_STAR] = ACTIONS(976), + [anon_sym_STAR] = ACTIONS(978), + [anon_sym_BSLASH] = ACTIONS(980), + [sym_quotation_marks] = ACTIONS(974), + [sym_ellipsis] = ACTIONS(974), + [sym_em_dash] = ACTIONS(974), + [sym_en_dash] = ACTIONS(982), + [sym_backslash_escape] = ACTIONS(982), + [anon_sym_LT] = ACTIONS(984), + [anon_sym_LBRACE_EQ] = ACTIONS(986), + [anon_sym_LBRACE_PLUS] = ACTIONS(988), + [anon_sym_LBRACE_DASH] = ACTIONS(990), + [sym_symbol] = ACTIONS(974), + [anon_sym_LBRACE_CARET] = ACTIONS(992), + [anon_sym_CARET] = ACTIONS(992), + [anon_sym_LBRACE_TILDE] = ACTIONS(994), + [anon_sym_TILDE] = ACTIONS(994), + [anon_sym_LBRACK_CARET] = ACTIONS(996), + [anon_sym_BANG_LBRACK] = ACTIONS(998), + [anon_sym_LBRACK] = ACTIONS(1000), + [anon_sym_LBRACE2] = ACTIONS(982), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_TODO] = ACTIONS(1004), + [anon_sym_WIP] = ACTIONS(1004), + [anon_sym_NOTE] = ACTIONS(1006), + [anon_sym_INFO] = ACTIONS(1006), + [anon_sym_XXX] = ACTIONS(1006), + [sym_fixme] = ACTIONS(974), + [anon_sym_PIPE] = ACTIONS(974), + [sym__whitespace1] = ACTIONS(1008), + [sym__newline] = ACTIONS(1010), + [aux_sym__text_token1] = ACTIONS(1012), + [sym__verbatim_begin] = ACTIONS(1014), + }, + [95] = { + [sym__element] = STATE(95), + [sym_emphasis] = STATE(182), + [sym_emphasis_begin] = STATE(898), + [sym_strong] = STATE(182), + [sym_strong_begin] = STATE(104), + [sym__hard_line_break] = STATE(182), + [sym_hard_line_break] = STATE(182), + [sym__smart_punctuation] = STATE(182), + [sym_autolink] = STATE(182), + [sym_highlighted] = STATE(182), + [sym_insert] = STATE(182), + [sym_delete] = STATE(182), + [sym_superscript] = STATE(182), + [sym_subscript] = STATE(182), + [sym_footnote_reference] = STATE(182), + [sym__image] = STATE(182), + [sym_full_reference_image] = STATE(182), + [sym_collapsed_reference_image] = STATE(182), + [sym_inline_image] = STATE(182), + [sym__image_description] = STATE(610), + [sym__link] = STATE(182), + [sym_full_reference_link] = STATE(182), + [sym_collapsed_reference_link] = STATE(182), + [sym_inline_link] = STATE(182), + [sym_link_text] = STATE(608), + [sym__comment_with_spaces] = STATE(182), + [sym_span] = STATE(182), + [sym_raw_inline] = STATE(182), + [sym_math] = STATE(182), + [sym_verbatim] = STATE(182), + [sym__todo_highlights] = STATE(182), + [sym_todo] = STATE(182), + [sym_note] = STATE(182), + [sym__symbol_fallback] = STATE(182), + [aux_sym__text] = STATE(144), + [aux_sym__inline_repeat1] = STATE(95), + [anon_sym_LBRACE_] = ACTIONS(1066), + [anon_sym__] = ACTIONS(1069), + [anon_sym_LBRACE_STAR] = ACTIONS(1072), + [anon_sym_STAR] = ACTIONS(1075), + [anon_sym_BSLASH] = ACTIONS(1078), + [sym_quotation_marks] = ACTIONS(1069), + [sym_ellipsis] = ACTIONS(1069), + [sym_em_dash] = ACTIONS(1069), + [sym_en_dash] = ACTIONS(1081), + [sym_backslash_escape] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(1084), + [anon_sym_LBRACE_EQ] = ACTIONS(1087), + [anon_sym_LBRACE_PLUS] = ACTIONS(1090), + [anon_sym_LBRACE_DASH] = ACTIONS(1093), + [sym_symbol] = ACTIONS(1069), + [anon_sym_LBRACE_CARET] = ACTIONS(1096), + [anon_sym_CARET] = ACTIONS(1096), + [anon_sym_LBRACE_TILDE] = ACTIONS(1099), + [anon_sym_TILDE] = ACTIONS(1099), + [anon_sym_LBRACK_CARET] = ACTIONS(1102), + [anon_sym_RBRACK] = ACTIONS(662), + [anon_sym_BANG_LBRACK] = ACTIONS(1105), + [anon_sym_LBRACK] = ACTIONS(1108), + [anon_sym_LBRACE2] = ACTIONS(1081), + [anon_sym_DOLLAR] = ACTIONS(1111), + [anon_sym_TODO] = ACTIONS(1114), + [anon_sym_WIP] = ACTIONS(1114), + [anon_sym_NOTE] = ACTIONS(1117), + [anon_sym_INFO] = ACTIONS(1117), + [anon_sym_XXX] = ACTIONS(1117), + [sym_fixme] = ACTIONS(1069), + [anon_sym_PIPE] = ACTIONS(1069), + [sym__whitespace1] = ACTIONS(1120), + [sym__newline] = ACTIONS(1123), + [aux_sym__text_token1] = ACTIONS(1126), + [sym__verbatim_begin] = ACTIONS(1129), + }, + [96] = { + [sym__inline] = STATE(642), + [sym__element] = STATE(88), + [sym_emphasis] = STATE(165), + [sym_emphasis_begin] = STATE(899), + [sym_strong] = STATE(165), + [sym_strong_begin] = STATE(96), + [sym__hard_line_break] = STATE(165), + [sym_hard_line_break] = STATE(165), + [sym__smart_punctuation] = STATE(165), + [sym_autolink] = STATE(165), + [sym_highlighted] = STATE(165), + [sym_insert] = STATE(165), + [sym_delete] = STATE(165), + [sym_superscript] = STATE(165), + [sym_subscript] = STATE(165), + [sym_footnote_reference] = STATE(165), + [sym__image] = STATE(165), + [sym_full_reference_image] = STATE(165), + [sym_collapsed_reference_image] = STATE(165), + [sym_inline_image] = STATE(165), + [sym__image_description] = STATE(607), + [sym__link] = STATE(165), + [sym_full_reference_link] = STATE(165), + [sym_collapsed_reference_link] = STATE(165), + [sym_inline_link] = STATE(165), + [sym_link_text] = STATE(611), + [sym__comment_with_spaces] = STATE(165), + [sym_span] = STATE(165), + [sym_raw_inline] = STATE(165), + [sym_math] = STATE(165), + [sym_verbatim] = STATE(165), + [sym__todo_highlights] = STATE(165), + [sym_todo] = STATE(165), + [sym_note] = STATE(165), + [sym__symbol_fallback] = STATE(165), + [aux_sym__text] = STATE(156), + [aux_sym__inline_repeat1] = STATE(88), + [anon_sym_LBRACE_] = ACTIONS(1016), + [anon_sym__] = ACTIONS(1018), + [anon_sym_LBRACE_STAR] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_BSLASH] = ACTIONS(1022), + [sym_quotation_marks] = ACTIONS(1018), + [sym_ellipsis] = ACTIONS(1018), + [sym_em_dash] = ACTIONS(1018), + [sym_en_dash] = ACTIONS(1024), + [sym_backslash_escape] = ACTIONS(1024), + [anon_sym_LT] = ACTIONS(1026), + [anon_sym_LBRACE_EQ] = ACTIONS(1028), + [anon_sym_LBRACE_PLUS] = ACTIONS(1030), + [anon_sym_LBRACE_DASH] = ACTIONS(1032), + [sym_symbol] = ACTIONS(1018), + [anon_sym_LBRACE_CARET] = ACTIONS(1034), + [anon_sym_CARET] = ACTIONS(1034), + [anon_sym_LBRACE_TILDE] = ACTIONS(1036), + [anon_sym_TILDE] = ACTIONS(1036), + [anon_sym_LBRACK_CARET] = ACTIONS(1038), + [anon_sym_BANG_LBRACK] = ACTIONS(1040), + [anon_sym_LBRACK] = ACTIONS(1042), + [anon_sym_LBRACE2] = ACTIONS(1024), + [anon_sym_DOLLAR] = ACTIONS(1044), + [anon_sym_TODO] = ACTIONS(1046), + [anon_sym_WIP] = ACTIONS(1046), + [anon_sym_NOTE] = ACTIONS(1048), + [anon_sym_INFO] = ACTIONS(1048), + [anon_sym_XXX] = ACTIONS(1048), + [sym_fixme] = ACTIONS(1018), + [anon_sym_PIPE] = ACTIONS(1018), + [sym__whitespace1] = ACTIONS(1060), + [sym__newline] = ACTIONS(1062), + [aux_sym__text_token1] = ACTIONS(1054), + [sym__verbatim_begin] = ACTIONS(1056), + }, + [97] = { + [sym__element] = STATE(95), + [sym_emphasis] = STATE(182), + [sym_emphasis_begin] = STATE(898), + [sym_strong] = STATE(182), + [sym_strong_begin] = STATE(104), + [sym__hard_line_break] = STATE(182), + [sym_hard_line_break] = STATE(182), + [sym__smart_punctuation] = STATE(182), + [sym_autolink] = STATE(182), + [sym_highlighted] = STATE(182), + [sym_insert] = STATE(182), + [sym_delete] = STATE(182), + [sym_superscript] = STATE(182), + [sym_subscript] = STATE(182), + [sym_footnote_reference] = STATE(182), + [sym__image] = STATE(182), + [sym_full_reference_image] = STATE(182), + [sym_collapsed_reference_image] = STATE(182), + [sym_inline_image] = STATE(182), + [sym__image_description] = STATE(610), + [sym__link] = STATE(182), + [sym_full_reference_link] = STATE(182), + [sym_collapsed_reference_link] = STATE(182), + [sym_inline_link] = STATE(182), + [sym_link_text] = STATE(608), + [sym__comment_with_spaces] = STATE(182), + [sym_span] = STATE(182), + [sym_raw_inline] = STATE(182), + [sym_math] = STATE(182), + [sym_verbatim] = STATE(182), + [sym__todo_highlights] = STATE(182), + [sym_todo] = STATE(182), + [sym_note] = STATE(182), + [sym__symbol_fallback] = STATE(182), + [aux_sym__text] = STATE(144), + [aux_sym__inline_repeat1] = STATE(95), + [anon_sym_LBRACE_] = ACTIONS(1132), + [anon_sym__] = ACTIONS(1134), + [anon_sym_LBRACE_STAR] = ACTIONS(1136), + [anon_sym_STAR] = ACTIONS(1138), + [anon_sym_BSLASH] = ACTIONS(1140), + [sym_quotation_marks] = ACTIONS(1134), + [sym_ellipsis] = ACTIONS(1134), + [sym_em_dash] = ACTIONS(1134), + [sym_en_dash] = ACTIONS(1142), + [sym_backslash_escape] = ACTIONS(1142), + [anon_sym_LT] = ACTIONS(1144), + [anon_sym_LBRACE_EQ] = ACTIONS(1146), + [anon_sym_LBRACE_PLUS] = ACTIONS(1148), + [anon_sym_LBRACE_DASH] = ACTIONS(1150), + [sym_symbol] = ACTIONS(1134), + [anon_sym_LBRACE_CARET] = ACTIONS(1152), + [anon_sym_CARET] = ACTIONS(1152), + [anon_sym_LBRACE_TILDE] = ACTIONS(1154), + [anon_sym_TILDE] = ACTIONS(1154), + [anon_sym_LBRACK_CARET] = ACTIONS(1156), + [anon_sym_RBRACK] = ACTIONS(550), + [anon_sym_BANG_LBRACK] = ACTIONS(1158), + [anon_sym_LBRACK] = ACTIONS(1160), + [anon_sym_LBRACE2] = ACTIONS(1142), + [anon_sym_DOLLAR] = ACTIONS(1162), + [anon_sym_TODO] = ACTIONS(1164), + [anon_sym_WIP] = ACTIONS(1164), + [anon_sym_NOTE] = ACTIONS(1166), + [anon_sym_INFO] = ACTIONS(1166), + [anon_sym_XXX] = ACTIONS(1166), + [sym_fixme] = ACTIONS(1134), + [anon_sym_PIPE] = ACTIONS(1134), + [sym__whitespace1] = ACTIONS(1168), + [sym__newline] = ACTIONS(1170), + [aux_sym__text_token1] = ACTIONS(1172), + [sym__verbatim_begin] = ACTIONS(1174), + }, + [98] = { + [sym__element] = STATE(98), + [sym_emphasis] = STATE(187), + [sym_emphasis_begin] = STATE(893), + [sym_strong] = STATE(187), + [sym_strong_begin] = STATE(119), + [sym__hard_line_break] = STATE(187), + [sym_hard_line_break] = STATE(187), + [sym__smart_punctuation] = STATE(187), + [sym_autolink] = STATE(187), + [sym_highlighted] = STATE(187), + [sym_insert] = STATE(187), + [sym_delete] = STATE(187), + [sym_superscript] = STATE(187), + [sym_subscript] = STATE(187), + [sym_footnote_reference] = STATE(187), + [sym__image] = STATE(187), + [sym_full_reference_image] = STATE(187), + [sym_collapsed_reference_image] = STATE(187), + [sym_inline_image] = STATE(187), + [sym__image_description] = STATE(616), + [sym__link] = STATE(187), + [sym_full_reference_link] = STATE(187), + [sym_collapsed_reference_link] = STATE(187), + [sym_inline_link] = STATE(187), + [sym_link_text] = STATE(634), + [sym__comment_with_spaces] = STATE(187), + [sym_span] = STATE(187), + [sym_raw_inline] = STATE(187), + [sym_math] = STATE(187), + [sym_verbatim] = STATE(187), + [sym__todo_highlights] = STATE(187), + [sym_todo] = STATE(187), + [sym_note] = STATE(187), + [sym__symbol_fallback] = STATE(187), + [aux_sym__text] = STATE(131), + [aux_sym__inline_repeat1] = STATE(98), + [anon_sym_LBRACE_] = ACTIONS(1176), + [anon_sym__] = ACTIONS(1179), + [anon_sym_LBRACE_STAR] = ACTIONS(1182), + [anon_sym_STAR] = ACTIONS(1185), + [anon_sym_BSLASH] = ACTIONS(1188), + [sym_quotation_marks] = ACTIONS(1179), + [sym_ellipsis] = ACTIONS(1179), + [sym_em_dash] = ACTIONS(1179), + [sym_en_dash] = ACTIONS(1191), + [sym_backslash_escape] = ACTIONS(1191), + [anon_sym_LT] = ACTIONS(1194), + [anon_sym_LBRACE_EQ] = ACTIONS(1197), + [anon_sym_EQ_RBRACE] = ACTIONS(662), + [anon_sym_LBRACE_PLUS] = ACTIONS(1200), + [anon_sym_LBRACE_DASH] = ACTIONS(1203), + [sym_symbol] = ACTIONS(1179), + [anon_sym_LBRACE_CARET] = ACTIONS(1206), + [anon_sym_CARET] = ACTIONS(1206), + [anon_sym_LBRACE_TILDE] = ACTIONS(1209), + [anon_sym_TILDE] = ACTIONS(1209), + [anon_sym_LBRACK_CARET] = ACTIONS(1212), + [anon_sym_BANG_LBRACK] = ACTIONS(1215), + [anon_sym_LBRACK] = ACTIONS(1218), + [anon_sym_LBRACE2] = ACTIONS(1191), + [anon_sym_DOLLAR] = ACTIONS(1221), + [anon_sym_TODO] = ACTIONS(1224), + [anon_sym_WIP] = ACTIONS(1224), + [anon_sym_NOTE] = ACTIONS(1227), + [anon_sym_INFO] = ACTIONS(1227), + [anon_sym_XXX] = ACTIONS(1227), + [sym_fixme] = ACTIONS(1179), + [anon_sym_PIPE] = ACTIONS(1179), + [sym__whitespace1] = ACTIONS(1230), + [sym__newline] = ACTIONS(1233), + [aux_sym__text_token1] = ACTIONS(1236), + [sym__verbatim_begin] = ACTIONS(1239), + }, + [99] = { + [sym__inline] = STATE(658), + [sym__element] = STATE(121), + [sym_emphasis] = STATE(467), + [sym_emphasis_begin] = STATE(900), + [sym_strong] = STATE(467), + [sym_strong_begin] = STATE(92), + [sym__hard_line_break] = STATE(467), + [sym_hard_line_break] = STATE(467), + [sym__smart_punctuation] = STATE(467), + [sym_autolink] = STATE(467), + [sym_highlighted] = STATE(467), + [sym_insert] = STATE(467), + [sym_delete] = STATE(467), + [sym_superscript] = STATE(467), + [sym_subscript] = STATE(467), + [sym_footnote_reference] = STATE(467), + [sym__image] = STATE(467), + [sym_full_reference_image] = STATE(467), + [sym_collapsed_reference_image] = STATE(467), + [sym_inline_image] = STATE(467), + [sym__image_description] = STATE(619), + [sym__link] = STATE(467), + [sym_full_reference_link] = STATE(467), + [sym_collapsed_reference_link] = STATE(467), + [sym_inline_link] = STATE(467), + [sym_link_text] = STATE(620), + [sym__comment_with_spaces] = STATE(467), + [sym_span] = STATE(467), + [sym_raw_inline] = STATE(467), + [sym_math] = STATE(467), + [sym_verbatim] = STATE(467), + [sym__todo_highlights] = STATE(467), + [sym_todo] = STATE(467), + [sym_note] = STATE(467), + [sym__symbol_fallback] = STATE(467), + [aux_sym__text] = STATE(171), + [aux_sym__inline_repeat1] = STATE(121), + [anon_sym_LBRACE_] = ACTIONS(618), + [anon_sym__] = ACTIONS(620), + [anon_sym_LBRACE_STAR] = ACTIONS(622), + [anon_sym_STAR] = ACTIONS(624), + [anon_sym_BSLASH] = ACTIONS(626), + [sym_quotation_marks] = ACTIONS(620), + [sym_ellipsis] = ACTIONS(620), + [sym_em_dash] = ACTIONS(620), + [sym_en_dash] = ACTIONS(628), + [sym_backslash_escape] = ACTIONS(628), + [anon_sym_LT] = ACTIONS(630), + [anon_sym_LBRACE_EQ] = ACTIONS(632), + [anon_sym_LBRACE_PLUS] = ACTIONS(634), + [anon_sym_LBRACE_DASH] = ACTIONS(636), + [sym_symbol] = ACTIONS(620), + [anon_sym_LBRACE_CARET] = ACTIONS(638), + [anon_sym_CARET] = ACTIONS(638), + [anon_sym_LBRACE_TILDE] = ACTIONS(640), + [anon_sym_TILDE] = ACTIONS(640), + [anon_sym_LBRACK_CARET] = ACTIONS(642), + [anon_sym_BANG_LBRACK] = ACTIONS(644), + [anon_sym_LBRACK] = ACTIONS(646), + [anon_sym_LBRACE2] = ACTIONS(628), + [anon_sym_DOLLAR] = ACTIONS(648), + [anon_sym_TODO] = ACTIONS(650), + [anon_sym_WIP] = ACTIONS(650), + [anon_sym_NOTE] = ACTIONS(652), + [anon_sym_INFO] = ACTIONS(652), + [anon_sym_XXX] = ACTIONS(652), + [sym_fixme] = ACTIONS(620), + [anon_sym_PIPE] = ACTIONS(620), + [sym__whitespace1] = ACTIONS(654), + [sym__newline] = ACTIONS(656), + [aux_sym__text_token1] = ACTIONS(658), + [sym__verbatim_begin] = ACTIONS(660), + }, + [100] = { + [sym__inline] = STATE(794), + [sym__element] = STATE(105), + [sym_emphasis] = STATE(185), + [sym_emphasis_begin] = STATE(901), + [sym_strong] = STATE(185), + [sym_strong_begin] = STATE(89), + [sym__hard_line_break] = STATE(185), + [sym_hard_line_break] = STATE(185), + [sym__smart_punctuation] = STATE(185), + [sym_autolink] = STATE(185), + [sym_highlighted] = STATE(185), + [sym_insert] = STATE(185), + [sym_delete] = STATE(185), + [sym_superscript] = STATE(185), + [sym_subscript] = STATE(185), + [sym_footnote_reference] = STATE(185), + [sym__image] = STATE(185), + [sym_full_reference_image] = STATE(185), + [sym_collapsed_reference_image] = STATE(185), + [sym_inline_image] = STATE(185), + [sym__image_description] = STATE(628), + [sym__link] = STATE(185), + [sym_full_reference_link] = STATE(185), + [sym_collapsed_reference_link] = STATE(185), + [sym_inline_link] = STATE(185), + [sym_link_text] = STATE(629), + [sym__comment_with_spaces] = STATE(185), + [sym_span] = STATE(185), + [sym_raw_inline] = STATE(185), + [sym_math] = STATE(185), + [sym_verbatim] = STATE(185), + [sym__todo_highlights] = STATE(185), + [sym_todo] = STATE(185), + [sym_note] = STATE(185), + [sym__symbol_fallback] = STATE(185), + [aux_sym__text] = STATE(134), + [aux_sym__inline_repeat1] = STATE(105), + [anon_sym_LBRACE_] = ACTIONS(972), + [anon_sym__] = ACTIONS(974), + [anon_sym_LBRACE_STAR] = ACTIONS(976), + [anon_sym_STAR] = ACTIONS(978), + [anon_sym_BSLASH] = ACTIONS(980), + [sym_quotation_marks] = ACTIONS(974), + [sym_ellipsis] = ACTIONS(974), + [sym_em_dash] = ACTIONS(974), + [sym_en_dash] = ACTIONS(982), + [sym_backslash_escape] = ACTIONS(982), + [anon_sym_LT] = ACTIONS(984), + [anon_sym_LBRACE_EQ] = ACTIONS(986), + [anon_sym_LBRACE_PLUS] = ACTIONS(988), + [anon_sym_LBRACE_DASH] = ACTIONS(990), + [sym_symbol] = ACTIONS(974), + [anon_sym_LBRACE_CARET] = ACTIONS(992), + [anon_sym_CARET] = ACTIONS(992), + [anon_sym_LBRACE_TILDE] = ACTIONS(994), + [anon_sym_TILDE] = ACTIONS(994), + [anon_sym_LBRACK_CARET] = ACTIONS(996), + [anon_sym_BANG_LBRACK] = ACTIONS(998), + [anon_sym_LBRACK] = ACTIONS(1000), + [anon_sym_LBRACE2] = ACTIONS(982), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_TODO] = ACTIONS(1004), + [anon_sym_WIP] = ACTIONS(1004), + [anon_sym_NOTE] = ACTIONS(1006), + [anon_sym_INFO] = ACTIONS(1006), + [anon_sym_XXX] = ACTIONS(1006), + [sym_fixme] = ACTIONS(974), + [anon_sym_PIPE] = ACTIONS(974), + [sym__whitespace1] = ACTIONS(1008), + [sym__newline] = ACTIONS(1010), + [aux_sym__text_token1] = ACTIONS(1012), + [sym__verbatim_begin] = ACTIONS(1014), + }, + [101] = { + [sym__element] = STATE(101), + [sym_emphasis] = STATE(163), + [sym_emphasis_begin] = STATE(896), + [sym_strong] = STATE(163), + [sym_strong_begin] = STATE(110), + [sym__hard_line_break] = STATE(163), + [sym_hard_line_break] = STATE(163), + [sym__smart_punctuation] = STATE(163), + [sym_autolink] = STATE(163), + [sym_highlighted] = STATE(163), + [sym_insert] = STATE(163), + [sym_delete] = STATE(163), + [sym_superscript] = STATE(163), + [sym_subscript] = STATE(163), + [sym_footnote_reference] = STATE(163), + [sym__image] = STATE(163), + [sym_full_reference_image] = STATE(163), + [sym_collapsed_reference_image] = STATE(163), + [sym_inline_image] = STATE(163), + [sym__image_description] = STATE(622), + [sym__link] = STATE(163), + [sym_full_reference_link] = STATE(163), + [sym_collapsed_reference_link] = STATE(163), + [sym_inline_link] = STATE(163), + [sym_link_text] = STATE(605), + [sym__comment_with_spaces] = STATE(163), + [sym_span] = STATE(163), + [sym_raw_inline] = STATE(163), + [sym_math] = STATE(163), + [sym_verbatim] = STATE(163), + [sym__todo_highlights] = STATE(163), + [sym_todo] = STATE(163), + [sym_note] = STATE(163), + [sym__symbol_fallback] = STATE(163), + [aux_sym__text] = STATE(146), + [aux_sym__inline_repeat1] = STATE(101), + [anon_sym_LBRACE_] = ACTIONS(1242), + [anon_sym__] = ACTIONS(1245), + [anon_sym_LBRACE_STAR] = ACTIONS(1248), + [anon_sym_STAR] = ACTIONS(1251), + [anon_sym_BSLASH] = ACTIONS(1254), + [sym_quotation_marks] = ACTIONS(1245), + [sym_ellipsis] = ACTIONS(1245), + [sym_em_dash] = ACTIONS(1245), + [sym_en_dash] = ACTIONS(1257), + [sym_backslash_escape] = ACTIONS(1257), + [anon_sym_LT] = ACTIONS(1260), + [anon_sym_LBRACE_EQ] = ACTIONS(1263), + [anon_sym_LBRACE_PLUS] = ACTIONS(1266), + [anon_sym_LBRACE_DASH] = ACTIONS(1269), + [sym_symbol] = ACTIONS(1245), + [anon_sym_LBRACE_CARET] = ACTIONS(1272), + [anon_sym_CARET] = ACTIONS(1275), + [anon_sym_CARET_RBRACE] = ACTIONS(662), + [anon_sym_LBRACE_TILDE] = ACTIONS(1278), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_LBRACK_CARET] = ACTIONS(1281), + [anon_sym_BANG_LBRACK] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(1287), + [anon_sym_LBRACE2] = ACTIONS(1257), + [anon_sym_DOLLAR] = ACTIONS(1290), + [anon_sym_TODO] = ACTIONS(1293), + [anon_sym_WIP] = ACTIONS(1293), + [anon_sym_NOTE] = ACTIONS(1296), + [anon_sym_INFO] = ACTIONS(1296), + [anon_sym_XXX] = ACTIONS(1296), + [sym_fixme] = ACTIONS(1245), + [anon_sym_PIPE] = ACTIONS(1245), + [sym__whitespace1] = ACTIONS(1299), + [sym__newline] = ACTIONS(1302), + [aux_sym__text_token1] = ACTIONS(1305), + [sym__verbatim_begin] = ACTIONS(1308), + }, + [102] = { + [sym__inline] = STATE(716), + [sym__element] = STATE(105), + [sym_emphasis] = STATE(185), + [sym_emphasis_begin] = STATE(901), + [sym_strong] = STATE(185), + [sym_strong_begin] = STATE(89), + [sym__hard_line_break] = STATE(185), + [sym_hard_line_break] = STATE(185), + [sym__smart_punctuation] = STATE(185), + [sym_autolink] = STATE(185), + [sym_highlighted] = STATE(185), + [sym_insert] = STATE(185), + [sym_delete] = STATE(185), + [sym_superscript] = STATE(185), + [sym_subscript] = STATE(185), + [sym_footnote_reference] = STATE(185), + [sym__image] = STATE(185), + [sym_full_reference_image] = STATE(185), + [sym_collapsed_reference_image] = STATE(185), + [sym_inline_image] = STATE(185), + [sym__image_description] = STATE(628), + [sym__link] = STATE(185), + [sym_full_reference_link] = STATE(185), + [sym_collapsed_reference_link] = STATE(185), + [sym_inline_link] = STATE(185), + [sym_link_text] = STATE(629), + [sym__comment_with_spaces] = STATE(185), + [sym_span] = STATE(185), + [sym_raw_inline] = STATE(185), + [sym_math] = STATE(185), + [sym_verbatim] = STATE(185), + [sym__todo_highlights] = STATE(185), + [sym_todo] = STATE(185), + [sym_note] = STATE(185), + [sym__symbol_fallback] = STATE(185), + [aux_sym__text] = STATE(134), + [aux_sym__inline_repeat1] = STATE(105), + [anon_sym_LBRACE_] = ACTIONS(972), + [anon_sym__] = ACTIONS(974), + [anon_sym_LBRACE_STAR] = ACTIONS(976), + [anon_sym_STAR] = ACTIONS(978), + [anon_sym_BSLASH] = ACTIONS(980), + [sym_quotation_marks] = ACTIONS(974), + [sym_ellipsis] = ACTIONS(974), + [sym_em_dash] = ACTIONS(974), + [sym_en_dash] = ACTIONS(982), + [sym_backslash_escape] = ACTIONS(982), + [anon_sym_LT] = ACTIONS(984), + [anon_sym_LBRACE_EQ] = ACTIONS(986), + [anon_sym_LBRACE_PLUS] = ACTIONS(988), + [anon_sym_LBRACE_DASH] = ACTIONS(990), + [sym_symbol] = ACTIONS(974), + [anon_sym_LBRACE_CARET] = ACTIONS(992), + [anon_sym_CARET] = ACTIONS(992), + [anon_sym_LBRACE_TILDE] = ACTIONS(994), + [anon_sym_TILDE] = ACTIONS(994), + [anon_sym_LBRACK_CARET] = ACTIONS(996), + [anon_sym_BANG_LBRACK] = ACTIONS(998), + [anon_sym_LBRACK] = ACTIONS(1000), + [anon_sym_LBRACE2] = ACTIONS(982), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_TODO] = ACTIONS(1004), + [anon_sym_WIP] = ACTIONS(1004), + [anon_sym_NOTE] = ACTIONS(1006), + [anon_sym_INFO] = ACTIONS(1006), + [anon_sym_XXX] = ACTIONS(1006), + [sym_fixme] = ACTIONS(974), + [anon_sym_PIPE] = ACTIONS(974), + [sym__whitespace1] = ACTIONS(1008), + [sym__newline] = ACTIONS(1010), + [aux_sym__text_token1] = ACTIONS(1012), + [sym__verbatim_begin] = ACTIONS(1014), + }, + [103] = { + [sym__inline] = STATE(655), + [sym__element] = STATE(121), + [sym_emphasis] = STATE(467), + [sym_emphasis_begin] = STATE(900), + [sym_strong] = STATE(467), + [sym_strong_begin] = STATE(92), + [sym__hard_line_break] = STATE(467), + [sym_hard_line_break] = STATE(467), + [sym__smart_punctuation] = STATE(467), + [sym_autolink] = STATE(467), + [sym_highlighted] = STATE(467), + [sym_insert] = STATE(467), + [sym_delete] = STATE(467), + [sym_superscript] = STATE(467), + [sym_subscript] = STATE(467), + [sym_footnote_reference] = STATE(467), + [sym__image] = STATE(467), + [sym_full_reference_image] = STATE(467), + [sym_collapsed_reference_image] = STATE(467), + [sym_inline_image] = STATE(467), + [sym__image_description] = STATE(619), + [sym__link] = STATE(467), + [sym_full_reference_link] = STATE(467), + [sym_collapsed_reference_link] = STATE(467), + [sym_inline_link] = STATE(467), + [sym_link_text] = STATE(620), + [sym__comment_with_spaces] = STATE(467), + [sym_span] = STATE(467), + [sym_raw_inline] = STATE(467), + [sym_math] = STATE(467), + [sym_verbatim] = STATE(467), + [sym__todo_highlights] = STATE(467), + [sym_todo] = STATE(467), + [sym_note] = STATE(467), + [sym__symbol_fallback] = STATE(467), + [aux_sym__text] = STATE(171), + [aux_sym__inline_repeat1] = STATE(121), + [anon_sym_LBRACE_] = ACTIONS(618), + [anon_sym__] = ACTIONS(620), + [anon_sym_LBRACE_STAR] = ACTIONS(622), + [anon_sym_STAR] = ACTIONS(624), + [anon_sym_BSLASH] = ACTIONS(626), + [sym_quotation_marks] = ACTIONS(620), + [sym_ellipsis] = ACTIONS(620), + [sym_em_dash] = ACTIONS(620), + [sym_en_dash] = ACTIONS(628), + [sym_backslash_escape] = ACTIONS(628), + [anon_sym_LT] = ACTIONS(630), + [anon_sym_LBRACE_EQ] = ACTIONS(632), + [anon_sym_LBRACE_PLUS] = ACTIONS(634), + [anon_sym_LBRACE_DASH] = ACTIONS(636), + [sym_symbol] = ACTIONS(620), + [anon_sym_LBRACE_CARET] = ACTIONS(638), + [anon_sym_CARET] = ACTIONS(638), + [anon_sym_LBRACE_TILDE] = ACTIONS(640), + [anon_sym_TILDE] = ACTIONS(640), + [anon_sym_LBRACK_CARET] = ACTIONS(642), + [anon_sym_BANG_LBRACK] = ACTIONS(644), + [anon_sym_LBRACK] = ACTIONS(646), + [anon_sym_LBRACE2] = ACTIONS(628), + [anon_sym_DOLLAR] = ACTIONS(648), + [anon_sym_TODO] = ACTIONS(650), + [anon_sym_WIP] = ACTIONS(650), + [anon_sym_NOTE] = ACTIONS(652), + [anon_sym_INFO] = ACTIONS(652), + [anon_sym_XXX] = ACTIONS(652), + [sym_fixme] = ACTIONS(620), + [anon_sym_PIPE] = ACTIONS(620), + [sym__whitespace1] = ACTIONS(654), + [sym__newline] = ACTIONS(656), + [aux_sym__text_token1] = ACTIONS(658), + [sym__verbatim_begin] = ACTIONS(660), + }, + [104] = { + [sym__inline] = STATE(641), + [sym__element] = STATE(88), + [sym_emphasis] = STATE(165), + [sym_emphasis_begin] = STATE(899), + [sym_strong] = STATE(165), + [sym_strong_begin] = STATE(96), + [sym__hard_line_break] = STATE(165), + [sym_hard_line_break] = STATE(165), + [sym__smart_punctuation] = STATE(165), + [sym_autolink] = STATE(165), + [sym_highlighted] = STATE(165), + [sym_insert] = STATE(165), + [sym_delete] = STATE(165), + [sym_superscript] = STATE(165), + [sym_subscript] = STATE(165), + [sym_footnote_reference] = STATE(165), + [sym__image] = STATE(165), + [sym_full_reference_image] = STATE(165), + [sym_collapsed_reference_image] = STATE(165), + [sym_inline_image] = STATE(165), + [sym__image_description] = STATE(607), + [sym__link] = STATE(165), + [sym_full_reference_link] = STATE(165), + [sym_collapsed_reference_link] = STATE(165), + [sym_inline_link] = STATE(165), + [sym_link_text] = STATE(611), + [sym__comment_with_spaces] = STATE(165), + [sym_span] = STATE(165), + [sym_raw_inline] = STATE(165), + [sym_math] = STATE(165), + [sym_verbatim] = STATE(165), + [sym__todo_highlights] = STATE(165), + [sym_todo] = STATE(165), + [sym_note] = STATE(165), + [sym__symbol_fallback] = STATE(165), + [aux_sym__text] = STATE(156), + [aux_sym__inline_repeat1] = STATE(88), + [anon_sym_LBRACE_] = ACTIONS(1016), + [anon_sym__] = ACTIONS(1018), + [anon_sym_LBRACE_STAR] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_BSLASH] = ACTIONS(1022), + [sym_quotation_marks] = ACTIONS(1018), + [sym_ellipsis] = ACTIONS(1018), + [sym_em_dash] = ACTIONS(1018), + [sym_en_dash] = ACTIONS(1024), + [sym_backslash_escape] = ACTIONS(1024), + [anon_sym_LT] = ACTIONS(1026), + [anon_sym_LBRACE_EQ] = ACTIONS(1028), + [anon_sym_LBRACE_PLUS] = ACTIONS(1030), + [anon_sym_LBRACE_DASH] = ACTIONS(1032), + [sym_symbol] = ACTIONS(1018), + [anon_sym_LBRACE_CARET] = ACTIONS(1034), + [anon_sym_CARET] = ACTIONS(1034), + [anon_sym_LBRACE_TILDE] = ACTIONS(1036), + [anon_sym_TILDE] = ACTIONS(1036), + [anon_sym_LBRACK_CARET] = ACTIONS(1038), + [anon_sym_BANG_LBRACK] = ACTIONS(1040), + [anon_sym_LBRACK] = ACTIONS(1042), + [anon_sym_LBRACE2] = ACTIONS(1024), + [anon_sym_DOLLAR] = ACTIONS(1044), + [anon_sym_TODO] = ACTIONS(1046), + [anon_sym_WIP] = ACTIONS(1046), + [anon_sym_NOTE] = ACTIONS(1048), + [anon_sym_INFO] = ACTIONS(1048), + [anon_sym_XXX] = ACTIONS(1048), + [sym_fixme] = ACTIONS(1018), + [anon_sym_PIPE] = ACTIONS(1018), + [sym__whitespace1] = ACTIONS(1060), + [sym__newline] = ACTIONS(1062), + [aux_sym__text_token1] = ACTIONS(1054), + [sym__verbatim_begin] = ACTIONS(1056), + }, + [105] = { + [sym__element] = STATE(116), + [sym_emphasis] = STATE(185), + [sym_emphasis_begin] = STATE(901), + [sym_strong] = STATE(185), + [sym_strong_begin] = STATE(89), + [sym__hard_line_break] = STATE(185), + [sym_hard_line_break] = STATE(185), + [sym__smart_punctuation] = STATE(185), + [sym_autolink] = STATE(185), + [sym_highlighted] = STATE(185), + [sym_insert] = STATE(185), + [sym_delete] = STATE(185), + [sym_superscript] = STATE(185), + [sym_subscript] = STATE(185), + [sym_footnote_reference] = STATE(185), + [sym__image] = STATE(185), + [sym_full_reference_image] = STATE(185), + [sym_collapsed_reference_image] = STATE(185), + [sym_inline_image] = STATE(185), + [sym__image_description] = STATE(628), + [sym__link] = STATE(185), + [sym_full_reference_link] = STATE(185), + [sym_collapsed_reference_link] = STATE(185), + [sym_inline_link] = STATE(185), + [sym_link_text] = STATE(629), + [sym__comment_with_spaces] = STATE(185), + [sym_span] = STATE(185), + [sym_raw_inline] = STATE(185), + [sym_math] = STATE(185), + [sym_verbatim] = STATE(185), + [sym__todo_highlights] = STATE(185), + [sym_todo] = STATE(185), + [sym_note] = STATE(185), + [sym__symbol_fallback] = STATE(185), + [aux_sym__text] = STATE(134), + [aux_sym__inline_repeat1] = STATE(116), + [anon_sym_LBRACE_] = ACTIONS(972), + [anon_sym__] = ACTIONS(974), + [anon_sym_LBRACE_STAR] = ACTIONS(976), + [anon_sym_STAR] = ACTIONS(978), + [anon_sym_BSLASH] = ACTIONS(980), + [sym_quotation_marks] = ACTIONS(974), + [sym_ellipsis] = ACTIONS(974), + [sym_em_dash] = ACTIONS(974), + [sym_en_dash] = ACTIONS(982), + [sym_backslash_escape] = ACTIONS(982), + [anon_sym_LT] = ACTIONS(984), + [anon_sym_LBRACE_EQ] = ACTIONS(986), + [anon_sym_LBRACE_PLUS] = ACTIONS(988), + [anon_sym_LBRACE_DASH] = ACTIONS(990), + [sym_symbol] = ACTIONS(974), + [anon_sym_LBRACE_CARET] = ACTIONS(992), + [anon_sym_CARET] = ACTIONS(992), + [anon_sym_LBRACE_TILDE] = ACTIONS(994), + [anon_sym_TILDE] = ACTIONS(994), + [anon_sym_LBRACK_CARET] = ACTIONS(996), + [anon_sym_BANG_LBRACK] = ACTIONS(998), + [anon_sym_LBRACK] = ACTIONS(1000), + [anon_sym_RBRACK2] = ACTIONS(550), + [anon_sym_LBRACE2] = ACTIONS(982), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_TODO] = ACTIONS(1004), + [anon_sym_WIP] = ACTIONS(1004), + [anon_sym_NOTE] = ACTIONS(1006), + [anon_sym_INFO] = ACTIONS(1006), + [anon_sym_XXX] = ACTIONS(1006), + [sym_fixme] = ACTIONS(974), + [anon_sym_PIPE] = ACTIONS(974), + [sym__whitespace1] = ACTIONS(1008), + [sym__newline] = ACTIONS(1311), + [aux_sym__text_token1] = ACTIONS(1012), + [sym__verbatim_begin] = ACTIONS(1014), + }, + [106] = { + [sym__inline] = STATE(728), + [sym__element] = STATE(105), + [sym_emphasis] = STATE(185), + [sym_emphasis_begin] = STATE(901), + [sym_strong] = STATE(185), + [sym_strong_begin] = STATE(89), + [sym__hard_line_break] = STATE(185), + [sym_hard_line_break] = STATE(185), + [sym__smart_punctuation] = STATE(185), + [sym_autolink] = STATE(185), + [sym_highlighted] = STATE(185), + [sym_insert] = STATE(185), + [sym_delete] = STATE(185), + [sym_superscript] = STATE(185), + [sym_subscript] = STATE(185), + [sym_footnote_reference] = STATE(185), + [sym__image] = STATE(185), + [sym_full_reference_image] = STATE(185), + [sym_collapsed_reference_image] = STATE(185), + [sym_inline_image] = STATE(185), + [sym__image_description] = STATE(628), + [sym__link] = STATE(185), + [sym_full_reference_link] = STATE(185), + [sym_collapsed_reference_link] = STATE(185), + [sym_inline_link] = STATE(185), + [sym_link_text] = STATE(629), + [sym__comment_with_spaces] = STATE(185), + [sym_span] = STATE(185), + [sym_raw_inline] = STATE(185), + [sym_math] = STATE(185), + [sym_verbatim] = STATE(185), + [sym__todo_highlights] = STATE(185), + [sym_todo] = STATE(185), + [sym_note] = STATE(185), + [sym__symbol_fallback] = STATE(185), + [aux_sym__text] = STATE(134), + [aux_sym__inline_repeat1] = STATE(105), + [anon_sym_LBRACE_] = ACTIONS(972), + [anon_sym__] = ACTIONS(974), + [anon_sym_LBRACE_STAR] = ACTIONS(976), + [anon_sym_STAR] = ACTIONS(978), + [anon_sym_BSLASH] = ACTIONS(980), + [sym_quotation_marks] = ACTIONS(974), + [sym_ellipsis] = ACTIONS(974), + [sym_em_dash] = ACTIONS(974), + [sym_en_dash] = ACTIONS(982), + [sym_backslash_escape] = ACTIONS(982), + [anon_sym_LT] = ACTIONS(984), + [anon_sym_LBRACE_EQ] = ACTIONS(986), + [anon_sym_LBRACE_PLUS] = ACTIONS(988), + [anon_sym_LBRACE_DASH] = ACTIONS(990), + [sym_symbol] = ACTIONS(974), + [anon_sym_LBRACE_CARET] = ACTIONS(992), + [anon_sym_CARET] = ACTIONS(992), + [anon_sym_LBRACE_TILDE] = ACTIONS(994), + [anon_sym_TILDE] = ACTIONS(994), + [anon_sym_LBRACK_CARET] = ACTIONS(996), + [anon_sym_BANG_LBRACK] = ACTIONS(998), + [anon_sym_LBRACK] = ACTIONS(1000), + [anon_sym_LBRACE2] = ACTIONS(982), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_TODO] = ACTIONS(1004), + [anon_sym_WIP] = ACTIONS(1004), + [anon_sym_NOTE] = ACTIONS(1006), + [anon_sym_INFO] = ACTIONS(1006), + [anon_sym_XXX] = ACTIONS(1006), + [sym_fixme] = ACTIONS(974), + [anon_sym_PIPE] = ACTIONS(974), + [sym__whitespace1] = ACTIONS(1008), + [sym__newline] = ACTIONS(1010), + [aux_sym__text_token1] = ACTIONS(1012), + [sym__verbatim_begin] = ACTIONS(1014), + }, + [107] = { + [sym__element] = STATE(98), + [sym_emphasis] = STATE(187), + [sym_emphasis_begin] = STATE(893), + [sym_strong] = STATE(187), + [sym_strong_begin] = STATE(119), + [sym__hard_line_break] = STATE(187), + [sym_hard_line_break] = STATE(187), + [sym__smart_punctuation] = STATE(187), + [sym_autolink] = STATE(187), + [sym_highlighted] = STATE(187), + [sym_insert] = STATE(187), + [sym_delete] = STATE(187), + [sym_superscript] = STATE(187), + [sym_subscript] = STATE(187), + [sym_footnote_reference] = STATE(187), + [sym__image] = STATE(187), + [sym_full_reference_image] = STATE(187), + [sym_collapsed_reference_image] = STATE(187), + [sym_inline_image] = STATE(187), + [sym__image_description] = STATE(616), + [sym__link] = STATE(187), + [sym_full_reference_link] = STATE(187), + [sym_collapsed_reference_link] = STATE(187), + [sym_inline_link] = STATE(187), + [sym_link_text] = STATE(634), + [sym__comment_with_spaces] = STATE(187), + [sym_span] = STATE(187), + [sym_raw_inline] = STATE(187), + [sym_math] = STATE(187), + [sym_verbatim] = STATE(187), + [sym__todo_highlights] = STATE(187), + [sym_todo] = STATE(187), + [sym_note] = STATE(187), + [sym__symbol_fallback] = STATE(187), + [aux_sym__text] = STATE(131), + [aux_sym__inline_repeat1] = STATE(98), + [anon_sym_LBRACE_] = ACTIONS(1313), + [anon_sym__] = ACTIONS(1315), + [anon_sym_LBRACE_STAR] = ACTIONS(1317), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_BSLASH] = ACTIONS(1321), + [sym_quotation_marks] = ACTIONS(1315), + [sym_ellipsis] = ACTIONS(1315), + [sym_em_dash] = ACTIONS(1315), + [sym_en_dash] = ACTIONS(1323), + [sym_backslash_escape] = ACTIONS(1323), + [anon_sym_LT] = ACTIONS(1325), + [anon_sym_LBRACE_EQ] = ACTIONS(1327), + [anon_sym_EQ_RBRACE] = ACTIONS(550), + [anon_sym_LBRACE_PLUS] = ACTIONS(1329), + [anon_sym_LBRACE_DASH] = ACTIONS(1331), + [sym_symbol] = ACTIONS(1315), + [anon_sym_LBRACE_CARET] = ACTIONS(1333), + [anon_sym_CARET] = ACTIONS(1333), + [anon_sym_LBRACE_TILDE] = ACTIONS(1335), + [anon_sym_TILDE] = ACTIONS(1335), + [anon_sym_LBRACK_CARET] = ACTIONS(1337), + [anon_sym_BANG_LBRACK] = ACTIONS(1339), + [anon_sym_LBRACK] = ACTIONS(1341), + [anon_sym_LBRACE2] = ACTIONS(1323), + [anon_sym_DOLLAR] = ACTIONS(1343), + [anon_sym_TODO] = ACTIONS(1345), + [anon_sym_WIP] = ACTIONS(1345), + [anon_sym_NOTE] = ACTIONS(1347), + [anon_sym_INFO] = ACTIONS(1347), + [anon_sym_XXX] = ACTIONS(1347), + [sym_fixme] = ACTIONS(1315), + [anon_sym_PIPE] = ACTIONS(1315), + [sym__whitespace1] = ACTIONS(1349), + [sym__newline] = ACTIONS(1351), + [aux_sym__text_token1] = ACTIONS(1353), + [sym__verbatim_begin] = ACTIONS(1355), + }, + [108] = { + [sym__inline] = STATE(643), + [sym__element] = STATE(88), + [sym_emphasis] = STATE(165), + [sym_emphasis_begin] = STATE(899), + [sym_strong] = STATE(165), + [sym_strong_begin] = STATE(96), + [sym__hard_line_break] = STATE(165), + [sym_hard_line_break] = STATE(165), + [sym__smart_punctuation] = STATE(165), + [sym_autolink] = STATE(165), + [sym_highlighted] = STATE(165), + [sym_insert] = STATE(165), + [sym_delete] = STATE(165), + [sym_superscript] = STATE(165), + [sym_subscript] = STATE(165), + [sym_footnote_reference] = STATE(165), + [sym__image] = STATE(165), + [sym_full_reference_image] = STATE(165), + [sym_collapsed_reference_image] = STATE(165), + [sym_inline_image] = STATE(165), + [sym__image_description] = STATE(607), + [sym__link] = STATE(165), + [sym_full_reference_link] = STATE(165), + [sym_collapsed_reference_link] = STATE(165), + [sym_inline_link] = STATE(165), + [sym_link_text] = STATE(611), + [sym__comment_with_spaces] = STATE(165), + [sym_span] = STATE(165), + [sym_raw_inline] = STATE(165), + [sym_math] = STATE(165), + [sym_verbatim] = STATE(165), + [sym__todo_highlights] = STATE(165), + [sym_todo] = STATE(165), + [sym_note] = STATE(165), + [sym__symbol_fallback] = STATE(165), + [aux_sym__text] = STATE(156), + [aux_sym__inline_repeat1] = STATE(88), + [anon_sym_LBRACE_] = ACTIONS(1016), + [anon_sym__] = ACTIONS(1018), + [anon_sym_LBRACE_STAR] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_BSLASH] = ACTIONS(1022), + [sym_quotation_marks] = ACTIONS(1018), + [sym_ellipsis] = ACTIONS(1018), + [sym_em_dash] = ACTIONS(1018), + [sym_en_dash] = ACTIONS(1024), + [sym_backslash_escape] = ACTIONS(1024), + [anon_sym_LT] = ACTIONS(1026), + [anon_sym_LBRACE_EQ] = ACTIONS(1028), + [anon_sym_LBRACE_PLUS] = ACTIONS(1030), + [anon_sym_LBRACE_DASH] = ACTIONS(1032), + [sym_symbol] = ACTIONS(1018), + [anon_sym_LBRACE_CARET] = ACTIONS(1034), + [anon_sym_CARET] = ACTIONS(1034), + [anon_sym_LBRACE_TILDE] = ACTIONS(1036), + [anon_sym_TILDE] = ACTIONS(1036), + [anon_sym_LBRACK_CARET] = ACTIONS(1038), + [anon_sym_BANG_LBRACK] = ACTIONS(1040), + [anon_sym_LBRACK] = ACTIONS(1042), + [anon_sym_LBRACE2] = ACTIONS(1024), + [anon_sym_DOLLAR] = ACTIONS(1044), + [anon_sym_TODO] = ACTIONS(1046), + [anon_sym_WIP] = ACTIONS(1046), + [anon_sym_NOTE] = ACTIONS(1048), + [anon_sym_INFO] = ACTIONS(1048), + [anon_sym_XXX] = ACTIONS(1048), + [sym_fixme] = ACTIONS(1018), + [anon_sym_PIPE] = ACTIONS(1018), + [sym__whitespace1] = ACTIONS(1060), + [sym__newline] = ACTIONS(1062), + [aux_sym__text_token1] = ACTIONS(1054), + [sym__verbatim_begin] = ACTIONS(1056), + }, + [109] = { + [sym__inline] = STATE(764), + [sym__element] = STATE(105), + [sym_emphasis] = STATE(185), + [sym_emphasis_begin] = STATE(901), + [sym_strong] = STATE(185), + [sym_strong_begin] = STATE(89), + [sym__hard_line_break] = STATE(185), + [sym_hard_line_break] = STATE(185), + [sym__smart_punctuation] = STATE(185), + [sym_autolink] = STATE(185), + [sym_highlighted] = STATE(185), + [sym_insert] = STATE(185), + [sym_delete] = STATE(185), + [sym_superscript] = STATE(185), + [sym_subscript] = STATE(185), + [sym_footnote_reference] = STATE(185), + [sym__image] = STATE(185), + [sym_full_reference_image] = STATE(185), + [sym_collapsed_reference_image] = STATE(185), + [sym_inline_image] = STATE(185), + [sym__image_description] = STATE(628), + [sym__link] = STATE(185), + [sym_full_reference_link] = STATE(185), + [sym_collapsed_reference_link] = STATE(185), + [sym_inline_link] = STATE(185), + [sym_link_text] = STATE(629), + [sym__comment_with_spaces] = STATE(185), + [sym_span] = STATE(185), + [sym_raw_inline] = STATE(185), + [sym_math] = STATE(185), + [sym_verbatim] = STATE(185), + [sym__todo_highlights] = STATE(185), + [sym_todo] = STATE(185), + [sym_note] = STATE(185), + [sym__symbol_fallback] = STATE(185), + [aux_sym__text] = STATE(134), + [aux_sym__inline_repeat1] = STATE(105), + [anon_sym_LBRACE_] = ACTIONS(972), + [anon_sym__] = ACTIONS(974), + [anon_sym_LBRACE_STAR] = ACTIONS(976), + [anon_sym_STAR] = ACTIONS(978), + [anon_sym_BSLASH] = ACTIONS(980), + [sym_quotation_marks] = ACTIONS(974), + [sym_ellipsis] = ACTIONS(974), + [sym_em_dash] = ACTIONS(974), + [sym_en_dash] = ACTIONS(982), + [sym_backslash_escape] = ACTIONS(982), + [anon_sym_LT] = ACTIONS(984), + [anon_sym_LBRACE_EQ] = ACTIONS(986), + [anon_sym_LBRACE_PLUS] = ACTIONS(988), + [anon_sym_LBRACE_DASH] = ACTIONS(990), + [sym_symbol] = ACTIONS(974), + [anon_sym_LBRACE_CARET] = ACTIONS(992), + [anon_sym_CARET] = ACTIONS(992), + [anon_sym_LBRACE_TILDE] = ACTIONS(994), + [anon_sym_TILDE] = ACTIONS(994), + [anon_sym_LBRACK_CARET] = ACTIONS(996), + [anon_sym_BANG_LBRACK] = ACTIONS(998), + [anon_sym_LBRACK] = ACTIONS(1000), + [anon_sym_LBRACE2] = ACTIONS(982), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_TODO] = ACTIONS(1004), + [anon_sym_WIP] = ACTIONS(1004), + [anon_sym_NOTE] = ACTIONS(1006), + [anon_sym_INFO] = ACTIONS(1006), + [anon_sym_XXX] = ACTIONS(1006), + [sym_fixme] = ACTIONS(974), + [anon_sym_PIPE] = ACTIONS(974), + [sym__whitespace1] = ACTIONS(1008), + [sym__newline] = ACTIONS(1010), + [aux_sym__text_token1] = ACTIONS(1012), + [sym__verbatim_begin] = ACTIONS(1014), + }, + [110] = { + [sym__inline] = STATE(646), + [sym__element] = STATE(88), + [sym_emphasis] = STATE(165), + [sym_emphasis_begin] = STATE(899), + [sym_strong] = STATE(165), + [sym_strong_begin] = STATE(96), + [sym__hard_line_break] = STATE(165), + [sym_hard_line_break] = STATE(165), + [sym__smart_punctuation] = STATE(165), + [sym_autolink] = STATE(165), + [sym_highlighted] = STATE(165), + [sym_insert] = STATE(165), + [sym_delete] = STATE(165), + [sym_superscript] = STATE(165), + [sym_subscript] = STATE(165), + [sym_footnote_reference] = STATE(165), + [sym__image] = STATE(165), + [sym_full_reference_image] = STATE(165), + [sym_collapsed_reference_image] = STATE(165), + [sym_inline_image] = STATE(165), + [sym__image_description] = STATE(607), + [sym__link] = STATE(165), + [sym_full_reference_link] = STATE(165), + [sym_collapsed_reference_link] = STATE(165), + [sym_inline_link] = STATE(165), + [sym_link_text] = STATE(611), + [sym__comment_with_spaces] = STATE(165), + [sym_span] = STATE(165), + [sym_raw_inline] = STATE(165), + [sym_math] = STATE(165), + [sym_verbatim] = STATE(165), + [sym__todo_highlights] = STATE(165), + [sym_todo] = STATE(165), + [sym_note] = STATE(165), + [sym__symbol_fallback] = STATE(165), + [aux_sym__text] = STATE(156), + [aux_sym__inline_repeat1] = STATE(88), + [anon_sym_LBRACE_] = ACTIONS(1016), + [anon_sym__] = ACTIONS(1018), + [anon_sym_LBRACE_STAR] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_BSLASH] = ACTIONS(1022), + [sym_quotation_marks] = ACTIONS(1018), + [sym_ellipsis] = ACTIONS(1018), + [sym_em_dash] = ACTIONS(1018), + [sym_en_dash] = ACTIONS(1024), + [sym_backslash_escape] = ACTIONS(1024), + [anon_sym_LT] = ACTIONS(1026), + [anon_sym_LBRACE_EQ] = ACTIONS(1028), + [anon_sym_LBRACE_PLUS] = ACTIONS(1030), + [anon_sym_LBRACE_DASH] = ACTIONS(1032), + [sym_symbol] = ACTIONS(1018), + [anon_sym_LBRACE_CARET] = ACTIONS(1034), + [anon_sym_CARET] = ACTIONS(1034), + [anon_sym_LBRACE_TILDE] = ACTIONS(1036), + [anon_sym_TILDE] = ACTIONS(1036), + [anon_sym_LBRACK_CARET] = ACTIONS(1038), + [anon_sym_BANG_LBRACK] = ACTIONS(1040), + [anon_sym_LBRACK] = ACTIONS(1042), + [anon_sym_LBRACE2] = ACTIONS(1024), + [anon_sym_DOLLAR] = ACTIONS(1044), + [anon_sym_TODO] = ACTIONS(1046), + [anon_sym_WIP] = ACTIONS(1046), + [anon_sym_NOTE] = ACTIONS(1048), + [anon_sym_INFO] = ACTIONS(1048), + [anon_sym_XXX] = ACTIONS(1048), + [sym_fixme] = ACTIONS(1018), + [anon_sym_PIPE] = ACTIONS(1018), + [sym__whitespace1] = ACTIONS(1060), + [sym__newline] = ACTIONS(1062), + [aux_sym__text_token1] = ACTIONS(1054), + [sym__verbatim_begin] = ACTIONS(1056), + }, + [111] = { + [sym__element] = STATE(111), + [sym_emphasis] = STATE(175), + [sym_emphasis_begin] = STATE(897), + [sym_strong] = STATE(175), + [sym_strong_begin] = STATE(108), + [sym__hard_line_break] = STATE(175), + [sym_hard_line_break] = STATE(175), + [sym__smart_punctuation] = STATE(175), + [sym_autolink] = STATE(175), + [sym_highlighted] = STATE(175), + [sym_insert] = STATE(175), + [sym_delete] = STATE(175), + [sym_superscript] = STATE(175), + [sym_subscript] = STATE(175), + [sym_footnote_reference] = STATE(175), + [sym__image] = STATE(175), + [sym_full_reference_image] = STATE(175), + [sym_collapsed_reference_image] = STATE(175), + [sym_inline_image] = STATE(175), + [sym__image_description] = STATE(626), + [sym__link] = STATE(175), + [sym_full_reference_link] = STATE(175), + [sym_collapsed_reference_link] = STATE(175), + [sym_inline_link] = STATE(175), + [sym_link_text] = STATE(624), + [sym__comment_with_spaces] = STATE(175), + [sym_span] = STATE(175), + [sym_raw_inline] = STATE(175), + [sym_math] = STATE(175), + [sym_verbatim] = STATE(175), + [sym__todo_highlights] = STATE(175), + [sym_todo] = STATE(175), + [sym_note] = STATE(175), + [sym__symbol_fallback] = STATE(175), + [aux_sym__text] = STATE(125), + [aux_sym__inline_repeat1] = STATE(111), + [anon_sym_LBRACE_] = ACTIONS(1357), + [anon_sym__] = ACTIONS(1360), + [anon_sym_LBRACE_STAR] = ACTIONS(1363), + [anon_sym_STAR] = ACTIONS(1366), + [anon_sym_BSLASH] = ACTIONS(1369), + [sym_quotation_marks] = ACTIONS(1360), + [sym_ellipsis] = ACTIONS(1360), + [sym_em_dash] = ACTIONS(1360), + [sym_en_dash] = ACTIONS(1372), + [sym_backslash_escape] = ACTIONS(1372), + [anon_sym_LT] = ACTIONS(1375), + [anon_sym_LBRACE_EQ] = ACTIONS(1378), + [anon_sym_LBRACE_PLUS] = ACTIONS(1381), + [anon_sym_LBRACE_DASH] = ACTIONS(1384), + [sym_symbol] = ACTIONS(1360), + [anon_sym_LBRACE_CARET] = ACTIONS(1387), + [anon_sym_CARET] = ACTIONS(1387), + [anon_sym_LBRACE_TILDE] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1393), + [anon_sym_TILDE_RBRACE] = ACTIONS(662), + [anon_sym_LBRACK_CARET] = ACTIONS(1396), + [anon_sym_BANG_LBRACK] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(1402), + [anon_sym_LBRACE2] = ACTIONS(1372), + [anon_sym_DOLLAR] = ACTIONS(1405), + [anon_sym_TODO] = ACTIONS(1408), + [anon_sym_WIP] = ACTIONS(1408), + [anon_sym_NOTE] = ACTIONS(1411), + [anon_sym_INFO] = ACTIONS(1411), + [anon_sym_XXX] = ACTIONS(1411), + [sym_fixme] = ACTIONS(1360), + [anon_sym_PIPE] = ACTIONS(1360), + [sym__whitespace1] = ACTIONS(1414), + [sym__newline] = ACTIONS(1417), + [aux_sym__text_token1] = ACTIONS(1420), + [sym__verbatim_begin] = ACTIONS(1423), + }, + [112] = { + [sym__inline] = STATE(800), + [sym__element] = STATE(105), + [sym_emphasis] = STATE(185), + [sym_emphasis_begin] = STATE(901), + [sym_strong] = STATE(185), + [sym_strong_begin] = STATE(89), + [sym__hard_line_break] = STATE(185), + [sym_hard_line_break] = STATE(185), + [sym__smart_punctuation] = STATE(185), + [sym_autolink] = STATE(185), + [sym_highlighted] = STATE(185), + [sym_insert] = STATE(185), + [sym_delete] = STATE(185), + [sym_superscript] = STATE(185), + [sym_subscript] = STATE(185), + [sym_footnote_reference] = STATE(185), + [sym__image] = STATE(185), + [sym_full_reference_image] = STATE(185), + [sym_collapsed_reference_image] = STATE(185), + [sym_inline_image] = STATE(185), + [sym__image_description] = STATE(628), + [sym__link] = STATE(185), + [sym_full_reference_link] = STATE(185), + [sym_collapsed_reference_link] = STATE(185), + [sym_inline_link] = STATE(185), + [sym_link_text] = STATE(629), + [sym__comment_with_spaces] = STATE(185), + [sym_span] = STATE(185), + [sym_raw_inline] = STATE(185), + [sym_math] = STATE(185), + [sym_verbatim] = STATE(185), + [sym__todo_highlights] = STATE(185), + [sym_todo] = STATE(185), + [sym_note] = STATE(185), + [sym__symbol_fallback] = STATE(185), + [aux_sym__text] = STATE(134), + [aux_sym__inline_repeat1] = STATE(105), + [anon_sym_LBRACE_] = ACTIONS(972), + [anon_sym__] = ACTIONS(974), + [anon_sym_LBRACE_STAR] = ACTIONS(976), + [anon_sym_STAR] = ACTIONS(978), + [anon_sym_BSLASH] = ACTIONS(980), + [sym_quotation_marks] = ACTIONS(974), + [sym_ellipsis] = ACTIONS(974), + [sym_em_dash] = ACTIONS(974), + [sym_en_dash] = ACTIONS(982), + [sym_backslash_escape] = ACTIONS(982), + [anon_sym_LT] = ACTIONS(984), + [anon_sym_LBRACE_EQ] = ACTIONS(986), + [anon_sym_LBRACE_PLUS] = ACTIONS(988), + [anon_sym_LBRACE_DASH] = ACTIONS(990), + [sym_symbol] = ACTIONS(974), + [anon_sym_LBRACE_CARET] = ACTIONS(992), + [anon_sym_CARET] = ACTIONS(992), + [anon_sym_LBRACE_TILDE] = ACTIONS(994), + [anon_sym_TILDE] = ACTIONS(994), + [anon_sym_LBRACK_CARET] = ACTIONS(996), + [anon_sym_BANG_LBRACK] = ACTIONS(998), + [anon_sym_LBRACK] = ACTIONS(1000), + [anon_sym_LBRACE2] = ACTIONS(982), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_TODO] = ACTIONS(1004), + [anon_sym_WIP] = ACTIONS(1004), + [anon_sym_NOTE] = ACTIONS(1006), + [anon_sym_INFO] = ACTIONS(1006), + [anon_sym_XXX] = ACTIONS(1006), + [sym_fixme] = ACTIONS(974), + [anon_sym_PIPE] = ACTIONS(974), + [sym__whitespace1] = ACTIONS(1008), + [sym__newline] = ACTIONS(1010), + [aux_sym__text_token1] = ACTIONS(1012), + [sym__verbatim_begin] = ACTIONS(1014), + }, + [113] = { + [sym__element] = STATE(111), + [sym_emphasis] = STATE(175), + [sym_emphasis_begin] = STATE(897), + [sym_strong] = STATE(175), + [sym_strong_begin] = STATE(108), + [sym__hard_line_break] = STATE(175), + [sym_hard_line_break] = STATE(175), + [sym__smart_punctuation] = STATE(175), + [sym_autolink] = STATE(175), + [sym_highlighted] = STATE(175), + [sym_insert] = STATE(175), + [sym_delete] = STATE(175), + [sym_superscript] = STATE(175), + [sym_subscript] = STATE(175), + [sym_footnote_reference] = STATE(175), + [sym__image] = STATE(175), + [sym_full_reference_image] = STATE(175), + [sym_collapsed_reference_image] = STATE(175), + [sym_inline_image] = STATE(175), + [sym__image_description] = STATE(626), + [sym__link] = STATE(175), + [sym_full_reference_link] = STATE(175), + [sym_collapsed_reference_link] = STATE(175), + [sym_inline_link] = STATE(175), + [sym_link_text] = STATE(624), + [sym__comment_with_spaces] = STATE(175), + [sym_span] = STATE(175), + [sym_raw_inline] = STATE(175), + [sym_math] = STATE(175), + [sym_verbatim] = STATE(175), + [sym__todo_highlights] = STATE(175), + [sym_todo] = STATE(175), + [sym_note] = STATE(175), + [sym__symbol_fallback] = STATE(175), + [aux_sym__text] = STATE(125), + [aux_sym__inline_repeat1] = STATE(111), + [anon_sym_LBRACE_] = ACTIONS(1426), + [anon_sym__] = ACTIONS(1428), + [anon_sym_LBRACE_STAR] = ACTIONS(1430), + [anon_sym_STAR] = ACTIONS(1432), + [anon_sym_BSLASH] = ACTIONS(1434), + [sym_quotation_marks] = ACTIONS(1428), + [sym_ellipsis] = ACTIONS(1428), + [sym_em_dash] = ACTIONS(1428), + [sym_en_dash] = ACTIONS(1436), + [sym_backslash_escape] = ACTIONS(1436), + [anon_sym_LT] = ACTIONS(1438), + [anon_sym_LBRACE_EQ] = ACTIONS(1440), + [anon_sym_LBRACE_PLUS] = ACTIONS(1442), + [anon_sym_LBRACE_DASH] = ACTIONS(1444), + [sym_symbol] = ACTIONS(1428), + [anon_sym_LBRACE_CARET] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(1446), + [anon_sym_LBRACE_TILDE] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(548), + [anon_sym_TILDE_RBRACE] = ACTIONS(550), + [anon_sym_LBRACK_CARET] = ACTIONS(1450), + [anon_sym_BANG_LBRACK] = ACTIONS(1452), + [anon_sym_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE2] = ACTIONS(1436), + [anon_sym_DOLLAR] = ACTIONS(1456), + [anon_sym_TODO] = ACTIONS(1458), + [anon_sym_WIP] = ACTIONS(1458), + [anon_sym_NOTE] = ACTIONS(1460), + [anon_sym_INFO] = ACTIONS(1460), + [anon_sym_XXX] = ACTIONS(1460), + [sym_fixme] = ACTIONS(1428), + [anon_sym_PIPE] = ACTIONS(1428), + [sym__whitespace1] = ACTIONS(1462), + [sym__newline] = ACTIONS(1464), + [aux_sym__text_token1] = ACTIONS(1466), + [sym__verbatim_begin] = ACTIONS(1468), + }, + [114] = { + [sym__inline] = STATE(645), + [sym__element] = STATE(88), + [sym_emphasis] = STATE(165), + [sym_emphasis_begin] = STATE(899), + [sym_strong] = STATE(165), + [sym_strong_begin] = STATE(96), + [sym__hard_line_break] = STATE(165), + [sym_hard_line_break] = STATE(165), + [sym__smart_punctuation] = STATE(165), + [sym_autolink] = STATE(165), + [sym_highlighted] = STATE(165), + [sym_insert] = STATE(165), + [sym_delete] = STATE(165), + [sym_superscript] = STATE(165), + [sym_subscript] = STATE(165), + [sym_footnote_reference] = STATE(165), + [sym__image] = STATE(165), + [sym_full_reference_image] = STATE(165), + [sym_collapsed_reference_image] = STATE(165), + [sym_inline_image] = STATE(165), + [sym__image_description] = STATE(607), + [sym__link] = STATE(165), + [sym_full_reference_link] = STATE(165), + [sym_collapsed_reference_link] = STATE(165), + [sym_inline_link] = STATE(165), + [sym_link_text] = STATE(611), + [sym__comment_with_spaces] = STATE(165), + [sym_span] = STATE(165), + [sym_raw_inline] = STATE(165), + [sym_math] = STATE(165), + [sym_verbatim] = STATE(165), + [sym__todo_highlights] = STATE(165), + [sym_todo] = STATE(165), + [sym_note] = STATE(165), + [sym__symbol_fallback] = STATE(165), + [aux_sym__text] = STATE(156), + [aux_sym__inline_repeat1] = STATE(88), + [anon_sym_LBRACE_] = ACTIONS(1016), + [anon_sym__] = ACTIONS(1018), + [anon_sym_LBRACE_STAR] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_BSLASH] = ACTIONS(1022), + [sym_quotation_marks] = ACTIONS(1018), + [sym_ellipsis] = ACTIONS(1018), + [sym_em_dash] = ACTIONS(1018), + [sym_en_dash] = ACTIONS(1024), + [sym_backslash_escape] = ACTIONS(1024), + [anon_sym_LT] = ACTIONS(1026), + [anon_sym_LBRACE_EQ] = ACTIONS(1028), + [anon_sym_LBRACE_PLUS] = ACTIONS(1030), + [anon_sym_LBRACE_DASH] = ACTIONS(1032), + [sym_symbol] = ACTIONS(1018), + [anon_sym_LBRACE_CARET] = ACTIONS(1034), + [anon_sym_CARET] = ACTIONS(1034), + [anon_sym_LBRACE_TILDE] = ACTIONS(1036), + [anon_sym_TILDE] = ACTIONS(1036), + [anon_sym_LBRACK_CARET] = ACTIONS(1038), + [anon_sym_BANG_LBRACK] = ACTIONS(1040), + [anon_sym_LBRACK] = ACTIONS(1042), + [anon_sym_LBRACE2] = ACTIONS(1024), + [anon_sym_DOLLAR] = ACTIONS(1044), + [anon_sym_TODO] = ACTIONS(1046), + [anon_sym_WIP] = ACTIONS(1046), + [anon_sym_NOTE] = ACTIONS(1048), + [anon_sym_INFO] = ACTIONS(1048), + [anon_sym_XXX] = ACTIONS(1048), + [sym_fixme] = ACTIONS(1018), + [anon_sym_PIPE] = ACTIONS(1018), + [sym__whitespace1] = ACTIONS(1060), + [sym__newline] = ACTIONS(1062), + [aux_sym__text_token1] = ACTIONS(1054), + [sym__verbatim_begin] = ACTIONS(1056), + }, + [115] = { + [sym__inline] = STATE(849), + [sym__element] = STATE(105), + [sym_emphasis] = STATE(185), + [sym_emphasis_begin] = STATE(901), + [sym_strong] = STATE(185), + [sym_strong_begin] = STATE(89), + [sym__hard_line_break] = STATE(185), + [sym_hard_line_break] = STATE(185), + [sym__smart_punctuation] = STATE(185), + [sym_autolink] = STATE(185), + [sym_highlighted] = STATE(185), + [sym_insert] = STATE(185), + [sym_delete] = STATE(185), + [sym_superscript] = STATE(185), + [sym_subscript] = STATE(185), + [sym_footnote_reference] = STATE(185), + [sym__image] = STATE(185), + [sym_full_reference_image] = STATE(185), + [sym_collapsed_reference_image] = STATE(185), + [sym_inline_image] = STATE(185), + [sym__image_description] = STATE(628), + [sym__link] = STATE(185), + [sym_full_reference_link] = STATE(185), + [sym_collapsed_reference_link] = STATE(185), + [sym_inline_link] = STATE(185), + [sym_link_text] = STATE(629), + [sym__comment_with_spaces] = STATE(185), + [sym_span] = STATE(185), + [sym_raw_inline] = STATE(185), + [sym_math] = STATE(185), + [sym_verbatim] = STATE(185), + [sym__todo_highlights] = STATE(185), + [sym_todo] = STATE(185), + [sym_note] = STATE(185), + [sym__symbol_fallback] = STATE(185), + [aux_sym__text] = STATE(134), + [aux_sym__inline_repeat1] = STATE(105), + [anon_sym_LBRACE_] = ACTIONS(972), + [anon_sym__] = ACTIONS(974), + [anon_sym_LBRACE_STAR] = ACTIONS(976), + [anon_sym_STAR] = ACTIONS(978), + [anon_sym_BSLASH] = ACTIONS(980), + [sym_quotation_marks] = ACTIONS(974), + [sym_ellipsis] = ACTIONS(974), + [sym_em_dash] = ACTIONS(974), + [sym_en_dash] = ACTIONS(982), + [sym_backslash_escape] = ACTIONS(982), + [anon_sym_LT] = ACTIONS(984), + [anon_sym_LBRACE_EQ] = ACTIONS(986), + [anon_sym_LBRACE_PLUS] = ACTIONS(988), + [anon_sym_LBRACE_DASH] = ACTIONS(990), + [sym_symbol] = ACTIONS(974), + [anon_sym_LBRACE_CARET] = ACTIONS(992), + [anon_sym_CARET] = ACTIONS(992), + [anon_sym_LBRACE_TILDE] = ACTIONS(994), + [anon_sym_TILDE] = ACTIONS(994), + [anon_sym_LBRACK_CARET] = ACTIONS(996), + [anon_sym_BANG_LBRACK] = ACTIONS(998), + [anon_sym_LBRACK] = ACTIONS(1000), + [anon_sym_LBRACE2] = ACTIONS(982), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_TODO] = ACTIONS(1004), + [anon_sym_WIP] = ACTIONS(1004), + [anon_sym_NOTE] = ACTIONS(1006), + [anon_sym_INFO] = ACTIONS(1006), + [anon_sym_XXX] = ACTIONS(1006), + [sym_fixme] = ACTIONS(974), + [anon_sym_PIPE] = ACTIONS(974), + [sym__whitespace1] = ACTIONS(1008), + [sym__newline] = ACTIONS(1010), + [aux_sym__text_token1] = ACTIONS(1012), + [sym__verbatim_begin] = ACTIONS(1014), + }, + [116] = { + [sym__element] = STATE(116), + [sym_emphasis] = STATE(185), + [sym_emphasis_begin] = STATE(901), + [sym_strong] = STATE(185), + [sym_strong_begin] = STATE(89), + [sym__hard_line_break] = STATE(185), + [sym_hard_line_break] = STATE(185), + [sym__smart_punctuation] = STATE(185), + [sym_autolink] = STATE(185), + [sym_highlighted] = STATE(185), + [sym_insert] = STATE(185), + [sym_delete] = STATE(185), + [sym_superscript] = STATE(185), + [sym_subscript] = STATE(185), + [sym_footnote_reference] = STATE(185), + [sym__image] = STATE(185), + [sym_full_reference_image] = STATE(185), + [sym_collapsed_reference_image] = STATE(185), + [sym_inline_image] = STATE(185), + [sym__image_description] = STATE(628), + [sym__link] = STATE(185), + [sym_full_reference_link] = STATE(185), + [sym_collapsed_reference_link] = STATE(185), + [sym_inline_link] = STATE(185), + [sym_link_text] = STATE(629), + [sym__comment_with_spaces] = STATE(185), + [sym_span] = STATE(185), + [sym_raw_inline] = STATE(185), + [sym_math] = STATE(185), + [sym_verbatim] = STATE(185), + [sym__todo_highlights] = STATE(185), + [sym_todo] = STATE(185), + [sym_note] = STATE(185), + [sym__symbol_fallback] = STATE(185), + [aux_sym__text] = STATE(134), + [aux_sym__inline_repeat1] = STATE(116), + [anon_sym_LBRACE_] = ACTIONS(1470), + [anon_sym__] = ACTIONS(1473), + [anon_sym_LBRACE_STAR] = ACTIONS(1476), + [anon_sym_STAR] = ACTIONS(1479), + [anon_sym_BSLASH] = ACTIONS(1482), + [sym_quotation_marks] = ACTIONS(1473), + [sym_ellipsis] = ACTIONS(1473), + [sym_em_dash] = ACTIONS(1473), + [sym_en_dash] = ACTIONS(1485), + [sym_backslash_escape] = ACTIONS(1485), + [anon_sym_LT] = ACTIONS(1488), + [anon_sym_LBRACE_EQ] = ACTIONS(1491), + [anon_sym_LBRACE_PLUS] = ACTIONS(1494), + [anon_sym_LBRACE_DASH] = ACTIONS(1497), + [sym_symbol] = ACTIONS(1473), + [anon_sym_LBRACE_CARET] = ACTIONS(1500), + [anon_sym_CARET] = ACTIONS(1500), + [anon_sym_LBRACE_TILDE] = ACTIONS(1503), + [anon_sym_TILDE] = ACTIONS(1503), + [anon_sym_LBRACK_CARET] = ACTIONS(1506), + [anon_sym_BANG_LBRACK] = ACTIONS(1509), + [anon_sym_LBRACK] = ACTIONS(1512), + [anon_sym_RBRACK2] = ACTIONS(662), + [anon_sym_LBRACE2] = ACTIONS(1485), + [anon_sym_DOLLAR] = ACTIONS(1515), + [anon_sym_TODO] = ACTIONS(1518), + [anon_sym_WIP] = ACTIONS(1518), + [anon_sym_NOTE] = ACTIONS(1521), + [anon_sym_INFO] = ACTIONS(1521), + [anon_sym_XXX] = ACTIONS(1521), + [sym_fixme] = ACTIONS(1473), + [anon_sym_PIPE] = ACTIONS(1473), + [sym__whitespace1] = ACTIONS(1524), + [sym__newline] = ACTIONS(1527), + [aux_sym__text_token1] = ACTIONS(1530), + [sym__verbatim_begin] = ACTIONS(1533), + }, + [117] = { + [sym__inline] = STATE(638), + [sym__element] = STATE(88), + [sym_emphasis] = STATE(165), + [sym_emphasis_begin] = STATE(899), + [sym_strong] = STATE(165), + [sym_strong_begin] = STATE(96), + [sym__hard_line_break] = STATE(165), + [sym_hard_line_break] = STATE(165), + [sym__smart_punctuation] = STATE(165), + [sym_autolink] = STATE(165), + [sym_highlighted] = STATE(165), + [sym_insert] = STATE(165), + [sym_delete] = STATE(165), + [sym_superscript] = STATE(165), + [sym_subscript] = STATE(165), + [sym_footnote_reference] = STATE(165), + [sym__image] = STATE(165), + [sym_full_reference_image] = STATE(165), + [sym_collapsed_reference_image] = STATE(165), + [sym_inline_image] = STATE(165), + [sym__image_description] = STATE(607), + [sym__link] = STATE(165), + [sym_full_reference_link] = STATE(165), + [sym_collapsed_reference_link] = STATE(165), + [sym_inline_link] = STATE(165), + [sym_link_text] = STATE(611), + [sym__comment_with_spaces] = STATE(165), + [sym_span] = STATE(165), + [sym_raw_inline] = STATE(165), + [sym_math] = STATE(165), + [sym_verbatim] = STATE(165), + [sym__todo_highlights] = STATE(165), + [sym_todo] = STATE(165), + [sym_note] = STATE(165), + [sym__symbol_fallback] = STATE(165), + [aux_sym__text] = STATE(156), + [aux_sym__inline_repeat1] = STATE(88), + [anon_sym_LBRACE_] = ACTIONS(1016), + [anon_sym__] = ACTIONS(1018), + [anon_sym_LBRACE_STAR] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_BSLASH] = ACTIONS(1022), + [sym_quotation_marks] = ACTIONS(1018), + [sym_ellipsis] = ACTIONS(1018), + [sym_em_dash] = ACTIONS(1018), + [sym_en_dash] = ACTIONS(1024), + [sym_backslash_escape] = ACTIONS(1024), + [anon_sym_LT] = ACTIONS(1026), + [anon_sym_LBRACE_EQ] = ACTIONS(1028), + [anon_sym_LBRACE_PLUS] = ACTIONS(1030), + [anon_sym_LBRACE_DASH] = ACTIONS(1032), + [sym_symbol] = ACTIONS(1018), + [anon_sym_LBRACE_CARET] = ACTIONS(1034), + [anon_sym_CARET] = ACTIONS(1034), + [anon_sym_LBRACE_TILDE] = ACTIONS(1036), + [anon_sym_TILDE] = ACTIONS(1036), + [anon_sym_LBRACK_CARET] = ACTIONS(1038), + [anon_sym_BANG_LBRACK] = ACTIONS(1040), + [anon_sym_LBRACK] = ACTIONS(1042), + [anon_sym_LBRACE2] = ACTIONS(1024), + [anon_sym_DOLLAR] = ACTIONS(1044), + [anon_sym_TODO] = ACTIONS(1046), + [anon_sym_WIP] = ACTIONS(1046), + [anon_sym_NOTE] = ACTIONS(1048), + [anon_sym_INFO] = ACTIONS(1048), + [anon_sym_XXX] = ACTIONS(1048), + [sym_fixme] = ACTIONS(1018), + [anon_sym_PIPE] = ACTIONS(1018), + [sym__whitespace1] = ACTIONS(1060), + [sym__newline] = ACTIONS(1062), + [aux_sym__text_token1] = ACTIONS(1054), + [sym__verbatim_begin] = ACTIONS(1056), + }, + [118] = { + [sym__inline] = STATE(886), + [sym__element] = STATE(105), + [sym_emphasis] = STATE(185), + [sym_emphasis_begin] = STATE(901), + [sym_strong] = STATE(185), + [sym_strong_begin] = STATE(89), + [sym__hard_line_break] = STATE(185), + [sym_hard_line_break] = STATE(185), + [sym__smart_punctuation] = STATE(185), + [sym_autolink] = STATE(185), + [sym_highlighted] = STATE(185), + [sym_insert] = STATE(185), + [sym_delete] = STATE(185), + [sym_superscript] = STATE(185), + [sym_subscript] = STATE(185), + [sym_footnote_reference] = STATE(185), + [sym__image] = STATE(185), + [sym_full_reference_image] = STATE(185), + [sym_collapsed_reference_image] = STATE(185), + [sym_inline_image] = STATE(185), + [sym__image_description] = STATE(628), + [sym__link] = STATE(185), + [sym_full_reference_link] = STATE(185), + [sym_collapsed_reference_link] = STATE(185), + [sym_inline_link] = STATE(185), + [sym_link_text] = STATE(629), + [sym__comment_with_spaces] = STATE(185), + [sym_span] = STATE(185), + [sym_raw_inline] = STATE(185), + [sym_math] = STATE(185), + [sym_verbatim] = STATE(185), + [sym__todo_highlights] = STATE(185), + [sym_todo] = STATE(185), + [sym_note] = STATE(185), + [sym__symbol_fallback] = STATE(185), + [aux_sym__text] = STATE(134), + [aux_sym__inline_repeat1] = STATE(105), + [anon_sym_LBRACE_] = ACTIONS(972), + [anon_sym__] = ACTIONS(974), + [anon_sym_LBRACE_STAR] = ACTIONS(976), + [anon_sym_STAR] = ACTIONS(978), + [anon_sym_BSLASH] = ACTIONS(980), + [sym_quotation_marks] = ACTIONS(974), + [sym_ellipsis] = ACTIONS(974), + [sym_em_dash] = ACTIONS(974), + [sym_en_dash] = ACTIONS(982), + [sym_backslash_escape] = ACTIONS(982), + [anon_sym_LT] = ACTIONS(984), + [anon_sym_LBRACE_EQ] = ACTIONS(986), + [anon_sym_LBRACE_PLUS] = ACTIONS(988), + [anon_sym_LBRACE_DASH] = ACTIONS(990), + [sym_symbol] = ACTIONS(974), + [anon_sym_LBRACE_CARET] = ACTIONS(992), + [anon_sym_CARET] = ACTIONS(992), + [anon_sym_LBRACE_TILDE] = ACTIONS(994), + [anon_sym_TILDE] = ACTIONS(994), + [anon_sym_LBRACK_CARET] = ACTIONS(996), + [anon_sym_BANG_LBRACK] = ACTIONS(998), + [anon_sym_LBRACK] = ACTIONS(1000), + [anon_sym_LBRACE2] = ACTIONS(982), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_TODO] = ACTIONS(1004), + [anon_sym_WIP] = ACTIONS(1004), + [anon_sym_NOTE] = ACTIONS(1006), + [anon_sym_INFO] = ACTIONS(1006), + [anon_sym_XXX] = ACTIONS(1006), + [sym_fixme] = ACTIONS(974), + [anon_sym_PIPE] = ACTIONS(974), + [sym__whitespace1] = ACTIONS(1008), + [sym__newline] = ACTIONS(1010), + [aux_sym__text_token1] = ACTIONS(1012), + [sym__verbatim_begin] = ACTIONS(1014), + }, + [119] = { + [sym__inline] = STATE(647), + [sym__element] = STATE(88), + [sym_emphasis] = STATE(165), + [sym_emphasis_begin] = STATE(899), + [sym_strong] = STATE(165), + [sym_strong_begin] = STATE(96), + [sym__hard_line_break] = STATE(165), + [sym_hard_line_break] = STATE(165), + [sym__smart_punctuation] = STATE(165), + [sym_autolink] = STATE(165), + [sym_highlighted] = STATE(165), + [sym_insert] = STATE(165), + [sym_delete] = STATE(165), + [sym_superscript] = STATE(165), + [sym_subscript] = STATE(165), + [sym_footnote_reference] = STATE(165), + [sym__image] = STATE(165), + [sym_full_reference_image] = STATE(165), + [sym_collapsed_reference_image] = STATE(165), + [sym_inline_image] = STATE(165), + [sym__image_description] = STATE(607), + [sym__link] = STATE(165), + [sym_full_reference_link] = STATE(165), + [sym_collapsed_reference_link] = STATE(165), + [sym_inline_link] = STATE(165), + [sym_link_text] = STATE(611), + [sym__comment_with_spaces] = STATE(165), + [sym_span] = STATE(165), + [sym_raw_inline] = STATE(165), + [sym_math] = STATE(165), + [sym_verbatim] = STATE(165), + [sym__todo_highlights] = STATE(165), + [sym_todo] = STATE(165), + [sym_note] = STATE(165), + [sym__symbol_fallback] = STATE(165), + [aux_sym__text] = STATE(156), + [aux_sym__inline_repeat1] = STATE(88), + [anon_sym_LBRACE_] = ACTIONS(1016), + [anon_sym__] = ACTIONS(1018), + [anon_sym_LBRACE_STAR] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_BSLASH] = ACTIONS(1022), + [sym_quotation_marks] = ACTIONS(1018), + [sym_ellipsis] = ACTIONS(1018), + [sym_em_dash] = ACTIONS(1018), + [sym_en_dash] = ACTIONS(1024), + [sym_backslash_escape] = ACTIONS(1024), + [anon_sym_LT] = ACTIONS(1026), + [anon_sym_LBRACE_EQ] = ACTIONS(1028), + [anon_sym_LBRACE_PLUS] = ACTIONS(1030), + [anon_sym_LBRACE_DASH] = ACTIONS(1032), + [sym_symbol] = ACTIONS(1018), + [anon_sym_LBRACE_CARET] = ACTIONS(1034), + [anon_sym_CARET] = ACTIONS(1034), + [anon_sym_LBRACE_TILDE] = ACTIONS(1036), + [anon_sym_TILDE] = ACTIONS(1036), + [anon_sym_LBRACK_CARET] = ACTIONS(1038), + [anon_sym_BANG_LBRACK] = ACTIONS(1040), + [anon_sym_LBRACK] = ACTIONS(1042), + [anon_sym_LBRACE2] = ACTIONS(1024), + [anon_sym_DOLLAR] = ACTIONS(1044), + [anon_sym_TODO] = ACTIONS(1046), + [anon_sym_WIP] = ACTIONS(1046), + [anon_sym_NOTE] = ACTIONS(1048), + [anon_sym_INFO] = ACTIONS(1048), + [anon_sym_XXX] = ACTIONS(1048), + [sym_fixme] = ACTIONS(1018), + [anon_sym_PIPE] = ACTIONS(1018), + [sym__whitespace1] = ACTIONS(1060), + [sym__newline] = ACTIONS(1062), + [aux_sym__text_token1] = ACTIONS(1054), + [sym__verbatim_begin] = ACTIONS(1056), + }, + [120] = { + [sym__element] = STATE(120), + [sym_emphasis] = STATE(467), + [sym_emphasis_begin] = STATE(900), + [sym_strong] = STATE(467), + [sym_strong_begin] = STATE(92), + [sym__hard_line_break] = STATE(467), + [sym_hard_line_break] = STATE(467), + [sym__smart_punctuation] = STATE(467), + [sym_autolink] = STATE(467), + [sym_highlighted] = STATE(467), + [sym_insert] = STATE(467), + [sym_delete] = STATE(467), + [sym_superscript] = STATE(467), + [sym_subscript] = STATE(467), + [sym_footnote_reference] = STATE(467), + [sym__image] = STATE(467), + [sym_full_reference_image] = STATE(467), + [sym_collapsed_reference_image] = STATE(467), + [sym_inline_image] = STATE(467), + [sym__image_description] = STATE(619), + [sym__link] = STATE(467), + [sym_full_reference_link] = STATE(467), + [sym_collapsed_reference_link] = STATE(467), + [sym_inline_link] = STATE(467), + [sym_link_text] = STATE(620), + [sym__comment_with_spaces] = STATE(467), + [sym_span] = STATE(467), + [sym_raw_inline] = STATE(467), + [sym_math] = STATE(467), + [sym_verbatim] = STATE(467), + [sym__todo_highlights] = STATE(467), + [sym_todo] = STATE(467), + [sym_note] = STATE(467), + [sym__symbol_fallback] = STATE(467), + [aux_sym__text] = STATE(171), + [aux_sym__inline_repeat1] = STATE(120), + [anon_sym_LBRACE_] = ACTIONS(1536), + [anon_sym__] = ACTIONS(1539), + [anon_sym_LBRACE_STAR] = ACTIONS(1542), + [anon_sym_STAR] = ACTIONS(1545), + [anon_sym_BSLASH] = ACTIONS(1548), + [sym_quotation_marks] = ACTIONS(1539), + [sym_ellipsis] = ACTIONS(1539), + [sym_em_dash] = ACTIONS(1539), + [sym_en_dash] = ACTIONS(1551), + [sym_backslash_escape] = ACTIONS(1551), + [anon_sym_LT] = ACTIONS(1554), + [anon_sym_LBRACE_EQ] = ACTIONS(1557), + [anon_sym_LBRACE_PLUS] = ACTIONS(1560), + [anon_sym_LBRACE_DASH] = ACTIONS(1563), + [sym_symbol] = ACTIONS(1539), + [anon_sym_LBRACE_CARET] = ACTIONS(1566), + [anon_sym_CARET] = ACTIONS(1566), + [anon_sym_LBRACE_TILDE] = ACTIONS(1569), + [anon_sym_TILDE] = ACTIONS(1569), + [anon_sym_LBRACK_CARET] = ACTIONS(1572), + [anon_sym_BANG_LBRACK] = ACTIONS(1575), + [anon_sym_LBRACK] = ACTIONS(1578), + [anon_sym_LBRACE2] = ACTIONS(1551), + [anon_sym_DOLLAR] = ACTIONS(1581), + [anon_sym_TODO] = ACTIONS(1584), + [anon_sym_WIP] = ACTIONS(1584), + [anon_sym_NOTE] = ACTIONS(1587), + [anon_sym_INFO] = ACTIONS(1587), + [anon_sym_XXX] = ACTIONS(1587), + [sym_fixme] = ACTIONS(1539), + [anon_sym_PIPE] = ACTIONS(1539), + [sym__whitespace1] = ACTIONS(1590), + [sym__newline] = ACTIONS(1593), + [aux_sym__text_token1] = ACTIONS(1596), + [sym__verbatim_begin] = ACTIONS(1599), + }, + [121] = { + [sym__element] = STATE(120), + [sym_emphasis] = STATE(467), + [sym_emphasis_begin] = STATE(900), + [sym_strong] = STATE(467), + [sym_strong_begin] = STATE(92), + [sym__hard_line_break] = STATE(467), + [sym_hard_line_break] = STATE(467), + [sym__smart_punctuation] = STATE(467), + [sym_autolink] = STATE(467), + [sym_highlighted] = STATE(467), + [sym_insert] = STATE(467), + [sym_delete] = STATE(467), + [sym_superscript] = STATE(467), + [sym_subscript] = STATE(467), + [sym_footnote_reference] = STATE(467), + [sym__image] = STATE(467), + [sym_full_reference_image] = STATE(467), + [sym_collapsed_reference_image] = STATE(467), + [sym_inline_image] = STATE(467), + [sym__image_description] = STATE(619), + [sym__link] = STATE(467), + [sym_full_reference_link] = STATE(467), + [sym_collapsed_reference_link] = STATE(467), + [sym_inline_link] = STATE(467), + [sym_link_text] = STATE(620), + [sym__comment_with_spaces] = STATE(467), + [sym_span] = STATE(467), + [sym_raw_inline] = STATE(467), + [sym_math] = STATE(467), + [sym_verbatim] = STATE(467), + [sym__todo_highlights] = STATE(467), + [sym_todo] = STATE(467), + [sym_note] = STATE(467), + [sym__symbol_fallback] = STATE(467), + [aux_sym__text] = STATE(171), + [aux_sym__inline_repeat1] = STATE(120), + [anon_sym_LBRACE_] = ACTIONS(618), + [anon_sym__] = ACTIONS(550), + [anon_sym_LBRACE_STAR] = ACTIONS(622), + [anon_sym_STAR] = ACTIONS(624), + [anon_sym_BSLASH] = ACTIONS(626), + [sym_quotation_marks] = ACTIONS(620), + [sym_ellipsis] = ACTIONS(620), + [sym_em_dash] = ACTIONS(620), + [sym_en_dash] = ACTIONS(628), + [sym_backslash_escape] = ACTIONS(628), + [anon_sym_LT] = ACTIONS(630), + [anon_sym_LBRACE_EQ] = ACTIONS(632), + [anon_sym_LBRACE_PLUS] = ACTIONS(634), + [anon_sym_LBRACE_DASH] = ACTIONS(636), + [sym_symbol] = ACTIONS(620), + [anon_sym_LBRACE_CARET] = ACTIONS(638), + [anon_sym_CARET] = ACTIONS(638), + [anon_sym_LBRACE_TILDE] = ACTIONS(640), + [anon_sym_TILDE] = ACTIONS(640), + [anon_sym_LBRACK_CARET] = ACTIONS(642), + [anon_sym_BANG_LBRACK] = ACTIONS(644), + [anon_sym_LBRACK] = ACTIONS(646), + [anon_sym_LBRACE2] = ACTIONS(628), + [anon_sym_DOLLAR] = ACTIONS(648), + [anon_sym_TODO] = ACTIONS(650), + [anon_sym_WIP] = ACTIONS(650), + [anon_sym_NOTE] = ACTIONS(652), + [anon_sym_INFO] = ACTIONS(652), + [anon_sym_XXX] = ACTIONS(652), + [sym_fixme] = ACTIONS(620), + [anon_sym_PIPE] = ACTIONS(620), + [sym__whitespace1] = ACTIONS(654), + [sym__newline] = ACTIONS(1602), + [aux_sym__text_token1] = ACTIONS(658), + [sym__verbatim_begin] = ACTIONS(660), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 6, + ACTIONS(47), 1, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE_EQ, - anon_sym_TILDE, - anon_sym_LBRACK, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(1712), 28, - sym__verbatim_begin, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, + ACTIONS(79), 1, anon_sym_TILDE_RBRACE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - anon_sym_PIPE, - sym__whitespace1, - sym__newline, - [356] = 6, - ACTIONS(49), 1, - anon_sym_LBRACE, - ACTIONS(93), 1, - anon_sym_DASH_RBRACE, - ACTIONS(1695), 1, - anon_sym_SPACE, - STATE(282), 1, - aux_sym_emphasis_begin_repeat1, - ACTIONS(1697), 7, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE2, - sym__whitespace1, - aux_sym__text_token1, - ACTIONS(1692), 28, - sym__verbatim_begin, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - anon_sym_PIPE, - sym__newline, - [408] = 6, - ACTIONS(49), 1, - anon_sym_LBRACE, - ACTIONS(93), 1, - ts_builtin_sym_end, - ACTIONS(1703), 1, + ACTIONS(1607), 1, anon_sym_SPACE, - STATE(291), 1, - aux_sym_emphasis_begin_repeat1, - ACTIONS(1705), 7, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE2, - sym__whitespace1, - aux_sym__text_token1, - ACTIONS(1700), 28, - sym__verbatim_begin, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - anon_sym_PIPE, - sym__newline, - [460] = 4, - ACTIONS(1716), 1, - anon_sym_LBRACE_EQ2, - STATE(227), 1, - sym_raw_inline_attribute, - ACTIONS(1710), 8, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE_EQ, - anon_sym_LBRACK, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(1712), 29, - sym__verbatim_begin, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - anon_sym_PIPE, - sym__whitespace1, - sym__newline, - [508] = 5, - ACTIONS(1718), 1, - anon_sym_LBRACE, - STATE(191), 1, - aux_sym__text, - STATE(560), 1, - sym_inline_attribute, - ACTIONS(1722), 6, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(1720), 30, - sym__verbatim_begin, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - anon_sym_PIPE, - sym__whitespace1, - sym__newline, - [558] = 4, - ACTIONS(1708), 1, - sym__id, - STATE(817), 1, - sym_reference_label, - ACTIONS(49), 15, - anon_sym_LBRACE, - anon_sym__, - anon_sym_BSLASH, - sym_em_dash, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE2, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - aux_sym__text_token1, - ACTIONS(93), 22, - sym__verbatim_begin, - ts_builtin_sym_end, - anon_sym_LBRACE_, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_PIPE, - sym__whitespace1, - sym__newline, - [606] = 5, - ACTIONS(1724), 1, - anon_sym_LBRACE, - STATE(185), 1, - aux_sym__text, - STATE(571), 1, - sym_inline_attribute, - ACTIONS(1722), 6, + STATE(370), 1, + aux_sym_strong_begin_repeat1, + ACTIONS(1609), 8, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1720), 30, + ACTIONS(1604), 27, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17767,7 +16842,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -17778,68 +16852,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [656] = 4, - ACTIONS(1708), 1, - sym__id, - STATE(728), 1, - sym_reference_label, - ACTIONS(49), 15, + [52] = 6, + ACTIONS(47), 1, anon_sym_LBRACE, - anon_sym__, + ACTIONS(79), 1, + anon_sym_EQ_RBRACE, + ACTIONS(1607), 1, + anon_sym_SPACE, + STATE(370), 1, + aux_sym_strong_begin_repeat1, + ACTIONS(1609), 7, anon_sym_BSLASH, - sym_em_dash, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - aux_sym__text_token1, - ACTIONS(93), 22, - sym__verbatim_begin, - anon_sym_LBRACE_, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_RBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_PIPE, sym__whitespace1, - sym__newline, - [704] = 5, - ACTIONS(1726), 1, - anon_sym_LBRACE, - STATE(193), 1, - aux_sym__text, - STATE(559), 1, - sym_inline_attribute, - ACTIONS(1722), 7, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_TILDE, - anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1720), 29, + ACTIONS(1604), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -17856,7 +16887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -17867,14 +16898,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [754] = 4, - ACTIONS(1708), 1, + [104] = 4, + ACTIONS(1612), 1, sym__id, - STATE(742), 1, + STATE(891), 1, sym_reference_label, - ACTIONS(49), 15, + ACTIONS(47), 15, anon_sym_LBRACE, anon_sym__, anon_sym_BSLASH, @@ -17890,7 +16920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, aux_sym__text_token1, - ACTIONS(93), 22, + ACTIONS(79), 22, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym_LBRACE_STAR, @@ -17899,9 +16929,9 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -17913,21 +16943,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [802] = 5, - ACTIONS(1728), 1, + [152] = 5, + ACTIONS(1614), 1, anon_sym_LBRACE, - STATE(192), 1, + STATE(186), 1, aux_sym__text, - STATE(564), 1, + STATE(539), 1, sym_inline_attribute, - ACTIONS(1722), 6, + ACTIONS(1618), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1720), 30, + ACTIONS(1616), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -17944,9 +16975,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -17958,60 +16988,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [852] = 4, - ACTIONS(1708), 1, - sym__id, - STATE(834), 1, - sym_reference_label, - ACTIONS(49), 16, - anon_sym_LBRACE, - anon_sym__, - anon_sym_BSLASH, - sym_em_dash, - sym_en_dash, - sym_backslash_escape, - anon_sym_TILDE, - anon_sym_LBRACK, - anon_sym_LBRACE2, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - aux_sym__text_token1, - ACTIONS(93), 21, - sym__verbatim_begin, - anon_sym_LBRACE_, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_PIPE, - sym__whitespace1, - sym__newline, - [900] = 6, - ACTIONS(49), 1, + [202] = 6, + ACTIONS(47), 1, anon_sym_LBRACE, - ACTIONS(93), 1, - ts_builtin_sym_end, - ACTIONS(1695), 1, + ACTIONS(79), 1, + anon_sym_RBRACK2, + ACTIONS(1607), 1, anon_sym_SPACE, - STATE(282), 1, - aux_sym_emphasis_begin_repeat1, - ACTIONS(1697), 7, + STATE(370), 1, + aux_sym_strong_begin_repeat1, + ACTIONS(1609), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, @@ -18019,7 +17005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1692), 28, + ACTIONS(1604), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -18048,21 +17034,22 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [952] = 4, - ACTIONS(1730), 1, + [254] = 4, + ACTIONS(1624), 1, anon_sym_LBRACE_EQ2, - STATE(418), 1, + STATE(356), 1, sym_raw_inline_attribute, - ACTIONS(1710), 8, + ACTIONS(1620), 9, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE_EQ, + anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1712), 29, + ACTIONS(1622), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -18078,9 +17065,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -18092,105 +17078,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [1000] = 4, - ACTIONS(1732), 1, - anon_sym_LBRACE_EQ2, - STATE(262), 1, - sym_raw_inline_attribute, - ACTIONS(1710), 8, + [302] = 4, + ACTIONS(1612), 1, + sym__id, + STATE(739), 1, + sym_reference_label, + ACTIONS(47), 16, anon_sym_LBRACE, + anon_sym__, anon_sym_BSLASH, + sym_em_dash, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE_EQ, + anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(1712), 29, - sym__verbatim_begin, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, anon_sym_NOTE, anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, - sym__whitespace1, - sym__newline, - [1048] = 4, - ACTIONS(1734), 1, - anon_sym_LBRACE_EQ2, - STATE(437), 1, - sym_raw_inline_attribute, - ACTIONS(1710), 8, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE_EQ, - anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1712), 29, + ACTIONS(79), 21, sym__verbatim_begin, anon_sym_LBRACE_, - anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, sym_ellipsis, - sym_em_dash, anon_sym_LT, + anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, anon_sym_PIPE, sym__whitespace1, sym__newline, - [1096] = 6, - ACTIONS(49), 1, + [350] = 6, + ACTIONS(47), 1, anon_sym_LBRACE, - ACTIONS(93), 1, - aux_sym_emphasis_end_token1, - ACTIONS(1703), 1, + ACTIONS(79), 1, + anon_sym_RBRACK, + ACTIONS(1607), 1, anon_sym_SPACE, - STATE(291), 1, - aux_sym_emphasis_begin_repeat1, - ACTIONS(1705), 8, - anon_sym__, + STATE(370), 1, + aux_sym_strong_begin_repeat1, + ACTIONS(1609), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, @@ -18198,49 +17139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1700), 27, - sym__verbatim_begin, - anon_sym_LBRACE_, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - anon_sym_PIPE, - sym__newline, - [1148] = 4, - ACTIONS(1736), 1, - anon_sym_LBRACE_EQ2, - STATE(283), 1, - sym_raw_inline_attribute, - ACTIONS(1710), 8, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE_EQ, - anon_sym_LBRACK, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(1712), 29, + ACTIONS(1604), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -18250,7 +17149,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_EQ_RBRACE, + anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -18268,23 +17167,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [1196] = 5, - ACTIONS(1738), 1, + [402] = 5, + ACTIONS(1626), 1, anon_sym_LBRACE, - STATE(190), 1, + STATE(161), 1, aux_sym__text, - STATE(551), 1, + STATE(494), 1, sym_inline_attribute, - ACTIONS(1722), 6, + ACTIONS(1618), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1720), 30, + ACTIONS(1616), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -18296,6 +17194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -18304,7 +17203,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -18315,65 +17213,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [1246] = 4, - ACTIONS(1708), 1, - sym__id, - STATE(783), 1, - sym_reference_label, - ACTIONS(49), 15, - anon_sym_LBRACE, - anon_sym__, - anon_sym_BSLASH, - sym_em_dash, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE2, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - aux_sym__text_token1, - ACTIONS(93), 22, - sym__verbatim_begin, - anon_sym_LBRACE_, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, - anon_sym_DOLLAR, - anon_sym_PIPE, - sym__whitespace1, - sym__newline, - [1294] = 5, - ACTIONS(1740), 1, + [452] = 5, + ACTIONS(1628), 1, anon_sym_LBRACE, - STATE(195), 1, + STATE(173), 1, aux_sym__text, - STATE(546), 1, + STATE(538), 1, sym_inline_attribute, - ACTIONS(1722), 6, + ACTIONS(1618), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1720), 30, + ACTIONS(1616), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -18384,8 +17238,8 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -18404,21 +17258,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [1344] = 5, - ACTIONS(1742), 1, + [502] = 5, + ACTIONS(1630), 1, anon_sym_LBRACE, - STATE(199), 1, + STATE(166), 1, aux_sym__text, - STATE(555), 1, + STATE(519), 1, sym_inline_attribute, - ACTIONS(1722), 6, + ACTIONS(1618), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1720), 30, + ACTIONS(1616), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -18449,25 +17303,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [1394] = 6, - ACTIONS(49), 1, + [552] = 6, + ACTIONS(47), 1, anon_sym_LBRACE, - ACTIONS(93), 1, - anon_sym_TILDE_RBRACE, - ACTIONS(1703), 1, + ACTIONS(79), 1, + anon_sym_DASH_RBRACE, + ACTIONS(1607), 1, anon_sym_SPACE, - STATE(291), 1, - aux_sym_emphasis_begin_repeat1, - ACTIONS(1705), 8, + STATE(370), 1, + aux_sym_strong_begin_repeat1, + ACTIONS(1609), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1700), 27, + ACTIONS(1604), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -18484,6 +17337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -18495,25 +17349,21 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [1446] = 6, - ACTIONS(49), 1, + [604] = 5, + ACTIONS(1632), 1, anon_sym_LBRACE, - ACTIONS(93), 1, - anon_sym_TILDE_RBRACE, - ACTIONS(1695), 1, - anon_sym_SPACE, - STATE(282), 1, - aux_sym_emphasis_begin_repeat1, - ACTIONS(1697), 8, + STATE(179), 1, + aux_sym__text, + STATE(535), 1, + sym_inline_attribute, + ACTIONS(1618), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1692), 27, + ACTIONS(1616), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -18530,8 +17380,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -18540,57 +17392,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [1498] = 4, - ACTIONS(1744), 1, - anon_sym_LBRACE_EQ2, - STATE(314), 1, - sym_raw_inline_attribute, - ACTIONS(1710), 9, + [654] = 4, + ACTIONS(1612), 1, + sym__id, + STATE(773), 1, + sym_reference_label, + ACTIONS(47), 15, anon_sym_LBRACE, + anon_sym__, anon_sym_BSLASH, + sym_em_dash, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE_EQ, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, aux_sym__text_token1, - ACTIONS(1712), 28, + ACTIONS(79), 22, sym__verbatim_begin, anon_sym_LBRACE_, - anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, sym_ellipsis, - sym_em_dash, anon_sym_LT, + anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, anon_sym_PIPE, sym__whitespace1, sym__newline, - [1546] = 4, - ACTIONS(1708), 1, + [702] = 4, + ACTIONS(1612), 1, sym__id, - STATE(747), 1, + STATE(808), 1, sym_reference_label, - ACTIONS(49), 16, + ACTIONS(47), 15, anon_sym_LBRACE, anon_sym__, anon_sym_BSLASH, @@ -18605,12 +17458,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(93), 21, + ACTIONS(79), 22, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -18628,36 +17480,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [1594] = 6, - ACTIONS(49), 1, + [750] = 4, + ACTIONS(1612), 1, + sym__id, + STATE(855), 1, + sym_reference_label, + ACTIONS(47), 15, anon_sym_LBRACE, - ACTIONS(93), 1, - anon_sym_DASH_RBRACE, - ACTIONS(1703), 1, - anon_sym_SPACE, - STATE(291), 1, - aux_sym_emphasis_begin_repeat1, - ACTIONS(1705), 7, + anon_sym__, anon_sym_BSLASH, + sym_em_dash, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, aux_sym__text_token1, - ACTIONS(1700), 28, + ACTIONS(79), 22, sym__verbatim_begin, anon_sym_LBRACE_, - anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, sym_ellipsis, - sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -18667,46 +17523,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [1646] = 5, - ACTIONS(1746), 1, + [798] = 4, + ACTIONS(1634), 1, + anon_sym_LBRACE_EQ2, + STATE(306), 1, + sym_raw_inline_attribute, + ACTIONS(1620), 9, anon_sym_LBRACE, - STATE(180), 1, - aux_sym__text, - STATE(569), 1, - sym_inline_attribute, - ACTIONS(1722), 8, - anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE_EQ, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1720), 28, + ACTIONS(1622), 28, sym__verbatim_begin, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -18719,23 +17568,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [1696] = 5, - ACTIONS(1748), 1, + [846] = 4, + ACTIONS(1636), 1, + anon_sym_LBRACE_EQ2, + STATE(222), 1, + sym_raw_inline_attribute, + ACTIONS(1620), 8, anon_sym_LBRACE, - STATE(181), 1, - aux_sym__text, - STATE(565), 1, - sym_inline_attribute, - ACTIONS(1722), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, + anon_sym_LBRACE_EQ, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1720), 29, + ACTIONS(1622), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -18745,12 +17594,12 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -18765,30 +17614,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [1746] = 6, - ACTIONS(49), 1, + [894] = 6, + ACTIONS(47), 1, anon_sym_LBRACE, - ACTIONS(93), 1, - anon_sym_CARET_RBRACE, - ACTIONS(1695), 1, + ACTIONS(79), 1, + aux_sym_strong_end_token1, + ACTIONS(1607), 1, anon_sym_SPACE, - STATE(282), 1, - aux_sym_emphasis_begin_repeat1, - ACTIONS(1697), 8, + STATE(370), 1, + aux_sym_strong_begin_repeat1, + ACTIONS(1609), 8, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1692), 27, + ACTIONS(1604), 27, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -18798,6 +17646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, + anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -18811,32 +17660,34 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [1798] = 4, - ACTIONS(1750), 1, - anon_sym_LBRACE_EQ2, - STATE(470), 1, - sym_raw_inline_attribute, - ACTIONS(1710), 10, + [946] = 6, + ACTIONS(47), 1, anon_sym_LBRACE, - anon_sym__, + ACTIONS(79), 1, + ts_builtin_sym_end, + ACTIONS(1607), 1, + anon_sym_SPACE, + STATE(370), 1, + aux_sym_strong_begin_repeat1, + ACTIONS(1609), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE_EQ, anon_sym_LBRACK, anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1712), 27, + ACTIONS(1604), 28, sym__verbatim_begin, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, + anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -18855,19 +17706,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [1846] = 4, - ACTIONS(1708), 1, + [998] = 4, + ACTIONS(1612), 1, sym__id, - STATE(879), 1, + STATE(816), 1, sym_reference_label, - ACTIONS(49), 16, + ACTIONS(47), 15, anon_sym_LBRACE, anon_sym__, anon_sym_BSLASH, sym_em_dash, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, anon_sym_TODO, @@ -18877,7 +17727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, aux_sym__text_token1, - ACTIONS(93), 21, + ACTIONS(79), 22, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym_LBRACE_STAR, @@ -18888,9 +17738,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -18899,34 +17750,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [1894] = 6, - ACTIONS(49), 1, + [1046] = 4, + ACTIONS(1638), 1, + anon_sym_LBRACE_EQ2, + STATE(422), 1, + sym_raw_inline_attribute, + ACTIONS(1620), 8, anon_sym_LBRACE, - ACTIONS(93), 1, - aux_sym_strong_end_token1, - ACTIONS(1695), 1, - anon_sym_SPACE, - STATE(282), 1, - aux_sym_emphasis_begin_repeat1, - ACTIONS(1697), 8, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE_EQ, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1692), 27, + ACTIONS(1622), 29, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -18944,25 +17792,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [1946] = 6, - ACTIONS(49), 1, + [1094] = 5, + ACTIONS(1640), 1, anon_sym_LBRACE, - ACTIONS(93), 1, - anon_sym_EQ_RBRACE, - ACTIONS(1695), 1, - anon_sym_SPACE, - STATE(282), 1, - aux_sym_emphasis_begin_repeat1, - ACTIONS(1697), 7, + STATE(172), 1, + aux_sym__text, + STATE(547), 1, + sym_inline_attribute, + ACTIONS(1618), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1692), 28, + ACTIONS(1616), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -18981,6 +17827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -18990,13 +17837,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [1998] = 4, - ACTIONS(1752), 1, + [1144] = 4, + ACTIONS(1642), 1, anon_sym_LBRACE_EQ2, - STATE(439), 1, + STATE(268), 1, sym_raw_inline_attribute, - ACTIONS(1710), 8, + ACTIONS(1620), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -19005,9 +17853,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1712), 29, + ACTIONS(1622), 29, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19016,6 +17863,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, sym_em_dash, anon_sym_LT, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -19035,104 +17883,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [2046] = 4, - ACTIONS(1708), 1, - sym__id, - STATE(778), 1, - sym_reference_label, - ACTIONS(49), 15, + [1192] = 5, + ACTIONS(1644), 1, anon_sym_LBRACE, - anon_sym__, + STATE(174), 1, + aux_sym__text, + STATE(530), 1, + sym_inline_attribute, + ACTIONS(1618), 7, anon_sym_BSLASH, - sym_em_dash, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, aux_sym__text_token1, - ACTIONS(93), 22, + ACTIONS(1616), 29, sym__verbatim_begin, anon_sym_LBRACE_, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, sym_ellipsis, + sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, - anon_sym_PIPE, - sym__whitespace1, - sym__newline, - [2094] = 4, - ACTIONS(1708), 1, - sym__id, - STATE(764), 1, - sym_reference_label, - ACTIONS(49), 17, - anon_sym_LBRACE, - anon_sym__, - anon_sym_STAR, - anon_sym_BSLASH, - sym_em_dash, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE2, anon_sym_TODO, anon_sym_WIP, anon_sym_NOTE, anon_sym_INFO, anon_sym_XXX, sym_fixme, - sym__whitespace1, - aux_sym__text_token1, - ACTIONS(93), 20, - sym__verbatim_begin, - anon_sym_LBRACE_, - anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, - sym_quotation_marks, - sym_ellipsis, - anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [2142] = 6, - ACTIONS(49), 1, + [1242] = 6, + ACTIONS(47), 1, anon_sym_LBRACE, - ACTIONS(93), 1, - anon_sym_RBRACK2, - ACTIONS(1703), 1, + ACTIONS(79), 1, + anon_sym_PLUS_RBRACE, + ACTIONS(1607), 1, anon_sym_SPACE, - STATE(291), 1, - aux_sym_emphasis_begin_repeat1, - ACTIONS(1705), 7, + STATE(370), 1, + aux_sym_strong_begin_repeat1, + ACTIONS(1609), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, @@ -19140,7 +17945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1700), 28, + ACTIONS(1604), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -19169,24 +17974,21 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [2194] = 6, - ACTIONS(49), 1, + [1294] = 4, + ACTIONS(1646), 1, + anon_sym_LBRACE_EQ2, + STATE(406), 1, + sym_raw_inline_attribute, + ACTIONS(1620), 8, anon_sym_LBRACE, - ACTIONS(93), 1, - anon_sym_PLUS_RBRACE, - ACTIONS(1695), 1, - anon_sym_SPACE, - STATE(282), 1, - aux_sym_emphasis_begin_repeat1, - ACTIONS(1697), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE_EQ, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1692), 28, + ACTIONS(1622), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -19196,7 +17998,6 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -19205,6 +18006,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -19214,79 +18016,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [2246] = 6, - ACTIONS(49), 1, + [1342] = 4, + ACTIONS(1612), 1, + sym__id, + STATE(776), 1, + sym_reference_label, + ACTIONS(47), 16, anon_sym_LBRACE, - ACTIONS(93), 1, - anon_sym_RBRACK2, - ACTIONS(1695), 1, - anon_sym_SPACE, - STATE(282), 1, - aux_sym_emphasis_begin_repeat1, - ACTIONS(1697), 7, + anon_sym__, anon_sym_BSLASH, + sym_em_dash, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, aux_sym__text_token1, - ACTIONS(1692), 28, + ACTIONS(79), 21, sym__verbatim_begin, anon_sym_LBRACE_, - anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, sym_ellipsis, - sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [2298] = 6, - ACTIONS(49), 1, + [1390] = 4, + ACTIONS(1612), 1, + sym__id, + STATE(713), 1, + sym_reference_label, + ACTIONS(47), 15, anon_sym_LBRACE, - ACTIONS(93), 1, - anon_sym_PLUS_RBRACE, - ACTIONS(1703), 1, - anon_sym_SPACE, - STATE(291), 1, - aux_sym_emphasis_begin_repeat1, - ACTIONS(1705), 7, + anon_sym__, anon_sym_BSLASH, + sym_em_dash, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, aux_sym__text_token1, - ACTIONS(1700), 28, + ACTIONS(79), 22, sym__verbatim_begin, anon_sym_LBRACE_, - anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, sym_ellipsis, - sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, @@ -19296,37 +18099,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, + anon_sym_LBRACK_CARET, + anon_sym_RBRACK, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [2350] = 6, - ACTIONS(49), 1, + [1438] = 5, + ACTIONS(1648), 1, anon_sym_LBRACE, - ACTIONS(93), 1, - anon_sym_CARET_RBRACE, - ACTIONS(1703), 1, - anon_sym_SPACE, - STATE(291), 1, - aux_sym_emphasis_begin_repeat1, - ACTIONS(1705), 8, + STATE(188), 1, + aux_sym__text, + STATE(546), 1, + sym_inline_attribute, + ACTIONS(1618), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1700), 27, + ACTIONS(1616), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19340,6 +18136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, + anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -19352,35 +18149,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [2402] = 4, - ACTIONS(1754), 1, + [1488] = 4, + ACTIONS(1650), 1, anon_sym_LBRACE_EQ2, - STATE(522), 1, + STATE(256), 1, sym_raw_inline_attribute, - ACTIONS(1710), 10, + ACTIONS(1620), 8, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE_EQ, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1712), 27, + ACTIONS(1622), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -19396,34 +18193,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [2450] = 5, - ACTIONS(1756), 1, + [1536] = 4, + ACTIONS(1652), 1, + anon_sym_LBRACE_EQ2, + STATE(407), 1, + sym_raw_inline_attribute, + ACTIONS(1620), 8, anon_sym_LBRACE, - STATE(173), 1, - aux_sym__text, - STATE(557), 1, - sym_inline_attribute, - ACTIONS(1722), 8, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE_EQ, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1720), 28, + ACTIONS(1622), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -19433,6 +18228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -19441,72 +18237,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__newline, - [2500] = 3, - ACTIONS(1758), 1, - aux_sym_autolink_token1, - ACTIONS(93), 3, - sym__verbatim_begin, sym__whitespace1, sym__newline, - ACTIONS(49), 34, + [1584] = 4, + ACTIONS(1612), 1, + sym__id, + STATE(729), 1, + sym_reference_label, + ACTIONS(47), 17, anon_sym_LBRACE, - anon_sym_LBRACE_, anon_sym__, - anon_sym_LBRACE_STAR, anon_sym_STAR, anon_sym_BSLASH, - sym_quotation_marks, - sym_ellipsis, sym_em_dash, sym_en_dash, sym_backslash_escape, - anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, anon_sym_LBRACK, anon_sym_LBRACE2, - anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, anon_sym_NOTE, anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, - aux_sym__text_token1, - [2545] = 4, - ACTIONS(1764), 1, - aux_sym__text_token1, - STATE(173), 1, - aux_sym__text, - ACTIONS(1760), 8, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE2, sym__whitespace1, - ACTIONS(1762), 28, + aux_sym__text_token1, + ACTIONS(79), 20, sym__verbatim_begin, anon_sym_LBRACE_, - anon_sym__, anon_sym_LBRACE_STAR, aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, - sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, @@ -19519,27 +18281,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, anon_sym_PIPE, sym__newline, - [2592] = 4, - ACTIONS(1740), 1, + [1632] = 6, + ACTIONS(47), 1, anon_sym_LBRACE, - STATE(546), 1, - sym_inline_attribute, - ACTIONS(1722), 6, + ACTIONS(79), 1, + anon_sym_CARET_RBRACE, + ACTIONS(1607), 1, + anon_sym_SPACE, + STATE(370), 1, + aux_sym_strong_begin_repeat1, + ACTIONS(1609), 8, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1720), 30, + ACTIONS(1604), 27, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -19551,11 +18313,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -19568,27 +18328,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [2639] = 4, - ACTIONS(1748), 1, + [1684] = 5, + ACTIONS(1654), 1, anon_sym_LBRACE, - STATE(565), 1, + STATE(159), 1, + aux_sym__text, + STATE(531), 1, sym_inline_attribute, - ACTIONS(1722), 7, + ACTIONS(1618), 8, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1720), 29, + ACTIONS(1616), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -19598,7 +18360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -19611,41 +18373,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, - sym__newline, - [2686] = 3, - ACTIONS(1767), 1, - aux_sym_autolink_token1, - ACTIONS(93), 3, - sym__verbatim_begin, - sym__whitespace1, sym__newline, - ACTIONS(49), 34, + [1734] = 4, + ACTIONS(1656), 1, + anon_sym_LBRACE_EQ2, + STATE(456), 1, + sym_raw_inline_attribute, + ACTIONS(1620), 10, anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACE_EQ, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1622), 27, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_BSLASH, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, - sym_en_dash, - sym_backslash_escape, anon_sym_LT, - anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, - anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LBRACK, - anon_sym_LBRACE2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -19654,14 +18417,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - aux_sym__text_token1, - [2731] = 3, - ACTIONS(1769), 1, + sym__newline, + [1782] = 3, + ACTIONS(1658), 1, aux_sym_autolink_token1, - ACTIONS(93), 2, + ACTIONS(79), 2, sym__verbatim_begin, sym__newline, - ACTIONS(49), 35, + ACTIONS(47), 35, anon_sym_LBRACE, anon_sym_LBRACE_, anon_sym__, @@ -19697,55 +18460,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, aux_sym__text_token1, - [2776] = 4, - ACTIONS(1738), 1, - anon_sym_LBRACE, - STATE(551), 1, - sym_inline_attribute, - ACTIONS(1722), 6, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE2, + [1827] = 4, + ACTIONS(1664), 1, aux_sym__text_token1, - ACTIONS(1720), 30, - sym__verbatim_begin, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - anon_sym_PIPE, - sym__whitespace1, - sym__newline, - [2823] = 4, - ACTIONS(1756), 1, + STATE(159), 1, + aux_sym__text, + ACTIONS(1660), 8, anon_sym_LBRACE, - STATE(557), 1, - sym_inline_attribute, - ACTIONS(1722), 8, anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, @@ -19753,8 +18474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, sym__whitespace1, - aux_sym__text_token1, - ACTIONS(1720), 28, + ACTIONS(1662), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -19783,29 +18503,25 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [2870] = 4, - ACTIONS(1771), 1, - aux_sym__text_token1, - STATE(180), 1, - aux_sym__text, - ACTIONS(1760), 8, - anon_sym_LBRACE, - anon_sym__, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE2, - sym__whitespace1, - ACTIONS(1762), 28, + [1874] = 3, + ACTIONS(1667), 1, + aux_sym_autolink_token1, + ACTIONS(79), 3, sym__verbatim_begin, + sym__whitespace1, + sym__newline, + ACTIONS(47), 34, + anon_sym_LBRACE, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, + sym_en_dash, + sym_backslash_escape, anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, @@ -19817,6 +18533,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK, + anon_sym_RBRACK2, + anon_sym_LBRACE2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -19825,21 +18544,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__newline, - [2917] = 4, - ACTIONS(1774), 1, aux_sym__text_token1, - STATE(181), 1, + [1919] = 4, + ACTIONS(1669), 1, + aux_sym__text_token1, + STATE(161), 1, aux_sym__text, - ACTIONS(1760), 7, + ACTIONS(1660), 6, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, - ACTIONS(1762), 29, + ACTIONS(1662), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -19851,10 +18569,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -19869,28 +18588,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [2964] = 4, - ACTIONS(1726), 1, - anon_sym_LBRACE, - STATE(559), 1, - sym_inline_attribute, - ACTIONS(1722), 7, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_TILDE, - anon_sym_LBRACK, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(1720), 29, + [1966] = 3, + ACTIONS(1672), 1, + aux_sym_autolink_token1, + ACTIONS(79), 3, sym__verbatim_begin, + sym__whitespace1, + sym__newline, + ACTIONS(47), 34, + anon_sym_LBRACE, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, + sym_en_dash, + sym_backslash_escape, anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, @@ -19898,10 +18614,13 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK, + anon_sym_LBRACE2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -19910,21 +18629,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, - sym__newline, - [3011] = 4, - ACTIONS(1742), 1, + aux_sym__text_token1, + [2011] = 4, + ACTIONS(1644), 1, anon_sym_LBRACE, - STATE(555), 1, + STATE(530), 1, sym_inline_attribute, - ACTIONS(1722), 6, + ACTIONS(1618), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1720), 30, + ACTIONS(1616), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -19937,10 +18656,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -19955,14 +18673,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [3058] = 3, - ACTIONS(1777), 1, + [2058] = 3, + ACTIONS(1674), 1, aux_sym_autolink_token1, - ACTIONS(93), 3, + ACTIONS(79), 3, sym__verbatim_begin, sym__whitespace1, sym__newline, - ACTIONS(49), 34, + ACTIONS(47), 34, anon_sym_LBRACE, anon_sym_LBRACE_, anon_sym__, @@ -19976,6 +18694,7 @@ static const uint16_t ts_small_parse_table[] = { sym_backslash_escape, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -19983,7 +18702,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, - anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_LBRACK, @@ -19997,25 +18715,26 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, aux_sym__text_token1, - [3103] = 4, - ACTIONS(1779), 1, - aux_sym__text_token1, - STATE(185), 1, - aux_sym__text, - ACTIONS(1760), 6, + [2103] = 4, + ACTIONS(1654), 1, anon_sym_LBRACE, + STATE(531), 1, + sym_inline_attribute, + ACTIONS(1618), 8, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - ACTIONS(1762), 30, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1616), 28, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -20038,27 +18757,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, - sym__newline, - [3150] = 3, - ACTIONS(1782), 1, - aux_sym_autolink_token1, - ACTIONS(93), 3, - sym__verbatim_begin, - sym__whitespace1, sym__newline, - ACTIONS(49), 34, + [2150] = 4, + ACTIONS(1676), 1, + aux_sym__text_token1, + STATE(166), 1, + aux_sym__text, + ACTIONS(1660), 6, anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + ACTIONS(1662), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, - anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, - sym_en_dash, - sym_backslash_escape, anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, @@ -20071,8 +18791,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LBRACK, - anon_sym_LBRACE2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -20080,30 +18798,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, - aux_sym__text_token1, - [3195] = 3, - ACTIONS(1784), 1, - aux_sym_autolink_token1, - ACTIONS(93), 3, - sym__verbatim_begin, + anon_sym_PIPE, sym__whitespace1, sym__newline, - ACTIONS(49), 34, + [2197] = 4, + ACTIONS(1626), 1, anon_sym_LBRACE, + STATE(494), 1, + sym_inline_attribute, + ACTIONS(1618), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1616), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, - anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, - sym_en_dash, - sym_backslash_escape, anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -20112,9 +18834,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LBRACK, - anon_sym_RBRACK2, - anon_sym_LBRACE2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -20123,18 +18842,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - aux_sym__text_token1, - [3240] = 3, - ACTIONS(1786), 1, + sym__whitespace1, + sym__newline, + [2244] = 3, + ACTIONS(1679), 1, aux_sym_autolink_token1, - ACTIONS(93), 2, + ACTIONS(79), 3, sym__verbatim_begin, + sym__whitespace1, sym__newline, - ACTIONS(49), 35, + ACTIONS(47), 34, anon_sym_LBRACE, anon_sym_LBRACE_, anon_sym__, - aux_sym_emphasis_end_token1, anon_sym_LBRACE_STAR, anon_sym_STAR, anon_sym_BSLASH, @@ -20146,6 +18866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -20164,15 +18885,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, aux_sym__text_token1, - [3285] = 4, - ACTIONS(1746), 1, + [2289] = 5, + ACTIONS(47), 1, anon_sym_LBRACE, - STATE(569), 1, - sym_inline_attribute, - ACTIONS(1722), 8, - anon_sym__, + ACTIONS(1607), 1, + anon_sym_SPACE, + STATE(370), 1, + aux_sym_strong_begin_repeat1, + ACTIONS(1609), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, @@ -20180,10 +18901,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1720), 28, + ACTIONS(1604), 28, sym__verbatim_begin, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -20209,27 +18930,34 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [3332] = 4, - ACTIONS(1788), 1, - aux_sym__text_token1, - STATE(190), 1, - aux_sym__text, - ACTIONS(1760), 6, + [2338] = 4, + ACTIONS(1612), 1, + sym__id, + STATE(751), 1, + sym_reference_label, + ACTIONS(47), 15, anon_sym_LBRACE, + anon_sym__, anon_sym_BSLASH, + sym_em_dash, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - ACTIONS(1762), 30, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + aux_sym__text_token1, + ACTIONS(79), 21, sym__verbatim_begin, anon_sym_LBRACE_, - anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, sym_ellipsis, - sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, @@ -20241,30 +18969,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, anon_sym_PIPE, sym__whitespace1, sym__newline, - [3379] = 4, - ACTIONS(1791), 1, - aux_sym__text_token1, - STATE(191), 1, - aux_sym__text, - ACTIONS(1760), 6, + [2385] = 5, + ACTIONS(1681), 1, anon_sym_LBRACE, + STATE(490), 1, + aux_sym__text, + STATE(552), 1, + sym_inline_attribute, + ACTIONS(1618), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - ACTIONS(1762), 30, + aux_sym__text_token1, + ACTIONS(1616), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -20275,7 +18998,6 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -20295,19 +19017,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [3426] = 4, - ACTIONS(1794), 1, + [2434] = 4, + ACTIONS(1683), 1, aux_sym__text_token1, - STATE(192), 1, + STATE(172), 1, aux_sym__text, - ACTIONS(1760), 6, + ACTIONS(1660), 6, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - ACTIONS(1762), 30, + ACTIONS(1662), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -20338,20 +19060,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [3473] = 4, - ACTIONS(1797), 1, + [2481] = 4, + ACTIONS(1686), 1, aux_sym__text_token1, - STATE(193), 1, + STATE(173), 1, aux_sym__text, - ACTIONS(1760), 7, + ACTIONS(1660), 6, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, - ACTIONS(1762), 29, + ACTIONS(1662), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -20362,13 +19083,14 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -20381,39 +19103,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [3520] = 3, - ACTIONS(1800), 1, - aux_sym_autolink_token1, - ACTIONS(93), 3, - sym__verbatim_begin, - sym__whitespace1, - sym__newline, - ACTIONS(49), 34, + [2528] = 4, + ACTIONS(1689), 1, + aux_sym__text_token1, + STATE(174), 1, + aux_sym__text, + ACTIONS(1660), 7, anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_CARET, + anon_sym_LBRACK, + anon_sym_LBRACE2, + ACTIONS(1662), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, - anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, - sym_en_dash, - sym_backslash_escape, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LBRACK, - anon_sym_LBRACE2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -20422,20 +19144,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - aux_sym__text_token1, - [3565] = 4, - ACTIONS(1802), 1, - aux_sym__text_token1, - STATE(195), 1, - aux_sym__text, - ACTIONS(1760), 6, + sym__whitespace1, + sym__newline, + [2575] = 4, + ACTIONS(1614), 1, anon_sym_LBRACE, + STATE(539), 1, + sym_inline_attribute, + ACTIONS(1618), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, - ACTIONS(1762), 30, + aux_sym__text_token1, + ACTIONS(1616), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -20447,13 +19171,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -20466,15 +19189,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [3612] = 3, - ACTIONS(1805), 1, + [2622] = 3, + ACTIONS(1692), 1, aux_sym_autolink_token1, - ACTIONS(93), 4, + ACTIONS(79), 4, sym__verbatim_begin, ts_builtin_sym_end, sym__whitespace1, sym__newline, - ACTIONS(49), 33, + ACTIONS(47), 33, anon_sym_LBRACE, anon_sym_LBRACE_, anon_sym__, @@ -20508,19 +19231,21 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, aux_sym__text_token1, - [3657] = 4, - ACTIONS(1718), 1, + [2667] = 4, + ACTIONS(1694), 1, + anon_sym_LBRACE_EQ2, + STATE(506), 1, + sym_raw_inline_attribute, + ACTIONS(1620), 8, anon_sym_LBRACE, - STATE(560), 1, - sym_inline_attribute, - ACTIONS(1722), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE_EQ, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1720), 30, + ACTIONS(1622), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -20530,8 +19255,6 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -20551,28 +19274,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [3704] = 4, - ACTIONS(1724), 1, - anon_sym_LBRACE, - STATE(571), 1, - sym_inline_attribute, - ACTIONS(1722), 6, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(1720), 30, + [2714] = 3, + ACTIONS(1696), 1, + aux_sym_autolink_token1, + ACTIONS(79), 3, sym__verbatim_begin, - ts_builtin_sym_end, + sym__whitespace1, + sym__newline, + ACTIONS(47), 34, + anon_sym_LBRACE, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, + sym_en_dash, + sym_backslash_escape, anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, @@ -20582,8 +19302,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK, + anon_sym_LBRACE2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -20592,21 +19315,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, - sym__newline, - [3751] = 4, - ACTIONS(1807), 1, aux_sym__text_token1, - STATE(199), 1, + [2759] = 4, + ACTIONS(1698), 1, + aux_sym__text_token1, + STATE(179), 1, aux_sym__text, - ACTIONS(1760), 6, + ACTIONS(1660), 6, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - ACTIONS(1762), 30, + ACTIONS(1662), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -20619,7 +19341,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -20627,6 +19348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -20637,19 +19359,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [3798] = 4, - ACTIONS(1728), 1, + [2806] = 4, + ACTIONS(1630), 1, anon_sym_LBRACE, - STATE(564), 1, + STATE(519), 1, sym_inline_attribute, - ACTIONS(1722), 6, + ACTIONS(1618), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1720), 30, + ACTIONS(1616), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -20662,13 +19384,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -20680,14 +19402,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [3845] = 3, - ACTIONS(1810), 1, + [2853] = 3, + ACTIONS(1701), 1, aux_sym_autolink_token1, - ACTIONS(93), 3, + ACTIONS(79), 3, sym__verbatim_begin, sym__whitespace1, sym__newline, - ACTIONS(49), 34, + ACTIONS(47), 34, anon_sym_LBRACE, anon_sym_LBRACE_, anon_sym__, @@ -20722,21 +19444,22 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, aux_sym__text_token1, - [3890] = 2, - ACTIONS(1812), 9, + [2898] = 4, + ACTIONS(1640), 1, anon_sym_LBRACE, - anon_sym__, + STATE(547), 1, + sym_inline_attribute, + ACTIONS(1618), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1814), 28, + ACTIONS(1616), 30, sym__verbatim_begin, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -20752,6 +19475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -20761,72 +19485,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [3932] = 4, - ACTIONS(1820), 1, - anon_sym_LBRACE2, - STATE(523), 1, - sym_comment, - ACTIONS(1818), 5, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - aux_sym__text_token1, - ACTIONS(1816), 30, + [2945] = 3, + ACTIONS(1703), 1, + aux_sym_autolink_token1, + ACTIONS(79), 3, sym__verbatim_begin, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [3978] = 2, - ACTIONS(1823), 7, + ACTIONS(47), 34, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(1825), 30, - sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, + sym_en_dash, + sym_backslash_escape, anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -20834,6 +19518,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK, + anon_sym_LBRACE2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -20842,21 +19528,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, - sym__newline, - [4020] = 4, - ACTIONS(1827), 1, - anon_sym_LBRACE2, - STATE(208), 1, - sym_comment, - ACTIONS(1818), 5, + aux_sym__text_token1, + [2990] = 4, + ACTIONS(1648), 1, + anon_sym_LBRACE, + STATE(546), 1, + sym_inline_attribute, + ACTIONS(1618), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1816), 30, + ACTIONS(1616), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20867,7 +19554,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -20886,16 +19572,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [4066] = 2, - ACTIONS(1812), 7, + [3037] = 4, + ACTIONS(1632), 1, anon_sym_LBRACE, + STATE(535), 1, + sym_inline_attribute, + ACTIONS(1618), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1814), 30, + ACTIONS(1616), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -20907,7 +19596,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -20916,6 +19604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -20926,19 +19615,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [4108] = 4, - ACTIONS(49), 1, + [3084] = 4, + ACTIONS(1705), 1, + aux_sym__text_token1, + STATE(186), 1, + aux_sym__text, + ACTIONS(1660), 7, anon_sym_LBRACE, - ACTIONS(93), 1, - ts_builtin_sym_end, - ACTIONS(1697), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(1692), 29, + ACTIONS(1662), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -20955,7 +19645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -20968,16 +19658,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [4154] = 2, - ACTIONS(1830), 7, + [3131] = 4, + ACTIONS(1628), 1, anon_sym_LBRACE, + STATE(538), 1, + sym_inline_attribute, + ACTIONS(1618), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1832), 30, + ACTIONS(1616), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -20988,8 +19681,8 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -21008,17 +19701,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [4196] = 2, - ACTIONS(1834), 7, + [3178] = 4, + ACTIONS(1708), 1, + aux_sym__text_token1, + STATE(188), 1, + aux_sym__text, + ACTIONS(1660), 6, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(1836), 30, + ACTIONS(1662), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21029,7 +19726,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -21048,28 +19744,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [4238] = 2, - ACTIONS(1838), 7, + [3225] = 2, + ACTIONS(1711), 9, anon_sym_LBRACE, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1840), 30, + ACTIONS(1713), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -21086,10 +19783,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [4280] = 2, - ACTIONS(1842), 7, + [3267] = 2, + ACTIONS(1715), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -21097,7 +19793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1844), 30, + ACTIONS(1717), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -21109,7 +19805,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -21117,6 +19812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -21128,8 +19824,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [4322] = 2, - ACTIONS(1846), 7, + [3309] = 2, + ACTIONS(1719), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -21137,7 +19833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1848), 30, + ACTIONS(1721), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -21148,8 +19844,8 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -21168,8 +19864,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [4364] = 2, - ACTIONS(1850), 7, + [3351] = 2, + ACTIONS(1723), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -21177,7 +19873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1852), 30, + ACTIONS(1725), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -21188,8 +19884,8 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -21208,8 +19904,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [4406] = 2, - ACTIONS(1854), 7, + [3393] = 2, + ACTIONS(1727), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -21217,7 +19913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1856), 30, + ACTIONS(1729), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -21228,8 +19924,8 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -21248,19 +19944,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [4448] = 4, - ACTIONS(49), 1, + [3435] = 2, + ACTIONS(1731), 7, anon_sym_LBRACE, - ACTIONS(93), 1, - ts_builtin_sym_end, - ACTIONS(1705), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1700), 29, + ACTIONS(1733), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -21271,6 +19964,7 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -21290,8 +19984,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [4494] = 2, - ACTIONS(1858), 7, + [3477] = 2, + ACTIONS(1735), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -21299,7 +19993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1860), 30, + ACTIONS(1737), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -21310,8 +20004,8 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -21330,8 +20024,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [4536] = 2, - ACTIONS(1862), 7, + [3519] = 2, + ACTIONS(1739), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -21339,7 +20033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1864), 30, + ACTIONS(1741), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -21350,8 +20044,8 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -21370,16 +20064,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [4578] = 2, - ACTIONS(1866), 7, + [3561] = 4, + ACTIONS(47), 1, anon_sym_LBRACE, + ACTIONS(79), 1, + anon_sym_PLUS_RBRACE, + ACTIONS(1609), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1868), 30, + ACTIONS(1604), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -21391,7 +20088,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -21410,8 +20106,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [4620] = 2, - ACTIONS(1870), 7, + [3607] = 3, + ACTIONS(1743), 1, + sym__verbatim_begin, + ACTIONS(47), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -21419,8 +20117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1872), 30, - sym__verbatim_begin, + ACTIONS(79), 29, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21450,8 +20147,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [4662] = 2, - ACTIONS(1874), 7, + [3651] = 2, + ACTIONS(1746), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -21459,7 +20156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1876), 30, + ACTIONS(1748), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -21490,8 +20187,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [4704] = 2, - ACTIONS(1878), 7, + [3693] = 2, + ACTIONS(1750), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -21499,7 +20196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1880), 30, + ACTIONS(1752), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -21530,16 +20227,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [4746] = 2, - ACTIONS(1882), 7, - anon_sym_LBRACE, + [3735] = 4, + ACTIONS(1758), 1, + anon_sym_LBRACE2, + STATE(205), 1, + sym_comment, + ACTIONS(1756), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1884), 30, + ACTIONS(1754), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -21570,8 +20269,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [4788] = 2, - ACTIONS(1886), 7, + [3781] = 2, + ACTIONS(1761), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -21579,7 +20278,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1888), 30, + ACTIONS(1763), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -21610,8 +20309,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [4830] = 2, - ACTIONS(1890), 7, + [3823] = 2, + ACTIONS(1765), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -21619,7 +20318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1892), 30, + ACTIONS(1767), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -21650,8 +20349,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [4872] = 2, - ACTIONS(1894), 7, + [3865] = 2, + ACTIONS(1769), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -21659,7 +20358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1896), 30, + ACTIONS(1771), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -21671,7 +20370,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -21680,6 +20378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -21690,8 +20389,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [4914] = 2, - ACTIONS(1898), 7, + [3907] = 2, + ACTIONS(1773), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -21699,7 +20398,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1900), 30, + ACTIONS(1775), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -21730,8 +20429,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [4956] = 2, - ACTIONS(1902), 7, + [3949] = 2, + ACTIONS(1777), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -21739,7 +20438,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1904), 30, + ACTIONS(1779), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -21770,10 +20469,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [4998] = 3, - ACTIONS(1906), 1, - sym__verbatim_begin, - ACTIONS(49), 7, + [3991] = 2, + ACTIONS(1781), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -21781,8 +20478,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(93), 29, - ts_builtin_sym_end, + ACTIONS(1783), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21793,6 +20490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -21811,8 +20509,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [5042] = 2, - ACTIONS(1909), 7, + [4033] = 2, + ACTIONS(1785), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -21820,7 +20518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1911), 30, + ACTIONS(1787), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -21851,8 +20549,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [5084] = 2, - ACTIONS(1913), 7, + [4075] = 2, + ACTIONS(1789), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -21860,7 +20558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1915), 30, + ACTIONS(1791), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -21891,8 +20589,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [5126] = 2, - ACTIONS(1917), 7, + [4117] = 2, + ACTIONS(1793), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -21900,7 +20598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1919), 30, + ACTIONS(1795), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -21931,8 +20629,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [5168] = 2, - ACTIONS(1921), 7, + [4159] = 2, + ACTIONS(1715), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -21940,7 +20638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1923), 30, + ACTIONS(1717), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -21971,8 +20669,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [5210] = 2, - ACTIONS(1925), 7, + [4201] = 2, + ACTIONS(1797), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -21980,7 +20678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1927), 30, + ACTIONS(1799), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -21992,7 +20690,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -22001,6 +20698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -22011,8 +20709,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [5252] = 2, - ACTIONS(1929), 7, + [4243] = 2, + ACTIONS(1801), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22020,7 +20718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1931), 30, + ACTIONS(1803), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -22051,19 +20749,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [5294] = 4, - ACTIONS(49), 1, + [4285] = 2, + ACTIONS(1805), 7, anon_sym_LBRACE, - ACTIONS(93), 1, - anon_sym_DASH_RBRACE, - ACTIONS(1697), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1692), 29, + ACTIONS(1807), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -22075,6 +20770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -22093,19 +20789,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [5340] = 4, - ACTIONS(49), 1, + [4327] = 2, + ACTIONS(1809), 7, anon_sym_LBRACE, - ACTIONS(93), 1, - anon_sym_DASH_RBRACE, - ACTIONS(1705), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1700), 29, + ACTIONS(1811), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -22117,6 +20810,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -22135,10 +20829,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [5386] = 3, - ACTIONS(1933), 1, - sym__verbatim_begin, - ACTIONS(49), 7, + [4369] = 2, + ACTIONS(1711), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22146,7 +20838,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(93), 29, + ACTIONS(1713), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22157,8 +20850,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -22176,8 +20869,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [5430] = 2, - ACTIONS(1936), 7, + [4411] = 2, + ACTIONS(1813), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22185,7 +20878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1938), 30, + ACTIONS(1815), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -22197,8 +20890,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -22216,8 +20909,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [5472] = 2, - ACTIONS(1823), 7, + [4453] = 2, + ACTIONS(1817), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22225,7 +20918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1825), 30, + ACTIONS(1819), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -22237,8 +20930,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -22256,18 +20949,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [5514] = 4, - ACTIONS(1940), 1, - anon_sym_LBRACE2, - STATE(243), 1, - sym_comment, - ACTIONS(1818), 5, + [4495] = 2, + ACTIONS(1821), 7, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1816), 30, + ACTIONS(1823), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -22279,8 +20970,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -22298,8 +20989,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [5560] = 2, - ACTIONS(1812), 7, + [4537] = 2, + ACTIONS(1825), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22307,7 +20998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1814), 30, + ACTIONS(1827), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -22319,8 +21010,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -22338,8 +21029,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [5602] = 2, - ACTIONS(1936), 7, + [4579] = 2, + ACTIONS(1829), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22347,9 +21038,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1938), 30, + ACTIONS(1831), 30, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22360,6 +21050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -22378,8 +21069,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [5644] = 2, - ACTIONS(1830), 7, + [4621] = 2, + ACTIONS(1833), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22387,7 +21078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1832), 30, + ACTIONS(1835), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -22399,8 +21090,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -22418,21 +21109,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [5686] = 2, - ACTIONS(1834), 7, + [4663] = 2, + ACTIONS(1769), 9, anon_sym_LBRACE, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1836), 30, + ACTIONS(1771), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -22440,7 +21133,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -22456,10 +21148,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [5728] = 2, - ACTIONS(1838), 7, + [4705] = 2, + ACTIONS(1837), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22467,7 +21158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1840), 30, + ACTIONS(1839), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -22479,8 +21170,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -22498,8 +21189,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [5770] = 2, - ACTIONS(1842), 7, + [4747] = 2, + ACTIONS(1719), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22507,7 +21198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1844), 30, + ACTIONS(1721), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -22519,8 +21210,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -22538,8 +21229,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [5812] = 2, - ACTIONS(1846), 7, + [4789] = 2, + ACTIONS(1723), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22547,7 +21238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1848), 30, + ACTIONS(1725), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -22559,8 +21250,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -22578,8 +21269,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [5854] = 2, - ACTIONS(1850), 7, + [4831] = 2, + ACTIONS(1727), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22587,7 +21278,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1852), 30, + ACTIONS(1729), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -22599,8 +21290,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -22618,8 +21309,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [5896] = 2, - ACTIONS(1854), 7, + [4873] = 2, + ACTIONS(1731), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22627,7 +21318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1856), 30, + ACTIONS(1733), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -22639,8 +21330,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -22658,8 +21349,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [5938] = 2, - ACTIONS(1823), 7, + [4915] = 2, + ACTIONS(1735), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22667,9 +21358,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1825), 30, + ACTIONS(1737), 30, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22680,6 +21370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -22698,8 +21389,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [5980] = 2, - ACTIONS(1858), 7, + [4957] = 2, + ACTIONS(1739), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22707,7 +21398,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1860), 30, + ACTIONS(1741), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -22719,8 +21410,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -22738,16 +21429,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [6022] = 2, - ACTIONS(1862), 7, + [4999] = 4, + ACTIONS(47), 1, anon_sym_LBRACE, + ACTIONS(79), 1, + anon_sym_DASH_RBRACE, + ACTIONS(1609), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1864), 30, + ACTIONS(1604), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -22760,7 +21454,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -22778,8 +21471,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [6064] = 2, - ACTIONS(1866), 7, + [5045] = 3, + ACTIONS(1841), 1, + sym__verbatim_begin, + ACTIONS(47), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22787,8 +21482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1868), 30, - sym__verbatim_begin, + ACTIONS(79), 29, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22818,8 +21512,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [6106] = 2, - ACTIONS(1870), 7, + [5089] = 2, + ACTIONS(1746), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22827,7 +21521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1872), 30, + ACTIONS(1748), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -22858,8 +21552,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [6148] = 2, - ACTIONS(1874), 7, + [5131] = 2, + ACTIONS(1750), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22867,7 +21561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1876), 30, + ACTIONS(1752), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -22898,16 +21592,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [6190] = 2, - ACTIONS(1878), 7, - anon_sym_LBRACE, + [5173] = 4, + ACTIONS(1844), 1, + anon_sym_LBRACE2, + STATE(239), 1, + sym_comment, + ACTIONS(1756), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1880), 30, + ACTIONS(1754), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -22938,8 +21634,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [6232] = 2, - ACTIONS(1882), 7, + [5219] = 2, + ACTIONS(1761), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22947,7 +21643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1884), 30, + ACTIONS(1763), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -22978,8 +21674,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [6274] = 2, - ACTIONS(1886), 7, + [5261] = 2, + ACTIONS(1765), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22987,7 +21683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1888), 30, + ACTIONS(1767), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -23018,21 +21714,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [6316] = 2, - ACTIONS(1890), 7, + [5303] = 2, + ACTIONS(1797), 9, anon_sym_LBRACE, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1892), 30, + ACTIONS(1799), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -23040,7 +21738,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -23056,10 +21753,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [6358] = 2, - ACTIONS(1894), 7, + [5345] = 2, + ACTIONS(1773), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -23067,7 +21763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1896), 30, + ACTIONS(1775), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -23098,8 +21794,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [6400] = 2, - ACTIONS(1898), 7, + [5387] = 2, + ACTIONS(1777), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -23107,7 +21803,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1900), 30, + ACTIONS(1779), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -23138,8 +21834,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [6442] = 2, - ACTIONS(1902), 7, + [5429] = 2, + ACTIONS(1781), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -23147,7 +21843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1904), 30, + ACTIONS(1783), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -23178,20 +21874,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [6484] = 4, - ACTIONS(1943), 1, - anon_sym_LBRACE2, - STATE(532), 1, - sym_comment, - ACTIONS(1818), 5, + [5471] = 2, + ACTIONS(1785), 7, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1816), 30, + ACTIONS(1787), 30, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23203,6 +21896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -23220,8 +21914,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [6530] = 2, - ACTIONS(1909), 7, + [5513] = 2, + ACTIONS(1789), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -23229,7 +21923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1911), 30, + ACTIONS(1791), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -23260,8 +21954,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [6572] = 2, - ACTIONS(1913), 7, + [5555] = 2, + ACTIONS(1793), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -23269,7 +21963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1915), 30, + ACTIONS(1795), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -23300,8 +21994,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [6614] = 2, - ACTIONS(1917), 7, + [5597] = 2, + ACTIONS(1715), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -23309,7 +22003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1919), 30, + ACTIONS(1717), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -23340,8 +22034,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [6656] = 2, - ACTIONS(1921), 7, + [5639] = 2, + ACTIONS(1769), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -23349,7 +22043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1923), 30, + ACTIONS(1771), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -23362,13 +22056,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -23380,8 +22074,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [6698] = 2, - ACTIONS(1925), 7, + [5681] = 2, + ACTIONS(1801), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -23389,7 +22083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1927), 30, + ACTIONS(1803), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -23420,8 +22114,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [6740] = 2, - ACTIONS(1929), 7, + [5723] = 2, + ACTIONS(1805), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -23429,7 +22123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1931), 30, + ACTIONS(1807), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -23460,8 +22154,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [6782] = 2, - ACTIONS(1823), 7, + [5765] = 2, + ACTIONS(1809), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -23469,7 +22163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1825), 30, + ACTIONS(1811), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -23480,9 +22174,9 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -23500,20 +22194,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [6824] = 4, - ACTIONS(49), 1, + [5807] = 2, + ACTIONS(1711), 7, anon_sym_LBRACE, - ACTIONS(93), 1, - anon_sym_CARET_RBRACE, - ACTIONS(1697), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1692), 28, + ACTIONS(1713), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -23526,8 +22216,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, + anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -23542,10 +22234,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [6870] = 3, - ACTIONS(1946), 1, - sym__verbatim_begin, - ACTIONS(49), 7, + [5849] = 2, + ACTIONS(1813), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -23553,7 +22243,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(93), 29, + ACTIONS(1815), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23564,8 +22255,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -23583,20 +22274,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [6914] = 4, - ACTIONS(49), 1, + [5891] = 2, + ACTIONS(1817), 7, anon_sym_LBRACE, - ACTIONS(93), 1, - anon_sym_CARET_RBRACE, - ACTIONS(1705), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1700), 28, + ACTIONS(1819), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -23609,8 +22296,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, + anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -23625,19 +22314,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [6960] = 4, - ACTIONS(49), 1, + [5933] = 2, + ACTIONS(1821), 7, anon_sym_LBRACE, - ACTIONS(93), 1, - anon_sym_PLUS_RBRACE, - ACTIONS(1705), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1700), 29, + ACTIONS(1823), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -23650,6 +22336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -23667,19 +22354,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [7006] = 4, - ACTIONS(49), 1, + [5975] = 2, + ACTIONS(1825), 7, anon_sym_LBRACE, - ACTIONS(93), 1, - anon_sym_PLUS_RBRACE, - ACTIONS(1697), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1692), 29, + ACTIONS(1827), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -23692,6 +22376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -23709,8 +22394,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [7052] = 2, - ACTIONS(1929), 7, + [6017] = 2, + ACTIONS(1829), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -23718,7 +22403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1931), 30, + ACTIONS(1831), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -23729,9 +22414,9 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -23749,8 +22434,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [7094] = 2, - ACTIONS(1925), 7, + [6059] = 2, + ACTIONS(1833), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -23758,7 +22443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1927), 30, + ACTIONS(1835), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -23769,9 +22454,9 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -23789,8 +22474,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [7136] = 2, - ACTIONS(1921), 7, + [6101] = 2, + ACTIONS(1797), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -23798,7 +22483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1923), 30, + ACTIONS(1799), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -23809,7 +22494,6 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -23818,6 +22502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -23829,8 +22514,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [7178] = 2, - ACTIONS(1917), 7, + [6143] = 2, + ACTIONS(1837), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -23838,7 +22523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1919), 30, + ACTIONS(1839), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -23849,9 +22534,9 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -23869,8 +22554,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [7220] = 2, - ACTIONS(1913), 7, + [6185] = 2, + ACTIONS(1719), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -23878,7 +22563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1915), 30, + ACTIONS(1721), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -23889,9 +22574,9 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -23909,8 +22594,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [7262] = 2, - ACTIONS(1909), 7, + [6227] = 2, + ACTIONS(1723), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -23918,7 +22603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1911), 30, + ACTIONS(1725), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -23929,9 +22614,9 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -23949,20 +22634,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [7304] = 4, - ACTIONS(1951), 1, - anon_sym_SPACE, - STATE(535), 1, - aux_sym_emphasis_begin_repeat1, - ACTIONS(1953), 7, + [6269] = 2, + ACTIONS(1727), 7, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1949), 28, + ACTIONS(1729), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -23975,6 +22656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -23990,9 +22672,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [7350] = 2, - ACTIONS(1902), 7, + [6311] = 2, + ACTIONS(1731), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -24000,7 +22683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1904), 30, + ACTIONS(1733), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -24011,9 +22694,9 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -24031,19 +22714,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [7392] = 3, - ACTIONS(1955), 1, - sym__verbatim_begin, - ACTIONS(49), 8, + [6353] = 2, + ACTIONS(1735), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(93), 28, + ACTIONS(1737), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24055,9 +22736,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -24072,17 +22754,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [7436] = 2, - ACTIONS(1936), 8, + [6395] = 2, + ACTIONS(1739), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1938), 29, + ACTIONS(1741), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -24095,9 +22776,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -24112,17 +22794,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [7478] = 2, - ACTIONS(1823), 8, - anon_sym_LBRACE, + [6437] = 4, + ACTIONS(1847), 1, + anon_sym_LBRACE2, + STATE(319), 1, + sym_comment, + ACTIONS(1756), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1825), 29, + ACTIONS(1754), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -24133,11 +22816,12 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -24152,19 +22836,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [7520] = 4, - ACTIONS(1958), 1, - anon_sym_LBRACE2, - STATE(292), 1, - sym_comment, - ACTIONS(1818), 6, + [6483] = 4, + ACTIONS(47), 1, + anon_sym_LBRACE, + ACTIONS(79), 1, + anon_sym_CARET_RBRACE, + ACTIONS(1609), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_CARET, anon_sym_LBRACK, + anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1816), 29, + ACTIONS(1604), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -24179,7 +22864,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -24194,16 +22878,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [7566] = 2, - ACTIONS(1898), 7, + [6529] = 2, + ACTIONS(1769), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1900), 30, + ACTIONS(1771), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -24214,14 +22899,13 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -24234,8 +22918,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [7608] = 2, - ACTIONS(1894), 7, + [6571] = 2, + ACTIONS(1833), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -24243,7 +22927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1896), 30, + ACTIONS(1835), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -24274,17 +22958,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [7650] = 2, - ACTIONS(1812), 8, + [6613] = 2, + ACTIONS(1829), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1814), 29, + ACTIONS(1831), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -24295,11 +22978,12 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -24314,20 +22998,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [7692] = 4, - ACTIONS(1951), 1, - anon_sym_SPACE, - STATE(535), 1, - aux_sym_emphasis_begin_repeat1, - ACTIONS(1963), 7, + [6655] = 2, + ACTIONS(1825), 7, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1961), 28, + ACTIONS(1827), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -24338,6 +23018,7 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -24355,18 +23036,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [7738] = 2, - ACTIONS(1830), 8, + [6697] = 2, + ACTIONS(1821), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1832), 29, + ACTIONS(1823), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -24377,11 +23058,12 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -24396,17 +23078,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [7780] = 2, - ACTIONS(1834), 8, + [6739] = 2, + ACTIONS(1817), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1836), 29, + ACTIONS(1819), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -24417,11 +23098,12 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -24436,17 +23118,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [7822] = 2, - ACTIONS(1838), 8, + [6781] = 2, + ACTIONS(1813), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1840), 29, + ACTIONS(1815), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -24457,11 +23138,12 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -24476,17 +23158,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [7864] = 2, - ACTIONS(1842), 8, + [6823] = 2, + ACTIONS(1711), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1844), 29, + ACTIONS(1713), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -24497,11 +23178,12 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -24516,17 +23198,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [7906] = 2, - ACTIONS(1846), 8, + [6865] = 2, + ACTIONS(1809), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1848), 29, + ACTIONS(1811), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -24537,11 +23218,12 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -24556,17 +23238,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [7948] = 2, - ACTIONS(1850), 8, + [6907] = 2, + ACTIONS(1805), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1852), 29, + ACTIONS(1807), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -24577,11 +23258,12 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -24596,8 +23278,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [7990] = 2, - ACTIONS(1854), 8, + [6949] = 3, + ACTIONS(1850), 1, + sym__verbatim_begin, + ACTIONS(47), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -24606,8 +23290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1856), 29, - sym__verbatim_begin, + ACTIONS(79), 28, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24636,16 +23319,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [8032] = 2, - ACTIONS(1890), 7, + [6993] = 2, + ACTIONS(1746), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1892), 30, + ACTIONS(1748), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -24656,12 +23340,11 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -24676,16 +23359,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [8074] = 2, - ACTIONS(1886), 7, + [7035] = 2, + ACTIONS(1750), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1888), 30, + ACTIONS(1752), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -24696,12 +23380,11 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -24716,16 +23399,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [8116] = 2, - ACTIONS(1882), 7, - anon_sym_LBRACE, + [7077] = 4, + ACTIONS(1853), 1, + anon_sym_LBRACE2, + STATE(286), 1, + sym_comment, + ACTIONS(1756), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1884), 30, + ACTIONS(1754), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -24736,12 +23422,11 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -24756,8 +23441,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [8158] = 2, - ACTIONS(1812), 7, + [7123] = 2, + ACTIONS(1801), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -24765,9 +23450,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1814), 30, + ACTIONS(1803), 30, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24777,6 +23461,7 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -24796,17 +23481,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [8200] = 2, - ACTIONS(1858), 8, + [7165] = 2, + ACTIONS(1797), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, + anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1860), 29, + ACTIONS(1799), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -24821,9 +23506,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -24836,8 +23521,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [8242] = 2, - ACTIONS(1862), 8, + [7207] = 2, + ACTIONS(1761), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -24846,7 +23531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1864), 29, + ACTIONS(1763), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -24876,8 +23561,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [8284] = 2, - ACTIONS(1866), 8, + [7249] = 2, + ACTIONS(1765), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -24886,7 +23571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1868), 29, + ACTIONS(1767), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -24916,8 +23601,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [8326] = 2, - ACTIONS(1870), 8, + [7291] = 2, + ACTIONS(1769), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -24926,7 +23611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1872), 29, + ACTIONS(1771), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -24956,8 +23641,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [8368] = 2, - ACTIONS(1874), 8, + [7333] = 2, + ACTIONS(1773), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -24966,7 +23651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1876), 29, + ACTIONS(1775), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -24996,8 +23681,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [8410] = 2, - ACTIONS(1878), 8, + [7375] = 2, + ACTIONS(1777), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -25006,7 +23691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1880), 29, + ACTIONS(1779), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -25036,8 +23721,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [8452] = 2, - ACTIONS(1882), 8, + [7417] = 2, + ACTIONS(1781), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -25046,7 +23731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1884), 29, + ACTIONS(1783), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -25076,8 +23761,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [8494] = 2, - ACTIONS(1886), 8, + [7459] = 2, + ACTIONS(1785), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -25086,7 +23771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1888), 29, + ACTIONS(1787), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -25116,8 +23801,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [8536] = 2, - ACTIONS(1890), 8, + [7501] = 2, + ACTIONS(1789), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -25126,7 +23811,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1892), 29, + ACTIONS(1791), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -25156,8 +23841,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [8578] = 2, - ACTIONS(1894), 8, + [7543] = 2, + ACTIONS(1793), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -25166,7 +23851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1896), 29, + ACTIONS(1795), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -25196,8 +23881,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [8620] = 2, - ACTIONS(1898), 8, + [7585] = 2, + ACTIONS(1715), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -25206,7 +23891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1900), 29, + ACTIONS(1717), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -25236,17 +23921,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [8662] = 2, - ACTIONS(1902), 8, + [7627] = 2, + ACTIONS(1715), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1904), 29, + ACTIONS(1717), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -25257,11 +23941,12 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -25276,8 +23961,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [8704] = 2, - ACTIONS(1965), 7, + [7669] = 2, + ACTIONS(1793), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -25285,7 +23970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1967), 30, + ACTIONS(1795), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -25296,6 +23981,7 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -25305,7 +23991,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -25316,17 +24001,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [8746] = 2, - ACTIONS(1909), 8, + [7711] = 2, + ACTIONS(1789), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1911), 29, + ACTIONS(1791), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -25337,11 +24021,12 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -25356,8 +24041,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [8788] = 2, - ACTIONS(1913), 8, + [7753] = 2, + ACTIONS(1797), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -25366,7 +24051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1915), 29, + ACTIONS(1799), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -25396,8 +24081,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [8830] = 2, - ACTIONS(1917), 8, + [7795] = 2, + ACTIONS(1801), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -25406,7 +24091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1919), 29, + ACTIONS(1803), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -25436,8 +24121,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [8872] = 2, - ACTIONS(1921), 8, + [7837] = 2, + ACTIONS(1805), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -25446,7 +24131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1923), 29, + ACTIONS(1807), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -25476,8 +24161,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [8914] = 2, - ACTIONS(1925), 8, + [7879] = 2, + ACTIONS(1809), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -25486,7 +24171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1927), 29, + ACTIONS(1811), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -25516,8 +24201,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [8956] = 2, - ACTIONS(1929), 8, + [7921] = 2, + ACTIONS(1711), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -25526,7 +24211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1931), 29, + ACTIONS(1713), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -25556,16 +24241,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [8998] = 2, - ACTIONS(1878), 7, + [7963] = 2, + ACTIONS(1813), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1880), 30, + ACTIONS(1815), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -25576,12 +24262,11 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -25596,20 +24281,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [9040] = 4, - ACTIONS(49), 1, + [8005] = 2, + ACTIONS(1817), 8, anon_sym_LBRACE, - ACTIONS(93), 1, - anon_sym_TILDE_RBRACE, - ACTIONS(1697), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1692), 28, + ACTIONS(1819), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -25624,8 +24306,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -25638,16 +24321,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [9086] = 2, - ACTIONS(1874), 7, + [8047] = 2, + ACTIONS(1821), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1876), 30, + ACTIONS(1823), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -25658,12 +24342,11 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -25678,20 +24361,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [9128] = 4, - ACTIONS(49), 1, + [8089] = 2, + ACTIONS(1825), 8, anon_sym_LBRACE, - ACTIONS(93), 1, - anon_sym_TILDE_RBRACE, - ACTIONS(1705), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1700), 28, + ACTIONS(1827), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -25706,8 +24386,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -25720,16 +24401,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [9174] = 2, - ACTIONS(1870), 7, + [8131] = 2, + ACTIONS(1829), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1872), 30, + ACTIONS(1831), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -25740,12 +24422,11 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -25760,16 +24441,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [9216] = 2, - ACTIONS(1866), 7, + [8173] = 2, + ACTIONS(1833), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1868), 30, + ACTIONS(1835), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -25780,12 +24462,11 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -25800,8 +24481,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [9258] = 2, - ACTIONS(1862), 7, + [8215] = 2, + ACTIONS(1769), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -25809,7 +24490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1864), 30, + ACTIONS(1771), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -25820,9 +24501,9 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -25840,16 +24521,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [9300] = 2, - ACTIONS(1858), 7, + [8257] = 2, + ACTIONS(1837), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1860), 30, + ACTIONS(1839), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -25860,12 +24542,11 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -25880,16 +24561,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [9342] = 2, - ACTIONS(1969), 7, + [8299] = 2, + ACTIONS(1719), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1971), 30, + ACTIONS(1721), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -25904,12 +24586,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -25920,16 +24601,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [9384] = 2, - ACTIONS(1854), 7, + [8341] = 2, + ACTIONS(1723), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1856), 30, + ACTIONS(1725), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -25940,12 +24622,11 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -25960,16 +24641,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [9426] = 2, - ACTIONS(1850), 7, + [8383] = 2, + ACTIONS(1727), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1852), 30, + ACTIONS(1729), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -25980,12 +24662,11 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -26000,16 +24681,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [9468] = 2, - ACTIONS(1846), 7, + [8425] = 2, + ACTIONS(1731), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1848), 30, + ACTIONS(1733), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -26020,12 +24702,11 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -26040,16 +24721,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [9510] = 2, - ACTIONS(1842), 7, + [8467] = 2, + ACTIONS(1735), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1844), 30, + ACTIONS(1737), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -26060,12 +24742,11 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -26080,16 +24761,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [9552] = 2, - ACTIONS(1838), 7, + [8509] = 2, + ACTIONS(1739), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1840), 30, + ACTIONS(1741), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -26100,12 +24782,11 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -26120,19 +24801,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [9594] = 3, - ACTIONS(1973), 1, - sym__verbatim_begin, - ACTIONS(49), 8, + [8551] = 2, + ACTIONS(1785), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(93), 28, + ACTIONS(1787), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26142,13 +24821,14 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -26161,9 +24841,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [9638] = 2, - ACTIONS(1936), 8, + [8593] = 4, + ACTIONS(47), 1, anon_sym_LBRACE, + ACTIONS(79), 1, + anon_sym_TILDE_RBRACE, + ACTIONS(1609), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, @@ -26171,7 +24854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1938), 29, + ACTIONS(1604), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -26188,7 +24871,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -26201,17 +24883,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [9680] = 2, - ACTIONS(1823), 8, + [8639] = 2, + ACTIONS(1781), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1825), 29, + ACTIONS(1783), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -26222,13 +24903,14 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -26241,19 +24923,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [9722] = 4, - ACTIONS(1976), 1, - anon_sym_LBRACE2, - STATE(344), 1, - sym_comment, - ACTIONS(1818), 6, + [8681] = 2, + ACTIONS(1777), 7, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, + anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1816), 29, + ACTIONS(1779), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -26264,13 +24943,14 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -26283,8 +24963,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [9768] = 2, - ACTIONS(1834), 7, + [8723] = 2, + ACTIONS(1773), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -26292,7 +24972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1836), 30, + ACTIONS(1775), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -26323,8 +25003,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [9810] = 2, - ACTIONS(1830), 7, + [8765] = 2, + ACTIONS(1797), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -26332,7 +25012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1832), 30, + ACTIONS(1799), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -26343,9 +25023,9 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -26363,17 +25043,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [9852] = 2, - ACTIONS(1812), 8, + [8807] = 2, + ACTIONS(1765), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1814), 29, + ACTIONS(1767), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -26384,13 +25063,14 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -26403,28 +25083,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [9894] = 2, - ACTIONS(1965), 9, + [8849] = 2, + ACTIONS(1761), 7, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1967), 28, + ACTIONS(1763), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -26442,18 +25121,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [9936] = 2, - ACTIONS(1830), 8, + [8891] = 4, + ACTIONS(47), 1, anon_sym_LBRACE, + ACTIONS(79), 1, + ts_builtin_sym_end, + ACTIONS(1609), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1832), 29, + ACTIONS(1604), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -26470,7 +25152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -26483,17 +25165,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [9978] = 2, - ACTIONS(1834), 8, + [8937] = 2, + ACTIONS(1750), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1836), 29, + ACTIONS(1752), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -26504,13 +25185,14 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -26523,17 +25205,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [10020] = 2, - ACTIONS(1838), 8, + [8979] = 2, + ACTIONS(1746), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1840), 29, + ACTIONS(1748), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -26544,13 +25225,14 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -26563,18 +25245,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [10062] = 2, - ACTIONS(1842), 8, + [9021] = 3, + ACTIONS(1856), 1, + sym__verbatim_begin, + ACTIONS(47), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1844), 29, - sym__verbatim_begin, + ACTIONS(79), 29, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26584,13 +25266,14 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -26603,8 +25286,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [10104] = 2, - ACTIONS(1846), 8, + [9065] = 3, + ACTIONS(1859), 1, + sym__verbatim_begin, + ACTIONS(47), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -26613,8 +25298,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1848), 29, - sym__verbatim_begin, + ACTIONS(79), 28, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26643,8 +25327,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [10146] = 2, - ACTIONS(1850), 8, + [9109] = 2, + ACTIONS(1746), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -26653,7 +25337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1852), 29, + ACTIONS(1748), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -26683,8 +25367,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [10188] = 2, - ACTIONS(1854), 8, + [9151] = 2, + ACTIONS(1750), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -26693,7 +25377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1856), 29, + ACTIONS(1752), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -26723,23 +25407,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [10230] = 2, - ACTIONS(1969), 9, - anon_sym_LBRACE, - anon_sym_STAR, + [9193] = 4, + ACTIONS(1862), 1, + anon_sym_LBRACE2, + STATE(336), 1, + sym_comment, + ACTIONS(1756), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_TILDE, anon_sym_LBRACK, - anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1971), 28, + ACTIONS(1754), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -26751,7 +25436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -26762,17 +25447,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [10272] = 2, - ACTIONS(1812), 7, + [9239] = 4, + ACTIONS(47), 1, anon_sym_LBRACE, + ACTIONS(79), 1, + anon_sym_EQ_RBRACE, + ACTIONS(1609), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1814), 30, + ACTIONS(1604), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -26783,7 +25472,6 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -26803,19 +25491,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [10314] = 4, - ACTIONS(1979), 1, - anon_sym_LBRACE2, - STATE(341), 1, - sym_comment, - ACTIONS(1818), 5, + [9285] = 3, + ACTIONS(1865), 1, + sym__verbatim_begin, + ACTIONS(47), 7, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1816), 30, - sym__verbatim_begin, + ACTIONS(79), 29, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26825,7 +25513,6 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -26845,21 +25532,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [10360] = 2, - ACTIONS(1965), 9, + [9329] = 2, + ACTIONS(1761), 8, anon_sym_LBRACE, - anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1967), 28, + ACTIONS(1763), 29, sym__verbatim_begin, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -26873,7 +25559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -26884,9 +25570,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [10402] = 2, - ACTIONS(1858), 8, + [9371] = 2, + ACTIONS(1765), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -26895,7 +25582,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1860), 29, + ACTIONS(1767), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -26925,17 +25612,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [10444] = 2, - ACTIONS(1862), 8, + [9413] = 2, + ACTIONS(1769), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1864), 29, + ACTIONS(1771), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -26947,12 +25633,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -26965,8 +25652,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [10486] = 2, - ACTIONS(1866), 8, + [9455] = 2, + ACTIONS(1773), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -26975,7 +25662,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1868), 29, + ACTIONS(1775), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -27005,8 +25692,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [10528] = 2, - ACTIONS(1870), 8, + [9497] = 2, + ACTIONS(1777), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -27015,7 +25702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1872), 29, + ACTIONS(1779), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -27045,8 +25732,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [10570] = 2, - ACTIONS(1874), 8, + [9539] = 2, + ACTIONS(1781), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -27055,7 +25742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1876), 29, + ACTIONS(1783), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -27085,8 +25772,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [10612] = 2, - ACTIONS(1878), 8, + [9581] = 2, + ACTIONS(1785), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -27095,7 +25782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1880), 29, + ACTIONS(1787), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -27125,8 +25812,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [10654] = 2, - ACTIONS(1882), 8, + [9623] = 2, + ACTIONS(1789), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -27135,7 +25822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1884), 29, + ACTIONS(1791), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -27165,8 +25852,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [10696] = 2, - ACTIONS(1886), 8, + [9665] = 2, + ACTIONS(1793), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -27175,7 +25862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1888), 29, + ACTIONS(1795), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -27205,8 +25892,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [10738] = 2, - ACTIONS(1890), 8, + [9707] = 2, + ACTIONS(1715), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -27215,7 +25902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1892), 29, + ACTIONS(1717), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -27245,18 +25932,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [10780] = 2, - ACTIONS(1894), 8, + [9749] = 2, + ACTIONS(1746), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1896), 29, + ACTIONS(1748), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27272,7 +25959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -27285,18 +25972,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [10822] = 2, - ACTIONS(1898), 8, + [9791] = 2, + ACTIONS(1750), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1900), 29, + ACTIONS(1752), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27312,7 +25999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -27325,18 +26012,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [10864] = 2, - ACTIONS(1902), 8, - anon_sym_LBRACE, + [9833] = 4, + ACTIONS(1868), 1, + anon_sym_LBRACE2, + STATE(475), 1, + sym_comment, + ACTIONS(1756), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1904), 29, + ACTIONS(1754), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27352,7 +26041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -27365,21 +26054,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [10906] = 2, - ACTIONS(1969), 9, + [9879] = 2, + ACTIONS(1797), 7, anon_sym_LBRACE, - anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1971), 28, + ACTIONS(1799), 30, sym__verbatim_begin, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -27388,6 +26075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -27404,9 +26092,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [10948] = 2, - ACTIONS(1909), 8, + [9921] = 2, + ACTIONS(1801), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -27415,7 +26104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1911), 29, + ACTIONS(1803), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -27445,8 +26134,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [10990] = 2, - ACTIONS(1913), 8, + [9963] = 2, + ACTIONS(1805), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -27455,7 +26144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1915), 29, + ACTIONS(1807), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -27485,8 +26174,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [11032] = 2, - ACTIONS(1917), 8, + [10005] = 2, + ACTIONS(1809), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -27495,7 +26184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1919), 29, + ACTIONS(1811), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -27525,8 +26214,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [11074] = 2, - ACTIONS(1921), 8, + [10047] = 2, + ACTIONS(1711), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -27535,7 +26224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1923), 29, + ACTIONS(1713), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -27565,8 +26254,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [11116] = 2, - ACTIONS(1925), 8, + [10089] = 2, + ACTIONS(1813), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -27575,7 +26264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1927), 29, + ACTIONS(1815), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -27605,8 +26294,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [11158] = 2, - ACTIONS(1929), 8, + [10131] = 2, + ACTIONS(1817), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -27615,7 +26304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1931), 29, + ACTIONS(1819), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -27645,18 +26334,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [11200] = 3, - ACTIONS(1982), 1, - sym__verbatim_begin, - ACTIONS(49), 7, + [10173] = 2, + ACTIONS(1821), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(93), 29, + ACTIONS(1823), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27666,14 +26355,13 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -27686,19 +26374,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [11244] = 4, - ACTIONS(49), 1, + [10215] = 2, + ACTIONS(1825), 8, anon_sym_LBRACE, - ACTIONS(93), 1, - anon_sym_RBRACK, - ACTIONS(1697), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1692), 29, + ACTIONS(1827), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -27715,7 +26401,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -27728,16 +26414,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [11290] = 2, - ACTIONS(1936), 7, + [10257] = 2, + ACTIONS(1829), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1938), 30, + ACTIONS(1831), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -27748,14 +26435,13 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -27768,19 +26454,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [11332] = 4, - ACTIONS(49), 1, + [10299] = 2, + ACTIONS(1833), 8, anon_sym_LBRACE, - ACTIONS(93), 1, - anon_sym_RBRACK, - ACTIONS(1705), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1700), 29, + ACTIONS(1835), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -27797,7 +26481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -27810,8 +26494,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [11378] = 2, - ACTIONS(1965), 7, + [10341] = 2, + ACTIONS(1769), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -27819,7 +26503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1967), 30, + ACTIONS(1771), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -27830,6 +26514,7 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -27838,7 +26523,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -27850,19 +26534,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [11420] = 4, - ACTIONS(49), 1, + [10383] = 2, + ACTIONS(1837), 8, anon_sym_LBRACE, - ACTIONS(93), 1, - anon_sym_EQ_RBRACE, - ACTIONS(1705), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1700), 29, + ACTIONS(1839), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -27879,7 +26561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -27892,19 +26574,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [11466] = 4, - ACTIONS(49), 1, + [10425] = 2, + ACTIONS(1719), 8, anon_sym_LBRACE, - ACTIONS(93), 1, - anon_sym_EQ_RBRACE, - ACTIONS(1697), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1692), 29, + ACTIONS(1721), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -27921,7 +26601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -27934,16 +26614,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [11512] = 2, - ACTIONS(1969), 7, + [10467] = 2, + ACTIONS(1723), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1971), 30, + ACTIONS(1725), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -27960,9 +26641,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -27974,8 +26654,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [11554] = 2, - ACTIONS(1965), 8, + [10509] = 2, + ACTIONS(1727), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -27984,7 +26664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1967), 29, + ACTIONS(1729), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -28014,8 +26694,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [11596] = 2, - ACTIONS(1969), 8, + [10551] = 2, + ACTIONS(1731), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -28024,7 +26704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1971), 29, + ACTIONS(1733), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -28054,17 +26734,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [11638] = 2, - ACTIONS(1965), 8, + [10593] = 2, + ACTIONS(1735), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, + anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1967), 29, + ACTIONS(1737), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -28079,9 +26759,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -28094,18 +26774,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [11680] = 2, - ACTIONS(1929), 7, + [10635] = 2, + ACTIONS(1739), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1931), 30, + ACTIONS(1741), 29, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28121,7 +26801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -28134,18 +26814,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [11722] = 2, - ACTIONS(1969), 8, + [10677] = 2, + ACTIONS(1739), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1971), 29, + ACTIONS(1741), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28159,7 +26839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -28174,16 +26854,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [11764] = 2, - ACTIONS(1965), 7, + [10719] = 4, + ACTIONS(47), 1, anon_sym_LBRACE, + ACTIONS(79), 1, + anon_sym_RBRACK, + ACTIONS(1609), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1967), 30, + ACTIONS(1604), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -28196,7 +26879,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -28214,10 +26896,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [11806] = 3, - ACTIONS(1985), 1, - sym__verbatim_begin, - ACTIONS(49), 7, + [10765] = 2, + ACTIONS(1735), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -28225,7 +26905,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(93), 29, + ACTIONS(1737), 30, + sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28243,7 +26925,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -28255,8 +26936,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [11850] = 2, - ACTIONS(1936), 7, + [10807] = 2, + ACTIONS(1837), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -28264,7 +26945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1938), 30, + ACTIONS(1839), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -28275,6 +26956,7 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -28283,7 +26965,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -28295,8 +26976,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [11892] = 2, - ACTIONS(1823), 7, + [10849] = 2, + ACTIONS(1761), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -28304,8 +26985,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1825), 30, + ACTIONS(1763), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28323,7 +27005,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -28335,18 +27016,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [11934] = 4, - ACTIONS(1988), 1, - anon_sym_LBRACE2, - STATE(396), 1, - sym_comment, - ACTIONS(1818), 5, + [10891] = 4, + ACTIONS(1873), 1, + anon_sym_SPACE, + STATE(486), 1, + aux_sym_strong_begin_repeat1, + ACTIONS(1875), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1816), 30, + ACTIONS(1871), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -28365,7 +27048,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -28375,10 +27057,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [11980] = 2, - ACTIONS(1969), 7, + [10937] = 2, + ACTIONS(1765), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -28386,8 +27067,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1971), 30, + ACTIONS(1767), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28399,7 +27081,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -28417,8 +27098,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [12022] = 2, - ACTIONS(1965), 7, + [10979] = 2, + ACTIONS(1797), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -28426,7 +27107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1967), 30, + ACTIONS(1799), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -28437,8 +27118,8 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -28457,8 +27138,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [12064] = 2, - ACTIONS(1812), 7, + [11021] = 2, + ACTIONS(1739), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -28466,7 +27147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1814), 30, + ACTIONS(1741), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -28485,8 +27166,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -28497,8 +27178,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [12106] = 2, - ACTIONS(1969), 7, + [11063] = 2, + ACTIONS(1735), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -28506,7 +27187,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1971), 30, + ACTIONS(1737), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -28518,7 +27199,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -28527,6 +27207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -28537,8 +27218,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [12148] = 2, - ACTIONS(1830), 7, + [11105] = 2, + ACTIONS(1731), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -28546,8 +27227,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1832), 30, + ACTIONS(1733), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28565,7 +27247,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -28577,8 +27258,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [12190] = 2, - ACTIONS(1834), 7, + [11147] = 2, + ACTIONS(1727), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -28586,8 +27267,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1836), 30, + ACTIONS(1729), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28605,7 +27287,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -28617,8 +27298,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [12232] = 2, - ACTIONS(1838), 7, + [11189] = 3, + ACTIONS(1877), 1, + sym__verbatim_begin, + ACTIONS(47), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -28626,8 +27309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1840), 30, - sym__verbatim_begin, + ACTIONS(79), 29, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28657,8 +27339,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [12274] = 2, - ACTIONS(1842), 7, + [11233] = 2, + ACTIONS(1746), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -28666,7 +27348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1844), 30, + ACTIONS(1748), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -28697,8 +27379,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [12316] = 2, - ACTIONS(1846), 7, + [11275] = 2, + ACTIONS(1750), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -28706,7 +27388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1848), 30, + ACTIONS(1752), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -28737,16 +27419,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [12358] = 2, - ACTIONS(1850), 7, - anon_sym_LBRACE, + [11317] = 4, + ACTIONS(1880), 1, + anon_sym_LBRACE2, + STATE(386), 1, + sym_comment, + ACTIONS(1756), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1852), 30, + ACTIONS(1754), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -28777,8 +27461,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [12400] = 2, - ACTIONS(1854), 7, + [11363] = 2, + ACTIONS(1731), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -28786,7 +27470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1856), 30, + ACTIONS(1733), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -28805,8 +27489,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -28817,8 +27501,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [12442] = 2, - ACTIONS(1965), 7, + [11405] = 2, + ACTIONS(1727), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -28826,7 +27510,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1967), 30, + ACTIONS(1729), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -28837,7 +27521,6 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -28847,6 +27530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -28857,8 +27541,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [12484] = 2, - ACTIONS(1969), 7, + [11447] = 2, + ACTIONS(1761), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -28866,7 +27550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1971), 30, + ACTIONS(1763), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -28877,7 +27561,6 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -28886,6 +27569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -28897,8 +27581,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [12526] = 2, - ACTIONS(1929), 7, + [11489] = 2, + ACTIONS(1765), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -28906,7 +27590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1931), 30, + ACTIONS(1767), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -28925,8 +27609,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -28937,8 +27621,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [12568] = 2, - ACTIONS(1925), 7, + [11531] = 2, + ACTIONS(1723), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -28946,7 +27630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1927), 30, + ACTIONS(1725), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -28977,8 +27661,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [12610] = 2, - ACTIONS(1858), 7, + [11573] = 2, + ACTIONS(1773), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -28986,7 +27670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1860), 30, + ACTIONS(1775), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -29017,8 +27701,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [12652] = 2, - ACTIONS(1862), 7, + [11615] = 2, + ACTIONS(1777), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -29026,7 +27710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1864), 30, + ACTIONS(1779), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -29057,8 +27741,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [12694] = 2, - ACTIONS(1866), 7, + [11657] = 2, + ACTIONS(1781), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -29066,7 +27750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1868), 30, + ACTIONS(1783), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -29097,8 +27781,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [12736] = 2, - ACTIONS(1870), 7, + [11699] = 2, + ACTIONS(1785), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -29106,7 +27790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1872), 30, + ACTIONS(1787), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -29137,8 +27821,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [12778] = 2, - ACTIONS(1874), 7, + [11741] = 2, + ACTIONS(1789), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -29146,7 +27830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1876), 30, + ACTIONS(1791), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -29177,8 +27861,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [12820] = 2, - ACTIONS(1878), 7, + [11783] = 2, + ACTIONS(1793), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -29186,7 +27870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1880), 30, + ACTIONS(1795), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -29217,8 +27901,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [12862] = 2, - ACTIONS(1882), 7, + [11825] = 2, + ACTIONS(1719), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -29226,7 +27910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1884), 30, + ACTIONS(1721), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -29245,8 +27929,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -29257,8 +27941,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [12904] = 2, - ACTIONS(1886), 7, + [11867] = 2, + ACTIONS(1723), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -29266,8 +27950,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1888), 30, + ACTIONS(1725), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29285,7 +27970,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -29297,8 +27981,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [12946] = 2, - ACTIONS(1890), 7, + [11909] = 2, + ACTIONS(1719), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -29306,8 +27990,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1892), 30, + ACTIONS(1721), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29325,7 +28010,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -29337,8 +28021,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [12988] = 2, - ACTIONS(1894), 7, + [11951] = 2, + ACTIONS(1837), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -29346,8 +28030,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1896), 30, + ACTIONS(1839), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29365,7 +28050,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -29377,8 +28061,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [13030] = 2, - ACTIONS(1898), 7, + [11993] = 2, + ACTIONS(1837), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -29386,7 +28070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1900), 30, + ACTIONS(1839), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -29405,8 +28089,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -29417,8 +28101,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [13072] = 2, - ACTIONS(1902), 7, + [12035] = 2, + ACTIONS(1801), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -29426,7 +28110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1904), 30, + ACTIONS(1803), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -29457,8 +28141,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [13114] = 2, - ACTIONS(1921), 7, + [12077] = 2, + ACTIONS(1805), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -29466,7 +28150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1923), 30, + ACTIONS(1807), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -29485,8 +28169,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -29497,8 +28181,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [13156] = 2, - ACTIONS(1909), 7, + [12119] = 2, + ACTIONS(1809), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -29506,7 +28190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1911), 30, + ACTIONS(1811), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -29537,8 +28221,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [13198] = 2, - ACTIONS(1913), 7, + [12161] = 2, + ACTIONS(1711), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -29546,7 +28230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1915), 30, + ACTIONS(1713), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -29577,8 +28261,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [13240] = 2, - ACTIONS(1917), 7, + [12203] = 2, + ACTIONS(1813), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -29586,7 +28270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1919), 30, + ACTIONS(1815), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -29617,8 +28301,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [13282] = 2, - ACTIONS(1921), 7, + [12245] = 2, + ACTIONS(1817), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -29626,7 +28310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1923), 30, + ACTIONS(1819), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -29657,8 +28341,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [13324] = 2, - ACTIONS(1925), 7, + [12287] = 2, + ACTIONS(1821), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -29666,7 +28350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1927), 30, + ACTIONS(1823), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -29697,8 +28381,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [13366] = 2, - ACTIONS(1929), 7, + [12329] = 2, + ACTIONS(1825), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -29706,7 +28390,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1931), 30, + ACTIONS(1827), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -29737,8 +28421,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [13408] = 2, - ACTIONS(1925), 7, + [12371] = 2, + ACTIONS(1829), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -29746,9 +28430,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1927), 30, + ACTIONS(1831), 30, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29766,6 +28449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -29777,23 +28461,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [13450] = 4, - ACTIONS(49), 1, + [12413] = 2, + ACTIONS(1833), 7, anon_sym_LBRACE, - ACTIONS(93), 1, - aux_sym_emphasis_end_token1, - ACTIONS(1697), 8, - anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1692), 27, + ACTIONS(1835), 30, sym__verbatim_begin, anon_sym_LBRACE_, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -29809,6 +28489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -29818,9 +28499,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [13496] = 2, - ACTIONS(1921), 7, + [12455] = 2, + ACTIONS(1833), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -29828,9 +28510,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1923), 30, + ACTIONS(1835), 30, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29849,6 +28530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -29859,23 +28541,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [13538] = 4, - ACTIONS(49), 1, + [12497] = 2, + ACTIONS(1837), 7, anon_sym_LBRACE, - ACTIONS(93), 1, - aux_sym_emphasis_end_token1, - ACTIONS(1705), 8, - anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1700), 27, + ACTIONS(1839), 30, sym__verbatim_begin, anon_sym_LBRACE_, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -29891,6 +28569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -29900,9 +28579,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [13584] = 2, - ACTIONS(1917), 7, + [12539] = 2, + ACTIONS(1719), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -29910,9 +28590,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1919), 30, + ACTIONS(1721), 30, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29930,6 +28609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -29941,8 +28621,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [13626] = 2, - ACTIONS(1913), 7, + [12581] = 2, + ACTIONS(1723), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -29950,9 +28630,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1915), 30, + ACTIONS(1725), 30, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29970,6 +28649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -29981,8 +28661,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [13668] = 2, - ACTIONS(1909), 7, + [12623] = 2, + ACTIONS(1727), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -29990,9 +28670,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1911), 30, + ACTIONS(1729), 30, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30010,6 +28689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -30021,8 +28701,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [13710] = 2, - ACTIONS(1917), 7, + [12665] = 2, + ACTIONS(1731), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -30030,7 +28710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1919), 30, + ACTIONS(1733), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -30049,8 +28729,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -30061,8 +28741,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [13752] = 2, - ACTIONS(1913), 7, + [12707] = 2, + ACTIONS(1735), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -30070,7 +28750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1915), 30, + ACTIONS(1737), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -30089,8 +28769,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -30101,8 +28781,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [13794] = 2, - ACTIONS(1909), 7, + [12749] = 2, + ACTIONS(1739), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -30110,7 +28790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1911), 30, + ACTIONS(1741), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -30129,8 +28809,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -30141,8 +28821,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [13836] = 2, - ACTIONS(1965), 7, + [12791] = 2, + ACTIONS(1829), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -30150,9 +28830,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1967), 30, + ACTIONS(1831), 30, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30171,6 +28850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -30181,21 +28861,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [13878] = 2, - ACTIONS(1902), 7, + [12833] = 4, + ACTIONS(47), 1, anon_sym_LBRACE, + ACTIONS(79), 1, + aux_sym_strong_end_token1, + ACTIONS(1609), 8, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1904), 30, + ACTIONS(1604), 27, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -30210,7 +28894,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -30219,10 +28902,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [13920] = 2, - ACTIONS(1898), 7, + [12879] = 2, + ACTIONS(1825), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -30230,7 +28912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1900), 30, + ACTIONS(1827), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -30261,8 +28943,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [13962] = 2, - ACTIONS(1902), 7, + [12921] = 2, + ACTIONS(1821), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -30270,9 +28952,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1904), 30, + ACTIONS(1823), 30, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30291,6 +28972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -30301,22 +28983,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [14004] = 3, - ACTIONS(1991), 1, - sym__verbatim_begin, - ACTIONS(49), 9, + [12963] = 2, + ACTIONS(1817), 7, anon_sym_LBRACE, - anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(93), 27, + ACTIONS(1819), 30, + sym__verbatim_begin, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -30333,6 +29012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -30341,22 +29021,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [14048] = 2, - ACTIONS(1936), 9, + [13005] = 2, + ACTIONS(1813), 7, anon_sym_LBRACE, - anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1938), 28, + ACTIONS(1815), 30, sym__verbatim_begin, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -30373,6 +29052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -30381,22 +29061,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [14090] = 2, - ACTIONS(1823), 9, + [13047] = 2, + ACTIONS(1711), 7, anon_sym_LBRACE, - anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1825), 28, + ACTIONS(1713), 30, sym__verbatim_begin, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -30413,6 +29092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -30421,24 +29101,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [14132] = 4, - ACTIONS(1994), 1, - anon_sym_LBRACE2, - STATE(448), 1, - sym_comment, - ACTIONS(1818), 7, - anon_sym__, + [13089] = 2, + ACTIONS(1833), 7, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - sym__whitespace1, + anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1816), 28, + ACTIONS(1835), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -30463,9 +29141,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [14178] = 2, - ACTIONS(1894), 7, + [13131] = 2, + ACTIONS(1809), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -30473,7 +29152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1896), 30, + ACTIONS(1811), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -30504,8 +29183,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [14220] = 2, - ACTIONS(1890), 7, + [13173] = 2, + ACTIONS(1805), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -30513,7 +29192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1892), 30, + ACTIONS(1807), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -30544,8 +29223,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [14262] = 2, - ACTIONS(1886), 7, + [13215] = 2, + ACTIONS(1801), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -30553,7 +29232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1888), 30, + ACTIONS(1803), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -30584,8 +29263,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [14304] = 2, - ACTIONS(1882), 7, + [13257] = 2, + ACTIONS(1829), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -30593,8 +29272,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1884), 30, + ACTIONS(1831), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30613,7 +29293,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -30624,10 +29303,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [14346] = 2, - ACTIONS(1830), 9, + [13299] = 3, + ACTIONS(1883), 1, + sym__verbatim_begin, + ACTIONS(47), 9, anon_sym_LBRACE, - anon_sym__, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, @@ -30635,12 +29316,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1832), 28, - sym__verbatim_begin, + ACTIONS(79), 27, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -30664,10 +29344,10 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [14388] = 2, - ACTIONS(1834), 9, + [13343] = 2, + ACTIONS(1746), 9, anon_sym_LBRACE, - anon_sym__, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, @@ -30675,12 +29355,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1836), 28, + ACTIONS(1748), 28, sym__verbatim_begin, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -30704,10 +29384,10 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [14430] = 2, - ACTIONS(1838), 9, + [13385] = 2, + ACTIONS(1750), 9, anon_sym_LBRACE, - anon_sym__, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, @@ -30715,12 +29395,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1840), 28, + ACTIONS(1752), 28, sym__verbatim_begin, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -30744,23 +29424,25 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [14472] = 2, - ACTIONS(1842), 9, - anon_sym_LBRACE, - anon_sym__, + [13427] = 4, + ACTIONS(1886), 1, + anon_sym_LBRACE2, + STATE(436), 1, + sym_comment, + ACTIONS(1756), 7, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1844), 28, + ACTIONS(1754), 28, sym__verbatim_begin, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -30784,21 +29466,20 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [14514] = 2, - ACTIONS(1846), 9, + [13473] = 2, + ACTIONS(1825), 7, anon_sym_LBRACE, - anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1848), 28, + ACTIONS(1827), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -30823,22 +29504,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [14556] = 2, - ACTIONS(1850), 9, + [13515] = 2, + ACTIONS(1715), 7, anon_sym_LBRACE, - anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1852), 28, + ACTIONS(1717), 30, sym__verbatim_begin, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -30855,6 +29535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -30863,11 +29544,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [14598] = 2, - ACTIONS(1854), 9, + [13557] = 2, + ACTIONS(1761), 9, anon_sym_LBRACE, - anon_sym__, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, @@ -30875,12 +29557,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1856), 28, + ACTIONS(1763), 28, sym__verbatim_begin, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -30904,22 +29586,23 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [14640] = 2, - ACTIONS(1898), 7, + [13599] = 2, + ACTIONS(1765), 9, anon_sym_LBRACE, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1900), 30, + ACTIONS(1767), 28, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -30942,10 +29625,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [14682] = 2, - ACTIONS(1894), 7, + [13641] = 2, + ACTIONS(1793), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -30953,9 +29635,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1896), 30, + ACTIONS(1795), 30, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30974,6 +29655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -30984,22 +29666,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [14724] = 2, - ACTIONS(1890), 7, + [13683] = 2, + ACTIONS(1773), 9, anon_sym_LBRACE, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1892), 30, + ACTIONS(1775), 28, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -31022,23 +29705,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [14766] = 2, - ACTIONS(1878), 7, + [13725] = 2, + ACTIONS(1777), 9, anon_sym_LBRACE, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1880), 30, + ACTIONS(1779), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -31053,7 +29737,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -31062,12 +29745,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [14808] = 2, - ACTIONS(1858), 9, + [13767] = 2, + ACTIONS(1781), 9, anon_sym_LBRACE, - anon_sym__, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, @@ -31075,12 +29757,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1860), 28, + ACTIONS(1783), 28, sym__verbatim_begin, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -31104,10 +29786,10 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [14850] = 2, - ACTIONS(1862), 9, + [13809] = 2, + ACTIONS(1785), 9, anon_sym_LBRACE, - anon_sym__, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, @@ -31115,12 +29797,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1864), 28, + ACTIONS(1787), 28, sym__verbatim_begin, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -31144,10 +29826,10 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [14892] = 2, - ACTIONS(1866), 9, + [13851] = 2, + ACTIONS(1789), 9, anon_sym_LBRACE, - anon_sym__, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, @@ -31155,12 +29837,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1868), 28, + ACTIONS(1791), 28, sym__verbatim_begin, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -31184,10 +29866,10 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [14934] = 2, - ACTIONS(1870), 9, + [13893] = 2, + ACTIONS(1793), 9, anon_sym_LBRACE, - anon_sym__, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, @@ -31195,12 +29877,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1872), 28, + ACTIONS(1795), 28, sym__verbatim_begin, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -31224,10 +29906,10 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [14976] = 2, - ACTIONS(1874), 9, + [13935] = 2, + ACTIONS(1715), 9, anon_sym_LBRACE, - anon_sym__, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, @@ -31235,12 +29917,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1876), 28, + ACTIONS(1717), 28, sym__verbatim_begin, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -31264,21 +29946,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [15018] = 2, - ACTIONS(1878), 9, + [13977] = 2, + ACTIONS(1789), 7, anon_sym_LBRACE, - anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1880), 28, + ACTIONS(1791), 30, sym__verbatim_begin, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -31295,6 +29975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -31303,22 +29984,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [15060] = 2, - ACTIONS(1882), 9, + [14019] = 2, + ACTIONS(1785), 7, anon_sym_LBRACE, - anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1884), 28, + ACTIONS(1787), 30, sym__verbatim_begin, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -31335,6 +30015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -31343,22 +30024,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [15102] = 2, - ACTIONS(1886), 9, + [14061] = 2, + ACTIONS(1781), 7, anon_sym_LBRACE, - anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1888), 28, + ACTIONS(1783), 30, sym__verbatim_begin, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -31375,6 +30055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -31383,22 +30064,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [15144] = 2, - ACTIONS(1890), 9, + [14103] = 2, + ACTIONS(1777), 7, anon_sym_LBRACE, - anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1892), 28, + ACTIONS(1779), 30, sym__verbatim_begin, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -31415,6 +30095,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -31423,11 +30104,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [15186] = 2, - ACTIONS(1894), 9, + [14145] = 2, + ACTIONS(1801), 9, anon_sym_LBRACE, - anon_sym__, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, @@ -31435,12 +30117,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1896), 28, + ACTIONS(1803), 28, sym__verbatim_begin, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -31464,10 +30146,10 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [15228] = 2, - ACTIONS(1898), 9, + [14187] = 2, + ACTIONS(1805), 9, anon_sym_LBRACE, - anon_sym__, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, @@ -31475,12 +30157,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1900), 28, + ACTIONS(1807), 28, sym__verbatim_begin, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -31504,10 +30186,10 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [15270] = 2, - ACTIONS(1902), 9, + [14229] = 2, + ACTIONS(1809), 9, anon_sym_LBRACE, - anon_sym__, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, @@ -31515,12 +30197,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1904), 28, + ACTIONS(1811), 28, sym__verbatim_begin, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -31544,8 +30226,8 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [15312] = 2, - ACTIONS(1874), 7, + [14271] = 2, + ACTIONS(1773), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -31553,7 +30235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1876), 30, + ACTIONS(1775), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -31584,10 +30266,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [15354] = 2, - ACTIONS(1909), 9, + [14313] = 2, + ACTIONS(1813), 9, anon_sym_LBRACE, - anon_sym__, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, @@ -31595,12 +30277,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1911), 28, + ACTIONS(1815), 28, sym__verbatim_begin, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -31624,10 +30306,10 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [15396] = 2, - ACTIONS(1913), 9, + [14355] = 2, + ACTIONS(1817), 9, anon_sym_LBRACE, - anon_sym__, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, @@ -31635,12 +30317,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1915), 28, + ACTIONS(1819), 28, sym__verbatim_begin, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -31664,10 +30346,10 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [15438] = 2, - ACTIONS(1917), 9, + [14397] = 2, + ACTIONS(1821), 9, anon_sym_LBRACE, - anon_sym__, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, @@ -31675,12 +30357,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1919), 28, + ACTIONS(1823), 28, sym__verbatim_begin, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -31704,10 +30386,10 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [15480] = 2, - ACTIONS(1921), 9, + [14439] = 2, + ACTIONS(1825), 9, anon_sym_LBRACE, - anon_sym__, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, @@ -31715,12 +30397,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1923), 28, + ACTIONS(1827), 28, sym__verbatim_begin, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -31744,10 +30426,10 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [15522] = 2, - ACTIONS(1925), 9, + [14481] = 2, + ACTIONS(1829), 9, anon_sym_LBRACE, - anon_sym__, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, @@ -31755,12 +30437,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1927), 28, + ACTIONS(1831), 28, sym__verbatim_begin, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -31784,10 +30466,10 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [15564] = 2, - ACTIONS(1929), 9, + [14523] = 2, + ACTIONS(1833), 9, anon_sym_LBRACE, - anon_sym__, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, @@ -31795,12 +30477,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1931), 28, + ACTIONS(1835), 28, sym__verbatim_begin, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -31824,8 +30506,8 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [15606] = 2, - ACTIONS(1886), 7, + [14565] = 2, + ACTIONS(1765), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -31833,9 +30515,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1888), 30, + ACTIONS(1767), 30, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31854,6 +30535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -31864,12 +30546,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [15648] = 4, - ACTIONS(49), 1, + [14607] = 2, + ACTIONS(1837), 9, anon_sym_LBRACE, - ACTIONS(93), 1, - aux_sym_strong_end_token1, - ACTIONS(1697), 8, anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, @@ -31878,11 +30557,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1692), 27, + ACTIONS(1839), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -31906,21 +30586,23 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [15694] = 2, - ACTIONS(1870), 7, + [14649] = 2, + ACTIONS(1719), 9, anon_sym_LBRACE, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1872), 30, + ACTIONS(1721), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -31935,7 +30617,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -31944,14 +30625,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [15736] = 4, - ACTIONS(49), 1, + [14691] = 2, + ACTIONS(1723), 9, anon_sym_LBRACE, - ACTIONS(93), 1, - aux_sym_strong_end_token1, - ACTIONS(1705), 8, anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, @@ -31960,11 +30637,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1700), 27, + ACTIONS(1725), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -31988,21 +30666,23 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [15782] = 2, - ACTIONS(1866), 7, + [14733] = 2, + ACTIONS(1727), 9, anon_sym_LBRACE, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1868), 30, + ACTIONS(1729), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -32017,7 +30697,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -32026,23 +30705,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [15824] = 2, - ACTIONS(1862), 7, + [14775] = 2, + ACTIONS(1731), 9, anon_sym_LBRACE, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1864), 30, + ACTIONS(1733), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -32057,7 +30737,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -32066,23 +30745,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [15866] = 2, - ACTIONS(1858), 7, + [14817] = 2, + ACTIONS(1735), 9, anon_sym_LBRACE, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1860), 30, + ACTIONS(1737), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -32097,7 +30777,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -32106,24 +30785,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [15908] = 2, - ACTIONS(1882), 7, + [14859] = 2, + ACTIONS(1739), 9, anon_sym_LBRACE, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1884), 30, + ACTIONS(1741), 28, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -32146,10 +30825,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [15950] = 2, - ACTIONS(1878), 7, + [14901] = 2, + ACTIONS(1821), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -32157,7 +30835,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1880), 30, + ACTIONS(1823), 30, sym__verbatim_begin, ts_builtin_sym_end, anon_sym_LBRACE_, @@ -32188,8 +30866,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [15992] = 2, - ACTIONS(1874), 7, + [14943] = 2, + ACTIONS(1761), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -32197,9 +30875,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1876), 30, + ACTIONS(1763), 30, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32218,6 +30895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -32228,18 +30906,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [16034] = 2, - ACTIONS(1870), 7, + [14985] = 4, + ACTIONS(1681), 1, anon_sym_LBRACE, + STATE(552), 1, + sym_inline_attribute, + ACTIONS(1618), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1872), 30, + ACTIONS(1616), 29, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32268,25 +30948,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [16076] = 2, - ACTIONS(1866), 7, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(1868), 30, + [15031] = 3, + ACTIONS(1889), 1, + aux_sym_autolink_token1, + ACTIONS(79), 3, sym__verbatim_begin, - ts_builtin_sym_end, + sym__whitespace1, + sym__newline, + ACTIONS(47), 33, + anon_sym_LBRACE, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, + sym_en_dash, + sym_backslash_escape, anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, @@ -32298,6 +30978,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK, + anon_sym_LBRACE2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -32306,10 +30988,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, - sym__newline, - [16118] = 2, - ACTIONS(1862), 7, + aux_sym__text_token1, + [15075] = 2, + ACTIONS(1817), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -32317,7 +30998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1864), 30, + ACTIONS(1819), 30, sym__verbatim_begin, ts_builtin_sym_end, anon_sym_LBRACE_, @@ -32348,8 +31029,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [16160] = 2, - ACTIONS(1858), 7, + [15117] = 2, + ACTIONS(1813), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -32357,7 +31038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1860), 30, + ACTIONS(1815), 30, sym__verbatim_begin, ts_builtin_sym_end, anon_sym_LBRACE_, @@ -32387,25 +31068,23 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__whitespace1, - sym__newline, - [16202] = 3, - ACTIONS(1997), 1, - sym__verbatim_begin, - ACTIONS(49), 9, + sym__newline, + [15159] = 2, + ACTIONS(1711), 7, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(93), 27, + ACTIONS(1713), 30, + sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -32428,24 +31107,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [16246] = 2, - ACTIONS(1936), 9, + [15201] = 2, + ACTIONS(1809), 7, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1938), 28, + ACTIONS(1811), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -32468,24 +31147,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [16288] = 2, - ACTIONS(1823), 9, + [15243] = 2, + ACTIONS(1805), 7, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1825), 28, + ACTIONS(1807), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -32508,26 +31187,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [16330] = 4, - ACTIONS(2000), 1, - anon_sym_LBRACE2, - STATE(500), 1, - sym_comment, - ACTIONS(1818), 7, - anon_sym_STAR, + [15285] = 2, + ACTIONS(1801), 7, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - sym__whitespace1, + anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1816), 28, + ACTIONS(1803), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -32550,9 +31227,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [16376] = 2, - ACTIONS(1969), 7, + [15327] = 2, + ACTIONS(1773), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -32560,7 +31238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1971), 30, + ACTIONS(1775), 30, sym__verbatim_begin, ts_builtin_sym_end, anon_sym_LBRACE_, @@ -32591,16 +31269,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [16418] = 2, - ACTIONS(1854), 7, - anon_sym_LBRACE, + [15369] = 4, + ACTIONS(1891), 1, + anon_sym_LBRACE2, + STATE(450), 1, + sym_comment, + ACTIONS(1756), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1856), 30, + ACTIONS(1754), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32631,23 +31311,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [16460] = 2, - ACTIONS(1812), 9, + [15415] = 2, + ACTIONS(1750), 7, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1814), 28, + ACTIONS(1752), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -32662,6 +31340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -32670,9 +31349,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [16502] = 2, - ACTIONS(1850), 7, + [15457] = 2, + ACTIONS(1746), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -32680,7 +31360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1852), 30, + ACTIONS(1748), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32711,23 +31391,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [16544] = 2, - ACTIONS(1830), 9, + [15499] = 3, + ACTIONS(1894), 1, + sym__verbatim_begin, + ACTIONS(47), 7, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1832), 28, - sym__verbatim_begin, + ACTIONS(79), 29, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -32742,6 +31421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -32750,24 +31430,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [16586] = 2, - ACTIONS(1834), 9, + [15543] = 2, + ACTIONS(1777), 7, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1836), 28, + ACTIONS(1779), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -32790,24 +31470,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [16628] = 2, - ACTIONS(1838), 9, + [15585] = 2, + ACTIONS(1781), 7, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1840), 28, + ACTIONS(1783), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -32830,24 +31510,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [16670] = 2, - ACTIONS(1842), 9, + [15627] = 2, + ACTIONS(1785), 7, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1844), 28, + ACTIONS(1787), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -32870,24 +31550,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [16712] = 2, - ACTIONS(1846), 9, + [15669] = 2, + ACTIONS(1789), 7, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1848), 28, + ACTIONS(1791), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -32910,24 +31590,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [16754] = 2, - ACTIONS(1850), 9, + [15711] = 2, + ACTIONS(1793), 7, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1852), 28, + ACTIONS(1795), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -32950,24 +31630,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [16796] = 2, - ACTIONS(1854), 9, + [15753] = 2, + ACTIONS(1715), 7, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1856), 28, + ACTIONS(1717), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -32990,17 +31670,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [16838] = 2, - ACTIONS(1846), 7, - anon_sym_LBRACE, + [15795] = 4, + ACTIONS(1899), 1, + anon_sym_SPACE, + STATE(486), 1, + aux_sym_strong_begin_repeat1, + ACTIONS(1902), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1848), 30, + ACTIONS(1897), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -33020,7 +31705,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -33029,18 +31713,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [16880] = 2, - ACTIONS(1842), 7, + [15841] = 4, + ACTIONS(47), 1, anon_sym_LBRACE, + ACTIONS(79), 1, + anon_sym_RBRACK2, + ACTIONS(1609), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1844), 30, + ACTIONS(1604), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -33060,7 +31746,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -33071,8 +31756,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [16922] = 2, - ACTIONS(1838), 7, + [15887] = 2, + ACTIONS(1769), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -33080,8 +31765,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1840), 30, + ACTIONS(1771), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33100,7 +31786,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -33111,8 +31796,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [16964] = 2, - ACTIONS(1834), 7, + [15929] = 2, + ACTIONS(1797), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -33120,8 +31805,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1836), 30, + ACTIONS(1799), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33140,7 +31826,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -33151,23 +31836,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [17006] = 2, - ACTIONS(1858), 9, + [15971] = 4, + ACTIONS(1904), 1, + aux_sym__text_token1, + STATE(490), 1, + aux_sym__text, + ACTIONS(1660), 6, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, - aux_sym__text_token1, - ACTIONS(1860), 28, + ACTIONS(1662), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -33190,24 +31876,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [17048] = 2, - ACTIONS(1862), 9, - anon_sym_LBRACE, - anon_sym_STAR, + [16017] = 2, + ACTIONS(1797), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1864), 28, + ACTIONS(1799), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -33219,7 +31904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -33230,24 +31915,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [17090] = 2, - ACTIONS(1866), 9, + [16058] = 2, + ACTIONS(1777), 7, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1868), 28, + ACTIONS(1779), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -33270,24 +31954,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [17132] = 2, - ACTIONS(1870), 9, + [16099] = 2, + ACTIONS(1789), 7, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1872), 28, + ACTIONS(1791), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -33310,30 +31993,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [17174] = 2, - ACTIONS(1874), 9, - anon_sym_LBRACE, - anon_sym_STAR, + [16140] = 2, + ACTIONS(1909), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1876), 28, + ACTIONS(1907), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -33350,30 +32032,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [17216] = 2, - ACTIONS(1878), 9, - anon_sym_LBRACE, - anon_sym_STAR, + [16181] = 2, + ACTIONS(1797), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1880), 28, + ACTIONS(1799), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -33390,24 +32071,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [17258] = 2, - ACTIONS(1882), 9, + [16222] = 2, + ACTIONS(1785), 7, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1884), 28, + ACTIONS(1787), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -33430,24 +32110,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [17300] = 2, - ACTIONS(1886), 9, + [16263] = 2, + ACTIONS(1801), 7, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1888), 28, + ACTIONS(1803), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -33470,24 +32149,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [17342] = 2, - ACTIONS(1890), 9, + [16304] = 2, + ACTIONS(1805), 7, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1892), 28, + ACTIONS(1807), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -33510,24 +32188,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [17384] = 2, - ACTIONS(1894), 9, + [16345] = 2, + ACTIONS(1809), 7, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1896), 28, + ACTIONS(1811), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -33550,24 +32227,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [17426] = 2, - ACTIONS(1898), 9, + [16386] = 2, + ACTIONS(1711), 7, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1900), 28, + ACTIONS(1713), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -33590,24 +32266,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [17468] = 2, - ACTIONS(1902), 9, + [16427] = 2, + ACTIONS(1813), 7, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1904), 28, + ACTIONS(1815), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -33630,9 +32305,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [17510] = 2, - ACTIONS(1830), 7, + [16468] = 2, + ACTIONS(1817), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -33640,7 +32316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1832), 30, + ACTIONS(1819), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -33660,7 +32336,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -33671,23 +32346,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [17552] = 2, - ACTIONS(1909), 9, + [16509] = 2, + ACTIONS(1821), 7, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1911), 28, + ACTIONS(1823), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -33710,24 +32383,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [17594] = 2, - ACTIONS(1913), 9, + [16550] = 2, + ACTIONS(1825), 7, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1915), 28, + ACTIONS(1827), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -33750,24 +32422,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [17636] = 2, - ACTIONS(1917), 9, + [16591] = 2, + ACTIONS(1829), 7, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1919), 28, + ACTIONS(1831), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -33790,24 +32461,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [17678] = 2, - ACTIONS(1921), 9, + [16632] = 2, + ACTIONS(1833), 7, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1923), 28, + ACTIONS(1835), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -33830,24 +32500,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [17720] = 2, - ACTIONS(1925), 9, + [16673] = 2, + ACTIONS(1781), 7, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1927), 28, + ACTIONS(1783), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -33870,24 +32539,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [17762] = 2, - ACTIONS(1929), 9, + [16714] = 2, + ACTIONS(1837), 7, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1931), 28, + ACTIONS(1839), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -33910,9 +32578,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [17804] = 2, - ACTIONS(1812), 7, + [16755] = 2, + ACTIONS(1719), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -33920,7 +32589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1814), 30, + ACTIONS(1721), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -33940,7 +32609,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -33951,19 +32619,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [17846] = 4, - ACTIONS(49), 1, + [16796] = 2, + ACTIONS(1723), 7, anon_sym_LBRACE, - ACTIONS(93), 1, - anon_sym_RBRACK2, - ACTIONS(1697), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1692), 29, + ACTIONS(1725), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -33993,8 +32658,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [17892] = 2, - ACTIONS(1830), 7, + [16837] = 2, + ACTIONS(1727), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -34002,9 +32667,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1832), 30, + ACTIONS(1729), 29, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -34033,19 +32697,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [17934] = 4, - ACTIONS(49), 1, + [16878] = 2, + ACTIONS(1769), 7, anon_sym_LBRACE, - ACTIONS(93), 1, - anon_sym_RBRACK2, - ACTIONS(1705), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1700), 29, + ACTIONS(1771), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -34075,8 +32736,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [17980] = 2, - ACTIONS(1936), 7, + [16919] = 2, + ACTIONS(1735), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -34084,7 +32745,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1938), 30, + ACTIONS(1737), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -34096,7 +32757,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -34115,20 +32775,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [18022] = 4, - ACTIONS(2005), 1, - anon_sym_SPACE, - STATE(535), 1, - aux_sym_emphasis_begin_repeat1, - ACTIONS(2008), 7, + [16960] = 2, + ACTIONS(1739), 7, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(2003), 28, + ACTIONS(1741), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -34156,9 +32812,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [18068] = 2, - ACTIONS(1854), 7, + [17001] = 2, + ACTIONS(1797), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -34166,9 +32823,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1856), 30, + ACTIONS(1799), 29, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -34197,18 +32853,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [18110] = 2, - ACTIONS(1850), 7, - anon_sym_LBRACE, + [17042] = 2, + ACTIONS(1769), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1852), 30, + ACTIONS(1771), 30, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -34219,6 +32873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -34237,16 +32892,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [18152] = 2, - ACTIONS(1846), 7, - anon_sym_LBRACE, + [17083] = 2, + ACTIONS(1797), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1848), 30, + ACTIONS(1799), 30, sym__verbatim_begin, ts_builtin_sym_end, anon_sym_LBRACE_, @@ -34277,8 +32931,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [18194] = 2, - ACTIONS(1842), 7, + [17124] = 2, + ACTIONS(1773), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -34286,9 +32940,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1844), 30, + ACTIONS(1775), 29, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -34317,18 +32970,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [18236] = 2, - ACTIONS(1838), 7, - anon_sym_LBRACE, + [17165] = 2, + ACTIONS(1909), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1840), 30, + ACTIONS(1907), 30, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -34340,6 +32991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -34357,8 +33009,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [18278] = 2, - ACTIONS(1823), 7, + [17206] = 2, + ACTIONS(1765), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -34366,7 +33018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1825), 30, + ACTIONS(1767), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -34386,7 +33038,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -34397,8 +33048,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [18320] = 2, - ACTIONS(1834), 7, + [17247] = 2, + ACTIONS(1761), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -34406,9 +33057,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1836), 30, + ACTIONS(1763), 29, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -34437,16 +33087,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [18362] = 2, - ACTIONS(1936), 7, - anon_sym_LBRACE, + [17288] = 2, + ACTIONS(1797), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1938), 30, + ACTIONS(1799), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -34459,6 +33108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -34466,7 +33116,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -34477,18 +33126,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [18404] = 3, - ACTIONS(2010), 1, - sym__verbatim_begin, - ACTIONS(49), 7, - anon_sym_LBRACE, + [17329] = 2, + ACTIONS(1769), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(93), 29, + ACTIONS(1771), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -34500,6 +33147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -34507,7 +33155,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -34518,17 +33165,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [18448] = 2, - ACTIONS(1965), 6, + [17370] = 2, + ACTIONS(1769), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1967), 30, + ACTIONS(1771), 30, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -34538,6 +33184,7 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -34557,15 +33204,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [18489] = 2, - ACTIONS(2015), 6, + [17411] = 4, + ACTIONS(1911), 1, + anon_sym_LBRACE2, + STATE(518), 1, + sym_comment, + ACTIONS(1756), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(2013), 30, + ACTIONS(1754), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -34577,7 +33227,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -34596,17 +33245,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [18530] = 2, - ACTIONS(1969), 6, + [17456] = 2, + ACTIONS(1797), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1971), 30, + ACTIONS(1799), 30, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -34616,6 +33264,7 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -34635,16 +33284,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [18571] = 2, - ACTIONS(1965), 7, + [17497] = 2, + ACTIONS(1750), 7, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1967), 29, + ACTIONS(1752), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -34659,7 +33308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -34674,15 +33323,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [18612] = 2, - ACTIONS(1969), 6, + [17538] = 2, + ACTIONS(1746), 7, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1971), 30, + ACTIONS(1748), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -34694,7 +33344,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -34713,16 +33362,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [18653] = 2, - ACTIONS(1965), 6, + [17579] = 3, + ACTIONS(1914), 1, + sym__verbatim_begin, + ACTIONS(47), 7, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1967), 30, - sym__verbatim_begin, + ACTIONS(79), 28, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -34733,7 +33384,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -34752,15 +33402,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [18694] = 2, - ACTIONS(2015), 6, + [17622] = 2, + ACTIONS(1909), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(2013), 30, + ACTIONS(1907), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -34775,12 +33426,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -34791,8 +33441,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [18735] = 2, - ACTIONS(1965), 8, + [17663] = 2, + ACTIONS(1909), 8, anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, @@ -34801,7 +33451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1967), 28, + ACTIONS(1907), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -34830,22 +33480,21 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [18776] = 2, - ACTIONS(1969), 8, - anon_sym_STAR, + [17704] = 2, + ACTIONS(1797), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1971), 28, + ACTIONS(1799), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -34855,7 +33504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -34868,16 +33517,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [18817] = 2, - ACTIONS(1969), 6, + [17745] = 3, + ACTIONS(47), 1, + anon_sym_LBRACE, + ACTIONS(1609), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1971), 30, + ACTIONS(1604), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -34888,7 +33540,6 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -34908,20 +33559,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [18858] = 2, - ACTIONS(2015), 6, + [17788] = 2, + ACTIONS(1769), 8, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(2013), 30, + ACTIONS(1771), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -34929,7 +33582,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -34945,17 +33597,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [18899] = 2, - ACTIONS(1969), 6, + [17829] = 2, + ACTIONS(1909), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1971), 30, + ACTIONS(1907), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -34968,7 +33619,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -34976,6 +33626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -34986,22 +33637,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [18940] = 2, - ACTIONS(2015), 8, - anon_sym_STAR, + [17870] = 2, + ACTIONS(1769), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(2013), 28, + ACTIONS(1771), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -35011,7 +33661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -35024,21 +33674,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [18981] = 2, - ACTIONS(1965), 6, + [17911] = 2, + ACTIONS(1797), 8, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1967), 30, + ACTIONS(1799), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -35046,7 +33699,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -35062,18 +33714,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [19022] = 2, - ACTIONS(2015), 7, + [17952] = 2, + ACTIONS(1909), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(2013), 29, + ACTIONS(1907), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -35084,13 +33734,14 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -35103,15 +33754,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [19063] = 2, - ACTIONS(2015), 6, + [17993] = 2, + ACTIONS(1909), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(2013), 30, + ACTIONS(1907), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -35122,14 +33774,13 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -35142,15 +33793,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [19104] = 2, - ACTIONS(1965), 6, + [18034] = 2, + ACTIONS(1793), 7, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1967), 30, + ACTIONS(1795), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -35161,7 +33813,6 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -35181,8 +33832,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [19145] = 2, - ACTIONS(1969), 7, + [18075] = 2, + ACTIONS(1769), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, @@ -35190,7 +33841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1971), 29, + ACTIONS(1771), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -35220,16 +33871,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [19186] = 2, - ACTIONS(1965), 7, + [18116] = 2, + ACTIONS(1731), 7, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1967), 29, + ACTIONS(1733), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -35246,7 +33897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -35259,15 +33910,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [19227] = 2, - ACTIONS(2015), 6, + [18157] = 2, + ACTIONS(1715), 7, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(2013), 30, + ACTIONS(1717), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -35286,7 +33938,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -35298,16 +33949,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [19268] = 2, - ACTIONS(2015), 7, + [18198] = 2, + ACTIONS(1769), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(2013), 29, + ACTIONS(1771), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -35322,11 +33972,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -35337,16 +33988,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [19309] = 2, - ACTIONS(1969), 7, + [18239] = 2, + ACTIONS(1797), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1971), 29, + ACTIONS(1799), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -35361,11 +34011,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -35376,20 +34027,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [19350] = 2, - ACTIONS(1965), 8, - anon_sym__, + [18280] = 2, + ACTIONS(1909), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1967), 28, + ACTIONS(1907), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -35414,21 +34064,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [19391] = 2, - ACTIONS(1969), 8, - anon_sym__, + [18321] = 2, + ACTIONS(1909), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1971), 28, + ACTIONS(1907), 30, sym__verbatim_begin, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -35444,6 +34093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -35453,21 +34103,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [19432] = 2, - ACTIONS(2015), 8, - anon_sym__, + [18362] = 2, + ACTIONS(1797), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(2013), 28, + ACTIONS(1799), 30, sym__verbatim_begin, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -35483,6 +34132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -35492,16 +34142,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [19473] = 2, - ACTIONS(1965), 6, + [18403] = 2, + ACTIONS(1769), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1967), 30, + ACTIONS(1771), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -35520,8 +34171,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -35532,15 +34183,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [19514] = 2, - ACTIONS(2015), 6, + [18444] = 2, + ACTIONS(1769), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(2013), 30, + ACTIONS(1771), 30, sym__verbatim_begin, ts_builtin_sym_end, anon_sym_LBRACE_, @@ -35571,15 +34222,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [19555] = 2, - ACTIONS(1969), 6, + [18485] = 2, + ACTIONS(1797), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1971), 30, + ACTIONS(1799), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -35599,7 +34250,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -35610,15 +34260,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [19596] = 2, - ACTIONS(1969), 6, + [18525] = 2, + ACTIONS(1909), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1971), 30, + ACTIONS(1907), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -35637,7 +34287,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -35649,15 +34298,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [19637] = 2, - ACTIONS(1965), 6, + [18565] = 2, + ACTIONS(1769), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1967), 30, + ACTIONS(1771), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -35676,7 +34325,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -35688,910 +34336,910 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [19678] = 9, - ACTIONS(2017), 1, + [18605] = 9, + ACTIONS(1917), 1, anon_sym_RBRACE, - ACTIONS(2019), 1, + ACTIONS(1919), 1, sym__id, - ACTIONS(2021), 1, + ACTIONS(1921), 1, anon_sym_PERCENT, - ACTIONS(2025), 1, + ACTIONS(1925), 1, anon_sym_DOT, - STATE(612), 1, + STATE(557), 1, aux_sym_inline_attribute_repeat1, - STATE(617), 1, + STATE(599), 1, sym__comment_with_newline, - STATE(875), 1, + STATE(766), 1, sym_key, - STATE(616), 2, + STATE(597), 2, sym_class, sym_key_value, - ACTIONS(2023), 3, + ACTIONS(1923), 3, sym__whitespace1, sym__newline, sym_identifier, - [19709] = 9, - ACTIONS(2019), 1, + [18636] = 9, + ACTIONS(1919), 1, sym__id, - ACTIONS(2021), 1, + ACTIONS(1921), 1, anon_sym_PERCENT, - ACTIONS(2025), 1, + ACTIONS(1925), 1, anon_sym_DOT, - ACTIONS(2027), 1, + ACTIONS(1927), 1, anon_sym_RBRACE, - STATE(578), 1, + STATE(557), 1, aux_sym_inline_attribute_repeat1, - STATE(617), 1, + STATE(599), 1, sym__comment_with_newline, - STATE(875), 1, + STATE(766), 1, sym_key, - STATE(616), 2, + STATE(597), 2, sym_class, sym_key_value, - ACTIONS(2023), 3, + ACTIONS(1923), 3, sym__whitespace1, sym__newline, sym_identifier, - [19740] = 9, - ACTIONS(2019), 1, + [18667] = 9, + ACTIONS(1919), 1, sym__id, - ACTIONS(2021), 1, + ACTIONS(1921), 1, anon_sym_PERCENT, - ACTIONS(2025), 1, + ACTIONS(1925), 1, anon_sym_DOT, - ACTIONS(2029), 1, + ACTIONS(1929), 1, anon_sym_RBRACE, - STATE(580), 1, + STATE(557), 1, aux_sym_inline_attribute_repeat1, - STATE(617), 1, + STATE(599), 1, sym__comment_with_newline, - STATE(875), 1, + STATE(766), 1, sym_key, - STATE(616), 2, + STATE(597), 2, sym_class, sym_key_value, - ACTIONS(2023), 3, + ACTIONS(1923), 3, sym__whitespace1, sym__newline, sym_identifier, - [19771] = 9, - ACTIONS(2031), 1, + [18698] = 9, + ACTIONS(1931), 1, anon_sym_RBRACE, - ACTIONS(2033), 1, + ACTIONS(1933), 1, sym__id, - ACTIONS(2036), 1, + ACTIONS(1936), 1, anon_sym_PERCENT, - ACTIONS(2042), 1, + ACTIONS(1942), 1, anon_sym_DOT, - STATE(578), 1, + STATE(557), 1, aux_sym_inline_attribute_repeat1, - STATE(617), 1, + STATE(599), 1, sym__comment_with_newline, - STATE(875), 1, + STATE(766), 1, sym_key, - STATE(616), 2, + STATE(597), 2, sym_class, sym_key_value, - ACTIONS(2039), 3, + ACTIONS(1939), 3, sym__whitespace1, sym__newline, sym_identifier, - [19802] = 9, - ACTIONS(2019), 1, + [18729] = 9, + ACTIONS(1919), 1, sym__id, - ACTIONS(2021), 1, + ACTIONS(1921), 1, anon_sym_PERCENT, - ACTIONS(2025), 1, + ACTIONS(1925), 1, anon_sym_DOT, - ACTIONS(2045), 1, + ACTIONS(1945), 1, anon_sym_RBRACE, - STATE(578), 1, + STATE(556), 1, aux_sym_inline_attribute_repeat1, - STATE(617), 1, + STATE(599), 1, sym__comment_with_newline, - STATE(875), 1, + STATE(766), 1, sym_key, - STATE(616), 2, + STATE(597), 2, sym_class, sym_key_value, - ACTIONS(2023), 3, + ACTIONS(1923), 3, sym__whitespace1, sym__newline, sym_identifier, - [19833] = 9, - ACTIONS(2019), 1, + [18760] = 9, + ACTIONS(1919), 1, sym__id, - ACTIONS(2021), 1, + ACTIONS(1921), 1, anon_sym_PERCENT, - ACTIONS(2025), 1, + ACTIONS(1925), 1, anon_sym_DOT, - ACTIONS(2047), 1, + ACTIONS(1947), 1, anon_sym_RBRACE, - STATE(578), 1, + STATE(557), 1, aux_sym_inline_attribute_repeat1, - STATE(617), 1, + STATE(599), 1, sym__comment_with_newline, - STATE(875), 1, + STATE(766), 1, sym_key, - STATE(616), 2, + STATE(597), 2, sym_class, sym_key_value, - ACTIONS(2023), 3, + ACTIONS(1923), 3, sym__whitespace1, sym__newline, sym_identifier, - [19864] = 9, - ACTIONS(2019), 1, + [18791] = 9, + ACTIONS(1919), 1, sym__id, - ACTIONS(2021), 1, + ACTIONS(1921), 1, anon_sym_PERCENT, - ACTIONS(2025), 1, + ACTIONS(1925), 1, anon_sym_DOT, - ACTIONS(2049), 1, + ACTIONS(1949), 1, anon_sym_RBRACE, - STATE(578), 1, + STATE(557), 1, aux_sym_inline_attribute_repeat1, - STATE(617), 1, + STATE(599), 1, sym__comment_with_newline, - STATE(875), 1, + STATE(766), 1, sym_key, - STATE(616), 2, + STATE(597), 2, sym_class, sym_key_value, - ACTIONS(2023), 3, + ACTIONS(1923), 3, sym__whitespace1, sym__newline, sym_identifier, - [19895] = 9, - ACTIONS(2019), 1, + [18822] = 9, + ACTIONS(1919), 1, sym__id, - ACTIONS(2021), 1, + ACTIONS(1921), 1, anon_sym_PERCENT, - ACTIONS(2025), 1, + ACTIONS(1925), 1, anon_sym_DOT, - ACTIONS(2051), 1, + ACTIONS(1951), 1, anon_sym_RBRACE, - STATE(579), 1, + STATE(559), 1, aux_sym_inline_attribute_repeat1, - STATE(617), 1, + STATE(599), 1, sym__comment_with_newline, - STATE(875), 1, + STATE(766), 1, sym_key, - STATE(616), 2, + STATE(597), 2, sym_class, sym_key_value, - ACTIONS(2023), 3, + ACTIONS(1923), 3, sym__whitespace1, sym__newline, sym_identifier, - [19926] = 9, - ACTIONS(2019), 1, + [18853] = 9, + ACTIONS(1919), 1, sym__id, - ACTIONS(2021), 1, + ACTIONS(1921), 1, anon_sym_PERCENT, - ACTIONS(2025), 1, + ACTIONS(1925), 1, anon_sym_DOT, - ACTIONS(2053), 1, + ACTIONS(1953), 1, anon_sym_RBRACE, - STATE(584), 1, + STATE(557), 1, aux_sym_inline_attribute_repeat1, - STATE(617), 1, + STATE(599), 1, sym__comment_with_newline, - STATE(875), 1, + STATE(766), 1, sym_key, - STATE(616), 2, + STATE(597), 2, sym_class, sym_key_value, - ACTIONS(2023), 3, + ACTIONS(1923), 3, sym__whitespace1, sym__newline, sym_identifier, - [19957] = 9, - ACTIONS(2019), 1, + [18884] = 9, + ACTIONS(1919), 1, sym__id, - ACTIONS(2021), 1, + ACTIONS(1921), 1, anon_sym_PERCENT, - ACTIONS(2025), 1, + ACTIONS(1925), 1, anon_sym_DOT, - ACTIONS(2055), 1, + ACTIONS(1955), 1, anon_sym_RBRACE, - STATE(578), 1, + STATE(576), 1, aux_sym_inline_attribute_repeat1, - STATE(617), 1, + STATE(599), 1, sym__comment_with_newline, - STATE(875), 1, + STATE(766), 1, sym_key, - STATE(616), 2, + STATE(597), 2, sym_class, sym_key_value, - ACTIONS(2023), 3, + ACTIONS(1923), 3, sym__whitespace1, sym__newline, sym_identifier, - [19988] = 9, - ACTIONS(2019), 1, + [18915] = 9, + ACTIONS(1919), 1, sym__id, - ACTIONS(2021), 1, + ACTIONS(1921), 1, anon_sym_PERCENT, - ACTIONS(2025), 1, + ACTIONS(1925), 1, anon_sym_DOT, - ACTIONS(2057), 1, + ACTIONS(1957), 1, anon_sym_RBRACE, - STATE(578), 1, + STATE(573), 1, aux_sym_inline_attribute_repeat1, - STATE(617), 1, + STATE(599), 1, sym__comment_with_newline, - STATE(875), 1, + STATE(766), 1, sym_key, - STATE(616), 2, + STATE(597), 2, sym_class, sym_key_value, - ACTIONS(2023), 3, + ACTIONS(1923), 3, sym__whitespace1, sym__newline, sym_identifier, - [20019] = 9, - ACTIONS(2019), 1, + [18946] = 9, + ACTIONS(1919), 1, sym__id, - ACTIONS(2021), 1, + ACTIONS(1921), 1, anon_sym_PERCENT, - ACTIONS(2025), 1, + ACTIONS(1925), 1, anon_sym_DOT, - ACTIONS(2059), 1, + ACTIONS(1959), 1, anon_sym_RBRACE, - STATE(598), 1, + STATE(555), 1, aux_sym_inline_attribute_repeat1, - STATE(617), 1, + STATE(599), 1, sym__comment_with_newline, - STATE(875), 1, + STATE(766), 1, sym_key, - STATE(616), 2, + STATE(597), 2, sym_class, sym_key_value, - ACTIONS(2023), 3, + ACTIONS(1923), 3, sym__whitespace1, sym__newline, sym_identifier, - [20050] = 9, - ACTIONS(2019), 1, + [18977] = 9, + ACTIONS(1919), 1, sym__id, - ACTIONS(2021), 1, + ACTIONS(1921), 1, anon_sym_PERCENT, - ACTIONS(2025), 1, + ACTIONS(1925), 1, anon_sym_DOT, - ACTIONS(2061), 1, + ACTIONS(1961), 1, anon_sym_RBRACE, - STATE(589), 1, + STATE(580), 1, aux_sym_inline_attribute_repeat1, - STATE(617), 1, + STATE(599), 1, sym__comment_with_newline, - STATE(875), 1, + STATE(766), 1, sym_key, - STATE(616), 2, + STATE(597), 2, sym_class, sym_key_value, - ACTIONS(2023), 3, + ACTIONS(1923), 3, sym__whitespace1, sym__newline, sym_identifier, - [20081] = 9, - ACTIONS(2019), 1, + [19008] = 9, + ACTIONS(1919), 1, sym__id, - ACTIONS(2021), 1, + ACTIONS(1921), 1, anon_sym_PERCENT, - ACTIONS(2025), 1, + ACTIONS(1925), 1, anon_sym_DOT, - ACTIONS(2063), 1, + ACTIONS(1963), 1, anon_sym_RBRACE, - STATE(581), 1, + STATE(568), 1, aux_sym_inline_attribute_repeat1, - STATE(617), 1, + STATE(599), 1, sym__comment_with_newline, - STATE(875), 1, + STATE(766), 1, sym_key, - STATE(616), 2, + STATE(597), 2, sym_class, sym_key_value, - ACTIONS(2023), 3, + ACTIONS(1923), 3, sym__whitespace1, sym__newline, sym_identifier, - [20112] = 9, - ACTIONS(2019), 1, + [19039] = 9, + ACTIONS(1919), 1, sym__id, - ACTIONS(2021), 1, + ACTIONS(1921), 1, anon_sym_PERCENT, - ACTIONS(2025), 1, + ACTIONS(1925), 1, anon_sym_DOT, - ACTIONS(2065), 1, + ACTIONS(1965), 1, anon_sym_RBRACE, - STATE(578), 1, + STATE(557), 1, aux_sym_inline_attribute_repeat1, - STATE(617), 1, + STATE(599), 1, sym__comment_with_newline, - STATE(875), 1, + STATE(766), 1, sym_key, - STATE(616), 2, + STATE(597), 2, sym_class, sym_key_value, - ACTIONS(2023), 3, + ACTIONS(1923), 3, sym__whitespace1, sym__newline, sym_identifier, - [20143] = 9, - ACTIONS(2019), 1, + [19070] = 9, + ACTIONS(1919), 1, sym__id, - ACTIONS(2021), 1, + ACTIONS(1921), 1, anon_sym_PERCENT, - ACTIONS(2025), 1, + ACTIONS(1925), 1, anon_sym_DOT, - ACTIONS(2067), 1, + ACTIONS(1967), 1, anon_sym_RBRACE, - STATE(585), 1, + STATE(582), 1, aux_sym_inline_attribute_repeat1, - STATE(617), 1, + STATE(599), 1, sym__comment_with_newline, - STATE(875), 1, + STATE(766), 1, sym_key, - STATE(616), 2, + STATE(597), 2, sym_class, sym_key_value, - ACTIONS(2023), 3, + ACTIONS(1923), 3, sym__whitespace1, sym__newline, sym_identifier, - [20174] = 9, - ACTIONS(2019), 1, + [19101] = 9, + ACTIONS(1919), 1, sym__id, - ACTIONS(2021), 1, + ACTIONS(1921), 1, anon_sym_PERCENT, - ACTIONS(2025), 1, + ACTIONS(1925), 1, anon_sym_DOT, - ACTIONS(2069), 1, + ACTIONS(1969), 1, anon_sym_RBRACE, - STATE(592), 1, + STATE(557), 1, aux_sym_inline_attribute_repeat1, - STATE(617), 1, + STATE(599), 1, sym__comment_with_newline, - STATE(875), 1, + STATE(766), 1, sym_key, - STATE(616), 2, + STATE(597), 2, sym_class, sym_key_value, - ACTIONS(2023), 3, + ACTIONS(1923), 3, sym__whitespace1, sym__newline, sym_identifier, - [20205] = 9, - ACTIONS(2019), 1, + [19132] = 9, + ACTIONS(1919), 1, sym__id, - ACTIONS(2021), 1, + ACTIONS(1921), 1, anon_sym_PERCENT, - ACTIONS(2025), 1, + ACTIONS(1925), 1, anon_sym_DOT, - ACTIONS(2071), 1, + ACTIONS(1971), 1, anon_sym_RBRACE, - STATE(578), 1, + STATE(570), 1, aux_sym_inline_attribute_repeat1, - STATE(617), 1, + STATE(599), 1, sym__comment_with_newline, - STATE(875), 1, + STATE(766), 1, sym_key, - STATE(616), 2, + STATE(597), 2, sym_class, sym_key_value, - ACTIONS(2023), 3, + ACTIONS(1923), 3, sym__whitespace1, sym__newline, sym_identifier, - [20236] = 9, - ACTIONS(2019), 1, + [19163] = 9, + ACTIONS(1919), 1, sym__id, - ACTIONS(2021), 1, + ACTIONS(1921), 1, anon_sym_PERCENT, - ACTIONS(2025), 1, + ACTIONS(1925), 1, anon_sym_DOT, - ACTIONS(2073), 1, + ACTIONS(1973), 1, anon_sym_RBRACE, - STATE(578), 1, + STATE(579), 1, aux_sym_inline_attribute_repeat1, - STATE(617), 1, + STATE(599), 1, sym__comment_with_newline, - STATE(875), 1, + STATE(766), 1, sym_key, - STATE(616), 2, + STATE(597), 2, sym_class, sym_key_value, - ACTIONS(2023), 3, + ACTIONS(1923), 3, sym__whitespace1, sym__newline, sym_identifier, - [20267] = 9, - ACTIONS(2019), 1, + [19194] = 9, + ACTIONS(1919), 1, sym__id, - ACTIONS(2021), 1, + ACTIONS(1921), 1, anon_sym_PERCENT, - ACTIONS(2025), 1, + ACTIONS(1925), 1, anon_sym_DOT, - ACTIONS(2075), 1, + ACTIONS(1975), 1, anon_sym_RBRACE, - STATE(578), 1, + STATE(557), 1, aux_sym_inline_attribute_repeat1, - STATE(617), 1, + STATE(599), 1, sym__comment_with_newline, - STATE(875), 1, + STATE(766), 1, sym_key, - STATE(616), 2, + STATE(597), 2, sym_class, sym_key_value, - ACTIONS(2023), 3, + ACTIONS(1923), 3, sym__whitespace1, sym__newline, sym_identifier, - [20298] = 9, - ACTIONS(2019), 1, + [19225] = 9, + ACTIONS(1919), 1, sym__id, - ACTIONS(2021), 1, + ACTIONS(1921), 1, anon_sym_PERCENT, - ACTIONS(2025), 1, + ACTIONS(1925), 1, anon_sym_DOT, - ACTIONS(2077), 1, + ACTIONS(1977), 1, anon_sym_RBRACE, - STATE(596), 1, + STATE(562), 1, aux_sym_inline_attribute_repeat1, - STATE(617), 1, + STATE(599), 1, sym__comment_with_newline, - STATE(875), 1, + STATE(766), 1, sym_key, - STATE(616), 2, + STATE(597), 2, sym_class, sym_key_value, - ACTIONS(2023), 3, + ACTIONS(1923), 3, sym__whitespace1, sym__newline, sym_identifier, - [20329] = 9, - ACTIONS(2019), 1, + [19256] = 9, + ACTIONS(1919), 1, sym__id, - ACTIONS(2021), 1, + ACTIONS(1921), 1, anon_sym_PERCENT, - ACTIONS(2025), 1, + ACTIONS(1925), 1, anon_sym_DOT, - ACTIONS(2079), 1, + ACTIONS(1979), 1, anon_sym_RBRACE, - STATE(578), 1, + STATE(581), 1, aux_sym_inline_attribute_repeat1, - STATE(617), 1, + STATE(599), 1, sym__comment_with_newline, - STATE(875), 1, + STATE(766), 1, sym_key, - STATE(616), 2, + STATE(597), 2, sym_class, sym_key_value, - ACTIONS(2023), 3, + ACTIONS(1923), 3, sym__whitespace1, sym__newline, sym_identifier, - [20360] = 9, - ACTIONS(2019), 1, + [19287] = 9, + ACTIONS(1919), 1, sym__id, - ACTIONS(2021), 1, + ACTIONS(1921), 1, anon_sym_PERCENT, - ACTIONS(2025), 1, + ACTIONS(1925), 1, anon_sym_DOT, - ACTIONS(2081), 1, + ACTIONS(1981), 1, anon_sym_RBRACE, - STATE(578), 1, + STATE(557), 1, aux_sym_inline_attribute_repeat1, - STATE(617), 1, + STATE(599), 1, sym__comment_with_newline, - STATE(875), 1, + STATE(766), 1, sym_key, - STATE(616), 2, + STATE(597), 2, sym_class, sym_key_value, - ACTIONS(2023), 3, + ACTIONS(1923), 3, sym__whitespace1, sym__newline, sym_identifier, - [20391] = 9, - ACTIONS(2019), 1, + [19318] = 9, + ACTIONS(1919), 1, sym__id, - ACTIONS(2021), 1, + ACTIONS(1921), 1, anon_sym_PERCENT, - ACTIONS(2025), 1, + ACTIONS(1925), 1, anon_sym_DOT, - ACTIONS(2083), 1, + ACTIONS(1983), 1, anon_sym_RBRACE, - STATE(578), 1, + STATE(557), 1, aux_sym_inline_attribute_repeat1, - STATE(617), 1, + STATE(599), 1, sym__comment_with_newline, - STATE(875), 1, + STATE(766), 1, sym_key, - STATE(616), 2, + STATE(597), 2, sym_class, sym_key_value, - ACTIONS(2023), 3, + ACTIONS(1923), 3, sym__whitespace1, sym__newline, sym_identifier, - [20422] = 9, - ACTIONS(2019), 1, + [19349] = 9, + ACTIONS(1919), 1, sym__id, - ACTIONS(2021), 1, + ACTIONS(1921), 1, anon_sym_PERCENT, - ACTIONS(2025), 1, + ACTIONS(1925), 1, anon_sym_DOT, - ACTIONS(2085), 1, + ACTIONS(1985), 1, anon_sym_RBRACE, - STATE(578), 1, + STATE(577), 1, aux_sym_inline_attribute_repeat1, - STATE(617), 1, + STATE(599), 1, sym__comment_with_newline, - STATE(875), 1, + STATE(766), 1, sym_key, - STATE(616), 2, + STATE(597), 2, sym_class, sym_key_value, - ACTIONS(2023), 3, + ACTIONS(1923), 3, sym__whitespace1, sym__newline, sym_identifier, - [20453] = 9, - ACTIONS(2019), 1, + [19380] = 9, + ACTIONS(1919), 1, sym__id, - ACTIONS(2021), 1, + ACTIONS(1921), 1, anon_sym_PERCENT, - ACTIONS(2025), 1, + ACTIONS(1925), 1, anon_sym_DOT, - ACTIONS(2087), 1, + ACTIONS(1987), 1, anon_sym_RBRACE, - STATE(599), 1, + STATE(557), 1, aux_sym_inline_attribute_repeat1, - STATE(617), 1, + STATE(599), 1, sym__comment_with_newline, - STATE(875), 1, + STATE(766), 1, sym_key, - STATE(616), 2, + STATE(597), 2, sym_class, sym_key_value, - ACTIONS(2023), 3, + ACTIONS(1923), 3, sym__whitespace1, sym__newline, sym_identifier, - [20484] = 9, - ACTIONS(2019), 1, + [19411] = 9, + ACTIONS(1919), 1, sym__id, - ACTIONS(2021), 1, + ACTIONS(1921), 1, anon_sym_PERCENT, - ACTIONS(2025), 1, + ACTIONS(1925), 1, anon_sym_DOT, - ACTIONS(2089), 1, + ACTIONS(1989), 1, anon_sym_RBRACE, - STATE(578), 1, + STATE(557), 1, aux_sym_inline_attribute_repeat1, - STATE(617), 1, + STATE(599), 1, sym__comment_with_newline, - STATE(875), 1, + STATE(766), 1, sym_key, - STATE(616), 2, + STATE(597), 2, sym_class, sym_key_value, - ACTIONS(2023), 3, + ACTIONS(1923), 3, sym__whitespace1, sym__newline, sym_identifier, - [20515] = 9, - ACTIONS(2019), 1, + [19442] = 9, + ACTIONS(1919), 1, sym__id, - ACTIONS(2021), 1, + ACTIONS(1921), 1, anon_sym_PERCENT, - ACTIONS(2025), 1, + ACTIONS(1925), 1, anon_sym_DOT, - ACTIONS(2091), 1, + ACTIONS(1991), 1, anon_sym_RBRACE, - STATE(593), 1, + STATE(557), 1, aux_sym_inline_attribute_repeat1, - STATE(617), 1, + STATE(599), 1, sym__comment_with_newline, - STATE(875), 1, + STATE(766), 1, sym_key, - STATE(616), 2, + STATE(597), 2, sym_class, sym_key_value, - ACTIONS(2023), 3, + ACTIONS(1923), 3, sym__whitespace1, sym__newline, sym_identifier, - [20546] = 9, - ACTIONS(2019), 1, + [19473] = 9, + ACTIONS(1919), 1, sym__id, - ACTIONS(2021), 1, + ACTIONS(1921), 1, anon_sym_PERCENT, - ACTIONS(2025), 1, + ACTIONS(1925), 1, anon_sym_DOT, - ACTIONS(2093), 1, + ACTIONS(1993), 1, anon_sym_RBRACE, - STATE(601), 1, + STATE(557), 1, aux_sym_inline_attribute_repeat1, - STATE(617), 1, + STATE(599), 1, sym__comment_with_newline, - STATE(875), 1, + STATE(766), 1, sym_key, - STATE(616), 2, + STATE(597), 2, sym_class, sym_key_value, - ACTIONS(2023), 3, + ACTIONS(1923), 3, sym__whitespace1, sym__newline, sym_identifier, - [20577] = 9, - ACTIONS(2019), 1, + [19504] = 9, + ACTIONS(1919), 1, sym__id, - ACTIONS(2021), 1, + ACTIONS(1921), 1, anon_sym_PERCENT, - ACTIONS(2025), 1, + ACTIONS(1925), 1, anon_sym_DOT, - ACTIONS(2095), 1, + ACTIONS(1995), 1, anon_sym_RBRACE, - STATE(578), 1, + STATE(584), 1, aux_sym_inline_attribute_repeat1, - STATE(617), 1, + STATE(599), 1, sym__comment_with_newline, - STATE(875), 1, + STATE(766), 1, sym_key, - STATE(616), 2, + STATE(597), 2, sym_class, sym_key_value, - ACTIONS(2023), 3, + ACTIONS(1923), 3, sym__whitespace1, sym__newline, sym_identifier, - [20608] = 9, - ACTIONS(2019), 1, + [19535] = 9, + ACTIONS(1919), 1, sym__id, - ACTIONS(2021), 1, + ACTIONS(1921), 1, anon_sym_PERCENT, - ACTIONS(2025), 1, + ACTIONS(1925), 1, anon_sym_DOT, - ACTIONS(2097), 1, + ACTIONS(1997), 1, anon_sym_RBRACE, - STATE(578), 1, + STATE(557), 1, aux_sym_inline_attribute_repeat1, - STATE(617), 1, + STATE(599), 1, sym__comment_with_newline, - STATE(875), 1, + STATE(766), 1, sym_key, - STATE(616), 2, + STATE(597), 2, sym_class, sym_key_value, - ACTIONS(2023), 3, + ACTIONS(1923), 3, sym__whitespace1, sym__newline, sym_identifier, - [20639] = 9, - ACTIONS(2019), 1, + [19566] = 9, + ACTIONS(1919), 1, sym__id, - ACTIONS(2021), 1, + ACTIONS(1921), 1, anon_sym_PERCENT, - ACTIONS(2025), 1, + ACTIONS(1925), 1, anon_sym_DOT, - ACTIONS(2099), 1, + ACTIONS(1999), 1, anon_sym_RBRACE, - STATE(576), 1, + STATE(554), 1, aux_sym_inline_attribute_repeat1, - STATE(617), 1, + STATE(599), 1, sym__comment_with_newline, - STATE(875), 1, + STATE(766), 1, sym_key, - STATE(616), 2, + STATE(597), 2, sym_class, sym_key_value, - ACTIONS(2023), 3, + ACTIONS(1923), 3, sym__whitespace1, sym__newline, sym_identifier, - [20670] = 9, - ACTIONS(2019), 1, + [19597] = 9, + ACTIONS(1919), 1, sym__id, - ACTIONS(2021), 1, + ACTIONS(1921), 1, anon_sym_PERCENT, - ACTIONS(2025), 1, + ACTIONS(1925), 1, anon_sym_DOT, - ACTIONS(2101), 1, + ACTIONS(2001), 1, anon_sym_RBRACE, - STATE(605), 1, + STATE(557), 1, aux_sym_inline_attribute_repeat1, - STATE(617), 1, + STATE(599), 1, sym__comment_with_newline, - STATE(875), 1, + STATE(766), 1, sym_key, - STATE(616), 2, + STATE(597), 2, sym_class, sym_key_value, - ACTIONS(2023), 3, + ACTIONS(1923), 3, sym__whitespace1, sym__newline, sym_identifier, - [20701] = 9, - ACTIONS(2019), 1, + [19628] = 9, + ACTIONS(1919), 1, sym__id, - ACTIONS(2021), 1, + ACTIONS(1921), 1, anon_sym_PERCENT, - ACTIONS(2025), 1, + ACTIONS(1925), 1, anon_sym_DOT, - ACTIONS(2103), 1, + ACTIONS(2003), 1, anon_sym_RBRACE, - STATE(578), 1, + STATE(586), 1, aux_sym_inline_attribute_repeat1, - STATE(617), 1, + STATE(599), 1, sym__comment_with_newline, - STATE(875), 1, + STATE(766), 1, sym_key, - STATE(616), 2, + STATE(597), 2, sym_class, sym_key_value, - ACTIONS(2023), 3, + ACTIONS(1923), 3, sym__whitespace1, sym__newline, sym_identifier, - [20732] = 9, - ACTIONS(2019), 1, + [19659] = 9, + ACTIONS(1919), 1, sym__id, - ACTIONS(2021), 1, + ACTIONS(1921), 1, anon_sym_PERCENT, - ACTIONS(2025), 1, + ACTIONS(1925), 1, anon_sym_DOT, - ACTIONS(2105), 1, + ACTIONS(2005), 1, anon_sym_RBRACE, - STATE(608), 1, + STATE(557), 1, aux_sym_inline_attribute_repeat1, - STATE(617), 1, + STATE(599), 1, sym__comment_with_newline, - STATE(875), 1, + STATE(766), 1, sym_key, - STATE(616), 2, + STATE(597), 2, sym_class, sym_key_value, - ACTIONS(2023), 3, + ACTIONS(1923), 3, sym__whitespace1, sym__newline, sym_identifier, - [20763] = 9, - ACTIONS(2019), 1, + [19690] = 9, + ACTIONS(1919), 1, sym__id, - ACTIONS(2021), 1, + ACTIONS(1921), 1, anon_sym_PERCENT, - ACTIONS(2025), 1, + ACTIONS(1925), 1, anon_sym_DOT, - ACTIONS(2107), 1, + ACTIONS(2007), 1, anon_sym_RBRACE, - STATE(578), 1, + STATE(588), 1, aux_sym_inline_attribute_repeat1, - STATE(617), 1, + STATE(599), 1, sym__comment_with_newline, - STATE(875), 1, + STATE(766), 1, sym_key, - STATE(616), 2, + STATE(597), 2, sym_class, sym_key_value, - ACTIONS(2023), 3, + ACTIONS(1923), 3, sym__whitespace1, sym__newline, sym_identifier, - [20794] = 9, - ACTIONS(2019), 1, + [19721] = 9, + ACTIONS(1919), 1, sym__id, - ACTIONS(2021), 1, + ACTIONS(1921), 1, anon_sym_PERCENT, - ACTIONS(2025), 1, + ACTIONS(1925), 1, anon_sym_DOT, - ACTIONS(2109), 1, + ACTIONS(2009), 1, anon_sym_RBRACE, - STATE(610), 1, + STATE(560), 1, aux_sym_inline_attribute_repeat1, - STATE(617), 1, + STATE(599), 1, sym__comment_with_newline, - STATE(875), 1, + STATE(766), 1, sym_key, - STATE(616), 2, + STATE(597), 2, sym_class, sym_key_value, - ACTIONS(2023), 3, + ACTIONS(1923), 3, sym__whitespace1, sym__newline, sym_identifier, - [20825] = 9, - ACTIONS(2019), 1, + [19752] = 9, + ACTIONS(1919), 1, sym__id, - ACTIONS(2021), 1, + ACTIONS(1921), 1, anon_sym_PERCENT, - ACTIONS(2025), 1, + ACTIONS(1925), 1, anon_sym_DOT, - ACTIONS(2111), 1, + ACTIONS(2011), 1, anon_sym_RBRACE, - STATE(578), 1, + STATE(557), 1, aux_sym_inline_attribute_repeat1, - STATE(617), 1, + STATE(599), 1, sym__comment_with_newline, - STATE(875), 1, + STATE(766), 1, sym_key, - STATE(616), 2, + STATE(597), 2, sym_class, sym_key_value, - ACTIONS(2023), 3, + ACTIONS(1923), 3, sym__whitespace1, sym__newline, sym_identifier, - [20856] = 9, - ACTIONS(2019), 1, + [19783] = 9, + ACTIONS(1919), 1, sym__id, - ACTIONS(2021), 1, + ACTIONS(1921), 1, anon_sym_PERCENT, - ACTIONS(2025), 1, + ACTIONS(1925), 1, anon_sym_DOT, - ACTIONS(2113), 1, + ACTIONS(2013), 1, anon_sym_RBRACE, - STATE(604), 1, + STATE(593), 1, aux_sym_inline_attribute_repeat1, - STATE(617), 1, + STATE(599), 1, sym__comment_with_newline, - STATE(875), 1, + STATE(766), 1, sym_key, - STATE(616), 2, + STATE(597), 2, sym_class, sym_key_value, - ACTIONS(2023), 3, + ACTIONS(1923), 3, sym__whitespace1, sym__newline, sym_identifier, - [20887] = 9, - ACTIONS(2019), 1, + [19814] = 9, + ACTIONS(1919), 1, sym__id, - ACTIONS(2021), 1, + ACTIONS(1921), 1, anon_sym_PERCENT, - ACTIONS(2025), 1, + ACTIONS(1925), 1, anon_sym_DOT, - ACTIONS(2115), 1, + ACTIONS(2015), 1, anon_sym_RBRACE, - STATE(594), 1, + STATE(557), 1, aux_sym_inline_attribute_repeat1, - STATE(617), 1, + STATE(599), 1, sym__comment_with_newline, - STATE(875), 1, + STATE(766), 1, sym_key, - STATE(616), 2, + STATE(597), 2, sym_class, sym_key_value, - ACTIONS(2023), 3, + ACTIONS(1923), 3, sym__whitespace1, sym__newline, sym_identifier, - [20918] = 9, - ACTIONS(2019), 1, + [19845] = 9, + ACTIONS(1919), 1, sym__id, - ACTIONS(2021), 1, + ACTIONS(1921), 1, anon_sym_PERCENT, - ACTIONS(2025), 1, + ACTIONS(1925), 1, anon_sym_DOT, - ACTIONS(2117), 1, + ACTIONS(2017), 1, anon_sym_RBRACE, - STATE(597), 1, + STATE(591), 1, aux_sym_inline_attribute_repeat1, - STATE(617), 1, + STATE(599), 1, sym__comment_with_newline, - STATE(875), 1, + STATE(766), 1, sym_key, - STATE(616), 2, + STATE(597), 2, sym_class, sym_key_value, - ACTIONS(2023), 3, + ACTIONS(1923), 3, sym__whitespace1, sym__newline, sym_identifier, - [20949] = 1, - ACTIONS(2119), 7, + [19876] = 1, + ACTIONS(2019), 7, anon_sym_RBRACE, sym__id, anon_sym_PERCENT, @@ -36599,8 +35247,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_DOT, sym_identifier, - [20959] = 1, - ACTIONS(2121), 7, + [19886] = 1, + ACTIONS(2021), 7, anon_sym_RBRACE, sym__id, anon_sym_PERCENT, @@ -36608,8 +35256,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_DOT, sym_identifier, - [20969] = 1, - ACTIONS(2123), 7, + [19896] = 1, + ACTIONS(2023), 7, anon_sym_RBRACE, sym__id, anon_sym_PERCENT, @@ -36617,8 +35265,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_DOT, sym_identifier, - [20979] = 1, - ACTIONS(2125), 7, + [19906] = 1, + ACTIONS(2025), 7, anon_sym_RBRACE, sym__id, anon_sym_PERCENT, @@ -36626,8 +35274,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_DOT, sym_identifier, - [20989] = 1, - ACTIONS(2127), 7, + [19916] = 1, + ACTIONS(2027), 7, anon_sym_RBRACE, sym__id, anon_sym_PERCENT, @@ -36635,8 +35283,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_DOT, sym_identifier, - [20999] = 1, - ACTIONS(2129), 7, + [19926] = 1, + ACTIONS(2029), 7, anon_sym_RBRACE, sym__id, anon_sym_PERCENT, @@ -36644,8 +35292,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_DOT, sym_identifier, - [21009] = 1, - ACTIONS(2131), 7, + [19936] = 1, + ACTIONS(2031), 7, anon_sym_RBRACE, sym__id, anon_sym_PERCENT, @@ -36653,8 +35301,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_DOT, sym_identifier, - [21019] = 1, - ACTIONS(2133), 7, + [19946] = 1, + ACTIONS(2033), 7, anon_sym_RBRACE, sym__id, anon_sym_PERCENT, @@ -36662,8 +35310,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_DOT, sym_identifier, - [21029] = 1, - ACTIONS(2135), 7, + [19956] = 1, + ACTIONS(2035), 7, anon_sym_RBRACE, sym__id, anon_sym_PERCENT, @@ -36671,1210 +35319,1303 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_DOT, sym_identifier, - [21039] = 5, - ACTIONS(2137), 1, + [19966] = 4, + ACTIONS(2037), 1, + anon_sym_LBRACE, + ACTIONS(2041), 1, + anon_sym_LBRACK, + STATE(224), 1, + sym_inline_attribute, + ACTIONS(2039), 2, anon_sym_LBRACK_RBRACK, - ACTIONS(2139), 1, + anon_sym_LPAREN, + [19980] = 5, + ACTIONS(2043), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(2045), 1, anon_sym_LBRACK, - ACTIONS(2141), 1, + ACTIONS(2047), 1, anon_sym_LPAREN, - STATE(502), 1, + STATE(291), 1, sym__link_label, - STATE(503), 1, + STATE(292), 1, sym_inline_link_destination, - [21055] = 5, - ACTIONS(2143), 1, + [19996] = 4, + ACTIONS(2041), 1, + anon_sym_LBRACK, + ACTIONS(2049), 1, + anon_sym_LBRACE, + STATE(368), 1, + sym_inline_attribute, + ACTIONS(2039), 2, anon_sym_LBRACK_RBRACK, - ACTIONS(2145), 1, + anon_sym_LPAREN, + [20010] = 5, + ACTIONS(2051), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(2053), 1, + anon_sym_LBRACK, + ACTIONS(2055), 1, + anon_sym_LPAREN, + STATE(438), 1, + sym__link_label, + STATE(439), 1, + sym_inline_link_destination, + [20026] = 5, + ACTIONS(2057), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(2059), 1, + anon_sym_LBRACK, + ACTIONS(2061), 1, + anon_sym_LPAREN, + STATE(190), 1, + sym_inline_link_destination, + STATE(391), 1, + sym__link_label, + [20042] = 5, + ACTIONS(2063), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(2065), 1, anon_sym_LBRACK, - ACTIONS(2147), 1, + ACTIONS(2067), 1, anon_sym_LPAREN, - STATE(453), 1, + STATE(481), 1, sym__link_label, - STATE(454), 1, + STATE(482), 1, sym_inline_link_destination, - [21071] = 5, - ACTIONS(2149), 1, + [20058] = 5, + ACTIONS(2059), 1, + anon_sym_LBRACK, + ACTIONS(2061), 1, + anon_sym_LPAREN, + ACTIONS(2069), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(2151), 1, + STATE(388), 1, + sym__link_label, + STATE(389), 1, + sym_inline_link_destination, + [20074] = 5, + ACTIONS(2053), 1, anon_sym_LBRACK, - ACTIONS(2153), 1, + ACTIONS(2055), 1, anon_sym_LPAREN, - STATE(349), 1, + ACTIONS(2071), 1, + anon_sym_LBRACK_RBRACK, + STATE(441), 1, sym__link_label, - STATE(350), 1, + STATE(442), 1, sym_inline_link_destination, - [21087] = 5, - ACTIONS(2151), 1, + [20090] = 5, + ACTIONS(2065), 1, anon_sym_LBRACK, - ACTIONS(2153), 1, + ACTIONS(2067), 1, anon_sym_LPAREN, - ACTIONS(2155), 1, + ACTIONS(2073), 1, anon_sym_LBRACK_RBRACK, - STATE(346), 1, + STATE(484), 1, sym__link_label, - STATE(347), 1, + STATE(485), 1, sym_inline_link_destination, - [21103] = 4, - ACTIONS(2157), 1, - anon_sym_LBRACE, - ACTIONS(2161), 1, - anon_sym_LBRACK, - STATE(281), 1, - sym_inline_attribute, - ACTIONS(2159), 2, - anon_sym_LBRACK_RBRACK, - anon_sym_LPAREN, - [21117] = 5, - ACTIONS(2163), 1, + [20106] = 5, + ACTIONS(2075), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(2165), 1, + ACTIONS(2077), 1, anon_sym_LBRACK, - ACTIONS(2167), 1, + ACTIONS(2079), 1, anon_sym_LPAREN, - STATE(210), 1, + STATE(207), 1, sym__link_label, - STATE(211), 1, + STATE(208), 1, sym_inline_link_destination, - [21133] = 5, - ACTIONS(2165), 1, + [20122] = 5, + ACTIONS(2077), 1, anon_sym_LBRACK, - ACTIONS(2167), 1, + ACTIONS(2079), 1, anon_sym_LPAREN, - ACTIONS(2169), 1, + ACTIONS(2081), 1, anon_sym_LBRACK_RBRACK, - STATE(213), 1, + STATE(210), 1, sym__link_label, - STATE(214), 1, + STATE(211), 1, sym_inline_link_destination, - [21149] = 4, - ACTIONS(2161), 1, - anon_sym_LBRACK, - ACTIONS(2171), 1, - anon_sym_LBRACE, - STATE(435), 1, - sym_inline_attribute, - ACTIONS(2159), 2, - anon_sym_LBRACK_RBRACK, - anon_sym_LPAREN, - [21163] = 4, - ACTIONS(2161), 1, + [20138] = 4, + ACTIONS(2041), 1, anon_sym_LBRACK, - ACTIONS(2173), 1, + ACTIONS(2083), 1, anon_sym_LBRACE, - STATE(316), 1, + STATE(358), 1, sym_inline_attribute, - ACTIONS(2159), 2, + ACTIONS(2039), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - [21177] = 5, - ACTIONS(2175), 1, + [20152] = 5, + ACTIONS(2085), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(2177), 1, + ACTIONS(2087), 1, anon_sym_LBRACK, - ACTIONS(2179), 1, + ACTIONS(2089), 1, anon_sym_LPAREN, - STATE(539), 1, + STATE(315), 1, sym_inline_link_destination, - STATE(540), 1, + STATE(317), 1, sym__link_label, - [21193] = 4, - ACTIONS(2161), 1, + [20168] = 4, + ACTIONS(2041), 1, anon_sym_LBRACK, - ACTIONS(2181), 1, + ACTIONS(2091), 1, anon_sym_LBRACE, - STATE(432), 1, + STATE(458), 1, sym_inline_attribute, - ACTIONS(2159), 2, + ACTIONS(2039), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - [21207] = 5, - ACTIONS(2183), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(2185), 1, - anon_sym_LBRACK, - ACTIONS(2187), 1, - anon_sym_LPAREN, - STATE(497), 1, - sym_inline_link_destination, - STATE(499), 1, - sym__link_label, - [21223] = 3, - ACTIONS(2191), 1, + [20182] = 3, + ACTIONS(2095), 1, anon_sym_PERCENT, - STATE(657), 1, + STATE(636), 1, aux_sym__comment_with_newline_repeat1, - ACTIONS(2189), 3, + ACTIONS(2093), 3, sym_backslash_escape, aux_sym__comment_with_newline_token1, sym__newline, - [21235] = 4, - ACTIONS(2161), 1, - anon_sym_LBRACK, - ACTIONS(2193), 1, - anon_sym_LBRACE, - STATE(368), 1, - sym_inline_attribute, - ACTIONS(2159), 2, + [20194] = 5, + ACTIONS(2097), 1, anon_sym_LBRACK_RBRACK, - anon_sym_LPAREN, - [21249] = 4, - ACTIONS(2161), 1, + ACTIONS(2099), 1, anon_sym_LBRACK, - ACTIONS(2195), 1, - anon_sym_LBRACE, - STATE(229), 1, - sym_inline_attribute, - ACTIONS(2159), 2, - anon_sym_LBRACK_RBRACK, + ACTIONS(2101), 1, anon_sym_LPAREN, - [21263] = 5, - ACTIONS(2185), 1, + STATE(496), 1, + sym_inline_link_destination, + STATE(507), 1, + sym__link_label, + [20210] = 5, + ACTIONS(2099), 1, anon_sym_LBRACK, - ACTIONS(2187), 1, + ACTIONS(2101), 1, anon_sym_LPAREN, - ACTIONS(2197), 1, + ACTIONS(2103), 1, anon_sym_LBRACK_RBRACK, - STATE(508), 1, - sym_inline_link_destination, - STATE(509), 1, + STATE(540), 1, sym__link_label, - [21279] = 4, - ACTIONS(2161), 1, + STATE(543), 1, + sym_inline_link_destination, + [20226] = 4, + ACTIONS(2041), 1, anon_sym_LBRACK, - ACTIONS(2199), 1, + ACTIONS(2105), 1, anon_sym_LBRACE, - STATE(524), 1, + STATE(395), 1, sym_inline_attribute, - ACTIONS(2159), 2, + ACTIONS(2039), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - [21293] = 5, - ACTIONS(2201), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(2203), 1, + [20240] = 5, + ACTIONS(2045), 1, anon_sym_LBRACK, - ACTIONS(2205), 1, + ACTIONS(2047), 1, anon_sym_LPAREN, - STATE(398), 1, + ACTIONS(2107), 1, + anon_sym_LBRACK_RBRACK, + STATE(288), 1, sym__link_label, - STATE(399), 1, + STATE(289), 1, sym_inline_link_destination, - [21309] = 5, - ACTIONS(2203), 1, + [20256] = 4, + ACTIONS(2041), 1, anon_sym_LBRACK, - ACTIONS(2205), 1, - anon_sym_LPAREN, - ACTIONS(2207), 1, + ACTIONS(2109), 1, + anon_sym_LBRACE, + STATE(408), 1, + sym_inline_attribute, + ACTIONS(2039), 2, anon_sym_LBRACK_RBRACK, - STATE(401), 1, - sym__link_label, - STATE(402), 1, - sym_inline_link_destination, - [21325] = 3, - ACTIONS(2212), 1, - anon_sym_PERCENT, - STATE(644), 1, - aux_sym__comment_with_newline_repeat1, - ACTIONS(2209), 3, - sym_backslash_escape, - aux_sym__comment_with_newline_token1, - sym__newline, - [21337] = 5, - ACTIONS(2214), 1, + anon_sym_LPAREN, + [20270] = 5, + ACTIONS(2111), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(2216), 1, + ACTIONS(2113), 1, anon_sym_LBRACK, - ACTIONS(2218), 1, + ACTIONS(2115), 1, anon_sym_LPAREN, - STATE(245), 1, + STATE(341), 1, sym__link_label, - STATE(246), 1, + STATE(342), 1, sym_inline_link_destination, - [21353] = 5, - ACTIONS(2216), 1, + [20286] = 4, + ACTIONS(2041), 1, anon_sym_LBRACK, - ACTIONS(2218), 1, - anon_sym_LPAREN, - ACTIONS(2220), 1, + ACTIONS(2117), 1, + anon_sym_LBRACE, + STATE(258), 1, + sym_inline_attribute, + ACTIONS(2039), 2, anon_sym_LBRACK_RBRACK, - STATE(248), 1, - sym__link_label, - STATE(249), 1, - sym_inline_link_destination, - [21369] = 5, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2141), 1, anon_sym_LPAREN, - ACTIONS(2222), 1, - anon_sym_LBRACK_RBRACK, - STATE(505), 1, - sym__link_label, - STATE(506), 1, - sym_inline_link_destination, - [21385] = 5, - ACTIONS(2177), 1, + [20300] = 5, + ACTIONS(2113), 1, anon_sym_LBRACK, - ACTIONS(2179), 1, + ACTIONS(2115), 1, anon_sym_LPAREN, - ACTIONS(2224), 1, - anon_sym_LBRACK_RBRACK, - STATE(536), 1, - sym_inline_link_destination, - STATE(537), 1, - sym__link_label, - [21401] = 5, - ACTIONS(2226), 1, + ACTIONS(2119), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(2228), 1, - anon_sym_LBRACK, - ACTIONS(2230), 1, - anon_sym_LPAREN, - STATE(297), 1, + STATE(338), 1, sym__link_label, - STATE(298), 1, + STATE(339), 1, sym_inline_link_destination, - [21417] = 4, - ACTIONS(2161), 1, + [20316] = 4, + ACTIONS(2041), 1, anon_sym_LBRACK, - ACTIONS(2232), 1, + ACTIONS(2121), 1, anon_sym_LBRACE, - STATE(472), 1, + STATE(508), 1, sym_inline_attribute, - ACTIONS(2159), 2, + ACTIONS(2039), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - [21431] = 5, - ACTIONS(2234), 1, + [20330] = 5, + ACTIONS(2123), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(2236), 1, + ACTIONS(2125), 1, anon_sym_LBRACK, - ACTIONS(2238), 1, + ACTIONS(2127), 1, anon_sym_LPAREN, - STATE(331), 1, + STATE(444), 1, sym_inline_link_destination, - STATE(332), 1, + STATE(445), 1, sym__link_label, - [21447] = 5, - ACTIONS(2228), 1, + [20346] = 5, + ACTIONS(2125), 1, anon_sym_LBRACK, - ACTIONS(2230), 1, + ACTIONS(2127), 1, anon_sym_LPAREN, - ACTIONS(2240), 1, + ACTIONS(2129), 1, anon_sym_LBRACK_RBRACK, - STATE(294), 1, - sym__link_label, - STATE(295), 1, + STATE(432), 1, sym_inline_link_destination, - [21463] = 4, - ACTIONS(2161), 1, + STATE(435), 1, + sym__link_label, + [20362] = 4, + ACTIONS(2041), 1, anon_sym_LBRACK, - ACTIONS(2242), 1, + ACTIONS(2131), 1, anon_sym_LBRACE, - STATE(420), 1, + STATE(308), 1, sym_inline_attribute, - ACTIONS(2159), 2, + ACTIONS(2039), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - [21477] = 5, - ACTIONS(2236), 1, + [20376] = 4, + ACTIONS(2041), 1, anon_sym_LBRACK, - ACTIONS(2238), 1, + ACTIONS(2133), 1, + anon_sym_LBRACE, + STATE(396), 1, + sym_inline_attribute, + ACTIONS(2039), 2, + anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - ACTIONS(2244), 1, + [20390] = 5, + ACTIONS(2135), 1, anon_sym_LBRACK_RBRACK, - STATE(334), 1, - sym_inline_link_destination, - STATE(335), 1, + ACTIONS(2137), 1, + anon_sym_LBRACK, + ACTIONS(2139), 1, + anon_sym_LPAREN, + STATE(241), 1, sym__link_label, - [21493] = 5, - ACTIONS(2145), 1, + STATE(242), 1, + sym_inline_link_destination, + [20406] = 5, + ACTIONS(2137), 1, anon_sym_LBRACK, - ACTIONS(2147), 1, + ACTIONS(2139), 1, anon_sym_LPAREN, - ACTIONS(2246), 1, + ACTIONS(2141), 1, anon_sym_LBRACK_RBRACK, - STATE(450), 1, + STATE(244), 1, sym__link_label, - STATE(451), 1, + STATE(245), 1, sym_inline_link_destination, - [21509] = 4, - ACTIONS(2161), 1, + [20422] = 5, + ACTIONS(2087), 1, anon_sym_LBRACK, - ACTIONS(2248), 1, - anon_sym_LBRACE, - STATE(264), 1, - sym_inline_attribute, - ACTIONS(2159), 2, - anon_sym_LBRACK_RBRACK, + ACTIONS(2089), 1, anon_sym_LPAREN, - [21523] = 3, - ACTIONS(2250), 1, + ACTIONS(2143), 1, + anon_sym_LBRACK_RBRACK, + STATE(293), 1, + sym_inline_link_destination, + STATE(294), 1, + sym__link_label, + [20438] = 3, + ACTIONS(2145), 1, + anon_sym_PERCENT, + STATE(618), 1, + aux_sym__comment_with_newline_repeat1, + ACTIONS(2093), 3, + sym_backslash_escape, + aux_sym__comment_with_newline_token1, + sym__newline, + [20450] = 3, + ACTIONS(2150), 1, anon_sym_PERCENT, - STATE(644), 1, + STATE(636), 1, aux_sym__comment_with_newline_repeat1, - ACTIONS(2189), 3, + ACTIONS(2147), 3, sym_backslash_escape, aux_sym__comment_with_newline_token1, sym__newline, - [21535] = 1, - ACTIONS(2252), 4, + [20462] = 1, + ACTIONS(2152), 4, sym_backslash_escape, anon_sym_PERCENT, aux_sym__comment_with_newline_token1, sym__newline, - [21542] = 3, - ACTIONS(2254), 1, + [20469] = 3, + ACTIONS(2154), 1, + anon_sym_STAR, + ACTIONS(2156), 1, + aux_sym_strong_end_token1, + STATE(221), 1, + sym_strong_end, + [20479] = 2, + ACTIONS(2160), 1, + anon_sym_LBRACK, + ACTIONS(2158), 2, + anon_sym_LBRACK_RBRACK, + anon_sym_LPAREN, + [20487] = 3, + ACTIONS(2162), 1, + anon_sym_STAR, + ACTIONS(2164), 1, + aux_sym_strong_end_token1, + STATE(426), 1, + sym_strong_end, + [20497] = 3, + ACTIONS(2166), 1, + anon_sym_STAR, + ACTIONS(2168), 1, + aux_sym_strong_end_token1, + STATE(405), 1, + sym_strong_end, + [20507] = 3, + ACTIONS(2170), 1, + anon_sym_STAR, + ACTIONS(2172), 1, + aux_sym_strong_end_token1, + STATE(455), 1, + sym_strong_end, + [20517] = 3, + ACTIONS(2174), 1, + anon_sym_STAR, + ACTIONS(2176), 1, + aux_sym_strong_end_token1, + STATE(355), 1, + sym_strong_end, + [20527] = 3, + ACTIONS(2178), 1, + anon_sym_STAR, + ACTIONS(2180), 1, + aux_sym_strong_end_token1, + STATE(505), 1, + sym_strong_end, + [20537] = 3, + ACTIONS(2182), 1, + anon_sym_STAR, + ACTIONS(2184), 1, + aux_sym_strong_end_token1, + STATE(255), 1, + sym_strong_end, + [20547] = 3, + ACTIONS(2186), 1, + anon_sym_STAR, + ACTIONS(2188), 1, + aux_sym_strong_end_token1, + STATE(305), 1, + sym_strong_end, + [20557] = 3, + ACTIONS(2190), 1, + anon_sym_STAR, + ACTIONS(2192), 1, + aux_sym_strong_end_token1, + STATE(269), 1, + sym_strong_end, + [20567] = 3, + ACTIONS(2194), 1, + anon_sym_DQUOTE, + ACTIONS(2196), 1, + aux_sym_value_token2, + STATE(595), 1, + sym_value, + [20577] = 3, + ACTIONS(2198), 1, + anon_sym_STAR, + ACTIONS(2200), 1, + aux_sym_strong_end_token1, + STATE(415), 1, + sym_strong_end, + [20587] = 2, + ACTIONS(2204), 1, + anon_sym_LBRACK, + ACTIONS(2202), 2, + anon_sym_LBRACK_RBRACK, + anon_sym_LPAREN, + [20595] = 2, + ACTIONS(1921), 1, + anon_sym_PERCENT, + STATE(727), 1, + sym__comment_with_newline, + [20602] = 2, + ACTIONS(2206), 1, + anon_sym__, + STATE(704), 1, + sym_emphasis_end, + [20609] = 2, + ACTIONS(1921), 1, + anon_sym_PERCENT, + STATE(887), 1, + sym__comment_with_newline, + [20616] = 2, + ACTIONS(2208), 1, + sym__emphasis_begin_check, + ACTIONS(2211), 1, + sym__in_fallback, + [20623] = 2, + ACTIONS(2206), 1, + anon_sym__, + STATE(788), 1, + sym_emphasis_end, + [20630] = 2, + ACTIONS(2213), 1, + sym__emphasis_begin_check, + ACTIONS(2216), 1, + sym__in_fallback, + [20637] = 2, + ACTIONS(1921), 1, + anon_sym_PERCENT, + STATE(852), 1, + sym__comment_with_newline, + [20644] = 2, + ACTIONS(2206), 1, + anon_sym__, + STATE(781), 1, + sym_emphasis_end, + [20651] = 2, + ACTIONS(2218), 1, + anon_sym_TILDE, + ACTIONS(2220), 1, + anon_sym_TILDE_RBRACE, + [20658] = 2, + ACTIONS(2222), 1, + sym__id, + STATE(601), 1, + sym_class_name, + [20665] = 2, + ACTIONS(2224), 1, + anon_sym_CARET, + ACTIONS(2226), 1, + anon_sym_CARET_RBRACE, + [20672] = 2, + ACTIONS(1921), 1, + anon_sym_PERCENT, + STATE(807), 1, + sym__comment_with_newline, + [20679] = 2, + ACTIONS(2228), 1, + anon_sym_CARET, + ACTIONS(2230), 1, + anon_sym_CARET_RBRACE, + [20686] = 2, + ACTIONS(2232), 1, + anon_sym_TILDE, + ACTIONS(2234), 1, + anon_sym_TILDE_RBRACE, + [20693] = 2, + ACTIONS(2236), 1, + anon_sym_TILDE, + ACTIONS(2238), 1, + anon_sym_TILDE_RBRACE, + [20700] = 2, + ACTIONS(2206), 1, anon_sym__, + STATE(798), 1, + sym_emphasis_end, + [20707] = 2, + ACTIONS(2240), 1, + anon_sym_CARET, + ACTIONS(2242), 1, + anon_sym_CARET_RBRACE, + [20714] = 2, + ACTIONS(2244), 1, + sym__emphasis_begin_check, + ACTIONS(2247), 1, + sym__in_fallback, + [20721] = 2, + ACTIONS(2249), 1, + anon_sym_CARET, + ACTIONS(2251), 1, + anon_sym_CARET_RBRACE, + [20728] = 2, + ACTIONS(2253), 1, + sym__emphasis_begin_check, ACTIONS(2256), 1, - aux_sym_emphasis_end_token1, - STATE(519), 1, - sym_emphasis_end, - [21552] = 2, - ACTIONS(2260), 1, - anon_sym_LBRACK, - ACTIONS(2258), 2, - anon_sym_LBRACK_RBRACK, - anon_sym_LPAREN, - [21560] = 3, - ACTIONS(2262), 1, + sym__in_fallback, + [20735] = 2, + ACTIONS(2206), 1, anon_sym__, - ACTIONS(2264), 1, - aux_sym_emphasis_end_token1, - STATE(467), 1, + STATE(761), 1, + sym_emphasis_end, + [20742] = 2, + ACTIONS(1921), 1, + anon_sym_PERCENT, + STATE(792), 1, + sym__comment_with_newline, + [20749] = 2, + ACTIONS(2258), 1, + sym__emphasis_begin_check, + ACTIONS(2261), 1, + sym__in_fallback, + [20756] = 2, + ACTIONS(2206), 1, + anon_sym__, + STATE(843), 1, sym_emphasis_end, - [21570] = 3, + [20763] = 2, + ACTIONS(1921), 1, + anon_sym_PERCENT, + STATE(730), 1, + sym__comment_with_newline, + [20770] = 2, + ACTIONS(2263), 1, + sym__emphasis_begin_check, ACTIONS(2266), 1, - anon_sym_DQUOTE, + sym__in_fallback, + [20777] = 2, ACTIONS(2268), 1, - aux_sym_value_token2, - STATE(621), 1, - sym_value, - [21580] = 3, + anon_sym_TILDE, ACTIONS(2270), 1, - anon_sym_STAR, + anon_sym_TILDE_RBRACE, + [20784] = 2, + ACTIONS(1921), 1, + anon_sym_PERCENT, + STATE(715), 1, + sym__comment_with_newline, + [20791] = 2, ACTIONS(2272), 1, - aux_sym_strong_end_token1, - STATE(417), 1, - sym_strong_end, - [21590] = 3, + anon_sym_CARET, ACTIONS(2274), 1, - anon_sym__, + anon_sym_CARET_RBRACE, + [20798] = 2, ACTIONS(2276), 1, - aux_sym_emphasis_end_token1, - STATE(415), 1, - sym_emphasis_end, - [21600] = 3, + anon_sym_TILDE, ACTIONS(2278), 1, - anon_sym_STAR, + anon_sym_TILDE_RBRACE, + [20805] = 2, ACTIONS(2280), 1, - aux_sym_strong_end_token1, - STATE(455), 1, - sym_strong_end, - [21610] = 3, + anon_sym_CARET, ACTIONS(2282), 1, - anon_sym_STAR, + anon_sym_CARET_RBRACE, + [20812] = 2, ACTIONS(2284), 1, - aux_sym_strong_end_token1, - STATE(521), 1, - sym_strong_end, - [21620] = 3, - ACTIONS(2286), 1, - anon_sym_STAR, - ACTIONS(2288), 1, - aux_sym_strong_end_token1, - STATE(261), 1, - sym_strong_end, - [21630] = 3, - ACTIONS(2290), 1, + sym__emphasis_begin_check, + ACTIONS(2287), 1, + sym__in_fallback, + [20819] = 2, + ACTIONS(2289), 1, + anon_sym_CARET, + ACTIONS(2291), 1, + anon_sym_CARET_RBRACE, + [20826] = 2, + ACTIONS(2293), 1, + anon_sym_TILDE, + ACTIONS(2295), 1, + anon_sym_TILDE_RBRACE, + [20833] = 2, + ACTIONS(2206), 1, anon_sym__, - ACTIONS(2292), 1, - aux_sym_emphasis_end_token1, - STATE(259), 1, + STATE(718), 1, sym_emphasis_end, - [21640] = 3, - ACTIONS(2294), 1, - anon_sym_STAR, - ACTIONS(2296), 1, - aux_sym_strong_end_token1, - STATE(365), 1, - sym_strong_end, - [21650] = 2, - ACTIONS(2300), 1, - anon_sym_LBRACK, - ACTIONS(2298), 2, - anon_sym_LBRACK_RBRACK, - anon_sym_LPAREN, - [21658] = 3, - ACTIONS(2302), 1, - anon_sym_STAR, - ACTIONS(2304), 1, - aux_sym_strong_end_token1, - STATE(469), 1, - sym_strong_end, - [21668] = 3, - ACTIONS(2306), 1, - anon_sym_STAR, - ACTIONS(2308), 1, - aux_sym_strong_end_token1, - STATE(226), 1, - sym_strong_end, - [21678] = 3, - ACTIONS(2310), 1, + [20840] = 2, + ACTIONS(2206), 1, anon_sym__, - ACTIONS(2312), 1, - aux_sym_emphasis_end_token1, - STATE(224), 1, + STATE(879), 1, sym_emphasis_end, - [21688] = 3, - ACTIONS(2314), 1, + [20847] = 2, + ACTIONS(1921), 1, + anon_sym_PERCENT, + STATE(734), 1, + sym__comment_with_newline, + [20854] = 2, + ACTIONS(2206), 1, anon_sym__, - ACTIONS(2316), 1, - aux_sym_emphasis_end_token1, - STATE(311), 1, + STATE(737), 1, sym_emphasis_end, - [21698] = 3, + [20861] = 2, + ACTIONS(2297), 1, + anon_sym_TILDE, + ACTIONS(2299), 1, + anon_sym_TILDE_RBRACE, + [20868] = 2, + ACTIONS(2301), 1, + anon_sym_TILDE, + ACTIONS(2303), 1, + anon_sym_TILDE_RBRACE, + [20875] = 2, + ACTIONS(2305), 1, + anon_sym_CARET, + ACTIONS(2307), 1, + anon_sym_CARET_RBRACE, + [20882] = 2, + ACTIONS(2309), 1, + sym__emphasis_begin_check, + ACTIONS(2312), 1, + sym__in_fallback, + [20889] = 2, + ACTIONS(1921), 1, + anon_sym_PERCENT, + STATE(756), 1, + sym__comment_with_newline, + [20896] = 2, + ACTIONS(2314), 1, + anon_sym_CARET, + ACTIONS(2316), 1, + anon_sym_CARET_RBRACE, + [20903] = 2, ACTIONS(2318), 1, - anon_sym_STAR, - ACTIONS(2320), 1, - aux_sym_strong_end_token1, - STATE(313), 1, - sym_strong_end, - [21708] = 3, - ACTIONS(2322), 1, + sym__emphasis_begin_check, + ACTIONS(2321), 1, + sym__in_fallback, + [20910] = 2, + ACTIONS(2323), 1, + anon_sym_TILDE, + ACTIONS(2325), 1, + anon_sym_TILDE_RBRACE, + [20917] = 2, + ACTIONS(2327), 1, + sym__emphasis_begin_check, + ACTIONS(2330), 1, + sym__in_fallback, + [20924] = 2, + ACTIONS(2206), 1, anon_sym__, - ACTIONS(2324), 1, - aux_sym_emphasis_end_token1, - STATE(445), 1, + STATE(759), 1, sym_emphasis_end, - [21718] = 3, - ACTIONS(2326), 1, - anon_sym_STAR, - ACTIONS(2328), 1, - aux_sym_strong_end_token1, - STATE(438), 1, - sym_strong_end, - [21728] = 3, - ACTIONS(2330), 1, - anon_sym_STAR, + [20931] = 2, + ACTIONS(1921), 1, + anon_sym_PERCENT, + STATE(778), 1, + sym__comment_with_newline, + [20938] = 2, ACTIONS(2332), 1, - aux_sym_strong_end_token1, - STATE(288), 1, - sym_strong_end, - [21738] = 3, + anon_sym_CARET, ACTIONS(2334), 1, - anon_sym__, + anon_sym_CARET_RBRACE, + [20945] = 2, ACTIONS(2336), 1, - aux_sym_emphasis_end_token1, - STATE(299), 1, - sym_emphasis_end, - [21748] = 3, + anon_sym_TILDE, ACTIONS(2338), 1, - anon_sym__, + anon_sym_TILDE_RBRACE, + [20952] = 1, ACTIONS(2340), 1, - aux_sym_emphasis_end_token1, - STATE(457), 1, - sym_emphasis_end, - [21758] = 3, + anon_sym_PLUS_RBRACE, + [20956] = 1, ACTIONS(2342), 1, - anon_sym__, + sym__emphasis_end_check, + [20960] = 1, ACTIONS(2344), 1, - aux_sym_emphasis_end_token1, - STATE(363), 1, - sym_emphasis_end, - [21768] = 2, + sym__emphasis_end_check, + [20964] = 1, ACTIONS(2346), 1, - anon_sym_TILDE, + anon_sym_RBRACE, + [20968] = 1, ACTIONS(2348), 1, - anon_sym_TILDE_RBRACE, - [21775] = 2, + sym__newline, + [20972] = 1, ACTIONS(2350), 1, - anon_sym_TILDE, + sym__verbatim_end, + [20976] = 1, ACTIONS(2352), 1, - anon_sym_TILDE_RBRACE, - [21782] = 2, - ACTIONS(2021), 1, - anon_sym_PERCENT, - STATE(713), 1, - sym__comment_with_newline, - [21789] = 2, + sym__newline, + [20980] = 1, ACTIONS(2354), 1, - sym__id, - STATE(624), 1, - sym_class_name, - [21796] = 2, - ACTIONS(2021), 1, - anon_sym_PERCENT, - STATE(770), 1, - sym__comment_with_newline, - [21803] = 2, + anon_sym_GT, + [20984] = 1, ACTIONS(2356), 1, - anon_sym_TILDE, + anon_sym_EQ_RBRACE, + [20988] = 1, ACTIONS(2358), 1, - anon_sym_TILDE_RBRACE, - [21810] = 2, - ACTIONS(2021), 1, - anon_sym_PERCENT, - STATE(849), 1, - sym__comment_with_newline, - [21817] = 2, - ACTIONS(2021), 1, - anon_sym_PERCENT, - STATE(751), 1, - sym__comment_with_newline, - [21824] = 2, + anon_sym_PLUS_RBRACE, + [20992] = 1, ACTIONS(2360), 1, - anon_sym_CARET, + anon_sym_DASH_RBRACE, + [20996] = 1, ACTIONS(2362), 1, - anon_sym_CARET_RBRACE, - [21831] = 2, - ACTIONS(2021), 1, - anon_sym_PERCENT, - STATE(734), 1, - sym__comment_with_newline, - [21838] = 2, - ACTIONS(2021), 1, - anon_sym_PERCENT, - STATE(802), 1, - sym__comment_with_newline, - [21845] = 2, - ACTIONS(2021), 1, - anon_sym_PERCENT, - STATE(825), 1, - sym__comment_with_newline, - [21852] = 2, - ACTIONS(2021), 1, - anon_sym_PERCENT, - STATE(739), 1, - sym__comment_with_newline, - [21859] = 2, + anon_sym_RBRACK, + [21000] = 1, ACTIONS(2364), 1, - anon_sym_CARET, + sym__verbatim_end, + [21004] = 1, ACTIONS(2366), 1, - anon_sym_CARET_RBRACE, - [21866] = 2, + anon_sym_RBRACE, + [21008] = 1, ACTIONS(2368), 1, - anon_sym_TILDE, + anon_sym_RBRACK2, + [21012] = 1, ACTIONS(2370), 1, - anon_sym_TILDE_RBRACE, - [21873] = 2, + anon_sym_RPAREN, + [21016] = 1, ACTIONS(2372), 1, - anon_sym_CARET, + sym__emphasis_end_check, + [21020] = 1, ACTIONS(2374), 1, - anon_sym_CARET_RBRACE, - [21880] = 2, - ACTIONS(2021), 1, - anon_sym_PERCENT, - STATE(775), 1, - sym__comment_with_newline, - [21887] = 2, + anon_sym_RBRACE, + [21024] = 1, ACTIONS(2376), 1, - anon_sym_TILDE, + sym__newline, + [21028] = 1, ACTIONS(2378), 1, - anon_sym_TILDE_RBRACE, - [21894] = 2, - ACTIONS(2021), 1, - anon_sym_PERCENT, - STATE(798), 1, - sym__comment_with_newline, - [21901] = 2, + sym__verbatim_end, + [21032] = 1, ACTIONS(2380), 1, - anon_sym_CARET, + anon_sym_RBRACK, + [21036] = 1, ACTIONS(2382), 1, - anon_sym_CARET_RBRACE, - [21908] = 2, + anon_sym_GT, + [21040] = 1, ACTIONS(2384), 1, - anon_sym_TILDE, + anon_sym_EQ_RBRACE, + [21044] = 1, ACTIONS(2386), 1, - anon_sym_TILDE_RBRACE, - [21915] = 2, + anon_sym_PLUS_RBRACE, + [21048] = 1, ACTIONS(2388), 1, - anon_sym_CARET, + anon_sym_DASH_RBRACE, + [21052] = 1, ACTIONS(2390), 1, - anon_sym_CARET_RBRACE, - [21922] = 2, + anon_sym_RBRACE, + [21056] = 1, ACTIONS(2392), 1, - anon_sym_CARET, + anon_sym_RBRACK2, + [21060] = 1, ACTIONS(2394), 1, - anon_sym_CARET_RBRACE, - [21929] = 2, + anon_sym_RBRACK, + [21064] = 1, ACTIONS(2396), 1, - anon_sym_CARET, + anon_sym_RBRACE, + [21068] = 1, ACTIONS(2398), 1, - anon_sym_CARET_RBRACE, - [21936] = 2, + anon_sym_RBRACK, + [21072] = 1, ACTIONS(2400), 1, - anon_sym_CARET, + sym__verbatim_end, + [21076] = 1, ACTIONS(2402), 1, - anon_sym_CARET_RBRACE, - [21943] = 2, + sym__verbatim_end, + [21080] = 1, ACTIONS(2404), 1, - anon_sym_TILDE, + anon_sym_RBRACE, + [21084] = 1, ACTIONS(2406), 1, - anon_sym_TILDE_RBRACE, - [21950] = 2, + anon_sym_RBRACK2, + [21088] = 1, ACTIONS(2408), 1, - anon_sym_TILDE, + anon_sym_RPAREN, + [21092] = 1, ACTIONS(2410), 1, - anon_sym_TILDE_RBRACE, - [21957] = 2, + sym__emphasis_end_check, + [21096] = 1, ACTIONS(2412), 1, - anon_sym_TILDE, + anon_sym_RBRACE, + [21100] = 1, ACTIONS(2414), 1, - anon_sym_TILDE_RBRACE, - [21964] = 2, + anon_sym_RBRACK, + [21104] = 1, ACTIONS(2416), 1, - anon_sym_CARET, + sym__newline, + [21108] = 1, ACTIONS(2418), 1, - anon_sym_CARET_RBRACE, - [21971] = 2, + anon_sym_DASH_RBRACE, + [21112] = 1, ACTIONS(2420), 1, - anon_sym_TILDE, + anon_sym_PLUS_RBRACE, + [21116] = 1, ACTIONS(2422), 1, - anon_sym_TILDE_RBRACE, - [21978] = 2, + sym__verbatim_end, + [21120] = 1, ACTIONS(2424), 1, - anon_sym_CARET, + sym__verbatim_content, + [21124] = 1, ACTIONS(2426), 1, - anon_sym_CARET_RBRACE, - [21985] = 1, + anon_sym_GT, + [21128] = 1, ACTIONS(2428), 1, - anon_sym_RBRACE, - [21989] = 1, + anon_sym_EQ_RBRACE, + [21132] = 1, ACTIONS(2430), 1, - sym__verbatim_end, - [21993] = 1, + anon_sym_EQ_RBRACE, + [21136] = 1, ACTIONS(2432), 1, - anon_sym_RBRACK2, - [21997] = 1, + anon_sym_DASH_RBRACE, + [21140] = 1, ACTIONS(2434), 1, - anon_sym_RPAREN, - [22001] = 1, + anon_sym_EQ_RBRACE, + [21144] = 1, ACTIONS(2436), 1, - anon_sym_RBRACE, - [22005] = 1, + anon_sym_GT, + [21148] = 1, ACTIONS(2438), 1, - sym__newline, - [22009] = 1, + anon_sym_RBRACK, + [21152] = 1, ACTIONS(2440), 1, - anon_sym_PLUS_RBRACE, - [22013] = 1, + sym__verbatim_end, + [21156] = 1, ACTIONS(2442), 1, - anon_sym_EQ_RBRACE, - [22017] = 1, + sym__newline, + [21160] = 1, ACTIONS(2444), 1, - sym__verbatim_end, - [22021] = 1, + anon_sym_RBRACE, + [21164] = 1, ACTIONS(2446), 1, - anon_sym_GT, - [22025] = 1, + sym__verbatim_end, + [21168] = 1, ACTIONS(2448), 1, - anon_sym_GT, - [22029] = 1, + anon_sym_RBRACE, + [21172] = 1, ACTIONS(2450), 1, - anon_sym_EQ_RBRACE, - [22033] = 1, + anon_sym_RBRACK2, + [21176] = 1, ACTIONS(2452), 1, - anon_sym_PLUS_RBRACE, - [22037] = 1, + anon_sym_RPAREN, + [21180] = 1, ACTIONS(2454), 1, - anon_sym_DASH_RBRACE, - [22041] = 1, + sym__emphasis_end_check, + [21184] = 1, ACTIONS(2456), 1, - sym__verbatim_end, - [22045] = 1, + anon_sym_RBRACE, + [21188] = 1, ACTIONS(2458), 1, - anon_sym_RBRACK, - [22049] = 1, + sym__emphasis_end_check, + [21192] = 1, ACTIONS(2460), 1, sym__newline, - [22053] = 1, + [21196] = 1, ACTIONS(2462), 1, - anon_sym_RBRACE, - [22057] = 1, - ACTIONS(2464), 1, anon_sym_RPAREN, - [22061] = 1, - ACTIONS(2466), 1, + [21200] = 1, + ACTIONS(2464), 1, anon_sym_RBRACK2, - [22065] = 1, - ACTIONS(2468), 1, + [21204] = 1, + ACTIONS(2466), 1, sym__verbatim_end, - [22069] = 1, + [21208] = 1, + ACTIONS(2468), 1, + anon_sym_EQ, + [21212] = 1, ACTIONS(2470), 1, - anon_sym_RBRACE, - [22073] = 1, + anon_sym_GT, + [21216] = 1, ACTIONS(2472), 1, - anon_sym_RBRACK2, - [22077] = 1, + anon_sym_EQ_RBRACE, + [21220] = 1, ACTIONS(2474), 1, - anon_sym_RPAREN, - [22081] = 1, + anon_sym_PLUS_RBRACE, + [21224] = 1, ACTIONS(2476), 1, - anon_sym_RBRACE, - [22085] = 1, + anon_sym_DASH_RBRACE, + [21228] = 1, ACTIONS(2478), 1, - sym__newline, - [22089] = 1, + anon_sym_PLUS_RBRACE, + [21232] = 1, ACTIONS(2480), 1, - anon_sym_RBRACE, - [22093] = 1, - ACTIONS(2482), 1, sym__verbatim_end, - [22097] = 1, + [21236] = 1, + ACTIONS(2482), 1, + anon_sym_RBRACK, + [21240] = 1, ACTIONS(2484), 1, sym__verbatim_end, - [22101] = 1, + [21244] = 1, ACTIONS(2486), 1, - anon_sym_RBRACK, - [22105] = 1, + aux_sym_inline_link_destination_token1, + [21248] = 1, ACTIONS(2488), 1, - anon_sym_GT, - [22109] = 1, + anon_sym_RBRACK, + [21252] = 1, ACTIONS(2490), 1, - anon_sym_EQ_RBRACE, - [22113] = 1, + sym__verbatim_end, + [21256] = 1, ACTIONS(2492), 1, - anon_sym_PLUS_RBRACE, - [22117] = 1, + anon_sym_RBRACE, + [21260] = 1, ACTIONS(2494), 1, - anon_sym_DASH_RBRACE, - [22121] = 1, + anon_sym_RBRACK2, + [21264] = 1, ACTIONS(2496), 1, - anon_sym_RBRACK, - [22125] = 1, + anon_sym_RPAREN, + [21268] = 1, ACTIONS(2498), 1, - anon_sym_DASH_RBRACE, - [22129] = 1, + sym__emphasis_end_check, + [21272] = 1, ACTIONS(2500), 1, - anon_sym_PLUS_RBRACE, - [22133] = 1, + anon_sym_RBRACE, + [21276] = 1, ACTIONS(2502), 1, - sym__verbatim_end, - [22137] = 1, + anon_sym_DASH_RBRACE, + [21280] = 1, ACTIONS(2504), 1, - anon_sym_RBRACE, - [22141] = 1, + sym__whitespace, + [21284] = 1, ACTIONS(2506), 1, - anon_sym_RBRACK2, - [22145] = 1, + anon_sym_PLUS_RBRACE, + [21288] = 1, ACTIONS(2508), 1, - anon_sym_RPAREN, - [22149] = 1, + anon_sym_EQ_RBRACE, + [21292] = 1, ACTIONS(2510), 1, - anon_sym_RBRACE, - [22153] = 1, + anon_sym_GT, + [21296] = 1, ACTIONS(2512), 1, - sym__newline, - [22157] = 1, + sym__emphasis_end_check, + [21300] = 1, ACTIONS(2514), 1, - anon_sym_EQ_RBRACE, - [22161] = 1, - ACTIONS(2516), 1, anon_sym_GT, - [22165] = 1, + [21304] = 1, + ACTIONS(2516), 1, + sym__verbatim_end, + [21308] = 1, ACTIONS(2518), 1, sym__verbatim_end, - [22169] = 1, + [21312] = 1, ACTIONS(2520), 1, - sym__verbatim_end, - [22173] = 1, + anon_sym_RBRACE, + [21316] = 1, ACTIONS(2522), 1, - anon_sym_GT, - [22177] = 1, + sym__newline, + [21320] = 1, ACTIONS(2524), 1, - anon_sym_EQ_RBRACE, - [22181] = 1, + anon_sym_RBRACK2, + [21324] = 1, ACTIONS(2526), 1, - anon_sym_PLUS_RBRACE, - [22185] = 1, + anon_sym_RPAREN, + [21328] = 1, ACTIONS(2528), 1, - anon_sym_DASH_RBRACE, - [22189] = 1, + sym_language, + [21332] = 1, ACTIONS(2530), 1, - anon_sym_RBRACK, - [22193] = 1, + anon_sym_RBRACE, + [21336] = 1, ACTIONS(2532), 1, - sym__newline, - [22197] = 1, + sym__emphasis_end_check, + [21340] = 1, ACTIONS(2534), 1, - aux_sym_inline_link_destination_token1, - [22201] = 1, - ACTIONS(2536), 1, anon_sym_RPAREN, - [22205] = 1, - ACTIONS(2538), 1, + [21344] = 1, + ACTIONS(2536), 1, anon_sym_RBRACK2, - [22209] = 1, + [21348] = 1, + ACTIONS(2538), 1, + anon_sym_RPAREN, + [21352] = 1, ACTIONS(2540), 1, - sym__verbatim_end, - [22213] = 1, + anon_sym_EQ, + [21356] = 1, ACTIONS(2542), 1, - anon_sym_RBRACE, - [22217] = 1, + sym__verbatim_content, + [21360] = 1, ACTIONS(2544), 1, - anon_sym_RBRACK2, - [22221] = 1, + sym__verbatim_content, + [21364] = 1, ACTIONS(2546), 1, - anon_sym_RPAREN, - [22225] = 1, + anon_sym_RBRACK, + [21368] = 1, ACTIONS(2548), 1, - anon_sym_RBRACE, - [22229] = 1, + sym__verbatim_content, + [21372] = 1, ACTIONS(2550), 1, - sym__newline, - [22233] = 1, - ACTIONS(2552), 1, anon_sym_RBRACE, - [22237] = 1, + [21376] = 1, + ACTIONS(2552), 1, + anon_sym_RBRACK, + [21380] = 1, ACTIONS(2554), 1, - sym__verbatim_end, - [22241] = 1, + aux_sym_inline_link_destination_token1, + [21384] = 1, ACTIONS(2556), 1, sym__verbatim_end, - [22245] = 1, + [21388] = 1, ACTIONS(2558), 1, - anon_sym_RBRACK, - [22249] = 1, + sym_language, + [21392] = 1, ACTIONS(2560), 1, - anon_sym_GT, - [22253] = 1, + sym__verbatim_content, + [21396] = 1, ACTIONS(2562), 1, - anon_sym_EQ_RBRACE, - [22257] = 1, + anon_sym_RBRACK, + [21400] = 1, ACTIONS(2564), 1, - anon_sym_PLUS_RBRACE, - [22261] = 1, + anon_sym_RBRACK, + [21404] = 1, ACTIONS(2566), 1, - anon_sym_DASH_RBRACE, - [22265] = 1, + sym__verbatim_content, + [21408] = 1, ACTIONS(2568), 1, anon_sym_RBRACK, - [22269] = 1, + [21412] = 1, ACTIONS(2570), 1, anon_sym_DASH_RBRACE, - [22273] = 1, + [21416] = 1, ACTIONS(2572), 1, - anon_sym_PLUS_RBRACE, - [22277] = 1, + aux_sym_inline_link_destination_token1, + [21420] = 1, ACTIONS(2574), 1, - sym__verbatim_end, - [22281] = 1, + anon_sym_PLUS_RBRACE, + [21424] = 1, ACTIONS(2576), 1, - anon_sym_RBRACK2, - [22285] = 1, + sym_language, + [21428] = 1, ACTIONS(2578), 1, - anon_sym_RBRACK2, - [22289] = 1, + sym__verbatim_content, + [21432] = 1, ACTIONS(2580), 1, - anon_sym_RPAREN, - [22293] = 1, + anon_sym_EQ_RBRACE, + [21436] = 1, ACTIONS(2582), 1, - anon_sym_RBRACE, - [22297] = 1, + anon_sym_RBRACK, + [21440] = 1, ACTIONS(2584), 1, - anon_sym_EQ_RBRACE, - [22301] = 1, + sym__verbatim_content, + [21444] = 1, ACTIONS(2586), 1, anon_sym_GT, - [22305] = 1, + [21448] = 1, ACTIONS(2588), 1, - sym__verbatim_end, - [22309] = 1, + anon_sym_DASH_RBRACE, + [21452] = 1, ACTIONS(2590), 1, - sym__newline, - [22313] = 1, + aux_sym_inline_link_destination_token1, + [21456] = 1, ACTIONS(2592), 1, - anon_sym_RBRACE, - [22317] = 1, + sym__verbatim_end, + [21460] = 1, ACTIONS(2594), 1, - anon_sym_RPAREN, - [22321] = 1, + sym_language, + [21464] = 1, ACTIONS(2596), 1, - anon_sym_RBRACK2, - [22325] = 1, + sym__verbatim_content, + [21468] = 1, ACTIONS(2598), 1, - anon_sym_RBRACE, - [22329] = 1, + anon_sym_PLUS_RBRACE, + [21472] = 1, ACTIONS(2600), 1, - sym__verbatim_end, - [22333] = 1, - ACTIONS(2602), 1, anon_sym_RBRACK, - [22337] = 1, + [21476] = 1, + ACTIONS(2602), 1, + sym__verbatim_content, + [21480] = 1, ACTIONS(2604), 1, - anon_sym_RPAREN, - [22341] = 1, + sym__newline, + [21484] = 1, ACTIONS(2606), 1, - anon_sym_RBRACE, - [22345] = 1, + anon_sym_EQ_RBRACE, + [21488] = 1, ACTIONS(2608), 1, - anon_sym_DASH_RBRACE, - [22349] = 1, + aux_sym_inline_link_destination_token1, + [21492] = 1, ACTIONS(2610), 1, - anon_sym_PLUS_RBRACE, - [22353] = 1, + anon_sym_RBRACE, + [21496] = 1, ACTIONS(2612), 1, - anon_sym_EQ_RBRACE, - [22357] = 1, + sym_language, + [21500] = 1, ACTIONS(2614), 1, - anon_sym_GT, - [22361] = 1, + sym__verbatim_content, + [21504] = 1, ACTIONS(2616), 1, - sym__verbatim_end, - [22365] = 1, + anon_sym_GT, + [21508] = 1, ACTIONS(2618), 1, - sym__newline, - [22369] = 1, + anon_sym_RBRACK, + [21512] = 1, ACTIONS(2620), 1, - anon_sym_DQUOTE, - [22373] = 1, + sym__verbatim_content, + [21516] = 1, ACTIONS(2622), 1, - aux_sym_value_token1, - [22377] = 1, + sym__emphasis_end_check, + [21520] = 1, ACTIONS(2624), 1, - sym__verbatim_content, - [22381] = 1, + anon_sym_RBRACE, + [21524] = 1, ACTIONS(2626), 1, - sym__verbatim_content, - [22385] = 1, + aux_sym_inline_link_destination_token1, + [21528] = 1, ACTIONS(2628), 1, - anon_sym_RBRACE, - [22389] = 1, + anon_sym_RPAREN, + [21532] = 1, ACTIONS(2630), 1, - anon_sym_RBRACK, - [22393] = 1, + sym_language, + [21536] = 1, ACTIONS(2632), 1, sym__verbatim_content, - [22397] = 1, + [21540] = 1, ACTIONS(2634), 1, - anon_sym_DASH_RBRACE, - [22401] = 1, + anon_sym_RBRACK2, + [21544] = 1, ACTIONS(2636), 1, anon_sym_RBRACK, - [22405] = 1, + [21548] = 1, ACTIONS(2638), 1, - aux_sym_inline_link_destination_token1, - [22409] = 1, + sym__verbatim_content, + [21552] = 1, ACTIONS(2640), 1, - sym_language, - [22413] = 1, + anon_sym_RBRACE, + [21556] = 1, ACTIONS(2642), 1, - sym__verbatim_content, - [22417] = 1, + sym__verbatim_end, + [21560] = 1, ACTIONS(2644), 1, - anon_sym_RBRACK, - [22421] = 1, + aux_sym_inline_link_destination_token1, + [21564] = 1, ACTIONS(2646), 1, - anon_sym_RBRACE, - [22425] = 1, - ACTIONS(2648), 1, anon_sym_RBRACK, - [22429] = 1, + [21568] = 1, + ACTIONS(2648), 1, + sym_language, + [21572] = 1, ACTIONS(2650), 1, sym__verbatim_content, - [22433] = 1, + [21576] = 1, ACTIONS(2652), 1, - anon_sym_RBRACE, - [22437] = 1, + anon_sym_DASH_RBRACE, + [21580] = 1, ACTIONS(2654), 1, - sym__verbatim_end, - [22441] = 1, + anon_sym_RBRACK, + [21584] = 1, ACTIONS(2656), 1, - aux_sym_inline_link_destination_token1, - [22445] = 1, + sym__verbatim_content, + [21588] = 1, ACTIONS(2658), 1, - sym_language, - [22449] = 1, + anon_sym_PLUS_RBRACE, + [21592] = 1, ACTIONS(2660), 1, - sym__verbatim_content, - [22453] = 1, + aux_sym_value_token1, + [21596] = 1, ACTIONS(2662), 1, - anon_sym_DASH_RBRACE, - [22457] = 1, + aux_sym_inline_link_destination_token1, + [21600] = 1, ACTIONS(2664), 1, - anon_sym_PLUS_RBRACE, - [22461] = 1, + anon_sym_EQ_RBRACE, + [21604] = 1, ACTIONS(2666), 1, - anon_sym_RBRACK, - [22465] = 1, + sym_language, + [21608] = 1, ACTIONS(2668), 1, sym__verbatim_content, - [22469] = 1, + [21612] = 1, ACTIONS(2670), 1, - anon_sym_RBRACK, - [22473] = 1, + sym__verbatim_end, + [21616] = 1, ACTIONS(2672), 1, - anon_sym_EQ_RBRACE, - [22477] = 1, + anon_sym_RBRACK, + [21620] = 1, ACTIONS(2674), 1, - aux_sym_inline_link_destination_token1, - [22481] = 1, + sym__verbatim_content, + [21624] = 1, ACTIONS(2676), 1, - sym_language, - [22485] = 1, + anon_sym_GT, + [21628] = 1, ACTIONS(2678), 1, - sym__verbatim_content, - [22489] = 1, + sym__verbatim_end, + [21632] = 1, ACTIONS(2680), 1, - anon_sym_GT, - [22493] = 1, + aux_sym_inline_link_destination_token1, + [21636] = 1, ACTIONS(2682), 1, - sym_language, - [22497] = 1, + sym__newline, + [21640] = 1, ACTIONS(2684), 1, - anon_sym_RBRACK, - [22501] = 1, + sym_language, + [21644] = 1, ACTIONS(2686), 1, sym__verbatim_content, - [22505] = 1, + [21648] = 1, ACTIONS(2688), 1, - anon_sym_DASH_RBRACE, - [22509] = 1, + anon_sym_RBRACE, + [21652] = 1, ACTIONS(2690), 1, - anon_sym_RPAREN, - [22513] = 1, + anon_sym_RBRACK, + [21656] = 1, ACTIONS(2692), 1, - aux_sym_inline_link_destination_token1, - [22517] = 1, + sym__verbatim_content, + [21660] = 1, ACTIONS(2694), 1, - sym_language, - [22521] = 1, + sym__emphasis_end_check, + [21664] = 1, ACTIONS(2696), 1, - sym__verbatim_content, - [22525] = 1, + sym__emphasis_begin_check, + [21668] = 1, ACTIONS(2698), 1, - anon_sym_RBRACK2, - [22529] = 1, + aux_sym_inline_link_destination_token1, + [21672] = 1, ACTIONS(2700), 1, - anon_sym_RBRACE, - [22533] = 1, + anon_sym_RPAREN, + [21676] = 1, ACTIONS(2702), 1, - anon_sym_RBRACK, - [22537] = 1, + sym_language, + [21680] = 1, ACTIONS(2704), 1, - sym__verbatim_content, - [22541] = 1, + ts_builtin_sym_end, + [21684] = 1, ACTIONS(2706), 1, - anon_sym_PLUS_RBRACE, - [22545] = 1, + ts_builtin_sym_end, + [21688] = 1, ACTIONS(2708), 1, - sym__verbatim_end, - [22549] = 1, + anon_sym_RBRACK2, + [21692] = 1, ACTIONS(2710), 1, - aux_sym_inline_link_destination_token1, - [22553] = 1, + anon_sym_RBRACE, + [21696] = 1, ACTIONS(2712), 1, - sym_language, - [22557] = 1, + sym__verbatim_end, + [21700] = 1, ACTIONS(2714), 1, - sym__verbatim_content, - [22561] = 1, + anon_sym_DQUOTE, + [21704] = 1, ACTIONS(2716), 1, - sym__verbatim_end, - [22565] = 1, + sym__newline, + [21708] = 1, ACTIONS(2718), 1, anon_sym_RBRACK, - [22569] = 1, + [21712] = 1, ACTIONS(2720), 1, - anon_sym_RBRACK, - [22573] = 1, + anon_sym_DASH_RBRACE, + [21716] = 1, ACTIONS(2722), 1, - sym__verbatim_content, - [22577] = 1, + sym__emphasis_begin_check, + [21720] = 1, ACTIONS(2724), 1, - anon_sym_EQ_RBRACE, - [22581] = 1, + sym__emphasis_begin_check, + [21724] = 1, ACTIONS(2726), 1, - sym__verbatim_content, - [22585] = 1, + sym__emphasis_begin_check, + [21728] = 1, ACTIONS(2728), 1, - aux_sym_inline_link_destination_token1, - [22589] = 1, + sym__emphasis_begin_check, + [21732] = 1, ACTIONS(2730), 1, - sym_language, - [22593] = 1, + sym__emphasis_begin_check, + [21736] = 1, ACTIONS(2732), 1, - sym__verbatim_content, - [22597] = 1, + sym__emphasis_begin_check, + [21740] = 1, ACTIONS(2734), 1, - ts_builtin_sym_end, - [22601] = 1, + sym__emphasis_begin_check, + [21744] = 1, ACTIONS(2736), 1, - ts_builtin_sym_end, - [22605] = 1, + sym__emphasis_begin_check, + [21748] = 1, ACTIONS(2738), 1, - anon_sym_RBRACK, - [22609] = 1, - ACTIONS(2740), 1, - sym__verbatim_content, - [22613] = 1, - ACTIONS(2742), 1, - anon_sym_GT, - [22617] = 1, - ACTIONS(2744), 1, - sym__verbatim_end, - [22621] = 1, - ACTIONS(2746), 1, - aux_sym_inline_link_destination_token1, - [22625] = 1, - ACTIONS(2748), 1, - sym_language, - [22629] = 1, - ACTIONS(2750), 1, - sym__verbatim_content, - [22633] = 1, - ACTIONS(2752), 1, - anon_sym_EQ, - [22637] = 1, - ACTIONS(2754), 1, - anon_sym_RBRACK, - [22641] = 1, - ACTIONS(2756), 1, - anon_sym_RBRACK, - [22645] = 1, - ACTIONS(2758), 1, - sym__verbatim_content, - [22649] = 1, - ACTIONS(2760), 1, - anon_sym_RBRACK, - [22653] = 1, - ACTIONS(2762), 1, - sym__newline, - [22657] = 1, - ACTIONS(2764), 1, - aux_sym_inline_link_destination_token1, - [22661] = 1, - ACTIONS(2766), 1, - sym_language, - [22665] = 1, - ACTIONS(2768), 1, - sym__verbatim_content, - [22669] = 1, - ACTIONS(2770), 1, - sym__newline, - [22673] = 1, - ACTIONS(2772), 1, - sym__whitespace, - [22677] = 1, - ACTIONS(2774), 1, - anon_sym_RBRACK, - [22681] = 1, - ACTIONS(2776), 1, - sym__verbatim_content, - [22685] = 1, - ACTIONS(2778), 1, - anon_sym_RBRACE, - [22689] = 1, - ACTIONS(2780), 1, - anon_sym_EQ, - [22693] = 1, - ACTIONS(2782), 1, - aux_sym_inline_link_destination_token1, - [22697] = 1, - ACTIONS(2784), 1, - sym_language, + sym__emphasis_begin_check, }; static const uint32_t ts_small_parse_table_map[] = { @@ -37882,1948 +36623,1942 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(123)] = 52, [SMALL_STATE(124)] = 104, [SMALL_STATE(125)] = 152, - [SMALL_STATE(126)] = 204, - [SMALL_STATE(127)] = 256, - [SMALL_STATE(128)] = 308, - [SMALL_STATE(129)] = 356, - [SMALL_STATE(130)] = 408, - [SMALL_STATE(131)] = 460, - [SMALL_STATE(132)] = 508, - [SMALL_STATE(133)] = 558, - [SMALL_STATE(134)] = 606, - [SMALL_STATE(135)] = 656, - [SMALL_STATE(136)] = 704, - [SMALL_STATE(137)] = 754, - [SMALL_STATE(138)] = 802, - [SMALL_STATE(139)] = 852, - [SMALL_STATE(140)] = 900, - [SMALL_STATE(141)] = 952, - [SMALL_STATE(142)] = 1000, - [SMALL_STATE(143)] = 1048, - [SMALL_STATE(144)] = 1096, - [SMALL_STATE(145)] = 1148, - [SMALL_STATE(146)] = 1196, - [SMALL_STATE(147)] = 1246, + [SMALL_STATE(126)] = 202, + [SMALL_STATE(127)] = 254, + [SMALL_STATE(128)] = 302, + [SMALL_STATE(129)] = 350, + [SMALL_STATE(130)] = 402, + [SMALL_STATE(131)] = 452, + [SMALL_STATE(132)] = 502, + [SMALL_STATE(133)] = 552, + [SMALL_STATE(134)] = 604, + [SMALL_STATE(135)] = 654, + [SMALL_STATE(136)] = 702, + [SMALL_STATE(137)] = 750, + [SMALL_STATE(138)] = 798, + [SMALL_STATE(139)] = 846, + [SMALL_STATE(140)] = 894, + [SMALL_STATE(141)] = 946, + [SMALL_STATE(142)] = 998, + [SMALL_STATE(143)] = 1046, + [SMALL_STATE(144)] = 1094, + [SMALL_STATE(145)] = 1144, + [SMALL_STATE(146)] = 1192, + [SMALL_STATE(147)] = 1242, [SMALL_STATE(148)] = 1294, - [SMALL_STATE(149)] = 1344, - [SMALL_STATE(150)] = 1394, - [SMALL_STATE(151)] = 1446, - [SMALL_STATE(152)] = 1498, - [SMALL_STATE(153)] = 1546, - [SMALL_STATE(154)] = 1594, - [SMALL_STATE(155)] = 1646, - [SMALL_STATE(156)] = 1696, - [SMALL_STATE(157)] = 1746, - [SMALL_STATE(158)] = 1798, - [SMALL_STATE(159)] = 1846, - [SMALL_STATE(160)] = 1894, - [SMALL_STATE(161)] = 1946, - [SMALL_STATE(162)] = 1998, - [SMALL_STATE(163)] = 2046, - [SMALL_STATE(164)] = 2094, - [SMALL_STATE(165)] = 2142, - [SMALL_STATE(166)] = 2194, - [SMALL_STATE(167)] = 2246, - [SMALL_STATE(168)] = 2298, - [SMALL_STATE(169)] = 2350, - [SMALL_STATE(170)] = 2402, - [SMALL_STATE(171)] = 2450, - [SMALL_STATE(172)] = 2500, - [SMALL_STATE(173)] = 2545, - [SMALL_STATE(174)] = 2592, - [SMALL_STATE(175)] = 2639, - [SMALL_STATE(176)] = 2686, - [SMALL_STATE(177)] = 2731, - [SMALL_STATE(178)] = 2776, - [SMALL_STATE(179)] = 2823, - [SMALL_STATE(180)] = 2870, - [SMALL_STATE(181)] = 2917, - [SMALL_STATE(182)] = 2964, - [SMALL_STATE(183)] = 3011, - [SMALL_STATE(184)] = 3058, - [SMALL_STATE(185)] = 3103, - [SMALL_STATE(186)] = 3150, - [SMALL_STATE(187)] = 3195, - [SMALL_STATE(188)] = 3240, - [SMALL_STATE(189)] = 3285, - [SMALL_STATE(190)] = 3332, - [SMALL_STATE(191)] = 3379, - [SMALL_STATE(192)] = 3426, - [SMALL_STATE(193)] = 3473, - [SMALL_STATE(194)] = 3520, - [SMALL_STATE(195)] = 3565, - [SMALL_STATE(196)] = 3612, - [SMALL_STATE(197)] = 3657, - [SMALL_STATE(198)] = 3704, - [SMALL_STATE(199)] = 3751, - [SMALL_STATE(200)] = 3798, - [SMALL_STATE(201)] = 3845, - [SMALL_STATE(202)] = 3890, - [SMALL_STATE(203)] = 3932, - [SMALL_STATE(204)] = 3978, - [SMALL_STATE(205)] = 4020, - [SMALL_STATE(206)] = 4066, - [SMALL_STATE(207)] = 4108, - [SMALL_STATE(208)] = 4154, - [SMALL_STATE(209)] = 4196, - [SMALL_STATE(210)] = 4238, - [SMALL_STATE(211)] = 4280, - [SMALL_STATE(212)] = 4322, - [SMALL_STATE(213)] = 4364, - [SMALL_STATE(214)] = 4406, - [SMALL_STATE(215)] = 4448, - [SMALL_STATE(216)] = 4494, - [SMALL_STATE(217)] = 4536, - [SMALL_STATE(218)] = 4578, - [SMALL_STATE(219)] = 4620, - [SMALL_STATE(220)] = 4662, - [SMALL_STATE(221)] = 4704, - [SMALL_STATE(222)] = 4746, - [SMALL_STATE(223)] = 4788, - [SMALL_STATE(224)] = 4830, - [SMALL_STATE(225)] = 4872, - [SMALL_STATE(226)] = 4914, - [SMALL_STATE(227)] = 4956, - [SMALL_STATE(228)] = 4998, - [SMALL_STATE(229)] = 5042, - [SMALL_STATE(230)] = 5084, - [SMALL_STATE(231)] = 5126, - [SMALL_STATE(232)] = 5168, - [SMALL_STATE(233)] = 5210, - [SMALL_STATE(234)] = 5252, - [SMALL_STATE(235)] = 5294, - [SMALL_STATE(236)] = 5340, - [SMALL_STATE(237)] = 5386, - [SMALL_STATE(238)] = 5430, - [SMALL_STATE(239)] = 5472, - [SMALL_STATE(240)] = 5514, - [SMALL_STATE(241)] = 5560, - [SMALL_STATE(242)] = 5602, - [SMALL_STATE(243)] = 5644, - [SMALL_STATE(244)] = 5686, - [SMALL_STATE(245)] = 5728, - [SMALL_STATE(246)] = 5770, - [SMALL_STATE(247)] = 5812, - [SMALL_STATE(248)] = 5854, - [SMALL_STATE(249)] = 5896, - [SMALL_STATE(250)] = 5938, - [SMALL_STATE(251)] = 5980, - [SMALL_STATE(252)] = 6022, - [SMALL_STATE(253)] = 6064, - [SMALL_STATE(254)] = 6106, - [SMALL_STATE(255)] = 6148, - [SMALL_STATE(256)] = 6190, - [SMALL_STATE(257)] = 6232, - [SMALL_STATE(258)] = 6274, - [SMALL_STATE(259)] = 6316, - [SMALL_STATE(260)] = 6358, - [SMALL_STATE(261)] = 6400, - [SMALL_STATE(262)] = 6442, - [SMALL_STATE(263)] = 6484, - [SMALL_STATE(264)] = 6530, - [SMALL_STATE(265)] = 6572, - [SMALL_STATE(266)] = 6614, - [SMALL_STATE(267)] = 6656, - [SMALL_STATE(268)] = 6698, - [SMALL_STATE(269)] = 6740, - [SMALL_STATE(270)] = 6782, - [SMALL_STATE(271)] = 6824, - [SMALL_STATE(272)] = 6870, - [SMALL_STATE(273)] = 6914, - [SMALL_STATE(274)] = 6960, - [SMALL_STATE(275)] = 7006, - [SMALL_STATE(276)] = 7052, - [SMALL_STATE(277)] = 7094, - [SMALL_STATE(278)] = 7136, - [SMALL_STATE(279)] = 7178, - [SMALL_STATE(280)] = 7220, - [SMALL_STATE(281)] = 7262, - [SMALL_STATE(282)] = 7304, - [SMALL_STATE(283)] = 7350, - [SMALL_STATE(284)] = 7392, - [SMALL_STATE(285)] = 7436, - [SMALL_STATE(286)] = 7478, - [SMALL_STATE(287)] = 7520, - [SMALL_STATE(288)] = 7566, - [SMALL_STATE(289)] = 7608, - [SMALL_STATE(290)] = 7650, - [SMALL_STATE(291)] = 7692, - [SMALL_STATE(292)] = 7738, - [SMALL_STATE(293)] = 7780, - [SMALL_STATE(294)] = 7822, - [SMALL_STATE(295)] = 7864, - [SMALL_STATE(296)] = 7906, - [SMALL_STATE(297)] = 7948, - [SMALL_STATE(298)] = 7990, - [SMALL_STATE(299)] = 8032, - [SMALL_STATE(300)] = 8074, - [SMALL_STATE(301)] = 8116, - [SMALL_STATE(302)] = 8158, - [SMALL_STATE(303)] = 8200, - [SMALL_STATE(304)] = 8242, - [SMALL_STATE(305)] = 8284, - [SMALL_STATE(306)] = 8326, - [SMALL_STATE(307)] = 8368, - [SMALL_STATE(308)] = 8410, - [SMALL_STATE(309)] = 8452, - [SMALL_STATE(310)] = 8494, - [SMALL_STATE(311)] = 8536, - [SMALL_STATE(312)] = 8578, - [SMALL_STATE(313)] = 8620, - [SMALL_STATE(314)] = 8662, - [SMALL_STATE(315)] = 8704, - [SMALL_STATE(316)] = 8746, - [SMALL_STATE(317)] = 8788, - [SMALL_STATE(318)] = 8830, - [SMALL_STATE(319)] = 8872, - [SMALL_STATE(320)] = 8914, - [SMALL_STATE(321)] = 8956, - [SMALL_STATE(322)] = 8998, - [SMALL_STATE(323)] = 9040, - [SMALL_STATE(324)] = 9086, - [SMALL_STATE(325)] = 9128, - [SMALL_STATE(326)] = 9174, - [SMALL_STATE(327)] = 9216, - [SMALL_STATE(328)] = 9258, - [SMALL_STATE(329)] = 9300, - [SMALL_STATE(330)] = 9342, - [SMALL_STATE(331)] = 9384, - [SMALL_STATE(332)] = 9426, - [SMALL_STATE(333)] = 9468, - [SMALL_STATE(334)] = 9510, - [SMALL_STATE(335)] = 9552, - [SMALL_STATE(336)] = 9594, - [SMALL_STATE(337)] = 9638, - [SMALL_STATE(338)] = 9680, - [SMALL_STATE(339)] = 9722, - [SMALL_STATE(340)] = 9768, - [SMALL_STATE(341)] = 9810, - [SMALL_STATE(342)] = 9852, - [SMALL_STATE(343)] = 9894, - [SMALL_STATE(344)] = 9936, - [SMALL_STATE(345)] = 9978, - [SMALL_STATE(346)] = 10020, - [SMALL_STATE(347)] = 10062, - [SMALL_STATE(348)] = 10104, - [SMALL_STATE(349)] = 10146, - [SMALL_STATE(350)] = 10188, - [SMALL_STATE(351)] = 10230, - [SMALL_STATE(352)] = 10272, - [SMALL_STATE(353)] = 10314, - [SMALL_STATE(354)] = 10360, - [SMALL_STATE(355)] = 10402, - [SMALL_STATE(356)] = 10444, - [SMALL_STATE(357)] = 10486, - [SMALL_STATE(358)] = 10528, - [SMALL_STATE(359)] = 10570, - [SMALL_STATE(360)] = 10612, - [SMALL_STATE(361)] = 10654, - [SMALL_STATE(362)] = 10696, - [SMALL_STATE(363)] = 10738, - [SMALL_STATE(364)] = 10780, - [SMALL_STATE(365)] = 10822, - [SMALL_STATE(366)] = 10864, - [SMALL_STATE(367)] = 10906, - [SMALL_STATE(368)] = 10948, - [SMALL_STATE(369)] = 10990, - [SMALL_STATE(370)] = 11032, - [SMALL_STATE(371)] = 11074, - [SMALL_STATE(372)] = 11116, - [SMALL_STATE(373)] = 11158, - [SMALL_STATE(374)] = 11200, - [SMALL_STATE(375)] = 11244, - [SMALL_STATE(376)] = 11290, - [SMALL_STATE(377)] = 11332, - [SMALL_STATE(378)] = 11378, - [SMALL_STATE(379)] = 11420, - [SMALL_STATE(380)] = 11466, - [SMALL_STATE(381)] = 11512, - [SMALL_STATE(382)] = 11554, - [SMALL_STATE(383)] = 11596, - [SMALL_STATE(384)] = 11638, - [SMALL_STATE(385)] = 11680, - [SMALL_STATE(386)] = 11722, - [SMALL_STATE(387)] = 11764, - [SMALL_STATE(388)] = 11806, - [SMALL_STATE(389)] = 11850, - [SMALL_STATE(390)] = 11892, - [SMALL_STATE(391)] = 11934, - [SMALL_STATE(392)] = 11980, - [SMALL_STATE(393)] = 12022, - [SMALL_STATE(394)] = 12064, - [SMALL_STATE(395)] = 12106, - [SMALL_STATE(396)] = 12148, - [SMALL_STATE(397)] = 12190, - [SMALL_STATE(398)] = 12232, - [SMALL_STATE(399)] = 12274, - [SMALL_STATE(400)] = 12316, - [SMALL_STATE(401)] = 12358, - [SMALL_STATE(402)] = 12400, - [SMALL_STATE(403)] = 12442, - [SMALL_STATE(404)] = 12484, - [SMALL_STATE(405)] = 12526, - [SMALL_STATE(406)] = 12568, - [SMALL_STATE(407)] = 12610, - [SMALL_STATE(408)] = 12652, - [SMALL_STATE(409)] = 12694, - [SMALL_STATE(410)] = 12736, - [SMALL_STATE(411)] = 12778, - [SMALL_STATE(412)] = 12820, - [SMALL_STATE(413)] = 12862, - [SMALL_STATE(414)] = 12904, - [SMALL_STATE(415)] = 12946, - [SMALL_STATE(416)] = 12988, - [SMALL_STATE(417)] = 13030, - [SMALL_STATE(418)] = 13072, - [SMALL_STATE(419)] = 13114, - [SMALL_STATE(420)] = 13156, - [SMALL_STATE(421)] = 13198, - [SMALL_STATE(422)] = 13240, - [SMALL_STATE(423)] = 13282, - [SMALL_STATE(424)] = 13324, - [SMALL_STATE(425)] = 13366, - [SMALL_STATE(426)] = 13408, - [SMALL_STATE(427)] = 13450, - [SMALL_STATE(428)] = 13496, - [SMALL_STATE(429)] = 13538, - [SMALL_STATE(430)] = 13584, - [SMALL_STATE(431)] = 13626, - [SMALL_STATE(432)] = 13668, - [SMALL_STATE(433)] = 13710, - [SMALL_STATE(434)] = 13752, - [SMALL_STATE(435)] = 13794, - [SMALL_STATE(436)] = 13836, - [SMALL_STATE(437)] = 13878, - [SMALL_STATE(438)] = 13920, - [SMALL_STATE(439)] = 13962, - [SMALL_STATE(440)] = 14004, - [SMALL_STATE(441)] = 14048, - [SMALL_STATE(442)] = 14090, - [SMALL_STATE(443)] = 14132, - [SMALL_STATE(444)] = 14178, - [SMALL_STATE(445)] = 14220, - [SMALL_STATE(446)] = 14262, - [SMALL_STATE(447)] = 14304, - [SMALL_STATE(448)] = 14346, - [SMALL_STATE(449)] = 14388, - [SMALL_STATE(450)] = 14430, - [SMALL_STATE(451)] = 14472, - [SMALL_STATE(452)] = 14514, - [SMALL_STATE(453)] = 14556, - [SMALL_STATE(454)] = 14598, - [SMALL_STATE(455)] = 14640, - [SMALL_STATE(456)] = 14682, - [SMALL_STATE(457)] = 14724, - [SMALL_STATE(458)] = 14766, - [SMALL_STATE(459)] = 14808, - [SMALL_STATE(460)] = 14850, - [SMALL_STATE(461)] = 14892, - [SMALL_STATE(462)] = 14934, - [SMALL_STATE(463)] = 14976, - [SMALL_STATE(464)] = 15018, - [SMALL_STATE(465)] = 15060, - [SMALL_STATE(466)] = 15102, - [SMALL_STATE(467)] = 15144, - [SMALL_STATE(468)] = 15186, - [SMALL_STATE(469)] = 15228, - [SMALL_STATE(470)] = 15270, - [SMALL_STATE(471)] = 15312, - [SMALL_STATE(472)] = 15354, - [SMALL_STATE(473)] = 15396, - [SMALL_STATE(474)] = 15438, - [SMALL_STATE(475)] = 15480, - [SMALL_STATE(476)] = 15522, - [SMALL_STATE(477)] = 15564, - [SMALL_STATE(478)] = 15606, - [SMALL_STATE(479)] = 15648, - [SMALL_STATE(480)] = 15694, - [SMALL_STATE(481)] = 15736, - [SMALL_STATE(482)] = 15782, - [SMALL_STATE(483)] = 15824, - [SMALL_STATE(484)] = 15866, - [SMALL_STATE(485)] = 15908, - [SMALL_STATE(486)] = 15950, - [SMALL_STATE(487)] = 15992, - [SMALL_STATE(488)] = 16034, - [SMALL_STATE(489)] = 16076, - [SMALL_STATE(490)] = 16118, - [SMALL_STATE(491)] = 16160, - [SMALL_STATE(492)] = 16202, - [SMALL_STATE(493)] = 16246, - [SMALL_STATE(494)] = 16288, - [SMALL_STATE(495)] = 16330, - [SMALL_STATE(496)] = 16376, - [SMALL_STATE(497)] = 16418, - [SMALL_STATE(498)] = 16460, - [SMALL_STATE(499)] = 16502, - [SMALL_STATE(500)] = 16544, - [SMALL_STATE(501)] = 16586, - [SMALL_STATE(502)] = 16628, - [SMALL_STATE(503)] = 16670, - [SMALL_STATE(504)] = 16712, - [SMALL_STATE(505)] = 16754, - [SMALL_STATE(506)] = 16796, - [SMALL_STATE(507)] = 16838, - [SMALL_STATE(508)] = 16880, - [SMALL_STATE(509)] = 16922, - [SMALL_STATE(510)] = 16964, - [SMALL_STATE(511)] = 17006, - [SMALL_STATE(512)] = 17048, - [SMALL_STATE(513)] = 17090, - [SMALL_STATE(514)] = 17132, - [SMALL_STATE(515)] = 17174, - [SMALL_STATE(516)] = 17216, - [SMALL_STATE(517)] = 17258, - [SMALL_STATE(518)] = 17300, - [SMALL_STATE(519)] = 17342, - [SMALL_STATE(520)] = 17384, - [SMALL_STATE(521)] = 17426, - [SMALL_STATE(522)] = 17468, - [SMALL_STATE(523)] = 17510, - [SMALL_STATE(524)] = 17552, - [SMALL_STATE(525)] = 17594, - [SMALL_STATE(526)] = 17636, - [SMALL_STATE(527)] = 17678, - [SMALL_STATE(528)] = 17720, - [SMALL_STATE(529)] = 17762, - [SMALL_STATE(530)] = 17804, - [SMALL_STATE(531)] = 17846, - [SMALL_STATE(532)] = 17892, - [SMALL_STATE(533)] = 17934, - [SMALL_STATE(534)] = 17980, - [SMALL_STATE(535)] = 18022, - [SMALL_STATE(536)] = 18068, - [SMALL_STATE(537)] = 18110, - [SMALL_STATE(538)] = 18152, - [SMALL_STATE(539)] = 18194, - [SMALL_STATE(540)] = 18236, - [SMALL_STATE(541)] = 18278, - [SMALL_STATE(542)] = 18320, - [SMALL_STATE(543)] = 18362, - [SMALL_STATE(544)] = 18404, - [SMALL_STATE(545)] = 18448, - [SMALL_STATE(546)] = 18489, - [SMALL_STATE(547)] = 18530, - [SMALL_STATE(548)] = 18571, - [SMALL_STATE(549)] = 18612, - [SMALL_STATE(550)] = 18653, - [SMALL_STATE(551)] = 18694, - [SMALL_STATE(552)] = 18735, - [SMALL_STATE(553)] = 18776, - [SMALL_STATE(554)] = 18817, - [SMALL_STATE(555)] = 18858, - [SMALL_STATE(556)] = 18899, - [SMALL_STATE(557)] = 18940, - [SMALL_STATE(558)] = 18981, - [SMALL_STATE(559)] = 19022, - [SMALL_STATE(560)] = 19063, - [SMALL_STATE(561)] = 19104, - [SMALL_STATE(562)] = 19145, - [SMALL_STATE(563)] = 19186, - [SMALL_STATE(564)] = 19227, - [SMALL_STATE(565)] = 19268, - [SMALL_STATE(566)] = 19309, - [SMALL_STATE(567)] = 19350, - [SMALL_STATE(568)] = 19391, - [SMALL_STATE(569)] = 19432, - [SMALL_STATE(570)] = 19473, - [SMALL_STATE(571)] = 19514, - [SMALL_STATE(572)] = 19555, - [SMALL_STATE(573)] = 19596, - [SMALL_STATE(574)] = 19637, - [SMALL_STATE(575)] = 19678, - [SMALL_STATE(576)] = 19709, - [SMALL_STATE(577)] = 19740, - [SMALL_STATE(578)] = 19771, - [SMALL_STATE(579)] = 19802, - [SMALL_STATE(580)] = 19833, - [SMALL_STATE(581)] = 19864, - [SMALL_STATE(582)] = 19895, - [SMALL_STATE(583)] = 19926, - [SMALL_STATE(584)] = 19957, - [SMALL_STATE(585)] = 19988, - [SMALL_STATE(586)] = 20019, - [SMALL_STATE(587)] = 20050, - [SMALL_STATE(588)] = 20081, - [SMALL_STATE(589)] = 20112, - [SMALL_STATE(590)] = 20143, - [SMALL_STATE(591)] = 20174, - [SMALL_STATE(592)] = 20205, - [SMALL_STATE(593)] = 20236, - [SMALL_STATE(594)] = 20267, - [SMALL_STATE(595)] = 20298, - [SMALL_STATE(596)] = 20329, - [SMALL_STATE(597)] = 20360, - [SMALL_STATE(598)] = 20391, - [SMALL_STATE(599)] = 20422, - [SMALL_STATE(600)] = 20453, - [SMALL_STATE(601)] = 20484, - [SMALL_STATE(602)] = 20515, - [SMALL_STATE(603)] = 20546, - [SMALL_STATE(604)] = 20577, - [SMALL_STATE(605)] = 20608, - [SMALL_STATE(606)] = 20639, - [SMALL_STATE(607)] = 20670, - [SMALL_STATE(608)] = 20701, - [SMALL_STATE(609)] = 20732, - [SMALL_STATE(610)] = 20763, - [SMALL_STATE(611)] = 20794, - [SMALL_STATE(612)] = 20825, - [SMALL_STATE(613)] = 20856, - [SMALL_STATE(614)] = 20887, - [SMALL_STATE(615)] = 20918, - [SMALL_STATE(616)] = 20949, - [SMALL_STATE(617)] = 20959, - [SMALL_STATE(618)] = 20969, - [SMALL_STATE(619)] = 20979, - [SMALL_STATE(620)] = 20989, - [SMALL_STATE(621)] = 20999, - [SMALL_STATE(622)] = 21009, - [SMALL_STATE(623)] = 21019, - [SMALL_STATE(624)] = 21029, - [SMALL_STATE(625)] = 21039, - [SMALL_STATE(626)] = 21055, - [SMALL_STATE(627)] = 21071, - [SMALL_STATE(628)] = 21087, - [SMALL_STATE(629)] = 21103, - [SMALL_STATE(630)] = 21117, - [SMALL_STATE(631)] = 21133, - [SMALL_STATE(632)] = 21149, - [SMALL_STATE(633)] = 21163, - [SMALL_STATE(634)] = 21177, - [SMALL_STATE(635)] = 21193, - [SMALL_STATE(636)] = 21207, - [SMALL_STATE(637)] = 21223, - [SMALL_STATE(638)] = 21235, - [SMALL_STATE(639)] = 21249, - [SMALL_STATE(640)] = 21263, - [SMALL_STATE(641)] = 21279, - [SMALL_STATE(642)] = 21293, - [SMALL_STATE(643)] = 21309, - [SMALL_STATE(644)] = 21325, - [SMALL_STATE(645)] = 21337, - [SMALL_STATE(646)] = 21353, - [SMALL_STATE(647)] = 21369, - [SMALL_STATE(648)] = 21385, - [SMALL_STATE(649)] = 21401, - [SMALL_STATE(650)] = 21417, - [SMALL_STATE(651)] = 21431, - [SMALL_STATE(652)] = 21447, - [SMALL_STATE(653)] = 21463, - [SMALL_STATE(654)] = 21477, - [SMALL_STATE(655)] = 21493, - [SMALL_STATE(656)] = 21509, - [SMALL_STATE(657)] = 21523, - [SMALL_STATE(658)] = 21535, - [SMALL_STATE(659)] = 21542, - [SMALL_STATE(660)] = 21552, - [SMALL_STATE(661)] = 21560, - [SMALL_STATE(662)] = 21570, - [SMALL_STATE(663)] = 21580, - [SMALL_STATE(664)] = 21590, - [SMALL_STATE(665)] = 21600, - [SMALL_STATE(666)] = 21610, - [SMALL_STATE(667)] = 21620, - [SMALL_STATE(668)] = 21630, - [SMALL_STATE(669)] = 21640, - [SMALL_STATE(670)] = 21650, - [SMALL_STATE(671)] = 21658, - [SMALL_STATE(672)] = 21668, - [SMALL_STATE(673)] = 21678, - [SMALL_STATE(674)] = 21688, - [SMALL_STATE(675)] = 21698, - [SMALL_STATE(676)] = 21708, - [SMALL_STATE(677)] = 21718, - [SMALL_STATE(678)] = 21728, - [SMALL_STATE(679)] = 21738, - [SMALL_STATE(680)] = 21748, - [SMALL_STATE(681)] = 21758, - [SMALL_STATE(682)] = 21768, - [SMALL_STATE(683)] = 21775, - [SMALL_STATE(684)] = 21782, - [SMALL_STATE(685)] = 21789, - [SMALL_STATE(686)] = 21796, - [SMALL_STATE(687)] = 21803, - [SMALL_STATE(688)] = 21810, - [SMALL_STATE(689)] = 21817, - [SMALL_STATE(690)] = 21824, - [SMALL_STATE(691)] = 21831, - [SMALL_STATE(692)] = 21838, - [SMALL_STATE(693)] = 21845, - [SMALL_STATE(694)] = 21852, - [SMALL_STATE(695)] = 21859, - [SMALL_STATE(696)] = 21866, - [SMALL_STATE(697)] = 21873, - [SMALL_STATE(698)] = 21880, - [SMALL_STATE(699)] = 21887, - [SMALL_STATE(700)] = 21894, - [SMALL_STATE(701)] = 21901, - [SMALL_STATE(702)] = 21908, - [SMALL_STATE(703)] = 21915, - [SMALL_STATE(704)] = 21922, - [SMALL_STATE(705)] = 21929, - [SMALL_STATE(706)] = 21936, - [SMALL_STATE(707)] = 21943, - [SMALL_STATE(708)] = 21950, - [SMALL_STATE(709)] = 21957, - [SMALL_STATE(710)] = 21964, - [SMALL_STATE(711)] = 21971, - [SMALL_STATE(712)] = 21978, - [SMALL_STATE(713)] = 21985, - [SMALL_STATE(714)] = 21989, - [SMALL_STATE(715)] = 21993, - [SMALL_STATE(716)] = 21997, - [SMALL_STATE(717)] = 22001, - [SMALL_STATE(718)] = 22005, - [SMALL_STATE(719)] = 22009, - [SMALL_STATE(720)] = 22013, - [SMALL_STATE(721)] = 22017, - [SMALL_STATE(722)] = 22021, - [SMALL_STATE(723)] = 22025, - [SMALL_STATE(724)] = 22029, - [SMALL_STATE(725)] = 22033, - [SMALL_STATE(726)] = 22037, - [SMALL_STATE(727)] = 22041, - [SMALL_STATE(728)] = 22045, - [SMALL_STATE(729)] = 22049, - [SMALL_STATE(730)] = 22053, - [SMALL_STATE(731)] = 22057, - [SMALL_STATE(732)] = 22061, - [SMALL_STATE(733)] = 22065, - [SMALL_STATE(734)] = 22069, - [SMALL_STATE(735)] = 22073, - [SMALL_STATE(736)] = 22077, - [SMALL_STATE(737)] = 22081, - [SMALL_STATE(738)] = 22085, - [SMALL_STATE(739)] = 22089, - [SMALL_STATE(740)] = 22093, - [SMALL_STATE(741)] = 22097, - [SMALL_STATE(742)] = 22101, - [SMALL_STATE(743)] = 22105, - [SMALL_STATE(744)] = 22109, - [SMALL_STATE(745)] = 22113, - [SMALL_STATE(746)] = 22117, - [SMALL_STATE(747)] = 22121, - [SMALL_STATE(748)] = 22125, - [SMALL_STATE(749)] = 22129, - [SMALL_STATE(750)] = 22133, - [SMALL_STATE(751)] = 22137, - [SMALL_STATE(752)] = 22141, - [SMALL_STATE(753)] = 22145, - [SMALL_STATE(754)] = 22149, - [SMALL_STATE(755)] = 22153, - [SMALL_STATE(756)] = 22157, - [SMALL_STATE(757)] = 22161, - [SMALL_STATE(758)] = 22165, - [SMALL_STATE(759)] = 22169, - [SMALL_STATE(760)] = 22173, - [SMALL_STATE(761)] = 22177, - [SMALL_STATE(762)] = 22181, - [SMALL_STATE(763)] = 22185, - [SMALL_STATE(764)] = 22189, - [SMALL_STATE(765)] = 22193, - [SMALL_STATE(766)] = 22197, - [SMALL_STATE(767)] = 22201, - [SMALL_STATE(768)] = 22205, - [SMALL_STATE(769)] = 22209, - [SMALL_STATE(770)] = 22213, - [SMALL_STATE(771)] = 22217, - [SMALL_STATE(772)] = 22221, - [SMALL_STATE(773)] = 22225, - [SMALL_STATE(774)] = 22229, - [SMALL_STATE(775)] = 22233, - [SMALL_STATE(776)] = 22237, - [SMALL_STATE(777)] = 22241, - [SMALL_STATE(778)] = 22245, - [SMALL_STATE(779)] = 22249, - [SMALL_STATE(780)] = 22253, - [SMALL_STATE(781)] = 22257, - [SMALL_STATE(782)] = 22261, - [SMALL_STATE(783)] = 22265, - [SMALL_STATE(784)] = 22269, - [SMALL_STATE(785)] = 22273, - [SMALL_STATE(786)] = 22277, - [SMALL_STATE(787)] = 22281, - [SMALL_STATE(788)] = 22285, - [SMALL_STATE(789)] = 22289, - [SMALL_STATE(790)] = 22293, - [SMALL_STATE(791)] = 22297, - [SMALL_STATE(792)] = 22301, - [SMALL_STATE(793)] = 22305, - [SMALL_STATE(794)] = 22309, - [SMALL_STATE(795)] = 22313, - [SMALL_STATE(796)] = 22317, - [SMALL_STATE(797)] = 22321, - [SMALL_STATE(798)] = 22325, - [SMALL_STATE(799)] = 22329, - [SMALL_STATE(800)] = 22333, - [SMALL_STATE(801)] = 22337, - [SMALL_STATE(802)] = 22341, - [SMALL_STATE(803)] = 22345, - [SMALL_STATE(804)] = 22349, - [SMALL_STATE(805)] = 22353, - [SMALL_STATE(806)] = 22357, - [SMALL_STATE(807)] = 22361, - [SMALL_STATE(808)] = 22365, - [SMALL_STATE(809)] = 22369, - [SMALL_STATE(810)] = 22373, - [SMALL_STATE(811)] = 22377, - [SMALL_STATE(812)] = 22381, - [SMALL_STATE(813)] = 22385, - [SMALL_STATE(814)] = 22389, - [SMALL_STATE(815)] = 22393, - [SMALL_STATE(816)] = 22397, - [SMALL_STATE(817)] = 22401, - [SMALL_STATE(818)] = 22405, - [SMALL_STATE(819)] = 22409, - [SMALL_STATE(820)] = 22413, - [SMALL_STATE(821)] = 22417, - [SMALL_STATE(822)] = 22421, - [SMALL_STATE(823)] = 22425, - [SMALL_STATE(824)] = 22429, - [SMALL_STATE(825)] = 22433, - [SMALL_STATE(826)] = 22437, - [SMALL_STATE(827)] = 22441, - [SMALL_STATE(828)] = 22445, - [SMALL_STATE(829)] = 22449, - [SMALL_STATE(830)] = 22453, - [SMALL_STATE(831)] = 22457, - [SMALL_STATE(832)] = 22461, - [SMALL_STATE(833)] = 22465, - [SMALL_STATE(834)] = 22469, - [SMALL_STATE(835)] = 22473, - [SMALL_STATE(836)] = 22477, - [SMALL_STATE(837)] = 22481, - [SMALL_STATE(838)] = 22485, - [SMALL_STATE(839)] = 22489, - [SMALL_STATE(840)] = 22493, - [SMALL_STATE(841)] = 22497, - [SMALL_STATE(842)] = 22501, - [SMALL_STATE(843)] = 22505, - [SMALL_STATE(844)] = 22509, - [SMALL_STATE(845)] = 22513, - [SMALL_STATE(846)] = 22517, - [SMALL_STATE(847)] = 22521, - [SMALL_STATE(848)] = 22525, - [SMALL_STATE(849)] = 22529, - [SMALL_STATE(850)] = 22533, - [SMALL_STATE(851)] = 22537, - [SMALL_STATE(852)] = 22541, - [SMALL_STATE(853)] = 22545, - [SMALL_STATE(854)] = 22549, - [SMALL_STATE(855)] = 22553, - [SMALL_STATE(856)] = 22557, - [SMALL_STATE(857)] = 22561, - [SMALL_STATE(858)] = 22565, - [SMALL_STATE(859)] = 22569, - [SMALL_STATE(860)] = 22573, - [SMALL_STATE(861)] = 22577, - [SMALL_STATE(862)] = 22581, - [SMALL_STATE(863)] = 22585, - [SMALL_STATE(864)] = 22589, - [SMALL_STATE(865)] = 22593, - [SMALL_STATE(866)] = 22597, - [SMALL_STATE(867)] = 22601, - [SMALL_STATE(868)] = 22605, - [SMALL_STATE(869)] = 22609, - [SMALL_STATE(870)] = 22613, - [SMALL_STATE(871)] = 22617, - [SMALL_STATE(872)] = 22621, - [SMALL_STATE(873)] = 22625, - [SMALL_STATE(874)] = 22629, - [SMALL_STATE(875)] = 22633, - [SMALL_STATE(876)] = 22637, - [SMALL_STATE(877)] = 22641, - [SMALL_STATE(878)] = 22645, - [SMALL_STATE(879)] = 22649, - [SMALL_STATE(880)] = 22653, - [SMALL_STATE(881)] = 22657, - [SMALL_STATE(882)] = 22661, - [SMALL_STATE(883)] = 22665, - [SMALL_STATE(884)] = 22669, - [SMALL_STATE(885)] = 22673, - [SMALL_STATE(886)] = 22677, - [SMALL_STATE(887)] = 22681, - [SMALL_STATE(888)] = 22685, - [SMALL_STATE(889)] = 22689, - [SMALL_STATE(890)] = 22693, - [SMALL_STATE(891)] = 22697, + [SMALL_STATE(149)] = 1342, + [SMALL_STATE(150)] = 1390, + [SMALL_STATE(151)] = 1438, + [SMALL_STATE(152)] = 1488, + [SMALL_STATE(153)] = 1536, + [SMALL_STATE(154)] = 1584, + [SMALL_STATE(155)] = 1632, + [SMALL_STATE(156)] = 1684, + [SMALL_STATE(157)] = 1734, + [SMALL_STATE(158)] = 1782, + [SMALL_STATE(159)] = 1827, + [SMALL_STATE(160)] = 1874, + [SMALL_STATE(161)] = 1919, + [SMALL_STATE(162)] = 1966, + [SMALL_STATE(163)] = 2011, + [SMALL_STATE(164)] = 2058, + [SMALL_STATE(165)] = 2103, + [SMALL_STATE(166)] = 2150, + [SMALL_STATE(167)] = 2197, + [SMALL_STATE(168)] = 2244, + [SMALL_STATE(169)] = 2289, + [SMALL_STATE(170)] = 2338, + [SMALL_STATE(171)] = 2385, + [SMALL_STATE(172)] = 2434, + [SMALL_STATE(173)] = 2481, + [SMALL_STATE(174)] = 2528, + [SMALL_STATE(175)] = 2575, + [SMALL_STATE(176)] = 2622, + [SMALL_STATE(177)] = 2667, + [SMALL_STATE(178)] = 2714, + [SMALL_STATE(179)] = 2759, + [SMALL_STATE(180)] = 2806, + [SMALL_STATE(181)] = 2853, + [SMALL_STATE(182)] = 2898, + [SMALL_STATE(183)] = 2945, + [SMALL_STATE(184)] = 2990, + [SMALL_STATE(185)] = 3037, + [SMALL_STATE(186)] = 3084, + [SMALL_STATE(187)] = 3131, + [SMALL_STATE(188)] = 3178, + [SMALL_STATE(189)] = 3225, + [SMALL_STATE(190)] = 3267, + [SMALL_STATE(191)] = 3309, + [SMALL_STATE(192)] = 3351, + [SMALL_STATE(193)] = 3393, + [SMALL_STATE(194)] = 3435, + [SMALL_STATE(195)] = 3477, + [SMALL_STATE(196)] = 3519, + [SMALL_STATE(197)] = 3561, + [SMALL_STATE(198)] = 3607, + [SMALL_STATE(199)] = 3651, + [SMALL_STATE(200)] = 3693, + [SMALL_STATE(201)] = 3735, + [SMALL_STATE(202)] = 3781, + [SMALL_STATE(203)] = 3823, + [SMALL_STATE(204)] = 3865, + [SMALL_STATE(205)] = 3907, + [SMALL_STATE(206)] = 3949, + [SMALL_STATE(207)] = 3991, + [SMALL_STATE(208)] = 4033, + [SMALL_STATE(209)] = 4075, + [SMALL_STATE(210)] = 4117, + [SMALL_STATE(211)] = 4159, + [SMALL_STATE(212)] = 4201, + [SMALL_STATE(213)] = 4243, + [SMALL_STATE(214)] = 4285, + [SMALL_STATE(215)] = 4327, + [SMALL_STATE(216)] = 4369, + [SMALL_STATE(217)] = 4411, + [SMALL_STATE(218)] = 4453, + [SMALL_STATE(219)] = 4495, + [SMALL_STATE(220)] = 4537, + [SMALL_STATE(221)] = 4579, + [SMALL_STATE(222)] = 4621, + [SMALL_STATE(223)] = 4663, + [SMALL_STATE(224)] = 4705, + [SMALL_STATE(225)] = 4747, + [SMALL_STATE(226)] = 4789, + [SMALL_STATE(227)] = 4831, + [SMALL_STATE(228)] = 4873, + [SMALL_STATE(229)] = 4915, + [SMALL_STATE(230)] = 4957, + [SMALL_STATE(231)] = 4999, + [SMALL_STATE(232)] = 5045, + [SMALL_STATE(233)] = 5089, + [SMALL_STATE(234)] = 5131, + [SMALL_STATE(235)] = 5173, + [SMALL_STATE(236)] = 5219, + [SMALL_STATE(237)] = 5261, + [SMALL_STATE(238)] = 5303, + [SMALL_STATE(239)] = 5345, + [SMALL_STATE(240)] = 5387, + [SMALL_STATE(241)] = 5429, + [SMALL_STATE(242)] = 5471, + [SMALL_STATE(243)] = 5513, + [SMALL_STATE(244)] = 5555, + [SMALL_STATE(245)] = 5597, + [SMALL_STATE(246)] = 5639, + [SMALL_STATE(247)] = 5681, + [SMALL_STATE(248)] = 5723, + [SMALL_STATE(249)] = 5765, + [SMALL_STATE(250)] = 5807, + [SMALL_STATE(251)] = 5849, + [SMALL_STATE(252)] = 5891, + [SMALL_STATE(253)] = 5933, + [SMALL_STATE(254)] = 5975, + [SMALL_STATE(255)] = 6017, + [SMALL_STATE(256)] = 6059, + [SMALL_STATE(257)] = 6101, + [SMALL_STATE(258)] = 6143, + [SMALL_STATE(259)] = 6185, + [SMALL_STATE(260)] = 6227, + [SMALL_STATE(261)] = 6269, + [SMALL_STATE(262)] = 6311, + [SMALL_STATE(263)] = 6353, + [SMALL_STATE(264)] = 6395, + [SMALL_STATE(265)] = 6437, + [SMALL_STATE(266)] = 6483, + [SMALL_STATE(267)] = 6529, + [SMALL_STATE(268)] = 6571, + [SMALL_STATE(269)] = 6613, + [SMALL_STATE(270)] = 6655, + [SMALL_STATE(271)] = 6697, + [SMALL_STATE(272)] = 6739, + [SMALL_STATE(273)] = 6781, + [SMALL_STATE(274)] = 6823, + [SMALL_STATE(275)] = 6865, + [SMALL_STATE(276)] = 6907, + [SMALL_STATE(277)] = 6949, + [SMALL_STATE(278)] = 6993, + [SMALL_STATE(279)] = 7035, + [SMALL_STATE(280)] = 7077, + [SMALL_STATE(281)] = 7123, + [SMALL_STATE(282)] = 7165, + [SMALL_STATE(283)] = 7207, + [SMALL_STATE(284)] = 7249, + [SMALL_STATE(285)] = 7291, + [SMALL_STATE(286)] = 7333, + [SMALL_STATE(287)] = 7375, + [SMALL_STATE(288)] = 7417, + [SMALL_STATE(289)] = 7459, + [SMALL_STATE(290)] = 7501, + [SMALL_STATE(291)] = 7543, + [SMALL_STATE(292)] = 7585, + [SMALL_STATE(293)] = 7627, + [SMALL_STATE(294)] = 7669, + [SMALL_STATE(295)] = 7711, + [SMALL_STATE(296)] = 7753, + [SMALL_STATE(297)] = 7795, + [SMALL_STATE(298)] = 7837, + [SMALL_STATE(299)] = 7879, + [SMALL_STATE(300)] = 7921, + [SMALL_STATE(301)] = 7963, + [SMALL_STATE(302)] = 8005, + [SMALL_STATE(303)] = 8047, + [SMALL_STATE(304)] = 8089, + [SMALL_STATE(305)] = 8131, + [SMALL_STATE(306)] = 8173, + [SMALL_STATE(307)] = 8215, + [SMALL_STATE(308)] = 8257, + [SMALL_STATE(309)] = 8299, + [SMALL_STATE(310)] = 8341, + [SMALL_STATE(311)] = 8383, + [SMALL_STATE(312)] = 8425, + [SMALL_STATE(313)] = 8467, + [SMALL_STATE(314)] = 8509, + [SMALL_STATE(315)] = 8551, + [SMALL_STATE(316)] = 8593, + [SMALL_STATE(317)] = 8639, + [SMALL_STATE(318)] = 8681, + [SMALL_STATE(319)] = 8723, + [SMALL_STATE(320)] = 8765, + [SMALL_STATE(321)] = 8807, + [SMALL_STATE(322)] = 8849, + [SMALL_STATE(323)] = 8891, + [SMALL_STATE(324)] = 8937, + [SMALL_STATE(325)] = 8979, + [SMALL_STATE(326)] = 9021, + [SMALL_STATE(327)] = 9065, + [SMALL_STATE(328)] = 9109, + [SMALL_STATE(329)] = 9151, + [SMALL_STATE(330)] = 9193, + [SMALL_STATE(331)] = 9239, + [SMALL_STATE(332)] = 9285, + [SMALL_STATE(333)] = 9329, + [SMALL_STATE(334)] = 9371, + [SMALL_STATE(335)] = 9413, + [SMALL_STATE(336)] = 9455, + [SMALL_STATE(337)] = 9497, + [SMALL_STATE(338)] = 9539, + [SMALL_STATE(339)] = 9581, + [SMALL_STATE(340)] = 9623, + [SMALL_STATE(341)] = 9665, + [SMALL_STATE(342)] = 9707, + [SMALL_STATE(343)] = 9749, + [SMALL_STATE(344)] = 9791, + [SMALL_STATE(345)] = 9833, + [SMALL_STATE(346)] = 9879, + [SMALL_STATE(347)] = 9921, + [SMALL_STATE(348)] = 9963, + [SMALL_STATE(349)] = 10005, + [SMALL_STATE(350)] = 10047, + [SMALL_STATE(351)] = 10089, + [SMALL_STATE(352)] = 10131, + [SMALL_STATE(353)] = 10173, + [SMALL_STATE(354)] = 10215, + [SMALL_STATE(355)] = 10257, + [SMALL_STATE(356)] = 10299, + [SMALL_STATE(357)] = 10341, + [SMALL_STATE(358)] = 10383, + [SMALL_STATE(359)] = 10425, + [SMALL_STATE(360)] = 10467, + [SMALL_STATE(361)] = 10509, + [SMALL_STATE(362)] = 10551, + [SMALL_STATE(363)] = 10593, + [SMALL_STATE(364)] = 10635, + [SMALL_STATE(365)] = 10677, + [SMALL_STATE(366)] = 10719, + [SMALL_STATE(367)] = 10765, + [SMALL_STATE(368)] = 10807, + [SMALL_STATE(369)] = 10849, + [SMALL_STATE(370)] = 10891, + [SMALL_STATE(371)] = 10937, + [SMALL_STATE(372)] = 10979, + [SMALL_STATE(373)] = 11021, + [SMALL_STATE(374)] = 11063, + [SMALL_STATE(375)] = 11105, + [SMALL_STATE(376)] = 11147, + [SMALL_STATE(377)] = 11189, + [SMALL_STATE(378)] = 11233, + [SMALL_STATE(379)] = 11275, + [SMALL_STATE(380)] = 11317, + [SMALL_STATE(381)] = 11363, + [SMALL_STATE(382)] = 11405, + [SMALL_STATE(383)] = 11447, + [SMALL_STATE(384)] = 11489, + [SMALL_STATE(385)] = 11531, + [SMALL_STATE(386)] = 11573, + [SMALL_STATE(387)] = 11615, + [SMALL_STATE(388)] = 11657, + [SMALL_STATE(389)] = 11699, + [SMALL_STATE(390)] = 11741, + [SMALL_STATE(391)] = 11783, + [SMALL_STATE(392)] = 11825, + [SMALL_STATE(393)] = 11867, + [SMALL_STATE(394)] = 11909, + [SMALL_STATE(395)] = 11951, + [SMALL_STATE(396)] = 11993, + [SMALL_STATE(397)] = 12035, + [SMALL_STATE(398)] = 12077, + [SMALL_STATE(399)] = 12119, + [SMALL_STATE(400)] = 12161, + [SMALL_STATE(401)] = 12203, + [SMALL_STATE(402)] = 12245, + [SMALL_STATE(403)] = 12287, + [SMALL_STATE(404)] = 12329, + [SMALL_STATE(405)] = 12371, + [SMALL_STATE(406)] = 12413, + [SMALL_STATE(407)] = 12455, + [SMALL_STATE(408)] = 12497, + [SMALL_STATE(409)] = 12539, + [SMALL_STATE(410)] = 12581, + [SMALL_STATE(411)] = 12623, + [SMALL_STATE(412)] = 12665, + [SMALL_STATE(413)] = 12707, + [SMALL_STATE(414)] = 12749, + [SMALL_STATE(415)] = 12791, + [SMALL_STATE(416)] = 12833, + [SMALL_STATE(417)] = 12879, + [SMALL_STATE(418)] = 12921, + [SMALL_STATE(419)] = 12963, + [SMALL_STATE(420)] = 13005, + [SMALL_STATE(421)] = 13047, + [SMALL_STATE(422)] = 13089, + [SMALL_STATE(423)] = 13131, + [SMALL_STATE(424)] = 13173, + [SMALL_STATE(425)] = 13215, + [SMALL_STATE(426)] = 13257, + [SMALL_STATE(427)] = 13299, + [SMALL_STATE(428)] = 13343, + [SMALL_STATE(429)] = 13385, + [SMALL_STATE(430)] = 13427, + [SMALL_STATE(431)] = 13473, + [SMALL_STATE(432)] = 13515, + [SMALL_STATE(433)] = 13557, + [SMALL_STATE(434)] = 13599, + [SMALL_STATE(435)] = 13641, + [SMALL_STATE(436)] = 13683, + [SMALL_STATE(437)] = 13725, + [SMALL_STATE(438)] = 13767, + [SMALL_STATE(439)] = 13809, + [SMALL_STATE(440)] = 13851, + [SMALL_STATE(441)] = 13893, + [SMALL_STATE(442)] = 13935, + [SMALL_STATE(443)] = 13977, + [SMALL_STATE(444)] = 14019, + [SMALL_STATE(445)] = 14061, + [SMALL_STATE(446)] = 14103, + [SMALL_STATE(447)] = 14145, + [SMALL_STATE(448)] = 14187, + [SMALL_STATE(449)] = 14229, + [SMALL_STATE(450)] = 14271, + [SMALL_STATE(451)] = 14313, + [SMALL_STATE(452)] = 14355, + [SMALL_STATE(453)] = 14397, + [SMALL_STATE(454)] = 14439, + [SMALL_STATE(455)] = 14481, + [SMALL_STATE(456)] = 14523, + [SMALL_STATE(457)] = 14565, + [SMALL_STATE(458)] = 14607, + [SMALL_STATE(459)] = 14649, + [SMALL_STATE(460)] = 14691, + [SMALL_STATE(461)] = 14733, + [SMALL_STATE(462)] = 14775, + [SMALL_STATE(463)] = 14817, + [SMALL_STATE(464)] = 14859, + [SMALL_STATE(465)] = 14901, + [SMALL_STATE(466)] = 14943, + [SMALL_STATE(467)] = 14985, + [SMALL_STATE(468)] = 15031, + [SMALL_STATE(469)] = 15075, + [SMALL_STATE(470)] = 15117, + [SMALL_STATE(471)] = 15159, + [SMALL_STATE(472)] = 15201, + [SMALL_STATE(473)] = 15243, + [SMALL_STATE(474)] = 15285, + [SMALL_STATE(475)] = 15327, + [SMALL_STATE(476)] = 15369, + [SMALL_STATE(477)] = 15415, + [SMALL_STATE(478)] = 15457, + [SMALL_STATE(479)] = 15499, + [SMALL_STATE(480)] = 15543, + [SMALL_STATE(481)] = 15585, + [SMALL_STATE(482)] = 15627, + [SMALL_STATE(483)] = 15669, + [SMALL_STATE(484)] = 15711, + [SMALL_STATE(485)] = 15753, + [SMALL_STATE(486)] = 15795, + [SMALL_STATE(487)] = 15841, + [SMALL_STATE(488)] = 15887, + [SMALL_STATE(489)] = 15929, + [SMALL_STATE(490)] = 15971, + [SMALL_STATE(491)] = 16017, + [SMALL_STATE(492)] = 16058, + [SMALL_STATE(493)] = 16099, + [SMALL_STATE(494)] = 16140, + [SMALL_STATE(495)] = 16181, + [SMALL_STATE(496)] = 16222, + [SMALL_STATE(497)] = 16263, + [SMALL_STATE(498)] = 16304, + [SMALL_STATE(499)] = 16345, + [SMALL_STATE(500)] = 16386, + [SMALL_STATE(501)] = 16427, + [SMALL_STATE(502)] = 16468, + [SMALL_STATE(503)] = 16509, + [SMALL_STATE(504)] = 16550, + [SMALL_STATE(505)] = 16591, + [SMALL_STATE(506)] = 16632, + [SMALL_STATE(507)] = 16673, + [SMALL_STATE(508)] = 16714, + [SMALL_STATE(509)] = 16755, + [SMALL_STATE(510)] = 16796, + [SMALL_STATE(511)] = 16837, + [SMALL_STATE(512)] = 16878, + [SMALL_STATE(513)] = 16919, + [SMALL_STATE(514)] = 16960, + [SMALL_STATE(515)] = 17001, + [SMALL_STATE(516)] = 17042, + [SMALL_STATE(517)] = 17083, + [SMALL_STATE(518)] = 17124, + [SMALL_STATE(519)] = 17165, + [SMALL_STATE(520)] = 17206, + [SMALL_STATE(521)] = 17247, + [SMALL_STATE(522)] = 17288, + [SMALL_STATE(523)] = 17329, + [SMALL_STATE(524)] = 17370, + [SMALL_STATE(525)] = 17411, + [SMALL_STATE(526)] = 17456, + [SMALL_STATE(527)] = 17497, + [SMALL_STATE(528)] = 17538, + [SMALL_STATE(529)] = 17579, + [SMALL_STATE(530)] = 17622, + [SMALL_STATE(531)] = 17663, + [SMALL_STATE(532)] = 17704, + [SMALL_STATE(533)] = 17745, + [SMALL_STATE(534)] = 17788, + [SMALL_STATE(535)] = 17829, + [SMALL_STATE(536)] = 17870, + [SMALL_STATE(537)] = 17911, + [SMALL_STATE(538)] = 17952, + [SMALL_STATE(539)] = 17993, + [SMALL_STATE(540)] = 18034, + [SMALL_STATE(541)] = 18075, + [SMALL_STATE(542)] = 18116, + [SMALL_STATE(543)] = 18157, + [SMALL_STATE(544)] = 18198, + [SMALL_STATE(545)] = 18239, + [SMALL_STATE(546)] = 18280, + [SMALL_STATE(547)] = 18321, + [SMALL_STATE(548)] = 18362, + [SMALL_STATE(549)] = 18403, + [SMALL_STATE(550)] = 18444, + [SMALL_STATE(551)] = 18485, + [SMALL_STATE(552)] = 18525, + [SMALL_STATE(553)] = 18565, + [SMALL_STATE(554)] = 18605, + [SMALL_STATE(555)] = 18636, + [SMALL_STATE(556)] = 18667, + [SMALL_STATE(557)] = 18698, + [SMALL_STATE(558)] = 18729, + [SMALL_STATE(559)] = 18760, + [SMALL_STATE(560)] = 18791, + [SMALL_STATE(561)] = 18822, + [SMALL_STATE(562)] = 18853, + [SMALL_STATE(563)] = 18884, + [SMALL_STATE(564)] = 18915, + [SMALL_STATE(565)] = 18946, + [SMALL_STATE(566)] = 18977, + [SMALL_STATE(567)] = 19008, + [SMALL_STATE(568)] = 19039, + [SMALL_STATE(569)] = 19070, + [SMALL_STATE(570)] = 19101, + [SMALL_STATE(571)] = 19132, + [SMALL_STATE(572)] = 19163, + [SMALL_STATE(573)] = 19194, + [SMALL_STATE(574)] = 19225, + [SMALL_STATE(575)] = 19256, + [SMALL_STATE(576)] = 19287, + [SMALL_STATE(577)] = 19318, + [SMALL_STATE(578)] = 19349, + [SMALL_STATE(579)] = 19380, + [SMALL_STATE(580)] = 19411, + [SMALL_STATE(581)] = 19442, + [SMALL_STATE(582)] = 19473, + [SMALL_STATE(583)] = 19504, + [SMALL_STATE(584)] = 19535, + [SMALL_STATE(585)] = 19566, + [SMALL_STATE(586)] = 19597, + [SMALL_STATE(587)] = 19628, + [SMALL_STATE(588)] = 19659, + [SMALL_STATE(589)] = 19690, + [SMALL_STATE(590)] = 19721, + [SMALL_STATE(591)] = 19752, + [SMALL_STATE(592)] = 19783, + [SMALL_STATE(593)] = 19814, + [SMALL_STATE(594)] = 19845, + [SMALL_STATE(595)] = 19876, + [SMALL_STATE(596)] = 19886, + [SMALL_STATE(597)] = 19896, + [SMALL_STATE(598)] = 19906, + [SMALL_STATE(599)] = 19916, + [SMALL_STATE(600)] = 19926, + [SMALL_STATE(601)] = 19936, + [SMALL_STATE(602)] = 19946, + [SMALL_STATE(603)] = 19956, + [SMALL_STATE(604)] = 19966, + [SMALL_STATE(605)] = 19980, + [SMALL_STATE(606)] = 19996, + [SMALL_STATE(607)] = 20010, + [SMALL_STATE(608)] = 20026, + [SMALL_STATE(609)] = 20042, + [SMALL_STATE(610)] = 20058, + [SMALL_STATE(611)] = 20074, + [SMALL_STATE(612)] = 20090, + [SMALL_STATE(613)] = 20106, + [SMALL_STATE(614)] = 20122, + [SMALL_STATE(615)] = 20138, + [SMALL_STATE(616)] = 20152, + [SMALL_STATE(617)] = 20168, + [SMALL_STATE(618)] = 20182, + [SMALL_STATE(619)] = 20194, + [SMALL_STATE(620)] = 20210, + [SMALL_STATE(621)] = 20226, + [SMALL_STATE(622)] = 20240, + [SMALL_STATE(623)] = 20256, + [SMALL_STATE(624)] = 20270, + [SMALL_STATE(625)] = 20286, + [SMALL_STATE(626)] = 20300, + [SMALL_STATE(627)] = 20316, + [SMALL_STATE(628)] = 20330, + [SMALL_STATE(629)] = 20346, + [SMALL_STATE(630)] = 20362, + [SMALL_STATE(631)] = 20376, + [SMALL_STATE(632)] = 20390, + [SMALL_STATE(633)] = 20406, + [SMALL_STATE(634)] = 20422, + [SMALL_STATE(635)] = 20438, + [SMALL_STATE(636)] = 20450, + [SMALL_STATE(637)] = 20462, + [SMALL_STATE(638)] = 20469, + [SMALL_STATE(639)] = 20479, + [SMALL_STATE(640)] = 20487, + [SMALL_STATE(641)] = 20497, + [SMALL_STATE(642)] = 20507, + [SMALL_STATE(643)] = 20517, + [SMALL_STATE(644)] = 20527, + [SMALL_STATE(645)] = 20537, + [SMALL_STATE(646)] = 20547, + [SMALL_STATE(647)] = 20557, + [SMALL_STATE(648)] = 20567, + [SMALL_STATE(649)] = 20577, + [SMALL_STATE(650)] = 20587, + [SMALL_STATE(651)] = 20595, + [SMALL_STATE(652)] = 20602, + [SMALL_STATE(653)] = 20609, + [SMALL_STATE(654)] = 20616, + [SMALL_STATE(655)] = 20623, + [SMALL_STATE(656)] = 20630, + [SMALL_STATE(657)] = 20637, + [SMALL_STATE(658)] = 20644, + [SMALL_STATE(659)] = 20651, + [SMALL_STATE(660)] = 20658, + [SMALL_STATE(661)] = 20665, + [SMALL_STATE(662)] = 20672, + [SMALL_STATE(663)] = 20679, + [SMALL_STATE(664)] = 20686, + [SMALL_STATE(665)] = 20693, + [SMALL_STATE(666)] = 20700, + [SMALL_STATE(667)] = 20707, + [SMALL_STATE(668)] = 20714, + [SMALL_STATE(669)] = 20721, + [SMALL_STATE(670)] = 20728, + [SMALL_STATE(671)] = 20735, + [SMALL_STATE(672)] = 20742, + [SMALL_STATE(673)] = 20749, + [SMALL_STATE(674)] = 20756, + [SMALL_STATE(675)] = 20763, + [SMALL_STATE(676)] = 20770, + [SMALL_STATE(677)] = 20777, + [SMALL_STATE(678)] = 20784, + [SMALL_STATE(679)] = 20791, + [SMALL_STATE(680)] = 20798, + [SMALL_STATE(681)] = 20805, + [SMALL_STATE(682)] = 20812, + [SMALL_STATE(683)] = 20819, + [SMALL_STATE(684)] = 20826, + [SMALL_STATE(685)] = 20833, + [SMALL_STATE(686)] = 20840, + [SMALL_STATE(687)] = 20847, + [SMALL_STATE(688)] = 20854, + [SMALL_STATE(689)] = 20861, + [SMALL_STATE(690)] = 20868, + [SMALL_STATE(691)] = 20875, + [SMALL_STATE(692)] = 20882, + [SMALL_STATE(693)] = 20889, + [SMALL_STATE(694)] = 20896, + [SMALL_STATE(695)] = 20903, + [SMALL_STATE(696)] = 20910, + [SMALL_STATE(697)] = 20917, + [SMALL_STATE(698)] = 20924, + [SMALL_STATE(699)] = 20931, + [SMALL_STATE(700)] = 20938, + [SMALL_STATE(701)] = 20945, + [SMALL_STATE(702)] = 20952, + [SMALL_STATE(703)] = 20956, + [SMALL_STATE(704)] = 20960, + [SMALL_STATE(705)] = 20964, + [SMALL_STATE(706)] = 20968, + [SMALL_STATE(707)] = 20972, + [SMALL_STATE(708)] = 20976, + [SMALL_STATE(709)] = 20980, + [SMALL_STATE(710)] = 20984, + [SMALL_STATE(711)] = 20988, + [SMALL_STATE(712)] = 20992, + [SMALL_STATE(713)] = 20996, + [SMALL_STATE(714)] = 21000, + [SMALL_STATE(715)] = 21004, + [SMALL_STATE(716)] = 21008, + [SMALL_STATE(717)] = 21012, + [SMALL_STATE(718)] = 21016, + [SMALL_STATE(719)] = 21020, + [SMALL_STATE(720)] = 21024, + [SMALL_STATE(721)] = 21028, + [SMALL_STATE(722)] = 21032, + [SMALL_STATE(723)] = 21036, + [SMALL_STATE(724)] = 21040, + [SMALL_STATE(725)] = 21044, + [SMALL_STATE(726)] = 21048, + [SMALL_STATE(727)] = 21052, + [SMALL_STATE(728)] = 21056, + [SMALL_STATE(729)] = 21060, + [SMALL_STATE(730)] = 21064, + [SMALL_STATE(731)] = 21068, + [SMALL_STATE(732)] = 21072, + [SMALL_STATE(733)] = 21076, + [SMALL_STATE(734)] = 21080, + [SMALL_STATE(735)] = 21084, + [SMALL_STATE(736)] = 21088, + [SMALL_STATE(737)] = 21092, + [SMALL_STATE(738)] = 21096, + [SMALL_STATE(739)] = 21100, + [SMALL_STATE(740)] = 21104, + [SMALL_STATE(741)] = 21108, + [SMALL_STATE(742)] = 21112, + [SMALL_STATE(743)] = 21116, + [SMALL_STATE(744)] = 21120, + [SMALL_STATE(745)] = 21124, + [SMALL_STATE(746)] = 21128, + [SMALL_STATE(747)] = 21132, + [SMALL_STATE(748)] = 21136, + [SMALL_STATE(749)] = 21140, + [SMALL_STATE(750)] = 21144, + [SMALL_STATE(751)] = 21148, + [SMALL_STATE(752)] = 21152, + [SMALL_STATE(753)] = 21156, + [SMALL_STATE(754)] = 21160, + [SMALL_STATE(755)] = 21164, + [SMALL_STATE(756)] = 21168, + [SMALL_STATE(757)] = 21172, + [SMALL_STATE(758)] = 21176, + [SMALL_STATE(759)] = 21180, + [SMALL_STATE(760)] = 21184, + [SMALL_STATE(761)] = 21188, + [SMALL_STATE(762)] = 21192, + [SMALL_STATE(763)] = 21196, + [SMALL_STATE(764)] = 21200, + [SMALL_STATE(765)] = 21204, + [SMALL_STATE(766)] = 21208, + [SMALL_STATE(767)] = 21212, + [SMALL_STATE(768)] = 21216, + [SMALL_STATE(769)] = 21220, + [SMALL_STATE(770)] = 21224, + [SMALL_STATE(771)] = 21228, + [SMALL_STATE(772)] = 21232, + [SMALL_STATE(773)] = 21236, + [SMALL_STATE(774)] = 21240, + [SMALL_STATE(775)] = 21244, + [SMALL_STATE(776)] = 21248, + [SMALL_STATE(777)] = 21252, + [SMALL_STATE(778)] = 21256, + [SMALL_STATE(779)] = 21260, + [SMALL_STATE(780)] = 21264, + [SMALL_STATE(781)] = 21268, + [SMALL_STATE(782)] = 21272, + [SMALL_STATE(783)] = 21276, + [SMALL_STATE(784)] = 21280, + [SMALL_STATE(785)] = 21284, + [SMALL_STATE(786)] = 21288, + [SMALL_STATE(787)] = 21292, + [SMALL_STATE(788)] = 21296, + [SMALL_STATE(789)] = 21300, + [SMALL_STATE(790)] = 21304, + [SMALL_STATE(791)] = 21308, + [SMALL_STATE(792)] = 21312, + [SMALL_STATE(793)] = 21316, + [SMALL_STATE(794)] = 21320, + [SMALL_STATE(795)] = 21324, + [SMALL_STATE(796)] = 21328, + [SMALL_STATE(797)] = 21332, + [SMALL_STATE(798)] = 21336, + [SMALL_STATE(799)] = 21340, + [SMALL_STATE(800)] = 21344, + [SMALL_STATE(801)] = 21348, + [SMALL_STATE(802)] = 21352, + [SMALL_STATE(803)] = 21356, + [SMALL_STATE(804)] = 21360, + [SMALL_STATE(805)] = 21364, + [SMALL_STATE(806)] = 21368, + [SMALL_STATE(807)] = 21372, + [SMALL_STATE(808)] = 21376, + [SMALL_STATE(809)] = 21380, + [SMALL_STATE(810)] = 21384, + [SMALL_STATE(811)] = 21388, + [SMALL_STATE(812)] = 21392, + [SMALL_STATE(813)] = 21396, + [SMALL_STATE(814)] = 21400, + [SMALL_STATE(815)] = 21404, + [SMALL_STATE(816)] = 21408, + [SMALL_STATE(817)] = 21412, + [SMALL_STATE(818)] = 21416, + [SMALL_STATE(819)] = 21420, + [SMALL_STATE(820)] = 21424, + [SMALL_STATE(821)] = 21428, + [SMALL_STATE(822)] = 21432, + [SMALL_STATE(823)] = 21436, + [SMALL_STATE(824)] = 21440, + [SMALL_STATE(825)] = 21444, + [SMALL_STATE(826)] = 21448, + [SMALL_STATE(827)] = 21452, + [SMALL_STATE(828)] = 21456, + [SMALL_STATE(829)] = 21460, + [SMALL_STATE(830)] = 21464, + [SMALL_STATE(831)] = 21468, + [SMALL_STATE(832)] = 21472, + [SMALL_STATE(833)] = 21476, + [SMALL_STATE(834)] = 21480, + [SMALL_STATE(835)] = 21484, + [SMALL_STATE(836)] = 21488, + [SMALL_STATE(837)] = 21492, + [SMALL_STATE(838)] = 21496, + [SMALL_STATE(839)] = 21500, + [SMALL_STATE(840)] = 21504, + [SMALL_STATE(841)] = 21508, + [SMALL_STATE(842)] = 21512, + [SMALL_STATE(843)] = 21516, + [SMALL_STATE(844)] = 21520, + [SMALL_STATE(845)] = 21524, + [SMALL_STATE(846)] = 21528, + [SMALL_STATE(847)] = 21532, + [SMALL_STATE(848)] = 21536, + [SMALL_STATE(849)] = 21540, + [SMALL_STATE(850)] = 21544, + [SMALL_STATE(851)] = 21548, + [SMALL_STATE(852)] = 21552, + [SMALL_STATE(853)] = 21556, + [SMALL_STATE(854)] = 21560, + [SMALL_STATE(855)] = 21564, + [SMALL_STATE(856)] = 21568, + [SMALL_STATE(857)] = 21572, + [SMALL_STATE(858)] = 21576, + [SMALL_STATE(859)] = 21580, + [SMALL_STATE(860)] = 21584, + [SMALL_STATE(861)] = 21588, + [SMALL_STATE(862)] = 21592, + [SMALL_STATE(863)] = 21596, + [SMALL_STATE(864)] = 21600, + [SMALL_STATE(865)] = 21604, + [SMALL_STATE(866)] = 21608, + [SMALL_STATE(867)] = 21612, + [SMALL_STATE(868)] = 21616, + [SMALL_STATE(869)] = 21620, + [SMALL_STATE(870)] = 21624, + [SMALL_STATE(871)] = 21628, + [SMALL_STATE(872)] = 21632, + [SMALL_STATE(873)] = 21636, + [SMALL_STATE(874)] = 21640, + [SMALL_STATE(875)] = 21644, + [SMALL_STATE(876)] = 21648, + [SMALL_STATE(877)] = 21652, + [SMALL_STATE(878)] = 21656, + [SMALL_STATE(879)] = 21660, + [SMALL_STATE(880)] = 21664, + [SMALL_STATE(881)] = 21668, + [SMALL_STATE(882)] = 21672, + [SMALL_STATE(883)] = 21676, + [SMALL_STATE(884)] = 21680, + [SMALL_STATE(885)] = 21684, + [SMALL_STATE(886)] = 21688, + [SMALL_STATE(887)] = 21692, + [SMALL_STATE(888)] = 21696, + [SMALL_STATE(889)] = 21700, + [SMALL_STATE(890)] = 21704, + [SMALL_STATE(891)] = 21708, + [SMALL_STATE(892)] = 21712, + [SMALL_STATE(893)] = 21716, + [SMALL_STATE(894)] = 21720, + [SMALL_STATE(895)] = 21724, + [SMALL_STATE(896)] = 21728, + [SMALL_STATE(897)] = 21732, + [SMALL_STATE(898)] = 21736, + [SMALL_STATE(899)] = 21740, + [SMALL_STATE(900)] = 21744, + [SMALL_STATE(901)] = 21748, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [49] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), - [51] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(127), - [54] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(375), - [57] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(126), - [60] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(377), - [63] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(718), - [66] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(200), - [69] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(200), - [72] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(201), - [75] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(20), - [78] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(21), - [81] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(22), - [84] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(23), - [87] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(24), - [90] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(24), - [93] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), - [95] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(135), - [98] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(25), - [103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(26), - [106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(388), - [109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(389), - [112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(390), - [115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(391), - [118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(103), - [121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(138), - [124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(856), - [127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(377), - [130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(391), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), - [135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(23), - [138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(375), - [141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(151), - [144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(323), - [147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(150), - [150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(325), - [153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(880), - [156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(182), - [159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(182), - [162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(184), - [165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(37), - [168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(31), - [171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(30), - [174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(28), - [177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(27), - [180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(139), - [183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(2), - [186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(38), - [189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(336), - [192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(337), - [195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(338), - [198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(339), - [201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(120), - [204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(136), - [207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(847), - [210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(129), - [213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(235), - [216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(154), - [219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(236), - [222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(765), - [225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(183), - [228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(183), - [231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(186), - [234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(52), - [237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(49), - [240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(47), - [243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(45), - [246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(29), - [249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(137), - [252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(9), - [255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(42), - [258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(237), - [261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(238), - [264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(239), - [267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(240), - [270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(116), - [273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(149), - [276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(829), - [279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(161), - [282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(380), - [285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(125), - [288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(379), - [291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(808), - [294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(197), - [297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(197), - [300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(194), - [303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(19), - [306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(40), - [309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(12), - [312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(51), - [315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(62), - [318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(124), - [321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(5), - [324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(70), - [327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(374), - [330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(376), - [333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(270), - [336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(353), - [339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(119), - [342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(132), - [345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(811), - [348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(166), - [351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(275), - [354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(168), - [357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(274), - [360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(794), - [363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(174), - [366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(174), - [369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(172), - [372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(67), - [375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(66), - [378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(65), - [381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(64), - [384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(63), - [387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(163), - [390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(4), - [393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(60), - [396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(272), - [399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(534), - [402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(204), - [405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(205), - [408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(77), - [411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(148), - [414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(820), - [417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(157), - [420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(271), - [423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(169), - [426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(273), - [429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(729), - [432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(175), - [435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(175), - [438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(176), - [441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(68), - [444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(71), - [447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(46), - [450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(44), - [453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(43), - [456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(159), - [459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(7), - [462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(41), - [465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(284), - [468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(285), - [471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(286), - [474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(287), - [477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(85), - [480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(156), - [483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(838), - [486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(323), - [489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(339), - [492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(670), - [495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(27), - [498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(43), - [501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(29), - [504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(63), - [507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(380), - [510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(353), - [513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(275), - [516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(205), - [519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(235), - [522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(240), - [525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(271), - [528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(287), - [531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(325), - [534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(62), - [537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(28), - [540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(44), - [543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(45), - [546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(379), - [549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(274), - [552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(236), - [555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(273), - [558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(51), - [561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(64), - [564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), - [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), - [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline, 1), - [618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline, 1), - [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), - [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), - [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), - [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(160), - [661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(479), - [664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(123), - [667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(481), - [670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), - [672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(755), - [675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(179), - [678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(179), - [681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(177), - [684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(48), - [687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(53), - [690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(59), - [693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(61), - [696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(36), - [699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(164), - [702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(3), - [705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(69), - [708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(492), - [711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(493), - [714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(494), - [717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(495), - [720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(74), - [723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(171), - [726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(874), - [729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(140), - [732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(207), - [735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(130), - [738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(215), - [741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(884), - [744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(198), - [747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(198), - [750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(196), - [753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(13), - [756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(14), - [759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(15), - [762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(16), - [765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(17), - [768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(133), - [771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(10), - [774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(18), - [777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(228), - [780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(242), - [783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(250), - [786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(263), - [789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(76), - [792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(134), - [795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(812), - [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), - [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), - [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(167), - [849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(531), - [852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(165), - [855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(533), - [858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(774), - [861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(178), - [864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(178), - [867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(187), - [870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(58), - [873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(57), - [876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(56), - [879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(55), - [882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(54), - [885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(147), - [888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(6), - [891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(50), - [894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(544), - [897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(543), - [900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(541), - [903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(203), - [906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(80), - [909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(146), - [912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(883), - [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), - [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), - [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(122), - [970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(427), - [973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(144), - [976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(429), - [979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(738), - [982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(189), - [985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(189), - [988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(188), - [991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(32), - [994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(33), - [997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(34), - [1000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(35), - [1003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(11), - [1006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(153), - [1009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(8), - [1012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(39), - [1015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(440), - [1018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(441), - [1021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(442), - [1024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(443), - [1027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(84), - [1030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(155), - [1033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(865), - [1036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [1038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [1040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [1042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [1044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), - [1046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [1048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [1050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [1054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [1056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [1058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [1062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [1064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [1066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), - [1068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [1070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [1072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [1074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [1078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [1080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [1082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), - [1084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [1086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(157), - [1089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(271), - [1092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(169), - [1095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(273), - [1098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(729), - [1101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(175), - [1104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(175), - [1107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(176), - [1110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(68), - [1113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(71), - [1116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(46), - [1119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(44), - [1122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(44), - [1125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(43), - [1128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(159), - [1131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(7), - [1134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(41), - [1137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(284), - [1140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(285), - [1143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(286), - [1146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(287), - [1149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(88), - [1152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(156), - [1155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(838), - [1158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(161), - [1161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(380), - [1164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(125), - [1167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(379), - [1170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(808), - [1173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(197), - [1176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(197), - [1179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(194), - [1182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(19), - [1185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(40), - [1188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(12), - [1191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(51), - [1194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(62), - [1197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(124), - [1200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(5), - [1203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(70), - [1206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(374), - [1209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(376), - [1212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(270), - [1215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(353), - [1218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(98), - [1221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(132), - [1224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(811), - [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [1229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(127), - [1232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(375), - [1235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(126), - [1238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(377), - [1241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(718), - [1244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(200), - [1247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(200), - [1250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(201), - [1253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(20), - [1256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(21), - [1259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(22), - [1262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(23), - [1265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(24), - [1268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(135), - [1271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(25), - [1274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(26), - [1277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(388), - [1280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(389), - [1283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(390), - [1286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(391), - [1289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(102), - [1292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(138), - [1295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(856), - [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [1306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), - [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [1328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), - [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [1340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [1344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(166), - [1347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(275), - [1350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(168), - [1353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(274), - [1356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(794), - [1359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(174), - [1362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(174), - [1365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(172), - [1368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(67), - [1371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(66), - [1374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(65), - [1377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(64), - [1380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(63), - [1383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(163), - [1386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(4), - [1389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(60), - [1392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(272), - [1395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(534), - [1398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(204), - [1401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(205), - [1404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(113), - [1407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(148), - [1410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(820), - [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), - [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), - [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [1459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(151), - [1462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(323), - [1465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(150), - [1468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(325), - [1471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(880), - [1474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(182), - [1477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(182), - [1480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(184), - [1483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(37), - [1486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(31), - [1489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(30), - [1492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(28), - [1495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(27), - [1498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(27), - [1501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(139), - [1504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(2), - [1507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(38), - [1510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(336), - [1513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(337), - [1516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(338), - [1519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(339), - [1522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(118), - [1525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(136), - [1528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(847), - [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), - [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), - [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), - [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [1585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), - [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), - [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [1623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(129), - [1626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(235), - [1629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(154), - [1632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(236), - [1635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(765), - [1638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(183), - [1641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(183), - [1644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(186), - [1647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(52), - [1650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(49), - [1653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(47), - [1656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(45), - [1659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(29), - [1662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(137), - [1665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(9), - [1668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(42), - [1671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(237), - [1674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(238), - [1677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(239), - [1680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(240), - [1683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(121), - [1686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(149), - [1689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(829), - [1692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), - [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), - [1697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_emphasis_begin, 1), REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), - [1700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), - [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [1705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_strong_begin, 1), REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), - [1708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), - [1710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verbatim, 3, .production_id = 1), - [1712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verbatim, 3, .production_id = 1), - [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [1718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [1720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element, 1), - [1722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__element, 1), - [1724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), - [1726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [1728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), - [1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [1738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), - [1740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), - [1742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), - [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [1756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), - [1758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), - [1760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__text, 2), - [1762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__text, 2), - [1764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(173), - [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), - [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), - [1771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(180), - [1774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(181), - [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), - [1779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(185), - [1782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), - [1784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), - [1786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [1788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(190), - [1791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(191), - [1794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(192), - [1797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(193), - [1800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), - [1802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(195), - [1805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), - [1807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(199), - [1810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), - [1812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hard_line_break, 2), - [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hard_line_break, 2), - [1816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 1), - [1818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), - [1820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(684), - [1823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_note, 1), - [1825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note, 1), - [1827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(698), - [1830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__comment_with_spaces, 2), - [1832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_with_spaces, 2), - [1834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collapsed_reference_image, 2), - [1836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collapsed_reference_image, 2), - [1838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_reference_image, 2), - [1840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_reference_image, 2), - [1842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_image, 2), - [1844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_image, 2), - [1846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collapsed_reference_link, 2), - [1848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collapsed_reference_link, 2), - [1850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_reference_link, 2), - [1852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_reference_link, 2), - [1854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 2), - [1856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 2), - [1858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_autolink, 3), - [1860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_autolink, 3), - [1862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_highlighted, 3, .production_id = 3), - [1864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlighted, 3, .production_id = 3), - [1866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 3, .production_id = 3), - [1868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 3, .production_id = 3), - [1870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete, 3, .production_id = 3), - [1872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete, 3, .production_id = 3), - [1874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_superscript, 3, .production_id = 3), - [1876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_superscript, 3, .production_id = 3), - [1878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 3, .production_id = 3), - [1880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 3, .production_id = 3), - [1882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_footnote_reference, 3, .production_id = 4), - [1884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_footnote_reference, 3, .production_id = 4), - [1886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_emphasis_end, 1), - [1888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emphasis_end, 1), - [1890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_emphasis, 3, .production_id = 3), - [1892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emphasis, 3, .production_id = 3), - [1894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strong_end, 1), - [1896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strong_end, 1), - [1898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strong, 3, .production_id = 3), - [1900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strong, 3, .production_id = 3), - [1902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_inline, 4), - [1904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_inline, 4), - [1906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(862), - [1909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_span, 4), - [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_span, 4), - [1913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math, 4, .production_id = 7), - [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math, 4, .production_id = 7), - [1917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comment, 3), - [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 3), - [1921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_label, 3, .production_id = 8), - [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_label, 3, .production_id = 8), - [1925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link_destination, 3), - [1927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link_destination, 3), - [1929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_inline_attribute, 3), - [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_inline_attribute, 3), - [1933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(833), - [1936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_todo, 1), - [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_todo, 1), - [1940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(694), - [1943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(688), - [1946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(824), - [1949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), - [1951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), - [1953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_emphasis_begin, 2), - [1955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(842), - [1958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(693), - [1961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strong_begin, 2), - [1963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strong_begin, 2), - [1965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_attribute, 3, .production_id = 6), - [1967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_attribute, 3, .production_id = 6), - [1969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_attribute, 2), - [1971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_attribute, 2), - [1973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(851), - [1976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(692), - [1979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(700), - [1982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(815), - [1985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(860), - [1988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(691), - [1991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(869), - [1994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(689), - [1997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(878), - [2000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(686), - [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_emphasis_begin_repeat1, 2), - [2005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_emphasis_begin_repeat1, 2), SHIFT_REPEAT(535), - [2008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_emphasis_begin_repeat1, 2), - [2010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(887), - [2013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element, 2), - [2015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__element, 2), - [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [2031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), - [2033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(889), - [2036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(885), - [2039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(616), - [2042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(685), - [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [2119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 1), - [2121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 1, .production_id = 2), - [2123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_name, 1), - [2125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_with_newline, 3), - [2127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1), - [2129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value, 3), - [2131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_with_newline, 4, .production_id = 9), - [2133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 3), - [2135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2), - [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), - [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), - [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), - [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [2159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_text, 3), - [2161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_text, 3), - [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), - [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), - [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), - [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), - [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), - [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [2209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__comment_with_newline_repeat1, 2), SHIFT_REPEAT(658), - [2212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_with_newline_repeat1, 2), - [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [2216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), - [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [2228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), - [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), - [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [2250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), - [2252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_with_newline_repeat1, 1), - [2254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), - [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [2258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_description, 3, .production_id = 5), - [2260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_description, 3, .production_id = 5), - [2262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), - [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [2270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [2274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [2278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), - [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [2282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [2286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), - [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [2290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), - [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [2294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), - [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_description, 2), - [2300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_description, 2), - [2302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), - [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [2306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), - [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [2310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [2314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [2318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), - [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [2322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), - [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [2326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), - [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [2330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), - [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [2334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [2338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), - [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [2342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), - [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [2346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [2350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), - [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [2356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [2360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), - [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [2364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), - [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [2368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [2372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), - [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [2376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), - [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [2380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [2384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [2388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [2392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), - [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [2396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [2400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), - [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [2404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [2408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), - [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [2412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [2416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), - [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [2420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), - [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [2424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [2644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_label, 1), - [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [2734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline, 1), - [2736] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key, 1), - [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [47] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), + [49] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(695), + [52] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(182), + [55] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(129), + [58] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(366), + [61] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(706), + [64] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(182), + [67] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(181), + [70] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(44), + [73] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(45), + [76] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(46), + [79] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), + [81] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(47), + [84] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(49), + [87] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(150), + [90] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [92] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(51), + [95] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(52), + [98] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(377), + [101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(378), + [104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(379), + [107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(380), + [110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(97), + [113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(144), + [116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(848), + [119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(366), + [122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(380), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(49), + [130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(47), + [133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(668), + [136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(180), + [139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(133), + [142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(231), + [145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(834), + [148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(180), + [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(183), + [154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(37), + [157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(50), + [160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(61), + [163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(62), + [166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(35), + [169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(142), + [172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(2), + [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(23), + [178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(232), + [181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(233), + [184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(234), + [187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(235), + [190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(73), + [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(132), + [196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(821), + [199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(697), + [202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(167), + [205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(147), + [208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(197), + [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(873), + [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(167), + [217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(168), + [220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(22), + [223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(21), + [226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(10), + [229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(19), + [232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(17), + [235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(137), + [238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(8), + [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(41), + [244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(198), + [247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(199), + [250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(200), + [253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(201), + [256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(78), + [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(130), + [262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(812), + [265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(676), + [268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(187), + [271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(123), + [274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(331), + [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(708), + [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(187), + [283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(164), + [286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(42), + [289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(11), + [292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(40), + [295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(39), + [298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(38), + [301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(124), + [304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(5), + [307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(36), + [310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(326), + [313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(325), + [316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(324), + [319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(265), + [322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(107), + [325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(131), + [328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(803), + [331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(656), + [334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(163), + [337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(155), + [340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(266), + [343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(793), + [346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(163), + [349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(162), + [352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(24), + [355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(25), + [358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(26), + [361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(27), + [364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(28), + [367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(149), + [370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(7), + [373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(29), + [376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(277), + [379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(278), + [382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(279), + [385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(280), + [388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(72), + [391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(146), + [394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(830), + [397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(673), + [400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(175), + [403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(122), + [406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(316), + [409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(753), + [412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(175), + [415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(178), + [418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(30), + [421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(31), + [424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(32), + [427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(33), + [430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(34), + [433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(128), + [436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(6), + [439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(43), + [442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(327), + [445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(328), + [448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(329), + [451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(330), + [454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(113), + [457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(125), + [460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(839), + [463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(39), + [466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(19), + [469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(62), + [472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(27), + [475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(33), + [478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(38), + [481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(17), + [484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(35), + [487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(28), + [490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(34), + [493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(639), + [496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(197), + [499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(201), + [502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(231), + [505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(235), + [508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(331), + [511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(265), + [514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(316), + [517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(330), + [520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(266), + [523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(280), + [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), + [536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline, 1), + [550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline, 1), + [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), + [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), + [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), + [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), + [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), + [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), + [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), + [664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(654), + [667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(184), + [670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(141), + [673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(323), + [676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(890), + [679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(184), + [682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(176), + [685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(12), + [688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(13), + [691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(14), + [694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(15), + [697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(16), + [700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(136), + [703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(9), + [706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(18), + [709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(332), + [712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(343), + [715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(344), + [718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(345), + [721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(75), + [724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(151), + [727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(804), + [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), + [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), + [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(668), + [777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(180), + [780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(133), + [783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(231), + [786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(834), + [789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(180), + [792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(183), + [795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(37), + [798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(50), + [801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(61), + [804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(62), + [807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(35), + [810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(142), + [813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(2), + [816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(23), + [819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(232), + [822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(233), + [825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(234), + [828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(235), + [831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(79), + [834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(132), + [837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(821), + [840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(697), + [843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(167), + [846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(147), + [849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(197), + [852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(873), + [855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(167), + [858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(168), + [861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(22), + [864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(21), + [867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(10), + [870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(19), + [873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(17), + [876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(137), + [879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(8), + [882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(41), + [885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(198), + [888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(199), + [891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(200), + [894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(201), + [897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(85), + [900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(130), + [903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(812), + [906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(692), + [909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(165), + [912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(140), + [915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(416), + [918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(720), + [921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(165), + [924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(158), + [927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(63), + [930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(59), + [933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(60), + [936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(65), + [939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(64), + [942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(154), + [945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(3), + [948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(20), + [951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(427), + [954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(428), + [957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(429), + [960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(430), + [963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(86), + [966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(156), + [969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(857), + [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), + [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [1018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [1020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), + [1024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [1026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [1028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [1030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [1034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [1036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [1038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [1040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [1042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), + [1044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [1046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [1048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [1050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [1054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [1056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [1058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [1062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [1064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [1066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(695), + [1069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(182), + [1072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(129), + [1075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(366), + [1078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(706), + [1081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(182), + [1084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(181), + [1087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(44), + [1090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(45), + [1093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(46), + [1096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(47), + [1099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(49), + [1102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(150), + [1105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(51), + [1108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(52), + [1111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(377), + [1114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(378), + [1117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(379), + [1120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(380), + [1123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(95), + [1126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(144), + [1129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(848), + [1132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [1134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [1136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [1138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [1140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [1142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [1144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [1146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [1148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [1150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [1152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [1154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [1156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [1158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [1160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), + [1162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [1164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [1170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [1172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [1176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(676), + [1179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(187), + [1182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(123), + [1185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(331), + [1188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(708), + [1191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(187), + [1194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(164), + [1197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(42), + [1200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(11), + [1203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(40), + [1206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(39), + [1209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(38), + [1212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(124), + [1215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(5), + [1218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(36), + [1221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(326), + [1224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(325), + [1227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(324), + [1230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(265), + [1233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(98), + [1236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(131), + [1239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(803), + [1242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(656), + [1245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(163), + [1248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(155), + [1251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(266), + [1254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(793), + [1257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(163), + [1260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(162), + [1263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(24), + [1266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(25), + [1269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(26), + [1272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(27), + [1275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(27), + [1278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(28), + [1281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(149), + [1284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(7), + [1287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(29), + [1290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(277), + [1293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(278), + [1296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(279), + [1299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(280), + [1302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(101), + [1305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(146), + [1308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(830), + [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), + [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), + [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [1353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [1357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(673), + [1360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(175), + [1363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(122), + [1366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(316), + [1369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(753), + [1372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(175), + [1375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(178), + [1378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(30), + [1381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(31), + [1384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(32), + [1387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(33), + [1390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(34), + [1393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(34), + [1396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(128), + [1399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(6), + [1402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(43), + [1405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(327), + [1408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(328), + [1411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(329), + [1414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(330), + [1417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(111), + [1420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(125), + [1423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(839), + [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [1434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), + [1436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [1442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [1454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), + [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [1466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), + [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [1470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(670), + [1473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(185), + [1476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(126), + [1479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(487), + [1482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(762), + [1485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(185), + [1488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(160), + [1491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(57), + [1494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(56), + [1497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(55), + [1500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(54), + [1503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(53), + [1506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(135), + [1509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(4), + [1512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(48), + [1515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(479), + [1518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(478), + [1521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(477), + [1524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(476), + [1527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(116), + [1530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(134), + [1533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(875), + [1536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(682), + [1539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(467), + [1542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(169), + [1545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(533), + [1548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(740), + [1551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(467), + [1554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(468), + [1557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(66), + [1560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(67), + [1563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(69), + [1566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(70), + [1569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(71), + [1572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(170), + [1575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(58), + [1578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(68), + [1581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(529), + [1584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(528), + [1587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(527), + [1590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(525), + [1593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(120), + [1596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(171), + [1599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(866), + [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [1604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), + [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [1609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_strong_begin, 1), REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), + [1612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), + [1614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), + [1616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element, 1), + [1618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__element, 1), + [1620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verbatim, 3, .production_id = 1), + [1622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verbatim, 3, .production_id = 1), + [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [1626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), + [1628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), + [1630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [1632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), + [1634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [1640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), + [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [1644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [1648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [1654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [1658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), + [1660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__text, 2), + [1662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__text, 2), + [1664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(159), + [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), + [1669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(161), + [1672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), + [1674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), + [1676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(166), + [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), + [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [1683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(172), + [1686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(173), + [1689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(174), + [1692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), + [1698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(179), + [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [1705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(186), + [1708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(188), + [1711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete, 3, .production_id = 3), + [1713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete, 3, .production_id = 3), + [1715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 2), + [1717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 2), + [1719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math, 4, .production_id = 7), + [1721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math, 4, .production_id = 7), + [1723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comment, 3), + [1725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 3), + [1727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_label, 3, .production_id = 8), + [1729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_label, 3, .production_id = 8), + [1731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link_destination, 3), + [1733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link_destination, 3), + [1735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_emphasis, 5, .production_id = 9), + [1737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emphasis, 5, .production_id = 9), + [1739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_inline_attribute, 3), + [1741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_inline_attribute, 3), + [1743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(815), + [1746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_todo, 1), + [1748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_todo, 1), + [1750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_note, 1), + [1752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note, 1), + [1754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 1), + [1756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), + [1758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(657), + [1761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 2, .dynamic_precedence = -1000), + [1763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 2, .dynamic_precedence = -1000), + [1765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hard_line_break, 2), + [1767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hard_line_break, 2), + [1769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_attribute, 3, .production_id = 6), + [1771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_attribute, 3, .production_id = 6), + [1773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__comment_with_spaces, 2), + [1775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_with_spaces, 2), + [1777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collapsed_reference_image, 2), + [1779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collapsed_reference_image, 2), + [1781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_reference_image, 2), + [1783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_reference_image, 2), + [1785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_image, 2), + [1787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_image, 2), + [1789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collapsed_reference_link, 2), + [1791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collapsed_reference_link, 2), + [1793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_reference_link, 2), + [1795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_reference_link, 2), + [1797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_attribute, 2), + [1799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_attribute, 2), + [1801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_autolink, 3), + [1803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_autolink, 3), + [1805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_highlighted, 3, .production_id = 3), + [1807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlighted, 3, .production_id = 3), + [1809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 3, .production_id = 3), + [1811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 3, .production_id = 3), + [1813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_superscript, 3, .production_id = 3), + [1815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_superscript, 3, .production_id = 3), + [1817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 3, .production_id = 3), + [1819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 3, .production_id = 3), + [1821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_footnote_reference, 3, .production_id = 4), + [1823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_footnote_reference, 3, .production_id = 4), + [1825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strong_end, 1), + [1827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strong_end, 1), + [1829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strong, 3, .production_id = 3), + [1831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strong, 3, .production_id = 3), + [1833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_inline, 4), + [1835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_inline, 4), + [1837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_span, 4), + [1839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_span, 4), + [1841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(824), + [1844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(662), + [1847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(653), + [1850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(833), + [1853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(651), + [1856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(806), + [1859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(842), + [1862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(675), + [1865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(744), + [1868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(672), + [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strong_begin, 2), + [1873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), + [1875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strong_begin, 2), + [1877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(851), + [1880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(678), + [1883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(860), + [1886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(687), + [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), + [1891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(699), + [1894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(878), + [1897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_strong_begin_repeat1, 2), + [1899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_strong_begin_repeat1, 2), SHIFT_REPEAT(486), + [1902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_strong_begin_repeat1, 2), + [1904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(490), + [1907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element, 2), + [1909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__element, 2), + [1911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(693), + [1914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(869), + [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), + [1933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(802), + [1936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(784), + [1939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(597), + [1942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(660), + [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [2019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value, 3), + [2021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_with_newline, 4, .production_id = 9), + [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 1), + [2025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 3), + [2027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 1, .production_id = 2), + [2029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_name, 1), + [2031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2), + [2033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1), + [2035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_with_newline, 3), + [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [2039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_text, 3), + [2041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_text, 3), + [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), + [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [2053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), + [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), + [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), + [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), + [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), + [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), + [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), + [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), + [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), + [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [2137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), + [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), + [2147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__comment_with_newline_repeat1, 2), SHIFT_REPEAT(637), + [2150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_with_newline_repeat1, 2), + [2152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_with_newline_repeat1, 1), + [2154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [2158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_description, 2), + [2160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_description, 2), + [2162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [2166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), + [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [2170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), + [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [2174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [2182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), + [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [2186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [2190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [2198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [2202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_description, 3, .production_id = 5), + [2204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_description, 3, .production_id = 5), + [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [2208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(369), + [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [2213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(283), + [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [2218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [2224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [2228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [2232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [2240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [2244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(236), + [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [2253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(466), + [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [2258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(333), + [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [2263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(322), + [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [2268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [2272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), + [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [2276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [2280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), + [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [2284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(521), + [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [2289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), + [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), + [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), + [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [2309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(433), + [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [2314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [2318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(383), + [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [2323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [2327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(202), + [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [2332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), + [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [2336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [2342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emphasis_end, 1), + [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [2540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key, 1), + [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_label, 1), + [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [2704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline, 1), + [2706] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), }; enum ts_external_scanner_symbol_identifiers { @@ -39831,7 +38566,15 @@ enum ts_external_scanner_symbol_identifiers { ts_external_token__verbatim_begin = 1, ts_external_token__verbatim_end = 2, ts_external_token__verbatim_content = 3, - ts_external_token__error = 4, + ts_external_token_emphasis_begin_2 = 4, + ts_external_token_emphasis_end_2 = 5, + ts_external_token_strong_begin_2 = 6, + ts_external_token_strong_end_2 = 7, + ts_external_token__emphasis_begin_check = 8, + ts_external_token__emphasis_end_check = 9, + ts_external_token__in_real_emphasis = 10, + ts_external_token__in_fallback = 11, + ts_external_token__error = 12, }; static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { @@ -39839,26 +38582,52 @@ static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { [ts_external_token__verbatim_begin] = sym__verbatim_begin, [ts_external_token__verbatim_end] = sym__verbatim_end, [ts_external_token__verbatim_content] = sym__verbatim_content, + [ts_external_token_emphasis_begin_2] = sym_emphasis_begin_2, + [ts_external_token_emphasis_end_2] = sym_emphasis_end_2, + [ts_external_token_strong_begin_2] = sym_strong_begin_2, + [ts_external_token_strong_end_2] = sym_strong_end_2, + [ts_external_token__emphasis_begin_check] = sym__emphasis_begin_check, + [ts_external_token__emphasis_end_check] = sym__emphasis_end_check, + [ts_external_token__in_real_emphasis] = sym__in_real_emphasis, + [ts_external_token__in_fallback] = sym__in_fallback, [ts_external_token__error] = sym__error, }; -static const bool ts_external_scanner_states[5][EXTERNAL_TOKEN_COUNT] = { +static const bool ts_external_scanner_states[8][EXTERNAL_TOKEN_COUNT] = { [1] = { [ts_external_token__ignored] = true, [ts_external_token__verbatim_begin] = true, [ts_external_token__verbatim_end] = true, [ts_external_token__verbatim_content] = true, + [ts_external_token_emphasis_begin_2] = true, + [ts_external_token_emphasis_end_2] = true, + [ts_external_token_strong_begin_2] = true, + [ts_external_token_strong_end_2] = true, + [ts_external_token__emphasis_begin_check] = true, + [ts_external_token__emphasis_end_check] = true, + [ts_external_token__in_real_emphasis] = true, + [ts_external_token__in_fallback] = true, [ts_external_token__error] = true, }, [2] = { [ts_external_token__verbatim_begin] = true, }, [3] = { - [ts_external_token__verbatim_end] = true, + [ts_external_token__emphasis_begin_check] = true, + [ts_external_token__in_fallback] = true, }, [4] = { + [ts_external_token__emphasis_end_check] = true, + }, + [5] = { + [ts_external_token__verbatim_end] = true, + }, + [6] = { [ts_external_token__verbatim_content] = true, }, + [7] = { + [ts_external_token__emphasis_begin_check] = true, + }, }; #ifdef __cplusplus diff --git a/tree-sitter-djot-inline/src/scanner.c b/tree-sitter-djot-inline/src/scanner.c index 38b1f37..6ea44c8 100644 --- a/tree-sitter-djot-inline/src/scanner.c +++ b/tree-sitter-djot-inline/src/scanner.c @@ -1,7 +1,10 @@ #include "tree_sitter/alloc.h" +#include "tree_sitter/array.h" #include "tree_sitter/parser.h" #include +#define DEBUG + // The different tokens the external scanner support // See `externals` in `grammar.js` for a description of most of them. typedef enum { @@ -11,15 +14,38 @@ typedef enum { VERBATIM_END, VERBATIM_CONTENT, + EMPHASIS_BEGIN, + EMPHASIS_END, + STRONG_BEGIN, + STRONG_END, + + EMPHASIS_BEGIN_CHECK, + EMPHASIS_END_CHECK, + IN_REAL_EMPHASIS, + IN_FALLBACK, + ERROR, } TokenType; +typedef enum { + EMPHASIS, + STRONG, +} ElementType; + typedef struct { + Array(ElementType) * open_elements; + // The number of ` we are currently matching, or 0 when not inside. uint8_t verbatim_tick_count; } Scanner; -static void advance(Scanner *s, TSLexer *lexer) { +#ifdef DEBUG +#include +static void dump(Scanner *s, TSLexer *lexer); +static void dump_valid_symbols(const bool *valid_symbols); +#endif + +static void advance(TSLexer *lexer) { lexer->advance(lexer, false); // Carriage returns should simply be ignored. if (lexer->lookahead == '\r') { @@ -27,10 +53,10 @@ static void advance(Scanner *s, TSLexer *lexer) { } } -static uint8_t consume_chars(Scanner *s, TSLexer *lexer, char c) { +static uint8_t consume_chars(TSLexer *lexer, char c) { uint8_t count = 0; while (lexer->lookahead == c) { - advance(s, lexer); + advance(lexer); ++count; } return count; @@ -41,7 +67,7 @@ static bool parse_verbatim_content(Scanner *s, TSLexer *lexer) { while (!lexer->eof(lexer)) { if (lexer->lookahead == '`') { // If we find a `, we need to count them to see if we should stop. - uint8_t current = consume_chars(s, lexer, '`'); + uint8_t current = consume_chars(lexer, '`'); if (current == s->verbatim_tick_count) { // We found a matching number of ` break; @@ -53,7 +79,7 @@ static bool parse_verbatim_content(Scanner *s, TSLexer *lexer) { } } else { // Non-` token found, just consume. - advance(s, lexer); + advance(lexer); lexer->mark_end(lexer); ticks = 0; } @@ -72,7 +98,7 @@ static bool parse_verbatim_end(Scanner *s, TSLexer *lexer) { if (s->verbatim_tick_count == 0) { return false; } - uint8_t ticks = consume_chars(s, lexer, '`'); + uint8_t ticks = consume_chars(lexer, '`'); if (ticks != s->verbatim_tick_count) { return false; } @@ -83,7 +109,7 @@ static bool parse_verbatim_end(Scanner *s, TSLexer *lexer) { } static bool parse_verbatim_start(Scanner *s, TSLexer *lexer) { - uint8_t ticks = consume_chars(s, lexer, '`'); + uint8_t ticks = consume_chars(lexer, '`'); if (ticks == 0) { return false; } @@ -93,35 +119,137 @@ static bool parse_verbatim_start(Scanner *s, TSLexer *lexer) { return true; } +static bool element_on_top(Scanner *s, ElementType e) { + return s->open_elements->size > 0 && *array_back(s->open_elements) == e; +} + +static bool find_element(Scanner *s, ElementType e) { + for (int i = s->open_elements->size - 1; i >= 0; --i) { + if (*array_get(s->open_elements, i) == e) { + return true; + } + } + return false; +} + +static bool emphasis_begin_check(Scanner *s, TSLexer *lexer) { + lexer->result_symbol = EMPHASIS_BEGIN_CHECK; + array_push(s->open_elements, EMPHASIS); + return true; +} + +static bool emphasis_end_check(Scanner *s, TSLexer *lexer) { + if (!element_on_top(s, EMPHASIS)) { + return false; + } + + lexer->result_symbol = EMPHASIS_END_CHECK; + array_pop(s->open_elements); + return true; +} + +// IN_FALLBACK will only be valid during symbol fallback +// 0. `_` can start/end +// 1. `_ ` cannot start +// 2. ` _` cannot end +// 3. `_}` will end + +static bool parse_emphasis(Scanner *s, TSLexer *lexer, + const bool *valid_symbols) { + if (valid_symbols[EMPHASIS_BEGIN_CHECK]) { + if (valid_symbols[IN_FALLBACK]) { + // If we can find an open emphasis element that means we should choose + // this one instead because we should prefer the shorter emphasis if two + // are valid. By issuing an error we'll prune this branch + // and make the resolver choose the other branch where we chose the + // fallback for the previous begin marker instead. + if (find_element(s, EMPHASIS)) { + lexer->result_symbol = ERROR; + return true; + } else { + // We need to output the token common to both the fallback symbol and + // the emphasis so the resolver will branch. + lexer->result_symbol = EMPHASIS_BEGIN_CHECK; + return true; + } + } else if (emphasis_begin_check(s, lexer)) { + return true; + } + } + if (valid_symbols[EMPHASIS_END_CHECK] && emphasis_end_check(s, lexer)) { + return true; + } + return false; +} + bool tree_sitter_djot_inline_external_scanner_scan(void *payload, TSLexer *lexer, const bool *valid_symbols) { Scanner *s = (Scanner *)payload; - if (valid_symbols[VERBATIM_CONTENT] && parse_verbatim_content(s, lexer)) { +#ifdef DEBUG + printf("SCAN\n"); + dump(s, lexer); + dump_valid_symbols(valid_symbols); +#endif + + if (valid_symbols[ERROR]) { + lexer->result_symbol = ERROR; return true; } - if (valid_symbols[VERBATIM_END] && parse_verbatim_end(s, lexer)) { + + if (valid_symbols[VERBATIM_CONTENT] && parse_verbatim_content(s, lexer)) { return true; } - if (valid_symbols[VERBATIM_BEGIN] && parse_verbatim_start(s, lexer)) { + if (lexer->eof(lexer)) { + if (valid_symbols[VERBATIM_END] && parse_verbatim_end(s, lexer)) { + return true; + } + } + + if (parse_emphasis(s, lexer, valid_symbols)) { return true; } + switch (lexer->lookahead) { + case '`': + if (valid_symbols[VERBATIM_BEGIN] && parse_verbatim_start(s, lexer)) { + return true; + } + break; + // case '*': + // if (parse_strong(s, lexer, valid_symbols)) { + // return true; + // } + // break; + // case '_': + // if (parse_emphasis(s, lexer, valid_symbols)) { + // return true; + // } + // break; + default: + break; + } + return false; } -void init(Scanner *s) { s->verbatim_tick_count = 0; } +void init(Scanner *s) { + array_init(s->open_elements); + s->verbatim_tick_count = 0; +} void *tree_sitter_djot_inline_external_scanner_create() { Scanner *s = (Scanner *)ts_malloc(sizeof(Scanner)); + s->open_elements = ts_malloc(sizeof(Array(ElementType))); init(s); return s; } void tree_sitter_djot_inline_external_scanner_destroy(void *payload) { Scanner *s = (Scanner *)payload; + array_delete(s->open_elements); ts_free(s); } @@ -130,6 +258,11 @@ unsigned tree_sitter_djot_inline_external_scanner_serialize(void *payload, Scanner *s = (Scanner *)payload; unsigned size = 0; buffer[size++] = (char)s->verbatim_tick_count; + + for (size_t i = 0; i < s->open_elements->size; ++i) { + ElementType e = *array_get(s->open_elements, i); + buffer[size++] = (char)e; + } return size; } @@ -141,5 +274,91 @@ void tree_sitter_djot_inline_external_scanner_deserialize(void *payload, if (length > 0) { size_t size = 0; s->verbatim_tick_count = (uint8_t)buffer[size++]; + + while (size < length) { + ElementType e = (ElementType)buffer[size++]; + array_push(s->open_elements, e); + } + } +} + +#ifdef DEBUG + +static char *token_type_s(TokenType t) { + switch (t) { + case VERBATIM_BEGIN: + return "VERBATIM_BEGIN"; + case VERBATIM_END: + return "VERBATIM_END"; + case VERBATIM_CONTENT: + return "VERBATIM_CONTENT"; + + case EMPHASIS_BEGIN: + return "EMPHASIS_BEGIN"; + case EMPHASIS_END: + return "EMPHASIS_END"; + case STRONG_BEGIN: + return "STRONG_BEGIN"; + case STRONG_END: + return "STRONG_END"; + + case EMPHASIS_BEGIN_CHECK: + return "EMPHASIS_BEGIN_CHECK"; + case EMPHASIS_END_CHECK: + return "EMPHASIS_END_CHECK"; + case IN_REAL_EMPHASIS: + return "IN_REAL_EMPHASIS"; + case IN_FALLBACK: + return "IN_FALLBACK"; + + case ERROR: + return "ERROR"; + case IGNORED: + return "IGNORED"; + default: + return "NOT IMPLEMENTED"; + } +} + +static char *element_type_s(ElementType t) { + switch (t) { + case EMPHASIS: + return "EMPHASIS"; + case STRONG: + return "STRONG"; + default: + return "NOT IMPLEMENTED"; + } +} + +static void dump_scanner(Scanner *s) { + printf("--- Open elements: %u (last -> first)\n", s->open_elements->size); + for (size_t i = 0; i < s->open_elements->size; ++i) { + ElementType e = *array_get(s->open_elements, i); + printf(" %s\n", element_type_s(e)); } + printf("---\n"); + printf(" verbatim_tick_count: %u\n", s->verbatim_tick_count); + printf("===\n"); } + +static void dump(Scanner *s, TSLexer *lexer) { + printf("=== Lookahead: "); + if (lexer->eof(lexer)) { + printf("eof\n"); + } else { + printf("`%c`\n", lexer->lookahead); + } + dump_scanner(s); +} + +static void dump_valid_symbols(const bool *valid_symbols) { + printf("# valid_symbols:\n"); + for (int i = 0; i <= ERROR; ++i) { + if (valid_symbols[i]) { + printf("%s\n", token_type_s(i)); + } + } +} + +#endif From 394347b65a496a6257e49769569ae8f28c3b805f Mon Sep 17 00:00:00 2001 From: Jonas Hietala Date: Mon, 26 Aug 2024 18:21:05 +0200 Subject: [PATCH 07/46] WIP Almost all emphasis tests pass --- tree-sitter-djot-inline/grammar.js | 23 +- tree-sitter-djot-inline/src/grammar.json | 125 +- tree-sitter-djot-inline/src/parser.c | 44587 +++++++++------- tree-sitter-djot-inline/src/scanner.c | 29 +- .../test/corpus/syntax.txt | 12 + 5 files changed, 24825 insertions(+), 19951 deletions(-) diff --git a/tree-sitter-djot-inline/grammar.js b/tree-sitter-djot-inline/grammar.js index 54fd04f..7373565 100644 --- a/tree-sitter-djot-inline/grammar.js +++ b/tree-sitter-djot-inline/grammar.js @@ -16,6 +16,9 @@ module.exports = grammar({ [$.math, $._symbol_fallback], [$.link_text, $.span, $._symbol_fallback], [$._inline, $._comment_with_spaces], + [$._inline_without_trailing_space, $._comment_with_spaces], + [$._inline_without_trailing_space], + [$._comment_with_spaces], ], rules: { @@ -25,6 +28,12 @@ module.exports = grammar({ _inline: ($) => prec.left(repeat1(choice($._element, $._newline, $._whitespace1))), + _inline_without_trailing_space: ($) => + seq( + prec.left(repeat(choice($._element, $._newline, $._whitespace1))), + $._element, + ), + _element: ($) => prec.left( choice( @@ -83,14 +92,13 @@ module.exports = grammar({ seq( $.emphasis_begin, $._emphasis_begin_check, - alias($._inline, $.content), - // FIXME no space before closing `_` marker + alias($._inline_without_trailing_space, $.content), $.emphasis_end, $._emphasis_end_check, ), - emphasis_begin: (_) => "{_", - emphasis_end: (_) => "_", + emphasis_begin: ($) => choice("{_", seq("_", $._non_whitespace_check)), + emphasis_end: (_) => choice(token(seq(repeat(" "), "_}")), "_"), // Use explicit begin/end to be able to capture ending tokens with arbitrary whitespace. // Note that I couldn't replace repeat(" ") with $._whitespace for some reason... @@ -260,7 +268,11 @@ module.exports = grammar({ "{=", "{^", seq("{_", choice($._emphasis_begin_check, $._in_fallback)), - // "{_", + seq( + "_", + $._non_whitespace_check, + choice($._emphasis_begin_check, $._in_fallback), + ), "{~", "|", "~", @@ -303,6 +315,7 @@ module.exports = grammar({ $._emphasis_end_check, $._in_real_emphasis, $._in_fallback, + $._non_whitespace_check, // Never valid and is only used to signal an internal scanner error. $._error, diff --git a/tree-sitter-djot-inline/src/grammar.json b/tree-sitter-djot-inline/src/grammar.json index 95f2bcc..b747526 100644 --- a/tree-sitter-djot-inline/src/grammar.json +++ b/tree-sitter-djot-inline/src/grammar.json @@ -29,6 +29,39 @@ } } }, + "_inline_without_trailing_space": { + "type": "SEQ", + "members": [ + { + "type": "PREC_LEFT", + "value": 0, + "content": { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_element" + }, + { + "type": "SYMBOL", + "name": "_newline" + }, + { + "type": "SYMBOL", + "name": "_whitespace1" + } + ] + } + } + }, + { + "type": "SYMBOL", + "name": "_element" + } + ] + }, "_element": { "type": "PREC_LEFT", "value": 0, @@ -229,7 +262,7 @@ "type": "ALIAS", "content": { "type": "SYMBOL", - "name": "_inline" + "name": "_inline_without_trailing_space" }, "named": true, "value": "content" @@ -245,12 +278,54 @@ ] }, "emphasis_begin": { - "type": "STRING", - "value": "{_" + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "{_" + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "_" + }, + { + "type": "SYMBOL", + "name": "_non_whitespace_check" + } + ] + } + ] }, "emphasis_end": { - "type": "STRING", - "value": "_" + "type": "CHOICE", + "members": [ + { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "STRING", + "value": " " + } + }, + { + "type": "STRING", + "value": "_}" + } + ] + } + }, + { + "type": "STRING", + "value": "_" + } + ] }, "strong": { "type": "SEQ", @@ -1221,6 +1296,32 @@ } ] }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "_" + }, + { + "type": "SYMBOL", + "name": "_non_whitespace_check" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_emphasis_begin_check" + }, + { + "type": "SYMBOL", + "name": "_in_fallback" + } + ] + } + ] + }, { "type": "STRING", "value": "{~" @@ -1413,6 +1514,16 @@ [ "_inline", "_comment_with_spaces" + ], + [ + "_inline_without_trailing_space", + "_comment_with_spaces" + ], + [ + "_inline_without_trailing_space" + ], + [ + "_comment_with_spaces" ] ], "precedences": [], @@ -1465,6 +1576,10 @@ "type": "SYMBOL", "name": "_in_fallback" }, + { + "type": "SYMBOL", + "name": "_non_whitespace_check" + }, { "type": "SYMBOL", "name": "_error" diff --git a/tree-sitter-djot-inline/src/parser.c b/tree-sitter-djot-inline/src/parser.c index dd7715d..8e267cb 100644 --- a/tree-sitter-djot-inline/src/parser.c +++ b/tree-sitter-djot-inline/src/parser.c @@ -13,12 +13,12 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 902 -#define LARGE_STATE_COUNT 122 -#define SYMBOL_COUNT 132 +#define STATE_COUNT 1022 +#define LARGE_STATE_COUNT 132 +#define SYMBOL_COUNT 135 #define ALIAS_COUNT 10 -#define TOKEN_COUNT 77 -#define EXTERNAL_TOKEN_COUNT 13 +#define TOKEN_COUNT 79 +#define EXTERNAL_TOKEN_COUNT 14 #define FIELD_COUNT 0 #define MAX_ALIAS_SEQUENCE_LENGTH 5 #define PRODUCTION_ID_COUNT 10 @@ -28,143 +28,146 @@ enum ts_symbol_identifiers { anon_sym_RBRACE = 2, anon_sym_LBRACE_ = 3, anon_sym__ = 4, - anon_sym_LBRACE_STAR = 5, - anon_sym_SPACE = 6, - anon_sym_STAR = 7, - aux_sym_strong_end_token1 = 8, - anon_sym_BSLASH = 9, - sym_quotation_marks = 10, - sym_ellipsis = 11, - sym_em_dash = 12, - sym_en_dash = 13, - sym_backslash_escape = 14, - anon_sym_LT = 15, - aux_sym_autolink_token1 = 16, - anon_sym_GT = 17, - anon_sym_LBRACE_EQ = 18, - anon_sym_EQ_RBRACE = 19, - anon_sym_LBRACE_PLUS = 20, - anon_sym_PLUS_RBRACE = 21, - anon_sym_LBRACE_DASH = 22, - anon_sym_DASH_RBRACE = 23, - sym_symbol = 24, - anon_sym_LBRACE_CARET = 25, - anon_sym_CARET = 26, - anon_sym_CARET_RBRACE = 27, - anon_sym_LBRACE_TILDE = 28, - anon_sym_TILDE = 29, - anon_sym_TILDE_RBRACE = 30, - anon_sym_LBRACK_CARET = 31, - anon_sym_RBRACK = 32, - sym__id = 33, - anon_sym_LBRACK_RBRACK = 34, - anon_sym_BANG_LBRACK = 35, - anon_sym_LBRACK = 36, - anon_sym_RBRACK2 = 37, - anon_sym_LPAREN = 38, - aux_sym_inline_link_destination_token1 = 39, - anon_sym_RPAREN = 40, - anon_sym_LBRACE2 = 41, - anon_sym_PERCENT = 42, - aux_sym__comment_with_newline_token1 = 43, - anon_sym_LBRACE_EQ2 = 44, - anon_sym_DOLLAR = 45, - anon_sym_TODO = 46, - anon_sym_WIP = 47, - anon_sym_NOTE = 48, - anon_sym_INFO = 49, - anon_sym_XXX = 50, - sym_fixme = 51, - anon_sym_PIPE = 52, - sym_language = 53, - sym__whitespace = 54, - sym__whitespace1 = 55, - sym__newline = 56, - aux_sym__text_token1 = 57, - anon_sym_DOT = 58, - sym_identifier = 59, - anon_sym_EQ = 60, - anon_sym_DQUOTE = 61, - aux_sym_value_token1 = 62, - aux_sym_value_token2 = 63, - sym__ignored = 64, - sym__verbatim_begin = 65, - sym__verbatim_end = 66, - sym__verbatim_content = 67, - sym_emphasis_begin_2 = 68, - sym_emphasis_end_2 = 69, - sym_strong_begin_2 = 70, - sym_strong_end_2 = 71, - sym__emphasis_begin_check = 72, - sym__emphasis_end_check = 73, - sym__in_real_emphasis = 74, - sym__in_fallback = 75, - sym__error = 76, - sym_inline = 77, - sym__inline = 78, - sym__element = 79, - sym_inline_attribute = 80, - sym_emphasis = 81, - sym_emphasis_begin = 82, - sym_emphasis_end = 83, - sym_strong = 84, - sym_strong_begin = 85, - sym_strong_end = 86, - sym__hard_line_break = 87, - sym_hard_line_break = 88, - sym__smart_punctuation = 89, - sym_autolink = 90, - sym_highlighted = 91, - sym_insert = 92, - sym_delete = 93, - sym_superscript = 94, - sym_subscript = 95, - sym_footnote_reference = 96, - sym_reference_label = 97, - sym__image = 98, - sym_full_reference_image = 99, - sym_collapsed_reference_image = 100, - sym_inline_image = 101, - sym__image_description = 102, - sym__link = 103, - sym_full_reference_link = 104, - sym_collapsed_reference_link = 105, - sym_inline_link = 106, - sym_link_text = 107, - sym__link_label = 108, - sym_inline_link_destination = 109, - sym_comment = 110, - sym__comment_with_spaces = 111, - sym_span = 112, - sym__comment_with_newline = 113, - sym_raw_inline = 114, - sym_raw_inline_attribute = 115, - sym_math = 116, - sym_verbatim = 117, - sym__todo_highlights = 118, - sym_todo = 119, - sym_note = 120, - sym__symbol_fallback = 121, - aux_sym__text = 122, - sym_class_name = 123, - sym_class = 124, - sym_key_value = 125, - sym_key = 126, - sym_value = 127, - aux_sym__inline_repeat1 = 128, - aux_sym_inline_attribute_repeat1 = 129, - aux_sym_strong_begin_repeat1 = 130, - aux_sym__comment_with_newline_repeat1 = 131, - alias_sym_args = 132, - alias_sym_footnote_marker_begin = 133, - alias_sym_footnote_marker_end = 134, - alias_sym_image_description = 135, - alias_sym_link_label = 136, - alias_sym_math_marker = 137, - alias_sym_math_marker_begin = 138, - alias_sym_math_marker_end = 139, - alias_sym_verbatim_marker_begin = 140, - alias_sym_verbatim_marker_end = 141, + aux_sym_emphasis_end_token1 = 5, + anon_sym_LBRACE_STAR = 6, + anon_sym_SPACE = 7, + anon_sym_STAR = 8, + aux_sym_strong_end_token1 = 9, + anon_sym_BSLASH = 10, + sym_quotation_marks = 11, + sym_ellipsis = 12, + sym_em_dash = 13, + sym_en_dash = 14, + sym_backslash_escape = 15, + anon_sym_LT = 16, + aux_sym_autolink_token1 = 17, + anon_sym_GT = 18, + anon_sym_LBRACE_EQ = 19, + anon_sym_EQ_RBRACE = 20, + anon_sym_LBRACE_PLUS = 21, + anon_sym_PLUS_RBRACE = 22, + anon_sym_LBRACE_DASH = 23, + anon_sym_DASH_RBRACE = 24, + sym_symbol = 25, + anon_sym_LBRACE_CARET = 26, + anon_sym_CARET = 27, + anon_sym_CARET_RBRACE = 28, + anon_sym_LBRACE_TILDE = 29, + anon_sym_TILDE = 30, + anon_sym_TILDE_RBRACE = 31, + anon_sym_LBRACK_CARET = 32, + anon_sym_RBRACK = 33, + sym__id = 34, + anon_sym_LBRACK_RBRACK = 35, + anon_sym_BANG_LBRACK = 36, + anon_sym_LBRACK = 37, + anon_sym_RBRACK2 = 38, + anon_sym_LPAREN = 39, + aux_sym_inline_link_destination_token1 = 40, + anon_sym_RPAREN = 41, + anon_sym_LBRACE2 = 42, + anon_sym_PERCENT = 43, + aux_sym__comment_with_newline_token1 = 44, + anon_sym_LBRACE_EQ2 = 45, + anon_sym_DOLLAR = 46, + anon_sym_TODO = 47, + anon_sym_WIP = 48, + anon_sym_NOTE = 49, + anon_sym_INFO = 50, + anon_sym_XXX = 51, + sym_fixme = 52, + anon_sym_PIPE = 53, + sym_language = 54, + sym__whitespace = 55, + sym__whitespace1 = 56, + sym__newline = 57, + aux_sym__text_token1 = 58, + anon_sym_DOT = 59, + sym_identifier = 60, + anon_sym_EQ = 61, + anon_sym_DQUOTE = 62, + aux_sym_value_token1 = 63, + aux_sym_value_token2 = 64, + sym__ignored = 65, + sym__verbatim_begin = 66, + sym__verbatim_end = 67, + sym__verbatim_content = 68, + sym_emphasis_begin_2 = 69, + sym_emphasis_end_2 = 70, + sym_strong_begin_2 = 71, + sym_strong_end_2 = 72, + sym__emphasis_begin_check = 73, + sym__emphasis_end_check = 74, + sym__in_real_emphasis = 75, + sym__in_fallback = 76, + sym__non_whitespace_check = 77, + sym__error = 78, + sym_inline = 79, + sym__inline = 80, + sym__inline_without_trailing_space = 81, + sym__element = 82, + sym_inline_attribute = 83, + sym_emphasis = 84, + sym_emphasis_begin = 85, + sym_emphasis_end = 86, + sym_strong = 87, + sym_strong_begin = 88, + sym_strong_end = 89, + sym__hard_line_break = 90, + sym_hard_line_break = 91, + sym__smart_punctuation = 92, + sym_autolink = 93, + sym_highlighted = 94, + sym_insert = 95, + sym_delete = 96, + sym_superscript = 97, + sym_subscript = 98, + sym_footnote_reference = 99, + sym_reference_label = 100, + sym__image = 101, + sym_full_reference_image = 102, + sym_collapsed_reference_image = 103, + sym_inline_image = 104, + sym__image_description = 105, + sym__link = 106, + sym_full_reference_link = 107, + sym_collapsed_reference_link = 108, + sym_inline_link = 109, + sym_link_text = 110, + sym__link_label = 111, + sym_inline_link_destination = 112, + sym_comment = 113, + sym__comment_with_spaces = 114, + sym_span = 115, + sym__comment_with_newline = 116, + sym_raw_inline = 117, + sym_raw_inline_attribute = 118, + sym_math = 119, + sym_verbatim = 120, + sym__todo_highlights = 121, + sym_todo = 122, + sym_note = 123, + sym__symbol_fallback = 124, + aux_sym__text = 125, + sym_class_name = 126, + sym_class = 127, + sym_key_value = 128, + sym_key = 129, + sym_value = 130, + aux_sym__inline_repeat1 = 131, + aux_sym_inline_attribute_repeat1 = 132, + aux_sym_strong_begin_repeat1 = 133, + aux_sym__comment_with_newline_repeat1 = 134, + alias_sym_args = 135, + alias_sym_footnote_marker_begin = 136, + alias_sym_footnote_marker_end = 137, + alias_sym_image_description = 138, + alias_sym_link_label = 139, + alias_sym_math_marker = 140, + alias_sym_math_marker_begin = 141, + alias_sym_math_marker_end = 142, + alias_sym_verbatim_marker_begin = 143, + alias_sym_verbatim_marker_end = 144, }; static const char * const ts_symbol_names[] = { @@ -173,6 +176,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_RBRACE] = "}", [anon_sym_LBRACE_] = "{_", [anon_sym__] = "_", + [aux_sym_emphasis_end_token1] = "emphasis_end_token1", [anon_sym_LBRACE_STAR] = "{*", [anon_sym_SPACE] = " ", [anon_sym_STAR] = "*", @@ -244,9 +248,11 @@ static const char * const ts_symbol_names[] = { [sym__emphasis_end_check] = "_emphasis_end_check", [sym__in_real_emphasis] = "_in_real_emphasis", [sym__in_fallback] = "_in_fallback", + [sym__non_whitespace_check] = "_non_whitespace_check", [sym__error] = "_error", [sym_inline] = "inline", [sym__inline] = "_inline", + [sym__inline_without_trailing_space] = "content", [sym__element] = "_element", [sym_inline_attribute] = "inline_attribute", [sym_emphasis] = "emphasis", @@ -318,6 +324,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_RBRACE] = anon_sym_RBRACE, [anon_sym_LBRACE_] = anon_sym_LBRACE_, [anon_sym__] = anon_sym__, + [aux_sym_emphasis_end_token1] = aux_sym_emphasis_end_token1, [anon_sym_LBRACE_STAR] = anon_sym_LBRACE_STAR, [anon_sym_SPACE] = anon_sym_SPACE, [anon_sym_STAR] = anon_sym_STAR, @@ -389,9 +396,11 @@ static const TSSymbol ts_symbol_map[] = { [sym__emphasis_end_check] = sym__emphasis_end_check, [sym__in_real_emphasis] = sym__in_real_emphasis, [sym__in_fallback] = sym__in_fallback, + [sym__non_whitespace_check] = sym__non_whitespace_check, [sym__error] = sym__error, [sym_inline] = sym_inline, [sym__inline] = sym__inline, + [sym__inline_without_trailing_space] = sym__verbatim_content, [sym__element] = sym__element, [sym_inline_attribute] = sym_inline_attribute, [sym_emphasis] = sym_emphasis, @@ -478,6 +487,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [aux_sym_emphasis_end_token1] = { + .visible = false, + .named = false, + }, [anon_sym_LBRACE_STAR] = { .visible = true, .named = false, @@ -762,6 +775,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, + [sym__non_whitespace_check] = { + .visible = false, + .named = true, + }, [sym__error] = { .visible = false, .named = true, @@ -774,6 +791,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, + [sym__inline_without_trailing_space] = { + .visible = true, + .named = true, + }, [sym__element] = { .visible = false, .named = true, @@ -1092,898 +1113,1018 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [7] = 2, [8] = 2, [9] = 2, - [10] = 10, + [10] = 2, [11] = 11, [12] = 12, [13] = 11, - [14] = 10, - [15] = 15, - [16] = 16, - [17] = 16, + [14] = 12, + [15] = 11, + [16] = 12, + [17] = 17, [18] = 18, - [19] = 15, - [20] = 18, - [21] = 11, - [22] = 12, - [23] = 18, - [24] = 12, - [25] = 11, - [26] = 10, - [27] = 15, - [28] = 16, - [29] = 18, - [30] = 12, + [19] = 19, + [20] = 17, + [21] = 21, + [22] = 18, + [23] = 19, + [24] = 21, + [25] = 19, + [26] = 18, + [27] = 17, + [28] = 12, + [29] = 11, + [30] = 21, [31] = 11, - [32] = 10, - [33] = 15, - [34] = 16, - [35] = 16, - [36] = 18, + [32] = 12, + [33] = 17, + [34] = 18, + [35] = 19, + [36] = 21, [37] = 12, - [38] = 16, - [39] = 15, - [40] = 10, - [41] = 18, - [42] = 12, - [43] = 18, - [44] = 12, - [45] = 11, - [46] = 10, - [47] = 15, - [48] = 18, - [49] = 16, - [50] = 11, - [51] = 2, - [52] = 18, - [53] = 16, - [54] = 15, - [55] = 10, - [56] = 11, - [57] = 12, - [58] = 2, - [59] = 11, - [60] = 10, - [61] = 10, - [62] = 15, - [63] = 12, - [64] = 16, - [65] = 15, + [38] = 17, + [39] = 18, + [40] = 19, + [41] = 21, + [42] = 19, + [43] = 19, + [44] = 18, + [45] = 17, + [46] = 12, + [47] = 11, + [48] = 2, + [49] = 21, + [50] = 2, + [51] = 11, + [52] = 12, + [53] = 11, + [54] = 21, + [55] = 18, + [56] = 19, + [57] = 18, + [58] = 17, + [59] = 12, + [60] = 11, + [61] = 21, + [62] = 11, + [63] = 17, + [64] = 19, + [65] = 21, [66] = 12, - [67] = 11, - [68] = 18, - [69] = 10, - [70] = 15, - [71] = 16, - [72] = 72, - [73] = 72, - [74] = 74, - [75] = 75, - [76] = 74, - [77] = 74, - [78] = 72, - [79] = 75, - [80] = 74, - [81] = 74, - [82] = 74, - [83] = 74, - [84] = 74, - [85] = 75, - [86] = 75, - [87] = 87, - [88] = 72, - [89] = 89, - [90] = 89, - [91] = 87, - [92] = 89, - [93] = 72, - [94] = 87, - [95] = 75, - [96] = 89, - [97] = 72, - [98] = 75, - [99] = 74, - [100] = 87, - [101] = 75, - [102] = 87, - [103] = 74, - [104] = 89, - [105] = 72, - [106] = 87, - [107] = 72, - [108] = 89, - [109] = 87, - [110] = 89, - [111] = 75, - [112] = 87, - [113] = 72, - [114] = 89, - [115] = 87, - [116] = 75, - [117] = 89, - [118] = 87, - [119] = 89, - [120] = 75, - [121] = 72, - [122] = 122, - [123] = 122, - [124] = 124, - [125] = 125, - [126] = 122, - [127] = 127, - [128] = 124, - [129] = 122, - [130] = 125, - [131] = 125, - [132] = 125, - [133] = 122, - [134] = 125, - [135] = 124, - [136] = 124, - [137] = 124, - [138] = 127, - [139] = 127, - [140] = 122, - [141] = 122, - [142] = 124, - [143] = 127, - [144] = 125, - [145] = 127, - [146] = 125, - [147] = 122, - [148] = 127, - [149] = 124, - [150] = 124, - [151] = 125, - [152] = 127, - [153] = 127, - [154] = 124, - [155] = 122, - [156] = 125, - [157] = 127, - [158] = 158, - [159] = 159, - [160] = 158, - [161] = 159, - [162] = 158, - [163] = 163, - [164] = 158, - [165] = 163, - [166] = 159, - [167] = 163, - [168] = 158, - [169] = 122, - [170] = 124, - [171] = 125, - [172] = 159, - [173] = 159, - [174] = 159, - [175] = 163, - [176] = 158, - [177] = 127, - [178] = 158, - [179] = 159, - [180] = 163, - [181] = 158, - [182] = 163, - [183] = 158, - [184] = 163, - [185] = 163, - [186] = 159, - [187] = 163, - [188] = 159, - [189] = 189, - [190] = 190, - [191] = 191, - [192] = 192, - [193] = 193, - [194] = 194, - [195] = 195, - [196] = 196, - [197] = 197, - [198] = 198, - [199] = 199, - [200] = 200, - [201] = 201, - [202] = 202, - [203] = 203, - [204] = 204, - [205] = 205, - [206] = 206, - [207] = 207, - [208] = 208, - [209] = 209, - [210] = 210, - [211] = 190, - [212] = 212, - [213] = 213, - [214] = 214, - [215] = 215, - [216] = 189, + [67] = 21, + [68] = 17, + [69] = 18, + [70] = 19, + [71] = 18, + [72] = 17, + [73] = 18, + [74] = 17, + [75] = 12, + [76] = 11, + [77] = 21, + [78] = 19, + [79] = 79, + [80] = 80, + [81] = 81, + [82] = 81, + [83] = 79, + [84] = 81, + [85] = 85, + [86] = 85, + [87] = 79, + [88] = 85, + [89] = 85, + [90] = 85, + [91] = 85, + [92] = 85, + [93] = 85, + [94] = 79, + [95] = 79, + [96] = 80, + [97] = 97, + [98] = 97, + [99] = 97, + [100] = 80, + [101] = 79, + [102] = 80, + [103] = 81, + [104] = 81, + [105] = 81, + [106] = 97, + [107] = 80, + [108] = 85, + [109] = 85, + [110] = 97, + [111] = 80, + [112] = 97, + [113] = 80, + [114] = 97, + [115] = 81, + [116] = 81, + [117] = 79, + [118] = 79, + [119] = 81, + [120] = 85, + [121] = 97, + [122] = 97, + [123] = 80, + [124] = 80, + [125] = 97, + [126] = 79, + [127] = 80, + [128] = 97, + [129] = 80, + [130] = 130, + [131] = 81, + [132] = 132, + [133] = 133, + [134] = 133, + [135] = 135, + [136] = 133, + [137] = 137, + [138] = 133, + [139] = 132, + [140] = 132, + [141] = 137, + [142] = 135, + [143] = 135, + [144] = 133, + [145] = 135, + [146] = 135, + [147] = 137, + [148] = 132, + [149] = 137, + [150] = 132, + [151] = 133, + [152] = 135, + [153] = 137, + [154] = 135, + [155] = 137, + [156] = 132, + [157] = 133, + [158] = 132, + [159] = 133, + [160] = 135, + [161] = 137, + [162] = 132, + [163] = 137, + [164] = 133, + [165] = 132, + [166] = 135, + [167] = 133, + [168] = 132, + [169] = 135, + [170] = 137, + [171] = 137, + [172] = 172, + [173] = 173, + [174] = 173, + [175] = 175, + [176] = 172, + [177] = 177, + [178] = 175, + [179] = 172, + [180] = 177, + [181] = 173, + [182] = 172, + [183] = 177, + [184] = 175, + [185] = 132, + [186] = 173, + [187] = 177, + [188] = 172, + [189] = 172, + [190] = 173, + [191] = 177, + [192] = 173, + [193] = 177, + [194] = 177, + [195] = 175, + [196] = 173, + [197] = 172, + [198] = 175, + [199] = 175, + [200] = 133, + [201] = 175, + [202] = 175, + [203] = 173, + [204] = 172, + [205] = 177, + [206] = 175, + [207] = 175, + [208] = 173, + [209] = 135, + [210] = 137, + [211] = 172, + [212] = 177, + [213] = 177, + [214] = 173, + [215] = 172, + [216] = 216, [217] = 217, - [218] = 218, + [218] = 216, [219] = 219, [220] = 220, [221] = 221, [222] = 222, - [223] = 204, + [223] = 223, [224] = 224, - [225] = 191, - [226] = 192, - [227] = 193, - [228] = 194, - [229] = 195, - [230] = 196, - [231] = 197, - [232] = 198, - [233] = 199, - [234] = 200, - [235] = 201, - [236] = 202, - [237] = 203, - [238] = 212, - [239] = 205, - [240] = 206, - [241] = 207, - [242] = 208, - [243] = 209, - [244] = 210, - [245] = 190, - [246] = 204, - [247] = 213, - [248] = 214, - [249] = 215, - [250] = 189, - [251] = 217, - [252] = 218, - [253] = 219, - [254] = 220, - [255] = 221, - [256] = 222, - [257] = 212, - [258] = 224, - [259] = 191, - [260] = 192, - [261] = 193, - [262] = 194, - [263] = 195, - [264] = 196, - [265] = 201, - [266] = 197, - [267] = 204, - [268] = 222, - [269] = 221, - [270] = 220, - [271] = 219, - [272] = 218, - [273] = 217, - [274] = 189, - [275] = 215, - [276] = 214, - [277] = 198, - [278] = 199, - [279] = 200, - [280] = 201, - [281] = 213, - [282] = 212, - [283] = 202, - [284] = 203, - [285] = 204, - [286] = 205, - [287] = 206, - [288] = 207, - [289] = 208, - [290] = 209, - [291] = 210, - [292] = 190, - [293] = 190, - [294] = 210, - [295] = 209, - [296] = 212, - [297] = 213, - [298] = 214, - [299] = 215, - [300] = 189, - [301] = 217, - [302] = 218, + [225] = 225, + [226] = 226, + [227] = 227, + [228] = 228, + [229] = 229, + [230] = 230, + [231] = 231, + [232] = 217, + [233] = 233, + [234] = 234, + [235] = 235, + [236] = 236, + [237] = 237, + [238] = 238, + [239] = 239, + [240] = 240, + [241] = 241, + [242] = 223, + [243] = 234, + [244] = 244, + [245] = 245, + [246] = 246, + [247] = 247, + [248] = 248, + [249] = 244, + [250] = 250, + [251] = 251, + [252] = 252, + [253] = 216, + [254] = 219, + [255] = 220, + [256] = 221, + [257] = 222, + [258] = 245, + [259] = 224, + [260] = 225, + [261] = 226, + [262] = 227, + [263] = 228, + [264] = 229, + [265] = 230, + [266] = 231, + [267] = 217, + [268] = 233, + [269] = 246, + [270] = 235, + [271] = 236, + [272] = 237, + [273] = 238, + [274] = 239, + [275] = 240, + [276] = 241, + [277] = 216, + [278] = 251, + [279] = 223, + [280] = 250, + [281] = 247, + [282] = 248, + [283] = 247, + [284] = 246, + [285] = 245, + [286] = 244, + [287] = 234, + [288] = 223, + [289] = 241, + [290] = 234, + [291] = 244, + [292] = 245, + [293] = 246, + [294] = 240, + [295] = 239, + [296] = 247, + [297] = 248, + [298] = 298, + [299] = 250, + [300] = 251, + [301] = 252, + [302] = 216, [303] = 219, [304] = 220, [305] = 221, - [306] = 222, - [307] = 204, - [308] = 224, - [309] = 191, - [310] = 192, - [311] = 193, - [312] = 194, - [313] = 195, - [314] = 196, - [315] = 208, - [316] = 197, - [317] = 207, - [318] = 206, - [319] = 205, - [320] = 212, - [321] = 203, - [322] = 202, - [323] = 197, - [324] = 200, - [325] = 199, - [326] = 198, - [327] = 198, - [328] = 199, - [329] = 200, - [330] = 201, - [331] = 197, - [332] = 198, - [333] = 202, - [334] = 203, - [335] = 204, - [336] = 205, - [337] = 206, - [338] = 207, - [339] = 208, - [340] = 209, - [341] = 210, - [342] = 190, - [343] = 199, - [344] = 200, - [345] = 201, - [346] = 212, - [347] = 213, - [348] = 214, - [349] = 215, - [350] = 189, - [351] = 217, - [352] = 218, - [353] = 219, - [354] = 220, - [355] = 221, - [356] = 222, - [357] = 204, - [358] = 224, - [359] = 191, - [360] = 192, - [361] = 193, - [362] = 194, - [363] = 195, - [364] = 196, - [365] = 196, - [366] = 197, - [367] = 195, - [368] = 224, - [369] = 202, - [370] = 370, - [371] = 203, - [372] = 212, - [373] = 196, - [374] = 195, - [375] = 194, - [376] = 193, - [377] = 198, - [378] = 199, - [379] = 200, - [380] = 201, - [381] = 194, - [382] = 193, - [383] = 202, - [384] = 203, - [385] = 192, - [386] = 205, - [387] = 206, - [388] = 207, - [389] = 208, - [390] = 209, - [391] = 210, - [392] = 191, - [393] = 192, - [394] = 191, - [395] = 224, - [396] = 224, - [397] = 213, - [398] = 214, - [399] = 215, - [400] = 189, - [401] = 217, - [402] = 218, - [403] = 219, - [404] = 220, - [405] = 221, - [406] = 222, - [407] = 222, - [408] = 224, - [409] = 191, - [410] = 192, - [411] = 193, - [412] = 194, - [413] = 195, - [414] = 196, - [415] = 221, - [416] = 197, - [417] = 220, - [418] = 219, - [419] = 218, - [420] = 217, - [421] = 189, - [422] = 222, - [423] = 215, - [424] = 214, - [425] = 213, - [426] = 221, - [427] = 198, - [428] = 199, - [429] = 200, - [430] = 201, - [431] = 220, - [432] = 190, - [433] = 202, - [434] = 203, - [435] = 210, - [436] = 205, - [437] = 206, - [438] = 207, - [439] = 208, - [440] = 209, - [441] = 210, - [442] = 190, - [443] = 209, - [444] = 208, - [445] = 207, - [446] = 206, - [447] = 213, - [448] = 214, - [449] = 215, - [450] = 205, - [451] = 217, - [452] = 218, - [453] = 219, + [306] = 238, + [307] = 237, + [308] = 236, + [309] = 222, + [310] = 248, + [311] = 224, + [312] = 225, + [313] = 226, + [314] = 227, + [315] = 228, + [316] = 229, + [317] = 230, + [318] = 231, + [319] = 217, + [320] = 233, + [321] = 321, + [322] = 235, + [323] = 236, + [324] = 237, + [325] = 238, + [326] = 239, + [327] = 240, + [328] = 241, + [329] = 235, + [330] = 330, + [331] = 223, + [332] = 233, + [333] = 217, + [334] = 231, + [335] = 230, + [336] = 229, + [337] = 228, + [338] = 227, + [339] = 226, + [340] = 225, + [341] = 224, + [342] = 234, + [343] = 244, + [344] = 245, + [345] = 246, + [346] = 321, + [347] = 222, + [348] = 247, + [349] = 248, + [350] = 330, + [351] = 250, + [352] = 251, + [353] = 252, + [354] = 216, + [355] = 219, + [356] = 220, + [357] = 221, + [358] = 221, + [359] = 220, + [360] = 219, + [361] = 222, + [362] = 321, + [363] = 224, + [364] = 225, + [365] = 226, + [366] = 227, + [367] = 228, + [368] = 229, + [369] = 230, + [370] = 231, + [371] = 217, + [372] = 233, + [373] = 330, + [374] = 235, + [375] = 236, + [376] = 237, + [377] = 238, + [378] = 239, + [379] = 240, + [380] = 241, + [381] = 234, + [382] = 252, + [383] = 223, + [384] = 251, + [385] = 250, + [386] = 321, + [387] = 248, + [388] = 247, + [389] = 246, + [390] = 245, + [391] = 244, + [392] = 330, + [393] = 223, + [394] = 234, + [395] = 244, + [396] = 245, + [397] = 246, + [398] = 321, + [399] = 330, + [400] = 247, + [401] = 248, + [402] = 321, + [403] = 250, + [404] = 251, + [405] = 252, + [406] = 216, + [407] = 219, + [408] = 220, + [409] = 221, + [410] = 330, + [411] = 321, + [412] = 241, + [413] = 222, + [414] = 330, + [415] = 224, + [416] = 225, + [417] = 226, + [418] = 227, + [419] = 228, + [420] = 229, + [421] = 230, + [422] = 231, + [423] = 217, + [424] = 233, + [425] = 321, + [426] = 235, + [427] = 236, + [428] = 237, + [429] = 238, + [430] = 239, + [431] = 240, + [432] = 241, + [433] = 240, + [434] = 330, + [435] = 223, + [436] = 321, + [437] = 330, + [438] = 252, + [439] = 175, + [440] = 250, + [441] = 251, + [442] = 239, + [443] = 238, + [444] = 252, + [445] = 216, + [446] = 234, + [447] = 244, + [448] = 245, + [449] = 246, + [450] = 219, + [451] = 237, + [452] = 247, + [453] = 248, [454] = 220, - [455] = 221, - [456] = 222, - [457] = 203, - [458] = 224, - [459] = 191, - [460] = 192, - [461] = 193, - [462] = 194, - [463] = 195, - [464] = 196, - [465] = 219, - [466] = 202, - [467] = 163, - [468] = 158, - [469] = 218, - [470] = 217, - [471] = 189, - [472] = 215, - [473] = 214, - [474] = 213, - [475] = 205, - [476] = 201, - [477] = 200, - [478] = 199, - [479] = 198, - [480] = 206, - [481] = 207, - [482] = 208, - [483] = 209, - [484] = 210, - [485] = 190, - [486] = 486, - [487] = 197, - [488] = 204, - [489] = 212, - [490] = 159, - [491] = 212, - [492] = 206, - [493] = 209, - [494] = 494, - [495] = 212, - [496] = 208, - [497] = 213, - [498] = 214, - [499] = 215, - [500] = 189, - [501] = 217, - [502] = 218, - [503] = 219, - [504] = 220, - [505] = 221, - [506] = 222, - [507] = 207, - [508] = 224, - [509] = 191, - [510] = 192, - [511] = 193, - [512] = 204, - [513] = 195, - [514] = 196, - [515] = 212, - [516] = 204, - [517] = 212, - [518] = 205, - [519] = 494, - [520] = 203, - [521] = 202, - [522] = 212, - [523] = 204, - [524] = 204, - [525] = 201, - [526] = 212, - [527] = 200, - [528] = 199, - [529] = 198, - [530] = 494, - [531] = 494, - [532] = 212, - [533] = 197, - [534] = 204, - [535] = 494, - [536] = 204, - [537] = 212, - [538] = 494, - [539] = 494, - [540] = 210, - [541] = 204, - [542] = 194, - [543] = 190, - [544] = 204, - [545] = 212, - [546] = 494, - [547] = 494, - [548] = 212, - [549] = 204, - [550] = 204, - [551] = 212, - [552] = 494, - [553] = 204, - [554] = 554, - [555] = 554, - [556] = 554, - [557] = 557, - [558] = 558, - [559] = 554, - [560] = 554, - [561] = 558, - [562] = 554, - [563] = 558, - [564] = 558, - [565] = 558, - [566] = 558, - [567] = 558, - [568] = 554, - [569] = 558, - [570] = 554, - [571] = 558, - [572] = 558, - [573] = 554, - [574] = 558, - [575] = 558, - [576] = 554, - [577] = 554, - [578] = 558, - [579] = 554, - [580] = 554, - [581] = 554, - [582] = 554, - [583] = 558, - [584] = 554, - [585] = 558, - [586] = 554, - [587] = 558, - [588] = 554, - [589] = 558, - [590] = 558, - [591] = 554, - [592] = 558, - [593] = 554, - [594] = 558, - [595] = 595, - [596] = 596, - [597] = 597, + [455] = 250, + [456] = 251, + [457] = 252, + [458] = 216, + [459] = 219, + [460] = 220, + [461] = 221, + [462] = 236, + [463] = 235, + [464] = 177, + [465] = 222, + [466] = 172, + [467] = 224, + [468] = 225, + [469] = 226, + [470] = 227, + [471] = 228, + [472] = 229, + [473] = 230, + [474] = 231, + [475] = 217, + [476] = 233, + [477] = 221, + [478] = 235, + [479] = 236, + [480] = 237, + [481] = 238, + [482] = 239, + [483] = 240, + [484] = 241, + [485] = 173, + [486] = 241, + [487] = 223, + [488] = 240, + [489] = 239, + [490] = 238, + [491] = 233, + [492] = 237, + [493] = 236, + [494] = 235, + [495] = 217, + [496] = 231, + [497] = 233, + [498] = 234, + [499] = 244, + [500] = 245, + [501] = 247, + [502] = 248, + [503] = 250, + [504] = 251, + [505] = 252, + [506] = 219, + [507] = 220, + [508] = 221, + [509] = 230, + [510] = 222, + [511] = 330, + [512] = 224, + [513] = 225, + [514] = 226, + [515] = 227, + [516] = 228, + [517] = 229, + [518] = 230, + [519] = 231, + [520] = 217, + [521] = 233, + [522] = 321, + [523] = 235, + [524] = 236, + [525] = 237, + [526] = 238, + [527] = 239, + [528] = 240, + [529] = 241, + [530] = 229, + [531] = 228, + [532] = 223, + [533] = 227, + [534] = 226, + [535] = 225, + [536] = 224, + [537] = 234, + [538] = 244, + [539] = 245, + [540] = 246, + [541] = 247, + [542] = 248, + [543] = 250, + [544] = 251, + [545] = 252, + [546] = 216, + [547] = 219, + [548] = 220, + [549] = 221, + [550] = 550, + [551] = 222, + [552] = 222, + [553] = 224, + [554] = 225, + [555] = 226, + [556] = 227, + [557] = 228, + [558] = 229, + [559] = 230, + [560] = 231, + [561] = 224, + [562] = 330, + [563] = 246, + [564] = 564, + [565] = 330, + [566] = 321, + [567] = 564, + [568] = 564, + [569] = 330, + [570] = 330, + [571] = 321, + [572] = 246, + [573] = 330, + [574] = 564, + [575] = 330, + [576] = 321, + [577] = 564, + [578] = 330, + [579] = 321, + [580] = 321, + [581] = 581, + [582] = 321, + [583] = 330, + [584] = 564, + [585] = 321, + [586] = 321, + [587] = 564, + [588] = 564, + [589] = 321, + [590] = 223, + [591] = 321, + [592] = 330, + [593] = 330, + [594] = 564, + [595] = 241, + [596] = 240, + [597] = 239, [598] = 598, - [599] = 599, - [600] = 600, - [601] = 601, - [602] = 602, - [603] = 603, - [604] = 604, - [605] = 605, - [606] = 604, - [607] = 607, - [608] = 605, - [609] = 607, - [610] = 607, - [611] = 605, - [612] = 605, - [613] = 607, - [614] = 605, - [615] = 604, - [616] = 607, - [617] = 604, - [618] = 618, - [619] = 607, - [620] = 605, - [621] = 604, - [622] = 607, - [623] = 604, - [624] = 605, - [625] = 604, - [626] = 607, - [627] = 604, - [628] = 607, - [629] = 605, - [630] = 604, - [631] = 604, - [632] = 607, - [633] = 605, - [634] = 605, - [635] = 635, + [599] = 238, + [600] = 564, + [601] = 234, + [602] = 244, + [603] = 245, + [604] = 237, + [605] = 247, + [606] = 248, + [607] = 236, + [608] = 250, + [609] = 251, + [610] = 252, + [611] = 216, + [612] = 219, + [613] = 220, + [614] = 221, + [615] = 235, + [616] = 321, + [617] = 222, + [618] = 330, + [619] = 233, + [620] = 225, + [621] = 226, + [622] = 227, + [623] = 228, + [624] = 229, + [625] = 230, + [626] = 231, + [627] = 217, + [628] = 564, + [629] = 321, + [630] = 330, + [631] = 631, + [632] = 631, + [633] = 631, + [634] = 631, + [635] = 631, [636] = 636, [637] = 637, - [638] = 638, - [639] = 639, - [640] = 638, - [641] = 638, - [642] = 638, - [643] = 638, - [644] = 638, - [645] = 638, - [646] = 638, - [647] = 638, - [648] = 648, - [649] = 638, - [650] = 650, - [651] = 651, - [652] = 652, - [653] = 651, - [654] = 654, - [655] = 652, - [656] = 654, - [657] = 651, - [658] = 652, - [659] = 659, - [660] = 660, - [661] = 661, - [662] = 651, - [663] = 661, - [664] = 659, - [665] = 659, - [666] = 652, - [667] = 661, - [668] = 654, - [669] = 661, - [670] = 654, - [671] = 652, - [672] = 651, - [673] = 654, - [674] = 652, - [675] = 651, - [676] = 654, - [677] = 659, - [678] = 651, - [679] = 661, - [680] = 659, - [681] = 661, - [682] = 654, - [683] = 661, - [684] = 659, - [685] = 652, - [686] = 652, - [687] = 651, - [688] = 652, - [689] = 659, - [690] = 659, - [691] = 661, - [692] = 654, - [693] = 651, - [694] = 661, - [695] = 654, - [696] = 659, - [697] = 654, - [698] = 652, - [699] = 651, - [700] = 661, - [701] = 659, - [702] = 702, - [703] = 703, - [704] = 704, - [705] = 705, - [706] = 706, - [707] = 707, - [708] = 706, - [709] = 709, - [710] = 710, - [711] = 702, - [712] = 712, + [638] = 636, + [639] = 636, + [640] = 631, + [641] = 631, + [642] = 636, + [643] = 636, + [644] = 636, + [645] = 636, + [646] = 636, + [647] = 631, + [648] = 631, + [649] = 631, + [650] = 636, + [651] = 636, + [652] = 631, + [653] = 636, + [654] = 636, + [655] = 631, + [656] = 631, + [657] = 636, + [658] = 631, + [659] = 631, + [660] = 636, + [661] = 631, + [662] = 636, + [663] = 631, + [664] = 631, + [665] = 636, + [666] = 636, + [667] = 631, + [668] = 636, + [669] = 636, + [670] = 636, + [671] = 631, + [672] = 636, + [673] = 631, + [674] = 631, + [675] = 636, + [676] = 676, + [677] = 677, + [678] = 678, + [679] = 679, + [680] = 680, + [681] = 681, + [682] = 682, + [683] = 683, + [684] = 684, + [685] = 685, + [686] = 686, + [687] = 686, + [688] = 688, + [689] = 688, + [690] = 685, + [691] = 688, + [692] = 685, + [693] = 685, + [694] = 688, + [695] = 686, + [696] = 685, + [697] = 688, + [698] = 688, + [699] = 686, + [700] = 688, + [701] = 686, + [702] = 685, + [703] = 686, + [704] = 685, + [705] = 688, + [706] = 686, + [707] = 685, + [708] = 686, + [709] = 686, + [710] = 686, + [711] = 685, + [712] = 688, [713] = 713, - [714] = 714, - [715] = 715, + [714] = 685, + [715] = 688, [716] = 716, [717] = 717, - [718] = 704, - [719] = 705, - [720] = 706, - [721] = 707, + [718] = 686, + [719] = 688, + [720] = 685, + [721] = 721, [722] = 722, - [723] = 709, - [724] = 710, - [725] = 702, - [726] = 712, - [727] = 715, - [728] = 716, - [729] = 713, - [730] = 715, - [731] = 731, - [732] = 714, - [733] = 714, - [734] = 715, - [735] = 716, - [736] = 717, - [737] = 704, - [738] = 705, - [739] = 713, - [740] = 706, - [741] = 712, - [742] = 702, - [743] = 707, - [744] = 744, - [745] = 709, - [746] = 710, - [747] = 710, - [748] = 712, - [749] = 710, - [750] = 709, - [751] = 713, - [752] = 707, - [753] = 706, - [754] = 705, - [755] = 714, - [756] = 715, - [757] = 716, - [758] = 717, - [759] = 704, - [760] = 705, - [761] = 704, - [762] = 706, - [763] = 717, - [764] = 716, - [765] = 707, - [766] = 766, - [767] = 709, - [768] = 710, - [769] = 702, - [770] = 712, - [771] = 702, - [772] = 714, - [773] = 713, - [774] = 707, - [775] = 775, - [776] = 713, - [777] = 714, - [778] = 715, - [779] = 716, - [780] = 717, - [781] = 704, - [782] = 705, - [783] = 712, - [784] = 784, - [785] = 702, - [786] = 710, - [787] = 709, - [788] = 704, - [789] = 709, - [790] = 707, - [791] = 714, - [792] = 715, - [793] = 706, - [794] = 716, - [795] = 717, - [796] = 796, - [797] = 705, - [798] = 704, - [799] = 717, - [800] = 716, - [801] = 717, - [802] = 802, + [723] = 723, + [724] = 724, + [725] = 723, + [726] = 723, + [727] = 722, + [728] = 728, + [729] = 723, + [730] = 722, + [731] = 722, + [732] = 732, + [733] = 722, + [734] = 723, + [735] = 722, + [736] = 723, + [737] = 723, + [738] = 723, + [739] = 723, + [740] = 723, + [741] = 722, + [742] = 722, + [743] = 723, + [744] = 722, + [745] = 722, + [746] = 722, + [747] = 747, + [748] = 748, + [749] = 748, + [750] = 750, + [751] = 747, + [752] = 752, + [753] = 748, + [754] = 752, + [755] = 752, + [756] = 756, + [757] = 756, + [758] = 752, + [759] = 748, + [760] = 760, + [761] = 756, + [762] = 750, + [763] = 750, + [764] = 750, + [765] = 747, + [766] = 756, + [767] = 756, + [768] = 750, + [769] = 747, + [770] = 748, + [771] = 750, + [772] = 756, + [773] = 752, + [774] = 748, + [775] = 752, + [776] = 747, + [777] = 752, + [778] = 750, + [779] = 747, + [780] = 748, + [781] = 756, + [782] = 750, + [783] = 747, + [784] = 748, + [785] = 748, + [786] = 747, + [787] = 750, + [788] = 747, + [789] = 748, + [790] = 756, + [791] = 748, + [792] = 756, + [793] = 752, + [794] = 750, + [795] = 750, + [796] = 752, + [797] = 747, + [798] = 752, + [799] = 756, + [800] = 756, + [801] = 752, + [802] = 747, [803] = 803, - [804] = 803, - [805] = 731, - [806] = 744, - [807] = 715, - [808] = 713, - [809] = 775, - [810] = 714, - [811] = 796, - [812] = 803, + [804] = 804, + [805] = 805, + [806] = 806, + [807] = 807, + [808] = 808, + [809] = 809, + [810] = 810, + [811] = 811, + [812] = 812, [813] = 813, - [814] = 731, - [815] = 744, - [816] = 713, - [817] = 712, - [818] = 775, - [819] = 702, - [820] = 796, - [821] = 803, - [822] = 710, - [823] = 731, - [824] = 744, - [825] = 709, - [826] = 712, - [827] = 775, - [828] = 707, - [829] = 796, - [830] = 803, - [831] = 702, - [832] = 731, - [833] = 744, - [834] = 706, - [835] = 710, - [836] = 775, - [837] = 705, - [838] = 796, + [814] = 814, + [815] = 815, + [816] = 803, + [817] = 804, + [818] = 805, + [819] = 806, + [820] = 807, + [821] = 813, + [822] = 808, + [823] = 803, + [824] = 815, + [825] = 809, + [826] = 814, + [827] = 813, + [828] = 810, + [829] = 811, + [830] = 812, + [831] = 813, + [832] = 812, + [833] = 811, + [834] = 814, + [835] = 810, + [836] = 809, + [837] = 808, + [838] = 815, [839] = 803, - [840] = 709, - [841] = 731, - [842] = 744, - [843] = 704, - [844] = 705, - [845] = 775, - [846] = 717, - [847] = 796, - [848] = 803, - [849] = 716, - [850] = 731, - [851] = 744, - [852] = 715, - [853] = 714, - [854] = 775, - [855] = 713, - [856] = 796, - [857] = 803, - [858] = 712, - [859] = 731, - [860] = 744, - [861] = 702, - [862] = 862, - [863] = 775, - [864] = 710, - [865] = 796, - [866] = 803, - [867] = 707, - [868] = 731, - [869] = 744, - [870] = 709, - [871] = 707, - [872] = 775, - [873] = 706, - [874] = 796, - [875] = 803, - [876] = 705, - [877] = 731, - [878] = 744, - [879] = 704, - [880] = 880, - [881] = 775, - [882] = 717, - [883] = 796, - [884] = 884, - [885] = 885, - [886] = 716, - [887] = 715, - [888] = 714, - [889] = 889, - [890] = 706, - [891] = 713, - [892] = 712, - [893] = 880, - [894] = 880, - [895] = 880, - [896] = 880, - [897] = 880, - [898] = 880, - [899] = 880, - [900] = 880, - [901] = 880, + [840] = 804, + [841] = 805, + [842] = 806, + [843] = 807, + [844] = 807, + [845] = 808, + [846] = 806, + [847] = 805, + [848] = 809, + [849] = 804, + [850] = 803, + [851] = 810, + [852] = 811, + [853] = 812, + [854] = 813, + [855] = 815, + [856] = 814, + [857] = 814, + [858] = 813, + [859] = 812, + [860] = 811, + [861] = 815, + [862] = 803, + [863] = 804, + [864] = 805, + [865] = 806, + [866] = 807, + [867] = 810, + [868] = 808, + [869] = 809, + [870] = 808, + [871] = 809, + [872] = 807, + [873] = 806, + [874] = 810, + [875] = 811, + [876] = 812, + [877] = 813, + [878] = 805, + [879] = 804, + [880] = 814, + [881] = 803, + [882] = 815, + [883] = 814, + [884] = 815, + [885] = 803, + [886] = 804, + [887] = 805, + [888] = 806, + [889] = 807, + [890] = 812, + [891] = 812, + [892] = 811, + [893] = 810, + [894] = 809, + [895] = 808, + [896] = 807, + [897] = 806, + [898] = 805, + [899] = 804, + [900] = 803, + [901] = 815, + [902] = 814, + [903] = 813, + [904] = 812, + [905] = 811, + [906] = 810, + [907] = 809, + [908] = 808, + [909] = 807, + [910] = 806, + [911] = 805, + [912] = 912, + [913] = 912, + [914] = 914, + [915] = 915, + [916] = 804, + [917] = 917, + [918] = 918, + [919] = 803, + [920] = 920, + [921] = 912, + [922] = 815, + [923] = 914, + [924] = 915, + [925] = 814, + [926] = 814, + [927] = 918, + [928] = 813, + [929] = 920, + [930] = 912, + [931] = 931, + [932] = 914, + [933] = 915, + [934] = 934, + [935] = 811, + [936] = 918, + [937] = 810, + [938] = 920, + [939] = 912, + [940] = 809, + [941] = 914, + [942] = 915, + [943] = 808, + [944] = 813, + [945] = 918, + [946] = 807, + [947] = 920, + [948] = 912, + [949] = 812, + [950] = 914, + [951] = 915, + [952] = 806, + [953] = 811, + [954] = 918, + [955] = 805, + [956] = 920, + [957] = 912, + [958] = 810, + [959] = 914, + [960] = 915, + [961] = 804, + [962] = 815, + [963] = 918, + [964] = 814, + [965] = 920, + [966] = 912, + [967] = 813, + [968] = 914, + [969] = 915, + [970] = 812, + [971] = 811, + [972] = 918, + [973] = 810, + [974] = 920, + [975] = 912, + [976] = 809, + [977] = 914, + [978] = 915, + [979] = 808, + [980] = 980, + [981] = 918, + [982] = 982, + [983] = 920, + [984] = 912, + [985] = 915, + [986] = 914, + [987] = 915, + [988] = 807, + [989] = 809, + [990] = 918, + [991] = 918, + [992] = 920, + [993] = 912, + [994] = 806, + [995] = 914, + [996] = 915, + [997] = 997, + [998] = 920, + [999] = 918, + [1000] = 805, + [1001] = 920, + [1002] = 1002, + [1003] = 1003, + [1004] = 1004, + [1005] = 804, + [1006] = 1006, + [1007] = 1007, + [1008] = 803, + [1009] = 808, + [1010] = 815, + [1011] = 914, + [1012] = 1002, + [1013] = 1002, + [1014] = 1002, + [1015] = 1002, + [1016] = 1002, + [1017] = 1002, + [1018] = 1002, + [1019] = 1002, + [1020] = 1002, + [1021] = 1002, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -1991,4609 +2132,5048 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(130); - if (lookahead == '\t') ADVANCE(299); - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(118) - if (lookahead == ' ') ADVANCE(145); - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(321); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '%') ADVANCE(268); - if (lookahead == '(') ADVANCE(261); - if (lookahead == ')') ADVANCE(264); - if (lookahead == '*') ADVANCE(149); - if (lookahead == '+') ADVANCE(312); - if (lookahead == '-') ADVANCE(232); - if (lookahead == '.') ADVANCE(317); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == '=') ADVANCE(320); - if (lookahead == '>') ADVANCE(198); - if (lookahead == 'F') ADVANCE(239); - if (lookahead == 'I') ADVANCE(241); - if (lookahead == 'N') ADVANCE(242); - if (lookahead == 'T') ADVANCE(243); - if (lookahead == 'W') ADVANCE(238); - if (lookahead == 'X') ADVANCE(250); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(156); - if (lookahead == ']') ADVANCE(259); - if (lookahead == '^') ADVANCE(215); - if (lookahead == '_') ADVANCE(140); - if (lookahead == '{') ADVANCE(132); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '}') ADVANCE(136); - if (lookahead == '~') ADVANCE(223); + if (eof) ADVANCE(145); + if (lookahead == '\t') ADVANCE(325); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(133) + if (lookahead == ' ') ADVANCE(165); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(347); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '%') ADVANCE(292); + if (lookahead == '(') ADVANCE(285); + if (lookahead == ')') ADVANCE(288); + if (lookahead == '*') ADVANCE(173); + if (lookahead == '+') ADVANCE(338); + if (lookahead == '-') ADVANCE(256); + if (lookahead == '.') ADVANCE(343); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == '=') ADVANCE(346); + if (lookahead == '>') ADVANCE(222); + if (lookahead == 'F') ADVANCE(263); + if (lookahead == 'I') ADVANCE(265); + if (lookahead == 'N') ADVANCE(266); + if (lookahead == 'T') ADVANCE(267); + if (lookahead == 'W') ADVANCE(262); + if (lookahead == 'X') ADVANCE(274); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(180); + if (lookahead == ']') ADVANCE(283); + if (lookahead == '^') ADVANCE(239); + if (lookahead == '_') ADVANCE(156); + if (lookahead == '{') ADVANCE(147); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '}') ADVANCE(151); + if (lookahead == '~') ADVANCE(247); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(301); + lookahead != '\f') ADVANCE(327); END_STATE(); case 1: - if (lookahead == '\t') ADVANCE(299); - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(18) - if (lookahead == ' ') ADVANCE(298); - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(149); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == ']') ADVANCE(230); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(134); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); + if (lookahead == '\t') ADVANCE(325); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(27) + if (lookahead == ' ') ADVANCE(323); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == ']') ADVANCE(254); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(155); + if (lookahead == '{') ADVANCE(149); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(301); + lookahead != '\f') ADVANCE(327); END_STATE(); case 2: - if (lookahead == '\t') ADVANCE(299); - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(31) - if (lookahead == ' ') ADVANCE(298); - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(149); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); + if (lookahead == '\t') ADVANCE(325); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(42) + if (lookahead == ' ') ADVANCE(324); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(173); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(154); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(301); + lookahead != '\f') ADVANCE(327); END_STATE(); case 3: - if (lookahead == '\t') ADVANCE(299); - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(31) - if (lookahead == ' ') ADVANCE(298); - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(149); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(134); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); + if (lookahead == '\t') ADVANCE(325); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(42) + if (lookahead == ' ') ADVANCE(324); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(173); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(154); + if (lookahead == '{') ADVANCE(149); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(301); + lookahead != '\f') ADVANCE(327); END_STATE(); case 4: - if (lookahead == '\t') ADVANCE(299); - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(31) - if (lookahead == ' ') ADVANCE(298); - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(149); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(133); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); + if (lookahead == '\t') ADVANCE(325); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(42) + if (lookahead == ' ') ADVANCE(324); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(173); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(154); + if (lookahead == '{') ADVANCE(148); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(301); + lookahead != '\f') ADVANCE(327); END_STATE(); case 5: - if (lookahead == '\t') ADVANCE(299); - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(36) - if (lookahead == ' ') ADVANCE(147); - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == '=') ADVANCE(313); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(134); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); + if (lookahead == '\t') ADVANCE(325); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(43) + if (lookahead == ' ') ADVANCE(324); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(173); + if (lookahead == '-') ADVANCE(257); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(263); + if (lookahead == 'I') ADVANCE(265); + if (lookahead == 'N') ADVANCE(266); + if (lookahead == 'T') ADVANCE(267); + if (lookahead == 'W') ADVANCE(262); + if (lookahead == 'X') ADVANCE(274); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(158); + if (lookahead == '{') ADVANCE(149); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(301); + lookahead != '\f') ADVANCE(327); END_STATE(); case 6: - if (lookahead == '\t') ADVANCE(299); - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(43) - if (lookahead == ' ') ADVANCE(147); - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '+') ADVANCE(312); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(134); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); + if (lookahead == '\t') ADVANCE(325); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(44) + if (lookahead == ' ') ADVANCE(171); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '+') ADVANCE(338); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(154); + if (lookahead == '{') ADVANCE(149); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(301); + lookahead != '\f') ADVANCE(327); END_STATE(); case 7: - if (lookahead == '\t') ADVANCE(299); - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(46) - if (lookahead == ' ') ADVANCE(298); - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(149); - if (lookahead == '-') ADVANCE(233); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(239); - if (lookahead == 'I') ADVANCE(241); - if (lookahead == 'N') ADVANCE(242); - if (lookahead == 'T') ADVANCE(243); - if (lookahead == 'W') ADVANCE(238); - if (lookahead == 'X') ADVANCE(250); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(140); - if (lookahead == '{') ADVANCE(134); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); + if (lookahead == '\t') ADVANCE(325); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(45) + if (lookahead == ' ') ADVANCE(171); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == '=') ADVANCE(339); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(154); + if (lookahead == '{') ADVANCE(149); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(301); + lookahead != '\f') ADVANCE(327); END_STATE(); case 8: - if (lookahead == '\t') ADVANCE(299); - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(47) - if (lookahead == ' ') ADVANCE(298); - if (lookahead == '!') ADVANCE(193); - if (lookahead == '"') ADVANCE(194); - if (lookahead == '$') ADVANCE(274); - if (lookahead == '\'') ADVANCE(194); - if (lookahead == '*') ADVANCE(150); - if (lookahead == '-') ADVANCE(172); - if (lookahead == '.') ADVANCE(174); - if (lookahead == ':') ADVANCE(175); - if (lookahead == '<') ADVANCE(170); - if (lookahead == '>') ADVANCE(301); - if (lookahead == 'F') ADVANCE(181); - if (lookahead == 'I') ADVANCE(183); - if (lookahead == 'N') ADVANCE(184); - if (lookahead == 'T') ADVANCE(185); - if (lookahead == 'W') ADVANCE(180); - if (lookahead == 'X') ADVANCE(192); - if (lookahead == '[') ADVANCE(258); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == '^') ADVANCE(217); - if (lookahead == '_') ADVANCE(141); - if (lookahead == '{') ADVANCE(135); - if (lookahead == '|') ADVANCE(294); - if (lookahead == '~') ADVANCE(225); + if (lookahead == '\t') ADVANCE(325); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(56) + if (lookahead == ' ') ADVANCE(323); + if (lookahead == '!') ADVANCE(217); + if (lookahead == '"') ADVANCE(218); + if (lookahead == '$') ADVANCE(298); + if (lookahead == '\'') ADVANCE(218); + if (lookahead == '*') ADVANCE(175); + if (lookahead == '-') ADVANCE(196); + if (lookahead == '.') ADVANCE(198); + if (lookahead == ':') ADVANCE(199); + if (lookahead == '<') ADVANCE(194); + if (lookahead == '>') ADVANCE(327); + if (lookahead == 'F') ADVANCE(205); + if (lookahead == 'I') ADVANCE(207); + if (lookahead == 'N') ADVANCE(208); + if (lookahead == 'T') ADVANCE(209); + if (lookahead == 'W') ADVANCE(204); + if (lookahead == 'X') ADVANCE(216); + if (lookahead == '[') ADVANCE(282); + if (lookahead == '\\') ADVANCE(179); + if (lookahead == '^') ADVANCE(241); + if (lookahead == '_') ADVANCE(157); + if (lookahead == '{') ADVANCE(150); + if (lookahead == '|') ADVANCE(318); + if (lookahead == '~') ADVANCE(249); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(197); + lookahead != '\f') ADVANCE(221); END_STATE(); case 9: - if (lookahead == '\t') ADVANCE(299); - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(63) - if (lookahead == ' ') ADVANCE(147); - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == ']') ADVANCE(230); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(134); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); + if (lookahead == '\t') ADVANCE(325); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(68) + if (lookahead == ' ') ADVANCE(324); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(173); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == ']') ADVANCE(254); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(154); + if (lookahead == '{') ADVANCE(149); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(301); + lookahead != '\f') ADVANCE(327); END_STATE(); case 10: - if (lookahead == '\t') ADVANCE(299); - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(64) - if (lookahead == ' ') ADVANCE(147); - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(134); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(223); + if (lookahead == '\t') ADVANCE(325); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(73) + if (lookahead == ' ') ADVANCE(323); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(155); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(301); + lookahead != '\f') ADVANCE(327); END_STATE(); case 11: - if (lookahead == '\t') ADVANCE(299); - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(75) - if (lookahead == ' ') ADVANCE(147); - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == ']') ADVANCE(259); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(134); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); + if (lookahead == '\t') ADVANCE(325); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(73) + if (lookahead == ' ') ADVANCE(323); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(155); + if (lookahead == '{') ADVANCE(149); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(301); + lookahead != '\f') ADVANCE(327); END_STATE(); case 12: - if (lookahead == '\t') ADVANCE(299); - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(75) - if (lookahead == ' ') ADVANCE(147); - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); + if (lookahead == '\t') ADVANCE(325); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(73) + if (lookahead == ' ') ADVANCE(323); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(155); + if (lookahead == '{') ADVANCE(148); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(301); + lookahead != '\f') ADVANCE(327); END_STATE(); case 13: - if (lookahead == '\t') ADVANCE(299); - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(86) - if (lookahead == ' ') ADVANCE(147); - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(303); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(134); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); + if (lookahead == '\t') ADVANCE(325); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(74) + if (lookahead == ' ') ADVANCE(323); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(257); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(263); + if (lookahead == 'I') ADVANCE(265); + if (lookahead == 'N') ADVANCE(266); + if (lookahead == 'T') ADVANCE(267); + if (lookahead == 'W') ADVANCE(262); + if (lookahead == 'X') ADVANCE(274); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(156); + if (lookahead == '{') ADVANCE(149); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(301); + lookahead != '\f') ADVANCE(327); END_STATE(); case 14: - if (lookahead == '\t') ADVANCE(299); - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(95) - if (lookahead == ' ') ADVANCE(145); - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(149); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(134); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); + if (lookahead == '\t') ADVANCE(325); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(77) + if (lookahead == ' ') ADVANCE(324); + if (lookahead == '!') ADVANCE(217); + if (lookahead == '"') ADVANCE(218); + if (lookahead == '$') ADVANCE(298); + if (lookahead == '\'') ADVANCE(218); + if (lookahead == '*') ADVANCE(174); + if (lookahead == '-') ADVANCE(196); + if (lookahead == '.') ADVANCE(198); + if (lookahead == ':') ADVANCE(199); + if (lookahead == '<') ADVANCE(194); + if (lookahead == '>') ADVANCE(327); + if (lookahead == 'F') ADVANCE(205); + if (lookahead == 'I') ADVANCE(207); + if (lookahead == 'N') ADVANCE(208); + if (lookahead == 'T') ADVANCE(209); + if (lookahead == 'W') ADVANCE(204); + if (lookahead == 'X') ADVANCE(216); + if (lookahead == '[') ADVANCE(282); + if (lookahead == '\\') ADVANCE(179); + if (lookahead == '^') ADVANCE(241); + if (lookahead == '_') ADVANCE(159); + if (lookahead == '{') ADVANCE(150); + if (lookahead == '|') ADVANCE(318); + if (lookahead == '~') ADVANCE(249); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(301); + lookahead != '\f') ADVANCE(221); END_STATE(); case 15: - if (lookahead == '\t') ADVANCE(299); - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(96) - if (lookahead == ' ') ADVANCE(147); - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(215); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(134); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); + if (lookahead == '\t') ADVANCE(325); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(84) + if (lookahead == ' ') ADVANCE(171); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == ']') ADVANCE(254); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(154); + if (lookahead == '{') ADVANCE(149); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(301); + lookahead != '\f') ADVANCE(327); END_STATE(); case 16: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(16) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(303); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == ']') ADVANCE(230); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); + if (lookahead == '\t') ADVANCE(325); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(89) + if (lookahead == ' ') ADVANCE(171); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(329); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(154); + if (lookahead == '{') ADVANCE(149); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(301); + lookahead != 11 && + lookahead != '\f') ADVANCE(327); END_STATE(); case 17: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(16) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(303); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == ']') ADVANCE(230); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(134); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); + if (lookahead == '\t') ADVANCE(325); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(100) + if (lookahead == ' ') ADVANCE(171); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(239); + if (lookahead == '_') ADVANCE(154); + if (lookahead == '{') ADVANCE(149); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(301); + lookahead != '\f') ADVANCE(327); END_STATE(); case 18: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(18) - if (lookahead == ' ') ADVANCE(101); - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(149); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == ']') ADVANCE(230); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); + if (lookahead == '\t') ADVANCE(325); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(105) + if (lookahead == ' ') ADVANCE(167); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(173); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(154); + if (lookahead == '{') ADVANCE(149); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(301); + lookahead != 11 && + lookahead != '\f') ADVANCE(327); END_STATE(); case 19: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(19) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == '=') ADVANCE(313); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == ']') ADVANCE(230); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); + if (lookahead == '\t') ADVANCE(325); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(106) + if (lookahead == ' ') ADVANCE(171); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == ']') ADVANCE(283); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(154); + if (lookahead == '{') ADVANCE(149); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(301); + lookahead != 11 && + lookahead != '\f') ADVANCE(327); END_STATE(); case 20: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(19) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == '=') ADVANCE(313); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == ']') ADVANCE(230); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(134); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); + if (lookahead == '\t') ADVANCE(325); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(106) + if (lookahead == ' ') ADVANCE(171); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(154); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(301); + lookahead != '\f') ADVANCE(327); END_STATE(); case 21: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(21) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '+') ADVANCE(312); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == ']') ADVANCE(230); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); + if (lookahead == '\t') ADVANCE(325); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(107) + if (lookahead == ' ') ADVANCE(171); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(154); + if (lookahead == '{') ADVANCE(149); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(247); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(301); + lookahead != 11 && + lookahead != '\f') ADVANCE(327); END_STATE(); case 22: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(21) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '+') ADVANCE(312); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == ']') ADVANCE(230); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(134); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); + if (lookahead == '\t') ADVANCE(325); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(108) + if (lookahead == ' ') ADVANCE(166); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(155); + if (lookahead == '{') ADVANCE(149); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(301); + lookahead != '\f') ADVANCE(327); END_STATE(); case 23: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(24) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '+') ADVANCE(312); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(23) + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(329); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == ']') ADVANCE(254); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(154); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(301); + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(327); END_STATE(); case 24: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(24) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '+') ADVANCE(312); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(23) + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(329); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == ']') ADVANCE(254); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(154); + if (lookahead == '{') ADVANCE(149); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(325); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(301); + lookahead != 11 && + lookahead != '\f') ADVANCE(327); END_STATE(); case 25: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(24) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '+') ADVANCE(312); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(134); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(25) + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '+') ADVANCE(338); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == ']') ADVANCE(254); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(154); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(301); + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(327); END_STATE(); case 26: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(24) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '+') ADVANCE(312); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(133); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(25) + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '+') ADVANCE(338); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == ']') ADVANCE(254); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(154); + if (lookahead == '{') ADVANCE(149); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); + lookahead == ' ') ADVANCE(325); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(301); + lookahead != '\f') ADVANCE(327); END_STATE(); case 27: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(28) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == '=') ADVANCE(313); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(27) + if (lookahead == ' ') ADVANCE(114); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == ']') ADVANCE(254); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(155); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(301); + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(327); END_STATE(); case 28: - if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(28) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == '=') ADVANCE(313); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == '=') ADVANCE(339); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == ']') ADVANCE(254); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(154); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); if (lookahead != 0 && (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(301); + lookahead != ' ') ADVANCE(327); END_STATE(); case 29: - if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(28) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == '=') ADVANCE(313); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(134); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == '=') ADVANCE(339); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == ']') ADVANCE(254); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(154); + if (lookahead == '{') ADVANCE(149); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); + lookahead == ' ') ADVANCE(325); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(301); + lookahead != '\f') ADVANCE(327); END_STATE(); case 30: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(28) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == '=') ADVANCE(313); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(133); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(33) + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == ']') ADVANCE(283); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(154); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); + lookahead == ' ') ADVANCE(325); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(301); + lookahead != '\f') ADVANCE(327); END_STATE(); case 31: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(31) - if (lookahead == ' ') ADVANCE(101); - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(149); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(33) + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == ']') ADVANCE(283); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(154); + if (lookahead == '{') ADVANCE(149); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(325); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(301); + lookahead != 11 && + lookahead != '\f') ADVANCE(327); END_STATE(); case 32: - if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(33) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(303); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == ']') ADVANCE(283); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(154); + if (lookahead == '{') ADVANCE(148); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); + lookahead == ' ') ADVANCE(325); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(301); + lookahead != '\f') ADVANCE(327); END_STATE(); case 33: - if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(33) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(303); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(154); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); if (lookahead != 0 && (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(301); + lookahead != ' ') ADVANCE(327); END_STATE(); case 34: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(33) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(303); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(134); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(35) + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '+') ADVANCE(338); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(154); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); + lookahead == ' ') ADVANCE(325); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(301); + lookahead != '\f') ADVANCE(327); END_STATE(); case 35: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(33) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(303); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(133); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(35) + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '+') ADVANCE(338); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(154); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(301); + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(327); END_STATE(); case 36: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(36) - if (lookahead == ' ') ADVANCE(144); - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == '=') ADVANCE(313); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(35) + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '+') ADVANCE(338); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(154); + if (lookahead == '{') ADVANCE(149); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(325); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(301); + lookahead != 11 && + lookahead != '\f') ADVANCE(327); END_STATE(); case 37: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(37) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(233); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == '=') ADVANCE(313); - if (lookahead == 'F') ADVANCE(239); - if (lookahead == 'I') ADVANCE(241); - if (lookahead == 'N') ADVANCE(242); - if (lookahead == 'T') ADVANCE(243); - if (lookahead == 'W') ADVANCE(238); - if (lookahead == 'X') ADVANCE(250); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(140); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(35) + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '+') ADVANCE(338); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(154); + if (lookahead == '{') ADVANCE(148); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(325); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(301); + lookahead != 11 && + lookahead != '\f') ADVANCE(327); END_STATE(); case 38: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(37) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(233); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == '=') ADVANCE(313); - if (lookahead == 'F') ADVANCE(239); - if (lookahead == 'I') ADVANCE(241); - if (lookahead == 'N') ADVANCE(242); - if (lookahead == 'T') ADVANCE(243); - if (lookahead == 'W') ADVANCE(238); - if (lookahead == 'X') ADVANCE(250); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(140); - if (lookahead == '{') ADVANCE(134); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(39) + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == '=') ADVANCE(339); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(154); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); + lookahead == ' ') ADVANCE(325); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(301); + lookahead != '\f') ADVANCE(327); END_STATE(); case 39: - if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(39) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(233); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(239); - if (lookahead == 'I') ADVANCE(241); - if (lookahead == 'N') ADVANCE(242); - if (lookahead == 'T') ADVANCE(243); - if (lookahead == 'W') ADVANCE(238); - if (lookahead == 'X') ADVANCE(250); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(140); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(223); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == '=') ADVANCE(339); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(154); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); if (lookahead != 0 && (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(301); + lookahead != ' ') ADVANCE(327); END_STATE(); case 40: - if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(39) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(233); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(239); - if (lookahead == 'I') ADVANCE(241); - if (lookahead == 'N') ADVANCE(242); - if (lookahead == 'T') ADVANCE(243); - if (lookahead == 'W') ADVANCE(238); - if (lookahead == 'X') ADVANCE(250); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(140); - if (lookahead == '{') ADVANCE(134); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(223); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == '=') ADVANCE(339); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(154); + if (lookahead == '{') ADVANCE(149); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); + lookahead == ' ') ADVANCE(325); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(301); + lookahead != '\f') ADVANCE(327); END_STATE(); case 41: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(41) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '+') ADVANCE(312); - if (lookahead == '-') ADVANCE(233); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(239); - if (lookahead == 'I') ADVANCE(241); - if (lookahead == 'N') ADVANCE(242); - if (lookahead == 'T') ADVANCE(243); - if (lookahead == 'W') ADVANCE(238); - if (lookahead == 'X') ADVANCE(250); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(140); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(39) + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == '=') ADVANCE(339); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(154); + if (lookahead == '{') ADVANCE(148); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(325); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(301); + lookahead != 11 && + lookahead != '\f') ADVANCE(327); END_STATE(); case 42: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(41) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '+') ADVANCE(312); - if (lookahead == '-') ADVANCE(233); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(239); - if (lookahead == 'I') ADVANCE(241); - if (lookahead == 'N') ADVANCE(242); - if (lookahead == 'T') ADVANCE(243); - if (lookahead == 'W') ADVANCE(238); - if (lookahead == 'X') ADVANCE(250); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(140); - if (lookahead == '{') ADVANCE(134); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(42) + if (lookahead == ' ') ADVANCE(115); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(173); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(154); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(301); + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(327); END_STATE(); case 43: - if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(43) - if (lookahead == ' ') ADVANCE(144); - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '+') ADVANCE(312); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); + if (lookahead == ' ') ADVANCE(115); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(173); + if (lookahead == '-') ADVANCE(257); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(263); + if (lookahead == 'I') ADVANCE(265); + if (lookahead == 'N') ADVANCE(266); + if (lookahead == 'T') ADVANCE(267); + if (lookahead == 'W') ADVANCE(262); + if (lookahead == 'X') ADVANCE(274); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(158); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(301); + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(327); END_STATE(); case 44: - if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(44) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(233); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(239); - if (lookahead == 'I') ADVANCE(241); - if (lookahead == 'N') ADVANCE(242); - if (lookahead == 'T') ADVANCE(243); - if (lookahead == 'W') ADVANCE(238); - if (lookahead == 'X') ADVANCE(250); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == ']') ADVANCE(230); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(140); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); + if (lookahead == ' ') ADVANCE(164); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '+') ADVANCE(338); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(154); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(301); + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(327); END_STATE(); case 45: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(44) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(233); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(239); - if (lookahead == 'I') ADVANCE(241); - if (lookahead == 'N') ADVANCE(242); - if (lookahead == 'T') ADVANCE(243); - if (lookahead == 'W') ADVANCE(238); - if (lookahead == 'X') ADVANCE(250); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == ']') ADVANCE(230); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(140); - if (lookahead == '{') ADVANCE(134); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(45) + if (lookahead == ' ') ADVANCE(164); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == '=') ADVANCE(339); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(154); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(301); + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(327); END_STATE(); case 46: - if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(46) - if (lookahead == ' ') ADVANCE(101); - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(149); - if (lookahead == '-') ADVANCE(233); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(239); - if (lookahead == 'I') ADVANCE(241); - if (lookahead == 'N') ADVANCE(242); - if (lookahead == 'T') ADVANCE(243); - if (lookahead == 'W') ADVANCE(238); - if (lookahead == 'X') ADVANCE(250); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(140); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(257); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == '=') ADVANCE(339); + if (lookahead == 'F') ADVANCE(263); + if (lookahead == 'I') ADVANCE(265); + if (lookahead == 'N') ADVANCE(266); + if (lookahead == 'T') ADVANCE(267); + if (lookahead == 'W') ADVANCE(262); + if (lookahead == 'X') ADVANCE(274); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(158); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(301); + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(327); END_STATE(); case 47: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(47) - if (lookahead == ' ') ADVANCE(101); - if (lookahead == '!') ADVANCE(193); - if (lookahead == '"') ADVANCE(194); - if (lookahead == '$') ADVANCE(274); - if (lookahead == '\'') ADVANCE(194); - if (lookahead == '*') ADVANCE(150); - if (lookahead == '-') ADVANCE(172); - if (lookahead == '.') ADVANCE(174); - if (lookahead == ':') ADVANCE(175); - if (lookahead == '<') ADVANCE(170); - if (lookahead == '>') ADVANCE(301); - if (lookahead == 'F') ADVANCE(181); - if (lookahead == 'I') ADVANCE(183); - if (lookahead == 'N') ADVANCE(184); - if (lookahead == 'T') ADVANCE(185); - if (lookahead == 'W') ADVANCE(180); - if (lookahead == 'X') ADVANCE(192); - if (lookahead == '[') ADVANCE(258); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == '^') ADVANCE(217); - if (lookahead == '_') ADVANCE(141); - if (lookahead == '{') ADVANCE(267); - if (lookahead == '|') ADVANCE(294); - if (lookahead == '~') ADVANCE(225); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(46) + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(257); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == '=') ADVANCE(339); + if (lookahead == 'F') ADVANCE(263); + if (lookahead == 'I') ADVANCE(265); + if (lookahead == 'N') ADVANCE(266); + if (lookahead == 'T') ADVANCE(267); + if (lookahead == 'W') ADVANCE(262); + if (lookahead == 'X') ADVANCE(274); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(158); + if (lookahead == '{') ADVANCE(149); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(325); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(197); + lookahead != 11 && + lookahead != '\f') ADVANCE(327); END_STATE(); case 48: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(49) - if (lookahead == '!') ADVANCE(193); - if (lookahead == '"') ADVANCE(194); - if (lookahead == '$') ADVANCE(274); - if (lookahead == '\'') ADVANCE(194); - if (lookahead == '*') ADVANCE(151); - if (lookahead == '-') ADVANCE(172); - if (lookahead == '.') ADVANCE(174); - if (lookahead == ':') ADVANCE(175); - if (lookahead == '<') ADVANCE(170); - if (lookahead == '>') ADVANCE(301); - if (lookahead == 'F') ADVANCE(181); - if (lookahead == 'I') ADVANCE(183); - if (lookahead == 'N') ADVANCE(184); - if (lookahead == 'T') ADVANCE(185); - if (lookahead == 'W') ADVANCE(180); - if (lookahead == 'X') ADVANCE(192); - if (lookahead == '[') ADVANCE(258); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == ']') ADVANCE(260); - if (lookahead == '^') ADVANCE(217); - if (lookahead == '_') ADVANCE(141); - if (lookahead == '{') ADVANCE(135); - if (lookahead == '|') ADVANCE(294); - if (lookahead == '~') ADVANCE(225); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(48) + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(257); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(263); + if (lookahead == 'I') ADVANCE(265); + if (lookahead == 'N') ADVANCE(266); + if (lookahead == 'T') ADVANCE(267); + if (lookahead == 'W') ADVANCE(262); + if (lookahead == 'X') ADVANCE(274); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == ']') ADVANCE(254); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(158); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(197); + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(327); END_STATE(); case 49: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(49) - if (lookahead == '!') ADVANCE(193); - if (lookahead == '"') ADVANCE(194); - if (lookahead == '$') ADVANCE(274); - if (lookahead == '\'') ADVANCE(194); - if (lookahead == '*') ADVANCE(151); - if (lookahead == '-') ADVANCE(172); - if (lookahead == '.') ADVANCE(174); - if (lookahead == ':') ADVANCE(175); - if (lookahead == '<') ADVANCE(170); - if (lookahead == '>') ADVANCE(301); - if (lookahead == 'F') ADVANCE(181); - if (lookahead == 'I') ADVANCE(183); - if (lookahead == 'N') ADVANCE(184); - if (lookahead == 'T') ADVANCE(185); - if (lookahead == 'W') ADVANCE(180); - if (lookahead == 'X') ADVANCE(192); - if (lookahead == '[') ADVANCE(258); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == '^') ADVANCE(217); - if (lookahead == '_') ADVANCE(141); - if (lookahead == '{') ADVANCE(267); - if (lookahead == '|') ADVANCE(294); - if (lookahead == '~') ADVANCE(225); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(48) + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(257); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(263); + if (lookahead == 'I') ADVANCE(265); + if (lookahead == 'N') ADVANCE(266); + if (lookahead == 'T') ADVANCE(267); + if (lookahead == 'W') ADVANCE(262); + if (lookahead == 'X') ADVANCE(274); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == ']') ADVANCE(254); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(158); + if (lookahead == '{') ADVANCE(149); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(325); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(197); + lookahead != 11 && + lookahead != '\f') ADVANCE(327); END_STATE(); case 50: - if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(51) - if (lookahead == '!') ADVANCE(193); - if (lookahead == '"') ADVANCE(194); - if (lookahead == '$') ADVANCE(274); - if (lookahead == '\'') ADVANCE(194); - if (lookahead == '*') ADVANCE(151); - if (lookahead == '-') ADVANCE(172); - if (lookahead == '.') ADVANCE(174); - if (lookahead == ':') ADVANCE(175); - if (lookahead == '<') ADVANCE(170); - if (lookahead == '=') ADVANCE(195); - if (lookahead == '>') ADVANCE(301); - if (lookahead == 'F') ADVANCE(181); - if (lookahead == 'I') ADVANCE(183); - if (lookahead == 'N') ADVANCE(184); - if (lookahead == 'T') ADVANCE(185); - if (lookahead == 'W') ADVANCE(180); - if (lookahead == 'X') ADVANCE(192); - if (lookahead == '[') ADVANCE(258); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == '^') ADVANCE(217); - if (lookahead == '_') ADVANCE(141); - if (lookahead == '{') ADVANCE(135); - if (lookahead == '|') ADVANCE(294); - if (lookahead == '~') ADVANCE(225); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(257); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(263); + if (lookahead == 'I') ADVANCE(265); + if (lookahead == 'N') ADVANCE(266); + if (lookahead == 'T') ADVANCE(267); + if (lookahead == 'W') ADVANCE(262); + if (lookahead == 'X') ADVANCE(274); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == ']') ADVANCE(283); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(158); + if (lookahead == '{') ADVANCE(149); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); + lookahead == ' ') ADVANCE(325); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(197); + lookahead != '\f') ADVANCE(327); END_STATE(); case 51: - if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(51) - if (lookahead == '!') ADVANCE(193); - if (lookahead == '"') ADVANCE(194); - if (lookahead == '$') ADVANCE(274); - if (lookahead == '\'') ADVANCE(194); - if (lookahead == '*') ADVANCE(151); - if (lookahead == '-') ADVANCE(172); - if (lookahead == '.') ADVANCE(174); - if (lookahead == ':') ADVANCE(175); - if (lookahead == '<') ADVANCE(170); - if (lookahead == '=') ADVANCE(195); - if (lookahead == '>') ADVANCE(301); - if (lookahead == 'F') ADVANCE(181); - if (lookahead == 'I') ADVANCE(183); - if (lookahead == 'N') ADVANCE(184); - if (lookahead == 'T') ADVANCE(185); - if (lookahead == 'W') ADVANCE(180); - if (lookahead == 'X') ADVANCE(192); - if (lookahead == '[') ADVANCE(258); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == '^') ADVANCE(217); - if (lookahead == '_') ADVANCE(141); - if (lookahead == '{') ADVANCE(267); - if (lookahead == '|') ADVANCE(294); - if (lookahead == '~') ADVANCE(225); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(257); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(263); + if (lookahead == 'I') ADVANCE(265); + if (lookahead == 'N') ADVANCE(266); + if (lookahead == 'T') ADVANCE(267); + if (lookahead == 'W') ADVANCE(262); + if (lookahead == 'X') ADVANCE(274); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(158); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); if (lookahead != 0 && (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(197); + lookahead != ' ') ADVANCE(327); END_STATE(); case 52: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(53) - if (lookahead == '!') ADVANCE(193); - if (lookahead == '"') ADVANCE(194); - if (lookahead == '$') ADVANCE(274); - if (lookahead == '\'') ADVANCE(194); - if (lookahead == '*') ADVANCE(151); - if (lookahead == '+') ADVANCE(196); - if (lookahead == '-') ADVANCE(172); - if (lookahead == '.') ADVANCE(174); - if (lookahead == ':') ADVANCE(175); - if (lookahead == '<') ADVANCE(170); - if (lookahead == '>') ADVANCE(301); - if (lookahead == 'F') ADVANCE(181); - if (lookahead == 'I') ADVANCE(183); - if (lookahead == 'N') ADVANCE(184); - if (lookahead == 'T') ADVANCE(185); - if (lookahead == 'W') ADVANCE(180); - if (lookahead == 'X') ADVANCE(192); - if (lookahead == '[') ADVANCE(258); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == '^') ADVANCE(217); - if (lookahead == '_') ADVANCE(141); - if (lookahead == '{') ADVANCE(135); - if (lookahead == '|') ADVANCE(294); - if (lookahead == '~') ADVANCE(225); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(52) + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '+') ADVANCE(338); + if (lookahead == '-') ADVANCE(257); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(263); + if (lookahead == 'I') ADVANCE(265); + if (lookahead == 'N') ADVANCE(266); + if (lookahead == 'T') ADVANCE(267); + if (lookahead == 'W') ADVANCE(262); + if (lookahead == 'X') ADVANCE(274); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(158); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(197); + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(327); END_STATE(); case 53: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(53) - if (lookahead == '!') ADVANCE(193); - if (lookahead == '"') ADVANCE(194); - if (lookahead == '$') ADVANCE(274); - if (lookahead == '\'') ADVANCE(194); - if (lookahead == '*') ADVANCE(151); - if (lookahead == '+') ADVANCE(196); - if (lookahead == '-') ADVANCE(172); - if (lookahead == '.') ADVANCE(174); - if (lookahead == ':') ADVANCE(175); - if (lookahead == '<') ADVANCE(170); - if (lookahead == '>') ADVANCE(301); - if (lookahead == 'F') ADVANCE(181); - if (lookahead == 'I') ADVANCE(183); - if (lookahead == 'N') ADVANCE(184); - if (lookahead == 'T') ADVANCE(185); - if (lookahead == 'W') ADVANCE(180); - if (lookahead == 'X') ADVANCE(192); - if (lookahead == '[') ADVANCE(258); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == '^') ADVANCE(217); - if (lookahead == '_') ADVANCE(141); - if (lookahead == '{') ADVANCE(267); - if (lookahead == '|') ADVANCE(294); - if (lookahead == '~') ADVANCE(225); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(52) + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '+') ADVANCE(338); + if (lookahead == '-') ADVANCE(257); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(263); + if (lookahead == 'I') ADVANCE(265); + if (lookahead == 'N') ADVANCE(266); + if (lookahead == 'T') ADVANCE(267); + if (lookahead == 'W') ADVANCE(262); + if (lookahead == 'X') ADVANCE(274); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(158); + if (lookahead == '{') ADVANCE(149); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(325); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(197); + lookahead != 11 && + lookahead != '\f') ADVANCE(327); END_STATE(); case 54: - if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(55) - if (lookahead == '!') ADVANCE(193); - if (lookahead == '"') ADVANCE(194); - if (lookahead == '$') ADVANCE(274); - if (lookahead == '\'') ADVANCE(194); - if (lookahead == '*') ADVANCE(151); - if (lookahead == '-') ADVANCE(172); - if (lookahead == '.') ADVANCE(174); - if (lookahead == ':') ADVANCE(175); - if (lookahead == '<') ADVANCE(170); - if (lookahead == '>') ADVANCE(301); - if (lookahead == 'F') ADVANCE(181); - if (lookahead == 'I') ADVANCE(183); - if (lookahead == 'N') ADVANCE(184); - if (lookahead == 'T') ADVANCE(185); - if (lookahead == 'W') ADVANCE(180); - if (lookahead == 'X') ADVANCE(192); - if (lookahead == '[') ADVANCE(258); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == ']') ADVANCE(231); - if (lookahead == '^') ADVANCE(217); - if (lookahead == '_') ADVANCE(141); - if (lookahead == '{') ADVANCE(135); - if (lookahead == '|') ADVANCE(294); - if (lookahead == '~') ADVANCE(225); + if (lookahead == '!') ADVANCE(217); + if (lookahead == '"') ADVANCE(218); + if (lookahead == '$') ADVANCE(298); + if (lookahead == '\'') ADVANCE(218); + if (lookahead == '*') ADVANCE(175); + if (lookahead == '+') ADVANCE(219); + if (lookahead == '-') ADVANCE(196); + if (lookahead == '.') ADVANCE(198); + if (lookahead == ':') ADVANCE(199); + if (lookahead == '<') ADVANCE(194); + if (lookahead == '>') ADVANCE(327); + if (lookahead == 'F') ADVANCE(205); + if (lookahead == 'I') ADVANCE(207); + if (lookahead == 'N') ADVANCE(208); + if (lookahead == 'T') ADVANCE(209); + if (lookahead == 'W') ADVANCE(204); + if (lookahead == 'X') ADVANCE(216); + if (lookahead == '[') ADVANCE(282); + if (lookahead == '\\') ADVANCE(179); + if (lookahead == '^') ADVANCE(241); + if (lookahead == '_') ADVANCE(159); + if (lookahead == '{') ADVANCE(150); + if (lookahead == '|') ADVANCE(318); + if (lookahead == '~') ADVANCE(249); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); + lookahead == ' ') ADVANCE(325); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(197); + lookahead != '\f') ADVANCE(221); END_STATE(); case 55: - if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(55) - if (lookahead == '!') ADVANCE(193); - if (lookahead == '"') ADVANCE(194); - if (lookahead == '$') ADVANCE(274); - if (lookahead == '\'') ADVANCE(194); - if (lookahead == '*') ADVANCE(151); - if (lookahead == '-') ADVANCE(172); - if (lookahead == '.') ADVANCE(174); - if (lookahead == ':') ADVANCE(175); - if (lookahead == '<') ADVANCE(170); - if (lookahead == '>') ADVANCE(301); - if (lookahead == 'F') ADVANCE(181); - if (lookahead == 'I') ADVANCE(183); - if (lookahead == 'N') ADVANCE(184); - if (lookahead == 'T') ADVANCE(185); - if (lookahead == 'W') ADVANCE(180); - if (lookahead == 'X') ADVANCE(192); - if (lookahead == '[') ADVANCE(258); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == ']') ADVANCE(231); - if (lookahead == '^') ADVANCE(217); - if (lookahead == '_') ADVANCE(141); - if (lookahead == '{') ADVANCE(267); - if (lookahead == '|') ADVANCE(294); - if (lookahead == '~') ADVANCE(225); + if (lookahead == '!') ADVANCE(217); + if (lookahead == '"') ADVANCE(218); + if (lookahead == '$') ADVANCE(298); + if (lookahead == '\'') ADVANCE(218); + if (lookahead == '*') ADVANCE(175); + if (lookahead == '+') ADVANCE(219); + if (lookahead == '-') ADVANCE(196); + if (lookahead == '.') ADVANCE(198); + if (lookahead == ':') ADVANCE(199); + if (lookahead == '<') ADVANCE(194); + if (lookahead == '>') ADVANCE(327); + if (lookahead == 'F') ADVANCE(205); + if (lookahead == 'I') ADVANCE(207); + if (lookahead == 'N') ADVANCE(208); + if (lookahead == 'T') ADVANCE(209); + if (lookahead == 'W') ADVANCE(204); + if (lookahead == 'X') ADVANCE(216); + if (lookahead == '[') ADVANCE(282); + if (lookahead == '\\') ADVANCE(179); + if (lookahead == '^') ADVANCE(241); + if (lookahead == '_') ADVANCE(159); + if (lookahead == '{') ADVANCE(291); + if (lookahead == '|') ADVANCE(318); + if (lookahead == '~') ADVANCE(249); if (lookahead != 0 && (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(197); + lookahead != ' ') ADVANCE(221); END_STATE(); case 56: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(57) - if (lookahead == '"') ADVANCE(321); - if (lookahead == '#') ADVANCE(116); - if (lookahead == '%') ADVANCE(268); - if (lookahead == '(') ADVANCE(261); - if (lookahead == ')') ADVANCE(264); - if (lookahead == '.') ADVANCE(316); - if (lookahead == '=') ADVANCE(319); - if (lookahead == '>') ADVANCE(198); - if (lookahead == '[') ADVANCE(256); - if (lookahead == '{') ADVANCE(131); - if (lookahead == '}') ADVANCE(136); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(56) + if (lookahead == ' ') ADVANCE(114); + if (lookahead == '!') ADVANCE(217); + if (lookahead == '"') ADVANCE(218); + if (lookahead == '$') ADVANCE(298); + if (lookahead == '\'') ADVANCE(218); + if (lookahead == '*') ADVANCE(175); + if (lookahead == '-') ADVANCE(196); + if (lookahead == '.') ADVANCE(198); + if (lookahead == ':') ADVANCE(199); + if (lookahead == '<') ADVANCE(194); + if (lookahead == '>') ADVANCE(327); + if (lookahead == 'F') ADVANCE(205); + if (lookahead == 'I') ADVANCE(207); + if (lookahead == 'N') ADVANCE(208); + if (lookahead == 'T') ADVANCE(209); + if (lookahead == 'W') ADVANCE(204); + if (lookahead == 'X') ADVANCE(216); + if (lookahead == '[') ADVANCE(282); + if (lookahead == '\\') ADVANCE(179); + if (lookahead == '^') ADVANCE(241); + if (lookahead == '_') ADVANCE(157); + if (lookahead == '{') ADVANCE(291); + if (lookahead == '|') ADVANCE(318); + if (lookahead == '~') ADVANCE(249); + if (lookahead != 0 && + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(221); END_STATE(); case 57: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(57) - if (lookahead == '"') ADVANCE(321); - if (lookahead == '#') ADVANCE(116); - if (lookahead == '%') ADVANCE(268); - if (lookahead == '(') ADVANCE(261); - if (lookahead == ')') ADVANCE(264); - if (lookahead == '.') ADVANCE(316); - if (lookahead == '=') ADVANCE(319); - if (lookahead == '>') ADVANCE(198); - if (lookahead == '[') ADVANCE(255); - if (lookahead == '}') ADVANCE(136); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(58) + if (lookahead == '!') ADVANCE(217); + if (lookahead == '"') ADVANCE(218); + if (lookahead == '$') ADVANCE(298); + if (lookahead == '\'') ADVANCE(218); + if (lookahead == '*') ADVANCE(175); + if (lookahead == '-') ADVANCE(196); + if (lookahead == '.') ADVANCE(198); + if (lookahead == ':') ADVANCE(199); + if (lookahead == '<') ADVANCE(194); + if (lookahead == '>') ADVANCE(327); + if (lookahead == 'F') ADVANCE(205); + if (lookahead == 'I') ADVANCE(207); + if (lookahead == 'N') ADVANCE(208); + if (lookahead == 'T') ADVANCE(209); + if (lookahead == 'W') ADVANCE(204); + if (lookahead == 'X') ADVANCE(216); + if (lookahead == '[') ADVANCE(282); + if (lookahead == '\\') ADVANCE(179); + if (lookahead == '^') ADVANCE(241); + if (lookahead == '_') ADVANCE(159); + if (lookahead == '{') ADVANCE(150); + if (lookahead == '|') ADVANCE(318); + if (lookahead == '~') ADVANCE(248); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(325); + if (lookahead != 0 && + lookahead != 11 && + lookahead != '\f') ADVANCE(221); END_STATE(); case 58: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') ADVANCE(270); - if (lookahead == '%') ADVANCE(268); - if (lookahead == '\\') ADVANCE(271); - if (lookahead != 0) ADVANCE(269); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(58) + if (lookahead == '!') ADVANCE(217); + if (lookahead == '"') ADVANCE(218); + if (lookahead == '$') ADVANCE(298); + if (lookahead == '\'') ADVANCE(218); + if (lookahead == '*') ADVANCE(175); + if (lookahead == '-') ADVANCE(196); + if (lookahead == '.') ADVANCE(198); + if (lookahead == ':') ADVANCE(199); + if (lookahead == '<') ADVANCE(194); + if (lookahead == '>') ADVANCE(327); + if (lookahead == 'F') ADVANCE(205); + if (lookahead == 'I') ADVANCE(207); + if (lookahead == 'N') ADVANCE(208); + if (lookahead == 'T') ADVANCE(209); + if (lookahead == 'W') ADVANCE(204); + if (lookahead == 'X') ADVANCE(216); + if (lookahead == '[') ADVANCE(282); + if (lookahead == '\\') ADVANCE(179); + if (lookahead == '^') ADVANCE(241); + if (lookahead == '_') ADVANCE(159); + if (lookahead == '{') ADVANCE(291); + if (lookahead == '|') ADVANCE(318); + if (lookahead == '~') ADVANCE(248); + if (lookahead != 0 && + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(221); END_STATE(); case 59: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(61) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == ']') ADVANCE(259); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(134); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(60) + if (lookahead == '!') ADVANCE(217); + if (lookahead == '"') ADVANCE(218); + if (lookahead == '$') ADVANCE(298); + if (lookahead == '\'') ADVANCE(218); + if (lookahead == '*') ADVANCE(175); + if (lookahead == '-') ADVANCE(196); + if (lookahead == '.') ADVANCE(198); + if (lookahead == ':') ADVANCE(199); + if (lookahead == '<') ADVANCE(194); + if (lookahead == '>') ADVANCE(327); + if (lookahead == 'F') ADVANCE(205); + if (lookahead == 'I') ADVANCE(207); + if (lookahead == 'N') ADVANCE(208); + if (lookahead == 'T') ADVANCE(209); + if (lookahead == 'W') ADVANCE(204); + if (lookahead == 'X') ADVANCE(216); + if (lookahead == '[') ADVANCE(282); + if (lookahead == '\\') ADVANCE(179); + if (lookahead == ']') ADVANCE(255); + if (lookahead == '^') ADVANCE(241); + if (lookahead == '_') ADVANCE(159); + if (lookahead == '{') ADVANCE(150); + if (lookahead == '|') ADVANCE(318); + if (lookahead == '~') ADVANCE(249); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); + lookahead == ' ') ADVANCE(325); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(301); + lookahead != '\f') ADVANCE(221); END_STATE(); case 60: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(61) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == ']') ADVANCE(230); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(60) + if (lookahead == '!') ADVANCE(217); + if (lookahead == '"') ADVANCE(218); + if (lookahead == '$') ADVANCE(298); + if (lookahead == '\'') ADVANCE(218); + if (lookahead == '*') ADVANCE(175); + if (lookahead == '-') ADVANCE(196); + if (lookahead == '.') ADVANCE(198); + if (lookahead == ':') ADVANCE(199); + if (lookahead == '<') ADVANCE(194); + if (lookahead == '>') ADVANCE(327); + if (lookahead == 'F') ADVANCE(205); + if (lookahead == 'I') ADVANCE(207); + if (lookahead == 'N') ADVANCE(208); + if (lookahead == 'T') ADVANCE(209); + if (lookahead == 'W') ADVANCE(204); + if (lookahead == 'X') ADVANCE(216); + if (lookahead == '[') ADVANCE(282); + if (lookahead == '\\') ADVANCE(179); + if (lookahead == ']') ADVANCE(255); + if (lookahead == '^') ADVANCE(241); + if (lookahead == '_') ADVANCE(159); + if (lookahead == '{') ADVANCE(291); + if (lookahead == '|') ADVANCE(318); + if (lookahead == '~') ADVANCE(249); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(301); + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(221); END_STATE(); case 61: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(61) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == ']') ADVANCE(230); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(62) + if (lookahead == '!') ADVANCE(217); + if (lookahead == '"') ADVANCE(218); + if (lookahead == '$') ADVANCE(298); + if (lookahead == '\'') ADVANCE(218); + if (lookahead == '*') ADVANCE(175); + if (lookahead == '-') ADVANCE(196); + if (lookahead == '.') ADVANCE(198); + if (lookahead == ':') ADVANCE(199); + if (lookahead == '<') ADVANCE(194); + if (lookahead == '=') ADVANCE(220); + if (lookahead == '>') ADVANCE(327); + if (lookahead == 'F') ADVANCE(205); + if (lookahead == 'I') ADVANCE(207); + if (lookahead == 'N') ADVANCE(208); + if (lookahead == 'T') ADVANCE(209); + if (lookahead == 'W') ADVANCE(204); + if (lookahead == 'X') ADVANCE(216); + if (lookahead == '[') ADVANCE(282); + if (lookahead == '\\') ADVANCE(179); + if (lookahead == '^') ADVANCE(241); + if (lookahead == '_') ADVANCE(159); + if (lookahead == '{') ADVANCE(150); + if (lookahead == '|') ADVANCE(318); + if (lookahead == '~') ADVANCE(249); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(325); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(301); + lookahead != 11 && + lookahead != '\f') ADVANCE(221); END_STATE(); case 62: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(61) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == ']') ADVANCE(230); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(133); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(62) + if (lookahead == '!') ADVANCE(217); + if (lookahead == '"') ADVANCE(218); + if (lookahead == '$') ADVANCE(298); + if (lookahead == '\'') ADVANCE(218); + if (lookahead == '*') ADVANCE(175); + if (lookahead == '-') ADVANCE(196); + if (lookahead == '.') ADVANCE(198); + if (lookahead == ':') ADVANCE(199); + if (lookahead == '<') ADVANCE(194); + if (lookahead == '=') ADVANCE(220); + if (lookahead == '>') ADVANCE(327); + if (lookahead == 'F') ADVANCE(205); + if (lookahead == 'I') ADVANCE(207); + if (lookahead == 'N') ADVANCE(208); + if (lookahead == 'T') ADVANCE(209); + if (lookahead == 'W') ADVANCE(204); + if (lookahead == 'X') ADVANCE(216); + if (lookahead == '[') ADVANCE(282); + if (lookahead == '\\') ADVANCE(179); + if (lookahead == '^') ADVANCE(241); + if (lookahead == '_') ADVANCE(159); + if (lookahead == '{') ADVANCE(291); + if (lookahead == '|') ADVANCE(318); + if (lookahead == '~') ADVANCE(249); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(301); + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(221); END_STATE(); case 63: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(63) - if (lookahead == ' ') ADVANCE(144); - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == ']') ADVANCE(230); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(301); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(64) + if (lookahead == '"') ADVANCE(347); + if (lookahead == '#') ADVANCE(131); + if (lookahead == '%') ADVANCE(292); + if (lookahead == '(') ADVANCE(285); + if (lookahead == ')') ADVANCE(288); + if (lookahead == '.') ADVANCE(342); + if (lookahead == '=') ADVANCE(345); + if (lookahead == '>') ADVANCE(222); + if (lookahead == '[') ADVANCE(280); + if (lookahead == '{') ADVANCE(146); + if (lookahead == '}') ADVANCE(151); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(325); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); END_STATE(); case 64: - if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(64) - if (lookahead == ' ') ADVANCE(144); - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(223); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(301); + if (lookahead == '"') ADVANCE(347); + if (lookahead == '#') ADVANCE(131); + if (lookahead == '%') ADVANCE(292); + if (lookahead == '(') ADVANCE(285); + if (lookahead == ')') ADVANCE(288); + if (lookahead == '.') ADVANCE(342); + if (lookahead == '=') ADVANCE(345); + if (lookahead == '>') ADVANCE(222); + if (lookahead == '[') ADVANCE(279); + if (lookahead == '}') ADVANCE(151); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); END_STATE(); case 65: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(66) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(215); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); - if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(301); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') ADVANCE(294); + if (lookahead == '%') ADVANCE(292); + if (lookahead == '\\') ADVANCE(295); + if (lookahead != 0) ADVANCE(293); END_STATE(); case 66: - if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(66) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(215); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == ']') ADVANCE(254); + if (lookahead == '^') ADVANCE(239); + if (lookahead == '_') ADVANCE(154); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); if (lookahead != 0 && (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(301); + lookahead != ' ') ADVANCE(327); END_STATE(); case 67: - if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(66) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(215); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(134); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == ']') ADVANCE(254); + if (lookahead == '^') ADVANCE(239); + if (lookahead == '_') ADVANCE(154); + if (lookahead == '{') ADVANCE(149); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); + lookahead == ' ') ADVANCE(325); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(301); + lookahead != '\f') ADVANCE(327); END_STATE(); case 68: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(66) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(215); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(133); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(68) + if (lookahead == ' ') ADVANCE(115); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(173); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == ']') ADVANCE(254); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(154); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(301); + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(327); END_STATE(); case 69: - if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(70) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(233); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(239); - if (lookahead == 'I') ADVANCE(241); - if (lookahead == 'N') ADVANCE(242); - if (lookahead == 'T') ADVANCE(243); - if (lookahead == 'W') ADVANCE(238); - if (lookahead == 'X') ADVANCE(250); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == ']') ADVANCE(259); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(140); - if (lookahead == '{') ADVANCE(134); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(239); + if (lookahead == '_') ADVANCE(154); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); + lookahead == ' ') ADVANCE(325); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(301); + lookahead != '\f') ADVANCE(327); END_STATE(); case 70: - if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(70) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(233); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(239); - if (lookahead == 'I') ADVANCE(241); - if (lookahead == 'N') ADVANCE(242); - if (lookahead == 'T') ADVANCE(243); - if (lookahead == 'W') ADVANCE(238); - if (lookahead == 'X') ADVANCE(250); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(140); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(239); + if (lookahead == '_') ADVANCE(154); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); if (lookahead != 0 && (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(301); + lookahead != ' ') ADVANCE(327); END_STATE(); case 71: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(72) - if (lookahead == '!') ADVANCE(193); - if (lookahead == '"') ADVANCE(194); - if (lookahead == '$') ADVANCE(274); - if (lookahead == '\'') ADVANCE(194); - if (lookahead == '*') ADVANCE(151); - if (lookahead == '-') ADVANCE(172); - if (lookahead == '.') ADVANCE(174); - if (lookahead == ':') ADVANCE(175); - if (lookahead == '<') ADVANCE(170); - if (lookahead == '>') ADVANCE(301); - if (lookahead == 'F') ADVANCE(181); - if (lookahead == 'I') ADVANCE(183); - if (lookahead == 'N') ADVANCE(184); - if (lookahead == 'T') ADVANCE(185); - if (lookahead == 'W') ADVANCE(180); - if (lookahead == 'X') ADVANCE(192); - if (lookahead == '[') ADVANCE(258); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == '^') ADVANCE(216); - if (lookahead == '_') ADVANCE(141); - if (lookahead == '{') ADVANCE(135); - if (lookahead == '|') ADVANCE(294); - if (lookahead == '~') ADVANCE(225); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(70) + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(239); + if (lookahead == '_') ADVANCE(154); + if (lookahead == '{') ADVANCE(149); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); + lookahead == ' ') ADVANCE(325); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(197); + lookahead != '\f') ADVANCE(327); END_STATE(); case 72: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(72) - if (lookahead == '!') ADVANCE(193); - if (lookahead == '"') ADVANCE(194); - if (lookahead == '$') ADVANCE(274); - if (lookahead == '\'') ADVANCE(194); - if (lookahead == '*') ADVANCE(151); - if (lookahead == '-') ADVANCE(172); - if (lookahead == '.') ADVANCE(174); - if (lookahead == ':') ADVANCE(175); - if (lookahead == '<') ADVANCE(170); - if (lookahead == '>') ADVANCE(301); - if (lookahead == 'F') ADVANCE(181); - if (lookahead == 'I') ADVANCE(183); - if (lookahead == 'N') ADVANCE(184); - if (lookahead == 'T') ADVANCE(185); - if (lookahead == 'W') ADVANCE(180); - if (lookahead == 'X') ADVANCE(192); - if (lookahead == '[') ADVANCE(258); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == '^') ADVANCE(216); - if (lookahead == '_') ADVANCE(141); - if (lookahead == '{') ADVANCE(267); - if (lookahead == '|') ADVANCE(294); - if (lookahead == '~') ADVANCE(225); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(70) + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(239); + if (lookahead == '_') ADVANCE(154); + if (lookahead == '{') ADVANCE(148); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(325); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(197); + lookahead != 11 && + lookahead != '\f') ADVANCE(327); END_STATE(); case 73: - if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(73) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == ']') ADVANCE(230); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(223); + if (lookahead == ' ') ADVANCE(114); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(155); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(301); + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(327); END_STATE(); case 74: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(73) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == ']') ADVANCE(230); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(134); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(223); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(74) + if (lookahead == ' ') ADVANCE(114); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(257); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(263); + if (lookahead == 'I') ADVANCE(265); + if (lookahead == 'N') ADVANCE(266); + if (lookahead == 'T') ADVANCE(267); + if (lookahead == 'W') ADVANCE(262); + if (lookahead == 'X') ADVANCE(274); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(156); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(301); + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(327); END_STATE(); case 75: - if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(75) - if (lookahead == ' ') ADVANCE(144); - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(256); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(263); + if (lookahead == 'I') ADVANCE(265); + if (lookahead == 'N') ADVANCE(266); + if (lookahead == 'T') ADVANCE(267); + if (lookahead == 'W') ADVANCE(262); + if (lookahead == 'X') ADVANCE(274); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(158); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(301); + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(327); END_STATE(); case 76: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(77) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(223); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(75) + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(256); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(263); + if (lookahead == 'I') ADVANCE(265); + if (lookahead == 'N') ADVANCE(266); + if (lookahead == 'T') ADVANCE(267); + if (lookahead == 'W') ADVANCE(262); + if (lookahead == 'X') ADVANCE(274); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(158); + if (lookahead == '{') ADVANCE(149); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); + lookahead == ' ') ADVANCE(325); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(301); + lookahead != '\f') ADVANCE(327); END_STATE(); case 77: - if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(77) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(223); + if (lookahead == ' ') ADVANCE(115); + if (lookahead == '!') ADVANCE(217); + if (lookahead == '"') ADVANCE(218); + if (lookahead == '$') ADVANCE(298); + if (lookahead == '\'') ADVANCE(218); + if (lookahead == '*') ADVANCE(174); + if (lookahead == '-') ADVANCE(196); + if (lookahead == '.') ADVANCE(198); + if (lookahead == ':') ADVANCE(199); + if (lookahead == '<') ADVANCE(194); + if (lookahead == '>') ADVANCE(327); + if (lookahead == 'F') ADVANCE(205); + if (lookahead == 'I') ADVANCE(207); + if (lookahead == 'N') ADVANCE(208); + if (lookahead == 'T') ADVANCE(209); + if (lookahead == 'W') ADVANCE(204); + if (lookahead == 'X') ADVANCE(216); + if (lookahead == '[') ADVANCE(282); + if (lookahead == '\\') ADVANCE(179); + if (lookahead == '^') ADVANCE(241); + if (lookahead == '_') ADVANCE(159); + if (lookahead == '{') ADVANCE(291); + if (lookahead == '|') ADVANCE(318); + if (lookahead == '~') ADVANCE(249); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(301); + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(221); END_STATE(); case 78: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(77) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(134); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(223); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(79) + if (lookahead == '!') ADVANCE(217); + if (lookahead == '"') ADVANCE(218); + if (lookahead == '$') ADVANCE(298); + if (lookahead == '\'') ADVANCE(218); + if (lookahead == '*') ADVANCE(175); + if (lookahead == '-') ADVANCE(196); + if (lookahead == '.') ADVANCE(198); + if (lookahead == ':') ADVANCE(199); + if (lookahead == '<') ADVANCE(194); + if (lookahead == '>') ADVANCE(327); + if (lookahead == 'F') ADVANCE(205); + if (lookahead == 'I') ADVANCE(207); + if (lookahead == 'N') ADVANCE(208); + if (lookahead == 'T') ADVANCE(209); + if (lookahead == 'W') ADVANCE(204); + if (lookahead == 'X') ADVANCE(216); + if (lookahead == '[') ADVANCE(282); + if (lookahead == '\\') ADVANCE(179); + if (lookahead == ']') ADVANCE(284); + if (lookahead == '^') ADVANCE(241); + if (lookahead == '_') ADVANCE(159); + if (lookahead == '{') ADVANCE(150); + if (lookahead == '|') ADVANCE(318); + if (lookahead == '~') ADVANCE(249); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); + lookahead == ' ') ADVANCE(325); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(301); + lookahead != '\f') ADVANCE(221); END_STATE(); case 79: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(77) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(133); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(223); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(79) + if (lookahead == '!') ADVANCE(217); + if (lookahead == '"') ADVANCE(218); + if (lookahead == '$') ADVANCE(298); + if (lookahead == '\'') ADVANCE(218); + if (lookahead == '*') ADVANCE(175); + if (lookahead == '-') ADVANCE(196); + if (lookahead == '.') ADVANCE(198); + if (lookahead == ':') ADVANCE(199); + if (lookahead == '<') ADVANCE(194); + if (lookahead == '>') ADVANCE(327); + if (lookahead == 'F') ADVANCE(205); + if (lookahead == 'I') ADVANCE(207); + if (lookahead == 'N') ADVANCE(208); + if (lookahead == 'T') ADVANCE(209); + if (lookahead == 'W') ADVANCE(204); + if (lookahead == 'X') ADVANCE(216); + if (lookahead == '[') ADVANCE(282); + if (lookahead == '\\') ADVANCE(179); + if (lookahead == '^') ADVANCE(241); + if (lookahead == '_') ADVANCE(159); + if (lookahead == '{') ADVANCE(291); + if (lookahead == '|') ADVANCE(318); + if (lookahead == '~') ADVANCE(249); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(301); + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(221); END_STATE(); case 80: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(80) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(232); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(239); - if (lookahead == 'I') ADVANCE(241); - if (lookahead == 'N') ADVANCE(242); - if (lookahead == 'T') ADVANCE(243); - if (lookahead == 'W') ADVANCE(238); - if (lookahead == 'X') ADVANCE(250); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(140); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(82) + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == ']') ADVANCE(283); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(154); + if (lookahead == '{') ADVANCE(149); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(325); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(301); + lookahead != 11 && + lookahead != '\f') ADVANCE(327); END_STATE(); case 81: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(80) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(232); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(239); - if (lookahead == 'I') ADVANCE(241); - if (lookahead == 'N') ADVANCE(242); - if (lookahead == 'T') ADVANCE(243); - if (lookahead == 'W') ADVANCE(238); - if (lookahead == 'X') ADVANCE(250); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(140); - if (lookahead == '{') ADVANCE(134); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(82) + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == ']') ADVANCE(254); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(154); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); + lookahead == ' ') ADVANCE(325); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(301); + lookahead != '\f') ADVANCE(327); END_STATE(); case 82: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(83) - if (lookahead == '!') ADVANCE(193); - if (lookahead == '"') ADVANCE(194); - if (lookahead == '$') ADVANCE(274); - if (lookahead == '\'') ADVANCE(194); - if (lookahead == '*') ADVANCE(151); - if (lookahead == '-') ADVANCE(172); - if (lookahead == '.') ADVANCE(174); - if (lookahead == ':') ADVANCE(175); - if (lookahead == '<') ADVANCE(170); - if (lookahead == '>') ADVANCE(301); - if (lookahead == 'F') ADVANCE(181); - if (lookahead == 'I') ADVANCE(183); - if (lookahead == 'N') ADVANCE(184); - if (lookahead == 'T') ADVANCE(185); - if (lookahead == 'W') ADVANCE(180); - if (lookahead == 'X') ADVANCE(192); - if (lookahead == '[') ADVANCE(258); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == '^') ADVANCE(217); - if (lookahead == '_') ADVANCE(141); - if (lookahead == '{') ADVANCE(135); - if (lookahead == '|') ADVANCE(294); - if (lookahead == '~') ADVANCE(224); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(82) + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == ']') ADVANCE(254); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(154); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(197); + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(327); END_STATE(); case 83: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(83) - if (lookahead == '!') ADVANCE(193); - if (lookahead == '"') ADVANCE(194); - if (lookahead == '$') ADVANCE(274); - if (lookahead == '\'') ADVANCE(194); - if (lookahead == '*') ADVANCE(151); - if (lookahead == '-') ADVANCE(172); - if (lookahead == '.') ADVANCE(174); - if (lookahead == ':') ADVANCE(175); - if (lookahead == '<') ADVANCE(170); - if (lookahead == '>') ADVANCE(301); - if (lookahead == 'F') ADVANCE(181); - if (lookahead == 'I') ADVANCE(183); - if (lookahead == 'N') ADVANCE(184); - if (lookahead == 'T') ADVANCE(185); - if (lookahead == 'W') ADVANCE(180); - if (lookahead == 'X') ADVANCE(192); - if (lookahead == '[') ADVANCE(258); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == '^') ADVANCE(217); - if (lookahead == '_') ADVANCE(141); - if (lookahead == '{') ADVANCE(267); - if (lookahead == '|') ADVANCE(294); - if (lookahead == '~') ADVANCE(224); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(82) + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == ']') ADVANCE(254); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(154); + if (lookahead == '{') ADVANCE(148); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(325); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(197); + lookahead != 11 && + lookahead != '\f') ADVANCE(327); END_STATE(); case 84: - if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(84) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == ']') ADVANCE(230); - if (lookahead == '^') ADVANCE(215); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); + if (lookahead == ' ') ADVANCE(164); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == ']') ADVANCE(254); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(154); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(301); + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(327); END_STATE(); case 85: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(84) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == ']') ADVANCE(230); - if (lookahead == '^') ADVANCE(215); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(134); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(86) + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(154); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(247); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); + lookahead == ' ') ADVANCE(325); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(301); + lookahead != '\f') ADVANCE(327); END_STATE(); case 86: - if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(86) - if (lookahead == ' ') ADVANCE(144); - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(303); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(154); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(247); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(301); + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(327); END_STATE(); case 87: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(90) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == ']') ADVANCE(259); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(86) + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(154); + if (lookahead == '{') ADVANCE(149); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(247); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); + lookahead == ' ') ADVANCE(325); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(301); + lookahead != '\f') ADVANCE(327); END_STATE(); case 88: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(90) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == ']') ADVANCE(259); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(134); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(86) + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(154); + if (lookahead == '{') ADVANCE(148); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(247); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); + lookahead == ' ') ADVANCE(325); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(301); + lookahead != '\f') ADVANCE(327); END_STATE(); case 89: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(90) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == ']') ADVANCE(259); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(133); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(89) + if (lookahead == ' ') ADVANCE(164); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(329); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(154); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(301); + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(327); END_STATE(); case 90: - if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(90) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(257); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(263); + if (lookahead == 'I') ADVANCE(265); + if (lookahead == 'N') ADVANCE(266); + if (lookahead == 'T') ADVANCE(267); + if (lookahead == 'W') ADVANCE(262); + if (lookahead == 'X') ADVANCE(274); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(158); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(247); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); if (lookahead != 0 && (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(301); + lookahead != ' ') ADVANCE(327); END_STATE(); case 91: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(91) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(233); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(239); - if (lookahead == 'I') ADVANCE(241); - if (lookahead == 'N') ADVANCE(242); - if (lookahead == 'T') ADVANCE(243); - if (lookahead == 'W') ADVANCE(238); - if (lookahead == 'X') ADVANCE(250); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(215); - if (lookahead == '_') ADVANCE(140); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(90) + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(257); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(263); + if (lookahead == 'I') ADVANCE(265); + if (lookahead == 'N') ADVANCE(266); + if (lookahead == 'T') ADVANCE(267); + if (lookahead == 'W') ADVANCE(262); + if (lookahead == 'X') ADVANCE(274); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(158); + if (lookahead == '{') ADVANCE(149); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(247); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(325); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(301); + lookahead != 11 && + lookahead != '\f') ADVANCE(327); END_STATE(); case 92: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(91) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(233); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(239); - if (lookahead == 'I') ADVANCE(241); - if (lookahead == 'N') ADVANCE(242); - if (lookahead == 'T') ADVANCE(243); - if (lookahead == 'W') ADVANCE(238); - if (lookahead == 'X') ADVANCE(250); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(215); - if (lookahead == '_') ADVANCE(140); - if (lookahead == '{') ADVANCE(134); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(93) + if (lookahead == '!') ADVANCE(217); + if (lookahead == '"') ADVANCE(218); + if (lookahead == '$') ADVANCE(298); + if (lookahead == '\'') ADVANCE(218); + if (lookahead == '*') ADVANCE(175); + if (lookahead == '-') ADVANCE(196); + if (lookahead == '.') ADVANCE(198); + if (lookahead == ':') ADVANCE(199); + if (lookahead == '<') ADVANCE(194); + if (lookahead == '>') ADVANCE(327); + if (lookahead == 'F') ADVANCE(205); + if (lookahead == 'I') ADVANCE(207); + if (lookahead == 'N') ADVANCE(208); + if (lookahead == 'T') ADVANCE(209); + if (lookahead == 'W') ADVANCE(204); + if (lookahead == 'X') ADVANCE(216); + if (lookahead == '[') ADVANCE(282); + if (lookahead == '\\') ADVANCE(179); + if (lookahead == '^') ADVANCE(240); + if (lookahead == '_') ADVANCE(159); + if (lookahead == '{') ADVANCE(150); + if (lookahead == '|') ADVANCE(318); + if (lookahead == '~') ADVANCE(249); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); + lookahead == ' ') ADVANCE(325); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(301); + lookahead != '\f') ADVANCE(221); END_STATE(); case 93: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(94) - if (lookahead == '!') ADVANCE(193); - if (lookahead == '"') ADVANCE(194); - if (lookahead == '$') ADVANCE(274); - if (lookahead == '\'') ADVANCE(194); - if (lookahead == '*') ADVANCE(151); - if (lookahead == '-') ADVANCE(171); - if (lookahead == '.') ADVANCE(174); - if (lookahead == ':') ADVANCE(175); - if (lookahead == '<') ADVANCE(170); - if (lookahead == '>') ADVANCE(301); - if (lookahead == 'F') ADVANCE(181); - if (lookahead == 'I') ADVANCE(183); - if (lookahead == 'N') ADVANCE(184); - if (lookahead == 'T') ADVANCE(185); - if (lookahead == 'W') ADVANCE(180); - if (lookahead == 'X') ADVANCE(192); - if (lookahead == '[') ADVANCE(258); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == '^') ADVANCE(217); - if (lookahead == '_') ADVANCE(141); - if (lookahead == '{') ADVANCE(135); - if (lookahead == '|') ADVANCE(294); - if (lookahead == '~') ADVANCE(225); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(93) + if (lookahead == '!') ADVANCE(217); + if (lookahead == '"') ADVANCE(218); + if (lookahead == '$') ADVANCE(298); + if (lookahead == '\'') ADVANCE(218); + if (lookahead == '*') ADVANCE(175); + if (lookahead == '-') ADVANCE(196); + if (lookahead == '.') ADVANCE(198); + if (lookahead == ':') ADVANCE(199); + if (lookahead == '<') ADVANCE(194); + if (lookahead == '>') ADVANCE(327); + if (lookahead == 'F') ADVANCE(205); + if (lookahead == 'I') ADVANCE(207); + if (lookahead == 'N') ADVANCE(208); + if (lookahead == 'T') ADVANCE(209); + if (lookahead == 'W') ADVANCE(204); + if (lookahead == 'X') ADVANCE(216); + if (lookahead == '[') ADVANCE(282); + if (lookahead == '\\') ADVANCE(179); + if (lookahead == '^') ADVANCE(240); + if (lookahead == '_') ADVANCE(159); + if (lookahead == '{') ADVANCE(291); + if (lookahead == '|') ADVANCE(318); + if (lookahead == '~') ADVANCE(249); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(197); + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(221); END_STATE(); case 94: - if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(94) - if (lookahead == '!') ADVANCE(193); - if (lookahead == '"') ADVANCE(194); - if (lookahead == '$') ADVANCE(274); - if (lookahead == '\'') ADVANCE(194); - if (lookahead == '*') ADVANCE(151); - if (lookahead == '-') ADVANCE(171); - if (lookahead == '.') ADVANCE(174); - if (lookahead == ':') ADVANCE(175); - if (lookahead == '<') ADVANCE(170); - if (lookahead == '>') ADVANCE(301); - if (lookahead == 'F') ADVANCE(181); - if (lookahead == 'I') ADVANCE(183); - if (lookahead == 'N') ADVANCE(184); - if (lookahead == 'T') ADVANCE(185); - if (lookahead == 'W') ADVANCE(180); - if (lookahead == 'X') ADVANCE(192); - if (lookahead == '[') ADVANCE(258); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == '^') ADVANCE(217); - if (lookahead == '_') ADVANCE(141); - if (lookahead == '{') ADVANCE(267); - if (lookahead == '|') ADVANCE(294); - if (lookahead == '~') ADVANCE(225); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == ']') ADVANCE(254); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(154); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(247); if (lookahead != 0 && (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(197); + lookahead != ' ') ADVANCE(327); END_STATE(); case 95: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(95) - if (lookahead == ' ') ADVANCE(146); - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(149); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(94) + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == ']') ADVANCE(254); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(154); + if (lookahead == '{') ADVANCE(149); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(247); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(325); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(301); + lookahead != 11 && + lookahead != '\f') ADVANCE(327); END_STATE(); case 96: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(96) - if (lookahead == ' ') ADVANCE(144); - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(215); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(97) + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(329); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(154); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(325); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(301); + lookahead != 11 && + lookahead != '\f') ADVANCE(327); END_STATE(); case 97: + if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(97) - if (lookahead == '"') ADVANCE(321); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(324); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(329); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(154); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead != 0 && + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(327); END_STATE(); case 98: - if (lookahead == '\r') ADVANCE(262); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(97) + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(329); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(154); + if (lookahead == '{') ADVANCE(149); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(325); if (lookahead != 0 && - lookahead != '\n' && - lookahead != ')') ADVANCE(263); + lookahead != 11 && + lookahead != '\f') ADVANCE(327); END_STATE(); case 99: - if (lookahead == '\r') ADVANCE(295); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(97) + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(329); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(154); + if (lookahead == '{') ADVANCE(148); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(325); if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != ' ' && - lookahead != '=' && - lookahead != '{' && - lookahead != '}') ADVANCE(296); + lookahead != 11 && + lookahead != '\f') ADVANCE(327); END_STATE(); case 100: - if (lookahead == '\r') ADVANCE(322); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(100) + if (lookahead == ' ') ADVANCE(164); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(239); + if (lookahead == '_') ADVANCE(154); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); if (lookahead != 0 && - lookahead != '\n' && - lookahead != '"') ADVANCE(323); + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(327); END_STATE(); case 101: - if (lookahead == ' ') ADVANCE(101); - if (lookahead == '*') ADVANCE(115); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(101) + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(257); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(263); + if (lookahead == 'I') ADVANCE(265); + if (lookahead == 'N') ADVANCE(266); + if (lookahead == 'T') ADVANCE(267); + if (lookahead == 'W') ADVANCE(262); + if (lookahead == 'X') ADVANCE(274); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(239); + if (lookahead == '_') ADVANCE(158); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + if (lookahead != 0 && + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(327); END_STATE(); case 102: - if (lookahead == '.') ADVANCE(159); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(101) + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(257); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(263); + if (lookahead == 'I') ADVANCE(265); + if (lookahead == 'N') ADVANCE(266); + if (lookahead == 'T') ADVANCE(267); + if (lookahead == 'W') ADVANCE(262); + if (lookahead == 'X') ADVANCE(274); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(239); + if (lookahead == '_') ADVANCE(158); + if (lookahead == '{') ADVANCE(149); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(325); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + if (lookahead != 0 && + lookahead != 11 && + lookahead != '\f') ADVANCE(327); END_STATE(); case 103: - if (lookahead == ':') ADVANCE(211); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(104) + if (lookahead == '!') ADVANCE(217); + if (lookahead == '"') ADVANCE(218); + if (lookahead == '$') ADVANCE(298); + if (lookahead == '\'') ADVANCE(218); + if (lookahead == '*') ADVANCE(175); + if (lookahead == '-') ADVANCE(195); + if (lookahead == '.') ADVANCE(198); + if (lookahead == ':') ADVANCE(199); + if (lookahead == '<') ADVANCE(194); + if (lookahead == '>') ADVANCE(327); + if (lookahead == 'F') ADVANCE(205); + if (lookahead == 'I') ADVANCE(207); + if (lookahead == 'N') ADVANCE(208); + if (lookahead == 'T') ADVANCE(209); + if (lookahead == 'W') ADVANCE(204); + if (lookahead == 'X') ADVANCE(216); + if (lookahead == '[') ADVANCE(282); + if (lookahead == '\\') ADVANCE(179); + if (lookahead == '^') ADVANCE(241); + if (lookahead == '_') ADVANCE(159); + if (lookahead == '{') ADVANCE(150); + if (lookahead == '|') ADVANCE(318); + if (lookahead == '~') ADVANCE(249); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(325); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ') ADVANCE(103); + lookahead != 11 && + lookahead != '\f') ADVANCE(221); END_STATE(); case 104: - if (lookahead == 'D') ADVANCE(110); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(104) + if (lookahead == '!') ADVANCE(217); + if (lookahead == '"') ADVANCE(218); + if (lookahead == '$') ADVANCE(298); + if (lookahead == '\'') ADVANCE(218); + if (lookahead == '*') ADVANCE(175); + if (lookahead == '-') ADVANCE(195); + if (lookahead == '.') ADVANCE(198); + if (lookahead == ':') ADVANCE(199); + if (lookahead == '<') ADVANCE(194); + if (lookahead == '>') ADVANCE(327); + if (lookahead == 'F') ADVANCE(205); + if (lookahead == 'I') ADVANCE(207); + if (lookahead == 'N') ADVANCE(208); + if (lookahead == 'T') ADVANCE(209); + if (lookahead == 'W') ADVANCE(204); + if (lookahead == 'X') ADVANCE(216); + if (lookahead == '[') ADVANCE(282); + if (lookahead == '\\') ADVANCE(179); + if (lookahead == '^') ADVANCE(241); + if (lookahead == '_') ADVANCE(159); + if (lookahead == '{') ADVANCE(291); + if (lookahead == '|') ADVANCE(318); + if (lookahead == '~') ADVANCE(249); + if (lookahead != 0 && + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(221); END_STATE(); case 105: - if (lookahead == 'E') ADVANCE(281); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(105) + if (lookahead == ' ') ADVANCE(170); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(173); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(154); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead != 0 && + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(327); END_STATE(); case 106: - if (lookahead == 'E') ADVANCE(290); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(106) + if (lookahead == ' ') ADVANCE(164); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(154); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead != 0 && + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(327); END_STATE(); case 107: - if (lookahead == 'F') ADVANCE(109); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(107) + if (lookahead == ' ') ADVANCE(164); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(154); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(247); + if (lookahead != 0 && + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(327); END_STATE(); case 108: - if (lookahead == 'M') ADVANCE(106); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(108) + if (lookahead == ' ') ADVANCE(169); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(155); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead != 0 && + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(327); END_STATE(); case 109: - if (lookahead == 'O') ADVANCE(284); + if (lookahead == '\r') SKIP(109) + if (lookahead == '"') ADVANCE(347); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(350); END_STATE(); case 110: - if (lookahead == 'O') ADVANCE(275); + if (lookahead == '\r') ADVANCE(286); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != ')') ADVANCE(287); END_STATE(); case 111: - if (lookahead == 'P') ADVANCE(278); + if (lookahead == '\r') ADVANCE(319); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != ' ' && + lookahead != '=' && + lookahead != '{' && + lookahead != '}') ADVANCE(320); END_STATE(); case 112: - if (lookahead == 'T') ADVANCE(105); + if (lookahead == '\r') ADVANCE(348); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"') ADVANCE(349); END_STATE(); case 113: - if (lookahead == 'X') ADVANCE(108); + if (lookahead == ' ') ADVANCE(113); + if (lookahead == '*') ADVANCE(129); + if (lookahead == '_') ADVANCE(130); END_STATE(); case 114: - if (lookahead == 'X') ADVANCE(287); + if (lookahead == ' ') ADVANCE(114); + if (lookahead == '_') ADVANCE(130); END_STATE(); case 115: - if (lookahead == '}') ADVANCE(152); + if (lookahead == ' ') ADVANCE(115); + if (lookahead == '*') ADVANCE(129); END_STATE(); case 116: + if (lookahead == '.') ADVANCE(183); + END_STATE(); + case 117: + if (lookahead == ':') ADVANCE(235); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ') ADVANCE(117); + END_STATE(); + case 118: + if (lookahead == 'D') ADVANCE(124); + END_STATE(); + case 119: + if (lookahead == 'E') ADVANCE(305); + END_STATE(); + case 120: + if (lookahead == 'E') ADVANCE(314); + END_STATE(); + case 121: + if (lookahead == 'F') ADVANCE(123); + END_STATE(); + case 122: + if (lookahead == 'M') ADVANCE(120); + END_STATE(); + case 123: + if (lookahead == 'O') ADVANCE(308); + END_STATE(); + case 124: + if (lookahead == 'O') ADVANCE(299); + END_STATE(); + case 125: + if (lookahead == 'P') ADVANCE(302); + END_STATE(); + case 126: + if (lookahead == 'T') ADVANCE(119); + END_STATE(); + case 127: + if (lookahead == 'X') ADVANCE(122); + END_STATE(); + case 128: + if (lookahead == 'X') ADVANCE(311); + END_STATE(); + case 129: + if (lookahead == '}') ADVANCE(176); + END_STATE(); + case 130: + if (lookahead == '}') ADVANCE(160); + END_STATE(); + case 131: if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '}') ADVANCE(318); + lookahead != '}') ADVANCE(344); END_STATE(); - case 117: - if (eof) ADVANCE(130); - if (lookahead == '\t') ADVANCE(299); - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(127) - if (lookahead == ' ') ADVANCE(147); - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(134); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); + case 132: + if (eof) ADVANCE(145); + if (lookahead == '\t') ADVANCE(325); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(140) + if (lookahead == ' ') ADVANCE(171); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(154); + if (lookahead == '{') ADVANCE(149); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(301); + lookahead != '\f') ADVANCE(327); END_STATE(); - case 118: - if (eof) ADVANCE(130); - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(118) - if (lookahead == ' ') ADVANCE(146); - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(321); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '%') ADVANCE(268); - if (lookahead == '(') ADVANCE(261); - if (lookahead == ')') ADVANCE(264); - if (lookahead == '*') ADVANCE(149); - if (lookahead == '+') ADVANCE(312); - if (lookahead == '-') ADVANCE(232); - if (lookahead == '.') ADVANCE(317); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == '=') ADVANCE(320); - if (lookahead == '>') ADVANCE(198); - if (lookahead == 'F') ADVANCE(239); - if (lookahead == 'I') ADVANCE(241); - if (lookahead == 'N') ADVANCE(242); - if (lookahead == 'T') ADVANCE(243); - if (lookahead == 'W') ADVANCE(238); - if (lookahead == 'X') ADVANCE(250); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(156); - if (lookahead == ']') ADVANCE(230); - if (lookahead == '^') ADVANCE(215); - if (lookahead == '_') ADVANCE(140); - if (lookahead == '{') ADVANCE(265); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '}') ADVANCE(136); - if (lookahead == '~') ADVANCE(223); + case 133: + if (eof) ADVANCE(145); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(133) + if (lookahead == ' ') ADVANCE(168); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(347); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '%') ADVANCE(292); + if (lookahead == '(') ADVANCE(285); + if (lookahead == ')') ADVANCE(288); + if (lookahead == '*') ADVANCE(173); + if (lookahead == '+') ADVANCE(338); + if (lookahead == '-') ADVANCE(256); + if (lookahead == '.') ADVANCE(343); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == '=') ADVANCE(346); + if (lookahead == '>') ADVANCE(222); + if (lookahead == 'F') ADVANCE(263); + if (lookahead == 'I') ADVANCE(265); + if (lookahead == 'N') ADVANCE(266); + if (lookahead == 'T') ADVANCE(267); + if (lookahead == 'W') ADVANCE(262); + if (lookahead == 'X') ADVANCE(274); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(180); + if (lookahead == ']') ADVANCE(254); + if (lookahead == '^') ADVANCE(239); + if (lookahead == '_') ADVANCE(156); + if (lookahead == '{') ADVANCE(289); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '}') ADVANCE(151); + if (lookahead == '~') ADVANCE(247); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(301); + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(327); END_STATE(); - case 119: - if (eof) ADVANCE(130); - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(120) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); + case 134: + if (eof) ADVANCE(145); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(135) + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(154); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); + lookahead == ' ') ADVANCE(325); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(301); + lookahead != '\f') ADVANCE(327); END_STATE(); - case 120: - if (eof) ADVANCE(130); - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(120) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); + case 135: + if (eof) ADVANCE(145); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(135) + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(154); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); if (lookahead != 0 && (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(301); + lookahead != ' ') ADVANCE(327); END_STATE(); - case 121: - if (eof) ADVANCE(130); - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(120) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(134); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); + case 136: + if (eof) ADVANCE(145); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(135) + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(154); + if (lookahead == '{') ADVANCE(149); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); + lookahead == ' ') ADVANCE(325); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(301); + lookahead != '\f') ADVANCE(327); END_STATE(); - case 122: - if (eof) ADVANCE(130); - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(120) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(133); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); + case 137: + if (eof) ADVANCE(145); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(135) + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(154); + if (lookahead == '{') ADVANCE(148); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); + lookahead == ' ') ADVANCE(325); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(301); + lookahead != '\f') ADVANCE(327); END_STATE(); - case 123: - if (eof) ADVANCE(130); - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(123) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == ']') ADVANCE(230); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); + case 138: + if (eof) ADVANCE(145); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(138) + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == ']') ADVANCE(254); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(154); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); if (lookahead != 0 && (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(301); + lookahead != ' ') ADVANCE(327); END_STATE(); - case 124: - if (eof) ADVANCE(130); - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(123) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == ']') ADVANCE(230); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(134); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); + case 139: + if (eof) ADVANCE(145); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(138) + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == ']') ADVANCE(254); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(154); + if (lookahead == '{') ADVANCE(149); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); + lookahead == ' ') ADVANCE(325); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(301); + lookahead != '\f') ADVANCE(327); END_STATE(); - case 125: - if (eof) ADVANCE(130); - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(125) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(233); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(239); - if (lookahead == 'I') ADVANCE(241); - if (lookahead == 'N') ADVANCE(242); - if (lookahead == 'T') ADVANCE(243); - if (lookahead == 'W') ADVANCE(238); - if (lookahead == 'X') ADVANCE(250); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(140); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); + case 140: + if (eof) ADVANCE(145); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(140) + if (lookahead == ' ') ADVANCE(164); + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(331); + if (lookahead == 'I') ADVANCE(333); + if (lookahead == 'N') ADVANCE(334); + if (lookahead == 'T') ADVANCE(335); + if (lookahead == 'W') ADVANCE(332); + if (lookahead == 'X') ADVANCE(336); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(154); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); + if (lookahead != 0 && + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(327); + END_STATE(); + case 141: + if (eof) ADVANCE(145); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(141) + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(257); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(263); + if (lookahead == 'I') ADVANCE(265); + if (lookahead == 'N') ADVANCE(266); + if (lookahead == 'T') ADVANCE(267); + if (lookahead == 'W') ADVANCE(262); + if (lookahead == 'X') ADVANCE(274); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(158); + if (lookahead == '{') ADVANCE(290); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); if (lookahead != 0 && (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(301); + lookahead != ' ') ADVANCE(327); END_STATE(); - case 126: - if (eof) ADVANCE(130); - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(125) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(233); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(239); - if (lookahead == 'I') ADVANCE(241); - if (lookahead == 'N') ADVANCE(242); - if (lookahead == 'T') ADVANCE(243); - if (lookahead == 'W') ADVANCE(238); - if (lookahead == 'X') ADVANCE(250); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(140); - if (lookahead == '{') ADVANCE(134); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); + case 142: + if (eof) ADVANCE(145); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(141) + if (lookahead == '!') ADVANCE(337); + if (lookahead == '"') ADVANCE(340); + if (lookahead == '$') ADVANCE(297); + if (lookahead == '\'') ADVANCE(340); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '-') ADVANCE(257); + if (lookahead == '.') ADVANCE(330); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(193); + if (lookahead == 'F') ADVANCE(263); + if (lookahead == 'I') ADVANCE(265); + if (lookahead == 'N') ADVANCE(266); + if (lookahead == 'T') ADVANCE(267); + if (lookahead == 'W') ADVANCE(262); + if (lookahead == 'X') ADVANCE(274); + if (lookahead == '[') ADVANCE(281); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '^') ADVANCE(238); + if (lookahead == '_') ADVANCE(158); + if (lookahead == '{') ADVANCE(149); + if (lookahead == '|') ADVANCE(317); + if (lookahead == '~') ADVANCE(246); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); + lookahead == ' ') ADVANCE(325); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(301); - END_STATE(); - case 127: - if (eof) ADVANCE(130); - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(127) - if (lookahead == ' ') ADVANCE(144); - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(301); + lookahead != '\f') ADVANCE(327); END_STATE(); - case 128: - if (eof) ADVANCE(130); - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(129) - if (lookahead == '!') ADVANCE(193); - if (lookahead == '"') ADVANCE(194); - if (lookahead == '$') ADVANCE(274); - if (lookahead == '\'') ADVANCE(194); - if (lookahead == '*') ADVANCE(151); - if (lookahead == '-') ADVANCE(172); - if (lookahead == '.') ADVANCE(174); - if (lookahead == ':') ADVANCE(175); - if (lookahead == '<') ADVANCE(170); - if (lookahead == '>') ADVANCE(301); - if (lookahead == 'F') ADVANCE(181); - if (lookahead == 'I') ADVANCE(183); - if (lookahead == 'N') ADVANCE(184); - if (lookahead == 'T') ADVANCE(185); - if (lookahead == 'W') ADVANCE(180); - if (lookahead == 'X') ADVANCE(192); - if (lookahead == '[') ADVANCE(258); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == '^') ADVANCE(217); - if (lookahead == '_') ADVANCE(141); - if (lookahead == '{') ADVANCE(135); - if (lookahead == '|') ADVANCE(294); - if (lookahead == '~') ADVANCE(225); + case 143: + if (eof) ADVANCE(145); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(144) + if (lookahead == '!') ADVANCE(217); + if (lookahead == '"') ADVANCE(218); + if (lookahead == '$') ADVANCE(298); + if (lookahead == '\'') ADVANCE(218); + if (lookahead == '*') ADVANCE(175); + if (lookahead == '-') ADVANCE(196); + if (lookahead == '.') ADVANCE(198); + if (lookahead == ':') ADVANCE(199); + if (lookahead == '<') ADVANCE(194); + if (lookahead == '>') ADVANCE(327); + if (lookahead == 'F') ADVANCE(205); + if (lookahead == 'I') ADVANCE(207); + if (lookahead == 'N') ADVANCE(208); + if (lookahead == 'T') ADVANCE(209); + if (lookahead == 'W') ADVANCE(204); + if (lookahead == 'X') ADVANCE(216); + if (lookahead == '[') ADVANCE(282); + if (lookahead == '\\') ADVANCE(179); + if (lookahead == '^') ADVANCE(241); + if (lookahead == '_') ADVANCE(159); + if (lookahead == '{') ADVANCE(150); + if (lookahead == '|') ADVANCE(318); + if (lookahead == '~') ADVANCE(249); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); + lookahead == ' ') ADVANCE(325); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(197); + lookahead != '\f') ADVANCE(221); END_STATE(); - case 129: - if (eof) ADVANCE(130); - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(129) - if (lookahead == '!') ADVANCE(193); - if (lookahead == '"') ADVANCE(194); - if (lookahead == '$') ADVANCE(274); - if (lookahead == '\'') ADVANCE(194); - if (lookahead == '*') ADVANCE(151); - if (lookahead == '-') ADVANCE(172); - if (lookahead == '.') ADVANCE(174); - if (lookahead == ':') ADVANCE(175); - if (lookahead == '<') ADVANCE(170); - if (lookahead == '>') ADVANCE(301); - if (lookahead == 'F') ADVANCE(181); - if (lookahead == 'I') ADVANCE(183); - if (lookahead == 'N') ADVANCE(184); - if (lookahead == 'T') ADVANCE(185); - if (lookahead == 'W') ADVANCE(180); - if (lookahead == 'X') ADVANCE(192); - if (lookahead == '[') ADVANCE(258); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == '^') ADVANCE(217); - if (lookahead == '_') ADVANCE(141); - if (lookahead == '{') ADVANCE(267); - if (lookahead == '|') ADVANCE(294); - if (lookahead == '~') ADVANCE(225); + case 144: + if (eof) ADVANCE(145); + if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\r') SKIP(144) + if (lookahead == '!') ADVANCE(217); + if (lookahead == '"') ADVANCE(218); + if (lookahead == '$') ADVANCE(298); + if (lookahead == '\'') ADVANCE(218); + if (lookahead == '*') ADVANCE(175); + if (lookahead == '-') ADVANCE(196); + if (lookahead == '.') ADVANCE(198); + if (lookahead == ':') ADVANCE(199); + if (lookahead == '<') ADVANCE(194); + if (lookahead == '>') ADVANCE(327); + if (lookahead == 'F') ADVANCE(205); + if (lookahead == 'I') ADVANCE(207); + if (lookahead == 'N') ADVANCE(208); + if (lookahead == 'T') ADVANCE(209); + if (lookahead == 'W') ADVANCE(204); + if (lookahead == 'X') ADVANCE(216); + if (lookahead == '[') ADVANCE(282); + if (lookahead == '\\') ADVANCE(179); + if (lookahead == '^') ADVANCE(241); + if (lookahead == '_') ADVANCE(159); + if (lookahead == '{') ADVANCE(291); + if (lookahead == '|') ADVANCE(318); + if (lookahead == '~') ADVANCE(249); if (lookahead != 0 && (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(197); + lookahead != ' ') ADVANCE(221); END_STATE(); - case 130: + case 145: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 131: + case 146: ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 132: + case 147: ACCEPT_TOKEN(anon_sym_LBRACE); - if (lookahead == '*') ADVANCE(142); - if (lookahead == '+') ADVANCE(203); - if (lookahead == '-') ADVANCE(207); - if (lookahead == '=') ADVANCE(272); - if (lookahead == '^') ADVANCE(212); - if (lookahead == '_') ADVANCE(137); - if (lookahead == '~') ADVANCE(220); + if (lookahead == '*') ADVANCE(162); + if (lookahead == '+') ADVANCE(227); + if (lookahead == '-') ADVANCE(231); + if (lookahead == '=') ADVANCE(296); + if (lookahead == '^') ADVANCE(236); + if (lookahead == '_') ADVANCE(152); + if (lookahead == '~') ADVANCE(244); END_STATE(); - case 133: + case 148: ACCEPT_TOKEN(anon_sym_LBRACE); if (lookahead == '"' || - lookahead == '\'') ADVANCE(157); - if (lookahead == '*') ADVANCE(142); - if (lookahead == '+') ADVANCE(203); - if (lookahead == '-') ADVANCE(207); - if (lookahead == '=') ADVANCE(272); - if (lookahead == '^') ADVANCE(212); - if (lookahead == '_') ADVANCE(137); - if (lookahead == '~') ADVANCE(220); + lookahead == '\'') ADVANCE(181); + if (lookahead == '*') ADVANCE(162); + if (lookahead == '+') ADVANCE(227); + if (lookahead == '-') ADVANCE(231); + if (lookahead == '=') ADVANCE(296); + if (lookahead == '^') ADVANCE(236); + if (lookahead == '_') ADVANCE(152); + if (lookahead == '~') ADVANCE(244); END_STATE(); - case 134: + case 149: ACCEPT_TOKEN(anon_sym_LBRACE); if (lookahead == '"' || - lookahead == '\'') ADVANCE(157); - if (lookahead == '*') ADVANCE(142); - if (lookahead == '+') ADVANCE(203); - if (lookahead == '-') ADVANCE(207); - if (lookahead == '=') ADVANCE(199); - if (lookahead == '^') ADVANCE(212); - if (lookahead == '_') ADVANCE(137); - if (lookahead == '~') ADVANCE(220); + lookahead == '\'') ADVANCE(181); + if (lookahead == '*') ADVANCE(162); + if (lookahead == '+') ADVANCE(227); + if (lookahead == '-') ADVANCE(231); + if (lookahead == '=') ADVANCE(223); + if (lookahead == '^') ADVANCE(236); + if (lookahead == '_') ADVANCE(152); + if (lookahead == '~') ADVANCE(244); END_STATE(); - case 135: + case 150: ACCEPT_TOKEN(anon_sym_LBRACE); if (lookahead == '"' || - lookahead == '\'') ADVANCE(158); - if (lookahead == '*') ADVANCE(143); - if (lookahead == '+') ADVANCE(204); - if (lookahead == '-') ADVANCE(208); - if (lookahead == '=') ADVANCE(200); - if (lookahead == '^') ADVANCE(213); - if (lookahead == '_') ADVANCE(138); - if (lookahead == '~') ADVANCE(221); + lookahead == '\'') ADVANCE(182); + if (lookahead == '*') ADVANCE(163); + if (lookahead == '+') ADVANCE(228); + if (lookahead == '-') ADVANCE(232); + if (lookahead == '=') ADVANCE(224); + if (lookahead == '^') ADVANCE(237); + if (lookahead == '_') ADVANCE(153); + if (lookahead == '~') ADVANCE(245); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(197); + lookahead != '>') ADVANCE(221); END_STATE(); - case 136: + case 151: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 137: + case 152: ACCEPT_TOKEN(anon_sym_LBRACE_); END_STATE(); - case 138: + case 153: ACCEPT_TOKEN(anon_sym_LBRACE_); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(197); + lookahead != '>') ADVANCE(221); END_STATE(); - case 139: + case 154: ACCEPT_TOKEN(anon_sym__); END_STATE(); - case 140: + case 155: + ACCEPT_TOKEN(anon_sym__); + if (lookahead == '}') ADVANCE(160); + END_STATE(); + case 156: ACCEPT_TOKEN(anon_sym__); + if (lookahead == '}') ADVANCE(160); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); END_STATE(); - case 141: + case 157: ACCEPT_TOKEN(anon_sym__); + if (lookahead == '}') ADVANCE(161); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(197); + lookahead != '>') ADVANCE(221); END_STATE(); - case 142: + case 158: + ACCEPT_TOKEN(anon_sym__); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + END_STATE(); + case 159: + ACCEPT_TOKEN(anon_sym__); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(221); + END_STATE(); + case 160: + ACCEPT_TOKEN(aux_sym_emphasis_end_token1); + END_STATE(); + case 161: + ACCEPT_TOKEN(aux_sym_emphasis_end_token1); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(221); + END_STATE(); + case 162: ACCEPT_TOKEN(anon_sym_LBRACE_STAR); END_STATE(); - case 143: + case 163: ACCEPT_TOKEN(anon_sym_LBRACE_STAR); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(197); + lookahead != '>') ADVANCE(221); END_STATE(); - case 144: + case 164: ACCEPT_TOKEN(anon_sym_SPACE); END_STATE(); - case 145: + case 165: ACCEPT_TOKEN(anon_sym_SPACE); - if (lookahead == '\t') ADVANCE(299); - if (lookahead == ' ') ADVANCE(298); - if (lookahead == '*') ADVANCE(115); + if (lookahead == '\t') ADVANCE(325); + if (lookahead == ' ') ADVANCE(322); + if (lookahead == '*') ADVANCE(129); + if (lookahead == '_') ADVANCE(130); END_STATE(); - case 146: + case 166: ACCEPT_TOKEN(anon_sym_SPACE); - if (lookahead == ' ') ADVANCE(101); - if (lookahead == '*') ADVANCE(115); + if (lookahead == '\t') ADVANCE(325); + if (lookahead == ' ') ADVANCE(323); + if (lookahead == '_') ADVANCE(130); END_STATE(); - case 147: + case 167: + ACCEPT_TOKEN(anon_sym_SPACE); + if (lookahead == '\t') ADVANCE(325); + if (lookahead == ' ') ADVANCE(324); + if (lookahead == '*') ADVANCE(129); + END_STATE(); + case 168: + ACCEPT_TOKEN(anon_sym_SPACE); + if (lookahead == ' ') ADVANCE(113); + if (lookahead == '*') ADVANCE(129); + if (lookahead == '_') ADVANCE(130); + END_STATE(); + case 169: + ACCEPT_TOKEN(anon_sym_SPACE); + if (lookahead == ' ') ADVANCE(114); + if (lookahead == '_') ADVANCE(130); + END_STATE(); + case 170: + ACCEPT_TOKEN(anon_sym_SPACE); + if (lookahead == ' ') ADVANCE(115); + if (lookahead == '*') ADVANCE(129); + END_STATE(); + case 171: ACCEPT_TOKEN(anon_sym_SPACE); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); + lookahead == ' ') ADVANCE(325); END_STATE(); - case 148: + case 172: ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); - case 149: + case 173: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '}') ADVANCE(152); + if (lookahead == '}') ADVANCE(176); END_STATE(); - case 150: + case 174: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '}') ADVANCE(153); + if (lookahead == '}') ADVANCE(177); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(197); + lookahead != '>') ADVANCE(221); END_STATE(); - case 151: + case 175: ACCEPT_TOKEN(anon_sym_STAR); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(197); + lookahead != '>') ADVANCE(221); END_STATE(); - case 152: + case 176: ACCEPT_TOKEN(aux_sym_strong_end_token1); END_STATE(); - case 153: + case 177: ACCEPT_TOKEN(aux_sym_strong_end_token1); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(197); + lookahead != '>') ADVANCE(221); END_STATE(); - case 154: + case 178: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '"' || - lookahead == '\'') ADVANCE(157); + lookahead == '\'') ADVANCE(181); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && - lookahead != '\\') ADVANCE(167); + lookahead != '\\') ADVANCE(191); END_STATE(); - case 155: + case 179: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '"' || - lookahead == '\'') ADVANCE(158); - if (lookahead == '\\') ADVANCE(197); + lookahead == '\'') ADVANCE(182); + if (lookahead == '\\') ADVANCE(221); if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || lookahead == ' ' || - lookahead == '>') ADVANCE(167); + lookahead == '>') ADVANCE(191); if (lookahead != 0 && - (lookahead < '\n' || '\r' < lookahead)) ADVANCE(168); + (lookahead < '\n' || '\r' < lookahead)) ADVANCE(192); END_STATE(); - case 156: + case 180: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && - lookahead != '\\') ADVANCE(167); + lookahead != '\\') ADVANCE(191); END_STATE(); - case 157: + case 181: ACCEPT_TOKEN(sym_quotation_marks); END_STATE(); - case 158: + case 182: ACCEPT_TOKEN(sym_quotation_marks); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(197); + lookahead != '>') ADVANCE(221); END_STATE(); - case 159: + case 183: ACCEPT_TOKEN(sym_ellipsis); END_STATE(); - case 160: + case 184: ACCEPT_TOKEN(sym_ellipsis); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(197); + lookahead != '>') ADVANCE(221); END_STATE(); - case 161: + case 185: ACCEPT_TOKEN(sym_em_dash); END_STATE(); - case 162: + case 186: ACCEPT_TOKEN(sym_em_dash); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); END_STATE(); - case 163: + case 187: ACCEPT_TOKEN(sym_em_dash); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(197); + lookahead != '>') ADVANCE(221); END_STATE(); - case 164: + case 188: ACCEPT_TOKEN(sym_en_dash); - if (lookahead == '-') ADVANCE(162); + if (lookahead == '-') ADVANCE(186); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); END_STATE(); - case 165: + case 189: ACCEPT_TOKEN(sym_en_dash); - if (lookahead == '-') ADVANCE(161); + if (lookahead == '-') ADVANCE(185); END_STATE(); - case 166: + case 190: ACCEPT_TOKEN(sym_en_dash); - if (lookahead == '-') ADVANCE(163); + if (lookahead == '-') ADVANCE(187); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(197); + lookahead != '>') ADVANCE(221); END_STATE(); - case 167: + case 191: ACCEPT_TOKEN(sym_backslash_escape); END_STATE(); - case 168: + case 192: ACCEPT_TOKEN(sym_backslash_escape); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(197); + lookahead != '>') ADVANCE(221); END_STATE(); - case 169: + case 193: ACCEPT_TOKEN(anon_sym_LT); END_STATE(); - case 170: + case 194: ACCEPT_TOKEN(anon_sym_LT); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(197); + lookahead != '>') ADVANCE(221); END_STATE(); - case 171: + case 195: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == '-') ADVANCE(166); - if (lookahead == '}') ADVANCE(210); + if (lookahead == '-') ADVANCE(190); + if (lookahead == '}') ADVANCE(234); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(197); + lookahead != '>') ADVANCE(221); END_STATE(); - case 172: + case 196: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == '-') ADVANCE(166); + if (lookahead == '-') ADVANCE(190); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(197); + lookahead != '>') ADVANCE(221); END_STATE(); - case 173: + case 197: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == '.') ADVANCE(160); + if (lookahead == '.') ADVANCE(184); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(197); + lookahead != '>') ADVANCE(221); END_STATE(); - case 174: + case 198: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == '.') ADVANCE(173); + if (lookahead == '.') ADVANCE(197); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(197); + lookahead != '>') ADVANCE(221); END_STATE(); - case 175: + case 199: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == ':') ADVANCE(197); - if (lookahead == '>') ADVANCE(103); + if (lookahead == ':') ADVANCE(221); + if (lookahead == '>') ADVANCE(117); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ') ADVANCE(175); + lookahead != ' ') ADVANCE(199); END_STATE(); - case 176: + case 200: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'D') ADVANCE(187); + if (lookahead == 'D') ADVANCE(211); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(197); + lookahead != '>') ADVANCE(221); END_STATE(); - case 177: + case 201: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'E') ADVANCE(283); + if (lookahead == 'E') ADVANCE(307); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(197); + lookahead != '>') ADVANCE(221); END_STATE(); - case 178: + case 202: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'E') ADVANCE(292); + if (lookahead == 'E') ADVANCE(316); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(197); + lookahead != '>') ADVANCE(221); END_STATE(); - case 179: + case 203: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'F') ADVANCE(186); + if (lookahead == 'F') ADVANCE(210); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(197); + lookahead != '>') ADVANCE(221); END_STATE(); - case 180: + case 204: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'I') ADVANCE(188); + if (lookahead == 'I') ADVANCE(212); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(197); + lookahead != '>') ADVANCE(221); END_STATE(); - case 181: + case 205: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'I') ADVANCE(190); + if (lookahead == 'I') ADVANCE(214); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(197); + lookahead != '>') ADVANCE(221); END_STATE(); - case 182: + case 206: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'M') ADVANCE(178); + if (lookahead == 'M') ADVANCE(202); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(197); + lookahead != '>') ADVANCE(221); END_STATE(); - case 183: + case 207: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'N') ADVANCE(179); + if (lookahead == 'N') ADVANCE(203); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(197); + lookahead != '>') ADVANCE(221); END_STATE(); - case 184: + case 208: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'O') ADVANCE(189); + if (lookahead == 'O') ADVANCE(213); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(197); + lookahead != '>') ADVANCE(221); END_STATE(); - case 185: + case 209: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'O') ADVANCE(176); + if (lookahead == 'O') ADVANCE(200); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(197); + lookahead != '>') ADVANCE(221); END_STATE(); - case 186: + case 210: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'O') ADVANCE(286); + if (lookahead == 'O') ADVANCE(310); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(197); + lookahead != '>') ADVANCE(221); END_STATE(); - case 187: + case 211: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'O') ADVANCE(277); + if (lookahead == 'O') ADVANCE(301); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(197); + lookahead != '>') ADVANCE(221); END_STATE(); - case 188: + case 212: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'P') ADVANCE(280); + if (lookahead == 'P') ADVANCE(304); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(197); + lookahead != '>') ADVANCE(221); END_STATE(); - case 189: + case 213: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'T') ADVANCE(177); + if (lookahead == 'T') ADVANCE(201); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(197); + lookahead != '>') ADVANCE(221); END_STATE(); - case 190: + case 214: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'X') ADVANCE(182); + if (lookahead == 'X') ADVANCE(206); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(197); + lookahead != '>') ADVANCE(221); END_STATE(); - case 191: + case 215: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'X') ADVANCE(289); + if (lookahead == 'X') ADVANCE(313); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(197); + lookahead != '>') ADVANCE(221); END_STATE(); - case 192: + case 216: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'X') ADVANCE(191); + if (lookahead == 'X') ADVANCE(215); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(197); + lookahead != '>') ADVANCE(221); END_STATE(); - case 193: + case 217: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == '[') ADVANCE(254); + if (lookahead == '[') ADVANCE(278); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(197); + lookahead != '>') ADVANCE(221); END_STATE(); - case 194: + case 218: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == '}') ADVANCE(158); + if (lookahead == '}') ADVANCE(182); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(197); + lookahead != '>') ADVANCE(221); END_STATE(); - case 195: + case 219: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == '}') ADVANCE(202); + if (lookahead == '}') ADVANCE(230); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(197); + lookahead != '>') ADVANCE(221); END_STATE(); - case 196: + case 220: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == '}') ADVANCE(206); + if (lookahead == '}') ADVANCE(226); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(197); + lookahead != '>') ADVANCE(221); END_STATE(); - case 197: + case 221: ACCEPT_TOKEN(aux_sym_autolink_token1); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(197); + lookahead != '>') ADVANCE(221); END_STATE(); - case 198: + case 222: ACCEPT_TOKEN(anon_sym_GT); END_STATE(); - case 199: + case 223: ACCEPT_TOKEN(anon_sym_LBRACE_EQ); END_STATE(); - case 200: + case 224: ACCEPT_TOKEN(anon_sym_LBRACE_EQ); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(197); + lookahead != '>') ADVANCE(221); END_STATE(); - case 201: + case 225: ACCEPT_TOKEN(anon_sym_EQ_RBRACE); END_STATE(); - case 202: + case 226: ACCEPT_TOKEN(anon_sym_EQ_RBRACE); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(197); + lookahead != '>') ADVANCE(221); END_STATE(); - case 203: + case 227: ACCEPT_TOKEN(anon_sym_LBRACE_PLUS); END_STATE(); - case 204: + case 228: ACCEPT_TOKEN(anon_sym_LBRACE_PLUS); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(197); + lookahead != '>') ADVANCE(221); END_STATE(); - case 205: + case 229: ACCEPT_TOKEN(anon_sym_PLUS_RBRACE); END_STATE(); - case 206: + case 230: ACCEPT_TOKEN(anon_sym_PLUS_RBRACE); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(197); + lookahead != '>') ADVANCE(221); END_STATE(); - case 207: + case 231: ACCEPT_TOKEN(anon_sym_LBRACE_DASH); END_STATE(); - case 208: + case 232: ACCEPT_TOKEN(anon_sym_LBRACE_DASH); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(197); + lookahead != '>') ADVANCE(221); END_STATE(); - case 209: + case 233: ACCEPT_TOKEN(anon_sym_DASH_RBRACE); END_STATE(); - case 210: + case 234: ACCEPT_TOKEN(anon_sym_DASH_RBRACE); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(197); + lookahead != '>') ADVANCE(221); END_STATE(); - case 211: + case 235: ACCEPT_TOKEN(sym_symbol); END_STATE(); - case 212: + case 236: ACCEPT_TOKEN(anon_sym_LBRACE_CARET); END_STATE(); - case 213: + case 237: ACCEPT_TOKEN(anon_sym_LBRACE_CARET); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(197); + lookahead != '>') ADVANCE(221); END_STATE(); - case 214: + case 238: ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); - case 215: + case 239: ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '}') ADVANCE(218); + if (lookahead == '}') ADVANCE(242); END_STATE(); - case 216: + case 240: ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '}') ADVANCE(219); + if (lookahead == '}') ADVANCE(243); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(197); + lookahead != '>') ADVANCE(221); END_STATE(); - case 217: + case 241: ACCEPT_TOKEN(anon_sym_CARET); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(197); + lookahead != '>') ADVANCE(221); END_STATE(); - case 218: + case 242: ACCEPT_TOKEN(anon_sym_CARET_RBRACE); END_STATE(); - case 219: + case 243: ACCEPT_TOKEN(anon_sym_CARET_RBRACE); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(197); + lookahead != '>') ADVANCE(221); END_STATE(); - case 220: + case 244: ACCEPT_TOKEN(anon_sym_LBRACE_TILDE); END_STATE(); - case 221: + case 245: ACCEPT_TOKEN(anon_sym_LBRACE_TILDE); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(197); + lookahead != '>') ADVANCE(221); END_STATE(); - case 222: + case 246: ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); - case 223: + case 247: ACCEPT_TOKEN(anon_sym_TILDE); - if (lookahead == '}') ADVANCE(226); + if (lookahead == '}') ADVANCE(250); END_STATE(); - case 224: + case 248: ACCEPT_TOKEN(anon_sym_TILDE); - if (lookahead == '}') ADVANCE(227); + if (lookahead == '}') ADVANCE(251); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(197); + lookahead != '>') ADVANCE(221); END_STATE(); - case 225: + case 249: ACCEPT_TOKEN(anon_sym_TILDE); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(197); + lookahead != '>') ADVANCE(221); END_STATE(); - case 226: + case 250: ACCEPT_TOKEN(anon_sym_TILDE_RBRACE); END_STATE(); - case 227: + case 251: ACCEPT_TOKEN(anon_sym_TILDE_RBRACE); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(197); + lookahead != '>') ADVANCE(221); END_STATE(); - case 228: + case 252: ACCEPT_TOKEN(anon_sym_LBRACK_CARET); END_STATE(); - case 229: + case 253: ACCEPT_TOKEN(anon_sym_LBRACK_CARET); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(197); + lookahead != '>') ADVANCE(221); END_STATE(); - case 230: + case 254: ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); - case 231: + case 255: ACCEPT_TOKEN(anon_sym_RBRACK); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(197); + lookahead != '>') ADVANCE(221); END_STATE(); - case 232: + case 256: ACCEPT_TOKEN(sym__id); - if (lookahead == '-') ADVANCE(164); - if (lookahead == '}') ADVANCE(209); + if (lookahead == '-') ADVANCE(188); + if (lookahead == '}') ADVANCE(233); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); END_STATE(); - case 233: + case 257: ACCEPT_TOKEN(sym__id); - if (lookahead == '-') ADVANCE(164); + if (lookahead == '-') ADVANCE(188); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); END_STATE(); - case 234: + case 258: ACCEPT_TOKEN(sym__id); - if (lookahead == 'D') ADVANCE(245); + if (lookahead == 'D') ADVANCE(269); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); END_STATE(); - case 235: + case 259: ACCEPT_TOKEN(sym__id); - if (lookahead == 'E') ADVANCE(282); + if (lookahead == 'E') ADVANCE(306); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); END_STATE(); - case 236: + case 260: ACCEPT_TOKEN(sym__id); - if (lookahead == 'E') ADVANCE(291); + if (lookahead == 'E') ADVANCE(315); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); END_STATE(); - case 237: + case 261: ACCEPT_TOKEN(sym__id); - if (lookahead == 'F') ADVANCE(244); + if (lookahead == 'F') ADVANCE(268); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); END_STATE(); - case 238: + case 262: ACCEPT_TOKEN(sym__id); - if (lookahead == 'I') ADVANCE(246); + if (lookahead == 'I') ADVANCE(270); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); END_STATE(); - case 239: + case 263: ACCEPT_TOKEN(sym__id); - if (lookahead == 'I') ADVANCE(248); + if (lookahead == 'I') ADVANCE(272); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); END_STATE(); - case 240: + case 264: ACCEPT_TOKEN(sym__id); - if (lookahead == 'M') ADVANCE(236); + if (lookahead == 'M') ADVANCE(260); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); END_STATE(); - case 241: + case 265: ACCEPT_TOKEN(sym__id); - if (lookahead == 'N') ADVANCE(237); + if (lookahead == 'N') ADVANCE(261); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); END_STATE(); - case 242: + case 266: ACCEPT_TOKEN(sym__id); - if (lookahead == 'O') ADVANCE(247); + if (lookahead == 'O') ADVANCE(271); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); END_STATE(); - case 243: + case 267: ACCEPT_TOKEN(sym__id); - if (lookahead == 'O') ADVANCE(234); + if (lookahead == 'O') ADVANCE(258); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); END_STATE(); - case 244: + case 268: ACCEPT_TOKEN(sym__id); - if (lookahead == 'O') ADVANCE(285); + if (lookahead == 'O') ADVANCE(309); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); END_STATE(); - case 245: + case 269: ACCEPT_TOKEN(sym__id); - if (lookahead == 'O') ADVANCE(276); + if (lookahead == 'O') ADVANCE(300); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); END_STATE(); - case 246: + case 270: ACCEPT_TOKEN(sym__id); - if (lookahead == 'P') ADVANCE(279); + if (lookahead == 'P') ADVANCE(303); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); END_STATE(); - case 247: + case 271: ACCEPT_TOKEN(sym__id); - if (lookahead == 'T') ADVANCE(235); + if (lookahead == 'T') ADVANCE(259); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); END_STATE(); - case 248: + case 272: ACCEPT_TOKEN(sym__id); - if (lookahead == 'X') ADVANCE(240); + if (lookahead == 'X') ADVANCE(264); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); END_STATE(); - case 249: + case 273: ACCEPT_TOKEN(sym__id); - if (lookahead == 'X') ADVANCE(288); + if (lookahead == 'X') ADVANCE(312); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); END_STATE(); - case 250: + case 274: ACCEPT_TOKEN(sym__id); - if (lookahead == 'X') ADVANCE(249); + if (lookahead == 'X') ADVANCE(273); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); END_STATE(); - case 251: + case 275: ACCEPT_TOKEN(sym__id); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); END_STATE(); - case 252: + case 276: ACCEPT_TOKEN(anon_sym_LBRACK_RBRACK); END_STATE(); - case 253: + case 277: ACCEPT_TOKEN(anon_sym_BANG_LBRACK); END_STATE(); - case 254: + case 278: ACCEPT_TOKEN(anon_sym_BANG_LBRACK); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(197); + lookahead != '>') ADVANCE(221); END_STATE(); - case 255: + case 279: ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); - case 256: + case 280: ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == ']') ADVANCE(252); + if (lookahead == ']') ADVANCE(276); END_STATE(); - case 257: + case 281: ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '^') ADVANCE(228); + if (lookahead == '^') ADVANCE(252); END_STATE(); - case 258: + case 282: ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '^') ADVANCE(229); + if (lookahead == '^') ADVANCE(253); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(197); + lookahead != '>') ADVANCE(221); END_STATE(); - case 259: + case 283: ACCEPT_TOKEN(anon_sym_RBRACK2); END_STATE(); - case 260: + case 284: ACCEPT_TOKEN(anon_sym_RBRACK2); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(197); + lookahead != '>') ADVANCE(221); END_STATE(); - case 261: + case 285: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 262: + case 286: ACCEPT_TOKEN(aux_sym_inline_link_destination_token1); - if (lookahead == '\r') ADVANCE(262); + if (lookahead == '\r') ADVANCE(286); if (lookahead != 0 && lookahead != '\n' && - lookahead != ')') ADVANCE(263); + lookahead != ')') ADVANCE(287); END_STATE(); - case 263: + case 287: ACCEPT_TOKEN(aux_sym_inline_link_destination_token1); if (lookahead != 0 && lookahead != '\n' && - lookahead != ')') ADVANCE(263); + lookahead != ')') ADVANCE(287); END_STATE(); - case 264: + case 288: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 265: + case 289: ACCEPT_TOKEN(anon_sym_LBRACE2); - if (lookahead == '*') ADVANCE(142); - if (lookahead == '+') ADVANCE(203); - if (lookahead == '-') ADVANCE(207); - if (lookahead == '=') ADVANCE(199); - if (lookahead == '^') ADVANCE(212); - if (lookahead == '_') ADVANCE(137); - if (lookahead == '~') ADVANCE(220); + if (lookahead == '*') ADVANCE(162); + if (lookahead == '+') ADVANCE(227); + if (lookahead == '-') ADVANCE(231); + if (lookahead == '=') ADVANCE(223); + if (lookahead == '^') ADVANCE(236); + if (lookahead == '_') ADVANCE(152); + if (lookahead == '~') ADVANCE(244); END_STATE(); - case 266: + case 290: ACCEPT_TOKEN(anon_sym_LBRACE2); if (lookahead == '"' || - lookahead == '\'') ADVANCE(157); - if (lookahead == '*') ADVANCE(142); - if (lookahead == '+') ADVANCE(203); - if (lookahead == '-') ADVANCE(207); - if (lookahead == '=') ADVANCE(199); - if (lookahead == '^') ADVANCE(212); - if (lookahead == '_') ADVANCE(137); - if (lookahead == '~') ADVANCE(220); + lookahead == '\'') ADVANCE(181); + if (lookahead == '*') ADVANCE(162); + if (lookahead == '+') ADVANCE(227); + if (lookahead == '-') ADVANCE(231); + if (lookahead == '=') ADVANCE(223); + if (lookahead == '^') ADVANCE(236); + if (lookahead == '_') ADVANCE(152); + if (lookahead == '~') ADVANCE(244); END_STATE(); - case 267: + case 291: ACCEPT_TOKEN(anon_sym_LBRACE2); if (lookahead == '"' || - lookahead == '\'') ADVANCE(158); - if (lookahead == '*') ADVANCE(143); - if (lookahead == '+') ADVANCE(204); - if (lookahead == '-') ADVANCE(208); - if (lookahead == '=') ADVANCE(200); - if (lookahead == '^') ADVANCE(213); - if (lookahead == '_') ADVANCE(138); - if (lookahead == '~') ADVANCE(221); + lookahead == '\'') ADVANCE(182); + if (lookahead == '*') ADVANCE(163); + if (lookahead == '+') ADVANCE(228); + if (lookahead == '-') ADVANCE(232); + if (lookahead == '=') ADVANCE(224); + if (lookahead == '^') ADVANCE(237); + if (lookahead == '_') ADVANCE(153); + if (lookahead == '~') ADVANCE(245); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(197); + lookahead != '>') ADVANCE(221); END_STATE(); - case 268: + case 292: ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); - case 269: + case 293: ACCEPT_TOKEN(aux_sym__comment_with_newline_token1); END_STATE(); - case 270: + case 294: ACCEPT_TOKEN(aux_sym__comment_with_newline_token1); - if (lookahead == '\r') ADVANCE(270); - if (lookahead == '\\') ADVANCE(271); + if (lookahead == '\r') ADVANCE(294); + if (lookahead == '\\') ADVANCE(295); if (lookahead != 0 && lookahead != '\n' && - lookahead != '%') ADVANCE(269); + lookahead != '%') ADVANCE(293); END_STATE(); - case 271: + case 295: ACCEPT_TOKEN(aux_sym__comment_with_newline_token1); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && - lookahead != '\\') ADVANCE(167); + lookahead != '\\') ADVANCE(191); END_STATE(); - case 272: + case 296: ACCEPT_TOKEN(anon_sym_LBRACE_EQ2); END_STATE(); - case 273: + case 297: ACCEPT_TOKEN(anon_sym_DOLLAR); END_STATE(); - case 274: + case 298: ACCEPT_TOKEN(anon_sym_DOLLAR); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(197); + lookahead != '>') ADVANCE(221); END_STATE(); - case 275: + case 299: ACCEPT_TOKEN(anon_sym_TODO); END_STATE(); - case 276: + case 300: ACCEPT_TOKEN(anon_sym_TODO); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); END_STATE(); - case 277: + case 301: ACCEPT_TOKEN(anon_sym_TODO); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(197); + lookahead != '>') ADVANCE(221); END_STATE(); - case 278: + case 302: ACCEPT_TOKEN(anon_sym_WIP); END_STATE(); - case 279: + case 303: ACCEPT_TOKEN(anon_sym_WIP); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); END_STATE(); - case 280: + case 304: ACCEPT_TOKEN(anon_sym_WIP); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(197); + lookahead != '>') ADVANCE(221); END_STATE(); - case 281: + case 305: ACCEPT_TOKEN(anon_sym_NOTE); END_STATE(); - case 282: + case 306: ACCEPT_TOKEN(anon_sym_NOTE); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); END_STATE(); - case 283: + case 307: ACCEPT_TOKEN(anon_sym_NOTE); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(197); + lookahead != '>') ADVANCE(221); END_STATE(); - case 284: + case 308: ACCEPT_TOKEN(anon_sym_INFO); END_STATE(); - case 285: + case 309: ACCEPT_TOKEN(anon_sym_INFO); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); END_STATE(); - case 286: + case 310: ACCEPT_TOKEN(anon_sym_INFO); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(197); + lookahead != '>') ADVANCE(221); END_STATE(); - case 287: + case 311: ACCEPT_TOKEN(anon_sym_XXX); END_STATE(); - case 288: + case 312: ACCEPT_TOKEN(anon_sym_XXX); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); END_STATE(); - case 289: + case 313: ACCEPT_TOKEN(anon_sym_XXX); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(197); + lookahead != '>') ADVANCE(221); END_STATE(); - case 290: + case 314: ACCEPT_TOKEN(sym_fixme); END_STATE(); - case 291: + case 315: ACCEPT_TOKEN(sym_fixme); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); END_STATE(); - case 292: + case 316: ACCEPT_TOKEN(sym_fixme); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(197); + lookahead != '>') ADVANCE(221); END_STATE(); - case 293: + case 317: ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); - case 294: + case 318: ACCEPT_TOKEN(anon_sym_PIPE); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(197); + lookahead != '>') ADVANCE(221); END_STATE(); - case 295: + case 319: ACCEPT_TOKEN(sym_language); - if (lookahead == '\r') ADVANCE(295); + if (lookahead == '\r') ADVANCE(319); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && lookahead != '=' && lookahead != '{' && - lookahead != '}') ADVANCE(296); + lookahead != '}') ADVANCE(320); END_STATE(); - case 296: + case 320: ACCEPT_TOKEN(sym_language); if (lookahead != 0 && lookahead != '\t' && @@ -6601,133 +7181,146 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ' && lookahead != '=' && lookahead != '{' && - lookahead != '}') ADVANCE(296); + lookahead != '}') ADVANCE(320); END_STATE(); - case 297: + case 321: ACCEPT_TOKEN(sym__whitespace); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(297); + lookahead == ' ') ADVANCE(321); END_STATE(); - case 298: + case 322: ACCEPT_TOKEN(sym__whitespace1); - if (lookahead == '\t') ADVANCE(299); - if (lookahead == ' ') ADVANCE(298); - if (lookahead == '*') ADVANCE(115); + if (lookahead == '\t') ADVANCE(325); + if (lookahead == ' ') ADVANCE(322); + if (lookahead == '*') ADVANCE(129); + if (lookahead == '_') ADVANCE(130); END_STATE(); - case 299: + case 323: + ACCEPT_TOKEN(sym__whitespace1); + if (lookahead == '\t') ADVANCE(325); + if (lookahead == ' ') ADVANCE(323); + if (lookahead == '_') ADVANCE(130); + END_STATE(); + case 324: + ACCEPT_TOKEN(sym__whitespace1); + if (lookahead == '\t') ADVANCE(325); + if (lookahead == ' ') ADVANCE(324); + if (lookahead == '*') ADVANCE(129); + END_STATE(); + case 325: ACCEPT_TOKEN(sym__whitespace1); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); + lookahead == ' ') ADVANCE(325); END_STATE(); - case 300: + case 326: ACCEPT_TOKEN(sym__newline); END_STATE(); - case 301: + case 327: ACCEPT_TOKEN(aux_sym__text_token1); END_STATE(); - case 302: + case 328: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == '-') ADVANCE(165); + if (lookahead == '-') ADVANCE(189); END_STATE(); - case 303: + case 329: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == '-') ADVANCE(165); - if (lookahead == '}') ADVANCE(209); + if (lookahead == '-') ADVANCE(189); + if (lookahead == '}') ADVANCE(233); END_STATE(); - case 304: + case 330: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == '.') ADVANCE(102); + if (lookahead == '.') ADVANCE(116); END_STATE(); - case 305: + case 331: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'I') ADVANCE(113); + if (lookahead == 'I') ADVANCE(127); END_STATE(); - case 306: + case 332: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'I') ADVANCE(111); + if (lookahead == 'I') ADVANCE(125); END_STATE(); - case 307: + case 333: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'N') ADVANCE(107); + if (lookahead == 'N') ADVANCE(121); END_STATE(); - case 308: + case 334: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'O') ADVANCE(112); + if (lookahead == 'O') ADVANCE(126); END_STATE(); - case 309: + case 335: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'O') ADVANCE(104); + if (lookahead == 'O') ADVANCE(118); END_STATE(); - case 310: + case 336: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'X') ADVANCE(114); + if (lookahead == 'X') ADVANCE(128); END_STATE(); - case 311: + case 337: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == '[') ADVANCE(253); + if (lookahead == '[') ADVANCE(277); END_STATE(); - case 312: + case 338: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == '}') ADVANCE(205); + if (lookahead == '}') ADVANCE(229); END_STATE(); - case 313: + case 339: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == '}') ADVANCE(201); + if (lookahead == '}') ADVANCE(225); END_STATE(); - case 314: + case 340: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == '}') ADVANCE(157); + if (lookahead == '}') ADVANCE(181); END_STATE(); - case 315: + case 341: ACCEPT_TOKEN(aux_sym__text_token1); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != ':') ADVANCE(103); + lookahead != ':') ADVANCE(117); END_STATE(); - case 316: + case 342: ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); - case 317: + case 343: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(102); + if (lookahead == '.') ADVANCE(116); END_STATE(); - case 318: + case 344: ACCEPT_TOKEN(sym_identifier); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '}') ADVANCE(318); + lookahead != '}') ADVANCE(344); END_STATE(); - case 319: + case 345: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 320: + case 346: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '}') ADVANCE(201); + if (lookahead == '}') ADVANCE(225); END_STATE(); - case 321: + case 347: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 322: + case 348: ACCEPT_TOKEN(aux_sym_value_token1); - if (lookahead == '\r') ADVANCE(322); + if (lookahead == '\r') ADVANCE(348); if (lookahead != 0 && lookahead != '\n' && - lookahead != '"') ADVANCE(323); + lookahead != '"') ADVANCE(349); END_STATE(); - case 323: + case 349: ACCEPT_TOKEN(aux_sym_value_token1); if (lookahead != 0 && lookahead != '\n' && - lookahead != '"') ADVANCE(323); + lookahead != '"') ADVANCE(349); END_STATE(); - case 324: + case 350: ACCEPT_TOKEN(aux_sym_value_token2); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(324); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(350); END_STATE(); default: return false; @@ -6736,907 +7329,1027 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 119, .external_lex_state = 2}, - [2] = {.lex_state = 17, .external_lex_state = 2}, - [3] = {.lex_state = 1, .external_lex_state = 2}, - [4] = {.lex_state = 59, .external_lex_state = 2}, - [5] = {.lex_state = 20, .external_lex_state = 2}, - [6] = {.lex_state = 74, .external_lex_state = 2}, - [7] = {.lex_state = 85, .external_lex_state = 2}, - [8] = {.lex_state = 22, .external_lex_state = 2}, - [9] = {.lex_state = 124, .external_lex_state = 2}, - [10] = {.lex_state = 25, .external_lex_state = 2}, - [11] = {.lex_state = 29, .external_lex_state = 2}, - [12] = {.lex_state = 121, .external_lex_state = 2}, - [13] = {.lex_state = 121, .external_lex_state = 2}, - [14] = {.lex_state = 121, .external_lex_state = 2}, - [15] = {.lex_state = 121, .external_lex_state = 2}, - [16] = {.lex_state = 121, .external_lex_state = 2}, - [17] = {.lex_state = 25, .external_lex_state = 2}, - [18] = {.lex_state = 121, .external_lex_state = 2}, - [19] = {.lex_state = 25, .external_lex_state = 2}, - [20] = {.lex_state = 3, .external_lex_state = 2}, - [21] = {.lex_state = 25, .external_lex_state = 2}, - [22] = {.lex_state = 25, .external_lex_state = 2}, - [23] = {.lex_state = 34, .external_lex_state = 2}, - [24] = {.lex_state = 67, .external_lex_state = 2}, - [25] = {.lex_state = 67, .external_lex_state = 2}, - [26] = {.lex_state = 67, .external_lex_state = 2}, - [27] = {.lex_state = 67, .external_lex_state = 2}, - [28] = {.lex_state = 67, .external_lex_state = 2}, - [29] = {.lex_state = 67, .external_lex_state = 2}, - [30] = {.lex_state = 78, .external_lex_state = 2}, - [31] = {.lex_state = 78, .external_lex_state = 2}, - [32] = {.lex_state = 78, .external_lex_state = 2}, - [33] = {.lex_state = 78, .external_lex_state = 2}, - [34] = {.lex_state = 78, .external_lex_state = 2}, - [35] = {.lex_state = 34, .external_lex_state = 2}, - [36] = {.lex_state = 29, .external_lex_state = 2}, - [37] = {.lex_state = 34, .external_lex_state = 2}, - [38] = {.lex_state = 29, .external_lex_state = 2}, - [39] = {.lex_state = 29, .external_lex_state = 2}, - [40] = {.lex_state = 29, .external_lex_state = 2}, - [41] = {.lex_state = 25, .external_lex_state = 2}, - [42] = {.lex_state = 29, .external_lex_state = 2}, - [43] = {.lex_state = 78, .external_lex_state = 2}, - [44] = {.lex_state = 124, .external_lex_state = 2}, - [45] = {.lex_state = 124, .external_lex_state = 2}, - [46] = {.lex_state = 124, .external_lex_state = 2}, - [47] = {.lex_state = 124, .external_lex_state = 2}, - [48] = {.lex_state = 88, .external_lex_state = 2}, - [49] = {.lex_state = 124, .external_lex_state = 2}, - [50] = {.lex_state = 34, .external_lex_state = 2}, - [51] = {.lex_state = 124, .external_lex_state = 2}, - [52] = {.lex_state = 124, .external_lex_state = 2}, - [53] = {.lex_state = 88, .external_lex_state = 2}, - [54] = {.lex_state = 88, .external_lex_state = 2}, - [55] = {.lex_state = 88, .external_lex_state = 2}, - [56] = {.lex_state = 88, .external_lex_state = 2}, - [57] = {.lex_state = 88, .external_lex_state = 2}, - [58] = {.lex_state = 124, .external_lex_state = 2}, - [59] = {.lex_state = 3, .external_lex_state = 2}, - [60] = {.lex_state = 3, .external_lex_state = 2}, - [61] = {.lex_state = 34, .external_lex_state = 2}, - [62] = {.lex_state = 34, .external_lex_state = 2}, + [1] = {.lex_state = 134, .external_lex_state = 2}, + [2] = {.lex_state = 24, .external_lex_state = 2}, + [3] = {.lex_state = 139, .external_lex_state = 2}, + [4] = {.lex_state = 26, .external_lex_state = 2}, + [5] = {.lex_state = 67, .external_lex_state = 2}, + [6] = {.lex_state = 80, .external_lex_state = 2}, + [7] = {.lex_state = 1, .external_lex_state = 2}, + [8] = {.lex_state = 9, .external_lex_state = 2}, + [9] = {.lex_state = 29, .external_lex_state = 2}, + [10] = {.lex_state = 95, .external_lex_state = 2}, + [11] = {.lex_state = 139, .external_lex_state = 2}, + [12] = {.lex_state = 31, .external_lex_state = 2}, + [13] = {.lex_state = 71, .external_lex_state = 2}, + [14] = {.lex_state = 71, .external_lex_state = 2}, + [15] = {.lex_state = 136, .external_lex_state = 2}, + [16] = {.lex_state = 136, .external_lex_state = 2}, + [17] = {.lex_state = 136, .external_lex_state = 2}, + [18] = {.lex_state = 136, .external_lex_state = 2}, + [19] = {.lex_state = 136, .external_lex_state = 2}, + [20] = {.lex_state = 71, .external_lex_state = 2}, + [21] = {.lex_state = 136, .external_lex_state = 2}, + [22] = {.lex_state = 71, .external_lex_state = 2}, + [23] = {.lex_state = 71, .external_lex_state = 2}, + [24] = {.lex_state = 36, .external_lex_state = 2}, + [25] = {.lex_state = 36, .external_lex_state = 2}, + [26] = {.lex_state = 36, .external_lex_state = 2}, + [27] = {.lex_state = 36, .external_lex_state = 2}, + [28] = {.lex_state = 36, .external_lex_state = 2}, + [29] = {.lex_state = 36, .external_lex_state = 2}, + [30] = {.lex_state = 71, .external_lex_state = 2}, + [31] = {.lex_state = 87, .external_lex_state = 2}, + [32] = {.lex_state = 87, .external_lex_state = 2}, + [33] = {.lex_state = 87, .external_lex_state = 2}, + [34] = {.lex_state = 87, .external_lex_state = 2}, + [35] = {.lex_state = 87, .external_lex_state = 2}, + [36] = {.lex_state = 87, .external_lex_state = 2}, + [37] = {.lex_state = 139, .external_lex_state = 2}, + [38] = {.lex_state = 139, .external_lex_state = 2}, + [39] = {.lex_state = 139, .external_lex_state = 2}, + [40] = {.lex_state = 139, .external_lex_state = 2}, + [41] = {.lex_state = 40, .external_lex_state = 2}, + [42] = {.lex_state = 98, .external_lex_state = 2}, + [43] = {.lex_state = 40, .external_lex_state = 2}, + [44] = {.lex_state = 40, .external_lex_state = 2}, + [45] = {.lex_state = 40, .external_lex_state = 2}, + [46] = {.lex_state = 40, .external_lex_state = 2}, + [47] = {.lex_state = 40, .external_lex_state = 2}, + [48] = {.lex_state = 139, .external_lex_state = 2}, + [49] = {.lex_state = 139, .external_lex_state = 2}, + [50] = {.lex_state = 139, .external_lex_state = 2}, + [51] = {.lex_state = 3, .external_lex_state = 2}, + [52] = {.lex_state = 3, .external_lex_state = 2}, + [53] = {.lex_state = 31, .external_lex_state = 2}, + [54] = {.lex_state = 3, .external_lex_state = 2}, + [55] = {.lex_state = 98, .external_lex_state = 2}, + [56] = {.lex_state = 11, .external_lex_state = 2}, + [57] = {.lex_state = 11, .external_lex_state = 2}, + [58] = {.lex_state = 11, .external_lex_state = 2}, + [59] = {.lex_state = 11, .external_lex_state = 2}, + [60] = {.lex_state = 11, .external_lex_state = 2}, + [61] = {.lex_state = 98, .external_lex_state = 2}, + [62] = {.lex_state = 98, .external_lex_state = 2}, [63] = {.lex_state = 3, .external_lex_state = 2}, [64] = {.lex_state = 3, .external_lex_state = 2}, - [65] = {.lex_state = 3, .external_lex_state = 2}, - [66] = {.lex_state = 121, .external_lex_state = 2}, - [67] = {.lex_state = 121, .external_lex_state = 2}, - [68] = {.lex_state = 121, .external_lex_state = 2}, - [69] = {.lex_state = 121, .external_lex_state = 2}, - [70] = {.lex_state = 121, .external_lex_state = 2}, - [71] = {.lex_state = 121, .external_lex_state = 2}, - [72] = {.lex_state = 65, .external_lex_state = 2}, - [73] = {.lex_state = 32, .external_lex_state = 2}, - [74] = {.lex_state = 119, .external_lex_state = 2}, - [75] = {.lex_state = 119, .external_lex_state = 2}, - [76] = {.lex_state = 119, .external_lex_state = 2}, - [77] = {.lex_state = 119, .external_lex_state = 2}, - [78] = {.lex_state = 23, .external_lex_state = 2}, - [79] = {.lex_state = 32, .external_lex_state = 2}, - [80] = {.lex_state = 119, .external_lex_state = 2}, - [81] = {.lex_state = 119, .external_lex_state = 2}, - [82] = {.lex_state = 119, .external_lex_state = 2}, - [83] = {.lex_state = 119, .external_lex_state = 2}, - [84] = {.lex_state = 119, .external_lex_state = 2}, - [85] = {.lex_state = 23, .external_lex_state = 2}, - [86] = {.lex_state = 2, .external_lex_state = 2}, - [87] = {.lex_state = 119, .external_lex_state = 2}, - [88] = {.lex_state = 2, .external_lex_state = 2}, - [89] = {.lex_state = 119, .external_lex_state = 2}, - [90] = {.lex_state = 119, .external_lex_state = 2}, - [91] = {.lex_state = 119, .external_lex_state = 2}, - [92] = {.lex_state = 119, .external_lex_state = 2}, - [93] = {.lex_state = 119, .external_lex_state = 2}, - [94] = {.lex_state = 119, .external_lex_state = 2}, - [95] = {.lex_state = 60, .external_lex_state = 2}, - [96] = {.lex_state = 119, .external_lex_state = 2}, - [97] = {.lex_state = 60, .external_lex_state = 2}, - [98] = {.lex_state = 27, .external_lex_state = 2}, - [99] = {.lex_state = 119, .external_lex_state = 2}, - [100] = {.lex_state = 119, .external_lex_state = 2}, - [101] = {.lex_state = 65, .external_lex_state = 2}, - [102] = {.lex_state = 119, .external_lex_state = 2}, - [103] = {.lex_state = 119, .external_lex_state = 2}, - [104] = {.lex_state = 119, .external_lex_state = 2}, - [105] = {.lex_state = 87, .external_lex_state = 2}, - [106] = {.lex_state = 119, .external_lex_state = 2}, - [107] = {.lex_state = 27, .external_lex_state = 2}, - [108] = {.lex_state = 119, .external_lex_state = 2}, - [109] = {.lex_state = 119, .external_lex_state = 2}, - [110] = {.lex_state = 119, .external_lex_state = 2}, - [111] = {.lex_state = 76, .external_lex_state = 2}, - [112] = {.lex_state = 119, .external_lex_state = 2}, - [113] = {.lex_state = 76, .external_lex_state = 2}, - [114] = {.lex_state = 119, .external_lex_state = 2}, - [115] = {.lex_state = 119, .external_lex_state = 2}, - [116] = {.lex_state = 87, .external_lex_state = 2}, - [117] = {.lex_state = 119, .external_lex_state = 2}, - [118] = {.lex_state = 119, .external_lex_state = 2}, - [119] = {.lex_state = 119, .external_lex_state = 2}, - [120] = {.lex_state = 119, .external_lex_state = 2}, - [121] = {.lex_state = 119, .external_lex_state = 2}, - [122] = {.lex_state = 10, .external_lex_state = 2}, - [123] = {.lex_state = 5, .external_lex_state = 2}, - [124] = {.lex_state = 38, .external_lex_state = 2}, - [125] = {.lex_state = 78, .external_lex_state = 2}, - [126] = {.lex_state = 11, .external_lex_state = 2}, - [127] = {.lex_state = 79, .external_lex_state = 2}, - [128] = {.lex_state = 40, .external_lex_state = 2}, - [129] = {.lex_state = 9, .external_lex_state = 2}, - [130] = {.lex_state = 25, .external_lex_state = 2}, - [131] = {.lex_state = 29, .external_lex_state = 2}, - [132] = {.lex_state = 34, .external_lex_state = 2}, - [133] = {.lex_state = 13, .external_lex_state = 2}, - [134] = {.lex_state = 88, .external_lex_state = 2}, - [135] = {.lex_state = 69, .external_lex_state = 2}, - [136] = {.lex_state = 126, .external_lex_state = 2}, - [137] = {.lex_state = 42, .external_lex_state = 2}, - [138] = {.lex_state = 68, .external_lex_state = 2}, - [139] = {.lex_state = 26, .external_lex_state = 2}, - [140] = {.lex_state = 14, .external_lex_state = 2}, - [141] = {.lex_state = 117, .external_lex_state = 2}, - [142] = {.lex_state = 81, .external_lex_state = 2}, - [143] = {.lex_state = 122, .external_lex_state = 2}, - [144] = {.lex_state = 124, .external_lex_state = 2}, - [145] = {.lex_state = 30, .external_lex_state = 2}, - [146] = {.lex_state = 67, .external_lex_state = 2}, - [147] = {.lex_state = 6, .external_lex_state = 2}, - [148] = {.lex_state = 62, .external_lex_state = 2}, - [149] = {.lex_state = 92, .external_lex_state = 2}, - [150] = {.lex_state = 45, .external_lex_state = 2}, - [151] = {.lex_state = 121, .external_lex_state = 2}, - [152] = {.lex_state = 35, .external_lex_state = 2}, - [153] = {.lex_state = 89, .external_lex_state = 2}, - [154] = {.lex_state = 7, .external_lex_state = 2}, - [155] = {.lex_state = 15, .external_lex_state = 2}, - [156] = {.lex_state = 3, .external_lex_state = 2}, - [157] = {.lex_state = 4, .external_lex_state = 2}, - [158] = {.lex_state = 8, .external_lex_state = 2}, - [159] = {.lex_state = 3, .external_lex_state = 2}, - [160] = {.lex_state = 48, .external_lex_state = 2}, - [161] = {.lex_state = 25, .external_lex_state = 2}, - [162] = {.lex_state = 71, .external_lex_state = 2}, - [163] = {.lex_state = 67, .external_lex_state = 2}, - [164] = {.lex_state = 50, .external_lex_state = 2}, - [165] = {.lex_state = 3, .external_lex_state = 2}, - [166] = {.lex_state = 34, .external_lex_state = 2}, - [167] = {.lex_state = 25, .external_lex_state = 2}, - [168] = {.lex_state = 52, .external_lex_state = 2}, - [169] = {.lex_state = 117, .external_lex_state = 2}, - [170] = {.lex_state = 126, .external_lex_state = 2}, - [171] = {.lex_state = 121, .external_lex_state = 2}, - [172] = {.lex_state = 124, .external_lex_state = 2}, - [173] = {.lex_state = 29, .external_lex_state = 2}, - [174] = {.lex_state = 67, .external_lex_state = 2}, - [175] = {.lex_state = 78, .external_lex_state = 2}, - [176] = {.lex_state = 128, .external_lex_state = 2}, - [177] = {.lex_state = 122, .external_lex_state = 2}, - [178] = {.lex_state = 82, .external_lex_state = 2}, - [179] = {.lex_state = 88, .external_lex_state = 2}, - [180] = {.lex_state = 34, .external_lex_state = 2}, - [181] = {.lex_state = 54, .external_lex_state = 2}, - [182] = {.lex_state = 124, .external_lex_state = 2}, - [183] = {.lex_state = 93, .external_lex_state = 2}, - [184] = {.lex_state = 121, .external_lex_state = 2}, - [185] = {.lex_state = 88, .external_lex_state = 2}, - [186] = {.lex_state = 78, .external_lex_state = 2}, - [187] = {.lex_state = 29, .external_lex_state = 2}, - [188] = {.lex_state = 121, .external_lex_state = 2}, + [65] = {.lex_state = 11, .external_lex_state = 2}, + [66] = {.lex_state = 98, .external_lex_state = 2}, + [67] = {.lex_state = 31, .external_lex_state = 2}, + [68] = {.lex_state = 98, .external_lex_state = 2}, + [69] = {.lex_state = 3, .external_lex_state = 2}, + [70] = {.lex_state = 31, .external_lex_state = 2}, + [71] = {.lex_state = 31, .external_lex_state = 2}, + [72] = {.lex_state = 31, .external_lex_state = 2}, + [73] = {.lex_state = 136, .external_lex_state = 2}, + [74] = {.lex_state = 136, .external_lex_state = 2}, + [75] = {.lex_state = 136, .external_lex_state = 2}, + [76] = {.lex_state = 136, .external_lex_state = 2}, + [77] = {.lex_state = 136, .external_lex_state = 2}, + [78] = {.lex_state = 136, .external_lex_state = 2}, + [79] = {.lex_state = 69, .external_lex_state = 2}, + [80] = {.lex_state = 134, .external_lex_state = 2}, + [81] = {.lex_state = 34, .external_lex_state = 2}, + [82] = {.lex_state = 134, .external_lex_state = 2}, + [83] = {.lex_state = 96, .external_lex_state = 2}, + [84] = {.lex_state = 30, .external_lex_state = 2}, + [85] = {.lex_state = 134, .external_lex_state = 2}, + [86] = {.lex_state = 134, .external_lex_state = 2}, + [87] = {.lex_state = 34, .external_lex_state = 2}, + [88] = {.lex_state = 134, .external_lex_state = 2}, + [89] = {.lex_state = 134, .external_lex_state = 2}, + [90] = {.lex_state = 134, .external_lex_state = 2}, + [91] = {.lex_state = 134, .external_lex_state = 2}, + [92] = {.lex_state = 134, .external_lex_state = 2}, + [93] = {.lex_state = 134, .external_lex_state = 2}, + [94] = {.lex_state = 30, .external_lex_state = 2}, + [95] = {.lex_state = 38, .external_lex_state = 2}, + [96] = {.lex_state = 134, .external_lex_state = 2}, + [97] = {.lex_state = 134, .external_lex_state = 2}, + [98] = {.lex_state = 134, .external_lex_state = 2}, + [99] = {.lex_state = 134, .external_lex_state = 2}, + [100] = {.lex_state = 134, .external_lex_state = 2}, + [101] = {.lex_state = 134, .external_lex_state = 2}, + [102] = {.lex_state = 134, .external_lex_state = 2}, + [103] = {.lex_state = 69, .external_lex_state = 2}, + [104] = {.lex_state = 2, .external_lex_state = 2}, + [105] = {.lex_state = 96, .external_lex_state = 2}, + [106] = {.lex_state = 134, .external_lex_state = 2}, + [107] = {.lex_state = 134, .external_lex_state = 2}, + [108] = {.lex_state = 134, .external_lex_state = 2}, + [109] = {.lex_state = 134, .external_lex_state = 2}, + [110] = {.lex_state = 134, .external_lex_state = 2}, + [111] = {.lex_state = 134, .external_lex_state = 2}, + [112] = {.lex_state = 134, .external_lex_state = 2}, + [113] = {.lex_state = 134, .external_lex_state = 2}, + [114] = {.lex_state = 134, .external_lex_state = 2}, + [115] = {.lex_state = 38, .external_lex_state = 2}, + [116] = {.lex_state = 81, .external_lex_state = 2}, + [117] = {.lex_state = 85, .external_lex_state = 2}, + [118] = {.lex_state = 81, .external_lex_state = 2}, + [119] = {.lex_state = 85, .external_lex_state = 2}, + [120] = {.lex_state = 134, .external_lex_state = 2}, + [121] = {.lex_state = 134, .external_lex_state = 2}, + [122] = {.lex_state = 134, .external_lex_state = 2}, + [123] = {.lex_state = 134, .external_lex_state = 2}, + [124] = {.lex_state = 134, .external_lex_state = 2}, + [125] = {.lex_state = 134, .external_lex_state = 2}, + [126] = {.lex_state = 2, .external_lex_state = 2}, + [127] = {.lex_state = 134, .external_lex_state = 2}, + [128] = {.lex_state = 134, .external_lex_state = 2}, + [129] = {.lex_state = 134, .external_lex_state = 2}, + [130] = {.lex_state = 134, .external_lex_state = 2}, + [131] = {.lex_state = 134, .external_lex_state = 2}, + [132] = {.lex_state = 5, .external_lex_state = 2}, + [133] = {.lex_state = 6, .external_lex_state = 2}, + [134] = {.lex_state = 7, .external_lex_state = 2}, + [135] = {.lex_state = 32, .external_lex_state = 2}, + [136] = {.lex_state = 132, .external_lex_state = 2}, + [137] = {.lex_state = 98, .external_lex_state = 2}, + [138] = {.lex_state = 16, .external_lex_state = 2}, + [139] = {.lex_state = 47, .external_lex_state = 2}, + [140] = {.lex_state = 49, .external_lex_state = 2}, + [141] = {.lex_state = 40, .external_lex_state = 2}, + [142] = {.lex_state = 99, .external_lex_state = 2}, + [143] = {.lex_state = 37, .external_lex_state = 2}, + [144] = {.lex_state = 15, .external_lex_state = 2}, + [145] = {.lex_state = 137, .external_lex_state = 2}, + [146] = {.lex_state = 88, .external_lex_state = 2}, + [147] = {.lex_state = 31, .external_lex_state = 2}, + [148] = {.lex_state = 50, .external_lex_state = 2}, + [149] = {.lex_state = 139, .external_lex_state = 2}, + [150] = {.lex_state = 76, .external_lex_state = 2}, + [151] = {.lex_state = 17, .external_lex_state = 2}, + [152] = {.lex_state = 41, .external_lex_state = 2}, + [153] = {.lex_state = 87, .external_lex_state = 2}, + [154] = {.lex_state = 83, .external_lex_state = 2}, + [155] = {.lex_state = 36, .external_lex_state = 2}, + [156] = {.lex_state = 91, .external_lex_state = 2}, + [157] = {.lex_state = 18, .external_lex_state = 2}, + [158] = {.lex_state = 142, .external_lex_state = 2}, + [159] = {.lex_state = 19, .external_lex_state = 2}, + [160] = {.lex_state = 12, .external_lex_state = 2}, + [161] = {.lex_state = 3, .external_lex_state = 2}, + [162] = {.lex_state = 53, .external_lex_state = 2}, + [163] = {.lex_state = 11, .external_lex_state = 2}, + [164] = {.lex_state = 21, .external_lex_state = 2}, + [165] = {.lex_state = 13, .external_lex_state = 2}, + [166] = {.lex_state = 72, .external_lex_state = 2}, + [167] = {.lex_state = 22, .external_lex_state = 2}, + [168] = {.lex_state = 102, .external_lex_state = 2}, + [169] = {.lex_state = 4, .external_lex_state = 2}, + [170] = {.lex_state = 71, .external_lex_state = 2}, + [171] = {.lex_state = 136, .external_lex_state = 2}, + [172] = {.lex_state = 71, .external_lex_state = 2}, + [173] = {.lex_state = 36, .external_lex_state = 3}, + [174] = {.lex_state = 40, .external_lex_state = 3}, + [175] = {.lex_state = 71, .external_lex_state = 2}, + [176] = {.lex_state = 36, .external_lex_state = 2}, + [177] = {.lex_state = 54, .external_lex_state = 2}, + [178] = {.lex_state = 3, .external_lex_state = 2}, + [179] = {.lex_state = 11, .external_lex_state = 2}, + [180] = {.lex_state = 8, .external_lex_state = 2}, + [181] = {.lex_state = 87, .external_lex_state = 3}, + [182] = {.lex_state = 87, .external_lex_state = 2}, + [183] = {.lex_state = 57, .external_lex_state = 2}, + [184] = {.lex_state = 11, .external_lex_state = 2}, + [185] = {.lex_state = 142, .external_lex_state = 2}, + [186] = {.lex_state = 31, .external_lex_state = 3}, + [187] = {.lex_state = 14, .external_lex_state = 2}, + [188] = {.lex_state = 31, .external_lex_state = 2}, [189] = {.lex_state = 3, .external_lex_state = 2}, - [190] = {.lex_state = 124, .external_lex_state = 2}, - [191] = {.lex_state = 29, .external_lex_state = 2}, - [192] = {.lex_state = 29, .external_lex_state = 2}, - [193] = {.lex_state = 29, .external_lex_state = 2}, - [194] = {.lex_state = 29, .external_lex_state = 2}, - [195] = {.lex_state = 29, .external_lex_state = 2}, - [196] = {.lex_state = 29, .external_lex_state = 2}, - [197] = {.lex_state = 25, .external_lex_state = 2}, - [198] = {.lex_state = 25, .external_lex_state = 2}, - [199] = {.lex_state = 25, .external_lex_state = 2}, - [200] = {.lex_state = 25, .external_lex_state = 2}, - [201] = {.lex_state = 23, .external_lex_state = 2}, - [202] = {.lex_state = 25, .external_lex_state = 2}, - [203] = {.lex_state = 25, .external_lex_state = 2}, - [204] = {.lex_state = 88, .external_lex_state = 2}, - [205] = {.lex_state = 25, .external_lex_state = 2}, - [206] = {.lex_state = 25, .external_lex_state = 2}, - [207] = {.lex_state = 25, .external_lex_state = 2}, - [208] = {.lex_state = 25, .external_lex_state = 2}, - [209] = {.lex_state = 25, .external_lex_state = 2}, - [210] = {.lex_state = 25, .external_lex_state = 2}, - [211] = {.lex_state = 25, .external_lex_state = 2}, - [212] = {.lex_state = 88, .external_lex_state = 2}, - [213] = {.lex_state = 25, .external_lex_state = 2}, - [214] = {.lex_state = 25, .external_lex_state = 2}, - [215] = {.lex_state = 25, .external_lex_state = 2}, - [216] = {.lex_state = 25, .external_lex_state = 2}, - [217] = {.lex_state = 25, .external_lex_state = 2}, - [218] = {.lex_state = 25, .external_lex_state = 2}, - [219] = {.lex_state = 25, .external_lex_state = 2}, - [220] = {.lex_state = 25, .external_lex_state = 2}, - [221] = {.lex_state = 25, .external_lex_state = 2}, - [222] = {.lex_state = 25, .external_lex_state = 2}, - [223] = {.lex_state = 3, .external_lex_state = 2}, - [224] = {.lex_state = 25, .external_lex_state = 2}, - [225] = {.lex_state = 25, .external_lex_state = 2}, - [226] = {.lex_state = 25, .external_lex_state = 2}, - [227] = {.lex_state = 25, .external_lex_state = 2}, - [228] = {.lex_state = 25, .external_lex_state = 2}, - [229] = {.lex_state = 25, .external_lex_state = 2}, - [230] = {.lex_state = 25, .external_lex_state = 2}, - [231] = {.lex_state = 34, .external_lex_state = 2}, - [232] = {.lex_state = 34, .external_lex_state = 2}, - [233] = {.lex_state = 34, .external_lex_state = 2}, - [234] = {.lex_state = 34, .external_lex_state = 2}, - [235] = {.lex_state = 32, .external_lex_state = 2}, - [236] = {.lex_state = 34, .external_lex_state = 2}, - [237] = {.lex_state = 34, .external_lex_state = 2}, - [238] = {.lex_state = 3, .external_lex_state = 2}, - [239] = {.lex_state = 34, .external_lex_state = 2}, - [240] = {.lex_state = 34, .external_lex_state = 2}, - [241] = {.lex_state = 34, .external_lex_state = 2}, - [242] = {.lex_state = 34, .external_lex_state = 2}, - [243] = {.lex_state = 34, .external_lex_state = 2}, - [244] = {.lex_state = 34, .external_lex_state = 2}, - [245] = {.lex_state = 34, .external_lex_state = 2}, - [246] = {.lex_state = 124, .external_lex_state = 2}, - [247] = {.lex_state = 34, .external_lex_state = 2}, - [248] = {.lex_state = 34, .external_lex_state = 2}, - [249] = {.lex_state = 34, .external_lex_state = 2}, - [250] = {.lex_state = 34, .external_lex_state = 2}, - [251] = {.lex_state = 34, .external_lex_state = 2}, - [252] = {.lex_state = 34, .external_lex_state = 2}, - [253] = {.lex_state = 34, .external_lex_state = 2}, - [254] = {.lex_state = 34, .external_lex_state = 2}, - [255] = {.lex_state = 34, .external_lex_state = 2}, - [256] = {.lex_state = 34, .external_lex_state = 2}, - [257] = {.lex_state = 124, .external_lex_state = 2}, - [258] = {.lex_state = 34, .external_lex_state = 2}, - [259] = {.lex_state = 34, .external_lex_state = 2}, - [260] = {.lex_state = 34, .external_lex_state = 2}, - [261] = {.lex_state = 34, .external_lex_state = 2}, - [262] = {.lex_state = 34, .external_lex_state = 2}, - [263] = {.lex_state = 34, .external_lex_state = 2}, - [264] = {.lex_state = 34, .external_lex_state = 2}, - [265] = {.lex_state = 27, .external_lex_state = 2}, - [266] = {.lex_state = 67, .external_lex_state = 2}, - [267] = {.lex_state = 78, .external_lex_state = 2}, - [268] = {.lex_state = 29, .external_lex_state = 2}, - [269] = {.lex_state = 29, .external_lex_state = 2}, - [270] = {.lex_state = 29, .external_lex_state = 2}, - [271] = {.lex_state = 29, .external_lex_state = 2}, - [272] = {.lex_state = 29, .external_lex_state = 2}, - [273] = {.lex_state = 29, .external_lex_state = 2}, - [274] = {.lex_state = 29, .external_lex_state = 2}, - [275] = {.lex_state = 29, .external_lex_state = 2}, - [276] = {.lex_state = 29, .external_lex_state = 2}, - [277] = {.lex_state = 67, .external_lex_state = 2}, - [278] = {.lex_state = 67, .external_lex_state = 2}, - [279] = {.lex_state = 67, .external_lex_state = 2}, - [280] = {.lex_state = 65, .external_lex_state = 2}, - [281] = {.lex_state = 29, .external_lex_state = 2}, - [282] = {.lex_state = 78, .external_lex_state = 2}, - [283] = {.lex_state = 67, .external_lex_state = 2}, - [284] = {.lex_state = 67, .external_lex_state = 2}, - [285] = {.lex_state = 67, .external_lex_state = 2}, - [286] = {.lex_state = 67, .external_lex_state = 2}, - [287] = {.lex_state = 67, .external_lex_state = 2}, - [288] = {.lex_state = 67, .external_lex_state = 2}, - [289] = {.lex_state = 67, .external_lex_state = 2}, - [290] = {.lex_state = 67, .external_lex_state = 2}, - [291] = {.lex_state = 67, .external_lex_state = 2}, - [292] = {.lex_state = 67, .external_lex_state = 2}, - [293] = {.lex_state = 29, .external_lex_state = 2}, - [294] = {.lex_state = 29, .external_lex_state = 2}, - [295] = {.lex_state = 29, .external_lex_state = 2}, - [296] = {.lex_state = 67, .external_lex_state = 2}, - [297] = {.lex_state = 67, .external_lex_state = 2}, - [298] = {.lex_state = 67, .external_lex_state = 2}, - [299] = {.lex_state = 67, .external_lex_state = 2}, - [300] = {.lex_state = 67, .external_lex_state = 2}, - [301] = {.lex_state = 67, .external_lex_state = 2}, - [302] = {.lex_state = 67, .external_lex_state = 2}, - [303] = {.lex_state = 67, .external_lex_state = 2}, - [304] = {.lex_state = 67, .external_lex_state = 2}, - [305] = {.lex_state = 67, .external_lex_state = 2}, - [306] = {.lex_state = 67, .external_lex_state = 2}, - [307] = {.lex_state = 34, .external_lex_state = 2}, - [308] = {.lex_state = 67, .external_lex_state = 2}, - [309] = {.lex_state = 67, .external_lex_state = 2}, - [310] = {.lex_state = 67, .external_lex_state = 2}, - [311] = {.lex_state = 67, .external_lex_state = 2}, - [312] = {.lex_state = 67, .external_lex_state = 2}, - [313] = {.lex_state = 67, .external_lex_state = 2}, - [314] = {.lex_state = 67, .external_lex_state = 2}, - [315] = {.lex_state = 29, .external_lex_state = 2}, - [316] = {.lex_state = 78, .external_lex_state = 2}, - [317] = {.lex_state = 29, .external_lex_state = 2}, - [318] = {.lex_state = 29, .external_lex_state = 2}, - [319] = {.lex_state = 29, .external_lex_state = 2}, - [320] = {.lex_state = 34, .external_lex_state = 2}, - [321] = {.lex_state = 29, .external_lex_state = 2}, - [322] = {.lex_state = 29, .external_lex_state = 2}, - [323] = {.lex_state = 121, .external_lex_state = 2}, - [324] = {.lex_state = 29, .external_lex_state = 2}, - [325] = {.lex_state = 29, .external_lex_state = 2}, - [326] = {.lex_state = 29, .external_lex_state = 2}, - [327] = {.lex_state = 78, .external_lex_state = 2}, - [328] = {.lex_state = 78, .external_lex_state = 2}, - [329] = {.lex_state = 78, .external_lex_state = 2}, - [330] = {.lex_state = 76, .external_lex_state = 2}, - [331] = {.lex_state = 29, .external_lex_state = 2}, - [332] = {.lex_state = 121, .external_lex_state = 2}, - [333] = {.lex_state = 78, .external_lex_state = 2}, - [334] = {.lex_state = 78, .external_lex_state = 2}, - [335] = {.lex_state = 25, .external_lex_state = 2}, - [336] = {.lex_state = 78, .external_lex_state = 2}, - [337] = {.lex_state = 78, .external_lex_state = 2}, - [338] = {.lex_state = 78, .external_lex_state = 2}, - [339] = {.lex_state = 78, .external_lex_state = 2}, - [340] = {.lex_state = 78, .external_lex_state = 2}, - [341] = {.lex_state = 78, .external_lex_state = 2}, - [342] = {.lex_state = 78, .external_lex_state = 2}, - [343] = {.lex_state = 121, .external_lex_state = 2}, - [344] = {.lex_state = 121, .external_lex_state = 2}, - [345] = {.lex_state = 119, .external_lex_state = 2}, - [346] = {.lex_state = 25, .external_lex_state = 2}, - [347] = {.lex_state = 78, .external_lex_state = 2}, - [348] = {.lex_state = 78, .external_lex_state = 2}, - [349] = {.lex_state = 78, .external_lex_state = 2}, - [350] = {.lex_state = 78, .external_lex_state = 2}, - [351] = {.lex_state = 78, .external_lex_state = 2}, - [352] = {.lex_state = 78, .external_lex_state = 2}, - [353] = {.lex_state = 78, .external_lex_state = 2}, - [354] = {.lex_state = 78, .external_lex_state = 2}, - [355] = {.lex_state = 78, .external_lex_state = 2}, - [356] = {.lex_state = 78, .external_lex_state = 2}, - [357] = {.lex_state = 29, .external_lex_state = 2}, - [358] = {.lex_state = 78, .external_lex_state = 2}, - [359] = {.lex_state = 78, .external_lex_state = 2}, - [360] = {.lex_state = 78, .external_lex_state = 2}, - [361] = {.lex_state = 78, .external_lex_state = 2}, - [362] = {.lex_state = 78, .external_lex_state = 2}, - [363] = {.lex_state = 78, .external_lex_state = 2}, - [364] = {.lex_state = 78, .external_lex_state = 2}, - [365] = {.lex_state = 121, .external_lex_state = 2}, - [366] = {.lex_state = 124, .external_lex_state = 2}, - [367] = {.lex_state = 121, .external_lex_state = 2}, - [368] = {.lex_state = 29, .external_lex_state = 2}, - [369] = {.lex_state = 121, .external_lex_state = 2}, - [370] = {.lex_state = 12, .external_lex_state = 2}, - [371] = {.lex_state = 121, .external_lex_state = 2}, - [372] = {.lex_state = 29, .external_lex_state = 2}, - [373] = {.lex_state = 88, .external_lex_state = 2}, - [374] = {.lex_state = 88, .external_lex_state = 2}, - [375] = {.lex_state = 121, .external_lex_state = 2}, - [376] = {.lex_state = 121, .external_lex_state = 2}, - [377] = {.lex_state = 124, .external_lex_state = 2}, - [378] = {.lex_state = 124, .external_lex_state = 2}, - [379] = {.lex_state = 124, .external_lex_state = 2}, - [380] = {.lex_state = 60, .external_lex_state = 2}, - [381] = {.lex_state = 88, .external_lex_state = 2}, - [382] = {.lex_state = 88, .external_lex_state = 2}, - [383] = {.lex_state = 124, .external_lex_state = 2}, - [384] = {.lex_state = 124, .external_lex_state = 2}, - [385] = {.lex_state = 88, .external_lex_state = 2}, - [386] = {.lex_state = 124, .external_lex_state = 2}, - [387] = {.lex_state = 124, .external_lex_state = 2}, - [388] = {.lex_state = 124, .external_lex_state = 2}, - [389] = {.lex_state = 124, .external_lex_state = 2}, - [390] = {.lex_state = 124, .external_lex_state = 2}, - [391] = {.lex_state = 124, .external_lex_state = 2}, - [392] = {.lex_state = 88, .external_lex_state = 2}, - [393] = {.lex_state = 121, .external_lex_state = 2}, - [394] = {.lex_state = 121, .external_lex_state = 2}, - [395] = {.lex_state = 121, .external_lex_state = 2}, - [396] = {.lex_state = 88, .external_lex_state = 2}, - [397] = {.lex_state = 124, .external_lex_state = 2}, - [398] = {.lex_state = 124, .external_lex_state = 2}, - [399] = {.lex_state = 124, .external_lex_state = 2}, - [400] = {.lex_state = 124, .external_lex_state = 2}, - [401] = {.lex_state = 124, .external_lex_state = 2}, - [402] = {.lex_state = 124, .external_lex_state = 2}, - [403] = {.lex_state = 124, .external_lex_state = 2}, - [404] = {.lex_state = 124, .external_lex_state = 2}, - [405] = {.lex_state = 124, .external_lex_state = 2}, - [406] = {.lex_state = 124, .external_lex_state = 2}, - [407] = {.lex_state = 88, .external_lex_state = 2}, - [408] = {.lex_state = 124, .external_lex_state = 2}, - [409] = {.lex_state = 124, .external_lex_state = 2}, - [410] = {.lex_state = 124, .external_lex_state = 2}, - [411] = {.lex_state = 124, .external_lex_state = 2}, - [412] = {.lex_state = 124, .external_lex_state = 2}, - [413] = {.lex_state = 124, .external_lex_state = 2}, - [414] = {.lex_state = 124, .external_lex_state = 2}, - [415] = {.lex_state = 88, .external_lex_state = 2}, - [416] = {.lex_state = 3, .external_lex_state = 2}, - [417] = {.lex_state = 88, .external_lex_state = 2}, - [418] = {.lex_state = 88, .external_lex_state = 2}, - [419] = {.lex_state = 88, .external_lex_state = 2}, - [420] = {.lex_state = 88, .external_lex_state = 2}, - [421] = {.lex_state = 88, .external_lex_state = 2}, - [422] = {.lex_state = 121, .external_lex_state = 2}, - [423] = {.lex_state = 88, .external_lex_state = 2}, - [424] = {.lex_state = 88, .external_lex_state = 2}, - [425] = {.lex_state = 88, .external_lex_state = 2}, - [426] = {.lex_state = 121, .external_lex_state = 2}, - [427] = {.lex_state = 3, .external_lex_state = 2}, - [428] = {.lex_state = 3, .external_lex_state = 2}, - [429] = {.lex_state = 3, .external_lex_state = 2}, - [430] = {.lex_state = 2, .external_lex_state = 2}, - [431] = {.lex_state = 121, .external_lex_state = 2}, - [432] = {.lex_state = 88, .external_lex_state = 2}, - [433] = {.lex_state = 3, .external_lex_state = 2}, - [434] = {.lex_state = 3, .external_lex_state = 2}, - [435] = {.lex_state = 88, .external_lex_state = 2}, - [436] = {.lex_state = 3, .external_lex_state = 2}, - [437] = {.lex_state = 3, .external_lex_state = 2}, - [438] = {.lex_state = 3, .external_lex_state = 2}, - [439] = {.lex_state = 3, .external_lex_state = 2}, - [440] = {.lex_state = 3, .external_lex_state = 2}, - [441] = {.lex_state = 3, .external_lex_state = 2}, - [442] = {.lex_state = 3, .external_lex_state = 2}, - [443] = {.lex_state = 88, .external_lex_state = 2}, - [444] = {.lex_state = 88, .external_lex_state = 2}, - [445] = {.lex_state = 88, .external_lex_state = 2}, - [446] = {.lex_state = 88, .external_lex_state = 2}, + [190] = {.lex_state = 3, .external_lex_state = 3}, + [191] = {.lex_state = 78, .external_lex_state = 2}, + [192] = {.lex_state = 11, .external_lex_state = 3}, + [193] = {.lex_state = 143, .external_lex_state = 2}, + [194] = {.lex_state = 92, .external_lex_state = 2}, + [195] = {.lex_state = 139, .external_lex_state = 2}, + [196] = {.lex_state = 71, .external_lex_state = 3}, + [197] = {.lex_state = 136, .external_lex_state = 2}, + [198] = {.lex_state = 40, .external_lex_state = 2}, + [199] = {.lex_state = 87, .external_lex_state = 2}, + [200] = {.lex_state = 132, .external_lex_state = 2}, + [201] = {.lex_state = 31, .external_lex_state = 2}, + [202] = {.lex_state = 36, .external_lex_state = 2}, + [203] = {.lex_state = 139, .external_lex_state = 3}, + [204] = {.lex_state = 139, .external_lex_state = 2}, + [205] = {.lex_state = 59, .external_lex_state = 2}, + [206] = {.lex_state = 98, .external_lex_state = 2}, + [207] = {.lex_state = 136, .external_lex_state = 2}, + [208] = {.lex_state = 98, .external_lex_state = 3}, + [209] = {.lex_state = 137, .external_lex_state = 2}, + [210] = {.lex_state = 136, .external_lex_state = 2}, + [211] = {.lex_state = 98, .external_lex_state = 2}, + [212] = {.lex_state = 103, .external_lex_state = 2}, + [213] = {.lex_state = 61, .external_lex_state = 2}, + [214] = {.lex_state = 136, .external_lex_state = 3}, + [215] = {.lex_state = 40, .external_lex_state = 2}, + [216] = {.lex_state = 11, .external_lex_state = 2}, + [217] = {.lex_state = 31, .external_lex_state = 2}, + [218] = {.lex_state = 36, .external_lex_state = 2}, + [219] = {.lex_state = 36, .external_lex_state = 2}, + [220] = {.lex_state = 36, .external_lex_state = 2}, + [221] = {.lex_state = 36, .external_lex_state = 2}, + [222] = {.lex_state = 36, .external_lex_state = 2}, + [223] = {.lex_state = 136, .external_lex_state = 2}, + [224] = {.lex_state = 36, .external_lex_state = 2}, + [225] = {.lex_state = 36, .external_lex_state = 2}, + [226] = {.lex_state = 36, .external_lex_state = 2}, + [227] = {.lex_state = 36, .external_lex_state = 2}, + [228] = {.lex_state = 36, .external_lex_state = 2}, + [229] = {.lex_state = 36, .external_lex_state = 2}, + [230] = {.lex_state = 36, .external_lex_state = 2}, + [231] = {.lex_state = 36, .external_lex_state = 2}, + [232] = {.lex_state = 36, .external_lex_state = 2}, + [233] = {.lex_state = 36, .external_lex_state = 2}, + [234] = {.lex_state = 136, .external_lex_state = 2}, + [235] = {.lex_state = 36, .external_lex_state = 2}, + [236] = {.lex_state = 36, .external_lex_state = 2}, + [237] = {.lex_state = 36, .external_lex_state = 2}, + [238] = {.lex_state = 36, .external_lex_state = 2}, + [239] = {.lex_state = 36, .external_lex_state = 2}, + [240] = {.lex_state = 36, .external_lex_state = 2}, + [241] = {.lex_state = 36, .external_lex_state = 2}, + [242] = {.lex_state = 98, .external_lex_state = 2}, + [243] = {.lex_state = 98, .external_lex_state = 2}, + [244] = {.lex_state = 98, .external_lex_state = 2}, + [245] = {.lex_state = 98, .external_lex_state = 2}, + [246] = {.lex_state = 96, .external_lex_state = 2}, + [247] = {.lex_state = 98, .external_lex_state = 2}, + [248] = {.lex_state = 98, .external_lex_state = 2}, + [249] = {.lex_state = 136, .external_lex_state = 2}, + [250] = {.lex_state = 98, .external_lex_state = 2}, + [251] = {.lex_state = 98, .external_lex_state = 2}, + [252] = {.lex_state = 98, .external_lex_state = 2}, + [253] = {.lex_state = 98, .external_lex_state = 2}, + [254] = {.lex_state = 98, .external_lex_state = 2}, + [255] = {.lex_state = 98, .external_lex_state = 2}, + [256] = {.lex_state = 98, .external_lex_state = 2}, + [257] = {.lex_state = 98, .external_lex_state = 2}, + [258] = {.lex_state = 136, .external_lex_state = 2}, + [259] = {.lex_state = 98, .external_lex_state = 2}, + [260] = {.lex_state = 98, .external_lex_state = 2}, + [261] = {.lex_state = 98, .external_lex_state = 2}, + [262] = {.lex_state = 98, .external_lex_state = 2}, + [263] = {.lex_state = 98, .external_lex_state = 2}, + [264] = {.lex_state = 98, .external_lex_state = 2}, + [265] = {.lex_state = 98, .external_lex_state = 2}, + [266] = {.lex_state = 98, .external_lex_state = 2}, + [267] = {.lex_state = 98, .external_lex_state = 2}, + [268] = {.lex_state = 98, .external_lex_state = 2}, + [269] = {.lex_state = 134, .external_lex_state = 2}, + [270] = {.lex_state = 98, .external_lex_state = 2}, + [271] = {.lex_state = 98, .external_lex_state = 2}, + [272] = {.lex_state = 98, .external_lex_state = 2}, + [273] = {.lex_state = 98, .external_lex_state = 2}, + [274] = {.lex_state = 98, .external_lex_state = 2}, + [275] = {.lex_state = 98, .external_lex_state = 2}, + [276] = {.lex_state = 98, .external_lex_state = 2}, + [277] = {.lex_state = 40, .external_lex_state = 2}, + [278] = {.lex_state = 36, .external_lex_state = 2}, + [279] = {.lex_state = 71, .external_lex_state = 2}, + [280] = {.lex_state = 36, .external_lex_state = 2}, + [281] = {.lex_state = 136, .external_lex_state = 2}, + [282] = {.lex_state = 36, .external_lex_state = 2}, + [283] = {.lex_state = 36, .external_lex_state = 2}, + [284] = {.lex_state = 34, .external_lex_state = 2}, + [285] = {.lex_state = 36, .external_lex_state = 2}, + [286] = {.lex_state = 36, .external_lex_state = 2}, + [287] = {.lex_state = 36, .external_lex_state = 2}, + [288] = {.lex_state = 36, .external_lex_state = 2}, + [289] = {.lex_state = 40, .external_lex_state = 2}, + [290] = {.lex_state = 71, .external_lex_state = 2}, + [291] = {.lex_state = 71, .external_lex_state = 2}, + [292] = {.lex_state = 71, .external_lex_state = 2}, + [293] = {.lex_state = 69, .external_lex_state = 2}, + [294] = {.lex_state = 40, .external_lex_state = 2}, + [295] = {.lex_state = 40, .external_lex_state = 2}, + [296] = {.lex_state = 71, .external_lex_state = 2}, + [297] = {.lex_state = 71, .external_lex_state = 2}, + [298] = {.lex_state = 20, .external_lex_state = 2}, + [299] = {.lex_state = 71, .external_lex_state = 2}, + [300] = {.lex_state = 71, .external_lex_state = 2}, + [301] = {.lex_state = 71, .external_lex_state = 2}, + [302] = {.lex_state = 71, .external_lex_state = 2}, + [303] = {.lex_state = 71, .external_lex_state = 2}, + [304] = {.lex_state = 71, .external_lex_state = 2}, + [305] = {.lex_state = 71, .external_lex_state = 2}, + [306] = {.lex_state = 40, .external_lex_state = 2}, + [307] = {.lex_state = 40, .external_lex_state = 2}, + [308] = {.lex_state = 40, .external_lex_state = 2}, + [309] = {.lex_state = 71, .external_lex_state = 2}, + [310] = {.lex_state = 136, .external_lex_state = 2}, + [311] = {.lex_state = 71, .external_lex_state = 2}, + [312] = {.lex_state = 71, .external_lex_state = 2}, + [313] = {.lex_state = 71, .external_lex_state = 2}, + [314] = {.lex_state = 71, .external_lex_state = 2}, + [315] = {.lex_state = 71, .external_lex_state = 2}, + [316] = {.lex_state = 71, .external_lex_state = 2}, + [317] = {.lex_state = 71, .external_lex_state = 2}, + [318] = {.lex_state = 71, .external_lex_state = 2}, + [319] = {.lex_state = 71, .external_lex_state = 2}, + [320] = {.lex_state = 71, .external_lex_state = 2}, + [321] = {.lex_state = 31, .external_lex_state = 2}, + [322] = {.lex_state = 71, .external_lex_state = 2}, + [323] = {.lex_state = 71, .external_lex_state = 2}, + [324] = {.lex_state = 71, .external_lex_state = 2}, + [325] = {.lex_state = 71, .external_lex_state = 2}, + [326] = {.lex_state = 71, .external_lex_state = 2}, + [327] = {.lex_state = 71, .external_lex_state = 2}, + [328] = {.lex_state = 71, .external_lex_state = 2}, + [329] = {.lex_state = 40, .external_lex_state = 2}, + [330] = {.lex_state = 31, .external_lex_state = 2}, + [331] = {.lex_state = 87, .external_lex_state = 2}, + [332] = {.lex_state = 40, .external_lex_state = 2}, + [333] = {.lex_state = 40, .external_lex_state = 2}, + [334] = {.lex_state = 40, .external_lex_state = 2}, + [335] = {.lex_state = 40, .external_lex_state = 2}, + [336] = {.lex_state = 40, .external_lex_state = 2}, + [337] = {.lex_state = 40, .external_lex_state = 2}, + [338] = {.lex_state = 40, .external_lex_state = 2}, + [339] = {.lex_state = 40, .external_lex_state = 2}, + [340] = {.lex_state = 40, .external_lex_state = 2}, + [341] = {.lex_state = 40, .external_lex_state = 2}, + [342] = {.lex_state = 87, .external_lex_state = 2}, + [343] = {.lex_state = 87, .external_lex_state = 2}, + [344] = {.lex_state = 87, .external_lex_state = 2}, + [345] = {.lex_state = 85, .external_lex_state = 2}, + [346] = {.lex_state = 11, .external_lex_state = 2}, + [347] = {.lex_state = 40, .external_lex_state = 2}, + [348] = {.lex_state = 87, .external_lex_state = 2}, + [349] = {.lex_state = 87, .external_lex_state = 2}, + [350] = {.lex_state = 11, .external_lex_state = 2}, + [351] = {.lex_state = 87, .external_lex_state = 2}, + [352] = {.lex_state = 87, .external_lex_state = 2}, + [353] = {.lex_state = 87, .external_lex_state = 2}, + [354] = {.lex_state = 87, .external_lex_state = 2}, + [355] = {.lex_state = 87, .external_lex_state = 2}, + [356] = {.lex_state = 87, .external_lex_state = 2}, + [357] = {.lex_state = 87, .external_lex_state = 2}, + [358] = {.lex_state = 40, .external_lex_state = 2}, + [359] = {.lex_state = 40, .external_lex_state = 2}, + [360] = {.lex_state = 40, .external_lex_state = 2}, + [361] = {.lex_state = 87, .external_lex_state = 2}, + [362] = {.lex_state = 3, .external_lex_state = 2}, + [363] = {.lex_state = 87, .external_lex_state = 2}, + [364] = {.lex_state = 87, .external_lex_state = 2}, + [365] = {.lex_state = 87, .external_lex_state = 2}, + [366] = {.lex_state = 87, .external_lex_state = 2}, + [367] = {.lex_state = 87, .external_lex_state = 2}, + [368] = {.lex_state = 87, .external_lex_state = 2}, + [369] = {.lex_state = 87, .external_lex_state = 2}, + [370] = {.lex_state = 87, .external_lex_state = 2}, + [371] = {.lex_state = 87, .external_lex_state = 2}, + [372] = {.lex_state = 87, .external_lex_state = 2}, + [373] = {.lex_state = 3, .external_lex_state = 2}, + [374] = {.lex_state = 87, .external_lex_state = 2}, + [375] = {.lex_state = 87, .external_lex_state = 2}, + [376] = {.lex_state = 87, .external_lex_state = 2}, + [377] = {.lex_state = 87, .external_lex_state = 2}, + [378] = {.lex_state = 87, .external_lex_state = 2}, + [379] = {.lex_state = 87, .external_lex_state = 2}, + [380] = {.lex_state = 87, .external_lex_state = 2}, + [381] = {.lex_state = 40, .external_lex_state = 2}, + [382] = {.lex_state = 40, .external_lex_state = 2}, + [383] = {.lex_state = 139, .external_lex_state = 2}, + [384] = {.lex_state = 40, .external_lex_state = 2}, + [385] = {.lex_state = 40, .external_lex_state = 2}, + [386] = {.lex_state = 139, .external_lex_state = 2}, + [387] = {.lex_state = 40, .external_lex_state = 2}, + [388] = {.lex_state = 40, .external_lex_state = 2}, + [389] = {.lex_state = 38, .external_lex_state = 2}, + [390] = {.lex_state = 40, .external_lex_state = 2}, + [391] = {.lex_state = 40, .external_lex_state = 2}, + [392] = {.lex_state = 139, .external_lex_state = 2}, + [393] = {.lex_state = 40, .external_lex_state = 2}, + [394] = {.lex_state = 139, .external_lex_state = 2}, + [395] = {.lex_state = 139, .external_lex_state = 2}, + [396] = {.lex_state = 139, .external_lex_state = 2}, + [397] = {.lex_state = 81, .external_lex_state = 2}, + [398] = {.lex_state = 87, .external_lex_state = 2}, + [399] = {.lex_state = 87, .external_lex_state = 2}, + [400] = {.lex_state = 139, .external_lex_state = 2}, + [401] = {.lex_state = 139, .external_lex_state = 2}, + [402] = {.lex_state = 71, .external_lex_state = 2}, + [403] = {.lex_state = 139, .external_lex_state = 2}, + [404] = {.lex_state = 139, .external_lex_state = 2}, + [405] = {.lex_state = 139, .external_lex_state = 2}, + [406] = {.lex_state = 139, .external_lex_state = 2}, + [407] = {.lex_state = 139, .external_lex_state = 2}, + [408] = {.lex_state = 139, .external_lex_state = 2}, + [409] = {.lex_state = 139, .external_lex_state = 2}, + [410] = {.lex_state = 71, .external_lex_state = 2}, + [411] = {.lex_state = 98, .external_lex_state = 2}, + [412] = {.lex_state = 136, .external_lex_state = 2}, + [413] = {.lex_state = 139, .external_lex_state = 2}, + [414] = {.lex_state = 98, .external_lex_state = 2}, + [415] = {.lex_state = 139, .external_lex_state = 2}, + [416] = {.lex_state = 139, .external_lex_state = 2}, + [417] = {.lex_state = 139, .external_lex_state = 2}, + [418] = {.lex_state = 139, .external_lex_state = 2}, + [419] = {.lex_state = 139, .external_lex_state = 2}, + [420] = {.lex_state = 139, .external_lex_state = 2}, + [421] = {.lex_state = 139, .external_lex_state = 2}, + [422] = {.lex_state = 139, .external_lex_state = 2}, + [423] = {.lex_state = 139, .external_lex_state = 2}, + [424] = {.lex_state = 139, .external_lex_state = 2}, + [425] = {.lex_state = 36, .external_lex_state = 2}, + [426] = {.lex_state = 139, .external_lex_state = 2}, + [427] = {.lex_state = 139, .external_lex_state = 2}, + [428] = {.lex_state = 139, .external_lex_state = 2}, + [429] = {.lex_state = 139, .external_lex_state = 2}, + [430] = {.lex_state = 139, .external_lex_state = 2}, + [431] = {.lex_state = 139, .external_lex_state = 2}, + [432] = {.lex_state = 139, .external_lex_state = 2}, + [433] = {.lex_state = 136, .external_lex_state = 2}, + [434] = {.lex_state = 36, .external_lex_state = 2}, + [435] = {.lex_state = 3, .external_lex_state = 2}, + [436] = {.lex_state = 40, .external_lex_state = 2}, + [437] = {.lex_state = 40, .external_lex_state = 2}, + [438] = {.lex_state = 36, .external_lex_state = 2}, + [439] = {.lex_state = 136, .external_lex_state = 2}, + [440] = {.lex_state = 136, .external_lex_state = 2}, + [441] = {.lex_state = 136, .external_lex_state = 2}, + [442] = {.lex_state = 136, .external_lex_state = 2}, + [443] = {.lex_state = 136, .external_lex_state = 2}, + [444] = {.lex_state = 136, .external_lex_state = 2}, + [445] = {.lex_state = 136, .external_lex_state = 2}, + [446] = {.lex_state = 3, .external_lex_state = 2}, [447] = {.lex_state = 3, .external_lex_state = 2}, [448] = {.lex_state = 3, .external_lex_state = 2}, - [449] = {.lex_state = 3, .external_lex_state = 2}, - [450] = {.lex_state = 88, .external_lex_state = 2}, - [451] = {.lex_state = 3, .external_lex_state = 2}, + [449] = {.lex_state = 2, .external_lex_state = 2}, + [450] = {.lex_state = 136, .external_lex_state = 2}, + [451] = {.lex_state = 136, .external_lex_state = 2}, [452] = {.lex_state = 3, .external_lex_state = 2}, [453] = {.lex_state = 3, .external_lex_state = 2}, - [454] = {.lex_state = 3, .external_lex_state = 2}, + [454] = {.lex_state = 136, .external_lex_state = 2}, [455] = {.lex_state = 3, .external_lex_state = 2}, [456] = {.lex_state = 3, .external_lex_state = 2}, - [457] = {.lex_state = 88, .external_lex_state = 2}, + [457] = {.lex_state = 3, .external_lex_state = 2}, [458] = {.lex_state = 3, .external_lex_state = 2}, [459] = {.lex_state = 3, .external_lex_state = 2}, [460] = {.lex_state = 3, .external_lex_state = 2}, [461] = {.lex_state = 3, .external_lex_state = 2}, - [462] = {.lex_state = 3, .external_lex_state = 2}, - [463] = {.lex_state = 3, .external_lex_state = 2}, - [464] = {.lex_state = 3, .external_lex_state = 2}, - [465] = {.lex_state = 121, .external_lex_state = 2}, - [466] = {.lex_state = 88, .external_lex_state = 2}, - [467] = {.lex_state = 121, .external_lex_state = 2}, - [468] = {.lex_state = 128, .external_lex_state = 2}, - [469] = {.lex_state = 121, .external_lex_state = 2}, - [470] = {.lex_state = 121, .external_lex_state = 2}, - [471] = {.lex_state = 121, .external_lex_state = 2}, - [472] = {.lex_state = 121, .external_lex_state = 2}, - [473] = {.lex_state = 121, .external_lex_state = 2}, - [474] = {.lex_state = 121, .external_lex_state = 2}, - [475] = {.lex_state = 121, .external_lex_state = 2}, - [476] = {.lex_state = 87, .external_lex_state = 2}, - [477] = {.lex_state = 88, .external_lex_state = 2}, - [478] = {.lex_state = 88, .external_lex_state = 2}, - [479] = {.lex_state = 88, .external_lex_state = 2}, - [480] = {.lex_state = 121, .external_lex_state = 2}, - [481] = {.lex_state = 121, .external_lex_state = 2}, - [482] = {.lex_state = 121, .external_lex_state = 2}, - [483] = {.lex_state = 121, .external_lex_state = 2}, - [484] = {.lex_state = 121, .external_lex_state = 2}, - [485] = {.lex_state = 121, .external_lex_state = 2}, - [486] = {.lex_state = 12, .external_lex_state = 2}, - [487] = {.lex_state = 88, .external_lex_state = 2}, - [488] = {.lex_state = 121, .external_lex_state = 2}, - [489] = {.lex_state = 121, .external_lex_state = 2}, - [490] = {.lex_state = 121, .external_lex_state = 2}, - [491] = {.lex_state = 76, .external_lex_state = 2}, - [492] = {.lex_state = 121, .external_lex_state = 2}, - [493] = {.lex_state = 121, .external_lex_state = 2}, - [494] = {.lex_state = 23, .external_lex_state = 2}, - [495] = {.lex_state = 23, .external_lex_state = 2}, - [496] = {.lex_state = 121, .external_lex_state = 2}, - [497] = {.lex_state = 121, .external_lex_state = 2}, - [498] = {.lex_state = 121, .external_lex_state = 2}, - [499] = {.lex_state = 121, .external_lex_state = 2}, - [500] = {.lex_state = 121, .external_lex_state = 2}, - [501] = {.lex_state = 121, .external_lex_state = 2}, - [502] = {.lex_state = 121, .external_lex_state = 2}, - [503] = {.lex_state = 121, .external_lex_state = 2}, - [504] = {.lex_state = 121, .external_lex_state = 2}, - [505] = {.lex_state = 121, .external_lex_state = 2}, - [506] = {.lex_state = 121, .external_lex_state = 2}, - [507] = {.lex_state = 121, .external_lex_state = 2}, - [508] = {.lex_state = 121, .external_lex_state = 2}, - [509] = {.lex_state = 121, .external_lex_state = 2}, - [510] = {.lex_state = 121, .external_lex_state = 2}, - [511] = {.lex_state = 121, .external_lex_state = 2}, - [512] = {.lex_state = 121, .external_lex_state = 2}, - [513] = {.lex_state = 121, .external_lex_state = 2}, - [514] = {.lex_state = 121, .external_lex_state = 2}, - [515] = {.lex_state = 121, .external_lex_state = 2}, - [516] = {.lex_state = 23, .external_lex_state = 2}, - [517] = {.lex_state = 119, .external_lex_state = 2}, - [518] = {.lex_state = 121, .external_lex_state = 2}, - [519] = {.lex_state = 32, .external_lex_state = 2}, - [520] = {.lex_state = 121, .external_lex_state = 2}, - [521] = {.lex_state = 121, .external_lex_state = 2}, - [522] = {.lex_state = 32, .external_lex_state = 2}, - [523] = {.lex_state = 32, .external_lex_state = 2}, - [524] = {.lex_state = 27, .external_lex_state = 2}, - [525] = {.lex_state = 119, .external_lex_state = 2}, - [526] = {.lex_state = 27, .external_lex_state = 2}, - [527] = {.lex_state = 121, .external_lex_state = 2}, - [528] = {.lex_state = 121, .external_lex_state = 2}, - [529] = {.lex_state = 121, .external_lex_state = 2}, - [530] = {.lex_state = 65, .external_lex_state = 2}, - [531] = {.lex_state = 2, .external_lex_state = 2}, - [532] = {.lex_state = 65, .external_lex_state = 2}, - [533] = {.lex_state = 121, .external_lex_state = 2}, - [534] = {.lex_state = 2, .external_lex_state = 2}, - [535] = {.lex_state = 87, .external_lex_state = 2}, - [536] = {.lex_state = 65, .external_lex_state = 2}, - [537] = {.lex_state = 2, .external_lex_state = 2}, - [538] = {.lex_state = 27, .external_lex_state = 2}, - [539] = {.lex_state = 76, .external_lex_state = 2}, - [540] = {.lex_state = 121, .external_lex_state = 2}, - [541] = {.lex_state = 76, .external_lex_state = 2}, - [542] = {.lex_state = 121, .external_lex_state = 2}, - [543] = {.lex_state = 121, .external_lex_state = 2}, - [544] = {.lex_state = 87, .external_lex_state = 2}, - [545] = {.lex_state = 87, .external_lex_state = 2}, - [546] = {.lex_state = 119, .external_lex_state = 2}, - [547] = {.lex_state = 60, .external_lex_state = 2}, - [548] = {.lex_state = 60, .external_lex_state = 2}, - [549] = {.lex_state = 60, .external_lex_state = 2}, - [550] = {.lex_state = 119, .external_lex_state = 2}, - [551] = {.lex_state = 119, .external_lex_state = 2}, - [552] = {.lex_state = 119, .external_lex_state = 2}, - [553] = {.lex_state = 119, .external_lex_state = 2}, - [554] = {.lex_state = 56}, - [555] = {.lex_state = 56}, - [556] = {.lex_state = 56}, - [557] = {.lex_state = 56}, - [558] = {.lex_state = 56}, - [559] = {.lex_state = 56}, - [560] = {.lex_state = 56}, - [561] = {.lex_state = 56}, - [562] = {.lex_state = 56}, - [563] = {.lex_state = 56}, - [564] = {.lex_state = 56}, - [565] = {.lex_state = 56}, - [566] = {.lex_state = 56}, - [567] = {.lex_state = 56}, - [568] = {.lex_state = 56}, - [569] = {.lex_state = 56}, - [570] = {.lex_state = 56}, - [571] = {.lex_state = 56}, - [572] = {.lex_state = 56}, - [573] = {.lex_state = 56}, - [574] = {.lex_state = 56}, - [575] = {.lex_state = 56}, - [576] = {.lex_state = 56}, - [577] = {.lex_state = 56}, - [578] = {.lex_state = 56}, - [579] = {.lex_state = 56}, - [580] = {.lex_state = 56}, - [581] = {.lex_state = 56}, - [582] = {.lex_state = 56}, - [583] = {.lex_state = 56}, - [584] = {.lex_state = 56}, - [585] = {.lex_state = 56}, - [586] = {.lex_state = 56}, - [587] = {.lex_state = 56}, - [588] = {.lex_state = 56}, - [589] = {.lex_state = 56}, - [590] = {.lex_state = 56}, - [591] = {.lex_state = 56}, - [592] = {.lex_state = 56}, - [593] = {.lex_state = 56}, - [594] = {.lex_state = 56}, - [595] = {.lex_state = 56}, - [596] = {.lex_state = 56}, - [597] = {.lex_state = 56}, - [598] = {.lex_state = 56}, - [599] = {.lex_state = 56}, - [600] = {.lex_state = 56}, - [601] = {.lex_state = 56}, - [602] = {.lex_state = 56}, - [603] = {.lex_state = 56}, - [604] = {.lex_state = 56}, - [605] = {.lex_state = 56}, - [606] = {.lex_state = 56}, - [607] = {.lex_state = 56}, - [608] = {.lex_state = 56}, - [609] = {.lex_state = 56}, - [610] = {.lex_state = 56}, - [611] = {.lex_state = 56}, - [612] = {.lex_state = 56}, - [613] = {.lex_state = 56}, - [614] = {.lex_state = 56}, - [615] = {.lex_state = 56}, - [616] = {.lex_state = 56}, - [617] = {.lex_state = 56}, - [618] = {.lex_state = 58}, - [619] = {.lex_state = 56}, - [620] = {.lex_state = 56}, - [621] = {.lex_state = 56}, - [622] = {.lex_state = 56}, - [623] = {.lex_state = 56}, - [624] = {.lex_state = 56}, - [625] = {.lex_state = 56}, - [626] = {.lex_state = 56}, - [627] = {.lex_state = 56}, - [628] = {.lex_state = 56}, - [629] = {.lex_state = 56}, - [630] = {.lex_state = 56}, - [631] = {.lex_state = 56}, - [632] = {.lex_state = 56}, - [633] = {.lex_state = 56}, - [634] = {.lex_state = 56}, - [635] = {.lex_state = 58}, - [636] = {.lex_state = 58}, - [637] = {.lex_state = 58}, - [638] = {.lex_state = 0}, - [639] = {.lex_state = 56}, - [640] = {.lex_state = 0}, - [641] = {.lex_state = 0}, - [642] = {.lex_state = 0}, - [643] = {.lex_state = 0}, - [644] = {.lex_state = 0}, - [645] = {.lex_state = 0}, - [646] = {.lex_state = 0}, - [647] = {.lex_state = 0}, - [648] = {.lex_state = 97}, - [649] = {.lex_state = 0}, - [650] = {.lex_state = 56}, - [651] = {.lex_state = 56}, - [652] = {.lex_state = 119}, - [653] = {.lex_state = 56}, - [654] = {.lex_state = 0, .external_lex_state = 3}, - [655] = {.lex_state = 119}, - [656] = {.lex_state = 0, .external_lex_state = 3}, - [657] = {.lex_state = 56}, - [658] = {.lex_state = 119}, - [659] = {.lex_state = 0}, - [660] = {.lex_state = 56}, - [661] = {.lex_state = 0}, - [662] = {.lex_state = 56}, - [663] = {.lex_state = 0}, - [664] = {.lex_state = 0}, - [665] = {.lex_state = 0}, - [666] = {.lex_state = 119}, - [667] = {.lex_state = 0}, - [668] = {.lex_state = 0, .external_lex_state = 3}, - [669] = {.lex_state = 0}, - [670] = {.lex_state = 0, .external_lex_state = 3}, - [671] = {.lex_state = 119}, - [672] = {.lex_state = 56}, - [673] = {.lex_state = 0, .external_lex_state = 3}, - [674] = {.lex_state = 119}, - [675] = {.lex_state = 56}, - [676] = {.lex_state = 0, .external_lex_state = 3}, - [677] = {.lex_state = 0}, - [678] = {.lex_state = 56}, - [679] = {.lex_state = 0}, - [680] = {.lex_state = 0}, - [681] = {.lex_state = 0}, - [682] = {.lex_state = 0, .external_lex_state = 3}, - [683] = {.lex_state = 0}, - [684] = {.lex_state = 0}, - [685] = {.lex_state = 119}, - [686] = {.lex_state = 119}, - [687] = {.lex_state = 56}, - [688] = {.lex_state = 119}, - [689] = {.lex_state = 0}, - [690] = {.lex_state = 0}, - [691] = {.lex_state = 0}, - [692] = {.lex_state = 0, .external_lex_state = 3}, - [693] = {.lex_state = 56}, - [694] = {.lex_state = 0}, - [695] = {.lex_state = 0, .external_lex_state = 3}, - [696] = {.lex_state = 0}, - [697] = {.lex_state = 0, .external_lex_state = 3}, - [698] = {.lex_state = 119}, - [699] = {.lex_state = 56}, - [700] = {.lex_state = 0}, - [701] = {.lex_state = 0}, - [702] = {.lex_state = 0}, - [703] = {.lex_state = 0, .external_lex_state = 4}, - [704] = {.lex_state = 0, .external_lex_state = 4}, - [705] = {.lex_state = 56}, - [706] = {.lex_state = 0}, - [707] = {.lex_state = 0, .external_lex_state = 5}, - [708] = {.lex_state = 0}, - [709] = {.lex_state = 56}, - [710] = {.lex_state = 20}, - [711] = {.lex_state = 0}, - [712] = {.lex_state = 0}, - [713] = {.lex_state = 17}, - [714] = {.lex_state = 0, .external_lex_state = 5}, - [715] = {.lex_state = 56}, - [716] = {.lex_state = 0}, - [717] = {.lex_state = 56}, - [718] = {.lex_state = 0, .external_lex_state = 4}, - [719] = {.lex_state = 56}, - [720] = {.lex_state = 0}, - [721] = {.lex_state = 0, .external_lex_state = 5}, - [722] = {.lex_state = 17}, - [723] = {.lex_state = 56}, - [724] = {.lex_state = 20}, - [725] = {.lex_state = 0}, - [726] = {.lex_state = 0}, - [727] = {.lex_state = 56}, - [728] = {.lex_state = 0}, - [729] = {.lex_state = 17}, - [730] = {.lex_state = 56}, - [731] = {.lex_state = 17}, - [732] = {.lex_state = 0, .external_lex_state = 5}, - [733] = {.lex_state = 0, .external_lex_state = 5}, - [734] = {.lex_state = 56}, + [462] = {.lex_state = 136, .external_lex_state = 2}, + [463] = {.lex_state = 136, .external_lex_state = 2}, + [464] = {.lex_state = 143, .external_lex_state = 2}, + [465] = {.lex_state = 3, .external_lex_state = 2}, + [466] = {.lex_state = 136, .external_lex_state = 2}, + [467] = {.lex_state = 3, .external_lex_state = 2}, + [468] = {.lex_state = 3, .external_lex_state = 2}, + [469] = {.lex_state = 3, .external_lex_state = 2}, + [470] = {.lex_state = 3, .external_lex_state = 2}, + [471] = {.lex_state = 3, .external_lex_state = 2}, + [472] = {.lex_state = 3, .external_lex_state = 2}, + [473] = {.lex_state = 3, .external_lex_state = 2}, + [474] = {.lex_state = 3, .external_lex_state = 2}, + [475] = {.lex_state = 3, .external_lex_state = 2}, + [476] = {.lex_state = 3, .external_lex_state = 2}, + [477] = {.lex_state = 136, .external_lex_state = 2}, + [478] = {.lex_state = 3, .external_lex_state = 2}, + [479] = {.lex_state = 3, .external_lex_state = 2}, + [480] = {.lex_state = 3, .external_lex_state = 2}, + [481] = {.lex_state = 3, .external_lex_state = 2}, + [482] = {.lex_state = 3, .external_lex_state = 2}, + [483] = {.lex_state = 3, .external_lex_state = 2}, + [484] = {.lex_state = 3, .external_lex_state = 2}, + [485] = {.lex_state = 136, .external_lex_state = 3}, + [486] = {.lex_state = 31, .external_lex_state = 2}, + [487] = {.lex_state = 11, .external_lex_state = 2}, + [488] = {.lex_state = 31, .external_lex_state = 2}, + [489] = {.lex_state = 31, .external_lex_state = 2}, + [490] = {.lex_state = 31, .external_lex_state = 2}, + [491] = {.lex_state = 136, .external_lex_state = 2}, + [492] = {.lex_state = 31, .external_lex_state = 2}, + [493] = {.lex_state = 31, .external_lex_state = 2}, + [494] = {.lex_state = 31, .external_lex_state = 2}, + [495] = {.lex_state = 136, .external_lex_state = 2}, + [496] = {.lex_state = 136, .external_lex_state = 2}, + [497] = {.lex_state = 31, .external_lex_state = 2}, + [498] = {.lex_state = 11, .external_lex_state = 2}, + [499] = {.lex_state = 11, .external_lex_state = 2}, + [500] = {.lex_state = 11, .external_lex_state = 2}, + [501] = {.lex_state = 11, .external_lex_state = 2}, + [502] = {.lex_state = 11, .external_lex_state = 2}, + [503] = {.lex_state = 11, .external_lex_state = 2}, + [504] = {.lex_state = 11, .external_lex_state = 2}, + [505] = {.lex_state = 11, .external_lex_state = 2}, + [506] = {.lex_state = 11, .external_lex_state = 2}, + [507] = {.lex_state = 11, .external_lex_state = 2}, + [508] = {.lex_state = 11, .external_lex_state = 2}, + [509] = {.lex_state = 136, .external_lex_state = 2}, + [510] = {.lex_state = 11, .external_lex_state = 2}, + [511] = {.lex_state = 136, .external_lex_state = 2}, + [512] = {.lex_state = 11, .external_lex_state = 2}, + [513] = {.lex_state = 11, .external_lex_state = 2}, + [514] = {.lex_state = 11, .external_lex_state = 2}, + [515] = {.lex_state = 11, .external_lex_state = 2}, + [516] = {.lex_state = 11, .external_lex_state = 2}, + [517] = {.lex_state = 11, .external_lex_state = 2}, + [518] = {.lex_state = 11, .external_lex_state = 2}, + [519] = {.lex_state = 11, .external_lex_state = 2}, + [520] = {.lex_state = 11, .external_lex_state = 2}, + [521] = {.lex_state = 11, .external_lex_state = 2}, + [522] = {.lex_state = 136, .external_lex_state = 2}, + [523] = {.lex_state = 11, .external_lex_state = 2}, + [524] = {.lex_state = 11, .external_lex_state = 2}, + [525] = {.lex_state = 11, .external_lex_state = 2}, + [526] = {.lex_state = 11, .external_lex_state = 2}, + [527] = {.lex_state = 11, .external_lex_state = 2}, + [528] = {.lex_state = 11, .external_lex_state = 2}, + [529] = {.lex_state = 11, .external_lex_state = 2}, + [530] = {.lex_state = 136, .external_lex_state = 2}, + [531] = {.lex_state = 136, .external_lex_state = 2}, + [532] = {.lex_state = 31, .external_lex_state = 2}, + [533] = {.lex_state = 136, .external_lex_state = 2}, + [534] = {.lex_state = 136, .external_lex_state = 2}, + [535] = {.lex_state = 136, .external_lex_state = 2}, + [536] = {.lex_state = 136, .external_lex_state = 2}, + [537] = {.lex_state = 31, .external_lex_state = 2}, + [538] = {.lex_state = 31, .external_lex_state = 2}, + [539] = {.lex_state = 31, .external_lex_state = 2}, + [540] = {.lex_state = 30, .external_lex_state = 2}, + [541] = {.lex_state = 31, .external_lex_state = 2}, + [542] = {.lex_state = 31, .external_lex_state = 2}, + [543] = {.lex_state = 31, .external_lex_state = 2}, + [544] = {.lex_state = 31, .external_lex_state = 2}, + [545] = {.lex_state = 31, .external_lex_state = 2}, + [546] = {.lex_state = 31, .external_lex_state = 2}, + [547] = {.lex_state = 31, .external_lex_state = 2}, + [548] = {.lex_state = 31, .external_lex_state = 2}, + [549] = {.lex_state = 31, .external_lex_state = 2}, + [550] = {.lex_state = 20, .external_lex_state = 2}, + [551] = {.lex_state = 136, .external_lex_state = 2}, + [552] = {.lex_state = 31, .external_lex_state = 2}, + [553] = {.lex_state = 31, .external_lex_state = 2}, + [554] = {.lex_state = 31, .external_lex_state = 2}, + [555] = {.lex_state = 31, .external_lex_state = 2}, + [556] = {.lex_state = 31, .external_lex_state = 2}, + [557] = {.lex_state = 31, .external_lex_state = 2}, + [558] = {.lex_state = 31, .external_lex_state = 2}, + [559] = {.lex_state = 31, .external_lex_state = 2}, + [560] = {.lex_state = 31, .external_lex_state = 2}, + [561] = {.lex_state = 136, .external_lex_state = 2}, + [562] = {.lex_state = 81, .external_lex_state = 2}, + [563] = {.lex_state = 134, .external_lex_state = 2}, + [564] = {.lex_state = 134, .external_lex_state = 2}, + [565] = {.lex_state = 134, .external_lex_state = 2}, + [566] = {.lex_state = 34, .external_lex_state = 2}, + [567] = {.lex_state = 96, .external_lex_state = 2}, + [568] = {.lex_state = 10, .external_lex_state = 2}, + [569] = {.lex_state = 10, .external_lex_state = 2}, + [570] = {.lex_state = 96, .external_lex_state = 2}, + [571] = {.lex_state = 96, .external_lex_state = 2}, + [572] = {.lex_state = 134, .external_lex_state = 2}, + [573] = {.lex_state = 34, .external_lex_state = 2}, + [574] = {.lex_state = 30, .external_lex_state = 2}, + [575] = {.lex_state = 69, .external_lex_state = 2}, + [576] = {.lex_state = 136, .external_lex_state = 2}, + [577] = {.lex_state = 34, .external_lex_state = 2}, + [578] = {.lex_state = 136, .external_lex_state = 2}, + [579] = {.lex_state = 134, .external_lex_state = 2}, + [580] = {.lex_state = 10, .external_lex_state = 2}, + [581] = {.lex_state = 10, .external_lex_state = 2}, + [582] = {.lex_state = 38, .external_lex_state = 2}, + [583] = {.lex_state = 38, .external_lex_state = 2}, + [584] = {.lex_state = 85, .external_lex_state = 2}, + [585] = {.lex_state = 69, .external_lex_state = 2}, + [586] = {.lex_state = 85, .external_lex_state = 2}, + [587] = {.lex_state = 38, .external_lex_state = 2}, + [588] = {.lex_state = 81, .external_lex_state = 2}, + [589] = {.lex_state = 81, .external_lex_state = 2}, + [590] = {.lex_state = 136, .external_lex_state = 2}, + [591] = {.lex_state = 2, .external_lex_state = 2}, + [592] = {.lex_state = 2, .external_lex_state = 2}, + [593] = {.lex_state = 85, .external_lex_state = 2}, + [594] = {.lex_state = 2, .external_lex_state = 2}, + [595] = {.lex_state = 136, .external_lex_state = 2}, + [596] = {.lex_state = 136, .external_lex_state = 2}, + [597] = {.lex_state = 136, .external_lex_state = 2}, + [598] = {.lex_state = 10, .external_lex_state = 2}, + [599] = {.lex_state = 136, .external_lex_state = 2}, + [600] = {.lex_state = 69, .external_lex_state = 2}, + [601] = {.lex_state = 136, .external_lex_state = 2}, + [602] = {.lex_state = 136, .external_lex_state = 2}, + [603] = {.lex_state = 136, .external_lex_state = 2}, + [604] = {.lex_state = 136, .external_lex_state = 2}, + [605] = {.lex_state = 136, .external_lex_state = 2}, + [606] = {.lex_state = 136, .external_lex_state = 2}, + [607] = {.lex_state = 136, .external_lex_state = 2}, + [608] = {.lex_state = 136, .external_lex_state = 2}, + [609] = {.lex_state = 136, .external_lex_state = 2}, + [610] = {.lex_state = 136, .external_lex_state = 2}, + [611] = {.lex_state = 136, .external_lex_state = 2}, + [612] = {.lex_state = 136, .external_lex_state = 2}, + [613] = {.lex_state = 136, .external_lex_state = 2}, + [614] = {.lex_state = 136, .external_lex_state = 2}, + [615] = {.lex_state = 136, .external_lex_state = 2}, + [616] = {.lex_state = 30, .external_lex_state = 2}, + [617] = {.lex_state = 136, .external_lex_state = 2}, + [618] = {.lex_state = 30, .external_lex_state = 2}, + [619] = {.lex_state = 136, .external_lex_state = 2}, + [620] = {.lex_state = 136, .external_lex_state = 2}, + [621] = {.lex_state = 136, .external_lex_state = 2}, + [622] = {.lex_state = 136, .external_lex_state = 2}, + [623] = {.lex_state = 136, .external_lex_state = 2}, + [624] = {.lex_state = 136, .external_lex_state = 2}, + [625] = {.lex_state = 136, .external_lex_state = 2}, + [626] = {.lex_state = 136, .external_lex_state = 2}, + [627] = {.lex_state = 136, .external_lex_state = 2}, + [628] = {.lex_state = 134, .external_lex_state = 2}, + [629] = {.lex_state = 134, .external_lex_state = 2}, + [630] = {.lex_state = 134, .external_lex_state = 2}, + [631] = {.lex_state = 63}, + [632] = {.lex_state = 63}, + [633] = {.lex_state = 63}, + [634] = {.lex_state = 63}, + [635] = {.lex_state = 63}, + [636] = {.lex_state = 63}, + [637] = {.lex_state = 63}, + [638] = {.lex_state = 63}, + [639] = {.lex_state = 63}, + [640] = {.lex_state = 63}, + [641] = {.lex_state = 63}, + [642] = {.lex_state = 63}, + [643] = {.lex_state = 63}, + [644] = {.lex_state = 63}, + [645] = {.lex_state = 63}, + [646] = {.lex_state = 63}, + [647] = {.lex_state = 63}, + [648] = {.lex_state = 63}, + [649] = {.lex_state = 63}, + [650] = {.lex_state = 63}, + [651] = {.lex_state = 63}, + [652] = {.lex_state = 63}, + [653] = {.lex_state = 63}, + [654] = {.lex_state = 63}, + [655] = {.lex_state = 63}, + [656] = {.lex_state = 63}, + [657] = {.lex_state = 63}, + [658] = {.lex_state = 63}, + [659] = {.lex_state = 63}, + [660] = {.lex_state = 63}, + [661] = {.lex_state = 63}, + [662] = {.lex_state = 63}, + [663] = {.lex_state = 63}, + [664] = {.lex_state = 63}, + [665] = {.lex_state = 63}, + [666] = {.lex_state = 63}, + [667] = {.lex_state = 63}, + [668] = {.lex_state = 63}, + [669] = {.lex_state = 63}, + [670] = {.lex_state = 63}, + [671] = {.lex_state = 63}, + [672] = {.lex_state = 63}, + [673] = {.lex_state = 63}, + [674] = {.lex_state = 63}, + [675] = {.lex_state = 63}, + [676] = {.lex_state = 63}, + [677] = {.lex_state = 63}, + [678] = {.lex_state = 63}, + [679] = {.lex_state = 63}, + [680] = {.lex_state = 63}, + [681] = {.lex_state = 63}, + [682] = {.lex_state = 63}, + [683] = {.lex_state = 63}, + [684] = {.lex_state = 63}, + [685] = {.lex_state = 63}, + [686] = {.lex_state = 63}, + [687] = {.lex_state = 63}, + [688] = {.lex_state = 63}, + [689] = {.lex_state = 63}, + [690] = {.lex_state = 63}, + [691] = {.lex_state = 63}, + [692] = {.lex_state = 63}, + [693] = {.lex_state = 63}, + [694] = {.lex_state = 63}, + [695] = {.lex_state = 63}, + [696] = {.lex_state = 63}, + [697] = {.lex_state = 63}, + [698] = {.lex_state = 63}, + [699] = {.lex_state = 63}, + [700] = {.lex_state = 63}, + [701] = {.lex_state = 63}, + [702] = {.lex_state = 63}, + [703] = {.lex_state = 63}, + [704] = {.lex_state = 63}, + [705] = {.lex_state = 63}, + [706] = {.lex_state = 63}, + [707] = {.lex_state = 63}, + [708] = {.lex_state = 63}, + [709] = {.lex_state = 63}, + [710] = {.lex_state = 63}, + [711] = {.lex_state = 63}, + [712] = {.lex_state = 63}, + [713] = {.lex_state = 65}, + [714] = {.lex_state = 63}, + [715] = {.lex_state = 63}, + [716] = {.lex_state = 65}, + [717] = {.lex_state = 65}, + [718] = {.lex_state = 63}, + [719] = {.lex_state = 63}, + [720] = {.lex_state = 63}, + [721] = {.lex_state = 65}, + [722] = {.lex_state = 0}, + [723] = {.lex_state = 1}, + [724] = {.lex_state = 63}, + [725] = {.lex_state = 1}, + [726] = {.lex_state = 1}, + [727] = {.lex_state = 0}, + [728] = {.lex_state = 109}, + [729] = {.lex_state = 1}, + [730] = {.lex_state = 0}, + [731] = {.lex_state = 0}, + [732] = {.lex_state = 63}, + [733] = {.lex_state = 0}, + [734] = {.lex_state = 1}, [735] = {.lex_state = 0}, - [736] = {.lex_state = 56}, - [737] = {.lex_state = 0, .external_lex_state = 4}, - [738] = {.lex_state = 56}, - [739] = {.lex_state = 17}, - [740] = {.lex_state = 0}, + [736] = {.lex_state = 1}, + [737] = {.lex_state = 1}, + [738] = {.lex_state = 1}, + [739] = {.lex_state = 1}, + [740] = {.lex_state = 1}, [741] = {.lex_state = 0}, [742] = {.lex_state = 0}, - [743] = {.lex_state = 0, .external_lex_state = 5}, - [744] = {.lex_state = 0, .external_lex_state = 6}, - [745] = {.lex_state = 56}, - [746] = {.lex_state = 20}, - [747] = {.lex_state = 20}, - [748] = {.lex_state = 0}, - [749] = {.lex_state = 20}, - [750] = {.lex_state = 56}, - [751] = {.lex_state = 17}, - [752] = {.lex_state = 0, .external_lex_state = 5}, - [753] = {.lex_state = 0}, - [754] = {.lex_state = 56}, - [755] = {.lex_state = 0, .external_lex_state = 5}, - [756] = {.lex_state = 56}, - [757] = {.lex_state = 0}, - [758] = {.lex_state = 56}, + [743] = {.lex_state = 1}, + [744] = {.lex_state = 0}, + [745] = {.lex_state = 0}, + [746] = {.lex_state = 0}, + [747] = {.lex_state = 0}, + [748] = {.lex_state = 0, .external_lex_state = 4}, + [749] = {.lex_state = 0, .external_lex_state = 4}, + [750] = {.lex_state = 0}, + [751] = {.lex_state = 0}, + [752] = {.lex_state = 0, .external_lex_state = 4}, + [753] = {.lex_state = 0, .external_lex_state = 4}, + [754] = {.lex_state = 0, .external_lex_state = 4}, + [755] = {.lex_state = 0, .external_lex_state = 4}, + [756] = {.lex_state = 63}, + [757] = {.lex_state = 63}, + [758] = {.lex_state = 0, .external_lex_state = 4}, [759] = {.lex_state = 0, .external_lex_state = 4}, - [760] = {.lex_state = 56}, - [761] = {.lex_state = 0, .external_lex_state = 4}, + [760] = {.lex_state = 63}, + [761] = {.lex_state = 63}, [762] = {.lex_state = 0}, - [763] = {.lex_state = 56}, + [763] = {.lex_state = 0}, [764] = {.lex_state = 0}, - [765] = {.lex_state = 0, .external_lex_state = 5}, - [766] = {.lex_state = 56}, - [767] = {.lex_state = 56}, - [768] = {.lex_state = 20}, + [765] = {.lex_state = 0}, + [766] = {.lex_state = 63}, + [767] = {.lex_state = 63}, + [768] = {.lex_state = 0}, [769] = {.lex_state = 0}, - [770] = {.lex_state = 0}, + [770] = {.lex_state = 0, .external_lex_state = 4}, [771] = {.lex_state = 0}, - [772] = {.lex_state = 0, .external_lex_state = 5}, - [773] = {.lex_state = 17}, - [774] = {.lex_state = 0, .external_lex_state = 5}, - [775] = {.lex_state = 98}, - [776] = {.lex_state = 17}, - [777] = {.lex_state = 0, .external_lex_state = 5}, - [778] = {.lex_state = 56}, + [772] = {.lex_state = 63}, + [773] = {.lex_state = 0, .external_lex_state = 4}, + [774] = {.lex_state = 0, .external_lex_state = 4}, + [775] = {.lex_state = 0, .external_lex_state = 4}, + [776] = {.lex_state = 0}, + [777] = {.lex_state = 0, .external_lex_state = 4}, + [778] = {.lex_state = 0}, [779] = {.lex_state = 0}, - [780] = {.lex_state = 56}, - [781] = {.lex_state = 0, .external_lex_state = 4}, - [782] = {.lex_state = 56}, + [780] = {.lex_state = 0, .external_lex_state = 4}, + [781] = {.lex_state = 63}, + [782] = {.lex_state = 0}, [783] = {.lex_state = 0}, - [784] = {.lex_state = 297}, - [785] = {.lex_state = 0}, - [786] = {.lex_state = 20}, - [787] = {.lex_state = 56}, - [788] = {.lex_state = 0, .external_lex_state = 4}, - [789] = {.lex_state = 56}, - [790] = {.lex_state = 0, .external_lex_state = 5}, - [791] = {.lex_state = 0, .external_lex_state = 5}, - [792] = {.lex_state = 56}, - [793] = {.lex_state = 0}, + [784] = {.lex_state = 0, .external_lex_state = 4}, + [785] = {.lex_state = 0, .external_lex_state = 4}, + [786] = {.lex_state = 0}, + [787] = {.lex_state = 0}, + [788] = {.lex_state = 0}, + [789] = {.lex_state = 0, .external_lex_state = 4}, + [790] = {.lex_state = 63}, + [791] = {.lex_state = 0, .external_lex_state = 4}, + [792] = {.lex_state = 63}, + [793] = {.lex_state = 0, .external_lex_state = 4}, [794] = {.lex_state = 0}, - [795] = {.lex_state = 56}, - [796] = {.lex_state = 99}, - [797] = {.lex_state = 56}, + [795] = {.lex_state = 0}, + [796] = {.lex_state = 0, .external_lex_state = 4}, + [797] = {.lex_state = 0}, [798] = {.lex_state = 0, .external_lex_state = 4}, - [799] = {.lex_state = 56}, - [800] = {.lex_state = 0}, - [801] = {.lex_state = 56}, - [802] = {.lex_state = 56}, - [803] = {.lex_state = 0, .external_lex_state = 6}, - [804] = {.lex_state = 0, .external_lex_state = 6}, - [805] = {.lex_state = 17}, - [806] = {.lex_state = 0, .external_lex_state = 6}, - [807] = {.lex_state = 56}, - [808] = {.lex_state = 17}, - [809] = {.lex_state = 98}, - [810] = {.lex_state = 0, .external_lex_state = 5}, - [811] = {.lex_state = 99}, - [812] = {.lex_state = 0, .external_lex_state = 6}, - [813] = {.lex_state = 17}, - [814] = {.lex_state = 17}, + [799] = {.lex_state = 63}, + [800] = {.lex_state = 63}, + [801] = {.lex_state = 0, .external_lex_state = 4}, + [802] = {.lex_state = 0}, + [803] = {.lex_state = 63}, + [804] = {.lex_state = 0}, + [805] = {.lex_state = 63}, + [806] = {.lex_state = 0, .external_lex_state = 5}, + [807] = {.lex_state = 63}, + [808] = {.lex_state = 0}, + [809] = {.lex_state = 0, .external_lex_state = 6}, + [810] = {.lex_state = 63}, + [811] = {.lex_state = 29}, + [812] = {.lex_state = 0}, + [813] = {.lex_state = 0}, + [814] = {.lex_state = 24}, [815] = {.lex_state = 0, .external_lex_state = 6}, - [816] = {.lex_state = 17}, + [816] = {.lex_state = 63}, [817] = {.lex_state = 0}, - [818] = {.lex_state = 98}, - [819] = {.lex_state = 0}, - [820] = {.lex_state = 99}, - [821] = {.lex_state = 0, .external_lex_state = 6}, - [822] = {.lex_state = 20}, - [823] = {.lex_state = 17}, + [818] = {.lex_state = 63}, + [819] = {.lex_state = 0, .external_lex_state = 5}, + [820] = {.lex_state = 63}, + [821] = {.lex_state = 0}, + [822] = {.lex_state = 0}, + [823] = {.lex_state = 63}, [824] = {.lex_state = 0, .external_lex_state = 6}, - [825] = {.lex_state = 56}, - [826] = {.lex_state = 0}, - [827] = {.lex_state = 98}, - [828] = {.lex_state = 0, .external_lex_state = 5}, - [829] = {.lex_state = 99}, - [830] = {.lex_state = 0, .external_lex_state = 6}, + [825] = {.lex_state = 0, .external_lex_state = 6}, + [826] = {.lex_state = 24}, + [827] = {.lex_state = 0}, + [828] = {.lex_state = 63}, + [829] = {.lex_state = 29}, + [830] = {.lex_state = 0}, [831] = {.lex_state = 0}, - [832] = {.lex_state = 17}, - [833] = {.lex_state = 0, .external_lex_state = 6}, - [834] = {.lex_state = 0}, - [835] = {.lex_state = 20}, - [836] = {.lex_state = 98}, - [837] = {.lex_state = 56}, - [838] = {.lex_state = 99}, - [839] = {.lex_state = 0, .external_lex_state = 6}, - [840] = {.lex_state = 56}, - [841] = {.lex_state = 17}, - [842] = {.lex_state = 0, .external_lex_state = 6}, - [843] = {.lex_state = 0, .external_lex_state = 4}, - [844] = {.lex_state = 56}, - [845] = {.lex_state = 98}, - [846] = {.lex_state = 56}, - [847] = {.lex_state = 99}, + [832] = {.lex_state = 0}, + [833] = {.lex_state = 29}, + [834] = {.lex_state = 24}, + [835] = {.lex_state = 63}, + [836] = {.lex_state = 0, .external_lex_state = 6}, + [837] = {.lex_state = 0}, + [838] = {.lex_state = 0, .external_lex_state = 6}, + [839] = {.lex_state = 63}, + [840] = {.lex_state = 0}, + [841] = {.lex_state = 63}, + [842] = {.lex_state = 0, .external_lex_state = 5}, + [843] = {.lex_state = 63}, + [844] = {.lex_state = 63}, + [845] = {.lex_state = 0}, + [846] = {.lex_state = 0, .external_lex_state = 5}, + [847] = {.lex_state = 63}, [848] = {.lex_state = 0, .external_lex_state = 6}, [849] = {.lex_state = 0}, - [850] = {.lex_state = 17}, - [851] = {.lex_state = 0, .external_lex_state = 6}, - [852] = {.lex_state = 56}, - [853] = {.lex_state = 0, .external_lex_state = 5}, - [854] = {.lex_state = 98}, - [855] = {.lex_state = 17}, - [856] = {.lex_state = 99}, - [857] = {.lex_state = 0, .external_lex_state = 6}, + [850] = {.lex_state = 63}, + [851] = {.lex_state = 63}, + [852] = {.lex_state = 29}, + [853] = {.lex_state = 0}, + [854] = {.lex_state = 0}, + [855] = {.lex_state = 0, .external_lex_state = 6}, + [856] = {.lex_state = 24}, + [857] = {.lex_state = 24}, [858] = {.lex_state = 0}, - [859] = {.lex_state = 17}, - [860] = {.lex_state = 0, .external_lex_state = 6}, - [861] = {.lex_state = 0}, - [862] = {.lex_state = 100}, - [863] = {.lex_state = 98}, - [864] = {.lex_state = 20}, - [865] = {.lex_state = 99}, - [866] = {.lex_state = 0, .external_lex_state = 6}, - [867] = {.lex_state = 0, .external_lex_state = 5}, - [868] = {.lex_state = 17}, + [859] = {.lex_state = 0}, + [860] = {.lex_state = 29}, + [861] = {.lex_state = 0, .external_lex_state = 6}, + [862] = {.lex_state = 63}, + [863] = {.lex_state = 0}, + [864] = {.lex_state = 63}, + [865] = {.lex_state = 0, .external_lex_state = 5}, + [866] = {.lex_state = 63}, + [867] = {.lex_state = 63}, + [868] = {.lex_state = 0}, [869] = {.lex_state = 0, .external_lex_state = 6}, - [870] = {.lex_state = 56}, - [871] = {.lex_state = 0, .external_lex_state = 5}, - [872] = {.lex_state = 98}, - [873] = {.lex_state = 0}, - [874] = {.lex_state = 99}, - [875] = {.lex_state = 0, .external_lex_state = 6}, - [876] = {.lex_state = 56}, - [877] = {.lex_state = 17}, - [878] = {.lex_state = 0, .external_lex_state = 6}, - [879] = {.lex_state = 0, .external_lex_state = 4}, - [880] = {.lex_state = 0, .external_lex_state = 7}, - [881] = {.lex_state = 98}, - [882] = {.lex_state = 56}, - [883] = {.lex_state = 99}, - [884] = {.lex_state = 0}, - [885] = {.lex_state = 0}, + [870] = {.lex_state = 0}, + [871] = {.lex_state = 0, .external_lex_state = 6}, + [872] = {.lex_state = 63}, + [873] = {.lex_state = 0, .external_lex_state = 5}, + [874] = {.lex_state = 63}, + [875] = {.lex_state = 29}, + [876] = {.lex_state = 0}, + [877] = {.lex_state = 0}, + [878] = {.lex_state = 63}, + [879] = {.lex_state = 0}, + [880] = {.lex_state = 24}, + [881] = {.lex_state = 63}, + [882] = {.lex_state = 0, .external_lex_state = 6}, + [883] = {.lex_state = 24}, + [884] = {.lex_state = 0, .external_lex_state = 6}, + [885] = {.lex_state = 63}, [886] = {.lex_state = 0}, - [887] = {.lex_state = 56}, + [887] = {.lex_state = 63}, [888] = {.lex_state = 0, .external_lex_state = 5}, - [889] = {.lex_state = 56}, + [889] = {.lex_state = 63}, [890] = {.lex_state = 0}, - [891] = {.lex_state = 17}, - [892] = {.lex_state = 0}, - [893] = {.lex_state = 0, .external_lex_state = 7}, - [894] = {.lex_state = 0, .external_lex_state = 7}, - [895] = {.lex_state = 0, .external_lex_state = 7}, - [896] = {.lex_state = 0, .external_lex_state = 7}, - [897] = {.lex_state = 0, .external_lex_state = 7}, - [898] = {.lex_state = 0, .external_lex_state = 7}, - [899] = {.lex_state = 0, .external_lex_state = 7}, - [900] = {.lex_state = 0, .external_lex_state = 7}, - [901] = {.lex_state = 0, .external_lex_state = 7}, + [891] = {.lex_state = 0}, + [892] = {.lex_state = 29}, + [893] = {.lex_state = 63}, + [894] = {.lex_state = 0, .external_lex_state = 6}, + [895] = {.lex_state = 0}, + [896] = {.lex_state = 63}, + [897] = {.lex_state = 0, .external_lex_state = 5}, + [898] = {.lex_state = 63}, + [899] = {.lex_state = 0}, + [900] = {.lex_state = 63}, + [901] = {.lex_state = 0, .external_lex_state = 6}, + [902] = {.lex_state = 24}, + [903] = {.lex_state = 0}, + [904] = {.lex_state = 0}, + [905] = {.lex_state = 29}, + [906] = {.lex_state = 63}, + [907] = {.lex_state = 0, .external_lex_state = 6}, + [908] = {.lex_state = 0}, + [909] = {.lex_state = 63}, + [910] = {.lex_state = 0, .external_lex_state = 5}, + [911] = {.lex_state = 63}, + [912] = {.lex_state = 0, .external_lex_state = 7}, + [913] = {.lex_state = 0, .external_lex_state = 7}, + [914] = {.lex_state = 24}, + [915] = {.lex_state = 0, .external_lex_state = 7}, + [916] = {.lex_state = 0}, + [917] = {.lex_state = 24}, + [918] = {.lex_state = 110}, + [919] = {.lex_state = 63}, + [920] = {.lex_state = 111}, + [921] = {.lex_state = 0, .external_lex_state = 7}, + [922] = {.lex_state = 0, .external_lex_state = 6}, + [923] = {.lex_state = 24}, + [924] = {.lex_state = 0, .external_lex_state = 7}, + [925] = {.lex_state = 24}, + [926] = {.lex_state = 24}, + [927] = {.lex_state = 110}, + [928] = {.lex_state = 0}, + [929] = {.lex_state = 111}, + [930] = {.lex_state = 0, .external_lex_state = 7}, + [931] = {.lex_state = 24}, + [932] = {.lex_state = 24}, + [933] = {.lex_state = 0, .external_lex_state = 7}, + [934] = {.lex_state = 321}, + [935] = {.lex_state = 29}, + [936] = {.lex_state = 110}, + [937] = {.lex_state = 63}, + [938] = {.lex_state = 111}, + [939] = {.lex_state = 0, .external_lex_state = 7}, + [940] = {.lex_state = 0, .external_lex_state = 6}, + [941] = {.lex_state = 24}, + [942] = {.lex_state = 0, .external_lex_state = 7}, + [943] = {.lex_state = 0}, + [944] = {.lex_state = 0}, + [945] = {.lex_state = 110}, + [946] = {.lex_state = 63}, + [947] = {.lex_state = 111}, + [948] = {.lex_state = 0, .external_lex_state = 7}, + [949] = {.lex_state = 0}, + [950] = {.lex_state = 24}, + [951] = {.lex_state = 0, .external_lex_state = 7}, + [952] = {.lex_state = 0, .external_lex_state = 5}, + [953] = {.lex_state = 29}, + [954] = {.lex_state = 110}, + [955] = {.lex_state = 63}, + [956] = {.lex_state = 111}, + [957] = {.lex_state = 0, .external_lex_state = 7}, + [958] = {.lex_state = 63}, + [959] = {.lex_state = 24}, + [960] = {.lex_state = 0, .external_lex_state = 7}, + [961] = {.lex_state = 0}, + [962] = {.lex_state = 0, .external_lex_state = 6}, + [963] = {.lex_state = 110}, + [964] = {.lex_state = 24}, + [965] = {.lex_state = 111}, + [966] = {.lex_state = 0, .external_lex_state = 7}, + [967] = {.lex_state = 0}, + [968] = {.lex_state = 24}, + [969] = {.lex_state = 0, .external_lex_state = 7}, + [970] = {.lex_state = 0}, + [971] = {.lex_state = 29}, + [972] = {.lex_state = 110}, + [973] = {.lex_state = 63}, + [974] = {.lex_state = 111}, + [975] = {.lex_state = 0, .external_lex_state = 7}, + [976] = {.lex_state = 0, .external_lex_state = 6}, + [977] = {.lex_state = 24}, + [978] = {.lex_state = 0, .external_lex_state = 7}, + [979] = {.lex_state = 0}, + [980] = {.lex_state = 63}, + [981] = {.lex_state = 110}, + [982] = {.lex_state = 112}, + [983] = {.lex_state = 111}, + [984] = {.lex_state = 0, .external_lex_state = 7}, + [985] = {.lex_state = 0, .external_lex_state = 7}, + [986] = {.lex_state = 24}, + [987] = {.lex_state = 0, .external_lex_state = 7}, + [988] = {.lex_state = 63}, + [989] = {.lex_state = 0, .external_lex_state = 6}, + [990] = {.lex_state = 110}, + [991] = {.lex_state = 110}, + [992] = {.lex_state = 111}, + [993] = {.lex_state = 0, .external_lex_state = 7}, + [994] = {.lex_state = 0, .external_lex_state = 5}, + [995] = {.lex_state = 24}, + [996] = {.lex_state = 0, .external_lex_state = 7}, + [997] = {.lex_state = 0, .external_lex_state = 5}, + [998] = {.lex_state = 111}, + [999] = {.lex_state = 110}, + [1000] = {.lex_state = 63}, + [1001] = {.lex_state = 111}, + [1002] = {.lex_state = 0, .external_lex_state = 8}, + [1003] = {.lex_state = 0}, + [1004] = {.lex_state = 0}, + [1005] = {.lex_state = 0}, + [1006] = {.lex_state = 63}, + [1007] = {.lex_state = 63}, + [1008] = {.lex_state = 63}, + [1009] = {.lex_state = 0}, + [1010] = {.lex_state = 0, .external_lex_state = 6}, + [1011] = {.lex_state = 24}, + [1012] = {.lex_state = 0, .external_lex_state = 8}, + [1013] = {.lex_state = 0, .external_lex_state = 8}, + [1014] = {.lex_state = 0, .external_lex_state = 8}, + [1015] = {.lex_state = 0, .external_lex_state = 8}, + [1016] = {.lex_state = 0, .external_lex_state = 8}, + [1017] = {.lex_state = 0, .external_lex_state = 8}, + [1018] = {.lex_state = 0, .external_lex_state = 8}, + [1019] = {.lex_state = 0, .external_lex_state = 8}, + [1020] = {.lex_state = 0, .external_lex_state = 8}, + [1021] = {.lex_state = 0, .external_lex_state = 8}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -7646,6 +8359,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(1), [anon_sym_LBRACE_] = ACTIONS(1), [anon_sym__] = ACTIONS(1), + [aux_sym_emphasis_end_token1] = ACTIONS(1), [anon_sym_LBRACE_STAR] = ACTIONS(1), [anon_sym_SPACE] = ACTIONS(1), [anon_sym_STAR] = ACTIONS(1), @@ -7707,91 +8421,1393 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_end_check] = ACTIONS(1), [sym__in_real_emphasis] = ACTIONS(1), [sym__in_fallback] = ACTIONS(1), + [sym__non_whitespace_check] = ACTIONS(1), [sym__error] = ACTIONS(1), }, [1] = { - [sym_inline] = STATE(885), - [sym__inline] = STATE(884), - [sym__element] = STATE(93), - [sym_emphasis] = STATE(184), - [sym_emphasis_begin] = STATE(880), - [sym_strong] = STATE(184), - [sym_strong_begin] = STATE(90), - [sym__hard_line_break] = STATE(184), - [sym_hard_line_break] = STATE(184), - [sym__smart_punctuation] = STATE(184), - [sym_autolink] = STATE(184), - [sym_highlighted] = STATE(184), - [sym_insert] = STATE(184), - [sym_delete] = STATE(184), - [sym_superscript] = STATE(184), - [sym_subscript] = STATE(184), - [sym_footnote_reference] = STATE(184), - [sym__image] = STATE(184), - [sym_full_reference_image] = STATE(184), - [sym_collapsed_reference_image] = STATE(184), - [sym_inline_image] = STATE(184), - [sym__image_description] = STATE(609), - [sym__link] = STATE(184), - [sym_full_reference_link] = STATE(184), - [sym_collapsed_reference_link] = STATE(184), - [sym_inline_link] = STATE(184), - [sym_link_text] = STATE(612), - [sym__comment_with_spaces] = STATE(184), - [sym_span] = STATE(184), - [sym_raw_inline] = STATE(184), - [sym_math] = STATE(184), - [sym_verbatim] = STATE(184), - [sym__todo_highlights] = STATE(184), - [sym_todo] = STATE(184), - [sym_note] = STATE(184), - [sym__symbol_fallback] = STATE(184), - [aux_sym__text] = STATE(151), - [aux_sym__inline_repeat1] = STATE(93), + [sym_inline] = STATE(1004), + [sym__inline] = STATE(1003), + [sym__element] = STATE(101), + [sym_emphasis] = STATE(197), + [sym_emphasis_begin] = STATE(1002), + [sym_strong] = STATE(197), + [sym_strong_begin] = STATE(98), + [sym__hard_line_break] = STATE(197), + [sym_hard_line_break] = STATE(197), + [sym__smart_punctuation] = STATE(197), + [sym_autolink] = STATE(197), + [sym_highlighted] = STATE(197), + [sym_insert] = STATE(197), + [sym_delete] = STATE(197), + [sym_superscript] = STATE(197), + [sym_subscript] = STATE(197), + [sym_footnote_reference] = STATE(197), + [sym__image] = STATE(197), + [sym_full_reference_image] = STATE(197), + [sym_collapsed_reference_image] = STATE(197), + [sym_inline_image] = STATE(197), + [sym__image_description] = STATE(685), + [sym__link] = STATE(197), + [sym_full_reference_link] = STATE(197), + [sym_collapsed_reference_link] = STATE(197), + [sym_inline_link] = STATE(197), + [sym_link_text] = STATE(719), + [sym__comment_with_spaces] = STATE(197), + [sym_span] = STATE(197), + [sym_raw_inline] = STATE(197), + [sym_math] = STATE(197), + [sym_verbatim] = STATE(197), + [sym__todo_highlights] = STATE(197), + [sym_todo] = STATE(197), + [sym_note] = STATE(197), + [sym__symbol_fallback] = STATE(197), + [aux_sym__text] = STATE(171), + [aux_sym__inline_repeat1] = STATE(101), [anon_sym_LBRACE_] = ACTIONS(3), [anon_sym__] = ACTIONS(5), [anon_sym_LBRACE_STAR] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(9), [anon_sym_BSLASH] = ACTIONS(11), - [sym_quotation_marks] = ACTIONS(5), - [sym_ellipsis] = ACTIONS(5), - [sym_em_dash] = ACTIONS(5), - [sym_en_dash] = ACTIONS(13), - [sym_backslash_escape] = ACTIONS(13), - [anon_sym_LT] = ACTIONS(15), - [anon_sym_LBRACE_EQ] = ACTIONS(17), - [anon_sym_LBRACE_PLUS] = ACTIONS(19), - [anon_sym_LBRACE_DASH] = ACTIONS(21), - [sym_symbol] = ACTIONS(5), - [anon_sym_LBRACE_CARET] = ACTIONS(23), - [anon_sym_CARET] = ACTIONS(23), - [anon_sym_LBRACE_TILDE] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_LBRACK_CARET] = ACTIONS(27), - [anon_sym_BANG_LBRACK] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_LBRACE2] = ACTIONS(13), - [anon_sym_DOLLAR] = ACTIONS(33), - [anon_sym_TODO] = ACTIONS(35), - [anon_sym_WIP] = ACTIONS(35), - [anon_sym_NOTE] = ACTIONS(37), - [anon_sym_INFO] = ACTIONS(37), - [anon_sym_XXX] = ACTIONS(37), - [sym_fixme] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [sym__whitespace1] = ACTIONS(39), - [sym__newline] = ACTIONS(41), - [aux_sym__text_token1] = ACTIONS(43), - [sym__verbatim_begin] = ACTIONS(45), + [sym_quotation_marks] = ACTIONS(13), + [sym_ellipsis] = ACTIONS(13), + [sym_em_dash] = ACTIONS(13), + [sym_en_dash] = ACTIONS(15), + [sym_backslash_escape] = ACTIONS(15), + [anon_sym_LT] = ACTIONS(17), + [anon_sym_LBRACE_EQ] = ACTIONS(19), + [anon_sym_LBRACE_PLUS] = ACTIONS(21), + [anon_sym_LBRACE_DASH] = ACTIONS(23), + [sym_symbol] = ACTIONS(13), + [anon_sym_LBRACE_CARET] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_LBRACE_TILDE] = ACTIONS(27), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_LBRACK_CARET] = ACTIONS(29), + [anon_sym_BANG_LBRACK] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACE2] = ACTIONS(15), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_TODO] = ACTIONS(37), + [anon_sym_WIP] = ACTIONS(37), + [anon_sym_NOTE] = ACTIONS(39), + [anon_sym_INFO] = ACTIONS(39), + [anon_sym_XXX] = ACTIONS(39), + [sym_fixme] = ACTIONS(13), + [anon_sym_PIPE] = ACTIONS(13), + [sym__whitespace1] = ACTIONS(41), + [sym__newline] = ACTIONS(43), + [aux_sym__text_token1] = ACTIONS(45), + [sym__verbatim_begin] = ACTIONS(47), }, [2] = { - [sym__inline] = STATE(722), - [sym__element] = STATE(97), - [sym_emphasis] = STATE(182), - [sym_emphasis_begin] = STATE(898), - [sym_strong] = STATE(182), - [sym_strong_begin] = STATE(104), - [sym__hard_line_break] = STATE(182), + [sym__inline] = STATE(917), + [sym__element] = STATE(118), + [sym_emphasis] = STATE(204), + [sym_emphasis_begin] = STATE(1017), + [sym_strong] = STATE(204), + [sym_strong_begin] = STATE(114), + [sym__hard_line_break] = STATE(204), + [sym_hard_line_break] = STATE(204), + [sym__smart_punctuation] = STATE(204), + [sym_autolink] = STATE(204), + [sym_highlighted] = STATE(204), + [sym_insert] = STATE(204), + [sym_delete] = STATE(204), + [sym_superscript] = STATE(204), + [sym_subscript] = STATE(204), + [sym_footnote_reference] = STATE(204), + [sym__image] = STATE(204), + [sym_full_reference_image] = STATE(204), + [sym_collapsed_reference_image] = STATE(204), + [sym_inline_image] = STATE(204), + [sym__image_description] = STATE(714), + [sym__link] = STATE(204), + [sym_full_reference_link] = STATE(204), + [sym_collapsed_reference_link] = STATE(204), + [sym_inline_link] = STATE(204), + [sym_link_text] = STATE(715), + [sym__comment_with_spaces] = STATE(204), + [sym_span] = STATE(204), + [sym_raw_inline] = STATE(204), + [sym_math] = STATE(204), + [sym_verbatim] = STATE(204), + [sym__todo_highlights] = STATE(204), + [sym_todo] = STATE(204), + [sym_note] = STATE(204), + [sym__symbol_fallback] = STATE(204), + [aux_sym__text] = STATE(149), + [aux_sym__inline_repeat1] = STATE(118), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(51), + [anon_sym__] = ACTIONS(54), + [anon_sym_LBRACE_STAR] = ACTIONS(57), + [anon_sym_STAR] = ACTIONS(60), + [anon_sym_BSLASH] = ACTIONS(63), + [sym_quotation_marks] = ACTIONS(66), + [sym_ellipsis] = ACTIONS(66), + [sym_em_dash] = ACTIONS(66), + [sym_en_dash] = ACTIONS(69), + [sym_backslash_escape] = ACTIONS(69), + [anon_sym_LT] = ACTIONS(72), + [anon_sym_LBRACE_EQ] = ACTIONS(75), + [anon_sym_LBRACE_PLUS] = ACTIONS(78), + [anon_sym_LBRACE_DASH] = ACTIONS(81), + [anon_sym_DASH_RBRACE] = ACTIONS(84), + [sym_symbol] = ACTIONS(66), + [anon_sym_LBRACE_CARET] = ACTIONS(86), + [anon_sym_CARET] = ACTIONS(86), + [anon_sym_LBRACE_TILDE] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(89), + [anon_sym_LBRACK_CARET] = ACTIONS(92), + [anon_sym_RBRACK] = ACTIONS(95), + [anon_sym_BANG_LBRACK] = ACTIONS(97), + [anon_sym_LBRACK] = ACTIONS(100), + [anon_sym_LBRACE2] = ACTIONS(69), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_TODO] = ACTIONS(106), + [anon_sym_WIP] = ACTIONS(106), + [anon_sym_NOTE] = ACTIONS(109), + [anon_sym_INFO] = ACTIONS(109), + [anon_sym_XXX] = ACTIONS(109), + [sym_fixme] = ACTIONS(66), + [anon_sym_PIPE] = ACTIONS(66), + [sym__whitespace1] = ACTIONS(112), + [sym__newline] = ACTIONS(115), + [aux_sym__text_token1] = ACTIONS(118), + [sym__verbatim_begin] = ACTIONS(121), + }, + [3] = { + [sym__inline] = STATE(917), + [sym__element] = STATE(118), + [sym_emphasis] = STATE(204), + [sym_emphasis_begin] = STATE(1017), + [sym_strong] = STATE(204), + [sym_strong_begin] = STATE(114), + [sym__hard_line_break] = STATE(204), + [sym_hard_line_break] = STATE(204), + [sym__smart_punctuation] = STATE(204), + [sym_autolink] = STATE(204), + [sym_highlighted] = STATE(204), + [sym_insert] = STATE(204), + [sym_delete] = STATE(204), + [sym_superscript] = STATE(204), + [sym_subscript] = STATE(204), + [sym_footnote_reference] = STATE(204), + [sym__image] = STATE(204), + [sym_full_reference_image] = STATE(204), + [sym_collapsed_reference_image] = STATE(204), + [sym_inline_image] = STATE(204), + [sym__image_description] = STATE(714), + [sym__link] = STATE(204), + [sym_full_reference_link] = STATE(204), + [sym_collapsed_reference_link] = STATE(204), + [sym_inline_link] = STATE(204), + [sym_link_text] = STATE(715), + [sym__comment_with_spaces] = STATE(204), + [sym_span] = STATE(204), + [sym_raw_inline] = STATE(204), + [sym_math] = STATE(204), + [sym_verbatim] = STATE(204), + [sym__todo_highlights] = STATE(204), + [sym_todo] = STATE(204), + [sym_note] = STATE(204), + [sym__symbol_fallback] = STATE(204), + [aux_sym__text] = STATE(149), + [aux_sym__inline_repeat1] = STATE(118), + [ts_builtin_sym_end] = ACTIONS(84), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(51), + [anon_sym__] = ACTIONS(54), + [anon_sym_LBRACE_STAR] = ACTIONS(57), + [anon_sym_STAR] = ACTIONS(60), + [anon_sym_BSLASH] = ACTIONS(63), + [sym_quotation_marks] = ACTIONS(66), + [sym_ellipsis] = ACTIONS(66), + [sym_em_dash] = ACTIONS(66), + [sym_en_dash] = ACTIONS(69), + [sym_backslash_escape] = ACTIONS(69), + [anon_sym_LT] = ACTIONS(72), + [anon_sym_LBRACE_EQ] = ACTIONS(75), + [anon_sym_LBRACE_PLUS] = ACTIONS(78), + [anon_sym_LBRACE_DASH] = ACTIONS(81), + [sym_symbol] = ACTIONS(66), + [anon_sym_LBRACE_CARET] = ACTIONS(86), + [anon_sym_CARET] = ACTIONS(86), + [anon_sym_LBRACE_TILDE] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(89), + [anon_sym_LBRACK_CARET] = ACTIONS(92), + [anon_sym_RBRACK] = ACTIONS(95), + [anon_sym_BANG_LBRACK] = ACTIONS(97), + [anon_sym_LBRACK] = ACTIONS(100), + [anon_sym_LBRACE2] = ACTIONS(69), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_TODO] = ACTIONS(106), + [anon_sym_WIP] = ACTIONS(106), + [anon_sym_NOTE] = ACTIONS(109), + [anon_sym_INFO] = ACTIONS(109), + [anon_sym_XXX] = ACTIONS(109), + [sym_fixme] = ACTIONS(66), + [anon_sym_PIPE] = ACTIONS(66), + [sym__whitespace1] = ACTIONS(112), + [sym__newline] = ACTIONS(115), + [aux_sym__text_token1] = ACTIONS(118), + [sym__verbatim_begin] = ACTIONS(121), + }, + [4] = { + [sym__inline] = STATE(917), + [sym__element] = STATE(118), + [sym_emphasis] = STATE(204), + [sym_emphasis_begin] = STATE(1017), + [sym_strong] = STATE(204), + [sym_strong_begin] = STATE(114), + [sym__hard_line_break] = STATE(204), + [sym_hard_line_break] = STATE(204), + [sym__smart_punctuation] = STATE(204), + [sym_autolink] = STATE(204), + [sym_highlighted] = STATE(204), + [sym_insert] = STATE(204), + [sym_delete] = STATE(204), + [sym_superscript] = STATE(204), + [sym_subscript] = STATE(204), + [sym_footnote_reference] = STATE(204), + [sym__image] = STATE(204), + [sym_full_reference_image] = STATE(204), + [sym_collapsed_reference_image] = STATE(204), + [sym_inline_image] = STATE(204), + [sym__image_description] = STATE(714), + [sym__link] = STATE(204), + [sym_full_reference_link] = STATE(204), + [sym_collapsed_reference_link] = STATE(204), + [sym_inline_link] = STATE(204), + [sym_link_text] = STATE(715), + [sym__comment_with_spaces] = STATE(204), + [sym_span] = STATE(204), + [sym_raw_inline] = STATE(204), + [sym_math] = STATE(204), + [sym_verbatim] = STATE(204), + [sym__todo_highlights] = STATE(204), + [sym_todo] = STATE(204), + [sym_note] = STATE(204), + [sym__symbol_fallback] = STATE(204), + [aux_sym__text] = STATE(149), + [aux_sym__inline_repeat1] = STATE(118), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(51), + [anon_sym__] = ACTIONS(54), + [anon_sym_LBRACE_STAR] = ACTIONS(57), + [anon_sym_STAR] = ACTIONS(60), + [anon_sym_BSLASH] = ACTIONS(63), + [sym_quotation_marks] = ACTIONS(66), + [sym_ellipsis] = ACTIONS(66), + [sym_em_dash] = ACTIONS(66), + [sym_en_dash] = ACTIONS(69), + [sym_backslash_escape] = ACTIONS(69), + [anon_sym_LT] = ACTIONS(72), + [anon_sym_LBRACE_EQ] = ACTIONS(75), + [anon_sym_LBRACE_PLUS] = ACTIONS(78), + [anon_sym_PLUS_RBRACE] = ACTIONS(84), + [anon_sym_LBRACE_DASH] = ACTIONS(81), + [sym_symbol] = ACTIONS(66), + [anon_sym_LBRACE_CARET] = ACTIONS(86), + [anon_sym_CARET] = ACTIONS(86), + [anon_sym_LBRACE_TILDE] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(89), + [anon_sym_LBRACK_CARET] = ACTIONS(92), + [anon_sym_RBRACK] = ACTIONS(95), + [anon_sym_BANG_LBRACK] = ACTIONS(97), + [anon_sym_LBRACK] = ACTIONS(100), + [anon_sym_LBRACE2] = ACTIONS(69), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_TODO] = ACTIONS(106), + [anon_sym_WIP] = ACTIONS(106), + [anon_sym_NOTE] = ACTIONS(109), + [anon_sym_INFO] = ACTIONS(109), + [anon_sym_XXX] = ACTIONS(109), + [sym_fixme] = ACTIONS(66), + [anon_sym_PIPE] = ACTIONS(66), + [sym__whitespace1] = ACTIONS(112), + [sym__newline] = ACTIONS(115), + [aux_sym__text_token1] = ACTIONS(118), + [sym__verbatim_begin] = ACTIONS(121), + }, + [5] = { + [sym__inline] = STATE(917), + [sym__element] = STATE(118), + [sym_emphasis] = STATE(204), + [sym_emphasis_begin] = STATE(1017), + [sym_strong] = STATE(204), + [sym_strong_begin] = STATE(114), + [sym__hard_line_break] = STATE(204), + [sym_hard_line_break] = STATE(204), + [sym__smart_punctuation] = STATE(204), + [sym_autolink] = STATE(204), + [sym_highlighted] = STATE(204), + [sym_insert] = STATE(204), + [sym_delete] = STATE(204), + [sym_superscript] = STATE(204), + [sym_subscript] = STATE(204), + [sym_footnote_reference] = STATE(204), + [sym__image] = STATE(204), + [sym_full_reference_image] = STATE(204), + [sym_collapsed_reference_image] = STATE(204), + [sym_inline_image] = STATE(204), + [sym__image_description] = STATE(714), + [sym__link] = STATE(204), + [sym_full_reference_link] = STATE(204), + [sym_collapsed_reference_link] = STATE(204), + [sym_inline_link] = STATE(204), + [sym_link_text] = STATE(715), + [sym__comment_with_spaces] = STATE(204), + [sym_span] = STATE(204), + [sym_raw_inline] = STATE(204), + [sym_math] = STATE(204), + [sym_verbatim] = STATE(204), + [sym__todo_highlights] = STATE(204), + [sym_todo] = STATE(204), + [sym_note] = STATE(204), + [sym__symbol_fallback] = STATE(204), + [aux_sym__text] = STATE(149), + [aux_sym__inline_repeat1] = STATE(118), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(51), + [anon_sym__] = ACTIONS(54), + [anon_sym_LBRACE_STAR] = ACTIONS(57), + [anon_sym_STAR] = ACTIONS(60), + [anon_sym_BSLASH] = ACTIONS(63), + [sym_quotation_marks] = ACTIONS(66), + [sym_ellipsis] = ACTIONS(66), + [sym_em_dash] = ACTIONS(66), + [sym_en_dash] = ACTIONS(69), + [sym_backslash_escape] = ACTIONS(69), + [anon_sym_LT] = ACTIONS(72), + [anon_sym_LBRACE_EQ] = ACTIONS(75), + [anon_sym_LBRACE_PLUS] = ACTIONS(78), + [anon_sym_LBRACE_DASH] = ACTIONS(81), + [sym_symbol] = ACTIONS(66), + [anon_sym_LBRACE_CARET] = ACTIONS(86), + [anon_sym_CARET] = ACTIONS(124), + [anon_sym_CARET_RBRACE] = ACTIONS(84), + [anon_sym_LBRACE_TILDE] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(89), + [anon_sym_LBRACK_CARET] = ACTIONS(92), + [anon_sym_RBRACK] = ACTIONS(95), + [anon_sym_BANG_LBRACK] = ACTIONS(97), + [anon_sym_LBRACK] = ACTIONS(100), + [anon_sym_LBRACE2] = ACTIONS(69), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_TODO] = ACTIONS(106), + [anon_sym_WIP] = ACTIONS(106), + [anon_sym_NOTE] = ACTIONS(109), + [anon_sym_INFO] = ACTIONS(109), + [anon_sym_XXX] = ACTIONS(109), + [sym_fixme] = ACTIONS(66), + [anon_sym_PIPE] = ACTIONS(66), + [sym__whitespace1] = ACTIONS(112), + [sym__newline] = ACTIONS(115), + [aux_sym__text_token1] = ACTIONS(118), + [sym__verbatim_begin] = ACTIONS(121), + }, + [6] = { + [sym__inline] = STATE(917), + [sym__element] = STATE(118), + [sym_emphasis] = STATE(204), + [sym_emphasis_begin] = STATE(1017), + [sym_strong] = STATE(204), + [sym_strong_begin] = STATE(114), + [sym__hard_line_break] = STATE(204), + [sym_hard_line_break] = STATE(204), + [sym__smart_punctuation] = STATE(204), + [sym_autolink] = STATE(204), + [sym_highlighted] = STATE(204), + [sym_insert] = STATE(204), + [sym_delete] = STATE(204), + [sym_superscript] = STATE(204), + [sym_subscript] = STATE(204), + [sym_footnote_reference] = STATE(204), + [sym__image] = STATE(204), + [sym_full_reference_image] = STATE(204), + [sym_collapsed_reference_image] = STATE(204), + [sym_inline_image] = STATE(204), + [sym__image_description] = STATE(714), + [sym__link] = STATE(204), + [sym_full_reference_link] = STATE(204), + [sym_collapsed_reference_link] = STATE(204), + [sym_inline_link] = STATE(204), + [sym_link_text] = STATE(715), + [sym__comment_with_spaces] = STATE(204), + [sym_span] = STATE(204), + [sym_raw_inline] = STATE(204), + [sym_math] = STATE(204), + [sym_verbatim] = STATE(204), + [sym__todo_highlights] = STATE(204), + [sym_todo] = STATE(204), + [sym_note] = STATE(204), + [sym__symbol_fallback] = STATE(204), + [aux_sym__text] = STATE(149), + [aux_sym__inline_repeat1] = STATE(118), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(51), + [anon_sym__] = ACTIONS(54), + [anon_sym_LBRACE_STAR] = ACTIONS(57), + [anon_sym_STAR] = ACTIONS(60), + [anon_sym_BSLASH] = ACTIONS(63), + [sym_quotation_marks] = ACTIONS(66), + [sym_ellipsis] = ACTIONS(66), + [sym_em_dash] = ACTIONS(66), + [sym_en_dash] = ACTIONS(69), + [sym_backslash_escape] = ACTIONS(69), + [anon_sym_LT] = ACTIONS(72), + [anon_sym_LBRACE_EQ] = ACTIONS(75), + [anon_sym_LBRACE_PLUS] = ACTIONS(78), + [anon_sym_LBRACE_DASH] = ACTIONS(81), + [sym_symbol] = ACTIONS(66), + [anon_sym_LBRACE_CARET] = ACTIONS(86), + [anon_sym_CARET] = ACTIONS(86), + [anon_sym_LBRACE_TILDE] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(89), + [anon_sym_LBRACK_CARET] = ACTIONS(92), + [anon_sym_RBRACK] = ACTIONS(127), + [anon_sym_BANG_LBRACK] = ACTIONS(97), + [anon_sym_LBRACK] = ACTIONS(100), + [anon_sym_RBRACK2] = ACTIONS(84), + [anon_sym_LBRACE2] = ACTIONS(69), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_TODO] = ACTIONS(106), + [anon_sym_WIP] = ACTIONS(106), + [anon_sym_NOTE] = ACTIONS(109), + [anon_sym_INFO] = ACTIONS(109), + [anon_sym_XXX] = ACTIONS(109), + [sym_fixme] = ACTIONS(66), + [anon_sym_PIPE] = ACTIONS(66), + [sym__whitespace1] = ACTIONS(112), + [sym__newline] = ACTIONS(115), + [aux_sym__text_token1] = ACTIONS(118), + [sym__verbatim_begin] = ACTIONS(121), + }, + [7] = { + [sym__inline] = STATE(917), + [sym__element] = STATE(118), + [sym_emphasis] = STATE(204), + [sym_emphasis_begin] = STATE(1017), + [sym_strong] = STATE(204), + [sym_strong_begin] = STATE(114), + [sym__hard_line_break] = STATE(204), + [sym_hard_line_break] = STATE(204), + [sym__smart_punctuation] = STATE(204), + [sym_autolink] = STATE(204), + [sym_highlighted] = STATE(204), + [sym_insert] = STATE(204), + [sym_delete] = STATE(204), + [sym_superscript] = STATE(204), + [sym_subscript] = STATE(204), + [sym_footnote_reference] = STATE(204), + [sym__image] = STATE(204), + [sym_full_reference_image] = STATE(204), + [sym_collapsed_reference_image] = STATE(204), + [sym_inline_image] = STATE(204), + [sym__image_description] = STATE(714), + [sym__link] = STATE(204), + [sym_full_reference_link] = STATE(204), + [sym_collapsed_reference_link] = STATE(204), + [sym_inline_link] = STATE(204), + [sym_link_text] = STATE(715), + [sym__comment_with_spaces] = STATE(204), + [sym_span] = STATE(204), + [sym_raw_inline] = STATE(204), + [sym_math] = STATE(204), + [sym_verbatim] = STATE(204), + [sym__todo_highlights] = STATE(204), + [sym_todo] = STATE(204), + [sym_note] = STATE(204), + [sym__symbol_fallback] = STATE(204), + [aux_sym__text] = STATE(149), + [aux_sym__inline_repeat1] = STATE(118), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(51), + [anon_sym__] = ACTIONS(129), + [aux_sym_emphasis_end_token1] = ACTIONS(84), + [anon_sym_LBRACE_STAR] = ACTIONS(57), + [anon_sym_STAR] = ACTIONS(60), + [anon_sym_BSLASH] = ACTIONS(63), + [sym_quotation_marks] = ACTIONS(66), + [sym_ellipsis] = ACTIONS(66), + [sym_em_dash] = ACTIONS(66), + [sym_en_dash] = ACTIONS(69), + [sym_backslash_escape] = ACTIONS(69), + [anon_sym_LT] = ACTIONS(72), + [anon_sym_LBRACE_EQ] = ACTIONS(75), + [anon_sym_LBRACE_PLUS] = ACTIONS(78), + [anon_sym_LBRACE_DASH] = ACTIONS(81), + [sym_symbol] = ACTIONS(66), + [anon_sym_LBRACE_CARET] = ACTIONS(86), + [anon_sym_CARET] = ACTIONS(86), + [anon_sym_LBRACE_TILDE] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(89), + [anon_sym_LBRACK_CARET] = ACTIONS(92), + [anon_sym_RBRACK] = ACTIONS(95), + [anon_sym_BANG_LBRACK] = ACTIONS(97), + [anon_sym_LBRACK] = ACTIONS(100), + [anon_sym_LBRACE2] = ACTIONS(69), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_TODO] = ACTIONS(106), + [anon_sym_WIP] = ACTIONS(106), + [anon_sym_NOTE] = ACTIONS(109), + [anon_sym_INFO] = ACTIONS(109), + [anon_sym_XXX] = ACTIONS(109), + [sym_fixme] = ACTIONS(66), + [anon_sym_PIPE] = ACTIONS(66), + [sym__whitespace1] = ACTIONS(132), + [sym__newline] = ACTIONS(115), + [aux_sym__text_token1] = ACTIONS(118), + [sym__verbatim_begin] = ACTIONS(121), + }, + [8] = { + [sym__inline] = STATE(917), + [sym__element] = STATE(118), + [sym_emphasis] = STATE(204), + [sym_emphasis_begin] = STATE(1017), + [sym_strong] = STATE(204), + [sym_strong_begin] = STATE(114), + [sym__hard_line_break] = STATE(204), + [sym_hard_line_break] = STATE(204), + [sym__smart_punctuation] = STATE(204), + [sym_autolink] = STATE(204), + [sym_highlighted] = STATE(204), + [sym_insert] = STATE(204), + [sym_delete] = STATE(204), + [sym_superscript] = STATE(204), + [sym_subscript] = STATE(204), + [sym_footnote_reference] = STATE(204), + [sym__image] = STATE(204), + [sym_full_reference_image] = STATE(204), + [sym_collapsed_reference_image] = STATE(204), + [sym_inline_image] = STATE(204), + [sym__image_description] = STATE(714), + [sym__link] = STATE(204), + [sym_full_reference_link] = STATE(204), + [sym_collapsed_reference_link] = STATE(204), + [sym_inline_link] = STATE(204), + [sym_link_text] = STATE(715), + [sym__comment_with_spaces] = STATE(204), + [sym_span] = STATE(204), + [sym_raw_inline] = STATE(204), + [sym_math] = STATE(204), + [sym_verbatim] = STATE(204), + [sym__todo_highlights] = STATE(204), + [sym_todo] = STATE(204), + [sym_note] = STATE(204), + [sym__symbol_fallback] = STATE(204), + [aux_sym__text] = STATE(149), + [aux_sym__inline_repeat1] = STATE(118), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(51), + [anon_sym__] = ACTIONS(54), + [anon_sym_LBRACE_STAR] = ACTIONS(57), + [anon_sym_STAR] = ACTIONS(135), + [aux_sym_strong_end_token1] = ACTIONS(84), + [anon_sym_BSLASH] = ACTIONS(63), + [sym_quotation_marks] = ACTIONS(66), + [sym_ellipsis] = ACTIONS(66), + [sym_em_dash] = ACTIONS(66), + [sym_en_dash] = ACTIONS(69), + [sym_backslash_escape] = ACTIONS(69), + [anon_sym_LT] = ACTIONS(72), + [anon_sym_LBRACE_EQ] = ACTIONS(75), + [anon_sym_LBRACE_PLUS] = ACTIONS(78), + [anon_sym_LBRACE_DASH] = ACTIONS(81), + [sym_symbol] = ACTIONS(66), + [anon_sym_LBRACE_CARET] = ACTIONS(86), + [anon_sym_CARET] = ACTIONS(86), + [anon_sym_LBRACE_TILDE] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(89), + [anon_sym_LBRACK_CARET] = ACTIONS(92), + [anon_sym_RBRACK] = ACTIONS(95), + [anon_sym_BANG_LBRACK] = ACTIONS(97), + [anon_sym_LBRACK] = ACTIONS(100), + [anon_sym_LBRACE2] = ACTIONS(69), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_TODO] = ACTIONS(106), + [anon_sym_WIP] = ACTIONS(106), + [anon_sym_NOTE] = ACTIONS(109), + [anon_sym_INFO] = ACTIONS(109), + [anon_sym_XXX] = ACTIONS(109), + [sym_fixme] = ACTIONS(66), + [anon_sym_PIPE] = ACTIONS(66), + [sym__whitespace1] = ACTIONS(132), + [sym__newline] = ACTIONS(115), + [aux_sym__text_token1] = ACTIONS(118), + [sym__verbatim_begin] = ACTIONS(121), + }, + [9] = { + [sym__inline] = STATE(917), + [sym__element] = STATE(118), + [sym_emphasis] = STATE(204), + [sym_emphasis_begin] = STATE(1017), + [sym_strong] = STATE(204), + [sym_strong_begin] = STATE(114), + [sym__hard_line_break] = STATE(204), + [sym_hard_line_break] = STATE(204), + [sym__smart_punctuation] = STATE(204), + [sym_autolink] = STATE(204), + [sym_highlighted] = STATE(204), + [sym_insert] = STATE(204), + [sym_delete] = STATE(204), + [sym_superscript] = STATE(204), + [sym_subscript] = STATE(204), + [sym_footnote_reference] = STATE(204), + [sym__image] = STATE(204), + [sym_full_reference_image] = STATE(204), + [sym_collapsed_reference_image] = STATE(204), + [sym_inline_image] = STATE(204), + [sym__image_description] = STATE(714), + [sym__link] = STATE(204), + [sym_full_reference_link] = STATE(204), + [sym_collapsed_reference_link] = STATE(204), + [sym_inline_link] = STATE(204), + [sym_link_text] = STATE(715), + [sym__comment_with_spaces] = STATE(204), + [sym_span] = STATE(204), + [sym_raw_inline] = STATE(204), + [sym_math] = STATE(204), + [sym_verbatim] = STATE(204), + [sym__todo_highlights] = STATE(204), + [sym_todo] = STATE(204), + [sym_note] = STATE(204), + [sym__symbol_fallback] = STATE(204), + [aux_sym__text] = STATE(149), + [aux_sym__inline_repeat1] = STATE(118), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(51), + [anon_sym__] = ACTIONS(54), + [anon_sym_LBRACE_STAR] = ACTIONS(57), + [anon_sym_STAR] = ACTIONS(60), + [anon_sym_BSLASH] = ACTIONS(63), + [sym_quotation_marks] = ACTIONS(66), + [sym_ellipsis] = ACTIONS(66), + [sym_em_dash] = ACTIONS(66), + [sym_en_dash] = ACTIONS(69), + [sym_backslash_escape] = ACTIONS(69), + [anon_sym_LT] = ACTIONS(72), + [anon_sym_LBRACE_EQ] = ACTIONS(75), + [anon_sym_EQ_RBRACE] = ACTIONS(84), + [anon_sym_LBRACE_PLUS] = ACTIONS(78), + [anon_sym_LBRACE_DASH] = ACTIONS(81), + [sym_symbol] = ACTIONS(66), + [anon_sym_LBRACE_CARET] = ACTIONS(86), + [anon_sym_CARET] = ACTIONS(86), + [anon_sym_LBRACE_TILDE] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(89), + [anon_sym_LBRACK_CARET] = ACTIONS(92), + [anon_sym_RBRACK] = ACTIONS(95), + [anon_sym_BANG_LBRACK] = ACTIONS(97), + [anon_sym_LBRACK] = ACTIONS(100), + [anon_sym_LBRACE2] = ACTIONS(69), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_TODO] = ACTIONS(106), + [anon_sym_WIP] = ACTIONS(106), + [anon_sym_NOTE] = ACTIONS(109), + [anon_sym_INFO] = ACTIONS(109), + [anon_sym_XXX] = ACTIONS(109), + [sym_fixme] = ACTIONS(66), + [anon_sym_PIPE] = ACTIONS(66), + [sym__whitespace1] = ACTIONS(112), + [sym__newline] = ACTIONS(115), + [aux_sym__text_token1] = ACTIONS(118), + [sym__verbatim_begin] = ACTIONS(121), + }, + [10] = { + [sym__inline] = STATE(917), + [sym__element] = STATE(118), + [sym_emphasis] = STATE(204), + [sym_emphasis_begin] = STATE(1017), + [sym_strong] = STATE(204), + [sym_strong_begin] = STATE(114), + [sym__hard_line_break] = STATE(204), + [sym_hard_line_break] = STATE(204), + [sym__smart_punctuation] = STATE(204), + [sym_autolink] = STATE(204), + [sym_highlighted] = STATE(204), + [sym_insert] = STATE(204), + [sym_delete] = STATE(204), + [sym_superscript] = STATE(204), + [sym_subscript] = STATE(204), + [sym_footnote_reference] = STATE(204), + [sym__image] = STATE(204), + [sym_full_reference_image] = STATE(204), + [sym_collapsed_reference_image] = STATE(204), + [sym_inline_image] = STATE(204), + [sym__image_description] = STATE(714), + [sym__link] = STATE(204), + [sym_full_reference_link] = STATE(204), + [sym_collapsed_reference_link] = STATE(204), + [sym_inline_link] = STATE(204), + [sym_link_text] = STATE(715), + [sym__comment_with_spaces] = STATE(204), + [sym_span] = STATE(204), + [sym_raw_inline] = STATE(204), + [sym_math] = STATE(204), + [sym_verbatim] = STATE(204), + [sym__todo_highlights] = STATE(204), + [sym_todo] = STATE(204), + [sym_note] = STATE(204), + [sym__symbol_fallback] = STATE(204), + [aux_sym__text] = STATE(149), + [aux_sym__inline_repeat1] = STATE(118), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(51), + [anon_sym__] = ACTIONS(54), + [anon_sym_LBRACE_STAR] = ACTIONS(57), + [anon_sym_STAR] = ACTIONS(60), + [anon_sym_BSLASH] = ACTIONS(63), + [sym_quotation_marks] = ACTIONS(66), + [sym_ellipsis] = ACTIONS(66), + [sym_em_dash] = ACTIONS(66), + [sym_en_dash] = ACTIONS(69), + [sym_backslash_escape] = ACTIONS(69), + [anon_sym_LT] = ACTIONS(72), + [anon_sym_LBRACE_EQ] = ACTIONS(75), + [anon_sym_LBRACE_PLUS] = ACTIONS(78), + [anon_sym_LBRACE_DASH] = ACTIONS(81), + [sym_symbol] = ACTIONS(66), + [anon_sym_LBRACE_CARET] = ACTIONS(86), + [anon_sym_CARET] = ACTIONS(86), + [anon_sym_LBRACE_TILDE] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(138), + [anon_sym_TILDE_RBRACE] = ACTIONS(84), + [anon_sym_LBRACK_CARET] = ACTIONS(92), + [anon_sym_RBRACK] = ACTIONS(95), + [anon_sym_BANG_LBRACK] = ACTIONS(97), + [anon_sym_LBRACK] = ACTIONS(100), + [anon_sym_LBRACE2] = ACTIONS(69), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_TODO] = ACTIONS(106), + [anon_sym_WIP] = ACTIONS(106), + [anon_sym_NOTE] = ACTIONS(109), + [anon_sym_INFO] = ACTIONS(109), + [anon_sym_XXX] = ACTIONS(109), + [sym_fixme] = ACTIONS(66), + [anon_sym_PIPE] = ACTIONS(66), + [sym__whitespace1] = ACTIONS(112), + [sym__newline] = ACTIONS(115), + [aux_sym__text_token1] = ACTIONS(118), + [sym__verbatim_begin] = ACTIONS(121), + }, + [11] = { + [sym__inline] = STATE(833), + [sym__element] = STATE(95), + [sym_emphasis] = STATE(215), + [sym_emphasis_begin] = STATE(1012), + [sym_strong] = STATE(215), + [sym_strong_begin] = STATE(128), + [sym__hard_line_break] = STATE(215), + [sym_hard_line_break] = STATE(215), + [sym__smart_punctuation] = STATE(215), + [sym_autolink] = STATE(215), + [sym_highlighted] = STATE(215), + [sym_insert] = STATE(215), + [sym_delete] = STATE(215), + [sym_superscript] = STATE(215), + [sym_subscript] = STATE(215), + [sym_footnote_reference] = STATE(215), + [sym__image] = STATE(215), + [sym_full_reference_image] = STATE(215), + [sym_collapsed_reference_image] = STATE(215), + [sym_inline_image] = STATE(215), + [sym__image_description] = STATE(696), + [sym__link] = STATE(215), + [sym_full_reference_link] = STATE(215), + [sym_collapsed_reference_link] = STATE(215), + [sym_inline_link] = STATE(215), + [sym_link_text] = STATE(705), + [sym__comment_with_spaces] = STATE(215), + [sym_span] = STATE(215), + [sym_raw_inline] = STATE(215), + [sym_math] = STATE(215), + [sym_verbatim] = STATE(215), + [sym__todo_highlights] = STATE(215), + [sym_todo] = STATE(215), + [sym_note] = STATE(215), + [sym__symbol_fallback] = STATE(215), + [aux_sym__text] = STATE(141), + [aux_sym__inline_repeat1] = STATE(95), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(141), + [anon_sym__] = ACTIONS(144), + [anon_sym_LBRACE_STAR] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(150), + [anon_sym_BSLASH] = ACTIONS(153), + [sym_quotation_marks] = ACTIONS(156), + [sym_ellipsis] = ACTIONS(156), + [sym_em_dash] = ACTIONS(156), + [sym_en_dash] = ACTIONS(159), + [sym_backslash_escape] = ACTIONS(159), + [anon_sym_LT] = ACTIONS(162), + [anon_sym_LBRACE_EQ] = ACTIONS(165), + [anon_sym_LBRACE_PLUS] = ACTIONS(168), + [anon_sym_LBRACE_DASH] = ACTIONS(171), + [sym_symbol] = ACTIONS(156), + [anon_sym_LBRACE_CARET] = ACTIONS(174), + [anon_sym_CARET] = ACTIONS(174), + [anon_sym_LBRACE_TILDE] = ACTIONS(177), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_LBRACK_CARET] = ACTIONS(180), + [anon_sym_RBRACK] = ACTIONS(84), + [anon_sym_BANG_LBRACK] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(186), + [anon_sym_LBRACE2] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(189), + [anon_sym_TODO] = ACTIONS(192), + [anon_sym_WIP] = ACTIONS(192), + [anon_sym_NOTE] = ACTIONS(195), + [anon_sym_INFO] = ACTIONS(195), + [anon_sym_XXX] = ACTIONS(195), + [sym_fixme] = ACTIONS(156), + [anon_sym_PIPE] = ACTIONS(156), + [sym__whitespace1] = ACTIONS(198), + [sym__newline] = ACTIONS(201), + [aux_sym__text_token1] = ACTIONS(204), + [sym__verbatim_begin] = ACTIONS(207), + }, + [12] = { + [sym__inline] = STATE(853), + [sym__element] = STATE(87), + [sym_emphasis] = STATE(176), + [sym_emphasis_begin] = STATE(1013), + [sym_strong] = STATE(176), + [sym_strong_begin] = STATE(97), + [sym__hard_line_break] = STATE(176), + [sym_hard_line_break] = STATE(176), + [sym__smart_punctuation] = STATE(176), + [sym_autolink] = STATE(176), + [sym_highlighted] = STATE(176), + [sym_insert] = STATE(176), + [sym_delete] = STATE(176), + [sym_superscript] = STATE(176), + [sym_subscript] = STATE(176), + [sym_footnote_reference] = STATE(176), + [sym__image] = STATE(176), + [sym_full_reference_image] = STATE(176), + [sym_collapsed_reference_image] = STATE(176), + [sym_inline_image] = STATE(176), + [sym__image_description] = STATE(690), + [sym__link] = STATE(176), + [sym_full_reference_link] = STATE(176), + [sym_collapsed_reference_link] = STATE(176), + [sym_inline_link] = STATE(176), + [sym_link_text] = STATE(691), + [sym__comment_with_spaces] = STATE(176), + [sym_span] = STATE(176), + [sym_raw_inline] = STATE(176), + [sym_math] = STATE(176), + [sym_verbatim] = STATE(176), + [sym__todo_highlights] = STATE(176), + [sym_todo] = STATE(176), + [sym_note] = STATE(176), + [sym__symbol_fallback] = STATE(176), + [aux_sym__text] = STATE(155), + [aux_sym__inline_repeat1] = STATE(87), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(210), + [anon_sym__] = ACTIONS(213), + [anon_sym_LBRACE_STAR] = ACTIONS(216), + [anon_sym_STAR] = ACTIONS(219), + [anon_sym_BSLASH] = ACTIONS(222), + [sym_quotation_marks] = ACTIONS(225), + [sym_ellipsis] = ACTIONS(225), + [sym_em_dash] = ACTIONS(225), + [sym_en_dash] = ACTIONS(228), + [sym_backslash_escape] = ACTIONS(228), + [anon_sym_LT] = ACTIONS(231), + [anon_sym_LBRACE_EQ] = ACTIONS(234), + [anon_sym_LBRACE_PLUS] = ACTIONS(237), + [anon_sym_LBRACE_DASH] = ACTIONS(240), + [sym_symbol] = ACTIONS(225), + [anon_sym_LBRACE_CARET] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(243), + [anon_sym_LBRACE_TILDE] = ACTIONS(246), + [anon_sym_TILDE] = ACTIONS(246), + [anon_sym_LBRACK_CARET] = ACTIONS(249), + [anon_sym_BANG_LBRACK] = ACTIONS(252), + [anon_sym_LBRACK] = ACTIONS(255), + [anon_sym_RBRACK2] = ACTIONS(84), + [anon_sym_LBRACE2] = ACTIONS(228), + [anon_sym_DOLLAR] = ACTIONS(258), + [anon_sym_TODO] = ACTIONS(261), + [anon_sym_WIP] = ACTIONS(261), + [anon_sym_NOTE] = ACTIONS(264), + [anon_sym_INFO] = ACTIONS(264), + [anon_sym_XXX] = ACTIONS(264), + [sym_fixme] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(225), + [sym__whitespace1] = ACTIONS(267), + [sym__newline] = ACTIONS(270), + [aux_sym__text_token1] = ACTIONS(273), + [sym__verbatim_begin] = ACTIONS(276), + }, + [13] = { + [sym__inline] = STATE(892), + [sym__element] = STATE(95), + [sym_emphasis] = STATE(215), + [sym_emphasis_begin] = STATE(1012), + [sym_strong] = STATE(215), + [sym_strong_begin] = STATE(128), + [sym__hard_line_break] = STATE(215), + [sym_hard_line_break] = STATE(215), + [sym__smart_punctuation] = STATE(215), + [sym_autolink] = STATE(215), + [sym_highlighted] = STATE(215), + [sym_insert] = STATE(215), + [sym_delete] = STATE(215), + [sym_superscript] = STATE(215), + [sym_subscript] = STATE(215), + [sym_footnote_reference] = STATE(215), + [sym__image] = STATE(215), + [sym_full_reference_image] = STATE(215), + [sym_collapsed_reference_image] = STATE(215), + [sym_inline_image] = STATE(215), + [sym__image_description] = STATE(696), + [sym__link] = STATE(215), + [sym_full_reference_link] = STATE(215), + [sym_collapsed_reference_link] = STATE(215), + [sym_inline_link] = STATE(215), + [sym_link_text] = STATE(705), + [sym__comment_with_spaces] = STATE(215), + [sym_span] = STATE(215), + [sym_raw_inline] = STATE(215), + [sym_math] = STATE(215), + [sym_verbatim] = STATE(215), + [sym__todo_highlights] = STATE(215), + [sym_todo] = STATE(215), + [sym_note] = STATE(215), + [sym__symbol_fallback] = STATE(215), + [aux_sym__text] = STATE(141), + [aux_sym__inline_repeat1] = STATE(95), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(141), + [anon_sym__] = ACTIONS(144), + [anon_sym_LBRACE_STAR] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(150), + [anon_sym_BSLASH] = ACTIONS(153), + [sym_quotation_marks] = ACTIONS(156), + [sym_ellipsis] = ACTIONS(156), + [sym_em_dash] = ACTIONS(156), + [sym_en_dash] = ACTIONS(159), + [sym_backslash_escape] = ACTIONS(159), + [anon_sym_LT] = ACTIONS(162), + [anon_sym_LBRACE_EQ] = ACTIONS(165), + [anon_sym_LBRACE_PLUS] = ACTIONS(168), + [anon_sym_LBRACE_DASH] = ACTIONS(171), + [sym_symbol] = ACTIONS(156), + [anon_sym_LBRACE_CARET] = ACTIONS(174), + [anon_sym_CARET] = ACTIONS(279), + [anon_sym_CARET_RBRACE] = ACTIONS(84), + [anon_sym_LBRACE_TILDE] = ACTIONS(177), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_LBRACK_CARET] = ACTIONS(180), + [anon_sym_BANG_LBRACK] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(186), + [anon_sym_LBRACE2] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(189), + [anon_sym_TODO] = ACTIONS(192), + [anon_sym_WIP] = ACTIONS(192), + [anon_sym_NOTE] = ACTIONS(195), + [anon_sym_INFO] = ACTIONS(195), + [anon_sym_XXX] = ACTIONS(195), + [sym_fixme] = ACTIONS(156), + [anon_sym_PIPE] = ACTIONS(156), + [sym__whitespace1] = ACTIONS(198), + [sym__newline] = ACTIONS(201), + [aux_sym__text_token1] = ACTIONS(204), + [sym__verbatim_begin] = ACTIONS(207), + }, + [14] = { + [sym__inline] = STATE(891), + [sym__element] = STATE(87), + [sym_emphasis] = STATE(176), + [sym_emphasis_begin] = STATE(1013), + [sym_strong] = STATE(176), + [sym_strong_begin] = STATE(97), + [sym__hard_line_break] = STATE(176), + [sym_hard_line_break] = STATE(176), + [sym__smart_punctuation] = STATE(176), + [sym_autolink] = STATE(176), + [sym_highlighted] = STATE(176), + [sym_insert] = STATE(176), + [sym_delete] = STATE(176), + [sym_superscript] = STATE(176), + [sym_subscript] = STATE(176), + [sym_footnote_reference] = STATE(176), + [sym__image] = STATE(176), + [sym_full_reference_image] = STATE(176), + [sym_collapsed_reference_image] = STATE(176), + [sym_inline_image] = STATE(176), + [sym__image_description] = STATE(690), + [sym__link] = STATE(176), + [sym_full_reference_link] = STATE(176), + [sym_collapsed_reference_link] = STATE(176), + [sym_inline_link] = STATE(176), + [sym_link_text] = STATE(691), + [sym__comment_with_spaces] = STATE(176), + [sym_span] = STATE(176), + [sym_raw_inline] = STATE(176), + [sym_math] = STATE(176), + [sym_verbatim] = STATE(176), + [sym__todo_highlights] = STATE(176), + [sym_todo] = STATE(176), + [sym_note] = STATE(176), + [sym__symbol_fallback] = STATE(176), + [aux_sym__text] = STATE(155), + [aux_sym__inline_repeat1] = STATE(87), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(210), + [anon_sym__] = ACTIONS(213), + [anon_sym_LBRACE_STAR] = ACTIONS(216), + [anon_sym_STAR] = ACTIONS(219), + [anon_sym_BSLASH] = ACTIONS(222), + [sym_quotation_marks] = ACTIONS(225), + [sym_ellipsis] = ACTIONS(225), + [sym_em_dash] = ACTIONS(225), + [sym_en_dash] = ACTIONS(228), + [sym_backslash_escape] = ACTIONS(228), + [anon_sym_LT] = ACTIONS(231), + [anon_sym_LBRACE_EQ] = ACTIONS(234), + [anon_sym_LBRACE_PLUS] = ACTIONS(237), + [anon_sym_LBRACE_DASH] = ACTIONS(240), + [sym_symbol] = ACTIONS(225), + [anon_sym_LBRACE_CARET] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(282), + [anon_sym_CARET_RBRACE] = ACTIONS(84), + [anon_sym_LBRACE_TILDE] = ACTIONS(246), + [anon_sym_TILDE] = ACTIONS(246), + [anon_sym_LBRACK_CARET] = ACTIONS(249), + [anon_sym_BANG_LBRACK] = ACTIONS(252), + [anon_sym_LBRACK] = ACTIONS(255), + [anon_sym_LBRACE2] = ACTIONS(228), + [anon_sym_DOLLAR] = ACTIONS(258), + [anon_sym_TODO] = ACTIONS(261), + [anon_sym_WIP] = ACTIONS(261), + [anon_sym_NOTE] = ACTIONS(264), + [anon_sym_INFO] = ACTIONS(264), + [anon_sym_XXX] = ACTIONS(264), + [sym_fixme] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(225), + [sym__whitespace1] = ACTIONS(267), + [sym__newline] = ACTIONS(270), + [aux_sym__text_token1] = ACTIONS(273), + [sym__verbatim_begin] = ACTIONS(276), + }, + [15] = { + [sym__inline] = STATE(953), + [sym__element] = STATE(95), + [sym_emphasis] = STATE(215), + [sym_emphasis_begin] = STATE(1012), + [sym_strong] = STATE(215), + [sym_strong_begin] = STATE(128), + [sym__hard_line_break] = STATE(215), + [sym_hard_line_break] = STATE(215), + [sym__smart_punctuation] = STATE(215), + [sym_autolink] = STATE(215), + [sym_highlighted] = STATE(215), + [sym_insert] = STATE(215), + [sym_delete] = STATE(215), + [sym_superscript] = STATE(215), + [sym_subscript] = STATE(215), + [sym_footnote_reference] = STATE(215), + [sym__image] = STATE(215), + [sym_full_reference_image] = STATE(215), + [sym_collapsed_reference_image] = STATE(215), + [sym_inline_image] = STATE(215), + [sym__image_description] = STATE(696), + [sym__link] = STATE(215), + [sym_full_reference_link] = STATE(215), + [sym_collapsed_reference_link] = STATE(215), + [sym_inline_link] = STATE(215), + [sym_link_text] = STATE(705), + [sym__comment_with_spaces] = STATE(215), + [sym_span] = STATE(215), + [sym_raw_inline] = STATE(215), + [sym_math] = STATE(215), + [sym_verbatim] = STATE(215), + [sym__todo_highlights] = STATE(215), + [sym_todo] = STATE(215), + [sym_note] = STATE(215), + [sym__symbol_fallback] = STATE(215), + [aux_sym__text] = STATE(141), + [aux_sym__inline_repeat1] = STATE(95), + [ts_builtin_sym_end] = ACTIONS(84), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(141), + [anon_sym__] = ACTIONS(144), + [anon_sym_LBRACE_STAR] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(150), + [anon_sym_BSLASH] = ACTIONS(153), + [sym_quotation_marks] = ACTIONS(156), + [sym_ellipsis] = ACTIONS(156), + [sym_em_dash] = ACTIONS(156), + [sym_en_dash] = ACTIONS(159), + [sym_backslash_escape] = ACTIONS(159), + [anon_sym_LT] = ACTIONS(162), + [anon_sym_LBRACE_EQ] = ACTIONS(165), + [anon_sym_LBRACE_PLUS] = ACTIONS(168), + [anon_sym_LBRACE_DASH] = ACTIONS(171), + [sym_symbol] = ACTIONS(156), + [anon_sym_LBRACE_CARET] = ACTIONS(174), + [anon_sym_CARET] = ACTIONS(174), + [anon_sym_LBRACE_TILDE] = ACTIONS(177), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_LBRACK_CARET] = ACTIONS(180), + [anon_sym_BANG_LBRACK] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(186), + [anon_sym_LBRACE2] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(189), + [anon_sym_TODO] = ACTIONS(192), + [anon_sym_WIP] = ACTIONS(192), + [anon_sym_NOTE] = ACTIONS(195), + [anon_sym_INFO] = ACTIONS(195), + [anon_sym_XXX] = ACTIONS(195), + [sym_fixme] = ACTIONS(156), + [anon_sym_PIPE] = ACTIONS(156), + [sym__whitespace1] = ACTIONS(198), + [sym__newline] = ACTIONS(201), + [aux_sym__text_token1] = ACTIONS(204), + [sym__verbatim_begin] = ACTIONS(207), + }, + [16] = { + [sym__inline] = STATE(949), + [sym__element] = STATE(87), + [sym_emphasis] = STATE(176), + [sym_emphasis_begin] = STATE(1013), + [sym_strong] = STATE(176), + [sym_strong_begin] = STATE(97), + [sym__hard_line_break] = STATE(176), + [sym_hard_line_break] = STATE(176), + [sym__smart_punctuation] = STATE(176), + [sym_autolink] = STATE(176), + [sym_highlighted] = STATE(176), + [sym_insert] = STATE(176), + [sym_delete] = STATE(176), + [sym_superscript] = STATE(176), + [sym_subscript] = STATE(176), + [sym_footnote_reference] = STATE(176), + [sym__image] = STATE(176), + [sym_full_reference_image] = STATE(176), + [sym_collapsed_reference_image] = STATE(176), + [sym_inline_image] = STATE(176), + [sym__image_description] = STATE(690), + [sym__link] = STATE(176), + [sym_full_reference_link] = STATE(176), + [sym_collapsed_reference_link] = STATE(176), + [sym_inline_link] = STATE(176), + [sym_link_text] = STATE(691), + [sym__comment_with_spaces] = STATE(176), + [sym_span] = STATE(176), + [sym_raw_inline] = STATE(176), + [sym_math] = STATE(176), + [sym_verbatim] = STATE(176), + [sym__todo_highlights] = STATE(176), + [sym_todo] = STATE(176), + [sym_note] = STATE(176), + [sym__symbol_fallback] = STATE(176), + [aux_sym__text] = STATE(155), + [aux_sym__inline_repeat1] = STATE(87), + [ts_builtin_sym_end] = ACTIONS(84), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(210), + [anon_sym__] = ACTIONS(213), + [anon_sym_LBRACE_STAR] = ACTIONS(216), + [anon_sym_STAR] = ACTIONS(219), + [anon_sym_BSLASH] = ACTIONS(222), + [sym_quotation_marks] = ACTIONS(225), + [sym_ellipsis] = ACTIONS(225), + [sym_em_dash] = ACTIONS(225), + [sym_en_dash] = ACTIONS(228), + [sym_backslash_escape] = ACTIONS(228), + [anon_sym_LT] = ACTIONS(231), + [anon_sym_LBRACE_EQ] = ACTIONS(234), + [anon_sym_LBRACE_PLUS] = ACTIONS(237), + [anon_sym_LBRACE_DASH] = ACTIONS(240), + [sym_symbol] = ACTIONS(225), + [anon_sym_LBRACE_CARET] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(243), + [anon_sym_LBRACE_TILDE] = ACTIONS(246), + [anon_sym_TILDE] = ACTIONS(246), + [anon_sym_LBRACK_CARET] = ACTIONS(249), + [anon_sym_BANG_LBRACK] = ACTIONS(252), + [anon_sym_LBRACK] = ACTIONS(255), + [anon_sym_LBRACE2] = ACTIONS(228), + [anon_sym_DOLLAR] = ACTIONS(258), + [anon_sym_TODO] = ACTIONS(261), + [anon_sym_WIP] = ACTIONS(261), + [anon_sym_NOTE] = ACTIONS(264), + [anon_sym_INFO] = ACTIONS(264), + [anon_sym_XXX] = ACTIONS(264), + [sym_fixme] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(225), + [sym__whitespace1] = ACTIONS(267), + [sym__newline] = ACTIONS(270), + [aux_sym__text_token1] = ACTIONS(273), + [sym__verbatim_begin] = ACTIONS(276), + }, + [17] = { + [sym__inline] = STATE(944), + [sym__element] = STATE(83), + [sym_emphasis] = STATE(211), + [sym_emphasis_begin] = STATE(1014), + [sym_strong] = STATE(211), + [sym_strong_begin] = STATE(121), + [sym__hard_line_break] = STATE(211), + [sym_hard_line_break] = STATE(211), + [sym__smart_punctuation] = STATE(211), + [sym_autolink] = STATE(211), + [sym_highlighted] = STATE(211), + [sym_insert] = STATE(211), + [sym_delete] = STATE(211), + [sym_superscript] = STATE(211), + [sym_subscript] = STATE(211), + [sym_footnote_reference] = STATE(211), + [sym__image] = STATE(211), + [sym_full_reference_image] = STATE(211), + [sym_collapsed_reference_image] = STATE(211), + [sym_inline_image] = STATE(211), + [sym__image_description] = STATE(693), + [sym__link] = STATE(211), + [sym_full_reference_link] = STATE(211), + [sym_collapsed_reference_link] = STATE(211), + [sym_inline_link] = STATE(211), + [sym_link_text] = STATE(694), + [sym__comment_with_spaces] = STATE(211), + [sym_span] = STATE(211), + [sym_raw_inline] = STATE(211), + [sym_math] = STATE(211), + [sym_verbatim] = STATE(211), + [sym__todo_highlights] = STATE(211), + [sym_todo] = STATE(211), + [sym_note] = STATE(211), + [sym__symbol_fallback] = STATE(211), + [aux_sym__text] = STATE(137), + [aux_sym__inline_repeat1] = STATE(83), + [ts_builtin_sym_end] = ACTIONS(84), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(285), + [anon_sym__] = ACTIONS(288), + [anon_sym_LBRACE_STAR] = ACTIONS(291), + [anon_sym_STAR] = ACTIONS(294), + [anon_sym_BSLASH] = ACTIONS(297), + [sym_quotation_marks] = ACTIONS(300), + [sym_ellipsis] = ACTIONS(300), + [sym_em_dash] = ACTIONS(300), + [sym_en_dash] = ACTIONS(303), + [sym_backslash_escape] = ACTIONS(303), + [anon_sym_LT] = ACTIONS(306), + [anon_sym_LBRACE_EQ] = ACTIONS(309), + [anon_sym_LBRACE_PLUS] = ACTIONS(312), + [anon_sym_LBRACE_DASH] = ACTIONS(315), + [sym_symbol] = ACTIONS(300), + [anon_sym_LBRACE_CARET] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_LBRACE_TILDE] = ACTIONS(321), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_LBRACK_CARET] = ACTIONS(324), + [anon_sym_BANG_LBRACK] = ACTIONS(327), + [anon_sym_LBRACK] = ACTIONS(330), + [anon_sym_LBRACE2] = ACTIONS(303), + [anon_sym_DOLLAR] = ACTIONS(333), + [anon_sym_TODO] = ACTIONS(336), + [anon_sym_WIP] = ACTIONS(336), + [anon_sym_NOTE] = ACTIONS(339), + [anon_sym_INFO] = ACTIONS(339), + [anon_sym_XXX] = ACTIONS(339), + [sym_fixme] = ACTIONS(300), + [anon_sym_PIPE] = ACTIONS(300), + [sym__whitespace1] = ACTIONS(342), + [sym__newline] = ACTIONS(345), + [aux_sym__text_token1] = ACTIONS(348), + [sym__verbatim_begin] = ACTIONS(351), + }, + [18] = { + [sym__inline] = STATE(788), + [sym__element] = STATE(79), + [sym_emphasis] = STATE(172), + [sym_emphasis_begin] = STATE(1015), + [sym_strong] = STATE(172), + [sym_strong_begin] = STATE(125), + [sym__hard_line_break] = STATE(172), + [sym_hard_line_break] = STATE(172), + [sym__smart_punctuation] = STATE(172), + [sym_autolink] = STATE(172), + [sym_highlighted] = STATE(172), + [sym_insert] = STATE(172), + [sym_delete] = STATE(172), + [sym_superscript] = STATE(172), + [sym_subscript] = STATE(172), + [sym_footnote_reference] = STATE(172), + [sym__image] = STATE(172), + [sym_full_reference_image] = STATE(172), + [sym_collapsed_reference_image] = STATE(172), + [sym_inline_image] = STATE(172), + [sym__image_description] = STATE(711), + [sym__link] = STATE(172), + [sym_full_reference_link] = STATE(172), + [sym_collapsed_reference_link] = STATE(172), + [sym_inline_link] = STATE(172), + [sym_link_text] = STATE(712), + [sym__comment_with_spaces] = STATE(172), + [sym_span] = STATE(172), + [sym_raw_inline] = STATE(172), + [sym_math] = STATE(172), + [sym_verbatim] = STATE(172), + [sym__todo_highlights] = STATE(172), + [sym_todo] = STATE(172), + [sym_note] = STATE(172), + [sym__symbol_fallback] = STATE(172), + [aux_sym__text] = STATE(170), + [aux_sym__inline_repeat1] = STATE(79), + [ts_builtin_sym_end] = ACTIONS(84), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(354), + [anon_sym__] = ACTIONS(357), + [anon_sym_LBRACE_STAR] = ACTIONS(360), + [anon_sym_STAR] = ACTIONS(363), + [anon_sym_BSLASH] = ACTIONS(366), + [sym_quotation_marks] = ACTIONS(369), + [sym_ellipsis] = ACTIONS(369), + [sym_em_dash] = ACTIONS(369), + [sym_en_dash] = ACTIONS(372), + [sym_backslash_escape] = ACTIONS(372), + [anon_sym_LT] = ACTIONS(375), + [anon_sym_LBRACE_EQ] = ACTIONS(378), + [anon_sym_LBRACE_PLUS] = ACTIONS(381), + [anon_sym_LBRACE_DASH] = ACTIONS(384), + [sym_symbol] = ACTIONS(369), + [anon_sym_LBRACE_CARET] = ACTIONS(387), + [anon_sym_CARET] = ACTIONS(387), + [anon_sym_LBRACE_TILDE] = ACTIONS(390), + [anon_sym_TILDE] = ACTIONS(390), + [anon_sym_LBRACK_CARET] = ACTIONS(393), + [anon_sym_BANG_LBRACK] = ACTIONS(396), + [anon_sym_LBRACK] = ACTIONS(399), + [anon_sym_LBRACE2] = ACTIONS(372), + [anon_sym_DOLLAR] = ACTIONS(402), + [anon_sym_TODO] = ACTIONS(405), + [anon_sym_WIP] = ACTIONS(405), + [anon_sym_NOTE] = ACTIONS(408), + [anon_sym_INFO] = ACTIONS(408), + [anon_sym_XXX] = ACTIONS(408), + [sym_fixme] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(369), + [sym__whitespace1] = ACTIONS(411), + [sym__newline] = ACTIONS(414), + [aux_sym__text_token1] = ACTIONS(417), + [sym__verbatim_begin] = ACTIONS(420), + }, + [19] = { + [sym__inline] = STATE(763), + [sym__element] = STATE(117), + [sym_emphasis] = STATE(182), + [sym_emphasis_begin] = STATE(1016), + [sym_strong] = STATE(182), + [sym_strong_begin] = STATE(122), + [sym__hard_line_break] = STATE(182), [sym_hard_line_break] = STATE(182), [sym__smart_punctuation] = STATE(182), [sym_autolink] = STATE(182), @@ -7805,12 +9821,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_full_reference_image] = STATE(182), [sym_collapsed_reference_image] = STATE(182), [sym_inline_image] = STATE(182), - [sym__image_description] = STATE(610), + [sym__image_description] = STATE(692), [sym__link] = STATE(182), [sym_full_reference_link] = STATE(182), [sym_collapsed_reference_link] = STATE(182), [sym_inline_link] = STATE(182), - [sym_link_text] = STATE(608), + [sym_link_text] = STATE(689), [sym__comment_with_spaces] = STATE(182), [sym_span] = STATE(182), [sym_raw_inline] = STATE(182), @@ -7820,54 +9836,281 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(182), [sym_note] = STATE(182), [sym__symbol_fallback] = STATE(182), - [aux_sym__text] = STATE(144), - [aux_sym__inline_repeat1] = STATE(97), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_] = ACTIONS(49), - [anon_sym__] = ACTIONS(52), - [anon_sym_LBRACE_STAR] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(58), - [anon_sym_BSLASH] = ACTIONS(61), - [sym_quotation_marks] = ACTIONS(52), - [sym_ellipsis] = ACTIONS(52), - [sym_em_dash] = ACTIONS(52), - [sym_en_dash] = ACTIONS(64), - [sym_backslash_escape] = ACTIONS(64), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_LBRACE_EQ] = ACTIONS(70), - [anon_sym_LBRACE_PLUS] = ACTIONS(73), - [anon_sym_LBRACE_DASH] = ACTIONS(76), - [anon_sym_DASH_RBRACE] = ACTIONS(79), - [sym_symbol] = ACTIONS(52), - [anon_sym_LBRACE_CARET] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(81), - [anon_sym_LBRACE_TILDE] = ACTIONS(84), - [anon_sym_TILDE] = ACTIONS(84), - [anon_sym_LBRACK_CARET] = ACTIONS(87), - [anon_sym_RBRACK] = ACTIONS(90), - [anon_sym_BANG_LBRACK] = ACTIONS(92), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LBRACE2] = ACTIONS(64), - [anon_sym_DOLLAR] = ACTIONS(98), - [anon_sym_TODO] = ACTIONS(101), - [anon_sym_WIP] = ACTIONS(101), - [anon_sym_NOTE] = ACTIONS(104), - [anon_sym_INFO] = ACTIONS(104), - [anon_sym_XXX] = ACTIONS(104), - [sym_fixme] = ACTIONS(52), - [anon_sym_PIPE] = ACTIONS(52), - [sym__whitespace1] = ACTIONS(107), - [sym__newline] = ACTIONS(110), - [aux_sym__text_token1] = ACTIONS(113), - [sym__verbatim_begin] = ACTIONS(116), + [aux_sym__text] = STATE(153), + [aux_sym__inline_repeat1] = STATE(117), + [ts_builtin_sym_end] = ACTIONS(84), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(423), + [anon_sym__] = ACTIONS(426), + [anon_sym_LBRACE_STAR] = ACTIONS(429), + [anon_sym_STAR] = ACTIONS(432), + [anon_sym_BSLASH] = ACTIONS(435), + [sym_quotation_marks] = ACTIONS(438), + [sym_ellipsis] = ACTIONS(438), + [sym_em_dash] = ACTIONS(438), + [sym_en_dash] = ACTIONS(441), + [sym_backslash_escape] = ACTIONS(441), + [anon_sym_LT] = ACTIONS(444), + [anon_sym_LBRACE_EQ] = ACTIONS(447), + [anon_sym_LBRACE_PLUS] = ACTIONS(450), + [anon_sym_LBRACE_DASH] = ACTIONS(453), + [sym_symbol] = ACTIONS(438), + [anon_sym_LBRACE_CARET] = ACTIONS(456), + [anon_sym_CARET] = ACTIONS(456), + [anon_sym_LBRACE_TILDE] = ACTIONS(459), + [anon_sym_TILDE] = ACTIONS(459), + [anon_sym_LBRACK_CARET] = ACTIONS(462), + [anon_sym_BANG_LBRACK] = ACTIONS(465), + [anon_sym_LBRACK] = ACTIONS(468), + [anon_sym_LBRACE2] = ACTIONS(441), + [anon_sym_DOLLAR] = ACTIONS(471), + [anon_sym_TODO] = ACTIONS(474), + [anon_sym_WIP] = ACTIONS(474), + [anon_sym_NOTE] = ACTIONS(477), + [anon_sym_INFO] = ACTIONS(477), + [anon_sym_XXX] = ACTIONS(477), + [sym_fixme] = ACTIONS(438), + [anon_sym_PIPE] = ACTIONS(438), + [sym__whitespace1] = ACTIONS(480), + [sym__newline] = ACTIONS(483), + [aux_sym__text_token1] = ACTIONS(486), + [sym__verbatim_begin] = ACTIONS(489), }, - [3] = { - [sym__inline] = STATE(722), - [sym__element] = STATE(97), + [20] = { + [sym__inline] = STATE(821), + [sym__element] = STATE(83), + [sym_emphasis] = STATE(211), + [sym_emphasis_begin] = STATE(1014), + [sym_strong] = STATE(211), + [sym_strong_begin] = STATE(121), + [sym__hard_line_break] = STATE(211), + [sym_hard_line_break] = STATE(211), + [sym__smart_punctuation] = STATE(211), + [sym_autolink] = STATE(211), + [sym_highlighted] = STATE(211), + [sym_insert] = STATE(211), + [sym_delete] = STATE(211), + [sym_superscript] = STATE(211), + [sym_subscript] = STATE(211), + [sym_footnote_reference] = STATE(211), + [sym__image] = STATE(211), + [sym_full_reference_image] = STATE(211), + [sym_collapsed_reference_image] = STATE(211), + [sym_inline_image] = STATE(211), + [sym__image_description] = STATE(693), + [sym__link] = STATE(211), + [sym_full_reference_link] = STATE(211), + [sym_collapsed_reference_link] = STATE(211), + [sym_inline_link] = STATE(211), + [sym_link_text] = STATE(694), + [sym__comment_with_spaces] = STATE(211), + [sym_span] = STATE(211), + [sym_raw_inline] = STATE(211), + [sym_math] = STATE(211), + [sym_verbatim] = STATE(211), + [sym__todo_highlights] = STATE(211), + [sym_todo] = STATE(211), + [sym_note] = STATE(211), + [sym__symbol_fallback] = STATE(211), + [aux_sym__text] = STATE(137), + [aux_sym__inline_repeat1] = STATE(83), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(285), + [anon_sym__] = ACTIONS(288), + [anon_sym_LBRACE_STAR] = ACTIONS(291), + [anon_sym_STAR] = ACTIONS(294), + [anon_sym_BSLASH] = ACTIONS(297), + [sym_quotation_marks] = ACTIONS(300), + [sym_ellipsis] = ACTIONS(300), + [sym_em_dash] = ACTIONS(300), + [sym_en_dash] = ACTIONS(303), + [sym_backslash_escape] = ACTIONS(303), + [anon_sym_LT] = ACTIONS(306), + [anon_sym_LBRACE_EQ] = ACTIONS(309), + [anon_sym_LBRACE_PLUS] = ACTIONS(312), + [anon_sym_LBRACE_DASH] = ACTIONS(315), + [sym_symbol] = ACTIONS(300), + [anon_sym_LBRACE_CARET] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(492), + [anon_sym_CARET_RBRACE] = ACTIONS(84), + [anon_sym_LBRACE_TILDE] = ACTIONS(321), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_LBRACK_CARET] = ACTIONS(324), + [anon_sym_BANG_LBRACK] = ACTIONS(327), + [anon_sym_LBRACK] = ACTIONS(330), + [anon_sym_LBRACE2] = ACTIONS(303), + [anon_sym_DOLLAR] = ACTIONS(333), + [anon_sym_TODO] = ACTIONS(336), + [anon_sym_WIP] = ACTIONS(336), + [anon_sym_NOTE] = ACTIONS(339), + [anon_sym_INFO] = ACTIONS(339), + [anon_sym_XXX] = ACTIONS(339), + [sym_fixme] = ACTIONS(300), + [anon_sym_PIPE] = ACTIONS(300), + [sym__whitespace1] = ACTIONS(342), + [sym__newline] = ACTIONS(345), + [aux_sym__text_token1] = ACTIONS(348), + [sym__verbatim_begin] = ACTIONS(351), + }, + [21] = { + [sym__inline] = STATE(1011), + [sym__element] = STATE(118), + [sym_emphasis] = STATE(204), + [sym_emphasis_begin] = STATE(1017), + [sym_strong] = STATE(204), + [sym_strong_begin] = STATE(114), + [sym__hard_line_break] = STATE(204), + [sym_hard_line_break] = STATE(204), + [sym__smart_punctuation] = STATE(204), + [sym_autolink] = STATE(204), + [sym_highlighted] = STATE(204), + [sym_insert] = STATE(204), + [sym_delete] = STATE(204), + [sym_superscript] = STATE(204), + [sym_subscript] = STATE(204), + [sym_footnote_reference] = STATE(204), + [sym__image] = STATE(204), + [sym_full_reference_image] = STATE(204), + [sym_collapsed_reference_image] = STATE(204), + [sym_inline_image] = STATE(204), + [sym__image_description] = STATE(714), + [sym__link] = STATE(204), + [sym_full_reference_link] = STATE(204), + [sym_collapsed_reference_link] = STATE(204), + [sym_inline_link] = STATE(204), + [sym_link_text] = STATE(715), + [sym__comment_with_spaces] = STATE(204), + [sym_span] = STATE(204), + [sym_raw_inline] = STATE(204), + [sym_math] = STATE(204), + [sym_verbatim] = STATE(204), + [sym__todo_highlights] = STATE(204), + [sym_todo] = STATE(204), + [sym_note] = STATE(204), + [sym__symbol_fallback] = STATE(204), + [aux_sym__text] = STATE(149), + [aux_sym__inline_repeat1] = STATE(118), + [ts_builtin_sym_end] = ACTIONS(84), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(51), + [anon_sym__] = ACTIONS(54), + [anon_sym_LBRACE_STAR] = ACTIONS(57), + [anon_sym_STAR] = ACTIONS(60), + [anon_sym_BSLASH] = ACTIONS(63), + [sym_quotation_marks] = ACTIONS(66), + [sym_ellipsis] = ACTIONS(66), + [sym_em_dash] = ACTIONS(66), + [sym_en_dash] = ACTIONS(69), + [sym_backslash_escape] = ACTIONS(69), + [anon_sym_LT] = ACTIONS(72), + [anon_sym_LBRACE_EQ] = ACTIONS(75), + [anon_sym_LBRACE_PLUS] = ACTIONS(78), + [anon_sym_LBRACE_DASH] = ACTIONS(81), + [sym_symbol] = ACTIONS(66), + [anon_sym_LBRACE_CARET] = ACTIONS(86), + [anon_sym_CARET] = ACTIONS(86), + [anon_sym_LBRACE_TILDE] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(89), + [anon_sym_LBRACK_CARET] = ACTIONS(92), + [anon_sym_BANG_LBRACK] = ACTIONS(97), + [anon_sym_LBRACK] = ACTIONS(100), + [anon_sym_LBRACE2] = ACTIONS(69), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_TODO] = ACTIONS(106), + [anon_sym_WIP] = ACTIONS(106), + [anon_sym_NOTE] = ACTIONS(109), + [anon_sym_INFO] = ACTIONS(109), + [anon_sym_XXX] = ACTIONS(109), + [sym_fixme] = ACTIONS(66), + [anon_sym_PIPE] = ACTIONS(66), + [sym__whitespace1] = ACTIONS(112), + [sym__newline] = ACTIONS(115), + [aux_sym__text_token1] = ACTIONS(118), + [sym__verbatim_begin] = ACTIONS(121), + }, + [22] = { + [sym__inline] = STATE(776), + [sym__element] = STATE(79), + [sym_emphasis] = STATE(172), + [sym_emphasis_begin] = STATE(1015), + [sym_strong] = STATE(172), + [sym_strong_begin] = STATE(125), + [sym__hard_line_break] = STATE(172), + [sym_hard_line_break] = STATE(172), + [sym__smart_punctuation] = STATE(172), + [sym_autolink] = STATE(172), + [sym_highlighted] = STATE(172), + [sym_insert] = STATE(172), + [sym_delete] = STATE(172), + [sym_superscript] = STATE(172), + [sym_subscript] = STATE(172), + [sym_footnote_reference] = STATE(172), + [sym__image] = STATE(172), + [sym_full_reference_image] = STATE(172), + [sym_collapsed_reference_image] = STATE(172), + [sym_inline_image] = STATE(172), + [sym__image_description] = STATE(711), + [sym__link] = STATE(172), + [sym_full_reference_link] = STATE(172), + [sym_collapsed_reference_link] = STATE(172), + [sym_inline_link] = STATE(172), + [sym_link_text] = STATE(712), + [sym__comment_with_spaces] = STATE(172), + [sym_span] = STATE(172), + [sym_raw_inline] = STATE(172), + [sym_math] = STATE(172), + [sym_verbatim] = STATE(172), + [sym__todo_highlights] = STATE(172), + [sym_todo] = STATE(172), + [sym_note] = STATE(172), + [sym__symbol_fallback] = STATE(172), + [aux_sym__text] = STATE(170), + [aux_sym__inline_repeat1] = STATE(79), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(354), + [anon_sym__] = ACTIONS(357), + [anon_sym_LBRACE_STAR] = ACTIONS(360), + [anon_sym_STAR] = ACTIONS(363), + [anon_sym_BSLASH] = ACTIONS(366), + [sym_quotation_marks] = ACTIONS(369), + [sym_ellipsis] = ACTIONS(369), + [sym_em_dash] = ACTIONS(369), + [sym_en_dash] = ACTIONS(372), + [sym_backslash_escape] = ACTIONS(372), + [anon_sym_LT] = ACTIONS(375), + [anon_sym_LBRACE_EQ] = ACTIONS(378), + [anon_sym_LBRACE_PLUS] = ACTIONS(381), + [anon_sym_LBRACE_DASH] = ACTIONS(384), + [sym_symbol] = ACTIONS(369), + [anon_sym_LBRACE_CARET] = ACTIONS(387), + [anon_sym_CARET] = ACTIONS(495), + [anon_sym_CARET_RBRACE] = ACTIONS(84), + [anon_sym_LBRACE_TILDE] = ACTIONS(390), + [anon_sym_TILDE] = ACTIONS(390), + [anon_sym_LBRACK_CARET] = ACTIONS(393), + [anon_sym_BANG_LBRACK] = ACTIONS(396), + [anon_sym_LBRACK] = ACTIONS(399), + [anon_sym_LBRACE2] = ACTIONS(372), + [anon_sym_DOLLAR] = ACTIONS(402), + [anon_sym_TODO] = ACTIONS(405), + [anon_sym_WIP] = ACTIONS(405), + [anon_sym_NOTE] = ACTIONS(408), + [anon_sym_INFO] = ACTIONS(408), + [anon_sym_XXX] = ACTIONS(408), + [sym_fixme] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(369), + [sym__whitespace1] = ACTIONS(411), + [sym__newline] = ACTIONS(414), + [aux_sym__text_token1] = ACTIONS(417), + [sym__verbatim_begin] = ACTIONS(420), + }, + [23] = { + [sym__inline] = STATE(771), + [sym__element] = STATE(117), [sym_emphasis] = STATE(182), - [sym_emphasis_begin] = STATE(898), + [sym_emphasis_begin] = STATE(1016), [sym_strong] = STATE(182), - [sym_strong_begin] = STATE(104), + [sym_strong_begin] = STATE(122), [sym__hard_line_break] = STATE(182), [sym_hard_line_break] = STATE(182), [sym__smart_punctuation] = STATE(182), @@ -7882,12 +10125,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_full_reference_image] = STATE(182), [sym_collapsed_reference_image] = STATE(182), [sym_inline_image] = STATE(182), - [sym__image_description] = STATE(610), + [sym__image_description] = STATE(692), [sym__link] = STATE(182), [sym_full_reference_link] = STATE(182), [sym_collapsed_reference_link] = STATE(182), [sym_inline_link] = STATE(182), - [sym_link_text] = STATE(608), + [sym_link_text] = STATE(689), [sym__comment_with_spaces] = STATE(182), [sym_span] = STATE(182), [sym_raw_inline] = STATE(182), @@ -7897,54 +10140,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(182), [sym_note] = STATE(182), [sym__symbol_fallback] = STATE(182), - [aux_sym__text] = STATE(144), - [aux_sym__inline_repeat1] = STATE(97), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_] = ACTIONS(49), - [anon_sym__] = ACTIONS(52), - [anon_sym_LBRACE_STAR] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(119), - [aux_sym_strong_end_token1] = ACTIONS(79), - [anon_sym_BSLASH] = ACTIONS(61), - [sym_quotation_marks] = ACTIONS(52), - [sym_ellipsis] = ACTIONS(52), - [sym_em_dash] = ACTIONS(52), - [sym_en_dash] = ACTIONS(64), - [sym_backslash_escape] = ACTIONS(64), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_LBRACE_EQ] = ACTIONS(70), - [anon_sym_LBRACE_PLUS] = ACTIONS(73), - [anon_sym_LBRACE_DASH] = ACTIONS(76), - [sym_symbol] = ACTIONS(52), - [anon_sym_LBRACE_CARET] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(81), - [anon_sym_LBRACE_TILDE] = ACTIONS(84), - [anon_sym_TILDE] = ACTIONS(84), - [anon_sym_LBRACK_CARET] = ACTIONS(87), - [anon_sym_RBRACK] = ACTIONS(90), - [anon_sym_BANG_LBRACK] = ACTIONS(92), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LBRACE2] = ACTIONS(64), - [anon_sym_DOLLAR] = ACTIONS(98), - [anon_sym_TODO] = ACTIONS(101), - [anon_sym_WIP] = ACTIONS(101), - [anon_sym_NOTE] = ACTIONS(104), - [anon_sym_INFO] = ACTIONS(104), - [anon_sym_XXX] = ACTIONS(104), - [sym_fixme] = ACTIONS(52), - [anon_sym_PIPE] = ACTIONS(52), - [sym__whitespace1] = ACTIONS(122), - [sym__newline] = ACTIONS(110), - [aux_sym__text_token1] = ACTIONS(113), - [sym__verbatim_begin] = ACTIONS(116), + [aux_sym__text] = STATE(153), + [aux_sym__inline_repeat1] = STATE(117), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(423), + [anon_sym__] = ACTIONS(426), + [anon_sym_LBRACE_STAR] = ACTIONS(429), + [anon_sym_STAR] = ACTIONS(432), + [anon_sym_BSLASH] = ACTIONS(435), + [sym_quotation_marks] = ACTIONS(438), + [sym_ellipsis] = ACTIONS(438), + [sym_em_dash] = ACTIONS(438), + [sym_en_dash] = ACTIONS(441), + [sym_backslash_escape] = ACTIONS(441), + [anon_sym_LT] = ACTIONS(444), + [anon_sym_LBRACE_EQ] = ACTIONS(447), + [anon_sym_LBRACE_PLUS] = ACTIONS(450), + [anon_sym_LBRACE_DASH] = ACTIONS(453), + [sym_symbol] = ACTIONS(438), + [anon_sym_LBRACE_CARET] = ACTIONS(456), + [anon_sym_CARET] = ACTIONS(498), + [anon_sym_CARET_RBRACE] = ACTIONS(84), + [anon_sym_LBRACE_TILDE] = ACTIONS(459), + [anon_sym_TILDE] = ACTIONS(459), + [anon_sym_LBRACK_CARET] = ACTIONS(462), + [anon_sym_BANG_LBRACK] = ACTIONS(465), + [anon_sym_LBRACK] = ACTIONS(468), + [anon_sym_LBRACE2] = ACTIONS(441), + [anon_sym_DOLLAR] = ACTIONS(471), + [anon_sym_TODO] = ACTIONS(474), + [anon_sym_WIP] = ACTIONS(474), + [anon_sym_NOTE] = ACTIONS(477), + [anon_sym_INFO] = ACTIONS(477), + [anon_sym_XXX] = ACTIONS(477), + [sym_fixme] = ACTIONS(438), + [anon_sym_PIPE] = ACTIONS(438), + [sym__whitespace1] = ACTIONS(480), + [sym__newline] = ACTIONS(483), + [aux_sym__text_token1] = ACTIONS(486), + [sym__verbatim_begin] = ACTIONS(489), }, - [4] = { - [sym__inline] = STATE(722), - [sym__element] = STATE(97), + [24] = { + [sym__inline] = STATE(923), + [sym__element] = STATE(118), + [sym_emphasis] = STATE(204), + [sym_emphasis_begin] = STATE(1017), + [sym_strong] = STATE(204), + [sym_strong_begin] = STATE(114), + [sym__hard_line_break] = STATE(204), + [sym_hard_line_break] = STATE(204), + [sym__smart_punctuation] = STATE(204), + [sym_autolink] = STATE(204), + [sym_highlighted] = STATE(204), + [sym_insert] = STATE(204), + [sym_delete] = STATE(204), + [sym_superscript] = STATE(204), + [sym_subscript] = STATE(204), + [sym_footnote_reference] = STATE(204), + [sym__image] = STATE(204), + [sym_full_reference_image] = STATE(204), + [sym_collapsed_reference_image] = STATE(204), + [sym_inline_image] = STATE(204), + [sym__image_description] = STATE(714), + [sym__link] = STATE(204), + [sym_full_reference_link] = STATE(204), + [sym_collapsed_reference_link] = STATE(204), + [sym_inline_link] = STATE(204), + [sym_link_text] = STATE(715), + [sym__comment_with_spaces] = STATE(204), + [sym_span] = STATE(204), + [sym_raw_inline] = STATE(204), + [sym_math] = STATE(204), + [sym_verbatim] = STATE(204), + [sym__todo_highlights] = STATE(204), + [sym_todo] = STATE(204), + [sym_note] = STATE(204), + [sym__symbol_fallback] = STATE(204), + [aux_sym__text] = STATE(149), + [aux_sym__inline_repeat1] = STATE(118), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(51), + [anon_sym__] = ACTIONS(54), + [anon_sym_LBRACE_STAR] = ACTIONS(57), + [anon_sym_STAR] = ACTIONS(60), + [anon_sym_BSLASH] = ACTIONS(63), + [sym_quotation_marks] = ACTIONS(66), + [sym_ellipsis] = ACTIONS(66), + [sym_em_dash] = ACTIONS(66), + [sym_en_dash] = ACTIONS(69), + [sym_backslash_escape] = ACTIONS(69), + [anon_sym_LT] = ACTIONS(72), + [anon_sym_LBRACE_EQ] = ACTIONS(75), + [anon_sym_LBRACE_PLUS] = ACTIONS(78), + [anon_sym_PLUS_RBRACE] = ACTIONS(84), + [anon_sym_LBRACE_DASH] = ACTIONS(81), + [sym_symbol] = ACTIONS(66), + [anon_sym_LBRACE_CARET] = ACTIONS(86), + [anon_sym_CARET] = ACTIONS(86), + [anon_sym_LBRACE_TILDE] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(89), + [anon_sym_LBRACK_CARET] = ACTIONS(92), + [anon_sym_BANG_LBRACK] = ACTIONS(97), + [anon_sym_LBRACK] = ACTIONS(100), + [anon_sym_LBRACE2] = ACTIONS(69), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_TODO] = ACTIONS(106), + [anon_sym_WIP] = ACTIONS(106), + [anon_sym_NOTE] = ACTIONS(109), + [anon_sym_INFO] = ACTIONS(109), + [anon_sym_XXX] = ACTIONS(109), + [sym_fixme] = ACTIONS(66), + [anon_sym_PIPE] = ACTIONS(66), + [sym__whitespace1] = ACTIONS(112), + [sym__newline] = ACTIONS(115), + [aux_sym__text_token1] = ACTIONS(118), + [sym__verbatim_begin] = ACTIONS(121), + }, + [25] = { + [sym__inline] = STATE(794), + [sym__element] = STATE(117), [sym_emphasis] = STATE(182), - [sym_emphasis_begin] = STATE(898), + [sym_emphasis_begin] = STATE(1016), [sym_strong] = STATE(182), - [sym_strong_begin] = STATE(104), + [sym_strong_begin] = STATE(122), [sym__hard_line_break] = STATE(182), [sym_hard_line_break] = STATE(182), [sym__smart_punctuation] = STATE(182), @@ -7959,12 +10277,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_full_reference_image] = STATE(182), [sym_collapsed_reference_image] = STATE(182), [sym_inline_image] = STATE(182), - [sym__image_description] = STATE(610), + [sym__image_description] = STATE(692), [sym__link] = STATE(182), [sym_full_reference_link] = STATE(182), [sym_collapsed_reference_link] = STATE(182), [sym_inline_link] = STATE(182), - [sym_link_text] = STATE(608), + [sym_link_text] = STATE(689), [sym__comment_with_spaces] = STATE(182), [sym_span] = STATE(182), [sym_raw_inline] = STATE(182), @@ -7974,54 +10292,737 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(182), [sym_note] = STATE(182), [sym__symbol_fallback] = STATE(182), - [aux_sym__text] = STATE(144), - [aux_sym__inline_repeat1] = STATE(97), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_] = ACTIONS(49), - [anon_sym__] = ACTIONS(52), - [anon_sym_LBRACE_STAR] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(58), - [anon_sym_BSLASH] = ACTIONS(61), - [sym_quotation_marks] = ACTIONS(52), - [sym_ellipsis] = ACTIONS(52), - [sym_em_dash] = ACTIONS(52), - [sym_en_dash] = ACTIONS(64), - [sym_backslash_escape] = ACTIONS(64), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_LBRACE_EQ] = ACTIONS(70), - [anon_sym_LBRACE_PLUS] = ACTIONS(73), - [anon_sym_LBRACE_DASH] = ACTIONS(76), - [sym_symbol] = ACTIONS(52), - [anon_sym_LBRACE_CARET] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(81), - [anon_sym_LBRACE_TILDE] = ACTIONS(84), - [anon_sym_TILDE] = ACTIONS(84), - [anon_sym_LBRACK_CARET] = ACTIONS(87), - [anon_sym_RBRACK] = ACTIONS(125), - [anon_sym_BANG_LBRACK] = ACTIONS(92), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_RBRACK2] = ACTIONS(79), - [anon_sym_LBRACE2] = ACTIONS(64), - [anon_sym_DOLLAR] = ACTIONS(98), - [anon_sym_TODO] = ACTIONS(101), - [anon_sym_WIP] = ACTIONS(101), - [anon_sym_NOTE] = ACTIONS(104), - [anon_sym_INFO] = ACTIONS(104), - [anon_sym_XXX] = ACTIONS(104), - [sym_fixme] = ACTIONS(52), - [anon_sym_PIPE] = ACTIONS(52), - [sym__whitespace1] = ACTIONS(107), - [sym__newline] = ACTIONS(110), - [aux_sym__text_token1] = ACTIONS(113), - [sym__verbatim_begin] = ACTIONS(116), + [aux_sym__text] = STATE(153), + [aux_sym__inline_repeat1] = STATE(117), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(423), + [anon_sym__] = ACTIONS(426), + [anon_sym_LBRACE_STAR] = ACTIONS(429), + [anon_sym_STAR] = ACTIONS(432), + [anon_sym_BSLASH] = ACTIONS(435), + [sym_quotation_marks] = ACTIONS(438), + [sym_ellipsis] = ACTIONS(438), + [sym_em_dash] = ACTIONS(438), + [sym_en_dash] = ACTIONS(441), + [sym_backslash_escape] = ACTIONS(441), + [anon_sym_LT] = ACTIONS(444), + [anon_sym_LBRACE_EQ] = ACTIONS(447), + [anon_sym_LBRACE_PLUS] = ACTIONS(450), + [anon_sym_PLUS_RBRACE] = ACTIONS(84), + [anon_sym_LBRACE_DASH] = ACTIONS(453), + [sym_symbol] = ACTIONS(438), + [anon_sym_LBRACE_CARET] = ACTIONS(456), + [anon_sym_CARET] = ACTIONS(456), + [anon_sym_LBRACE_TILDE] = ACTIONS(459), + [anon_sym_TILDE] = ACTIONS(459), + [anon_sym_LBRACK_CARET] = ACTIONS(462), + [anon_sym_BANG_LBRACK] = ACTIONS(465), + [anon_sym_LBRACK] = ACTIONS(468), + [anon_sym_LBRACE2] = ACTIONS(441), + [anon_sym_DOLLAR] = ACTIONS(471), + [anon_sym_TODO] = ACTIONS(474), + [anon_sym_WIP] = ACTIONS(474), + [anon_sym_NOTE] = ACTIONS(477), + [anon_sym_INFO] = ACTIONS(477), + [anon_sym_XXX] = ACTIONS(477), + [sym_fixme] = ACTIONS(438), + [anon_sym_PIPE] = ACTIONS(438), + [sym__whitespace1] = ACTIONS(480), + [sym__newline] = ACTIONS(483), + [aux_sym__text_token1] = ACTIONS(486), + [sym__verbatim_begin] = ACTIONS(489), }, - [5] = { - [sym__inline] = STATE(722), - [sym__element] = STATE(97), + [26] = { + [sym__inline] = STATE(797), + [sym__element] = STATE(79), + [sym_emphasis] = STATE(172), + [sym_emphasis_begin] = STATE(1015), + [sym_strong] = STATE(172), + [sym_strong_begin] = STATE(125), + [sym__hard_line_break] = STATE(172), + [sym_hard_line_break] = STATE(172), + [sym__smart_punctuation] = STATE(172), + [sym_autolink] = STATE(172), + [sym_highlighted] = STATE(172), + [sym_insert] = STATE(172), + [sym_delete] = STATE(172), + [sym_superscript] = STATE(172), + [sym_subscript] = STATE(172), + [sym_footnote_reference] = STATE(172), + [sym__image] = STATE(172), + [sym_full_reference_image] = STATE(172), + [sym_collapsed_reference_image] = STATE(172), + [sym_inline_image] = STATE(172), + [sym__image_description] = STATE(711), + [sym__link] = STATE(172), + [sym_full_reference_link] = STATE(172), + [sym_collapsed_reference_link] = STATE(172), + [sym_inline_link] = STATE(172), + [sym_link_text] = STATE(712), + [sym__comment_with_spaces] = STATE(172), + [sym_span] = STATE(172), + [sym_raw_inline] = STATE(172), + [sym_math] = STATE(172), + [sym_verbatim] = STATE(172), + [sym__todo_highlights] = STATE(172), + [sym_todo] = STATE(172), + [sym_note] = STATE(172), + [sym__symbol_fallback] = STATE(172), + [aux_sym__text] = STATE(170), + [aux_sym__inline_repeat1] = STATE(79), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(354), + [anon_sym__] = ACTIONS(357), + [anon_sym_LBRACE_STAR] = ACTIONS(360), + [anon_sym_STAR] = ACTIONS(363), + [anon_sym_BSLASH] = ACTIONS(366), + [sym_quotation_marks] = ACTIONS(369), + [sym_ellipsis] = ACTIONS(369), + [sym_em_dash] = ACTIONS(369), + [sym_en_dash] = ACTIONS(372), + [sym_backslash_escape] = ACTIONS(372), + [anon_sym_LT] = ACTIONS(375), + [anon_sym_LBRACE_EQ] = ACTIONS(378), + [anon_sym_LBRACE_PLUS] = ACTIONS(381), + [anon_sym_PLUS_RBRACE] = ACTIONS(84), + [anon_sym_LBRACE_DASH] = ACTIONS(384), + [sym_symbol] = ACTIONS(369), + [anon_sym_LBRACE_CARET] = ACTIONS(387), + [anon_sym_CARET] = ACTIONS(387), + [anon_sym_LBRACE_TILDE] = ACTIONS(390), + [anon_sym_TILDE] = ACTIONS(390), + [anon_sym_LBRACK_CARET] = ACTIONS(393), + [anon_sym_BANG_LBRACK] = ACTIONS(396), + [anon_sym_LBRACK] = ACTIONS(399), + [anon_sym_LBRACE2] = ACTIONS(372), + [anon_sym_DOLLAR] = ACTIONS(402), + [anon_sym_TODO] = ACTIONS(405), + [anon_sym_WIP] = ACTIONS(405), + [anon_sym_NOTE] = ACTIONS(408), + [anon_sym_INFO] = ACTIONS(408), + [anon_sym_XXX] = ACTIONS(408), + [sym_fixme] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(369), + [sym__whitespace1] = ACTIONS(411), + [sym__newline] = ACTIONS(414), + [aux_sym__text_token1] = ACTIONS(417), + [sym__verbatim_begin] = ACTIONS(420), + }, + [27] = { + [sym__inline] = STATE(928), + [sym__element] = STATE(83), + [sym_emphasis] = STATE(211), + [sym_emphasis_begin] = STATE(1014), + [sym_strong] = STATE(211), + [sym_strong_begin] = STATE(121), + [sym__hard_line_break] = STATE(211), + [sym_hard_line_break] = STATE(211), + [sym__smart_punctuation] = STATE(211), + [sym_autolink] = STATE(211), + [sym_highlighted] = STATE(211), + [sym_insert] = STATE(211), + [sym_delete] = STATE(211), + [sym_superscript] = STATE(211), + [sym_subscript] = STATE(211), + [sym_footnote_reference] = STATE(211), + [sym__image] = STATE(211), + [sym_full_reference_image] = STATE(211), + [sym_collapsed_reference_image] = STATE(211), + [sym_inline_image] = STATE(211), + [sym__image_description] = STATE(693), + [sym__link] = STATE(211), + [sym_full_reference_link] = STATE(211), + [sym_collapsed_reference_link] = STATE(211), + [sym_inline_link] = STATE(211), + [sym_link_text] = STATE(694), + [sym__comment_with_spaces] = STATE(211), + [sym_span] = STATE(211), + [sym_raw_inline] = STATE(211), + [sym_math] = STATE(211), + [sym_verbatim] = STATE(211), + [sym__todo_highlights] = STATE(211), + [sym_todo] = STATE(211), + [sym_note] = STATE(211), + [sym__symbol_fallback] = STATE(211), + [aux_sym__text] = STATE(137), + [aux_sym__inline_repeat1] = STATE(83), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(285), + [anon_sym__] = ACTIONS(288), + [anon_sym_LBRACE_STAR] = ACTIONS(291), + [anon_sym_STAR] = ACTIONS(294), + [anon_sym_BSLASH] = ACTIONS(297), + [sym_quotation_marks] = ACTIONS(300), + [sym_ellipsis] = ACTIONS(300), + [sym_em_dash] = ACTIONS(300), + [sym_en_dash] = ACTIONS(303), + [sym_backslash_escape] = ACTIONS(303), + [anon_sym_LT] = ACTIONS(306), + [anon_sym_LBRACE_EQ] = ACTIONS(309), + [anon_sym_LBRACE_PLUS] = ACTIONS(312), + [anon_sym_PLUS_RBRACE] = ACTIONS(84), + [anon_sym_LBRACE_DASH] = ACTIONS(315), + [sym_symbol] = ACTIONS(300), + [anon_sym_LBRACE_CARET] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_LBRACE_TILDE] = ACTIONS(321), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_LBRACK_CARET] = ACTIONS(324), + [anon_sym_BANG_LBRACK] = ACTIONS(327), + [anon_sym_LBRACK] = ACTIONS(330), + [anon_sym_LBRACE2] = ACTIONS(303), + [anon_sym_DOLLAR] = ACTIONS(333), + [anon_sym_TODO] = ACTIONS(336), + [anon_sym_WIP] = ACTIONS(336), + [anon_sym_NOTE] = ACTIONS(339), + [anon_sym_INFO] = ACTIONS(339), + [anon_sym_XXX] = ACTIONS(339), + [sym_fixme] = ACTIONS(300), + [anon_sym_PIPE] = ACTIONS(300), + [sym__whitespace1] = ACTIONS(342), + [sym__newline] = ACTIONS(345), + [aux_sym__text_token1] = ACTIONS(348), + [sym__verbatim_begin] = ACTIONS(351), + }, + [28] = { + [sym__inline] = STATE(890), + [sym__element] = STATE(87), + [sym_emphasis] = STATE(176), + [sym_emphasis_begin] = STATE(1013), + [sym_strong] = STATE(176), + [sym_strong_begin] = STATE(97), + [sym__hard_line_break] = STATE(176), + [sym_hard_line_break] = STATE(176), + [sym__smart_punctuation] = STATE(176), + [sym_autolink] = STATE(176), + [sym_highlighted] = STATE(176), + [sym_insert] = STATE(176), + [sym_delete] = STATE(176), + [sym_superscript] = STATE(176), + [sym_subscript] = STATE(176), + [sym_footnote_reference] = STATE(176), + [sym__image] = STATE(176), + [sym_full_reference_image] = STATE(176), + [sym_collapsed_reference_image] = STATE(176), + [sym_inline_image] = STATE(176), + [sym__image_description] = STATE(690), + [sym__link] = STATE(176), + [sym_full_reference_link] = STATE(176), + [sym_collapsed_reference_link] = STATE(176), + [sym_inline_link] = STATE(176), + [sym_link_text] = STATE(691), + [sym__comment_with_spaces] = STATE(176), + [sym_span] = STATE(176), + [sym_raw_inline] = STATE(176), + [sym_math] = STATE(176), + [sym_verbatim] = STATE(176), + [sym__todo_highlights] = STATE(176), + [sym_todo] = STATE(176), + [sym_note] = STATE(176), + [sym__symbol_fallback] = STATE(176), + [aux_sym__text] = STATE(155), + [aux_sym__inline_repeat1] = STATE(87), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(210), + [anon_sym__] = ACTIONS(213), + [anon_sym_LBRACE_STAR] = ACTIONS(216), + [anon_sym_STAR] = ACTIONS(219), + [anon_sym_BSLASH] = ACTIONS(222), + [sym_quotation_marks] = ACTIONS(225), + [sym_ellipsis] = ACTIONS(225), + [sym_em_dash] = ACTIONS(225), + [sym_en_dash] = ACTIONS(228), + [sym_backslash_escape] = ACTIONS(228), + [anon_sym_LT] = ACTIONS(231), + [anon_sym_LBRACE_EQ] = ACTIONS(234), + [anon_sym_LBRACE_PLUS] = ACTIONS(237), + [anon_sym_PLUS_RBRACE] = ACTIONS(84), + [anon_sym_LBRACE_DASH] = ACTIONS(240), + [sym_symbol] = ACTIONS(225), + [anon_sym_LBRACE_CARET] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(243), + [anon_sym_LBRACE_TILDE] = ACTIONS(246), + [anon_sym_TILDE] = ACTIONS(246), + [anon_sym_LBRACK_CARET] = ACTIONS(249), + [anon_sym_BANG_LBRACK] = ACTIONS(252), + [anon_sym_LBRACK] = ACTIONS(255), + [anon_sym_LBRACE2] = ACTIONS(228), + [anon_sym_DOLLAR] = ACTIONS(258), + [anon_sym_TODO] = ACTIONS(261), + [anon_sym_WIP] = ACTIONS(261), + [anon_sym_NOTE] = ACTIONS(264), + [anon_sym_INFO] = ACTIONS(264), + [anon_sym_XXX] = ACTIONS(264), + [sym_fixme] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(225), + [sym__whitespace1] = ACTIONS(267), + [sym__newline] = ACTIONS(270), + [aux_sym__text_token1] = ACTIONS(273), + [sym__verbatim_begin] = ACTIONS(276), + }, + [29] = { + [sym__inline] = STATE(935), + [sym__element] = STATE(95), + [sym_emphasis] = STATE(215), + [sym_emphasis_begin] = STATE(1012), + [sym_strong] = STATE(215), + [sym_strong_begin] = STATE(128), + [sym__hard_line_break] = STATE(215), + [sym_hard_line_break] = STATE(215), + [sym__smart_punctuation] = STATE(215), + [sym_autolink] = STATE(215), + [sym_highlighted] = STATE(215), + [sym_insert] = STATE(215), + [sym_delete] = STATE(215), + [sym_superscript] = STATE(215), + [sym_subscript] = STATE(215), + [sym_footnote_reference] = STATE(215), + [sym__image] = STATE(215), + [sym_full_reference_image] = STATE(215), + [sym_collapsed_reference_image] = STATE(215), + [sym_inline_image] = STATE(215), + [sym__image_description] = STATE(696), + [sym__link] = STATE(215), + [sym_full_reference_link] = STATE(215), + [sym_collapsed_reference_link] = STATE(215), + [sym_inline_link] = STATE(215), + [sym_link_text] = STATE(705), + [sym__comment_with_spaces] = STATE(215), + [sym_span] = STATE(215), + [sym_raw_inline] = STATE(215), + [sym_math] = STATE(215), + [sym_verbatim] = STATE(215), + [sym__todo_highlights] = STATE(215), + [sym_todo] = STATE(215), + [sym_note] = STATE(215), + [sym__symbol_fallback] = STATE(215), + [aux_sym__text] = STATE(141), + [aux_sym__inline_repeat1] = STATE(95), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(141), + [anon_sym__] = ACTIONS(144), + [anon_sym_LBRACE_STAR] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(150), + [anon_sym_BSLASH] = ACTIONS(153), + [sym_quotation_marks] = ACTIONS(156), + [sym_ellipsis] = ACTIONS(156), + [sym_em_dash] = ACTIONS(156), + [sym_en_dash] = ACTIONS(159), + [sym_backslash_escape] = ACTIONS(159), + [anon_sym_LT] = ACTIONS(162), + [anon_sym_LBRACE_EQ] = ACTIONS(165), + [anon_sym_LBRACE_PLUS] = ACTIONS(168), + [anon_sym_PLUS_RBRACE] = ACTIONS(84), + [anon_sym_LBRACE_DASH] = ACTIONS(171), + [sym_symbol] = ACTIONS(156), + [anon_sym_LBRACE_CARET] = ACTIONS(174), + [anon_sym_CARET] = ACTIONS(174), + [anon_sym_LBRACE_TILDE] = ACTIONS(177), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_LBRACK_CARET] = ACTIONS(180), + [anon_sym_BANG_LBRACK] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(186), + [anon_sym_LBRACE2] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(189), + [anon_sym_TODO] = ACTIONS(192), + [anon_sym_WIP] = ACTIONS(192), + [anon_sym_NOTE] = ACTIONS(195), + [anon_sym_INFO] = ACTIONS(195), + [anon_sym_XXX] = ACTIONS(195), + [sym_fixme] = ACTIONS(156), + [anon_sym_PIPE] = ACTIONS(156), + [sym__whitespace1] = ACTIONS(198), + [sym__newline] = ACTIONS(201), + [aux_sym__text_token1] = ACTIONS(204), + [sym__verbatim_begin] = ACTIONS(207), + }, + [30] = { + [sym__inline] = STATE(941), + [sym__element] = STATE(118), + [sym_emphasis] = STATE(204), + [sym_emphasis_begin] = STATE(1017), + [sym_strong] = STATE(204), + [sym_strong_begin] = STATE(114), + [sym__hard_line_break] = STATE(204), + [sym_hard_line_break] = STATE(204), + [sym__smart_punctuation] = STATE(204), + [sym_autolink] = STATE(204), + [sym_highlighted] = STATE(204), + [sym_insert] = STATE(204), + [sym_delete] = STATE(204), + [sym_superscript] = STATE(204), + [sym_subscript] = STATE(204), + [sym_footnote_reference] = STATE(204), + [sym__image] = STATE(204), + [sym_full_reference_image] = STATE(204), + [sym_collapsed_reference_image] = STATE(204), + [sym_inline_image] = STATE(204), + [sym__image_description] = STATE(714), + [sym__link] = STATE(204), + [sym_full_reference_link] = STATE(204), + [sym_collapsed_reference_link] = STATE(204), + [sym_inline_link] = STATE(204), + [sym_link_text] = STATE(715), + [sym__comment_with_spaces] = STATE(204), + [sym_span] = STATE(204), + [sym_raw_inline] = STATE(204), + [sym_math] = STATE(204), + [sym_verbatim] = STATE(204), + [sym__todo_highlights] = STATE(204), + [sym_todo] = STATE(204), + [sym_note] = STATE(204), + [sym__symbol_fallback] = STATE(204), + [aux_sym__text] = STATE(149), + [aux_sym__inline_repeat1] = STATE(118), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(51), + [anon_sym__] = ACTIONS(54), + [anon_sym_LBRACE_STAR] = ACTIONS(57), + [anon_sym_STAR] = ACTIONS(60), + [anon_sym_BSLASH] = ACTIONS(63), + [sym_quotation_marks] = ACTIONS(66), + [sym_ellipsis] = ACTIONS(66), + [sym_em_dash] = ACTIONS(66), + [sym_en_dash] = ACTIONS(69), + [sym_backslash_escape] = ACTIONS(69), + [anon_sym_LT] = ACTIONS(72), + [anon_sym_LBRACE_EQ] = ACTIONS(75), + [anon_sym_LBRACE_PLUS] = ACTIONS(78), + [anon_sym_LBRACE_DASH] = ACTIONS(81), + [sym_symbol] = ACTIONS(66), + [anon_sym_LBRACE_CARET] = ACTIONS(86), + [anon_sym_CARET] = ACTIONS(124), + [anon_sym_CARET_RBRACE] = ACTIONS(84), + [anon_sym_LBRACE_TILDE] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(89), + [anon_sym_LBRACK_CARET] = ACTIONS(92), + [anon_sym_BANG_LBRACK] = ACTIONS(97), + [anon_sym_LBRACK] = ACTIONS(100), + [anon_sym_LBRACE2] = ACTIONS(69), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_TODO] = ACTIONS(106), + [anon_sym_WIP] = ACTIONS(106), + [anon_sym_NOTE] = ACTIONS(109), + [anon_sym_INFO] = ACTIONS(109), + [anon_sym_XXX] = ACTIONS(109), + [sym_fixme] = ACTIONS(66), + [anon_sym_PIPE] = ACTIONS(66), + [sym__whitespace1] = ACTIONS(112), + [sym__newline] = ACTIONS(115), + [aux_sym__text_token1] = ACTIONS(118), + [sym__verbatim_begin] = ACTIONS(121), + }, + [31] = { + [sym__inline] = STATE(860), + [sym__element] = STATE(95), + [sym_emphasis] = STATE(215), + [sym_emphasis_begin] = STATE(1012), + [sym_strong] = STATE(215), + [sym_strong_begin] = STATE(128), + [sym__hard_line_break] = STATE(215), + [sym_hard_line_break] = STATE(215), + [sym__smart_punctuation] = STATE(215), + [sym_autolink] = STATE(215), + [sym_highlighted] = STATE(215), + [sym_insert] = STATE(215), + [sym_delete] = STATE(215), + [sym_superscript] = STATE(215), + [sym_subscript] = STATE(215), + [sym_footnote_reference] = STATE(215), + [sym__image] = STATE(215), + [sym_full_reference_image] = STATE(215), + [sym_collapsed_reference_image] = STATE(215), + [sym_inline_image] = STATE(215), + [sym__image_description] = STATE(696), + [sym__link] = STATE(215), + [sym_full_reference_link] = STATE(215), + [sym_collapsed_reference_link] = STATE(215), + [sym_inline_link] = STATE(215), + [sym_link_text] = STATE(705), + [sym__comment_with_spaces] = STATE(215), + [sym_span] = STATE(215), + [sym_raw_inline] = STATE(215), + [sym_math] = STATE(215), + [sym_verbatim] = STATE(215), + [sym__todo_highlights] = STATE(215), + [sym_todo] = STATE(215), + [sym_note] = STATE(215), + [sym__symbol_fallback] = STATE(215), + [aux_sym__text] = STATE(141), + [aux_sym__inline_repeat1] = STATE(95), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(141), + [anon_sym__] = ACTIONS(144), + [anon_sym_LBRACE_STAR] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(150), + [anon_sym_BSLASH] = ACTIONS(153), + [sym_quotation_marks] = ACTIONS(156), + [sym_ellipsis] = ACTIONS(156), + [sym_em_dash] = ACTIONS(156), + [sym_en_dash] = ACTIONS(159), + [sym_backslash_escape] = ACTIONS(159), + [anon_sym_LT] = ACTIONS(162), + [anon_sym_LBRACE_EQ] = ACTIONS(165), + [anon_sym_LBRACE_PLUS] = ACTIONS(168), + [anon_sym_LBRACE_DASH] = ACTIONS(171), + [sym_symbol] = ACTIONS(156), + [anon_sym_LBRACE_CARET] = ACTIONS(174), + [anon_sym_CARET] = ACTIONS(174), + [anon_sym_LBRACE_TILDE] = ACTIONS(177), + [anon_sym_TILDE] = ACTIONS(501), + [anon_sym_TILDE_RBRACE] = ACTIONS(84), + [anon_sym_LBRACK_CARET] = ACTIONS(180), + [anon_sym_BANG_LBRACK] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(186), + [anon_sym_LBRACE2] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(189), + [anon_sym_TODO] = ACTIONS(192), + [anon_sym_WIP] = ACTIONS(192), + [anon_sym_NOTE] = ACTIONS(195), + [anon_sym_INFO] = ACTIONS(195), + [anon_sym_XXX] = ACTIONS(195), + [sym_fixme] = ACTIONS(156), + [anon_sym_PIPE] = ACTIONS(156), + [sym__whitespace1] = ACTIONS(198), + [sym__newline] = ACTIONS(201), + [aux_sym__text_token1] = ACTIONS(204), + [sym__verbatim_begin] = ACTIONS(207), + }, + [32] = { + [sym__inline] = STATE(859), + [sym__element] = STATE(87), + [sym_emphasis] = STATE(176), + [sym_emphasis_begin] = STATE(1013), + [sym_strong] = STATE(176), + [sym_strong_begin] = STATE(97), + [sym__hard_line_break] = STATE(176), + [sym_hard_line_break] = STATE(176), + [sym__smart_punctuation] = STATE(176), + [sym_autolink] = STATE(176), + [sym_highlighted] = STATE(176), + [sym_insert] = STATE(176), + [sym_delete] = STATE(176), + [sym_superscript] = STATE(176), + [sym_subscript] = STATE(176), + [sym_footnote_reference] = STATE(176), + [sym__image] = STATE(176), + [sym_full_reference_image] = STATE(176), + [sym_collapsed_reference_image] = STATE(176), + [sym_inline_image] = STATE(176), + [sym__image_description] = STATE(690), + [sym__link] = STATE(176), + [sym_full_reference_link] = STATE(176), + [sym_collapsed_reference_link] = STATE(176), + [sym_inline_link] = STATE(176), + [sym_link_text] = STATE(691), + [sym__comment_with_spaces] = STATE(176), + [sym_span] = STATE(176), + [sym_raw_inline] = STATE(176), + [sym_math] = STATE(176), + [sym_verbatim] = STATE(176), + [sym__todo_highlights] = STATE(176), + [sym_todo] = STATE(176), + [sym_note] = STATE(176), + [sym__symbol_fallback] = STATE(176), + [aux_sym__text] = STATE(155), + [aux_sym__inline_repeat1] = STATE(87), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(210), + [anon_sym__] = ACTIONS(213), + [anon_sym_LBRACE_STAR] = ACTIONS(216), + [anon_sym_STAR] = ACTIONS(219), + [anon_sym_BSLASH] = ACTIONS(222), + [sym_quotation_marks] = ACTIONS(225), + [sym_ellipsis] = ACTIONS(225), + [sym_em_dash] = ACTIONS(225), + [sym_en_dash] = ACTIONS(228), + [sym_backslash_escape] = ACTIONS(228), + [anon_sym_LT] = ACTIONS(231), + [anon_sym_LBRACE_EQ] = ACTIONS(234), + [anon_sym_LBRACE_PLUS] = ACTIONS(237), + [anon_sym_LBRACE_DASH] = ACTIONS(240), + [sym_symbol] = ACTIONS(225), + [anon_sym_LBRACE_CARET] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(243), + [anon_sym_LBRACE_TILDE] = ACTIONS(246), + [anon_sym_TILDE] = ACTIONS(504), + [anon_sym_TILDE_RBRACE] = ACTIONS(84), + [anon_sym_LBRACK_CARET] = ACTIONS(249), + [anon_sym_BANG_LBRACK] = ACTIONS(252), + [anon_sym_LBRACK] = ACTIONS(255), + [anon_sym_LBRACE2] = ACTIONS(228), + [anon_sym_DOLLAR] = ACTIONS(258), + [anon_sym_TODO] = ACTIONS(261), + [anon_sym_WIP] = ACTIONS(261), + [anon_sym_NOTE] = ACTIONS(264), + [anon_sym_INFO] = ACTIONS(264), + [anon_sym_XXX] = ACTIONS(264), + [sym_fixme] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(225), + [sym__whitespace1] = ACTIONS(267), + [sym__newline] = ACTIONS(270), + [aux_sym__text_token1] = ACTIONS(273), + [sym__verbatim_begin] = ACTIONS(276), + }, + [33] = { + [sym__inline] = STATE(858), + [sym__element] = STATE(83), + [sym_emphasis] = STATE(211), + [sym_emphasis_begin] = STATE(1014), + [sym_strong] = STATE(211), + [sym_strong_begin] = STATE(121), + [sym__hard_line_break] = STATE(211), + [sym_hard_line_break] = STATE(211), + [sym__smart_punctuation] = STATE(211), + [sym_autolink] = STATE(211), + [sym_highlighted] = STATE(211), + [sym_insert] = STATE(211), + [sym_delete] = STATE(211), + [sym_superscript] = STATE(211), + [sym_subscript] = STATE(211), + [sym_footnote_reference] = STATE(211), + [sym__image] = STATE(211), + [sym_full_reference_image] = STATE(211), + [sym_collapsed_reference_image] = STATE(211), + [sym_inline_image] = STATE(211), + [sym__image_description] = STATE(693), + [sym__link] = STATE(211), + [sym_full_reference_link] = STATE(211), + [sym_collapsed_reference_link] = STATE(211), + [sym_inline_link] = STATE(211), + [sym_link_text] = STATE(694), + [sym__comment_with_spaces] = STATE(211), + [sym_span] = STATE(211), + [sym_raw_inline] = STATE(211), + [sym_math] = STATE(211), + [sym_verbatim] = STATE(211), + [sym__todo_highlights] = STATE(211), + [sym_todo] = STATE(211), + [sym_note] = STATE(211), + [sym__symbol_fallback] = STATE(211), + [aux_sym__text] = STATE(137), + [aux_sym__inline_repeat1] = STATE(83), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(285), + [anon_sym__] = ACTIONS(288), + [anon_sym_LBRACE_STAR] = ACTIONS(291), + [anon_sym_STAR] = ACTIONS(294), + [anon_sym_BSLASH] = ACTIONS(297), + [sym_quotation_marks] = ACTIONS(300), + [sym_ellipsis] = ACTIONS(300), + [sym_em_dash] = ACTIONS(300), + [sym_en_dash] = ACTIONS(303), + [sym_backslash_escape] = ACTIONS(303), + [anon_sym_LT] = ACTIONS(306), + [anon_sym_LBRACE_EQ] = ACTIONS(309), + [anon_sym_LBRACE_PLUS] = ACTIONS(312), + [anon_sym_LBRACE_DASH] = ACTIONS(315), + [sym_symbol] = ACTIONS(300), + [anon_sym_LBRACE_CARET] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_LBRACE_TILDE] = ACTIONS(321), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_TILDE_RBRACE] = ACTIONS(84), + [anon_sym_LBRACK_CARET] = ACTIONS(324), + [anon_sym_BANG_LBRACK] = ACTIONS(327), + [anon_sym_LBRACK] = ACTIONS(330), + [anon_sym_LBRACE2] = ACTIONS(303), + [anon_sym_DOLLAR] = ACTIONS(333), + [anon_sym_TODO] = ACTIONS(336), + [anon_sym_WIP] = ACTIONS(336), + [anon_sym_NOTE] = ACTIONS(339), + [anon_sym_INFO] = ACTIONS(339), + [anon_sym_XXX] = ACTIONS(339), + [sym_fixme] = ACTIONS(300), + [anon_sym_PIPE] = ACTIONS(300), + [sym__whitespace1] = ACTIONS(342), + [sym__newline] = ACTIONS(345), + [aux_sym__text_token1] = ACTIONS(348), + [sym__verbatim_begin] = ACTIONS(351), + }, + [34] = { + [sym__inline] = STATE(747), + [sym__element] = STATE(79), + [sym_emphasis] = STATE(172), + [sym_emphasis_begin] = STATE(1015), + [sym_strong] = STATE(172), + [sym_strong_begin] = STATE(125), + [sym__hard_line_break] = STATE(172), + [sym_hard_line_break] = STATE(172), + [sym__smart_punctuation] = STATE(172), + [sym_autolink] = STATE(172), + [sym_highlighted] = STATE(172), + [sym_insert] = STATE(172), + [sym_delete] = STATE(172), + [sym_superscript] = STATE(172), + [sym_subscript] = STATE(172), + [sym_footnote_reference] = STATE(172), + [sym__image] = STATE(172), + [sym_full_reference_image] = STATE(172), + [sym_collapsed_reference_image] = STATE(172), + [sym_inline_image] = STATE(172), + [sym__image_description] = STATE(711), + [sym__link] = STATE(172), + [sym_full_reference_link] = STATE(172), + [sym_collapsed_reference_link] = STATE(172), + [sym_inline_link] = STATE(172), + [sym_link_text] = STATE(712), + [sym__comment_with_spaces] = STATE(172), + [sym_span] = STATE(172), + [sym_raw_inline] = STATE(172), + [sym_math] = STATE(172), + [sym_verbatim] = STATE(172), + [sym__todo_highlights] = STATE(172), + [sym_todo] = STATE(172), + [sym_note] = STATE(172), + [sym__symbol_fallback] = STATE(172), + [aux_sym__text] = STATE(170), + [aux_sym__inline_repeat1] = STATE(79), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(354), + [anon_sym__] = ACTIONS(357), + [anon_sym_LBRACE_STAR] = ACTIONS(360), + [anon_sym_STAR] = ACTIONS(363), + [anon_sym_BSLASH] = ACTIONS(366), + [sym_quotation_marks] = ACTIONS(369), + [sym_ellipsis] = ACTIONS(369), + [sym_em_dash] = ACTIONS(369), + [sym_en_dash] = ACTIONS(372), + [sym_backslash_escape] = ACTIONS(372), + [anon_sym_LT] = ACTIONS(375), + [anon_sym_LBRACE_EQ] = ACTIONS(378), + [anon_sym_LBRACE_PLUS] = ACTIONS(381), + [anon_sym_LBRACE_DASH] = ACTIONS(384), + [sym_symbol] = ACTIONS(369), + [anon_sym_LBRACE_CARET] = ACTIONS(387), + [anon_sym_CARET] = ACTIONS(387), + [anon_sym_LBRACE_TILDE] = ACTIONS(390), + [anon_sym_TILDE] = ACTIONS(510), + [anon_sym_TILDE_RBRACE] = ACTIONS(84), + [anon_sym_LBRACK_CARET] = ACTIONS(393), + [anon_sym_BANG_LBRACK] = ACTIONS(396), + [anon_sym_LBRACK] = ACTIONS(399), + [anon_sym_LBRACE2] = ACTIONS(372), + [anon_sym_DOLLAR] = ACTIONS(402), + [anon_sym_TODO] = ACTIONS(405), + [anon_sym_WIP] = ACTIONS(405), + [anon_sym_NOTE] = ACTIONS(408), + [anon_sym_INFO] = ACTIONS(408), + [anon_sym_XXX] = ACTIONS(408), + [sym_fixme] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(369), + [sym__whitespace1] = ACTIONS(411), + [sym__newline] = ACTIONS(414), + [aux_sym__text_token1] = ACTIONS(417), + [sym__verbatim_begin] = ACTIONS(420), + }, + [35] = { + [sym__inline] = STATE(764), + [sym__element] = STATE(117), [sym_emphasis] = STATE(182), - [sym_emphasis_begin] = STATE(898), + [sym_emphasis_begin] = STATE(1016), [sym_strong] = STATE(182), - [sym_strong_begin] = STATE(104), + [sym_strong_begin] = STATE(122), [sym__hard_line_break] = STATE(182), [sym_hard_line_break] = STATE(182), [sym__smart_punctuation] = STATE(182), @@ -8036,12 +11037,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_full_reference_image] = STATE(182), [sym_collapsed_reference_image] = STATE(182), [sym_inline_image] = STATE(182), - [sym__image_description] = STATE(610), + [sym__image_description] = STATE(692), [sym__link] = STATE(182), [sym_full_reference_link] = STATE(182), [sym_collapsed_reference_link] = STATE(182), [sym_inline_link] = STATE(182), - [sym_link_text] = STATE(608), + [sym_link_text] = STATE(689), [sym__comment_with_spaces] = STATE(182), [sym_span] = STATE(182), [sym_raw_inline] = STATE(182), @@ -8051,54 +11052,357 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(182), [sym_note] = STATE(182), [sym__symbol_fallback] = STATE(182), - [aux_sym__text] = STATE(144), - [aux_sym__inline_repeat1] = STATE(97), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_] = ACTIONS(49), - [anon_sym__] = ACTIONS(52), - [anon_sym_LBRACE_STAR] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(58), - [anon_sym_BSLASH] = ACTIONS(61), - [sym_quotation_marks] = ACTIONS(52), - [sym_ellipsis] = ACTIONS(52), - [sym_em_dash] = ACTIONS(52), - [sym_en_dash] = ACTIONS(64), - [sym_backslash_escape] = ACTIONS(64), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_LBRACE_EQ] = ACTIONS(70), - [anon_sym_EQ_RBRACE] = ACTIONS(79), - [anon_sym_LBRACE_PLUS] = ACTIONS(73), - [anon_sym_LBRACE_DASH] = ACTIONS(76), - [sym_symbol] = ACTIONS(52), - [anon_sym_LBRACE_CARET] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(81), - [anon_sym_LBRACE_TILDE] = ACTIONS(84), - [anon_sym_TILDE] = ACTIONS(84), - [anon_sym_LBRACK_CARET] = ACTIONS(87), - [anon_sym_RBRACK] = ACTIONS(90), - [anon_sym_BANG_LBRACK] = ACTIONS(92), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LBRACE2] = ACTIONS(64), - [anon_sym_DOLLAR] = ACTIONS(98), - [anon_sym_TODO] = ACTIONS(101), - [anon_sym_WIP] = ACTIONS(101), - [anon_sym_NOTE] = ACTIONS(104), - [anon_sym_INFO] = ACTIONS(104), - [anon_sym_XXX] = ACTIONS(104), - [sym_fixme] = ACTIONS(52), - [anon_sym_PIPE] = ACTIONS(52), - [sym__whitespace1] = ACTIONS(107), - [sym__newline] = ACTIONS(110), - [aux_sym__text_token1] = ACTIONS(113), - [sym__verbatim_begin] = ACTIONS(116), + [aux_sym__text] = STATE(153), + [aux_sym__inline_repeat1] = STATE(117), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(423), + [anon_sym__] = ACTIONS(426), + [anon_sym_LBRACE_STAR] = ACTIONS(429), + [anon_sym_STAR] = ACTIONS(432), + [anon_sym_BSLASH] = ACTIONS(435), + [sym_quotation_marks] = ACTIONS(438), + [sym_ellipsis] = ACTIONS(438), + [sym_em_dash] = ACTIONS(438), + [sym_en_dash] = ACTIONS(441), + [sym_backslash_escape] = ACTIONS(441), + [anon_sym_LT] = ACTIONS(444), + [anon_sym_LBRACE_EQ] = ACTIONS(447), + [anon_sym_LBRACE_PLUS] = ACTIONS(450), + [anon_sym_LBRACE_DASH] = ACTIONS(453), + [sym_symbol] = ACTIONS(438), + [anon_sym_LBRACE_CARET] = ACTIONS(456), + [anon_sym_CARET] = ACTIONS(456), + [anon_sym_LBRACE_TILDE] = ACTIONS(459), + [anon_sym_TILDE] = ACTIONS(513), + [anon_sym_TILDE_RBRACE] = ACTIONS(84), + [anon_sym_LBRACK_CARET] = ACTIONS(462), + [anon_sym_BANG_LBRACK] = ACTIONS(465), + [anon_sym_LBRACK] = ACTIONS(468), + [anon_sym_LBRACE2] = ACTIONS(441), + [anon_sym_DOLLAR] = ACTIONS(471), + [anon_sym_TODO] = ACTIONS(474), + [anon_sym_WIP] = ACTIONS(474), + [anon_sym_NOTE] = ACTIONS(477), + [anon_sym_INFO] = ACTIONS(477), + [anon_sym_XXX] = ACTIONS(477), + [sym_fixme] = ACTIONS(438), + [anon_sym_PIPE] = ACTIONS(438), + [sym__whitespace1] = ACTIONS(480), + [sym__newline] = ACTIONS(483), + [aux_sym__text_token1] = ACTIONS(486), + [sym__verbatim_begin] = ACTIONS(489), }, - [6] = { - [sym__inline] = STATE(722), - [sym__element] = STATE(97), + [36] = { + [sym__inline] = STATE(950), + [sym__element] = STATE(118), + [sym_emphasis] = STATE(204), + [sym_emphasis_begin] = STATE(1017), + [sym_strong] = STATE(204), + [sym_strong_begin] = STATE(114), + [sym__hard_line_break] = STATE(204), + [sym_hard_line_break] = STATE(204), + [sym__smart_punctuation] = STATE(204), + [sym_autolink] = STATE(204), + [sym_highlighted] = STATE(204), + [sym_insert] = STATE(204), + [sym_delete] = STATE(204), + [sym_superscript] = STATE(204), + [sym_subscript] = STATE(204), + [sym_footnote_reference] = STATE(204), + [sym__image] = STATE(204), + [sym_full_reference_image] = STATE(204), + [sym_collapsed_reference_image] = STATE(204), + [sym_inline_image] = STATE(204), + [sym__image_description] = STATE(714), + [sym__link] = STATE(204), + [sym_full_reference_link] = STATE(204), + [sym_collapsed_reference_link] = STATE(204), + [sym_inline_link] = STATE(204), + [sym_link_text] = STATE(715), + [sym__comment_with_spaces] = STATE(204), + [sym_span] = STATE(204), + [sym_raw_inline] = STATE(204), + [sym_math] = STATE(204), + [sym_verbatim] = STATE(204), + [sym__todo_highlights] = STATE(204), + [sym_todo] = STATE(204), + [sym_note] = STATE(204), + [sym__symbol_fallback] = STATE(204), + [aux_sym__text] = STATE(149), + [aux_sym__inline_repeat1] = STATE(118), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(51), + [anon_sym__] = ACTIONS(54), + [anon_sym_LBRACE_STAR] = ACTIONS(57), + [anon_sym_STAR] = ACTIONS(60), + [anon_sym_BSLASH] = ACTIONS(63), + [sym_quotation_marks] = ACTIONS(66), + [sym_ellipsis] = ACTIONS(66), + [sym_em_dash] = ACTIONS(66), + [sym_en_dash] = ACTIONS(69), + [sym_backslash_escape] = ACTIONS(69), + [anon_sym_LT] = ACTIONS(72), + [anon_sym_LBRACE_EQ] = ACTIONS(75), + [anon_sym_LBRACE_PLUS] = ACTIONS(78), + [anon_sym_LBRACE_DASH] = ACTIONS(81), + [sym_symbol] = ACTIONS(66), + [anon_sym_LBRACE_CARET] = ACTIONS(86), + [anon_sym_CARET] = ACTIONS(86), + [anon_sym_LBRACE_TILDE] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(138), + [anon_sym_TILDE_RBRACE] = ACTIONS(84), + [anon_sym_LBRACK_CARET] = ACTIONS(92), + [anon_sym_BANG_LBRACK] = ACTIONS(97), + [anon_sym_LBRACK] = ACTIONS(100), + [anon_sym_LBRACE2] = ACTIONS(69), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_TODO] = ACTIONS(106), + [anon_sym_WIP] = ACTIONS(106), + [anon_sym_NOTE] = ACTIONS(109), + [anon_sym_INFO] = ACTIONS(109), + [anon_sym_XXX] = ACTIONS(109), + [sym_fixme] = ACTIONS(66), + [anon_sym_PIPE] = ACTIONS(66), + [sym__whitespace1] = ACTIONS(112), + [sym__newline] = ACTIONS(115), + [aux_sym__text_token1] = ACTIONS(118), + [sym__verbatim_begin] = ACTIONS(121), + }, + [37] = { + [sym__inline] = STATE(832), + [sym__element] = STATE(87), + [sym_emphasis] = STATE(176), + [sym_emphasis_begin] = STATE(1013), + [sym_strong] = STATE(176), + [sym_strong_begin] = STATE(97), + [sym__hard_line_break] = STATE(176), + [sym_hard_line_break] = STATE(176), + [sym__smart_punctuation] = STATE(176), + [sym_autolink] = STATE(176), + [sym_highlighted] = STATE(176), + [sym_insert] = STATE(176), + [sym_delete] = STATE(176), + [sym_superscript] = STATE(176), + [sym_subscript] = STATE(176), + [sym_footnote_reference] = STATE(176), + [sym__image] = STATE(176), + [sym_full_reference_image] = STATE(176), + [sym_collapsed_reference_image] = STATE(176), + [sym_inline_image] = STATE(176), + [sym__image_description] = STATE(690), + [sym__link] = STATE(176), + [sym_full_reference_link] = STATE(176), + [sym_collapsed_reference_link] = STATE(176), + [sym_inline_link] = STATE(176), + [sym_link_text] = STATE(691), + [sym__comment_with_spaces] = STATE(176), + [sym_span] = STATE(176), + [sym_raw_inline] = STATE(176), + [sym_math] = STATE(176), + [sym_verbatim] = STATE(176), + [sym__todo_highlights] = STATE(176), + [sym_todo] = STATE(176), + [sym_note] = STATE(176), + [sym__symbol_fallback] = STATE(176), + [aux_sym__text] = STATE(155), + [aux_sym__inline_repeat1] = STATE(87), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(210), + [anon_sym__] = ACTIONS(213), + [anon_sym_LBRACE_STAR] = ACTIONS(216), + [anon_sym_STAR] = ACTIONS(219), + [anon_sym_BSLASH] = ACTIONS(222), + [sym_quotation_marks] = ACTIONS(225), + [sym_ellipsis] = ACTIONS(225), + [sym_em_dash] = ACTIONS(225), + [sym_en_dash] = ACTIONS(228), + [sym_backslash_escape] = ACTIONS(228), + [anon_sym_LT] = ACTIONS(231), + [anon_sym_LBRACE_EQ] = ACTIONS(234), + [anon_sym_LBRACE_PLUS] = ACTIONS(237), + [anon_sym_LBRACE_DASH] = ACTIONS(240), + [sym_symbol] = ACTIONS(225), + [anon_sym_LBRACE_CARET] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(243), + [anon_sym_LBRACE_TILDE] = ACTIONS(246), + [anon_sym_TILDE] = ACTIONS(246), + [anon_sym_LBRACK_CARET] = ACTIONS(249), + [anon_sym_RBRACK] = ACTIONS(84), + [anon_sym_BANG_LBRACK] = ACTIONS(252), + [anon_sym_LBRACK] = ACTIONS(255), + [anon_sym_LBRACE2] = ACTIONS(228), + [anon_sym_DOLLAR] = ACTIONS(258), + [anon_sym_TODO] = ACTIONS(261), + [anon_sym_WIP] = ACTIONS(261), + [anon_sym_NOTE] = ACTIONS(264), + [anon_sym_INFO] = ACTIONS(264), + [anon_sym_XXX] = ACTIONS(264), + [sym_fixme] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(225), + [sym__whitespace1] = ACTIONS(267), + [sym__newline] = ACTIONS(270), + [aux_sym__text_token1] = ACTIONS(273), + [sym__verbatim_begin] = ACTIONS(276), + }, + [38] = { + [sym__inline] = STATE(827), + [sym__element] = STATE(83), + [sym_emphasis] = STATE(211), + [sym_emphasis_begin] = STATE(1014), + [sym_strong] = STATE(211), + [sym_strong_begin] = STATE(121), + [sym__hard_line_break] = STATE(211), + [sym_hard_line_break] = STATE(211), + [sym__smart_punctuation] = STATE(211), + [sym_autolink] = STATE(211), + [sym_highlighted] = STATE(211), + [sym_insert] = STATE(211), + [sym_delete] = STATE(211), + [sym_superscript] = STATE(211), + [sym_subscript] = STATE(211), + [sym_footnote_reference] = STATE(211), + [sym__image] = STATE(211), + [sym_full_reference_image] = STATE(211), + [sym_collapsed_reference_image] = STATE(211), + [sym_inline_image] = STATE(211), + [sym__image_description] = STATE(693), + [sym__link] = STATE(211), + [sym_full_reference_link] = STATE(211), + [sym_collapsed_reference_link] = STATE(211), + [sym_inline_link] = STATE(211), + [sym_link_text] = STATE(694), + [sym__comment_with_spaces] = STATE(211), + [sym_span] = STATE(211), + [sym_raw_inline] = STATE(211), + [sym_math] = STATE(211), + [sym_verbatim] = STATE(211), + [sym__todo_highlights] = STATE(211), + [sym_todo] = STATE(211), + [sym_note] = STATE(211), + [sym__symbol_fallback] = STATE(211), + [aux_sym__text] = STATE(137), + [aux_sym__inline_repeat1] = STATE(83), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(285), + [anon_sym__] = ACTIONS(288), + [anon_sym_LBRACE_STAR] = ACTIONS(291), + [anon_sym_STAR] = ACTIONS(294), + [anon_sym_BSLASH] = ACTIONS(297), + [sym_quotation_marks] = ACTIONS(300), + [sym_ellipsis] = ACTIONS(300), + [sym_em_dash] = ACTIONS(300), + [sym_en_dash] = ACTIONS(303), + [sym_backslash_escape] = ACTIONS(303), + [anon_sym_LT] = ACTIONS(306), + [anon_sym_LBRACE_EQ] = ACTIONS(309), + [anon_sym_LBRACE_PLUS] = ACTIONS(312), + [anon_sym_LBRACE_DASH] = ACTIONS(315), + [sym_symbol] = ACTIONS(300), + [anon_sym_LBRACE_CARET] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_LBRACE_TILDE] = ACTIONS(321), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_LBRACK_CARET] = ACTIONS(324), + [anon_sym_RBRACK] = ACTIONS(84), + [anon_sym_BANG_LBRACK] = ACTIONS(327), + [anon_sym_LBRACK] = ACTIONS(330), + [anon_sym_LBRACE2] = ACTIONS(303), + [anon_sym_DOLLAR] = ACTIONS(333), + [anon_sym_TODO] = ACTIONS(336), + [anon_sym_WIP] = ACTIONS(336), + [anon_sym_NOTE] = ACTIONS(339), + [anon_sym_INFO] = ACTIONS(339), + [anon_sym_XXX] = ACTIONS(339), + [sym_fixme] = ACTIONS(300), + [anon_sym_PIPE] = ACTIONS(300), + [sym__whitespace1] = ACTIONS(342), + [sym__newline] = ACTIONS(345), + [aux_sym__text_token1] = ACTIONS(348), + [sym__verbatim_begin] = ACTIONS(351), + }, + [39] = { + [sym__inline] = STATE(786), + [sym__element] = STATE(79), + [sym_emphasis] = STATE(172), + [sym_emphasis_begin] = STATE(1015), + [sym_strong] = STATE(172), + [sym_strong_begin] = STATE(125), + [sym__hard_line_break] = STATE(172), + [sym_hard_line_break] = STATE(172), + [sym__smart_punctuation] = STATE(172), + [sym_autolink] = STATE(172), + [sym_highlighted] = STATE(172), + [sym_insert] = STATE(172), + [sym_delete] = STATE(172), + [sym_superscript] = STATE(172), + [sym_subscript] = STATE(172), + [sym_footnote_reference] = STATE(172), + [sym__image] = STATE(172), + [sym_full_reference_image] = STATE(172), + [sym_collapsed_reference_image] = STATE(172), + [sym_inline_image] = STATE(172), + [sym__image_description] = STATE(711), + [sym__link] = STATE(172), + [sym_full_reference_link] = STATE(172), + [sym_collapsed_reference_link] = STATE(172), + [sym_inline_link] = STATE(172), + [sym_link_text] = STATE(712), + [sym__comment_with_spaces] = STATE(172), + [sym_span] = STATE(172), + [sym_raw_inline] = STATE(172), + [sym_math] = STATE(172), + [sym_verbatim] = STATE(172), + [sym__todo_highlights] = STATE(172), + [sym_todo] = STATE(172), + [sym_note] = STATE(172), + [sym__symbol_fallback] = STATE(172), + [aux_sym__text] = STATE(170), + [aux_sym__inline_repeat1] = STATE(79), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(354), + [anon_sym__] = ACTIONS(357), + [anon_sym_LBRACE_STAR] = ACTIONS(360), + [anon_sym_STAR] = ACTIONS(363), + [anon_sym_BSLASH] = ACTIONS(366), + [sym_quotation_marks] = ACTIONS(369), + [sym_ellipsis] = ACTIONS(369), + [sym_em_dash] = ACTIONS(369), + [sym_en_dash] = ACTIONS(372), + [sym_backslash_escape] = ACTIONS(372), + [anon_sym_LT] = ACTIONS(375), + [anon_sym_LBRACE_EQ] = ACTIONS(378), + [anon_sym_LBRACE_PLUS] = ACTIONS(381), + [anon_sym_LBRACE_DASH] = ACTIONS(384), + [sym_symbol] = ACTIONS(369), + [anon_sym_LBRACE_CARET] = ACTIONS(387), + [anon_sym_CARET] = ACTIONS(387), + [anon_sym_LBRACE_TILDE] = ACTIONS(390), + [anon_sym_TILDE] = ACTIONS(390), + [anon_sym_LBRACK_CARET] = ACTIONS(393), + [anon_sym_RBRACK] = ACTIONS(84), + [anon_sym_BANG_LBRACK] = ACTIONS(396), + [anon_sym_LBRACK] = ACTIONS(399), + [anon_sym_LBRACE2] = ACTIONS(372), + [anon_sym_DOLLAR] = ACTIONS(402), + [anon_sym_TODO] = ACTIONS(405), + [anon_sym_WIP] = ACTIONS(405), + [anon_sym_NOTE] = ACTIONS(408), + [anon_sym_INFO] = ACTIONS(408), + [anon_sym_XXX] = ACTIONS(408), + [sym_fixme] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(369), + [sym__whitespace1] = ACTIONS(411), + [sym__newline] = ACTIONS(414), + [aux_sym__text_token1] = ACTIONS(417), + [sym__verbatim_begin] = ACTIONS(420), + }, + [40] = { + [sym__inline] = STATE(787), + [sym__element] = STATE(117), [sym_emphasis] = STATE(182), - [sym_emphasis_begin] = STATE(898), + [sym_emphasis_begin] = STATE(1016), [sym_strong] = STATE(182), - [sym_strong_begin] = STATE(104), + [sym_strong_begin] = STATE(122), [sym__hard_line_break] = STATE(182), [sym_hard_line_break] = STATE(182), [sym__smart_punctuation] = STATE(182), @@ -8113,12 +11417,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_full_reference_image] = STATE(182), [sym_collapsed_reference_image] = STATE(182), [sym_inline_image] = STATE(182), - [sym__image_description] = STATE(610), + [sym__image_description] = STATE(692), [sym__link] = STATE(182), [sym_full_reference_link] = STATE(182), [sym_collapsed_reference_link] = STATE(182), [sym_inline_link] = STATE(182), - [sym_link_text] = STATE(608), + [sym_link_text] = STATE(689), [sym__comment_with_spaces] = STATE(182), [sym_span] = STATE(182), [sym_raw_inline] = STATE(182), @@ -8128,54 +11432,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(182), [sym_note] = STATE(182), [sym__symbol_fallback] = STATE(182), - [aux_sym__text] = STATE(144), - [aux_sym__inline_repeat1] = STATE(97), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_] = ACTIONS(49), - [anon_sym__] = ACTIONS(52), - [anon_sym_LBRACE_STAR] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(58), - [anon_sym_BSLASH] = ACTIONS(61), - [sym_quotation_marks] = ACTIONS(52), - [sym_ellipsis] = ACTIONS(52), - [sym_em_dash] = ACTIONS(52), - [sym_en_dash] = ACTIONS(64), - [sym_backslash_escape] = ACTIONS(64), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_LBRACE_EQ] = ACTIONS(70), - [anon_sym_LBRACE_PLUS] = ACTIONS(73), - [anon_sym_LBRACE_DASH] = ACTIONS(76), - [sym_symbol] = ACTIONS(52), - [anon_sym_LBRACE_CARET] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(81), - [anon_sym_LBRACE_TILDE] = ACTIONS(84), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_TILDE_RBRACE] = ACTIONS(79), - [anon_sym_LBRACK_CARET] = ACTIONS(87), - [anon_sym_RBRACK] = ACTIONS(90), - [anon_sym_BANG_LBRACK] = ACTIONS(92), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LBRACE2] = ACTIONS(64), - [anon_sym_DOLLAR] = ACTIONS(98), - [anon_sym_TODO] = ACTIONS(101), - [anon_sym_WIP] = ACTIONS(101), - [anon_sym_NOTE] = ACTIONS(104), - [anon_sym_INFO] = ACTIONS(104), - [anon_sym_XXX] = ACTIONS(104), - [sym_fixme] = ACTIONS(52), - [anon_sym_PIPE] = ACTIONS(52), - [sym__whitespace1] = ACTIONS(107), - [sym__newline] = ACTIONS(110), - [aux_sym__text_token1] = ACTIONS(113), - [sym__verbatim_begin] = ACTIONS(116), + [aux_sym__text] = STATE(153), + [aux_sym__inline_repeat1] = STATE(117), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(423), + [anon_sym__] = ACTIONS(426), + [anon_sym_LBRACE_STAR] = ACTIONS(429), + [anon_sym_STAR] = ACTIONS(432), + [anon_sym_BSLASH] = ACTIONS(435), + [sym_quotation_marks] = ACTIONS(438), + [sym_ellipsis] = ACTIONS(438), + [sym_em_dash] = ACTIONS(438), + [sym_en_dash] = ACTIONS(441), + [sym_backslash_escape] = ACTIONS(441), + [anon_sym_LT] = ACTIONS(444), + [anon_sym_LBRACE_EQ] = ACTIONS(447), + [anon_sym_LBRACE_PLUS] = ACTIONS(450), + [anon_sym_LBRACE_DASH] = ACTIONS(453), + [sym_symbol] = ACTIONS(438), + [anon_sym_LBRACE_CARET] = ACTIONS(456), + [anon_sym_CARET] = ACTIONS(456), + [anon_sym_LBRACE_TILDE] = ACTIONS(459), + [anon_sym_TILDE] = ACTIONS(459), + [anon_sym_LBRACK_CARET] = ACTIONS(462), + [anon_sym_RBRACK] = ACTIONS(84), + [anon_sym_BANG_LBRACK] = ACTIONS(465), + [anon_sym_LBRACK] = ACTIONS(468), + [anon_sym_LBRACE2] = ACTIONS(441), + [anon_sym_DOLLAR] = ACTIONS(471), + [anon_sym_TODO] = ACTIONS(474), + [anon_sym_WIP] = ACTIONS(474), + [anon_sym_NOTE] = ACTIONS(477), + [anon_sym_INFO] = ACTIONS(477), + [anon_sym_XXX] = ACTIONS(477), + [sym_fixme] = ACTIONS(438), + [anon_sym_PIPE] = ACTIONS(438), + [sym__whitespace1] = ACTIONS(480), + [sym__newline] = ACTIONS(483), + [aux_sym__text_token1] = ACTIONS(486), + [sym__verbatim_begin] = ACTIONS(489), }, - [7] = { - [sym__inline] = STATE(722), - [sym__element] = STATE(97), + [41] = { + [sym__inline] = STATE(914), + [sym__element] = STATE(118), + [sym_emphasis] = STATE(204), + [sym_emphasis_begin] = STATE(1017), + [sym_strong] = STATE(204), + [sym_strong_begin] = STATE(114), + [sym__hard_line_break] = STATE(204), + [sym_hard_line_break] = STATE(204), + [sym__smart_punctuation] = STATE(204), + [sym_autolink] = STATE(204), + [sym_highlighted] = STATE(204), + [sym_insert] = STATE(204), + [sym_delete] = STATE(204), + [sym_superscript] = STATE(204), + [sym_subscript] = STATE(204), + [sym_footnote_reference] = STATE(204), + [sym__image] = STATE(204), + [sym_full_reference_image] = STATE(204), + [sym_collapsed_reference_image] = STATE(204), + [sym_inline_image] = STATE(204), + [sym__image_description] = STATE(714), + [sym__link] = STATE(204), + [sym_full_reference_link] = STATE(204), + [sym_collapsed_reference_link] = STATE(204), + [sym_inline_link] = STATE(204), + [sym_link_text] = STATE(715), + [sym__comment_with_spaces] = STATE(204), + [sym_span] = STATE(204), + [sym_raw_inline] = STATE(204), + [sym_math] = STATE(204), + [sym_verbatim] = STATE(204), + [sym__todo_highlights] = STATE(204), + [sym_todo] = STATE(204), + [sym_note] = STATE(204), + [sym__symbol_fallback] = STATE(204), + [aux_sym__text] = STATE(149), + [aux_sym__inline_repeat1] = STATE(118), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(51), + [anon_sym__] = ACTIONS(54), + [anon_sym_LBRACE_STAR] = ACTIONS(57), + [anon_sym_STAR] = ACTIONS(60), + [anon_sym_BSLASH] = ACTIONS(63), + [sym_quotation_marks] = ACTIONS(66), + [sym_ellipsis] = ACTIONS(66), + [sym_em_dash] = ACTIONS(66), + [sym_en_dash] = ACTIONS(69), + [sym_backslash_escape] = ACTIONS(69), + [anon_sym_LT] = ACTIONS(72), + [anon_sym_LBRACE_EQ] = ACTIONS(75), + [anon_sym_EQ_RBRACE] = ACTIONS(84), + [anon_sym_LBRACE_PLUS] = ACTIONS(78), + [anon_sym_LBRACE_DASH] = ACTIONS(81), + [sym_symbol] = ACTIONS(66), + [anon_sym_LBRACE_CARET] = ACTIONS(86), + [anon_sym_CARET] = ACTIONS(86), + [anon_sym_LBRACE_TILDE] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(89), + [anon_sym_LBRACK_CARET] = ACTIONS(92), + [anon_sym_BANG_LBRACK] = ACTIONS(97), + [anon_sym_LBRACK] = ACTIONS(100), + [anon_sym_LBRACE2] = ACTIONS(69), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_TODO] = ACTIONS(106), + [anon_sym_WIP] = ACTIONS(106), + [anon_sym_NOTE] = ACTIONS(109), + [anon_sym_INFO] = ACTIONS(109), + [anon_sym_XXX] = ACTIONS(109), + [sym_fixme] = ACTIONS(66), + [anon_sym_PIPE] = ACTIONS(66), + [sym__whitespace1] = ACTIONS(112), + [sym__newline] = ACTIONS(115), + [aux_sym__text_token1] = ACTIONS(118), + [sym__verbatim_begin] = ACTIONS(121), + }, + [42] = { + [sym__inline] = STATE(778), + [sym__element] = STATE(117), [sym_emphasis] = STATE(182), - [sym_emphasis_begin] = STATE(898), + [sym_emphasis_begin] = STATE(1016), [sym_strong] = STATE(182), - [sym_strong_begin] = STATE(104), + [sym_strong_begin] = STATE(122), [sym__hard_line_break] = STATE(182), [sym_hard_line_break] = STATE(182), [sym__smart_punctuation] = STATE(182), @@ -8190,12 +11569,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_full_reference_image] = STATE(182), [sym_collapsed_reference_image] = STATE(182), [sym_inline_image] = STATE(182), - [sym__image_description] = STATE(610), + [sym__image_description] = STATE(692), [sym__link] = STATE(182), [sym_full_reference_link] = STATE(182), [sym_collapsed_reference_link] = STATE(182), [sym_inline_link] = STATE(182), - [sym_link_text] = STATE(608), + [sym_link_text] = STATE(689), [sym__comment_with_spaces] = STATE(182), [sym_span] = STATE(182), [sym_raw_inline] = STATE(182), @@ -8205,54 +11584,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(182), [sym_note] = STATE(182), [sym__symbol_fallback] = STATE(182), - [aux_sym__text] = STATE(144), - [aux_sym__inline_repeat1] = STATE(97), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_] = ACTIONS(49), - [anon_sym__] = ACTIONS(52), - [anon_sym_LBRACE_STAR] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(58), - [anon_sym_BSLASH] = ACTIONS(61), - [sym_quotation_marks] = ACTIONS(52), - [sym_ellipsis] = ACTIONS(52), - [sym_em_dash] = ACTIONS(52), - [sym_en_dash] = ACTIONS(64), - [sym_backslash_escape] = ACTIONS(64), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_LBRACE_EQ] = ACTIONS(70), - [anon_sym_LBRACE_PLUS] = ACTIONS(73), - [anon_sym_LBRACE_DASH] = ACTIONS(76), - [sym_symbol] = ACTIONS(52), - [anon_sym_LBRACE_CARET] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(130), - [anon_sym_CARET_RBRACE] = ACTIONS(79), - [anon_sym_LBRACE_TILDE] = ACTIONS(84), - [anon_sym_TILDE] = ACTIONS(84), - [anon_sym_LBRACK_CARET] = ACTIONS(87), - [anon_sym_RBRACK] = ACTIONS(90), - [anon_sym_BANG_LBRACK] = ACTIONS(92), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LBRACE2] = ACTIONS(64), - [anon_sym_DOLLAR] = ACTIONS(98), - [anon_sym_TODO] = ACTIONS(101), - [anon_sym_WIP] = ACTIONS(101), - [anon_sym_NOTE] = ACTIONS(104), - [anon_sym_INFO] = ACTIONS(104), - [anon_sym_XXX] = ACTIONS(104), - [sym_fixme] = ACTIONS(52), - [anon_sym_PIPE] = ACTIONS(52), - [sym__whitespace1] = ACTIONS(107), - [sym__newline] = ACTIONS(110), - [aux_sym__text_token1] = ACTIONS(113), - [sym__verbatim_begin] = ACTIONS(116), + [aux_sym__text] = STATE(153), + [aux_sym__inline_repeat1] = STATE(117), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(423), + [anon_sym__] = ACTIONS(426), + [anon_sym_LBRACE_STAR] = ACTIONS(429), + [anon_sym_STAR] = ACTIONS(432), + [anon_sym_BSLASH] = ACTIONS(435), + [sym_quotation_marks] = ACTIONS(438), + [sym_ellipsis] = ACTIONS(438), + [sym_em_dash] = ACTIONS(438), + [sym_en_dash] = ACTIONS(441), + [sym_backslash_escape] = ACTIONS(441), + [anon_sym_LT] = ACTIONS(444), + [anon_sym_LBRACE_EQ] = ACTIONS(447), + [anon_sym_LBRACE_PLUS] = ACTIONS(450), + [anon_sym_LBRACE_DASH] = ACTIONS(453), + [anon_sym_DASH_RBRACE] = ACTIONS(84), + [sym_symbol] = ACTIONS(438), + [anon_sym_LBRACE_CARET] = ACTIONS(456), + [anon_sym_CARET] = ACTIONS(456), + [anon_sym_LBRACE_TILDE] = ACTIONS(459), + [anon_sym_TILDE] = ACTIONS(459), + [anon_sym_LBRACK_CARET] = ACTIONS(462), + [anon_sym_BANG_LBRACK] = ACTIONS(465), + [anon_sym_LBRACK] = ACTIONS(468), + [anon_sym_LBRACE2] = ACTIONS(441), + [anon_sym_DOLLAR] = ACTIONS(471), + [anon_sym_TODO] = ACTIONS(474), + [anon_sym_WIP] = ACTIONS(474), + [anon_sym_NOTE] = ACTIONS(477), + [anon_sym_INFO] = ACTIONS(477), + [anon_sym_XXX] = ACTIONS(477), + [sym_fixme] = ACTIONS(438), + [anon_sym_PIPE] = ACTIONS(438), + [sym__whitespace1] = ACTIONS(480), + [sym__newline] = ACTIONS(483), + [aux_sym__text_token1] = ACTIONS(486), + [sym__verbatim_begin] = ACTIONS(489), }, - [8] = { - [sym__inline] = STATE(722), - [sym__element] = STATE(97), + [43] = { + [sym__inline] = STATE(768), + [sym__element] = STATE(117), [sym_emphasis] = STATE(182), - [sym_emphasis_begin] = STATE(898), + [sym_emphasis_begin] = STATE(1016), [sym_strong] = STATE(182), - [sym_strong_begin] = STATE(104), + [sym_strong_begin] = STATE(122), [sym__hard_line_break] = STATE(182), [sym_hard_line_break] = STATE(182), [sym__smart_punctuation] = STATE(182), @@ -8267,12 +11645,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_full_reference_image] = STATE(182), [sym_collapsed_reference_image] = STATE(182), [sym_inline_image] = STATE(182), - [sym__image_description] = STATE(610), + [sym__image_description] = STATE(692), [sym__link] = STATE(182), [sym_full_reference_link] = STATE(182), [sym_collapsed_reference_link] = STATE(182), [sym_inline_link] = STATE(182), - [sym_link_text] = STATE(608), + [sym_link_text] = STATE(689), [sym__comment_with_spaces] = STATE(182), [sym_span] = STATE(182), [sym_raw_inline] = STATE(182), @@ -8282,54 +11660,965 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(182), [sym_note] = STATE(182), [sym__symbol_fallback] = STATE(182), - [aux_sym__text] = STATE(144), - [aux_sym__inline_repeat1] = STATE(97), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_] = ACTIONS(49), - [anon_sym__] = ACTIONS(52), - [anon_sym_LBRACE_STAR] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(58), - [anon_sym_BSLASH] = ACTIONS(61), - [sym_quotation_marks] = ACTIONS(52), - [sym_ellipsis] = ACTIONS(52), - [sym_em_dash] = ACTIONS(52), - [sym_en_dash] = ACTIONS(64), - [sym_backslash_escape] = ACTIONS(64), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_LBRACE_EQ] = ACTIONS(70), - [anon_sym_LBRACE_PLUS] = ACTIONS(73), - [anon_sym_PLUS_RBRACE] = ACTIONS(79), - [anon_sym_LBRACE_DASH] = ACTIONS(76), - [sym_symbol] = ACTIONS(52), - [anon_sym_LBRACE_CARET] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(81), - [anon_sym_LBRACE_TILDE] = ACTIONS(84), - [anon_sym_TILDE] = ACTIONS(84), - [anon_sym_LBRACK_CARET] = ACTIONS(87), - [anon_sym_RBRACK] = ACTIONS(90), - [anon_sym_BANG_LBRACK] = ACTIONS(92), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LBRACE2] = ACTIONS(64), - [anon_sym_DOLLAR] = ACTIONS(98), - [anon_sym_TODO] = ACTIONS(101), - [anon_sym_WIP] = ACTIONS(101), - [anon_sym_NOTE] = ACTIONS(104), - [anon_sym_INFO] = ACTIONS(104), - [anon_sym_XXX] = ACTIONS(104), - [sym_fixme] = ACTIONS(52), - [anon_sym_PIPE] = ACTIONS(52), - [sym__whitespace1] = ACTIONS(107), - [sym__newline] = ACTIONS(110), - [aux_sym__text_token1] = ACTIONS(113), - [sym__verbatim_begin] = ACTIONS(116), + [aux_sym__text] = STATE(153), + [aux_sym__inline_repeat1] = STATE(117), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(423), + [anon_sym__] = ACTIONS(426), + [anon_sym_LBRACE_STAR] = ACTIONS(429), + [anon_sym_STAR] = ACTIONS(432), + [anon_sym_BSLASH] = ACTIONS(435), + [sym_quotation_marks] = ACTIONS(438), + [sym_ellipsis] = ACTIONS(438), + [sym_em_dash] = ACTIONS(438), + [sym_en_dash] = ACTIONS(441), + [sym_backslash_escape] = ACTIONS(441), + [anon_sym_LT] = ACTIONS(444), + [anon_sym_LBRACE_EQ] = ACTIONS(447), + [anon_sym_EQ_RBRACE] = ACTIONS(84), + [anon_sym_LBRACE_PLUS] = ACTIONS(450), + [anon_sym_LBRACE_DASH] = ACTIONS(453), + [sym_symbol] = ACTIONS(438), + [anon_sym_LBRACE_CARET] = ACTIONS(456), + [anon_sym_CARET] = ACTIONS(456), + [anon_sym_LBRACE_TILDE] = ACTIONS(459), + [anon_sym_TILDE] = ACTIONS(459), + [anon_sym_LBRACK_CARET] = ACTIONS(462), + [anon_sym_BANG_LBRACK] = ACTIONS(465), + [anon_sym_LBRACK] = ACTIONS(468), + [anon_sym_LBRACE2] = ACTIONS(441), + [anon_sym_DOLLAR] = ACTIONS(471), + [anon_sym_TODO] = ACTIONS(474), + [anon_sym_WIP] = ACTIONS(474), + [anon_sym_NOTE] = ACTIONS(477), + [anon_sym_INFO] = ACTIONS(477), + [anon_sym_XXX] = ACTIONS(477), + [sym_fixme] = ACTIONS(438), + [anon_sym_PIPE] = ACTIONS(438), + [sym__whitespace1] = ACTIONS(480), + [sym__newline] = ACTIONS(483), + [aux_sym__text_token1] = ACTIONS(486), + [sym__verbatim_begin] = ACTIONS(489), }, - [9] = { - [sym__inline] = STATE(722), - [sym__element] = STATE(97), + [44] = { + [sym__inline] = STATE(769), + [sym__element] = STATE(79), + [sym_emphasis] = STATE(172), + [sym_emphasis_begin] = STATE(1015), + [sym_strong] = STATE(172), + [sym_strong_begin] = STATE(125), + [sym__hard_line_break] = STATE(172), + [sym_hard_line_break] = STATE(172), + [sym__smart_punctuation] = STATE(172), + [sym_autolink] = STATE(172), + [sym_highlighted] = STATE(172), + [sym_insert] = STATE(172), + [sym_delete] = STATE(172), + [sym_superscript] = STATE(172), + [sym_subscript] = STATE(172), + [sym_footnote_reference] = STATE(172), + [sym__image] = STATE(172), + [sym_full_reference_image] = STATE(172), + [sym_collapsed_reference_image] = STATE(172), + [sym_inline_image] = STATE(172), + [sym__image_description] = STATE(711), + [sym__link] = STATE(172), + [sym_full_reference_link] = STATE(172), + [sym_collapsed_reference_link] = STATE(172), + [sym_inline_link] = STATE(172), + [sym_link_text] = STATE(712), + [sym__comment_with_spaces] = STATE(172), + [sym_span] = STATE(172), + [sym_raw_inline] = STATE(172), + [sym_math] = STATE(172), + [sym_verbatim] = STATE(172), + [sym__todo_highlights] = STATE(172), + [sym_todo] = STATE(172), + [sym_note] = STATE(172), + [sym__symbol_fallback] = STATE(172), + [aux_sym__text] = STATE(170), + [aux_sym__inline_repeat1] = STATE(79), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(354), + [anon_sym__] = ACTIONS(357), + [anon_sym_LBRACE_STAR] = ACTIONS(360), + [anon_sym_STAR] = ACTIONS(363), + [anon_sym_BSLASH] = ACTIONS(366), + [sym_quotation_marks] = ACTIONS(369), + [sym_ellipsis] = ACTIONS(369), + [sym_em_dash] = ACTIONS(369), + [sym_en_dash] = ACTIONS(372), + [sym_backslash_escape] = ACTIONS(372), + [anon_sym_LT] = ACTIONS(375), + [anon_sym_LBRACE_EQ] = ACTIONS(378), + [anon_sym_EQ_RBRACE] = ACTIONS(84), + [anon_sym_LBRACE_PLUS] = ACTIONS(381), + [anon_sym_LBRACE_DASH] = ACTIONS(384), + [sym_symbol] = ACTIONS(369), + [anon_sym_LBRACE_CARET] = ACTIONS(387), + [anon_sym_CARET] = ACTIONS(387), + [anon_sym_LBRACE_TILDE] = ACTIONS(390), + [anon_sym_TILDE] = ACTIONS(390), + [anon_sym_LBRACK_CARET] = ACTIONS(393), + [anon_sym_BANG_LBRACK] = ACTIONS(396), + [anon_sym_LBRACK] = ACTIONS(399), + [anon_sym_LBRACE2] = ACTIONS(372), + [anon_sym_DOLLAR] = ACTIONS(402), + [anon_sym_TODO] = ACTIONS(405), + [anon_sym_WIP] = ACTIONS(405), + [anon_sym_NOTE] = ACTIONS(408), + [anon_sym_INFO] = ACTIONS(408), + [anon_sym_XXX] = ACTIONS(408), + [sym_fixme] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(369), + [sym__whitespace1] = ACTIONS(411), + [sym__newline] = ACTIONS(414), + [aux_sym__text_token1] = ACTIONS(417), + [sym__verbatim_begin] = ACTIONS(420), + }, + [45] = { + [sym__inline] = STATE(967), + [sym__element] = STATE(83), + [sym_emphasis] = STATE(211), + [sym_emphasis_begin] = STATE(1014), + [sym_strong] = STATE(211), + [sym_strong_begin] = STATE(121), + [sym__hard_line_break] = STATE(211), + [sym_hard_line_break] = STATE(211), + [sym__smart_punctuation] = STATE(211), + [sym_autolink] = STATE(211), + [sym_highlighted] = STATE(211), + [sym_insert] = STATE(211), + [sym_delete] = STATE(211), + [sym_superscript] = STATE(211), + [sym_subscript] = STATE(211), + [sym_footnote_reference] = STATE(211), + [sym__image] = STATE(211), + [sym_full_reference_image] = STATE(211), + [sym_collapsed_reference_image] = STATE(211), + [sym_inline_image] = STATE(211), + [sym__image_description] = STATE(693), + [sym__link] = STATE(211), + [sym_full_reference_link] = STATE(211), + [sym_collapsed_reference_link] = STATE(211), + [sym_inline_link] = STATE(211), + [sym_link_text] = STATE(694), + [sym__comment_with_spaces] = STATE(211), + [sym_span] = STATE(211), + [sym_raw_inline] = STATE(211), + [sym_math] = STATE(211), + [sym_verbatim] = STATE(211), + [sym__todo_highlights] = STATE(211), + [sym_todo] = STATE(211), + [sym_note] = STATE(211), + [sym__symbol_fallback] = STATE(211), + [aux_sym__text] = STATE(137), + [aux_sym__inline_repeat1] = STATE(83), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(285), + [anon_sym__] = ACTIONS(288), + [anon_sym_LBRACE_STAR] = ACTIONS(291), + [anon_sym_STAR] = ACTIONS(294), + [anon_sym_BSLASH] = ACTIONS(297), + [sym_quotation_marks] = ACTIONS(300), + [sym_ellipsis] = ACTIONS(300), + [sym_em_dash] = ACTIONS(300), + [sym_en_dash] = ACTIONS(303), + [sym_backslash_escape] = ACTIONS(303), + [anon_sym_LT] = ACTIONS(306), + [anon_sym_LBRACE_EQ] = ACTIONS(309), + [anon_sym_EQ_RBRACE] = ACTIONS(84), + [anon_sym_LBRACE_PLUS] = ACTIONS(312), + [anon_sym_LBRACE_DASH] = ACTIONS(315), + [sym_symbol] = ACTIONS(300), + [anon_sym_LBRACE_CARET] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_LBRACE_TILDE] = ACTIONS(321), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_LBRACK_CARET] = ACTIONS(324), + [anon_sym_BANG_LBRACK] = ACTIONS(327), + [anon_sym_LBRACK] = ACTIONS(330), + [anon_sym_LBRACE2] = ACTIONS(303), + [anon_sym_DOLLAR] = ACTIONS(333), + [anon_sym_TODO] = ACTIONS(336), + [anon_sym_WIP] = ACTIONS(336), + [anon_sym_NOTE] = ACTIONS(339), + [anon_sym_INFO] = ACTIONS(339), + [anon_sym_XXX] = ACTIONS(339), + [sym_fixme] = ACTIONS(300), + [anon_sym_PIPE] = ACTIONS(300), + [sym__whitespace1] = ACTIONS(342), + [sym__newline] = ACTIONS(345), + [aux_sym__text_token1] = ACTIONS(348), + [sym__verbatim_begin] = ACTIONS(351), + }, + [46] = { + [sym__inline] = STATE(970), + [sym__element] = STATE(87), + [sym_emphasis] = STATE(176), + [sym_emphasis_begin] = STATE(1013), + [sym_strong] = STATE(176), + [sym_strong_begin] = STATE(97), + [sym__hard_line_break] = STATE(176), + [sym_hard_line_break] = STATE(176), + [sym__smart_punctuation] = STATE(176), + [sym_autolink] = STATE(176), + [sym_highlighted] = STATE(176), + [sym_insert] = STATE(176), + [sym_delete] = STATE(176), + [sym_superscript] = STATE(176), + [sym_subscript] = STATE(176), + [sym_footnote_reference] = STATE(176), + [sym__image] = STATE(176), + [sym_full_reference_image] = STATE(176), + [sym_collapsed_reference_image] = STATE(176), + [sym_inline_image] = STATE(176), + [sym__image_description] = STATE(690), + [sym__link] = STATE(176), + [sym_full_reference_link] = STATE(176), + [sym_collapsed_reference_link] = STATE(176), + [sym_inline_link] = STATE(176), + [sym_link_text] = STATE(691), + [sym__comment_with_spaces] = STATE(176), + [sym_span] = STATE(176), + [sym_raw_inline] = STATE(176), + [sym_math] = STATE(176), + [sym_verbatim] = STATE(176), + [sym__todo_highlights] = STATE(176), + [sym_todo] = STATE(176), + [sym_note] = STATE(176), + [sym__symbol_fallback] = STATE(176), + [aux_sym__text] = STATE(155), + [aux_sym__inline_repeat1] = STATE(87), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(210), + [anon_sym__] = ACTIONS(213), + [anon_sym_LBRACE_STAR] = ACTIONS(216), + [anon_sym_STAR] = ACTIONS(219), + [anon_sym_BSLASH] = ACTIONS(222), + [sym_quotation_marks] = ACTIONS(225), + [sym_ellipsis] = ACTIONS(225), + [sym_em_dash] = ACTIONS(225), + [sym_en_dash] = ACTIONS(228), + [sym_backslash_escape] = ACTIONS(228), + [anon_sym_LT] = ACTIONS(231), + [anon_sym_LBRACE_EQ] = ACTIONS(234), + [anon_sym_EQ_RBRACE] = ACTIONS(84), + [anon_sym_LBRACE_PLUS] = ACTIONS(237), + [anon_sym_LBRACE_DASH] = ACTIONS(240), + [sym_symbol] = ACTIONS(225), + [anon_sym_LBRACE_CARET] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(243), + [anon_sym_LBRACE_TILDE] = ACTIONS(246), + [anon_sym_TILDE] = ACTIONS(246), + [anon_sym_LBRACK_CARET] = ACTIONS(249), + [anon_sym_BANG_LBRACK] = ACTIONS(252), + [anon_sym_LBRACK] = ACTIONS(255), + [anon_sym_LBRACE2] = ACTIONS(228), + [anon_sym_DOLLAR] = ACTIONS(258), + [anon_sym_TODO] = ACTIONS(261), + [anon_sym_WIP] = ACTIONS(261), + [anon_sym_NOTE] = ACTIONS(264), + [anon_sym_INFO] = ACTIONS(264), + [anon_sym_XXX] = ACTIONS(264), + [sym_fixme] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(225), + [sym__whitespace1] = ACTIONS(267), + [sym__newline] = ACTIONS(270), + [aux_sym__text_token1] = ACTIONS(273), + [sym__verbatim_begin] = ACTIONS(276), + }, + [47] = { + [sym__inline] = STATE(971), + [sym__element] = STATE(95), + [sym_emphasis] = STATE(215), + [sym_emphasis_begin] = STATE(1012), + [sym_strong] = STATE(215), + [sym_strong_begin] = STATE(128), + [sym__hard_line_break] = STATE(215), + [sym_hard_line_break] = STATE(215), + [sym__smart_punctuation] = STATE(215), + [sym_autolink] = STATE(215), + [sym_highlighted] = STATE(215), + [sym_insert] = STATE(215), + [sym_delete] = STATE(215), + [sym_superscript] = STATE(215), + [sym_subscript] = STATE(215), + [sym_footnote_reference] = STATE(215), + [sym__image] = STATE(215), + [sym_full_reference_image] = STATE(215), + [sym_collapsed_reference_image] = STATE(215), + [sym_inline_image] = STATE(215), + [sym__image_description] = STATE(696), + [sym__link] = STATE(215), + [sym_full_reference_link] = STATE(215), + [sym_collapsed_reference_link] = STATE(215), + [sym_inline_link] = STATE(215), + [sym_link_text] = STATE(705), + [sym__comment_with_spaces] = STATE(215), + [sym_span] = STATE(215), + [sym_raw_inline] = STATE(215), + [sym_math] = STATE(215), + [sym_verbatim] = STATE(215), + [sym__todo_highlights] = STATE(215), + [sym_todo] = STATE(215), + [sym_note] = STATE(215), + [sym__symbol_fallback] = STATE(215), + [aux_sym__text] = STATE(141), + [aux_sym__inline_repeat1] = STATE(95), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(141), + [anon_sym__] = ACTIONS(144), + [anon_sym_LBRACE_STAR] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(150), + [anon_sym_BSLASH] = ACTIONS(153), + [sym_quotation_marks] = ACTIONS(156), + [sym_ellipsis] = ACTIONS(156), + [sym_em_dash] = ACTIONS(156), + [sym_en_dash] = ACTIONS(159), + [sym_backslash_escape] = ACTIONS(159), + [anon_sym_LT] = ACTIONS(162), + [anon_sym_LBRACE_EQ] = ACTIONS(165), + [anon_sym_EQ_RBRACE] = ACTIONS(84), + [anon_sym_LBRACE_PLUS] = ACTIONS(168), + [anon_sym_LBRACE_DASH] = ACTIONS(171), + [sym_symbol] = ACTIONS(156), + [anon_sym_LBRACE_CARET] = ACTIONS(174), + [anon_sym_CARET] = ACTIONS(174), + [anon_sym_LBRACE_TILDE] = ACTIONS(177), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_LBRACK_CARET] = ACTIONS(180), + [anon_sym_BANG_LBRACK] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(186), + [anon_sym_LBRACE2] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(189), + [anon_sym_TODO] = ACTIONS(192), + [anon_sym_WIP] = ACTIONS(192), + [anon_sym_NOTE] = ACTIONS(195), + [anon_sym_INFO] = ACTIONS(195), + [anon_sym_XXX] = ACTIONS(195), + [sym_fixme] = ACTIONS(156), + [anon_sym_PIPE] = ACTIONS(156), + [sym__whitespace1] = ACTIONS(198), + [sym__newline] = ACTIONS(201), + [aux_sym__text_token1] = ACTIONS(204), + [sym__verbatim_begin] = ACTIONS(207), + }, + [48] = { + [sym__inline] = STATE(917), + [sym__element] = STATE(118), + [sym_emphasis] = STATE(204), + [sym_emphasis_begin] = STATE(1017), + [sym_strong] = STATE(204), + [sym_strong_begin] = STATE(114), + [sym__hard_line_break] = STATE(204), + [sym_hard_line_break] = STATE(204), + [sym__smart_punctuation] = STATE(204), + [sym_autolink] = STATE(204), + [sym_highlighted] = STATE(204), + [sym_insert] = STATE(204), + [sym_delete] = STATE(204), + [sym_superscript] = STATE(204), + [sym_subscript] = STATE(204), + [sym_footnote_reference] = STATE(204), + [sym__image] = STATE(204), + [sym_full_reference_image] = STATE(204), + [sym_collapsed_reference_image] = STATE(204), + [sym_inline_image] = STATE(204), + [sym__image_description] = STATE(714), + [sym__link] = STATE(204), + [sym_full_reference_link] = STATE(204), + [sym_collapsed_reference_link] = STATE(204), + [sym_inline_link] = STATE(204), + [sym_link_text] = STATE(715), + [sym__comment_with_spaces] = STATE(204), + [sym_span] = STATE(204), + [sym_raw_inline] = STATE(204), + [sym_math] = STATE(204), + [sym_verbatim] = STATE(204), + [sym__todo_highlights] = STATE(204), + [sym_todo] = STATE(204), + [sym_note] = STATE(204), + [sym__symbol_fallback] = STATE(204), + [aux_sym__text] = STATE(149), + [aux_sym__inline_repeat1] = STATE(118), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(51), + [anon_sym__] = ACTIONS(54), + [anon_sym_LBRACE_STAR] = ACTIONS(57), + [anon_sym_STAR] = ACTIONS(60), + [anon_sym_BSLASH] = ACTIONS(63), + [sym_quotation_marks] = ACTIONS(66), + [sym_ellipsis] = ACTIONS(66), + [sym_em_dash] = ACTIONS(66), + [sym_en_dash] = ACTIONS(69), + [sym_backslash_escape] = ACTIONS(69), + [anon_sym_LT] = ACTIONS(72), + [anon_sym_LBRACE_EQ] = ACTIONS(75), + [anon_sym_LBRACE_PLUS] = ACTIONS(78), + [anon_sym_LBRACE_DASH] = ACTIONS(81), + [sym_symbol] = ACTIONS(66), + [anon_sym_LBRACE_CARET] = ACTIONS(86), + [anon_sym_CARET] = ACTIONS(86), + [anon_sym_LBRACE_TILDE] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(89), + [anon_sym_LBRACK_CARET] = ACTIONS(92), + [anon_sym_RBRACK] = ACTIONS(516), + [anon_sym_BANG_LBRACK] = ACTIONS(97), + [anon_sym_LBRACK] = ACTIONS(100), + [anon_sym_LBRACE2] = ACTIONS(69), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_TODO] = ACTIONS(106), + [anon_sym_WIP] = ACTIONS(106), + [anon_sym_NOTE] = ACTIONS(109), + [anon_sym_INFO] = ACTIONS(109), + [anon_sym_XXX] = ACTIONS(109), + [sym_fixme] = ACTIONS(66), + [anon_sym_PIPE] = ACTIONS(66), + [sym__whitespace1] = ACTIONS(112), + [sym__newline] = ACTIONS(115), + [aux_sym__text_token1] = ACTIONS(118), + [sym__verbatim_begin] = ACTIONS(121), + }, + [49] = { + [sym__inline] = STATE(959), + [sym__element] = STATE(118), + [sym_emphasis] = STATE(204), + [sym_emphasis_begin] = STATE(1017), + [sym_strong] = STATE(204), + [sym_strong_begin] = STATE(114), + [sym__hard_line_break] = STATE(204), + [sym_hard_line_break] = STATE(204), + [sym__smart_punctuation] = STATE(204), + [sym_autolink] = STATE(204), + [sym_highlighted] = STATE(204), + [sym_insert] = STATE(204), + [sym_delete] = STATE(204), + [sym_superscript] = STATE(204), + [sym_subscript] = STATE(204), + [sym_footnote_reference] = STATE(204), + [sym__image] = STATE(204), + [sym_full_reference_image] = STATE(204), + [sym_collapsed_reference_image] = STATE(204), + [sym_inline_image] = STATE(204), + [sym__image_description] = STATE(714), + [sym__link] = STATE(204), + [sym_full_reference_link] = STATE(204), + [sym_collapsed_reference_link] = STATE(204), + [sym_inline_link] = STATE(204), + [sym_link_text] = STATE(715), + [sym__comment_with_spaces] = STATE(204), + [sym_span] = STATE(204), + [sym_raw_inline] = STATE(204), + [sym_math] = STATE(204), + [sym_verbatim] = STATE(204), + [sym__todo_highlights] = STATE(204), + [sym_todo] = STATE(204), + [sym_note] = STATE(204), + [sym__symbol_fallback] = STATE(204), + [aux_sym__text] = STATE(149), + [aux_sym__inline_repeat1] = STATE(118), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(51), + [anon_sym__] = ACTIONS(54), + [anon_sym_LBRACE_STAR] = ACTIONS(57), + [anon_sym_STAR] = ACTIONS(60), + [anon_sym_BSLASH] = ACTIONS(63), + [sym_quotation_marks] = ACTIONS(66), + [sym_ellipsis] = ACTIONS(66), + [sym_em_dash] = ACTIONS(66), + [sym_en_dash] = ACTIONS(69), + [sym_backslash_escape] = ACTIONS(69), + [anon_sym_LT] = ACTIONS(72), + [anon_sym_LBRACE_EQ] = ACTIONS(75), + [anon_sym_LBRACE_PLUS] = ACTIONS(78), + [anon_sym_LBRACE_DASH] = ACTIONS(81), + [sym_symbol] = ACTIONS(66), + [anon_sym_LBRACE_CARET] = ACTIONS(86), + [anon_sym_CARET] = ACTIONS(86), + [anon_sym_LBRACE_TILDE] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(89), + [anon_sym_LBRACK_CARET] = ACTIONS(92), + [anon_sym_RBRACK] = ACTIONS(84), + [anon_sym_BANG_LBRACK] = ACTIONS(97), + [anon_sym_LBRACK] = ACTIONS(100), + [anon_sym_LBRACE2] = ACTIONS(69), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_TODO] = ACTIONS(106), + [anon_sym_WIP] = ACTIONS(106), + [anon_sym_NOTE] = ACTIONS(109), + [anon_sym_INFO] = ACTIONS(109), + [anon_sym_XXX] = ACTIONS(109), + [sym_fixme] = ACTIONS(66), + [anon_sym_PIPE] = ACTIONS(66), + [sym__whitespace1] = ACTIONS(112), + [sym__newline] = ACTIONS(115), + [aux_sym__text_token1] = ACTIONS(118), + [sym__verbatim_begin] = ACTIONS(121), + }, + [50] = { + [sym__inline] = STATE(917), + [sym__element] = STATE(118), + [sym_emphasis] = STATE(204), + [sym_emphasis_begin] = STATE(1017), + [sym_strong] = STATE(204), + [sym_strong_begin] = STATE(114), + [sym__hard_line_break] = STATE(204), + [sym_hard_line_break] = STATE(204), + [sym__smart_punctuation] = STATE(204), + [sym_autolink] = STATE(204), + [sym_highlighted] = STATE(204), + [sym_insert] = STATE(204), + [sym_delete] = STATE(204), + [sym_superscript] = STATE(204), + [sym_subscript] = STATE(204), + [sym_footnote_reference] = STATE(204), + [sym__image] = STATE(204), + [sym_full_reference_image] = STATE(204), + [sym_collapsed_reference_image] = STATE(204), + [sym_inline_image] = STATE(204), + [sym__image_description] = STATE(714), + [sym__link] = STATE(204), + [sym_full_reference_link] = STATE(204), + [sym_collapsed_reference_link] = STATE(204), + [sym_inline_link] = STATE(204), + [sym_link_text] = STATE(715), + [sym__comment_with_spaces] = STATE(204), + [sym_span] = STATE(204), + [sym_raw_inline] = STATE(204), + [sym_math] = STATE(204), + [sym_verbatim] = STATE(204), + [sym__todo_highlights] = STATE(204), + [sym_todo] = STATE(204), + [sym_note] = STATE(204), + [sym__symbol_fallback] = STATE(204), + [aux_sym__text] = STATE(149), + [aux_sym__inline_repeat1] = STATE(118), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(51), + [anon_sym__] = ACTIONS(54), + [anon_sym_LBRACE_STAR] = ACTIONS(57), + [anon_sym_STAR] = ACTIONS(60), + [anon_sym_BSLASH] = ACTIONS(63), + [sym_quotation_marks] = ACTIONS(66), + [sym_ellipsis] = ACTIONS(66), + [sym_em_dash] = ACTIONS(66), + [sym_en_dash] = ACTIONS(69), + [sym_backslash_escape] = ACTIONS(69), + [anon_sym_LT] = ACTIONS(72), + [anon_sym_LBRACE_EQ] = ACTIONS(75), + [anon_sym_LBRACE_PLUS] = ACTIONS(78), + [anon_sym_LBRACE_DASH] = ACTIONS(81), + [sym_symbol] = ACTIONS(66), + [anon_sym_LBRACE_CARET] = ACTIONS(86), + [anon_sym_CARET] = ACTIONS(86), + [anon_sym_LBRACE_TILDE] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(89), + [anon_sym_LBRACK_CARET] = ACTIONS(92), + [anon_sym_RBRACK] = ACTIONS(95), + [anon_sym_BANG_LBRACK] = ACTIONS(97), + [anon_sym_LBRACK] = ACTIONS(100), + [anon_sym_LBRACE2] = ACTIONS(69), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_TODO] = ACTIONS(106), + [anon_sym_WIP] = ACTIONS(106), + [anon_sym_NOTE] = ACTIONS(109), + [anon_sym_INFO] = ACTIONS(109), + [anon_sym_XXX] = ACTIONS(109), + [sym_fixme] = ACTIONS(66), + [anon_sym_PIPE] = ACTIONS(66), + [sym__whitespace1] = ACTIONS(112), + [sym__newline] = ACTIONS(115), + [aux_sym__text_token1] = ACTIONS(118), + [sym__verbatim_begin] = ACTIONS(121), + }, + [51] = { + [sym__inline] = STATE(811), + [sym__element] = STATE(95), + [sym_emphasis] = STATE(215), + [sym_emphasis_begin] = STATE(1012), + [sym_strong] = STATE(215), + [sym_strong_begin] = STATE(128), + [sym__hard_line_break] = STATE(215), + [sym_hard_line_break] = STATE(215), + [sym__smart_punctuation] = STATE(215), + [sym_autolink] = STATE(215), + [sym_highlighted] = STATE(215), + [sym_insert] = STATE(215), + [sym_delete] = STATE(215), + [sym_superscript] = STATE(215), + [sym_subscript] = STATE(215), + [sym_footnote_reference] = STATE(215), + [sym__image] = STATE(215), + [sym_full_reference_image] = STATE(215), + [sym_collapsed_reference_image] = STATE(215), + [sym_inline_image] = STATE(215), + [sym__image_description] = STATE(696), + [sym__link] = STATE(215), + [sym_full_reference_link] = STATE(215), + [sym_collapsed_reference_link] = STATE(215), + [sym_inline_link] = STATE(215), + [sym_link_text] = STATE(705), + [sym__comment_with_spaces] = STATE(215), + [sym_span] = STATE(215), + [sym_raw_inline] = STATE(215), + [sym_math] = STATE(215), + [sym_verbatim] = STATE(215), + [sym__todo_highlights] = STATE(215), + [sym_todo] = STATE(215), + [sym_note] = STATE(215), + [sym__symbol_fallback] = STATE(215), + [aux_sym__text] = STATE(141), + [aux_sym__inline_repeat1] = STATE(95), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(141), + [anon_sym__] = ACTIONS(144), + [anon_sym_LBRACE_STAR] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(519), + [aux_sym_strong_end_token1] = ACTIONS(84), + [anon_sym_BSLASH] = ACTIONS(153), + [sym_quotation_marks] = ACTIONS(156), + [sym_ellipsis] = ACTIONS(156), + [sym_em_dash] = ACTIONS(156), + [sym_en_dash] = ACTIONS(159), + [sym_backslash_escape] = ACTIONS(159), + [anon_sym_LT] = ACTIONS(162), + [anon_sym_LBRACE_EQ] = ACTIONS(165), + [anon_sym_LBRACE_PLUS] = ACTIONS(168), + [anon_sym_LBRACE_DASH] = ACTIONS(171), + [sym_symbol] = ACTIONS(156), + [anon_sym_LBRACE_CARET] = ACTIONS(174), + [anon_sym_CARET] = ACTIONS(174), + [anon_sym_LBRACE_TILDE] = ACTIONS(177), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_LBRACK_CARET] = ACTIONS(180), + [anon_sym_BANG_LBRACK] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(186), + [anon_sym_LBRACE2] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(189), + [anon_sym_TODO] = ACTIONS(192), + [anon_sym_WIP] = ACTIONS(192), + [anon_sym_NOTE] = ACTIONS(195), + [anon_sym_INFO] = ACTIONS(195), + [anon_sym_XXX] = ACTIONS(195), + [sym_fixme] = ACTIONS(156), + [anon_sym_PIPE] = ACTIONS(156), + [sym__whitespace1] = ACTIONS(522), + [sym__newline] = ACTIONS(201), + [aux_sym__text_token1] = ACTIONS(204), + [sym__verbatim_begin] = ACTIONS(207), + }, + [52] = { + [sym__inline] = STATE(812), + [sym__element] = STATE(87), + [sym_emphasis] = STATE(176), + [sym_emphasis_begin] = STATE(1013), + [sym_strong] = STATE(176), + [sym_strong_begin] = STATE(97), + [sym__hard_line_break] = STATE(176), + [sym_hard_line_break] = STATE(176), + [sym__smart_punctuation] = STATE(176), + [sym_autolink] = STATE(176), + [sym_highlighted] = STATE(176), + [sym_insert] = STATE(176), + [sym_delete] = STATE(176), + [sym_superscript] = STATE(176), + [sym_subscript] = STATE(176), + [sym_footnote_reference] = STATE(176), + [sym__image] = STATE(176), + [sym_full_reference_image] = STATE(176), + [sym_collapsed_reference_image] = STATE(176), + [sym_inline_image] = STATE(176), + [sym__image_description] = STATE(690), + [sym__link] = STATE(176), + [sym_full_reference_link] = STATE(176), + [sym_collapsed_reference_link] = STATE(176), + [sym_inline_link] = STATE(176), + [sym_link_text] = STATE(691), + [sym__comment_with_spaces] = STATE(176), + [sym_span] = STATE(176), + [sym_raw_inline] = STATE(176), + [sym_math] = STATE(176), + [sym_verbatim] = STATE(176), + [sym__todo_highlights] = STATE(176), + [sym_todo] = STATE(176), + [sym_note] = STATE(176), + [sym__symbol_fallback] = STATE(176), + [aux_sym__text] = STATE(155), + [aux_sym__inline_repeat1] = STATE(87), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(210), + [anon_sym__] = ACTIONS(213), + [anon_sym_LBRACE_STAR] = ACTIONS(216), + [anon_sym_STAR] = ACTIONS(525), + [aux_sym_strong_end_token1] = ACTIONS(84), + [anon_sym_BSLASH] = ACTIONS(222), + [sym_quotation_marks] = ACTIONS(225), + [sym_ellipsis] = ACTIONS(225), + [sym_em_dash] = ACTIONS(225), + [sym_en_dash] = ACTIONS(228), + [sym_backslash_escape] = ACTIONS(228), + [anon_sym_LT] = ACTIONS(231), + [anon_sym_LBRACE_EQ] = ACTIONS(234), + [anon_sym_LBRACE_PLUS] = ACTIONS(237), + [anon_sym_LBRACE_DASH] = ACTIONS(240), + [sym_symbol] = ACTIONS(225), + [anon_sym_LBRACE_CARET] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(243), + [anon_sym_LBRACE_TILDE] = ACTIONS(246), + [anon_sym_TILDE] = ACTIONS(246), + [anon_sym_LBRACK_CARET] = ACTIONS(249), + [anon_sym_BANG_LBRACK] = ACTIONS(252), + [anon_sym_LBRACK] = ACTIONS(255), + [anon_sym_LBRACE2] = ACTIONS(228), + [anon_sym_DOLLAR] = ACTIONS(258), + [anon_sym_TODO] = ACTIONS(261), + [anon_sym_WIP] = ACTIONS(261), + [anon_sym_NOTE] = ACTIONS(264), + [anon_sym_INFO] = ACTIONS(264), + [anon_sym_XXX] = ACTIONS(264), + [sym_fixme] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(225), + [sym__whitespace1] = ACTIONS(528), + [sym__newline] = ACTIONS(270), + [aux_sym__text_token1] = ACTIONS(273), + [sym__verbatim_begin] = ACTIONS(276), + }, + [53] = { + [sym__inline] = STATE(852), + [sym__element] = STATE(95), + [sym_emphasis] = STATE(215), + [sym_emphasis_begin] = STATE(1012), + [sym_strong] = STATE(215), + [sym_strong_begin] = STATE(128), + [sym__hard_line_break] = STATE(215), + [sym_hard_line_break] = STATE(215), + [sym__smart_punctuation] = STATE(215), + [sym_autolink] = STATE(215), + [sym_highlighted] = STATE(215), + [sym_insert] = STATE(215), + [sym_delete] = STATE(215), + [sym_superscript] = STATE(215), + [sym_subscript] = STATE(215), + [sym_footnote_reference] = STATE(215), + [sym__image] = STATE(215), + [sym_full_reference_image] = STATE(215), + [sym_collapsed_reference_image] = STATE(215), + [sym_inline_image] = STATE(215), + [sym__image_description] = STATE(696), + [sym__link] = STATE(215), + [sym_full_reference_link] = STATE(215), + [sym_collapsed_reference_link] = STATE(215), + [sym_inline_link] = STATE(215), + [sym_link_text] = STATE(705), + [sym__comment_with_spaces] = STATE(215), + [sym_span] = STATE(215), + [sym_raw_inline] = STATE(215), + [sym_math] = STATE(215), + [sym_verbatim] = STATE(215), + [sym__todo_highlights] = STATE(215), + [sym_todo] = STATE(215), + [sym_note] = STATE(215), + [sym__symbol_fallback] = STATE(215), + [aux_sym__text] = STATE(141), + [aux_sym__inline_repeat1] = STATE(95), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(141), + [anon_sym__] = ACTIONS(144), + [anon_sym_LBRACE_STAR] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(150), + [anon_sym_BSLASH] = ACTIONS(153), + [sym_quotation_marks] = ACTIONS(156), + [sym_ellipsis] = ACTIONS(156), + [sym_em_dash] = ACTIONS(156), + [sym_en_dash] = ACTIONS(159), + [sym_backslash_escape] = ACTIONS(159), + [anon_sym_LT] = ACTIONS(162), + [anon_sym_LBRACE_EQ] = ACTIONS(165), + [anon_sym_LBRACE_PLUS] = ACTIONS(168), + [anon_sym_LBRACE_DASH] = ACTIONS(171), + [sym_symbol] = ACTIONS(156), + [anon_sym_LBRACE_CARET] = ACTIONS(174), + [anon_sym_CARET] = ACTIONS(174), + [anon_sym_LBRACE_TILDE] = ACTIONS(177), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_LBRACK_CARET] = ACTIONS(180), + [anon_sym_BANG_LBRACK] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(186), + [anon_sym_RBRACK2] = ACTIONS(84), + [anon_sym_LBRACE2] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(189), + [anon_sym_TODO] = ACTIONS(192), + [anon_sym_WIP] = ACTIONS(192), + [anon_sym_NOTE] = ACTIONS(195), + [anon_sym_INFO] = ACTIONS(195), + [anon_sym_XXX] = ACTIONS(195), + [sym_fixme] = ACTIONS(156), + [anon_sym_PIPE] = ACTIONS(156), + [sym__whitespace1] = ACTIONS(198), + [sym__newline] = ACTIONS(201), + [aux_sym__text_token1] = ACTIONS(204), + [sym__verbatim_begin] = ACTIONS(207), + }, + [54] = { + [sym__inline] = STATE(968), + [sym__element] = STATE(118), + [sym_emphasis] = STATE(204), + [sym_emphasis_begin] = STATE(1017), + [sym_strong] = STATE(204), + [sym_strong_begin] = STATE(114), + [sym__hard_line_break] = STATE(204), + [sym_hard_line_break] = STATE(204), + [sym__smart_punctuation] = STATE(204), + [sym_autolink] = STATE(204), + [sym_highlighted] = STATE(204), + [sym_insert] = STATE(204), + [sym_delete] = STATE(204), + [sym_superscript] = STATE(204), + [sym_subscript] = STATE(204), + [sym_footnote_reference] = STATE(204), + [sym__image] = STATE(204), + [sym_full_reference_image] = STATE(204), + [sym_collapsed_reference_image] = STATE(204), + [sym_inline_image] = STATE(204), + [sym__image_description] = STATE(714), + [sym__link] = STATE(204), + [sym_full_reference_link] = STATE(204), + [sym_collapsed_reference_link] = STATE(204), + [sym_inline_link] = STATE(204), + [sym_link_text] = STATE(715), + [sym__comment_with_spaces] = STATE(204), + [sym_span] = STATE(204), + [sym_raw_inline] = STATE(204), + [sym_math] = STATE(204), + [sym_verbatim] = STATE(204), + [sym__todo_highlights] = STATE(204), + [sym_todo] = STATE(204), + [sym_note] = STATE(204), + [sym__symbol_fallback] = STATE(204), + [aux_sym__text] = STATE(149), + [aux_sym__inline_repeat1] = STATE(118), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(51), + [anon_sym__] = ACTIONS(54), + [anon_sym_LBRACE_STAR] = ACTIONS(57), + [anon_sym_STAR] = ACTIONS(135), + [aux_sym_strong_end_token1] = ACTIONS(84), + [anon_sym_BSLASH] = ACTIONS(63), + [sym_quotation_marks] = ACTIONS(66), + [sym_ellipsis] = ACTIONS(66), + [sym_em_dash] = ACTIONS(66), + [sym_en_dash] = ACTIONS(69), + [sym_backslash_escape] = ACTIONS(69), + [anon_sym_LT] = ACTIONS(72), + [anon_sym_LBRACE_EQ] = ACTIONS(75), + [anon_sym_LBRACE_PLUS] = ACTIONS(78), + [anon_sym_LBRACE_DASH] = ACTIONS(81), + [sym_symbol] = ACTIONS(66), + [anon_sym_LBRACE_CARET] = ACTIONS(86), + [anon_sym_CARET] = ACTIONS(86), + [anon_sym_LBRACE_TILDE] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(89), + [anon_sym_LBRACK_CARET] = ACTIONS(92), + [anon_sym_BANG_LBRACK] = ACTIONS(97), + [anon_sym_LBRACK] = ACTIONS(100), + [anon_sym_LBRACE2] = ACTIONS(69), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_TODO] = ACTIONS(106), + [anon_sym_WIP] = ACTIONS(106), + [anon_sym_NOTE] = ACTIONS(109), + [anon_sym_INFO] = ACTIONS(109), + [anon_sym_XXX] = ACTIONS(109), + [sym_fixme] = ACTIONS(66), + [anon_sym_PIPE] = ACTIONS(66), + [sym__whitespace1] = ACTIONS(132), + [sym__newline] = ACTIONS(115), + [aux_sym__text_token1] = ACTIONS(118), + [sym__verbatim_begin] = ACTIONS(121), + }, + [55] = { + [sym__inline] = STATE(779), + [sym__element] = STATE(79), + [sym_emphasis] = STATE(172), + [sym_emphasis_begin] = STATE(1015), + [sym_strong] = STATE(172), + [sym_strong_begin] = STATE(125), + [sym__hard_line_break] = STATE(172), + [sym_hard_line_break] = STATE(172), + [sym__smart_punctuation] = STATE(172), + [sym_autolink] = STATE(172), + [sym_highlighted] = STATE(172), + [sym_insert] = STATE(172), + [sym_delete] = STATE(172), + [sym_superscript] = STATE(172), + [sym_subscript] = STATE(172), + [sym_footnote_reference] = STATE(172), + [sym__image] = STATE(172), + [sym_full_reference_image] = STATE(172), + [sym_collapsed_reference_image] = STATE(172), + [sym_inline_image] = STATE(172), + [sym__image_description] = STATE(711), + [sym__link] = STATE(172), + [sym_full_reference_link] = STATE(172), + [sym_collapsed_reference_link] = STATE(172), + [sym_inline_link] = STATE(172), + [sym_link_text] = STATE(712), + [sym__comment_with_spaces] = STATE(172), + [sym_span] = STATE(172), + [sym_raw_inline] = STATE(172), + [sym_math] = STATE(172), + [sym_verbatim] = STATE(172), + [sym__todo_highlights] = STATE(172), + [sym_todo] = STATE(172), + [sym_note] = STATE(172), + [sym__symbol_fallback] = STATE(172), + [aux_sym__text] = STATE(170), + [aux_sym__inline_repeat1] = STATE(79), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(354), + [anon_sym__] = ACTIONS(357), + [anon_sym_LBRACE_STAR] = ACTIONS(360), + [anon_sym_STAR] = ACTIONS(363), + [anon_sym_BSLASH] = ACTIONS(366), + [sym_quotation_marks] = ACTIONS(369), + [sym_ellipsis] = ACTIONS(369), + [sym_em_dash] = ACTIONS(369), + [sym_en_dash] = ACTIONS(372), + [sym_backslash_escape] = ACTIONS(372), + [anon_sym_LT] = ACTIONS(375), + [anon_sym_LBRACE_EQ] = ACTIONS(378), + [anon_sym_LBRACE_PLUS] = ACTIONS(381), + [anon_sym_LBRACE_DASH] = ACTIONS(384), + [anon_sym_DASH_RBRACE] = ACTIONS(84), + [sym_symbol] = ACTIONS(369), + [anon_sym_LBRACE_CARET] = ACTIONS(387), + [anon_sym_CARET] = ACTIONS(387), + [anon_sym_LBRACE_TILDE] = ACTIONS(390), + [anon_sym_TILDE] = ACTIONS(390), + [anon_sym_LBRACK_CARET] = ACTIONS(393), + [anon_sym_BANG_LBRACK] = ACTIONS(396), + [anon_sym_LBRACK] = ACTIONS(399), + [anon_sym_LBRACE2] = ACTIONS(372), + [anon_sym_DOLLAR] = ACTIONS(402), + [anon_sym_TODO] = ACTIONS(405), + [anon_sym_WIP] = ACTIONS(405), + [anon_sym_NOTE] = ACTIONS(408), + [anon_sym_INFO] = ACTIONS(408), + [anon_sym_XXX] = ACTIONS(408), + [sym_fixme] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(369), + [sym__whitespace1] = ACTIONS(411), + [sym__newline] = ACTIONS(414), + [aux_sym__text_token1] = ACTIONS(417), + [sym__verbatim_begin] = ACTIONS(420), + }, + [56] = { + [sym__inline] = STATE(782), + [sym__element] = STATE(117), [sym_emphasis] = STATE(182), - [sym_emphasis_begin] = STATE(898), + [sym_emphasis_begin] = STATE(1016), [sym_strong] = STATE(182), - [sym_strong_begin] = STATE(104), + [sym_strong_begin] = STATE(122), [sym__hard_line_break] = STATE(182), [sym_hard_line_break] = STATE(182), [sym__smart_punctuation] = STATE(182), @@ -8344,12 +12633,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_full_reference_image] = STATE(182), [sym_collapsed_reference_image] = STATE(182), [sym_inline_image] = STATE(182), - [sym__image_description] = STATE(610), + [sym__image_description] = STATE(692), [sym__link] = STATE(182), [sym_full_reference_link] = STATE(182), [sym_collapsed_reference_link] = STATE(182), [sym_inline_link] = STATE(182), - [sym_link_text] = STATE(608), + [sym_link_text] = STATE(689), [sym__comment_with_spaces] = STATE(182), [sym_span] = STATE(182), [sym_raw_inline] = STATE(182), @@ -8359,662 +12648,585 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(182), [sym_note] = STATE(182), [sym__symbol_fallback] = STATE(182), - [aux_sym__text] = STATE(144), - [aux_sym__inline_repeat1] = STATE(97), - [ts_builtin_sym_end] = ACTIONS(79), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_] = ACTIONS(49), - [anon_sym__] = ACTIONS(52), - [anon_sym_LBRACE_STAR] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(58), - [anon_sym_BSLASH] = ACTIONS(61), - [sym_quotation_marks] = ACTIONS(52), - [sym_ellipsis] = ACTIONS(52), - [sym_em_dash] = ACTIONS(52), - [sym_en_dash] = ACTIONS(64), - [sym_backslash_escape] = ACTIONS(64), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_LBRACE_EQ] = ACTIONS(70), - [anon_sym_LBRACE_PLUS] = ACTIONS(73), - [anon_sym_LBRACE_DASH] = ACTIONS(76), - [sym_symbol] = ACTIONS(52), - [anon_sym_LBRACE_CARET] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(81), - [anon_sym_LBRACE_TILDE] = ACTIONS(84), - [anon_sym_TILDE] = ACTIONS(84), - [anon_sym_LBRACK_CARET] = ACTIONS(87), - [anon_sym_RBRACK] = ACTIONS(90), - [anon_sym_BANG_LBRACK] = ACTIONS(92), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LBRACE2] = ACTIONS(64), - [anon_sym_DOLLAR] = ACTIONS(98), - [anon_sym_TODO] = ACTIONS(101), - [anon_sym_WIP] = ACTIONS(101), - [anon_sym_NOTE] = ACTIONS(104), - [anon_sym_INFO] = ACTIONS(104), - [anon_sym_XXX] = ACTIONS(104), - [sym_fixme] = ACTIONS(52), - [anon_sym_PIPE] = ACTIONS(52), - [sym__whitespace1] = ACTIONS(107), - [sym__newline] = ACTIONS(110), - [aux_sym__text_token1] = ACTIONS(113), - [sym__verbatim_begin] = ACTIONS(116), + [aux_sym__text] = STATE(153), + [aux_sym__inline_repeat1] = STATE(117), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(423), + [anon_sym__] = ACTIONS(531), + [aux_sym_emphasis_end_token1] = ACTIONS(84), + [anon_sym_LBRACE_STAR] = ACTIONS(429), + [anon_sym_STAR] = ACTIONS(432), + [anon_sym_BSLASH] = ACTIONS(435), + [sym_quotation_marks] = ACTIONS(438), + [sym_ellipsis] = ACTIONS(438), + [sym_em_dash] = ACTIONS(438), + [sym_en_dash] = ACTIONS(441), + [sym_backslash_escape] = ACTIONS(441), + [anon_sym_LT] = ACTIONS(444), + [anon_sym_LBRACE_EQ] = ACTIONS(447), + [anon_sym_LBRACE_PLUS] = ACTIONS(450), + [anon_sym_LBRACE_DASH] = ACTIONS(453), + [sym_symbol] = ACTIONS(438), + [anon_sym_LBRACE_CARET] = ACTIONS(456), + [anon_sym_CARET] = ACTIONS(456), + [anon_sym_LBRACE_TILDE] = ACTIONS(459), + [anon_sym_TILDE] = ACTIONS(459), + [anon_sym_LBRACK_CARET] = ACTIONS(462), + [anon_sym_BANG_LBRACK] = ACTIONS(465), + [anon_sym_LBRACK] = ACTIONS(468), + [anon_sym_LBRACE2] = ACTIONS(441), + [anon_sym_DOLLAR] = ACTIONS(471), + [anon_sym_TODO] = ACTIONS(474), + [anon_sym_WIP] = ACTIONS(474), + [anon_sym_NOTE] = ACTIONS(477), + [anon_sym_INFO] = ACTIONS(477), + [anon_sym_XXX] = ACTIONS(477), + [sym_fixme] = ACTIONS(438), + [anon_sym_PIPE] = ACTIONS(438), + [sym__whitespace1] = ACTIONS(534), + [sym__newline] = ACTIONS(483), + [aux_sym__text_token1] = ACTIONS(486), + [sym__verbatim_begin] = ACTIONS(489), }, - [10] = { - [sym__inline] = STATE(858), - [sym__element] = STATE(73), - [sym_emphasis] = STATE(180), - [sym_emphasis_begin] = STATE(895), - [sym_strong] = STATE(180), - [sym_strong_begin] = STATE(114), - [sym__hard_line_break] = STATE(180), - [sym_hard_line_break] = STATE(180), - [sym__smart_punctuation] = STATE(180), - [sym_autolink] = STATE(180), - [sym_highlighted] = STATE(180), - [sym_insert] = STATE(180), - [sym_delete] = STATE(180), - [sym_superscript] = STATE(180), - [sym_subscript] = STATE(180), - [sym_footnote_reference] = STATE(180), - [sym__image] = STATE(180), - [sym_full_reference_image] = STATE(180), - [sym_collapsed_reference_image] = STATE(180), - [sym_inline_image] = STATE(180), - [sym__image_description] = STATE(632), - [sym__link] = STATE(180), - [sym_full_reference_link] = STATE(180), - [sym_collapsed_reference_link] = STATE(180), - [sym_inline_link] = STATE(180), - [sym_link_text] = STATE(633), - [sym__comment_with_spaces] = STATE(180), - [sym_span] = STATE(180), - [sym_raw_inline] = STATE(180), - [sym_math] = STATE(180), - [sym_verbatim] = STATE(180), - [sym__todo_highlights] = STATE(180), - [sym_todo] = STATE(180), - [sym_note] = STATE(180), - [sym__symbol_fallback] = STATE(180), - [aux_sym__text] = STATE(132), - [aux_sym__inline_repeat1] = STATE(73), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_] = ACTIONS(133), - [anon_sym__] = ACTIONS(136), - [anon_sym_LBRACE_STAR] = ACTIONS(139), - [anon_sym_STAR] = ACTIONS(142), - [anon_sym_BSLASH] = ACTIONS(145), - [sym_quotation_marks] = ACTIONS(136), - [sym_ellipsis] = ACTIONS(136), - [sym_em_dash] = ACTIONS(136), - [sym_en_dash] = ACTIONS(148), - [sym_backslash_escape] = ACTIONS(148), - [anon_sym_LT] = ACTIONS(151), - [anon_sym_LBRACE_EQ] = ACTIONS(154), - [anon_sym_LBRACE_PLUS] = ACTIONS(157), - [anon_sym_PLUS_RBRACE] = ACTIONS(79), - [anon_sym_LBRACE_DASH] = ACTIONS(160), - [sym_symbol] = ACTIONS(136), - [anon_sym_LBRACE_CARET] = ACTIONS(163), - [anon_sym_CARET] = ACTIONS(163), - [anon_sym_LBRACE_TILDE] = ACTIONS(166), - [anon_sym_TILDE] = ACTIONS(166), - [anon_sym_LBRACK_CARET] = ACTIONS(169), - [anon_sym_BANG_LBRACK] = ACTIONS(172), - [anon_sym_LBRACK] = ACTIONS(175), - [anon_sym_LBRACE2] = ACTIONS(148), - [anon_sym_DOLLAR] = ACTIONS(178), - [anon_sym_TODO] = ACTIONS(181), - [anon_sym_WIP] = ACTIONS(181), - [anon_sym_NOTE] = ACTIONS(184), - [anon_sym_INFO] = ACTIONS(184), - [anon_sym_XXX] = ACTIONS(184), - [sym_fixme] = ACTIONS(136), - [anon_sym_PIPE] = ACTIONS(136), - [sym__whitespace1] = ACTIONS(187), - [sym__newline] = ACTIONS(190), - [aux_sym__text_token1] = ACTIONS(193), - [sym__verbatim_begin] = ACTIONS(196), + [57] = { + [sym__inline] = STATE(783), + [sym__element] = STATE(79), + [sym_emphasis] = STATE(172), + [sym_emphasis_begin] = STATE(1015), + [sym_strong] = STATE(172), + [sym_strong_begin] = STATE(125), + [sym__hard_line_break] = STATE(172), + [sym_hard_line_break] = STATE(172), + [sym__smart_punctuation] = STATE(172), + [sym_autolink] = STATE(172), + [sym_highlighted] = STATE(172), + [sym_insert] = STATE(172), + [sym_delete] = STATE(172), + [sym_superscript] = STATE(172), + [sym_subscript] = STATE(172), + [sym_footnote_reference] = STATE(172), + [sym__image] = STATE(172), + [sym_full_reference_image] = STATE(172), + [sym_collapsed_reference_image] = STATE(172), + [sym_inline_image] = STATE(172), + [sym__image_description] = STATE(711), + [sym__link] = STATE(172), + [sym_full_reference_link] = STATE(172), + [sym_collapsed_reference_link] = STATE(172), + [sym_inline_link] = STATE(172), + [sym_link_text] = STATE(712), + [sym__comment_with_spaces] = STATE(172), + [sym_span] = STATE(172), + [sym_raw_inline] = STATE(172), + [sym_math] = STATE(172), + [sym_verbatim] = STATE(172), + [sym__todo_highlights] = STATE(172), + [sym_todo] = STATE(172), + [sym_note] = STATE(172), + [sym__symbol_fallback] = STATE(172), + [aux_sym__text] = STATE(170), + [aux_sym__inline_repeat1] = STATE(79), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(354), + [anon_sym__] = ACTIONS(537), + [aux_sym_emphasis_end_token1] = ACTIONS(84), + [anon_sym_LBRACE_STAR] = ACTIONS(360), + [anon_sym_STAR] = ACTIONS(363), + [anon_sym_BSLASH] = ACTIONS(366), + [sym_quotation_marks] = ACTIONS(369), + [sym_ellipsis] = ACTIONS(369), + [sym_em_dash] = ACTIONS(369), + [sym_en_dash] = ACTIONS(372), + [sym_backslash_escape] = ACTIONS(372), + [anon_sym_LT] = ACTIONS(375), + [anon_sym_LBRACE_EQ] = ACTIONS(378), + [anon_sym_LBRACE_PLUS] = ACTIONS(381), + [anon_sym_LBRACE_DASH] = ACTIONS(384), + [sym_symbol] = ACTIONS(369), + [anon_sym_LBRACE_CARET] = ACTIONS(387), + [anon_sym_CARET] = ACTIONS(387), + [anon_sym_LBRACE_TILDE] = ACTIONS(390), + [anon_sym_TILDE] = ACTIONS(390), + [anon_sym_LBRACK_CARET] = ACTIONS(393), + [anon_sym_BANG_LBRACK] = ACTIONS(396), + [anon_sym_LBRACK] = ACTIONS(399), + [anon_sym_LBRACE2] = ACTIONS(372), + [anon_sym_DOLLAR] = ACTIONS(402), + [anon_sym_TODO] = ACTIONS(405), + [anon_sym_WIP] = ACTIONS(405), + [anon_sym_NOTE] = ACTIONS(408), + [anon_sym_INFO] = ACTIONS(408), + [anon_sym_XXX] = ACTIONS(408), + [sym_fixme] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(369), + [sym__whitespace1] = ACTIONS(540), + [sym__newline] = ACTIONS(414), + [aux_sym__text_token1] = ACTIONS(417), + [sym__verbatim_begin] = ACTIONS(420), }, - [11] = { - [sym__inline] = STATE(771), - [sym__element] = STATE(78), - [sym_emphasis] = STATE(167), - [sym_emphasis_begin] = STATE(894), - [sym_strong] = STATE(167), - [sym_strong_begin] = STATE(117), - [sym__hard_line_break] = STATE(167), - [sym_hard_line_break] = STATE(167), - [sym__smart_punctuation] = STATE(167), - [sym_autolink] = STATE(167), - [sym_highlighted] = STATE(167), - [sym_insert] = STATE(167), - [sym_delete] = STATE(167), - [sym_superscript] = STATE(167), - [sym_subscript] = STATE(167), - [sym_footnote_reference] = STATE(167), - [sym__image] = STATE(167), - [sym_full_reference_image] = STATE(167), - [sym_collapsed_reference_image] = STATE(167), - [sym_inline_image] = STATE(167), - [sym__image_description] = STATE(613), - [sym__link] = STATE(167), - [sym_full_reference_link] = STATE(167), - [sym_collapsed_reference_link] = STATE(167), - [sym_inline_link] = STATE(167), - [sym_link_text] = STATE(614), - [sym__comment_with_spaces] = STATE(167), - [sym_span] = STATE(167), - [sym_raw_inline] = STATE(167), - [sym_math] = STATE(167), - [sym_verbatim] = STATE(167), - [sym__todo_highlights] = STATE(167), - [sym_todo] = STATE(167), - [sym_note] = STATE(167), - [sym__symbol_fallback] = STATE(167), - [aux_sym__text] = STATE(130), - [aux_sym__inline_repeat1] = STATE(78), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_] = ACTIONS(199), - [anon_sym__] = ACTIONS(202), - [anon_sym_LBRACE_STAR] = ACTIONS(205), - [anon_sym_STAR] = ACTIONS(208), - [anon_sym_BSLASH] = ACTIONS(211), - [sym_quotation_marks] = ACTIONS(202), - [sym_ellipsis] = ACTIONS(202), - [sym_em_dash] = ACTIONS(202), - [sym_en_dash] = ACTIONS(214), - [sym_backslash_escape] = ACTIONS(214), - [anon_sym_LT] = ACTIONS(217), - [anon_sym_LBRACE_EQ] = ACTIONS(220), - [anon_sym_EQ_RBRACE] = ACTIONS(79), - [anon_sym_LBRACE_PLUS] = ACTIONS(223), - [anon_sym_LBRACE_DASH] = ACTIONS(226), - [sym_symbol] = ACTIONS(202), - [anon_sym_LBRACE_CARET] = ACTIONS(229), - [anon_sym_CARET] = ACTIONS(229), - [anon_sym_LBRACE_TILDE] = ACTIONS(232), - [anon_sym_TILDE] = ACTIONS(232), - [anon_sym_LBRACK_CARET] = ACTIONS(235), - [anon_sym_BANG_LBRACK] = ACTIONS(238), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_LBRACE2] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(244), - [anon_sym_TODO] = ACTIONS(247), - [anon_sym_WIP] = ACTIONS(247), - [anon_sym_NOTE] = ACTIONS(250), - [anon_sym_INFO] = ACTIONS(250), - [anon_sym_XXX] = ACTIONS(250), - [sym_fixme] = ACTIONS(202), - [anon_sym_PIPE] = ACTIONS(202), - [sym__whitespace1] = ACTIONS(253), - [sym__newline] = ACTIONS(256), - [aux_sym__text_token1] = ACTIONS(259), - [sym__verbatim_begin] = ACTIONS(262), + [58] = { + [sym__inline] = STATE(831), + [sym__element] = STATE(83), + [sym_emphasis] = STATE(211), + [sym_emphasis_begin] = STATE(1014), + [sym_strong] = STATE(211), + [sym_strong_begin] = STATE(121), + [sym__hard_line_break] = STATE(211), + [sym_hard_line_break] = STATE(211), + [sym__smart_punctuation] = STATE(211), + [sym_autolink] = STATE(211), + [sym_highlighted] = STATE(211), + [sym_insert] = STATE(211), + [sym_delete] = STATE(211), + [sym_superscript] = STATE(211), + [sym_subscript] = STATE(211), + [sym_footnote_reference] = STATE(211), + [sym__image] = STATE(211), + [sym_full_reference_image] = STATE(211), + [sym_collapsed_reference_image] = STATE(211), + [sym_inline_image] = STATE(211), + [sym__image_description] = STATE(693), + [sym__link] = STATE(211), + [sym_full_reference_link] = STATE(211), + [sym_collapsed_reference_link] = STATE(211), + [sym_inline_link] = STATE(211), + [sym_link_text] = STATE(694), + [sym__comment_with_spaces] = STATE(211), + [sym_span] = STATE(211), + [sym_raw_inline] = STATE(211), + [sym_math] = STATE(211), + [sym_verbatim] = STATE(211), + [sym__todo_highlights] = STATE(211), + [sym_todo] = STATE(211), + [sym_note] = STATE(211), + [sym__symbol_fallback] = STATE(211), + [aux_sym__text] = STATE(137), + [aux_sym__inline_repeat1] = STATE(83), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(285), + [anon_sym__] = ACTIONS(543), + [aux_sym_emphasis_end_token1] = ACTIONS(84), + [anon_sym_LBRACE_STAR] = ACTIONS(291), + [anon_sym_STAR] = ACTIONS(294), + [anon_sym_BSLASH] = ACTIONS(297), + [sym_quotation_marks] = ACTIONS(300), + [sym_ellipsis] = ACTIONS(300), + [sym_em_dash] = ACTIONS(300), + [sym_en_dash] = ACTIONS(303), + [sym_backslash_escape] = ACTIONS(303), + [anon_sym_LT] = ACTIONS(306), + [anon_sym_LBRACE_EQ] = ACTIONS(309), + [anon_sym_LBRACE_PLUS] = ACTIONS(312), + [anon_sym_LBRACE_DASH] = ACTIONS(315), + [sym_symbol] = ACTIONS(300), + [anon_sym_LBRACE_CARET] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_LBRACE_TILDE] = ACTIONS(321), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_LBRACK_CARET] = ACTIONS(324), + [anon_sym_BANG_LBRACK] = ACTIONS(327), + [anon_sym_LBRACK] = ACTIONS(330), + [anon_sym_LBRACE2] = ACTIONS(303), + [anon_sym_DOLLAR] = ACTIONS(333), + [anon_sym_TODO] = ACTIONS(336), + [anon_sym_WIP] = ACTIONS(336), + [anon_sym_NOTE] = ACTIONS(339), + [anon_sym_INFO] = ACTIONS(339), + [anon_sym_XXX] = ACTIONS(339), + [sym_fixme] = ACTIONS(300), + [anon_sym_PIPE] = ACTIONS(300), + [sym__whitespace1] = ACTIONS(546), + [sym__newline] = ACTIONS(345), + [aux_sym__text_token1] = ACTIONS(348), + [sym__verbatim_begin] = ACTIONS(351), }, - [12] = { - [sym__inline] = STATE(835), - [sym__element] = STATE(107), - [sym_emphasis] = STATE(187), - [sym_emphasis_begin] = STATE(893), - [sym_strong] = STATE(187), - [sym_strong_begin] = STATE(119), - [sym__hard_line_break] = STATE(187), - [sym_hard_line_break] = STATE(187), - [sym__smart_punctuation] = STATE(187), - [sym_autolink] = STATE(187), - [sym_highlighted] = STATE(187), - [sym_insert] = STATE(187), - [sym_delete] = STATE(187), - [sym_superscript] = STATE(187), - [sym_subscript] = STATE(187), - [sym_footnote_reference] = STATE(187), - [sym__image] = STATE(187), - [sym_full_reference_image] = STATE(187), - [sym_collapsed_reference_image] = STATE(187), - [sym_inline_image] = STATE(187), - [sym__image_description] = STATE(616), - [sym__link] = STATE(187), - [sym_full_reference_link] = STATE(187), - [sym_collapsed_reference_link] = STATE(187), - [sym_inline_link] = STATE(187), - [sym_link_text] = STATE(634), - [sym__comment_with_spaces] = STATE(187), - [sym_span] = STATE(187), - [sym_raw_inline] = STATE(187), - [sym_math] = STATE(187), - [sym_verbatim] = STATE(187), - [sym__todo_highlights] = STATE(187), - [sym_todo] = STATE(187), - [sym_note] = STATE(187), - [sym__symbol_fallback] = STATE(187), - [aux_sym__text] = STATE(131), - [aux_sym__inline_repeat1] = STATE(107), - [ts_builtin_sym_end] = ACTIONS(79), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_] = ACTIONS(265), - [anon_sym__] = ACTIONS(268), - [anon_sym_LBRACE_STAR] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(274), - [anon_sym_BSLASH] = ACTIONS(277), - [sym_quotation_marks] = ACTIONS(268), - [sym_ellipsis] = ACTIONS(268), - [sym_em_dash] = ACTIONS(268), - [sym_en_dash] = ACTIONS(280), - [sym_backslash_escape] = ACTIONS(280), - [anon_sym_LT] = ACTIONS(283), - [anon_sym_LBRACE_EQ] = ACTIONS(286), - [anon_sym_LBRACE_PLUS] = ACTIONS(289), - [anon_sym_LBRACE_DASH] = ACTIONS(292), - [sym_symbol] = ACTIONS(268), - [anon_sym_LBRACE_CARET] = ACTIONS(295), - [anon_sym_CARET] = ACTIONS(295), - [anon_sym_LBRACE_TILDE] = ACTIONS(298), - [anon_sym_TILDE] = ACTIONS(298), - [anon_sym_LBRACK_CARET] = ACTIONS(301), - [anon_sym_BANG_LBRACK] = ACTIONS(304), - [anon_sym_LBRACK] = ACTIONS(307), - [anon_sym_LBRACE2] = ACTIONS(280), - [anon_sym_DOLLAR] = ACTIONS(310), - [anon_sym_TODO] = ACTIONS(313), - [anon_sym_WIP] = ACTIONS(313), - [anon_sym_NOTE] = ACTIONS(316), - [anon_sym_INFO] = ACTIONS(316), - [anon_sym_XXX] = ACTIONS(316), - [sym_fixme] = ACTIONS(268), - [anon_sym_PIPE] = ACTIONS(268), - [sym__whitespace1] = ACTIONS(319), - [sym__newline] = ACTIONS(322), - [aux_sym__text_token1] = ACTIONS(325), - [sym__verbatim_begin] = ACTIONS(328), + [59] = { + [sym__inline] = STATE(830), + [sym__element] = STATE(87), + [sym_emphasis] = STATE(176), + [sym_emphasis_begin] = STATE(1013), + [sym_strong] = STATE(176), + [sym_strong_begin] = STATE(97), + [sym__hard_line_break] = STATE(176), + [sym_hard_line_break] = STATE(176), + [sym__smart_punctuation] = STATE(176), + [sym_autolink] = STATE(176), + [sym_highlighted] = STATE(176), + [sym_insert] = STATE(176), + [sym_delete] = STATE(176), + [sym_superscript] = STATE(176), + [sym_subscript] = STATE(176), + [sym_footnote_reference] = STATE(176), + [sym__image] = STATE(176), + [sym_full_reference_image] = STATE(176), + [sym_collapsed_reference_image] = STATE(176), + [sym_inline_image] = STATE(176), + [sym__image_description] = STATE(690), + [sym__link] = STATE(176), + [sym_full_reference_link] = STATE(176), + [sym_collapsed_reference_link] = STATE(176), + [sym_inline_link] = STATE(176), + [sym_link_text] = STATE(691), + [sym__comment_with_spaces] = STATE(176), + [sym_span] = STATE(176), + [sym_raw_inline] = STATE(176), + [sym_math] = STATE(176), + [sym_verbatim] = STATE(176), + [sym__todo_highlights] = STATE(176), + [sym_todo] = STATE(176), + [sym_note] = STATE(176), + [sym__symbol_fallback] = STATE(176), + [aux_sym__text] = STATE(155), + [aux_sym__inline_repeat1] = STATE(87), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(210), + [anon_sym__] = ACTIONS(549), + [aux_sym_emphasis_end_token1] = ACTIONS(84), + [anon_sym_LBRACE_STAR] = ACTIONS(216), + [anon_sym_STAR] = ACTIONS(219), + [anon_sym_BSLASH] = ACTIONS(222), + [sym_quotation_marks] = ACTIONS(225), + [sym_ellipsis] = ACTIONS(225), + [sym_em_dash] = ACTIONS(225), + [sym_en_dash] = ACTIONS(228), + [sym_backslash_escape] = ACTIONS(228), + [anon_sym_LT] = ACTIONS(231), + [anon_sym_LBRACE_EQ] = ACTIONS(234), + [anon_sym_LBRACE_PLUS] = ACTIONS(237), + [anon_sym_LBRACE_DASH] = ACTIONS(240), + [sym_symbol] = ACTIONS(225), + [anon_sym_LBRACE_CARET] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(243), + [anon_sym_LBRACE_TILDE] = ACTIONS(246), + [anon_sym_TILDE] = ACTIONS(246), + [anon_sym_LBRACK_CARET] = ACTIONS(249), + [anon_sym_BANG_LBRACK] = ACTIONS(252), + [anon_sym_LBRACK] = ACTIONS(255), + [anon_sym_LBRACE2] = ACTIONS(228), + [anon_sym_DOLLAR] = ACTIONS(258), + [anon_sym_TODO] = ACTIONS(261), + [anon_sym_WIP] = ACTIONS(261), + [anon_sym_NOTE] = ACTIONS(264), + [anon_sym_INFO] = ACTIONS(264), + [anon_sym_XXX] = ACTIONS(264), + [sym_fixme] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(225), + [sym__whitespace1] = ACTIONS(528), + [sym__newline] = ACTIONS(270), + [aux_sym__text_token1] = ACTIONS(273), + [sym__verbatim_begin] = ACTIONS(276), }, - [13] = { - [sym__inline] = STATE(831), - [sym__element] = STATE(78), - [sym_emphasis] = STATE(167), - [sym_emphasis_begin] = STATE(894), - [sym_strong] = STATE(167), - [sym_strong_begin] = STATE(117), - [sym__hard_line_break] = STATE(167), - [sym_hard_line_break] = STATE(167), - [sym__smart_punctuation] = STATE(167), - [sym_autolink] = STATE(167), - [sym_highlighted] = STATE(167), - [sym_insert] = STATE(167), - [sym_delete] = STATE(167), - [sym_superscript] = STATE(167), - [sym_subscript] = STATE(167), - [sym_footnote_reference] = STATE(167), - [sym__image] = STATE(167), - [sym_full_reference_image] = STATE(167), - [sym_collapsed_reference_image] = STATE(167), - [sym_inline_image] = STATE(167), - [sym__image_description] = STATE(613), - [sym__link] = STATE(167), - [sym_full_reference_link] = STATE(167), - [sym_collapsed_reference_link] = STATE(167), - [sym_inline_link] = STATE(167), - [sym_link_text] = STATE(614), - [sym__comment_with_spaces] = STATE(167), - [sym_span] = STATE(167), - [sym_raw_inline] = STATE(167), - [sym_math] = STATE(167), - [sym_verbatim] = STATE(167), - [sym__todo_highlights] = STATE(167), - [sym_todo] = STATE(167), - [sym_note] = STATE(167), - [sym__symbol_fallback] = STATE(167), - [aux_sym__text] = STATE(130), - [aux_sym__inline_repeat1] = STATE(78), - [ts_builtin_sym_end] = ACTIONS(79), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_] = ACTIONS(199), - [anon_sym__] = ACTIONS(202), - [anon_sym_LBRACE_STAR] = ACTIONS(205), - [anon_sym_STAR] = ACTIONS(208), - [anon_sym_BSLASH] = ACTIONS(211), - [sym_quotation_marks] = ACTIONS(202), - [sym_ellipsis] = ACTIONS(202), - [sym_em_dash] = ACTIONS(202), - [sym_en_dash] = ACTIONS(214), - [sym_backslash_escape] = ACTIONS(214), - [anon_sym_LT] = ACTIONS(217), - [anon_sym_LBRACE_EQ] = ACTIONS(220), - [anon_sym_LBRACE_PLUS] = ACTIONS(223), - [anon_sym_LBRACE_DASH] = ACTIONS(226), - [sym_symbol] = ACTIONS(202), - [anon_sym_LBRACE_CARET] = ACTIONS(229), - [anon_sym_CARET] = ACTIONS(229), - [anon_sym_LBRACE_TILDE] = ACTIONS(232), - [anon_sym_TILDE] = ACTIONS(232), - [anon_sym_LBRACK_CARET] = ACTIONS(235), - [anon_sym_BANG_LBRACK] = ACTIONS(238), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_LBRACE2] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(244), - [anon_sym_TODO] = ACTIONS(247), - [anon_sym_WIP] = ACTIONS(247), - [anon_sym_NOTE] = ACTIONS(250), - [anon_sym_INFO] = ACTIONS(250), - [anon_sym_XXX] = ACTIONS(250), - [sym_fixme] = ACTIONS(202), - [anon_sym_PIPE] = ACTIONS(202), - [sym__whitespace1] = ACTIONS(253), - [sym__newline] = ACTIONS(256), - [aux_sym__text_token1] = ACTIONS(259), - [sym__verbatim_begin] = ACTIONS(262), + [60] = { + [sym__inline] = STATE(829), + [sym__element] = STATE(95), + [sym_emphasis] = STATE(215), + [sym_emphasis_begin] = STATE(1012), + [sym_strong] = STATE(215), + [sym_strong_begin] = STATE(128), + [sym__hard_line_break] = STATE(215), + [sym_hard_line_break] = STATE(215), + [sym__smart_punctuation] = STATE(215), + [sym_autolink] = STATE(215), + [sym_highlighted] = STATE(215), + [sym_insert] = STATE(215), + [sym_delete] = STATE(215), + [sym_superscript] = STATE(215), + [sym_subscript] = STATE(215), + [sym_footnote_reference] = STATE(215), + [sym__image] = STATE(215), + [sym_full_reference_image] = STATE(215), + [sym_collapsed_reference_image] = STATE(215), + [sym_inline_image] = STATE(215), + [sym__image_description] = STATE(696), + [sym__link] = STATE(215), + [sym_full_reference_link] = STATE(215), + [sym_collapsed_reference_link] = STATE(215), + [sym_inline_link] = STATE(215), + [sym_link_text] = STATE(705), + [sym__comment_with_spaces] = STATE(215), + [sym_span] = STATE(215), + [sym_raw_inline] = STATE(215), + [sym_math] = STATE(215), + [sym_verbatim] = STATE(215), + [sym__todo_highlights] = STATE(215), + [sym_todo] = STATE(215), + [sym_note] = STATE(215), + [sym__symbol_fallback] = STATE(215), + [aux_sym__text] = STATE(141), + [aux_sym__inline_repeat1] = STATE(95), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(141), + [anon_sym__] = ACTIONS(552), + [aux_sym_emphasis_end_token1] = ACTIONS(84), + [anon_sym_LBRACE_STAR] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(150), + [anon_sym_BSLASH] = ACTIONS(153), + [sym_quotation_marks] = ACTIONS(156), + [sym_ellipsis] = ACTIONS(156), + [sym_em_dash] = ACTIONS(156), + [sym_en_dash] = ACTIONS(159), + [sym_backslash_escape] = ACTIONS(159), + [anon_sym_LT] = ACTIONS(162), + [anon_sym_LBRACE_EQ] = ACTIONS(165), + [anon_sym_LBRACE_PLUS] = ACTIONS(168), + [anon_sym_LBRACE_DASH] = ACTIONS(171), + [sym_symbol] = ACTIONS(156), + [anon_sym_LBRACE_CARET] = ACTIONS(174), + [anon_sym_CARET] = ACTIONS(174), + [anon_sym_LBRACE_TILDE] = ACTIONS(177), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_LBRACK_CARET] = ACTIONS(180), + [anon_sym_BANG_LBRACK] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(186), + [anon_sym_LBRACE2] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(189), + [anon_sym_TODO] = ACTIONS(192), + [anon_sym_WIP] = ACTIONS(192), + [anon_sym_NOTE] = ACTIONS(195), + [anon_sym_INFO] = ACTIONS(195), + [anon_sym_XXX] = ACTIONS(195), + [sym_fixme] = ACTIONS(156), + [anon_sym_PIPE] = ACTIONS(156), + [sym__whitespace1] = ACTIONS(522), + [sym__newline] = ACTIONS(201), + [aux_sym__text_token1] = ACTIONS(204), + [sym__verbatim_begin] = ACTIONS(207), }, - [14] = { - [sym__inline] = STATE(826), - [sym__element] = STATE(73), - [sym_emphasis] = STATE(180), - [sym_emphasis_begin] = STATE(895), - [sym_strong] = STATE(180), + [61] = { + [sym__inline] = STATE(932), + [sym__element] = STATE(118), + [sym_emphasis] = STATE(204), + [sym_emphasis_begin] = STATE(1017), + [sym_strong] = STATE(204), [sym_strong_begin] = STATE(114), - [sym__hard_line_break] = STATE(180), - [sym_hard_line_break] = STATE(180), - [sym__smart_punctuation] = STATE(180), - [sym_autolink] = STATE(180), - [sym_highlighted] = STATE(180), - [sym_insert] = STATE(180), - [sym_delete] = STATE(180), - [sym_superscript] = STATE(180), - [sym_subscript] = STATE(180), - [sym_footnote_reference] = STATE(180), - [sym__image] = STATE(180), - [sym_full_reference_image] = STATE(180), - [sym_collapsed_reference_image] = STATE(180), - [sym_inline_image] = STATE(180), - [sym__image_description] = STATE(632), - [sym__link] = STATE(180), - [sym_full_reference_link] = STATE(180), - [sym_collapsed_reference_link] = STATE(180), - [sym_inline_link] = STATE(180), - [sym_link_text] = STATE(633), - [sym__comment_with_spaces] = STATE(180), - [sym_span] = STATE(180), - [sym_raw_inline] = STATE(180), - [sym_math] = STATE(180), - [sym_verbatim] = STATE(180), - [sym__todo_highlights] = STATE(180), - [sym_todo] = STATE(180), - [sym_note] = STATE(180), - [sym__symbol_fallback] = STATE(180), - [aux_sym__text] = STATE(132), - [aux_sym__inline_repeat1] = STATE(73), - [ts_builtin_sym_end] = ACTIONS(79), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_] = ACTIONS(133), - [anon_sym__] = ACTIONS(136), - [anon_sym_LBRACE_STAR] = ACTIONS(139), - [anon_sym_STAR] = ACTIONS(142), - [anon_sym_BSLASH] = ACTIONS(145), - [sym_quotation_marks] = ACTIONS(136), - [sym_ellipsis] = ACTIONS(136), - [sym_em_dash] = ACTIONS(136), - [sym_en_dash] = ACTIONS(148), - [sym_backslash_escape] = ACTIONS(148), - [anon_sym_LT] = ACTIONS(151), - [anon_sym_LBRACE_EQ] = ACTIONS(154), - [anon_sym_LBRACE_PLUS] = ACTIONS(157), - [anon_sym_LBRACE_DASH] = ACTIONS(160), - [sym_symbol] = ACTIONS(136), - [anon_sym_LBRACE_CARET] = ACTIONS(163), - [anon_sym_CARET] = ACTIONS(163), - [anon_sym_LBRACE_TILDE] = ACTIONS(166), - [anon_sym_TILDE] = ACTIONS(166), - [anon_sym_LBRACK_CARET] = ACTIONS(169), - [anon_sym_BANG_LBRACK] = ACTIONS(172), - [anon_sym_LBRACK] = ACTIONS(175), - [anon_sym_LBRACE2] = ACTIONS(148), - [anon_sym_DOLLAR] = ACTIONS(178), - [anon_sym_TODO] = ACTIONS(181), - [anon_sym_WIP] = ACTIONS(181), - [anon_sym_NOTE] = ACTIONS(184), - [anon_sym_INFO] = ACTIONS(184), - [anon_sym_XXX] = ACTIONS(184), - [sym_fixme] = ACTIONS(136), - [anon_sym_PIPE] = ACTIONS(136), - [sym__whitespace1] = ACTIONS(187), - [sym__newline] = ACTIONS(190), - [aux_sym__text_token1] = ACTIONS(193), - [sym__verbatim_begin] = ACTIONS(196), - }, - [15] = { - [sym__inline] = STATE(669), - [sym__element] = STATE(72), - [sym_emphasis] = STATE(163), - [sym_emphasis_begin] = STATE(896), - [sym_strong] = STATE(163), - [sym_strong_begin] = STATE(110), - [sym__hard_line_break] = STATE(163), - [sym_hard_line_break] = STATE(163), - [sym__smart_punctuation] = STATE(163), - [sym_autolink] = STATE(163), - [sym_highlighted] = STATE(163), - [sym_insert] = STATE(163), - [sym_delete] = STATE(163), - [sym_superscript] = STATE(163), - [sym_subscript] = STATE(163), - [sym_footnote_reference] = STATE(163), - [sym__image] = STATE(163), - [sym_full_reference_image] = STATE(163), - [sym_collapsed_reference_image] = STATE(163), - [sym_inline_image] = STATE(163), - [sym__image_description] = STATE(622), - [sym__link] = STATE(163), - [sym_full_reference_link] = STATE(163), - [sym_collapsed_reference_link] = STATE(163), - [sym_inline_link] = STATE(163), - [sym_link_text] = STATE(605), - [sym__comment_with_spaces] = STATE(163), - [sym_span] = STATE(163), - [sym_raw_inline] = STATE(163), - [sym_math] = STATE(163), - [sym_verbatim] = STATE(163), - [sym__todo_highlights] = STATE(163), - [sym_todo] = STATE(163), - [sym_note] = STATE(163), - [sym__symbol_fallback] = STATE(163), - [aux_sym__text] = STATE(146), - [aux_sym__inline_repeat1] = STATE(72), - [ts_builtin_sym_end] = ACTIONS(79), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_] = ACTIONS(331), - [anon_sym__] = ACTIONS(334), - [anon_sym_LBRACE_STAR] = ACTIONS(337), - [anon_sym_STAR] = ACTIONS(340), - [anon_sym_BSLASH] = ACTIONS(343), - [sym_quotation_marks] = ACTIONS(334), - [sym_ellipsis] = ACTIONS(334), - [sym_em_dash] = ACTIONS(334), - [sym_en_dash] = ACTIONS(346), - [sym_backslash_escape] = ACTIONS(346), - [anon_sym_LT] = ACTIONS(349), - [anon_sym_LBRACE_EQ] = ACTIONS(352), - [anon_sym_LBRACE_PLUS] = ACTIONS(355), - [anon_sym_LBRACE_DASH] = ACTIONS(358), - [sym_symbol] = ACTIONS(334), - [anon_sym_LBRACE_CARET] = ACTIONS(361), - [anon_sym_CARET] = ACTIONS(361), - [anon_sym_LBRACE_TILDE] = ACTIONS(364), - [anon_sym_TILDE] = ACTIONS(364), - [anon_sym_LBRACK_CARET] = ACTIONS(367), - [anon_sym_BANG_LBRACK] = ACTIONS(370), - [anon_sym_LBRACK] = ACTIONS(373), - [anon_sym_LBRACE2] = ACTIONS(346), - [anon_sym_DOLLAR] = ACTIONS(376), - [anon_sym_TODO] = ACTIONS(379), - [anon_sym_WIP] = ACTIONS(379), - [anon_sym_NOTE] = ACTIONS(382), - [anon_sym_INFO] = ACTIONS(382), - [anon_sym_XXX] = ACTIONS(382), - [sym_fixme] = ACTIONS(334), - [anon_sym_PIPE] = ACTIONS(334), - [sym__whitespace1] = ACTIONS(385), - [sym__newline] = ACTIONS(388), - [aux_sym__text_token1] = ACTIONS(391), - [sym__verbatim_begin] = ACTIONS(394), + [sym__hard_line_break] = STATE(204), + [sym_hard_line_break] = STATE(204), + [sym__smart_punctuation] = STATE(204), + [sym_autolink] = STATE(204), + [sym_highlighted] = STATE(204), + [sym_insert] = STATE(204), + [sym_delete] = STATE(204), + [sym_superscript] = STATE(204), + [sym_subscript] = STATE(204), + [sym_footnote_reference] = STATE(204), + [sym__image] = STATE(204), + [sym_full_reference_image] = STATE(204), + [sym_collapsed_reference_image] = STATE(204), + [sym_inline_image] = STATE(204), + [sym__image_description] = STATE(714), + [sym__link] = STATE(204), + [sym_full_reference_link] = STATE(204), + [sym_collapsed_reference_link] = STATE(204), + [sym_inline_link] = STATE(204), + [sym_link_text] = STATE(715), + [sym__comment_with_spaces] = STATE(204), + [sym_span] = STATE(204), + [sym_raw_inline] = STATE(204), + [sym_math] = STATE(204), + [sym_verbatim] = STATE(204), + [sym__todo_highlights] = STATE(204), + [sym_todo] = STATE(204), + [sym_note] = STATE(204), + [sym__symbol_fallback] = STATE(204), + [aux_sym__text] = STATE(149), + [aux_sym__inline_repeat1] = STATE(118), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(51), + [anon_sym__] = ACTIONS(54), + [anon_sym_LBRACE_STAR] = ACTIONS(57), + [anon_sym_STAR] = ACTIONS(60), + [anon_sym_BSLASH] = ACTIONS(63), + [sym_quotation_marks] = ACTIONS(66), + [sym_ellipsis] = ACTIONS(66), + [sym_em_dash] = ACTIONS(66), + [sym_en_dash] = ACTIONS(69), + [sym_backslash_escape] = ACTIONS(69), + [anon_sym_LT] = ACTIONS(72), + [anon_sym_LBRACE_EQ] = ACTIONS(75), + [anon_sym_LBRACE_PLUS] = ACTIONS(78), + [anon_sym_LBRACE_DASH] = ACTIONS(81), + [anon_sym_DASH_RBRACE] = ACTIONS(84), + [sym_symbol] = ACTIONS(66), + [anon_sym_LBRACE_CARET] = ACTIONS(86), + [anon_sym_CARET] = ACTIONS(86), + [anon_sym_LBRACE_TILDE] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(89), + [anon_sym_LBRACK_CARET] = ACTIONS(92), + [anon_sym_BANG_LBRACK] = ACTIONS(97), + [anon_sym_LBRACK] = ACTIONS(100), + [anon_sym_LBRACE2] = ACTIONS(69), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_TODO] = ACTIONS(106), + [anon_sym_WIP] = ACTIONS(106), + [anon_sym_NOTE] = ACTIONS(109), + [anon_sym_INFO] = ACTIONS(109), + [anon_sym_XXX] = ACTIONS(109), + [sym_fixme] = ACTIONS(66), + [anon_sym_PIPE] = ACTIONS(66), + [sym__whitespace1] = ACTIONS(112), + [sym__newline] = ACTIONS(115), + [aux_sym__text_token1] = ACTIONS(118), + [sym__verbatim_begin] = ACTIONS(121), }, - [16] = { - [sym__inline] = STATE(701), - [sym__element] = STATE(113), - [sym_emphasis] = STATE(175), - [sym_emphasis_begin] = STATE(897), - [sym_strong] = STATE(175), - [sym_strong_begin] = STATE(108), - [sym__hard_line_break] = STATE(175), - [sym_hard_line_break] = STATE(175), - [sym__smart_punctuation] = STATE(175), - [sym_autolink] = STATE(175), - [sym_highlighted] = STATE(175), - [sym_insert] = STATE(175), - [sym_delete] = STATE(175), - [sym_superscript] = STATE(175), - [sym_subscript] = STATE(175), - [sym_footnote_reference] = STATE(175), - [sym__image] = STATE(175), - [sym_full_reference_image] = STATE(175), - [sym_collapsed_reference_image] = STATE(175), - [sym_inline_image] = STATE(175), - [sym__image_description] = STATE(626), - [sym__link] = STATE(175), - [sym_full_reference_link] = STATE(175), - [sym_collapsed_reference_link] = STATE(175), - [sym_inline_link] = STATE(175), - [sym_link_text] = STATE(624), - [sym__comment_with_spaces] = STATE(175), - [sym_span] = STATE(175), - [sym_raw_inline] = STATE(175), - [sym_math] = STATE(175), - [sym_verbatim] = STATE(175), - [sym__todo_highlights] = STATE(175), - [sym_todo] = STATE(175), - [sym_note] = STATE(175), - [sym__symbol_fallback] = STATE(175), - [aux_sym__text] = STATE(125), - [aux_sym__inline_repeat1] = STATE(113), - [ts_builtin_sym_end] = ACTIONS(79), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_] = ACTIONS(397), - [anon_sym__] = ACTIONS(400), - [anon_sym_LBRACE_STAR] = ACTIONS(403), - [anon_sym_STAR] = ACTIONS(406), - [anon_sym_BSLASH] = ACTIONS(409), - [sym_quotation_marks] = ACTIONS(400), - [sym_ellipsis] = ACTIONS(400), - [sym_em_dash] = ACTIONS(400), - [sym_en_dash] = ACTIONS(412), - [sym_backslash_escape] = ACTIONS(412), - [anon_sym_LT] = ACTIONS(415), - [anon_sym_LBRACE_EQ] = ACTIONS(418), - [anon_sym_LBRACE_PLUS] = ACTIONS(421), - [anon_sym_LBRACE_DASH] = ACTIONS(424), - [sym_symbol] = ACTIONS(400), - [anon_sym_LBRACE_CARET] = ACTIONS(427), - [anon_sym_CARET] = ACTIONS(427), - [anon_sym_LBRACE_TILDE] = ACTIONS(430), - [anon_sym_TILDE] = ACTIONS(430), - [anon_sym_LBRACK_CARET] = ACTIONS(433), - [anon_sym_BANG_LBRACK] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(439), - [anon_sym_LBRACE2] = ACTIONS(412), - [anon_sym_DOLLAR] = ACTIONS(442), - [anon_sym_TODO] = ACTIONS(445), - [anon_sym_WIP] = ACTIONS(445), - [anon_sym_NOTE] = ACTIONS(448), - [anon_sym_INFO] = ACTIONS(448), - [anon_sym_XXX] = ACTIONS(448), - [sym_fixme] = ACTIONS(400), - [anon_sym_PIPE] = ACTIONS(400), - [sym__whitespace1] = ACTIONS(451), - [sym__newline] = ACTIONS(454), - [aux_sym__text_token1] = ACTIONS(457), - [sym__verbatim_begin] = ACTIONS(460), + [62] = { + [sym__inline] = STATE(905), + [sym__element] = STATE(95), + [sym_emphasis] = STATE(215), + [sym_emphasis_begin] = STATE(1012), + [sym_strong] = STATE(215), + [sym_strong_begin] = STATE(128), + [sym__hard_line_break] = STATE(215), + [sym_hard_line_break] = STATE(215), + [sym__smart_punctuation] = STATE(215), + [sym_autolink] = STATE(215), + [sym_highlighted] = STATE(215), + [sym_insert] = STATE(215), + [sym_delete] = STATE(215), + [sym_superscript] = STATE(215), + [sym_subscript] = STATE(215), + [sym_footnote_reference] = STATE(215), + [sym__image] = STATE(215), + [sym_full_reference_image] = STATE(215), + [sym_collapsed_reference_image] = STATE(215), + [sym_inline_image] = STATE(215), + [sym__image_description] = STATE(696), + [sym__link] = STATE(215), + [sym_full_reference_link] = STATE(215), + [sym_collapsed_reference_link] = STATE(215), + [sym_inline_link] = STATE(215), + [sym_link_text] = STATE(705), + [sym__comment_with_spaces] = STATE(215), + [sym_span] = STATE(215), + [sym_raw_inline] = STATE(215), + [sym_math] = STATE(215), + [sym_verbatim] = STATE(215), + [sym__todo_highlights] = STATE(215), + [sym_todo] = STATE(215), + [sym_note] = STATE(215), + [sym__symbol_fallback] = STATE(215), + [aux_sym__text] = STATE(141), + [aux_sym__inline_repeat1] = STATE(95), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(141), + [anon_sym__] = ACTIONS(144), + [anon_sym_LBRACE_STAR] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(150), + [anon_sym_BSLASH] = ACTIONS(153), + [sym_quotation_marks] = ACTIONS(156), + [sym_ellipsis] = ACTIONS(156), + [sym_em_dash] = ACTIONS(156), + [sym_en_dash] = ACTIONS(159), + [sym_backslash_escape] = ACTIONS(159), + [anon_sym_LT] = ACTIONS(162), + [anon_sym_LBRACE_EQ] = ACTIONS(165), + [anon_sym_LBRACE_PLUS] = ACTIONS(168), + [anon_sym_LBRACE_DASH] = ACTIONS(171), + [anon_sym_DASH_RBRACE] = ACTIONS(84), + [sym_symbol] = ACTIONS(156), + [anon_sym_LBRACE_CARET] = ACTIONS(174), + [anon_sym_CARET] = ACTIONS(174), + [anon_sym_LBRACE_TILDE] = ACTIONS(177), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_LBRACK_CARET] = ACTIONS(180), + [anon_sym_BANG_LBRACK] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(186), + [anon_sym_LBRACE2] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(189), + [anon_sym_TODO] = ACTIONS(192), + [anon_sym_WIP] = ACTIONS(192), + [anon_sym_NOTE] = ACTIONS(195), + [anon_sym_INFO] = ACTIONS(195), + [anon_sym_XXX] = ACTIONS(195), + [sym_fixme] = ACTIONS(156), + [anon_sym_PIPE] = ACTIONS(156), + [sym__whitespace1] = ACTIONS(198), + [sym__newline] = ACTIONS(201), + [aux_sym__text_token1] = ACTIONS(204), + [sym__verbatim_begin] = ACTIONS(207), }, - [17] = { - [sym__inline] = STATE(680), - [sym__element] = STATE(113), - [sym_emphasis] = STATE(175), - [sym_emphasis_begin] = STATE(897), - [sym_strong] = STATE(175), - [sym_strong_begin] = STATE(108), - [sym__hard_line_break] = STATE(175), - [sym_hard_line_break] = STATE(175), - [sym__smart_punctuation] = STATE(175), - [sym_autolink] = STATE(175), - [sym_highlighted] = STATE(175), - [sym_insert] = STATE(175), - [sym_delete] = STATE(175), - [sym_superscript] = STATE(175), - [sym_subscript] = STATE(175), - [sym_footnote_reference] = STATE(175), - [sym__image] = STATE(175), - [sym_full_reference_image] = STATE(175), - [sym_collapsed_reference_image] = STATE(175), - [sym_inline_image] = STATE(175), - [sym__image_description] = STATE(626), - [sym__link] = STATE(175), - [sym_full_reference_link] = STATE(175), - [sym_collapsed_reference_link] = STATE(175), - [sym_inline_link] = STATE(175), - [sym_link_text] = STATE(624), - [sym__comment_with_spaces] = STATE(175), - [sym_span] = STATE(175), - [sym_raw_inline] = STATE(175), - [sym_math] = STATE(175), - [sym_verbatim] = STATE(175), - [sym__todo_highlights] = STATE(175), - [sym_todo] = STATE(175), - [sym_note] = STATE(175), - [sym__symbol_fallback] = STATE(175), - [aux_sym__text] = STATE(125), - [aux_sym__inline_repeat1] = STATE(113), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_] = ACTIONS(397), - [anon_sym__] = ACTIONS(400), - [anon_sym_LBRACE_STAR] = ACTIONS(403), - [anon_sym_STAR] = ACTIONS(406), - [anon_sym_BSLASH] = ACTIONS(409), - [sym_quotation_marks] = ACTIONS(400), - [sym_ellipsis] = ACTIONS(400), - [sym_em_dash] = ACTIONS(400), - [sym_en_dash] = ACTIONS(412), - [sym_backslash_escape] = ACTIONS(412), - [anon_sym_LT] = ACTIONS(415), - [anon_sym_LBRACE_EQ] = ACTIONS(418), - [anon_sym_LBRACE_PLUS] = ACTIONS(421), - [anon_sym_PLUS_RBRACE] = ACTIONS(79), - [anon_sym_LBRACE_DASH] = ACTIONS(424), - [sym_symbol] = ACTIONS(400), - [anon_sym_LBRACE_CARET] = ACTIONS(427), - [anon_sym_CARET] = ACTIONS(427), - [anon_sym_LBRACE_TILDE] = ACTIONS(430), - [anon_sym_TILDE] = ACTIONS(430), - [anon_sym_LBRACK_CARET] = ACTIONS(433), - [anon_sym_BANG_LBRACK] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(439), - [anon_sym_LBRACE2] = ACTIONS(412), - [anon_sym_DOLLAR] = ACTIONS(442), - [anon_sym_TODO] = ACTIONS(445), - [anon_sym_WIP] = ACTIONS(445), - [anon_sym_NOTE] = ACTIONS(448), - [anon_sym_INFO] = ACTIONS(448), - [anon_sym_XXX] = ACTIONS(448), - [sym_fixme] = ACTIONS(400), - [anon_sym_PIPE] = ACTIONS(400), - [sym__whitespace1] = ACTIONS(451), - [sym__newline] = ACTIONS(454), - [aux_sym__text_token1] = ACTIONS(457), - [sym__verbatim_begin] = ACTIONS(460), + [63] = { + [sym__inline] = STATE(813), + [sym__element] = STATE(83), + [sym_emphasis] = STATE(211), + [sym_emphasis_begin] = STATE(1014), + [sym_strong] = STATE(211), + [sym_strong_begin] = STATE(121), + [sym__hard_line_break] = STATE(211), + [sym_hard_line_break] = STATE(211), + [sym__smart_punctuation] = STATE(211), + [sym_autolink] = STATE(211), + [sym_highlighted] = STATE(211), + [sym_insert] = STATE(211), + [sym_delete] = STATE(211), + [sym_superscript] = STATE(211), + [sym_subscript] = STATE(211), + [sym_footnote_reference] = STATE(211), + [sym__image] = STATE(211), + [sym_full_reference_image] = STATE(211), + [sym_collapsed_reference_image] = STATE(211), + [sym_inline_image] = STATE(211), + [sym__image_description] = STATE(693), + [sym__link] = STATE(211), + [sym_full_reference_link] = STATE(211), + [sym_collapsed_reference_link] = STATE(211), + [sym_inline_link] = STATE(211), + [sym_link_text] = STATE(694), + [sym__comment_with_spaces] = STATE(211), + [sym_span] = STATE(211), + [sym_raw_inline] = STATE(211), + [sym_math] = STATE(211), + [sym_verbatim] = STATE(211), + [sym__todo_highlights] = STATE(211), + [sym_todo] = STATE(211), + [sym_note] = STATE(211), + [sym__symbol_fallback] = STATE(211), + [aux_sym__text] = STATE(137), + [aux_sym__inline_repeat1] = STATE(83), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(285), + [anon_sym__] = ACTIONS(288), + [anon_sym_LBRACE_STAR] = ACTIONS(291), + [anon_sym_STAR] = ACTIONS(555), + [aux_sym_strong_end_token1] = ACTIONS(84), + [anon_sym_BSLASH] = ACTIONS(297), + [sym_quotation_marks] = ACTIONS(300), + [sym_ellipsis] = ACTIONS(300), + [sym_em_dash] = ACTIONS(300), + [sym_en_dash] = ACTIONS(303), + [sym_backslash_escape] = ACTIONS(303), + [anon_sym_LT] = ACTIONS(306), + [anon_sym_LBRACE_EQ] = ACTIONS(309), + [anon_sym_LBRACE_PLUS] = ACTIONS(312), + [anon_sym_LBRACE_DASH] = ACTIONS(315), + [sym_symbol] = ACTIONS(300), + [anon_sym_LBRACE_CARET] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_LBRACE_TILDE] = ACTIONS(321), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_LBRACK_CARET] = ACTIONS(324), + [anon_sym_BANG_LBRACK] = ACTIONS(327), + [anon_sym_LBRACK] = ACTIONS(330), + [anon_sym_LBRACE2] = ACTIONS(303), + [anon_sym_DOLLAR] = ACTIONS(333), + [anon_sym_TODO] = ACTIONS(336), + [anon_sym_WIP] = ACTIONS(336), + [anon_sym_NOTE] = ACTIONS(339), + [anon_sym_INFO] = ACTIONS(339), + [anon_sym_XXX] = ACTIONS(339), + [sym_fixme] = ACTIONS(300), + [anon_sym_PIPE] = ACTIONS(300), + [sym__whitespace1] = ACTIONS(546), + [sym__newline] = ACTIONS(345), + [aux_sym__text_token1] = ACTIONS(348), + [sym__verbatim_begin] = ACTIONS(351), }, - [18] = { - [sym__inline] = STATE(731), - [sym__element] = STATE(97), + [64] = { + [sym__inline] = STATE(795), + [sym__element] = STATE(117), [sym_emphasis] = STATE(182), - [sym_emphasis_begin] = STATE(898), + [sym_emphasis_begin] = STATE(1016), [sym_strong] = STATE(182), - [sym_strong_begin] = STATE(104), + [sym_strong_begin] = STATE(122), [sym__hard_line_break] = STATE(182), [sym_hard_line_break] = STATE(182), [sym__smart_punctuation] = STATE(182), @@ -9029,12 +13241,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_full_reference_image] = STATE(182), [sym_collapsed_reference_image] = STATE(182), [sym_inline_image] = STATE(182), - [sym__image_description] = STATE(610), + [sym__image_description] = STATE(692), [sym__link] = STATE(182), [sym_full_reference_link] = STATE(182), [sym_collapsed_reference_link] = STATE(182), [sym_inline_link] = STATE(182), - [sym_link_text] = STATE(608), + [sym_link_text] = STATE(689), [sym__comment_with_spaces] = STATE(182), [sym_span] = STATE(182), [sym_raw_inline] = STATE(182), @@ -9044,129 +13256,433 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(182), [sym_note] = STATE(182), [sym__symbol_fallback] = STATE(182), - [aux_sym__text] = STATE(144), - [aux_sym__inline_repeat1] = STATE(97), - [ts_builtin_sym_end] = ACTIONS(79), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_] = ACTIONS(49), - [anon_sym__] = ACTIONS(52), - [anon_sym_LBRACE_STAR] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(58), - [anon_sym_BSLASH] = ACTIONS(61), - [sym_quotation_marks] = ACTIONS(52), - [sym_ellipsis] = ACTIONS(52), - [sym_em_dash] = ACTIONS(52), - [sym_en_dash] = ACTIONS(64), - [sym_backslash_escape] = ACTIONS(64), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_LBRACE_EQ] = ACTIONS(70), - [anon_sym_LBRACE_PLUS] = ACTIONS(73), - [anon_sym_LBRACE_DASH] = ACTIONS(76), - [sym_symbol] = ACTIONS(52), - [anon_sym_LBRACE_CARET] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(81), - [anon_sym_LBRACE_TILDE] = ACTIONS(84), - [anon_sym_TILDE] = ACTIONS(84), - [anon_sym_LBRACK_CARET] = ACTIONS(87), - [anon_sym_BANG_LBRACK] = ACTIONS(92), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LBRACE2] = ACTIONS(64), - [anon_sym_DOLLAR] = ACTIONS(98), - [anon_sym_TODO] = ACTIONS(101), - [anon_sym_WIP] = ACTIONS(101), - [anon_sym_NOTE] = ACTIONS(104), - [anon_sym_INFO] = ACTIONS(104), - [anon_sym_XXX] = ACTIONS(104), - [sym_fixme] = ACTIONS(52), - [anon_sym_PIPE] = ACTIONS(52), - [sym__whitespace1] = ACTIONS(107), - [sym__newline] = ACTIONS(110), - [aux_sym__text_token1] = ACTIONS(113), - [sym__verbatim_begin] = ACTIONS(116), + [aux_sym__text] = STATE(153), + [aux_sym__inline_repeat1] = STATE(117), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(423), + [anon_sym__] = ACTIONS(426), + [anon_sym_LBRACE_STAR] = ACTIONS(429), + [anon_sym_STAR] = ACTIONS(558), + [aux_sym_strong_end_token1] = ACTIONS(84), + [anon_sym_BSLASH] = ACTIONS(435), + [sym_quotation_marks] = ACTIONS(438), + [sym_ellipsis] = ACTIONS(438), + [sym_em_dash] = ACTIONS(438), + [sym_en_dash] = ACTIONS(441), + [sym_backslash_escape] = ACTIONS(441), + [anon_sym_LT] = ACTIONS(444), + [anon_sym_LBRACE_EQ] = ACTIONS(447), + [anon_sym_LBRACE_PLUS] = ACTIONS(450), + [anon_sym_LBRACE_DASH] = ACTIONS(453), + [sym_symbol] = ACTIONS(438), + [anon_sym_LBRACE_CARET] = ACTIONS(456), + [anon_sym_CARET] = ACTIONS(456), + [anon_sym_LBRACE_TILDE] = ACTIONS(459), + [anon_sym_TILDE] = ACTIONS(459), + [anon_sym_LBRACK_CARET] = ACTIONS(462), + [anon_sym_BANG_LBRACK] = ACTIONS(465), + [anon_sym_LBRACK] = ACTIONS(468), + [anon_sym_LBRACE2] = ACTIONS(441), + [anon_sym_DOLLAR] = ACTIONS(471), + [anon_sym_TODO] = ACTIONS(474), + [anon_sym_WIP] = ACTIONS(474), + [anon_sym_NOTE] = ACTIONS(477), + [anon_sym_INFO] = ACTIONS(477), + [anon_sym_XXX] = ACTIONS(477), + [sym_fixme] = ACTIONS(438), + [anon_sym_PIPE] = ACTIONS(438), + [sym__whitespace1] = ACTIONS(534), + [sym__newline] = ACTIONS(483), + [aux_sym__text_token1] = ACTIONS(486), + [sym__verbatim_begin] = ACTIONS(489), }, - [19] = { - [sym__inline] = STATE(681), - [sym__element] = STATE(72), - [sym_emphasis] = STATE(163), - [sym_emphasis_begin] = STATE(896), - [sym_strong] = STATE(163), - [sym_strong_begin] = STATE(110), - [sym__hard_line_break] = STATE(163), - [sym_hard_line_break] = STATE(163), - [sym__smart_punctuation] = STATE(163), - [sym_autolink] = STATE(163), - [sym_highlighted] = STATE(163), - [sym_insert] = STATE(163), - [sym_delete] = STATE(163), - [sym_superscript] = STATE(163), - [sym_subscript] = STATE(163), - [sym_footnote_reference] = STATE(163), - [sym__image] = STATE(163), - [sym_full_reference_image] = STATE(163), - [sym_collapsed_reference_image] = STATE(163), - [sym_inline_image] = STATE(163), - [sym__image_description] = STATE(622), - [sym__link] = STATE(163), - [sym_full_reference_link] = STATE(163), - [sym_collapsed_reference_link] = STATE(163), - [sym_inline_link] = STATE(163), - [sym_link_text] = STATE(605), - [sym__comment_with_spaces] = STATE(163), - [sym_span] = STATE(163), - [sym_raw_inline] = STATE(163), - [sym_math] = STATE(163), - [sym_verbatim] = STATE(163), - [sym__todo_highlights] = STATE(163), - [sym_todo] = STATE(163), - [sym_note] = STATE(163), - [sym__symbol_fallback] = STATE(163), - [aux_sym__text] = STATE(146), - [aux_sym__inline_repeat1] = STATE(72), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_] = ACTIONS(331), - [anon_sym__] = ACTIONS(334), - [anon_sym_LBRACE_STAR] = ACTIONS(337), - [anon_sym_STAR] = ACTIONS(340), - [anon_sym_BSLASH] = ACTIONS(343), - [sym_quotation_marks] = ACTIONS(334), - [sym_ellipsis] = ACTIONS(334), - [sym_em_dash] = ACTIONS(334), - [sym_en_dash] = ACTIONS(346), - [sym_backslash_escape] = ACTIONS(346), - [anon_sym_LT] = ACTIONS(349), - [anon_sym_LBRACE_EQ] = ACTIONS(352), - [anon_sym_LBRACE_PLUS] = ACTIONS(355), - [anon_sym_PLUS_RBRACE] = ACTIONS(79), - [anon_sym_LBRACE_DASH] = ACTIONS(358), - [sym_symbol] = ACTIONS(334), - [anon_sym_LBRACE_CARET] = ACTIONS(361), - [anon_sym_CARET] = ACTIONS(361), - [anon_sym_LBRACE_TILDE] = ACTIONS(364), - [anon_sym_TILDE] = ACTIONS(364), - [anon_sym_LBRACK_CARET] = ACTIONS(367), - [anon_sym_BANG_LBRACK] = ACTIONS(370), - [anon_sym_LBRACK] = ACTIONS(373), - [anon_sym_LBRACE2] = ACTIONS(346), - [anon_sym_DOLLAR] = ACTIONS(376), - [anon_sym_TODO] = ACTIONS(379), - [anon_sym_WIP] = ACTIONS(379), - [anon_sym_NOTE] = ACTIONS(382), - [anon_sym_INFO] = ACTIONS(382), - [anon_sym_XXX] = ACTIONS(382), - [sym_fixme] = ACTIONS(334), - [anon_sym_PIPE] = ACTIONS(334), - [sym__whitespace1] = ACTIONS(385), - [sym__newline] = ACTIONS(388), - [aux_sym__text_token1] = ACTIONS(391), - [sym__verbatim_begin] = ACTIONS(394), + [65] = { + [sym__inline] = STATE(977), + [sym__element] = STATE(118), + [sym_emphasis] = STATE(204), + [sym_emphasis_begin] = STATE(1017), + [sym_strong] = STATE(204), + [sym_strong_begin] = STATE(114), + [sym__hard_line_break] = STATE(204), + [sym_hard_line_break] = STATE(204), + [sym__smart_punctuation] = STATE(204), + [sym_autolink] = STATE(204), + [sym_highlighted] = STATE(204), + [sym_insert] = STATE(204), + [sym_delete] = STATE(204), + [sym_superscript] = STATE(204), + [sym_subscript] = STATE(204), + [sym_footnote_reference] = STATE(204), + [sym__image] = STATE(204), + [sym_full_reference_image] = STATE(204), + [sym_collapsed_reference_image] = STATE(204), + [sym_inline_image] = STATE(204), + [sym__image_description] = STATE(714), + [sym__link] = STATE(204), + [sym_full_reference_link] = STATE(204), + [sym_collapsed_reference_link] = STATE(204), + [sym_inline_link] = STATE(204), + [sym_link_text] = STATE(715), + [sym__comment_with_spaces] = STATE(204), + [sym_span] = STATE(204), + [sym_raw_inline] = STATE(204), + [sym_math] = STATE(204), + [sym_verbatim] = STATE(204), + [sym__todo_highlights] = STATE(204), + [sym_todo] = STATE(204), + [sym_note] = STATE(204), + [sym__symbol_fallback] = STATE(204), + [aux_sym__text] = STATE(149), + [aux_sym__inline_repeat1] = STATE(118), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(51), + [anon_sym__] = ACTIONS(129), + [aux_sym_emphasis_end_token1] = ACTIONS(84), + [anon_sym_LBRACE_STAR] = ACTIONS(57), + [anon_sym_STAR] = ACTIONS(60), + [anon_sym_BSLASH] = ACTIONS(63), + [sym_quotation_marks] = ACTIONS(66), + [sym_ellipsis] = ACTIONS(66), + [sym_em_dash] = ACTIONS(66), + [sym_en_dash] = ACTIONS(69), + [sym_backslash_escape] = ACTIONS(69), + [anon_sym_LT] = ACTIONS(72), + [anon_sym_LBRACE_EQ] = ACTIONS(75), + [anon_sym_LBRACE_PLUS] = ACTIONS(78), + [anon_sym_LBRACE_DASH] = ACTIONS(81), + [sym_symbol] = ACTIONS(66), + [anon_sym_LBRACE_CARET] = ACTIONS(86), + [anon_sym_CARET] = ACTIONS(86), + [anon_sym_LBRACE_TILDE] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(89), + [anon_sym_LBRACK_CARET] = ACTIONS(92), + [anon_sym_BANG_LBRACK] = ACTIONS(97), + [anon_sym_LBRACK] = ACTIONS(100), + [anon_sym_LBRACE2] = ACTIONS(69), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_TODO] = ACTIONS(106), + [anon_sym_WIP] = ACTIONS(106), + [anon_sym_NOTE] = ACTIONS(109), + [anon_sym_INFO] = ACTIONS(109), + [anon_sym_XXX] = ACTIONS(109), + [sym_fixme] = ACTIONS(66), + [anon_sym_PIPE] = ACTIONS(66), + [sym__whitespace1] = ACTIONS(132), + [sym__newline] = ACTIONS(115), + [aux_sym__text_token1] = ACTIONS(118), + [sym__verbatim_begin] = ACTIONS(121), }, - [20] = { - [sym__inline] = STATE(859), - [sym__element] = STATE(97), + [66] = { + [sym__inline] = STATE(904), + [sym__element] = STATE(87), + [sym_emphasis] = STATE(176), + [sym_emphasis_begin] = STATE(1013), + [sym_strong] = STATE(176), + [sym_strong_begin] = STATE(97), + [sym__hard_line_break] = STATE(176), + [sym_hard_line_break] = STATE(176), + [sym__smart_punctuation] = STATE(176), + [sym_autolink] = STATE(176), + [sym_highlighted] = STATE(176), + [sym_insert] = STATE(176), + [sym_delete] = STATE(176), + [sym_superscript] = STATE(176), + [sym_subscript] = STATE(176), + [sym_footnote_reference] = STATE(176), + [sym__image] = STATE(176), + [sym_full_reference_image] = STATE(176), + [sym_collapsed_reference_image] = STATE(176), + [sym_inline_image] = STATE(176), + [sym__image_description] = STATE(690), + [sym__link] = STATE(176), + [sym_full_reference_link] = STATE(176), + [sym_collapsed_reference_link] = STATE(176), + [sym_inline_link] = STATE(176), + [sym_link_text] = STATE(691), + [sym__comment_with_spaces] = STATE(176), + [sym_span] = STATE(176), + [sym_raw_inline] = STATE(176), + [sym_math] = STATE(176), + [sym_verbatim] = STATE(176), + [sym__todo_highlights] = STATE(176), + [sym_todo] = STATE(176), + [sym_note] = STATE(176), + [sym__symbol_fallback] = STATE(176), + [aux_sym__text] = STATE(155), + [aux_sym__inline_repeat1] = STATE(87), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(210), + [anon_sym__] = ACTIONS(213), + [anon_sym_LBRACE_STAR] = ACTIONS(216), + [anon_sym_STAR] = ACTIONS(219), + [anon_sym_BSLASH] = ACTIONS(222), + [sym_quotation_marks] = ACTIONS(225), + [sym_ellipsis] = ACTIONS(225), + [sym_em_dash] = ACTIONS(225), + [sym_en_dash] = ACTIONS(228), + [sym_backslash_escape] = ACTIONS(228), + [anon_sym_LT] = ACTIONS(231), + [anon_sym_LBRACE_EQ] = ACTIONS(234), + [anon_sym_LBRACE_PLUS] = ACTIONS(237), + [anon_sym_LBRACE_DASH] = ACTIONS(240), + [anon_sym_DASH_RBRACE] = ACTIONS(84), + [sym_symbol] = ACTIONS(225), + [anon_sym_LBRACE_CARET] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(243), + [anon_sym_LBRACE_TILDE] = ACTIONS(246), + [anon_sym_TILDE] = ACTIONS(246), + [anon_sym_LBRACK_CARET] = ACTIONS(249), + [anon_sym_BANG_LBRACK] = ACTIONS(252), + [anon_sym_LBRACK] = ACTIONS(255), + [anon_sym_LBRACE2] = ACTIONS(228), + [anon_sym_DOLLAR] = ACTIONS(258), + [anon_sym_TODO] = ACTIONS(261), + [anon_sym_WIP] = ACTIONS(261), + [anon_sym_NOTE] = ACTIONS(264), + [anon_sym_INFO] = ACTIONS(264), + [anon_sym_XXX] = ACTIONS(264), + [sym_fixme] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(225), + [sym__whitespace1] = ACTIONS(267), + [sym__newline] = ACTIONS(270), + [aux_sym__text_token1] = ACTIONS(273), + [sym__verbatim_begin] = ACTIONS(276), + }, + [67] = { + [sym__inline] = STATE(986), + [sym__element] = STATE(118), + [sym_emphasis] = STATE(204), + [sym_emphasis_begin] = STATE(1017), + [sym_strong] = STATE(204), + [sym_strong_begin] = STATE(114), + [sym__hard_line_break] = STATE(204), + [sym_hard_line_break] = STATE(204), + [sym__smart_punctuation] = STATE(204), + [sym_autolink] = STATE(204), + [sym_highlighted] = STATE(204), + [sym_insert] = STATE(204), + [sym_delete] = STATE(204), + [sym_superscript] = STATE(204), + [sym_subscript] = STATE(204), + [sym_footnote_reference] = STATE(204), + [sym__image] = STATE(204), + [sym_full_reference_image] = STATE(204), + [sym_collapsed_reference_image] = STATE(204), + [sym_inline_image] = STATE(204), + [sym__image_description] = STATE(714), + [sym__link] = STATE(204), + [sym_full_reference_link] = STATE(204), + [sym_collapsed_reference_link] = STATE(204), + [sym_inline_link] = STATE(204), + [sym_link_text] = STATE(715), + [sym__comment_with_spaces] = STATE(204), + [sym_span] = STATE(204), + [sym_raw_inline] = STATE(204), + [sym_math] = STATE(204), + [sym_verbatim] = STATE(204), + [sym__todo_highlights] = STATE(204), + [sym_todo] = STATE(204), + [sym_note] = STATE(204), + [sym__symbol_fallback] = STATE(204), + [aux_sym__text] = STATE(149), + [aux_sym__inline_repeat1] = STATE(118), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(51), + [anon_sym__] = ACTIONS(54), + [anon_sym_LBRACE_STAR] = ACTIONS(57), + [anon_sym_STAR] = ACTIONS(60), + [anon_sym_BSLASH] = ACTIONS(63), + [sym_quotation_marks] = ACTIONS(66), + [sym_ellipsis] = ACTIONS(66), + [sym_em_dash] = ACTIONS(66), + [sym_en_dash] = ACTIONS(69), + [sym_backslash_escape] = ACTIONS(69), + [anon_sym_LT] = ACTIONS(72), + [anon_sym_LBRACE_EQ] = ACTIONS(75), + [anon_sym_LBRACE_PLUS] = ACTIONS(78), + [anon_sym_LBRACE_DASH] = ACTIONS(81), + [sym_symbol] = ACTIONS(66), + [anon_sym_LBRACE_CARET] = ACTIONS(86), + [anon_sym_CARET] = ACTIONS(86), + [anon_sym_LBRACE_TILDE] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(89), + [anon_sym_LBRACK_CARET] = ACTIONS(92), + [anon_sym_BANG_LBRACK] = ACTIONS(97), + [anon_sym_LBRACK] = ACTIONS(100), + [anon_sym_RBRACK2] = ACTIONS(84), + [anon_sym_LBRACE2] = ACTIONS(69), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_TODO] = ACTIONS(106), + [anon_sym_WIP] = ACTIONS(106), + [anon_sym_NOTE] = ACTIONS(109), + [anon_sym_INFO] = ACTIONS(109), + [anon_sym_XXX] = ACTIONS(109), + [sym_fixme] = ACTIONS(66), + [anon_sym_PIPE] = ACTIONS(66), + [sym__whitespace1] = ACTIONS(112), + [sym__newline] = ACTIONS(115), + [aux_sym__text_token1] = ACTIONS(118), + [sym__verbatim_begin] = ACTIONS(121), + }, + [68] = { + [sym__inline] = STATE(903), + [sym__element] = STATE(83), + [sym_emphasis] = STATE(211), + [sym_emphasis_begin] = STATE(1014), + [sym_strong] = STATE(211), + [sym_strong_begin] = STATE(121), + [sym__hard_line_break] = STATE(211), + [sym_hard_line_break] = STATE(211), + [sym__smart_punctuation] = STATE(211), + [sym_autolink] = STATE(211), + [sym_highlighted] = STATE(211), + [sym_insert] = STATE(211), + [sym_delete] = STATE(211), + [sym_superscript] = STATE(211), + [sym_subscript] = STATE(211), + [sym_footnote_reference] = STATE(211), + [sym__image] = STATE(211), + [sym_full_reference_image] = STATE(211), + [sym_collapsed_reference_image] = STATE(211), + [sym_inline_image] = STATE(211), + [sym__image_description] = STATE(693), + [sym__link] = STATE(211), + [sym_full_reference_link] = STATE(211), + [sym_collapsed_reference_link] = STATE(211), + [sym_inline_link] = STATE(211), + [sym_link_text] = STATE(694), + [sym__comment_with_spaces] = STATE(211), + [sym_span] = STATE(211), + [sym_raw_inline] = STATE(211), + [sym_math] = STATE(211), + [sym_verbatim] = STATE(211), + [sym__todo_highlights] = STATE(211), + [sym_todo] = STATE(211), + [sym_note] = STATE(211), + [sym__symbol_fallback] = STATE(211), + [aux_sym__text] = STATE(137), + [aux_sym__inline_repeat1] = STATE(83), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(285), + [anon_sym__] = ACTIONS(288), + [anon_sym_LBRACE_STAR] = ACTIONS(291), + [anon_sym_STAR] = ACTIONS(294), + [anon_sym_BSLASH] = ACTIONS(297), + [sym_quotation_marks] = ACTIONS(300), + [sym_ellipsis] = ACTIONS(300), + [sym_em_dash] = ACTIONS(300), + [sym_en_dash] = ACTIONS(303), + [sym_backslash_escape] = ACTIONS(303), + [anon_sym_LT] = ACTIONS(306), + [anon_sym_LBRACE_EQ] = ACTIONS(309), + [anon_sym_LBRACE_PLUS] = ACTIONS(312), + [anon_sym_LBRACE_DASH] = ACTIONS(315), + [anon_sym_DASH_RBRACE] = ACTIONS(84), + [sym_symbol] = ACTIONS(300), + [anon_sym_LBRACE_CARET] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_LBRACE_TILDE] = ACTIONS(321), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_LBRACK_CARET] = ACTIONS(324), + [anon_sym_BANG_LBRACK] = ACTIONS(327), + [anon_sym_LBRACK] = ACTIONS(330), + [anon_sym_LBRACE2] = ACTIONS(303), + [anon_sym_DOLLAR] = ACTIONS(333), + [anon_sym_TODO] = ACTIONS(336), + [anon_sym_WIP] = ACTIONS(336), + [anon_sym_NOTE] = ACTIONS(339), + [anon_sym_INFO] = ACTIONS(339), + [anon_sym_XXX] = ACTIONS(339), + [sym_fixme] = ACTIONS(300), + [anon_sym_PIPE] = ACTIONS(300), + [sym__whitespace1] = ACTIONS(342), + [sym__newline] = ACTIONS(345), + [aux_sym__text_token1] = ACTIONS(348), + [sym__verbatim_begin] = ACTIONS(351), + }, + [69] = { + [sym__inline] = STATE(802), + [sym__element] = STATE(79), + [sym_emphasis] = STATE(172), + [sym_emphasis_begin] = STATE(1015), + [sym_strong] = STATE(172), + [sym_strong_begin] = STATE(125), + [sym__hard_line_break] = STATE(172), + [sym_hard_line_break] = STATE(172), + [sym__smart_punctuation] = STATE(172), + [sym_autolink] = STATE(172), + [sym_highlighted] = STATE(172), + [sym_insert] = STATE(172), + [sym_delete] = STATE(172), + [sym_superscript] = STATE(172), + [sym_subscript] = STATE(172), + [sym_footnote_reference] = STATE(172), + [sym__image] = STATE(172), + [sym_full_reference_image] = STATE(172), + [sym_collapsed_reference_image] = STATE(172), + [sym_inline_image] = STATE(172), + [sym__image_description] = STATE(711), + [sym__link] = STATE(172), + [sym_full_reference_link] = STATE(172), + [sym_collapsed_reference_link] = STATE(172), + [sym_inline_link] = STATE(172), + [sym_link_text] = STATE(712), + [sym__comment_with_spaces] = STATE(172), + [sym_span] = STATE(172), + [sym_raw_inline] = STATE(172), + [sym_math] = STATE(172), + [sym_verbatim] = STATE(172), + [sym__todo_highlights] = STATE(172), + [sym_todo] = STATE(172), + [sym_note] = STATE(172), + [sym__symbol_fallback] = STATE(172), + [aux_sym__text] = STATE(170), + [aux_sym__inline_repeat1] = STATE(79), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(354), + [anon_sym__] = ACTIONS(357), + [anon_sym_LBRACE_STAR] = ACTIONS(360), + [anon_sym_STAR] = ACTIONS(561), + [aux_sym_strong_end_token1] = ACTIONS(84), + [anon_sym_BSLASH] = ACTIONS(366), + [sym_quotation_marks] = ACTIONS(369), + [sym_ellipsis] = ACTIONS(369), + [sym_em_dash] = ACTIONS(369), + [sym_en_dash] = ACTIONS(372), + [sym_backslash_escape] = ACTIONS(372), + [anon_sym_LT] = ACTIONS(375), + [anon_sym_LBRACE_EQ] = ACTIONS(378), + [anon_sym_LBRACE_PLUS] = ACTIONS(381), + [anon_sym_LBRACE_DASH] = ACTIONS(384), + [sym_symbol] = ACTIONS(369), + [anon_sym_LBRACE_CARET] = ACTIONS(387), + [anon_sym_CARET] = ACTIONS(387), + [anon_sym_LBRACE_TILDE] = ACTIONS(390), + [anon_sym_TILDE] = ACTIONS(390), + [anon_sym_LBRACK_CARET] = ACTIONS(393), + [anon_sym_BANG_LBRACK] = ACTIONS(396), + [anon_sym_LBRACK] = ACTIONS(399), + [anon_sym_LBRACE2] = ACTIONS(372), + [anon_sym_DOLLAR] = ACTIONS(402), + [anon_sym_TODO] = ACTIONS(405), + [anon_sym_WIP] = ACTIONS(405), + [anon_sym_NOTE] = ACTIONS(408), + [anon_sym_INFO] = ACTIONS(408), + [anon_sym_XXX] = ACTIONS(408), + [sym_fixme] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(369), + [sym__whitespace1] = ACTIONS(540), + [sym__newline] = ACTIONS(414), + [aux_sym__text_token1] = ACTIONS(417), + [sym__verbatim_begin] = ACTIONS(420), + }, + [70] = { + [sym__inline] = STATE(762), + [sym__element] = STATE(117), [sym_emphasis] = STATE(182), - [sym_emphasis_begin] = STATE(898), + [sym_emphasis_begin] = STATE(1016), [sym_strong] = STATE(182), - [sym_strong_begin] = STATE(104), + [sym_strong_begin] = STATE(122), [sym__hard_line_break] = STATE(182), [sym_hard_line_break] = STATE(182), [sym__smart_punctuation] = STATE(182), @@ -9181,12 +13697,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_full_reference_image] = STATE(182), [sym_collapsed_reference_image] = STATE(182), [sym_inline_image] = STATE(182), - [sym__image_description] = STATE(610), + [sym__image_description] = STATE(692), [sym__link] = STATE(182), [sym_full_reference_link] = STATE(182), [sym_collapsed_reference_link] = STATE(182), [sym_inline_link] = STATE(182), - [sym_link_text] = STATE(608), + [sym_link_text] = STATE(689), [sym__comment_with_spaces] = STATE(182), [sym_span] = STATE(182), [sym_raw_inline] = STATE(182), @@ -9196,205 +13712,580 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(182), [sym_note] = STATE(182), [sym__symbol_fallback] = STATE(182), - [aux_sym__text] = STATE(144), - [aux_sym__inline_repeat1] = STATE(97), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_] = ACTIONS(49), - [anon_sym__] = ACTIONS(52), - [anon_sym_LBRACE_STAR] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(119), - [aux_sym_strong_end_token1] = ACTIONS(79), - [anon_sym_BSLASH] = ACTIONS(61), - [sym_quotation_marks] = ACTIONS(52), - [sym_ellipsis] = ACTIONS(52), - [sym_em_dash] = ACTIONS(52), - [sym_en_dash] = ACTIONS(64), - [sym_backslash_escape] = ACTIONS(64), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_LBRACE_EQ] = ACTIONS(70), - [anon_sym_LBRACE_PLUS] = ACTIONS(73), - [anon_sym_LBRACE_DASH] = ACTIONS(76), - [sym_symbol] = ACTIONS(52), - [anon_sym_LBRACE_CARET] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(81), - [anon_sym_LBRACE_TILDE] = ACTIONS(84), - [anon_sym_TILDE] = ACTIONS(84), - [anon_sym_LBRACK_CARET] = ACTIONS(87), - [anon_sym_BANG_LBRACK] = ACTIONS(92), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LBRACE2] = ACTIONS(64), - [anon_sym_DOLLAR] = ACTIONS(98), - [anon_sym_TODO] = ACTIONS(101), - [anon_sym_WIP] = ACTIONS(101), - [anon_sym_NOTE] = ACTIONS(104), - [anon_sym_INFO] = ACTIONS(104), - [anon_sym_XXX] = ACTIONS(104), - [sym_fixme] = ACTIONS(52), - [anon_sym_PIPE] = ACTIONS(52), - [sym__whitespace1] = ACTIONS(122), - [sym__newline] = ACTIONS(110), - [aux_sym__text_token1] = ACTIONS(113), - [sym__verbatim_begin] = ACTIONS(116), + [aux_sym__text] = STATE(153), + [aux_sym__inline_repeat1] = STATE(117), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(423), + [anon_sym__] = ACTIONS(426), + [anon_sym_LBRACE_STAR] = ACTIONS(429), + [anon_sym_STAR] = ACTIONS(432), + [anon_sym_BSLASH] = ACTIONS(435), + [sym_quotation_marks] = ACTIONS(438), + [sym_ellipsis] = ACTIONS(438), + [sym_em_dash] = ACTIONS(438), + [sym_en_dash] = ACTIONS(441), + [sym_backslash_escape] = ACTIONS(441), + [anon_sym_LT] = ACTIONS(444), + [anon_sym_LBRACE_EQ] = ACTIONS(447), + [anon_sym_LBRACE_PLUS] = ACTIONS(450), + [anon_sym_LBRACE_DASH] = ACTIONS(453), + [sym_symbol] = ACTIONS(438), + [anon_sym_LBRACE_CARET] = ACTIONS(456), + [anon_sym_CARET] = ACTIONS(456), + [anon_sym_LBRACE_TILDE] = ACTIONS(459), + [anon_sym_TILDE] = ACTIONS(459), + [anon_sym_LBRACK_CARET] = ACTIONS(462), + [anon_sym_BANG_LBRACK] = ACTIONS(465), + [anon_sym_LBRACK] = ACTIONS(468), + [anon_sym_RBRACK2] = ACTIONS(84), + [anon_sym_LBRACE2] = ACTIONS(441), + [anon_sym_DOLLAR] = ACTIONS(471), + [anon_sym_TODO] = ACTIONS(474), + [anon_sym_WIP] = ACTIONS(474), + [anon_sym_NOTE] = ACTIONS(477), + [anon_sym_INFO] = ACTIONS(477), + [anon_sym_XXX] = ACTIONS(477), + [sym_fixme] = ACTIONS(438), + [anon_sym_PIPE] = ACTIONS(438), + [sym__whitespace1] = ACTIONS(480), + [sym__newline] = ACTIONS(483), + [aux_sym__text_token1] = ACTIONS(486), + [sym__verbatim_begin] = ACTIONS(489), }, - [21] = { - [sym__inline] = STATE(861), - [sym__element] = STATE(78), - [sym_emphasis] = STATE(167), - [sym_emphasis_begin] = STATE(894), - [sym_strong] = STATE(167), - [sym_strong_begin] = STATE(117), - [sym__hard_line_break] = STATE(167), - [sym_hard_line_break] = STATE(167), - [sym__smart_punctuation] = STATE(167), - [sym_autolink] = STATE(167), - [sym_highlighted] = STATE(167), - [sym_insert] = STATE(167), - [sym_delete] = STATE(167), - [sym_superscript] = STATE(167), - [sym_subscript] = STATE(167), - [sym_footnote_reference] = STATE(167), - [sym__image] = STATE(167), - [sym_full_reference_image] = STATE(167), - [sym_collapsed_reference_image] = STATE(167), - [sym_inline_image] = STATE(167), - [sym__image_description] = STATE(613), - [sym__link] = STATE(167), - [sym_full_reference_link] = STATE(167), - [sym_collapsed_reference_link] = STATE(167), - [sym_inline_link] = STATE(167), - [sym_link_text] = STATE(614), - [sym__comment_with_spaces] = STATE(167), - [sym_span] = STATE(167), - [sym_raw_inline] = STATE(167), - [sym_math] = STATE(167), - [sym_verbatim] = STATE(167), - [sym__todo_highlights] = STATE(167), - [sym_todo] = STATE(167), - [sym_note] = STATE(167), - [sym__symbol_fallback] = STATE(167), - [aux_sym__text] = STATE(130), - [aux_sym__inline_repeat1] = STATE(78), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_] = ACTIONS(199), - [anon_sym__] = ACTIONS(202), - [anon_sym_LBRACE_STAR] = ACTIONS(205), - [anon_sym_STAR] = ACTIONS(208), - [anon_sym_BSLASH] = ACTIONS(211), - [sym_quotation_marks] = ACTIONS(202), - [sym_ellipsis] = ACTIONS(202), - [sym_em_dash] = ACTIONS(202), - [sym_en_dash] = ACTIONS(214), - [sym_backslash_escape] = ACTIONS(214), - [anon_sym_LT] = ACTIONS(217), - [anon_sym_LBRACE_EQ] = ACTIONS(220), - [anon_sym_LBRACE_PLUS] = ACTIONS(223), - [anon_sym_PLUS_RBRACE] = ACTIONS(79), - [anon_sym_LBRACE_DASH] = ACTIONS(226), - [sym_symbol] = ACTIONS(202), - [anon_sym_LBRACE_CARET] = ACTIONS(229), - [anon_sym_CARET] = ACTIONS(229), - [anon_sym_LBRACE_TILDE] = ACTIONS(232), - [anon_sym_TILDE] = ACTIONS(232), - [anon_sym_LBRACK_CARET] = ACTIONS(235), - [anon_sym_BANG_LBRACK] = ACTIONS(238), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_LBRACE2] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(244), - [anon_sym_TODO] = ACTIONS(247), - [anon_sym_WIP] = ACTIONS(247), - [anon_sym_NOTE] = ACTIONS(250), - [anon_sym_INFO] = ACTIONS(250), - [anon_sym_XXX] = ACTIONS(250), - [sym_fixme] = ACTIONS(202), - [anon_sym_PIPE] = ACTIONS(202), - [sym__whitespace1] = ACTIONS(253), - [sym__newline] = ACTIONS(256), - [aux_sym__text_token1] = ACTIONS(259), - [sym__verbatim_begin] = ACTIONS(262), + [71] = { + [sym__inline] = STATE(765), + [sym__element] = STATE(79), + [sym_emphasis] = STATE(172), + [sym_emphasis_begin] = STATE(1015), + [sym_strong] = STATE(172), + [sym_strong_begin] = STATE(125), + [sym__hard_line_break] = STATE(172), + [sym_hard_line_break] = STATE(172), + [sym__smart_punctuation] = STATE(172), + [sym_autolink] = STATE(172), + [sym_highlighted] = STATE(172), + [sym_insert] = STATE(172), + [sym_delete] = STATE(172), + [sym_superscript] = STATE(172), + [sym_subscript] = STATE(172), + [sym_footnote_reference] = STATE(172), + [sym__image] = STATE(172), + [sym_full_reference_image] = STATE(172), + [sym_collapsed_reference_image] = STATE(172), + [sym_inline_image] = STATE(172), + [sym__image_description] = STATE(711), + [sym__link] = STATE(172), + [sym_full_reference_link] = STATE(172), + [sym_collapsed_reference_link] = STATE(172), + [sym_inline_link] = STATE(172), + [sym_link_text] = STATE(712), + [sym__comment_with_spaces] = STATE(172), + [sym_span] = STATE(172), + [sym_raw_inline] = STATE(172), + [sym_math] = STATE(172), + [sym_verbatim] = STATE(172), + [sym__todo_highlights] = STATE(172), + [sym_todo] = STATE(172), + [sym_note] = STATE(172), + [sym__symbol_fallback] = STATE(172), + [aux_sym__text] = STATE(170), + [aux_sym__inline_repeat1] = STATE(79), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(354), + [anon_sym__] = ACTIONS(357), + [anon_sym_LBRACE_STAR] = ACTIONS(360), + [anon_sym_STAR] = ACTIONS(363), + [anon_sym_BSLASH] = ACTIONS(366), + [sym_quotation_marks] = ACTIONS(369), + [sym_ellipsis] = ACTIONS(369), + [sym_em_dash] = ACTIONS(369), + [sym_en_dash] = ACTIONS(372), + [sym_backslash_escape] = ACTIONS(372), + [anon_sym_LT] = ACTIONS(375), + [anon_sym_LBRACE_EQ] = ACTIONS(378), + [anon_sym_LBRACE_PLUS] = ACTIONS(381), + [anon_sym_LBRACE_DASH] = ACTIONS(384), + [sym_symbol] = ACTIONS(369), + [anon_sym_LBRACE_CARET] = ACTIONS(387), + [anon_sym_CARET] = ACTIONS(387), + [anon_sym_LBRACE_TILDE] = ACTIONS(390), + [anon_sym_TILDE] = ACTIONS(390), + [anon_sym_LBRACK_CARET] = ACTIONS(393), + [anon_sym_BANG_LBRACK] = ACTIONS(396), + [anon_sym_LBRACK] = ACTIONS(399), + [anon_sym_RBRACK2] = ACTIONS(84), + [anon_sym_LBRACE2] = ACTIONS(372), + [anon_sym_DOLLAR] = ACTIONS(402), + [anon_sym_TODO] = ACTIONS(405), + [anon_sym_WIP] = ACTIONS(405), + [anon_sym_NOTE] = ACTIONS(408), + [anon_sym_INFO] = ACTIONS(408), + [anon_sym_XXX] = ACTIONS(408), + [sym_fixme] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(369), + [sym__whitespace1] = ACTIONS(411), + [sym__newline] = ACTIONS(414), + [aux_sym__text_token1] = ACTIONS(417), + [sym__verbatim_begin] = ACTIONS(420), }, - [22] = { - [sym__inline] = STATE(864), - [sym__element] = STATE(107), - [sym_emphasis] = STATE(187), - [sym_emphasis_begin] = STATE(893), - [sym_strong] = STATE(187), - [sym_strong_begin] = STATE(119), - [sym__hard_line_break] = STATE(187), - [sym_hard_line_break] = STATE(187), - [sym__smart_punctuation] = STATE(187), - [sym_autolink] = STATE(187), - [sym_highlighted] = STATE(187), - [sym_insert] = STATE(187), - [sym_delete] = STATE(187), - [sym_superscript] = STATE(187), - [sym_subscript] = STATE(187), - [sym_footnote_reference] = STATE(187), - [sym__image] = STATE(187), - [sym_full_reference_image] = STATE(187), - [sym_collapsed_reference_image] = STATE(187), - [sym_inline_image] = STATE(187), - [sym__image_description] = STATE(616), - [sym__link] = STATE(187), - [sym_full_reference_link] = STATE(187), - [sym_collapsed_reference_link] = STATE(187), - [sym_inline_link] = STATE(187), - [sym_link_text] = STATE(634), - [sym__comment_with_spaces] = STATE(187), - [sym_span] = STATE(187), - [sym_raw_inline] = STATE(187), - [sym_math] = STATE(187), - [sym_verbatim] = STATE(187), - [sym__todo_highlights] = STATE(187), - [sym_todo] = STATE(187), - [sym_note] = STATE(187), - [sym__symbol_fallback] = STATE(187), - [aux_sym__text] = STATE(131), - [aux_sym__inline_repeat1] = STATE(107), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_] = ACTIONS(265), - [anon_sym__] = ACTIONS(268), - [anon_sym_LBRACE_STAR] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(274), - [anon_sym_BSLASH] = ACTIONS(277), - [sym_quotation_marks] = ACTIONS(268), - [sym_ellipsis] = ACTIONS(268), - [sym_em_dash] = ACTIONS(268), - [sym_en_dash] = ACTIONS(280), - [sym_backslash_escape] = ACTIONS(280), - [anon_sym_LT] = ACTIONS(283), - [anon_sym_LBRACE_EQ] = ACTIONS(286), - [anon_sym_LBRACE_PLUS] = ACTIONS(289), - [anon_sym_PLUS_RBRACE] = ACTIONS(79), - [anon_sym_LBRACE_DASH] = ACTIONS(292), - [sym_symbol] = ACTIONS(268), - [anon_sym_LBRACE_CARET] = ACTIONS(295), - [anon_sym_CARET] = ACTIONS(295), - [anon_sym_LBRACE_TILDE] = ACTIONS(298), - [anon_sym_TILDE] = ACTIONS(298), - [anon_sym_LBRACK_CARET] = ACTIONS(301), - [anon_sym_BANG_LBRACK] = ACTIONS(304), - [anon_sym_LBRACK] = ACTIONS(307), - [anon_sym_LBRACE2] = ACTIONS(280), - [anon_sym_DOLLAR] = ACTIONS(310), - [anon_sym_TODO] = ACTIONS(313), - [anon_sym_WIP] = ACTIONS(313), - [anon_sym_NOTE] = ACTIONS(316), - [anon_sym_INFO] = ACTIONS(316), - [anon_sym_XXX] = ACTIONS(316), - [sym_fixme] = ACTIONS(268), - [anon_sym_PIPE] = ACTIONS(268), - [sym__whitespace1] = ACTIONS(319), - [sym__newline] = ACTIONS(322), - [aux_sym__text_token1] = ACTIONS(325), - [sym__verbatim_begin] = ACTIONS(328), + [72] = { + [sym__inline] = STATE(854), + [sym__element] = STATE(83), + [sym_emphasis] = STATE(211), + [sym_emphasis_begin] = STATE(1014), + [sym_strong] = STATE(211), + [sym_strong_begin] = STATE(121), + [sym__hard_line_break] = STATE(211), + [sym_hard_line_break] = STATE(211), + [sym__smart_punctuation] = STATE(211), + [sym_autolink] = STATE(211), + [sym_highlighted] = STATE(211), + [sym_insert] = STATE(211), + [sym_delete] = STATE(211), + [sym_superscript] = STATE(211), + [sym_subscript] = STATE(211), + [sym_footnote_reference] = STATE(211), + [sym__image] = STATE(211), + [sym_full_reference_image] = STATE(211), + [sym_collapsed_reference_image] = STATE(211), + [sym_inline_image] = STATE(211), + [sym__image_description] = STATE(693), + [sym__link] = STATE(211), + [sym_full_reference_link] = STATE(211), + [sym_collapsed_reference_link] = STATE(211), + [sym_inline_link] = STATE(211), + [sym_link_text] = STATE(694), + [sym__comment_with_spaces] = STATE(211), + [sym_span] = STATE(211), + [sym_raw_inline] = STATE(211), + [sym_math] = STATE(211), + [sym_verbatim] = STATE(211), + [sym__todo_highlights] = STATE(211), + [sym_todo] = STATE(211), + [sym_note] = STATE(211), + [sym__symbol_fallback] = STATE(211), + [aux_sym__text] = STATE(137), + [aux_sym__inline_repeat1] = STATE(83), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(285), + [anon_sym__] = ACTIONS(288), + [anon_sym_LBRACE_STAR] = ACTIONS(291), + [anon_sym_STAR] = ACTIONS(294), + [anon_sym_BSLASH] = ACTIONS(297), + [sym_quotation_marks] = ACTIONS(300), + [sym_ellipsis] = ACTIONS(300), + [sym_em_dash] = ACTIONS(300), + [sym_en_dash] = ACTIONS(303), + [sym_backslash_escape] = ACTIONS(303), + [anon_sym_LT] = ACTIONS(306), + [anon_sym_LBRACE_EQ] = ACTIONS(309), + [anon_sym_LBRACE_PLUS] = ACTIONS(312), + [anon_sym_LBRACE_DASH] = ACTIONS(315), + [sym_symbol] = ACTIONS(300), + [anon_sym_LBRACE_CARET] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_LBRACE_TILDE] = ACTIONS(321), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_LBRACK_CARET] = ACTIONS(324), + [anon_sym_BANG_LBRACK] = ACTIONS(327), + [anon_sym_LBRACK] = ACTIONS(330), + [anon_sym_RBRACK2] = ACTIONS(84), + [anon_sym_LBRACE2] = ACTIONS(303), + [anon_sym_DOLLAR] = ACTIONS(333), + [anon_sym_TODO] = ACTIONS(336), + [anon_sym_WIP] = ACTIONS(336), + [anon_sym_NOTE] = ACTIONS(339), + [anon_sym_INFO] = ACTIONS(339), + [anon_sym_XXX] = ACTIONS(339), + [sym_fixme] = ACTIONS(300), + [anon_sym_PIPE] = ACTIONS(300), + [sym__whitespace1] = ACTIONS(342), + [sym__newline] = ACTIONS(345), + [aux_sym__text_token1] = ACTIONS(348), + [sym__verbatim_begin] = ACTIONS(351), }, - [23] = { - [sym__inline] = STATE(823), - [sym__element] = STATE(97), + [73] = { + [sym__inline] = STATE(751), + [sym__element] = STATE(79), + [sym_emphasis] = STATE(172), + [sym_emphasis_begin] = STATE(1015), + [sym_strong] = STATE(172), + [sym_strong_begin] = STATE(125), + [sym__hard_line_break] = STATE(172), + [sym_hard_line_break] = STATE(172), + [sym__smart_punctuation] = STATE(172), + [sym_autolink] = STATE(172), + [sym_highlighted] = STATE(172), + [sym_insert] = STATE(172), + [sym_delete] = STATE(172), + [sym_superscript] = STATE(172), + [sym_subscript] = STATE(172), + [sym_footnote_reference] = STATE(172), + [sym__image] = STATE(172), + [sym_full_reference_image] = STATE(172), + [sym_collapsed_reference_image] = STATE(172), + [sym_inline_image] = STATE(172), + [sym__image_description] = STATE(711), + [sym__link] = STATE(172), + [sym_full_reference_link] = STATE(172), + [sym_collapsed_reference_link] = STATE(172), + [sym_inline_link] = STATE(172), + [sym_link_text] = STATE(712), + [sym__comment_with_spaces] = STATE(172), + [sym_span] = STATE(172), + [sym_raw_inline] = STATE(172), + [sym_math] = STATE(172), + [sym_verbatim] = STATE(172), + [sym__todo_highlights] = STATE(172), + [sym_todo] = STATE(172), + [sym_note] = STATE(172), + [sym__symbol_fallback] = STATE(172), + [aux_sym__text] = STATE(170), + [aux_sym__inline_repeat1] = STATE(79), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(354), + [anon_sym__] = ACTIONS(357), + [anon_sym_LBRACE_STAR] = ACTIONS(360), + [anon_sym_STAR] = ACTIONS(363), + [anon_sym_BSLASH] = ACTIONS(366), + [sym_quotation_marks] = ACTIONS(369), + [sym_ellipsis] = ACTIONS(369), + [sym_em_dash] = ACTIONS(369), + [sym_en_dash] = ACTIONS(372), + [sym_backslash_escape] = ACTIONS(372), + [anon_sym_LT] = ACTIONS(375), + [anon_sym_LBRACE_EQ] = ACTIONS(378), + [anon_sym_LBRACE_PLUS] = ACTIONS(381), + [anon_sym_LBRACE_DASH] = ACTIONS(384), + [sym_symbol] = ACTIONS(369), + [anon_sym_LBRACE_CARET] = ACTIONS(387), + [anon_sym_CARET] = ACTIONS(387), + [anon_sym_LBRACE_TILDE] = ACTIONS(390), + [anon_sym_TILDE] = ACTIONS(390), + [anon_sym_LBRACK_CARET] = ACTIONS(393), + [anon_sym_BANG_LBRACK] = ACTIONS(396), + [anon_sym_LBRACK] = ACTIONS(399), + [anon_sym_LBRACE2] = ACTIONS(372), + [anon_sym_DOLLAR] = ACTIONS(402), + [anon_sym_TODO] = ACTIONS(405), + [anon_sym_WIP] = ACTIONS(405), + [anon_sym_NOTE] = ACTIONS(408), + [anon_sym_INFO] = ACTIONS(408), + [anon_sym_XXX] = ACTIONS(408), + [sym_fixme] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(369), + [sym__whitespace1] = ACTIONS(411), + [sym__newline] = ACTIONS(414), + [aux_sym__text_token1] = ACTIONS(417), + [sym__verbatim_begin] = ACTIONS(420), + }, + [74] = { + [sym__inline] = STATE(877), + [sym__element] = STATE(83), + [sym_emphasis] = STATE(211), + [sym_emphasis_begin] = STATE(1014), + [sym_strong] = STATE(211), + [sym_strong_begin] = STATE(121), + [sym__hard_line_break] = STATE(211), + [sym_hard_line_break] = STATE(211), + [sym__smart_punctuation] = STATE(211), + [sym_autolink] = STATE(211), + [sym_highlighted] = STATE(211), + [sym_insert] = STATE(211), + [sym_delete] = STATE(211), + [sym_superscript] = STATE(211), + [sym_subscript] = STATE(211), + [sym_footnote_reference] = STATE(211), + [sym__image] = STATE(211), + [sym_full_reference_image] = STATE(211), + [sym_collapsed_reference_image] = STATE(211), + [sym_inline_image] = STATE(211), + [sym__image_description] = STATE(693), + [sym__link] = STATE(211), + [sym_full_reference_link] = STATE(211), + [sym_collapsed_reference_link] = STATE(211), + [sym_inline_link] = STATE(211), + [sym_link_text] = STATE(694), + [sym__comment_with_spaces] = STATE(211), + [sym_span] = STATE(211), + [sym_raw_inline] = STATE(211), + [sym_math] = STATE(211), + [sym_verbatim] = STATE(211), + [sym__todo_highlights] = STATE(211), + [sym_todo] = STATE(211), + [sym_note] = STATE(211), + [sym__symbol_fallback] = STATE(211), + [aux_sym__text] = STATE(137), + [aux_sym__inline_repeat1] = STATE(83), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(285), + [anon_sym__] = ACTIONS(288), + [anon_sym_LBRACE_STAR] = ACTIONS(291), + [anon_sym_STAR] = ACTIONS(294), + [anon_sym_BSLASH] = ACTIONS(297), + [sym_quotation_marks] = ACTIONS(300), + [sym_ellipsis] = ACTIONS(300), + [sym_em_dash] = ACTIONS(300), + [sym_en_dash] = ACTIONS(303), + [sym_backslash_escape] = ACTIONS(303), + [anon_sym_LT] = ACTIONS(306), + [anon_sym_LBRACE_EQ] = ACTIONS(309), + [anon_sym_LBRACE_PLUS] = ACTIONS(312), + [anon_sym_LBRACE_DASH] = ACTIONS(315), + [sym_symbol] = ACTIONS(300), + [anon_sym_LBRACE_CARET] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_LBRACE_TILDE] = ACTIONS(321), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_LBRACK_CARET] = ACTIONS(324), + [anon_sym_BANG_LBRACK] = ACTIONS(327), + [anon_sym_LBRACK] = ACTIONS(330), + [anon_sym_LBRACE2] = ACTIONS(303), + [anon_sym_DOLLAR] = ACTIONS(333), + [anon_sym_TODO] = ACTIONS(336), + [anon_sym_WIP] = ACTIONS(336), + [anon_sym_NOTE] = ACTIONS(339), + [anon_sym_INFO] = ACTIONS(339), + [anon_sym_XXX] = ACTIONS(339), + [sym_fixme] = ACTIONS(300), + [anon_sym_PIPE] = ACTIONS(300), + [sym__whitespace1] = ACTIONS(342), + [sym__newline] = ACTIONS(345), + [aux_sym__text_token1] = ACTIONS(348), + [sym__verbatim_begin] = ACTIONS(351), + }, + [75] = { + [sym__inline] = STATE(876), + [sym__element] = STATE(87), + [sym_emphasis] = STATE(176), + [sym_emphasis_begin] = STATE(1013), + [sym_strong] = STATE(176), + [sym_strong_begin] = STATE(97), + [sym__hard_line_break] = STATE(176), + [sym_hard_line_break] = STATE(176), + [sym__smart_punctuation] = STATE(176), + [sym_autolink] = STATE(176), + [sym_highlighted] = STATE(176), + [sym_insert] = STATE(176), + [sym_delete] = STATE(176), + [sym_superscript] = STATE(176), + [sym_subscript] = STATE(176), + [sym_footnote_reference] = STATE(176), + [sym__image] = STATE(176), + [sym_full_reference_image] = STATE(176), + [sym_collapsed_reference_image] = STATE(176), + [sym_inline_image] = STATE(176), + [sym__image_description] = STATE(690), + [sym__link] = STATE(176), + [sym_full_reference_link] = STATE(176), + [sym_collapsed_reference_link] = STATE(176), + [sym_inline_link] = STATE(176), + [sym_link_text] = STATE(691), + [sym__comment_with_spaces] = STATE(176), + [sym_span] = STATE(176), + [sym_raw_inline] = STATE(176), + [sym_math] = STATE(176), + [sym_verbatim] = STATE(176), + [sym__todo_highlights] = STATE(176), + [sym_todo] = STATE(176), + [sym_note] = STATE(176), + [sym__symbol_fallback] = STATE(176), + [aux_sym__text] = STATE(155), + [aux_sym__inline_repeat1] = STATE(87), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(210), + [anon_sym__] = ACTIONS(213), + [anon_sym_LBRACE_STAR] = ACTIONS(216), + [anon_sym_STAR] = ACTIONS(219), + [anon_sym_BSLASH] = ACTIONS(222), + [sym_quotation_marks] = ACTIONS(225), + [sym_ellipsis] = ACTIONS(225), + [sym_em_dash] = ACTIONS(225), + [sym_en_dash] = ACTIONS(228), + [sym_backslash_escape] = ACTIONS(228), + [anon_sym_LT] = ACTIONS(231), + [anon_sym_LBRACE_EQ] = ACTIONS(234), + [anon_sym_LBRACE_PLUS] = ACTIONS(237), + [anon_sym_LBRACE_DASH] = ACTIONS(240), + [sym_symbol] = ACTIONS(225), + [anon_sym_LBRACE_CARET] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(243), + [anon_sym_LBRACE_TILDE] = ACTIONS(246), + [anon_sym_TILDE] = ACTIONS(246), + [anon_sym_LBRACK_CARET] = ACTIONS(249), + [anon_sym_BANG_LBRACK] = ACTIONS(252), + [anon_sym_LBRACK] = ACTIONS(255), + [anon_sym_LBRACE2] = ACTIONS(228), + [anon_sym_DOLLAR] = ACTIONS(258), + [anon_sym_TODO] = ACTIONS(261), + [anon_sym_WIP] = ACTIONS(261), + [anon_sym_NOTE] = ACTIONS(264), + [anon_sym_INFO] = ACTIONS(264), + [anon_sym_XXX] = ACTIONS(264), + [sym_fixme] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(225), + [sym__whitespace1] = ACTIONS(267), + [sym__newline] = ACTIONS(270), + [aux_sym__text_token1] = ACTIONS(273), + [sym__verbatim_begin] = ACTIONS(276), + }, + [76] = { + [sym__inline] = STATE(875), + [sym__element] = STATE(95), + [sym_emphasis] = STATE(215), + [sym_emphasis_begin] = STATE(1012), + [sym_strong] = STATE(215), + [sym_strong_begin] = STATE(128), + [sym__hard_line_break] = STATE(215), + [sym_hard_line_break] = STATE(215), + [sym__smart_punctuation] = STATE(215), + [sym_autolink] = STATE(215), + [sym_highlighted] = STATE(215), + [sym_insert] = STATE(215), + [sym_delete] = STATE(215), + [sym_superscript] = STATE(215), + [sym_subscript] = STATE(215), + [sym_footnote_reference] = STATE(215), + [sym__image] = STATE(215), + [sym_full_reference_image] = STATE(215), + [sym_collapsed_reference_image] = STATE(215), + [sym_inline_image] = STATE(215), + [sym__image_description] = STATE(696), + [sym__link] = STATE(215), + [sym_full_reference_link] = STATE(215), + [sym_collapsed_reference_link] = STATE(215), + [sym_inline_link] = STATE(215), + [sym_link_text] = STATE(705), + [sym__comment_with_spaces] = STATE(215), + [sym_span] = STATE(215), + [sym_raw_inline] = STATE(215), + [sym_math] = STATE(215), + [sym_verbatim] = STATE(215), + [sym__todo_highlights] = STATE(215), + [sym_todo] = STATE(215), + [sym_note] = STATE(215), + [sym__symbol_fallback] = STATE(215), + [aux_sym__text] = STATE(141), + [aux_sym__inline_repeat1] = STATE(95), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(141), + [anon_sym__] = ACTIONS(144), + [anon_sym_LBRACE_STAR] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(150), + [anon_sym_BSLASH] = ACTIONS(153), + [sym_quotation_marks] = ACTIONS(156), + [sym_ellipsis] = ACTIONS(156), + [sym_em_dash] = ACTIONS(156), + [sym_en_dash] = ACTIONS(159), + [sym_backslash_escape] = ACTIONS(159), + [anon_sym_LT] = ACTIONS(162), + [anon_sym_LBRACE_EQ] = ACTIONS(165), + [anon_sym_LBRACE_PLUS] = ACTIONS(168), + [anon_sym_LBRACE_DASH] = ACTIONS(171), + [sym_symbol] = ACTIONS(156), + [anon_sym_LBRACE_CARET] = ACTIONS(174), + [anon_sym_CARET] = ACTIONS(174), + [anon_sym_LBRACE_TILDE] = ACTIONS(177), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_LBRACK_CARET] = ACTIONS(180), + [anon_sym_BANG_LBRACK] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(186), + [anon_sym_LBRACE2] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(189), + [anon_sym_TODO] = ACTIONS(192), + [anon_sym_WIP] = ACTIONS(192), + [anon_sym_NOTE] = ACTIONS(195), + [anon_sym_INFO] = ACTIONS(195), + [anon_sym_XXX] = ACTIONS(195), + [sym_fixme] = ACTIONS(156), + [anon_sym_PIPE] = ACTIONS(156), + [sym__whitespace1] = ACTIONS(198), + [sym__newline] = ACTIONS(201), + [aux_sym__text_token1] = ACTIONS(204), + [sym__verbatim_begin] = ACTIONS(207), + }, + [77] = { + [sym__inline] = STATE(995), + [sym__element] = STATE(118), + [sym_emphasis] = STATE(204), + [sym_emphasis_begin] = STATE(1017), + [sym_strong] = STATE(204), + [sym_strong_begin] = STATE(114), + [sym__hard_line_break] = STATE(204), + [sym_hard_line_break] = STATE(204), + [sym__smart_punctuation] = STATE(204), + [sym_autolink] = STATE(204), + [sym_highlighted] = STATE(204), + [sym_insert] = STATE(204), + [sym_delete] = STATE(204), + [sym_superscript] = STATE(204), + [sym_subscript] = STATE(204), + [sym_footnote_reference] = STATE(204), + [sym__image] = STATE(204), + [sym_full_reference_image] = STATE(204), + [sym_collapsed_reference_image] = STATE(204), + [sym_inline_image] = STATE(204), + [sym__image_description] = STATE(714), + [sym__link] = STATE(204), + [sym_full_reference_link] = STATE(204), + [sym_collapsed_reference_link] = STATE(204), + [sym_inline_link] = STATE(204), + [sym_link_text] = STATE(715), + [sym__comment_with_spaces] = STATE(204), + [sym_span] = STATE(204), + [sym_raw_inline] = STATE(204), + [sym_math] = STATE(204), + [sym_verbatim] = STATE(204), + [sym__todo_highlights] = STATE(204), + [sym_todo] = STATE(204), + [sym_note] = STATE(204), + [sym__symbol_fallback] = STATE(204), + [aux_sym__text] = STATE(149), + [aux_sym__inline_repeat1] = STATE(118), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(51), + [anon_sym__] = ACTIONS(54), + [anon_sym_LBRACE_STAR] = ACTIONS(57), + [anon_sym_STAR] = ACTIONS(60), + [anon_sym_BSLASH] = ACTIONS(63), + [sym_quotation_marks] = ACTIONS(66), + [sym_ellipsis] = ACTIONS(66), + [sym_em_dash] = ACTIONS(66), + [sym_en_dash] = ACTIONS(69), + [sym_backslash_escape] = ACTIONS(69), + [anon_sym_LT] = ACTIONS(72), + [anon_sym_LBRACE_EQ] = ACTIONS(75), + [anon_sym_LBRACE_PLUS] = ACTIONS(78), + [anon_sym_LBRACE_DASH] = ACTIONS(81), + [sym_symbol] = ACTIONS(66), + [anon_sym_LBRACE_CARET] = ACTIONS(86), + [anon_sym_CARET] = ACTIONS(86), + [anon_sym_LBRACE_TILDE] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(89), + [anon_sym_LBRACK_CARET] = ACTIONS(92), + [anon_sym_BANG_LBRACK] = ACTIONS(97), + [anon_sym_LBRACK] = ACTIONS(100), + [anon_sym_LBRACE2] = ACTIONS(69), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_TODO] = ACTIONS(106), + [anon_sym_WIP] = ACTIONS(106), + [anon_sym_NOTE] = ACTIONS(109), + [anon_sym_INFO] = ACTIONS(109), + [anon_sym_XXX] = ACTIONS(109), + [sym_fixme] = ACTIONS(66), + [anon_sym_PIPE] = ACTIONS(66), + [sym__whitespace1] = ACTIONS(112), + [sym__newline] = ACTIONS(115), + [aux_sym__text_token1] = ACTIONS(118), + [sym__verbatim_begin] = ACTIONS(121), + }, + [78] = { + [sym__inline] = STATE(750), + [sym__element] = STATE(117), [sym_emphasis] = STATE(182), - [sym_emphasis_begin] = STATE(898), + [sym_emphasis_begin] = STATE(1016), [sym_strong] = STATE(182), - [sym_strong_begin] = STATE(104), + [sym_strong_begin] = STATE(122), [sym__hard_line_break] = STATE(182), [sym_hard_line_break] = STATE(182), [sym__smart_punctuation] = STATE(182), @@ -9409,12 +14300,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_full_reference_image] = STATE(182), [sym_collapsed_reference_image] = STATE(182), [sym_inline_image] = STATE(182), - [sym__image_description] = STATE(610), + [sym__image_description] = STATE(692), [sym__link] = STATE(182), [sym_full_reference_link] = STATE(182), [sym_collapsed_reference_link] = STATE(182), [sym_inline_link] = STATE(182), - [sym_link_text] = STATE(608), + [sym_link_text] = STATE(689), [sym__comment_with_spaces] = STATE(182), [sym_span] = STATE(182), [sym_raw_inline] = STATE(182), @@ -9424,1497 +14315,2863 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(182), [sym_note] = STATE(182), [sym__symbol_fallback] = STATE(182), - [aux_sym__text] = STATE(144), - [aux_sym__inline_repeat1] = STATE(97), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_] = ACTIONS(49), - [anon_sym__] = ACTIONS(52), - [anon_sym_LBRACE_STAR] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(58), - [anon_sym_BSLASH] = ACTIONS(61), - [sym_quotation_marks] = ACTIONS(52), - [sym_ellipsis] = ACTIONS(52), - [sym_em_dash] = ACTIONS(52), - [sym_en_dash] = ACTIONS(64), - [sym_backslash_escape] = ACTIONS(64), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_LBRACE_EQ] = ACTIONS(70), - [anon_sym_LBRACE_PLUS] = ACTIONS(73), - [anon_sym_LBRACE_DASH] = ACTIONS(76), - [anon_sym_DASH_RBRACE] = ACTIONS(79), - [sym_symbol] = ACTIONS(52), - [anon_sym_LBRACE_CARET] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(81), - [anon_sym_LBRACE_TILDE] = ACTIONS(84), - [anon_sym_TILDE] = ACTIONS(84), - [anon_sym_LBRACK_CARET] = ACTIONS(87), - [anon_sym_BANG_LBRACK] = ACTIONS(92), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LBRACE2] = ACTIONS(64), - [anon_sym_DOLLAR] = ACTIONS(98), - [anon_sym_TODO] = ACTIONS(101), - [anon_sym_WIP] = ACTIONS(101), - [anon_sym_NOTE] = ACTIONS(104), - [anon_sym_INFO] = ACTIONS(104), - [anon_sym_XXX] = ACTIONS(104), - [sym_fixme] = ACTIONS(52), - [anon_sym_PIPE] = ACTIONS(52), - [sym__whitespace1] = ACTIONS(107), - [sym__newline] = ACTIONS(110), - [aux_sym__text_token1] = ACTIONS(113), - [sym__verbatim_begin] = ACTIONS(116), + [aux_sym__text] = STATE(153), + [aux_sym__inline_repeat1] = STATE(117), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(423), + [anon_sym__] = ACTIONS(426), + [anon_sym_LBRACE_STAR] = ACTIONS(429), + [anon_sym_STAR] = ACTIONS(432), + [anon_sym_BSLASH] = ACTIONS(435), + [sym_quotation_marks] = ACTIONS(438), + [sym_ellipsis] = ACTIONS(438), + [sym_em_dash] = ACTIONS(438), + [sym_en_dash] = ACTIONS(441), + [sym_backslash_escape] = ACTIONS(441), + [anon_sym_LT] = ACTIONS(444), + [anon_sym_LBRACE_EQ] = ACTIONS(447), + [anon_sym_LBRACE_PLUS] = ACTIONS(450), + [anon_sym_LBRACE_DASH] = ACTIONS(453), + [sym_symbol] = ACTIONS(438), + [anon_sym_LBRACE_CARET] = ACTIONS(456), + [anon_sym_CARET] = ACTIONS(456), + [anon_sym_LBRACE_TILDE] = ACTIONS(459), + [anon_sym_TILDE] = ACTIONS(459), + [anon_sym_LBRACK_CARET] = ACTIONS(462), + [anon_sym_BANG_LBRACK] = ACTIONS(465), + [anon_sym_LBRACK] = ACTIONS(468), + [anon_sym_LBRACE2] = ACTIONS(441), + [anon_sym_DOLLAR] = ACTIONS(471), + [anon_sym_TODO] = ACTIONS(474), + [anon_sym_WIP] = ACTIONS(474), + [anon_sym_NOTE] = ACTIONS(477), + [anon_sym_INFO] = ACTIONS(477), + [anon_sym_XXX] = ACTIONS(477), + [sym_fixme] = ACTIONS(438), + [anon_sym_PIPE] = ACTIONS(438), + [sym__whitespace1] = ACTIONS(480), + [sym__newline] = ACTIONS(483), + [aux_sym__text_token1] = ACTIONS(486), + [sym__verbatim_begin] = ACTIONS(489), }, - [24] = { - [sym__inline] = STATE(786), - [sym__element] = STATE(107), - [sym_emphasis] = STATE(187), - [sym_emphasis_begin] = STATE(893), - [sym_strong] = STATE(187), - [sym_strong_begin] = STATE(119), - [sym__hard_line_break] = STATE(187), - [sym_hard_line_break] = STATE(187), - [sym__smart_punctuation] = STATE(187), - [sym_autolink] = STATE(187), - [sym_highlighted] = STATE(187), - [sym_insert] = STATE(187), - [sym_delete] = STATE(187), - [sym_superscript] = STATE(187), - [sym_subscript] = STATE(187), - [sym_footnote_reference] = STATE(187), - [sym__image] = STATE(187), - [sym_full_reference_image] = STATE(187), - [sym_collapsed_reference_image] = STATE(187), - [sym_inline_image] = STATE(187), - [sym__image_description] = STATE(616), - [sym__link] = STATE(187), - [sym_full_reference_link] = STATE(187), - [sym_collapsed_reference_link] = STATE(187), - [sym_inline_link] = STATE(187), - [sym_link_text] = STATE(634), - [sym__comment_with_spaces] = STATE(187), - [sym_span] = STATE(187), - [sym_raw_inline] = STATE(187), - [sym_math] = STATE(187), - [sym_verbatim] = STATE(187), - [sym__todo_highlights] = STATE(187), - [sym_todo] = STATE(187), - [sym_note] = STATE(187), - [sym__symbol_fallback] = STATE(187), - [aux_sym__text] = STATE(131), - [aux_sym__inline_repeat1] = STATE(107), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_] = ACTIONS(265), - [anon_sym__] = ACTIONS(268), - [anon_sym_LBRACE_STAR] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(274), - [anon_sym_BSLASH] = ACTIONS(277), - [sym_quotation_marks] = ACTIONS(268), - [sym_ellipsis] = ACTIONS(268), - [sym_em_dash] = ACTIONS(268), - [sym_en_dash] = ACTIONS(280), - [sym_backslash_escape] = ACTIONS(280), - [anon_sym_LT] = ACTIONS(283), - [anon_sym_LBRACE_EQ] = ACTIONS(286), - [anon_sym_LBRACE_PLUS] = ACTIONS(289), - [anon_sym_LBRACE_DASH] = ACTIONS(292), - [sym_symbol] = ACTIONS(268), - [anon_sym_LBRACE_CARET] = ACTIONS(295), - [anon_sym_CARET] = ACTIONS(463), - [anon_sym_CARET_RBRACE] = ACTIONS(79), - [anon_sym_LBRACE_TILDE] = ACTIONS(298), - [anon_sym_TILDE] = ACTIONS(298), - [anon_sym_LBRACK_CARET] = ACTIONS(301), - [anon_sym_BANG_LBRACK] = ACTIONS(304), - [anon_sym_LBRACK] = ACTIONS(307), - [anon_sym_LBRACE2] = ACTIONS(280), - [anon_sym_DOLLAR] = ACTIONS(310), - [anon_sym_TODO] = ACTIONS(313), - [anon_sym_WIP] = ACTIONS(313), - [anon_sym_NOTE] = ACTIONS(316), - [anon_sym_INFO] = ACTIONS(316), - [anon_sym_XXX] = ACTIONS(316), - [sym_fixme] = ACTIONS(268), - [anon_sym_PIPE] = ACTIONS(268), - [sym__whitespace1] = ACTIONS(319), - [sym__newline] = ACTIONS(322), - [aux_sym__text_token1] = ACTIONS(325), - [sym__verbatim_begin] = ACTIONS(328), + [79] = { + [sym__element] = STATE(103), + [sym_emphasis] = STATE(172), + [sym_emphasis_begin] = STATE(1015), + [sym_strong] = STATE(172), + [sym_strong_begin] = STATE(125), + [sym__hard_line_break] = STATE(172), + [sym_hard_line_break] = STATE(172), + [sym__smart_punctuation] = STATE(172), + [sym_autolink] = STATE(172), + [sym_highlighted] = STATE(172), + [sym_insert] = STATE(172), + [sym_delete] = STATE(172), + [sym_superscript] = STATE(172), + [sym_subscript] = STATE(172), + [sym_footnote_reference] = STATE(172), + [sym__image] = STATE(172), + [sym_full_reference_image] = STATE(172), + [sym_collapsed_reference_image] = STATE(172), + [sym_inline_image] = STATE(172), + [sym__image_description] = STATE(711), + [sym__link] = STATE(172), + [sym_full_reference_link] = STATE(172), + [sym_collapsed_reference_link] = STATE(172), + [sym_inline_link] = STATE(172), + [sym_link_text] = STATE(712), + [sym__comment_with_spaces] = STATE(172), + [sym_span] = STATE(172), + [sym_raw_inline] = STATE(172), + [sym_math] = STATE(172), + [sym_verbatim] = STATE(172), + [sym__todo_highlights] = STATE(172), + [sym_todo] = STATE(172), + [sym_note] = STATE(172), + [sym__symbol_fallback] = STATE(172), + [aux_sym__text] = STATE(170), + [aux_sym__inline_repeat1] = STATE(103), + [anon_sym_LBRACE_] = ACTIONS(564), + [anon_sym__] = ACTIONS(566), + [anon_sym_LBRACE_STAR] = ACTIONS(568), + [anon_sym_STAR] = ACTIONS(570), + [anon_sym_BSLASH] = ACTIONS(572), + [sym_quotation_marks] = ACTIONS(574), + [sym_ellipsis] = ACTIONS(574), + [sym_em_dash] = ACTIONS(574), + [sym_en_dash] = ACTIONS(576), + [sym_backslash_escape] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(578), + [anon_sym_LBRACE_EQ] = ACTIONS(580), + [anon_sym_LBRACE_PLUS] = ACTIONS(582), + [anon_sym_LBRACE_DASH] = ACTIONS(584), + [sym_symbol] = ACTIONS(574), + [anon_sym_LBRACE_CARET] = ACTIONS(586), + [anon_sym_CARET] = ACTIONS(588), + [anon_sym_CARET_RBRACE] = ACTIONS(590), + [anon_sym_LBRACE_TILDE] = ACTIONS(592), + [anon_sym_TILDE] = ACTIONS(592), + [anon_sym_LBRACK_CARET] = ACTIONS(594), + [anon_sym_BANG_LBRACK] = ACTIONS(596), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_LBRACE2] = ACTIONS(576), + [anon_sym_DOLLAR] = ACTIONS(600), + [anon_sym_TODO] = ACTIONS(602), + [anon_sym_WIP] = ACTIONS(602), + [anon_sym_NOTE] = ACTIONS(604), + [anon_sym_INFO] = ACTIONS(604), + [anon_sym_XXX] = ACTIONS(604), + [sym_fixme] = ACTIONS(574), + [anon_sym_PIPE] = ACTIONS(574), + [sym__whitespace1] = ACTIONS(606), + [sym__newline] = ACTIONS(608), + [aux_sym__text_token1] = ACTIONS(610), + [sym__verbatim_begin] = ACTIONS(612), }, - [25] = { - [sym__inline] = STATE(785), - [sym__element] = STATE(78), - [sym_emphasis] = STATE(167), - [sym_emphasis_begin] = STATE(894), - [sym_strong] = STATE(167), - [sym_strong_begin] = STATE(117), - [sym__hard_line_break] = STATE(167), - [sym_hard_line_break] = STATE(167), - [sym__smart_punctuation] = STATE(167), - [sym_autolink] = STATE(167), - [sym_highlighted] = STATE(167), - [sym_insert] = STATE(167), - [sym_delete] = STATE(167), - [sym_superscript] = STATE(167), - [sym_subscript] = STATE(167), - [sym_footnote_reference] = STATE(167), - [sym__image] = STATE(167), - [sym_full_reference_image] = STATE(167), - [sym_collapsed_reference_image] = STATE(167), - [sym_inline_image] = STATE(167), - [sym__image_description] = STATE(613), - [sym__link] = STATE(167), - [sym_full_reference_link] = STATE(167), - [sym_collapsed_reference_link] = STATE(167), - [sym_inline_link] = STATE(167), - [sym_link_text] = STATE(614), - [sym__comment_with_spaces] = STATE(167), - [sym_span] = STATE(167), - [sym_raw_inline] = STATE(167), - [sym_math] = STATE(167), - [sym_verbatim] = STATE(167), - [sym__todo_highlights] = STATE(167), - [sym_todo] = STATE(167), - [sym_note] = STATE(167), - [sym__symbol_fallback] = STATE(167), - [aux_sym__text] = STATE(130), - [aux_sym__inline_repeat1] = STATE(78), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_] = ACTIONS(199), - [anon_sym__] = ACTIONS(202), - [anon_sym_LBRACE_STAR] = ACTIONS(205), - [anon_sym_STAR] = ACTIONS(208), - [anon_sym_BSLASH] = ACTIONS(211), - [sym_quotation_marks] = ACTIONS(202), - [sym_ellipsis] = ACTIONS(202), - [sym_em_dash] = ACTIONS(202), - [sym_en_dash] = ACTIONS(214), - [sym_backslash_escape] = ACTIONS(214), - [anon_sym_LT] = ACTIONS(217), - [anon_sym_LBRACE_EQ] = ACTIONS(220), - [anon_sym_LBRACE_PLUS] = ACTIONS(223), - [anon_sym_LBRACE_DASH] = ACTIONS(226), - [sym_symbol] = ACTIONS(202), - [anon_sym_LBRACE_CARET] = ACTIONS(229), - [anon_sym_CARET] = ACTIONS(466), - [anon_sym_CARET_RBRACE] = ACTIONS(79), - [anon_sym_LBRACE_TILDE] = ACTIONS(232), - [anon_sym_TILDE] = ACTIONS(232), - [anon_sym_LBRACK_CARET] = ACTIONS(235), - [anon_sym_BANG_LBRACK] = ACTIONS(238), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_LBRACE2] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(244), - [anon_sym_TODO] = ACTIONS(247), - [anon_sym_WIP] = ACTIONS(247), - [anon_sym_NOTE] = ACTIONS(250), - [anon_sym_INFO] = ACTIONS(250), - [anon_sym_XXX] = ACTIONS(250), - [sym_fixme] = ACTIONS(202), - [anon_sym_PIPE] = ACTIONS(202), - [sym__whitespace1] = ACTIONS(253), - [sym__newline] = ACTIONS(256), - [aux_sym__text_token1] = ACTIONS(259), - [sym__verbatim_begin] = ACTIONS(262), + [80] = { + [sym__inline] = STATE(879), + [sym__element] = STATE(94), + [sym_emphasis] = STATE(188), + [sym_emphasis_begin] = STATE(1020), + [sym_strong] = STATE(188), + [sym_strong_begin] = STATE(106), + [sym__hard_line_break] = STATE(188), + [sym_hard_line_break] = STATE(188), + [sym__smart_punctuation] = STATE(188), + [sym_autolink] = STATE(188), + [sym_highlighted] = STATE(188), + [sym_insert] = STATE(188), + [sym_delete] = STATE(188), + [sym_superscript] = STATE(188), + [sym_subscript] = STATE(188), + [sym_footnote_reference] = STATE(188), + [sym__image] = STATE(188), + [sym_full_reference_image] = STATE(188), + [sym_collapsed_reference_image] = STATE(188), + [sym_inline_image] = STATE(188), + [sym__image_description] = STATE(702), + [sym__link] = STATE(188), + [sym_full_reference_link] = STATE(188), + [sym_collapsed_reference_link] = STATE(188), + [sym_inline_link] = STATE(188), + [sym_link_text] = STATE(700), + [sym__comment_with_spaces] = STATE(188), + [sym_span] = STATE(188), + [sym_raw_inline] = STATE(188), + [sym_math] = STATE(188), + [sym_verbatim] = STATE(188), + [sym__todo_highlights] = STATE(188), + [sym_todo] = STATE(188), + [sym_note] = STATE(188), + [sym__symbol_fallback] = STATE(188), + [aux_sym__text] = STATE(147), + [aux_sym__inline_repeat1] = STATE(94), + [anon_sym_LBRACE_] = ACTIONS(614), + [anon_sym__] = ACTIONS(616), + [anon_sym_LBRACE_STAR] = ACTIONS(618), + [anon_sym_STAR] = ACTIONS(620), + [anon_sym_BSLASH] = ACTIONS(622), + [sym_quotation_marks] = ACTIONS(624), + [sym_ellipsis] = ACTIONS(624), + [sym_em_dash] = ACTIONS(624), + [sym_en_dash] = ACTIONS(626), + [sym_backslash_escape] = ACTIONS(626), + [anon_sym_LT] = ACTIONS(628), + [anon_sym_LBRACE_EQ] = ACTIONS(630), + [anon_sym_LBRACE_PLUS] = ACTIONS(632), + [anon_sym_LBRACE_DASH] = ACTIONS(634), + [sym_symbol] = ACTIONS(624), + [anon_sym_LBRACE_CARET] = ACTIONS(636), + [anon_sym_CARET] = ACTIONS(636), + [anon_sym_LBRACE_TILDE] = ACTIONS(638), + [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_LBRACK_CARET] = ACTIONS(640), + [anon_sym_BANG_LBRACK] = ACTIONS(642), + [anon_sym_LBRACK] = ACTIONS(644), + [anon_sym_LBRACE2] = ACTIONS(626), + [anon_sym_DOLLAR] = ACTIONS(646), + [anon_sym_TODO] = ACTIONS(648), + [anon_sym_WIP] = ACTIONS(648), + [anon_sym_NOTE] = ACTIONS(650), + [anon_sym_INFO] = ACTIONS(650), + [anon_sym_XXX] = ACTIONS(650), + [sym_fixme] = ACTIONS(624), + [anon_sym_PIPE] = ACTIONS(624), + [sym__whitespace1] = ACTIONS(652), + [sym__newline] = ACTIONS(654), + [aux_sym__text_token1] = ACTIONS(656), + [sym__verbatim_begin] = ACTIONS(658), }, - [26] = { - [sym__inline] = STATE(783), - [sym__element] = STATE(73), - [sym_emphasis] = STATE(180), - [sym_emphasis_begin] = STATE(895), - [sym_strong] = STATE(180), - [sym_strong_begin] = STATE(114), - [sym__hard_line_break] = STATE(180), - [sym_hard_line_break] = STATE(180), - [sym__smart_punctuation] = STATE(180), - [sym_autolink] = STATE(180), - [sym_highlighted] = STATE(180), - [sym_insert] = STATE(180), - [sym_delete] = STATE(180), - [sym_superscript] = STATE(180), - [sym_subscript] = STATE(180), - [sym_footnote_reference] = STATE(180), - [sym__image] = STATE(180), - [sym_full_reference_image] = STATE(180), - [sym_collapsed_reference_image] = STATE(180), - [sym_inline_image] = STATE(180), - [sym__image_description] = STATE(632), - [sym__link] = STATE(180), - [sym_full_reference_link] = STATE(180), - [sym_collapsed_reference_link] = STATE(180), - [sym_inline_link] = STATE(180), - [sym_link_text] = STATE(633), - [sym__comment_with_spaces] = STATE(180), - [sym_span] = STATE(180), - [sym_raw_inline] = STATE(180), - [sym_math] = STATE(180), - [sym_verbatim] = STATE(180), - [sym__todo_highlights] = STATE(180), - [sym_todo] = STATE(180), - [sym_note] = STATE(180), - [sym__symbol_fallback] = STATE(180), - [aux_sym__text] = STATE(132), - [aux_sym__inline_repeat1] = STATE(73), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_] = ACTIONS(133), - [anon_sym__] = ACTIONS(136), - [anon_sym_LBRACE_STAR] = ACTIONS(139), - [anon_sym_STAR] = ACTIONS(142), - [anon_sym_BSLASH] = ACTIONS(145), - [sym_quotation_marks] = ACTIONS(136), - [sym_ellipsis] = ACTIONS(136), - [sym_em_dash] = ACTIONS(136), - [sym_en_dash] = ACTIONS(148), - [sym_backslash_escape] = ACTIONS(148), - [anon_sym_LT] = ACTIONS(151), - [anon_sym_LBRACE_EQ] = ACTIONS(154), - [anon_sym_LBRACE_PLUS] = ACTIONS(157), - [anon_sym_LBRACE_DASH] = ACTIONS(160), - [sym_symbol] = ACTIONS(136), - [anon_sym_LBRACE_CARET] = ACTIONS(163), - [anon_sym_CARET] = ACTIONS(469), - [anon_sym_CARET_RBRACE] = ACTIONS(79), - [anon_sym_LBRACE_TILDE] = ACTIONS(166), - [anon_sym_TILDE] = ACTIONS(166), - [anon_sym_LBRACK_CARET] = ACTIONS(169), - [anon_sym_BANG_LBRACK] = ACTIONS(172), - [anon_sym_LBRACK] = ACTIONS(175), - [anon_sym_LBRACE2] = ACTIONS(148), - [anon_sym_DOLLAR] = ACTIONS(178), - [anon_sym_TODO] = ACTIONS(181), - [anon_sym_WIP] = ACTIONS(181), - [anon_sym_NOTE] = ACTIONS(184), - [anon_sym_INFO] = ACTIONS(184), - [anon_sym_XXX] = ACTIONS(184), - [sym_fixme] = ACTIONS(136), - [anon_sym_PIPE] = ACTIONS(136), - [sym__whitespace1] = ACTIONS(187), - [sym__newline] = ACTIONS(190), - [aux_sym__text_token1] = ACTIONS(193), - [sym__verbatim_begin] = ACTIONS(196), + [81] = { + [sym__element] = STATE(81), + [sym_emphasis] = STATE(176), + [sym_emphasis_begin] = STATE(1013), + [sym_strong] = STATE(176), + [sym_strong_begin] = STATE(97), + [sym__hard_line_break] = STATE(176), + [sym_hard_line_break] = STATE(176), + [sym__smart_punctuation] = STATE(176), + [sym_autolink] = STATE(176), + [sym_highlighted] = STATE(176), + [sym_insert] = STATE(176), + [sym_delete] = STATE(176), + [sym_superscript] = STATE(176), + [sym_subscript] = STATE(176), + [sym_footnote_reference] = STATE(176), + [sym__image] = STATE(176), + [sym_full_reference_image] = STATE(176), + [sym_collapsed_reference_image] = STATE(176), + [sym_inline_image] = STATE(176), + [sym__image_description] = STATE(690), + [sym__link] = STATE(176), + [sym_full_reference_link] = STATE(176), + [sym_collapsed_reference_link] = STATE(176), + [sym_inline_link] = STATE(176), + [sym_link_text] = STATE(691), + [sym__comment_with_spaces] = STATE(176), + [sym_span] = STATE(176), + [sym_raw_inline] = STATE(176), + [sym_math] = STATE(176), + [sym_verbatim] = STATE(176), + [sym__todo_highlights] = STATE(176), + [sym_todo] = STATE(176), + [sym_note] = STATE(176), + [sym__symbol_fallback] = STATE(176), + [aux_sym__text] = STATE(155), + [aux_sym__inline_repeat1] = STATE(81), + [anon_sym_LBRACE_] = ACTIONS(660), + [anon_sym__] = ACTIONS(663), + [anon_sym_LBRACE_STAR] = ACTIONS(666), + [anon_sym_STAR] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(672), + [sym_quotation_marks] = ACTIONS(675), + [sym_ellipsis] = ACTIONS(675), + [sym_em_dash] = ACTIONS(675), + [sym_en_dash] = ACTIONS(678), + [sym_backslash_escape] = ACTIONS(678), + [anon_sym_LT] = ACTIONS(681), + [anon_sym_LBRACE_EQ] = ACTIONS(684), + [anon_sym_LBRACE_PLUS] = ACTIONS(687), + [anon_sym_PLUS_RBRACE] = ACTIONS(690), + [anon_sym_LBRACE_DASH] = ACTIONS(692), + [sym_symbol] = ACTIONS(675), + [anon_sym_LBRACE_CARET] = ACTIONS(695), + [anon_sym_CARET] = ACTIONS(695), + [anon_sym_LBRACE_TILDE] = ACTIONS(698), + [anon_sym_TILDE] = ACTIONS(698), + [anon_sym_LBRACK_CARET] = ACTIONS(701), + [anon_sym_BANG_LBRACK] = ACTIONS(704), + [anon_sym_LBRACK] = ACTIONS(707), + [anon_sym_LBRACE2] = ACTIONS(678), + [anon_sym_DOLLAR] = ACTIONS(710), + [anon_sym_TODO] = ACTIONS(713), + [anon_sym_WIP] = ACTIONS(713), + [anon_sym_NOTE] = ACTIONS(716), + [anon_sym_INFO] = ACTIONS(716), + [anon_sym_XXX] = ACTIONS(716), + [sym_fixme] = ACTIONS(675), + [anon_sym_PIPE] = ACTIONS(675), + [sym__whitespace1] = ACTIONS(719), + [sym__newline] = ACTIONS(722), + [aux_sym__text_token1] = ACTIONS(725), + [sym__verbatim_begin] = ACTIONS(728), }, - [27] = { - [sym__inline] = STATE(663), - [sym__element] = STATE(72), - [sym_emphasis] = STATE(163), - [sym_emphasis_begin] = STATE(896), - [sym_strong] = STATE(163), + [82] = { + [sym__element] = STATE(82), + [sym_emphasis] = STATE(197), + [sym_emphasis_begin] = STATE(1002), + [sym_strong] = STATE(197), + [sym_strong_begin] = STATE(98), + [sym__hard_line_break] = STATE(197), + [sym_hard_line_break] = STATE(197), + [sym__smart_punctuation] = STATE(197), + [sym_autolink] = STATE(197), + [sym_highlighted] = STATE(197), + [sym_insert] = STATE(197), + [sym_delete] = STATE(197), + [sym_superscript] = STATE(197), + [sym_subscript] = STATE(197), + [sym_footnote_reference] = STATE(197), + [sym__image] = STATE(197), + [sym_full_reference_image] = STATE(197), + [sym_collapsed_reference_image] = STATE(197), + [sym_inline_image] = STATE(197), + [sym__image_description] = STATE(685), + [sym__link] = STATE(197), + [sym_full_reference_link] = STATE(197), + [sym_collapsed_reference_link] = STATE(197), + [sym_inline_link] = STATE(197), + [sym_link_text] = STATE(719), + [sym__comment_with_spaces] = STATE(197), + [sym_span] = STATE(197), + [sym_raw_inline] = STATE(197), + [sym_math] = STATE(197), + [sym_verbatim] = STATE(197), + [sym__todo_highlights] = STATE(197), + [sym_todo] = STATE(197), + [sym_note] = STATE(197), + [sym__symbol_fallback] = STATE(197), + [aux_sym__text] = STATE(171), + [aux_sym__inline_repeat1] = STATE(82), + [ts_builtin_sym_end] = ACTIONS(690), + [anon_sym_LBRACE_] = ACTIONS(731), + [anon_sym__] = ACTIONS(734), + [anon_sym_LBRACE_STAR] = ACTIONS(737), + [anon_sym_STAR] = ACTIONS(740), + [anon_sym_BSLASH] = ACTIONS(743), + [sym_quotation_marks] = ACTIONS(746), + [sym_ellipsis] = ACTIONS(746), + [sym_em_dash] = ACTIONS(746), + [sym_en_dash] = ACTIONS(749), + [sym_backslash_escape] = ACTIONS(749), + [anon_sym_LT] = ACTIONS(752), + [anon_sym_LBRACE_EQ] = ACTIONS(755), + [anon_sym_LBRACE_PLUS] = ACTIONS(758), + [anon_sym_LBRACE_DASH] = ACTIONS(761), + [sym_symbol] = ACTIONS(746), + [anon_sym_LBRACE_CARET] = ACTIONS(764), + [anon_sym_CARET] = ACTIONS(764), + [anon_sym_LBRACE_TILDE] = ACTIONS(767), + [anon_sym_TILDE] = ACTIONS(767), + [anon_sym_LBRACK_CARET] = ACTIONS(770), + [anon_sym_BANG_LBRACK] = ACTIONS(773), + [anon_sym_LBRACK] = ACTIONS(776), + [anon_sym_LBRACE2] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(779), + [anon_sym_TODO] = ACTIONS(782), + [anon_sym_WIP] = ACTIONS(782), + [anon_sym_NOTE] = ACTIONS(785), + [anon_sym_INFO] = ACTIONS(785), + [anon_sym_XXX] = ACTIONS(785), + [sym_fixme] = ACTIONS(746), + [anon_sym_PIPE] = ACTIONS(746), + [sym__whitespace1] = ACTIONS(788), + [sym__newline] = ACTIONS(791), + [aux_sym__text_token1] = ACTIONS(794), + [sym__verbatim_begin] = ACTIONS(797), + }, + [83] = { + [sym__element] = STATE(105), + [sym_emphasis] = STATE(211), + [sym_emphasis_begin] = STATE(1014), + [sym_strong] = STATE(211), + [sym_strong_begin] = STATE(121), + [sym__hard_line_break] = STATE(211), + [sym_hard_line_break] = STATE(211), + [sym__smart_punctuation] = STATE(211), + [sym_autolink] = STATE(211), + [sym_highlighted] = STATE(211), + [sym_insert] = STATE(211), + [sym_delete] = STATE(211), + [sym_superscript] = STATE(211), + [sym_subscript] = STATE(211), + [sym_footnote_reference] = STATE(211), + [sym__image] = STATE(211), + [sym_full_reference_image] = STATE(211), + [sym_collapsed_reference_image] = STATE(211), + [sym_inline_image] = STATE(211), + [sym__image_description] = STATE(693), + [sym__link] = STATE(211), + [sym_full_reference_link] = STATE(211), + [sym_collapsed_reference_link] = STATE(211), + [sym_inline_link] = STATE(211), + [sym_link_text] = STATE(694), + [sym__comment_with_spaces] = STATE(211), + [sym_span] = STATE(211), + [sym_raw_inline] = STATE(211), + [sym_math] = STATE(211), + [sym_verbatim] = STATE(211), + [sym__todo_highlights] = STATE(211), + [sym_todo] = STATE(211), + [sym_note] = STATE(211), + [sym__symbol_fallback] = STATE(211), + [aux_sym__text] = STATE(137), + [aux_sym__inline_repeat1] = STATE(105), + [anon_sym_LBRACE_] = ACTIONS(800), + [anon_sym__] = ACTIONS(802), + [anon_sym_LBRACE_STAR] = ACTIONS(804), + [anon_sym_STAR] = ACTIONS(806), + [anon_sym_BSLASH] = ACTIONS(808), + [sym_quotation_marks] = ACTIONS(810), + [sym_ellipsis] = ACTIONS(810), + [sym_em_dash] = ACTIONS(810), + [sym_en_dash] = ACTIONS(812), + [sym_backslash_escape] = ACTIONS(812), + [anon_sym_LT] = ACTIONS(814), + [anon_sym_LBRACE_EQ] = ACTIONS(816), + [anon_sym_LBRACE_PLUS] = ACTIONS(818), + [anon_sym_LBRACE_DASH] = ACTIONS(820), + [anon_sym_DASH_RBRACE] = ACTIONS(590), + [sym_symbol] = ACTIONS(810), + [anon_sym_LBRACE_CARET] = ACTIONS(822), + [anon_sym_CARET] = ACTIONS(822), + [anon_sym_LBRACE_TILDE] = ACTIONS(824), + [anon_sym_TILDE] = ACTIONS(824), + [anon_sym_LBRACK_CARET] = ACTIONS(826), + [anon_sym_BANG_LBRACK] = ACTIONS(828), + [anon_sym_LBRACK] = ACTIONS(830), + [anon_sym_LBRACE2] = ACTIONS(812), + [anon_sym_DOLLAR] = ACTIONS(832), + [anon_sym_TODO] = ACTIONS(834), + [anon_sym_WIP] = ACTIONS(834), + [anon_sym_NOTE] = ACTIONS(836), + [anon_sym_INFO] = ACTIONS(836), + [anon_sym_XXX] = ACTIONS(836), + [sym_fixme] = ACTIONS(810), + [anon_sym_PIPE] = ACTIONS(810), + [sym__whitespace1] = ACTIONS(838), + [sym__newline] = ACTIONS(840), + [aux_sym__text_token1] = ACTIONS(842), + [sym__verbatim_begin] = ACTIONS(844), + }, + [84] = { + [sym__element] = STATE(84), + [sym_emphasis] = STATE(188), + [sym_emphasis_begin] = STATE(1020), + [sym_strong] = STATE(188), + [sym_strong_begin] = STATE(106), + [sym__hard_line_break] = STATE(188), + [sym_hard_line_break] = STATE(188), + [sym__smart_punctuation] = STATE(188), + [sym_autolink] = STATE(188), + [sym_highlighted] = STATE(188), + [sym_insert] = STATE(188), + [sym_delete] = STATE(188), + [sym_superscript] = STATE(188), + [sym_subscript] = STATE(188), + [sym_footnote_reference] = STATE(188), + [sym__image] = STATE(188), + [sym_full_reference_image] = STATE(188), + [sym_collapsed_reference_image] = STATE(188), + [sym_inline_image] = STATE(188), + [sym__image_description] = STATE(702), + [sym__link] = STATE(188), + [sym_full_reference_link] = STATE(188), + [sym_collapsed_reference_link] = STATE(188), + [sym_inline_link] = STATE(188), + [sym_link_text] = STATE(700), + [sym__comment_with_spaces] = STATE(188), + [sym_span] = STATE(188), + [sym_raw_inline] = STATE(188), + [sym_math] = STATE(188), + [sym_verbatim] = STATE(188), + [sym__todo_highlights] = STATE(188), + [sym_todo] = STATE(188), + [sym_note] = STATE(188), + [sym__symbol_fallback] = STATE(188), + [aux_sym__text] = STATE(147), + [aux_sym__inline_repeat1] = STATE(84), + [anon_sym_LBRACE_] = ACTIONS(846), + [anon_sym__] = ACTIONS(849), + [anon_sym_LBRACE_STAR] = ACTIONS(852), + [anon_sym_STAR] = ACTIONS(855), + [anon_sym_BSLASH] = ACTIONS(858), + [sym_quotation_marks] = ACTIONS(861), + [sym_ellipsis] = ACTIONS(861), + [sym_em_dash] = ACTIONS(861), + [sym_en_dash] = ACTIONS(864), + [sym_backslash_escape] = ACTIONS(864), + [anon_sym_LT] = ACTIONS(867), + [anon_sym_LBRACE_EQ] = ACTIONS(870), + [anon_sym_LBRACE_PLUS] = ACTIONS(873), + [anon_sym_LBRACE_DASH] = ACTIONS(876), + [sym_symbol] = ACTIONS(861), + [anon_sym_LBRACE_CARET] = ACTIONS(879), + [anon_sym_CARET] = ACTIONS(879), + [anon_sym_LBRACE_TILDE] = ACTIONS(882), + [anon_sym_TILDE] = ACTIONS(882), + [anon_sym_LBRACK_CARET] = ACTIONS(885), + [anon_sym_BANG_LBRACK] = ACTIONS(888), + [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_RBRACK2] = ACTIONS(690), + [anon_sym_LBRACE2] = ACTIONS(864), + [anon_sym_DOLLAR] = ACTIONS(894), + [anon_sym_TODO] = ACTIONS(897), + [anon_sym_WIP] = ACTIONS(897), + [anon_sym_NOTE] = ACTIONS(900), + [anon_sym_INFO] = ACTIONS(900), + [anon_sym_XXX] = ACTIONS(900), + [sym_fixme] = ACTIONS(861), + [anon_sym_PIPE] = ACTIONS(861), + [sym__whitespace1] = ACTIONS(903), + [sym__newline] = ACTIONS(906), + [aux_sym__text_token1] = ACTIONS(909), + [sym__verbatim_begin] = ACTIONS(912), + }, + [85] = { + [sym__inline_without_trailing_space] = STATE(734), + [sym__element] = STATE(581), + [sym_emphasis] = STATE(179), + [sym_emphasis_begin] = STATE(1019), + [sym_strong] = STATE(179), [sym_strong_begin] = STATE(110), - [sym__hard_line_break] = STATE(163), - [sym_hard_line_break] = STATE(163), - [sym__smart_punctuation] = STATE(163), - [sym_autolink] = STATE(163), - [sym_highlighted] = STATE(163), - [sym_insert] = STATE(163), - [sym_delete] = STATE(163), - [sym_superscript] = STATE(163), - [sym_subscript] = STATE(163), - [sym_footnote_reference] = STATE(163), - [sym__image] = STATE(163), - [sym_full_reference_image] = STATE(163), - [sym_collapsed_reference_image] = STATE(163), - [sym_inline_image] = STATE(163), - [sym__image_description] = STATE(622), - [sym__link] = STATE(163), - [sym_full_reference_link] = STATE(163), - [sym_collapsed_reference_link] = STATE(163), - [sym_inline_link] = STATE(163), - [sym_link_text] = STATE(605), - [sym__comment_with_spaces] = STATE(163), - [sym_span] = STATE(163), - [sym_raw_inline] = STATE(163), - [sym_math] = STATE(163), - [sym_verbatim] = STATE(163), - [sym__todo_highlights] = STATE(163), - [sym_todo] = STATE(163), - [sym_note] = STATE(163), - [sym__symbol_fallback] = STATE(163), - [aux_sym__text] = STATE(146), - [aux_sym__inline_repeat1] = STATE(72), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_] = ACTIONS(331), - [anon_sym__] = ACTIONS(334), - [anon_sym_LBRACE_STAR] = ACTIONS(337), - [anon_sym_STAR] = ACTIONS(340), - [anon_sym_BSLASH] = ACTIONS(343), - [sym_quotation_marks] = ACTIONS(334), - [sym_ellipsis] = ACTIONS(334), - [sym_em_dash] = ACTIONS(334), - [sym_en_dash] = ACTIONS(346), - [sym_backslash_escape] = ACTIONS(346), - [anon_sym_LT] = ACTIONS(349), - [anon_sym_LBRACE_EQ] = ACTIONS(352), - [anon_sym_LBRACE_PLUS] = ACTIONS(355), - [anon_sym_LBRACE_DASH] = ACTIONS(358), - [sym_symbol] = ACTIONS(334), - [anon_sym_LBRACE_CARET] = ACTIONS(361), - [anon_sym_CARET] = ACTIONS(472), - [anon_sym_CARET_RBRACE] = ACTIONS(79), - [anon_sym_LBRACE_TILDE] = ACTIONS(364), - [anon_sym_TILDE] = ACTIONS(364), - [anon_sym_LBRACK_CARET] = ACTIONS(367), - [anon_sym_BANG_LBRACK] = ACTIONS(370), - [anon_sym_LBRACK] = ACTIONS(373), - [anon_sym_LBRACE2] = ACTIONS(346), - [anon_sym_DOLLAR] = ACTIONS(376), - [anon_sym_TODO] = ACTIONS(379), - [anon_sym_WIP] = ACTIONS(379), - [anon_sym_NOTE] = ACTIONS(382), - [anon_sym_INFO] = ACTIONS(382), - [anon_sym_XXX] = ACTIONS(382), - [sym_fixme] = ACTIONS(334), - [anon_sym_PIPE] = ACTIONS(334), - [sym__whitespace1] = ACTIONS(385), - [sym__newline] = ACTIONS(388), - [aux_sym__text_token1] = ACTIONS(391), - [sym__verbatim_begin] = ACTIONS(394), + [sym__hard_line_break] = STATE(179), + [sym_hard_line_break] = STATE(179), + [sym__smart_punctuation] = STATE(179), + [sym_autolink] = STATE(179), + [sym_highlighted] = STATE(179), + [sym_insert] = STATE(179), + [sym_delete] = STATE(179), + [sym_superscript] = STATE(179), + [sym_subscript] = STATE(179), + [sym_footnote_reference] = STATE(179), + [sym__image] = STATE(179), + [sym_full_reference_image] = STATE(179), + [sym_collapsed_reference_image] = STATE(179), + [sym_inline_image] = STATE(179), + [sym__image_description] = STATE(720), + [sym__link] = STATE(179), + [sym_full_reference_link] = STATE(179), + [sym_collapsed_reference_link] = STATE(179), + [sym_inline_link] = STATE(179), + [sym_link_text] = STATE(697), + [sym__comment_with_spaces] = STATE(179), + [sym_span] = STATE(179), + [sym_raw_inline] = STATE(179), + [sym_math] = STATE(179), + [sym_verbatim] = STATE(179), + [sym__todo_highlights] = STATE(179), + [sym_todo] = STATE(179), + [sym_note] = STATE(179), + [sym__symbol_fallback] = STATE(179), + [aux_sym__text] = STATE(163), + [aux_sym__inline_repeat1] = STATE(130), + [anon_sym_LBRACE_] = ACTIONS(915), + [anon_sym__] = ACTIONS(917), + [anon_sym_LBRACE_STAR] = ACTIONS(919), + [anon_sym_STAR] = ACTIONS(921), + [anon_sym_BSLASH] = ACTIONS(923), + [sym_quotation_marks] = ACTIONS(925), + [sym_ellipsis] = ACTIONS(925), + [sym_em_dash] = ACTIONS(925), + [sym_en_dash] = ACTIONS(927), + [sym_backslash_escape] = ACTIONS(927), + [anon_sym_LT] = ACTIONS(929), + [anon_sym_LBRACE_EQ] = ACTIONS(931), + [anon_sym_LBRACE_PLUS] = ACTIONS(933), + [anon_sym_LBRACE_DASH] = ACTIONS(935), + [sym_symbol] = ACTIONS(925), + [anon_sym_LBRACE_CARET] = ACTIONS(937), + [anon_sym_CARET] = ACTIONS(937), + [anon_sym_LBRACE_TILDE] = ACTIONS(939), + [anon_sym_TILDE] = ACTIONS(939), + [anon_sym_LBRACK_CARET] = ACTIONS(941), + [anon_sym_BANG_LBRACK] = ACTIONS(943), + [anon_sym_LBRACK] = ACTIONS(945), + [anon_sym_LBRACE2] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(947), + [anon_sym_TODO] = ACTIONS(949), + [anon_sym_WIP] = ACTIONS(949), + [anon_sym_NOTE] = ACTIONS(951), + [anon_sym_INFO] = ACTIONS(951), + [anon_sym_XXX] = ACTIONS(951), + [sym_fixme] = ACTIONS(925), + [anon_sym_PIPE] = ACTIONS(925), + [sym__whitespace1] = ACTIONS(953), + [sym__newline] = ACTIONS(955), + [aux_sym__text_token1] = ACTIONS(957), + [sym__verbatim_begin] = ACTIONS(959), }, - [28] = { - [sym__inline] = STATE(664), - [sym__element] = STATE(113), - [sym_emphasis] = STATE(175), - [sym_emphasis_begin] = STATE(897), - [sym_strong] = STATE(175), - [sym_strong_begin] = STATE(108), - [sym__hard_line_break] = STATE(175), - [sym_hard_line_break] = STATE(175), - [sym__smart_punctuation] = STATE(175), - [sym_autolink] = STATE(175), - [sym_highlighted] = STATE(175), - [sym_insert] = STATE(175), - [sym_delete] = STATE(175), - [sym_superscript] = STATE(175), - [sym_subscript] = STATE(175), - [sym_footnote_reference] = STATE(175), - [sym__image] = STATE(175), - [sym_full_reference_image] = STATE(175), - [sym_collapsed_reference_image] = STATE(175), - [sym_inline_image] = STATE(175), - [sym__image_description] = STATE(626), - [sym__link] = STATE(175), - [sym_full_reference_link] = STATE(175), - [sym_collapsed_reference_link] = STATE(175), - [sym_inline_link] = STATE(175), - [sym_link_text] = STATE(624), - [sym__comment_with_spaces] = STATE(175), - [sym_span] = STATE(175), - [sym_raw_inline] = STATE(175), - [sym_math] = STATE(175), - [sym_verbatim] = STATE(175), - [sym__todo_highlights] = STATE(175), - [sym_todo] = STATE(175), - [sym_note] = STATE(175), - [sym__symbol_fallback] = STATE(175), - [aux_sym__text] = STATE(125), - [aux_sym__inline_repeat1] = STATE(113), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_] = ACTIONS(397), - [anon_sym__] = ACTIONS(400), - [anon_sym_LBRACE_STAR] = ACTIONS(403), - [anon_sym_STAR] = ACTIONS(406), - [anon_sym_BSLASH] = ACTIONS(409), - [sym_quotation_marks] = ACTIONS(400), - [sym_ellipsis] = ACTIONS(400), - [sym_em_dash] = ACTIONS(400), - [sym_en_dash] = ACTIONS(412), - [sym_backslash_escape] = ACTIONS(412), - [anon_sym_LT] = ACTIONS(415), - [anon_sym_LBRACE_EQ] = ACTIONS(418), - [anon_sym_LBRACE_PLUS] = ACTIONS(421), - [anon_sym_LBRACE_DASH] = ACTIONS(424), - [sym_symbol] = ACTIONS(400), - [anon_sym_LBRACE_CARET] = ACTIONS(427), - [anon_sym_CARET] = ACTIONS(475), - [anon_sym_CARET_RBRACE] = ACTIONS(79), - [anon_sym_LBRACE_TILDE] = ACTIONS(430), - [anon_sym_TILDE] = ACTIONS(430), - [anon_sym_LBRACK_CARET] = ACTIONS(433), - [anon_sym_BANG_LBRACK] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(439), - [anon_sym_LBRACE2] = ACTIONS(412), - [anon_sym_DOLLAR] = ACTIONS(442), - [anon_sym_TODO] = ACTIONS(445), - [anon_sym_WIP] = ACTIONS(445), - [anon_sym_NOTE] = ACTIONS(448), - [anon_sym_INFO] = ACTIONS(448), - [anon_sym_XXX] = ACTIONS(448), - [sym_fixme] = ACTIONS(400), - [anon_sym_PIPE] = ACTIONS(400), - [sym__whitespace1] = ACTIONS(451), - [sym__newline] = ACTIONS(454), - [aux_sym__text_token1] = ACTIONS(457), - [sym__verbatim_begin] = ACTIONS(460), + [86] = { + [sym__inline_without_trailing_space] = STATE(739), + [sym__element] = STATE(581), + [sym_emphasis] = STATE(179), + [sym_emphasis_begin] = STATE(1019), + [sym_strong] = STATE(179), + [sym_strong_begin] = STATE(110), + [sym__hard_line_break] = STATE(179), + [sym_hard_line_break] = STATE(179), + [sym__smart_punctuation] = STATE(179), + [sym_autolink] = STATE(179), + [sym_highlighted] = STATE(179), + [sym_insert] = STATE(179), + [sym_delete] = STATE(179), + [sym_superscript] = STATE(179), + [sym_subscript] = STATE(179), + [sym_footnote_reference] = STATE(179), + [sym__image] = STATE(179), + [sym_full_reference_image] = STATE(179), + [sym_collapsed_reference_image] = STATE(179), + [sym_inline_image] = STATE(179), + [sym__image_description] = STATE(720), + [sym__link] = STATE(179), + [sym_full_reference_link] = STATE(179), + [sym_collapsed_reference_link] = STATE(179), + [sym_inline_link] = STATE(179), + [sym_link_text] = STATE(697), + [sym__comment_with_spaces] = STATE(179), + [sym_span] = STATE(179), + [sym_raw_inline] = STATE(179), + [sym_math] = STATE(179), + [sym_verbatim] = STATE(179), + [sym__todo_highlights] = STATE(179), + [sym_todo] = STATE(179), + [sym_note] = STATE(179), + [sym__symbol_fallback] = STATE(179), + [aux_sym__text] = STATE(163), + [aux_sym__inline_repeat1] = STATE(130), + [anon_sym_LBRACE_] = ACTIONS(915), + [anon_sym__] = ACTIONS(917), + [anon_sym_LBRACE_STAR] = ACTIONS(919), + [anon_sym_STAR] = ACTIONS(921), + [anon_sym_BSLASH] = ACTIONS(923), + [sym_quotation_marks] = ACTIONS(925), + [sym_ellipsis] = ACTIONS(925), + [sym_em_dash] = ACTIONS(925), + [sym_en_dash] = ACTIONS(927), + [sym_backslash_escape] = ACTIONS(927), + [anon_sym_LT] = ACTIONS(929), + [anon_sym_LBRACE_EQ] = ACTIONS(931), + [anon_sym_LBRACE_PLUS] = ACTIONS(933), + [anon_sym_LBRACE_DASH] = ACTIONS(935), + [sym_symbol] = ACTIONS(925), + [anon_sym_LBRACE_CARET] = ACTIONS(937), + [anon_sym_CARET] = ACTIONS(937), + [anon_sym_LBRACE_TILDE] = ACTIONS(939), + [anon_sym_TILDE] = ACTIONS(939), + [anon_sym_LBRACK_CARET] = ACTIONS(941), + [anon_sym_BANG_LBRACK] = ACTIONS(943), + [anon_sym_LBRACK] = ACTIONS(945), + [anon_sym_LBRACE2] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(947), + [anon_sym_TODO] = ACTIONS(949), + [anon_sym_WIP] = ACTIONS(949), + [anon_sym_NOTE] = ACTIONS(951), + [anon_sym_INFO] = ACTIONS(951), + [anon_sym_XXX] = ACTIONS(951), + [sym_fixme] = ACTIONS(925), + [anon_sym_PIPE] = ACTIONS(925), + [sym__whitespace1] = ACTIONS(953), + [sym__newline] = ACTIONS(955), + [aux_sym__text_token1] = ACTIONS(957), + [sym__verbatim_begin] = ACTIONS(959), }, - [29] = { - [sym__inline] = STATE(832), - [sym__element] = STATE(97), - [sym_emphasis] = STATE(182), - [sym_emphasis_begin] = STATE(898), - [sym_strong] = STATE(182), - [sym_strong_begin] = STATE(104), - [sym__hard_line_break] = STATE(182), - [sym_hard_line_break] = STATE(182), - [sym__smart_punctuation] = STATE(182), - [sym_autolink] = STATE(182), - [sym_highlighted] = STATE(182), - [sym_insert] = STATE(182), - [sym_delete] = STATE(182), - [sym_superscript] = STATE(182), - [sym_subscript] = STATE(182), - [sym_footnote_reference] = STATE(182), - [sym__image] = STATE(182), - [sym_full_reference_image] = STATE(182), - [sym_collapsed_reference_image] = STATE(182), - [sym_inline_image] = STATE(182), - [sym__image_description] = STATE(610), - [sym__link] = STATE(182), - [sym_full_reference_link] = STATE(182), - [sym_collapsed_reference_link] = STATE(182), - [sym_inline_link] = STATE(182), - [sym_link_text] = STATE(608), - [sym__comment_with_spaces] = STATE(182), - [sym_span] = STATE(182), - [sym_raw_inline] = STATE(182), - [sym_math] = STATE(182), - [sym_verbatim] = STATE(182), - [sym__todo_highlights] = STATE(182), - [sym_todo] = STATE(182), - [sym_note] = STATE(182), - [sym__symbol_fallback] = STATE(182), - [aux_sym__text] = STATE(144), - [aux_sym__inline_repeat1] = STATE(97), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_] = ACTIONS(49), - [anon_sym__] = ACTIONS(52), - [anon_sym_LBRACE_STAR] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(58), - [anon_sym_BSLASH] = ACTIONS(61), - [sym_quotation_marks] = ACTIONS(52), - [sym_ellipsis] = ACTIONS(52), - [sym_em_dash] = ACTIONS(52), - [sym_en_dash] = ACTIONS(64), - [sym_backslash_escape] = ACTIONS(64), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_LBRACE_EQ] = ACTIONS(70), - [anon_sym_LBRACE_PLUS] = ACTIONS(73), - [anon_sym_LBRACE_DASH] = ACTIONS(76), - [sym_symbol] = ACTIONS(52), - [anon_sym_LBRACE_CARET] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(130), - [anon_sym_CARET_RBRACE] = ACTIONS(79), - [anon_sym_LBRACE_TILDE] = ACTIONS(84), - [anon_sym_TILDE] = ACTIONS(84), - [anon_sym_LBRACK_CARET] = ACTIONS(87), - [anon_sym_BANG_LBRACK] = ACTIONS(92), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LBRACE2] = ACTIONS(64), - [anon_sym_DOLLAR] = ACTIONS(98), - [anon_sym_TODO] = ACTIONS(101), - [anon_sym_WIP] = ACTIONS(101), - [anon_sym_NOTE] = ACTIONS(104), - [anon_sym_INFO] = ACTIONS(104), - [anon_sym_XXX] = ACTIONS(104), - [sym_fixme] = ACTIONS(52), - [anon_sym_PIPE] = ACTIONS(52), - [sym__whitespace1] = ACTIONS(107), - [sym__newline] = ACTIONS(110), - [aux_sym__text_token1] = ACTIONS(113), - [sym__verbatim_begin] = ACTIONS(116), + [87] = { + [sym__element] = STATE(81), + [sym_emphasis] = STATE(176), + [sym_emphasis_begin] = STATE(1013), + [sym_strong] = STATE(176), + [sym_strong_begin] = STATE(97), + [sym__hard_line_break] = STATE(176), + [sym_hard_line_break] = STATE(176), + [sym__smart_punctuation] = STATE(176), + [sym_autolink] = STATE(176), + [sym_highlighted] = STATE(176), + [sym_insert] = STATE(176), + [sym_delete] = STATE(176), + [sym_superscript] = STATE(176), + [sym_subscript] = STATE(176), + [sym_footnote_reference] = STATE(176), + [sym__image] = STATE(176), + [sym_full_reference_image] = STATE(176), + [sym_collapsed_reference_image] = STATE(176), + [sym_inline_image] = STATE(176), + [sym__image_description] = STATE(690), + [sym__link] = STATE(176), + [sym_full_reference_link] = STATE(176), + [sym_collapsed_reference_link] = STATE(176), + [sym_inline_link] = STATE(176), + [sym_link_text] = STATE(691), + [sym__comment_with_spaces] = STATE(176), + [sym_span] = STATE(176), + [sym_raw_inline] = STATE(176), + [sym_math] = STATE(176), + [sym_verbatim] = STATE(176), + [sym__todo_highlights] = STATE(176), + [sym_todo] = STATE(176), + [sym_note] = STATE(176), + [sym__symbol_fallback] = STATE(176), + [aux_sym__text] = STATE(155), + [aux_sym__inline_repeat1] = STATE(81), + [anon_sym_LBRACE_] = ACTIONS(961), + [anon_sym__] = ACTIONS(963), + [anon_sym_LBRACE_STAR] = ACTIONS(965), + [anon_sym_STAR] = ACTIONS(967), + [anon_sym_BSLASH] = ACTIONS(969), + [sym_quotation_marks] = ACTIONS(971), + [sym_ellipsis] = ACTIONS(971), + [sym_em_dash] = ACTIONS(971), + [sym_en_dash] = ACTIONS(973), + [sym_backslash_escape] = ACTIONS(973), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_LBRACE_EQ] = ACTIONS(977), + [anon_sym_LBRACE_PLUS] = ACTIONS(979), + [anon_sym_PLUS_RBRACE] = ACTIONS(590), + [anon_sym_LBRACE_DASH] = ACTIONS(981), + [sym_symbol] = ACTIONS(971), + [anon_sym_LBRACE_CARET] = ACTIONS(983), + [anon_sym_CARET] = ACTIONS(983), + [anon_sym_LBRACE_TILDE] = ACTIONS(985), + [anon_sym_TILDE] = ACTIONS(985), + [anon_sym_LBRACK_CARET] = ACTIONS(987), + [anon_sym_BANG_LBRACK] = ACTIONS(989), + [anon_sym_LBRACK] = ACTIONS(991), + [anon_sym_LBRACE2] = ACTIONS(973), + [anon_sym_DOLLAR] = ACTIONS(993), + [anon_sym_TODO] = ACTIONS(995), + [anon_sym_WIP] = ACTIONS(995), + [anon_sym_NOTE] = ACTIONS(997), + [anon_sym_INFO] = ACTIONS(997), + [anon_sym_XXX] = ACTIONS(997), + [sym_fixme] = ACTIONS(971), + [anon_sym_PIPE] = ACTIONS(971), + [sym__whitespace1] = ACTIONS(999), + [sym__newline] = ACTIONS(1001), + [aux_sym__text_token1] = ACTIONS(1003), + [sym__verbatim_begin] = ACTIONS(1005), }, - [30] = { - [sym__inline] = STATE(749), - [sym__element] = STATE(107), - [sym_emphasis] = STATE(187), - [sym_emphasis_begin] = STATE(893), - [sym_strong] = STATE(187), - [sym_strong_begin] = STATE(119), - [sym__hard_line_break] = STATE(187), - [sym_hard_line_break] = STATE(187), - [sym__smart_punctuation] = STATE(187), - [sym_autolink] = STATE(187), - [sym_highlighted] = STATE(187), - [sym_insert] = STATE(187), - [sym_delete] = STATE(187), - [sym_superscript] = STATE(187), - [sym_subscript] = STATE(187), - [sym_footnote_reference] = STATE(187), - [sym__image] = STATE(187), - [sym_full_reference_image] = STATE(187), - [sym_collapsed_reference_image] = STATE(187), - [sym_inline_image] = STATE(187), - [sym__image_description] = STATE(616), - [sym__link] = STATE(187), - [sym_full_reference_link] = STATE(187), - [sym_collapsed_reference_link] = STATE(187), - [sym_inline_link] = STATE(187), - [sym_link_text] = STATE(634), - [sym__comment_with_spaces] = STATE(187), - [sym_span] = STATE(187), - [sym_raw_inline] = STATE(187), - [sym_math] = STATE(187), - [sym_verbatim] = STATE(187), - [sym__todo_highlights] = STATE(187), - [sym_todo] = STATE(187), - [sym_note] = STATE(187), - [sym__symbol_fallback] = STATE(187), - [aux_sym__text] = STATE(131), - [aux_sym__inline_repeat1] = STATE(107), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_] = ACTIONS(265), - [anon_sym__] = ACTIONS(268), - [anon_sym_LBRACE_STAR] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(274), - [anon_sym_BSLASH] = ACTIONS(277), - [sym_quotation_marks] = ACTIONS(268), - [sym_ellipsis] = ACTIONS(268), - [sym_em_dash] = ACTIONS(268), - [sym_en_dash] = ACTIONS(280), - [sym_backslash_escape] = ACTIONS(280), - [anon_sym_LT] = ACTIONS(283), - [anon_sym_LBRACE_EQ] = ACTIONS(286), - [anon_sym_LBRACE_PLUS] = ACTIONS(289), - [anon_sym_LBRACE_DASH] = ACTIONS(292), - [sym_symbol] = ACTIONS(268), - [anon_sym_LBRACE_CARET] = ACTIONS(295), - [anon_sym_CARET] = ACTIONS(295), - [anon_sym_LBRACE_TILDE] = ACTIONS(298), - [anon_sym_TILDE] = ACTIONS(478), - [anon_sym_TILDE_RBRACE] = ACTIONS(79), - [anon_sym_LBRACK_CARET] = ACTIONS(301), - [anon_sym_BANG_LBRACK] = ACTIONS(304), - [anon_sym_LBRACK] = ACTIONS(307), - [anon_sym_LBRACE2] = ACTIONS(280), - [anon_sym_DOLLAR] = ACTIONS(310), - [anon_sym_TODO] = ACTIONS(313), - [anon_sym_WIP] = ACTIONS(313), - [anon_sym_NOTE] = ACTIONS(316), - [anon_sym_INFO] = ACTIONS(316), - [anon_sym_XXX] = ACTIONS(316), - [sym_fixme] = ACTIONS(268), - [anon_sym_PIPE] = ACTIONS(268), - [sym__whitespace1] = ACTIONS(319), - [sym__newline] = ACTIONS(322), - [aux_sym__text_token1] = ACTIONS(325), - [sym__verbatim_begin] = ACTIONS(328), + [88] = { + [sym__inline_without_trailing_space] = STATE(740), + [sym__element] = STATE(581), + [sym_emphasis] = STATE(179), + [sym_emphasis_begin] = STATE(1019), + [sym_strong] = STATE(179), + [sym_strong_begin] = STATE(110), + [sym__hard_line_break] = STATE(179), + [sym_hard_line_break] = STATE(179), + [sym__smart_punctuation] = STATE(179), + [sym_autolink] = STATE(179), + [sym_highlighted] = STATE(179), + [sym_insert] = STATE(179), + [sym_delete] = STATE(179), + [sym_superscript] = STATE(179), + [sym_subscript] = STATE(179), + [sym_footnote_reference] = STATE(179), + [sym__image] = STATE(179), + [sym_full_reference_image] = STATE(179), + [sym_collapsed_reference_image] = STATE(179), + [sym_inline_image] = STATE(179), + [sym__image_description] = STATE(720), + [sym__link] = STATE(179), + [sym_full_reference_link] = STATE(179), + [sym_collapsed_reference_link] = STATE(179), + [sym_inline_link] = STATE(179), + [sym_link_text] = STATE(697), + [sym__comment_with_spaces] = STATE(179), + [sym_span] = STATE(179), + [sym_raw_inline] = STATE(179), + [sym_math] = STATE(179), + [sym_verbatim] = STATE(179), + [sym__todo_highlights] = STATE(179), + [sym_todo] = STATE(179), + [sym_note] = STATE(179), + [sym__symbol_fallback] = STATE(179), + [aux_sym__text] = STATE(163), + [aux_sym__inline_repeat1] = STATE(130), + [anon_sym_LBRACE_] = ACTIONS(915), + [anon_sym__] = ACTIONS(917), + [anon_sym_LBRACE_STAR] = ACTIONS(919), + [anon_sym_STAR] = ACTIONS(921), + [anon_sym_BSLASH] = ACTIONS(923), + [sym_quotation_marks] = ACTIONS(925), + [sym_ellipsis] = ACTIONS(925), + [sym_em_dash] = ACTIONS(925), + [sym_en_dash] = ACTIONS(927), + [sym_backslash_escape] = ACTIONS(927), + [anon_sym_LT] = ACTIONS(929), + [anon_sym_LBRACE_EQ] = ACTIONS(931), + [anon_sym_LBRACE_PLUS] = ACTIONS(933), + [anon_sym_LBRACE_DASH] = ACTIONS(935), + [sym_symbol] = ACTIONS(925), + [anon_sym_LBRACE_CARET] = ACTIONS(937), + [anon_sym_CARET] = ACTIONS(937), + [anon_sym_LBRACE_TILDE] = ACTIONS(939), + [anon_sym_TILDE] = ACTIONS(939), + [anon_sym_LBRACK_CARET] = ACTIONS(941), + [anon_sym_BANG_LBRACK] = ACTIONS(943), + [anon_sym_LBRACK] = ACTIONS(945), + [anon_sym_LBRACE2] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(947), + [anon_sym_TODO] = ACTIONS(949), + [anon_sym_WIP] = ACTIONS(949), + [anon_sym_NOTE] = ACTIONS(951), + [anon_sym_INFO] = ACTIONS(951), + [anon_sym_XXX] = ACTIONS(951), + [sym_fixme] = ACTIONS(925), + [anon_sym_PIPE] = ACTIONS(925), + [sym__whitespace1] = ACTIONS(953), + [sym__newline] = ACTIONS(955), + [aux_sym__text_token1] = ACTIONS(957), + [sym__verbatim_begin] = ACTIONS(959), }, - [31] = { - [sym__inline] = STATE(742), - [sym__element] = STATE(78), - [sym_emphasis] = STATE(167), - [sym_emphasis_begin] = STATE(894), - [sym_strong] = STATE(167), - [sym_strong_begin] = STATE(117), - [sym__hard_line_break] = STATE(167), - [sym_hard_line_break] = STATE(167), - [sym__smart_punctuation] = STATE(167), - [sym_autolink] = STATE(167), - [sym_highlighted] = STATE(167), - [sym_insert] = STATE(167), - [sym_delete] = STATE(167), - [sym_superscript] = STATE(167), - [sym_subscript] = STATE(167), - [sym_footnote_reference] = STATE(167), - [sym__image] = STATE(167), - [sym_full_reference_image] = STATE(167), - [sym_collapsed_reference_image] = STATE(167), - [sym_inline_image] = STATE(167), - [sym__image_description] = STATE(613), - [sym__link] = STATE(167), - [sym_full_reference_link] = STATE(167), - [sym_collapsed_reference_link] = STATE(167), - [sym_inline_link] = STATE(167), - [sym_link_text] = STATE(614), - [sym__comment_with_spaces] = STATE(167), - [sym_span] = STATE(167), - [sym_raw_inline] = STATE(167), - [sym_math] = STATE(167), - [sym_verbatim] = STATE(167), - [sym__todo_highlights] = STATE(167), - [sym_todo] = STATE(167), - [sym_note] = STATE(167), - [sym__symbol_fallback] = STATE(167), - [aux_sym__text] = STATE(130), - [aux_sym__inline_repeat1] = STATE(78), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_] = ACTIONS(199), - [anon_sym__] = ACTIONS(202), - [anon_sym_LBRACE_STAR] = ACTIONS(205), - [anon_sym_STAR] = ACTIONS(208), - [anon_sym_BSLASH] = ACTIONS(211), - [sym_quotation_marks] = ACTIONS(202), - [sym_ellipsis] = ACTIONS(202), - [sym_em_dash] = ACTIONS(202), - [sym_en_dash] = ACTIONS(214), - [sym_backslash_escape] = ACTIONS(214), - [anon_sym_LT] = ACTIONS(217), - [anon_sym_LBRACE_EQ] = ACTIONS(220), - [anon_sym_LBRACE_PLUS] = ACTIONS(223), - [anon_sym_LBRACE_DASH] = ACTIONS(226), - [sym_symbol] = ACTIONS(202), - [anon_sym_LBRACE_CARET] = ACTIONS(229), - [anon_sym_CARET] = ACTIONS(229), - [anon_sym_LBRACE_TILDE] = ACTIONS(232), - [anon_sym_TILDE] = ACTIONS(481), - [anon_sym_TILDE_RBRACE] = ACTIONS(79), - [anon_sym_LBRACK_CARET] = ACTIONS(235), - [anon_sym_BANG_LBRACK] = ACTIONS(238), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_LBRACE2] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(244), - [anon_sym_TODO] = ACTIONS(247), - [anon_sym_WIP] = ACTIONS(247), - [anon_sym_NOTE] = ACTIONS(250), - [anon_sym_INFO] = ACTIONS(250), - [anon_sym_XXX] = ACTIONS(250), - [sym_fixme] = ACTIONS(202), - [anon_sym_PIPE] = ACTIONS(202), - [sym__whitespace1] = ACTIONS(253), - [sym__newline] = ACTIONS(256), - [aux_sym__text_token1] = ACTIONS(259), - [sym__verbatim_begin] = ACTIONS(262), + [89] = { + [sym__inline_without_trailing_space] = STATE(723), + [sym__element] = STATE(581), + [sym_emphasis] = STATE(179), + [sym_emphasis_begin] = STATE(1019), + [sym_strong] = STATE(179), + [sym_strong_begin] = STATE(110), + [sym__hard_line_break] = STATE(179), + [sym_hard_line_break] = STATE(179), + [sym__smart_punctuation] = STATE(179), + [sym_autolink] = STATE(179), + [sym_highlighted] = STATE(179), + [sym_insert] = STATE(179), + [sym_delete] = STATE(179), + [sym_superscript] = STATE(179), + [sym_subscript] = STATE(179), + [sym_footnote_reference] = STATE(179), + [sym__image] = STATE(179), + [sym_full_reference_image] = STATE(179), + [sym_collapsed_reference_image] = STATE(179), + [sym_inline_image] = STATE(179), + [sym__image_description] = STATE(720), + [sym__link] = STATE(179), + [sym_full_reference_link] = STATE(179), + [sym_collapsed_reference_link] = STATE(179), + [sym_inline_link] = STATE(179), + [sym_link_text] = STATE(697), + [sym__comment_with_spaces] = STATE(179), + [sym_span] = STATE(179), + [sym_raw_inline] = STATE(179), + [sym_math] = STATE(179), + [sym_verbatim] = STATE(179), + [sym__todo_highlights] = STATE(179), + [sym_todo] = STATE(179), + [sym_note] = STATE(179), + [sym__symbol_fallback] = STATE(179), + [aux_sym__text] = STATE(163), + [aux_sym__inline_repeat1] = STATE(130), + [anon_sym_LBRACE_] = ACTIONS(915), + [anon_sym__] = ACTIONS(917), + [anon_sym_LBRACE_STAR] = ACTIONS(919), + [anon_sym_STAR] = ACTIONS(921), + [anon_sym_BSLASH] = ACTIONS(923), + [sym_quotation_marks] = ACTIONS(925), + [sym_ellipsis] = ACTIONS(925), + [sym_em_dash] = ACTIONS(925), + [sym_en_dash] = ACTIONS(927), + [sym_backslash_escape] = ACTIONS(927), + [anon_sym_LT] = ACTIONS(929), + [anon_sym_LBRACE_EQ] = ACTIONS(931), + [anon_sym_LBRACE_PLUS] = ACTIONS(933), + [anon_sym_LBRACE_DASH] = ACTIONS(935), + [sym_symbol] = ACTIONS(925), + [anon_sym_LBRACE_CARET] = ACTIONS(937), + [anon_sym_CARET] = ACTIONS(937), + [anon_sym_LBRACE_TILDE] = ACTIONS(939), + [anon_sym_TILDE] = ACTIONS(939), + [anon_sym_LBRACK_CARET] = ACTIONS(941), + [anon_sym_BANG_LBRACK] = ACTIONS(943), + [anon_sym_LBRACK] = ACTIONS(945), + [anon_sym_LBRACE2] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(947), + [anon_sym_TODO] = ACTIONS(949), + [anon_sym_WIP] = ACTIONS(949), + [anon_sym_NOTE] = ACTIONS(951), + [anon_sym_INFO] = ACTIONS(951), + [anon_sym_XXX] = ACTIONS(951), + [sym_fixme] = ACTIONS(925), + [anon_sym_PIPE] = ACTIONS(925), + [sym__whitespace1] = ACTIONS(953), + [sym__newline] = ACTIONS(955), + [aux_sym__text_token1] = ACTIONS(957), + [sym__verbatim_begin] = ACTIONS(959), }, - [32] = { - [sym__inline] = STATE(741), - [sym__element] = STATE(73), - [sym_emphasis] = STATE(180), - [sym_emphasis_begin] = STATE(895), - [sym_strong] = STATE(180), - [sym_strong_begin] = STATE(114), - [sym__hard_line_break] = STATE(180), - [sym_hard_line_break] = STATE(180), - [sym__smart_punctuation] = STATE(180), - [sym_autolink] = STATE(180), - [sym_highlighted] = STATE(180), - [sym_insert] = STATE(180), - [sym_delete] = STATE(180), - [sym_superscript] = STATE(180), - [sym_subscript] = STATE(180), - [sym_footnote_reference] = STATE(180), - [sym__image] = STATE(180), - [sym_full_reference_image] = STATE(180), - [sym_collapsed_reference_image] = STATE(180), - [sym_inline_image] = STATE(180), - [sym__image_description] = STATE(632), - [sym__link] = STATE(180), - [sym_full_reference_link] = STATE(180), - [sym_collapsed_reference_link] = STATE(180), - [sym_inline_link] = STATE(180), - [sym_link_text] = STATE(633), - [sym__comment_with_spaces] = STATE(180), - [sym_span] = STATE(180), - [sym_raw_inline] = STATE(180), - [sym_math] = STATE(180), - [sym_verbatim] = STATE(180), - [sym__todo_highlights] = STATE(180), - [sym_todo] = STATE(180), - [sym_note] = STATE(180), - [sym__symbol_fallback] = STATE(180), - [aux_sym__text] = STATE(132), - [aux_sym__inline_repeat1] = STATE(73), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_] = ACTIONS(133), - [anon_sym__] = ACTIONS(136), - [anon_sym_LBRACE_STAR] = ACTIONS(139), - [anon_sym_STAR] = ACTIONS(142), - [anon_sym_BSLASH] = ACTIONS(145), - [sym_quotation_marks] = ACTIONS(136), - [sym_ellipsis] = ACTIONS(136), - [sym_em_dash] = ACTIONS(136), - [sym_en_dash] = ACTIONS(148), - [sym_backslash_escape] = ACTIONS(148), - [anon_sym_LT] = ACTIONS(151), - [anon_sym_LBRACE_EQ] = ACTIONS(154), - [anon_sym_LBRACE_PLUS] = ACTIONS(157), - [anon_sym_LBRACE_DASH] = ACTIONS(160), - [sym_symbol] = ACTIONS(136), - [anon_sym_LBRACE_CARET] = ACTIONS(163), - [anon_sym_CARET] = ACTIONS(163), - [anon_sym_LBRACE_TILDE] = ACTIONS(166), - [anon_sym_TILDE] = ACTIONS(484), - [anon_sym_TILDE_RBRACE] = ACTIONS(79), - [anon_sym_LBRACK_CARET] = ACTIONS(169), - [anon_sym_BANG_LBRACK] = ACTIONS(172), - [anon_sym_LBRACK] = ACTIONS(175), - [anon_sym_LBRACE2] = ACTIONS(148), - [anon_sym_DOLLAR] = ACTIONS(178), - [anon_sym_TODO] = ACTIONS(181), - [anon_sym_WIP] = ACTIONS(181), - [anon_sym_NOTE] = ACTIONS(184), - [anon_sym_INFO] = ACTIONS(184), - [anon_sym_XXX] = ACTIONS(184), - [sym_fixme] = ACTIONS(136), - [anon_sym_PIPE] = ACTIONS(136), - [sym__whitespace1] = ACTIONS(187), - [sym__newline] = ACTIONS(190), - [aux_sym__text_token1] = ACTIONS(193), - [sym__verbatim_begin] = ACTIONS(196), + [90] = { + [sym__inline_without_trailing_space] = STATE(743), + [sym__element] = STATE(581), + [sym_emphasis] = STATE(179), + [sym_emphasis_begin] = STATE(1019), + [sym_strong] = STATE(179), + [sym_strong_begin] = STATE(110), + [sym__hard_line_break] = STATE(179), + [sym_hard_line_break] = STATE(179), + [sym__smart_punctuation] = STATE(179), + [sym_autolink] = STATE(179), + [sym_highlighted] = STATE(179), + [sym_insert] = STATE(179), + [sym_delete] = STATE(179), + [sym_superscript] = STATE(179), + [sym_subscript] = STATE(179), + [sym_footnote_reference] = STATE(179), + [sym__image] = STATE(179), + [sym_full_reference_image] = STATE(179), + [sym_collapsed_reference_image] = STATE(179), + [sym_inline_image] = STATE(179), + [sym__image_description] = STATE(720), + [sym__link] = STATE(179), + [sym_full_reference_link] = STATE(179), + [sym_collapsed_reference_link] = STATE(179), + [sym_inline_link] = STATE(179), + [sym_link_text] = STATE(697), + [sym__comment_with_spaces] = STATE(179), + [sym_span] = STATE(179), + [sym_raw_inline] = STATE(179), + [sym_math] = STATE(179), + [sym_verbatim] = STATE(179), + [sym__todo_highlights] = STATE(179), + [sym_todo] = STATE(179), + [sym_note] = STATE(179), + [sym__symbol_fallback] = STATE(179), + [aux_sym__text] = STATE(163), + [aux_sym__inline_repeat1] = STATE(130), + [anon_sym_LBRACE_] = ACTIONS(915), + [anon_sym__] = ACTIONS(917), + [anon_sym_LBRACE_STAR] = ACTIONS(919), + [anon_sym_STAR] = ACTIONS(921), + [anon_sym_BSLASH] = ACTIONS(923), + [sym_quotation_marks] = ACTIONS(925), + [sym_ellipsis] = ACTIONS(925), + [sym_em_dash] = ACTIONS(925), + [sym_en_dash] = ACTIONS(927), + [sym_backslash_escape] = ACTIONS(927), + [anon_sym_LT] = ACTIONS(929), + [anon_sym_LBRACE_EQ] = ACTIONS(931), + [anon_sym_LBRACE_PLUS] = ACTIONS(933), + [anon_sym_LBRACE_DASH] = ACTIONS(935), + [sym_symbol] = ACTIONS(925), + [anon_sym_LBRACE_CARET] = ACTIONS(937), + [anon_sym_CARET] = ACTIONS(937), + [anon_sym_LBRACE_TILDE] = ACTIONS(939), + [anon_sym_TILDE] = ACTIONS(939), + [anon_sym_LBRACK_CARET] = ACTIONS(941), + [anon_sym_BANG_LBRACK] = ACTIONS(943), + [anon_sym_LBRACK] = ACTIONS(945), + [anon_sym_LBRACE2] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(947), + [anon_sym_TODO] = ACTIONS(949), + [anon_sym_WIP] = ACTIONS(949), + [anon_sym_NOTE] = ACTIONS(951), + [anon_sym_INFO] = ACTIONS(951), + [anon_sym_XXX] = ACTIONS(951), + [sym_fixme] = ACTIONS(925), + [anon_sym_PIPE] = ACTIONS(925), + [sym__whitespace1] = ACTIONS(953), + [sym__newline] = ACTIONS(955), + [aux_sym__text_token1] = ACTIONS(957), + [sym__verbatim_begin] = ACTIONS(959), }, - [33] = { - [sym__inline] = STATE(683), - [sym__element] = STATE(72), - [sym_emphasis] = STATE(163), - [sym_emphasis_begin] = STATE(896), - [sym_strong] = STATE(163), + [91] = { + [sym__inline_without_trailing_space] = STATE(736), + [sym__element] = STATE(581), + [sym_emphasis] = STATE(179), + [sym_emphasis_begin] = STATE(1019), + [sym_strong] = STATE(179), [sym_strong_begin] = STATE(110), - [sym__hard_line_break] = STATE(163), - [sym_hard_line_break] = STATE(163), - [sym__smart_punctuation] = STATE(163), - [sym_autolink] = STATE(163), - [sym_highlighted] = STATE(163), - [sym_insert] = STATE(163), - [sym_delete] = STATE(163), - [sym_superscript] = STATE(163), - [sym_subscript] = STATE(163), - [sym_footnote_reference] = STATE(163), - [sym__image] = STATE(163), - [sym_full_reference_image] = STATE(163), - [sym_collapsed_reference_image] = STATE(163), - [sym_inline_image] = STATE(163), - [sym__image_description] = STATE(622), - [sym__link] = STATE(163), - [sym_full_reference_link] = STATE(163), - [sym_collapsed_reference_link] = STATE(163), - [sym_inline_link] = STATE(163), - [sym_link_text] = STATE(605), - [sym__comment_with_spaces] = STATE(163), - [sym_span] = STATE(163), - [sym_raw_inline] = STATE(163), - [sym_math] = STATE(163), - [sym_verbatim] = STATE(163), - [sym__todo_highlights] = STATE(163), - [sym_todo] = STATE(163), - [sym_note] = STATE(163), - [sym__symbol_fallback] = STATE(163), - [aux_sym__text] = STATE(146), - [aux_sym__inline_repeat1] = STATE(72), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_] = ACTIONS(331), - [anon_sym__] = ACTIONS(334), - [anon_sym_LBRACE_STAR] = ACTIONS(337), - [anon_sym_STAR] = ACTIONS(340), - [anon_sym_BSLASH] = ACTIONS(343), - [sym_quotation_marks] = ACTIONS(334), - [sym_ellipsis] = ACTIONS(334), - [sym_em_dash] = ACTIONS(334), - [sym_en_dash] = ACTIONS(346), - [sym_backslash_escape] = ACTIONS(346), - [anon_sym_LT] = ACTIONS(349), - [anon_sym_LBRACE_EQ] = ACTIONS(352), - [anon_sym_LBRACE_PLUS] = ACTIONS(355), - [anon_sym_LBRACE_DASH] = ACTIONS(358), - [sym_symbol] = ACTIONS(334), - [anon_sym_LBRACE_CARET] = ACTIONS(361), - [anon_sym_CARET] = ACTIONS(361), - [anon_sym_LBRACE_TILDE] = ACTIONS(364), - [anon_sym_TILDE] = ACTIONS(487), - [anon_sym_TILDE_RBRACE] = ACTIONS(79), - [anon_sym_LBRACK_CARET] = ACTIONS(367), - [anon_sym_BANG_LBRACK] = ACTIONS(370), - [anon_sym_LBRACK] = ACTIONS(373), - [anon_sym_LBRACE2] = ACTIONS(346), - [anon_sym_DOLLAR] = ACTIONS(376), - [anon_sym_TODO] = ACTIONS(379), - [anon_sym_WIP] = ACTIONS(379), - [anon_sym_NOTE] = ACTIONS(382), - [anon_sym_INFO] = ACTIONS(382), - [anon_sym_XXX] = ACTIONS(382), - [sym_fixme] = ACTIONS(334), - [anon_sym_PIPE] = ACTIONS(334), - [sym__whitespace1] = ACTIONS(385), - [sym__newline] = ACTIONS(388), - [aux_sym__text_token1] = ACTIONS(391), - [sym__verbatim_begin] = ACTIONS(394), + [sym__hard_line_break] = STATE(179), + [sym_hard_line_break] = STATE(179), + [sym__smart_punctuation] = STATE(179), + [sym_autolink] = STATE(179), + [sym_highlighted] = STATE(179), + [sym_insert] = STATE(179), + [sym_delete] = STATE(179), + [sym_superscript] = STATE(179), + [sym_subscript] = STATE(179), + [sym_footnote_reference] = STATE(179), + [sym__image] = STATE(179), + [sym_full_reference_image] = STATE(179), + [sym_collapsed_reference_image] = STATE(179), + [sym_inline_image] = STATE(179), + [sym__image_description] = STATE(720), + [sym__link] = STATE(179), + [sym_full_reference_link] = STATE(179), + [sym_collapsed_reference_link] = STATE(179), + [sym_inline_link] = STATE(179), + [sym_link_text] = STATE(697), + [sym__comment_with_spaces] = STATE(179), + [sym_span] = STATE(179), + [sym_raw_inline] = STATE(179), + [sym_math] = STATE(179), + [sym_verbatim] = STATE(179), + [sym__todo_highlights] = STATE(179), + [sym_todo] = STATE(179), + [sym_note] = STATE(179), + [sym__symbol_fallback] = STATE(179), + [aux_sym__text] = STATE(163), + [aux_sym__inline_repeat1] = STATE(130), + [anon_sym_LBRACE_] = ACTIONS(915), + [anon_sym__] = ACTIONS(917), + [anon_sym_LBRACE_STAR] = ACTIONS(919), + [anon_sym_STAR] = ACTIONS(921), + [anon_sym_BSLASH] = ACTIONS(923), + [sym_quotation_marks] = ACTIONS(925), + [sym_ellipsis] = ACTIONS(925), + [sym_em_dash] = ACTIONS(925), + [sym_en_dash] = ACTIONS(927), + [sym_backslash_escape] = ACTIONS(927), + [anon_sym_LT] = ACTIONS(929), + [anon_sym_LBRACE_EQ] = ACTIONS(931), + [anon_sym_LBRACE_PLUS] = ACTIONS(933), + [anon_sym_LBRACE_DASH] = ACTIONS(935), + [sym_symbol] = ACTIONS(925), + [anon_sym_LBRACE_CARET] = ACTIONS(937), + [anon_sym_CARET] = ACTIONS(937), + [anon_sym_LBRACE_TILDE] = ACTIONS(939), + [anon_sym_TILDE] = ACTIONS(939), + [anon_sym_LBRACK_CARET] = ACTIONS(941), + [anon_sym_BANG_LBRACK] = ACTIONS(943), + [anon_sym_LBRACK] = ACTIONS(945), + [anon_sym_LBRACE2] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(947), + [anon_sym_TODO] = ACTIONS(949), + [anon_sym_WIP] = ACTIONS(949), + [anon_sym_NOTE] = ACTIONS(951), + [anon_sym_INFO] = ACTIONS(951), + [anon_sym_XXX] = ACTIONS(951), + [sym_fixme] = ACTIONS(925), + [anon_sym_PIPE] = ACTIONS(925), + [sym__whitespace1] = ACTIONS(953), + [sym__newline] = ACTIONS(955), + [aux_sym__text_token1] = ACTIONS(957), + [sym__verbatim_begin] = ACTIONS(959), }, - [34] = { - [sym__inline] = STATE(684), - [sym__element] = STATE(113), - [sym_emphasis] = STATE(175), - [sym_emphasis_begin] = STATE(897), - [sym_strong] = STATE(175), - [sym_strong_begin] = STATE(108), - [sym__hard_line_break] = STATE(175), - [sym_hard_line_break] = STATE(175), - [sym__smart_punctuation] = STATE(175), - [sym_autolink] = STATE(175), - [sym_highlighted] = STATE(175), - [sym_insert] = STATE(175), - [sym_delete] = STATE(175), - [sym_superscript] = STATE(175), - [sym_subscript] = STATE(175), - [sym_footnote_reference] = STATE(175), - [sym__image] = STATE(175), - [sym_full_reference_image] = STATE(175), - [sym_collapsed_reference_image] = STATE(175), - [sym_inline_image] = STATE(175), - [sym__image_description] = STATE(626), - [sym__link] = STATE(175), - [sym_full_reference_link] = STATE(175), - [sym_collapsed_reference_link] = STATE(175), - [sym_inline_link] = STATE(175), - [sym_link_text] = STATE(624), - [sym__comment_with_spaces] = STATE(175), - [sym_span] = STATE(175), - [sym_raw_inline] = STATE(175), - [sym_math] = STATE(175), - [sym_verbatim] = STATE(175), - [sym__todo_highlights] = STATE(175), - [sym_todo] = STATE(175), - [sym_note] = STATE(175), - [sym__symbol_fallback] = STATE(175), - [aux_sym__text] = STATE(125), - [aux_sym__inline_repeat1] = STATE(113), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_] = ACTIONS(397), - [anon_sym__] = ACTIONS(400), - [anon_sym_LBRACE_STAR] = ACTIONS(403), - [anon_sym_STAR] = ACTIONS(406), - [anon_sym_BSLASH] = ACTIONS(409), - [sym_quotation_marks] = ACTIONS(400), - [sym_ellipsis] = ACTIONS(400), - [sym_em_dash] = ACTIONS(400), - [sym_en_dash] = ACTIONS(412), - [sym_backslash_escape] = ACTIONS(412), - [anon_sym_LT] = ACTIONS(415), - [anon_sym_LBRACE_EQ] = ACTIONS(418), - [anon_sym_LBRACE_PLUS] = ACTIONS(421), - [anon_sym_LBRACE_DASH] = ACTIONS(424), - [sym_symbol] = ACTIONS(400), - [anon_sym_LBRACE_CARET] = ACTIONS(427), - [anon_sym_CARET] = ACTIONS(427), - [anon_sym_LBRACE_TILDE] = ACTIONS(430), - [anon_sym_TILDE] = ACTIONS(490), - [anon_sym_TILDE_RBRACE] = ACTIONS(79), - [anon_sym_LBRACK_CARET] = ACTIONS(433), - [anon_sym_BANG_LBRACK] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(439), - [anon_sym_LBRACE2] = ACTIONS(412), - [anon_sym_DOLLAR] = ACTIONS(442), - [anon_sym_TODO] = ACTIONS(445), - [anon_sym_WIP] = ACTIONS(445), - [anon_sym_NOTE] = ACTIONS(448), - [anon_sym_INFO] = ACTIONS(448), - [anon_sym_XXX] = ACTIONS(448), - [sym_fixme] = ACTIONS(400), - [anon_sym_PIPE] = ACTIONS(400), - [sym__whitespace1] = ACTIONS(451), - [sym__newline] = ACTIONS(454), - [aux_sym__text_token1] = ACTIONS(457), - [sym__verbatim_begin] = ACTIONS(460), + [92] = { + [sym__inline_without_trailing_space] = STATE(726), + [sym__element] = STATE(581), + [sym_emphasis] = STATE(179), + [sym_emphasis_begin] = STATE(1019), + [sym_strong] = STATE(179), + [sym_strong_begin] = STATE(110), + [sym__hard_line_break] = STATE(179), + [sym_hard_line_break] = STATE(179), + [sym__smart_punctuation] = STATE(179), + [sym_autolink] = STATE(179), + [sym_highlighted] = STATE(179), + [sym_insert] = STATE(179), + [sym_delete] = STATE(179), + [sym_superscript] = STATE(179), + [sym_subscript] = STATE(179), + [sym_footnote_reference] = STATE(179), + [sym__image] = STATE(179), + [sym_full_reference_image] = STATE(179), + [sym_collapsed_reference_image] = STATE(179), + [sym_inline_image] = STATE(179), + [sym__image_description] = STATE(720), + [sym__link] = STATE(179), + [sym_full_reference_link] = STATE(179), + [sym_collapsed_reference_link] = STATE(179), + [sym_inline_link] = STATE(179), + [sym_link_text] = STATE(697), + [sym__comment_with_spaces] = STATE(179), + [sym_span] = STATE(179), + [sym_raw_inline] = STATE(179), + [sym_math] = STATE(179), + [sym_verbatim] = STATE(179), + [sym__todo_highlights] = STATE(179), + [sym_todo] = STATE(179), + [sym_note] = STATE(179), + [sym__symbol_fallback] = STATE(179), + [aux_sym__text] = STATE(163), + [aux_sym__inline_repeat1] = STATE(130), + [anon_sym_LBRACE_] = ACTIONS(915), + [anon_sym__] = ACTIONS(917), + [anon_sym_LBRACE_STAR] = ACTIONS(919), + [anon_sym_STAR] = ACTIONS(921), + [anon_sym_BSLASH] = ACTIONS(923), + [sym_quotation_marks] = ACTIONS(925), + [sym_ellipsis] = ACTIONS(925), + [sym_em_dash] = ACTIONS(925), + [sym_en_dash] = ACTIONS(927), + [sym_backslash_escape] = ACTIONS(927), + [anon_sym_LT] = ACTIONS(929), + [anon_sym_LBRACE_EQ] = ACTIONS(931), + [anon_sym_LBRACE_PLUS] = ACTIONS(933), + [anon_sym_LBRACE_DASH] = ACTIONS(935), + [sym_symbol] = ACTIONS(925), + [anon_sym_LBRACE_CARET] = ACTIONS(937), + [anon_sym_CARET] = ACTIONS(937), + [anon_sym_LBRACE_TILDE] = ACTIONS(939), + [anon_sym_TILDE] = ACTIONS(939), + [anon_sym_LBRACK_CARET] = ACTIONS(941), + [anon_sym_BANG_LBRACK] = ACTIONS(943), + [anon_sym_LBRACK] = ACTIONS(945), + [anon_sym_LBRACE2] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(947), + [anon_sym_TODO] = ACTIONS(949), + [anon_sym_WIP] = ACTIONS(949), + [anon_sym_NOTE] = ACTIONS(951), + [anon_sym_INFO] = ACTIONS(951), + [anon_sym_XXX] = ACTIONS(951), + [sym_fixme] = ACTIONS(925), + [anon_sym_PIPE] = ACTIONS(925), + [sym__whitespace1] = ACTIONS(953), + [sym__newline] = ACTIONS(955), + [aux_sym__text_token1] = ACTIONS(957), + [sym__verbatim_begin] = ACTIONS(959), }, - [35] = { - [sym__inline] = STATE(689), - [sym__element] = STATE(113), - [sym_emphasis] = STATE(175), - [sym_emphasis_begin] = STATE(897), - [sym_strong] = STATE(175), - [sym_strong_begin] = STATE(108), - [sym__hard_line_break] = STATE(175), - [sym_hard_line_break] = STATE(175), - [sym__smart_punctuation] = STATE(175), - [sym_autolink] = STATE(175), - [sym_highlighted] = STATE(175), - [sym_insert] = STATE(175), - [sym_delete] = STATE(175), - [sym_superscript] = STATE(175), - [sym_subscript] = STATE(175), - [sym_footnote_reference] = STATE(175), - [sym__image] = STATE(175), - [sym_full_reference_image] = STATE(175), - [sym_collapsed_reference_image] = STATE(175), - [sym_inline_image] = STATE(175), - [sym__image_description] = STATE(626), - [sym__link] = STATE(175), - [sym_full_reference_link] = STATE(175), - [sym_collapsed_reference_link] = STATE(175), - [sym_inline_link] = STATE(175), - [sym_link_text] = STATE(624), - [sym__comment_with_spaces] = STATE(175), - [sym_span] = STATE(175), - [sym_raw_inline] = STATE(175), - [sym_math] = STATE(175), - [sym_verbatim] = STATE(175), - [sym__todo_highlights] = STATE(175), - [sym_todo] = STATE(175), - [sym_note] = STATE(175), - [sym__symbol_fallback] = STATE(175), - [aux_sym__text] = STATE(125), - [aux_sym__inline_repeat1] = STATE(113), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_] = ACTIONS(397), - [anon_sym__] = ACTIONS(400), - [anon_sym_LBRACE_STAR] = ACTIONS(403), - [anon_sym_STAR] = ACTIONS(406), - [anon_sym_BSLASH] = ACTIONS(409), - [sym_quotation_marks] = ACTIONS(400), - [sym_ellipsis] = ACTIONS(400), - [sym_em_dash] = ACTIONS(400), - [sym_en_dash] = ACTIONS(412), - [sym_backslash_escape] = ACTIONS(412), - [anon_sym_LT] = ACTIONS(415), - [anon_sym_LBRACE_EQ] = ACTIONS(418), - [anon_sym_LBRACE_PLUS] = ACTIONS(421), - [anon_sym_LBRACE_DASH] = ACTIONS(424), - [anon_sym_DASH_RBRACE] = ACTIONS(79), - [sym_symbol] = ACTIONS(400), - [anon_sym_LBRACE_CARET] = ACTIONS(427), - [anon_sym_CARET] = ACTIONS(427), - [anon_sym_LBRACE_TILDE] = ACTIONS(430), - [anon_sym_TILDE] = ACTIONS(430), - [anon_sym_LBRACK_CARET] = ACTIONS(433), - [anon_sym_BANG_LBRACK] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(439), - [anon_sym_LBRACE2] = ACTIONS(412), - [anon_sym_DOLLAR] = ACTIONS(442), - [anon_sym_TODO] = ACTIONS(445), - [anon_sym_WIP] = ACTIONS(445), - [anon_sym_NOTE] = ACTIONS(448), - [anon_sym_INFO] = ACTIONS(448), - [anon_sym_XXX] = ACTIONS(448), - [sym_fixme] = ACTIONS(400), - [anon_sym_PIPE] = ACTIONS(400), - [sym__whitespace1] = ACTIONS(451), - [sym__newline] = ACTIONS(454), - [aux_sym__text_token1] = ACTIONS(457), - [sym__verbatim_begin] = ACTIONS(460), + [93] = { + [sym__inline_without_trailing_space] = STATE(737), + [sym__element] = STATE(581), + [sym_emphasis] = STATE(179), + [sym_emphasis_begin] = STATE(1019), + [sym_strong] = STATE(179), + [sym_strong_begin] = STATE(110), + [sym__hard_line_break] = STATE(179), + [sym_hard_line_break] = STATE(179), + [sym__smart_punctuation] = STATE(179), + [sym_autolink] = STATE(179), + [sym_highlighted] = STATE(179), + [sym_insert] = STATE(179), + [sym_delete] = STATE(179), + [sym_superscript] = STATE(179), + [sym_subscript] = STATE(179), + [sym_footnote_reference] = STATE(179), + [sym__image] = STATE(179), + [sym_full_reference_image] = STATE(179), + [sym_collapsed_reference_image] = STATE(179), + [sym_inline_image] = STATE(179), + [sym__image_description] = STATE(720), + [sym__link] = STATE(179), + [sym_full_reference_link] = STATE(179), + [sym_collapsed_reference_link] = STATE(179), + [sym_inline_link] = STATE(179), + [sym_link_text] = STATE(697), + [sym__comment_with_spaces] = STATE(179), + [sym_span] = STATE(179), + [sym_raw_inline] = STATE(179), + [sym_math] = STATE(179), + [sym_verbatim] = STATE(179), + [sym__todo_highlights] = STATE(179), + [sym_todo] = STATE(179), + [sym_note] = STATE(179), + [sym__symbol_fallback] = STATE(179), + [aux_sym__text] = STATE(163), + [aux_sym__inline_repeat1] = STATE(130), + [anon_sym_LBRACE_] = ACTIONS(915), + [anon_sym__] = ACTIONS(917), + [anon_sym_LBRACE_STAR] = ACTIONS(919), + [anon_sym_STAR] = ACTIONS(921), + [anon_sym_BSLASH] = ACTIONS(923), + [sym_quotation_marks] = ACTIONS(925), + [sym_ellipsis] = ACTIONS(925), + [sym_em_dash] = ACTIONS(925), + [sym_en_dash] = ACTIONS(927), + [sym_backslash_escape] = ACTIONS(927), + [anon_sym_LT] = ACTIONS(929), + [anon_sym_LBRACE_EQ] = ACTIONS(931), + [anon_sym_LBRACE_PLUS] = ACTIONS(933), + [anon_sym_LBRACE_DASH] = ACTIONS(935), + [sym_symbol] = ACTIONS(925), + [anon_sym_LBRACE_CARET] = ACTIONS(937), + [anon_sym_CARET] = ACTIONS(937), + [anon_sym_LBRACE_TILDE] = ACTIONS(939), + [anon_sym_TILDE] = ACTIONS(939), + [anon_sym_LBRACK_CARET] = ACTIONS(941), + [anon_sym_BANG_LBRACK] = ACTIONS(943), + [anon_sym_LBRACK] = ACTIONS(945), + [anon_sym_LBRACE2] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(947), + [anon_sym_TODO] = ACTIONS(949), + [anon_sym_WIP] = ACTIONS(949), + [anon_sym_NOTE] = ACTIONS(951), + [anon_sym_INFO] = ACTIONS(951), + [anon_sym_XXX] = ACTIONS(951), + [sym_fixme] = ACTIONS(925), + [anon_sym_PIPE] = ACTIONS(925), + [sym__whitespace1] = ACTIONS(953), + [sym__newline] = ACTIONS(955), + [aux_sym__text_token1] = ACTIONS(957), + [sym__verbatim_begin] = ACTIONS(959), }, - [36] = { - [sym__inline] = STATE(805), - [sym__element] = STATE(97), - [sym_emphasis] = STATE(182), - [sym_emphasis_begin] = STATE(898), - [sym_strong] = STATE(182), - [sym_strong_begin] = STATE(104), - [sym__hard_line_break] = STATE(182), - [sym_hard_line_break] = STATE(182), - [sym__smart_punctuation] = STATE(182), - [sym_autolink] = STATE(182), - [sym_highlighted] = STATE(182), - [sym_insert] = STATE(182), - [sym_delete] = STATE(182), - [sym_superscript] = STATE(182), - [sym_subscript] = STATE(182), - [sym_footnote_reference] = STATE(182), - [sym__image] = STATE(182), - [sym_full_reference_image] = STATE(182), - [sym_collapsed_reference_image] = STATE(182), - [sym_inline_image] = STATE(182), - [sym__image_description] = STATE(610), - [sym__link] = STATE(182), - [sym_full_reference_link] = STATE(182), - [sym_collapsed_reference_link] = STATE(182), - [sym_inline_link] = STATE(182), - [sym_link_text] = STATE(608), - [sym__comment_with_spaces] = STATE(182), - [sym_span] = STATE(182), - [sym_raw_inline] = STATE(182), - [sym_math] = STATE(182), - [sym_verbatim] = STATE(182), - [sym__todo_highlights] = STATE(182), - [sym_todo] = STATE(182), - [sym_note] = STATE(182), - [sym__symbol_fallback] = STATE(182), - [aux_sym__text] = STATE(144), - [aux_sym__inline_repeat1] = STATE(97), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_] = ACTIONS(49), - [anon_sym__] = ACTIONS(52), - [anon_sym_LBRACE_STAR] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(58), - [anon_sym_BSLASH] = ACTIONS(61), - [sym_quotation_marks] = ACTIONS(52), - [sym_ellipsis] = ACTIONS(52), - [sym_em_dash] = ACTIONS(52), - [sym_en_dash] = ACTIONS(64), - [sym_backslash_escape] = ACTIONS(64), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_LBRACE_EQ] = ACTIONS(70), - [anon_sym_EQ_RBRACE] = ACTIONS(79), - [anon_sym_LBRACE_PLUS] = ACTIONS(73), - [anon_sym_LBRACE_DASH] = ACTIONS(76), - [sym_symbol] = ACTIONS(52), - [anon_sym_LBRACE_CARET] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(81), - [anon_sym_LBRACE_TILDE] = ACTIONS(84), - [anon_sym_TILDE] = ACTIONS(84), - [anon_sym_LBRACK_CARET] = ACTIONS(87), - [anon_sym_BANG_LBRACK] = ACTIONS(92), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LBRACE2] = ACTIONS(64), - [anon_sym_DOLLAR] = ACTIONS(98), - [anon_sym_TODO] = ACTIONS(101), - [anon_sym_WIP] = ACTIONS(101), - [anon_sym_NOTE] = ACTIONS(104), - [anon_sym_INFO] = ACTIONS(104), - [anon_sym_XXX] = ACTIONS(104), - [sym_fixme] = ACTIONS(52), - [anon_sym_PIPE] = ACTIONS(52), - [sym__whitespace1] = ACTIONS(107), - [sym__newline] = ACTIONS(110), - [aux_sym__text_token1] = ACTIONS(113), - [sym__verbatim_begin] = ACTIONS(116), + [94] = { + [sym__element] = STATE(84), + [sym_emphasis] = STATE(188), + [sym_emphasis_begin] = STATE(1020), + [sym_strong] = STATE(188), + [sym_strong_begin] = STATE(106), + [sym__hard_line_break] = STATE(188), + [sym_hard_line_break] = STATE(188), + [sym__smart_punctuation] = STATE(188), + [sym_autolink] = STATE(188), + [sym_highlighted] = STATE(188), + [sym_insert] = STATE(188), + [sym_delete] = STATE(188), + [sym_superscript] = STATE(188), + [sym_subscript] = STATE(188), + [sym_footnote_reference] = STATE(188), + [sym__image] = STATE(188), + [sym_full_reference_image] = STATE(188), + [sym_collapsed_reference_image] = STATE(188), + [sym_inline_image] = STATE(188), + [sym__image_description] = STATE(702), + [sym__link] = STATE(188), + [sym_full_reference_link] = STATE(188), + [sym_collapsed_reference_link] = STATE(188), + [sym_inline_link] = STATE(188), + [sym_link_text] = STATE(700), + [sym__comment_with_spaces] = STATE(188), + [sym_span] = STATE(188), + [sym_raw_inline] = STATE(188), + [sym_math] = STATE(188), + [sym_verbatim] = STATE(188), + [sym__todo_highlights] = STATE(188), + [sym_todo] = STATE(188), + [sym_note] = STATE(188), + [sym__symbol_fallback] = STATE(188), + [aux_sym__text] = STATE(147), + [aux_sym__inline_repeat1] = STATE(84), + [anon_sym_LBRACE_] = ACTIONS(614), + [anon_sym__] = ACTIONS(616), + [anon_sym_LBRACE_STAR] = ACTIONS(618), + [anon_sym_STAR] = ACTIONS(620), + [anon_sym_BSLASH] = ACTIONS(622), + [sym_quotation_marks] = ACTIONS(624), + [sym_ellipsis] = ACTIONS(624), + [sym_em_dash] = ACTIONS(624), + [sym_en_dash] = ACTIONS(626), + [sym_backslash_escape] = ACTIONS(626), + [anon_sym_LT] = ACTIONS(628), + [anon_sym_LBRACE_EQ] = ACTIONS(630), + [anon_sym_LBRACE_PLUS] = ACTIONS(632), + [anon_sym_LBRACE_DASH] = ACTIONS(634), + [sym_symbol] = ACTIONS(624), + [anon_sym_LBRACE_CARET] = ACTIONS(636), + [anon_sym_CARET] = ACTIONS(636), + [anon_sym_LBRACE_TILDE] = ACTIONS(638), + [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_LBRACK_CARET] = ACTIONS(640), + [anon_sym_BANG_LBRACK] = ACTIONS(642), + [anon_sym_LBRACK] = ACTIONS(644), + [anon_sym_RBRACK2] = ACTIONS(590), + [anon_sym_LBRACE2] = ACTIONS(626), + [anon_sym_DOLLAR] = ACTIONS(646), + [anon_sym_TODO] = ACTIONS(648), + [anon_sym_WIP] = ACTIONS(648), + [anon_sym_NOTE] = ACTIONS(650), + [anon_sym_INFO] = ACTIONS(650), + [anon_sym_XXX] = ACTIONS(650), + [sym_fixme] = ACTIONS(624), + [anon_sym_PIPE] = ACTIONS(624), + [sym__whitespace1] = ACTIONS(652), + [sym__newline] = ACTIONS(1007), + [aux_sym__text_token1] = ACTIONS(656), + [sym__verbatim_begin] = ACTIONS(658), }, - [37] = { - [sym__inline] = STATE(822), - [sym__element] = STATE(107), - [sym_emphasis] = STATE(187), - [sym_emphasis_begin] = STATE(893), - [sym_strong] = STATE(187), - [sym_strong_begin] = STATE(119), - [sym__hard_line_break] = STATE(187), - [sym_hard_line_break] = STATE(187), - [sym__smart_punctuation] = STATE(187), - [sym_autolink] = STATE(187), - [sym_highlighted] = STATE(187), - [sym_insert] = STATE(187), - [sym_delete] = STATE(187), - [sym_superscript] = STATE(187), - [sym_subscript] = STATE(187), - [sym_footnote_reference] = STATE(187), - [sym__image] = STATE(187), - [sym_full_reference_image] = STATE(187), - [sym_collapsed_reference_image] = STATE(187), - [sym_inline_image] = STATE(187), - [sym__image_description] = STATE(616), - [sym__link] = STATE(187), - [sym_full_reference_link] = STATE(187), - [sym_collapsed_reference_link] = STATE(187), - [sym_inline_link] = STATE(187), - [sym_link_text] = STATE(634), - [sym__comment_with_spaces] = STATE(187), - [sym_span] = STATE(187), - [sym_raw_inline] = STATE(187), - [sym_math] = STATE(187), - [sym_verbatim] = STATE(187), - [sym__todo_highlights] = STATE(187), - [sym_todo] = STATE(187), - [sym_note] = STATE(187), - [sym__symbol_fallback] = STATE(187), - [aux_sym__text] = STATE(131), - [aux_sym__inline_repeat1] = STATE(107), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_] = ACTIONS(265), - [anon_sym__] = ACTIONS(268), - [anon_sym_LBRACE_STAR] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(274), - [anon_sym_BSLASH] = ACTIONS(277), - [sym_quotation_marks] = ACTIONS(268), - [sym_ellipsis] = ACTIONS(268), - [sym_em_dash] = ACTIONS(268), - [sym_en_dash] = ACTIONS(280), - [sym_backslash_escape] = ACTIONS(280), - [anon_sym_LT] = ACTIONS(283), - [anon_sym_LBRACE_EQ] = ACTIONS(286), - [anon_sym_LBRACE_PLUS] = ACTIONS(289), - [anon_sym_LBRACE_DASH] = ACTIONS(292), - [anon_sym_DASH_RBRACE] = ACTIONS(79), - [sym_symbol] = ACTIONS(268), - [anon_sym_LBRACE_CARET] = ACTIONS(295), - [anon_sym_CARET] = ACTIONS(295), - [anon_sym_LBRACE_TILDE] = ACTIONS(298), - [anon_sym_TILDE] = ACTIONS(298), - [anon_sym_LBRACK_CARET] = ACTIONS(301), - [anon_sym_BANG_LBRACK] = ACTIONS(304), - [anon_sym_LBRACK] = ACTIONS(307), - [anon_sym_LBRACE2] = ACTIONS(280), - [anon_sym_DOLLAR] = ACTIONS(310), - [anon_sym_TODO] = ACTIONS(313), - [anon_sym_WIP] = ACTIONS(313), - [anon_sym_NOTE] = ACTIONS(316), - [anon_sym_INFO] = ACTIONS(316), - [anon_sym_XXX] = ACTIONS(316), - [sym_fixme] = ACTIONS(268), - [anon_sym_PIPE] = ACTIONS(268), - [sym__whitespace1] = ACTIONS(319), - [sym__newline] = ACTIONS(322), - [aux_sym__text_token1] = ACTIONS(325), - [sym__verbatim_begin] = ACTIONS(328), + [95] = { + [sym__element] = STATE(115), + [sym_emphasis] = STATE(215), + [sym_emphasis_begin] = STATE(1012), + [sym_strong] = STATE(215), + [sym_strong_begin] = STATE(128), + [sym__hard_line_break] = STATE(215), + [sym_hard_line_break] = STATE(215), + [sym__smart_punctuation] = STATE(215), + [sym_autolink] = STATE(215), + [sym_highlighted] = STATE(215), + [sym_insert] = STATE(215), + [sym_delete] = STATE(215), + [sym_superscript] = STATE(215), + [sym_subscript] = STATE(215), + [sym_footnote_reference] = STATE(215), + [sym__image] = STATE(215), + [sym_full_reference_image] = STATE(215), + [sym_collapsed_reference_image] = STATE(215), + [sym_inline_image] = STATE(215), + [sym__image_description] = STATE(696), + [sym__link] = STATE(215), + [sym_full_reference_link] = STATE(215), + [sym_collapsed_reference_link] = STATE(215), + [sym_inline_link] = STATE(215), + [sym_link_text] = STATE(705), + [sym__comment_with_spaces] = STATE(215), + [sym_span] = STATE(215), + [sym_raw_inline] = STATE(215), + [sym_math] = STATE(215), + [sym_verbatim] = STATE(215), + [sym__todo_highlights] = STATE(215), + [sym_todo] = STATE(215), + [sym_note] = STATE(215), + [sym__symbol_fallback] = STATE(215), + [aux_sym__text] = STATE(141), + [aux_sym__inline_repeat1] = STATE(115), + [anon_sym_LBRACE_] = ACTIONS(1009), + [anon_sym__] = ACTIONS(1011), + [anon_sym_LBRACE_STAR] = ACTIONS(1013), + [anon_sym_STAR] = ACTIONS(1015), + [anon_sym_BSLASH] = ACTIONS(1017), + [sym_quotation_marks] = ACTIONS(1019), + [sym_ellipsis] = ACTIONS(1019), + [sym_em_dash] = ACTIONS(1019), + [sym_en_dash] = ACTIONS(1021), + [sym_backslash_escape] = ACTIONS(1021), + [anon_sym_LT] = ACTIONS(1023), + [anon_sym_LBRACE_EQ] = ACTIONS(1025), + [anon_sym_EQ_RBRACE] = ACTIONS(590), + [anon_sym_LBRACE_PLUS] = ACTIONS(1027), + [anon_sym_LBRACE_DASH] = ACTIONS(1029), + [sym_symbol] = ACTIONS(1019), + [anon_sym_LBRACE_CARET] = ACTIONS(1031), + [anon_sym_CARET] = ACTIONS(1031), + [anon_sym_LBRACE_TILDE] = ACTIONS(1033), + [anon_sym_TILDE] = ACTIONS(1033), + [anon_sym_LBRACK_CARET] = ACTIONS(1035), + [anon_sym_BANG_LBRACK] = ACTIONS(1037), + [anon_sym_LBRACK] = ACTIONS(1039), + [anon_sym_LBRACE2] = ACTIONS(1021), + [anon_sym_DOLLAR] = ACTIONS(1041), + [anon_sym_TODO] = ACTIONS(1043), + [anon_sym_WIP] = ACTIONS(1043), + [anon_sym_NOTE] = ACTIONS(1045), + [anon_sym_INFO] = ACTIONS(1045), + [anon_sym_XXX] = ACTIONS(1045), + [sym_fixme] = ACTIONS(1019), + [anon_sym_PIPE] = ACTIONS(1019), + [sym__whitespace1] = ACTIONS(1047), + [sym__newline] = ACTIONS(1049), + [aux_sym__text_token1] = ACTIONS(1051), + [sym__verbatim_begin] = ACTIONS(1053), }, - [38] = { - [sym__inline] = STATE(659), - [sym__element] = STATE(113), - [sym_emphasis] = STATE(175), - [sym_emphasis_begin] = STATE(897), - [sym_strong] = STATE(175), - [sym_strong_begin] = STATE(108), - [sym__hard_line_break] = STATE(175), - [sym_hard_line_break] = STATE(175), - [sym__smart_punctuation] = STATE(175), - [sym_autolink] = STATE(175), - [sym_highlighted] = STATE(175), - [sym_insert] = STATE(175), - [sym_delete] = STATE(175), - [sym_superscript] = STATE(175), - [sym_subscript] = STATE(175), - [sym_footnote_reference] = STATE(175), - [sym__image] = STATE(175), - [sym_full_reference_image] = STATE(175), - [sym_collapsed_reference_image] = STATE(175), - [sym_inline_image] = STATE(175), - [sym__image_description] = STATE(626), - [sym__link] = STATE(175), - [sym_full_reference_link] = STATE(175), - [sym_collapsed_reference_link] = STATE(175), - [sym_inline_link] = STATE(175), - [sym_link_text] = STATE(624), - [sym__comment_with_spaces] = STATE(175), - [sym_span] = STATE(175), - [sym_raw_inline] = STATE(175), - [sym_math] = STATE(175), - [sym_verbatim] = STATE(175), - [sym__todo_highlights] = STATE(175), - [sym_todo] = STATE(175), - [sym_note] = STATE(175), - [sym__symbol_fallback] = STATE(175), - [aux_sym__text] = STATE(125), - [aux_sym__inline_repeat1] = STATE(113), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_] = ACTIONS(397), - [anon_sym__] = ACTIONS(400), - [anon_sym_LBRACE_STAR] = ACTIONS(403), - [anon_sym_STAR] = ACTIONS(406), - [anon_sym_BSLASH] = ACTIONS(409), - [sym_quotation_marks] = ACTIONS(400), - [sym_ellipsis] = ACTIONS(400), - [sym_em_dash] = ACTIONS(400), - [sym_en_dash] = ACTIONS(412), - [sym_backslash_escape] = ACTIONS(412), - [anon_sym_LT] = ACTIONS(415), - [anon_sym_LBRACE_EQ] = ACTIONS(418), - [anon_sym_EQ_RBRACE] = ACTIONS(79), - [anon_sym_LBRACE_PLUS] = ACTIONS(421), - [anon_sym_LBRACE_DASH] = ACTIONS(424), - [sym_symbol] = ACTIONS(400), - [anon_sym_LBRACE_CARET] = ACTIONS(427), - [anon_sym_CARET] = ACTIONS(427), - [anon_sym_LBRACE_TILDE] = ACTIONS(430), - [anon_sym_TILDE] = ACTIONS(430), - [anon_sym_LBRACK_CARET] = ACTIONS(433), - [anon_sym_BANG_LBRACK] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(439), - [anon_sym_LBRACE2] = ACTIONS(412), - [anon_sym_DOLLAR] = ACTIONS(442), - [anon_sym_TODO] = ACTIONS(445), - [anon_sym_WIP] = ACTIONS(445), - [anon_sym_NOTE] = ACTIONS(448), - [anon_sym_INFO] = ACTIONS(448), - [anon_sym_XXX] = ACTIONS(448), - [sym_fixme] = ACTIONS(400), - [anon_sym_PIPE] = ACTIONS(400), - [sym__whitespace1] = ACTIONS(451), - [sym__newline] = ACTIONS(454), - [aux_sym__text_token1] = ACTIONS(457), - [sym__verbatim_begin] = ACTIONS(460), + [96] = { + [sym__inline] = STATE(886), + [sym__element] = STATE(94), + [sym_emphasis] = STATE(188), + [sym_emphasis_begin] = STATE(1020), + [sym_strong] = STATE(188), + [sym_strong_begin] = STATE(106), + [sym__hard_line_break] = STATE(188), + [sym_hard_line_break] = STATE(188), + [sym__smart_punctuation] = STATE(188), + [sym_autolink] = STATE(188), + [sym_highlighted] = STATE(188), + [sym_insert] = STATE(188), + [sym_delete] = STATE(188), + [sym_superscript] = STATE(188), + [sym_subscript] = STATE(188), + [sym_footnote_reference] = STATE(188), + [sym__image] = STATE(188), + [sym_full_reference_image] = STATE(188), + [sym_collapsed_reference_image] = STATE(188), + [sym_inline_image] = STATE(188), + [sym__image_description] = STATE(702), + [sym__link] = STATE(188), + [sym_full_reference_link] = STATE(188), + [sym_collapsed_reference_link] = STATE(188), + [sym_inline_link] = STATE(188), + [sym_link_text] = STATE(700), + [sym__comment_with_spaces] = STATE(188), + [sym_span] = STATE(188), + [sym_raw_inline] = STATE(188), + [sym_math] = STATE(188), + [sym_verbatim] = STATE(188), + [sym__todo_highlights] = STATE(188), + [sym_todo] = STATE(188), + [sym_note] = STATE(188), + [sym__symbol_fallback] = STATE(188), + [aux_sym__text] = STATE(147), + [aux_sym__inline_repeat1] = STATE(94), + [anon_sym_LBRACE_] = ACTIONS(614), + [anon_sym__] = ACTIONS(616), + [anon_sym_LBRACE_STAR] = ACTIONS(618), + [anon_sym_STAR] = ACTIONS(620), + [anon_sym_BSLASH] = ACTIONS(622), + [sym_quotation_marks] = ACTIONS(624), + [sym_ellipsis] = ACTIONS(624), + [sym_em_dash] = ACTIONS(624), + [sym_en_dash] = ACTIONS(626), + [sym_backslash_escape] = ACTIONS(626), + [anon_sym_LT] = ACTIONS(628), + [anon_sym_LBRACE_EQ] = ACTIONS(630), + [anon_sym_LBRACE_PLUS] = ACTIONS(632), + [anon_sym_LBRACE_DASH] = ACTIONS(634), + [sym_symbol] = ACTIONS(624), + [anon_sym_LBRACE_CARET] = ACTIONS(636), + [anon_sym_CARET] = ACTIONS(636), + [anon_sym_LBRACE_TILDE] = ACTIONS(638), + [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_LBRACK_CARET] = ACTIONS(640), + [anon_sym_BANG_LBRACK] = ACTIONS(642), + [anon_sym_LBRACK] = ACTIONS(644), + [anon_sym_LBRACE2] = ACTIONS(626), + [anon_sym_DOLLAR] = ACTIONS(646), + [anon_sym_TODO] = ACTIONS(648), + [anon_sym_WIP] = ACTIONS(648), + [anon_sym_NOTE] = ACTIONS(650), + [anon_sym_INFO] = ACTIONS(650), + [anon_sym_XXX] = ACTIONS(650), + [sym_fixme] = ACTIONS(624), + [anon_sym_PIPE] = ACTIONS(624), + [sym__whitespace1] = ACTIONS(652), + [sym__newline] = ACTIONS(654), + [aux_sym__text_token1] = ACTIONS(656), + [sym__verbatim_begin] = ACTIONS(658), }, - [39] = { - [sym__inline] = STATE(661), - [sym__element] = STATE(72), - [sym_emphasis] = STATE(163), - [sym_emphasis_begin] = STATE(896), - [sym_strong] = STATE(163), + [97] = { + [sym__inline] = STATE(733), + [sym__element] = STATE(126), + [sym_emphasis] = STATE(189), + [sym_emphasis_begin] = STATE(1018), + [sym_strong] = STATE(189), + [sym_strong_begin] = STATE(112), + [sym__hard_line_break] = STATE(189), + [sym_hard_line_break] = STATE(189), + [sym__smart_punctuation] = STATE(189), + [sym_autolink] = STATE(189), + [sym_highlighted] = STATE(189), + [sym_insert] = STATE(189), + [sym_delete] = STATE(189), + [sym_superscript] = STATE(189), + [sym_subscript] = STATE(189), + [sym_footnote_reference] = STATE(189), + [sym__image] = STATE(189), + [sym_full_reference_image] = STATE(189), + [sym_collapsed_reference_image] = STATE(189), + [sym_inline_image] = STATE(189), + [sym__image_description] = STATE(707), + [sym__link] = STATE(189), + [sym_full_reference_link] = STATE(189), + [sym_collapsed_reference_link] = STATE(189), + [sym_inline_link] = STATE(189), + [sym_link_text] = STATE(698), + [sym__comment_with_spaces] = STATE(189), + [sym_span] = STATE(189), + [sym_raw_inline] = STATE(189), + [sym_math] = STATE(189), + [sym_verbatim] = STATE(189), + [sym__todo_highlights] = STATE(189), + [sym_todo] = STATE(189), + [sym_note] = STATE(189), + [sym__symbol_fallback] = STATE(189), + [aux_sym__text] = STATE(161), + [aux_sym__inline_repeat1] = STATE(126), + [anon_sym_LBRACE_] = ACTIONS(1055), + [anon_sym__] = ACTIONS(1057), + [anon_sym_LBRACE_STAR] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_BSLASH] = ACTIONS(1063), + [sym_quotation_marks] = ACTIONS(1065), + [sym_ellipsis] = ACTIONS(1065), + [sym_em_dash] = ACTIONS(1065), + [sym_en_dash] = ACTIONS(1067), + [sym_backslash_escape] = ACTIONS(1067), + [anon_sym_LT] = ACTIONS(1069), + [anon_sym_LBRACE_EQ] = ACTIONS(1071), + [anon_sym_LBRACE_PLUS] = ACTIONS(1073), + [anon_sym_LBRACE_DASH] = ACTIONS(1075), + [sym_symbol] = ACTIONS(1065), + [anon_sym_LBRACE_CARET] = ACTIONS(1077), + [anon_sym_CARET] = ACTIONS(1077), + [anon_sym_LBRACE_TILDE] = ACTIONS(1079), + [anon_sym_TILDE] = ACTIONS(1079), + [anon_sym_LBRACK_CARET] = ACTIONS(1081), + [anon_sym_BANG_LBRACK] = ACTIONS(1083), + [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_LBRACE2] = ACTIONS(1067), + [anon_sym_DOLLAR] = ACTIONS(1087), + [anon_sym_TODO] = ACTIONS(1089), + [anon_sym_WIP] = ACTIONS(1089), + [anon_sym_NOTE] = ACTIONS(1091), + [anon_sym_INFO] = ACTIONS(1091), + [anon_sym_XXX] = ACTIONS(1091), + [sym_fixme] = ACTIONS(1065), + [anon_sym_PIPE] = ACTIONS(1065), + [sym__whitespace1] = ACTIONS(1093), + [sym__newline] = ACTIONS(1095), + [aux_sym__text_token1] = ACTIONS(1097), + [sym__verbatim_begin] = ACTIONS(1099), + }, + [98] = { + [sym__inline] = STATE(730), + [sym__element] = STATE(126), + [sym_emphasis] = STATE(189), + [sym_emphasis_begin] = STATE(1018), + [sym_strong] = STATE(189), + [sym_strong_begin] = STATE(112), + [sym__hard_line_break] = STATE(189), + [sym_hard_line_break] = STATE(189), + [sym__smart_punctuation] = STATE(189), + [sym_autolink] = STATE(189), + [sym_highlighted] = STATE(189), + [sym_insert] = STATE(189), + [sym_delete] = STATE(189), + [sym_superscript] = STATE(189), + [sym_subscript] = STATE(189), + [sym_footnote_reference] = STATE(189), + [sym__image] = STATE(189), + [sym_full_reference_image] = STATE(189), + [sym_collapsed_reference_image] = STATE(189), + [sym_inline_image] = STATE(189), + [sym__image_description] = STATE(707), + [sym__link] = STATE(189), + [sym_full_reference_link] = STATE(189), + [sym_collapsed_reference_link] = STATE(189), + [sym_inline_link] = STATE(189), + [sym_link_text] = STATE(698), + [sym__comment_with_spaces] = STATE(189), + [sym_span] = STATE(189), + [sym_raw_inline] = STATE(189), + [sym_math] = STATE(189), + [sym_verbatim] = STATE(189), + [sym__todo_highlights] = STATE(189), + [sym_todo] = STATE(189), + [sym_note] = STATE(189), + [sym__symbol_fallback] = STATE(189), + [aux_sym__text] = STATE(161), + [aux_sym__inline_repeat1] = STATE(126), + [anon_sym_LBRACE_] = ACTIONS(1055), + [anon_sym__] = ACTIONS(1057), + [anon_sym_LBRACE_STAR] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_BSLASH] = ACTIONS(1063), + [sym_quotation_marks] = ACTIONS(1065), + [sym_ellipsis] = ACTIONS(1065), + [sym_em_dash] = ACTIONS(1065), + [sym_en_dash] = ACTIONS(1067), + [sym_backslash_escape] = ACTIONS(1067), + [anon_sym_LT] = ACTIONS(1069), + [anon_sym_LBRACE_EQ] = ACTIONS(1071), + [anon_sym_LBRACE_PLUS] = ACTIONS(1073), + [anon_sym_LBRACE_DASH] = ACTIONS(1075), + [sym_symbol] = ACTIONS(1065), + [anon_sym_LBRACE_CARET] = ACTIONS(1077), + [anon_sym_CARET] = ACTIONS(1077), + [anon_sym_LBRACE_TILDE] = ACTIONS(1079), + [anon_sym_TILDE] = ACTIONS(1079), + [anon_sym_LBRACK_CARET] = ACTIONS(1081), + [anon_sym_BANG_LBRACK] = ACTIONS(1083), + [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_LBRACE2] = ACTIONS(1067), + [anon_sym_DOLLAR] = ACTIONS(1087), + [anon_sym_TODO] = ACTIONS(1089), + [anon_sym_WIP] = ACTIONS(1089), + [anon_sym_NOTE] = ACTIONS(1091), + [anon_sym_INFO] = ACTIONS(1091), + [anon_sym_XXX] = ACTIONS(1091), + [sym_fixme] = ACTIONS(1065), + [anon_sym_PIPE] = ACTIONS(1065), + [sym__whitespace1] = ACTIONS(1093), + [sym__newline] = ACTIONS(1095), + [aux_sym__text_token1] = ACTIONS(1097), + [sym__verbatim_begin] = ACTIONS(1099), + }, + [99] = { + [sym__inline] = STATE(746), + [sym__element] = STATE(126), + [sym_emphasis] = STATE(189), + [sym_emphasis_begin] = STATE(1018), + [sym_strong] = STATE(189), + [sym_strong_begin] = STATE(112), + [sym__hard_line_break] = STATE(189), + [sym_hard_line_break] = STATE(189), + [sym__smart_punctuation] = STATE(189), + [sym_autolink] = STATE(189), + [sym_highlighted] = STATE(189), + [sym_insert] = STATE(189), + [sym_delete] = STATE(189), + [sym_superscript] = STATE(189), + [sym_subscript] = STATE(189), + [sym_footnote_reference] = STATE(189), + [sym__image] = STATE(189), + [sym_full_reference_image] = STATE(189), + [sym_collapsed_reference_image] = STATE(189), + [sym_inline_image] = STATE(189), + [sym__image_description] = STATE(707), + [sym__link] = STATE(189), + [sym_full_reference_link] = STATE(189), + [sym_collapsed_reference_link] = STATE(189), + [sym_inline_link] = STATE(189), + [sym_link_text] = STATE(698), + [sym__comment_with_spaces] = STATE(189), + [sym_span] = STATE(189), + [sym_raw_inline] = STATE(189), + [sym_math] = STATE(189), + [sym_verbatim] = STATE(189), + [sym__todo_highlights] = STATE(189), + [sym_todo] = STATE(189), + [sym_note] = STATE(189), + [sym__symbol_fallback] = STATE(189), + [aux_sym__text] = STATE(161), + [aux_sym__inline_repeat1] = STATE(126), + [anon_sym_LBRACE_] = ACTIONS(1055), + [anon_sym__] = ACTIONS(1057), + [anon_sym_LBRACE_STAR] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_BSLASH] = ACTIONS(1063), + [sym_quotation_marks] = ACTIONS(1065), + [sym_ellipsis] = ACTIONS(1065), + [sym_em_dash] = ACTIONS(1065), + [sym_en_dash] = ACTIONS(1067), + [sym_backslash_escape] = ACTIONS(1067), + [anon_sym_LT] = ACTIONS(1069), + [anon_sym_LBRACE_EQ] = ACTIONS(1071), + [anon_sym_LBRACE_PLUS] = ACTIONS(1073), + [anon_sym_LBRACE_DASH] = ACTIONS(1075), + [sym_symbol] = ACTIONS(1065), + [anon_sym_LBRACE_CARET] = ACTIONS(1077), + [anon_sym_CARET] = ACTIONS(1077), + [anon_sym_LBRACE_TILDE] = ACTIONS(1079), + [anon_sym_TILDE] = ACTIONS(1079), + [anon_sym_LBRACK_CARET] = ACTIONS(1081), + [anon_sym_BANG_LBRACK] = ACTIONS(1083), + [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_LBRACE2] = ACTIONS(1067), + [anon_sym_DOLLAR] = ACTIONS(1087), + [anon_sym_TODO] = ACTIONS(1089), + [anon_sym_WIP] = ACTIONS(1089), + [anon_sym_NOTE] = ACTIONS(1091), + [anon_sym_INFO] = ACTIONS(1091), + [anon_sym_XXX] = ACTIONS(1091), + [sym_fixme] = ACTIONS(1065), + [anon_sym_PIPE] = ACTIONS(1065), + [sym__whitespace1] = ACTIONS(1093), + [sym__newline] = ACTIONS(1095), + [aux_sym__text_token1] = ACTIONS(1097), + [sym__verbatim_begin] = ACTIONS(1099), + }, + [100] = { + [sym__inline] = STATE(840), + [sym__element] = STATE(94), + [sym_emphasis] = STATE(188), + [sym_emphasis_begin] = STATE(1020), + [sym_strong] = STATE(188), + [sym_strong_begin] = STATE(106), + [sym__hard_line_break] = STATE(188), + [sym_hard_line_break] = STATE(188), + [sym__smart_punctuation] = STATE(188), + [sym_autolink] = STATE(188), + [sym_highlighted] = STATE(188), + [sym_insert] = STATE(188), + [sym_delete] = STATE(188), + [sym_superscript] = STATE(188), + [sym_subscript] = STATE(188), + [sym_footnote_reference] = STATE(188), + [sym__image] = STATE(188), + [sym_full_reference_image] = STATE(188), + [sym_collapsed_reference_image] = STATE(188), + [sym_inline_image] = STATE(188), + [sym__image_description] = STATE(702), + [sym__link] = STATE(188), + [sym_full_reference_link] = STATE(188), + [sym_collapsed_reference_link] = STATE(188), + [sym_inline_link] = STATE(188), + [sym_link_text] = STATE(700), + [sym__comment_with_spaces] = STATE(188), + [sym_span] = STATE(188), + [sym_raw_inline] = STATE(188), + [sym_math] = STATE(188), + [sym_verbatim] = STATE(188), + [sym__todo_highlights] = STATE(188), + [sym_todo] = STATE(188), + [sym_note] = STATE(188), + [sym__symbol_fallback] = STATE(188), + [aux_sym__text] = STATE(147), + [aux_sym__inline_repeat1] = STATE(94), + [anon_sym_LBRACE_] = ACTIONS(614), + [anon_sym__] = ACTIONS(616), + [anon_sym_LBRACE_STAR] = ACTIONS(618), + [anon_sym_STAR] = ACTIONS(620), + [anon_sym_BSLASH] = ACTIONS(622), + [sym_quotation_marks] = ACTIONS(624), + [sym_ellipsis] = ACTIONS(624), + [sym_em_dash] = ACTIONS(624), + [sym_en_dash] = ACTIONS(626), + [sym_backslash_escape] = ACTIONS(626), + [anon_sym_LT] = ACTIONS(628), + [anon_sym_LBRACE_EQ] = ACTIONS(630), + [anon_sym_LBRACE_PLUS] = ACTIONS(632), + [anon_sym_LBRACE_DASH] = ACTIONS(634), + [sym_symbol] = ACTIONS(624), + [anon_sym_LBRACE_CARET] = ACTIONS(636), + [anon_sym_CARET] = ACTIONS(636), + [anon_sym_LBRACE_TILDE] = ACTIONS(638), + [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_LBRACK_CARET] = ACTIONS(640), + [anon_sym_BANG_LBRACK] = ACTIONS(642), + [anon_sym_LBRACK] = ACTIONS(644), + [anon_sym_LBRACE2] = ACTIONS(626), + [anon_sym_DOLLAR] = ACTIONS(646), + [anon_sym_TODO] = ACTIONS(648), + [anon_sym_WIP] = ACTIONS(648), + [anon_sym_NOTE] = ACTIONS(650), + [anon_sym_INFO] = ACTIONS(650), + [anon_sym_XXX] = ACTIONS(650), + [sym_fixme] = ACTIONS(624), + [anon_sym_PIPE] = ACTIONS(624), + [sym__whitespace1] = ACTIONS(652), + [sym__newline] = ACTIONS(654), + [aux_sym__text_token1] = ACTIONS(656), + [sym__verbatim_begin] = ACTIONS(658), + }, + [101] = { + [sym__element] = STATE(82), + [sym_emphasis] = STATE(197), + [sym_emphasis_begin] = STATE(1002), + [sym_strong] = STATE(197), + [sym_strong_begin] = STATE(98), + [sym__hard_line_break] = STATE(197), + [sym_hard_line_break] = STATE(197), + [sym__smart_punctuation] = STATE(197), + [sym_autolink] = STATE(197), + [sym_highlighted] = STATE(197), + [sym_insert] = STATE(197), + [sym_delete] = STATE(197), + [sym_superscript] = STATE(197), + [sym_subscript] = STATE(197), + [sym_footnote_reference] = STATE(197), + [sym__image] = STATE(197), + [sym_full_reference_image] = STATE(197), + [sym_collapsed_reference_image] = STATE(197), + [sym_inline_image] = STATE(197), + [sym__image_description] = STATE(685), + [sym__link] = STATE(197), + [sym_full_reference_link] = STATE(197), + [sym_collapsed_reference_link] = STATE(197), + [sym_inline_link] = STATE(197), + [sym_link_text] = STATE(719), + [sym__comment_with_spaces] = STATE(197), + [sym_span] = STATE(197), + [sym_raw_inline] = STATE(197), + [sym_math] = STATE(197), + [sym_verbatim] = STATE(197), + [sym__todo_highlights] = STATE(197), + [sym_todo] = STATE(197), + [sym_note] = STATE(197), + [sym__symbol_fallback] = STATE(197), + [aux_sym__text] = STATE(171), + [aux_sym__inline_repeat1] = STATE(82), + [ts_builtin_sym_end] = ACTIONS(590), + [anon_sym_LBRACE_] = ACTIONS(3), + [anon_sym__] = ACTIONS(5), + [anon_sym_LBRACE_STAR] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(9), + [anon_sym_BSLASH] = ACTIONS(11), + [sym_quotation_marks] = ACTIONS(13), + [sym_ellipsis] = ACTIONS(13), + [sym_em_dash] = ACTIONS(13), + [sym_en_dash] = ACTIONS(15), + [sym_backslash_escape] = ACTIONS(15), + [anon_sym_LT] = ACTIONS(17), + [anon_sym_LBRACE_EQ] = ACTIONS(19), + [anon_sym_LBRACE_PLUS] = ACTIONS(21), + [anon_sym_LBRACE_DASH] = ACTIONS(23), + [sym_symbol] = ACTIONS(13), + [anon_sym_LBRACE_CARET] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_LBRACE_TILDE] = ACTIONS(27), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_LBRACK_CARET] = ACTIONS(29), + [anon_sym_BANG_LBRACK] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACE2] = ACTIONS(15), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_TODO] = ACTIONS(37), + [anon_sym_WIP] = ACTIONS(37), + [anon_sym_NOTE] = ACTIONS(39), + [anon_sym_INFO] = ACTIONS(39), + [anon_sym_XXX] = ACTIONS(39), + [sym_fixme] = ACTIONS(13), + [anon_sym_PIPE] = ACTIONS(13), + [sym__whitespace1] = ACTIONS(41), + [sym__newline] = ACTIONS(1101), + [aux_sym__text_token1] = ACTIONS(45), + [sym__verbatim_begin] = ACTIONS(47), + }, + [102] = { + [sym__inline] = STATE(916), + [sym__element] = STATE(94), + [sym_emphasis] = STATE(188), + [sym_emphasis_begin] = STATE(1020), + [sym_strong] = STATE(188), + [sym_strong_begin] = STATE(106), + [sym__hard_line_break] = STATE(188), + [sym_hard_line_break] = STATE(188), + [sym__smart_punctuation] = STATE(188), + [sym_autolink] = STATE(188), + [sym_highlighted] = STATE(188), + [sym_insert] = STATE(188), + [sym_delete] = STATE(188), + [sym_superscript] = STATE(188), + [sym_subscript] = STATE(188), + [sym_footnote_reference] = STATE(188), + [sym__image] = STATE(188), + [sym_full_reference_image] = STATE(188), + [sym_collapsed_reference_image] = STATE(188), + [sym_inline_image] = STATE(188), + [sym__image_description] = STATE(702), + [sym__link] = STATE(188), + [sym_full_reference_link] = STATE(188), + [sym_collapsed_reference_link] = STATE(188), + [sym_inline_link] = STATE(188), + [sym_link_text] = STATE(700), + [sym__comment_with_spaces] = STATE(188), + [sym_span] = STATE(188), + [sym_raw_inline] = STATE(188), + [sym_math] = STATE(188), + [sym_verbatim] = STATE(188), + [sym__todo_highlights] = STATE(188), + [sym_todo] = STATE(188), + [sym_note] = STATE(188), + [sym__symbol_fallback] = STATE(188), + [aux_sym__text] = STATE(147), + [aux_sym__inline_repeat1] = STATE(94), + [anon_sym_LBRACE_] = ACTIONS(614), + [anon_sym__] = ACTIONS(616), + [anon_sym_LBRACE_STAR] = ACTIONS(618), + [anon_sym_STAR] = ACTIONS(620), + [anon_sym_BSLASH] = ACTIONS(622), + [sym_quotation_marks] = ACTIONS(624), + [sym_ellipsis] = ACTIONS(624), + [sym_em_dash] = ACTIONS(624), + [sym_en_dash] = ACTIONS(626), + [sym_backslash_escape] = ACTIONS(626), + [anon_sym_LT] = ACTIONS(628), + [anon_sym_LBRACE_EQ] = ACTIONS(630), + [anon_sym_LBRACE_PLUS] = ACTIONS(632), + [anon_sym_LBRACE_DASH] = ACTIONS(634), + [sym_symbol] = ACTIONS(624), + [anon_sym_LBRACE_CARET] = ACTIONS(636), + [anon_sym_CARET] = ACTIONS(636), + [anon_sym_LBRACE_TILDE] = ACTIONS(638), + [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_LBRACK_CARET] = ACTIONS(640), + [anon_sym_BANG_LBRACK] = ACTIONS(642), + [anon_sym_LBRACK] = ACTIONS(644), + [anon_sym_LBRACE2] = ACTIONS(626), + [anon_sym_DOLLAR] = ACTIONS(646), + [anon_sym_TODO] = ACTIONS(648), + [anon_sym_WIP] = ACTIONS(648), + [anon_sym_NOTE] = ACTIONS(650), + [anon_sym_INFO] = ACTIONS(650), + [anon_sym_XXX] = ACTIONS(650), + [sym_fixme] = ACTIONS(624), + [anon_sym_PIPE] = ACTIONS(624), + [sym__whitespace1] = ACTIONS(652), + [sym__newline] = ACTIONS(654), + [aux_sym__text_token1] = ACTIONS(656), + [sym__verbatim_begin] = ACTIONS(658), + }, + [103] = { + [sym__element] = STATE(103), + [sym_emphasis] = STATE(172), + [sym_emphasis_begin] = STATE(1015), + [sym_strong] = STATE(172), + [sym_strong_begin] = STATE(125), + [sym__hard_line_break] = STATE(172), + [sym_hard_line_break] = STATE(172), + [sym__smart_punctuation] = STATE(172), + [sym_autolink] = STATE(172), + [sym_highlighted] = STATE(172), + [sym_insert] = STATE(172), + [sym_delete] = STATE(172), + [sym_superscript] = STATE(172), + [sym_subscript] = STATE(172), + [sym_footnote_reference] = STATE(172), + [sym__image] = STATE(172), + [sym_full_reference_image] = STATE(172), + [sym_collapsed_reference_image] = STATE(172), + [sym_inline_image] = STATE(172), + [sym__image_description] = STATE(711), + [sym__link] = STATE(172), + [sym_full_reference_link] = STATE(172), + [sym_collapsed_reference_link] = STATE(172), + [sym_inline_link] = STATE(172), + [sym_link_text] = STATE(712), + [sym__comment_with_spaces] = STATE(172), + [sym_span] = STATE(172), + [sym_raw_inline] = STATE(172), + [sym_math] = STATE(172), + [sym_verbatim] = STATE(172), + [sym__todo_highlights] = STATE(172), + [sym_todo] = STATE(172), + [sym_note] = STATE(172), + [sym__symbol_fallback] = STATE(172), + [aux_sym__text] = STATE(170), + [aux_sym__inline_repeat1] = STATE(103), + [anon_sym_LBRACE_] = ACTIONS(1103), + [anon_sym__] = ACTIONS(1106), + [anon_sym_LBRACE_STAR] = ACTIONS(1109), + [anon_sym_STAR] = ACTIONS(1112), + [anon_sym_BSLASH] = ACTIONS(1115), + [sym_quotation_marks] = ACTIONS(1118), + [sym_ellipsis] = ACTIONS(1118), + [sym_em_dash] = ACTIONS(1118), + [sym_en_dash] = ACTIONS(1121), + [sym_backslash_escape] = ACTIONS(1121), + [anon_sym_LT] = ACTIONS(1124), + [anon_sym_LBRACE_EQ] = ACTIONS(1127), + [anon_sym_LBRACE_PLUS] = ACTIONS(1130), + [anon_sym_LBRACE_DASH] = ACTIONS(1133), + [sym_symbol] = ACTIONS(1118), + [anon_sym_LBRACE_CARET] = ACTIONS(1136), + [anon_sym_CARET] = ACTIONS(1139), + [anon_sym_CARET_RBRACE] = ACTIONS(690), + [anon_sym_LBRACE_TILDE] = ACTIONS(1142), + [anon_sym_TILDE] = ACTIONS(1142), + [anon_sym_LBRACK_CARET] = ACTIONS(1145), + [anon_sym_BANG_LBRACK] = ACTIONS(1148), + [anon_sym_LBRACK] = ACTIONS(1151), + [anon_sym_LBRACE2] = ACTIONS(1121), + [anon_sym_DOLLAR] = ACTIONS(1154), + [anon_sym_TODO] = ACTIONS(1157), + [anon_sym_WIP] = ACTIONS(1157), + [anon_sym_NOTE] = ACTIONS(1160), + [anon_sym_INFO] = ACTIONS(1160), + [anon_sym_XXX] = ACTIONS(1160), + [sym_fixme] = ACTIONS(1118), + [anon_sym_PIPE] = ACTIONS(1118), + [sym__whitespace1] = ACTIONS(1163), + [sym__newline] = ACTIONS(1166), + [aux_sym__text_token1] = ACTIONS(1169), + [sym__verbatim_begin] = ACTIONS(1172), + }, + [104] = { + [sym__element] = STATE(104), + [sym_emphasis] = STATE(189), + [sym_emphasis_begin] = STATE(1018), + [sym_strong] = STATE(189), + [sym_strong_begin] = STATE(112), + [sym__hard_line_break] = STATE(189), + [sym_hard_line_break] = STATE(189), + [sym__smart_punctuation] = STATE(189), + [sym_autolink] = STATE(189), + [sym_highlighted] = STATE(189), + [sym_insert] = STATE(189), + [sym_delete] = STATE(189), + [sym_superscript] = STATE(189), + [sym_subscript] = STATE(189), + [sym_footnote_reference] = STATE(189), + [sym__image] = STATE(189), + [sym_full_reference_image] = STATE(189), + [sym_collapsed_reference_image] = STATE(189), + [sym_inline_image] = STATE(189), + [sym__image_description] = STATE(707), + [sym__link] = STATE(189), + [sym_full_reference_link] = STATE(189), + [sym_collapsed_reference_link] = STATE(189), + [sym_inline_link] = STATE(189), + [sym_link_text] = STATE(698), + [sym__comment_with_spaces] = STATE(189), + [sym_span] = STATE(189), + [sym_raw_inline] = STATE(189), + [sym_math] = STATE(189), + [sym_verbatim] = STATE(189), + [sym__todo_highlights] = STATE(189), + [sym_todo] = STATE(189), + [sym_note] = STATE(189), + [sym__symbol_fallback] = STATE(189), + [aux_sym__text] = STATE(161), + [aux_sym__inline_repeat1] = STATE(104), + [anon_sym_LBRACE_] = ACTIONS(1175), + [anon_sym__] = ACTIONS(1178), + [anon_sym_LBRACE_STAR] = ACTIONS(1181), + [anon_sym_STAR] = ACTIONS(1184), + [aux_sym_strong_end_token1] = ACTIONS(690), + [anon_sym_BSLASH] = ACTIONS(1187), + [sym_quotation_marks] = ACTIONS(1190), + [sym_ellipsis] = ACTIONS(1190), + [sym_em_dash] = ACTIONS(1190), + [sym_en_dash] = ACTIONS(1193), + [sym_backslash_escape] = ACTIONS(1193), + [anon_sym_LT] = ACTIONS(1196), + [anon_sym_LBRACE_EQ] = ACTIONS(1199), + [anon_sym_LBRACE_PLUS] = ACTIONS(1202), + [anon_sym_LBRACE_DASH] = ACTIONS(1205), + [sym_symbol] = ACTIONS(1190), + [anon_sym_LBRACE_CARET] = ACTIONS(1208), + [anon_sym_CARET] = ACTIONS(1208), + [anon_sym_LBRACE_TILDE] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1211), + [anon_sym_LBRACK_CARET] = ACTIONS(1214), + [anon_sym_BANG_LBRACK] = ACTIONS(1217), + [anon_sym_LBRACK] = ACTIONS(1220), + [anon_sym_LBRACE2] = ACTIONS(1193), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_TODO] = ACTIONS(1226), + [anon_sym_WIP] = ACTIONS(1226), + [anon_sym_NOTE] = ACTIONS(1229), + [anon_sym_INFO] = ACTIONS(1229), + [anon_sym_XXX] = ACTIONS(1229), + [sym_fixme] = ACTIONS(1190), + [anon_sym_PIPE] = ACTIONS(1190), + [sym__whitespace1] = ACTIONS(1232), + [sym__newline] = ACTIONS(1235), + [aux_sym__text_token1] = ACTIONS(1238), + [sym__verbatim_begin] = ACTIONS(1241), + }, + [105] = { + [sym__element] = STATE(105), + [sym_emphasis] = STATE(211), + [sym_emphasis_begin] = STATE(1014), + [sym_strong] = STATE(211), + [sym_strong_begin] = STATE(121), + [sym__hard_line_break] = STATE(211), + [sym_hard_line_break] = STATE(211), + [sym__smart_punctuation] = STATE(211), + [sym_autolink] = STATE(211), + [sym_highlighted] = STATE(211), + [sym_insert] = STATE(211), + [sym_delete] = STATE(211), + [sym_superscript] = STATE(211), + [sym_subscript] = STATE(211), + [sym_footnote_reference] = STATE(211), + [sym__image] = STATE(211), + [sym_full_reference_image] = STATE(211), + [sym_collapsed_reference_image] = STATE(211), + [sym_inline_image] = STATE(211), + [sym__image_description] = STATE(693), + [sym__link] = STATE(211), + [sym_full_reference_link] = STATE(211), + [sym_collapsed_reference_link] = STATE(211), + [sym_inline_link] = STATE(211), + [sym_link_text] = STATE(694), + [sym__comment_with_spaces] = STATE(211), + [sym_span] = STATE(211), + [sym_raw_inline] = STATE(211), + [sym_math] = STATE(211), + [sym_verbatim] = STATE(211), + [sym__todo_highlights] = STATE(211), + [sym_todo] = STATE(211), + [sym_note] = STATE(211), + [sym__symbol_fallback] = STATE(211), + [aux_sym__text] = STATE(137), + [aux_sym__inline_repeat1] = STATE(105), + [anon_sym_LBRACE_] = ACTIONS(1244), + [anon_sym__] = ACTIONS(1247), + [anon_sym_LBRACE_STAR] = ACTIONS(1250), + [anon_sym_STAR] = ACTIONS(1253), + [anon_sym_BSLASH] = ACTIONS(1256), + [sym_quotation_marks] = ACTIONS(1259), + [sym_ellipsis] = ACTIONS(1259), + [sym_em_dash] = ACTIONS(1259), + [sym_en_dash] = ACTIONS(1262), + [sym_backslash_escape] = ACTIONS(1262), + [anon_sym_LT] = ACTIONS(1265), + [anon_sym_LBRACE_EQ] = ACTIONS(1268), + [anon_sym_LBRACE_PLUS] = ACTIONS(1271), + [anon_sym_LBRACE_DASH] = ACTIONS(1274), + [anon_sym_DASH_RBRACE] = ACTIONS(690), + [sym_symbol] = ACTIONS(1259), + [anon_sym_LBRACE_CARET] = ACTIONS(1277), + [anon_sym_CARET] = ACTIONS(1277), + [anon_sym_LBRACE_TILDE] = ACTIONS(1280), + [anon_sym_TILDE] = ACTIONS(1280), + [anon_sym_LBRACK_CARET] = ACTIONS(1283), + [anon_sym_BANG_LBRACK] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(1289), + [anon_sym_LBRACE2] = ACTIONS(1262), + [anon_sym_DOLLAR] = ACTIONS(1292), + [anon_sym_TODO] = ACTIONS(1295), + [anon_sym_WIP] = ACTIONS(1295), + [anon_sym_NOTE] = ACTIONS(1298), + [anon_sym_INFO] = ACTIONS(1298), + [anon_sym_XXX] = ACTIONS(1298), + [sym_fixme] = ACTIONS(1259), + [anon_sym_PIPE] = ACTIONS(1259), + [sym__whitespace1] = ACTIONS(1301), + [sym__newline] = ACTIONS(1304), + [aux_sym__text_token1] = ACTIONS(1307), + [sym__verbatim_begin] = ACTIONS(1310), + }, + [106] = { + [sym__inline] = STATE(745), + [sym__element] = STATE(126), + [sym_emphasis] = STATE(189), + [sym_emphasis_begin] = STATE(1018), + [sym_strong] = STATE(189), + [sym_strong_begin] = STATE(112), + [sym__hard_line_break] = STATE(189), + [sym_hard_line_break] = STATE(189), + [sym__smart_punctuation] = STATE(189), + [sym_autolink] = STATE(189), + [sym_highlighted] = STATE(189), + [sym_insert] = STATE(189), + [sym_delete] = STATE(189), + [sym_superscript] = STATE(189), + [sym_subscript] = STATE(189), + [sym_footnote_reference] = STATE(189), + [sym__image] = STATE(189), + [sym_full_reference_image] = STATE(189), + [sym_collapsed_reference_image] = STATE(189), + [sym_inline_image] = STATE(189), + [sym__image_description] = STATE(707), + [sym__link] = STATE(189), + [sym_full_reference_link] = STATE(189), + [sym_collapsed_reference_link] = STATE(189), + [sym_inline_link] = STATE(189), + [sym_link_text] = STATE(698), + [sym__comment_with_spaces] = STATE(189), + [sym_span] = STATE(189), + [sym_raw_inline] = STATE(189), + [sym_math] = STATE(189), + [sym_verbatim] = STATE(189), + [sym__todo_highlights] = STATE(189), + [sym_todo] = STATE(189), + [sym_note] = STATE(189), + [sym__symbol_fallback] = STATE(189), + [aux_sym__text] = STATE(161), + [aux_sym__inline_repeat1] = STATE(126), + [anon_sym_LBRACE_] = ACTIONS(1055), + [anon_sym__] = ACTIONS(1057), + [anon_sym_LBRACE_STAR] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_BSLASH] = ACTIONS(1063), + [sym_quotation_marks] = ACTIONS(1065), + [sym_ellipsis] = ACTIONS(1065), + [sym_em_dash] = ACTIONS(1065), + [sym_en_dash] = ACTIONS(1067), + [sym_backslash_escape] = ACTIONS(1067), + [anon_sym_LT] = ACTIONS(1069), + [anon_sym_LBRACE_EQ] = ACTIONS(1071), + [anon_sym_LBRACE_PLUS] = ACTIONS(1073), + [anon_sym_LBRACE_DASH] = ACTIONS(1075), + [sym_symbol] = ACTIONS(1065), + [anon_sym_LBRACE_CARET] = ACTIONS(1077), + [anon_sym_CARET] = ACTIONS(1077), + [anon_sym_LBRACE_TILDE] = ACTIONS(1079), + [anon_sym_TILDE] = ACTIONS(1079), + [anon_sym_LBRACK_CARET] = ACTIONS(1081), + [anon_sym_BANG_LBRACK] = ACTIONS(1083), + [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_LBRACE2] = ACTIONS(1067), + [anon_sym_DOLLAR] = ACTIONS(1087), + [anon_sym_TODO] = ACTIONS(1089), + [anon_sym_WIP] = ACTIONS(1089), + [anon_sym_NOTE] = ACTIONS(1091), + [anon_sym_INFO] = ACTIONS(1091), + [anon_sym_XXX] = ACTIONS(1091), + [sym_fixme] = ACTIONS(1065), + [anon_sym_PIPE] = ACTIONS(1065), + [sym__whitespace1] = ACTIONS(1093), + [sym__newline] = ACTIONS(1095), + [aux_sym__text_token1] = ACTIONS(1097), + [sym__verbatim_begin] = ACTIONS(1099), + }, + [107] = { + [sym__inline] = STATE(863), + [sym__element] = STATE(94), + [sym_emphasis] = STATE(188), + [sym_emphasis_begin] = STATE(1020), + [sym_strong] = STATE(188), + [sym_strong_begin] = STATE(106), + [sym__hard_line_break] = STATE(188), + [sym_hard_line_break] = STATE(188), + [sym__smart_punctuation] = STATE(188), + [sym_autolink] = STATE(188), + [sym_highlighted] = STATE(188), + [sym_insert] = STATE(188), + [sym_delete] = STATE(188), + [sym_superscript] = STATE(188), + [sym_subscript] = STATE(188), + [sym_footnote_reference] = STATE(188), + [sym__image] = STATE(188), + [sym_full_reference_image] = STATE(188), + [sym_collapsed_reference_image] = STATE(188), + [sym_inline_image] = STATE(188), + [sym__image_description] = STATE(702), + [sym__link] = STATE(188), + [sym_full_reference_link] = STATE(188), + [sym_collapsed_reference_link] = STATE(188), + [sym_inline_link] = STATE(188), + [sym_link_text] = STATE(700), + [sym__comment_with_spaces] = STATE(188), + [sym_span] = STATE(188), + [sym_raw_inline] = STATE(188), + [sym_math] = STATE(188), + [sym_verbatim] = STATE(188), + [sym__todo_highlights] = STATE(188), + [sym_todo] = STATE(188), + [sym_note] = STATE(188), + [sym__symbol_fallback] = STATE(188), + [aux_sym__text] = STATE(147), + [aux_sym__inline_repeat1] = STATE(94), + [anon_sym_LBRACE_] = ACTIONS(614), + [anon_sym__] = ACTIONS(616), + [anon_sym_LBRACE_STAR] = ACTIONS(618), + [anon_sym_STAR] = ACTIONS(620), + [anon_sym_BSLASH] = ACTIONS(622), + [sym_quotation_marks] = ACTIONS(624), + [sym_ellipsis] = ACTIONS(624), + [sym_em_dash] = ACTIONS(624), + [sym_en_dash] = ACTIONS(626), + [sym_backslash_escape] = ACTIONS(626), + [anon_sym_LT] = ACTIONS(628), + [anon_sym_LBRACE_EQ] = ACTIONS(630), + [anon_sym_LBRACE_PLUS] = ACTIONS(632), + [anon_sym_LBRACE_DASH] = ACTIONS(634), + [sym_symbol] = ACTIONS(624), + [anon_sym_LBRACE_CARET] = ACTIONS(636), + [anon_sym_CARET] = ACTIONS(636), + [anon_sym_LBRACE_TILDE] = ACTIONS(638), + [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_LBRACK_CARET] = ACTIONS(640), + [anon_sym_BANG_LBRACK] = ACTIONS(642), + [anon_sym_LBRACK] = ACTIONS(644), + [anon_sym_LBRACE2] = ACTIONS(626), + [anon_sym_DOLLAR] = ACTIONS(646), + [anon_sym_TODO] = ACTIONS(648), + [anon_sym_WIP] = ACTIONS(648), + [anon_sym_NOTE] = ACTIONS(650), + [anon_sym_INFO] = ACTIONS(650), + [anon_sym_XXX] = ACTIONS(650), + [sym_fixme] = ACTIONS(624), + [anon_sym_PIPE] = ACTIONS(624), + [sym__whitespace1] = ACTIONS(652), + [sym__newline] = ACTIONS(654), + [aux_sym__text_token1] = ACTIONS(656), + [sym__verbatim_begin] = ACTIONS(658), + }, + [108] = { + [sym__inline_without_trailing_space] = STATE(729), + [sym__element] = STATE(581), + [sym_emphasis] = STATE(179), + [sym_emphasis_begin] = STATE(1019), + [sym_strong] = STATE(179), [sym_strong_begin] = STATE(110), - [sym__hard_line_break] = STATE(163), - [sym_hard_line_break] = STATE(163), - [sym__smart_punctuation] = STATE(163), - [sym_autolink] = STATE(163), - [sym_highlighted] = STATE(163), - [sym_insert] = STATE(163), - [sym_delete] = STATE(163), - [sym_superscript] = STATE(163), - [sym_subscript] = STATE(163), - [sym_footnote_reference] = STATE(163), - [sym__image] = STATE(163), - [sym_full_reference_image] = STATE(163), - [sym_collapsed_reference_image] = STATE(163), - [sym_inline_image] = STATE(163), - [sym__image_description] = STATE(622), - [sym__link] = STATE(163), - [sym_full_reference_link] = STATE(163), - [sym_collapsed_reference_link] = STATE(163), - [sym_inline_link] = STATE(163), - [sym_link_text] = STATE(605), - [sym__comment_with_spaces] = STATE(163), - [sym_span] = STATE(163), - [sym_raw_inline] = STATE(163), - [sym_math] = STATE(163), - [sym_verbatim] = STATE(163), - [sym__todo_highlights] = STATE(163), - [sym_todo] = STATE(163), - [sym_note] = STATE(163), - [sym__symbol_fallback] = STATE(163), - [aux_sym__text] = STATE(146), - [aux_sym__inline_repeat1] = STATE(72), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_] = ACTIONS(331), - [anon_sym__] = ACTIONS(334), - [anon_sym_LBRACE_STAR] = ACTIONS(337), - [anon_sym_STAR] = ACTIONS(340), - [anon_sym_BSLASH] = ACTIONS(343), - [sym_quotation_marks] = ACTIONS(334), - [sym_ellipsis] = ACTIONS(334), - [sym_em_dash] = ACTIONS(334), - [sym_en_dash] = ACTIONS(346), - [sym_backslash_escape] = ACTIONS(346), - [anon_sym_LT] = ACTIONS(349), - [anon_sym_LBRACE_EQ] = ACTIONS(352), - [anon_sym_EQ_RBRACE] = ACTIONS(79), - [anon_sym_LBRACE_PLUS] = ACTIONS(355), - [anon_sym_LBRACE_DASH] = ACTIONS(358), - [sym_symbol] = ACTIONS(334), - [anon_sym_LBRACE_CARET] = ACTIONS(361), - [anon_sym_CARET] = ACTIONS(361), - [anon_sym_LBRACE_TILDE] = ACTIONS(364), - [anon_sym_TILDE] = ACTIONS(364), - [anon_sym_LBRACK_CARET] = ACTIONS(367), - [anon_sym_BANG_LBRACK] = ACTIONS(370), - [anon_sym_LBRACK] = ACTIONS(373), - [anon_sym_LBRACE2] = ACTIONS(346), - [anon_sym_DOLLAR] = ACTIONS(376), - [anon_sym_TODO] = ACTIONS(379), - [anon_sym_WIP] = ACTIONS(379), - [anon_sym_NOTE] = ACTIONS(382), - [anon_sym_INFO] = ACTIONS(382), - [anon_sym_XXX] = ACTIONS(382), - [sym_fixme] = ACTIONS(334), - [anon_sym_PIPE] = ACTIONS(334), - [sym__whitespace1] = ACTIONS(385), - [sym__newline] = ACTIONS(388), - [aux_sym__text_token1] = ACTIONS(391), - [sym__verbatim_begin] = ACTIONS(394), + [sym__hard_line_break] = STATE(179), + [sym_hard_line_break] = STATE(179), + [sym__smart_punctuation] = STATE(179), + [sym_autolink] = STATE(179), + [sym_highlighted] = STATE(179), + [sym_insert] = STATE(179), + [sym_delete] = STATE(179), + [sym_superscript] = STATE(179), + [sym_subscript] = STATE(179), + [sym_footnote_reference] = STATE(179), + [sym__image] = STATE(179), + [sym_full_reference_image] = STATE(179), + [sym_collapsed_reference_image] = STATE(179), + [sym_inline_image] = STATE(179), + [sym__image_description] = STATE(720), + [sym__link] = STATE(179), + [sym_full_reference_link] = STATE(179), + [sym_collapsed_reference_link] = STATE(179), + [sym_inline_link] = STATE(179), + [sym_link_text] = STATE(697), + [sym__comment_with_spaces] = STATE(179), + [sym_span] = STATE(179), + [sym_raw_inline] = STATE(179), + [sym_math] = STATE(179), + [sym_verbatim] = STATE(179), + [sym__todo_highlights] = STATE(179), + [sym_todo] = STATE(179), + [sym_note] = STATE(179), + [sym__symbol_fallback] = STATE(179), + [aux_sym__text] = STATE(163), + [aux_sym__inline_repeat1] = STATE(130), + [anon_sym_LBRACE_] = ACTIONS(915), + [anon_sym__] = ACTIONS(917), + [anon_sym_LBRACE_STAR] = ACTIONS(919), + [anon_sym_STAR] = ACTIONS(921), + [anon_sym_BSLASH] = ACTIONS(923), + [sym_quotation_marks] = ACTIONS(925), + [sym_ellipsis] = ACTIONS(925), + [sym_em_dash] = ACTIONS(925), + [sym_en_dash] = ACTIONS(927), + [sym_backslash_escape] = ACTIONS(927), + [anon_sym_LT] = ACTIONS(929), + [anon_sym_LBRACE_EQ] = ACTIONS(931), + [anon_sym_LBRACE_PLUS] = ACTIONS(933), + [anon_sym_LBRACE_DASH] = ACTIONS(935), + [sym_symbol] = ACTIONS(925), + [anon_sym_LBRACE_CARET] = ACTIONS(937), + [anon_sym_CARET] = ACTIONS(937), + [anon_sym_LBRACE_TILDE] = ACTIONS(939), + [anon_sym_TILDE] = ACTIONS(939), + [anon_sym_LBRACK_CARET] = ACTIONS(941), + [anon_sym_BANG_LBRACK] = ACTIONS(943), + [anon_sym_LBRACK] = ACTIONS(945), + [anon_sym_LBRACE2] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(947), + [anon_sym_TODO] = ACTIONS(949), + [anon_sym_WIP] = ACTIONS(949), + [anon_sym_NOTE] = ACTIONS(951), + [anon_sym_INFO] = ACTIONS(951), + [anon_sym_XXX] = ACTIONS(951), + [sym_fixme] = ACTIONS(925), + [anon_sym_PIPE] = ACTIONS(925), + [sym__whitespace1] = ACTIONS(953), + [sym__newline] = ACTIONS(955), + [aux_sym__text_token1] = ACTIONS(957), + [sym__verbatim_begin] = ACTIONS(959), }, - [40] = { - [sym__inline] = STATE(892), - [sym__element] = STATE(73), - [sym_emphasis] = STATE(180), - [sym_emphasis_begin] = STATE(895), - [sym_strong] = STATE(180), - [sym_strong_begin] = STATE(114), - [sym__hard_line_break] = STATE(180), - [sym_hard_line_break] = STATE(180), - [sym__smart_punctuation] = STATE(180), - [sym_autolink] = STATE(180), - [sym_highlighted] = STATE(180), - [sym_insert] = STATE(180), - [sym_delete] = STATE(180), - [sym_superscript] = STATE(180), - [sym_subscript] = STATE(180), - [sym_footnote_reference] = STATE(180), - [sym__image] = STATE(180), - [sym_full_reference_image] = STATE(180), - [sym_collapsed_reference_image] = STATE(180), - [sym_inline_image] = STATE(180), - [sym__image_description] = STATE(632), - [sym__link] = STATE(180), - [sym_full_reference_link] = STATE(180), - [sym_collapsed_reference_link] = STATE(180), - [sym_inline_link] = STATE(180), - [sym_link_text] = STATE(633), - [sym__comment_with_spaces] = STATE(180), - [sym_span] = STATE(180), - [sym_raw_inline] = STATE(180), - [sym_math] = STATE(180), - [sym_verbatim] = STATE(180), - [sym__todo_highlights] = STATE(180), - [sym_todo] = STATE(180), - [sym_note] = STATE(180), - [sym__symbol_fallback] = STATE(180), - [aux_sym__text] = STATE(132), - [aux_sym__inline_repeat1] = STATE(73), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_] = ACTIONS(133), - [anon_sym__] = ACTIONS(136), - [anon_sym_LBRACE_STAR] = ACTIONS(139), - [anon_sym_STAR] = ACTIONS(142), - [anon_sym_BSLASH] = ACTIONS(145), - [sym_quotation_marks] = ACTIONS(136), - [sym_ellipsis] = ACTIONS(136), - [sym_em_dash] = ACTIONS(136), - [sym_en_dash] = ACTIONS(148), - [sym_backslash_escape] = ACTIONS(148), - [anon_sym_LT] = ACTIONS(151), - [anon_sym_LBRACE_EQ] = ACTIONS(154), - [anon_sym_EQ_RBRACE] = ACTIONS(79), - [anon_sym_LBRACE_PLUS] = ACTIONS(157), - [anon_sym_LBRACE_DASH] = ACTIONS(160), - [sym_symbol] = ACTIONS(136), - [anon_sym_LBRACE_CARET] = ACTIONS(163), - [anon_sym_CARET] = ACTIONS(163), - [anon_sym_LBRACE_TILDE] = ACTIONS(166), - [anon_sym_TILDE] = ACTIONS(166), - [anon_sym_LBRACK_CARET] = ACTIONS(169), - [anon_sym_BANG_LBRACK] = ACTIONS(172), - [anon_sym_LBRACK] = ACTIONS(175), - [anon_sym_LBRACE2] = ACTIONS(148), - [anon_sym_DOLLAR] = ACTIONS(178), - [anon_sym_TODO] = ACTIONS(181), - [anon_sym_WIP] = ACTIONS(181), - [anon_sym_NOTE] = ACTIONS(184), - [anon_sym_INFO] = ACTIONS(184), - [anon_sym_XXX] = ACTIONS(184), - [sym_fixme] = ACTIONS(136), - [anon_sym_PIPE] = ACTIONS(136), - [sym__whitespace1] = ACTIONS(187), - [sym__newline] = ACTIONS(190), - [aux_sym__text_token1] = ACTIONS(193), - [sym__verbatim_begin] = ACTIONS(196), + [109] = { + [sym__inline_without_trailing_space] = STATE(725), + [sym__element] = STATE(581), + [sym_emphasis] = STATE(179), + [sym_emphasis_begin] = STATE(1019), + [sym_strong] = STATE(179), + [sym_strong_begin] = STATE(110), + [sym__hard_line_break] = STATE(179), + [sym_hard_line_break] = STATE(179), + [sym__smart_punctuation] = STATE(179), + [sym_autolink] = STATE(179), + [sym_highlighted] = STATE(179), + [sym_insert] = STATE(179), + [sym_delete] = STATE(179), + [sym_superscript] = STATE(179), + [sym_subscript] = STATE(179), + [sym_footnote_reference] = STATE(179), + [sym__image] = STATE(179), + [sym_full_reference_image] = STATE(179), + [sym_collapsed_reference_image] = STATE(179), + [sym_inline_image] = STATE(179), + [sym__image_description] = STATE(720), + [sym__link] = STATE(179), + [sym_full_reference_link] = STATE(179), + [sym_collapsed_reference_link] = STATE(179), + [sym_inline_link] = STATE(179), + [sym_link_text] = STATE(697), + [sym__comment_with_spaces] = STATE(179), + [sym_span] = STATE(179), + [sym_raw_inline] = STATE(179), + [sym_math] = STATE(179), + [sym_verbatim] = STATE(179), + [sym__todo_highlights] = STATE(179), + [sym_todo] = STATE(179), + [sym_note] = STATE(179), + [sym__symbol_fallback] = STATE(179), + [aux_sym__text] = STATE(163), + [aux_sym__inline_repeat1] = STATE(130), + [anon_sym_LBRACE_] = ACTIONS(915), + [anon_sym__] = ACTIONS(917), + [anon_sym_LBRACE_STAR] = ACTIONS(919), + [anon_sym_STAR] = ACTIONS(921), + [anon_sym_BSLASH] = ACTIONS(923), + [sym_quotation_marks] = ACTIONS(925), + [sym_ellipsis] = ACTIONS(925), + [sym_em_dash] = ACTIONS(925), + [sym_en_dash] = ACTIONS(927), + [sym_backslash_escape] = ACTIONS(927), + [anon_sym_LT] = ACTIONS(929), + [anon_sym_LBRACE_EQ] = ACTIONS(931), + [anon_sym_LBRACE_PLUS] = ACTIONS(933), + [anon_sym_LBRACE_DASH] = ACTIONS(935), + [sym_symbol] = ACTIONS(925), + [anon_sym_LBRACE_CARET] = ACTIONS(937), + [anon_sym_CARET] = ACTIONS(937), + [anon_sym_LBRACE_TILDE] = ACTIONS(939), + [anon_sym_TILDE] = ACTIONS(939), + [anon_sym_LBRACK_CARET] = ACTIONS(941), + [anon_sym_BANG_LBRACK] = ACTIONS(943), + [anon_sym_LBRACK] = ACTIONS(945), + [anon_sym_LBRACE2] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(947), + [anon_sym_TODO] = ACTIONS(949), + [anon_sym_WIP] = ACTIONS(949), + [anon_sym_NOTE] = ACTIONS(951), + [anon_sym_INFO] = ACTIONS(951), + [anon_sym_XXX] = ACTIONS(951), + [sym_fixme] = ACTIONS(925), + [anon_sym_PIPE] = ACTIONS(925), + [sym__whitespace1] = ACTIONS(953), + [sym__newline] = ACTIONS(955), + [aux_sym__text_token1] = ACTIONS(957), + [sym__verbatim_begin] = ACTIONS(959), }, - [41] = { - [sym__inline] = STATE(814), - [sym__element] = STATE(97), - [sym_emphasis] = STATE(182), - [sym_emphasis_begin] = STATE(898), - [sym_strong] = STATE(182), - [sym_strong_begin] = STATE(104), - [sym__hard_line_break] = STATE(182), - [sym_hard_line_break] = STATE(182), - [sym__smart_punctuation] = STATE(182), - [sym_autolink] = STATE(182), - [sym_highlighted] = STATE(182), - [sym_insert] = STATE(182), - [sym_delete] = STATE(182), - [sym_superscript] = STATE(182), - [sym_subscript] = STATE(182), - [sym_footnote_reference] = STATE(182), - [sym__image] = STATE(182), - [sym_full_reference_image] = STATE(182), - [sym_collapsed_reference_image] = STATE(182), - [sym_inline_image] = STATE(182), - [sym__image_description] = STATE(610), - [sym__link] = STATE(182), - [sym_full_reference_link] = STATE(182), - [sym_collapsed_reference_link] = STATE(182), - [sym_inline_link] = STATE(182), - [sym_link_text] = STATE(608), - [sym__comment_with_spaces] = STATE(182), - [sym_span] = STATE(182), - [sym_raw_inline] = STATE(182), - [sym_math] = STATE(182), - [sym_verbatim] = STATE(182), - [sym__todo_highlights] = STATE(182), - [sym_todo] = STATE(182), - [sym_note] = STATE(182), - [sym__symbol_fallback] = STATE(182), - [aux_sym__text] = STATE(144), - [aux_sym__inline_repeat1] = STATE(97), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_] = ACTIONS(49), - [anon_sym__] = ACTIONS(52), - [anon_sym_LBRACE_STAR] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(58), - [anon_sym_BSLASH] = ACTIONS(61), - [sym_quotation_marks] = ACTIONS(52), - [sym_ellipsis] = ACTIONS(52), - [sym_em_dash] = ACTIONS(52), - [sym_en_dash] = ACTIONS(64), - [sym_backslash_escape] = ACTIONS(64), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_LBRACE_EQ] = ACTIONS(70), - [anon_sym_LBRACE_PLUS] = ACTIONS(73), - [anon_sym_PLUS_RBRACE] = ACTIONS(79), - [anon_sym_LBRACE_DASH] = ACTIONS(76), - [sym_symbol] = ACTIONS(52), - [anon_sym_LBRACE_CARET] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(81), - [anon_sym_LBRACE_TILDE] = ACTIONS(84), - [anon_sym_TILDE] = ACTIONS(84), - [anon_sym_LBRACK_CARET] = ACTIONS(87), - [anon_sym_BANG_LBRACK] = ACTIONS(92), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LBRACE2] = ACTIONS(64), - [anon_sym_DOLLAR] = ACTIONS(98), - [anon_sym_TODO] = ACTIONS(101), - [anon_sym_WIP] = ACTIONS(101), - [anon_sym_NOTE] = ACTIONS(104), - [anon_sym_INFO] = ACTIONS(104), - [anon_sym_XXX] = ACTIONS(104), - [sym_fixme] = ACTIONS(52), - [anon_sym_PIPE] = ACTIONS(52), - [sym__whitespace1] = ACTIONS(107), - [sym__newline] = ACTIONS(110), - [aux_sym__text_token1] = ACTIONS(113), - [sym__verbatim_begin] = ACTIONS(116), + [110] = { + [sym__inline] = STATE(735), + [sym__element] = STATE(126), + [sym_emphasis] = STATE(189), + [sym_emphasis_begin] = STATE(1018), + [sym_strong] = STATE(189), + [sym_strong_begin] = STATE(112), + [sym__hard_line_break] = STATE(189), + [sym_hard_line_break] = STATE(189), + [sym__smart_punctuation] = STATE(189), + [sym_autolink] = STATE(189), + [sym_highlighted] = STATE(189), + [sym_insert] = STATE(189), + [sym_delete] = STATE(189), + [sym_superscript] = STATE(189), + [sym_subscript] = STATE(189), + [sym_footnote_reference] = STATE(189), + [sym__image] = STATE(189), + [sym_full_reference_image] = STATE(189), + [sym_collapsed_reference_image] = STATE(189), + [sym_inline_image] = STATE(189), + [sym__image_description] = STATE(707), + [sym__link] = STATE(189), + [sym_full_reference_link] = STATE(189), + [sym_collapsed_reference_link] = STATE(189), + [sym_inline_link] = STATE(189), + [sym_link_text] = STATE(698), + [sym__comment_with_spaces] = STATE(189), + [sym_span] = STATE(189), + [sym_raw_inline] = STATE(189), + [sym_math] = STATE(189), + [sym_verbatim] = STATE(189), + [sym__todo_highlights] = STATE(189), + [sym_todo] = STATE(189), + [sym_note] = STATE(189), + [sym__symbol_fallback] = STATE(189), + [aux_sym__text] = STATE(161), + [aux_sym__inline_repeat1] = STATE(126), + [anon_sym_LBRACE_] = ACTIONS(1055), + [anon_sym__] = ACTIONS(1057), + [anon_sym_LBRACE_STAR] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_BSLASH] = ACTIONS(1063), + [sym_quotation_marks] = ACTIONS(1065), + [sym_ellipsis] = ACTIONS(1065), + [sym_em_dash] = ACTIONS(1065), + [sym_en_dash] = ACTIONS(1067), + [sym_backslash_escape] = ACTIONS(1067), + [anon_sym_LT] = ACTIONS(1069), + [anon_sym_LBRACE_EQ] = ACTIONS(1071), + [anon_sym_LBRACE_PLUS] = ACTIONS(1073), + [anon_sym_LBRACE_DASH] = ACTIONS(1075), + [sym_symbol] = ACTIONS(1065), + [anon_sym_LBRACE_CARET] = ACTIONS(1077), + [anon_sym_CARET] = ACTIONS(1077), + [anon_sym_LBRACE_TILDE] = ACTIONS(1079), + [anon_sym_TILDE] = ACTIONS(1079), + [anon_sym_LBRACK_CARET] = ACTIONS(1081), + [anon_sym_BANG_LBRACK] = ACTIONS(1083), + [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_LBRACE2] = ACTIONS(1067), + [anon_sym_DOLLAR] = ACTIONS(1087), + [anon_sym_TODO] = ACTIONS(1089), + [anon_sym_WIP] = ACTIONS(1089), + [anon_sym_NOTE] = ACTIONS(1091), + [anon_sym_INFO] = ACTIONS(1091), + [anon_sym_XXX] = ACTIONS(1091), + [sym_fixme] = ACTIONS(1065), + [anon_sym_PIPE] = ACTIONS(1065), + [sym__whitespace1] = ACTIONS(1093), + [sym__newline] = ACTIONS(1095), + [aux_sym__text_token1] = ACTIONS(1097), + [sym__verbatim_begin] = ACTIONS(1099), }, - [42] = { - [sym__inline] = STATE(747), - [sym__element] = STATE(107), - [sym_emphasis] = STATE(187), - [sym_emphasis_begin] = STATE(893), - [sym_strong] = STATE(187), - [sym_strong_begin] = STATE(119), - [sym__hard_line_break] = STATE(187), - [sym_hard_line_break] = STATE(187), - [sym__smart_punctuation] = STATE(187), - [sym_autolink] = STATE(187), - [sym_highlighted] = STATE(187), - [sym_insert] = STATE(187), - [sym_delete] = STATE(187), - [sym_superscript] = STATE(187), - [sym_subscript] = STATE(187), - [sym_footnote_reference] = STATE(187), - [sym__image] = STATE(187), - [sym_full_reference_image] = STATE(187), - [sym_collapsed_reference_image] = STATE(187), - [sym_inline_image] = STATE(187), - [sym__image_description] = STATE(616), - [sym__link] = STATE(187), - [sym_full_reference_link] = STATE(187), - [sym_collapsed_reference_link] = STATE(187), - [sym_inline_link] = STATE(187), - [sym_link_text] = STATE(634), - [sym__comment_with_spaces] = STATE(187), - [sym_span] = STATE(187), - [sym_raw_inline] = STATE(187), - [sym_math] = STATE(187), - [sym_verbatim] = STATE(187), - [sym__todo_highlights] = STATE(187), - [sym_todo] = STATE(187), - [sym_note] = STATE(187), - [sym__symbol_fallback] = STATE(187), - [aux_sym__text] = STATE(131), - [aux_sym__inline_repeat1] = STATE(107), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_] = ACTIONS(265), - [anon_sym__] = ACTIONS(268), - [anon_sym_LBRACE_STAR] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(274), - [anon_sym_BSLASH] = ACTIONS(277), - [sym_quotation_marks] = ACTIONS(268), - [sym_ellipsis] = ACTIONS(268), - [sym_em_dash] = ACTIONS(268), - [sym_en_dash] = ACTIONS(280), - [sym_backslash_escape] = ACTIONS(280), - [anon_sym_LT] = ACTIONS(283), - [anon_sym_LBRACE_EQ] = ACTIONS(286), - [anon_sym_EQ_RBRACE] = ACTIONS(79), - [anon_sym_LBRACE_PLUS] = ACTIONS(289), - [anon_sym_LBRACE_DASH] = ACTIONS(292), - [sym_symbol] = ACTIONS(268), - [anon_sym_LBRACE_CARET] = ACTIONS(295), - [anon_sym_CARET] = ACTIONS(295), - [anon_sym_LBRACE_TILDE] = ACTIONS(298), - [anon_sym_TILDE] = ACTIONS(298), - [anon_sym_LBRACK_CARET] = ACTIONS(301), - [anon_sym_BANG_LBRACK] = ACTIONS(304), - [anon_sym_LBRACK] = ACTIONS(307), - [anon_sym_LBRACE2] = ACTIONS(280), - [anon_sym_DOLLAR] = ACTIONS(310), - [anon_sym_TODO] = ACTIONS(313), - [anon_sym_WIP] = ACTIONS(313), - [anon_sym_NOTE] = ACTIONS(316), - [anon_sym_INFO] = ACTIONS(316), - [anon_sym_XXX] = ACTIONS(316), - [sym_fixme] = ACTIONS(268), - [anon_sym_PIPE] = ACTIONS(268), - [sym__whitespace1] = ACTIONS(319), - [sym__newline] = ACTIONS(322), - [aux_sym__text_token1] = ACTIONS(325), - [sym__verbatim_begin] = ACTIONS(328), + [111] = { + [sym__inline] = STATE(817), + [sym__element] = STATE(94), + [sym_emphasis] = STATE(188), + [sym_emphasis_begin] = STATE(1020), + [sym_strong] = STATE(188), + [sym_strong_begin] = STATE(106), + [sym__hard_line_break] = STATE(188), + [sym_hard_line_break] = STATE(188), + [sym__smart_punctuation] = STATE(188), + [sym_autolink] = STATE(188), + [sym_highlighted] = STATE(188), + [sym_insert] = STATE(188), + [sym_delete] = STATE(188), + [sym_superscript] = STATE(188), + [sym_subscript] = STATE(188), + [sym_footnote_reference] = STATE(188), + [sym__image] = STATE(188), + [sym_full_reference_image] = STATE(188), + [sym_collapsed_reference_image] = STATE(188), + [sym_inline_image] = STATE(188), + [sym__image_description] = STATE(702), + [sym__link] = STATE(188), + [sym_full_reference_link] = STATE(188), + [sym_collapsed_reference_link] = STATE(188), + [sym_inline_link] = STATE(188), + [sym_link_text] = STATE(700), + [sym__comment_with_spaces] = STATE(188), + [sym_span] = STATE(188), + [sym_raw_inline] = STATE(188), + [sym_math] = STATE(188), + [sym_verbatim] = STATE(188), + [sym__todo_highlights] = STATE(188), + [sym_todo] = STATE(188), + [sym_note] = STATE(188), + [sym__symbol_fallback] = STATE(188), + [aux_sym__text] = STATE(147), + [aux_sym__inline_repeat1] = STATE(94), + [anon_sym_LBRACE_] = ACTIONS(614), + [anon_sym__] = ACTIONS(616), + [anon_sym_LBRACE_STAR] = ACTIONS(618), + [anon_sym_STAR] = ACTIONS(620), + [anon_sym_BSLASH] = ACTIONS(622), + [sym_quotation_marks] = ACTIONS(624), + [sym_ellipsis] = ACTIONS(624), + [sym_em_dash] = ACTIONS(624), + [sym_en_dash] = ACTIONS(626), + [sym_backslash_escape] = ACTIONS(626), + [anon_sym_LT] = ACTIONS(628), + [anon_sym_LBRACE_EQ] = ACTIONS(630), + [anon_sym_LBRACE_PLUS] = ACTIONS(632), + [anon_sym_LBRACE_DASH] = ACTIONS(634), + [sym_symbol] = ACTIONS(624), + [anon_sym_LBRACE_CARET] = ACTIONS(636), + [anon_sym_CARET] = ACTIONS(636), + [anon_sym_LBRACE_TILDE] = ACTIONS(638), + [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_LBRACK_CARET] = ACTIONS(640), + [anon_sym_BANG_LBRACK] = ACTIONS(642), + [anon_sym_LBRACK] = ACTIONS(644), + [anon_sym_LBRACE2] = ACTIONS(626), + [anon_sym_DOLLAR] = ACTIONS(646), + [anon_sym_TODO] = ACTIONS(648), + [anon_sym_WIP] = ACTIONS(648), + [anon_sym_NOTE] = ACTIONS(650), + [anon_sym_INFO] = ACTIONS(650), + [anon_sym_XXX] = ACTIONS(650), + [sym_fixme] = ACTIONS(624), + [anon_sym_PIPE] = ACTIONS(624), + [sym__whitespace1] = ACTIONS(652), + [sym__newline] = ACTIONS(654), + [aux_sym__text_token1] = ACTIONS(656), + [sym__verbatim_begin] = ACTIONS(658), }, - [43] = { - [sym__inline] = STATE(841), - [sym__element] = STATE(97), + [112] = { + [sym__inline] = STATE(727), + [sym__element] = STATE(126), + [sym_emphasis] = STATE(189), + [sym_emphasis_begin] = STATE(1018), + [sym_strong] = STATE(189), + [sym_strong_begin] = STATE(112), + [sym__hard_line_break] = STATE(189), + [sym_hard_line_break] = STATE(189), + [sym__smart_punctuation] = STATE(189), + [sym_autolink] = STATE(189), + [sym_highlighted] = STATE(189), + [sym_insert] = STATE(189), + [sym_delete] = STATE(189), + [sym_superscript] = STATE(189), + [sym_subscript] = STATE(189), + [sym_footnote_reference] = STATE(189), + [sym__image] = STATE(189), + [sym_full_reference_image] = STATE(189), + [sym_collapsed_reference_image] = STATE(189), + [sym_inline_image] = STATE(189), + [sym__image_description] = STATE(707), + [sym__link] = STATE(189), + [sym_full_reference_link] = STATE(189), + [sym_collapsed_reference_link] = STATE(189), + [sym_inline_link] = STATE(189), + [sym_link_text] = STATE(698), + [sym__comment_with_spaces] = STATE(189), + [sym_span] = STATE(189), + [sym_raw_inline] = STATE(189), + [sym_math] = STATE(189), + [sym_verbatim] = STATE(189), + [sym__todo_highlights] = STATE(189), + [sym_todo] = STATE(189), + [sym_note] = STATE(189), + [sym__symbol_fallback] = STATE(189), + [aux_sym__text] = STATE(161), + [aux_sym__inline_repeat1] = STATE(126), + [anon_sym_LBRACE_] = ACTIONS(1055), + [anon_sym__] = ACTIONS(1057), + [anon_sym_LBRACE_STAR] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_BSLASH] = ACTIONS(1063), + [sym_quotation_marks] = ACTIONS(1065), + [sym_ellipsis] = ACTIONS(1065), + [sym_em_dash] = ACTIONS(1065), + [sym_en_dash] = ACTIONS(1067), + [sym_backslash_escape] = ACTIONS(1067), + [anon_sym_LT] = ACTIONS(1069), + [anon_sym_LBRACE_EQ] = ACTIONS(1071), + [anon_sym_LBRACE_PLUS] = ACTIONS(1073), + [anon_sym_LBRACE_DASH] = ACTIONS(1075), + [sym_symbol] = ACTIONS(1065), + [anon_sym_LBRACE_CARET] = ACTIONS(1077), + [anon_sym_CARET] = ACTIONS(1077), + [anon_sym_LBRACE_TILDE] = ACTIONS(1079), + [anon_sym_TILDE] = ACTIONS(1079), + [anon_sym_LBRACK_CARET] = ACTIONS(1081), + [anon_sym_BANG_LBRACK] = ACTIONS(1083), + [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_LBRACE2] = ACTIONS(1067), + [anon_sym_DOLLAR] = ACTIONS(1087), + [anon_sym_TODO] = ACTIONS(1089), + [anon_sym_WIP] = ACTIONS(1089), + [anon_sym_NOTE] = ACTIONS(1091), + [anon_sym_INFO] = ACTIONS(1091), + [anon_sym_XXX] = ACTIONS(1091), + [sym_fixme] = ACTIONS(1065), + [anon_sym_PIPE] = ACTIONS(1065), + [sym__whitespace1] = ACTIONS(1093), + [sym__newline] = ACTIONS(1095), + [aux_sym__text_token1] = ACTIONS(1097), + [sym__verbatim_begin] = ACTIONS(1099), + }, + [113] = { + [sym__inline] = STATE(804), + [sym__element] = STATE(94), + [sym_emphasis] = STATE(188), + [sym_emphasis_begin] = STATE(1020), + [sym_strong] = STATE(188), + [sym_strong_begin] = STATE(106), + [sym__hard_line_break] = STATE(188), + [sym_hard_line_break] = STATE(188), + [sym__smart_punctuation] = STATE(188), + [sym_autolink] = STATE(188), + [sym_highlighted] = STATE(188), + [sym_insert] = STATE(188), + [sym_delete] = STATE(188), + [sym_superscript] = STATE(188), + [sym_subscript] = STATE(188), + [sym_footnote_reference] = STATE(188), + [sym__image] = STATE(188), + [sym_full_reference_image] = STATE(188), + [sym_collapsed_reference_image] = STATE(188), + [sym_inline_image] = STATE(188), + [sym__image_description] = STATE(702), + [sym__link] = STATE(188), + [sym_full_reference_link] = STATE(188), + [sym_collapsed_reference_link] = STATE(188), + [sym_inline_link] = STATE(188), + [sym_link_text] = STATE(700), + [sym__comment_with_spaces] = STATE(188), + [sym_span] = STATE(188), + [sym_raw_inline] = STATE(188), + [sym_math] = STATE(188), + [sym_verbatim] = STATE(188), + [sym__todo_highlights] = STATE(188), + [sym_todo] = STATE(188), + [sym_note] = STATE(188), + [sym__symbol_fallback] = STATE(188), + [aux_sym__text] = STATE(147), + [aux_sym__inline_repeat1] = STATE(94), + [anon_sym_LBRACE_] = ACTIONS(614), + [anon_sym__] = ACTIONS(616), + [anon_sym_LBRACE_STAR] = ACTIONS(618), + [anon_sym_STAR] = ACTIONS(620), + [anon_sym_BSLASH] = ACTIONS(622), + [sym_quotation_marks] = ACTIONS(624), + [sym_ellipsis] = ACTIONS(624), + [sym_em_dash] = ACTIONS(624), + [sym_en_dash] = ACTIONS(626), + [sym_backslash_escape] = ACTIONS(626), + [anon_sym_LT] = ACTIONS(628), + [anon_sym_LBRACE_EQ] = ACTIONS(630), + [anon_sym_LBRACE_PLUS] = ACTIONS(632), + [anon_sym_LBRACE_DASH] = ACTIONS(634), + [sym_symbol] = ACTIONS(624), + [anon_sym_LBRACE_CARET] = ACTIONS(636), + [anon_sym_CARET] = ACTIONS(636), + [anon_sym_LBRACE_TILDE] = ACTIONS(638), + [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_LBRACK_CARET] = ACTIONS(640), + [anon_sym_BANG_LBRACK] = ACTIONS(642), + [anon_sym_LBRACK] = ACTIONS(644), + [anon_sym_LBRACE2] = ACTIONS(626), + [anon_sym_DOLLAR] = ACTIONS(646), + [anon_sym_TODO] = ACTIONS(648), + [anon_sym_WIP] = ACTIONS(648), + [anon_sym_NOTE] = ACTIONS(650), + [anon_sym_INFO] = ACTIONS(650), + [anon_sym_XXX] = ACTIONS(650), + [sym_fixme] = ACTIONS(624), + [anon_sym_PIPE] = ACTIONS(624), + [sym__whitespace1] = ACTIONS(652), + [sym__newline] = ACTIONS(654), + [aux_sym__text_token1] = ACTIONS(656), + [sym__verbatim_begin] = ACTIONS(658), + }, + [114] = { + [sym__inline] = STATE(731), + [sym__element] = STATE(126), + [sym_emphasis] = STATE(189), + [sym_emphasis_begin] = STATE(1018), + [sym_strong] = STATE(189), + [sym_strong_begin] = STATE(112), + [sym__hard_line_break] = STATE(189), + [sym_hard_line_break] = STATE(189), + [sym__smart_punctuation] = STATE(189), + [sym_autolink] = STATE(189), + [sym_highlighted] = STATE(189), + [sym_insert] = STATE(189), + [sym_delete] = STATE(189), + [sym_superscript] = STATE(189), + [sym_subscript] = STATE(189), + [sym_footnote_reference] = STATE(189), + [sym__image] = STATE(189), + [sym_full_reference_image] = STATE(189), + [sym_collapsed_reference_image] = STATE(189), + [sym_inline_image] = STATE(189), + [sym__image_description] = STATE(707), + [sym__link] = STATE(189), + [sym_full_reference_link] = STATE(189), + [sym_collapsed_reference_link] = STATE(189), + [sym_inline_link] = STATE(189), + [sym_link_text] = STATE(698), + [sym__comment_with_spaces] = STATE(189), + [sym_span] = STATE(189), + [sym_raw_inline] = STATE(189), + [sym_math] = STATE(189), + [sym_verbatim] = STATE(189), + [sym__todo_highlights] = STATE(189), + [sym_todo] = STATE(189), + [sym_note] = STATE(189), + [sym__symbol_fallback] = STATE(189), + [aux_sym__text] = STATE(161), + [aux_sym__inline_repeat1] = STATE(126), + [anon_sym_LBRACE_] = ACTIONS(1055), + [anon_sym__] = ACTIONS(1057), + [anon_sym_LBRACE_STAR] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_BSLASH] = ACTIONS(1063), + [sym_quotation_marks] = ACTIONS(1065), + [sym_ellipsis] = ACTIONS(1065), + [sym_em_dash] = ACTIONS(1065), + [sym_en_dash] = ACTIONS(1067), + [sym_backslash_escape] = ACTIONS(1067), + [anon_sym_LT] = ACTIONS(1069), + [anon_sym_LBRACE_EQ] = ACTIONS(1071), + [anon_sym_LBRACE_PLUS] = ACTIONS(1073), + [anon_sym_LBRACE_DASH] = ACTIONS(1075), + [sym_symbol] = ACTIONS(1065), + [anon_sym_LBRACE_CARET] = ACTIONS(1077), + [anon_sym_CARET] = ACTIONS(1077), + [anon_sym_LBRACE_TILDE] = ACTIONS(1079), + [anon_sym_TILDE] = ACTIONS(1079), + [anon_sym_LBRACK_CARET] = ACTIONS(1081), + [anon_sym_BANG_LBRACK] = ACTIONS(1083), + [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_LBRACE2] = ACTIONS(1067), + [anon_sym_DOLLAR] = ACTIONS(1087), + [anon_sym_TODO] = ACTIONS(1089), + [anon_sym_WIP] = ACTIONS(1089), + [anon_sym_NOTE] = ACTIONS(1091), + [anon_sym_INFO] = ACTIONS(1091), + [anon_sym_XXX] = ACTIONS(1091), + [sym_fixme] = ACTIONS(1065), + [anon_sym_PIPE] = ACTIONS(1065), + [sym__whitespace1] = ACTIONS(1093), + [sym__newline] = ACTIONS(1095), + [aux_sym__text_token1] = ACTIONS(1097), + [sym__verbatim_begin] = ACTIONS(1099), + }, + [115] = { + [sym__element] = STATE(115), + [sym_emphasis] = STATE(215), + [sym_emphasis_begin] = STATE(1012), + [sym_strong] = STATE(215), + [sym_strong_begin] = STATE(128), + [sym__hard_line_break] = STATE(215), + [sym_hard_line_break] = STATE(215), + [sym__smart_punctuation] = STATE(215), + [sym_autolink] = STATE(215), + [sym_highlighted] = STATE(215), + [sym_insert] = STATE(215), + [sym_delete] = STATE(215), + [sym_superscript] = STATE(215), + [sym_subscript] = STATE(215), + [sym_footnote_reference] = STATE(215), + [sym__image] = STATE(215), + [sym_full_reference_image] = STATE(215), + [sym_collapsed_reference_image] = STATE(215), + [sym_inline_image] = STATE(215), + [sym__image_description] = STATE(696), + [sym__link] = STATE(215), + [sym_full_reference_link] = STATE(215), + [sym_collapsed_reference_link] = STATE(215), + [sym_inline_link] = STATE(215), + [sym_link_text] = STATE(705), + [sym__comment_with_spaces] = STATE(215), + [sym_span] = STATE(215), + [sym_raw_inline] = STATE(215), + [sym_math] = STATE(215), + [sym_verbatim] = STATE(215), + [sym__todo_highlights] = STATE(215), + [sym_todo] = STATE(215), + [sym_note] = STATE(215), + [sym__symbol_fallback] = STATE(215), + [aux_sym__text] = STATE(141), + [aux_sym__inline_repeat1] = STATE(115), + [anon_sym_LBRACE_] = ACTIONS(1313), + [anon_sym__] = ACTIONS(1316), + [anon_sym_LBRACE_STAR] = ACTIONS(1319), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_BSLASH] = ACTIONS(1325), + [sym_quotation_marks] = ACTIONS(1328), + [sym_ellipsis] = ACTIONS(1328), + [sym_em_dash] = ACTIONS(1328), + [sym_en_dash] = ACTIONS(1331), + [sym_backslash_escape] = ACTIONS(1331), + [anon_sym_LT] = ACTIONS(1334), + [anon_sym_LBRACE_EQ] = ACTIONS(1337), + [anon_sym_EQ_RBRACE] = ACTIONS(690), + [anon_sym_LBRACE_PLUS] = ACTIONS(1340), + [anon_sym_LBRACE_DASH] = ACTIONS(1343), + [sym_symbol] = ACTIONS(1328), + [anon_sym_LBRACE_CARET] = ACTIONS(1346), + [anon_sym_CARET] = ACTIONS(1346), + [anon_sym_LBRACE_TILDE] = ACTIONS(1349), + [anon_sym_TILDE] = ACTIONS(1349), + [anon_sym_LBRACK_CARET] = ACTIONS(1352), + [anon_sym_BANG_LBRACK] = ACTIONS(1355), + [anon_sym_LBRACK] = ACTIONS(1358), + [anon_sym_LBRACE2] = ACTIONS(1331), + [anon_sym_DOLLAR] = ACTIONS(1361), + [anon_sym_TODO] = ACTIONS(1364), + [anon_sym_WIP] = ACTIONS(1364), + [anon_sym_NOTE] = ACTIONS(1367), + [anon_sym_INFO] = ACTIONS(1367), + [anon_sym_XXX] = ACTIONS(1367), + [sym_fixme] = ACTIONS(1328), + [anon_sym_PIPE] = ACTIONS(1328), + [sym__whitespace1] = ACTIONS(1370), + [sym__newline] = ACTIONS(1373), + [aux_sym__text_token1] = ACTIONS(1376), + [sym__verbatim_begin] = ACTIONS(1379), + }, + [116] = { + [sym__element] = STATE(116), + [sym_emphasis] = STATE(204), + [sym_emphasis_begin] = STATE(1017), + [sym_strong] = STATE(204), + [sym_strong_begin] = STATE(114), + [sym__hard_line_break] = STATE(204), + [sym_hard_line_break] = STATE(204), + [sym__smart_punctuation] = STATE(204), + [sym_autolink] = STATE(204), + [sym_highlighted] = STATE(204), + [sym_insert] = STATE(204), + [sym_delete] = STATE(204), + [sym_superscript] = STATE(204), + [sym_subscript] = STATE(204), + [sym_footnote_reference] = STATE(204), + [sym__image] = STATE(204), + [sym_full_reference_image] = STATE(204), + [sym_collapsed_reference_image] = STATE(204), + [sym_inline_image] = STATE(204), + [sym__image_description] = STATE(714), + [sym__link] = STATE(204), + [sym_full_reference_link] = STATE(204), + [sym_collapsed_reference_link] = STATE(204), + [sym_inline_link] = STATE(204), + [sym_link_text] = STATE(715), + [sym__comment_with_spaces] = STATE(204), + [sym_span] = STATE(204), + [sym_raw_inline] = STATE(204), + [sym_math] = STATE(204), + [sym_verbatim] = STATE(204), + [sym__todo_highlights] = STATE(204), + [sym_todo] = STATE(204), + [sym_note] = STATE(204), + [sym__symbol_fallback] = STATE(204), + [aux_sym__text] = STATE(149), + [aux_sym__inline_repeat1] = STATE(116), + [anon_sym_LBRACE_] = ACTIONS(1382), + [anon_sym__] = ACTIONS(1385), + [anon_sym_LBRACE_STAR] = ACTIONS(1388), + [anon_sym_STAR] = ACTIONS(1391), + [anon_sym_BSLASH] = ACTIONS(1394), + [sym_quotation_marks] = ACTIONS(1397), + [sym_ellipsis] = ACTIONS(1397), + [sym_em_dash] = ACTIONS(1397), + [sym_en_dash] = ACTIONS(1400), + [sym_backslash_escape] = ACTIONS(1400), + [anon_sym_LT] = ACTIONS(1403), + [anon_sym_LBRACE_EQ] = ACTIONS(1406), + [anon_sym_LBRACE_PLUS] = ACTIONS(1409), + [anon_sym_LBRACE_DASH] = ACTIONS(1412), + [sym_symbol] = ACTIONS(1397), + [anon_sym_LBRACE_CARET] = ACTIONS(1415), + [anon_sym_CARET] = ACTIONS(1415), + [anon_sym_LBRACE_TILDE] = ACTIONS(1418), + [anon_sym_TILDE] = ACTIONS(1418), + [anon_sym_LBRACK_CARET] = ACTIONS(1421), + [anon_sym_RBRACK] = ACTIONS(690), + [anon_sym_BANG_LBRACK] = ACTIONS(1424), + [anon_sym_LBRACK] = ACTIONS(1427), + [anon_sym_LBRACE2] = ACTIONS(1400), + [anon_sym_DOLLAR] = ACTIONS(1430), + [anon_sym_TODO] = ACTIONS(1433), + [anon_sym_WIP] = ACTIONS(1433), + [anon_sym_NOTE] = ACTIONS(1436), + [anon_sym_INFO] = ACTIONS(1436), + [anon_sym_XXX] = ACTIONS(1436), + [sym_fixme] = ACTIONS(1397), + [anon_sym_PIPE] = ACTIONS(1397), + [sym__whitespace1] = ACTIONS(1439), + [sym__newline] = ACTIONS(1442), + [aux_sym__text_token1] = ACTIONS(1445), + [sym__verbatim_begin] = ACTIONS(1448), + }, + [117] = { + [sym__element] = STATE(119), [sym_emphasis] = STATE(182), - [sym_emphasis_begin] = STATE(898), + [sym_emphasis_begin] = STATE(1016), [sym_strong] = STATE(182), - [sym_strong_begin] = STATE(104), + [sym_strong_begin] = STATE(122), [sym__hard_line_break] = STATE(182), [sym_hard_line_break] = STATE(182), [sym__smart_punctuation] = STATE(182), @@ -10929,12 +17186,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_full_reference_image] = STATE(182), [sym_collapsed_reference_image] = STATE(182), [sym_inline_image] = STATE(182), - [sym__image_description] = STATE(610), + [sym__image_description] = STATE(692), [sym__link] = STATE(182), [sym_full_reference_link] = STATE(182), [sym_collapsed_reference_link] = STATE(182), [sym_inline_link] = STATE(182), - [sym_link_text] = STATE(608), + [sym_link_text] = STATE(689), [sym__comment_with_spaces] = STATE(182), [sym_span] = STATE(182), [sym_raw_inline] = STATE(182), @@ -10944,357 +17201,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(182), [sym_note] = STATE(182), [sym__symbol_fallback] = STATE(182), - [aux_sym__text] = STATE(144), - [aux_sym__inline_repeat1] = STATE(97), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_] = ACTIONS(49), - [anon_sym__] = ACTIONS(52), - [anon_sym_LBRACE_STAR] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(58), - [anon_sym_BSLASH] = ACTIONS(61), - [sym_quotation_marks] = ACTIONS(52), - [sym_ellipsis] = ACTIONS(52), - [sym_em_dash] = ACTIONS(52), - [sym_en_dash] = ACTIONS(64), - [sym_backslash_escape] = ACTIONS(64), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_LBRACE_EQ] = ACTIONS(70), - [anon_sym_LBRACE_PLUS] = ACTIONS(73), - [anon_sym_LBRACE_DASH] = ACTIONS(76), - [sym_symbol] = ACTIONS(52), - [anon_sym_LBRACE_CARET] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(81), - [anon_sym_LBRACE_TILDE] = ACTIONS(84), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_TILDE_RBRACE] = ACTIONS(79), - [anon_sym_LBRACK_CARET] = ACTIONS(87), - [anon_sym_BANG_LBRACK] = ACTIONS(92), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LBRACE2] = ACTIONS(64), - [anon_sym_DOLLAR] = ACTIONS(98), - [anon_sym_TODO] = ACTIONS(101), - [anon_sym_WIP] = ACTIONS(101), - [anon_sym_NOTE] = ACTIONS(104), - [anon_sym_INFO] = ACTIONS(104), - [anon_sym_XXX] = ACTIONS(104), - [sym_fixme] = ACTIONS(52), - [anon_sym_PIPE] = ACTIONS(52), - [sym__whitespace1] = ACTIONS(107), - [sym__newline] = ACTIONS(110), - [aux_sym__text_token1] = ACTIONS(113), - [sym__verbatim_begin] = ACTIONS(116), - }, - [44] = { - [sym__inline] = STATE(710), - [sym__element] = STATE(107), - [sym_emphasis] = STATE(187), - [sym_emphasis_begin] = STATE(893), - [sym_strong] = STATE(187), - [sym_strong_begin] = STATE(119), - [sym__hard_line_break] = STATE(187), - [sym_hard_line_break] = STATE(187), - [sym__smart_punctuation] = STATE(187), - [sym_autolink] = STATE(187), - [sym_highlighted] = STATE(187), - [sym_insert] = STATE(187), - [sym_delete] = STATE(187), - [sym_superscript] = STATE(187), - [sym_subscript] = STATE(187), - [sym_footnote_reference] = STATE(187), - [sym__image] = STATE(187), - [sym_full_reference_image] = STATE(187), - [sym_collapsed_reference_image] = STATE(187), - [sym_inline_image] = STATE(187), - [sym__image_description] = STATE(616), - [sym__link] = STATE(187), - [sym_full_reference_link] = STATE(187), - [sym_collapsed_reference_link] = STATE(187), - [sym_inline_link] = STATE(187), - [sym_link_text] = STATE(634), - [sym__comment_with_spaces] = STATE(187), - [sym_span] = STATE(187), - [sym_raw_inline] = STATE(187), - [sym_math] = STATE(187), - [sym_verbatim] = STATE(187), - [sym__todo_highlights] = STATE(187), - [sym_todo] = STATE(187), - [sym_note] = STATE(187), - [sym__symbol_fallback] = STATE(187), - [aux_sym__text] = STATE(131), - [aux_sym__inline_repeat1] = STATE(107), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_] = ACTIONS(265), - [anon_sym__] = ACTIONS(268), - [anon_sym_LBRACE_STAR] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(274), - [anon_sym_BSLASH] = ACTIONS(277), - [sym_quotation_marks] = ACTIONS(268), - [sym_ellipsis] = ACTIONS(268), - [sym_em_dash] = ACTIONS(268), - [sym_en_dash] = ACTIONS(280), - [sym_backslash_escape] = ACTIONS(280), - [anon_sym_LT] = ACTIONS(283), - [anon_sym_LBRACE_EQ] = ACTIONS(286), - [anon_sym_LBRACE_PLUS] = ACTIONS(289), - [anon_sym_LBRACE_DASH] = ACTIONS(292), - [sym_symbol] = ACTIONS(268), - [anon_sym_LBRACE_CARET] = ACTIONS(295), - [anon_sym_CARET] = ACTIONS(295), - [anon_sym_LBRACE_TILDE] = ACTIONS(298), - [anon_sym_TILDE] = ACTIONS(298), - [anon_sym_LBRACK_CARET] = ACTIONS(301), - [anon_sym_RBRACK] = ACTIONS(79), - [anon_sym_BANG_LBRACK] = ACTIONS(304), - [anon_sym_LBRACK] = ACTIONS(307), - [anon_sym_LBRACE2] = ACTIONS(280), - [anon_sym_DOLLAR] = ACTIONS(310), - [anon_sym_TODO] = ACTIONS(313), - [anon_sym_WIP] = ACTIONS(313), - [anon_sym_NOTE] = ACTIONS(316), - [anon_sym_INFO] = ACTIONS(316), - [anon_sym_XXX] = ACTIONS(316), - [sym_fixme] = ACTIONS(268), - [anon_sym_PIPE] = ACTIONS(268), - [sym__whitespace1] = ACTIONS(319), - [sym__newline] = ACTIONS(322), - [aux_sym__text_token1] = ACTIONS(325), - [sym__verbatim_begin] = ACTIONS(328), + [aux_sym__text] = STATE(153), + [aux_sym__inline_repeat1] = STATE(119), + [anon_sym_LBRACE_] = ACTIONS(1451), + [anon_sym__] = ACTIONS(1453), + [anon_sym_LBRACE_STAR] = ACTIONS(1455), + [anon_sym_STAR] = ACTIONS(1457), + [anon_sym_BSLASH] = ACTIONS(1459), + [sym_quotation_marks] = ACTIONS(1461), + [sym_ellipsis] = ACTIONS(1461), + [sym_em_dash] = ACTIONS(1461), + [sym_en_dash] = ACTIONS(1463), + [sym_backslash_escape] = ACTIONS(1463), + [anon_sym_LT] = ACTIONS(1465), + [anon_sym_LBRACE_EQ] = ACTIONS(1467), + [anon_sym_LBRACE_PLUS] = ACTIONS(1469), + [anon_sym_LBRACE_DASH] = ACTIONS(1471), + [sym_symbol] = ACTIONS(1461), + [anon_sym_LBRACE_CARET] = ACTIONS(1473), + [anon_sym_CARET] = ACTIONS(1473), + [anon_sym_LBRACE_TILDE] = ACTIONS(1475), + [anon_sym_TILDE] = ACTIONS(588), + [anon_sym_TILDE_RBRACE] = ACTIONS(590), + [anon_sym_LBRACK_CARET] = ACTIONS(1477), + [anon_sym_BANG_LBRACK] = ACTIONS(1479), + [anon_sym_LBRACK] = ACTIONS(1481), + [anon_sym_LBRACE2] = ACTIONS(1463), + [anon_sym_DOLLAR] = ACTIONS(1483), + [anon_sym_TODO] = ACTIONS(1485), + [anon_sym_WIP] = ACTIONS(1485), + [anon_sym_NOTE] = ACTIONS(1487), + [anon_sym_INFO] = ACTIONS(1487), + [anon_sym_XXX] = ACTIONS(1487), + [sym_fixme] = ACTIONS(1461), + [anon_sym_PIPE] = ACTIONS(1461), + [sym__whitespace1] = ACTIONS(1489), + [sym__newline] = ACTIONS(1491), + [aux_sym__text_token1] = ACTIONS(1493), + [sym__verbatim_begin] = ACTIONS(1495), }, - [45] = { - [sym__inline] = STATE(711), - [sym__element] = STATE(78), - [sym_emphasis] = STATE(167), - [sym_emphasis_begin] = STATE(894), - [sym_strong] = STATE(167), - [sym_strong_begin] = STATE(117), - [sym__hard_line_break] = STATE(167), - [sym_hard_line_break] = STATE(167), - [sym__smart_punctuation] = STATE(167), - [sym_autolink] = STATE(167), - [sym_highlighted] = STATE(167), - [sym_insert] = STATE(167), - [sym_delete] = STATE(167), - [sym_superscript] = STATE(167), - [sym_subscript] = STATE(167), - [sym_footnote_reference] = STATE(167), - [sym__image] = STATE(167), - [sym_full_reference_image] = STATE(167), - [sym_collapsed_reference_image] = STATE(167), - [sym_inline_image] = STATE(167), - [sym__image_description] = STATE(613), - [sym__link] = STATE(167), - [sym_full_reference_link] = STATE(167), - [sym_collapsed_reference_link] = STATE(167), - [sym_inline_link] = STATE(167), - [sym_link_text] = STATE(614), - [sym__comment_with_spaces] = STATE(167), - [sym_span] = STATE(167), - [sym_raw_inline] = STATE(167), - [sym_math] = STATE(167), - [sym_verbatim] = STATE(167), - [sym__todo_highlights] = STATE(167), - [sym_todo] = STATE(167), - [sym_note] = STATE(167), - [sym__symbol_fallback] = STATE(167), - [aux_sym__text] = STATE(130), - [aux_sym__inline_repeat1] = STATE(78), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_] = ACTIONS(199), - [anon_sym__] = ACTIONS(202), - [anon_sym_LBRACE_STAR] = ACTIONS(205), - [anon_sym_STAR] = ACTIONS(208), - [anon_sym_BSLASH] = ACTIONS(211), - [sym_quotation_marks] = ACTIONS(202), - [sym_ellipsis] = ACTIONS(202), - [sym_em_dash] = ACTIONS(202), - [sym_en_dash] = ACTIONS(214), - [sym_backslash_escape] = ACTIONS(214), - [anon_sym_LT] = ACTIONS(217), - [anon_sym_LBRACE_EQ] = ACTIONS(220), - [anon_sym_LBRACE_PLUS] = ACTIONS(223), - [anon_sym_LBRACE_DASH] = ACTIONS(226), - [sym_symbol] = ACTIONS(202), - [anon_sym_LBRACE_CARET] = ACTIONS(229), - [anon_sym_CARET] = ACTIONS(229), - [anon_sym_LBRACE_TILDE] = ACTIONS(232), - [anon_sym_TILDE] = ACTIONS(232), - [anon_sym_LBRACK_CARET] = ACTIONS(235), - [anon_sym_RBRACK] = ACTIONS(79), - [anon_sym_BANG_LBRACK] = ACTIONS(238), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_LBRACE2] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(244), - [anon_sym_TODO] = ACTIONS(247), - [anon_sym_WIP] = ACTIONS(247), - [anon_sym_NOTE] = ACTIONS(250), - [anon_sym_INFO] = ACTIONS(250), - [anon_sym_XXX] = ACTIONS(250), - [sym_fixme] = ACTIONS(202), - [anon_sym_PIPE] = ACTIONS(202), - [sym__whitespace1] = ACTIONS(253), - [sym__newline] = ACTIONS(256), - [aux_sym__text_token1] = ACTIONS(259), - [sym__verbatim_begin] = ACTIONS(262), - }, - [46] = { - [sym__inline] = STATE(712), - [sym__element] = STATE(73), - [sym_emphasis] = STATE(180), - [sym_emphasis_begin] = STATE(895), - [sym_strong] = STATE(180), + [118] = { + [sym__element] = STATE(116), + [sym_emphasis] = STATE(204), + [sym_emphasis_begin] = STATE(1017), + [sym_strong] = STATE(204), [sym_strong_begin] = STATE(114), - [sym__hard_line_break] = STATE(180), - [sym_hard_line_break] = STATE(180), - [sym__smart_punctuation] = STATE(180), - [sym_autolink] = STATE(180), - [sym_highlighted] = STATE(180), - [sym_insert] = STATE(180), - [sym_delete] = STATE(180), - [sym_superscript] = STATE(180), - [sym_subscript] = STATE(180), - [sym_footnote_reference] = STATE(180), - [sym__image] = STATE(180), - [sym_full_reference_image] = STATE(180), - [sym_collapsed_reference_image] = STATE(180), - [sym_inline_image] = STATE(180), - [sym__image_description] = STATE(632), - [sym__link] = STATE(180), - [sym_full_reference_link] = STATE(180), - [sym_collapsed_reference_link] = STATE(180), - [sym_inline_link] = STATE(180), - [sym_link_text] = STATE(633), - [sym__comment_with_spaces] = STATE(180), - [sym_span] = STATE(180), - [sym_raw_inline] = STATE(180), - [sym_math] = STATE(180), - [sym_verbatim] = STATE(180), - [sym__todo_highlights] = STATE(180), - [sym_todo] = STATE(180), - [sym_note] = STATE(180), - [sym__symbol_fallback] = STATE(180), - [aux_sym__text] = STATE(132), - [aux_sym__inline_repeat1] = STATE(73), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_] = ACTIONS(133), - [anon_sym__] = ACTIONS(136), - [anon_sym_LBRACE_STAR] = ACTIONS(139), - [anon_sym_STAR] = ACTIONS(142), - [anon_sym_BSLASH] = ACTIONS(145), - [sym_quotation_marks] = ACTIONS(136), - [sym_ellipsis] = ACTIONS(136), - [sym_em_dash] = ACTIONS(136), - [sym_en_dash] = ACTIONS(148), - [sym_backslash_escape] = ACTIONS(148), - [anon_sym_LT] = ACTIONS(151), - [anon_sym_LBRACE_EQ] = ACTIONS(154), - [anon_sym_LBRACE_PLUS] = ACTIONS(157), - [anon_sym_LBRACE_DASH] = ACTIONS(160), - [sym_symbol] = ACTIONS(136), - [anon_sym_LBRACE_CARET] = ACTIONS(163), - [anon_sym_CARET] = ACTIONS(163), - [anon_sym_LBRACE_TILDE] = ACTIONS(166), - [anon_sym_TILDE] = ACTIONS(166), - [anon_sym_LBRACK_CARET] = ACTIONS(169), - [anon_sym_RBRACK] = ACTIONS(79), - [anon_sym_BANG_LBRACK] = ACTIONS(172), - [anon_sym_LBRACK] = ACTIONS(175), - [anon_sym_LBRACE2] = ACTIONS(148), - [anon_sym_DOLLAR] = ACTIONS(178), - [anon_sym_TODO] = ACTIONS(181), - [anon_sym_WIP] = ACTIONS(181), - [anon_sym_NOTE] = ACTIONS(184), - [anon_sym_INFO] = ACTIONS(184), - [anon_sym_XXX] = ACTIONS(184), - [sym_fixme] = ACTIONS(136), - [anon_sym_PIPE] = ACTIONS(136), - [sym__whitespace1] = ACTIONS(187), - [sym__newline] = ACTIONS(190), - [aux_sym__text_token1] = ACTIONS(193), - [sym__verbatim_begin] = ACTIONS(196), - }, - [47] = { - [sym__inline] = STATE(694), - [sym__element] = STATE(72), - [sym_emphasis] = STATE(163), - [sym_emphasis_begin] = STATE(896), - [sym_strong] = STATE(163), - [sym_strong_begin] = STATE(110), - [sym__hard_line_break] = STATE(163), - [sym_hard_line_break] = STATE(163), - [sym__smart_punctuation] = STATE(163), - [sym_autolink] = STATE(163), - [sym_highlighted] = STATE(163), - [sym_insert] = STATE(163), - [sym_delete] = STATE(163), - [sym_superscript] = STATE(163), - [sym_subscript] = STATE(163), - [sym_footnote_reference] = STATE(163), - [sym__image] = STATE(163), - [sym_full_reference_image] = STATE(163), - [sym_collapsed_reference_image] = STATE(163), - [sym_inline_image] = STATE(163), - [sym__image_description] = STATE(622), - [sym__link] = STATE(163), - [sym_full_reference_link] = STATE(163), - [sym_collapsed_reference_link] = STATE(163), - [sym_inline_link] = STATE(163), - [sym_link_text] = STATE(605), - [sym__comment_with_spaces] = STATE(163), - [sym_span] = STATE(163), - [sym_raw_inline] = STATE(163), - [sym_math] = STATE(163), - [sym_verbatim] = STATE(163), - [sym__todo_highlights] = STATE(163), - [sym_todo] = STATE(163), - [sym_note] = STATE(163), - [sym__symbol_fallback] = STATE(163), - [aux_sym__text] = STATE(146), - [aux_sym__inline_repeat1] = STATE(72), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_] = ACTIONS(331), - [anon_sym__] = ACTIONS(334), - [anon_sym_LBRACE_STAR] = ACTIONS(337), - [anon_sym_STAR] = ACTIONS(340), - [anon_sym_BSLASH] = ACTIONS(343), - [sym_quotation_marks] = ACTIONS(334), - [sym_ellipsis] = ACTIONS(334), - [sym_em_dash] = ACTIONS(334), - [sym_en_dash] = ACTIONS(346), - [sym_backslash_escape] = ACTIONS(346), - [anon_sym_LT] = ACTIONS(349), - [anon_sym_LBRACE_EQ] = ACTIONS(352), - [anon_sym_LBRACE_PLUS] = ACTIONS(355), - [anon_sym_LBRACE_DASH] = ACTIONS(358), - [sym_symbol] = ACTIONS(334), - [anon_sym_LBRACE_CARET] = ACTIONS(361), - [anon_sym_CARET] = ACTIONS(361), - [anon_sym_LBRACE_TILDE] = ACTIONS(364), - [anon_sym_TILDE] = ACTIONS(364), - [anon_sym_LBRACK_CARET] = ACTIONS(367), - [anon_sym_RBRACK] = ACTIONS(79), - [anon_sym_BANG_LBRACK] = ACTIONS(370), - [anon_sym_LBRACK] = ACTIONS(373), - [anon_sym_LBRACE2] = ACTIONS(346), - [anon_sym_DOLLAR] = ACTIONS(376), - [anon_sym_TODO] = ACTIONS(379), - [anon_sym_WIP] = ACTIONS(379), - [anon_sym_NOTE] = ACTIONS(382), - [anon_sym_INFO] = ACTIONS(382), - [anon_sym_XXX] = ACTIONS(382), - [sym_fixme] = ACTIONS(334), - [anon_sym_PIPE] = ACTIONS(334), - [sym__whitespace1] = ACTIONS(385), - [sym__newline] = ACTIONS(388), - [aux_sym__text_token1] = ACTIONS(391), - [sym__verbatim_begin] = ACTIONS(394), + [sym__hard_line_break] = STATE(204), + [sym_hard_line_break] = STATE(204), + [sym__smart_punctuation] = STATE(204), + [sym_autolink] = STATE(204), + [sym_highlighted] = STATE(204), + [sym_insert] = STATE(204), + [sym_delete] = STATE(204), + [sym_superscript] = STATE(204), + [sym_subscript] = STATE(204), + [sym_footnote_reference] = STATE(204), + [sym__image] = STATE(204), + [sym_full_reference_image] = STATE(204), + [sym_collapsed_reference_image] = STATE(204), + [sym_inline_image] = STATE(204), + [sym__image_description] = STATE(714), + [sym__link] = STATE(204), + [sym_full_reference_link] = STATE(204), + [sym_collapsed_reference_link] = STATE(204), + [sym_inline_link] = STATE(204), + [sym_link_text] = STATE(715), + [sym__comment_with_spaces] = STATE(204), + [sym_span] = STATE(204), + [sym_raw_inline] = STATE(204), + [sym_math] = STATE(204), + [sym_verbatim] = STATE(204), + [sym__todo_highlights] = STATE(204), + [sym_todo] = STATE(204), + [sym_note] = STATE(204), + [sym__symbol_fallback] = STATE(204), + [aux_sym__text] = STATE(149), + [aux_sym__inline_repeat1] = STATE(116), + [anon_sym_LBRACE_] = ACTIONS(1497), + [anon_sym__] = ACTIONS(1499), + [anon_sym_LBRACE_STAR] = ACTIONS(1501), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_BSLASH] = ACTIONS(1505), + [sym_quotation_marks] = ACTIONS(1507), + [sym_ellipsis] = ACTIONS(1507), + [sym_em_dash] = ACTIONS(1507), + [sym_en_dash] = ACTIONS(1509), + [sym_backslash_escape] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(1511), + [anon_sym_LBRACE_EQ] = ACTIONS(1513), + [anon_sym_LBRACE_PLUS] = ACTIONS(1515), + [anon_sym_LBRACE_DASH] = ACTIONS(1517), + [sym_symbol] = ACTIONS(1507), + [anon_sym_LBRACE_CARET] = ACTIONS(1519), + [anon_sym_CARET] = ACTIONS(1519), + [anon_sym_LBRACE_TILDE] = ACTIONS(1521), + [anon_sym_TILDE] = ACTIONS(1521), + [anon_sym_LBRACK_CARET] = ACTIONS(1523), + [anon_sym_RBRACK] = ACTIONS(590), + [anon_sym_BANG_LBRACK] = ACTIONS(1525), + [anon_sym_LBRACK] = ACTIONS(1527), + [anon_sym_LBRACE2] = ACTIONS(1509), + [anon_sym_DOLLAR] = ACTIONS(1529), + [anon_sym_TODO] = ACTIONS(1531), + [anon_sym_WIP] = ACTIONS(1531), + [anon_sym_NOTE] = ACTIONS(1533), + [anon_sym_INFO] = ACTIONS(1533), + [anon_sym_XXX] = ACTIONS(1533), + [sym_fixme] = ACTIONS(1507), + [anon_sym_PIPE] = ACTIONS(1507), + [sym__whitespace1] = ACTIONS(1535), + [sym__newline] = ACTIONS(1537), + [aux_sym__text_token1] = ACTIONS(1539), + [sym__verbatim_begin] = ACTIONS(1541), }, - [48] = { - [sym__inline] = STATE(877), - [sym__element] = STATE(97), + [119] = { + [sym__element] = STATE(119), [sym_emphasis] = STATE(182), - [sym_emphasis_begin] = STATE(898), + [sym_emphasis_begin] = STATE(1016), [sym_strong] = STATE(182), - [sym_strong_begin] = STATE(104), + [sym_strong_begin] = STATE(122), [sym__hard_line_break] = STATE(182), [sym_hard_line_break] = STATE(182), [sym__smart_punctuation] = STATE(182), @@ -11309,12 +17334,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_full_reference_image] = STATE(182), [sym_collapsed_reference_image] = STATE(182), [sym_inline_image] = STATE(182), - [sym__image_description] = STATE(610), + [sym__image_description] = STATE(692), [sym__link] = STATE(182), [sym_full_reference_link] = STATE(182), [sym_collapsed_reference_link] = STATE(182), [sym_inline_link] = STATE(182), - [sym_link_text] = STATE(608), + [sym_link_text] = STATE(689), [sym__comment_with_spaces] = STATE(182), [sym_span] = STATE(182), [sym_raw_inline] = STATE(182), @@ -11324,5508 +17349,3713 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(182), [sym_note] = STATE(182), [sym__symbol_fallback] = STATE(182), - [aux_sym__text] = STATE(144), - [aux_sym__inline_repeat1] = STATE(97), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_] = ACTIONS(49), - [anon_sym__] = ACTIONS(52), - [anon_sym_LBRACE_STAR] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(58), - [anon_sym_BSLASH] = ACTIONS(61), - [sym_quotation_marks] = ACTIONS(52), - [sym_ellipsis] = ACTIONS(52), - [sym_em_dash] = ACTIONS(52), - [sym_en_dash] = ACTIONS(64), - [sym_backslash_escape] = ACTIONS(64), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_LBRACE_EQ] = ACTIONS(70), - [anon_sym_LBRACE_PLUS] = ACTIONS(73), - [anon_sym_LBRACE_DASH] = ACTIONS(76), - [sym_symbol] = ACTIONS(52), - [anon_sym_LBRACE_CARET] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(81), - [anon_sym_LBRACE_TILDE] = ACTIONS(84), - [anon_sym_TILDE] = ACTIONS(84), - [anon_sym_LBRACK_CARET] = ACTIONS(87), - [anon_sym_BANG_LBRACK] = ACTIONS(92), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_RBRACK2] = ACTIONS(79), - [anon_sym_LBRACE2] = ACTIONS(64), - [anon_sym_DOLLAR] = ACTIONS(98), - [anon_sym_TODO] = ACTIONS(101), - [anon_sym_WIP] = ACTIONS(101), - [anon_sym_NOTE] = ACTIONS(104), - [anon_sym_INFO] = ACTIONS(104), - [anon_sym_XXX] = ACTIONS(104), - [sym_fixme] = ACTIONS(52), - [anon_sym_PIPE] = ACTIONS(52), - [sym__whitespace1] = ACTIONS(107), - [sym__newline] = ACTIONS(110), - [aux_sym__text_token1] = ACTIONS(113), - [sym__verbatim_begin] = ACTIONS(116), + [aux_sym__text] = STATE(153), + [aux_sym__inline_repeat1] = STATE(119), + [anon_sym_LBRACE_] = ACTIONS(1543), + [anon_sym__] = ACTIONS(1546), + [anon_sym_LBRACE_STAR] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1552), + [anon_sym_BSLASH] = ACTIONS(1555), + [sym_quotation_marks] = ACTIONS(1558), + [sym_ellipsis] = ACTIONS(1558), + [sym_em_dash] = ACTIONS(1558), + [sym_en_dash] = ACTIONS(1561), + [sym_backslash_escape] = ACTIONS(1561), + [anon_sym_LT] = ACTIONS(1564), + [anon_sym_LBRACE_EQ] = ACTIONS(1567), + [anon_sym_LBRACE_PLUS] = ACTIONS(1570), + [anon_sym_LBRACE_DASH] = ACTIONS(1573), + [sym_symbol] = ACTIONS(1558), + [anon_sym_LBRACE_CARET] = ACTIONS(1576), + [anon_sym_CARET] = ACTIONS(1576), + [anon_sym_LBRACE_TILDE] = ACTIONS(1579), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_TILDE_RBRACE] = ACTIONS(690), + [anon_sym_LBRACK_CARET] = ACTIONS(1585), + [anon_sym_BANG_LBRACK] = ACTIONS(1588), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_LBRACE2] = ACTIONS(1561), + [anon_sym_DOLLAR] = ACTIONS(1594), + [anon_sym_TODO] = ACTIONS(1597), + [anon_sym_WIP] = ACTIONS(1597), + [anon_sym_NOTE] = ACTIONS(1600), + [anon_sym_INFO] = ACTIONS(1600), + [anon_sym_XXX] = ACTIONS(1600), + [sym_fixme] = ACTIONS(1558), + [anon_sym_PIPE] = ACTIONS(1558), + [sym__whitespace1] = ACTIONS(1603), + [sym__newline] = ACTIONS(1606), + [aux_sym__text_token1] = ACTIONS(1609), + [sym__verbatim_begin] = ACTIONS(1612), }, - [49] = { - [sym__inline] = STATE(696), - [sym__element] = STATE(113), - [sym_emphasis] = STATE(175), - [sym_emphasis_begin] = STATE(897), - [sym_strong] = STATE(175), - [sym_strong_begin] = STATE(108), - [sym__hard_line_break] = STATE(175), - [sym_hard_line_break] = STATE(175), - [sym__smart_punctuation] = STATE(175), - [sym_autolink] = STATE(175), - [sym_highlighted] = STATE(175), - [sym_insert] = STATE(175), - [sym_delete] = STATE(175), - [sym_superscript] = STATE(175), - [sym_subscript] = STATE(175), - [sym_footnote_reference] = STATE(175), - [sym__image] = STATE(175), - [sym_full_reference_image] = STATE(175), - [sym_collapsed_reference_image] = STATE(175), - [sym_inline_image] = STATE(175), - [sym__image_description] = STATE(626), - [sym__link] = STATE(175), - [sym_full_reference_link] = STATE(175), - [sym_collapsed_reference_link] = STATE(175), - [sym_inline_link] = STATE(175), - [sym_link_text] = STATE(624), - [sym__comment_with_spaces] = STATE(175), - [sym_span] = STATE(175), - [sym_raw_inline] = STATE(175), - [sym_math] = STATE(175), - [sym_verbatim] = STATE(175), - [sym__todo_highlights] = STATE(175), - [sym_todo] = STATE(175), - [sym_note] = STATE(175), - [sym__symbol_fallback] = STATE(175), - [aux_sym__text] = STATE(125), - [aux_sym__inline_repeat1] = STATE(113), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_] = ACTIONS(397), - [anon_sym__] = ACTIONS(400), - [anon_sym_LBRACE_STAR] = ACTIONS(403), - [anon_sym_STAR] = ACTIONS(406), - [anon_sym_BSLASH] = ACTIONS(409), - [sym_quotation_marks] = ACTIONS(400), - [sym_ellipsis] = ACTIONS(400), - [sym_em_dash] = ACTIONS(400), - [sym_en_dash] = ACTIONS(412), - [sym_backslash_escape] = ACTIONS(412), - [anon_sym_LT] = ACTIONS(415), - [anon_sym_LBRACE_EQ] = ACTIONS(418), - [anon_sym_LBRACE_PLUS] = ACTIONS(421), - [anon_sym_LBRACE_DASH] = ACTIONS(424), - [sym_symbol] = ACTIONS(400), - [anon_sym_LBRACE_CARET] = ACTIONS(427), - [anon_sym_CARET] = ACTIONS(427), - [anon_sym_LBRACE_TILDE] = ACTIONS(430), - [anon_sym_TILDE] = ACTIONS(430), - [anon_sym_LBRACK_CARET] = ACTIONS(433), - [anon_sym_RBRACK] = ACTIONS(79), - [anon_sym_BANG_LBRACK] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(439), - [anon_sym_LBRACE2] = ACTIONS(412), - [anon_sym_DOLLAR] = ACTIONS(442), - [anon_sym_TODO] = ACTIONS(445), - [anon_sym_WIP] = ACTIONS(445), - [anon_sym_NOTE] = ACTIONS(448), - [anon_sym_INFO] = ACTIONS(448), - [anon_sym_XXX] = ACTIONS(448), - [sym_fixme] = ACTIONS(400), - [anon_sym_PIPE] = ACTIONS(400), - [sym__whitespace1] = ACTIONS(451), - [sym__newline] = ACTIONS(454), - [aux_sym__text_token1] = ACTIONS(457), - [sym__verbatim_begin] = ACTIONS(460), - }, - [50] = { - [sym__inline] = STATE(819), - [sym__element] = STATE(78), - [sym_emphasis] = STATE(167), - [sym_emphasis_begin] = STATE(894), - [sym_strong] = STATE(167), - [sym_strong_begin] = STATE(117), - [sym__hard_line_break] = STATE(167), - [sym_hard_line_break] = STATE(167), - [sym__smart_punctuation] = STATE(167), - [sym_autolink] = STATE(167), - [sym_highlighted] = STATE(167), - [sym_insert] = STATE(167), - [sym_delete] = STATE(167), - [sym_superscript] = STATE(167), - [sym_subscript] = STATE(167), - [sym_footnote_reference] = STATE(167), - [sym__image] = STATE(167), - [sym_full_reference_image] = STATE(167), - [sym_collapsed_reference_image] = STATE(167), - [sym_inline_image] = STATE(167), - [sym__image_description] = STATE(613), - [sym__link] = STATE(167), - [sym_full_reference_link] = STATE(167), - [sym_collapsed_reference_link] = STATE(167), - [sym_inline_link] = STATE(167), - [sym_link_text] = STATE(614), - [sym__comment_with_spaces] = STATE(167), - [sym_span] = STATE(167), - [sym_raw_inline] = STATE(167), - [sym_math] = STATE(167), - [sym_verbatim] = STATE(167), - [sym__todo_highlights] = STATE(167), - [sym_todo] = STATE(167), - [sym_note] = STATE(167), - [sym__symbol_fallback] = STATE(167), - [aux_sym__text] = STATE(130), - [aux_sym__inline_repeat1] = STATE(78), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_] = ACTIONS(199), - [anon_sym__] = ACTIONS(202), - [anon_sym_LBRACE_STAR] = ACTIONS(205), - [anon_sym_STAR] = ACTIONS(208), - [anon_sym_BSLASH] = ACTIONS(211), - [sym_quotation_marks] = ACTIONS(202), - [sym_ellipsis] = ACTIONS(202), - [sym_em_dash] = ACTIONS(202), - [sym_en_dash] = ACTIONS(214), - [sym_backslash_escape] = ACTIONS(214), - [anon_sym_LT] = ACTIONS(217), - [anon_sym_LBRACE_EQ] = ACTIONS(220), - [anon_sym_LBRACE_PLUS] = ACTIONS(223), - [anon_sym_LBRACE_DASH] = ACTIONS(226), - [anon_sym_DASH_RBRACE] = ACTIONS(79), - [sym_symbol] = ACTIONS(202), - [anon_sym_LBRACE_CARET] = ACTIONS(229), - [anon_sym_CARET] = ACTIONS(229), - [anon_sym_LBRACE_TILDE] = ACTIONS(232), - [anon_sym_TILDE] = ACTIONS(232), - [anon_sym_LBRACK_CARET] = ACTIONS(235), - [anon_sym_BANG_LBRACK] = ACTIONS(238), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_LBRACE2] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(244), - [anon_sym_TODO] = ACTIONS(247), - [anon_sym_WIP] = ACTIONS(247), - [anon_sym_NOTE] = ACTIONS(250), - [anon_sym_INFO] = ACTIONS(250), - [anon_sym_XXX] = ACTIONS(250), - [sym_fixme] = ACTIONS(202), - [anon_sym_PIPE] = ACTIONS(202), - [sym__whitespace1] = ACTIONS(253), - [sym__newline] = ACTIONS(256), - [aux_sym__text_token1] = ACTIONS(259), - [sym__verbatim_begin] = ACTIONS(262), + [120] = { + [sym__inline_without_trailing_space] = STATE(738), + [sym__element] = STATE(581), + [sym_emphasis] = STATE(179), + [sym_emphasis_begin] = STATE(1019), + [sym_strong] = STATE(179), + [sym_strong_begin] = STATE(110), + [sym__hard_line_break] = STATE(179), + [sym_hard_line_break] = STATE(179), + [sym__smart_punctuation] = STATE(179), + [sym_autolink] = STATE(179), + [sym_highlighted] = STATE(179), + [sym_insert] = STATE(179), + [sym_delete] = STATE(179), + [sym_superscript] = STATE(179), + [sym_subscript] = STATE(179), + [sym_footnote_reference] = STATE(179), + [sym__image] = STATE(179), + [sym_full_reference_image] = STATE(179), + [sym_collapsed_reference_image] = STATE(179), + [sym_inline_image] = STATE(179), + [sym__image_description] = STATE(720), + [sym__link] = STATE(179), + [sym_full_reference_link] = STATE(179), + [sym_collapsed_reference_link] = STATE(179), + [sym_inline_link] = STATE(179), + [sym_link_text] = STATE(697), + [sym__comment_with_spaces] = STATE(179), + [sym_span] = STATE(179), + [sym_raw_inline] = STATE(179), + [sym_math] = STATE(179), + [sym_verbatim] = STATE(179), + [sym__todo_highlights] = STATE(179), + [sym_todo] = STATE(179), + [sym_note] = STATE(179), + [sym__symbol_fallback] = STATE(179), + [aux_sym__text] = STATE(163), + [aux_sym__inline_repeat1] = STATE(130), + [anon_sym_LBRACE_] = ACTIONS(915), + [anon_sym__] = ACTIONS(917), + [anon_sym_LBRACE_STAR] = ACTIONS(919), + [anon_sym_STAR] = ACTIONS(921), + [anon_sym_BSLASH] = ACTIONS(923), + [sym_quotation_marks] = ACTIONS(925), + [sym_ellipsis] = ACTIONS(925), + [sym_em_dash] = ACTIONS(925), + [sym_en_dash] = ACTIONS(927), + [sym_backslash_escape] = ACTIONS(927), + [anon_sym_LT] = ACTIONS(929), + [anon_sym_LBRACE_EQ] = ACTIONS(931), + [anon_sym_LBRACE_PLUS] = ACTIONS(933), + [anon_sym_LBRACE_DASH] = ACTIONS(935), + [sym_symbol] = ACTIONS(925), + [anon_sym_LBRACE_CARET] = ACTIONS(937), + [anon_sym_CARET] = ACTIONS(937), + [anon_sym_LBRACE_TILDE] = ACTIONS(939), + [anon_sym_TILDE] = ACTIONS(939), + [anon_sym_LBRACK_CARET] = ACTIONS(941), + [anon_sym_BANG_LBRACK] = ACTIONS(943), + [anon_sym_LBRACK] = ACTIONS(945), + [anon_sym_LBRACE2] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(947), + [anon_sym_TODO] = ACTIONS(949), + [anon_sym_WIP] = ACTIONS(949), + [anon_sym_NOTE] = ACTIONS(951), + [anon_sym_INFO] = ACTIONS(951), + [anon_sym_XXX] = ACTIONS(951), + [sym_fixme] = ACTIONS(925), + [anon_sym_PIPE] = ACTIONS(925), + [sym__whitespace1] = ACTIONS(953), + [sym__newline] = ACTIONS(955), + [aux_sym__text_token1] = ACTIONS(957), + [sym__verbatim_begin] = ACTIONS(959), }, - [51] = { + [121] = { + [sym__inline] = STATE(744), + [sym__element] = STATE(126), + [sym_emphasis] = STATE(189), + [sym_emphasis_begin] = STATE(1018), + [sym_strong] = STATE(189), + [sym_strong_begin] = STATE(112), + [sym__hard_line_break] = STATE(189), + [sym_hard_line_break] = STATE(189), + [sym__smart_punctuation] = STATE(189), + [sym_autolink] = STATE(189), + [sym_highlighted] = STATE(189), + [sym_insert] = STATE(189), + [sym_delete] = STATE(189), + [sym_superscript] = STATE(189), + [sym_subscript] = STATE(189), + [sym_footnote_reference] = STATE(189), + [sym__image] = STATE(189), + [sym_full_reference_image] = STATE(189), + [sym_collapsed_reference_image] = STATE(189), + [sym_inline_image] = STATE(189), + [sym__image_description] = STATE(707), + [sym__link] = STATE(189), + [sym_full_reference_link] = STATE(189), + [sym_collapsed_reference_link] = STATE(189), + [sym_inline_link] = STATE(189), + [sym_link_text] = STATE(698), + [sym__comment_with_spaces] = STATE(189), + [sym_span] = STATE(189), + [sym_raw_inline] = STATE(189), + [sym_math] = STATE(189), + [sym_verbatim] = STATE(189), + [sym__todo_highlights] = STATE(189), + [sym_todo] = STATE(189), + [sym_note] = STATE(189), + [sym__symbol_fallback] = STATE(189), + [aux_sym__text] = STATE(161), + [aux_sym__inline_repeat1] = STATE(126), + [anon_sym_LBRACE_] = ACTIONS(1055), + [anon_sym__] = ACTIONS(1057), + [anon_sym_LBRACE_STAR] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_BSLASH] = ACTIONS(1063), + [sym_quotation_marks] = ACTIONS(1065), + [sym_ellipsis] = ACTIONS(1065), + [sym_em_dash] = ACTIONS(1065), + [sym_en_dash] = ACTIONS(1067), + [sym_backslash_escape] = ACTIONS(1067), + [anon_sym_LT] = ACTIONS(1069), + [anon_sym_LBRACE_EQ] = ACTIONS(1071), + [anon_sym_LBRACE_PLUS] = ACTIONS(1073), + [anon_sym_LBRACE_DASH] = ACTIONS(1075), + [sym_symbol] = ACTIONS(1065), + [anon_sym_LBRACE_CARET] = ACTIONS(1077), + [anon_sym_CARET] = ACTIONS(1077), + [anon_sym_LBRACE_TILDE] = ACTIONS(1079), + [anon_sym_TILDE] = ACTIONS(1079), + [anon_sym_LBRACK_CARET] = ACTIONS(1081), + [anon_sym_BANG_LBRACK] = ACTIONS(1083), + [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_LBRACE2] = ACTIONS(1067), + [anon_sym_DOLLAR] = ACTIONS(1087), + [anon_sym_TODO] = ACTIONS(1089), + [anon_sym_WIP] = ACTIONS(1089), + [anon_sym_NOTE] = ACTIONS(1091), + [anon_sym_INFO] = ACTIONS(1091), + [anon_sym_XXX] = ACTIONS(1091), + [sym_fixme] = ACTIONS(1065), + [anon_sym_PIPE] = ACTIONS(1065), + [sym__whitespace1] = ACTIONS(1093), + [sym__newline] = ACTIONS(1095), + [aux_sym__text_token1] = ACTIONS(1097), + [sym__verbatim_begin] = ACTIONS(1099), + }, + [122] = { + [sym__inline] = STATE(742), + [sym__element] = STATE(126), + [sym_emphasis] = STATE(189), + [sym_emphasis_begin] = STATE(1018), + [sym_strong] = STATE(189), + [sym_strong_begin] = STATE(112), + [sym__hard_line_break] = STATE(189), + [sym_hard_line_break] = STATE(189), + [sym__smart_punctuation] = STATE(189), + [sym_autolink] = STATE(189), + [sym_highlighted] = STATE(189), + [sym_insert] = STATE(189), + [sym_delete] = STATE(189), + [sym_superscript] = STATE(189), + [sym_subscript] = STATE(189), + [sym_footnote_reference] = STATE(189), + [sym__image] = STATE(189), + [sym_full_reference_image] = STATE(189), + [sym_collapsed_reference_image] = STATE(189), + [sym_inline_image] = STATE(189), + [sym__image_description] = STATE(707), + [sym__link] = STATE(189), + [sym_full_reference_link] = STATE(189), + [sym_collapsed_reference_link] = STATE(189), + [sym_inline_link] = STATE(189), + [sym_link_text] = STATE(698), + [sym__comment_with_spaces] = STATE(189), + [sym_span] = STATE(189), + [sym_raw_inline] = STATE(189), + [sym_math] = STATE(189), + [sym_verbatim] = STATE(189), + [sym__todo_highlights] = STATE(189), + [sym_todo] = STATE(189), + [sym_note] = STATE(189), + [sym__symbol_fallback] = STATE(189), + [aux_sym__text] = STATE(161), + [aux_sym__inline_repeat1] = STATE(126), + [anon_sym_LBRACE_] = ACTIONS(1055), + [anon_sym__] = ACTIONS(1057), + [anon_sym_LBRACE_STAR] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_BSLASH] = ACTIONS(1063), + [sym_quotation_marks] = ACTIONS(1065), + [sym_ellipsis] = ACTIONS(1065), + [sym_em_dash] = ACTIONS(1065), + [sym_en_dash] = ACTIONS(1067), + [sym_backslash_escape] = ACTIONS(1067), + [anon_sym_LT] = ACTIONS(1069), + [anon_sym_LBRACE_EQ] = ACTIONS(1071), + [anon_sym_LBRACE_PLUS] = ACTIONS(1073), + [anon_sym_LBRACE_DASH] = ACTIONS(1075), + [sym_symbol] = ACTIONS(1065), + [anon_sym_LBRACE_CARET] = ACTIONS(1077), + [anon_sym_CARET] = ACTIONS(1077), + [anon_sym_LBRACE_TILDE] = ACTIONS(1079), + [anon_sym_TILDE] = ACTIONS(1079), + [anon_sym_LBRACK_CARET] = ACTIONS(1081), + [anon_sym_BANG_LBRACK] = ACTIONS(1083), + [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_LBRACE2] = ACTIONS(1067), + [anon_sym_DOLLAR] = ACTIONS(1087), + [anon_sym_TODO] = ACTIONS(1089), + [anon_sym_WIP] = ACTIONS(1089), + [anon_sym_NOTE] = ACTIONS(1091), + [anon_sym_INFO] = ACTIONS(1091), + [anon_sym_XXX] = ACTIONS(1091), + [sym_fixme] = ACTIONS(1065), + [anon_sym_PIPE] = ACTIONS(1065), + [sym__whitespace1] = ACTIONS(1093), + [sym__newline] = ACTIONS(1095), + [aux_sym__text_token1] = ACTIONS(1097), + [sym__verbatim_begin] = ACTIONS(1099), + }, + [123] = { + [sym__inline] = STATE(1005), + [sym__element] = STATE(94), + [sym_emphasis] = STATE(188), + [sym_emphasis_begin] = STATE(1020), + [sym_strong] = STATE(188), + [sym_strong_begin] = STATE(106), + [sym__hard_line_break] = STATE(188), + [sym_hard_line_break] = STATE(188), + [sym__smart_punctuation] = STATE(188), + [sym_autolink] = STATE(188), + [sym_highlighted] = STATE(188), + [sym_insert] = STATE(188), + [sym_delete] = STATE(188), + [sym_superscript] = STATE(188), + [sym_subscript] = STATE(188), + [sym_footnote_reference] = STATE(188), + [sym__image] = STATE(188), + [sym_full_reference_image] = STATE(188), + [sym_collapsed_reference_image] = STATE(188), + [sym_inline_image] = STATE(188), + [sym__image_description] = STATE(702), + [sym__link] = STATE(188), + [sym_full_reference_link] = STATE(188), + [sym_collapsed_reference_link] = STATE(188), + [sym_inline_link] = STATE(188), + [sym_link_text] = STATE(700), + [sym__comment_with_spaces] = STATE(188), + [sym_span] = STATE(188), + [sym_raw_inline] = STATE(188), + [sym_math] = STATE(188), + [sym_verbatim] = STATE(188), + [sym__todo_highlights] = STATE(188), + [sym_todo] = STATE(188), + [sym_note] = STATE(188), + [sym__symbol_fallback] = STATE(188), + [aux_sym__text] = STATE(147), + [aux_sym__inline_repeat1] = STATE(94), + [anon_sym_LBRACE_] = ACTIONS(614), + [anon_sym__] = ACTIONS(616), + [anon_sym_LBRACE_STAR] = ACTIONS(618), + [anon_sym_STAR] = ACTIONS(620), + [anon_sym_BSLASH] = ACTIONS(622), + [sym_quotation_marks] = ACTIONS(624), + [sym_ellipsis] = ACTIONS(624), + [sym_em_dash] = ACTIONS(624), + [sym_en_dash] = ACTIONS(626), + [sym_backslash_escape] = ACTIONS(626), + [anon_sym_LT] = ACTIONS(628), + [anon_sym_LBRACE_EQ] = ACTIONS(630), + [anon_sym_LBRACE_PLUS] = ACTIONS(632), + [anon_sym_LBRACE_DASH] = ACTIONS(634), + [sym_symbol] = ACTIONS(624), + [anon_sym_LBRACE_CARET] = ACTIONS(636), + [anon_sym_CARET] = ACTIONS(636), + [anon_sym_LBRACE_TILDE] = ACTIONS(638), + [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_LBRACK_CARET] = ACTIONS(640), + [anon_sym_BANG_LBRACK] = ACTIONS(642), + [anon_sym_LBRACK] = ACTIONS(644), + [anon_sym_LBRACE2] = ACTIONS(626), + [anon_sym_DOLLAR] = ACTIONS(646), + [anon_sym_TODO] = ACTIONS(648), + [anon_sym_WIP] = ACTIONS(648), + [anon_sym_NOTE] = ACTIONS(650), + [anon_sym_INFO] = ACTIONS(650), + [anon_sym_XXX] = ACTIONS(650), + [sym_fixme] = ACTIONS(624), + [anon_sym_PIPE] = ACTIONS(624), + [sym__whitespace1] = ACTIONS(652), + [sym__newline] = ACTIONS(654), + [aux_sym__text_token1] = ACTIONS(656), + [sym__verbatim_begin] = ACTIONS(658), + }, + [124] = { + [sym__inline] = STATE(899), + [sym__element] = STATE(94), + [sym_emphasis] = STATE(188), + [sym_emphasis_begin] = STATE(1020), + [sym_strong] = STATE(188), + [sym_strong_begin] = STATE(106), + [sym__hard_line_break] = STATE(188), + [sym_hard_line_break] = STATE(188), + [sym__smart_punctuation] = STATE(188), + [sym_autolink] = STATE(188), + [sym_highlighted] = STATE(188), + [sym_insert] = STATE(188), + [sym_delete] = STATE(188), + [sym_superscript] = STATE(188), + [sym_subscript] = STATE(188), + [sym_footnote_reference] = STATE(188), + [sym__image] = STATE(188), + [sym_full_reference_image] = STATE(188), + [sym_collapsed_reference_image] = STATE(188), + [sym_inline_image] = STATE(188), + [sym__image_description] = STATE(702), + [sym__link] = STATE(188), + [sym_full_reference_link] = STATE(188), + [sym_collapsed_reference_link] = STATE(188), + [sym_inline_link] = STATE(188), + [sym_link_text] = STATE(700), + [sym__comment_with_spaces] = STATE(188), + [sym_span] = STATE(188), + [sym_raw_inline] = STATE(188), + [sym_math] = STATE(188), + [sym_verbatim] = STATE(188), + [sym__todo_highlights] = STATE(188), + [sym_todo] = STATE(188), + [sym_note] = STATE(188), + [sym__symbol_fallback] = STATE(188), + [aux_sym__text] = STATE(147), + [aux_sym__inline_repeat1] = STATE(94), + [anon_sym_LBRACE_] = ACTIONS(614), + [anon_sym__] = ACTIONS(616), + [anon_sym_LBRACE_STAR] = ACTIONS(618), + [anon_sym_STAR] = ACTIONS(620), + [anon_sym_BSLASH] = ACTIONS(622), + [sym_quotation_marks] = ACTIONS(624), + [sym_ellipsis] = ACTIONS(624), + [sym_em_dash] = ACTIONS(624), + [sym_en_dash] = ACTIONS(626), + [sym_backslash_escape] = ACTIONS(626), + [anon_sym_LT] = ACTIONS(628), + [anon_sym_LBRACE_EQ] = ACTIONS(630), + [anon_sym_LBRACE_PLUS] = ACTIONS(632), + [anon_sym_LBRACE_DASH] = ACTIONS(634), + [sym_symbol] = ACTIONS(624), + [anon_sym_LBRACE_CARET] = ACTIONS(636), + [anon_sym_CARET] = ACTIONS(636), + [anon_sym_LBRACE_TILDE] = ACTIONS(638), + [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_LBRACK_CARET] = ACTIONS(640), + [anon_sym_BANG_LBRACK] = ACTIONS(642), + [anon_sym_LBRACK] = ACTIONS(644), + [anon_sym_LBRACE2] = ACTIONS(626), + [anon_sym_DOLLAR] = ACTIONS(646), + [anon_sym_TODO] = ACTIONS(648), + [anon_sym_WIP] = ACTIONS(648), + [anon_sym_NOTE] = ACTIONS(650), + [anon_sym_INFO] = ACTIONS(650), + [anon_sym_XXX] = ACTIONS(650), + [sym_fixme] = ACTIONS(624), + [anon_sym_PIPE] = ACTIONS(624), + [sym__whitespace1] = ACTIONS(652), + [sym__newline] = ACTIONS(654), + [aux_sym__text_token1] = ACTIONS(656), + [sym__verbatim_begin] = ACTIONS(658), + }, + [125] = { [sym__inline] = STATE(722), - [sym__element] = STATE(97), - [sym_emphasis] = STATE(182), - [sym_emphasis_begin] = STATE(898), - [sym_strong] = STATE(182), - [sym_strong_begin] = STATE(104), - [sym__hard_line_break] = STATE(182), - [sym_hard_line_break] = STATE(182), - [sym__smart_punctuation] = STATE(182), - [sym_autolink] = STATE(182), - [sym_highlighted] = STATE(182), - [sym_insert] = STATE(182), - [sym_delete] = STATE(182), - [sym_superscript] = STATE(182), - [sym_subscript] = STATE(182), - [sym_footnote_reference] = STATE(182), - [sym__image] = STATE(182), - [sym_full_reference_image] = STATE(182), - [sym_collapsed_reference_image] = STATE(182), - [sym_inline_image] = STATE(182), - [sym__image_description] = STATE(610), - [sym__link] = STATE(182), - [sym_full_reference_link] = STATE(182), - [sym_collapsed_reference_link] = STATE(182), - [sym_inline_link] = STATE(182), - [sym_link_text] = STATE(608), - [sym__comment_with_spaces] = STATE(182), - [sym_span] = STATE(182), - [sym_raw_inline] = STATE(182), - [sym_math] = STATE(182), - [sym_verbatim] = STATE(182), - [sym__todo_highlights] = STATE(182), - [sym_todo] = STATE(182), - [sym_note] = STATE(182), - [sym__symbol_fallback] = STATE(182), - [aux_sym__text] = STATE(144), - [aux_sym__inline_repeat1] = STATE(97), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_] = ACTIONS(49), - [anon_sym__] = ACTIONS(52), - [anon_sym_LBRACE_STAR] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(58), - [anon_sym_BSLASH] = ACTIONS(61), - [sym_quotation_marks] = ACTIONS(52), - [sym_ellipsis] = ACTIONS(52), - [sym_em_dash] = ACTIONS(52), - [sym_en_dash] = ACTIONS(64), - [sym_backslash_escape] = ACTIONS(64), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_LBRACE_EQ] = ACTIONS(70), - [anon_sym_LBRACE_PLUS] = ACTIONS(73), - [anon_sym_LBRACE_DASH] = ACTIONS(76), - [sym_symbol] = ACTIONS(52), - [anon_sym_LBRACE_CARET] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(81), - [anon_sym_LBRACE_TILDE] = ACTIONS(84), - [anon_sym_TILDE] = ACTIONS(84), - [anon_sym_LBRACK_CARET] = ACTIONS(87), - [anon_sym_RBRACK] = ACTIONS(493), - [anon_sym_BANG_LBRACK] = ACTIONS(92), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LBRACE2] = ACTIONS(64), - [anon_sym_DOLLAR] = ACTIONS(98), - [anon_sym_TODO] = ACTIONS(101), - [anon_sym_WIP] = ACTIONS(101), - [anon_sym_NOTE] = ACTIONS(104), - [anon_sym_INFO] = ACTIONS(104), - [anon_sym_XXX] = ACTIONS(104), - [sym_fixme] = ACTIONS(52), - [anon_sym_PIPE] = ACTIONS(52), - [sym__whitespace1] = ACTIONS(107), - [sym__newline] = ACTIONS(110), - [aux_sym__text_token1] = ACTIONS(113), - [sym__verbatim_begin] = ACTIONS(116), - }, - [52] = { - [sym__inline] = STATE(850), - [sym__element] = STATE(97), - [sym_emphasis] = STATE(182), - [sym_emphasis_begin] = STATE(898), - [sym_strong] = STATE(182), - [sym_strong_begin] = STATE(104), - [sym__hard_line_break] = STATE(182), - [sym_hard_line_break] = STATE(182), - [sym__smart_punctuation] = STATE(182), - [sym_autolink] = STATE(182), - [sym_highlighted] = STATE(182), - [sym_insert] = STATE(182), - [sym_delete] = STATE(182), - [sym_superscript] = STATE(182), - [sym_subscript] = STATE(182), - [sym_footnote_reference] = STATE(182), - [sym__image] = STATE(182), - [sym_full_reference_image] = STATE(182), - [sym_collapsed_reference_image] = STATE(182), - [sym_inline_image] = STATE(182), - [sym__image_description] = STATE(610), - [sym__link] = STATE(182), - [sym_full_reference_link] = STATE(182), - [sym_collapsed_reference_link] = STATE(182), - [sym_inline_link] = STATE(182), - [sym_link_text] = STATE(608), - [sym__comment_with_spaces] = STATE(182), - [sym_span] = STATE(182), - [sym_raw_inline] = STATE(182), - [sym_math] = STATE(182), - [sym_verbatim] = STATE(182), - [sym__todo_highlights] = STATE(182), - [sym_todo] = STATE(182), - [sym_note] = STATE(182), - [sym__symbol_fallback] = STATE(182), - [aux_sym__text] = STATE(144), - [aux_sym__inline_repeat1] = STATE(97), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_] = ACTIONS(49), - [anon_sym__] = ACTIONS(52), - [anon_sym_LBRACE_STAR] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(58), - [anon_sym_BSLASH] = ACTIONS(61), - [sym_quotation_marks] = ACTIONS(52), - [sym_ellipsis] = ACTIONS(52), - [sym_em_dash] = ACTIONS(52), - [sym_en_dash] = ACTIONS(64), - [sym_backslash_escape] = ACTIONS(64), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_LBRACE_EQ] = ACTIONS(70), - [anon_sym_LBRACE_PLUS] = ACTIONS(73), - [anon_sym_LBRACE_DASH] = ACTIONS(76), - [sym_symbol] = ACTIONS(52), - [anon_sym_LBRACE_CARET] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(81), - [anon_sym_LBRACE_TILDE] = ACTIONS(84), - [anon_sym_TILDE] = ACTIONS(84), - [anon_sym_LBRACK_CARET] = ACTIONS(87), - [anon_sym_RBRACK] = ACTIONS(79), - [anon_sym_BANG_LBRACK] = ACTIONS(92), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LBRACE2] = ACTIONS(64), - [anon_sym_DOLLAR] = ACTIONS(98), - [anon_sym_TODO] = ACTIONS(101), - [anon_sym_WIP] = ACTIONS(101), - [anon_sym_NOTE] = ACTIONS(104), - [anon_sym_INFO] = ACTIONS(104), - [anon_sym_XXX] = ACTIONS(104), - [sym_fixme] = ACTIONS(52), - [anon_sym_PIPE] = ACTIONS(52), - [sym__whitespace1] = ACTIONS(107), - [sym__newline] = ACTIONS(110), - [aux_sym__text_token1] = ACTIONS(113), - [sym__verbatim_begin] = ACTIONS(116), - }, - [53] = { - [sym__inline] = STATE(665), - [sym__element] = STATE(113), - [sym_emphasis] = STATE(175), - [sym_emphasis_begin] = STATE(897), - [sym_strong] = STATE(175), - [sym_strong_begin] = STATE(108), - [sym__hard_line_break] = STATE(175), - [sym_hard_line_break] = STATE(175), - [sym__smart_punctuation] = STATE(175), - [sym_autolink] = STATE(175), - [sym_highlighted] = STATE(175), - [sym_insert] = STATE(175), - [sym_delete] = STATE(175), - [sym_superscript] = STATE(175), - [sym_subscript] = STATE(175), - [sym_footnote_reference] = STATE(175), - [sym__image] = STATE(175), - [sym_full_reference_image] = STATE(175), - [sym_collapsed_reference_image] = STATE(175), - [sym_inline_image] = STATE(175), - [sym__image_description] = STATE(626), - [sym__link] = STATE(175), - [sym_full_reference_link] = STATE(175), - [sym_collapsed_reference_link] = STATE(175), - [sym_inline_link] = STATE(175), - [sym_link_text] = STATE(624), - [sym__comment_with_spaces] = STATE(175), - [sym_span] = STATE(175), - [sym_raw_inline] = STATE(175), - [sym_math] = STATE(175), - [sym_verbatim] = STATE(175), - [sym__todo_highlights] = STATE(175), - [sym_todo] = STATE(175), - [sym_note] = STATE(175), - [sym__symbol_fallback] = STATE(175), - [aux_sym__text] = STATE(125), - [aux_sym__inline_repeat1] = STATE(113), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_] = ACTIONS(397), - [anon_sym__] = ACTIONS(400), - [anon_sym_LBRACE_STAR] = ACTIONS(403), - [anon_sym_STAR] = ACTIONS(406), - [anon_sym_BSLASH] = ACTIONS(409), - [sym_quotation_marks] = ACTIONS(400), - [sym_ellipsis] = ACTIONS(400), - [sym_em_dash] = ACTIONS(400), - [sym_en_dash] = ACTIONS(412), - [sym_backslash_escape] = ACTIONS(412), - [anon_sym_LT] = ACTIONS(415), - [anon_sym_LBRACE_EQ] = ACTIONS(418), - [anon_sym_LBRACE_PLUS] = ACTIONS(421), - [anon_sym_LBRACE_DASH] = ACTIONS(424), - [sym_symbol] = ACTIONS(400), - [anon_sym_LBRACE_CARET] = ACTIONS(427), - [anon_sym_CARET] = ACTIONS(427), - [anon_sym_LBRACE_TILDE] = ACTIONS(430), - [anon_sym_TILDE] = ACTIONS(430), - [anon_sym_LBRACK_CARET] = ACTIONS(433), - [anon_sym_BANG_LBRACK] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(439), - [anon_sym_RBRACK2] = ACTIONS(79), - [anon_sym_LBRACE2] = ACTIONS(412), - [anon_sym_DOLLAR] = ACTIONS(442), - [anon_sym_TODO] = ACTIONS(445), - [anon_sym_WIP] = ACTIONS(445), - [anon_sym_NOTE] = ACTIONS(448), - [anon_sym_INFO] = ACTIONS(448), - [anon_sym_XXX] = ACTIONS(448), - [sym_fixme] = ACTIONS(400), - [anon_sym_PIPE] = ACTIONS(400), - [sym__whitespace1] = ACTIONS(451), - [sym__newline] = ACTIONS(454), - [aux_sym__text_token1] = ACTIONS(457), - [sym__verbatim_begin] = ACTIONS(460), - }, - [54] = { - [sym__inline] = STATE(667), - [sym__element] = STATE(72), - [sym_emphasis] = STATE(163), - [sym_emphasis_begin] = STATE(896), - [sym_strong] = STATE(163), - [sym_strong_begin] = STATE(110), - [sym__hard_line_break] = STATE(163), - [sym_hard_line_break] = STATE(163), - [sym__smart_punctuation] = STATE(163), - [sym_autolink] = STATE(163), - [sym_highlighted] = STATE(163), - [sym_insert] = STATE(163), - [sym_delete] = STATE(163), - [sym_superscript] = STATE(163), - [sym_subscript] = STATE(163), - [sym_footnote_reference] = STATE(163), - [sym__image] = STATE(163), - [sym_full_reference_image] = STATE(163), - [sym_collapsed_reference_image] = STATE(163), - [sym_inline_image] = STATE(163), - [sym__image_description] = STATE(622), - [sym__link] = STATE(163), - [sym_full_reference_link] = STATE(163), - [sym_collapsed_reference_link] = STATE(163), - [sym_inline_link] = STATE(163), - [sym_link_text] = STATE(605), - [sym__comment_with_spaces] = STATE(163), - [sym_span] = STATE(163), - [sym_raw_inline] = STATE(163), - [sym_math] = STATE(163), - [sym_verbatim] = STATE(163), - [sym__todo_highlights] = STATE(163), - [sym_todo] = STATE(163), - [sym_note] = STATE(163), - [sym__symbol_fallback] = STATE(163), - [aux_sym__text] = STATE(146), - [aux_sym__inline_repeat1] = STATE(72), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_] = ACTIONS(331), - [anon_sym__] = ACTIONS(334), - [anon_sym_LBRACE_STAR] = ACTIONS(337), - [anon_sym_STAR] = ACTIONS(340), - [anon_sym_BSLASH] = ACTIONS(343), - [sym_quotation_marks] = ACTIONS(334), - [sym_ellipsis] = ACTIONS(334), - [sym_em_dash] = ACTIONS(334), - [sym_en_dash] = ACTIONS(346), - [sym_backslash_escape] = ACTIONS(346), - [anon_sym_LT] = ACTIONS(349), - [anon_sym_LBRACE_EQ] = ACTIONS(352), - [anon_sym_LBRACE_PLUS] = ACTIONS(355), - [anon_sym_LBRACE_DASH] = ACTIONS(358), - [sym_symbol] = ACTIONS(334), - [anon_sym_LBRACE_CARET] = ACTIONS(361), - [anon_sym_CARET] = ACTIONS(361), - [anon_sym_LBRACE_TILDE] = ACTIONS(364), - [anon_sym_TILDE] = ACTIONS(364), - [anon_sym_LBRACK_CARET] = ACTIONS(367), - [anon_sym_BANG_LBRACK] = ACTIONS(370), - [anon_sym_LBRACK] = ACTIONS(373), - [anon_sym_RBRACK2] = ACTIONS(79), - [anon_sym_LBRACE2] = ACTIONS(346), - [anon_sym_DOLLAR] = ACTIONS(376), - [anon_sym_TODO] = ACTIONS(379), - [anon_sym_WIP] = ACTIONS(379), - [anon_sym_NOTE] = ACTIONS(382), - [anon_sym_INFO] = ACTIONS(382), - [anon_sym_XXX] = ACTIONS(382), - [sym_fixme] = ACTIONS(334), - [anon_sym_PIPE] = ACTIONS(334), - [sym__whitespace1] = ACTIONS(385), - [sym__newline] = ACTIONS(388), - [aux_sym__text_token1] = ACTIONS(391), - [sym__verbatim_begin] = ACTIONS(394), - }, - [55] = { - [sym__inline] = STATE(770), - [sym__element] = STATE(73), - [sym_emphasis] = STATE(180), - [sym_emphasis_begin] = STATE(895), - [sym_strong] = STATE(180), - [sym_strong_begin] = STATE(114), - [sym__hard_line_break] = STATE(180), - [sym_hard_line_break] = STATE(180), - [sym__smart_punctuation] = STATE(180), - [sym_autolink] = STATE(180), - [sym_highlighted] = STATE(180), - [sym_insert] = STATE(180), - [sym_delete] = STATE(180), - [sym_superscript] = STATE(180), - [sym_subscript] = STATE(180), - [sym_footnote_reference] = STATE(180), - [sym__image] = STATE(180), - [sym_full_reference_image] = STATE(180), - [sym_collapsed_reference_image] = STATE(180), - [sym_inline_image] = STATE(180), - [sym__image_description] = STATE(632), - [sym__link] = STATE(180), - [sym_full_reference_link] = STATE(180), - [sym_collapsed_reference_link] = STATE(180), - [sym_inline_link] = STATE(180), - [sym_link_text] = STATE(633), - [sym__comment_with_spaces] = STATE(180), - [sym_span] = STATE(180), - [sym_raw_inline] = STATE(180), - [sym_math] = STATE(180), - [sym_verbatim] = STATE(180), - [sym__todo_highlights] = STATE(180), - [sym_todo] = STATE(180), - [sym_note] = STATE(180), - [sym__symbol_fallback] = STATE(180), - [aux_sym__text] = STATE(132), - [aux_sym__inline_repeat1] = STATE(73), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_] = ACTIONS(133), - [anon_sym__] = ACTIONS(136), - [anon_sym_LBRACE_STAR] = ACTIONS(139), - [anon_sym_STAR] = ACTIONS(142), - [anon_sym_BSLASH] = ACTIONS(145), - [sym_quotation_marks] = ACTIONS(136), - [sym_ellipsis] = ACTIONS(136), - [sym_em_dash] = ACTIONS(136), - [sym_en_dash] = ACTIONS(148), - [sym_backslash_escape] = ACTIONS(148), - [anon_sym_LT] = ACTIONS(151), - [anon_sym_LBRACE_EQ] = ACTIONS(154), - [anon_sym_LBRACE_PLUS] = ACTIONS(157), - [anon_sym_LBRACE_DASH] = ACTIONS(160), - [sym_symbol] = ACTIONS(136), - [anon_sym_LBRACE_CARET] = ACTIONS(163), - [anon_sym_CARET] = ACTIONS(163), - [anon_sym_LBRACE_TILDE] = ACTIONS(166), - [anon_sym_TILDE] = ACTIONS(166), - [anon_sym_LBRACK_CARET] = ACTIONS(169), - [anon_sym_BANG_LBRACK] = ACTIONS(172), - [anon_sym_LBRACK] = ACTIONS(175), - [anon_sym_RBRACK2] = ACTIONS(79), - [anon_sym_LBRACE2] = ACTIONS(148), - [anon_sym_DOLLAR] = ACTIONS(178), - [anon_sym_TODO] = ACTIONS(181), - [anon_sym_WIP] = ACTIONS(181), - [anon_sym_NOTE] = ACTIONS(184), - [anon_sym_INFO] = ACTIONS(184), - [anon_sym_XXX] = ACTIONS(184), - [sym_fixme] = ACTIONS(136), - [anon_sym_PIPE] = ACTIONS(136), - [sym__whitespace1] = ACTIONS(187), - [sym__newline] = ACTIONS(190), - [aux_sym__text_token1] = ACTIONS(193), - [sym__verbatim_begin] = ACTIONS(196), - }, - [56] = { - [sym__inline] = STATE(769), - [sym__element] = STATE(78), - [sym_emphasis] = STATE(167), - [sym_emphasis_begin] = STATE(894), - [sym_strong] = STATE(167), - [sym_strong_begin] = STATE(117), - [sym__hard_line_break] = STATE(167), - [sym_hard_line_break] = STATE(167), - [sym__smart_punctuation] = STATE(167), - [sym_autolink] = STATE(167), - [sym_highlighted] = STATE(167), - [sym_insert] = STATE(167), - [sym_delete] = STATE(167), - [sym_superscript] = STATE(167), - [sym_subscript] = STATE(167), - [sym_footnote_reference] = STATE(167), - [sym__image] = STATE(167), - [sym_full_reference_image] = STATE(167), - [sym_collapsed_reference_image] = STATE(167), - [sym_inline_image] = STATE(167), - [sym__image_description] = STATE(613), - [sym__link] = STATE(167), - [sym_full_reference_link] = STATE(167), - [sym_collapsed_reference_link] = STATE(167), - [sym_inline_link] = STATE(167), - [sym_link_text] = STATE(614), - [sym__comment_with_spaces] = STATE(167), - [sym_span] = STATE(167), - [sym_raw_inline] = STATE(167), - [sym_math] = STATE(167), - [sym_verbatim] = STATE(167), - [sym__todo_highlights] = STATE(167), - [sym_todo] = STATE(167), - [sym_note] = STATE(167), - [sym__symbol_fallback] = STATE(167), - [aux_sym__text] = STATE(130), - [aux_sym__inline_repeat1] = STATE(78), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_] = ACTIONS(199), - [anon_sym__] = ACTIONS(202), - [anon_sym_LBRACE_STAR] = ACTIONS(205), - [anon_sym_STAR] = ACTIONS(208), - [anon_sym_BSLASH] = ACTIONS(211), - [sym_quotation_marks] = ACTIONS(202), - [sym_ellipsis] = ACTIONS(202), - [sym_em_dash] = ACTIONS(202), - [sym_en_dash] = ACTIONS(214), - [sym_backslash_escape] = ACTIONS(214), - [anon_sym_LT] = ACTIONS(217), - [anon_sym_LBRACE_EQ] = ACTIONS(220), - [anon_sym_LBRACE_PLUS] = ACTIONS(223), - [anon_sym_LBRACE_DASH] = ACTIONS(226), - [sym_symbol] = ACTIONS(202), - [anon_sym_LBRACE_CARET] = ACTIONS(229), - [anon_sym_CARET] = ACTIONS(229), - [anon_sym_LBRACE_TILDE] = ACTIONS(232), - [anon_sym_TILDE] = ACTIONS(232), - [anon_sym_LBRACK_CARET] = ACTIONS(235), - [anon_sym_BANG_LBRACK] = ACTIONS(238), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_RBRACK2] = ACTIONS(79), - [anon_sym_LBRACE2] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(244), - [anon_sym_TODO] = ACTIONS(247), - [anon_sym_WIP] = ACTIONS(247), - [anon_sym_NOTE] = ACTIONS(250), - [anon_sym_INFO] = ACTIONS(250), - [anon_sym_XXX] = ACTIONS(250), - [sym_fixme] = ACTIONS(202), - [anon_sym_PIPE] = ACTIONS(202), - [sym__whitespace1] = ACTIONS(253), - [sym__newline] = ACTIONS(256), - [aux_sym__text_token1] = ACTIONS(259), - [sym__verbatim_begin] = ACTIONS(262), - }, - [57] = { - [sym__inline] = STATE(768), - [sym__element] = STATE(107), - [sym_emphasis] = STATE(187), - [sym_emphasis_begin] = STATE(893), - [sym_strong] = STATE(187), - [sym_strong_begin] = STATE(119), - [sym__hard_line_break] = STATE(187), - [sym_hard_line_break] = STATE(187), - [sym__smart_punctuation] = STATE(187), - [sym_autolink] = STATE(187), - [sym_highlighted] = STATE(187), - [sym_insert] = STATE(187), - [sym_delete] = STATE(187), - [sym_superscript] = STATE(187), - [sym_subscript] = STATE(187), - [sym_footnote_reference] = STATE(187), - [sym__image] = STATE(187), - [sym_full_reference_image] = STATE(187), - [sym_collapsed_reference_image] = STATE(187), - [sym_inline_image] = STATE(187), - [sym__image_description] = STATE(616), - [sym__link] = STATE(187), - [sym_full_reference_link] = STATE(187), - [sym_collapsed_reference_link] = STATE(187), - [sym_inline_link] = STATE(187), - [sym_link_text] = STATE(634), - [sym__comment_with_spaces] = STATE(187), - [sym_span] = STATE(187), - [sym_raw_inline] = STATE(187), - [sym_math] = STATE(187), - [sym_verbatim] = STATE(187), - [sym__todo_highlights] = STATE(187), - [sym_todo] = STATE(187), - [sym_note] = STATE(187), - [sym__symbol_fallback] = STATE(187), - [aux_sym__text] = STATE(131), - [aux_sym__inline_repeat1] = STATE(107), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_] = ACTIONS(265), - [anon_sym__] = ACTIONS(268), - [anon_sym_LBRACE_STAR] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(274), - [anon_sym_BSLASH] = ACTIONS(277), - [sym_quotation_marks] = ACTIONS(268), - [sym_ellipsis] = ACTIONS(268), - [sym_em_dash] = ACTIONS(268), - [sym_en_dash] = ACTIONS(280), - [sym_backslash_escape] = ACTIONS(280), - [anon_sym_LT] = ACTIONS(283), - [anon_sym_LBRACE_EQ] = ACTIONS(286), - [anon_sym_LBRACE_PLUS] = ACTIONS(289), - [anon_sym_LBRACE_DASH] = ACTIONS(292), - [sym_symbol] = ACTIONS(268), - [anon_sym_LBRACE_CARET] = ACTIONS(295), - [anon_sym_CARET] = ACTIONS(295), - [anon_sym_LBRACE_TILDE] = ACTIONS(298), - [anon_sym_TILDE] = ACTIONS(298), - [anon_sym_LBRACK_CARET] = ACTIONS(301), - [anon_sym_BANG_LBRACK] = ACTIONS(304), - [anon_sym_LBRACK] = ACTIONS(307), - [anon_sym_RBRACK2] = ACTIONS(79), - [anon_sym_LBRACE2] = ACTIONS(280), - [anon_sym_DOLLAR] = ACTIONS(310), - [anon_sym_TODO] = ACTIONS(313), - [anon_sym_WIP] = ACTIONS(313), - [anon_sym_NOTE] = ACTIONS(316), - [anon_sym_INFO] = ACTIONS(316), - [anon_sym_XXX] = ACTIONS(316), - [sym_fixme] = ACTIONS(268), - [anon_sym_PIPE] = ACTIONS(268), - [sym__whitespace1] = ACTIONS(319), - [sym__newline] = ACTIONS(322), - [aux_sym__text_token1] = ACTIONS(325), - [sym__verbatim_begin] = ACTIONS(328), - }, - [58] = { - [sym__inline] = STATE(722), - [sym__element] = STATE(97), - [sym_emphasis] = STATE(182), - [sym_emphasis_begin] = STATE(898), - [sym_strong] = STATE(182), - [sym_strong_begin] = STATE(104), - [sym__hard_line_break] = STATE(182), - [sym_hard_line_break] = STATE(182), - [sym__smart_punctuation] = STATE(182), - [sym_autolink] = STATE(182), - [sym_highlighted] = STATE(182), - [sym_insert] = STATE(182), - [sym_delete] = STATE(182), - [sym_superscript] = STATE(182), - [sym_subscript] = STATE(182), - [sym_footnote_reference] = STATE(182), - [sym__image] = STATE(182), - [sym_full_reference_image] = STATE(182), - [sym_collapsed_reference_image] = STATE(182), - [sym_inline_image] = STATE(182), - [sym__image_description] = STATE(610), - [sym__link] = STATE(182), - [sym_full_reference_link] = STATE(182), - [sym_collapsed_reference_link] = STATE(182), - [sym_inline_link] = STATE(182), - [sym_link_text] = STATE(608), - [sym__comment_with_spaces] = STATE(182), - [sym_span] = STATE(182), - [sym_raw_inline] = STATE(182), - [sym_math] = STATE(182), - [sym_verbatim] = STATE(182), - [sym__todo_highlights] = STATE(182), - [sym_todo] = STATE(182), - [sym_note] = STATE(182), - [sym__symbol_fallback] = STATE(182), - [aux_sym__text] = STATE(144), - [aux_sym__inline_repeat1] = STATE(97), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_] = ACTIONS(49), - [anon_sym__] = ACTIONS(52), - [anon_sym_LBRACE_STAR] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(58), - [anon_sym_BSLASH] = ACTIONS(61), - [sym_quotation_marks] = ACTIONS(52), - [sym_ellipsis] = ACTIONS(52), - [sym_em_dash] = ACTIONS(52), - [sym_en_dash] = ACTIONS(64), - [sym_backslash_escape] = ACTIONS(64), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_LBRACE_EQ] = ACTIONS(70), - [anon_sym_LBRACE_PLUS] = ACTIONS(73), - [anon_sym_LBRACE_DASH] = ACTIONS(76), - [sym_symbol] = ACTIONS(52), - [anon_sym_LBRACE_CARET] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(81), - [anon_sym_LBRACE_TILDE] = ACTIONS(84), - [anon_sym_TILDE] = ACTIONS(84), - [anon_sym_LBRACK_CARET] = ACTIONS(87), - [anon_sym_RBRACK] = ACTIONS(90), - [anon_sym_BANG_LBRACK] = ACTIONS(92), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LBRACE2] = ACTIONS(64), - [anon_sym_DOLLAR] = ACTIONS(98), - [anon_sym_TODO] = ACTIONS(101), - [anon_sym_WIP] = ACTIONS(101), - [anon_sym_NOTE] = ACTIONS(104), - [anon_sym_INFO] = ACTIONS(104), - [anon_sym_XXX] = ACTIONS(104), - [sym_fixme] = ACTIONS(52), - [anon_sym_PIPE] = ACTIONS(52), - [sym__whitespace1] = ACTIONS(107), - [sym__newline] = ACTIONS(110), - [aux_sym__text_token1] = ACTIONS(113), - [sym__verbatim_begin] = ACTIONS(116), - }, - [59] = { - [sym__inline] = STATE(725), - [sym__element] = STATE(78), - [sym_emphasis] = STATE(167), - [sym_emphasis_begin] = STATE(894), - [sym_strong] = STATE(167), - [sym_strong_begin] = STATE(117), - [sym__hard_line_break] = STATE(167), - [sym_hard_line_break] = STATE(167), - [sym__smart_punctuation] = STATE(167), - [sym_autolink] = STATE(167), - [sym_highlighted] = STATE(167), - [sym_insert] = STATE(167), - [sym_delete] = STATE(167), - [sym_superscript] = STATE(167), - [sym_subscript] = STATE(167), - [sym_footnote_reference] = STATE(167), - [sym__image] = STATE(167), - [sym_full_reference_image] = STATE(167), - [sym_collapsed_reference_image] = STATE(167), - [sym_inline_image] = STATE(167), - [sym__image_description] = STATE(613), - [sym__link] = STATE(167), - [sym_full_reference_link] = STATE(167), - [sym_collapsed_reference_link] = STATE(167), - [sym_inline_link] = STATE(167), - [sym_link_text] = STATE(614), - [sym__comment_with_spaces] = STATE(167), - [sym_span] = STATE(167), - [sym_raw_inline] = STATE(167), - [sym_math] = STATE(167), - [sym_verbatim] = STATE(167), - [sym__todo_highlights] = STATE(167), - [sym_todo] = STATE(167), - [sym_note] = STATE(167), - [sym__symbol_fallback] = STATE(167), - [aux_sym__text] = STATE(130), - [aux_sym__inline_repeat1] = STATE(78), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_] = ACTIONS(199), - [anon_sym__] = ACTIONS(202), - [anon_sym_LBRACE_STAR] = ACTIONS(205), - [anon_sym_STAR] = ACTIONS(496), - [aux_sym_strong_end_token1] = ACTIONS(79), - [anon_sym_BSLASH] = ACTIONS(211), - [sym_quotation_marks] = ACTIONS(202), - [sym_ellipsis] = ACTIONS(202), - [sym_em_dash] = ACTIONS(202), - [sym_en_dash] = ACTIONS(214), - [sym_backslash_escape] = ACTIONS(214), - [anon_sym_LT] = ACTIONS(217), - [anon_sym_LBRACE_EQ] = ACTIONS(220), - [anon_sym_LBRACE_PLUS] = ACTIONS(223), - [anon_sym_LBRACE_DASH] = ACTIONS(226), - [sym_symbol] = ACTIONS(202), - [anon_sym_LBRACE_CARET] = ACTIONS(229), - [anon_sym_CARET] = ACTIONS(229), - [anon_sym_LBRACE_TILDE] = ACTIONS(232), - [anon_sym_TILDE] = ACTIONS(232), - [anon_sym_LBRACK_CARET] = ACTIONS(235), - [anon_sym_BANG_LBRACK] = ACTIONS(238), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_LBRACE2] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(244), - [anon_sym_TODO] = ACTIONS(247), - [anon_sym_WIP] = ACTIONS(247), - [anon_sym_NOTE] = ACTIONS(250), - [anon_sym_INFO] = ACTIONS(250), - [anon_sym_XXX] = ACTIONS(250), - [sym_fixme] = ACTIONS(202), - [anon_sym_PIPE] = ACTIONS(202), - [sym__whitespace1] = ACTIONS(499), - [sym__newline] = ACTIONS(256), - [aux_sym__text_token1] = ACTIONS(259), - [sym__verbatim_begin] = ACTIONS(262), - }, - [60] = { - [sym__inline] = STATE(726), - [sym__element] = STATE(73), - [sym_emphasis] = STATE(180), - [sym_emphasis_begin] = STATE(895), - [sym_strong] = STATE(180), - [sym_strong_begin] = STATE(114), - [sym__hard_line_break] = STATE(180), - [sym_hard_line_break] = STATE(180), - [sym__smart_punctuation] = STATE(180), - [sym_autolink] = STATE(180), - [sym_highlighted] = STATE(180), - [sym_insert] = STATE(180), - [sym_delete] = STATE(180), - [sym_superscript] = STATE(180), - [sym_subscript] = STATE(180), - [sym_footnote_reference] = STATE(180), - [sym__image] = STATE(180), - [sym_full_reference_image] = STATE(180), - [sym_collapsed_reference_image] = STATE(180), - [sym_inline_image] = STATE(180), - [sym__image_description] = STATE(632), - [sym__link] = STATE(180), - [sym_full_reference_link] = STATE(180), - [sym_collapsed_reference_link] = STATE(180), - [sym_inline_link] = STATE(180), - [sym_link_text] = STATE(633), - [sym__comment_with_spaces] = STATE(180), - [sym_span] = STATE(180), - [sym_raw_inline] = STATE(180), - [sym_math] = STATE(180), - [sym_verbatim] = STATE(180), - [sym__todo_highlights] = STATE(180), - [sym_todo] = STATE(180), - [sym_note] = STATE(180), - [sym__symbol_fallback] = STATE(180), - [aux_sym__text] = STATE(132), - [aux_sym__inline_repeat1] = STATE(73), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_] = ACTIONS(133), - [anon_sym__] = ACTIONS(136), - [anon_sym_LBRACE_STAR] = ACTIONS(139), - [anon_sym_STAR] = ACTIONS(502), - [aux_sym_strong_end_token1] = ACTIONS(79), - [anon_sym_BSLASH] = ACTIONS(145), - [sym_quotation_marks] = ACTIONS(136), - [sym_ellipsis] = ACTIONS(136), - [sym_em_dash] = ACTIONS(136), - [sym_en_dash] = ACTIONS(148), - [sym_backslash_escape] = ACTIONS(148), - [anon_sym_LT] = ACTIONS(151), - [anon_sym_LBRACE_EQ] = ACTIONS(154), - [anon_sym_LBRACE_PLUS] = ACTIONS(157), - [anon_sym_LBRACE_DASH] = ACTIONS(160), - [sym_symbol] = ACTIONS(136), - [anon_sym_LBRACE_CARET] = ACTIONS(163), - [anon_sym_CARET] = ACTIONS(163), - [anon_sym_LBRACE_TILDE] = ACTIONS(166), - [anon_sym_TILDE] = ACTIONS(166), - [anon_sym_LBRACK_CARET] = ACTIONS(169), - [anon_sym_BANG_LBRACK] = ACTIONS(172), - [anon_sym_LBRACK] = ACTIONS(175), - [anon_sym_LBRACE2] = ACTIONS(148), - [anon_sym_DOLLAR] = ACTIONS(178), - [anon_sym_TODO] = ACTIONS(181), - [anon_sym_WIP] = ACTIONS(181), - [anon_sym_NOTE] = ACTIONS(184), - [anon_sym_INFO] = ACTIONS(184), - [anon_sym_XXX] = ACTIONS(184), - [sym_fixme] = ACTIONS(136), - [anon_sym_PIPE] = ACTIONS(136), - [sym__whitespace1] = ACTIONS(505), - [sym__newline] = ACTIONS(190), - [aux_sym__text_token1] = ACTIONS(193), - [sym__verbatim_begin] = ACTIONS(196), - }, - [61] = { - [sym__inline] = STATE(817), - [sym__element] = STATE(73), - [sym_emphasis] = STATE(180), - [sym_emphasis_begin] = STATE(895), - [sym_strong] = STATE(180), - [sym_strong_begin] = STATE(114), - [sym__hard_line_break] = STATE(180), - [sym_hard_line_break] = STATE(180), - [sym__smart_punctuation] = STATE(180), - [sym_autolink] = STATE(180), - [sym_highlighted] = STATE(180), - [sym_insert] = STATE(180), - [sym_delete] = STATE(180), - [sym_superscript] = STATE(180), - [sym_subscript] = STATE(180), - [sym_footnote_reference] = STATE(180), - [sym__image] = STATE(180), - [sym_full_reference_image] = STATE(180), - [sym_collapsed_reference_image] = STATE(180), - [sym_inline_image] = STATE(180), - [sym__image_description] = STATE(632), - [sym__link] = STATE(180), - [sym_full_reference_link] = STATE(180), - [sym_collapsed_reference_link] = STATE(180), - [sym_inline_link] = STATE(180), - [sym_link_text] = STATE(633), - [sym__comment_with_spaces] = STATE(180), - [sym_span] = STATE(180), - [sym_raw_inline] = STATE(180), - [sym_math] = STATE(180), - [sym_verbatim] = STATE(180), - [sym__todo_highlights] = STATE(180), - [sym_todo] = STATE(180), - [sym_note] = STATE(180), - [sym__symbol_fallback] = STATE(180), - [aux_sym__text] = STATE(132), - [aux_sym__inline_repeat1] = STATE(73), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_] = ACTIONS(133), - [anon_sym__] = ACTIONS(136), - [anon_sym_LBRACE_STAR] = ACTIONS(139), - [anon_sym_STAR] = ACTIONS(142), - [anon_sym_BSLASH] = ACTIONS(145), - [sym_quotation_marks] = ACTIONS(136), - [sym_ellipsis] = ACTIONS(136), - [sym_em_dash] = ACTIONS(136), - [sym_en_dash] = ACTIONS(148), - [sym_backslash_escape] = ACTIONS(148), - [anon_sym_LT] = ACTIONS(151), - [anon_sym_LBRACE_EQ] = ACTIONS(154), - [anon_sym_LBRACE_PLUS] = ACTIONS(157), - [anon_sym_LBRACE_DASH] = ACTIONS(160), - [anon_sym_DASH_RBRACE] = ACTIONS(79), - [sym_symbol] = ACTIONS(136), - [anon_sym_LBRACE_CARET] = ACTIONS(163), - [anon_sym_CARET] = ACTIONS(163), - [anon_sym_LBRACE_TILDE] = ACTIONS(166), - [anon_sym_TILDE] = ACTIONS(166), - [anon_sym_LBRACK_CARET] = ACTIONS(169), - [anon_sym_BANG_LBRACK] = ACTIONS(172), - [anon_sym_LBRACK] = ACTIONS(175), - [anon_sym_LBRACE2] = ACTIONS(148), - [anon_sym_DOLLAR] = ACTIONS(178), - [anon_sym_TODO] = ACTIONS(181), - [anon_sym_WIP] = ACTIONS(181), - [anon_sym_NOTE] = ACTIONS(184), - [anon_sym_INFO] = ACTIONS(184), - [anon_sym_XXX] = ACTIONS(184), - [sym_fixme] = ACTIONS(136), - [anon_sym_PIPE] = ACTIONS(136), - [sym__whitespace1] = ACTIONS(187), - [sym__newline] = ACTIONS(190), - [aux_sym__text_token1] = ACTIONS(193), - [sym__verbatim_begin] = ACTIONS(196), - }, - [62] = { - [sym__inline] = STATE(700), - [sym__element] = STATE(72), - [sym_emphasis] = STATE(163), - [sym_emphasis_begin] = STATE(896), - [sym_strong] = STATE(163), - [sym_strong_begin] = STATE(110), - [sym__hard_line_break] = STATE(163), - [sym_hard_line_break] = STATE(163), - [sym__smart_punctuation] = STATE(163), - [sym_autolink] = STATE(163), - [sym_highlighted] = STATE(163), - [sym_insert] = STATE(163), - [sym_delete] = STATE(163), - [sym_superscript] = STATE(163), - [sym_subscript] = STATE(163), - [sym_footnote_reference] = STATE(163), - [sym__image] = STATE(163), - [sym_full_reference_image] = STATE(163), - [sym_collapsed_reference_image] = STATE(163), - [sym_inline_image] = STATE(163), - [sym__image_description] = STATE(622), - [sym__link] = STATE(163), - [sym_full_reference_link] = STATE(163), - [sym_collapsed_reference_link] = STATE(163), - [sym_inline_link] = STATE(163), - [sym_link_text] = STATE(605), - [sym__comment_with_spaces] = STATE(163), - [sym_span] = STATE(163), - [sym_raw_inline] = STATE(163), - [sym_math] = STATE(163), - [sym_verbatim] = STATE(163), - [sym__todo_highlights] = STATE(163), - [sym_todo] = STATE(163), - [sym_note] = STATE(163), - [sym__symbol_fallback] = STATE(163), - [aux_sym__text] = STATE(146), - [aux_sym__inline_repeat1] = STATE(72), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_] = ACTIONS(331), - [anon_sym__] = ACTIONS(334), - [anon_sym_LBRACE_STAR] = ACTIONS(337), - [anon_sym_STAR] = ACTIONS(340), - [anon_sym_BSLASH] = ACTIONS(343), - [sym_quotation_marks] = ACTIONS(334), - [sym_ellipsis] = ACTIONS(334), - [sym_em_dash] = ACTIONS(334), - [sym_en_dash] = ACTIONS(346), - [sym_backslash_escape] = ACTIONS(346), - [anon_sym_LT] = ACTIONS(349), - [anon_sym_LBRACE_EQ] = ACTIONS(352), - [anon_sym_LBRACE_PLUS] = ACTIONS(355), - [anon_sym_LBRACE_DASH] = ACTIONS(358), - [anon_sym_DASH_RBRACE] = ACTIONS(79), - [sym_symbol] = ACTIONS(334), - [anon_sym_LBRACE_CARET] = ACTIONS(361), - [anon_sym_CARET] = ACTIONS(361), - [anon_sym_LBRACE_TILDE] = ACTIONS(364), - [anon_sym_TILDE] = ACTIONS(364), - [anon_sym_LBRACK_CARET] = ACTIONS(367), - [anon_sym_BANG_LBRACK] = ACTIONS(370), - [anon_sym_LBRACK] = ACTIONS(373), - [anon_sym_LBRACE2] = ACTIONS(346), - [anon_sym_DOLLAR] = ACTIONS(376), - [anon_sym_TODO] = ACTIONS(379), - [anon_sym_WIP] = ACTIONS(379), - [anon_sym_NOTE] = ACTIONS(382), - [anon_sym_INFO] = ACTIONS(382), - [anon_sym_XXX] = ACTIONS(382), - [sym_fixme] = ACTIONS(334), - [anon_sym_PIPE] = ACTIONS(334), - [sym__whitespace1] = ACTIONS(385), - [sym__newline] = ACTIONS(388), - [aux_sym__text_token1] = ACTIONS(391), - [sym__verbatim_begin] = ACTIONS(394), - }, - [63] = { - [sym__inline] = STATE(724), - [sym__element] = STATE(107), - [sym_emphasis] = STATE(187), - [sym_emphasis_begin] = STATE(893), - [sym_strong] = STATE(187), - [sym_strong_begin] = STATE(119), - [sym__hard_line_break] = STATE(187), - [sym_hard_line_break] = STATE(187), - [sym__smart_punctuation] = STATE(187), - [sym_autolink] = STATE(187), - [sym_highlighted] = STATE(187), - [sym_insert] = STATE(187), - [sym_delete] = STATE(187), - [sym_superscript] = STATE(187), - [sym_subscript] = STATE(187), - [sym_footnote_reference] = STATE(187), - [sym__image] = STATE(187), - [sym_full_reference_image] = STATE(187), - [sym_collapsed_reference_image] = STATE(187), - [sym_inline_image] = STATE(187), - [sym__image_description] = STATE(616), - [sym__link] = STATE(187), - [sym_full_reference_link] = STATE(187), - [sym_collapsed_reference_link] = STATE(187), - [sym_inline_link] = STATE(187), - [sym_link_text] = STATE(634), - [sym__comment_with_spaces] = STATE(187), - [sym_span] = STATE(187), - [sym_raw_inline] = STATE(187), - [sym_math] = STATE(187), - [sym_verbatim] = STATE(187), - [sym__todo_highlights] = STATE(187), - [sym_todo] = STATE(187), - [sym_note] = STATE(187), - [sym__symbol_fallback] = STATE(187), - [aux_sym__text] = STATE(131), - [aux_sym__inline_repeat1] = STATE(107), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_] = ACTIONS(265), - [anon_sym__] = ACTIONS(268), - [anon_sym_LBRACE_STAR] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(508), - [aux_sym_strong_end_token1] = ACTIONS(79), - [anon_sym_BSLASH] = ACTIONS(277), - [sym_quotation_marks] = ACTIONS(268), - [sym_ellipsis] = ACTIONS(268), - [sym_em_dash] = ACTIONS(268), - [sym_en_dash] = ACTIONS(280), - [sym_backslash_escape] = ACTIONS(280), - [anon_sym_LT] = ACTIONS(283), - [anon_sym_LBRACE_EQ] = ACTIONS(286), - [anon_sym_LBRACE_PLUS] = ACTIONS(289), - [anon_sym_LBRACE_DASH] = ACTIONS(292), - [sym_symbol] = ACTIONS(268), - [anon_sym_LBRACE_CARET] = ACTIONS(295), - [anon_sym_CARET] = ACTIONS(295), - [anon_sym_LBRACE_TILDE] = ACTIONS(298), - [anon_sym_TILDE] = ACTIONS(298), - [anon_sym_LBRACK_CARET] = ACTIONS(301), - [anon_sym_BANG_LBRACK] = ACTIONS(304), - [anon_sym_LBRACK] = ACTIONS(307), - [anon_sym_LBRACE2] = ACTIONS(280), - [anon_sym_DOLLAR] = ACTIONS(310), - [anon_sym_TODO] = ACTIONS(313), - [anon_sym_WIP] = ACTIONS(313), - [anon_sym_NOTE] = ACTIONS(316), - [anon_sym_INFO] = ACTIONS(316), - [anon_sym_XXX] = ACTIONS(316), - [sym_fixme] = ACTIONS(268), - [anon_sym_PIPE] = ACTIONS(268), - [sym__whitespace1] = ACTIONS(511), - [sym__newline] = ACTIONS(322), - [aux_sym__text_token1] = ACTIONS(325), - [sym__verbatim_begin] = ACTIONS(328), - }, - [64] = { - [sym__inline] = STATE(690), - [sym__element] = STATE(113), - [sym_emphasis] = STATE(175), - [sym_emphasis_begin] = STATE(897), - [sym_strong] = STATE(175), - [sym_strong_begin] = STATE(108), - [sym__hard_line_break] = STATE(175), - [sym_hard_line_break] = STATE(175), - [sym__smart_punctuation] = STATE(175), - [sym_autolink] = STATE(175), - [sym_highlighted] = STATE(175), - [sym_insert] = STATE(175), - [sym_delete] = STATE(175), - [sym_superscript] = STATE(175), - [sym_subscript] = STATE(175), - [sym_footnote_reference] = STATE(175), - [sym__image] = STATE(175), - [sym_full_reference_image] = STATE(175), - [sym_collapsed_reference_image] = STATE(175), - [sym_inline_image] = STATE(175), - [sym__image_description] = STATE(626), - [sym__link] = STATE(175), - [sym_full_reference_link] = STATE(175), - [sym_collapsed_reference_link] = STATE(175), - [sym_inline_link] = STATE(175), - [sym_link_text] = STATE(624), - [sym__comment_with_spaces] = STATE(175), - [sym_span] = STATE(175), - [sym_raw_inline] = STATE(175), - [sym_math] = STATE(175), - [sym_verbatim] = STATE(175), - [sym__todo_highlights] = STATE(175), - [sym_todo] = STATE(175), - [sym_note] = STATE(175), - [sym__symbol_fallback] = STATE(175), - [aux_sym__text] = STATE(125), - [aux_sym__inline_repeat1] = STATE(113), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_] = ACTIONS(397), - [anon_sym__] = ACTIONS(400), - [anon_sym_LBRACE_STAR] = ACTIONS(403), - [anon_sym_STAR] = ACTIONS(514), - [aux_sym_strong_end_token1] = ACTIONS(79), - [anon_sym_BSLASH] = ACTIONS(409), - [sym_quotation_marks] = ACTIONS(400), - [sym_ellipsis] = ACTIONS(400), - [sym_em_dash] = ACTIONS(400), - [sym_en_dash] = ACTIONS(412), - [sym_backslash_escape] = ACTIONS(412), - [anon_sym_LT] = ACTIONS(415), - [anon_sym_LBRACE_EQ] = ACTIONS(418), - [anon_sym_LBRACE_PLUS] = ACTIONS(421), - [anon_sym_LBRACE_DASH] = ACTIONS(424), - [sym_symbol] = ACTIONS(400), - [anon_sym_LBRACE_CARET] = ACTIONS(427), - [anon_sym_CARET] = ACTIONS(427), - [anon_sym_LBRACE_TILDE] = ACTIONS(430), - [anon_sym_TILDE] = ACTIONS(430), - [anon_sym_LBRACK_CARET] = ACTIONS(433), - [anon_sym_BANG_LBRACK] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(439), - [anon_sym_LBRACE2] = ACTIONS(412), - [anon_sym_DOLLAR] = ACTIONS(442), - [anon_sym_TODO] = ACTIONS(445), - [anon_sym_WIP] = ACTIONS(445), - [anon_sym_NOTE] = ACTIONS(448), - [anon_sym_INFO] = ACTIONS(448), - [anon_sym_XXX] = ACTIONS(448), - [sym_fixme] = ACTIONS(400), - [anon_sym_PIPE] = ACTIONS(400), - [sym__whitespace1] = ACTIONS(517), - [sym__newline] = ACTIONS(454), - [aux_sym__text_token1] = ACTIONS(457), - [sym__verbatim_begin] = ACTIONS(460), - }, - [65] = { - [sym__inline] = STATE(691), - [sym__element] = STATE(72), - [sym_emphasis] = STATE(163), - [sym_emphasis_begin] = STATE(896), - [sym_strong] = STATE(163), - [sym_strong_begin] = STATE(110), - [sym__hard_line_break] = STATE(163), - [sym_hard_line_break] = STATE(163), - [sym__smart_punctuation] = STATE(163), - [sym_autolink] = STATE(163), - [sym_highlighted] = STATE(163), - [sym_insert] = STATE(163), - [sym_delete] = STATE(163), - [sym_superscript] = STATE(163), - [sym_subscript] = STATE(163), - [sym_footnote_reference] = STATE(163), - [sym__image] = STATE(163), - [sym_full_reference_image] = STATE(163), - [sym_collapsed_reference_image] = STATE(163), - [sym_inline_image] = STATE(163), - [sym__image_description] = STATE(622), - [sym__link] = STATE(163), - [sym_full_reference_link] = STATE(163), - [sym_collapsed_reference_link] = STATE(163), - [sym_inline_link] = STATE(163), - [sym_link_text] = STATE(605), - [sym__comment_with_spaces] = STATE(163), - [sym_span] = STATE(163), - [sym_raw_inline] = STATE(163), - [sym_math] = STATE(163), - [sym_verbatim] = STATE(163), - [sym__todo_highlights] = STATE(163), - [sym_todo] = STATE(163), - [sym_note] = STATE(163), - [sym__symbol_fallback] = STATE(163), - [aux_sym__text] = STATE(146), - [aux_sym__inline_repeat1] = STATE(72), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_] = ACTIONS(331), - [anon_sym__] = ACTIONS(334), - [anon_sym_LBRACE_STAR] = ACTIONS(337), - [anon_sym_STAR] = ACTIONS(520), - [aux_sym_strong_end_token1] = ACTIONS(79), - [anon_sym_BSLASH] = ACTIONS(343), - [sym_quotation_marks] = ACTIONS(334), - [sym_ellipsis] = ACTIONS(334), - [sym_em_dash] = ACTIONS(334), - [sym_en_dash] = ACTIONS(346), - [sym_backslash_escape] = ACTIONS(346), - [anon_sym_LT] = ACTIONS(349), - [anon_sym_LBRACE_EQ] = ACTIONS(352), - [anon_sym_LBRACE_PLUS] = ACTIONS(355), - [anon_sym_LBRACE_DASH] = ACTIONS(358), - [sym_symbol] = ACTIONS(334), - [anon_sym_LBRACE_CARET] = ACTIONS(361), - [anon_sym_CARET] = ACTIONS(361), - [anon_sym_LBRACE_TILDE] = ACTIONS(364), - [anon_sym_TILDE] = ACTIONS(364), - [anon_sym_LBRACK_CARET] = ACTIONS(367), - [anon_sym_BANG_LBRACK] = ACTIONS(370), - [anon_sym_LBRACK] = ACTIONS(373), - [anon_sym_LBRACE2] = ACTIONS(346), - [anon_sym_DOLLAR] = ACTIONS(376), - [anon_sym_TODO] = ACTIONS(379), - [anon_sym_WIP] = ACTIONS(379), - [anon_sym_NOTE] = ACTIONS(382), - [anon_sym_INFO] = ACTIONS(382), - [anon_sym_XXX] = ACTIONS(382), - [sym_fixme] = ACTIONS(334), - [anon_sym_PIPE] = ACTIONS(334), - [sym__whitespace1] = ACTIONS(523), - [sym__newline] = ACTIONS(388), - [aux_sym__text_token1] = ACTIONS(391), - [sym__verbatim_begin] = ACTIONS(394), - }, - [66] = { - [sym__inline] = STATE(746), - [sym__element] = STATE(107), - [sym_emphasis] = STATE(187), - [sym_emphasis_begin] = STATE(893), - [sym_strong] = STATE(187), - [sym_strong_begin] = STATE(119), - [sym__hard_line_break] = STATE(187), - [sym_hard_line_break] = STATE(187), - [sym__smart_punctuation] = STATE(187), - [sym_autolink] = STATE(187), - [sym_highlighted] = STATE(187), - [sym_insert] = STATE(187), - [sym_delete] = STATE(187), - [sym_superscript] = STATE(187), - [sym_subscript] = STATE(187), - [sym_footnote_reference] = STATE(187), - [sym__image] = STATE(187), - [sym_full_reference_image] = STATE(187), - [sym_collapsed_reference_image] = STATE(187), - [sym_inline_image] = STATE(187), - [sym__image_description] = STATE(616), - [sym__link] = STATE(187), - [sym_full_reference_link] = STATE(187), - [sym_collapsed_reference_link] = STATE(187), - [sym_inline_link] = STATE(187), - [sym_link_text] = STATE(634), - [sym__comment_with_spaces] = STATE(187), - [sym_span] = STATE(187), - [sym_raw_inline] = STATE(187), - [sym_math] = STATE(187), - [sym_verbatim] = STATE(187), - [sym__todo_highlights] = STATE(187), - [sym_todo] = STATE(187), - [sym_note] = STATE(187), - [sym__symbol_fallback] = STATE(187), - [aux_sym__text] = STATE(131), - [aux_sym__inline_repeat1] = STATE(107), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_] = ACTIONS(265), - [anon_sym__] = ACTIONS(268), - [anon_sym_LBRACE_STAR] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(274), - [anon_sym_BSLASH] = ACTIONS(277), - [sym_quotation_marks] = ACTIONS(268), - [sym_ellipsis] = ACTIONS(268), - [sym_em_dash] = ACTIONS(268), - [sym_en_dash] = ACTIONS(280), - [sym_backslash_escape] = ACTIONS(280), - [anon_sym_LT] = ACTIONS(283), - [anon_sym_LBRACE_EQ] = ACTIONS(286), - [anon_sym_LBRACE_PLUS] = ACTIONS(289), - [anon_sym_LBRACE_DASH] = ACTIONS(292), - [sym_symbol] = ACTIONS(268), - [anon_sym_LBRACE_CARET] = ACTIONS(295), - [anon_sym_CARET] = ACTIONS(295), - [anon_sym_LBRACE_TILDE] = ACTIONS(298), - [anon_sym_TILDE] = ACTIONS(298), - [anon_sym_LBRACK_CARET] = ACTIONS(301), - [anon_sym_BANG_LBRACK] = ACTIONS(304), - [anon_sym_LBRACK] = ACTIONS(307), - [anon_sym_LBRACE2] = ACTIONS(280), - [anon_sym_DOLLAR] = ACTIONS(310), - [anon_sym_TODO] = ACTIONS(313), - [anon_sym_WIP] = ACTIONS(313), - [anon_sym_NOTE] = ACTIONS(316), - [anon_sym_INFO] = ACTIONS(316), - [anon_sym_XXX] = ACTIONS(316), - [sym_fixme] = ACTIONS(268), - [anon_sym_PIPE] = ACTIONS(268), - [sym__whitespace1] = ACTIONS(319), - [sym__newline] = ACTIONS(322), - [aux_sym__text_token1] = ACTIONS(325), - [sym__verbatim_begin] = ACTIONS(328), - }, - [67] = { - [sym__inline] = STATE(702), - [sym__element] = STATE(78), - [sym_emphasis] = STATE(167), - [sym_emphasis_begin] = STATE(894), - [sym_strong] = STATE(167), - [sym_strong_begin] = STATE(117), - [sym__hard_line_break] = STATE(167), - [sym_hard_line_break] = STATE(167), - [sym__smart_punctuation] = STATE(167), - [sym_autolink] = STATE(167), - [sym_highlighted] = STATE(167), - [sym_insert] = STATE(167), - [sym_delete] = STATE(167), - [sym_superscript] = STATE(167), - [sym_subscript] = STATE(167), - [sym_footnote_reference] = STATE(167), - [sym__image] = STATE(167), - [sym_full_reference_image] = STATE(167), - [sym_collapsed_reference_image] = STATE(167), - [sym_inline_image] = STATE(167), - [sym__image_description] = STATE(613), - [sym__link] = STATE(167), - [sym_full_reference_link] = STATE(167), - [sym_collapsed_reference_link] = STATE(167), - [sym_inline_link] = STATE(167), - [sym_link_text] = STATE(614), - [sym__comment_with_spaces] = STATE(167), - [sym_span] = STATE(167), - [sym_raw_inline] = STATE(167), - [sym_math] = STATE(167), - [sym_verbatim] = STATE(167), - [sym__todo_highlights] = STATE(167), - [sym_todo] = STATE(167), - [sym_note] = STATE(167), - [sym__symbol_fallback] = STATE(167), - [aux_sym__text] = STATE(130), - [aux_sym__inline_repeat1] = STATE(78), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_] = ACTIONS(199), - [anon_sym__] = ACTIONS(202), - [anon_sym_LBRACE_STAR] = ACTIONS(205), - [anon_sym_STAR] = ACTIONS(208), - [anon_sym_BSLASH] = ACTIONS(211), - [sym_quotation_marks] = ACTIONS(202), - [sym_ellipsis] = ACTIONS(202), - [sym_em_dash] = ACTIONS(202), - [sym_en_dash] = ACTIONS(214), - [sym_backslash_escape] = ACTIONS(214), - [anon_sym_LT] = ACTIONS(217), - [anon_sym_LBRACE_EQ] = ACTIONS(220), - [anon_sym_LBRACE_PLUS] = ACTIONS(223), - [anon_sym_LBRACE_DASH] = ACTIONS(226), - [sym_symbol] = ACTIONS(202), - [anon_sym_LBRACE_CARET] = ACTIONS(229), - [anon_sym_CARET] = ACTIONS(229), - [anon_sym_LBRACE_TILDE] = ACTIONS(232), - [anon_sym_TILDE] = ACTIONS(232), - [anon_sym_LBRACK_CARET] = ACTIONS(235), - [anon_sym_BANG_LBRACK] = ACTIONS(238), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_LBRACE2] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(244), - [anon_sym_TODO] = ACTIONS(247), - [anon_sym_WIP] = ACTIONS(247), - [anon_sym_NOTE] = ACTIONS(250), - [anon_sym_INFO] = ACTIONS(250), - [anon_sym_XXX] = ACTIONS(250), - [sym_fixme] = ACTIONS(202), - [anon_sym_PIPE] = ACTIONS(202), - [sym__whitespace1] = ACTIONS(253), - [sym__newline] = ACTIONS(256), - [aux_sym__text_token1] = ACTIONS(259), - [sym__verbatim_begin] = ACTIONS(262), - }, - [68] = { - [sym__inline] = STATE(868), - [sym__element] = STATE(97), - [sym_emphasis] = STATE(182), - [sym_emphasis_begin] = STATE(898), - [sym_strong] = STATE(182), - [sym_strong_begin] = STATE(104), - [sym__hard_line_break] = STATE(182), - [sym_hard_line_break] = STATE(182), - [sym__smart_punctuation] = STATE(182), - [sym_autolink] = STATE(182), - [sym_highlighted] = STATE(182), - [sym_insert] = STATE(182), - [sym_delete] = STATE(182), - [sym_superscript] = STATE(182), - [sym_subscript] = STATE(182), - [sym_footnote_reference] = STATE(182), - [sym__image] = STATE(182), - [sym_full_reference_image] = STATE(182), - [sym_collapsed_reference_image] = STATE(182), - [sym_inline_image] = STATE(182), - [sym__image_description] = STATE(610), - [sym__link] = STATE(182), - [sym_full_reference_link] = STATE(182), - [sym_collapsed_reference_link] = STATE(182), - [sym_inline_link] = STATE(182), - [sym_link_text] = STATE(608), - [sym__comment_with_spaces] = STATE(182), - [sym_span] = STATE(182), - [sym_raw_inline] = STATE(182), - [sym_math] = STATE(182), - [sym_verbatim] = STATE(182), - [sym__todo_highlights] = STATE(182), - [sym_todo] = STATE(182), - [sym_note] = STATE(182), - [sym__symbol_fallback] = STATE(182), - [aux_sym__text] = STATE(144), - [aux_sym__inline_repeat1] = STATE(97), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_] = ACTIONS(49), - [anon_sym__] = ACTIONS(52), - [anon_sym_LBRACE_STAR] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(58), - [anon_sym_BSLASH] = ACTIONS(61), - [sym_quotation_marks] = ACTIONS(52), - [sym_ellipsis] = ACTIONS(52), - [sym_em_dash] = ACTIONS(52), - [sym_en_dash] = ACTIONS(64), - [sym_backslash_escape] = ACTIONS(64), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_LBRACE_EQ] = ACTIONS(70), - [anon_sym_LBRACE_PLUS] = ACTIONS(73), - [anon_sym_LBRACE_DASH] = ACTIONS(76), - [sym_symbol] = ACTIONS(52), - [anon_sym_LBRACE_CARET] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(81), - [anon_sym_LBRACE_TILDE] = ACTIONS(84), - [anon_sym_TILDE] = ACTIONS(84), - [anon_sym_LBRACK_CARET] = ACTIONS(87), - [anon_sym_BANG_LBRACK] = ACTIONS(92), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LBRACE2] = ACTIONS(64), - [anon_sym_DOLLAR] = ACTIONS(98), - [anon_sym_TODO] = ACTIONS(101), - [anon_sym_WIP] = ACTIONS(101), - [anon_sym_NOTE] = ACTIONS(104), - [anon_sym_INFO] = ACTIONS(104), - [anon_sym_XXX] = ACTIONS(104), - [sym_fixme] = ACTIONS(52), - [anon_sym_PIPE] = ACTIONS(52), - [sym__whitespace1] = ACTIONS(107), - [sym__newline] = ACTIONS(110), - [aux_sym__text_token1] = ACTIONS(113), - [sym__verbatim_begin] = ACTIONS(116), - }, - [69] = { - [sym__inline] = STATE(748), - [sym__element] = STATE(73), - [sym_emphasis] = STATE(180), - [sym_emphasis_begin] = STATE(895), - [sym_strong] = STATE(180), - [sym_strong_begin] = STATE(114), - [sym__hard_line_break] = STATE(180), - [sym_hard_line_break] = STATE(180), - [sym__smart_punctuation] = STATE(180), - [sym_autolink] = STATE(180), - [sym_highlighted] = STATE(180), - [sym_insert] = STATE(180), - [sym_delete] = STATE(180), - [sym_superscript] = STATE(180), - [sym_subscript] = STATE(180), - [sym_footnote_reference] = STATE(180), - [sym__image] = STATE(180), - [sym_full_reference_image] = STATE(180), - [sym_collapsed_reference_image] = STATE(180), - [sym_inline_image] = STATE(180), - [sym__image_description] = STATE(632), - [sym__link] = STATE(180), - [sym_full_reference_link] = STATE(180), - [sym_collapsed_reference_link] = STATE(180), - [sym_inline_link] = STATE(180), - [sym_link_text] = STATE(633), - [sym__comment_with_spaces] = STATE(180), - [sym_span] = STATE(180), - [sym_raw_inline] = STATE(180), - [sym_math] = STATE(180), - [sym_verbatim] = STATE(180), - [sym__todo_highlights] = STATE(180), - [sym_todo] = STATE(180), - [sym_note] = STATE(180), - [sym__symbol_fallback] = STATE(180), - [aux_sym__text] = STATE(132), - [aux_sym__inline_repeat1] = STATE(73), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_] = ACTIONS(133), - [anon_sym__] = ACTIONS(136), - [anon_sym_LBRACE_STAR] = ACTIONS(139), - [anon_sym_STAR] = ACTIONS(142), - [anon_sym_BSLASH] = ACTIONS(145), - [sym_quotation_marks] = ACTIONS(136), - [sym_ellipsis] = ACTIONS(136), - [sym_em_dash] = ACTIONS(136), - [sym_en_dash] = ACTIONS(148), - [sym_backslash_escape] = ACTIONS(148), - [anon_sym_LT] = ACTIONS(151), - [anon_sym_LBRACE_EQ] = ACTIONS(154), - [anon_sym_LBRACE_PLUS] = ACTIONS(157), - [anon_sym_LBRACE_DASH] = ACTIONS(160), - [sym_symbol] = ACTIONS(136), - [anon_sym_LBRACE_CARET] = ACTIONS(163), - [anon_sym_CARET] = ACTIONS(163), - [anon_sym_LBRACE_TILDE] = ACTIONS(166), - [anon_sym_TILDE] = ACTIONS(166), - [anon_sym_LBRACK_CARET] = ACTIONS(169), - [anon_sym_BANG_LBRACK] = ACTIONS(172), - [anon_sym_LBRACK] = ACTIONS(175), - [anon_sym_LBRACE2] = ACTIONS(148), - [anon_sym_DOLLAR] = ACTIONS(178), - [anon_sym_TODO] = ACTIONS(181), - [anon_sym_WIP] = ACTIONS(181), - [anon_sym_NOTE] = ACTIONS(184), - [anon_sym_INFO] = ACTIONS(184), - [anon_sym_XXX] = ACTIONS(184), - [sym_fixme] = ACTIONS(136), - [anon_sym_PIPE] = ACTIONS(136), - [sym__whitespace1] = ACTIONS(187), - [sym__newline] = ACTIONS(190), - [aux_sym__text_token1] = ACTIONS(193), - [sym__verbatim_begin] = ACTIONS(196), - }, - [70] = { - [sym__inline] = STATE(679), - [sym__element] = STATE(72), - [sym_emphasis] = STATE(163), - [sym_emphasis_begin] = STATE(896), - [sym_strong] = STATE(163), - [sym_strong_begin] = STATE(110), - [sym__hard_line_break] = STATE(163), - [sym_hard_line_break] = STATE(163), - [sym__smart_punctuation] = STATE(163), - [sym_autolink] = STATE(163), - [sym_highlighted] = STATE(163), - [sym_insert] = STATE(163), - [sym_delete] = STATE(163), - [sym_superscript] = STATE(163), - [sym_subscript] = STATE(163), - [sym_footnote_reference] = STATE(163), - [sym__image] = STATE(163), - [sym_full_reference_image] = STATE(163), - [sym_collapsed_reference_image] = STATE(163), - [sym_inline_image] = STATE(163), - [sym__image_description] = STATE(622), - [sym__link] = STATE(163), - [sym_full_reference_link] = STATE(163), - [sym_collapsed_reference_link] = STATE(163), - [sym_inline_link] = STATE(163), - [sym_link_text] = STATE(605), - [sym__comment_with_spaces] = STATE(163), - [sym_span] = STATE(163), - [sym_raw_inline] = STATE(163), - [sym_math] = STATE(163), - [sym_verbatim] = STATE(163), - [sym__todo_highlights] = STATE(163), - [sym_todo] = STATE(163), - [sym_note] = STATE(163), - [sym__symbol_fallback] = STATE(163), - [aux_sym__text] = STATE(146), - [aux_sym__inline_repeat1] = STATE(72), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_] = ACTIONS(331), - [anon_sym__] = ACTIONS(334), - [anon_sym_LBRACE_STAR] = ACTIONS(337), - [anon_sym_STAR] = ACTIONS(340), - [anon_sym_BSLASH] = ACTIONS(343), - [sym_quotation_marks] = ACTIONS(334), - [sym_ellipsis] = ACTIONS(334), - [sym_em_dash] = ACTIONS(334), - [sym_en_dash] = ACTIONS(346), - [sym_backslash_escape] = ACTIONS(346), - [anon_sym_LT] = ACTIONS(349), - [anon_sym_LBRACE_EQ] = ACTIONS(352), - [anon_sym_LBRACE_PLUS] = ACTIONS(355), - [anon_sym_LBRACE_DASH] = ACTIONS(358), - [sym_symbol] = ACTIONS(334), - [anon_sym_LBRACE_CARET] = ACTIONS(361), - [anon_sym_CARET] = ACTIONS(361), - [anon_sym_LBRACE_TILDE] = ACTIONS(364), - [anon_sym_TILDE] = ACTIONS(364), - [anon_sym_LBRACK_CARET] = ACTIONS(367), - [anon_sym_BANG_LBRACK] = ACTIONS(370), - [anon_sym_LBRACK] = ACTIONS(373), - [anon_sym_LBRACE2] = ACTIONS(346), - [anon_sym_DOLLAR] = ACTIONS(376), - [anon_sym_TODO] = ACTIONS(379), - [anon_sym_WIP] = ACTIONS(379), - [anon_sym_NOTE] = ACTIONS(382), - [anon_sym_INFO] = ACTIONS(382), - [anon_sym_XXX] = ACTIONS(382), - [sym_fixme] = ACTIONS(334), - [anon_sym_PIPE] = ACTIONS(334), - [sym__whitespace1] = ACTIONS(385), - [sym__newline] = ACTIONS(388), - [aux_sym__text_token1] = ACTIONS(391), - [sym__verbatim_begin] = ACTIONS(394), - }, - [71] = { - [sym__inline] = STATE(677), - [sym__element] = STATE(113), - [sym_emphasis] = STATE(175), - [sym_emphasis_begin] = STATE(897), - [sym_strong] = STATE(175), - [sym_strong_begin] = STATE(108), - [sym__hard_line_break] = STATE(175), - [sym_hard_line_break] = STATE(175), - [sym__smart_punctuation] = STATE(175), - [sym_autolink] = STATE(175), - [sym_highlighted] = STATE(175), - [sym_insert] = STATE(175), - [sym_delete] = STATE(175), - [sym_superscript] = STATE(175), - [sym_subscript] = STATE(175), - [sym_footnote_reference] = STATE(175), - [sym__image] = STATE(175), - [sym_full_reference_image] = STATE(175), - [sym_collapsed_reference_image] = STATE(175), - [sym_inline_image] = STATE(175), - [sym__image_description] = STATE(626), - [sym__link] = STATE(175), - [sym_full_reference_link] = STATE(175), - [sym_collapsed_reference_link] = STATE(175), - [sym_inline_link] = STATE(175), - [sym_link_text] = STATE(624), - [sym__comment_with_spaces] = STATE(175), - [sym_span] = STATE(175), - [sym_raw_inline] = STATE(175), - [sym_math] = STATE(175), - [sym_verbatim] = STATE(175), - [sym__todo_highlights] = STATE(175), - [sym_todo] = STATE(175), - [sym_note] = STATE(175), - [sym__symbol_fallback] = STATE(175), - [aux_sym__text] = STATE(125), - [aux_sym__inline_repeat1] = STATE(113), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_] = ACTIONS(397), - [anon_sym__] = ACTIONS(400), - [anon_sym_LBRACE_STAR] = ACTIONS(403), - [anon_sym_STAR] = ACTIONS(406), - [anon_sym_BSLASH] = ACTIONS(409), - [sym_quotation_marks] = ACTIONS(400), - [sym_ellipsis] = ACTIONS(400), - [sym_em_dash] = ACTIONS(400), - [sym_en_dash] = ACTIONS(412), - [sym_backslash_escape] = ACTIONS(412), - [anon_sym_LT] = ACTIONS(415), - [anon_sym_LBRACE_EQ] = ACTIONS(418), - [anon_sym_LBRACE_PLUS] = ACTIONS(421), - [anon_sym_LBRACE_DASH] = ACTIONS(424), - [sym_symbol] = ACTIONS(400), - [anon_sym_LBRACE_CARET] = ACTIONS(427), - [anon_sym_CARET] = ACTIONS(427), - [anon_sym_LBRACE_TILDE] = ACTIONS(430), - [anon_sym_TILDE] = ACTIONS(430), - [anon_sym_LBRACK_CARET] = ACTIONS(433), - [anon_sym_BANG_LBRACK] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(439), - [anon_sym_LBRACE2] = ACTIONS(412), - [anon_sym_DOLLAR] = ACTIONS(442), - [anon_sym_TODO] = ACTIONS(445), - [anon_sym_WIP] = ACTIONS(445), - [anon_sym_NOTE] = ACTIONS(448), - [anon_sym_INFO] = ACTIONS(448), - [anon_sym_XXX] = ACTIONS(448), - [sym_fixme] = ACTIONS(400), - [anon_sym_PIPE] = ACTIONS(400), - [sym__whitespace1] = ACTIONS(451), - [sym__newline] = ACTIONS(454), - [aux_sym__text_token1] = ACTIONS(457), - [sym__verbatim_begin] = ACTIONS(460), - }, - [72] = { - [sym__element] = STATE(101), - [sym_emphasis] = STATE(163), - [sym_emphasis_begin] = STATE(896), - [sym_strong] = STATE(163), + [sym__element] = STATE(126), + [sym_emphasis] = STATE(189), + [sym_emphasis_begin] = STATE(1018), + [sym_strong] = STATE(189), + [sym_strong_begin] = STATE(112), + [sym__hard_line_break] = STATE(189), + [sym_hard_line_break] = STATE(189), + [sym__smart_punctuation] = STATE(189), + [sym_autolink] = STATE(189), + [sym_highlighted] = STATE(189), + [sym_insert] = STATE(189), + [sym_delete] = STATE(189), + [sym_superscript] = STATE(189), + [sym_subscript] = STATE(189), + [sym_footnote_reference] = STATE(189), + [sym__image] = STATE(189), + [sym_full_reference_image] = STATE(189), + [sym_collapsed_reference_image] = STATE(189), + [sym_inline_image] = STATE(189), + [sym__image_description] = STATE(707), + [sym__link] = STATE(189), + [sym_full_reference_link] = STATE(189), + [sym_collapsed_reference_link] = STATE(189), + [sym_inline_link] = STATE(189), + [sym_link_text] = STATE(698), + [sym__comment_with_spaces] = STATE(189), + [sym_span] = STATE(189), + [sym_raw_inline] = STATE(189), + [sym_math] = STATE(189), + [sym_verbatim] = STATE(189), + [sym__todo_highlights] = STATE(189), + [sym_todo] = STATE(189), + [sym_note] = STATE(189), + [sym__symbol_fallback] = STATE(189), + [aux_sym__text] = STATE(161), + [aux_sym__inline_repeat1] = STATE(126), + [anon_sym_LBRACE_] = ACTIONS(1055), + [anon_sym__] = ACTIONS(1057), + [anon_sym_LBRACE_STAR] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_BSLASH] = ACTIONS(1063), + [sym_quotation_marks] = ACTIONS(1065), + [sym_ellipsis] = ACTIONS(1065), + [sym_em_dash] = ACTIONS(1065), + [sym_en_dash] = ACTIONS(1067), + [sym_backslash_escape] = ACTIONS(1067), + [anon_sym_LT] = ACTIONS(1069), + [anon_sym_LBRACE_EQ] = ACTIONS(1071), + [anon_sym_LBRACE_PLUS] = ACTIONS(1073), + [anon_sym_LBRACE_DASH] = ACTIONS(1075), + [sym_symbol] = ACTIONS(1065), + [anon_sym_LBRACE_CARET] = ACTIONS(1077), + [anon_sym_CARET] = ACTIONS(1077), + [anon_sym_LBRACE_TILDE] = ACTIONS(1079), + [anon_sym_TILDE] = ACTIONS(1079), + [anon_sym_LBRACK_CARET] = ACTIONS(1081), + [anon_sym_BANG_LBRACK] = ACTIONS(1083), + [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_LBRACE2] = ACTIONS(1067), + [anon_sym_DOLLAR] = ACTIONS(1087), + [anon_sym_TODO] = ACTIONS(1089), + [anon_sym_WIP] = ACTIONS(1089), + [anon_sym_NOTE] = ACTIONS(1091), + [anon_sym_INFO] = ACTIONS(1091), + [anon_sym_XXX] = ACTIONS(1091), + [sym_fixme] = ACTIONS(1065), + [anon_sym_PIPE] = ACTIONS(1065), + [sym__whitespace1] = ACTIONS(1093), + [sym__newline] = ACTIONS(1095), + [aux_sym__text_token1] = ACTIONS(1097), + [sym__verbatim_begin] = ACTIONS(1099), + }, + [126] = { + [sym__element] = STATE(104), + [sym_emphasis] = STATE(189), + [sym_emphasis_begin] = STATE(1018), + [sym_strong] = STATE(189), + [sym_strong_begin] = STATE(112), + [sym__hard_line_break] = STATE(189), + [sym_hard_line_break] = STATE(189), + [sym__smart_punctuation] = STATE(189), + [sym_autolink] = STATE(189), + [sym_highlighted] = STATE(189), + [sym_insert] = STATE(189), + [sym_delete] = STATE(189), + [sym_superscript] = STATE(189), + [sym_subscript] = STATE(189), + [sym_footnote_reference] = STATE(189), + [sym__image] = STATE(189), + [sym_full_reference_image] = STATE(189), + [sym_collapsed_reference_image] = STATE(189), + [sym_inline_image] = STATE(189), + [sym__image_description] = STATE(707), + [sym__link] = STATE(189), + [sym_full_reference_link] = STATE(189), + [sym_collapsed_reference_link] = STATE(189), + [sym_inline_link] = STATE(189), + [sym_link_text] = STATE(698), + [sym__comment_with_spaces] = STATE(189), + [sym_span] = STATE(189), + [sym_raw_inline] = STATE(189), + [sym_math] = STATE(189), + [sym_verbatim] = STATE(189), + [sym__todo_highlights] = STATE(189), + [sym_todo] = STATE(189), + [sym_note] = STATE(189), + [sym__symbol_fallback] = STATE(189), + [aux_sym__text] = STATE(161), + [aux_sym__inline_repeat1] = STATE(104), + [anon_sym_LBRACE_] = ACTIONS(1055), + [anon_sym__] = ACTIONS(1057), + [anon_sym_LBRACE_STAR] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(588), + [aux_sym_strong_end_token1] = ACTIONS(590), + [anon_sym_BSLASH] = ACTIONS(1063), + [sym_quotation_marks] = ACTIONS(1065), + [sym_ellipsis] = ACTIONS(1065), + [sym_em_dash] = ACTIONS(1065), + [sym_en_dash] = ACTIONS(1067), + [sym_backslash_escape] = ACTIONS(1067), + [anon_sym_LT] = ACTIONS(1069), + [anon_sym_LBRACE_EQ] = ACTIONS(1071), + [anon_sym_LBRACE_PLUS] = ACTIONS(1073), + [anon_sym_LBRACE_DASH] = ACTIONS(1075), + [sym_symbol] = ACTIONS(1065), + [anon_sym_LBRACE_CARET] = ACTIONS(1077), + [anon_sym_CARET] = ACTIONS(1077), + [anon_sym_LBRACE_TILDE] = ACTIONS(1079), + [anon_sym_TILDE] = ACTIONS(1079), + [anon_sym_LBRACK_CARET] = ACTIONS(1081), + [anon_sym_BANG_LBRACK] = ACTIONS(1083), + [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_LBRACE2] = ACTIONS(1067), + [anon_sym_DOLLAR] = ACTIONS(1087), + [anon_sym_TODO] = ACTIONS(1089), + [anon_sym_WIP] = ACTIONS(1089), + [anon_sym_NOTE] = ACTIONS(1091), + [anon_sym_INFO] = ACTIONS(1091), + [anon_sym_XXX] = ACTIONS(1091), + [sym_fixme] = ACTIONS(1065), + [anon_sym_PIPE] = ACTIONS(1065), + [sym__whitespace1] = ACTIONS(1615), + [sym__newline] = ACTIONS(1617), + [aux_sym__text_token1] = ACTIONS(1097), + [sym__verbatim_begin] = ACTIONS(1099), + }, + [127] = { + [sym__inline] = STATE(849), + [sym__element] = STATE(94), + [sym_emphasis] = STATE(188), + [sym_emphasis_begin] = STATE(1020), + [sym_strong] = STATE(188), + [sym_strong_begin] = STATE(106), + [sym__hard_line_break] = STATE(188), + [sym_hard_line_break] = STATE(188), + [sym__smart_punctuation] = STATE(188), + [sym_autolink] = STATE(188), + [sym_highlighted] = STATE(188), + [sym_insert] = STATE(188), + [sym_delete] = STATE(188), + [sym_superscript] = STATE(188), + [sym_subscript] = STATE(188), + [sym_footnote_reference] = STATE(188), + [sym__image] = STATE(188), + [sym_full_reference_image] = STATE(188), + [sym_collapsed_reference_image] = STATE(188), + [sym_inline_image] = STATE(188), + [sym__image_description] = STATE(702), + [sym__link] = STATE(188), + [sym_full_reference_link] = STATE(188), + [sym_collapsed_reference_link] = STATE(188), + [sym_inline_link] = STATE(188), + [sym_link_text] = STATE(700), + [sym__comment_with_spaces] = STATE(188), + [sym_span] = STATE(188), + [sym_raw_inline] = STATE(188), + [sym_math] = STATE(188), + [sym_verbatim] = STATE(188), + [sym__todo_highlights] = STATE(188), + [sym_todo] = STATE(188), + [sym_note] = STATE(188), + [sym__symbol_fallback] = STATE(188), + [aux_sym__text] = STATE(147), + [aux_sym__inline_repeat1] = STATE(94), + [anon_sym_LBRACE_] = ACTIONS(614), + [anon_sym__] = ACTIONS(616), + [anon_sym_LBRACE_STAR] = ACTIONS(618), + [anon_sym_STAR] = ACTIONS(620), + [anon_sym_BSLASH] = ACTIONS(622), + [sym_quotation_marks] = ACTIONS(624), + [sym_ellipsis] = ACTIONS(624), + [sym_em_dash] = ACTIONS(624), + [sym_en_dash] = ACTIONS(626), + [sym_backslash_escape] = ACTIONS(626), + [anon_sym_LT] = ACTIONS(628), + [anon_sym_LBRACE_EQ] = ACTIONS(630), + [anon_sym_LBRACE_PLUS] = ACTIONS(632), + [anon_sym_LBRACE_DASH] = ACTIONS(634), + [sym_symbol] = ACTIONS(624), + [anon_sym_LBRACE_CARET] = ACTIONS(636), + [anon_sym_CARET] = ACTIONS(636), + [anon_sym_LBRACE_TILDE] = ACTIONS(638), + [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_LBRACK_CARET] = ACTIONS(640), + [anon_sym_BANG_LBRACK] = ACTIONS(642), + [anon_sym_LBRACK] = ACTIONS(644), + [anon_sym_LBRACE2] = ACTIONS(626), + [anon_sym_DOLLAR] = ACTIONS(646), + [anon_sym_TODO] = ACTIONS(648), + [anon_sym_WIP] = ACTIONS(648), + [anon_sym_NOTE] = ACTIONS(650), + [anon_sym_INFO] = ACTIONS(650), + [anon_sym_XXX] = ACTIONS(650), + [sym_fixme] = ACTIONS(624), + [anon_sym_PIPE] = ACTIONS(624), + [sym__whitespace1] = ACTIONS(652), + [sym__newline] = ACTIONS(654), + [aux_sym__text_token1] = ACTIONS(656), + [sym__verbatim_begin] = ACTIONS(658), + }, + [128] = { + [sym__inline] = STATE(741), + [sym__element] = STATE(126), + [sym_emphasis] = STATE(189), + [sym_emphasis_begin] = STATE(1018), + [sym_strong] = STATE(189), + [sym_strong_begin] = STATE(112), + [sym__hard_line_break] = STATE(189), + [sym_hard_line_break] = STATE(189), + [sym__smart_punctuation] = STATE(189), + [sym_autolink] = STATE(189), + [sym_highlighted] = STATE(189), + [sym_insert] = STATE(189), + [sym_delete] = STATE(189), + [sym_superscript] = STATE(189), + [sym_subscript] = STATE(189), + [sym_footnote_reference] = STATE(189), + [sym__image] = STATE(189), + [sym_full_reference_image] = STATE(189), + [sym_collapsed_reference_image] = STATE(189), + [sym_inline_image] = STATE(189), + [sym__image_description] = STATE(707), + [sym__link] = STATE(189), + [sym_full_reference_link] = STATE(189), + [sym_collapsed_reference_link] = STATE(189), + [sym_inline_link] = STATE(189), + [sym_link_text] = STATE(698), + [sym__comment_with_spaces] = STATE(189), + [sym_span] = STATE(189), + [sym_raw_inline] = STATE(189), + [sym_math] = STATE(189), + [sym_verbatim] = STATE(189), + [sym__todo_highlights] = STATE(189), + [sym_todo] = STATE(189), + [sym_note] = STATE(189), + [sym__symbol_fallback] = STATE(189), + [aux_sym__text] = STATE(161), + [aux_sym__inline_repeat1] = STATE(126), + [anon_sym_LBRACE_] = ACTIONS(1055), + [anon_sym__] = ACTIONS(1057), + [anon_sym_LBRACE_STAR] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_BSLASH] = ACTIONS(1063), + [sym_quotation_marks] = ACTIONS(1065), + [sym_ellipsis] = ACTIONS(1065), + [sym_em_dash] = ACTIONS(1065), + [sym_en_dash] = ACTIONS(1067), + [sym_backslash_escape] = ACTIONS(1067), + [anon_sym_LT] = ACTIONS(1069), + [anon_sym_LBRACE_EQ] = ACTIONS(1071), + [anon_sym_LBRACE_PLUS] = ACTIONS(1073), + [anon_sym_LBRACE_DASH] = ACTIONS(1075), + [sym_symbol] = ACTIONS(1065), + [anon_sym_LBRACE_CARET] = ACTIONS(1077), + [anon_sym_CARET] = ACTIONS(1077), + [anon_sym_LBRACE_TILDE] = ACTIONS(1079), + [anon_sym_TILDE] = ACTIONS(1079), + [anon_sym_LBRACK_CARET] = ACTIONS(1081), + [anon_sym_BANG_LBRACK] = ACTIONS(1083), + [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_LBRACE2] = ACTIONS(1067), + [anon_sym_DOLLAR] = ACTIONS(1087), + [anon_sym_TODO] = ACTIONS(1089), + [anon_sym_WIP] = ACTIONS(1089), + [anon_sym_NOTE] = ACTIONS(1091), + [anon_sym_INFO] = ACTIONS(1091), + [anon_sym_XXX] = ACTIONS(1091), + [sym_fixme] = ACTIONS(1065), + [anon_sym_PIPE] = ACTIONS(1065), + [sym__whitespace1] = ACTIONS(1093), + [sym__newline] = ACTIONS(1095), + [aux_sym__text_token1] = ACTIONS(1097), + [sym__verbatim_begin] = ACTIONS(1099), + }, + [129] = { + [sym__inline] = STATE(961), + [sym__element] = STATE(94), + [sym_emphasis] = STATE(188), + [sym_emphasis_begin] = STATE(1020), + [sym_strong] = STATE(188), + [sym_strong_begin] = STATE(106), + [sym__hard_line_break] = STATE(188), + [sym_hard_line_break] = STATE(188), + [sym__smart_punctuation] = STATE(188), + [sym_autolink] = STATE(188), + [sym_highlighted] = STATE(188), + [sym_insert] = STATE(188), + [sym_delete] = STATE(188), + [sym_superscript] = STATE(188), + [sym_subscript] = STATE(188), + [sym_footnote_reference] = STATE(188), + [sym__image] = STATE(188), + [sym_full_reference_image] = STATE(188), + [sym_collapsed_reference_image] = STATE(188), + [sym_inline_image] = STATE(188), + [sym__image_description] = STATE(702), + [sym__link] = STATE(188), + [sym_full_reference_link] = STATE(188), + [sym_collapsed_reference_link] = STATE(188), + [sym_inline_link] = STATE(188), + [sym_link_text] = STATE(700), + [sym__comment_with_spaces] = STATE(188), + [sym_span] = STATE(188), + [sym_raw_inline] = STATE(188), + [sym_math] = STATE(188), + [sym_verbatim] = STATE(188), + [sym__todo_highlights] = STATE(188), + [sym_todo] = STATE(188), + [sym_note] = STATE(188), + [sym__symbol_fallback] = STATE(188), + [aux_sym__text] = STATE(147), + [aux_sym__inline_repeat1] = STATE(94), + [anon_sym_LBRACE_] = ACTIONS(614), + [anon_sym__] = ACTIONS(616), + [anon_sym_LBRACE_STAR] = ACTIONS(618), + [anon_sym_STAR] = ACTIONS(620), + [anon_sym_BSLASH] = ACTIONS(622), + [sym_quotation_marks] = ACTIONS(624), + [sym_ellipsis] = ACTIONS(624), + [sym_em_dash] = ACTIONS(624), + [sym_en_dash] = ACTIONS(626), + [sym_backslash_escape] = ACTIONS(626), + [anon_sym_LT] = ACTIONS(628), + [anon_sym_LBRACE_EQ] = ACTIONS(630), + [anon_sym_LBRACE_PLUS] = ACTIONS(632), + [anon_sym_LBRACE_DASH] = ACTIONS(634), + [sym_symbol] = ACTIONS(624), + [anon_sym_LBRACE_CARET] = ACTIONS(636), + [anon_sym_CARET] = ACTIONS(636), + [anon_sym_LBRACE_TILDE] = ACTIONS(638), + [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_LBRACK_CARET] = ACTIONS(640), + [anon_sym_BANG_LBRACK] = ACTIONS(642), + [anon_sym_LBRACK] = ACTIONS(644), + [anon_sym_LBRACE2] = ACTIONS(626), + [anon_sym_DOLLAR] = ACTIONS(646), + [anon_sym_TODO] = ACTIONS(648), + [anon_sym_WIP] = ACTIONS(648), + [anon_sym_NOTE] = ACTIONS(650), + [anon_sym_INFO] = ACTIONS(650), + [anon_sym_XXX] = ACTIONS(650), + [sym_fixme] = ACTIONS(624), + [anon_sym_PIPE] = ACTIONS(624), + [sym__whitespace1] = ACTIONS(652), + [sym__newline] = ACTIONS(654), + [aux_sym__text_token1] = ACTIONS(656), + [sym__verbatim_begin] = ACTIONS(658), + }, + [130] = { + [sym__element] = STATE(598), + [sym_emphasis] = STATE(179), + [sym_emphasis_begin] = STATE(1019), + [sym_strong] = STATE(179), [sym_strong_begin] = STATE(110), - [sym__hard_line_break] = STATE(163), - [sym_hard_line_break] = STATE(163), - [sym__smart_punctuation] = STATE(163), - [sym_autolink] = STATE(163), - [sym_highlighted] = STATE(163), - [sym_insert] = STATE(163), - [sym_delete] = STATE(163), - [sym_superscript] = STATE(163), - [sym_subscript] = STATE(163), - [sym_footnote_reference] = STATE(163), - [sym__image] = STATE(163), - [sym_full_reference_image] = STATE(163), - [sym_collapsed_reference_image] = STATE(163), - [sym_inline_image] = STATE(163), - [sym__image_description] = STATE(622), - [sym__link] = STATE(163), - [sym_full_reference_link] = STATE(163), - [sym_collapsed_reference_link] = STATE(163), - [sym_inline_link] = STATE(163), - [sym_link_text] = STATE(605), - [sym__comment_with_spaces] = STATE(163), - [sym_span] = STATE(163), - [sym_raw_inline] = STATE(163), - [sym_math] = STATE(163), - [sym_verbatim] = STATE(163), - [sym__todo_highlights] = STATE(163), - [sym_todo] = STATE(163), - [sym_note] = STATE(163), - [sym__symbol_fallback] = STATE(163), - [aux_sym__text] = STATE(146), - [aux_sym__inline_repeat1] = STATE(101), - [anon_sym_LBRACE_] = ACTIONS(526), - [anon_sym__] = ACTIONS(528), - [anon_sym_LBRACE_STAR] = ACTIONS(530), - [anon_sym_STAR] = ACTIONS(532), - [anon_sym_BSLASH] = ACTIONS(534), - [sym_quotation_marks] = ACTIONS(528), - [sym_ellipsis] = ACTIONS(528), - [sym_em_dash] = ACTIONS(528), - [sym_en_dash] = ACTIONS(536), - [sym_backslash_escape] = ACTIONS(536), - [anon_sym_LT] = ACTIONS(538), - [anon_sym_LBRACE_EQ] = ACTIONS(540), - [anon_sym_LBRACE_PLUS] = ACTIONS(542), - [anon_sym_LBRACE_DASH] = ACTIONS(544), - [sym_symbol] = ACTIONS(528), - [anon_sym_LBRACE_CARET] = ACTIONS(546), - [anon_sym_CARET] = ACTIONS(548), - [anon_sym_CARET_RBRACE] = ACTIONS(550), - [anon_sym_LBRACE_TILDE] = ACTIONS(552), - [anon_sym_TILDE] = ACTIONS(552), - [anon_sym_LBRACK_CARET] = ACTIONS(554), - [anon_sym_BANG_LBRACK] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(558), - [anon_sym_LBRACE2] = ACTIONS(536), - [anon_sym_DOLLAR] = ACTIONS(560), - [anon_sym_TODO] = ACTIONS(562), - [anon_sym_WIP] = ACTIONS(562), - [anon_sym_NOTE] = ACTIONS(564), - [anon_sym_INFO] = ACTIONS(564), - [anon_sym_XXX] = ACTIONS(564), - [sym_fixme] = ACTIONS(528), - [anon_sym_PIPE] = ACTIONS(528), - [sym__whitespace1] = ACTIONS(566), - [sym__newline] = ACTIONS(568), - [aux_sym__text_token1] = ACTIONS(570), - [sym__verbatim_begin] = ACTIONS(572), - }, - [73] = { - [sym__element] = STATE(79), - [sym_emphasis] = STATE(180), - [sym_emphasis_begin] = STATE(895), - [sym_strong] = STATE(180), - [sym_strong_begin] = STATE(114), - [sym__hard_line_break] = STATE(180), - [sym_hard_line_break] = STATE(180), - [sym__smart_punctuation] = STATE(180), - [sym_autolink] = STATE(180), - [sym_highlighted] = STATE(180), - [sym_insert] = STATE(180), - [sym_delete] = STATE(180), - [sym_superscript] = STATE(180), - [sym_subscript] = STATE(180), - [sym_footnote_reference] = STATE(180), - [sym__image] = STATE(180), - [sym_full_reference_image] = STATE(180), - [sym_collapsed_reference_image] = STATE(180), - [sym_inline_image] = STATE(180), - [sym__image_description] = STATE(632), - [sym__link] = STATE(180), - [sym_full_reference_link] = STATE(180), - [sym_collapsed_reference_link] = STATE(180), - [sym_inline_link] = STATE(180), - [sym_link_text] = STATE(633), - [sym__comment_with_spaces] = STATE(180), - [sym_span] = STATE(180), - [sym_raw_inline] = STATE(180), - [sym_math] = STATE(180), - [sym_verbatim] = STATE(180), - [sym__todo_highlights] = STATE(180), - [sym_todo] = STATE(180), - [sym_note] = STATE(180), - [sym__symbol_fallback] = STATE(180), - [aux_sym__text] = STATE(132), - [aux_sym__inline_repeat1] = STATE(79), - [anon_sym_LBRACE_] = ACTIONS(574), - [anon_sym__] = ACTIONS(576), - [anon_sym_LBRACE_STAR] = ACTIONS(578), - [anon_sym_STAR] = ACTIONS(580), - [anon_sym_BSLASH] = ACTIONS(582), - [sym_quotation_marks] = ACTIONS(576), - [sym_ellipsis] = ACTIONS(576), - [sym_em_dash] = ACTIONS(576), - [sym_en_dash] = ACTIONS(584), - [sym_backslash_escape] = ACTIONS(584), - [anon_sym_LT] = ACTIONS(586), - [anon_sym_LBRACE_EQ] = ACTIONS(588), - [anon_sym_LBRACE_PLUS] = ACTIONS(590), - [anon_sym_LBRACE_DASH] = ACTIONS(592), - [anon_sym_DASH_RBRACE] = ACTIONS(550), - [sym_symbol] = ACTIONS(576), - [anon_sym_LBRACE_CARET] = ACTIONS(594), - [anon_sym_CARET] = ACTIONS(594), - [anon_sym_LBRACE_TILDE] = ACTIONS(596), - [anon_sym_TILDE] = ACTIONS(596), - [anon_sym_LBRACK_CARET] = ACTIONS(598), - [anon_sym_BANG_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_LBRACE2] = ACTIONS(584), - [anon_sym_DOLLAR] = ACTIONS(604), - [anon_sym_TODO] = ACTIONS(606), - [anon_sym_WIP] = ACTIONS(606), - [anon_sym_NOTE] = ACTIONS(608), - [anon_sym_INFO] = ACTIONS(608), - [anon_sym_XXX] = ACTIONS(608), - [sym_fixme] = ACTIONS(576), - [anon_sym_PIPE] = ACTIONS(576), - [sym__whitespace1] = ACTIONS(610), - [sym__newline] = ACTIONS(612), - [aux_sym__text_token1] = ACTIONS(614), - [sym__verbatim_begin] = ACTIONS(616), - }, - [74] = { - [sym__inline] = STATE(698), - [sym__element] = STATE(121), - [sym_emphasis] = STATE(467), - [sym_emphasis_begin] = STATE(900), - [sym_strong] = STATE(467), - [sym_strong_begin] = STATE(92), - [sym__hard_line_break] = STATE(467), - [sym_hard_line_break] = STATE(467), - [sym__smart_punctuation] = STATE(467), - [sym_autolink] = STATE(467), - [sym_highlighted] = STATE(467), - [sym_insert] = STATE(467), - [sym_delete] = STATE(467), - [sym_superscript] = STATE(467), - [sym_subscript] = STATE(467), - [sym_footnote_reference] = STATE(467), - [sym__image] = STATE(467), - [sym_full_reference_image] = STATE(467), - [sym_collapsed_reference_image] = STATE(467), - [sym_inline_image] = STATE(467), - [sym__image_description] = STATE(619), - [sym__link] = STATE(467), - [sym_full_reference_link] = STATE(467), - [sym_collapsed_reference_link] = STATE(467), - [sym_inline_link] = STATE(467), - [sym_link_text] = STATE(620), - [sym__comment_with_spaces] = STATE(467), - [sym_span] = STATE(467), - [sym_raw_inline] = STATE(467), - [sym_math] = STATE(467), - [sym_verbatim] = STATE(467), - [sym__todo_highlights] = STATE(467), - [sym_todo] = STATE(467), - [sym_note] = STATE(467), - [sym__symbol_fallback] = STATE(467), - [aux_sym__text] = STATE(171), - [aux_sym__inline_repeat1] = STATE(121), - [anon_sym_LBRACE_] = ACTIONS(618), - [anon_sym__] = ACTIONS(620), - [anon_sym_LBRACE_STAR] = ACTIONS(622), - [anon_sym_STAR] = ACTIONS(624), - [anon_sym_BSLASH] = ACTIONS(626), - [sym_quotation_marks] = ACTIONS(620), - [sym_ellipsis] = ACTIONS(620), - [sym_em_dash] = ACTIONS(620), - [sym_en_dash] = ACTIONS(628), - [sym_backslash_escape] = ACTIONS(628), - [anon_sym_LT] = ACTIONS(630), - [anon_sym_LBRACE_EQ] = ACTIONS(632), - [anon_sym_LBRACE_PLUS] = ACTIONS(634), - [anon_sym_LBRACE_DASH] = ACTIONS(636), - [sym_symbol] = ACTIONS(620), - [anon_sym_LBRACE_CARET] = ACTIONS(638), - [anon_sym_CARET] = ACTIONS(638), - [anon_sym_LBRACE_TILDE] = ACTIONS(640), - [anon_sym_TILDE] = ACTIONS(640), - [anon_sym_LBRACK_CARET] = ACTIONS(642), - [anon_sym_BANG_LBRACK] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_LBRACE2] = ACTIONS(628), - [anon_sym_DOLLAR] = ACTIONS(648), - [anon_sym_TODO] = ACTIONS(650), - [anon_sym_WIP] = ACTIONS(650), - [anon_sym_NOTE] = ACTIONS(652), - [anon_sym_INFO] = ACTIONS(652), - [anon_sym_XXX] = ACTIONS(652), - [sym_fixme] = ACTIONS(620), - [anon_sym_PIPE] = ACTIONS(620), - [sym__whitespace1] = ACTIONS(654), - [sym__newline] = ACTIONS(656), - [aux_sym__text_token1] = ACTIONS(658), - [sym__verbatim_begin] = ACTIONS(660), - }, - [75] = { - [sym__element] = STATE(75), - [sym_emphasis] = STATE(184), - [sym_emphasis_begin] = STATE(880), - [sym_strong] = STATE(184), - [sym_strong_begin] = STATE(90), - [sym__hard_line_break] = STATE(184), - [sym_hard_line_break] = STATE(184), - [sym__smart_punctuation] = STATE(184), - [sym_autolink] = STATE(184), - [sym_highlighted] = STATE(184), - [sym_insert] = STATE(184), - [sym_delete] = STATE(184), - [sym_superscript] = STATE(184), - [sym_subscript] = STATE(184), - [sym_footnote_reference] = STATE(184), - [sym__image] = STATE(184), - [sym_full_reference_image] = STATE(184), - [sym_collapsed_reference_image] = STATE(184), - [sym_inline_image] = STATE(184), - [sym__image_description] = STATE(609), - [sym__link] = STATE(184), - [sym_full_reference_link] = STATE(184), - [sym_collapsed_reference_link] = STATE(184), - [sym_inline_link] = STATE(184), - [sym_link_text] = STATE(612), - [sym__comment_with_spaces] = STATE(184), - [sym_span] = STATE(184), - [sym_raw_inline] = STATE(184), - [sym_math] = STATE(184), - [sym_verbatim] = STATE(184), - [sym__todo_highlights] = STATE(184), - [sym_todo] = STATE(184), - [sym_note] = STATE(184), - [sym__symbol_fallback] = STATE(184), - [aux_sym__text] = STATE(151), - [aux_sym__inline_repeat1] = STATE(75), - [ts_builtin_sym_end] = ACTIONS(662), - [anon_sym_LBRACE_] = ACTIONS(664), - [anon_sym__] = ACTIONS(667), - [anon_sym_LBRACE_STAR] = ACTIONS(670), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_BSLASH] = ACTIONS(676), - [sym_quotation_marks] = ACTIONS(667), - [sym_ellipsis] = ACTIONS(667), - [sym_em_dash] = ACTIONS(667), - [sym_en_dash] = ACTIONS(679), - [sym_backslash_escape] = ACTIONS(679), - [anon_sym_LT] = ACTIONS(682), - [anon_sym_LBRACE_EQ] = ACTIONS(685), - [anon_sym_LBRACE_PLUS] = ACTIONS(688), - [anon_sym_LBRACE_DASH] = ACTIONS(691), - [sym_symbol] = ACTIONS(667), - [anon_sym_LBRACE_CARET] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym_LBRACE_TILDE] = ACTIONS(697), - [anon_sym_TILDE] = ACTIONS(697), - [anon_sym_LBRACK_CARET] = ACTIONS(700), - [anon_sym_BANG_LBRACK] = ACTIONS(703), - [anon_sym_LBRACK] = ACTIONS(706), - [anon_sym_LBRACE2] = ACTIONS(679), - [anon_sym_DOLLAR] = ACTIONS(709), - [anon_sym_TODO] = ACTIONS(712), - [anon_sym_WIP] = ACTIONS(712), - [anon_sym_NOTE] = ACTIONS(715), - [anon_sym_INFO] = ACTIONS(715), - [anon_sym_XXX] = ACTIONS(715), - [sym_fixme] = ACTIONS(667), - [anon_sym_PIPE] = ACTIONS(667), - [sym__whitespace1] = ACTIONS(718), - [sym__newline] = ACTIONS(721), - [aux_sym__text_token1] = ACTIONS(724), - [sym__verbatim_begin] = ACTIONS(727), - }, - [76] = { - [sym__inline] = STATE(688), - [sym__element] = STATE(121), - [sym_emphasis] = STATE(467), - [sym_emphasis_begin] = STATE(900), - [sym_strong] = STATE(467), - [sym_strong_begin] = STATE(92), - [sym__hard_line_break] = STATE(467), - [sym_hard_line_break] = STATE(467), - [sym__smart_punctuation] = STATE(467), - [sym_autolink] = STATE(467), - [sym_highlighted] = STATE(467), - [sym_insert] = STATE(467), - [sym_delete] = STATE(467), - [sym_superscript] = STATE(467), - [sym_subscript] = STATE(467), - [sym_footnote_reference] = STATE(467), - [sym__image] = STATE(467), - [sym_full_reference_image] = STATE(467), - [sym_collapsed_reference_image] = STATE(467), - [sym_inline_image] = STATE(467), - [sym__image_description] = STATE(619), - [sym__link] = STATE(467), - [sym_full_reference_link] = STATE(467), - [sym_collapsed_reference_link] = STATE(467), - [sym_inline_link] = STATE(467), - [sym_link_text] = STATE(620), - [sym__comment_with_spaces] = STATE(467), - [sym_span] = STATE(467), - [sym_raw_inline] = STATE(467), - [sym_math] = STATE(467), - [sym_verbatim] = STATE(467), - [sym__todo_highlights] = STATE(467), - [sym_todo] = STATE(467), - [sym_note] = STATE(467), - [sym__symbol_fallback] = STATE(467), - [aux_sym__text] = STATE(171), - [aux_sym__inline_repeat1] = STATE(121), - [anon_sym_LBRACE_] = ACTIONS(618), - [anon_sym__] = ACTIONS(620), - [anon_sym_LBRACE_STAR] = ACTIONS(622), - [anon_sym_STAR] = ACTIONS(624), - [anon_sym_BSLASH] = ACTIONS(626), - [sym_quotation_marks] = ACTIONS(620), - [sym_ellipsis] = ACTIONS(620), - [sym_em_dash] = ACTIONS(620), - [sym_en_dash] = ACTIONS(628), - [sym_backslash_escape] = ACTIONS(628), - [anon_sym_LT] = ACTIONS(630), - [anon_sym_LBRACE_EQ] = ACTIONS(632), - [anon_sym_LBRACE_PLUS] = ACTIONS(634), - [anon_sym_LBRACE_DASH] = ACTIONS(636), - [sym_symbol] = ACTIONS(620), - [anon_sym_LBRACE_CARET] = ACTIONS(638), - [anon_sym_CARET] = ACTIONS(638), - [anon_sym_LBRACE_TILDE] = ACTIONS(640), - [anon_sym_TILDE] = ACTIONS(640), - [anon_sym_LBRACK_CARET] = ACTIONS(642), - [anon_sym_BANG_LBRACK] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_LBRACE2] = ACTIONS(628), - [anon_sym_DOLLAR] = ACTIONS(648), - [anon_sym_TODO] = ACTIONS(650), - [anon_sym_WIP] = ACTIONS(650), - [anon_sym_NOTE] = ACTIONS(652), - [anon_sym_INFO] = ACTIONS(652), - [anon_sym_XXX] = ACTIONS(652), - [sym_fixme] = ACTIONS(620), - [anon_sym_PIPE] = ACTIONS(620), - [sym__whitespace1] = ACTIONS(654), - [sym__newline] = ACTIONS(656), - [aux_sym__text_token1] = ACTIONS(658), - [sym__verbatim_begin] = ACTIONS(660), - }, - [77] = { - [sym__inline] = STATE(685), - [sym__element] = STATE(121), - [sym_emphasis] = STATE(467), - [sym_emphasis_begin] = STATE(900), - [sym_strong] = STATE(467), - [sym_strong_begin] = STATE(92), - [sym__hard_line_break] = STATE(467), - [sym_hard_line_break] = STATE(467), - [sym__smart_punctuation] = STATE(467), - [sym_autolink] = STATE(467), - [sym_highlighted] = STATE(467), - [sym_insert] = STATE(467), - [sym_delete] = STATE(467), - [sym_superscript] = STATE(467), - [sym_subscript] = STATE(467), - [sym_footnote_reference] = STATE(467), - [sym__image] = STATE(467), - [sym_full_reference_image] = STATE(467), - [sym_collapsed_reference_image] = STATE(467), - [sym_inline_image] = STATE(467), - [sym__image_description] = STATE(619), - [sym__link] = STATE(467), - [sym_full_reference_link] = STATE(467), - [sym_collapsed_reference_link] = STATE(467), - [sym_inline_link] = STATE(467), - [sym_link_text] = STATE(620), - [sym__comment_with_spaces] = STATE(467), - [sym_span] = STATE(467), - [sym_raw_inline] = STATE(467), - [sym_math] = STATE(467), - [sym_verbatim] = STATE(467), - [sym__todo_highlights] = STATE(467), - [sym_todo] = STATE(467), - [sym_note] = STATE(467), - [sym__symbol_fallback] = STATE(467), - [aux_sym__text] = STATE(171), - [aux_sym__inline_repeat1] = STATE(121), - [anon_sym_LBRACE_] = ACTIONS(618), - [anon_sym__] = ACTIONS(620), - [anon_sym_LBRACE_STAR] = ACTIONS(622), - [anon_sym_STAR] = ACTIONS(624), - [anon_sym_BSLASH] = ACTIONS(626), - [sym_quotation_marks] = ACTIONS(620), - [sym_ellipsis] = ACTIONS(620), - [sym_em_dash] = ACTIONS(620), - [sym_en_dash] = ACTIONS(628), - [sym_backslash_escape] = ACTIONS(628), - [anon_sym_LT] = ACTIONS(630), - [anon_sym_LBRACE_EQ] = ACTIONS(632), - [anon_sym_LBRACE_PLUS] = ACTIONS(634), - [anon_sym_LBRACE_DASH] = ACTIONS(636), - [sym_symbol] = ACTIONS(620), - [anon_sym_LBRACE_CARET] = ACTIONS(638), - [anon_sym_CARET] = ACTIONS(638), - [anon_sym_LBRACE_TILDE] = ACTIONS(640), - [anon_sym_TILDE] = ACTIONS(640), - [anon_sym_LBRACK_CARET] = ACTIONS(642), - [anon_sym_BANG_LBRACK] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_LBRACE2] = ACTIONS(628), - [anon_sym_DOLLAR] = ACTIONS(648), - [anon_sym_TODO] = ACTIONS(650), - [anon_sym_WIP] = ACTIONS(650), - [anon_sym_NOTE] = ACTIONS(652), - [anon_sym_INFO] = ACTIONS(652), - [anon_sym_XXX] = ACTIONS(652), - [sym_fixme] = ACTIONS(620), - [anon_sym_PIPE] = ACTIONS(620), - [sym__whitespace1] = ACTIONS(654), - [sym__newline] = ACTIONS(656), - [aux_sym__text_token1] = ACTIONS(658), - [sym__verbatim_begin] = ACTIONS(660), - }, - [78] = { - [sym__element] = STATE(85), - [sym_emphasis] = STATE(167), - [sym_emphasis_begin] = STATE(894), - [sym_strong] = STATE(167), - [sym_strong_begin] = STATE(117), - [sym__hard_line_break] = STATE(167), - [sym_hard_line_break] = STATE(167), - [sym__smart_punctuation] = STATE(167), - [sym_autolink] = STATE(167), - [sym_highlighted] = STATE(167), - [sym_insert] = STATE(167), - [sym_delete] = STATE(167), - [sym_superscript] = STATE(167), - [sym_subscript] = STATE(167), - [sym_footnote_reference] = STATE(167), - [sym__image] = STATE(167), - [sym_full_reference_image] = STATE(167), - [sym_collapsed_reference_image] = STATE(167), - [sym_inline_image] = STATE(167), - [sym__image_description] = STATE(613), - [sym__link] = STATE(167), - [sym_full_reference_link] = STATE(167), - [sym_collapsed_reference_link] = STATE(167), - [sym_inline_link] = STATE(167), - [sym_link_text] = STATE(614), - [sym__comment_with_spaces] = STATE(167), - [sym_span] = STATE(167), - [sym_raw_inline] = STATE(167), - [sym_math] = STATE(167), - [sym_verbatim] = STATE(167), - [sym__todo_highlights] = STATE(167), - [sym_todo] = STATE(167), - [sym_note] = STATE(167), - [sym__symbol_fallback] = STATE(167), - [aux_sym__text] = STATE(130), - [aux_sym__inline_repeat1] = STATE(85), - [anon_sym_LBRACE_] = ACTIONS(730), - [anon_sym__] = ACTIONS(732), - [anon_sym_LBRACE_STAR] = ACTIONS(734), - [anon_sym_STAR] = ACTIONS(736), - [anon_sym_BSLASH] = ACTIONS(738), - [sym_quotation_marks] = ACTIONS(732), - [sym_ellipsis] = ACTIONS(732), - [sym_em_dash] = ACTIONS(732), - [sym_en_dash] = ACTIONS(740), - [sym_backslash_escape] = ACTIONS(740), - [anon_sym_LT] = ACTIONS(742), - [anon_sym_LBRACE_EQ] = ACTIONS(744), - [anon_sym_LBRACE_PLUS] = ACTIONS(746), - [anon_sym_PLUS_RBRACE] = ACTIONS(550), - [anon_sym_LBRACE_DASH] = ACTIONS(748), - [sym_symbol] = ACTIONS(732), - [anon_sym_LBRACE_CARET] = ACTIONS(750), - [anon_sym_CARET] = ACTIONS(750), - [anon_sym_LBRACE_TILDE] = ACTIONS(752), - [anon_sym_TILDE] = ACTIONS(752), - [anon_sym_LBRACK_CARET] = ACTIONS(754), - [anon_sym_BANG_LBRACK] = ACTIONS(756), - [anon_sym_LBRACK] = ACTIONS(758), - [anon_sym_LBRACE2] = ACTIONS(740), - [anon_sym_DOLLAR] = ACTIONS(760), - [anon_sym_TODO] = ACTIONS(762), - [anon_sym_WIP] = ACTIONS(762), - [anon_sym_NOTE] = ACTIONS(764), - [anon_sym_INFO] = ACTIONS(764), - [anon_sym_XXX] = ACTIONS(764), - [sym_fixme] = ACTIONS(732), - [anon_sym_PIPE] = ACTIONS(732), - [sym__whitespace1] = ACTIONS(766), - [sym__newline] = ACTIONS(768), - [aux_sym__text_token1] = ACTIONS(770), - [sym__verbatim_begin] = ACTIONS(772), - }, - [79] = { - [sym__element] = STATE(79), - [sym_emphasis] = STATE(180), - [sym_emphasis_begin] = STATE(895), - [sym_strong] = STATE(180), - [sym_strong_begin] = STATE(114), - [sym__hard_line_break] = STATE(180), - [sym_hard_line_break] = STATE(180), - [sym__smart_punctuation] = STATE(180), - [sym_autolink] = STATE(180), - [sym_highlighted] = STATE(180), - [sym_insert] = STATE(180), - [sym_delete] = STATE(180), - [sym_superscript] = STATE(180), - [sym_subscript] = STATE(180), - [sym_footnote_reference] = STATE(180), - [sym__image] = STATE(180), - [sym_full_reference_image] = STATE(180), - [sym_collapsed_reference_image] = STATE(180), - [sym_inline_image] = STATE(180), - [sym__image_description] = STATE(632), - [sym__link] = STATE(180), - [sym_full_reference_link] = STATE(180), - [sym_collapsed_reference_link] = STATE(180), - [sym_inline_link] = STATE(180), - [sym_link_text] = STATE(633), - [sym__comment_with_spaces] = STATE(180), - [sym_span] = STATE(180), - [sym_raw_inline] = STATE(180), - [sym_math] = STATE(180), - [sym_verbatim] = STATE(180), - [sym__todo_highlights] = STATE(180), - [sym_todo] = STATE(180), - [sym_note] = STATE(180), - [sym__symbol_fallback] = STATE(180), - [aux_sym__text] = STATE(132), - [aux_sym__inline_repeat1] = STATE(79), - [anon_sym_LBRACE_] = ACTIONS(774), - [anon_sym__] = ACTIONS(777), - [anon_sym_LBRACE_STAR] = ACTIONS(780), - [anon_sym_STAR] = ACTIONS(783), - [anon_sym_BSLASH] = ACTIONS(786), - [sym_quotation_marks] = ACTIONS(777), - [sym_ellipsis] = ACTIONS(777), - [sym_em_dash] = ACTIONS(777), - [sym_en_dash] = ACTIONS(789), - [sym_backslash_escape] = ACTIONS(789), - [anon_sym_LT] = ACTIONS(792), - [anon_sym_LBRACE_EQ] = ACTIONS(795), - [anon_sym_LBRACE_PLUS] = ACTIONS(798), - [anon_sym_LBRACE_DASH] = ACTIONS(801), - [anon_sym_DASH_RBRACE] = ACTIONS(662), - [sym_symbol] = ACTIONS(777), - [anon_sym_LBRACE_CARET] = ACTIONS(804), - [anon_sym_CARET] = ACTIONS(804), - [anon_sym_LBRACE_TILDE] = ACTIONS(807), - [anon_sym_TILDE] = ACTIONS(807), - [anon_sym_LBRACK_CARET] = ACTIONS(810), - [anon_sym_BANG_LBRACK] = ACTIONS(813), - [anon_sym_LBRACK] = ACTIONS(816), - [anon_sym_LBRACE2] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(819), - [anon_sym_TODO] = ACTIONS(822), - [anon_sym_WIP] = ACTIONS(822), - [anon_sym_NOTE] = ACTIONS(825), - [anon_sym_INFO] = ACTIONS(825), - [anon_sym_XXX] = ACTIONS(825), - [sym_fixme] = ACTIONS(777), - [anon_sym_PIPE] = ACTIONS(777), - [sym__whitespace1] = ACTIONS(828), - [sym__newline] = ACTIONS(831), - [aux_sym__text_token1] = ACTIONS(834), - [sym__verbatim_begin] = ACTIONS(837), - }, - [80] = { - [sym__inline] = STATE(652), - [sym__element] = STATE(121), - [sym_emphasis] = STATE(467), - [sym_emphasis_begin] = STATE(900), - [sym_strong] = STATE(467), - [sym_strong_begin] = STATE(92), - [sym__hard_line_break] = STATE(467), - [sym_hard_line_break] = STATE(467), - [sym__smart_punctuation] = STATE(467), - [sym_autolink] = STATE(467), - [sym_highlighted] = STATE(467), - [sym_insert] = STATE(467), - [sym_delete] = STATE(467), - [sym_superscript] = STATE(467), - [sym_subscript] = STATE(467), - [sym_footnote_reference] = STATE(467), - [sym__image] = STATE(467), - [sym_full_reference_image] = STATE(467), - [sym_collapsed_reference_image] = STATE(467), - [sym_inline_image] = STATE(467), - [sym__image_description] = STATE(619), - [sym__link] = STATE(467), - [sym_full_reference_link] = STATE(467), - [sym_collapsed_reference_link] = STATE(467), - [sym_inline_link] = STATE(467), - [sym_link_text] = STATE(620), - [sym__comment_with_spaces] = STATE(467), - [sym_span] = STATE(467), - [sym_raw_inline] = STATE(467), - [sym_math] = STATE(467), - [sym_verbatim] = STATE(467), - [sym__todo_highlights] = STATE(467), - [sym_todo] = STATE(467), - [sym_note] = STATE(467), - [sym__symbol_fallback] = STATE(467), - [aux_sym__text] = STATE(171), - [aux_sym__inline_repeat1] = STATE(121), - [anon_sym_LBRACE_] = ACTIONS(618), - [anon_sym__] = ACTIONS(620), - [anon_sym_LBRACE_STAR] = ACTIONS(622), - [anon_sym_STAR] = ACTIONS(624), - [anon_sym_BSLASH] = ACTIONS(626), - [sym_quotation_marks] = ACTIONS(620), - [sym_ellipsis] = ACTIONS(620), - [sym_em_dash] = ACTIONS(620), - [sym_en_dash] = ACTIONS(628), - [sym_backslash_escape] = ACTIONS(628), - [anon_sym_LT] = ACTIONS(630), - [anon_sym_LBRACE_EQ] = ACTIONS(632), - [anon_sym_LBRACE_PLUS] = ACTIONS(634), - [anon_sym_LBRACE_DASH] = ACTIONS(636), - [sym_symbol] = ACTIONS(620), - [anon_sym_LBRACE_CARET] = ACTIONS(638), - [anon_sym_CARET] = ACTIONS(638), - [anon_sym_LBRACE_TILDE] = ACTIONS(640), - [anon_sym_TILDE] = ACTIONS(640), - [anon_sym_LBRACK_CARET] = ACTIONS(642), - [anon_sym_BANG_LBRACK] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_LBRACE2] = ACTIONS(628), - [anon_sym_DOLLAR] = ACTIONS(648), - [anon_sym_TODO] = ACTIONS(650), - [anon_sym_WIP] = ACTIONS(650), - [anon_sym_NOTE] = ACTIONS(652), - [anon_sym_INFO] = ACTIONS(652), - [anon_sym_XXX] = ACTIONS(652), - [sym_fixme] = ACTIONS(620), - [anon_sym_PIPE] = ACTIONS(620), - [sym__whitespace1] = ACTIONS(654), - [sym__newline] = ACTIONS(656), - [aux_sym__text_token1] = ACTIONS(658), - [sym__verbatim_begin] = ACTIONS(660), - }, - [81] = { - [sym__inline] = STATE(671), - [sym__element] = STATE(121), - [sym_emphasis] = STATE(467), - [sym_emphasis_begin] = STATE(900), - [sym_strong] = STATE(467), - [sym_strong_begin] = STATE(92), - [sym__hard_line_break] = STATE(467), - [sym_hard_line_break] = STATE(467), - [sym__smart_punctuation] = STATE(467), - [sym_autolink] = STATE(467), - [sym_highlighted] = STATE(467), - [sym_insert] = STATE(467), - [sym_delete] = STATE(467), - [sym_superscript] = STATE(467), - [sym_subscript] = STATE(467), - [sym_footnote_reference] = STATE(467), - [sym__image] = STATE(467), - [sym_full_reference_image] = STATE(467), - [sym_collapsed_reference_image] = STATE(467), - [sym_inline_image] = STATE(467), - [sym__image_description] = STATE(619), - [sym__link] = STATE(467), - [sym_full_reference_link] = STATE(467), - [sym_collapsed_reference_link] = STATE(467), - [sym_inline_link] = STATE(467), - [sym_link_text] = STATE(620), - [sym__comment_with_spaces] = STATE(467), - [sym_span] = STATE(467), - [sym_raw_inline] = STATE(467), - [sym_math] = STATE(467), - [sym_verbatim] = STATE(467), - [sym__todo_highlights] = STATE(467), - [sym_todo] = STATE(467), - [sym_note] = STATE(467), - [sym__symbol_fallback] = STATE(467), - [aux_sym__text] = STATE(171), - [aux_sym__inline_repeat1] = STATE(121), - [anon_sym_LBRACE_] = ACTIONS(618), - [anon_sym__] = ACTIONS(620), - [anon_sym_LBRACE_STAR] = ACTIONS(622), - [anon_sym_STAR] = ACTIONS(624), - [anon_sym_BSLASH] = ACTIONS(626), - [sym_quotation_marks] = ACTIONS(620), - [sym_ellipsis] = ACTIONS(620), - [sym_em_dash] = ACTIONS(620), - [sym_en_dash] = ACTIONS(628), - [sym_backslash_escape] = ACTIONS(628), - [anon_sym_LT] = ACTIONS(630), - [anon_sym_LBRACE_EQ] = ACTIONS(632), - [anon_sym_LBRACE_PLUS] = ACTIONS(634), - [anon_sym_LBRACE_DASH] = ACTIONS(636), - [sym_symbol] = ACTIONS(620), - [anon_sym_LBRACE_CARET] = ACTIONS(638), - [anon_sym_CARET] = ACTIONS(638), - [anon_sym_LBRACE_TILDE] = ACTIONS(640), - [anon_sym_TILDE] = ACTIONS(640), - [anon_sym_LBRACK_CARET] = ACTIONS(642), - [anon_sym_BANG_LBRACK] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_LBRACE2] = ACTIONS(628), - [anon_sym_DOLLAR] = ACTIONS(648), - [anon_sym_TODO] = ACTIONS(650), - [anon_sym_WIP] = ACTIONS(650), - [anon_sym_NOTE] = ACTIONS(652), - [anon_sym_INFO] = ACTIONS(652), - [anon_sym_XXX] = ACTIONS(652), - [sym_fixme] = ACTIONS(620), - [anon_sym_PIPE] = ACTIONS(620), - [sym__whitespace1] = ACTIONS(654), - [sym__newline] = ACTIONS(656), - [aux_sym__text_token1] = ACTIONS(658), - [sym__verbatim_begin] = ACTIONS(660), - }, - [82] = { - [sym__inline] = STATE(666), - [sym__element] = STATE(121), - [sym_emphasis] = STATE(467), - [sym_emphasis_begin] = STATE(900), - [sym_strong] = STATE(467), - [sym_strong_begin] = STATE(92), - [sym__hard_line_break] = STATE(467), - [sym_hard_line_break] = STATE(467), - [sym__smart_punctuation] = STATE(467), - [sym_autolink] = STATE(467), - [sym_highlighted] = STATE(467), - [sym_insert] = STATE(467), - [sym_delete] = STATE(467), - [sym_superscript] = STATE(467), - [sym_subscript] = STATE(467), - [sym_footnote_reference] = STATE(467), - [sym__image] = STATE(467), - [sym_full_reference_image] = STATE(467), - [sym_collapsed_reference_image] = STATE(467), - [sym_inline_image] = STATE(467), - [sym__image_description] = STATE(619), - [sym__link] = STATE(467), - [sym_full_reference_link] = STATE(467), - [sym_collapsed_reference_link] = STATE(467), - [sym_inline_link] = STATE(467), - [sym_link_text] = STATE(620), - [sym__comment_with_spaces] = STATE(467), - [sym_span] = STATE(467), - [sym_raw_inline] = STATE(467), - [sym_math] = STATE(467), - [sym_verbatim] = STATE(467), - [sym__todo_highlights] = STATE(467), - [sym_todo] = STATE(467), - [sym_note] = STATE(467), - [sym__symbol_fallback] = STATE(467), - [aux_sym__text] = STATE(171), - [aux_sym__inline_repeat1] = STATE(121), - [anon_sym_LBRACE_] = ACTIONS(618), - [anon_sym__] = ACTIONS(620), - [anon_sym_LBRACE_STAR] = ACTIONS(622), - [anon_sym_STAR] = ACTIONS(624), - [anon_sym_BSLASH] = ACTIONS(626), - [sym_quotation_marks] = ACTIONS(620), - [sym_ellipsis] = ACTIONS(620), - [sym_em_dash] = ACTIONS(620), - [sym_en_dash] = ACTIONS(628), - [sym_backslash_escape] = ACTIONS(628), - [anon_sym_LT] = ACTIONS(630), - [anon_sym_LBRACE_EQ] = ACTIONS(632), - [anon_sym_LBRACE_PLUS] = ACTIONS(634), - [anon_sym_LBRACE_DASH] = ACTIONS(636), - [sym_symbol] = ACTIONS(620), - [anon_sym_LBRACE_CARET] = ACTIONS(638), - [anon_sym_CARET] = ACTIONS(638), - [anon_sym_LBRACE_TILDE] = ACTIONS(640), - [anon_sym_TILDE] = ACTIONS(640), - [anon_sym_LBRACK_CARET] = ACTIONS(642), - [anon_sym_BANG_LBRACK] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_LBRACE2] = ACTIONS(628), - [anon_sym_DOLLAR] = ACTIONS(648), - [anon_sym_TODO] = ACTIONS(650), - [anon_sym_WIP] = ACTIONS(650), - [anon_sym_NOTE] = ACTIONS(652), - [anon_sym_INFO] = ACTIONS(652), - [anon_sym_XXX] = ACTIONS(652), - [sym_fixme] = ACTIONS(620), - [anon_sym_PIPE] = ACTIONS(620), - [sym__whitespace1] = ACTIONS(654), - [sym__newline] = ACTIONS(656), - [aux_sym__text_token1] = ACTIONS(658), - [sym__verbatim_begin] = ACTIONS(660), - }, - [83] = { - [sym__inline] = STATE(674), - [sym__element] = STATE(121), - [sym_emphasis] = STATE(467), - [sym_emphasis_begin] = STATE(900), - [sym_strong] = STATE(467), - [sym_strong_begin] = STATE(92), - [sym__hard_line_break] = STATE(467), - [sym_hard_line_break] = STATE(467), - [sym__smart_punctuation] = STATE(467), - [sym_autolink] = STATE(467), - [sym_highlighted] = STATE(467), - [sym_insert] = STATE(467), - [sym_delete] = STATE(467), - [sym_superscript] = STATE(467), - [sym_subscript] = STATE(467), - [sym_footnote_reference] = STATE(467), - [sym__image] = STATE(467), - [sym_full_reference_image] = STATE(467), - [sym_collapsed_reference_image] = STATE(467), - [sym_inline_image] = STATE(467), - [sym__image_description] = STATE(619), - [sym__link] = STATE(467), - [sym_full_reference_link] = STATE(467), - [sym_collapsed_reference_link] = STATE(467), - [sym_inline_link] = STATE(467), - [sym_link_text] = STATE(620), - [sym__comment_with_spaces] = STATE(467), - [sym_span] = STATE(467), - [sym_raw_inline] = STATE(467), - [sym_math] = STATE(467), - [sym_verbatim] = STATE(467), - [sym__todo_highlights] = STATE(467), - [sym_todo] = STATE(467), - [sym_note] = STATE(467), - [sym__symbol_fallback] = STATE(467), - [aux_sym__text] = STATE(171), - [aux_sym__inline_repeat1] = STATE(121), - [anon_sym_LBRACE_] = ACTIONS(618), - [anon_sym__] = ACTIONS(620), - [anon_sym_LBRACE_STAR] = ACTIONS(622), - [anon_sym_STAR] = ACTIONS(624), - [anon_sym_BSLASH] = ACTIONS(626), - [sym_quotation_marks] = ACTIONS(620), - [sym_ellipsis] = ACTIONS(620), - [sym_em_dash] = ACTIONS(620), - [sym_en_dash] = ACTIONS(628), - [sym_backslash_escape] = ACTIONS(628), - [anon_sym_LT] = ACTIONS(630), - [anon_sym_LBRACE_EQ] = ACTIONS(632), - [anon_sym_LBRACE_PLUS] = ACTIONS(634), - [anon_sym_LBRACE_DASH] = ACTIONS(636), - [sym_symbol] = ACTIONS(620), - [anon_sym_LBRACE_CARET] = ACTIONS(638), - [anon_sym_CARET] = ACTIONS(638), - [anon_sym_LBRACE_TILDE] = ACTIONS(640), - [anon_sym_TILDE] = ACTIONS(640), - [anon_sym_LBRACK_CARET] = ACTIONS(642), - [anon_sym_BANG_LBRACK] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_LBRACE2] = ACTIONS(628), - [anon_sym_DOLLAR] = ACTIONS(648), - [anon_sym_TODO] = ACTIONS(650), - [anon_sym_WIP] = ACTIONS(650), - [anon_sym_NOTE] = ACTIONS(652), - [anon_sym_INFO] = ACTIONS(652), - [anon_sym_XXX] = ACTIONS(652), - [sym_fixme] = ACTIONS(620), - [anon_sym_PIPE] = ACTIONS(620), - [sym__whitespace1] = ACTIONS(654), - [sym__newline] = ACTIONS(656), - [aux_sym__text_token1] = ACTIONS(658), - [sym__verbatim_begin] = ACTIONS(660), - }, - [84] = { - [sym__inline] = STATE(686), - [sym__element] = STATE(121), - [sym_emphasis] = STATE(467), - [sym_emphasis_begin] = STATE(900), - [sym_strong] = STATE(467), - [sym_strong_begin] = STATE(92), - [sym__hard_line_break] = STATE(467), - [sym_hard_line_break] = STATE(467), - [sym__smart_punctuation] = STATE(467), - [sym_autolink] = STATE(467), - [sym_highlighted] = STATE(467), - [sym_insert] = STATE(467), - [sym_delete] = STATE(467), - [sym_superscript] = STATE(467), - [sym_subscript] = STATE(467), - [sym_footnote_reference] = STATE(467), - [sym__image] = STATE(467), - [sym_full_reference_image] = STATE(467), - [sym_collapsed_reference_image] = STATE(467), - [sym_inline_image] = STATE(467), - [sym__image_description] = STATE(619), - [sym__link] = STATE(467), - [sym_full_reference_link] = STATE(467), - [sym_collapsed_reference_link] = STATE(467), - [sym_inline_link] = STATE(467), - [sym_link_text] = STATE(620), - [sym__comment_with_spaces] = STATE(467), - [sym_span] = STATE(467), - [sym_raw_inline] = STATE(467), - [sym_math] = STATE(467), - [sym_verbatim] = STATE(467), - [sym__todo_highlights] = STATE(467), - [sym_todo] = STATE(467), - [sym_note] = STATE(467), - [sym__symbol_fallback] = STATE(467), - [aux_sym__text] = STATE(171), - [aux_sym__inline_repeat1] = STATE(121), - [anon_sym_LBRACE_] = ACTIONS(618), - [anon_sym__] = ACTIONS(620), - [anon_sym_LBRACE_STAR] = ACTIONS(622), - [anon_sym_STAR] = ACTIONS(624), - [anon_sym_BSLASH] = ACTIONS(626), - [sym_quotation_marks] = ACTIONS(620), - [sym_ellipsis] = ACTIONS(620), - [sym_em_dash] = ACTIONS(620), - [sym_en_dash] = ACTIONS(628), - [sym_backslash_escape] = ACTIONS(628), - [anon_sym_LT] = ACTIONS(630), - [anon_sym_LBRACE_EQ] = ACTIONS(632), - [anon_sym_LBRACE_PLUS] = ACTIONS(634), - [anon_sym_LBRACE_DASH] = ACTIONS(636), - [sym_symbol] = ACTIONS(620), - [anon_sym_LBRACE_CARET] = ACTIONS(638), - [anon_sym_CARET] = ACTIONS(638), - [anon_sym_LBRACE_TILDE] = ACTIONS(640), - [anon_sym_TILDE] = ACTIONS(640), - [anon_sym_LBRACK_CARET] = ACTIONS(642), - [anon_sym_BANG_LBRACK] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_LBRACE2] = ACTIONS(628), - [anon_sym_DOLLAR] = ACTIONS(648), - [anon_sym_TODO] = ACTIONS(650), - [anon_sym_WIP] = ACTIONS(650), - [anon_sym_NOTE] = ACTIONS(652), - [anon_sym_INFO] = ACTIONS(652), - [anon_sym_XXX] = ACTIONS(652), - [sym_fixme] = ACTIONS(620), - [anon_sym_PIPE] = ACTIONS(620), - [sym__whitespace1] = ACTIONS(654), - [sym__newline] = ACTIONS(656), - [aux_sym__text_token1] = ACTIONS(658), - [sym__verbatim_begin] = ACTIONS(660), - }, - [85] = { - [sym__element] = STATE(85), - [sym_emphasis] = STATE(167), - [sym_emphasis_begin] = STATE(894), - [sym_strong] = STATE(167), - [sym_strong_begin] = STATE(117), - [sym__hard_line_break] = STATE(167), - [sym_hard_line_break] = STATE(167), - [sym__smart_punctuation] = STATE(167), - [sym_autolink] = STATE(167), - [sym_highlighted] = STATE(167), - [sym_insert] = STATE(167), - [sym_delete] = STATE(167), - [sym_superscript] = STATE(167), - [sym_subscript] = STATE(167), - [sym_footnote_reference] = STATE(167), - [sym__image] = STATE(167), - [sym_full_reference_image] = STATE(167), - [sym_collapsed_reference_image] = STATE(167), - [sym_inline_image] = STATE(167), - [sym__image_description] = STATE(613), - [sym__link] = STATE(167), - [sym_full_reference_link] = STATE(167), - [sym_collapsed_reference_link] = STATE(167), - [sym_inline_link] = STATE(167), - [sym_link_text] = STATE(614), - [sym__comment_with_spaces] = STATE(167), - [sym_span] = STATE(167), - [sym_raw_inline] = STATE(167), - [sym_math] = STATE(167), - [sym_verbatim] = STATE(167), - [sym__todo_highlights] = STATE(167), - [sym_todo] = STATE(167), - [sym_note] = STATE(167), - [sym__symbol_fallback] = STATE(167), - [aux_sym__text] = STATE(130), - [aux_sym__inline_repeat1] = STATE(85), - [anon_sym_LBRACE_] = ACTIONS(840), - [anon_sym__] = ACTIONS(843), - [anon_sym_LBRACE_STAR] = ACTIONS(846), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_BSLASH] = ACTIONS(852), - [sym_quotation_marks] = ACTIONS(843), - [sym_ellipsis] = ACTIONS(843), - [sym_em_dash] = ACTIONS(843), - [sym_en_dash] = ACTIONS(855), - [sym_backslash_escape] = ACTIONS(855), - [anon_sym_LT] = ACTIONS(858), - [anon_sym_LBRACE_EQ] = ACTIONS(861), - [anon_sym_LBRACE_PLUS] = ACTIONS(864), - [anon_sym_PLUS_RBRACE] = ACTIONS(662), - [anon_sym_LBRACE_DASH] = ACTIONS(867), - [sym_symbol] = ACTIONS(843), - [anon_sym_LBRACE_CARET] = ACTIONS(870), - [anon_sym_CARET] = ACTIONS(870), - [anon_sym_LBRACE_TILDE] = ACTIONS(873), - [anon_sym_TILDE] = ACTIONS(873), - [anon_sym_LBRACK_CARET] = ACTIONS(876), - [anon_sym_BANG_LBRACK] = ACTIONS(879), - [anon_sym_LBRACK] = ACTIONS(882), - [anon_sym_LBRACE2] = ACTIONS(855), - [anon_sym_DOLLAR] = ACTIONS(885), - [anon_sym_TODO] = ACTIONS(888), - [anon_sym_WIP] = ACTIONS(888), - [anon_sym_NOTE] = ACTIONS(891), - [anon_sym_INFO] = ACTIONS(891), - [anon_sym_XXX] = ACTIONS(891), - [sym_fixme] = ACTIONS(843), - [anon_sym_PIPE] = ACTIONS(843), - [sym__whitespace1] = ACTIONS(894), - [sym__newline] = ACTIONS(897), - [aux_sym__text_token1] = ACTIONS(900), - [sym__verbatim_begin] = ACTIONS(903), - }, - [86] = { - [sym__element] = STATE(86), - [sym_emphasis] = STATE(165), - [sym_emphasis_begin] = STATE(899), - [sym_strong] = STATE(165), - [sym_strong_begin] = STATE(96), - [sym__hard_line_break] = STATE(165), - [sym_hard_line_break] = STATE(165), - [sym__smart_punctuation] = STATE(165), - [sym_autolink] = STATE(165), - [sym_highlighted] = STATE(165), - [sym_insert] = STATE(165), - [sym_delete] = STATE(165), - [sym_superscript] = STATE(165), - [sym_subscript] = STATE(165), - [sym_footnote_reference] = STATE(165), - [sym__image] = STATE(165), - [sym_full_reference_image] = STATE(165), - [sym_collapsed_reference_image] = STATE(165), - [sym_inline_image] = STATE(165), - [sym__image_description] = STATE(607), - [sym__link] = STATE(165), - [sym_full_reference_link] = STATE(165), - [sym_collapsed_reference_link] = STATE(165), - [sym_inline_link] = STATE(165), - [sym_link_text] = STATE(611), - [sym__comment_with_spaces] = STATE(165), - [sym_span] = STATE(165), - [sym_raw_inline] = STATE(165), - [sym_math] = STATE(165), - [sym_verbatim] = STATE(165), - [sym__todo_highlights] = STATE(165), - [sym_todo] = STATE(165), - [sym_note] = STATE(165), - [sym__symbol_fallback] = STATE(165), - [aux_sym__text] = STATE(156), - [aux_sym__inline_repeat1] = STATE(86), - [anon_sym_LBRACE_] = ACTIONS(906), - [anon_sym__] = ACTIONS(909), - [anon_sym_LBRACE_STAR] = ACTIONS(912), - [anon_sym_STAR] = ACTIONS(915), - [aux_sym_strong_end_token1] = ACTIONS(662), - [anon_sym_BSLASH] = ACTIONS(918), - [sym_quotation_marks] = ACTIONS(909), - [sym_ellipsis] = ACTIONS(909), - [sym_em_dash] = ACTIONS(909), - [sym_en_dash] = ACTIONS(921), - [sym_backslash_escape] = ACTIONS(921), - [anon_sym_LT] = ACTIONS(924), - [anon_sym_LBRACE_EQ] = ACTIONS(927), - [anon_sym_LBRACE_PLUS] = ACTIONS(930), - [anon_sym_LBRACE_DASH] = ACTIONS(933), - [sym_symbol] = ACTIONS(909), - [anon_sym_LBRACE_CARET] = ACTIONS(936), - [anon_sym_CARET] = ACTIONS(936), + [sym__hard_line_break] = STATE(179), + [sym_hard_line_break] = STATE(179), + [sym__smart_punctuation] = STATE(179), + [sym_autolink] = STATE(179), + [sym_highlighted] = STATE(179), + [sym_insert] = STATE(179), + [sym_delete] = STATE(179), + [sym_superscript] = STATE(179), + [sym_subscript] = STATE(179), + [sym_footnote_reference] = STATE(179), + [sym__image] = STATE(179), + [sym_full_reference_image] = STATE(179), + [sym_collapsed_reference_image] = STATE(179), + [sym_inline_image] = STATE(179), + [sym__image_description] = STATE(720), + [sym__link] = STATE(179), + [sym_full_reference_link] = STATE(179), + [sym_collapsed_reference_link] = STATE(179), + [sym_inline_link] = STATE(179), + [sym_link_text] = STATE(697), + [sym__comment_with_spaces] = STATE(179), + [sym_span] = STATE(179), + [sym_raw_inline] = STATE(179), + [sym_math] = STATE(179), + [sym_verbatim] = STATE(179), + [sym__todo_highlights] = STATE(179), + [sym_todo] = STATE(179), + [sym_note] = STATE(179), + [sym__symbol_fallback] = STATE(179), + [aux_sym__text] = STATE(163), + [aux_sym__inline_repeat1] = STATE(131), + [anon_sym_LBRACE_] = ACTIONS(915), + [anon_sym__] = ACTIONS(917), + [anon_sym_LBRACE_STAR] = ACTIONS(919), + [anon_sym_STAR] = ACTIONS(921), + [anon_sym_BSLASH] = ACTIONS(923), + [sym_quotation_marks] = ACTIONS(925), + [sym_ellipsis] = ACTIONS(925), + [sym_em_dash] = ACTIONS(925), + [sym_en_dash] = ACTIONS(927), + [sym_backslash_escape] = ACTIONS(927), + [anon_sym_LT] = ACTIONS(929), + [anon_sym_LBRACE_EQ] = ACTIONS(931), + [anon_sym_LBRACE_PLUS] = ACTIONS(933), + [anon_sym_LBRACE_DASH] = ACTIONS(935), + [sym_symbol] = ACTIONS(925), + [anon_sym_LBRACE_CARET] = ACTIONS(937), + [anon_sym_CARET] = ACTIONS(937), [anon_sym_LBRACE_TILDE] = ACTIONS(939), [anon_sym_TILDE] = ACTIONS(939), - [anon_sym_LBRACK_CARET] = ACTIONS(942), - [anon_sym_BANG_LBRACK] = ACTIONS(945), - [anon_sym_LBRACK] = ACTIONS(948), - [anon_sym_LBRACE2] = ACTIONS(921), - [anon_sym_DOLLAR] = ACTIONS(951), - [anon_sym_TODO] = ACTIONS(954), - [anon_sym_WIP] = ACTIONS(954), - [anon_sym_NOTE] = ACTIONS(957), - [anon_sym_INFO] = ACTIONS(957), - [anon_sym_XXX] = ACTIONS(957), - [sym_fixme] = ACTIONS(909), - [anon_sym_PIPE] = ACTIONS(909), - [sym__whitespace1] = ACTIONS(960), - [sym__newline] = ACTIONS(963), - [aux_sym__text_token1] = ACTIONS(966), - [sym__verbatim_begin] = ACTIONS(969), - }, - [87] = { - [sym__inline] = STATE(779), - [sym__element] = STATE(105), - [sym_emphasis] = STATE(185), - [sym_emphasis_begin] = STATE(901), - [sym_strong] = STATE(185), - [sym_strong_begin] = STATE(89), - [sym__hard_line_break] = STATE(185), - [sym_hard_line_break] = STATE(185), - [sym__smart_punctuation] = STATE(185), - [sym_autolink] = STATE(185), - [sym_highlighted] = STATE(185), - [sym_insert] = STATE(185), - [sym_delete] = STATE(185), - [sym_superscript] = STATE(185), - [sym_subscript] = STATE(185), - [sym_footnote_reference] = STATE(185), - [sym__image] = STATE(185), - [sym_full_reference_image] = STATE(185), - [sym_collapsed_reference_image] = STATE(185), - [sym_inline_image] = STATE(185), - [sym__image_description] = STATE(628), - [sym__link] = STATE(185), - [sym_full_reference_link] = STATE(185), - [sym_collapsed_reference_link] = STATE(185), - [sym_inline_link] = STATE(185), - [sym_link_text] = STATE(629), - [sym__comment_with_spaces] = STATE(185), - [sym_span] = STATE(185), - [sym_raw_inline] = STATE(185), - [sym_math] = STATE(185), - [sym_verbatim] = STATE(185), - [sym__todo_highlights] = STATE(185), - [sym_todo] = STATE(185), - [sym_note] = STATE(185), - [sym__symbol_fallback] = STATE(185), - [aux_sym__text] = STATE(134), - [aux_sym__inline_repeat1] = STATE(105), - [anon_sym_LBRACE_] = ACTIONS(972), - [anon_sym__] = ACTIONS(974), - [anon_sym_LBRACE_STAR] = ACTIONS(976), - [anon_sym_STAR] = ACTIONS(978), - [anon_sym_BSLASH] = ACTIONS(980), - [sym_quotation_marks] = ACTIONS(974), - [sym_ellipsis] = ACTIONS(974), - [sym_em_dash] = ACTIONS(974), - [sym_en_dash] = ACTIONS(982), - [sym_backslash_escape] = ACTIONS(982), - [anon_sym_LT] = ACTIONS(984), - [anon_sym_LBRACE_EQ] = ACTIONS(986), - [anon_sym_LBRACE_PLUS] = ACTIONS(988), - [anon_sym_LBRACE_DASH] = ACTIONS(990), - [sym_symbol] = ACTIONS(974), - [anon_sym_LBRACE_CARET] = ACTIONS(992), - [anon_sym_CARET] = ACTIONS(992), - [anon_sym_LBRACE_TILDE] = ACTIONS(994), - [anon_sym_TILDE] = ACTIONS(994), - [anon_sym_LBRACK_CARET] = ACTIONS(996), - [anon_sym_BANG_LBRACK] = ACTIONS(998), - [anon_sym_LBRACK] = ACTIONS(1000), - [anon_sym_LBRACE2] = ACTIONS(982), - [anon_sym_DOLLAR] = ACTIONS(1002), - [anon_sym_TODO] = ACTIONS(1004), - [anon_sym_WIP] = ACTIONS(1004), - [anon_sym_NOTE] = ACTIONS(1006), - [anon_sym_INFO] = ACTIONS(1006), - [anon_sym_XXX] = ACTIONS(1006), - [sym_fixme] = ACTIONS(974), - [anon_sym_PIPE] = ACTIONS(974), - [sym__whitespace1] = ACTIONS(1008), - [sym__newline] = ACTIONS(1010), - [aux_sym__text_token1] = ACTIONS(1012), - [sym__verbatim_begin] = ACTIONS(1014), - }, - [88] = { - [sym__element] = STATE(86), - [sym_emphasis] = STATE(165), - [sym_emphasis_begin] = STATE(899), - [sym_strong] = STATE(165), - [sym_strong_begin] = STATE(96), - [sym__hard_line_break] = STATE(165), - [sym_hard_line_break] = STATE(165), - [sym__smart_punctuation] = STATE(165), - [sym_autolink] = STATE(165), - [sym_highlighted] = STATE(165), - [sym_insert] = STATE(165), - [sym_delete] = STATE(165), - [sym_superscript] = STATE(165), - [sym_subscript] = STATE(165), - [sym_footnote_reference] = STATE(165), - [sym__image] = STATE(165), - [sym_full_reference_image] = STATE(165), - [sym_collapsed_reference_image] = STATE(165), - [sym_inline_image] = STATE(165), - [sym__image_description] = STATE(607), - [sym__link] = STATE(165), - [sym_full_reference_link] = STATE(165), - [sym_collapsed_reference_link] = STATE(165), - [sym_inline_link] = STATE(165), - [sym_link_text] = STATE(611), - [sym__comment_with_spaces] = STATE(165), - [sym_span] = STATE(165), - [sym_raw_inline] = STATE(165), - [sym_math] = STATE(165), - [sym_verbatim] = STATE(165), - [sym__todo_highlights] = STATE(165), - [sym_todo] = STATE(165), - [sym_note] = STATE(165), - [sym__symbol_fallback] = STATE(165), - [aux_sym__text] = STATE(156), - [aux_sym__inline_repeat1] = STATE(86), - [anon_sym_LBRACE_] = ACTIONS(1016), - [anon_sym__] = ACTIONS(1018), - [anon_sym_LBRACE_STAR] = ACTIONS(1020), - [anon_sym_STAR] = ACTIONS(548), - [aux_sym_strong_end_token1] = ACTIONS(550), - [anon_sym_BSLASH] = ACTIONS(1022), - [sym_quotation_marks] = ACTIONS(1018), - [sym_ellipsis] = ACTIONS(1018), - [sym_em_dash] = ACTIONS(1018), - [sym_en_dash] = ACTIONS(1024), - [sym_backslash_escape] = ACTIONS(1024), - [anon_sym_LT] = ACTIONS(1026), - [anon_sym_LBRACE_EQ] = ACTIONS(1028), - [anon_sym_LBRACE_PLUS] = ACTIONS(1030), - [anon_sym_LBRACE_DASH] = ACTIONS(1032), - [sym_symbol] = ACTIONS(1018), - [anon_sym_LBRACE_CARET] = ACTIONS(1034), - [anon_sym_CARET] = ACTIONS(1034), - [anon_sym_LBRACE_TILDE] = ACTIONS(1036), - [anon_sym_TILDE] = ACTIONS(1036), - [anon_sym_LBRACK_CARET] = ACTIONS(1038), - [anon_sym_BANG_LBRACK] = ACTIONS(1040), - [anon_sym_LBRACK] = ACTIONS(1042), - [anon_sym_LBRACE2] = ACTIONS(1024), - [anon_sym_DOLLAR] = ACTIONS(1044), - [anon_sym_TODO] = ACTIONS(1046), - [anon_sym_WIP] = ACTIONS(1046), - [anon_sym_NOTE] = ACTIONS(1048), - [anon_sym_INFO] = ACTIONS(1048), - [anon_sym_XXX] = ACTIONS(1048), - [sym_fixme] = ACTIONS(1018), - [anon_sym_PIPE] = ACTIONS(1018), - [sym__whitespace1] = ACTIONS(1050), - [sym__newline] = ACTIONS(1052), - [aux_sym__text_token1] = ACTIONS(1054), - [sym__verbatim_begin] = ACTIONS(1056), - }, - [89] = { - [sym__inline] = STATE(649), - [sym__element] = STATE(88), - [sym_emphasis] = STATE(165), - [sym_emphasis_begin] = STATE(899), - [sym_strong] = STATE(165), - [sym_strong_begin] = STATE(96), - [sym__hard_line_break] = STATE(165), - [sym_hard_line_break] = STATE(165), - [sym__smart_punctuation] = STATE(165), - [sym_autolink] = STATE(165), - [sym_highlighted] = STATE(165), - [sym_insert] = STATE(165), - [sym_delete] = STATE(165), - [sym_superscript] = STATE(165), - [sym_subscript] = STATE(165), - [sym_footnote_reference] = STATE(165), - [sym__image] = STATE(165), - [sym_full_reference_image] = STATE(165), - [sym_collapsed_reference_image] = STATE(165), - [sym_inline_image] = STATE(165), - [sym__image_description] = STATE(607), - [sym__link] = STATE(165), - [sym_full_reference_link] = STATE(165), - [sym_collapsed_reference_link] = STATE(165), - [sym_inline_link] = STATE(165), - [sym_link_text] = STATE(611), - [sym__comment_with_spaces] = STATE(165), - [sym_span] = STATE(165), - [sym_raw_inline] = STATE(165), - [sym_math] = STATE(165), - [sym_verbatim] = STATE(165), - [sym__todo_highlights] = STATE(165), - [sym_todo] = STATE(165), - [sym_note] = STATE(165), - [sym__symbol_fallback] = STATE(165), - [aux_sym__text] = STATE(156), - [aux_sym__inline_repeat1] = STATE(88), - [anon_sym_LBRACE_] = ACTIONS(1016), - [anon_sym__] = ACTIONS(1018), - [anon_sym_LBRACE_STAR] = ACTIONS(1020), - [anon_sym_STAR] = ACTIONS(1058), - [anon_sym_BSLASH] = ACTIONS(1022), - [sym_quotation_marks] = ACTIONS(1018), - [sym_ellipsis] = ACTIONS(1018), - [sym_em_dash] = ACTIONS(1018), - [sym_en_dash] = ACTIONS(1024), - [sym_backslash_escape] = ACTIONS(1024), - [anon_sym_LT] = ACTIONS(1026), - [anon_sym_LBRACE_EQ] = ACTIONS(1028), - [anon_sym_LBRACE_PLUS] = ACTIONS(1030), - [anon_sym_LBRACE_DASH] = ACTIONS(1032), - [sym_symbol] = ACTIONS(1018), - [anon_sym_LBRACE_CARET] = ACTIONS(1034), - [anon_sym_CARET] = ACTIONS(1034), - [anon_sym_LBRACE_TILDE] = ACTIONS(1036), - [anon_sym_TILDE] = ACTIONS(1036), - [anon_sym_LBRACK_CARET] = ACTIONS(1038), - [anon_sym_BANG_LBRACK] = ACTIONS(1040), - [anon_sym_LBRACK] = ACTIONS(1042), - [anon_sym_LBRACE2] = ACTIONS(1024), - [anon_sym_DOLLAR] = ACTIONS(1044), - [anon_sym_TODO] = ACTIONS(1046), - [anon_sym_WIP] = ACTIONS(1046), - [anon_sym_NOTE] = ACTIONS(1048), - [anon_sym_INFO] = ACTIONS(1048), - [anon_sym_XXX] = ACTIONS(1048), - [sym_fixme] = ACTIONS(1018), - [anon_sym_PIPE] = ACTIONS(1018), - [sym__whitespace1] = ACTIONS(1060), - [sym__newline] = ACTIONS(1062), - [aux_sym__text_token1] = ACTIONS(1054), - [sym__verbatim_begin] = ACTIONS(1056), - }, - [90] = { - [sym__inline] = STATE(640), - [sym__element] = STATE(88), - [sym_emphasis] = STATE(165), - [sym_emphasis_begin] = STATE(899), - [sym_strong] = STATE(165), - [sym_strong_begin] = STATE(96), - [sym__hard_line_break] = STATE(165), - [sym_hard_line_break] = STATE(165), - [sym__smart_punctuation] = STATE(165), - [sym_autolink] = STATE(165), - [sym_highlighted] = STATE(165), - [sym_insert] = STATE(165), - [sym_delete] = STATE(165), - [sym_superscript] = STATE(165), - [sym_subscript] = STATE(165), - [sym_footnote_reference] = STATE(165), - [sym__image] = STATE(165), - [sym_full_reference_image] = STATE(165), - [sym_collapsed_reference_image] = STATE(165), - [sym_inline_image] = STATE(165), - [sym__image_description] = STATE(607), - [sym__link] = STATE(165), - [sym_full_reference_link] = STATE(165), - [sym_collapsed_reference_link] = STATE(165), - [sym_inline_link] = STATE(165), - [sym_link_text] = STATE(611), - [sym__comment_with_spaces] = STATE(165), - [sym_span] = STATE(165), - [sym_raw_inline] = STATE(165), - [sym_math] = STATE(165), - [sym_verbatim] = STATE(165), - [sym__todo_highlights] = STATE(165), - [sym_todo] = STATE(165), - [sym_note] = STATE(165), - [sym__symbol_fallback] = STATE(165), - [aux_sym__text] = STATE(156), - [aux_sym__inline_repeat1] = STATE(88), - [anon_sym_LBRACE_] = ACTIONS(1016), - [anon_sym__] = ACTIONS(1018), - [anon_sym_LBRACE_STAR] = ACTIONS(1020), - [anon_sym_STAR] = ACTIONS(1058), - [anon_sym_BSLASH] = ACTIONS(1022), - [sym_quotation_marks] = ACTIONS(1018), - [sym_ellipsis] = ACTIONS(1018), - [sym_em_dash] = ACTIONS(1018), - [sym_en_dash] = ACTIONS(1024), - [sym_backslash_escape] = ACTIONS(1024), - [anon_sym_LT] = ACTIONS(1026), - [anon_sym_LBRACE_EQ] = ACTIONS(1028), - [anon_sym_LBRACE_PLUS] = ACTIONS(1030), - [anon_sym_LBRACE_DASH] = ACTIONS(1032), - [sym_symbol] = ACTIONS(1018), - [anon_sym_LBRACE_CARET] = ACTIONS(1034), - [anon_sym_CARET] = ACTIONS(1034), - [anon_sym_LBRACE_TILDE] = ACTIONS(1036), - [anon_sym_TILDE] = ACTIONS(1036), - [anon_sym_LBRACK_CARET] = ACTIONS(1038), - [anon_sym_BANG_LBRACK] = ACTIONS(1040), - [anon_sym_LBRACK] = ACTIONS(1042), - [anon_sym_LBRACE2] = ACTIONS(1024), - [anon_sym_DOLLAR] = ACTIONS(1044), - [anon_sym_TODO] = ACTIONS(1046), - [anon_sym_WIP] = ACTIONS(1046), - [anon_sym_NOTE] = ACTIONS(1048), - [anon_sym_INFO] = ACTIONS(1048), - [anon_sym_XXX] = ACTIONS(1048), - [sym_fixme] = ACTIONS(1018), - [anon_sym_PIPE] = ACTIONS(1018), - [sym__whitespace1] = ACTIONS(1060), - [sym__newline] = ACTIONS(1062), - [aux_sym__text_token1] = ACTIONS(1054), - [sym__verbatim_begin] = ACTIONS(1056), - }, - [91] = { - [sym__inline] = STATE(757), - [sym__element] = STATE(105), - [sym_emphasis] = STATE(185), - [sym_emphasis_begin] = STATE(901), - [sym_strong] = STATE(185), - [sym_strong_begin] = STATE(89), - [sym__hard_line_break] = STATE(185), - [sym_hard_line_break] = STATE(185), - [sym__smart_punctuation] = STATE(185), - [sym_autolink] = STATE(185), - [sym_highlighted] = STATE(185), - [sym_insert] = STATE(185), - [sym_delete] = STATE(185), - [sym_superscript] = STATE(185), - [sym_subscript] = STATE(185), - [sym_footnote_reference] = STATE(185), - [sym__image] = STATE(185), - [sym_full_reference_image] = STATE(185), - [sym_collapsed_reference_image] = STATE(185), - [sym_inline_image] = STATE(185), - [sym__image_description] = STATE(628), - [sym__link] = STATE(185), - [sym_full_reference_link] = STATE(185), - [sym_collapsed_reference_link] = STATE(185), - [sym_inline_link] = STATE(185), - [sym_link_text] = STATE(629), - [sym__comment_with_spaces] = STATE(185), - [sym_span] = STATE(185), - [sym_raw_inline] = STATE(185), - [sym_math] = STATE(185), - [sym_verbatim] = STATE(185), - [sym__todo_highlights] = STATE(185), - [sym_todo] = STATE(185), - [sym_note] = STATE(185), - [sym__symbol_fallback] = STATE(185), - [aux_sym__text] = STATE(134), - [aux_sym__inline_repeat1] = STATE(105), - [anon_sym_LBRACE_] = ACTIONS(972), - [anon_sym__] = ACTIONS(974), - [anon_sym_LBRACE_STAR] = ACTIONS(976), - [anon_sym_STAR] = ACTIONS(978), - [anon_sym_BSLASH] = ACTIONS(980), - [sym_quotation_marks] = ACTIONS(974), - [sym_ellipsis] = ACTIONS(974), - [sym_em_dash] = ACTIONS(974), - [sym_en_dash] = ACTIONS(982), - [sym_backslash_escape] = ACTIONS(982), - [anon_sym_LT] = ACTIONS(984), - [anon_sym_LBRACE_EQ] = ACTIONS(986), - [anon_sym_LBRACE_PLUS] = ACTIONS(988), - [anon_sym_LBRACE_DASH] = ACTIONS(990), - [sym_symbol] = ACTIONS(974), - [anon_sym_LBRACE_CARET] = ACTIONS(992), - [anon_sym_CARET] = ACTIONS(992), - [anon_sym_LBRACE_TILDE] = ACTIONS(994), - [anon_sym_TILDE] = ACTIONS(994), - [anon_sym_LBRACK_CARET] = ACTIONS(996), - [anon_sym_BANG_LBRACK] = ACTIONS(998), - [anon_sym_LBRACK] = ACTIONS(1000), - [anon_sym_LBRACE2] = ACTIONS(982), - [anon_sym_DOLLAR] = ACTIONS(1002), - [anon_sym_TODO] = ACTIONS(1004), - [anon_sym_WIP] = ACTIONS(1004), - [anon_sym_NOTE] = ACTIONS(1006), - [anon_sym_INFO] = ACTIONS(1006), - [anon_sym_XXX] = ACTIONS(1006), - [sym_fixme] = ACTIONS(974), - [anon_sym_PIPE] = ACTIONS(974), - [sym__whitespace1] = ACTIONS(1008), - [sym__newline] = ACTIONS(1010), - [aux_sym__text_token1] = ACTIONS(1012), - [sym__verbatim_begin] = ACTIONS(1014), - }, - [92] = { - [sym__inline] = STATE(644), - [sym__element] = STATE(88), - [sym_emphasis] = STATE(165), - [sym_emphasis_begin] = STATE(899), - [sym_strong] = STATE(165), - [sym_strong_begin] = STATE(96), - [sym__hard_line_break] = STATE(165), - [sym_hard_line_break] = STATE(165), - [sym__smart_punctuation] = STATE(165), - [sym_autolink] = STATE(165), - [sym_highlighted] = STATE(165), - [sym_insert] = STATE(165), - [sym_delete] = STATE(165), - [sym_superscript] = STATE(165), - [sym_subscript] = STATE(165), - [sym_footnote_reference] = STATE(165), - [sym__image] = STATE(165), - [sym_full_reference_image] = STATE(165), - [sym_collapsed_reference_image] = STATE(165), - [sym_inline_image] = STATE(165), - [sym__image_description] = STATE(607), - [sym__link] = STATE(165), - [sym_full_reference_link] = STATE(165), - [sym_collapsed_reference_link] = STATE(165), - [sym_inline_link] = STATE(165), - [sym_link_text] = STATE(611), - [sym__comment_with_spaces] = STATE(165), - [sym_span] = STATE(165), - [sym_raw_inline] = STATE(165), - [sym_math] = STATE(165), - [sym_verbatim] = STATE(165), - [sym__todo_highlights] = STATE(165), - [sym_todo] = STATE(165), - [sym_note] = STATE(165), - [sym__symbol_fallback] = STATE(165), - [aux_sym__text] = STATE(156), - [aux_sym__inline_repeat1] = STATE(88), - [anon_sym_LBRACE_] = ACTIONS(1016), - [anon_sym__] = ACTIONS(1018), - [anon_sym_LBRACE_STAR] = ACTIONS(1020), - [anon_sym_STAR] = ACTIONS(1058), - [anon_sym_BSLASH] = ACTIONS(1022), - [sym_quotation_marks] = ACTIONS(1018), - [sym_ellipsis] = ACTIONS(1018), - [sym_em_dash] = ACTIONS(1018), - [sym_en_dash] = ACTIONS(1024), - [sym_backslash_escape] = ACTIONS(1024), - [anon_sym_LT] = ACTIONS(1026), - [anon_sym_LBRACE_EQ] = ACTIONS(1028), - [anon_sym_LBRACE_PLUS] = ACTIONS(1030), - [anon_sym_LBRACE_DASH] = ACTIONS(1032), - [sym_symbol] = ACTIONS(1018), - [anon_sym_LBRACE_CARET] = ACTIONS(1034), - [anon_sym_CARET] = ACTIONS(1034), - [anon_sym_LBRACE_TILDE] = ACTIONS(1036), - [anon_sym_TILDE] = ACTIONS(1036), - [anon_sym_LBRACK_CARET] = ACTIONS(1038), - [anon_sym_BANG_LBRACK] = ACTIONS(1040), - [anon_sym_LBRACK] = ACTIONS(1042), - [anon_sym_LBRACE2] = ACTIONS(1024), - [anon_sym_DOLLAR] = ACTIONS(1044), - [anon_sym_TODO] = ACTIONS(1046), - [anon_sym_WIP] = ACTIONS(1046), - [anon_sym_NOTE] = ACTIONS(1048), - [anon_sym_INFO] = ACTIONS(1048), - [anon_sym_XXX] = ACTIONS(1048), - [sym_fixme] = ACTIONS(1018), - [anon_sym_PIPE] = ACTIONS(1018), - [sym__whitespace1] = ACTIONS(1060), - [sym__newline] = ACTIONS(1062), - [aux_sym__text_token1] = ACTIONS(1054), - [sym__verbatim_begin] = ACTIONS(1056), - }, - [93] = { - [sym__element] = STATE(75), - [sym_emphasis] = STATE(184), - [sym_emphasis_begin] = STATE(880), - [sym_strong] = STATE(184), - [sym_strong_begin] = STATE(90), - [sym__hard_line_break] = STATE(184), - [sym_hard_line_break] = STATE(184), - [sym__smart_punctuation] = STATE(184), - [sym_autolink] = STATE(184), - [sym_highlighted] = STATE(184), - [sym_insert] = STATE(184), - [sym_delete] = STATE(184), - [sym_superscript] = STATE(184), - [sym_subscript] = STATE(184), - [sym_footnote_reference] = STATE(184), - [sym__image] = STATE(184), - [sym_full_reference_image] = STATE(184), - [sym_collapsed_reference_image] = STATE(184), - [sym_inline_image] = STATE(184), - [sym__image_description] = STATE(609), - [sym__link] = STATE(184), - [sym_full_reference_link] = STATE(184), - [sym_collapsed_reference_link] = STATE(184), - [sym_inline_link] = STATE(184), - [sym_link_text] = STATE(612), - [sym__comment_with_spaces] = STATE(184), - [sym_span] = STATE(184), - [sym_raw_inline] = STATE(184), - [sym_math] = STATE(184), - [sym_verbatim] = STATE(184), - [sym__todo_highlights] = STATE(184), - [sym_todo] = STATE(184), - [sym_note] = STATE(184), - [sym__symbol_fallback] = STATE(184), - [aux_sym__text] = STATE(151), - [aux_sym__inline_repeat1] = STATE(75), - [ts_builtin_sym_end] = ACTIONS(550), - [anon_sym_LBRACE_] = ACTIONS(3), - [anon_sym__] = ACTIONS(5), - [anon_sym_LBRACE_STAR] = ACTIONS(7), - [anon_sym_STAR] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(11), - [sym_quotation_marks] = ACTIONS(5), - [sym_ellipsis] = ACTIONS(5), - [sym_em_dash] = ACTIONS(5), - [sym_en_dash] = ACTIONS(13), - [sym_backslash_escape] = ACTIONS(13), - [anon_sym_LT] = ACTIONS(15), - [anon_sym_LBRACE_EQ] = ACTIONS(17), - [anon_sym_LBRACE_PLUS] = ACTIONS(19), - [anon_sym_LBRACE_DASH] = ACTIONS(21), - [sym_symbol] = ACTIONS(5), - [anon_sym_LBRACE_CARET] = ACTIONS(23), - [anon_sym_CARET] = ACTIONS(23), - [anon_sym_LBRACE_TILDE] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_LBRACK_CARET] = ACTIONS(27), - [anon_sym_BANG_LBRACK] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_LBRACE2] = ACTIONS(13), - [anon_sym_DOLLAR] = ACTIONS(33), - [anon_sym_TODO] = ACTIONS(35), - [anon_sym_WIP] = ACTIONS(35), - [anon_sym_NOTE] = ACTIONS(37), - [anon_sym_INFO] = ACTIONS(37), - [anon_sym_XXX] = ACTIONS(37), - [sym_fixme] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [sym__whitespace1] = ACTIONS(39), - [sym__newline] = ACTIONS(1064), - [aux_sym__text_token1] = ACTIONS(43), - [sym__verbatim_begin] = ACTIONS(45), - }, - [94] = { - [sym__inline] = STATE(735), - [sym__element] = STATE(105), - [sym_emphasis] = STATE(185), - [sym_emphasis_begin] = STATE(901), - [sym_strong] = STATE(185), - [sym_strong_begin] = STATE(89), - [sym__hard_line_break] = STATE(185), - [sym_hard_line_break] = STATE(185), - [sym__smart_punctuation] = STATE(185), - [sym_autolink] = STATE(185), - [sym_highlighted] = STATE(185), - [sym_insert] = STATE(185), - [sym_delete] = STATE(185), - [sym_superscript] = STATE(185), - [sym_subscript] = STATE(185), - [sym_footnote_reference] = STATE(185), - [sym__image] = STATE(185), - [sym_full_reference_image] = STATE(185), - [sym_collapsed_reference_image] = STATE(185), - [sym_inline_image] = STATE(185), - [sym__image_description] = STATE(628), - [sym__link] = STATE(185), - [sym_full_reference_link] = STATE(185), - [sym_collapsed_reference_link] = STATE(185), - [sym_inline_link] = STATE(185), - [sym_link_text] = STATE(629), - [sym__comment_with_spaces] = STATE(185), - [sym_span] = STATE(185), - [sym_raw_inline] = STATE(185), - [sym_math] = STATE(185), - [sym_verbatim] = STATE(185), - [sym__todo_highlights] = STATE(185), - [sym_todo] = STATE(185), - [sym_note] = STATE(185), - [sym__symbol_fallback] = STATE(185), - [aux_sym__text] = STATE(134), - [aux_sym__inline_repeat1] = STATE(105), - [anon_sym_LBRACE_] = ACTIONS(972), - [anon_sym__] = ACTIONS(974), - [anon_sym_LBRACE_STAR] = ACTIONS(976), - [anon_sym_STAR] = ACTIONS(978), - [anon_sym_BSLASH] = ACTIONS(980), - [sym_quotation_marks] = ACTIONS(974), - [sym_ellipsis] = ACTIONS(974), - [sym_em_dash] = ACTIONS(974), - [sym_en_dash] = ACTIONS(982), - [sym_backslash_escape] = ACTIONS(982), - [anon_sym_LT] = ACTIONS(984), - [anon_sym_LBRACE_EQ] = ACTIONS(986), - [anon_sym_LBRACE_PLUS] = ACTIONS(988), - [anon_sym_LBRACE_DASH] = ACTIONS(990), - [sym_symbol] = ACTIONS(974), - [anon_sym_LBRACE_CARET] = ACTIONS(992), - [anon_sym_CARET] = ACTIONS(992), - [anon_sym_LBRACE_TILDE] = ACTIONS(994), - [anon_sym_TILDE] = ACTIONS(994), - [anon_sym_LBRACK_CARET] = ACTIONS(996), - [anon_sym_BANG_LBRACK] = ACTIONS(998), - [anon_sym_LBRACK] = ACTIONS(1000), - [anon_sym_LBRACE2] = ACTIONS(982), - [anon_sym_DOLLAR] = ACTIONS(1002), - [anon_sym_TODO] = ACTIONS(1004), - [anon_sym_WIP] = ACTIONS(1004), - [anon_sym_NOTE] = ACTIONS(1006), - [anon_sym_INFO] = ACTIONS(1006), - [anon_sym_XXX] = ACTIONS(1006), - [sym_fixme] = ACTIONS(974), - [anon_sym_PIPE] = ACTIONS(974), - [sym__whitespace1] = ACTIONS(1008), - [sym__newline] = ACTIONS(1010), - [aux_sym__text_token1] = ACTIONS(1012), - [sym__verbatim_begin] = ACTIONS(1014), - }, - [95] = { - [sym__element] = STATE(95), - [sym_emphasis] = STATE(182), - [sym_emphasis_begin] = STATE(898), - [sym_strong] = STATE(182), - [sym_strong_begin] = STATE(104), - [sym__hard_line_break] = STATE(182), - [sym_hard_line_break] = STATE(182), - [sym__smart_punctuation] = STATE(182), - [sym_autolink] = STATE(182), - [sym_highlighted] = STATE(182), - [sym_insert] = STATE(182), - [sym_delete] = STATE(182), - [sym_superscript] = STATE(182), - [sym_subscript] = STATE(182), - [sym_footnote_reference] = STATE(182), - [sym__image] = STATE(182), - [sym_full_reference_image] = STATE(182), - [sym_collapsed_reference_image] = STATE(182), - [sym_inline_image] = STATE(182), - [sym__image_description] = STATE(610), - [sym__link] = STATE(182), - [sym_full_reference_link] = STATE(182), - [sym_collapsed_reference_link] = STATE(182), - [sym_inline_link] = STATE(182), - [sym_link_text] = STATE(608), - [sym__comment_with_spaces] = STATE(182), - [sym_span] = STATE(182), - [sym_raw_inline] = STATE(182), - [sym_math] = STATE(182), - [sym_verbatim] = STATE(182), - [sym__todo_highlights] = STATE(182), - [sym_todo] = STATE(182), - [sym_note] = STATE(182), - [sym__symbol_fallback] = STATE(182), - [aux_sym__text] = STATE(144), - [aux_sym__inline_repeat1] = STATE(95), - [anon_sym_LBRACE_] = ACTIONS(1066), - [anon_sym__] = ACTIONS(1069), - [anon_sym_LBRACE_STAR] = ACTIONS(1072), - [anon_sym_STAR] = ACTIONS(1075), - [anon_sym_BSLASH] = ACTIONS(1078), - [sym_quotation_marks] = ACTIONS(1069), - [sym_ellipsis] = ACTIONS(1069), - [sym_em_dash] = ACTIONS(1069), - [sym_en_dash] = ACTIONS(1081), - [sym_backslash_escape] = ACTIONS(1081), - [anon_sym_LT] = ACTIONS(1084), - [anon_sym_LBRACE_EQ] = ACTIONS(1087), - [anon_sym_LBRACE_PLUS] = ACTIONS(1090), - [anon_sym_LBRACE_DASH] = ACTIONS(1093), - [sym_symbol] = ACTIONS(1069), - [anon_sym_LBRACE_CARET] = ACTIONS(1096), - [anon_sym_CARET] = ACTIONS(1096), - [anon_sym_LBRACE_TILDE] = ACTIONS(1099), - [anon_sym_TILDE] = ACTIONS(1099), - [anon_sym_LBRACK_CARET] = ACTIONS(1102), - [anon_sym_RBRACK] = ACTIONS(662), - [anon_sym_BANG_LBRACK] = ACTIONS(1105), - [anon_sym_LBRACK] = ACTIONS(1108), - [anon_sym_LBRACE2] = ACTIONS(1081), - [anon_sym_DOLLAR] = ACTIONS(1111), - [anon_sym_TODO] = ACTIONS(1114), - [anon_sym_WIP] = ACTIONS(1114), - [anon_sym_NOTE] = ACTIONS(1117), - [anon_sym_INFO] = ACTIONS(1117), - [anon_sym_XXX] = ACTIONS(1117), - [sym_fixme] = ACTIONS(1069), - [anon_sym_PIPE] = ACTIONS(1069), - [sym__whitespace1] = ACTIONS(1120), - [sym__newline] = ACTIONS(1123), - [aux_sym__text_token1] = ACTIONS(1126), - [sym__verbatim_begin] = ACTIONS(1129), - }, - [96] = { - [sym__inline] = STATE(642), - [sym__element] = STATE(88), - [sym_emphasis] = STATE(165), - [sym_emphasis_begin] = STATE(899), - [sym_strong] = STATE(165), - [sym_strong_begin] = STATE(96), - [sym__hard_line_break] = STATE(165), - [sym_hard_line_break] = STATE(165), - [sym__smart_punctuation] = STATE(165), - [sym_autolink] = STATE(165), - [sym_highlighted] = STATE(165), - [sym_insert] = STATE(165), - [sym_delete] = STATE(165), - [sym_superscript] = STATE(165), - [sym_subscript] = STATE(165), - [sym_footnote_reference] = STATE(165), - [sym__image] = STATE(165), - [sym_full_reference_image] = STATE(165), - [sym_collapsed_reference_image] = STATE(165), - [sym_inline_image] = STATE(165), - [sym__image_description] = STATE(607), - [sym__link] = STATE(165), - [sym_full_reference_link] = STATE(165), - [sym_collapsed_reference_link] = STATE(165), - [sym_inline_link] = STATE(165), - [sym_link_text] = STATE(611), - [sym__comment_with_spaces] = STATE(165), - [sym_span] = STATE(165), - [sym_raw_inline] = STATE(165), - [sym_math] = STATE(165), - [sym_verbatim] = STATE(165), - [sym__todo_highlights] = STATE(165), - [sym_todo] = STATE(165), - [sym_note] = STATE(165), - [sym__symbol_fallback] = STATE(165), - [aux_sym__text] = STATE(156), - [aux_sym__inline_repeat1] = STATE(88), - [anon_sym_LBRACE_] = ACTIONS(1016), - [anon_sym__] = ACTIONS(1018), - [anon_sym_LBRACE_STAR] = ACTIONS(1020), - [anon_sym_STAR] = ACTIONS(1058), - [anon_sym_BSLASH] = ACTIONS(1022), - [sym_quotation_marks] = ACTIONS(1018), - [sym_ellipsis] = ACTIONS(1018), - [sym_em_dash] = ACTIONS(1018), - [sym_en_dash] = ACTIONS(1024), - [sym_backslash_escape] = ACTIONS(1024), - [anon_sym_LT] = ACTIONS(1026), - [anon_sym_LBRACE_EQ] = ACTIONS(1028), - [anon_sym_LBRACE_PLUS] = ACTIONS(1030), - [anon_sym_LBRACE_DASH] = ACTIONS(1032), - [sym_symbol] = ACTIONS(1018), - [anon_sym_LBRACE_CARET] = ACTIONS(1034), - [anon_sym_CARET] = ACTIONS(1034), - [anon_sym_LBRACE_TILDE] = ACTIONS(1036), - [anon_sym_TILDE] = ACTIONS(1036), - [anon_sym_LBRACK_CARET] = ACTIONS(1038), - [anon_sym_BANG_LBRACK] = ACTIONS(1040), - [anon_sym_LBRACK] = ACTIONS(1042), - [anon_sym_LBRACE2] = ACTIONS(1024), - [anon_sym_DOLLAR] = ACTIONS(1044), - [anon_sym_TODO] = ACTIONS(1046), - [anon_sym_WIP] = ACTIONS(1046), - [anon_sym_NOTE] = ACTIONS(1048), - [anon_sym_INFO] = ACTIONS(1048), - [anon_sym_XXX] = ACTIONS(1048), - [sym_fixme] = ACTIONS(1018), - [anon_sym_PIPE] = ACTIONS(1018), - [sym__whitespace1] = ACTIONS(1060), - [sym__newline] = ACTIONS(1062), - [aux_sym__text_token1] = ACTIONS(1054), - [sym__verbatim_begin] = ACTIONS(1056), - }, - [97] = { - [sym__element] = STATE(95), - [sym_emphasis] = STATE(182), - [sym_emphasis_begin] = STATE(898), - [sym_strong] = STATE(182), - [sym_strong_begin] = STATE(104), - [sym__hard_line_break] = STATE(182), - [sym_hard_line_break] = STATE(182), - [sym__smart_punctuation] = STATE(182), - [sym_autolink] = STATE(182), - [sym_highlighted] = STATE(182), - [sym_insert] = STATE(182), - [sym_delete] = STATE(182), - [sym_superscript] = STATE(182), - [sym_subscript] = STATE(182), - [sym_footnote_reference] = STATE(182), - [sym__image] = STATE(182), - [sym_full_reference_image] = STATE(182), - [sym_collapsed_reference_image] = STATE(182), - [sym_inline_image] = STATE(182), - [sym__image_description] = STATE(610), - [sym__link] = STATE(182), - [sym_full_reference_link] = STATE(182), - [sym_collapsed_reference_link] = STATE(182), - [sym_inline_link] = STATE(182), - [sym_link_text] = STATE(608), - [sym__comment_with_spaces] = STATE(182), - [sym_span] = STATE(182), - [sym_raw_inline] = STATE(182), - [sym_math] = STATE(182), - [sym_verbatim] = STATE(182), - [sym__todo_highlights] = STATE(182), - [sym_todo] = STATE(182), - [sym_note] = STATE(182), - [sym__symbol_fallback] = STATE(182), - [aux_sym__text] = STATE(144), - [aux_sym__inline_repeat1] = STATE(95), - [anon_sym_LBRACE_] = ACTIONS(1132), - [anon_sym__] = ACTIONS(1134), - [anon_sym_LBRACE_STAR] = ACTIONS(1136), - [anon_sym_STAR] = ACTIONS(1138), - [anon_sym_BSLASH] = ACTIONS(1140), - [sym_quotation_marks] = ACTIONS(1134), - [sym_ellipsis] = ACTIONS(1134), - [sym_em_dash] = ACTIONS(1134), - [sym_en_dash] = ACTIONS(1142), - [sym_backslash_escape] = ACTIONS(1142), - [anon_sym_LT] = ACTIONS(1144), - [anon_sym_LBRACE_EQ] = ACTIONS(1146), - [anon_sym_LBRACE_PLUS] = ACTIONS(1148), - [anon_sym_LBRACE_DASH] = ACTIONS(1150), - [sym_symbol] = ACTIONS(1134), - [anon_sym_LBRACE_CARET] = ACTIONS(1152), - [anon_sym_CARET] = ACTIONS(1152), - [anon_sym_LBRACE_TILDE] = ACTIONS(1154), - [anon_sym_TILDE] = ACTIONS(1154), - [anon_sym_LBRACK_CARET] = ACTIONS(1156), - [anon_sym_RBRACK] = ACTIONS(550), - [anon_sym_BANG_LBRACK] = ACTIONS(1158), - [anon_sym_LBRACK] = ACTIONS(1160), - [anon_sym_LBRACE2] = ACTIONS(1142), - [anon_sym_DOLLAR] = ACTIONS(1162), - [anon_sym_TODO] = ACTIONS(1164), - [anon_sym_WIP] = ACTIONS(1164), - [anon_sym_NOTE] = ACTIONS(1166), - [anon_sym_INFO] = ACTIONS(1166), - [anon_sym_XXX] = ACTIONS(1166), - [sym_fixme] = ACTIONS(1134), - [anon_sym_PIPE] = ACTIONS(1134), - [sym__whitespace1] = ACTIONS(1168), - [sym__newline] = ACTIONS(1170), - [aux_sym__text_token1] = ACTIONS(1172), - [sym__verbatim_begin] = ACTIONS(1174), - }, - [98] = { - [sym__element] = STATE(98), - [sym_emphasis] = STATE(187), - [sym_emphasis_begin] = STATE(893), - [sym_strong] = STATE(187), - [sym_strong_begin] = STATE(119), - [sym__hard_line_break] = STATE(187), - [sym_hard_line_break] = STATE(187), - [sym__smart_punctuation] = STATE(187), - [sym_autolink] = STATE(187), - [sym_highlighted] = STATE(187), - [sym_insert] = STATE(187), - [sym_delete] = STATE(187), - [sym_superscript] = STATE(187), - [sym_subscript] = STATE(187), - [sym_footnote_reference] = STATE(187), - [sym__image] = STATE(187), - [sym_full_reference_image] = STATE(187), - [sym_collapsed_reference_image] = STATE(187), - [sym_inline_image] = STATE(187), - [sym__image_description] = STATE(616), - [sym__link] = STATE(187), - [sym_full_reference_link] = STATE(187), - [sym_collapsed_reference_link] = STATE(187), - [sym_inline_link] = STATE(187), - [sym_link_text] = STATE(634), - [sym__comment_with_spaces] = STATE(187), - [sym_span] = STATE(187), - [sym_raw_inline] = STATE(187), - [sym_math] = STATE(187), - [sym_verbatim] = STATE(187), - [sym__todo_highlights] = STATE(187), - [sym_todo] = STATE(187), - [sym_note] = STATE(187), - [sym__symbol_fallback] = STATE(187), - [aux_sym__text] = STATE(131), - [aux_sym__inline_repeat1] = STATE(98), - [anon_sym_LBRACE_] = ACTIONS(1176), - [anon_sym__] = ACTIONS(1179), - [anon_sym_LBRACE_STAR] = ACTIONS(1182), - [anon_sym_STAR] = ACTIONS(1185), - [anon_sym_BSLASH] = ACTIONS(1188), - [sym_quotation_marks] = ACTIONS(1179), - [sym_ellipsis] = ACTIONS(1179), - [sym_em_dash] = ACTIONS(1179), - [sym_en_dash] = ACTIONS(1191), - [sym_backslash_escape] = ACTIONS(1191), - [anon_sym_LT] = ACTIONS(1194), - [anon_sym_LBRACE_EQ] = ACTIONS(1197), - [anon_sym_EQ_RBRACE] = ACTIONS(662), - [anon_sym_LBRACE_PLUS] = ACTIONS(1200), - [anon_sym_LBRACE_DASH] = ACTIONS(1203), - [sym_symbol] = ACTIONS(1179), - [anon_sym_LBRACE_CARET] = ACTIONS(1206), - [anon_sym_CARET] = ACTIONS(1206), - [anon_sym_LBRACE_TILDE] = ACTIONS(1209), - [anon_sym_TILDE] = ACTIONS(1209), - [anon_sym_LBRACK_CARET] = ACTIONS(1212), - [anon_sym_BANG_LBRACK] = ACTIONS(1215), - [anon_sym_LBRACK] = ACTIONS(1218), - [anon_sym_LBRACE2] = ACTIONS(1191), - [anon_sym_DOLLAR] = ACTIONS(1221), - [anon_sym_TODO] = ACTIONS(1224), - [anon_sym_WIP] = ACTIONS(1224), - [anon_sym_NOTE] = ACTIONS(1227), - [anon_sym_INFO] = ACTIONS(1227), - [anon_sym_XXX] = ACTIONS(1227), - [sym_fixme] = ACTIONS(1179), - [anon_sym_PIPE] = ACTIONS(1179), - [sym__whitespace1] = ACTIONS(1230), - [sym__newline] = ACTIONS(1233), - [aux_sym__text_token1] = ACTIONS(1236), - [sym__verbatim_begin] = ACTIONS(1239), - }, - [99] = { - [sym__inline] = STATE(658), - [sym__element] = STATE(121), - [sym_emphasis] = STATE(467), - [sym_emphasis_begin] = STATE(900), - [sym_strong] = STATE(467), - [sym_strong_begin] = STATE(92), - [sym__hard_line_break] = STATE(467), - [sym_hard_line_break] = STATE(467), - [sym__smart_punctuation] = STATE(467), - [sym_autolink] = STATE(467), - [sym_highlighted] = STATE(467), - [sym_insert] = STATE(467), - [sym_delete] = STATE(467), - [sym_superscript] = STATE(467), - [sym_subscript] = STATE(467), - [sym_footnote_reference] = STATE(467), - [sym__image] = STATE(467), - [sym_full_reference_image] = STATE(467), - [sym_collapsed_reference_image] = STATE(467), - [sym_inline_image] = STATE(467), - [sym__image_description] = STATE(619), - [sym__link] = STATE(467), - [sym_full_reference_link] = STATE(467), - [sym_collapsed_reference_link] = STATE(467), - [sym_inline_link] = STATE(467), - [sym_link_text] = STATE(620), - [sym__comment_with_spaces] = STATE(467), - [sym_span] = STATE(467), - [sym_raw_inline] = STATE(467), - [sym_math] = STATE(467), - [sym_verbatim] = STATE(467), - [sym__todo_highlights] = STATE(467), - [sym_todo] = STATE(467), - [sym_note] = STATE(467), - [sym__symbol_fallback] = STATE(467), - [aux_sym__text] = STATE(171), - [aux_sym__inline_repeat1] = STATE(121), - [anon_sym_LBRACE_] = ACTIONS(618), - [anon_sym__] = ACTIONS(620), - [anon_sym_LBRACE_STAR] = ACTIONS(622), - [anon_sym_STAR] = ACTIONS(624), - [anon_sym_BSLASH] = ACTIONS(626), - [sym_quotation_marks] = ACTIONS(620), - [sym_ellipsis] = ACTIONS(620), - [sym_em_dash] = ACTIONS(620), - [sym_en_dash] = ACTIONS(628), - [sym_backslash_escape] = ACTIONS(628), - [anon_sym_LT] = ACTIONS(630), - [anon_sym_LBRACE_EQ] = ACTIONS(632), - [anon_sym_LBRACE_PLUS] = ACTIONS(634), - [anon_sym_LBRACE_DASH] = ACTIONS(636), - [sym_symbol] = ACTIONS(620), - [anon_sym_LBRACE_CARET] = ACTIONS(638), - [anon_sym_CARET] = ACTIONS(638), - [anon_sym_LBRACE_TILDE] = ACTIONS(640), - [anon_sym_TILDE] = ACTIONS(640), - [anon_sym_LBRACK_CARET] = ACTIONS(642), - [anon_sym_BANG_LBRACK] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_LBRACE2] = ACTIONS(628), - [anon_sym_DOLLAR] = ACTIONS(648), - [anon_sym_TODO] = ACTIONS(650), - [anon_sym_WIP] = ACTIONS(650), - [anon_sym_NOTE] = ACTIONS(652), - [anon_sym_INFO] = ACTIONS(652), - [anon_sym_XXX] = ACTIONS(652), - [sym_fixme] = ACTIONS(620), - [anon_sym_PIPE] = ACTIONS(620), - [sym__whitespace1] = ACTIONS(654), - [sym__newline] = ACTIONS(656), - [aux_sym__text_token1] = ACTIONS(658), - [sym__verbatim_begin] = ACTIONS(660), - }, - [100] = { - [sym__inline] = STATE(794), - [sym__element] = STATE(105), - [sym_emphasis] = STATE(185), - [sym_emphasis_begin] = STATE(901), - [sym_strong] = STATE(185), - [sym_strong_begin] = STATE(89), - [sym__hard_line_break] = STATE(185), - [sym_hard_line_break] = STATE(185), - [sym__smart_punctuation] = STATE(185), - [sym_autolink] = STATE(185), - [sym_highlighted] = STATE(185), - [sym_insert] = STATE(185), - [sym_delete] = STATE(185), - [sym_superscript] = STATE(185), - [sym_subscript] = STATE(185), - [sym_footnote_reference] = STATE(185), - [sym__image] = STATE(185), - [sym_full_reference_image] = STATE(185), - [sym_collapsed_reference_image] = STATE(185), - [sym_inline_image] = STATE(185), - [sym__image_description] = STATE(628), - [sym__link] = STATE(185), - [sym_full_reference_link] = STATE(185), - [sym_collapsed_reference_link] = STATE(185), - [sym_inline_link] = STATE(185), - [sym_link_text] = STATE(629), - [sym__comment_with_spaces] = STATE(185), - [sym_span] = STATE(185), - [sym_raw_inline] = STATE(185), - [sym_math] = STATE(185), - [sym_verbatim] = STATE(185), - [sym__todo_highlights] = STATE(185), - [sym_todo] = STATE(185), - [sym_note] = STATE(185), - [sym__symbol_fallback] = STATE(185), - [aux_sym__text] = STATE(134), - [aux_sym__inline_repeat1] = STATE(105), - [anon_sym_LBRACE_] = ACTIONS(972), - [anon_sym__] = ACTIONS(974), - [anon_sym_LBRACE_STAR] = ACTIONS(976), - [anon_sym_STAR] = ACTIONS(978), - [anon_sym_BSLASH] = ACTIONS(980), - [sym_quotation_marks] = ACTIONS(974), - [sym_ellipsis] = ACTIONS(974), - [sym_em_dash] = ACTIONS(974), - [sym_en_dash] = ACTIONS(982), - [sym_backslash_escape] = ACTIONS(982), - [anon_sym_LT] = ACTIONS(984), - [anon_sym_LBRACE_EQ] = ACTIONS(986), - [anon_sym_LBRACE_PLUS] = ACTIONS(988), - [anon_sym_LBRACE_DASH] = ACTIONS(990), - [sym_symbol] = ACTIONS(974), - [anon_sym_LBRACE_CARET] = ACTIONS(992), - [anon_sym_CARET] = ACTIONS(992), - [anon_sym_LBRACE_TILDE] = ACTIONS(994), - [anon_sym_TILDE] = ACTIONS(994), - [anon_sym_LBRACK_CARET] = ACTIONS(996), - [anon_sym_BANG_LBRACK] = ACTIONS(998), - [anon_sym_LBRACK] = ACTIONS(1000), - [anon_sym_LBRACE2] = ACTIONS(982), - [anon_sym_DOLLAR] = ACTIONS(1002), - [anon_sym_TODO] = ACTIONS(1004), - [anon_sym_WIP] = ACTIONS(1004), - [anon_sym_NOTE] = ACTIONS(1006), - [anon_sym_INFO] = ACTIONS(1006), - [anon_sym_XXX] = ACTIONS(1006), - [sym_fixme] = ACTIONS(974), - [anon_sym_PIPE] = ACTIONS(974), - [sym__whitespace1] = ACTIONS(1008), - [sym__newline] = ACTIONS(1010), - [aux_sym__text_token1] = ACTIONS(1012), - [sym__verbatim_begin] = ACTIONS(1014), - }, - [101] = { - [sym__element] = STATE(101), - [sym_emphasis] = STATE(163), - [sym_emphasis_begin] = STATE(896), - [sym_strong] = STATE(163), - [sym_strong_begin] = STATE(110), - [sym__hard_line_break] = STATE(163), - [sym_hard_line_break] = STATE(163), - [sym__smart_punctuation] = STATE(163), - [sym_autolink] = STATE(163), - [sym_highlighted] = STATE(163), - [sym_insert] = STATE(163), - [sym_delete] = STATE(163), - [sym_superscript] = STATE(163), - [sym_subscript] = STATE(163), - [sym_footnote_reference] = STATE(163), - [sym__image] = STATE(163), - [sym_full_reference_image] = STATE(163), - [sym_collapsed_reference_image] = STATE(163), - [sym_inline_image] = STATE(163), - [sym__image_description] = STATE(622), - [sym__link] = STATE(163), - [sym_full_reference_link] = STATE(163), - [sym_collapsed_reference_link] = STATE(163), - [sym_inline_link] = STATE(163), - [sym_link_text] = STATE(605), - [sym__comment_with_spaces] = STATE(163), - [sym_span] = STATE(163), - [sym_raw_inline] = STATE(163), - [sym_math] = STATE(163), - [sym_verbatim] = STATE(163), - [sym__todo_highlights] = STATE(163), - [sym_todo] = STATE(163), - [sym_note] = STATE(163), - [sym__symbol_fallback] = STATE(163), - [aux_sym__text] = STATE(146), - [aux_sym__inline_repeat1] = STATE(101), - [anon_sym_LBRACE_] = ACTIONS(1242), - [anon_sym__] = ACTIONS(1245), - [anon_sym_LBRACE_STAR] = ACTIONS(1248), - [anon_sym_STAR] = ACTIONS(1251), - [anon_sym_BSLASH] = ACTIONS(1254), - [sym_quotation_marks] = ACTIONS(1245), - [sym_ellipsis] = ACTIONS(1245), - [sym_em_dash] = ACTIONS(1245), - [sym_en_dash] = ACTIONS(1257), - [sym_backslash_escape] = ACTIONS(1257), - [anon_sym_LT] = ACTIONS(1260), - [anon_sym_LBRACE_EQ] = ACTIONS(1263), - [anon_sym_LBRACE_PLUS] = ACTIONS(1266), - [anon_sym_LBRACE_DASH] = ACTIONS(1269), - [sym_symbol] = ACTIONS(1245), - [anon_sym_LBRACE_CARET] = ACTIONS(1272), - [anon_sym_CARET] = ACTIONS(1275), - [anon_sym_CARET_RBRACE] = ACTIONS(662), - [anon_sym_LBRACE_TILDE] = ACTIONS(1278), - [anon_sym_TILDE] = ACTIONS(1278), - [anon_sym_LBRACK_CARET] = ACTIONS(1281), - [anon_sym_BANG_LBRACK] = ACTIONS(1284), - [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_LBRACE2] = ACTIONS(1257), - [anon_sym_DOLLAR] = ACTIONS(1290), - [anon_sym_TODO] = ACTIONS(1293), - [anon_sym_WIP] = ACTIONS(1293), - [anon_sym_NOTE] = ACTIONS(1296), - [anon_sym_INFO] = ACTIONS(1296), - [anon_sym_XXX] = ACTIONS(1296), - [sym_fixme] = ACTIONS(1245), - [anon_sym_PIPE] = ACTIONS(1245), - [sym__whitespace1] = ACTIONS(1299), - [sym__newline] = ACTIONS(1302), - [aux_sym__text_token1] = ACTIONS(1305), - [sym__verbatim_begin] = ACTIONS(1308), - }, - [102] = { - [sym__inline] = STATE(716), - [sym__element] = STATE(105), - [sym_emphasis] = STATE(185), - [sym_emphasis_begin] = STATE(901), - [sym_strong] = STATE(185), - [sym_strong_begin] = STATE(89), - [sym__hard_line_break] = STATE(185), - [sym_hard_line_break] = STATE(185), - [sym__smart_punctuation] = STATE(185), - [sym_autolink] = STATE(185), - [sym_highlighted] = STATE(185), - [sym_insert] = STATE(185), - [sym_delete] = STATE(185), - [sym_superscript] = STATE(185), - [sym_subscript] = STATE(185), - [sym_footnote_reference] = STATE(185), - [sym__image] = STATE(185), - [sym_full_reference_image] = STATE(185), - [sym_collapsed_reference_image] = STATE(185), - [sym_inline_image] = STATE(185), - [sym__image_description] = STATE(628), - [sym__link] = STATE(185), - [sym_full_reference_link] = STATE(185), - [sym_collapsed_reference_link] = STATE(185), - [sym_inline_link] = STATE(185), - [sym_link_text] = STATE(629), - [sym__comment_with_spaces] = STATE(185), - [sym_span] = STATE(185), - [sym_raw_inline] = STATE(185), - [sym_math] = STATE(185), - [sym_verbatim] = STATE(185), - [sym__todo_highlights] = STATE(185), - [sym_todo] = STATE(185), - [sym_note] = STATE(185), - [sym__symbol_fallback] = STATE(185), - [aux_sym__text] = STATE(134), - [aux_sym__inline_repeat1] = STATE(105), - [anon_sym_LBRACE_] = ACTIONS(972), - [anon_sym__] = ACTIONS(974), - [anon_sym_LBRACE_STAR] = ACTIONS(976), - [anon_sym_STAR] = ACTIONS(978), - [anon_sym_BSLASH] = ACTIONS(980), - [sym_quotation_marks] = ACTIONS(974), - [sym_ellipsis] = ACTIONS(974), - [sym_em_dash] = ACTIONS(974), - [sym_en_dash] = ACTIONS(982), - [sym_backslash_escape] = ACTIONS(982), - [anon_sym_LT] = ACTIONS(984), - [anon_sym_LBRACE_EQ] = ACTIONS(986), - [anon_sym_LBRACE_PLUS] = ACTIONS(988), - [anon_sym_LBRACE_DASH] = ACTIONS(990), - [sym_symbol] = ACTIONS(974), - [anon_sym_LBRACE_CARET] = ACTIONS(992), - [anon_sym_CARET] = ACTIONS(992), - [anon_sym_LBRACE_TILDE] = ACTIONS(994), - [anon_sym_TILDE] = ACTIONS(994), - [anon_sym_LBRACK_CARET] = ACTIONS(996), - [anon_sym_BANG_LBRACK] = ACTIONS(998), - [anon_sym_LBRACK] = ACTIONS(1000), - [anon_sym_LBRACE2] = ACTIONS(982), - [anon_sym_DOLLAR] = ACTIONS(1002), - [anon_sym_TODO] = ACTIONS(1004), - [anon_sym_WIP] = ACTIONS(1004), - [anon_sym_NOTE] = ACTIONS(1006), - [anon_sym_INFO] = ACTIONS(1006), - [anon_sym_XXX] = ACTIONS(1006), - [sym_fixme] = ACTIONS(974), - [anon_sym_PIPE] = ACTIONS(974), - [sym__whitespace1] = ACTIONS(1008), - [sym__newline] = ACTIONS(1010), - [aux_sym__text_token1] = ACTIONS(1012), - [sym__verbatim_begin] = ACTIONS(1014), - }, - [103] = { - [sym__inline] = STATE(655), - [sym__element] = STATE(121), - [sym_emphasis] = STATE(467), - [sym_emphasis_begin] = STATE(900), - [sym_strong] = STATE(467), - [sym_strong_begin] = STATE(92), - [sym__hard_line_break] = STATE(467), - [sym_hard_line_break] = STATE(467), - [sym__smart_punctuation] = STATE(467), - [sym_autolink] = STATE(467), - [sym_highlighted] = STATE(467), - [sym_insert] = STATE(467), - [sym_delete] = STATE(467), - [sym_superscript] = STATE(467), - [sym_subscript] = STATE(467), - [sym_footnote_reference] = STATE(467), - [sym__image] = STATE(467), - [sym_full_reference_image] = STATE(467), - [sym_collapsed_reference_image] = STATE(467), - [sym_inline_image] = STATE(467), - [sym__image_description] = STATE(619), - [sym__link] = STATE(467), - [sym_full_reference_link] = STATE(467), - [sym_collapsed_reference_link] = STATE(467), - [sym_inline_link] = STATE(467), - [sym_link_text] = STATE(620), - [sym__comment_with_spaces] = STATE(467), - [sym_span] = STATE(467), - [sym_raw_inline] = STATE(467), - [sym_math] = STATE(467), - [sym_verbatim] = STATE(467), - [sym__todo_highlights] = STATE(467), - [sym_todo] = STATE(467), - [sym_note] = STATE(467), - [sym__symbol_fallback] = STATE(467), - [aux_sym__text] = STATE(171), - [aux_sym__inline_repeat1] = STATE(121), - [anon_sym_LBRACE_] = ACTIONS(618), - [anon_sym__] = ACTIONS(620), - [anon_sym_LBRACE_STAR] = ACTIONS(622), - [anon_sym_STAR] = ACTIONS(624), - [anon_sym_BSLASH] = ACTIONS(626), - [sym_quotation_marks] = ACTIONS(620), - [sym_ellipsis] = ACTIONS(620), - [sym_em_dash] = ACTIONS(620), - [sym_en_dash] = ACTIONS(628), - [sym_backslash_escape] = ACTIONS(628), - [anon_sym_LT] = ACTIONS(630), - [anon_sym_LBRACE_EQ] = ACTIONS(632), - [anon_sym_LBRACE_PLUS] = ACTIONS(634), - [anon_sym_LBRACE_DASH] = ACTIONS(636), - [sym_symbol] = ACTIONS(620), - [anon_sym_LBRACE_CARET] = ACTIONS(638), - [anon_sym_CARET] = ACTIONS(638), - [anon_sym_LBRACE_TILDE] = ACTIONS(640), - [anon_sym_TILDE] = ACTIONS(640), - [anon_sym_LBRACK_CARET] = ACTIONS(642), - [anon_sym_BANG_LBRACK] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_LBRACE2] = ACTIONS(628), - [anon_sym_DOLLAR] = ACTIONS(648), - [anon_sym_TODO] = ACTIONS(650), - [anon_sym_WIP] = ACTIONS(650), - [anon_sym_NOTE] = ACTIONS(652), - [anon_sym_INFO] = ACTIONS(652), - [anon_sym_XXX] = ACTIONS(652), - [sym_fixme] = ACTIONS(620), - [anon_sym_PIPE] = ACTIONS(620), - [sym__whitespace1] = ACTIONS(654), - [sym__newline] = ACTIONS(656), - [aux_sym__text_token1] = ACTIONS(658), - [sym__verbatim_begin] = ACTIONS(660), - }, - [104] = { - [sym__inline] = STATE(641), - [sym__element] = STATE(88), - [sym_emphasis] = STATE(165), - [sym_emphasis_begin] = STATE(899), - [sym_strong] = STATE(165), - [sym_strong_begin] = STATE(96), - [sym__hard_line_break] = STATE(165), - [sym_hard_line_break] = STATE(165), - [sym__smart_punctuation] = STATE(165), - [sym_autolink] = STATE(165), - [sym_highlighted] = STATE(165), - [sym_insert] = STATE(165), - [sym_delete] = STATE(165), - [sym_superscript] = STATE(165), - [sym_subscript] = STATE(165), - [sym_footnote_reference] = STATE(165), - [sym__image] = STATE(165), - [sym_full_reference_image] = STATE(165), - [sym_collapsed_reference_image] = STATE(165), - [sym_inline_image] = STATE(165), - [sym__image_description] = STATE(607), - [sym__link] = STATE(165), - [sym_full_reference_link] = STATE(165), - [sym_collapsed_reference_link] = STATE(165), - [sym_inline_link] = STATE(165), - [sym_link_text] = STATE(611), - [sym__comment_with_spaces] = STATE(165), - [sym_span] = STATE(165), - [sym_raw_inline] = STATE(165), - [sym_math] = STATE(165), - [sym_verbatim] = STATE(165), - [sym__todo_highlights] = STATE(165), - [sym_todo] = STATE(165), - [sym_note] = STATE(165), - [sym__symbol_fallback] = STATE(165), - [aux_sym__text] = STATE(156), - [aux_sym__inline_repeat1] = STATE(88), - [anon_sym_LBRACE_] = ACTIONS(1016), - [anon_sym__] = ACTIONS(1018), - [anon_sym_LBRACE_STAR] = ACTIONS(1020), - [anon_sym_STAR] = ACTIONS(1058), - [anon_sym_BSLASH] = ACTIONS(1022), - [sym_quotation_marks] = ACTIONS(1018), - [sym_ellipsis] = ACTIONS(1018), - [sym_em_dash] = ACTIONS(1018), - [sym_en_dash] = ACTIONS(1024), - [sym_backslash_escape] = ACTIONS(1024), - [anon_sym_LT] = ACTIONS(1026), - [anon_sym_LBRACE_EQ] = ACTIONS(1028), - [anon_sym_LBRACE_PLUS] = ACTIONS(1030), - [anon_sym_LBRACE_DASH] = ACTIONS(1032), - [sym_symbol] = ACTIONS(1018), - [anon_sym_LBRACE_CARET] = ACTIONS(1034), - [anon_sym_CARET] = ACTIONS(1034), - [anon_sym_LBRACE_TILDE] = ACTIONS(1036), - [anon_sym_TILDE] = ACTIONS(1036), - [anon_sym_LBRACK_CARET] = ACTIONS(1038), - [anon_sym_BANG_LBRACK] = ACTIONS(1040), - [anon_sym_LBRACK] = ACTIONS(1042), - [anon_sym_LBRACE2] = ACTIONS(1024), - [anon_sym_DOLLAR] = ACTIONS(1044), - [anon_sym_TODO] = ACTIONS(1046), - [anon_sym_WIP] = ACTIONS(1046), - [anon_sym_NOTE] = ACTIONS(1048), - [anon_sym_INFO] = ACTIONS(1048), - [anon_sym_XXX] = ACTIONS(1048), - [sym_fixme] = ACTIONS(1018), - [anon_sym_PIPE] = ACTIONS(1018), - [sym__whitespace1] = ACTIONS(1060), - [sym__newline] = ACTIONS(1062), - [aux_sym__text_token1] = ACTIONS(1054), - [sym__verbatim_begin] = ACTIONS(1056), - }, - [105] = { - [sym__element] = STATE(116), - [sym_emphasis] = STATE(185), - [sym_emphasis_begin] = STATE(901), - [sym_strong] = STATE(185), - [sym_strong_begin] = STATE(89), - [sym__hard_line_break] = STATE(185), - [sym_hard_line_break] = STATE(185), - [sym__smart_punctuation] = STATE(185), - [sym_autolink] = STATE(185), - [sym_highlighted] = STATE(185), - [sym_insert] = STATE(185), - [sym_delete] = STATE(185), - [sym_superscript] = STATE(185), - [sym_subscript] = STATE(185), - [sym_footnote_reference] = STATE(185), - [sym__image] = STATE(185), - [sym_full_reference_image] = STATE(185), - [sym_collapsed_reference_image] = STATE(185), - [sym_inline_image] = STATE(185), - [sym__image_description] = STATE(628), - [sym__link] = STATE(185), - [sym_full_reference_link] = STATE(185), - [sym_collapsed_reference_link] = STATE(185), - [sym_inline_link] = STATE(185), - [sym_link_text] = STATE(629), - [sym__comment_with_spaces] = STATE(185), - [sym_span] = STATE(185), - [sym_raw_inline] = STATE(185), - [sym_math] = STATE(185), - [sym_verbatim] = STATE(185), - [sym__todo_highlights] = STATE(185), - [sym_todo] = STATE(185), - [sym_note] = STATE(185), - [sym__symbol_fallback] = STATE(185), - [aux_sym__text] = STATE(134), - [aux_sym__inline_repeat1] = STATE(116), - [anon_sym_LBRACE_] = ACTIONS(972), - [anon_sym__] = ACTIONS(974), - [anon_sym_LBRACE_STAR] = ACTIONS(976), - [anon_sym_STAR] = ACTIONS(978), - [anon_sym_BSLASH] = ACTIONS(980), - [sym_quotation_marks] = ACTIONS(974), - [sym_ellipsis] = ACTIONS(974), - [sym_em_dash] = ACTIONS(974), - [sym_en_dash] = ACTIONS(982), - [sym_backslash_escape] = ACTIONS(982), - [anon_sym_LT] = ACTIONS(984), - [anon_sym_LBRACE_EQ] = ACTIONS(986), - [anon_sym_LBRACE_PLUS] = ACTIONS(988), - [anon_sym_LBRACE_DASH] = ACTIONS(990), - [sym_symbol] = ACTIONS(974), - [anon_sym_LBRACE_CARET] = ACTIONS(992), - [anon_sym_CARET] = ACTIONS(992), - [anon_sym_LBRACE_TILDE] = ACTIONS(994), - [anon_sym_TILDE] = ACTIONS(994), - [anon_sym_LBRACK_CARET] = ACTIONS(996), - [anon_sym_BANG_LBRACK] = ACTIONS(998), - [anon_sym_LBRACK] = ACTIONS(1000), - [anon_sym_RBRACK2] = ACTIONS(550), - [anon_sym_LBRACE2] = ACTIONS(982), - [anon_sym_DOLLAR] = ACTIONS(1002), - [anon_sym_TODO] = ACTIONS(1004), - [anon_sym_WIP] = ACTIONS(1004), - [anon_sym_NOTE] = ACTIONS(1006), - [anon_sym_INFO] = ACTIONS(1006), - [anon_sym_XXX] = ACTIONS(1006), - [sym_fixme] = ACTIONS(974), - [anon_sym_PIPE] = ACTIONS(974), - [sym__whitespace1] = ACTIONS(1008), - [sym__newline] = ACTIONS(1311), - [aux_sym__text_token1] = ACTIONS(1012), - [sym__verbatim_begin] = ACTIONS(1014), - }, - [106] = { - [sym__inline] = STATE(728), - [sym__element] = STATE(105), - [sym_emphasis] = STATE(185), - [sym_emphasis_begin] = STATE(901), - [sym_strong] = STATE(185), - [sym_strong_begin] = STATE(89), - [sym__hard_line_break] = STATE(185), - [sym_hard_line_break] = STATE(185), - [sym__smart_punctuation] = STATE(185), - [sym_autolink] = STATE(185), - [sym_highlighted] = STATE(185), - [sym_insert] = STATE(185), - [sym_delete] = STATE(185), - [sym_superscript] = STATE(185), - [sym_subscript] = STATE(185), - [sym_footnote_reference] = STATE(185), - [sym__image] = STATE(185), - [sym_full_reference_image] = STATE(185), - [sym_collapsed_reference_image] = STATE(185), - [sym_inline_image] = STATE(185), - [sym__image_description] = STATE(628), - [sym__link] = STATE(185), - [sym_full_reference_link] = STATE(185), - [sym_collapsed_reference_link] = STATE(185), - [sym_inline_link] = STATE(185), - [sym_link_text] = STATE(629), - [sym__comment_with_spaces] = STATE(185), - [sym_span] = STATE(185), - [sym_raw_inline] = STATE(185), - [sym_math] = STATE(185), - [sym_verbatim] = STATE(185), - [sym__todo_highlights] = STATE(185), - [sym_todo] = STATE(185), - [sym_note] = STATE(185), - [sym__symbol_fallback] = STATE(185), - [aux_sym__text] = STATE(134), - [aux_sym__inline_repeat1] = STATE(105), - [anon_sym_LBRACE_] = ACTIONS(972), - [anon_sym__] = ACTIONS(974), - [anon_sym_LBRACE_STAR] = ACTIONS(976), - [anon_sym_STAR] = ACTIONS(978), - [anon_sym_BSLASH] = ACTIONS(980), - [sym_quotation_marks] = ACTIONS(974), - [sym_ellipsis] = ACTIONS(974), - [sym_em_dash] = ACTIONS(974), - [sym_en_dash] = ACTIONS(982), - [sym_backslash_escape] = ACTIONS(982), - [anon_sym_LT] = ACTIONS(984), - [anon_sym_LBRACE_EQ] = ACTIONS(986), - [anon_sym_LBRACE_PLUS] = ACTIONS(988), - [anon_sym_LBRACE_DASH] = ACTIONS(990), - [sym_symbol] = ACTIONS(974), - [anon_sym_LBRACE_CARET] = ACTIONS(992), - [anon_sym_CARET] = ACTIONS(992), - [anon_sym_LBRACE_TILDE] = ACTIONS(994), - [anon_sym_TILDE] = ACTIONS(994), - [anon_sym_LBRACK_CARET] = ACTIONS(996), - [anon_sym_BANG_LBRACK] = ACTIONS(998), - [anon_sym_LBRACK] = ACTIONS(1000), - [anon_sym_LBRACE2] = ACTIONS(982), - [anon_sym_DOLLAR] = ACTIONS(1002), - [anon_sym_TODO] = ACTIONS(1004), - [anon_sym_WIP] = ACTIONS(1004), - [anon_sym_NOTE] = ACTIONS(1006), - [anon_sym_INFO] = ACTIONS(1006), - [anon_sym_XXX] = ACTIONS(1006), - [sym_fixme] = ACTIONS(974), - [anon_sym_PIPE] = ACTIONS(974), - [sym__whitespace1] = ACTIONS(1008), - [sym__newline] = ACTIONS(1010), - [aux_sym__text_token1] = ACTIONS(1012), - [sym__verbatim_begin] = ACTIONS(1014), - }, - [107] = { - [sym__element] = STATE(98), - [sym_emphasis] = STATE(187), - [sym_emphasis_begin] = STATE(893), - [sym_strong] = STATE(187), - [sym_strong_begin] = STATE(119), - [sym__hard_line_break] = STATE(187), - [sym_hard_line_break] = STATE(187), - [sym__smart_punctuation] = STATE(187), - [sym_autolink] = STATE(187), - [sym_highlighted] = STATE(187), - [sym_insert] = STATE(187), - [sym_delete] = STATE(187), - [sym_superscript] = STATE(187), - [sym_subscript] = STATE(187), - [sym_footnote_reference] = STATE(187), - [sym__image] = STATE(187), - [sym_full_reference_image] = STATE(187), - [sym_collapsed_reference_image] = STATE(187), - [sym_inline_image] = STATE(187), - [sym__image_description] = STATE(616), - [sym__link] = STATE(187), - [sym_full_reference_link] = STATE(187), - [sym_collapsed_reference_link] = STATE(187), - [sym_inline_link] = STATE(187), - [sym_link_text] = STATE(634), - [sym__comment_with_spaces] = STATE(187), - [sym_span] = STATE(187), - [sym_raw_inline] = STATE(187), - [sym_math] = STATE(187), - [sym_verbatim] = STATE(187), - [sym__todo_highlights] = STATE(187), - [sym_todo] = STATE(187), - [sym_note] = STATE(187), - [sym__symbol_fallback] = STATE(187), - [aux_sym__text] = STATE(131), - [aux_sym__inline_repeat1] = STATE(98), - [anon_sym_LBRACE_] = ACTIONS(1313), - [anon_sym__] = ACTIONS(1315), - [anon_sym_LBRACE_STAR] = ACTIONS(1317), - [anon_sym_STAR] = ACTIONS(1319), - [anon_sym_BSLASH] = ACTIONS(1321), - [sym_quotation_marks] = ACTIONS(1315), - [sym_ellipsis] = ACTIONS(1315), - [sym_em_dash] = ACTIONS(1315), - [sym_en_dash] = ACTIONS(1323), - [sym_backslash_escape] = ACTIONS(1323), - [anon_sym_LT] = ACTIONS(1325), - [anon_sym_LBRACE_EQ] = ACTIONS(1327), - [anon_sym_EQ_RBRACE] = ACTIONS(550), - [anon_sym_LBRACE_PLUS] = ACTIONS(1329), - [anon_sym_LBRACE_DASH] = ACTIONS(1331), - [sym_symbol] = ACTIONS(1315), - [anon_sym_LBRACE_CARET] = ACTIONS(1333), - [anon_sym_CARET] = ACTIONS(1333), - [anon_sym_LBRACE_TILDE] = ACTIONS(1335), - [anon_sym_TILDE] = ACTIONS(1335), - [anon_sym_LBRACK_CARET] = ACTIONS(1337), - [anon_sym_BANG_LBRACK] = ACTIONS(1339), - [anon_sym_LBRACK] = ACTIONS(1341), - [anon_sym_LBRACE2] = ACTIONS(1323), - [anon_sym_DOLLAR] = ACTIONS(1343), - [anon_sym_TODO] = ACTIONS(1345), - [anon_sym_WIP] = ACTIONS(1345), - [anon_sym_NOTE] = ACTIONS(1347), - [anon_sym_INFO] = ACTIONS(1347), - [anon_sym_XXX] = ACTIONS(1347), - [sym_fixme] = ACTIONS(1315), - [anon_sym_PIPE] = ACTIONS(1315), - [sym__whitespace1] = ACTIONS(1349), - [sym__newline] = ACTIONS(1351), - [aux_sym__text_token1] = ACTIONS(1353), - [sym__verbatim_begin] = ACTIONS(1355), - }, - [108] = { - [sym__inline] = STATE(643), - [sym__element] = STATE(88), - [sym_emphasis] = STATE(165), - [sym_emphasis_begin] = STATE(899), - [sym_strong] = STATE(165), - [sym_strong_begin] = STATE(96), - [sym__hard_line_break] = STATE(165), - [sym_hard_line_break] = STATE(165), - [sym__smart_punctuation] = STATE(165), - [sym_autolink] = STATE(165), - [sym_highlighted] = STATE(165), - [sym_insert] = STATE(165), - [sym_delete] = STATE(165), - [sym_superscript] = STATE(165), - [sym_subscript] = STATE(165), - [sym_footnote_reference] = STATE(165), - [sym__image] = STATE(165), - [sym_full_reference_image] = STATE(165), - [sym_collapsed_reference_image] = STATE(165), - [sym_inline_image] = STATE(165), - [sym__image_description] = STATE(607), - [sym__link] = STATE(165), - [sym_full_reference_link] = STATE(165), - [sym_collapsed_reference_link] = STATE(165), - [sym_inline_link] = STATE(165), - [sym_link_text] = STATE(611), - [sym__comment_with_spaces] = STATE(165), - [sym_span] = STATE(165), - [sym_raw_inline] = STATE(165), - [sym_math] = STATE(165), - [sym_verbatim] = STATE(165), - [sym__todo_highlights] = STATE(165), - [sym_todo] = STATE(165), - [sym_note] = STATE(165), - [sym__symbol_fallback] = STATE(165), - [aux_sym__text] = STATE(156), - [aux_sym__inline_repeat1] = STATE(88), - [anon_sym_LBRACE_] = ACTIONS(1016), - [anon_sym__] = ACTIONS(1018), - [anon_sym_LBRACE_STAR] = ACTIONS(1020), - [anon_sym_STAR] = ACTIONS(1058), - [anon_sym_BSLASH] = ACTIONS(1022), - [sym_quotation_marks] = ACTIONS(1018), - [sym_ellipsis] = ACTIONS(1018), - [sym_em_dash] = ACTIONS(1018), - [sym_en_dash] = ACTIONS(1024), - [sym_backslash_escape] = ACTIONS(1024), - [anon_sym_LT] = ACTIONS(1026), - [anon_sym_LBRACE_EQ] = ACTIONS(1028), - [anon_sym_LBRACE_PLUS] = ACTIONS(1030), - [anon_sym_LBRACE_DASH] = ACTIONS(1032), - [sym_symbol] = ACTIONS(1018), - [anon_sym_LBRACE_CARET] = ACTIONS(1034), - [anon_sym_CARET] = ACTIONS(1034), - [anon_sym_LBRACE_TILDE] = ACTIONS(1036), - [anon_sym_TILDE] = ACTIONS(1036), - [anon_sym_LBRACK_CARET] = ACTIONS(1038), - [anon_sym_BANG_LBRACK] = ACTIONS(1040), - [anon_sym_LBRACK] = ACTIONS(1042), - [anon_sym_LBRACE2] = ACTIONS(1024), - [anon_sym_DOLLAR] = ACTIONS(1044), - [anon_sym_TODO] = ACTIONS(1046), - [anon_sym_WIP] = ACTIONS(1046), - [anon_sym_NOTE] = ACTIONS(1048), - [anon_sym_INFO] = ACTIONS(1048), - [anon_sym_XXX] = ACTIONS(1048), - [sym_fixme] = ACTIONS(1018), - [anon_sym_PIPE] = ACTIONS(1018), - [sym__whitespace1] = ACTIONS(1060), - [sym__newline] = ACTIONS(1062), - [aux_sym__text_token1] = ACTIONS(1054), - [sym__verbatim_begin] = ACTIONS(1056), - }, - [109] = { - [sym__inline] = STATE(764), - [sym__element] = STATE(105), - [sym_emphasis] = STATE(185), - [sym_emphasis_begin] = STATE(901), - [sym_strong] = STATE(185), - [sym_strong_begin] = STATE(89), - [sym__hard_line_break] = STATE(185), - [sym_hard_line_break] = STATE(185), - [sym__smart_punctuation] = STATE(185), - [sym_autolink] = STATE(185), - [sym_highlighted] = STATE(185), - [sym_insert] = STATE(185), - [sym_delete] = STATE(185), - [sym_superscript] = STATE(185), - [sym_subscript] = STATE(185), - [sym_footnote_reference] = STATE(185), - [sym__image] = STATE(185), - [sym_full_reference_image] = STATE(185), - [sym_collapsed_reference_image] = STATE(185), - [sym_inline_image] = STATE(185), - [sym__image_description] = STATE(628), - [sym__link] = STATE(185), - [sym_full_reference_link] = STATE(185), - [sym_collapsed_reference_link] = STATE(185), - [sym_inline_link] = STATE(185), - [sym_link_text] = STATE(629), - [sym__comment_with_spaces] = STATE(185), - [sym_span] = STATE(185), - [sym_raw_inline] = STATE(185), - [sym_math] = STATE(185), - [sym_verbatim] = STATE(185), - [sym__todo_highlights] = STATE(185), - [sym_todo] = STATE(185), - [sym_note] = STATE(185), - [sym__symbol_fallback] = STATE(185), - [aux_sym__text] = STATE(134), - [aux_sym__inline_repeat1] = STATE(105), - [anon_sym_LBRACE_] = ACTIONS(972), - [anon_sym__] = ACTIONS(974), - [anon_sym_LBRACE_STAR] = ACTIONS(976), - [anon_sym_STAR] = ACTIONS(978), - [anon_sym_BSLASH] = ACTIONS(980), - [sym_quotation_marks] = ACTIONS(974), - [sym_ellipsis] = ACTIONS(974), - [sym_em_dash] = ACTIONS(974), - [sym_en_dash] = ACTIONS(982), - [sym_backslash_escape] = ACTIONS(982), - [anon_sym_LT] = ACTIONS(984), - [anon_sym_LBRACE_EQ] = ACTIONS(986), - [anon_sym_LBRACE_PLUS] = ACTIONS(988), - [anon_sym_LBRACE_DASH] = ACTIONS(990), - [sym_symbol] = ACTIONS(974), - [anon_sym_LBRACE_CARET] = ACTIONS(992), - [anon_sym_CARET] = ACTIONS(992), - [anon_sym_LBRACE_TILDE] = ACTIONS(994), - [anon_sym_TILDE] = ACTIONS(994), - [anon_sym_LBRACK_CARET] = ACTIONS(996), - [anon_sym_BANG_LBRACK] = ACTIONS(998), - [anon_sym_LBRACK] = ACTIONS(1000), - [anon_sym_LBRACE2] = ACTIONS(982), - [anon_sym_DOLLAR] = ACTIONS(1002), - [anon_sym_TODO] = ACTIONS(1004), - [anon_sym_WIP] = ACTIONS(1004), - [anon_sym_NOTE] = ACTIONS(1006), - [anon_sym_INFO] = ACTIONS(1006), - [anon_sym_XXX] = ACTIONS(1006), - [sym_fixme] = ACTIONS(974), - [anon_sym_PIPE] = ACTIONS(974), - [sym__whitespace1] = ACTIONS(1008), - [sym__newline] = ACTIONS(1010), - [aux_sym__text_token1] = ACTIONS(1012), - [sym__verbatim_begin] = ACTIONS(1014), - }, - [110] = { - [sym__inline] = STATE(646), - [sym__element] = STATE(88), - [sym_emphasis] = STATE(165), - [sym_emphasis_begin] = STATE(899), - [sym_strong] = STATE(165), - [sym_strong_begin] = STATE(96), - [sym__hard_line_break] = STATE(165), - [sym_hard_line_break] = STATE(165), - [sym__smart_punctuation] = STATE(165), - [sym_autolink] = STATE(165), - [sym_highlighted] = STATE(165), - [sym_insert] = STATE(165), - [sym_delete] = STATE(165), - [sym_superscript] = STATE(165), - [sym_subscript] = STATE(165), - [sym_footnote_reference] = STATE(165), - [sym__image] = STATE(165), - [sym_full_reference_image] = STATE(165), - [sym_collapsed_reference_image] = STATE(165), - [sym_inline_image] = STATE(165), - [sym__image_description] = STATE(607), - [sym__link] = STATE(165), - [sym_full_reference_link] = STATE(165), - [sym_collapsed_reference_link] = STATE(165), - [sym_inline_link] = STATE(165), - [sym_link_text] = STATE(611), - [sym__comment_with_spaces] = STATE(165), - [sym_span] = STATE(165), - [sym_raw_inline] = STATE(165), - [sym_math] = STATE(165), - [sym_verbatim] = STATE(165), - [sym__todo_highlights] = STATE(165), - [sym_todo] = STATE(165), - [sym_note] = STATE(165), - [sym__symbol_fallback] = STATE(165), - [aux_sym__text] = STATE(156), - [aux_sym__inline_repeat1] = STATE(88), - [anon_sym_LBRACE_] = ACTIONS(1016), - [anon_sym__] = ACTIONS(1018), - [anon_sym_LBRACE_STAR] = ACTIONS(1020), - [anon_sym_STAR] = ACTIONS(1058), - [anon_sym_BSLASH] = ACTIONS(1022), - [sym_quotation_marks] = ACTIONS(1018), - [sym_ellipsis] = ACTIONS(1018), - [sym_em_dash] = ACTIONS(1018), - [sym_en_dash] = ACTIONS(1024), - [sym_backslash_escape] = ACTIONS(1024), - [anon_sym_LT] = ACTIONS(1026), - [anon_sym_LBRACE_EQ] = ACTIONS(1028), - [anon_sym_LBRACE_PLUS] = ACTIONS(1030), - [anon_sym_LBRACE_DASH] = ACTIONS(1032), - [sym_symbol] = ACTIONS(1018), - [anon_sym_LBRACE_CARET] = ACTIONS(1034), - [anon_sym_CARET] = ACTIONS(1034), - [anon_sym_LBRACE_TILDE] = ACTIONS(1036), - [anon_sym_TILDE] = ACTIONS(1036), - [anon_sym_LBRACK_CARET] = ACTIONS(1038), - [anon_sym_BANG_LBRACK] = ACTIONS(1040), - [anon_sym_LBRACK] = ACTIONS(1042), - [anon_sym_LBRACE2] = ACTIONS(1024), - [anon_sym_DOLLAR] = ACTIONS(1044), - [anon_sym_TODO] = ACTIONS(1046), - [anon_sym_WIP] = ACTIONS(1046), - [anon_sym_NOTE] = ACTIONS(1048), - [anon_sym_INFO] = ACTIONS(1048), - [anon_sym_XXX] = ACTIONS(1048), - [sym_fixme] = ACTIONS(1018), - [anon_sym_PIPE] = ACTIONS(1018), - [sym__whitespace1] = ACTIONS(1060), - [sym__newline] = ACTIONS(1062), - [aux_sym__text_token1] = ACTIONS(1054), - [sym__verbatim_begin] = ACTIONS(1056), - }, - [111] = { - [sym__element] = STATE(111), - [sym_emphasis] = STATE(175), - [sym_emphasis_begin] = STATE(897), - [sym_strong] = STATE(175), - [sym_strong_begin] = STATE(108), - [sym__hard_line_break] = STATE(175), - [sym_hard_line_break] = STATE(175), - [sym__smart_punctuation] = STATE(175), - [sym_autolink] = STATE(175), - [sym_highlighted] = STATE(175), - [sym_insert] = STATE(175), - [sym_delete] = STATE(175), - [sym_superscript] = STATE(175), - [sym_subscript] = STATE(175), - [sym_footnote_reference] = STATE(175), - [sym__image] = STATE(175), - [sym_full_reference_image] = STATE(175), - [sym_collapsed_reference_image] = STATE(175), - [sym_inline_image] = STATE(175), - [sym__image_description] = STATE(626), - [sym__link] = STATE(175), - [sym_full_reference_link] = STATE(175), - [sym_collapsed_reference_link] = STATE(175), - [sym_inline_link] = STATE(175), - [sym_link_text] = STATE(624), - [sym__comment_with_spaces] = STATE(175), - [sym_span] = STATE(175), - [sym_raw_inline] = STATE(175), - [sym_math] = STATE(175), - [sym_verbatim] = STATE(175), - [sym__todo_highlights] = STATE(175), - [sym_todo] = STATE(175), - [sym_note] = STATE(175), - [sym__symbol_fallback] = STATE(175), - [aux_sym__text] = STATE(125), - [aux_sym__inline_repeat1] = STATE(111), - [anon_sym_LBRACE_] = ACTIONS(1357), - [anon_sym__] = ACTIONS(1360), - [anon_sym_LBRACE_STAR] = ACTIONS(1363), - [anon_sym_STAR] = ACTIONS(1366), - [anon_sym_BSLASH] = ACTIONS(1369), - [sym_quotation_marks] = ACTIONS(1360), - [sym_ellipsis] = ACTIONS(1360), - [sym_em_dash] = ACTIONS(1360), - [sym_en_dash] = ACTIONS(1372), - [sym_backslash_escape] = ACTIONS(1372), - [anon_sym_LT] = ACTIONS(1375), - [anon_sym_LBRACE_EQ] = ACTIONS(1378), - [anon_sym_LBRACE_PLUS] = ACTIONS(1381), - [anon_sym_LBRACE_DASH] = ACTIONS(1384), - [sym_symbol] = ACTIONS(1360), - [anon_sym_LBRACE_CARET] = ACTIONS(1387), - [anon_sym_CARET] = ACTIONS(1387), - [anon_sym_LBRACE_TILDE] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1393), - [anon_sym_TILDE_RBRACE] = ACTIONS(662), - [anon_sym_LBRACK_CARET] = ACTIONS(1396), - [anon_sym_BANG_LBRACK] = ACTIONS(1399), - [anon_sym_LBRACK] = ACTIONS(1402), - [anon_sym_LBRACE2] = ACTIONS(1372), - [anon_sym_DOLLAR] = ACTIONS(1405), - [anon_sym_TODO] = ACTIONS(1408), - [anon_sym_WIP] = ACTIONS(1408), - [anon_sym_NOTE] = ACTIONS(1411), - [anon_sym_INFO] = ACTIONS(1411), - [anon_sym_XXX] = ACTIONS(1411), - [sym_fixme] = ACTIONS(1360), - [anon_sym_PIPE] = ACTIONS(1360), - [sym__whitespace1] = ACTIONS(1414), - [sym__newline] = ACTIONS(1417), - [aux_sym__text_token1] = ACTIONS(1420), - [sym__verbatim_begin] = ACTIONS(1423), - }, - [112] = { - [sym__inline] = STATE(800), - [sym__element] = STATE(105), - [sym_emphasis] = STATE(185), - [sym_emphasis_begin] = STATE(901), - [sym_strong] = STATE(185), - [sym_strong_begin] = STATE(89), - [sym__hard_line_break] = STATE(185), - [sym_hard_line_break] = STATE(185), - [sym__smart_punctuation] = STATE(185), - [sym_autolink] = STATE(185), - [sym_highlighted] = STATE(185), - [sym_insert] = STATE(185), - [sym_delete] = STATE(185), - [sym_superscript] = STATE(185), - [sym_subscript] = STATE(185), - [sym_footnote_reference] = STATE(185), - [sym__image] = STATE(185), - [sym_full_reference_image] = STATE(185), - [sym_collapsed_reference_image] = STATE(185), - [sym_inline_image] = STATE(185), - [sym__image_description] = STATE(628), - [sym__link] = STATE(185), - [sym_full_reference_link] = STATE(185), - [sym_collapsed_reference_link] = STATE(185), - [sym_inline_link] = STATE(185), - [sym_link_text] = STATE(629), - [sym__comment_with_spaces] = STATE(185), - [sym_span] = STATE(185), - [sym_raw_inline] = STATE(185), - [sym_math] = STATE(185), - [sym_verbatim] = STATE(185), - [sym__todo_highlights] = STATE(185), - [sym_todo] = STATE(185), - [sym_note] = STATE(185), - [sym__symbol_fallback] = STATE(185), - [aux_sym__text] = STATE(134), - [aux_sym__inline_repeat1] = STATE(105), - [anon_sym_LBRACE_] = ACTIONS(972), - [anon_sym__] = ACTIONS(974), - [anon_sym_LBRACE_STAR] = ACTIONS(976), - [anon_sym_STAR] = ACTIONS(978), - [anon_sym_BSLASH] = ACTIONS(980), - [sym_quotation_marks] = ACTIONS(974), - [sym_ellipsis] = ACTIONS(974), - [sym_em_dash] = ACTIONS(974), - [sym_en_dash] = ACTIONS(982), - [sym_backslash_escape] = ACTIONS(982), - [anon_sym_LT] = ACTIONS(984), - [anon_sym_LBRACE_EQ] = ACTIONS(986), - [anon_sym_LBRACE_PLUS] = ACTIONS(988), - [anon_sym_LBRACE_DASH] = ACTIONS(990), - [sym_symbol] = ACTIONS(974), - [anon_sym_LBRACE_CARET] = ACTIONS(992), - [anon_sym_CARET] = ACTIONS(992), - [anon_sym_LBRACE_TILDE] = ACTIONS(994), - [anon_sym_TILDE] = ACTIONS(994), - [anon_sym_LBRACK_CARET] = ACTIONS(996), - [anon_sym_BANG_LBRACK] = ACTIONS(998), - [anon_sym_LBRACK] = ACTIONS(1000), - [anon_sym_LBRACE2] = ACTIONS(982), - [anon_sym_DOLLAR] = ACTIONS(1002), - [anon_sym_TODO] = ACTIONS(1004), - [anon_sym_WIP] = ACTIONS(1004), - [anon_sym_NOTE] = ACTIONS(1006), - [anon_sym_INFO] = ACTIONS(1006), - [anon_sym_XXX] = ACTIONS(1006), - [sym_fixme] = ACTIONS(974), - [anon_sym_PIPE] = ACTIONS(974), - [sym__whitespace1] = ACTIONS(1008), - [sym__newline] = ACTIONS(1010), - [aux_sym__text_token1] = ACTIONS(1012), - [sym__verbatim_begin] = ACTIONS(1014), - }, - [113] = { - [sym__element] = STATE(111), - [sym_emphasis] = STATE(175), - [sym_emphasis_begin] = STATE(897), - [sym_strong] = STATE(175), - [sym_strong_begin] = STATE(108), - [sym__hard_line_break] = STATE(175), - [sym_hard_line_break] = STATE(175), - [sym__smart_punctuation] = STATE(175), - [sym_autolink] = STATE(175), - [sym_highlighted] = STATE(175), - [sym_insert] = STATE(175), - [sym_delete] = STATE(175), - [sym_superscript] = STATE(175), - [sym_subscript] = STATE(175), - [sym_footnote_reference] = STATE(175), - [sym__image] = STATE(175), - [sym_full_reference_image] = STATE(175), - [sym_collapsed_reference_image] = STATE(175), - [sym_inline_image] = STATE(175), - [sym__image_description] = STATE(626), - [sym__link] = STATE(175), - [sym_full_reference_link] = STATE(175), - [sym_collapsed_reference_link] = STATE(175), - [sym_inline_link] = STATE(175), - [sym_link_text] = STATE(624), - [sym__comment_with_spaces] = STATE(175), - [sym_span] = STATE(175), - [sym_raw_inline] = STATE(175), - [sym_math] = STATE(175), - [sym_verbatim] = STATE(175), - [sym__todo_highlights] = STATE(175), - [sym_todo] = STATE(175), - [sym_note] = STATE(175), - [sym__symbol_fallback] = STATE(175), - [aux_sym__text] = STATE(125), - [aux_sym__inline_repeat1] = STATE(111), - [anon_sym_LBRACE_] = ACTIONS(1426), - [anon_sym__] = ACTIONS(1428), - [anon_sym_LBRACE_STAR] = ACTIONS(1430), - [anon_sym_STAR] = ACTIONS(1432), - [anon_sym_BSLASH] = ACTIONS(1434), - [sym_quotation_marks] = ACTIONS(1428), - [sym_ellipsis] = ACTIONS(1428), - [sym_em_dash] = ACTIONS(1428), - [sym_en_dash] = ACTIONS(1436), - [sym_backslash_escape] = ACTIONS(1436), - [anon_sym_LT] = ACTIONS(1438), - [anon_sym_LBRACE_EQ] = ACTIONS(1440), - [anon_sym_LBRACE_PLUS] = ACTIONS(1442), - [anon_sym_LBRACE_DASH] = ACTIONS(1444), - [sym_symbol] = ACTIONS(1428), - [anon_sym_LBRACE_CARET] = ACTIONS(1446), - [anon_sym_CARET] = ACTIONS(1446), - [anon_sym_LBRACE_TILDE] = ACTIONS(1448), - [anon_sym_TILDE] = ACTIONS(548), - [anon_sym_TILDE_RBRACE] = ACTIONS(550), - [anon_sym_LBRACK_CARET] = ACTIONS(1450), - [anon_sym_BANG_LBRACK] = ACTIONS(1452), - [anon_sym_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE2] = ACTIONS(1436), - [anon_sym_DOLLAR] = ACTIONS(1456), - [anon_sym_TODO] = ACTIONS(1458), - [anon_sym_WIP] = ACTIONS(1458), - [anon_sym_NOTE] = ACTIONS(1460), - [anon_sym_INFO] = ACTIONS(1460), - [anon_sym_XXX] = ACTIONS(1460), - [sym_fixme] = ACTIONS(1428), - [anon_sym_PIPE] = ACTIONS(1428), - [sym__whitespace1] = ACTIONS(1462), - [sym__newline] = ACTIONS(1464), - [aux_sym__text_token1] = ACTIONS(1466), - [sym__verbatim_begin] = ACTIONS(1468), - }, - [114] = { - [sym__inline] = STATE(645), - [sym__element] = STATE(88), - [sym_emphasis] = STATE(165), - [sym_emphasis_begin] = STATE(899), - [sym_strong] = STATE(165), - [sym_strong_begin] = STATE(96), - [sym__hard_line_break] = STATE(165), - [sym_hard_line_break] = STATE(165), - [sym__smart_punctuation] = STATE(165), - [sym_autolink] = STATE(165), - [sym_highlighted] = STATE(165), - [sym_insert] = STATE(165), - [sym_delete] = STATE(165), - [sym_superscript] = STATE(165), - [sym_subscript] = STATE(165), - [sym_footnote_reference] = STATE(165), - [sym__image] = STATE(165), - [sym_full_reference_image] = STATE(165), - [sym_collapsed_reference_image] = STATE(165), - [sym_inline_image] = STATE(165), - [sym__image_description] = STATE(607), - [sym__link] = STATE(165), - [sym_full_reference_link] = STATE(165), - [sym_collapsed_reference_link] = STATE(165), - [sym_inline_link] = STATE(165), - [sym_link_text] = STATE(611), - [sym__comment_with_spaces] = STATE(165), - [sym_span] = STATE(165), - [sym_raw_inline] = STATE(165), - [sym_math] = STATE(165), - [sym_verbatim] = STATE(165), - [sym__todo_highlights] = STATE(165), - [sym_todo] = STATE(165), - [sym_note] = STATE(165), - [sym__symbol_fallback] = STATE(165), - [aux_sym__text] = STATE(156), - [aux_sym__inline_repeat1] = STATE(88), - [anon_sym_LBRACE_] = ACTIONS(1016), - [anon_sym__] = ACTIONS(1018), - [anon_sym_LBRACE_STAR] = ACTIONS(1020), - [anon_sym_STAR] = ACTIONS(1058), - [anon_sym_BSLASH] = ACTIONS(1022), - [sym_quotation_marks] = ACTIONS(1018), - [sym_ellipsis] = ACTIONS(1018), - [sym_em_dash] = ACTIONS(1018), - [sym_en_dash] = ACTIONS(1024), - [sym_backslash_escape] = ACTIONS(1024), - [anon_sym_LT] = ACTIONS(1026), - [anon_sym_LBRACE_EQ] = ACTIONS(1028), - [anon_sym_LBRACE_PLUS] = ACTIONS(1030), - [anon_sym_LBRACE_DASH] = ACTIONS(1032), - [sym_symbol] = ACTIONS(1018), - [anon_sym_LBRACE_CARET] = ACTIONS(1034), - [anon_sym_CARET] = ACTIONS(1034), - [anon_sym_LBRACE_TILDE] = ACTIONS(1036), - [anon_sym_TILDE] = ACTIONS(1036), - [anon_sym_LBRACK_CARET] = ACTIONS(1038), - [anon_sym_BANG_LBRACK] = ACTIONS(1040), - [anon_sym_LBRACK] = ACTIONS(1042), - [anon_sym_LBRACE2] = ACTIONS(1024), - [anon_sym_DOLLAR] = ACTIONS(1044), - [anon_sym_TODO] = ACTIONS(1046), - [anon_sym_WIP] = ACTIONS(1046), - [anon_sym_NOTE] = ACTIONS(1048), - [anon_sym_INFO] = ACTIONS(1048), - [anon_sym_XXX] = ACTIONS(1048), - [sym_fixme] = ACTIONS(1018), - [anon_sym_PIPE] = ACTIONS(1018), - [sym__whitespace1] = ACTIONS(1060), - [sym__newline] = ACTIONS(1062), - [aux_sym__text_token1] = ACTIONS(1054), - [sym__verbatim_begin] = ACTIONS(1056), - }, - [115] = { - [sym__inline] = STATE(849), - [sym__element] = STATE(105), - [sym_emphasis] = STATE(185), - [sym_emphasis_begin] = STATE(901), - [sym_strong] = STATE(185), - [sym_strong_begin] = STATE(89), - [sym__hard_line_break] = STATE(185), - [sym_hard_line_break] = STATE(185), - [sym__smart_punctuation] = STATE(185), - [sym_autolink] = STATE(185), - [sym_highlighted] = STATE(185), - [sym_insert] = STATE(185), - [sym_delete] = STATE(185), - [sym_superscript] = STATE(185), - [sym_subscript] = STATE(185), - [sym_footnote_reference] = STATE(185), - [sym__image] = STATE(185), - [sym_full_reference_image] = STATE(185), - [sym_collapsed_reference_image] = STATE(185), - [sym_inline_image] = STATE(185), - [sym__image_description] = STATE(628), - [sym__link] = STATE(185), - [sym_full_reference_link] = STATE(185), - [sym_collapsed_reference_link] = STATE(185), - [sym_inline_link] = STATE(185), - [sym_link_text] = STATE(629), - [sym__comment_with_spaces] = STATE(185), - [sym_span] = STATE(185), - [sym_raw_inline] = STATE(185), - [sym_math] = STATE(185), - [sym_verbatim] = STATE(185), - [sym__todo_highlights] = STATE(185), - [sym_todo] = STATE(185), - [sym_note] = STATE(185), - [sym__symbol_fallback] = STATE(185), - [aux_sym__text] = STATE(134), - [aux_sym__inline_repeat1] = STATE(105), - [anon_sym_LBRACE_] = ACTIONS(972), - [anon_sym__] = ACTIONS(974), - [anon_sym_LBRACE_STAR] = ACTIONS(976), - [anon_sym_STAR] = ACTIONS(978), - [anon_sym_BSLASH] = ACTIONS(980), - [sym_quotation_marks] = ACTIONS(974), - [sym_ellipsis] = ACTIONS(974), - [sym_em_dash] = ACTIONS(974), - [sym_en_dash] = ACTIONS(982), - [sym_backslash_escape] = ACTIONS(982), - [anon_sym_LT] = ACTIONS(984), - [anon_sym_LBRACE_EQ] = ACTIONS(986), - [anon_sym_LBRACE_PLUS] = ACTIONS(988), - [anon_sym_LBRACE_DASH] = ACTIONS(990), - [sym_symbol] = ACTIONS(974), - [anon_sym_LBRACE_CARET] = ACTIONS(992), - [anon_sym_CARET] = ACTIONS(992), - [anon_sym_LBRACE_TILDE] = ACTIONS(994), - [anon_sym_TILDE] = ACTIONS(994), - [anon_sym_LBRACK_CARET] = ACTIONS(996), - [anon_sym_BANG_LBRACK] = ACTIONS(998), - [anon_sym_LBRACK] = ACTIONS(1000), - [anon_sym_LBRACE2] = ACTIONS(982), - [anon_sym_DOLLAR] = ACTIONS(1002), - [anon_sym_TODO] = ACTIONS(1004), - [anon_sym_WIP] = ACTIONS(1004), - [anon_sym_NOTE] = ACTIONS(1006), - [anon_sym_INFO] = ACTIONS(1006), - [anon_sym_XXX] = ACTIONS(1006), - [sym_fixme] = ACTIONS(974), - [anon_sym_PIPE] = ACTIONS(974), - [sym__whitespace1] = ACTIONS(1008), - [sym__newline] = ACTIONS(1010), - [aux_sym__text_token1] = ACTIONS(1012), - [sym__verbatim_begin] = ACTIONS(1014), - }, - [116] = { - [sym__element] = STATE(116), - [sym_emphasis] = STATE(185), - [sym_emphasis_begin] = STATE(901), - [sym_strong] = STATE(185), - [sym_strong_begin] = STATE(89), - [sym__hard_line_break] = STATE(185), - [sym_hard_line_break] = STATE(185), - [sym__smart_punctuation] = STATE(185), - [sym_autolink] = STATE(185), - [sym_highlighted] = STATE(185), - [sym_insert] = STATE(185), - [sym_delete] = STATE(185), - [sym_superscript] = STATE(185), - [sym_subscript] = STATE(185), - [sym_footnote_reference] = STATE(185), - [sym__image] = STATE(185), - [sym_full_reference_image] = STATE(185), - [sym_collapsed_reference_image] = STATE(185), - [sym_inline_image] = STATE(185), - [sym__image_description] = STATE(628), - [sym__link] = STATE(185), - [sym_full_reference_link] = STATE(185), - [sym_collapsed_reference_link] = STATE(185), - [sym_inline_link] = STATE(185), - [sym_link_text] = STATE(629), - [sym__comment_with_spaces] = STATE(185), - [sym_span] = STATE(185), - [sym_raw_inline] = STATE(185), - [sym_math] = STATE(185), - [sym_verbatim] = STATE(185), - [sym__todo_highlights] = STATE(185), - [sym_todo] = STATE(185), - [sym_note] = STATE(185), - [sym__symbol_fallback] = STATE(185), - [aux_sym__text] = STATE(134), - [aux_sym__inline_repeat1] = STATE(116), - [anon_sym_LBRACE_] = ACTIONS(1470), - [anon_sym__] = ACTIONS(1473), - [anon_sym_LBRACE_STAR] = ACTIONS(1476), - [anon_sym_STAR] = ACTIONS(1479), - [anon_sym_BSLASH] = ACTIONS(1482), - [sym_quotation_marks] = ACTIONS(1473), - [sym_ellipsis] = ACTIONS(1473), - [sym_em_dash] = ACTIONS(1473), - [sym_en_dash] = ACTIONS(1485), - [sym_backslash_escape] = ACTIONS(1485), - [anon_sym_LT] = ACTIONS(1488), - [anon_sym_LBRACE_EQ] = ACTIONS(1491), - [anon_sym_LBRACE_PLUS] = ACTIONS(1494), - [anon_sym_LBRACE_DASH] = ACTIONS(1497), - [sym_symbol] = ACTIONS(1473), - [anon_sym_LBRACE_CARET] = ACTIONS(1500), - [anon_sym_CARET] = ACTIONS(1500), - [anon_sym_LBRACE_TILDE] = ACTIONS(1503), - [anon_sym_TILDE] = ACTIONS(1503), - [anon_sym_LBRACK_CARET] = ACTIONS(1506), - [anon_sym_BANG_LBRACK] = ACTIONS(1509), - [anon_sym_LBRACK] = ACTIONS(1512), - [anon_sym_RBRACK2] = ACTIONS(662), - [anon_sym_LBRACE2] = ACTIONS(1485), - [anon_sym_DOLLAR] = ACTIONS(1515), - [anon_sym_TODO] = ACTIONS(1518), - [anon_sym_WIP] = ACTIONS(1518), - [anon_sym_NOTE] = ACTIONS(1521), - [anon_sym_INFO] = ACTIONS(1521), - [anon_sym_XXX] = ACTIONS(1521), - [sym_fixme] = ACTIONS(1473), - [anon_sym_PIPE] = ACTIONS(1473), - [sym__whitespace1] = ACTIONS(1524), - [sym__newline] = ACTIONS(1527), - [aux_sym__text_token1] = ACTIONS(1530), - [sym__verbatim_begin] = ACTIONS(1533), - }, - [117] = { - [sym__inline] = STATE(638), - [sym__element] = STATE(88), - [sym_emphasis] = STATE(165), - [sym_emphasis_begin] = STATE(899), - [sym_strong] = STATE(165), - [sym_strong_begin] = STATE(96), - [sym__hard_line_break] = STATE(165), - [sym_hard_line_break] = STATE(165), - [sym__smart_punctuation] = STATE(165), - [sym_autolink] = STATE(165), - [sym_highlighted] = STATE(165), - [sym_insert] = STATE(165), - [sym_delete] = STATE(165), - [sym_superscript] = STATE(165), - [sym_subscript] = STATE(165), - [sym_footnote_reference] = STATE(165), - [sym__image] = STATE(165), - [sym_full_reference_image] = STATE(165), - [sym_collapsed_reference_image] = STATE(165), - [sym_inline_image] = STATE(165), - [sym__image_description] = STATE(607), - [sym__link] = STATE(165), - [sym_full_reference_link] = STATE(165), - [sym_collapsed_reference_link] = STATE(165), - [sym_inline_link] = STATE(165), - [sym_link_text] = STATE(611), - [sym__comment_with_spaces] = STATE(165), - [sym_span] = STATE(165), - [sym_raw_inline] = STATE(165), - [sym_math] = STATE(165), - [sym_verbatim] = STATE(165), - [sym__todo_highlights] = STATE(165), - [sym_todo] = STATE(165), - [sym_note] = STATE(165), - [sym__symbol_fallback] = STATE(165), - [aux_sym__text] = STATE(156), - [aux_sym__inline_repeat1] = STATE(88), - [anon_sym_LBRACE_] = ACTIONS(1016), - [anon_sym__] = ACTIONS(1018), - [anon_sym_LBRACE_STAR] = ACTIONS(1020), - [anon_sym_STAR] = ACTIONS(1058), - [anon_sym_BSLASH] = ACTIONS(1022), - [sym_quotation_marks] = ACTIONS(1018), - [sym_ellipsis] = ACTIONS(1018), - [sym_em_dash] = ACTIONS(1018), - [sym_en_dash] = ACTIONS(1024), - [sym_backslash_escape] = ACTIONS(1024), - [anon_sym_LT] = ACTIONS(1026), - [anon_sym_LBRACE_EQ] = ACTIONS(1028), - [anon_sym_LBRACE_PLUS] = ACTIONS(1030), - [anon_sym_LBRACE_DASH] = ACTIONS(1032), - [sym_symbol] = ACTIONS(1018), - [anon_sym_LBRACE_CARET] = ACTIONS(1034), - [anon_sym_CARET] = ACTIONS(1034), - [anon_sym_LBRACE_TILDE] = ACTIONS(1036), - [anon_sym_TILDE] = ACTIONS(1036), - [anon_sym_LBRACK_CARET] = ACTIONS(1038), - [anon_sym_BANG_LBRACK] = ACTIONS(1040), - [anon_sym_LBRACK] = ACTIONS(1042), - [anon_sym_LBRACE2] = ACTIONS(1024), - [anon_sym_DOLLAR] = ACTIONS(1044), - [anon_sym_TODO] = ACTIONS(1046), - [anon_sym_WIP] = ACTIONS(1046), - [anon_sym_NOTE] = ACTIONS(1048), - [anon_sym_INFO] = ACTIONS(1048), - [anon_sym_XXX] = ACTIONS(1048), - [sym_fixme] = ACTIONS(1018), - [anon_sym_PIPE] = ACTIONS(1018), - [sym__whitespace1] = ACTIONS(1060), - [sym__newline] = ACTIONS(1062), - [aux_sym__text_token1] = ACTIONS(1054), - [sym__verbatim_begin] = ACTIONS(1056), - }, - [118] = { - [sym__inline] = STATE(886), - [sym__element] = STATE(105), - [sym_emphasis] = STATE(185), - [sym_emphasis_begin] = STATE(901), - [sym_strong] = STATE(185), - [sym_strong_begin] = STATE(89), - [sym__hard_line_break] = STATE(185), - [sym_hard_line_break] = STATE(185), - [sym__smart_punctuation] = STATE(185), - [sym_autolink] = STATE(185), - [sym_highlighted] = STATE(185), - [sym_insert] = STATE(185), - [sym_delete] = STATE(185), - [sym_superscript] = STATE(185), - [sym_subscript] = STATE(185), - [sym_footnote_reference] = STATE(185), - [sym__image] = STATE(185), - [sym_full_reference_image] = STATE(185), - [sym_collapsed_reference_image] = STATE(185), - [sym_inline_image] = STATE(185), - [sym__image_description] = STATE(628), - [sym__link] = STATE(185), - [sym_full_reference_link] = STATE(185), - [sym_collapsed_reference_link] = STATE(185), - [sym_inline_link] = STATE(185), - [sym_link_text] = STATE(629), - [sym__comment_with_spaces] = STATE(185), - [sym_span] = STATE(185), - [sym_raw_inline] = STATE(185), - [sym_math] = STATE(185), - [sym_verbatim] = STATE(185), - [sym__todo_highlights] = STATE(185), - [sym_todo] = STATE(185), - [sym_note] = STATE(185), - [sym__symbol_fallback] = STATE(185), - [aux_sym__text] = STATE(134), - [aux_sym__inline_repeat1] = STATE(105), - [anon_sym_LBRACE_] = ACTIONS(972), - [anon_sym__] = ACTIONS(974), - [anon_sym_LBRACE_STAR] = ACTIONS(976), - [anon_sym_STAR] = ACTIONS(978), - [anon_sym_BSLASH] = ACTIONS(980), - [sym_quotation_marks] = ACTIONS(974), - [sym_ellipsis] = ACTIONS(974), - [sym_em_dash] = ACTIONS(974), - [sym_en_dash] = ACTIONS(982), - [sym_backslash_escape] = ACTIONS(982), - [anon_sym_LT] = ACTIONS(984), - [anon_sym_LBRACE_EQ] = ACTIONS(986), - [anon_sym_LBRACE_PLUS] = ACTIONS(988), - [anon_sym_LBRACE_DASH] = ACTIONS(990), - [sym_symbol] = ACTIONS(974), - [anon_sym_LBRACE_CARET] = ACTIONS(992), - [anon_sym_CARET] = ACTIONS(992), - [anon_sym_LBRACE_TILDE] = ACTIONS(994), - [anon_sym_TILDE] = ACTIONS(994), - [anon_sym_LBRACK_CARET] = ACTIONS(996), - [anon_sym_BANG_LBRACK] = ACTIONS(998), - [anon_sym_LBRACK] = ACTIONS(1000), - [anon_sym_LBRACE2] = ACTIONS(982), - [anon_sym_DOLLAR] = ACTIONS(1002), - [anon_sym_TODO] = ACTIONS(1004), - [anon_sym_WIP] = ACTIONS(1004), - [anon_sym_NOTE] = ACTIONS(1006), - [anon_sym_INFO] = ACTIONS(1006), - [anon_sym_XXX] = ACTIONS(1006), - [sym_fixme] = ACTIONS(974), - [anon_sym_PIPE] = ACTIONS(974), - [sym__whitespace1] = ACTIONS(1008), - [sym__newline] = ACTIONS(1010), - [aux_sym__text_token1] = ACTIONS(1012), - [sym__verbatim_begin] = ACTIONS(1014), - }, - [119] = { - [sym__inline] = STATE(647), - [sym__element] = STATE(88), - [sym_emphasis] = STATE(165), - [sym_emphasis_begin] = STATE(899), - [sym_strong] = STATE(165), - [sym_strong_begin] = STATE(96), - [sym__hard_line_break] = STATE(165), - [sym_hard_line_break] = STATE(165), - [sym__smart_punctuation] = STATE(165), - [sym_autolink] = STATE(165), - [sym_highlighted] = STATE(165), - [sym_insert] = STATE(165), - [sym_delete] = STATE(165), - [sym_superscript] = STATE(165), - [sym_subscript] = STATE(165), - [sym_footnote_reference] = STATE(165), - [sym__image] = STATE(165), - [sym_full_reference_image] = STATE(165), - [sym_collapsed_reference_image] = STATE(165), - [sym_inline_image] = STATE(165), - [sym__image_description] = STATE(607), - [sym__link] = STATE(165), - [sym_full_reference_link] = STATE(165), - [sym_collapsed_reference_link] = STATE(165), - [sym_inline_link] = STATE(165), - [sym_link_text] = STATE(611), - [sym__comment_with_spaces] = STATE(165), - [sym_span] = STATE(165), - [sym_raw_inline] = STATE(165), - [sym_math] = STATE(165), - [sym_verbatim] = STATE(165), - [sym__todo_highlights] = STATE(165), - [sym_todo] = STATE(165), - [sym_note] = STATE(165), - [sym__symbol_fallback] = STATE(165), - [aux_sym__text] = STATE(156), - [aux_sym__inline_repeat1] = STATE(88), - [anon_sym_LBRACE_] = ACTIONS(1016), - [anon_sym__] = ACTIONS(1018), - [anon_sym_LBRACE_STAR] = ACTIONS(1020), - [anon_sym_STAR] = ACTIONS(1058), - [anon_sym_BSLASH] = ACTIONS(1022), - [sym_quotation_marks] = ACTIONS(1018), - [sym_ellipsis] = ACTIONS(1018), - [sym_em_dash] = ACTIONS(1018), - [sym_en_dash] = ACTIONS(1024), - [sym_backslash_escape] = ACTIONS(1024), - [anon_sym_LT] = ACTIONS(1026), - [anon_sym_LBRACE_EQ] = ACTIONS(1028), - [anon_sym_LBRACE_PLUS] = ACTIONS(1030), - [anon_sym_LBRACE_DASH] = ACTIONS(1032), - [sym_symbol] = ACTIONS(1018), - [anon_sym_LBRACE_CARET] = ACTIONS(1034), - [anon_sym_CARET] = ACTIONS(1034), - [anon_sym_LBRACE_TILDE] = ACTIONS(1036), - [anon_sym_TILDE] = ACTIONS(1036), - [anon_sym_LBRACK_CARET] = ACTIONS(1038), - [anon_sym_BANG_LBRACK] = ACTIONS(1040), - [anon_sym_LBRACK] = ACTIONS(1042), - [anon_sym_LBRACE2] = ACTIONS(1024), - [anon_sym_DOLLAR] = ACTIONS(1044), - [anon_sym_TODO] = ACTIONS(1046), - [anon_sym_WIP] = ACTIONS(1046), - [anon_sym_NOTE] = ACTIONS(1048), - [anon_sym_INFO] = ACTIONS(1048), - [anon_sym_XXX] = ACTIONS(1048), - [sym_fixme] = ACTIONS(1018), - [anon_sym_PIPE] = ACTIONS(1018), - [sym__whitespace1] = ACTIONS(1060), - [sym__newline] = ACTIONS(1062), - [aux_sym__text_token1] = ACTIONS(1054), - [sym__verbatim_begin] = ACTIONS(1056), - }, - [120] = { - [sym__element] = STATE(120), - [sym_emphasis] = STATE(467), - [sym_emphasis_begin] = STATE(900), - [sym_strong] = STATE(467), - [sym_strong_begin] = STATE(92), - [sym__hard_line_break] = STATE(467), - [sym_hard_line_break] = STATE(467), - [sym__smart_punctuation] = STATE(467), - [sym_autolink] = STATE(467), - [sym_highlighted] = STATE(467), - [sym_insert] = STATE(467), - [sym_delete] = STATE(467), - [sym_superscript] = STATE(467), - [sym_subscript] = STATE(467), - [sym_footnote_reference] = STATE(467), - [sym__image] = STATE(467), - [sym_full_reference_image] = STATE(467), - [sym_collapsed_reference_image] = STATE(467), - [sym_inline_image] = STATE(467), - [sym__image_description] = STATE(619), - [sym__link] = STATE(467), - [sym_full_reference_link] = STATE(467), - [sym_collapsed_reference_link] = STATE(467), - [sym_inline_link] = STATE(467), - [sym_link_text] = STATE(620), - [sym__comment_with_spaces] = STATE(467), - [sym_span] = STATE(467), - [sym_raw_inline] = STATE(467), - [sym_math] = STATE(467), - [sym_verbatim] = STATE(467), - [sym__todo_highlights] = STATE(467), - [sym_todo] = STATE(467), - [sym_note] = STATE(467), - [sym__symbol_fallback] = STATE(467), - [aux_sym__text] = STATE(171), - [aux_sym__inline_repeat1] = STATE(120), - [anon_sym_LBRACE_] = ACTIONS(1536), - [anon_sym__] = ACTIONS(1539), - [anon_sym_LBRACE_STAR] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(1545), - [anon_sym_BSLASH] = ACTIONS(1548), - [sym_quotation_marks] = ACTIONS(1539), - [sym_ellipsis] = ACTIONS(1539), - [sym_em_dash] = ACTIONS(1539), - [sym_en_dash] = ACTIONS(1551), - [sym_backslash_escape] = ACTIONS(1551), - [anon_sym_LT] = ACTIONS(1554), - [anon_sym_LBRACE_EQ] = ACTIONS(1557), - [anon_sym_LBRACE_PLUS] = ACTIONS(1560), - [anon_sym_LBRACE_DASH] = ACTIONS(1563), - [sym_symbol] = ACTIONS(1539), - [anon_sym_LBRACE_CARET] = ACTIONS(1566), - [anon_sym_CARET] = ACTIONS(1566), - [anon_sym_LBRACE_TILDE] = ACTIONS(1569), - [anon_sym_TILDE] = ACTIONS(1569), - [anon_sym_LBRACK_CARET] = ACTIONS(1572), - [anon_sym_BANG_LBRACK] = ACTIONS(1575), - [anon_sym_LBRACK] = ACTIONS(1578), - [anon_sym_LBRACE2] = ACTIONS(1551), - [anon_sym_DOLLAR] = ACTIONS(1581), - [anon_sym_TODO] = ACTIONS(1584), - [anon_sym_WIP] = ACTIONS(1584), - [anon_sym_NOTE] = ACTIONS(1587), - [anon_sym_INFO] = ACTIONS(1587), - [anon_sym_XXX] = ACTIONS(1587), - [sym_fixme] = ACTIONS(1539), - [anon_sym_PIPE] = ACTIONS(1539), - [sym__whitespace1] = ACTIONS(1590), - [sym__newline] = ACTIONS(1593), - [aux_sym__text_token1] = ACTIONS(1596), - [sym__verbatim_begin] = ACTIONS(1599), - }, - [121] = { - [sym__element] = STATE(120), - [sym_emphasis] = STATE(467), - [sym_emphasis_begin] = STATE(900), - [sym_strong] = STATE(467), - [sym_strong_begin] = STATE(92), - [sym__hard_line_break] = STATE(467), - [sym_hard_line_break] = STATE(467), - [sym__smart_punctuation] = STATE(467), - [sym_autolink] = STATE(467), - [sym_highlighted] = STATE(467), - [sym_insert] = STATE(467), - [sym_delete] = STATE(467), - [sym_superscript] = STATE(467), - [sym_subscript] = STATE(467), - [sym_footnote_reference] = STATE(467), - [sym__image] = STATE(467), - [sym_full_reference_image] = STATE(467), - [sym_collapsed_reference_image] = STATE(467), - [sym_inline_image] = STATE(467), - [sym__image_description] = STATE(619), - [sym__link] = STATE(467), - [sym_full_reference_link] = STATE(467), - [sym_collapsed_reference_link] = STATE(467), - [sym_inline_link] = STATE(467), - [sym_link_text] = STATE(620), - [sym__comment_with_spaces] = STATE(467), - [sym_span] = STATE(467), - [sym_raw_inline] = STATE(467), - [sym_math] = STATE(467), - [sym_verbatim] = STATE(467), - [sym__todo_highlights] = STATE(467), - [sym_todo] = STATE(467), - [sym_note] = STATE(467), - [sym__symbol_fallback] = STATE(467), - [aux_sym__text] = STATE(171), - [aux_sym__inline_repeat1] = STATE(120), - [anon_sym_LBRACE_] = ACTIONS(618), - [anon_sym__] = ACTIONS(550), - [anon_sym_LBRACE_STAR] = ACTIONS(622), - [anon_sym_STAR] = ACTIONS(624), - [anon_sym_BSLASH] = ACTIONS(626), - [sym_quotation_marks] = ACTIONS(620), - [sym_ellipsis] = ACTIONS(620), - [sym_em_dash] = ACTIONS(620), - [sym_en_dash] = ACTIONS(628), - [sym_backslash_escape] = ACTIONS(628), - [anon_sym_LT] = ACTIONS(630), - [anon_sym_LBRACE_EQ] = ACTIONS(632), - [anon_sym_LBRACE_PLUS] = ACTIONS(634), - [anon_sym_LBRACE_DASH] = ACTIONS(636), - [sym_symbol] = ACTIONS(620), - [anon_sym_LBRACE_CARET] = ACTIONS(638), - [anon_sym_CARET] = ACTIONS(638), - [anon_sym_LBRACE_TILDE] = ACTIONS(640), - [anon_sym_TILDE] = ACTIONS(640), - [anon_sym_LBRACK_CARET] = ACTIONS(642), - [anon_sym_BANG_LBRACK] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_LBRACE2] = ACTIONS(628), - [anon_sym_DOLLAR] = ACTIONS(648), - [anon_sym_TODO] = ACTIONS(650), - [anon_sym_WIP] = ACTIONS(650), - [anon_sym_NOTE] = ACTIONS(652), - [anon_sym_INFO] = ACTIONS(652), - [anon_sym_XXX] = ACTIONS(652), - [sym_fixme] = ACTIONS(620), - [anon_sym_PIPE] = ACTIONS(620), - [sym__whitespace1] = ACTIONS(654), - [sym__newline] = ACTIONS(1602), - [aux_sym__text_token1] = ACTIONS(658), - [sym__verbatim_begin] = ACTIONS(660), + [anon_sym_LBRACK_CARET] = ACTIONS(941), + [anon_sym_BANG_LBRACK] = ACTIONS(943), + [anon_sym_LBRACK] = ACTIONS(945), + [anon_sym_LBRACE2] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(947), + [anon_sym_TODO] = ACTIONS(949), + [anon_sym_WIP] = ACTIONS(949), + [anon_sym_NOTE] = ACTIONS(951), + [anon_sym_INFO] = ACTIONS(951), + [anon_sym_XXX] = ACTIONS(951), + [sym_fixme] = ACTIONS(925), + [anon_sym_PIPE] = ACTIONS(925), + [sym__whitespace1] = ACTIONS(953), + [sym__newline] = ACTIONS(1619), + [aux_sym__text_token1] = ACTIONS(957), + [sym__verbatim_begin] = ACTIONS(959), + }, + [131] = { + [sym__element] = STATE(131), + [sym_emphasis] = STATE(466), + [sym_emphasis_begin] = STATE(1021), + [sym_strong] = STATE(466), + [sym_strong_begin] = STATE(99), + [sym__hard_line_break] = STATE(466), + [sym_hard_line_break] = STATE(466), + [sym__smart_punctuation] = STATE(466), + [sym_autolink] = STATE(466), + [sym_highlighted] = STATE(466), + [sym_insert] = STATE(466), + [sym_delete] = STATE(466), + [sym_superscript] = STATE(466), + [sym_subscript] = STATE(466), + [sym_footnote_reference] = STATE(466), + [sym__image] = STATE(466), + [sym_full_reference_image] = STATE(466), + [sym_collapsed_reference_image] = STATE(466), + [sym_inline_image] = STATE(466), + [sym__image_description] = STATE(704), + [sym__link] = STATE(466), + [sym_full_reference_link] = STATE(466), + [sym_collapsed_reference_link] = STATE(466), + [sym_inline_link] = STATE(466), + [sym_link_text] = STATE(688), + [sym__comment_with_spaces] = STATE(466), + [sym_span] = STATE(466), + [sym_raw_inline] = STATE(466), + [sym_math] = STATE(466), + [sym_verbatim] = STATE(466), + [sym__todo_highlights] = STATE(466), + [sym_todo] = STATE(466), + [sym_note] = STATE(466), + [sym__symbol_fallback] = STATE(466), + [aux_sym__text] = STATE(210), + [aux_sym__inline_repeat1] = STATE(131), + [anon_sym_LBRACE_] = ACTIONS(1621), + [anon_sym__] = ACTIONS(1624), + [anon_sym_LBRACE_STAR] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1630), + [anon_sym_BSLASH] = ACTIONS(1633), + [sym_quotation_marks] = ACTIONS(1636), + [sym_ellipsis] = ACTIONS(1636), + [sym_em_dash] = ACTIONS(1636), + [sym_en_dash] = ACTIONS(1639), + [sym_backslash_escape] = ACTIONS(1639), + [anon_sym_LT] = ACTIONS(1642), + [anon_sym_LBRACE_EQ] = ACTIONS(1645), + [anon_sym_LBRACE_PLUS] = ACTIONS(1648), + [anon_sym_LBRACE_DASH] = ACTIONS(1651), + [sym_symbol] = ACTIONS(1636), + [anon_sym_LBRACE_CARET] = ACTIONS(1654), + [anon_sym_CARET] = ACTIONS(1654), + [anon_sym_LBRACE_TILDE] = ACTIONS(1657), + [anon_sym_TILDE] = ACTIONS(1657), + [anon_sym_LBRACK_CARET] = ACTIONS(1660), + [anon_sym_BANG_LBRACK] = ACTIONS(1663), + [anon_sym_LBRACK] = ACTIONS(1666), + [anon_sym_LBRACE2] = ACTIONS(1639), + [anon_sym_DOLLAR] = ACTIONS(1669), + [anon_sym_TODO] = ACTIONS(1672), + [anon_sym_WIP] = ACTIONS(1672), + [anon_sym_NOTE] = ACTIONS(1675), + [anon_sym_INFO] = ACTIONS(1675), + [anon_sym_XXX] = ACTIONS(1675), + [sym_fixme] = ACTIONS(1636), + [anon_sym_PIPE] = ACTIONS(1636), + [sym__whitespace1] = ACTIONS(1678), + [sym__newline] = ACTIONS(1681), + [aux_sym__text_token1] = ACTIONS(1684), + [sym__verbatim_begin] = ACTIONS(1687), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 6, - ACTIONS(47), 1, + [0] = 4, + ACTIONS(1690), 1, + sym__id, + STATE(814), 1, + sym_reference_label, + ACTIONS(49), 17, + anon_sym_LBRACE, + anon_sym__, + anon_sym_STAR, + anon_sym_BSLASH, + sym_em_dash, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(84), 20, + sym__verbatim_begin, + anon_sym_LBRACE_, + anon_sym_LBRACE_STAR, + aux_sym_strong_end_token1, + sym_quotation_marks, + sym_ellipsis, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_PIPE, + sym__newline, + [48] = 6, + ACTIONS(49), 1, + anon_sym_LBRACE, + ACTIONS(84), 1, + anon_sym_PLUS_RBRACE, + ACTIONS(1695), 1, + anon_sym_SPACE, + STATE(298), 1, + aux_sym_strong_begin_repeat1, + ACTIONS(1697), 7, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1692), 28, + sym__verbatim_begin, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + sym__newline, + [100] = 6, + ACTIONS(49), 1, + anon_sym_LBRACE, + ACTIONS(84), 1, + anon_sym_EQ_RBRACE, + ACTIONS(1695), 1, + anon_sym_SPACE, + STATE(298), 1, + aux_sym_strong_begin_repeat1, + ACTIONS(1697), 7, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1692), 28, + sym__verbatim_begin, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + sym__newline, + [152] = 4, + ACTIONS(1704), 1, + anon_sym_LBRACE_EQ2, + STATE(497), 1, + sym_raw_inline_attribute, + ACTIONS(1700), 8, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACE_EQ, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1702), 29, + sym__verbatim_begin, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + sym__whitespace1, + sym__newline, + [200] = 6, + ACTIONS(49), 1, + anon_sym_LBRACE, + ACTIONS(84), 1, + ts_builtin_sym_end, + ACTIONS(1695), 1, + anon_sym_SPACE, + STATE(298), 1, + aux_sym_strong_begin_repeat1, + ACTIONS(1697), 7, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1692), 28, + sym__verbatim_begin, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + sym__newline, + [252] = 5, + ACTIONS(1706), 1, + anon_sym_LBRACE, + STATE(206), 1, + aux_sym__text, + STATE(567), 1, + sym_inline_attribute, + ACTIONS(1710), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1708), 30, + sym__verbatim_begin, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + sym__whitespace1, + sym__newline, + [302] = 6, + ACTIONS(49), 1, + anon_sym_LBRACE, + ACTIONS(84), 1, + anon_sym_DASH_RBRACE, + ACTIONS(1695), 1, + anon_sym_SPACE, + STATE(298), 1, + aux_sym_strong_begin_repeat1, + ACTIONS(1697), 7, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1692), 28, + sym__verbatim_begin, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + sym__newline, + [354] = 4, + ACTIONS(1690), 1, + sym__id, + STATE(964), 1, + sym_reference_label, + ACTIONS(49), 15, + anon_sym_LBRACE, + anon_sym__, + anon_sym_BSLASH, + sym_em_dash, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + aux_sym__text_token1, + ACTIONS(84), 22, + sym__verbatim_begin, + anon_sym_LBRACE_, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_PIPE, + sym__whitespace1, + sym__newline, + [402] = 4, + ACTIONS(1690), 1, + sym__id, + STATE(826), 1, + sym_reference_label, + ACTIONS(49), 15, + anon_sym_LBRACE, + anon_sym__, + anon_sym_BSLASH, + sym_em_dash, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + aux_sym__text_token1, + ACTIONS(84), 22, + sym__verbatim_begin, + anon_sym_LBRACE_, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_RBRACK, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_PIPE, + sym__whitespace1, + sym__newline, + [450] = 5, + ACTIONS(1712), 1, + anon_sym_LBRACE, + STATE(198), 1, + aux_sym__text, + STATE(587), 1, + sym_inline_attribute, + ACTIONS(1710), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1708), 30, + sym__verbatim_begin, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + sym__whitespace1, + sym__newline, + [500] = 4, + ACTIONS(1714), 1, + anon_sym_LBRACE_EQ2, + STATE(268), 1, + sym_raw_inline_attribute, + ACTIONS(1700), 8, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACE_EQ, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1702), 29, + sym__verbatim_begin, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + sym__whitespace1, + sym__newline, + [548] = 4, + ACTIONS(1716), 1, + anon_sym_LBRACE_EQ2, + STATE(233), 1, + sym_raw_inline_attribute, + ACTIONS(1700), 8, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACE_EQ, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1702), 29, + sym__verbatim_begin, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + sym__whitespace1, + sym__newline, + [596] = 6, + ACTIONS(49), 1, + anon_sym_LBRACE, + ACTIONS(84), 1, + anon_sym_RBRACK, + ACTIONS(1695), 1, + anon_sym_SPACE, + STATE(298), 1, + aux_sym_strong_begin_repeat1, + ACTIONS(1697), 7, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1692), 28, + sym__verbatim_begin, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + sym__newline, + [648] = 4, + ACTIONS(1718), 1, + anon_sym_LBRACE_EQ2, + STATE(491), 1, + sym_raw_inline_attribute, + ACTIONS(1700), 8, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACE_EQ, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1702), 29, + sym__verbatim_begin, + ts_builtin_sym_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + sym__whitespace1, + sym__newline, + [696] = 4, + ACTIONS(1720), 1, + anon_sym_LBRACE_EQ2, + STATE(372), 1, + sym_raw_inline_attribute, + ACTIONS(1700), 9, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACE_EQ, + anon_sym_TILDE, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1702), 28, + sym__verbatim_begin, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE_RBRACE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + sym__whitespace1, + sym__newline, + [744] = 5, + ACTIONS(1722), 1, + anon_sym_LBRACE, + STATE(201), 1, + aux_sym__text, + STATE(574), 1, + sym_inline_attribute, + ACTIONS(1710), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1708), 30, + sym__verbatim_begin, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + sym__whitespace1, + sym__newline, + [794] = 4, + ACTIONS(1690), 1, + sym__id, + STATE(857), 1, + sym_reference_label, + ACTIONS(49), 15, + anon_sym_LBRACE, + anon_sym__, + anon_sym_BSLASH, + sym_em_dash, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + aux_sym__text_token1, + ACTIONS(84), 22, + sym__verbatim_begin, + anon_sym_LBRACE_, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, + anon_sym_DOLLAR, + anon_sym_PIPE, + sym__whitespace1, + sym__newline, + [842] = 5, + ACTIONS(1724), 1, + anon_sym_LBRACE, + STATE(195), 1, + aux_sym__text, + STATE(588), 1, + sym_inline_attribute, + ACTIONS(1710), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1708), 30, + sym__verbatim_begin, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_RBRACK, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + sym__whitespace1, + sym__newline, + [892] = 4, + ACTIONS(1690), 1, + sym__id, + STATE(902), 1, + sym_reference_label, + ACTIONS(49), 15, + anon_sym_LBRACE, + anon_sym__, + anon_sym_BSLASH, + sym_em_dash, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + aux_sym__text_token1, + ACTIONS(84), 22, + sym__verbatim_begin, + anon_sym_LBRACE_, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_PIPE, + sym__whitespace1, + sym__newline, + [940] = 6, + ACTIONS(49), 1, + anon_sym_LBRACE, + ACTIONS(84), 1, + anon_sym_CARET_RBRACE, + ACTIONS(1695), 1, + anon_sym_SPACE, + STATE(298), 1, + aux_sym_strong_begin_repeat1, + ACTIONS(1697), 8, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_CARET, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1692), 27, + sym__verbatim_begin, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + sym__newline, + [992] = 4, + ACTIONS(1726), 1, + anon_sym_LBRACE_EQ2, + STATE(332), 1, + sym_raw_inline_attribute, + ACTIONS(1700), 8, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACE_EQ, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1702), 29, + sym__verbatim_begin, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_EQ_RBRACE, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + sym__whitespace1, + sym__newline, + [1040] = 5, + ACTIONS(1728), 1, + anon_sym_LBRACE, + STATE(199), 1, + aux_sym__text, + STATE(584), 1, + sym_inline_attribute, + ACTIONS(1710), 7, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_TILDE, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1708), 29, + sym__verbatim_begin, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE_RBRACE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + sym__whitespace1, + sym__newline, + [1090] = 4, + ACTIONS(1730), 1, + anon_sym_LBRACE_EQ2, + STATE(424), 1, + sym_raw_inline_attribute, + ACTIONS(1700), 8, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACE_EQ, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1702), 29, + sym__verbatim_begin, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_RBRACK, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + sym__whitespace1, + sym__newline, + [1138] = 5, + ACTIONS(1732), 1, + anon_sym_LBRACE, + STATE(202), 1, + aux_sym__text, + STATE(577), 1, + sym_inline_attribute, + ACTIONS(1710), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1708), 30, + sym__verbatim_begin, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + sym__whitespace1, + sym__newline, + [1188] = 4, + ACTIONS(1690), 1, + sym__id, + STATE(856), 1, + sym_reference_label, + ACTIONS(49), 16, + anon_sym_LBRACE, + anon_sym__, + anon_sym_BSLASH, + sym_em_dash, + sym_en_dash, + sym_backslash_escape, + anon_sym_TILDE, + anon_sym_LBRACK, + anon_sym_LBRACE2, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + aux_sym__text_token1, + ACTIONS(84), 21, + sym__verbatim_begin, + anon_sym_LBRACE_, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE_RBRACE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_PIPE, + sym__whitespace1, + sym__newline, + [1236] = 6, + ACTIONS(49), 1, + anon_sym_LBRACE, + ACTIONS(84), 1, + aux_sym_strong_end_token1, + ACTIONS(1695), 1, + anon_sym_SPACE, + STATE(298), 1, + aux_sym_strong_begin_repeat1, + ACTIONS(1697), 8, + anon_sym_STAR, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1692), 27, + sym__verbatim_begin, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + sym__newline, + [1288] = 4, + ACTIONS(1690), 1, + sym__id, + STATE(926), 1, + sym_reference_label, + ACTIONS(49), 15, + anon_sym_LBRACE, + anon_sym__, + anon_sym_BSLASH, + sym_em_dash, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + aux_sym__text_token1, + ACTIONS(84), 22, + sym__verbatim_begin, + ts_builtin_sym_end, + anon_sym_LBRACE_, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_PIPE, + sym__whitespace1, + sym__newline, + [1336] = 6, + ACTIONS(49), 1, + anon_sym_LBRACE, + ACTIONS(84), 1, + anon_sym_RBRACK2, + ACTIONS(1695), 1, + anon_sym_SPACE, + STATE(298), 1, + aux_sym_strong_begin_repeat1, + ACTIONS(1697), 7, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1692), 28, + sym__verbatim_begin, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + sym__newline, + [1388] = 4, + ACTIONS(1734), 1, + anon_sym_LBRACE_EQ2, + STATE(521), 1, + sym_raw_inline_attribute, + ACTIONS(1700), 10, + anon_sym_LBRACE, + anon_sym__, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACE_EQ, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1702), 27, + sym__verbatim_begin, + anon_sym_LBRACE_, + aux_sym_emphasis_end_token1, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + sym__newline, + [1436] = 5, + ACTIONS(1736), 1, + anon_sym_LBRACE, + STATE(178), 1, + aux_sym__text, + STATE(594), 1, + sym_inline_attribute, + ACTIONS(1710), 8, + anon_sym_STAR, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1708), 28, + sym__verbatim_begin, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + aux_sym_strong_end_token1, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + sym__newline, + [1486] = 4, + ACTIONS(1690), 1, + sym__id, + STATE(925), 1, + sym_reference_label, + ACTIONS(49), 15, + anon_sym_LBRACE, + anon_sym__, + anon_sym_BSLASH, + sym_em_dash, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + aux_sym__text_token1, + ACTIONS(84), 22, + sym__verbatim_begin, + anon_sym_LBRACE_, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_PIPE, + sym__whitespace1, + sym__newline, + [1534] = 5, + ACTIONS(1738), 1, + anon_sym_LBRACE, + STATE(184), 1, + aux_sym__text, + STATE(568), 1, + sym_inline_attribute, + ACTIONS(1710), 8, + anon_sym__, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1708), 28, + sym__verbatim_begin, + anon_sym_LBRACE_, + aux_sym_emphasis_end_token1, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + sym__newline, + [1584] = 6, + ACTIONS(49), 1, + anon_sym_LBRACE, + ACTIONS(84), 1, + anon_sym_TILDE_RBRACE, + ACTIONS(1695), 1, + anon_sym_SPACE, + STATE(298), 1, + aux_sym_strong_begin_repeat1, + ACTIONS(1697), 8, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_TILDE, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1692), 27, + sym__verbatim_begin, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + sym__newline, + [1636] = 4, + ACTIONS(1690), 1, + sym__id, + STATE(834), 1, + sym_reference_label, + ACTIONS(49), 16, + anon_sym_LBRACE, + anon_sym__, + anon_sym_BSLASH, + sym_em_dash, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(84), 21, + sym__verbatim_begin, + anon_sym_LBRACE_, + aux_sym_emphasis_end_token1, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_PIPE, + sym__newline, + [1684] = 4, + ACTIONS(1740), 1, + anon_sym_LBRACE_EQ2, + STATE(320), 1, + sym_raw_inline_attribute, + ACTIONS(1700), 9, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACE_EQ, + anon_sym_CARET, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1702), 28, + sym__verbatim_begin, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET_RBRACE, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + sym__whitespace1, + sym__newline, + [1732] = 6, + ACTIONS(49), 1, + anon_sym_LBRACE, + ACTIONS(84), 1, + aux_sym_emphasis_end_token1, + ACTIONS(1695), 1, + anon_sym_SPACE, + STATE(298), 1, + aux_sym_strong_begin_repeat1, + ACTIONS(1697), 8, + anon_sym__, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1692), 27, + sym__verbatim_begin, + anon_sym_LBRACE_, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + sym__newline, + [1784] = 4, + ACTIONS(1690), 1, + sym__id, + STATE(883), 1, + sym_reference_label, + ACTIONS(49), 16, + anon_sym_LBRACE, + anon_sym__, + anon_sym_BSLASH, + sym_em_dash, + sym_en_dash, + sym_backslash_escape, + anon_sym_CARET, + anon_sym_LBRACK, + anon_sym_LBRACE2, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + aux_sym__text_token1, + ACTIONS(84), 21, + sym__verbatim_begin, + anon_sym_LBRACE_, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET_RBRACE, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_PIPE, + sym__whitespace1, + sym__newline, + [1832] = 4, + ACTIONS(1742), 1, + anon_sym_LBRACE_EQ2, + STATE(476), 1, + sym_raw_inline_attribute, + ACTIONS(1700), 10, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACE_EQ, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1702), 27, + sym__verbatim_begin, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + aux_sym_strong_end_token1, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + sym__newline, + [1880] = 5, + ACTIONS(1744), 1, + anon_sym_LBRACE, + STATE(175), 1, + aux_sym__text, + STATE(600), 1, + sym_inline_attribute, + ACTIONS(1710), 7, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_CARET, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1708), 29, + sym__verbatim_begin, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET_RBRACE, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + sym__whitespace1, + sym__newline, + [1930] = 5, + ACTIONS(1746), 1, + anon_sym_LBRACE, + STATE(207), 1, + aux_sym__text, + STATE(564), 1, + sym_inline_attribute, + ACTIONS(1710), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1708), 30, + sym__verbatim_begin, + ts_builtin_sym_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + sym__whitespace1, + sym__newline, + [1980] = 4, + ACTIONS(1744), 1, + anon_sym_LBRACE, + STATE(600), 1, + sym_inline_attribute, + ACTIONS(1710), 7, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_CARET, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1708), 29, + sym__verbatim_begin, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET_RBRACE, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + sym__whitespace1, + sym__newline, + [2027] = 3, + ACTIONS(1748), 1, + sym__non_whitespace_check, + ACTIONS(49), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(84), 30, + sym__verbatim_begin, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + sym__whitespace1, + sym__newline, + [2072] = 3, + ACTIONS(1750), 1, + sym__non_whitespace_check, + ACTIONS(49), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(84), 30, + sym__verbatim_begin, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + sym__whitespace1, + sym__newline, + [2117] = 4, + ACTIONS(1756), 1, + aux_sym__text_token1, + STATE(175), 1, + aux_sym__text, + ACTIONS(1752), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_CARET, + anon_sym_LBRACK, + anon_sym_LBRACE2, + ACTIONS(1754), 29, + sym__verbatim_begin, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET_RBRACE, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + sym__whitespace1, + sym__newline, + [2164] = 4, + ACTIONS(1732), 1, + anon_sym_LBRACE, + STATE(577), 1, + sym_inline_attribute, + ACTIONS(1710), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1708), 30, + sym__verbatim_begin, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + sym__whitespace1, + sym__newline, + [2211] = 3, + ACTIONS(1759), 1, + aux_sym_autolink_token1, + ACTIONS(84), 3, + sym__verbatim_begin, + sym__whitespace1, + sym__newline, + ACTIONS(49), 34, + anon_sym_LBRACE, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_BSLASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + sym_en_dash, + sym_backslash_escape, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_LBRACK, + anon_sym_LBRACE2, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + aux_sym__text_token1, + [2256] = 4, + ACTIONS(1761), 1, + aux_sym__text_token1, + STATE(178), 1, + aux_sym__text, + ACTIONS(1752), 8, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + ACTIONS(1754), 28, + sym__verbatim_begin, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + aux_sym_strong_end_token1, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + sym__newline, + [2303] = 4, + ACTIONS(1738), 1, + anon_sym_LBRACE, + STATE(568), 1, + sym_inline_attribute, + ACTIONS(1710), 8, + anon_sym__, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1708), 28, + sym__verbatim_begin, + anon_sym_LBRACE_, + aux_sym_emphasis_end_token1, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + sym__newline, + [2350] = 3, + ACTIONS(1764), 1, + aux_sym_autolink_token1, + ACTIONS(84), 2, + sym__verbatim_begin, + sym__newline, + ACTIONS(49), 35, + anon_sym_LBRACE, + anon_sym_LBRACE_, + anon_sym__, + aux_sym_emphasis_end_token1, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_BSLASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + sym_en_dash, + sym_backslash_escape, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_LBRACK, + anon_sym_LBRACE2, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + sym__whitespace1, + aux_sym__text_token1, + [2395] = 3, + ACTIONS(1766), 1, + sym__non_whitespace_check, + ACTIONS(49), 8, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_TILDE, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(84), 29, + sym__verbatim_begin, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE_RBRACE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + sym__whitespace1, + sym__newline, + [2440] = 4, + ACTIONS(1728), 1, + anon_sym_LBRACE, + STATE(584), 1, + sym_inline_attribute, + ACTIONS(1710), 7, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_TILDE, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1708), 29, + sym__verbatim_begin, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE_RBRACE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + sym__whitespace1, + sym__newline, + [2487] = 3, + ACTIONS(1768), 1, + aux_sym_autolink_token1, + ACTIONS(84), 3, + sym__verbatim_begin, + sym__whitespace1, + sym__newline, + ACTIONS(49), 34, + anon_sym_LBRACE, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_BSLASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + sym_en_dash, + sym_backslash_escape, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_TILDE_RBRACE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_LBRACK, + anon_sym_LBRACE2, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + aux_sym__text_token1, + [2532] = 4, + ACTIONS(1770), 1, + aux_sym__text_token1, + STATE(184), 1, + aux_sym__text, + ACTIONS(1752), 8, + anon_sym_LBRACE, + anon_sym__, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + ACTIONS(1754), 28, + sym__verbatim_begin, + anon_sym_LBRACE_, + aux_sym_emphasis_end_token1, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + sym__newline, + [2579] = 4, + ACTIONS(1690), 1, + sym__id, + STATE(880), 1, + sym_reference_label, + ACTIONS(49), 15, + anon_sym_LBRACE, + anon_sym__, + anon_sym_BSLASH, + sym_em_dash, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + aux_sym__text_token1, + ACTIONS(84), 21, + sym__verbatim_begin, + anon_sym_LBRACE_, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_PIPE, + sym__whitespace1, + sym__newline, + [2626] = 3, + ACTIONS(1773), 1, + sym__non_whitespace_check, + ACTIONS(49), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(84), 30, + sym__verbatim_begin, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + sym__whitespace1, + sym__newline, + [2671] = 3, + ACTIONS(1775), 1, + aux_sym_autolink_token1, + ACTIONS(84), 2, + sym__verbatim_begin, + sym__newline, + ACTIONS(49), 35, + anon_sym_LBRACE, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + aux_sym_strong_end_token1, + anon_sym_BSLASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + sym_en_dash, + sym_backslash_escape, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_LBRACK, + anon_sym_LBRACE2, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + sym__whitespace1, + aux_sym__text_token1, + [2716] = 4, + ACTIONS(1722), 1, + anon_sym_LBRACE, + STATE(574), 1, + sym_inline_attribute, + ACTIONS(1710), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1708), 30, + sym__verbatim_begin, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + sym__whitespace1, + sym__newline, + [2763] = 4, + ACTIONS(1736), 1, + anon_sym_LBRACE, + STATE(594), 1, + sym_inline_attribute, + ACTIONS(1710), 8, + anon_sym_STAR, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1708), 28, + sym__verbatim_begin, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + aux_sym_strong_end_token1, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + sym__newline, + [2810] = 3, + ACTIONS(1777), 1, + sym__non_whitespace_check, + ACTIONS(49), 9, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(84), 28, + sym__verbatim_begin, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + aux_sym_strong_end_token1, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + sym__newline, + [2855] = 3, + ACTIONS(1779), 1, + aux_sym_autolink_token1, + ACTIONS(84), 3, + sym__verbatim_begin, + sym__whitespace1, + sym__newline, + ACTIONS(49), 34, + anon_sym_LBRACE, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_BSLASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + sym_en_dash, + sym_backslash_escape, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_LBRACK, + anon_sym_RBRACK2, + anon_sym_LBRACE2, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + aux_sym__text_token1, + [2900] = 3, + ACTIONS(1781), 1, + sym__non_whitespace_check, + ACTIONS(49), 9, + anon_sym_LBRACE, + anon_sym__, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(84), 28, + sym__verbatim_begin, + anon_sym_LBRACE_, + aux_sym_emphasis_end_token1, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + sym__newline, + [2945] = 3, + ACTIONS(1783), 1, + aux_sym_autolink_token1, + ACTIONS(84), 4, + sym__verbatim_begin, + ts_builtin_sym_end, + sym__whitespace1, + sym__newline, + ACTIONS(49), 33, anon_sym_LBRACE, - ACTIONS(79), 1, - anon_sym_TILDE_RBRACE, - ACTIONS(1607), 1, - anon_sym_SPACE, - STATE(370), 1, - aux_sym_strong_begin_repeat1, - ACTIONS(1609), 8, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, anon_sym_BSLASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, sym_en_dash, sym_backslash_escape, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, anon_sym_LBRACK, anon_sym_LBRACE2, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + aux_sym__text_token1, + [2990] = 3, + ACTIONS(1785), 1, + aux_sym_autolink_token1, + ACTIONS(84), 3, + sym__verbatim_begin, sym__whitespace1, + sym__newline, + ACTIONS(49), 34, + anon_sym_LBRACE, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_BSLASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + sym_en_dash, + sym_backslash_escape, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_CARET_RBRACE, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_LBRACK, + anon_sym_LBRACE2, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, aux_sym__text_token1, - ACTIONS(1604), 27, + [3035] = 4, + ACTIONS(1787), 1, + aux_sym__text_token1, + STATE(195), 1, + aux_sym__text, + ACTIONS(1752), 6, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + ACTIONS(1754), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -16842,7 +21072,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -16852,25 +21084,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [52] = 6, - ACTIONS(47), 1, + [3082] = 3, + ACTIONS(1790), 1, + sym__non_whitespace_check, + ACTIONS(49), 8, anon_sym_LBRACE, - ACTIONS(79), 1, - anon_sym_EQ_RBRACE, - ACTIONS(1607), 1, - anon_sym_SPACE, - STATE(370), 1, - aux_sym_strong_begin_repeat1, - ACTIONS(1609), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1604), 28, + ACTIONS(84), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -16885,7 +21113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -16898,35 +21126,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [104] = 4, - ACTIONS(1612), 1, - sym__id, - STATE(891), 1, - sym_reference_label, - ACTIONS(47), 15, + [3127] = 4, + ACTIONS(1746), 1, anon_sym_LBRACE, - anon_sym__, + STATE(564), 1, + sym_inline_attribute, + ACTIONS(1710), 6, anon_sym_BSLASH, - sym_em_dash, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1708), 30, + sym__verbatim_begin, + ts_builtin_sym_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, anon_sym_NOTE, anon_sym_INFO, anon_sym_XXX, sym_fixme, + anon_sym_PIPE, + sym__whitespace1, + sym__newline, + [3174] = 4, + ACTIONS(1792), 1, aux_sym__text_token1, - ACTIONS(79), 22, + STATE(198), 1, + aux_sym__text, + ACTIONS(1752), 6, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + ACTIONS(1754), 30, sym__verbatim_begin, anon_sym_LBRACE_, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, sym_ellipsis, + sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_EQ_RBRACE, @@ -16940,25 +21205,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, anon_sym_PIPE, sym__whitespace1, sym__newline, - [152] = 5, - ACTIONS(1614), 1, - anon_sym_LBRACE, - STATE(186), 1, + [3221] = 4, + ACTIONS(1795), 1, + aux_sym__text_token1, + STATE(199), 1, aux_sym__text, - STATE(539), 1, - sym_inline_attribute, - ACTIONS(1618), 7, + ACTIONS(1752), 7, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(1616), 29, + ACTIONS(1754), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -16988,16 +21257,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [202] = 6, - ACTIONS(47), 1, + [3268] = 5, + ACTIONS(49), 1, anon_sym_LBRACE, - ACTIONS(79), 1, - anon_sym_RBRACK2, - ACTIONS(1607), 1, + ACTIONS(1695), 1, anon_sym_SPACE, - STATE(370), 1, + STATE(298), 1, aux_sym_strong_begin_repeat1, - ACTIONS(1609), 7, + ACTIONS(1697), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, @@ -17005,7 +21272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1604), 28, + ACTIONS(1692), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -17034,22 +21301,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [254] = 4, - ACTIONS(1624), 1, - anon_sym_LBRACE_EQ2, - STATE(356), 1, - sym_raw_inline_attribute, - ACTIONS(1620), 9, + [3317] = 4, + ACTIONS(1798), 1, + aux_sym__text_token1, + STATE(201), 1, + aux_sym__text, + ACTIONS(1752), 6, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE_EQ, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(1622), 28, + ACTIONS(1754), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -17059,15 +21323,17 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, sym_em_dash, anon_sym_LT, + anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -17078,35 +21344,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [302] = 4, - ACTIONS(1612), 1, - sym__id, - STATE(739), 1, - sym_reference_label, - ACTIONS(47), 16, + [3364] = 4, + ACTIONS(1801), 1, + aux_sym__text_token1, + STATE(202), 1, + aux_sym__text, + ACTIONS(1752), 6, anon_sym_LBRACE, - anon_sym__, anon_sym_BSLASH, - sym_em_dash, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, + ACTIONS(1754), 30, + sym__verbatim_begin, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, anon_sym_NOTE, anon_sym_INFO, anon_sym_XXX, sym_fixme, + anon_sym_PIPE, + sym__whitespace1, + sym__newline, + [3411] = 3, + ACTIONS(1804), 1, + sym__non_whitespace_check, + ACTIONS(49), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(79), 21, + ACTIONS(84), 30, sym__verbatim_begin, anon_sym_LBRACE_, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, sym_ellipsis, + sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, @@ -17115,31 +21415,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, anon_sym_PIPE, sym__whitespace1, sym__newline, - [350] = 6, - ACTIONS(47), 1, + [3456] = 4, + ACTIONS(1724), 1, anon_sym_LBRACE, - ACTIONS(79), 1, - anon_sym_RBRACK, - ACTIONS(1607), 1, - anon_sym_SPACE, - STATE(370), 1, - aux_sym_strong_begin_repeat1, - ACTIONS(1609), 7, + STATE(588), 1, + sym_inline_attribute, + ACTIONS(1710), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1604), 28, + ACTIONS(1708), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -17158,6 +21460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -17167,22 +21470,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, + sym__newline, + [3503] = 3, + ACTIONS(1806), 1, + aux_sym_autolink_token1, + ACTIONS(84), 3, + sym__verbatim_begin, + sym__whitespace1, sym__newline, - [402] = 5, - ACTIONS(1626), 1, + ACTIONS(49), 34, anon_sym_LBRACE, - STATE(161), 1, - aux_sym__text, - STATE(494), 1, - sym_inline_attribute, - ACTIONS(1618), 6, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, anon_sym_BSLASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, sym_en_dash, sym_backslash_escape, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_RBRACK, + anon_sym_BANG_LBRACK, anon_sym_LBRACK, anon_sym_LBRACE2, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + aux_sym__text_token1, + [3548] = 4, + ACTIONS(1808), 1, aux_sym__text_token1, - ACTIONS(1616), 30, + STATE(206), 1, + aux_sym__text, + ACTIONS(1752), 6, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + ACTIONS(1754), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -17194,8 +21538,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -17213,22 +21557,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [452] = 5, - ACTIONS(1628), 1, - anon_sym_LBRACE, - STATE(173), 1, + [3595] = 4, + ACTIONS(1811), 1, + aux_sym__text_token1, + STATE(207), 1, aux_sym__text, - STATE(538), 1, - sym_inline_attribute, - ACTIONS(1618), 6, + ACTIONS(1752), 6, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(1616), 30, + ACTIONS(1754), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17238,7 +21581,6 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -17258,21 +21600,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [502] = 5, - ACTIONS(1630), 1, + [3642] = 3, + ACTIONS(1814), 1, + sym__non_whitespace_check, + ACTIONS(49), 7, anon_sym_LBRACE, - STATE(166), 1, - aux_sym__text, - STATE(519), 1, - sym_inline_attribute, - ACTIONS(1618), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1616), 30, + ACTIONS(84), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -17303,24 +21642,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [552] = 6, - ACTIONS(47), 1, + [3687] = 4, + ACTIONS(1816), 1, + anon_sym_LBRACE_EQ2, + STATE(619), 1, + sym_raw_inline_attribute, + ACTIONS(1700), 8, anon_sym_LBRACE, - ACTIONS(79), 1, - anon_sym_DASH_RBRACE, - ACTIONS(1607), 1, - anon_sym_SPACE, - STATE(370), 1, - aux_sym_strong_begin_repeat1, - ACTIONS(1609), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE_EQ, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1604), 28, + ACTIONS(1702), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -17330,7 +21666,6 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -17348,22 +21683,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [604] = 5, - ACTIONS(1632), 1, + [3734] = 5, + ACTIONS(1818), 1, anon_sym_LBRACE, - STATE(179), 1, + STATE(439), 1, aux_sym__text, - STATE(535), 1, + STATE(628), 1, sym_inline_attribute, - ACTIONS(1618), 6, + ACTIONS(1710), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1616), 30, + ACTIONS(1708), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -17383,7 +21719,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -17394,38 +21729,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [654] = 4, - ACTIONS(1612), 1, - sym__id, - STATE(773), 1, - sym_reference_label, - ACTIONS(47), 15, + [3783] = 4, + ACTIONS(1706), 1, anon_sym_LBRACE, - anon_sym__, + STATE(567), 1, + sym_inline_attribute, + ACTIONS(1710), 6, anon_sym_BSLASH, - sym_em_dash, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, aux_sym__text_token1, - ACTIONS(79), 22, + ACTIONS(1708), 30, sym__verbatim_begin, anon_sym_LBRACE_, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, sym_ellipsis, + sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -17433,42 +21762,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, anon_sym_PIPE, sym__whitespace1, sym__newline, - [702] = 4, - ACTIONS(1612), 1, - sym__id, - STATE(808), 1, - sym_reference_label, - ACTIONS(47), 15, + [3830] = 3, + ACTIONS(1820), 1, + aux_sym_autolink_token1, + ACTIONS(84), 3, + sym__verbatim_begin, + sym__whitespace1, + sym__newline, + ACTIONS(49), 34, anon_sym_LBRACE, + anon_sym_LBRACE_, anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, anon_sym_BSLASH, + sym_quotation_marks, + sym_ellipsis, sym_em_dash, sym_en_dash, sym_backslash_escape, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, anon_sym_LBRACK, anon_sym_LBRACE2, + anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, anon_sym_NOTE, anon_sym_INFO, anon_sym_XXX, sym_fixme, + anon_sym_PIPE, aux_sym__text_token1, - ACTIONS(79), 22, + [3875] = 3, + ACTIONS(1822), 1, + aux_sym_autolink_token1, + ACTIONS(84), 3, sym__verbatim_begin, - ts_builtin_sym_end, + sym__whitespace1, + sym__newline, + ACTIONS(49), 34, + anon_sym_LBRACE, anon_sym_LBRACE_, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, + sym_em_dash, + sym_en_dash, + sym_backslash_escape, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -17478,42 +21845,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_PIPE, - sym__whitespace1, - sym__newline, - [750] = 4, - ACTIONS(1612), 1, - sym__id, - STATE(855), 1, - sym_reference_label, - ACTIONS(47), 15, - anon_sym_LBRACE, - anon_sym__, - anon_sym_BSLASH, - sym_em_dash, - sym_en_dash, - sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, anon_sym_NOTE, anon_sym_INFO, anon_sym_XXX, sym_fixme, + anon_sym_PIPE, + aux_sym__text_token1, + [3920] = 3, + ACTIONS(1824), 1, + sym__non_whitespace_check, + ACTIONS(49), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(79), 22, + ACTIONS(84), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, sym_ellipsis, + sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -17523,25 +21889,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, anon_sym_PIPE, sym__whitespace1, sym__newline, - [798] = 4, - ACTIONS(1634), 1, - anon_sym_LBRACE_EQ2, - STATE(306), 1, - sym_raw_inline_attribute, - ACTIONS(1620), 9, + [3965] = 4, + ACTIONS(1712), 1, anon_sym_LBRACE, + STATE(587), 1, + sym_inline_attribute, + ACTIONS(1710), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE_EQ, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1622), 28, + ACTIONS(1708), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -17551,11 +21920,13 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, sym_em_dash, anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -17570,32 +21941,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [846] = 4, - ACTIONS(1636), 1, - anon_sym_LBRACE_EQ2, - STATE(222), 1, - sym_raw_inline_attribute, - ACTIONS(1620), 8, + [4012] = 2, + ACTIONS(1826), 9, anon_sym_LBRACE, + anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE_EQ, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1622), 29, + ACTIONS(1828), 28, sym__verbatim_begin, anon_sym_LBRACE_, - anon_sym__, + aux_sym_emphasis_end_token1, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, + anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -17612,31 +21980,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [894] = 6, - ACTIONS(47), 1, + [4054] = 2, + ACTIONS(1830), 7, anon_sym_LBRACE, - ACTIONS(79), 1, - aux_sym_strong_end_token1, - ACTIONS(1607), 1, - anon_sym_SPACE, - STATE(370), 1, - aux_sym_strong_begin_repeat1, - ACTIONS(1609), 8, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1604), 27, + ACTIONS(1832), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -17651,6 +22010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -17659,25 +22019,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [946] = 6, - ACTIONS(47), 1, + [4096] = 2, + ACTIONS(1826), 7, anon_sym_LBRACE, - ACTIONS(79), 1, - ts_builtin_sym_end, - ACTIONS(1607), 1, - anon_sym_SPACE, - STATE(370), 1, - aux_sym_strong_begin_repeat1, - ACTIONS(1609), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1604), 28, + ACTIONS(1828), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -17689,6 +22042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -17705,40 +22059,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [998] = 4, - ACTIONS(1612), 1, - sym__id, - STATE(816), 1, - sym_reference_label, - ACTIONS(47), 15, + [4138] = 2, + ACTIONS(1834), 7, anon_sym_LBRACE, - anon_sym__, anon_sym_BSLASH, - sym_em_dash, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, aux_sym__text_token1, - ACTIONS(79), 22, + ACTIONS(1836), 30, sym__verbatim_begin, anon_sym_LBRACE_, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, sym_ellipsis, + sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -17747,26 +22092,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, anon_sym_PIPE, sym__whitespace1, sym__newline, - [1046] = 4, - ACTIONS(1638), 1, - anon_sym_LBRACE_EQ2, - STATE(422), 1, - sym_raw_inline_attribute, - ACTIONS(1620), 8, + [4180] = 2, + ACTIONS(1838), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE_EQ, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1622), 29, + ACTIONS(1840), 30, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17775,7 +22120,9 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, sym_em_dash, anon_sym_LT, + anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -17794,21 +22141,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [1094] = 5, - ACTIONS(1640), 1, + [4222] = 2, + ACTIONS(1842), 7, anon_sym_LBRACE, - STATE(172), 1, - aux_sym__text, - STATE(547), 1, - sym_inline_attribute, - ACTIONS(1618), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1616), 30, + ACTIONS(1844), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -17820,6 +22162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -17827,7 +22170,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -17839,21 +22181,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [1144] = 4, - ACTIONS(1642), 1, - anon_sym_LBRACE_EQ2, - STATE(268), 1, - sym_raw_inline_attribute, - ACTIONS(1620), 8, + [4264] = 2, + ACTIONS(1846), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE_EQ, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1622), 29, + ACTIONS(1848), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -17863,8 +22200,9 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_EQ_RBRACE, + anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -17883,22 +22221,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [1192] = 5, - ACTIONS(1644), 1, + [4306] = 4, + ACTIONS(49), 1, anon_sym_LBRACE, - STATE(174), 1, - aux_sym__text, - STATE(530), 1, - sym_inline_attribute, - ACTIONS(1618), 7, + ACTIONS(84), 1, + ts_builtin_sym_end, + ACTIONS(1697), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1616), 29, + ACTIONS(1692), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -17913,7 +22248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -17928,24 +22263,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [1242] = 6, - ACTIONS(47), 1, + [4352] = 2, + ACTIONS(1850), 7, anon_sym_LBRACE, - ACTIONS(79), 1, - anon_sym_PLUS_RBRACE, - ACTIONS(1607), 1, - anon_sym_SPACE, - STATE(370), 1, - aux_sym_strong_begin_repeat1, - ACTIONS(1609), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1604), 28, + ACTIONS(1852), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -17957,6 +22284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -17973,22 +22301,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [1294] = 4, - ACTIONS(1646), 1, - anon_sym_LBRACE_EQ2, - STATE(406), 1, - sym_raw_inline_attribute, - ACTIONS(1620), 8, + [4394] = 2, + ACTIONS(1854), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE_EQ, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1622), 29, + ACTIONS(1856), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -17998,7 +22322,9 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, sym_em_dash, anon_sym_LT, + anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -18006,7 +22332,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -18018,81 +22343,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [1342] = 4, - ACTIONS(1612), 1, - sym__id, - STATE(776), 1, - sym_reference_label, - ACTIONS(47), 16, + [4436] = 2, + ACTIONS(1858), 7, anon_sym_LBRACE, - anon_sym__, anon_sym_BSLASH, - sym_em_dash, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, aux_sym__text_token1, - ACTIONS(79), 21, + ACTIONS(1860), 30, sym__verbatim_begin, anon_sym_LBRACE_, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, sym_ellipsis, + sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, anon_sym_PIPE, sym__whitespace1, sym__newline, - [1390] = 4, - ACTIONS(1612), 1, - sym__id, - STATE(713), 1, - sym_reference_label, - ACTIONS(47), 15, + [4478] = 2, + ACTIONS(1862), 7, anon_sym_LBRACE, - anon_sym__, anon_sym_BSLASH, - sym_em_dash, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, aux_sym__text_token1, - ACTIONS(79), 22, + ACTIONS(1864), 30, sym__verbatim_begin, anon_sym_LBRACE_, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, sym_ellipsis, + sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -18100,29 +22412,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, anon_sym_PIPE, sym__whitespace1, sym__newline, - [1438] = 5, - ACTIONS(1648), 1, + [4520] = 2, + ACTIONS(1866), 7, anon_sym_LBRACE, - STATE(188), 1, - aux_sym__text, - STATE(546), 1, - sym_inline_attribute, - ACTIONS(1618), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1616), 30, + ACTIONS(1868), 30, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18133,6 +22444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -18151,21 +22463,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [1488] = 4, - ACTIONS(1650), 1, - anon_sym_LBRACE_EQ2, - STATE(256), 1, - sym_raw_inline_attribute, - ACTIONS(1620), 8, + [4562] = 2, + ACTIONS(1870), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE_EQ, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1622), 29, + ACTIONS(1872), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -18175,9 +22482,10 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, sym_em_dash, anon_sym_LT, + anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -18194,22 +22502,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__whitespace1, - sym__newline, - [1536] = 4, - ACTIONS(1652), 1, - anon_sym_LBRACE_EQ2, - STATE(407), 1, - sym_raw_inline_attribute, - ACTIONS(1620), 8, + sym__newline, + [4604] = 2, + ACTIONS(1874), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE_EQ, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1622), 29, + ACTIONS(1876), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -18219,7 +22522,9 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, sym_em_dash, anon_sym_LT, + anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -18228,7 +22533,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -18239,39 +22543,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [1584] = 4, - ACTIONS(1612), 1, - sym__id, - STATE(729), 1, - sym_reference_label, - ACTIONS(47), 17, + [4646] = 2, + ACTIONS(1878), 7, anon_sym_LBRACE, - anon_sym__, - anon_sym_STAR, anon_sym_BSLASH, - sym_em_dash, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(79), 20, + ACTIONS(1880), 30, sym__verbatim_begin, anon_sym_LBRACE_, + anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, + sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -18281,27 +22574,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [1632] = 6, - ACTIONS(47), 1, + [4688] = 2, + ACTIONS(1830), 7, anon_sym_LBRACE, - ACTIONS(79), 1, - anon_sym_CARET_RBRACE, - ACTIONS(1607), 1, - anon_sym_SPACE, - STATE(370), 1, - aux_sym_strong_begin_repeat1, - ACTIONS(1609), 8, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1604), 27, + ACTIONS(1832), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -18313,9 +22604,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, + anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -18328,35 +22621,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [1684] = 5, - ACTIONS(1654), 1, + [4730] = 2, + ACTIONS(1882), 7, anon_sym_LBRACE, - STATE(159), 1, - aux_sym__text, - STATE(531), 1, - sym_inline_attribute, - ACTIONS(1618), 8, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1616), 28, + ACTIONS(1884), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -18373,33 +22661,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [1734] = 4, - ACTIONS(1656), 1, - anon_sym_LBRACE_EQ2, - STATE(456), 1, - sym_raw_inline_attribute, - ACTIONS(1620), 10, + [4772] = 3, + ACTIONS(1886), 1, + sym__verbatim_begin, + ACTIONS(49), 7, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE_EQ, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1622), 27, - sym__verbatim_begin, + ACTIONS(84), 29, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, + anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -18417,29 +22702,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [1782] = 3, - ACTIONS(1658), 1, - aux_sym_autolink_token1, - ACTIONS(79), 2, - sym__verbatim_begin, - sym__newline, - ACTIONS(47), 35, + [4816] = 2, + ACTIONS(1889), 7, anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1891), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, - aux_sym_strong_end_token1, - anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, - sym_en_dash, - sym_backslash_escape, anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -18448,8 +22734,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LBRACK, - anon_sym_LBRACE2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -18459,33 +22743,29 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__whitespace1, - aux_sym__text_token1, - [1827] = 4, - ACTIONS(1664), 1, - aux_sym__text_token1, - STATE(159), 1, - aux_sym__text, - ACTIONS(1660), 8, + sym__newline, + [4858] = 2, + ACTIONS(1893), 7, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, - ACTIONS(1662), 28, + aux_sym__text_token1, + ACTIONS(1895), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -18502,29 +22782,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__newline, - [1874] = 3, - ACTIONS(1667), 1, - aux_sym_autolink_token1, - ACTIONS(79), 3, - sym__verbatim_begin, sym__whitespace1, sym__newline, - ACTIONS(47), 34, + [4900] = 2, + ACTIONS(1897), 7, anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1899), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, - anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, - sym_en_dash, - sym_backslash_escape, anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -18533,9 +22814,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LBRACK, - anon_sym_RBRACK2, - anon_sym_LBRACE2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -18544,20 +22822,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - aux_sym__text_token1, - [1919] = 4, - ACTIONS(1669), 1, - aux_sym__text_token1, - STATE(161), 1, - aux_sym__text, - ACTIONS(1660), 6, + sym__whitespace1, + sym__newline, + [4942] = 2, + ACTIONS(1901), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - ACTIONS(1662), 30, + aux_sym__text_token1, + ACTIONS(1903), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -18588,39 +22864,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [1966] = 3, - ACTIONS(1672), 1, - aux_sym_autolink_token1, - ACTIONS(79), 3, - sym__verbatim_begin, - sym__whitespace1, - sym__newline, - ACTIONS(47), 34, + [4984] = 2, + ACTIONS(1905), 7, anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1907), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, - anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, - sym_en_dash, - sym_backslash_escape, anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, - anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LBRACK, - anon_sym_LBRACE2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -18629,21 +22902,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - aux_sym__text_token1, - [2011] = 4, - ACTIONS(1644), 1, + sym__whitespace1, + sym__newline, + [5026] = 2, + ACTIONS(1909), 7, anon_sym_LBRACE, - STATE(530), 1, - sym_inline_attribute, - ACTIONS(1618), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1616), 29, + ACTIONS(1911), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -18655,10 +22925,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -18673,29 +22944,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [2058] = 3, - ACTIONS(1674), 1, - aux_sym_autolink_token1, - ACTIONS(79), 3, - sym__verbatim_begin, - sym__whitespace1, - sym__newline, - ACTIONS(47), 34, + [5068] = 2, + ACTIONS(1913), 7, anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1915), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, - anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, - sym_en_dash, - sym_backslash_escape, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -18704,8 +22974,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LBRACK, - anon_sym_LBRACE2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -18714,27 +22982,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - aux_sym__text_token1, - [2103] = 4, - ACTIONS(1654), 1, + sym__whitespace1, + sym__newline, + [5110] = 4, + ACTIONS(49), 1, anon_sym_LBRACE, - STATE(531), 1, - sym_inline_attribute, - ACTIONS(1618), 8, - anon_sym_STAR, + ACTIONS(84), 1, + anon_sym_DASH_RBRACE, + ACTIONS(1697), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1616), 28, + ACTIONS(1692), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -18757,21 +23024,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [2150] = 4, - ACTIONS(1676), 1, - aux_sym__text_token1, - STATE(166), 1, - aux_sym__text, - ACTIONS(1660), 6, + [5156] = 3, + ACTIONS(1917), 1, + sym__verbatim_begin, + ACTIONS(49), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - ACTIONS(1662), 30, - sym__verbatim_begin, + aux_sym__text_token1, + ACTIONS(84), 29, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18801,19 +23067,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [2197] = 4, - ACTIONS(1626), 1, + [5200] = 2, + ACTIONS(1920), 7, anon_sym_LBRACE, - STATE(494), 1, - sym_inline_attribute, - ACTIONS(1618), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1616), 30, + ACTIONS(1922), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -18825,8 +23088,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -18844,30 +23107,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [2244] = 3, - ACTIONS(1679), 1, - aux_sym_autolink_token1, - ACTIONS(79), 3, - sym__verbatim_begin, - sym__whitespace1, - sym__newline, - ACTIONS(47), 34, + [5242] = 2, + ACTIONS(1924), 7, anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1926), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, - anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, - sym_en_dash, - sym_backslash_escape, anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -18875,8 +23137,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LBRACK, - anon_sym_LBRACE2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -18885,23 +23145,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - aux_sym__text_token1, - [2289] = 5, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(1607), 1, - anon_sym_SPACE, - STATE(370), 1, - aux_sym_strong_begin_repeat1, - ACTIONS(1609), 7, + sym__whitespace1, + sym__newline, + [5284] = 4, + ACTIONS(1932), 1, + anon_sym_LBRACE2, + STATE(250), 1, + sym_comment, + ACTIONS(1930), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1604), 28, + ACTIONS(1928), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -18914,6 +23171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -18929,39 +23187,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [2338] = 4, - ACTIONS(1612), 1, - sym__id, - STATE(751), 1, - sym_reference_label, - ACTIONS(47), 15, + [5330] = 2, + ACTIONS(1935), 7, anon_sym_LBRACE, - anon_sym__, anon_sym_BSLASH, - sym_em_dash, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, aux_sym__text_token1, - ACTIONS(79), 21, + ACTIONS(1937), 30, sym__verbatim_begin, anon_sym_LBRACE_, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, sym_ellipsis, + sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -18970,24 +23220,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, anon_sym_PIPE, sym__whitespace1, sym__newline, - [2385] = 5, - ACTIONS(1681), 1, + [5372] = 2, + ACTIONS(1939), 7, anon_sym_LBRACE, - STATE(490), 1, - aux_sym__text, - STATE(552), 1, - sym_inline_attribute, - ACTIONS(1618), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1616), 29, + ACTIONS(1941), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -19000,6 +23251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -19017,20 +23269,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [2434] = 4, - ACTIONS(1683), 1, - aux_sym__text_token1, - STATE(172), 1, - aux_sym__text, - ACTIONS(1660), 6, + [5414] = 2, + ACTIONS(1920), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - ACTIONS(1662), 30, + aux_sym__text_token1, + ACTIONS(1922), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19048,7 +23298,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -19060,19 +23309,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [2481] = 4, - ACTIONS(1686), 1, - aux_sym__text_token1, - STATE(173), 1, - aux_sym__text, - ACTIONS(1660), 6, + [5456] = 2, + ACTIONS(1943), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - ACTIONS(1662), 30, + aux_sym__text_token1, + ACTIONS(1945), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -19083,9 +23329,9 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -19103,20 +23349,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [2528] = 4, - ACTIONS(1689), 1, - aux_sym__text_token1, - STATE(174), 1, - aux_sym__text, - ACTIONS(1660), 7, + [5498] = 2, + ACTIONS(1947), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, - ACTIONS(1662), 29, + aux_sym__text_token1, + ACTIONS(1949), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -19129,9 +23371,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -19146,20 +23389,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [2575] = 4, - ACTIONS(1614), 1, + [5540] = 2, + ACTIONS(1951), 7, anon_sym_LBRACE, - STATE(539), 1, - sym_inline_attribute, - ACTIONS(1618), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1616), 29, + ACTIONS(1953), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -19172,11 +23411,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -19189,30 +23429,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [2622] = 3, - ACTIONS(1692), 1, - aux_sym_autolink_token1, - ACTIONS(79), 4, + [5582] = 2, + ACTIONS(1826), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1828), 30, sym__verbatim_begin, - ts_builtin_sym_end, - sym__whitespace1, - sym__newline, - ACTIONS(47), 33, - anon_sym_LBRACE, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, - anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, - sym_en_dash, - sym_backslash_escape, anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -19220,8 +23459,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LBRACK, - anon_sym_LBRACE2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -19230,22 +23467,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - aux_sym__text_token1, - [2667] = 4, - ACTIONS(1694), 1, - anon_sym_LBRACE_EQ2, - STATE(506), 1, - sym_raw_inline_attribute, - ACTIONS(1620), 8, + sym__whitespace1, + sym__newline, + [5624] = 2, + ACTIONS(1834), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE_EQ, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1622), 28, + ACTIONS(1836), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -19255,8 +23488,10 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, sym_em_dash, anon_sym_LT, + anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -19274,39 +23509,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [2714] = 3, - ACTIONS(1696), 1, - aux_sym_autolink_token1, - ACTIONS(79), 3, - sym__verbatim_begin, - sym__whitespace1, - sym__newline, - ACTIONS(47), 34, + [5666] = 2, + ACTIONS(1838), 7, anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1840), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, - anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, - sym_en_dash, - sym_backslash_escape, anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, - anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LBRACK, - anon_sym_LBRACE2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -19315,20 +23547,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - aux_sym__text_token1, - [2759] = 4, - ACTIONS(1698), 1, - aux_sym__text_token1, - STATE(179), 1, - aux_sym__text, - ACTIONS(1660), 6, + sym__whitespace1, + sym__newline, + [5708] = 2, + ACTIONS(1842), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - ACTIONS(1662), 30, + aux_sym__text_token1, + ACTIONS(1844), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -19341,6 +23571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -19348,7 +23579,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -19359,19 +23589,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [2806] = 4, - ACTIONS(1630), 1, + [5750] = 2, + ACTIONS(1846), 7, anon_sym_LBRACE, - STATE(519), 1, - sym_inline_attribute, - ACTIONS(1618), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1616), 30, + ACTIONS(1848), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -19402,25 +23629,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [2853] = 3, - ACTIONS(1701), 1, - aux_sym_autolink_token1, - ACTIONS(79), 3, - sym__verbatim_begin, - sym__whitespace1, - sym__newline, - ACTIONS(47), 34, + [5792] = 2, + ACTIONS(1924), 7, anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1926), 30, + sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, - anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, - sym_en_dash, - sym_backslash_escape, anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, @@ -19431,10 +23658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, - anon_sym_LBRACK, - anon_sym_LBRACE2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -19443,20 +23667,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - aux_sym__text_token1, - [2898] = 4, - ACTIONS(1640), 1, + sym__whitespace1, + sym__newline, + [5834] = 2, + ACTIONS(1850), 7, anon_sym_LBRACE, - STATE(547), 1, - sym_inline_attribute, - ACTIONS(1618), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1616), 30, + ACTIONS(1852), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -19469,13 +23691,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -19487,25 +23709,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [2945] = 3, - ACTIONS(1703), 1, - aux_sym_autolink_token1, - ACTIONS(79), 3, - sym__verbatim_begin, - sym__whitespace1, - sym__newline, - ACTIONS(47), 34, + [5876] = 2, + ACTIONS(1854), 7, anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1856), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, - anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, - sym_en_dash, - sym_backslash_escape, anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, @@ -19518,8 +23739,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LBRACK, - anon_sym_LBRACE2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -19528,22 +23747,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - aux_sym__text_token1, - [2990] = 4, - ACTIONS(1648), 1, + sym__whitespace1, + sym__newline, + [5918] = 2, + ACTIONS(1858), 7, anon_sym_LBRACE, - STATE(546), 1, - sym_inline_attribute, - ACTIONS(1618), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1616), 30, + ACTIONS(1860), 30, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19555,6 +23771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -19572,19 +23789,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [3037] = 4, - ACTIONS(1632), 1, + [5960] = 2, + ACTIONS(1862), 7, anon_sym_LBRACE, - STATE(535), 1, - sym_inline_attribute, - ACTIONS(1618), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1616), 30, + ACTIONS(1864), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -19597,6 +23811,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -19604,7 +23819,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -19615,20 +23829,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [3084] = 4, - ACTIONS(1705), 1, - aux_sym__text_token1, - STATE(186), 1, - aux_sym__text, - ACTIONS(1660), 7, + [6002] = 2, + ACTIONS(1866), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, - ACTIONS(1662), 29, + aux_sym__text_token1, + ACTIONS(1868), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -19641,11 +23851,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -19658,19 +23869,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [3131] = 4, - ACTIONS(1628), 1, + [6044] = 2, + ACTIONS(1870), 7, anon_sym_LBRACE, - STATE(538), 1, - sym_inline_attribute, - ACTIONS(1618), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1616), 30, + ACTIONS(1872), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -19681,9 +23889,9 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -19701,21 +23909,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [3178] = 4, - ACTIONS(1708), 1, - aux_sym__text_token1, - STATE(188), 1, - aux_sym__text, - ACTIONS(1660), 6, + [6086] = 2, + ACTIONS(1874), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - ACTIONS(1662), 30, + aux_sym__text_token1, + ACTIONS(1876), 30, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19727,6 +23931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -19744,23 +23949,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [3225] = 2, - ACTIONS(1711), 9, + [6128] = 2, + ACTIONS(1878), 7, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1713), 28, + ACTIONS(1880), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -19768,6 +23971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -19783,9 +23987,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [3267] = 2, - ACTIONS(1715), 7, + [6170] = 2, + ACTIONS(1830), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -19793,7 +23998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1717), 30, + ACTIONS(1832), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -19806,13 +24011,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -19824,8 +24029,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [3309] = 2, - ACTIONS(1719), 7, + [6212] = 2, + ACTIONS(1882), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -19833,7 +24038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1721), 30, + ACTIONS(1884), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -19844,9 +24049,9 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -19864,17 +24069,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [3351] = 2, - ACTIONS(1723), 7, - anon_sym_LBRACE, + [6254] = 4, + ACTIONS(1955), 1, + anon_sym_LBRACE2, + STATE(440), 1, + sym_comment, + ACTIONS(1930), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1725), 30, + ACTIONS(1928), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19884,7 +24092,6 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -19904,8 +24111,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [3393] = 2, - ACTIONS(1727), 7, + [6300] = 2, + ACTIONS(1889), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -19913,7 +24120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1729), 30, + ACTIONS(1891), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -19924,9 +24131,9 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -19944,8 +24151,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [3435] = 2, - ACTIONS(1731), 7, + [6342] = 2, + ACTIONS(1893), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -19953,7 +24160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1733), 30, + ACTIONS(1895), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -19964,9 +24171,9 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -19984,8 +24191,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [3477] = 2, - ACTIONS(1735), 7, + [6384] = 2, + ACTIONS(1897), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -19993,7 +24200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1737), 30, + ACTIONS(1899), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -20004,9 +24211,9 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -20024,8 +24231,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [3519] = 2, - ACTIONS(1739), 7, + [6426] = 2, + ACTIONS(1901), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -20033,7 +24240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1741), 30, + ACTIONS(1903), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -20044,9 +24251,9 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -20064,19 +24271,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [3561] = 4, - ACTIONS(47), 1, + [6468] = 2, + ACTIONS(1905), 7, anon_sym_LBRACE, - ACTIONS(79), 1, - anon_sym_PLUS_RBRACE, - ACTIONS(1609), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1604), 29, + ACTIONS(1907), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -20089,6 +24293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -20106,10 +24311,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [3607] = 3, - ACTIONS(1743), 1, - sym__verbatim_begin, - ACTIONS(47), 7, + [6510] = 2, + ACTIONS(1909), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -20117,7 +24320,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(79), 29, + ACTIONS(1911), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20128,8 +24332,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -20147,8 +24351,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [3651] = 2, - ACTIONS(1746), 7, + [6552] = 2, + ACTIONS(1913), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -20156,7 +24360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1748), 30, + ACTIONS(1915), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -20168,8 +24372,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -20187,8 +24391,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [3693] = 2, - ACTIONS(1750), 7, + [6594] = 2, + ACTIONS(1826), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -20196,7 +24400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1752), 30, + ACTIONS(1828), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -20207,8 +24411,8 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -20227,18 +24431,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [3735] = 4, - ACTIONS(1758), 1, - anon_sym_LBRACE2, - STATE(205), 1, - sym_comment, - ACTIONS(1756), 5, + [6636] = 2, + ACTIONS(1947), 7, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1754), 30, + ACTIONS(1949), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -20269,16 +24471,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [3781] = 2, - ACTIONS(1761), 7, + [6678] = 4, + ACTIONS(49), 1, anon_sym_LBRACE, + ACTIONS(84), 1, + anon_sym_CARET_RBRACE, + ACTIONS(1697), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1763), 30, + ACTIONS(1692), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -20290,11 +24496,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -20309,8 +24513,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [3823] = 2, - ACTIONS(1765), 7, + [6724] = 2, + ACTIONS(1943), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -20318,7 +24522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1767), 30, + ACTIONS(1945), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -20349,8 +24553,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [3865] = 2, - ACTIONS(1769), 7, + [6766] = 2, + ACTIONS(1935), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -20358,8 +24562,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1771), 30, + ACTIONS(1937), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20378,7 +24583,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -20389,8 +24593,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [3907] = 2, - ACTIONS(1773), 7, + [6808] = 2, + ACTIONS(1939), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -20398,7 +24602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1775), 30, + ACTIONS(1941), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -20429,8 +24633,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [3949] = 2, - ACTIONS(1777), 7, + [6850] = 2, + ACTIONS(1935), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -20438,7 +24642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1779), 30, + ACTIONS(1937), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -20469,16 +24673,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [3991] = 2, - ACTIONS(1781), 7, - anon_sym_LBRACE, + [6892] = 4, + ACTIONS(1958), 1, + anon_sym_LBRACE2, + STATE(280), 1, + sym_comment, + ACTIONS(1930), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1783), 30, + ACTIONS(1928), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -20509,8 +24715,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [4033] = 2, - ACTIONS(1785), 7, + [6938] = 2, + ACTIONS(1924), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -20518,7 +24724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1787), 30, + ACTIONS(1926), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -20549,8 +24755,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [4075] = 2, - ACTIONS(1789), 7, + [6980] = 2, + ACTIONS(1920), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -20558,7 +24764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1791), 30, + ACTIONS(1922), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -20589,8 +24795,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [4117] = 2, - ACTIONS(1793), 7, + [7022] = 3, + ACTIONS(1961), 1, + sym__verbatim_begin, + ACTIONS(49), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -20598,8 +24806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1795), 30, - sym__verbatim_begin, + ACTIONS(84), 29, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20629,16 +24836,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [4159] = 2, - ACTIONS(1715), 7, + [7066] = 4, + ACTIONS(49), 1, anon_sym_LBRACE, + ACTIONS(84), 1, + anon_sym_PLUS_RBRACE, + ACTIONS(1697), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1717), 30, + ACTIONS(1692), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -20650,7 +24860,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -20669,8 +24878,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [4201] = 2, - ACTIONS(1797), 7, + [7112] = 2, + ACTIONS(1913), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -20678,7 +24887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1799), 30, + ACTIONS(1915), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -20689,6 +24898,7 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -20698,7 +24908,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -20709,17 +24918,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [4243] = 2, - ACTIONS(1801), 7, + [7154] = 3, + ACTIONS(1964), 1, + sym__verbatim_begin, + ACTIONS(49), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1803), 30, - sym__verbatim_begin, + ACTIONS(84), 28, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20730,11 +24941,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -20749,16 +24959,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [4285] = 2, - ACTIONS(1805), 7, + [7198] = 2, + ACTIONS(1920), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1807), 30, + ACTIONS(1922), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -20770,11 +24981,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -20789,16 +24999,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [4327] = 2, - ACTIONS(1809), 7, + [7240] = 2, + ACTIONS(1924), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1811), 30, + ACTIONS(1926), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -20810,11 +25021,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -20829,16 +25039,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [4369] = 2, - ACTIONS(1711), 7, - anon_sym_LBRACE, + [7282] = 4, + ACTIONS(1967), 1, + anon_sym_LBRACE2, + STATE(299), 1, + sym_comment, + ACTIONS(1930), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1713), 30, + ACTIONS(1928), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -20850,11 +25063,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -20869,8 +25081,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [4411] = 2, - ACTIONS(1813), 7, + [7328] = 2, + ACTIONS(1909), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -20878,7 +25090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1815), 30, + ACTIONS(1911), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -20889,8 +25101,8 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -20909,8 +25121,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [4453] = 2, - ACTIONS(1817), 7, + [7370] = 2, + ACTIONS(1905), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -20918,7 +25130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1819), 30, + ACTIONS(1907), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -20929,8 +25141,8 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -20949,16 +25161,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [4495] = 2, - ACTIONS(1821), 7, + [7412] = 2, + ACTIONS(1935), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1823), 30, + ACTIONS(1937), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -20970,11 +25183,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -20989,16 +25201,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [4537] = 2, - ACTIONS(1825), 7, + [7454] = 2, + ACTIONS(1939), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1827), 30, + ACTIONS(1941), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -21010,11 +25223,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -21029,16 +25241,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [4579] = 2, - ACTIONS(1829), 7, - anon_sym_LBRACE, + [7496] = 4, + ACTIONS(1972), 1, + anon_sym_SPACE, + STATE(550), 1, + aux_sym_strong_begin_repeat1, + ACTIONS(1974), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1831), 30, + ACTIONS(1970), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -21050,7 +25266,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -21067,18 +25282,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [4621] = 2, - ACTIONS(1833), 7, + [7542] = 2, + ACTIONS(1943), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1835), 30, + ACTIONS(1945), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -21090,11 +25305,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -21109,23 +25323,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [4663] = 2, - ACTIONS(1769), 9, + [7584] = 2, + ACTIONS(1947), 8, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1771), 28, + ACTIONS(1949), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -21135,7 +25348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -21148,17 +25361,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [4705] = 2, - ACTIONS(1837), 7, + [7626] = 2, + ACTIONS(1951), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1839), 30, + ACTIONS(1953), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -21170,11 +25385,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -21189,16 +25403,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [4747] = 2, - ACTIONS(1719), 7, + [7668] = 2, + ACTIONS(1826), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1721), 30, + ACTIONS(1828), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -21210,11 +25425,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -21229,16 +25443,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [4789] = 2, - ACTIONS(1723), 7, + [7710] = 2, + ACTIONS(1834), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1725), 30, + ACTIONS(1836), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -21250,11 +25465,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -21269,16 +25483,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [4831] = 2, - ACTIONS(1727), 7, + [7752] = 2, + ACTIONS(1838), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1729), 30, + ACTIONS(1840), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -21290,11 +25505,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -21309,16 +25523,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [4873] = 2, - ACTIONS(1731), 7, + [7794] = 2, + ACTIONS(1842), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1733), 30, + ACTIONS(1844), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -21330,11 +25545,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -21349,8 +25563,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [4915] = 2, - ACTIONS(1735), 7, + [7836] = 2, + ACTIONS(1901), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -21358,7 +25572,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1737), 30, + ACTIONS(1903), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -21369,8 +25583,8 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -21389,8 +25603,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [4957] = 2, - ACTIONS(1739), 7, + [7878] = 2, + ACTIONS(1897), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -21398,7 +25612,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1741), 30, + ACTIONS(1899), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -21409,8 +25623,8 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -21429,19 +25643,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [4999] = 4, - ACTIONS(47), 1, + [7920] = 2, + ACTIONS(1893), 7, anon_sym_LBRACE, - ACTIONS(79), 1, - anon_sym_DASH_RBRACE, - ACTIONS(1609), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1604), 29, + ACTIONS(1895), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -21452,6 +25663,7 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -21471,18 +25683,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [5045] = 3, - ACTIONS(1841), 1, - sym__verbatim_begin, - ACTIONS(47), 7, + [7962] = 2, + ACTIONS(1846), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(79), 29, + ACTIONS(1848), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21494,10 +25706,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -21512,8 +25723,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [5089] = 2, - ACTIONS(1746), 7, + [8004] = 2, + ACTIONS(1939), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -21521,8 +25732,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1748), 30, + ACTIONS(1941), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21534,7 +25746,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -21552,16 +25763,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [5131] = 2, - ACTIONS(1750), 7, + [8046] = 2, + ACTIONS(1850), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1752), 30, + ACTIONS(1852), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -21574,10 +25786,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -21592,18 +25803,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [5173] = 4, - ACTIONS(1844), 1, - anon_sym_LBRACE2, - STATE(239), 1, - sym_comment, - ACTIONS(1756), 5, + [8088] = 2, + ACTIONS(1854), 8, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, + anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1754), 30, + ACTIONS(1856), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -21616,10 +25826,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -21634,16 +25843,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [5219] = 2, - ACTIONS(1761), 7, + [8130] = 2, + ACTIONS(1858), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1763), 30, + ACTIONS(1860), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -21656,10 +25866,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -21674,16 +25883,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [5261] = 2, - ACTIONS(1765), 7, + [8172] = 2, + ACTIONS(1862), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1767), 30, + ACTIONS(1864), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -21696,10 +25906,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -21714,23 +25923,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [5303] = 2, - ACTIONS(1797), 9, + [8214] = 2, + ACTIONS(1866), 8, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1799), 28, + ACTIONS(1868), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -21740,7 +25948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -21753,17 +25961,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [5345] = 2, - ACTIONS(1773), 7, + [8256] = 2, + ACTIONS(1870), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1775), 30, + ACTIONS(1872), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -21776,10 +25986,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -21794,16 +26003,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [5387] = 2, - ACTIONS(1777), 7, + [8298] = 2, + ACTIONS(1874), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1779), 30, + ACTIONS(1876), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -21816,10 +26026,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -21834,16 +26043,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [5429] = 2, - ACTIONS(1781), 7, + [8340] = 2, + ACTIONS(1878), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1783), 30, + ACTIONS(1880), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -21856,10 +26066,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -21874,16 +26083,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [5471] = 2, - ACTIONS(1785), 7, + [8382] = 2, + ACTIONS(1830), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1787), 30, + ACTIONS(1832), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -21896,10 +26106,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -21914,16 +26123,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [5513] = 2, - ACTIONS(1789), 7, + [8424] = 2, + ACTIONS(1882), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1791), 30, + ACTIONS(1884), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -21936,10 +26146,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -21954,8 +26163,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [5555] = 2, - ACTIONS(1793), 7, + [8466] = 2, + ACTIONS(1976), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -21963,7 +26172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1795), 30, + ACTIONS(1978), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -21976,7 +26185,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -21984,6 +26192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -21994,16 +26203,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [5597] = 2, - ACTIONS(1715), 7, + [8508] = 2, + ACTIONS(1889), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1717), 30, + ACTIONS(1891), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -22016,10 +26226,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -22034,16 +26243,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [5639] = 2, - ACTIONS(1769), 7, + [8550] = 2, + ACTIONS(1893), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1771), 30, + ACTIONS(1895), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -22058,11 +26268,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -22074,16 +26283,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [5681] = 2, - ACTIONS(1801), 7, + [8592] = 2, + ACTIONS(1897), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1803), 30, + ACTIONS(1899), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -22096,10 +26306,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -22114,16 +26323,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [5723] = 2, - ACTIONS(1805), 7, + [8634] = 2, + ACTIONS(1901), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1807), 30, + ACTIONS(1903), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -22136,10 +26346,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -22154,16 +26363,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [5765] = 2, - ACTIONS(1809), 7, + [8676] = 2, + ACTIONS(1905), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1811), 30, + ACTIONS(1907), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -22176,10 +26386,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -22194,16 +26403,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [5807] = 2, - ACTIONS(1711), 7, + [8718] = 2, + ACTIONS(1909), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1713), 30, + ACTIONS(1911), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -22216,10 +26426,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -22234,16 +26443,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [5849] = 2, - ACTIONS(1813), 7, + [8760] = 2, + ACTIONS(1913), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1815), 30, + ACTIONS(1915), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -22256,10 +26466,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -22274,8 +26483,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [5891] = 2, - ACTIONS(1817), 7, + [8802] = 2, + ACTIONS(1889), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22283,7 +26492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1819), 30, + ACTIONS(1891), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -22294,9 +26503,9 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -22314,8 +26523,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [5933] = 2, - ACTIONS(1821), 7, + [8844] = 2, + ACTIONS(1980), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22323,7 +26532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1823), 30, + ACTIONS(1982), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -22336,7 +26545,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -22344,6 +26552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -22354,16 +26563,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [5975] = 2, - ACTIONS(1825), 7, + [8886] = 4, + ACTIONS(49), 1, anon_sym_LBRACE, + ACTIONS(84), 1, + anon_sym_TILDE_RBRACE, + ACTIONS(1697), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1827), 30, + ACTIONS(1692), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -22376,12 +26589,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -22394,8 +26605,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [6017] = 2, - ACTIONS(1829), 7, + [8932] = 2, + ACTIONS(1882), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22403,7 +26614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1831), 30, + ACTIONS(1884), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -22414,9 +26625,9 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -22434,8 +26645,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [6059] = 2, - ACTIONS(1833), 7, + [8974] = 2, + ACTIONS(1830), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22443,7 +26654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1835), 30, + ACTIONS(1832), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -22454,9 +26665,9 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -22474,8 +26685,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [6101] = 2, - ACTIONS(1797), 7, + [9016] = 2, + ACTIONS(1878), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22483,7 +26694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1799), 30, + ACTIONS(1880), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -22494,6 +26705,7 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -22502,7 +26714,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -22514,8 +26725,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [6143] = 2, - ACTIONS(1837), 7, + [9058] = 2, + ACTIONS(1874), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22523,7 +26734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1839), 30, + ACTIONS(1876), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -22534,9 +26745,9 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -22554,8 +26765,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [6185] = 2, - ACTIONS(1719), 7, + [9100] = 2, + ACTIONS(1870), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22563,7 +26774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1721), 30, + ACTIONS(1872), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -22574,9 +26785,9 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -22594,8 +26805,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [6227] = 2, - ACTIONS(1723), 7, + [9142] = 2, + ACTIONS(1866), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22603,7 +26814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1725), 30, + ACTIONS(1868), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -22614,9 +26825,9 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -22634,8 +26845,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [6269] = 2, - ACTIONS(1727), 7, + [9184] = 2, + ACTIONS(1862), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22643,7 +26854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1729), 30, + ACTIONS(1864), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -22654,9 +26865,9 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -22674,8 +26885,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [6311] = 2, - ACTIONS(1731), 7, + [9226] = 2, + ACTIONS(1858), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22683,7 +26894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1733), 30, + ACTIONS(1860), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -22694,9 +26905,9 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -22714,8 +26925,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [6353] = 2, - ACTIONS(1735), 7, + [9268] = 2, + ACTIONS(1854), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22723,7 +26934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1737), 30, + ACTIONS(1856), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -22734,9 +26945,9 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -22754,8 +26965,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [6395] = 2, - ACTIONS(1739), 7, + [9310] = 2, + ACTIONS(1850), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22763,7 +26974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1741), 30, + ACTIONS(1852), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -22774,9 +26985,9 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -22794,19 +27005,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [6437] = 4, - ACTIONS(1847), 1, - anon_sym_LBRACE2, - STATE(319), 1, - sym_comment, - ACTIONS(1756), 5, + [9352] = 3, + ACTIONS(1984), 1, + sym__verbatim_begin, + ACTIONS(49), 8, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_TILDE, anon_sym_LBRACK, + anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1754), 30, - sym__verbatim_begin, + ACTIONS(84), 28, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22816,14 +27027,13 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -22836,20 +27046,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [6483] = 4, - ACTIONS(47), 1, + [9396] = 2, + ACTIONS(1920), 8, anon_sym_LBRACE, - ACTIONS(79), 1, - anon_sym_CARET_RBRACE, - ACTIONS(1609), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, + anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1604), 28, + ACTIONS(1922), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -22864,8 +27071,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, + anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -22878,8 +27086,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [6529] = 2, - ACTIONS(1769), 8, + [9438] = 2, + ACTIONS(1924), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22888,7 +27096,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1771), 29, + ACTIONS(1926), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -22918,16 +27126,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [6571] = 2, - ACTIONS(1833), 7, - anon_sym_LBRACE, + [9480] = 4, + ACTIONS(1987), 1, + anon_sym_LBRACE2, + STATE(351), 1, + sym_comment, + ACTIONS(1930), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_TILDE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1835), 30, + ACTIONS(1928), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -22938,14 +27149,13 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -22958,19 +27168,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [6613] = 2, - ACTIONS(1829), 7, + [9526] = 2, + ACTIONS(1976), 9, anon_sym_LBRACE, + anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1831), 30, + ACTIONS(1978), 28, sym__verbatim_begin, anon_sym_LBRACE_, - anon_sym__, + aux_sym_emphasis_end_token1, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -22978,7 +27190,6 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -22996,10 +27207,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [6655] = 2, - ACTIONS(1825), 7, + [9568] = 2, + ACTIONS(1846), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -23007,7 +27217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1827), 30, + ACTIONS(1848), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -23038,16 +27248,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [6697] = 2, - ACTIONS(1821), 7, + [9610] = 2, + ACTIONS(1935), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1823), 30, + ACTIONS(1937), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -23058,14 +27269,13 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -23078,16 +27288,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [6739] = 2, - ACTIONS(1817), 7, + [9652] = 2, + ACTIONS(1939), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1819), 30, + ACTIONS(1941), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -23098,14 +27309,13 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -23118,19 +27328,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [6781] = 2, - ACTIONS(1813), 7, + [9694] = 2, + ACTIONS(1980), 9, anon_sym_LBRACE, + anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1815), 30, + ACTIONS(1982), 28, sym__verbatim_begin, anon_sym_LBRACE_, - anon_sym__, + aux_sym_emphasis_end_token1, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -23138,7 +27350,6 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -23156,18 +27367,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [6823] = 2, - ACTIONS(1711), 7, + [9736] = 2, + ACTIONS(1943), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1713), 30, + ACTIONS(1945), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -23178,14 +27389,13 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -23198,16 +27408,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [6865] = 2, - ACTIONS(1809), 7, + [9778] = 2, + ACTIONS(1947), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1811), 30, + ACTIONS(1949), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -23218,14 +27429,13 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -23238,16 +27448,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [6907] = 2, - ACTIONS(1805), 7, + [9820] = 2, + ACTIONS(1951), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1807), 30, + ACTIONS(1953), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -23258,14 +27469,13 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -23278,19 +27488,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [6949] = 3, - ACTIONS(1850), 1, - sym__verbatim_begin, - ACTIONS(47), 8, + [9862] = 2, + ACTIONS(1826), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, + anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(79), 28, + ACTIONS(1828), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23304,9 +27513,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -23319,17 +27528,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [6993] = 2, - ACTIONS(1746), 8, + [9904] = 2, + ACTIONS(1834), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, + anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1748), 29, + ACTIONS(1836), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -23344,9 +27553,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -23359,17 +27568,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [7035] = 2, - ACTIONS(1750), 8, + [9946] = 2, + ACTIONS(1838), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, + anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1752), 29, + ACTIONS(1840), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -23384,9 +27593,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -23399,19 +27608,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [7077] = 4, - ACTIONS(1853), 1, - anon_sym_LBRACE2, - STATE(286), 1, - sym_comment, - ACTIONS(1756), 6, + [9988] = 2, + ACTIONS(1842), 8, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, + anon_sym_TILDE, anon_sym_LBRACK, + anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1754), 29, + ACTIONS(1844), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -23426,9 +27633,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -23441,8 +27648,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [7123] = 2, - ACTIONS(1801), 7, + [10030] = 2, + ACTIONS(1842), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -23450,7 +27657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1803), 30, + ACTIONS(1844), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -23481,17 +27688,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [7165] = 2, - ACTIONS(1797), 8, + [10072] = 2, + ACTIONS(1838), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1799), 29, + ACTIONS(1840), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -23502,13 +27708,14 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -23521,17 +27728,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [7207] = 2, - ACTIONS(1761), 8, + [10114] = 2, + ACTIONS(1834), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1763), 29, + ACTIONS(1836), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -23542,11 +27748,12 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -23561,17 +27768,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [7249] = 2, - ACTIONS(1765), 8, + [10156] = 2, + ACTIONS(1846), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, + anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1767), 29, + ACTIONS(1848), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -23586,9 +27793,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -23601,22 +27808,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [7291] = 2, - ACTIONS(1769), 8, + [10198] = 2, + ACTIONS(1976), 9, anon_sym_LBRACE, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1771), 29, + ACTIONS(1978), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -23626,7 +27834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -23639,19 +27847,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [7333] = 2, - ACTIONS(1773), 8, + [10240] = 2, + ACTIONS(1850), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, + anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1775), 29, + ACTIONS(1852), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -23666,9 +27873,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -23681,17 +27888,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [7375] = 2, - ACTIONS(1777), 8, + [10282] = 2, + ACTIONS(1854), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, + anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1779), 29, + ACTIONS(1856), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -23706,9 +27913,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -23721,17 +27928,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [7417] = 2, - ACTIONS(1781), 8, + [10324] = 2, + ACTIONS(1858), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, + anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1783), 29, + ACTIONS(1860), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -23746,9 +27953,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -23761,17 +27968,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [7459] = 2, - ACTIONS(1785), 8, + [10366] = 2, + ACTIONS(1862), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, + anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1787), 29, + ACTIONS(1864), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -23786,9 +27993,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -23801,17 +28008,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [7501] = 2, - ACTIONS(1789), 8, + [10408] = 2, + ACTIONS(1866), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, + anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1791), 29, + ACTIONS(1868), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -23826,9 +28033,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -23841,17 +28048,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [7543] = 2, - ACTIONS(1793), 8, + [10450] = 2, + ACTIONS(1870), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, + anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1795), 29, + ACTIONS(1872), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -23866,9 +28073,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -23881,17 +28088,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [7585] = 2, - ACTIONS(1715), 8, + [10492] = 2, + ACTIONS(1874), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, + anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1717), 29, + ACTIONS(1876), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -23906,9 +28113,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -23921,16 +28128,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [7627] = 2, - ACTIONS(1715), 7, + [10534] = 2, + ACTIONS(1878), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1717), 30, + ACTIONS(1880), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -23941,14 +28149,13 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -23961,16 +28168,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [7669] = 2, - ACTIONS(1793), 7, + [10576] = 2, + ACTIONS(1830), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1795), 30, + ACTIONS(1832), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -23981,14 +28189,13 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -24001,16 +28208,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [7711] = 2, - ACTIONS(1789), 7, + [10618] = 2, + ACTIONS(1882), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1791), 30, + ACTIONS(1884), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -24021,14 +28229,13 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -24041,22 +28248,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [7753] = 2, - ACTIONS(1797), 8, + [10660] = 2, + ACTIONS(1980), 9, anon_sym_LBRACE, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1799), 29, + ACTIONS(1982), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -24066,7 +28274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -24079,19 +28287,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [7795] = 2, - ACTIONS(1801), 8, + [10702] = 2, + ACTIONS(1889), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, + anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1803), 29, + ACTIONS(1891), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -24106,9 +28313,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -24121,17 +28328,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [7837] = 2, - ACTIONS(1805), 8, + [10744] = 2, + ACTIONS(1893), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, + anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1807), 29, + ACTIONS(1895), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -24146,9 +28353,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -24161,17 +28368,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [7879] = 2, - ACTIONS(1809), 8, + [10786] = 2, + ACTIONS(1897), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, + anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1811), 29, + ACTIONS(1899), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -24186,9 +28393,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -24201,17 +28408,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [7921] = 2, - ACTIONS(1711), 8, + [10828] = 2, + ACTIONS(1901), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, + anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1713), 29, + ACTIONS(1903), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -24226,9 +28433,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -24241,17 +28448,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [7963] = 2, - ACTIONS(1813), 8, + [10870] = 2, + ACTIONS(1905), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, + anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1815), 29, + ACTIONS(1907), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -24266,9 +28473,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -24281,17 +28488,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [8005] = 2, - ACTIONS(1817), 8, + [10912] = 2, + ACTIONS(1909), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, + anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1819), 29, + ACTIONS(1911), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -24306,9 +28513,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -24321,17 +28528,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [8047] = 2, - ACTIONS(1821), 8, + [10954] = 2, + ACTIONS(1913), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, + anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1823), 29, + ACTIONS(1915), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -24346,9 +28553,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -24361,18 +28568,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [8089] = 2, - ACTIONS(1825), 8, + [10996] = 3, + ACTIONS(1990), 1, + sym__verbatim_begin, + ACTIONS(49), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1827), 29, - sym__verbatim_begin, + ACTIONS(84), 29, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24382,11 +28589,12 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -24401,17 +28609,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [8131] = 2, - ACTIONS(1829), 8, + [11040] = 2, + ACTIONS(1951), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1831), 29, + ACTIONS(1953), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -24422,11 +28629,12 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -24441,17 +28649,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [8173] = 2, - ACTIONS(1833), 8, + [11082] = 4, + ACTIONS(49), 1, anon_sym_LBRACE, + ACTIONS(84), 1, + anon_sym_RBRACK, + ACTIONS(1697), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1835), 29, + ACTIONS(1692), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -24466,7 +28676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -24481,8 +28691,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [8215] = 2, - ACTIONS(1769), 7, + [11128] = 2, + ACTIONS(1947), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -24490,7 +28700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1771), 30, + ACTIONS(1949), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -24501,9 +28711,9 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -24521,17 +28731,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [8257] = 2, - ACTIONS(1837), 8, + [11170] = 2, + ACTIONS(1943), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1839), 29, + ACTIONS(1945), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -24542,11 +28751,12 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -24561,17 +28771,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [8299] = 2, - ACTIONS(1719), 8, + [11212] = 2, + ACTIONS(1976), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1721), 29, + ACTIONS(1978), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -24586,10 +28795,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -24601,17 +28811,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [8341] = 2, - ACTIONS(1723), 8, + [11254] = 2, + ACTIONS(1939), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1725), 29, + ACTIONS(1941), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -24622,11 +28831,12 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -24641,17 +28851,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [8383] = 2, - ACTIONS(1727), 8, + [11296] = 2, + ACTIONS(1935), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1729), 29, + ACTIONS(1937), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -24662,11 +28871,12 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -24681,17 +28891,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [8425] = 2, - ACTIONS(1731), 8, - anon_sym_LBRACE, + [11338] = 4, + ACTIONS(1993), 1, + anon_sym_LBRACE2, + STATE(385), 1, + sym_comment, + ACTIONS(1930), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1733), 29, + ACTIONS(1928), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -24702,11 +28913,12 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -24721,17 +28933,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [8467] = 2, - ACTIONS(1735), 8, + [11384] = 2, + ACTIONS(1924), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1737), 29, + ACTIONS(1926), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -24742,11 +28953,12 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -24761,17 +28973,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [8509] = 2, - ACTIONS(1739), 8, + [11426] = 2, + ACTIONS(1920), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1741), 29, + ACTIONS(1922), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -24782,11 +28993,12 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -24801,8 +29013,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [8551] = 2, - ACTIONS(1785), 7, + [11468] = 2, + ACTIONS(1980), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -24810,7 +29022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1787), 30, + ACTIONS(1982), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -24821,7 +29033,6 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -24830,6 +29041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -24841,20 +29053,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [8593] = 4, - ACTIONS(47), 1, + [11510] = 4, + ACTIONS(49), 1, anon_sym_LBRACE, - ACTIONS(79), 1, - anon_sym_TILDE_RBRACE, - ACTIONS(1609), 7, + ACTIONS(84), 1, + anon_sym_EQ_RBRACE, + ACTIONS(1697), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1604), 28, + ACTIONS(1692), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -24871,6 +29082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -24883,8 +29095,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [8639] = 2, - ACTIONS(1781), 7, + [11556] = 3, + ACTIONS(1996), 1, + sym__verbatim_begin, + ACTIONS(49), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -24892,8 +29106,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1783), 30, - sym__verbatim_begin, + ACTIONS(84), 29, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24903,7 +29116,6 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -24912,6 +29124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -24923,8 +29136,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [8681] = 2, - ACTIONS(1777), 7, + [11600] = 2, + ACTIONS(1920), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -24932,7 +29145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1779), 30, + ACTIONS(1922), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -24943,7 +29156,6 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -24952,6 +29164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -24963,8 +29176,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [8723] = 2, - ACTIONS(1773), 7, + [11642] = 2, + ACTIONS(1924), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -24972,7 +29185,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1775), 30, + ACTIONS(1926), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -24983,7 +29196,6 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -24992,6 +29204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -25003,16 +29216,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [8765] = 2, - ACTIONS(1797), 7, - anon_sym_LBRACE, + [11684] = 4, + ACTIONS(1999), 1, + anon_sym_LBRACE2, + STATE(403), 1, + sym_comment, + ACTIONS(1930), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1799), 30, + ACTIONS(1928), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -25025,13 +29240,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -25043,16 +29258,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [8807] = 2, - ACTIONS(1765), 7, + [11730] = 2, + ACTIONS(1976), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1767), 30, + ACTIONS(1978), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -25063,14 +29279,13 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -25083,16 +29298,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [8849] = 2, - ACTIONS(1761), 7, + [11772] = 2, + ACTIONS(1980), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1763), 30, + ACTIONS(1982), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -25103,14 +29319,13 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -25123,19 +29338,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [8891] = 4, - ACTIONS(47), 1, + [11814] = 2, + ACTIONS(1935), 7, anon_sym_LBRACE, - ACTIONS(79), 1, - ts_builtin_sym_end, - ACTIONS(1609), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1604), 29, + ACTIONS(1937), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -25154,6 +29366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -25165,8 +29378,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [8937] = 2, - ACTIONS(1750), 7, + [11856] = 2, + ACTIONS(1939), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -25174,7 +29387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1752), 30, + ACTIONS(1941), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -25185,7 +29398,6 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -25194,6 +29406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -25205,16 +29418,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [8979] = 2, - ACTIONS(1746), 7, + [11898] = 2, + ACTIONS(1976), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1748), 30, + ACTIONS(1978), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -25225,12 +29439,11 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -25245,10 +29458,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [9021] = 3, - ACTIONS(1856), 1, - sym__verbatim_begin, - ACTIONS(47), 7, + [11940] = 2, + ACTIONS(1943), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -25256,7 +29467,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(79), 29, + ACTIONS(1945), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25266,7 +29478,6 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -25275,6 +29486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -25286,19 +29498,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [9065] = 3, - ACTIONS(1859), 1, - sym__verbatim_begin, - ACTIONS(47), 8, + [11982] = 2, + ACTIONS(1947), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(79), 28, + ACTIONS(1949), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25314,8 +29524,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -25327,17 +29538,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [9109] = 2, - ACTIONS(1746), 8, + [12024] = 2, + ACTIONS(1951), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1748), 29, + ACTIONS(1953), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -25354,8 +29564,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -25367,17 +29578,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [9151] = 2, - ACTIONS(1750), 8, + [12066] = 2, + ACTIONS(1826), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1752), 29, + ACTIONS(1828), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -25394,8 +29604,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -25407,19 +29618,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [9193] = 4, - ACTIONS(1862), 1, - anon_sym_LBRACE2, - STATE(336), 1, - sym_comment, - ACTIONS(1756), 6, + [12108] = 2, + ACTIONS(1834), 7, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, + anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1754), 29, + ACTIONS(1836), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -25436,8 +29644,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -25449,19 +29658,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [9239] = 4, - ACTIONS(47), 1, + [12150] = 2, + ACTIONS(1838), 7, anon_sym_LBRACE, - ACTIONS(79), 1, - anon_sym_EQ_RBRACE, - ACTIONS(1609), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1604), 29, + ACTIONS(1840), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -25480,6 +29686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -25491,10 +29698,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [9285] = 3, - ACTIONS(1865), 1, - sym__verbatim_begin, - ACTIONS(47), 7, + [12192] = 2, + ACTIONS(1842), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -25502,8 +29707,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(79), 29, - ts_builtin_sym_end, + ACTIONS(1844), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25521,6 +29726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -25532,17 +29738,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [9329] = 2, - ACTIONS(1761), 8, + [12234] = 2, + ACTIONS(1980), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1763), 29, + ACTIONS(1982), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -25557,9 +29763,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -25572,17 +29778,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [9371] = 2, - ACTIONS(1765), 8, + [12276] = 2, + ACTIONS(1976), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1767), 29, + ACTIONS(1978), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -25595,11 +29800,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -25612,8 +29818,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [9413] = 2, - ACTIONS(1769), 7, + [12318] = 2, + ACTIONS(1913), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -25621,8 +29827,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1771), 30, + ACTIONS(1915), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25633,7 +29840,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -25652,17 +29858,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [9455] = 2, - ACTIONS(1773), 8, + [12360] = 2, + ACTIONS(1846), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1775), 29, + ACTIONS(1848), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -25679,8 +29884,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -25692,17 +29898,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [9497] = 2, - ACTIONS(1777), 8, + [12402] = 2, + ACTIONS(1980), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1779), 29, + ACTIONS(1982), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -25715,11 +29920,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -25732,17 +29938,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [9539] = 2, - ACTIONS(1781), 8, + [12444] = 2, + ACTIONS(1850), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1783), 29, + ACTIONS(1852), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -25759,8 +29964,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -25772,17 +29978,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [9581] = 2, - ACTIONS(1785), 8, + [12486] = 2, + ACTIONS(1854), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1787), 29, + ACTIONS(1856), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -25799,8 +30004,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -25812,17 +30018,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [9623] = 2, - ACTIONS(1789), 8, + [12528] = 2, + ACTIONS(1858), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1791), 29, + ACTIONS(1860), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -25839,8 +30044,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -25852,17 +30058,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [9665] = 2, - ACTIONS(1793), 8, + [12570] = 2, + ACTIONS(1862), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1795), 29, + ACTIONS(1864), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -25879,8 +30084,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -25892,17 +30098,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [9707] = 2, - ACTIONS(1715), 8, + [12612] = 2, + ACTIONS(1866), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1717), 29, + ACTIONS(1868), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -25919,8 +30124,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -25932,8 +30138,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [9749] = 2, - ACTIONS(1746), 7, + [12654] = 2, + ACTIONS(1870), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -25941,9 +30147,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1748), 30, + ACTIONS(1872), 30, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25961,6 +30166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -25972,8 +30178,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [9791] = 2, - ACTIONS(1750), 7, + [12696] = 2, + ACTIONS(1874), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -25981,9 +30187,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1752), 30, + ACTIONS(1876), 30, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26001,6 +30206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -26012,20 +30218,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [9833] = 4, - ACTIONS(1868), 1, - anon_sym_LBRACE2, - STATE(475), 1, - sym_comment, - ACTIONS(1756), 5, + [12738] = 2, + ACTIONS(1878), 7, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1754), 30, + ACTIONS(1880), 30, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26043,6 +30246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -26054,8 +30258,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [9879] = 2, - ACTIONS(1797), 7, + [12780] = 2, + ACTIONS(1830), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -26063,7 +30267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1799), 30, + ACTIONS(1832), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -26075,7 +30279,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -26083,6 +30286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -26094,17 +30298,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [9921] = 2, - ACTIONS(1801), 8, + [12822] = 2, + ACTIONS(1882), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1803), 29, + ACTIONS(1884), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -26121,8 +30324,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -26134,17 +30338,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [9963] = 2, - ACTIONS(1805), 8, + [12864] = 2, + ACTIONS(1976), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1807), 29, + ACTIONS(1978), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -26156,12 +30359,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -26174,17 +30378,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [10005] = 2, - ACTIONS(1809), 8, + [12906] = 2, + ACTIONS(1889), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1811), 29, + ACTIONS(1891), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -26201,8 +30404,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -26214,17 +30418,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [10047] = 2, - ACTIONS(1711), 8, + [12948] = 2, + ACTIONS(1893), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1713), 29, + ACTIONS(1895), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -26241,8 +30444,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -26254,17 +30458,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [10089] = 2, - ACTIONS(1813), 8, + [12990] = 2, + ACTIONS(1897), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1815), 29, + ACTIONS(1899), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -26281,8 +30484,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -26294,17 +30498,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [10131] = 2, - ACTIONS(1817), 8, + [13032] = 2, + ACTIONS(1901), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1819), 29, + ACTIONS(1903), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -26321,8 +30524,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -26334,17 +30538,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [10173] = 2, - ACTIONS(1821), 8, + [13074] = 2, + ACTIONS(1905), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1823), 29, + ACTIONS(1907), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -26361,8 +30564,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -26374,17 +30578,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [10215] = 2, - ACTIONS(1825), 8, + [13116] = 2, + ACTIONS(1909), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1827), 29, + ACTIONS(1911), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -26401,8 +30604,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -26414,17 +30618,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [10257] = 2, - ACTIONS(1829), 8, + [13158] = 2, + ACTIONS(1913), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1831), 29, + ACTIONS(1915), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -26441,8 +30644,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -26454,18 +30658,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [10299] = 2, - ACTIONS(1833), 8, + [13200] = 2, + ACTIONS(1909), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1835), 29, + ACTIONS(1911), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26481,7 +30685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -26494,8 +30698,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [10341] = 2, - ACTIONS(1769), 7, + [13242] = 2, + ACTIONS(1980), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -26503,7 +30707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1771), 30, + ACTIONS(1982), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -26514,8 +30718,8 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -26534,22 +30738,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [10383] = 2, - ACTIONS(1837), 8, + [13284] = 4, + ACTIONS(49), 1, anon_sym_LBRACE, + ACTIONS(84), 1, + aux_sym_strong_end_token1, + ACTIONS(1697), 8, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1839), 29, + ACTIONS(1692), 27, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -26561,7 +30768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -26572,19 +30779,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [10425] = 2, - ACTIONS(1719), 8, + [13330] = 2, + ACTIONS(1976), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1721), 29, + ACTIONS(1978), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -26595,13 +30800,14 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -26614,17 +30820,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [10467] = 2, - ACTIONS(1723), 8, + [13372] = 2, + ACTIONS(1980), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1725), 29, + ACTIONS(1982), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -26635,13 +30840,14 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -26654,17 +30860,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [10509] = 2, - ACTIONS(1727), 8, + [13414] = 2, + ACTIONS(1951), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1729), 29, + ACTIONS(1953), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -26676,12 +30881,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -26694,17 +30900,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [10551] = 2, - ACTIONS(1731), 8, + [13456] = 4, + ACTIONS(2002), 1, + aux_sym__text_token1, + STATE(439), 1, + aux_sym__text, + ACTIONS(1752), 6, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(1733), 29, + ACTIONS(1754), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -26721,7 +30929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -26734,18 +30942,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [10593] = 2, - ACTIONS(1735), 8, + [13502] = 2, + ACTIONS(1943), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1737), 29, + ACTIONS(1945), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26761,7 +30969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -26774,18 +30982,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [10635] = 2, - ACTIONS(1739), 8, + [13544] = 2, + ACTIONS(1947), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1741), 29, + ACTIONS(1949), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26801,7 +31009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -26814,8 +31022,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [10677] = 2, - ACTIONS(1739), 7, + [13586] = 2, + ACTIONS(1905), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -26823,7 +31031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1741), 30, + ACTIONS(1907), 30, sym__verbatim_begin, ts_builtin_sym_end, anon_sym_LBRACE_, @@ -26854,20 +31062,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [10719] = 4, - ACTIONS(47), 1, + [13628] = 2, + ACTIONS(1901), 7, anon_sym_LBRACE, - ACTIONS(79), 1, - anon_sym_RBRACK, - ACTIONS(1609), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1604), 29, + ACTIONS(1903), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26896,8 +31102,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [10765] = 2, - ACTIONS(1735), 7, + [13670] = 2, + ACTIONS(1951), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -26905,7 +31111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1737), 30, + ACTIONS(1953), 30, sym__verbatim_begin, ts_builtin_sym_end, anon_sym_LBRACE_, @@ -26936,8 +31142,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [10807] = 2, - ACTIONS(1837), 7, + [13712] = 2, + ACTIONS(1826), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -26945,8 +31151,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1839), 30, + ACTIONS(1828), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26956,7 +31163,6 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -26976,22 +31182,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [10849] = 2, - ACTIONS(1761), 7, + [13754] = 3, + ACTIONS(2005), 1, + sym__verbatim_begin, + ACTIONS(49), 9, anon_sym_LBRACE, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1763), 30, - sym__verbatim_begin, - ts_builtin_sym_end, + ACTIONS(84), 27, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -27014,14 +31222,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [10891] = 4, - ACTIONS(1873), 1, - anon_sym_SPACE, - STATE(486), 1, - aux_sym_strong_begin_repeat1, - ACTIONS(1875), 7, + [13798] = 2, + ACTIONS(1920), 9, + anon_sym_LBRACE, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, @@ -27029,12 +31234,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1871), 28, + ACTIONS(1922), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -27058,22 +31263,23 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [10937] = 2, - ACTIONS(1765), 7, + [13840] = 2, + ACTIONS(1924), 9, anon_sym_LBRACE, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1767), 30, + ACTIONS(1926), 28, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -27096,29 +31302,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [10979] = 2, - ACTIONS(1797), 7, - anon_sym_LBRACE, + [13882] = 4, + ACTIONS(2008), 1, + anon_sym_LBRACE2, + STATE(455), 1, + sym_comment, + ACTIONS(1930), 7, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1799), 30, + ACTIONS(1928), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -27136,10 +31344,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [11021] = 2, - ACTIONS(1739), 7, + [13928] = 2, + ACTIONS(1834), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -27147,8 +31354,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1741), 30, + ACTIONS(1836), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27167,7 +31375,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -27178,8 +31385,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [11063] = 2, - ACTIONS(1735), 7, + [13970] = 2, + ACTIONS(1897), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -27187,8 +31394,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1737), 30, + ACTIONS(1899), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27207,7 +31415,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -27218,22 +31425,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [11105] = 2, - ACTIONS(1731), 7, + [14012] = 2, + ACTIONS(1935), 9, anon_sym_LBRACE, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1733), 30, + ACTIONS(1937), 28, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -27256,24 +31464,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [11147] = 2, - ACTIONS(1727), 7, + [14054] = 2, + ACTIONS(1939), 9, anon_sym_LBRACE, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1729), 30, + ACTIONS(1941), 28, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -27296,12 +31504,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [11189] = 3, - ACTIONS(1877), 1, - sym__verbatim_begin, - ACTIONS(47), 7, + [14096] = 2, + ACTIONS(1838), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -27309,7 +31514,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(79), 29, + ACTIONS(1840), 30, + sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27327,7 +31534,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -27339,21 +31545,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [11233] = 2, - ACTIONS(1746), 7, + [14138] = 2, + ACTIONS(1943), 9, anon_sym_LBRACE, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1748), 30, + ACTIONS(1945), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -27367,7 +31575,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -27377,23 +31584,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [11275] = 2, - ACTIONS(1750), 7, + [14180] = 2, + ACTIONS(1947), 9, anon_sym_LBRACE, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1752), 30, + ACTIONS(1949), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -27407,7 +31615,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -27417,25 +31624,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [11317] = 4, - ACTIONS(1880), 1, - anon_sym_LBRACE2, - STATE(386), 1, - sym_comment, - ACTIONS(1756), 5, + [14222] = 2, + ACTIONS(1951), 9, + anon_sym_LBRACE, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1754), 30, + ACTIONS(1953), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -27449,7 +31655,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -27459,23 +31664,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [11363] = 2, - ACTIONS(1731), 7, + [14264] = 2, + ACTIONS(1826), 9, anon_sym_LBRACE, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1733), 30, + ACTIONS(1828), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -27490,7 +31696,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -27499,23 +31704,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [11405] = 2, - ACTIONS(1727), 7, + [14306] = 2, + ACTIONS(1834), 9, anon_sym_LBRACE, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1729), 30, + ACTIONS(1836), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -27530,7 +31736,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -27539,23 +31744,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [11447] = 2, - ACTIONS(1761), 7, + [14348] = 2, + ACTIONS(1838), 9, anon_sym_LBRACE, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1763), 30, + ACTIONS(1840), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -27569,7 +31775,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -27579,23 +31784,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [11489] = 2, - ACTIONS(1765), 7, + [14390] = 2, + ACTIONS(1842), 9, anon_sym_LBRACE, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1767), 30, + ACTIONS(1844), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -27609,7 +31815,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -27619,10 +31824,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [11531] = 2, - ACTIONS(1723), 7, + [14432] = 2, + ACTIONS(1893), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -27630,8 +31834,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1725), 30, + ACTIONS(1895), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27650,7 +31855,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -27661,8 +31865,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [11573] = 2, - ACTIONS(1773), 7, + [14474] = 2, + ACTIONS(1889), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -27670,8 +31874,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1775), 30, + ACTIONS(1891), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27689,7 +31894,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -27701,24 +31905,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [11615] = 2, - ACTIONS(1777), 7, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(1779), 30, + [14516] = 3, + ACTIONS(2011), 1, + aux_sym_autolink_token1, + ACTIONS(84), 3, sym__verbatim_begin, + sym__whitespace1, + sym__newline, + ACTIONS(49), 33, + anon_sym_LBRACE, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, + sym_en_dash, + sym_backslash_escape, anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, @@ -27729,8 +31934,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, + anon_sym_LBRACK, + anon_sym_LBRACE2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -27739,23 +31945,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, - sym__newline, - [11657] = 2, - ACTIONS(1781), 7, + aux_sym__text_token1, + [14560] = 2, + ACTIONS(1846), 9, anon_sym_LBRACE, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1783), 30, + ACTIONS(1848), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -27769,7 +31976,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -27779,18 +31985,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [11699] = 2, - ACTIONS(1785), 7, + [14602] = 4, + ACTIONS(1818), 1, anon_sym_LBRACE, + STATE(628), 1, + sym_inline_attribute, + ACTIONS(1710), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1787), 30, + ACTIONS(1708), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -27809,7 +32017,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -27821,21 +32028,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [11741] = 2, - ACTIONS(1789), 7, + [14648] = 2, + ACTIONS(1850), 9, anon_sym_LBRACE, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1791), 30, + ACTIONS(1852), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -27849,7 +32058,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -27859,23 +32067,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [11783] = 2, - ACTIONS(1793), 7, + [14690] = 2, + ACTIONS(1854), 9, anon_sym_LBRACE, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1795), 30, + ACTIONS(1856), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -27889,7 +32098,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -27899,23 +32107,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [11825] = 2, - ACTIONS(1719), 7, + [14732] = 2, + ACTIONS(1858), 9, anon_sym_LBRACE, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1721), 30, + ACTIONS(1860), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -27930,7 +32139,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -27939,24 +32147,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [11867] = 2, - ACTIONS(1723), 7, + [14774] = 2, + ACTIONS(1862), 9, anon_sym_LBRACE, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1725), 30, + ACTIONS(1864), 28, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -27979,24 +32187,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [11909] = 2, - ACTIONS(1719), 7, + [14816] = 2, + ACTIONS(1866), 9, anon_sym_LBRACE, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1721), 30, + ACTIONS(1868), 28, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -28019,24 +32227,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [11951] = 2, - ACTIONS(1837), 7, + [14858] = 2, + ACTIONS(1870), 9, anon_sym_LBRACE, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1839), 30, + ACTIONS(1872), 28, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -28059,23 +32267,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [11993] = 2, - ACTIONS(1837), 7, + [14900] = 2, + ACTIONS(1874), 9, anon_sym_LBRACE, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1839), 30, + ACTIONS(1876), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -28090,7 +32299,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -28099,23 +32307,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [12035] = 2, - ACTIONS(1801), 7, + [14942] = 2, + ACTIONS(1878), 9, anon_sym_LBRACE, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1803), 30, + ACTIONS(1880), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -28129,7 +32338,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -28139,23 +32347,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [12077] = 2, - ACTIONS(1805), 7, + [14984] = 2, + ACTIONS(1830), 9, anon_sym_LBRACE, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1807), 30, + ACTIONS(1832), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -28169,7 +32378,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -28179,23 +32387,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [12119] = 2, - ACTIONS(1809), 7, + [15026] = 2, + ACTIONS(1882), 9, anon_sym_LBRACE, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1811), 30, + ACTIONS(1884), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -28209,7 +32418,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -28219,10 +32427,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [12161] = 2, - ACTIONS(1711), 7, + [15068] = 2, + ACTIONS(1842), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -28230,8 +32437,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1713), 30, + ACTIONS(1844), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28249,7 +32457,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -28261,21 +32468,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [12203] = 2, - ACTIONS(1813), 7, + [15110] = 2, + ACTIONS(1889), 9, anon_sym_LBRACE, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1815), 30, + ACTIONS(1891), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -28289,7 +32498,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -28299,23 +32507,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [12245] = 2, - ACTIONS(1817), 7, + [15152] = 2, + ACTIONS(1893), 9, anon_sym_LBRACE, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1819), 30, + ACTIONS(1895), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -28329,7 +32538,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -28339,23 +32547,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [12287] = 2, - ACTIONS(1821), 7, + [15194] = 2, + ACTIONS(1897), 9, anon_sym_LBRACE, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1823), 30, + ACTIONS(1899), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -28369,7 +32578,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -28379,23 +32587,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [12329] = 2, - ACTIONS(1825), 7, + [15236] = 2, + ACTIONS(1901), 9, anon_sym_LBRACE, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1827), 30, + ACTIONS(1903), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -28409,7 +32618,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -28419,23 +32627,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [12371] = 2, - ACTIONS(1829), 7, + [15278] = 2, + ACTIONS(1905), 9, anon_sym_LBRACE, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1831), 30, + ACTIONS(1907), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -28449,7 +32658,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -28459,23 +32667,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [12413] = 2, - ACTIONS(1833), 7, + [15320] = 2, + ACTIONS(1909), 9, anon_sym_LBRACE, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1835), 30, + ACTIONS(1911), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -28489,7 +32698,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -28499,23 +32707,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [12455] = 2, - ACTIONS(1833), 7, + [15362] = 2, + ACTIONS(1913), 9, anon_sym_LBRACE, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1835), 30, + ACTIONS(1915), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -28530,7 +32739,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -28539,10 +32747,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [12497] = 2, - ACTIONS(1837), 7, + [15404] = 3, + ACTIONS(2013), 1, + sym__non_whitespace_check, + ACTIONS(49), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -28550,7 +32759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1839), 30, + ACTIONS(84), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -28569,7 +32778,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -28581,8 +32789,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [12539] = 2, - ACTIONS(1719), 7, + [15448] = 2, + ACTIONS(1913), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -28590,7 +32798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1721), 30, + ACTIONS(1915), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -28609,8 +32817,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -28621,19 +32829,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [12581] = 2, - ACTIONS(1723), 7, + [15490] = 4, + ACTIONS(49), 1, anon_sym_LBRACE, + ACTIONS(84), 1, + aux_sym_emphasis_end_token1, + ACTIONS(1697), 8, + anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1725), 30, + ACTIONS(1692), 27, sym__verbatim_begin, anon_sym_LBRACE_, - anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -28649,7 +32861,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -28659,10 +32870,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [12623] = 2, - ACTIONS(1727), 7, + [15536] = 2, + ACTIONS(1909), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -28670,7 +32880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1729), 30, + ACTIONS(1911), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -28689,8 +32899,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -28701,8 +32911,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [12665] = 2, - ACTIONS(1731), 7, + [15578] = 2, + ACTIONS(1905), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -28710,7 +32920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1733), 30, + ACTIONS(1907), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -28729,8 +32939,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -28741,8 +32951,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [12707] = 2, - ACTIONS(1735), 7, + [15620] = 2, + ACTIONS(1901), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -28750,7 +32960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1737), 30, + ACTIONS(1903), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -28769,8 +32979,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -28781,8 +32991,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [12749] = 2, - ACTIONS(1739), 7, + [15662] = 2, + ACTIONS(1882), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -28790,8 +33000,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1741), 30, + ACTIONS(1884), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28809,7 +33020,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -28821,8 +33031,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [12791] = 2, - ACTIONS(1829), 7, + [15704] = 2, + ACTIONS(1897), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -28830,7 +33040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1831), 30, + ACTIONS(1899), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -28861,25 +33071,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [12833] = 4, - ACTIONS(47), 1, + [15746] = 2, + ACTIONS(1893), 7, anon_sym_LBRACE, - ACTIONS(79), 1, - aux_sym_strong_end_token1, - ACTIONS(1609), 8, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1604), 27, + ACTIONS(1895), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -28894,6 +33100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -28902,9 +33109,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [12879] = 2, - ACTIONS(1825), 7, + [15788] = 2, + ACTIONS(1889), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -28912,7 +33120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1827), 30, + ACTIONS(1891), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -28943,8 +33151,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [12921] = 2, - ACTIONS(1821), 7, + [15830] = 2, + ACTIONS(1830), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -28952,8 +33160,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1823), 30, + ACTIONS(1832), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28972,7 +33181,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -28983,8 +33191,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [12963] = 2, - ACTIONS(1817), 7, + [15872] = 2, + ACTIONS(1878), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -28992,8 +33200,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1819), 30, + ACTIONS(1880), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29012,7 +33221,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -29023,8 +33231,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [13005] = 2, - ACTIONS(1813), 7, + [15914] = 2, + ACTIONS(1882), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -29032,7 +33240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1815), 30, + ACTIONS(1884), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -29063,19 +33271,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [13047] = 2, - ACTIONS(1711), 7, + [15956] = 3, + ACTIONS(2015), 1, + sym__verbatim_begin, + ACTIONS(49), 9, anon_sym_LBRACE, + anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1713), 30, - sym__verbatim_begin, + ACTIONS(84), 27, anon_sym_LBRACE_, - anon_sym__, + aux_sym_emphasis_end_token1, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -29092,7 +33303,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -29101,22 +33311,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [13089] = 2, - ACTIONS(1833), 7, + [16000] = 2, + ACTIONS(1920), 9, anon_sym_LBRACE, + anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1835), 30, + ACTIONS(1922), 28, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, - anon_sym__, + aux_sym_emphasis_end_token1, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -29141,21 +33351,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [13131] = 2, - ACTIONS(1809), 7, + [16042] = 2, + ACTIONS(1924), 9, anon_sym_LBRACE, + anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1811), 30, + ACTIONS(1926), 28, sym__verbatim_begin, anon_sym_LBRACE_, - anon_sym__, + aux_sym_emphasis_end_token1, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -29172,7 +33383,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -29181,21 +33391,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [13173] = 2, - ACTIONS(1805), 7, + [16084] = 2, + ACTIONS(1935), 9, anon_sym_LBRACE, + anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1807), 30, + ACTIONS(1937), 28, sym__verbatim_begin, anon_sym_LBRACE_, - anon_sym__, + aux_sym_emphasis_end_token1, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -29212,7 +33423,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -29221,21 +33431,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [13215] = 2, - ACTIONS(1801), 7, + [16126] = 2, + ACTIONS(1939), 9, anon_sym_LBRACE, + anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1803), 30, + ACTIONS(1941), 28, sym__verbatim_begin, anon_sym_LBRACE_, - anon_sym__, + aux_sym_emphasis_end_token1, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -29252,7 +33463,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -29261,22 +33471,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [13257] = 2, - ACTIONS(1829), 7, + [16168] = 2, + ACTIONS(1943), 9, anon_sym_LBRACE, + anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1831), 30, + ACTIONS(1945), 28, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, - anon_sym__, + aux_sym_emphasis_end_token1, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -29301,14 +33511,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [13299] = 3, - ACTIONS(1883), 1, - sym__verbatim_begin, - ACTIONS(47), 9, + [16210] = 2, + ACTIONS(1947), 9, anon_sym_LBRACE, - anon_sym_STAR, + anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, @@ -29316,11 +33523,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(79), 27, + ACTIONS(1949), 28, + sym__verbatim_begin, anon_sym_LBRACE_, - anon_sym__, + aux_sym_emphasis_end_token1, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -29344,10 +33552,10 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [13343] = 2, - ACTIONS(1746), 9, + [16252] = 2, + ACTIONS(1951), 9, anon_sym_LBRACE, - anon_sym_STAR, + anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, @@ -29355,12 +33563,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1748), 28, + ACTIONS(1953), 28, sym__verbatim_begin, anon_sym_LBRACE_, - anon_sym__, + aux_sym_emphasis_end_token1, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -29384,10 +33592,10 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [13385] = 2, - ACTIONS(1750), 9, + [16294] = 2, + ACTIONS(1834), 9, anon_sym_LBRACE, - anon_sym_STAR, + anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, @@ -29395,12 +33603,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1752), 28, + ACTIONS(1836), 28, sym__verbatim_begin, anon_sym_LBRACE_, - anon_sym__, + aux_sym_emphasis_end_token1, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -29424,25 +33632,23 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [13427] = 4, - ACTIONS(1886), 1, - anon_sym_LBRACE2, - STATE(436), 1, - sym_comment, - ACTIONS(1756), 7, - anon_sym_STAR, + [16336] = 2, + ACTIONS(1838), 9, + anon_sym_LBRACE, + anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1754), 28, + ACTIONS(1840), 28, sym__verbatim_begin, anon_sym_LBRACE_, - anon_sym__, + aux_sym_emphasis_end_token1, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -29466,20 +33672,21 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [13473] = 2, - ACTIONS(1825), 7, + [16378] = 2, + ACTIONS(1842), 9, anon_sym_LBRACE, + anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1827), 30, + ACTIONS(1844), 28, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, - anon_sym__, + aux_sym_emphasis_end_token1, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -29504,10 +33711,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [13515] = 2, - ACTIONS(1715), 7, + [16420] = 2, + ACTIONS(1874), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -29515,8 +33721,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1717), 30, + ACTIONS(1876), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29535,7 +33742,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -29546,10 +33752,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [13557] = 2, - ACTIONS(1761), 9, + [16462] = 2, + ACTIONS(1846), 9, anon_sym_LBRACE, - anon_sym_STAR, + anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, @@ -29557,12 +33763,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1763), 28, + ACTIONS(1848), 28, sym__verbatim_begin, anon_sym_LBRACE_, - anon_sym__, + aux_sym_emphasis_end_token1, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -29586,23 +33792,22 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [13599] = 2, - ACTIONS(1765), 9, + [16504] = 2, + ACTIONS(1980), 7, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1767), 28, + ACTIONS(1982), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -29625,20 +33830,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [13641] = 2, - ACTIONS(1793), 7, + [16546] = 2, + ACTIONS(1850), 9, anon_sym_LBRACE, + anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1795), 30, + ACTIONS(1852), 28, sym__verbatim_begin, anon_sym_LBRACE_, - anon_sym__, + aux_sym_emphasis_end_token1, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -29655,7 +33863,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -29664,12 +33871,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [13683] = 2, - ACTIONS(1773), 9, + [16588] = 2, + ACTIONS(1854), 9, anon_sym_LBRACE, - anon_sym_STAR, + anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, @@ -29677,12 +33883,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1775), 28, + ACTIONS(1856), 28, sym__verbatim_begin, anon_sym_LBRACE_, - anon_sym__, + aux_sym_emphasis_end_token1, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -29706,10 +33912,10 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [13725] = 2, - ACTIONS(1777), 9, + [16630] = 2, + ACTIONS(1858), 9, anon_sym_LBRACE, - anon_sym_STAR, + anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, @@ -29717,12 +33923,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1779), 28, + ACTIONS(1860), 28, sym__verbatim_begin, anon_sym_LBRACE_, - anon_sym__, + aux_sym_emphasis_end_token1, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -29746,10 +33952,10 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [13767] = 2, - ACTIONS(1781), 9, + [16672] = 2, + ACTIONS(1862), 9, anon_sym_LBRACE, - anon_sym_STAR, + anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, @@ -29757,12 +33963,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1783), 28, + ACTIONS(1864), 28, sym__verbatim_begin, anon_sym_LBRACE_, - anon_sym__, + aux_sym_emphasis_end_token1, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -29786,10 +33992,10 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [13809] = 2, - ACTIONS(1785), 9, + [16714] = 2, + ACTIONS(1866), 9, anon_sym_LBRACE, - anon_sym_STAR, + anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, @@ -29797,12 +34003,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1787), 28, + ACTIONS(1868), 28, sym__verbatim_begin, anon_sym_LBRACE_, - anon_sym__, + aux_sym_emphasis_end_token1, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -29826,10 +34032,10 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [13851] = 2, - ACTIONS(1789), 9, + [16756] = 2, + ACTIONS(1870), 9, anon_sym_LBRACE, - anon_sym_STAR, + anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, @@ -29837,12 +34043,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1791), 28, + ACTIONS(1872), 28, sym__verbatim_begin, anon_sym_LBRACE_, - anon_sym__, + aux_sym_emphasis_end_token1, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -29866,10 +34072,10 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [13893] = 2, - ACTIONS(1793), 9, + [16798] = 2, + ACTIONS(1874), 9, anon_sym_LBRACE, - anon_sym_STAR, + anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, @@ -29877,12 +34083,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1795), 28, + ACTIONS(1876), 28, sym__verbatim_begin, anon_sym_LBRACE_, - anon_sym__, + aux_sym_emphasis_end_token1, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -29906,10 +34112,10 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [13935] = 2, - ACTIONS(1715), 9, + [16840] = 2, + ACTIONS(1878), 9, anon_sym_LBRACE, - anon_sym_STAR, + anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, @@ -29917,12 +34123,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1717), 28, + ACTIONS(1880), 28, sym__verbatim_begin, anon_sym_LBRACE_, - anon_sym__, + aux_sym_emphasis_end_token1, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -29946,19 +34152,21 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [13977] = 2, - ACTIONS(1789), 7, + [16882] = 2, + ACTIONS(1830), 9, anon_sym_LBRACE, + anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1791), 30, + ACTIONS(1832), 28, sym__verbatim_begin, anon_sym_LBRACE_, - anon_sym__, + aux_sym_emphasis_end_token1, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -29975,7 +34183,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -29984,21 +34191,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [14019] = 2, - ACTIONS(1785), 7, + [16924] = 2, + ACTIONS(1882), 9, anon_sym_LBRACE, + anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1787), 30, + ACTIONS(1884), 28, sym__verbatim_begin, anon_sym_LBRACE_, - anon_sym__, + aux_sym_emphasis_end_token1, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -30015,7 +34223,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -30024,10 +34231,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [14061] = 2, - ACTIONS(1781), 7, + [16966] = 2, + ACTIONS(1976), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -30035,8 +34241,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1783), 30, + ACTIONS(1978), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30055,7 +34262,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -30066,19 +34272,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [14103] = 2, - ACTIONS(1777), 7, + [17008] = 2, + ACTIONS(1889), 9, anon_sym_LBRACE, + anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1779), 30, + ACTIONS(1891), 28, sym__verbatim_begin, anon_sym_LBRACE_, - anon_sym__, + aux_sym_emphasis_end_token1, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -30095,7 +34303,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -30104,12 +34311,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [14145] = 2, - ACTIONS(1801), 9, + [17050] = 2, + ACTIONS(1893), 9, anon_sym_LBRACE, - anon_sym_STAR, + anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, @@ -30117,12 +34323,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1803), 28, + ACTIONS(1895), 28, sym__verbatim_begin, anon_sym_LBRACE_, - anon_sym__, + aux_sym_emphasis_end_token1, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -30146,10 +34352,10 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [14187] = 2, - ACTIONS(1805), 9, + [17092] = 2, + ACTIONS(1897), 9, anon_sym_LBRACE, - anon_sym_STAR, + anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, @@ -30157,12 +34363,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1807), 28, + ACTIONS(1899), 28, sym__verbatim_begin, anon_sym_LBRACE_, - anon_sym__, + aux_sym_emphasis_end_token1, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -30186,10 +34392,10 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [14229] = 2, - ACTIONS(1809), 9, + [17134] = 2, + ACTIONS(1901), 9, anon_sym_LBRACE, - anon_sym_STAR, + anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, @@ -30197,12 +34403,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1811), 28, + ACTIONS(1903), 28, sym__verbatim_begin, anon_sym_LBRACE_, - anon_sym__, + aux_sym_emphasis_end_token1, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -30226,19 +34432,21 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [14271] = 2, - ACTIONS(1773), 7, + [17176] = 2, + ACTIONS(1905), 9, anon_sym_LBRACE, + anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1775), 30, + ACTIONS(1907), 28, sym__verbatim_begin, anon_sym_LBRACE_, - anon_sym__, + aux_sym_emphasis_end_token1, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -30255,7 +34463,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -30264,12 +34471,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [14313] = 2, - ACTIONS(1813), 9, + [17218] = 2, + ACTIONS(1909), 9, anon_sym_LBRACE, - anon_sym_STAR, + anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, @@ -30277,12 +34483,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1815), 28, + ACTIONS(1911), 28, sym__verbatim_begin, anon_sym_LBRACE_, - anon_sym__, + aux_sym_emphasis_end_token1, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -30306,10 +34512,10 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [14355] = 2, - ACTIONS(1817), 9, + [17260] = 2, + ACTIONS(1913), 9, anon_sym_LBRACE, - anon_sym_STAR, + anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, @@ -30317,12 +34523,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1819), 28, + ACTIONS(1915), 28, sym__verbatim_begin, anon_sym_LBRACE_, - anon_sym__, + aux_sym_emphasis_end_token1, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -30346,23 +34552,22 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [14397] = 2, - ACTIONS(1821), 9, + [17302] = 2, + ACTIONS(1870), 7, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1823), 28, + ACTIONS(1872), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -30385,24 +34590,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [14439] = 2, - ACTIONS(1825), 9, + [17344] = 2, + ACTIONS(1866), 7, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1827), 28, + ACTIONS(1868), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -30425,24 +34630,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [14481] = 2, - ACTIONS(1829), 9, + [17386] = 4, + ACTIONS(49), 1, anon_sym_LBRACE, - anon_sym_STAR, + ACTIONS(84), 1, + anon_sym_RBRACK2, + ACTIONS(1697), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1831), 28, + ACTIONS(1692), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -30465,24 +34672,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [14523] = 2, - ACTIONS(1833), 9, + [17432] = 2, + ACTIONS(1862), 7, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1835), 28, + ACTIONS(1864), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -30505,9 +34712,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [14565] = 2, - ACTIONS(1765), 7, + [17474] = 2, + ACTIONS(1858), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -30515,8 +34723,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1767), 30, + ACTIONS(1860), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30535,7 +34744,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -30546,23 +34754,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [14607] = 2, - ACTIONS(1837), 9, + [17516] = 2, + ACTIONS(1854), 7, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1839), 28, + ACTIONS(1856), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -30585,24 +34792,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [14649] = 2, - ACTIONS(1719), 9, + [17558] = 2, + ACTIONS(1850), 7, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1721), 28, + ACTIONS(1852), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -30625,24 +34832,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [14691] = 2, - ACTIONS(1723), 9, + [17600] = 3, + ACTIONS(2018), 1, + sym__verbatim_begin, + ACTIONS(49), 7, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1725), 28, - sym__verbatim_begin, + ACTIONS(84), 29, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -30657,6 +34864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -30665,24 +34873,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [14733] = 2, - ACTIONS(1727), 9, + [17644] = 2, + ACTIONS(1920), 7, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1729), 28, + ACTIONS(1922), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -30697,6 +34904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -30705,24 +34913,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [14775] = 2, - ACTIONS(1731), 9, + [17686] = 2, + ACTIONS(1924), 7, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1733), 28, + ACTIONS(1926), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -30737,6 +34944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -30745,24 +34953,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [14817] = 2, - ACTIONS(1735), 9, - anon_sym_LBRACE, - anon_sym_STAR, + [17728] = 4, + ACTIONS(2021), 1, + anon_sym_LBRACE2, + STATE(543), 1, + sym_comment, + ACTIONS(1930), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1737), 28, + ACTIONS(1928), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -30777,6 +34986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -30785,24 +34995,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [14859] = 2, - ACTIONS(1739), 9, + [17774] = 2, + ACTIONS(1935), 7, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1741), 28, + ACTIONS(1937), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -30817,6 +35026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -30825,9 +35035,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [14901] = 2, - ACTIONS(1821), 7, + [17816] = 2, + ACTIONS(1939), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -30835,9 +35046,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1823), 30, + ACTIONS(1941), 30, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30856,6 +35066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -30866,8 +35077,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [14943] = 2, - ACTIONS(1761), 7, + [17858] = 2, + ACTIONS(1943), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -30875,7 +35086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1763), 30, + ACTIONS(1945), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -30906,19 +35117,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [14985] = 4, - ACTIONS(1681), 1, + [17900] = 2, + ACTIONS(1947), 7, anon_sym_LBRACE, - STATE(552), 1, - sym_inline_attribute, - ACTIONS(1618), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1616), 29, + ACTIONS(1949), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -30938,6 +35146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -30948,25 +35157,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [15031] = 3, - ACTIONS(1889), 1, - aux_sym_autolink_token1, - ACTIONS(79), 3, - sym__verbatim_begin, - sym__whitespace1, - sym__newline, - ACTIONS(47), 33, + [17942] = 2, + ACTIONS(1951), 7, anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1953), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, - anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, - sym_en_dash, - sym_backslash_escape, anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, @@ -30978,8 +35186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LBRACK, - anon_sym_LBRACE2, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -30988,9 +35195,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - aux_sym__text_token1, - [15075] = 2, - ACTIONS(1817), 7, + sym__whitespace1, + sym__newline, + [17984] = 2, + ACTIONS(1826), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -30998,9 +35206,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1819), 30, + ACTIONS(1828), 30, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31019,6 +35226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -31029,8 +35237,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [15117] = 2, - ACTIONS(1813), 7, + [18026] = 2, + ACTIONS(1834), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -31038,9 +35246,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1815), 30, + ACTIONS(1836), 30, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31059,6 +35266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -31069,8 +35277,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [15159] = 2, - ACTIONS(1711), 7, + [18068] = 2, + ACTIONS(1838), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -31078,9 +35286,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1713), 30, + ACTIONS(1840), 30, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31099,6 +35306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -31109,8 +35317,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [15201] = 2, - ACTIONS(1809), 7, + [18110] = 2, + ACTIONS(1842), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -31118,9 +35326,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1811), 30, + ACTIONS(1844), 30, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31139,6 +35346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -31149,18 +35357,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [15243] = 2, - ACTIONS(1805), 7, - anon_sym_LBRACE, + [18152] = 4, + ACTIONS(2026), 1, + anon_sym_SPACE, + STATE(550), 1, + aux_sym_strong_begin_repeat1, + ACTIONS(2029), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1807), 30, + ACTIONS(2024), 28, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31187,10 +35398,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [15285] = 2, - ACTIONS(1801), 7, + [18198] = 2, + ACTIONS(1846), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -31198,7 +35408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1803), 30, + ACTIONS(1848), 30, sym__verbatim_begin, ts_builtin_sym_end, anon_sym_LBRACE_, @@ -31229,8 +35439,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [15327] = 2, - ACTIONS(1773), 7, + [18240] = 2, + ACTIONS(1846), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -31238,9 +35448,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1775), 30, + ACTIONS(1848), 30, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31259,6 +35468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -31269,18 +35479,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [15369] = 4, - ACTIONS(1891), 1, - anon_sym_LBRACE2, - STATE(450), 1, - sym_comment, - ACTIONS(1756), 5, + [18282] = 2, + ACTIONS(1850), 7, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1754), 30, + ACTIONS(1852), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -31311,8 +35519,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [15415] = 2, - ACTIONS(1750), 7, + [18324] = 2, + ACTIONS(1854), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -31320,7 +35528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1752), 30, + ACTIONS(1856), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -31351,8 +35559,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [15457] = 2, - ACTIONS(1746), 7, + [18366] = 2, + ACTIONS(1858), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -31360,7 +35568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1748), 30, + ACTIONS(1860), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -31391,10 +35599,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [15499] = 3, - ACTIONS(1894), 1, - sym__verbatim_begin, - ACTIONS(47), 7, + [18408] = 2, + ACTIONS(1862), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -31402,7 +35608,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(79), 29, + ACTIONS(1864), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31432,8 +35639,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [15543] = 2, - ACTIONS(1777), 7, + [18450] = 2, + ACTIONS(1866), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -31441,9 +35648,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1779), 30, + ACTIONS(1868), 30, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31462,6 +35668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -31472,8 +35679,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [15585] = 2, - ACTIONS(1781), 7, + [18492] = 2, + ACTIONS(1870), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -31481,9 +35688,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1783), 30, + ACTIONS(1872), 30, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31502,6 +35708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -31512,8 +35719,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [15627] = 2, - ACTIONS(1785), 7, + [18534] = 2, + ACTIONS(1874), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -31521,9 +35728,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1787), 30, + ACTIONS(1876), 30, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31542,6 +35748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -31552,8 +35759,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [15669] = 2, - ACTIONS(1789), 7, + [18576] = 2, + ACTIONS(1878), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -31561,9 +35768,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1791), 30, + ACTIONS(1880), 30, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31582,6 +35788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -31592,8 +35799,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [15711] = 2, - ACTIONS(1793), 7, + [18618] = 2, + ACTIONS(1850), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -31601,9 +35808,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1795), 30, + ACTIONS(1852), 29, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31632,18 +35838,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [15753] = 2, - ACTIONS(1715), 7, - anon_sym_LBRACE, + [18659] = 2, + ACTIONS(1980), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1717), 30, + ACTIONS(1982), 30, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31661,6 +35865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -31672,20 +35877,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [15795] = 4, - ACTIONS(1899), 1, - anon_sym_SPACE, - STATE(486), 1, - aux_sym_strong_begin_repeat1, - ACTIONS(1902), 7, + [18700] = 4, + ACTIONS(2031), 1, + anon_sym_LBRACE2, + STATE(608), 1, + sym_comment, + ACTIONS(1930), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1897), 28, + ACTIONS(1928), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -31713,21 +35916,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [15841] = 4, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(79), 1, - anon_sym_RBRACK2, - ACTIONS(1609), 6, + [18745] = 2, + ACTIONS(2036), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1604), 29, + ACTIONS(2034), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31756,16 +35957,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [15887] = 2, - ACTIONS(1769), 7, - anon_sym_LBRACE, + [18786] = 2, + ACTIONS(1980), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1771), 30, + ACTIONS(1982), 30, sym__verbatim_begin, ts_builtin_sym_end, anon_sym_LBRACE_, @@ -31796,18 +35996,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [15929] = 2, - ACTIONS(1797), 7, - anon_sym_LBRACE, + [18827] = 2, + ACTIONS(1976), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1799), 30, + ACTIONS(1978), 30, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31818,6 +36016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -31836,19 +36035,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [15971] = 4, - ACTIONS(1904), 1, - aux_sym__text_token1, - STATE(490), 1, - aux_sym__text, - ACTIONS(1660), 6, - anon_sym_LBRACE, + [18868] = 2, + ACTIONS(2036), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - ACTIONS(1662), 29, + aux_sym__text_token1, + ACTIONS(2034), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -31861,6 +36056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -31878,19 +36074,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [16017] = 2, - ACTIONS(1797), 7, + [18909] = 2, + ACTIONS(2036), 8, + anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1799), 29, + ACTIONS(2034), 28, sym__verbatim_begin, anon_sym_LBRACE_, - anon_sym__, + aux_sym_emphasis_end_token1, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -31904,7 +36101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -31915,21 +36112,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [16058] = 2, - ACTIONS(1777), 7, - anon_sym_LBRACE, + [18950] = 2, + ACTIONS(1980), 8, + anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1779), 29, + ACTIONS(1982), 28, sym__verbatim_begin, anon_sym_LBRACE_, - anon_sym__, + aux_sym_emphasis_end_token1, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -31954,18 +36151,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [16099] = 2, - ACTIONS(1789), 7, - anon_sym_LBRACE, + [18991] = 2, + ACTIONS(1980), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1791), 29, + ACTIONS(1982), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -31978,6 +36173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -31995,15 +36191,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [16140] = 2, - ACTIONS(1909), 6, + [19032] = 2, + ACTIONS(1976), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1907), 30, + ACTIONS(1978), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32015,8 +36211,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -32034,15 +36230,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [16181] = 2, - ACTIONS(1797), 6, + [19073] = 4, + ACTIONS(2038), 1, + anon_sym_LBRACE2, + STATE(503), 1, + sym_comment, + ACTIONS(1930), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1799), 30, + ACTIONS(1928), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32054,7 +36253,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -32073,16 +36271,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [16222] = 2, - ACTIONS(1785), 7, - anon_sym_LBRACE, + [19118] = 2, + ACTIONS(1980), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1787), 29, + ACTIONS(1982), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32094,6 +36291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -32112,16 +36310,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [16263] = 2, - ACTIONS(1801), 7, - anon_sym_LBRACE, + [19159] = 2, + ACTIONS(2036), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1803), 29, + ACTIONS(2034), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32141,6 +36338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -32151,16 +36349,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [16304] = 2, - ACTIONS(1805), 7, - anon_sym_LBRACE, + [19200] = 2, + ACTIONS(1980), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1807), 29, + ACTIONS(1982), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32175,7 +36373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -32190,8 +36388,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [16345] = 2, - ACTIONS(1809), 7, + [19241] = 2, + ACTIONS(1976), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -32199,7 +36397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1811), 29, + ACTIONS(1978), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32229,16 +36427,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [16386] = 2, - ACTIONS(1711), 7, - anon_sym_LBRACE, + [19282] = 2, + ACTIONS(2036), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1713), 29, + ACTIONS(2034), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32250,6 +36447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -32268,8 +36466,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [16427] = 2, - ACTIONS(1813), 7, + [19323] = 2, + ACTIONS(1980), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -32277,7 +36475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1815), 29, + ACTIONS(1982), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32307,17 +36505,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [16468] = 2, - ACTIONS(1817), 7, - anon_sym_LBRACE, + [19364] = 2, + ACTIONS(1976), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1819), 29, + ACTIONS(1978), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32346,19 +36544,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [16509] = 2, - ACTIONS(1821), 7, - anon_sym_LBRACE, + [19405] = 2, + ACTIONS(1976), 8, + anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1823), 29, + ACTIONS(1978), 28, sym__verbatim_begin, anon_sym_LBRACE_, - anon_sym__, + aux_sym_emphasis_end_token1, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -32383,21 +36582,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [16550] = 2, - ACTIONS(1825), 7, - anon_sym_LBRACE, + [19446] = 4, + ACTIONS(2041), 1, + anon_sym__, + ACTIONS(2044), 1, + aux_sym_emphasis_end_token1, + ACTIONS(1930), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1827), 29, + ACTIONS(1928), 27, sym__verbatim_begin, anon_sym_LBRACE_, - anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -32422,18 +36623,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [16591] = 2, - ACTIONS(1829), 7, - anon_sym_LBRACE, + [19491] = 2, + ACTIONS(1976), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1831), 29, + ACTIONS(1978), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32444,6 +36643,7 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -32463,16 +36663,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [16632] = 2, - ACTIONS(1833), 7, - anon_sym_LBRACE, + [19532] = 2, + ACTIONS(1980), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1835), 29, + ACTIONS(1982), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32483,6 +36682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -32502,16 +36702,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [16673] = 2, - ACTIONS(1781), 7, - anon_sym_LBRACE, + [19573] = 2, + ACTIONS(2036), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1783), 29, + ACTIONS(2034), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32528,7 +36728,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -32541,16 +36741,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [16714] = 2, - ACTIONS(1837), 7, - anon_sym_LBRACE, + [19614] = 2, + ACTIONS(1976), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1839), 29, + ACTIONS(1978), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32565,7 +36765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -32580,16 +36780,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [16755] = 2, - ACTIONS(1719), 7, - anon_sym_LBRACE, + [19655] = 2, + ACTIONS(1976), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1721), 29, + ACTIONS(1978), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32606,7 +36806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -32619,16 +36819,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [16796] = 2, - ACTIONS(1723), 7, - anon_sym_LBRACE, + [19696] = 2, + ACTIONS(2036), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1725), 29, + ACTIONS(2034), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32639,6 +36838,7 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -32658,16 +36858,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [16837] = 2, - ACTIONS(1727), 7, - anon_sym_LBRACE, + [19737] = 2, + ACTIONS(2036), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1729), 29, + ACTIONS(2034), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32686,6 +36885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -32697,16 +36897,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [16878] = 2, - ACTIONS(1769), 7, - anon_sym_LBRACE, + [19778] = 2, + ACTIONS(1976), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1771), 29, + ACTIONS(1978), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32725,6 +36924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -32736,16 +36936,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [16919] = 2, - ACTIONS(1735), 7, + [19819] = 3, + ACTIONS(49), 1, anon_sym_LBRACE, + ACTIONS(1697), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1737), 29, + ACTIONS(1692), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32775,21 +36976,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [16960] = 2, - ACTIONS(1739), 7, - anon_sym_LBRACE, + [19862] = 2, + ACTIONS(1976), 8, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1741), 29, + ACTIONS(1978), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -32812,23 +37014,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [17001] = 2, - ACTIONS(1797), 7, - anon_sym_LBRACE, + [19903] = 2, + ACTIONS(1980), 8, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1799), 29, + ACTIONS(1982), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -32851,17 +37053,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [17042] = 2, - ACTIONS(1769), 6, + [19944] = 2, + ACTIONS(1980), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1771), 30, + ACTIONS(1982), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32873,13 +37075,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -32892,21 +37093,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [17083] = 2, - ACTIONS(1797), 6, + [19985] = 2, + ACTIONS(2036), 8, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1799), 30, + ACTIONS(2034), 28, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -32929,10 +37131,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [17124] = 2, - ACTIONS(1773), 7, + [20026] = 2, + ACTIONS(1913), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -32940,7 +37141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1775), 29, + ACTIONS(1915), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32970,15 +37171,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [17165] = 2, - ACTIONS(1909), 6, + [20067] = 2, + ACTIONS(1909), 7, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1907), 30, + ACTIONS(1911), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32991,7 +37193,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -33009,8 +37210,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [17206] = 2, - ACTIONS(1765), 7, + [20108] = 2, + ACTIONS(1905), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -33018,7 +37219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1767), 29, + ACTIONS(1907), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -33048,19 +37249,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [17247] = 2, - ACTIONS(1761), 7, - anon_sym_LBRACE, + [20149] = 4, + ACTIONS(2046), 1, + anon_sym__, + ACTIONS(2049), 1, + aux_sym_emphasis_end_token1, + ACTIONS(1930), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1763), 29, + ACTIONS(1928), 27, sym__verbatim_begin, anon_sym_LBRACE_, - anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -33085,17 +37289,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [17288] = 2, - ACTIONS(1797), 6, + [20194] = 2, + ACTIONS(1901), 7, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1799), 30, + ACTIONS(1903), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -33108,7 +37312,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -33126,15 +37329,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [17329] = 2, - ACTIONS(1769), 6, + [20235] = 2, + ACTIONS(2036), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1771), 30, + ACTIONS(2034), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -33147,10 +37351,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -33165,16 +37368,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [17370] = 2, - ACTIONS(1769), 6, + [20276] = 3, + ACTIONS(2051), 1, + sym__verbatim_begin, + ACTIONS(49), 7, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1771), 30, - sym__verbatim_begin, + ACTIONS(84), 28, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33184,7 +37389,6 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -33204,18 +37408,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [17411] = 4, - ACTIONS(1911), 1, - anon_sym_LBRACE2, - STATE(518), 1, - sym_comment, - ACTIONS(1756), 5, + [20319] = 2, + ACTIONS(1920), 7, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1754), 29, + ACTIONS(1922), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -33245,15 +37447,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [17456] = 2, - ACTIONS(1797), 6, + [20360] = 2, + ACTIONS(1924), 7, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1799), 30, + ACTIONS(1926), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -33264,7 +37467,6 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -33284,8 +37486,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [17497] = 2, - ACTIONS(1750), 7, + [20401] = 2, + ACTIONS(1897), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -33293,7 +37495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1752), 29, + ACTIONS(1899), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -33323,8 +37525,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [17538] = 2, - ACTIONS(1746), 7, + [20442] = 2, + ACTIONS(1935), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -33332,7 +37534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1748), 29, + ACTIONS(1937), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -33362,10 +37564,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [17579] = 3, - ACTIONS(1914), 1, - sym__verbatim_begin, - ACTIONS(47), 7, + [20483] = 2, + ACTIONS(1939), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -33373,7 +37573,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(79), 28, + ACTIONS(1941), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33402,16 +37603,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [17622] = 2, - ACTIONS(1909), 7, + [20524] = 2, + ACTIONS(1893), 7, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1907), 29, + ACTIONS(1895), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -33426,7 +37627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -33441,22 +37642,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [17663] = 2, - ACTIONS(1909), 8, - anon_sym_STAR, + [20565] = 2, + ACTIONS(1943), 7, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1907), 28, + ACTIONS(1945), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -33479,17 +37679,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [17704] = 2, - ACTIONS(1797), 7, + [20606] = 2, + ACTIONS(1947), 7, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1799), 29, + ACTIONS(1949), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -33504,7 +37705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -33519,17 +37720,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [17745] = 3, - ACTIONS(47), 1, + [20647] = 2, + ACTIONS(1951), 7, anon_sym_LBRACE, - ACTIONS(1609), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1604), 29, + ACTIONS(1953), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -33559,22 +37759,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [17788] = 2, - ACTIONS(1769), 8, - anon_sym_STAR, + [20688] = 2, + ACTIONS(1826), 7, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1771), 28, + ACTIONS(1828), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -33597,16 +37796,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [17829] = 2, - ACTIONS(1909), 6, + [20729] = 2, + ACTIONS(1834), 7, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1907), 30, + ACTIONS(1836), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -33626,7 +37827,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -33637,16 +37837,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [17870] = 2, - ACTIONS(1769), 7, + [20770] = 2, + ACTIONS(1838), 7, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1771), 29, + ACTIONS(1840), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -33661,7 +37861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -33676,22 +37876,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [17911] = 2, - ACTIONS(1797), 8, - anon_sym_STAR, + [20811] = 2, + ACTIONS(1842), 7, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1799), 28, + ACTIONS(1844), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -33714,16 +37913,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [17952] = 2, - ACTIONS(1909), 6, + [20852] = 2, + ACTIONS(1889), 7, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1907), 30, + ACTIONS(1891), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -33734,7 +37935,6 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -33754,16 +37954,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [17993] = 2, - ACTIONS(1909), 7, + [20893] = 2, + ACTIONS(1976), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1907), 29, + ACTIONS(1978), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -33780,9 +37979,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -33793,8 +37993,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [18034] = 2, - ACTIONS(1793), 7, + [20934] = 2, + ACTIONS(1846), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -33802,7 +38002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1795), 29, + ACTIONS(1848), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -33832,16 +38032,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [18075] = 2, - ACTIONS(1769), 7, + [20975] = 2, + ACTIONS(1980), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1771), 29, + ACTIONS(1982), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -33858,9 +38057,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -33871,8 +38071,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [18116] = 2, - ACTIONS(1731), 7, + [21016] = 2, + ACTIONS(1882), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -33880,7 +38080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1733), 29, + ACTIONS(1884), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -33910,8 +38110,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [18157] = 2, - ACTIONS(1715), 7, + [21057] = 2, + ACTIONS(1854), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -33919,7 +38119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1717), 29, + ACTIONS(1856), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -33949,15 +38149,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [18198] = 2, - ACTIONS(1769), 6, + [21098] = 2, + ACTIONS(1858), 7, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1771), 30, + ACTIONS(1860), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -33977,7 +38178,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -33988,15 +38188,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [18239] = 2, - ACTIONS(1797), 6, + [21139] = 2, + ACTIONS(1862), 7, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1799), 30, + ACTIONS(1864), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -34016,7 +38217,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -34027,17 +38227,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [18280] = 2, - ACTIONS(1909), 6, + [21180] = 2, + ACTIONS(1866), 7, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1907), 30, + ACTIONS(1868), 29, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -34066,15 +38266,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [18321] = 2, - ACTIONS(1909), 6, + [21221] = 2, + ACTIONS(1870), 7, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1907), 30, + ACTIONS(1872), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -34093,7 +38294,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -34105,15 +38305,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [18362] = 2, - ACTIONS(1797), 6, + [21262] = 2, + ACTIONS(1874), 7, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1799), 30, + ACTIONS(1876), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -34132,7 +38333,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -34144,15 +38344,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [18403] = 2, - ACTIONS(1769), 6, + [21303] = 2, + ACTIONS(1878), 7, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1771), 30, + ACTIONS(1880), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -34171,7 +38372,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -34183,17 +38383,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [18444] = 2, - ACTIONS(1769), 6, + [21344] = 2, + ACTIONS(1830), 7, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1771), 30, + ACTIONS(1832), 29, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -34222,15 +38422,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [18485] = 2, - ACTIONS(1797), 6, + [21385] = 2, + ACTIONS(2036), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1799), 29, + ACTIONS(2034), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -34260,15 +38460,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [18525] = 2, - ACTIONS(1909), 6, + [21425] = 2, + ACTIONS(1976), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1907), 29, + ACTIONS(1978), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -34298,15 +38498,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [18565] = 2, - ACTIONS(1769), 6, + [21465] = 2, + ACTIONS(1980), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1771), 29, + ACTIONS(1982), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -34336,910 +38536,998 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [18605] = 9, - ACTIONS(1917), 1, + [21505] = 9, + ACTIONS(2054), 1, anon_sym_RBRACE, - ACTIONS(1919), 1, + ACTIONS(2056), 1, sym__id, - ACTIONS(1921), 1, + ACTIONS(2058), 1, anon_sym_PERCENT, - ACTIONS(1925), 1, + ACTIONS(2062), 1, anon_sym_DOT, - STATE(557), 1, + STATE(637), 1, aux_sym_inline_attribute_repeat1, - STATE(599), 1, + STATE(677), 1, sym__comment_with_newline, - STATE(766), 1, + STATE(1006), 1, sym_key, - STATE(597), 2, + STATE(678), 2, sym_class, sym_key_value, - ACTIONS(1923), 3, + ACTIONS(2060), 3, sym__whitespace1, sym__newline, sym_identifier, - [18636] = 9, - ACTIONS(1919), 1, + [21536] = 9, + ACTIONS(2056), 1, sym__id, - ACTIONS(1921), 1, + ACTIONS(2058), 1, anon_sym_PERCENT, - ACTIONS(1925), 1, + ACTIONS(2062), 1, anon_sym_DOT, - ACTIONS(1927), 1, + ACTIONS(2064), 1, anon_sym_RBRACE, - STATE(557), 1, + STATE(637), 1, aux_sym_inline_attribute_repeat1, - STATE(599), 1, + STATE(677), 1, sym__comment_with_newline, - STATE(766), 1, + STATE(1006), 1, sym_key, - STATE(597), 2, + STATE(678), 2, sym_class, sym_key_value, - ACTIONS(1923), 3, + ACTIONS(2060), 3, sym__whitespace1, sym__newline, sym_identifier, - [18667] = 9, - ACTIONS(1919), 1, + [21567] = 9, + ACTIONS(2056), 1, sym__id, - ACTIONS(1921), 1, + ACTIONS(2058), 1, anon_sym_PERCENT, - ACTIONS(1925), 1, + ACTIONS(2062), 1, anon_sym_DOT, - ACTIONS(1929), 1, + ACTIONS(2066), 1, anon_sym_RBRACE, - STATE(557), 1, + STATE(637), 1, aux_sym_inline_attribute_repeat1, - STATE(599), 1, + STATE(677), 1, sym__comment_with_newline, - STATE(766), 1, + STATE(1006), 1, sym_key, - STATE(597), 2, + STATE(678), 2, sym_class, sym_key_value, - ACTIONS(1923), 3, + ACTIONS(2060), 3, sym__whitespace1, sym__newline, sym_identifier, - [18698] = 9, - ACTIONS(1931), 1, + [21598] = 9, + ACTIONS(2056), 1, + sym__id, + ACTIONS(2058), 1, + anon_sym_PERCENT, + ACTIONS(2062), 1, + anon_sym_DOT, + ACTIONS(2068), 1, anon_sym_RBRACE, - ACTIONS(1933), 1, + STATE(637), 1, + aux_sym_inline_attribute_repeat1, + STATE(677), 1, + sym__comment_with_newline, + STATE(1006), 1, + sym_key, + STATE(678), 2, + sym_class, + sym_key_value, + ACTIONS(2060), 3, + sym__whitespace1, + sym__newline, + sym_identifier, + [21629] = 9, + ACTIONS(2056), 1, sym__id, - ACTIONS(1936), 1, + ACTIONS(2058), 1, anon_sym_PERCENT, - ACTIONS(1942), 1, + ACTIONS(2062), 1, anon_sym_DOT, - STATE(557), 1, + ACTIONS(2070), 1, + anon_sym_RBRACE, + STATE(637), 1, aux_sym_inline_attribute_repeat1, - STATE(599), 1, + STATE(677), 1, sym__comment_with_newline, - STATE(766), 1, + STATE(1006), 1, sym_key, - STATE(597), 2, + STATE(678), 2, sym_class, sym_key_value, - ACTIONS(1939), 3, + ACTIONS(2060), 3, sym__whitespace1, sym__newline, sym_identifier, - [18729] = 9, - ACTIONS(1919), 1, + [21660] = 9, + ACTIONS(2056), 1, sym__id, - ACTIONS(1921), 1, + ACTIONS(2058), 1, anon_sym_PERCENT, - ACTIONS(1925), 1, + ACTIONS(2062), 1, anon_sym_DOT, - ACTIONS(1945), 1, + ACTIONS(2072), 1, + anon_sym_RBRACE, + STATE(641), 1, + aux_sym_inline_attribute_repeat1, + STATE(677), 1, + sym__comment_with_newline, + STATE(1006), 1, + sym_key, + STATE(678), 2, + sym_class, + sym_key_value, + ACTIONS(2060), 3, + sym__whitespace1, + sym__newline, + sym_identifier, + [21691] = 9, + ACTIONS(2074), 1, anon_sym_RBRACE, - STATE(556), 1, + ACTIONS(2076), 1, + sym__id, + ACTIONS(2079), 1, + anon_sym_PERCENT, + ACTIONS(2085), 1, + anon_sym_DOT, + STATE(637), 1, aux_sym_inline_attribute_repeat1, - STATE(599), 1, + STATE(677), 1, sym__comment_with_newline, - STATE(766), 1, + STATE(1006), 1, sym_key, - STATE(597), 2, + STATE(678), 2, sym_class, sym_key_value, - ACTIONS(1923), 3, + ACTIONS(2082), 3, sym__whitespace1, sym__newline, sym_identifier, - [18760] = 9, - ACTIONS(1919), 1, + [21722] = 9, + ACTIONS(2056), 1, sym__id, - ACTIONS(1921), 1, + ACTIONS(2058), 1, anon_sym_PERCENT, - ACTIONS(1925), 1, + ACTIONS(2062), 1, anon_sym_DOT, - ACTIONS(1947), 1, + ACTIONS(2088), 1, anon_sym_RBRACE, - STATE(557), 1, + STATE(633), 1, aux_sym_inline_attribute_repeat1, - STATE(599), 1, + STATE(677), 1, sym__comment_with_newline, - STATE(766), 1, + STATE(1006), 1, sym_key, - STATE(597), 2, + STATE(678), 2, sym_class, sym_key_value, - ACTIONS(1923), 3, + ACTIONS(2060), 3, sym__whitespace1, sym__newline, sym_identifier, - [18791] = 9, - ACTIONS(1919), 1, + [21753] = 9, + ACTIONS(2056), 1, sym__id, - ACTIONS(1921), 1, + ACTIONS(2058), 1, anon_sym_PERCENT, - ACTIONS(1925), 1, + ACTIONS(2062), 1, anon_sym_DOT, - ACTIONS(1949), 1, + ACTIONS(2090), 1, anon_sym_RBRACE, - STATE(557), 1, + STATE(640), 1, aux_sym_inline_attribute_repeat1, - STATE(599), 1, + STATE(677), 1, sym__comment_with_newline, - STATE(766), 1, + STATE(1006), 1, sym_key, - STATE(597), 2, + STATE(678), 2, sym_class, sym_key_value, - ACTIONS(1923), 3, + ACTIONS(2060), 3, sym__whitespace1, sym__newline, sym_identifier, - [18822] = 9, - ACTIONS(1919), 1, + [21784] = 9, + ACTIONS(2056), 1, sym__id, - ACTIONS(1921), 1, + ACTIONS(2058), 1, anon_sym_PERCENT, - ACTIONS(1925), 1, + ACTIONS(2062), 1, anon_sym_DOT, - ACTIONS(1951), 1, + ACTIONS(2092), 1, anon_sym_RBRACE, - STATE(559), 1, + STATE(637), 1, aux_sym_inline_attribute_repeat1, - STATE(599), 1, + STATE(677), 1, sym__comment_with_newline, - STATE(766), 1, + STATE(1006), 1, sym_key, - STATE(597), 2, + STATE(678), 2, sym_class, sym_key_value, - ACTIONS(1923), 3, + ACTIONS(2060), 3, sym__whitespace1, sym__newline, sym_identifier, - [18853] = 9, - ACTIONS(1919), 1, + [21815] = 9, + ACTIONS(2056), 1, sym__id, - ACTIONS(1921), 1, + ACTIONS(2058), 1, anon_sym_PERCENT, - ACTIONS(1925), 1, + ACTIONS(2062), 1, anon_sym_DOT, - ACTIONS(1953), 1, + ACTIONS(2094), 1, anon_sym_RBRACE, - STATE(557), 1, + STATE(637), 1, aux_sym_inline_attribute_repeat1, - STATE(599), 1, + STATE(677), 1, sym__comment_with_newline, - STATE(766), 1, + STATE(1006), 1, sym_key, - STATE(597), 2, + STATE(678), 2, sym_class, sym_key_value, - ACTIONS(1923), 3, + ACTIONS(2060), 3, sym__whitespace1, sym__newline, sym_identifier, - [18884] = 9, - ACTIONS(1919), 1, + [21846] = 9, + ACTIONS(2056), 1, sym__id, - ACTIONS(1921), 1, + ACTIONS(2058), 1, anon_sym_PERCENT, - ACTIONS(1925), 1, + ACTIONS(2062), 1, anon_sym_DOT, - ACTIONS(1955), 1, + ACTIONS(2096), 1, anon_sym_RBRACE, - STATE(576), 1, + STATE(671), 1, aux_sym_inline_attribute_repeat1, - STATE(599), 1, + STATE(677), 1, sym__comment_with_newline, - STATE(766), 1, + STATE(1006), 1, sym_key, - STATE(597), 2, + STATE(678), 2, sym_class, sym_key_value, - ACTIONS(1923), 3, + ACTIONS(2060), 3, sym__whitespace1, sym__newline, sym_identifier, - [18915] = 9, - ACTIONS(1919), 1, + [21877] = 9, + ACTIONS(2056), 1, sym__id, - ACTIONS(1921), 1, + ACTIONS(2058), 1, anon_sym_PERCENT, - ACTIONS(1925), 1, + ACTIONS(2062), 1, anon_sym_DOT, - ACTIONS(1957), 1, + ACTIONS(2098), 1, anon_sym_RBRACE, - STATE(573), 1, + STATE(647), 1, aux_sym_inline_attribute_repeat1, - STATE(599), 1, + STATE(677), 1, sym__comment_with_newline, - STATE(766), 1, + STATE(1006), 1, sym_key, - STATE(597), 2, + STATE(678), 2, sym_class, sym_key_value, - ACTIONS(1923), 3, + ACTIONS(2060), 3, sym__whitespace1, sym__newline, sym_identifier, - [18946] = 9, - ACTIONS(1919), 1, + [21908] = 9, + ACTIONS(2056), 1, sym__id, - ACTIONS(1921), 1, + ACTIONS(2058), 1, anon_sym_PERCENT, - ACTIONS(1925), 1, + ACTIONS(2062), 1, anon_sym_DOT, - ACTIONS(1959), 1, + ACTIONS(2100), 1, anon_sym_RBRACE, - STATE(555), 1, + STATE(648), 1, aux_sym_inline_attribute_repeat1, - STATE(599), 1, + STATE(677), 1, sym__comment_with_newline, - STATE(766), 1, + STATE(1006), 1, sym_key, - STATE(597), 2, + STATE(678), 2, sym_class, sym_key_value, - ACTIONS(1923), 3, + ACTIONS(2060), 3, sym__whitespace1, sym__newline, sym_identifier, - [18977] = 9, - ACTIONS(1919), 1, + [21939] = 9, + ACTIONS(2056), 1, sym__id, - ACTIONS(1921), 1, + ACTIONS(2058), 1, anon_sym_PERCENT, - ACTIONS(1925), 1, + ACTIONS(2062), 1, anon_sym_DOT, - ACTIONS(1961), 1, + ACTIONS(2102), 1, anon_sym_RBRACE, - STATE(580), 1, + STATE(656), 1, aux_sym_inline_attribute_repeat1, - STATE(599), 1, + STATE(677), 1, sym__comment_with_newline, - STATE(766), 1, + STATE(1006), 1, sym_key, - STATE(597), 2, + STATE(678), 2, sym_class, sym_key_value, - ACTIONS(1923), 3, + ACTIONS(2060), 3, sym__whitespace1, sym__newline, sym_identifier, - [19008] = 9, - ACTIONS(1919), 1, + [21970] = 9, + ACTIONS(2056), 1, sym__id, - ACTIONS(1921), 1, + ACTIONS(2058), 1, anon_sym_PERCENT, - ACTIONS(1925), 1, + ACTIONS(2062), 1, anon_sym_DOT, - ACTIONS(1963), 1, + ACTIONS(2104), 1, anon_sym_RBRACE, - STATE(568), 1, + STATE(634), 1, aux_sym_inline_attribute_repeat1, - STATE(599), 1, + STATE(677), 1, sym__comment_with_newline, - STATE(766), 1, + STATE(1006), 1, sym_key, - STATE(597), 2, + STATE(678), 2, sym_class, sym_key_value, - ACTIONS(1923), 3, + ACTIONS(2060), 3, sym__whitespace1, sym__newline, sym_identifier, - [19039] = 9, - ACTIONS(1919), 1, + [22001] = 9, + ACTIONS(2056), 1, sym__id, - ACTIONS(1921), 1, + ACTIONS(2058), 1, anon_sym_PERCENT, - ACTIONS(1925), 1, + ACTIONS(2062), 1, anon_sym_DOT, - ACTIONS(1965), 1, + ACTIONS(2106), 1, anon_sym_RBRACE, - STATE(557), 1, + STATE(637), 1, aux_sym_inline_attribute_repeat1, - STATE(599), 1, + STATE(677), 1, sym__comment_with_newline, - STATE(766), 1, + STATE(1006), 1, sym_key, - STATE(597), 2, + STATE(678), 2, sym_class, sym_key_value, - ACTIONS(1923), 3, + ACTIONS(2060), 3, sym__whitespace1, sym__newline, sym_identifier, - [19070] = 9, - ACTIONS(1919), 1, + [22032] = 9, + ACTIONS(2056), 1, sym__id, - ACTIONS(1921), 1, + ACTIONS(2058), 1, anon_sym_PERCENT, - ACTIONS(1925), 1, + ACTIONS(2062), 1, anon_sym_DOT, - ACTIONS(1967), 1, + ACTIONS(2108), 1, anon_sym_RBRACE, - STATE(582), 1, + STATE(637), 1, aux_sym_inline_attribute_repeat1, - STATE(599), 1, + STATE(677), 1, sym__comment_with_newline, - STATE(766), 1, + STATE(1006), 1, sym_key, - STATE(597), 2, + STATE(678), 2, sym_class, sym_key_value, - ACTIONS(1923), 3, + ACTIONS(2060), 3, sym__whitespace1, sym__newline, sym_identifier, - [19101] = 9, - ACTIONS(1919), 1, + [22063] = 9, + ACTIONS(2056), 1, sym__id, - ACTIONS(1921), 1, + ACTIONS(2058), 1, anon_sym_PERCENT, - ACTIONS(1925), 1, + ACTIONS(2062), 1, anon_sym_DOT, - ACTIONS(1969), 1, + ACTIONS(2110), 1, anon_sym_RBRACE, - STATE(557), 1, + STATE(637), 1, aux_sym_inline_attribute_repeat1, - STATE(599), 1, + STATE(677), 1, sym__comment_with_newline, - STATE(766), 1, + STATE(1006), 1, sym_key, - STATE(597), 2, + STATE(678), 2, sym_class, sym_key_value, - ACTIONS(1923), 3, + ACTIONS(2060), 3, sym__whitespace1, sym__newline, sym_identifier, - [19132] = 9, - ACTIONS(1919), 1, + [22094] = 9, + ACTIONS(2056), 1, sym__id, - ACTIONS(1921), 1, + ACTIONS(2058), 1, anon_sym_PERCENT, - ACTIONS(1925), 1, + ACTIONS(2062), 1, anon_sym_DOT, - ACTIONS(1971), 1, + ACTIONS(2112), 1, anon_sym_RBRACE, - STATE(570), 1, + STATE(649), 1, aux_sym_inline_attribute_repeat1, - STATE(599), 1, + STATE(677), 1, sym__comment_with_newline, - STATE(766), 1, + STATE(1006), 1, sym_key, - STATE(597), 2, + STATE(678), 2, sym_class, sym_key_value, - ACTIONS(1923), 3, + ACTIONS(2060), 3, sym__whitespace1, sym__newline, sym_identifier, - [19163] = 9, - ACTIONS(1919), 1, + [22125] = 9, + ACTIONS(2056), 1, sym__id, - ACTIONS(1921), 1, + ACTIONS(2058), 1, anon_sym_PERCENT, - ACTIONS(1925), 1, + ACTIONS(2062), 1, anon_sym_DOT, - ACTIONS(1973), 1, + ACTIONS(2114), 1, anon_sym_RBRACE, - STATE(579), 1, + STATE(652), 1, aux_sym_inline_attribute_repeat1, - STATE(599), 1, + STATE(677), 1, sym__comment_with_newline, - STATE(766), 1, + STATE(1006), 1, sym_key, - STATE(597), 2, + STATE(678), 2, sym_class, sym_key_value, - ACTIONS(1923), 3, + ACTIONS(2060), 3, sym__whitespace1, sym__newline, sym_identifier, - [19194] = 9, - ACTIONS(1919), 1, + [22156] = 9, + ACTIONS(2056), 1, sym__id, - ACTIONS(1921), 1, + ACTIONS(2058), 1, anon_sym_PERCENT, - ACTIONS(1925), 1, + ACTIONS(2062), 1, anon_sym_DOT, - ACTIONS(1975), 1, + ACTIONS(2116), 1, anon_sym_RBRACE, - STATE(557), 1, + STATE(637), 1, aux_sym_inline_attribute_repeat1, - STATE(599), 1, + STATE(677), 1, sym__comment_with_newline, - STATE(766), 1, + STATE(1006), 1, sym_key, - STATE(597), 2, + STATE(678), 2, sym_class, sym_key_value, - ACTIONS(1923), 3, + ACTIONS(2060), 3, sym__whitespace1, sym__newline, sym_identifier, - [19225] = 9, - ACTIONS(1919), 1, + [22187] = 9, + ACTIONS(2056), 1, sym__id, - ACTIONS(1921), 1, + ACTIONS(2058), 1, anon_sym_PERCENT, - ACTIONS(1925), 1, + ACTIONS(2062), 1, anon_sym_DOT, - ACTIONS(1977), 1, + ACTIONS(2118), 1, anon_sym_RBRACE, - STATE(562), 1, + STATE(632), 1, aux_sym_inline_attribute_repeat1, - STATE(599), 1, + STATE(677), 1, sym__comment_with_newline, - STATE(766), 1, + STATE(1006), 1, sym_key, - STATE(597), 2, + STATE(678), 2, sym_class, sym_key_value, - ACTIONS(1923), 3, + ACTIONS(2060), 3, sym__whitespace1, sym__newline, sym_identifier, - [19256] = 9, - ACTIONS(1919), 1, + [22218] = 9, + ACTIONS(2056), 1, sym__id, - ACTIONS(1921), 1, + ACTIONS(2058), 1, anon_sym_PERCENT, - ACTIONS(1925), 1, + ACTIONS(2062), 1, anon_sym_DOT, - ACTIONS(1979), 1, + ACTIONS(2120), 1, anon_sym_RBRACE, - STATE(581), 1, + STATE(655), 1, aux_sym_inline_attribute_repeat1, - STATE(599), 1, + STATE(677), 1, sym__comment_with_newline, - STATE(766), 1, + STATE(1006), 1, sym_key, - STATE(597), 2, + STATE(678), 2, sym_class, sym_key_value, - ACTIONS(1923), 3, + ACTIONS(2060), 3, sym__whitespace1, sym__newline, sym_identifier, - [19287] = 9, - ACTIONS(1919), 1, + [22249] = 9, + ACTIONS(2056), 1, sym__id, - ACTIONS(1921), 1, + ACTIONS(2058), 1, anon_sym_PERCENT, - ACTIONS(1925), 1, + ACTIONS(2062), 1, anon_sym_DOT, - ACTIONS(1981), 1, + ACTIONS(2122), 1, anon_sym_RBRACE, - STATE(557), 1, + STATE(637), 1, aux_sym_inline_attribute_repeat1, - STATE(599), 1, + STATE(677), 1, sym__comment_with_newline, - STATE(766), 1, + STATE(1006), 1, sym_key, - STATE(597), 2, + STATE(678), 2, sym_class, sym_key_value, - ACTIONS(1923), 3, + ACTIONS(2060), 3, sym__whitespace1, sym__newline, sym_identifier, - [19318] = 9, - ACTIONS(1919), 1, + [22280] = 9, + ACTIONS(2056), 1, sym__id, - ACTIONS(1921), 1, + ACTIONS(2058), 1, anon_sym_PERCENT, - ACTIONS(1925), 1, + ACTIONS(2062), 1, anon_sym_DOT, - ACTIONS(1983), 1, + ACTIONS(2124), 1, anon_sym_RBRACE, - STATE(557), 1, + STATE(637), 1, aux_sym_inline_attribute_repeat1, - STATE(599), 1, + STATE(677), 1, sym__comment_with_newline, - STATE(766), 1, + STATE(1006), 1, sym_key, - STATE(597), 2, + STATE(678), 2, sym_class, sym_key_value, - ACTIONS(1923), 3, + ACTIONS(2060), 3, sym__whitespace1, sym__newline, sym_identifier, - [19349] = 9, - ACTIONS(1919), 1, + [22311] = 9, + ACTIONS(2056), 1, sym__id, - ACTIONS(1921), 1, + ACTIONS(2058), 1, anon_sym_PERCENT, - ACTIONS(1925), 1, + ACTIONS(2062), 1, anon_sym_DOT, - ACTIONS(1985), 1, + ACTIONS(2126), 1, anon_sym_RBRACE, - STATE(577), 1, + STATE(635), 1, aux_sym_inline_attribute_repeat1, - STATE(599), 1, + STATE(677), 1, sym__comment_with_newline, - STATE(766), 1, + STATE(1006), 1, sym_key, - STATE(597), 2, + STATE(678), 2, sym_class, sym_key_value, - ACTIONS(1923), 3, + ACTIONS(2060), 3, sym__whitespace1, sym__newline, sym_identifier, - [19380] = 9, - ACTIONS(1919), 1, + [22342] = 9, + ACTIONS(2056), 1, sym__id, - ACTIONS(1921), 1, + ACTIONS(2058), 1, anon_sym_PERCENT, - ACTIONS(1925), 1, + ACTIONS(2062), 1, anon_sym_DOT, - ACTIONS(1987), 1, + ACTIONS(2128), 1, anon_sym_RBRACE, - STATE(557), 1, + STATE(637), 1, aux_sym_inline_attribute_repeat1, - STATE(599), 1, + STATE(677), 1, sym__comment_with_newline, - STATE(766), 1, + STATE(1006), 1, sym_key, - STATE(597), 2, + STATE(678), 2, sym_class, sym_key_value, - ACTIONS(1923), 3, + ACTIONS(2060), 3, sym__whitespace1, sym__newline, sym_identifier, - [19411] = 9, - ACTIONS(1919), 1, + [22373] = 9, + ACTIONS(2056), 1, sym__id, - ACTIONS(1921), 1, + ACTIONS(2058), 1, anon_sym_PERCENT, - ACTIONS(1925), 1, + ACTIONS(2062), 1, anon_sym_DOT, - ACTIONS(1989), 1, + ACTIONS(2130), 1, anon_sym_RBRACE, - STATE(557), 1, + STATE(637), 1, aux_sym_inline_attribute_repeat1, - STATE(599), 1, + STATE(677), 1, sym__comment_with_newline, - STATE(766), 1, + STATE(1006), 1, sym_key, - STATE(597), 2, + STATE(678), 2, sym_class, sym_key_value, - ACTIONS(1923), 3, + ACTIONS(2060), 3, sym__whitespace1, sym__newline, sym_identifier, - [19442] = 9, - ACTIONS(1919), 1, + [22404] = 9, + ACTIONS(2056), 1, sym__id, - ACTIONS(1921), 1, + ACTIONS(2058), 1, anon_sym_PERCENT, - ACTIONS(1925), 1, + ACTIONS(2062), 1, anon_sym_DOT, - ACTIONS(1991), 1, + ACTIONS(2132), 1, anon_sym_RBRACE, - STATE(557), 1, + STATE(661), 1, aux_sym_inline_attribute_repeat1, - STATE(599), 1, + STATE(677), 1, sym__comment_with_newline, - STATE(766), 1, + STATE(1006), 1, sym_key, - STATE(597), 2, + STATE(678), 2, sym_class, sym_key_value, - ACTIONS(1923), 3, + ACTIONS(2060), 3, sym__whitespace1, sym__newline, sym_identifier, - [19473] = 9, - ACTIONS(1919), 1, + [22435] = 9, + ACTIONS(2056), 1, sym__id, - ACTIONS(1921), 1, + ACTIONS(2058), 1, anon_sym_PERCENT, - ACTIONS(1925), 1, + ACTIONS(2062), 1, anon_sym_DOT, - ACTIONS(1993), 1, + ACTIONS(2134), 1, anon_sym_RBRACE, - STATE(557), 1, + STATE(637), 1, aux_sym_inline_attribute_repeat1, - STATE(599), 1, + STATE(677), 1, sym__comment_with_newline, - STATE(766), 1, + STATE(1006), 1, sym_key, - STATE(597), 2, + STATE(678), 2, sym_class, sym_key_value, - ACTIONS(1923), 3, + ACTIONS(2060), 3, sym__whitespace1, sym__newline, sym_identifier, - [19504] = 9, - ACTIONS(1919), 1, + [22466] = 9, + ACTIONS(2056), 1, sym__id, - ACTIONS(1921), 1, + ACTIONS(2058), 1, anon_sym_PERCENT, - ACTIONS(1925), 1, + ACTIONS(2062), 1, anon_sym_DOT, - ACTIONS(1995), 1, + ACTIONS(2136), 1, anon_sym_RBRACE, - STATE(584), 1, + STATE(664), 1, aux_sym_inline_attribute_repeat1, - STATE(599), 1, + STATE(677), 1, sym__comment_with_newline, - STATE(766), 1, + STATE(1006), 1, sym_key, - STATE(597), 2, + STATE(678), 2, sym_class, sym_key_value, - ACTIONS(1923), 3, + ACTIONS(2060), 3, sym__whitespace1, sym__newline, sym_identifier, - [19535] = 9, - ACTIONS(1919), 1, + [22497] = 9, + ACTIONS(2056), 1, sym__id, - ACTIONS(1921), 1, + ACTIONS(2058), 1, anon_sym_PERCENT, - ACTIONS(1925), 1, + ACTIONS(2062), 1, anon_sym_DOT, - ACTIONS(1997), 1, + ACTIONS(2138), 1, anon_sym_RBRACE, - STATE(557), 1, + STATE(637), 1, aux_sym_inline_attribute_repeat1, - STATE(599), 1, + STATE(677), 1, sym__comment_with_newline, - STATE(766), 1, + STATE(1006), 1, sym_key, - STATE(597), 2, + STATE(678), 2, sym_class, sym_key_value, - ACTIONS(1923), 3, + ACTIONS(2060), 3, sym__whitespace1, sym__newline, sym_identifier, - [19566] = 9, - ACTIONS(1919), 1, + [22528] = 9, + ACTIONS(2056), 1, sym__id, - ACTIONS(1921), 1, + ACTIONS(2058), 1, anon_sym_PERCENT, - ACTIONS(1925), 1, + ACTIONS(2062), 1, anon_sym_DOT, - ACTIONS(1999), 1, + ACTIONS(2140), 1, anon_sym_RBRACE, - STATE(554), 1, + STATE(637), 1, aux_sym_inline_attribute_repeat1, - STATE(599), 1, + STATE(677), 1, sym__comment_with_newline, - STATE(766), 1, + STATE(1006), 1, sym_key, - STATE(597), 2, + STATE(678), 2, sym_class, sym_key_value, - ACTIONS(1923), 3, + ACTIONS(2060), 3, sym__whitespace1, sym__newline, sym_identifier, - [19597] = 9, - ACTIONS(1919), 1, + [22559] = 9, + ACTIONS(2056), 1, sym__id, - ACTIONS(1921), 1, + ACTIONS(2058), 1, anon_sym_PERCENT, - ACTIONS(1925), 1, + ACTIONS(2062), 1, anon_sym_DOT, - ACTIONS(2001), 1, + ACTIONS(2142), 1, anon_sym_RBRACE, - STATE(557), 1, + STATE(674), 1, aux_sym_inline_attribute_repeat1, - STATE(599), 1, + STATE(677), 1, sym__comment_with_newline, - STATE(766), 1, + STATE(1006), 1, sym_key, - STATE(597), 2, + STATE(678), 2, sym_class, sym_key_value, - ACTIONS(1923), 3, + ACTIONS(2060), 3, sym__whitespace1, sym__newline, sym_identifier, - [19628] = 9, - ACTIONS(1919), 1, + [22590] = 9, + ACTIONS(2056), 1, sym__id, - ACTIONS(1921), 1, + ACTIONS(2058), 1, anon_sym_PERCENT, - ACTIONS(1925), 1, + ACTIONS(2062), 1, anon_sym_DOT, - ACTIONS(2003), 1, + ACTIONS(2144), 1, anon_sym_RBRACE, - STATE(586), 1, + STATE(667), 1, aux_sym_inline_attribute_repeat1, - STATE(599), 1, + STATE(677), 1, sym__comment_with_newline, - STATE(766), 1, + STATE(1006), 1, sym_key, - STATE(597), 2, + STATE(678), 2, sym_class, sym_key_value, - ACTIONS(1923), 3, + ACTIONS(2060), 3, sym__whitespace1, sym__newline, sym_identifier, - [19659] = 9, - ACTIONS(1919), 1, + [22621] = 9, + ACTIONS(2056), 1, sym__id, - ACTIONS(1921), 1, + ACTIONS(2058), 1, anon_sym_PERCENT, - ACTIONS(1925), 1, + ACTIONS(2062), 1, anon_sym_DOT, - ACTIONS(2005), 1, + ACTIONS(2146), 1, anon_sym_RBRACE, - STATE(557), 1, + STATE(637), 1, aux_sym_inline_attribute_repeat1, - STATE(599), 1, + STATE(677), 1, sym__comment_with_newline, - STATE(766), 1, + STATE(1006), 1, sym_key, - STATE(597), 2, + STATE(678), 2, sym_class, sym_key_value, - ACTIONS(1923), 3, + ACTIONS(2060), 3, sym__whitespace1, sym__newline, sym_identifier, - [19690] = 9, - ACTIONS(1919), 1, + [22652] = 9, + ACTIONS(2056), 1, sym__id, - ACTIONS(1921), 1, + ACTIONS(2058), 1, anon_sym_PERCENT, - ACTIONS(1925), 1, + ACTIONS(2062), 1, anon_sym_DOT, - ACTIONS(2007), 1, + ACTIONS(2148), 1, anon_sym_RBRACE, - STATE(588), 1, + STATE(658), 1, aux_sym_inline_attribute_repeat1, - STATE(599), 1, + STATE(677), 1, sym__comment_with_newline, - STATE(766), 1, + STATE(1006), 1, sym_key, - STATE(597), 2, + STATE(678), 2, sym_class, sym_key_value, - ACTIONS(1923), 3, + ACTIONS(2060), 3, sym__whitespace1, sym__newline, sym_identifier, - [19721] = 9, - ACTIONS(1919), 1, + [22683] = 9, + ACTIONS(2056), 1, sym__id, - ACTIONS(1921), 1, + ACTIONS(2058), 1, anon_sym_PERCENT, - ACTIONS(1925), 1, + ACTIONS(2062), 1, anon_sym_DOT, - ACTIONS(2009), 1, + ACTIONS(2150), 1, anon_sym_RBRACE, - STATE(560), 1, + STATE(673), 1, aux_sym_inline_attribute_repeat1, - STATE(599), 1, + STATE(677), 1, sym__comment_with_newline, - STATE(766), 1, + STATE(1006), 1, sym_key, - STATE(597), 2, + STATE(678), 2, sym_class, sym_key_value, - ACTIONS(1923), 3, + ACTIONS(2060), 3, sym__whitespace1, sym__newline, sym_identifier, - [19752] = 9, - ACTIONS(1919), 1, + [22714] = 9, + ACTIONS(2056), 1, sym__id, - ACTIONS(1921), 1, + ACTIONS(2058), 1, anon_sym_PERCENT, - ACTIONS(1925), 1, + ACTIONS(2062), 1, anon_sym_DOT, - ACTIONS(2011), 1, + ACTIONS(2152), 1, anon_sym_RBRACE, - STATE(557), 1, + STATE(631), 1, aux_sym_inline_attribute_repeat1, - STATE(599), 1, + STATE(677), 1, sym__comment_with_newline, - STATE(766), 1, + STATE(1006), 1, sym_key, - STATE(597), 2, + STATE(678), 2, sym_class, sym_key_value, - ACTIONS(1923), 3, + ACTIONS(2060), 3, sym__whitespace1, sym__newline, sym_identifier, - [19783] = 9, - ACTIONS(1919), 1, + [22745] = 9, + ACTIONS(2056), 1, sym__id, - ACTIONS(1921), 1, + ACTIONS(2058), 1, anon_sym_PERCENT, - ACTIONS(1925), 1, + ACTIONS(2062), 1, anon_sym_DOT, - ACTIONS(2013), 1, + ACTIONS(2154), 1, anon_sym_RBRACE, - STATE(593), 1, + STATE(637), 1, aux_sym_inline_attribute_repeat1, - STATE(599), 1, + STATE(677), 1, sym__comment_with_newline, - STATE(766), 1, + STATE(1006), 1, sym_key, - STATE(597), 2, + STATE(678), 2, sym_class, sym_key_value, - ACTIONS(1923), 3, + ACTIONS(2060), 3, sym__whitespace1, sym__newline, sym_identifier, - [19814] = 9, - ACTIONS(1919), 1, + [22776] = 9, + ACTIONS(2056), 1, sym__id, - ACTIONS(1921), 1, + ACTIONS(2058), 1, anon_sym_PERCENT, - ACTIONS(1925), 1, + ACTIONS(2062), 1, anon_sym_DOT, - ACTIONS(2015), 1, + ACTIONS(2156), 1, + anon_sym_RBRACE, + STATE(659), 1, + aux_sym_inline_attribute_repeat1, + STATE(677), 1, + sym__comment_with_newline, + STATE(1006), 1, + sym_key, + STATE(678), 2, + sym_class, + sym_key_value, + ACTIONS(2060), 3, + sym__whitespace1, + sym__newline, + sym_identifier, + [22807] = 9, + ACTIONS(2056), 1, + sym__id, + ACTIONS(2058), 1, + anon_sym_PERCENT, + ACTIONS(2062), 1, + anon_sym_DOT, + ACTIONS(2158), 1, + anon_sym_RBRACE, + STATE(637), 1, + aux_sym_inline_attribute_repeat1, + STATE(677), 1, + sym__comment_with_newline, + STATE(1006), 1, + sym_key, + STATE(678), 2, + sym_class, + sym_key_value, + ACTIONS(2060), 3, + sym__whitespace1, + sym__newline, + sym_identifier, + [22838] = 9, + ACTIONS(2056), 1, + sym__id, + ACTIONS(2058), 1, + anon_sym_PERCENT, + ACTIONS(2062), 1, + anon_sym_DOT, + ACTIONS(2160), 1, anon_sym_RBRACE, - STATE(557), 1, + STATE(637), 1, aux_sym_inline_attribute_repeat1, - STATE(599), 1, + STATE(677), 1, sym__comment_with_newline, - STATE(766), 1, + STATE(1006), 1, sym_key, - STATE(597), 2, + STATE(678), 2, sym_class, sym_key_value, - ACTIONS(1923), 3, + ACTIONS(2060), 3, sym__whitespace1, sym__newline, sym_identifier, - [19845] = 9, - ACTIONS(1919), 1, + [22869] = 9, + ACTIONS(2056), 1, sym__id, - ACTIONS(1921), 1, + ACTIONS(2058), 1, anon_sym_PERCENT, - ACTIONS(1925), 1, + ACTIONS(2062), 1, anon_sym_DOT, - ACTIONS(2017), 1, + ACTIONS(2162), 1, anon_sym_RBRACE, - STATE(591), 1, + STATE(663), 1, aux_sym_inline_attribute_repeat1, - STATE(599), 1, + STATE(677), 1, sym__comment_with_newline, - STATE(766), 1, + STATE(1006), 1, sym_key, - STATE(597), 2, + STATE(678), 2, sym_class, sym_key_value, - ACTIONS(1923), 3, + ACTIONS(2060), 3, sym__whitespace1, sym__newline, sym_identifier, - [19876] = 1, - ACTIONS(2019), 7, + [22900] = 1, + ACTIONS(2164), 7, anon_sym_RBRACE, sym__id, anon_sym_PERCENT, @@ -35247,8 +39535,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_DOT, sym_identifier, - [19886] = 1, - ACTIONS(2021), 7, + [22910] = 1, + ACTIONS(2166), 7, anon_sym_RBRACE, sym__id, anon_sym_PERCENT, @@ -35256,8 +39544,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_DOT, sym_identifier, - [19896] = 1, - ACTIONS(2023), 7, + [22920] = 1, + ACTIONS(2168), 7, anon_sym_RBRACE, sym__id, anon_sym_PERCENT, @@ -35265,8 +39553,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_DOT, sym_identifier, - [19906] = 1, - ACTIONS(2025), 7, + [22930] = 1, + ACTIONS(2170), 7, anon_sym_RBRACE, sym__id, anon_sym_PERCENT, @@ -35274,8 +39562,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_DOT, sym_identifier, - [19916] = 1, - ACTIONS(2027), 7, + [22940] = 1, + ACTIONS(2172), 7, anon_sym_RBRACE, sym__id, anon_sym_PERCENT, @@ -35283,8 +39571,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_DOT, sym_identifier, - [19926] = 1, - ACTIONS(2029), 7, + [22950] = 1, + ACTIONS(2174), 7, anon_sym_RBRACE, sym__id, anon_sym_PERCENT, @@ -35292,8 +39580,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_DOT, sym_identifier, - [19936] = 1, - ACTIONS(2031), 7, + [22960] = 1, + ACTIONS(2176), 7, anon_sym_RBRACE, sym__id, anon_sym_PERCENT, @@ -35301,8 +39589,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_DOT, sym_identifier, - [19946] = 1, - ACTIONS(2033), 7, + [22970] = 1, + ACTIONS(2178), 7, anon_sym_RBRACE, sym__id, anon_sym_PERCENT, @@ -35310,8 +39598,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_DOT, sym_identifier, - [19956] = 1, - ACTIONS(2035), 7, + [22980] = 1, + ACTIONS(2180), 7, anon_sym_RBRACE, sym__id, anon_sym_PERCENT, @@ -35319,3246 +39607,3668 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_DOT, sym_identifier, - [19966] = 4, - ACTIONS(2037), 1, - anon_sym_LBRACE, - ACTIONS(2041), 1, - anon_sym_LBRACK, - STATE(224), 1, - sym_inline_attribute, - ACTIONS(2039), 2, - anon_sym_LBRACK_RBRACK, - anon_sym_LPAREN, - [19980] = 5, - ACTIONS(2043), 1, + [22990] = 5, + ACTIONS(2182), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(2045), 1, + ACTIONS(2184), 1, anon_sym_LBRACK, - ACTIONS(2047), 1, + ACTIONS(2186), 1, anon_sym_LPAREN, - STATE(291), 1, + STATE(444), 1, sym__link_label, - STATE(292), 1, + STATE(445), 1, sym_inline_link_destination, - [19996] = 4, - ACTIONS(2041), 1, + [23006] = 4, + ACTIONS(2188), 1, + anon_sym_LBRACE, + ACTIONS(2192), 1, anon_sym_LBRACK, - ACTIONS(2049), 1, + STATE(523), 1, + sym_inline_attribute, + ACTIONS(2190), 2, + anon_sym_LBRACK_RBRACK, + anon_sym_LPAREN, + [23020] = 4, + ACTIONS(2192), 1, + anon_sym_LBRACK, + ACTIONS(2194), 1, anon_sym_LBRACE, - STATE(368), 1, + STATE(235), 1, sym_inline_attribute, - ACTIONS(2039), 2, + ACTIONS(2190), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - [20010] = 5, - ACTIONS(2051), 1, + [23034] = 5, + ACTIONS(2196), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(2053), 1, + ACTIONS(2198), 1, anon_sym_LBRACK, - ACTIONS(2055), 1, + ACTIONS(2200), 1, anon_sym_LPAREN, - STATE(438), 1, + STATE(613), 1, sym__link_label, - STATE(439), 1, + STATE(614), 1, sym_inline_link_destination, - [20026] = 5, - ACTIONS(2057), 1, + [23050] = 5, + ACTIONS(2202), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(2059), 1, + ACTIONS(2204), 1, anon_sym_LBRACK, - ACTIONS(2061), 1, + ACTIONS(2206), 1, anon_sym_LPAREN, - STATE(190), 1, - sym_inline_link_destination, - STATE(391), 1, + STATE(356), 1, sym__link_label, - [20042] = 5, - ACTIONS(2063), 1, + STATE(357), 1, + sym_inline_link_destination, + [23066] = 5, + ACTIONS(2208), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(2065), 1, + ACTIONS(2210), 1, anon_sym_LBRACK, - ACTIONS(2067), 1, + ACTIONS(2212), 1, anon_sym_LPAREN, - STATE(481), 1, - sym__link_label, - STATE(482), 1, + STATE(218), 1, sym_inline_link_destination, - [20058] = 5, - ACTIONS(2059), 1, - anon_sym_LBRACK, - ACTIONS(2061), 1, - anon_sym_LPAREN, - ACTIONS(2069), 1, - anon_sym_LBRACK_RBRACK, - STATE(388), 1, + STATE(438), 1, sym__link_label, - STATE(389), 1, - sym_inline_link_destination, - [20074] = 5, - ACTIONS(2053), 1, + [23082] = 5, + ACTIONS(2210), 1, anon_sym_LBRACK, - ACTIONS(2055), 1, + ACTIONS(2212), 1, anon_sym_LPAREN, - ACTIONS(2071), 1, + ACTIONS(2214), 1, anon_sym_LBRACK_RBRACK, - STATE(441), 1, + STATE(220), 1, sym__link_label, - STATE(442), 1, + STATE(221), 1, sym_inline_link_destination, - [20090] = 5, - ACTIONS(2065), 1, + [23098] = 5, + ACTIONS(2204), 1, anon_sym_LBRACK, - ACTIONS(2067), 1, + ACTIONS(2206), 1, anon_sym_LPAREN, - ACTIONS(2073), 1, + ACTIONS(2216), 1, anon_sym_LBRACK_RBRACK, - STATE(484), 1, + STATE(353), 1, sym__link_label, - STATE(485), 1, + STATE(354), 1, sym_inline_link_destination, - [20106] = 5, - ACTIONS(2075), 1, + [23114] = 5, + ACTIONS(2218), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(2077), 1, + ACTIONS(2220), 1, anon_sym_LBRACK, - ACTIONS(2079), 1, + ACTIONS(2222), 1, anon_sym_LPAREN, - STATE(207), 1, + STATE(252), 1, sym__link_label, - STATE(208), 1, + STATE(253), 1, sym_inline_link_destination, - [20122] = 5, - ACTIONS(2077), 1, + [23130] = 5, + ACTIONS(2220), 1, anon_sym_LBRACK, - ACTIONS(2079), 1, + ACTIONS(2222), 1, anon_sym_LPAREN, - ACTIONS(2081), 1, + ACTIONS(2224), 1, anon_sym_LBRACK_RBRACK, - STATE(210), 1, + STATE(255), 1, sym__link_label, - STATE(211), 1, + STATE(256), 1, sym_inline_link_destination, - [20138] = 4, - ACTIONS(2041), 1, + [23146] = 4, + ACTIONS(2192), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, + ACTIONS(2226), 1, anon_sym_LBRACE, - STATE(358), 1, + STATE(426), 1, sym_inline_attribute, - ACTIONS(2039), 2, + ACTIONS(2190), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - [20152] = 5, - ACTIONS(2085), 1, + [23160] = 5, + ACTIONS(2228), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(2087), 1, + ACTIONS(2230), 1, anon_sym_LBRACK, - ACTIONS(2089), 1, + ACTIONS(2232), 1, anon_sym_LPAREN, - STATE(315), 1, + STATE(277), 1, sym_inline_link_destination, - STATE(317), 1, + STATE(382), 1, sym__link_label, - [20168] = 4, - ACTIONS(2041), 1, - anon_sym_LBRACK, - ACTIONS(2091), 1, - anon_sym_LBRACE, - STATE(458), 1, - sym_inline_attribute, - ACTIONS(2039), 2, - anon_sym_LBRACK_RBRACK, - anon_sym_LPAREN, - [20182] = 3, - ACTIONS(2095), 1, - anon_sym_PERCENT, - STATE(636), 1, - aux_sym__comment_with_newline_repeat1, - ACTIONS(2093), 3, - sym_backslash_escape, - aux_sym__comment_with_newline_token1, - sym__newline, - [20194] = 5, - ACTIONS(2097), 1, + [23176] = 5, + ACTIONS(2234), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(2099), 1, + ACTIONS(2236), 1, anon_sym_LBRACK, - ACTIONS(2101), 1, + ACTIONS(2238), 1, anon_sym_LPAREN, - STATE(496), 1, - sym_inline_link_destination, STATE(507), 1, sym__link_label, - [20210] = 5, - ACTIONS(2099), 1, + STATE(508), 1, + sym_inline_link_destination, + [23192] = 5, + ACTIONS(2240), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(2242), 1, anon_sym_LBRACK, - ACTIONS(2101), 1, + ACTIONS(2244), 1, anon_sym_LPAREN, - ACTIONS(2103), 1, - anon_sym_LBRACK_RBRACK, - STATE(540), 1, + STATE(460), 1, sym__link_label, - STATE(543), 1, + STATE(461), 1, sym_inline_link_destination, - [20226] = 4, - ACTIONS(2041), 1, + [23208] = 4, + ACTIONS(2192), 1, anon_sym_LBRACK, - ACTIONS(2105), 1, + ACTIONS(2246), 1, anon_sym_LBRACE, - STATE(395), 1, + STATE(374), 1, sym_inline_attribute, - ACTIONS(2039), 2, + ACTIONS(2190), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - [20240] = 5, - ACTIONS(2045), 1, + [23222] = 5, + ACTIONS(2248), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(2250), 1, anon_sym_LBRACK, - ACTIONS(2047), 1, + ACTIONS(2252), 1, anon_sym_LPAREN, - ACTIONS(2107), 1, - anon_sym_LBRACK_RBRACK, - STATE(288), 1, + STATE(548), 1, sym__link_label, - STATE(289), 1, + STATE(549), 1, sym_inline_link_destination, - [20256] = 4, - ACTIONS(2041), 1, + [23238] = 4, + ACTIONS(2192), 1, anon_sym_LBRACK, - ACTIONS(2109), 1, + ACTIONS(2254), 1, anon_sym_LBRACE, - STATE(408), 1, + STATE(463), 1, sym_inline_attribute, - ACTIONS(2039), 2, + ACTIONS(2190), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - [20270] = 5, - ACTIONS(2111), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(2113), 1, + [23252] = 5, + ACTIONS(2250), 1, anon_sym_LBRACK, - ACTIONS(2115), 1, + ACTIONS(2252), 1, anon_sym_LPAREN, - STATE(341), 1, + ACTIONS(2256), 1, + anon_sym_LBRACK_RBRACK, + STATE(545), 1, sym__link_label, - STATE(342), 1, + STATE(546), 1, sym_inline_link_destination, - [20286] = 4, - ACTIONS(2041), 1, + [23268] = 4, + ACTIONS(2192), 1, anon_sym_LBRACK, - ACTIONS(2117), 1, + ACTIONS(2258), 1, anon_sym_LBRACE, - STATE(258), 1, + STATE(270), 1, sym_inline_attribute, - ACTIONS(2039), 2, + ACTIONS(2190), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - [20300] = 5, - ACTIONS(2113), 1, + [23282] = 5, + ACTIONS(2198), 1, anon_sym_LBRACK, - ACTIONS(2115), 1, + ACTIONS(2200), 1, anon_sym_LPAREN, - ACTIONS(2119), 1, + ACTIONS(2260), 1, anon_sym_LBRACK_RBRACK, - STATE(338), 1, + STATE(610), 1, sym__link_label, - STATE(339), 1, + STATE(611), 1, sym_inline_link_destination, - [20316] = 4, - ACTIONS(2041), 1, + [23298] = 5, + ACTIONS(2230), 1, + anon_sym_LBRACK, + ACTIONS(2232), 1, + anon_sym_LPAREN, + ACTIONS(2262), 1, + anon_sym_LBRACK_RBRACK, + STATE(358), 1, + sym_inline_link_destination, + STATE(359), 1, + sym__link_label, + [23314] = 4, + ACTIONS(2192), 1, anon_sym_LBRACK, - ACTIONS(2121), 1, + ACTIONS(2264), 1, anon_sym_LBRACE, - STATE(508), 1, + STATE(494), 1, sym_inline_attribute, - ACTIONS(2039), 2, + ACTIONS(2190), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - [20330] = 5, - ACTIONS(2123), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(2125), 1, + [23328] = 5, + ACTIONS(2242), 1, anon_sym_LBRACK, - ACTIONS(2127), 1, + ACTIONS(2244), 1, anon_sym_LPAREN, - STATE(444), 1, - sym_inline_link_destination, - STATE(445), 1, + ACTIONS(2266), 1, + anon_sym_LBRACK_RBRACK, + STATE(457), 1, sym__link_label, - [20346] = 5, - ACTIONS(2125), 1, + STATE(458), 1, + sym_inline_link_destination, + [23344] = 4, + ACTIONS(2192), 1, anon_sym_LBRACK, - ACTIONS(2127), 1, - anon_sym_LPAREN, - ACTIONS(2129), 1, + ACTIONS(2268), 1, + anon_sym_LBRACE, + STATE(329), 1, + sym_inline_attribute, + ACTIONS(2190), 2, anon_sym_LBRACK_RBRACK, - STATE(432), 1, - sym_inline_link_destination, - STATE(435), 1, - sym__link_label, - [20362] = 4, - ACTIONS(2041), 1, + anon_sym_LPAREN, + [23358] = 4, + ACTIONS(2192), 1, anon_sym_LBRACK, - ACTIONS(2131), 1, + ACTIONS(2270), 1, anon_sym_LBRACE, - STATE(308), 1, + STATE(322), 1, sym_inline_attribute, - ACTIONS(2039), 2, + ACTIONS(2190), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - [20376] = 4, - ACTIONS(2041), 1, + [23372] = 4, + ACTIONS(2192), 1, anon_sym_LBRACK, - ACTIONS(2133), 1, + ACTIONS(2272), 1, anon_sym_LBRACE, - STATE(396), 1, + STATE(478), 1, sym_inline_attribute, - ACTIONS(2039), 2, + ACTIONS(2190), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - [20390] = 5, - ACTIONS(2135), 1, + [23386] = 5, + ACTIONS(2274), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(2137), 1, + ACTIONS(2276), 1, anon_sym_LBRACK, - ACTIONS(2139), 1, + ACTIONS(2278), 1, anon_sym_LPAREN, - STATE(241), 1, + STATE(301), 1, sym__link_label, - STATE(242), 1, + STATE(302), 1, sym_inline_link_destination, - [20406] = 5, - ACTIONS(2137), 1, + [23402] = 5, + ACTIONS(2276), 1, anon_sym_LBRACK, - ACTIONS(2139), 1, + ACTIONS(2278), 1, anon_sym_LPAREN, - ACTIONS(2141), 1, + ACTIONS(2280), 1, + anon_sym_LBRACK_RBRACK, + STATE(304), 1, + sym__link_label, + STATE(305), 1, + sym_inline_link_destination, + [23418] = 3, + ACTIONS(2284), 1, + anon_sym_PERCENT, + STATE(717), 1, + aux_sym__comment_with_newline_repeat1, + ACTIONS(2282), 3, + sym_backslash_escape, + aux_sym__comment_with_newline_token1, + sym__newline, + [23430] = 5, + ACTIONS(2286), 1, anon_sym_LBRACK_RBRACK, - STATE(244), 1, + ACTIONS(2288), 1, + anon_sym_LBRACK, + ACTIONS(2290), 1, + anon_sym_LPAREN, + STATE(405), 1, sym__link_label, - STATE(245), 1, + STATE(406), 1, sym_inline_link_destination, - [20422] = 5, - ACTIONS(2087), 1, + [23446] = 5, + ACTIONS(2288), 1, anon_sym_LBRACK, - ACTIONS(2089), 1, + ACTIONS(2290), 1, anon_sym_LPAREN, - ACTIONS(2143), 1, + ACTIONS(2292), 1, anon_sym_LBRACK_RBRACK, - STATE(293), 1, - sym_inline_link_destination, - STATE(294), 1, + STATE(408), 1, sym__link_label, - [20438] = 3, - ACTIONS(2145), 1, + STATE(409), 1, + sym_inline_link_destination, + [23462] = 3, + ACTIONS(2297), 1, anon_sym_PERCENT, - STATE(618), 1, + STATE(716), 1, aux_sym__comment_with_newline_repeat1, - ACTIONS(2093), 3, + ACTIONS(2294), 3, sym_backslash_escape, aux_sym__comment_with_newline_token1, sym__newline, - [20450] = 3, - ACTIONS(2150), 1, + [23474] = 3, + ACTIONS(2299), 1, anon_sym_PERCENT, - STATE(636), 1, + STATE(716), 1, aux_sym__comment_with_newline_repeat1, - ACTIONS(2147), 3, + ACTIONS(2282), 3, sym_backslash_escape, aux_sym__comment_with_newline_token1, sym__newline, - [20462] = 1, - ACTIONS(2152), 4, + [23486] = 4, + ACTIONS(2192), 1, + anon_sym_LBRACK, + ACTIONS(2301), 1, + anon_sym_LBRACE, + STATE(615), 1, + sym_inline_attribute, + ACTIONS(2190), 2, + anon_sym_LBRACK_RBRACK, + anon_sym_LPAREN, + [23500] = 5, + ACTIONS(2184), 1, + anon_sym_LBRACK, + ACTIONS(2186), 1, + anon_sym_LPAREN, + ACTIONS(2303), 1, + anon_sym_LBRACK_RBRACK, + STATE(454), 1, + sym__link_label, + STATE(477), 1, + sym_inline_link_destination, + [23516] = 5, + ACTIONS(2236), 1, + anon_sym_LBRACK, + ACTIONS(2238), 1, + anon_sym_LPAREN, + ACTIONS(2305), 1, + anon_sym_LBRACK_RBRACK, + STATE(216), 1, + sym_inline_link_destination, + STATE(505), 1, + sym__link_label, + [23532] = 1, + ACTIONS(2307), 4, sym_backslash_escape, anon_sym_PERCENT, aux_sym__comment_with_newline_token1, sym__newline, - [20469] = 3, - ACTIONS(2154), 1, + [23539] = 3, + ACTIONS(2309), 1, anon_sym_STAR, - ACTIONS(2156), 1, + ACTIONS(2311), 1, aux_sym_strong_end_token1, - STATE(221), 1, + STATE(319), 1, sym_strong_end, - [20479] = 2, - ACTIONS(2160), 1, + [23549] = 3, + ACTIONS(2313), 1, + anon_sym__, + ACTIONS(2315), 1, + aux_sym_emphasis_end_token1, + STATE(846), 1, + sym_emphasis_end, + [23559] = 2, + ACTIONS(2319), 1, anon_sym_LBRACK, - ACTIONS(2158), 2, + ACTIONS(2317), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - [20487] = 3, - ACTIONS(2162), 1, + [23567] = 3, + ACTIONS(2313), 1, + anon_sym__, + ACTIONS(2315), 1, + aux_sym_emphasis_end_token1, + STATE(888), 1, + sym_emphasis_end, + [23577] = 3, + ACTIONS(2313), 1, + anon_sym__, + ACTIONS(2315), 1, + aux_sym_emphasis_end_token1, + STATE(910), 1, + sym_emphasis_end, + [23587] = 3, + ACTIONS(2321), 1, anon_sym_STAR, - ACTIONS(2164), 1, + ACTIONS(2323), 1, aux_sym_strong_end_token1, - STATE(426), 1, + STATE(475), 1, sym_strong_end, - [20497] = 3, - ACTIONS(2166), 1, + [23597] = 3, + ACTIONS(2325), 1, + anon_sym_DQUOTE, + ACTIONS(2327), 1, + aux_sym_value_token2, + STATE(683), 1, + sym_value, + [23607] = 3, + ACTIONS(2313), 1, + anon_sym__, + ACTIONS(2315), 1, + aux_sym_emphasis_end_token1, + STATE(865), 1, + sym_emphasis_end, + [23617] = 3, + ACTIONS(2329), 1, anon_sym_STAR, - ACTIONS(2168), 1, + ACTIONS(2331), 1, aux_sym_strong_end_token1, - STATE(405), 1, + STATE(495), 1, sym_strong_end, - [20507] = 3, - ACTIONS(2170), 1, + [23627] = 3, + ACTIONS(2333), 1, anon_sym_STAR, - ACTIONS(2172), 1, + ACTIONS(2335), 1, aux_sym_strong_end_token1, - STATE(455), 1, + STATE(423), 1, sym_strong_end, - [20517] = 3, - ACTIONS(2174), 1, + [23637] = 2, + ACTIONS(2339), 1, + anon_sym_LBRACK, + ACTIONS(2337), 2, + anon_sym_LBRACK_RBRACK, + anon_sym_LPAREN, + [23645] = 3, + ACTIONS(2341), 1, anon_sym_STAR, - ACTIONS(2176), 1, + ACTIONS(2343), 1, aux_sym_strong_end_token1, - STATE(355), 1, + STATE(232), 1, sym_strong_end, - [20527] = 3, - ACTIONS(2178), 1, + [23655] = 3, + ACTIONS(2313), 1, + anon_sym__, + ACTIONS(2315), 1, + aux_sym_emphasis_end_token1, + STATE(842), 1, + sym_emphasis_end, + [23665] = 3, + ACTIONS(2345), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2347), 1, aux_sym_strong_end_token1, - STATE(505), 1, + STATE(520), 1, sym_strong_end, - [20537] = 3, - ACTIONS(2182), 1, + [23675] = 3, + ACTIONS(2313), 1, + anon_sym__, + ACTIONS(2315), 1, + aux_sym_emphasis_end_token1, + STATE(897), 1, + sym_emphasis_end, + [23685] = 3, + ACTIONS(2313), 1, + anon_sym__, + ACTIONS(2315), 1, + aux_sym_emphasis_end_token1, + STATE(952), 1, + sym_emphasis_end, + [23695] = 3, + ACTIONS(2313), 1, + anon_sym__, + ACTIONS(2315), 1, + aux_sym_emphasis_end_token1, + STATE(994), 1, + sym_emphasis_end, + [23705] = 3, + ACTIONS(2313), 1, + anon_sym__, + ACTIONS(2315), 1, + aux_sym_emphasis_end_token1, + STATE(819), 1, + sym_emphasis_end, + [23715] = 3, + ACTIONS(2313), 1, + anon_sym__, + ACTIONS(2315), 1, + aux_sym_emphasis_end_token1, + STATE(806), 1, + sym_emphasis_end, + [23725] = 3, + ACTIONS(2349), 1, anon_sym_STAR, - ACTIONS(2184), 1, + ACTIONS(2351), 1, aux_sym_strong_end_token1, - STATE(255), 1, + STATE(333), 1, sym_strong_end, - [20547] = 3, - ACTIONS(2186), 1, + [23735] = 3, + ACTIONS(2353), 1, anon_sym_STAR, - ACTIONS(2188), 1, + ACTIONS(2355), 1, aux_sym_strong_end_token1, - STATE(305), 1, + STATE(371), 1, sym_strong_end, - [20557] = 3, - ACTIONS(2190), 1, + [23745] = 3, + ACTIONS(2313), 1, + anon_sym__, + ACTIONS(2315), 1, + aux_sym_emphasis_end_token1, + STATE(873), 1, + sym_emphasis_end, + [23755] = 3, + ACTIONS(2357), 1, anon_sym_STAR, - ACTIONS(2192), 1, + ACTIONS(2359), 1, aux_sym_strong_end_token1, - STATE(269), 1, + STATE(267), 1, sym_strong_end, - [20567] = 3, - ACTIONS(2194), 1, - anon_sym_DQUOTE, - ACTIONS(2196), 1, - aux_sym_value_token2, - STATE(595), 1, - sym_value, - [20577] = 3, - ACTIONS(2198), 1, + [23765] = 3, + ACTIONS(2361), 1, anon_sym_STAR, - ACTIONS(2200), 1, + ACTIONS(2363), 1, aux_sym_strong_end_token1, - STATE(415), 1, + STATE(217), 1, sym_strong_end, - [20587] = 2, - ACTIONS(2204), 1, - anon_sym_LBRACK, - ACTIONS(2202), 2, - anon_sym_LBRACK_RBRACK, - anon_sym_LPAREN, - [20595] = 2, - ACTIONS(1921), 1, + [23775] = 3, + ACTIONS(2365), 1, + anon_sym_STAR, + ACTIONS(2367), 1, + aux_sym_strong_end_token1, + STATE(627), 1, + sym_strong_end, + [23785] = 2, + ACTIONS(2369), 1, + anon_sym_CARET, + ACTIONS(2371), 1, + anon_sym_CARET_RBRACE, + [23792] = 2, + ACTIONS(2373), 1, + sym__emphasis_begin_check, + ACTIONS(2376), 1, + sym__in_fallback, + [23799] = 2, + ACTIONS(2378), 1, + sym__emphasis_begin_check, + ACTIONS(2381), 1, + sym__in_fallback, + [23806] = 2, + ACTIONS(2383), 1, + anon_sym_TILDE, + ACTIONS(2385), 1, + anon_sym_TILDE_RBRACE, + [23813] = 2, + ACTIONS(2387), 1, + anon_sym_CARET, + ACTIONS(2389), 1, + anon_sym_CARET_RBRACE, + [23820] = 2, + ACTIONS(2391), 1, + sym__emphasis_begin_check, + ACTIONS(2394), 1, + sym__in_fallback, + [23827] = 2, + ACTIONS(2396), 1, + sym__emphasis_begin_check, + ACTIONS(2399), 1, + sym__in_fallback, + [23834] = 2, + ACTIONS(2401), 1, + sym__emphasis_begin_check, + ACTIONS(2404), 1, + sym__in_fallback, + [23841] = 2, + ACTIONS(2406), 1, + sym__emphasis_begin_check, + ACTIONS(2409), 1, + sym__in_fallback, + [23848] = 2, + ACTIONS(2058), 1, anon_sym_PERCENT, - STATE(727), 1, + STATE(881), 1, sym__comment_with_newline, - [20602] = 2, - ACTIONS(2206), 1, - anon_sym__, - STATE(704), 1, - sym_emphasis_end, - [20609] = 2, - ACTIONS(1921), 1, + [23855] = 2, + ACTIONS(2058), 1, anon_sym_PERCENT, - STATE(887), 1, + STATE(850), 1, sym__comment_with_newline, - [20616] = 2, - ACTIONS(2208), 1, + [23862] = 2, + ACTIONS(2411), 1, sym__emphasis_begin_check, - ACTIONS(2211), 1, + ACTIONS(2414), 1, sym__in_fallback, - [20623] = 2, - ACTIONS(2206), 1, - anon_sym__, - STATE(788), 1, - sym_emphasis_end, - [20630] = 2, - ACTIONS(2213), 1, + [23869] = 2, + ACTIONS(2416), 1, sym__emphasis_begin_check, - ACTIONS(2216), 1, + ACTIONS(2419), 1, sym__in_fallback, - [20637] = 2, - ACTIONS(1921), 1, - anon_sym_PERCENT, - STATE(852), 1, - sym__comment_with_newline, - [20644] = 2, - ACTIONS(2206), 1, - anon_sym__, - STATE(781), 1, - sym_emphasis_end, - [20651] = 2, - ACTIONS(2218), 1, - anon_sym_TILDE, - ACTIONS(2220), 1, - anon_sym_TILDE_RBRACE, - [20658] = 2, - ACTIONS(2222), 1, + [23876] = 2, + ACTIONS(2421), 1, sym__id, - STATE(601), 1, + STATE(680), 1, sym_class_name, - [20665] = 2, - ACTIONS(2224), 1, - anon_sym_CARET, - ACTIONS(2226), 1, - anon_sym_CARET_RBRACE, - [20672] = 2, - ACTIONS(1921), 1, + [23883] = 2, + ACTIONS(2058), 1, anon_sym_PERCENT, - STATE(807), 1, + STATE(823), 1, sym__comment_with_newline, - [20679] = 2, - ACTIONS(2228), 1, - anon_sym_CARET, - ACTIONS(2230), 1, - anon_sym_CARET_RBRACE, - [20686] = 2, - ACTIONS(2232), 1, + [23890] = 2, + ACTIONS(2423), 1, anon_sym_TILDE, - ACTIONS(2234), 1, + ACTIONS(2425), 1, anon_sym_TILDE_RBRACE, - [20693] = 2, - ACTIONS(2236), 1, + [23897] = 2, + ACTIONS(2427), 1, anon_sym_TILDE, - ACTIONS(2238), 1, + ACTIONS(2429), 1, anon_sym_TILDE_RBRACE, - [20700] = 2, - ACTIONS(2206), 1, - anon_sym__, - STATE(798), 1, - sym_emphasis_end, - [20707] = 2, - ACTIONS(2240), 1, - anon_sym_CARET, - ACTIONS(2242), 1, - anon_sym_CARET_RBRACE, - [20714] = 2, - ACTIONS(2244), 1, - sym__emphasis_begin_check, - ACTIONS(2247), 1, - sym__in_fallback, - [20721] = 2, - ACTIONS(2249), 1, + [23904] = 2, + ACTIONS(2431), 1, + anon_sym_TILDE, + ACTIONS(2433), 1, + anon_sym_TILDE_RBRACE, + [23911] = 2, + ACTIONS(2435), 1, anon_sym_CARET, - ACTIONS(2251), 1, + ACTIONS(2437), 1, anon_sym_CARET_RBRACE, - [20728] = 2, - ACTIONS(2253), 1, - sym__emphasis_begin_check, - ACTIONS(2256), 1, - sym__in_fallback, - [20735] = 2, - ACTIONS(2206), 1, - anon_sym__, - STATE(761), 1, - sym_emphasis_end, - [20742] = 2, - ACTIONS(1921), 1, + [23918] = 2, + ACTIONS(2058), 1, anon_sym_PERCENT, - STATE(792), 1, + STATE(900), 1, sym__comment_with_newline, - [20749] = 2, - ACTIONS(2258), 1, - sym__emphasis_begin_check, - ACTIONS(2261), 1, - sym__in_fallback, - [20756] = 2, - ACTIONS(2206), 1, - anon_sym__, - STATE(843), 1, - sym_emphasis_end, - [20763] = 2, - ACTIONS(1921), 1, + [23925] = 2, + ACTIONS(2058), 1, anon_sym_PERCENT, - STATE(730), 1, + STATE(803), 1, sym__comment_with_newline, - [20770] = 2, - ACTIONS(2263), 1, + [23932] = 2, + ACTIONS(2439), 1, + anon_sym_TILDE, + ACTIONS(2441), 1, + anon_sym_TILDE_RBRACE, + [23939] = 2, + ACTIONS(2443), 1, + anon_sym_CARET, + ACTIONS(2445), 1, + anon_sym_CARET_RBRACE, + [23946] = 2, + ACTIONS(2447), 1, sym__emphasis_begin_check, - ACTIONS(2266), 1, + ACTIONS(2450), 1, sym__in_fallback, - [20777] = 2, - ACTIONS(2268), 1, + [23953] = 2, + ACTIONS(2452), 1, anon_sym_TILDE, - ACTIONS(2270), 1, + ACTIONS(2454), 1, anon_sym_TILDE_RBRACE, - [20784] = 2, - ACTIONS(1921), 1, + [23960] = 2, + ACTIONS(2058), 1, anon_sym_PERCENT, - STATE(715), 1, + STATE(816), 1, sym__comment_with_newline, - [20791] = 2, - ACTIONS(2272), 1, + [23967] = 2, + ACTIONS(2456), 1, + sym__emphasis_begin_check, + ACTIONS(2459), 1, + sym__in_fallback, + [23974] = 2, + ACTIONS(2461), 1, + sym__emphasis_begin_check, + ACTIONS(2464), 1, + sym__in_fallback, + [23981] = 2, + ACTIONS(2466), 1, + sym__emphasis_begin_check, + ACTIONS(2469), 1, + sym__in_fallback, + [23988] = 2, + ACTIONS(2471), 1, anon_sym_CARET, - ACTIONS(2274), 1, + ACTIONS(2473), 1, anon_sym_CARET_RBRACE, - [20798] = 2, - ACTIONS(2276), 1, + [23995] = 2, + ACTIONS(2475), 1, + sym__emphasis_begin_check, + ACTIONS(2478), 1, + sym__in_fallback, + [24002] = 2, + ACTIONS(2480), 1, anon_sym_TILDE, - ACTIONS(2278), 1, + ACTIONS(2482), 1, anon_sym_TILDE_RBRACE, - [20805] = 2, - ACTIONS(2280), 1, + [24009] = 2, + ACTIONS(2484), 1, anon_sym_CARET, - ACTIONS(2282), 1, + ACTIONS(2486), 1, anon_sym_CARET_RBRACE, - [20812] = 2, - ACTIONS(2284), 1, + [24016] = 2, + ACTIONS(2488), 1, sym__emphasis_begin_check, - ACTIONS(2287), 1, + ACTIONS(2491), 1, sym__in_fallback, - [20819] = 2, - ACTIONS(2289), 1, - anon_sym_CARET, - ACTIONS(2291), 1, - anon_sym_CARET_RBRACE, - [20826] = 2, - ACTIONS(2293), 1, - anon_sym_TILDE, - ACTIONS(2295), 1, - anon_sym_TILDE_RBRACE, - [20833] = 2, - ACTIONS(2206), 1, - anon_sym__, - STATE(718), 1, - sym_emphasis_end, - [20840] = 2, - ACTIONS(2206), 1, - anon_sym__, - STATE(879), 1, - sym_emphasis_end, - [20847] = 2, - ACTIONS(1921), 1, + [24023] = 2, + ACTIONS(2058), 1, anon_sym_PERCENT, - STATE(734), 1, + STATE(839), 1, sym__comment_with_newline, - [20854] = 2, - ACTIONS(2206), 1, - anon_sym__, - STATE(737), 1, - sym_emphasis_end, - [20861] = 2, - ACTIONS(2297), 1, + [24030] = 2, + ACTIONS(2493), 1, anon_sym_TILDE, - ACTIONS(2299), 1, + ACTIONS(2495), 1, anon_sym_TILDE_RBRACE, - [20868] = 2, - ACTIONS(2301), 1, + [24037] = 2, + ACTIONS(2497), 1, + anon_sym_CARET, + ACTIONS(2499), 1, + anon_sym_CARET_RBRACE, + [24044] = 2, + ACTIONS(2501), 1, + sym__emphasis_begin_check, + ACTIONS(2504), 1, + sym__in_fallback, + [24051] = 2, + ACTIONS(2506), 1, + sym__emphasis_begin_check, + ACTIONS(2509), 1, + sym__in_fallback, + [24058] = 2, + ACTIONS(2511), 1, + anon_sym_CARET, + ACTIONS(2513), 1, + anon_sym_CARET_RBRACE, + [24065] = 2, + ACTIONS(2515), 1, anon_sym_TILDE, - ACTIONS(2303), 1, + ACTIONS(2517), 1, anon_sym_TILDE_RBRACE, - [20875] = 2, - ACTIONS(2305), 1, + [24072] = 2, + ACTIONS(2519), 1, anon_sym_CARET, - ACTIONS(2307), 1, + ACTIONS(2521), 1, anon_sym_CARET_RBRACE, - [20882] = 2, - ACTIONS(2309), 1, + [24079] = 2, + ACTIONS(2523), 1, sym__emphasis_begin_check, - ACTIONS(2312), 1, + ACTIONS(2526), 1, sym__in_fallback, - [20889] = 2, - ACTIONS(1921), 1, + [24086] = 2, + ACTIONS(2058), 1, anon_sym_PERCENT, - STATE(756), 1, + STATE(1008), 1, sym__comment_with_newline, - [20896] = 2, - ACTIONS(2314), 1, - anon_sym_CARET, - ACTIONS(2316), 1, - anon_sym_CARET_RBRACE, - [20903] = 2, - ACTIONS(2318), 1, + [24093] = 2, + ACTIONS(2528), 1, sym__emphasis_begin_check, - ACTIONS(2321), 1, + ACTIONS(2531), 1, sym__in_fallback, - [20910] = 2, - ACTIONS(2323), 1, + [24100] = 2, + ACTIONS(2058), 1, + anon_sym_PERCENT, + STATE(862), 1, + sym__comment_with_newline, + [24107] = 2, + ACTIONS(2533), 1, + sym__emphasis_begin_check, + ACTIONS(2536), 1, + sym__in_fallback, + [24114] = 2, + ACTIONS(2538), 1, anon_sym_TILDE, - ACTIONS(2325), 1, + ACTIONS(2540), 1, anon_sym_TILDE_RBRACE, - [20917] = 2, - ACTIONS(2327), 1, + [24121] = 2, + ACTIONS(2542), 1, + anon_sym_TILDE, + ACTIONS(2544), 1, + anon_sym_TILDE_RBRACE, + [24128] = 2, + ACTIONS(2546), 1, sym__emphasis_begin_check, - ACTIONS(2330), 1, + ACTIONS(2549), 1, sym__in_fallback, - [20924] = 2, - ACTIONS(2206), 1, - anon_sym__, - STATE(759), 1, - sym_emphasis_end, - [20931] = 2, - ACTIONS(1921), 1, + [24135] = 2, + ACTIONS(2551), 1, + anon_sym_CARET, + ACTIONS(2553), 1, + anon_sym_CARET_RBRACE, + [24142] = 2, + ACTIONS(2555), 1, + sym__emphasis_begin_check, + ACTIONS(2558), 1, + sym__in_fallback, + [24149] = 2, + ACTIONS(2058), 1, + anon_sym_PERCENT, + STATE(885), 1, + sym__comment_with_newline, + [24156] = 2, + ACTIONS(2058), 1, anon_sym_PERCENT, - STATE(778), 1, + STATE(919), 1, sym__comment_with_newline, - [20938] = 2, - ACTIONS(2332), 1, + [24163] = 2, + ACTIONS(2560), 1, + sym__emphasis_begin_check, + ACTIONS(2563), 1, + sym__in_fallback, + [24170] = 2, + ACTIONS(2565), 1, anon_sym_CARET, - ACTIONS(2334), 1, + ACTIONS(2567), 1, anon_sym_CARET_RBRACE, - [20945] = 2, - ACTIONS(2336), 1, - anon_sym_TILDE, - ACTIONS(2338), 1, - anon_sym_TILDE_RBRACE, - [20952] = 1, - ACTIONS(2340), 1, - anon_sym_PLUS_RBRACE, - [20956] = 1, - ACTIONS(2342), 1, - sym__emphasis_end_check, - [20960] = 1, - ACTIONS(2344), 1, + [24177] = 1, + ACTIONS(2569), 1, + anon_sym_RBRACE, + [24181] = 1, + ACTIONS(2571), 1, + anon_sym_RBRACK2, + [24185] = 1, + ACTIONS(2573), 1, + anon_sym_RPAREN, + [24189] = 1, + ACTIONS(2575), 1, sym__emphasis_end_check, - [20964] = 1, - ACTIONS(2346), 1, + [24193] = 1, + ACTIONS(2577), 1, anon_sym_RBRACE, - [20968] = 1, - ACTIONS(2348), 1, + [24197] = 1, + ACTIONS(2579), 1, sym__newline, - [20972] = 1, - ACTIONS(2350), 1, + [24201] = 1, + ACTIONS(2581), 1, sym__verbatim_end, - [20976] = 1, - ACTIONS(2352), 1, - sym__newline, - [20980] = 1, - ACTIONS(2354), 1, + [24205] = 1, + ACTIONS(2583), 1, anon_sym_GT, - [20984] = 1, - ACTIONS(2356), 1, + [24209] = 1, + ACTIONS(2585), 1, anon_sym_EQ_RBRACE, - [20988] = 1, - ACTIONS(2358), 1, + [24213] = 1, + ACTIONS(2587), 1, anon_sym_PLUS_RBRACE, - [20992] = 1, - ACTIONS(2360), 1, + [24217] = 1, + ACTIONS(2589), 1, anon_sym_DASH_RBRACE, - [20996] = 1, - ACTIONS(2362), 1, + [24221] = 1, + ACTIONS(2591), 1, anon_sym_RBRACK, - [21000] = 1, - ACTIONS(2364), 1, + [24225] = 1, + ACTIONS(2593), 1, sym__verbatim_end, - [21004] = 1, - ACTIONS(2366), 1, + [24229] = 1, + ACTIONS(2595), 1, anon_sym_RBRACE, - [21008] = 1, - ACTIONS(2368), 1, + [24233] = 1, + ACTIONS(2597), 1, anon_sym_RBRACK2, - [21012] = 1, - ACTIONS(2370), 1, + [24237] = 1, + ACTIONS(2599), 1, anon_sym_RPAREN, - [21016] = 1, - ACTIONS(2372), 1, + [24241] = 1, + ACTIONS(2601), 1, sym__emphasis_end_check, - [21020] = 1, - ACTIONS(2374), 1, + [24245] = 1, + ACTIONS(2603), 1, anon_sym_RBRACE, - [21024] = 1, - ACTIONS(2376), 1, + [24249] = 1, + ACTIONS(2605), 1, + anon_sym_DASH_RBRACE, + [24253] = 1, + ACTIONS(2607), 1, sym__newline, - [21028] = 1, - ACTIONS(2378), 1, + [24257] = 1, + ACTIONS(2609), 1, + anon_sym_RBRACE, + [24261] = 1, + ACTIONS(2611), 1, sym__verbatim_end, - [21032] = 1, - ACTIONS(2380), 1, + [24265] = 1, + ACTIONS(2613), 1, + sym__verbatim_end, + [24269] = 1, + ACTIONS(2615), 1, anon_sym_RBRACK, - [21036] = 1, - ACTIONS(2382), 1, + [24273] = 1, + ACTIONS(2617), 1, + anon_sym_DASH_RBRACE, + [24277] = 1, + ACTIONS(2619), 1, anon_sym_GT, - [21040] = 1, - ACTIONS(2384), 1, + [24281] = 1, + ACTIONS(2621), 1, anon_sym_EQ_RBRACE, - [21044] = 1, - ACTIONS(2386), 1, + [24285] = 1, + ACTIONS(2623), 1, anon_sym_PLUS_RBRACE, - [21048] = 1, - ACTIONS(2388), 1, + [24289] = 1, + ACTIONS(2625), 1, anon_sym_DASH_RBRACE, - [21052] = 1, - ACTIONS(2390), 1, - anon_sym_RBRACE, - [21056] = 1, - ACTIONS(2392), 1, - anon_sym_RBRACK2, - [21060] = 1, - ACTIONS(2394), 1, - anon_sym_RBRACK, - [21064] = 1, - ACTIONS(2396), 1, - anon_sym_RBRACE, - [21068] = 1, - ACTIONS(2398), 1, + [24293] = 1, + ACTIONS(2627), 1, + anon_sym_PLUS_RBRACE, + [24297] = 1, + ACTIONS(2629), 1, + anon_sym_EQ_RBRACE, + [24301] = 1, + ACTIONS(2631), 1, anon_sym_RBRACK, - [21072] = 1, - ACTIONS(2400), 1, + [24305] = 1, + ACTIONS(2633), 1, + anon_sym_GT, + [24309] = 1, + ACTIONS(2635), 1, sym__verbatim_end, - [21076] = 1, - ACTIONS(2402), 1, + [24313] = 1, + ACTIONS(2637), 1, + sym__newline, + [24317] = 1, + ACTIONS(2639), 1, sym__verbatim_end, - [21080] = 1, - ACTIONS(2404), 1, + [24321] = 1, + ACTIONS(2641), 1, anon_sym_RBRACE, - [21084] = 1, - ACTIONS(2406), 1, + [24325] = 1, + ACTIONS(2643), 1, anon_sym_RBRACK2, - [21088] = 1, - ACTIONS(2408), 1, + [24329] = 1, + ACTIONS(2645), 1, anon_sym_RPAREN, - [21092] = 1, - ACTIONS(2410), 1, + [24333] = 1, + ACTIONS(2647), 1, sym__emphasis_end_check, - [21096] = 1, - ACTIONS(2412), 1, + [24337] = 1, + ACTIONS(2649), 1, anon_sym_RBRACE, - [21100] = 1, - ACTIONS(2414), 1, - anon_sym_RBRACK, - [21104] = 1, - ACTIONS(2416), 1, + [24341] = 1, + ACTIONS(2651), 1, + anon_sym_RBRACE, + [24345] = 1, + ACTIONS(2653), 1, sym__newline, - [21108] = 1, - ACTIONS(2418), 1, - anon_sym_DASH_RBRACE, - [21112] = 1, - ACTIONS(2420), 1, - anon_sym_PLUS_RBRACE, - [21116] = 1, - ACTIONS(2422), 1, + [24349] = 1, + ACTIONS(2655), 1, + sym__emphasis_end_check, + [24353] = 1, + ACTIONS(2657), 1, + anon_sym_RPAREN, + [24357] = 1, + ACTIONS(2659), 1, sym__verbatim_end, - [21120] = 1, - ACTIONS(2424), 1, - sym__verbatim_content, - [21124] = 1, - ACTIONS(2426), 1, + [24361] = 1, + ACTIONS(2661), 1, + anon_sym_RBRACK2, + [24365] = 1, + ACTIONS(2663), 1, + anon_sym_RBRACE, + [24369] = 1, + ACTIONS(2665), 1, anon_sym_GT, - [21128] = 1, - ACTIONS(2428), 1, - anon_sym_EQ_RBRACE, - [21132] = 1, - ACTIONS(2430), 1, + [24373] = 1, + ACTIONS(2667), 1, anon_sym_EQ_RBRACE, - [21136] = 1, - ACTIONS(2432), 1, + [24377] = 1, + ACTIONS(2669), 1, + anon_sym_PLUS_RBRACE, + [24381] = 1, + ACTIONS(2671), 1, anon_sym_DASH_RBRACE, - [21140] = 1, - ACTIONS(2434), 1, - anon_sym_EQ_RBRACE, - [21144] = 1, - ACTIONS(2436), 1, - anon_sym_GT, - [21148] = 1, - ACTIONS(2438), 1, - anon_sym_RBRACK, - [21152] = 1, - ACTIONS(2440), 1, + [24385] = 1, + ACTIONS(2673), 1, sym__verbatim_end, - [21156] = 1, - ACTIONS(2442), 1, - sym__newline, - [21160] = 1, - ACTIONS(2444), 1, - anon_sym_RBRACE, - [21164] = 1, - ACTIONS(2446), 1, + [24389] = 1, + ACTIONS(2675), 1, + anon_sym_RBRACK, + [24393] = 1, + ACTIONS(2677), 1, + anon_sym_RBRACK, + [24397] = 1, + ACTIONS(2679), 1, + anon_sym_DASH_RBRACE, + [24401] = 1, + ACTIONS(2681), 1, + anon_sym_PLUS_RBRACE, + [24405] = 1, + ACTIONS(2683), 1, + anon_sym_EQ_RBRACE, + [24409] = 1, + ACTIONS(2685), 1, sym__verbatim_end, - [21168] = 1, - ACTIONS(2448), 1, + [24413] = 1, + ACTIONS(2687), 1, anon_sym_RBRACE, - [21172] = 1, - ACTIONS(2450), 1, + [24417] = 1, + ACTIONS(2689), 1, anon_sym_RBRACK2, - [21176] = 1, - ACTIONS(2452), 1, + [24421] = 1, + ACTIONS(2691), 1, anon_sym_RPAREN, - [21180] = 1, - ACTIONS(2454), 1, + [24425] = 1, + ACTIONS(2693), 1, sym__emphasis_end_check, - [21184] = 1, - ACTIONS(2456), 1, + [24429] = 1, + ACTIONS(2695), 1, anon_sym_RBRACE, - [21188] = 1, - ACTIONS(2458), 1, - sym__emphasis_end_check, - [21192] = 1, - ACTIONS(2460), 1, + [24433] = 1, + ACTIONS(2697), 1, + anon_sym_GT, + [24437] = 1, + ACTIONS(2699), 1, sym__newline, - [21196] = 1, - ACTIONS(2462), 1, - anon_sym_RPAREN, - [21200] = 1, - ACTIONS(2464), 1, - anon_sym_RBRACK2, - [21204] = 1, - ACTIONS(2466), 1, + [24441] = 1, + ACTIONS(2701), 1, sym__verbatim_end, - [21208] = 1, - ACTIONS(2468), 1, - anon_sym_EQ, - [21212] = 1, - ACTIONS(2470), 1, + [24445] = 1, + ACTIONS(2703), 1, + sym__newline, + [24449] = 1, + ACTIONS(2705), 1, + sym__verbatim_end, + [24453] = 1, + ACTIONS(2707), 1, + anon_sym_RBRACE, + [24457] = 1, + ACTIONS(2709), 1, + sym__emphasis_end_check, + [24461] = 1, + ACTIONS(2711), 1, anon_sym_GT, - [21216] = 1, - ACTIONS(2472), 1, + [24465] = 1, + ACTIONS(2713), 1, anon_sym_EQ_RBRACE, - [21220] = 1, - ACTIONS(2474), 1, + [24469] = 1, + ACTIONS(2715), 1, anon_sym_PLUS_RBRACE, - [21224] = 1, - ACTIONS(2476), 1, + [24473] = 1, + ACTIONS(2717), 1, anon_sym_DASH_RBRACE, - [21228] = 1, - ACTIONS(2478), 1, - anon_sym_PLUS_RBRACE, - [21232] = 1, - ACTIONS(2480), 1, - sym__verbatim_end, - [21236] = 1, - ACTIONS(2482), 1, + [24477] = 1, + ACTIONS(2719), 1, + anon_sym_RPAREN, + [24481] = 1, + ACTIONS(2721), 1, + anon_sym_RBRACK2, + [24485] = 1, + ACTIONS(2723), 1, anon_sym_RBRACK, - [21240] = 1, - ACTIONS(2484), 1, + [24489] = 1, + ACTIONS(2725), 1, + anon_sym_RBRACE, + [24493] = 1, + ACTIONS(2727), 1, sym__verbatim_end, - [21244] = 1, - ACTIONS(2486), 1, - aux_sym_inline_link_destination_token1, - [21248] = 1, - ACTIONS(2488), 1, + [24497] = 1, + ACTIONS(2729), 1, anon_sym_RBRACK, - [21252] = 1, - ACTIONS(2490), 1, + [24501] = 1, + ACTIONS(2731), 1, sym__verbatim_end, - [21256] = 1, - ACTIONS(2492), 1, + [24505] = 1, + ACTIONS(2733), 1, anon_sym_RBRACE, - [21260] = 1, - ACTIONS(2494), 1, + [24509] = 1, + ACTIONS(2735), 1, anon_sym_RBRACK2, - [21264] = 1, - ACTIONS(2496), 1, + [24513] = 1, + ACTIONS(2737), 1, anon_sym_RPAREN, - [21268] = 1, - ACTIONS(2498), 1, + [24517] = 1, + ACTIONS(2739), 1, sym__emphasis_end_check, - [21272] = 1, - ACTIONS(2500), 1, + [24521] = 1, + ACTIONS(2741), 1, anon_sym_RBRACE, - [21276] = 1, - ACTIONS(2502), 1, - anon_sym_DASH_RBRACE, - [21280] = 1, - ACTIONS(2504), 1, - sym__whitespace, - [21284] = 1, - ACTIONS(2506), 1, + [24525] = 1, + ACTIONS(2743), 1, anon_sym_PLUS_RBRACE, - [21288] = 1, - ACTIONS(2508), 1, + [24529] = 1, + ACTIONS(2745), 1, + anon_sym_PLUS_RBRACE, + [24533] = 1, + ACTIONS(2747), 1, anon_sym_EQ_RBRACE, - [21292] = 1, - ACTIONS(2510), 1, - anon_sym_GT, - [21296] = 1, - ACTIONS(2512), 1, - sym__emphasis_end_check, - [21300] = 1, - ACTIONS(2514), 1, + [24537] = 1, + ACTIONS(2749), 1, anon_sym_GT, - [21304] = 1, - ACTIONS(2516), 1, - sym__verbatim_end, - [21308] = 1, - ACTIONS(2518), 1, + [24541] = 1, + ACTIONS(2751), 1, sym__verbatim_end, - [21312] = 1, - ACTIONS(2520), 1, - anon_sym_RBRACE, - [21316] = 1, - ACTIONS(2522), 1, + [24545] = 1, + ACTIONS(2753), 1, sym__newline, - [21320] = 1, - ACTIONS(2524), 1, - anon_sym_RBRACK2, - [21324] = 1, - ACTIONS(2526), 1, - anon_sym_RPAREN, - [21328] = 1, - ACTIONS(2528), 1, - sym_language, - [21332] = 1, - ACTIONS(2530), 1, + [24549] = 1, + ACTIONS(2755), 1, anon_sym_RBRACE, - [21336] = 1, - ACTIONS(2532), 1, + [24553] = 1, + ACTIONS(2757), 1, sym__emphasis_end_check, - [21340] = 1, - ACTIONS(2534), 1, + [24557] = 1, + ACTIONS(2759), 1, anon_sym_RPAREN, - [21344] = 1, - ACTIONS(2536), 1, + [24561] = 1, + ACTIONS(2761), 1, anon_sym_RBRACK2, - [21348] = 1, - ACTIONS(2538), 1, + [24565] = 1, + ACTIONS(2763), 1, + anon_sym_RBRACE, + [24569] = 1, + ACTIONS(2765), 1, + sym__verbatim_end, + [24573] = 1, + ACTIONS(2767), 1, + anon_sym_RBRACK, + [24577] = 1, + ACTIONS(2769), 1, + anon_sym_DASH_RBRACE, + [24581] = 1, + ACTIONS(2771), 1, + anon_sym_PLUS_RBRACE, + [24585] = 1, + ACTIONS(2773), 1, + anon_sym_EQ_RBRACE, + [24589] = 1, + ACTIONS(2775), 1, + anon_sym_GT, + [24593] = 1, + ACTIONS(2777), 1, + sym__verbatim_end, + [24597] = 1, + ACTIONS(2779), 1, + sym__newline, + [24601] = 1, + ACTIONS(2781), 1, + anon_sym_RBRACE, + [24605] = 1, + ACTIONS(2783), 1, + sym__emphasis_end_check, + [24609] = 1, + ACTIONS(2785), 1, anon_sym_RPAREN, - [21352] = 1, - ACTIONS(2540), 1, - anon_sym_EQ, - [21356] = 1, - ACTIONS(2542), 1, + [24613] = 1, + ACTIONS(2787), 1, sym__verbatim_content, - [21360] = 1, - ACTIONS(2544), 1, + [24617] = 1, + ACTIONS(2789), 1, sym__verbatim_content, - [21364] = 1, - ACTIONS(2546), 1, + [24621] = 1, + ACTIONS(2791), 1, anon_sym_RBRACK, - [21368] = 1, - ACTIONS(2548), 1, + [24625] = 1, + ACTIONS(2793), 1, sym__verbatim_content, - [21372] = 1, - ACTIONS(2550), 1, - anon_sym_RBRACE, - [21376] = 1, - ACTIONS(2552), 1, + [24629] = 1, + ACTIONS(2795), 1, + anon_sym_RBRACK2, + [24633] = 1, + ACTIONS(2797), 1, anon_sym_RBRACK, - [21380] = 1, - ACTIONS(2554), 1, + [24637] = 1, + ACTIONS(2799), 1, aux_sym_inline_link_destination_token1, - [21384] = 1, - ACTIONS(2556), 1, - sym__verbatim_end, - [21388] = 1, - ACTIONS(2558), 1, + [24641] = 1, + ACTIONS(2801), 1, + anon_sym_RBRACE, + [24645] = 1, + ACTIONS(2803), 1, sym_language, - [21392] = 1, - ACTIONS(2560), 1, + [24649] = 1, + ACTIONS(2805), 1, sym__verbatim_content, - [21396] = 1, - ACTIONS(2562), 1, - anon_sym_RBRACK, - [21400] = 1, - ACTIONS(2564), 1, + [24653] = 1, + ACTIONS(2807), 1, + sym__verbatim_end, + [24657] = 1, + ACTIONS(2809), 1, anon_sym_RBRACK, - [21404] = 1, - ACTIONS(2566), 1, + [24661] = 1, + ACTIONS(2811), 1, sym__verbatim_content, - [21408] = 1, - ACTIONS(2568), 1, + [24665] = 1, + ACTIONS(2813), 1, anon_sym_RBRACK, - [21412] = 1, - ACTIONS(2570), 1, - anon_sym_DASH_RBRACE, - [21416] = 1, - ACTIONS(2572), 1, + [24669] = 1, + ACTIONS(2815), 1, + anon_sym_RBRACK, + [24673] = 1, + ACTIONS(2817), 1, aux_sym_inline_link_destination_token1, - [21420] = 1, - ACTIONS(2574), 1, - anon_sym_PLUS_RBRACE, - [21424] = 1, - ACTIONS(2576), 1, + [24677] = 1, + ACTIONS(2819), 1, + anon_sym_DASH_RBRACE, + [24681] = 1, + ACTIONS(2821), 1, sym_language, - [21428] = 1, - ACTIONS(2578), 1, + [24685] = 1, + ACTIONS(2823), 1, sym__verbatim_content, - [21432] = 1, - ACTIONS(2580), 1, - anon_sym_EQ_RBRACE, - [21436] = 1, - ACTIONS(2582), 1, + [24689] = 1, + ACTIONS(2825), 1, + anon_sym_RBRACK, + [24693] = 1, + ACTIONS(2827), 1, anon_sym_RBRACK, - [21440] = 1, - ACTIONS(2584), 1, + [24697] = 1, + ACTIONS(2829), 1, sym__verbatim_content, - [21444] = 1, - ACTIONS(2586), 1, - anon_sym_GT, - [21448] = 1, - ACTIONS(2588), 1, - anon_sym_DASH_RBRACE, - [21452] = 1, - ACTIONS(2590), 1, + [24701] = 1, + ACTIONS(2831), 1, + sym__whitespace, + [24705] = 1, + ACTIONS(2833), 1, + anon_sym_EQ_RBRACE, + [24709] = 1, + ACTIONS(2835), 1, aux_sym_inline_link_destination_token1, - [21456] = 1, - ACTIONS(2592), 1, - sym__verbatim_end, - [21460] = 1, - ACTIONS(2594), 1, + [24713] = 1, + ACTIONS(2837), 1, + anon_sym_GT, + [24717] = 1, + ACTIONS(2839), 1, sym_language, - [21464] = 1, - ACTIONS(2596), 1, + [24721] = 1, + ACTIONS(2841), 1, sym__verbatim_content, - [21468] = 1, - ACTIONS(2598), 1, - anon_sym_PLUS_RBRACE, - [21472] = 1, - ACTIONS(2600), 1, + [24725] = 1, + ACTIONS(2843), 1, + sym__verbatim_end, + [24729] = 1, + ACTIONS(2845), 1, anon_sym_RBRACK, - [21476] = 1, - ACTIONS(2602), 1, + [24733] = 1, + ACTIONS(2847), 1, sym__verbatim_content, - [21480] = 1, - ACTIONS(2604), 1, + [24737] = 1, + ACTIONS(2849), 1, sym__newline, - [21484] = 1, - ACTIONS(2606), 1, - anon_sym_EQ_RBRACE, - [21488] = 1, - ACTIONS(2608), 1, + [24741] = 1, + ACTIONS(2851), 1, + anon_sym_DASH_RBRACE, + [24745] = 1, + ACTIONS(2853), 1, aux_sym_inline_link_destination_token1, - [21492] = 1, - ACTIONS(2610), 1, + [24749] = 1, + ACTIONS(2855), 1, anon_sym_RBRACE, - [21496] = 1, - ACTIONS(2612), 1, + [24753] = 1, + ACTIONS(2857), 1, sym_language, - [21500] = 1, - ACTIONS(2614), 1, + [24757] = 1, + ACTIONS(2859), 1, sym__verbatim_content, - [21504] = 1, - ACTIONS(2616), 1, - anon_sym_GT, - [21508] = 1, - ACTIONS(2618), 1, + [24761] = 1, + ACTIONS(2861), 1, + anon_sym_PLUS_RBRACE, + [24765] = 1, + ACTIONS(2863), 1, anon_sym_RBRACK, - [21512] = 1, - ACTIONS(2620), 1, + [24769] = 1, + ACTIONS(2865), 1, sym__verbatim_content, - [21516] = 1, - ACTIONS(2622), 1, + [24773] = 1, + ACTIONS(2867), 1, sym__emphasis_end_check, - [21520] = 1, - ACTIONS(2624), 1, - anon_sym_RBRACE, - [21524] = 1, - ACTIONS(2626), 1, + [24777] = 1, + ACTIONS(2869), 1, + anon_sym_EQ_RBRACE, + [24781] = 1, + ACTIONS(2871), 1, aux_sym_inline_link_destination_token1, - [21528] = 1, - ACTIONS(2628), 1, + [24785] = 1, + ACTIONS(2873), 1, anon_sym_RPAREN, - [21532] = 1, - ACTIONS(2630), 1, + [24789] = 1, + ACTIONS(2875), 1, sym_language, - [21536] = 1, - ACTIONS(2632), 1, + [24793] = 1, + ACTIONS(2877), 1, sym__verbatim_content, - [21540] = 1, - ACTIONS(2634), 1, - anon_sym_RBRACK2, - [21544] = 1, - ACTIONS(2636), 1, + [24797] = 1, + ACTIONS(2879), 1, + anon_sym_GT, + [24801] = 1, + ACTIONS(2881), 1, anon_sym_RBRACK, - [21548] = 1, - ACTIONS(2638), 1, + [24805] = 1, + ACTIONS(2883), 1, sym__verbatim_content, - [21552] = 1, - ACTIONS(2640), 1, - anon_sym_RBRACE, - [21556] = 1, - ACTIONS(2642), 1, + [24809] = 1, + ACTIONS(2885), 1, + anon_sym_RBRACK2, + [24813] = 1, + ACTIONS(2887), 1, sym__verbatim_end, - [21560] = 1, - ACTIONS(2644), 1, + [24817] = 1, + ACTIONS(2889), 1, aux_sym_inline_link_destination_token1, - [21564] = 1, - ACTIONS(2646), 1, + [24821] = 1, + ACTIONS(2891), 1, anon_sym_RBRACK, - [21568] = 1, - ACTIONS(2648), 1, + [24825] = 1, + ACTIONS(2893), 1, sym_language, - [21572] = 1, - ACTIONS(2650), 1, + [24829] = 1, + ACTIONS(2895), 1, sym__verbatim_content, - [21576] = 1, - ACTIONS(2652), 1, + [24833] = 1, + ACTIONS(2897), 1, anon_sym_DASH_RBRACE, - [21580] = 1, - ACTIONS(2654), 1, + [24837] = 1, + ACTIONS(2899), 1, anon_sym_RBRACK, - [21584] = 1, - ACTIONS(2656), 1, + [24841] = 1, + ACTIONS(2901), 1, sym__verbatim_content, - [21588] = 1, - ACTIONS(2658), 1, + [24845] = 1, + ACTIONS(2903), 1, anon_sym_PLUS_RBRACE, - [21592] = 1, - ACTIONS(2660), 1, - aux_sym_value_token1, - [21596] = 1, - ACTIONS(2662), 1, - aux_sym_inline_link_destination_token1, - [21600] = 1, - ACTIONS(2664), 1, + [24849] = 1, + ACTIONS(2905), 1, anon_sym_EQ_RBRACE, - [21604] = 1, - ACTIONS(2666), 1, + [24853] = 1, + ACTIONS(2907), 1, + aux_sym_inline_link_destination_token1, + [24857] = 1, + ACTIONS(2909), 1, + anon_sym_GT, + [24861] = 1, + ACTIONS(2911), 1, sym_language, - [21608] = 1, - ACTIONS(2668), 1, + [24865] = 1, + ACTIONS(2913), 1, sym__verbatim_content, - [21612] = 1, - ACTIONS(2670), 1, + [24869] = 1, + ACTIONS(2915), 1, sym__verbatim_end, - [21616] = 1, - ACTIONS(2672), 1, + [24873] = 1, + ACTIONS(2917), 1, anon_sym_RBRACK, - [21620] = 1, - ACTIONS(2674), 1, + [24877] = 1, + ACTIONS(2919), 1, sym__verbatim_content, - [21624] = 1, - ACTIONS(2676), 1, - anon_sym_GT, - [21628] = 1, - ACTIONS(2678), 1, - sym__verbatim_end, - [21632] = 1, - ACTIONS(2680), 1, - aux_sym_inline_link_destination_token1, - [21636] = 1, - ACTIONS(2682), 1, + [24881] = 1, + ACTIONS(2921), 1, sym__newline, - [21640] = 1, - ACTIONS(2684), 1, + [24885] = 1, + ACTIONS(2923), 1, + anon_sym_DQUOTE, + [24889] = 1, + ACTIONS(2925), 1, + aux_sym_inline_link_destination_token1, + [24893] = 1, + ACTIONS(2927), 1, + aux_sym_value_token1, + [24897] = 1, + ACTIONS(2929), 1, sym_language, - [21644] = 1, - ACTIONS(2686), 1, + [24901] = 1, + ACTIONS(2931), 1, + sym__verbatim_content, + [24905] = 1, + ACTIONS(2933), 1, + sym__verbatim_content, + [24909] = 1, + ACTIONS(2935), 1, + anon_sym_RBRACK, + [24913] = 1, + ACTIONS(2937), 1, sym__verbatim_content, - [21648] = 1, - ACTIONS(2688), 1, + [24917] = 1, + ACTIONS(2939), 1, anon_sym_RBRACE, - [21652] = 1, - ACTIONS(2690), 1, + [24921] = 1, + ACTIONS(2941), 1, + sym__verbatim_end, + [24925] = 1, + ACTIONS(2943), 1, + aux_sym_inline_link_destination_token1, + [24929] = 1, + ACTIONS(2945), 1, + aux_sym_inline_link_destination_token1, + [24933] = 1, + ACTIONS(2947), 1, + sym_language, + [24937] = 1, + ACTIONS(2949), 1, + sym__verbatim_content, + [24941] = 1, + ACTIONS(2951), 1, + sym__emphasis_end_check, + [24945] = 1, + ACTIONS(2953), 1, anon_sym_RBRACK, - [21656] = 1, - ACTIONS(2692), 1, + [24949] = 1, + ACTIONS(2955), 1, sym__verbatim_content, - [21660] = 1, - ACTIONS(2694), 1, + [24953] = 1, + ACTIONS(2957), 1, sym__emphasis_end_check, - [21664] = 1, - ACTIONS(2696), 1, - sym__emphasis_begin_check, - [21668] = 1, - ACTIONS(2698), 1, + [24957] = 1, + ACTIONS(2959), 1, + sym_language, + [24961] = 1, + ACTIONS(2961), 1, aux_sym_inline_link_destination_token1, - [21672] = 1, - ACTIONS(2700), 1, + [24965] = 1, + ACTIONS(2963), 1, anon_sym_RPAREN, - [21676] = 1, - ACTIONS(2702), 1, + [24969] = 1, + ACTIONS(2965), 1, sym_language, - [21680] = 1, - ACTIONS(2704), 1, + [24973] = 1, + ACTIONS(2967), 1, + sym__emphasis_begin_check, + [24977] = 1, + ACTIONS(2969), 1, ts_builtin_sym_end, - [21684] = 1, - ACTIONS(2706), 1, + [24981] = 1, + ACTIONS(2971), 1, ts_builtin_sym_end, - [21688] = 1, - ACTIONS(2708), 1, + [24985] = 1, + ACTIONS(2973), 1, anon_sym_RBRACK2, - [21692] = 1, - ACTIONS(2710), 1, + [24989] = 1, + ACTIONS(2975), 1, + anon_sym_EQ, + [24993] = 1, + ACTIONS(2977), 1, + anon_sym_EQ, + [24997] = 1, + ACTIONS(2979), 1, anon_sym_RBRACE, - [21696] = 1, - ACTIONS(2712), 1, - sym__verbatim_end, - [21700] = 1, - ACTIONS(2714), 1, - anon_sym_DQUOTE, - [21704] = 1, - ACTIONS(2716), 1, + [25001] = 1, + ACTIONS(2981), 1, sym__newline, - [21708] = 1, - ACTIONS(2718), 1, + [25005] = 1, + ACTIONS(2983), 1, + sym__verbatim_end, + [25009] = 1, + ACTIONS(2985), 1, anon_sym_RBRACK, - [21712] = 1, - ACTIONS(2720), 1, - anon_sym_DASH_RBRACE, - [21716] = 1, - ACTIONS(2722), 1, + [25013] = 1, + ACTIONS(2987), 1, sym__emphasis_begin_check, - [21720] = 1, - ACTIONS(2724), 1, + [25017] = 1, + ACTIONS(2989), 1, sym__emphasis_begin_check, - [21724] = 1, - ACTIONS(2726), 1, + [25021] = 1, + ACTIONS(2991), 1, sym__emphasis_begin_check, - [21728] = 1, - ACTIONS(2728), 1, + [25025] = 1, + ACTIONS(2993), 1, sym__emphasis_begin_check, - [21732] = 1, - ACTIONS(2730), 1, + [25029] = 1, + ACTIONS(2995), 1, sym__emphasis_begin_check, - [21736] = 1, - ACTIONS(2732), 1, + [25033] = 1, + ACTIONS(2997), 1, sym__emphasis_begin_check, - [21740] = 1, - ACTIONS(2734), 1, + [25037] = 1, + ACTIONS(2999), 1, sym__emphasis_begin_check, - [21744] = 1, - ACTIONS(2736), 1, + [25041] = 1, + ACTIONS(3001), 1, sym__emphasis_begin_check, - [21748] = 1, - ACTIONS(2738), 1, + [25045] = 1, + ACTIONS(3003), 1, + sym__emphasis_begin_check, + [25049] = 1, + ACTIONS(3005), 1, sym__emphasis_begin_check, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(122)] = 0, - [SMALL_STATE(123)] = 52, - [SMALL_STATE(124)] = 104, - [SMALL_STATE(125)] = 152, - [SMALL_STATE(126)] = 202, - [SMALL_STATE(127)] = 254, - [SMALL_STATE(128)] = 302, - [SMALL_STATE(129)] = 350, - [SMALL_STATE(130)] = 402, - [SMALL_STATE(131)] = 452, - [SMALL_STATE(132)] = 502, - [SMALL_STATE(133)] = 552, - [SMALL_STATE(134)] = 604, - [SMALL_STATE(135)] = 654, - [SMALL_STATE(136)] = 702, - [SMALL_STATE(137)] = 750, - [SMALL_STATE(138)] = 798, - [SMALL_STATE(139)] = 846, - [SMALL_STATE(140)] = 894, - [SMALL_STATE(141)] = 946, - [SMALL_STATE(142)] = 998, - [SMALL_STATE(143)] = 1046, - [SMALL_STATE(144)] = 1094, - [SMALL_STATE(145)] = 1144, - [SMALL_STATE(146)] = 1192, - [SMALL_STATE(147)] = 1242, - [SMALL_STATE(148)] = 1294, - [SMALL_STATE(149)] = 1342, - [SMALL_STATE(150)] = 1390, - [SMALL_STATE(151)] = 1438, - [SMALL_STATE(152)] = 1488, - [SMALL_STATE(153)] = 1536, - [SMALL_STATE(154)] = 1584, - [SMALL_STATE(155)] = 1632, - [SMALL_STATE(156)] = 1684, - [SMALL_STATE(157)] = 1734, - [SMALL_STATE(158)] = 1782, - [SMALL_STATE(159)] = 1827, - [SMALL_STATE(160)] = 1874, - [SMALL_STATE(161)] = 1919, - [SMALL_STATE(162)] = 1966, - [SMALL_STATE(163)] = 2011, - [SMALL_STATE(164)] = 2058, - [SMALL_STATE(165)] = 2103, - [SMALL_STATE(166)] = 2150, - [SMALL_STATE(167)] = 2197, - [SMALL_STATE(168)] = 2244, - [SMALL_STATE(169)] = 2289, - [SMALL_STATE(170)] = 2338, - [SMALL_STATE(171)] = 2385, - [SMALL_STATE(172)] = 2434, - [SMALL_STATE(173)] = 2481, - [SMALL_STATE(174)] = 2528, - [SMALL_STATE(175)] = 2575, - [SMALL_STATE(176)] = 2622, - [SMALL_STATE(177)] = 2667, - [SMALL_STATE(178)] = 2714, - [SMALL_STATE(179)] = 2759, - [SMALL_STATE(180)] = 2806, - [SMALL_STATE(181)] = 2853, - [SMALL_STATE(182)] = 2898, - [SMALL_STATE(183)] = 2945, - [SMALL_STATE(184)] = 2990, - [SMALL_STATE(185)] = 3037, - [SMALL_STATE(186)] = 3084, - [SMALL_STATE(187)] = 3131, - [SMALL_STATE(188)] = 3178, - [SMALL_STATE(189)] = 3225, - [SMALL_STATE(190)] = 3267, - [SMALL_STATE(191)] = 3309, - [SMALL_STATE(192)] = 3351, - [SMALL_STATE(193)] = 3393, - [SMALL_STATE(194)] = 3435, - [SMALL_STATE(195)] = 3477, - [SMALL_STATE(196)] = 3519, - [SMALL_STATE(197)] = 3561, - [SMALL_STATE(198)] = 3607, - [SMALL_STATE(199)] = 3651, - [SMALL_STATE(200)] = 3693, - [SMALL_STATE(201)] = 3735, - [SMALL_STATE(202)] = 3781, - [SMALL_STATE(203)] = 3823, - [SMALL_STATE(204)] = 3865, - [SMALL_STATE(205)] = 3907, - [SMALL_STATE(206)] = 3949, - [SMALL_STATE(207)] = 3991, - [SMALL_STATE(208)] = 4033, - [SMALL_STATE(209)] = 4075, - [SMALL_STATE(210)] = 4117, - [SMALL_STATE(211)] = 4159, - [SMALL_STATE(212)] = 4201, - [SMALL_STATE(213)] = 4243, - [SMALL_STATE(214)] = 4285, - [SMALL_STATE(215)] = 4327, - [SMALL_STATE(216)] = 4369, - [SMALL_STATE(217)] = 4411, - [SMALL_STATE(218)] = 4453, - [SMALL_STATE(219)] = 4495, - [SMALL_STATE(220)] = 4537, - [SMALL_STATE(221)] = 4579, - [SMALL_STATE(222)] = 4621, - [SMALL_STATE(223)] = 4663, - [SMALL_STATE(224)] = 4705, - [SMALL_STATE(225)] = 4747, - [SMALL_STATE(226)] = 4789, - [SMALL_STATE(227)] = 4831, - [SMALL_STATE(228)] = 4873, - [SMALL_STATE(229)] = 4915, - [SMALL_STATE(230)] = 4957, - [SMALL_STATE(231)] = 4999, - [SMALL_STATE(232)] = 5045, - [SMALL_STATE(233)] = 5089, - [SMALL_STATE(234)] = 5131, - [SMALL_STATE(235)] = 5173, - [SMALL_STATE(236)] = 5219, - [SMALL_STATE(237)] = 5261, - [SMALL_STATE(238)] = 5303, - [SMALL_STATE(239)] = 5345, - [SMALL_STATE(240)] = 5387, - [SMALL_STATE(241)] = 5429, - [SMALL_STATE(242)] = 5471, - [SMALL_STATE(243)] = 5513, - [SMALL_STATE(244)] = 5555, - [SMALL_STATE(245)] = 5597, - [SMALL_STATE(246)] = 5639, - [SMALL_STATE(247)] = 5681, - [SMALL_STATE(248)] = 5723, - [SMALL_STATE(249)] = 5765, - [SMALL_STATE(250)] = 5807, - [SMALL_STATE(251)] = 5849, - [SMALL_STATE(252)] = 5891, - [SMALL_STATE(253)] = 5933, - [SMALL_STATE(254)] = 5975, - [SMALL_STATE(255)] = 6017, - [SMALL_STATE(256)] = 6059, - [SMALL_STATE(257)] = 6101, - [SMALL_STATE(258)] = 6143, - [SMALL_STATE(259)] = 6185, - [SMALL_STATE(260)] = 6227, - [SMALL_STATE(261)] = 6269, - [SMALL_STATE(262)] = 6311, - [SMALL_STATE(263)] = 6353, - [SMALL_STATE(264)] = 6395, - [SMALL_STATE(265)] = 6437, - [SMALL_STATE(266)] = 6483, - [SMALL_STATE(267)] = 6529, - [SMALL_STATE(268)] = 6571, - [SMALL_STATE(269)] = 6613, - [SMALL_STATE(270)] = 6655, - [SMALL_STATE(271)] = 6697, - [SMALL_STATE(272)] = 6739, - [SMALL_STATE(273)] = 6781, - [SMALL_STATE(274)] = 6823, - [SMALL_STATE(275)] = 6865, - [SMALL_STATE(276)] = 6907, - [SMALL_STATE(277)] = 6949, - [SMALL_STATE(278)] = 6993, - [SMALL_STATE(279)] = 7035, - [SMALL_STATE(280)] = 7077, - [SMALL_STATE(281)] = 7123, - [SMALL_STATE(282)] = 7165, - [SMALL_STATE(283)] = 7207, - [SMALL_STATE(284)] = 7249, - [SMALL_STATE(285)] = 7291, - [SMALL_STATE(286)] = 7333, - [SMALL_STATE(287)] = 7375, - [SMALL_STATE(288)] = 7417, - [SMALL_STATE(289)] = 7459, - [SMALL_STATE(290)] = 7501, - [SMALL_STATE(291)] = 7543, - [SMALL_STATE(292)] = 7585, - [SMALL_STATE(293)] = 7627, - [SMALL_STATE(294)] = 7669, - [SMALL_STATE(295)] = 7711, - [SMALL_STATE(296)] = 7753, - [SMALL_STATE(297)] = 7795, - [SMALL_STATE(298)] = 7837, - [SMALL_STATE(299)] = 7879, - [SMALL_STATE(300)] = 7921, - [SMALL_STATE(301)] = 7963, - [SMALL_STATE(302)] = 8005, - [SMALL_STATE(303)] = 8047, - [SMALL_STATE(304)] = 8089, - [SMALL_STATE(305)] = 8131, - [SMALL_STATE(306)] = 8173, - [SMALL_STATE(307)] = 8215, - [SMALL_STATE(308)] = 8257, - [SMALL_STATE(309)] = 8299, - [SMALL_STATE(310)] = 8341, - [SMALL_STATE(311)] = 8383, - [SMALL_STATE(312)] = 8425, - [SMALL_STATE(313)] = 8467, - [SMALL_STATE(314)] = 8509, - [SMALL_STATE(315)] = 8551, - [SMALL_STATE(316)] = 8593, - [SMALL_STATE(317)] = 8639, - [SMALL_STATE(318)] = 8681, - [SMALL_STATE(319)] = 8723, - [SMALL_STATE(320)] = 8765, - [SMALL_STATE(321)] = 8807, - [SMALL_STATE(322)] = 8849, - [SMALL_STATE(323)] = 8891, - [SMALL_STATE(324)] = 8937, - [SMALL_STATE(325)] = 8979, - [SMALL_STATE(326)] = 9021, - [SMALL_STATE(327)] = 9065, - [SMALL_STATE(328)] = 9109, - [SMALL_STATE(329)] = 9151, - [SMALL_STATE(330)] = 9193, - [SMALL_STATE(331)] = 9239, - [SMALL_STATE(332)] = 9285, - [SMALL_STATE(333)] = 9329, - [SMALL_STATE(334)] = 9371, - [SMALL_STATE(335)] = 9413, - [SMALL_STATE(336)] = 9455, - [SMALL_STATE(337)] = 9497, - [SMALL_STATE(338)] = 9539, - [SMALL_STATE(339)] = 9581, - [SMALL_STATE(340)] = 9623, - [SMALL_STATE(341)] = 9665, - [SMALL_STATE(342)] = 9707, - [SMALL_STATE(343)] = 9749, - [SMALL_STATE(344)] = 9791, - [SMALL_STATE(345)] = 9833, - [SMALL_STATE(346)] = 9879, - [SMALL_STATE(347)] = 9921, - [SMALL_STATE(348)] = 9963, - [SMALL_STATE(349)] = 10005, - [SMALL_STATE(350)] = 10047, - [SMALL_STATE(351)] = 10089, - [SMALL_STATE(352)] = 10131, - [SMALL_STATE(353)] = 10173, - [SMALL_STATE(354)] = 10215, - [SMALL_STATE(355)] = 10257, - [SMALL_STATE(356)] = 10299, - [SMALL_STATE(357)] = 10341, - [SMALL_STATE(358)] = 10383, - [SMALL_STATE(359)] = 10425, - [SMALL_STATE(360)] = 10467, - [SMALL_STATE(361)] = 10509, - [SMALL_STATE(362)] = 10551, - [SMALL_STATE(363)] = 10593, - [SMALL_STATE(364)] = 10635, - [SMALL_STATE(365)] = 10677, - [SMALL_STATE(366)] = 10719, - [SMALL_STATE(367)] = 10765, - [SMALL_STATE(368)] = 10807, - [SMALL_STATE(369)] = 10849, - [SMALL_STATE(370)] = 10891, - [SMALL_STATE(371)] = 10937, - [SMALL_STATE(372)] = 10979, - [SMALL_STATE(373)] = 11021, - [SMALL_STATE(374)] = 11063, - [SMALL_STATE(375)] = 11105, - [SMALL_STATE(376)] = 11147, - [SMALL_STATE(377)] = 11189, - [SMALL_STATE(378)] = 11233, - [SMALL_STATE(379)] = 11275, - [SMALL_STATE(380)] = 11317, - [SMALL_STATE(381)] = 11363, - [SMALL_STATE(382)] = 11405, - [SMALL_STATE(383)] = 11447, - [SMALL_STATE(384)] = 11489, - [SMALL_STATE(385)] = 11531, - [SMALL_STATE(386)] = 11573, - [SMALL_STATE(387)] = 11615, - [SMALL_STATE(388)] = 11657, - [SMALL_STATE(389)] = 11699, - [SMALL_STATE(390)] = 11741, - [SMALL_STATE(391)] = 11783, - [SMALL_STATE(392)] = 11825, - [SMALL_STATE(393)] = 11867, - [SMALL_STATE(394)] = 11909, - [SMALL_STATE(395)] = 11951, - [SMALL_STATE(396)] = 11993, - [SMALL_STATE(397)] = 12035, - [SMALL_STATE(398)] = 12077, - [SMALL_STATE(399)] = 12119, - [SMALL_STATE(400)] = 12161, - [SMALL_STATE(401)] = 12203, - [SMALL_STATE(402)] = 12245, - [SMALL_STATE(403)] = 12287, - [SMALL_STATE(404)] = 12329, - [SMALL_STATE(405)] = 12371, - [SMALL_STATE(406)] = 12413, - [SMALL_STATE(407)] = 12455, - [SMALL_STATE(408)] = 12497, - [SMALL_STATE(409)] = 12539, - [SMALL_STATE(410)] = 12581, - [SMALL_STATE(411)] = 12623, - [SMALL_STATE(412)] = 12665, - [SMALL_STATE(413)] = 12707, - [SMALL_STATE(414)] = 12749, - [SMALL_STATE(415)] = 12791, - [SMALL_STATE(416)] = 12833, - [SMALL_STATE(417)] = 12879, - [SMALL_STATE(418)] = 12921, - [SMALL_STATE(419)] = 12963, - [SMALL_STATE(420)] = 13005, - [SMALL_STATE(421)] = 13047, - [SMALL_STATE(422)] = 13089, - [SMALL_STATE(423)] = 13131, - [SMALL_STATE(424)] = 13173, - [SMALL_STATE(425)] = 13215, - [SMALL_STATE(426)] = 13257, - [SMALL_STATE(427)] = 13299, - [SMALL_STATE(428)] = 13343, - [SMALL_STATE(429)] = 13385, - [SMALL_STATE(430)] = 13427, - [SMALL_STATE(431)] = 13473, - [SMALL_STATE(432)] = 13515, - [SMALL_STATE(433)] = 13557, - [SMALL_STATE(434)] = 13599, - [SMALL_STATE(435)] = 13641, - [SMALL_STATE(436)] = 13683, - [SMALL_STATE(437)] = 13725, - [SMALL_STATE(438)] = 13767, - [SMALL_STATE(439)] = 13809, - [SMALL_STATE(440)] = 13851, - [SMALL_STATE(441)] = 13893, - [SMALL_STATE(442)] = 13935, - [SMALL_STATE(443)] = 13977, - [SMALL_STATE(444)] = 14019, - [SMALL_STATE(445)] = 14061, - [SMALL_STATE(446)] = 14103, - [SMALL_STATE(447)] = 14145, - [SMALL_STATE(448)] = 14187, - [SMALL_STATE(449)] = 14229, - [SMALL_STATE(450)] = 14271, - [SMALL_STATE(451)] = 14313, - [SMALL_STATE(452)] = 14355, - [SMALL_STATE(453)] = 14397, - [SMALL_STATE(454)] = 14439, - [SMALL_STATE(455)] = 14481, - [SMALL_STATE(456)] = 14523, - [SMALL_STATE(457)] = 14565, - [SMALL_STATE(458)] = 14607, - [SMALL_STATE(459)] = 14649, - [SMALL_STATE(460)] = 14691, - [SMALL_STATE(461)] = 14733, - [SMALL_STATE(462)] = 14775, - [SMALL_STATE(463)] = 14817, - [SMALL_STATE(464)] = 14859, - [SMALL_STATE(465)] = 14901, - [SMALL_STATE(466)] = 14943, - [SMALL_STATE(467)] = 14985, - [SMALL_STATE(468)] = 15031, - [SMALL_STATE(469)] = 15075, - [SMALL_STATE(470)] = 15117, - [SMALL_STATE(471)] = 15159, - [SMALL_STATE(472)] = 15201, - [SMALL_STATE(473)] = 15243, - [SMALL_STATE(474)] = 15285, - [SMALL_STATE(475)] = 15327, - [SMALL_STATE(476)] = 15369, - [SMALL_STATE(477)] = 15415, - [SMALL_STATE(478)] = 15457, - [SMALL_STATE(479)] = 15499, - [SMALL_STATE(480)] = 15543, - [SMALL_STATE(481)] = 15585, - [SMALL_STATE(482)] = 15627, - [SMALL_STATE(483)] = 15669, - [SMALL_STATE(484)] = 15711, - [SMALL_STATE(485)] = 15753, - [SMALL_STATE(486)] = 15795, - [SMALL_STATE(487)] = 15841, - [SMALL_STATE(488)] = 15887, - [SMALL_STATE(489)] = 15929, - [SMALL_STATE(490)] = 15971, - [SMALL_STATE(491)] = 16017, - [SMALL_STATE(492)] = 16058, - [SMALL_STATE(493)] = 16099, - [SMALL_STATE(494)] = 16140, - [SMALL_STATE(495)] = 16181, - [SMALL_STATE(496)] = 16222, - [SMALL_STATE(497)] = 16263, - [SMALL_STATE(498)] = 16304, - [SMALL_STATE(499)] = 16345, - [SMALL_STATE(500)] = 16386, - [SMALL_STATE(501)] = 16427, - [SMALL_STATE(502)] = 16468, - [SMALL_STATE(503)] = 16509, - [SMALL_STATE(504)] = 16550, - [SMALL_STATE(505)] = 16591, - [SMALL_STATE(506)] = 16632, - [SMALL_STATE(507)] = 16673, - [SMALL_STATE(508)] = 16714, - [SMALL_STATE(509)] = 16755, - [SMALL_STATE(510)] = 16796, - [SMALL_STATE(511)] = 16837, - [SMALL_STATE(512)] = 16878, - [SMALL_STATE(513)] = 16919, - [SMALL_STATE(514)] = 16960, - [SMALL_STATE(515)] = 17001, - [SMALL_STATE(516)] = 17042, - [SMALL_STATE(517)] = 17083, - [SMALL_STATE(518)] = 17124, - [SMALL_STATE(519)] = 17165, - [SMALL_STATE(520)] = 17206, - [SMALL_STATE(521)] = 17247, - [SMALL_STATE(522)] = 17288, - [SMALL_STATE(523)] = 17329, - [SMALL_STATE(524)] = 17370, - [SMALL_STATE(525)] = 17411, - [SMALL_STATE(526)] = 17456, - [SMALL_STATE(527)] = 17497, - [SMALL_STATE(528)] = 17538, - [SMALL_STATE(529)] = 17579, - [SMALL_STATE(530)] = 17622, - [SMALL_STATE(531)] = 17663, - [SMALL_STATE(532)] = 17704, - [SMALL_STATE(533)] = 17745, - [SMALL_STATE(534)] = 17788, - [SMALL_STATE(535)] = 17829, - [SMALL_STATE(536)] = 17870, - [SMALL_STATE(537)] = 17911, - [SMALL_STATE(538)] = 17952, - [SMALL_STATE(539)] = 17993, - [SMALL_STATE(540)] = 18034, - [SMALL_STATE(541)] = 18075, - [SMALL_STATE(542)] = 18116, - [SMALL_STATE(543)] = 18157, - [SMALL_STATE(544)] = 18198, - [SMALL_STATE(545)] = 18239, - [SMALL_STATE(546)] = 18280, - [SMALL_STATE(547)] = 18321, - [SMALL_STATE(548)] = 18362, - [SMALL_STATE(549)] = 18403, - [SMALL_STATE(550)] = 18444, - [SMALL_STATE(551)] = 18485, - [SMALL_STATE(552)] = 18525, - [SMALL_STATE(553)] = 18565, - [SMALL_STATE(554)] = 18605, - [SMALL_STATE(555)] = 18636, - [SMALL_STATE(556)] = 18667, - [SMALL_STATE(557)] = 18698, - [SMALL_STATE(558)] = 18729, - [SMALL_STATE(559)] = 18760, - [SMALL_STATE(560)] = 18791, - [SMALL_STATE(561)] = 18822, - [SMALL_STATE(562)] = 18853, - [SMALL_STATE(563)] = 18884, - [SMALL_STATE(564)] = 18915, - [SMALL_STATE(565)] = 18946, - [SMALL_STATE(566)] = 18977, - [SMALL_STATE(567)] = 19008, - [SMALL_STATE(568)] = 19039, - [SMALL_STATE(569)] = 19070, - [SMALL_STATE(570)] = 19101, - [SMALL_STATE(571)] = 19132, - [SMALL_STATE(572)] = 19163, - [SMALL_STATE(573)] = 19194, - [SMALL_STATE(574)] = 19225, - [SMALL_STATE(575)] = 19256, - [SMALL_STATE(576)] = 19287, - [SMALL_STATE(577)] = 19318, - [SMALL_STATE(578)] = 19349, - [SMALL_STATE(579)] = 19380, - [SMALL_STATE(580)] = 19411, - [SMALL_STATE(581)] = 19442, - [SMALL_STATE(582)] = 19473, - [SMALL_STATE(583)] = 19504, - [SMALL_STATE(584)] = 19535, - [SMALL_STATE(585)] = 19566, - [SMALL_STATE(586)] = 19597, - [SMALL_STATE(587)] = 19628, - [SMALL_STATE(588)] = 19659, - [SMALL_STATE(589)] = 19690, - [SMALL_STATE(590)] = 19721, - [SMALL_STATE(591)] = 19752, - [SMALL_STATE(592)] = 19783, - [SMALL_STATE(593)] = 19814, - [SMALL_STATE(594)] = 19845, - [SMALL_STATE(595)] = 19876, - [SMALL_STATE(596)] = 19886, - [SMALL_STATE(597)] = 19896, - [SMALL_STATE(598)] = 19906, - [SMALL_STATE(599)] = 19916, - [SMALL_STATE(600)] = 19926, - [SMALL_STATE(601)] = 19936, - [SMALL_STATE(602)] = 19946, - [SMALL_STATE(603)] = 19956, - [SMALL_STATE(604)] = 19966, - [SMALL_STATE(605)] = 19980, - [SMALL_STATE(606)] = 19996, - [SMALL_STATE(607)] = 20010, - [SMALL_STATE(608)] = 20026, - [SMALL_STATE(609)] = 20042, - [SMALL_STATE(610)] = 20058, - [SMALL_STATE(611)] = 20074, - [SMALL_STATE(612)] = 20090, - [SMALL_STATE(613)] = 20106, - [SMALL_STATE(614)] = 20122, - [SMALL_STATE(615)] = 20138, - [SMALL_STATE(616)] = 20152, - [SMALL_STATE(617)] = 20168, - [SMALL_STATE(618)] = 20182, - [SMALL_STATE(619)] = 20194, - [SMALL_STATE(620)] = 20210, - [SMALL_STATE(621)] = 20226, - [SMALL_STATE(622)] = 20240, - [SMALL_STATE(623)] = 20256, - [SMALL_STATE(624)] = 20270, - [SMALL_STATE(625)] = 20286, - [SMALL_STATE(626)] = 20300, - [SMALL_STATE(627)] = 20316, - [SMALL_STATE(628)] = 20330, - [SMALL_STATE(629)] = 20346, - [SMALL_STATE(630)] = 20362, - [SMALL_STATE(631)] = 20376, - [SMALL_STATE(632)] = 20390, - [SMALL_STATE(633)] = 20406, - [SMALL_STATE(634)] = 20422, - [SMALL_STATE(635)] = 20438, - [SMALL_STATE(636)] = 20450, - [SMALL_STATE(637)] = 20462, - [SMALL_STATE(638)] = 20469, - [SMALL_STATE(639)] = 20479, - [SMALL_STATE(640)] = 20487, - [SMALL_STATE(641)] = 20497, - [SMALL_STATE(642)] = 20507, - [SMALL_STATE(643)] = 20517, - [SMALL_STATE(644)] = 20527, - [SMALL_STATE(645)] = 20537, - [SMALL_STATE(646)] = 20547, - [SMALL_STATE(647)] = 20557, - [SMALL_STATE(648)] = 20567, - [SMALL_STATE(649)] = 20577, - [SMALL_STATE(650)] = 20587, - [SMALL_STATE(651)] = 20595, - [SMALL_STATE(652)] = 20602, - [SMALL_STATE(653)] = 20609, - [SMALL_STATE(654)] = 20616, - [SMALL_STATE(655)] = 20623, - [SMALL_STATE(656)] = 20630, - [SMALL_STATE(657)] = 20637, - [SMALL_STATE(658)] = 20644, - [SMALL_STATE(659)] = 20651, - [SMALL_STATE(660)] = 20658, - [SMALL_STATE(661)] = 20665, - [SMALL_STATE(662)] = 20672, - [SMALL_STATE(663)] = 20679, - [SMALL_STATE(664)] = 20686, - [SMALL_STATE(665)] = 20693, - [SMALL_STATE(666)] = 20700, - [SMALL_STATE(667)] = 20707, - [SMALL_STATE(668)] = 20714, - [SMALL_STATE(669)] = 20721, - [SMALL_STATE(670)] = 20728, - [SMALL_STATE(671)] = 20735, - [SMALL_STATE(672)] = 20742, - [SMALL_STATE(673)] = 20749, - [SMALL_STATE(674)] = 20756, - [SMALL_STATE(675)] = 20763, - [SMALL_STATE(676)] = 20770, - [SMALL_STATE(677)] = 20777, - [SMALL_STATE(678)] = 20784, - [SMALL_STATE(679)] = 20791, - [SMALL_STATE(680)] = 20798, - [SMALL_STATE(681)] = 20805, - [SMALL_STATE(682)] = 20812, - [SMALL_STATE(683)] = 20819, - [SMALL_STATE(684)] = 20826, - [SMALL_STATE(685)] = 20833, - [SMALL_STATE(686)] = 20840, - [SMALL_STATE(687)] = 20847, - [SMALL_STATE(688)] = 20854, - [SMALL_STATE(689)] = 20861, - [SMALL_STATE(690)] = 20868, - [SMALL_STATE(691)] = 20875, - [SMALL_STATE(692)] = 20882, - [SMALL_STATE(693)] = 20889, - [SMALL_STATE(694)] = 20896, - [SMALL_STATE(695)] = 20903, - [SMALL_STATE(696)] = 20910, - [SMALL_STATE(697)] = 20917, - [SMALL_STATE(698)] = 20924, - [SMALL_STATE(699)] = 20931, - [SMALL_STATE(700)] = 20938, - [SMALL_STATE(701)] = 20945, - [SMALL_STATE(702)] = 20952, - [SMALL_STATE(703)] = 20956, - [SMALL_STATE(704)] = 20960, - [SMALL_STATE(705)] = 20964, - [SMALL_STATE(706)] = 20968, - [SMALL_STATE(707)] = 20972, - [SMALL_STATE(708)] = 20976, - [SMALL_STATE(709)] = 20980, - [SMALL_STATE(710)] = 20984, - [SMALL_STATE(711)] = 20988, - [SMALL_STATE(712)] = 20992, - [SMALL_STATE(713)] = 20996, - [SMALL_STATE(714)] = 21000, - [SMALL_STATE(715)] = 21004, - [SMALL_STATE(716)] = 21008, - [SMALL_STATE(717)] = 21012, - [SMALL_STATE(718)] = 21016, - [SMALL_STATE(719)] = 21020, - [SMALL_STATE(720)] = 21024, - [SMALL_STATE(721)] = 21028, - [SMALL_STATE(722)] = 21032, - [SMALL_STATE(723)] = 21036, - [SMALL_STATE(724)] = 21040, - [SMALL_STATE(725)] = 21044, - [SMALL_STATE(726)] = 21048, - [SMALL_STATE(727)] = 21052, - [SMALL_STATE(728)] = 21056, - [SMALL_STATE(729)] = 21060, - [SMALL_STATE(730)] = 21064, - [SMALL_STATE(731)] = 21068, - [SMALL_STATE(732)] = 21072, - [SMALL_STATE(733)] = 21076, - [SMALL_STATE(734)] = 21080, - [SMALL_STATE(735)] = 21084, - [SMALL_STATE(736)] = 21088, - [SMALL_STATE(737)] = 21092, - [SMALL_STATE(738)] = 21096, - [SMALL_STATE(739)] = 21100, - [SMALL_STATE(740)] = 21104, - [SMALL_STATE(741)] = 21108, - [SMALL_STATE(742)] = 21112, - [SMALL_STATE(743)] = 21116, - [SMALL_STATE(744)] = 21120, - [SMALL_STATE(745)] = 21124, - [SMALL_STATE(746)] = 21128, - [SMALL_STATE(747)] = 21132, - [SMALL_STATE(748)] = 21136, - [SMALL_STATE(749)] = 21140, - [SMALL_STATE(750)] = 21144, - [SMALL_STATE(751)] = 21148, - [SMALL_STATE(752)] = 21152, - [SMALL_STATE(753)] = 21156, - [SMALL_STATE(754)] = 21160, - [SMALL_STATE(755)] = 21164, - [SMALL_STATE(756)] = 21168, - [SMALL_STATE(757)] = 21172, - [SMALL_STATE(758)] = 21176, - [SMALL_STATE(759)] = 21180, - [SMALL_STATE(760)] = 21184, - [SMALL_STATE(761)] = 21188, - [SMALL_STATE(762)] = 21192, - [SMALL_STATE(763)] = 21196, - [SMALL_STATE(764)] = 21200, - [SMALL_STATE(765)] = 21204, - [SMALL_STATE(766)] = 21208, - [SMALL_STATE(767)] = 21212, - [SMALL_STATE(768)] = 21216, - [SMALL_STATE(769)] = 21220, - [SMALL_STATE(770)] = 21224, - [SMALL_STATE(771)] = 21228, - [SMALL_STATE(772)] = 21232, - [SMALL_STATE(773)] = 21236, - [SMALL_STATE(774)] = 21240, - [SMALL_STATE(775)] = 21244, - [SMALL_STATE(776)] = 21248, - [SMALL_STATE(777)] = 21252, - [SMALL_STATE(778)] = 21256, - [SMALL_STATE(779)] = 21260, - [SMALL_STATE(780)] = 21264, - [SMALL_STATE(781)] = 21268, - [SMALL_STATE(782)] = 21272, - [SMALL_STATE(783)] = 21276, - [SMALL_STATE(784)] = 21280, - [SMALL_STATE(785)] = 21284, - [SMALL_STATE(786)] = 21288, - [SMALL_STATE(787)] = 21292, - [SMALL_STATE(788)] = 21296, - [SMALL_STATE(789)] = 21300, - [SMALL_STATE(790)] = 21304, - [SMALL_STATE(791)] = 21308, - [SMALL_STATE(792)] = 21312, - [SMALL_STATE(793)] = 21316, - [SMALL_STATE(794)] = 21320, - [SMALL_STATE(795)] = 21324, - [SMALL_STATE(796)] = 21328, - [SMALL_STATE(797)] = 21332, - [SMALL_STATE(798)] = 21336, - [SMALL_STATE(799)] = 21340, - [SMALL_STATE(800)] = 21344, - [SMALL_STATE(801)] = 21348, - [SMALL_STATE(802)] = 21352, - [SMALL_STATE(803)] = 21356, - [SMALL_STATE(804)] = 21360, - [SMALL_STATE(805)] = 21364, - [SMALL_STATE(806)] = 21368, - [SMALL_STATE(807)] = 21372, - [SMALL_STATE(808)] = 21376, - [SMALL_STATE(809)] = 21380, - [SMALL_STATE(810)] = 21384, - [SMALL_STATE(811)] = 21388, - [SMALL_STATE(812)] = 21392, - [SMALL_STATE(813)] = 21396, - [SMALL_STATE(814)] = 21400, - [SMALL_STATE(815)] = 21404, - [SMALL_STATE(816)] = 21408, - [SMALL_STATE(817)] = 21412, - [SMALL_STATE(818)] = 21416, - [SMALL_STATE(819)] = 21420, - [SMALL_STATE(820)] = 21424, - [SMALL_STATE(821)] = 21428, - [SMALL_STATE(822)] = 21432, - [SMALL_STATE(823)] = 21436, - [SMALL_STATE(824)] = 21440, - [SMALL_STATE(825)] = 21444, - [SMALL_STATE(826)] = 21448, - [SMALL_STATE(827)] = 21452, - [SMALL_STATE(828)] = 21456, - [SMALL_STATE(829)] = 21460, - [SMALL_STATE(830)] = 21464, - [SMALL_STATE(831)] = 21468, - [SMALL_STATE(832)] = 21472, - [SMALL_STATE(833)] = 21476, - [SMALL_STATE(834)] = 21480, - [SMALL_STATE(835)] = 21484, - [SMALL_STATE(836)] = 21488, - [SMALL_STATE(837)] = 21492, - [SMALL_STATE(838)] = 21496, - [SMALL_STATE(839)] = 21500, - [SMALL_STATE(840)] = 21504, - [SMALL_STATE(841)] = 21508, - [SMALL_STATE(842)] = 21512, - [SMALL_STATE(843)] = 21516, - [SMALL_STATE(844)] = 21520, - [SMALL_STATE(845)] = 21524, - [SMALL_STATE(846)] = 21528, - [SMALL_STATE(847)] = 21532, - [SMALL_STATE(848)] = 21536, - [SMALL_STATE(849)] = 21540, - [SMALL_STATE(850)] = 21544, - [SMALL_STATE(851)] = 21548, - [SMALL_STATE(852)] = 21552, - [SMALL_STATE(853)] = 21556, - [SMALL_STATE(854)] = 21560, - [SMALL_STATE(855)] = 21564, - [SMALL_STATE(856)] = 21568, - [SMALL_STATE(857)] = 21572, - [SMALL_STATE(858)] = 21576, - [SMALL_STATE(859)] = 21580, - [SMALL_STATE(860)] = 21584, - [SMALL_STATE(861)] = 21588, - [SMALL_STATE(862)] = 21592, - [SMALL_STATE(863)] = 21596, - [SMALL_STATE(864)] = 21600, - [SMALL_STATE(865)] = 21604, - [SMALL_STATE(866)] = 21608, - [SMALL_STATE(867)] = 21612, - [SMALL_STATE(868)] = 21616, - [SMALL_STATE(869)] = 21620, - [SMALL_STATE(870)] = 21624, - [SMALL_STATE(871)] = 21628, - [SMALL_STATE(872)] = 21632, - [SMALL_STATE(873)] = 21636, - [SMALL_STATE(874)] = 21640, - [SMALL_STATE(875)] = 21644, - [SMALL_STATE(876)] = 21648, - [SMALL_STATE(877)] = 21652, - [SMALL_STATE(878)] = 21656, - [SMALL_STATE(879)] = 21660, - [SMALL_STATE(880)] = 21664, - [SMALL_STATE(881)] = 21668, - [SMALL_STATE(882)] = 21672, - [SMALL_STATE(883)] = 21676, - [SMALL_STATE(884)] = 21680, - [SMALL_STATE(885)] = 21684, - [SMALL_STATE(886)] = 21688, - [SMALL_STATE(887)] = 21692, - [SMALL_STATE(888)] = 21696, - [SMALL_STATE(889)] = 21700, - [SMALL_STATE(890)] = 21704, - [SMALL_STATE(891)] = 21708, - [SMALL_STATE(892)] = 21712, - [SMALL_STATE(893)] = 21716, - [SMALL_STATE(894)] = 21720, - [SMALL_STATE(895)] = 21724, - [SMALL_STATE(896)] = 21728, - [SMALL_STATE(897)] = 21732, - [SMALL_STATE(898)] = 21736, - [SMALL_STATE(899)] = 21740, - [SMALL_STATE(900)] = 21744, - [SMALL_STATE(901)] = 21748, + [SMALL_STATE(132)] = 0, + [SMALL_STATE(133)] = 48, + [SMALL_STATE(134)] = 100, + [SMALL_STATE(135)] = 152, + [SMALL_STATE(136)] = 200, + [SMALL_STATE(137)] = 252, + [SMALL_STATE(138)] = 302, + [SMALL_STATE(139)] = 354, + [SMALL_STATE(140)] = 402, + [SMALL_STATE(141)] = 450, + [SMALL_STATE(142)] = 500, + [SMALL_STATE(143)] = 548, + [SMALL_STATE(144)] = 596, + [SMALL_STATE(145)] = 648, + [SMALL_STATE(146)] = 696, + [SMALL_STATE(147)] = 744, + [SMALL_STATE(148)] = 794, + [SMALL_STATE(149)] = 842, + [SMALL_STATE(150)] = 892, + [SMALL_STATE(151)] = 940, + [SMALL_STATE(152)] = 992, + [SMALL_STATE(153)] = 1040, + [SMALL_STATE(154)] = 1090, + [SMALL_STATE(155)] = 1138, + [SMALL_STATE(156)] = 1188, + [SMALL_STATE(157)] = 1236, + [SMALL_STATE(158)] = 1288, + [SMALL_STATE(159)] = 1336, + [SMALL_STATE(160)] = 1388, + [SMALL_STATE(161)] = 1436, + [SMALL_STATE(162)] = 1486, + [SMALL_STATE(163)] = 1534, + [SMALL_STATE(164)] = 1584, + [SMALL_STATE(165)] = 1636, + [SMALL_STATE(166)] = 1684, + [SMALL_STATE(167)] = 1732, + [SMALL_STATE(168)] = 1784, + [SMALL_STATE(169)] = 1832, + [SMALL_STATE(170)] = 1880, + [SMALL_STATE(171)] = 1930, + [SMALL_STATE(172)] = 1980, + [SMALL_STATE(173)] = 2027, + [SMALL_STATE(174)] = 2072, + [SMALL_STATE(175)] = 2117, + [SMALL_STATE(176)] = 2164, + [SMALL_STATE(177)] = 2211, + [SMALL_STATE(178)] = 2256, + [SMALL_STATE(179)] = 2303, + [SMALL_STATE(180)] = 2350, + [SMALL_STATE(181)] = 2395, + [SMALL_STATE(182)] = 2440, + [SMALL_STATE(183)] = 2487, + [SMALL_STATE(184)] = 2532, + [SMALL_STATE(185)] = 2579, + [SMALL_STATE(186)] = 2626, + [SMALL_STATE(187)] = 2671, + [SMALL_STATE(188)] = 2716, + [SMALL_STATE(189)] = 2763, + [SMALL_STATE(190)] = 2810, + [SMALL_STATE(191)] = 2855, + [SMALL_STATE(192)] = 2900, + [SMALL_STATE(193)] = 2945, + [SMALL_STATE(194)] = 2990, + [SMALL_STATE(195)] = 3035, + [SMALL_STATE(196)] = 3082, + [SMALL_STATE(197)] = 3127, + [SMALL_STATE(198)] = 3174, + [SMALL_STATE(199)] = 3221, + [SMALL_STATE(200)] = 3268, + [SMALL_STATE(201)] = 3317, + [SMALL_STATE(202)] = 3364, + [SMALL_STATE(203)] = 3411, + [SMALL_STATE(204)] = 3456, + [SMALL_STATE(205)] = 3503, + [SMALL_STATE(206)] = 3548, + [SMALL_STATE(207)] = 3595, + [SMALL_STATE(208)] = 3642, + [SMALL_STATE(209)] = 3687, + [SMALL_STATE(210)] = 3734, + [SMALL_STATE(211)] = 3783, + [SMALL_STATE(212)] = 3830, + [SMALL_STATE(213)] = 3875, + [SMALL_STATE(214)] = 3920, + [SMALL_STATE(215)] = 3965, + [SMALL_STATE(216)] = 4012, + [SMALL_STATE(217)] = 4054, + [SMALL_STATE(218)] = 4096, + [SMALL_STATE(219)] = 4138, + [SMALL_STATE(220)] = 4180, + [SMALL_STATE(221)] = 4222, + [SMALL_STATE(222)] = 4264, + [SMALL_STATE(223)] = 4306, + [SMALL_STATE(224)] = 4352, + [SMALL_STATE(225)] = 4394, + [SMALL_STATE(226)] = 4436, + [SMALL_STATE(227)] = 4478, + [SMALL_STATE(228)] = 4520, + [SMALL_STATE(229)] = 4562, + [SMALL_STATE(230)] = 4604, + [SMALL_STATE(231)] = 4646, + [SMALL_STATE(232)] = 4688, + [SMALL_STATE(233)] = 4730, + [SMALL_STATE(234)] = 4772, + [SMALL_STATE(235)] = 4816, + [SMALL_STATE(236)] = 4858, + [SMALL_STATE(237)] = 4900, + [SMALL_STATE(238)] = 4942, + [SMALL_STATE(239)] = 4984, + [SMALL_STATE(240)] = 5026, + [SMALL_STATE(241)] = 5068, + [SMALL_STATE(242)] = 5110, + [SMALL_STATE(243)] = 5156, + [SMALL_STATE(244)] = 5200, + [SMALL_STATE(245)] = 5242, + [SMALL_STATE(246)] = 5284, + [SMALL_STATE(247)] = 5330, + [SMALL_STATE(248)] = 5372, + [SMALL_STATE(249)] = 5414, + [SMALL_STATE(250)] = 5456, + [SMALL_STATE(251)] = 5498, + [SMALL_STATE(252)] = 5540, + [SMALL_STATE(253)] = 5582, + [SMALL_STATE(254)] = 5624, + [SMALL_STATE(255)] = 5666, + [SMALL_STATE(256)] = 5708, + [SMALL_STATE(257)] = 5750, + [SMALL_STATE(258)] = 5792, + [SMALL_STATE(259)] = 5834, + [SMALL_STATE(260)] = 5876, + [SMALL_STATE(261)] = 5918, + [SMALL_STATE(262)] = 5960, + [SMALL_STATE(263)] = 6002, + [SMALL_STATE(264)] = 6044, + [SMALL_STATE(265)] = 6086, + [SMALL_STATE(266)] = 6128, + [SMALL_STATE(267)] = 6170, + [SMALL_STATE(268)] = 6212, + [SMALL_STATE(269)] = 6254, + [SMALL_STATE(270)] = 6300, + [SMALL_STATE(271)] = 6342, + [SMALL_STATE(272)] = 6384, + [SMALL_STATE(273)] = 6426, + [SMALL_STATE(274)] = 6468, + [SMALL_STATE(275)] = 6510, + [SMALL_STATE(276)] = 6552, + [SMALL_STATE(277)] = 6594, + [SMALL_STATE(278)] = 6636, + [SMALL_STATE(279)] = 6678, + [SMALL_STATE(280)] = 6724, + [SMALL_STATE(281)] = 6766, + [SMALL_STATE(282)] = 6808, + [SMALL_STATE(283)] = 6850, + [SMALL_STATE(284)] = 6892, + [SMALL_STATE(285)] = 6938, + [SMALL_STATE(286)] = 6980, + [SMALL_STATE(287)] = 7022, + [SMALL_STATE(288)] = 7066, + [SMALL_STATE(289)] = 7112, + [SMALL_STATE(290)] = 7154, + [SMALL_STATE(291)] = 7198, + [SMALL_STATE(292)] = 7240, + [SMALL_STATE(293)] = 7282, + [SMALL_STATE(294)] = 7328, + [SMALL_STATE(295)] = 7370, + [SMALL_STATE(296)] = 7412, + [SMALL_STATE(297)] = 7454, + [SMALL_STATE(298)] = 7496, + [SMALL_STATE(299)] = 7542, + [SMALL_STATE(300)] = 7584, + [SMALL_STATE(301)] = 7626, + [SMALL_STATE(302)] = 7668, + [SMALL_STATE(303)] = 7710, + [SMALL_STATE(304)] = 7752, + [SMALL_STATE(305)] = 7794, + [SMALL_STATE(306)] = 7836, + [SMALL_STATE(307)] = 7878, + [SMALL_STATE(308)] = 7920, + [SMALL_STATE(309)] = 7962, + [SMALL_STATE(310)] = 8004, + [SMALL_STATE(311)] = 8046, + [SMALL_STATE(312)] = 8088, + [SMALL_STATE(313)] = 8130, + [SMALL_STATE(314)] = 8172, + [SMALL_STATE(315)] = 8214, + [SMALL_STATE(316)] = 8256, + [SMALL_STATE(317)] = 8298, + [SMALL_STATE(318)] = 8340, + [SMALL_STATE(319)] = 8382, + [SMALL_STATE(320)] = 8424, + [SMALL_STATE(321)] = 8466, + [SMALL_STATE(322)] = 8508, + [SMALL_STATE(323)] = 8550, + [SMALL_STATE(324)] = 8592, + [SMALL_STATE(325)] = 8634, + [SMALL_STATE(326)] = 8676, + [SMALL_STATE(327)] = 8718, + [SMALL_STATE(328)] = 8760, + [SMALL_STATE(329)] = 8802, + [SMALL_STATE(330)] = 8844, + [SMALL_STATE(331)] = 8886, + [SMALL_STATE(332)] = 8932, + [SMALL_STATE(333)] = 8974, + [SMALL_STATE(334)] = 9016, + [SMALL_STATE(335)] = 9058, + [SMALL_STATE(336)] = 9100, + [SMALL_STATE(337)] = 9142, + [SMALL_STATE(338)] = 9184, + [SMALL_STATE(339)] = 9226, + [SMALL_STATE(340)] = 9268, + [SMALL_STATE(341)] = 9310, + [SMALL_STATE(342)] = 9352, + [SMALL_STATE(343)] = 9396, + [SMALL_STATE(344)] = 9438, + [SMALL_STATE(345)] = 9480, + [SMALL_STATE(346)] = 9526, + [SMALL_STATE(347)] = 9568, + [SMALL_STATE(348)] = 9610, + [SMALL_STATE(349)] = 9652, + [SMALL_STATE(350)] = 9694, + [SMALL_STATE(351)] = 9736, + [SMALL_STATE(352)] = 9778, + [SMALL_STATE(353)] = 9820, + [SMALL_STATE(354)] = 9862, + [SMALL_STATE(355)] = 9904, + [SMALL_STATE(356)] = 9946, + [SMALL_STATE(357)] = 9988, + [SMALL_STATE(358)] = 10030, + [SMALL_STATE(359)] = 10072, + [SMALL_STATE(360)] = 10114, + [SMALL_STATE(361)] = 10156, + [SMALL_STATE(362)] = 10198, + [SMALL_STATE(363)] = 10240, + [SMALL_STATE(364)] = 10282, + [SMALL_STATE(365)] = 10324, + [SMALL_STATE(366)] = 10366, + [SMALL_STATE(367)] = 10408, + [SMALL_STATE(368)] = 10450, + [SMALL_STATE(369)] = 10492, + [SMALL_STATE(370)] = 10534, + [SMALL_STATE(371)] = 10576, + [SMALL_STATE(372)] = 10618, + [SMALL_STATE(373)] = 10660, + [SMALL_STATE(374)] = 10702, + [SMALL_STATE(375)] = 10744, + [SMALL_STATE(376)] = 10786, + [SMALL_STATE(377)] = 10828, + [SMALL_STATE(378)] = 10870, + [SMALL_STATE(379)] = 10912, + [SMALL_STATE(380)] = 10954, + [SMALL_STATE(381)] = 10996, + [SMALL_STATE(382)] = 11040, + [SMALL_STATE(383)] = 11082, + [SMALL_STATE(384)] = 11128, + [SMALL_STATE(385)] = 11170, + [SMALL_STATE(386)] = 11212, + [SMALL_STATE(387)] = 11254, + [SMALL_STATE(388)] = 11296, + [SMALL_STATE(389)] = 11338, + [SMALL_STATE(390)] = 11384, + [SMALL_STATE(391)] = 11426, + [SMALL_STATE(392)] = 11468, + [SMALL_STATE(393)] = 11510, + [SMALL_STATE(394)] = 11556, + [SMALL_STATE(395)] = 11600, + [SMALL_STATE(396)] = 11642, + [SMALL_STATE(397)] = 11684, + [SMALL_STATE(398)] = 11730, + [SMALL_STATE(399)] = 11772, + [SMALL_STATE(400)] = 11814, + [SMALL_STATE(401)] = 11856, + [SMALL_STATE(402)] = 11898, + [SMALL_STATE(403)] = 11940, + [SMALL_STATE(404)] = 11982, + [SMALL_STATE(405)] = 12024, + [SMALL_STATE(406)] = 12066, + [SMALL_STATE(407)] = 12108, + [SMALL_STATE(408)] = 12150, + [SMALL_STATE(409)] = 12192, + [SMALL_STATE(410)] = 12234, + [SMALL_STATE(411)] = 12276, + [SMALL_STATE(412)] = 12318, + [SMALL_STATE(413)] = 12360, + [SMALL_STATE(414)] = 12402, + [SMALL_STATE(415)] = 12444, + [SMALL_STATE(416)] = 12486, + [SMALL_STATE(417)] = 12528, + [SMALL_STATE(418)] = 12570, + [SMALL_STATE(419)] = 12612, + [SMALL_STATE(420)] = 12654, + [SMALL_STATE(421)] = 12696, + [SMALL_STATE(422)] = 12738, + [SMALL_STATE(423)] = 12780, + [SMALL_STATE(424)] = 12822, + [SMALL_STATE(425)] = 12864, + [SMALL_STATE(426)] = 12906, + [SMALL_STATE(427)] = 12948, + [SMALL_STATE(428)] = 12990, + [SMALL_STATE(429)] = 13032, + [SMALL_STATE(430)] = 13074, + [SMALL_STATE(431)] = 13116, + [SMALL_STATE(432)] = 13158, + [SMALL_STATE(433)] = 13200, + [SMALL_STATE(434)] = 13242, + [SMALL_STATE(435)] = 13284, + [SMALL_STATE(436)] = 13330, + [SMALL_STATE(437)] = 13372, + [SMALL_STATE(438)] = 13414, + [SMALL_STATE(439)] = 13456, + [SMALL_STATE(440)] = 13502, + [SMALL_STATE(441)] = 13544, + [SMALL_STATE(442)] = 13586, + [SMALL_STATE(443)] = 13628, + [SMALL_STATE(444)] = 13670, + [SMALL_STATE(445)] = 13712, + [SMALL_STATE(446)] = 13754, + [SMALL_STATE(447)] = 13798, + [SMALL_STATE(448)] = 13840, + [SMALL_STATE(449)] = 13882, + [SMALL_STATE(450)] = 13928, + [SMALL_STATE(451)] = 13970, + [SMALL_STATE(452)] = 14012, + [SMALL_STATE(453)] = 14054, + [SMALL_STATE(454)] = 14096, + [SMALL_STATE(455)] = 14138, + [SMALL_STATE(456)] = 14180, + [SMALL_STATE(457)] = 14222, + [SMALL_STATE(458)] = 14264, + [SMALL_STATE(459)] = 14306, + [SMALL_STATE(460)] = 14348, + [SMALL_STATE(461)] = 14390, + [SMALL_STATE(462)] = 14432, + [SMALL_STATE(463)] = 14474, + [SMALL_STATE(464)] = 14516, + [SMALL_STATE(465)] = 14560, + [SMALL_STATE(466)] = 14602, + [SMALL_STATE(467)] = 14648, + [SMALL_STATE(468)] = 14690, + [SMALL_STATE(469)] = 14732, + [SMALL_STATE(470)] = 14774, + [SMALL_STATE(471)] = 14816, + [SMALL_STATE(472)] = 14858, + [SMALL_STATE(473)] = 14900, + [SMALL_STATE(474)] = 14942, + [SMALL_STATE(475)] = 14984, + [SMALL_STATE(476)] = 15026, + [SMALL_STATE(477)] = 15068, + [SMALL_STATE(478)] = 15110, + [SMALL_STATE(479)] = 15152, + [SMALL_STATE(480)] = 15194, + [SMALL_STATE(481)] = 15236, + [SMALL_STATE(482)] = 15278, + [SMALL_STATE(483)] = 15320, + [SMALL_STATE(484)] = 15362, + [SMALL_STATE(485)] = 15404, + [SMALL_STATE(486)] = 15448, + [SMALL_STATE(487)] = 15490, + [SMALL_STATE(488)] = 15536, + [SMALL_STATE(489)] = 15578, + [SMALL_STATE(490)] = 15620, + [SMALL_STATE(491)] = 15662, + [SMALL_STATE(492)] = 15704, + [SMALL_STATE(493)] = 15746, + [SMALL_STATE(494)] = 15788, + [SMALL_STATE(495)] = 15830, + [SMALL_STATE(496)] = 15872, + [SMALL_STATE(497)] = 15914, + [SMALL_STATE(498)] = 15956, + [SMALL_STATE(499)] = 16000, + [SMALL_STATE(500)] = 16042, + [SMALL_STATE(501)] = 16084, + [SMALL_STATE(502)] = 16126, + [SMALL_STATE(503)] = 16168, + [SMALL_STATE(504)] = 16210, + [SMALL_STATE(505)] = 16252, + [SMALL_STATE(506)] = 16294, + [SMALL_STATE(507)] = 16336, + [SMALL_STATE(508)] = 16378, + [SMALL_STATE(509)] = 16420, + [SMALL_STATE(510)] = 16462, + [SMALL_STATE(511)] = 16504, + [SMALL_STATE(512)] = 16546, + [SMALL_STATE(513)] = 16588, + [SMALL_STATE(514)] = 16630, + [SMALL_STATE(515)] = 16672, + [SMALL_STATE(516)] = 16714, + [SMALL_STATE(517)] = 16756, + [SMALL_STATE(518)] = 16798, + [SMALL_STATE(519)] = 16840, + [SMALL_STATE(520)] = 16882, + [SMALL_STATE(521)] = 16924, + [SMALL_STATE(522)] = 16966, + [SMALL_STATE(523)] = 17008, + [SMALL_STATE(524)] = 17050, + [SMALL_STATE(525)] = 17092, + [SMALL_STATE(526)] = 17134, + [SMALL_STATE(527)] = 17176, + [SMALL_STATE(528)] = 17218, + [SMALL_STATE(529)] = 17260, + [SMALL_STATE(530)] = 17302, + [SMALL_STATE(531)] = 17344, + [SMALL_STATE(532)] = 17386, + [SMALL_STATE(533)] = 17432, + [SMALL_STATE(534)] = 17474, + [SMALL_STATE(535)] = 17516, + [SMALL_STATE(536)] = 17558, + [SMALL_STATE(537)] = 17600, + [SMALL_STATE(538)] = 17644, + [SMALL_STATE(539)] = 17686, + [SMALL_STATE(540)] = 17728, + [SMALL_STATE(541)] = 17774, + [SMALL_STATE(542)] = 17816, + [SMALL_STATE(543)] = 17858, + [SMALL_STATE(544)] = 17900, + [SMALL_STATE(545)] = 17942, + [SMALL_STATE(546)] = 17984, + [SMALL_STATE(547)] = 18026, + [SMALL_STATE(548)] = 18068, + [SMALL_STATE(549)] = 18110, + [SMALL_STATE(550)] = 18152, + [SMALL_STATE(551)] = 18198, + [SMALL_STATE(552)] = 18240, + [SMALL_STATE(553)] = 18282, + [SMALL_STATE(554)] = 18324, + [SMALL_STATE(555)] = 18366, + [SMALL_STATE(556)] = 18408, + [SMALL_STATE(557)] = 18450, + [SMALL_STATE(558)] = 18492, + [SMALL_STATE(559)] = 18534, + [SMALL_STATE(560)] = 18576, + [SMALL_STATE(561)] = 18618, + [SMALL_STATE(562)] = 18659, + [SMALL_STATE(563)] = 18700, + [SMALL_STATE(564)] = 18745, + [SMALL_STATE(565)] = 18786, + [SMALL_STATE(566)] = 18827, + [SMALL_STATE(567)] = 18868, + [SMALL_STATE(568)] = 18909, + [SMALL_STATE(569)] = 18950, + [SMALL_STATE(570)] = 18991, + [SMALL_STATE(571)] = 19032, + [SMALL_STATE(572)] = 19073, + [SMALL_STATE(573)] = 19118, + [SMALL_STATE(574)] = 19159, + [SMALL_STATE(575)] = 19200, + [SMALL_STATE(576)] = 19241, + [SMALL_STATE(577)] = 19282, + [SMALL_STATE(578)] = 19323, + [SMALL_STATE(579)] = 19364, + [SMALL_STATE(580)] = 19405, + [SMALL_STATE(581)] = 19446, + [SMALL_STATE(582)] = 19491, + [SMALL_STATE(583)] = 19532, + [SMALL_STATE(584)] = 19573, + [SMALL_STATE(585)] = 19614, + [SMALL_STATE(586)] = 19655, + [SMALL_STATE(587)] = 19696, + [SMALL_STATE(588)] = 19737, + [SMALL_STATE(589)] = 19778, + [SMALL_STATE(590)] = 19819, + [SMALL_STATE(591)] = 19862, + [SMALL_STATE(592)] = 19903, + [SMALL_STATE(593)] = 19944, + [SMALL_STATE(594)] = 19985, + [SMALL_STATE(595)] = 20026, + [SMALL_STATE(596)] = 20067, + [SMALL_STATE(597)] = 20108, + [SMALL_STATE(598)] = 20149, + [SMALL_STATE(599)] = 20194, + [SMALL_STATE(600)] = 20235, + [SMALL_STATE(601)] = 20276, + [SMALL_STATE(602)] = 20319, + [SMALL_STATE(603)] = 20360, + [SMALL_STATE(604)] = 20401, + [SMALL_STATE(605)] = 20442, + [SMALL_STATE(606)] = 20483, + [SMALL_STATE(607)] = 20524, + [SMALL_STATE(608)] = 20565, + [SMALL_STATE(609)] = 20606, + [SMALL_STATE(610)] = 20647, + [SMALL_STATE(611)] = 20688, + [SMALL_STATE(612)] = 20729, + [SMALL_STATE(613)] = 20770, + [SMALL_STATE(614)] = 20811, + [SMALL_STATE(615)] = 20852, + [SMALL_STATE(616)] = 20893, + [SMALL_STATE(617)] = 20934, + [SMALL_STATE(618)] = 20975, + [SMALL_STATE(619)] = 21016, + [SMALL_STATE(620)] = 21057, + [SMALL_STATE(621)] = 21098, + [SMALL_STATE(622)] = 21139, + [SMALL_STATE(623)] = 21180, + [SMALL_STATE(624)] = 21221, + [SMALL_STATE(625)] = 21262, + [SMALL_STATE(626)] = 21303, + [SMALL_STATE(627)] = 21344, + [SMALL_STATE(628)] = 21385, + [SMALL_STATE(629)] = 21425, + [SMALL_STATE(630)] = 21465, + [SMALL_STATE(631)] = 21505, + [SMALL_STATE(632)] = 21536, + [SMALL_STATE(633)] = 21567, + [SMALL_STATE(634)] = 21598, + [SMALL_STATE(635)] = 21629, + [SMALL_STATE(636)] = 21660, + [SMALL_STATE(637)] = 21691, + [SMALL_STATE(638)] = 21722, + [SMALL_STATE(639)] = 21753, + [SMALL_STATE(640)] = 21784, + [SMALL_STATE(641)] = 21815, + [SMALL_STATE(642)] = 21846, + [SMALL_STATE(643)] = 21877, + [SMALL_STATE(644)] = 21908, + [SMALL_STATE(645)] = 21939, + [SMALL_STATE(646)] = 21970, + [SMALL_STATE(647)] = 22001, + [SMALL_STATE(648)] = 22032, + [SMALL_STATE(649)] = 22063, + [SMALL_STATE(650)] = 22094, + [SMALL_STATE(651)] = 22125, + [SMALL_STATE(652)] = 22156, + [SMALL_STATE(653)] = 22187, + [SMALL_STATE(654)] = 22218, + [SMALL_STATE(655)] = 22249, + [SMALL_STATE(656)] = 22280, + [SMALL_STATE(657)] = 22311, + [SMALL_STATE(658)] = 22342, + [SMALL_STATE(659)] = 22373, + [SMALL_STATE(660)] = 22404, + [SMALL_STATE(661)] = 22435, + [SMALL_STATE(662)] = 22466, + [SMALL_STATE(663)] = 22497, + [SMALL_STATE(664)] = 22528, + [SMALL_STATE(665)] = 22559, + [SMALL_STATE(666)] = 22590, + [SMALL_STATE(667)] = 22621, + [SMALL_STATE(668)] = 22652, + [SMALL_STATE(669)] = 22683, + [SMALL_STATE(670)] = 22714, + [SMALL_STATE(671)] = 22745, + [SMALL_STATE(672)] = 22776, + [SMALL_STATE(673)] = 22807, + [SMALL_STATE(674)] = 22838, + [SMALL_STATE(675)] = 22869, + [SMALL_STATE(676)] = 22900, + [SMALL_STATE(677)] = 22910, + [SMALL_STATE(678)] = 22920, + [SMALL_STATE(679)] = 22930, + [SMALL_STATE(680)] = 22940, + [SMALL_STATE(681)] = 22950, + [SMALL_STATE(682)] = 22960, + [SMALL_STATE(683)] = 22970, + [SMALL_STATE(684)] = 22980, + [SMALL_STATE(685)] = 22990, + [SMALL_STATE(686)] = 23006, + [SMALL_STATE(687)] = 23020, + [SMALL_STATE(688)] = 23034, + [SMALL_STATE(689)] = 23050, + [SMALL_STATE(690)] = 23066, + [SMALL_STATE(691)] = 23082, + [SMALL_STATE(692)] = 23098, + [SMALL_STATE(693)] = 23114, + [SMALL_STATE(694)] = 23130, + [SMALL_STATE(695)] = 23146, + [SMALL_STATE(696)] = 23160, + [SMALL_STATE(697)] = 23176, + [SMALL_STATE(698)] = 23192, + [SMALL_STATE(699)] = 23208, + [SMALL_STATE(700)] = 23222, + [SMALL_STATE(701)] = 23238, + [SMALL_STATE(702)] = 23252, + [SMALL_STATE(703)] = 23268, + [SMALL_STATE(704)] = 23282, + [SMALL_STATE(705)] = 23298, + [SMALL_STATE(706)] = 23314, + [SMALL_STATE(707)] = 23328, + [SMALL_STATE(708)] = 23344, + [SMALL_STATE(709)] = 23358, + [SMALL_STATE(710)] = 23372, + [SMALL_STATE(711)] = 23386, + [SMALL_STATE(712)] = 23402, + [SMALL_STATE(713)] = 23418, + [SMALL_STATE(714)] = 23430, + [SMALL_STATE(715)] = 23446, + [SMALL_STATE(716)] = 23462, + [SMALL_STATE(717)] = 23474, + [SMALL_STATE(718)] = 23486, + [SMALL_STATE(719)] = 23500, + [SMALL_STATE(720)] = 23516, + [SMALL_STATE(721)] = 23532, + [SMALL_STATE(722)] = 23539, + [SMALL_STATE(723)] = 23549, + [SMALL_STATE(724)] = 23559, + [SMALL_STATE(725)] = 23567, + [SMALL_STATE(726)] = 23577, + [SMALL_STATE(727)] = 23587, + [SMALL_STATE(728)] = 23597, + [SMALL_STATE(729)] = 23607, + [SMALL_STATE(730)] = 23617, + [SMALL_STATE(731)] = 23627, + [SMALL_STATE(732)] = 23637, + [SMALL_STATE(733)] = 23645, + [SMALL_STATE(734)] = 23655, + [SMALL_STATE(735)] = 23665, + [SMALL_STATE(736)] = 23675, + [SMALL_STATE(737)] = 23685, + [SMALL_STATE(738)] = 23695, + [SMALL_STATE(739)] = 23705, + [SMALL_STATE(740)] = 23715, + [SMALL_STATE(741)] = 23725, + [SMALL_STATE(742)] = 23735, + [SMALL_STATE(743)] = 23745, + [SMALL_STATE(744)] = 23755, + [SMALL_STATE(745)] = 23765, + [SMALL_STATE(746)] = 23775, + [SMALL_STATE(747)] = 23785, + [SMALL_STATE(748)] = 23792, + [SMALL_STATE(749)] = 23799, + [SMALL_STATE(750)] = 23806, + [SMALL_STATE(751)] = 23813, + [SMALL_STATE(752)] = 23820, + [SMALL_STATE(753)] = 23827, + [SMALL_STATE(754)] = 23834, + [SMALL_STATE(755)] = 23841, + [SMALL_STATE(756)] = 23848, + [SMALL_STATE(757)] = 23855, + [SMALL_STATE(758)] = 23862, + [SMALL_STATE(759)] = 23869, + [SMALL_STATE(760)] = 23876, + [SMALL_STATE(761)] = 23883, + [SMALL_STATE(762)] = 23890, + [SMALL_STATE(763)] = 23897, + [SMALL_STATE(764)] = 23904, + [SMALL_STATE(765)] = 23911, + [SMALL_STATE(766)] = 23918, + [SMALL_STATE(767)] = 23925, + [SMALL_STATE(768)] = 23932, + [SMALL_STATE(769)] = 23939, + [SMALL_STATE(770)] = 23946, + [SMALL_STATE(771)] = 23953, + [SMALL_STATE(772)] = 23960, + [SMALL_STATE(773)] = 23967, + [SMALL_STATE(774)] = 23974, + [SMALL_STATE(775)] = 23981, + [SMALL_STATE(776)] = 23988, + [SMALL_STATE(777)] = 23995, + [SMALL_STATE(778)] = 24002, + [SMALL_STATE(779)] = 24009, + [SMALL_STATE(780)] = 24016, + [SMALL_STATE(781)] = 24023, + [SMALL_STATE(782)] = 24030, + [SMALL_STATE(783)] = 24037, + [SMALL_STATE(784)] = 24044, + [SMALL_STATE(785)] = 24051, + [SMALL_STATE(786)] = 24058, + [SMALL_STATE(787)] = 24065, + [SMALL_STATE(788)] = 24072, + [SMALL_STATE(789)] = 24079, + [SMALL_STATE(790)] = 24086, + [SMALL_STATE(791)] = 24093, + [SMALL_STATE(792)] = 24100, + [SMALL_STATE(793)] = 24107, + [SMALL_STATE(794)] = 24114, + [SMALL_STATE(795)] = 24121, + [SMALL_STATE(796)] = 24128, + [SMALL_STATE(797)] = 24135, + [SMALL_STATE(798)] = 24142, + [SMALL_STATE(799)] = 24149, + [SMALL_STATE(800)] = 24156, + [SMALL_STATE(801)] = 24163, + [SMALL_STATE(802)] = 24170, + [SMALL_STATE(803)] = 24177, + [SMALL_STATE(804)] = 24181, + [SMALL_STATE(805)] = 24185, + [SMALL_STATE(806)] = 24189, + [SMALL_STATE(807)] = 24193, + [SMALL_STATE(808)] = 24197, + [SMALL_STATE(809)] = 24201, + [SMALL_STATE(810)] = 24205, + [SMALL_STATE(811)] = 24209, + [SMALL_STATE(812)] = 24213, + [SMALL_STATE(813)] = 24217, + [SMALL_STATE(814)] = 24221, + [SMALL_STATE(815)] = 24225, + [SMALL_STATE(816)] = 24229, + [SMALL_STATE(817)] = 24233, + [SMALL_STATE(818)] = 24237, + [SMALL_STATE(819)] = 24241, + [SMALL_STATE(820)] = 24245, + [SMALL_STATE(821)] = 24249, + [SMALL_STATE(822)] = 24253, + [SMALL_STATE(823)] = 24257, + [SMALL_STATE(824)] = 24261, + [SMALL_STATE(825)] = 24265, + [SMALL_STATE(826)] = 24269, + [SMALL_STATE(827)] = 24273, + [SMALL_STATE(828)] = 24277, + [SMALL_STATE(829)] = 24281, + [SMALL_STATE(830)] = 24285, + [SMALL_STATE(831)] = 24289, + [SMALL_STATE(832)] = 24293, + [SMALL_STATE(833)] = 24297, + [SMALL_STATE(834)] = 24301, + [SMALL_STATE(835)] = 24305, + [SMALL_STATE(836)] = 24309, + [SMALL_STATE(837)] = 24313, + [SMALL_STATE(838)] = 24317, + [SMALL_STATE(839)] = 24321, + [SMALL_STATE(840)] = 24325, + [SMALL_STATE(841)] = 24329, + [SMALL_STATE(842)] = 24333, + [SMALL_STATE(843)] = 24337, + [SMALL_STATE(844)] = 24341, + [SMALL_STATE(845)] = 24345, + [SMALL_STATE(846)] = 24349, + [SMALL_STATE(847)] = 24353, + [SMALL_STATE(848)] = 24357, + [SMALL_STATE(849)] = 24361, + [SMALL_STATE(850)] = 24365, + [SMALL_STATE(851)] = 24369, + [SMALL_STATE(852)] = 24373, + [SMALL_STATE(853)] = 24377, + [SMALL_STATE(854)] = 24381, + [SMALL_STATE(855)] = 24385, + [SMALL_STATE(856)] = 24389, + [SMALL_STATE(857)] = 24393, + [SMALL_STATE(858)] = 24397, + [SMALL_STATE(859)] = 24401, + [SMALL_STATE(860)] = 24405, + [SMALL_STATE(861)] = 24409, + [SMALL_STATE(862)] = 24413, + [SMALL_STATE(863)] = 24417, + [SMALL_STATE(864)] = 24421, + [SMALL_STATE(865)] = 24425, + [SMALL_STATE(866)] = 24429, + [SMALL_STATE(867)] = 24433, + [SMALL_STATE(868)] = 24437, + [SMALL_STATE(869)] = 24441, + [SMALL_STATE(870)] = 24445, + [SMALL_STATE(871)] = 24449, + [SMALL_STATE(872)] = 24453, + [SMALL_STATE(873)] = 24457, + [SMALL_STATE(874)] = 24461, + [SMALL_STATE(875)] = 24465, + [SMALL_STATE(876)] = 24469, + [SMALL_STATE(877)] = 24473, + [SMALL_STATE(878)] = 24477, + [SMALL_STATE(879)] = 24481, + [SMALL_STATE(880)] = 24485, + [SMALL_STATE(881)] = 24489, + [SMALL_STATE(882)] = 24493, + [SMALL_STATE(883)] = 24497, + [SMALL_STATE(884)] = 24501, + [SMALL_STATE(885)] = 24505, + [SMALL_STATE(886)] = 24509, + [SMALL_STATE(887)] = 24513, + [SMALL_STATE(888)] = 24517, + [SMALL_STATE(889)] = 24521, + [SMALL_STATE(890)] = 24525, + [SMALL_STATE(891)] = 24529, + [SMALL_STATE(892)] = 24533, + [SMALL_STATE(893)] = 24537, + [SMALL_STATE(894)] = 24541, + [SMALL_STATE(895)] = 24545, + [SMALL_STATE(896)] = 24549, + [SMALL_STATE(897)] = 24553, + [SMALL_STATE(898)] = 24557, + [SMALL_STATE(899)] = 24561, + [SMALL_STATE(900)] = 24565, + [SMALL_STATE(901)] = 24569, + [SMALL_STATE(902)] = 24573, + [SMALL_STATE(903)] = 24577, + [SMALL_STATE(904)] = 24581, + [SMALL_STATE(905)] = 24585, + [SMALL_STATE(906)] = 24589, + [SMALL_STATE(907)] = 24593, + [SMALL_STATE(908)] = 24597, + [SMALL_STATE(909)] = 24601, + [SMALL_STATE(910)] = 24605, + [SMALL_STATE(911)] = 24609, + [SMALL_STATE(912)] = 24613, + [SMALL_STATE(913)] = 24617, + [SMALL_STATE(914)] = 24621, + [SMALL_STATE(915)] = 24625, + [SMALL_STATE(916)] = 24629, + [SMALL_STATE(917)] = 24633, + [SMALL_STATE(918)] = 24637, + [SMALL_STATE(919)] = 24641, + [SMALL_STATE(920)] = 24645, + [SMALL_STATE(921)] = 24649, + [SMALL_STATE(922)] = 24653, + [SMALL_STATE(923)] = 24657, + [SMALL_STATE(924)] = 24661, + [SMALL_STATE(925)] = 24665, + [SMALL_STATE(926)] = 24669, + [SMALL_STATE(927)] = 24673, + [SMALL_STATE(928)] = 24677, + [SMALL_STATE(929)] = 24681, + [SMALL_STATE(930)] = 24685, + [SMALL_STATE(931)] = 24689, + [SMALL_STATE(932)] = 24693, + [SMALL_STATE(933)] = 24697, + [SMALL_STATE(934)] = 24701, + [SMALL_STATE(935)] = 24705, + [SMALL_STATE(936)] = 24709, + [SMALL_STATE(937)] = 24713, + [SMALL_STATE(938)] = 24717, + [SMALL_STATE(939)] = 24721, + [SMALL_STATE(940)] = 24725, + [SMALL_STATE(941)] = 24729, + [SMALL_STATE(942)] = 24733, + [SMALL_STATE(943)] = 24737, + [SMALL_STATE(944)] = 24741, + [SMALL_STATE(945)] = 24745, + [SMALL_STATE(946)] = 24749, + [SMALL_STATE(947)] = 24753, + [SMALL_STATE(948)] = 24757, + [SMALL_STATE(949)] = 24761, + [SMALL_STATE(950)] = 24765, + [SMALL_STATE(951)] = 24769, + [SMALL_STATE(952)] = 24773, + [SMALL_STATE(953)] = 24777, + [SMALL_STATE(954)] = 24781, + [SMALL_STATE(955)] = 24785, + [SMALL_STATE(956)] = 24789, + [SMALL_STATE(957)] = 24793, + [SMALL_STATE(958)] = 24797, + [SMALL_STATE(959)] = 24801, + [SMALL_STATE(960)] = 24805, + [SMALL_STATE(961)] = 24809, + [SMALL_STATE(962)] = 24813, + [SMALL_STATE(963)] = 24817, + [SMALL_STATE(964)] = 24821, + [SMALL_STATE(965)] = 24825, + [SMALL_STATE(966)] = 24829, + [SMALL_STATE(967)] = 24833, + [SMALL_STATE(968)] = 24837, + [SMALL_STATE(969)] = 24841, + [SMALL_STATE(970)] = 24845, + [SMALL_STATE(971)] = 24849, + [SMALL_STATE(972)] = 24853, + [SMALL_STATE(973)] = 24857, + [SMALL_STATE(974)] = 24861, + [SMALL_STATE(975)] = 24865, + [SMALL_STATE(976)] = 24869, + [SMALL_STATE(977)] = 24873, + [SMALL_STATE(978)] = 24877, + [SMALL_STATE(979)] = 24881, + [SMALL_STATE(980)] = 24885, + [SMALL_STATE(981)] = 24889, + [SMALL_STATE(982)] = 24893, + [SMALL_STATE(983)] = 24897, + [SMALL_STATE(984)] = 24901, + [SMALL_STATE(985)] = 24905, + [SMALL_STATE(986)] = 24909, + [SMALL_STATE(987)] = 24913, + [SMALL_STATE(988)] = 24917, + [SMALL_STATE(989)] = 24921, + [SMALL_STATE(990)] = 24925, + [SMALL_STATE(991)] = 24929, + [SMALL_STATE(992)] = 24933, + [SMALL_STATE(993)] = 24937, + [SMALL_STATE(994)] = 24941, + [SMALL_STATE(995)] = 24945, + [SMALL_STATE(996)] = 24949, + [SMALL_STATE(997)] = 24953, + [SMALL_STATE(998)] = 24957, + [SMALL_STATE(999)] = 24961, + [SMALL_STATE(1000)] = 24965, + [SMALL_STATE(1001)] = 24969, + [SMALL_STATE(1002)] = 24973, + [SMALL_STATE(1003)] = 24977, + [SMALL_STATE(1004)] = 24981, + [SMALL_STATE(1005)] = 24985, + [SMALL_STATE(1006)] = 24989, + [SMALL_STATE(1007)] = 24993, + [SMALL_STATE(1008)] = 24997, + [SMALL_STATE(1009)] = 25001, + [SMALL_STATE(1010)] = 25005, + [SMALL_STATE(1011)] = 25009, + [SMALL_STATE(1012)] = 25013, + [SMALL_STATE(1013)] = 25017, + [SMALL_STATE(1014)] = 25021, + [SMALL_STATE(1015)] = 25025, + [SMALL_STATE(1016)] = 25029, + [SMALL_STATE(1017)] = 25033, + [SMALL_STATE(1018)] = 25037, + [SMALL_STATE(1019)] = 25041, + [SMALL_STATE(1020)] = 25045, + [SMALL_STATE(1021)] = 25049, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [47] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), - [49] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(695), - [52] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(182), - [55] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(129), - [58] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(366), - [61] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(706), - [64] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(182), - [67] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(181), - [70] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(44), - [73] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(45), - [76] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(46), - [79] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), - [81] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(47), - [84] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(49), - [87] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(150), - [90] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [92] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(51), - [95] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(52), - [98] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(377), - [101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(378), - [104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(379), - [107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(380), - [110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(97), - [113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(144), - [116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(848), - [119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(366), - [122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(380), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), - [127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(49), - [130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(47), - [133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(668), - [136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(180), - [139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(133), - [142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(231), - [145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(834), - [148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(180), - [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(183), - [154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(37), - [157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(50), - [160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(61), - [163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(62), - [166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(35), - [169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(142), - [172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(2), - [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(23), - [178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(232), - [181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(233), - [184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(234), - [187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(235), - [190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(73), - [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(132), - [196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(821), - [199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(697), - [202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(167), - [205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(147), - [208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(197), - [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(873), - [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(167), - [217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(168), - [220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(22), - [223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(21), - [226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(10), - [229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(19), - [232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(17), - [235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(137), - [238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(8), - [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(41), - [244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(198), - [247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(199), - [250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(200), - [253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(201), - [256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(78), - [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(130), - [262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(812), - [265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(676), - [268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(187), - [271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(123), - [274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(331), - [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(708), - [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(187), - [283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(164), - [286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(42), - [289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(11), - [292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(40), - [295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(39), - [298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(38), - [301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(124), - [304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(5), - [307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(36), - [310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(326), - [313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(325), - [316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(324), - [319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(265), - [322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(107), - [325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(131), - [328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(803), - [331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(656), - [334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(163), - [337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(155), - [340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(266), - [343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(793), - [346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(163), - [349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(162), - [352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(24), - [355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(25), - [358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(26), - [361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(27), - [364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(28), - [367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(149), - [370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(7), - [373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(29), - [376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(277), - [379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(278), - [382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(279), - [385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(280), - [388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(72), - [391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(146), - [394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(830), - [397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(673), - [400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(175), - [403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(122), - [406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(316), - [409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(753), - [412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(175), - [415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(178), - [418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(30), - [421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(31), - [424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(32), - [427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(33), - [430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(34), - [433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(128), - [436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(6), - [439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(43), - [442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(327), - [445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(328), - [448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(329), - [451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(330), - [454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(113), - [457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(125), - [460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(839), - [463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(39), - [466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(19), - [469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(62), - [472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(27), - [475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(33), - [478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(38), - [481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(17), - [484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(35), - [487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(28), - [490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(34), - [493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(639), - [496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(197), - [499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(201), - [502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(231), - [505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(235), - [508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(331), - [511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(265), - [514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(316), - [517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(330), - [520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(266), - [523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(280), - [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), - [536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline, 1), - [550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline, 1), - [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), - [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), - [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), - [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), - [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), - [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), - [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [49] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), + [51] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(775), + [54] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(203), + [57] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(144), + [60] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(383), + [63] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(837), + [66] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(204), + [69] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(204), + [72] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(205), + [75] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(11), + [78] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(37), + [81] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(38), + [84] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), + [86] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(39), + [89] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(40), + [92] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(140), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [97] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(48), + [100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(49), + [103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(394), + [106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(395), + [109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(396), + [112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(397), + [115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(118), + [118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(149), + [121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(957), + [124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(39), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), + [129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(203), + [132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(397), + [135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(383), + [138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(40), + [141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(777), + [144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(174), + [147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(134), + [150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(393), + [153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(979), + [156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(215), + [159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(215), + [162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(213), + [165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(47), + [168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(46), + [171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(45), + [174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(44), + [177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(43), + [180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(139), + [183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(9), + [186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(41), + [189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(381), + [192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(391), + [195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(390), + [198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(389), + [201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(95), + [204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(141), + [207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(912), + [210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(752), + [213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(173), + [216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(133), + [219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(288), + [222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(943), + [225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(176), + [228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(176), + [231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(177), + [234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(29), + [237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(28), + [240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(27), + [243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(26), + [246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(25), + [249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(162), + [252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(4), + [255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(24), + [258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(287), + [261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(286), + [264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(285), + [267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(284), + [270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(87), + [273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(155), + [276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(921), + [279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(44), + [282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(26), + [285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(801), + [288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(208), + [291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(138), + [294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(242), + [297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(908), + [300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(211), + [303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(211), + [306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(212), + [309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(62), + [312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(66), + [315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(68), + [318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(55), + [321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(42), + [324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(150), + [327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(2), + [330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(61), + [333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(243), + [336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(244), + [339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(245), + [342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(246), + [345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(83), + [348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(137), + [351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(930), + [354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(796), + [357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(196), + [360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(151), + [363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(279), + [366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(895), + [369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(172), + [372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(172), + [375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(194), + [378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(13), + [381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(14), + [384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(20), + [387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(22), + [390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(23), + [393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(168), + [396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(5), + [399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(30), + [402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(290), + [405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(291), + [408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(292), + [411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(293), + [414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(79), + [417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(170), + [420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(939), + [423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(755), + [426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(181), + [429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(164), + [432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(331), + [435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(870), + [438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(182), + [441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(182), + [444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(183), + [447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(31), + [450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(32), + [453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(33), + [456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(34), + [459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(35), + [462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(156), + [465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(10), + [468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(36), + [471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(342), + [474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(343), + [477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(344), + [480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(345), + [483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(117), + [486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(153), + [489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(948), + [492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(55), + [495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(22), + [498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(34), + [501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(43), + [504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(25), + [507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(42), + [510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(23), + [513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(35), + [516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(732), + [519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(393), + [522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(389), + [525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(288), + [528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(284), + [531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(181), + [534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(345), + [537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(196), + [540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(293), + [543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(208), + [546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(246), + [549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(173), + [552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(174), + [555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(242), + [558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(331), + [561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(279), + [564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline, 1), + [590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline, 1), + [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), + [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), + [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), - [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), - [664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(654), - [667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(184), - [670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(141), - [673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(323), - [676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(890), - [679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(184), - [682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(176), - [685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(12), - [688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(13), - [691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(14), - [694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(15), - [697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(16), - [700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(136), - [703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(9), - [706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(18), - [709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(332), - [712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(343), - [715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(344), - [718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(345), - [721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(75), - [724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(151), - [727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(804), - [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), - [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), - [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(668), - [777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(180), - [780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(133), - [783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(231), - [786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(834), - [789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(180), - [792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(183), - [795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(37), - [798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(50), - [801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(61), - [804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(62), - [807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(35), - [810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(142), - [813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(2), - [816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(23), - [819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(232), - [822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(233), - [825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(234), - [828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(235), - [831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(79), - [834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(132), - [837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(821), - [840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(697), - [843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(167), - [846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(147), - [849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(197), - [852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(873), - [855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(167), - [858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(168), - [861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(22), - [864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(21), - [867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(10), - [870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(19), - [873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(17), - [876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(137), - [879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(8), - [882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(41), - [885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(198), - [888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(199), - [891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(200), - [894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(201), - [897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(85), - [900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(130), - [903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(812), - [906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(692), - [909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(165), - [912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(140), - [915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(416), - [918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(720), - [921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(165), - [924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(158), - [927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(63), - [930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(59), - [933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(60), - [936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(65), - [939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(64), - [942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(154), - [945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(3), - [948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(20), - [951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(427), - [954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(428), - [957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(429), - [960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(430), - [963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(86), - [966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(156), - [969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(857), - [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), - [982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), - [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [1018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [1020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [1024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [1026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [1028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [1030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [1034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [1036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [1038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [1040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [1042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), - [1044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [1046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [1048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [1050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [1054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [1056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [1058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [1062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [1064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [1066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(695), - [1069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(182), - [1072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(129), - [1075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(366), - [1078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(706), - [1081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(182), - [1084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(181), - [1087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(44), - [1090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(45), - [1093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(46), - [1096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(47), - [1099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(49), - [1102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(150), - [1105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(51), - [1108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(52), - [1111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(377), - [1114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(378), - [1117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(379), - [1120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(380), - [1123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(95), - [1126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(144), - [1129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(848), - [1132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [1134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [1136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [1138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [1140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), - [1142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [1144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [1146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [1148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [1150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [1152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [1154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [1156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [1158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [1160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), - [1162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [1164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [1170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [1172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), - [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [1176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(676), - [1179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(187), - [1182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(123), - [1185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(331), - [1188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(708), - [1191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(187), - [1194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(164), - [1197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(42), - [1200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(11), - [1203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(40), - [1206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(39), - [1209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(38), - [1212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(124), - [1215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(5), - [1218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(36), - [1221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(326), - [1224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(325), - [1227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(324), - [1230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(265), - [1233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(98), - [1236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(131), - [1239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(803), - [1242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(656), - [1245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(163), - [1248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(155), - [1251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(266), - [1254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(793), - [1257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(163), - [1260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(162), - [1263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(24), - [1266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(25), - [1269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(26), - [1272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(27), - [1275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(27), - [1278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(28), - [1281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(149), - [1284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(7), - [1287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(29), - [1290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(277), - [1293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(278), - [1296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(279), - [1299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(280), - [1302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(101), - [1305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(146), - [1308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(830), - [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), - [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), - [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [1353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [1357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(673), - [1360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(175), - [1363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(122), - [1366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(316), - [1369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(753), - [1372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(175), - [1375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(178), - [1378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(30), - [1381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(31), - [1384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(32), - [1387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(33), - [1390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(34), - [1393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(34), - [1396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(128), - [1399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(6), - [1402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(43), - [1405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(327), - [1408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(328), - [1411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(329), - [1414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(330), - [1417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(111), - [1420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(125), - [1423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(839), - [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [1434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), - [1436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [1442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [1454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), - [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [1466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), - [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [1470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(670), - [1473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(185), - [1476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(126), - [1479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(487), - [1482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(762), - [1485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(185), - [1488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(160), - [1491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(57), - [1494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(56), - [1497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(55), - [1500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(54), - [1503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(53), - [1506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(135), - [1509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(4), - [1512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(48), - [1515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(479), - [1518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(478), - [1521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(477), - [1524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(476), - [1527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(116), - [1530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(134), - [1533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(875), - [1536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(682), - [1539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(467), - [1542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(169), - [1545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(533), - [1548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(740), - [1551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(467), - [1554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(468), - [1557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(66), - [1560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(67), - [1563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(69), - [1566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(70), - [1569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(71), - [1572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(170), - [1575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(58), - [1578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(68), - [1581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(529), - [1584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(528), - [1587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(527), - [1590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(525), - [1593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(120), - [1596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(171), - [1599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(866), - [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [1604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), - [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), - [1609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_strong_begin, 1), REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), - [1612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), - [1614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), - [1616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element, 1), - [1618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__element, 1), - [1620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verbatim, 3, .production_id = 1), - [1622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verbatim, 3, .production_id = 1), - [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [1626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [1628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [1630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [1632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), - [1634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [1640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), - [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [1644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [1648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [1654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [1658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), - [1660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__text, 2), - [1662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__text, 2), - [1664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(159), - [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [1669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(161), - [1672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), - [1674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), - [1676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(166), - [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), - [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [1683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(172), - [1686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(173), - [1689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(174), - [1692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), - [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), - [1698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(179), - [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), - [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), - [1705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(186), - [1708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(188), - [1711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete, 3, .production_id = 3), - [1713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete, 3, .production_id = 3), - [1715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 2), - [1717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 2), - [1719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math, 4, .production_id = 7), - [1721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math, 4, .production_id = 7), - [1723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comment, 3), - [1725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 3), - [1727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_label, 3, .production_id = 8), - [1729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_label, 3, .production_id = 8), - [1731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link_destination, 3), - [1733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link_destination, 3), - [1735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_emphasis, 5, .production_id = 9), - [1737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emphasis, 5, .production_id = 9), - [1739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_inline_attribute, 3), - [1741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_inline_attribute, 3), - [1743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(815), - [1746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_todo, 1), - [1748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_todo, 1), - [1750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_note, 1), - [1752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note, 1), - [1754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 1), - [1756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), - [1758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(657), - [1761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 2, .dynamic_precedence = -1000), - [1763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 2, .dynamic_precedence = -1000), - [1765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hard_line_break, 2), - [1767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hard_line_break, 2), - [1769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_attribute, 3, .production_id = 6), - [1771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_attribute, 3, .production_id = 6), - [1773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__comment_with_spaces, 2), - [1775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_with_spaces, 2), - [1777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collapsed_reference_image, 2), - [1779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collapsed_reference_image, 2), - [1781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_reference_image, 2), - [1783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_reference_image, 2), - [1785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_image, 2), - [1787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_image, 2), - [1789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collapsed_reference_link, 2), - [1791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collapsed_reference_link, 2), - [1793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_reference_link, 2), - [1795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_reference_link, 2), - [1797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_attribute, 2), - [1799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_attribute, 2), - [1801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_autolink, 3), - [1803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_autolink, 3), - [1805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_highlighted, 3, .production_id = 3), - [1807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlighted, 3, .production_id = 3), - [1809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 3, .production_id = 3), - [1811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 3, .production_id = 3), - [1813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_superscript, 3, .production_id = 3), - [1815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_superscript, 3, .production_id = 3), - [1817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 3, .production_id = 3), - [1819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 3, .production_id = 3), - [1821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_footnote_reference, 3, .production_id = 4), - [1823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_footnote_reference, 3, .production_id = 4), - [1825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strong_end, 1), - [1827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strong_end, 1), - [1829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strong, 3, .production_id = 3), - [1831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strong, 3, .production_id = 3), - [1833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_inline, 4), - [1835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_inline, 4), - [1837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_span, 4), - [1839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_span, 4), - [1841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(824), - [1844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(662), - [1847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(653), - [1850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(833), - [1853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(651), - [1856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(806), - [1859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(842), - [1862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(675), - [1865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(744), - [1868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(672), - [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strong_begin, 2), - [1873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), - [1875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strong_begin, 2), - [1877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(851), - [1880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(678), - [1883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(860), - [1886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(687), - [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), - [1891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(699), - [1894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(878), - [1897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_strong_begin_repeat1, 2), - [1899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_strong_begin_repeat1, 2), SHIFT_REPEAT(486), - [1902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_strong_begin_repeat1, 2), - [1904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(490), - [1907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element, 2), - [1909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__element, 2), - [1911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(693), - [1914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(869), - [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), - [1933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(802), - [1936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(784), - [1939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(597), - [1942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(660), - [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [2019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value, 3), - [2021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_with_newline, 4, .production_id = 9), - [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 1), - [2025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 3), - [2027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 1, .production_id = 2), - [2029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_name, 1), - [2031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2), - [2033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1), - [2035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_with_newline, 3), - [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [2039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_text, 3), - [2041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_text, 3), - [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), - [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [2053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), - [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), - [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), - [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), - [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), - [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), - [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), - [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), - [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), - [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), - [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [2137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), - [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [2147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__comment_with_newline_repeat1, 2), SHIFT_REPEAT(637), - [2150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_with_newline_repeat1, 2), - [2152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_with_newline_repeat1, 1), - [2154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [2158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_description, 2), - [2160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_description, 2), - [2162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [2166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), - [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [2170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [2174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), - [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), - [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [2182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), - [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [2186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), - [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [2190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [2198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [2202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_description, 3, .production_id = 5), - [2204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_description, 3, .production_id = 5), - [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [2208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(369), - [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [2213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(283), - [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [2218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [2224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), - [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [2228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), - [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [2232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [2240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [2244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(236), - [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [2253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(466), - [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [2258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(333), - [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [2263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(322), - [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [2268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), - [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [2272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), - [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [2276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), - [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [2280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), - [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [2284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(521), - [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [2289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), - [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), - [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), - [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), - [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [2309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(433), - [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [2314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [2318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(383), - [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [2323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [2327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(202), - [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [2332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), - [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [2336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), - [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [2342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emphasis_end, 1), - [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [2540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key, 1), - [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_label, 1), - [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [2704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline, 1), - [2706] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), + [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(752), + [663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(173), + [666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(133), + [669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(288), + [672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(943), + [675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(176), + [678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(176), + [681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(177), + [684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(29), + [687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(28), + [690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), + [692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(27), + [695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(26), + [698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(25), + [701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(162), + [704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(4), + [707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(24), + [710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(287), + [713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(286), + [716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(285), + [719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(284), + [722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(81), + [725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(155), + [728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(921), + [731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(754), + [734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(214), + [737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(136), + [740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(223), + [743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1009), + [746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(197), + [749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(197), + [752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(193), + [755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(15), + [758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(16), + [761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(17), + [764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(18), + [767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(19), + [770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(158), + [773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(3), + [776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(21), + [779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(234), + [782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(249), + [785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(258), + [788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(269), + [791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(82), + [794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(171), + [797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(913), + [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), + [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), + [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(773), + [849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(186), + [852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(159), + [855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(532), + [858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(845), + [861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(188), + [864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(188), + [867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(191), + [870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(53), + [873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(12), + [876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(72), + [879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(71), + [882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(70), + [885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(148), + [888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(6), + [891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(67), + [894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(537), + [897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(538), + [900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(539), + [903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(540), + [906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(84), + [909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(147), + [912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(984), + [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), + [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), + [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), + [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), + [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), + [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), + [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), + [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), + [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), + [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [1103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(796), + [1106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(196), + [1109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(151), + [1112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(279), + [1115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(895), + [1118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(172), + [1121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(172), + [1124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(194), + [1127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(13), + [1130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(14), + [1133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(20), + [1136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(22), + [1139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(22), + [1142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(23), + [1145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(168), + [1148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(5), + [1151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(30), + [1154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(290), + [1157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(291), + [1160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(292), + [1163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(293), + [1166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(103), + [1169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(170), + [1172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(939), + [1175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(798), + [1178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(190), + [1181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(157), + [1184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(435), + [1187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(808), + [1190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(189), + [1193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(189), + [1196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(187), + [1199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(51), + [1202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(52), + [1205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(63), + [1208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(69), + [1211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(64), + [1214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(132), + [1217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(8), + [1220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(54), + [1223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(446), + [1226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(447), + [1229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(448), + [1232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(449), + [1235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(104), + [1238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(161), + [1241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(966), + [1244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(801), + [1247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(208), + [1250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(138), + [1253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(242), + [1256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(908), + [1259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(211), + [1262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(211), + [1265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(212), + [1268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(62), + [1271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(66), + [1274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(68), + [1277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(55), + [1280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(42), + [1283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(150), + [1286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(2), + [1289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(61), + [1292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(243), + [1295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(244), + [1298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(245), + [1301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(246), + [1304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(105), + [1307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(137), + [1310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(930), + [1313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(777), + [1316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(174), + [1319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(134), + [1322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(393), + [1325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(979), + [1328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(215), + [1331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(215), + [1334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(213), + [1337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(47), + [1340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(46), + [1343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(45), + [1346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(44), + [1349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(43), + [1352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(139), + [1355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(9), + [1358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(41), + [1361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(381), + [1364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(391), + [1367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(390), + [1370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(389), + [1373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(115), + [1376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(141), + [1379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(912), + [1382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(775), + [1385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(203), + [1388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(144), + [1391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(383), + [1394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(837), + [1397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(204), + [1400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(204), + [1403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(205), + [1406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(11), + [1409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(37), + [1412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(38), + [1415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(39), + [1418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(40), + [1421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(140), + [1424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(48), + [1427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(49), + [1430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(394), + [1433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(395), + [1436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(396), + [1439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(397), + [1442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(116), + [1445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(149), + [1448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(957), + [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), + [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), + [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), + [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), + [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [1543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(755), + [1546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(181), + [1549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(164), + [1552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(331), + [1555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(870), + [1558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(182), + [1561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(182), + [1564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(183), + [1567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(31), + [1570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(32), + [1573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(33), + [1576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(34), + [1579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(35), + [1582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(35), + [1585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(156), + [1588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(10), + [1591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(36), + [1594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(342), + [1597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(343), + [1600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(344), + [1603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(345), + [1606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(119), + [1609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(153), + [1612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(948), + [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), + [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [1621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(758), + [1624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(485), + [1627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(200), + [1630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(590), + [1633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(868), + [1636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(466), + [1639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(466), + [1642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(464), + [1645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(76), + [1648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(75), + [1651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(74), + [1654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(73), + [1657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(78), + [1660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(185), + [1663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(50), + [1666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(77), + [1669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(601), + [1672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(602), + [1675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(603), + [1678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(563), + [1681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(131), + [1684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(210), + [1687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(993), + [1690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), + [1692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), + [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [1697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_strong_begin, 1), REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), + [1700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verbatim, 3, .production_id = 1), + [1702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verbatim, 3, .production_id = 1), + [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [1706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), + [1708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element, 1), + [1710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__element, 1), + [1712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), + [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [1722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), + [1724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), + [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [1728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), + [1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [1732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), + [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [1736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [1738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), + [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [1744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), + [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), + [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [1752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__text, 2), + [1754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__text, 2), + [1756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(175), + [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), + [1761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(178), + [1764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [1766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [1768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), + [1770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(184), + [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), + [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), + [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), + [1787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(195), + [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [1792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(198), + [1795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(199), + [1798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(201), + [1801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(202), + [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), + [1808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(206), + [1811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(207), + [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [1818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), + [1820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), + [1822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), + [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [1826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_image, 2), + [1828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_image, 2), + [1830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strong, 3, .production_id = 3), + [1832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strong, 3, .production_id = 3), + [1834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collapsed_reference_link, 2), + [1836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collapsed_reference_link, 2), + [1838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_reference_link, 2), + [1840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_reference_link, 2), + [1842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 2), + [1844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 2), + [1846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 3, .dynamic_precedence = -1000), + [1848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 3, .dynamic_precedence = -1000), + [1850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_autolink, 3), + [1852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_autolink, 3), + [1854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_highlighted, 3, .production_id = 3), + [1856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlighted, 3, .production_id = 3), + [1858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 3, .production_id = 3), + [1860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 3, .production_id = 3), + [1862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete, 3, .production_id = 3), + [1864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete, 3, .production_id = 3), + [1866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_superscript, 3, .production_id = 3), + [1868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_superscript, 3, .production_id = 3), + [1870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 3, .production_id = 3), + [1872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 3, .production_id = 3), + [1874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_footnote_reference, 3, .production_id = 4), + [1876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_footnote_reference, 3, .production_id = 4), + [1878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strong_end, 1), + [1880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strong_end, 1), + [1882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_inline, 4), + [1884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_inline, 4), + [1886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(985), + [1889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_span, 4), + [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_span, 4), + [1893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math, 4, .production_id = 7), + [1895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math, 4, .production_id = 7), + [1897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comment, 3), + [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 3), + [1901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_label, 3, .production_id = 8), + [1903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_label, 3, .production_id = 8), + [1905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link_destination, 3), + [1907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link_destination, 3), + [1909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_emphasis, 5), + [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emphasis, 5), + [1913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_inline_attribute, 3), + [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_inline_attribute, 3), + [1917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(933), + [1920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_todo, 1), + [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_todo, 1), + [1924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_note, 1), + [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note, 1), + [1928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 1), + [1930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), + [1932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(766), + [1935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 2, .dynamic_precedence = -1000), + [1937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 2, .dynamic_precedence = -1000), + [1939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hard_line_break, 2), + [1941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hard_line_break, 2), + [1943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__comment_with_spaces, 2), + [1945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_with_spaces, 2), + [1947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collapsed_reference_image, 2), + [1949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collapsed_reference_image, 2), + [1951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_reference_image, 2), + [1953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_reference_image, 2), + [1955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(790), + [1958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(800), + [1961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(924), + [1964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(942), + [1967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(756), + [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strong_begin, 2), + [1972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [1974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strong_begin, 2), + [1976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_attribute, 3, .production_id = 6), + [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_attribute, 3, .production_id = 6), + [1980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_attribute, 2), + [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_attribute, 2), + [1984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(951), + [1987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(757), + [1990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(915), + [1993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(767), + [1996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(960), + [1999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(761), + [2002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(439), + [2005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(969), + [2008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(772), + [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), + [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [2015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(978), + [2018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(987), + [2021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(792), + [2024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_strong_begin_repeat1, 2), + [2026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_strong_begin_repeat1, 2), SHIFT_REPEAT(550), + [2029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_strong_begin_repeat1, 2), + [2031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(799), + [2034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element, 2), + [2036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__element, 2), + [2038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(781), + [2041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_without_trailing_space, 1), REDUCE(aux_sym__inline_repeat1, 1), + [2044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_without_trailing_space, 1), + [2046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), REDUCE(sym__inline_without_trailing_space, 2), + [2049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_without_trailing_space, 2), + [2051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(996), + [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [2074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), + [2076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(1007), + [2079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(934), + [2082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(678), + [2085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(760), + [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [2164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_with_newline, 3), + [2166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 1, .production_id = 2), + [2168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 1), + [2170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_name, 1), + [2172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2), + [2174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 3), + [2176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_with_newline, 4, .production_id = 9), + [2178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value, 3), + [2180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1), + [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [2190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_text, 3), + [2192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_text, 3), + [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [2198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), + [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [2210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), + [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [2220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [2230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), + [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), + [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [2242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), + [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [2250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), + [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [2276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), + [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [2282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), + [2284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), + [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [2288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), + [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [2294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__comment_with_newline_repeat1, 2), SHIFT_REPEAT(721), + [2297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_with_newline_repeat1, 2), + [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [2307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_with_newline_repeat1, 1), + [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [2313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), + [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [2317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_description, 3, .production_id = 5), + [2319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_description, 3, .production_id = 5), + [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [2329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), + [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [2333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [2337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_description, 2), + [2339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_description, 2), + [2341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), + [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [2345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), + [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [2349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [2353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [2357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [2361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [2365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), + [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [2369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), + [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [2373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(347), + [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [2378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(222), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [2383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), + [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [2387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), + [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [2391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(283), + [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [2396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(617), + [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [2401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(281), + [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [2406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(348), + [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [2411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(605), + [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [2416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(361), + [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [2423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), + [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), + [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [2431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [2443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [2447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(552), + [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [2452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), + [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [2456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(541), + [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [2461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(465), + [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [2466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(400), + [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [2471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), + [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [2475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(388), + [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [2480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), + [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [2484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [2488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(413), + [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [2493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [2497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [2501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(551), + [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [2506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(510), + [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [2511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [2515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [2519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [2523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(309), + [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [2528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(257), + [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [2533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(501), + [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [2538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), + [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [2542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), + [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [2546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(296), + [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [2551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), + [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [2555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(452), + [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [2560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(247), + [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [2565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [2825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_label, 1), + [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [2957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emphasis_end, 1), + [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [2969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline, 1), + [2971] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [2977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key, 1), + [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), }; enum ts_external_scanner_symbol_identifiers { @@ -38574,7 +43284,8 @@ enum ts_external_scanner_symbol_identifiers { ts_external_token__emphasis_end_check = 9, ts_external_token__in_real_emphasis = 10, ts_external_token__in_fallback = 11, - ts_external_token__error = 12, + ts_external_token__non_whitespace_check = 12, + ts_external_token__error = 13, }; static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { @@ -38590,10 +43301,11 @@ static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { [ts_external_token__emphasis_end_check] = sym__emphasis_end_check, [ts_external_token__in_real_emphasis] = sym__in_real_emphasis, [ts_external_token__in_fallback] = sym__in_fallback, + [ts_external_token__non_whitespace_check] = sym__non_whitespace_check, [ts_external_token__error] = sym__error, }; -static const bool ts_external_scanner_states[8][EXTERNAL_TOKEN_COUNT] = { +static const bool ts_external_scanner_states[9][EXTERNAL_TOKEN_COUNT] = { [1] = { [ts_external_token__ignored] = true, [ts_external_token__verbatim_begin] = true, @@ -38607,25 +43319,30 @@ static const bool ts_external_scanner_states[8][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__emphasis_end_check] = true, [ts_external_token__in_real_emphasis] = true, [ts_external_token__in_fallback] = true, + [ts_external_token__non_whitespace_check] = true, [ts_external_token__error] = true, }, [2] = { [ts_external_token__verbatim_begin] = true, }, [3] = { + [ts_external_token__verbatim_begin] = true, + [ts_external_token__non_whitespace_check] = true, + }, + [4] = { [ts_external_token__emphasis_begin_check] = true, [ts_external_token__in_fallback] = true, }, - [4] = { + [5] = { [ts_external_token__emphasis_end_check] = true, }, - [5] = { + [6] = { [ts_external_token__verbatim_end] = true, }, - [6] = { + [7] = { [ts_external_token__verbatim_content] = true, }, - [7] = { + [8] = { [ts_external_token__emphasis_begin_check] = true, }, }; diff --git a/tree-sitter-djot-inline/src/scanner.c b/tree-sitter-djot-inline/src/scanner.c index 6ea44c8..1e060ab 100644 --- a/tree-sitter-djot-inline/src/scanner.c +++ b/tree-sitter-djot-inline/src/scanner.c @@ -23,6 +23,7 @@ typedef enum { EMPHASIS_END_CHECK, IN_REAL_EMPHASIS, IN_FALLBACK, + NON_WHITESPACE_CHECK, ERROR, } TokenType; @@ -149,13 +150,12 @@ static bool emphasis_end_check(Scanner *s, TSLexer *lexer) { } // IN_FALLBACK will only be valid during symbol fallback -// 0. `_` can start/end -// 1. `_ ` cannot start -// 2. ` _` cannot end -// 3. `_}` will end static bool parse_emphasis(Scanner *s, TSLexer *lexer, const bool *valid_symbols) { + if (valid_symbols[EMPHASIS_END_CHECK] && emphasis_end_check(s, lexer)) { + return true; + } if (valid_symbols[EMPHASIS_BEGIN_CHECK]) { if (valid_symbols[IN_FALLBACK]) { // If we can find an open emphasis element that means we should choose @@ -176,10 +176,20 @@ static bool parse_emphasis(Scanner *s, TSLexer *lexer, return true; } } - if (valid_symbols[EMPHASIS_END_CHECK] && emphasis_end_check(s, lexer)) { + return false; +} + +static bool check_non_whitespace(Scanner *s, TSLexer *lexer) { + switch (lexer->lookahead) { + case ' ': + case '\t': + case '\r': + case '\n': + return false; + default: + lexer->result_symbol = NON_WHITESPACE_CHECK; return true; } - return false; } bool tree_sitter_djot_inline_external_scanner_scan(void *payload, @@ -208,6 +218,10 @@ bool tree_sitter_djot_inline_external_scanner_scan(void *payload, } } + if (valid_symbols[NON_WHITESPACE_CHECK] && check_non_whitespace(s, lexer)) { + return true; + } + if (parse_emphasis(s, lexer, valid_symbols)) { return true; } @@ -217,6 +231,9 @@ bool tree_sitter_djot_inline_external_scanner_scan(void *payload, if (valid_symbols[VERBATIM_BEGIN] && parse_verbatim_start(s, lexer)) { return true; } + if (valid_symbols[VERBATIM_END] && parse_verbatim_end(s, lexer)) { + return true; + } break; // case '*': // if (parse_strong(s, lexer, valid_symbols)) { diff --git a/tree-sitter-djot-inline/test/corpus/syntax.txt b/tree-sitter-djot-inline/test/corpus/syntax.txt index 65a94ad..c16ae3e 100644 --- a/tree-sitter-djot-inline/test/corpus/syntax.txt +++ b/tree-sitter-djot-inline/test/corpus/syntax.txt @@ -378,6 +378,18 @@ cd_ (inline (emphasis (emphasis_begin) (content) (emphasis_end))) +=============================================================================== +Emphasis: Prefer start token +=============================================================================== + +{_*s*{_b_ + +------------------------------------------------------------------------------- + +(inline + (strong (strong_begin) (content) (strong_end)) + (emphasis (emphasis_begin) (content) (emphasis_end))) + =============================================================================== Superscript: three chars with spaces =============================================================================== From 17b3d59dab82e8d0d67e9e2ee30c77b6520b2238 Mon Sep 17 00:00:00 2001 From: Jonas Hietala Date: Mon, 26 Aug 2024 20:28:10 +0200 Subject: [PATCH 08/46] Some cleanup --- tree-sitter-djot-inline/grammar.js | 16 +- tree-sitter-djot-inline/src/grammar.json | 60 ++--- tree-sitter-djot-inline/src/parser.c | 295 +++++++++-------------- tree-sitter-djot-inline/src/scanner.c | 32 +-- 4 files changed, 150 insertions(+), 253 deletions(-) diff --git a/tree-sitter-djot-inline/grammar.js b/tree-sitter-djot-inline/grammar.js index 7373565..7f4b321 100644 --- a/tree-sitter-djot-inline/grammar.js +++ b/tree-sitter-djot-inline/grammar.js @@ -91,8 +91,9 @@ module.exports = grammar({ emphasis: ($) => seq( $.emphasis_begin, - $._emphasis_begin_check, + $._emphasis_mark_begin, alias($._inline_without_trailing_space, $.content), + // NOTE end and end_check could be combined $.emphasis_end, $._emphasis_end_check, ), @@ -267,11 +268,9 @@ module.exports = grammar({ "{-", "{=", "{^", - seq("{_", choice($._emphasis_begin_check, $._in_fallback)), seq( - "_", - $._non_whitespace_check, - choice($._emphasis_begin_check, $._in_fallback), + choice("{_", seq("_", $._non_whitespace_check)), + choice($._emphasis_mark_begin, $._in_fallback), ), "{~", "|", @@ -307,13 +306,8 @@ module.exports = grammar({ $._verbatim_end, $._verbatim_content, - $.emphasis_begin_2, - $.emphasis_end_2, - $.strong_begin_2, - $.strong_end_2, - $._emphasis_begin_check, + $._emphasis_mark_begin, $._emphasis_end_check, - $._in_real_emphasis, $._in_fallback, $._non_whitespace_check, diff --git a/tree-sitter-djot-inline/src/grammar.json b/tree-sitter-djot-inline/src/grammar.json index b747526..0a0f2a2 100644 --- a/tree-sitter-djot-inline/src/grammar.json +++ b/tree-sitter-djot-inline/src/grammar.json @@ -256,7 +256,7 @@ }, { "type": "SYMBOL", - "name": "_emphasis_begin_check" + "name": "_emphasis_mark_begin" }, { "type": "ALIAS", @@ -1277,42 +1277,34 @@ { "type": "SEQ", "members": [ - { - "type": "STRING", - "value": "{_" - }, { "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "_emphasis_begin_check" + "type": "STRING", + "value": "{_" }, { - "type": "SYMBOL", - "name": "_in_fallback" + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "_" + }, + { + "type": "SYMBOL", + "name": "_non_whitespace_check" + } + ] } ] - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "_" - }, - { - "type": "SYMBOL", - "name": "_non_whitespace_check" }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", - "name": "_emphasis_begin_check" + "name": "_emphasis_mark_begin" }, { "type": "SYMBOL", @@ -1546,32 +1538,12 @@ }, { "type": "SYMBOL", - "name": "emphasis_begin_2" - }, - { - "type": "SYMBOL", - "name": "emphasis_end_2" - }, - { - "type": "SYMBOL", - "name": "strong_begin_2" - }, - { - "type": "SYMBOL", - "name": "strong_end_2" - }, - { - "type": "SYMBOL", - "name": "_emphasis_begin_check" + "name": "_emphasis_mark_begin" }, { "type": "SYMBOL", "name": "_emphasis_end_check" }, - { - "type": "SYMBOL", - "name": "_in_real_emphasis" - }, { "type": "SYMBOL", "name": "_in_fallback" diff --git a/tree-sitter-djot-inline/src/parser.c b/tree-sitter-djot-inline/src/parser.c index 8e267cb..a1774a8 100644 --- a/tree-sitter-djot-inline/src/parser.c +++ b/tree-sitter-djot-inline/src/parser.c @@ -15,10 +15,10 @@ #define LANGUAGE_VERSION 14 #define STATE_COUNT 1022 #define LARGE_STATE_COUNT 132 -#define SYMBOL_COUNT 135 +#define SYMBOL_COUNT 130 #define ALIAS_COUNT 10 -#define TOKEN_COUNT 79 -#define EXTERNAL_TOKEN_COUNT 14 +#define TOKEN_COUNT 74 +#define EXTERNAL_TOKEN_COUNT 9 #define FIELD_COUNT 0 #define MAX_ALIAS_SEQUENCE_LENGTH 5 #define PRODUCTION_ID_COUNT 10 @@ -92,82 +92,77 @@ enum ts_symbol_identifiers { sym__verbatim_begin = 66, sym__verbatim_end = 67, sym__verbatim_content = 68, - sym_emphasis_begin_2 = 69, - sym_emphasis_end_2 = 70, - sym_strong_begin_2 = 71, - sym_strong_end_2 = 72, - sym__emphasis_begin_check = 73, - sym__emphasis_end_check = 74, - sym__in_real_emphasis = 75, - sym__in_fallback = 76, - sym__non_whitespace_check = 77, - sym__error = 78, - sym_inline = 79, - sym__inline = 80, - sym__inline_without_trailing_space = 81, - sym__element = 82, - sym_inline_attribute = 83, - sym_emphasis = 84, - sym_emphasis_begin = 85, - sym_emphasis_end = 86, - sym_strong = 87, - sym_strong_begin = 88, - sym_strong_end = 89, - sym__hard_line_break = 90, - sym_hard_line_break = 91, - sym__smart_punctuation = 92, - sym_autolink = 93, - sym_highlighted = 94, - sym_insert = 95, - sym_delete = 96, - sym_superscript = 97, - sym_subscript = 98, - sym_footnote_reference = 99, - sym_reference_label = 100, - sym__image = 101, - sym_full_reference_image = 102, - sym_collapsed_reference_image = 103, - sym_inline_image = 104, - sym__image_description = 105, - sym__link = 106, - sym_full_reference_link = 107, - sym_collapsed_reference_link = 108, - sym_inline_link = 109, - sym_link_text = 110, - sym__link_label = 111, - sym_inline_link_destination = 112, - sym_comment = 113, - sym__comment_with_spaces = 114, - sym_span = 115, - sym__comment_with_newline = 116, - sym_raw_inline = 117, - sym_raw_inline_attribute = 118, - sym_math = 119, - sym_verbatim = 120, - sym__todo_highlights = 121, - sym_todo = 122, - sym_note = 123, - sym__symbol_fallback = 124, - aux_sym__text = 125, - sym_class_name = 126, - sym_class = 127, - sym_key_value = 128, - sym_key = 129, - sym_value = 130, - aux_sym__inline_repeat1 = 131, - aux_sym_inline_attribute_repeat1 = 132, - aux_sym_strong_begin_repeat1 = 133, - aux_sym__comment_with_newline_repeat1 = 134, - alias_sym_args = 135, - alias_sym_footnote_marker_begin = 136, - alias_sym_footnote_marker_end = 137, - alias_sym_image_description = 138, - alias_sym_link_label = 139, - alias_sym_math_marker = 140, - alias_sym_math_marker_begin = 141, - alias_sym_math_marker_end = 142, - alias_sym_verbatim_marker_begin = 143, - alias_sym_verbatim_marker_end = 144, + sym__emphasis_mark_begin = 69, + sym__emphasis_end_check = 70, + sym__in_fallback = 71, + sym__non_whitespace_check = 72, + sym__error = 73, + sym_inline = 74, + sym__inline = 75, + sym__inline_without_trailing_space = 76, + sym__element = 77, + sym_inline_attribute = 78, + sym_emphasis = 79, + sym_emphasis_begin = 80, + sym_emphasis_end = 81, + sym_strong = 82, + sym_strong_begin = 83, + sym_strong_end = 84, + sym__hard_line_break = 85, + sym_hard_line_break = 86, + sym__smart_punctuation = 87, + sym_autolink = 88, + sym_highlighted = 89, + sym_insert = 90, + sym_delete = 91, + sym_superscript = 92, + sym_subscript = 93, + sym_footnote_reference = 94, + sym_reference_label = 95, + sym__image = 96, + sym_full_reference_image = 97, + sym_collapsed_reference_image = 98, + sym_inline_image = 99, + sym__image_description = 100, + sym__link = 101, + sym_full_reference_link = 102, + sym_collapsed_reference_link = 103, + sym_inline_link = 104, + sym_link_text = 105, + sym__link_label = 106, + sym_inline_link_destination = 107, + sym_comment = 108, + sym__comment_with_spaces = 109, + sym_span = 110, + sym__comment_with_newline = 111, + sym_raw_inline = 112, + sym_raw_inline_attribute = 113, + sym_math = 114, + sym_verbatim = 115, + sym__todo_highlights = 116, + sym_todo = 117, + sym_note = 118, + sym__symbol_fallback = 119, + aux_sym__text = 120, + sym_class_name = 121, + sym_class = 122, + sym_key_value = 123, + sym_key = 124, + sym_value = 125, + aux_sym__inline_repeat1 = 126, + aux_sym_inline_attribute_repeat1 = 127, + aux_sym_strong_begin_repeat1 = 128, + aux_sym__comment_with_newline_repeat1 = 129, + alias_sym_args = 130, + alias_sym_footnote_marker_begin = 131, + alias_sym_footnote_marker_end = 132, + alias_sym_image_description = 133, + alias_sym_link_label = 134, + alias_sym_math_marker = 135, + alias_sym_math_marker_begin = 136, + alias_sym_math_marker_end = 137, + alias_sym_verbatim_marker_begin = 138, + alias_sym_verbatim_marker_end = 139, }; static const char * const ts_symbol_names[] = { @@ -240,13 +235,8 @@ static const char * const ts_symbol_names[] = { [sym__verbatim_begin] = "raw_inline_marker_begin", [sym__verbatim_end] = "raw_inline_marker_end", [sym__verbatim_content] = "content", - [sym_emphasis_begin_2] = "emphasis_begin_2", - [sym_emphasis_end_2] = "emphasis_end_2", - [sym_strong_begin_2] = "strong_begin_2", - [sym_strong_end_2] = "strong_end_2", - [sym__emphasis_begin_check] = "_emphasis_begin_check", + [sym__emphasis_mark_begin] = "_emphasis_mark_begin", [sym__emphasis_end_check] = "_emphasis_end_check", - [sym__in_real_emphasis] = "_in_real_emphasis", [sym__in_fallback] = "_in_fallback", [sym__non_whitespace_check] = "_non_whitespace_check", [sym__error] = "_error", @@ -388,13 +378,8 @@ static const TSSymbol ts_symbol_map[] = { [sym__verbatim_begin] = sym__verbatim_begin, [sym__verbatim_end] = sym__verbatim_end, [sym__verbatim_content] = sym__verbatim_content, - [sym_emphasis_begin_2] = sym_emphasis_begin_2, - [sym_emphasis_end_2] = sym_emphasis_end_2, - [sym_strong_begin_2] = sym_strong_begin_2, - [sym_strong_end_2] = sym_strong_end_2, - [sym__emphasis_begin_check] = sym__emphasis_begin_check, + [sym__emphasis_mark_begin] = sym__emphasis_mark_begin, [sym__emphasis_end_check] = sym__emphasis_end_check, - [sym__in_real_emphasis] = sym__in_real_emphasis, [sym__in_fallback] = sym__in_fallback, [sym__non_whitespace_check] = sym__non_whitespace_check, [sym__error] = sym__error, @@ -743,23 +728,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_emphasis_begin_2] = { - .visible = true, - .named = true, - }, - [sym_emphasis_end_2] = { - .visible = true, - .named = true, - }, - [sym_strong_begin_2] = { - .visible = true, - .named = true, - }, - [sym_strong_end_2] = { - .visible = true, - .named = true, - }, - [sym__emphasis_begin_check] = { + [sym__emphasis_mark_begin] = { .visible = false, .named = true, }, @@ -767,10 +736,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, - [sym__in_real_emphasis] = { - .visible = false, - .named = true, - }, [sym__in_fallback] = { .visible = false, .named = true, @@ -8413,13 +8378,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(1), [sym__verbatim_end] = ACTIONS(1), [sym__verbatim_content] = ACTIONS(1), - [sym_emphasis_begin_2] = ACTIONS(1), - [sym_emphasis_end_2] = ACTIONS(1), - [sym_strong_begin_2] = ACTIONS(1), - [sym_strong_end_2] = ACTIONS(1), - [sym__emphasis_begin_check] = ACTIONS(1), + [sym__emphasis_mark_begin] = ACTIONS(1), [sym__emphasis_end_check] = ACTIONS(1), - [sym__in_real_emphasis] = ACTIONS(1), [sym__in_fallback] = ACTIONS(1), [sym__non_whitespace_check] = ACTIONS(1), [sym__error] = ACTIONS(1), @@ -40172,12 +40132,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_RBRACE, [23792] = 2, ACTIONS(2373), 1, - sym__emphasis_begin_check, + sym__emphasis_mark_begin, ACTIONS(2376), 1, sym__in_fallback, [23799] = 2, ACTIONS(2378), 1, - sym__emphasis_begin_check, + sym__emphasis_mark_begin, ACTIONS(2381), 1, sym__in_fallback, [23806] = 2, @@ -40192,22 +40152,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_RBRACE, [23820] = 2, ACTIONS(2391), 1, - sym__emphasis_begin_check, + sym__emphasis_mark_begin, ACTIONS(2394), 1, sym__in_fallback, [23827] = 2, ACTIONS(2396), 1, - sym__emphasis_begin_check, + sym__emphasis_mark_begin, ACTIONS(2399), 1, sym__in_fallback, [23834] = 2, ACTIONS(2401), 1, - sym__emphasis_begin_check, + sym__emphasis_mark_begin, ACTIONS(2404), 1, sym__in_fallback, [23841] = 2, ACTIONS(2406), 1, - sym__emphasis_begin_check, + sym__emphasis_mark_begin, ACTIONS(2409), 1, sym__in_fallback, [23848] = 2, @@ -40222,12 +40182,12 @@ static const uint16_t ts_small_parse_table[] = { sym__comment_with_newline, [23862] = 2, ACTIONS(2411), 1, - sym__emphasis_begin_check, + sym__emphasis_mark_begin, ACTIONS(2414), 1, sym__in_fallback, [23869] = 2, ACTIONS(2416), 1, - sym__emphasis_begin_check, + sym__emphasis_mark_begin, ACTIONS(2419), 1, sym__in_fallback, [23876] = 2, @@ -40282,7 +40242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_RBRACE, [23946] = 2, ACTIONS(2447), 1, - sym__emphasis_begin_check, + sym__emphasis_mark_begin, ACTIONS(2450), 1, sym__in_fallback, [23953] = 2, @@ -40297,17 +40257,17 @@ static const uint16_t ts_small_parse_table[] = { sym__comment_with_newline, [23967] = 2, ACTIONS(2456), 1, - sym__emphasis_begin_check, + sym__emphasis_mark_begin, ACTIONS(2459), 1, sym__in_fallback, [23974] = 2, ACTIONS(2461), 1, - sym__emphasis_begin_check, + sym__emphasis_mark_begin, ACTIONS(2464), 1, sym__in_fallback, [23981] = 2, ACTIONS(2466), 1, - sym__emphasis_begin_check, + sym__emphasis_mark_begin, ACTIONS(2469), 1, sym__in_fallback, [23988] = 2, @@ -40317,7 +40277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_RBRACE, [23995] = 2, ACTIONS(2475), 1, - sym__emphasis_begin_check, + sym__emphasis_mark_begin, ACTIONS(2478), 1, sym__in_fallback, [24002] = 2, @@ -40332,7 +40292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_RBRACE, [24016] = 2, ACTIONS(2488), 1, - sym__emphasis_begin_check, + sym__emphasis_mark_begin, ACTIONS(2491), 1, sym__in_fallback, [24023] = 2, @@ -40352,12 +40312,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_RBRACE, [24044] = 2, ACTIONS(2501), 1, - sym__emphasis_begin_check, + sym__emphasis_mark_begin, ACTIONS(2504), 1, sym__in_fallback, [24051] = 2, ACTIONS(2506), 1, - sym__emphasis_begin_check, + sym__emphasis_mark_begin, ACTIONS(2509), 1, sym__in_fallback, [24058] = 2, @@ -40377,7 +40337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_RBRACE, [24079] = 2, ACTIONS(2523), 1, - sym__emphasis_begin_check, + sym__emphasis_mark_begin, ACTIONS(2526), 1, sym__in_fallback, [24086] = 2, @@ -40387,7 +40347,7 @@ static const uint16_t ts_small_parse_table[] = { sym__comment_with_newline, [24093] = 2, ACTIONS(2528), 1, - sym__emphasis_begin_check, + sym__emphasis_mark_begin, ACTIONS(2531), 1, sym__in_fallback, [24100] = 2, @@ -40397,7 +40357,7 @@ static const uint16_t ts_small_parse_table[] = { sym__comment_with_newline, [24107] = 2, ACTIONS(2533), 1, - sym__emphasis_begin_check, + sym__emphasis_mark_begin, ACTIONS(2536), 1, sym__in_fallback, [24114] = 2, @@ -40412,7 +40372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_RBRACE, [24128] = 2, ACTIONS(2546), 1, - sym__emphasis_begin_check, + sym__emphasis_mark_begin, ACTIONS(2549), 1, sym__in_fallback, [24135] = 2, @@ -40422,7 +40382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_RBRACE, [24142] = 2, ACTIONS(2555), 1, - sym__emphasis_begin_check, + sym__emphasis_mark_begin, ACTIONS(2558), 1, sym__in_fallback, [24149] = 2, @@ -40437,7 +40397,7 @@ static const uint16_t ts_small_parse_table[] = { sym__comment_with_newline, [24163] = 2, ACTIONS(2560), 1, - sym__emphasis_begin_check, + sym__emphasis_mark_begin, ACTIONS(2563), 1, sym__in_fallback, [24170] = 2, @@ -41044,7 +41004,7 @@ static const uint16_t ts_small_parse_table[] = { sym_language, [24973] = 1, ACTIONS(2967), 1, - sym__emphasis_begin_check, + sym__emphasis_mark_begin, [24977] = 1, ACTIONS(2969), 1, ts_builtin_sym_end, @@ -41074,34 +41034,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, [25013] = 1, ACTIONS(2987), 1, - sym__emphasis_begin_check, + sym__emphasis_mark_begin, [25017] = 1, ACTIONS(2989), 1, - sym__emphasis_begin_check, + sym__emphasis_mark_begin, [25021] = 1, ACTIONS(2991), 1, - sym__emphasis_begin_check, + sym__emphasis_mark_begin, [25025] = 1, ACTIONS(2993), 1, - sym__emphasis_begin_check, + sym__emphasis_mark_begin, [25029] = 1, ACTIONS(2995), 1, - sym__emphasis_begin_check, + sym__emphasis_mark_begin, [25033] = 1, ACTIONS(2997), 1, - sym__emphasis_begin_check, + sym__emphasis_mark_begin, [25037] = 1, ACTIONS(2999), 1, - sym__emphasis_begin_check, + sym__emphasis_mark_begin, [25041] = 1, ACTIONS(3001), 1, - sym__emphasis_begin_check, + sym__emphasis_mark_begin, [25045] = 1, ACTIONS(3003), 1, - sym__emphasis_begin_check, + sym__emphasis_mark_begin, [25049] = 1, ACTIONS(3005), 1, - sym__emphasis_begin_check, + sym__emphasis_mark_begin, }; static const uint32_t ts_small_parse_table_map[] = { @@ -43276,16 +43236,11 @@ enum ts_external_scanner_symbol_identifiers { ts_external_token__verbatim_begin = 1, ts_external_token__verbatim_end = 2, ts_external_token__verbatim_content = 3, - ts_external_token_emphasis_begin_2 = 4, - ts_external_token_emphasis_end_2 = 5, - ts_external_token_strong_begin_2 = 6, - ts_external_token_strong_end_2 = 7, - ts_external_token__emphasis_begin_check = 8, - ts_external_token__emphasis_end_check = 9, - ts_external_token__in_real_emphasis = 10, - ts_external_token__in_fallback = 11, - ts_external_token__non_whitespace_check = 12, - ts_external_token__error = 13, + ts_external_token__emphasis_mark_begin = 4, + ts_external_token__emphasis_end_check = 5, + ts_external_token__in_fallback = 6, + ts_external_token__non_whitespace_check = 7, + ts_external_token__error = 8, }; static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { @@ -43293,13 +43248,8 @@ static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { [ts_external_token__verbatim_begin] = sym__verbatim_begin, [ts_external_token__verbatim_end] = sym__verbatim_end, [ts_external_token__verbatim_content] = sym__verbatim_content, - [ts_external_token_emphasis_begin_2] = sym_emphasis_begin_2, - [ts_external_token_emphasis_end_2] = sym_emphasis_end_2, - [ts_external_token_strong_begin_2] = sym_strong_begin_2, - [ts_external_token_strong_end_2] = sym_strong_end_2, - [ts_external_token__emphasis_begin_check] = sym__emphasis_begin_check, + [ts_external_token__emphasis_mark_begin] = sym__emphasis_mark_begin, [ts_external_token__emphasis_end_check] = sym__emphasis_end_check, - [ts_external_token__in_real_emphasis] = sym__in_real_emphasis, [ts_external_token__in_fallback] = sym__in_fallback, [ts_external_token__non_whitespace_check] = sym__non_whitespace_check, [ts_external_token__error] = sym__error, @@ -43311,13 +43261,8 @@ static const bool ts_external_scanner_states[9][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__verbatim_begin] = true, [ts_external_token__verbatim_end] = true, [ts_external_token__verbatim_content] = true, - [ts_external_token_emphasis_begin_2] = true, - [ts_external_token_emphasis_end_2] = true, - [ts_external_token_strong_begin_2] = true, - [ts_external_token_strong_end_2] = true, - [ts_external_token__emphasis_begin_check] = true, + [ts_external_token__emphasis_mark_begin] = true, [ts_external_token__emphasis_end_check] = true, - [ts_external_token__in_real_emphasis] = true, [ts_external_token__in_fallback] = true, [ts_external_token__non_whitespace_check] = true, [ts_external_token__error] = true, @@ -43330,7 +43275,7 @@ static const bool ts_external_scanner_states[9][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__non_whitespace_check] = true, }, [4] = { - [ts_external_token__emphasis_begin_check] = true, + [ts_external_token__emphasis_mark_begin] = true, [ts_external_token__in_fallback] = true, }, [5] = { @@ -43343,7 +43288,7 @@ static const bool ts_external_scanner_states[9][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__verbatim_content] = true, }, [8] = { - [ts_external_token__emphasis_begin_check] = true, + [ts_external_token__emphasis_mark_begin] = true, }, }; diff --git a/tree-sitter-djot-inline/src/scanner.c b/tree-sitter-djot-inline/src/scanner.c index 1e060ab..621ac16 100644 --- a/tree-sitter-djot-inline/src/scanner.c +++ b/tree-sitter-djot-inline/src/scanner.c @@ -14,14 +14,8 @@ typedef enum { VERBATIM_END, VERBATIM_CONTENT, - EMPHASIS_BEGIN, - EMPHASIS_END, - STRONG_BEGIN, - STRONG_END, - - EMPHASIS_BEGIN_CHECK, + EMPHASIS_MARK_BEGIN, EMPHASIS_END_CHECK, - IN_REAL_EMPHASIS, IN_FALLBACK, NON_WHITESPACE_CHECK, @@ -134,7 +128,7 @@ static bool find_element(Scanner *s, ElementType e) { } static bool emphasis_begin_check(Scanner *s, TSLexer *lexer) { - lexer->result_symbol = EMPHASIS_BEGIN_CHECK; + lexer->result_symbol = EMPHASIS_MARK_BEGIN; array_push(s->open_elements, EMPHASIS); return true; } @@ -156,8 +150,11 @@ static bool parse_emphasis(Scanner *s, TSLexer *lexer, if (valid_symbols[EMPHASIS_END_CHECK] && emphasis_end_check(s, lexer)) { return true; } - if (valid_symbols[EMPHASIS_BEGIN_CHECK]) { + if (valid_symbols[EMPHASIS_MARK_BEGIN]) { if (valid_symbols[IN_FALLBACK]) { + // FIXME + // this doesn't hold if we're seeing `__`...! + // // If we can find an open emphasis element that means we should choose // this one instead because we should prefer the shorter emphasis if two // are valid. By issuing an error we'll prune this branch @@ -169,7 +166,7 @@ static bool parse_emphasis(Scanner *s, TSLexer *lexer, } else { // We need to output the token common to both the fallback symbol and // the emphasis so the resolver will branch. - lexer->result_symbol = EMPHASIS_BEGIN_CHECK; + lexer->result_symbol = EMPHASIS_MARK_BEGIN; return true; } } else if (emphasis_begin_check(s, lexer)) { @@ -310,21 +307,10 @@ static char *token_type_s(TokenType t) { case VERBATIM_CONTENT: return "VERBATIM_CONTENT"; - case EMPHASIS_BEGIN: - return "EMPHASIS_BEGIN"; - case EMPHASIS_END: - return "EMPHASIS_END"; - case STRONG_BEGIN: - return "STRONG_BEGIN"; - case STRONG_END: - return "STRONG_END"; - - case EMPHASIS_BEGIN_CHECK: - return "EMPHASIS_BEGIN_CHECK"; + case EMPHASIS_MARK_BEGIN: + return "EMPHASIS_MARK_BEGIN"; case EMPHASIS_END_CHECK: return "EMPHASIS_END_CHECK"; - case IN_REAL_EMPHASIS: - return "IN_REAL_EMPHASIS"; case IN_FALLBACK: return "IN_FALLBACK"; From 5660f6cfb096553942e9cd3914af10255ab9d75d Mon Sep 17 00:00:00 2001 From: Jonas Hietala Date: Wed, 28 Aug 2024 10:22:21 +0200 Subject: [PATCH 09/46] Emphasis prototype that passes the weird test cases I could find --- tree-sitter-djot-inline/grammar.js | 67 +- tree-sitter-djot-inline/src/grammar.json | 321 +- tree-sitter-djot-inline/src/node-types.json | 9 +- tree-sitter-djot-inline/src/parser.c | 40933 ++++++++-------- tree-sitter-djot-inline/src/scanner.c | 234 +- .../test/corpus/syntax.txt | 90 +- 6 files changed, 20622 insertions(+), 21032 deletions(-) diff --git a/tree-sitter-djot-inline/grammar.js b/tree-sitter-djot-inline/grammar.js index 7f4b321..921a1ad 100644 --- a/tree-sitter-djot-inline/grammar.js +++ b/tree-sitter-djot-inline/grammar.js @@ -17,7 +17,6 @@ module.exports = grammar({ [$.link_text, $.span, $._symbol_fallback], [$._inline, $._comment_with_spaces], [$._inline_without_trailing_space, $._comment_with_spaces], - [$._inline_without_trailing_space], [$._comment_with_spaces], ], @@ -93,23 +92,15 @@ module.exports = grammar({ $.emphasis_begin, $._emphasis_mark_begin, alias($._inline_without_trailing_space, $.content), - // NOTE end and end_check could be combined - $.emphasis_end, - $._emphasis_end_check, + prec.dynamic(1000, $.emphasis_end), ), - emphasis_begin: ($) => choice("{_", seq("_", $._non_whitespace_check)), - emphasis_end: (_) => choice(token(seq(repeat(" "), "_}")), "_"), - - // Use explicit begin/end to be able to capture ending tokens with arbitrary whitespace. - // Note that I couldn't replace repeat(" ") with $._whitespace for some reason... - // emphasis_begin: (_) => choice(seq("{_", repeat(" ")), "_"), - // emphasis_end: (_) => choice(token(seq(repeat(" "), "_}")), "_"), strong: ($) => seq($.strong_begin, alias($._inline, $.content), $.strong_end), strong_begin: (_) => choice(seq("{*", repeat(" ")), "*"), - strong_end: (_) => choice(token(seq(repeat(" "), "*}")), "*"), + strong_end: (_) => + prec.dynamic(1000, choice(token(seq(repeat(" "), "*}")), "*")), _hard_line_break: ($) => // seq($.hard_line_break, optional($._block_quote_prefix)), @@ -252,32 +243,33 @@ module.exports = grammar({ // These exists to explicit trigger an LR collision with existing // prefixes. A collision isn't detected with a string and the // catch-all `_text` regex. + // + // Don't use dynamic precedence on the fallback, instead use it + // on span end tokens to prevent these branches from getting pruned + // when the tree grows large. _symbol_fallback: ($) => - prec.dynamic( - -1000, - choice( - "![", - "*", - "[", - "[^", - "^", - "_", - "{", - "{*", - "{+", - "{-", - "{=", - "{^", - seq( - choice("{_", seq("_", $._non_whitespace_check)), - choice($._emphasis_mark_begin, $._in_fallback), - ), - "{~", - "|", - "~", - "<", - "$", + choice( + "![", + "*", + "[", + "[^", + "^", + "_", + "{", + "{*", + "{+", + "{-", + "{=", + "{^", + seq( + choice("{_", seq("_", $._non_whitespace_check)), + choice($._emphasis_mark_begin, $._in_fallback), ), + "{~", + "|", + "~", + "<", + "$", ), language: (_) => /[^\n\t \{\}=]+/, @@ -307,7 +299,8 @@ module.exports = grammar({ $._verbatim_content, $._emphasis_mark_begin, - $._emphasis_end_check, + $.emphasis_end, + $._in_fallback, $._non_whitespace_check, diff --git a/tree-sitter-djot-inline/src/grammar.json b/tree-sitter-djot-inline/src/grammar.json index 0a0f2a2..94f1639 100644 --- a/tree-sitter-djot-inline/src/grammar.json +++ b/tree-sitter-djot-inline/src/grammar.json @@ -268,12 +268,12 @@ "value": "content" }, { - "type": "SYMBOL", - "name": "emphasis_end" - }, - { - "type": "SYMBOL", - "name": "_emphasis_end_check" + "type": "PREC_DYNAMIC", + "value": 1000, + "content": { + "type": "SYMBOL", + "name": "emphasis_end" + } } ] }, @@ -299,34 +299,6 @@ } ] }, - "emphasis_end": { - "type": "CHOICE", - "members": [ - { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "REPEAT", - "content": { - "type": "STRING", - "value": " " - } - }, - { - "type": "STRING", - "value": "_}" - } - ] - } - }, - { - "type": "STRING", - "value": "_" - } - ] - }, "strong": { "type": "SEQ", "members": [ @@ -375,32 +347,36 @@ ] }, "strong_end": { - "type": "CHOICE", - "members": [ - { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "REPEAT", - "content": { + "type": "PREC_DYNAMIC", + "value": 1000, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "STRING", + "value": " " + } + }, + { "type": "STRING", - "value": " " + "value": "*}" } - }, - { - "type": "STRING", - "value": "*}" - } - ] + ] + } + }, + { + "type": "STRING", + "value": "*" } - }, - { - "type": "STRING", - "value": "*" - } - ] + ] + } }, "_hard_line_break": { "type": "SYMBOL", @@ -1221,121 +1197,117 @@ "value": "FIXME" }, "_symbol_fallback": { - "type": "PREC_DYNAMIC", - "value": -1000, - "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "![" - }, - { - "type": "STRING", - "value": "*" - }, - { - "type": "STRING", - "value": "[" - }, - { - "type": "STRING", - "value": "[^" - }, - { - "type": "STRING", - "value": "^" - }, - { - "type": "STRING", - "value": "_" - }, - { - "type": "STRING", - "value": "{" - }, - { - "type": "STRING", - "value": "{*" - }, - { - "type": "STRING", - "value": "{+" - }, - { - "type": "STRING", - "value": "{-" - }, - { - "type": "STRING", - "value": "{=" - }, - { - "type": "STRING", - "value": "{^" - }, - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "{_" - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "_" - }, - { - "type": "SYMBOL", - "name": "_non_whitespace_check" - } - ] - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_emphasis_mark_begin" - }, - { - "type": "SYMBOL", - "name": "_in_fallback" - } - ] - } - ] - }, - { - "type": "STRING", - "value": "{~" - }, - { - "type": "STRING", - "value": "|" - }, - { - "type": "STRING", - "value": "~" - }, - { - "type": "STRING", - "value": "<" - }, - { - "type": "STRING", - "value": "$" - } - ] - } + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "![" + }, + { + "type": "STRING", + "value": "*" + }, + { + "type": "STRING", + "value": "[" + }, + { + "type": "STRING", + "value": "[^" + }, + { + "type": "STRING", + "value": "^" + }, + { + "type": "STRING", + "value": "_" + }, + { + "type": "STRING", + "value": "{" + }, + { + "type": "STRING", + "value": "{*" + }, + { + "type": "STRING", + "value": "{+" + }, + { + "type": "STRING", + "value": "{-" + }, + { + "type": "STRING", + "value": "{=" + }, + { + "type": "STRING", + "value": "{^" + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "{_" + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "_" + }, + { + "type": "SYMBOL", + "name": "_non_whitespace_check" + } + ] + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_emphasis_mark_begin" + }, + { + "type": "SYMBOL", + "name": "_in_fallback" + } + ] + } + ] + }, + { + "type": "STRING", + "value": "{~" + }, + { + "type": "STRING", + "value": "|" + }, + { + "type": "STRING", + "value": "~" + }, + { + "type": "STRING", + "value": "<" + }, + { + "type": "STRING", + "value": "$" + } + ] }, "language": { "type": "PATTERN", @@ -1511,9 +1483,6 @@ "_inline_without_trailing_space", "_comment_with_spaces" ], - [ - "_inline_without_trailing_space" - ], [ "_comment_with_spaces" ] @@ -1542,7 +1511,7 @@ }, { "type": "SYMBOL", - "name": "_emphasis_end_check" + "name": "emphasis_end" }, { "type": "SYMBOL", diff --git a/tree-sitter-djot-inline/src/node-types.json b/tree-sitter-djot-inline/src/node-types.json index 53b1533..9fba8d5 100644 --- a/tree-sitter-djot-inline/src/node-types.json +++ b/tree-sitter-djot-inline/src/node-types.json @@ -259,11 +259,6 @@ "named": true, "fields": {} }, - { - "type": "emphasis_end", - "named": true, - "fields": {} - }, { "type": "footnote_reference", "named": true, @@ -1416,6 +1411,10 @@ "type": "em_dash", "named": true }, + { + "type": "emphasis_end", + "named": true + }, { "type": "en_dash", "named": true diff --git a/tree-sitter-djot-inline/src/parser.c b/tree-sitter-djot-inline/src/parser.c index a1774a8..f8ac2d6 100644 --- a/tree-sitter-djot-inline/src/parser.c +++ b/tree-sitter-djot-inline/src/parser.c @@ -13,14 +13,14 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 1022 +#define STATE_COUNT 1010 #define LARGE_STATE_COUNT 132 -#define SYMBOL_COUNT 130 +#define SYMBOL_COUNT 128 #define ALIAS_COUNT 10 -#define TOKEN_COUNT 74 +#define TOKEN_COUNT 73 #define EXTERNAL_TOKEN_COUNT 9 #define FIELD_COUNT 0 -#define MAX_ALIAS_SEQUENCE_LENGTH 5 +#define MAX_ALIAS_SEQUENCE_LENGTH 4 #define PRODUCTION_ID_COUNT 10 enum ts_symbol_identifiers { @@ -28,141 +28,139 @@ enum ts_symbol_identifiers { anon_sym_RBRACE = 2, anon_sym_LBRACE_ = 3, anon_sym__ = 4, - aux_sym_emphasis_end_token1 = 5, - anon_sym_LBRACE_STAR = 6, - anon_sym_SPACE = 7, - anon_sym_STAR = 8, - aux_sym_strong_end_token1 = 9, - anon_sym_BSLASH = 10, - sym_quotation_marks = 11, - sym_ellipsis = 12, - sym_em_dash = 13, - sym_en_dash = 14, - sym_backslash_escape = 15, - anon_sym_LT = 16, - aux_sym_autolink_token1 = 17, - anon_sym_GT = 18, - anon_sym_LBRACE_EQ = 19, - anon_sym_EQ_RBRACE = 20, - anon_sym_LBRACE_PLUS = 21, - anon_sym_PLUS_RBRACE = 22, - anon_sym_LBRACE_DASH = 23, - anon_sym_DASH_RBRACE = 24, - sym_symbol = 25, - anon_sym_LBRACE_CARET = 26, - anon_sym_CARET = 27, - anon_sym_CARET_RBRACE = 28, - anon_sym_LBRACE_TILDE = 29, - anon_sym_TILDE = 30, - anon_sym_TILDE_RBRACE = 31, - anon_sym_LBRACK_CARET = 32, - anon_sym_RBRACK = 33, - sym__id = 34, - anon_sym_LBRACK_RBRACK = 35, - anon_sym_BANG_LBRACK = 36, - anon_sym_LBRACK = 37, - anon_sym_RBRACK2 = 38, - anon_sym_LPAREN = 39, - aux_sym_inline_link_destination_token1 = 40, - anon_sym_RPAREN = 41, - anon_sym_LBRACE2 = 42, - anon_sym_PERCENT = 43, - aux_sym__comment_with_newline_token1 = 44, - anon_sym_LBRACE_EQ2 = 45, - anon_sym_DOLLAR = 46, - anon_sym_TODO = 47, - anon_sym_WIP = 48, - anon_sym_NOTE = 49, - anon_sym_INFO = 50, - anon_sym_XXX = 51, - sym_fixme = 52, - anon_sym_PIPE = 53, - sym_language = 54, - sym__whitespace = 55, - sym__whitespace1 = 56, - sym__newline = 57, - aux_sym__text_token1 = 58, - anon_sym_DOT = 59, - sym_identifier = 60, - anon_sym_EQ = 61, - anon_sym_DQUOTE = 62, - aux_sym_value_token1 = 63, - aux_sym_value_token2 = 64, - sym__ignored = 65, - sym__verbatim_begin = 66, - sym__verbatim_end = 67, - sym__verbatim_content = 68, - sym__emphasis_mark_begin = 69, - sym__emphasis_end_check = 70, - sym__in_fallback = 71, - sym__non_whitespace_check = 72, - sym__error = 73, - sym_inline = 74, - sym__inline = 75, - sym__inline_without_trailing_space = 76, - sym__element = 77, - sym_inline_attribute = 78, - sym_emphasis = 79, - sym_emphasis_begin = 80, - sym_emphasis_end = 81, - sym_strong = 82, - sym_strong_begin = 83, - sym_strong_end = 84, - sym__hard_line_break = 85, - sym_hard_line_break = 86, - sym__smart_punctuation = 87, - sym_autolink = 88, - sym_highlighted = 89, - sym_insert = 90, - sym_delete = 91, - sym_superscript = 92, - sym_subscript = 93, - sym_footnote_reference = 94, - sym_reference_label = 95, - sym__image = 96, - sym_full_reference_image = 97, - sym_collapsed_reference_image = 98, - sym_inline_image = 99, - sym__image_description = 100, - sym__link = 101, - sym_full_reference_link = 102, - sym_collapsed_reference_link = 103, - sym_inline_link = 104, - sym_link_text = 105, - sym__link_label = 106, - sym_inline_link_destination = 107, - sym_comment = 108, - sym__comment_with_spaces = 109, - sym_span = 110, - sym__comment_with_newline = 111, - sym_raw_inline = 112, - sym_raw_inline_attribute = 113, - sym_math = 114, - sym_verbatim = 115, - sym__todo_highlights = 116, - sym_todo = 117, - sym_note = 118, - sym__symbol_fallback = 119, - aux_sym__text = 120, - sym_class_name = 121, - sym_class = 122, - sym_key_value = 123, - sym_key = 124, - sym_value = 125, - aux_sym__inline_repeat1 = 126, - aux_sym_inline_attribute_repeat1 = 127, - aux_sym_strong_begin_repeat1 = 128, - aux_sym__comment_with_newline_repeat1 = 129, - alias_sym_args = 130, - alias_sym_footnote_marker_begin = 131, - alias_sym_footnote_marker_end = 132, - alias_sym_image_description = 133, - alias_sym_link_label = 134, - alias_sym_math_marker = 135, - alias_sym_math_marker_begin = 136, - alias_sym_math_marker_end = 137, - alias_sym_verbatim_marker_begin = 138, - alias_sym_verbatim_marker_end = 139, + anon_sym_LBRACE_STAR = 5, + anon_sym_SPACE = 6, + anon_sym_STAR = 7, + aux_sym_strong_end_token1 = 8, + anon_sym_BSLASH = 9, + sym_quotation_marks = 10, + sym_ellipsis = 11, + sym_em_dash = 12, + sym_en_dash = 13, + sym_backslash_escape = 14, + anon_sym_LT = 15, + aux_sym_autolink_token1 = 16, + anon_sym_GT = 17, + anon_sym_LBRACE_EQ = 18, + anon_sym_EQ_RBRACE = 19, + anon_sym_LBRACE_PLUS = 20, + anon_sym_PLUS_RBRACE = 21, + anon_sym_LBRACE_DASH = 22, + anon_sym_DASH_RBRACE = 23, + sym_symbol = 24, + anon_sym_LBRACE_CARET = 25, + anon_sym_CARET = 26, + anon_sym_CARET_RBRACE = 27, + anon_sym_LBRACE_TILDE = 28, + anon_sym_TILDE = 29, + anon_sym_TILDE_RBRACE = 30, + anon_sym_LBRACK_CARET = 31, + anon_sym_RBRACK = 32, + sym__id = 33, + anon_sym_LBRACK_RBRACK = 34, + anon_sym_BANG_LBRACK = 35, + anon_sym_LBRACK = 36, + anon_sym_RBRACK2 = 37, + anon_sym_LPAREN = 38, + aux_sym_inline_link_destination_token1 = 39, + anon_sym_RPAREN = 40, + anon_sym_LBRACE2 = 41, + anon_sym_PERCENT = 42, + aux_sym__comment_with_newline_token1 = 43, + anon_sym_LBRACE_EQ2 = 44, + anon_sym_DOLLAR = 45, + anon_sym_TODO = 46, + anon_sym_WIP = 47, + anon_sym_NOTE = 48, + anon_sym_INFO = 49, + anon_sym_XXX = 50, + sym_fixme = 51, + anon_sym_PIPE = 52, + sym_language = 53, + sym__whitespace = 54, + sym__whitespace1 = 55, + sym__newline = 56, + aux_sym__text_token1 = 57, + anon_sym_DOT = 58, + sym_identifier = 59, + anon_sym_EQ = 60, + anon_sym_DQUOTE = 61, + aux_sym_value_token1 = 62, + aux_sym_value_token2 = 63, + sym__ignored = 64, + sym__verbatim_begin = 65, + sym__verbatim_end = 66, + sym__verbatim_content = 67, + sym__emphasis_mark_begin = 68, + sym_emphasis_end = 69, + sym__in_fallback = 70, + sym__non_whitespace_check = 71, + sym__error = 72, + sym_inline = 73, + sym__inline = 74, + sym__inline_without_trailing_space = 75, + sym__element = 76, + sym_inline_attribute = 77, + sym_emphasis = 78, + sym_emphasis_begin = 79, + sym_strong = 80, + sym_strong_begin = 81, + sym_strong_end = 82, + sym__hard_line_break = 83, + sym_hard_line_break = 84, + sym__smart_punctuation = 85, + sym_autolink = 86, + sym_highlighted = 87, + sym_insert = 88, + sym_delete = 89, + sym_superscript = 90, + sym_subscript = 91, + sym_footnote_reference = 92, + sym_reference_label = 93, + sym__image = 94, + sym_full_reference_image = 95, + sym_collapsed_reference_image = 96, + sym_inline_image = 97, + sym__image_description = 98, + sym__link = 99, + sym_full_reference_link = 100, + sym_collapsed_reference_link = 101, + sym_inline_link = 102, + sym_link_text = 103, + sym__link_label = 104, + sym_inline_link_destination = 105, + sym_comment = 106, + sym__comment_with_spaces = 107, + sym_span = 108, + sym__comment_with_newline = 109, + sym_raw_inline = 110, + sym_raw_inline_attribute = 111, + sym_math = 112, + sym_verbatim = 113, + sym__todo_highlights = 114, + sym_todo = 115, + sym_note = 116, + sym__symbol_fallback = 117, + aux_sym__text = 118, + sym_class_name = 119, + sym_class = 120, + sym_key_value = 121, + sym_key = 122, + sym_value = 123, + aux_sym__inline_repeat1 = 124, + aux_sym_inline_attribute_repeat1 = 125, + aux_sym_strong_begin_repeat1 = 126, + aux_sym__comment_with_newline_repeat1 = 127, + alias_sym_args = 128, + alias_sym_footnote_marker_begin = 129, + alias_sym_footnote_marker_end = 130, + alias_sym_image_description = 131, + alias_sym_link_label = 132, + alias_sym_math_marker = 133, + alias_sym_math_marker_begin = 134, + alias_sym_math_marker_end = 135, + alias_sym_verbatim_marker_begin = 136, + alias_sym_verbatim_marker_end = 137, }; static const char * const ts_symbol_names[] = { @@ -171,7 +169,6 @@ static const char * const ts_symbol_names[] = { [anon_sym_RBRACE] = "}", [anon_sym_LBRACE_] = "{_", [anon_sym__] = "_", - [aux_sym_emphasis_end_token1] = "emphasis_end_token1", [anon_sym_LBRACE_STAR] = "{*", [anon_sym_SPACE] = " ", [anon_sym_STAR] = "*", @@ -236,7 +233,7 @@ static const char * const ts_symbol_names[] = { [sym__verbatim_end] = "raw_inline_marker_end", [sym__verbatim_content] = "content", [sym__emphasis_mark_begin] = "_emphasis_mark_begin", - [sym__emphasis_end_check] = "_emphasis_end_check", + [sym_emphasis_end] = "emphasis_end", [sym__in_fallback] = "_in_fallback", [sym__non_whitespace_check] = "_non_whitespace_check", [sym__error] = "_error", @@ -247,7 +244,6 @@ static const char * const ts_symbol_names[] = { [sym_inline_attribute] = "inline_attribute", [sym_emphasis] = "emphasis", [sym_emphasis_begin] = "emphasis_begin", - [sym_emphasis_end] = "emphasis_end", [sym_strong] = "strong", [sym_strong_begin] = "strong_begin", [sym_strong_end] = "strong_end", @@ -314,7 +310,6 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_RBRACE] = anon_sym_RBRACE, [anon_sym_LBRACE_] = anon_sym_LBRACE_, [anon_sym__] = anon_sym__, - [aux_sym_emphasis_end_token1] = aux_sym_emphasis_end_token1, [anon_sym_LBRACE_STAR] = anon_sym_LBRACE_STAR, [anon_sym_SPACE] = anon_sym_SPACE, [anon_sym_STAR] = anon_sym_STAR, @@ -379,7 +374,7 @@ static const TSSymbol ts_symbol_map[] = { [sym__verbatim_end] = sym__verbatim_end, [sym__verbatim_content] = sym__verbatim_content, [sym__emphasis_mark_begin] = sym__emphasis_mark_begin, - [sym__emphasis_end_check] = sym__emphasis_end_check, + [sym_emphasis_end] = sym_emphasis_end, [sym__in_fallback] = sym__in_fallback, [sym__non_whitespace_check] = sym__non_whitespace_check, [sym__error] = sym__error, @@ -390,7 +385,6 @@ static const TSSymbol ts_symbol_map[] = { [sym_inline_attribute] = sym_inline_attribute, [sym_emphasis] = sym_emphasis, [sym_emphasis_begin] = sym_emphasis_begin, - [sym_emphasis_end] = sym_emphasis_end, [sym_strong] = sym_strong, [sym_strong_begin] = sym_strong_begin, [sym_strong_end] = sym_strong_end, @@ -472,10 +466,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [aux_sym_emphasis_end_token1] = { - .visible = false, - .named = false, - }, [anon_sym_LBRACE_STAR] = { .visible = true, .named = false, @@ -732,8 +722,8 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, - [sym__emphasis_end_check] = { - .visible = false, + [sym_emphasis_end] = { + .visible = true, .named = true, }, [sym__in_fallback] = { @@ -776,10 +766,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_emphasis_end] = { - .visible = true, - .named = true, - }, [sym_strong] = { .visible = true, .named = true, @@ -1080,213 +1066,213 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [9] = 2, [10] = 2, [11] = 11, - [12] = 12, + [12] = 2, [13] = 11, - [14] = 12, - [15] = 11, - [16] = 12, + [14] = 14, + [15] = 14, + [16] = 16, [17] = 17, [18] = 18, [19] = 19, - [20] = 17, - [21] = 21, - [22] = 18, - [23] = 19, - [24] = 21, - [25] = 19, - [26] = 18, - [27] = 17, - [28] = 12, - [29] = 11, - [30] = 21, + [20] = 16, + [21] = 11, + [22] = 17, + [23] = 18, + [24] = 19, + [25] = 11, + [26] = 19, + [27] = 18, + [28] = 17, + [29] = 16, + [30] = 14, [31] = 11, - [32] = 12, - [33] = 17, - [34] = 18, - [35] = 19, - [36] = 21, - [37] = 12, - [38] = 17, - [39] = 18, - [40] = 19, - [41] = 21, - [42] = 19, - [43] = 19, - [44] = 18, - [45] = 17, - [46] = 12, - [47] = 11, - [48] = 2, - [49] = 21, + [32] = 14, + [33] = 16, + [34] = 17, + [35] = 18, + [36] = 19, + [37] = 14, + [38] = 16, + [39] = 17, + [40] = 18, + [41] = 19, + [42] = 14, + [43] = 11, + [44] = 11, + [45] = 16, + [46] = 19, + [47] = 18, + [48] = 17, + [49] = 16, [50] = 2, - [51] = 11, - [52] = 12, - [53] = 11, - [54] = 21, - [55] = 18, + [51] = 14, + [52] = 14, + [53] = 16, + [54] = 14, + [55] = 11, [56] = 19, [57] = 18, [58] = 17, - [59] = 12, - [60] = 11, - [61] = 21, - [62] = 11, + [59] = 16, + [60] = 14, + [61] = 16, + [62] = 17, [63] = 17, [64] = 19, - [65] = 21, - [66] = 12, - [67] = 21, - [68] = 17, + [65] = 11, + [66] = 18, + [67] = 11, + [68] = 19, [69] = 18, [70] = 19, [71] = 18, [72] = 17, [73] = 18, - [74] = 17, - [75] = 12, - [76] = 11, - [77] = 21, - [78] = 19, + [74] = 19, + [75] = 11, + [76] = 17, + [77] = 16, + [78] = 14, [79] = 79, [80] = 80, [81] = 81, [82] = 81, - [83] = 79, - [84] = 81, - [85] = 85, - [86] = 85, - [87] = 79, - [88] = 85, - [89] = 85, - [90] = 85, - [91] = 85, - [92] = 85, - [93] = 85, + [83] = 83, + [84] = 79, + [85] = 80, + [86] = 81, + [87] = 81, + [88] = 88, + [89] = 83, + [90] = 79, + [91] = 88, + [92] = 80, + [93] = 83, [94] = 79, - [95] = 79, - [96] = 80, - [97] = 97, - [98] = 97, - [99] = 97, - [100] = 80, - [101] = 79, - [102] = 80, + [95] = 88, + [96] = 83, + [97] = 79, + [98] = 80, + [99] = 80, + [100] = 88, + [101] = 83, + [102] = 88, [103] = 81, [104] = 81, - [105] = 81, - [106] = 97, + [105] = 79, + [106] = 88, [107] = 80, - [108] = 85, - [109] = 85, - [110] = 97, + [108] = 83, + [109] = 80, + [110] = 79, [111] = 80, - [112] = 97, - [113] = 80, - [114] = 97, - [115] = 81, + [112] = 83, + [113] = 79, + [114] = 88, + [115] = 88, [116] = 81, - [117] = 79, - [118] = 79, - [119] = 81, - [120] = 85, - [121] = 97, - [122] = 97, - [123] = 80, - [124] = 80, - [125] = 97, + [117] = 81, + [118] = 88, + [119] = 80, + [120] = 83, + [121] = 79, + [122] = 80, + [123] = 81, + [124] = 83, + [125] = 83, [126] = 79, [127] = 80, - [128] = 97, - [129] = 80, - [130] = 130, - [131] = 81, + [128] = 83, + [129] = 79, + [130] = 81, + [131] = 131, [132] = 132, [133] = 133, - [134] = 133, - [135] = 135, - [136] = 133, - [137] = 137, - [138] = 133, - [139] = 132, - [140] = 132, - [141] = 137, - [142] = 135, - [143] = 135, + [134] = 134, + [135] = 133, + [136] = 136, + [137] = 136, + [138] = 132, + [139] = 136, + [140] = 133, + [141] = 132, + [142] = 134, + [143] = 133, [144] = 133, - [145] = 135, - [146] = 135, - [147] = 137, - [148] = 132, - [149] = 137, - [150] = 132, - [151] = 133, - [152] = 135, - [153] = 137, - [154] = 135, - [155] = 137, - [156] = 132, - [157] = 133, - [158] = 132, - [159] = 133, - [160] = 135, - [161] = 137, - [162] = 132, - [163] = 137, + [145] = 134, + [146] = 132, + [147] = 133, + [148] = 136, + [149] = 132, + [150] = 136, + [151] = 132, + [152] = 132, + [153] = 136, + [154] = 133, + [155] = 134, + [156] = 134, + [157] = 132, + [158] = 134, + [159] = 134, + [160] = 136, + [161] = 136, + [162] = 134, + [163] = 133, [164] = 133, - [165] = 132, - [166] = 135, - [167] = 133, - [168] = 132, - [169] = 135, - [170] = 137, - [171] = 137, + [165] = 134, + [166] = 132, + [167] = 132, + [168] = 136, + [169] = 133, + [170] = 136, + [171] = 134, [172] = 172, [173] = 173, - [174] = 173, - [175] = 175, - [176] = 172, + [174] = 174, + [175] = 173, + [176] = 174, [177] = 177, - [178] = 175, + [178] = 173, [179] = 172, [180] = 177, - [181] = 173, - [182] = 172, - [183] = 177, - [184] = 175, - [185] = 132, - [186] = 173, + [181] = 174, + [182] = 173, + [183] = 172, + [184] = 172, + [185] = 173, + [186] = 174, [187] = 177, - [188] = 172, - [189] = 172, - [190] = 173, - [191] = 177, - [192] = 173, - [193] = 177, - [194] = 177, - [195] = 175, - [196] = 173, - [197] = 172, - [198] = 175, - [199] = 175, - [200] = 133, - [201] = 175, - [202] = 175, - [203] = 173, + [188] = 177, + [189] = 177, + [190] = 172, + [191] = 174, + [192] = 172, + [193] = 132, + [194] = 174, + [195] = 177, + [196] = 177, + [197] = 173, + [198] = 174, + [199] = 173, + [200] = 172, + [201] = 174, + [202] = 173, + [203] = 177, [204] = 172, - [205] = 177, - [206] = 175, - [207] = 175, - [208] = 173, - [209] = 135, - [210] = 137, + [205] = 174, + [206] = 177, + [207] = 173, + [208] = 134, + [209] = 174, + [210] = 173, [211] = 172, - [212] = 177, - [213] = 177, - [214] = 173, - [215] = 172, + [212] = 172, + [213] = 133, + [214] = 177, + [215] = 136, [216] = 216, - [217] = 217, - [218] = 216, + [217] = 177, + [218] = 218, [219] = 219, [220] = 220, [221] = 221, @@ -1300,7 +1286,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [229] = 229, [230] = 230, [231] = 231, - [232] = 217, + [232] = 232, [233] = 233, [234] = 234, [235] = 235, @@ -1308,25 +1294,25 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [237] = 237, [238] = 238, [239] = 239, - [240] = 240, - [241] = 241, - [242] = 223, - [243] = 234, + [240] = 221, + [241] = 232, + [242] = 242, + [243] = 243, [244] = 244, [245] = 245, [246] = 246, - [247] = 247, - [248] = 248, - [249] = 244, + [247] = 242, + [248] = 216, + [249] = 249, [250] = 250, [251] = 251, [252] = 252, - [253] = 216, + [253] = 218, [254] = 219, [255] = 220, - [256] = 221, + [256] = 243, [257] = 222, - [258] = 245, + [258] = 223, [259] = 224, [260] = 225, [261] = 226, @@ -1335,50 +1321,50 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [264] = 229, [265] = 230, [266] = 231, - [267] = 217, + [267] = 244, [268] = 233, - [269] = 246, + [269] = 234, [270] = 235, [271] = 236, [272] = 237, [273] = 238, [274] = 239, - [275] = 240, - [276] = 241, - [277] = 216, - [278] = 251, - [279] = 223, - [280] = 250, - [281] = 247, - [282] = 248, - [283] = 247, - [284] = 246, - [285] = 245, - [286] = 244, - [287] = 234, - [288] = 223, - [289] = 241, - [290] = 234, + [275] = 219, + [276] = 251, + [277] = 221, + [278] = 250, + [279] = 249, + [280] = 216, + [281] = 245, + [282] = 246, + [283] = 245, + [284] = 244, + [285] = 243, + [286] = 242, + [287] = 232, + [288] = 232, + [289] = 242, + [290] = 243, [291] = 244, - [292] = 245, - [293] = 246, - [294] = 240, - [295] = 239, - [296] = 247, - [297] = 248, - [298] = 298, + [292] = 221, + [293] = 239, + [294] = 245, + [295] = 246, + [296] = 296, + [297] = 216, + [298] = 249, [299] = 250, [300] = 251, [301] = 252, - [302] = 216, + [302] = 218, [303] = 219, - [304] = 220, - [305] = 221, - [306] = 238, - [307] = 237, - [308] = 236, + [304] = 238, + [305] = 237, + [306] = 236, + [307] = 220, + [308] = 246, [309] = 222, - [310] = 248, + [310] = 223, [311] = 224, [312] = 225, [313] = 226, @@ -1387,50 +1373,50 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [316] = 229, [317] = 230, [318] = 231, - [319] = 217, + [319] = 319, [320] = 233, - [321] = 321, + [321] = 234, [322] = 235, [323] = 236, [324] = 237, [325] = 238, [326] = 239, - [327] = 240, - [328] = 241, - [329] = 235, - [330] = 330, - [331] = 223, - [332] = 233, - [333] = 217, - [334] = 231, - [335] = 230, - [336] = 229, - [337] = 228, - [338] = 227, - [339] = 226, - [340] = 225, - [341] = 224, - [342] = 234, + [327] = 235, + [328] = 234, + [329] = 221, + [330] = 233, + [331] = 331, + [332] = 231, + [333] = 230, + [334] = 229, + [335] = 228, + [336] = 227, + [337] = 226, + [338] = 225, + [339] = 224, + [340] = 232, + [341] = 242, + [342] = 243, [343] = 244, - [344] = 245, - [345] = 246, - [346] = 321, - [347] = 222, - [348] = 247, - [349] = 248, - [350] = 330, + [344] = 223, + [345] = 222, + [346] = 245, + [347] = 246, + [348] = 319, + [349] = 216, + [350] = 249, [351] = 250, [352] = 251, [353] = 252, - [354] = 216, + [354] = 218, [355] = 219, - [356] = 220, - [357] = 221, - [358] = 221, + [356] = 331, + [357] = 220, + [358] = 232, [359] = 220, - [360] = 219, + [360] = 319, [361] = 222, - [362] = 321, + [362] = 223, [363] = 224, [364] = 225, [365] = 226, @@ -1439,50 +1425,50 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [368] = 229, [369] = 230, [370] = 231, - [371] = 217, + [371] = 331, [372] = 233, - [373] = 330, + [373] = 234, [374] = 235, [375] = 236, [376] = 237, [377] = 238, [378] = 239, - [379] = 240, - [380] = 241, - [381] = 234, - [382] = 252, - [383] = 223, - [384] = 251, - [385] = 250, - [386] = 321, - [387] = 248, - [388] = 247, - [389] = 246, - [390] = 245, - [391] = 244, - [392] = 330, - [393] = 223, - [394] = 234, + [379] = 218, + [380] = 252, + [381] = 221, + [382] = 251, + [383] = 250, + [384] = 249, + [385] = 216, + [386] = 319, + [387] = 246, + [388] = 245, + [389] = 244, + [390] = 243, + [391] = 242, + [392] = 232, + [393] = 242, + [394] = 243, [395] = 244, - [396] = 245, - [397] = 246, - [398] = 321, - [399] = 330, - [400] = 247, - [401] = 248, - [402] = 321, + [396] = 331, + [397] = 221, + [398] = 245, + [399] = 246, + [400] = 319, + [401] = 216, + [402] = 249, [403] = 250, [404] = 251, [405] = 252, - [406] = 216, + [406] = 218, [407] = 219, - [408] = 220, - [409] = 221, - [410] = 330, - [411] = 321, - [412] = 241, + [408] = 331, + [409] = 319, + [410] = 331, + [411] = 220, + [412] = 319, [413] = 222, - [414] = 330, + [414] = 223, [415] = 224, [416] = 225, [417] = 226, @@ -1491,50 +1477,50 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [420] = 229, [421] = 230, [422] = 231, - [423] = 217, + [423] = 331, [424] = 233, - [425] = 321, + [425] = 234, [426] = 235, [427] = 236, [428] = 237, [429] = 238, [430] = 239, - [431] = 240, - [432] = 241, - [433] = 240, - [434] = 330, - [435] = 223, - [436] = 321, - [437] = 330, + [431] = 319, + [432] = 239, + [433] = 221, + [434] = 331, + [435] = 319, + [436] = 331, + [437] = 172, [438] = 252, - [439] = 175, - [440] = 250, - [441] = 251, - [442] = 239, - [443] = 238, - [444] = 252, - [445] = 216, - [446] = 234, + [439] = 216, + [440] = 249, + [441] = 238, + [442] = 237, + [443] = 250, + [444] = 232, + [445] = 242, + [446] = 243, [447] = 244, - [448] = 245, - [449] = 246, - [450] = 219, - [451] = 237, - [452] = 247, - [453] = 248, - [454] = 220, + [448] = 236, + [449] = 235, + [450] = 245, + [451] = 246, + [452] = 251, + [453] = 216, + [454] = 249, [455] = 250, [456] = 251, [457] = 252, - [458] = 216, + [458] = 218, [459] = 219, - [460] = 220, - [461] = 221, - [462] = 236, - [463] = 235, - [464] = 177, + [460] = 234, + [461] = 233, + [462] = 252, + [463] = 220, + [464] = 218, [465] = 222, - [466] = 172, + [466] = 223, [467] = 224, [468] = 225, [469] = 226, @@ -1543,151 +1529,151 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [472] = 229, [473] = 230, [474] = 231, - [475] = 217, + [475] = 173, [476] = 233, - [477] = 221, + [477] = 234, [478] = 235, [479] = 236, [480] = 237, [481] = 238, [482] = 239, - [483] = 240, - [484] = 241, - [485] = 173, - [486] = 241, - [487] = 223, - [488] = 240, - [489] = 239, - [490] = 238, - [491] = 233, - [492] = 237, - [493] = 236, - [494] = 235, - [495] = 217, - [496] = 231, - [497] = 233, - [498] = 234, - [499] = 244, - [500] = 245, - [501] = 247, - [502] = 248, - [503] = 250, - [504] = 251, - [505] = 252, - [506] = 219, - [507] = 220, - [508] = 221, - [509] = 230, - [510] = 222, - [511] = 330, - [512] = 224, - [513] = 225, - [514] = 226, - [515] = 227, - [516] = 228, - [517] = 229, - [518] = 230, - [519] = 231, - [520] = 217, - [521] = 233, - [522] = 321, - [523] = 235, - [524] = 236, - [525] = 237, - [526] = 238, - [527] = 239, - [528] = 240, - [529] = 241, - [530] = 229, - [531] = 228, - [532] = 223, - [533] = 227, - [534] = 226, - [535] = 225, - [536] = 224, - [537] = 234, - [538] = 244, - [539] = 245, - [540] = 246, - [541] = 247, - [542] = 248, - [543] = 250, - [544] = 251, - [545] = 252, - [546] = 216, - [547] = 219, - [548] = 220, - [549] = 221, - [550] = 550, - [551] = 222, - [552] = 222, - [553] = 224, - [554] = 225, - [555] = 226, - [556] = 227, - [557] = 228, - [558] = 229, - [559] = 230, - [560] = 231, - [561] = 224, - [562] = 330, - [563] = 246, - [564] = 564, - [565] = 330, - [566] = 321, - [567] = 564, - [568] = 564, - [569] = 330, - [570] = 330, - [571] = 321, - [572] = 246, - [573] = 330, - [574] = 564, - [575] = 330, - [576] = 321, - [577] = 564, - [578] = 330, - [579] = 321, - [580] = 321, - [581] = 581, - [582] = 321, - [583] = 330, - [584] = 564, - [585] = 321, - [586] = 321, - [587] = 564, - [588] = 564, - [589] = 321, - [590] = 223, - [591] = 321, - [592] = 330, - [593] = 330, - [594] = 564, - [595] = 241, - [596] = 240, - [597] = 239, - [598] = 598, - [599] = 238, - [600] = 564, - [601] = 234, - [602] = 244, + [483] = 174, + [484] = 219, + [485] = 221, + [486] = 231, + [487] = 230, + [488] = 229, + [489] = 232, + [490] = 242, + [491] = 243, + [492] = 245, + [493] = 246, + [494] = 249, + [495] = 250, + [496] = 251, + [497] = 252, + [498] = 218, + [499] = 219, + [500] = 228, + [501] = 220, + [502] = 331, + [503] = 222, + [504] = 223, + [505] = 224, + [506] = 225, + [507] = 226, + [508] = 227, + [509] = 228, + [510] = 229, + [511] = 230, + [512] = 231, + [513] = 319, + [514] = 233, + [515] = 234, + [516] = 235, + [517] = 236, + [518] = 237, + [519] = 238, + [520] = 239, + [521] = 227, + [522] = 226, + [523] = 221, + [524] = 225, + [525] = 224, + [526] = 223, + [527] = 222, + [528] = 232, + [529] = 242, + [530] = 243, + [531] = 244, + [532] = 245, + [533] = 246, + [534] = 216, + [535] = 249, + [536] = 250, + [537] = 251, + [538] = 252, + [539] = 218, + [540] = 219, + [541] = 541, + [542] = 220, + [543] = 220, + [544] = 222, + [545] = 223, + [546] = 224, + [547] = 225, + [548] = 226, + [549] = 227, + [550] = 228, + [551] = 229, + [552] = 230, + [553] = 231, + [554] = 233, + [555] = 234, + [556] = 235, + [557] = 236, + [558] = 237, + [559] = 238, + [560] = 239, + [561] = 219, + [562] = 319, + [563] = 331, + [564] = 244, + [565] = 319, + [566] = 319, + [567] = 331, + [568] = 331, + [569] = 569, + [570] = 319, + [571] = 331, + [572] = 319, + [573] = 569, + [574] = 569, + [575] = 319, + [576] = 331, + [577] = 569, + [578] = 319, + [579] = 569, + [580] = 569, + [581] = 569, + [582] = 582, + [583] = 331, + [584] = 331, + [585] = 569, + [586] = 244, + [587] = 319, + [588] = 221, + [589] = 331, + [590] = 319, + [591] = 319, + [592] = 331, + [593] = 239, + [594] = 569, + [595] = 569, + [596] = 596, + [597] = 238, + [598] = 237, + [599] = 232, + [600] = 242, + [601] = 243, + [602] = 236, [603] = 245, - [604] = 237, - [605] = 247, - [606] = 248, - [607] = 236, + [604] = 246, + [605] = 235, + [606] = 216, + [607] = 249, [608] = 250, [609] = 251, [610] = 252, - [611] = 216, - [612] = 219, - [613] = 220, - [614] = 221, - [615] = 235, - [616] = 321, + [611] = 218, + [612] = 234, + [613] = 331, + [614] = 233, + [615] = 220, + [616] = 331, [617] = 222, - [618] = 330, - [619] = 233, + [618] = 223, + [619] = 224, [620] = 225, [621] = 226, [622] = 227, @@ -1695,55 +1681,55 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [624] = 229, [625] = 230, [626] = 231, - [627] = 217, - [628] = 564, - [629] = 321, - [630] = 330, + [627] = 319, + [628] = 331, + [629] = 319, + [630] = 569, [631] = 631, - [632] = 631, + [632] = 632, [633] = 631, - [634] = 631, - [635] = 631, - [636] = 636, - [637] = 637, - [638] = 636, - [639] = 636, + [634] = 634, + [635] = 632, + [636] = 632, + [637] = 631, + [638] = 632, + [639] = 632, [640] = 631, [641] = 631, - [642] = 636, - [643] = 636, - [644] = 636, - [645] = 636, - [646] = 636, - [647] = 631, + [642] = 632, + [643] = 631, + [644] = 632, + [645] = 631, + [646] = 631, + [647] = 632, [648] = 631, - [649] = 631, - [650] = 636, - [651] = 636, - [652] = 631, - [653] = 636, - [654] = 636, + [649] = 632, + [650] = 631, + [651] = 632, + [652] = 632, + [653] = 631, + [654] = 631, [655] = 631, - [656] = 631, - [657] = 636, + [656] = 632, + [657] = 632, [658] = 631, - [659] = 631, - [660] = 636, - [661] = 631, - [662] = 636, + [659] = 632, + [660] = 631, + [661] = 632, + [662] = 631, [663] = 631, - [664] = 631, - [665] = 636, - [666] = 636, + [664] = 632, + [665] = 631, + [666] = 632, [667] = 631, - [668] = 636, - [669] = 636, - [670] = 636, - [671] = 631, - [672] = 636, + [668] = 632, + [669] = 631, + [670] = 632, + [671] = 632, + [672] = 632, [673] = 631, [674] = 631, - [675] = 636, + [675] = 632, [676] = 676, [677] = 677, [678] = 678, @@ -1755,341 +1741,329 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [684] = 684, [685] = 685, [686] = 686, - [687] = 686, - [688] = 688, - [689] = 688, - [690] = 685, - [691] = 688, - [692] = 685, - [693] = 685, - [694] = 688, - [695] = 686, + [687] = 687, + [688] = 685, + [689] = 685, + [690] = 690, + [691] = 685, + [692] = 687, + [693] = 690, + [694] = 690, + [695] = 690, [696] = 685, - [697] = 688, - [698] = 688, - [699] = 686, - [700] = 688, - [701] = 686, - [702] = 685, - [703] = 686, - [704] = 685, - [705] = 688, - [706] = 686, - [707] = 685, - [708] = 686, - [709] = 686, - [710] = 686, - [711] = 685, - [712] = 688, - [713] = 713, + [697] = 687, + [698] = 690, + [699] = 685, + [700] = 687, + [701] = 701, + [702] = 702, + [703] = 690, + [704] = 690, + [705] = 685, + [706] = 685, + [707] = 690, + [708] = 687, + [709] = 685, + [710] = 690, + [711] = 687, + [712] = 685, + [713] = 690, [714] = 685, - [715] = 688, - [716] = 716, - [717] = 717, - [718] = 686, - [719] = 688, - [720] = 685, + [715] = 687, + [716] = 687, + [717] = 690, + [718] = 687, + [719] = 687, + [720] = 687, [721] = 721, [722] = 722, [723] = 723, - [724] = 724, - [725] = 723, + [724] = 723, + [725] = 725, [726] = 723, - [727] = 722, - [728] = 728, + [727] = 723, + [728] = 723, [729] = 723, - [730] = 722, - [731] = 722, - [732] = 732, - [733] = 722, + [730] = 723, + [731] = 723, + [732] = 723, + [733] = 723, [734] = 723, - [735] = 722, - [736] = 723, - [737] = 723, - [738] = 723, - [739] = 723, - [740] = 723, - [741] = 722, - [742] = 722, - [743] = 723, - [744] = 722, - [745] = 722, - [746] = 722, + [735] = 735, + [736] = 736, + [737] = 737, + [738] = 737, + [739] = 736, + [740] = 740, + [741] = 741, + [742] = 742, + [743] = 742, + [744] = 742, + [745] = 742, + [746] = 742, [747] = 747, - [748] = 748, - [749] = 748, - [750] = 750, - [751] = 747, - [752] = 752, - [753] = 748, - [754] = 752, - [755] = 752, - [756] = 756, - [757] = 756, - [758] = 752, - [759] = 748, - [760] = 760, - [761] = 756, - [762] = 750, - [763] = 750, - [764] = 750, - [765] = 747, - [766] = 756, - [767] = 756, - [768] = 750, - [769] = 747, - [770] = 748, - [771] = 750, - [772] = 756, - [773] = 752, - [774] = 748, - [775] = 752, - [776] = 747, - [777] = 752, - [778] = 750, - [779] = 747, - [780] = 748, - [781] = 756, - [782] = 750, - [783] = 747, - [784] = 748, - [785] = 748, - [786] = 747, - [787] = 750, - [788] = 747, - [789] = 748, - [790] = 756, - [791] = 748, - [792] = 756, - [793] = 752, - [794] = 750, - [795] = 750, - [796] = 752, - [797] = 747, - [798] = 752, - [799] = 756, - [800] = 756, - [801] = 752, - [802] = 747, + [748] = 742, + [749] = 742, + [750] = 740, + [751] = 742, + [752] = 737, + [753] = 747, + [754] = 736, + [755] = 747, + [756] = 742, + [757] = 742, + [758] = 742, + [759] = 740, + [760] = 747, + [761] = 737, + [762] = 736, + [763] = 737, + [764] = 736, + [765] = 740, + [766] = 740, + [767] = 747, + [768] = 736, + [769] = 737, + [770] = 747, + [771] = 747, + [772] = 747, + [773] = 740, + [774] = 740, + [775] = 740, + [776] = 740, + [777] = 737, + [778] = 747, + [779] = 736, + [780] = 737, + [781] = 747, + [782] = 740, + [783] = 737, + [784] = 737, + [785] = 740, + [786] = 736, + [787] = 736, + [788] = 737, + [789] = 736, + [790] = 736, + [791] = 747, + [792] = 792, + [793] = 792, + [794] = 794, + [795] = 795, + [796] = 796, + [797] = 797, + [798] = 798, + [799] = 799, + [800] = 800, + [801] = 792, + [802] = 802, [803] = 803, [804] = 804, [805] = 805, [806] = 806, - [807] = 807, - [808] = 808, - [809] = 809, - [810] = 810, - [811] = 811, - [812] = 812, - [813] = 813, - [814] = 814, - [815] = 815, - [816] = 803, - [817] = 804, - [818] = 805, - [819] = 806, - [820] = 807, - [821] = 813, - [822] = 808, - [823] = 803, - [824] = 815, - [825] = 809, - [826] = 814, - [827] = 813, - [828] = 810, - [829] = 811, - [830] = 812, - [831] = 813, - [832] = 812, - [833] = 811, - [834] = 814, - [835] = 810, - [836] = 809, - [837] = 808, - [838] = 815, - [839] = 803, - [840] = 804, - [841] = 805, - [842] = 806, - [843] = 807, - [844] = 807, - [845] = 808, - [846] = 806, - [847] = 805, - [848] = 809, - [849] = 804, - [850] = 803, - [851] = 810, - [852] = 811, - [853] = 812, - [854] = 813, - [855] = 815, - [856] = 814, - [857] = 814, - [858] = 813, - [859] = 812, - [860] = 811, - [861] = 815, - [862] = 803, - [863] = 804, - [864] = 805, - [865] = 806, - [866] = 807, - [867] = 810, - [868] = 808, - [869] = 809, - [870] = 808, - [871] = 809, - [872] = 807, - [873] = 806, - [874] = 810, - [875] = 811, - [876] = 812, - [877] = 813, + [807] = 805, + [808] = 806, + [809] = 804, + [810] = 799, + [811] = 797, + [812] = 796, + [813] = 794, + [814] = 795, + [815] = 803, + [816] = 798, + [817] = 802, + [818] = 800, + [819] = 792, + [820] = 802, + [821] = 803, + [822] = 805, + [823] = 792, + [824] = 800, + [825] = 806, + [826] = 804, + [827] = 799, + [828] = 797, + [829] = 796, + [830] = 794, + [831] = 795, + [832] = 798, + [833] = 795, + [834] = 798, + [835] = 800, + [836] = 792, + [837] = 802, + [838] = 803, + [839] = 805, + [840] = 794, + [841] = 796, + [842] = 797, + [843] = 806, + [844] = 804, + [845] = 799, + [846] = 797, + [847] = 796, + [848] = 794, + [849] = 795, + [850] = 799, + [851] = 804, + [852] = 798, + [853] = 806, + [854] = 800, + [855] = 792, + [856] = 802, + [857] = 803, + [858] = 805, + [859] = 792, + [860] = 806, + [861] = 804, + [862] = 799, + [863] = 797, + [864] = 796, + [865] = 794, + [866] = 795, + [867] = 803, + [868] = 802, + [869] = 798, + [870] = 805, + [871] = 871, + [872] = 800, + [873] = 803, + [874] = 802, + [875] = 803, + [876] = 797, + [877] = 799, [878] = 805, - [879] = 804, - [880] = 814, - [881] = 803, - [882] = 815, - [883] = 814, - [884] = 815, - [885] = 803, - [886] = 804, - [887] = 805, - [888] = 806, - [889] = 807, - [890] = 812, - [891] = 812, - [892] = 811, - [893] = 810, - [894] = 809, - [895] = 808, - [896] = 807, - [897] = 806, - [898] = 805, - [899] = 804, - [900] = 803, - [901] = 815, - [902] = 814, - [903] = 813, - [904] = 812, - [905] = 811, - [906] = 810, - [907] = 809, - [908] = 808, - [909] = 807, - [910] = 806, - [911] = 805, - [912] = 912, - [913] = 912, - [914] = 914, + [879] = 800, + [880] = 804, + [881] = 798, + [882] = 806, + [883] = 804, + [884] = 799, + [885] = 797, + [886] = 796, + [887] = 794, + [888] = 795, + [889] = 806, + [890] = 794, + [891] = 796, + [892] = 797, + [893] = 799, + [894] = 804, + [895] = 806, + [896] = 805, + [897] = 794, + [898] = 795, + [899] = 803, + [900] = 802, + [901] = 796, + [902] = 800, + [903] = 805, + [904] = 798, + [905] = 795, + [906] = 803, + [907] = 907, + [908] = 908, + [909] = 909, + [910] = 910, + [911] = 910, + [912] = 909, + [913] = 913, + [914] = 802, [915] = 915, - [916] = 804, + [916] = 792, [917] = 917, [918] = 918, - [919] = 803, - [920] = 920, - [921] = 912, - [922] = 815, - [923] = 914, - [924] = 915, - [925] = 814, - [926] = 814, + [919] = 910, + [920] = 805, + [921] = 909, + [922] = 913, + [923] = 800, + [924] = 924, + [925] = 798, + [926] = 917, [927] = 918, - [928] = 813, - [929] = 920, - [930] = 912, - [931] = 931, - [932] = 914, - [933] = 915, - [934] = 934, - [935] = 811, + [928] = 910, + [929] = 798, + [930] = 909, + [931] = 913, + [932] = 800, + [933] = 803, + [934] = 802, + [935] = 917, [936] = 918, - [937] = 810, - [938] = 920, - [939] = 912, - [940] = 809, - [941] = 914, - [942] = 915, - [943] = 808, - [944] = 813, + [937] = 910, + [938] = 792, + [939] = 909, + [940] = 913, + [941] = 795, + [942] = 800, + [943] = 794, + [944] = 917, [945] = 918, - [946] = 807, - [947] = 920, - [948] = 912, - [949] = 812, - [950] = 914, - [951] = 915, - [952] = 806, - [953] = 811, + [946] = 910, + [947] = 917, + [948] = 909, + [949] = 913, + [950] = 794, + [951] = 796, + [952] = 918, + [953] = 917, [954] = 918, - [955] = 805, - [956] = 920, - [957] = 912, - [958] = 810, - [959] = 914, - [960] = 915, - [961] = 804, - [962] = 815, + [955] = 910, + [956] = 796, + [957] = 909, + [958] = 913, + [959] = 797, + [960] = 913, + [961] = 798, + [962] = 917, [963] = 918, - [964] = 814, - [965] = 920, - [966] = 912, - [967] = 813, - [968] = 914, - [969] = 915, - [970] = 812, - [971] = 811, + [964] = 910, + [965] = 806, + [966] = 909, + [967] = 913, + [968] = 799, + [969] = 969, + [970] = 970, + [971] = 917, [972] = 918, - [973] = 810, - [974] = 920, - [975] = 912, - [976] = 809, - [977] = 914, - [978] = 915, - [979] = 808, - [980] = 980, + [973] = 910, + [974] = 974, + [975] = 909, + [976] = 913, + [977] = 804, + [978] = 978, + [979] = 797, + [980] = 917, [981] = 918, - [982] = 982, - [983] = 920, - [984] = 912, - [985] = 915, - [986] = 914, - [987] = 915, - [988] = 807, - [989] = 809, + [982] = 910, + [983] = 804, + [984] = 909, + [985] = 913, + [986] = 806, + [987] = 799, + [988] = 988, + [989] = 917, [990] = 918, - [991] = 918, - [992] = 920, - [993] = 912, - [994] = 806, - [995] = 914, - [996] = 915, - [997] = 997, - [998] = 920, + [991] = 910, + [992] = 795, + [993] = 909, + [994] = 913, + [995] = 792, + [996] = 802, + [997] = 805, + [998] = 917, [999] = 918, - [1000] = 805, - [1001] = 920, - [1002] = 1002, - [1003] = 1003, - [1004] = 1004, - [1005] = 804, - [1006] = 1006, - [1007] = 1007, - [1008] = 803, - [1009] = 808, - [1010] = 815, - [1011] = 914, - [1012] = 1002, - [1013] = 1002, - [1014] = 1002, - [1015] = 1002, - [1016] = 1002, - [1017] = 1002, - [1018] = 1002, - [1019] = 1002, - [1020] = 1002, - [1021] = 1002, + [1000] = 970, + [1001] = 970, + [1002] = 970, + [1003] = 970, + [1004] = 970, + [1005] = 970, + [1006] = 970, + [1007] = 970, + [1008] = 970, + [1009] = 970, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -2097,5048 +2071,4609 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(145); - if (lookahead == '\t') ADVANCE(325); - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(133) - if (lookahead == ' ') ADVANCE(165); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(347); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '%') ADVANCE(292); - if (lookahead == '(') ADVANCE(285); - if (lookahead == ')') ADVANCE(288); - if (lookahead == '*') ADVANCE(173); - if (lookahead == '+') ADVANCE(338); - if (lookahead == '-') ADVANCE(256); - if (lookahead == '.') ADVANCE(343); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == '=') ADVANCE(346); - if (lookahead == '>') ADVANCE(222); - if (lookahead == 'F') ADVANCE(263); - if (lookahead == 'I') ADVANCE(265); - if (lookahead == 'N') ADVANCE(266); - if (lookahead == 'T') ADVANCE(267); - if (lookahead == 'W') ADVANCE(262); - if (lookahead == 'X') ADVANCE(274); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(180); - if (lookahead == ']') ADVANCE(283); - if (lookahead == '^') ADVANCE(239); - if (lookahead == '_') ADVANCE(156); - if (lookahead == '{') ADVANCE(147); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '}') ADVANCE(151); - if (lookahead == '~') ADVANCE(247); + if (eof) ADVANCE(130); + if (lookahead == '\t') ADVANCE(299); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(118) + if (lookahead == ' ') ADVANCE(145); + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(321); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '%') ADVANCE(268); + if (lookahead == '(') ADVANCE(261); + if (lookahead == ')') ADVANCE(264); + if (lookahead == '*') ADVANCE(149); + if (lookahead == '+') ADVANCE(312); + if (lookahead == '-') ADVANCE(232); + if (lookahead == '.') ADVANCE(317); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == '=') ADVANCE(320); + if (lookahead == '>') ADVANCE(198); + if (lookahead == 'F') ADVANCE(239); + if (lookahead == 'I') ADVANCE(241); + if (lookahead == 'N') ADVANCE(242); + if (lookahead == 'T') ADVANCE(243); + if (lookahead == 'W') ADVANCE(238); + if (lookahead == 'X') ADVANCE(250); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(156); + if (lookahead == ']') ADVANCE(259); + if (lookahead == '^') ADVANCE(215); + if (lookahead == '_') ADVANCE(140); + if (lookahead == '{') ADVANCE(132); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '}') ADVANCE(136); + if (lookahead == '~') ADVANCE(223); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(327); + lookahead != '\f') ADVANCE(301); END_STATE(); case 1: - if (lookahead == '\t') ADVANCE(325); - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(27) - if (lookahead == ' ') ADVANCE(323); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == ']') ADVANCE(254); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(155); - if (lookahead == '{') ADVANCE(149); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '\t') ADVANCE(299); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(20) + if (lookahead == ' ') ADVANCE(298); + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(149); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == ']') ADVANCE(230); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(134); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(327); + lookahead != '\f') ADVANCE(301); END_STATE(); case 2: - if (lookahead == '\t') ADVANCE(325); - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(42) - if (lookahead == ' ') ADVANCE(324); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(173); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(154); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '\t') ADVANCE(299); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(35) + if (lookahead == ' ') ADVANCE(298); + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(149); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(327); + lookahead != '\f') ADVANCE(301); END_STATE(); case 3: - if (lookahead == '\t') ADVANCE(325); - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(42) - if (lookahead == ' ') ADVANCE(324); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(173); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(154); - if (lookahead == '{') ADVANCE(149); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '\t') ADVANCE(299); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(35) + if (lookahead == ' ') ADVANCE(298); + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(149); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(134); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(327); + lookahead != '\f') ADVANCE(301); END_STATE(); case 4: - if (lookahead == '\t') ADVANCE(325); - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(42) - if (lookahead == ' ') ADVANCE(324); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(173); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(154); - if (lookahead == '{') ADVANCE(148); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '\t') ADVANCE(299); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(35) + if (lookahead == ' ') ADVANCE(298); + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(149); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(133); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(327); + lookahead != '\f') ADVANCE(301); END_STATE(); case 5: - if (lookahead == '\t') ADVANCE(325); - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(43) - if (lookahead == ' ') ADVANCE(324); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(173); - if (lookahead == '-') ADVANCE(257); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(263); - if (lookahead == 'I') ADVANCE(265); - if (lookahead == 'N') ADVANCE(266); - if (lookahead == 'T') ADVANCE(267); - if (lookahead == 'W') ADVANCE(262); - if (lookahead == 'X') ADVANCE(274); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(158); - if (lookahead == '{') ADVANCE(149); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + if (lookahead == '\t') ADVANCE(299); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(38) + if (lookahead == ' ') ADVANCE(147); + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == '=') ADVANCE(313); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(134); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(327); + lookahead != '\f') ADVANCE(301); END_STATE(); case 6: - if (lookahead == '\t') ADVANCE(325); - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(44) - if (lookahead == ' ') ADVANCE(171); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '+') ADVANCE(338); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(154); - if (lookahead == '{') ADVANCE(149); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '\t') ADVANCE(299); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(41) + if (lookahead == ' ') ADVANCE(298); + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(149); + if (lookahead == '-') ADVANCE(233); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(239); + if (lookahead == 'I') ADVANCE(241); + if (lookahead == 'N') ADVANCE(242); + if (lookahead == 'T') ADVANCE(243); + if (lookahead == 'W') ADVANCE(238); + if (lookahead == 'X') ADVANCE(250); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(140); + if (lookahead == '{') ADVANCE(134); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(327); + lookahead != '\f') ADVANCE(301); END_STATE(); case 7: - if (lookahead == '\t') ADVANCE(325); - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(45) - if (lookahead == ' ') ADVANCE(171); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == '=') ADVANCE(339); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(154); - if (lookahead == '{') ADVANCE(149); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '\t') ADVANCE(299); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(44) + if (lookahead == ' ') ADVANCE(147); + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '+') ADVANCE(312); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(134); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(327); + lookahead != '\f') ADVANCE(301); END_STATE(); case 8: - if (lookahead == '\t') ADVANCE(325); - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(56) - if (lookahead == ' ') ADVANCE(323); - if (lookahead == '!') ADVANCE(217); - if (lookahead == '"') ADVANCE(218); - if (lookahead == '$') ADVANCE(298); - if (lookahead == '\'') ADVANCE(218); - if (lookahead == '*') ADVANCE(175); - if (lookahead == '-') ADVANCE(196); - if (lookahead == '.') ADVANCE(198); - if (lookahead == ':') ADVANCE(199); - if (lookahead == '<') ADVANCE(194); - if (lookahead == '>') ADVANCE(327); - if (lookahead == 'F') ADVANCE(205); - if (lookahead == 'I') ADVANCE(207); - if (lookahead == 'N') ADVANCE(208); - if (lookahead == 'T') ADVANCE(209); - if (lookahead == 'W') ADVANCE(204); - if (lookahead == 'X') ADVANCE(216); - if (lookahead == '[') ADVANCE(282); - if (lookahead == '\\') ADVANCE(179); - if (lookahead == '^') ADVANCE(241); - if (lookahead == '_') ADVANCE(157); - if (lookahead == '{') ADVANCE(150); - if (lookahead == '|') ADVANCE(318); - if (lookahead == '~') ADVANCE(249); + if (lookahead == '\t') ADVANCE(299); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(51) + if (lookahead == ' ') ADVANCE(298); + if (lookahead == '!') ADVANCE(193); + if (lookahead == '"') ADVANCE(194); + if (lookahead == '$') ADVANCE(274); + if (lookahead == '\'') ADVANCE(194); + if (lookahead == '*') ADVANCE(150); + if (lookahead == '-') ADVANCE(172); + if (lookahead == '.') ADVANCE(174); + if (lookahead == ':') ADVANCE(175); + if (lookahead == '<') ADVANCE(170); + if (lookahead == '>') ADVANCE(301); + if (lookahead == 'F') ADVANCE(181); + if (lookahead == 'I') ADVANCE(183); + if (lookahead == 'N') ADVANCE(184); + if (lookahead == 'T') ADVANCE(185); + if (lookahead == 'W') ADVANCE(180); + if (lookahead == 'X') ADVANCE(192); + if (lookahead == '[') ADVANCE(258); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == '^') ADVANCE(217); + if (lookahead == '_') ADVANCE(141); + if (lookahead == '{') ADVANCE(135); + if (lookahead == '|') ADVANCE(294); + if (lookahead == '~') ADVANCE(225); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(221); + lookahead != '\f') ADVANCE(197); END_STATE(); case 9: - if (lookahead == '\t') ADVANCE(325); - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(68) - if (lookahead == ' ') ADVANCE(324); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(173); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == ']') ADVANCE(254); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(154); - if (lookahead == '{') ADVANCE(149); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '\t') ADVANCE(299); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(61) + if (lookahead == ' ') ADVANCE(147); + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == ']') ADVANCE(230); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(134); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(327); + lookahead != '\f') ADVANCE(301); END_STATE(); case 10: - if (lookahead == '\t') ADVANCE(325); - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(73) - if (lookahead == ' ') ADVANCE(323); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(155); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '\t') ADVANCE(299); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(66) + if (lookahead == ' ') ADVANCE(147); + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(303); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(134); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(327); + lookahead != '\f') ADVANCE(301); END_STATE(); case 11: - if (lookahead == '\t') ADVANCE(325); - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(73) - if (lookahead == ' ') ADVANCE(323); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(155); - if (lookahead == '{') ADVANCE(149); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '\t') ADVANCE(299); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(77) + if (lookahead == ' ') ADVANCE(147); + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(215); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(134); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(327); + lookahead != '\f') ADVANCE(301); END_STATE(); case 12: - if (lookahead == '\t') ADVANCE(325); - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(73) - if (lookahead == ' ') ADVANCE(323); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(155); - if (lookahead == '{') ADVANCE(148); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '\t') ADVANCE(299); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(90) + if (lookahead == ' ') ADVANCE(147); + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == ']') ADVANCE(259); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(134); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(327); + lookahead != '\f') ADVANCE(301); END_STATE(); case 13: - if (lookahead == '\t') ADVANCE(325); - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(74) - if (lookahead == ' ') ADVANCE(323); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(257); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(263); - if (lookahead == 'I') ADVANCE(265); - if (lookahead == 'N') ADVANCE(266); - if (lookahead == 'T') ADVANCE(267); - if (lookahead == 'W') ADVANCE(262); - if (lookahead == 'X') ADVANCE(274); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(156); - if (lookahead == '{') ADVANCE(149); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + if (lookahead == '\t') ADVANCE(299); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(90) + if (lookahead == ' ') ADVANCE(147); + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(327); + lookahead != '\f') ADVANCE(301); END_STATE(); case 14: - if (lookahead == '\t') ADVANCE(325); - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(77) - if (lookahead == ' ') ADVANCE(324); - if (lookahead == '!') ADVANCE(217); - if (lookahead == '"') ADVANCE(218); - if (lookahead == '$') ADVANCE(298); - if (lookahead == '\'') ADVANCE(218); - if (lookahead == '*') ADVANCE(174); - if (lookahead == '-') ADVANCE(196); - if (lookahead == '.') ADVANCE(198); - if (lookahead == ':') ADVANCE(199); - if (lookahead == '<') ADVANCE(194); - if (lookahead == '>') ADVANCE(327); - if (lookahead == 'F') ADVANCE(205); - if (lookahead == 'I') ADVANCE(207); - if (lookahead == 'N') ADVANCE(208); - if (lookahead == 'T') ADVANCE(209); - if (lookahead == 'W') ADVANCE(204); - if (lookahead == 'X') ADVANCE(216); - if (lookahead == '[') ADVANCE(282); - if (lookahead == '\\') ADVANCE(179); - if (lookahead == '^') ADVANCE(241); - if (lookahead == '_') ADVANCE(159); - if (lookahead == '{') ADVANCE(150); - if (lookahead == '|') ADVANCE(318); - if (lookahead == '~') ADVANCE(249); + if (lookahead == '\t') ADVANCE(299); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(95) + if (lookahead == ' ') ADVANCE(145); + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(149); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(134); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(221); + lookahead != '\f') ADVANCE(301); END_STATE(); case 15: - if (lookahead == '\t') ADVANCE(325); - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(84) - if (lookahead == ' ') ADVANCE(171); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == ']') ADVANCE(254); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(154); - if (lookahead == '{') ADVANCE(149); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '\t') ADVANCE(299); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(96) + if (lookahead == ' ') ADVANCE(147); + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(134); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(223); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(327); + lookahead != '\f') ADVANCE(301); END_STATE(); case 16: - if (lookahead == '\t') ADVANCE(325); - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(89) - if (lookahead == ' ') ADVANCE(171); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(329); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(154); - if (lookahead == '{') ADVANCE(149); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(16) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == ']') ADVANCE(230); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(223); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(327); + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(301); END_STATE(); case 17: - if (lookahead == '\t') ADVANCE(325); - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(100) - if (lookahead == ' ') ADVANCE(171); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(239); - if (lookahead == '_') ADVANCE(154); - if (lookahead == '{') ADVANCE(149); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(16) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == ']') ADVANCE(230); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(134); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(223); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(299); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(327); + lookahead != '\f') ADVANCE(301); END_STATE(); case 18: - if (lookahead == '\t') ADVANCE(325); - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(105) - if (lookahead == ' ') ADVANCE(167); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(173); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(154); - if (lookahead == '{') ADVANCE(149); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(18) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '+') ADVANCE(312); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == ']') ADVANCE(230); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(327); + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(301); END_STATE(); case 19: - if (lookahead == '\t') ADVANCE(325); - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(106) - if (lookahead == ' ') ADVANCE(171); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == ']') ADVANCE(283); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(154); - if (lookahead == '{') ADVANCE(149); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(18) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '+') ADVANCE(312); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == ']') ADVANCE(230); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(134); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(299); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(327); + lookahead != '\f') ADVANCE(301); END_STATE(); case 20: - if (lookahead == '\t') ADVANCE(325); - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(106) - if (lookahead == ' ') ADVANCE(171); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(154); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(20) + if (lookahead == ' ') ADVANCE(101); + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(149); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == ']') ADVANCE(230); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(327); + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(301); END_STATE(); case 21: - if (lookahead == '\t') ADVANCE(325); - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(107) - if (lookahead == ' ') ADVANCE(171); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(154); - if (lookahead == '{') ADVANCE(149); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(247); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(21) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == '=') ADVANCE(313); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == ']') ADVANCE(230); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(327); + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(301); END_STATE(); case 22: - if (lookahead == '\t') ADVANCE(325); - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(108) - if (lookahead == ' ') ADVANCE(166); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(155); - if (lookahead == '{') ADVANCE(149); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(21) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == '=') ADVANCE(313); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == ']') ADVANCE(230); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(134); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(299); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(327); + lookahead != '\f') ADVANCE(301); END_STATE(); case 23: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(23) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(329); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == ']') ADVANCE(254); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(154); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(24) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(223); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(299); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(327); + lookahead != 11 && + lookahead != '\f') ADVANCE(301); END_STATE(); case 24: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(23) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(329); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == ']') ADVANCE(254); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(154); - if (lookahead == '{') ADVANCE(149); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(24) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(223); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(327); + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(301); END_STATE(); case 25: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(25) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '+') ADVANCE(338); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == ']') ADVANCE(254); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(154); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(24) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(134); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(223); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(299); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(327); + lookahead != 11 && + lookahead != '\f') ADVANCE(301); END_STATE(); case 26: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(25) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '+') ADVANCE(338); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == ']') ADVANCE(254); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(154); - if (lookahead == '{') ADVANCE(149); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(24) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(133); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(223); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); + lookahead == ' ') ADVANCE(299); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(327); + lookahead != '\f') ADVANCE(301); END_STATE(); case 27: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(27) - if (lookahead == ' ') ADVANCE(114); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == ']') ADVANCE(254); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(155); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(28) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '+') ADVANCE(312); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(299); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(327); + lookahead != 11 && + lookahead != '\f') ADVANCE(301); END_STATE(); case 28: - if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\n') ADVANCE(300); if (lookahead == '\r') SKIP(28) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == '=') ADVANCE(339); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == ']') ADVANCE(254); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(154); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '+') ADVANCE(312); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead != 0 && (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(327); + lookahead != ' ') ADVANCE(301); END_STATE(); case 29: - if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\n') ADVANCE(300); if (lookahead == '\r') SKIP(28) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == '=') ADVANCE(339); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == ']') ADVANCE(254); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(154); - if (lookahead == '{') ADVANCE(149); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '+') ADVANCE(312); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(134); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); + lookahead == ' ') ADVANCE(299); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(327); + lookahead != '\f') ADVANCE(301); END_STATE(); case 30: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(33) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == ']') ADVANCE(283); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(154); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(28) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '+') ADVANCE(312); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(133); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); + lookahead == ' ') ADVANCE(299); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(327); + lookahead != '\f') ADVANCE(301); END_STATE(); case 31: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(33) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == ']') ADVANCE(283); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(154); - if (lookahead == '{') ADVANCE(149); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(32) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == '=') ADVANCE(313); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); + lookahead == ' ') ADVANCE(299); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(327); + lookahead != '\f') ADVANCE(301); END_STATE(); case 32: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(33) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == ']') ADVANCE(283); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(154); - if (lookahead == '{') ADVANCE(148); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(32) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == '=') ADVANCE(313); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(327); + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(301); END_STATE(); case 33: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(33) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(154); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(32) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == '=') ADVANCE(313); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(134); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(299); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(327); + lookahead != 11 && + lookahead != '\f') ADVANCE(301); END_STATE(); case 34: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(35) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '+') ADVANCE(338); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(154); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(32) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == '=') ADVANCE(313); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(133); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); + lookahead == ' ') ADVANCE(299); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(327); + lookahead != '\f') ADVANCE(301); END_STATE(); case 35: - if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\n') ADVANCE(300); if (lookahead == '\r') SKIP(35) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '+') ADVANCE(338); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(154); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == ' ') ADVANCE(101); + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(149); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(327); + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(301); END_STATE(); case 36: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(35) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '+') ADVANCE(338); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(154); - if (lookahead == '{') ADVANCE(149); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(36) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(233); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(239); + if (lookahead == 'I') ADVANCE(241); + if (lookahead == 'N') ADVANCE(242); + if (lookahead == 'T') ADVANCE(243); + if (lookahead == 'W') ADVANCE(238); + if (lookahead == 'X') ADVANCE(250); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == ']') ADVANCE(230); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(140); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(327); + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(301); END_STATE(); case 37: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(35) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '+') ADVANCE(338); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(154); - if (lookahead == '{') ADVANCE(148); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(36) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(233); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(239); + if (lookahead == 'I') ADVANCE(241); + if (lookahead == 'N') ADVANCE(242); + if (lookahead == 'T') ADVANCE(243); + if (lookahead == 'W') ADVANCE(238); + if (lookahead == 'X') ADVANCE(250); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == ']') ADVANCE(230); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(140); + if (lookahead == '{') ADVANCE(134); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); + lookahead == ' ') ADVANCE(299); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(327); + lookahead != '\f') ADVANCE(301); END_STATE(); case 38: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(39) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == '=') ADVANCE(339); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(154); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(38) + if (lookahead == ' ') ADVANCE(144); + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == '=') ADVANCE(313); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(327); + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(301); END_STATE(); case 39: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(39) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == '=') ADVANCE(339); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(154); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(40) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(233); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(239); + if (lookahead == 'I') ADVANCE(241); + if (lookahead == 'N') ADVANCE(242); + if (lookahead == 'T') ADVANCE(243); + if (lookahead == 'W') ADVANCE(238); + if (lookahead == 'X') ADVANCE(250); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == ']') ADVANCE(259); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(140); + if (lookahead == '{') ADVANCE(134); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(299); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(327); + lookahead != 11 && + lookahead != '\f') ADVANCE(301); END_STATE(); case 40: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(39) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == '=') ADVANCE(339); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(154); - if (lookahead == '{') ADVANCE(149); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(40) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(233); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(239); + if (lookahead == 'I') ADVANCE(241); + if (lookahead == 'N') ADVANCE(242); + if (lookahead == 'T') ADVANCE(243); + if (lookahead == 'W') ADVANCE(238); + if (lookahead == 'X') ADVANCE(250); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(140); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(327); + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(301); END_STATE(); case 41: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(39) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == '=') ADVANCE(339); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(154); - if (lookahead == '{') ADVANCE(148); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(41) + if (lookahead == ' ') ADVANCE(101); + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(149); + if (lookahead == '-') ADVANCE(233); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(239); + if (lookahead == 'I') ADVANCE(241); + if (lookahead == 'N') ADVANCE(242); + if (lookahead == 'T') ADVANCE(243); + if (lookahead == 'W') ADVANCE(238); + if (lookahead == 'X') ADVANCE(250); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(140); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(327); + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(301); END_STATE(); case 42: - if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\n') ADVANCE(300); if (lookahead == '\r') SKIP(42) - if (lookahead == ' ') ADVANCE(115); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(173); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(154); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '+') ADVANCE(312); + if (lookahead == '-') ADVANCE(233); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(239); + if (lookahead == 'I') ADVANCE(241); + if (lookahead == 'N') ADVANCE(242); + if (lookahead == 'T') ADVANCE(243); + if (lookahead == 'W') ADVANCE(238); + if (lookahead == 'X') ADVANCE(250); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(140); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(327); + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(301); END_STATE(); case 43: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(43) - if (lookahead == ' ') ADVANCE(115); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(173); - if (lookahead == '-') ADVANCE(257); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(263); - if (lookahead == 'I') ADVANCE(265); - if (lookahead == 'N') ADVANCE(266); - if (lookahead == 'T') ADVANCE(267); - if (lookahead == 'W') ADVANCE(262); - if (lookahead == 'X') ADVANCE(274); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(158); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(42) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '+') ADVANCE(312); + if (lookahead == '-') ADVANCE(233); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(239); + if (lookahead == 'I') ADVANCE(241); + if (lookahead == 'N') ADVANCE(242); + if (lookahead == 'T') ADVANCE(243); + if (lookahead == 'W') ADVANCE(238); + if (lookahead == 'X') ADVANCE(250); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(140); + if (lookahead == '{') ADVANCE(134); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(299); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(327); + lookahead != 11 && + lookahead != '\f') ADVANCE(301); END_STATE(); case 44: - if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\n') ADVANCE(300); if (lookahead == '\r') SKIP(44) - if (lookahead == ' ') ADVANCE(164); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '+') ADVANCE(338); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(154); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == ' ') ADVANCE(144); + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '+') ADVANCE(312); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(327); + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(301); END_STATE(); case 45: - if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\n') ADVANCE(300); if (lookahead == '\r') SKIP(45) - if (lookahead == ' ') ADVANCE(164); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == '=') ADVANCE(339); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(154); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(233); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == '=') ADVANCE(313); + if (lookahead == 'F') ADVANCE(239); + if (lookahead == 'I') ADVANCE(241); + if (lookahead == 'N') ADVANCE(242); + if (lookahead == 'T') ADVANCE(243); + if (lookahead == 'W') ADVANCE(238); + if (lookahead == 'X') ADVANCE(250); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(140); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(327); + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(301); END_STATE(); case 46: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(46) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(257); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == '=') ADVANCE(339); - if (lookahead == 'F') ADVANCE(263); - if (lookahead == 'I') ADVANCE(265); - if (lookahead == 'N') ADVANCE(266); - if (lookahead == 'T') ADVANCE(267); - if (lookahead == 'W') ADVANCE(262); - if (lookahead == 'X') ADVANCE(274); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(158); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(45) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(233); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == '=') ADVANCE(313); + if (lookahead == 'F') ADVANCE(239); + if (lookahead == 'I') ADVANCE(241); + if (lookahead == 'N') ADVANCE(242); + if (lookahead == 'T') ADVANCE(243); + if (lookahead == 'W') ADVANCE(238); + if (lookahead == 'X') ADVANCE(250); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(140); + if (lookahead == '{') ADVANCE(134); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(299); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(327); + lookahead != 11 && + lookahead != '\f') ADVANCE(301); END_STATE(); case 47: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(46) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(257); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == '=') ADVANCE(339); - if (lookahead == 'F') ADVANCE(263); - if (lookahead == 'I') ADVANCE(265); - if (lookahead == 'N') ADVANCE(266); - if (lookahead == 'T') ADVANCE(267); - if (lookahead == 'W') ADVANCE(262); - if (lookahead == 'X') ADVANCE(274); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(158); - if (lookahead == '{') ADVANCE(149); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(48) + if (lookahead == '!') ADVANCE(193); + if (lookahead == '"') ADVANCE(194); + if (lookahead == '$') ADVANCE(274); + if (lookahead == '\'') ADVANCE(194); + if (lookahead == '*') ADVANCE(151); + if (lookahead == '-') ADVANCE(172); + if (lookahead == '.') ADVANCE(174); + if (lookahead == ':') ADVANCE(175); + if (lookahead == '<') ADVANCE(170); + if (lookahead == '>') ADVANCE(301); + if (lookahead == 'F') ADVANCE(181); + if (lookahead == 'I') ADVANCE(183); + if (lookahead == 'N') ADVANCE(184); + if (lookahead == 'T') ADVANCE(185); + if (lookahead == 'W') ADVANCE(180); + if (lookahead == 'X') ADVANCE(192); + if (lookahead == '[') ADVANCE(258); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == '^') ADVANCE(216); + if (lookahead == '_') ADVANCE(141); + if (lookahead == '{') ADVANCE(135); + if (lookahead == '|') ADVANCE(294); + if (lookahead == '~') ADVANCE(225); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + lookahead == ' ') ADVANCE(299); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(327); + lookahead != '\f') ADVANCE(197); END_STATE(); case 48: - if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\n') ADVANCE(300); if (lookahead == '\r') SKIP(48) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(257); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(263); - if (lookahead == 'I') ADVANCE(265); - if (lookahead == 'N') ADVANCE(266); - if (lookahead == 'T') ADVANCE(267); - if (lookahead == 'W') ADVANCE(262); - if (lookahead == 'X') ADVANCE(274); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == ']') ADVANCE(254); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(158); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + if (lookahead == '!') ADVANCE(193); + if (lookahead == '"') ADVANCE(194); + if (lookahead == '$') ADVANCE(274); + if (lookahead == '\'') ADVANCE(194); + if (lookahead == '*') ADVANCE(151); + if (lookahead == '-') ADVANCE(172); + if (lookahead == '.') ADVANCE(174); + if (lookahead == ':') ADVANCE(175); + if (lookahead == '<') ADVANCE(170); + if (lookahead == '>') ADVANCE(301); + if (lookahead == 'F') ADVANCE(181); + if (lookahead == 'I') ADVANCE(183); + if (lookahead == 'N') ADVANCE(184); + if (lookahead == 'T') ADVANCE(185); + if (lookahead == 'W') ADVANCE(180); + if (lookahead == 'X') ADVANCE(192); + if (lookahead == '[') ADVANCE(258); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == '^') ADVANCE(216); + if (lookahead == '_') ADVANCE(141); + if (lookahead == '{') ADVANCE(267); + if (lookahead == '|') ADVANCE(294); + if (lookahead == '~') ADVANCE(225); if (lookahead != 0 && (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(327); + lookahead != ' ') ADVANCE(197); END_STATE(); case 49: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(48) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(257); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(263); - if (lookahead == 'I') ADVANCE(265); - if (lookahead == 'N') ADVANCE(266); - if (lookahead == 'T') ADVANCE(267); - if (lookahead == 'W') ADVANCE(262); - if (lookahead == 'X') ADVANCE(274); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == ']') ADVANCE(254); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(158); - if (lookahead == '{') ADVANCE(149); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(50) + if (lookahead == '!') ADVANCE(193); + if (lookahead == '"') ADVANCE(194); + if (lookahead == '$') ADVANCE(274); + if (lookahead == '\'') ADVANCE(194); + if (lookahead == '*') ADVANCE(151); + if (lookahead == '+') ADVANCE(195); + if (lookahead == '-') ADVANCE(172); + if (lookahead == '.') ADVANCE(174); + if (lookahead == ':') ADVANCE(175); + if (lookahead == '<') ADVANCE(170); + if (lookahead == '>') ADVANCE(301); + if (lookahead == 'F') ADVANCE(181); + if (lookahead == 'I') ADVANCE(183); + if (lookahead == 'N') ADVANCE(184); + if (lookahead == 'T') ADVANCE(185); + if (lookahead == 'W') ADVANCE(180); + if (lookahead == 'X') ADVANCE(192); + if (lookahead == '[') ADVANCE(258); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == '^') ADVANCE(217); + if (lookahead == '_') ADVANCE(141); + if (lookahead == '{') ADVANCE(135); + if (lookahead == '|') ADVANCE(294); + if (lookahead == '~') ADVANCE(225); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + lookahead == ' ') ADVANCE(299); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(327); + lookahead != '\f') ADVANCE(197); END_STATE(); case 50: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(51) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(257); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(263); - if (lookahead == 'I') ADVANCE(265); - if (lookahead == 'N') ADVANCE(266); - if (lookahead == 'T') ADVANCE(267); - if (lookahead == 'W') ADVANCE(262); - if (lookahead == 'X') ADVANCE(274); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == ']') ADVANCE(283); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(158); - if (lookahead == '{') ADVANCE(149); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(50) + if (lookahead == '!') ADVANCE(193); + if (lookahead == '"') ADVANCE(194); + if (lookahead == '$') ADVANCE(274); + if (lookahead == '\'') ADVANCE(194); + if (lookahead == '*') ADVANCE(151); + if (lookahead == '+') ADVANCE(195); + if (lookahead == '-') ADVANCE(172); + if (lookahead == '.') ADVANCE(174); + if (lookahead == ':') ADVANCE(175); + if (lookahead == '<') ADVANCE(170); + if (lookahead == '>') ADVANCE(301); + if (lookahead == 'F') ADVANCE(181); + if (lookahead == 'I') ADVANCE(183); + if (lookahead == 'N') ADVANCE(184); + if (lookahead == 'T') ADVANCE(185); + if (lookahead == 'W') ADVANCE(180); + if (lookahead == 'X') ADVANCE(192); + if (lookahead == '[') ADVANCE(258); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == '^') ADVANCE(217); + if (lookahead == '_') ADVANCE(141); + if (lookahead == '{') ADVANCE(267); + if (lookahead == '|') ADVANCE(294); + if (lookahead == '~') ADVANCE(225); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(327); + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(197); END_STATE(); case 51: - if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\n') ADVANCE(300); if (lookahead == '\r') SKIP(51) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(257); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(263); - if (lookahead == 'I') ADVANCE(265); - if (lookahead == 'N') ADVANCE(266); - if (lookahead == 'T') ADVANCE(267); - if (lookahead == 'W') ADVANCE(262); - if (lookahead == 'X') ADVANCE(274); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(158); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + if (lookahead == ' ') ADVANCE(101); + if (lookahead == '!') ADVANCE(193); + if (lookahead == '"') ADVANCE(194); + if (lookahead == '$') ADVANCE(274); + if (lookahead == '\'') ADVANCE(194); + if (lookahead == '*') ADVANCE(150); + if (lookahead == '-') ADVANCE(172); + if (lookahead == '.') ADVANCE(174); + if (lookahead == ':') ADVANCE(175); + if (lookahead == '<') ADVANCE(170); + if (lookahead == '>') ADVANCE(301); + if (lookahead == 'F') ADVANCE(181); + if (lookahead == 'I') ADVANCE(183); + if (lookahead == 'N') ADVANCE(184); + if (lookahead == 'T') ADVANCE(185); + if (lookahead == 'W') ADVANCE(180); + if (lookahead == 'X') ADVANCE(192); + if (lookahead == '[') ADVANCE(258); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == '^') ADVANCE(217); + if (lookahead == '_') ADVANCE(141); + if (lookahead == '{') ADVANCE(267); + if (lookahead == '|') ADVANCE(294); + if (lookahead == '~') ADVANCE(225); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(327); + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(197); END_STATE(); case 52: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(52) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '+') ADVANCE(338); - if (lookahead == '-') ADVANCE(257); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(263); - if (lookahead == 'I') ADVANCE(265); - if (lookahead == 'N') ADVANCE(266); - if (lookahead == 'T') ADVANCE(267); - if (lookahead == 'W') ADVANCE(262); - if (lookahead == 'X') ADVANCE(274); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(158); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(53) + if (lookahead == '!') ADVANCE(193); + if (lookahead == '"') ADVANCE(194); + if (lookahead == '$') ADVANCE(274); + if (lookahead == '\'') ADVANCE(194); + if (lookahead == '*') ADVANCE(151); + if (lookahead == '-') ADVANCE(172); + if (lookahead == '.') ADVANCE(174); + if (lookahead == ':') ADVANCE(175); + if (lookahead == '<') ADVANCE(170); + if (lookahead == '>') ADVANCE(301); + if (lookahead == 'F') ADVANCE(181); + if (lookahead == 'I') ADVANCE(183); + if (lookahead == 'N') ADVANCE(184); + if (lookahead == 'T') ADVANCE(185); + if (lookahead == 'W') ADVANCE(180); + if (lookahead == 'X') ADVANCE(192); + if (lookahead == '[') ADVANCE(258); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == ']') ADVANCE(231); + if (lookahead == '^') ADVANCE(217); + if (lookahead == '_') ADVANCE(141); + if (lookahead == '{') ADVANCE(135); + if (lookahead == '|') ADVANCE(294); + if (lookahead == '~') ADVANCE(225); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(299); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(327); + lookahead != 11 && + lookahead != '\f') ADVANCE(197); END_STATE(); case 53: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(52) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '+') ADVANCE(338); - if (lookahead == '-') ADVANCE(257); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(263); - if (lookahead == 'I') ADVANCE(265); - if (lookahead == 'N') ADVANCE(266); - if (lookahead == 'T') ADVANCE(267); - if (lookahead == 'W') ADVANCE(262); - if (lookahead == 'X') ADVANCE(274); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(158); - if (lookahead == '{') ADVANCE(149); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(53) + if (lookahead == '!') ADVANCE(193); + if (lookahead == '"') ADVANCE(194); + if (lookahead == '$') ADVANCE(274); + if (lookahead == '\'') ADVANCE(194); + if (lookahead == '*') ADVANCE(151); + if (lookahead == '-') ADVANCE(172); + if (lookahead == '.') ADVANCE(174); + if (lookahead == ':') ADVANCE(175); + if (lookahead == '<') ADVANCE(170); + if (lookahead == '>') ADVANCE(301); + if (lookahead == 'F') ADVANCE(181); + if (lookahead == 'I') ADVANCE(183); + if (lookahead == 'N') ADVANCE(184); + if (lookahead == 'T') ADVANCE(185); + if (lookahead == 'W') ADVANCE(180); + if (lookahead == 'X') ADVANCE(192); + if (lookahead == '[') ADVANCE(258); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == ']') ADVANCE(231); + if (lookahead == '^') ADVANCE(217); + if (lookahead == '_') ADVANCE(141); + if (lookahead == '{') ADVANCE(267); + if (lookahead == '|') ADVANCE(294); + if (lookahead == '~') ADVANCE(225); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(327); + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(197); END_STATE(); case 54: - if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\n') ADVANCE(300); if (lookahead == '\r') SKIP(55) - if (lookahead == '!') ADVANCE(217); - if (lookahead == '"') ADVANCE(218); - if (lookahead == '$') ADVANCE(298); - if (lookahead == '\'') ADVANCE(218); - if (lookahead == '*') ADVANCE(175); - if (lookahead == '+') ADVANCE(219); - if (lookahead == '-') ADVANCE(196); - if (lookahead == '.') ADVANCE(198); - if (lookahead == ':') ADVANCE(199); - if (lookahead == '<') ADVANCE(194); - if (lookahead == '>') ADVANCE(327); - if (lookahead == 'F') ADVANCE(205); - if (lookahead == 'I') ADVANCE(207); - if (lookahead == 'N') ADVANCE(208); - if (lookahead == 'T') ADVANCE(209); - if (lookahead == 'W') ADVANCE(204); - if (lookahead == 'X') ADVANCE(216); - if (lookahead == '[') ADVANCE(282); - if (lookahead == '\\') ADVANCE(179); - if (lookahead == '^') ADVANCE(241); - if (lookahead == '_') ADVANCE(159); - if (lookahead == '{') ADVANCE(150); - if (lookahead == '|') ADVANCE(318); - if (lookahead == '~') ADVANCE(249); + if (lookahead == '!') ADVANCE(193); + if (lookahead == '"') ADVANCE(194); + if (lookahead == '$') ADVANCE(274); + if (lookahead == '\'') ADVANCE(194); + if (lookahead == '*') ADVANCE(151); + if (lookahead == '-') ADVANCE(172); + if (lookahead == '.') ADVANCE(174); + if (lookahead == ':') ADVANCE(175); + if (lookahead == '<') ADVANCE(170); + if (lookahead == '=') ADVANCE(196); + if (lookahead == '>') ADVANCE(301); + if (lookahead == 'F') ADVANCE(181); + if (lookahead == 'I') ADVANCE(183); + if (lookahead == 'N') ADVANCE(184); + if (lookahead == 'T') ADVANCE(185); + if (lookahead == 'W') ADVANCE(180); + if (lookahead == 'X') ADVANCE(192); + if (lookahead == '[') ADVANCE(258); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == '^') ADVANCE(217); + if (lookahead == '_') ADVANCE(141); + if (lookahead == '{') ADVANCE(135); + if (lookahead == '|') ADVANCE(294); + if (lookahead == '~') ADVANCE(225); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); + lookahead == ' ') ADVANCE(299); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(221); + lookahead != '\f') ADVANCE(197); END_STATE(); case 55: - if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\n') ADVANCE(300); if (lookahead == '\r') SKIP(55) - if (lookahead == '!') ADVANCE(217); - if (lookahead == '"') ADVANCE(218); - if (lookahead == '$') ADVANCE(298); - if (lookahead == '\'') ADVANCE(218); - if (lookahead == '*') ADVANCE(175); - if (lookahead == '+') ADVANCE(219); - if (lookahead == '-') ADVANCE(196); - if (lookahead == '.') ADVANCE(198); - if (lookahead == ':') ADVANCE(199); - if (lookahead == '<') ADVANCE(194); - if (lookahead == '>') ADVANCE(327); - if (lookahead == 'F') ADVANCE(205); - if (lookahead == 'I') ADVANCE(207); - if (lookahead == 'N') ADVANCE(208); - if (lookahead == 'T') ADVANCE(209); - if (lookahead == 'W') ADVANCE(204); - if (lookahead == 'X') ADVANCE(216); - if (lookahead == '[') ADVANCE(282); - if (lookahead == '\\') ADVANCE(179); - if (lookahead == '^') ADVANCE(241); - if (lookahead == '_') ADVANCE(159); - if (lookahead == '{') ADVANCE(291); - if (lookahead == '|') ADVANCE(318); - if (lookahead == '~') ADVANCE(249); + if (lookahead == '!') ADVANCE(193); + if (lookahead == '"') ADVANCE(194); + if (lookahead == '$') ADVANCE(274); + if (lookahead == '\'') ADVANCE(194); + if (lookahead == '*') ADVANCE(151); + if (lookahead == '-') ADVANCE(172); + if (lookahead == '.') ADVANCE(174); + if (lookahead == ':') ADVANCE(175); + if (lookahead == '<') ADVANCE(170); + if (lookahead == '=') ADVANCE(196); + if (lookahead == '>') ADVANCE(301); + if (lookahead == 'F') ADVANCE(181); + if (lookahead == 'I') ADVANCE(183); + if (lookahead == 'N') ADVANCE(184); + if (lookahead == 'T') ADVANCE(185); + if (lookahead == 'W') ADVANCE(180); + if (lookahead == 'X') ADVANCE(192); + if (lookahead == '[') ADVANCE(258); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == '^') ADVANCE(217); + if (lookahead == '_') ADVANCE(141); + if (lookahead == '{') ADVANCE(267); + if (lookahead == '|') ADVANCE(294); + if (lookahead == '~') ADVANCE(225); if (lookahead != 0 && (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(221); + lookahead != ' ') ADVANCE(197); END_STATE(); case 56: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(56) - if (lookahead == ' ') ADVANCE(114); - if (lookahead == '!') ADVANCE(217); - if (lookahead == '"') ADVANCE(218); - if (lookahead == '$') ADVANCE(298); - if (lookahead == '\'') ADVANCE(218); - if (lookahead == '*') ADVANCE(175); - if (lookahead == '-') ADVANCE(196); - if (lookahead == '.') ADVANCE(198); - if (lookahead == ':') ADVANCE(199); - if (lookahead == '<') ADVANCE(194); - if (lookahead == '>') ADVANCE(327); - if (lookahead == 'F') ADVANCE(205); - if (lookahead == 'I') ADVANCE(207); - if (lookahead == 'N') ADVANCE(208); - if (lookahead == 'T') ADVANCE(209); - if (lookahead == 'W') ADVANCE(204); - if (lookahead == 'X') ADVANCE(216); - if (lookahead == '[') ADVANCE(282); - if (lookahead == '\\') ADVANCE(179); - if (lookahead == '^') ADVANCE(241); - if (lookahead == '_') ADVANCE(157); - if (lookahead == '{') ADVANCE(291); - if (lookahead == '|') ADVANCE(318); - if (lookahead == '~') ADVANCE(249); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(221); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(57) + if (lookahead == '"') ADVANCE(321); + if (lookahead == '#') ADVANCE(116); + if (lookahead == '%') ADVANCE(268); + if (lookahead == '(') ADVANCE(261); + if (lookahead == ')') ADVANCE(264); + if (lookahead == '.') ADVANCE(316); + if (lookahead == '=') ADVANCE(319); + if (lookahead == '>') ADVANCE(198); + if (lookahead == '[') ADVANCE(256); + if (lookahead == '{') ADVANCE(131); + if (lookahead == '}') ADVANCE(136); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(299); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); END_STATE(); case 57: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(58) - if (lookahead == '!') ADVANCE(217); - if (lookahead == '"') ADVANCE(218); - if (lookahead == '$') ADVANCE(298); - if (lookahead == '\'') ADVANCE(218); - if (lookahead == '*') ADVANCE(175); - if (lookahead == '-') ADVANCE(196); - if (lookahead == '.') ADVANCE(198); - if (lookahead == ':') ADVANCE(199); - if (lookahead == '<') ADVANCE(194); - if (lookahead == '>') ADVANCE(327); - if (lookahead == 'F') ADVANCE(205); - if (lookahead == 'I') ADVANCE(207); - if (lookahead == 'N') ADVANCE(208); - if (lookahead == 'T') ADVANCE(209); - if (lookahead == 'W') ADVANCE(204); - if (lookahead == 'X') ADVANCE(216); - if (lookahead == '[') ADVANCE(282); - if (lookahead == '\\') ADVANCE(179); - if (lookahead == '^') ADVANCE(241); - if (lookahead == '_') ADVANCE(159); - if (lookahead == '{') ADVANCE(150); - if (lookahead == '|') ADVANCE(318); - if (lookahead == '~') ADVANCE(248); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); - if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(221); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(57) + if (lookahead == '"') ADVANCE(321); + if (lookahead == '#') ADVANCE(116); + if (lookahead == '%') ADVANCE(268); + if (lookahead == '(') ADVANCE(261); + if (lookahead == ')') ADVANCE(264); + if (lookahead == '.') ADVANCE(316); + if (lookahead == '=') ADVANCE(319); + if (lookahead == '>') ADVANCE(198); + if (lookahead == '[') ADVANCE(255); + if (lookahead == '}') ADVANCE(136); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); END_STATE(); case 58: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(58) - if (lookahead == '!') ADVANCE(217); - if (lookahead == '"') ADVANCE(218); - if (lookahead == '$') ADVANCE(298); - if (lookahead == '\'') ADVANCE(218); - if (lookahead == '*') ADVANCE(175); - if (lookahead == '-') ADVANCE(196); - if (lookahead == '.') ADVANCE(198); - if (lookahead == ':') ADVANCE(199); - if (lookahead == '<') ADVANCE(194); - if (lookahead == '>') ADVANCE(327); - if (lookahead == 'F') ADVANCE(205); - if (lookahead == 'I') ADVANCE(207); - if (lookahead == 'N') ADVANCE(208); - if (lookahead == 'T') ADVANCE(209); - if (lookahead == 'W') ADVANCE(204); - if (lookahead == 'X') ADVANCE(216); - if (lookahead == '[') ADVANCE(282); - if (lookahead == '\\') ADVANCE(179); - if (lookahead == '^') ADVANCE(241); - if (lookahead == '_') ADVANCE(159); - if (lookahead == '{') ADVANCE(291); - if (lookahead == '|') ADVANCE(318); - if (lookahead == '~') ADVANCE(248); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') ADVANCE(270); + if (lookahead == '%') ADVANCE(268); + if (lookahead == '\\') ADVANCE(271); + if (lookahead != 0) ADVANCE(269); + END_STATE(); + case 59: + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(59) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(303); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == ']') ADVANCE(230); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead != 0 && (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(221); + lookahead != ' ') ADVANCE(301); END_STATE(); - case 59: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(60) - if (lookahead == '!') ADVANCE(217); - if (lookahead == '"') ADVANCE(218); - if (lookahead == '$') ADVANCE(298); - if (lookahead == '\'') ADVANCE(218); - if (lookahead == '*') ADVANCE(175); - if (lookahead == '-') ADVANCE(196); - if (lookahead == '.') ADVANCE(198); - if (lookahead == ':') ADVANCE(199); - if (lookahead == '<') ADVANCE(194); - if (lookahead == '>') ADVANCE(327); - if (lookahead == 'F') ADVANCE(205); - if (lookahead == 'I') ADVANCE(207); - if (lookahead == 'N') ADVANCE(208); - if (lookahead == 'T') ADVANCE(209); - if (lookahead == 'W') ADVANCE(204); - if (lookahead == 'X') ADVANCE(216); - if (lookahead == '[') ADVANCE(282); - if (lookahead == '\\') ADVANCE(179); - if (lookahead == ']') ADVANCE(255); - if (lookahead == '^') ADVANCE(241); - if (lookahead == '_') ADVANCE(159); - if (lookahead == '{') ADVANCE(150); - if (lookahead == '|') ADVANCE(318); - if (lookahead == '~') ADVANCE(249); + case 60: + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(59) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(303); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == ']') ADVANCE(230); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(134); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); + lookahead == ' ') ADVANCE(299); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(221); + lookahead != '\f') ADVANCE(301); END_STATE(); - case 60: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(60) - if (lookahead == '!') ADVANCE(217); - if (lookahead == '"') ADVANCE(218); - if (lookahead == '$') ADVANCE(298); - if (lookahead == '\'') ADVANCE(218); - if (lookahead == '*') ADVANCE(175); - if (lookahead == '-') ADVANCE(196); - if (lookahead == '.') ADVANCE(198); - if (lookahead == ':') ADVANCE(199); - if (lookahead == '<') ADVANCE(194); - if (lookahead == '>') ADVANCE(327); - if (lookahead == 'F') ADVANCE(205); - if (lookahead == 'I') ADVANCE(207); - if (lookahead == 'N') ADVANCE(208); - if (lookahead == 'T') ADVANCE(209); - if (lookahead == 'W') ADVANCE(204); - if (lookahead == 'X') ADVANCE(216); - if (lookahead == '[') ADVANCE(282); - if (lookahead == '\\') ADVANCE(179); - if (lookahead == ']') ADVANCE(255); - if (lookahead == '^') ADVANCE(241); - if (lookahead == '_') ADVANCE(159); - if (lookahead == '{') ADVANCE(291); - if (lookahead == '|') ADVANCE(318); - if (lookahead == '~') ADVANCE(249); + case 61: + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(61) + if (lookahead == ' ') ADVANCE(144); + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == ']') ADVANCE(230); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(221); + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(301); END_STATE(); - case 61: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(62) - if (lookahead == '!') ADVANCE(217); - if (lookahead == '"') ADVANCE(218); - if (lookahead == '$') ADVANCE(298); - if (lookahead == '\'') ADVANCE(218); - if (lookahead == '*') ADVANCE(175); - if (lookahead == '-') ADVANCE(196); - if (lookahead == '.') ADVANCE(198); - if (lookahead == ':') ADVANCE(199); - if (lookahead == '<') ADVANCE(194); - if (lookahead == '=') ADVANCE(220); - if (lookahead == '>') ADVANCE(327); - if (lookahead == 'F') ADVANCE(205); - if (lookahead == 'I') ADVANCE(207); - if (lookahead == 'N') ADVANCE(208); - if (lookahead == 'T') ADVANCE(209); - if (lookahead == 'W') ADVANCE(204); - if (lookahead == 'X') ADVANCE(216); - if (lookahead == '[') ADVANCE(282); - if (lookahead == '\\') ADVANCE(179); - if (lookahead == '^') ADVANCE(241); - if (lookahead == '_') ADVANCE(159); - if (lookahead == '{') ADVANCE(150); - if (lookahead == '|') ADVANCE(318); - if (lookahead == '~') ADVANCE(249); + case 62: + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(63) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(303); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); + lookahead == ' ') ADVANCE(299); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(221); + lookahead != '\f') ADVANCE(301); END_STATE(); - case 62: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(62) - if (lookahead == '!') ADVANCE(217); - if (lookahead == '"') ADVANCE(218); - if (lookahead == '$') ADVANCE(298); - if (lookahead == '\'') ADVANCE(218); - if (lookahead == '*') ADVANCE(175); - if (lookahead == '-') ADVANCE(196); - if (lookahead == '.') ADVANCE(198); - if (lookahead == ':') ADVANCE(199); - if (lookahead == '<') ADVANCE(194); - if (lookahead == '=') ADVANCE(220); - if (lookahead == '>') ADVANCE(327); - if (lookahead == 'F') ADVANCE(205); - if (lookahead == 'I') ADVANCE(207); - if (lookahead == 'N') ADVANCE(208); - if (lookahead == 'T') ADVANCE(209); - if (lookahead == 'W') ADVANCE(204); - if (lookahead == 'X') ADVANCE(216); - if (lookahead == '[') ADVANCE(282); - if (lookahead == '\\') ADVANCE(179); - if (lookahead == '^') ADVANCE(241); - if (lookahead == '_') ADVANCE(159); - if (lookahead == '{') ADVANCE(291); - if (lookahead == '|') ADVANCE(318); - if (lookahead == '~') ADVANCE(249); + case 63: + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(63) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(303); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead != 0 && (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(221); - END_STATE(); - case 63: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(64) - if (lookahead == '"') ADVANCE(347); - if (lookahead == '#') ADVANCE(131); - if (lookahead == '%') ADVANCE(292); - if (lookahead == '(') ADVANCE(285); - if (lookahead == ')') ADVANCE(288); - if (lookahead == '.') ADVANCE(342); - if (lookahead == '=') ADVANCE(345); - if (lookahead == '>') ADVANCE(222); - if (lookahead == '[') ADVANCE(280); - if (lookahead == '{') ADVANCE(146); - if (lookahead == '}') ADVANCE(151); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + lookahead != ' ') ADVANCE(301); END_STATE(); case 64: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(64) - if (lookahead == '"') ADVANCE(347); - if (lookahead == '#') ADVANCE(131); - if (lookahead == '%') ADVANCE(292); - if (lookahead == '(') ADVANCE(285); - if (lookahead == ')') ADVANCE(288); - if (lookahead == '.') ADVANCE(342); - if (lookahead == '=') ADVANCE(345); - if (lookahead == '>') ADVANCE(222); - if (lookahead == '[') ADVANCE(279); - if (lookahead == '}') ADVANCE(151); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(63) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(303); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(134); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(299); + if (lookahead != 0 && + lookahead != 11 && + lookahead != '\f') ADVANCE(301); END_STATE(); case 65: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') ADVANCE(294); - if (lookahead == '%') ADVANCE(292); - if (lookahead == '\\') ADVANCE(295); - if (lookahead != 0) ADVANCE(293); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(63) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(303); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(133); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(299); + if (lookahead != 0 && + lookahead != 11 && + lookahead != '\f') ADVANCE(301); END_STATE(); case 66: - if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\n') ADVANCE(300); if (lookahead == '\r') SKIP(66) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == ']') ADVANCE(254); - if (lookahead == '^') ADVANCE(239); - if (lookahead == '_') ADVANCE(154); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == ' ') ADVANCE(144); + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(303); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(327); + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(301); END_STATE(); case 67: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(66) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == ']') ADVANCE(254); - if (lookahead == '^') ADVANCE(239); - if (lookahead == '_') ADVANCE(154); - if (lookahead == '{') ADVANCE(149); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(67) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(233); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(239); + if (lookahead == 'I') ADVANCE(241); + if (lookahead == 'N') ADVANCE(242); + if (lookahead == 'T') ADVANCE(243); + if (lookahead == 'W') ADVANCE(238); + if (lookahead == 'X') ADVANCE(250); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(215); + if (lookahead == '_') ADVANCE(140); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(327); + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(301); END_STATE(); case 68: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(68) - if (lookahead == ' ') ADVANCE(115); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(173); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == ']') ADVANCE(254); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(154); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(67) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(233); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(239); + if (lookahead == 'I') ADVANCE(241); + if (lookahead == 'N') ADVANCE(242); + if (lookahead == 'T') ADVANCE(243); + if (lookahead == 'W') ADVANCE(238); + if (lookahead == 'X') ADVANCE(250); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(215); + if (lookahead == '_') ADVANCE(140); + if (lookahead == '{') ADVANCE(134); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(299); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(327); + lookahead != 11 && + lookahead != '\f') ADVANCE(301); END_STATE(); case 69: - if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\n') ADVANCE(300); if (lookahead == '\r') SKIP(70) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(239); - if (lookahead == '_') ADVANCE(154); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '!') ADVANCE(193); + if (lookahead == '"') ADVANCE(194); + if (lookahead == '$') ADVANCE(274); + if (lookahead == '\'') ADVANCE(194); + if (lookahead == '*') ADVANCE(151); + if (lookahead == '-') ADVANCE(172); + if (lookahead == '.') ADVANCE(174); + if (lookahead == ':') ADVANCE(175); + if (lookahead == '<') ADVANCE(170); + if (lookahead == '>') ADVANCE(301); + if (lookahead == 'F') ADVANCE(181); + if (lookahead == 'I') ADVANCE(183); + if (lookahead == 'N') ADVANCE(184); + if (lookahead == 'T') ADVANCE(185); + if (lookahead == 'W') ADVANCE(180); + if (lookahead == 'X') ADVANCE(192); + if (lookahead == '[') ADVANCE(258); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == '^') ADVANCE(217); + if (lookahead == '_') ADVANCE(141); + if (lookahead == '{') ADVANCE(135); + if (lookahead == '|') ADVANCE(294); + if (lookahead == '~') ADVANCE(224); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); + lookahead == ' ') ADVANCE(299); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(327); + lookahead != '\f') ADVANCE(197); END_STATE(); case 70: - if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\n') ADVANCE(300); if (lookahead == '\r') SKIP(70) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(239); - if (lookahead == '_') ADVANCE(154); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '!') ADVANCE(193); + if (lookahead == '"') ADVANCE(194); + if (lookahead == '$') ADVANCE(274); + if (lookahead == '\'') ADVANCE(194); + if (lookahead == '*') ADVANCE(151); + if (lookahead == '-') ADVANCE(172); + if (lookahead == '.') ADVANCE(174); + if (lookahead == ':') ADVANCE(175); + if (lookahead == '<') ADVANCE(170); + if (lookahead == '>') ADVANCE(301); + if (lookahead == 'F') ADVANCE(181); + if (lookahead == 'I') ADVANCE(183); + if (lookahead == 'N') ADVANCE(184); + if (lookahead == 'T') ADVANCE(185); + if (lookahead == 'W') ADVANCE(180); + if (lookahead == 'X') ADVANCE(192); + if (lookahead == '[') ADVANCE(258); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == '^') ADVANCE(217); + if (lookahead == '_') ADVANCE(141); + if (lookahead == '{') ADVANCE(267); + if (lookahead == '|') ADVANCE(294); + if (lookahead == '~') ADVANCE(224); if (lookahead != 0 && (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(327); + lookahead != ' ') ADVANCE(197); END_STATE(); case 71: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(70) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(239); - if (lookahead == '_') ADVANCE(154); - if (lookahead == '{') ADVANCE(149); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(71) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == ']') ADVANCE(230); + if (lookahead == '^') ADVANCE(215); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(327); + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(301); END_STATE(); case 72: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(70) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(239); - if (lookahead == '_') ADVANCE(154); - if (lookahead == '{') ADVANCE(148); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(71) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == ']') ADVANCE(230); + if (lookahead == '^') ADVANCE(215); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(134); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); + lookahead == ' ') ADVANCE(299); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(327); + lookahead != '\f') ADVANCE(301); END_STATE(); case 73: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(73) - if (lookahead == ' ') ADVANCE(114); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(155); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(74) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(215); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(299); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(327); + lookahead != 11 && + lookahead != '\f') ADVANCE(301); END_STATE(); case 74: - if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\n') ADVANCE(300); if (lookahead == '\r') SKIP(74) - if (lookahead == ' ') ADVANCE(114); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(257); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(263); - if (lookahead == 'I') ADVANCE(265); - if (lookahead == 'N') ADVANCE(266); - if (lookahead == 'T') ADVANCE(267); - if (lookahead == 'W') ADVANCE(262); - if (lookahead == 'X') ADVANCE(274); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(156); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(215); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(327); + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(301); END_STATE(); case 75: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(75) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(256); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(263); - if (lookahead == 'I') ADVANCE(265); - if (lookahead == 'N') ADVANCE(266); - if (lookahead == 'T') ADVANCE(267); - if (lookahead == 'W') ADVANCE(262); - if (lookahead == 'X') ADVANCE(274); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(158); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(74) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(215); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(134); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(299); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(327); + lookahead != 11 && + lookahead != '\f') ADVANCE(301); END_STATE(); case 76: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(75) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(256); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(263); - if (lookahead == 'I') ADVANCE(265); - if (lookahead == 'N') ADVANCE(266); - if (lookahead == 'T') ADVANCE(267); - if (lookahead == 'W') ADVANCE(262); - if (lookahead == 'X') ADVANCE(274); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(158); - if (lookahead == '{') ADVANCE(149); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(74) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(215); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(133); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + lookahead == ' ') ADVANCE(299); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(327); + lookahead != '\f') ADVANCE(301); END_STATE(); case 77: - if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\n') ADVANCE(300); if (lookahead == '\r') SKIP(77) - if (lookahead == ' ') ADVANCE(115); - if (lookahead == '!') ADVANCE(217); - if (lookahead == '"') ADVANCE(218); - if (lookahead == '$') ADVANCE(298); - if (lookahead == '\'') ADVANCE(218); - if (lookahead == '*') ADVANCE(174); - if (lookahead == '-') ADVANCE(196); - if (lookahead == '.') ADVANCE(198); - if (lookahead == ':') ADVANCE(199); - if (lookahead == '<') ADVANCE(194); - if (lookahead == '>') ADVANCE(327); - if (lookahead == 'F') ADVANCE(205); - if (lookahead == 'I') ADVANCE(207); - if (lookahead == 'N') ADVANCE(208); - if (lookahead == 'T') ADVANCE(209); - if (lookahead == 'W') ADVANCE(204); - if (lookahead == 'X') ADVANCE(216); - if (lookahead == '[') ADVANCE(282); - if (lookahead == '\\') ADVANCE(179); - if (lookahead == '^') ADVANCE(241); - if (lookahead == '_') ADVANCE(159); - if (lookahead == '{') ADVANCE(291); - if (lookahead == '|') ADVANCE(318); - if (lookahead == '~') ADVANCE(249); + if (lookahead == ' ') ADVANCE(144); + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(215); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(221); + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(301); END_STATE(); case 78: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(79) - if (lookahead == '!') ADVANCE(217); - if (lookahead == '"') ADVANCE(218); - if (lookahead == '$') ADVANCE(298); - if (lookahead == '\'') ADVANCE(218); - if (lookahead == '*') ADVANCE(175); - if (lookahead == '-') ADVANCE(196); - if (lookahead == '.') ADVANCE(198); - if (lookahead == ':') ADVANCE(199); - if (lookahead == '<') ADVANCE(194); - if (lookahead == '>') ADVANCE(327); - if (lookahead == 'F') ADVANCE(205); - if (lookahead == 'I') ADVANCE(207); - if (lookahead == 'N') ADVANCE(208); - if (lookahead == 'T') ADVANCE(209); - if (lookahead == 'W') ADVANCE(204); - if (lookahead == 'X') ADVANCE(216); - if (lookahead == '[') ADVANCE(282); - if (lookahead == '\\') ADVANCE(179); - if (lookahead == ']') ADVANCE(284); - if (lookahead == '^') ADVANCE(241); - if (lookahead == '_') ADVANCE(159); - if (lookahead == '{') ADVANCE(150); - if (lookahead == '|') ADVANCE(318); - if (lookahead == '~') ADVANCE(249); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(78) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(233); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(239); + if (lookahead == 'I') ADVANCE(241); + if (lookahead == 'N') ADVANCE(242); + if (lookahead == 'T') ADVANCE(243); + if (lookahead == 'W') ADVANCE(238); + if (lookahead == 'X') ADVANCE(250); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(140); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(223); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(221); + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(301); END_STATE(); case 79: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(79) - if (lookahead == '!') ADVANCE(217); - if (lookahead == '"') ADVANCE(218); - if (lookahead == '$') ADVANCE(298); - if (lookahead == '\'') ADVANCE(218); - if (lookahead == '*') ADVANCE(175); - if (lookahead == '-') ADVANCE(196); - if (lookahead == '.') ADVANCE(198); - if (lookahead == ':') ADVANCE(199); - if (lookahead == '<') ADVANCE(194); - if (lookahead == '>') ADVANCE(327); - if (lookahead == 'F') ADVANCE(205); - if (lookahead == 'I') ADVANCE(207); - if (lookahead == 'N') ADVANCE(208); - if (lookahead == 'T') ADVANCE(209); - if (lookahead == 'W') ADVANCE(204); - if (lookahead == 'X') ADVANCE(216); - if (lookahead == '[') ADVANCE(282); - if (lookahead == '\\') ADVANCE(179); - if (lookahead == '^') ADVANCE(241); - if (lookahead == '_') ADVANCE(159); - if (lookahead == '{') ADVANCE(291); - if (lookahead == '|') ADVANCE(318); - if (lookahead == '~') ADVANCE(249); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(78) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(233); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(239); + if (lookahead == 'I') ADVANCE(241); + if (lookahead == 'N') ADVANCE(242); + if (lookahead == 'T') ADVANCE(243); + if (lookahead == 'W') ADVANCE(238); + if (lookahead == 'X') ADVANCE(250); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(140); + if (lookahead == '{') ADVANCE(134); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(223); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(299); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(221); + lookahead != 11 && + lookahead != '\f') ADVANCE(301); END_STATE(); case 80: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(82) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == ']') ADVANCE(283); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(154); - if (lookahead == '{') ADVANCE(149); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(81) + if (lookahead == '!') ADVANCE(193); + if (lookahead == '"') ADVANCE(194); + if (lookahead == '$') ADVANCE(274); + if (lookahead == '\'') ADVANCE(194); + if (lookahead == '*') ADVANCE(151); + if (lookahead == '-') ADVANCE(172); + if (lookahead == '.') ADVANCE(174); + if (lookahead == ':') ADVANCE(175); + if (lookahead == '<') ADVANCE(170); + if (lookahead == '>') ADVANCE(301); + if (lookahead == 'F') ADVANCE(181); + if (lookahead == 'I') ADVANCE(183); + if (lookahead == 'N') ADVANCE(184); + if (lookahead == 'T') ADVANCE(185); + if (lookahead == 'W') ADVANCE(180); + if (lookahead == 'X') ADVANCE(192); + if (lookahead == '[') ADVANCE(258); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == ']') ADVANCE(260); + if (lookahead == '^') ADVANCE(217); + if (lookahead == '_') ADVANCE(141); + if (lookahead == '{') ADVANCE(135); + if (lookahead == '|') ADVANCE(294); + if (lookahead == '~') ADVANCE(225); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); + lookahead == ' ') ADVANCE(299); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(327); + lookahead != '\f') ADVANCE(197); END_STATE(); case 81: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(82) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == ']') ADVANCE(254); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(154); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(81) + if (lookahead == '!') ADVANCE(193); + if (lookahead == '"') ADVANCE(194); + if (lookahead == '$') ADVANCE(274); + if (lookahead == '\'') ADVANCE(194); + if (lookahead == '*') ADVANCE(151); + if (lookahead == '-') ADVANCE(172); + if (lookahead == '.') ADVANCE(174); + if (lookahead == ':') ADVANCE(175); + if (lookahead == '<') ADVANCE(170); + if (lookahead == '>') ADVANCE(301); + if (lookahead == 'F') ADVANCE(181); + if (lookahead == 'I') ADVANCE(183); + if (lookahead == 'N') ADVANCE(184); + if (lookahead == 'T') ADVANCE(185); + if (lookahead == 'W') ADVANCE(180); + if (lookahead == 'X') ADVANCE(192); + if (lookahead == '[') ADVANCE(258); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == '^') ADVANCE(217); + if (lookahead == '_') ADVANCE(141); + if (lookahead == '{') ADVANCE(267); + if (lookahead == '|') ADVANCE(294); + if (lookahead == '~') ADVANCE(225); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(327); + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(197); END_STATE(); case 82: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(82) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == ']') ADVANCE(254); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(154); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(84) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == ']') ADVANCE(259); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(134); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(299); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(327); + lookahead != 11 && + lookahead != '\f') ADVANCE(301); END_STATE(); case 83: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(82) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == ']') ADVANCE(254); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(154); - if (lookahead == '{') ADVANCE(148); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(84) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == ']') ADVANCE(230); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); + lookahead == ' ') ADVANCE(299); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(327); + lookahead != '\f') ADVANCE(301); END_STATE(); case 84: - if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\n') ADVANCE(300); if (lookahead == '\r') SKIP(84) - if (lookahead == ' ') ADVANCE(164); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == ']') ADVANCE(254); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(154); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == ']') ADVANCE(230); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(327); + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(301); END_STATE(); case 85: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(86) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(154); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(247); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(84) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == ']') ADVANCE(230); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(133); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); + lookahead == ' ') ADVANCE(299); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(327); + lookahead != '\f') ADVANCE(301); END_STATE(); case 86: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(86) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(154); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(247); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(89) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == ']') ADVANCE(259); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(299); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(327); + lookahead != 11 && + lookahead != '\f') ADVANCE(301); END_STATE(); case 87: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(86) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(154); - if (lookahead == '{') ADVANCE(149); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(247); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(89) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == ']') ADVANCE(259); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(134); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); + lookahead == ' ') ADVANCE(299); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(327); + lookahead != '\f') ADVANCE(301); END_STATE(); case 88: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(86) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(154); - if (lookahead == '{') ADVANCE(148); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(247); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(89) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == ']') ADVANCE(259); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(133); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); + lookahead == ' ') ADVANCE(299); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(327); + lookahead != '\f') ADVANCE(301); END_STATE(); case 89: - if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\n') ADVANCE(300); if (lookahead == '\r') SKIP(89) - if (lookahead == ' ') ADVANCE(164); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(329); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(154); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(327); + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(301); END_STATE(); case 90: - if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\n') ADVANCE(300); if (lookahead == '\r') SKIP(90) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(257); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(263); - if (lookahead == 'I') ADVANCE(265); - if (lookahead == 'N') ADVANCE(266); - if (lookahead == 'T') ADVANCE(267); - if (lookahead == 'W') ADVANCE(262); - if (lookahead == 'X') ADVANCE(274); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(158); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(247); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + if (lookahead == ' ') ADVANCE(144); + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(327); + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(301); END_STATE(); case 91: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(90) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(257); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(263); - if (lookahead == 'I') ADVANCE(265); - if (lookahead == 'N') ADVANCE(266); - if (lookahead == 'T') ADVANCE(267); - if (lookahead == 'W') ADVANCE(262); - if (lookahead == 'X') ADVANCE(274); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(158); - if (lookahead == '{') ADVANCE(149); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(247); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(91) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(232); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(239); + if (lookahead == 'I') ADVANCE(241); + if (lookahead == 'N') ADVANCE(242); + if (lookahead == 'T') ADVANCE(243); + if (lookahead == 'W') ADVANCE(238); + if (lookahead == 'X') ADVANCE(250); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(140); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(327); + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(301); END_STATE(); case 92: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(93) - if (lookahead == '!') ADVANCE(217); - if (lookahead == '"') ADVANCE(218); - if (lookahead == '$') ADVANCE(298); - if (lookahead == '\'') ADVANCE(218); - if (lookahead == '*') ADVANCE(175); - if (lookahead == '-') ADVANCE(196); - if (lookahead == '.') ADVANCE(198); - if (lookahead == ':') ADVANCE(199); - if (lookahead == '<') ADVANCE(194); - if (lookahead == '>') ADVANCE(327); - if (lookahead == 'F') ADVANCE(205); - if (lookahead == 'I') ADVANCE(207); - if (lookahead == 'N') ADVANCE(208); - if (lookahead == 'T') ADVANCE(209); - if (lookahead == 'W') ADVANCE(204); - if (lookahead == 'X') ADVANCE(216); - if (lookahead == '[') ADVANCE(282); - if (lookahead == '\\') ADVANCE(179); - if (lookahead == '^') ADVANCE(240); - if (lookahead == '_') ADVANCE(159); - if (lookahead == '{') ADVANCE(150); - if (lookahead == '|') ADVANCE(318); - if (lookahead == '~') ADVANCE(249); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(91) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(232); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(239); + if (lookahead == 'I') ADVANCE(241); + if (lookahead == 'N') ADVANCE(242); + if (lookahead == 'T') ADVANCE(243); + if (lookahead == 'W') ADVANCE(238); + if (lookahead == 'X') ADVANCE(250); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(140); + if (lookahead == '{') ADVANCE(134); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); + lookahead == ' ') ADVANCE(299); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(221); + lookahead != '\f') ADVANCE(301); END_STATE(); case 93: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(93) - if (lookahead == '!') ADVANCE(217); - if (lookahead == '"') ADVANCE(218); - if (lookahead == '$') ADVANCE(298); - if (lookahead == '\'') ADVANCE(218); - if (lookahead == '*') ADVANCE(175); - if (lookahead == '-') ADVANCE(196); - if (lookahead == '.') ADVANCE(198); - if (lookahead == ':') ADVANCE(199); - if (lookahead == '<') ADVANCE(194); - if (lookahead == '>') ADVANCE(327); - if (lookahead == 'F') ADVANCE(205); - if (lookahead == 'I') ADVANCE(207); - if (lookahead == 'N') ADVANCE(208); - if (lookahead == 'T') ADVANCE(209); - if (lookahead == 'W') ADVANCE(204); - if (lookahead == 'X') ADVANCE(216); - if (lookahead == '[') ADVANCE(282); - if (lookahead == '\\') ADVANCE(179); - if (lookahead == '^') ADVANCE(240); - if (lookahead == '_') ADVANCE(159); - if (lookahead == '{') ADVANCE(291); - if (lookahead == '|') ADVANCE(318); - if (lookahead == '~') ADVANCE(249); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(94) + if (lookahead == '!') ADVANCE(193); + if (lookahead == '"') ADVANCE(194); + if (lookahead == '$') ADVANCE(274); + if (lookahead == '\'') ADVANCE(194); + if (lookahead == '*') ADVANCE(151); + if (lookahead == '-') ADVANCE(171); + if (lookahead == '.') ADVANCE(174); + if (lookahead == ':') ADVANCE(175); + if (lookahead == '<') ADVANCE(170); + if (lookahead == '>') ADVANCE(301); + if (lookahead == 'F') ADVANCE(181); + if (lookahead == 'I') ADVANCE(183); + if (lookahead == 'N') ADVANCE(184); + if (lookahead == 'T') ADVANCE(185); + if (lookahead == 'W') ADVANCE(180); + if (lookahead == 'X') ADVANCE(192); + if (lookahead == '[') ADVANCE(258); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == '^') ADVANCE(217); + if (lookahead == '_') ADVANCE(141); + if (lookahead == '{') ADVANCE(135); + if (lookahead == '|') ADVANCE(294); + if (lookahead == '~') ADVANCE(225); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(299); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(221); + lookahead != 11 && + lookahead != '\f') ADVANCE(197); END_STATE(); case 94: - if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\n') ADVANCE(300); if (lookahead == '\r') SKIP(94) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == ']') ADVANCE(254); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(154); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(247); + if (lookahead == '!') ADVANCE(193); + if (lookahead == '"') ADVANCE(194); + if (lookahead == '$') ADVANCE(274); + if (lookahead == '\'') ADVANCE(194); + if (lookahead == '*') ADVANCE(151); + if (lookahead == '-') ADVANCE(171); + if (lookahead == '.') ADVANCE(174); + if (lookahead == ':') ADVANCE(175); + if (lookahead == '<') ADVANCE(170); + if (lookahead == '>') ADVANCE(301); + if (lookahead == 'F') ADVANCE(181); + if (lookahead == 'I') ADVANCE(183); + if (lookahead == 'N') ADVANCE(184); + if (lookahead == 'T') ADVANCE(185); + if (lookahead == 'W') ADVANCE(180); + if (lookahead == 'X') ADVANCE(192); + if (lookahead == '[') ADVANCE(258); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == '^') ADVANCE(217); + if (lookahead == '_') ADVANCE(141); + if (lookahead == '{') ADVANCE(267); + if (lookahead == '|') ADVANCE(294); + if (lookahead == '~') ADVANCE(225); if (lookahead != 0 && (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(327); + lookahead != ' ') ADVANCE(197); END_STATE(); case 95: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(94) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == ']') ADVANCE(254); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(154); - if (lookahead == '{') ADVANCE(149); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(247); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(95) + if (lookahead == ' ') ADVANCE(146); + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(149); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(327); + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(301); END_STATE(); case 96: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(97) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(329); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(154); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(96) + if (lookahead == ' ') ADVANCE(144); + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(223); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(327); + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(301); END_STATE(); case 97: - if (lookahead == '\n') ADVANCE(326); if (lookahead == '\r') SKIP(97) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(329); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(154); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(327); + if (lookahead == '"') ADVANCE(321); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(324); END_STATE(); case 98: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(97) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(329); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(154); - if (lookahead == '{') ADVANCE(149); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); + if (lookahead == '\r') ADVANCE(322); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(327); + lookahead != '\n' && + lookahead != '"') ADVANCE(323); END_STATE(); case 99: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(97) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(329); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(154); - if (lookahead == '{') ADVANCE(148); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); + if (lookahead == '\r') ADVANCE(262); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(327); + lookahead != '\n' && + lookahead != ')') ADVANCE(263); END_STATE(); case 100: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(100) - if (lookahead == ' ') ADVANCE(164); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(239); - if (lookahead == '_') ADVANCE(154); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + if (lookahead == '\r') ADVANCE(295); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(327); + lookahead != '\t' && + lookahead != '\n' && + lookahead != ' ' && + lookahead != '=' && + lookahead != '{' && + lookahead != '}') ADVANCE(296); END_STATE(); case 101: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(101) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(257); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(263); - if (lookahead == 'I') ADVANCE(265); - if (lookahead == 'N') ADVANCE(266); - if (lookahead == 'T') ADVANCE(267); - if (lookahead == 'W') ADVANCE(262); - if (lookahead == 'X') ADVANCE(274); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(239); - if (lookahead == '_') ADVANCE(158); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(327); + if (lookahead == ' ') ADVANCE(101); + if (lookahead == '*') ADVANCE(115); END_STATE(); case 102: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(101) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(257); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(263); - if (lookahead == 'I') ADVANCE(265); - if (lookahead == 'N') ADVANCE(266); - if (lookahead == 'T') ADVANCE(267); - if (lookahead == 'W') ADVANCE(262); - if (lookahead == 'X') ADVANCE(274); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(239); - if (lookahead == '_') ADVANCE(158); - if (lookahead == '{') ADVANCE(149); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); - if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(327); + if (lookahead == '.') ADVANCE(159); END_STATE(); case 103: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(104) - if (lookahead == '!') ADVANCE(217); - if (lookahead == '"') ADVANCE(218); - if (lookahead == '$') ADVANCE(298); - if (lookahead == '\'') ADVANCE(218); - if (lookahead == '*') ADVANCE(175); - if (lookahead == '-') ADVANCE(195); - if (lookahead == '.') ADVANCE(198); - if (lookahead == ':') ADVANCE(199); - if (lookahead == '<') ADVANCE(194); - if (lookahead == '>') ADVANCE(327); - if (lookahead == 'F') ADVANCE(205); - if (lookahead == 'I') ADVANCE(207); - if (lookahead == 'N') ADVANCE(208); - if (lookahead == 'T') ADVANCE(209); - if (lookahead == 'W') ADVANCE(204); - if (lookahead == 'X') ADVANCE(216); - if (lookahead == '[') ADVANCE(282); - if (lookahead == '\\') ADVANCE(179); - if (lookahead == '^') ADVANCE(241); - if (lookahead == '_') ADVANCE(159); - if (lookahead == '{') ADVANCE(150); - if (lookahead == '|') ADVANCE(318); - if (lookahead == '~') ADVANCE(249); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); + if (lookahead == ':') ADVANCE(211); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(221); + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ') ADVANCE(103); END_STATE(); case 104: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(104) - if (lookahead == '!') ADVANCE(217); - if (lookahead == '"') ADVANCE(218); - if (lookahead == '$') ADVANCE(298); - if (lookahead == '\'') ADVANCE(218); - if (lookahead == '*') ADVANCE(175); - if (lookahead == '-') ADVANCE(195); - if (lookahead == '.') ADVANCE(198); - if (lookahead == ':') ADVANCE(199); - if (lookahead == '<') ADVANCE(194); - if (lookahead == '>') ADVANCE(327); - if (lookahead == 'F') ADVANCE(205); - if (lookahead == 'I') ADVANCE(207); - if (lookahead == 'N') ADVANCE(208); - if (lookahead == 'T') ADVANCE(209); - if (lookahead == 'W') ADVANCE(204); - if (lookahead == 'X') ADVANCE(216); - if (lookahead == '[') ADVANCE(282); - if (lookahead == '\\') ADVANCE(179); - if (lookahead == '^') ADVANCE(241); - if (lookahead == '_') ADVANCE(159); - if (lookahead == '{') ADVANCE(291); - if (lookahead == '|') ADVANCE(318); - if (lookahead == '~') ADVANCE(249); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(221); + if (lookahead == 'D') ADVANCE(110); END_STATE(); case 105: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(105) - if (lookahead == ' ') ADVANCE(170); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(173); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(154); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(327); + if (lookahead == 'E') ADVANCE(281); END_STATE(); case 106: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(106) - if (lookahead == ' ') ADVANCE(164); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(154); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(327); + if (lookahead == 'E') ADVANCE(290); END_STATE(); case 107: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(107) - if (lookahead == ' ') ADVANCE(164); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(154); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(247); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(327); + if (lookahead == 'F') ADVANCE(109); END_STATE(); case 108: - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(108) - if (lookahead == ' ') ADVANCE(169); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(155); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(327); + if (lookahead == 'M') ADVANCE(106); END_STATE(); case 109: - if (lookahead == '\r') SKIP(109) - if (lookahead == '"') ADVANCE(347); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(350); + if (lookahead == 'O') ADVANCE(284); END_STATE(); case 110: - if (lookahead == '\r') ADVANCE(286); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != ')') ADVANCE(287); + if (lookahead == 'O') ADVANCE(275); END_STATE(); case 111: - if (lookahead == '\r') ADVANCE(319); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != ' ' && - lookahead != '=' && - lookahead != '{' && - lookahead != '}') ADVANCE(320); + if (lookahead == 'P') ADVANCE(278); END_STATE(); case 112: - if (lookahead == '\r') ADVANCE(348); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '"') ADVANCE(349); + if (lookahead == 'T') ADVANCE(105); END_STATE(); case 113: - if (lookahead == ' ') ADVANCE(113); - if (lookahead == '*') ADVANCE(129); - if (lookahead == '_') ADVANCE(130); + if (lookahead == 'X') ADVANCE(108); END_STATE(); case 114: - if (lookahead == ' ') ADVANCE(114); - if (lookahead == '_') ADVANCE(130); + if (lookahead == 'X') ADVANCE(287); END_STATE(); case 115: - if (lookahead == ' ') ADVANCE(115); - if (lookahead == '*') ADVANCE(129); + if (lookahead == '}') ADVANCE(152); END_STATE(); case 116: - if (lookahead == '.') ADVANCE(183); - END_STATE(); - case 117: - if (lookahead == ':') ADVANCE(235); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ') ADVANCE(117); - END_STATE(); - case 118: - if (lookahead == 'D') ADVANCE(124); - END_STATE(); - case 119: - if (lookahead == 'E') ADVANCE(305); - END_STATE(); - case 120: - if (lookahead == 'E') ADVANCE(314); - END_STATE(); - case 121: - if (lookahead == 'F') ADVANCE(123); - END_STATE(); - case 122: - if (lookahead == 'M') ADVANCE(120); - END_STATE(); - case 123: - if (lookahead == 'O') ADVANCE(308); - END_STATE(); - case 124: - if (lookahead == 'O') ADVANCE(299); - END_STATE(); - case 125: - if (lookahead == 'P') ADVANCE(302); - END_STATE(); - case 126: - if (lookahead == 'T') ADVANCE(119); - END_STATE(); - case 127: - if (lookahead == 'X') ADVANCE(122); - END_STATE(); - case 128: - if (lookahead == 'X') ADVANCE(311); - END_STATE(); - case 129: - if (lookahead == '}') ADVANCE(176); - END_STATE(); - case 130: - if (lookahead == '}') ADVANCE(160); - END_STATE(); - case 131: if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '}') ADVANCE(344); + lookahead != '}') ADVANCE(318); END_STATE(); - case 132: - if (eof) ADVANCE(145); - if (lookahead == '\t') ADVANCE(325); - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(140) - if (lookahead == ' ') ADVANCE(171); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(154); - if (lookahead == '{') ADVANCE(149); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + case 117: + if (eof) ADVANCE(130); + if (lookahead == '\t') ADVANCE(299); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(125) + if (lookahead == ' ') ADVANCE(147); + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(134); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(327); + lookahead != '\f') ADVANCE(301); END_STATE(); - case 133: - if (eof) ADVANCE(145); - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(133) - if (lookahead == ' ') ADVANCE(168); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(347); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '%') ADVANCE(292); - if (lookahead == '(') ADVANCE(285); - if (lookahead == ')') ADVANCE(288); - if (lookahead == '*') ADVANCE(173); - if (lookahead == '+') ADVANCE(338); - if (lookahead == '-') ADVANCE(256); - if (lookahead == '.') ADVANCE(343); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == '=') ADVANCE(346); - if (lookahead == '>') ADVANCE(222); - if (lookahead == 'F') ADVANCE(263); - if (lookahead == 'I') ADVANCE(265); - if (lookahead == 'N') ADVANCE(266); - if (lookahead == 'T') ADVANCE(267); - if (lookahead == 'W') ADVANCE(262); - if (lookahead == 'X') ADVANCE(274); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(180); - if (lookahead == ']') ADVANCE(254); - if (lookahead == '^') ADVANCE(239); - if (lookahead == '_') ADVANCE(156); - if (lookahead == '{') ADVANCE(289); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '}') ADVANCE(151); - if (lookahead == '~') ADVANCE(247); + case 118: + if (eof) ADVANCE(130); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(118) + if (lookahead == ' ') ADVANCE(146); + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(321); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '%') ADVANCE(268); + if (lookahead == '(') ADVANCE(261); + if (lookahead == ')') ADVANCE(264); + if (lookahead == '*') ADVANCE(149); + if (lookahead == '+') ADVANCE(312); + if (lookahead == '-') ADVANCE(232); + if (lookahead == '.') ADVANCE(317); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == '=') ADVANCE(320); + if (lookahead == '>') ADVANCE(198); + if (lookahead == 'F') ADVANCE(239); + if (lookahead == 'I') ADVANCE(241); + if (lookahead == 'N') ADVANCE(242); + if (lookahead == 'T') ADVANCE(243); + if (lookahead == 'W') ADVANCE(238); + if (lookahead == 'X') ADVANCE(250); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(156); + if (lookahead == ']') ADVANCE(230); + if (lookahead == '^') ADVANCE(215); + if (lookahead == '_') ADVANCE(140); + if (lookahead == '{') ADVANCE(265); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '}') ADVANCE(136); + if (lookahead == '~') ADVANCE(223); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(327); + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(301); END_STATE(); - case 134: - if (eof) ADVANCE(145); - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(135) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(154); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + case 119: + if (eof) ADVANCE(130); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(120) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); + lookahead == ' ') ADVANCE(299); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(327); + lookahead != '\f') ADVANCE(301); END_STATE(); - case 135: - if (eof) ADVANCE(145); - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(135) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(154); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + case 120: + if (eof) ADVANCE(130); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(120) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead != 0 && (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(327); + lookahead != ' ') ADVANCE(301); END_STATE(); - case 136: - if (eof) ADVANCE(145); - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(135) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(154); - if (lookahead == '{') ADVANCE(149); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + case 121: + if (eof) ADVANCE(130); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(120) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(134); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); + lookahead == ' ') ADVANCE(299); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(327); + lookahead != '\f') ADVANCE(301); END_STATE(); - case 137: - if (eof) ADVANCE(145); - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(135) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(154); - if (lookahead == '{') ADVANCE(148); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + case 122: + if (eof) ADVANCE(130); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(120) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(133); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); + lookahead == ' ') ADVANCE(299); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(327); + lookahead != '\f') ADVANCE(301); END_STATE(); - case 138: - if (eof) ADVANCE(145); - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(138) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == ']') ADVANCE(254); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(154); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + case 123: + if (eof) ADVANCE(130); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(123) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == ']') ADVANCE(230); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead != 0 && (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(327); + lookahead != ' ') ADVANCE(301); END_STATE(); - case 139: - if (eof) ADVANCE(145); - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(138) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == ']') ADVANCE(254); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(154); - if (lookahead == '{') ADVANCE(149); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + case 124: + if (eof) ADVANCE(130); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(123) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == ']') ADVANCE(230); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(134); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); + lookahead == ' ') ADVANCE(299); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(327); + lookahead != '\f') ADVANCE(301); END_STATE(); - case 140: - if (eof) ADVANCE(145); - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(140) - if (lookahead == ' ') ADVANCE(164); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(331); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'N') ADVANCE(334); - if (lookahead == 'T') ADVANCE(335); - if (lookahead == 'W') ADVANCE(332); - if (lookahead == 'X') ADVANCE(336); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(154); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + case 125: + if (eof) ADVANCE(130); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(125) + if (lookahead == ' ') ADVANCE(144); + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(305); + if (lookahead == 'I') ADVANCE(307); + if (lookahead == 'N') ADVANCE(308); + if (lookahead == 'T') ADVANCE(309); + if (lookahead == 'W') ADVANCE(306); + if (lookahead == 'X') ADVANCE(310); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(327); + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(301); END_STATE(); - case 141: - if (eof) ADVANCE(145); - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(141) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(257); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(263); - if (lookahead == 'I') ADVANCE(265); - if (lookahead == 'N') ADVANCE(266); - if (lookahead == 'T') ADVANCE(267); - if (lookahead == 'W') ADVANCE(262); - if (lookahead == 'X') ADVANCE(274); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(158); - if (lookahead == '{') ADVANCE(290); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + case 126: + if (eof) ADVANCE(130); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(126) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(233); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(239); + if (lookahead == 'I') ADVANCE(241); + if (lookahead == 'N') ADVANCE(242); + if (lookahead == 'T') ADVANCE(243); + if (lookahead == 'W') ADVANCE(238); + if (lookahead == 'X') ADVANCE(250); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(140); + if (lookahead == '{') ADVANCE(266); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); if (lookahead != 0 && (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(327); + lookahead != ' ') ADVANCE(301); END_STATE(); - case 142: - if (eof) ADVANCE(145); - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(141) - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '-') ADVANCE(257); - if (lookahead == '.') ADVANCE(330); - if (lookahead == ':') ADVANCE(341); - if (lookahead == '<') ADVANCE(193); - if (lookahead == 'F') ADVANCE(263); - if (lookahead == 'I') ADVANCE(265); - if (lookahead == 'N') ADVANCE(266); - if (lookahead == 'T') ADVANCE(267); - if (lookahead == 'W') ADVANCE(262); - if (lookahead == 'X') ADVANCE(274); - if (lookahead == '[') ADVANCE(281); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == '^') ADVANCE(238); - if (lookahead == '_') ADVANCE(158); - if (lookahead == '{') ADVANCE(149); - if (lookahead == '|') ADVANCE(317); - if (lookahead == '~') ADVANCE(246); + case 127: + if (eof) ADVANCE(130); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(126) + if (lookahead == '!') ADVANCE(311); + if (lookahead == '"') ADVANCE(314); + if (lookahead == '$') ADVANCE(273); + if (lookahead == '\'') ADVANCE(314); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '-') ADVANCE(233); + if (lookahead == '.') ADVANCE(304); + if (lookahead == ':') ADVANCE(315); + if (lookahead == '<') ADVANCE(169); + if (lookahead == 'F') ADVANCE(239); + if (lookahead == 'I') ADVANCE(241); + if (lookahead == 'N') ADVANCE(242); + if (lookahead == 'T') ADVANCE(243); + if (lookahead == 'W') ADVANCE(238); + if (lookahead == 'X') ADVANCE(250); + if (lookahead == '[') ADVANCE(257); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == '^') ADVANCE(214); + if (lookahead == '_') ADVANCE(140); + if (lookahead == '{') ADVANCE(134); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '~') ADVANCE(222); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); + lookahead == ' ') ADVANCE(299); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(327); + lookahead != '\f') ADVANCE(301); END_STATE(); - case 143: - if (eof) ADVANCE(145); - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(144) - if (lookahead == '!') ADVANCE(217); - if (lookahead == '"') ADVANCE(218); - if (lookahead == '$') ADVANCE(298); - if (lookahead == '\'') ADVANCE(218); - if (lookahead == '*') ADVANCE(175); - if (lookahead == '-') ADVANCE(196); - if (lookahead == '.') ADVANCE(198); - if (lookahead == ':') ADVANCE(199); - if (lookahead == '<') ADVANCE(194); - if (lookahead == '>') ADVANCE(327); - if (lookahead == 'F') ADVANCE(205); - if (lookahead == 'I') ADVANCE(207); - if (lookahead == 'N') ADVANCE(208); - if (lookahead == 'T') ADVANCE(209); - if (lookahead == 'W') ADVANCE(204); - if (lookahead == 'X') ADVANCE(216); - if (lookahead == '[') ADVANCE(282); - if (lookahead == '\\') ADVANCE(179); - if (lookahead == '^') ADVANCE(241); - if (lookahead == '_') ADVANCE(159); - if (lookahead == '{') ADVANCE(150); - if (lookahead == '|') ADVANCE(318); - if (lookahead == '~') ADVANCE(249); + case 128: + if (eof) ADVANCE(130); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(129) + if (lookahead == '!') ADVANCE(193); + if (lookahead == '"') ADVANCE(194); + if (lookahead == '$') ADVANCE(274); + if (lookahead == '\'') ADVANCE(194); + if (lookahead == '*') ADVANCE(151); + if (lookahead == '-') ADVANCE(172); + if (lookahead == '.') ADVANCE(174); + if (lookahead == ':') ADVANCE(175); + if (lookahead == '<') ADVANCE(170); + if (lookahead == '>') ADVANCE(301); + if (lookahead == 'F') ADVANCE(181); + if (lookahead == 'I') ADVANCE(183); + if (lookahead == 'N') ADVANCE(184); + if (lookahead == 'T') ADVANCE(185); + if (lookahead == 'W') ADVANCE(180); + if (lookahead == 'X') ADVANCE(192); + if (lookahead == '[') ADVANCE(258); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == '^') ADVANCE(217); + if (lookahead == '_') ADVANCE(141); + if (lookahead == '{') ADVANCE(135); + if (lookahead == '|') ADVANCE(294); + if (lookahead == '~') ADVANCE(225); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); + lookahead == ' ') ADVANCE(299); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(221); + lookahead != '\f') ADVANCE(197); END_STATE(); - case 144: - if (eof) ADVANCE(145); - if (lookahead == '\n') ADVANCE(326); - if (lookahead == '\r') SKIP(144) - if (lookahead == '!') ADVANCE(217); - if (lookahead == '"') ADVANCE(218); - if (lookahead == '$') ADVANCE(298); - if (lookahead == '\'') ADVANCE(218); - if (lookahead == '*') ADVANCE(175); - if (lookahead == '-') ADVANCE(196); - if (lookahead == '.') ADVANCE(198); - if (lookahead == ':') ADVANCE(199); - if (lookahead == '<') ADVANCE(194); - if (lookahead == '>') ADVANCE(327); - if (lookahead == 'F') ADVANCE(205); - if (lookahead == 'I') ADVANCE(207); - if (lookahead == 'N') ADVANCE(208); - if (lookahead == 'T') ADVANCE(209); - if (lookahead == 'W') ADVANCE(204); - if (lookahead == 'X') ADVANCE(216); - if (lookahead == '[') ADVANCE(282); - if (lookahead == '\\') ADVANCE(179); - if (lookahead == '^') ADVANCE(241); - if (lookahead == '_') ADVANCE(159); - if (lookahead == '{') ADVANCE(291); - if (lookahead == '|') ADVANCE(318); - if (lookahead == '~') ADVANCE(249); + case 129: + if (eof) ADVANCE(130); + if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\r') SKIP(129) + if (lookahead == '!') ADVANCE(193); + if (lookahead == '"') ADVANCE(194); + if (lookahead == '$') ADVANCE(274); + if (lookahead == '\'') ADVANCE(194); + if (lookahead == '*') ADVANCE(151); + if (lookahead == '-') ADVANCE(172); + if (lookahead == '.') ADVANCE(174); + if (lookahead == ':') ADVANCE(175); + if (lookahead == '<') ADVANCE(170); + if (lookahead == '>') ADVANCE(301); + if (lookahead == 'F') ADVANCE(181); + if (lookahead == 'I') ADVANCE(183); + if (lookahead == 'N') ADVANCE(184); + if (lookahead == 'T') ADVANCE(185); + if (lookahead == 'W') ADVANCE(180); + if (lookahead == 'X') ADVANCE(192); + if (lookahead == '[') ADVANCE(258); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == '^') ADVANCE(217); + if (lookahead == '_') ADVANCE(141); + if (lookahead == '{') ADVANCE(267); + if (lookahead == '|') ADVANCE(294); + if (lookahead == '~') ADVANCE(225); if (lookahead != 0 && (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(221); + lookahead != ' ') ADVANCE(197); END_STATE(); - case 145: + case 130: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 146: + case 131: ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 147: + case 132: ACCEPT_TOKEN(anon_sym_LBRACE); - if (lookahead == '*') ADVANCE(162); - if (lookahead == '+') ADVANCE(227); - if (lookahead == '-') ADVANCE(231); - if (lookahead == '=') ADVANCE(296); - if (lookahead == '^') ADVANCE(236); - if (lookahead == '_') ADVANCE(152); - if (lookahead == '~') ADVANCE(244); + if (lookahead == '*') ADVANCE(142); + if (lookahead == '+') ADVANCE(203); + if (lookahead == '-') ADVANCE(207); + if (lookahead == '=') ADVANCE(272); + if (lookahead == '^') ADVANCE(212); + if (lookahead == '_') ADVANCE(137); + if (lookahead == '~') ADVANCE(220); END_STATE(); - case 148: + case 133: ACCEPT_TOKEN(anon_sym_LBRACE); if (lookahead == '"' || - lookahead == '\'') ADVANCE(181); - if (lookahead == '*') ADVANCE(162); - if (lookahead == '+') ADVANCE(227); - if (lookahead == '-') ADVANCE(231); - if (lookahead == '=') ADVANCE(296); - if (lookahead == '^') ADVANCE(236); - if (lookahead == '_') ADVANCE(152); - if (lookahead == '~') ADVANCE(244); + lookahead == '\'') ADVANCE(157); + if (lookahead == '*') ADVANCE(142); + if (lookahead == '+') ADVANCE(203); + if (lookahead == '-') ADVANCE(207); + if (lookahead == '=') ADVANCE(272); + if (lookahead == '^') ADVANCE(212); + if (lookahead == '_') ADVANCE(137); + if (lookahead == '~') ADVANCE(220); END_STATE(); - case 149: + case 134: ACCEPT_TOKEN(anon_sym_LBRACE); if (lookahead == '"' || - lookahead == '\'') ADVANCE(181); - if (lookahead == '*') ADVANCE(162); - if (lookahead == '+') ADVANCE(227); - if (lookahead == '-') ADVANCE(231); - if (lookahead == '=') ADVANCE(223); - if (lookahead == '^') ADVANCE(236); - if (lookahead == '_') ADVANCE(152); - if (lookahead == '~') ADVANCE(244); + lookahead == '\'') ADVANCE(157); + if (lookahead == '*') ADVANCE(142); + if (lookahead == '+') ADVANCE(203); + if (lookahead == '-') ADVANCE(207); + if (lookahead == '=') ADVANCE(199); + if (lookahead == '^') ADVANCE(212); + if (lookahead == '_') ADVANCE(137); + if (lookahead == '~') ADVANCE(220); END_STATE(); - case 150: + case 135: ACCEPT_TOKEN(anon_sym_LBRACE); if (lookahead == '"' || - lookahead == '\'') ADVANCE(182); - if (lookahead == '*') ADVANCE(163); - if (lookahead == '+') ADVANCE(228); - if (lookahead == '-') ADVANCE(232); - if (lookahead == '=') ADVANCE(224); - if (lookahead == '^') ADVANCE(237); - if (lookahead == '_') ADVANCE(153); - if (lookahead == '~') ADVANCE(245); + lookahead == '\'') ADVANCE(158); + if (lookahead == '*') ADVANCE(143); + if (lookahead == '+') ADVANCE(204); + if (lookahead == '-') ADVANCE(208); + if (lookahead == '=') ADVANCE(200); + if (lookahead == '^') ADVANCE(213); + if (lookahead == '_') ADVANCE(138); + if (lookahead == '~') ADVANCE(221); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 151: + case 136: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 152: + case 137: ACCEPT_TOKEN(anon_sym_LBRACE_); END_STATE(); - case 153: + case 138: ACCEPT_TOKEN(anon_sym_LBRACE_); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); - END_STATE(); - case 154: - ACCEPT_TOKEN(anon_sym__); - END_STATE(); - case 155: - ACCEPT_TOKEN(anon_sym__); - if (lookahead == '}') ADVANCE(160); - END_STATE(); - case 156: - ACCEPT_TOKEN(anon_sym__); - if (lookahead == '}') ADVANCE(160); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + lookahead != '>') ADVANCE(197); END_STATE(); - case 157: + case 139: ACCEPT_TOKEN(anon_sym__); - if (lookahead == '}') ADVANCE(161); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(221); END_STATE(); - case 158: + case 140: ACCEPT_TOKEN(anon_sym__); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); END_STATE(); - case 159: + case 141: ACCEPT_TOKEN(anon_sym__); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); - END_STATE(); - case 160: - ACCEPT_TOKEN(aux_sym_emphasis_end_token1); - END_STATE(); - case 161: - ACCEPT_TOKEN(aux_sym_emphasis_end_token1); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 162: + case 142: ACCEPT_TOKEN(anon_sym_LBRACE_STAR); END_STATE(); - case 163: + case 143: ACCEPT_TOKEN(anon_sym_LBRACE_STAR); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); - END_STATE(); - case 164: - ACCEPT_TOKEN(anon_sym_SPACE); - END_STATE(); - case 165: - ACCEPT_TOKEN(anon_sym_SPACE); - if (lookahead == '\t') ADVANCE(325); - if (lookahead == ' ') ADVANCE(322); - if (lookahead == '*') ADVANCE(129); - if (lookahead == '_') ADVANCE(130); - END_STATE(); - case 166: - ACCEPT_TOKEN(anon_sym_SPACE); - if (lookahead == '\t') ADVANCE(325); - if (lookahead == ' ') ADVANCE(323); - if (lookahead == '_') ADVANCE(130); + lookahead != '>') ADVANCE(197); END_STATE(); - case 167: - ACCEPT_TOKEN(anon_sym_SPACE); - if (lookahead == '\t') ADVANCE(325); - if (lookahead == ' ') ADVANCE(324); - if (lookahead == '*') ADVANCE(129); - END_STATE(); - case 168: + case 144: ACCEPT_TOKEN(anon_sym_SPACE); - if (lookahead == ' ') ADVANCE(113); - if (lookahead == '*') ADVANCE(129); - if (lookahead == '_') ADVANCE(130); END_STATE(); - case 169: + case 145: ACCEPT_TOKEN(anon_sym_SPACE); - if (lookahead == ' ') ADVANCE(114); - if (lookahead == '_') ADVANCE(130); + if (lookahead == '\t') ADVANCE(299); + if (lookahead == ' ') ADVANCE(298); + if (lookahead == '*') ADVANCE(115); END_STATE(); - case 170: + case 146: ACCEPT_TOKEN(anon_sym_SPACE); - if (lookahead == ' ') ADVANCE(115); - if (lookahead == '*') ADVANCE(129); + if (lookahead == ' ') ADVANCE(101); + if (lookahead == '*') ADVANCE(115); END_STATE(); - case 171: + case 147: ACCEPT_TOKEN(anon_sym_SPACE); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); + lookahead == ' ') ADVANCE(299); END_STATE(); - case 172: + case 148: ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); - case 173: + case 149: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '}') ADVANCE(176); + if (lookahead == '}') ADVANCE(152); END_STATE(); - case 174: + case 150: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '}') ADVANCE(177); + if (lookahead == '}') ADVANCE(153); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 175: + case 151: ACCEPT_TOKEN(anon_sym_STAR); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 176: + case 152: ACCEPT_TOKEN(aux_sym_strong_end_token1); END_STATE(); - case 177: + case 153: ACCEPT_TOKEN(aux_sym_strong_end_token1); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 178: + case 154: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '"' || - lookahead == '\'') ADVANCE(181); + lookahead == '\'') ADVANCE(157); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && - lookahead != '\\') ADVANCE(191); + lookahead != '\\') ADVANCE(167); END_STATE(); - case 179: + case 155: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '"' || - lookahead == '\'') ADVANCE(182); - if (lookahead == '\\') ADVANCE(221); + lookahead == '\'') ADVANCE(158); + if (lookahead == '\\') ADVANCE(197); if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || lookahead == ' ' || - lookahead == '>') ADVANCE(191); + lookahead == '>') ADVANCE(167); if (lookahead != 0 && - (lookahead < '\n' || '\r' < lookahead)) ADVANCE(192); + (lookahead < '\n' || '\r' < lookahead)) ADVANCE(168); END_STATE(); - case 180: + case 156: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && - lookahead != '\\') ADVANCE(191); + lookahead != '\\') ADVANCE(167); END_STATE(); - case 181: + case 157: ACCEPT_TOKEN(sym_quotation_marks); END_STATE(); - case 182: + case 158: ACCEPT_TOKEN(sym_quotation_marks); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 183: + case 159: ACCEPT_TOKEN(sym_ellipsis); END_STATE(); - case 184: + case 160: ACCEPT_TOKEN(sym_ellipsis); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 185: + case 161: ACCEPT_TOKEN(sym_em_dash); END_STATE(); - case 186: + case 162: ACCEPT_TOKEN(sym_em_dash); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); END_STATE(); - case 187: + case 163: ACCEPT_TOKEN(sym_em_dash); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 188: + case 164: ACCEPT_TOKEN(sym_en_dash); - if (lookahead == '-') ADVANCE(186); + if (lookahead == '-') ADVANCE(162); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); END_STATE(); - case 189: + case 165: ACCEPT_TOKEN(sym_en_dash); - if (lookahead == '-') ADVANCE(185); + if (lookahead == '-') ADVANCE(161); END_STATE(); - case 190: + case 166: ACCEPT_TOKEN(sym_en_dash); - if (lookahead == '-') ADVANCE(187); + if (lookahead == '-') ADVANCE(163); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 191: + case 167: ACCEPT_TOKEN(sym_backslash_escape); END_STATE(); - case 192: + case 168: ACCEPT_TOKEN(sym_backslash_escape); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 193: + case 169: ACCEPT_TOKEN(anon_sym_LT); END_STATE(); - case 194: + case 170: ACCEPT_TOKEN(anon_sym_LT); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 195: + case 171: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == '-') ADVANCE(190); - if (lookahead == '}') ADVANCE(234); + if (lookahead == '-') ADVANCE(166); + if (lookahead == '}') ADVANCE(210); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 196: + case 172: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == '-') ADVANCE(190); + if (lookahead == '-') ADVANCE(166); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 197: + case 173: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == '.') ADVANCE(184); + if (lookahead == '.') ADVANCE(160); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 198: + case 174: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == '.') ADVANCE(197); + if (lookahead == '.') ADVANCE(173); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 199: + case 175: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == ':') ADVANCE(221); - if (lookahead == '>') ADVANCE(117); + if (lookahead == ':') ADVANCE(197); + if (lookahead == '>') ADVANCE(103); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ') ADVANCE(199); + lookahead != ' ') ADVANCE(175); END_STATE(); - case 200: + case 176: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'D') ADVANCE(211); + if (lookahead == 'D') ADVANCE(187); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 201: + case 177: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'E') ADVANCE(307); + if (lookahead == 'E') ADVANCE(283); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 202: + case 178: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'E') ADVANCE(316); + if (lookahead == 'E') ADVANCE(292); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 203: + case 179: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'F') ADVANCE(210); + if (lookahead == 'F') ADVANCE(186); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 204: + case 180: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'I') ADVANCE(212); + if (lookahead == 'I') ADVANCE(188); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 205: + case 181: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'I') ADVANCE(214); + if (lookahead == 'I') ADVANCE(190); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 206: + case 182: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'M') ADVANCE(202); + if (lookahead == 'M') ADVANCE(178); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 207: + case 183: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'N') ADVANCE(203); + if (lookahead == 'N') ADVANCE(179); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 208: + case 184: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'O') ADVANCE(213); + if (lookahead == 'O') ADVANCE(189); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 209: + case 185: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'O') ADVANCE(200); + if (lookahead == 'O') ADVANCE(176); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 210: + case 186: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'O') ADVANCE(310); + if (lookahead == 'O') ADVANCE(286); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 211: + case 187: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'O') ADVANCE(301); + if (lookahead == 'O') ADVANCE(277); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 212: + case 188: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'P') ADVANCE(304); + if (lookahead == 'P') ADVANCE(280); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 213: + case 189: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'T') ADVANCE(201); + if (lookahead == 'T') ADVANCE(177); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 214: + case 190: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'X') ADVANCE(206); + if (lookahead == 'X') ADVANCE(182); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 215: + case 191: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'X') ADVANCE(313); + if (lookahead == 'X') ADVANCE(289); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 216: + case 192: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'X') ADVANCE(215); + if (lookahead == 'X') ADVANCE(191); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 217: + case 193: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == '[') ADVANCE(278); + if (lookahead == '[') ADVANCE(254); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 218: + case 194: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == '}') ADVANCE(182); + if (lookahead == '}') ADVANCE(158); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 219: + case 195: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == '}') ADVANCE(230); + if (lookahead == '}') ADVANCE(206); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 220: + case 196: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == '}') ADVANCE(226); + if (lookahead == '}') ADVANCE(202); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 221: + case 197: ACCEPT_TOKEN(aux_sym_autolink_token1); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 222: + case 198: ACCEPT_TOKEN(anon_sym_GT); END_STATE(); - case 223: + case 199: ACCEPT_TOKEN(anon_sym_LBRACE_EQ); END_STATE(); - case 224: + case 200: ACCEPT_TOKEN(anon_sym_LBRACE_EQ); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 225: + case 201: ACCEPT_TOKEN(anon_sym_EQ_RBRACE); END_STATE(); - case 226: + case 202: ACCEPT_TOKEN(anon_sym_EQ_RBRACE); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 227: + case 203: ACCEPT_TOKEN(anon_sym_LBRACE_PLUS); END_STATE(); - case 228: + case 204: ACCEPT_TOKEN(anon_sym_LBRACE_PLUS); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 229: + case 205: ACCEPT_TOKEN(anon_sym_PLUS_RBRACE); END_STATE(); - case 230: + case 206: ACCEPT_TOKEN(anon_sym_PLUS_RBRACE); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 231: + case 207: ACCEPT_TOKEN(anon_sym_LBRACE_DASH); END_STATE(); - case 232: + case 208: ACCEPT_TOKEN(anon_sym_LBRACE_DASH); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 233: + case 209: ACCEPT_TOKEN(anon_sym_DASH_RBRACE); END_STATE(); - case 234: + case 210: ACCEPT_TOKEN(anon_sym_DASH_RBRACE); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 235: + case 211: ACCEPT_TOKEN(sym_symbol); END_STATE(); - case 236: + case 212: ACCEPT_TOKEN(anon_sym_LBRACE_CARET); END_STATE(); - case 237: + case 213: ACCEPT_TOKEN(anon_sym_LBRACE_CARET); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 238: + case 214: ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); - case 239: + case 215: ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '}') ADVANCE(242); + if (lookahead == '}') ADVANCE(218); END_STATE(); - case 240: + case 216: ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '}') ADVANCE(243); + if (lookahead == '}') ADVANCE(219); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 241: + case 217: ACCEPT_TOKEN(anon_sym_CARET); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 242: + case 218: ACCEPT_TOKEN(anon_sym_CARET_RBRACE); END_STATE(); - case 243: + case 219: ACCEPT_TOKEN(anon_sym_CARET_RBRACE); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 244: + case 220: ACCEPT_TOKEN(anon_sym_LBRACE_TILDE); END_STATE(); - case 245: + case 221: ACCEPT_TOKEN(anon_sym_LBRACE_TILDE); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 246: + case 222: ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); - case 247: + case 223: ACCEPT_TOKEN(anon_sym_TILDE); - if (lookahead == '}') ADVANCE(250); + if (lookahead == '}') ADVANCE(226); END_STATE(); - case 248: + case 224: ACCEPT_TOKEN(anon_sym_TILDE); - if (lookahead == '}') ADVANCE(251); + if (lookahead == '}') ADVANCE(227); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 249: + case 225: ACCEPT_TOKEN(anon_sym_TILDE); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 250: + case 226: ACCEPT_TOKEN(anon_sym_TILDE_RBRACE); END_STATE(); - case 251: + case 227: ACCEPT_TOKEN(anon_sym_TILDE_RBRACE); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 252: + case 228: ACCEPT_TOKEN(anon_sym_LBRACK_CARET); END_STATE(); - case 253: + case 229: ACCEPT_TOKEN(anon_sym_LBRACK_CARET); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 254: + case 230: ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); - case 255: + case 231: ACCEPT_TOKEN(anon_sym_RBRACK); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 256: + case 232: ACCEPT_TOKEN(sym__id); - if (lookahead == '-') ADVANCE(188); - if (lookahead == '}') ADVANCE(233); + if (lookahead == '-') ADVANCE(164); + if (lookahead == '}') ADVANCE(209); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); END_STATE(); - case 257: + case 233: ACCEPT_TOKEN(sym__id); - if (lookahead == '-') ADVANCE(188); + if (lookahead == '-') ADVANCE(164); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); END_STATE(); - case 258: + case 234: ACCEPT_TOKEN(sym__id); - if (lookahead == 'D') ADVANCE(269); + if (lookahead == 'D') ADVANCE(245); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); END_STATE(); - case 259: + case 235: ACCEPT_TOKEN(sym__id); - if (lookahead == 'E') ADVANCE(306); + if (lookahead == 'E') ADVANCE(282); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); END_STATE(); - case 260: + case 236: ACCEPT_TOKEN(sym__id); - if (lookahead == 'E') ADVANCE(315); + if (lookahead == 'E') ADVANCE(291); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); END_STATE(); - case 261: + case 237: ACCEPT_TOKEN(sym__id); - if (lookahead == 'F') ADVANCE(268); + if (lookahead == 'F') ADVANCE(244); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); END_STATE(); - case 262: + case 238: ACCEPT_TOKEN(sym__id); - if (lookahead == 'I') ADVANCE(270); + if (lookahead == 'I') ADVANCE(246); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); END_STATE(); - case 263: + case 239: ACCEPT_TOKEN(sym__id); - if (lookahead == 'I') ADVANCE(272); + if (lookahead == 'I') ADVANCE(248); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); END_STATE(); - case 264: + case 240: ACCEPT_TOKEN(sym__id); - if (lookahead == 'M') ADVANCE(260); + if (lookahead == 'M') ADVANCE(236); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); END_STATE(); - case 265: + case 241: ACCEPT_TOKEN(sym__id); - if (lookahead == 'N') ADVANCE(261); + if (lookahead == 'N') ADVANCE(237); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); END_STATE(); - case 266: + case 242: ACCEPT_TOKEN(sym__id); - if (lookahead == 'O') ADVANCE(271); + if (lookahead == 'O') ADVANCE(247); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); END_STATE(); - case 267: + case 243: ACCEPT_TOKEN(sym__id); - if (lookahead == 'O') ADVANCE(258); + if (lookahead == 'O') ADVANCE(234); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); END_STATE(); - case 268: + case 244: ACCEPT_TOKEN(sym__id); - if (lookahead == 'O') ADVANCE(309); + if (lookahead == 'O') ADVANCE(285); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); END_STATE(); - case 269: + case 245: ACCEPT_TOKEN(sym__id); - if (lookahead == 'O') ADVANCE(300); + if (lookahead == 'O') ADVANCE(276); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); END_STATE(); - case 270: + case 246: ACCEPT_TOKEN(sym__id); - if (lookahead == 'P') ADVANCE(303); + if (lookahead == 'P') ADVANCE(279); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); END_STATE(); - case 271: + case 247: ACCEPT_TOKEN(sym__id); - if (lookahead == 'T') ADVANCE(259); + if (lookahead == 'T') ADVANCE(235); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); END_STATE(); - case 272: + case 248: ACCEPT_TOKEN(sym__id); - if (lookahead == 'X') ADVANCE(264); + if (lookahead == 'X') ADVANCE(240); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); END_STATE(); - case 273: + case 249: ACCEPT_TOKEN(sym__id); - if (lookahead == 'X') ADVANCE(312); + if (lookahead == 'X') ADVANCE(288); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); END_STATE(); - case 274: + case 250: ACCEPT_TOKEN(sym__id); - if (lookahead == 'X') ADVANCE(273); + if (lookahead == 'X') ADVANCE(249); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); END_STATE(); - case 275: + case 251: ACCEPT_TOKEN(sym__id); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); END_STATE(); - case 276: + case 252: ACCEPT_TOKEN(anon_sym_LBRACK_RBRACK); END_STATE(); - case 277: + case 253: ACCEPT_TOKEN(anon_sym_BANG_LBRACK); END_STATE(); - case 278: + case 254: ACCEPT_TOKEN(anon_sym_BANG_LBRACK); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 279: + case 255: ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); - case 280: + case 256: ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == ']') ADVANCE(276); + if (lookahead == ']') ADVANCE(252); END_STATE(); - case 281: + case 257: ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '^') ADVANCE(252); + if (lookahead == '^') ADVANCE(228); END_STATE(); - case 282: + case 258: ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '^') ADVANCE(253); + if (lookahead == '^') ADVANCE(229); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 283: + case 259: ACCEPT_TOKEN(anon_sym_RBRACK2); END_STATE(); - case 284: + case 260: ACCEPT_TOKEN(anon_sym_RBRACK2); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 285: + case 261: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 286: + case 262: ACCEPT_TOKEN(aux_sym_inline_link_destination_token1); - if (lookahead == '\r') ADVANCE(286); + if (lookahead == '\r') ADVANCE(262); if (lookahead != 0 && lookahead != '\n' && - lookahead != ')') ADVANCE(287); + lookahead != ')') ADVANCE(263); END_STATE(); - case 287: + case 263: ACCEPT_TOKEN(aux_sym_inline_link_destination_token1); if (lookahead != 0 && lookahead != '\n' && - lookahead != ')') ADVANCE(287); + lookahead != ')') ADVANCE(263); END_STATE(); - case 288: + case 264: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 289: + case 265: ACCEPT_TOKEN(anon_sym_LBRACE2); - if (lookahead == '*') ADVANCE(162); - if (lookahead == '+') ADVANCE(227); - if (lookahead == '-') ADVANCE(231); - if (lookahead == '=') ADVANCE(223); - if (lookahead == '^') ADVANCE(236); - if (lookahead == '_') ADVANCE(152); - if (lookahead == '~') ADVANCE(244); + if (lookahead == '*') ADVANCE(142); + if (lookahead == '+') ADVANCE(203); + if (lookahead == '-') ADVANCE(207); + if (lookahead == '=') ADVANCE(199); + if (lookahead == '^') ADVANCE(212); + if (lookahead == '_') ADVANCE(137); + if (lookahead == '~') ADVANCE(220); END_STATE(); - case 290: + case 266: ACCEPT_TOKEN(anon_sym_LBRACE2); if (lookahead == '"' || - lookahead == '\'') ADVANCE(181); - if (lookahead == '*') ADVANCE(162); - if (lookahead == '+') ADVANCE(227); - if (lookahead == '-') ADVANCE(231); - if (lookahead == '=') ADVANCE(223); - if (lookahead == '^') ADVANCE(236); - if (lookahead == '_') ADVANCE(152); - if (lookahead == '~') ADVANCE(244); + lookahead == '\'') ADVANCE(157); + if (lookahead == '*') ADVANCE(142); + if (lookahead == '+') ADVANCE(203); + if (lookahead == '-') ADVANCE(207); + if (lookahead == '=') ADVANCE(199); + if (lookahead == '^') ADVANCE(212); + if (lookahead == '_') ADVANCE(137); + if (lookahead == '~') ADVANCE(220); END_STATE(); - case 291: + case 267: ACCEPT_TOKEN(anon_sym_LBRACE2); if (lookahead == '"' || - lookahead == '\'') ADVANCE(182); - if (lookahead == '*') ADVANCE(163); - if (lookahead == '+') ADVANCE(228); - if (lookahead == '-') ADVANCE(232); - if (lookahead == '=') ADVANCE(224); - if (lookahead == '^') ADVANCE(237); - if (lookahead == '_') ADVANCE(153); - if (lookahead == '~') ADVANCE(245); + lookahead == '\'') ADVANCE(158); + if (lookahead == '*') ADVANCE(143); + if (lookahead == '+') ADVANCE(204); + if (lookahead == '-') ADVANCE(208); + if (lookahead == '=') ADVANCE(200); + if (lookahead == '^') ADVANCE(213); + if (lookahead == '_') ADVANCE(138); + if (lookahead == '~') ADVANCE(221); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 292: + case 268: ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); - case 293: + case 269: ACCEPT_TOKEN(aux_sym__comment_with_newline_token1); END_STATE(); - case 294: + case 270: ACCEPT_TOKEN(aux_sym__comment_with_newline_token1); - if (lookahead == '\r') ADVANCE(294); - if (lookahead == '\\') ADVANCE(295); + if (lookahead == '\r') ADVANCE(270); + if (lookahead == '\\') ADVANCE(271); if (lookahead != 0 && lookahead != '\n' && - lookahead != '%') ADVANCE(293); + lookahead != '%') ADVANCE(269); END_STATE(); - case 295: + case 271: ACCEPT_TOKEN(aux_sym__comment_with_newline_token1); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && - lookahead != '\\') ADVANCE(191); + lookahead != '\\') ADVANCE(167); END_STATE(); - case 296: + case 272: ACCEPT_TOKEN(anon_sym_LBRACE_EQ2); END_STATE(); - case 297: + case 273: ACCEPT_TOKEN(anon_sym_DOLLAR); END_STATE(); - case 298: + case 274: ACCEPT_TOKEN(anon_sym_DOLLAR); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 299: + case 275: ACCEPT_TOKEN(anon_sym_TODO); END_STATE(); - case 300: + case 276: ACCEPT_TOKEN(anon_sym_TODO); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); END_STATE(); - case 301: + case 277: ACCEPT_TOKEN(anon_sym_TODO); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 302: + case 278: ACCEPT_TOKEN(anon_sym_WIP); END_STATE(); - case 303: + case 279: ACCEPT_TOKEN(anon_sym_WIP); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); END_STATE(); - case 304: + case 280: ACCEPT_TOKEN(anon_sym_WIP); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 305: + case 281: ACCEPT_TOKEN(anon_sym_NOTE); END_STATE(); - case 306: + case 282: ACCEPT_TOKEN(anon_sym_NOTE); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); END_STATE(); - case 307: + case 283: ACCEPT_TOKEN(anon_sym_NOTE); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 308: + case 284: ACCEPT_TOKEN(anon_sym_INFO); END_STATE(); - case 309: + case 285: ACCEPT_TOKEN(anon_sym_INFO); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); END_STATE(); - case 310: + case 286: ACCEPT_TOKEN(anon_sym_INFO); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 311: + case 287: ACCEPT_TOKEN(anon_sym_XXX); END_STATE(); - case 312: + case 288: ACCEPT_TOKEN(anon_sym_XXX); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); END_STATE(); - case 313: + case 289: ACCEPT_TOKEN(anon_sym_XXX); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 314: + case 290: ACCEPT_TOKEN(sym_fixme); END_STATE(); - case 315: + case 291: ACCEPT_TOKEN(sym_fixme); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); END_STATE(); - case 316: + case 292: ACCEPT_TOKEN(sym_fixme); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 317: + case 293: ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); - case 318: + case 294: ACCEPT_TOKEN(anon_sym_PIPE); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(221); + lookahead != '>') ADVANCE(197); END_STATE(); - case 319: + case 295: ACCEPT_TOKEN(sym_language); - if (lookahead == '\r') ADVANCE(319); + if (lookahead == '\r') ADVANCE(295); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && lookahead != '=' && lookahead != '{' && - lookahead != '}') ADVANCE(320); + lookahead != '}') ADVANCE(296); END_STATE(); - case 320: + case 296: ACCEPT_TOKEN(sym_language); if (lookahead != 0 && lookahead != '\t' && @@ -7146,146 +6681,133 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ' && lookahead != '=' && lookahead != '{' && - lookahead != '}') ADVANCE(320); + lookahead != '}') ADVANCE(296); END_STATE(); - case 321: + case 297: ACCEPT_TOKEN(sym__whitespace); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(321); - END_STATE(); - case 322: - ACCEPT_TOKEN(sym__whitespace1); - if (lookahead == '\t') ADVANCE(325); - if (lookahead == ' ') ADVANCE(322); - if (lookahead == '*') ADVANCE(129); - if (lookahead == '_') ADVANCE(130); - END_STATE(); - case 323: - ACCEPT_TOKEN(sym__whitespace1); - if (lookahead == '\t') ADVANCE(325); - if (lookahead == ' ') ADVANCE(323); - if (lookahead == '_') ADVANCE(130); + lookahead == ' ') ADVANCE(297); END_STATE(); - case 324: + case 298: ACCEPT_TOKEN(sym__whitespace1); - if (lookahead == '\t') ADVANCE(325); - if (lookahead == ' ') ADVANCE(324); - if (lookahead == '*') ADVANCE(129); + if (lookahead == '\t') ADVANCE(299); + if (lookahead == ' ') ADVANCE(298); + if (lookahead == '*') ADVANCE(115); END_STATE(); - case 325: + case 299: ACCEPT_TOKEN(sym__whitespace1); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(325); + lookahead == ' ') ADVANCE(299); END_STATE(); - case 326: + case 300: ACCEPT_TOKEN(sym__newline); END_STATE(); - case 327: + case 301: ACCEPT_TOKEN(aux_sym__text_token1); END_STATE(); - case 328: + case 302: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == '-') ADVANCE(189); + if (lookahead == '-') ADVANCE(165); END_STATE(); - case 329: + case 303: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == '-') ADVANCE(189); - if (lookahead == '}') ADVANCE(233); + if (lookahead == '-') ADVANCE(165); + if (lookahead == '}') ADVANCE(209); END_STATE(); - case 330: + case 304: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == '.') ADVANCE(116); + if (lookahead == '.') ADVANCE(102); END_STATE(); - case 331: + case 305: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'I') ADVANCE(127); + if (lookahead == 'I') ADVANCE(113); END_STATE(); - case 332: + case 306: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'I') ADVANCE(125); + if (lookahead == 'I') ADVANCE(111); END_STATE(); - case 333: + case 307: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'N') ADVANCE(121); + if (lookahead == 'N') ADVANCE(107); END_STATE(); - case 334: + case 308: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'O') ADVANCE(126); + if (lookahead == 'O') ADVANCE(112); END_STATE(); - case 335: + case 309: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'O') ADVANCE(118); + if (lookahead == 'O') ADVANCE(104); END_STATE(); - case 336: + case 310: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'X') ADVANCE(128); + if (lookahead == 'X') ADVANCE(114); END_STATE(); - case 337: + case 311: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == '[') ADVANCE(277); + if (lookahead == '[') ADVANCE(253); END_STATE(); - case 338: + case 312: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == '}') ADVANCE(229); + if (lookahead == '}') ADVANCE(205); END_STATE(); - case 339: + case 313: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == '}') ADVANCE(225); + if (lookahead == '}') ADVANCE(201); END_STATE(); - case 340: + case 314: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == '}') ADVANCE(181); + if (lookahead == '}') ADVANCE(157); END_STATE(); - case 341: + case 315: ACCEPT_TOKEN(aux_sym__text_token1); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != ':') ADVANCE(117); + lookahead != ':') ADVANCE(103); END_STATE(); - case 342: + case 316: ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); - case 343: + case 317: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(116); + if (lookahead == '.') ADVANCE(102); END_STATE(); - case 344: + case 318: ACCEPT_TOKEN(sym_identifier); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '}') ADVANCE(344); + lookahead != '}') ADVANCE(318); END_STATE(); - case 345: + case 319: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 346: + case 320: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '}') ADVANCE(225); + if (lookahead == '}') ADVANCE(201); END_STATE(); - case 347: + case 321: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 348: + case 322: ACCEPT_TOKEN(aux_sym_value_token1); - if (lookahead == '\r') ADVANCE(348); + if (lookahead == '\r') ADVANCE(322); if (lookahead != 0 && lookahead != '\n' && - lookahead != '"') ADVANCE(349); + lookahead != '"') ADVANCE(323); END_STATE(); - case 349: + case 323: ACCEPT_TOKEN(aux_sym_value_token1); if (lookahead != 0 && lookahead != '\n' && - lookahead != '"') ADVANCE(349); + lookahead != '"') ADVANCE(323); END_STATE(); - case 350: + case 324: ACCEPT_TOKEN(aux_sym_value_token2); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(350); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(324); END_STATE(); default: return false; @@ -7294,472 +6816,472 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 134, .external_lex_state = 2}, - [2] = {.lex_state = 24, .external_lex_state = 2}, - [3] = {.lex_state = 139, .external_lex_state = 2}, - [4] = {.lex_state = 26, .external_lex_state = 2}, - [5] = {.lex_state = 67, .external_lex_state = 2}, - [6] = {.lex_state = 80, .external_lex_state = 2}, - [7] = {.lex_state = 1, .external_lex_state = 2}, - [8] = {.lex_state = 9, .external_lex_state = 2}, - [9] = {.lex_state = 29, .external_lex_state = 2}, - [10] = {.lex_state = 95, .external_lex_state = 2}, - [11] = {.lex_state = 139, .external_lex_state = 2}, - [12] = {.lex_state = 31, .external_lex_state = 2}, - [13] = {.lex_state = 71, .external_lex_state = 2}, - [14] = {.lex_state = 71, .external_lex_state = 2}, - [15] = {.lex_state = 136, .external_lex_state = 2}, - [16] = {.lex_state = 136, .external_lex_state = 2}, - [17] = {.lex_state = 136, .external_lex_state = 2}, - [18] = {.lex_state = 136, .external_lex_state = 2}, - [19] = {.lex_state = 136, .external_lex_state = 2}, - [20] = {.lex_state = 71, .external_lex_state = 2}, - [21] = {.lex_state = 136, .external_lex_state = 2}, - [22] = {.lex_state = 71, .external_lex_state = 2}, - [23] = {.lex_state = 71, .external_lex_state = 2}, - [24] = {.lex_state = 36, .external_lex_state = 2}, - [25] = {.lex_state = 36, .external_lex_state = 2}, - [26] = {.lex_state = 36, .external_lex_state = 2}, - [27] = {.lex_state = 36, .external_lex_state = 2}, - [28] = {.lex_state = 36, .external_lex_state = 2}, - [29] = {.lex_state = 36, .external_lex_state = 2}, - [30] = {.lex_state = 71, .external_lex_state = 2}, - [31] = {.lex_state = 87, .external_lex_state = 2}, - [32] = {.lex_state = 87, .external_lex_state = 2}, - [33] = {.lex_state = 87, .external_lex_state = 2}, - [34] = {.lex_state = 87, .external_lex_state = 2}, - [35] = {.lex_state = 87, .external_lex_state = 2}, - [36] = {.lex_state = 87, .external_lex_state = 2}, - [37] = {.lex_state = 139, .external_lex_state = 2}, - [38] = {.lex_state = 139, .external_lex_state = 2}, - [39] = {.lex_state = 139, .external_lex_state = 2}, - [40] = {.lex_state = 139, .external_lex_state = 2}, - [41] = {.lex_state = 40, .external_lex_state = 2}, - [42] = {.lex_state = 98, .external_lex_state = 2}, - [43] = {.lex_state = 40, .external_lex_state = 2}, - [44] = {.lex_state = 40, .external_lex_state = 2}, - [45] = {.lex_state = 40, .external_lex_state = 2}, - [46] = {.lex_state = 40, .external_lex_state = 2}, - [47] = {.lex_state = 40, .external_lex_state = 2}, - [48] = {.lex_state = 139, .external_lex_state = 2}, - [49] = {.lex_state = 139, .external_lex_state = 2}, - [50] = {.lex_state = 139, .external_lex_state = 2}, - [51] = {.lex_state = 3, .external_lex_state = 2}, + [1] = {.lex_state = 119, .external_lex_state = 2}, + [2] = {.lex_state = 17, .external_lex_state = 2}, + [3] = {.lex_state = 60, .external_lex_state = 2}, + [4] = {.lex_state = 124, .external_lex_state = 2}, + [5] = {.lex_state = 72, .external_lex_state = 2}, + [6] = {.lex_state = 19, .external_lex_state = 2}, + [7] = {.lex_state = 82, .external_lex_state = 2}, + [8] = {.lex_state = 124, .external_lex_state = 3}, + [9] = {.lex_state = 1, .external_lex_state = 2}, + [10] = {.lex_state = 22, .external_lex_state = 2}, + [11] = {.lex_state = 25, .external_lex_state = 2}, + [12] = {.lex_state = 124, .external_lex_state = 2}, + [13] = {.lex_state = 64, .external_lex_state = 2}, + [14] = {.lex_state = 75, .external_lex_state = 2}, + [15] = {.lex_state = 121, .external_lex_state = 2}, + [16] = {.lex_state = 121, .external_lex_state = 2}, + [17] = {.lex_state = 121, .external_lex_state = 2}, + [18] = {.lex_state = 121, .external_lex_state = 2}, + [19] = {.lex_state = 121, .external_lex_state = 2}, + [20] = {.lex_state = 75, .external_lex_state = 2}, + [21] = {.lex_state = 121, .external_lex_state = 2}, + [22] = {.lex_state = 75, .external_lex_state = 2}, + [23] = {.lex_state = 75, .external_lex_state = 2}, + [24] = {.lex_state = 75, .external_lex_state = 2}, + [25] = {.lex_state = 29, .external_lex_state = 2}, + [26] = {.lex_state = 29, .external_lex_state = 2}, + [27] = {.lex_state = 29, .external_lex_state = 2}, + [28] = {.lex_state = 29, .external_lex_state = 2}, + [29] = {.lex_state = 29, .external_lex_state = 2}, + [30] = {.lex_state = 29, .external_lex_state = 2}, + [31] = {.lex_state = 75, .external_lex_state = 2}, + [32] = {.lex_state = 25, .external_lex_state = 2}, + [33] = {.lex_state = 25, .external_lex_state = 2}, + [34] = {.lex_state = 25, .external_lex_state = 2}, + [35] = {.lex_state = 25, .external_lex_state = 2}, + [36] = {.lex_state = 25, .external_lex_state = 2}, + [37] = {.lex_state = 124, .external_lex_state = 2}, + [38] = {.lex_state = 124, .external_lex_state = 2}, + [39] = {.lex_state = 124, .external_lex_state = 2}, + [40] = {.lex_state = 124, .external_lex_state = 2}, + [41] = {.lex_state = 124, .external_lex_state = 2}, + [42] = {.lex_state = 64, .external_lex_state = 2}, + [43] = {.lex_state = 124, .external_lex_state = 2}, + [44] = {.lex_state = 33, .external_lex_state = 2}, + [45] = {.lex_state = 87, .external_lex_state = 2}, + [46] = {.lex_state = 33, .external_lex_state = 2}, + [47] = {.lex_state = 33, .external_lex_state = 2}, + [48] = {.lex_state = 33, .external_lex_state = 2}, + [49] = {.lex_state = 33, .external_lex_state = 2}, + [50] = {.lex_state = 124, .external_lex_state = 2}, + [51] = {.lex_state = 33, .external_lex_state = 2}, [52] = {.lex_state = 3, .external_lex_state = 2}, - [53] = {.lex_state = 31, .external_lex_state = 2}, - [54] = {.lex_state = 3, .external_lex_state = 2}, - [55] = {.lex_state = 98, .external_lex_state = 2}, - [56] = {.lex_state = 11, .external_lex_state = 2}, - [57] = {.lex_state = 11, .external_lex_state = 2}, - [58] = {.lex_state = 11, .external_lex_state = 2}, - [59] = {.lex_state = 11, .external_lex_state = 2}, - [60] = {.lex_state = 11, .external_lex_state = 2}, - [61] = {.lex_state = 98, .external_lex_state = 2}, - [62] = {.lex_state = 98, .external_lex_state = 2}, + [53] = {.lex_state = 3, .external_lex_state = 2}, + [54] = {.lex_state = 87, .external_lex_state = 2}, + [55] = {.lex_state = 3, .external_lex_state = 2}, + [56] = {.lex_state = 121, .external_lex_state = 3}, + [57] = {.lex_state = 121, .external_lex_state = 3}, + [58] = {.lex_state = 121, .external_lex_state = 3}, + [59] = {.lex_state = 121, .external_lex_state = 3}, + [60] = {.lex_state = 121, .external_lex_state = 3}, + [61] = {.lex_state = 64, .external_lex_state = 2}, + [62] = {.lex_state = 64, .external_lex_state = 2}, [63] = {.lex_state = 3, .external_lex_state = 2}, [64] = {.lex_state = 3, .external_lex_state = 2}, - [65] = {.lex_state = 11, .external_lex_state = 2}, - [66] = {.lex_state = 98, .external_lex_state = 2}, - [67] = {.lex_state = 31, .external_lex_state = 2}, - [68] = {.lex_state = 98, .external_lex_state = 2}, + [65] = {.lex_state = 121, .external_lex_state = 3}, + [66] = {.lex_state = 64, .external_lex_state = 2}, + [67] = {.lex_state = 87, .external_lex_state = 2}, + [68] = {.lex_state = 64, .external_lex_state = 2}, [69] = {.lex_state = 3, .external_lex_state = 2}, - [70] = {.lex_state = 31, .external_lex_state = 2}, - [71] = {.lex_state = 31, .external_lex_state = 2}, - [72] = {.lex_state = 31, .external_lex_state = 2}, - [73] = {.lex_state = 136, .external_lex_state = 2}, - [74] = {.lex_state = 136, .external_lex_state = 2}, - [75] = {.lex_state = 136, .external_lex_state = 2}, - [76] = {.lex_state = 136, .external_lex_state = 2}, - [77] = {.lex_state = 136, .external_lex_state = 2}, - [78] = {.lex_state = 136, .external_lex_state = 2}, - [79] = {.lex_state = 69, .external_lex_state = 2}, - [80] = {.lex_state = 134, .external_lex_state = 2}, - [81] = {.lex_state = 34, .external_lex_state = 2}, - [82] = {.lex_state = 134, .external_lex_state = 2}, - [83] = {.lex_state = 96, .external_lex_state = 2}, - [84] = {.lex_state = 30, .external_lex_state = 2}, - [85] = {.lex_state = 134, .external_lex_state = 2}, - [86] = {.lex_state = 134, .external_lex_state = 2}, - [87] = {.lex_state = 34, .external_lex_state = 2}, - [88] = {.lex_state = 134, .external_lex_state = 2}, - [89] = {.lex_state = 134, .external_lex_state = 2}, - [90] = {.lex_state = 134, .external_lex_state = 2}, - [91] = {.lex_state = 134, .external_lex_state = 2}, - [92] = {.lex_state = 134, .external_lex_state = 2}, - [93] = {.lex_state = 134, .external_lex_state = 2}, - [94] = {.lex_state = 30, .external_lex_state = 2}, - [95] = {.lex_state = 38, .external_lex_state = 2}, - [96] = {.lex_state = 134, .external_lex_state = 2}, - [97] = {.lex_state = 134, .external_lex_state = 2}, - [98] = {.lex_state = 134, .external_lex_state = 2}, - [99] = {.lex_state = 134, .external_lex_state = 2}, - [100] = {.lex_state = 134, .external_lex_state = 2}, - [101] = {.lex_state = 134, .external_lex_state = 2}, - [102] = {.lex_state = 134, .external_lex_state = 2}, - [103] = {.lex_state = 69, .external_lex_state = 2}, + [70] = {.lex_state = 87, .external_lex_state = 2}, + [71] = {.lex_state = 87, .external_lex_state = 2}, + [72] = {.lex_state = 87, .external_lex_state = 2}, + [73] = {.lex_state = 121, .external_lex_state = 2}, + [74] = {.lex_state = 121, .external_lex_state = 2}, + [75] = {.lex_state = 121, .external_lex_state = 2}, + [76] = {.lex_state = 121, .external_lex_state = 2}, + [77] = {.lex_state = 121, .external_lex_state = 2}, + [78] = {.lex_state = 121, .external_lex_state = 2}, + [79] = {.lex_state = 119, .external_lex_state = 2}, + [80] = {.lex_state = 119, .external_lex_state = 2}, + [81] = {.lex_state = 23, .external_lex_state = 2}, + [82] = {.lex_state = 119, .external_lex_state = 2}, + [83] = {.lex_state = 119, .external_lex_state = 2}, + [84] = {.lex_state = 119, .external_lex_state = 2}, + [85] = {.lex_state = 119, .external_lex_state = 2}, + [86] = {.lex_state = 62, .external_lex_state = 2}, + [87] = {.lex_state = 27, .external_lex_state = 2}, + [88] = {.lex_state = 62, .external_lex_state = 2}, + [89] = {.lex_state = 119, .external_lex_state = 2}, + [90] = {.lex_state = 119, .external_lex_state = 2}, + [91] = {.lex_state = 27, .external_lex_state = 2}, + [92] = {.lex_state = 119, .external_lex_state = 2}, + [93] = {.lex_state = 119, .external_lex_state = 2}, + [94] = {.lex_state = 119, .external_lex_state = 2}, + [95] = {.lex_state = 86, .external_lex_state = 2}, + [96] = {.lex_state = 119, .external_lex_state = 2}, + [97] = {.lex_state = 119, .external_lex_state = 2}, + [98] = {.lex_state = 119, .external_lex_state = 2}, + [99] = {.lex_state = 119, .external_lex_state = 2}, + [100] = {.lex_state = 119, .external_lex_state = 2}, + [101] = {.lex_state = 119, .external_lex_state = 2}, + [102] = {.lex_state = 73, .external_lex_state = 2}, + [103] = {.lex_state = 73, .external_lex_state = 2}, [104] = {.lex_state = 2, .external_lex_state = 2}, - [105] = {.lex_state = 96, .external_lex_state = 2}, - [106] = {.lex_state = 134, .external_lex_state = 2}, - [107] = {.lex_state = 134, .external_lex_state = 2}, - [108] = {.lex_state = 134, .external_lex_state = 2}, - [109] = {.lex_state = 134, .external_lex_state = 2}, - [110] = {.lex_state = 134, .external_lex_state = 2}, - [111] = {.lex_state = 134, .external_lex_state = 2}, - [112] = {.lex_state = 134, .external_lex_state = 2}, - [113] = {.lex_state = 134, .external_lex_state = 2}, - [114] = {.lex_state = 134, .external_lex_state = 2}, - [115] = {.lex_state = 38, .external_lex_state = 2}, - [116] = {.lex_state = 81, .external_lex_state = 2}, - [117] = {.lex_state = 85, .external_lex_state = 2}, - [118] = {.lex_state = 81, .external_lex_state = 2}, - [119] = {.lex_state = 85, .external_lex_state = 2}, - [120] = {.lex_state = 134, .external_lex_state = 2}, - [121] = {.lex_state = 134, .external_lex_state = 2}, - [122] = {.lex_state = 134, .external_lex_state = 2}, - [123] = {.lex_state = 134, .external_lex_state = 2}, - [124] = {.lex_state = 134, .external_lex_state = 2}, - [125] = {.lex_state = 134, .external_lex_state = 2}, - [126] = {.lex_state = 2, .external_lex_state = 2}, - [127] = {.lex_state = 134, .external_lex_state = 2}, - [128] = {.lex_state = 134, .external_lex_state = 2}, - [129] = {.lex_state = 134, .external_lex_state = 2}, - [130] = {.lex_state = 134, .external_lex_state = 2}, - [131] = {.lex_state = 134, .external_lex_state = 2}, - [132] = {.lex_state = 5, .external_lex_state = 2}, - [133] = {.lex_state = 6, .external_lex_state = 2}, - [134] = {.lex_state = 7, .external_lex_state = 2}, - [135] = {.lex_state = 32, .external_lex_state = 2}, - [136] = {.lex_state = 132, .external_lex_state = 2}, - [137] = {.lex_state = 98, .external_lex_state = 2}, - [138] = {.lex_state = 16, .external_lex_state = 2}, - [139] = {.lex_state = 47, .external_lex_state = 2}, - [140] = {.lex_state = 49, .external_lex_state = 2}, - [141] = {.lex_state = 40, .external_lex_state = 2}, - [142] = {.lex_state = 99, .external_lex_state = 2}, - [143] = {.lex_state = 37, .external_lex_state = 2}, - [144] = {.lex_state = 15, .external_lex_state = 2}, - [145] = {.lex_state = 137, .external_lex_state = 2}, - [146] = {.lex_state = 88, .external_lex_state = 2}, - [147] = {.lex_state = 31, .external_lex_state = 2}, - [148] = {.lex_state = 50, .external_lex_state = 2}, - [149] = {.lex_state = 139, .external_lex_state = 2}, - [150] = {.lex_state = 76, .external_lex_state = 2}, - [151] = {.lex_state = 17, .external_lex_state = 2}, - [152] = {.lex_state = 41, .external_lex_state = 2}, - [153] = {.lex_state = 87, .external_lex_state = 2}, - [154] = {.lex_state = 83, .external_lex_state = 2}, - [155] = {.lex_state = 36, .external_lex_state = 2}, - [156] = {.lex_state = 91, .external_lex_state = 2}, - [157] = {.lex_state = 18, .external_lex_state = 2}, - [158] = {.lex_state = 142, .external_lex_state = 2}, - [159] = {.lex_state = 19, .external_lex_state = 2}, - [160] = {.lex_state = 12, .external_lex_state = 2}, - [161] = {.lex_state = 3, .external_lex_state = 2}, - [162] = {.lex_state = 53, .external_lex_state = 2}, - [163] = {.lex_state = 11, .external_lex_state = 2}, - [164] = {.lex_state = 21, .external_lex_state = 2}, - [165] = {.lex_state = 13, .external_lex_state = 2}, - [166] = {.lex_state = 72, .external_lex_state = 2}, - [167] = {.lex_state = 22, .external_lex_state = 2}, - [168] = {.lex_state = 102, .external_lex_state = 2}, - [169] = {.lex_state = 4, .external_lex_state = 2}, - [170] = {.lex_state = 71, .external_lex_state = 2}, - [171] = {.lex_state = 136, .external_lex_state = 2}, - [172] = {.lex_state = 71, .external_lex_state = 2}, - [173] = {.lex_state = 36, .external_lex_state = 3}, - [174] = {.lex_state = 40, .external_lex_state = 3}, - [175] = {.lex_state = 71, .external_lex_state = 2}, - [176] = {.lex_state = 36, .external_lex_state = 2}, - [177] = {.lex_state = 54, .external_lex_state = 2}, - [178] = {.lex_state = 3, .external_lex_state = 2}, - [179] = {.lex_state = 11, .external_lex_state = 2}, - [180] = {.lex_state = 8, .external_lex_state = 2}, - [181] = {.lex_state = 87, .external_lex_state = 3}, - [182] = {.lex_state = 87, .external_lex_state = 2}, - [183] = {.lex_state = 57, .external_lex_state = 2}, - [184] = {.lex_state = 11, .external_lex_state = 2}, - [185] = {.lex_state = 142, .external_lex_state = 2}, - [186] = {.lex_state = 31, .external_lex_state = 3}, - [187] = {.lex_state = 14, .external_lex_state = 2}, - [188] = {.lex_state = 31, .external_lex_state = 2}, - [189] = {.lex_state = 3, .external_lex_state = 2}, - [190] = {.lex_state = 3, .external_lex_state = 3}, - [191] = {.lex_state = 78, .external_lex_state = 2}, - [192] = {.lex_state = 11, .external_lex_state = 3}, - [193] = {.lex_state = 143, .external_lex_state = 2}, - [194] = {.lex_state = 92, .external_lex_state = 2}, - [195] = {.lex_state = 139, .external_lex_state = 2}, - [196] = {.lex_state = 71, .external_lex_state = 3}, - [197] = {.lex_state = 136, .external_lex_state = 2}, - [198] = {.lex_state = 40, .external_lex_state = 2}, - [199] = {.lex_state = 87, .external_lex_state = 2}, - [200] = {.lex_state = 132, .external_lex_state = 2}, - [201] = {.lex_state = 31, .external_lex_state = 2}, - [202] = {.lex_state = 36, .external_lex_state = 2}, - [203] = {.lex_state = 139, .external_lex_state = 3}, - [204] = {.lex_state = 139, .external_lex_state = 2}, - [205] = {.lex_state = 59, .external_lex_state = 2}, - [206] = {.lex_state = 98, .external_lex_state = 2}, - [207] = {.lex_state = 136, .external_lex_state = 2}, - [208] = {.lex_state = 98, .external_lex_state = 3}, - [209] = {.lex_state = 137, .external_lex_state = 2}, - [210] = {.lex_state = 136, .external_lex_state = 2}, - [211] = {.lex_state = 98, .external_lex_state = 2}, - [212] = {.lex_state = 103, .external_lex_state = 2}, - [213] = {.lex_state = 61, .external_lex_state = 2}, - [214] = {.lex_state = 136, .external_lex_state = 3}, - [215] = {.lex_state = 40, .external_lex_state = 2}, - [216] = {.lex_state = 11, .external_lex_state = 2}, - [217] = {.lex_state = 31, .external_lex_state = 2}, - [218] = {.lex_state = 36, .external_lex_state = 2}, - [219] = {.lex_state = 36, .external_lex_state = 2}, - [220] = {.lex_state = 36, .external_lex_state = 2}, - [221] = {.lex_state = 36, .external_lex_state = 2}, - [222] = {.lex_state = 36, .external_lex_state = 2}, - [223] = {.lex_state = 136, .external_lex_state = 2}, - [224] = {.lex_state = 36, .external_lex_state = 2}, - [225] = {.lex_state = 36, .external_lex_state = 2}, - [226] = {.lex_state = 36, .external_lex_state = 2}, - [227] = {.lex_state = 36, .external_lex_state = 2}, - [228] = {.lex_state = 36, .external_lex_state = 2}, - [229] = {.lex_state = 36, .external_lex_state = 2}, - [230] = {.lex_state = 36, .external_lex_state = 2}, - [231] = {.lex_state = 36, .external_lex_state = 2}, - [232] = {.lex_state = 36, .external_lex_state = 2}, - [233] = {.lex_state = 36, .external_lex_state = 2}, - [234] = {.lex_state = 136, .external_lex_state = 2}, - [235] = {.lex_state = 36, .external_lex_state = 2}, - [236] = {.lex_state = 36, .external_lex_state = 2}, - [237] = {.lex_state = 36, .external_lex_state = 2}, - [238] = {.lex_state = 36, .external_lex_state = 2}, - [239] = {.lex_state = 36, .external_lex_state = 2}, - [240] = {.lex_state = 36, .external_lex_state = 2}, - [241] = {.lex_state = 36, .external_lex_state = 2}, - [242] = {.lex_state = 98, .external_lex_state = 2}, - [243] = {.lex_state = 98, .external_lex_state = 2}, - [244] = {.lex_state = 98, .external_lex_state = 2}, - [245] = {.lex_state = 98, .external_lex_state = 2}, - [246] = {.lex_state = 96, .external_lex_state = 2}, - [247] = {.lex_state = 98, .external_lex_state = 2}, - [248] = {.lex_state = 98, .external_lex_state = 2}, - [249] = {.lex_state = 136, .external_lex_state = 2}, - [250] = {.lex_state = 98, .external_lex_state = 2}, - [251] = {.lex_state = 98, .external_lex_state = 2}, - [252] = {.lex_state = 98, .external_lex_state = 2}, - [253] = {.lex_state = 98, .external_lex_state = 2}, - [254] = {.lex_state = 98, .external_lex_state = 2}, - [255] = {.lex_state = 98, .external_lex_state = 2}, - [256] = {.lex_state = 98, .external_lex_state = 2}, - [257] = {.lex_state = 98, .external_lex_state = 2}, - [258] = {.lex_state = 136, .external_lex_state = 2}, - [259] = {.lex_state = 98, .external_lex_state = 2}, - [260] = {.lex_state = 98, .external_lex_state = 2}, - [261] = {.lex_state = 98, .external_lex_state = 2}, - [262] = {.lex_state = 98, .external_lex_state = 2}, - [263] = {.lex_state = 98, .external_lex_state = 2}, - [264] = {.lex_state = 98, .external_lex_state = 2}, - [265] = {.lex_state = 98, .external_lex_state = 2}, - [266] = {.lex_state = 98, .external_lex_state = 2}, - [267] = {.lex_state = 98, .external_lex_state = 2}, - [268] = {.lex_state = 98, .external_lex_state = 2}, - [269] = {.lex_state = 134, .external_lex_state = 2}, - [270] = {.lex_state = 98, .external_lex_state = 2}, - [271] = {.lex_state = 98, .external_lex_state = 2}, - [272] = {.lex_state = 98, .external_lex_state = 2}, - [273] = {.lex_state = 98, .external_lex_state = 2}, - [274] = {.lex_state = 98, .external_lex_state = 2}, - [275] = {.lex_state = 98, .external_lex_state = 2}, - [276] = {.lex_state = 98, .external_lex_state = 2}, - [277] = {.lex_state = 40, .external_lex_state = 2}, - [278] = {.lex_state = 36, .external_lex_state = 2}, - [279] = {.lex_state = 71, .external_lex_state = 2}, - [280] = {.lex_state = 36, .external_lex_state = 2}, - [281] = {.lex_state = 136, .external_lex_state = 2}, - [282] = {.lex_state = 36, .external_lex_state = 2}, - [283] = {.lex_state = 36, .external_lex_state = 2}, - [284] = {.lex_state = 34, .external_lex_state = 2}, - [285] = {.lex_state = 36, .external_lex_state = 2}, - [286] = {.lex_state = 36, .external_lex_state = 2}, - [287] = {.lex_state = 36, .external_lex_state = 2}, - [288] = {.lex_state = 36, .external_lex_state = 2}, - [289] = {.lex_state = 40, .external_lex_state = 2}, - [290] = {.lex_state = 71, .external_lex_state = 2}, - [291] = {.lex_state = 71, .external_lex_state = 2}, - [292] = {.lex_state = 71, .external_lex_state = 2}, - [293] = {.lex_state = 69, .external_lex_state = 2}, - [294] = {.lex_state = 40, .external_lex_state = 2}, - [295] = {.lex_state = 40, .external_lex_state = 2}, - [296] = {.lex_state = 71, .external_lex_state = 2}, - [297] = {.lex_state = 71, .external_lex_state = 2}, - [298] = {.lex_state = 20, .external_lex_state = 2}, - [299] = {.lex_state = 71, .external_lex_state = 2}, - [300] = {.lex_state = 71, .external_lex_state = 2}, - [301] = {.lex_state = 71, .external_lex_state = 2}, - [302] = {.lex_state = 71, .external_lex_state = 2}, - [303] = {.lex_state = 71, .external_lex_state = 2}, - [304] = {.lex_state = 71, .external_lex_state = 2}, - [305] = {.lex_state = 71, .external_lex_state = 2}, - [306] = {.lex_state = 40, .external_lex_state = 2}, - [307] = {.lex_state = 40, .external_lex_state = 2}, - [308] = {.lex_state = 40, .external_lex_state = 2}, - [309] = {.lex_state = 71, .external_lex_state = 2}, - [310] = {.lex_state = 136, .external_lex_state = 2}, - [311] = {.lex_state = 71, .external_lex_state = 2}, - [312] = {.lex_state = 71, .external_lex_state = 2}, - [313] = {.lex_state = 71, .external_lex_state = 2}, - [314] = {.lex_state = 71, .external_lex_state = 2}, - [315] = {.lex_state = 71, .external_lex_state = 2}, - [316] = {.lex_state = 71, .external_lex_state = 2}, - [317] = {.lex_state = 71, .external_lex_state = 2}, - [318] = {.lex_state = 71, .external_lex_state = 2}, - [319] = {.lex_state = 71, .external_lex_state = 2}, - [320] = {.lex_state = 71, .external_lex_state = 2}, - [321] = {.lex_state = 31, .external_lex_state = 2}, - [322] = {.lex_state = 71, .external_lex_state = 2}, - [323] = {.lex_state = 71, .external_lex_state = 2}, - [324] = {.lex_state = 71, .external_lex_state = 2}, - [325] = {.lex_state = 71, .external_lex_state = 2}, - [326] = {.lex_state = 71, .external_lex_state = 2}, - [327] = {.lex_state = 71, .external_lex_state = 2}, - [328] = {.lex_state = 71, .external_lex_state = 2}, - [329] = {.lex_state = 40, .external_lex_state = 2}, - [330] = {.lex_state = 31, .external_lex_state = 2}, + [105] = {.lex_state = 119, .external_lex_state = 2}, + [106] = {.lex_state = 2, .external_lex_state = 2}, + [107] = {.lex_state = 119, .external_lex_state = 2}, + [108] = {.lex_state = 119, .external_lex_state = 2}, + [109] = {.lex_state = 119, .external_lex_state = 2}, + [110] = {.lex_state = 119, .external_lex_state = 2}, + [111] = {.lex_state = 119, .external_lex_state = 2}, + [112] = {.lex_state = 119, .external_lex_state = 2}, + [113] = {.lex_state = 119, .external_lex_state = 2}, + [114] = {.lex_state = 23, .external_lex_state = 2}, + [115] = {.lex_state = 31, .external_lex_state = 2}, + [116] = {.lex_state = 83, .external_lex_state = 2}, + [117] = {.lex_state = 86, .external_lex_state = 2}, + [118] = {.lex_state = 83, .external_lex_state = 2}, + [119] = {.lex_state = 119, .external_lex_state = 2}, + [120] = {.lex_state = 119, .external_lex_state = 2}, + [121] = {.lex_state = 119, .external_lex_state = 2}, + [122] = {.lex_state = 119, .external_lex_state = 2}, + [123] = {.lex_state = 31, .external_lex_state = 2}, + [124] = {.lex_state = 119, .external_lex_state = 2}, + [125] = {.lex_state = 119, .external_lex_state = 2}, + [126] = {.lex_state = 119, .external_lex_state = 2}, + [127] = {.lex_state = 119, .external_lex_state = 2}, + [128] = {.lex_state = 119, .external_lex_state = 2}, + [129] = {.lex_state = 119, .external_lex_state = 2}, + [130] = {.lex_state = 119, .external_lex_state = 2}, + [131] = {.lex_state = 119, .external_lex_state = 2}, + [132] = {.lex_state = 34, .external_lex_state = 2}, + [133] = {.lex_state = 117, .external_lex_state = 3}, + [134] = {.lex_state = 37, .external_lex_state = 2}, + [135] = {.lex_state = 10, .external_lex_state = 2}, + [136] = {.lex_state = 33, .external_lex_state = 2}, + [137] = {.lex_state = 87, .external_lex_state = 2}, + [138] = {.lex_state = 65, .external_lex_state = 2}, + [139] = {.lex_state = 124, .external_lex_state = 2}, + [140] = {.lex_state = 5, .external_lex_state = 2}, + [141] = {.lex_state = 30, .external_lex_state = 2}, + [142] = {.lex_state = 39, .external_lex_state = 2}, + [143] = {.lex_state = 11, .external_lex_state = 2}, + [144] = {.lex_state = 9, .external_lex_state = 2}, + [145] = {.lex_state = 127, .external_lex_state = 2}, + [146] = {.lex_state = 122, .external_lex_state = 3}, + [147] = {.lex_state = 12, .external_lex_state = 2}, + [148] = {.lex_state = 29, .external_lex_state = 2}, + [149] = {.lex_state = 85, .external_lex_state = 2}, + [150] = {.lex_state = 64, .external_lex_state = 2}, + [151] = {.lex_state = 26, .external_lex_state = 2}, + [152] = {.lex_state = 88, .external_lex_state = 2}, + [153] = {.lex_state = 25, .external_lex_state = 2}, + [154] = {.lex_state = 14, .external_lex_state = 2}, + [155] = {.lex_state = 68, .external_lex_state = 2}, + [156] = {.lex_state = 79, .external_lex_state = 2}, + [157] = {.lex_state = 122, .external_lex_state = 2}, + [158] = {.lex_state = 92, .external_lex_state = 2}, + [159] = {.lex_state = 6, .external_lex_state = 2}, + [160] = {.lex_state = 3, .external_lex_state = 2}, + [161] = {.lex_state = 121, .external_lex_state = 3}, + [162] = {.lex_state = 43, .external_lex_state = 2}, + [163] = {.lex_state = 117, .external_lex_state = 2}, + [164] = {.lex_state = 15, .external_lex_state = 2}, + [165] = {.lex_state = 127, .external_lex_state = 3}, + [166] = {.lex_state = 76, .external_lex_state = 2}, + [167] = {.lex_state = 4, .external_lex_state = 2}, + [168] = {.lex_state = 121, .external_lex_state = 2}, + [169] = {.lex_state = 7, .external_lex_state = 2}, + [170] = {.lex_state = 75, .external_lex_state = 2}, + [171] = {.lex_state = 46, .external_lex_state = 2}, + [172] = {.lex_state = 25, .external_lex_state = 2}, + [173] = {.lex_state = 47, .external_lex_state = 2}, + [174] = {.lex_state = 29, .external_lex_state = 2}, + [175] = {.lex_state = 49, .external_lex_state = 2}, + [176] = {.lex_state = 121, .external_lex_state = 3}, + [177] = {.lex_state = 121, .external_lex_state = 4}, + [178] = {.lex_state = 128, .external_lex_state = 3}, + [179] = {.lex_state = 75, .external_lex_state = 2}, + [180] = {.lex_state = 25, .external_lex_state = 5}, + [181] = {.lex_state = 25, .external_lex_state = 2}, + [182] = {.lex_state = 69, .external_lex_state = 2}, + [183] = {.lex_state = 3, .external_lex_state = 2}, + [184] = {.lex_state = 121, .external_lex_state = 3}, + [185] = {.lex_state = 8, .external_lex_state = 2}, + [186] = {.lex_state = 3, .external_lex_state = 2}, + [187] = {.lex_state = 3, .external_lex_state = 5}, + [188] = {.lex_state = 29, .external_lex_state = 5}, + [189] = {.lex_state = 87, .external_lex_state = 5}, + [190] = {.lex_state = 124, .external_lex_state = 2}, + [191] = {.lex_state = 87, .external_lex_state = 2}, + [192] = {.lex_state = 121, .external_lex_state = 2}, + [193] = {.lex_state = 122, .external_lex_state = 2}, + [194] = {.lex_state = 75, .external_lex_state = 2}, + [195] = {.lex_state = 124, .external_lex_state = 5}, + [196] = {.lex_state = 75, .external_lex_state = 5}, + [197] = {.lex_state = 128, .external_lex_state = 2}, + [198] = {.lex_state = 121, .external_lex_state = 2}, + [199] = {.lex_state = 80, .external_lex_state = 2}, + [200] = {.lex_state = 29, .external_lex_state = 2}, + [201] = {.lex_state = 124, .external_lex_state = 2}, + [202] = {.lex_state = 52, .external_lex_state = 2}, + [203] = {.lex_state = 33, .external_lex_state = 5}, + [204] = {.lex_state = 64, .external_lex_state = 2}, + [205] = {.lex_state = 33, .external_lex_state = 2}, + [206] = {.lex_state = 64, .external_lex_state = 5}, + [207] = {.lex_state = 54, .external_lex_state = 2}, + [208] = {.lex_state = 127, .external_lex_state = 2}, + [209] = {.lex_state = 64, .external_lex_state = 2}, + [210] = {.lex_state = 93, .external_lex_state = 2}, + [211] = {.lex_state = 87, .external_lex_state = 2}, + [212] = {.lex_state = 33, .external_lex_state = 2}, + [213] = {.lex_state = 117, .external_lex_state = 2}, + [214] = {.lex_state = 121, .external_lex_state = 5}, + [215] = {.lex_state = 121, .external_lex_state = 2}, + [216] = {.lex_state = 121, .external_lex_state = 3}, + [217] = {.lex_state = 121, .external_lex_state = 5}, + [218] = {.lex_state = 29, .external_lex_state = 2}, + [219] = {.lex_state = 29, .external_lex_state = 2}, + [220] = {.lex_state = 29, .external_lex_state = 2}, + [221] = {.lex_state = 121, .external_lex_state = 2}, + [222] = {.lex_state = 29, .external_lex_state = 2}, + [223] = {.lex_state = 29, .external_lex_state = 2}, + [224] = {.lex_state = 29, .external_lex_state = 2}, + [225] = {.lex_state = 29, .external_lex_state = 2}, + [226] = {.lex_state = 29, .external_lex_state = 2}, + [227] = {.lex_state = 29, .external_lex_state = 2}, + [228] = {.lex_state = 29, .external_lex_state = 2}, + [229] = {.lex_state = 29, .external_lex_state = 2}, + [230] = {.lex_state = 29, .external_lex_state = 2}, + [231] = {.lex_state = 29, .external_lex_state = 2}, + [232] = {.lex_state = 121, .external_lex_state = 2}, + [233] = {.lex_state = 29, .external_lex_state = 2}, + [234] = {.lex_state = 29, .external_lex_state = 2}, + [235] = {.lex_state = 29, .external_lex_state = 2}, + [236] = {.lex_state = 29, .external_lex_state = 2}, + [237] = {.lex_state = 29, .external_lex_state = 2}, + [238] = {.lex_state = 29, .external_lex_state = 2}, + [239] = {.lex_state = 29, .external_lex_state = 2}, + [240] = {.lex_state = 64, .external_lex_state = 2}, + [241] = {.lex_state = 64, .external_lex_state = 2}, + [242] = {.lex_state = 64, .external_lex_state = 2}, + [243] = {.lex_state = 64, .external_lex_state = 2}, + [244] = {.lex_state = 62, .external_lex_state = 2}, + [245] = {.lex_state = 64, .external_lex_state = 2}, + [246] = {.lex_state = 64, .external_lex_state = 2}, + [247] = {.lex_state = 121, .external_lex_state = 2}, + [248] = {.lex_state = 64, .external_lex_state = 2}, + [249] = {.lex_state = 64, .external_lex_state = 2}, + [250] = {.lex_state = 64, .external_lex_state = 2}, + [251] = {.lex_state = 64, .external_lex_state = 2}, + [252] = {.lex_state = 64, .external_lex_state = 2}, + [253] = {.lex_state = 64, .external_lex_state = 2}, + [254] = {.lex_state = 64, .external_lex_state = 2}, + [255] = {.lex_state = 64, .external_lex_state = 2}, + [256] = {.lex_state = 121, .external_lex_state = 2}, + [257] = {.lex_state = 64, .external_lex_state = 2}, + [258] = {.lex_state = 64, .external_lex_state = 2}, + [259] = {.lex_state = 64, .external_lex_state = 2}, + [260] = {.lex_state = 64, .external_lex_state = 2}, + [261] = {.lex_state = 64, .external_lex_state = 2}, + [262] = {.lex_state = 64, .external_lex_state = 2}, + [263] = {.lex_state = 64, .external_lex_state = 2}, + [264] = {.lex_state = 64, .external_lex_state = 2}, + [265] = {.lex_state = 64, .external_lex_state = 2}, + [266] = {.lex_state = 64, .external_lex_state = 2}, + [267] = {.lex_state = 119, .external_lex_state = 2}, + [268] = {.lex_state = 64, .external_lex_state = 2}, + [269] = {.lex_state = 64, .external_lex_state = 2}, + [270] = {.lex_state = 64, .external_lex_state = 2}, + [271] = {.lex_state = 64, .external_lex_state = 2}, + [272] = {.lex_state = 64, .external_lex_state = 2}, + [273] = {.lex_state = 64, .external_lex_state = 2}, + [274] = {.lex_state = 64, .external_lex_state = 2}, + [275] = {.lex_state = 33, .external_lex_state = 2}, + [276] = {.lex_state = 29, .external_lex_state = 2}, + [277] = {.lex_state = 75, .external_lex_state = 2}, + [278] = {.lex_state = 29, .external_lex_state = 2}, + [279] = {.lex_state = 29, .external_lex_state = 2}, + [280] = {.lex_state = 29, .external_lex_state = 2}, + [281] = {.lex_state = 121, .external_lex_state = 2}, + [282] = {.lex_state = 29, .external_lex_state = 2}, + [283] = {.lex_state = 29, .external_lex_state = 2}, + [284] = {.lex_state = 27, .external_lex_state = 2}, + [285] = {.lex_state = 29, .external_lex_state = 2}, + [286] = {.lex_state = 29, .external_lex_state = 2}, + [287] = {.lex_state = 29, .external_lex_state = 2}, + [288] = {.lex_state = 75, .external_lex_state = 2}, + [289] = {.lex_state = 75, .external_lex_state = 2}, + [290] = {.lex_state = 75, .external_lex_state = 2}, + [291] = {.lex_state = 73, .external_lex_state = 2}, + [292] = {.lex_state = 29, .external_lex_state = 2}, + [293] = {.lex_state = 33, .external_lex_state = 2}, + [294] = {.lex_state = 75, .external_lex_state = 2}, + [295] = {.lex_state = 75, .external_lex_state = 2}, + [296] = {.lex_state = 13, .external_lex_state = 2}, + [297] = {.lex_state = 75, .external_lex_state = 2}, + [298] = {.lex_state = 75, .external_lex_state = 2}, + [299] = {.lex_state = 75, .external_lex_state = 2}, + [300] = {.lex_state = 75, .external_lex_state = 2}, + [301] = {.lex_state = 75, .external_lex_state = 2}, + [302] = {.lex_state = 75, .external_lex_state = 2}, + [303] = {.lex_state = 75, .external_lex_state = 2}, + [304] = {.lex_state = 33, .external_lex_state = 2}, + [305] = {.lex_state = 33, .external_lex_state = 2}, + [306] = {.lex_state = 33, .external_lex_state = 2}, + [307] = {.lex_state = 75, .external_lex_state = 2}, + [308] = {.lex_state = 121, .external_lex_state = 2}, + [309] = {.lex_state = 75, .external_lex_state = 2}, + [310] = {.lex_state = 75, .external_lex_state = 2}, + [311] = {.lex_state = 75, .external_lex_state = 2}, + [312] = {.lex_state = 75, .external_lex_state = 2}, + [313] = {.lex_state = 75, .external_lex_state = 2}, + [314] = {.lex_state = 75, .external_lex_state = 2}, + [315] = {.lex_state = 75, .external_lex_state = 2}, + [316] = {.lex_state = 75, .external_lex_state = 2}, + [317] = {.lex_state = 75, .external_lex_state = 2}, + [318] = {.lex_state = 75, .external_lex_state = 2}, + [319] = {.lex_state = 87, .external_lex_state = 2}, + [320] = {.lex_state = 75, .external_lex_state = 2}, + [321] = {.lex_state = 75, .external_lex_state = 2}, + [322] = {.lex_state = 75, .external_lex_state = 2}, + [323] = {.lex_state = 75, .external_lex_state = 2}, + [324] = {.lex_state = 75, .external_lex_state = 2}, + [325] = {.lex_state = 75, .external_lex_state = 2}, + [326] = {.lex_state = 75, .external_lex_state = 2}, + [327] = {.lex_state = 33, .external_lex_state = 2}, + [328] = {.lex_state = 33, .external_lex_state = 2}, + [329] = {.lex_state = 25, .external_lex_state = 2}, + [330] = {.lex_state = 33, .external_lex_state = 2}, [331] = {.lex_state = 87, .external_lex_state = 2}, - [332] = {.lex_state = 40, .external_lex_state = 2}, - [333] = {.lex_state = 40, .external_lex_state = 2}, - [334] = {.lex_state = 40, .external_lex_state = 2}, - [335] = {.lex_state = 40, .external_lex_state = 2}, - [336] = {.lex_state = 40, .external_lex_state = 2}, - [337] = {.lex_state = 40, .external_lex_state = 2}, - [338] = {.lex_state = 40, .external_lex_state = 2}, - [339] = {.lex_state = 40, .external_lex_state = 2}, - [340] = {.lex_state = 40, .external_lex_state = 2}, - [341] = {.lex_state = 40, .external_lex_state = 2}, - [342] = {.lex_state = 87, .external_lex_state = 2}, - [343] = {.lex_state = 87, .external_lex_state = 2}, - [344] = {.lex_state = 87, .external_lex_state = 2}, - [345] = {.lex_state = 85, .external_lex_state = 2}, - [346] = {.lex_state = 11, .external_lex_state = 2}, - [347] = {.lex_state = 40, .external_lex_state = 2}, - [348] = {.lex_state = 87, .external_lex_state = 2}, - [349] = {.lex_state = 87, .external_lex_state = 2}, - [350] = {.lex_state = 11, .external_lex_state = 2}, - [351] = {.lex_state = 87, .external_lex_state = 2}, - [352] = {.lex_state = 87, .external_lex_state = 2}, - [353] = {.lex_state = 87, .external_lex_state = 2}, - [354] = {.lex_state = 87, .external_lex_state = 2}, - [355] = {.lex_state = 87, .external_lex_state = 2}, - [356] = {.lex_state = 87, .external_lex_state = 2}, - [357] = {.lex_state = 87, .external_lex_state = 2}, - [358] = {.lex_state = 40, .external_lex_state = 2}, - [359] = {.lex_state = 40, .external_lex_state = 2}, - [360] = {.lex_state = 40, .external_lex_state = 2}, - [361] = {.lex_state = 87, .external_lex_state = 2}, - [362] = {.lex_state = 3, .external_lex_state = 2}, - [363] = {.lex_state = 87, .external_lex_state = 2}, - [364] = {.lex_state = 87, .external_lex_state = 2}, - [365] = {.lex_state = 87, .external_lex_state = 2}, - [366] = {.lex_state = 87, .external_lex_state = 2}, - [367] = {.lex_state = 87, .external_lex_state = 2}, - [368] = {.lex_state = 87, .external_lex_state = 2}, - [369] = {.lex_state = 87, .external_lex_state = 2}, - [370] = {.lex_state = 87, .external_lex_state = 2}, - [371] = {.lex_state = 87, .external_lex_state = 2}, - [372] = {.lex_state = 87, .external_lex_state = 2}, - [373] = {.lex_state = 3, .external_lex_state = 2}, - [374] = {.lex_state = 87, .external_lex_state = 2}, - [375] = {.lex_state = 87, .external_lex_state = 2}, - [376] = {.lex_state = 87, .external_lex_state = 2}, - [377] = {.lex_state = 87, .external_lex_state = 2}, - [378] = {.lex_state = 87, .external_lex_state = 2}, - [379] = {.lex_state = 87, .external_lex_state = 2}, - [380] = {.lex_state = 87, .external_lex_state = 2}, - [381] = {.lex_state = 40, .external_lex_state = 2}, - [382] = {.lex_state = 40, .external_lex_state = 2}, - [383] = {.lex_state = 139, .external_lex_state = 2}, - [384] = {.lex_state = 40, .external_lex_state = 2}, - [385] = {.lex_state = 40, .external_lex_state = 2}, - [386] = {.lex_state = 139, .external_lex_state = 2}, - [387] = {.lex_state = 40, .external_lex_state = 2}, - [388] = {.lex_state = 40, .external_lex_state = 2}, - [389] = {.lex_state = 38, .external_lex_state = 2}, - [390] = {.lex_state = 40, .external_lex_state = 2}, - [391] = {.lex_state = 40, .external_lex_state = 2}, - [392] = {.lex_state = 139, .external_lex_state = 2}, - [393] = {.lex_state = 40, .external_lex_state = 2}, - [394] = {.lex_state = 139, .external_lex_state = 2}, - [395] = {.lex_state = 139, .external_lex_state = 2}, - [396] = {.lex_state = 139, .external_lex_state = 2}, - [397] = {.lex_state = 81, .external_lex_state = 2}, - [398] = {.lex_state = 87, .external_lex_state = 2}, - [399] = {.lex_state = 87, .external_lex_state = 2}, - [400] = {.lex_state = 139, .external_lex_state = 2}, - [401] = {.lex_state = 139, .external_lex_state = 2}, - [402] = {.lex_state = 71, .external_lex_state = 2}, - [403] = {.lex_state = 139, .external_lex_state = 2}, - [404] = {.lex_state = 139, .external_lex_state = 2}, - [405] = {.lex_state = 139, .external_lex_state = 2}, - [406] = {.lex_state = 139, .external_lex_state = 2}, - [407] = {.lex_state = 139, .external_lex_state = 2}, - [408] = {.lex_state = 139, .external_lex_state = 2}, - [409] = {.lex_state = 139, .external_lex_state = 2}, - [410] = {.lex_state = 71, .external_lex_state = 2}, - [411] = {.lex_state = 98, .external_lex_state = 2}, - [412] = {.lex_state = 136, .external_lex_state = 2}, - [413] = {.lex_state = 139, .external_lex_state = 2}, - [414] = {.lex_state = 98, .external_lex_state = 2}, - [415] = {.lex_state = 139, .external_lex_state = 2}, - [416] = {.lex_state = 139, .external_lex_state = 2}, - [417] = {.lex_state = 139, .external_lex_state = 2}, - [418] = {.lex_state = 139, .external_lex_state = 2}, - [419] = {.lex_state = 139, .external_lex_state = 2}, - [420] = {.lex_state = 139, .external_lex_state = 2}, - [421] = {.lex_state = 139, .external_lex_state = 2}, - [422] = {.lex_state = 139, .external_lex_state = 2}, - [423] = {.lex_state = 139, .external_lex_state = 2}, - [424] = {.lex_state = 139, .external_lex_state = 2}, - [425] = {.lex_state = 36, .external_lex_state = 2}, - [426] = {.lex_state = 139, .external_lex_state = 2}, - [427] = {.lex_state = 139, .external_lex_state = 2}, - [428] = {.lex_state = 139, .external_lex_state = 2}, - [429] = {.lex_state = 139, .external_lex_state = 2}, - [430] = {.lex_state = 139, .external_lex_state = 2}, - [431] = {.lex_state = 139, .external_lex_state = 2}, - [432] = {.lex_state = 139, .external_lex_state = 2}, - [433] = {.lex_state = 136, .external_lex_state = 2}, - [434] = {.lex_state = 36, .external_lex_state = 2}, - [435] = {.lex_state = 3, .external_lex_state = 2}, - [436] = {.lex_state = 40, .external_lex_state = 2}, - [437] = {.lex_state = 40, .external_lex_state = 2}, - [438] = {.lex_state = 36, .external_lex_state = 2}, - [439] = {.lex_state = 136, .external_lex_state = 2}, - [440] = {.lex_state = 136, .external_lex_state = 2}, - [441] = {.lex_state = 136, .external_lex_state = 2}, - [442] = {.lex_state = 136, .external_lex_state = 2}, - [443] = {.lex_state = 136, .external_lex_state = 2}, - [444] = {.lex_state = 136, .external_lex_state = 2}, - [445] = {.lex_state = 136, .external_lex_state = 2}, + [332] = {.lex_state = 33, .external_lex_state = 2}, + [333] = {.lex_state = 33, .external_lex_state = 2}, + [334] = {.lex_state = 33, .external_lex_state = 2}, + [335] = {.lex_state = 33, .external_lex_state = 2}, + [336] = {.lex_state = 33, .external_lex_state = 2}, + [337] = {.lex_state = 33, .external_lex_state = 2}, + [338] = {.lex_state = 33, .external_lex_state = 2}, + [339] = {.lex_state = 33, .external_lex_state = 2}, + [340] = {.lex_state = 25, .external_lex_state = 2}, + [341] = {.lex_state = 25, .external_lex_state = 2}, + [342] = {.lex_state = 25, .external_lex_state = 2}, + [343] = {.lex_state = 23, .external_lex_state = 2}, + [344] = {.lex_state = 33, .external_lex_state = 2}, + [345] = {.lex_state = 33, .external_lex_state = 2}, + [346] = {.lex_state = 25, .external_lex_state = 2}, + [347] = {.lex_state = 25, .external_lex_state = 2}, + [348] = {.lex_state = 121, .external_lex_state = 3}, + [349] = {.lex_state = 25, .external_lex_state = 2}, + [350] = {.lex_state = 25, .external_lex_state = 2}, + [351] = {.lex_state = 25, .external_lex_state = 2}, + [352] = {.lex_state = 25, .external_lex_state = 2}, + [353] = {.lex_state = 25, .external_lex_state = 2}, + [354] = {.lex_state = 25, .external_lex_state = 2}, + [355] = {.lex_state = 25, .external_lex_state = 2}, + [356] = {.lex_state = 121, .external_lex_state = 3}, + [357] = {.lex_state = 33, .external_lex_state = 2}, + [358] = {.lex_state = 33, .external_lex_state = 2}, + [359] = {.lex_state = 25, .external_lex_state = 2}, + [360] = {.lex_state = 3, .external_lex_state = 2}, + [361] = {.lex_state = 25, .external_lex_state = 2}, + [362] = {.lex_state = 25, .external_lex_state = 2}, + [363] = {.lex_state = 25, .external_lex_state = 2}, + [364] = {.lex_state = 25, .external_lex_state = 2}, + [365] = {.lex_state = 25, .external_lex_state = 2}, + [366] = {.lex_state = 25, .external_lex_state = 2}, + [367] = {.lex_state = 25, .external_lex_state = 2}, + [368] = {.lex_state = 25, .external_lex_state = 2}, + [369] = {.lex_state = 25, .external_lex_state = 2}, + [370] = {.lex_state = 25, .external_lex_state = 2}, + [371] = {.lex_state = 3, .external_lex_state = 2}, + [372] = {.lex_state = 25, .external_lex_state = 2}, + [373] = {.lex_state = 25, .external_lex_state = 2}, + [374] = {.lex_state = 25, .external_lex_state = 2}, + [375] = {.lex_state = 25, .external_lex_state = 2}, + [376] = {.lex_state = 25, .external_lex_state = 2}, + [377] = {.lex_state = 25, .external_lex_state = 2}, + [378] = {.lex_state = 25, .external_lex_state = 2}, + [379] = {.lex_state = 33, .external_lex_state = 2}, + [380] = {.lex_state = 33, .external_lex_state = 2}, + [381] = {.lex_state = 124, .external_lex_state = 2}, + [382] = {.lex_state = 33, .external_lex_state = 2}, + [383] = {.lex_state = 33, .external_lex_state = 2}, + [384] = {.lex_state = 33, .external_lex_state = 2}, + [385] = {.lex_state = 33, .external_lex_state = 2}, + [386] = {.lex_state = 124, .external_lex_state = 2}, + [387] = {.lex_state = 33, .external_lex_state = 2}, + [388] = {.lex_state = 33, .external_lex_state = 2}, + [389] = {.lex_state = 31, .external_lex_state = 2}, + [390] = {.lex_state = 33, .external_lex_state = 2}, + [391] = {.lex_state = 33, .external_lex_state = 2}, + [392] = {.lex_state = 124, .external_lex_state = 2}, + [393] = {.lex_state = 124, .external_lex_state = 2}, + [394] = {.lex_state = 124, .external_lex_state = 2}, + [395] = {.lex_state = 83, .external_lex_state = 2}, + [396] = {.lex_state = 124, .external_lex_state = 2}, + [397] = {.lex_state = 33, .external_lex_state = 2}, + [398] = {.lex_state = 124, .external_lex_state = 2}, + [399] = {.lex_state = 124, .external_lex_state = 2}, + [400] = {.lex_state = 25, .external_lex_state = 2}, + [401] = {.lex_state = 124, .external_lex_state = 2}, + [402] = {.lex_state = 124, .external_lex_state = 2}, + [403] = {.lex_state = 124, .external_lex_state = 2}, + [404] = {.lex_state = 124, .external_lex_state = 2}, + [405] = {.lex_state = 124, .external_lex_state = 2}, + [406] = {.lex_state = 124, .external_lex_state = 2}, + [407] = {.lex_state = 124, .external_lex_state = 2}, + [408] = {.lex_state = 25, .external_lex_state = 2}, + [409] = {.lex_state = 75, .external_lex_state = 2}, + [410] = {.lex_state = 75, .external_lex_state = 2}, + [411] = {.lex_state = 124, .external_lex_state = 2}, + [412] = {.lex_state = 64, .external_lex_state = 2}, + [413] = {.lex_state = 124, .external_lex_state = 2}, + [414] = {.lex_state = 124, .external_lex_state = 2}, + [415] = {.lex_state = 124, .external_lex_state = 2}, + [416] = {.lex_state = 124, .external_lex_state = 2}, + [417] = {.lex_state = 124, .external_lex_state = 2}, + [418] = {.lex_state = 124, .external_lex_state = 2}, + [419] = {.lex_state = 124, .external_lex_state = 2}, + [420] = {.lex_state = 124, .external_lex_state = 2}, + [421] = {.lex_state = 124, .external_lex_state = 2}, + [422] = {.lex_state = 124, .external_lex_state = 2}, + [423] = {.lex_state = 64, .external_lex_state = 2}, + [424] = {.lex_state = 124, .external_lex_state = 2}, + [425] = {.lex_state = 124, .external_lex_state = 2}, + [426] = {.lex_state = 124, .external_lex_state = 2}, + [427] = {.lex_state = 124, .external_lex_state = 2}, + [428] = {.lex_state = 124, .external_lex_state = 2}, + [429] = {.lex_state = 124, .external_lex_state = 2}, + [430] = {.lex_state = 124, .external_lex_state = 2}, + [431] = {.lex_state = 29, .external_lex_state = 2}, + [432] = {.lex_state = 121, .external_lex_state = 2}, + [433] = {.lex_state = 3, .external_lex_state = 2}, + [434] = {.lex_state = 29, .external_lex_state = 2}, + [435] = {.lex_state = 33, .external_lex_state = 2}, + [436] = {.lex_state = 33, .external_lex_state = 2}, + [437] = {.lex_state = 121, .external_lex_state = 2}, + [438] = {.lex_state = 29, .external_lex_state = 2}, + [439] = {.lex_state = 121, .external_lex_state = 2}, + [440] = {.lex_state = 121, .external_lex_state = 2}, + [441] = {.lex_state = 121, .external_lex_state = 2}, + [442] = {.lex_state = 121, .external_lex_state = 2}, + [443] = {.lex_state = 121, .external_lex_state = 2}, + [444] = {.lex_state = 3, .external_lex_state = 2}, + [445] = {.lex_state = 3, .external_lex_state = 2}, [446] = {.lex_state = 3, .external_lex_state = 2}, - [447] = {.lex_state = 3, .external_lex_state = 2}, - [448] = {.lex_state = 3, .external_lex_state = 2}, - [449] = {.lex_state = 2, .external_lex_state = 2}, - [450] = {.lex_state = 136, .external_lex_state = 2}, - [451] = {.lex_state = 136, .external_lex_state = 2}, - [452] = {.lex_state = 3, .external_lex_state = 2}, + [447] = {.lex_state = 2, .external_lex_state = 2}, + [448] = {.lex_state = 121, .external_lex_state = 2}, + [449] = {.lex_state = 121, .external_lex_state = 2}, + [450] = {.lex_state = 3, .external_lex_state = 2}, + [451] = {.lex_state = 3, .external_lex_state = 2}, + [452] = {.lex_state = 121, .external_lex_state = 2}, [453] = {.lex_state = 3, .external_lex_state = 2}, - [454] = {.lex_state = 136, .external_lex_state = 2}, + [454] = {.lex_state = 3, .external_lex_state = 2}, [455] = {.lex_state = 3, .external_lex_state = 2}, [456] = {.lex_state = 3, .external_lex_state = 2}, [457] = {.lex_state = 3, .external_lex_state = 2}, [458] = {.lex_state = 3, .external_lex_state = 2}, [459] = {.lex_state = 3, .external_lex_state = 2}, - [460] = {.lex_state = 3, .external_lex_state = 2}, - [461] = {.lex_state = 3, .external_lex_state = 2}, - [462] = {.lex_state = 136, .external_lex_state = 2}, - [463] = {.lex_state = 136, .external_lex_state = 2}, - [464] = {.lex_state = 143, .external_lex_state = 2}, + [460] = {.lex_state = 121, .external_lex_state = 2}, + [461] = {.lex_state = 121, .external_lex_state = 2}, + [462] = {.lex_state = 121, .external_lex_state = 2}, + [463] = {.lex_state = 3, .external_lex_state = 2}, + [464] = {.lex_state = 121, .external_lex_state = 2}, [465] = {.lex_state = 3, .external_lex_state = 2}, - [466] = {.lex_state = 136, .external_lex_state = 2}, + [466] = {.lex_state = 3, .external_lex_state = 2}, [467] = {.lex_state = 3, .external_lex_state = 2}, [468] = {.lex_state = 3, .external_lex_state = 2}, [469] = {.lex_state = 3, .external_lex_state = 2}, @@ -7768,553 +7290,541 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [472] = {.lex_state = 3, .external_lex_state = 2}, [473] = {.lex_state = 3, .external_lex_state = 2}, [474] = {.lex_state = 3, .external_lex_state = 2}, - [475] = {.lex_state = 3, .external_lex_state = 2}, + [475] = {.lex_state = 128, .external_lex_state = 2}, [476] = {.lex_state = 3, .external_lex_state = 2}, - [477] = {.lex_state = 136, .external_lex_state = 2}, + [477] = {.lex_state = 3, .external_lex_state = 2}, [478] = {.lex_state = 3, .external_lex_state = 2}, [479] = {.lex_state = 3, .external_lex_state = 2}, [480] = {.lex_state = 3, .external_lex_state = 2}, [481] = {.lex_state = 3, .external_lex_state = 2}, [482] = {.lex_state = 3, .external_lex_state = 2}, - [483] = {.lex_state = 3, .external_lex_state = 2}, - [484] = {.lex_state = 3, .external_lex_state = 2}, - [485] = {.lex_state = 136, .external_lex_state = 3}, - [486] = {.lex_state = 31, .external_lex_state = 2}, - [487] = {.lex_state = 11, .external_lex_state = 2}, - [488] = {.lex_state = 31, .external_lex_state = 2}, - [489] = {.lex_state = 31, .external_lex_state = 2}, - [490] = {.lex_state = 31, .external_lex_state = 2}, - [491] = {.lex_state = 136, .external_lex_state = 2}, - [492] = {.lex_state = 31, .external_lex_state = 2}, - [493] = {.lex_state = 31, .external_lex_state = 2}, - [494] = {.lex_state = 31, .external_lex_state = 2}, - [495] = {.lex_state = 136, .external_lex_state = 2}, - [496] = {.lex_state = 136, .external_lex_state = 2}, - [497] = {.lex_state = 31, .external_lex_state = 2}, - [498] = {.lex_state = 11, .external_lex_state = 2}, - [499] = {.lex_state = 11, .external_lex_state = 2}, - [500] = {.lex_state = 11, .external_lex_state = 2}, - [501] = {.lex_state = 11, .external_lex_state = 2}, - [502] = {.lex_state = 11, .external_lex_state = 2}, - [503] = {.lex_state = 11, .external_lex_state = 2}, - [504] = {.lex_state = 11, .external_lex_state = 2}, - [505] = {.lex_state = 11, .external_lex_state = 2}, - [506] = {.lex_state = 11, .external_lex_state = 2}, - [507] = {.lex_state = 11, .external_lex_state = 2}, - [508] = {.lex_state = 11, .external_lex_state = 2}, - [509] = {.lex_state = 136, .external_lex_state = 2}, - [510] = {.lex_state = 11, .external_lex_state = 2}, - [511] = {.lex_state = 136, .external_lex_state = 2}, - [512] = {.lex_state = 11, .external_lex_state = 2}, - [513] = {.lex_state = 11, .external_lex_state = 2}, - [514] = {.lex_state = 11, .external_lex_state = 2}, - [515] = {.lex_state = 11, .external_lex_state = 2}, - [516] = {.lex_state = 11, .external_lex_state = 2}, - [517] = {.lex_state = 11, .external_lex_state = 2}, - [518] = {.lex_state = 11, .external_lex_state = 2}, - [519] = {.lex_state = 11, .external_lex_state = 2}, - [520] = {.lex_state = 11, .external_lex_state = 2}, - [521] = {.lex_state = 11, .external_lex_state = 2}, - [522] = {.lex_state = 136, .external_lex_state = 2}, - [523] = {.lex_state = 11, .external_lex_state = 2}, - [524] = {.lex_state = 11, .external_lex_state = 2}, - [525] = {.lex_state = 11, .external_lex_state = 2}, - [526] = {.lex_state = 11, .external_lex_state = 2}, - [527] = {.lex_state = 11, .external_lex_state = 2}, - [528] = {.lex_state = 11, .external_lex_state = 2}, - [529] = {.lex_state = 11, .external_lex_state = 2}, - [530] = {.lex_state = 136, .external_lex_state = 2}, - [531] = {.lex_state = 136, .external_lex_state = 2}, - [532] = {.lex_state = 31, .external_lex_state = 2}, - [533] = {.lex_state = 136, .external_lex_state = 2}, - [534] = {.lex_state = 136, .external_lex_state = 2}, - [535] = {.lex_state = 136, .external_lex_state = 2}, - [536] = {.lex_state = 136, .external_lex_state = 2}, - [537] = {.lex_state = 31, .external_lex_state = 2}, - [538] = {.lex_state = 31, .external_lex_state = 2}, - [539] = {.lex_state = 31, .external_lex_state = 2}, - [540] = {.lex_state = 30, .external_lex_state = 2}, - [541] = {.lex_state = 31, .external_lex_state = 2}, - [542] = {.lex_state = 31, .external_lex_state = 2}, - [543] = {.lex_state = 31, .external_lex_state = 2}, - [544] = {.lex_state = 31, .external_lex_state = 2}, - [545] = {.lex_state = 31, .external_lex_state = 2}, - [546] = {.lex_state = 31, .external_lex_state = 2}, - [547] = {.lex_state = 31, .external_lex_state = 2}, - [548] = {.lex_state = 31, .external_lex_state = 2}, - [549] = {.lex_state = 31, .external_lex_state = 2}, - [550] = {.lex_state = 20, .external_lex_state = 2}, - [551] = {.lex_state = 136, .external_lex_state = 2}, - [552] = {.lex_state = 31, .external_lex_state = 2}, - [553] = {.lex_state = 31, .external_lex_state = 2}, - [554] = {.lex_state = 31, .external_lex_state = 2}, - [555] = {.lex_state = 31, .external_lex_state = 2}, - [556] = {.lex_state = 31, .external_lex_state = 2}, - [557] = {.lex_state = 31, .external_lex_state = 2}, - [558] = {.lex_state = 31, .external_lex_state = 2}, - [559] = {.lex_state = 31, .external_lex_state = 2}, - [560] = {.lex_state = 31, .external_lex_state = 2}, - [561] = {.lex_state = 136, .external_lex_state = 2}, - [562] = {.lex_state = 81, .external_lex_state = 2}, - [563] = {.lex_state = 134, .external_lex_state = 2}, - [564] = {.lex_state = 134, .external_lex_state = 2}, - [565] = {.lex_state = 134, .external_lex_state = 2}, - [566] = {.lex_state = 34, .external_lex_state = 2}, - [567] = {.lex_state = 96, .external_lex_state = 2}, - [568] = {.lex_state = 10, .external_lex_state = 2}, - [569] = {.lex_state = 10, .external_lex_state = 2}, - [570] = {.lex_state = 96, .external_lex_state = 2}, - [571] = {.lex_state = 96, .external_lex_state = 2}, - [572] = {.lex_state = 134, .external_lex_state = 2}, - [573] = {.lex_state = 34, .external_lex_state = 2}, - [574] = {.lex_state = 30, .external_lex_state = 2}, - [575] = {.lex_state = 69, .external_lex_state = 2}, - [576] = {.lex_state = 136, .external_lex_state = 2}, - [577] = {.lex_state = 34, .external_lex_state = 2}, - [578] = {.lex_state = 136, .external_lex_state = 2}, - [579] = {.lex_state = 134, .external_lex_state = 2}, - [580] = {.lex_state = 10, .external_lex_state = 2}, - [581] = {.lex_state = 10, .external_lex_state = 2}, - [582] = {.lex_state = 38, .external_lex_state = 2}, - [583] = {.lex_state = 38, .external_lex_state = 2}, - [584] = {.lex_state = 85, .external_lex_state = 2}, - [585] = {.lex_state = 69, .external_lex_state = 2}, - [586] = {.lex_state = 85, .external_lex_state = 2}, - [587] = {.lex_state = 38, .external_lex_state = 2}, - [588] = {.lex_state = 81, .external_lex_state = 2}, - [589] = {.lex_state = 81, .external_lex_state = 2}, - [590] = {.lex_state = 136, .external_lex_state = 2}, + [483] = {.lex_state = 121, .external_lex_state = 2}, + [484] = {.lex_state = 121, .external_lex_state = 2}, + [485] = {.lex_state = 121, .external_lex_state = 3}, + [486] = {.lex_state = 121, .external_lex_state = 2}, + [487] = {.lex_state = 121, .external_lex_state = 2}, + [488] = {.lex_state = 121, .external_lex_state = 2}, + [489] = {.lex_state = 121, .external_lex_state = 3}, + [490] = {.lex_state = 121, .external_lex_state = 3}, + [491] = {.lex_state = 121, .external_lex_state = 3}, + [492] = {.lex_state = 121, .external_lex_state = 3}, + [493] = {.lex_state = 121, .external_lex_state = 3}, + [494] = {.lex_state = 121, .external_lex_state = 3}, + [495] = {.lex_state = 121, .external_lex_state = 3}, + [496] = {.lex_state = 121, .external_lex_state = 3}, + [497] = {.lex_state = 121, .external_lex_state = 3}, + [498] = {.lex_state = 121, .external_lex_state = 3}, + [499] = {.lex_state = 121, .external_lex_state = 3}, + [500] = {.lex_state = 121, .external_lex_state = 2}, + [501] = {.lex_state = 121, .external_lex_state = 3}, + [502] = {.lex_state = 121, .external_lex_state = 2}, + [503] = {.lex_state = 121, .external_lex_state = 3}, + [504] = {.lex_state = 121, .external_lex_state = 3}, + [505] = {.lex_state = 121, .external_lex_state = 3}, + [506] = {.lex_state = 121, .external_lex_state = 3}, + [507] = {.lex_state = 121, .external_lex_state = 3}, + [508] = {.lex_state = 121, .external_lex_state = 3}, + [509] = {.lex_state = 121, .external_lex_state = 3}, + [510] = {.lex_state = 121, .external_lex_state = 3}, + [511] = {.lex_state = 121, .external_lex_state = 3}, + [512] = {.lex_state = 121, .external_lex_state = 3}, + [513] = {.lex_state = 121, .external_lex_state = 2}, + [514] = {.lex_state = 121, .external_lex_state = 3}, + [515] = {.lex_state = 121, .external_lex_state = 3}, + [516] = {.lex_state = 121, .external_lex_state = 3}, + [517] = {.lex_state = 121, .external_lex_state = 3}, + [518] = {.lex_state = 121, .external_lex_state = 3}, + [519] = {.lex_state = 121, .external_lex_state = 3}, + [520] = {.lex_state = 121, .external_lex_state = 3}, + [521] = {.lex_state = 121, .external_lex_state = 2}, + [522] = {.lex_state = 121, .external_lex_state = 2}, + [523] = {.lex_state = 87, .external_lex_state = 2}, + [524] = {.lex_state = 121, .external_lex_state = 2}, + [525] = {.lex_state = 121, .external_lex_state = 2}, + [526] = {.lex_state = 121, .external_lex_state = 2}, + [527] = {.lex_state = 121, .external_lex_state = 2}, + [528] = {.lex_state = 87, .external_lex_state = 2}, + [529] = {.lex_state = 87, .external_lex_state = 2}, + [530] = {.lex_state = 87, .external_lex_state = 2}, + [531] = {.lex_state = 86, .external_lex_state = 2}, + [532] = {.lex_state = 87, .external_lex_state = 2}, + [533] = {.lex_state = 87, .external_lex_state = 2}, + [534] = {.lex_state = 87, .external_lex_state = 2}, + [535] = {.lex_state = 87, .external_lex_state = 2}, + [536] = {.lex_state = 87, .external_lex_state = 2}, + [537] = {.lex_state = 87, .external_lex_state = 2}, + [538] = {.lex_state = 87, .external_lex_state = 2}, + [539] = {.lex_state = 87, .external_lex_state = 2}, + [540] = {.lex_state = 87, .external_lex_state = 2}, + [541] = {.lex_state = 13, .external_lex_state = 2}, + [542] = {.lex_state = 121, .external_lex_state = 2}, + [543] = {.lex_state = 87, .external_lex_state = 2}, + [544] = {.lex_state = 87, .external_lex_state = 2}, + [545] = {.lex_state = 87, .external_lex_state = 2}, + [546] = {.lex_state = 87, .external_lex_state = 2}, + [547] = {.lex_state = 87, .external_lex_state = 2}, + [548] = {.lex_state = 87, .external_lex_state = 2}, + [549] = {.lex_state = 87, .external_lex_state = 2}, + [550] = {.lex_state = 87, .external_lex_state = 2}, + [551] = {.lex_state = 87, .external_lex_state = 2}, + [552] = {.lex_state = 87, .external_lex_state = 2}, + [553] = {.lex_state = 87, .external_lex_state = 2}, + [554] = {.lex_state = 87, .external_lex_state = 2}, + [555] = {.lex_state = 87, .external_lex_state = 2}, + [556] = {.lex_state = 87, .external_lex_state = 2}, + [557] = {.lex_state = 87, .external_lex_state = 2}, + [558] = {.lex_state = 87, .external_lex_state = 2}, + [559] = {.lex_state = 87, .external_lex_state = 2}, + [560] = {.lex_state = 87, .external_lex_state = 2}, + [561] = {.lex_state = 121, .external_lex_state = 2}, + [562] = {.lex_state = 23, .external_lex_state = 2}, + [563] = {.lex_state = 119, .external_lex_state = 2}, + [564] = {.lex_state = 119, .external_lex_state = 2}, + [565] = {.lex_state = 121, .external_lex_state = 2}, + [566] = {.lex_state = 27, .external_lex_state = 2}, + [567] = {.lex_state = 119, .external_lex_state = 3}, + [568] = {.lex_state = 121, .external_lex_state = 2}, + [569] = {.lex_state = 62, .external_lex_state = 2}, + [570] = {.lex_state = 31, .external_lex_state = 2}, + [571] = {.lex_state = 62, .external_lex_state = 2}, + [572] = {.lex_state = 62, .external_lex_state = 2}, + [573] = {.lex_state = 27, .external_lex_state = 2}, + [574] = {.lex_state = 23, .external_lex_state = 2}, + [575] = {.lex_state = 73, .external_lex_state = 2}, + [576] = {.lex_state = 23, .external_lex_state = 2}, + [577] = {.lex_state = 119, .external_lex_state = 3}, + [578] = {.lex_state = 119, .external_lex_state = 3}, + [579] = {.lex_state = 73, .external_lex_state = 2}, + [580] = {.lex_state = 86, .external_lex_state = 2}, + [581] = {.lex_state = 31, .external_lex_state = 2}, + [582] = {.lex_state = 119, .external_lex_state = 3}, + [583] = {.lex_state = 73, .external_lex_state = 2}, + [584] = {.lex_state = 27, .external_lex_state = 2}, + [585] = {.lex_state = 83, .external_lex_state = 2}, + [586] = {.lex_state = 119, .external_lex_state = 2}, + [587] = {.lex_state = 119, .external_lex_state = 2}, + [588] = {.lex_state = 121, .external_lex_state = 2}, + [589] = {.lex_state = 83, .external_lex_state = 2}, + [590] = {.lex_state = 83, .external_lex_state = 2}, [591] = {.lex_state = 2, .external_lex_state = 2}, [592] = {.lex_state = 2, .external_lex_state = 2}, - [593] = {.lex_state = 85, .external_lex_state = 2}, + [593] = {.lex_state = 121, .external_lex_state = 2}, [594] = {.lex_state = 2, .external_lex_state = 2}, - [595] = {.lex_state = 136, .external_lex_state = 2}, - [596] = {.lex_state = 136, .external_lex_state = 2}, - [597] = {.lex_state = 136, .external_lex_state = 2}, - [598] = {.lex_state = 10, .external_lex_state = 2}, - [599] = {.lex_state = 136, .external_lex_state = 2}, - [600] = {.lex_state = 69, .external_lex_state = 2}, - [601] = {.lex_state = 136, .external_lex_state = 2}, - [602] = {.lex_state = 136, .external_lex_state = 2}, - [603] = {.lex_state = 136, .external_lex_state = 2}, - [604] = {.lex_state = 136, .external_lex_state = 2}, - [605] = {.lex_state = 136, .external_lex_state = 2}, - [606] = {.lex_state = 136, .external_lex_state = 2}, - [607] = {.lex_state = 136, .external_lex_state = 2}, - [608] = {.lex_state = 136, .external_lex_state = 2}, - [609] = {.lex_state = 136, .external_lex_state = 2}, - [610] = {.lex_state = 136, .external_lex_state = 2}, - [611] = {.lex_state = 136, .external_lex_state = 2}, - [612] = {.lex_state = 136, .external_lex_state = 2}, - [613] = {.lex_state = 136, .external_lex_state = 2}, - [614] = {.lex_state = 136, .external_lex_state = 2}, - [615] = {.lex_state = 136, .external_lex_state = 2}, - [616] = {.lex_state = 30, .external_lex_state = 2}, - [617] = {.lex_state = 136, .external_lex_state = 2}, - [618] = {.lex_state = 30, .external_lex_state = 2}, - [619] = {.lex_state = 136, .external_lex_state = 2}, - [620] = {.lex_state = 136, .external_lex_state = 2}, - [621] = {.lex_state = 136, .external_lex_state = 2}, - [622] = {.lex_state = 136, .external_lex_state = 2}, - [623] = {.lex_state = 136, .external_lex_state = 2}, - [624] = {.lex_state = 136, .external_lex_state = 2}, - [625] = {.lex_state = 136, .external_lex_state = 2}, - [626] = {.lex_state = 136, .external_lex_state = 2}, - [627] = {.lex_state = 136, .external_lex_state = 2}, - [628] = {.lex_state = 134, .external_lex_state = 2}, - [629] = {.lex_state = 134, .external_lex_state = 2}, - [630] = {.lex_state = 134, .external_lex_state = 2}, - [631] = {.lex_state = 63}, - [632] = {.lex_state = 63}, - [633] = {.lex_state = 63}, - [634] = {.lex_state = 63}, - [635] = {.lex_state = 63}, - [636] = {.lex_state = 63}, - [637] = {.lex_state = 63}, - [638] = {.lex_state = 63}, - [639] = {.lex_state = 63}, - [640] = {.lex_state = 63}, - [641] = {.lex_state = 63}, - [642] = {.lex_state = 63}, - [643] = {.lex_state = 63}, - [644] = {.lex_state = 63}, - [645] = {.lex_state = 63}, - [646] = {.lex_state = 63}, - [647] = {.lex_state = 63}, - [648] = {.lex_state = 63}, - [649] = {.lex_state = 63}, - [650] = {.lex_state = 63}, - [651] = {.lex_state = 63}, - [652] = {.lex_state = 63}, - [653] = {.lex_state = 63}, - [654] = {.lex_state = 63}, - [655] = {.lex_state = 63}, - [656] = {.lex_state = 63}, - [657] = {.lex_state = 63}, - [658] = {.lex_state = 63}, - [659] = {.lex_state = 63}, - [660] = {.lex_state = 63}, - [661] = {.lex_state = 63}, - [662] = {.lex_state = 63}, - [663] = {.lex_state = 63}, - [664] = {.lex_state = 63}, - [665] = {.lex_state = 63}, - [666] = {.lex_state = 63}, - [667] = {.lex_state = 63}, - [668] = {.lex_state = 63}, - [669] = {.lex_state = 63}, - [670] = {.lex_state = 63}, - [671] = {.lex_state = 63}, - [672] = {.lex_state = 63}, - [673] = {.lex_state = 63}, - [674] = {.lex_state = 63}, - [675] = {.lex_state = 63}, - [676] = {.lex_state = 63}, - [677] = {.lex_state = 63}, - [678] = {.lex_state = 63}, - [679] = {.lex_state = 63}, - [680] = {.lex_state = 63}, - [681] = {.lex_state = 63}, - [682] = {.lex_state = 63}, - [683] = {.lex_state = 63}, - [684] = {.lex_state = 63}, - [685] = {.lex_state = 63}, - [686] = {.lex_state = 63}, - [687] = {.lex_state = 63}, - [688] = {.lex_state = 63}, - [689] = {.lex_state = 63}, - [690] = {.lex_state = 63}, - [691] = {.lex_state = 63}, - [692] = {.lex_state = 63}, - [693] = {.lex_state = 63}, - [694] = {.lex_state = 63}, - [695] = {.lex_state = 63}, - [696] = {.lex_state = 63}, - [697] = {.lex_state = 63}, - [698] = {.lex_state = 63}, - [699] = {.lex_state = 63}, - [700] = {.lex_state = 63}, - [701] = {.lex_state = 63}, - [702] = {.lex_state = 63}, - [703] = {.lex_state = 63}, - [704] = {.lex_state = 63}, - [705] = {.lex_state = 63}, - [706] = {.lex_state = 63}, - [707] = {.lex_state = 63}, - [708] = {.lex_state = 63}, - [709] = {.lex_state = 63}, - [710] = {.lex_state = 63}, - [711] = {.lex_state = 63}, - [712] = {.lex_state = 63}, - [713] = {.lex_state = 65}, - [714] = {.lex_state = 63}, - [715] = {.lex_state = 63}, - [716] = {.lex_state = 65}, - [717] = {.lex_state = 65}, - [718] = {.lex_state = 63}, - [719] = {.lex_state = 63}, - [720] = {.lex_state = 63}, - [721] = {.lex_state = 65}, - [722] = {.lex_state = 0}, - [723] = {.lex_state = 1}, - [724] = {.lex_state = 63}, - [725] = {.lex_state = 1}, - [726] = {.lex_state = 1}, + [595] = {.lex_state = 119, .external_lex_state = 2}, + [596] = {.lex_state = 119, .external_lex_state = 3}, + [597] = {.lex_state = 121, .external_lex_state = 2}, + [598] = {.lex_state = 121, .external_lex_state = 2}, + [599] = {.lex_state = 121, .external_lex_state = 2}, + [600] = {.lex_state = 121, .external_lex_state = 2}, + [601] = {.lex_state = 121, .external_lex_state = 2}, + [602] = {.lex_state = 121, .external_lex_state = 2}, + [603] = {.lex_state = 121, .external_lex_state = 2}, + [604] = {.lex_state = 121, .external_lex_state = 2}, + [605] = {.lex_state = 121, .external_lex_state = 2}, + [606] = {.lex_state = 121, .external_lex_state = 2}, + [607] = {.lex_state = 121, .external_lex_state = 2}, + [608] = {.lex_state = 121, .external_lex_state = 2}, + [609] = {.lex_state = 121, .external_lex_state = 2}, + [610] = {.lex_state = 121, .external_lex_state = 2}, + [611] = {.lex_state = 121, .external_lex_state = 2}, + [612] = {.lex_state = 121, .external_lex_state = 2}, + [613] = {.lex_state = 31, .external_lex_state = 2}, + [614] = {.lex_state = 121, .external_lex_state = 2}, + [615] = {.lex_state = 121, .external_lex_state = 2}, + [616] = {.lex_state = 86, .external_lex_state = 2}, + [617] = {.lex_state = 121, .external_lex_state = 2}, + [618] = {.lex_state = 121, .external_lex_state = 2}, + [619] = {.lex_state = 121, .external_lex_state = 2}, + [620] = {.lex_state = 121, .external_lex_state = 2}, + [621] = {.lex_state = 121, .external_lex_state = 2}, + [622] = {.lex_state = 121, .external_lex_state = 2}, + [623] = {.lex_state = 121, .external_lex_state = 2}, + [624] = {.lex_state = 121, .external_lex_state = 2}, + [625] = {.lex_state = 121, .external_lex_state = 2}, + [626] = {.lex_state = 121, .external_lex_state = 2}, + [627] = {.lex_state = 86, .external_lex_state = 2}, + [628] = {.lex_state = 119, .external_lex_state = 2}, + [629] = {.lex_state = 119, .external_lex_state = 2}, + [630] = {.lex_state = 119, .external_lex_state = 2}, + [631] = {.lex_state = 56}, + [632] = {.lex_state = 56}, + [633] = {.lex_state = 56}, + [634] = {.lex_state = 56}, + [635] = {.lex_state = 56}, + [636] = {.lex_state = 56}, + [637] = {.lex_state = 56}, + [638] = {.lex_state = 56}, + [639] = {.lex_state = 56}, + [640] = {.lex_state = 56}, + [641] = {.lex_state = 56}, + [642] = {.lex_state = 56}, + [643] = {.lex_state = 56}, + [644] = {.lex_state = 56}, + [645] = {.lex_state = 56}, + [646] = {.lex_state = 56}, + [647] = {.lex_state = 56}, + [648] = {.lex_state = 56}, + [649] = {.lex_state = 56}, + [650] = {.lex_state = 56}, + [651] = {.lex_state = 56}, + [652] = {.lex_state = 56}, + [653] = {.lex_state = 56}, + [654] = {.lex_state = 56}, + [655] = {.lex_state = 56}, + [656] = {.lex_state = 56}, + [657] = {.lex_state = 56}, + [658] = {.lex_state = 56}, + [659] = {.lex_state = 56}, + [660] = {.lex_state = 56}, + [661] = {.lex_state = 56}, + [662] = {.lex_state = 56}, + [663] = {.lex_state = 56}, + [664] = {.lex_state = 56}, + [665] = {.lex_state = 56}, + [666] = {.lex_state = 56}, + [667] = {.lex_state = 56}, + [668] = {.lex_state = 56}, + [669] = {.lex_state = 56}, + [670] = {.lex_state = 56}, + [671] = {.lex_state = 56}, + [672] = {.lex_state = 56}, + [673] = {.lex_state = 56}, + [674] = {.lex_state = 56}, + [675] = {.lex_state = 56}, + [676] = {.lex_state = 56}, + [677] = {.lex_state = 56}, + [678] = {.lex_state = 56}, + [679] = {.lex_state = 56}, + [680] = {.lex_state = 56}, + [681] = {.lex_state = 56}, + [682] = {.lex_state = 56}, + [683] = {.lex_state = 56}, + [684] = {.lex_state = 56}, + [685] = {.lex_state = 56}, + [686] = {.lex_state = 58}, + [687] = {.lex_state = 56}, + [688] = {.lex_state = 56}, + [689] = {.lex_state = 56}, + [690] = {.lex_state = 56}, + [691] = {.lex_state = 56}, + [692] = {.lex_state = 56}, + [693] = {.lex_state = 56}, + [694] = {.lex_state = 56}, + [695] = {.lex_state = 56}, + [696] = {.lex_state = 56}, + [697] = {.lex_state = 56}, + [698] = {.lex_state = 56}, + [699] = {.lex_state = 56}, + [700] = {.lex_state = 56}, + [701] = {.lex_state = 58}, + [702] = {.lex_state = 58}, + [703] = {.lex_state = 56}, + [704] = {.lex_state = 56}, + [705] = {.lex_state = 56}, + [706] = {.lex_state = 56}, + [707] = {.lex_state = 56}, + [708] = {.lex_state = 56}, + [709] = {.lex_state = 56}, + [710] = {.lex_state = 56}, + [711] = {.lex_state = 56}, + [712] = {.lex_state = 56}, + [713] = {.lex_state = 56}, + [714] = {.lex_state = 56}, + [715] = {.lex_state = 56}, + [716] = {.lex_state = 56}, + [717] = {.lex_state = 56}, + [718] = {.lex_state = 56}, + [719] = {.lex_state = 56}, + [720] = {.lex_state = 56}, + [721] = {.lex_state = 58}, + [722] = {.lex_state = 56}, + [723] = {.lex_state = 0}, + [724] = {.lex_state = 0}, + [725] = {.lex_state = 97}, + [726] = {.lex_state = 0}, [727] = {.lex_state = 0}, - [728] = {.lex_state = 109}, - [729] = {.lex_state = 1}, + [728] = {.lex_state = 0}, + [729] = {.lex_state = 0}, [730] = {.lex_state = 0}, [731] = {.lex_state = 0}, - [732] = {.lex_state = 63}, + [732] = {.lex_state = 0}, [733] = {.lex_state = 0}, - [734] = {.lex_state = 1}, - [735] = {.lex_state = 0}, - [736] = {.lex_state = 1}, - [737] = {.lex_state = 1}, - [738] = {.lex_state = 1}, - [739] = {.lex_state = 1}, - [740] = {.lex_state = 1}, - [741] = {.lex_state = 0}, - [742] = {.lex_state = 0}, - [743] = {.lex_state = 1}, - [744] = {.lex_state = 0}, - [745] = {.lex_state = 0}, - [746] = {.lex_state = 0}, - [747] = {.lex_state = 0}, - [748] = {.lex_state = 0, .external_lex_state = 4}, - [749] = {.lex_state = 0, .external_lex_state = 4}, - [750] = {.lex_state = 0}, - [751] = {.lex_state = 0}, - [752] = {.lex_state = 0, .external_lex_state = 4}, - [753] = {.lex_state = 0, .external_lex_state = 4}, - [754] = {.lex_state = 0, .external_lex_state = 4}, - [755] = {.lex_state = 0, .external_lex_state = 4}, - [756] = {.lex_state = 63}, - [757] = {.lex_state = 63}, - [758] = {.lex_state = 0, .external_lex_state = 4}, - [759] = {.lex_state = 0, .external_lex_state = 4}, - [760] = {.lex_state = 63}, - [761] = {.lex_state = 63}, + [734] = {.lex_state = 0}, + [735] = {.lex_state = 56}, + [736] = {.lex_state = 0}, + [737] = {.lex_state = 0}, + [738] = {.lex_state = 0}, + [739] = {.lex_state = 0}, + [740] = {.lex_state = 0, .external_lex_state = 6}, + [741] = {.lex_state = 56}, + [742] = {.lex_state = 56}, + [743] = {.lex_state = 56}, + [744] = {.lex_state = 56}, + [745] = {.lex_state = 56}, + [746] = {.lex_state = 56}, + [747] = {.lex_state = 0, .external_lex_state = 6}, + [748] = {.lex_state = 56}, + [749] = {.lex_state = 56}, + [750] = {.lex_state = 0, .external_lex_state = 6}, + [751] = {.lex_state = 56}, + [752] = {.lex_state = 0}, + [753] = {.lex_state = 0, .external_lex_state = 6}, + [754] = {.lex_state = 0}, + [755] = {.lex_state = 0, .external_lex_state = 6}, + [756] = {.lex_state = 56}, + [757] = {.lex_state = 56}, + [758] = {.lex_state = 56}, + [759] = {.lex_state = 0, .external_lex_state = 6}, + [760] = {.lex_state = 0, .external_lex_state = 6}, + [761] = {.lex_state = 0}, [762] = {.lex_state = 0}, [763] = {.lex_state = 0}, [764] = {.lex_state = 0}, - [765] = {.lex_state = 0}, - [766] = {.lex_state = 63}, - [767] = {.lex_state = 63}, + [765] = {.lex_state = 0, .external_lex_state = 6}, + [766] = {.lex_state = 0, .external_lex_state = 6}, + [767] = {.lex_state = 0, .external_lex_state = 6}, [768] = {.lex_state = 0}, [769] = {.lex_state = 0}, - [770] = {.lex_state = 0, .external_lex_state = 4}, - [771] = {.lex_state = 0}, - [772] = {.lex_state = 63}, - [773] = {.lex_state = 0, .external_lex_state = 4}, - [774] = {.lex_state = 0, .external_lex_state = 4}, - [775] = {.lex_state = 0, .external_lex_state = 4}, - [776] = {.lex_state = 0}, - [777] = {.lex_state = 0, .external_lex_state = 4}, - [778] = {.lex_state = 0}, + [770] = {.lex_state = 0, .external_lex_state = 6}, + [771] = {.lex_state = 0, .external_lex_state = 6}, + [772] = {.lex_state = 0, .external_lex_state = 6}, + [773] = {.lex_state = 0, .external_lex_state = 6}, + [774] = {.lex_state = 0, .external_lex_state = 6}, + [775] = {.lex_state = 0, .external_lex_state = 6}, + [776] = {.lex_state = 0, .external_lex_state = 6}, + [777] = {.lex_state = 0}, + [778] = {.lex_state = 0, .external_lex_state = 6}, [779] = {.lex_state = 0}, - [780] = {.lex_state = 0, .external_lex_state = 4}, - [781] = {.lex_state = 63}, - [782] = {.lex_state = 0}, + [780] = {.lex_state = 0}, + [781] = {.lex_state = 0, .external_lex_state = 6}, + [782] = {.lex_state = 0, .external_lex_state = 6}, [783] = {.lex_state = 0}, - [784] = {.lex_state = 0, .external_lex_state = 4}, - [785] = {.lex_state = 0, .external_lex_state = 4}, + [784] = {.lex_state = 0}, + [785] = {.lex_state = 0, .external_lex_state = 6}, [786] = {.lex_state = 0}, [787] = {.lex_state = 0}, [788] = {.lex_state = 0}, - [789] = {.lex_state = 0, .external_lex_state = 4}, - [790] = {.lex_state = 63}, - [791] = {.lex_state = 0, .external_lex_state = 4}, - [792] = {.lex_state = 63}, - [793] = {.lex_state = 0, .external_lex_state = 4}, - [794] = {.lex_state = 0}, + [789] = {.lex_state = 0}, + [790] = {.lex_state = 0}, + [791] = {.lex_state = 0, .external_lex_state = 6}, + [792] = {.lex_state = 22}, + [793] = {.lex_state = 22}, + [794] = {.lex_state = 56}, [795] = {.lex_state = 0}, - [796] = {.lex_state = 0, .external_lex_state = 4}, + [796] = {.lex_state = 56}, [797] = {.lex_state = 0}, - [798] = {.lex_state = 0, .external_lex_state = 4}, - [799] = {.lex_state = 63}, - [800] = {.lex_state = 63}, - [801] = {.lex_state = 0, .external_lex_state = 4}, + [798] = {.lex_state = 0, .external_lex_state = 7}, + [799] = {.lex_state = 0, .external_lex_state = 8}, + [800] = {.lex_state = 56}, + [801] = {.lex_state = 22}, [802] = {.lex_state = 0}, - [803] = {.lex_state = 63}, - [804] = {.lex_state = 0}, - [805] = {.lex_state = 63}, - [806] = {.lex_state = 0, .external_lex_state = 5}, - [807] = {.lex_state = 63}, - [808] = {.lex_state = 0}, - [809] = {.lex_state = 0, .external_lex_state = 6}, - [810] = {.lex_state = 63}, - [811] = {.lex_state = 29}, - [812] = {.lex_state = 0}, - [813] = {.lex_state = 0}, - [814] = {.lex_state = 24}, - [815] = {.lex_state = 0, .external_lex_state = 6}, - [816] = {.lex_state = 63}, + [803] = {.lex_state = 0}, + [804] = {.lex_state = 56}, + [805] = {.lex_state = 17}, + [806] = {.lex_state = 0, .external_lex_state = 7}, + [807] = {.lex_state = 17}, + [808] = {.lex_state = 0, .external_lex_state = 7}, + [809] = {.lex_state = 56}, + [810] = {.lex_state = 0, .external_lex_state = 8}, + [811] = {.lex_state = 0}, + [812] = {.lex_state = 56}, + [813] = {.lex_state = 56}, + [814] = {.lex_state = 0}, + [815] = {.lex_state = 0}, + [816] = {.lex_state = 0, .external_lex_state = 7}, [817] = {.lex_state = 0}, - [818] = {.lex_state = 63}, - [819] = {.lex_state = 0, .external_lex_state = 5}, - [820] = {.lex_state = 63}, + [818] = {.lex_state = 56}, + [819] = {.lex_state = 22}, + [820] = {.lex_state = 0}, [821] = {.lex_state = 0}, - [822] = {.lex_state = 0}, - [823] = {.lex_state = 63}, - [824] = {.lex_state = 0, .external_lex_state = 6}, - [825] = {.lex_state = 0, .external_lex_state = 6}, - [826] = {.lex_state = 24}, - [827] = {.lex_state = 0}, - [828] = {.lex_state = 63}, - [829] = {.lex_state = 29}, - [830] = {.lex_state = 0}, + [822] = {.lex_state = 17}, + [823] = {.lex_state = 22}, + [824] = {.lex_state = 56}, + [825] = {.lex_state = 0, .external_lex_state = 7}, + [826] = {.lex_state = 56}, + [827] = {.lex_state = 0, .external_lex_state = 8}, + [828] = {.lex_state = 0}, + [829] = {.lex_state = 56}, + [830] = {.lex_state = 56}, [831] = {.lex_state = 0}, - [832] = {.lex_state = 0}, - [833] = {.lex_state = 29}, - [834] = {.lex_state = 24}, - [835] = {.lex_state = 63}, - [836] = {.lex_state = 0, .external_lex_state = 6}, + [832] = {.lex_state = 0, .external_lex_state = 7}, + [833] = {.lex_state = 0}, + [834] = {.lex_state = 0, .external_lex_state = 7}, + [835] = {.lex_state = 56}, + [836] = {.lex_state = 22}, [837] = {.lex_state = 0}, - [838] = {.lex_state = 0, .external_lex_state = 6}, - [839] = {.lex_state = 63}, - [840] = {.lex_state = 0}, - [841] = {.lex_state = 63}, - [842] = {.lex_state = 0, .external_lex_state = 5}, - [843] = {.lex_state = 63}, - [844] = {.lex_state = 63}, - [845] = {.lex_state = 0}, - [846] = {.lex_state = 0, .external_lex_state = 5}, - [847] = {.lex_state = 63}, - [848] = {.lex_state = 0, .external_lex_state = 6}, + [838] = {.lex_state = 0}, + [839] = {.lex_state = 17}, + [840] = {.lex_state = 56}, + [841] = {.lex_state = 56}, + [842] = {.lex_state = 0}, + [843] = {.lex_state = 0, .external_lex_state = 7}, + [844] = {.lex_state = 56}, + [845] = {.lex_state = 0, .external_lex_state = 8}, + [846] = {.lex_state = 0}, + [847] = {.lex_state = 56}, + [848] = {.lex_state = 56}, [849] = {.lex_state = 0}, - [850] = {.lex_state = 63}, - [851] = {.lex_state = 63}, - [852] = {.lex_state = 29}, - [853] = {.lex_state = 0}, - [854] = {.lex_state = 0}, - [855] = {.lex_state = 0, .external_lex_state = 6}, - [856] = {.lex_state = 24}, - [857] = {.lex_state = 24}, - [858] = {.lex_state = 0}, - [859] = {.lex_state = 0}, - [860] = {.lex_state = 29}, - [861] = {.lex_state = 0, .external_lex_state = 6}, - [862] = {.lex_state = 63}, + [850] = {.lex_state = 0, .external_lex_state = 8}, + [851] = {.lex_state = 56}, + [852] = {.lex_state = 0, .external_lex_state = 7}, + [853] = {.lex_state = 0, .external_lex_state = 7}, + [854] = {.lex_state = 56}, + [855] = {.lex_state = 22}, + [856] = {.lex_state = 0}, + [857] = {.lex_state = 0}, + [858] = {.lex_state = 17}, + [859] = {.lex_state = 22}, + [860] = {.lex_state = 0, .external_lex_state = 7}, + [861] = {.lex_state = 56}, + [862] = {.lex_state = 0, .external_lex_state = 8}, [863] = {.lex_state = 0}, - [864] = {.lex_state = 63}, - [865] = {.lex_state = 0, .external_lex_state = 5}, - [866] = {.lex_state = 63}, - [867] = {.lex_state = 63}, + [864] = {.lex_state = 56}, + [865] = {.lex_state = 56}, + [866] = {.lex_state = 0}, + [867] = {.lex_state = 0}, [868] = {.lex_state = 0}, - [869] = {.lex_state = 0, .external_lex_state = 6}, - [870] = {.lex_state = 0}, - [871] = {.lex_state = 0, .external_lex_state = 6}, - [872] = {.lex_state = 63}, - [873] = {.lex_state = 0, .external_lex_state = 5}, - [874] = {.lex_state = 63}, - [875] = {.lex_state = 29}, + [869] = {.lex_state = 0, .external_lex_state = 7}, + [870] = {.lex_state = 17}, + [871] = {.lex_state = 56}, + [872] = {.lex_state = 56}, + [873] = {.lex_state = 0}, + [874] = {.lex_state = 0}, + [875] = {.lex_state = 0}, [876] = {.lex_state = 0}, - [877] = {.lex_state = 0}, - [878] = {.lex_state = 63}, - [879] = {.lex_state = 0}, - [880] = {.lex_state = 24}, - [881] = {.lex_state = 63}, - [882] = {.lex_state = 0, .external_lex_state = 6}, - [883] = {.lex_state = 24}, - [884] = {.lex_state = 0, .external_lex_state = 6}, - [885] = {.lex_state = 63}, - [886] = {.lex_state = 0}, - [887] = {.lex_state = 63}, - [888] = {.lex_state = 0, .external_lex_state = 5}, - [889] = {.lex_state = 63}, - [890] = {.lex_state = 0}, - [891] = {.lex_state = 0}, - [892] = {.lex_state = 29}, - [893] = {.lex_state = 63}, - [894] = {.lex_state = 0, .external_lex_state = 6}, - [895] = {.lex_state = 0}, - [896] = {.lex_state = 63}, - [897] = {.lex_state = 0, .external_lex_state = 5}, - [898] = {.lex_state = 63}, + [877] = {.lex_state = 0, .external_lex_state = 8}, + [878] = {.lex_state = 17}, + [879] = {.lex_state = 56}, + [880] = {.lex_state = 56}, + [881] = {.lex_state = 0, .external_lex_state = 7}, + [882] = {.lex_state = 0, .external_lex_state = 7}, + [883] = {.lex_state = 56}, + [884] = {.lex_state = 0, .external_lex_state = 8}, + [885] = {.lex_state = 0}, + [886] = {.lex_state = 56}, + [887] = {.lex_state = 56}, + [888] = {.lex_state = 0}, + [889] = {.lex_state = 0, .external_lex_state = 7}, + [890] = {.lex_state = 56}, + [891] = {.lex_state = 56}, + [892] = {.lex_state = 0}, + [893] = {.lex_state = 0, .external_lex_state = 8}, + [894] = {.lex_state = 56}, + [895] = {.lex_state = 0, .external_lex_state = 7}, + [896] = {.lex_state = 17}, + [897] = {.lex_state = 56}, + [898] = {.lex_state = 0}, [899] = {.lex_state = 0}, - [900] = {.lex_state = 63}, - [901] = {.lex_state = 0, .external_lex_state = 6}, - [902] = {.lex_state = 24}, - [903] = {.lex_state = 0}, - [904] = {.lex_state = 0}, - [905] = {.lex_state = 29}, - [906] = {.lex_state = 63}, - [907] = {.lex_state = 0, .external_lex_state = 6}, - [908] = {.lex_state = 0}, - [909] = {.lex_state = 63}, - [910] = {.lex_state = 0, .external_lex_state = 5}, - [911] = {.lex_state = 63}, - [912] = {.lex_state = 0, .external_lex_state = 7}, - [913] = {.lex_state = 0, .external_lex_state = 7}, - [914] = {.lex_state = 24}, - [915] = {.lex_state = 0, .external_lex_state = 7}, - [916] = {.lex_state = 0}, - [917] = {.lex_state = 24}, - [918] = {.lex_state = 110}, - [919] = {.lex_state = 63}, - [920] = {.lex_state = 111}, - [921] = {.lex_state = 0, .external_lex_state = 7}, - [922] = {.lex_state = 0, .external_lex_state = 6}, - [923] = {.lex_state = 24}, - [924] = {.lex_state = 0, .external_lex_state = 7}, - [925] = {.lex_state = 24}, - [926] = {.lex_state = 24}, - [927] = {.lex_state = 110}, - [928] = {.lex_state = 0}, - [929] = {.lex_state = 111}, - [930] = {.lex_state = 0, .external_lex_state = 7}, - [931] = {.lex_state = 24}, - [932] = {.lex_state = 24}, - [933] = {.lex_state = 0, .external_lex_state = 7}, - [934] = {.lex_state = 321}, - [935] = {.lex_state = 29}, - [936] = {.lex_state = 110}, - [937] = {.lex_state = 63}, - [938] = {.lex_state = 111}, - [939] = {.lex_state = 0, .external_lex_state = 7}, - [940] = {.lex_state = 0, .external_lex_state = 6}, - [941] = {.lex_state = 24}, - [942] = {.lex_state = 0, .external_lex_state = 7}, - [943] = {.lex_state = 0}, - [944] = {.lex_state = 0}, - [945] = {.lex_state = 110}, - [946] = {.lex_state = 63}, - [947] = {.lex_state = 111}, - [948] = {.lex_state = 0, .external_lex_state = 7}, - [949] = {.lex_state = 0}, - [950] = {.lex_state = 24}, - [951] = {.lex_state = 0, .external_lex_state = 7}, - [952] = {.lex_state = 0, .external_lex_state = 5}, - [953] = {.lex_state = 29}, - [954] = {.lex_state = 110}, - [955] = {.lex_state = 63}, - [956] = {.lex_state = 111}, - [957] = {.lex_state = 0, .external_lex_state = 7}, - [958] = {.lex_state = 63}, - [959] = {.lex_state = 24}, - [960] = {.lex_state = 0, .external_lex_state = 7}, - [961] = {.lex_state = 0}, - [962] = {.lex_state = 0, .external_lex_state = 6}, - [963] = {.lex_state = 110}, - [964] = {.lex_state = 24}, - [965] = {.lex_state = 111}, - [966] = {.lex_state = 0, .external_lex_state = 7}, - [967] = {.lex_state = 0}, - [968] = {.lex_state = 24}, - [969] = {.lex_state = 0, .external_lex_state = 7}, - [970] = {.lex_state = 0}, - [971] = {.lex_state = 29}, - [972] = {.lex_state = 110}, - [973] = {.lex_state = 63}, - [974] = {.lex_state = 111}, - [975] = {.lex_state = 0, .external_lex_state = 7}, - [976] = {.lex_state = 0, .external_lex_state = 6}, - [977] = {.lex_state = 24}, - [978] = {.lex_state = 0, .external_lex_state = 7}, + [900] = {.lex_state = 0}, + [901] = {.lex_state = 56}, + [902] = {.lex_state = 56}, + [903] = {.lex_state = 17}, + [904] = {.lex_state = 0, .external_lex_state = 7}, + [905] = {.lex_state = 0}, + [906] = {.lex_state = 0}, + [907] = {.lex_state = 56}, + [908] = {.lex_state = 98}, + [909] = {.lex_state = 17}, + [910] = {.lex_state = 0, .external_lex_state = 9}, + [911] = {.lex_state = 0, .external_lex_state = 9}, + [912] = {.lex_state = 17}, + [913] = {.lex_state = 0, .external_lex_state = 9}, + [914] = {.lex_state = 0}, + [915] = {.lex_state = 17}, + [916] = {.lex_state = 22}, + [917] = {.lex_state = 99}, + [918] = {.lex_state = 100}, + [919] = {.lex_state = 0, .external_lex_state = 9}, + [920] = {.lex_state = 17}, + [921] = {.lex_state = 17}, + [922] = {.lex_state = 0, .external_lex_state = 9}, + [923] = {.lex_state = 56}, + [924] = {.lex_state = 17}, + [925] = {.lex_state = 0, .external_lex_state = 7}, + [926] = {.lex_state = 99}, + [927] = {.lex_state = 100}, + [928] = {.lex_state = 0, .external_lex_state = 9}, + [929] = {.lex_state = 0, .external_lex_state = 7}, + [930] = {.lex_state = 17}, + [931] = {.lex_state = 0, .external_lex_state = 9}, + [932] = {.lex_state = 56}, + [933] = {.lex_state = 0}, + [934] = {.lex_state = 0}, + [935] = {.lex_state = 99}, + [936] = {.lex_state = 100}, + [937] = {.lex_state = 0, .external_lex_state = 9}, + [938] = {.lex_state = 22}, + [939] = {.lex_state = 17}, + [940] = {.lex_state = 0, .external_lex_state = 9}, + [941] = {.lex_state = 0}, + [942] = {.lex_state = 56}, + [943] = {.lex_state = 56}, + [944] = {.lex_state = 99}, + [945] = {.lex_state = 100}, + [946] = {.lex_state = 0, .external_lex_state = 9}, + [947] = {.lex_state = 99}, + [948] = {.lex_state = 17}, + [949] = {.lex_state = 0, .external_lex_state = 9}, + [950] = {.lex_state = 56}, + [951] = {.lex_state = 56}, + [952] = {.lex_state = 100}, + [953] = {.lex_state = 99}, + [954] = {.lex_state = 100}, + [955] = {.lex_state = 0, .external_lex_state = 9}, + [956] = {.lex_state = 56}, + [957] = {.lex_state = 17}, + [958] = {.lex_state = 0, .external_lex_state = 9}, + [959] = {.lex_state = 0}, + [960] = {.lex_state = 0, .external_lex_state = 9}, + [961] = {.lex_state = 0, .external_lex_state = 7}, + [962] = {.lex_state = 99}, + [963] = {.lex_state = 100}, + [964] = {.lex_state = 0, .external_lex_state = 9}, + [965] = {.lex_state = 0, .external_lex_state = 7}, + [966] = {.lex_state = 17}, + [967] = {.lex_state = 0, .external_lex_state = 9}, + [968] = {.lex_state = 0, .external_lex_state = 8}, + [969] = {.lex_state = 56}, + [970] = {.lex_state = 0, .external_lex_state = 10}, + [971] = {.lex_state = 99}, + [972] = {.lex_state = 100}, + [973] = {.lex_state = 0, .external_lex_state = 9}, + [974] = {.lex_state = 0}, + [975] = {.lex_state = 17}, + [976] = {.lex_state = 0, .external_lex_state = 9}, + [977] = {.lex_state = 56}, + [978] = {.lex_state = 0}, [979] = {.lex_state = 0}, - [980] = {.lex_state = 63}, - [981] = {.lex_state = 110}, - [982] = {.lex_state = 112}, - [983] = {.lex_state = 111}, - [984] = {.lex_state = 0, .external_lex_state = 7}, - [985] = {.lex_state = 0, .external_lex_state = 7}, - [986] = {.lex_state = 24}, - [987] = {.lex_state = 0, .external_lex_state = 7}, - [988] = {.lex_state = 63}, - [989] = {.lex_state = 0, .external_lex_state = 6}, - [990] = {.lex_state = 110}, - [991] = {.lex_state = 110}, - [992] = {.lex_state = 111}, - [993] = {.lex_state = 0, .external_lex_state = 7}, - [994] = {.lex_state = 0, .external_lex_state = 5}, - [995] = {.lex_state = 24}, - [996] = {.lex_state = 0, .external_lex_state = 7}, - [997] = {.lex_state = 0, .external_lex_state = 5}, - [998] = {.lex_state = 111}, - [999] = {.lex_state = 110}, - [1000] = {.lex_state = 63}, - [1001] = {.lex_state = 111}, - [1002] = {.lex_state = 0, .external_lex_state = 8}, - [1003] = {.lex_state = 0}, - [1004] = {.lex_state = 0}, - [1005] = {.lex_state = 0}, - [1006] = {.lex_state = 63}, - [1007] = {.lex_state = 63}, - [1008] = {.lex_state = 63}, - [1009] = {.lex_state = 0}, - [1010] = {.lex_state = 0, .external_lex_state = 6}, - [1011] = {.lex_state = 24}, - [1012] = {.lex_state = 0, .external_lex_state = 8}, - [1013] = {.lex_state = 0, .external_lex_state = 8}, - [1014] = {.lex_state = 0, .external_lex_state = 8}, - [1015] = {.lex_state = 0, .external_lex_state = 8}, - [1016] = {.lex_state = 0, .external_lex_state = 8}, - [1017] = {.lex_state = 0, .external_lex_state = 8}, - [1018] = {.lex_state = 0, .external_lex_state = 8}, - [1019] = {.lex_state = 0, .external_lex_state = 8}, - [1020] = {.lex_state = 0, .external_lex_state = 8}, - [1021] = {.lex_state = 0, .external_lex_state = 8}, + [980] = {.lex_state = 99}, + [981] = {.lex_state = 100}, + [982] = {.lex_state = 0, .external_lex_state = 9}, + [983] = {.lex_state = 56}, + [984] = {.lex_state = 17}, + [985] = {.lex_state = 0, .external_lex_state = 9}, + [986] = {.lex_state = 0, .external_lex_state = 7}, + [987] = {.lex_state = 0, .external_lex_state = 8}, + [988] = {.lex_state = 297}, + [989] = {.lex_state = 99}, + [990] = {.lex_state = 100}, + [991] = {.lex_state = 0, .external_lex_state = 9}, + [992] = {.lex_state = 0}, + [993] = {.lex_state = 17}, + [994] = {.lex_state = 0, .external_lex_state = 9}, + [995] = {.lex_state = 22}, + [996] = {.lex_state = 0}, + [997] = {.lex_state = 17}, + [998] = {.lex_state = 99}, + [999] = {.lex_state = 100}, + [1000] = {.lex_state = 0, .external_lex_state = 10}, + [1001] = {.lex_state = 0, .external_lex_state = 10}, + [1002] = {.lex_state = 0, .external_lex_state = 10}, + [1003] = {.lex_state = 0, .external_lex_state = 10}, + [1004] = {.lex_state = 0, .external_lex_state = 10}, + [1005] = {.lex_state = 0, .external_lex_state = 10}, + [1006] = {.lex_state = 0, .external_lex_state = 10}, + [1007] = {.lex_state = 0, .external_lex_state = 10}, + [1008] = {.lex_state = 0, .external_lex_state = 10}, + [1009] = {.lex_state = 0, .external_lex_state = 10}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -8324,7 +7834,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(1), [anon_sym_LBRACE_] = ACTIONS(1), [anon_sym__] = ACTIONS(1), - [aux_sym_emphasis_end_token1] = ACTIONS(1), [anon_sym_LBRACE_STAR] = ACTIONS(1), [anon_sym_SPACE] = ACTIONS(1), [anon_sym_STAR] = ACTIONS(1), @@ -8379,50 +7888,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_end] = ACTIONS(1), [sym__verbatim_content] = ACTIONS(1), [sym__emphasis_mark_begin] = ACTIONS(1), - [sym__emphasis_end_check] = ACTIONS(1), + [sym_emphasis_end] = ACTIONS(1), [sym__in_fallback] = ACTIONS(1), [sym__non_whitespace_check] = ACTIONS(1), [sym__error] = ACTIONS(1), }, [1] = { - [sym_inline] = STATE(1004), - [sym__inline] = STATE(1003), - [sym__element] = STATE(101), - [sym_emphasis] = STATE(197), - [sym_emphasis_begin] = STATE(1002), - [sym_strong] = STATE(197), - [sym_strong_begin] = STATE(98), - [sym__hard_line_break] = STATE(197), - [sym_hard_line_break] = STATE(197), - [sym__smart_punctuation] = STATE(197), - [sym_autolink] = STATE(197), - [sym_highlighted] = STATE(197), - [sym_insert] = STATE(197), - [sym_delete] = STATE(197), - [sym_superscript] = STATE(197), - [sym_subscript] = STATE(197), - [sym_footnote_reference] = STATE(197), - [sym__image] = STATE(197), - [sym_full_reference_image] = STATE(197), - [sym_collapsed_reference_image] = STATE(197), - [sym_inline_image] = STATE(197), - [sym__image_description] = STATE(685), - [sym__link] = STATE(197), - [sym_full_reference_link] = STATE(197), - [sym_collapsed_reference_link] = STATE(197), - [sym_inline_link] = STATE(197), - [sym_link_text] = STATE(719), - [sym__comment_with_spaces] = STATE(197), - [sym_span] = STATE(197), - [sym_raw_inline] = STATE(197), - [sym_math] = STATE(197), - [sym_verbatim] = STATE(197), - [sym__todo_highlights] = STATE(197), - [sym_todo] = STATE(197), - [sym_note] = STATE(197), - [sym__symbol_fallback] = STATE(197), - [aux_sym__text] = STATE(171), - [aux_sym__inline_repeat1] = STATE(101), + [sym_inline] = STATE(978), + [sym__inline] = STATE(974), + [sym__element] = STATE(100), + [sym_emphasis] = STATE(198), + [sym_emphasis_begin] = STATE(970), + [sym_strong] = STATE(198), + [sym_strong_begin] = STATE(97), + [sym__hard_line_break] = STATE(198), + [sym_hard_line_break] = STATE(198), + [sym__smart_punctuation] = STATE(198), + [sym_autolink] = STATE(198), + [sym_highlighted] = STATE(198), + [sym_insert] = STATE(198), + [sym_delete] = STATE(198), + [sym_superscript] = STATE(198), + [sym_subscript] = STATE(198), + [sym_footnote_reference] = STATE(198), + [sym__image] = STATE(198), + [sym_full_reference_image] = STATE(198), + [sym_collapsed_reference_image] = STATE(198), + [sym_inline_image] = STATE(198), + [sym__image_description] = STATE(689), + [sym__link] = STATE(198), + [sym_full_reference_link] = STATE(198), + [sym_collapsed_reference_link] = STATE(198), + [sym_inline_link] = STATE(198), + [sym_link_text] = STATE(694), + [sym__comment_with_spaces] = STATE(198), + [sym_span] = STATE(198), + [sym_raw_inline] = STATE(198), + [sym_math] = STATE(198), + [sym_verbatim] = STATE(198), + [sym__todo_highlights] = STATE(198), + [sym_todo] = STATE(198), + [sym_note] = STATE(198), + [sym__symbol_fallback] = STATE(198), + [aux_sym__text] = STATE(168), + [aux_sym__inline_repeat1] = STATE(100), [anon_sym_LBRACE_] = ACTIONS(3), [anon_sym__] = ACTIONS(5), [anon_sym_LBRACE_STAR] = ACTIONS(7), @@ -8460,42 +7969,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(47), }, [2] = { - [sym__inline] = STATE(917), + [sym__inline] = STATE(915), [sym__element] = STATE(118), - [sym_emphasis] = STATE(204), - [sym_emphasis_begin] = STATE(1017), - [sym_strong] = STATE(204), - [sym_strong_begin] = STATE(114), - [sym__hard_line_break] = STATE(204), - [sym_hard_line_break] = STATE(204), - [sym__smart_punctuation] = STATE(204), - [sym_autolink] = STATE(204), - [sym_highlighted] = STATE(204), - [sym_insert] = STATE(204), - [sym_delete] = STATE(204), - [sym_superscript] = STATE(204), - [sym_subscript] = STATE(204), - [sym_footnote_reference] = STATE(204), - [sym__image] = STATE(204), - [sym_full_reference_image] = STATE(204), - [sym_collapsed_reference_image] = STATE(204), - [sym_inline_image] = STATE(204), - [sym__image_description] = STATE(714), - [sym__link] = STATE(204), - [sym_full_reference_link] = STATE(204), - [sym_collapsed_reference_link] = STATE(204), - [sym_inline_link] = STATE(204), - [sym_link_text] = STATE(715), - [sym__comment_with_spaces] = STATE(204), - [sym_span] = STATE(204), - [sym_raw_inline] = STATE(204), - [sym_math] = STATE(204), - [sym_verbatim] = STATE(204), - [sym__todo_highlights] = STATE(204), - [sym_todo] = STATE(204), - [sym_note] = STATE(204), - [sym__symbol_fallback] = STATE(204), - [aux_sym__text] = STATE(149), + [sym_emphasis] = STATE(201), + [sym_emphasis_begin] = STATE(1005), + [sym_strong] = STATE(201), + [sym_strong_begin] = STATE(105), + [sym__hard_line_break] = STATE(201), + [sym_hard_line_break] = STATE(201), + [sym__smart_punctuation] = STATE(201), + [sym_autolink] = STATE(201), + [sym_highlighted] = STATE(201), + [sym_insert] = STATE(201), + [sym_delete] = STATE(201), + [sym_superscript] = STATE(201), + [sym_subscript] = STATE(201), + [sym_footnote_reference] = STATE(201), + [sym__image] = STATE(201), + [sym_full_reference_image] = STATE(201), + [sym_collapsed_reference_image] = STATE(201), + [sym_inline_image] = STATE(201), + [sym__image_description] = STATE(712), + [sym__link] = STATE(201), + [sym_full_reference_link] = STATE(201), + [sym_collapsed_reference_link] = STATE(201), + [sym_inline_link] = STATE(201), + [sym_link_text] = STATE(717), + [sym__comment_with_spaces] = STATE(201), + [sym_span] = STATE(201), + [sym_raw_inline] = STATE(201), + [sym_math] = STATE(201), + [sym_verbatim] = STATE(201), + [sym__todo_highlights] = STATE(201), + [sym_todo] = STATE(201), + [sym_note] = STATE(201), + [sym__symbol_fallback] = STATE(201), + [aux_sym__text] = STATE(139), [aux_sym__inline_repeat1] = STATE(118), [anon_sym_LBRACE] = ACTIONS(49), [anon_sym_LBRACE_] = ACTIONS(51), @@ -8512,69 +8021,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_EQ] = ACTIONS(75), [anon_sym_LBRACE_PLUS] = ACTIONS(78), [anon_sym_LBRACE_DASH] = ACTIONS(81), - [anon_sym_DASH_RBRACE] = ACTIONS(84), [sym_symbol] = ACTIONS(66), - [anon_sym_LBRACE_CARET] = ACTIONS(86), - [anon_sym_CARET] = ACTIONS(86), - [anon_sym_LBRACE_TILDE] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_LBRACK_CARET] = ACTIONS(92), - [anon_sym_RBRACK] = ACTIONS(95), - [anon_sym_BANG_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK] = ACTIONS(100), + [anon_sym_LBRACE_CARET] = ACTIONS(84), + [anon_sym_CARET] = ACTIONS(84), + [anon_sym_LBRACE_TILDE] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(90), + [anon_sym_TILDE_RBRACE] = ACTIONS(93), + [anon_sym_LBRACK_CARET] = ACTIONS(95), + [anon_sym_RBRACK] = ACTIONS(98), + [anon_sym_BANG_LBRACK] = ACTIONS(100), + [anon_sym_LBRACK] = ACTIONS(103), [anon_sym_LBRACE2] = ACTIONS(69), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_TODO] = ACTIONS(106), - [anon_sym_WIP] = ACTIONS(106), - [anon_sym_NOTE] = ACTIONS(109), - [anon_sym_INFO] = ACTIONS(109), - [anon_sym_XXX] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(106), + [anon_sym_TODO] = ACTIONS(109), + [anon_sym_WIP] = ACTIONS(109), + [anon_sym_NOTE] = ACTIONS(112), + [anon_sym_INFO] = ACTIONS(112), + [anon_sym_XXX] = ACTIONS(112), [sym_fixme] = ACTIONS(66), [anon_sym_PIPE] = ACTIONS(66), - [sym__whitespace1] = ACTIONS(112), - [sym__newline] = ACTIONS(115), - [aux_sym__text_token1] = ACTIONS(118), - [sym__verbatim_begin] = ACTIONS(121), + [sym__whitespace1] = ACTIONS(115), + [sym__newline] = ACTIONS(118), + [aux_sym__text_token1] = ACTIONS(121), + [sym__verbatim_begin] = ACTIONS(124), }, [3] = { - [sym__inline] = STATE(917), + [sym__inline] = STATE(915), [sym__element] = STATE(118), - [sym_emphasis] = STATE(204), - [sym_emphasis_begin] = STATE(1017), - [sym_strong] = STATE(204), - [sym_strong_begin] = STATE(114), - [sym__hard_line_break] = STATE(204), - [sym_hard_line_break] = STATE(204), - [sym__smart_punctuation] = STATE(204), - [sym_autolink] = STATE(204), - [sym_highlighted] = STATE(204), - [sym_insert] = STATE(204), - [sym_delete] = STATE(204), - [sym_superscript] = STATE(204), - [sym_subscript] = STATE(204), - [sym_footnote_reference] = STATE(204), - [sym__image] = STATE(204), - [sym_full_reference_image] = STATE(204), - [sym_collapsed_reference_image] = STATE(204), - [sym_inline_image] = STATE(204), - [sym__image_description] = STATE(714), - [sym__link] = STATE(204), - [sym_full_reference_link] = STATE(204), - [sym_collapsed_reference_link] = STATE(204), - [sym_inline_link] = STATE(204), - [sym_link_text] = STATE(715), - [sym__comment_with_spaces] = STATE(204), - [sym_span] = STATE(204), - [sym_raw_inline] = STATE(204), - [sym_math] = STATE(204), - [sym_verbatim] = STATE(204), - [sym__todo_highlights] = STATE(204), - [sym_todo] = STATE(204), - [sym_note] = STATE(204), - [sym__symbol_fallback] = STATE(204), - [aux_sym__text] = STATE(149), + [sym_emphasis] = STATE(201), + [sym_emphasis_begin] = STATE(1005), + [sym_strong] = STATE(201), + [sym_strong_begin] = STATE(105), + [sym__hard_line_break] = STATE(201), + [sym_hard_line_break] = STATE(201), + [sym__smart_punctuation] = STATE(201), + [sym_autolink] = STATE(201), + [sym_highlighted] = STATE(201), + [sym_insert] = STATE(201), + [sym_delete] = STATE(201), + [sym_superscript] = STATE(201), + [sym_subscript] = STATE(201), + [sym_footnote_reference] = STATE(201), + [sym__image] = STATE(201), + [sym_full_reference_image] = STATE(201), + [sym_collapsed_reference_image] = STATE(201), + [sym_inline_image] = STATE(201), + [sym__image_description] = STATE(712), + [sym__link] = STATE(201), + [sym_full_reference_link] = STATE(201), + [sym_collapsed_reference_link] = STATE(201), + [sym_inline_link] = STATE(201), + [sym_link_text] = STATE(717), + [sym__comment_with_spaces] = STATE(201), + [sym_span] = STATE(201), + [sym_raw_inline] = STATE(201), + [sym_math] = STATE(201), + [sym_verbatim] = STATE(201), + [sym__todo_highlights] = STATE(201), + [sym_todo] = STATE(201), + [sym_note] = STATE(201), + [sym__symbol_fallback] = STATE(201), + [aux_sym__text] = STATE(139), [aux_sym__inline_repeat1] = STATE(118), - [ts_builtin_sym_end] = ACTIONS(84), [anon_sym_LBRACE] = ACTIONS(49), [anon_sym_LBRACE_] = ACTIONS(51), [anon_sym__] = ACTIONS(54), @@ -8590,67 +8098,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_EQ] = ACTIONS(75), [anon_sym_LBRACE_PLUS] = ACTIONS(78), [anon_sym_LBRACE_DASH] = ACTIONS(81), + [anon_sym_DASH_RBRACE] = ACTIONS(93), [sym_symbol] = ACTIONS(66), - [anon_sym_LBRACE_CARET] = ACTIONS(86), - [anon_sym_CARET] = ACTIONS(86), - [anon_sym_LBRACE_TILDE] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_LBRACK_CARET] = ACTIONS(92), - [anon_sym_RBRACK] = ACTIONS(95), - [anon_sym_BANG_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK] = ACTIONS(100), + [anon_sym_LBRACE_CARET] = ACTIONS(84), + [anon_sym_CARET] = ACTIONS(84), + [anon_sym_LBRACE_TILDE] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_LBRACK_CARET] = ACTIONS(95), + [anon_sym_RBRACK] = ACTIONS(98), + [anon_sym_BANG_LBRACK] = ACTIONS(100), + [anon_sym_LBRACK] = ACTIONS(103), [anon_sym_LBRACE2] = ACTIONS(69), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_TODO] = ACTIONS(106), - [anon_sym_WIP] = ACTIONS(106), - [anon_sym_NOTE] = ACTIONS(109), - [anon_sym_INFO] = ACTIONS(109), - [anon_sym_XXX] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(106), + [anon_sym_TODO] = ACTIONS(109), + [anon_sym_WIP] = ACTIONS(109), + [anon_sym_NOTE] = ACTIONS(112), + [anon_sym_INFO] = ACTIONS(112), + [anon_sym_XXX] = ACTIONS(112), [sym_fixme] = ACTIONS(66), [anon_sym_PIPE] = ACTIONS(66), - [sym__whitespace1] = ACTIONS(112), - [sym__newline] = ACTIONS(115), - [aux_sym__text_token1] = ACTIONS(118), - [sym__verbatim_begin] = ACTIONS(121), + [sym__whitespace1] = ACTIONS(115), + [sym__newline] = ACTIONS(118), + [aux_sym__text_token1] = ACTIONS(121), + [sym__verbatim_begin] = ACTIONS(124), }, [4] = { - [sym__inline] = STATE(917), + [sym__inline] = STATE(915), [sym__element] = STATE(118), - [sym_emphasis] = STATE(204), - [sym_emphasis_begin] = STATE(1017), - [sym_strong] = STATE(204), - [sym_strong_begin] = STATE(114), - [sym__hard_line_break] = STATE(204), - [sym_hard_line_break] = STATE(204), - [sym__smart_punctuation] = STATE(204), - [sym_autolink] = STATE(204), - [sym_highlighted] = STATE(204), - [sym_insert] = STATE(204), - [sym_delete] = STATE(204), - [sym_superscript] = STATE(204), - [sym_subscript] = STATE(204), - [sym_footnote_reference] = STATE(204), - [sym__image] = STATE(204), - [sym_full_reference_image] = STATE(204), - [sym_collapsed_reference_image] = STATE(204), - [sym_inline_image] = STATE(204), - [sym__image_description] = STATE(714), - [sym__link] = STATE(204), - [sym_full_reference_link] = STATE(204), - [sym_collapsed_reference_link] = STATE(204), - [sym_inline_link] = STATE(204), - [sym_link_text] = STATE(715), - [sym__comment_with_spaces] = STATE(204), - [sym_span] = STATE(204), - [sym_raw_inline] = STATE(204), - [sym_math] = STATE(204), - [sym_verbatim] = STATE(204), - [sym__todo_highlights] = STATE(204), - [sym_todo] = STATE(204), - [sym_note] = STATE(204), - [sym__symbol_fallback] = STATE(204), - [aux_sym__text] = STATE(149), + [sym_emphasis] = STATE(201), + [sym_emphasis_begin] = STATE(1005), + [sym_strong] = STATE(201), + [sym_strong_begin] = STATE(105), + [sym__hard_line_break] = STATE(201), + [sym_hard_line_break] = STATE(201), + [sym__smart_punctuation] = STATE(201), + [sym_autolink] = STATE(201), + [sym_highlighted] = STATE(201), + [sym_insert] = STATE(201), + [sym_delete] = STATE(201), + [sym_superscript] = STATE(201), + [sym_subscript] = STATE(201), + [sym_footnote_reference] = STATE(201), + [sym__image] = STATE(201), + [sym_full_reference_image] = STATE(201), + [sym_collapsed_reference_image] = STATE(201), + [sym_inline_image] = STATE(201), + [sym__image_description] = STATE(712), + [sym__link] = STATE(201), + [sym_full_reference_link] = STATE(201), + [sym_collapsed_reference_link] = STATE(201), + [sym_inline_link] = STATE(201), + [sym_link_text] = STATE(717), + [sym__comment_with_spaces] = STATE(201), + [sym_span] = STATE(201), + [sym_raw_inline] = STATE(201), + [sym_math] = STATE(201), + [sym_verbatim] = STATE(201), + [sym__todo_highlights] = STATE(201), + [sym_todo] = STATE(201), + [sym_note] = STATE(201), + [sym__symbol_fallback] = STATE(201), + [aux_sym__text] = STATE(139), [aux_sym__inline_repeat1] = STATE(118), + [ts_builtin_sym_end] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(49), [anon_sym_LBRACE_] = ACTIONS(51), [anon_sym__] = ACTIONS(54), @@ -8665,68 +8175,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(72), [anon_sym_LBRACE_EQ] = ACTIONS(75), [anon_sym_LBRACE_PLUS] = ACTIONS(78), - [anon_sym_PLUS_RBRACE] = ACTIONS(84), [anon_sym_LBRACE_DASH] = ACTIONS(81), [sym_symbol] = ACTIONS(66), - [anon_sym_LBRACE_CARET] = ACTIONS(86), - [anon_sym_CARET] = ACTIONS(86), - [anon_sym_LBRACE_TILDE] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_LBRACK_CARET] = ACTIONS(92), - [anon_sym_RBRACK] = ACTIONS(95), - [anon_sym_BANG_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK] = ACTIONS(100), + [anon_sym_LBRACE_CARET] = ACTIONS(84), + [anon_sym_CARET] = ACTIONS(84), + [anon_sym_LBRACE_TILDE] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_LBRACK_CARET] = ACTIONS(95), + [anon_sym_RBRACK] = ACTIONS(98), + [anon_sym_BANG_LBRACK] = ACTIONS(100), + [anon_sym_LBRACK] = ACTIONS(103), [anon_sym_LBRACE2] = ACTIONS(69), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_TODO] = ACTIONS(106), - [anon_sym_WIP] = ACTIONS(106), - [anon_sym_NOTE] = ACTIONS(109), - [anon_sym_INFO] = ACTIONS(109), - [anon_sym_XXX] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(106), + [anon_sym_TODO] = ACTIONS(109), + [anon_sym_WIP] = ACTIONS(109), + [anon_sym_NOTE] = ACTIONS(112), + [anon_sym_INFO] = ACTIONS(112), + [anon_sym_XXX] = ACTIONS(112), [sym_fixme] = ACTIONS(66), [anon_sym_PIPE] = ACTIONS(66), - [sym__whitespace1] = ACTIONS(112), - [sym__newline] = ACTIONS(115), - [aux_sym__text_token1] = ACTIONS(118), - [sym__verbatim_begin] = ACTIONS(121), + [sym__whitespace1] = ACTIONS(115), + [sym__newline] = ACTIONS(118), + [aux_sym__text_token1] = ACTIONS(121), + [sym__verbatim_begin] = ACTIONS(124), }, [5] = { - [sym__inline] = STATE(917), + [sym__inline] = STATE(915), [sym__element] = STATE(118), - [sym_emphasis] = STATE(204), - [sym_emphasis_begin] = STATE(1017), - [sym_strong] = STATE(204), - [sym_strong_begin] = STATE(114), - [sym__hard_line_break] = STATE(204), - [sym_hard_line_break] = STATE(204), - [sym__smart_punctuation] = STATE(204), - [sym_autolink] = STATE(204), - [sym_highlighted] = STATE(204), - [sym_insert] = STATE(204), - [sym_delete] = STATE(204), - [sym_superscript] = STATE(204), - [sym_subscript] = STATE(204), - [sym_footnote_reference] = STATE(204), - [sym__image] = STATE(204), - [sym_full_reference_image] = STATE(204), - [sym_collapsed_reference_image] = STATE(204), - [sym_inline_image] = STATE(204), - [sym__image_description] = STATE(714), - [sym__link] = STATE(204), - [sym_full_reference_link] = STATE(204), - [sym_collapsed_reference_link] = STATE(204), - [sym_inline_link] = STATE(204), - [sym_link_text] = STATE(715), - [sym__comment_with_spaces] = STATE(204), - [sym_span] = STATE(204), - [sym_raw_inline] = STATE(204), - [sym_math] = STATE(204), - [sym_verbatim] = STATE(204), - [sym__todo_highlights] = STATE(204), - [sym_todo] = STATE(204), - [sym_note] = STATE(204), - [sym__symbol_fallback] = STATE(204), - [aux_sym__text] = STATE(149), + [sym_emphasis] = STATE(201), + [sym_emphasis_begin] = STATE(1005), + [sym_strong] = STATE(201), + [sym_strong_begin] = STATE(105), + [sym__hard_line_break] = STATE(201), + [sym_hard_line_break] = STATE(201), + [sym__smart_punctuation] = STATE(201), + [sym_autolink] = STATE(201), + [sym_highlighted] = STATE(201), + [sym_insert] = STATE(201), + [sym_delete] = STATE(201), + [sym_superscript] = STATE(201), + [sym_subscript] = STATE(201), + [sym_footnote_reference] = STATE(201), + [sym__image] = STATE(201), + [sym_full_reference_image] = STATE(201), + [sym_collapsed_reference_image] = STATE(201), + [sym_inline_image] = STATE(201), + [sym__image_description] = STATE(712), + [sym__link] = STATE(201), + [sym_full_reference_link] = STATE(201), + [sym_collapsed_reference_link] = STATE(201), + [sym_inline_link] = STATE(201), + [sym_link_text] = STATE(717), + [sym__comment_with_spaces] = STATE(201), + [sym_span] = STATE(201), + [sym_raw_inline] = STATE(201), + [sym_math] = STATE(201), + [sym_verbatim] = STATE(201), + [sym__todo_highlights] = STATE(201), + [sym_todo] = STATE(201), + [sym_note] = STATE(201), + [sym__symbol_fallback] = STATE(201), + [aux_sym__text] = STATE(139), [aux_sym__inline_repeat1] = STATE(118), [anon_sym_LBRACE] = ACTIONS(49), [anon_sym_LBRACE_] = ACTIONS(51), @@ -8744,66 +8253,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PLUS] = ACTIONS(78), [anon_sym_LBRACE_DASH] = ACTIONS(81), [sym_symbol] = ACTIONS(66), - [anon_sym_LBRACE_CARET] = ACTIONS(86), - [anon_sym_CARET] = ACTIONS(124), - [anon_sym_CARET_RBRACE] = ACTIONS(84), - [anon_sym_LBRACE_TILDE] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_LBRACK_CARET] = ACTIONS(92), - [anon_sym_RBRACK] = ACTIONS(95), - [anon_sym_BANG_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK] = ACTIONS(100), + [anon_sym_LBRACE_CARET] = ACTIONS(84), + [anon_sym_CARET] = ACTIONS(127), + [anon_sym_CARET_RBRACE] = ACTIONS(93), + [anon_sym_LBRACE_TILDE] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_LBRACK_CARET] = ACTIONS(95), + [anon_sym_RBRACK] = ACTIONS(98), + [anon_sym_BANG_LBRACK] = ACTIONS(100), + [anon_sym_LBRACK] = ACTIONS(103), [anon_sym_LBRACE2] = ACTIONS(69), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_TODO] = ACTIONS(106), - [anon_sym_WIP] = ACTIONS(106), - [anon_sym_NOTE] = ACTIONS(109), - [anon_sym_INFO] = ACTIONS(109), - [anon_sym_XXX] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(106), + [anon_sym_TODO] = ACTIONS(109), + [anon_sym_WIP] = ACTIONS(109), + [anon_sym_NOTE] = ACTIONS(112), + [anon_sym_INFO] = ACTIONS(112), + [anon_sym_XXX] = ACTIONS(112), [sym_fixme] = ACTIONS(66), [anon_sym_PIPE] = ACTIONS(66), - [sym__whitespace1] = ACTIONS(112), - [sym__newline] = ACTIONS(115), - [aux_sym__text_token1] = ACTIONS(118), - [sym__verbatim_begin] = ACTIONS(121), + [sym__whitespace1] = ACTIONS(115), + [sym__newline] = ACTIONS(118), + [aux_sym__text_token1] = ACTIONS(121), + [sym__verbatim_begin] = ACTIONS(124), }, [6] = { - [sym__inline] = STATE(917), + [sym__inline] = STATE(915), [sym__element] = STATE(118), - [sym_emphasis] = STATE(204), - [sym_emphasis_begin] = STATE(1017), - [sym_strong] = STATE(204), - [sym_strong_begin] = STATE(114), - [sym__hard_line_break] = STATE(204), - [sym_hard_line_break] = STATE(204), - [sym__smart_punctuation] = STATE(204), - [sym_autolink] = STATE(204), - [sym_highlighted] = STATE(204), - [sym_insert] = STATE(204), - [sym_delete] = STATE(204), - [sym_superscript] = STATE(204), - [sym_subscript] = STATE(204), - [sym_footnote_reference] = STATE(204), - [sym__image] = STATE(204), - [sym_full_reference_image] = STATE(204), - [sym_collapsed_reference_image] = STATE(204), - [sym_inline_image] = STATE(204), - [sym__image_description] = STATE(714), - [sym__link] = STATE(204), - [sym_full_reference_link] = STATE(204), - [sym_collapsed_reference_link] = STATE(204), - [sym_inline_link] = STATE(204), - [sym_link_text] = STATE(715), - [sym__comment_with_spaces] = STATE(204), - [sym_span] = STATE(204), - [sym_raw_inline] = STATE(204), - [sym_math] = STATE(204), - [sym_verbatim] = STATE(204), - [sym__todo_highlights] = STATE(204), - [sym_todo] = STATE(204), - [sym_note] = STATE(204), - [sym__symbol_fallback] = STATE(204), - [aux_sym__text] = STATE(149), + [sym_emphasis] = STATE(201), + [sym_emphasis_begin] = STATE(1005), + [sym_strong] = STATE(201), + [sym_strong_begin] = STATE(105), + [sym__hard_line_break] = STATE(201), + [sym_hard_line_break] = STATE(201), + [sym__smart_punctuation] = STATE(201), + [sym_autolink] = STATE(201), + [sym_highlighted] = STATE(201), + [sym_insert] = STATE(201), + [sym_delete] = STATE(201), + [sym_superscript] = STATE(201), + [sym_subscript] = STATE(201), + [sym_footnote_reference] = STATE(201), + [sym__image] = STATE(201), + [sym_full_reference_image] = STATE(201), + [sym_collapsed_reference_image] = STATE(201), + [sym_inline_image] = STATE(201), + [sym__image_description] = STATE(712), + [sym__link] = STATE(201), + [sym_full_reference_link] = STATE(201), + [sym_collapsed_reference_link] = STATE(201), + [sym_inline_link] = STATE(201), + [sym_link_text] = STATE(717), + [sym__comment_with_spaces] = STATE(201), + [sym_span] = STATE(201), + [sym_raw_inline] = STATE(201), + [sym_math] = STATE(201), + [sym_verbatim] = STATE(201), + [sym__todo_highlights] = STATE(201), + [sym_todo] = STATE(201), + [sym_note] = STATE(201), + [sym__symbol_fallback] = STATE(201), + [aux_sym__text] = STATE(139), [aux_sym__inline_repeat1] = STATE(118), [anon_sym_LBRACE] = ACTIONS(49), [anon_sym_LBRACE_] = ACTIONS(51), @@ -8819,73 +8328,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(72), [anon_sym_LBRACE_EQ] = ACTIONS(75), [anon_sym_LBRACE_PLUS] = ACTIONS(78), + [anon_sym_PLUS_RBRACE] = ACTIONS(93), [anon_sym_LBRACE_DASH] = ACTIONS(81), [sym_symbol] = ACTIONS(66), - [anon_sym_LBRACE_CARET] = ACTIONS(86), - [anon_sym_CARET] = ACTIONS(86), - [anon_sym_LBRACE_TILDE] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_LBRACK_CARET] = ACTIONS(92), - [anon_sym_RBRACK] = ACTIONS(127), - [anon_sym_BANG_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK] = ACTIONS(100), - [anon_sym_RBRACK2] = ACTIONS(84), + [anon_sym_LBRACE_CARET] = ACTIONS(84), + [anon_sym_CARET] = ACTIONS(84), + [anon_sym_LBRACE_TILDE] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_LBRACK_CARET] = ACTIONS(95), + [anon_sym_RBRACK] = ACTIONS(98), + [anon_sym_BANG_LBRACK] = ACTIONS(100), + [anon_sym_LBRACK] = ACTIONS(103), [anon_sym_LBRACE2] = ACTIONS(69), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_TODO] = ACTIONS(106), - [anon_sym_WIP] = ACTIONS(106), - [anon_sym_NOTE] = ACTIONS(109), - [anon_sym_INFO] = ACTIONS(109), - [anon_sym_XXX] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(106), + [anon_sym_TODO] = ACTIONS(109), + [anon_sym_WIP] = ACTIONS(109), + [anon_sym_NOTE] = ACTIONS(112), + [anon_sym_INFO] = ACTIONS(112), + [anon_sym_XXX] = ACTIONS(112), [sym_fixme] = ACTIONS(66), [anon_sym_PIPE] = ACTIONS(66), - [sym__whitespace1] = ACTIONS(112), - [sym__newline] = ACTIONS(115), - [aux_sym__text_token1] = ACTIONS(118), - [sym__verbatim_begin] = ACTIONS(121), + [sym__whitespace1] = ACTIONS(115), + [sym__newline] = ACTIONS(118), + [aux_sym__text_token1] = ACTIONS(121), + [sym__verbatim_begin] = ACTIONS(124), }, [7] = { - [sym__inline] = STATE(917), + [sym__inline] = STATE(915), [sym__element] = STATE(118), - [sym_emphasis] = STATE(204), - [sym_emphasis_begin] = STATE(1017), - [sym_strong] = STATE(204), - [sym_strong_begin] = STATE(114), - [sym__hard_line_break] = STATE(204), - [sym_hard_line_break] = STATE(204), - [sym__smart_punctuation] = STATE(204), - [sym_autolink] = STATE(204), - [sym_highlighted] = STATE(204), - [sym_insert] = STATE(204), - [sym_delete] = STATE(204), - [sym_superscript] = STATE(204), - [sym_subscript] = STATE(204), - [sym_footnote_reference] = STATE(204), - [sym__image] = STATE(204), - [sym_full_reference_image] = STATE(204), - [sym_collapsed_reference_image] = STATE(204), - [sym_inline_image] = STATE(204), - [sym__image_description] = STATE(714), - [sym__link] = STATE(204), - [sym_full_reference_link] = STATE(204), - [sym_collapsed_reference_link] = STATE(204), - [sym_inline_link] = STATE(204), - [sym_link_text] = STATE(715), - [sym__comment_with_spaces] = STATE(204), - [sym_span] = STATE(204), - [sym_raw_inline] = STATE(204), - [sym_math] = STATE(204), - [sym_verbatim] = STATE(204), - [sym__todo_highlights] = STATE(204), - [sym_todo] = STATE(204), - [sym_note] = STATE(204), - [sym__symbol_fallback] = STATE(204), - [aux_sym__text] = STATE(149), + [sym_emphasis] = STATE(201), + [sym_emphasis_begin] = STATE(1005), + [sym_strong] = STATE(201), + [sym_strong_begin] = STATE(105), + [sym__hard_line_break] = STATE(201), + [sym_hard_line_break] = STATE(201), + [sym__smart_punctuation] = STATE(201), + [sym_autolink] = STATE(201), + [sym_highlighted] = STATE(201), + [sym_insert] = STATE(201), + [sym_delete] = STATE(201), + [sym_superscript] = STATE(201), + [sym_subscript] = STATE(201), + [sym_footnote_reference] = STATE(201), + [sym__image] = STATE(201), + [sym_full_reference_image] = STATE(201), + [sym_collapsed_reference_image] = STATE(201), + [sym_inline_image] = STATE(201), + [sym__image_description] = STATE(712), + [sym__link] = STATE(201), + [sym_full_reference_link] = STATE(201), + [sym_collapsed_reference_link] = STATE(201), + [sym_inline_link] = STATE(201), + [sym_link_text] = STATE(717), + [sym__comment_with_spaces] = STATE(201), + [sym_span] = STATE(201), + [sym_raw_inline] = STATE(201), + [sym_math] = STATE(201), + [sym_verbatim] = STATE(201), + [sym__todo_highlights] = STATE(201), + [sym_todo] = STATE(201), + [sym_note] = STATE(201), + [sym__symbol_fallback] = STATE(201), + [aux_sym__text] = STATE(139), [aux_sym__inline_repeat1] = STATE(118), [anon_sym_LBRACE] = ACTIONS(49), [anon_sym_LBRACE_] = ACTIONS(51), - [anon_sym__] = ACTIONS(129), - [aux_sym_emphasis_end_token1] = ACTIONS(84), + [anon_sym__] = ACTIONS(54), [anon_sym_LBRACE_STAR] = ACTIONS(57), [anon_sym_STAR] = ACTIONS(60), [anon_sym_BSLASH] = ACTIONS(63), @@ -8899,72 +8407,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PLUS] = ACTIONS(78), [anon_sym_LBRACE_DASH] = ACTIONS(81), [sym_symbol] = ACTIONS(66), - [anon_sym_LBRACE_CARET] = ACTIONS(86), - [anon_sym_CARET] = ACTIONS(86), - [anon_sym_LBRACE_TILDE] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_LBRACK_CARET] = ACTIONS(92), - [anon_sym_RBRACK] = ACTIONS(95), - [anon_sym_BANG_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK] = ACTIONS(100), + [anon_sym_LBRACE_CARET] = ACTIONS(84), + [anon_sym_CARET] = ACTIONS(84), + [anon_sym_LBRACE_TILDE] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_LBRACK_CARET] = ACTIONS(95), + [anon_sym_RBRACK] = ACTIONS(130), + [anon_sym_BANG_LBRACK] = ACTIONS(100), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_RBRACK2] = ACTIONS(93), [anon_sym_LBRACE2] = ACTIONS(69), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_TODO] = ACTIONS(106), - [anon_sym_WIP] = ACTIONS(106), - [anon_sym_NOTE] = ACTIONS(109), - [anon_sym_INFO] = ACTIONS(109), - [anon_sym_XXX] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(106), + [anon_sym_TODO] = ACTIONS(109), + [anon_sym_WIP] = ACTIONS(109), + [anon_sym_NOTE] = ACTIONS(112), + [anon_sym_INFO] = ACTIONS(112), + [anon_sym_XXX] = ACTIONS(112), [sym_fixme] = ACTIONS(66), [anon_sym_PIPE] = ACTIONS(66), - [sym__whitespace1] = ACTIONS(132), - [sym__newline] = ACTIONS(115), - [aux_sym__text_token1] = ACTIONS(118), - [sym__verbatim_begin] = ACTIONS(121), + [sym__whitespace1] = ACTIONS(115), + [sym__newline] = ACTIONS(118), + [aux_sym__text_token1] = ACTIONS(121), + [sym__verbatim_begin] = ACTIONS(124), }, [8] = { - [sym__inline] = STATE(917), + [sym__inline] = STATE(915), [sym__element] = STATE(118), - [sym_emphasis] = STATE(204), - [sym_emphasis_begin] = STATE(1017), - [sym_strong] = STATE(204), - [sym_strong_begin] = STATE(114), - [sym__hard_line_break] = STATE(204), - [sym_hard_line_break] = STATE(204), - [sym__smart_punctuation] = STATE(204), - [sym_autolink] = STATE(204), - [sym_highlighted] = STATE(204), - [sym_insert] = STATE(204), - [sym_delete] = STATE(204), - [sym_superscript] = STATE(204), - [sym_subscript] = STATE(204), - [sym_footnote_reference] = STATE(204), - [sym__image] = STATE(204), - [sym_full_reference_image] = STATE(204), - [sym_collapsed_reference_image] = STATE(204), - [sym_inline_image] = STATE(204), - [sym__image_description] = STATE(714), - [sym__link] = STATE(204), - [sym_full_reference_link] = STATE(204), - [sym_collapsed_reference_link] = STATE(204), - [sym_inline_link] = STATE(204), - [sym_link_text] = STATE(715), - [sym__comment_with_spaces] = STATE(204), - [sym_span] = STATE(204), - [sym_raw_inline] = STATE(204), - [sym_math] = STATE(204), - [sym_verbatim] = STATE(204), - [sym__todo_highlights] = STATE(204), - [sym_todo] = STATE(204), - [sym_note] = STATE(204), - [sym__symbol_fallback] = STATE(204), - [aux_sym__text] = STATE(149), + [sym_emphasis] = STATE(201), + [sym_emphasis_begin] = STATE(1005), + [sym_strong] = STATE(201), + [sym_strong_begin] = STATE(105), + [sym__hard_line_break] = STATE(201), + [sym_hard_line_break] = STATE(201), + [sym__smart_punctuation] = STATE(201), + [sym_autolink] = STATE(201), + [sym_highlighted] = STATE(201), + [sym_insert] = STATE(201), + [sym_delete] = STATE(201), + [sym_superscript] = STATE(201), + [sym_subscript] = STATE(201), + [sym_footnote_reference] = STATE(201), + [sym__image] = STATE(201), + [sym_full_reference_image] = STATE(201), + [sym_collapsed_reference_image] = STATE(201), + [sym_inline_image] = STATE(201), + [sym__image_description] = STATE(712), + [sym__link] = STATE(201), + [sym_full_reference_link] = STATE(201), + [sym_collapsed_reference_link] = STATE(201), + [sym_inline_link] = STATE(201), + [sym_link_text] = STATE(717), + [sym__comment_with_spaces] = STATE(201), + [sym_span] = STATE(201), + [sym_raw_inline] = STATE(201), + [sym_math] = STATE(201), + [sym_verbatim] = STATE(201), + [sym__todo_highlights] = STATE(201), + [sym_todo] = STATE(201), + [sym_note] = STATE(201), + [sym__symbol_fallback] = STATE(201), + [aux_sym__text] = STATE(139), [aux_sym__inline_repeat1] = STATE(118), [anon_sym_LBRACE] = ACTIONS(49), [anon_sym_LBRACE_] = ACTIONS(51), [anon_sym__] = ACTIONS(54), [anon_sym_LBRACE_STAR] = ACTIONS(57), - [anon_sym_STAR] = ACTIONS(135), - [aux_sym_strong_end_token1] = ACTIONS(84), + [anon_sym_STAR] = ACTIONS(60), [anon_sym_BSLASH] = ACTIONS(63), [sym_quotation_marks] = ACTIONS(66), [sym_ellipsis] = ACTIONS(66), @@ -8976,71 +8484,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PLUS] = ACTIONS(78), [anon_sym_LBRACE_DASH] = ACTIONS(81), [sym_symbol] = ACTIONS(66), - [anon_sym_LBRACE_CARET] = ACTIONS(86), - [anon_sym_CARET] = ACTIONS(86), - [anon_sym_LBRACE_TILDE] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_LBRACK_CARET] = ACTIONS(92), - [anon_sym_RBRACK] = ACTIONS(95), - [anon_sym_BANG_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK] = ACTIONS(100), + [anon_sym_LBRACE_CARET] = ACTIONS(84), + [anon_sym_CARET] = ACTIONS(84), + [anon_sym_LBRACE_TILDE] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_LBRACK_CARET] = ACTIONS(95), + [anon_sym_RBRACK] = ACTIONS(98), + [anon_sym_BANG_LBRACK] = ACTIONS(100), + [anon_sym_LBRACK] = ACTIONS(103), [anon_sym_LBRACE2] = ACTIONS(69), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_TODO] = ACTIONS(106), - [anon_sym_WIP] = ACTIONS(106), - [anon_sym_NOTE] = ACTIONS(109), - [anon_sym_INFO] = ACTIONS(109), - [anon_sym_XXX] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(106), + [anon_sym_TODO] = ACTIONS(109), + [anon_sym_WIP] = ACTIONS(109), + [anon_sym_NOTE] = ACTIONS(112), + [anon_sym_INFO] = ACTIONS(112), + [anon_sym_XXX] = ACTIONS(112), [sym_fixme] = ACTIONS(66), [anon_sym_PIPE] = ACTIONS(66), - [sym__whitespace1] = ACTIONS(132), - [sym__newline] = ACTIONS(115), - [aux_sym__text_token1] = ACTIONS(118), - [sym__verbatim_begin] = ACTIONS(121), + [sym__whitespace1] = ACTIONS(115), + [sym__newline] = ACTIONS(118), + [aux_sym__text_token1] = ACTIONS(121), + [sym__verbatim_begin] = ACTIONS(124), + [sym_emphasis_end] = ACTIONS(93), }, [9] = { - [sym__inline] = STATE(917), + [sym__inline] = STATE(915), [sym__element] = STATE(118), - [sym_emphasis] = STATE(204), - [sym_emphasis_begin] = STATE(1017), - [sym_strong] = STATE(204), - [sym_strong_begin] = STATE(114), - [sym__hard_line_break] = STATE(204), - [sym_hard_line_break] = STATE(204), - [sym__smart_punctuation] = STATE(204), - [sym_autolink] = STATE(204), - [sym_highlighted] = STATE(204), - [sym_insert] = STATE(204), - [sym_delete] = STATE(204), - [sym_superscript] = STATE(204), - [sym_subscript] = STATE(204), - [sym_footnote_reference] = STATE(204), - [sym__image] = STATE(204), - [sym_full_reference_image] = STATE(204), - [sym_collapsed_reference_image] = STATE(204), - [sym_inline_image] = STATE(204), - [sym__image_description] = STATE(714), - [sym__link] = STATE(204), - [sym_full_reference_link] = STATE(204), - [sym_collapsed_reference_link] = STATE(204), - [sym_inline_link] = STATE(204), - [sym_link_text] = STATE(715), - [sym__comment_with_spaces] = STATE(204), - [sym_span] = STATE(204), - [sym_raw_inline] = STATE(204), - [sym_math] = STATE(204), - [sym_verbatim] = STATE(204), - [sym__todo_highlights] = STATE(204), - [sym_todo] = STATE(204), - [sym_note] = STATE(204), - [sym__symbol_fallback] = STATE(204), - [aux_sym__text] = STATE(149), + [sym_emphasis] = STATE(201), + [sym_emphasis_begin] = STATE(1005), + [sym_strong] = STATE(201), + [sym_strong_begin] = STATE(105), + [sym__hard_line_break] = STATE(201), + [sym_hard_line_break] = STATE(201), + [sym__smart_punctuation] = STATE(201), + [sym_autolink] = STATE(201), + [sym_highlighted] = STATE(201), + [sym_insert] = STATE(201), + [sym_delete] = STATE(201), + [sym_superscript] = STATE(201), + [sym_subscript] = STATE(201), + [sym_footnote_reference] = STATE(201), + [sym__image] = STATE(201), + [sym_full_reference_image] = STATE(201), + [sym_collapsed_reference_image] = STATE(201), + [sym_inline_image] = STATE(201), + [sym__image_description] = STATE(712), + [sym__link] = STATE(201), + [sym_full_reference_link] = STATE(201), + [sym_collapsed_reference_link] = STATE(201), + [sym_inline_link] = STATE(201), + [sym_link_text] = STATE(717), + [sym__comment_with_spaces] = STATE(201), + [sym_span] = STATE(201), + [sym_raw_inline] = STATE(201), + [sym_math] = STATE(201), + [sym_verbatim] = STATE(201), + [sym__todo_highlights] = STATE(201), + [sym_todo] = STATE(201), + [sym_note] = STATE(201), + [sym__symbol_fallback] = STATE(201), + [aux_sym__text] = STATE(139), [aux_sym__inline_repeat1] = STATE(118), [anon_sym_LBRACE] = ACTIONS(49), [anon_sym_LBRACE_] = ACTIONS(51), [anon_sym__] = ACTIONS(54), [anon_sym_LBRACE_STAR] = ACTIONS(57), - [anon_sym_STAR] = ACTIONS(60), + [anon_sym_STAR] = ACTIONS(132), + [aux_sym_strong_end_token1] = ACTIONS(93), [anon_sym_BSLASH] = ACTIONS(63), [sym_quotation_marks] = ACTIONS(66), [sym_ellipsis] = ACTIONS(66), @@ -9049,69 +8559,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_backslash_escape] = ACTIONS(69), [anon_sym_LT] = ACTIONS(72), [anon_sym_LBRACE_EQ] = ACTIONS(75), - [anon_sym_EQ_RBRACE] = ACTIONS(84), [anon_sym_LBRACE_PLUS] = ACTIONS(78), [anon_sym_LBRACE_DASH] = ACTIONS(81), [sym_symbol] = ACTIONS(66), - [anon_sym_LBRACE_CARET] = ACTIONS(86), - [anon_sym_CARET] = ACTIONS(86), - [anon_sym_LBRACE_TILDE] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_LBRACK_CARET] = ACTIONS(92), - [anon_sym_RBRACK] = ACTIONS(95), - [anon_sym_BANG_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK] = ACTIONS(100), + [anon_sym_LBRACE_CARET] = ACTIONS(84), + [anon_sym_CARET] = ACTIONS(84), + [anon_sym_LBRACE_TILDE] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_LBRACK_CARET] = ACTIONS(95), + [anon_sym_RBRACK] = ACTIONS(98), + [anon_sym_BANG_LBRACK] = ACTIONS(100), + [anon_sym_LBRACK] = ACTIONS(103), [anon_sym_LBRACE2] = ACTIONS(69), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_TODO] = ACTIONS(106), - [anon_sym_WIP] = ACTIONS(106), - [anon_sym_NOTE] = ACTIONS(109), - [anon_sym_INFO] = ACTIONS(109), - [anon_sym_XXX] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(106), + [anon_sym_TODO] = ACTIONS(109), + [anon_sym_WIP] = ACTIONS(109), + [anon_sym_NOTE] = ACTIONS(112), + [anon_sym_INFO] = ACTIONS(112), + [anon_sym_XXX] = ACTIONS(112), [sym_fixme] = ACTIONS(66), [anon_sym_PIPE] = ACTIONS(66), - [sym__whitespace1] = ACTIONS(112), - [sym__newline] = ACTIONS(115), - [aux_sym__text_token1] = ACTIONS(118), - [sym__verbatim_begin] = ACTIONS(121), + [sym__whitespace1] = ACTIONS(135), + [sym__newline] = ACTIONS(118), + [aux_sym__text_token1] = ACTIONS(121), + [sym__verbatim_begin] = ACTIONS(124), }, [10] = { - [sym__inline] = STATE(917), + [sym__inline] = STATE(915), [sym__element] = STATE(118), - [sym_emphasis] = STATE(204), - [sym_emphasis_begin] = STATE(1017), - [sym_strong] = STATE(204), - [sym_strong_begin] = STATE(114), - [sym__hard_line_break] = STATE(204), - [sym_hard_line_break] = STATE(204), - [sym__smart_punctuation] = STATE(204), - [sym_autolink] = STATE(204), - [sym_highlighted] = STATE(204), - [sym_insert] = STATE(204), - [sym_delete] = STATE(204), - [sym_superscript] = STATE(204), - [sym_subscript] = STATE(204), - [sym_footnote_reference] = STATE(204), - [sym__image] = STATE(204), - [sym_full_reference_image] = STATE(204), - [sym_collapsed_reference_image] = STATE(204), - [sym_inline_image] = STATE(204), - [sym__image_description] = STATE(714), - [sym__link] = STATE(204), - [sym_full_reference_link] = STATE(204), - [sym_collapsed_reference_link] = STATE(204), - [sym_inline_link] = STATE(204), - [sym_link_text] = STATE(715), - [sym__comment_with_spaces] = STATE(204), - [sym_span] = STATE(204), - [sym_raw_inline] = STATE(204), - [sym_math] = STATE(204), - [sym_verbatim] = STATE(204), - [sym__todo_highlights] = STATE(204), - [sym_todo] = STATE(204), - [sym_note] = STATE(204), - [sym__symbol_fallback] = STATE(204), - [aux_sym__text] = STATE(149), + [sym_emphasis] = STATE(201), + [sym_emphasis_begin] = STATE(1005), + [sym_strong] = STATE(201), + [sym_strong_begin] = STATE(105), + [sym__hard_line_break] = STATE(201), + [sym_hard_line_break] = STATE(201), + [sym__smart_punctuation] = STATE(201), + [sym_autolink] = STATE(201), + [sym_highlighted] = STATE(201), + [sym_insert] = STATE(201), + [sym_delete] = STATE(201), + [sym_superscript] = STATE(201), + [sym_subscript] = STATE(201), + [sym_footnote_reference] = STATE(201), + [sym__image] = STATE(201), + [sym_full_reference_image] = STATE(201), + [sym_collapsed_reference_image] = STATE(201), + [sym_inline_image] = STATE(201), + [sym__image_description] = STATE(712), + [sym__link] = STATE(201), + [sym_full_reference_link] = STATE(201), + [sym_collapsed_reference_link] = STATE(201), + [sym_inline_link] = STATE(201), + [sym_link_text] = STATE(717), + [sym__comment_with_spaces] = STATE(201), + [sym_span] = STATE(201), + [sym_raw_inline] = STATE(201), + [sym_math] = STATE(201), + [sym_verbatim] = STATE(201), + [sym__todo_highlights] = STATE(201), + [sym_todo] = STATE(201), + [sym_note] = STATE(201), + [sym__symbol_fallback] = STATE(201), + [aux_sym__text] = STATE(139), [aux_sym__inline_repeat1] = STATE(118), [anon_sym_LBRACE] = ACTIONS(49), [anon_sym_LBRACE_] = ACTIONS(51), @@ -9126,222 +8635,298 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_backslash_escape] = ACTIONS(69), [anon_sym_LT] = ACTIONS(72), [anon_sym_LBRACE_EQ] = ACTIONS(75), + [anon_sym_EQ_RBRACE] = ACTIONS(93), [anon_sym_LBRACE_PLUS] = ACTIONS(78), [anon_sym_LBRACE_DASH] = ACTIONS(81), [sym_symbol] = ACTIONS(66), - [anon_sym_LBRACE_CARET] = ACTIONS(86), - [anon_sym_CARET] = ACTIONS(86), - [anon_sym_LBRACE_TILDE] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(138), - [anon_sym_TILDE_RBRACE] = ACTIONS(84), - [anon_sym_LBRACK_CARET] = ACTIONS(92), - [anon_sym_RBRACK] = ACTIONS(95), - [anon_sym_BANG_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK] = ACTIONS(100), + [anon_sym_LBRACE_CARET] = ACTIONS(84), + [anon_sym_CARET] = ACTIONS(84), + [anon_sym_LBRACE_TILDE] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_LBRACK_CARET] = ACTIONS(95), + [anon_sym_RBRACK] = ACTIONS(98), + [anon_sym_BANG_LBRACK] = ACTIONS(100), + [anon_sym_LBRACK] = ACTIONS(103), [anon_sym_LBRACE2] = ACTIONS(69), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_TODO] = ACTIONS(106), - [anon_sym_WIP] = ACTIONS(106), - [anon_sym_NOTE] = ACTIONS(109), - [anon_sym_INFO] = ACTIONS(109), - [anon_sym_XXX] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(106), + [anon_sym_TODO] = ACTIONS(109), + [anon_sym_WIP] = ACTIONS(109), + [anon_sym_NOTE] = ACTIONS(112), + [anon_sym_INFO] = ACTIONS(112), + [anon_sym_XXX] = ACTIONS(112), [sym_fixme] = ACTIONS(66), [anon_sym_PIPE] = ACTIONS(66), - [sym__whitespace1] = ACTIONS(112), - [sym__newline] = ACTIONS(115), - [aux_sym__text_token1] = ACTIONS(118), - [sym__verbatim_begin] = ACTIONS(121), + [sym__whitespace1] = ACTIONS(115), + [sym__newline] = ACTIONS(118), + [aux_sym__text_token1] = ACTIONS(121), + [sym__verbatim_begin] = ACTIONS(124), }, [11] = { - [sym__inline] = STATE(833), - [sym__element] = STATE(95), - [sym_emphasis] = STATE(215), - [sym_emphasis_begin] = STATE(1012), - [sym_strong] = STATE(215), - [sym_strong_begin] = STATE(128), - [sym__hard_line_break] = STATE(215), - [sym_hard_line_break] = STATE(215), - [sym__smart_punctuation] = STATE(215), - [sym_autolink] = STATE(215), - [sym_highlighted] = STATE(215), - [sym_insert] = STATE(215), - [sym_delete] = STATE(215), - [sym_superscript] = STATE(215), - [sym_subscript] = STATE(215), - [sym_footnote_reference] = STATE(215), - [sym__image] = STATE(215), - [sym_full_reference_image] = STATE(215), - [sym_collapsed_reference_image] = STATE(215), - [sym_inline_image] = STATE(215), - [sym__image_description] = STATE(696), - [sym__link] = STATE(215), - [sym_full_reference_link] = STATE(215), - [sym_collapsed_reference_link] = STATE(215), - [sym_inline_link] = STATE(215), - [sym_link_text] = STATE(705), - [sym__comment_with_spaces] = STATE(215), - [sym_span] = STATE(215), - [sym_raw_inline] = STATE(215), - [sym_math] = STATE(215), - [sym_verbatim] = STATE(215), - [sym__todo_highlights] = STATE(215), - [sym_todo] = STATE(215), - [sym_note] = STATE(215), - [sym__symbol_fallback] = STATE(215), - [aux_sym__text] = STATE(141), - [aux_sym__inline_repeat1] = STATE(95), + [sym__inline] = STATE(948), + [sym__element] = STATE(118), + [sym_emphasis] = STATE(201), + [sym_emphasis_begin] = STATE(1005), + [sym_strong] = STATE(201), + [sym_strong_begin] = STATE(105), + [sym__hard_line_break] = STATE(201), + [sym_hard_line_break] = STATE(201), + [sym__smart_punctuation] = STATE(201), + [sym_autolink] = STATE(201), + [sym_highlighted] = STATE(201), + [sym_insert] = STATE(201), + [sym_delete] = STATE(201), + [sym_superscript] = STATE(201), + [sym_subscript] = STATE(201), + [sym_footnote_reference] = STATE(201), + [sym__image] = STATE(201), + [sym_full_reference_image] = STATE(201), + [sym_collapsed_reference_image] = STATE(201), + [sym_inline_image] = STATE(201), + [sym__image_description] = STATE(712), + [sym__link] = STATE(201), + [sym_full_reference_link] = STATE(201), + [sym_collapsed_reference_link] = STATE(201), + [sym_inline_link] = STATE(201), + [sym_link_text] = STATE(717), + [sym__comment_with_spaces] = STATE(201), + [sym_span] = STATE(201), + [sym_raw_inline] = STATE(201), + [sym_math] = STATE(201), + [sym_verbatim] = STATE(201), + [sym__todo_highlights] = STATE(201), + [sym_todo] = STATE(201), + [sym_note] = STATE(201), + [sym__symbol_fallback] = STATE(201), + [aux_sym__text] = STATE(139), + [aux_sym__inline_repeat1] = STATE(118), [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(141), - [anon_sym__] = ACTIONS(144), - [anon_sym_LBRACE_STAR] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(150), - [anon_sym_BSLASH] = ACTIONS(153), - [sym_quotation_marks] = ACTIONS(156), - [sym_ellipsis] = ACTIONS(156), - [sym_em_dash] = ACTIONS(156), - [sym_en_dash] = ACTIONS(159), - [sym_backslash_escape] = ACTIONS(159), - [anon_sym_LT] = ACTIONS(162), - [anon_sym_LBRACE_EQ] = ACTIONS(165), - [anon_sym_LBRACE_PLUS] = ACTIONS(168), - [anon_sym_LBRACE_DASH] = ACTIONS(171), - [sym_symbol] = ACTIONS(156), - [anon_sym_LBRACE_CARET] = ACTIONS(174), - [anon_sym_CARET] = ACTIONS(174), - [anon_sym_LBRACE_TILDE] = ACTIONS(177), - [anon_sym_TILDE] = ACTIONS(177), - [anon_sym_LBRACK_CARET] = ACTIONS(180), - [anon_sym_RBRACK] = ACTIONS(84), - [anon_sym_BANG_LBRACK] = ACTIONS(183), - [anon_sym_LBRACK] = ACTIONS(186), - [anon_sym_LBRACE2] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(189), - [anon_sym_TODO] = ACTIONS(192), - [anon_sym_WIP] = ACTIONS(192), - [anon_sym_NOTE] = ACTIONS(195), - [anon_sym_INFO] = ACTIONS(195), - [anon_sym_XXX] = ACTIONS(195), - [sym_fixme] = ACTIONS(156), - [anon_sym_PIPE] = ACTIONS(156), - [sym__whitespace1] = ACTIONS(198), - [sym__newline] = ACTIONS(201), - [aux_sym__text_token1] = ACTIONS(204), - [sym__verbatim_begin] = ACTIONS(207), + [anon_sym_LBRACE_] = ACTIONS(51), + [anon_sym__] = ACTIONS(54), + [anon_sym_LBRACE_STAR] = ACTIONS(57), + [anon_sym_STAR] = ACTIONS(60), + [anon_sym_BSLASH] = ACTIONS(63), + [sym_quotation_marks] = ACTIONS(66), + [sym_ellipsis] = ACTIONS(66), + [sym_em_dash] = ACTIONS(66), + [sym_en_dash] = ACTIONS(69), + [sym_backslash_escape] = ACTIONS(69), + [anon_sym_LT] = ACTIONS(72), + [anon_sym_LBRACE_EQ] = ACTIONS(75), + [anon_sym_LBRACE_PLUS] = ACTIONS(78), + [anon_sym_LBRACE_DASH] = ACTIONS(81), + [sym_symbol] = ACTIONS(66), + [anon_sym_LBRACE_CARET] = ACTIONS(84), + [anon_sym_CARET] = ACTIONS(84), + [anon_sym_LBRACE_TILDE] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(90), + [anon_sym_TILDE_RBRACE] = ACTIONS(93), + [anon_sym_LBRACK_CARET] = ACTIONS(95), + [anon_sym_BANG_LBRACK] = ACTIONS(100), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_LBRACE2] = ACTIONS(69), + [anon_sym_DOLLAR] = ACTIONS(106), + [anon_sym_TODO] = ACTIONS(109), + [anon_sym_WIP] = ACTIONS(109), + [anon_sym_NOTE] = ACTIONS(112), + [anon_sym_INFO] = ACTIONS(112), + [anon_sym_XXX] = ACTIONS(112), + [sym_fixme] = ACTIONS(66), + [anon_sym_PIPE] = ACTIONS(66), + [sym__whitespace1] = ACTIONS(115), + [sym__newline] = ACTIONS(118), + [aux_sym__text_token1] = ACTIONS(121), + [sym__verbatim_begin] = ACTIONS(124), }, [12] = { - [sym__inline] = STATE(853), - [sym__element] = STATE(87), - [sym_emphasis] = STATE(176), - [sym_emphasis_begin] = STATE(1013), - [sym_strong] = STATE(176), - [sym_strong_begin] = STATE(97), - [sym__hard_line_break] = STATE(176), - [sym_hard_line_break] = STATE(176), - [sym__smart_punctuation] = STATE(176), - [sym_autolink] = STATE(176), - [sym_highlighted] = STATE(176), - [sym_insert] = STATE(176), - [sym_delete] = STATE(176), - [sym_superscript] = STATE(176), - [sym_subscript] = STATE(176), - [sym_footnote_reference] = STATE(176), - [sym__image] = STATE(176), - [sym_full_reference_image] = STATE(176), - [sym_collapsed_reference_image] = STATE(176), - [sym_inline_image] = STATE(176), - [sym__image_description] = STATE(690), - [sym__link] = STATE(176), - [sym_full_reference_link] = STATE(176), - [sym_collapsed_reference_link] = STATE(176), - [sym_inline_link] = STATE(176), - [sym_link_text] = STATE(691), - [sym__comment_with_spaces] = STATE(176), - [sym_span] = STATE(176), - [sym_raw_inline] = STATE(176), - [sym_math] = STATE(176), - [sym_verbatim] = STATE(176), - [sym__todo_highlights] = STATE(176), - [sym_todo] = STATE(176), - [sym_note] = STATE(176), - [sym__symbol_fallback] = STATE(176), - [aux_sym__text] = STATE(155), - [aux_sym__inline_repeat1] = STATE(87), + [sym__inline] = STATE(915), + [sym__element] = STATE(118), + [sym_emphasis] = STATE(201), + [sym_emphasis_begin] = STATE(1005), + [sym_strong] = STATE(201), + [sym_strong_begin] = STATE(105), + [sym__hard_line_break] = STATE(201), + [sym_hard_line_break] = STATE(201), + [sym__smart_punctuation] = STATE(201), + [sym_autolink] = STATE(201), + [sym_highlighted] = STATE(201), + [sym_insert] = STATE(201), + [sym_delete] = STATE(201), + [sym_superscript] = STATE(201), + [sym_subscript] = STATE(201), + [sym_footnote_reference] = STATE(201), + [sym__image] = STATE(201), + [sym_full_reference_image] = STATE(201), + [sym_collapsed_reference_image] = STATE(201), + [sym_inline_image] = STATE(201), + [sym__image_description] = STATE(712), + [sym__link] = STATE(201), + [sym_full_reference_link] = STATE(201), + [sym_collapsed_reference_link] = STATE(201), + [sym_inline_link] = STATE(201), + [sym_link_text] = STATE(717), + [sym__comment_with_spaces] = STATE(201), + [sym_span] = STATE(201), + [sym_raw_inline] = STATE(201), + [sym_math] = STATE(201), + [sym_verbatim] = STATE(201), + [sym__todo_highlights] = STATE(201), + [sym_todo] = STATE(201), + [sym_note] = STATE(201), + [sym__symbol_fallback] = STATE(201), + [aux_sym__text] = STATE(139), + [aux_sym__inline_repeat1] = STATE(118), [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(210), - [anon_sym__] = ACTIONS(213), - [anon_sym_LBRACE_STAR] = ACTIONS(216), - [anon_sym_STAR] = ACTIONS(219), - [anon_sym_BSLASH] = ACTIONS(222), - [sym_quotation_marks] = ACTIONS(225), - [sym_ellipsis] = ACTIONS(225), - [sym_em_dash] = ACTIONS(225), - [sym_en_dash] = ACTIONS(228), - [sym_backslash_escape] = ACTIONS(228), - [anon_sym_LT] = ACTIONS(231), - [anon_sym_LBRACE_EQ] = ACTIONS(234), - [anon_sym_LBRACE_PLUS] = ACTIONS(237), - [anon_sym_LBRACE_DASH] = ACTIONS(240), - [sym_symbol] = ACTIONS(225), - [anon_sym_LBRACE_CARET] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(243), - [anon_sym_LBRACE_TILDE] = ACTIONS(246), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_LBRACK_CARET] = ACTIONS(249), - [anon_sym_BANG_LBRACK] = ACTIONS(252), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_RBRACK2] = ACTIONS(84), - [anon_sym_LBRACE2] = ACTIONS(228), - [anon_sym_DOLLAR] = ACTIONS(258), - [anon_sym_TODO] = ACTIONS(261), - [anon_sym_WIP] = ACTIONS(261), - [anon_sym_NOTE] = ACTIONS(264), - [anon_sym_INFO] = ACTIONS(264), - [anon_sym_XXX] = ACTIONS(264), - [sym_fixme] = ACTIONS(225), - [anon_sym_PIPE] = ACTIONS(225), - [sym__whitespace1] = ACTIONS(267), - [sym__newline] = ACTIONS(270), - [aux_sym__text_token1] = ACTIONS(273), - [sym__verbatim_begin] = ACTIONS(276), + [anon_sym_LBRACE_] = ACTIONS(51), + [anon_sym__] = ACTIONS(54), + [anon_sym_LBRACE_STAR] = ACTIONS(57), + [anon_sym_STAR] = ACTIONS(60), + [anon_sym_BSLASH] = ACTIONS(63), + [sym_quotation_marks] = ACTIONS(66), + [sym_ellipsis] = ACTIONS(66), + [sym_em_dash] = ACTIONS(66), + [sym_en_dash] = ACTIONS(69), + [sym_backslash_escape] = ACTIONS(69), + [anon_sym_LT] = ACTIONS(72), + [anon_sym_LBRACE_EQ] = ACTIONS(75), + [anon_sym_LBRACE_PLUS] = ACTIONS(78), + [anon_sym_LBRACE_DASH] = ACTIONS(81), + [sym_symbol] = ACTIONS(66), + [anon_sym_LBRACE_CARET] = ACTIONS(84), + [anon_sym_CARET] = ACTIONS(84), + [anon_sym_LBRACE_TILDE] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_LBRACK_CARET] = ACTIONS(95), + [anon_sym_RBRACK] = ACTIONS(138), + [anon_sym_BANG_LBRACK] = ACTIONS(100), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_LBRACE2] = ACTIONS(69), + [anon_sym_DOLLAR] = ACTIONS(106), + [anon_sym_TODO] = ACTIONS(109), + [anon_sym_WIP] = ACTIONS(109), + [anon_sym_NOTE] = ACTIONS(112), + [anon_sym_INFO] = ACTIONS(112), + [anon_sym_XXX] = ACTIONS(112), + [sym_fixme] = ACTIONS(66), + [anon_sym_PIPE] = ACTIONS(66), + [sym__whitespace1] = ACTIONS(115), + [sym__newline] = ACTIONS(118), + [aux_sym__text_token1] = ACTIONS(121), + [sym__verbatim_begin] = ACTIONS(124), }, [13] = { - [sym__inline] = STATE(892), - [sym__element] = STATE(95), - [sym_emphasis] = STATE(215), - [sym_emphasis_begin] = STATE(1012), - [sym_strong] = STATE(215), - [sym_strong_begin] = STATE(128), - [sym__hard_line_break] = STATE(215), - [sym_hard_line_break] = STATE(215), - [sym__smart_punctuation] = STATE(215), - [sym_autolink] = STATE(215), - [sym_highlighted] = STATE(215), - [sym_insert] = STATE(215), - [sym_delete] = STATE(215), - [sym_superscript] = STATE(215), - [sym_subscript] = STATE(215), - [sym_footnote_reference] = STATE(215), - [sym__image] = STATE(215), - [sym_full_reference_image] = STATE(215), - [sym_collapsed_reference_image] = STATE(215), - [sym_inline_image] = STATE(215), - [sym__image_description] = STATE(696), - [sym__link] = STATE(215), - [sym_full_reference_link] = STATE(215), - [sym_collapsed_reference_link] = STATE(215), - [sym_inline_link] = STATE(215), - [sym_link_text] = STATE(705), - [sym__comment_with_spaces] = STATE(215), - [sym_span] = STATE(215), - [sym_raw_inline] = STATE(215), - [sym_math] = STATE(215), - [sym_verbatim] = STATE(215), - [sym__todo_highlights] = STATE(215), - [sym_todo] = STATE(215), - [sym_note] = STATE(215), - [sym__symbol_fallback] = STATE(215), - [aux_sym__text] = STATE(141), - [aux_sym__inline_repeat1] = STATE(95), + [sym__inline] = STATE(930), + [sym__element] = STATE(118), + [sym_emphasis] = STATE(201), + [sym_emphasis_begin] = STATE(1005), + [sym_strong] = STATE(201), + [sym_strong_begin] = STATE(105), + [sym__hard_line_break] = STATE(201), + [sym_hard_line_break] = STATE(201), + [sym__smart_punctuation] = STATE(201), + [sym_autolink] = STATE(201), + [sym_highlighted] = STATE(201), + [sym_insert] = STATE(201), + [sym_delete] = STATE(201), + [sym_superscript] = STATE(201), + [sym_subscript] = STATE(201), + [sym_footnote_reference] = STATE(201), + [sym__image] = STATE(201), + [sym_full_reference_image] = STATE(201), + [sym_collapsed_reference_image] = STATE(201), + [sym_inline_image] = STATE(201), + [sym__image_description] = STATE(712), + [sym__link] = STATE(201), + [sym_full_reference_link] = STATE(201), + [sym_collapsed_reference_link] = STATE(201), + [sym_inline_link] = STATE(201), + [sym_link_text] = STATE(717), + [sym__comment_with_spaces] = STATE(201), + [sym_span] = STATE(201), + [sym_raw_inline] = STATE(201), + [sym_math] = STATE(201), + [sym_verbatim] = STATE(201), + [sym__todo_highlights] = STATE(201), + [sym_todo] = STATE(201), + [sym_note] = STATE(201), + [sym__symbol_fallback] = STATE(201), + [aux_sym__text] = STATE(139), + [aux_sym__inline_repeat1] = STATE(118), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(51), + [anon_sym__] = ACTIONS(54), + [anon_sym_LBRACE_STAR] = ACTIONS(57), + [anon_sym_STAR] = ACTIONS(60), + [anon_sym_BSLASH] = ACTIONS(63), + [sym_quotation_marks] = ACTIONS(66), + [sym_ellipsis] = ACTIONS(66), + [sym_em_dash] = ACTIONS(66), + [sym_en_dash] = ACTIONS(69), + [sym_backslash_escape] = ACTIONS(69), + [anon_sym_LT] = ACTIONS(72), + [anon_sym_LBRACE_EQ] = ACTIONS(75), + [anon_sym_LBRACE_PLUS] = ACTIONS(78), + [anon_sym_LBRACE_DASH] = ACTIONS(81), + [anon_sym_DASH_RBRACE] = ACTIONS(93), + [sym_symbol] = ACTIONS(66), + [anon_sym_LBRACE_CARET] = ACTIONS(84), + [anon_sym_CARET] = ACTIONS(84), + [anon_sym_LBRACE_TILDE] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_LBRACK_CARET] = ACTIONS(95), + [anon_sym_BANG_LBRACK] = ACTIONS(100), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_LBRACE2] = ACTIONS(69), + [anon_sym_DOLLAR] = ACTIONS(106), + [anon_sym_TODO] = ACTIONS(109), + [anon_sym_WIP] = ACTIONS(109), + [anon_sym_NOTE] = ACTIONS(112), + [anon_sym_INFO] = ACTIONS(112), + [anon_sym_XXX] = ACTIONS(112), + [sym_fixme] = ACTIONS(66), + [anon_sym_PIPE] = ACTIONS(66), + [sym__whitespace1] = ACTIONS(115), + [sym__newline] = ACTIONS(118), + [aux_sym__text_token1] = ACTIONS(121), + [sym__verbatim_begin] = ACTIONS(124), + }, + [14] = { + [sym__inline] = STATE(995), + [sym__element] = STATE(115), + [sym_emphasis] = STATE(205), + [sym_emphasis_begin] = STATE(1000), + [sym_strong] = STATE(205), + [sym_strong_begin] = STATE(129), + [sym__hard_line_break] = STATE(205), + [sym_hard_line_break] = STATE(205), + [sym__smart_punctuation] = STATE(205), + [sym_autolink] = STATE(205), + [sym_highlighted] = STATE(205), + [sym_insert] = STATE(205), + [sym_delete] = STATE(205), + [sym_superscript] = STATE(205), + [sym_subscript] = STATE(205), + [sym_footnote_reference] = STATE(205), + [sym__image] = STATE(205), + [sym_full_reference_image] = STATE(205), + [sym_collapsed_reference_image] = STATE(205), + [sym_inline_image] = STATE(205), + [sym__image_description] = STATE(705), + [sym__link] = STATE(205), + [sym_full_reference_link] = STATE(205), + [sym_collapsed_reference_link] = STATE(205), + [sym_inline_link] = STATE(205), + [sym_link_text] = STATE(703), + [sym__comment_with_spaces] = STATE(205), + [sym_span] = STATE(205), + [sym_raw_inline] = STATE(205), + [sym_math] = STATE(205), + [sym_verbatim] = STATE(205), + [sym__todo_highlights] = STATE(205), + [sym_todo] = STATE(205), + [sym_note] = STATE(205), + [sym__symbol_fallback] = STATE(205), + [aux_sym__text] = STATE(136), + [aux_sym__inline_repeat1] = STATE(115), [anon_sym_LBRACE] = ACTIONS(49), [anon_sym_LBRACE_] = ACTIONS(141), [anon_sym__] = ACTIONS(144), @@ -9359,142 +8944,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_DASH] = ACTIONS(171), [sym_symbol] = ACTIONS(156), [anon_sym_LBRACE_CARET] = ACTIONS(174), - [anon_sym_CARET] = ACTIONS(279), - [anon_sym_CARET_RBRACE] = ACTIONS(84), - [anon_sym_LBRACE_TILDE] = ACTIONS(177), - [anon_sym_TILDE] = ACTIONS(177), - [anon_sym_LBRACK_CARET] = ACTIONS(180), - [anon_sym_BANG_LBRACK] = ACTIONS(183), - [anon_sym_LBRACK] = ACTIONS(186), + [anon_sym_CARET] = ACTIONS(177), + [anon_sym_CARET_RBRACE] = ACTIONS(93), + [anon_sym_LBRACE_TILDE] = ACTIONS(180), + [anon_sym_TILDE] = ACTIONS(180), + [anon_sym_LBRACK_CARET] = ACTIONS(183), + [anon_sym_BANG_LBRACK] = ACTIONS(186), + [anon_sym_LBRACK] = ACTIONS(189), [anon_sym_LBRACE2] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(189), - [anon_sym_TODO] = ACTIONS(192), - [anon_sym_WIP] = ACTIONS(192), - [anon_sym_NOTE] = ACTIONS(195), - [anon_sym_INFO] = ACTIONS(195), - [anon_sym_XXX] = ACTIONS(195), + [anon_sym_DOLLAR] = ACTIONS(192), + [anon_sym_TODO] = ACTIONS(195), + [anon_sym_WIP] = ACTIONS(195), + [anon_sym_NOTE] = ACTIONS(198), + [anon_sym_INFO] = ACTIONS(198), + [anon_sym_XXX] = ACTIONS(198), [sym_fixme] = ACTIONS(156), [anon_sym_PIPE] = ACTIONS(156), - [sym__whitespace1] = ACTIONS(198), - [sym__newline] = ACTIONS(201), - [aux_sym__text_token1] = ACTIONS(204), - [sym__verbatim_begin] = ACTIONS(207), - }, - [14] = { - [sym__inline] = STATE(891), - [sym__element] = STATE(87), - [sym_emphasis] = STATE(176), - [sym_emphasis_begin] = STATE(1013), - [sym_strong] = STATE(176), - [sym_strong_begin] = STATE(97), - [sym__hard_line_break] = STATE(176), - [sym_hard_line_break] = STATE(176), - [sym__smart_punctuation] = STATE(176), - [sym_autolink] = STATE(176), - [sym_highlighted] = STATE(176), - [sym_insert] = STATE(176), - [sym_delete] = STATE(176), - [sym_superscript] = STATE(176), - [sym_subscript] = STATE(176), - [sym_footnote_reference] = STATE(176), - [sym__image] = STATE(176), - [sym_full_reference_image] = STATE(176), - [sym_collapsed_reference_image] = STATE(176), - [sym_inline_image] = STATE(176), - [sym__image_description] = STATE(690), - [sym__link] = STATE(176), - [sym_full_reference_link] = STATE(176), - [sym_collapsed_reference_link] = STATE(176), - [sym_inline_link] = STATE(176), - [sym_link_text] = STATE(691), - [sym__comment_with_spaces] = STATE(176), - [sym_span] = STATE(176), - [sym_raw_inline] = STATE(176), - [sym_math] = STATE(176), - [sym_verbatim] = STATE(176), - [sym__todo_highlights] = STATE(176), - [sym_todo] = STATE(176), - [sym_note] = STATE(176), - [sym__symbol_fallback] = STATE(176), - [aux_sym__text] = STATE(155), - [aux_sym__inline_repeat1] = STATE(87), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(210), - [anon_sym__] = ACTIONS(213), - [anon_sym_LBRACE_STAR] = ACTIONS(216), - [anon_sym_STAR] = ACTIONS(219), - [anon_sym_BSLASH] = ACTIONS(222), - [sym_quotation_marks] = ACTIONS(225), - [sym_ellipsis] = ACTIONS(225), - [sym_em_dash] = ACTIONS(225), - [sym_en_dash] = ACTIONS(228), - [sym_backslash_escape] = ACTIONS(228), - [anon_sym_LT] = ACTIONS(231), - [anon_sym_LBRACE_EQ] = ACTIONS(234), - [anon_sym_LBRACE_PLUS] = ACTIONS(237), - [anon_sym_LBRACE_DASH] = ACTIONS(240), - [sym_symbol] = ACTIONS(225), - [anon_sym_LBRACE_CARET] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(282), - [anon_sym_CARET_RBRACE] = ACTIONS(84), - [anon_sym_LBRACE_TILDE] = ACTIONS(246), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_LBRACK_CARET] = ACTIONS(249), - [anon_sym_BANG_LBRACK] = ACTIONS(252), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_LBRACE2] = ACTIONS(228), - [anon_sym_DOLLAR] = ACTIONS(258), - [anon_sym_TODO] = ACTIONS(261), - [anon_sym_WIP] = ACTIONS(261), - [anon_sym_NOTE] = ACTIONS(264), - [anon_sym_INFO] = ACTIONS(264), - [anon_sym_XXX] = ACTIONS(264), - [sym_fixme] = ACTIONS(225), - [anon_sym_PIPE] = ACTIONS(225), - [sym__whitespace1] = ACTIONS(267), - [sym__newline] = ACTIONS(270), - [aux_sym__text_token1] = ACTIONS(273), - [sym__verbatim_begin] = ACTIONS(276), + [sym__whitespace1] = ACTIONS(201), + [sym__newline] = ACTIONS(204), + [aux_sym__text_token1] = ACTIONS(207), + [sym__verbatim_begin] = ACTIONS(210), }, [15] = { - [sym__inline] = STATE(953), - [sym__element] = STATE(95), - [sym_emphasis] = STATE(215), - [sym_emphasis_begin] = STATE(1012), - [sym_strong] = STATE(215), - [sym_strong_begin] = STATE(128), - [sym__hard_line_break] = STATE(215), - [sym_hard_line_break] = STATE(215), - [sym__smart_punctuation] = STATE(215), - [sym_autolink] = STATE(215), - [sym_highlighted] = STATE(215), - [sym_insert] = STATE(215), - [sym_delete] = STATE(215), - [sym_superscript] = STATE(215), - [sym_subscript] = STATE(215), - [sym_footnote_reference] = STATE(215), - [sym__image] = STATE(215), - [sym_full_reference_image] = STATE(215), - [sym_collapsed_reference_image] = STATE(215), - [sym_inline_image] = STATE(215), - [sym__image_description] = STATE(696), - [sym__link] = STATE(215), - [sym_full_reference_link] = STATE(215), - [sym_collapsed_reference_link] = STATE(215), - [sym_inline_link] = STATE(215), - [sym_link_text] = STATE(705), - [sym__comment_with_spaces] = STATE(215), - [sym_span] = STATE(215), - [sym_raw_inline] = STATE(215), - [sym_math] = STATE(215), - [sym_verbatim] = STATE(215), - [sym__todo_highlights] = STATE(215), - [sym_todo] = STATE(215), - [sym_note] = STATE(215), - [sym__symbol_fallback] = STATE(215), - [aux_sym__text] = STATE(141), - [aux_sym__inline_repeat1] = STATE(95), - [ts_builtin_sym_end] = ACTIONS(84), + [sym__inline] = STATE(938), + [sym__element] = STATE(115), + [sym_emphasis] = STATE(205), + [sym_emphasis_begin] = STATE(1000), + [sym_strong] = STATE(205), + [sym_strong_begin] = STATE(129), + [sym__hard_line_break] = STATE(205), + [sym_hard_line_break] = STATE(205), + [sym__smart_punctuation] = STATE(205), + [sym_autolink] = STATE(205), + [sym_highlighted] = STATE(205), + [sym_insert] = STATE(205), + [sym_delete] = STATE(205), + [sym_superscript] = STATE(205), + [sym_subscript] = STATE(205), + [sym_footnote_reference] = STATE(205), + [sym__image] = STATE(205), + [sym_full_reference_image] = STATE(205), + [sym_collapsed_reference_image] = STATE(205), + [sym_inline_image] = STATE(205), + [sym__image_description] = STATE(705), + [sym__link] = STATE(205), + [sym_full_reference_link] = STATE(205), + [sym_collapsed_reference_link] = STATE(205), + [sym_inline_link] = STATE(205), + [sym_link_text] = STATE(703), + [sym__comment_with_spaces] = STATE(205), + [sym_span] = STATE(205), + [sym_raw_inline] = STATE(205), + [sym_math] = STATE(205), + [sym_verbatim] = STATE(205), + [sym__todo_highlights] = STATE(205), + [sym_todo] = STATE(205), + [sym_note] = STATE(205), + [sym__symbol_fallback] = STATE(205), + [aux_sym__text] = STATE(136), + [aux_sym__inline_repeat1] = STATE(115), + [ts_builtin_sym_end] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(49), [anon_sym_LBRACE_] = ACTIONS(141), [anon_sym__] = ACTIONS(144), @@ -9513,444 +9022,444 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_symbol] = ACTIONS(156), [anon_sym_LBRACE_CARET] = ACTIONS(174), [anon_sym_CARET] = ACTIONS(174), - [anon_sym_LBRACE_TILDE] = ACTIONS(177), - [anon_sym_TILDE] = ACTIONS(177), - [anon_sym_LBRACK_CARET] = ACTIONS(180), - [anon_sym_BANG_LBRACK] = ACTIONS(183), - [anon_sym_LBRACK] = ACTIONS(186), + [anon_sym_LBRACE_TILDE] = ACTIONS(180), + [anon_sym_TILDE] = ACTIONS(180), + [anon_sym_LBRACK_CARET] = ACTIONS(183), + [anon_sym_BANG_LBRACK] = ACTIONS(186), + [anon_sym_LBRACK] = ACTIONS(189), [anon_sym_LBRACE2] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(189), - [anon_sym_TODO] = ACTIONS(192), - [anon_sym_WIP] = ACTIONS(192), - [anon_sym_NOTE] = ACTIONS(195), - [anon_sym_INFO] = ACTIONS(195), - [anon_sym_XXX] = ACTIONS(195), + [anon_sym_DOLLAR] = ACTIONS(192), + [anon_sym_TODO] = ACTIONS(195), + [anon_sym_WIP] = ACTIONS(195), + [anon_sym_NOTE] = ACTIONS(198), + [anon_sym_INFO] = ACTIONS(198), + [anon_sym_XXX] = ACTIONS(198), [sym_fixme] = ACTIONS(156), [anon_sym_PIPE] = ACTIONS(156), - [sym__whitespace1] = ACTIONS(198), - [sym__newline] = ACTIONS(201), - [aux_sym__text_token1] = ACTIONS(204), - [sym__verbatim_begin] = ACTIONS(207), + [sym__whitespace1] = ACTIONS(201), + [sym__newline] = ACTIONS(204), + [aux_sym__text_token1] = ACTIONS(207), + [sym__verbatim_begin] = ACTIONS(210), }, [16] = { - [sym__inline] = STATE(949), - [sym__element] = STATE(87), - [sym_emphasis] = STATE(176), - [sym_emphasis_begin] = STATE(1013), - [sym_strong] = STATE(176), - [sym_strong_begin] = STATE(97), - [sym__hard_line_break] = STATE(176), - [sym_hard_line_break] = STATE(176), - [sym__smart_punctuation] = STATE(176), - [sym_autolink] = STATE(176), - [sym_highlighted] = STATE(176), - [sym_insert] = STATE(176), - [sym_delete] = STATE(176), - [sym_superscript] = STATE(176), - [sym_subscript] = STATE(176), - [sym_footnote_reference] = STATE(176), - [sym__image] = STATE(176), - [sym_full_reference_image] = STATE(176), - [sym_collapsed_reference_image] = STATE(176), - [sym_inline_image] = STATE(176), - [sym__image_description] = STATE(690), - [sym__link] = STATE(176), - [sym_full_reference_link] = STATE(176), - [sym_collapsed_reference_link] = STATE(176), - [sym_inline_link] = STATE(176), - [sym_link_text] = STATE(691), - [sym__comment_with_spaces] = STATE(176), - [sym_span] = STATE(176), - [sym_raw_inline] = STATE(176), - [sym_math] = STATE(176), - [sym_verbatim] = STATE(176), - [sym__todo_highlights] = STATE(176), - [sym_todo] = STATE(176), - [sym_note] = STATE(176), - [sym__symbol_fallback] = STATE(176), - [aux_sym__text] = STATE(155), - [aux_sym__inline_repeat1] = STATE(87), - [ts_builtin_sym_end] = ACTIONS(84), + [sym__inline] = STATE(934), + [sym__element] = STATE(91), + [sym_emphasis] = STATE(174), + [sym_emphasis_begin] = STATE(1001), + [sym_strong] = STATE(174), + [sym_strong_begin] = STATE(126), + [sym__hard_line_break] = STATE(174), + [sym_hard_line_break] = STATE(174), + [sym__smart_punctuation] = STATE(174), + [sym_autolink] = STATE(174), + [sym_highlighted] = STATE(174), + [sym_insert] = STATE(174), + [sym_delete] = STATE(174), + [sym_superscript] = STATE(174), + [sym_subscript] = STATE(174), + [sym_footnote_reference] = STATE(174), + [sym__image] = STATE(174), + [sym_full_reference_image] = STATE(174), + [sym_collapsed_reference_image] = STATE(174), + [sym_inline_image] = STATE(174), + [sym__image_description] = STATE(709), + [sym__link] = STATE(174), + [sym_full_reference_link] = STATE(174), + [sym_collapsed_reference_link] = STATE(174), + [sym_inline_link] = STATE(174), + [sym_link_text] = STATE(710), + [sym__comment_with_spaces] = STATE(174), + [sym_span] = STATE(174), + [sym_raw_inline] = STATE(174), + [sym_math] = STATE(174), + [sym_verbatim] = STATE(174), + [sym__todo_highlights] = STATE(174), + [sym_todo] = STATE(174), + [sym_note] = STATE(174), + [sym__symbol_fallback] = STATE(174), + [aux_sym__text] = STATE(148), + [aux_sym__inline_repeat1] = STATE(91), + [ts_builtin_sym_end] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(210), - [anon_sym__] = ACTIONS(213), - [anon_sym_LBRACE_STAR] = ACTIONS(216), - [anon_sym_STAR] = ACTIONS(219), - [anon_sym_BSLASH] = ACTIONS(222), - [sym_quotation_marks] = ACTIONS(225), - [sym_ellipsis] = ACTIONS(225), - [sym_em_dash] = ACTIONS(225), - [sym_en_dash] = ACTIONS(228), - [sym_backslash_escape] = ACTIONS(228), - [anon_sym_LT] = ACTIONS(231), - [anon_sym_LBRACE_EQ] = ACTIONS(234), - [anon_sym_LBRACE_PLUS] = ACTIONS(237), - [anon_sym_LBRACE_DASH] = ACTIONS(240), - [sym_symbol] = ACTIONS(225), - [anon_sym_LBRACE_CARET] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(243), - [anon_sym_LBRACE_TILDE] = ACTIONS(246), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_LBRACK_CARET] = ACTIONS(249), - [anon_sym_BANG_LBRACK] = ACTIONS(252), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_LBRACE2] = ACTIONS(228), - [anon_sym_DOLLAR] = ACTIONS(258), - [anon_sym_TODO] = ACTIONS(261), - [anon_sym_WIP] = ACTIONS(261), - [anon_sym_NOTE] = ACTIONS(264), - [anon_sym_INFO] = ACTIONS(264), - [anon_sym_XXX] = ACTIONS(264), - [sym_fixme] = ACTIONS(225), - [anon_sym_PIPE] = ACTIONS(225), - [sym__whitespace1] = ACTIONS(267), - [sym__newline] = ACTIONS(270), - [aux_sym__text_token1] = ACTIONS(273), - [sym__verbatim_begin] = ACTIONS(276), + [anon_sym_LBRACE_] = ACTIONS(213), + [anon_sym__] = ACTIONS(216), + [anon_sym_LBRACE_STAR] = ACTIONS(219), + [anon_sym_STAR] = ACTIONS(222), + [anon_sym_BSLASH] = ACTIONS(225), + [sym_quotation_marks] = ACTIONS(228), + [sym_ellipsis] = ACTIONS(228), + [sym_em_dash] = ACTIONS(228), + [sym_en_dash] = ACTIONS(231), + [sym_backslash_escape] = ACTIONS(231), + [anon_sym_LT] = ACTIONS(234), + [anon_sym_LBRACE_EQ] = ACTIONS(237), + [anon_sym_LBRACE_PLUS] = ACTIONS(240), + [anon_sym_LBRACE_DASH] = ACTIONS(243), + [sym_symbol] = ACTIONS(228), + [anon_sym_LBRACE_CARET] = ACTIONS(246), + [anon_sym_CARET] = ACTIONS(246), + [anon_sym_LBRACE_TILDE] = ACTIONS(249), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_LBRACK_CARET] = ACTIONS(252), + [anon_sym_BANG_LBRACK] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(258), + [anon_sym_LBRACE2] = ACTIONS(231), + [anon_sym_DOLLAR] = ACTIONS(261), + [anon_sym_TODO] = ACTIONS(264), + [anon_sym_WIP] = ACTIONS(264), + [anon_sym_NOTE] = ACTIONS(267), + [anon_sym_INFO] = ACTIONS(267), + [anon_sym_XXX] = ACTIONS(267), + [sym_fixme] = ACTIONS(228), + [anon_sym_PIPE] = ACTIONS(228), + [sym__whitespace1] = ACTIONS(270), + [sym__newline] = ACTIONS(273), + [aux_sym__text_token1] = ACTIONS(276), + [sym__verbatim_begin] = ACTIONS(279), }, [17] = { - [sym__inline] = STATE(944), - [sym__element] = STATE(83), - [sym_emphasis] = STATE(211), - [sym_emphasis_begin] = STATE(1014), - [sym_strong] = STATE(211), + [sym__inline] = STATE(933), + [sym__element] = STATE(88), + [sym_emphasis] = STATE(209), + [sym_emphasis_begin] = STATE(1002), + [sym_strong] = STATE(209), [sym_strong_begin] = STATE(121), - [sym__hard_line_break] = STATE(211), - [sym_hard_line_break] = STATE(211), - [sym__smart_punctuation] = STATE(211), - [sym_autolink] = STATE(211), - [sym_highlighted] = STATE(211), - [sym_insert] = STATE(211), - [sym_delete] = STATE(211), - [sym_superscript] = STATE(211), - [sym_subscript] = STATE(211), - [sym_footnote_reference] = STATE(211), - [sym__image] = STATE(211), - [sym_full_reference_image] = STATE(211), - [sym_collapsed_reference_image] = STATE(211), - [sym_inline_image] = STATE(211), - [sym__image_description] = STATE(693), - [sym__link] = STATE(211), - [sym_full_reference_link] = STATE(211), - [sym_collapsed_reference_link] = STATE(211), - [sym_inline_link] = STATE(211), - [sym_link_text] = STATE(694), - [sym__comment_with_spaces] = STATE(211), - [sym_span] = STATE(211), - [sym_raw_inline] = STATE(211), - [sym_math] = STATE(211), - [sym_verbatim] = STATE(211), - [sym__todo_highlights] = STATE(211), - [sym_todo] = STATE(211), - [sym_note] = STATE(211), - [sym__symbol_fallback] = STATE(211), - [aux_sym__text] = STATE(137), - [aux_sym__inline_repeat1] = STATE(83), - [ts_builtin_sym_end] = ACTIONS(84), + [sym__hard_line_break] = STATE(209), + [sym_hard_line_break] = STATE(209), + [sym__smart_punctuation] = STATE(209), + [sym_autolink] = STATE(209), + [sym_highlighted] = STATE(209), + [sym_insert] = STATE(209), + [sym_delete] = STATE(209), + [sym_superscript] = STATE(209), + [sym_subscript] = STATE(209), + [sym_footnote_reference] = STATE(209), + [sym__image] = STATE(209), + [sym_full_reference_image] = STATE(209), + [sym_collapsed_reference_image] = STATE(209), + [sym_inline_image] = STATE(209), + [sym__image_description] = STATE(706), + [sym__link] = STATE(209), + [sym_full_reference_link] = STATE(209), + [sym_collapsed_reference_link] = STATE(209), + [sym_inline_link] = STATE(209), + [sym_link_text] = STATE(707), + [sym__comment_with_spaces] = STATE(209), + [sym_span] = STATE(209), + [sym_raw_inline] = STATE(209), + [sym_math] = STATE(209), + [sym_verbatim] = STATE(209), + [sym__todo_highlights] = STATE(209), + [sym_todo] = STATE(209), + [sym_note] = STATE(209), + [sym__symbol_fallback] = STATE(209), + [aux_sym__text] = STATE(150), + [aux_sym__inline_repeat1] = STATE(88), + [ts_builtin_sym_end] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(285), - [anon_sym__] = ACTIONS(288), - [anon_sym_LBRACE_STAR] = ACTIONS(291), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_BSLASH] = ACTIONS(297), - [sym_quotation_marks] = ACTIONS(300), - [sym_ellipsis] = ACTIONS(300), - [sym_em_dash] = ACTIONS(300), - [sym_en_dash] = ACTIONS(303), - [sym_backslash_escape] = ACTIONS(303), - [anon_sym_LT] = ACTIONS(306), - [anon_sym_LBRACE_EQ] = ACTIONS(309), - [anon_sym_LBRACE_PLUS] = ACTIONS(312), - [anon_sym_LBRACE_DASH] = ACTIONS(315), - [sym_symbol] = ACTIONS(300), - [anon_sym_LBRACE_CARET] = ACTIONS(318), - [anon_sym_CARET] = ACTIONS(318), - [anon_sym_LBRACE_TILDE] = ACTIONS(321), - [anon_sym_TILDE] = ACTIONS(321), - [anon_sym_LBRACK_CARET] = ACTIONS(324), - [anon_sym_BANG_LBRACK] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(330), - [anon_sym_LBRACE2] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(333), - [anon_sym_TODO] = ACTIONS(336), - [anon_sym_WIP] = ACTIONS(336), - [anon_sym_NOTE] = ACTIONS(339), - [anon_sym_INFO] = ACTIONS(339), - [anon_sym_XXX] = ACTIONS(339), - [sym_fixme] = ACTIONS(300), - [anon_sym_PIPE] = ACTIONS(300), - [sym__whitespace1] = ACTIONS(342), - [sym__newline] = ACTIONS(345), - [aux_sym__text_token1] = ACTIONS(348), - [sym__verbatim_begin] = ACTIONS(351), + [anon_sym_LBRACE_] = ACTIONS(282), + [anon_sym__] = ACTIONS(285), + [anon_sym_LBRACE_STAR] = ACTIONS(288), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_BSLASH] = ACTIONS(294), + [sym_quotation_marks] = ACTIONS(297), + [sym_ellipsis] = ACTIONS(297), + [sym_em_dash] = ACTIONS(297), + [sym_en_dash] = ACTIONS(300), + [sym_backslash_escape] = ACTIONS(300), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACE_EQ] = ACTIONS(306), + [anon_sym_LBRACE_PLUS] = ACTIONS(309), + [anon_sym_LBRACE_DASH] = ACTIONS(312), + [sym_symbol] = ACTIONS(297), + [anon_sym_LBRACE_CARET] = ACTIONS(315), + [anon_sym_CARET] = ACTIONS(315), + [anon_sym_LBRACE_TILDE] = ACTIONS(318), + [anon_sym_TILDE] = ACTIONS(318), + [anon_sym_LBRACK_CARET] = ACTIONS(321), + [anon_sym_BANG_LBRACK] = ACTIONS(324), + [anon_sym_LBRACK] = ACTIONS(327), + [anon_sym_LBRACE2] = ACTIONS(300), + [anon_sym_DOLLAR] = ACTIONS(330), + [anon_sym_TODO] = ACTIONS(333), + [anon_sym_WIP] = ACTIONS(333), + [anon_sym_NOTE] = ACTIONS(336), + [anon_sym_INFO] = ACTIONS(336), + [anon_sym_XXX] = ACTIONS(336), + [sym_fixme] = ACTIONS(297), + [anon_sym_PIPE] = ACTIONS(297), + [sym__whitespace1] = ACTIONS(339), + [sym__newline] = ACTIONS(342), + [aux_sym__text_token1] = ACTIONS(345), + [sym__verbatim_begin] = ACTIONS(348), }, [18] = { - [sym__inline] = STATE(788), - [sym__element] = STATE(79), - [sym_emphasis] = STATE(172), - [sym_emphasis_begin] = STATE(1015), - [sym_strong] = STATE(172), - [sym_strong_begin] = STATE(125), - [sym__hard_line_break] = STATE(172), - [sym_hard_line_break] = STATE(172), - [sym__smart_punctuation] = STATE(172), - [sym_autolink] = STATE(172), - [sym_highlighted] = STATE(172), - [sym_insert] = STATE(172), - [sym_delete] = STATE(172), - [sym_superscript] = STATE(172), - [sym_subscript] = STATE(172), - [sym_footnote_reference] = STATE(172), - [sym__image] = STATE(172), - [sym_full_reference_image] = STATE(172), - [sym_collapsed_reference_image] = STATE(172), - [sym_inline_image] = STATE(172), - [sym__image_description] = STATE(711), - [sym__link] = STATE(172), - [sym_full_reference_link] = STATE(172), - [sym_collapsed_reference_link] = STATE(172), - [sym_inline_link] = STATE(172), - [sym_link_text] = STATE(712), - [sym__comment_with_spaces] = STATE(172), - [sym_span] = STATE(172), - [sym_raw_inline] = STATE(172), - [sym_math] = STATE(172), - [sym_verbatim] = STATE(172), - [sym__todo_highlights] = STATE(172), - [sym_todo] = STATE(172), - [sym_note] = STATE(172), - [sym__symbol_fallback] = STATE(172), + [sym__inline] = STATE(752), + [sym__element] = STATE(102), + [sym_emphasis] = STATE(194), + [sym_emphasis_begin] = STATE(1003), + [sym_strong] = STATE(194), + [sym_strong_begin] = STATE(113), + [sym__hard_line_break] = STATE(194), + [sym_hard_line_break] = STATE(194), + [sym__smart_punctuation] = STATE(194), + [sym_autolink] = STATE(194), + [sym_highlighted] = STATE(194), + [sym_insert] = STATE(194), + [sym_delete] = STATE(194), + [sym_superscript] = STATE(194), + [sym_subscript] = STATE(194), + [sym_footnote_reference] = STATE(194), + [sym__image] = STATE(194), + [sym_full_reference_image] = STATE(194), + [sym_collapsed_reference_image] = STATE(194), + [sym_inline_image] = STATE(194), + [sym__image_description] = STATE(696), + [sym__link] = STATE(194), + [sym_full_reference_link] = STATE(194), + [sym_collapsed_reference_link] = STATE(194), + [sym_inline_link] = STATE(194), + [sym_link_text] = STATE(695), + [sym__comment_with_spaces] = STATE(194), + [sym_span] = STATE(194), + [sym_raw_inline] = STATE(194), + [sym_math] = STATE(194), + [sym_verbatim] = STATE(194), + [sym__todo_highlights] = STATE(194), + [sym_todo] = STATE(194), + [sym_note] = STATE(194), + [sym__symbol_fallback] = STATE(194), [aux_sym__text] = STATE(170), - [aux_sym__inline_repeat1] = STATE(79), - [ts_builtin_sym_end] = ACTIONS(84), + [aux_sym__inline_repeat1] = STATE(102), + [ts_builtin_sym_end] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(354), - [anon_sym__] = ACTIONS(357), - [anon_sym_LBRACE_STAR] = ACTIONS(360), - [anon_sym_STAR] = ACTIONS(363), - [anon_sym_BSLASH] = ACTIONS(366), - [sym_quotation_marks] = ACTIONS(369), - [sym_ellipsis] = ACTIONS(369), - [sym_em_dash] = ACTIONS(369), - [sym_en_dash] = ACTIONS(372), - [sym_backslash_escape] = ACTIONS(372), - [anon_sym_LT] = ACTIONS(375), - [anon_sym_LBRACE_EQ] = ACTIONS(378), - [anon_sym_LBRACE_PLUS] = ACTIONS(381), - [anon_sym_LBRACE_DASH] = ACTIONS(384), - [sym_symbol] = ACTIONS(369), - [anon_sym_LBRACE_CARET] = ACTIONS(387), - [anon_sym_CARET] = ACTIONS(387), - [anon_sym_LBRACE_TILDE] = ACTIONS(390), - [anon_sym_TILDE] = ACTIONS(390), - [anon_sym_LBRACK_CARET] = ACTIONS(393), - [anon_sym_BANG_LBRACK] = ACTIONS(396), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_LBRACE2] = ACTIONS(372), - [anon_sym_DOLLAR] = ACTIONS(402), - [anon_sym_TODO] = ACTIONS(405), - [anon_sym_WIP] = ACTIONS(405), - [anon_sym_NOTE] = ACTIONS(408), - [anon_sym_INFO] = ACTIONS(408), - [anon_sym_XXX] = ACTIONS(408), - [sym_fixme] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(369), - [sym__whitespace1] = ACTIONS(411), - [sym__newline] = ACTIONS(414), - [aux_sym__text_token1] = ACTIONS(417), - [sym__verbatim_begin] = ACTIONS(420), + [anon_sym_LBRACE_] = ACTIONS(351), + [anon_sym__] = ACTIONS(354), + [anon_sym_LBRACE_STAR] = ACTIONS(357), + [anon_sym_STAR] = ACTIONS(360), + [anon_sym_BSLASH] = ACTIONS(363), + [sym_quotation_marks] = ACTIONS(366), + [sym_ellipsis] = ACTIONS(366), + [sym_em_dash] = ACTIONS(366), + [sym_en_dash] = ACTIONS(369), + [sym_backslash_escape] = ACTIONS(369), + [anon_sym_LT] = ACTIONS(372), + [anon_sym_LBRACE_EQ] = ACTIONS(375), + [anon_sym_LBRACE_PLUS] = ACTIONS(378), + [anon_sym_LBRACE_DASH] = ACTIONS(381), + [sym_symbol] = ACTIONS(366), + [anon_sym_LBRACE_CARET] = ACTIONS(384), + [anon_sym_CARET] = ACTIONS(384), + [anon_sym_LBRACE_TILDE] = ACTIONS(387), + [anon_sym_TILDE] = ACTIONS(387), + [anon_sym_LBRACK_CARET] = ACTIONS(390), + [anon_sym_BANG_LBRACK] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(396), + [anon_sym_LBRACE2] = ACTIONS(369), + [anon_sym_DOLLAR] = ACTIONS(399), + [anon_sym_TODO] = ACTIONS(402), + [anon_sym_WIP] = ACTIONS(402), + [anon_sym_NOTE] = ACTIONS(405), + [anon_sym_INFO] = ACTIONS(405), + [anon_sym_XXX] = ACTIONS(405), + [sym_fixme] = ACTIONS(366), + [anon_sym_PIPE] = ACTIONS(366), + [sym__whitespace1] = ACTIONS(408), + [sym__newline] = ACTIONS(411), + [aux_sym__text_token1] = ACTIONS(414), + [sym__verbatim_begin] = ACTIONS(417), }, [19] = { - [sym__inline] = STATE(763), - [sym__element] = STATE(117), - [sym_emphasis] = STATE(182), - [sym_emphasis_begin] = STATE(1016), - [sym_strong] = STATE(182), - [sym_strong_begin] = STATE(122), - [sym__hard_line_break] = STATE(182), - [sym_hard_line_break] = STATE(182), - [sym__smart_punctuation] = STATE(182), - [sym_autolink] = STATE(182), - [sym_highlighted] = STATE(182), - [sym_insert] = STATE(182), - [sym_delete] = STATE(182), - [sym_superscript] = STATE(182), - [sym_subscript] = STATE(182), - [sym_footnote_reference] = STATE(182), - [sym__image] = STATE(182), - [sym_full_reference_image] = STATE(182), - [sym_collapsed_reference_image] = STATE(182), - [sym_inline_image] = STATE(182), - [sym__image_description] = STATE(692), - [sym__link] = STATE(182), - [sym_full_reference_link] = STATE(182), - [sym_collapsed_reference_link] = STATE(182), - [sym_inline_link] = STATE(182), - [sym_link_text] = STATE(689), - [sym__comment_with_spaces] = STATE(182), - [sym_span] = STATE(182), - [sym_raw_inline] = STATE(182), - [sym_math] = STATE(182), - [sym_verbatim] = STATE(182), - [sym__todo_highlights] = STATE(182), - [sym_todo] = STATE(182), - [sym_note] = STATE(182), - [sym__symbol_fallback] = STATE(182), + [sym__inline] = STATE(754), + [sym__element] = STATE(114), + [sym_emphasis] = STATE(181), + [sym_emphasis_begin] = STATE(1004), + [sym_strong] = STATE(181), + [sym_strong_begin] = STATE(110), + [sym__hard_line_break] = STATE(181), + [sym_hard_line_break] = STATE(181), + [sym__smart_punctuation] = STATE(181), + [sym_autolink] = STATE(181), + [sym_highlighted] = STATE(181), + [sym_insert] = STATE(181), + [sym_delete] = STATE(181), + [sym_superscript] = STATE(181), + [sym_subscript] = STATE(181), + [sym_footnote_reference] = STATE(181), + [sym__image] = STATE(181), + [sym_full_reference_image] = STATE(181), + [sym_collapsed_reference_image] = STATE(181), + [sym_inline_image] = STATE(181), + [sym__image_description] = STATE(688), + [sym__link] = STATE(181), + [sym_full_reference_link] = STATE(181), + [sym_collapsed_reference_link] = STATE(181), + [sym_inline_link] = STATE(181), + [sym_link_text] = STATE(693), + [sym__comment_with_spaces] = STATE(181), + [sym_span] = STATE(181), + [sym_raw_inline] = STATE(181), + [sym_math] = STATE(181), + [sym_verbatim] = STATE(181), + [sym__todo_highlights] = STATE(181), + [sym_todo] = STATE(181), + [sym_note] = STATE(181), + [sym__symbol_fallback] = STATE(181), [aux_sym__text] = STATE(153), - [aux_sym__inline_repeat1] = STATE(117), - [ts_builtin_sym_end] = ACTIONS(84), + [aux_sym__inline_repeat1] = STATE(114), + [ts_builtin_sym_end] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(423), - [anon_sym__] = ACTIONS(426), - [anon_sym_LBRACE_STAR] = ACTIONS(429), - [anon_sym_STAR] = ACTIONS(432), - [anon_sym_BSLASH] = ACTIONS(435), - [sym_quotation_marks] = ACTIONS(438), - [sym_ellipsis] = ACTIONS(438), - [sym_em_dash] = ACTIONS(438), - [sym_en_dash] = ACTIONS(441), - [sym_backslash_escape] = ACTIONS(441), - [anon_sym_LT] = ACTIONS(444), - [anon_sym_LBRACE_EQ] = ACTIONS(447), - [anon_sym_LBRACE_PLUS] = ACTIONS(450), - [anon_sym_LBRACE_DASH] = ACTIONS(453), - [sym_symbol] = ACTIONS(438), - [anon_sym_LBRACE_CARET] = ACTIONS(456), - [anon_sym_CARET] = ACTIONS(456), - [anon_sym_LBRACE_TILDE] = ACTIONS(459), - [anon_sym_TILDE] = ACTIONS(459), - [anon_sym_LBRACK_CARET] = ACTIONS(462), - [anon_sym_BANG_LBRACK] = ACTIONS(465), - [anon_sym_LBRACK] = ACTIONS(468), - [anon_sym_LBRACE2] = ACTIONS(441), - [anon_sym_DOLLAR] = ACTIONS(471), - [anon_sym_TODO] = ACTIONS(474), - [anon_sym_WIP] = ACTIONS(474), - [anon_sym_NOTE] = ACTIONS(477), - [anon_sym_INFO] = ACTIONS(477), - [anon_sym_XXX] = ACTIONS(477), - [sym_fixme] = ACTIONS(438), - [anon_sym_PIPE] = ACTIONS(438), - [sym__whitespace1] = ACTIONS(480), - [sym__newline] = ACTIONS(483), - [aux_sym__text_token1] = ACTIONS(486), - [sym__verbatim_begin] = ACTIONS(489), + [anon_sym_LBRACE_] = ACTIONS(420), + [anon_sym__] = ACTIONS(423), + [anon_sym_LBRACE_STAR] = ACTIONS(426), + [anon_sym_STAR] = ACTIONS(429), + [anon_sym_BSLASH] = ACTIONS(432), + [sym_quotation_marks] = ACTIONS(435), + [sym_ellipsis] = ACTIONS(435), + [sym_em_dash] = ACTIONS(435), + [sym_en_dash] = ACTIONS(438), + [sym_backslash_escape] = ACTIONS(438), + [anon_sym_LT] = ACTIONS(441), + [anon_sym_LBRACE_EQ] = ACTIONS(444), + [anon_sym_LBRACE_PLUS] = ACTIONS(447), + [anon_sym_LBRACE_DASH] = ACTIONS(450), + [sym_symbol] = ACTIONS(435), + [anon_sym_LBRACE_CARET] = ACTIONS(453), + [anon_sym_CARET] = ACTIONS(453), + [anon_sym_LBRACE_TILDE] = ACTIONS(456), + [anon_sym_TILDE] = ACTIONS(456), + [anon_sym_LBRACK_CARET] = ACTIONS(459), + [anon_sym_BANG_LBRACK] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE2] = ACTIONS(438), + [anon_sym_DOLLAR] = ACTIONS(468), + [anon_sym_TODO] = ACTIONS(471), + [anon_sym_WIP] = ACTIONS(471), + [anon_sym_NOTE] = ACTIONS(474), + [anon_sym_INFO] = ACTIONS(474), + [anon_sym_XXX] = ACTIONS(474), + [sym_fixme] = ACTIONS(435), + [anon_sym_PIPE] = ACTIONS(435), + [sym__whitespace1] = ACTIONS(477), + [sym__newline] = ACTIONS(480), + [aux_sym__text_token1] = ACTIONS(483), + [sym__verbatim_begin] = ACTIONS(486), }, [20] = { - [sym__inline] = STATE(821), - [sym__element] = STATE(83), - [sym_emphasis] = STATE(211), - [sym_emphasis_begin] = STATE(1014), - [sym_strong] = STATE(211), - [sym_strong_begin] = STATE(121), - [sym__hard_line_break] = STATE(211), - [sym_hard_line_break] = STATE(211), - [sym__smart_punctuation] = STATE(211), - [sym_autolink] = STATE(211), - [sym_highlighted] = STATE(211), - [sym_insert] = STATE(211), - [sym_delete] = STATE(211), - [sym_superscript] = STATE(211), - [sym_subscript] = STATE(211), - [sym_footnote_reference] = STATE(211), - [sym__image] = STATE(211), - [sym_full_reference_image] = STATE(211), - [sym_collapsed_reference_image] = STATE(211), - [sym_inline_image] = STATE(211), - [sym__image_description] = STATE(693), - [sym__link] = STATE(211), - [sym_full_reference_link] = STATE(211), - [sym_collapsed_reference_link] = STATE(211), - [sym_inline_link] = STATE(211), - [sym_link_text] = STATE(694), - [sym__comment_with_spaces] = STATE(211), - [sym_span] = STATE(211), - [sym_raw_inline] = STATE(211), - [sym_math] = STATE(211), - [sym_verbatim] = STATE(211), - [sym__todo_highlights] = STATE(211), - [sym_todo] = STATE(211), - [sym_note] = STATE(211), - [sym__symbol_fallback] = STATE(211), - [aux_sym__text] = STATE(137), - [aux_sym__inline_repeat1] = STATE(83), + [sym__inline] = STATE(996), + [sym__element] = STATE(91), + [sym_emphasis] = STATE(174), + [sym_emphasis_begin] = STATE(1001), + [sym_strong] = STATE(174), + [sym_strong_begin] = STATE(126), + [sym__hard_line_break] = STATE(174), + [sym_hard_line_break] = STATE(174), + [sym__smart_punctuation] = STATE(174), + [sym_autolink] = STATE(174), + [sym_highlighted] = STATE(174), + [sym_insert] = STATE(174), + [sym_delete] = STATE(174), + [sym_superscript] = STATE(174), + [sym_subscript] = STATE(174), + [sym_footnote_reference] = STATE(174), + [sym__image] = STATE(174), + [sym_full_reference_image] = STATE(174), + [sym_collapsed_reference_image] = STATE(174), + [sym_inline_image] = STATE(174), + [sym__image_description] = STATE(709), + [sym__link] = STATE(174), + [sym_full_reference_link] = STATE(174), + [sym_collapsed_reference_link] = STATE(174), + [sym_inline_link] = STATE(174), + [sym_link_text] = STATE(710), + [sym__comment_with_spaces] = STATE(174), + [sym_span] = STATE(174), + [sym_raw_inline] = STATE(174), + [sym_math] = STATE(174), + [sym_verbatim] = STATE(174), + [sym__todo_highlights] = STATE(174), + [sym_todo] = STATE(174), + [sym_note] = STATE(174), + [sym__symbol_fallback] = STATE(174), + [aux_sym__text] = STATE(148), + [aux_sym__inline_repeat1] = STATE(91), [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(285), - [anon_sym__] = ACTIONS(288), - [anon_sym_LBRACE_STAR] = ACTIONS(291), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_BSLASH] = ACTIONS(297), - [sym_quotation_marks] = ACTIONS(300), - [sym_ellipsis] = ACTIONS(300), - [sym_em_dash] = ACTIONS(300), - [sym_en_dash] = ACTIONS(303), - [sym_backslash_escape] = ACTIONS(303), - [anon_sym_LT] = ACTIONS(306), - [anon_sym_LBRACE_EQ] = ACTIONS(309), - [anon_sym_LBRACE_PLUS] = ACTIONS(312), - [anon_sym_LBRACE_DASH] = ACTIONS(315), - [sym_symbol] = ACTIONS(300), - [anon_sym_LBRACE_CARET] = ACTIONS(318), - [anon_sym_CARET] = ACTIONS(492), - [anon_sym_CARET_RBRACE] = ACTIONS(84), - [anon_sym_LBRACE_TILDE] = ACTIONS(321), - [anon_sym_TILDE] = ACTIONS(321), - [anon_sym_LBRACK_CARET] = ACTIONS(324), - [anon_sym_BANG_LBRACK] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(330), - [anon_sym_LBRACE2] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(333), - [anon_sym_TODO] = ACTIONS(336), - [anon_sym_WIP] = ACTIONS(336), - [anon_sym_NOTE] = ACTIONS(339), - [anon_sym_INFO] = ACTIONS(339), - [anon_sym_XXX] = ACTIONS(339), - [sym_fixme] = ACTIONS(300), - [anon_sym_PIPE] = ACTIONS(300), - [sym__whitespace1] = ACTIONS(342), - [sym__newline] = ACTIONS(345), - [aux_sym__text_token1] = ACTIONS(348), - [sym__verbatim_begin] = ACTIONS(351), + [anon_sym_LBRACE_] = ACTIONS(213), + [anon_sym__] = ACTIONS(216), + [anon_sym_LBRACE_STAR] = ACTIONS(219), + [anon_sym_STAR] = ACTIONS(222), + [anon_sym_BSLASH] = ACTIONS(225), + [sym_quotation_marks] = ACTIONS(228), + [sym_ellipsis] = ACTIONS(228), + [sym_em_dash] = ACTIONS(228), + [sym_en_dash] = ACTIONS(231), + [sym_backslash_escape] = ACTIONS(231), + [anon_sym_LT] = ACTIONS(234), + [anon_sym_LBRACE_EQ] = ACTIONS(237), + [anon_sym_LBRACE_PLUS] = ACTIONS(240), + [anon_sym_LBRACE_DASH] = ACTIONS(243), + [sym_symbol] = ACTIONS(228), + [anon_sym_LBRACE_CARET] = ACTIONS(246), + [anon_sym_CARET] = ACTIONS(489), + [anon_sym_CARET_RBRACE] = ACTIONS(93), + [anon_sym_LBRACE_TILDE] = ACTIONS(249), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_LBRACK_CARET] = ACTIONS(252), + [anon_sym_BANG_LBRACK] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(258), + [anon_sym_LBRACE2] = ACTIONS(231), + [anon_sym_DOLLAR] = ACTIONS(261), + [anon_sym_TODO] = ACTIONS(264), + [anon_sym_WIP] = ACTIONS(264), + [anon_sym_NOTE] = ACTIONS(267), + [anon_sym_INFO] = ACTIONS(267), + [anon_sym_XXX] = ACTIONS(267), + [sym_fixme] = ACTIONS(228), + [anon_sym_PIPE] = ACTIONS(228), + [sym__whitespace1] = ACTIONS(270), + [sym__newline] = ACTIONS(273), + [aux_sym__text_token1] = ACTIONS(276), + [sym__verbatim_begin] = ACTIONS(279), }, [21] = { - [sym__inline] = STATE(1011), + [sym__inline] = STATE(909), [sym__element] = STATE(118), - [sym_emphasis] = STATE(204), - [sym_emphasis_begin] = STATE(1017), - [sym_strong] = STATE(204), - [sym_strong_begin] = STATE(114), - [sym__hard_line_break] = STATE(204), - [sym_hard_line_break] = STATE(204), - [sym__smart_punctuation] = STATE(204), - [sym_autolink] = STATE(204), - [sym_highlighted] = STATE(204), - [sym_insert] = STATE(204), - [sym_delete] = STATE(204), - [sym_superscript] = STATE(204), - [sym_subscript] = STATE(204), - [sym_footnote_reference] = STATE(204), - [sym__image] = STATE(204), - [sym_full_reference_image] = STATE(204), - [sym_collapsed_reference_image] = STATE(204), - [sym_inline_image] = STATE(204), - [sym__image_description] = STATE(714), - [sym__link] = STATE(204), - [sym_full_reference_link] = STATE(204), - [sym_collapsed_reference_link] = STATE(204), - [sym_inline_link] = STATE(204), - [sym_link_text] = STATE(715), - [sym__comment_with_spaces] = STATE(204), - [sym_span] = STATE(204), - [sym_raw_inline] = STATE(204), - [sym_math] = STATE(204), - [sym_verbatim] = STATE(204), - [sym__todo_highlights] = STATE(204), - [sym_todo] = STATE(204), - [sym_note] = STATE(204), - [sym__symbol_fallback] = STATE(204), - [aux_sym__text] = STATE(149), + [sym_emphasis] = STATE(201), + [sym_emphasis_begin] = STATE(1005), + [sym_strong] = STATE(201), + [sym_strong_begin] = STATE(105), + [sym__hard_line_break] = STATE(201), + [sym_hard_line_break] = STATE(201), + [sym__smart_punctuation] = STATE(201), + [sym_autolink] = STATE(201), + [sym_highlighted] = STATE(201), + [sym_insert] = STATE(201), + [sym_delete] = STATE(201), + [sym_superscript] = STATE(201), + [sym_subscript] = STATE(201), + [sym_footnote_reference] = STATE(201), + [sym__image] = STATE(201), + [sym_full_reference_image] = STATE(201), + [sym_collapsed_reference_image] = STATE(201), + [sym_inline_image] = STATE(201), + [sym__image_description] = STATE(712), + [sym__link] = STATE(201), + [sym_full_reference_link] = STATE(201), + [sym_collapsed_reference_link] = STATE(201), + [sym_inline_link] = STATE(201), + [sym_link_text] = STATE(717), + [sym__comment_with_spaces] = STATE(201), + [sym_span] = STATE(201), + [sym_raw_inline] = STATE(201), + [sym_math] = STATE(201), + [sym_verbatim] = STATE(201), + [sym__todo_highlights] = STATE(201), + [sym_todo] = STATE(201), + [sym_note] = STATE(201), + [sym__symbol_fallback] = STATE(201), + [aux_sym__text] = STATE(139), [aux_sym__inline_repeat1] = STATE(118), - [ts_builtin_sym_end] = ACTIONS(84), + [ts_builtin_sym_end] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(49), [anon_sym_LBRACE_] = ACTIONS(51), [anon_sym__] = ACTIONS(54), @@ -9967,216 +9476,292 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PLUS] = ACTIONS(78), [anon_sym_LBRACE_DASH] = ACTIONS(81), [sym_symbol] = ACTIONS(66), - [anon_sym_LBRACE_CARET] = ACTIONS(86), - [anon_sym_CARET] = ACTIONS(86), - [anon_sym_LBRACE_TILDE] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_LBRACK_CARET] = ACTIONS(92), - [anon_sym_BANG_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK] = ACTIONS(100), + [anon_sym_LBRACE_CARET] = ACTIONS(84), + [anon_sym_CARET] = ACTIONS(84), + [anon_sym_LBRACE_TILDE] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_LBRACK_CARET] = ACTIONS(95), + [anon_sym_BANG_LBRACK] = ACTIONS(100), + [anon_sym_LBRACK] = ACTIONS(103), [anon_sym_LBRACE2] = ACTIONS(69), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_TODO] = ACTIONS(106), - [anon_sym_WIP] = ACTIONS(106), - [anon_sym_NOTE] = ACTIONS(109), - [anon_sym_INFO] = ACTIONS(109), - [anon_sym_XXX] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(106), + [anon_sym_TODO] = ACTIONS(109), + [anon_sym_WIP] = ACTIONS(109), + [anon_sym_NOTE] = ACTIONS(112), + [anon_sym_INFO] = ACTIONS(112), + [anon_sym_XXX] = ACTIONS(112), [sym_fixme] = ACTIONS(66), [anon_sym_PIPE] = ACTIONS(66), - [sym__whitespace1] = ACTIONS(112), - [sym__newline] = ACTIONS(115), - [aux_sym__text_token1] = ACTIONS(118), - [sym__verbatim_begin] = ACTIONS(121), + [sym__whitespace1] = ACTIONS(115), + [sym__newline] = ACTIONS(118), + [aux_sym__text_token1] = ACTIONS(121), + [sym__verbatim_begin] = ACTIONS(124), }, [22] = { - [sym__inline] = STATE(776), - [sym__element] = STATE(79), - [sym_emphasis] = STATE(172), - [sym_emphasis_begin] = STATE(1015), - [sym_strong] = STATE(172), - [sym_strong_begin] = STATE(125), - [sym__hard_line_break] = STATE(172), - [sym_hard_line_break] = STATE(172), - [sym__smart_punctuation] = STATE(172), - [sym_autolink] = STATE(172), - [sym_highlighted] = STATE(172), - [sym_insert] = STATE(172), - [sym_delete] = STATE(172), - [sym_superscript] = STATE(172), - [sym_subscript] = STATE(172), - [sym_footnote_reference] = STATE(172), - [sym__image] = STATE(172), - [sym_full_reference_image] = STATE(172), - [sym_collapsed_reference_image] = STATE(172), - [sym_inline_image] = STATE(172), - [sym__image_description] = STATE(711), - [sym__link] = STATE(172), - [sym_full_reference_link] = STATE(172), - [sym_collapsed_reference_link] = STATE(172), - [sym_inline_link] = STATE(172), - [sym_link_text] = STATE(712), - [sym__comment_with_spaces] = STATE(172), - [sym_span] = STATE(172), - [sym_raw_inline] = STATE(172), - [sym_math] = STATE(172), - [sym_verbatim] = STATE(172), - [sym__todo_highlights] = STATE(172), - [sym_todo] = STATE(172), - [sym_note] = STATE(172), - [sym__symbol_fallback] = STATE(172), + [sym__inline] = STATE(873), + [sym__element] = STATE(88), + [sym_emphasis] = STATE(209), + [sym_emphasis_begin] = STATE(1002), + [sym_strong] = STATE(209), + [sym_strong_begin] = STATE(121), + [sym__hard_line_break] = STATE(209), + [sym_hard_line_break] = STATE(209), + [sym__smart_punctuation] = STATE(209), + [sym_autolink] = STATE(209), + [sym_highlighted] = STATE(209), + [sym_insert] = STATE(209), + [sym_delete] = STATE(209), + [sym_superscript] = STATE(209), + [sym_subscript] = STATE(209), + [sym_footnote_reference] = STATE(209), + [sym__image] = STATE(209), + [sym_full_reference_image] = STATE(209), + [sym_collapsed_reference_image] = STATE(209), + [sym_inline_image] = STATE(209), + [sym__image_description] = STATE(706), + [sym__link] = STATE(209), + [sym_full_reference_link] = STATE(209), + [sym_collapsed_reference_link] = STATE(209), + [sym_inline_link] = STATE(209), + [sym_link_text] = STATE(707), + [sym__comment_with_spaces] = STATE(209), + [sym_span] = STATE(209), + [sym_raw_inline] = STATE(209), + [sym_math] = STATE(209), + [sym_verbatim] = STATE(209), + [sym__todo_highlights] = STATE(209), + [sym_todo] = STATE(209), + [sym_note] = STATE(209), + [sym__symbol_fallback] = STATE(209), + [aux_sym__text] = STATE(150), + [aux_sym__inline_repeat1] = STATE(88), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(282), + [anon_sym__] = ACTIONS(285), + [anon_sym_LBRACE_STAR] = ACTIONS(288), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_BSLASH] = ACTIONS(294), + [sym_quotation_marks] = ACTIONS(297), + [sym_ellipsis] = ACTIONS(297), + [sym_em_dash] = ACTIONS(297), + [sym_en_dash] = ACTIONS(300), + [sym_backslash_escape] = ACTIONS(300), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACE_EQ] = ACTIONS(306), + [anon_sym_LBRACE_PLUS] = ACTIONS(309), + [anon_sym_LBRACE_DASH] = ACTIONS(312), + [sym_symbol] = ACTIONS(297), + [anon_sym_LBRACE_CARET] = ACTIONS(315), + [anon_sym_CARET] = ACTIONS(492), + [anon_sym_CARET_RBRACE] = ACTIONS(93), + [anon_sym_LBRACE_TILDE] = ACTIONS(318), + [anon_sym_TILDE] = ACTIONS(318), + [anon_sym_LBRACK_CARET] = ACTIONS(321), + [anon_sym_BANG_LBRACK] = ACTIONS(324), + [anon_sym_LBRACK] = ACTIONS(327), + [anon_sym_LBRACE2] = ACTIONS(300), + [anon_sym_DOLLAR] = ACTIONS(330), + [anon_sym_TODO] = ACTIONS(333), + [anon_sym_WIP] = ACTIONS(333), + [anon_sym_NOTE] = ACTIONS(336), + [anon_sym_INFO] = ACTIONS(336), + [anon_sym_XXX] = ACTIONS(336), + [sym_fixme] = ACTIONS(297), + [anon_sym_PIPE] = ACTIONS(297), + [sym__whitespace1] = ACTIONS(339), + [sym__newline] = ACTIONS(342), + [aux_sym__text_token1] = ACTIONS(345), + [sym__verbatim_begin] = ACTIONS(348), + }, + [23] = { + [sym__inline] = STATE(738), + [sym__element] = STATE(102), + [sym_emphasis] = STATE(194), + [sym_emphasis_begin] = STATE(1003), + [sym_strong] = STATE(194), + [sym_strong_begin] = STATE(113), + [sym__hard_line_break] = STATE(194), + [sym_hard_line_break] = STATE(194), + [sym__smart_punctuation] = STATE(194), + [sym_autolink] = STATE(194), + [sym_highlighted] = STATE(194), + [sym_insert] = STATE(194), + [sym_delete] = STATE(194), + [sym_superscript] = STATE(194), + [sym_subscript] = STATE(194), + [sym_footnote_reference] = STATE(194), + [sym__image] = STATE(194), + [sym_full_reference_image] = STATE(194), + [sym_collapsed_reference_image] = STATE(194), + [sym_inline_image] = STATE(194), + [sym__image_description] = STATE(696), + [sym__link] = STATE(194), + [sym_full_reference_link] = STATE(194), + [sym_collapsed_reference_link] = STATE(194), + [sym_inline_link] = STATE(194), + [sym_link_text] = STATE(695), + [sym__comment_with_spaces] = STATE(194), + [sym_span] = STATE(194), + [sym_raw_inline] = STATE(194), + [sym_math] = STATE(194), + [sym_verbatim] = STATE(194), + [sym__todo_highlights] = STATE(194), + [sym_todo] = STATE(194), + [sym_note] = STATE(194), + [sym__symbol_fallback] = STATE(194), [aux_sym__text] = STATE(170), - [aux_sym__inline_repeat1] = STATE(79), + [aux_sym__inline_repeat1] = STATE(102), [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(354), - [anon_sym__] = ACTIONS(357), - [anon_sym_LBRACE_STAR] = ACTIONS(360), - [anon_sym_STAR] = ACTIONS(363), - [anon_sym_BSLASH] = ACTIONS(366), - [sym_quotation_marks] = ACTIONS(369), - [sym_ellipsis] = ACTIONS(369), - [sym_em_dash] = ACTIONS(369), - [sym_en_dash] = ACTIONS(372), - [sym_backslash_escape] = ACTIONS(372), - [anon_sym_LT] = ACTIONS(375), - [anon_sym_LBRACE_EQ] = ACTIONS(378), - [anon_sym_LBRACE_PLUS] = ACTIONS(381), - [anon_sym_LBRACE_DASH] = ACTIONS(384), - [sym_symbol] = ACTIONS(369), - [anon_sym_LBRACE_CARET] = ACTIONS(387), + [anon_sym_LBRACE_] = ACTIONS(351), + [anon_sym__] = ACTIONS(354), + [anon_sym_LBRACE_STAR] = ACTIONS(357), + [anon_sym_STAR] = ACTIONS(360), + [anon_sym_BSLASH] = ACTIONS(363), + [sym_quotation_marks] = ACTIONS(366), + [sym_ellipsis] = ACTIONS(366), + [sym_em_dash] = ACTIONS(366), + [sym_en_dash] = ACTIONS(369), + [sym_backslash_escape] = ACTIONS(369), + [anon_sym_LT] = ACTIONS(372), + [anon_sym_LBRACE_EQ] = ACTIONS(375), + [anon_sym_LBRACE_PLUS] = ACTIONS(378), + [anon_sym_LBRACE_DASH] = ACTIONS(381), + [sym_symbol] = ACTIONS(366), + [anon_sym_LBRACE_CARET] = ACTIONS(384), [anon_sym_CARET] = ACTIONS(495), - [anon_sym_CARET_RBRACE] = ACTIONS(84), - [anon_sym_LBRACE_TILDE] = ACTIONS(390), - [anon_sym_TILDE] = ACTIONS(390), - [anon_sym_LBRACK_CARET] = ACTIONS(393), - [anon_sym_BANG_LBRACK] = ACTIONS(396), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_LBRACE2] = ACTIONS(372), - [anon_sym_DOLLAR] = ACTIONS(402), - [anon_sym_TODO] = ACTIONS(405), - [anon_sym_WIP] = ACTIONS(405), - [anon_sym_NOTE] = ACTIONS(408), - [anon_sym_INFO] = ACTIONS(408), - [anon_sym_XXX] = ACTIONS(408), - [sym_fixme] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(369), - [sym__whitespace1] = ACTIONS(411), - [sym__newline] = ACTIONS(414), - [aux_sym__text_token1] = ACTIONS(417), - [sym__verbatim_begin] = ACTIONS(420), + [anon_sym_CARET_RBRACE] = ACTIONS(93), + [anon_sym_LBRACE_TILDE] = ACTIONS(387), + [anon_sym_TILDE] = ACTIONS(387), + [anon_sym_LBRACK_CARET] = ACTIONS(390), + [anon_sym_BANG_LBRACK] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(396), + [anon_sym_LBRACE2] = ACTIONS(369), + [anon_sym_DOLLAR] = ACTIONS(399), + [anon_sym_TODO] = ACTIONS(402), + [anon_sym_WIP] = ACTIONS(402), + [anon_sym_NOTE] = ACTIONS(405), + [anon_sym_INFO] = ACTIONS(405), + [anon_sym_XXX] = ACTIONS(405), + [sym_fixme] = ACTIONS(366), + [anon_sym_PIPE] = ACTIONS(366), + [sym__whitespace1] = ACTIONS(408), + [sym__newline] = ACTIONS(411), + [aux_sym__text_token1] = ACTIONS(414), + [sym__verbatim_begin] = ACTIONS(417), }, - [23] = { - [sym__inline] = STATE(771), - [sym__element] = STATE(117), - [sym_emphasis] = STATE(182), - [sym_emphasis_begin] = STATE(1016), - [sym_strong] = STATE(182), - [sym_strong_begin] = STATE(122), - [sym__hard_line_break] = STATE(182), - [sym_hard_line_break] = STATE(182), - [sym__smart_punctuation] = STATE(182), - [sym_autolink] = STATE(182), - [sym_highlighted] = STATE(182), - [sym_insert] = STATE(182), - [sym_delete] = STATE(182), - [sym_superscript] = STATE(182), - [sym_subscript] = STATE(182), - [sym_footnote_reference] = STATE(182), - [sym__image] = STATE(182), - [sym_full_reference_image] = STATE(182), - [sym_collapsed_reference_image] = STATE(182), - [sym_inline_image] = STATE(182), - [sym__image_description] = STATE(692), - [sym__link] = STATE(182), - [sym_full_reference_link] = STATE(182), - [sym_collapsed_reference_link] = STATE(182), - [sym_inline_link] = STATE(182), - [sym_link_text] = STATE(689), - [sym__comment_with_spaces] = STATE(182), - [sym_span] = STATE(182), - [sym_raw_inline] = STATE(182), - [sym_math] = STATE(182), - [sym_verbatim] = STATE(182), - [sym__todo_highlights] = STATE(182), - [sym_todo] = STATE(182), - [sym_note] = STATE(182), - [sym__symbol_fallback] = STATE(182), + [24] = { + [sym__inline] = STATE(739), + [sym__element] = STATE(114), + [sym_emphasis] = STATE(181), + [sym_emphasis_begin] = STATE(1004), + [sym_strong] = STATE(181), + [sym_strong_begin] = STATE(110), + [sym__hard_line_break] = STATE(181), + [sym_hard_line_break] = STATE(181), + [sym__smart_punctuation] = STATE(181), + [sym_autolink] = STATE(181), + [sym_highlighted] = STATE(181), + [sym_insert] = STATE(181), + [sym_delete] = STATE(181), + [sym_superscript] = STATE(181), + [sym_subscript] = STATE(181), + [sym_footnote_reference] = STATE(181), + [sym__image] = STATE(181), + [sym_full_reference_image] = STATE(181), + [sym_collapsed_reference_image] = STATE(181), + [sym_inline_image] = STATE(181), + [sym__image_description] = STATE(688), + [sym__link] = STATE(181), + [sym_full_reference_link] = STATE(181), + [sym_collapsed_reference_link] = STATE(181), + [sym_inline_link] = STATE(181), + [sym_link_text] = STATE(693), + [sym__comment_with_spaces] = STATE(181), + [sym_span] = STATE(181), + [sym_raw_inline] = STATE(181), + [sym_math] = STATE(181), + [sym_verbatim] = STATE(181), + [sym__todo_highlights] = STATE(181), + [sym_todo] = STATE(181), + [sym_note] = STATE(181), + [sym__symbol_fallback] = STATE(181), [aux_sym__text] = STATE(153), - [aux_sym__inline_repeat1] = STATE(117), + [aux_sym__inline_repeat1] = STATE(114), [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(423), - [anon_sym__] = ACTIONS(426), - [anon_sym_LBRACE_STAR] = ACTIONS(429), - [anon_sym_STAR] = ACTIONS(432), - [anon_sym_BSLASH] = ACTIONS(435), - [sym_quotation_marks] = ACTIONS(438), - [sym_ellipsis] = ACTIONS(438), - [sym_em_dash] = ACTIONS(438), - [sym_en_dash] = ACTIONS(441), - [sym_backslash_escape] = ACTIONS(441), - [anon_sym_LT] = ACTIONS(444), - [anon_sym_LBRACE_EQ] = ACTIONS(447), - [anon_sym_LBRACE_PLUS] = ACTIONS(450), - [anon_sym_LBRACE_DASH] = ACTIONS(453), - [sym_symbol] = ACTIONS(438), - [anon_sym_LBRACE_CARET] = ACTIONS(456), + [anon_sym_LBRACE_] = ACTIONS(420), + [anon_sym__] = ACTIONS(423), + [anon_sym_LBRACE_STAR] = ACTIONS(426), + [anon_sym_STAR] = ACTIONS(429), + [anon_sym_BSLASH] = ACTIONS(432), + [sym_quotation_marks] = ACTIONS(435), + [sym_ellipsis] = ACTIONS(435), + [sym_em_dash] = ACTIONS(435), + [sym_en_dash] = ACTIONS(438), + [sym_backslash_escape] = ACTIONS(438), + [anon_sym_LT] = ACTIONS(441), + [anon_sym_LBRACE_EQ] = ACTIONS(444), + [anon_sym_LBRACE_PLUS] = ACTIONS(447), + [anon_sym_LBRACE_DASH] = ACTIONS(450), + [sym_symbol] = ACTIONS(435), + [anon_sym_LBRACE_CARET] = ACTIONS(453), [anon_sym_CARET] = ACTIONS(498), - [anon_sym_CARET_RBRACE] = ACTIONS(84), - [anon_sym_LBRACE_TILDE] = ACTIONS(459), - [anon_sym_TILDE] = ACTIONS(459), - [anon_sym_LBRACK_CARET] = ACTIONS(462), - [anon_sym_BANG_LBRACK] = ACTIONS(465), - [anon_sym_LBRACK] = ACTIONS(468), - [anon_sym_LBRACE2] = ACTIONS(441), - [anon_sym_DOLLAR] = ACTIONS(471), - [anon_sym_TODO] = ACTIONS(474), - [anon_sym_WIP] = ACTIONS(474), - [anon_sym_NOTE] = ACTIONS(477), - [anon_sym_INFO] = ACTIONS(477), - [anon_sym_XXX] = ACTIONS(477), - [sym_fixme] = ACTIONS(438), - [anon_sym_PIPE] = ACTIONS(438), - [sym__whitespace1] = ACTIONS(480), - [sym__newline] = ACTIONS(483), - [aux_sym__text_token1] = ACTIONS(486), - [sym__verbatim_begin] = ACTIONS(489), + [anon_sym_CARET_RBRACE] = ACTIONS(93), + [anon_sym_LBRACE_TILDE] = ACTIONS(456), + [anon_sym_TILDE] = ACTIONS(456), + [anon_sym_LBRACK_CARET] = ACTIONS(459), + [anon_sym_BANG_LBRACK] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE2] = ACTIONS(438), + [anon_sym_DOLLAR] = ACTIONS(468), + [anon_sym_TODO] = ACTIONS(471), + [anon_sym_WIP] = ACTIONS(471), + [anon_sym_NOTE] = ACTIONS(474), + [anon_sym_INFO] = ACTIONS(474), + [anon_sym_XXX] = ACTIONS(474), + [sym_fixme] = ACTIONS(435), + [anon_sym_PIPE] = ACTIONS(435), + [sym__whitespace1] = ACTIONS(477), + [sym__newline] = ACTIONS(480), + [aux_sym__text_token1] = ACTIONS(483), + [sym__verbatim_begin] = ACTIONS(486), }, - [24] = { - [sym__inline] = STATE(923), + [25] = { + [sym__inline] = STATE(921), [sym__element] = STATE(118), - [sym_emphasis] = STATE(204), - [sym_emphasis_begin] = STATE(1017), - [sym_strong] = STATE(204), - [sym_strong_begin] = STATE(114), - [sym__hard_line_break] = STATE(204), - [sym_hard_line_break] = STATE(204), - [sym__smart_punctuation] = STATE(204), - [sym_autolink] = STATE(204), - [sym_highlighted] = STATE(204), - [sym_insert] = STATE(204), - [sym_delete] = STATE(204), - [sym_superscript] = STATE(204), - [sym_subscript] = STATE(204), - [sym_footnote_reference] = STATE(204), - [sym__image] = STATE(204), - [sym_full_reference_image] = STATE(204), - [sym_collapsed_reference_image] = STATE(204), - [sym_inline_image] = STATE(204), - [sym__image_description] = STATE(714), - [sym__link] = STATE(204), - [sym_full_reference_link] = STATE(204), - [sym_collapsed_reference_link] = STATE(204), - [sym_inline_link] = STATE(204), - [sym_link_text] = STATE(715), - [sym__comment_with_spaces] = STATE(204), - [sym_span] = STATE(204), - [sym_raw_inline] = STATE(204), - [sym_math] = STATE(204), - [sym_verbatim] = STATE(204), - [sym__todo_highlights] = STATE(204), - [sym_todo] = STATE(204), - [sym_note] = STATE(204), - [sym__symbol_fallback] = STATE(204), - [aux_sym__text] = STATE(149), + [sym_emphasis] = STATE(201), + [sym_emphasis_begin] = STATE(1005), + [sym_strong] = STATE(201), + [sym_strong_begin] = STATE(105), + [sym__hard_line_break] = STATE(201), + [sym_hard_line_break] = STATE(201), + [sym__smart_punctuation] = STATE(201), + [sym_autolink] = STATE(201), + [sym_highlighted] = STATE(201), + [sym_insert] = STATE(201), + [sym_delete] = STATE(201), + [sym_superscript] = STATE(201), + [sym_subscript] = STATE(201), + [sym_footnote_reference] = STATE(201), + [sym__image] = STATE(201), + [sym_full_reference_image] = STATE(201), + [sym_collapsed_reference_image] = STATE(201), + [sym_inline_image] = STATE(201), + [sym__image_description] = STATE(712), + [sym__link] = STATE(201), + [sym_full_reference_link] = STATE(201), + [sym_collapsed_reference_link] = STATE(201), + [sym_inline_link] = STATE(201), + [sym_link_text] = STATE(717), + [sym__comment_with_spaces] = STATE(201), + [sym_span] = STATE(201), + [sym_raw_inline] = STATE(201), + [sym_math] = STATE(201), + [sym_verbatim] = STATE(201), + [sym__todo_highlights] = STATE(201), + [sym_todo] = STATE(201), + [sym_note] = STATE(201), + [sym__symbol_fallback] = STATE(201), + [aux_sym__text] = STATE(139), [aux_sym__inline_repeat1] = STATE(118), [anon_sym_LBRACE] = ACTIONS(49), [anon_sym_LBRACE_] = ACTIONS(51), @@ -10192,372 +9777,372 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(72), [anon_sym_LBRACE_EQ] = ACTIONS(75), [anon_sym_LBRACE_PLUS] = ACTIONS(78), - [anon_sym_PLUS_RBRACE] = ACTIONS(84), + [anon_sym_PLUS_RBRACE] = ACTIONS(93), [anon_sym_LBRACE_DASH] = ACTIONS(81), [sym_symbol] = ACTIONS(66), - [anon_sym_LBRACE_CARET] = ACTIONS(86), - [anon_sym_CARET] = ACTIONS(86), - [anon_sym_LBRACE_TILDE] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_LBRACK_CARET] = ACTIONS(92), - [anon_sym_BANG_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK] = ACTIONS(100), + [anon_sym_LBRACE_CARET] = ACTIONS(84), + [anon_sym_CARET] = ACTIONS(84), + [anon_sym_LBRACE_TILDE] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_LBRACK_CARET] = ACTIONS(95), + [anon_sym_BANG_LBRACK] = ACTIONS(100), + [anon_sym_LBRACK] = ACTIONS(103), [anon_sym_LBRACE2] = ACTIONS(69), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_TODO] = ACTIONS(106), - [anon_sym_WIP] = ACTIONS(106), - [anon_sym_NOTE] = ACTIONS(109), - [anon_sym_INFO] = ACTIONS(109), - [anon_sym_XXX] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(106), + [anon_sym_TODO] = ACTIONS(109), + [anon_sym_WIP] = ACTIONS(109), + [anon_sym_NOTE] = ACTIONS(112), + [anon_sym_INFO] = ACTIONS(112), + [anon_sym_XXX] = ACTIONS(112), [sym_fixme] = ACTIONS(66), [anon_sym_PIPE] = ACTIONS(66), - [sym__whitespace1] = ACTIONS(112), - [sym__newline] = ACTIONS(115), - [aux_sym__text_token1] = ACTIONS(118), - [sym__verbatim_begin] = ACTIONS(121), + [sym__whitespace1] = ACTIONS(115), + [sym__newline] = ACTIONS(118), + [aux_sym__text_token1] = ACTIONS(121), + [sym__verbatim_begin] = ACTIONS(124), }, - [25] = { - [sym__inline] = STATE(794), - [sym__element] = STATE(117), - [sym_emphasis] = STATE(182), - [sym_emphasis_begin] = STATE(1016), - [sym_strong] = STATE(182), - [sym_strong_begin] = STATE(122), - [sym__hard_line_break] = STATE(182), - [sym_hard_line_break] = STATE(182), - [sym__smart_punctuation] = STATE(182), - [sym_autolink] = STATE(182), - [sym_highlighted] = STATE(182), - [sym_insert] = STATE(182), - [sym_delete] = STATE(182), - [sym_superscript] = STATE(182), - [sym_subscript] = STATE(182), - [sym_footnote_reference] = STATE(182), - [sym__image] = STATE(182), - [sym_full_reference_image] = STATE(182), - [sym_collapsed_reference_image] = STATE(182), - [sym_inline_image] = STATE(182), - [sym__image_description] = STATE(692), - [sym__link] = STATE(182), - [sym_full_reference_link] = STATE(182), - [sym_collapsed_reference_link] = STATE(182), - [sym_inline_link] = STATE(182), - [sym_link_text] = STATE(689), - [sym__comment_with_spaces] = STATE(182), - [sym_span] = STATE(182), - [sym_raw_inline] = STATE(182), - [sym_math] = STATE(182), - [sym_verbatim] = STATE(182), - [sym__todo_highlights] = STATE(182), - [sym_todo] = STATE(182), - [sym_note] = STATE(182), - [sym__symbol_fallback] = STATE(182), + [26] = { + [sym__inline] = STATE(787), + [sym__element] = STATE(114), + [sym_emphasis] = STATE(181), + [sym_emphasis_begin] = STATE(1004), + [sym_strong] = STATE(181), + [sym_strong_begin] = STATE(110), + [sym__hard_line_break] = STATE(181), + [sym_hard_line_break] = STATE(181), + [sym__smart_punctuation] = STATE(181), + [sym_autolink] = STATE(181), + [sym_highlighted] = STATE(181), + [sym_insert] = STATE(181), + [sym_delete] = STATE(181), + [sym_superscript] = STATE(181), + [sym_subscript] = STATE(181), + [sym_footnote_reference] = STATE(181), + [sym__image] = STATE(181), + [sym_full_reference_image] = STATE(181), + [sym_collapsed_reference_image] = STATE(181), + [sym_inline_image] = STATE(181), + [sym__image_description] = STATE(688), + [sym__link] = STATE(181), + [sym_full_reference_link] = STATE(181), + [sym_collapsed_reference_link] = STATE(181), + [sym_inline_link] = STATE(181), + [sym_link_text] = STATE(693), + [sym__comment_with_spaces] = STATE(181), + [sym_span] = STATE(181), + [sym_raw_inline] = STATE(181), + [sym_math] = STATE(181), + [sym_verbatim] = STATE(181), + [sym__todo_highlights] = STATE(181), + [sym_todo] = STATE(181), + [sym_note] = STATE(181), + [sym__symbol_fallback] = STATE(181), [aux_sym__text] = STATE(153), - [aux_sym__inline_repeat1] = STATE(117), + [aux_sym__inline_repeat1] = STATE(114), [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(423), - [anon_sym__] = ACTIONS(426), - [anon_sym_LBRACE_STAR] = ACTIONS(429), - [anon_sym_STAR] = ACTIONS(432), - [anon_sym_BSLASH] = ACTIONS(435), - [sym_quotation_marks] = ACTIONS(438), - [sym_ellipsis] = ACTIONS(438), - [sym_em_dash] = ACTIONS(438), - [sym_en_dash] = ACTIONS(441), - [sym_backslash_escape] = ACTIONS(441), - [anon_sym_LT] = ACTIONS(444), - [anon_sym_LBRACE_EQ] = ACTIONS(447), - [anon_sym_LBRACE_PLUS] = ACTIONS(450), - [anon_sym_PLUS_RBRACE] = ACTIONS(84), - [anon_sym_LBRACE_DASH] = ACTIONS(453), - [sym_symbol] = ACTIONS(438), - [anon_sym_LBRACE_CARET] = ACTIONS(456), - [anon_sym_CARET] = ACTIONS(456), - [anon_sym_LBRACE_TILDE] = ACTIONS(459), - [anon_sym_TILDE] = ACTIONS(459), - [anon_sym_LBRACK_CARET] = ACTIONS(462), - [anon_sym_BANG_LBRACK] = ACTIONS(465), - [anon_sym_LBRACK] = ACTIONS(468), - [anon_sym_LBRACE2] = ACTIONS(441), - [anon_sym_DOLLAR] = ACTIONS(471), - [anon_sym_TODO] = ACTIONS(474), - [anon_sym_WIP] = ACTIONS(474), - [anon_sym_NOTE] = ACTIONS(477), - [anon_sym_INFO] = ACTIONS(477), - [anon_sym_XXX] = ACTIONS(477), - [sym_fixme] = ACTIONS(438), - [anon_sym_PIPE] = ACTIONS(438), - [sym__whitespace1] = ACTIONS(480), - [sym__newline] = ACTIONS(483), - [aux_sym__text_token1] = ACTIONS(486), - [sym__verbatim_begin] = ACTIONS(489), - }, - [26] = { - [sym__inline] = STATE(797), - [sym__element] = STATE(79), - [sym_emphasis] = STATE(172), - [sym_emphasis_begin] = STATE(1015), - [sym_strong] = STATE(172), - [sym_strong_begin] = STATE(125), - [sym__hard_line_break] = STATE(172), - [sym_hard_line_break] = STATE(172), - [sym__smart_punctuation] = STATE(172), - [sym_autolink] = STATE(172), - [sym_highlighted] = STATE(172), - [sym_insert] = STATE(172), - [sym_delete] = STATE(172), - [sym_superscript] = STATE(172), - [sym_subscript] = STATE(172), - [sym_footnote_reference] = STATE(172), - [sym__image] = STATE(172), - [sym_full_reference_image] = STATE(172), - [sym_collapsed_reference_image] = STATE(172), - [sym_inline_image] = STATE(172), - [sym__image_description] = STATE(711), - [sym__link] = STATE(172), - [sym_full_reference_link] = STATE(172), - [sym_collapsed_reference_link] = STATE(172), - [sym_inline_link] = STATE(172), - [sym_link_text] = STATE(712), - [sym__comment_with_spaces] = STATE(172), - [sym_span] = STATE(172), - [sym_raw_inline] = STATE(172), - [sym_math] = STATE(172), - [sym_verbatim] = STATE(172), - [sym__todo_highlights] = STATE(172), - [sym_todo] = STATE(172), - [sym_note] = STATE(172), - [sym__symbol_fallback] = STATE(172), - [aux_sym__text] = STATE(170), - [aux_sym__inline_repeat1] = STATE(79), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(354), - [anon_sym__] = ACTIONS(357), - [anon_sym_LBRACE_STAR] = ACTIONS(360), - [anon_sym_STAR] = ACTIONS(363), - [anon_sym_BSLASH] = ACTIONS(366), - [sym_quotation_marks] = ACTIONS(369), - [sym_ellipsis] = ACTIONS(369), - [sym_em_dash] = ACTIONS(369), - [sym_en_dash] = ACTIONS(372), - [sym_backslash_escape] = ACTIONS(372), - [anon_sym_LT] = ACTIONS(375), - [anon_sym_LBRACE_EQ] = ACTIONS(378), - [anon_sym_LBRACE_PLUS] = ACTIONS(381), - [anon_sym_PLUS_RBRACE] = ACTIONS(84), - [anon_sym_LBRACE_DASH] = ACTIONS(384), - [sym_symbol] = ACTIONS(369), - [anon_sym_LBRACE_CARET] = ACTIONS(387), - [anon_sym_CARET] = ACTIONS(387), - [anon_sym_LBRACE_TILDE] = ACTIONS(390), - [anon_sym_TILDE] = ACTIONS(390), - [anon_sym_LBRACK_CARET] = ACTIONS(393), - [anon_sym_BANG_LBRACK] = ACTIONS(396), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_LBRACE2] = ACTIONS(372), - [anon_sym_DOLLAR] = ACTIONS(402), - [anon_sym_TODO] = ACTIONS(405), - [anon_sym_WIP] = ACTIONS(405), - [anon_sym_NOTE] = ACTIONS(408), - [anon_sym_INFO] = ACTIONS(408), - [anon_sym_XXX] = ACTIONS(408), - [sym_fixme] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(369), - [sym__whitespace1] = ACTIONS(411), - [sym__newline] = ACTIONS(414), - [aux_sym__text_token1] = ACTIONS(417), - [sym__verbatim_begin] = ACTIONS(420), + [anon_sym_LBRACE_] = ACTIONS(420), + [anon_sym__] = ACTIONS(423), + [anon_sym_LBRACE_STAR] = ACTIONS(426), + [anon_sym_STAR] = ACTIONS(429), + [anon_sym_BSLASH] = ACTIONS(432), + [sym_quotation_marks] = ACTIONS(435), + [sym_ellipsis] = ACTIONS(435), + [sym_em_dash] = ACTIONS(435), + [sym_en_dash] = ACTIONS(438), + [sym_backslash_escape] = ACTIONS(438), + [anon_sym_LT] = ACTIONS(441), + [anon_sym_LBRACE_EQ] = ACTIONS(444), + [anon_sym_LBRACE_PLUS] = ACTIONS(447), + [anon_sym_PLUS_RBRACE] = ACTIONS(93), + [anon_sym_LBRACE_DASH] = ACTIONS(450), + [sym_symbol] = ACTIONS(435), + [anon_sym_LBRACE_CARET] = ACTIONS(453), + [anon_sym_CARET] = ACTIONS(453), + [anon_sym_LBRACE_TILDE] = ACTIONS(456), + [anon_sym_TILDE] = ACTIONS(456), + [anon_sym_LBRACK_CARET] = ACTIONS(459), + [anon_sym_BANG_LBRACK] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE2] = ACTIONS(438), + [anon_sym_DOLLAR] = ACTIONS(468), + [anon_sym_TODO] = ACTIONS(471), + [anon_sym_WIP] = ACTIONS(471), + [anon_sym_NOTE] = ACTIONS(474), + [anon_sym_INFO] = ACTIONS(474), + [anon_sym_XXX] = ACTIONS(474), + [sym_fixme] = ACTIONS(435), + [anon_sym_PIPE] = ACTIONS(435), + [sym__whitespace1] = ACTIONS(477), + [sym__newline] = ACTIONS(480), + [aux_sym__text_token1] = ACTIONS(483), + [sym__verbatim_begin] = ACTIONS(486), }, [27] = { - [sym__inline] = STATE(928), - [sym__element] = STATE(83), - [sym_emphasis] = STATE(211), - [sym_emphasis_begin] = STATE(1014), - [sym_strong] = STATE(211), - [sym_strong_begin] = STATE(121), - [sym__hard_line_break] = STATE(211), - [sym_hard_line_break] = STATE(211), - [sym__smart_punctuation] = STATE(211), - [sym_autolink] = STATE(211), - [sym_highlighted] = STATE(211), - [sym_insert] = STATE(211), - [sym_delete] = STATE(211), - [sym_superscript] = STATE(211), - [sym_subscript] = STATE(211), - [sym_footnote_reference] = STATE(211), - [sym__image] = STATE(211), - [sym_full_reference_image] = STATE(211), - [sym_collapsed_reference_image] = STATE(211), - [sym_inline_image] = STATE(211), - [sym__image_description] = STATE(693), - [sym__link] = STATE(211), - [sym_full_reference_link] = STATE(211), - [sym_collapsed_reference_link] = STATE(211), - [sym_inline_link] = STATE(211), - [sym_link_text] = STATE(694), - [sym__comment_with_spaces] = STATE(211), - [sym_span] = STATE(211), - [sym_raw_inline] = STATE(211), - [sym_math] = STATE(211), - [sym_verbatim] = STATE(211), - [sym__todo_highlights] = STATE(211), - [sym_todo] = STATE(211), - [sym_note] = STATE(211), - [sym__symbol_fallback] = STATE(211), - [aux_sym__text] = STATE(137), - [aux_sym__inline_repeat1] = STATE(83), + [sym__inline] = STATE(780), + [sym__element] = STATE(102), + [sym_emphasis] = STATE(194), + [sym_emphasis_begin] = STATE(1003), + [sym_strong] = STATE(194), + [sym_strong_begin] = STATE(113), + [sym__hard_line_break] = STATE(194), + [sym_hard_line_break] = STATE(194), + [sym__smart_punctuation] = STATE(194), + [sym_autolink] = STATE(194), + [sym_highlighted] = STATE(194), + [sym_insert] = STATE(194), + [sym_delete] = STATE(194), + [sym_superscript] = STATE(194), + [sym_subscript] = STATE(194), + [sym_footnote_reference] = STATE(194), + [sym__image] = STATE(194), + [sym_full_reference_image] = STATE(194), + [sym_collapsed_reference_image] = STATE(194), + [sym_inline_image] = STATE(194), + [sym__image_description] = STATE(696), + [sym__link] = STATE(194), + [sym_full_reference_link] = STATE(194), + [sym_collapsed_reference_link] = STATE(194), + [sym_inline_link] = STATE(194), + [sym_link_text] = STATE(695), + [sym__comment_with_spaces] = STATE(194), + [sym_span] = STATE(194), + [sym_raw_inline] = STATE(194), + [sym_math] = STATE(194), + [sym_verbatim] = STATE(194), + [sym__todo_highlights] = STATE(194), + [sym_todo] = STATE(194), + [sym_note] = STATE(194), + [sym__symbol_fallback] = STATE(194), + [aux_sym__text] = STATE(170), + [aux_sym__inline_repeat1] = STATE(102), [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(285), - [anon_sym__] = ACTIONS(288), - [anon_sym_LBRACE_STAR] = ACTIONS(291), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_BSLASH] = ACTIONS(297), - [sym_quotation_marks] = ACTIONS(300), - [sym_ellipsis] = ACTIONS(300), - [sym_em_dash] = ACTIONS(300), - [sym_en_dash] = ACTIONS(303), - [sym_backslash_escape] = ACTIONS(303), - [anon_sym_LT] = ACTIONS(306), - [anon_sym_LBRACE_EQ] = ACTIONS(309), - [anon_sym_LBRACE_PLUS] = ACTIONS(312), - [anon_sym_PLUS_RBRACE] = ACTIONS(84), - [anon_sym_LBRACE_DASH] = ACTIONS(315), - [sym_symbol] = ACTIONS(300), - [anon_sym_LBRACE_CARET] = ACTIONS(318), - [anon_sym_CARET] = ACTIONS(318), - [anon_sym_LBRACE_TILDE] = ACTIONS(321), - [anon_sym_TILDE] = ACTIONS(321), - [anon_sym_LBRACK_CARET] = ACTIONS(324), - [anon_sym_BANG_LBRACK] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(330), - [anon_sym_LBRACE2] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(333), - [anon_sym_TODO] = ACTIONS(336), - [anon_sym_WIP] = ACTIONS(336), - [anon_sym_NOTE] = ACTIONS(339), - [anon_sym_INFO] = ACTIONS(339), - [anon_sym_XXX] = ACTIONS(339), - [sym_fixme] = ACTIONS(300), - [anon_sym_PIPE] = ACTIONS(300), - [sym__whitespace1] = ACTIONS(342), - [sym__newline] = ACTIONS(345), - [aux_sym__text_token1] = ACTIONS(348), - [sym__verbatim_begin] = ACTIONS(351), + [anon_sym_LBRACE_] = ACTIONS(351), + [anon_sym__] = ACTIONS(354), + [anon_sym_LBRACE_STAR] = ACTIONS(357), + [anon_sym_STAR] = ACTIONS(360), + [anon_sym_BSLASH] = ACTIONS(363), + [sym_quotation_marks] = ACTIONS(366), + [sym_ellipsis] = ACTIONS(366), + [sym_em_dash] = ACTIONS(366), + [sym_en_dash] = ACTIONS(369), + [sym_backslash_escape] = ACTIONS(369), + [anon_sym_LT] = ACTIONS(372), + [anon_sym_LBRACE_EQ] = ACTIONS(375), + [anon_sym_LBRACE_PLUS] = ACTIONS(378), + [anon_sym_PLUS_RBRACE] = ACTIONS(93), + [anon_sym_LBRACE_DASH] = ACTIONS(381), + [sym_symbol] = ACTIONS(366), + [anon_sym_LBRACE_CARET] = ACTIONS(384), + [anon_sym_CARET] = ACTIONS(384), + [anon_sym_LBRACE_TILDE] = ACTIONS(387), + [anon_sym_TILDE] = ACTIONS(387), + [anon_sym_LBRACK_CARET] = ACTIONS(390), + [anon_sym_BANG_LBRACK] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(396), + [anon_sym_LBRACE2] = ACTIONS(369), + [anon_sym_DOLLAR] = ACTIONS(399), + [anon_sym_TODO] = ACTIONS(402), + [anon_sym_WIP] = ACTIONS(402), + [anon_sym_NOTE] = ACTIONS(405), + [anon_sym_INFO] = ACTIONS(405), + [anon_sym_XXX] = ACTIONS(405), + [sym_fixme] = ACTIONS(366), + [anon_sym_PIPE] = ACTIONS(366), + [sym__whitespace1] = ACTIONS(408), + [sym__newline] = ACTIONS(411), + [aux_sym__text_token1] = ACTIONS(414), + [sym__verbatim_begin] = ACTIONS(417), }, [28] = { - [sym__inline] = STATE(890), - [sym__element] = STATE(87), - [sym_emphasis] = STATE(176), - [sym_emphasis_begin] = STATE(1013), - [sym_strong] = STATE(176), - [sym_strong_begin] = STATE(97), - [sym__hard_line_break] = STATE(176), - [sym_hard_line_break] = STATE(176), - [sym__smart_punctuation] = STATE(176), - [sym_autolink] = STATE(176), - [sym_highlighted] = STATE(176), - [sym_insert] = STATE(176), - [sym_delete] = STATE(176), - [sym_superscript] = STATE(176), - [sym_subscript] = STATE(176), - [sym_footnote_reference] = STATE(176), - [sym__image] = STATE(176), - [sym_full_reference_image] = STATE(176), - [sym_collapsed_reference_image] = STATE(176), - [sym_inline_image] = STATE(176), - [sym__image_description] = STATE(690), - [sym__link] = STATE(176), - [sym_full_reference_link] = STATE(176), - [sym_collapsed_reference_link] = STATE(176), - [sym_inline_link] = STATE(176), - [sym_link_text] = STATE(691), - [sym__comment_with_spaces] = STATE(176), - [sym_span] = STATE(176), - [sym_raw_inline] = STATE(176), - [sym_math] = STATE(176), - [sym_verbatim] = STATE(176), - [sym__todo_highlights] = STATE(176), - [sym_todo] = STATE(176), - [sym_note] = STATE(176), - [sym__symbol_fallback] = STATE(176), - [aux_sym__text] = STATE(155), - [aux_sym__inline_repeat1] = STATE(87), + [sym__inline] = STATE(867), + [sym__element] = STATE(88), + [sym_emphasis] = STATE(209), + [sym_emphasis_begin] = STATE(1002), + [sym_strong] = STATE(209), + [sym_strong_begin] = STATE(121), + [sym__hard_line_break] = STATE(209), + [sym_hard_line_break] = STATE(209), + [sym__smart_punctuation] = STATE(209), + [sym_autolink] = STATE(209), + [sym_highlighted] = STATE(209), + [sym_insert] = STATE(209), + [sym_delete] = STATE(209), + [sym_superscript] = STATE(209), + [sym_subscript] = STATE(209), + [sym_footnote_reference] = STATE(209), + [sym__image] = STATE(209), + [sym_full_reference_image] = STATE(209), + [sym_collapsed_reference_image] = STATE(209), + [sym_inline_image] = STATE(209), + [sym__image_description] = STATE(706), + [sym__link] = STATE(209), + [sym_full_reference_link] = STATE(209), + [sym_collapsed_reference_link] = STATE(209), + [sym_inline_link] = STATE(209), + [sym_link_text] = STATE(707), + [sym__comment_with_spaces] = STATE(209), + [sym_span] = STATE(209), + [sym_raw_inline] = STATE(209), + [sym_math] = STATE(209), + [sym_verbatim] = STATE(209), + [sym__todo_highlights] = STATE(209), + [sym_todo] = STATE(209), + [sym_note] = STATE(209), + [sym__symbol_fallback] = STATE(209), + [aux_sym__text] = STATE(150), + [aux_sym__inline_repeat1] = STATE(88), [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(210), - [anon_sym__] = ACTIONS(213), - [anon_sym_LBRACE_STAR] = ACTIONS(216), - [anon_sym_STAR] = ACTIONS(219), - [anon_sym_BSLASH] = ACTIONS(222), - [sym_quotation_marks] = ACTIONS(225), - [sym_ellipsis] = ACTIONS(225), - [sym_em_dash] = ACTIONS(225), - [sym_en_dash] = ACTIONS(228), - [sym_backslash_escape] = ACTIONS(228), - [anon_sym_LT] = ACTIONS(231), - [anon_sym_LBRACE_EQ] = ACTIONS(234), - [anon_sym_LBRACE_PLUS] = ACTIONS(237), - [anon_sym_PLUS_RBRACE] = ACTIONS(84), - [anon_sym_LBRACE_DASH] = ACTIONS(240), - [sym_symbol] = ACTIONS(225), - [anon_sym_LBRACE_CARET] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(243), - [anon_sym_LBRACE_TILDE] = ACTIONS(246), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_LBRACK_CARET] = ACTIONS(249), - [anon_sym_BANG_LBRACK] = ACTIONS(252), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_LBRACE2] = ACTIONS(228), - [anon_sym_DOLLAR] = ACTIONS(258), - [anon_sym_TODO] = ACTIONS(261), - [anon_sym_WIP] = ACTIONS(261), - [anon_sym_NOTE] = ACTIONS(264), - [anon_sym_INFO] = ACTIONS(264), - [anon_sym_XXX] = ACTIONS(264), - [sym_fixme] = ACTIONS(225), - [anon_sym_PIPE] = ACTIONS(225), - [sym__whitespace1] = ACTIONS(267), - [sym__newline] = ACTIONS(270), - [aux_sym__text_token1] = ACTIONS(273), - [sym__verbatim_begin] = ACTIONS(276), + [anon_sym_LBRACE_] = ACTIONS(282), + [anon_sym__] = ACTIONS(285), + [anon_sym_LBRACE_STAR] = ACTIONS(288), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_BSLASH] = ACTIONS(294), + [sym_quotation_marks] = ACTIONS(297), + [sym_ellipsis] = ACTIONS(297), + [sym_em_dash] = ACTIONS(297), + [sym_en_dash] = ACTIONS(300), + [sym_backslash_escape] = ACTIONS(300), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACE_EQ] = ACTIONS(306), + [anon_sym_LBRACE_PLUS] = ACTIONS(309), + [anon_sym_PLUS_RBRACE] = ACTIONS(93), + [anon_sym_LBRACE_DASH] = ACTIONS(312), + [sym_symbol] = ACTIONS(297), + [anon_sym_LBRACE_CARET] = ACTIONS(315), + [anon_sym_CARET] = ACTIONS(315), + [anon_sym_LBRACE_TILDE] = ACTIONS(318), + [anon_sym_TILDE] = ACTIONS(318), + [anon_sym_LBRACK_CARET] = ACTIONS(321), + [anon_sym_BANG_LBRACK] = ACTIONS(324), + [anon_sym_LBRACK] = ACTIONS(327), + [anon_sym_LBRACE2] = ACTIONS(300), + [anon_sym_DOLLAR] = ACTIONS(330), + [anon_sym_TODO] = ACTIONS(333), + [anon_sym_WIP] = ACTIONS(333), + [anon_sym_NOTE] = ACTIONS(336), + [anon_sym_INFO] = ACTIONS(336), + [anon_sym_XXX] = ACTIONS(336), + [sym_fixme] = ACTIONS(297), + [anon_sym_PIPE] = ACTIONS(297), + [sym__whitespace1] = ACTIONS(339), + [sym__newline] = ACTIONS(342), + [aux_sym__text_token1] = ACTIONS(345), + [sym__verbatim_begin] = ACTIONS(348), }, [29] = { - [sym__inline] = STATE(935), - [sym__element] = STATE(95), - [sym_emphasis] = STATE(215), - [sym_emphasis_begin] = STATE(1012), - [sym_strong] = STATE(215), - [sym_strong_begin] = STATE(128), - [sym__hard_line_break] = STATE(215), - [sym_hard_line_break] = STATE(215), - [sym__smart_punctuation] = STATE(215), - [sym_autolink] = STATE(215), - [sym_highlighted] = STATE(215), - [sym_insert] = STATE(215), - [sym_delete] = STATE(215), - [sym_superscript] = STATE(215), - [sym_subscript] = STATE(215), - [sym_footnote_reference] = STATE(215), - [sym__image] = STATE(215), - [sym_full_reference_image] = STATE(215), - [sym_collapsed_reference_image] = STATE(215), - [sym_inline_image] = STATE(215), - [sym__image_description] = STATE(696), - [sym__link] = STATE(215), - [sym_full_reference_link] = STATE(215), - [sym_collapsed_reference_link] = STATE(215), - [sym_inline_link] = STATE(215), - [sym_link_text] = STATE(705), - [sym__comment_with_spaces] = STATE(215), - [sym_span] = STATE(215), - [sym_raw_inline] = STATE(215), - [sym_math] = STATE(215), - [sym_verbatim] = STATE(215), - [sym__todo_highlights] = STATE(215), - [sym_todo] = STATE(215), - [sym_note] = STATE(215), - [sym__symbol_fallback] = STATE(215), - [aux_sym__text] = STATE(141), - [aux_sym__inline_repeat1] = STATE(95), + [sym__inline] = STATE(868), + [sym__element] = STATE(91), + [sym_emphasis] = STATE(174), + [sym_emphasis_begin] = STATE(1001), + [sym_strong] = STATE(174), + [sym_strong_begin] = STATE(126), + [sym__hard_line_break] = STATE(174), + [sym_hard_line_break] = STATE(174), + [sym__smart_punctuation] = STATE(174), + [sym_autolink] = STATE(174), + [sym_highlighted] = STATE(174), + [sym_insert] = STATE(174), + [sym_delete] = STATE(174), + [sym_superscript] = STATE(174), + [sym_subscript] = STATE(174), + [sym_footnote_reference] = STATE(174), + [sym__image] = STATE(174), + [sym_full_reference_image] = STATE(174), + [sym_collapsed_reference_image] = STATE(174), + [sym_inline_image] = STATE(174), + [sym__image_description] = STATE(709), + [sym__link] = STATE(174), + [sym_full_reference_link] = STATE(174), + [sym_collapsed_reference_link] = STATE(174), + [sym_inline_link] = STATE(174), + [sym_link_text] = STATE(710), + [sym__comment_with_spaces] = STATE(174), + [sym_span] = STATE(174), + [sym_raw_inline] = STATE(174), + [sym_math] = STATE(174), + [sym_verbatim] = STATE(174), + [sym__todo_highlights] = STATE(174), + [sym_todo] = STATE(174), + [sym_note] = STATE(174), + [sym__symbol_fallback] = STATE(174), + [aux_sym__text] = STATE(148), + [aux_sym__inline_repeat1] = STATE(91), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(213), + [anon_sym__] = ACTIONS(216), + [anon_sym_LBRACE_STAR] = ACTIONS(219), + [anon_sym_STAR] = ACTIONS(222), + [anon_sym_BSLASH] = ACTIONS(225), + [sym_quotation_marks] = ACTIONS(228), + [sym_ellipsis] = ACTIONS(228), + [sym_em_dash] = ACTIONS(228), + [sym_en_dash] = ACTIONS(231), + [sym_backslash_escape] = ACTIONS(231), + [anon_sym_LT] = ACTIONS(234), + [anon_sym_LBRACE_EQ] = ACTIONS(237), + [anon_sym_LBRACE_PLUS] = ACTIONS(240), + [anon_sym_PLUS_RBRACE] = ACTIONS(93), + [anon_sym_LBRACE_DASH] = ACTIONS(243), + [sym_symbol] = ACTIONS(228), + [anon_sym_LBRACE_CARET] = ACTIONS(246), + [anon_sym_CARET] = ACTIONS(246), + [anon_sym_LBRACE_TILDE] = ACTIONS(249), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_LBRACK_CARET] = ACTIONS(252), + [anon_sym_BANG_LBRACK] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(258), + [anon_sym_LBRACE2] = ACTIONS(231), + [anon_sym_DOLLAR] = ACTIONS(261), + [anon_sym_TODO] = ACTIONS(264), + [anon_sym_WIP] = ACTIONS(264), + [anon_sym_NOTE] = ACTIONS(267), + [anon_sym_INFO] = ACTIONS(267), + [anon_sym_XXX] = ACTIONS(267), + [sym_fixme] = ACTIONS(228), + [anon_sym_PIPE] = ACTIONS(228), + [sym__whitespace1] = ACTIONS(270), + [sym__newline] = ACTIONS(273), + [aux_sym__text_token1] = ACTIONS(276), + [sym__verbatim_begin] = ACTIONS(279), + }, + [30] = { + [sym__inline] = STATE(859), + [sym__element] = STATE(115), + [sym_emphasis] = STATE(205), + [sym_emphasis_begin] = STATE(1000), + [sym_strong] = STATE(205), + [sym_strong_begin] = STATE(129), + [sym__hard_line_break] = STATE(205), + [sym_hard_line_break] = STATE(205), + [sym__smart_punctuation] = STATE(205), + [sym_autolink] = STATE(205), + [sym_highlighted] = STATE(205), + [sym_insert] = STATE(205), + [sym_delete] = STATE(205), + [sym_superscript] = STATE(205), + [sym_subscript] = STATE(205), + [sym_footnote_reference] = STATE(205), + [sym__image] = STATE(205), + [sym_full_reference_image] = STATE(205), + [sym_collapsed_reference_image] = STATE(205), + [sym_inline_image] = STATE(205), + [sym__image_description] = STATE(705), + [sym__link] = STATE(205), + [sym_full_reference_link] = STATE(205), + [sym_collapsed_reference_link] = STATE(205), + [sym_inline_link] = STATE(205), + [sym_link_text] = STATE(703), + [sym__comment_with_spaces] = STATE(205), + [sym_span] = STATE(205), + [sym_raw_inline] = STATE(205), + [sym_math] = STATE(205), + [sym_verbatim] = STATE(205), + [sym__todo_highlights] = STATE(205), + [sym_todo] = STATE(205), + [sym_note] = STATE(205), + [sym__symbol_fallback] = STATE(205), + [aux_sym__text] = STATE(136), + [aux_sym__inline_repeat1] = STATE(115), [anon_sym_LBRACE] = ACTIONS(49), [anon_sym_LBRACE_] = ACTIONS(141), [anon_sym__] = ACTIONS(144), @@ -10572,67 +10157,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(162), [anon_sym_LBRACE_EQ] = ACTIONS(165), [anon_sym_LBRACE_PLUS] = ACTIONS(168), - [anon_sym_PLUS_RBRACE] = ACTIONS(84), + [anon_sym_PLUS_RBRACE] = ACTIONS(93), [anon_sym_LBRACE_DASH] = ACTIONS(171), [sym_symbol] = ACTIONS(156), [anon_sym_LBRACE_CARET] = ACTIONS(174), [anon_sym_CARET] = ACTIONS(174), - [anon_sym_LBRACE_TILDE] = ACTIONS(177), - [anon_sym_TILDE] = ACTIONS(177), - [anon_sym_LBRACK_CARET] = ACTIONS(180), - [anon_sym_BANG_LBRACK] = ACTIONS(183), - [anon_sym_LBRACK] = ACTIONS(186), + [anon_sym_LBRACE_TILDE] = ACTIONS(180), + [anon_sym_TILDE] = ACTIONS(180), + [anon_sym_LBRACK_CARET] = ACTIONS(183), + [anon_sym_BANG_LBRACK] = ACTIONS(186), + [anon_sym_LBRACK] = ACTIONS(189), [anon_sym_LBRACE2] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(189), - [anon_sym_TODO] = ACTIONS(192), - [anon_sym_WIP] = ACTIONS(192), - [anon_sym_NOTE] = ACTIONS(195), - [anon_sym_INFO] = ACTIONS(195), - [anon_sym_XXX] = ACTIONS(195), + [anon_sym_DOLLAR] = ACTIONS(192), + [anon_sym_TODO] = ACTIONS(195), + [anon_sym_WIP] = ACTIONS(195), + [anon_sym_NOTE] = ACTIONS(198), + [anon_sym_INFO] = ACTIONS(198), + [anon_sym_XXX] = ACTIONS(198), [sym_fixme] = ACTIONS(156), [anon_sym_PIPE] = ACTIONS(156), - [sym__whitespace1] = ACTIONS(198), - [sym__newline] = ACTIONS(201), - [aux_sym__text_token1] = ACTIONS(204), - [sym__verbatim_begin] = ACTIONS(207), + [sym__whitespace1] = ACTIONS(201), + [sym__newline] = ACTIONS(204), + [aux_sym__text_token1] = ACTIONS(207), + [sym__verbatim_begin] = ACTIONS(210), }, - [30] = { - [sym__inline] = STATE(941), + [31] = { + [sym__inline] = STATE(939), [sym__element] = STATE(118), - [sym_emphasis] = STATE(204), - [sym_emphasis_begin] = STATE(1017), - [sym_strong] = STATE(204), - [sym_strong_begin] = STATE(114), - [sym__hard_line_break] = STATE(204), - [sym_hard_line_break] = STATE(204), - [sym__smart_punctuation] = STATE(204), - [sym_autolink] = STATE(204), - [sym_highlighted] = STATE(204), - [sym_insert] = STATE(204), - [sym_delete] = STATE(204), - [sym_superscript] = STATE(204), - [sym_subscript] = STATE(204), - [sym_footnote_reference] = STATE(204), - [sym__image] = STATE(204), - [sym_full_reference_image] = STATE(204), - [sym_collapsed_reference_image] = STATE(204), - [sym_inline_image] = STATE(204), - [sym__image_description] = STATE(714), - [sym__link] = STATE(204), - [sym_full_reference_link] = STATE(204), - [sym_collapsed_reference_link] = STATE(204), - [sym_inline_link] = STATE(204), - [sym_link_text] = STATE(715), - [sym__comment_with_spaces] = STATE(204), - [sym_span] = STATE(204), - [sym_raw_inline] = STATE(204), - [sym_math] = STATE(204), - [sym_verbatim] = STATE(204), - [sym__todo_highlights] = STATE(204), - [sym_todo] = STATE(204), - [sym_note] = STATE(204), - [sym__symbol_fallback] = STATE(204), - [aux_sym__text] = STATE(149), + [sym_emphasis] = STATE(201), + [sym_emphasis_begin] = STATE(1005), + [sym_strong] = STATE(201), + [sym_strong_begin] = STATE(105), + [sym__hard_line_break] = STATE(201), + [sym_hard_line_break] = STATE(201), + [sym__smart_punctuation] = STATE(201), + [sym_autolink] = STATE(201), + [sym_highlighted] = STATE(201), + [sym_insert] = STATE(201), + [sym_delete] = STATE(201), + [sym_superscript] = STATE(201), + [sym_subscript] = STATE(201), + [sym_footnote_reference] = STATE(201), + [sym__image] = STATE(201), + [sym_full_reference_image] = STATE(201), + [sym_collapsed_reference_image] = STATE(201), + [sym_inline_image] = STATE(201), + [sym__image_description] = STATE(712), + [sym__link] = STATE(201), + [sym_full_reference_link] = STATE(201), + [sym_collapsed_reference_link] = STATE(201), + [sym_inline_link] = STATE(201), + [sym_link_text] = STATE(717), + [sym__comment_with_spaces] = STATE(201), + [sym_span] = STATE(201), + [sym_raw_inline] = STATE(201), + [sym_math] = STATE(201), + [sym_verbatim] = STATE(201), + [sym__todo_highlights] = STATE(201), + [sym_todo] = STATE(201), + [sym_note] = STATE(201), + [sym__symbol_fallback] = STATE(201), + [aux_sym__text] = STATE(139), [aux_sym__inline_repeat1] = STATE(118), [anon_sym_LBRACE] = ACTIONS(49), [anon_sym_LBRACE_] = ACTIONS(51), @@ -10650,66 +10235,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PLUS] = ACTIONS(78), [anon_sym_LBRACE_DASH] = ACTIONS(81), [sym_symbol] = ACTIONS(66), - [anon_sym_LBRACE_CARET] = ACTIONS(86), - [anon_sym_CARET] = ACTIONS(124), - [anon_sym_CARET_RBRACE] = ACTIONS(84), - [anon_sym_LBRACE_TILDE] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_LBRACK_CARET] = ACTIONS(92), - [anon_sym_BANG_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK] = ACTIONS(100), + [anon_sym_LBRACE_CARET] = ACTIONS(84), + [anon_sym_CARET] = ACTIONS(127), + [anon_sym_CARET_RBRACE] = ACTIONS(93), + [anon_sym_LBRACE_TILDE] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_LBRACK_CARET] = ACTIONS(95), + [anon_sym_BANG_LBRACK] = ACTIONS(100), + [anon_sym_LBRACK] = ACTIONS(103), [anon_sym_LBRACE2] = ACTIONS(69), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_TODO] = ACTIONS(106), - [anon_sym_WIP] = ACTIONS(106), - [anon_sym_NOTE] = ACTIONS(109), - [anon_sym_INFO] = ACTIONS(109), - [anon_sym_XXX] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(106), + [anon_sym_TODO] = ACTIONS(109), + [anon_sym_WIP] = ACTIONS(109), + [anon_sym_NOTE] = ACTIONS(112), + [anon_sym_INFO] = ACTIONS(112), + [anon_sym_XXX] = ACTIONS(112), [sym_fixme] = ACTIONS(66), [anon_sym_PIPE] = ACTIONS(66), - [sym__whitespace1] = ACTIONS(112), - [sym__newline] = ACTIONS(115), - [aux_sym__text_token1] = ACTIONS(118), - [sym__verbatim_begin] = ACTIONS(121), + [sym__whitespace1] = ACTIONS(115), + [sym__newline] = ACTIONS(118), + [aux_sym__text_token1] = ACTIONS(121), + [sym__verbatim_begin] = ACTIONS(124), }, - [31] = { - [sym__inline] = STATE(860), - [sym__element] = STATE(95), - [sym_emphasis] = STATE(215), - [sym_emphasis_begin] = STATE(1012), - [sym_strong] = STATE(215), - [sym_strong_begin] = STATE(128), - [sym__hard_line_break] = STATE(215), - [sym_hard_line_break] = STATE(215), - [sym__smart_punctuation] = STATE(215), - [sym_autolink] = STATE(215), - [sym_highlighted] = STATE(215), - [sym_insert] = STATE(215), - [sym_delete] = STATE(215), - [sym_superscript] = STATE(215), - [sym_subscript] = STATE(215), - [sym_footnote_reference] = STATE(215), - [sym__image] = STATE(215), - [sym_full_reference_image] = STATE(215), - [sym_collapsed_reference_image] = STATE(215), - [sym_inline_image] = STATE(215), - [sym__image_description] = STATE(696), - [sym__link] = STATE(215), - [sym_full_reference_link] = STATE(215), - [sym_collapsed_reference_link] = STATE(215), - [sym_inline_link] = STATE(215), - [sym_link_text] = STATE(705), - [sym__comment_with_spaces] = STATE(215), - [sym_span] = STATE(215), - [sym_raw_inline] = STATE(215), - [sym_math] = STATE(215), - [sym_verbatim] = STATE(215), - [sym__todo_highlights] = STATE(215), - [sym_todo] = STATE(215), - [sym_note] = STATE(215), - [sym__symbol_fallback] = STATE(215), - [aux_sym__text] = STATE(141), - [aux_sym__inline_repeat1] = STATE(95), + [32] = { + [sym__inline] = STATE(916), + [sym__element] = STATE(115), + [sym_emphasis] = STATE(205), + [sym_emphasis_begin] = STATE(1000), + [sym_strong] = STATE(205), + [sym_strong_begin] = STATE(129), + [sym__hard_line_break] = STATE(205), + [sym_hard_line_break] = STATE(205), + [sym__smart_punctuation] = STATE(205), + [sym_autolink] = STATE(205), + [sym_highlighted] = STATE(205), + [sym_insert] = STATE(205), + [sym_delete] = STATE(205), + [sym_superscript] = STATE(205), + [sym_subscript] = STATE(205), + [sym_footnote_reference] = STATE(205), + [sym__image] = STATE(205), + [sym_full_reference_image] = STATE(205), + [sym_collapsed_reference_image] = STATE(205), + [sym_inline_image] = STATE(205), + [sym__image_description] = STATE(705), + [sym__link] = STATE(205), + [sym_full_reference_link] = STATE(205), + [sym_collapsed_reference_link] = STATE(205), + [sym_inline_link] = STATE(205), + [sym_link_text] = STATE(703), + [sym__comment_with_spaces] = STATE(205), + [sym_span] = STATE(205), + [sym_raw_inline] = STATE(205), + [sym_math] = STATE(205), + [sym_verbatim] = STATE(205), + [sym__todo_highlights] = STATE(205), + [sym_todo] = STATE(205), + [sym_note] = STATE(205), + [sym__symbol_fallback] = STATE(205), + [aux_sym__text] = STATE(136), + [aux_sym__inline_repeat1] = STATE(115), [anon_sym_LBRACE] = ACTIONS(49), [anon_sym_LBRACE_] = ACTIONS(141), [anon_sym__] = ACTIONS(144), @@ -10728,367 +10313,823 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_symbol] = ACTIONS(156), [anon_sym_LBRACE_CARET] = ACTIONS(174), [anon_sym_CARET] = ACTIONS(174), - [anon_sym_LBRACE_TILDE] = ACTIONS(177), + [anon_sym_LBRACE_TILDE] = ACTIONS(180), [anon_sym_TILDE] = ACTIONS(501), - [anon_sym_TILDE_RBRACE] = ACTIONS(84), - [anon_sym_LBRACK_CARET] = ACTIONS(180), - [anon_sym_BANG_LBRACK] = ACTIONS(183), - [anon_sym_LBRACK] = ACTIONS(186), + [anon_sym_TILDE_RBRACE] = ACTIONS(93), + [anon_sym_LBRACK_CARET] = ACTIONS(183), + [anon_sym_BANG_LBRACK] = ACTIONS(186), + [anon_sym_LBRACK] = ACTIONS(189), [anon_sym_LBRACE2] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(189), - [anon_sym_TODO] = ACTIONS(192), - [anon_sym_WIP] = ACTIONS(192), - [anon_sym_NOTE] = ACTIONS(195), - [anon_sym_INFO] = ACTIONS(195), - [anon_sym_XXX] = ACTIONS(195), + [anon_sym_DOLLAR] = ACTIONS(192), + [anon_sym_TODO] = ACTIONS(195), + [anon_sym_WIP] = ACTIONS(195), + [anon_sym_NOTE] = ACTIONS(198), + [anon_sym_INFO] = ACTIONS(198), + [anon_sym_XXX] = ACTIONS(198), [sym_fixme] = ACTIONS(156), [anon_sym_PIPE] = ACTIONS(156), - [sym__whitespace1] = ACTIONS(198), - [sym__newline] = ACTIONS(201), - [aux_sym__text_token1] = ACTIONS(204), - [sym__verbatim_begin] = ACTIONS(207), + [sym__whitespace1] = ACTIONS(201), + [sym__newline] = ACTIONS(204), + [aux_sym__text_token1] = ACTIONS(207), + [sym__verbatim_begin] = ACTIONS(210), }, - [32] = { - [sym__inline] = STATE(859), - [sym__element] = STATE(87), - [sym_emphasis] = STATE(176), - [sym_emphasis_begin] = STATE(1013), - [sym_strong] = STATE(176), - [sym_strong_begin] = STATE(97), - [sym__hard_line_break] = STATE(176), - [sym_hard_line_break] = STATE(176), - [sym__smart_punctuation] = STATE(176), - [sym_autolink] = STATE(176), - [sym_highlighted] = STATE(176), - [sym_insert] = STATE(176), - [sym_delete] = STATE(176), - [sym_superscript] = STATE(176), - [sym_subscript] = STATE(176), - [sym_footnote_reference] = STATE(176), - [sym__image] = STATE(176), - [sym_full_reference_image] = STATE(176), - [sym_collapsed_reference_image] = STATE(176), - [sym_inline_image] = STATE(176), - [sym__image_description] = STATE(690), - [sym__link] = STATE(176), - [sym_full_reference_link] = STATE(176), - [sym_collapsed_reference_link] = STATE(176), - [sym_inline_link] = STATE(176), - [sym_link_text] = STATE(691), - [sym__comment_with_spaces] = STATE(176), - [sym_span] = STATE(176), - [sym_raw_inline] = STATE(176), - [sym_math] = STATE(176), - [sym_verbatim] = STATE(176), - [sym__todo_highlights] = STATE(176), - [sym_todo] = STATE(176), - [sym_note] = STATE(176), - [sym__symbol_fallback] = STATE(176), - [aux_sym__text] = STATE(155), - [aux_sym__inline_repeat1] = STATE(87), + [33] = { + [sym__inline] = STATE(914), + [sym__element] = STATE(91), + [sym_emphasis] = STATE(174), + [sym_emphasis_begin] = STATE(1001), + [sym_strong] = STATE(174), + [sym_strong_begin] = STATE(126), + [sym__hard_line_break] = STATE(174), + [sym_hard_line_break] = STATE(174), + [sym__smart_punctuation] = STATE(174), + [sym_autolink] = STATE(174), + [sym_highlighted] = STATE(174), + [sym_insert] = STATE(174), + [sym_delete] = STATE(174), + [sym_superscript] = STATE(174), + [sym_subscript] = STATE(174), + [sym_footnote_reference] = STATE(174), + [sym__image] = STATE(174), + [sym_full_reference_image] = STATE(174), + [sym_collapsed_reference_image] = STATE(174), + [sym_inline_image] = STATE(174), + [sym__image_description] = STATE(709), + [sym__link] = STATE(174), + [sym_full_reference_link] = STATE(174), + [sym_collapsed_reference_link] = STATE(174), + [sym_inline_link] = STATE(174), + [sym_link_text] = STATE(710), + [sym__comment_with_spaces] = STATE(174), + [sym_span] = STATE(174), + [sym_raw_inline] = STATE(174), + [sym_math] = STATE(174), + [sym_verbatim] = STATE(174), + [sym__todo_highlights] = STATE(174), + [sym_todo] = STATE(174), + [sym_note] = STATE(174), + [sym__symbol_fallback] = STATE(174), + [aux_sym__text] = STATE(148), + [aux_sym__inline_repeat1] = STATE(91), [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(210), - [anon_sym__] = ACTIONS(213), - [anon_sym_LBRACE_STAR] = ACTIONS(216), - [anon_sym_STAR] = ACTIONS(219), - [anon_sym_BSLASH] = ACTIONS(222), - [sym_quotation_marks] = ACTIONS(225), - [sym_ellipsis] = ACTIONS(225), - [sym_em_dash] = ACTIONS(225), - [sym_en_dash] = ACTIONS(228), - [sym_backslash_escape] = ACTIONS(228), - [anon_sym_LT] = ACTIONS(231), - [anon_sym_LBRACE_EQ] = ACTIONS(234), - [anon_sym_LBRACE_PLUS] = ACTIONS(237), - [anon_sym_LBRACE_DASH] = ACTIONS(240), - [sym_symbol] = ACTIONS(225), - [anon_sym_LBRACE_CARET] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(243), - [anon_sym_LBRACE_TILDE] = ACTIONS(246), + [anon_sym_LBRACE_] = ACTIONS(213), + [anon_sym__] = ACTIONS(216), + [anon_sym_LBRACE_STAR] = ACTIONS(219), + [anon_sym_STAR] = ACTIONS(222), + [anon_sym_BSLASH] = ACTIONS(225), + [sym_quotation_marks] = ACTIONS(228), + [sym_ellipsis] = ACTIONS(228), + [sym_em_dash] = ACTIONS(228), + [sym_en_dash] = ACTIONS(231), + [sym_backslash_escape] = ACTIONS(231), + [anon_sym_LT] = ACTIONS(234), + [anon_sym_LBRACE_EQ] = ACTIONS(237), + [anon_sym_LBRACE_PLUS] = ACTIONS(240), + [anon_sym_LBRACE_DASH] = ACTIONS(243), + [sym_symbol] = ACTIONS(228), + [anon_sym_LBRACE_CARET] = ACTIONS(246), + [anon_sym_CARET] = ACTIONS(246), + [anon_sym_LBRACE_TILDE] = ACTIONS(249), [anon_sym_TILDE] = ACTIONS(504), - [anon_sym_TILDE_RBRACE] = ACTIONS(84), - [anon_sym_LBRACK_CARET] = ACTIONS(249), - [anon_sym_BANG_LBRACK] = ACTIONS(252), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_LBRACE2] = ACTIONS(228), - [anon_sym_DOLLAR] = ACTIONS(258), - [anon_sym_TODO] = ACTIONS(261), - [anon_sym_WIP] = ACTIONS(261), - [anon_sym_NOTE] = ACTIONS(264), - [anon_sym_INFO] = ACTIONS(264), - [anon_sym_XXX] = ACTIONS(264), - [sym_fixme] = ACTIONS(225), - [anon_sym_PIPE] = ACTIONS(225), - [sym__whitespace1] = ACTIONS(267), - [sym__newline] = ACTIONS(270), - [aux_sym__text_token1] = ACTIONS(273), - [sym__verbatim_begin] = ACTIONS(276), + [anon_sym_TILDE_RBRACE] = ACTIONS(93), + [anon_sym_LBRACK_CARET] = ACTIONS(252), + [anon_sym_BANG_LBRACK] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(258), + [anon_sym_LBRACE2] = ACTIONS(231), + [anon_sym_DOLLAR] = ACTIONS(261), + [anon_sym_TODO] = ACTIONS(264), + [anon_sym_WIP] = ACTIONS(264), + [anon_sym_NOTE] = ACTIONS(267), + [anon_sym_INFO] = ACTIONS(267), + [anon_sym_XXX] = ACTIONS(267), + [sym_fixme] = ACTIONS(228), + [anon_sym_PIPE] = ACTIONS(228), + [sym__whitespace1] = ACTIONS(270), + [sym__newline] = ACTIONS(273), + [aux_sym__text_token1] = ACTIONS(276), + [sym__verbatim_begin] = ACTIONS(279), }, - [33] = { - [sym__inline] = STATE(858), - [sym__element] = STATE(83), - [sym_emphasis] = STATE(211), - [sym_emphasis_begin] = STATE(1014), - [sym_strong] = STATE(211), + [34] = { + [sym__inline] = STATE(906), + [sym__element] = STATE(88), + [sym_emphasis] = STATE(209), + [sym_emphasis_begin] = STATE(1002), + [sym_strong] = STATE(209), [sym_strong_begin] = STATE(121), - [sym__hard_line_break] = STATE(211), - [sym_hard_line_break] = STATE(211), - [sym__smart_punctuation] = STATE(211), - [sym_autolink] = STATE(211), - [sym_highlighted] = STATE(211), - [sym_insert] = STATE(211), - [sym_delete] = STATE(211), - [sym_superscript] = STATE(211), - [sym_subscript] = STATE(211), - [sym_footnote_reference] = STATE(211), - [sym__image] = STATE(211), - [sym_full_reference_image] = STATE(211), - [sym_collapsed_reference_image] = STATE(211), - [sym_inline_image] = STATE(211), - [sym__image_description] = STATE(693), - [sym__link] = STATE(211), - [sym_full_reference_link] = STATE(211), - [sym_collapsed_reference_link] = STATE(211), - [sym_inline_link] = STATE(211), - [sym_link_text] = STATE(694), - [sym__comment_with_spaces] = STATE(211), - [sym_span] = STATE(211), - [sym_raw_inline] = STATE(211), - [sym_math] = STATE(211), - [sym_verbatim] = STATE(211), - [sym__todo_highlights] = STATE(211), - [sym_todo] = STATE(211), - [sym_note] = STATE(211), - [sym__symbol_fallback] = STATE(211), - [aux_sym__text] = STATE(137), - [aux_sym__inline_repeat1] = STATE(83), + [sym__hard_line_break] = STATE(209), + [sym_hard_line_break] = STATE(209), + [sym__smart_punctuation] = STATE(209), + [sym_autolink] = STATE(209), + [sym_highlighted] = STATE(209), + [sym_insert] = STATE(209), + [sym_delete] = STATE(209), + [sym_superscript] = STATE(209), + [sym_subscript] = STATE(209), + [sym_footnote_reference] = STATE(209), + [sym__image] = STATE(209), + [sym_full_reference_image] = STATE(209), + [sym_collapsed_reference_image] = STATE(209), + [sym_inline_image] = STATE(209), + [sym__image_description] = STATE(706), + [sym__link] = STATE(209), + [sym_full_reference_link] = STATE(209), + [sym_collapsed_reference_link] = STATE(209), + [sym_inline_link] = STATE(209), + [sym_link_text] = STATE(707), + [sym__comment_with_spaces] = STATE(209), + [sym_span] = STATE(209), + [sym_raw_inline] = STATE(209), + [sym_math] = STATE(209), + [sym_verbatim] = STATE(209), + [sym__todo_highlights] = STATE(209), + [sym_todo] = STATE(209), + [sym_note] = STATE(209), + [sym__symbol_fallback] = STATE(209), + [aux_sym__text] = STATE(150), + [aux_sym__inline_repeat1] = STATE(88), [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(285), - [anon_sym__] = ACTIONS(288), - [anon_sym_LBRACE_STAR] = ACTIONS(291), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_BSLASH] = ACTIONS(297), - [sym_quotation_marks] = ACTIONS(300), - [sym_ellipsis] = ACTIONS(300), - [sym_em_dash] = ACTIONS(300), - [sym_en_dash] = ACTIONS(303), - [sym_backslash_escape] = ACTIONS(303), - [anon_sym_LT] = ACTIONS(306), - [anon_sym_LBRACE_EQ] = ACTIONS(309), - [anon_sym_LBRACE_PLUS] = ACTIONS(312), - [anon_sym_LBRACE_DASH] = ACTIONS(315), - [sym_symbol] = ACTIONS(300), - [anon_sym_LBRACE_CARET] = ACTIONS(318), - [anon_sym_CARET] = ACTIONS(318), - [anon_sym_LBRACE_TILDE] = ACTIONS(321), + [anon_sym_LBRACE_] = ACTIONS(282), + [anon_sym__] = ACTIONS(285), + [anon_sym_LBRACE_STAR] = ACTIONS(288), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_BSLASH] = ACTIONS(294), + [sym_quotation_marks] = ACTIONS(297), + [sym_ellipsis] = ACTIONS(297), + [sym_em_dash] = ACTIONS(297), + [sym_en_dash] = ACTIONS(300), + [sym_backslash_escape] = ACTIONS(300), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACE_EQ] = ACTIONS(306), + [anon_sym_LBRACE_PLUS] = ACTIONS(309), + [anon_sym_LBRACE_DASH] = ACTIONS(312), + [sym_symbol] = ACTIONS(297), + [anon_sym_LBRACE_CARET] = ACTIONS(315), + [anon_sym_CARET] = ACTIONS(315), + [anon_sym_LBRACE_TILDE] = ACTIONS(318), [anon_sym_TILDE] = ACTIONS(507), - [anon_sym_TILDE_RBRACE] = ACTIONS(84), - [anon_sym_LBRACK_CARET] = ACTIONS(324), - [anon_sym_BANG_LBRACK] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(330), - [anon_sym_LBRACE2] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(333), - [anon_sym_TODO] = ACTIONS(336), - [anon_sym_WIP] = ACTIONS(336), - [anon_sym_NOTE] = ACTIONS(339), - [anon_sym_INFO] = ACTIONS(339), - [anon_sym_XXX] = ACTIONS(339), - [sym_fixme] = ACTIONS(300), - [anon_sym_PIPE] = ACTIONS(300), - [sym__whitespace1] = ACTIONS(342), - [sym__newline] = ACTIONS(345), - [aux_sym__text_token1] = ACTIONS(348), - [sym__verbatim_begin] = ACTIONS(351), + [anon_sym_TILDE_RBRACE] = ACTIONS(93), + [anon_sym_LBRACK_CARET] = ACTIONS(321), + [anon_sym_BANG_LBRACK] = ACTIONS(324), + [anon_sym_LBRACK] = ACTIONS(327), + [anon_sym_LBRACE2] = ACTIONS(300), + [anon_sym_DOLLAR] = ACTIONS(330), + [anon_sym_TODO] = ACTIONS(333), + [anon_sym_WIP] = ACTIONS(333), + [anon_sym_NOTE] = ACTIONS(336), + [anon_sym_INFO] = ACTIONS(336), + [anon_sym_XXX] = ACTIONS(336), + [sym_fixme] = ACTIONS(297), + [anon_sym_PIPE] = ACTIONS(297), + [sym__whitespace1] = ACTIONS(339), + [sym__newline] = ACTIONS(342), + [aux_sym__text_token1] = ACTIONS(345), + [sym__verbatim_begin] = ACTIONS(348), }, - [34] = { - [sym__inline] = STATE(747), - [sym__element] = STATE(79), - [sym_emphasis] = STATE(172), - [sym_emphasis_begin] = STATE(1015), - [sym_strong] = STATE(172), - [sym_strong_begin] = STATE(125), - [sym__hard_line_break] = STATE(172), - [sym_hard_line_break] = STATE(172), - [sym__smart_punctuation] = STATE(172), - [sym_autolink] = STATE(172), - [sym_highlighted] = STATE(172), - [sym_insert] = STATE(172), - [sym_delete] = STATE(172), - [sym_superscript] = STATE(172), - [sym_subscript] = STATE(172), - [sym_footnote_reference] = STATE(172), - [sym__image] = STATE(172), - [sym_full_reference_image] = STATE(172), - [sym_collapsed_reference_image] = STATE(172), - [sym_inline_image] = STATE(172), - [sym__image_description] = STATE(711), - [sym__link] = STATE(172), - [sym_full_reference_link] = STATE(172), - [sym_collapsed_reference_link] = STATE(172), - [sym_inline_link] = STATE(172), - [sym_link_text] = STATE(712), - [sym__comment_with_spaces] = STATE(172), - [sym_span] = STATE(172), - [sym_raw_inline] = STATE(172), - [sym_math] = STATE(172), - [sym_verbatim] = STATE(172), - [sym__todo_highlights] = STATE(172), - [sym_todo] = STATE(172), - [sym_note] = STATE(172), - [sym__symbol_fallback] = STATE(172), + [35] = { + [sym__inline] = STATE(761), + [sym__element] = STATE(102), + [sym_emphasis] = STATE(194), + [sym_emphasis_begin] = STATE(1003), + [sym_strong] = STATE(194), + [sym_strong_begin] = STATE(113), + [sym__hard_line_break] = STATE(194), + [sym_hard_line_break] = STATE(194), + [sym__smart_punctuation] = STATE(194), + [sym_autolink] = STATE(194), + [sym_highlighted] = STATE(194), + [sym_insert] = STATE(194), + [sym_delete] = STATE(194), + [sym_superscript] = STATE(194), + [sym_subscript] = STATE(194), + [sym_footnote_reference] = STATE(194), + [sym__image] = STATE(194), + [sym_full_reference_image] = STATE(194), + [sym_collapsed_reference_image] = STATE(194), + [sym_inline_image] = STATE(194), + [sym__image_description] = STATE(696), + [sym__link] = STATE(194), + [sym_full_reference_link] = STATE(194), + [sym_collapsed_reference_link] = STATE(194), + [sym_inline_link] = STATE(194), + [sym_link_text] = STATE(695), + [sym__comment_with_spaces] = STATE(194), + [sym_span] = STATE(194), + [sym_raw_inline] = STATE(194), + [sym_math] = STATE(194), + [sym_verbatim] = STATE(194), + [sym__todo_highlights] = STATE(194), + [sym_todo] = STATE(194), + [sym_note] = STATE(194), + [sym__symbol_fallback] = STATE(194), [aux_sym__text] = STATE(170), - [aux_sym__inline_repeat1] = STATE(79), + [aux_sym__inline_repeat1] = STATE(102), [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(354), - [anon_sym__] = ACTIONS(357), - [anon_sym_LBRACE_STAR] = ACTIONS(360), - [anon_sym_STAR] = ACTIONS(363), - [anon_sym_BSLASH] = ACTIONS(366), - [sym_quotation_marks] = ACTIONS(369), - [sym_ellipsis] = ACTIONS(369), - [sym_em_dash] = ACTIONS(369), - [sym_en_dash] = ACTIONS(372), - [sym_backslash_escape] = ACTIONS(372), - [anon_sym_LT] = ACTIONS(375), - [anon_sym_LBRACE_EQ] = ACTIONS(378), - [anon_sym_LBRACE_PLUS] = ACTIONS(381), - [anon_sym_LBRACE_DASH] = ACTIONS(384), - [sym_symbol] = ACTIONS(369), - [anon_sym_LBRACE_CARET] = ACTIONS(387), - [anon_sym_CARET] = ACTIONS(387), - [anon_sym_LBRACE_TILDE] = ACTIONS(390), + [anon_sym_LBRACE_] = ACTIONS(351), + [anon_sym__] = ACTIONS(354), + [anon_sym_LBRACE_STAR] = ACTIONS(357), + [anon_sym_STAR] = ACTIONS(360), + [anon_sym_BSLASH] = ACTIONS(363), + [sym_quotation_marks] = ACTIONS(366), + [sym_ellipsis] = ACTIONS(366), + [sym_em_dash] = ACTIONS(366), + [sym_en_dash] = ACTIONS(369), + [sym_backslash_escape] = ACTIONS(369), + [anon_sym_LT] = ACTIONS(372), + [anon_sym_LBRACE_EQ] = ACTIONS(375), + [anon_sym_LBRACE_PLUS] = ACTIONS(378), + [anon_sym_LBRACE_DASH] = ACTIONS(381), + [sym_symbol] = ACTIONS(366), + [anon_sym_LBRACE_CARET] = ACTIONS(384), + [anon_sym_CARET] = ACTIONS(384), + [anon_sym_LBRACE_TILDE] = ACTIONS(387), [anon_sym_TILDE] = ACTIONS(510), - [anon_sym_TILDE_RBRACE] = ACTIONS(84), - [anon_sym_LBRACK_CARET] = ACTIONS(393), - [anon_sym_BANG_LBRACK] = ACTIONS(396), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_LBRACE2] = ACTIONS(372), - [anon_sym_DOLLAR] = ACTIONS(402), - [anon_sym_TODO] = ACTIONS(405), - [anon_sym_WIP] = ACTIONS(405), - [anon_sym_NOTE] = ACTIONS(408), - [anon_sym_INFO] = ACTIONS(408), - [anon_sym_XXX] = ACTIONS(408), - [sym_fixme] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(369), - [sym__whitespace1] = ACTIONS(411), - [sym__newline] = ACTIONS(414), - [aux_sym__text_token1] = ACTIONS(417), - [sym__verbatim_begin] = ACTIONS(420), + [anon_sym_TILDE_RBRACE] = ACTIONS(93), + [anon_sym_LBRACK_CARET] = ACTIONS(390), + [anon_sym_BANG_LBRACK] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(396), + [anon_sym_LBRACE2] = ACTIONS(369), + [anon_sym_DOLLAR] = ACTIONS(399), + [anon_sym_TODO] = ACTIONS(402), + [anon_sym_WIP] = ACTIONS(402), + [anon_sym_NOTE] = ACTIONS(405), + [anon_sym_INFO] = ACTIONS(405), + [anon_sym_XXX] = ACTIONS(405), + [sym_fixme] = ACTIONS(366), + [anon_sym_PIPE] = ACTIONS(366), + [sym__whitespace1] = ACTIONS(408), + [sym__newline] = ACTIONS(411), + [aux_sym__text_token1] = ACTIONS(414), + [sym__verbatim_begin] = ACTIONS(417), }, - [35] = { - [sym__inline] = STATE(764), - [sym__element] = STATE(117), - [sym_emphasis] = STATE(182), - [sym_emphasis_begin] = STATE(1016), - [sym_strong] = STATE(182), - [sym_strong_begin] = STATE(122), - [sym__hard_line_break] = STATE(182), - [sym_hard_line_break] = STATE(182), - [sym__smart_punctuation] = STATE(182), - [sym_autolink] = STATE(182), - [sym_highlighted] = STATE(182), - [sym_insert] = STATE(182), - [sym_delete] = STATE(182), - [sym_superscript] = STATE(182), - [sym_subscript] = STATE(182), - [sym_footnote_reference] = STATE(182), - [sym__image] = STATE(182), - [sym_full_reference_image] = STATE(182), - [sym_collapsed_reference_image] = STATE(182), - [sym_inline_image] = STATE(182), - [sym__image_description] = STATE(692), - [sym__link] = STATE(182), - [sym_full_reference_link] = STATE(182), - [sym_collapsed_reference_link] = STATE(182), - [sym_inline_link] = STATE(182), - [sym_link_text] = STATE(689), - [sym__comment_with_spaces] = STATE(182), - [sym_span] = STATE(182), - [sym_raw_inline] = STATE(182), - [sym_math] = STATE(182), - [sym_verbatim] = STATE(182), - [sym__todo_highlights] = STATE(182), - [sym_todo] = STATE(182), - [sym_note] = STATE(182), - [sym__symbol_fallback] = STATE(182), + [36] = { + [sym__inline] = STATE(762), + [sym__element] = STATE(114), + [sym_emphasis] = STATE(181), + [sym_emphasis_begin] = STATE(1004), + [sym_strong] = STATE(181), + [sym_strong_begin] = STATE(110), + [sym__hard_line_break] = STATE(181), + [sym_hard_line_break] = STATE(181), + [sym__smart_punctuation] = STATE(181), + [sym_autolink] = STATE(181), + [sym_highlighted] = STATE(181), + [sym_insert] = STATE(181), + [sym_delete] = STATE(181), + [sym_superscript] = STATE(181), + [sym_subscript] = STATE(181), + [sym_footnote_reference] = STATE(181), + [sym__image] = STATE(181), + [sym_full_reference_image] = STATE(181), + [sym_collapsed_reference_image] = STATE(181), + [sym_inline_image] = STATE(181), + [sym__image_description] = STATE(688), + [sym__link] = STATE(181), + [sym_full_reference_link] = STATE(181), + [sym_collapsed_reference_link] = STATE(181), + [sym_inline_link] = STATE(181), + [sym_link_text] = STATE(693), + [sym__comment_with_spaces] = STATE(181), + [sym_span] = STATE(181), + [sym_raw_inline] = STATE(181), + [sym_math] = STATE(181), + [sym_verbatim] = STATE(181), + [sym__todo_highlights] = STATE(181), + [sym_todo] = STATE(181), + [sym_note] = STATE(181), + [sym__symbol_fallback] = STATE(181), [aux_sym__text] = STATE(153), - [aux_sym__inline_repeat1] = STATE(117), + [aux_sym__inline_repeat1] = STATE(114), [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(423), - [anon_sym__] = ACTIONS(426), - [anon_sym_LBRACE_STAR] = ACTIONS(429), - [anon_sym_STAR] = ACTIONS(432), - [anon_sym_BSLASH] = ACTIONS(435), - [sym_quotation_marks] = ACTIONS(438), - [sym_ellipsis] = ACTIONS(438), - [sym_em_dash] = ACTIONS(438), - [sym_en_dash] = ACTIONS(441), - [sym_backslash_escape] = ACTIONS(441), - [anon_sym_LT] = ACTIONS(444), - [anon_sym_LBRACE_EQ] = ACTIONS(447), - [anon_sym_LBRACE_PLUS] = ACTIONS(450), - [anon_sym_LBRACE_DASH] = ACTIONS(453), - [sym_symbol] = ACTIONS(438), - [anon_sym_LBRACE_CARET] = ACTIONS(456), - [anon_sym_CARET] = ACTIONS(456), - [anon_sym_LBRACE_TILDE] = ACTIONS(459), + [anon_sym_LBRACE_] = ACTIONS(420), + [anon_sym__] = ACTIONS(423), + [anon_sym_LBRACE_STAR] = ACTIONS(426), + [anon_sym_STAR] = ACTIONS(429), + [anon_sym_BSLASH] = ACTIONS(432), + [sym_quotation_marks] = ACTIONS(435), + [sym_ellipsis] = ACTIONS(435), + [sym_em_dash] = ACTIONS(435), + [sym_en_dash] = ACTIONS(438), + [sym_backslash_escape] = ACTIONS(438), + [anon_sym_LT] = ACTIONS(441), + [anon_sym_LBRACE_EQ] = ACTIONS(444), + [anon_sym_LBRACE_PLUS] = ACTIONS(447), + [anon_sym_LBRACE_DASH] = ACTIONS(450), + [sym_symbol] = ACTIONS(435), + [anon_sym_LBRACE_CARET] = ACTIONS(453), + [anon_sym_CARET] = ACTIONS(453), + [anon_sym_LBRACE_TILDE] = ACTIONS(456), [anon_sym_TILDE] = ACTIONS(513), - [anon_sym_TILDE_RBRACE] = ACTIONS(84), - [anon_sym_LBRACK_CARET] = ACTIONS(462), - [anon_sym_BANG_LBRACK] = ACTIONS(465), - [anon_sym_LBRACK] = ACTIONS(468), - [anon_sym_LBRACE2] = ACTIONS(441), - [anon_sym_DOLLAR] = ACTIONS(471), - [anon_sym_TODO] = ACTIONS(474), - [anon_sym_WIP] = ACTIONS(474), - [anon_sym_NOTE] = ACTIONS(477), - [anon_sym_INFO] = ACTIONS(477), - [anon_sym_XXX] = ACTIONS(477), - [sym_fixme] = ACTIONS(438), - [anon_sym_PIPE] = ACTIONS(438), - [sym__whitespace1] = ACTIONS(480), - [sym__newline] = ACTIONS(483), - [aux_sym__text_token1] = ACTIONS(486), - [sym__verbatim_begin] = ACTIONS(489), + [anon_sym_TILDE_RBRACE] = ACTIONS(93), + [anon_sym_LBRACK_CARET] = ACTIONS(459), + [anon_sym_BANG_LBRACK] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE2] = ACTIONS(438), + [anon_sym_DOLLAR] = ACTIONS(468), + [anon_sym_TODO] = ACTIONS(471), + [anon_sym_WIP] = ACTIONS(471), + [anon_sym_NOTE] = ACTIONS(474), + [anon_sym_INFO] = ACTIONS(474), + [anon_sym_XXX] = ACTIONS(474), + [sym_fixme] = ACTIONS(435), + [anon_sym_PIPE] = ACTIONS(435), + [sym__whitespace1] = ACTIONS(477), + [sym__newline] = ACTIONS(480), + [aux_sym__text_token1] = ACTIONS(483), + [sym__verbatim_begin] = ACTIONS(486), }, - [36] = { - [sym__inline] = STATE(950), + [37] = { + [sym__inline] = STATE(801), + [sym__element] = STATE(115), + [sym_emphasis] = STATE(205), + [sym_emphasis_begin] = STATE(1000), + [sym_strong] = STATE(205), + [sym_strong_begin] = STATE(129), + [sym__hard_line_break] = STATE(205), + [sym_hard_line_break] = STATE(205), + [sym__smart_punctuation] = STATE(205), + [sym_autolink] = STATE(205), + [sym_highlighted] = STATE(205), + [sym_insert] = STATE(205), + [sym_delete] = STATE(205), + [sym_superscript] = STATE(205), + [sym_subscript] = STATE(205), + [sym_footnote_reference] = STATE(205), + [sym__image] = STATE(205), + [sym_full_reference_image] = STATE(205), + [sym_collapsed_reference_image] = STATE(205), + [sym_inline_image] = STATE(205), + [sym__image_description] = STATE(705), + [sym__link] = STATE(205), + [sym_full_reference_link] = STATE(205), + [sym_collapsed_reference_link] = STATE(205), + [sym_inline_link] = STATE(205), + [sym_link_text] = STATE(703), + [sym__comment_with_spaces] = STATE(205), + [sym_span] = STATE(205), + [sym_raw_inline] = STATE(205), + [sym_math] = STATE(205), + [sym_verbatim] = STATE(205), + [sym__todo_highlights] = STATE(205), + [sym_todo] = STATE(205), + [sym_note] = STATE(205), + [sym__symbol_fallback] = STATE(205), + [aux_sym__text] = STATE(136), + [aux_sym__inline_repeat1] = STATE(115), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(141), + [anon_sym__] = ACTIONS(144), + [anon_sym_LBRACE_STAR] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(150), + [anon_sym_BSLASH] = ACTIONS(153), + [sym_quotation_marks] = ACTIONS(156), + [sym_ellipsis] = ACTIONS(156), + [sym_em_dash] = ACTIONS(156), + [sym_en_dash] = ACTIONS(159), + [sym_backslash_escape] = ACTIONS(159), + [anon_sym_LT] = ACTIONS(162), + [anon_sym_LBRACE_EQ] = ACTIONS(165), + [anon_sym_LBRACE_PLUS] = ACTIONS(168), + [anon_sym_LBRACE_DASH] = ACTIONS(171), + [sym_symbol] = ACTIONS(156), + [anon_sym_LBRACE_CARET] = ACTIONS(174), + [anon_sym_CARET] = ACTIONS(174), + [anon_sym_LBRACE_TILDE] = ACTIONS(180), + [anon_sym_TILDE] = ACTIONS(180), + [anon_sym_LBRACK_CARET] = ACTIONS(183), + [anon_sym_RBRACK] = ACTIONS(93), + [anon_sym_BANG_LBRACK] = ACTIONS(186), + [anon_sym_LBRACK] = ACTIONS(189), + [anon_sym_LBRACE2] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(192), + [anon_sym_TODO] = ACTIONS(195), + [anon_sym_WIP] = ACTIONS(195), + [anon_sym_NOTE] = ACTIONS(198), + [anon_sym_INFO] = ACTIONS(198), + [anon_sym_XXX] = ACTIONS(198), + [sym_fixme] = ACTIONS(156), + [anon_sym_PIPE] = ACTIONS(156), + [sym__whitespace1] = ACTIONS(201), + [sym__newline] = ACTIONS(204), + [aux_sym__text_token1] = ACTIONS(207), + [sym__verbatim_begin] = ACTIONS(210), + }, + [38] = { + [sym__inline] = STATE(802), + [sym__element] = STATE(91), + [sym_emphasis] = STATE(174), + [sym_emphasis_begin] = STATE(1001), + [sym_strong] = STATE(174), + [sym_strong_begin] = STATE(126), + [sym__hard_line_break] = STATE(174), + [sym_hard_line_break] = STATE(174), + [sym__smart_punctuation] = STATE(174), + [sym_autolink] = STATE(174), + [sym_highlighted] = STATE(174), + [sym_insert] = STATE(174), + [sym_delete] = STATE(174), + [sym_superscript] = STATE(174), + [sym_subscript] = STATE(174), + [sym_footnote_reference] = STATE(174), + [sym__image] = STATE(174), + [sym_full_reference_image] = STATE(174), + [sym_collapsed_reference_image] = STATE(174), + [sym_inline_image] = STATE(174), + [sym__image_description] = STATE(709), + [sym__link] = STATE(174), + [sym_full_reference_link] = STATE(174), + [sym_collapsed_reference_link] = STATE(174), + [sym_inline_link] = STATE(174), + [sym_link_text] = STATE(710), + [sym__comment_with_spaces] = STATE(174), + [sym_span] = STATE(174), + [sym_raw_inline] = STATE(174), + [sym_math] = STATE(174), + [sym_verbatim] = STATE(174), + [sym__todo_highlights] = STATE(174), + [sym_todo] = STATE(174), + [sym_note] = STATE(174), + [sym__symbol_fallback] = STATE(174), + [aux_sym__text] = STATE(148), + [aux_sym__inline_repeat1] = STATE(91), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(213), + [anon_sym__] = ACTIONS(216), + [anon_sym_LBRACE_STAR] = ACTIONS(219), + [anon_sym_STAR] = ACTIONS(222), + [anon_sym_BSLASH] = ACTIONS(225), + [sym_quotation_marks] = ACTIONS(228), + [sym_ellipsis] = ACTIONS(228), + [sym_em_dash] = ACTIONS(228), + [sym_en_dash] = ACTIONS(231), + [sym_backslash_escape] = ACTIONS(231), + [anon_sym_LT] = ACTIONS(234), + [anon_sym_LBRACE_EQ] = ACTIONS(237), + [anon_sym_LBRACE_PLUS] = ACTIONS(240), + [anon_sym_LBRACE_DASH] = ACTIONS(243), + [sym_symbol] = ACTIONS(228), + [anon_sym_LBRACE_CARET] = ACTIONS(246), + [anon_sym_CARET] = ACTIONS(246), + [anon_sym_LBRACE_TILDE] = ACTIONS(249), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_LBRACK_CARET] = ACTIONS(252), + [anon_sym_RBRACK] = ACTIONS(93), + [anon_sym_BANG_LBRACK] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(258), + [anon_sym_LBRACE2] = ACTIONS(231), + [anon_sym_DOLLAR] = ACTIONS(261), + [anon_sym_TODO] = ACTIONS(264), + [anon_sym_WIP] = ACTIONS(264), + [anon_sym_NOTE] = ACTIONS(267), + [anon_sym_INFO] = ACTIONS(267), + [anon_sym_XXX] = ACTIONS(267), + [sym_fixme] = ACTIONS(228), + [anon_sym_PIPE] = ACTIONS(228), + [sym__whitespace1] = ACTIONS(270), + [sym__newline] = ACTIONS(273), + [aux_sym__text_token1] = ACTIONS(276), + [sym__verbatim_begin] = ACTIONS(279), + }, + [39] = { + [sym__inline] = STATE(803), + [sym__element] = STATE(88), + [sym_emphasis] = STATE(209), + [sym_emphasis_begin] = STATE(1002), + [sym_strong] = STATE(209), + [sym_strong_begin] = STATE(121), + [sym__hard_line_break] = STATE(209), + [sym_hard_line_break] = STATE(209), + [sym__smart_punctuation] = STATE(209), + [sym_autolink] = STATE(209), + [sym_highlighted] = STATE(209), + [sym_insert] = STATE(209), + [sym_delete] = STATE(209), + [sym_superscript] = STATE(209), + [sym_subscript] = STATE(209), + [sym_footnote_reference] = STATE(209), + [sym__image] = STATE(209), + [sym_full_reference_image] = STATE(209), + [sym_collapsed_reference_image] = STATE(209), + [sym_inline_image] = STATE(209), + [sym__image_description] = STATE(706), + [sym__link] = STATE(209), + [sym_full_reference_link] = STATE(209), + [sym_collapsed_reference_link] = STATE(209), + [sym_inline_link] = STATE(209), + [sym_link_text] = STATE(707), + [sym__comment_with_spaces] = STATE(209), + [sym_span] = STATE(209), + [sym_raw_inline] = STATE(209), + [sym_math] = STATE(209), + [sym_verbatim] = STATE(209), + [sym__todo_highlights] = STATE(209), + [sym_todo] = STATE(209), + [sym_note] = STATE(209), + [sym__symbol_fallback] = STATE(209), + [aux_sym__text] = STATE(150), + [aux_sym__inline_repeat1] = STATE(88), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(282), + [anon_sym__] = ACTIONS(285), + [anon_sym_LBRACE_STAR] = ACTIONS(288), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_BSLASH] = ACTIONS(294), + [sym_quotation_marks] = ACTIONS(297), + [sym_ellipsis] = ACTIONS(297), + [sym_em_dash] = ACTIONS(297), + [sym_en_dash] = ACTIONS(300), + [sym_backslash_escape] = ACTIONS(300), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACE_EQ] = ACTIONS(306), + [anon_sym_LBRACE_PLUS] = ACTIONS(309), + [anon_sym_LBRACE_DASH] = ACTIONS(312), + [sym_symbol] = ACTIONS(297), + [anon_sym_LBRACE_CARET] = ACTIONS(315), + [anon_sym_CARET] = ACTIONS(315), + [anon_sym_LBRACE_TILDE] = ACTIONS(318), + [anon_sym_TILDE] = ACTIONS(318), + [anon_sym_LBRACK_CARET] = ACTIONS(321), + [anon_sym_RBRACK] = ACTIONS(93), + [anon_sym_BANG_LBRACK] = ACTIONS(324), + [anon_sym_LBRACK] = ACTIONS(327), + [anon_sym_LBRACE2] = ACTIONS(300), + [anon_sym_DOLLAR] = ACTIONS(330), + [anon_sym_TODO] = ACTIONS(333), + [anon_sym_WIP] = ACTIONS(333), + [anon_sym_NOTE] = ACTIONS(336), + [anon_sym_INFO] = ACTIONS(336), + [anon_sym_XXX] = ACTIONS(336), + [sym_fixme] = ACTIONS(297), + [anon_sym_PIPE] = ACTIONS(297), + [sym__whitespace1] = ACTIONS(339), + [sym__newline] = ACTIONS(342), + [aux_sym__text_token1] = ACTIONS(345), + [sym__verbatim_begin] = ACTIONS(348), + }, + [40] = { + [sym__inline] = STATE(784), + [sym__element] = STATE(102), + [sym_emphasis] = STATE(194), + [sym_emphasis_begin] = STATE(1003), + [sym_strong] = STATE(194), + [sym_strong_begin] = STATE(113), + [sym__hard_line_break] = STATE(194), + [sym_hard_line_break] = STATE(194), + [sym__smart_punctuation] = STATE(194), + [sym_autolink] = STATE(194), + [sym_highlighted] = STATE(194), + [sym_insert] = STATE(194), + [sym_delete] = STATE(194), + [sym_superscript] = STATE(194), + [sym_subscript] = STATE(194), + [sym_footnote_reference] = STATE(194), + [sym__image] = STATE(194), + [sym_full_reference_image] = STATE(194), + [sym_collapsed_reference_image] = STATE(194), + [sym_inline_image] = STATE(194), + [sym__image_description] = STATE(696), + [sym__link] = STATE(194), + [sym_full_reference_link] = STATE(194), + [sym_collapsed_reference_link] = STATE(194), + [sym_inline_link] = STATE(194), + [sym_link_text] = STATE(695), + [sym__comment_with_spaces] = STATE(194), + [sym_span] = STATE(194), + [sym_raw_inline] = STATE(194), + [sym_math] = STATE(194), + [sym_verbatim] = STATE(194), + [sym__todo_highlights] = STATE(194), + [sym_todo] = STATE(194), + [sym_note] = STATE(194), + [sym__symbol_fallback] = STATE(194), + [aux_sym__text] = STATE(170), + [aux_sym__inline_repeat1] = STATE(102), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(351), + [anon_sym__] = ACTIONS(354), + [anon_sym_LBRACE_STAR] = ACTIONS(357), + [anon_sym_STAR] = ACTIONS(360), + [anon_sym_BSLASH] = ACTIONS(363), + [sym_quotation_marks] = ACTIONS(366), + [sym_ellipsis] = ACTIONS(366), + [sym_em_dash] = ACTIONS(366), + [sym_en_dash] = ACTIONS(369), + [sym_backslash_escape] = ACTIONS(369), + [anon_sym_LT] = ACTIONS(372), + [anon_sym_LBRACE_EQ] = ACTIONS(375), + [anon_sym_LBRACE_PLUS] = ACTIONS(378), + [anon_sym_LBRACE_DASH] = ACTIONS(381), + [sym_symbol] = ACTIONS(366), + [anon_sym_LBRACE_CARET] = ACTIONS(384), + [anon_sym_CARET] = ACTIONS(384), + [anon_sym_LBRACE_TILDE] = ACTIONS(387), + [anon_sym_TILDE] = ACTIONS(387), + [anon_sym_LBRACK_CARET] = ACTIONS(390), + [anon_sym_RBRACK] = ACTIONS(93), + [anon_sym_BANG_LBRACK] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(396), + [anon_sym_LBRACE2] = ACTIONS(369), + [anon_sym_DOLLAR] = ACTIONS(399), + [anon_sym_TODO] = ACTIONS(402), + [anon_sym_WIP] = ACTIONS(402), + [anon_sym_NOTE] = ACTIONS(405), + [anon_sym_INFO] = ACTIONS(405), + [anon_sym_XXX] = ACTIONS(405), + [sym_fixme] = ACTIONS(366), + [anon_sym_PIPE] = ACTIONS(366), + [sym__whitespace1] = ACTIONS(408), + [sym__newline] = ACTIONS(411), + [aux_sym__text_token1] = ACTIONS(414), + [sym__verbatim_begin] = ACTIONS(417), + }, + [41] = { + [sym__inline] = STATE(736), + [sym__element] = STATE(114), + [sym_emphasis] = STATE(181), + [sym_emphasis_begin] = STATE(1004), + [sym_strong] = STATE(181), + [sym_strong_begin] = STATE(110), + [sym__hard_line_break] = STATE(181), + [sym_hard_line_break] = STATE(181), + [sym__smart_punctuation] = STATE(181), + [sym_autolink] = STATE(181), + [sym_highlighted] = STATE(181), + [sym_insert] = STATE(181), + [sym_delete] = STATE(181), + [sym_superscript] = STATE(181), + [sym_subscript] = STATE(181), + [sym_footnote_reference] = STATE(181), + [sym__image] = STATE(181), + [sym_full_reference_image] = STATE(181), + [sym_collapsed_reference_image] = STATE(181), + [sym_inline_image] = STATE(181), + [sym__image_description] = STATE(688), + [sym__link] = STATE(181), + [sym_full_reference_link] = STATE(181), + [sym_collapsed_reference_link] = STATE(181), + [sym_inline_link] = STATE(181), + [sym_link_text] = STATE(693), + [sym__comment_with_spaces] = STATE(181), + [sym_span] = STATE(181), + [sym_raw_inline] = STATE(181), + [sym_math] = STATE(181), + [sym_verbatim] = STATE(181), + [sym__todo_highlights] = STATE(181), + [sym_todo] = STATE(181), + [sym_note] = STATE(181), + [sym__symbol_fallback] = STATE(181), + [aux_sym__text] = STATE(153), + [aux_sym__inline_repeat1] = STATE(114), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(420), + [anon_sym__] = ACTIONS(423), + [anon_sym_LBRACE_STAR] = ACTIONS(426), + [anon_sym_STAR] = ACTIONS(429), + [anon_sym_BSLASH] = ACTIONS(432), + [sym_quotation_marks] = ACTIONS(435), + [sym_ellipsis] = ACTIONS(435), + [sym_em_dash] = ACTIONS(435), + [sym_en_dash] = ACTIONS(438), + [sym_backslash_escape] = ACTIONS(438), + [anon_sym_LT] = ACTIONS(441), + [anon_sym_LBRACE_EQ] = ACTIONS(444), + [anon_sym_LBRACE_PLUS] = ACTIONS(447), + [anon_sym_LBRACE_DASH] = ACTIONS(450), + [sym_symbol] = ACTIONS(435), + [anon_sym_LBRACE_CARET] = ACTIONS(453), + [anon_sym_CARET] = ACTIONS(453), + [anon_sym_LBRACE_TILDE] = ACTIONS(456), + [anon_sym_TILDE] = ACTIONS(456), + [anon_sym_LBRACK_CARET] = ACTIONS(459), + [anon_sym_RBRACK] = ACTIONS(93), + [anon_sym_BANG_LBRACK] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE2] = ACTIONS(438), + [anon_sym_DOLLAR] = ACTIONS(468), + [anon_sym_TODO] = ACTIONS(471), + [anon_sym_WIP] = ACTIONS(471), + [anon_sym_NOTE] = ACTIONS(474), + [anon_sym_INFO] = ACTIONS(474), + [anon_sym_XXX] = ACTIONS(474), + [sym_fixme] = ACTIONS(435), + [anon_sym_PIPE] = ACTIONS(435), + [sym__whitespace1] = ACTIONS(477), + [sym__newline] = ACTIONS(480), + [aux_sym__text_token1] = ACTIONS(483), + [sym__verbatim_begin] = ACTIONS(486), + }, + [42] = { + [sym__inline] = STATE(823), + [sym__element] = STATE(115), + [sym_emphasis] = STATE(205), + [sym_emphasis_begin] = STATE(1000), + [sym_strong] = STATE(205), + [sym_strong_begin] = STATE(129), + [sym__hard_line_break] = STATE(205), + [sym_hard_line_break] = STATE(205), + [sym__smart_punctuation] = STATE(205), + [sym_autolink] = STATE(205), + [sym_highlighted] = STATE(205), + [sym_insert] = STATE(205), + [sym_delete] = STATE(205), + [sym_superscript] = STATE(205), + [sym_subscript] = STATE(205), + [sym_footnote_reference] = STATE(205), + [sym__image] = STATE(205), + [sym_full_reference_image] = STATE(205), + [sym_collapsed_reference_image] = STATE(205), + [sym_inline_image] = STATE(205), + [sym__image_description] = STATE(705), + [sym__link] = STATE(205), + [sym_full_reference_link] = STATE(205), + [sym_collapsed_reference_link] = STATE(205), + [sym_inline_link] = STATE(205), + [sym_link_text] = STATE(703), + [sym__comment_with_spaces] = STATE(205), + [sym_span] = STATE(205), + [sym_raw_inline] = STATE(205), + [sym_math] = STATE(205), + [sym_verbatim] = STATE(205), + [sym__todo_highlights] = STATE(205), + [sym_todo] = STATE(205), + [sym_note] = STATE(205), + [sym__symbol_fallback] = STATE(205), + [aux_sym__text] = STATE(136), + [aux_sym__inline_repeat1] = STATE(115), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(141), + [anon_sym__] = ACTIONS(144), + [anon_sym_LBRACE_STAR] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(150), + [anon_sym_BSLASH] = ACTIONS(153), + [sym_quotation_marks] = ACTIONS(156), + [sym_ellipsis] = ACTIONS(156), + [sym_em_dash] = ACTIONS(156), + [sym_en_dash] = ACTIONS(159), + [sym_backslash_escape] = ACTIONS(159), + [anon_sym_LT] = ACTIONS(162), + [anon_sym_LBRACE_EQ] = ACTIONS(165), + [anon_sym_LBRACE_PLUS] = ACTIONS(168), + [anon_sym_LBRACE_DASH] = ACTIONS(171), + [anon_sym_DASH_RBRACE] = ACTIONS(93), + [sym_symbol] = ACTIONS(156), + [anon_sym_LBRACE_CARET] = ACTIONS(174), + [anon_sym_CARET] = ACTIONS(174), + [anon_sym_LBRACE_TILDE] = ACTIONS(180), + [anon_sym_TILDE] = ACTIONS(180), + [anon_sym_LBRACK_CARET] = ACTIONS(183), + [anon_sym_BANG_LBRACK] = ACTIONS(186), + [anon_sym_LBRACK] = ACTIONS(189), + [anon_sym_LBRACE2] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(192), + [anon_sym_TODO] = ACTIONS(195), + [anon_sym_WIP] = ACTIONS(195), + [anon_sym_NOTE] = ACTIONS(198), + [anon_sym_INFO] = ACTIONS(198), + [anon_sym_XXX] = ACTIONS(198), + [sym_fixme] = ACTIONS(156), + [anon_sym_PIPE] = ACTIONS(156), + [sym__whitespace1] = ACTIONS(201), + [sym__newline] = ACTIONS(204), + [aux_sym__text_token1] = ACTIONS(207), + [sym__verbatim_begin] = ACTIONS(210), + }, + [43] = { + [sym__inline] = STATE(957), [sym__element] = STATE(118), - [sym_emphasis] = STATE(204), - [sym_emphasis_begin] = STATE(1017), - [sym_strong] = STATE(204), - [sym_strong_begin] = STATE(114), - [sym__hard_line_break] = STATE(204), - [sym_hard_line_break] = STATE(204), - [sym__smart_punctuation] = STATE(204), - [sym_autolink] = STATE(204), - [sym_highlighted] = STATE(204), - [sym_insert] = STATE(204), - [sym_delete] = STATE(204), - [sym_superscript] = STATE(204), - [sym_subscript] = STATE(204), - [sym_footnote_reference] = STATE(204), - [sym__image] = STATE(204), - [sym_full_reference_image] = STATE(204), - [sym_collapsed_reference_image] = STATE(204), - [sym_inline_image] = STATE(204), - [sym__image_description] = STATE(714), - [sym__link] = STATE(204), - [sym_full_reference_link] = STATE(204), - [sym_collapsed_reference_link] = STATE(204), - [sym_inline_link] = STATE(204), - [sym_link_text] = STATE(715), - [sym__comment_with_spaces] = STATE(204), - [sym_span] = STATE(204), - [sym_raw_inline] = STATE(204), - [sym_math] = STATE(204), - [sym_verbatim] = STATE(204), - [sym__todo_highlights] = STATE(204), - [sym_todo] = STATE(204), - [sym_note] = STATE(204), - [sym__symbol_fallback] = STATE(204), - [aux_sym__text] = STATE(149), + [sym_emphasis] = STATE(201), + [sym_emphasis_begin] = STATE(1005), + [sym_strong] = STATE(201), + [sym_strong_begin] = STATE(105), + [sym__hard_line_break] = STATE(201), + [sym_hard_line_break] = STATE(201), + [sym__smart_punctuation] = STATE(201), + [sym_autolink] = STATE(201), + [sym_highlighted] = STATE(201), + [sym_insert] = STATE(201), + [sym_delete] = STATE(201), + [sym_superscript] = STATE(201), + [sym_subscript] = STATE(201), + [sym_footnote_reference] = STATE(201), + [sym__image] = STATE(201), + [sym_full_reference_image] = STATE(201), + [sym_collapsed_reference_image] = STATE(201), + [sym_inline_image] = STATE(201), + [sym__image_description] = STATE(712), + [sym__link] = STATE(201), + [sym_full_reference_link] = STATE(201), + [sym_collapsed_reference_link] = STATE(201), + [sym_inline_link] = STATE(201), + [sym_link_text] = STATE(717), + [sym__comment_with_spaces] = STATE(201), + [sym_span] = STATE(201), + [sym_raw_inline] = STATE(201), + [sym_math] = STATE(201), + [sym_verbatim] = STATE(201), + [sym__todo_highlights] = STATE(201), + [sym_todo] = STATE(201), + [sym_note] = STATE(201), + [sym__symbol_fallback] = STATE(201), + [aux_sym__text] = STATE(139), [aux_sym__inline_repeat1] = STATE(118), [anon_sym_LBRACE] = ACTIONS(49), [anon_sym_LBRACE_] = ACTIONS(51), @@ -11106,369 +11147,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PLUS] = ACTIONS(78), [anon_sym_LBRACE_DASH] = ACTIONS(81), [sym_symbol] = ACTIONS(66), - [anon_sym_LBRACE_CARET] = ACTIONS(86), - [anon_sym_CARET] = ACTIONS(86), - [anon_sym_LBRACE_TILDE] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(138), - [anon_sym_TILDE_RBRACE] = ACTIONS(84), - [anon_sym_LBRACK_CARET] = ACTIONS(92), - [anon_sym_BANG_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK] = ACTIONS(100), + [anon_sym_LBRACE_CARET] = ACTIONS(84), + [anon_sym_CARET] = ACTIONS(84), + [anon_sym_LBRACE_TILDE] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_LBRACK_CARET] = ACTIONS(95), + [anon_sym_RBRACK] = ACTIONS(93), + [anon_sym_BANG_LBRACK] = ACTIONS(100), + [anon_sym_LBRACK] = ACTIONS(103), [anon_sym_LBRACE2] = ACTIONS(69), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_TODO] = ACTIONS(106), - [anon_sym_WIP] = ACTIONS(106), - [anon_sym_NOTE] = ACTIONS(109), - [anon_sym_INFO] = ACTIONS(109), - [anon_sym_XXX] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(106), + [anon_sym_TODO] = ACTIONS(109), + [anon_sym_WIP] = ACTIONS(109), + [anon_sym_NOTE] = ACTIONS(112), + [anon_sym_INFO] = ACTIONS(112), + [anon_sym_XXX] = ACTIONS(112), [sym_fixme] = ACTIONS(66), [anon_sym_PIPE] = ACTIONS(66), - [sym__whitespace1] = ACTIONS(112), - [sym__newline] = ACTIONS(115), - [aux_sym__text_token1] = ACTIONS(118), - [sym__verbatim_begin] = ACTIONS(121), - }, - [37] = { - [sym__inline] = STATE(832), - [sym__element] = STATE(87), - [sym_emphasis] = STATE(176), - [sym_emphasis_begin] = STATE(1013), - [sym_strong] = STATE(176), - [sym_strong_begin] = STATE(97), - [sym__hard_line_break] = STATE(176), - [sym_hard_line_break] = STATE(176), - [sym__smart_punctuation] = STATE(176), - [sym_autolink] = STATE(176), - [sym_highlighted] = STATE(176), - [sym_insert] = STATE(176), - [sym_delete] = STATE(176), - [sym_superscript] = STATE(176), - [sym_subscript] = STATE(176), - [sym_footnote_reference] = STATE(176), - [sym__image] = STATE(176), - [sym_full_reference_image] = STATE(176), - [sym_collapsed_reference_image] = STATE(176), - [sym_inline_image] = STATE(176), - [sym__image_description] = STATE(690), - [sym__link] = STATE(176), - [sym_full_reference_link] = STATE(176), - [sym_collapsed_reference_link] = STATE(176), - [sym_inline_link] = STATE(176), - [sym_link_text] = STATE(691), - [sym__comment_with_spaces] = STATE(176), - [sym_span] = STATE(176), - [sym_raw_inline] = STATE(176), - [sym_math] = STATE(176), - [sym_verbatim] = STATE(176), - [sym__todo_highlights] = STATE(176), - [sym_todo] = STATE(176), - [sym_note] = STATE(176), - [sym__symbol_fallback] = STATE(176), - [aux_sym__text] = STATE(155), - [aux_sym__inline_repeat1] = STATE(87), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(210), - [anon_sym__] = ACTIONS(213), - [anon_sym_LBRACE_STAR] = ACTIONS(216), - [anon_sym_STAR] = ACTIONS(219), - [anon_sym_BSLASH] = ACTIONS(222), - [sym_quotation_marks] = ACTIONS(225), - [sym_ellipsis] = ACTIONS(225), - [sym_em_dash] = ACTIONS(225), - [sym_en_dash] = ACTIONS(228), - [sym_backslash_escape] = ACTIONS(228), - [anon_sym_LT] = ACTIONS(231), - [anon_sym_LBRACE_EQ] = ACTIONS(234), - [anon_sym_LBRACE_PLUS] = ACTIONS(237), - [anon_sym_LBRACE_DASH] = ACTIONS(240), - [sym_symbol] = ACTIONS(225), - [anon_sym_LBRACE_CARET] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(243), - [anon_sym_LBRACE_TILDE] = ACTIONS(246), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_LBRACK_CARET] = ACTIONS(249), - [anon_sym_RBRACK] = ACTIONS(84), - [anon_sym_BANG_LBRACK] = ACTIONS(252), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_LBRACE2] = ACTIONS(228), - [anon_sym_DOLLAR] = ACTIONS(258), - [anon_sym_TODO] = ACTIONS(261), - [anon_sym_WIP] = ACTIONS(261), - [anon_sym_NOTE] = ACTIONS(264), - [anon_sym_INFO] = ACTIONS(264), - [anon_sym_XXX] = ACTIONS(264), - [sym_fixme] = ACTIONS(225), - [anon_sym_PIPE] = ACTIONS(225), - [sym__whitespace1] = ACTIONS(267), - [sym__newline] = ACTIONS(270), - [aux_sym__text_token1] = ACTIONS(273), - [sym__verbatim_begin] = ACTIONS(276), - }, - [38] = { - [sym__inline] = STATE(827), - [sym__element] = STATE(83), - [sym_emphasis] = STATE(211), - [sym_emphasis_begin] = STATE(1014), - [sym_strong] = STATE(211), - [sym_strong_begin] = STATE(121), - [sym__hard_line_break] = STATE(211), - [sym_hard_line_break] = STATE(211), - [sym__smart_punctuation] = STATE(211), - [sym_autolink] = STATE(211), - [sym_highlighted] = STATE(211), - [sym_insert] = STATE(211), - [sym_delete] = STATE(211), - [sym_superscript] = STATE(211), - [sym_subscript] = STATE(211), - [sym_footnote_reference] = STATE(211), - [sym__image] = STATE(211), - [sym_full_reference_image] = STATE(211), - [sym_collapsed_reference_image] = STATE(211), - [sym_inline_image] = STATE(211), - [sym__image_description] = STATE(693), - [sym__link] = STATE(211), - [sym_full_reference_link] = STATE(211), - [sym_collapsed_reference_link] = STATE(211), - [sym_inline_link] = STATE(211), - [sym_link_text] = STATE(694), - [sym__comment_with_spaces] = STATE(211), - [sym_span] = STATE(211), - [sym_raw_inline] = STATE(211), - [sym_math] = STATE(211), - [sym_verbatim] = STATE(211), - [sym__todo_highlights] = STATE(211), - [sym_todo] = STATE(211), - [sym_note] = STATE(211), - [sym__symbol_fallback] = STATE(211), - [aux_sym__text] = STATE(137), - [aux_sym__inline_repeat1] = STATE(83), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(285), - [anon_sym__] = ACTIONS(288), - [anon_sym_LBRACE_STAR] = ACTIONS(291), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_BSLASH] = ACTIONS(297), - [sym_quotation_marks] = ACTIONS(300), - [sym_ellipsis] = ACTIONS(300), - [sym_em_dash] = ACTIONS(300), - [sym_en_dash] = ACTIONS(303), - [sym_backslash_escape] = ACTIONS(303), - [anon_sym_LT] = ACTIONS(306), - [anon_sym_LBRACE_EQ] = ACTIONS(309), - [anon_sym_LBRACE_PLUS] = ACTIONS(312), - [anon_sym_LBRACE_DASH] = ACTIONS(315), - [sym_symbol] = ACTIONS(300), - [anon_sym_LBRACE_CARET] = ACTIONS(318), - [anon_sym_CARET] = ACTIONS(318), - [anon_sym_LBRACE_TILDE] = ACTIONS(321), - [anon_sym_TILDE] = ACTIONS(321), - [anon_sym_LBRACK_CARET] = ACTIONS(324), - [anon_sym_RBRACK] = ACTIONS(84), - [anon_sym_BANG_LBRACK] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(330), - [anon_sym_LBRACE2] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(333), - [anon_sym_TODO] = ACTIONS(336), - [anon_sym_WIP] = ACTIONS(336), - [anon_sym_NOTE] = ACTIONS(339), - [anon_sym_INFO] = ACTIONS(339), - [anon_sym_XXX] = ACTIONS(339), - [sym_fixme] = ACTIONS(300), - [anon_sym_PIPE] = ACTIONS(300), - [sym__whitespace1] = ACTIONS(342), - [sym__newline] = ACTIONS(345), - [aux_sym__text_token1] = ACTIONS(348), - [sym__verbatim_begin] = ACTIONS(351), - }, - [39] = { - [sym__inline] = STATE(786), - [sym__element] = STATE(79), - [sym_emphasis] = STATE(172), - [sym_emphasis_begin] = STATE(1015), - [sym_strong] = STATE(172), - [sym_strong_begin] = STATE(125), - [sym__hard_line_break] = STATE(172), - [sym_hard_line_break] = STATE(172), - [sym__smart_punctuation] = STATE(172), - [sym_autolink] = STATE(172), - [sym_highlighted] = STATE(172), - [sym_insert] = STATE(172), - [sym_delete] = STATE(172), - [sym_superscript] = STATE(172), - [sym_subscript] = STATE(172), - [sym_footnote_reference] = STATE(172), - [sym__image] = STATE(172), - [sym_full_reference_image] = STATE(172), - [sym_collapsed_reference_image] = STATE(172), - [sym_inline_image] = STATE(172), - [sym__image_description] = STATE(711), - [sym__link] = STATE(172), - [sym_full_reference_link] = STATE(172), - [sym_collapsed_reference_link] = STATE(172), - [sym_inline_link] = STATE(172), - [sym_link_text] = STATE(712), - [sym__comment_with_spaces] = STATE(172), - [sym_span] = STATE(172), - [sym_raw_inline] = STATE(172), - [sym_math] = STATE(172), - [sym_verbatim] = STATE(172), - [sym__todo_highlights] = STATE(172), - [sym_todo] = STATE(172), - [sym_note] = STATE(172), - [sym__symbol_fallback] = STATE(172), - [aux_sym__text] = STATE(170), - [aux_sym__inline_repeat1] = STATE(79), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(354), - [anon_sym__] = ACTIONS(357), - [anon_sym_LBRACE_STAR] = ACTIONS(360), - [anon_sym_STAR] = ACTIONS(363), - [anon_sym_BSLASH] = ACTIONS(366), - [sym_quotation_marks] = ACTIONS(369), - [sym_ellipsis] = ACTIONS(369), - [sym_em_dash] = ACTIONS(369), - [sym_en_dash] = ACTIONS(372), - [sym_backslash_escape] = ACTIONS(372), - [anon_sym_LT] = ACTIONS(375), - [anon_sym_LBRACE_EQ] = ACTIONS(378), - [anon_sym_LBRACE_PLUS] = ACTIONS(381), - [anon_sym_LBRACE_DASH] = ACTIONS(384), - [sym_symbol] = ACTIONS(369), - [anon_sym_LBRACE_CARET] = ACTIONS(387), - [anon_sym_CARET] = ACTIONS(387), - [anon_sym_LBRACE_TILDE] = ACTIONS(390), - [anon_sym_TILDE] = ACTIONS(390), - [anon_sym_LBRACK_CARET] = ACTIONS(393), - [anon_sym_RBRACK] = ACTIONS(84), - [anon_sym_BANG_LBRACK] = ACTIONS(396), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_LBRACE2] = ACTIONS(372), - [anon_sym_DOLLAR] = ACTIONS(402), - [anon_sym_TODO] = ACTIONS(405), - [anon_sym_WIP] = ACTIONS(405), - [anon_sym_NOTE] = ACTIONS(408), - [anon_sym_INFO] = ACTIONS(408), - [anon_sym_XXX] = ACTIONS(408), - [sym_fixme] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(369), - [sym__whitespace1] = ACTIONS(411), - [sym__newline] = ACTIONS(414), - [aux_sym__text_token1] = ACTIONS(417), - [sym__verbatim_begin] = ACTIONS(420), - }, - [40] = { - [sym__inline] = STATE(787), - [sym__element] = STATE(117), - [sym_emphasis] = STATE(182), - [sym_emphasis_begin] = STATE(1016), - [sym_strong] = STATE(182), - [sym_strong_begin] = STATE(122), - [sym__hard_line_break] = STATE(182), - [sym_hard_line_break] = STATE(182), - [sym__smart_punctuation] = STATE(182), - [sym_autolink] = STATE(182), - [sym_highlighted] = STATE(182), - [sym_insert] = STATE(182), - [sym_delete] = STATE(182), - [sym_superscript] = STATE(182), - [sym_subscript] = STATE(182), - [sym_footnote_reference] = STATE(182), - [sym__image] = STATE(182), - [sym_full_reference_image] = STATE(182), - [sym_collapsed_reference_image] = STATE(182), - [sym_inline_image] = STATE(182), - [sym__image_description] = STATE(692), - [sym__link] = STATE(182), - [sym_full_reference_link] = STATE(182), - [sym_collapsed_reference_link] = STATE(182), - [sym_inline_link] = STATE(182), - [sym_link_text] = STATE(689), - [sym__comment_with_spaces] = STATE(182), - [sym_span] = STATE(182), - [sym_raw_inline] = STATE(182), - [sym_math] = STATE(182), - [sym_verbatim] = STATE(182), - [sym__todo_highlights] = STATE(182), - [sym_todo] = STATE(182), - [sym_note] = STATE(182), - [sym__symbol_fallback] = STATE(182), - [aux_sym__text] = STATE(153), - [aux_sym__inline_repeat1] = STATE(117), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(423), - [anon_sym__] = ACTIONS(426), - [anon_sym_LBRACE_STAR] = ACTIONS(429), - [anon_sym_STAR] = ACTIONS(432), - [anon_sym_BSLASH] = ACTIONS(435), - [sym_quotation_marks] = ACTIONS(438), - [sym_ellipsis] = ACTIONS(438), - [sym_em_dash] = ACTIONS(438), - [sym_en_dash] = ACTIONS(441), - [sym_backslash_escape] = ACTIONS(441), - [anon_sym_LT] = ACTIONS(444), - [anon_sym_LBRACE_EQ] = ACTIONS(447), - [anon_sym_LBRACE_PLUS] = ACTIONS(450), - [anon_sym_LBRACE_DASH] = ACTIONS(453), - [sym_symbol] = ACTIONS(438), - [anon_sym_LBRACE_CARET] = ACTIONS(456), - [anon_sym_CARET] = ACTIONS(456), - [anon_sym_LBRACE_TILDE] = ACTIONS(459), - [anon_sym_TILDE] = ACTIONS(459), - [anon_sym_LBRACK_CARET] = ACTIONS(462), - [anon_sym_RBRACK] = ACTIONS(84), - [anon_sym_BANG_LBRACK] = ACTIONS(465), - [anon_sym_LBRACK] = ACTIONS(468), - [anon_sym_LBRACE2] = ACTIONS(441), - [anon_sym_DOLLAR] = ACTIONS(471), - [anon_sym_TODO] = ACTIONS(474), - [anon_sym_WIP] = ACTIONS(474), - [anon_sym_NOTE] = ACTIONS(477), - [anon_sym_INFO] = ACTIONS(477), - [anon_sym_XXX] = ACTIONS(477), - [sym_fixme] = ACTIONS(438), - [anon_sym_PIPE] = ACTIONS(438), - [sym__whitespace1] = ACTIONS(480), - [sym__newline] = ACTIONS(483), - [aux_sym__text_token1] = ACTIONS(486), - [sym__verbatim_begin] = ACTIONS(489), + [sym__whitespace1] = ACTIONS(115), + [sym__newline] = ACTIONS(118), + [aux_sym__text_token1] = ACTIONS(121), + [sym__verbatim_begin] = ACTIONS(124), }, - [41] = { - [sym__inline] = STATE(914), + [44] = { + [sym__inline] = STATE(912), [sym__element] = STATE(118), - [sym_emphasis] = STATE(204), - [sym_emphasis_begin] = STATE(1017), - [sym_strong] = STATE(204), - [sym_strong_begin] = STATE(114), - [sym__hard_line_break] = STATE(204), - [sym_hard_line_break] = STATE(204), - [sym__smart_punctuation] = STATE(204), - [sym_autolink] = STATE(204), - [sym_highlighted] = STATE(204), - [sym_insert] = STATE(204), - [sym_delete] = STATE(204), - [sym_superscript] = STATE(204), - [sym_subscript] = STATE(204), - [sym_footnote_reference] = STATE(204), - [sym__image] = STATE(204), - [sym_full_reference_image] = STATE(204), - [sym_collapsed_reference_image] = STATE(204), - [sym_inline_image] = STATE(204), - [sym__image_description] = STATE(714), - [sym__link] = STATE(204), - [sym_full_reference_link] = STATE(204), - [sym_collapsed_reference_link] = STATE(204), - [sym_inline_link] = STATE(204), - [sym_link_text] = STATE(715), - [sym__comment_with_spaces] = STATE(204), - [sym_span] = STATE(204), - [sym_raw_inline] = STATE(204), - [sym_math] = STATE(204), - [sym_verbatim] = STATE(204), - [sym__todo_highlights] = STATE(204), - [sym_todo] = STATE(204), - [sym_note] = STATE(204), - [sym__symbol_fallback] = STATE(204), - [aux_sym__text] = STATE(149), + [sym_emphasis] = STATE(201), + [sym_emphasis_begin] = STATE(1005), + [sym_strong] = STATE(201), + [sym_strong_begin] = STATE(105), + [sym__hard_line_break] = STATE(201), + [sym_hard_line_break] = STATE(201), + [sym__smart_punctuation] = STATE(201), + [sym_autolink] = STATE(201), + [sym_highlighted] = STATE(201), + [sym_insert] = STATE(201), + [sym_delete] = STATE(201), + [sym_superscript] = STATE(201), + [sym_subscript] = STATE(201), + [sym_footnote_reference] = STATE(201), + [sym__image] = STATE(201), + [sym_full_reference_image] = STATE(201), + [sym_collapsed_reference_image] = STATE(201), + [sym_inline_image] = STATE(201), + [sym__image_description] = STATE(712), + [sym__link] = STATE(201), + [sym_full_reference_link] = STATE(201), + [sym_collapsed_reference_link] = STATE(201), + [sym_inline_link] = STATE(201), + [sym_link_text] = STATE(717), + [sym__comment_with_spaces] = STATE(201), + [sym_span] = STATE(201), + [sym_raw_inline] = STATE(201), + [sym_math] = STATE(201), + [sym_verbatim] = STATE(201), + [sym__todo_highlights] = STATE(201), + [sym_todo] = STATE(201), + [sym_note] = STATE(201), + [sym__symbol_fallback] = STATE(201), + [aux_sym__text] = STATE(139), [aux_sym__inline_repeat1] = STATE(118), [anon_sym_LBRACE] = ACTIONS(49), [anon_sym_LBRACE_] = ACTIONS(51), @@ -11483,676 +11220,448 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_backslash_escape] = ACTIONS(69), [anon_sym_LT] = ACTIONS(72), [anon_sym_LBRACE_EQ] = ACTIONS(75), - [anon_sym_EQ_RBRACE] = ACTIONS(84), + [anon_sym_EQ_RBRACE] = ACTIONS(93), [anon_sym_LBRACE_PLUS] = ACTIONS(78), [anon_sym_LBRACE_DASH] = ACTIONS(81), [sym_symbol] = ACTIONS(66), - [anon_sym_LBRACE_CARET] = ACTIONS(86), - [anon_sym_CARET] = ACTIONS(86), - [anon_sym_LBRACE_TILDE] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_LBRACK_CARET] = ACTIONS(92), - [anon_sym_BANG_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK] = ACTIONS(100), + [anon_sym_LBRACE_CARET] = ACTIONS(84), + [anon_sym_CARET] = ACTIONS(84), + [anon_sym_LBRACE_TILDE] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_LBRACK_CARET] = ACTIONS(95), + [anon_sym_BANG_LBRACK] = ACTIONS(100), + [anon_sym_LBRACK] = ACTIONS(103), [anon_sym_LBRACE2] = ACTIONS(69), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_TODO] = ACTIONS(106), - [anon_sym_WIP] = ACTIONS(106), - [anon_sym_NOTE] = ACTIONS(109), - [anon_sym_INFO] = ACTIONS(109), - [anon_sym_XXX] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(106), + [anon_sym_TODO] = ACTIONS(109), + [anon_sym_WIP] = ACTIONS(109), + [anon_sym_NOTE] = ACTIONS(112), + [anon_sym_INFO] = ACTIONS(112), + [anon_sym_XXX] = ACTIONS(112), [sym_fixme] = ACTIONS(66), [anon_sym_PIPE] = ACTIONS(66), - [sym__whitespace1] = ACTIONS(112), - [sym__newline] = ACTIONS(115), - [aux_sym__text_token1] = ACTIONS(118), - [sym__verbatim_begin] = ACTIONS(121), + [sym__whitespace1] = ACTIONS(115), + [sym__newline] = ACTIONS(118), + [aux_sym__text_token1] = ACTIONS(121), + [sym__verbatim_begin] = ACTIONS(124), }, - [42] = { - [sym__inline] = STATE(778), - [sym__element] = STATE(117), - [sym_emphasis] = STATE(182), - [sym_emphasis_begin] = STATE(1016), - [sym_strong] = STATE(182), - [sym_strong_begin] = STATE(122), - [sym__hard_line_break] = STATE(182), - [sym_hard_line_break] = STATE(182), - [sym__smart_punctuation] = STATE(182), - [sym_autolink] = STATE(182), - [sym_highlighted] = STATE(182), - [sym_insert] = STATE(182), - [sym_delete] = STATE(182), - [sym_superscript] = STATE(182), - [sym_subscript] = STATE(182), - [sym_footnote_reference] = STATE(182), - [sym__image] = STATE(182), - [sym_full_reference_image] = STATE(182), - [sym_collapsed_reference_image] = STATE(182), - [sym_inline_image] = STATE(182), - [sym__image_description] = STATE(692), - [sym__link] = STATE(182), - [sym_full_reference_link] = STATE(182), - [sym_collapsed_reference_link] = STATE(182), - [sym_inline_link] = STATE(182), - [sym_link_text] = STATE(689), - [sym__comment_with_spaces] = STATE(182), - [sym_span] = STATE(182), - [sym_raw_inline] = STATE(182), - [sym_math] = STATE(182), - [sym_verbatim] = STATE(182), - [sym__todo_highlights] = STATE(182), - [sym_todo] = STATE(182), - [sym_note] = STATE(182), - [sym__symbol_fallback] = STATE(182), - [aux_sym__text] = STATE(153), - [aux_sym__inline_repeat1] = STATE(117), + [45] = { + [sym__inline] = STATE(856), + [sym__element] = STATE(91), + [sym_emphasis] = STATE(174), + [sym_emphasis_begin] = STATE(1001), + [sym_strong] = STATE(174), + [sym_strong_begin] = STATE(126), + [sym__hard_line_break] = STATE(174), + [sym_hard_line_break] = STATE(174), + [sym__smart_punctuation] = STATE(174), + [sym_autolink] = STATE(174), + [sym_highlighted] = STATE(174), + [sym_insert] = STATE(174), + [sym_delete] = STATE(174), + [sym_superscript] = STATE(174), + [sym_subscript] = STATE(174), + [sym_footnote_reference] = STATE(174), + [sym__image] = STATE(174), + [sym_full_reference_image] = STATE(174), + [sym_collapsed_reference_image] = STATE(174), + [sym_inline_image] = STATE(174), + [sym__image_description] = STATE(709), + [sym__link] = STATE(174), + [sym_full_reference_link] = STATE(174), + [sym_collapsed_reference_link] = STATE(174), + [sym_inline_link] = STATE(174), + [sym_link_text] = STATE(710), + [sym__comment_with_spaces] = STATE(174), + [sym_span] = STATE(174), + [sym_raw_inline] = STATE(174), + [sym_math] = STATE(174), + [sym_verbatim] = STATE(174), + [sym__todo_highlights] = STATE(174), + [sym_todo] = STATE(174), + [sym_note] = STATE(174), + [sym__symbol_fallback] = STATE(174), + [aux_sym__text] = STATE(148), + [aux_sym__inline_repeat1] = STATE(91), [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(423), - [anon_sym__] = ACTIONS(426), - [anon_sym_LBRACE_STAR] = ACTIONS(429), - [anon_sym_STAR] = ACTIONS(432), - [anon_sym_BSLASH] = ACTIONS(435), - [sym_quotation_marks] = ACTIONS(438), - [sym_ellipsis] = ACTIONS(438), - [sym_em_dash] = ACTIONS(438), - [sym_en_dash] = ACTIONS(441), - [sym_backslash_escape] = ACTIONS(441), - [anon_sym_LT] = ACTIONS(444), - [anon_sym_LBRACE_EQ] = ACTIONS(447), - [anon_sym_LBRACE_PLUS] = ACTIONS(450), - [anon_sym_LBRACE_DASH] = ACTIONS(453), - [anon_sym_DASH_RBRACE] = ACTIONS(84), - [sym_symbol] = ACTIONS(438), - [anon_sym_LBRACE_CARET] = ACTIONS(456), - [anon_sym_CARET] = ACTIONS(456), - [anon_sym_LBRACE_TILDE] = ACTIONS(459), - [anon_sym_TILDE] = ACTIONS(459), - [anon_sym_LBRACK_CARET] = ACTIONS(462), - [anon_sym_BANG_LBRACK] = ACTIONS(465), - [anon_sym_LBRACK] = ACTIONS(468), - [anon_sym_LBRACE2] = ACTIONS(441), - [anon_sym_DOLLAR] = ACTIONS(471), - [anon_sym_TODO] = ACTIONS(474), - [anon_sym_WIP] = ACTIONS(474), - [anon_sym_NOTE] = ACTIONS(477), - [anon_sym_INFO] = ACTIONS(477), - [anon_sym_XXX] = ACTIONS(477), - [sym_fixme] = ACTIONS(438), - [anon_sym_PIPE] = ACTIONS(438), - [sym__whitespace1] = ACTIONS(480), - [sym__newline] = ACTIONS(483), - [aux_sym__text_token1] = ACTIONS(486), - [sym__verbatim_begin] = ACTIONS(489), + [anon_sym_LBRACE_] = ACTIONS(213), + [anon_sym__] = ACTIONS(216), + [anon_sym_LBRACE_STAR] = ACTIONS(219), + [anon_sym_STAR] = ACTIONS(222), + [anon_sym_BSLASH] = ACTIONS(225), + [sym_quotation_marks] = ACTIONS(228), + [sym_ellipsis] = ACTIONS(228), + [sym_em_dash] = ACTIONS(228), + [sym_en_dash] = ACTIONS(231), + [sym_backslash_escape] = ACTIONS(231), + [anon_sym_LT] = ACTIONS(234), + [anon_sym_LBRACE_EQ] = ACTIONS(237), + [anon_sym_LBRACE_PLUS] = ACTIONS(240), + [anon_sym_LBRACE_DASH] = ACTIONS(243), + [sym_symbol] = ACTIONS(228), + [anon_sym_LBRACE_CARET] = ACTIONS(246), + [anon_sym_CARET] = ACTIONS(246), + [anon_sym_LBRACE_TILDE] = ACTIONS(249), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_LBRACK_CARET] = ACTIONS(252), + [anon_sym_BANG_LBRACK] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(258), + [anon_sym_RBRACK2] = ACTIONS(93), + [anon_sym_LBRACE2] = ACTIONS(231), + [anon_sym_DOLLAR] = ACTIONS(261), + [anon_sym_TODO] = ACTIONS(264), + [anon_sym_WIP] = ACTIONS(264), + [anon_sym_NOTE] = ACTIONS(267), + [anon_sym_INFO] = ACTIONS(267), + [anon_sym_XXX] = ACTIONS(267), + [sym_fixme] = ACTIONS(228), + [anon_sym_PIPE] = ACTIONS(228), + [sym__whitespace1] = ACTIONS(270), + [sym__newline] = ACTIONS(273), + [aux_sym__text_token1] = ACTIONS(276), + [sym__verbatim_begin] = ACTIONS(279), }, - [43] = { - [sym__inline] = STATE(768), - [sym__element] = STATE(117), - [sym_emphasis] = STATE(182), - [sym_emphasis_begin] = STATE(1016), - [sym_strong] = STATE(182), - [sym_strong_begin] = STATE(122), - [sym__hard_line_break] = STATE(182), - [sym_hard_line_break] = STATE(182), - [sym__smart_punctuation] = STATE(182), - [sym_autolink] = STATE(182), - [sym_highlighted] = STATE(182), - [sym_insert] = STATE(182), - [sym_delete] = STATE(182), - [sym_superscript] = STATE(182), - [sym_subscript] = STATE(182), - [sym_footnote_reference] = STATE(182), - [sym__image] = STATE(182), - [sym_full_reference_image] = STATE(182), - [sym_collapsed_reference_image] = STATE(182), - [sym_inline_image] = STATE(182), - [sym__image_description] = STATE(692), - [sym__link] = STATE(182), - [sym_full_reference_link] = STATE(182), - [sym_collapsed_reference_link] = STATE(182), - [sym_inline_link] = STATE(182), - [sym_link_text] = STATE(689), - [sym__comment_with_spaces] = STATE(182), - [sym_span] = STATE(182), - [sym_raw_inline] = STATE(182), - [sym_math] = STATE(182), - [sym_verbatim] = STATE(182), - [sym__todo_highlights] = STATE(182), - [sym_todo] = STATE(182), - [sym_note] = STATE(182), - [sym__symbol_fallback] = STATE(182), + [46] = { + [sym__inline] = STATE(764), + [sym__element] = STATE(114), + [sym_emphasis] = STATE(181), + [sym_emphasis_begin] = STATE(1004), + [sym_strong] = STATE(181), + [sym_strong_begin] = STATE(110), + [sym__hard_line_break] = STATE(181), + [sym_hard_line_break] = STATE(181), + [sym__smart_punctuation] = STATE(181), + [sym_autolink] = STATE(181), + [sym_highlighted] = STATE(181), + [sym_insert] = STATE(181), + [sym_delete] = STATE(181), + [sym_superscript] = STATE(181), + [sym_subscript] = STATE(181), + [sym_footnote_reference] = STATE(181), + [sym__image] = STATE(181), + [sym_full_reference_image] = STATE(181), + [sym_collapsed_reference_image] = STATE(181), + [sym_inline_image] = STATE(181), + [sym__image_description] = STATE(688), + [sym__link] = STATE(181), + [sym_full_reference_link] = STATE(181), + [sym_collapsed_reference_link] = STATE(181), + [sym_inline_link] = STATE(181), + [sym_link_text] = STATE(693), + [sym__comment_with_spaces] = STATE(181), + [sym_span] = STATE(181), + [sym_raw_inline] = STATE(181), + [sym_math] = STATE(181), + [sym_verbatim] = STATE(181), + [sym__todo_highlights] = STATE(181), + [sym_todo] = STATE(181), + [sym_note] = STATE(181), + [sym__symbol_fallback] = STATE(181), [aux_sym__text] = STATE(153), - [aux_sym__inline_repeat1] = STATE(117), + [aux_sym__inline_repeat1] = STATE(114), [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(423), - [anon_sym__] = ACTIONS(426), - [anon_sym_LBRACE_STAR] = ACTIONS(429), - [anon_sym_STAR] = ACTIONS(432), - [anon_sym_BSLASH] = ACTIONS(435), - [sym_quotation_marks] = ACTIONS(438), - [sym_ellipsis] = ACTIONS(438), - [sym_em_dash] = ACTIONS(438), - [sym_en_dash] = ACTIONS(441), - [sym_backslash_escape] = ACTIONS(441), - [anon_sym_LT] = ACTIONS(444), - [anon_sym_LBRACE_EQ] = ACTIONS(447), - [anon_sym_EQ_RBRACE] = ACTIONS(84), - [anon_sym_LBRACE_PLUS] = ACTIONS(450), - [anon_sym_LBRACE_DASH] = ACTIONS(453), - [sym_symbol] = ACTIONS(438), - [anon_sym_LBRACE_CARET] = ACTIONS(456), - [anon_sym_CARET] = ACTIONS(456), - [anon_sym_LBRACE_TILDE] = ACTIONS(459), - [anon_sym_TILDE] = ACTIONS(459), - [anon_sym_LBRACK_CARET] = ACTIONS(462), - [anon_sym_BANG_LBRACK] = ACTIONS(465), - [anon_sym_LBRACK] = ACTIONS(468), - [anon_sym_LBRACE2] = ACTIONS(441), - [anon_sym_DOLLAR] = ACTIONS(471), - [anon_sym_TODO] = ACTIONS(474), - [anon_sym_WIP] = ACTIONS(474), - [anon_sym_NOTE] = ACTIONS(477), - [anon_sym_INFO] = ACTIONS(477), - [anon_sym_XXX] = ACTIONS(477), - [sym_fixme] = ACTIONS(438), - [anon_sym_PIPE] = ACTIONS(438), - [sym__whitespace1] = ACTIONS(480), - [sym__newline] = ACTIONS(483), - [aux_sym__text_token1] = ACTIONS(486), - [sym__verbatim_begin] = ACTIONS(489), - }, - [44] = { - [sym__inline] = STATE(769), - [sym__element] = STATE(79), - [sym_emphasis] = STATE(172), - [sym_emphasis_begin] = STATE(1015), - [sym_strong] = STATE(172), - [sym_strong_begin] = STATE(125), - [sym__hard_line_break] = STATE(172), - [sym_hard_line_break] = STATE(172), - [sym__smart_punctuation] = STATE(172), - [sym_autolink] = STATE(172), - [sym_highlighted] = STATE(172), - [sym_insert] = STATE(172), - [sym_delete] = STATE(172), - [sym_superscript] = STATE(172), - [sym_subscript] = STATE(172), - [sym_footnote_reference] = STATE(172), - [sym__image] = STATE(172), - [sym_full_reference_image] = STATE(172), - [sym_collapsed_reference_image] = STATE(172), - [sym_inline_image] = STATE(172), - [sym__image_description] = STATE(711), - [sym__link] = STATE(172), - [sym_full_reference_link] = STATE(172), - [sym_collapsed_reference_link] = STATE(172), - [sym_inline_link] = STATE(172), - [sym_link_text] = STATE(712), - [sym__comment_with_spaces] = STATE(172), - [sym_span] = STATE(172), - [sym_raw_inline] = STATE(172), - [sym_math] = STATE(172), - [sym_verbatim] = STATE(172), - [sym__todo_highlights] = STATE(172), - [sym_todo] = STATE(172), - [sym_note] = STATE(172), - [sym__symbol_fallback] = STATE(172), - [aux_sym__text] = STATE(170), - [aux_sym__inline_repeat1] = STATE(79), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(354), - [anon_sym__] = ACTIONS(357), - [anon_sym_LBRACE_STAR] = ACTIONS(360), - [anon_sym_STAR] = ACTIONS(363), - [anon_sym_BSLASH] = ACTIONS(366), - [sym_quotation_marks] = ACTIONS(369), - [sym_ellipsis] = ACTIONS(369), - [sym_em_dash] = ACTIONS(369), - [sym_en_dash] = ACTIONS(372), - [sym_backslash_escape] = ACTIONS(372), - [anon_sym_LT] = ACTIONS(375), - [anon_sym_LBRACE_EQ] = ACTIONS(378), - [anon_sym_EQ_RBRACE] = ACTIONS(84), - [anon_sym_LBRACE_PLUS] = ACTIONS(381), - [anon_sym_LBRACE_DASH] = ACTIONS(384), - [sym_symbol] = ACTIONS(369), - [anon_sym_LBRACE_CARET] = ACTIONS(387), - [anon_sym_CARET] = ACTIONS(387), - [anon_sym_LBRACE_TILDE] = ACTIONS(390), - [anon_sym_TILDE] = ACTIONS(390), - [anon_sym_LBRACK_CARET] = ACTIONS(393), - [anon_sym_BANG_LBRACK] = ACTIONS(396), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_LBRACE2] = ACTIONS(372), - [anon_sym_DOLLAR] = ACTIONS(402), - [anon_sym_TODO] = ACTIONS(405), - [anon_sym_WIP] = ACTIONS(405), - [anon_sym_NOTE] = ACTIONS(408), - [anon_sym_INFO] = ACTIONS(408), - [anon_sym_XXX] = ACTIONS(408), - [sym_fixme] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(369), - [sym__whitespace1] = ACTIONS(411), - [sym__newline] = ACTIONS(414), - [aux_sym__text_token1] = ACTIONS(417), - [sym__verbatim_begin] = ACTIONS(420), - }, - [45] = { - [sym__inline] = STATE(967), - [sym__element] = STATE(83), - [sym_emphasis] = STATE(211), - [sym_emphasis_begin] = STATE(1014), - [sym_strong] = STATE(211), - [sym_strong_begin] = STATE(121), - [sym__hard_line_break] = STATE(211), - [sym_hard_line_break] = STATE(211), - [sym__smart_punctuation] = STATE(211), - [sym_autolink] = STATE(211), - [sym_highlighted] = STATE(211), - [sym_insert] = STATE(211), - [sym_delete] = STATE(211), - [sym_superscript] = STATE(211), - [sym_subscript] = STATE(211), - [sym_footnote_reference] = STATE(211), - [sym__image] = STATE(211), - [sym_full_reference_image] = STATE(211), - [sym_collapsed_reference_image] = STATE(211), - [sym_inline_image] = STATE(211), - [sym__image_description] = STATE(693), - [sym__link] = STATE(211), - [sym_full_reference_link] = STATE(211), - [sym_collapsed_reference_link] = STATE(211), - [sym_inline_link] = STATE(211), - [sym_link_text] = STATE(694), - [sym__comment_with_spaces] = STATE(211), - [sym_span] = STATE(211), - [sym_raw_inline] = STATE(211), - [sym_math] = STATE(211), - [sym_verbatim] = STATE(211), - [sym__todo_highlights] = STATE(211), - [sym_todo] = STATE(211), - [sym_note] = STATE(211), - [sym__symbol_fallback] = STATE(211), - [aux_sym__text] = STATE(137), - [aux_sym__inline_repeat1] = STATE(83), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(285), - [anon_sym__] = ACTIONS(288), - [anon_sym_LBRACE_STAR] = ACTIONS(291), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_BSLASH] = ACTIONS(297), - [sym_quotation_marks] = ACTIONS(300), - [sym_ellipsis] = ACTIONS(300), - [sym_em_dash] = ACTIONS(300), - [sym_en_dash] = ACTIONS(303), - [sym_backslash_escape] = ACTIONS(303), - [anon_sym_LT] = ACTIONS(306), - [anon_sym_LBRACE_EQ] = ACTIONS(309), - [anon_sym_EQ_RBRACE] = ACTIONS(84), - [anon_sym_LBRACE_PLUS] = ACTIONS(312), - [anon_sym_LBRACE_DASH] = ACTIONS(315), - [sym_symbol] = ACTIONS(300), - [anon_sym_LBRACE_CARET] = ACTIONS(318), - [anon_sym_CARET] = ACTIONS(318), - [anon_sym_LBRACE_TILDE] = ACTIONS(321), - [anon_sym_TILDE] = ACTIONS(321), - [anon_sym_LBRACK_CARET] = ACTIONS(324), - [anon_sym_BANG_LBRACK] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(330), - [anon_sym_LBRACE2] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(333), - [anon_sym_TODO] = ACTIONS(336), - [anon_sym_WIP] = ACTIONS(336), - [anon_sym_NOTE] = ACTIONS(339), - [anon_sym_INFO] = ACTIONS(339), - [anon_sym_XXX] = ACTIONS(339), - [sym_fixme] = ACTIONS(300), - [anon_sym_PIPE] = ACTIONS(300), - [sym__whitespace1] = ACTIONS(342), - [sym__newline] = ACTIONS(345), - [aux_sym__text_token1] = ACTIONS(348), - [sym__verbatim_begin] = ACTIONS(351), - }, - [46] = { - [sym__inline] = STATE(970), - [sym__element] = STATE(87), - [sym_emphasis] = STATE(176), - [sym_emphasis_begin] = STATE(1013), - [sym_strong] = STATE(176), - [sym_strong_begin] = STATE(97), - [sym__hard_line_break] = STATE(176), - [sym_hard_line_break] = STATE(176), - [sym__smart_punctuation] = STATE(176), - [sym_autolink] = STATE(176), - [sym_highlighted] = STATE(176), - [sym_insert] = STATE(176), - [sym_delete] = STATE(176), - [sym_superscript] = STATE(176), - [sym_subscript] = STATE(176), - [sym_footnote_reference] = STATE(176), - [sym__image] = STATE(176), - [sym_full_reference_image] = STATE(176), - [sym_collapsed_reference_image] = STATE(176), - [sym_inline_image] = STATE(176), - [sym__image_description] = STATE(690), - [sym__link] = STATE(176), - [sym_full_reference_link] = STATE(176), - [sym_collapsed_reference_link] = STATE(176), - [sym_inline_link] = STATE(176), - [sym_link_text] = STATE(691), - [sym__comment_with_spaces] = STATE(176), - [sym_span] = STATE(176), - [sym_raw_inline] = STATE(176), - [sym_math] = STATE(176), - [sym_verbatim] = STATE(176), - [sym__todo_highlights] = STATE(176), - [sym_todo] = STATE(176), - [sym_note] = STATE(176), - [sym__symbol_fallback] = STATE(176), - [aux_sym__text] = STATE(155), - [aux_sym__inline_repeat1] = STATE(87), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(210), - [anon_sym__] = ACTIONS(213), - [anon_sym_LBRACE_STAR] = ACTIONS(216), - [anon_sym_STAR] = ACTIONS(219), - [anon_sym_BSLASH] = ACTIONS(222), - [sym_quotation_marks] = ACTIONS(225), - [sym_ellipsis] = ACTIONS(225), - [sym_em_dash] = ACTIONS(225), - [sym_en_dash] = ACTIONS(228), - [sym_backslash_escape] = ACTIONS(228), - [anon_sym_LT] = ACTIONS(231), - [anon_sym_LBRACE_EQ] = ACTIONS(234), - [anon_sym_EQ_RBRACE] = ACTIONS(84), - [anon_sym_LBRACE_PLUS] = ACTIONS(237), - [anon_sym_LBRACE_DASH] = ACTIONS(240), - [sym_symbol] = ACTIONS(225), - [anon_sym_LBRACE_CARET] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(243), - [anon_sym_LBRACE_TILDE] = ACTIONS(246), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_LBRACK_CARET] = ACTIONS(249), - [anon_sym_BANG_LBRACK] = ACTIONS(252), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_LBRACE2] = ACTIONS(228), - [anon_sym_DOLLAR] = ACTIONS(258), - [anon_sym_TODO] = ACTIONS(261), - [anon_sym_WIP] = ACTIONS(261), - [anon_sym_NOTE] = ACTIONS(264), - [anon_sym_INFO] = ACTIONS(264), - [anon_sym_XXX] = ACTIONS(264), - [sym_fixme] = ACTIONS(225), - [anon_sym_PIPE] = ACTIONS(225), - [sym__whitespace1] = ACTIONS(267), - [sym__newline] = ACTIONS(270), - [aux_sym__text_token1] = ACTIONS(273), - [sym__verbatim_begin] = ACTIONS(276), + [anon_sym_LBRACE_] = ACTIONS(420), + [anon_sym__] = ACTIONS(423), + [anon_sym_LBRACE_STAR] = ACTIONS(426), + [anon_sym_STAR] = ACTIONS(429), + [anon_sym_BSLASH] = ACTIONS(432), + [sym_quotation_marks] = ACTIONS(435), + [sym_ellipsis] = ACTIONS(435), + [sym_em_dash] = ACTIONS(435), + [sym_en_dash] = ACTIONS(438), + [sym_backslash_escape] = ACTIONS(438), + [anon_sym_LT] = ACTIONS(441), + [anon_sym_LBRACE_EQ] = ACTIONS(444), + [anon_sym_EQ_RBRACE] = ACTIONS(93), + [anon_sym_LBRACE_PLUS] = ACTIONS(447), + [anon_sym_LBRACE_DASH] = ACTIONS(450), + [sym_symbol] = ACTIONS(435), + [anon_sym_LBRACE_CARET] = ACTIONS(453), + [anon_sym_CARET] = ACTIONS(453), + [anon_sym_LBRACE_TILDE] = ACTIONS(456), + [anon_sym_TILDE] = ACTIONS(456), + [anon_sym_LBRACK_CARET] = ACTIONS(459), + [anon_sym_BANG_LBRACK] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE2] = ACTIONS(438), + [anon_sym_DOLLAR] = ACTIONS(468), + [anon_sym_TODO] = ACTIONS(471), + [anon_sym_WIP] = ACTIONS(471), + [anon_sym_NOTE] = ACTIONS(474), + [anon_sym_INFO] = ACTIONS(474), + [anon_sym_XXX] = ACTIONS(474), + [sym_fixme] = ACTIONS(435), + [anon_sym_PIPE] = ACTIONS(435), + [sym__whitespace1] = ACTIONS(477), + [sym__newline] = ACTIONS(480), + [aux_sym__text_token1] = ACTIONS(483), + [sym__verbatim_begin] = ACTIONS(486), }, [47] = { - [sym__inline] = STATE(971), - [sym__element] = STATE(95), - [sym_emphasis] = STATE(215), - [sym_emphasis_begin] = STATE(1012), - [sym_strong] = STATE(215), - [sym_strong_begin] = STATE(128), - [sym__hard_line_break] = STATE(215), - [sym_hard_line_break] = STATE(215), - [sym__smart_punctuation] = STATE(215), - [sym_autolink] = STATE(215), - [sym_highlighted] = STATE(215), - [sym_insert] = STATE(215), - [sym_delete] = STATE(215), - [sym_superscript] = STATE(215), - [sym_subscript] = STATE(215), - [sym_footnote_reference] = STATE(215), - [sym__image] = STATE(215), - [sym_full_reference_image] = STATE(215), - [sym_collapsed_reference_image] = STATE(215), - [sym_inline_image] = STATE(215), + [sym__inline] = STATE(763), + [sym__element] = STATE(102), + [sym_emphasis] = STATE(194), + [sym_emphasis_begin] = STATE(1003), + [sym_strong] = STATE(194), + [sym_strong_begin] = STATE(113), + [sym__hard_line_break] = STATE(194), + [sym_hard_line_break] = STATE(194), + [sym__smart_punctuation] = STATE(194), + [sym_autolink] = STATE(194), + [sym_highlighted] = STATE(194), + [sym_insert] = STATE(194), + [sym_delete] = STATE(194), + [sym_superscript] = STATE(194), + [sym_subscript] = STATE(194), + [sym_footnote_reference] = STATE(194), + [sym__image] = STATE(194), + [sym_full_reference_image] = STATE(194), + [sym_collapsed_reference_image] = STATE(194), + [sym_inline_image] = STATE(194), [sym__image_description] = STATE(696), - [sym__link] = STATE(215), - [sym_full_reference_link] = STATE(215), - [sym_collapsed_reference_link] = STATE(215), - [sym_inline_link] = STATE(215), - [sym_link_text] = STATE(705), - [sym__comment_with_spaces] = STATE(215), - [sym_span] = STATE(215), - [sym_raw_inline] = STATE(215), - [sym_math] = STATE(215), - [sym_verbatim] = STATE(215), - [sym__todo_highlights] = STATE(215), - [sym_todo] = STATE(215), - [sym_note] = STATE(215), - [sym__symbol_fallback] = STATE(215), - [aux_sym__text] = STATE(141), - [aux_sym__inline_repeat1] = STATE(95), + [sym__link] = STATE(194), + [sym_full_reference_link] = STATE(194), + [sym_collapsed_reference_link] = STATE(194), + [sym_inline_link] = STATE(194), + [sym_link_text] = STATE(695), + [sym__comment_with_spaces] = STATE(194), + [sym_span] = STATE(194), + [sym_raw_inline] = STATE(194), + [sym_math] = STATE(194), + [sym_verbatim] = STATE(194), + [sym__todo_highlights] = STATE(194), + [sym_todo] = STATE(194), + [sym_note] = STATE(194), + [sym__symbol_fallback] = STATE(194), + [aux_sym__text] = STATE(170), + [aux_sym__inline_repeat1] = STATE(102), [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(141), - [anon_sym__] = ACTIONS(144), - [anon_sym_LBRACE_STAR] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(150), - [anon_sym_BSLASH] = ACTIONS(153), - [sym_quotation_marks] = ACTIONS(156), - [sym_ellipsis] = ACTIONS(156), - [sym_em_dash] = ACTIONS(156), - [sym_en_dash] = ACTIONS(159), - [sym_backslash_escape] = ACTIONS(159), - [anon_sym_LT] = ACTIONS(162), - [anon_sym_LBRACE_EQ] = ACTIONS(165), - [anon_sym_EQ_RBRACE] = ACTIONS(84), - [anon_sym_LBRACE_PLUS] = ACTIONS(168), - [anon_sym_LBRACE_DASH] = ACTIONS(171), - [sym_symbol] = ACTIONS(156), - [anon_sym_LBRACE_CARET] = ACTIONS(174), - [anon_sym_CARET] = ACTIONS(174), - [anon_sym_LBRACE_TILDE] = ACTIONS(177), - [anon_sym_TILDE] = ACTIONS(177), - [anon_sym_LBRACK_CARET] = ACTIONS(180), - [anon_sym_BANG_LBRACK] = ACTIONS(183), - [anon_sym_LBRACK] = ACTIONS(186), - [anon_sym_LBRACE2] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(189), - [anon_sym_TODO] = ACTIONS(192), - [anon_sym_WIP] = ACTIONS(192), - [anon_sym_NOTE] = ACTIONS(195), - [anon_sym_INFO] = ACTIONS(195), - [anon_sym_XXX] = ACTIONS(195), - [sym_fixme] = ACTIONS(156), - [anon_sym_PIPE] = ACTIONS(156), - [sym__whitespace1] = ACTIONS(198), - [sym__newline] = ACTIONS(201), - [aux_sym__text_token1] = ACTIONS(204), - [sym__verbatim_begin] = ACTIONS(207), + [anon_sym_LBRACE_] = ACTIONS(351), + [anon_sym__] = ACTIONS(354), + [anon_sym_LBRACE_STAR] = ACTIONS(357), + [anon_sym_STAR] = ACTIONS(360), + [anon_sym_BSLASH] = ACTIONS(363), + [sym_quotation_marks] = ACTIONS(366), + [sym_ellipsis] = ACTIONS(366), + [sym_em_dash] = ACTIONS(366), + [sym_en_dash] = ACTIONS(369), + [sym_backslash_escape] = ACTIONS(369), + [anon_sym_LT] = ACTIONS(372), + [anon_sym_LBRACE_EQ] = ACTIONS(375), + [anon_sym_EQ_RBRACE] = ACTIONS(93), + [anon_sym_LBRACE_PLUS] = ACTIONS(378), + [anon_sym_LBRACE_DASH] = ACTIONS(381), + [sym_symbol] = ACTIONS(366), + [anon_sym_LBRACE_CARET] = ACTIONS(384), + [anon_sym_CARET] = ACTIONS(384), + [anon_sym_LBRACE_TILDE] = ACTIONS(387), + [anon_sym_TILDE] = ACTIONS(387), + [anon_sym_LBRACK_CARET] = ACTIONS(390), + [anon_sym_BANG_LBRACK] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(396), + [anon_sym_LBRACE2] = ACTIONS(369), + [anon_sym_DOLLAR] = ACTIONS(399), + [anon_sym_TODO] = ACTIONS(402), + [anon_sym_WIP] = ACTIONS(402), + [anon_sym_NOTE] = ACTIONS(405), + [anon_sym_INFO] = ACTIONS(405), + [anon_sym_XXX] = ACTIONS(405), + [sym_fixme] = ACTIONS(366), + [anon_sym_PIPE] = ACTIONS(366), + [sym__whitespace1] = ACTIONS(408), + [sym__newline] = ACTIONS(411), + [aux_sym__text_token1] = ACTIONS(414), + [sym__verbatim_begin] = ACTIONS(417), }, [48] = { - [sym__inline] = STATE(917), - [sym__element] = STATE(118), - [sym_emphasis] = STATE(204), - [sym_emphasis_begin] = STATE(1017), - [sym_strong] = STATE(204), - [sym_strong_begin] = STATE(114), - [sym__hard_line_break] = STATE(204), - [sym_hard_line_break] = STATE(204), - [sym__smart_punctuation] = STATE(204), - [sym_autolink] = STATE(204), - [sym_highlighted] = STATE(204), - [sym_insert] = STATE(204), - [sym_delete] = STATE(204), - [sym_superscript] = STATE(204), - [sym_subscript] = STATE(204), - [sym_footnote_reference] = STATE(204), - [sym__image] = STATE(204), - [sym_full_reference_image] = STATE(204), - [sym_collapsed_reference_image] = STATE(204), - [sym_inline_image] = STATE(204), - [sym__image_description] = STATE(714), - [sym__link] = STATE(204), - [sym_full_reference_link] = STATE(204), - [sym_collapsed_reference_link] = STATE(204), - [sym_inline_link] = STATE(204), - [sym_link_text] = STATE(715), - [sym__comment_with_spaces] = STATE(204), - [sym_span] = STATE(204), - [sym_raw_inline] = STATE(204), - [sym_math] = STATE(204), - [sym_verbatim] = STATE(204), - [sym__todo_highlights] = STATE(204), - [sym_todo] = STATE(204), - [sym_note] = STATE(204), - [sym__symbol_fallback] = STATE(204), - [aux_sym__text] = STATE(149), - [aux_sym__inline_repeat1] = STATE(118), + [sym__inline] = STATE(899), + [sym__element] = STATE(88), + [sym_emphasis] = STATE(209), + [sym_emphasis_begin] = STATE(1002), + [sym_strong] = STATE(209), + [sym_strong_begin] = STATE(121), + [sym__hard_line_break] = STATE(209), + [sym_hard_line_break] = STATE(209), + [sym__smart_punctuation] = STATE(209), + [sym_autolink] = STATE(209), + [sym_highlighted] = STATE(209), + [sym_insert] = STATE(209), + [sym_delete] = STATE(209), + [sym_superscript] = STATE(209), + [sym_subscript] = STATE(209), + [sym_footnote_reference] = STATE(209), + [sym__image] = STATE(209), + [sym_full_reference_image] = STATE(209), + [sym_collapsed_reference_image] = STATE(209), + [sym_inline_image] = STATE(209), + [sym__image_description] = STATE(706), + [sym__link] = STATE(209), + [sym_full_reference_link] = STATE(209), + [sym_collapsed_reference_link] = STATE(209), + [sym_inline_link] = STATE(209), + [sym_link_text] = STATE(707), + [sym__comment_with_spaces] = STATE(209), + [sym_span] = STATE(209), + [sym_raw_inline] = STATE(209), + [sym_math] = STATE(209), + [sym_verbatim] = STATE(209), + [sym__todo_highlights] = STATE(209), + [sym_todo] = STATE(209), + [sym_note] = STATE(209), + [sym__symbol_fallback] = STATE(209), + [aux_sym__text] = STATE(150), + [aux_sym__inline_repeat1] = STATE(88), [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(51), - [anon_sym__] = ACTIONS(54), - [anon_sym_LBRACE_STAR] = ACTIONS(57), - [anon_sym_STAR] = ACTIONS(60), - [anon_sym_BSLASH] = ACTIONS(63), - [sym_quotation_marks] = ACTIONS(66), - [sym_ellipsis] = ACTIONS(66), - [sym_em_dash] = ACTIONS(66), - [sym_en_dash] = ACTIONS(69), - [sym_backslash_escape] = ACTIONS(69), - [anon_sym_LT] = ACTIONS(72), - [anon_sym_LBRACE_EQ] = ACTIONS(75), - [anon_sym_LBRACE_PLUS] = ACTIONS(78), - [anon_sym_LBRACE_DASH] = ACTIONS(81), - [sym_symbol] = ACTIONS(66), - [anon_sym_LBRACE_CARET] = ACTIONS(86), - [anon_sym_CARET] = ACTIONS(86), - [anon_sym_LBRACE_TILDE] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_LBRACK_CARET] = ACTIONS(92), - [anon_sym_RBRACK] = ACTIONS(516), - [anon_sym_BANG_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK] = ACTIONS(100), - [anon_sym_LBRACE2] = ACTIONS(69), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_TODO] = ACTIONS(106), - [anon_sym_WIP] = ACTIONS(106), - [anon_sym_NOTE] = ACTIONS(109), - [anon_sym_INFO] = ACTIONS(109), - [anon_sym_XXX] = ACTIONS(109), - [sym_fixme] = ACTIONS(66), - [anon_sym_PIPE] = ACTIONS(66), - [sym__whitespace1] = ACTIONS(112), - [sym__newline] = ACTIONS(115), - [aux_sym__text_token1] = ACTIONS(118), - [sym__verbatim_begin] = ACTIONS(121), + [anon_sym_LBRACE_] = ACTIONS(282), + [anon_sym__] = ACTIONS(285), + [anon_sym_LBRACE_STAR] = ACTIONS(288), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_BSLASH] = ACTIONS(294), + [sym_quotation_marks] = ACTIONS(297), + [sym_ellipsis] = ACTIONS(297), + [sym_em_dash] = ACTIONS(297), + [sym_en_dash] = ACTIONS(300), + [sym_backslash_escape] = ACTIONS(300), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACE_EQ] = ACTIONS(306), + [anon_sym_EQ_RBRACE] = ACTIONS(93), + [anon_sym_LBRACE_PLUS] = ACTIONS(309), + [anon_sym_LBRACE_DASH] = ACTIONS(312), + [sym_symbol] = ACTIONS(297), + [anon_sym_LBRACE_CARET] = ACTIONS(315), + [anon_sym_CARET] = ACTIONS(315), + [anon_sym_LBRACE_TILDE] = ACTIONS(318), + [anon_sym_TILDE] = ACTIONS(318), + [anon_sym_LBRACK_CARET] = ACTIONS(321), + [anon_sym_BANG_LBRACK] = ACTIONS(324), + [anon_sym_LBRACK] = ACTIONS(327), + [anon_sym_LBRACE2] = ACTIONS(300), + [anon_sym_DOLLAR] = ACTIONS(330), + [anon_sym_TODO] = ACTIONS(333), + [anon_sym_WIP] = ACTIONS(333), + [anon_sym_NOTE] = ACTIONS(336), + [anon_sym_INFO] = ACTIONS(336), + [anon_sym_XXX] = ACTIONS(336), + [sym_fixme] = ACTIONS(297), + [anon_sym_PIPE] = ACTIONS(297), + [sym__whitespace1] = ACTIONS(339), + [sym__newline] = ACTIONS(342), + [aux_sym__text_token1] = ACTIONS(345), + [sym__verbatim_begin] = ACTIONS(348), }, [49] = { - [sym__inline] = STATE(959), - [sym__element] = STATE(118), - [sym_emphasis] = STATE(204), - [sym_emphasis_begin] = STATE(1017), - [sym_strong] = STATE(204), - [sym_strong_begin] = STATE(114), - [sym__hard_line_break] = STATE(204), - [sym_hard_line_break] = STATE(204), - [sym__smart_punctuation] = STATE(204), - [sym_autolink] = STATE(204), - [sym_highlighted] = STATE(204), - [sym_insert] = STATE(204), - [sym_delete] = STATE(204), - [sym_superscript] = STATE(204), - [sym_subscript] = STATE(204), - [sym_footnote_reference] = STATE(204), - [sym__image] = STATE(204), - [sym_full_reference_image] = STATE(204), - [sym_collapsed_reference_image] = STATE(204), - [sym_inline_image] = STATE(204), - [sym__image_description] = STATE(714), - [sym__link] = STATE(204), - [sym_full_reference_link] = STATE(204), - [sym_collapsed_reference_link] = STATE(204), - [sym_inline_link] = STATE(204), - [sym_link_text] = STATE(715), - [sym__comment_with_spaces] = STATE(204), - [sym_span] = STATE(204), - [sym_raw_inline] = STATE(204), - [sym_math] = STATE(204), - [sym_verbatim] = STATE(204), - [sym__todo_highlights] = STATE(204), - [sym_todo] = STATE(204), - [sym_note] = STATE(204), - [sym__symbol_fallback] = STATE(204), - [aux_sym__text] = STATE(149), - [aux_sym__inline_repeat1] = STATE(118), + [sym__inline] = STATE(900), + [sym__element] = STATE(91), + [sym_emphasis] = STATE(174), + [sym_emphasis_begin] = STATE(1001), + [sym_strong] = STATE(174), + [sym_strong_begin] = STATE(126), + [sym__hard_line_break] = STATE(174), + [sym_hard_line_break] = STATE(174), + [sym__smart_punctuation] = STATE(174), + [sym_autolink] = STATE(174), + [sym_highlighted] = STATE(174), + [sym_insert] = STATE(174), + [sym_delete] = STATE(174), + [sym_superscript] = STATE(174), + [sym_subscript] = STATE(174), + [sym_footnote_reference] = STATE(174), + [sym__image] = STATE(174), + [sym_full_reference_image] = STATE(174), + [sym_collapsed_reference_image] = STATE(174), + [sym_inline_image] = STATE(174), + [sym__image_description] = STATE(709), + [sym__link] = STATE(174), + [sym_full_reference_link] = STATE(174), + [sym_collapsed_reference_link] = STATE(174), + [sym_inline_link] = STATE(174), + [sym_link_text] = STATE(710), + [sym__comment_with_spaces] = STATE(174), + [sym_span] = STATE(174), + [sym_raw_inline] = STATE(174), + [sym_math] = STATE(174), + [sym_verbatim] = STATE(174), + [sym__todo_highlights] = STATE(174), + [sym_todo] = STATE(174), + [sym_note] = STATE(174), + [sym__symbol_fallback] = STATE(174), + [aux_sym__text] = STATE(148), + [aux_sym__inline_repeat1] = STATE(91), [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(51), - [anon_sym__] = ACTIONS(54), - [anon_sym_LBRACE_STAR] = ACTIONS(57), - [anon_sym_STAR] = ACTIONS(60), - [anon_sym_BSLASH] = ACTIONS(63), - [sym_quotation_marks] = ACTIONS(66), - [sym_ellipsis] = ACTIONS(66), - [sym_em_dash] = ACTIONS(66), - [sym_en_dash] = ACTIONS(69), - [sym_backslash_escape] = ACTIONS(69), - [anon_sym_LT] = ACTIONS(72), - [anon_sym_LBRACE_EQ] = ACTIONS(75), - [anon_sym_LBRACE_PLUS] = ACTIONS(78), - [anon_sym_LBRACE_DASH] = ACTIONS(81), - [sym_symbol] = ACTIONS(66), - [anon_sym_LBRACE_CARET] = ACTIONS(86), - [anon_sym_CARET] = ACTIONS(86), - [anon_sym_LBRACE_TILDE] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_LBRACK_CARET] = ACTIONS(92), - [anon_sym_RBRACK] = ACTIONS(84), - [anon_sym_BANG_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK] = ACTIONS(100), - [anon_sym_LBRACE2] = ACTIONS(69), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_TODO] = ACTIONS(106), - [anon_sym_WIP] = ACTIONS(106), - [anon_sym_NOTE] = ACTIONS(109), - [anon_sym_INFO] = ACTIONS(109), - [anon_sym_XXX] = ACTIONS(109), - [sym_fixme] = ACTIONS(66), - [anon_sym_PIPE] = ACTIONS(66), - [sym__whitespace1] = ACTIONS(112), - [sym__newline] = ACTIONS(115), - [aux_sym__text_token1] = ACTIONS(118), - [sym__verbatim_begin] = ACTIONS(121), + [anon_sym_LBRACE_] = ACTIONS(213), + [anon_sym__] = ACTIONS(216), + [anon_sym_LBRACE_STAR] = ACTIONS(219), + [anon_sym_STAR] = ACTIONS(222), + [anon_sym_BSLASH] = ACTIONS(225), + [sym_quotation_marks] = ACTIONS(228), + [sym_ellipsis] = ACTIONS(228), + [sym_em_dash] = ACTIONS(228), + [sym_en_dash] = ACTIONS(231), + [sym_backslash_escape] = ACTIONS(231), + [anon_sym_LT] = ACTIONS(234), + [anon_sym_LBRACE_EQ] = ACTIONS(237), + [anon_sym_EQ_RBRACE] = ACTIONS(93), + [anon_sym_LBRACE_PLUS] = ACTIONS(240), + [anon_sym_LBRACE_DASH] = ACTIONS(243), + [sym_symbol] = ACTIONS(228), + [anon_sym_LBRACE_CARET] = ACTIONS(246), + [anon_sym_CARET] = ACTIONS(246), + [anon_sym_LBRACE_TILDE] = ACTIONS(249), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_LBRACK_CARET] = ACTIONS(252), + [anon_sym_BANG_LBRACK] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(258), + [anon_sym_LBRACE2] = ACTIONS(231), + [anon_sym_DOLLAR] = ACTIONS(261), + [anon_sym_TODO] = ACTIONS(264), + [anon_sym_WIP] = ACTIONS(264), + [anon_sym_NOTE] = ACTIONS(267), + [anon_sym_INFO] = ACTIONS(267), + [anon_sym_XXX] = ACTIONS(267), + [sym_fixme] = ACTIONS(228), + [anon_sym_PIPE] = ACTIONS(228), + [sym__whitespace1] = ACTIONS(270), + [sym__newline] = ACTIONS(273), + [aux_sym__text_token1] = ACTIONS(276), + [sym__verbatim_begin] = ACTIONS(279), }, [50] = { - [sym__inline] = STATE(917), + [sym__inline] = STATE(915), [sym__element] = STATE(118), - [sym_emphasis] = STATE(204), - [sym_emphasis_begin] = STATE(1017), - [sym_strong] = STATE(204), - [sym_strong_begin] = STATE(114), - [sym__hard_line_break] = STATE(204), - [sym_hard_line_break] = STATE(204), - [sym__smart_punctuation] = STATE(204), - [sym_autolink] = STATE(204), - [sym_highlighted] = STATE(204), - [sym_insert] = STATE(204), - [sym_delete] = STATE(204), - [sym_superscript] = STATE(204), - [sym_subscript] = STATE(204), - [sym_footnote_reference] = STATE(204), - [sym__image] = STATE(204), - [sym_full_reference_image] = STATE(204), - [sym_collapsed_reference_image] = STATE(204), - [sym_inline_image] = STATE(204), - [sym__image_description] = STATE(714), - [sym__link] = STATE(204), - [sym_full_reference_link] = STATE(204), - [sym_collapsed_reference_link] = STATE(204), - [sym_inline_link] = STATE(204), - [sym_link_text] = STATE(715), - [sym__comment_with_spaces] = STATE(204), - [sym_span] = STATE(204), - [sym_raw_inline] = STATE(204), - [sym_math] = STATE(204), - [sym_verbatim] = STATE(204), - [sym__todo_highlights] = STATE(204), - [sym_todo] = STATE(204), - [sym_note] = STATE(204), - [sym__symbol_fallback] = STATE(204), - [aux_sym__text] = STATE(149), + [sym_emphasis] = STATE(201), + [sym_emphasis_begin] = STATE(1005), + [sym_strong] = STATE(201), + [sym_strong_begin] = STATE(105), + [sym__hard_line_break] = STATE(201), + [sym_hard_line_break] = STATE(201), + [sym__smart_punctuation] = STATE(201), + [sym_autolink] = STATE(201), + [sym_highlighted] = STATE(201), + [sym_insert] = STATE(201), + [sym_delete] = STATE(201), + [sym_superscript] = STATE(201), + [sym_subscript] = STATE(201), + [sym_footnote_reference] = STATE(201), + [sym__image] = STATE(201), + [sym_full_reference_image] = STATE(201), + [sym_collapsed_reference_image] = STATE(201), + [sym_inline_image] = STATE(201), + [sym__image_description] = STATE(712), + [sym__link] = STATE(201), + [sym_full_reference_link] = STATE(201), + [sym_collapsed_reference_link] = STATE(201), + [sym_inline_link] = STATE(201), + [sym_link_text] = STATE(717), + [sym__comment_with_spaces] = STATE(201), + [sym_span] = STATE(201), + [sym_raw_inline] = STATE(201), + [sym_math] = STATE(201), + [sym_verbatim] = STATE(201), + [sym__todo_highlights] = STATE(201), + [sym_todo] = STATE(201), + [sym_note] = STATE(201), + [sym__symbol_fallback] = STATE(201), + [aux_sym__text] = STATE(139), [aux_sym__inline_repeat1] = STATE(118), [anon_sym_LBRACE] = ACTIONS(49), [anon_sym_LBRACE_] = ACTIONS(51), @@ -12170,72 +11679,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PLUS] = ACTIONS(78), [anon_sym_LBRACE_DASH] = ACTIONS(81), [sym_symbol] = ACTIONS(66), - [anon_sym_LBRACE_CARET] = ACTIONS(86), - [anon_sym_CARET] = ACTIONS(86), - [anon_sym_LBRACE_TILDE] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_LBRACK_CARET] = ACTIONS(92), - [anon_sym_RBRACK] = ACTIONS(95), - [anon_sym_BANG_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK] = ACTIONS(100), + [anon_sym_LBRACE_CARET] = ACTIONS(84), + [anon_sym_CARET] = ACTIONS(84), + [anon_sym_LBRACE_TILDE] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_LBRACK_CARET] = ACTIONS(95), + [anon_sym_RBRACK] = ACTIONS(98), + [anon_sym_BANG_LBRACK] = ACTIONS(100), + [anon_sym_LBRACK] = ACTIONS(103), [anon_sym_LBRACE2] = ACTIONS(69), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_TODO] = ACTIONS(106), - [anon_sym_WIP] = ACTIONS(106), - [anon_sym_NOTE] = ACTIONS(109), - [anon_sym_INFO] = ACTIONS(109), - [anon_sym_XXX] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(106), + [anon_sym_TODO] = ACTIONS(109), + [anon_sym_WIP] = ACTIONS(109), + [anon_sym_NOTE] = ACTIONS(112), + [anon_sym_INFO] = ACTIONS(112), + [anon_sym_XXX] = ACTIONS(112), [sym_fixme] = ACTIONS(66), [anon_sym_PIPE] = ACTIONS(66), - [sym__whitespace1] = ACTIONS(112), - [sym__newline] = ACTIONS(115), - [aux_sym__text_token1] = ACTIONS(118), - [sym__verbatim_begin] = ACTIONS(121), + [sym__whitespace1] = ACTIONS(115), + [sym__newline] = ACTIONS(118), + [aux_sym__text_token1] = ACTIONS(121), + [sym__verbatim_begin] = ACTIONS(124), }, [51] = { - [sym__inline] = STATE(811), - [sym__element] = STATE(95), - [sym_emphasis] = STATE(215), - [sym_emphasis_begin] = STATE(1012), - [sym_strong] = STATE(215), - [sym_strong_begin] = STATE(128), - [sym__hard_line_break] = STATE(215), - [sym_hard_line_break] = STATE(215), - [sym__smart_punctuation] = STATE(215), - [sym_autolink] = STATE(215), - [sym_highlighted] = STATE(215), - [sym_insert] = STATE(215), - [sym_delete] = STATE(215), - [sym_superscript] = STATE(215), - [sym_subscript] = STATE(215), - [sym_footnote_reference] = STATE(215), - [sym__image] = STATE(215), - [sym_full_reference_image] = STATE(215), - [sym_collapsed_reference_image] = STATE(215), - [sym_inline_image] = STATE(215), - [sym__image_description] = STATE(696), - [sym__link] = STATE(215), - [sym_full_reference_link] = STATE(215), - [sym_collapsed_reference_link] = STATE(215), - [sym_inline_link] = STATE(215), - [sym_link_text] = STATE(705), - [sym__comment_with_spaces] = STATE(215), - [sym_span] = STATE(215), - [sym_raw_inline] = STATE(215), - [sym_math] = STATE(215), - [sym_verbatim] = STATE(215), - [sym__todo_highlights] = STATE(215), - [sym_todo] = STATE(215), - [sym_note] = STATE(215), - [sym__symbol_fallback] = STATE(215), - [aux_sym__text] = STATE(141), - [aux_sym__inline_repeat1] = STATE(95), + [sym__inline] = STATE(793), + [sym__element] = STATE(115), + [sym_emphasis] = STATE(205), + [sym_emphasis_begin] = STATE(1000), + [sym_strong] = STATE(205), + [sym_strong_begin] = STATE(129), + [sym__hard_line_break] = STATE(205), + [sym_hard_line_break] = STATE(205), + [sym__smart_punctuation] = STATE(205), + [sym_autolink] = STATE(205), + [sym_highlighted] = STATE(205), + [sym_insert] = STATE(205), + [sym_delete] = STATE(205), + [sym_superscript] = STATE(205), + [sym_subscript] = STATE(205), + [sym_footnote_reference] = STATE(205), + [sym__image] = STATE(205), + [sym_full_reference_image] = STATE(205), + [sym_collapsed_reference_image] = STATE(205), + [sym_inline_image] = STATE(205), + [sym__image_description] = STATE(705), + [sym__link] = STATE(205), + [sym_full_reference_link] = STATE(205), + [sym_collapsed_reference_link] = STATE(205), + [sym_inline_link] = STATE(205), + [sym_link_text] = STATE(703), + [sym__comment_with_spaces] = STATE(205), + [sym_span] = STATE(205), + [sym_raw_inline] = STATE(205), + [sym_math] = STATE(205), + [sym_verbatim] = STATE(205), + [sym__todo_highlights] = STATE(205), + [sym_todo] = STATE(205), + [sym_note] = STATE(205), + [sym__symbol_fallback] = STATE(205), + [aux_sym__text] = STATE(136), + [aux_sym__inline_repeat1] = STATE(115), [anon_sym_LBRACE] = ACTIONS(49), [anon_sym_LBRACE_] = ACTIONS(141), [anon_sym__] = ACTIONS(144), [anon_sym_LBRACE_STAR] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(519), - [aux_sym_strong_end_token1] = ACTIONS(84), + [anon_sym_STAR] = ACTIONS(150), [anon_sym_BSLASH] = ACTIONS(153), [sym_quotation_marks] = ACTIONS(156), [sym_ellipsis] = ACTIONS(156), @@ -12244,144 +11752,221 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_backslash_escape] = ACTIONS(159), [anon_sym_LT] = ACTIONS(162), [anon_sym_LBRACE_EQ] = ACTIONS(165), + [anon_sym_EQ_RBRACE] = ACTIONS(93), [anon_sym_LBRACE_PLUS] = ACTIONS(168), [anon_sym_LBRACE_DASH] = ACTIONS(171), [sym_symbol] = ACTIONS(156), [anon_sym_LBRACE_CARET] = ACTIONS(174), [anon_sym_CARET] = ACTIONS(174), - [anon_sym_LBRACE_TILDE] = ACTIONS(177), - [anon_sym_TILDE] = ACTIONS(177), - [anon_sym_LBRACK_CARET] = ACTIONS(180), - [anon_sym_BANG_LBRACK] = ACTIONS(183), - [anon_sym_LBRACK] = ACTIONS(186), + [anon_sym_LBRACE_TILDE] = ACTIONS(180), + [anon_sym_TILDE] = ACTIONS(180), + [anon_sym_LBRACK_CARET] = ACTIONS(183), + [anon_sym_BANG_LBRACK] = ACTIONS(186), + [anon_sym_LBRACK] = ACTIONS(189), [anon_sym_LBRACE2] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(189), - [anon_sym_TODO] = ACTIONS(192), - [anon_sym_WIP] = ACTIONS(192), - [anon_sym_NOTE] = ACTIONS(195), - [anon_sym_INFO] = ACTIONS(195), - [anon_sym_XXX] = ACTIONS(195), + [anon_sym_DOLLAR] = ACTIONS(192), + [anon_sym_TODO] = ACTIONS(195), + [anon_sym_WIP] = ACTIONS(195), + [anon_sym_NOTE] = ACTIONS(198), + [anon_sym_INFO] = ACTIONS(198), + [anon_sym_XXX] = ACTIONS(198), [sym_fixme] = ACTIONS(156), [anon_sym_PIPE] = ACTIONS(156), - [sym__whitespace1] = ACTIONS(522), - [sym__newline] = ACTIONS(201), - [aux_sym__text_token1] = ACTIONS(204), - [sym__verbatim_begin] = ACTIONS(207), + [sym__whitespace1] = ACTIONS(201), + [sym__newline] = ACTIONS(204), + [aux_sym__text_token1] = ACTIONS(207), + [sym__verbatim_begin] = ACTIONS(210), }, [52] = { - [sym__inline] = STATE(812), - [sym__element] = STATE(87), - [sym_emphasis] = STATE(176), - [sym_emphasis_begin] = STATE(1013), - [sym_strong] = STATE(176), - [sym_strong_begin] = STATE(97), - [sym__hard_line_break] = STATE(176), - [sym_hard_line_break] = STATE(176), - [sym__smart_punctuation] = STATE(176), - [sym_autolink] = STATE(176), - [sym_highlighted] = STATE(176), - [sym_insert] = STATE(176), - [sym_delete] = STATE(176), - [sym_superscript] = STATE(176), - [sym_subscript] = STATE(176), - [sym_footnote_reference] = STATE(176), - [sym__image] = STATE(176), - [sym_full_reference_image] = STATE(176), - [sym_collapsed_reference_image] = STATE(176), - [sym_inline_image] = STATE(176), - [sym__image_description] = STATE(690), - [sym__link] = STATE(176), - [sym_full_reference_link] = STATE(176), - [sym_collapsed_reference_link] = STATE(176), - [sym_inline_link] = STATE(176), - [sym_link_text] = STATE(691), - [sym__comment_with_spaces] = STATE(176), - [sym_span] = STATE(176), - [sym_raw_inline] = STATE(176), - [sym_math] = STATE(176), - [sym_verbatim] = STATE(176), - [sym__todo_highlights] = STATE(176), - [sym_todo] = STATE(176), - [sym_note] = STATE(176), - [sym__symbol_fallback] = STATE(176), - [aux_sym__text] = STATE(155), - [aux_sym__inline_repeat1] = STATE(87), + [sym__inline] = STATE(819), + [sym__element] = STATE(115), + [sym_emphasis] = STATE(205), + [sym_emphasis_begin] = STATE(1000), + [sym_strong] = STATE(205), + [sym_strong_begin] = STATE(129), + [sym__hard_line_break] = STATE(205), + [sym_hard_line_break] = STATE(205), + [sym__smart_punctuation] = STATE(205), + [sym_autolink] = STATE(205), + [sym_highlighted] = STATE(205), + [sym_insert] = STATE(205), + [sym_delete] = STATE(205), + [sym_superscript] = STATE(205), + [sym_subscript] = STATE(205), + [sym_footnote_reference] = STATE(205), + [sym__image] = STATE(205), + [sym_full_reference_image] = STATE(205), + [sym_collapsed_reference_image] = STATE(205), + [sym_inline_image] = STATE(205), + [sym__image_description] = STATE(705), + [sym__link] = STATE(205), + [sym_full_reference_link] = STATE(205), + [sym_collapsed_reference_link] = STATE(205), + [sym_inline_link] = STATE(205), + [sym_link_text] = STATE(703), + [sym__comment_with_spaces] = STATE(205), + [sym_span] = STATE(205), + [sym_raw_inline] = STATE(205), + [sym_math] = STATE(205), + [sym_verbatim] = STATE(205), + [sym__todo_highlights] = STATE(205), + [sym_todo] = STATE(205), + [sym_note] = STATE(205), + [sym__symbol_fallback] = STATE(205), + [aux_sym__text] = STATE(136), + [aux_sym__inline_repeat1] = STATE(115), [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(210), - [anon_sym__] = ACTIONS(213), - [anon_sym_LBRACE_STAR] = ACTIONS(216), - [anon_sym_STAR] = ACTIONS(525), - [aux_sym_strong_end_token1] = ACTIONS(84), - [anon_sym_BSLASH] = ACTIONS(222), - [sym_quotation_marks] = ACTIONS(225), - [sym_ellipsis] = ACTIONS(225), - [sym_em_dash] = ACTIONS(225), - [sym_en_dash] = ACTIONS(228), - [sym_backslash_escape] = ACTIONS(228), - [anon_sym_LT] = ACTIONS(231), - [anon_sym_LBRACE_EQ] = ACTIONS(234), - [anon_sym_LBRACE_PLUS] = ACTIONS(237), - [anon_sym_LBRACE_DASH] = ACTIONS(240), - [sym_symbol] = ACTIONS(225), - [anon_sym_LBRACE_CARET] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(243), - [anon_sym_LBRACE_TILDE] = ACTIONS(246), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_LBRACK_CARET] = ACTIONS(249), - [anon_sym_BANG_LBRACK] = ACTIONS(252), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_LBRACE2] = ACTIONS(228), - [anon_sym_DOLLAR] = ACTIONS(258), - [anon_sym_TODO] = ACTIONS(261), - [anon_sym_WIP] = ACTIONS(261), - [anon_sym_NOTE] = ACTIONS(264), - [anon_sym_INFO] = ACTIONS(264), - [anon_sym_XXX] = ACTIONS(264), - [sym_fixme] = ACTIONS(225), - [anon_sym_PIPE] = ACTIONS(225), - [sym__whitespace1] = ACTIONS(528), - [sym__newline] = ACTIONS(270), - [aux_sym__text_token1] = ACTIONS(273), - [sym__verbatim_begin] = ACTIONS(276), + [anon_sym_LBRACE_] = ACTIONS(141), + [anon_sym__] = ACTIONS(144), + [anon_sym_LBRACE_STAR] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(516), + [aux_sym_strong_end_token1] = ACTIONS(93), + [anon_sym_BSLASH] = ACTIONS(153), + [sym_quotation_marks] = ACTIONS(156), + [sym_ellipsis] = ACTIONS(156), + [sym_em_dash] = ACTIONS(156), + [sym_en_dash] = ACTIONS(159), + [sym_backslash_escape] = ACTIONS(159), + [anon_sym_LT] = ACTIONS(162), + [anon_sym_LBRACE_EQ] = ACTIONS(165), + [anon_sym_LBRACE_PLUS] = ACTIONS(168), + [anon_sym_LBRACE_DASH] = ACTIONS(171), + [sym_symbol] = ACTIONS(156), + [anon_sym_LBRACE_CARET] = ACTIONS(174), + [anon_sym_CARET] = ACTIONS(174), + [anon_sym_LBRACE_TILDE] = ACTIONS(180), + [anon_sym_TILDE] = ACTIONS(180), + [anon_sym_LBRACK_CARET] = ACTIONS(183), + [anon_sym_BANG_LBRACK] = ACTIONS(186), + [anon_sym_LBRACK] = ACTIONS(189), + [anon_sym_LBRACE2] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(192), + [anon_sym_TODO] = ACTIONS(195), + [anon_sym_WIP] = ACTIONS(195), + [anon_sym_NOTE] = ACTIONS(198), + [anon_sym_INFO] = ACTIONS(198), + [anon_sym_XXX] = ACTIONS(198), + [sym_fixme] = ACTIONS(156), + [anon_sym_PIPE] = ACTIONS(156), + [sym__whitespace1] = ACTIONS(519), + [sym__newline] = ACTIONS(204), + [aux_sym__text_token1] = ACTIONS(207), + [sym__verbatim_begin] = ACTIONS(210), }, [53] = { - [sym__inline] = STATE(852), - [sym__element] = STATE(95), - [sym_emphasis] = STATE(215), - [sym_emphasis_begin] = STATE(1012), - [sym_strong] = STATE(215), - [sym_strong_begin] = STATE(128), - [sym__hard_line_break] = STATE(215), - [sym_hard_line_break] = STATE(215), - [sym__smart_punctuation] = STATE(215), - [sym_autolink] = STATE(215), - [sym_highlighted] = STATE(215), - [sym_insert] = STATE(215), - [sym_delete] = STATE(215), - [sym_superscript] = STATE(215), - [sym_subscript] = STATE(215), - [sym_footnote_reference] = STATE(215), - [sym__image] = STATE(215), - [sym_full_reference_image] = STATE(215), - [sym_collapsed_reference_image] = STATE(215), - [sym_inline_image] = STATE(215), - [sym__image_description] = STATE(696), - [sym__link] = STATE(215), - [sym_full_reference_link] = STATE(215), - [sym_collapsed_reference_link] = STATE(215), - [sym_inline_link] = STATE(215), - [sym_link_text] = STATE(705), - [sym__comment_with_spaces] = STATE(215), - [sym_span] = STATE(215), - [sym_raw_inline] = STATE(215), - [sym_math] = STATE(215), - [sym_verbatim] = STATE(215), - [sym__todo_highlights] = STATE(215), - [sym_todo] = STATE(215), - [sym_note] = STATE(215), - [sym__symbol_fallback] = STATE(215), - [aux_sym__text] = STATE(141), - [aux_sym__inline_repeat1] = STATE(95), + [sym__inline] = STATE(820), + [sym__element] = STATE(91), + [sym_emphasis] = STATE(174), + [sym_emphasis_begin] = STATE(1001), + [sym_strong] = STATE(174), + [sym_strong_begin] = STATE(126), + [sym__hard_line_break] = STATE(174), + [sym_hard_line_break] = STATE(174), + [sym__smart_punctuation] = STATE(174), + [sym_autolink] = STATE(174), + [sym_highlighted] = STATE(174), + [sym_insert] = STATE(174), + [sym_delete] = STATE(174), + [sym_superscript] = STATE(174), + [sym_subscript] = STATE(174), + [sym_footnote_reference] = STATE(174), + [sym__image] = STATE(174), + [sym_full_reference_image] = STATE(174), + [sym_collapsed_reference_image] = STATE(174), + [sym_inline_image] = STATE(174), + [sym__image_description] = STATE(709), + [sym__link] = STATE(174), + [sym_full_reference_link] = STATE(174), + [sym_collapsed_reference_link] = STATE(174), + [sym_inline_link] = STATE(174), + [sym_link_text] = STATE(710), + [sym__comment_with_spaces] = STATE(174), + [sym_span] = STATE(174), + [sym_raw_inline] = STATE(174), + [sym_math] = STATE(174), + [sym_verbatim] = STATE(174), + [sym__todo_highlights] = STATE(174), + [sym_todo] = STATE(174), + [sym_note] = STATE(174), + [sym__symbol_fallback] = STATE(174), + [aux_sym__text] = STATE(148), + [aux_sym__inline_repeat1] = STATE(91), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(213), + [anon_sym__] = ACTIONS(216), + [anon_sym_LBRACE_STAR] = ACTIONS(219), + [anon_sym_STAR] = ACTIONS(522), + [aux_sym_strong_end_token1] = ACTIONS(93), + [anon_sym_BSLASH] = ACTIONS(225), + [sym_quotation_marks] = ACTIONS(228), + [sym_ellipsis] = ACTIONS(228), + [sym_em_dash] = ACTIONS(228), + [sym_en_dash] = ACTIONS(231), + [sym_backslash_escape] = ACTIONS(231), + [anon_sym_LT] = ACTIONS(234), + [anon_sym_LBRACE_EQ] = ACTIONS(237), + [anon_sym_LBRACE_PLUS] = ACTIONS(240), + [anon_sym_LBRACE_DASH] = ACTIONS(243), + [sym_symbol] = ACTIONS(228), + [anon_sym_LBRACE_CARET] = ACTIONS(246), + [anon_sym_CARET] = ACTIONS(246), + [anon_sym_LBRACE_TILDE] = ACTIONS(249), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_LBRACK_CARET] = ACTIONS(252), + [anon_sym_BANG_LBRACK] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(258), + [anon_sym_LBRACE2] = ACTIONS(231), + [anon_sym_DOLLAR] = ACTIONS(261), + [anon_sym_TODO] = ACTIONS(264), + [anon_sym_WIP] = ACTIONS(264), + [anon_sym_NOTE] = ACTIONS(267), + [anon_sym_INFO] = ACTIONS(267), + [anon_sym_XXX] = ACTIONS(267), + [sym_fixme] = ACTIONS(228), + [anon_sym_PIPE] = ACTIONS(228), + [sym__whitespace1] = ACTIONS(525), + [sym__newline] = ACTIONS(273), + [aux_sym__text_token1] = ACTIONS(276), + [sym__verbatim_begin] = ACTIONS(279), + }, + [54] = { + [sym__inline] = STATE(855), + [sym__element] = STATE(115), + [sym_emphasis] = STATE(205), + [sym_emphasis_begin] = STATE(1000), + [sym_strong] = STATE(205), + [sym_strong_begin] = STATE(129), + [sym__hard_line_break] = STATE(205), + [sym_hard_line_break] = STATE(205), + [sym__smart_punctuation] = STATE(205), + [sym_autolink] = STATE(205), + [sym_highlighted] = STATE(205), + [sym_insert] = STATE(205), + [sym_delete] = STATE(205), + [sym_superscript] = STATE(205), + [sym_subscript] = STATE(205), + [sym_footnote_reference] = STATE(205), + [sym__image] = STATE(205), + [sym_full_reference_image] = STATE(205), + [sym_collapsed_reference_image] = STATE(205), + [sym_inline_image] = STATE(205), + [sym__image_description] = STATE(705), + [sym__link] = STATE(205), + [sym_full_reference_link] = STATE(205), + [sym_collapsed_reference_link] = STATE(205), + [sym_inline_link] = STATE(205), + [sym_link_text] = STATE(703), + [sym__comment_with_spaces] = STATE(205), + [sym_span] = STATE(205), + [sym_raw_inline] = STATE(205), + [sym_math] = STATE(205), + [sym_verbatim] = STATE(205), + [sym__todo_highlights] = STATE(205), + [sym_todo] = STATE(205), + [sym_note] = STATE(205), + [sym__symbol_fallback] = STATE(205), + [aux_sym__text] = STATE(136), + [aux_sym__inline_repeat1] = STATE(115), [anon_sym_LBRACE] = ACTIONS(49), [anon_sym_LBRACE_] = ACTIONS(141), [anon_sym__] = ACTIONS(144), @@ -12400,70 +11985,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_symbol] = ACTIONS(156), [anon_sym_LBRACE_CARET] = ACTIONS(174), [anon_sym_CARET] = ACTIONS(174), - [anon_sym_LBRACE_TILDE] = ACTIONS(177), - [anon_sym_TILDE] = ACTIONS(177), - [anon_sym_LBRACK_CARET] = ACTIONS(180), - [anon_sym_BANG_LBRACK] = ACTIONS(183), - [anon_sym_LBRACK] = ACTIONS(186), - [anon_sym_RBRACK2] = ACTIONS(84), + [anon_sym_LBRACE_TILDE] = ACTIONS(180), + [anon_sym_TILDE] = ACTIONS(180), + [anon_sym_LBRACK_CARET] = ACTIONS(183), + [anon_sym_BANG_LBRACK] = ACTIONS(186), + [anon_sym_LBRACK] = ACTIONS(189), + [anon_sym_RBRACK2] = ACTIONS(93), [anon_sym_LBRACE2] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(189), - [anon_sym_TODO] = ACTIONS(192), - [anon_sym_WIP] = ACTIONS(192), - [anon_sym_NOTE] = ACTIONS(195), - [anon_sym_INFO] = ACTIONS(195), - [anon_sym_XXX] = ACTIONS(195), + [anon_sym_DOLLAR] = ACTIONS(192), + [anon_sym_TODO] = ACTIONS(195), + [anon_sym_WIP] = ACTIONS(195), + [anon_sym_NOTE] = ACTIONS(198), + [anon_sym_INFO] = ACTIONS(198), + [anon_sym_XXX] = ACTIONS(198), [sym_fixme] = ACTIONS(156), [anon_sym_PIPE] = ACTIONS(156), - [sym__whitespace1] = ACTIONS(198), - [sym__newline] = ACTIONS(201), - [aux_sym__text_token1] = ACTIONS(204), - [sym__verbatim_begin] = ACTIONS(207), + [sym__whitespace1] = ACTIONS(201), + [sym__newline] = ACTIONS(204), + [aux_sym__text_token1] = ACTIONS(207), + [sym__verbatim_begin] = ACTIONS(210), }, - [54] = { - [sym__inline] = STATE(968), + [55] = { + [sym__inline] = STATE(966), [sym__element] = STATE(118), - [sym_emphasis] = STATE(204), - [sym_emphasis_begin] = STATE(1017), - [sym_strong] = STATE(204), - [sym_strong_begin] = STATE(114), - [sym__hard_line_break] = STATE(204), - [sym_hard_line_break] = STATE(204), - [sym__smart_punctuation] = STATE(204), - [sym_autolink] = STATE(204), - [sym_highlighted] = STATE(204), - [sym_insert] = STATE(204), - [sym_delete] = STATE(204), - [sym_superscript] = STATE(204), - [sym_subscript] = STATE(204), - [sym_footnote_reference] = STATE(204), - [sym__image] = STATE(204), - [sym_full_reference_image] = STATE(204), - [sym_collapsed_reference_image] = STATE(204), - [sym_inline_image] = STATE(204), - [sym__image_description] = STATE(714), - [sym__link] = STATE(204), - [sym_full_reference_link] = STATE(204), - [sym_collapsed_reference_link] = STATE(204), - [sym_inline_link] = STATE(204), - [sym_link_text] = STATE(715), - [sym__comment_with_spaces] = STATE(204), - [sym_span] = STATE(204), - [sym_raw_inline] = STATE(204), - [sym_math] = STATE(204), - [sym_verbatim] = STATE(204), - [sym__todo_highlights] = STATE(204), - [sym_todo] = STATE(204), - [sym_note] = STATE(204), - [sym__symbol_fallback] = STATE(204), - [aux_sym__text] = STATE(149), + [sym_emphasis] = STATE(201), + [sym_emphasis_begin] = STATE(1005), + [sym_strong] = STATE(201), + [sym_strong_begin] = STATE(105), + [sym__hard_line_break] = STATE(201), + [sym_hard_line_break] = STATE(201), + [sym__smart_punctuation] = STATE(201), + [sym_autolink] = STATE(201), + [sym_highlighted] = STATE(201), + [sym_insert] = STATE(201), + [sym_delete] = STATE(201), + [sym_superscript] = STATE(201), + [sym_subscript] = STATE(201), + [sym_footnote_reference] = STATE(201), + [sym__image] = STATE(201), + [sym_full_reference_image] = STATE(201), + [sym_collapsed_reference_image] = STATE(201), + [sym_inline_image] = STATE(201), + [sym__image_description] = STATE(712), + [sym__link] = STATE(201), + [sym_full_reference_link] = STATE(201), + [sym_collapsed_reference_link] = STATE(201), + [sym_inline_link] = STATE(201), + [sym_link_text] = STATE(717), + [sym__comment_with_spaces] = STATE(201), + [sym_span] = STATE(201), + [sym_raw_inline] = STATE(201), + [sym_math] = STATE(201), + [sym_verbatim] = STATE(201), + [sym__todo_highlights] = STATE(201), + [sym_todo] = STATE(201), + [sym_note] = STATE(201), + [sym__symbol_fallback] = STATE(201), + [aux_sym__text] = STATE(139), [aux_sym__inline_repeat1] = STATE(118), [anon_sym_LBRACE] = ACTIONS(49), [anon_sym_LBRACE_] = ACTIONS(51), [anon_sym__] = ACTIONS(54), [anon_sym_LBRACE_STAR] = ACTIONS(57), - [anon_sym_STAR] = ACTIONS(135), - [aux_sym_strong_end_token1] = ACTIONS(84), + [anon_sym_STAR] = ACTIONS(132), + [aux_sym_strong_end_token1] = ACTIONS(93), [anon_sym_BSLASH] = ACTIONS(63), [sym_quotation_marks] = ACTIONS(66), [sym_ellipsis] = ACTIONS(66), @@ -12475,449 +12060,372 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PLUS] = ACTIONS(78), [anon_sym_LBRACE_DASH] = ACTIONS(81), [sym_symbol] = ACTIONS(66), - [anon_sym_LBRACE_CARET] = ACTIONS(86), - [anon_sym_CARET] = ACTIONS(86), - [anon_sym_LBRACE_TILDE] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_LBRACK_CARET] = ACTIONS(92), - [anon_sym_BANG_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK] = ACTIONS(100), + [anon_sym_LBRACE_CARET] = ACTIONS(84), + [anon_sym_CARET] = ACTIONS(84), + [anon_sym_LBRACE_TILDE] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_LBRACK_CARET] = ACTIONS(95), + [anon_sym_BANG_LBRACK] = ACTIONS(100), + [anon_sym_LBRACK] = ACTIONS(103), [anon_sym_LBRACE2] = ACTIONS(69), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_TODO] = ACTIONS(106), - [anon_sym_WIP] = ACTIONS(106), - [anon_sym_NOTE] = ACTIONS(109), - [anon_sym_INFO] = ACTIONS(109), - [anon_sym_XXX] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(106), + [anon_sym_TODO] = ACTIONS(109), + [anon_sym_WIP] = ACTIONS(109), + [anon_sym_NOTE] = ACTIONS(112), + [anon_sym_INFO] = ACTIONS(112), + [anon_sym_XXX] = ACTIONS(112), [sym_fixme] = ACTIONS(66), [anon_sym_PIPE] = ACTIONS(66), - [sym__whitespace1] = ACTIONS(132), - [sym__newline] = ACTIONS(115), - [aux_sym__text_token1] = ACTIONS(118), - [sym__verbatim_begin] = ACTIONS(121), - }, - [55] = { - [sym__inline] = STATE(779), - [sym__element] = STATE(79), - [sym_emphasis] = STATE(172), - [sym_emphasis_begin] = STATE(1015), - [sym_strong] = STATE(172), - [sym_strong_begin] = STATE(125), - [sym__hard_line_break] = STATE(172), - [sym_hard_line_break] = STATE(172), - [sym__smart_punctuation] = STATE(172), - [sym_autolink] = STATE(172), - [sym_highlighted] = STATE(172), - [sym_insert] = STATE(172), - [sym_delete] = STATE(172), - [sym_superscript] = STATE(172), - [sym_subscript] = STATE(172), - [sym_footnote_reference] = STATE(172), - [sym__image] = STATE(172), - [sym_full_reference_image] = STATE(172), - [sym_collapsed_reference_image] = STATE(172), - [sym_inline_image] = STATE(172), - [sym__image_description] = STATE(711), - [sym__link] = STATE(172), - [sym_full_reference_link] = STATE(172), - [sym_collapsed_reference_link] = STATE(172), - [sym_inline_link] = STATE(172), - [sym_link_text] = STATE(712), - [sym__comment_with_spaces] = STATE(172), - [sym_span] = STATE(172), - [sym_raw_inline] = STATE(172), - [sym_math] = STATE(172), - [sym_verbatim] = STATE(172), - [sym__todo_highlights] = STATE(172), - [sym_todo] = STATE(172), - [sym_note] = STATE(172), - [sym__symbol_fallback] = STATE(172), - [aux_sym__text] = STATE(170), - [aux_sym__inline_repeat1] = STATE(79), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(354), - [anon_sym__] = ACTIONS(357), - [anon_sym_LBRACE_STAR] = ACTIONS(360), - [anon_sym_STAR] = ACTIONS(363), - [anon_sym_BSLASH] = ACTIONS(366), - [sym_quotation_marks] = ACTIONS(369), - [sym_ellipsis] = ACTIONS(369), - [sym_em_dash] = ACTIONS(369), - [sym_en_dash] = ACTIONS(372), - [sym_backslash_escape] = ACTIONS(372), - [anon_sym_LT] = ACTIONS(375), - [anon_sym_LBRACE_EQ] = ACTIONS(378), - [anon_sym_LBRACE_PLUS] = ACTIONS(381), - [anon_sym_LBRACE_DASH] = ACTIONS(384), - [anon_sym_DASH_RBRACE] = ACTIONS(84), - [sym_symbol] = ACTIONS(369), - [anon_sym_LBRACE_CARET] = ACTIONS(387), - [anon_sym_CARET] = ACTIONS(387), - [anon_sym_LBRACE_TILDE] = ACTIONS(390), - [anon_sym_TILDE] = ACTIONS(390), - [anon_sym_LBRACK_CARET] = ACTIONS(393), - [anon_sym_BANG_LBRACK] = ACTIONS(396), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_LBRACE2] = ACTIONS(372), - [anon_sym_DOLLAR] = ACTIONS(402), - [anon_sym_TODO] = ACTIONS(405), - [anon_sym_WIP] = ACTIONS(405), - [anon_sym_NOTE] = ACTIONS(408), - [anon_sym_INFO] = ACTIONS(408), - [anon_sym_XXX] = ACTIONS(408), - [sym_fixme] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(369), - [sym__whitespace1] = ACTIONS(411), - [sym__newline] = ACTIONS(414), - [aux_sym__text_token1] = ACTIONS(417), - [sym__verbatim_begin] = ACTIONS(420), + [sym__whitespace1] = ACTIONS(135), + [sym__newline] = ACTIONS(118), + [aux_sym__text_token1] = ACTIONS(121), + [sym__verbatim_begin] = ACTIONS(124), }, [56] = { - [sym__inline] = STATE(782), - [sym__element] = STATE(117), - [sym_emphasis] = STATE(182), - [sym_emphasis_begin] = STATE(1016), - [sym_strong] = STATE(182), - [sym_strong_begin] = STATE(122), - [sym__hard_line_break] = STATE(182), - [sym_hard_line_break] = STATE(182), - [sym__smart_punctuation] = STATE(182), - [sym_autolink] = STATE(182), - [sym_highlighted] = STATE(182), - [sym_insert] = STATE(182), - [sym_delete] = STATE(182), - [sym_superscript] = STATE(182), - [sym_subscript] = STATE(182), - [sym_footnote_reference] = STATE(182), - [sym__image] = STATE(182), - [sym_full_reference_image] = STATE(182), - [sym_collapsed_reference_image] = STATE(182), - [sym_inline_image] = STATE(182), - [sym__image_description] = STATE(692), - [sym__link] = STATE(182), - [sym_full_reference_link] = STATE(182), - [sym_collapsed_reference_link] = STATE(182), - [sym_inline_link] = STATE(182), - [sym_link_text] = STATE(689), - [sym__comment_with_spaces] = STATE(182), - [sym_span] = STATE(182), - [sym_raw_inline] = STATE(182), - [sym_math] = STATE(182), - [sym_verbatim] = STATE(182), - [sym__todo_highlights] = STATE(182), - [sym_todo] = STATE(182), - [sym_note] = STATE(182), - [sym__symbol_fallback] = STATE(182), + [sym__inline] = STATE(786), + [sym__element] = STATE(114), + [sym_emphasis] = STATE(181), + [sym_emphasis_begin] = STATE(1004), + [sym_strong] = STATE(181), + [sym_strong_begin] = STATE(110), + [sym__hard_line_break] = STATE(181), + [sym_hard_line_break] = STATE(181), + [sym__smart_punctuation] = STATE(181), + [sym_autolink] = STATE(181), + [sym_highlighted] = STATE(181), + [sym_insert] = STATE(181), + [sym_delete] = STATE(181), + [sym_superscript] = STATE(181), + [sym_subscript] = STATE(181), + [sym_footnote_reference] = STATE(181), + [sym__image] = STATE(181), + [sym_full_reference_image] = STATE(181), + [sym_collapsed_reference_image] = STATE(181), + [sym_inline_image] = STATE(181), + [sym__image_description] = STATE(688), + [sym__link] = STATE(181), + [sym_full_reference_link] = STATE(181), + [sym_collapsed_reference_link] = STATE(181), + [sym_inline_link] = STATE(181), + [sym_link_text] = STATE(693), + [sym__comment_with_spaces] = STATE(181), + [sym_span] = STATE(181), + [sym_raw_inline] = STATE(181), + [sym_math] = STATE(181), + [sym_verbatim] = STATE(181), + [sym__todo_highlights] = STATE(181), + [sym_todo] = STATE(181), + [sym_note] = STATE(181), + [sym__symbol_fallback] = STATE(181), [aux_sym__text] = STATE(153), - [aux_sym__inline_repeat1] = STATE(117), + [aux_sym__inline_repeat1] = STATE(114), [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(423), - [anon_sym__] = ACTIONS(531), - [aux_sym_emphasis_end_token1] = ACTIONS(84), - [anon_sym_LBRACE_STAR] = ACTIONS(429), - [anon_sym_STAR] = ACTIONS(432), - [anon_sym_BSLASH] = ACTIONS(435), - [sym_quotation_marks] = ACTIONS(438), - [sym_ellipsis] = ACTIONS(438), - [sym_em_dash] = ACTIONS(438), - [sym_en_dash] = ACTIONS(441), - [sym_backslash_escape] = ACTIONS(441), - [anon_sym_LT] = ACTIONS(444), - [anon_sym_LBRACE_EQ] = ACTIONS(447), - [anon_sym_LBRACE_PLUS] = ACTIONS(450), - [anon_sym_LBRACE_DASH] = ACTIONS(453), - [sym_symbol] = ACTIONS(438), - [anon_sym_LBRACE_CARET] = ACTIONS(456), - [anon_sym_CARET] = ACTIONS(456), - [anon_sym_LBRACE_TILDE] = ACTIONS(459), - [anon_sym_TILDE] = ACTIONS(459), - [anon_sym_LBRACK_CARET] = ACTIONS(462), - [anon_sym_BANG_LBRACK] = ACTIONS(465), - [anon_sym_LBRACK] = ACTIONS(468), - [anon_sym_LBRACE2] = ACTIONS(441), - [anon_sym_DOLLAR] = ACTIONS(471), - [anon_sym_TODO] = ACTIONS(474), - [anon_sym_WIP] = ACTIONS(474), - [anon_sym_NOTE] = ACTIONS(477), - [anon_sym_INFO] = ACTIONS(477), - [anon_sym_XXX] = ACTIONS(477), - [sym_fixme] = ACTIONS(438), - [anon_sym_PIPE] = ACTIONS(438), - [sym__whitespace1] = ACTIONS(534), - [sym__newline] = ACTIONS(483), - [aux_sym__text_token1] = ACTIONS(486), - [sym__verbatim_begin] = ACTIONS(489), + [anon_sym_LBRACE_] = ACTIONS(420), + [anon_sym__] = ACTIONS(423), + [anon_sym_LBRACE_STAR] = ACTIONS(426), + [anon_sym_STAR] = ACTIONS(429), + [anon_sym_BSLASH] = ACTIONS(432), + [sym_quotation_marks] = ACTIONS(435), + [sym_ellipsis] = ACTIONS(435), + [sym_em_dash] = ACTIONS(435), + [sym_en_dash] = ACTIONS(438), + [sym_backslash_escape] = ACTIONS(438), + [anon_sym_LT] = ACTIONS(441), + [anon_sym_LBRACE_EQ] = ACTIONS(444), + [anon_sym_LBRACE_PLUS] = ACTIONS(447), + [anon_sym_LBRACE_DASH] = ACTIONS(450), + [sym_symbol] = ACTIONS(435), + [anon_sym_LBRACE_CARET] = ACTIONS(453), + [anon_sym_CARET] = ACTIONS(453), + [anon_sym_LBRACE_TILDE] = ACTIONS(456), + [anon_sym_TILDE] = ACTIONS(456), + [anon_sym_LBRACK_CARET] = ACTIONS(459), + [anon_sym_BANG_LBRACK] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE2] = ACTIONS(438), + [anon_sym_DOLLAR] = ACTIONS(468), + [anon_sym_TODO] = ACTIONS(471), + [anon_sym_WIP] = ACTIONS(471), + [anon_sym_NOTE] = ACTIONS(474), + [anon_sym_INFO] = ACTIONS(474), + [anon_sym_XXX] = ACTIONS(474), + [sym_fixme] = ACTIONS(435), + [anon_sym_PIPE] = ACTIONS(435), + [sym__whitespace1] = ACTIONS(477), + [sym__newline] = ACTIONS(480), + [aux_sym__text_token1] = ACTIONS(483), + [sym__verbatim_begin] = ACTIONS(486), + [sym_emphasis_end] = ACTIONS(93), }, [57] = { [sym__inline] = STATE(783), - [sym__element] = STATE(79), - [sym_emphasis] = STATE(172), - [sym_emphasis_begin] = STATE(1015), - [sym_strong] = STATE(172), - [sym_strong_begin] = STATE(125), - [sym__hard_line_break] = STATE(172), - [sym_hard_line_break] = STATE(172), - [sym__smart_punctuation] = STATE(172), - [sym_autolink] = STATE(172), - [sym_highlighted] = STATE(172), - [sym_insert] = STATE(172), - [sym_delete] = STATE(172), - [sym_superscript] = STATE(172), - [sym_subscript] = STATE(172), - [sym_footnote_reference] = STATE(172), - [sym__image] = STATE(172), - [sym_full_reference_image] = STATE(172), - [sym_collapsed_reference_image] = STATE(172), - [sym_inline_image] = STATE(172), - [sym__image_description] = STATE(711), - [sym__link] = STATE(172), - [sym_full_reference_link] = STATE(172), - [sym_collapsed_reference_link] = STATE(172), - [sym_inline_link] = STATE(172), - [sym_link_text] = STATE(712), - [sym__comment_with_spaces] = STATE(172), - [sym_span] = STATE(172), - [sym_raw_inline] = STATE(172), - [sym_math] = STATE(172), - [sym_verbatim] = STATE(172), - [sym__todo_highlights] = STATE(172), - [sym_todo] = STATE(172), - [sym_note] = STATE(172), - [sym__symbol_fallback] = STATE(172), + [sym__element] = STATE(102), + [sym_emphasis] = STATE(194), + [sym_emphasis_begin] = STATE(1003), + [sym_strong] = STATE(194), + [sym_strong_begin] = STATE(113), + [sym__hard_line_break] = STATE(194), + [sym_hard_line_break] = STATE(194), + [sym__smart_punctuation] = STATE(194), + [sym_autolink] = STATE(194), + [sym_highlighted] = STATE(194), + [sym_insert] = STATE(194), + [sym_delete] = STATE(194), + [sym_superscript] = STATE(194), + [sym_subscript] = STATE(194), + [sym_footnote_reference] = STATE(194), + [sym__image] = STATE(194), + [sym_full_reference_image] = STATE(194), + [sym_collapsed_reference_image] = STATE(194), + [sym_inline_image] = STATE(194), + [sym__image_description] = STATE(696), + [sym__link] = STATE(194), + [sym_full_reference_link] = STATE(194), + [sym_collapsed_reference_link] = STATE(194), + [sym_inline_link] = STATE(194), + [sym_link_text] = STATE(695), + [sym__comment_with_spaces] = STATE(194), + [sym_span] = STATE(194), + [sym_raw_inline] = STATE(194), + [sym_math] = STATE(194), + [sym_verbatim] = STATE(194), + [sym__todo_highlights] = STATE(194), + [sym_todo] = STATE(194), + [sym_note] = STATE(194), + [sym__symbol_fallback] = STATE(194), [aux_sym__text] = STATE(170), - [aux_sym__inline_repeat1] = STATE(79), + [aux_sym__inline_repeat1] = STATE(102), [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(354), - [anon_sym__] = ACTIONS(537), - [aux_sym_emphasis_end_token1] = ACTIONS(84), - [anon_sym_LBRACE_STAR] = ACTIONS(360), - [anon_sym_STAR] = ACTIONS(363), - [anon_sym_BSLASH] = ACTIONS(366), - [sym_quotation_marks] = ACTIONS(369), - [sym_ellipsis] = ACTIONS(369), - [sym_em_dash] = ACTIONS(369), - [sym_en_dash] = ACTIONS(372), - [sym_backslash_escape] = ACTIONS(372), - [anon_sym_LT] = ACTIONS(375), - [anon_sym_LBRACE_EQ] = ACTIONS(378), - [anon_sym_LBRACE_PLUS] = ACTIONS(381), - [anon_sym_LBRACE_DASH] = ACTIONS(384), - [sym_symbol] = ACTIONS(369), - [anon_sym_LBRACE_CARET] = ACTIONS(387), - [anon_sym_CARET] = ACTIONS(387), - [anon_sym_LBRACE_TILDE] = ACTIONS(390), - [anon_sym_TILDE] = ACTIONS(390), - [anon_sym_LBRACK_CARET] = ACTIONS(393), - [anon_sym_BANG_LBRACK] = ACTIONS(396), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_LBRACE2] = ACTIONS(372), - [anon_sym_DOLLAR] = ACTIONS(402), - [anon_sym_TODO] = ACTIONS(405), - [anon_sym_WIP] = ACTIONS(405), - [anon_sym_NOTE] = ACTIONS(408), - [anon_sym_INFO] = ACTIONS(408), - [anon_sym_XXX] = ACTIONS(408), - [sym_fixme] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(369), - [sym__whitespace1] = ACTIONS(540), - [sym__newline] = ACTIONS(414), - [aux_sym__text_token1] = ACTIONS(417), - [sym__verbatim_begin] = ACTIONS(420), + [anon_sym_LBRACE_] = ACTIONS(351), + [anon_sym__] = ACTIONS(354), + [anon_sym_LBRACE_STAR] = ACTIONS(357), + [anon_sym_STAR] = ACTIONS(360), + [anon_sym_BSLASH] = ACTIONS(363), + [sym_quotation_marks] = ACTIONS(366), + [sym_ellipsis] = ACTIONS(366), + [sym_em_dash] = ACTIONS(366), + [sym_en_dash] = ACTIONS(369), + [sym_backslash_escape] = ACTIONS(369), + [anon_sym_LT] = ACTIONS(372), + [anon_sym_LBRACE_EQ] = ACTIONS(375), + [anon_sym_LBRACE_PLUS] = ACTIONS(378), + [anon_sym_LBRACE_DASH] = ACTIONS(381), + [sym_symbol] = ACTIONS(366), + [anon_sym_LBRACE_CARET] = ACTIONS(384), + [anon_sym_CARET] = ACTIONS(384), + [anon_sym_LBRACE_TILDE] = ACTIONS(387), + [anon_sym_TILDE] = ACTIONS(387), + [anon_sym_LBRACK_CARET] = ACTIONS(390), + [anon_sym_BANG_LBRACK] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(396), + [anon_sym_LBRACE2] = ACTIONS(369), + [anon_sym_DOLLAR] = ACTIONS(399), + [anon_sym_TODO] = ACTIONS(402), + [anon_sym_WIP] = ACTIONS(402), + [anon_sym_NOTE] = ACTIONS(405), + [anon_sym_INFO] = ACTIONS(405), + [anon_sym_XXX] = ACTIONS(405), + [sym_fixme] = ACTIONS(366), + [anon_sym_PIPE] = ACTIONS(366), + [sym__whitespace1] = ACTIONS(408), + [sym__newline] = ACTIONS(411), + [aux_sym__text_token1] = ACTIONS(414), + [sym__verbatim_begin] = ACTIONS(417), + [sym_emphasis_end] = ACTIONS(93), }, [58] = { - [sym__inline] = STATE(831), - [sym__element] = STATE(83), - [sym_emphasis] = STATE(211), - [sym_emphasis_begin] = STATE(1014), - [sym_strong] = STATE(211), + [sym__inline] = STATE(838), + [sym__element] = STATE(88), + [sym_emphasis] = STATE(209), + [sym_emphasis_begin] = STATE(1002), + [sym_strong] = STATE(209), [sym_strong_begin] = STATE(121), - [sym__hard_line_break] = STATE(211), - [sym_hard_line_break] = STATE(211), - [sym__smart_punctuation] = STATE(211), - [sym_autolink] = STATE(211), - [sym_highlighted] = STATE(211), - [sym_insert] = STATE(211), - [sym_delete] = STATE(211), - [sym_superscript] = STATE(211), - [sym_subscript] = STATE(211), - [sym_footnote_reference] = STATE(211), - [sym__image] = STATE(211), - [sym_full_reference_image] = STATE(211), - [sym_collapsed_reference_image] = STATE(211), - [sym_inline_image] = STATE(211), - [sym__image_description] = STATE(693), - [sym__link] = STATE(211), - [sym_full_reference_link] = STATE(211), - [sym_collapsed_reference_link] = STATE(211), - [sym_inline_link] = STATE(211), - [sym_link_text] = STATE(694), - [sym__comment_with_spaces] = STATE(211), - [sym_span] = STATE(211), - [sym_raw_inline] = STATE(211), - [sym_math] = STATE(211), - [sym_verbatim] = STATE(211), - [sym__todo_highlights] = STATE(211), - [sym_todo] = STATE(211), - [sym_note] = STATE(211), - [sym__symbol_fallback] = STATE(211), - [aux_sym__text] = STATE(137), - [aux_sym__inline_repeat1] = STATE(83), + [sym__hard_line_break] = STATE(209), + [sym_hard_line_break] = STATE(209), + [sym__smart_punctuation] = STATE(209), + [sym_autolink] = STATE(209), + [sym_highlighted] = STATE(209), + [sym_insert] = STATE(209), + [sym_delete] = STATE(209), + [sym_superscript] = STATE(209), + [sym_subscript] = STATE(209), + [sym_footnote_reference] = STATE(209), + [sym__image] = STATE(209), + [sym_full_reference_image] = STATE(209), + [sym_collapsed_reference_image] = STATE(209), + [sym_inline_image] = STATE(209), + [sym__image_description] = STATE(706), + [sym__link] = STATE(209), + [sym_full_reference_link] = STATE(209), + [sym_collapsed_reference_link] = STATE(209), + [sym_inline_link] = STATE(209), + [sym_link_text] = STATE(707), + [sym__comment_with_spaces] = STATE(209), + [sym_span] = STATE(209), + [sym_raw_inline] = STATE(209), + [sym_math] = STATE(209), + [sym_verbatim] = STATE(209), + [sym__todo_highlights] = STATE(209), + [sym_todo] = STATE(209), + [sym_note] = STATE(209), + [sym__symbol_fallback] = STATE(209), + [aux_sym__text] = STATE(150), + [aux_sym__inline_repeat1] = STATE(88), [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(285), - [anon_sym__] = ACTIONS(543), - [aux_sym_emphasis_end_token1] = ACTIONS(84), - [anon_sym_LBRACE_STAR] = ACTIONS(291), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_BSLASH] = ACTIONS(297), - [sym_quotation_marks] = ACTIONS(300), - [sym_ellipsis] = ACTIONS(300), - [sym_em_dash] = ACTIONS(300), - [sym_en_dash] = ACTIONS(303), - [sym_backslash_escape] = ACTIONS(303), - [anon_sym_LT] = ACTIONS(306), - [anon_sym_LBRACE_EQ] = ACTIONS(309), - [anon_sym_LBRACE_PLUS] = ACTIONS(312), - [anon_sym_LBRACE_DASH] = ACTIONS(315), - [sym_symbol] = ACTIONS(300), - [anon_sym_LBRACE_CARET] = ACTIONS(318), - [anon_sym_CARET] = ACTIONS(318), - [anon_sym_LBRACE_TILDE] = ACTIONS(321), - [anon_sym_TILDE] = ACTIONS(321), - [anon_sym_LBRACK_CARET] = ACTIONS(324), - [anon_sym_BANG_LBRACK] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(330), - [anon_sym_LBRACE2] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(333), - [anon_sym_TODO] = ACTIONS(336), - [anon_sym_WIP] = ACTIONS(336), - [anon_sym_NOTE] = ACTIONS(339), - [anon_sym_INFO] = ACTIONS(339), - [anon_sym_XXX] = ACTIONS(339), - [sym_fixme] = ACTIONS(300), - [anon_sym_PIPE] = ACTIONS(300), - [sym__whitespace1] = ACTIONS(546), - [sym__newline] = ACTIONS(345), - [aux_sym__text_token1] = ACTIONS(348), - [sym__verbatim_begin] = ACTIONS(351), + [anon_sym_LBRACE_] = ACTIONS(282), + [anon_sym__] = ACTIONS(285), + [anon_sym_LBRACE_STAR] = ACTIONS(288), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_BSLASH] = ACTIONS(294), + [sym_quotation_marks] = ACTIONS(297), + [sym_ellipsis] = ACTIONS(297), + [sym_em_dash] = ACTIONS(297), + [sym_en_dash] = ACTIONS(300), + [sym_backslash_escape] = ACTIONS(300), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACE_EQ] = ACTIONS(306), + [anon_sym_LBRACE_PLUS] = ACTIONS(309), + [anon_sym_LBRACE_DASH] = ACTIONS(312), + [sym_symbol] = ACTIONS(297), + [anon_sym_LBRACE_CARET] = ACTIONS(315), + [anon_sym_CARET] = ACTIONS(315), + [anon_sym_LBRACE_TILDE] = ACTIONS(318), + [anon_sym_TILDE] = ACTIONS(318), + [anon_sym_LBRACK_CARET] = ACTIONS(321), + [anon_sym_BANG_LBRACK] = ACTIONS(324), + [anon_sym_LBRACK] = ACTIONS(327), + [anon_sym_LBRACE2] = ACTIONS(300), + [anon_sym_DOLLAR] = ACTIONS(330), + [anon_sym_TODO] = ACTIONS(333), + [anon_sym_WIP] = ACTIONS(333), + [anon_sym_NOTE] = ACTIONS(336), + [anon_sym_INFO] = ACTIONS(336), + [anon_sym_XXX] = ACTIONS(336), + [sym_fixme] = ACTIONS(297), + [anon_sym_PIPE] = ACTIONS(297), + [sym__whitespace1] = ACTIONS(339), + [sym__newline] = ACTIONS(342), + [aux_sym__text_token1] = ACTIONS(345), + [sym__verbatim_begin] = ACTIONS(348), + [sym_emphasis_end] = ACTIONS(93), }, [59] = { - [sym__inline] = STATE(830), - [sym__element] = STATE(87), - [sym_emphasis] = STATE(176), - [sym_emphasis_begin] = STATE(1013), - [sym_strong] = STATE(176), - [sym_strong_begin] = STATE(97), - [sym__hard_line_break] = STATE(176), - [sym_hard_line_break] = STATE(176), - [sym__smart_punctuation] = STATE(176), - [sym_autolink] = STATE(176), - [sym_highlighted] = STATE(176), - [sym_insert] = STATE(176), - [sym_delete] = STATE(176), - [sym_superscript] = STATE(176), - [sym_subscript] = STATE(176), - [sym_footnote_reference] = STATE(176), - [sym__image] = STATE(176), - [sym_full_reference_image] = STATE(176), - [sym_collapsed_reference_image] = STATE(176), - [sym_inline_image] = STATE(176), - [sym__image_description] = STATE(690), - [sym__link] = STATE(176), - [sym_full_reference_link] = STATE(176), - [sym_collapsed_reference_link] = STATE(176), - [sym_inline_link] = STATE(176), - [sym_link_text] = STATE(691), - [sym__comment_with_spaces] = STATE(176), - [sym_span] = STATE(176), - [sym_raw_inline] = STATE(176), - [sym_math] = STATE(176), - [sym_verbatim] = STATE(176), - [sym__todo_highlights] = STATE(176), - [sym_todo] = STATE(176), - [sym_note] = STATE(176), - [sym__symbol_fallback] = STATE(176), - [aux_sym__text] = STATE(155), - [aux_sym__inline_repeat1] = STATE(87), + [sym__inline] = STATE(837), + [sym__element] = STATE(91), + [sym_emphasis] = STATE(174), + [sym_emphasis_begin] = STATE(1001), + [sym_strong] = STATE(174), + [sym_strong_begin] = STATE(126), + [sym__hard_line_break] = STATE(174), + [sym_hard_line_break] = STATE(174), + [sym__smart_punctuation] = STATE(174), + [sym_autolink] = STATE(174), + [sym_highlighted] = STATE(174), + [sym_insert] = STATE(174), + [sym_delete] = STATE(174), + [sym_superscript] = STATE(174), + [sym_subscript] = STATE(174), + [sym_footnote_reference] = STATE(174), + [sym__image] = STATE(174), + [sym_full_reference_image] = STATE(174), + [sym_collapsed_reference_image] = STATE(174), + [sym_inline_image] = STATE(174), + [sym__image_description] = STATE(709), + [sym__link] = STATE(174), + [sym_full_reference_link] = STATE(174), + [sym_collapsed_reference_link] = STATE(174), + [sym_inline_link] = STATE(174), + [sym_link_text] = STATE(710), + [sym__comment_with_spaces] = STATE(174), + [sym_span] = STATE(174), + [sym_raw_inline] = STATE(174), + [sym_math] = STATE(174), + [sym_verbatim] = STATE(174), + [sym__todo_highlights] = STATE(174), + [sym_todo] = STATE(174), + [sym_note] = STATE(174), + [sym__symbol_fallback] = STATE(174), + [aux_sym__text] = STATE(148), + [aux_sym__inline_repeat1] = STATE(91), [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(210), - [anon_sym__] = ACTIONS(549), - [aux_sym_emphasis_end_token1] = ACTIONS(84), - [anon_sym_LBRACE_STAR] = ACTIONS(216), - [anon_sym_STAR] = ACTIONS(219), - [anon_sym_BSLASH] = ACTIONS(222), - [sym_quotation_marks] = ACTIONS(225), - [sym_ellipsis] = ACTIONS(225), - [sym_em_dash] = ACTIONS(225), - [sym_en_dash] = ACTIONS(228), - [sym_backslash_escape] = ACTIONS(228), - [anon_sym_LT] = ACTIONS(231), - [anon_sym_LBRACE_EQ] = ACTIONS(234), - [anon_sym_LBRACE_PLUS] = ACTIONS(237), - [anon_sym_LBRACE_DASH] = ACTIONS(240), - [sym_symbol] = ACTIONS(225), - [anon_sym_LBRACE_CARET] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(243), - [anon_sym_LBRACE_TILDE] = ACTIONS(246), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_LBRACK_CARET] = ACTIONS(249), - [anon_sym_BANG_LBRACK] = ACTIONS(252), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_LBRACE2] = ACTIONS(228), - [anon_sym_DOLLAR] = ACTIONS(258), - [anon_sym_TODO] = ACTIONS(261), - [anon_sym_WIP] = ACTIONS(261), - [anon_sym_NOTE] = ACTIONS(264), - [anon_sym_INFO] = ACTIONS(264), - [anon_sym_XXX] = ACTIONS(264), - [sym_fixme] = ACTIONS(225), - [anon_sym_PIPE] = ACTIONS(225), - [sym__whitespace1] = ACTIONS(528), - [sym__newline] = ACTIONS(270), - [aux_sym__text_token1] = ACTIONS(273), - [sym__verbatim_begin] = ACTIONS(276), + [anon_sym_LBRACE_] = ACTIONS(213), + [anon_sym__] = ACTIONS(216), + [anon_sym_LBRACE_STAR] = ACTIONS(219), + [anon_sym_STAR] = ACTIONS(222), + [anon_sym_BSLASH] = ACTIONS(225), + [sym_quotation_marks] = ACTIONS(228), + [sym_ellipsis] = ACTIONS(228), + [sym_em_dash] = ACTIONS(228), + [sym_en_dash] = ACTIONS(231), + [sym_backslash_escape] = ACTIONS(231), + [anon_sym_LT] = ACTIONS(234), + [anon_sym_LBRACE_EQ] = ACTIONS(237), + [anon_sym_LBRACE_PLUS] = ACTIONS(240), + [anon_sym_LBRACE_DASH] = ACTIONS(243), + [sym_symbol] = ACTIONS(228), + [anon_sym_LBRACE_CARET] = ACTIONS(246), + [anon_sym_CARET] = ACTIONS(246), + [anon_sym_LBRACE_TILDE] = ACTIONS(249), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_LBRACK_CARET] = ACTIONS(252), + [anon_sym_BANG_LBRACK] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(258), + [anon_sym_LBRACE2] = ACTIONS(231), + [anon_sym_DOLLAR] = ACTIONS(261), + [anon_sym_TODO] = ACTIONS(264), + [anon_sym_WIP] = ACTIONS(264), + [anon_sym_NOTE] = ACTIONS(267), + [anon_sym_INFO] = ACTIONS(267), + [anon_sym_XXX] = ACTIONS(267), + [sym_fixme] = ACTIONS(228), + [anon_sym_PIPE] = ACTIONS(228), + [sym__whitespace1] = ACTIONS(270), + [sym__newline] = ACTIONS(273), + [aux_sym__text_token1] = ACTIONS(276), + [sym__verbatim_begin] = ACTIONS(279), + [sym_emphasis_end] = ACTIONS(93), }, [60] = { - [sym__inline] = STATE(829), - [sym__element] = STATE(95), - [sym_emphasis] = STATE(215), - [sym_emphasis_begin] = STATE(1012), - [sym_strong] = STATE(215), - [sym_strong_begin] = STATE(128), - [sym__hard_line_break] = STATE(215), - [sym_hard_line_break] = STATE(215), - [sym__smart_punctuation] = STATE(215), - [sym_autolink] = STATE(215), - [sym_highlighted] = STATE(215), - [sym_insert] = STATE(215), - [sym_delete] = STATE(215), - [sym_superscript] = STATE(215), - [sym_subscript] = STATE(215), - [sym_footnote_reference] = STATE(215), - [sym__image] = STATE(215), - [sym_full_reference_image] = STATE(215), - [sym_collapsed_reference_image] = STATE(215), - [sym_inline_image] = STATE(215), - [sym__image_description] = STATE(696), - [sym__link] = STATE(215), - [sym_full_reference_link] = STATE(215), - [sym_collapsed_reference_link] = STATE(215), - [sym_inline_link] = STATE(215), - [sym_link_text] = STATE(705), - [sym__comment_with_spaces] = STATE(215), - [sym_span] = STATE(215), - [sym_raw_inline] = STATE(215), - [sym_math] = STATE(215), - [sym_verbatim] = STATE(215), - [sym__todo_highlights] = STATE(215), - [sym_todo] = STATE(215), - [sym_note] = STATE(215), - [sym__symbol_fallback] = STATE(215), - [aux_sym__text] = STATE(141), - [aux_sym__inline_repeat1] = STATE(95), + [sym__inline] = STATE(836), + [sym__element] = STATE(115), + [sym_emphasis] = STATE(205), + [sym_emphasis_begin] = STATE(1000), + [sym_strong] = STATE(205), + [sym_strong_begin] = STATE(129), + [sym__hard_line_break] = STATE(205), + [sym_hard_line_break] = STATE(205), + [sym__smart_punctuation] = STATE(205), + [sym_autolink] = STATE(205), + [sym_highlighted] = STATE(205), + [sym_insert] = STATE(205), + [sym_delete] = STATE(205), + [sym_superscript] = STATE(205), + [sym_subscript] = STATE(205), + [sym_footnote_reference] = STATE(205), + [sym__image] = STATE(205), + [sym_full_reference_image] = STATE(205), + [sym_collapsed_reference_image] = STATE(205), + [sym_inline_image] = STATE(205), + [sym__image_description] = STATE(705), + [sym__link] = STATE(205), + [sym_full_reference_link] = STATE(205), + [sym_collapsed_reference_link] = STATE(205), + [sym_inline_link] = STATE(205), + [sym_link_text] = STATE(703), + [sym__comment_with_spaces] = STATE(205), + [sym_span] = STATE(205), + [sym_raw_inline] = STATE(205), + [sym_math] = STATE(205), + [sym_verbatim] = STATE(205), + [sym__todo_highlights] = STATE(205), + [sym_todo] = STATE(205), + [sym_note] = STATE(205), + [sym__symbol_fallback] = STATE(205), + [aux_sym__text] = STATE(136), + [aux_sym__inline_repeat1] = STATE(115), [anon_sym_LBRACE] = ACTIONS(49), [anon_sym_LBRACE_] = ACTIONS(141), - [anon_sym__] = ACTIONS(552), - [aux_sym_emphasis_end_token1] = ACTIONS(84), + [anon_sym__] = ACTIONS(144), [anon_sym_LBRACE_STAR] = ACTIONS(147), [anon_sym_STAR] = ACTIONS(150), [anon_sym_BSLASH] = ACTIONS(153), @@ -12933,371 +12441,371 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_symbol] = ACTIONS(156), [anon_sym_LBRACE_CARET] = ACTIONS(174), [anon_sym_CARET] = ACTIONS(174), - [anon_sym_LBRACE_TILDE] = ACTIONS(177), - [anon_sym_TILDE] = ACTIONS(177), - [anon_sym_LBRACK_CARET] = ACTIONS(180), - [anon_sym_BANG_LBRACK] = ACTIONS(183), - [anon_sym_LBRACK] = ACTIONS(186), + [anon_sym_LBRACE_TILDE] = ACTIONS(180), + [anon_sym_TILDE] = ACTIONS(180), + [anon_sym_LBRACK_CARET] = ACTIONS(183), + [anon_sym_BANG_LBRACK] = ACTIONS(186), + [anon_sym_LBRACK] = ACTIONS(189), [anon_sym_LBRACE2] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(189), - [anon_sym_TODO] = ACTIONS(192), - [anon_sym_WIP] = ACTIONS(192), - [anon_sym_NOTE] = ACTIONS(195), - [anon_sym_INFO] = ACTIONS(195), - [anon_sym_XXX] = ACTIONS(195), + [anon_sym_DOLLAR] = ACTIONS(192), + [anon_sym_TODO] = ACTIONS(195), + [anon_sym_WIP] = ACTIONS(195), + [anon_sym_NOTE] = ACTIONS(198), + [anon_sym_INFO] = ACTIONS(198), + [anon_sym_XXX] = ACTIONS(198), [sym_fixme] = ACTIONS(156), [anon_sym_PIPE] = ACTIONS(156), - [sym__whitespace1] = ACTIONS(522), - [sym__newline] = ACTIONS(201), - [aux_sym__text_token1] = ACTIONS(204), - [sym__verbatim_begin] = ACTIONS(207), + [sym__whitespace1] = ACTIONS(201), + [sym__newline] = ACTIONS(204), + [aux_sym__text_token1] = ACTIONS(207), + [sym__verbatim_begin] = ACTIONS(210), + [sym_emphasis_end] = ACTIONS(93), }, [61] = { - [sym__inline] = STATE(932), - [sym__element] = STATE(118), - [sym_emphasis] = STATE(204), - [sym_emphasis_begin] = STATE(1017), - [sym_strong] = STATE(204), - [sym_strong_begin] = STATE(114), - [sym__hard_line_break] = STATE(204), - [sym_hard_line_break] = STATE(204), - [sym__smart_punctuation] = STATE(204), - [sym_autolink] = STATE(204), - [sym_highlighted] = STATE(204), - [sym_insert] = STATE(204), - [sym_delete] = STATE(204), - [sym_superscript] = STATE(204), - [sym_subscript] = STATE(204), - [sym_footnote_reference] = STATE(204), - [sym__image] = STATE(204), - [sym_full_reference_image] = STATE(204), - [sym_collapsed_reference_image] = STATE(204), - [sym_inline_image] = STATE(204), - [sym__image_description] = STATE(714), - [sym__link] = STATE(204), - [sym_full_reference_link] = STATE(204), - [sym_collapsed_reference_link] = STATE(204), - [sym_inline_link] = STATE(204), - [sym_link_text] = STATE(715), - [sym__comment_with_spaces] = STATE(204), - [sym_span] = STATE(204), - [sym_raw_inline] = STATE(204), - [sym_math] = STATE(204), - [sym_verbatim] = STATE(204), - [sym__todo_highlights] = STATE(204), - [sym_todo] = STATE(204), - [sym_note] = STATE(204), - [sym__symbol_fallback] = STATE(204), - [aux_sym__text] = STATE(149), - [aux_sym__inline_repeat1] = STATE(118), + [sym__inline] = STATE(817), + [sym__element] = STATE(91), + [sym_emphasis] = STATE(174), + [sym_emphasis_begin] = STATE(1001), + [sym_strong] = STATE(174), + [sym_strong_begin] = STATE(126), + [sym__hard_line_break] = STATE(174), + [sym_hard_line_break] = STATE(174), + [sym__smart_punctuation] = STATE(174), + [sym_autolink] = STATE(174), + [sym_highlighted] = STATE(174), + [sym_insert] = STATE(174), + [sym_delete] = STATE(174), + [sym_superscript] = STATE(174), + [sym_subscript] = STATE(174), + [sym_footnote_reference] = STATE(174), + [sym__image] = STATE(174), + [sym_full_reference_image] = STATE(174), + [sym_collapsed_reference_image] = STATE(174), + [sym_inline_image] = STATE(174), + [sym__image_description] = STATE(709), + [sym__link] = STATE(174), + [sym_full_reference_link] = STATE(174), + [sym_collapsed_reference_link] = STATE(174), + [sym_inline_link] = STATE(174), + [sym_link_text] = STATE(710), + [sym__comment_with_spaces] = STATE(174), + [sym_span] = STATE(174), + [sym_raw_inline] = STATE(174), + [sym_math] = STATE(174), + [sym_verbatim] = STATE(174), + [sym__todo_highlights] = STATE(174), + [sym_todo] = STATE(174), + [sym_note] = STATE(174), + [sym__symbol_fallback] = STATE(174), + [aux_sym__text] = STATE(148), + [aux_sym__inline_repeat1] = STATE(91), [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(51), - [anon_sym__] = ACTIONS(54), - [anon_sym_LBRACE_STAR] = ACTIONS(57), - [anon_sym_STAR] = ACTIONS(60), - [anon_sym_BSLASH] = ACTIONS(63), - [sym_quotation_marks] = ACTIONS(66), - [sym_ellipsis] = ACTIONS(66), - [sym_em_dash] = ACTIONS(66), - [sym_en_dash] = ACTIONS(69), - [sym_backslash_escape] = ACTIONS(69), - [anon_sym_LT] = ACTIONS(72), - [anon_sym_LBRACE_EQ] = ACTIONS(75), - [anon_sym_LBRACE_PLUS] = ACTIONS(78), - [anon_sym_LBRACE_DASH] = ACTIONS(81), - [anon_sym_DASH_RBRACE] = ACTIONS(84), - [sym_symbol] = ACTIONS(66), - [anon_sym_LBRACE_CARET] = ACTIONS(86), - [anon_sym_CARET] = ACTIONS(86), - [anon_sym_LBRACE_TILDE] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_LBRACK_CARET] = ACTIONS(92), - [anon_sym_BANG_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK] = ACTIONS(100), - [anon_sym_LBRACE2] = ACTIONS(69), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_TODO] = ACTIONS(106), - [anon_sym_WIP] = ACTIONS(106), - [anon_sym_NOTE] = ACTIONS(109), - [anon_sym_INFO] = ACTIONS(109), - [anon_sym_XXX] = ACTIONS(109), - [sym_fixme] = ACTIONS(66), - [anon_sym_PIPE] = ACTIONS(66), - [sym__whitespace1] = ACTIONS(112), - [sym__newline] = ACTIONS(115), - [aux_sym__text_token1] = ACTIONS(118), - [sym__verbatim_begin] = ACTIONS(121), + [anon_sym_LBRACE_] = ACTIONS(213), + [anon_sym__] = ACTIONS(216), + [anon_sym_LBRACE_STAR] = ACTIONS(219), + [anon_sym_STAR] = ACTIONS(222), + [anon_sym_BSLASH] = ACTIONS(225), + [sym_quotation_marks] = ACTIONS(228), + [sym_ellipsis] = ACTIONS(228), + [sym_em_dash] = ACTIONS(228), + [sym_en_dash] = ACTIONS(231), + [sym_backslash_escape] = ACTIONS(231), + [anon_sym_LT] = ACTIONS(234), + [anon_sym_LBRACE_EQ] = ACTIONS(237), + [anon_sym_LBRACE_PLUS] = ACTIONS(240), + [anon_sym_LBRACE_DASH] = ACTIONS(243), + [anon_sym_DASH_RBRACE] = ACTIONS(93), + [sym_symbol] = ACTIONS(228), + [anon_sym_LBRACE_CARET] = ACTIONS(246), + [anon_sym_CARET] = ACTIONS(246), + [anon_sym_LBRACE_TILDE] = ACTIONS(249), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_LBRACK_CARET] = ACTIONS(252), + [anon_sym_BANG_LBRACK] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(258), + [anon_sym_LBRACE2] = ACTIONS(231), + [anon_sym_DOLLAR] = ACTIONS(261), + [anon_sym_TODO] = ACTIONS(264), + [anon_sym_WIP] = ACTIONS(264), + [anon_sym_NOTE] = ACTIONS(267), + [anon_sym_INFO] = ACTIONS(267), + [anon_sym_XXX] = ACTIONS(267), + [sym_fixme] = ACTIONS(228), + [anon_sym_PIPE] = ACTIONS(228), + [sym__whitespace1] = ACTIONS(270), + [sym__newline] = ACTIONS(273), + [aux_sym__text_token1] = ACTIONS(276), + [sym__verbatim_begin] = ACTIONS(279), }, [62] = { - [sym__inline] = STATE(905), - [sym__element] = STATE(95), - [sym_emphasis] = STATE(215), - [sym_emphasis_begin] = STATE(1012), - [sym_strong] = STATE(215), - [sym_strong_begin] = STATE(128), - [sym__hard_line_break] = STATE(215), - [sym_hard_line_break] = STATE(215), - [sym__smart_punctuation] = STATE(215), - [sym_autolink] = STATE(215), - [sym_highlighted] = STATE(215), - [sym_insert] = STATE(215), - [sym_delete] = STATE(215), - [sym_superscript] = STATE(215), - [sym_subscript] = STATE(215), - [sym_footnote_reference] = STATE(215), - [sym__image] = STATE(215), - [sym_full_reference_image] = STATE(215), - [sym_collapsed_reference_image] = STATE(215), - [sym_inline_image] = STATE(215), - [sym__image_description] = STATE(696), - [sym__link] = STATE(215), - [sym_full_reference_link] = STATE(215), - [sym_collapsed_reference_link] = STATE(215), - [sym_inline_link] = STATE(215), - [sym_link_text] = STATE(705), - [sym__comment_with_spaces] = STATE(215), - [sym_span] = STATE(215), - [sym_raw_inline] = STATE(215), - [sym_math] = STATE(215), - [sym_verbatim] = STATE(215), - [sym__todo_highlights] = STATE(215), - [sym_todo] = STATE(215), - [sym_note] = STATE(215), - [sym__symbol_fallback] = STATE(215), - [aux_sym__text] = STATE(141), - [aux_sym__inline_repeat1] = STATE(95), + [sym__inline] = STATE(815), + [sym__element] = STATE(88), + [sym_emphasis] = STATE(209), + [sym_emphasis_begin] = STATE(1002), + [sym_strong] = STATE(209), + [sym_strong_begin] = STATE(121), + [sym__hard_line_break] = STATE(209), + [sym_hard_line_break] = STATE(209), + [sym__smart_punctuation] = STATE(209), + [sym_autolink] = STATE(209), + [sym_highlighted] = STATE(209), + [sym_insert] = STATE(209), + [sym_delete] = STATE(209), + [sym_superscript] = STATE(209), + [sym_subscript] = STATE(209), + [sym_footnote_reference] = STATE(209), + [sym__image] = STATE(209), + [sym_full_reference_image] = STATE(209), + [sym_collapsed_reference_image] = STATE(209), + [sym_inline_image] = STATE(209), + [sym__image_description] = STATE(706), + [sym__link] = STATE(209), + [sym_full_reference_link] = STATE(209), + [sym_collapsed_reference_link] = STATE(209), + [sym_inline_link] = STATE(209), + [sym_link_text] = STATE(707), + [sym__comment_with_spaces] = STATE(209), + [sym_span] = STATE(209), + [sym_raw_inline] = STATE(209), + [sym_math] = STATE(209), + [sym_verbatim] = STATE(209), + [sym__todo_highlights] = STATE(209), + [sym_todo] = STATE(209), + [sym_note] = STATE(209), + [sym__symbol_fallback] = STATE(209), + [aux_sym__text] = STATE(150), + [aux_sym__inline_repeat1] = STATE(88), [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(141), - [anon_sym__] = ACTIONS(144), - [anon_sym_LBRACE_STAR] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(150), - [anon_sym_BSLASH] = ACTIONS(153), - [sym_quotation_marks] = ACTIONS(156), - [sym_ellipsis] = ACTIONS(156), - [sym_em_dash] = ACTIONS(156), - [sym_en_dash] = ACTIONS(159), - [sym_backslash_escape] = ACTIONS(159), - [anon_sym_LT] = ACTIONS(162), - [anon_sym_LBRACE_EQ] = ACTIONS(165), - [anon_sym_LBRACE_PLUS] = ACTIONS(168), - [anon_sym_LBRACE_DASH] = ACTIONS(171), - [anon_sym_DASH_RBRACE] = ACTIONS(84), - [sym_symbol] = ACTIONS(156), - [anon_sym_LBRACE_CARET] = ACTIONS(174), - [anon_sym_CARET] = ACTIONS(174), - [anon_sym_LBRACE_TILDE] = ACTIONS(177), - [anon_sym_TILDE] = ACTIONS(177), - [anon_sym_LBRACK_CARET] = ACTIONS(180), - [anon_sym_BANG_LBRACK] = ACTIONS(183), - [anon_sym_LBRACK] = ACTIONS(186), - [anon_sym_LBRACE2] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(189), - [anon_sym_TODO] = ACTIONS(192), - [anon_sym_WIP] = ACTIONS(192), - [anon_sym_NOTE] = ACTIONS(195), - [anon_sym_INFO] = ACTIONS(195), - [anon_sym_XXX] = ACTIONS(195), - [sym_fixme] = ACTIONS(156), - [anon_sym_PIPE] = ACTIONS(156), - [sym__whitespace1] = ACTIONS(198), - [sym__newline] = ACTIONS(201), - [aux_sym__text_token1] = ACTIONS(204), - [sym__verbatim_begin] = ACTIONS(207), + [anon_sym_LBRACE_] = ACTIONS(282), + [anon_sym__] = ACTIONS(285), + [anon_sym_LBRACE_STAR] = ACTIONS(288), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_BSLASH] = ACTIONS(294), + [sym_quotation_marks] = ACTIONS(297), + [sym_ellipsis] = ACTIONS(297), + [sym_em_dash] = ACTIONS(297), + [sym_en_dash] = ACTIONS(300), + [sym_backslash_escape] = ACTIONS(300), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACE_EQ] = ACTIONS(306), + [anon_sym_LBRACE_PLUS] = ACTIONS(309), + [anon_sym_LBRACE_DASH] = ACTIONS(312), + [anon_sym_DASH_RBRACE] = ACTIONS(93), + [sym_symbol] = ACTIONS(297), + [anon_sym_LBRACE_CARET] = ACTIONS(315), + [anon_sym_CARET] = ACTIONS(315), + [anon_sym_LBRACE_TILDE] = ACTIONS(318), + [anon_sym_TILDE] = ACTIONS(318), + [anon_sym_LBRACK_CARET] = ACTIONS(321), + [anon_sym_BANG_LBRACK] = ACTIONS(324), + [anon_sym_LBRACK] = ACTIONS(327), + [anon_sym_LBRACE2] = ACTIONS(300), + [anon_sym_DOLLAR] = ACTIONS(330), + [anon_sym_TODO] = ACTIONS(333), + [anon_sym_WIP] = ACTIONS(333), + [anon_sym_NOTE] = ACTIONS(336), + [anon_sym_INFO] = ACTIONS(336), + [anon_sym_XXX] = ACTIONS(336), + [sym_fixme] = ACTIONS(297), + [anon_sym_PIPE] = ACTIONS(297), + [sym__whitespace1] = ACTIONS(339), + [sym__newline] = ACTIONS(342), + [aux_sym__text_token1] = ACTIONS(345), + [sym__verbatim_begin] = ACTIONS(348), }, [63] = { - [sym__inline] = STATE(813), - [sym__element] = STATE(83), - [sym_emphasis] = STATE(211), - [sym_emphasis_begin] = STATE(1014), - [sym_strong] = STATE(211), + [sym__inline] = STATE(821), + [sym__element] = STATE(88), + [sym_emphasis] = STATE(209), + [sym_emphasis_begin] = STATE(1002), + [sym_strong] = STATE(209), [sym_strong_begin] = STATE(121), - [sym__hard_line_break] = STATE(211), - [sym_hard_line_break] = STATE(211), - [sym__smart_punctuation] = STATE(211), - [sym_autolink] = STATE(211), - [sym_highlighted] = STATE(211), - [sym_insert] = STATE(211), - [sym_delete] = STATE(211), - [sym_superscript] = STATE(211), - [sym_subscript] = STATE(211), - [sym_footnote_reference] = STATE(211), - [sym__image] = STATE(211), - [sym_full_reference_image] = STATE(211), - [sym_collapsed_reference_image] = STATE(211), - [sym_inline_image] = STATE(211), - [sym__image_description] = STATE(693), - [sym__link] = STATE(211), - [sym_full_reference_link] = STATE(211), - [sym_collapsed_reference_link] = STATE(211), - [sym_inline_link] = STATE(211), - [sym_link_text] = STATE(694), - [sym__comment_with_spaces] = STATE(211), - [sym_span] = STATE(211), - [sym_raw_inline] = STATE(211), - [sym_math] = STATE(211), - [sym_verbatim] = STATE(211), - [sym__todo_highlights] = STATE(211), - [sym_todo] = STATE(211), - [sym_note] = STATE(211), - [sym__symbol_fallback] = STATE(211), - [aux_sym__text] = STATE(137), - [aux_sym__inline_repeat1] = STATE(83), + [sym__hard_line_break] = STATE(209), + [sym_hard_line_break] = STATE(209), + [sym__smart_punctuation] = STATE(209), + [sym_autolink] = STATE(209), + [sym_highlighted] = STATE(209), + [sym_insert] = STATE(209), + [sym_delete] = STATE(209), + [sym_superscript] = STATE(209), + [sym_subscript] = STATE(209), + [sym_footnote_reference] = STATE(209), + [sym__image] = STATE(209), + [sym_full_reference_image] = STATE(209), + [sym_collapsed_reference_image] = STATE(209), + [sym_inline_image] = STATE(209), + [sym__image_description] = STATE(706), + [sym__link] = STATE(209), + [sym_full_reference_link] = STATE(209), + [sym_collapsed_reference_link] = STATE(209), + [sym_inline_link] = STATE(209), + [sym_link_text] = STATE(707), + [sym__comment_with_spaces] = STATE(209), + [sym_span] = STATE(209), + [sym_raw_inline] = STATE(209), + [sym_math] = STATE(209), + [sym_verbatim] = STATE(209), + [sym__todo_highlights] = STATE(209), + [sym_todo] = STATE(209), + [sym_note] = STATE(209), + [sym__symbol_fallback] = STATE(209), + [aux_sym__text] = STATE(150), + [aux_sym__inline_repeat1] = STATE(88), [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(285), - [anon_sym__] = ACTIONS(288), - [anon_sym_LBRACE_STAR] = ACTIONS(291), - [anon_sym_STAR] = ACTIONS(555), - [aux_sym_strong_end_token1] = ACTIONS(84), - [anon_sym_BSLASH] = ACTIONS(297), - [sym_quotation_marks] = ACTIONS(300), - [sym_ellipsis] = ACTIONS(300), - [sym_em_dash] = ACTIONS(300), - [sym_en_dash] = ACTIONS(303), - [sym_backslash_escape] = ACTIONS(303), - [anon_sym_LT] = ACTIONS(306), - [anon_sym_LBRACE_EQ] = ACTIONS(309), - [anon_sym_LBRACE_PLUS] = ACTIONS(312), - [anon_sym_LBRACE_DASH] = ACTIONS(315), - [sym_symbol] = ACTIONS(300), - [anon_sym_LBRACE_CARET] = ACTIONS(318), - [anon_sym_CARET] = ACTIONS(318), - [anon_sym_LBRACE_TILDE] = ACTIONS(321), - [anon_sym_TILDE] = ACTIONS(321), - [anon_sym_LBRACK_CARET] = ACTIONS(324), - [anon_sym_BANG_LBRACK] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(330), - [anon_sym_LBRACE2] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(333), - [anon_sym_TODO] = ACTIONS(336), - [anon_sym_WIP] = ACTIONS(336), - [anon_sym_NOTE] = ACTIONS(339), - [anon_sym_INFO] = ACTIONS(339), - [anon_sym_XXX] = ACTIONS(339), - [sym_fixme] = ACTIONS(300), - [anon_sym_PIPE] = ACTIONS(300), - [sym__whitespace1] = ACTIONS(546), - [sym__newline] = ACTIONS(345), - [aux_sym__text_token1] = ACTIONS(348), - [sym__verbatim_begin] = ACTIONS(351), + [anon_sym_LBRACE_] = ACTIONS(282), + [anon_sym__] = ACTIONS(285), + [anon_sym_LBRACE_STAR] = ACTIONS(288), + [anon_sym_STAR] = ACTIONS(528), + [aux_sym_strong_end_token1] = ACTIONS(93), + [anon_sym_BSLASH] = ACTIONS(294), + [sym_quotation_marks] = ACTIONS(297), + [sym_ellipsis] = ACTIONS(297), + [sym_em_dash] = ACTIONS(297), + [sym_en_dash] = ACTIONS(300), + [sym_backslash_escape] = ACTIONS(300), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACE_EQ] = ACTIONS(306), + [anon_sym_LBRACE_PLUS] = ACTIONS(309), + [anon_sym_LBRACE_DASH] = ACTIONS(312), + [sym_symbol] = ACTIONS(297), + [anon_sym_LBRACE_CARET] = ACTIONS(315), + [anon_sym_CARET] = ACTIONS(315), + [anon_sym_LBRACE_TILDE] = ACTIONS(318), + [anon_sym_TILDE] = ACTIONS(318), + [anon_sym_LBRACK_CARET] = ACTIONS(321), + [anon_sym_BANG_LBRACK] = ACTIONS(324), + [anon_sym_LBRACK] = ACTIONS(327), + [anon_sym_LBRACE2] = ACTIONS(300), + [anon_sym_DOLLAR] = ACTIONS(330), + [anon_sym_TODO] = ACTIONS(333), + [anon_sym_WIP] = ACTIONS(333), + [anon_sym_NOTE] = ACTIONS(336), + [anon_sym_INFO] = ACTIONS(336), + [anon_sym_XXX] = ACTIONS(336), + [sym_fixme] = ACTIONS(297), + [anon_sym_PIPE] = ACTIONS(297), + [sym__whitespace1] = ACTIONS(531), + [sym__newline] = ACTIONS(342), + [aux_sym__text_token1] = ACTIONS(345), + [sym__verbatim_begin] = ACTIONS(348), }, [64] = { - [sym__inline] = STATE(795), - [sym__element] = STATE(117), - [sym_emphasis] = STATE(182), - [sym_emphasis_begin] = STATE(1016), - [sym_strong] = STATE(182), - [sym_strong_begin] = STATE(122), - [sym__hard_line_break] = STATE(182), - [sym_hard_line_break] = STATE(182), - [sym__smart_punctuation] = STATE(182), - [sym_autolink] = STATE(182), - [sym_highlighted] = STATE(182), - [sym_insert] = STATE(182), - [sym_delete] = STATE(182), - [sym_superscript] = STATE(182), - [sym_subscript] = STATE(182), - [sym_footnote_reference] = STATE(182), - [sym__image] = STATE(182), - [sym_full_reference_image] = STATE(182), - [sym_collapsed_reference_image] = STATE(182), - [sym_inline_image] = STATE(182), - [sym__image_description] = STATE(692), - [sym__link] = STATE(182), - [sym_full_reference_link] = STATE(182), - [sym_collapsed_reference_link] = STATE(182), - [sym_inline_link] = STATE(182), - [sym_link_text] = STATE(689), - [sym__comment_with_spaces] = STATE(182), - [sym_span] = STATE(182), - [sym_raw_inline] = STATE(182), - [sym_math] = STATE(182), - [sym_verbatim] = STATE(182), - [sym__todo_highlights] = STATE(182), - [sym_todo] = STATE(182), - [sym_note] = STATE(182), - [sym__symbol_fallback] = STATE(182), + [sym__inline] = STATE(790), + [sym__element] = STATE(114), + [sym_emphasis] = STATE(181), + [sym_emphasis_begin] = STATE(1004), + [sym_strong] = STATE(181), + [sym_strong_begin] = STATE(110), + [sym__hard_line_break] = STATE(181), + [sym_hard_line_break] = STATE(181), + [sym__smart_punctuation] = STATE(181), + [sym_autolink] = STATE(181), + [sym_highlighted] = STATE(181), + [sym_insert] = STATE(181), + [sym_delete] = STATE(181), + [sym_superscript] = STATE(181), + [sym_subscript] = STATE(181), + [sym_footnote_reference] = STATE(181), + [sym__image] = STATE(181), + [sym_full_reference_image] = STATE(181), + [sym_collapsed_reference_image] = STATE(181), + [sym_inline_image] = STATE(181), + [sym__image_description] = STATE(688), + [sym__link] = STATE(181), + [sym_full_reference_link] = STATE(181), + [sym_collapsed_reference_link] = STATE(181), + [sym_inline_link] = STATE(181), + [sym_link_text] = STATE(693), + [sym__comment_with_spaces] = STATE(181), + [sym_span] = STATE(181), + [sym_raw_inline] = STATE(181), + [sym_math] = STATE(181), + [sym_verbatim] = STATE(181), + [sym__todo_highlights] = STATE(181), + [sym_todo] = STATE(181), + [sym_note] = STATE(181), + [sym__symbol_fallback] = STATE(181), [aux_sym__text] = STATE(153), - [aux_sym__inline_repeat1] = STATE(117), + [aux_sym__inline_repeat1] = STATE(114), [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(423), - [anon_sym__] = ACTIONS(426), - [anon_sym_LBRACE_STAR] = ACTIONS(429), - [anon_sym_STAR] = ACTIONS(558), - [aux_sym_strong_end_token1] = ACTIONS(84), - [anon_sym_BSLASH] = ACTIONS(435), - [sym_quotation_marks] = ACTIONS(438), - [sym_ellipsis] = ACTIONS(438), - [sym_em_dash] = ACTIONS(438), - [sym_en_dash] = ACTIONS(441), - [sym_backslash_escape] = ACTIONS(441), - [anon_sym_LT] = ACTIONS(444), - [anon_sym_LBRACE_EQ] = ACTIONS(447), - [anon_sym_LBRACE_PLUS] = ACTIONS(450), - [anon_sym_LBRACE_DASH] = ACTIONS(453), - [sym_symbol] = ACTIONS(438), - [anon_sym_LBRACE_CARET] = ACTIONS(456), - [anon_sym_CARET] = ACTIONS(456), - [anon_sym_LBRACE_TILDE] = ACTIONS(459), - [anon_sym_TILDE] = ACTIONS(459), - [anon_sym_LBRACK_CARET] = ACTIONS(462), - [anon_sym_BANG_LBRACK] = ACTIONS(465), - [anon_sym_LBRACK] = ACTIONS(468), - [anon_sym_LBRACE2] = ACTIONS(441), - [anon_sym_DOLLAR] = ACTIONS(471), - [anon_sym_TODO] = ACTIONS(474), - [anon_sym_WIP] = ACTIONS(474), - [anon_sym_NOTE] = ACTIONS(477), - [anon_sym_INFO] = ACTIONS(477), - [anon_sym_XXX] = ACTIONS(477), - [sym_fixme] = ACTIONS(438), - [anon_sym_PIPE] = ACTIONS(438), - [sym__whitespace1] = ACTIONS(534), - [sym__newline] = ACTIONS(483), - [aux_sym__text_token1] = ACTIONS(486), - [sym__verbatim_begin] = ACTIONS(489), + [anon_sym_LBRACE_] = ACTIONS(420), + [anon_sym__] = ACTIONS(423), + [anon_sym_LBRACE_STAR] = ACTIONS(426), + [anon_sym_STAR] = ACTIONS(534), + [aux_sym_strong_end_token1] = ACTIONS(93), + [anon_sym_BSLASH] = ACTIONS(432), + [sym_quotation_marks] = ACTIONS(435), + [sym_ellipsis] = ACTIONS(435), + [sym_em_dash] = ACTIONS(435), + [sym_en_dash] = ACTIONS(438), + [sym_backslash_escape] = ACTIONS(438), + [anon_sym_LT] = ACTIONS(441), + [anon_sym_LBRACE_EQ] = ACTIONS(444), + [anon_sym_LBRACE_PLUS] = ACTIONS(447), + [anon_sym_LBRACE_DASH] = ACTIONS(450), + [sym_symbol] = ACTIONS(435), + [anon_sym_LBRACE_CARET] = ACTIONS(453), + [anon_sym_CARET] = ACTIONS(453), + [anon_sym_LBRACE_TILDE] = ACTIONS(456), + [anon_sym_TILDE] = ACTIONS(456), + [anon_sym_LBRACK_CARET] = ACTIONS(459), + [anon_sym_BANG_LBRACK] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE2] = ACTIONS(438), + [anon_sym_DOLLAR] = ACTIONS(468), + [anon_sym_TODO] = ACTIONS(471), + [anon_sym_WIP] = ACTIONS(471), + [anon_sym_NOTE] = ACTIONS(474), + [anon_sym_INFO] = ACTIONS(474), + [anon_sym_XXX] = ACTIONS(474), + [sym_fixme] = ACTIONS(435), + [anon_sym_PIPE] = ACTIONS(435), + [sym__whitespace1] = ACTIONS(537), + [sym__newline] = ACTIONS(480), + [aux_sym__text_token1] = ACTIONS(483), + [sym__verbatim_begin] = ACTIONS(486), }, [65] = { - [sym__inline] = STATE(977), + [sym__inline] = STATE(975), [sym__element] = STATE(118), - [sym_emphasis] = STATE(204), - [sym_emphasis_begin] = STATE(1017), - [sym_strong] = STATE(204), - [sym_strong_begin] = STATE(114), - [sym__hard_line_break] = STATE(204), - [sym_hard_line_break] = STATE(204), - [sym__smart_punctuation] = STATE(204), - [sym_autolink] = STATE(204), - [sym_highlighted] = STATE(204), - [sym_insert] = STATE(204), - [sym_delete] = STATE(204), - [sym_superscript] = STATE(204), - [sym_subscript] = STATE(204), - [sym_footnote_reference] = STATE(204), - [sym__image] = STATE(204), - [sym_full_reference_image] = STATE(204), - [sym_collapsed_reference_image] = STATE(204), - [sym_inline_image] = STATE(204), - [sym__image_description] = STATE(714), - [sym__link] = STATE(204), - [sym_full_reference_link] = STATE(204), - [sym_collapsed_reference_link] = STATE(204), - [sym_inline_link] = STATE(204), - [sym_link_text] = STATE(715), - [sym__comment_with_spaces] = STATE(204), - [sym_span] = STATE(204), - [sym_raw_inline] = STATE(204), - [sym_math] = STATE(204), - [sym_verbatim] = STATE(204), - [sym__todo_highlights] = STATE(204), - [sym_todo] = STATE(204), - [sym_note] = STATE(204), - [sym__symbol_fallback] = STATE(204), - [aux_sym__text] = STATE(149), + [sym_emphasis] = STATE(201), + [sym_emphasis_begin] = STATE(1005), + [sym_strong] = STATE(201), + [sym_strong_begin] = STATE(105), + [sym__hard_line_break] = STATE(201), + [sym_hard_line_break] = STATE(201), + [sym__smart_punctuation] = STATE(201), + [sym_autolink] = STATE(201), + [sym_highlighted] = STATE(201), + [sym_insert] = STATE(201), + [sym_delete] = STATE(201), + [sym_superscript] = STATE(201), + [sym_subscript] = STATE(201), + [sym_footnote_reference] = STATE(201), + [sym__image] = STATE(201), + [sym_full_reference_image] = STATE(201), + [sym_collapsed_reference_image] = STATE(201), + [sym_inline_image] = STATE(201), + [sym__image_description] = STATE(712), + [sym__link] = STATE(201), + [sym_full_reference_link] = STATE(201), + [sym_collapsed_reference_link] = STATE(201), + [sym_inline_link] = STATE(201), + [sym_link_text] = STATE(717), + [sym__comment_with_spaces] = STATE(201), + [sym_span] = STATE(201), + [sym_raw_inline] = STATE(201), + [sym_math] = STATE(201), + [sym_verbatim] = STATE(201), + [sym__todo_highlights] = STATE(201), + [sym_todo] = STATE(201), + [sym_note] = STATE(201), + [sym__symbol_fallback] = STATE(201), + [aux_sym__text] = STATE(139), [aux_sym__inline_repeat1] = STATE(118), [anon_sym_LBRACE] = ACTIONS(49), [anon_sym_LBRACE_] = ACTIONS(51), - [anon_sym__] = ACTIONS(129), - [aux_sym_emphasis_end_token1] = ACTIONS(84), + [anon_sym__] = ACTIONS(54), [anon_sym_LBRACE_STAR] = ACTIONS(57), [anon_sym_STAR] = ACTIONS(60), [anon_sym_BSLASH] = ACTIONS(63), @@ -13311,140 +12819,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PLUS] = ACTIONS(78), [anon_sym_LBRACE_DASH] = ACTIONS(81), [sym_symbol] = ACTIONS(66), - [anon_sym_LBRACE_CARET] = ACTIONS(86), - [anon_sym_CARET] = ACTIONS(86), - [anon_sym_LBRACE_TILDE] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_LBRACK_CARET] = ACTIONS(92), - [anon_sym_BANG_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK] = ACTIONS(100), + [anon_sym_LBRACE_CARET] = ACTIONS(84), + [anon_sym_CARET] = ACTIONS(84), + [anon_sym_LBRACE_TILDE] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_LBRACK_CARET] = ACTIONS(95), + [anon_sym_BANG_LBRACK] = ACTIONS(100), + [anon_sym_LBRACK] = ACTIONS(103), [anon_sym_LBRACE2] = ACTIONS(69), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_TODO] = ACTIONS(106), - [anon_sym_WIP] = ACTIONS(106), - [anon_sym_NOTE] = ACTIONS(109), - [anon_sym_INFO] = ACTIONS(109), - [anon_sym_XXX] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(106), + [anon_sym_TODO] = ACTIONS(109), + [anon_sym_WIP] = ACTIONS(109), + [anon_sym_NOTE] = ACTIONS(112), + [anon_sym_INFO] = ACTIONS(112), + [anon_sym_XXX] = ACTIONS(112), [sym_fixme] = ACTIONS(66), [anon_sym_PIPE] = ACTIONS(66), - [sym__whitespace1] = ACTIONS(132), - [sym__newline] = ACTIONS(115), - [aux_sym__text_token1] = ACTIONS(118), - [sym__verbatim_begin] = ACTIONS(121), + [sym__whitespace1] = ACTIONS(115), + [sym__newline] = ACTIONS(118), + [aux_sym__text_token1] = ACTIONS(121), + [sym__verbatim_begin] = ACTIONS(124), + [sym_emphasis_end] = ACTIONS(93), }, [66] = { - [sym__inline] = STATE(904), - [sym__element] = STATE(87), - [sym_emphasis] = STATE(176), - [sym_emphasis_begin] = STATE(1013), - [sym_strong] = STATE(176), - [sym_strong_begin] = STATE(97), - [sym__hard_line_break] = STATE(176), - [sym_hard_line_break] = STATE(176), - [sym__smart_punctuation] = STATE(176), - [sym_autolink] = STATE(176), - [sym_highlighted] = STATE(176), - [sym_insert] = STATE(176), - [sym_delete] = STATE(176), - [sym_superscript] = STATE(176), - [sym_subscript] = STATE(176), - [sym_footnote_reference] = STATE(176), - [sym__image] = STATE(176), - [sym_full_reference_image] = STATE(176), - [sym_collapsed_reference_image] = STATE(176), - [sym_inline_image] = STATE(176), - [sym__image_description] = STATE(690), - [sym__link] = STATE(176), - [sym_full_reference_link] = STATE(176), - [sym_collapsed_reference_link] = STATE(176), - [sym_inline_link] = STATE(176), - [sym_link_text] = STATE(691), - [sym__comment_with_spaces] = STATE(176), - [sym_span] = STATE(176), - [sym_raw_inline] = STATE(176), - [sym_math] = STATE(176), - [sym_verbatim] = STATE(176), - [sym__todo_highlights] = STATE(176), - [sym_todo] = STATE(176), - [sym_note] = STATE(176), - [sym__symbol_fallback] = STATE(176), - [aux_sym__text] = STATE(155), - [aux_sym__inline_repeat1] = STATE(87), + [sym__inline] = STATE(777), + [sym__element] = STATE(102), + [sym_emphasis] = STATE(194), + [sym_emphasis_begin] = STATE(1003), + [sym_strong] = STATE(194), + [sym_strong_begin] = STATE(113), + [sym__hard_line_break] = STATE(194), + [sym_hard_line_break] = STATE(194), + [sym__smart_punctuation] = STATE(194), + [sym_autolink] = STATE(194), + [sym_highlighted] = STATE(194), + [sym_insert] = STATE(194), + [sym_delete] = STATE(194), + [sym_superscript] = STATE(194), + [sym_subscript] = STATE(194), + [sym_footnote_reference] = STATE(194), + [sym__image] = STATE(194), + [sym_full_reference_image] = STATE(194), + [sym_collapsed_reference_image] = STATE(194), + [sym_inline_image] = STATE(194), + [sym__image_description] = STATE(696), + [sym__link] = STATE(194), + [sym_full_reference_link] = STATE(194), + [sym_collapsed_reference_link] = STATE(194), + [sym_inline_link] = STATE(194), + [sym_link_text] = STATE(695), + [sym__comment_with_spaces] = STATE(194), + [sym_span] = STATE(194), + [sym_raw_inline] = STATE(194), + [sym_math] = STATE(194), + [sym_verbatim] = STATE(194), + [sym__todo_highlights] = STATE(194), + [sym_todo] = STATE(194), + [sym_note] = STATE(194), + [sym__symbol_fallback] = STATE(194), + [aux_sym__text] = STATE(170), + [aux_sym__inline_repeat1] = STATE(102), [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(210), - [anon_sym__] = ACTIONS(213), - [anon_sym_LBRACE_STAR] = ACTIONS(216), - [anon_sym_STAR] = ACTIONS(219), - [anon_sym_BSLASH] = ACTIONS(222), - [sym_quotation_marks] = ACTIONS(225), - [sym_ellipsis] = ACTIONS(225), - [sym_em_dash] = ACTIONS(225), - [sym_en_dash] = ACTIONS(228), - [sym_backslash_escape] = ACTIONS(228), - [anon_sym_LT] = ACTIONS(231), - [anon_sym_LBRACE_EQ] = ACTIONS(234), - [anon_sym_LBRACE_PLUS] = ACTIONS(237), - [anon_sym_LBRACE_DASH] = ACTIONS(240), - [anon_sym_DASH_RBRACE] = ACTIONS(84), - [sym_symbol] = ACTIONS(225), - [anon_sym_LBRACE_CARET] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(243), - [anon_sym_LBRACE_TILDE] = ACTIONS(246), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_LBRACK_CARET] = ACTIONS(249), - [anon_sym_BANG_LBRACK] = ACTIONS(252), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_LBRACE2] = ACTIONS(228), - [anon_sym_DOLLAR] = ACTIONS(258), - [anon_sym_TODO] = ACTIONS(261), - [anon_sym_WIP] = ACTIONS(261), - [anon_sym_NOTE] = ACTIONS(264), - [anon_sym_INFO] = ACTIONS(264), - [anon_sym_XXX] = ACTIONS(264), - [sym_fixme] = ACTIONS(225), - [anon_sym_PIPE] = ACTIONS(225), - [sym__whitespace1] = ACTIONS(267), - [sym__newline] = ACTIONS(270), - [aux_sym__text_token1] = ACTIONS(273), - [sym__verbatim_begin] = ACTIONS(276), + [anon_sym_LBRACE_] = ACTIONS(351), + [anon_sym__] = ACTIONS(354), + [anon_sym_LBRACE_STAR] = ACTIONS(357), + [anon_sym_STAR] = ACTIONS(360), + [anon_sym_BSLASH] = ACTIONS(363), + [sym_quotation_marks] = ACTIONS(366), + [sym_ellipsis] = ACTIONS(366), + [sym_em_dash] = ACTIONS(366), + [sym_en_dash] = ACTIONS(369), + [sym_backslash_escape] = ACTIONS(369), + [anon_sym_LT] = ACTIONS(372), + [anon_sym_LBRACE_EQ] = ACTIONS(375), + [anon_sym_LBRACE_PLUS] = ACTIONS(378), + [anon_sym_LBRACE_DASH] = ACTIONS(381), + [anon_sym_DASH_RBRACE] = ACTIONS(93), + [sym_symbol] = ACTIONS(366), + [anon_sym_LBRACE_CARET] = ACTIONS(384), + [anon_sym_CARET] = ACTIONS(384), + [anon_sym_LBRACE_TILDE] = ACTIONS(387), + [anon_sym_TILDE] = ACTIONS(387), + [anon_sym_LBRACK_CARET] = ACTIONS(390), + [anon_sym_BANG_LBRACK] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(396), + [anon_sym_LBRACE2] = ACTIONS(369), + [anon_sym_DOLLAR] = ACTIONS(399), + [anon_sym_TODO] = ACTIONS(402), + [anon_sym_WIP] = ACTIONS(402), + [anon_sym_NOTE] = ACTIONS(405), + [anon_sym_INFO] = ACTIONS(405), + [anon_sym_XXX] = ACTIONS(405), + [sym_fixme] = ACTIONS(366), + [anon_sym_PIPE] = ACTIONS(366), + [sym__whitespace1] = ACTIONS(408), + [sym__newline] = ACTIONS(411), + [aux_sym__text_token1] = ACTIONS(414), + [sym__verbatim_begin] = ACTIONS(417), }, [67] = { - [sym__inline] = STATE(986), + [sym__inline] = STATE(984), [sym__element] = STATE(118), - [sym_emphasis] = STATE(204), - [sym_emphasis_begin] = STATE(1017), - [sym_strong] = STATE(204), - [sym_strong_begin] = STATE(114), - [sym__hard_line_break] = STATE(204), - [sym_hard_line_break] = STATE(204), - [sym__smart_punctuation] = STATE(204), - [sym_autolink] = STATE(204), - [sym_highlighted] = STATE(204), - [sym_insert] = STATE(204), - [sym_delete] = STATE(204), - [sym_superscript] = STATE(204), - [sym_subscript] = STATE(204), - [sym_footnote_reference] = STATE(204), - [sym__image] = STATE(204), - [sym_full_reference_image] = STATE(204), - [sym_collapsed_reference_image] = STATE(204), - [sym_inline_image] = STATE(204), - [sym__image_description] = STATE(714), - [sym__link] = STATE(204), - [sym_full_reference_link] = STATE(204), - [sym_collapsed_reference_link] = STATE(204), - [sym_inline_link] = STATE(204), - [sym_link_text] = STATE(715), - [sym__comment_with_spaces] = STATE(204), - [sym_span] = STATE(204), - [sym_raw_inline] = STATE(204), - [sym_math] = STATE(204), - [sym_verbatim] = STATE(204), - [sym__todo_highlights] = STATE(204), - [sym_todo] = STATE(204), - [sym_note] = STATE(204), - [sym__symbol_fallback] = STATE(204), - [aux_sym__text] = STATE(149), + [sym_emphasis] = STATE(201), + [sym_emphasis_begin] = STATE(1005), + [sym_strong] = STATE(201), + [sym_strong_begin] = STATE(105), + [sym__hard_line_break] = STATE(201), + [sym_hard_line_break] = STATE(201), + [sym__smart_punctuation] = STATE(201), + [sym_autolink] = STATE(201), + [sym_highlighted] = STATE(201), + [sym_insert] = STATE(201), + [sym_delete] = STATE(201), + [sym_superscript] = STATE(201), + [sym_subscript] = STATE(201), + [sym_footnote_reference] = STATE(201), + [sym__image] = STATE(201), + [sym_full_reference_image] = STATE(201), + [sym_collapsed_reference_image] = STATE(201), + [sym_inline_image] = STATE(201), + [sym__image_description] = STATE(712), + [sym__link] = STATE(201), + [sym_full_reference_link] = STATE(201), + [sym_collapsed_reference_link] = STATE(201), + [sym_inline_link] = STATE(201), + [sym_link_text] = STATE(717), + [sym__comment_with_spaces] = STATE(201), + [sym_span] = STATE(201), + [sym_raw_inline] = STATE(201), + [sym_math] = STATE(201), + [sym_verbatim] = STATE(201), + [sym__todo_highlights] = STATE(201), + [sym_todo] = STATE(201), + [sym_note] = STATE(201), + [sym__symbol_fallback] = STATE(201), + [aux_sym__text] = STATE(139), [aux_sym__inline_repeat1] = STATE(118), [anon_sym_LBRACE] = ACTIONS(49), [anon_sym_LBRACE_] = ACTIONS(51), @@ -13462,671 +12971,821 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PLUS] = ACTIONS(78), [anon_sym_LBRACE_DASH] = ACTIONS(81), [sym_symbol] = ACTIONS(66), - [anon_sym_LBRACE_CARET] = ACTIONS(86), - [anon_sym_CARET] = ACTIONS(86), - [anon_sym_LBRACE_TILDE] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_LBRACK_CARET] = ACTIONS(92), - [anon_sym_BANG_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK] = ACTIONS(100), - [anon_sym_RBRACK2] = ACTIONS(84), + [anon_sym_LBRACE_CARET] = ACTIONS(84), + [anon_sym_CARET] = ACTIONS(84), + [anon_sym_LBRACE_TILDE] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_LBRACK_CARET] = ACTIONS(95), + [anon_sym_BANG_LBRACK] = ACTIONS(100), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_RBRACK2] = ACTIONS(93), [anon_sym_LBRACE2] = ACTIONS(69), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_TODO] = ACTIONS(106), - [anon_sym_WIP] = ACTIONS(106), - [anon_sym_NOTE] = ACTIONS(109), - [anon_sym_INFO] = ACTIONS(109), - [anon_sym_XXX] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(106), + [anon_sym_TODO] = ACTIONS(109), + [anon_sym_WIP] = ACTIONS(109), + [anon_sym_NOTE] = ACTIONS(112), + [anon_sym_INFO] = ACTIONS(112), + [anon_sym_XXX] = ACTIONS(112), [sym_fixme] = ACTIONS(66), [anon_sym_PIPE] = ACTIONS(66), - [sym__whitespace1] = ACTIONS(112), - [sym__newline] = ACTIONS(115), - [aux_sym__text_token1] = ACTIONS(118), - [sym__verbatim_begin] = ACTIONS(121), + [sym__whitespace1] = ACTIONS(115), + [sym__newline] = ACTIONS(118), + [aux_sym__text_token1] = ACTIONS(121), + [sym__verbatim_begin] = ACTIONS(124), }, [68] = { - [sym__inline] = STATE(903), - [sym__element] = STATE(83), - [sym_emphasis] = STATE(211), - [sym_emphasis_begin] = STATE(1014), - [sym_strong] = STATE(211), - [sym_strong_begin] = STATE(121), - [sym__hard_line_break] = STATE(211), - [sym_hard_line_break] = STATE(211), - [sym__smart_punctuation] = STATE(211), - [sym_autolink] = STATE(211), - [sym_highlighted] = STATE(211), - [sym_insert] = STATE(211), - [sym_delete] = STATE(211), - [sym_superscript] = STATE(211), - [sym_subscript] = STATE(211), - [sym_footnote_reference] = STATE(211), - [sym__image] = STATE(211), - [sym_full_reference_image] = STATE(211), - [sym_collapsed_reference_image] = STATE(211), - [sym_inline_image] = STATE(211), - [sym__image_description] = STATE(693), - [sym__link] = STATE(211), - [sym_full_reference_link] = STATE(211), - [sym_collapsed_reference_link] = STATE(211), - [sym_inline_link] = STATE(211), - [sym_link_text] = STATE(694), - [sym__comment_with_spaces] = STATE(211), - [sym_span] = STATE(211), - [sym_raw_inline] = STATE(211), - [sym_math] = STATE(211), - [sym_verbatim] = STATE(211), - [sym__todo_highlights] = STATE(211), - [sym_todo] = STATE(211), - [sym_note] = STATE(211), - [sym__symbol_fallback] = STATE(211), - [aux_sym__text] = STATE(137), - [aux_sym__inline_repeat1] = STATE(83), + [sym__inline] = STATE(789), + [sym__element] = STATE(114), + [sym_emphasis] = STATE(181), + [sym_emphasis_begin] = STATE(1004), + [sym_strong] = STATE(181), + [sym_strong_begin] = STATE(110), + [sym__hard_line_break] = STATE(181), + [sym_hard_line_break] = STATE(181), + [sym__smart_punctuation] = STATE(181), + [sym_autolink] = STATE(181), + [sym_highlighted] = STATE(181), + [sym_insert] = STATE(181), + [sym_delete] = STATE(181), + [sym_superscript] = STATE(181), + [sym_subscript] = STATE(181), + [sym_footnote_reference] = STATE(181), + [sym__image] = STATE(181), + [sym_full_reference_image] = STATE(181), + [sym_collapsed_reference_image] = STATE(181), + [sym_inline_image] = STATE(181), + [sym__image_description] = STATE(688), + [sym__link] = STATE(181), + [sym_full_reference_link] = STATE(181), + [sym_collapsed_reference_link] = STATE(181), + [sym_inline_link] = STATE(181), + [sym_link_text] = STATE(693), + [sym__comment_with_spaces] = STATE(181), + [sym_span] = STATE(181), + [sym_raw_inline] = STATE(181), + [sym_math] = STATE(181), + [sym_verbatim] = STATE(181), + [sym__todo_highlights] = STATE(181), + [sym_todo] = STATE(181), + [sym_note] = STATE(181), + [sym__symbol_fallback] = STATE(181), + [aux_sym__text] = STATE(153), + [aux_sym__inline_repeat1] = STATE(114), [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(285), - [anon_sym__] = ACTIONS(288), - [anon_sym_LBRACE_STAR] = ACTIONS(291), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_BSLASH] = ACTIONS(297), - [sym_quotation_marks] = ACTIONS(300), - [sym_ellipsis] = ACTIONS(300), - [sym_em_dash] = ACTIONS(300), - [sym_en_dash] = ACTIONS(303), - [sym_backslash_escape] = ACTIONS(303), - [anon_sym_LT] = ACTIONS(306), - [anon_sym_LBRACE_EQ] = ACTIONS(309), - [anon_sym_LBRACE_PLUS] = ACTIONS(312), - [anon_sym_LBRACE_DASH] = ACTIONS(315), - [anon_sym_DASH_RBRACE] = ACTIONS(84), - [sym_symbol] = ACTIONS(300), - [anon_sym_LBRACE_CARET] = ACTIONS(318), - [anon_sym_CARET] = ACTIONS(318), - [anon_sym_LBRACE_TILDE] = ACTIONS(321), - [anon_sym_TILDE] = ACTIONS(321), - [anon_sym_LBRACK_CARET] = ACTIONS(324), - [anon_sym_BANG_LBRACK] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(330), - [anon_sym_LBRACE2] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(333), - [anon_sym_TODO] = ACTIONS(336), - [anon_sym_WIP] = ACTIONS(336), - [anon_sym_NOTE] = ACTIONS(339), - [anon_sym_INFO] = ACTIONS(339), - [anon_sym_XXX] = ACTIONS(339), - [sym_fixme] = ACTIONS(300), - [anon_sym_PIPE] = ACTIONS(300), - [sym__whitespace1] = ACTIONS(342), - [sym__newline] = ACTIONS(345), - [aux_sym__text_token1] = ACTIONS(348), - [sym__verbatim_begin] = ACTIONS(351), + [anon_sym_LBRACE_] = ACTIONS(420), + [anon_sym__] = ACTIONS(423), + [anon_sym_LBRACE_STAR] = ACTIONS(426), + [anon_sym_STAR] = ACTIONS(429), + [anon_sym_BSLASH] = ACTIONS(432), + [sym_quotation_marks] = ACTIONS(435), + [sym_ellipsis] = ACTIONS(435), + [sym_em_dash] = ACTIONS(435), + [sym_en_dash] = ACTIONS(438), + [sym_backslash_escape] = ACTIONS(438), + [anon_sym_LT] = ACTIONS(441), + [anon_sym_LBRACE_EQ] = ACTIONS(444), + [anon_sym_LBRACE_PLUS] = ACTIONS(447), + [anon_sym_LBRACE_DASH] = ACTIONS(450), + [anon_sym_DASH_RBRACE] = ACTIONS(93), + [sym_symbol] = ACTIONS(435), + [anon_sym_LBRACE_CARET] = ACTIONS(453), + [anon_sym_CARET] = ACTIONS(453), + [anon_sym_LBRACE_TILDE] = ACTIONS(456), + [anon_sym_TILDE] = ACTIONS(456), + [anon_sym_LBRACK_CARET] = ACTIONS(459), + [anon_sym_BANG_LBRACK] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE2] = ACTIONS(438), + [anon_sym_DOLLAR] = ACTIONS(468), + [anon_sym_TODO] = ACTIONS(471), + [anon_sym_WIP] = ACTIONS(471), + [anon_sym_NOTE] = ACTIONS(474), + [anon_sym_INFO] = ACTIONS(474), + [anon_sym_XXX] = ACTIONS(474), + [sym_fixme] = ACTIONS(435), + [anon_sym_PIPE] = ACTIONS(435), + [sym__whitespace1] = ACTIONS(477), + [sym__newline] = ACTIONS(480), + [aux_sym__text_token1] = ACTIONS(483), + [sym__verbatim_begin] = ACTIONS(486), }, [69] = { - [sym__inline] = STATE(802), - [sym__element] = STATE(79), - [sym_emphasis] = STATE(172), - [sym_emphasis_begin] = STATE(1015), - [sym_strong] = STATE(172), - [sym_strong_begin] = STATE(125), - [sym__hard_line_break] = STATE(172), - [sym_hard_line_break] = STATE(172), - [sym__smart_punctuation] = STATE(172), - [sym_autolink] = STATE(172), - [sym_highlighted] = STATE(172), - [sym_insert] = STATE(172), - [sym_delete] = STATE(172), - [sym_superscript] = STATE(172), - [sym_subscript] = STATE(172), - [sym_footnote_reference] = STATE(172), - [sym__image] = STATE(172), - [sym_full_reference_image] = STATE(172), - [sym_collapsed_reference_image] = STATE(172), - [sym_inline_image] = STATE(172), - [sym__image_description] = STATE(711), - [sym__link] = STATE(172), - [sym_full_reference_link] = STATE(172), - [sym_collapsed_reference_link] = STATE(172), - [sym_inline_link] = STATE(172), - [sym_link_text] = STATE(712), - [sym__comment_with_spaces] = STATE(172), - [sym_span] = STATE(172), - [sym_raw_inline] = STATE(172), - [sym_math] = STATE(172), - [sym_verbatim] = STATE(172), - [sym__todo_highlights] = STATE(172), - [sym_todo] = STATE(172), - [sym_note] = STATE(172), - [sym__symbol_fallback] = STATE(172), + [sym__inline] = STATE(788), + [sym__element] = STATE(102), + [sym_emphasis] = STATE(194), + [sym_emphasis_begin] = STATE(1003), + [sym_strong] = STATE(194), + [sym_strong_begin] = STATE(113), + [sym__hard_line_break] = STATE(194), + [sym_hard_line_break] = STATE(194), + [sym__smart_punctuation] = STATE(194), + [sym_autolink] = STATE(194), + [sym_highlighted] = STATE(194), + [sym_insert] = STATE(194), + [sym_delete] = STATE(194), + [sym_superscript] = STATE(194), + [sym_subscript] = STATE(194), + [sym_footnote_reference] = STATE(194), + [sym__image] = STATE(194), + [sym_full_reference_image] = STATE(194), + [sym_collapsed_reference_image] = STATE(194), + [sym_inline_image] = STATE(194), + [sym__image_description] = STATE(696), + [sym__link] = STATE(194), + [sym_full_reference_link] = STATE(194), + [sym_collapsed_reference_link] = STATE(194), + [sym_inline_link] = STATE(194), + [sym_link_text] = STATE(695), + [sym__comment_with_spaces] = STATE(194), + [sym_span] = STATE(194), + [sym_raw_inline] = STATE(194), + [sym_math] = STATE(194), + [sym_verbatim] = STATE(194), + [sym__todo_highlights] = STATE(194), + [sym_todo] = STATE(194), + [sym_note] = STATE(194), + [sym__symbol_fallback] = STATE(194), [aux_sym__text] = STATE(170), - [aux_sym__inline_repeat1] = STATE(79), + [aux_sym__inline_repeat1] = STATE(102), [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(354), - [anon_sym__] = ACTIONS(357), - [anon_sym_LBRACE_STAR] = ACTIONS(360), - [anon_sym_STAR] = ACTIONS(561), - [aux_sym_strong_end_token1] = ACTIONS(84), - [anon_sym_BSLASH] = ACTIONS(366), - [sym_quotation_marks] = ACTIONS(369), - [sym_ellipsis] = ACTIONS(369), - [sym_em_dash] = ACTIONS(369), - [sym_en_dash] = ACTIONS(372), - [sym_backslash_escape] = ACTIONS(372), - [anon_sym_LT] = ACTIONS(375), - [anon_sym_LBRACE_EQ] = ACTIONS(378), - [anon_sym_LBRACE_PLUS] = ACTIONS(381), - [anon_sym_LBRACE_DASH] = ACTIONS(384), - [sym_symbol] = ACTIONS(369), - [anon_sym_LBRACE_CARET] = ACTIONS(387), - [anon_sym_CARET] = ACTIONS(387), - [anon_sym_LBRACE_TILDE] = ACTIONS(390), - [anon_sym_TILDE] = ACTIONS(390), - [anon_sym_LBRACK_CARET] = ACTIONS(393), - [anon_sym_BANG_LBRACK] = ACTIONS(396), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_LBRACE2] = ACTIONS(372), - [anon_sym_DOLLAR] = ACTIONS(402), - [anon_sym_TODO] = ACTIONS(405), - [anon_sym_WIP] = ACTIONS(405), - [anon_sym_NOTE] = ACTIONS(408), - [anon_sym_INFO] = ACTIONS(408), - [anon_sym_XXX] = ACTIONS(408), - [sym_fixme] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(369), - [sym__whitespace1] = ACTIONS(540), - [sym__newline] = ACTIONS(414), - [aux_sym__text_token1] = ACTIONS(417), - [sym__verbatim_begin] = ACTIONS(420), + [anon_sym_LBRACE_] = ACTIONS(351), + [anon_sym__] = ACTIONS(354), + [anon_sym_LBRACE_STAR] = ACTIONS(357), + [anon_sym_STAR] = ACTIONS(540), + [aux_sym_strong_end_token1] = ACTIONS(93), + [anon_sym_BSLASH] = ACTIONS(363), + [sym_quotation_marks] = ACTIONS(366), + [sym_ellipsis] = ACTIONS(366), + [sym_em_dash] = ACTIONS(366), + [sym_en_dash] = ACTIONS(369), + [sym_backslash_escape] = ACTIONS(369), + [anon_sym_LT] = ACTIONS(372), + [anon_sym_LBRACE_EQ] = ACTIONS(375), + [anon_sym_LBRACE_PLUS] = ACTIONS(378), + [anon_sym_LBRACE_DASH] = ACTIONS(381), + [sym_symbol] = ACTIONS(366), + [anon_sym_LBRACE_CARET] = ACTIONS(384), + [anon_sym_CARET] = ACTIONS(384), + [anon_sym_LBRACE_TILDE] = ACTIONS(387), + [anon_sym_TILDE] = ACTIONS(387), + [anon_sym_LBRACK_CARET] = ACTIONS(390), + [anon_sym_BANG_LBRACK] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(396), + [anon_sym_LBRACE2] = ACTIONS(369), + [anon_sym_DOLLAR] = ACTIONS(399), + [anon_sym_TODO] = ACTIONS(402), + [anon_sym_WIP] = ACTIONS(402), + [anon_sym_NOTE] = ACTIONS(405), + [anon_sym_INFO] = ACTIONS(405), + [anon_sym_XXX] = ACTIONS(405), + [sym_fixme] = ACTIONS(366), + [anon_sym_PIPE] = ACTIONS(366), + [sym__whitespace1] = ACTIONS(543), + [sym__newline] = ACTIONS(411), + [aux_sym__text_token1] = ACTIONS(414), + [sym__verbatim_begin] = ACTIONS(417), }, [70] = { - [sym__inline] = STATE(762), - [sym__element] = STATE(117), - [sym_emphasis] = STATE(182), - [sym_emphasis_begin] = STATE(1016), - [sym_strong] = STATE(182), - [sym_strong_begin] = STATE(122), - [sym__hard_line_break] = STATE(182), - [sym_hard_line_break] = STATE(182), - [sym__smart_punctuation] = STATE(182), - [sym_autolink] = STATE(182), - [sym_highlighted] = STATE(182), - [sym_insert] = STATE(182), - [sym_delete] = STATE(182), - [sym_superscript] = STATE(182), - [sym_subscript] = STATE(182), - [sym_footnote_reference] = STATE(182), - [sym__image] = STATE(182), - [sym_full_reference_image] = STATE(182), - [sym_collapsed_reference_image] = STATE(182), - [sym_inline_image] = STATE(182), - [sym__image_description] = STATE(692), - [sym__link] = STATE(182), - [sym_full_reference_link] = STATE(182), - [sym_collapsed_reference_link] = STATE(182), - [sym_inline_link] = STATE(182), - [sym_link_text] = STATE(689), - [sym__comment_with_spaces] = STATE(182), - [sym_span] = STATE(182), - [sym_raw_inline] = STATE(182), - [sym_math] = STATE(182), - [sym_verbatim] = STATE(182), - [sym__todo_highlights] = STATE(182), - [sym_todo] = STATE(182), - [sym_note] = STATE(182), - [sym__symbol_fallback] = STATE(182), + [sym__inline] = STATE(779), + [sym__element] = STATE(114), + [sym_emphasis] = STATE(181), + [sym_emphasis_begin] = STATE(1004), + [sym_strong] = STATE(181), + [sym_strong_begin] = STATE(110), + [sym__hard_line_break] = STATE(181), + [sym_hard_line_break] = STATE(181), + [sym__smart_punctuation] = STATE(181), + [sym_autolink] = STATE(181), + [sym_highlighted] = STATE(181), + [sym_insert] = STATE(181), + [sym_delete] = STATE(181), + [sym_superscript] = STATE(181), + [sym_subscript] = STATE(181), + [sym_footnote_reference] = STATE(181), + [sym__image] = STATE(181), + [sym_full_reference_image] = STATE(181), + [sym_collapsed_reference_image] = STATE(181), + [sym_inline_image] = STATE(181), + [sym__image_description] = STATE(688), + [sym__link] = STATE(181), + [sym_full_reference_link] = STATE(181), + [sym_collapsed_reference_link] = STATE(181), + [sym_inline_link] = STATE(181), + [sym_link_text] = STATE(693), + [sym__comment_with_spaces] = STATE(181), + [sym_span] = STATE(181), + [sym_raw_inline] = STATE(181), + [sym_math] = STATE(181), + [sym_verbatim] = STATE(181), + [sym__todo_highlights] = STATE(181), + [sym_todo] = STATE(181), + [sym_note] = STATE(181), + [sym__symbol_fallback] = STATE(181), [aux_sym__text] = STATE(153), - [aux_sym__inline_repeat1] = STATE(117), + [aux_sym__inline_repeat1] = STATE(114), [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(423), - [anon_sym__] = ACTIONS(426), - [anon_sym_LBRACE_STAR] = ACTIONS(429), - [anon_sym_STAR] = ACTIONS(432), - [anon_sym_BSLASH] = ACTIONS(435), - [sym_quotation_marks] = ACTIONS(438), - [sym_ellipsis] = ACTIONS(438), - [sym_em_dash] = ACTIONS(438), - [sym_en_dash] = ACTIONS(441), - [sym_backslash_escape] = ACTIONS(441), - [anon_sym_LT] = ACTIONS(444), - [anon_sym_LBRACE_EQ] = ACTIONS(447), - [anon_sym_LBRACE_PLUS] = ACTIONS(450), - [anon_sym_LBRACE_DASH] = ACTIONS(453), - [sym_symbol] = ACTIONS(438), - [anon_sym_LBRACE_CARET] = ACTIONS(456), - [anon_sym_CARET] = ACTIONS(456), - [anon_sym_LBRACE_TILDE] = ACTIONS(459), - [anon_sym_TILDE] = ACTIONS(459), - [anon_sym_LBRACK_CARET] = ACTIONS(462), - [anon_sym_BANG_LBRACK] = ACTIONS(465), - [anon_sym_LBRACK] = ACTIONS(468), - [anon_sym_RBRACK2] = ACTIONS(84), - [anon_sym_LBRACE2] = ACTIONS(441), - [anon_sym_DOLLAR] = ACTIONS(471), - [anon_sym_TODO] = ACTIONS(474), - [anon_sym_WIP] = ACTIONS(474), - [anon_sym_NOTE] = ACTIONS(477), - [anon_sym_INFO] = ACTIONS(477), - [anon_sym_XXX] = ACTIONS(477), - [sym_fixme] = ACTIONS(438), - [anon_sym_PIPE] = ACTIONS(438), - [sym__whitespace1] = ACTIONS(480), - [sym__newline] = ACTIONS(483), - [aux_sym__text_token1] = ACTIONS(486), - [sym__verbatim_begin] = ACTIONS(489), + [anon_sym_LBRACE_] = ACTIONS(420), + [anon_sym__] = ACTIONS(423), + [anon_sym_LBRACE_STAR] = ACTIONS(426), + [anon_sym_STAR] = ACTIONS(429), + [anon_sym_BSLASH] = ACTIONS(432), + [sym_quotation_marks] = ACTIONS(435), + [sym_ellipsis] = ACTIONS(435), + [sym_em_dash] = ACTIONS(435), + [sym_en_dash] = ACTIONS(438), + [sym_backslash_escape] = ACTIONS(438), + [anon_sym_LT] = ACTIONS(441), + [anon_sym_LBRACE_EQ] = ACTIONS(444), + [anon_sym_LBRACE_PLUS] = ACTIONS(447), + [anon_sym_LBRACE_DASH] = ACTIONS(450), + [sym_symbol] = ACTIONS(435), + [anon_sym_LBRACE_CARET] = ACTIONS(453), + [anon_sym_CARET] = ACTIONS(453), + [anon_sym_LBRACE_TILDE] = ACTIONS(456), + [anon_sym_TILDE] = ACTIONS(456), + [anon_sym_LBRACK_CARET] = ACTIONS(459), + [anon_sym_BANG_LBRACK] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_RBRACK2] = ACTIONS(93), + [anon_sym_LBRACE2] = ACTIONS(438), + [anon_sym_DOLLAR] = ACTIONS(468), + [anon_sym_TODO] = ACTIONS(471), + [anon_sym_WIP] = ACTIONS(471), + [anon_sym_NOTE] = ACTIONS(474), + [anon_sym_INFO] = ACTIONS(474), + [anon_sym_XXX] = ACTIONS(474), + [sym_fixme] = ACTIONS(435), + [anon_sym_PIPE] = ACTIONS(435), + [sym__whitespace1] = ACTIONS(477), + [sym__newline] = ACTIONS(480), + [aux_sym__text_token1] = ACTIONS(483), + [sym__verbatim_begin] = ACTIONS(486), }, [71] = { - [sym__inline] = STATE(765), - [sym__element] = STATE(79), - [sym_emphasis] = STATE(172), - [sym_emphasis_begin] = STATE(1015), - [sym_strong] = STATE(172), - [sym_strong_begin] = STATE(125), - [sym__hard_line_break] = STATE(172), - [sym_hard_line_break] = STATE(172), - [sym__smart_punctuation] = STATE(172), - [sym_autolink] = STATE(172), - [sym_highlighted] = STATE(172), - [sym_insert] = STATE(172), - [sym_delete] = STATE(172), - [sym_superscript] = STATE(172), - [sym_subscript] = STATE(172), - [sym_footnote_reference] = STATE(172), - [sym__image] = STATE(172), - [sym_full_reference_image] = STATE(172), - [sym_collapsed_reference_image] = STATE(172), - [sym_inline_image] = STATE(172), - [sym__image_description] = STATE(711), - [sym__link] = STATE(172), - [sym_full_reference_link] = STATE(172), - [sym_collapsed_reference_link] = STATE(172), - [sym_inline_link] = STATE(172), - [sym_link_text] = STATE(712), - [sym__comment_with_spaces] = STATE(172), - [sym_span] = STATE(172), - [sym_raw_inline] = STATE(172), - [sym_math] = STATE(172), - [sym_verbatim] = STATE(172), - [sym__todo_highlights] = STATE(172), - [sym_todo] = STATE(172), - [sym_note] = STATE(172), - [sym__symbol_fallback] = STATE(172), + [sym__inline] = STATE(737), + [sym__element] = STATE(102), + [sym_emphasis] = STATE(194), + [sym_emphasis_begin] = STATE(1003), + [sym_strong] = STATE(194), + [sym_strong_begin] = STATE(113), + [sym__hard_line_break] = STATE(194), + [sym_hard_line_break] = STATE(194), + [sym__smart_punctuation] = STATE(194), + [sym_autolink] = STATE(194), + [sym_highlighted] = STATE(194), + [sym_insert] = STATE(194), + [sym_delete] = STATE(194), + [sym_superscript] = STATE(194), + [sym_subscript] = STATE(194), + [sym_footnote_reference] = STATE(194), + [sym__image] = STATE(194), + [sym_full_reference_image] = STATE(194), + [sym_collapsed_reference_image] = STATE(194), + [sym_inline_image] = STATE(194), + [sym__image_description] = STATE(696), + [sym__link] = STATE(194), + [sym_full_reference_link] = STATE(194), + [sym_collapsed_reference_link] = STATE(194), + [sym_inline_link] = STATE(194), + [sym_link_text] = STATE(695), + [sym__comment_with_spaces] = STATE(194), + [sym_span] = STATE(194), + [sym_raw_inline] = STATE(194), + [sym_math] = STATE(194), + [sym_verbatim] = STATE(194), + [sym__todo_highlights] = STATE(194), + [sym_todo] = STATE(194), + [sym_note] = STATE(194), + [sym__symbol_fallback] = STATE(194), [aux_sym__text] = STATE(170), - [aux_sym__inline_repeat1] = STATE(79), + [aux_sym__inline_repeat1] = STATE(102), [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(354), - [anon_sym__] = ACTIONS(357), - [anon_sym_LBRACE_STAR] = ACTIONS(360), - [anon_sym_STAR] = ACTIONS(363), - [anon_sym_BSLASH] = ACTIONS(366), - [sym_quotation_marks] = ACTIONS(369), - [sym_ellipsis] = ACTIONS(369), - [sym_em_dash] = ACTIONS(369), - [sym_en_dash] = ACTIONS(372), - [sym_backslash_escape] = ACTIONS(372), - [anon_sym_LT] = ACTIONS(375), - [anon_sym_LBRACE_EQ] = ACTIONS(378), - [anon_sym_LBRACE_PLUS] = ACTIONS(381), - [anon_sym_LBRACE_DASH] = ACTIONS(384), - [sym_symbol] = ACTIONS(369), - [anon_sym_LBRACE_CARET] = ACTIONS(387), - [anon_sym_CARET] = ACTIONS(387), - [anon_sym_LBRACE_TILDE] = ACTIONS(390), - [anon_sym_TILDE] = ACTIONS(390), - [anon_sym_LBRACK_CARET] = ACTIONS(393), - [anon_sym_BANG_LBRACK] = ACTIONS(396), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_RBRACK2] = ACTIONS(84), - [anon_sym_LBRACE2] = ACTIONS(372), - [anon_sym_DOLLAR] = ACTIONS(402), - [anon_sym_TODO] = ACTIONS(405), - [anon_sym_WIP] = ACTIONS(405), - [anon_sym_NOTE] = ACTIONS(408), - [anon_sym_INFO] = ACTIONS(408), - [anon_sym_XXX] = ACTIONS(408), - [sym_fixme] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(369), - [sym__whitespace1] = ACTIONS(411), - [sym__newline] = ACTIONS(414), - [aux_sym__text_token1] = ACTIONS(417), - [sym__verbatim_begin] = ACTIONS(420), + [anon_sym_LBRACE_] = ACTIONS(351), + [anon_sym__] = ACTIONS(354), + [anon_sym_LBRACE_STAR] = ACTIONS(357), + [anon_sym_STAR] = ACTIONS(360), + [anon_sym_BSLASH] = ACTIONS(363), + [sym_quotation_marks] = ACTIONS(366), + [sym_ellipsis] = ACTIONS(366), + [sym_em_dash] = ACTIONS(366), + [sym_en_dash] = ACTIONS(369), + [sym_backslash_escape] = ACTIONS(369), + [anon_sym_LT] = ACTIONS(372), + [anon_sym_LBRACE_EQ] = ACTIONS(375), + [anon_sym_LBRACE_PLUS] = ACTIONS(378), + [anon_sym_LBRACE_DASH] = ACTIONS(381), + [sym_symbol] = ACTIONS(366), + [anon_sym_LBRACE_CARET] = ACTIONS(384), + [anon_sym_CARET] = ACTIONS(384), + [anon_sym_LBRACE_TILDE] = ACTIONS(387), + [anon_sym_TILDE] = ACTIONS(387), + [anon_sym_LBRACK_CARET] = ACTIONS(390), + [anon_sym_BANG_LBRACK] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(396), + [anon_sym_RBRACK2] = ACTIONS(93), + [anon_sym_LBRACE2] = ACTIONS(369), + [anon_sym_DOLLAR] = ACTIONS(399), + [anon_sym_TODO] = ACTIONS(402), + [anon_sym_WIP] = ACTIONS(402), + [anon_sym_NOTE] = ACTIONS(405), + [anon_sym_INFO] = ACTIONS(405), + [anon_sym_XXX] = ACTIONS(405), + [sym_fixme] = ACTIONS(366), + [anon_sym_PIPE] = ACTIONS(366), + [sym__whitespace1] = ACTIONS(408), + [sym__newline] = ACTIONS(411), + [aux_sym__text_token1] = ACTIONS(414), + [sym__verbatim_begin] = ACTIONS(417), }, [72] = { - [sym__inline] = STATE(854), - [sym__element] = STATE(83), - [sym_emphasis] = STATE(211), - [sym_emphasis_begin] = STATE(1014), - [sym_strong] = STATE(211), + [sym__inline] = STATE(857), + [sym__element] = STATE(88), + [sym_emphasis] = STATE(209), + [sym_emphasis_begin] = STATE(1002), + [sym_strong] = STATE(209), [sym_strong_begin] = STATE(121), - [sym__hard_line_break] = STATE(211), - [sym_hard_line_break] = STATE(211), - [sym__smart_punctuation] = STATE(211), - [sym_autolink] = STATE(211), - [sym_highlighted] = STATE(211), - [sym_insert] = STATE(211), - [sym_delete] = STATE(211), - [sym_superscript] = STATE(211), - [sym_subscript] = STATE(211), - [sym_footnote_reference] = STATE(211), - [sym__image] = STATE(211), - [sym_full_reference_image] = STATE(211), - [sym_collapsed_reference_image] = STATE(211), - [sym_inline_image] = STATE(211), - [sym__image_description] = STATE(693), - [sym__link] = STATE(211), - [sym_full_reference_link] = STATE(211), - [sym_collapsed_reference_link] = STATE(211), - [sym_inline_link] = STATE(211), - [sym_link_text] = STATE(694), - [sym__comment_with_spaces] = STATE(211), - [sym_span] = STATE(211), - [sym_raw_inline] = STATE(211), - [sym_math] = STATE(211), - [sym_verbatim] = STATE(211), - [sym__todo_highlights] = STATE(211), - [sym_todo] = STATE(211), - [sym_note] = STATE(211), - [sym__symbol_fallback] = STATE(211), - [aux_sym__text] = STATE(137), - [aux_sym__inline_repeat1] = STATE(83), + [sym__hard_line_break] = STATE(209), + [sym_hard_line_break] = STATE(209), + [sym__smart_punctuation] = STATE(209), + [sym_autolink] = STATE(209), + [sym_highlighted] = STATE(209), + [sym_insert] = STATE(209), + [sym_delete] = STATE(209), + [sym_superscript] = STATE(209), + [sym_subscript] = STATE(209), + [sym_footnote_reference] = STATE(209), + [sym__image] = STATE(209), + [sym_full_reference_image] = STATE(209), + [sym_collapsed_reference_image] = STATE(209), + [sym_inline_image] = STATE(209), + [sym__image_description] = STATE(706), + [sym__link] = STATE(209), + [sym_full_reference_link] = STATE(209), + [sym_collapsed_reference_link] = STATE(209), + [sym_inline_link] = STATE(209), + [sym_link_text] = STATE(707), + [sym__comment_with_spaces] = STATE(209), + [sym_span] = STATE(209), + [sym_raw_inline] = STATE(209), + [sym_math] = STATE(209), + [sym_verbatim] = STATE(209), + [sym__todo_highlights] = STATE(209), + [sym_todo] = STATE(209), + [sym_note] = STATE(209), + [sym__symbol_fallback] = STATE(209), + [aux_sym__text] = STATE(150), + [aux_sym__inline_repeat1] = STATE(88), [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(285), - [anon_sym__] = ACTIONS(288), - [anon_sym_LBRACE_STAR] = ACTIONS(291), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_BSLASH] = ACTIONS(297), - [sym_quotation_marks] = ACTIONS(300), - [sym_ellipsis] = ACTIONS(300), - [sym_em_dash] = ACTIONS(300), - [sym_en_dash] = ACTIONS(303), - [sym_backslash_escape] = ACTIONS(303), - [anon_sym_LT] = ACTIONS(306), - [anon_sym_LBRACE_EQ] = ACTIONS(309), - [anon_sym_LBRACE_PLUS] = ACTIONS(312), - [anon_sym_LBRACE_DASH] = ACTIONS(315), - [sym_symbol] = ACTIONS(300), - [anon_sym_LBRACE_CARET] = ACTIONS(318), - [anon_sym_CARET] = ACTIONS(318), - [anon_sym_LBRACE_TILDE] = ACTIONS(321), - [anon_sym_TILDE] = ACTIONS(321), - [anon_sym_LBRACK_CARET] = ACTIONS(324), - [anon_sym_BANG_LBRACK] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(330), - [anon_sym_RBRACK2] = ACTIONS(84), - [anon_sym_LBRACE2] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(333), - [anon_sym_TODO] = ACTIONS(336), - [anon_sym_WIP] = ACTIONS(336), - [anon_sym_NOTE] = ACTIONS(339), - [anon_sym_INFO] = ACTIONS(339), - [anon_sym_XXX] = ACTIONS(339), - [sym_fixme] = ACTIONS(300), - [anon_sym_PIPE] = ACTIONS(300), - [sym__whitespace1] = ACTIONS(342), - [sym__newline] = ACTIONS(345), - [aux_sym__text_token1] = ACTIONS(348), - [sym__verbatim_begin] = ACTIONS(351), + [anon_sym_LBRACE_] = ACTIONS(282), + [anon_sym__] = ACTIONS(285), + [anon_sym_LBRACE_STAR] = ACTIONS(288), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_BSLASH] = ACTIONS(294), + [sym_quotation_marks] = ACTIONS(297), + [sym_ellipsis] = ACTIONS(297), + [sym_em_dash] = ACTIONS(297), + [sym_en_dash] = ACTIONS(300), + [sym_backslash_escape] = ACTIONS(300), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACE_EQ] = ACTIONS(306), + [anon_sym_LBRACE_PLUS] = ACTIONS(309), + [anon_sym_LBRACE_DASH] = ACTIONS(312), + [sym_symbol] = ACTIONS(297), + [anon_sym_LBRACE_CARET] = ACTIONS(315), + [anon_sym_CARET] = ACTIONS(315), + [anon_sym_LBRACE_TILDE] = ACTIONS(318), + [anon_sym_TILDE] = ACTIONS(318), + [anon_sym_LBRACK_CARET] = ACTIONS(321), + [anon_sym_BANG_LBRACK] = ACTIONS(324), + [anon_sym_LBRACK] = ACTIONS(327), + [anon_sym_RBRACK2] = ACTIONS(93), + [anon_sym_LBRACE2] = ACTIONS(300), + [anon_sym_DOLLAR] = ACTIONS(330), + [anon_sym_TODO] = ACTIONS(333), + [anon_sym_WIP] = ACTIONS(333), + [anon_sym_NOTE] = ACTIONS(336), + [anon_sym_INFO] = ACTIONS(336), + [anon_sym_XXX] = ACTIONS(336), + [sym_fixme] = ACTIONS(297), + [anon_sym_PIPE] = ACTIONS(297), + [sym__whitespace1] = ACTIONS(339), + [sym__newline] = ACTIONS(342), + [aux_sym__text_token1] = ACTIONS(345), + [sym__verbatim_begin] = ACTIONS(348), }, [73] = { - [sym__inline] = STATE(751), - [sym__element] = STATE(79), - [sym_emphasis] = STATE(172), - [sym_emphasis_begin] = STATE(1015), - [sym_strong] = STATE(172), - [sym_strong_begin] = STATE(125), - [sym__hard_line_break] = STATE(172), - [sym_hard_line_break] = STATE(172), - [sym__smart_punctuation] = STATE(172), - [sym_autolink] = STATE(172), - [sym_highlighted] = STATE(172), - [sym_insert] = STATE(172), - [sym_delete] = STATE(172), - [sym_superscript] = STATE(172), - [sym_subscript] = STATE(172), - [sym_footnote_reference] = STATE(172), - [sym__image] = STATE(172), - [sym_full_reference_image] = STATE(172), - [sym_collapsed_reference_image] = STATE(172), - [sym_inline_image] = STATE(172), - [sym__image_description] = STATE(711), - [sym__link] = STATE(172), - [sym_full_reference_link] = STATE(172), - [sym_collapsed_reference_link] = STATE(172), - [sym_inline_link] = STATE(172), - [sym_link_text] = STATE(712), - [sym__comment_with_spaces] = STATE(172), - [sym_span] = STATE(172), - [sym_raw_inline] = STATE(172), - [sym_math] = STATE(172), - [sym_verbatim] = STATE(172), - [sym__todo_highlights] = STATE(172), - [sym_todo] = STATE(172), - [sym_note] = STATE(172), - [sym__symbol_fallback] = STATE(172), + [sym__inline] = STATE(769), + [sym__element] = STATE(102), + [sym_emphasis] = STATE(194), + [sym_emphasis_begin] = STATE(1003), + [sym_strong] = STATE(194), + [sym_strong_begin] = STATE(113), + [sym__hard_line_break] = STATE(194), + [sym_hard_line_break] = STATE(194), + [sym__smart_punctuation] = STATE(194), + [sym_autolink] = STATE(194), + [sym_highlighted] = STATE(194), + [sym_insert] = STATE(194), + [sym_delete] = STATE(194), + [sym_superscript] = STATE(194), + [sym_subscript] = STATE(194), + [sym_footnote_reference] = STATE(194), + [sym__image] = STATE(194), + [sym_full_reference_image] = STATE(194), + [sym_collapsed_reference_image] = STATE(194), + [sym_inline_image] = STATE(194), + [sym__image_description] = STATE(696), + [sym__link] = STATE(194), + [sym_full_reference_link] = STATE(194), + [sym_collapsed_reference_link] = STATE(194), + [sym_inline_link] = STATE(194), + [sym_link_text] = STATE(695), + [sym__comment_with_spaces] = STATE(194), + [sym_span] = STATE(194), + [sym_raw_inline] = STATE(194), + [sym_math] = STATE(194), + [sym_verbatim] = STATE(194), + [sym__todo_highlights] = STATE(194), + [sym_todo] = STATE(194), + [sym_note] = STATE(194), + [sym__symbol_fallback] = STATE(194), [aux_sym__text] = STATE(170), - [aux_sym__inline_repeat1] = STATE(79), + [aux_sym__inline_repeat1] = STATE(102), [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(354), - [anon_sym__] = ACTIONS(357), - [anon_sym_LBRACE_STAR] = ACTIONS(360), - [anon_sym_STAR] = ACTIONS(363), - [anon_sym_BSLASH] = ACTIONS(366), - [sym_quotation_marks] = ACTIONS(369), - [sym_ellipsis] = ACTIONS(369), - [sym_em_dash] = ACTIONS(369), - [sym_en_dash] = ACTIONS(372), - [sym_backslash_escape] = ACTIONS(372), - [anon_sym_LT] = ACTIONS(375), - [anon_sym_LBRACE_EQ] = ACTIONS(378), - [anon_sym_LBRACE_PLUS] = ACTIONS(381), - [anon_sym_LBRACE_DASH] = ACTIONS(384), - [sym_symbol] = ACTIONS(369), - [anon_sym_LBRACE_CARET] = ACTIONS(387), - [anon_sym_CARET] = ACTIONS(387), - [anon_sym_LBRACE_TILDE] = ACTIONS(390), - [anon_sym_TILDE] = ACTIONS(390), - [anon_sym_LBRACK_CARET] = ACTIONS(393), - [anon_sym_BANG_LBRACK] = ACTIONS(396), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_LBRACE2] = ACTIONS(372), - [anon_sym_DOLLAR] = ACTIONS(402), - [anon_sym_TODO] = ACTIONS(405), - [anon_sym_WIP] = ACTIONS(405), - [anon_sym_NOTE] = ACTIONS(408), - [anon_sym_INFO] = ACTIONS(408), - [anon_sym_XXX] = ACTIONS(408), - [sym_fixme] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(369), - [sym__whitespace1] = ACTIONS(411), - [sym__newline] = ACTIONS(414), - [aux_sym__text_token1] = ACTIONS(417), - [sym__verbatim_begin] = ACTIONS(420), + [anon_sym_LBRACE_] = ACTIONS(351), + [anon_sym__] = ACTIONS(354), + [anon_sym_LBRACE_STAR] = ACTIONS(357), + [anon_sym_STAR] = ACTIONS(360), + [anon_sym_BSLASH] = ACTIONS(363), + [sym_quotation_marks] = ACTIONS(366), + [sym_ellipsis] = ACTIONS(366), + [sym_em_dash] = ACTIONS(366), + [sym_en_dash] = ACTIONS(369), + [sym_backslash_escape] = ACTIONS(369), + [anon_sym_LT] = ACTIONS(372), + [anon_sym_LBRACE_EQ] = ACTIONS(375), + [anon_sym_LBRACE_PLUS] = ACTIONS(378), + [anon_sym_LBRACE_DASH] = ACTIONS(381), + [sym_symbol] = ACTIONS(366), + [anon_sym_LBRACE_CARET] = ACTIONS(384), + [anon_sym_CARET] = ACTIONS(384), + [anon_sym_LBRACE_TILDE] = ACTIONS(387), + [anon_sym_TILDE] = ACTIONS(387), + [anon_sym_LBRACK_CARET] = ACTIONS(390), + [anon_sym_BANG_LBRACK] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(396), + [anon_sym_LBRACE2] = ACTIONS(369), + [anon_sym_DOLLAR] = ACTIONS(399), + [anon_sym_TODO] = ACTIONS(402), + [anon_sym_WIP] = ACTIONS(402), + [anon_sym_NOTE] = ACTIONS(405), + [anon_sym_INFO] = ACTIONS(405), + [anon_sym_XXX] = ACTIONS(405), + [sym_fixme] = ACTIONS(366), + [anon_sym_PIPE] = ACTIONS(366), + [sym__whitespace1] = ACTIONS(408), + [sym__newline] = ACTIONS(411), + [aux_sym__text_token1] = ACTIONS(414), + [sym__verbatim_begin] = ACTIONS(417), }, [74] = { - [sym__inline] = STATE(877), - [sym__element] = STATE(83), - [sym_emphasis] = STATE(211), - [sym_emphasis_begin] = STATE(1014), - [sym_strong] = STATE(211), - [sym_strong_begin] = STATE(121), - [sym__hard_line_break] = STATE(211), - [sym_hard_line_break] = STATE(211), - [sym__smart_punctuation] = STATE(211), - [sym_autolink] = STATE(211), - [sym_highlighted] = STATE(211), - [sym_insert] = STATE(211), - [sym_delete] = STATE(211), - [sym_superscript] = STATE(211), - [sym_subscript] = STATE(211), - [sym_footnote_reference] = STATE(211), - [sym__image] = STATE(211), - [sym_full_reference_image] = STATE(211), - [sym_collapsed_reference_image] = STATE(211), - [sym_inline_image] = STATE(211), - [sym__image_description] = STATE(693), - [sym__link] = STATE(211), - [sym_full_reference_link] = STATE(211), - [sym_collapsed_reference_link] = STATE(211), - [sym_inline_link] = STATE(211), - [sym_link_text] = STATE(694), - [sym__comment_with_spaces] = STATE(211), - [sym_span] = STATE(211), - [sym_raw_inline] = STATE(211), - [sym_math] = STATE(211), - [sym_verbatim] = STATE(211), - [sym__todo_highlights] = STATE(211), - [sym_todo] = STATE(211), - [sym_note] = STATE(211), - [sym__symbol_fallback] = STATE(211), - [aux_sym__text] = STATE(137), - [aux_sym__inline_repeat1] = STATE(83), + [sym__inline] = STATE(768), + [sym__element] = STATE(114), + [sym_emphasis] = STATE(181), + [sym_emphasis_begin] = STATE(1004), + [sym_strong] = STATE(181), + [sym_strong_begin] = STATE(110), + [sym__hard_line_break] = STATE(181), + [sym_hard_line_break] = STATE(181), + [sym__smart_punctuation] = STATE(181), + [sym_autolink] = STATE(181), + [sym_highlighted] = STATE(181), + [sym_insert] = STATE(181), + [sym_delete] = STATE(181), + [sym_superscript] = STATE(181), + [sym_subscript] = STATE(181), + [sym_footnote_reference] = STATE(181), + [sym__image] = STATE(181), + [sym_full_reference_image] = STATE(181), + [sym_collapsed_reference_image] = STATE(181), + [sym_inline_image] = STATE(181), + [sym__image_description] = STATE(688), + [sym__link] = STATE(181), + [sym_full_reference_link] = STATE(181), + [sym_collapsed_reference_link] = STATE(181), + [sym_inline_link] = STATE(181), + [sym_link_text] = STATE(693), + [sym__comment_with_spaces] = STATE(181), + [sym_span] = STATE(181), + [sym_raw_inline] = STATE(181), + [sym_math] = STATE(181), + [sym_verbatim] = STATE(181), + [sym__todo_highlights] = STATE(181), + [sym_todo] = STATE(181), + [sym_note] = STATE(181), + [sym__symbol_fallback] = STATE(181), + [aux_sym__text] = STATE(153), + [aux_sym__inline_repeat1] = STATE(114), [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(285), - [anon_sym__] = ACTIONS(288), - [anon_sym_LBRACE_STAR] = ACTIONS(291), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_BSLASH] = ACTIONS(297), - [sym_quotation_marks] = ACTIONS(300), - [sym_ellipsis] = ACTIONS(300), - [sym_em_dash] = ACTIONS(300), - [sym_en_dash] = ACTIONS(303), - [sym_backslash_escape] = ACTIONS(303), - [anon_sym_LT] = ACTIONS(306), - [anon_sym_LBRACE_EQ] = ACTIONS(309), - [anon_sym_LBRACE_PLUS] = ACTIONS(312), - [anon_sym_LBRACE_DASH] = ACTIONS(315), - [sym_symbol] = ACTIONS(300), - [anon_sym_LBRACE_CARET] = ACTIONS(318), - [anon_sym_CARET] = ACTIONS(318), - [anon_sym_LBRACE_TILDE] = ACTIONS(321), - [anon_sym_TILDE] = ACTIONS(321), - [anon_sym_LBRACK_CARET] = ACTIONS(324), - [anon_sym_BANG_LBRACK] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(330), - [anon_sym_LBRACE2] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(333), - [anon_sym_TODO] = ACTIONS(336), - [anon_sym_WIP] = ACTIONS(336), - [anon_sym_NOTE] = ACTIONS(339), - [anon_sym_INFO] = ACTIONS(339), - [anon_sym_XXX] = ACTIONS(339), - [sym_fixme] = ACTIONS(300), - [anon_sym_PIPE] = ACTIONS(300), - [sym__whitespace1] = ACTIONS(342), - [sym__newline] = ACTIONS(345), - [aux_sym__text_token1] = ACTIONS(348), - [sym__verbatim_begin] = ACTIONS(351), + [anon_sym_LBRACE_] = ACTIONS(420), + [anon_sym__] = ACTIONS(423), + [anon_sym_LBRACE_STAR] = ACTIONS(426), + [anon_sym_STAR] = ACTIONS(429), + [anon_sym_BSLASH] = ACTIONS(432), + [sym_quotation_marks] = ACTIONS(435), + [sym_ellipsis] = ACTIONS(435), + [sym_em_dash] = ACTIONS(435), + [sym_en_dash] = ACTIONS(438), + [sym_backslash_escape] = ACTIONS(438), + [anon_sym_LT] = ACTIONS(441), + [anon_sym_LBRACE_EQ] = ACTIONS(444), + [anon_sym_LBRACE_PLUS] = ACTIONS(447), + [anon_sym_LBRACE_DASH] = ACTIONS(450), + [sym_symbol] = ACTIONS(435), + [anon_sym_LBRACE_CARET] = ACTIONS(453), + [anon_sym_CARET] = ACTIONS(453), + [anon_sym_LBRACE_TILDE] = ACTIONS(456), + [anon_sym_TILDE] = ACTIONS(456), + [anon_sym_LBRACK_CARET] = ACTIONS(459), + [anon_sym_BANG_LBRACK] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE2] = ACTIONS(438), + [anon_sym_DOLLAR] = ACTIONS(468), + [anon_sym_TODO] = ACTIONS(471), + [anon_sym_WIP] = ACTIONS(471), + [anon_sym_NOTE] = ACTIONS(474), + [anon_sym_INFO] = ACTIONS(474), + [anon_sym_XXX] = ACTIONS(474), + [sym_fixme] = ACTIONS(435), + [anon_sym_PIPE] = ACTIONS(435), + [sym__whitespace1] = ACTIONS(477), + [sym__newline] = ACTIONS(480), + [aux_sym__text_token1] = ACTIONS(483), + [sym__verbatim_begin] = ACTIONS(486), }, [75] = { - [sym__inline] = STATE(876), - [sym__element] = STATE(87), - [sym_emphasis] = STATE(176), - [sym_emphasis_begin] = STATE(1013), - [sym_strong] = STATE(176), - [sym_strong_begin] = STATE(97), - [sym__hard_line_break] = STATE(176), - [sym_hard_line_break] = STATE(176), - [sym__smart_punctuation] = STATE(176), - [sym_autolink] = STATE(176), - [sym_highlighted] = STATE(176), - [sym_insert] = STATE(176), - [sym_delete] = STATE(176), - [sym_superscript] = STATE(176), - [sym_subscript] = STATE(176), - [sym_footnote_reference] = STATE(176), - [sym__image] = STATE(176), - [sym_full_reference_image] = STATE(176), - [sym_collapsed_reference_image] = STATE(176), - [sym_inline_image] = STATE(176), - [sym__image_description] = STATE(690), - [sym__link] = STATE(176), - [sym_full_reference_link] = STATE(176), - [sym_collapsed_reference_link] = STATE(176), - [sym_inline_link] = STATE(176), - [sym_link_text] = STATE(691), - [sym__comment_with_spaces] = STATE(176), - [sym_span] = STATE(176), - [sym_raw_inline] = STATE(176), - [sym_math] = STATE(176), - [sym_verbatim] = STATE(176), - [sym__todo_highlights] = STATE(176), - [sym_todo] = STATE(176), - [sym_note] = STATE(176), - [sym__symbol_fallback] = STATE(176), - [aux_sym__text] = STATE(155), - [aux_sym__inline_repeat1] = STATE(87), + [sym__inline] = STATE(993), + [sym__element] = STATE(118), + [sym_emphasis] = STATE(201), + [sym_emphasis_begin] = STATE(1005), + [sym_strong] = STATE(201), + [sym_strong_begin] = STATE(105), + [sym__hard_line_break] = STATE(201), + [sym_hard_line_break] = STATE(201), + [sym__smart_punctuation] = STATE(201), + [sym_autolink] = STATE(201), + [sym_highlighted] = STATE(201), + [sym_insert] = STATE(201), + [sym_delete] = STATE(201), + [sym_superscript] = STATE(201), + [sym_subscript] = STATE(201), + [sym_footnote_reference] = STATE(201), + [sym__image] = STATE(201), + [sym_full_reference_image] = STATE(201), + [sym_collapsed_reference_image] = STATE(201), + [sym_inline_image] = STATE(201), + [sym__image_description] = STATE(712), + [sym__link] = STATE(201), + [sym_full_reference_link] = STATE(201), + [sym_collapsed_reference_link] = STATE(201), + [sym_inline_link] = STATE(201), + [sym_link_text] = STATE(717), + [sym__comment_with_spaces] = STATE(201), + [sym_span] = STATE(201), + [sym_raw_inline] = STATE(201), + [sym_math] = STATE(201), + [sym_verbatim] = STATE(201), + [sym__todo_highlights] = STATE(201), + [sym_todo] = STATE(201), + [sym_note] = STATE(201), + [sym__symbol_fallback] = STATE(201), + [aux_sym__text] = STATE(139), + [aux_sym__inline_repeat1] = STATE(118), [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(210), - [anon_sym__] = ACTIONS(213), - [anon_sym_LBRACE_STAR] = ACTIONS(216), - [anon_sym_STAR] = ACTIONS(219), - [anon_sym_BSLASH] = ACTIONS(222), - [sym_quotation_marks] = ACTIONS(225), - [sym_ellipsis] = ACTIONS(225), - [sym_em_dash] = ACTIONS(225), - [sym_en_dash] = ACTIONS(228), - [sym_backslash_escape] = ACTIONS(228), - [anon_sym_LT] = ACTIONS(231), - [anon_sym_LBRACE_EQ] = ACTIONS(234), - [anon_sym_LBRACE_PLUS] = ACTIONS(237), - [anon_sym_LBRACE_DASH] = ACTIONS(240), - [sym_symbol] = ACTIONS(225), - [anon_sym_LBRACE_CARET] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(243), - [anon_sym_LBRACE_TILDE] = ACTIONS(246), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_LBRACK_CARET] = ACTIONS(249), - [anon_sym_BANG_LBRACK] = ACTIONS(252), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_LBRACE2] = ACTIONS(228), - [anon_sym_DOLLAR] = ACTIONS(258), - [anon_sym_TODO] = ACTIONS(261), - [anon_sym_WIP] = ACTIONS(261), - [anon_sym_NOTE] = ACTIONS(264), - [anon_sym_INFO] = ACTIONS(264), - [anon_sym_XXX] = ACTIONS(264), - [sym_fixme] = ACTIONS(225), - [anon_sym_PIPE] = ACTIONS(225), - [sym__whitespace1] = ACTIONS(267), - [sym__newline] = ACTIONS(270), - [aux_sym__text_token1] = ACTIONS(273), - [sym__verbatim_begin] = ACTIONS(276), + [anon_sym_LBRACE_] = ACTIONS(51), + [anon_sym__] = ACTIONS(54), + [anon_sym_LBRACE_STAR] = ACTIONS(57), + [anon_sym_STAR] = ACTIONS(60), + [anon_sym_BSLASH] = ACTIONS(63), + [sym_quotation_marks] = ACTIONS(66), + [sym_ellipsis] = ACTIONS(66), + [sym_em_dash] = ACTIONS(66), + [sym_en_dash] = ACTIONS(69), + [sym_backslash_escape] = ACTIONS(69), + [anon_sym_LT] = ACTIONS(72), + [anon_sym_LBRACE_EQ] = ACTIONS(75), + [anon_sym_LBRACE_PLUS] = ACTIONS(78), + [anon_sym_LBRACE_DASH] = ACTIONS(81), + [sym_symbol] = ACTIONS(66), + [anon_sym_LBRACE_CARET] = ACTIONS(84), + [anon_sym_CARET] = ACTIONS(84), + [anon_sym_LBRACE_TILDE] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_LBRACK_CARET] = ACTIONS(95), + [anon_sym_BANG_LBRACK] = ACTIONS(100), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_LBRACE2] = ACTIONS(69), + [anon_sym_DOLLAR] = ACTIONS(106), + [anon_sym_TODO] = ACTIONS(109), + [anon_sym_WIP] = ACTIONS(109), + [anon_sym_NOTE] = ACTIONS(112), + [anon_sym_INFO] = ACTIONS(112), + [anon_sym_XXX] = ACTIONS(112), + [sym_fixme] = ACTIONS(66), + [anon_sym_PIPE] = ACTIONS(66), + [sym__whitespace1] = ACTIONS(115), + [sym__newline] = ACTIONS(118), + [aux_sym__text_token1] = ACTIONS(121), + [sym__verbatim_begin] = ACTIONS(124), }, [76] = { [sym__inline] = STATE(875), - [sym__element] = STATE(95), - [sym_emphasis] = STATE(215), - [sym_emphasis_begin] = STATE(1012), - [sym_strong] = STATE(215), - [sym_strong_begin] = STATE(128), - [sym__hard_line_break] = STATE(215), - [sym_hard_line_break] = STATE(215), - [sym__smart_punctuation] = STATE(215), - [sym_autolink] = STATE(215), - [sym_highlighted] = STATE(215), - [sym_insert] = STATE(215), - [sym_delete] = STATE(215), - [sym_superscript] = STATE(215), - [sym_subscript] = STATE(215), - [sym_footnote_reference] = STATE(215), - [sym__image] = STATE(215), - [sym_full_reference_image] = STATE(215), - [sym_collapsed_reference_image] = STATE(215), - [sym_inline_image] = STATE(215), - [sym__image_description] = STATE(696), - [sym__link] = STATE(215), - [sym_full_reference_link] = STATE(215), - [sym_collapsed_reference_link] = STATE(215), - [sym_inline_link] = STATE(215), - [sym_link_text] = STATE(705), - [sym__comment_with_spaces] = STATE(215), - [sym_span] = STATE(215), - [sym_raw_inline] = STATE(215), - [sym_math] = STATE(215), - [sym_verbatim] = STATE(215), - [sym__todo_highlights] = STATE(215), - [sym_todo] = STATE(215), - [sym_note] = STATE(215), - [sym__symbol_fallback] = STATE(215), - [aux_sym__text] = STATE(141), - [aux_sym__inline_repeat1] = STATE(95), + [sym__element] = STATE(88), + [sym_emphasis] = STATE(209), + [sym_emphasis_begin] = STATE(1002), + [sym_strong] = STATE(209), + [sym_strong_begin] = STATE(121), + [sym__hard_line_break] = STATE(209), + [sym_hard_line_break] = STATE(209), + [sym__smart_punctuation] = STATE(209), + [sym_autolink] = STATE(209), + [sym_highlighted] = STATE(209), + [sym_insert] = STATE(209), + [sym_delete] = STATE(209), + [sym_superscript] = STATE(209), + [sym_subscript] = STATE(209), + [sym_footnote_reference] = STATE(209), + [sym__image] = STATE(209), + [sym_full_reference_image] = STATE(209), + [sym_collapsed_reference_image] = STATE(209), + [sym_inline_image] = STATE(209), + [sym__image_description] = STATE(706), + [sym__link] = STATE(209), + [sym_full_reference_link] = STATE(209), + [sym_collapsed_reference_link] = STATE(209), + [sym_inline_link] = STATE(209), + [sym_link_text] = STATE(707), + [sym__comment_with_spaces] = STATE(209), + [sym_span] = STATE(209), + [sym_raw_inline] = STATE(209), + [sym_math] = STATE(209), + [sym_verbatim] = STATE(209), + [sym__todo_highlights] = STATE(209), + [sym_todo] = STATE(209), + [sym_note] = STATE(209), + [sym__symbol_fallback] = STATE(209), + [aux_sym__text] = STATE(150), + [aux_sym__inline_repeat1] = STATE(88), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(282), + [anon_sym__] = ACTIONS(285), + [anon_sym_LBRACE_STAR] = ACTIONS(288), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_BSLASH] = ACTIONS(294), + [sym_quotation_marks] = ACTIONS(297), + [sym_ellipsis] = ACTIONS(297), + [sym_em_dash] = ACTIONS(297), + [sym_en_dash] = ACTIONS(300), + [sym_backslash_escape] = ACTIONS(300), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACE_EQ] = ACTIONS(306), + [anon_sym_LBRACE_PLUS] = ACTIONS(309), + [anon_sym_LBRACE_DASH] = ACTIONS(312), + [sym_symbol] = ACTIONS(297), + [anon_sym_LBRACE_CARET] = ACTIONS(315), + [anon_sym_CARET] = ACTIONS(315), + [anon_sym_LBRACE_TILDE] = ACTIONS(318), + [anon_sym_TILDE] = ACTIONS(318), + [anon_sym_LBRACK_CARET] = ACTIONS(321), + [anon_sym_BANG_LBRACK] = ACTIONS(324), + [anon_sym_LBRACK] = ACTIONS(327), + [anon_sym_LBRACE2] = ACTIONS(300), + [anon_sym_DOLLAR] = ACTIONS(330), + [anon_sym_TODO] = ACTIONS(333), + [anon_sym_WIP] = ACTIONS(333), + [anon_sym_NOTE] = ACTIONS(336), + [anon_sym_INFO] = ACTIONS(336), + [anon_sym_XXX] = ACTIONS(336), + [sym_fixme] = ACTIONS(297), + [anon_sym_PIPE] = ACTIONS(297), + [sym__whitespace1] = ACTIONS(339), + [sym__newline] = ACTIONS(342), + [aux_sym__text_token1] = ACTIONS(345), + [sym__verbatim_begin] = ACTIONS(348), + }, + [77] = { + [sym__inline] = STATE(874), + [sym__element] = STATE(91), + [sym_emphasis] = STATE(174), + [sym_emphasis_begin] = STATE(1001), + [sym_strong] = STATE(174), + [sym_strong_begin] = STATE(126), + [sym__hard_line_break] = STATE(174), + [sym_hard_line_break] = STATE(174), + [sym__smart_punctuation] = STATE(174), + [sym_autolink] = STATE(174), + [sym_highlighted] = STATE(174), + [sym_insert] = STATE(174), + [sym_delete] = STATE(174), + [sym_superscript] = STATE(174), + [sym_subscript] = STATE(174), + [sym_footnote_reference] = STATE(174), + [sym__image] = STATE(174), + [sym_full_reference_image] = STATE(174), + [sym_collapsed_reference_image] = STATE(174), + [sym_inline_image] = STATE(174), + [sym__image_description] = STATE(709), + [sym__link] = STATE(174), + [sym_full_reference_link] = STATE(174), + [sym_collapsed_reference_link] = STATE(174), + [sym_inline_link] = STATE(174), + [sym_link_text] = STATE(710), + [sym__comment_with_spaces] = STATE(174), + [sym_span] = STATE(174), + [sym_raw_inline] = STATE(174), + [sym_math] = STATE(174), + [sym_verbatim] = STATE(174), + [sym__todo_highlights] = STATE(174), + [sym_todo] = STATE(174), + [sym_note] = STATE(174), + [sym__symbol_fallback] = STATE(174), + [aux_sym__text] = STATE(148), + [aux_sym__inline_repeat1] = STATE(91), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACE_] = ACTIONS(213), + [anon_sym__] = ACTIONS(216), + [anon_sym_LBRACE_STAR] = ACTIONS(219), + [anon_sym_STAR] = ACTIONS(222), + [anon_sym_BSLASH] = ACTIONS(225), + [sym_quotation_marks] = ACTIONS(228), + [sym_ellipsis] = ACTIONS(228), + [sym_em_dash] = ACTIONS(228), + [sym_en_dash] = ACTIONS(231), + [sym_backslash_escape] = ACTIONS(231), + [anon_sym_LT] = ACTIONS(234), + [anon_sym_LBRACE_EQ] = ACTIONS(237), + [anon_sym_LBRACE_PLUS] = ACTIONS(240), + [anon_sym_LBRACE_DASH] = ACTIONS(243), + [sym_symbol] = ACTIONS(228), + [anon_sym_LBRACE_CARET] = ACTIONS(246), + [anon_sym_CARET] = ACTIONS(246), + [anon_sym_LBRACE_TILDE] = ACTIONS(249), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_LBRACK_CARET] = ACTIONS(252), + [anon_sym_BANG_LBRACK] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(258), + [anon_sym_LBRACE2] = ACTIONS(231), + [anon_sym_DOLLAR] = ACTIONS(261), + [anon_sym_TODO] = ACTIONS(264), + [anon_sym_WIP] = ACTIONS(264), + [anon_sym_NOTE] = ACTIONS(267), + [anon_sym_INFO] = ACTIONS(267), + [anon_sym_XXX] = ACTIONS(267), + [sym_fixme] = ACTIONS(228), + [anon_sym_PIPE] = ACTIONS(228), + [sym__whitespace1] = ACTIONS(270), + [sym__newline] = ACTIONS(273), + [aux_sym__text_token1] = ACTIONS(276), + [sym__verbatim_begin] = ACTIONS(279), + }, + [78] = { + [sym__inline] = STATE(792), + [sym__element] = STATE(115), + [sym_emphasis] = STATE(205), + [sym_emphasis_begin] = STATE(1000), + [sym_strong] = STATE(205), + [sym_strong_begin] = STATE(129), + [sym__hard_line_break] = STATE(205), + [sym_hard_line_break] = STATE(205), + [sym__smart_punctuation] = STATE(205), + [sym_autolink] = STATE(205), + [sym_highlighted] = STATE(205), + [sym_insert] = STATE(205), + [sym_delete] = STATE(205), + [sym_superscript] = STATE(205), + [sym_subscript] = STATE(205), + [sym_footnote_reference] = STATE(205), + [sym__image] = STATE(205), + [sym_full_reference_image] = STATE(205), + [sym_collapsed_reference_image] = STATE(205), + [sym_inline_image] = STATE(205), + [sym__image_description] = STATE(705), + [sym__link] = STATE(205), + [sym_full_reference_link] = STATE(205), + [sym_collapsed_reference_link] = STATE(205), + [sym_inline_link] = STATE(205), + [sym_link_text] = STATE(703), + [sym__comment_with_spaces] = STATE(205), + [sym_span] = STATE(205), + [sym_raw_inline] = STATE(205), + [sym_math] = STATE(205), + [sym_verbatim] = STATE(205), + [sym__todo_highlights] = STATE(205), + [sym_todo] = STATE(205), + [sym_note] = STATE(205), + [sym__symbol_fallback] = STATE(205), + [aux_sym__text] = STATE(136), + [aux_sym__inline_repeat1] = STATE(115), [anon_sym_LBRACE] = ACTIONS(49), [anon_sym_LBRACE_] = ACTIONS(141), [anon_sym__] = ACTIONS(144), @@ -14145,329 +13804,328 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_symbol] = ACTIONS(156), [anon_sym_LBRACE_CARET] = ACTIONS(174), [anon_sym_CARET] = ACTIONS(174), - [anon_sym_LBRACE_TILDE] = ACTIONS(177), - [anon_sym_TILDE] = ACTIONS(177), - [anon_sym_LBRACK_CARET] = ACTIONS(180), - [anon_sym_BANG_LBRACK] = ACTIONS(183), - [anon_sym_LBRACK] = ACTIONS(186), + [anon_sym_LBRACE_TILDE] = ACTIONS(180), + [anon_sym_TILDE] = ACTIONS(180), + [anon_sym_LBRACK_CARET] = ACTIONS(183), + [anon_sym_BANG_LBRACK] = ACTIONS(186), + [anon_sym_LBRACK] = ACTIONS(189), [anon_sym_LBRACE2] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(189), - [anon_sym_TODO] = ACTIONS(192), - [anon_sym_WIP] = ACTIONS(192), - [anon_sym_NOTE] = ACTIONS(195), - [anon_sym_INFO] = ACTIONS(195), - [anon_sym_XXX] = ACTIONS(195), + [anon_sym_DOLLAR] = ACTIONS(192), + [anon_sym_TODO] = ACTIONS(195), + [anon_sym_WIP] = ACTIONS(195), + [anon_sym_NOTE] = ACTIONS(198), + [anon_sym_INFO] = ACTIONS(198), + [anon_sym_XXX] = ACTIONS(198), [sym_fixme] = ACTIONS(156), [anon_sym_PIPE] = ACTIONS(156), - [sym__whitespace1] = ACTIONS(198), - [sym__newline] = ACTIONS(201), - [aux_sym__text_token1] = ACTIONS(204), - [sym__verbatim_begin] = ACTIONS(207), - }, - [77] = { - [sym__inline] = STATE(995), - [sym__element] = STATE(118), - [sym_emphasis] = STATE(204), - [sym_emphasis_begin] = STATE(1017), - [sym_strong] = STATE(204), - [sym_strong_begin] = STATE(114), - [sym__hard_line_break] = STATE(204), - [sym_hard_line_break] = STATE(204), - [sym__smart_punctuation] = STATE(204), - [sym_autolink] = STATE(204), - [sym_highlighted] = STATE(204), - [sym_insert] = STATE(204), - [sym_delete] = STATE(204), - [sym_superscript] = STATE(204), - [sym_subscript] = STATE(204), - [sym_footnote_reference] = STATE(204), - [sym__image] = STATE(204), - [sym_full_reference_image] = STATE(204), - [sym_collapsed_reference_image] = STATE(204), - [sym_inline_image] = STATE(204), - [sym__image_description] = STATE(714), - [sym__link] = STATE(204), - [sym_full_reference_link] = STATE(204), - [sym_collapsed_reference_link] = STATE(204), - [sym_inline_link] = STATE(204), - [sym_link_text] = STATE(715), - [sym__comment_with_spaces] = STATE(204), - [sym_span] = STATE(204), - [sym_raw_inline] = STATE(204), - [sym_math] = STATE(204), - [sym_verbatim] = STATE(204), - [sym__todo_highlights] = STATE(204), - [sym_todo] = STATE(204), - [sym_note] = STATE(204), - [sym__symbol_fallback] = STATE(204), - [aux_sym__text] = STATE(149), - [aux_sym__inline_repeat1] = STATE(118), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(51), - [anon_sym__] = ACTIONS(54), - [anon_sym_LBRACE_STAR] = ACTIONS(57), - [anon_sym_STAR] = ACTIONS(60), - [anon_sym_BSLASH] = ACTIONS(63), - [sym_quotation_marks] = ACTIONS(66), - [sym_ellipsis] = ACTIONS(66), - [sym_em_dash] = ACTIONS(66), - [sym_en_dash] = ACTIONS(69), - [sym_backslash_escape] = ACTIONS(69), - [anon_sym_LT] = ACTIONS(72), - [anon_sym_LBRACE_EQ] = ACTIONS(75), - [anon_sym_LBRACE_PLUS] = ACTIONS(78), - [anon_sym_LBRACE_DASH] = ACTIONS(81), - [sym_symbol] = ACTIONS(66), - [anon_sym_LBRACE_CARET] = ACTIONS(86), - [anon_sym_CARET] = ACTIONS(86), - [anon_sym_LBRACE_TILDE] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_LBRACK_CARET] = ACTIONS(92), - [anon_sym_BANG_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK] = ACTIONS(100), - [anon_sym_LBRACE2] = ACTIONS(69), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_TODO] = ACTIONS(106), - [anon_sym_WIP] = ACTIONS(106), - [anon_sym_NOTE] = ACTIONS(109), - [anon_sym_INFO] = ACTIONS(109), - [anon_sym_XXX] = ACTIONS(109), - [sym_fixme] = ACTIONS(66), - [anon_sym_PIPE] = ACTIONS(66), - [sym__whitespace1] = ACTIONS(112), - [sym__newline] = ACTIONS(115), - [aux_sym__text_token1] = ACTIONS(118), - [sym__verbatim_begin] = ACTIONS(121), - }, - [78] = { - [sym__inline] = STATE(750), - [sym__element] = STATE(117), - [sym_emphasis] = STATE(182), - [sym_emphasis_begin] = STATE(1016), - [sym_strong] = STATE(182), - [sym_strong_begin] = STATE(122), - [sym__hard_line_break] = STATE(182), - [sym_hard_line_break] = STATE(182), - [sym__smart_punctuation] = STATE(182), - [sym_autolink] = STATE(182), - [sym_highlighted] = STATE(182), - [sym_insert] = STATE(182), - [sym_delete] = STATE(182), - [sym_superscript] = STATE(182), - [sym_subscript] = STATE(182), - [sym_footnote_reference] = STATE(182), - [sym__image] = STATE(182), - [sym_full_reference_image] = STATE(182), - [sym_collapsed_reference_image] = STATE(182), - [sym_inline_image] = STATE(182), - [sym__image_description] = STATE(692), - [sym__link] = STATE(182), - [sym_full_reference_link] = STATE(182), - [sym_collapsed_reference_link] = STATE(182), - [sym_inline_link] = STATE(182), - [sym_link_text] = STATE(689), - [sym__comment_with_spaces] = STATE(182), - [sym_span] = STATE(182), - [sym_raw_inline] = STATE(182), - [sym_math] = STATE(182), - [sym_verbatim] = STATE(182), - [sym__todo_highlights] = STATE(182), - [sym_todo] = STATE(182), - [sym_note] = STATE(182), - [sym__symbol_fallback] = STATE(182), - [aux_sym__text] = STATE(153), - [aux_sym__inline_repeat1] = STATE(117), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(423), - [anon_sym__] = ACTIONS(426), - [anon_sym_LBRACE_STAR] = ACTIONS(429), - [anon_sym_STAR] = ACTIONS(432), - [anon_sym_BSLASH] = ACTIONS(435), - [sym_quotation_marks] = ACTIONS(438), - [sym_ellipsis] = ACTIONS(438), - [sym_em_dash] = ACTIONS(438), - [sym_en_dash] = ACTIONS(441), - [sym_backslash_escape] = ACTIONS(441), - [anon_sym_LT] = ACTIONS(444), - [anon_sym_LBRACE_EQ] = ACTIONS(447), - [anon_sym_LBRACE_PLUS] = ACTIONS(450), - [anon_sym_LBRACE_DASH] = ACTIONS(453), - [sym_symbol] = ACTIONS(438), - [anon_sym_LBRACE_CARET] = ACTIONS(456), - [anon_sym_CARET] = ACTIONS(456), - [anon_sym_LBRACE_TILDE] = ACTIONS(459), - [anon_sym_TILDE] = ACTIONS(459), - [anon_sym_LBRACK_CARET] = ACTIONS(462), - [anon_sym_BANG_LBRACK] = ACTIONS(465), - [anon_sym_LBRACK] = ACTIONS(468), - [anon_sym_LBRACE2] = ACTIONS(441), - [anon_sym_DOLLAR] = ACTIONS(471), - [anon_sym_TODO] = ACTIONS(474), - [anon_sym_WIP] = ACTIONS(474), - [anon_sym_NOTE] = ACTIONS(477), - [anon_sym_INFO] = ACTIONS(477), - [anon_sym_XXX] = ACTIONS(477), - [sym_fixme] = ACTIONS(438), - [anon_sym_PIPE] = ACTIONS(438), - [sym__whitespace1] = ACTIONS(480), - [sym__newline] = ACTIONS(483), - [aux_sym__text_token1] = ACTIONS(486), - [sym__verbatim_begin] = ACTIONS(489), + [sym__whitespace1] = ACTIONS(201), + [sym__newline] = ACTIONS(204), + [aux_sym__text_token1] = ACTIONS(207), + [sym__verbatim_begin] = ACTIONS(210), }, [79] = { - [sym__element] = STATE(103), - [sym_emphasis] = STATE(172), - [sym_emphasis_begin] = STATE(1015), - [sym_strong] = STATE(172), - [sym_strong_begin] = STATE(125), - [sym__hard_line_break] = STATE(172), - [sym_hard_line_break] = STATE(172), - [sym__smart_punctuation] = STATE(172), - [sym_autolink] = STATE(172), - [sym_highlighted] = STATE(172), - [sym_insert] = STATE(172), - [sym_delete] = STATE(172), - [sym_superscript] = STATE(172), - [sym_subscript] = STATE(172), - [sym_footnote_reference] = STATE(172), - [sym__image] = STATE(172), - [sym_full_reference_image] = STATE(172), - [sym_collapsed_reference_image] = STATE(172), - [sym_inline_image] = STATE(172), - [sym__image_description] = STATE(711), - [sym__link] = STATE(172), - [sym_full_reference_link] = STATE(172), - [sym_collapsed_reference_link] = STATE(172), - [sym_inline_link] = STATE(172), - [sym_link_text] = STATE(712), - [sym__comment_with_spaces] = STATE(172), - [sym_span] = STATE(172), - [sym_raw_inline] = STATE(172), - [sym_math] = STATE(172), - [sym_verbatim] = STATE(172), - [sym__todo_highlights] = STATE(172), - [sym_todo] = STATE(172), - [sym_note] = STATE(172), - [sym__symbol_fallback] = STATE(172), - [aux_sym__text] = STATE(170), - [aux_sym__inline_repeat1] = STATE(103), - [anon_sym_LBRACE_] = ACTIONS(564), - [anon_sym__] = ACTIONS(566), - [anon_sym_LBRACE_STAR] = ACTIONS(568), - [anon_sym_STAR] = ACTIONS(570), - [anon_sym_BSLASH] = ACTIONS(572), - [sym_quotation_marks] = ACTIONS(574), - [sym_ellipsis] = ACTIONS(574), - [sym_em_dash] = ACTIONS(574), - [sym_en_dash] = ACTIONS(576), - [sym_backslash_escape] = ACTIONS(576), - [anon_sym_LT] = ACTIONS(578), - [anon_sym_LBRACE_EQ] = ACTIONS(580), - [anon_sym_LBRACE_PLUS] = ACTIONS(582), - [anon_sym_LBRACE_DASH] = ACTIONS(584), - [sym_symbol] = ACTIONS(574), - [anon_sym_LBRACE_CARET] = ACTIONS(586), - [anon_sym_CARET] = ACTIONS(588), - [anon_sym_CARET_RBRACE] = ACTIONS(590), - [anon_sym_LBRACE_TILDE] = ACTIONS(592), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_LBRACK_CARET] = ACTIONS(594), - [anon_sym_BANG_LBRACK] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_LBRACE2] = ACTIONS(576), - [anon_sym_DOLLAR] = ACTIONS(600), - [anon_sym_TODO] = ACTIONS(602), - [anon_sym_WIP] = ACTIONS(602), - [anon_sym_NOTE] = ACTIONS(604), - [anon_sym_INFO] = ACTIONS(604), - [anon_sym_XXX] = ACTIONS(604), - [sym_fixme] = ACTIONS(574), - [anon_sym_PIPE] = ACTIONS(574), - [sym__whitespace1] = ACTIONS(606), - [sym__newline] = ACTIONS(608), - [aux_sym__text_token1] = ACTIONS(610), - [sym__verbatim_begin] = ACTIONS(612), + [sym__inline] = STATE(726), + [sym__element] = STATE(106), + [sym_emphasis] = STATE(186), + [sym_emphasis_begin] = STATE(1006), + [sym_strong] = STATE(186), + [sym_strong_begin] = STATE(79), + [sym__hard_line_break] = STATE(186), + [sym_hard_line_break] = STATE(186), + [sym__smart_punctuation] = STATE(186), + [sym_autolink] = STATE(186), + [sym_highlighted] = STATE(186), + [sym_insert] = STATE(186), + [sym_delete] = STATE(186), + [sym_superscript] = STATE(186), + [sym_subscript] = STATE(186), + [sym_footnote_reference] = STATE(186), + [sym__image] = STATE(186), + [sym_full_reference_image] = STATE(186), + [sym_collapsed_reference_image] = STATE(186), + [sym_inline_image] = STATE(186), + [sym__image_description] = STATE(714), + [sym__link] = STATE(186), + [sym_full_reference_link] = STATE(186), + [sym_collapsed_reference_link] = STATE(186), + [sym_inline_link] = STATE(186), + [sym_link_text] = STATE(713), + [sym__comment_with_spaces] = STATE(186), + [sym_span] = STATE(186), + [sym_raw_inline] = STATE(186), + [sym_math] = STATE(186), + [sym_verbatim] = STATE(186), + [sym__todo_highlights] = STATE(186), + [sym_todo] = STATE(186), + [sym_note] = STATE(186), + [sym__symbol_fallback] = STATE(186), + [aux_sym__text] = STATE(160), + [aux_sym__inline_repeat1] = STATE(106), + [anon_sym_LBRACE_] = ACTIONS(546), + [anon_sym__] = ACTIONS(548), + [anon_sym_LBRACE_STAR] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_BSLASH] = ACTIONS(554), + [sym_quotation_marks] = ACTIONS(556), + [sym_ellipsis] = ACTIONS(556), + [sym_em_dash] = ACTIONS(556), + [sym_en_dash] = ACTIONS(558), + [sym_backslash_escape] = ACTIONS(558), + [anon_sym_LT] = ACTIONS(560), + [anon_sym_LBRACE_EQ] = ACTIONS(562), + [anon_sym_LBRACE_PLUS] = ACTIONS(564), + [anon_sym_LBRACE_DASH] = ACTIONS(566), + [sym_symbol] = ACTIONS(556), + [anon_sym_LBRACE_CARET] = ACTIONS(568), + [anon_sym_CARET] = ACTIONS(568), + [anon_sym_LBRACE_TILDE] = ACTIONS(570), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_LBRACK_CARET] = ACTIONS(572), + [anon_sym_BANG_LBRACK] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LBRACE2] = ACTIONS(558), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_TODO] = ACTIONS(580), + [anon_sym_WIP] = ACTIONS(580), + [anon_sym_NOTE] = ACTIONS(582), + [anon_sym_INFO] = ACTIONS(582), + [anon_sym_XXX] = ACTIONS(582), + [sym_fixme] = ACTIONS(556), + [anon_sym_PIPE] = ACTIONS(556), + [sym__whitespace1] = ACTIONS(584), + [sym__newline] = ACTIONS(586), + [aux_sym__text_token1] = ACTIONS(588), + [sym__verbatim_begin] = ACTIONS(590), }, [80] = { - [sym__inline] = STATE(879), - [sym__element] = STATE(94), - [sym_emphasis] = STATE(188), - [sym_emphasis_begin] = STATE(1020), - [sym_strong] = STATE(188), - [sym_strong_begin] = STATE(106), - [sym__hard_line_break] = STATE(188), - [sym_hard_line_break] = STATE(188), - [sym__smart_punctuation] = STATE(188), - [sym_autolink] = STATE(188), - [sym_highlighted] = STATE(188), - [sym_insert] = STATE(188), - [sym_delete] = STATE(188), - [sym_superscript] = STATE(188), - [sym_subscript] = STATE(188), - [sym_footnote_reference] = STATE(188), - [sym__image] = STATE(188), - [sym_full_reference_image] = STATE(188), - [sym_collapsed_reference_image] = STATE(188), - [sym_inline_image] = STATE(188), - [sym__image_description] = STATE(702), - [sym__link] = STATE(188), - [sym_full_reference_link] = STATE(188), - [sym_collapsed_reference_link] = STATE(188), - [sym_inline_link] = STATE(188), - [sym_link_text] = STATE(700), - [sym__comment_with_spaces] = STATE(188), - [sym_span] = STATE(188), - [sym_raw_inline] = STATE(188), - [sym_math] = STATE(188), - [sym_verbatim] = STATE(188), - [sym__todo_highlights] = STATE(188), - [sym_todo] = STATE(188), - [sym_note] = STATE(188), - [sym__symbol_fallback] = STATE(188), - [aux_sym__text] = STATE(147), - [aux_sym__inline_repeat1] = STATE(94), - [anon_sym_LBRACE_] = ACTIONS(614), - [anon_sym__] = ACTIONS(616), - [anon_sym_LBRACE_STAR] = ACTIONS(618), - [anon_sym_STAR] = ACTIONS(620), - [anon_sym_BSLASH] = ACTIONS(622), - [sym_quotation_marks] = ACTIONS(624), - [sym_ellipsis] = ACTIONS(624), - [sym_em_dash] = ACTIONS(624), - [sym_en_dash] = ACTIONS(626), - [sym_backslash_escape] = ACTIONS(626), - [anon_sym_LT] = ACTIONS(628), - [anon_sym_LBRACE_EQ] = ACTIONS(630), - [anon_sym_LBRACE_PLUS] = ACTIONS(632), - [anon_sym_LBRACE_DASH] = ACTIONS(634), - [sym_symbol] = ACTIONS(624), - [anon_sym_LBRACE_CARET] = ACTIONS(636), - [anon_sym_CARET] = ACTIONS(636), - [anon_sym_LBRACE_TILDE] = ACTIONS(638), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_LBRACK_CARET] = ACTIONS(640), - [anon_sym_BANG_LBRACK] = ACTIONS(642), - [anon_sym_LBRACK] = ACTIONS(644), - [anon_sym_LBRACE2] = ACTIONS(626), - [anon_sym_DOLLAR] = ACTIONS(646), - [anon_sym_TODO] = ACTIONS(648), - [anon_sym_WIP] = ACTIONS(648), - [anon_sym_NOTE] = ACTIONS(650), - [anon_sym_INFO] = ACTIONS(650), - [anon_sym_XXX] = ACTIONS(650), - [sym_fixme] = ACTIONS(624), - [anon_sym_PIPE] = ACTIONS(624), - [sym__whitespace1] = ACTIONS(652), - [sym__newline] = ACTIONS(654), - [aux_sym__text_token1] = ACTIONS(656), - [sym__verbatim_begin] = ACTIONS(658), + [sym__inline] = STATE(828), + [sym__element] = STATE(95), + [sym_emphasis] = STATE(191), + [sym_emphasis_begin] = STATE(1008), + [sym_strong] = STATE(191), + [sym_strong_begin] = STATE(90), + [sym__hard_line_break] = STATE(191), + [sym_hard_line_break] = STATE(191), + [sym__smart_punctuation] = STATE(191), + [sym_autolink] = STATE(191), + [sym_highlighted] = STATE(191), + [sym_insert] = STATE(191), + [sym_delete] = STATE(191), + [sym_superscript] = STATE(191), + [sym_subscript] = STATE(191), + [sym_footnote_reference] = STATE(191), + [sym__image] = STATE(191), + [sym_full_reference_image] = STATE(191), + [sym_collapsed_reference_image] = STATE(191), + [sym_inline_image] = STATE(191), + [sym__image_description] = STATE(699), + [sym__link] = STATE(191), + [sym_full_reference_link] = STATE(191), + [sym_collapsed_reference_link] = STATE(191), + [sym_inline_link] = STATE(191), + [sym_link_text] = STATE(698), + [sym__comment_with_spaces] = STATE(191), + [sym_span] = STATE(191), + [sym_raw_inline] = STATE(191), + [sym_math] = STATE(191), + [sym_verbatim] = STATE(191), + [sym__todo_highlights] = STATE(191), + [sym_todo] = STATE(191), + [sym_note] = STATE(191), + [sym__symbol_fallback] = STATE(191), + [aux_sym__text] = STATE(137), + [aux_sym__inline_repeat1] = STATE(95), + [anon_sym_LBRACE_] = ACTIONS(592), + [anon_sym__] = ACTIONS(594), + [anon_sym_LBRACE_STAR] = ACTIONS(596), + [anon_sym_STAR] = ACTIONS(598), + [anon_sym_BSLASH] = ACTIONS(600), + [sym_quotation_marks] = ACTIONS(602), + [sym_ellipsis] = ACTIONS(602), + [sym_em_dash] = ACTIONS(602), + [sym_en_dash] = ACTIONS(604), + [sym_backslash_escape] = ACTIONS(604), + [anon_sym_LT] = ACTIONS(606), + [anon_sym_LBRACE_EQ] = ACTIONS(608), + [anon_sym_LBRACE_PLUS] = ACTIONS(610), + [anon_sym_LBRACE_DASH] = ACTIONS(612), + [sym_symbol] = ACTIONS(602), + [anon_sym_LBRACE_CARET] = ACTIONS(614), + [anon_sym_CARET] = ACTIONS(614), + [anon_sym_LBRACE_TILDE] = ACTIONS(616), + [anon_sym_TILDE] = ACTIONS(616), + [anon_sym_LBRACK_CARET] = ACTIONS(618), + [anon_sym_BANG_LBRACK] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(622), + [anon_sym_LBRACE2] = ACTIONS(604), + [anon_sym_DOLLAR] = ACTIONS(624), + [anon_sym_TODO] = ACTIONS(626), + [anon_sym_WIP] = ACTIONS(626), + [anon_sym_NOTE] = ACTIONS(628), + [anon_sym_INFO] = ACTIONS(628), + [anon_sym_XXX] = ACTIONS(628), + [sym_fixme] = ACTIONS(602), + [anon_sym_PIPE] = ACTIONS(602), + [sym__whitespace1] = ACTIONS(630), + [sym__newline] = ACTIONS(632), + [aux_sym__text_token1] = ACTIONS(634), + [sym__verbatim_begin] = ACTIONS(636), }, [81] = { [sym__element] = STATE(81), + [sym_emphasis] = STATE(181), + [sym_emphasis_begin] = STATE(1004), + [sym_strong] = STATE(181), + [sym_strong_begin] = STATE(110), + [sym__hard_line_break] = STATE(181), + [sym_hard_line_break] = STATE(181), + [sym__smart_punctuation] = STATE(181), + [sym_autolink] = STATE(181), + [sym_highlighted] = STATE(181), + [sym_insert] = STATE(181), + [sym_delete] = STATE(181), + [sym_superscript] = STATE(181), + [sym_subscript] = STATE(181), + [sym_footnote_reference] = STATE(181), + [sym__image] = STATE(181), + [sym_full_reference_image] = STATE(181), + [sym_collapsed_reference_image] = STATE(181), + [sym_inline_image] = STATE(181), + [sym__image_description] = STATE(688), + [sym__link] = STATE(181), + [sym_full_reference_link] = STATE(181), + [sym_collapsed_reference_link] = STATE(181), + [sym_inline_link] = STATE(181), + [sym_link_text] = STATE(693), + [sym__comment_with_spaces] = STATE(181), + [sym_span] = STATE(181), + [sym_raw_inline] = STATE(181), + [sym_math] = STATE(181), + [sym_verbatim] = STATE(181), + [sym__todo_highlights] = STATE(181), + [sym_todo] = STATE(181), + [sym_note] = STATE(181), + [sym__symbol_fallback] = STATE(181), + [aux_sym__text] = STATE(153), + [aux_sym__inline_repeat1] = STATE(81), + [anon_sym_LBRACE_] = ACTIONS(638), + [anon_sym__] = ACTIONS(641), + [anon_sym_LBRACE_STAR] = ACTIONS(644), + [anon_sym_STAR] = ACTIONS(647), + [anon_sym_BSLASH] = ACTIONS(650), + [sym_quotation_marks] = ACTIONS(653), + [sym_ellipsis] = ACTIONS(653), + [sym_em_dash] = ACTIONS(653), + [sym_en_dash] = ACTIONS(656), + [sym_backslash_escape] = ACTIONS(656), + [anon_sym_LT] = ACTIONS(659), + [anon_sym_LBRACE_EQ] = ACTIONS(662), + [anon_sym_LBRACE_PLUS] = ACTIONS(665), + [anon_sym_LBRACE_DASH] = ACTIONS(668), + [sym_symbol] = ACTIONS(653), + [anon_sym_LBRACE_CARET] = ACTIONS(671), + [anon_sym_CARET] = ACTIONS(671), + [anon_sym_LBRACE_TILDE] = ACTIONS(674), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_TILDE_RBRACE] = ACTIONS(680), + [anon_sym_LBRACK_CARET] = ACTIONS(682), + [anon_sym_BANG_LBRACK] = ACTIONS(685), + [anon_sym_LBRACK] = ACTIONS(688), + [anon_sym_LBRACE2] = ACTIONS(656), + [anon_sym_DOLLAR] = ACTIONS(691), + [anon_sym_TODO] = ACTIONS(694), + [anon_sym_WIP] = ACTIONS(694), + [anon_sym_NOTE] = ACTIONS(697), + [anon_sym_INFO] = ACTIONS(697), + [anon_sym_XXX] = ACTIONS(697), + [sym_fixme] = ACTIONS(653), + [anon_sym_PIPE] = ACTIONS(653), + [sym__whitespace1] = ACTIONS(700), + [sym__newline] = ACTIONS(703), + [aux_sym__text_token1] = ACTIONS(706), + [sym__verbatim_begin] = ACTIONS(709), + }, + [82] = { + [sym__element] = STATE(82), + [sym_emphasis] = STATE(198), + [sym_emphasis_begin] = STATE(970), + [sym_strong] = STATE(198), + [sym_strong_begin] = STATE(97), + [sym__hard_line_break] = STATE(198), + [sym_hard_line_break] = STATE(198), + [sym__smart_punctuation] = STATE(198), + [sym_autolink] = STATE(198), + [sym_highlighted] = STATE(198), + [sym_insert] = STATE(198), + [sym_delete] = STATE(198), + [sym_superscript] = STATE(198), + [sym_subscript] = STATE(198), + [sym_footnote_reference] = STATE(198), + [sym__image] = STATE(198), + [sym_full_reference_image] = STATE(198), + [sym_collapsed_reference_image] = STATE(198), + [sym_inline_image] = STATE(198), + [sym__image_description] = STATE(689), + [sym__link] = STATE(198), + [sym_full_reference_link] = STATE(198), + [sym_collapsed_reference_link] = STATE(198), + [sym_inline_link] = STATE(198), + [sym_link_text] = STATE(694), + [sym__comment_with_spaces] = STATE(198), + [sym_span] = STATE(198), + [sym_raw_inline] = STATE(198), + [sym_math] = STATE(198), + [sym_verbatim] = STATE(198), + [sym__todo_highlights] = STATE(198), + [sym_todo] = STATE(198), + [sym_note] = STATE(198), + [sym__symbol_fallback] = STATE(198), + [aux_sym__text] = STATE(168), + [aux_sym__inline_repeat1] = STATE(82), + [ts_builtin_sym_end] = ACTIONS(680), + [anon_sym_LBRACE_] = ACTIONS(712), + [anon_sym__] = ACTIONS(715), + [anon_sym_LBRACE_STAR] = ACTIONS(718), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_BSLASH] = ACTIONS(724), + [sym_quotation_marks] = ACTIONS(727), + [sym_ellipsis] = ACTIONS(727), + [sym_em_dash] = ACTIONS(727), + [sym_en_dash] = ACTIONS(730), + [sym_backslash_escape] = ACTIONS(730), + [anon_sym_LT] = ACTIONS(733), + [anon_sym_LBRACE_EQ] = ACTIONS(736), + [anon_sym_LBRACE_PLUS] = ACTIONS(739), + [anon_sym_LBRACE_DASH] = ACTIONS(742), + [sym_symbol] = ACTIONS(727), + [anon_sym_LBRACE_CARET] = ACTIONS(745), + [anon_sym_CARET] = ACTIONS(745), + [anon_sym_LBRACE_TILDE] = ACTIONS(748), + [anon_sym_TILDE] = ACTIONS(748), + [anon_sym_LBRACK_CARET] = ACTIONS(751), + [anon_sym_BANG_LBRACK] = ACTIONS(754), + [anon_sym_LBRACK] = ACTIONS(757), + [anon_sym_LBRACE2] = ACTIONS(730), + [anon_sym_DOLLAR] = ACTIONS(760), + [anon_sym_TODO] = ACTIONS(763), + [anon_sym_WIP] = ACTIONS(763), + [anon_sym_NOTE] = ACTIONS(766), + [anon_sym_INFO] = ACTIONS(766), + [anon_sym_XXX] = ACTIONS(766), + [sym_fixme] = ACTIONS(727), + [anon_sym_PIPE] = ACTIONS(727), + [sym__whitespace1] = ACTIONS(769), + [sym__newline] = ACTIONS(772), + [aux_sym__text_token1] = ACTIONS(775), + [sym__verbatim_begin] = ACTIONS(778), + }, + [83] = { + [sym__inline_without_trailing_space] = STATE(884), + [sym__element] = STATE(582), [sym_emphasis] = STATE(176), - [sym_emphasis_begin] = STATE(1013), + [sym_emphasis_begin] = STATE(1007), [sym_strong] = STATE(176), - [sym_strong_begin] = STATE(97), + [sym_strong_begin] = STATE(94), [sym__hard_line_break] = STATE(176), [sym_hard_line_break] = STATE(176), [sym__smart_punctuation] = STATE(176), @@ -14482,12 +14140,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_full_reference_image] = STATE(176), [sym_collapsed_reference_image] = STATE(176), [sym_inline_image] = STATE(176), - [sym__image_description] = STATE(690), + [sym__image_description] = STATE(685), [sym__link] = STATE(176), [sym_full_reference_link] = STATE(176), [sym_collapsed_reference_link] = STATE(176), [sym_inline_link] = STATE(176), - [sym_link_text] = STATE(691), + [sym_link_text] = STATE(704), [sym__comment_with_spaces] = STATE(176), [sym_span] = STATE(176), [sym_raw_inline] = STATE(176), @@ -14497,421 +14155,421 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(176), [sym_note] = STATE(176), [sym__symbol_fallback] = STATE(176), - [aux_sym__text] = STATE(155), - [aux_sym__inline_repeat1] = STATE(81), - [anon_sym_LBRACE_] = ACTIONS(660), - [anon_sym__] = ACTIONS(663), - [anon_sym_LBRACE_STAR] = ACTIONS(666), - [anon_sym_STAR] = ACTIONS(669), - [anon_sym_BSLASH] = ACTIONS(672), - [sym_quotation_marks] = ACTIONS(675), - [sym_ellipsis] = ACTIONS(675), - [sym_em_dash] = ACTIONS(675), - [sym_en_dash] = ACTIONS(678), - [sym_backslash_escape] = ACTIONS(678), - [anon_sym_LT] = ACTIONS(681), - [anon_sym_LBRACE_EQ] = ACTIONS(684), - [anon_sym_LBRACE_PLUS] = ACTIONS(687), - [anon_sym_PLUS_RBRACE] = ACTIONS(690), - [anon_sym_LBRACE_DASH] = ACTIONS(692), - [sym_symbol] = ACTIONS(675), - [anon_sym_LBRACE_CARET] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(695), - [anon_sym_LBRACE_TILDE] = ACTIONS(698), - [anon_sym_TILDE] = ACTIONS(698), - [anon_sym_LBRACK_CARET] = ACTIONS(701), - [anon_sym_BANG_LBRACK] = ACTIONS(704), - [anon_sym_LBRACK] = ACTIONS(707), - [anon_sym_LBRACE2] = ACTIONS(678), - [anon_sym_DOLLAR] = ACTIONS(710), - [anon_sym_TODO] = ACTIONS(713), - [anon_sym_WIP] = ACTIONS(713), - [anon_sym_NOTE] = ACTIONS(716), - [anon_sym_INFO] = ACTIONS(716), - [anon_sym_XXX] = ACTIONS(716), - [sym_fixme] = ACTIONS(675), - [anon_sym_PIPE] = ACTIONS(675), - [sym__whitespace1] = ACTIONS(719), - [sym__newline] = ACTIONS(722), - [aux_sym__text_token1] = ACTIONS(725), - [sym__verbatim_begin] = ACTIONS(728), - }, - [82] = { - [sym__element] = STATE(82), - [sym_emphasis] = STATE(197), - [sym_emphasis_begin] = STATE(1002), - [sym_strong] = STATE(197), - [sym_strong_begin] = STATE(98), - [sym__hard_line_break] = STATE(197), - [sym_hard_line_break] = STATE(197), - [sym__smart_punctuation] = STATE(197), - [sym_autolink] = STATE(197), - [sym_highlighted] = STATE(197), - [sym_insert] = STATE(197), - [sym_delete] = STATE(197), - [sym_superscript] = STATE(197), - [sym_subscript] = STATE(197), - [sym_footnote_reference] = STATE(197), - [sym__image] = STATE(197), - [sym_full_reference_image] = STATE(197), - [sym_collapsed_reference_image] = STATE(197), - [sym_inline_image] = STATE(197), - [sym__image_description] = STATE(685), - [sym__link] = STATE(197), - [sym_full_reference_link] = STATE(197), - [sym_collapsed_reference_link] = STATE(197), - [sym_inline_link] = STATE(197), - [sym_link_text] = STATE(719), - [sym__comment_with_spaces] = STATE(197), - [sym_span] = STATE(197), - [sym_raw_inline] = STATE(197), - [sym_math] = STATE(197), - [sym_verbatim] = STATE(197), - [sym__todo_highlights] = STATE(197), - [sym_todo] = STATE(197), - [sym_note] = STATE(197), - [sym__symbol_fallback] = STATE(197), - [aux_sym__text] = STATE(171), - [aux_sym__inline_repeat1] = STATE(82), - [ts_builtin_sym_end] = ACTIONS(690), - [anon_sym_LBRACE_] = ACTIONS(731), - [anon_sym__] = ACTIONS(734), - [anon_sym_LBRACE_STAR] = ACTIONS(737), - [anon_sym_STAR] = ACTIONS(740), - [anon_sym_BSLASH] = ACTIONS(743), - [sym_quotation_marks] = ACTIONS(746), - [sym_ellipsis] = ACTIONS(746), - [sym_em_dash] = ACTIONS(746), - [sym_en_dash] = ACTIONS(749), - [sym_backslash_escape] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(752), - [anon_sym_LBRACE_EQ] = ACTIONS(755), - [anon_sym_LBRACE_PLUS] = ACTIONS(758), - [anon_sym_LBRACE_DASH] = ACTIONS(761), - [sym_symbol] = ACTIONS(746), - [anon_sym_LBRACE_CARET] = ACTIONS(764), - [anon_sym_CARET] = ACTIONS(764), - [anon_sym_LBRACE_TILDE] = ACTIONS(767), - [anon_sym_TILDE] = ACTIONS(767), - [anon_sym_LBRACK_CARET] = ACTIONS(770), - [anon_sym_BANG_LBRACK] = ACTIONS(773), - [anon_sym_LBRACK] = ACTIONS(776), - [anon_sym_LBRACE2] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(779), - [anon_sym_TODO] = ACTIONS(782), - [anon_sym_WIP] = ACTIONS(782), - [anon_sym_NOTE] = ACTIONS(785), - [anon_sym_INFO] = ACTIONS(785), - [anon_sym_XXX] = ACTIONS(785), - [sym_fixme] = ACTIONS(746), - [anon_sym_PIPE] = ACTIONS(746), - [sym__whitespace1] = ACTIONS(788), - [sym__newline] = ACTIONS(791), - [aux_sym__text_token1] = ACTIONS(794), - [sym__verbatim_begin] = ACTIONS(797), - }, - [83] = { - [sym__element] = STATE(105), - [sym_emphasis] = STATE(211), - [sym_emphasis_begin] = STATE(1014), - [sym_strong] = STATE(211), - [sym_strong_begin] = STATE(121), - [sym__hard_line_break] = STATE(211), - [sym_hard_line_break] = STATE(211), - [sym__smart_punctuation] = STATE(211), - [sym_autolink] = STATE(211), - [sym_highlighted] = STATE(211), - [sym_insert] = STATE(211), - [sym_delete] = STATE(211), - [sym_superscript] = STATE(211), - [sym_subscript] = STATE(211), - [sym_footnote_reference] = STATE(211), - [sym__image] = STATE(211), - [sym_full_reference_image] = STATE(211), - [sym_collapsed_reference_image] = STATE(211), - [sym_inline_image] = STATE(211), - [sym__image_description] = STATE(693), - [sym__link] = STATE(211), - [sym_full_reference_link] = STATE(211), - [sym_collapsed_reference_link] = STATE(211), - [sym_inline_link] = STATE(211), - [sym_link_text] = STATE(694), - [sym__comment_with_spaces] = STATE(211), - [sym_span] = STATE(211), - [sym_raw_inline] = STATE(211), - [sym_math] = STATE(211), - [sym_verbatim] = STATE(211), - [sym__todo_highlights] = STATE(211), - [sym_todo] = STATE(211), - [sym_note] = STATE(211), - [sym__symbol_fallback] = STATE(211), - [aux_sym__text] = STATE(137), - [aux_sym__inline_repeat1] = STATE(105), - [anon_sym_LBRACE_] = ACTIONS(800), - [anon_sym__] = ACTIONS(802), - [anon_sym_LBRACE_STAR] = ACTIONS(804), - [anon_sym_STAR] = ACTIONS(806), - [anon_sym_BSLASH] = ACTIONS(808), - [sym_quotation_marks] = ACTIONS(810), - [sym_ellipsis] = ACTIONS(810), - [sym_em_dash] = ACTIONS(810), - [sym_en_dash] = ACTIONS(812), - [sym_backslash_escape] = ACTIONS(812), - [anon_sym_LT] = ACTIONS(814), - [anon_sym_LBRACE_EQ] = ACTIONS(816), - [anon_sym_LBRACE_PLUS] = ACTIONS(818), - [anon_sym_LBRACE_DASH] = ACTIONS(820), - [anon_sym_DASH_RBRACE] = ACTIONS(590), - [sym_symbol] = ACTIONS(810), - [anon_sym_LBRACE_CARET] = ACTIONS(822), - [anon_sym_CARET] = ACTIONS(822), - [anon_sym_LBRACE_TILDE] = ACTIONS(824), - [anon_sym_TILDE] = ACTIONS(824), - [anon_sym_LBRACK_CARET] = ACTIONS(826), - [anon_sym_BANG_LBRACK] = ACTIONS(828), - [anon_sym_LBRACK] = ACTIONS(830), - [anon_sym_LBRACE2] = ACTIONS(812), - [anon_sym_DOLLAR] = ACTIONS(832), - [anon_sym_TODO] = ACTIONS(834), - [anon_sym_WIP] = ACTIONS(834), - [anon_sym_NOTE] = ACTIONS(836), - [anon_sym_INFO] = ACTIONS(836), - [anon_sym_XXX] = ACTIONS(836), - [sym_fixme] = ACTIONS(810), - [anon_sym_PIPE] = ACTIONS(810), - [sym__whitespace1] = ACTIONS(838), - [sym__newline] = ACTIONS(840), - [aux_sym__text_token1] = ACTIONS(842), - [sym__verbatim_begin] = ACTIONS(844), + [aux_sym__text] = STATE(161), + [aux_sym__inline_repeat1] = STATE(131), + [anon_sym_LBRACE_] = ACTIONS(781), + [anon_sym__] = ACTIONS(783), + [anon_sym_LBRACE_STAR] = ACTIONS(785), + [anon_sym_STAR] = ACTIONS(787), + [anon_sym_BSLASH] = ACTIONS(789), + [sym_quotation_marks] = ACTIONS(791), + [sym_ellipsis] = ACTIONS(791), + [sym_em_dash] = ACTIONS(791), + [sym_en_dash] = ACTIONS(793), + [sym_backslash_escape] = ACTIONS(793), + [anon_sym_LT] = ACTIONS(795), + [anon_sym_LBRACE_EQ] = ACTIONS(797), + [anon_sym_LBRACE_PLUS] = ACTIONS(799), + [anon_sym_LBRACE_DASH] = ACTIONS(801), + [sym_symbol] = ACTIONS(791), + [anon_sym_LBRACE_CARET] = ACTIONS(803), + [anon_sym_CARET] = ACTIONS(803), + [anon_sym_LBRACE_TILDE] = ACTIONS(805), + [anon_sym_TILDE] = ACTIONS(805), + [anon_sym_LBRACK_CARET] = ACTIONS(807), + [anon_sym_BANG_LBRACK] = ACTIONS(809), + [anon_sym_LBRACK] = ACTIONS(811), + [anon_sym_LBRACE2] = ACTIONS(793), + [anon_sym_DOLLAR] = ACTIONS(813), + [anon_sym_TODO] = ACTIONS(815), + [anon_sym_WIP] = ACTIONS(815), + [anon_sym_NOTE] = ACTIONS(817), + [anon_sym_INFO] = ACTIONS(817), + [anon_sym_XXX] = ACTIONS(817), + [sym_fixme] = ACTIONS(791), + [anon_sym_PIPE] = ACTIONS(791), + [sym__whitespace1] = ACTIONS(819), + [sym__newline] = ACTIONS(821), + [aux_sym__text_token1] = ACTIONS(823), + [sym__verbatim_begin] = ACTIONS(825), }, [84] = { - [sym__element] = STATE(84), - [sym_emphasis] = STATE(188), - [sym_emphasis_begin] = STATE(1020), - [sym_strong] = STATE(188), - [sym_strong_begin] = STATE(106), - [sym__hard_line_break] = STATE(188), - [sym_hard_line_break] = STATE(188), - [sym__smart_punctuation] = STATE(188), - [sym_autolink] = STATE(188), - [sym_highlighted] = STATE(188), - [sym_insert] = STATE(188), - [sym_delete] = STATE(188), - [sym_superscript] = STATE(188), - [sym_subscript] = STATE(188), - [sym_footnote_reference] = STATE(188), - [sym__image] = STATE(188), - [sym_full_reference_image] = STATE(188), - [sym_collapsed_reference_image] = STATE(188), - [sym_inline_image] = STATE(188), - [sym__image_description] = STATE(702), - [sym__link] = STATE(188), - [sym_full_reference_link] = STATE(188), - [sym_collapsed_reference_link] = STATE(188), - [sym_inline_link] = STATE(188), - [sym_link_text] = STATE(700), - [sym__comment_with_spaces] = STATE(188), - [sym_span] = STATE(188), - [sym_raw_inline] = STATE(188), - [sym_math] = STATE(188), - [sym_verbatim] = STATE(188), - [sym__todo_highlights] = STATE(188), - [sym_todo] = STATE(188), - [sym_note] = STATE(188), - [sym__symbol_fallback] = STATE(188), - [aux_sym__text] = STATE(147), - [aux_sym__inline_repeat1] = STATE(84), - [anon_sym_LBRACE_] = ACTIONS(846), - [anon_sym__] = ACTIONS(849), - [anon_sym_LBRACE_STAR] = ACTIONS(852), - [anon_sym_STAR] = ACTIONS(855), - [anon_sym_BSLASH] = ACTIONS(858), - [sym_quotation_marks] = ACTIONS(861), - [sym_ellipsis] = ACTIONS(861), - [sym_em_dash] = ACTIONS(861), - [sym_en_dash] = ACTIONS(864), - [sym_backslash_escape] = ACTIONS(864), - [anon_sym_LT] = ACTIONS(867), - [anon_sym_LBRACE_EQ] = ACTIONS(870), - [anon_sym_LBRACE_PLUS] = ACTIONS(873), - [anon_sym_LBRACE_DASH] = ACTIONS(876), - [sym_symbol] = ACTIONS(861), - [anon_sym_LBRACE_CARET] = ACTIONS(879), - [anon_sym_CARET] = ACTIONS(879), - [anon_sym_LBRACE_TILDE] = ACTIONS(882), - [anon_sym_TILDE] = ACTIONS(882), - [anon_sym_LBRACK_CARET] = ACTIONS(885), - [anon_sym_BANG_LBRACK] = ACTIONS(888), - [anon_sym_LBRACK] = ACTIONS(891), - [anon_sym_RBRACK2] = ACTIONS(690), - [anon_sym_LBRACE2] = ACTIONS(864), - [anon_sym_DOLLAR] = ACTIONS(894), - [anon_sym_TODO] = ACTIONS(897), - [anon_sym_WIP] = ACTIONS(897), - [anon_sym_NOTE] = ACTIONS(900), - [anon_sym_INFO] = ACTIONS(900), - [anon_sym_XXX] = ACTIONS(900), - [sym_fixme] = ACTIONS(861), - [anon_sym_PIPE] = ACTIONS(861), - [sym__whitespace1] = ACTIONS(903), - [sym__newline] = ACTIONS(906), - [aux_sym__text_token1] = ACTIONS(909), - [sym__verbatim_begin] = ACTIONS(912), + [sym__inline] = STATE(733), + [sym__element] = STATE(106), + [sym_emphasis] = STATE(186), + [sym_emphasis_begin] = STATE(1006), + [sym_strong] = STATE(186), + [sym_strong_begin] = STATE(79), + [sym__hard_line_break] = STATE(186), + [sym_hard_line_break] = STATE(186), + [sym__smart_punctuation] = STATE(186), + [sym_autolink] = STATE(186), + [sym_highlighted] = STATE(186), + [sym_insert] = STATE(186), + [sym_delete] = STATE(186), + [sym_superscript] = STATE(186), + [sym_subscript] = STATE(186), + [sym_footnote_reference] = STATE(186), + [sym__image] = STATE(186), + [sym_full_reference_image] = STATE(186), + [sym_collapsed_reference_image] = STATE(186), + [sym_inline_image] = STATE(186), + [sym__image_description] = STATE(714), + [sym__link] = STATE(186), + [sym_full_reference_link] = STATE(186), + [sym_collapsed_reference_link] = STATE(186), + [sym_inline_link] = STATE(186), + [sym_link_text] = STATE(713), + [sym__comment_with_spaces] = STATE(186), + [sym_span] = STATE(186), + [sym_raw_inline] = STATE(186), + [sym_math] = STATE(186), + [sym_verbatim] = STATE(186), + [sym__todo_highlights] = STATE(186), + [sym_todo] = STATE(186), + [sym_note] = STATE(186), + [sym__symbol_fallback] = STATE(186), + [aux_sym__text] = STATE(160), + [aux_sym__inline_repeat1] = STATE(106), + [anon_sym_LBRACE_] = ACTIONS(546), + [anon_sym__] = ACTIONS(548), + [anon_sym_LBRACE_STAR] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_BSLASH] = ACTIONS(554), + [sym_quotation_marks] = ACTIONS(556), + [sym_ellipsis] = ACTIONS(556), + [sym_em_dash] = ACTIONS(556), + [sym_en_dash] = ACTIONS(558), + [sym_backslash_escape] = ACTIONS(558), + [anon_sym_LT] = ACTIONS(560), + [anon_sym_LBRACE_EQ] = ACTIONS(562), + [anon_sym_LBRACE_PLUS] = ACTIONS(564), + [anon_sym_LBRACE_DASH] = ACTIONS(566), + [sym_symbol] = ACTIONS(556), + [anon_sym_LBRACE_CARET] = ACTIONS(568), + [anon_sym_CARET] = ACTIONS(568), + [anon_sym_LBRACE_TILDE] = ACTIONS(570), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_LBRACK_CARET] = ACTIONS(572), + [anon_sym_BANG_LBRACK] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LBRACE2] = ACTIONS(558), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_TODO] = ACTIONS(580), + [anon_sym_WIP] = ACTIONS(580), + [anon_sym_NOTE] = ACTIONS(582), + [anon_sym_INFO] = ACTIONS(582), + [anon_sym_XXX] = ACTIONS(582), + [sym_fixme] = ACTIONS(556), + [anon_sym_PIPE] = ACTIONS(556), + [sym__whitespace1] = ACTIONS(584), + [sym__newline] = ACTIONS(586), + [aux_sym__text_token1] = ACTIONS(588), + [sym__verbatim_begin] = ACTIONS(590), }, [85] = { - [sym__inline_without_trailing_space] = STATE(734), - [sym__element] = STATE(581), - [sym_emphasis] = STATE(179), - [sym_emphasis_begin] = STATE(1019), - [sym_strong] = STATE(179), - [sym_strong_begin] = STATE(110), - [sym__hard_line_break] = STATE(179), - [sym_hard_line_break] = STATE(179), - [sym__smart_punctuation] = STATE(179), - [sym_autolink] = STATE(179), - [sym_highlighted] = STATE(179), - [sym_insert] = STATE(179), - [sym_delete] = STATE(179), - [sym_superscript] = STATE(179), - [sym_subscript] = STATE(179), - [sym_footnote_reference] = STATE(179), - [sym__image] = STATE(179), - [sym_full_reference_image] = STATE(179), - [sym_collapsed_reference_image] = STATE(179), - [sym_inline_image] = STATE(179), - [sym__image_description] = STATE(720), - [sym__link] = STATE(179), - [sym_full_reference_link] = STATE(179), - [sym_collapsed_reference_link] = STATE(179), - [sym_inline_link] = STATE(179), - [sym_link_text] = STATE(697), - [sym__comment_with_spaces] = STATE(179), - [sym_span] = STATE(179), - [sym_raw_inline] = STATE(179), - [sym_math] = STATE(179), - [sym_verbatim] = STATE(179), - [sym__todo_highlights] = STATE(179), - [sym_todo] = STATE(179), - [sym_note] = STATE(179), - [sym__symbol_fallback] = STATE(179), - [aux_sym__text] = STATE(163), - [aux_sym__inline_repeat1] = STATE(130), - [anon_sym_LBRACE_] = ACTIONS(915), - [anon_sym__] = ACTIONS(917), - [anon_sym_LBRACE_STAR] = ACTIONS(919), - [anon_sym_STAR] = ACTIONS(921), - [anon_sym_BSLASH] = ACTIONS(923), - [sym_quotation_marks] = ACTIONS(925), - [sym_ellipsis] = ACTIONS(925), - [sym_em_dash] = ACTIONS(925), - [sym_en_dash] = ACTIONS(927), - [sym_backslash_escape] = ACTIONS(927), - [anon_sym_LT] = ACTIONS(929), - [anon_sym_LBRACE_EQ] = ACTIONS(931), - [anon_sym_LBRACE_PLUS] = ACTIONS(933), - [anon_sym_LBRACE_DASH] = ACTIONS(935), - [sym_symbol] = ACTIONS(925), - [anon_sym_LBRACE_CARET] = ACTIONS(937), - [anon_sym_CARET] = ACTIONS(937), - [anon_sym_LBRACE_TILDE] = ACTIONS(939), - [anon_sym_TILDE] = ACTIONS(939), - [anon_sym_LBRACK_CARET] = ACTIONS(941), - [anon_sym_BANG_LBRACK] = ACTIONS(943), - [anon_sym_LBRACK] = ACTIONS(945), - [anon_sym_LBRACE2] = ACTIONS(927), - [anon_sym_DOLLAR] = ACTIONS(947), - [anon_sym_TODO] = ACTIONS(949), - [anon_sym_WIP] = ACTIONS(949), - [anon_sym_NOTE] = ACTIONS(951), - [anon_sym_INFO] = ACTIONS(951), - [anon_sym_XXX] = ACTIONS(951), - [sym_fixme] = ACTIONS(925), - [anon_sym_PIPE] = ACTIONS(925), - [sym__whitespace1] = ACTIONS(953), - [sym__newline] = ACTIONS(955), - [aux_sym__text_token1] = ACTIONS(957), - [sym__verbatim_begin] = ACTIONS(959), + [sym__inline] = STATE(863), + [sym__element] = STATE(95), + [sym_emphasis] = STATE(191), + [sym_emphasis_begin] = STATE(1008), + [sym_strong] = STATE(191), + [sym_strong_begin] = STATE(90), + [sym__hard_line_break] = STATE(191), + [sym_hard_line_break] = STATE(191), + [sym__smart_punctuation] = STATE(191), + [sym_autolink] = STATE(191), + [sym_highlighted] = STATE(191), + [sym_insert] = STATE(191), + [sym_delete] = STATE(191), + [sym_superscript] = STATE(191), + [sym_subscript] = STATE(191), + [sym_footnote_reference] = STATE(191), + [sym__image] = STATE(191), + [sym_full_reference_image] = STATE(191), + [sym_collapsed_reference_image] = STATE(191), + [sym_inline_image] = STATE(191), + [sym__image_description] = STATE(699), + [sym__link] = STATE(191), + [sym_full_reference_link] = STATE(191), + [sym_collapsed_reference_link] = STATE(191), + [sym_inline_link] = STATE(191), + [sym_link_text] = STATE(698), + [sym__comment_with_spaces] = STATE(191), + [sym_span] = STATE(191), + [sym_raw_inline] = STATE(191), + [sym_math] = STATE(191), + [sym_verbatim] = STATE(191), + [sym__todo_highlights] = STATE(191), + [sym_todo] = STATE(191), + [sym_note] = STATE(191), + [sym__symbol_fallback] = STATE(191), + [aux_sym__text] = STATE(137), + [aux_sym__inline_repeat1] = STATE(95), + [anon_sym_LBRACE_] = ACTIONS(592), + [anon_sym__] = ACTIONS(594), + [anon_sym_LBRACE_STAR] = ACTIONS(596), + [anon_sym_STAR] = ACTIONS(598), + [anon_sym_BSLASH] = ACTIONS(600), + [sym_quotation_marks] = ACTIONS(602), + [sym_ellipsis] = ACTIONS(602), + [sym_em_dash] = ACTIONS(602), + [sym_en_dash] = ACTIONS(604), + [sym_backslash_escape] = ACTIONS(604), + [anon_sym_LT] = ACTIONS(606), + [anon_sym_LBRACE_EQ] = ACTIONS(608), + [anon_sym_LBRACE_PLUS] = ACTIONS(610), + [anon_sym_LBRACE_DASH] = ACTIONS(612), + [sym_symbol] = ACTIONS(602), + [anon_sym_LBRACE_CARET] = ACTIONS(614), + [anon_sym_CARET] = ACTIONS(614), + [anon_sym_LBRACE_TILDE] = ACTIONS(616), + [anon_sym_TILDE] = ACTIONS(616), + [anon_sym_LBRACK_CARET] = ACTIONS(618), + [anon_sym_BANG_LBRACK] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(622), + [anon_sym_LBRACE2] = ACTIONS(604), + [anon_sym_DOLLAR] = ACTIONS(624), + [anon_sym_TODO] = ACTIONS(626), + [anon_sym_WIP] = ACTIONS(626), + [anon_sym_NOTE] = ACTIONS(628), + [anon_sym_INFO] = ACTIONS(628), + [anon_sym_XXX] = ACTIONS(628), + [sym_fixme] = ACTIONS(602), + [anon_sym_PIPE] = ACTIONS(602), + [sym__whitespace1] = ACTIONS(630), + [sym__newline] = ACTIONS(632), + [aux_sym__text_token1] = ACTIONS(634), + [sym__verbatim_begin] = ACTIONS(636), }, [86] = { - [sym__inline_without_trailing_space] = STATE(739), - [sym__element] = STATE(581), - [sym_emphasis] = STATE(179), - [sym_emphasis_begin] = STATE(1019), - [sym_strong] = STATE(179), - [sym_strong_begin] = STATE(110), - [sym__hard_line_break] = STATE(179), - [sym_hard_line_break] = STATE(179), - [sym__smart_punctuation] = STATE(179), - [sym_autolink] = STATE(179), - [sym_highlighted] = STATE(179), - [sym_insert] = STATE(179), - [sym_delete] = STATE(179), - [sym_superscript] = STATE(179), - [sym_subscript] = STATE(179), - [sym_footnote_reference] = STATE(179), - [sym__image] = STATE(179), - [sym_full_reference_image] = STATE(179), - [sym_collapsed_reference_image] = STATE(179), - [sym_inline_image] = STATE(179), - [sym__image_description] = STATE(720), - [sym__link] = STATE(179), - [sym_full_reference_link] = STATE(179), - [sym_collapsed_reference_link] = STATE(179), - [sym_inline_link] = STATE(179), - [sym_link_text] = STATE(697), - [sym__comment_with_spaces] = STATE(179), - [sym_span] = STATE(179), - [sym_raw_inline] = STATE(179), - [sym_math] = STATE(179), - [sym_verbatim] = STATE(179), - [sym__todo_highlights] = STATE(179), - [sym_todo] = STATE(179), - [sym_note] = STATE(179), - [sym__symbol_fallback] = STATE(179), - [aux_sym__text] = STATE(163), - [aux_sym__inline_repeat1] = STATE(130), - [anon_sym_LBRACE_] = ACTIONS(915), - [anon_sym__] = ACTIONS(917), - [anon_sym_LBRACE_STAR] = ACTIONS(919), - [anon_sym_STAR] = ACTIONS(921), - [anon_sym_BSLASH] = ACTIONS(923), - [sym_quotation_marks] = ACTIONS(925), - [sym_ellipsis] = ACTIONS(925), - [sym_em_dash] = ACTIONS(925), - [sym_en_dash] = ACTIONS(927), - [sym_backslash_escape] = ACTIONS(927), - [anon_sym_LT] = ACTIONS(929), - [anon_sym_LBRACE_EQ] = ACTIONS(931), - [anon_sym_LBRACE_PLUS] = ACTIONS(933), - [anon_sym_LBRACE_DASH] = ACTIONS(935), - [sym_symbol] = ACTIONS(925), - [anon_sym_LBRACE_CARET] = ACTIONS(937), - [anon_sym_CARET] = ACTIONS(937), - [anon_sym_LBRACE_TILDE] = ACTIONS(939), - [anon_sym_TILDE] = ACTIONS(939), - [anon_sym_LBRACK_CARET] = ACTIONS(941), - [anon_sym_BANG_LBRACK] = ACTIONS(943), - [anon_sym_LBRACK] = ACTIONS(945), - [anon_sym_LBRACE2] = ACTIONS(927), - [anon_sym_DOLLAR] = ACTIONS(947), - [anon_sym_TODO] = ACTIONS(949), - [anon_sym_WIP] = ACTIONS(949), - [anon_sym_NOTE] = ACTIONS(951), - [anon_sym_INFO] = ACTIONS(951), - [anon_sym_XXX] = ACTIONS(951), - [sym_fixme] = ACTIONS(925), - [anon_sym_PIPE] = ACTIONS(925), - [sym__whitespace1] = ACTIONS(953), - [sym__newline] = ACTIONS(955), - [aux_sym__text_token1] = ACTIONS(957), - [sym__verbatim_begin] = ACTIONS(959), + [sym__element] = STATE(86), + [sym_emphasis] = STATE(209), + [sym_emphasis_begin] = STATE(1002), + [sym_strong] = STATE(209), + [sym_strong_begin] = STATE(121), + [sym__hard_line_break] = STATE(209), + [sym_hard_line_break] = STATE(209), + [sym__smart_punctuation] = STATE(209), + [sym_autolink] = STATE(209), + [sym_highlighted] = STATE(209), + [sym_insert] = STATE(209), + [sym_delete] = STATE(209), + [sym_superscript] = STATE(209), + [sym_subscript] = STATE(209), + [sym_footnote_reference] = STATE(209), + [sym__image] = STATE(209), + [sym_full_reference_image] = STATE(209), + [sym_collapsed_reference_image] = STATE(209), + [sym_inline_image] = STATE(209), + [sym__image_description] = STATE(706), + [sym__link] = STATE(209), + [sym_full_reference_link] = STATE(209), + [sym_collapsed_reference_link] = STATE(209), + [sym_inline_link] = STATE(209), + [sym_link_text] = STATE(707), + [sym__comment_with_spaces] = STATE(209), + [sym_span] = STATE(209), + [sym_raw_inline] = STATE(209), + [sym_math] = STATE(209), + [sym_verbatim] = STATE(209), + [sym__todo_highlights] = STATE(209), + [sym_todo] = STATE(209), + [sym_note] = STATE(209), + [sym__symbol_fallback] = STATE(209), + [aux_sym__text] = STATE(150), + [aux_sym__inline_repeat1] = STATE(86), + [anon_sym_LBRACE_] = ACTIONS(827), + [anon_sym__] = ACTIONS(830), + [anon_sym_LBRACE_STAR] = ACTIONS(833), + [anon_sym_STAR] = ACTIONS(836), + [anon_sym_BSLASH] = ACTIONS(839), + [sym_quotation_marks] = ACTIONS(842), + [sym_ellipsis] = ACTIONS(842), + [sym_em_dash] = ACTIONS(842), + [sym_en_dash] = ACTIONS(845), + [sym_backslash_escape] = ACTIONS(845), + [anon_sym_LT] = ACTIONS(848), + [anon_sym_LBRACE_EQ] = ACTIONS(851), + [anon_sym_LBRACE_PLUS] = ACTIONS(854), + [anon_sym_LBRACE_DASH] = ACTIONS(857), + [anon_sym_DASH_RBRACE] = ACTIONS(680), + [sym_symbol] = ACTIONS(842), + [anon_sym_LBRACE_CARET] = ACTIONS(860), + [anon_sym_CARET] = ACTIONS(860), + [anon_sym_LBRACE_TILDE] = ACTIONS(863), + [anon_sym_TILDE] = ACTIONS(863), + [anon_sym_LBRACK_CARET] = ACTIONS(866), + [anon_sym_BANG_LBRACK] = ACTIONS(869), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_LBRACE2] = ACTIONS(845), + [anon_sym_DOLLAR] = ACTIONS(875), + [anon_sym_TODO] = ACTIONS(878), + [anon_sym_WIP] = ACTIONS(878), + [anon_sym_NOTE] = ACTIONS(881), + [anon_sym_INFO] = ACTIONS(881), + [anon_sym_XXX] = ACTIONS(881), + [sym_fixme] = ACTIONS(842), + [anon_sym_PIPE] = ACTIONS(842), + [sym__whitespace1] = ACTIONS(884), + [sym__newline] = ACTIONS(887), + [aux_sym__text_token1] = ACTIONS(890), + [sym__verbatim_begin] = ACTIONS(893), }, [87] = { - [sym__element] = STATE(81), + [sym__element] = STATE(87), + [sym_emphasis] = STATE(174), + [sym_emphasis_begin] = STATE(1001), + [sym_strong] = STATE(174), + [sym_strong_begin] = STATE(126), + [sym__hard_line_break] = STATE(174), + [sym_hard_line_break] = STATE(174), + [sym__smart_punctuation] = STATE(174), + [sym_autolink] = STATE(174), + [sym_highlighted] = STATE(174), + [sym_insert] = STATE(174), + [sym_delete] = STATE(174), + [sym_superscript] = STATE(174), + [sym_subscript] = STATE(174), + [sym_footnote_reference] = STATE(174), + [sym__image] = STATE(174), + [sym_full_reference_image] = STATE(174), + [sym_collapsed_reference_image] = STATE(174), + [sym_inline_image] = STATE(174), + [sym__image_description] = STATE(709), + [sym__link] = STATE(174), + [sym_full_reference_link] = STATE(174), + [sym_collapsed_reference_link] = STATE(174), + [sym_inline_link] = STATE(174), + [sym_link_text] = STATE(710), + [sym__comment_with_spaces] = STATE(174), + [sym_span] = STATE(174), + [sym_raw_inline] = STATE(174), + [sym_math] = STATE(174), + [sym_verbatim] = STATE(174), + [sym__todo_highlights] = STATE(174), + [sym_todo] = STATE(174), + [sym_note] = STATE(174), + [sym__symbol_fallback] = STATE(174), + [aux_sym__text] = STATE(148), + [aux_sym__inline_repeat1] = STATE(87), + [anon_sym_LBRACE_] = ACTIONS(896), + [anon_sym__] = ACTIONS(899), + [anon_sym_LBRACE_STAR] = ACTIONS(902), + [anon_sym_STAR] = ACTIONS(905), + [anon_sym_BSLASH] = ACTIONS(908), + [sym_quotation_marks] = ACTIONS(911), + [sym_ellipsis] = ACTIONS(911), + [sym_em_dash] = ACTIONS(911), + [sym_en_dash] = ACTIONS(914), + [sym_backslash_escape] = ACTIONS(914), + [anon_sym_LT] = ACTIONS(917), + [anon_sym_LBRACE_EQ] = ACTIONS(920), + [anon_sym_LBRACE_PLUS] = ACTIONS(923), + [anon_sym_PLUS_RBRACE] = ACTIONS(680), + [anon_sym_LBRACE_DASH] = ACTIONS(926), + [sym_symbol] = ACTIONS(911), + [anon_sym_LBRACE_CARET] = ACTIONS(929), + [anon_sym_CARET] = ACTIONS(929), + [anon_sym_LBRACE_TILDE] = ACTIONS(932), + [anon_sym_TILDE] = ACTIONS(932), + [anon_sym_LBRACK_CARET] = ACTIONS(935), + [anon_sym_BANG_LBRACK] = ACTIONS(938), + [anon_sym_LBRACK] = ACTIONS(941), + [anon_sym_LBRACE2] = ACTIONS(914), + [anon_sym_DOLLAR] = ACTIONS(944), + [anon_sym_TODO] = ACTIONS(947), + [anon_sym_WIP] = ACTIONS(947), + [anon_sym_NOTE] = ACTIONS(950), + [anon_sym_INFO] = ACTIONS(950), + [anon_sym_XXX] = ACTIONS(950), + [sym_fixme] = ACTIONS(911), + [anon_sym_PIPE] = ACTIONS(911), + [sym__whitespace1] = ACTIONS(953), + [sym__newline] = ACTIONS(956), + [aux_sym__text_token1] = ACTIONS(959), + [sym__verbatim_begin] = ACTIONS(962), + }, + [88] = { + [sym__element] = STATE(86), + [sym_emphasis] = STATE(209), + [sym_emphasis_begin] = STATE(1002), + [sym_strong] = STATE(209), + [sym_strong_begin] = STATE(121), + [sym__hard_line_break] = STATE(209), + [sym_hard_line_break] = STATE(209), + [sym__smart_punctuation] = STATE(209), + [sym_autolink] = STATE(209), + [sym_highlighted] = STATE(209), + [sym_insert] = STATE(209), + [sym_delete] = STATE(209), + [sym_superscript] = STATE(209), + [sym_subscript] = STATE(209), + [sym_footnote_reference] = STATE(209), + [sym__image] = STATE(209), + [sym_full_reference_image] = STATE(209), + [sym_collapsed_reference_image] = STATE(209), + [sym_inline_image] = STATE(209), + [sym__image_description] = STATE(706), + [sym__link] = STATE(209), + [sym_full_reference_link] = STATE(209), + [sym_collapsed_reference_link] = STATE(209), + [sym_inline_link] = STATE(209), + [sym_link_text] = STATE(707), + [sym__comment_with_spaces] = STATE(209), + [sym_span] = STATE(209), + [sym_raw_inline] = STATE(209), + [sym_math] = STATE(209), + [sym_verbatim] = STATE(209), + [sym__todo_highlights] = STATE(209), + [sym_todo] = STATE(209), + [sym_note] = STATE(209), + [sym__symbol_fallback] = STATE(209), + [aux_sym__text] = STATE(150), + [aux_sym__inline_repeat1] = STATE(86), + [anon_sym_LBRACE_] = ACTIONS(965), + [anon_sym__] = ACTIONS(967), + [anon_sym_LBRACE_STAR] = ACTIONS(969), + [anon_sym_STAR] = ACTIONS(971), + [anon_sym_BSLASH] = ACTIONS(973), + [sym_quotation_marks] = ACTIONS(975), + [sym_ellipsis] = ACTIONS(975), + [sym_em_dash] = ACTIONS(975), + [sym_en_dash] = ACTIONS(977), + [sym_backslash_escape] = ACTIONS(977), + [anon_sym_LT] = ACTIONS(979), + [anon_sym_LBRACE_EQ] = ACTIONS(981), + [anon_sym_LBRACE_PLUS] = ACTIONS(983), + [anon_sym_LBRACE_DASH] = ACTIONS(985), + [anon_sym_DASH_RBRACE] = ACTIONS(987), + [sym_symbol] = ACTIONS(975), + [anon_sym_LBRACE_CARET] = ACTIONS(989), + [anon_sym_CARET] = ACTIONS(989), + [anon_sym_LBRACE_TILDE] = ACTIONS(991), + [anon_sym_TILDE] = ACTIONS(991), + [anon_sym_LBRACK_CARET] = ACTIONS(993), + [anon_sym_BANG_LBRACK] = ACTIONS(995), + [anon_sym_LBRACK] = ACTIONS(997), + [anon_sym_LBRACE2] = ACTIONS(977), + [anon_sym_DOLLAR] = ACTIONS(999), + [anon_sym_TODO] = ACTIONS(1001), + [anon_sym_WIP] = ACTIONS(1001), + [anon_sym_NOTE] = ACTIONS(1003), + [anon_sym_INFO] = ACTIONS(1003), + [anon_sym_XXX] = ACTIONS(1003), + [sym_fixme] = ACTIONS(975), + [anon_sym_PIPE] = ACTIONS(975), + [sym__whitespace1] = ACTIONS(1005), + [sym__newline] = ACTIONS(1007), + [aux_sym__text_token1] = ACTIONS(1009), + [sym__verbatim_begin] = ACTIONS(1011), + }, + [89] = { + [sym__inline_without_trailing_space] = STATE(862), + [sym__element] = STATE(582), [sym_emphasis] = STATE(176), - [sym_emphasis_begin] = STATE(1013), + [sym_emphasis_begin] = STATE(1007), [sym_strong] = STATE(176), - [sym_strong_begin] = STATE(97), + [sym_strong_begin] = STATE(94), [sym__hard_line_break] = STATE(176), [sym_hard_line_break] = STATE(176), [sym__smart_punctuation] = STATE(176), @@ -14926,12 +14584,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_full_reference_image] = STATE(176), [sym_collapsed_reference_image] = STATE(176), [sym_inline_image] = STATE(176), - [sym__image_description] = STATE(690), + [sym__image_description] = STATE(685), [sym__link] = STATE(176), [sym_full_reference_link] = STATE(176), [sym_collapsed_reference_link] = STATE(176), [sym_inline_link] = STATE(176), - [sym_link_text] = STATE(691), + [sym_link_text] = STATE(704), [sym__comment_with_spaces] = STATE(176), [sym_span] = STATE(176), [sym_raw_inline] = STATE(176), @@ -14941,1045 +14599,822 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(176), [sym_note] = STATE(176), [sym__symbol_fallback] = STATE(176), - [aux_sym__text] = STATE(155), - [aux_sym__inline_repeat1] = STATE(81), - [anon_sym_LBRACE_] = ACTIONS(961), - [anon_sym__] = ACTIONS(963), - [anon_sym_LBRACE_STAR] = ACTIONS(965), - [anon_sym_STAR] = ACTIONS(967), - [anon_sym_BSLASH] = ACTIONS(969), - [sym_quotation_marks] = ACTIONS(971), - [sym_ellipsis] = ACTIONS(971), - [sym_em_dash] = ACTIONS(971), - [sym_en_dash] = ACTIONS(973), - [sym_backslash_escape] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(975), - [anon_sym_LBRACE_EQ] = ACTIONS(977), - [anon_sym_LBRACE_PLUS] = ACTIONS(979), - [anon_sym_PLUS_RBRACE] = ACTIONS(590), - [anon_sym_LBRACE_DASH] = ACTIONS(981), - [sym_symbol] = ACTIONS(971), - [anon_sym_LBRACE_CARET] = ACTIONS(983), - [anon_sym_CARET] = ACTIONS(983), - [anon_sym_LBRACE_TILDE] = ACTIONS(985), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_LBRACK_CARET] = ACTIONS(987), - [anon_sym_BANG_LBRACK] = ACTIONS(989), - [anon_sym_LBRACK] = ACTIONS(991), - [anon_sym_LBRACE2] = ACTIONS(973), - [anon_sym_DOLLAR] = ACTIONS(993), - [anon_sym_TODO] = ACTIONS(995), - [anon_sym_WIP] = ACTIONS(995), - [anon_sym_NOTE] = ACTIONS(997), - [anon_sym_INFO] = ACTIONS(997), - [anon_sym_XXX] = ACTIONS(997), - [sym_fixme] = ACTIONS(971), - [anon_sym_PIPE] = ACTIONS(971), - [sym__whitespace1] = ACTIONS(999), - [sym__newline] = ACTIONS(1001), - [aux_sym__text_token1] = ACTIONS(1003), - [sym__verbatim_begin] = ACTIONS(1005), - }, - [88] = { - [sym__inline_without_trailing_space] = STATE(740), - [sym__element] = STATE(581), - [sym_emphasis] = STATE(179), - [sym_emphasis_begin] = STATE(1019), - [sym_strong] = STATE(179), - [sym_strong_begin] = STATE(110), - [sym__hard_line_break] = STATE(179), - [sym_hard_line_break] = STATE(179), - [sym__smart_punctuation] = STATE(179), - [sym_autolink] = STATE(179), - [sym_highlighted] = STATE(179), - [sym_insert] = STATE(179), - [sym_delete] = STATE(179), - [sym_superscript] = STATE(179), - [sym_subscript] = STATE(179), - [sym_footnote_reference] = STATE(179), - [sym__image] = STATE(179), - [sym_full_reference_image] = STATE(179), - [sym_collapsed_reference_image] = STATE(179), - [sym_inline_image] = STATE(179), - [sym__image_description] = STATE(720), - [sym__link] = STATE(179), - [sym_full_reference_link] = STATE(179), - [sym_collapsed_reference_link] = STATE(179), - [sym_inline_link] = STATE(179), - [sym_link_text] = STATE(697), - [sym__comment_with_spaces] = STATE(179), - [sym_span] = STATE(179), - [sym_raw_inline] = STATE(179), - [sym_math] = STATE(179), - [sym_verbatim] = STATE(179), - [sym__todo_highlights] = STATE(179), - [sym_todo] = STATE(179), - [sym_note] = STATE(179), - [sym__symbol_fallback] = STATE(179), - [aux_sym__text] = STATE(163), - [aux_sym__inline_repeat1] = STATE(130), - [anon_sym_LBRACE_] = ACTIONS(915), - [anon_sym__] = ACTIONS(917), - [anon_sym_LBRACE_STAR] = ACTIONS(919), - [anon_sym_STAR] = ACTIONS(921), - [anon_sym_BSLASH] = ACTIONS(923), - [sym_quotation_marks] = ACTIONS(925), - [sym_ellipsis] = ACTIONS(925), - [sym_em_dash] = ACTIONS(925), - [sym_en_dash] = ACTIONS(927), - [sym_backslash_escape] = ACTIONS(927), - [anon_sym_LT] = ACTIONS(929), - [anon_sym_LBRACE_EQ] = ACTIONS(931), - [anon_sym_LBRACE_PLUS] = ACTIONS(933), - [anon_sym_LBRACE_DASH] = ACTIONS(935), - [sym_symbol] = ACTIONS(925), - [anon_sym_LBRACE_CARET] = ACTIONS(937), - [anon_sym_CARET] = ACTIONS(937), - [anon_sym_LBRACE_TILDE] = ACTIONS(939), - [anon_sym_TILDE] = ACTIONS(939), - [anon_sym_LBRACK_CARET] = ACTIONS(941), - [anon_sym_BANG_LBRACK] = ACTIONS(943), - [anon_sym_LBRACK] = ACTIONS(945), - [anon_sym_LBRACE2] = ACTIONS(927), - [anon_sym_DOLLAR] = ACTIONS(947), - [anon_sym_TODO] = ACTIONS(949), - [anon_sym_WIP] = ACTIONS(949), - [anon_sym_NOTE] = ACTIONS(951), - [anon_sym_INFO] = ACTIONS(951), - [anon_sym_XXX] = ACTIONS(951), - [sym_fixme] = ACTIONS(925), - [anon_sym_PIPE] = ACTIONS(925), - [sym__whitespace1] = ACTIONS(953), - [sym__newline] = ACTIONS(955), - [aux_sym__text_token1] = ACTIONS(957), - [sym__verbatim_begin] = ACTIONS(959), - }, - [89] = { - [sym__inline_without_trailing_space] = STATE(723), - [sym__element] = STATE(581), - [sym_emphasis] = STATE(179), - [sym_emphasis_begin] = STATE(1019), - [sym_strong] = STATE(179), - [sym_strong_begin] = STATE(110), - [sym__hard_line_break] = STATE(179), - [sym_hard_line_break] = STATE(179), - [sym__smart_punctuation] = STATE(179), - [sym_autolink] = STATE(179), - [sym_highlighted] = STATE(179), - [sym_insert] = STATE(179), - [sym_delete] = STATE(179), - [sym_superscript] = STATE(179), - [sym_subscript] = STATE(179), - [sym_footnote_reference] = STATE(179), - [sym__image] = STATE(179), - [sym_full_reference_image] = STATE(179), - [sym_collapsed_reference_image] = STATE(179), - [sym_inline_image] = STATE(179), - [sym__image_description] = STATE(720), - [sym__link] = STATE(179), - [sym_full_reference_link] = STATE(179), - [sym_collapsed_reference_link] = STATE(179), - [sym_inline_link] = STATE(179), - [sym_link_text] = STATE(697), - [sym__comment_with_spaces] = STATE(179), - [sym_span] = STATE(179), - [sym_raw_inline] = STATE(179), - [sym_math] = STATE(179), - [sym_verbatim] = STATE(179), - [sym__todo_highlights] = STATE(179), - [sym_todo] = STATE(179), - [sym_note] = STATE(179), - [sym__symbol_fallback] = STATE(179), - [aux_sym__text] = STATE(163), - [aux_sym__inline_repeat1] = STATE(130), - [anon_sym_LBRACE_] = ACTIONS(915), - [anon_sym__] = ACTIONS(917), - [anon_sym_LBRACE_STAR] = ACTIONS(919), - [anon_sym_STAR] = ACTIONS(921), - [anon_sym_BSLASH] = ACTIONS(923), - [sym_quotation_marks] = ACTIONS(925), - [sym_ellipsis] = ACTIONS(925), - [sym_em_dash] = ACTIONS(925), - [sym_en_dash] = ACTIONS(927), - [sym_backslash_escape] = ACTIONS(927), - [anon_sym_LT] = ACTIONS(929), - [anon_sym_LBRACE_EQ] = ACTIONS(931), - [anon_sym_LBRACE_PLUS] = ACTIONS(933), - [anon_sym_LBRACE_DASH] = ACTIONS(935), - [sym_symbol] = ACTIONS(925), - [anon_sym_LBRACE_CARET] = ACTIONS(937), - [anon_sym_CARET] = ACTIONS(937), - [anon_sym_LBRACE_TILDE] = ACTIONS(939), - [anon_sym_TILDE] = ACTIONS(939), - [anon_sym_LBRACK_CARET] = ACTIONS(941), - [anon_sym_BANG_LBRACK] = ACTIONS(943), - [anon_sym_LBRACK] = ACTIONS(945), - [anon_sym_LBRACE2] = ACTIONS(927), - [anon_sym_DOLLAR] = ACTIONS(947), - [anon_sym_TODO] = ACTIONS(949), - [anon_sym_WIP] = ACTIONS(949), - [anon_sym_NOTE] = ACTIONS(951), - [anon_sym_INFO] = ACTIONS(951), - [anon_sym_XXX] = ACTIONS(951), - [sym_fixme] = ACTIONS(925), - [anon_sym_PIPE] = ACTIONS(925), - [sym__whitespace1] = ACTIONS(953), - [sym__newline] = ACTIONS(955), - [aux_sym__text_token1] = ACTIONS(957), - [sym__verbatim_begin] = ACTIONS(959), + [aux_sym__text] = STATE(161), + [aux_sym__inline_repeat1] = STATE(131), + [anon_sym_LBRACE_] = ACTIONS(781), + [anon_sym__] = ACTIONS(783), + [anon_sym_LBRACE_STAR] = ACTIONS(785), + [anon_sym_STAR] = ACTIONS(787), + [anon_sym_BSLASH] = ACTIONS(789), + [sym_quotation_marks] = ACTIONS(791), + [sym_ellipsis] = ACTIONS(791), + [sym_em_dash] = ACTIONS(791), + [sym_en_dash] = ACTIONS(793), + [sym_backslash_escape] = ACTIONS(793), + [anon_sym_LT] = ACTIONS(795), + [anon_sym_LBRACE_EQ] = ACTIONS(797), + [anon_sym_LBRACE_PLUS] = ACTIONS(799), + [anon_sym_LBRACE_DASH] = ACTIONS(801), + [sym_symbol] = ACTIONS(791), + [anon_sym_LBRACE_CARET] = ACTIONS(803), + [anon_sym_CARET] = ACTIONS(803), + [anon_sym_LBRACE_TILDE] = ACTIONS(805), + [anon_sym_TILDE] = ACTIONS(805), + [anon_sym_LBRACK_CARET] = ACTIONS(807), + [anon_sym_BANG_LBRACK] = ACTIONS(809), + [anon_sym_LBRACK] = ACTIONS(811), + [anon_sym_LBRACE2] = ACTIONS(793), + [anon_sym_DOLLAR] = ACTIONS(813), + [anon_sym_TODO] = ACTIONS(815), + [anon_sym_WIP] = ACTIONS(815), + [anon_sym_NOTE] = ACTIONS(817), + [anon_sym_INFO] = ACTIONS(817), + [anon_sym_XXX] = ACTIONS(817), + [sym_fixme] = ACTIONS(791), + [anon_sym_PIPE] = ACTIONS(791), + [sym__whitespace1] = ACTIONS(819), + [sym__newline] = ACTIONS(821), + [aux_sym__text_token1] = ACTIONS(823), + [sym__verbatim_begin] = ACTIONS(825), }, [90] = { - [sym__inline_without_trailing_space] = STATE(743), - [sym__element] = STATE(581), - [sym_emphasis] = STATE(179), - [sym_emphasis_begin] = STATE(1019), - [sym_strong] = STATE(179), - [sym_strong_begin] = STATE(110), - [sym__hard_line_break] = STATE(179), - [sym_hard_line_break] = STATE(179), - [sym__smart_punctuation] = STATE(179), - [sym_autolink] = STATE(179), - [sym_highlighted] = STATE(179), - [sym_insert] = STATE(179), - [sym_delete] = STATE(179), - [sym_superscript] = STATE(179), - [sym_subscript] = STATE(179), - [sym_footnote_reference] = STATE(179), - [sym__image] = STATE(179), - [sym_full_reference_image] = STATE(179), - [sym_collapsed_reference_image] = STATE(179), - [sym_inline_image] = STATE(179), - [sym__image_description] = STATE(720), - [sym__link] = STATE(179), - [sym_full_reference_link] = STATE(179), - [sym_collapsed_reference_link] = STATE(179), - [sym_inline_link] = STATE(179), - [sym_link_text] = STATE(697), - [sym__comment_with_spaces] = STATE(179), - [sym_span] = STATE(179), - [sym_raw_inline] = STATE(179), - [sym_math] = STATE(179), - [sym_verbatim] = STATE(179), - [sym__todo_highlights] = STATE(179), - [sym_todo] = STATE(179), - [sym_note] = STATE(179), - [sym__symbol_fallback] = STATE(179), - [aux_sym__text] = STATE(163), - [aux_sym__inline_repeat1] = STATE(130), - [anon_sym_LBRACE_] = ACTIONS(915), - [anon_sym__] = ACTIONS(917), - [anon_sym_LBRACE_STAR] = ACTIONS(919), - [anon_sym_STAR] = ACTIONS(921), - [anon_sym_BSLASH] = ACTIONS(923), - [sym_quotation_marks] = ACTIONS(925), - [sym_ellipsis] = ACTIONS(925), - [sym_em_dash] = ACTIONS(925), - [sym_en_dash] = ACTIONS(927), - [sym_backslash_escape] = ACTIONS(927), - [anon_sym_LT] = ACTIONS(929), - [anon_sym_LBRACE_EQ] = ACTIONS(931), - [anon_sym_LBRACE_PLUS] = ACTIONS(933), - [anon_sym_LBRACE_DASH] = ACTIONS(935), - [sym_symbol] = ACTIONS(925), - [anon_sym_LBRACE_CARET] = ACTIONS(937), - [anon_sym_CARET] = ACTIONS(937), - [anon_sym_LBRACE_TILDE] = ACTIONS(939), - [anon_sym_TILDE] = ACTIONS(939), - [anon_sym_LBRACK_CARET] = ACTIONS(941), - [anon_sym_BANG_LBRACK] = ACTIONS(943), - [anon_sym_LBRACK] = ACTIONS(945), - [anon_sym_LBRACE2] = ACTIONS(927), - [anon_sym_DOLLAR] = ACTIONS(947), - [anon_sym_TODO] = ACTIONS(949), - [anon_sym_WIP] = ACTIONS(949), - [anon_sym_NOTE] = ACTIONS(951), - [anon_sym_INFO] = ACTIONS(951), - [anon_sym_XXX] = ACTIONS(951), - [sym_fixme] = ACTIONS(925), - [anon_sym_PIPE] = ACTIONS(925), - [sym__whitespace1] = ACTIONS(953), - [sym__newline] = ACTIONS(955), - [aux_sym__text_token1] = ACTIONS(957), - [sym__verbatim_begin] = ACTIONS(959), + [sym__inline] = STATE(732), + [sym__element] = STATE(106), + [sym_emphasis] = STATE(186), + [sym_emphasis_begin] = STATE(1006), + [sym_strong] = STATE(186), + [sym_strong_begin] = STATE(79), + [sym__hard_line_break] = STATE(186), + [sym_hard_line_break] = STATE(186), + [sym__smart_punctuation] = STATE(186), + [sym_autolink] = STATE(186), + [sym_highlighted] = STATE(186), + [sym_insert] = STATE(186), + [sym_delete] = STATE(186), + [sym_superscript] = STATE(186), + [sym_subscript] = STATE(186), + [sym_footnote_reference] = STATE(186), + [sym__image] = STATE(186), + [sym_full_reference_image] = STATE(186), + [sym_collapsed_reference_image] = STATE(186), + [sym_inline_image] = STATE(186), + [sym__image_description] = STATE(714), + [sym__link] = STATE(186), + [sym_full_reference_link] = STATE(186), + [sym_collapsed_reference_link] = STATE(186), + [sym_inline_link] = STATE(186), + [sym_link_text] = STATE(713), + [sym__comment_with_spaces] = STATE(186), + [sym_span] = STATE(186), + [sym_raw_inline] = STATE(186), + [sym_math] = STATE(186), + [sym_verbatim] = STATE(186), + [sym__todo_highlights] = STATE(186), + [sym_todo] = STATE(186), + [sym_note] = STATE(186), + [sym__symbol_fallback] = STATE(186), + [aux_sym__text] = STATE(160), + [aux_sym__inline_repeat1] = STATE(106), + [anon_sym_LBRACE_] = ACTIONS(546), + [anon_sym__] = ACTIONS(548), + [anon_sym_LBRACE_STAR] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_BSLASH] = ACTIONS(554), + [sym_quotation_marks] = ACTIONS(556), + [sym_ellipsis] = ACTIONS(556), + [sym_em_dash] = ACTIONS(556), + [sym_en_dash] = ACTIONS(558), + [sym_backslash_escape] = ACTIONS(558), + [anon_sym_LT] = ACTIONS(560), + [anon_sym_LBRACE_EQ] = ACTIONS(562), + [anon_sym_LBRACE_PLUS] = ACTIONS(564), + [anon_sym_LBRACE_DASH] = ACTIONS(566), + [sym_symbol] = ACTIONS(556), + [anon_sym_LBRACE_CARET] = ACTIONS(568), + [anon_sym_CARET] = ACTIONS(568), + [anon_sym_LBRACE_TILDE] = ACTIONS(570), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_LBRACK_CARET] = ACTIONS(572), + [anon_sym_BANG_LBRACK] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LBRACE2] = ACTIONS(558), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_TODO] = ACTIONS(580), + [anon_sym_WIP] = ACTIONS(580), + [anon_sym_NOTE] = ACTIONS(582), + [anon_sym_INFO] = ACTIONS(582), + [anon_sym_XXX] = ACTIONS(582), + [sym_fixme] = ACTIONS(556), + [anon_sym_PIPE] = ACTIONS(556), + [sym__whitespace1] = ACTIONS(584), + [sym__newline] = ACTIONS(586), + [aux_sym__text_token1] = ACTIONS(588), + [sym__verbatim_begin] = ACTIONS(590), }, [91] = { - [sym__inline_without_trailing_space] = STATE(736), - [sym__element] = STATE(581), - [sym_emphasis] = STATE(179), - [sym_emphasis_begin] = STATE(1019), - [sym_strong] = STATE(179), - [sym_strong_begin] = STATE(110), - [sym__hard_line_break] = STATE(179), - [sym_hard_line_break] = STATE(179), - [sym__smart_punctuation] = STATE(179), - [sym_autolink] = STATE(179), - [sym_highlighted] = STATE(179), - [sym_insert] = STATE(179), - [sym_delete] = STATE(179), - [sym_superscript] = STATE(179), - [sym_subscript] = STATE(179), - [sym_footnote_reference] = STATE(179), - [sym__image] = STATE(179), - [sym_full_reference_image] = STATE(179), - [sym_collapsed_reference_image] = STATE(179), - [sym_inline_image] = STATE(179), - [sym__image_description] = STATE(720), - [sym__link] = STATE(179), - [sym_full_reference_link] = STATE(179), - [sym_collapsed_reference_link] = STATE(179), - [sym_inline_link] = STATE(179), - [sym_link_text] = STATE(697), - [sym__comment_with_spaces] = STATE(179), - [sym_span] = STATE(179), - [sym_raw_inline] = STATE(179), - [sym_math] = STATE(179), - [sym_verbatim] = STATE(179), - [sym__todo_highlights] = STATE(179), - [sym_todo] = STATE(179), - [sym_note] = STATE(179), - [sym__symbol_fallback] = STATE(179), - [aux_sym__text] = STATE(163), - [aux_sym__inline_repeat1] = STATE(130), - [anon_sym_LBRACE_] = ACTIONS(915), - [anon_sym__] = ACTIONS(917), - [anon_sym_LBRACE_STAR] = ACTIONS(919), - [anon_sym_STAR] = ACTIONS(921), - [anon_sym_BSLASH] = ACTIONS(923), - [sym_quotation_marks] = ACTIONS(925), - [sym_ellipsis] = ACTIONS(925), - [sym_em_dash] = ACTIONS(925), - [sym_en_dash] = ACTIONS(927), - [sym_backslash_escape] = ACTIONS(927), - [anon_sym_LT] = ACTIONS(929), - [anon_sym_LBRACE_EQ] = ACTIONS(931), - [anon_sym_LBRACE_PLUS] = ACTIONS(933), - [anon_sym_LBRACE_DASH] = ACTIONS(935), - [sym_symbol] = ACTIONS(925), - [anon_sym_LBRACE_CARET] = ACTIONS(937), - [anon_sym_CARET] = ACTIONS(937), - [anon_sym_LBRACE_TILDE] = ACTIONS(939), - [anon_sym_TILDE] = ACTIONS(939), - [anon_sym_LBRACK_CARET] = ACTIONS(941), - [anon_sym_BANG_LBRACK] = ACTIONS(943), - [anon_sym_LBRACK] = ACTIONS(945), - [anon_sym_LBRACE2] = ACTIONS(927), - [anon_sym_DOLLAR] = ACTIONS(947), - [anon_sym_TODO] = ACTIONS(949), - [anon_sym_WIP] = ACTIONS(949), - [anon_sym_NOTE] = ACTIONS(951), - [anon_sym_INFO] = ACTIONS(951), - [anon_sym_XXX] = ACTIONS(951), - [sym_fixme] = ACTIONS(925), - [anon_sym_PIPE] = ACTIONS(925), - [sym__whitespace1] = ACTIONS(953), - [sym__newline] = ACTIONS(955), - [aux_sym__text_token1] = ACTIONS(957), - [sym__verbatim_begin] = ACTIONS(959), + [sym__element] = STATE(87), + [sym_emphasis] = STATE(174), + [sym_emphasis_begin] = STATE(1001), + [sym_strong] = STATE(174), + [sym_strong_begin] = STATE(126), + [sym__hard_line_break] = STATE(174), + [sym_hard_line_break] = STATE(174), + [sym__smart_punctuation] = STATE(174), + [sym_autolink] = STATE(174), + [sym_highlighted] = STATE(174), + [sym_insert] = STATE(174), + [sym_delete] = STATE(174), + [sym_superscript] = STATE(174), + [sym_subscript] = STATE(174), + [sym_footnote_reference] = STATE(174), + [sym__image] = STATE(174), + [sym_full_reference_image] = STATE(174), + [sym_collapsed_reference_image] = STATE(174), + [sym_inline_image] = STATE(174), + [sym__image_description] = STATE(709), + [sym__link] = STATE(174), + [sym_full_reference_link] = STATE(174), + [sym_collapsed_reference_link] = STATE(174), + [sym_inline_link] = STATE(174), + [sym_link_text] = STATE(710), + [sym__comment_with_spaces] = STATE(174), + [sym_span] = STATE(174), + [sym_raw_inline] = STATE(174), + [sym_math] = STATE(174), + [sym_verbatim] = STATE(174), + [sym__todo_highlights] = STATE(174), + [sym_todo] = STATE(174), + [sym_note] = STATE(174), + [sym__symbol_fallback] = STATE(174), + [aux_sym__text] = STATE(148), + [aux_sym__inline_repeat1] = STATE(87), + [anon_sym_LBRACE_] = ACTIONS(1013), + [anon_sym__] = ACTIONS(1015), + [anon_sym_LBRACE_STAR] = ACTIONS(1017), + [anon_sym_STAR] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [sym_quotation_marks] = ACTIONS(1023), + [sym_ellipsis] = ACTIONS(1023), + [sym_em_dash] = ACTIONS(1023), + [sym_en_dash] = ACTIONS(1025), + [sym_backslash_escape] = ACTIONS(1025), + [anon_sym_LT] = ACTIONS(1027), + [anon_sym_LBRACE_EQ] = ACTIONS(1029), + [anon_sym_LBRACE_PLUS] = ACTIONS(1031), + [anon_sym_PLUS_RBRACE] = ACTIONS(987), + [anon_sym_LBRACE_DASH] = ACTIONS(1033), + [sym_symbol] = ACTIONS(1023), + [anon_sym_LBRACE_CARET] = ACTIONS(1035), + [anon_sym_CARET] = ACTIONS(1035), + [anon_sym_LBRACE_TILDE] = ACTIONS(1037), + [anon_sym_TILDE] = ACTIONS(1037), + [anon_sym_LBRACK_CARET] = ACTIONS(1039), + [anon_sym_BANG_LBRACK] = ACTIONS(1041), + [anon_sym_LBRACK] = ACTIONS(1043), + [anon_sym_LBRACE2] = ACTIONS(1025), + [anon_sym_DOLLAR] = ACTIONS(1045), + [anon_sym_TODO] = ACTIONS(1047), + [anon_sym_WIP] = ACTIONS(1047), + [anon_sym_NOTE] = ACTIONS(1049), + [anon_sym_INFO] = ACTIONS(1049), + [anon_sym_XXX] = ACTIONS(1049), + [sym_fixme] = ACTIONS(1023), + [anon_sym_PIPE] = ACTIONS(1023), + [sym__whitespace1] = ACTIONS(1051), + [sym__newline] = ACTIONS(1053), + [aux_sym__text_token1] = ACTIONS(1055), + [sym__verbatim_begin] = ACTIONS(1057), }, [92] = { - [sym__inline_without_trailing_space] = STATE(726), - [sym__element] = STATE(581), - [sym_emphasis] = STATE(179), - [sym_emphasis_begin] = STATE(1019), - [sym_strong] = STATE(179), - [sym_strong_begin] = STATE(110), - [sym__hard_line_break] = STATE(179), - [sym_hard_line_break] = STATE(179), - [sym__smart_punctuation] = STATE(179), - [sym_autolink] = STATE(179), - [sym_highlighted] = STATE(179), - [sym_insert] = STATE(179), - [sym_delete] = STATE(179), - [sym_superscript] = STATE(179), - [sym_subscript] = STATE(179), - [sym_footnote_reference] = STATE(179), - [sym__image] = STATE(179), - [sym_full_reference_image] = STATE(179), - [sym_collapsed_reference_image] = STATE(179), - [sym_inline_image] = STATE(179), - [sym__image_description] = STATE(720), - [sym__link] = STATE(179), - [sym_full_reference_link] = STATE(179), - [sym_collapsed_reference_link] = STATE(179), - [sym_inline_link] = STATE(179), - [sym_link_text] = STATE(697), - [sym__comment_with_spaces] = STATE(179), - [sym_span] = STATE(179), - [sym_raw_inline] = STATE(179), - [sym_math] = STATE(179), - [sym_verbatim] = STATE(179), - [sym__todo_highlights] = STATE(179), - [sym_todo] = STATE(179), - [sym_note] = STATE(179), - [sym__symbol_fallback] = STATE(179), - [aux_sym__text] = STATE(163), - [aux_sym__inline_repeat1] = STATE(130), - [anon_sym_LBRACE_] = ACTIONS(915), - [anon_sym__] = ACTIONS(917), - [anon_sym_LBRACE_STAR] = ACTIONS(919), - [anon_sym_STAR] = ACTIONS(921), - [anon_sym_BSLASH] = ACTIONS(923), - [sym_quotation_marks] = ACTIONS(925), - [sym_ellipsis] = ACTIONS(925), - [sym_em_dash] = ACTIONS(925), - [sym_en_dash] = ACTIONS(927), - [sym_backslash_escape] = ACTIONS(927), - [anon_sym_LT] = ACTIONS(929), - [anon_sym_LBRACE_EQ] = ACTIONS(931), - [anon_sym_LBRACE_PLUS] = ACTIONS(933), - [anon_sym_LBRACE_DASH] = ACTIONS(935), - [sym_symbol] = ACTIONS(925), - [anon_sym_LBRACE_CARET] = ACTIONS(937), - [anon_sym_CARET] = ACTIONS(937), - [anon_sym_LBRACE_TILDE] = ACTIONS(939), - [anon_sym_TILDE] = ACTIONS(939), - [anon_sym_LBRACK_CARET] = ACTIONS(941), - [anon_sym_BANG_LBRACK] = ACTIONS(943), - [anon_sym_LBRACK] = ACTIONS(945), - [anon_sym_LBRACE2] = ACTIONS(927), - [anon_sym_DOLLAR] = ACTIONS(947), - [anon_sym_TODO] = ACTIONS(949), - [anon_sym_WIP] = ACTIONS(949), - [anon_sym_NOTE] = ACTIONS(951), - [anon_sym_INFO] = ACTIONS(951), - [anon_sym_XXX] = ACTIONS(951), - [sym_fixme] = ACTIONS(925), - [anon_sym_PIPE] = ACTIONS(925), - [sym__whitespace1] = ACTIONS(953), - [sym__newline] = ACTIONS(955), - [aux_sym__text_token1] = ACTIONS(957), - [sym__verbatim_begin] = ACTIONS(959), + [sym__inline] = STATE(846), + [sym__element] = STATE(95), + [sym_emphasis] = STATE(191), + [sym_emphasis_begin] = STATE(1008), + [sym_strong] = STATE(191), + [sym_strong_begin] = STATE(90), + [sym__hard_line_break] = STATE(191), + [sym_hard_line_break] = STATE(191), + [sym__smart_punctuation] = STATE(191), + [sym_autolink] = STATE(191), + [sym_highlighted] = STATE(191), + [sym_insert] = STATE(191), + [sym_delete] = STATE(191), + [sym_superscript] = STATE(191), + [sym_subscript] = STATE(191), + [sym_footnote_reference] = STATE(191), + [sym__image] = STATE(191), + [sym_full_reference_image] = STATE(191), + [sym_collapsed_reference_image] = STATE(191), + [sym_inline_image] = STATE(191), + [sym__image_description] = STATE(699), + [sym__link] = STATE(191), + [sym_full_reference_link] = STATE(191), + [sym_collapsed_reference_link] = STATE(191), + [sym_inline_link] = STATE(191), + [sym_link_text] = STATE(698), + [sym__comment_with_spaces] = STATE(191), + [sym_span] = STATE(191), + [sym_raw_inline] = STATE(191), + [sym_math] = STATE(191), + [sym_verbatim] = STATE(191), + [sym__todo_highlights] = STATE(191), + [sym_todo] = STATE(191), + [sym_note] = STATE(191), + [sym__symbol_fallback] = STATE(191), + [aux_sym__text] = STATE(137), + [aux_sym__inline_repeat1] = STATE(95), + [anon_sym_LBRACE_] = ACTIONS(592), + [anon_sym__] = ACTIONS(594), + [anon_sym_LBRACE_STAR] = ACTIONS(596), + [anon_sym_STAR] = ACTIONS(598), + [anon_sym_BSLASH] = ACTIONS(600), + [sym_quotation_marks] = ACTIONS(602), + [sym_ellipsis] = ACTIONS(602), + [sym_em_dash] = ACTIONS(602), + [sym_en_dash] = ACTIONS(604), + [sym_backslash_escape] = ACTIONS(604), + [anon_sym_LT] = ACTIONS(606), + [anon_sym_LBRACE_EQ] = ACTIONS(608), + [anon_sym_LBRACE_PLUS] = ACTIONS(610), + [anon_sym_LBRACE_DASH] = ACTIONS(612), + [sym_symbol] = ACTIONS(602), + [anon_sym_LBRACE_CARET] = ACTIONS(614), + [anon_sym_CARET] = ACTIONS(614), + [anon_sym_LBRACE_TILDE] = ACTIONS(616), + [anon_sym_TILDE] = ACTIONS(616), + [anon_sym_LBRACK_CARET] = ACTIONS(618), + [anon_sym_BANG_LBRACK] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(622), + [anon_sym_LBRACE2] = ACTIONS(604), + [anon_sym_DOLLAR] = ACTIONS(624), + [anon_sym_TODO] = ACTIONS(626), + [anon_sym_WIP] = ACTIONS(626), + [anon_sym_NOTE] = ACTIONS(628), + [anon_sym_INFO] = ACTIONS(628), + [anon_sym_XXX] = ACTIONS(628), + [sym_fixme] = ACTIONS(602), + [anon_sym_PIPE] = ACTIONS(602), + [sym__whitespace1] = ACTIONS(630), + [sym__newline] = ACTIONS(632), + [aux_sym__text_token1] = ACTIONS(634), + [sym__verbatim_begin] = ACTIONS(636), }, [93] = { - [sym__inline_without_trailing_space] = STATE(737), - [sym__element] = STATE(581), - [sym_emphasis] = STATE(179), - [sym_emphasis_begin] = STATE(1019), - [sym_strong] = STATE(179), - [sym_strong_begin] = STATE(110), - [sym__hard_line_break] = STATE(179), - [sym_hard_line_break] = STATE(179), - [sym__smart_punctuation] = STATE(179), - [sym_autolink] = STATE(179), - [sym_highlighted] = STATE(179), - [sym_insert] = STATE(179), - [sym_delete] = STATE(179), - [sym_superscript] = STATE(179), - [sym_subscript] = STATE(179), - [sym_footnote_reference] = STATE(179), - [sym__image] = STATE(179), - [sym_full_reference_image] = STATE(179), - [sym_collapsed_reference_image] = STATE(179), - [sym_inline_image] = STATE(179), - [sym__image_description] = STATE(720), - [sym__link] = STATE(179), - [sym_full_reference_link] = STATE(179), - [sym_collapsed_reference_link] = STATE(179), - [sym_inline_link] = STATE(179), - [sym_link_text] = STATE(697), - [sym__comment_with_spaces] = STATE(179), - [sym_span] = STATE(179), - [sym_raw_inline] = STATE(179), - [sym_math] = STATE(179), - [sym_verbatim] = STATE(179), - [sym__todo_highlights] = STATE(179), - [sym_todo] = STATE(179), - [sym_note] = STATE(179), - [sym__symbol_fallback] = STATE(179), - [aux_sym__text] = STATE(163), - [aux_sym__inline_repeat1] = STATE(130), - [anon_sym_LBRACE_] = ACTIONS(915), - [anon_sym__] = ACTIONS(917), - [anon_sym_LBRACE_STAR] = ACTIONS(919), - [anon_sym_STAR] = ACTIONS(921), - [anon_sym_BSLASH] = ACTIONS(923), - [sym_quotation_marks] = ACTIONS(925), - [sym_ellipsis] = ACTIONS(925), - [sym_em_dash] = ACTIONS(925), - [sym_en_dash] = ACTIONS(927), - [sym_backslash_escape] = ACTIONS(927), - [anon_sym_LT] = ACTIONS(929), - [anon_sym_LBRACE_EQ] = ACTIONS(931), - [anon_sym_LBRACE_PLUS] = ACTIONS(933), - [anon_sym_LBRACE_DASH] = ACTIONS(935), - [sym_symbol] = ACTIONS(925), - [anon_sym_LBRACE_CARET] = ACTIONS(937), - [anon_sym_CARET] = ACTIONS(937), - [anon_sym_LBRACE_TILDE] = ACTIONS(939), - [anon_sym_TILDE] = ACTIONS(939), - [anon_sym_LBRACK_CARET] = ACTIONS(941), - [anon_sym_BANG_LBRACK] = ACTIONS(943), - [anon_sym_LBRACK] = ACTIONS(945), - [anon_sym_LBRACE2] = ACTIONS(927), - [anon_sym_DOLLAR] = ACTIONS(947), - [anon_sym_TODO] = ACTIONS(949), - [anon_sym_WIP] = ACTIONS(949), - [anon_sym_NOTE] = ACTIONS(951), - [anon_sym_INFO] = ACTIONS(951), - [anon_sym_XXX] = ACTIONS(951), - [sym_fixme] = ACTIONS(925), - [anon_sym_PIPE] = ACTIONS(925), - [sym__whitespace1] = ACTIONS(953), - [sym__newline] = ACTIONS(955), - [aux_sym__text_token1] = ACTIONS(957), - [sym__verbatim_begin] = ACTIONS(959), + [sym__inline_without_trailing_space] = STATE(845), + [sym__element] = STATE(582), + [sym_emphasis] = STATE(176), + [sym_emphasis_begin] = STATE(1007), + [sym_strong] = STATE(176), + [sym_strong_begin] = STATE(94), + [sym__hard_line_break] = STATE(176), + [sym_hard_line_break] = STATE(176), + [sym__smart_punctuation] = STATE(176), + [sym_autolink] = STATE(176), + [sym_highlighted] = STATE(176), + [sym_insert] = STATE(176), + [sym_delete] = STATE(176), + [sym_superscript] = STATE(176), + [sym_subscript] = STATE(176), + [sym_footnote_reference] = STATE(176), + [sym__image] = STATE(176), + [sym_full_reference_image] = STATE(176), + [sym_collapsed_reference_image] = STATE(176), + [sym_inline_image] = STATE(176), + [sym__image_description] = STATE(685), + [sym__link] = STATE(176), + [sym_full_reference_link] = STATE(176), + [sym_collapsed_reference_link] = STATE(176), + [sym_inline_link] = STATE(176), + [sym_link_text] = STATE(704), + [sym__comment_with_spaces] = STATE(176), + [sym_span] = STATE(176), + [sym_raw_inline] = STATE(176), + [sym_math] = STATE(176), + [sym_verbatim] = STATE(176), + [sym__todo_highlights] = STATE(176), + [sym_todo] = STATE(176), + [sym_note] = STATE(176), + [sym__symbol_fallback] = STATE(176), + [aux_sym__text] = STATE(161), + [aux_sym__inline_repeat1] = STATE(131), + [anon_sym_LBRACE_] = ACTIONS(781), + [anon_sym__] = ACTIONS(783), + [anon_sym_LBRACE_STAR] = ACTIONS(785), + [anon_sym_STAR] = ACTIONS(787), + [anon_sym_BSLASH] = ACTIONS(789), + [sym_quotation_marks] = ACTIONS(791), + [sym_ellipsis] = ACTIONS(791), + [sym_em_dash] = ACTIONS(791), + [sym_en_dash] = ACTIONS(793), + [sym_backslash_escape] = ACTIONS(793), + [anon_sym_LT] = ACTIONS(795), + [anon_sym_LBRACE_EQ] = ACTIONS(797), + [anon_sym_LBRACE_PLUS] = ACTIONS(799), + [anon_sym_LBRACE_DASH] = ACTIONS(801), + [sym_symbol] = ACTIONS(791), + [anon_sym_LBRACE_CARET] = ACTIONS(803), + [anon_sym_CARET] = ACTIONS(803), + [anon_sym_LBRACE_TILDE] = ACTIONS(805), + [anon_sym_TILDE] = ACTIONS(805), + [anon_sym_LBRACK_CARET] = ACTIONS(807), + [anon_sym_BANG_LBRACK] = ACTIONS(809), + [anon_sym_LBRACK] = ACTIONS(811), + [anon_sym_LBRACE2] = ACTIONS(793), + [anon_sym_DOLLAR] = ACTIONS(813), + [anon_sym_TODO] = ACTIONS(815), + [anon_sym_WIP] = ACTIONS(815), + [anon_sym_NOTE] = ACTIONS(817), + [anon_sym_INFO] = ACTIONS(817), + [anon_sym_XXX] = ACTIONS(817), + [sym_fixme] = ACTIONS(791), + [anon_sym_PIPE] = ACTIONS(791), + [sym__whitespace1] = ACTIONS(819), + [sym__newline] = ACTIONS(821), + [aux_sym__text_token1] = ACTIONS(823), + [sym__verbatim_begin] = ACTIONS(825), }, [94] = { - [sym__element] = STATE(84), - [sym_emphasis] = STATE(188), - [sym_emphasis_begin] = STATE(1020), - [sym_strong] = STATE(188), - [sym_strong_begin] = STATE(106), - [sym__hard_line_break] = STATE(188), - [sym_hard_line_break] = STATE(188), - [sym__smart_punctuation] = STATE(188), - [sym_autolink] = STATE(188), - [sym_highlighted] = STATE(188), - [sym_insert] = STATE(188), - [sym_delete] = STATE(188), - [sym_superscript] = STATE(188), - [sym_subscript] = STATE(188), - [sym_footnote_reference] = STATE(188), - [sym__image] = STATE(188), - [sym_full_reference_image] = STATE(188), - [sym_collapsed_reference_image] = STATE(188), - [sym_inline_image] = STATE(188), - [sym__image_description] = STATE(702), - [sym__link] = STATE(188), - [sym_full_reference_link] = STATE(188), - [sym_collapsed_reference_link] = STATE(188), - [sym_inline_link] = STATE(188), - [sym_link_text] = STATE(700), - [sym__comment_with_spaces] = STATE(188), - [sym_span] = STATE(188), - [sym_raw_inline] = STATE(188), - [sym_math] = STATE(188), - [sym_verbatim] = STATE(188), - [sym__todo_highlights] = STATE(188), - [sym_todo] = STATE(188), - [sym_note] = STATE(188), - [sym__symbol_fallback] = STATE(188), - [aux_sym__text] = STATE(147), - [aux_sym__inline_repeat1] = STATE(84), - [anon_sym_LBRACE_] = ACTIONS(614), - [anon_sym__] = ACTIONS(616), - [anon_sym_LBRACE_STAR] = ACTIONS(618), - [anon_sym_STAR] = ACTIONS(620), - [anon_sym_BSLASH] = ACTIONS(622), - [sym_quotation_marks] = ACTIONS(624), - [sym_ellipsis] = ACTIONS(624), - [sym_em_dash] = ACTIONS(624), - [sym_en_dash] = ACTIONS(626), - [sym_backslash_escape] = ACTIONS(626), - [anon_sym_LT] = ACTIONS(628), - [anon_sym_LBRACE_EQ] = ACTIONS(630), - [anon_sym_LBRACE_PLUS] = ACTIONS(632), - [anon_sym_LBRACE_DASH] = ACTIONS(634), - [sym_symbol] = ACTIONS(624), - [anon_sym_LBRACE_CARET] = ACTIONS(636), - [anon_sym_CARET] = ACTIONS(636), - [anon_sym_LBRACE_TILDE] = ACTIONS(638), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_LBRACK_CARET] = ACTIONS(640), - [anon_sym_BANG_LBRACK] = ACTIONS(642), - [anon_sym_LBRACK] = ACTIONS(644), - [anon_sym_RBRACK2] = ACTIONS(590), - [anon_sym_LBRACE2] = ACTIONS(626), - [anon_sym_DOLLAR] = ACTIONS(646), - [anon_sym_TODO] = ACTIONS(648), - [anon_sym_WIP] = ACTIONS(648), - [anon_sym_NOTE] = ACTIONS(650), - [anon_sym_INFO] = ACTIONS(650), - [anon_sym_XXX] = ACTIONS(650), - [sym_fixme] = ACTIONS(624), - [anon_sym_PIPE] = ACTIONS(624), - [sym__whitespace1] = ACTIONS(652), - [sym__newline] = ACTIONS(1007), - [aux_sym__text_token1] = ACTIONS(656), - [sym__verbatim_begin] = ACTIONS(658), + [sym__inline] = STATE(729), + [sym__element] = STATE(106), + [sym_emphasis] = STATE(186), + [sym_emphasis_begin] = STATE(1006), + [sym_strong] = STATE(186), + [sym_strong_begin] = STATE(79), + [sym__hard_line_break] = STATE(186), + [sym_hard_line_break] = STATE(186), + [sym__smart_punctuation] = STATE(186), + [sym_autolink] = STATE(186), + [sym_highlighted] = STATE(186), + [sym_insert] = STATE(186), + [sym_delete] = STATE(186), + [sym_superscript] = STATE(186), + [sym_subscript] = STATE(186), + [sym_footnote_reference] = STATE(186), + [sym__image] = STATE(186), + [sym_full_reference_image] = STATE(186), + [sym_collapsed_reference_image] = STATE(186), + [sym_inline_image] = STATE(186), + [sym__image_description] = STATE(714), + [sym__link] = STATE(186), + [sym_full_reference_link] = STATE(186), + [sym_collapsed_reference_link] = STATE(186), + [sym_inline_link] = STATE(186), + [sym_link_text] = STATE(713), + [sym__comment_with_spaces] = STATE(186), + [sym_span] = STATE(186), + [sym_raw_inline] = STATE(186), + [sym_math] = STATE(186), + [sym_verbatim] = STATE(186), + [sym__todo_highlights] = STATE(186), + [sym_todo] = STATE(186), + [sym_note] = STATE(186), + [sym__symbol_fallback] = STATE(186), + [aux_sym__text] = STATE(160), + [aux_sym__inline_repeat1] = STATE(106), + [anon_sym_LBRACE_] = ACTIONS(546), + [anon_sym__] = ACTIONS(548), + [anon_sym_LBRACE_STAR] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_BSLASH] = ACTIONS(554), + [sym_quotation_marks] = ACTIONS(556), + [sym_ellipsis] = ACTIONS(556), + [sym_em_dash] = ACTIONS(556), + [sym_en_dash] = ACTIONS(558), + [sym_backslash_escape] = ACTIONS(558), + [anon_sym_LT] = ACTIONS(560), + [anon_sym_LBRACE_EQ] = ACTIONS(562), + [anon_sym_LBRACE_PLUS] = ACTIONS(564), + [anon_sym_LBRACE_DASH] = ACTIONS(566), + [sym_symbol] = ACTIONS(556), + [anon_sym_LBRACE_CARET] = ACTIONS(568), + [anon_sym_CARET] = ACTIONS(568), + [anon_sym_LBRACE_TILDE] = ACTIONS(570), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_LBRACK_CARET] = ACTIONS(572), + [anon_sym_BANG_LBRACK] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LBRACE2] = ACTIONS(558), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_TODO] = ACTIONS(580), + [anon_sym_WIP] = ACTIONS(580), + [anon_sym_NOTE] = ACTIONS(582), + [anon_sym_INFO] = ACTIONS(582), + [anon_sym_XXX] = ACTIONS(582), + [sym_fixme] = ACTIONS(556), + [anon_sym_PIPE] = ACTIONS(556), + [sym__whitespace1] = ACTIONS(584), + [sym__newline] = ACTIONS(586), + [aux_sym__text_token1] = ACTIONS(588), + [sym__verbatim_begin] = ACTIONS(590), }, [95] = { - [sym__element] = STATE(115), - [sym_emphasis] = STATE(215), - [sym_emphasis_begin] = STATE(1012), - [sym_strong] = STATE(215), - [sym_strong_begin] = STATE(128), - [sym__hard_line_break] = STATE(215), - [sym_hard_line_break] = STATE(215), - [sym__smart_punctuation] = STATE(215), - [sym_autolink] = STATE(215), - [sym_highlighted] = STATE(215), - [sym_insert] = STATE(215), - [sym_delete] = STATE(215), - [sym_superscript] = STATE(215), - [sym_subscript] = STATE(215), - [sym_footnote_reference] = STATE(215), - [sym__image] = STATE(215), - [sym_full_reference_image] = STATE(215), - [sym_collapsed_reference_image] = STATE(215), - [sym_inline_image] = STATE(215), - [sym__image_description] = STATE(696), - [sym__link] = STATE(215), - [sym_full_reference_link] = STATE(215), - [sym_collapsed_reference_link] = STATE(215), - [sym_inline_link] = STATE(215), - [sym_link_text] = STATE(705), - [sym__comment_with_spaces] = STATE(215), - [sym_span] = STATE(215), - [sym_raw_inline] = STATE(215), - [sym_math] = STATE(215), - [sym_verbatim] = STATE(215), - [sym__todo_highlights] = STATE(215), - [sym_todo] = STATE(215), - [sym_note] = STATE(215), - [sym__symbol_fallback] = STATE(215), - [aux_sym__text] = STATE(141), - [aux_sym__inline_repeat1] = STATE(115), - [anon_sym_LBRACE_] = ACTIONS(1009), - [anon_sym__] = ACTIONS(1011), - [anon_sym_LBRACE_STAR] = ACTIONS(1013), - [anon_sym_STAR] = ACTIONS(1015), - [anon_sym_BSLASH] = ACTIONS(1017), - [sym_quotation_marks] = ACTIONS(1019), - [sym_ellipsis] = ACTIONS(1019), - [sym_em_dash] = ACTIONS(1019), - [sym_en_dash] = ACTIONS(1021), - [sym_backslash_escape] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(1023), - [anon_sym_LBRACE_EQ] = ACTIONS(1025), - [anon_sym_EQ_RBRACE] = ACTIONS(590), - [anon_sym_LBRACE_PLUS] = ACTIONS(1027), - [anon_sym_LBRACE_DASH] = ACTIONS(1029), - [sym_symbol] = ACTIONS(1019), - [anon_sym_LBRACE_CARET] = ACTIONS(1031), - [anon_sym_CARET] = ACTIONS(1031), - [anon_sym_LBRACE_TILDE] = ACTIONS(1033), - [anon_sym_TILDE] = ACTIONS(1033), - [anon_sym_LBRACK_CARET] = ACTIONS(1035), - [anon_sym_BANG_LBRACK] = ACTIONS(1037), - [anon_sym_LBRACK] = ACTIONS(1039), - [anon_sym_LBRACE2] = ACTIONS(1021), - [anon_sym_DOLLAR] = ACTIONS(1041), - [anon_sym_TODO] = ACTIONS(1043), - [anon_sym_WIP] = ACTIONS(1043), - [anon_sym_NOTE] = ACTIONS(1045), - [anon_sym_INFO] = ACTIONS(1045), - [anon_sym_XXX] = ACTIONS(1045), - [sym_fixme] = ACTIONS(1019), - [anon_sym_PIPE] = ACTIONS(1019), - [sym__whitespace1] = ACTIONS(1047), - [sym__newline] = ACTIONS(1049), - [aux_sym__text_token1] = ACTIONS(1051), - [sym__verbatim_begin] = ACTIONS(1053), + [sym__element] = STATE(117), + [sym_emphasis] = STATE(191), + [sym_emphasis_begin] = STATE(1008), + [sym_strong] = STATE(191), + [sym_strong_begin] = STATE(90), + [sym__hard_line_break] = STATE(191), + [sym_hard_line_break] = STATE(191), + [sym__smart_punctuation] = STATE(191), + [sym_autolink] = STATE(191), + [sym_highlighted] = STATE(191), + [sym_insert] = STATE(191), + [sym_delete] = STATE(191), + [sym_superscript] = STATE(191), + [sym_subscript] = STATE(191), + [sym_footnote_reference] = STATE(191), + [sym__image] = STATE(191), + [sym_full_reference_image] = STATE(191), + [sym_collapsed_reference_image] = STATE(191), + [sym_inline_image] = STATE(191), + [sym__image_description] = STATE(699), + [sym__link] = STATE(191), + [sym_full_reference_link] = STATE(191), + [sym_collapsed_reference_link] = STATE(191), + [sym_inline_link] = STATE(191), + [sym_link_text] = STATE(698), + [sym__comment_with_spaces] = STATE(191), + [sym_span] = STATE(191), + [sym_raw_inline] = STATE(191), + [sym_math] = STATE(191), + [sym_verbatim] = STATE(191), + [sym__todo_highlights] = STATE(191), + [sym_todo] = STATE(191), + [sym_note] = STATE(191), + [sym__symbol_fallback] = STATE(191), + [aux_sym__text] = STATE(137), + [aux_sym__inline_repeat1] = STATE(117), + [anon_sym_LBRACE_] = ACTIONS(592), + [anon_sym__] = ACTIONS(594), + [anon_sym_LBRACE_STAR] = ACTIONS(596), + [anon_sym_STAR] = ACTIONS(598), + [anon_sym_BSLASH] = ACTIONS(600), + [sym_quotation_marks] = ACTIONS(602), + [sym_ellipsis] = ACTIONS(602), + [sym_em_dash] = ACTIONS(602), + [sym_en_dash] = ACTIONS(604), + [sym_backslash_escape] = ACTIONS(604), + [anon_sym_LT] = ACTIONS(606), + [anon_sym_LBRACE_EQ] = ACTIONS(608), + [anon_sym_LBRACE_PLUS] = ACTIONS(610), + [anon_sym_LBRACE_DASH] = ACTIONS(612), + [sym_symbol] = ACTIONS(602), + [anon_sym_LBRACE_CARET] = ACTIONS(614), + [anon_sym_CARET] = ACTIONS(614), + [anon_sym_LBRACE_TILDE] = ACTIONS(616), + [anon_sym_TILDE] = ACTIONS(616), + [anon_sym_LBRACK_CARET] = ACTIONS(618), + [anon_sym_BANG_LBRACK] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(622), + [anon_sym_RBRACK2] = ACTIONS(987), + [anon_sym_LBRACE2] = ACTIONS(604), + [anon_sym_DOLLAR] = ACTIONS(624), + [anon_sym_TODO] = ACTIONS(626), + [anon_sym_WIP] = ACTIONS(626), + [anon_sym_NOTE] = ACTIONS(628), + [anon_sym_INFO] = ACTIONS(628), + [anon_sym_XXX] = ACTIONS(628), + [sym_fixme] = ACTIONS(602), + [anon_sym_PIPE] = ACTIONS(602), + [sym__whitespace1] = ACTIONS(630), + [sym__newline] = ACTIONS(1059), + [aux_sym__text_token1] = ACTIONS(634), + [sym__verbatim_begin] = ACTIONS(636), }, [96] = { - [sym__inline] = STATE(886), - [sym__element] = STATE(94), - [sym_emphasis] = STATE(188), - [sym_emphasis_begin] = STATE(1020), - [sym_strong] = STATE(188), - [sym_strong_begin] = STATE(106), - [sym__hard_line_break] = STATE(188), - [sym_hard_line_break] = STATE(188), - [sym__smart_punctuation] = STATE(188), - [sym_autolink] = STATE(188), - [sym_highlighted] = STATE(188), - [sym_insert] = STATE(188), - [sym_delete] = STATE(188), - [sym_superscript] = STATE(188), - [sym_subscript] = STATE(188), - [sym_footnote_reference] = STATE(188), - [sym__image] = STATE(188), - [sym_full_reference_image] = STATE(188), - [sym_collapsed_reference_image] = STATE(188), - [sym_inline_image] = STATE(188), - [sym__image_description] = STATE(702), - [sym__link] = STATE(188), - [sym_full_reference_link] = STATE(188), - [sym_collapsed_reference_link] = STATE(188), - [sym_inline_link] = STATE(188), - [sym_link_text] = STATE(700), - [sym__comment_with_spaces] = STATE(188), - [sym_span] = STATE(188), - [sym_raw_inline] = STATE(188), - [sym_math] = STATE(188), - [sym_verbatim] = STATE(188), - [sym__todo_highlights] = STATE(188), - [sym_todo] = STATE(188), - [sym_note] = STATE(188), - [sym__symbol_fallback] = STATE(188), - [aux_sym__text] = STATE(147), - [aux_sym__inline_repeat1] = STATE(94), - [anon_sym_LBRACE_] = ACTIONS(614), - [anon_sym__] = ACTIONS(616), - [anon_sym_LBRACE_STAR] = ACTIONS(618), - [anon_sym_STAR] = ACTIONS(620), - [anon_sym_BSLASH] = ACTIONS(622), - [sym_quotation_marks] = ACTIONS(624), - [sym_ellipsis] = ACTIONS(624), - [sym_em_dash] = ACTIONS(624), - [sym_en_dash] = ACTIONS(626), - [sym_backslash_escape] = ACTIONS(626), - [anon_sym_LT] = ACTIONS(628), - [anon_sym_LBRACE_EQ] = ACTIONS(630), - [anon_sym_LBRACE_PLUS] = ACTIONS(632), - [anon_sym_LBRACE_DASH] = ACTIONS(634), - [sym_symbol] = ACTIONS(624), - [anon_sym_LBRACE_CARET] = ACTIONS(636), - [anon_sym_CARET] = ACTIONS(636), - [anon_sym_LBRACE_TILDE] = ACTIONS(638), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_LBRACK_CARET] = ACTIONS(640), - [anon_sym_BANG_LBRACK] = ACTIONS(642), - [anon_sym_LBRACK] = ACTIONS(644), - [anon_sym_LBRACE2] = ACTIONS(626), - [anon_sym_DOLLAR] = ACTIONS(646), - [anon_sym_TODO] = ACTIONS(648), - [anon_sym_WIP] = ACTIONS(648), - [anon_sym_NOTE] = ACTIONS(650), - [anon_sym_INFO] = ACTIONS(650), - [anon_sym_XXX] = ACTIONS(650), - [sym_fixme] = ACTIONS(624), - [anon_sym_PIPE] = ACTIONS(624), - [sym__whitespace1] = ACTIONS(652), - [sym__newline] = ACTIONS(654), - [aux_sym__text_token1] = ACTIONS(656), - [sym__verbatim_begin] = ACTIONS(658), + [sym__inline_without_trailing_space] = STATE(827), + [sym__element] = STATE(582), + [sym_emphasis] = STATE(176), + [sym_emphasis_begin] = STATE(1007), + [sym_strong] = STATE(176), + [sym_strong_begin] = STATE(94), + [sym__hard_line_break] = STATE(176), + [sym_hard_line_break] = STATE(176), + [sym__smart_punctuation] = STATE(176), + [sym_autolink] = STATE(176), + [sym_highlighted] = STATE(176), + [sym_insert] = STATE(176), + [sym_delete] = STATE(176), + [sym_superscript] = STATE(176), + [sym_subscript] = STATE(176), + [sym_footnote_reference] = STATE(176), + [sym__image] = STATE(176), + [sym_full_reference_image] = STATE(176), + [sym_collapsed_reference_image] = STATE(176), + [sym_inline_image] = STATE(176), + [sym__image_description] = STATE(685), + [sym__link] = STATE(176), + [sym_full_reference_link] = STATE(176), + [sym_collapsed_reference_link] = STATE(176), + [sym_inline_link] = STATE(176), + [sym_link_text] = STATE(704), + [sym__comment_with_spaces] = STATE(176), + [sym_span] = STATE(176), + [sym_raw_inline] = STATE(176), + [sym_math] = STATE(176), + [sym_verbatim] = STATE(176), + [sym__todo_highlights] = STATE(176), + [sym_todo] = STATE(176), + [sym_note] = STATE(176), + [sym__symbol_fallback] = STATE(176), + [aux_sym__text] = STATE(161), + [aux_sym__inline_repeat1] = STATE(131), + [anon_sym_LBRACE_] = ACTIONS(781), + [anon_sym__] = ACTIONS(783), + [anon_sym_LBRACE_STAR] = ACTIONS(785), + [anon_sym_STAR] = ACTIONS(787), + [anon_sym_BSLASH] = ACTIONS(789), + [sym_quotation_marks] = ACTIONS(791), + [sym_ellipsis] = ACTIONS(791), + [sym_em_dash] = ACTIONS(791), + [sym_en_dash] = ACTIONS(793), + [sym_backslash_escape] = ACTIONS(793), + [anon_sym_LT] = ACTIONS(795), + [anon_sym_LBRACE_EQ] = ACTIONS(797), + [anon_sym_LBRACE_PLUS] = ACTIONS(799), + [anon_sym_LBRACE_DASH] = ACTIONS(801), + [sym_symbol] = ACTIONS(791), + [anon_sym_LBRACE_CARET] = ACTIONS(803), + [anon_sym_CARET] = ACTIONS(803), + [anon_sym_LBRACE_TILDE] = ACTIONS(805), + [anon_sym_TILDE] = ACTIONS(805), + [anon_sym_LBRACK_CARET] = ACTIONS(807), + [anon_sym_BANG_LBRACK] = ACTIONS(809), + [anon_sym_LBRACK] = ACTIONS(811), + [anon_sym_LBRACE2] = ACTIONS(793), + [anon_sym_DOLLAR] = ACTIONS(813), + [anon_sym_TODO] = ACTIONS(815), + [anon_sym_WIP] = ACTIONS(815), + [anon_sym_NOTE] = ACTIONS(817), + [anon_sym_INFO] = ACTIONS(817), + [anon_sym_XXX] = ACTIONS(817), + [sym_fixme] = ACTIONS(791), + [anon_sym_PIPE] = ACTIONS(791), + [sym__whitespace1] = ACTIONS(819), + [sym__newline] = ACTIONS(821), + [aux_sym__text_token1] = ACTIONS(823), + [sym__verbatim_begin] = ACTIONS(825), }, [97] = { - [sym__inline] = STATE(733), - [sym__element] = STATE(126), - [sym_emphasis] = STATE(189), - [sym_emphasis_begin] = STATE(1018), - [sym_strong] = STATE(189), - [sym_strong_begin] = STATE(112), - [sym__hard_line_break] = STATE(189), - [sym_hard_line_break] = STATE(189), - [sym__smart_punctuation] = STATE(189), - [sym_autolink] = STATE(189), - [sym_highlighted] = STATE(189), - [sym_insert] = STATE(189), - [sym_delete] = STATE(189), - [sym_superscript] = STATE(189), - [sym_subscript] = STATE(189), - [sym_footnote_reference] = STATE(189), - [sym__image] = STATE(189), - [sym_full_reference_image] = STATE(189), - [sym_collapsed_reference_image] = STATE(189), - [sym_inline_image] = STATE(189), - [sym__image_description] = STATE(707), - [sym__link] = STATE(189), - [sym_full_reference_link] = STATE(189), - [sym_collapsed_reference_link] = STATE(189), - [sym_inline_link] = STATE(189), - [sym_link_text] = STATE(698), - [sym__comment_with_spaces] = STATE(189), - [sym_span] = STATE(189), - [sym_raw_inline] = STATE(189), - [sym_math] = STATE(189), - [sym_verbatim] = STATE(189), - [sym__todo_highlights] = STATE(189), - [sym_todo] = STATE(189), - [sym_note] = STATE(189), - [sym__symbol_fallback] = STATE(189), - [aux_sym__text] = STATE(161), - [aux_sym__inline_repeat1] = STATE(126), - [anon_sym_LBRACE_] = ACTIONS(1055), - [anon_sym__] = ACTIONS(1057), - [anon_sym_LBRACE_STAR] = ACTIONS(1059), - [anon_sym_STAR] = ACTIONS(1061), - [anon_sym_BSLASH] = ACTIONS(1063), - [sym_quotation_marks] = ACTIONS(1065), - [sym_ellipsis] = ACTIONS(1065), - [sym_em_dash] = ACTIONS(1065), - [sym_en_dash] = ACTIONS(1067), - [sym_backslash_escape] = ACTIONS(1067), - [anon_sym_LT] = ACTIONS(1069), - [anon_sym_LBRACE_EQ] = ACTIONS(1071), - [anon_sym_LBRACE_PLUS] = ACTIONS(1073), - [anon_sym_LBRACE_DASH] = ACTIONS(1075), - [sym_symbol] = ACTIONS(1065), - [anon_sym_LBRACE_CARET] = ACTIONS(1077), - [anon_sym_CARET] = ACTIONS(1077), - [anon_sym_LBRACE_TILDE] = ACTIONS(1079), - [anon_sym_TILDE] = ACTIONS(1079), - [anon_sym_LBRACK_CARET] = ACTIONS(1081), - [anon_sym_BANG_LBRACK] = ACTIONS(1083), - [anon_sym_LBRACK] = ACTIONS(1085), - [anon_sym_LBRACE2] = ACTIONS(1067), - [anon_sym_DOLLAR] = ACTIONS(1087), - [anon_sym_TODO] = ACTIONS(1089), - [anon_sym_WIP] = ACTIONS(1089), - [anon_sym_NOTE] = ACTIONS(1091), - [anon_sym_INFO] = ACTIONS(1091), - [anon_sym_XXX] = ACTIONS(1091), - [sym_fixme] = ACTIONS(1065), - [anon_sym_PIPE] = ACTIONS(1065), - [sym__whitespace1] = ACTIONS(1093), - [sym__newline] = ACTIONS(1095), - [aux_sym__text_token1] = ACTIONS(1097), - [sym__verbatim_begin] = ACTIONS(1099), + [sym__inline] = STATE(734), + [sym__element] = STATE(106), + [sym_emphasis] = STATE(186), + [sym_emphasis_begin] = STATE(1006), + [sym_strong] = STATE(186), + [sym_strong_begin] = STATE(79), + [sym__hard_line_break] = STATE(186), + [sym_hard_line_break] = STATE(186), + [sym__smart_punctuation] = STATE(186), + [sym_autolink] = STATE(186), + [sym_highlighted] = STATE(186), + [sym_insert] = STATE(186), + [sym_delete] = STATE(186), + [sym_superscript] = STATE(186), + [sym_subscript] = STATE(186), + [sym_footnote_reference] = STATE(186), + [sym__image] = STATE(186), + [sym_full_reference_image] = STATE(186), + [sym_collapsed_reference_image] = STATE(186), + [sym_inline_image] = STATE(186), + [sym__image_description] = STATE(714), + [sym__link] = STATE(186), + [sym_full_reference_link] = STATE(186), + [sym_collapsed_reference_link] = STATE(186), + [sym_inline_link] = STATE(186), + [sym_link_text] = STATE(713), + [sym__comment_with_spaces] = STATE(186), + [sym_span] = STATE(186), + [sym_raw_inline] = STATE(186), + [sym_math] = STATE(186), + [sym_verbatim] = STATE(186), + [sym__todo_highlights] = STATE(186), + [sym_todo] = STATE(186), + [sym_note] = STATE(186), + [sym__symbol_fallback] = STATE(186), + [aux_sym__text] = STATE(160), + [aux_sym__inline_repeat1] = STATE(106), + [anon_sym_LBRACE_] = ACTIONS(546), + [anon_sym__] = ACTIONS(548), + [anon_sym_LBRACE_STAR] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_BSLASH] = ACTIONS(554), + [sym_quotation_marks] = ACTIONS(556), + [sym_ellipsis] = ACTIONS(556), + [sym_em_dash] = ACTIONS(556), + [sym_en_dash] = ACTIONS(558), + [sym_backslash_escape] = ACTIONS(558), + [anon_sym_LT] = ACTIONS(560), + [anon_sym_LBRACE_EQ] = ACTIONS(562), + [anon_sym_LBRACE_PLUS] = ACTIONS(564), + [anon_sym_LBRACE_DASH] = ACTIONS(566), + [sym_symbol] = ACTIONS(556), + [anon_sym_LBRACE_CARET] = ACTIONS(568), + [anon_sym_CARET] = ACTIONS(568), + [anon_sym_LBRACE_TILDE] = ACTIONS(570), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_LBRACK_CARET] = ACTIONS(572), + [anon_sym_BANG_LBRACK] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LBRACE2] = ACTIONS(558), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_TODO] = ACTIONS(580), + [anon_sym_WIP] = ACTIONS(580), + [anon_sym_NOTE] = ACTIONS(582), + [anon_sym_INFO] = ACTIONS(582), + [anon_sym_XXX] = ACTIONS(582), + [sym_fixme] = ACTIONS(556), + [anon_sym_PIPE] = ACTIONS(556), + [sym__whitespace1] = ACTIONS(584), + [sym__newline] = ACTIONS(586), + [aux_sym__text_token1] = ACTIONS(588), + [sym__verbatim_begin] = ACTIONS(590), }, [98] = { - [sym__inline] = STATE(730), - [sym__element] = STATE(126), - [sym_emphasis] = STATE(189), - [sym_emphasis_begin] = STATE(1018), - [sym_strong] = STATE(189), - [sym_strong_begin] = STATE(112), - [sym__hard_line_break] = STATE(189), - [sym_hard_line_break] = STATE(189), - [sym__smart_punctuation] = STATE(189), - [sym_autolink] = STATE(189), - [sym_highlighted] = STATE(189), - [sym_insert] = STATE(189), - [sym_delete] = STATE(189), - [sym_superscript] = STATE(189), - [sym_subscript] = STATE(189), - [sym_footnote_reference] = STATE(189), - [sym__image] = STATE(189), - [sym_full_reference_image] = STATE(189), - [sym_collapsed_reference_image] = STATE(189), - [sym_inline_image] = STATE(189), - [sym__image_description] = STATE(707), - [sym__link] = STATE(189), - [sym_full_reference_link] = STATE(189), - [sym_collapsed_reference_link] = STATE(189), - [sym_inline_link] = STATE(189), + [sym__inline] = STATE(979), + [sym__element] = STATE(95), + [sym_emphasis] = STATE(191), + [sym_emphasis_begin] = STATE(1008), + [sym_strong] = STATE(191), + [sym_strong_begin] = STATE(90), + [sym__hard_line_break] = STATE(191), + [sym_hard_line_break] = STATE(191), + [sym__smart_punctuation] = STATE(191), + [sym_autolink] = STATE(191), + [sym_highlighted] = STATE(191), + [sym_insert] = STATE(191), + [sym_delete] = STATE(191), + [sym_superscript] = STATE(191), + [sym_subscript] = STATE(191), + [sym_footnote_reference] = STATE(191), + [sym__image] = STATE(191), + [sym_full_reference_image] = STATE(191), + [sym_collapsed_reference_image] = STATE(191), + [sym_inline_image] = STATE(191), + [sym__image_description] = STATE(699), + [sym__link] = STATE(191), + [sym_full_reference_link] = STATE(191), + [sym_collapsed_reference_link] = STATE(191), + [sym_inline_link] = STATE(191), [sym_link_text] = STATE(698), - [sym__comment_with_spaces] = STATE(189), - [sym_span] = STATE(189), - [sym_raw_inline] = STATE(189), - [sym_math] = STATE(189), - [sym_verbatim] = STATE(189), - [sym__todo_highlights] = STATE(189), - [sym_todo] = STATE(189), - [sym_note] = STATE(189), - [sym__symbol_fallback] = STATE(189), - [aux_sym__text] = STATE(161), - [aux_sym__inline_repeat1] = STATE(126), - [anon_sym_LBRACE_] = ACTIONS(1055), - [anon_sym__] = ACTIONS(1057), - [anon_sym_LBRACE_STAR] = ACTIONS(1059), - [anon_sym_STAR] = ACTIONS(1061), - [anon_sym_BSLASH] = ACTIONS(1063), - [sym_quotation_marks] = ACTIONS(1065), - [sym_ellipsis] = ACTIONS(1065), - [sym_em_dash] = ACTIONS(1065), - [sym_en_dash] = ACTIONS(1067), - [sym_backslash_escape] = ACTIONS(1067), - [anon_sym_LT] = ACTIONS(1069), - [anon_sym_LBRACE_EQ] = ACTIONS(1071), - [anon_sym_LBRACE_PLUS] = ACTIONS(1073), - [anon_sym_LBRACE_DASH] = ACTIONS(1075), - [sym_symbol] = ACTIONS(1065), - [anon_sym_LBRACE_CARET] = ACTIONS(1077), - [anon_sym_CARET] = ACTIONS(1077), - [anon_sym_LBRACE_TILDE] = ACTIONS(1079), - [anon_sym_TILDE] = ACTIONS(1079), - [anon_sym_LBRACK_CARET] = ACTIONS(1081), - [anon_sym_BANG_LBRACK] = ACTIONS(1083), - [anon_sym_LBRACK] = ACTIONS(1085), - [anon_sym_LBRACE2] = ACTIONS(1067), - [anon_sym_DOLLAR] = ACTIONS(1087), - [anon_sym_TODO] = ACTIONS(1089), - [anon_sym_WIP] = ACTIONS(1089), - [anon_sym_NOTE] = ACTIONS(1091), - [anon_sym_INFO] = ACTIONS(1091), - [anon_sym_XXX] = ACTIONS(1091), - [sym_fixme] = ACTIONS(1065), - [anon_sym_PIPE] = ACTIONS(1065), - [sym__whitespace1] = ACTIONS(1093), - [sym__newline] = ACTIONS(1095), - [aux_sym__text_token1] = ACTIONS(1097), - [sym__verbatim_begin] = ACTIONS(1099), + [sym__comment_with_spaces] = STATE(191), + [sym_span] = STATE(191), + [sym_raw_inline] = STATE(191), + [sym_math] = STATE(191), + [sym_verbatim] = STATE(191), + [sym__todo_highlights] = STATE(191), + [sym_todo] = STATE(191), + [sym_note] = STATE(191), + [sym__symbol_fallback] = STATE(191), + [aux_sym__text] = STATE(137), + [aux_sym__inline_repeat1] = STATE(95), + [anon_sym_LBRACE_] = ACTIONS(592), + [anon_sym__] = ACTIONS(594), + [anon_sym_LBRACE_STAR] = ACTIONS(596), + [anon_sym_STAR] = ACTIONS(598), + [anon_sym_BSLASH] = ACTIONS(600), + [sym_quotation_marks] = ACTIONS(602), + [sym_ellipsis] = ACTIONS(602), + [sym_em_dash] = ACTIONS(602), + [sym_en_dash] = ACTIONS(604), + [sym_backslash_escape] = ACTIONS(604), + [anon_sym_LT] = ACTIONS(606), + [anon_sym_LBRACE_EQ] = ACTIONS(608), + [anon_sym_LBRACE_PLUS] = ACTIONS(610), + [anon_sym_LBRACE_DASH] = ACTIONS(612), + [sym_symbol] = ACTIONS(602), + [anon_sym_LBRACE_CARET] = ACTIONS(614), + [anon_sym_CARET] = ACTIONS(614), + [anon_sym_LBRACE_TILDE] = ACTIONS(616), + [anon_sym_TILDE] = ACTIONS(616), + [anon_sym_LBRACK_CARET] = ACTIONS(618), + [anon_sym_BANG_LBRACK] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(622), + [anon_sym_LBRACE2] = ACTIONS(604), + [anon_sym_DOLLAR] = ACTIONS(624), + [anon_sym_TODO] = ACTIONS(626), + [anon_sym_WIP] = ACTIONS(626), + [anon_sym_NOTE] = ACTIONS(628), + [anon_sym_INFO] = ACTIONS(628), + [anon_sym_XXX] = ACTIONS(628), + [sym_fixme] = ACTIONS(602), + [anon_sym_PIPE] = ACTIONS(602), + [sym__whitespace1] = ACTIONS(630), + [sym__newline] = ACTIONS(632), + [aux_sym__text_token1] = ACTIONS(634), + [sym__verbatim_begin] = ACTIONS(636), }, [99] = { - [sym__inline] = STATE(746), - [sym__element] = STATE(126), - [sym_emphasis] = STATE(189), - [sym_emphasis_begin] = STATE(1018), - [sym_strong] = STATE(189), - [sym_strong_begin] = STATE(112), - [sym__hard_line_break] = STATE(189), - [sym_hard_line_break] = STATE(189), - [sym__smart_punctuation] = STATE(189), - [sym_autolink] = STATE(189), - [sym_highlighted] = STATE(189), - [sym_insert] = STATE(189), - [sym_delete] = STATE(189), - [sym_superscript] = STATE(189), - [sym_subscript] = STATE(189), - [sym_footnote_reference] = STATE(189), - [sym__image] = STATE(189), - [sym_full_reference_image] = STATE(189), - [sym_collapsed_reference_image] = STATE(189), - [sym_inline_image] = STATE(189), - [sym__image_description] = STATE(707), - [sym__link] = STATE(189), - [sym_full_reference_link] = STATE(189), - [sym_collapsed_reference_link] = STATE(189), - [sym_inline_link] = STATE(189), + [sym__inline] = STATE(811), + [sym__element] = STATE(95), + [sym_emphasis] = STATE(191), + [sym_emphasis_begin] = STATE(1008), + [sym_strong] = STATE(191), + [sym_strong_begin] = STATE(90), + [sym__hard_line_break] = STATE(191), + [sym_hard_line_break] = STATE(191), + [sym__smart_punctuation] = STATE(191), + [sym_autolink] = STATE(191), + [sym_highlighted] = STATE(191), + [sym_insert] = STATE(191), + [sym_delete] = STATE(191), + [sym_superscript] = STATE(191), + [sym_subscript] = STATE(191), + [sym_footnote_reference] = STATE(191), + [sym__image] = STATE(191), + [sym_full_reference_image] = STATE(191), + [sym_collapsed_reference_image] = STATE(191), + [sym_inline_image] = STATE(191), + [sym__image_description] = STATE(699), + [sym__link] = STATE(191), + [sym_full_reference_link] = STATE(191), + [sym_collapsed_reference_link] = STATE(191), + [sym_inline_link] = STATE(191), [sym_link_text] = STATE(698), - [sym__comment_with_spaces] = STATE(189), - [sym_span] = STATE(189), - [sym_raw_inline] = STATE(189), - [sym_math] = STATE(189), - [sym_verbatim] = STATE(189), - [sym__todo_highlights] = STATE(189), - [sym_todo] = STATE(189), - [sym_note] = STATE(189), - [sym__symbol_fallback] = STATE(189), - [aux_sym__text] = STATE(161), - [aux_sym__inline_repeat1] = STATE(126), - [anon_sym_LBRACE_] = ACTIONS(1055), - [anon_sym__] = ACTIONS(1057), - [anon_sym_LBRACE_STAR] = ACTIONS(1059), - [anon_sym_STAR] = ACTIONS(1061), - [anon_sym_BSLASH] = ACTIONS(1063), - [sym_quotation_marks] = ACTIONS(1065), - [sym_ellipsis] = ACTIONS(1065), - [sym_em_dash] = ACTIONS(1065), - [sym_en_dash] = ACTIONS(1067), - [sym_backslash_escape] = ACTIONS(1067), - [anon_sym_LT] = ACTIONS(1069), - [anon_sym_LBRACE_EQ] = ACTIONS(1071), - [anon_sym_LBRACE_PLUS] = ACTIONS(1073), - [anon_sym_LBRACE_DASH] = ACTIONS(1075), - [sym_symbol] = ACTIONS(1065), - [anon_sym_LBRACE_CARET] = ACTIONS(1077), - [anon_sym_CARET] = ACTIONS(1077), - [anon_sym_LBRACE_TILDE] = ACTIONS(1079), - [anon_sym_TILDE] = ACTIONS(1079), - [anon_sym_LBRACK_CARET] = ACTIONS(1081), - [anon_sym_BANG_LBRACK] = ACTIONS(1083), - [anon_sym_LBRACK] = ACTIONS(1085), - [anon_sym_LBRACE2] = ACTIONS(1067), - [anon_sym_DOLLAR] = ACTIONS(1087), - [anon_sym_TODO] = ACTIONS(1089), - [anon_sym_WIP] = ACTIONS(1089), - [anon_sym_NOTE] = ACTIONS(1091), - [anon_sym_INFO] = ACTIONS(1091), - [anon_sym_XXX] = ACTIONS(1091), - [sym_fixme] = ACTIONS(1065), - [anon_sym_PIPE] = ACTIONS(1065), - [sym__whitespace1] = ACTIONS(1093), - [sym__newline] = ACTIONS(1095), - [aux_sym__text_token1] = ACTIONS(1097), - [sym__verbatim_begin] = ACTIONS(1099), + [sym__comment_with_spaces] = STATE(191), + [sym_span] = STATE(191), + [sym_raw_inline] = STATE(191), + [sym_math] = STATE(191), + [sym_verbatim] = STATE(191), + [sym__todo_highlights] = STATE(191), + [sym_todo] = STATE(191), + [sym_note] = STATE(191), + [sym__symbol_fallback] = STATE(191), + [aux_sym__text] = STATE(137), + [aux_sym__inline_repeat1] = STATE(95), + [anon_sym_LBRACE_] = ACTIONS(592), + [anon_sym__] = ACTIONS(594), + [anon_sym_LBRACE_STAR] = ACTIONS(596), + [anon_sym_STAR] = ACTIONS(598), + [anon_sym_BSLASH] = ACTIONS(600), + [sym_quotation_marks] = ACTIONS(602), + [sym_ellipsis] = ACTIONS(602), + [sym_em_dash] = ACTIONS(602), + [sym_en_dash] = ACTIONS(604), + [sym_backslash_escape] = ACTIONS(604), + [anon_sym_LT] = ACTIONS(606), + [anon_sym_LBRACE_EQ] = ACTIONS(608), + [anon_sym_LBRACE_PLUS] = ACTIONS(610), + [anon_sym_LBRACE_DASH] = ACTIONS(612), + [sym_symbol] = ACTIONS(602), + [anon_sym_LBRACE_CARET] = ACTIONS(614), + [anon_sym_CARET] = ACTIONS(614), + [anon_sym_LBRACE_TILDE] = ACTIONS(616), + [anon_sym_TILDE] = ACTIONS(616), + [anon_sym_LBRACK_CARET] = ACTIONS(618), + [anon_sym_BANG_LBRACK] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(622), + [anon_sym_LBRACE2] = ACTIONS(604), + [anon_sym_DOLLAR] = ACTIONS(624), + [anon_sym_TODO] = ACTIONS(626), + [anon_sym_WIP] = ACTIONS(626), + [anon_sym_NOTE] = ACTIONS(628), + [anon_sym_INFO] = ACTIONS(628), + [anon_sym_XXX] = ACTIONS(628), + [sym_fixme] = ACTIONS(602), + [anon_sym_PIPE] = ACTIONS(602), + [sym__whitespace1] = ACTIONS(630), + [sym__newline] = ACTIONS(632), + [aux_sym__text_token1] = ACTIONS(634), + [sym__verbatim_begin] = ACTIONS(636), }, [100] = { - [sym__inline] = STATE(840), - [sym__element] = STATE(94), - [sym_emphasis] = STATE(188), - [sym_emphasis_begin] = STATE(1020), - [sym_strong] = STATE(188), - [sym_strong_begin] = STATE(106), - [sym__hard_line_break] = STATE(188), - [sym_hard_line_break] = STATE(188), - [sym__smart_punctuation] = STATE(188), - [sym_autolink] = STATE(188), - [sym_highlighted] = STATE(188), - [sym_insert] = STATE(188), - [sym_delete] = STATE(188), - [sym_superscript] = STATE(188), - [sym_subscript] = STATE(188), - [sym_footnote_reference] = STATE(188), - [sym__image] = STATE(188), - [sym_full_reference_image] = STATE(188), - [sym_collapsed_reference_image] = STATE(188), - [sym_inline_image] = STATE(188), - [sym__image_description] = STATE(702), - [sym__link] = STATE(188), - [sym_full_reference_link] = STATE(188), - [sym_collapsed_reference_link] = STATE(188), - [sym_inline_link] = STATE(188), - [sym_link_text] = STATE(700), - [sym__comment_with_spaces] = STATE(188), - [sym_span] = STATE(188), - [sym_raw_inline] = STATE(188), - [sym_math] = STATE(188), - [sym_verbatim] = STATE(188), - [sym__todo_highlights] = STATE(188), - [sym_todo] = STATE(188), - [sym_note] = STATE(188), - [sym__symbol_fallback] = STATE(188), - [aux_sym__text] = STATE(147), - [aux_sym__inline_repeat1] = STATE(94), - [anon_sym_LBRACE_] = ACTIONS(614), - [anon_sym__] = ACTIONS(616), - [anon_sym_LBRACE_STAR] = ACTIONS(618), - [anon_sym_STAR] = ACTIONS(620), - [anon_sym_BSLASH] = ACTIONS(622), - [sym_quotation_marks] = ACTIONS(624), - [sym_ellipsis] = ACTIONS(624), - [sym_em_dash] = ACTIONS(624), - [sym_en_dash] = ACTIONS(626), - [sym_backslash_escape] = ACTIONS(626), - [anon_sym_LT] = ACTIONS(628), - [anon_sym_LBRACE_EQ] = ACTIONS(630), - [anon_sym_LBRACE_PLUS] = ACTIONS(632), - [anon_sym_LBRACE_DASH] = ACTIONS(634), - [sym_symbol] = ACTIONS(624), - [anon_sym_LBRACE_CARET] = ACTIONS(636), - [anon_sym_CARET] = ACTIONS(636), - [anon_sym_LBRACE_TILDE] = ACTIONS(638), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_LBRACK_CARET] = ACTIONS(640), - [anon_sym_BANG_LBRACK] = ACTIONS(642), - [anon_sym_LBRACK] = ACTIONS(644), - [anon_sym_LBRACE2] = ACTIONS(626), - [anon_sym_DOLLAR] = ACTIONS(646), - [anon_sym_TODO] = ACTIONS(648), - [anon_sym_WIP] = ACTIONS(648), - [anon_sym_NOTE] = ACTIONS(650), - [anon_sym_INFO] = ACTIONS(650), - [anon_sym_XXX] = ACTIONS(650), - [sym_fixme] = ACTIONS(624), - [anon_sym_PIPE] = ACTIONS(624), - [sym__whitespace1] = ACTIONS(652), - [sym__newline] = ACTIONS(654), - [aux_sym__text_token1] = ACTIONS(656), - [sym__verbatim_begin] = ACTIONS(658), - }, - [101] = { [sym__element] = STATE(82), - [sym_emphasis] = STATE(197), - [sym_emphasis_begin] = STATE(1002), - [sym_strong] = STATE(197), - [sym_strong_begin] = STATE(98), - [sym__hard_line_break] = STATE(197), - [sym_hard_line_break] = STATE(197), - [sym__smart_punctuation] = STATE(197), - [sym_autolink] = STATE(197), - [sym_highlighted] = STATE(197), - [sym_insert] = STATE(197), - [sym_delete] = STATE(197), - [sym_superscript] = STATE(197), - [sym_subscript] = STATE(197), - [sym_footnote_reference] = STATE(197), - [sym__image] = STATE(197), - [sym_full_reference_image] = STATE(197), - [sym_collapsed_reference_image] = STATE(197), - [sym_inline_image] = STATE(197), - [sym__image_description] = STATE(685), - [sym__link] = STATE(197), - [sym_full_reference_link] = STATE(197), - [sym_collapsed_reference_link] = STATE(197), - [sym_inline_link] = STATE(197), - [sym_link_text] = STATE(719), - [sym__comment_with_spaces] = STATE(197), - [sym_span] = STATE(197), - [sym_raw_inline] = STATE(197), - [sym_math] = STATE(197), - [sym_verbatim] = STATE(197), - [sym__todo_highlights] = STATE(197), - [sym_todo] = STATE(197), - [sym_note] = STATE(197), - [sym__symbol_fallback] = STATE(197), - [aux_sym__text] = STATE(171), + [sym_emphasis] = STATE(198), + [sym_emphasis_begin] = STATE(970), + [sym_strong] = STATE(198), + [sym_strong_begin] = STATE(97), + [sym__hard_line_break] = STATE(198), + [sym_hard_line_break] = STATE(198), + [sym__smart_punctuation] = STATE(198), + [sym_autolink] = STATE(198), + [sym_highlighted] = STATE(198), + [sym_insert] = STATE(198), + [sym_delete] = STATE(198), + [sym_superscript] = STATE(198), + [sym_subscript] = STATE(198), + [sym_footnote_reference] = STATE(198), + [sym__image] = STATE(198), + [sym_full_reference_image] = STATE(198), + [sym_collapsed_reference_image] = STATE(198), + [sym_inline_image] = STATE(198), + [sym__image_description] = STATE(689), + [sym__link] = STATE(198), + [sym_full_reference_link] = STATE(198), + [sym_collapsed_reference_link] = STATE(198), + [sym_inline_link] = STATE(198), + [sym_link_text] = STATE(694), + [sym__comment_with_spaces] = STATE(198), + [sym_span] = STATE(198), + [sym_raw_inline] = STATE(198), + [sym_math] = STATE(198), + [sym_verbatim] = STATE(198), + [sym__todo_highlights] = STATE(198), + [sym_todo] = STATE(198), + [sym_note] = STATE(198), + [sym__symbol_fallback] = STATE(198), + [aux_sym__text] = STATE(168), [aux_sym__inline_repeat1] = STATE(82), - [ts_builtin_sym_end] = ACTIONS(590), + [ts_builtin_sym_end] = ACTIONS(987), [anon_sym_LBRACE_] = ACTIONS(3), [anon_sym__] = ACTIONS(5), [anon_sym_LBRACE_STAR] = ACTIONS(7), @@ -16012,2373 +15447,2311 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_fixme] = ACTIONS(13), [anon_sym_PIPE] = ACTIONS(13), [sym__whitespace1] = ACTIONS(41), - [sym__newline] = ACTIONS(1101), + [sym__newline] = ACTIONS(1061), [aux_sym__text_token1] = ACTIONS(45), [sym__verbatim_begin] = ACTIONS(47), }, + [101] = { + [sym__inline_without_trailing_space] = STATE(810), + [sym__element] = STATE(582), + [sym_emphasis] = STATE(176), + [sym_emphasis_begin] = STATE(1007), + [sym_strong] = STATE(176), + [sym_strong_begin] = STATE(94), + [sym__hard_line_break] = STATE(176), + [sym_hard_line_break] = STATE(176), + [sym__smart_punctuation] = STATE(176), + [sym_autolink] = STATE(176), + [sym_highlighted] = STATE(176), + [sym_insert] = STATE(176), + [sym_delete] = STATE(176), + [sym_superscript] = STATE(176), + [sym_subscript] = STATE(176), + [sym_footnote_reference] = STATE(176), + [sym__image] = STATE(176), + [sym_full_reference_image] = STATE(176), + [sym_collapsed_reference_image] = STATE(176), + [sym_inline_image] = STATE(176), + [sym__image_description] = STATE(685), + [sym__link] = STATE(176), + [sym_full_reference_link] = STATE(176), + [sym_collapsed_reference_link] = STATE(176), + [sym_inline_link] = STATE(176), + [sym_link_text] = STATE(704), + [sym__comment_with_spaces] = STATE(176), + [sym_span] = STATE(176), + [sym_raw_inline] = STATE(176), + [sym_math] = STATE(176), + [sym_verbatim] = STATE(176), + [sym__todo_highlights] = STATE(176), + [sym_todo] = STATE(176), + [sym_note] = STATE(176), + [sym__symbol_fallback] = STATE(176), + [aux_sym__text] = STATE(161), + [aux_sym__inline_repeat1] = STATE(131), + [anon_sym_LBRACE_] = ACTIONS(781), + [anon_sym__] = ACTIONS(783), + [anon_sym_LBRACE_STAR] = ACTIONS(785), + [anon_sym_STAR] = ACTIONS(787), + [anon_sym_BSLASH] = ACTIONS(789), + [sym_quotation_marks] = ACTIONS(791), + [sym_ellipsis] = ACTIONS(791), + [sym_em_dash] = ACTIONS(791), + [sym_en_dash] = ACTIONS(793), + [sym_backslash_escape] = ACTIONS(793), + [anon_sym_LT] = ACTIONS(795), + [anon_sym_LBRACE_EQ] = ACTIONS(797), + [anon_sym_LBRACE_PLUS] = ACTIONS(799), + [anon_sym_LBRACE_DASH] = ACTIONS(801), + [sym_symbol] = ACTIONS(791), + [anon_sym_LBRACE_CARET] = ACTIONS(803), + [anon_sym_CARET] = ACTIONS(803), + [anon_sym_LBRACE_TILDE] = ACTIONS(805), + [anon_sym_TILDE] = ACTIONS(805), + [anon_sym_LBRACK_CARET] = ACTIONS(807), + [anon_sym_BANG_LBRACK] = ACTIONS(809), + [anon_sym_LBRACK] = ACTIONS(811), + [anon_sym_LBRACE2] = ACTIONS(793), + [anon_sym_DOLLAR] = ACTIONS(813), + [anon_sym_TODO] = ACTIONS(815), + [anon_sym_WIP] = ACTIONS(815), + [anon_sym_NOTE] = ACTIONS(817), + [anon_sym_INFO] = ACTIONS(817), + [anon_sym_XXX] = ACTIONS(817), + [sym_fixme] = ACTIONS(791), + [anon_sym_PIPE] = ACTIONS(791), + [sym__whitespace1] = ACTIONS(819), + [sym__newline] = ACTIONS(821), + [aux_sym__text_token1] = ACTIONS(823), + [sym__verbatim_begin] = ACTIONS(825), + }, [102] = { - [sym__inline] = STATE(916), - [sym__element] = STATE(94), - [sym_emphasis] = STATE(188), - [sym_emphasis_begin] = STATE(1020), - [sym_strong] = STATE(188), - [sym_strong_begin] = STATE(106), - [sym__hard_line_break] = STATE(188), - [sym_hard_line_break] = STATE(188), - [sym__smart_punctuation] = STATE(188), - [sym_autolink] = STATE(188), - [sym_highlighted] = STATE(188), - [sym_insert] = STATE(188), - [sym_delete] = STATE(188), - [sym_superscript] = STATE(188), - [sym_subscript] = STATE(188), - [sym_footnote_reference] = STATE(188), - [sym__image] = STATE(188), - [sym_full_reference_image] = STATE(188), - [sym_collapsed_reference_image] = STATE(188), - [sym_inline_image] = STATE(188), - [sym__image_description] = STATE(702), - [sym__link] = STATE(188), - [sym_full_reference_link] = STATE(188), - [sym_collapsed_reference_link] = STATE(188), - [sym_inline_link] = STATE(188), - [sym_link_text] = STATE(700), - [sym__comment_with_spaces] = STATE(188), - [sym_span] = STATE(188), - [sym_raw_inline] = STATE(188), - [sym_math] = STATE(188), - [sym_verbatim] = STATE(188), - [sym__todo_highlights] = STATE(188), - [sym_todo] = STATE(188), - [sym_note] = STATE(188), - [sym__symbol_fallback] = STATE(188), - [aux_sym__text] = STATE(147), - [aux_sym__inline_repeat1] = STATE(94), - [anon_sym_LBRACE_] = ACTIONS(614), - [anon_sym__] = ACTIONS(616), - [anon_sym_LBRACE_STAR] = ACTIONS(618), - [anon_sym_STAR] = ACTIONS(620), - [anon_sym_BSLASH] = ACTIONS(622), - [sym_quotation_marks] = ACTIONS(624), - [sym_ellipsis] = ACTIONS(624), - [sym_em_dash] = ACTIONS(624), - [sym_en_dash] = ACTIONS(626), - [sym_backslash_escape] = ACTIONS(626), - [anon_sym_LT] = ACTIONS(628), - [anon_sym_LBRACE_EQ] = ACTIONS(630), - [anon_sym_LBRACE_PLUS] = ACTIONS(632), - [anon_sym_LBRACE_DASH] = ACTIONS(634), - [sym_symbol] = ACTIONS(624), - [anon_sym_LBRACE_CARET] = ACTIONS(636), - [anon_sym_CARET] = ACTIONS(636), - [anon_sym_LBRACE_TILDE] = ACTIONS(638), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_LBRACK_CARET] = ACTIONS(640), - [anon_sym_BANG_LBRACK] = ACTIONS(642), - [anon_sym_LBRACK] = ACTIONS(644), - [anon_sym_LBRACE2] = ACTIONS(626), - [anon_sym_DOLLAR] = ACTIONS(646), - [anon_sym_TODO] = ACTIONS(648), - [anon_sym_WIP] = ACTIONS(648), - [anon_sym_NOTE] = ACTIONS(650), - [anon_sym_INFO] = ACTIONS(650), - [anon_sym_XXX] = ACTIONS(650), - [sym_fixme] = ACTIONS(624), - [anon_sym_PIPE] = ACTIONS(624), - [sym__whitespace1] = ACTIONS(652), - [sym__newline] = ACTIONS(654), - [aux_sym__text_token1] = ACTIONS(656), - [sym__verbatim_begin] = ACTIONS(658), + [sym__element] = STATE(103), + [sym_emphasis] = STATE(194), + [sym_emphasis_begin] = STATE(1003), + [sym_strong] = STATE(194), + [sym_strong_begin] = STATE(113), + [sym__hard_line_break] = STATE(194), + [sym_hard_line_break] = STATE(194), + [sym__smart_punctuation] = STATE(194), + [sym_autolink] = STATE(194), + [sym_highlighted] = STATE(194), + [sym_insert] = STATE(194), + [sym_delete] = STATE(194), + [sym_superscript] = STATE(194), + [sym_subscript] = STATE(194), + [sym_footnote_reference] = STATE(194), + [sym__image] = STATE(194), + [sym_full_reference_image] = STATE(194), + [sym_collapsed_reference_image] = STATE(194), + [sym_inline_image] = STATE(194), + [sym__image_description] = STATE(696), + [sym__link] = STATE(194), + [sym_full_reference_link] = STATE(194), + [sym_collapsed_reference_link] = STATE(194), + [sym_inline_link] = STATE(194), + [sym_link_text] = STATE(695), + [sym__comment_with_spaces] = STATE(194), + [sym_span] = STATE(194), + [sym_raw_inline] = STATE(194), + [sym_math] = STATE(194), + [sym_verbatim] = STATE(194), + [sym__todo_highlights] = STATE(194), + [sym_todo] = STATE(194), + [sym_note] = STATE(194), + [sym__symbol_fallback] = STATE(194), + [aux_sym__text] = STATE(170), + [aux_sym__inline_repeat1] = STATE(103), + [anon_sym_LBRACE_] = ACTIONS(1063), + [anon_sym__] = ACTIONS(1065), + [anon_sym_LBRACE_STAR] = ACTIONS(1067), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_BSLASH] = ACTIONS(1071), + [sym_quotation_marks] = ACTIONS(1073), + [sym_ellipsis] = ACTIONS(1073), + [sym_em_dash] = ACTIONS(1073), + [sym_en_dash] = ACTIONS(1075), + [sym_backslash_escape] = ACTIONS(1075), + [anon_sym_LT] = ACTIONS(1077), + [anon_sym_LBRACE_EQ] = ACTIONS(1079), + [anon_sym_LBRACE_PLUS] = ACTIONS(1081), + [anon_sym_LBRACE_DASH] = ACTIONS(1083), + [sym_symbol] = ACTIONS(1073), + [anon_sym_LBRACE_CARET] = ACTIONS(1085), + [anon_sym_CARET] = ACTIONS(1087), + [anon_sym_CARET_RBRACE] = ACTIONS(987), + [anon_sym_LBRACE_TILDE] = ACTIONS(1089), + [anon_sym_TILDE] = ACTIONS(1089), + [anon_sym_LBRACK_CARET] = ACTIONS(1091), + [anon_sym_BANG_LBRACK] = ACTIONS(1093), + [anon_sym_LBRACK] = ACTIONS(1095), + [anon_sym_LBRACE2] = ACTIONS(1075), + [anon_sym_DOLLAR] = ACTIONS(1097), + [anon_sym_TODO] = ACTIONS(1099), + [anon_sym_WIP] = ACTIONS(1099), + [anon_sym_NOTE] = ACTIONS(1101), + [anon_sym_INFO] = ACTIONS(1101), + [anon_sym_XXX] = ACTIONS(1101), + [sym_fixme] = ACTIONS(1073), + [anon_sym_PIPE] = ACTIONS(1073), + [sym__whitespace1] = ACTIONS(1103), + [sym__newline] = ACTIONS(1105), + [aux_sym__text_token1] = ACTIONS(1107), + [sym__verbatim_begin] = ACTIONS(1109), }, [103] = { [sym__element] = STATE(103), - [sym_emphasis] = STATE(172), - [sym_emphasis_begin] = STATE(1015), - [sym_strong] = STATE(172), - [sym_strong_begin] = STATE(125), - [sym__hard_line_break] = STATE(172), - [sym_hard_line_break] = STATE(172), - [sym__smart_punctuation] = STATE(172), - [sym_autolink] = STATE(172), - [sym_highlighted] = STATE(172), - [sym_insert] = STATE(172), - [sym_delete] = STATE(172), - [sym_superscript] = STATE(172), - [sym_subscript] = STATE(172), - [sym_footnote_reference] = STATE(172), - [sym__image] = STATE(172), - [sym_full_reference_image] = STATE(172), - [sym_collapsed_reference_image] = STATE(172), - [sym_inline_image] = STATE(172), - [sym__image_description] = STATE(711), - [sym__link] = STATE(172), - [sym_full_reference_link] = STATE(172), - [sym_collapsed_reference_link] = STATE(172), - [sym_inline_link] = STATE(172), - [sym_link_text] = STATE(712), - [sym__comment_with_spaces] = STATE(172), - [sym_span] = STATE(172), - [sym_raw_inline] = STATE(172), - [sym_math] = STATE(172), - [sym_verbatim] = STATE(172), - [sym__todo_highlights] = STATE(172), - [sym_todo] = STATE(172), - [sym_note] = STATE(172), - [sym__symbol_fallback] = STATE(172), + [sym_emphasis] = STATE(194), + [sym_emphasis_begin] = STATE(1003), + [sym_strong] = STATE(194), + [sym_strong_begin] = STATE(113), + [sym__hard_line_break] = STATE(194), + [sym_hard_line_break] = STATE(194), + [sym__smart_punctuation] = STATE(194), + [sym_autolink] = STATE(194), + [sym_highlighted] = STATE(194), + [sym_insert] = STATE(194), + [sym_delete] = STATE(194), + [sym_superscript] = STATE(194), + [sym_subscript] = STATE(194), + [sym_footnote_reference] = STATE(194), + [sym__image] = STATE(194), + [sym_full_reference_image] = STATE(194), + [sym_collapsed_reference_image] = STATE(194), + [sym_inline_image] = STATE(194), + [sym__image_description] = STATE(696), + [sym__link] = STATE(194), + [sym_full_reference_link] = STATE(194), + [sym_collapsed_reference_link] = STATE(194), + [sym_inline_link] = STATE(194), + [sym_link_text] = STATE(695), + [sym__comment_with_spaces] = STATE(194), + [sym_span] = STATE(194), + [sym_raw_inline] = STATE(194), + [sym_math] = STATE(194), + [sym_verbatim] = STATE(194), + [sym__todo_highlights] = STATE(194), + [sym_todo] = STATE(194), + [sym_note] = STATE(194), + [sym__symbol_fallback] = STATE(194), [aux_sym__text] = STATE(170), [aux_sym__inline_repeat1] = STATE(103), - [anon_sym_LBRACE_] = ACTIONS(1103), - [anon_sym__] = ACTIONS(1106), - [anon_sym_LBRACE_STAR] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1112), - [anon_sym_BSLASH] = ACTIONS(1115), - [sym_quotation_marks] = ACTIONS(1118), - [sym_ellipsis] = ACTIONS(1118), - [sym_em_dash] = ACTIONS(1118), - [sym_en_dash] = ACTIONS(1121), - [sym_backslash_escape] = ACTIONS(1121), - [anon_sym_LT] = ACTIONS(1124), - [anon_sym_LBRACE_EQ] = ACTIONS(1127), - [anon_sym_LBRACE_PLUS] = ACTIONS(1130), - [anon_sym_LBRACE_DASH] = ACTIONS(1133), - [sym_symbol] = ACTIONS(1118), - [anon_sym_LBRACE_CARET] = ACTIONS(1136), - [anon_sym_CARET] = ACTIONS(1139), - [anon_sym_CARET_RBRACE] = ACTIONS(690), - [anon_sym_LBRACE_TILDE] = ACTIONS(1142), - [anon_sym_TILDE] = ACTIONS(1142), - [anon_sym_LBRACK_CARET] = ACTIONS(1145), - [anon_sym_BANG_LBRACK] = ACTIONS(1148), - [anon_sym_LBRACK] = ACTIONS(1151), - [anon_sym_LBRACE2] = ACTIONS(1121), - [anon_sym_DOLLAR] = ACTIONS(1154), - [anon_sym_TODO] = ACTIONS(1157), - [anon_sym_WIP] = ACTIONS(1157), - [anon_sym_NOTE] = ACTIONS(1160), - [anon_sym_INFO] = ACTIONS(1160), - [anon_sym_XXX] = ACTIONS(1160), - [sym_fixme] = ACTIONS(1118), - [anon_sym_PIPE] = ACTIONS(1118), - [sym__whitespace1] = ACTIONS(1163), - [sym__newline] = ACTIONS(1166), - [aux_sym__text_token1] = ACTIONS(1169), - [sym__verbatim_begin] = ACTIONS(1172), + [anon_sym_LBRACE_] = ACTIONS(1111), + [anon_sym__] = ACTIONS(1114), + [anon_sym_LBRACE_STAR] = ACTIONS(1117), + [anon_sym_STAR] = ACTIONS(1120), + [anon_sym_BSLASH] = ACTIONS(1123), + [sym_quotation_marks] = ACTIONS(1126), + [sym_ellipsis] = ACTIONS(1126), + [sym_em_dash] = ACTIONS(1126), + [sym_en_dash] = ACTIONS(1129), + [sym_backslash_escape] = ACTIONS(1129), + [anon_sym_LT] = ACTIONS(1132), + [anon_sym_LBRACE_EQ] = ACTIONS(1135), + [anon_sym_LBRACE_PLUS] = ACTIONS(1138), + [anon_sym_LBRACE_DASH] = ACTIONS(1141), + [sym_symbol] = ACTIONS(1126), + [anon_sym_LBRACE_CARET] = ACTIONS(1144), + [anon_sym_CARET] = ACTIONS(1147), + [anon_sym_CARET_RBRACE] = ACTIONS(680), + [anon_sym_LBRACE_TILDE] = ACTIONS(1150), + [anon_sym_TILDE] = ACTIONS(1150), + [anon_sym_LBRACK_CARET] = ACTIONS(1153), + [anon_sym_BANG_LBRACK] = ACTIONS(1156), + [anon_sym_LBRACK] = ACTIONS(1159), + [anon_sym_LBRACE2] = ACTIONS(1129), + [anon_sym_DOLLAR] = ACTIONS(1162), + [anon_sym_TODO] = ACTIONS(1165), + [anon_sym_WIP] = ACTIONS(1165), + [anon_sym_NOTE] = ACTIONS(1168), + [anon_sym_INFO] = ACTIONS(1168), + [anon_sym_XXX] = ACTIONS(1168), + [sym_fixme] = ACTIONS(1126), + [anon_sym_PIPE] = ACTIONS(1126), + [sym__whitespace1] = ACTIONS(1171), + [sym__newline] = ACTIONS(1174), + [aux_sym__text_token1] = ACTIONS(1177), + [sym__verbatim_begin] = ACTIONS(1180), }, [104] = { [sym__element] = STATE(104), - [sym_emphasis] = STATE(189), - [sym_emphasis_begin] = STATE(1018), - [sym_strong] = STATE(189), - [sym_strong_begin] = STATE(112), - [sym__hard_line_break] = STATE(189), - [sym_hard_line_break] = STATE(189), - [sym__smart_punctuation] = STATE(189), - [sym_autolink] = STATE(189), - [sym_highlighted] = STATE(189), - [sym_insert] = STATE(189), - [sym_delete] = STATE(189), - [sym_superscript] = STATE(189), - [sym_subscript] = STATE(189), - [sym_footnote_reference] = STATE(189), - [sym__image] = STATE(189), - [sym_full_reference_image] = STATE(189), - [sym_collapsed_reference_image] = STATE(189), - [sym_inline_image] = STATE(189), - [sym__image_description] = STATE(707), - [sym__link] = STATE(189), - [sym_full_reference_link] = STATE(189), - [sym_collapsed_reference_link] = STATE(189), - [sym_inline_link] = STATE(189), - [sym_link_text] = STATE(698), - [sym__comment_with_spaces] = STATE(189), - [sym_span] = STATE(189), - [sym_raw_inline] = STATE(189), - [sym_math] = STATE(189), - [sym_verbatim] = STATE(189), - [sym__todo_highlights] = STATE(189), - [sym_todo] = STATE(189), - [sym_note] = STATE(189), - [sym__symbol_fallback] = STATE(189), - [aux_sym__text] = STATE(161), + [sym_emphasis] = STATE(186), + [sym_emphasis_begin] = STATE(1006), + [sym_strong] = STATE(186), + [sym_strong_begin] = STATE(79), + [sym__hard_line_break] = STATE(186), + [sym_hard_line_break] = STATE(186), + [sym__smart_punctuation] = STATE(186), + [sym_autolink] = STATE(186), + [sym_highlighted] = STATE(186), + [sym_insert] = STATE(186), + [sym_delete] = STATE(186), + [sym_superscript] = STATE(186), + [sym_subscript] = STATE(186), + [sym_footnote_reference] = STATE(186), + [sym__image] = STATE(186), + [sym_full_reference_image] = STATE(186), + [sym_collapsed_reference_image] = STATE(186), + [sym_inline_image] = STATE(186), + [sym__image_description] = STATE(714), + [sym__link] = STATE(186), + [sym_full_reference_link] = STATE(186), + [sym_collapsed_reference_link] = STATE(186), + [sym_inline_link] = STATE(186), + [sym_link_text] = STATE(713), + [sym__comment_with_spaces] = STATE(186), + [sym_span] = STATE(186), + [sym_raw_inline] = STATE(186), + [sym_math] = STATE(186), + [sym_verbatim] = STATE(186), + [sym__todo_highlights] = STATE(186), + [sym_todo] = STATE(186), + [sym_note] = STATE(186), + [sym__symbol_fallback] = STATE(186), + [aux_sym__text] = STATE(160), [aux_sym__inline_repeat1] = STATE(104), - [anon_sym_LBRACE_] = ACTIONS(1175), - [anon_sym__] = ACTIONS(1178), - [anon_sym_LBRACE_STAR] = ACTIONS(1181), - [anon_sym_STAR] = ACTIONS(1184), - [aux_sym_strong_end_token1] = ACTIONS(690), - [anon_sym_BSLASH] = ACTIONS(1187), - [sym_quotation_marks] = ACTIONS(1190), - [sym_ellipsis] = ACTIONS(1190), - [sym_em_dash] = ACTIONS(1190), - [sym_en_dash] = ACTIONS(1193), - [sym_backslash_escape] = ACTIONS(1193), - [anon_sym_LT] = ACTIONS(1196), - [anon_sym_LBRACE_EQ] = ACTIONS(1199), - [anon_sym_LBRACE_PLUS] = ACTIONS(1202), - [anon_sym_LBRACE_DASH] = ACTIONS(1205), - [sym_symbol] = ACTIONS(1190), - [anon_sym_LBRACE_CARET] = ACTIONS(1208), - [anon_sym_CARET] = ACTIONS(1208), - [anon_sym_LBRACE_TILDE] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1211), - [anon_sym_LBRACK_CARET] = ACTIONS(1214), - [anon_sym_BANG_LBRACK] = ACTIONS(1217), - [anon_sym_LBRACK] = ACTIONS(1220), - [anon_sym_LBRACE2] = ACTIONS(1193), - [anon_sym_DOLLAR] = ACTIONS(1223), - [anon_sym_TODO] = ACTIONS(1226), - [anon_sym_WIP] = ACTIONS(1226), - [anon_sym_NOTE] = ACTIONS(1229), - [anon_sym_INFO] = ACTIONS(1229), - [anon_sym_XXX] = ACTIONS(1229), - [sym_fixme] = ACTIONS(1190), - [anon_sym_PIPE] = ACTIONS(1190), - [sym__whitespace1] = ACTIONS(1232), - [sym__newline] = ACTIONS(1235), - [aux_sym__text_token1] = ACTIONS(1238), - [sym__verbatim_begin] = ACTIONS(1241), + [anon_sym_LBRACE_] = ACTIONS(1183), + [anon_sym__] = ACTIONS(1186), + [anon_sym_LBRACE_STAR] = ACTIONS(1189), + [anon_sym_STAR] = ACTIONS(1192), + [aux_sym_strong_end_token1] = ACTIONS(680), + [anon_sym_BSLASH] = ACTIONS(1195), + [sym_quotation_marks] = ACTIONS(1198), + [sym_ellipsis] = ACTIONS(1198), + [sym_em_dash] = ACTIONS(1198), + [sym_en_dash] = ACTIONS(1201), + [sym_backslash_escape] = ACTIONS(1201), + [anon_sym_LT] = ACTIONS(1204), + [anon_sym_LBRACE_EQ] = ACTIONS(1207), + [anon_sym_LBRACE_PLUS] = ACTIONS(1210), + [anon_sym_LBRACE_DASH] = ACTIONS(1213), + [sym_symbol] = ACTIONS(1198), + [anon_sym_LBRACE_CARET] = ACTIONS(1216), + [anon_sym_CARET] = ACTIONS(1216), + [anon_sym_LBRACE_TILDE] = ACTIONS(1219), + [anon_sym_TILDE] = ACTIONS(1219), + [anon_sym_LBRACK_CARET] = ACTIONS(1222), + [anon_sym_BANG_LBRACK] = ACTIONS(1225), + [anon_sym_LBRACK] = ACTIONS(1228), + [anon_sym_LBRACE2] = ACTIONS(1201), + [anon_sym_DOLLAR] = ACTIONS(1231), + [anon_sym_TODO] = ACTIONS(1234), + [anon_sym_WIP] = ACTIONS(1234), + [anon_sym_NOTE] = ACTIONS(1237), + [anon_sym_INFO] = ACTIONS(1237), + [anon_sym_XXX] = ACTIONS(1237), + [sym_fixme] = ACTIONS(1198), + [anon_sym_PIPE] = ACTIONS(1198), + [sym__whitespace1] = ACTIONS(1240), + [sym__newline] = ACTIONS(1243), + [aux_sym__text_token1] = ACTIONS(1246), + [sym__verbatim_begin] = ACTIONS(1249), }, [105] = { - [sym__element] = STATE(105), - [sym_emphasis] = STATE(211), - [sym_emphasis_begin] = STATE(1014), - [sym_strong] = STATE(211), - [sym_strong_begin] = STATE(121), - [sym__hard_line_break] = STATE(211), - [sym_hard_line_break] = STATE(211), - [sym__smart_punctuation] = STATE(211), - [sym_autolink] = STATE(211), - [sym_highlighted] = STATE(211), - [sym_insert] = STATE(211), - [sym_delete] = STATE(211), - [sym_superscript] = STATE(211), - [sym_subscript] = STATE(211), - [sym_footnote_reference] = STATE(211), - [sym__image] = STATE(211), - [sym_full_reference_image] = STATE(211), - [sym_collapsed_reference_image] = STATE(211), - [sym_inline_image] = STATE(211), - [sym__image_description] = STATE(693), - [sym__link] = STATE(211), - [sym_full_reference_link] = STATE(211), - [sym_collapsed_reference_link] = STATE(211), - [sym_inline_link] = STATE(211), - [sym_link_text] = STATE(694), - [sym__comment_with_spaces] = STATE(211), - [sym_span] = STATE(211), - [sym_raw_inline] = STATE(211), - [sym_math] = STATE(211), - [sym_verbatim] = STATE(211), - [sym__todo_highlights] = STATE(211), - [sym_todo] = STATE(211), - [sym_note] = STATE(211), - [sym__symbol_fallback] = STATE(211), - [aux_sym__text] = STATE(137), - [aux_sym__inline_repeat1] = STATE(105), - [anon_sym_LBRACE_] = ACTIONS(1244), - [anon_sym__] = ACTIONS(1247), - [anon_sym_LBRACE_STAR] = ACTIONS(1250), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_BSLASH] = ACTIONS(1256), - [sym_quotation_marks] = ACTIONS(1259), - [sym_ellipsis] = ACTIONS(1259), - [sym_em_dash] = ACTIONS(1259), - [sym_en_dash] = ACTIONS(1262), - [sym_backslash_escape] = ACTIONS(1262), - [anon_sym_LT] = ACTIONS(1265), - [anon_sym_LBRACE_EQ] = ACTIONS(1268), - [anon_sym_LBRACE_PLUS] = ACTIONS(1271), - [anon_sym_LBRACE_DASH] = ACTIONS(1274), - [anon_sym_DASH_RBRACE] = ACTIONS(690), - [sym_symbol] = ACTIONS(1259), - [anon_sym_LBRACE_CARET] = ACTIONS(1277), - [anon_sym_CARET] = ACTIONS(1277), - [anon_sym_LBRACE_TILDE] = ACTIONS(1280), - [anon_sym_TILDE] = ACTIONS(1280), - [anon_sym_LBRACK_CARET] = ACTIONS(1283), - [anon_sym_BANG_LBRACK] = ACTIONS(1286), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_LBRACE2] = ACTIONS(1262), - [anon_sym_DOLLAR] = ACTIONS(1292), - [anon_sym_TODO] = ACTIONS(1295), - [anon_sym_WIP] = ACTIONS(1295), - [anon_sym_NOTE] = ACTIONS(1298), - [anon_sym_INFO] = ACTIONS(1298), - [anon_sym_XXX] = ACTIONS(1298), - [sym_fixme] = ACTIONS(1259), - [anon_sym_PIPE] = ACTIONS(1259), - [sym__whitespace1] = ACTIONS(1301), - [sym__newline] = ACTIONS(1304), - [aux_sym__text_token1] = ACTIONS(1307), - [sym__verbatim_begin] = ACTIONS(1310), + [sym__inline] = STATE(724), + [sym__element] = STATE(106), + [sym_emphasis] = STATE(186), + [sym_emphasis_begin] = STATE(1006), + [sym_strong] = STATE(186), + [sym_strong_begin] = STATE(79), + [sym__hard_line_break] = STATE(186), + [sym_hard_line_break] = STATE(186), + [sym__smart_punctuation] = STATE(186), + [sym_autolink] = STATE(186), + [sym_highlighted] = STATE(186), + [sym_insert] = STATE(186), + [sym_delete] = STATE(186), + [sym_superscript] = STATE(186), + [sym_subscript] = STATE(186), + [sym_footnote_reference] = STATE(186), + [sym__image] = STATE(186), + [sym_full_reference_image] = STATE(186), + [sym_collapsed_reference_image] = STATE(186), + [sym_inline_image] = STATE(186), + [sym__image_description] = STATE(714), + [sym__link] = STATE(186), + [sym_full_reference_link] = STATE(186), + [sym_collapsed_reference_link] = STATE(186), + [sym_inline_link] = STATE(186), + [sym_link_text] = STATE(713), + [sym__comment_with_spaces] = STATE(186), + [sym_span] = STATE(186), + [sym_raw_inline] = STATE(186), + [sym_math] = STATE(186), + [sym_verbatim] = STATE(186), + [sym__todo_highlights] = STATE(186), + [sym_todo] = STATE(186), + [sym_note] = STATE(186), + [sym__symbol_fallback] = STATE(186), + [aux_sym__text] = STATE(160), + [aux_sym__inline_repeat1] = STATE(106), + [anon_sym_LBRACE_] = ACTIONS(546), + [anon_sym__] = ACTIONS(548), + [anon_sym_LBRACE_STAR] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_BSLASH] = ACTIONS(554), + [sym_quotation_marks] = ACTIONS(556), + [sym_ellipsis] = ACTIONS(556), + [sym_em_dash] = ACTIONS(556), + [sym_en_dash] = ACTIONS(558), + [sym_backslash_escape] = ACTIONS(558), + [anon_sym_LT] = ACTIONS(560), + [anon_sym_LBRACE_EQ] = ACTIONS(562), + [anon_sym_LBRACE_PLUS] = ACTIONS(564), + [anon_sym_LBRACE_DASH] = ACTIONS(566), + [sym_symbol] = ACTIONS(556), + [anon_sym_LBRACE_CARET] = ACTIONS(568), + [anon_sym_CARET] = ACTIONS(568), + [anon_sym_LBRACE_TILDE] = ACTIONS(570), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_LBRACK_CARET] = ACTIONS(572), + [anon_sym_BANG_LBRACK] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LBRACE2] = ACTIONS(558), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_TODO] = ACTIONS(580), + [anon_sym_WIP] = ACTIONS(580), + [anon_sym_NOTE] = ACTIONS(582), + [anon_sym_INFO] = ACTIONS(582), + [anon_sym_XXX] = ACTIONS(582), + [sym_fixme] = ACTIONS(556), + [anon_sym_PIPE] = ACTIONS(556), + [sym__whitespace1] = ACTIONS(584), + [sym__newline] = ACTIONS(586), + [aux_sym__text_token1] = ACTIONS(588), + [sym__verbatim_begin] = ACTIONS(590), }, [106] = { - [sym__inline] = STATE(745), - [sym__element] = STATE(126), - [sym_emphasis] = STATE(189), - [sym_emphasis_begin] = STATE(1018), - [sym_strong] = STATE(189), - [sym_strong_begin] = STATE(112), - [sym__hard_line_break] = STATE(189), - [sym_hard_line_break] = STATE(189), - [sym__smart_punctuation] = STATE(189), - [sym_autolink] = STATE(189), - [sym_highlighted] = STATE(189), - [sym_insert] = STATE(189), - [sym_delete] = STATE(189), - [sym_superscript] = STATE(189), - [sym_subscript] = STATE(189), - [sym_footnote_reference] = STATE(189), - [sym__image] = STATE(189), - [sym_full_reference_image] = STATE(189), - [sym_collapsed_reference_image] = STATE(189), - [sym_inline_image] = STATE(189), - [sym__image_description] = STATE(707), - [sym__link] = STATE(189), - [sym_full_reference_link] = STATE(189), - [sym_collapsed_reference_link] = STATE(189), - [sym_inline_link] = STATE(189), - [sym_link_text] = STATE(698), - [sym__comment_with_spaces] = STATE(189), - [sym_span] = STATE(189), - [sym_raw_inline] = STATE(189), - [sym_math] = STATE(189), - [sym_verbatim] = STATE(189), - [sym__todo_highlights] = STATE(189), - [sym_todo] = STATE(189), - [sym_note] = STATE(189), - [sym__symbol_fallback] = STATE(189), - [aux_sym__text] = STATE(161), - [aux_sym__inline_repeat1] = STATE(126), - [anon_sym_LBRACE_] = ACTIONS(1055), - [anon_sym__] = ACTIONS(1057), - [anon_sym_LBRACE_STAR] = ACTIONS(1059), - [anon_sym_STAR] = ACTIONS(1061), - [anon_sym_BSLASH] = ACTIONS(1063), - [sym_quotation_marks] = ACTIONS(1065), - [sym_ellipsis] = ACTIONS(1065), - [sym_em_dash] = ACTIONS(1065), - [sym_en_dash] = ACTIONS(1067), - [sym_backslash_escape] = ACTIONS(1067), - [anon_sym_LT] = ACTIONS(1069), - [anon_sym_LBRACE_EQ] = ACTIONS(1071), - [anon_sym_LBRACE_PLUS] = ACTIONS(1073), - [anon_sym_LBRACE_DASH] = ACTIONS(1075), - [sym_symbol] = ACTIONS(1065), - [anon_sym_LBRACE_CARET] = ACTIONS(1077), - [anon_sym_CARET] = ACTIONS(1077), - [anon_sym_LBRACE_TILDE] = ACTIONS(1079), - [anon_sym_TILDE] = ACTIONS(1079), - [anon_sym_LBRACK_CARET] = ACTIONS(1081), - [anon_sym_BANG_LBRACK] = ACTIONS(1083), - [anon_sym_LBRACK] = ACTIONS(1085), - [anon_sym_LBRACE2] = ACTIONS(1067), - [anon_sym_DOLLAR] = ACTIONS(1087), - [anon_sym_TODO] = ACTIONS(1089), - [anon_sym_WIP] = ACTIONS(1089), - [anon_sym_NOTE] = ACTIONS(1091), - [anon_sym_INFO] = ACTIONS(1091), - [anon_sym_XXX] = ACTIONS(1091), - [sym_fixme] = ACTIONS(1065), - [anon_sym_PIPE] = ACTIONS(1065), - [sym__whitespace1] = ACTIONS(1093), - [sym__newline] = ACTIONS(1095), - [aux_sym__text_token1] = ACTIONS(1097), - [sym__verbatim_begin] = ACTIONS(1099), + [sym__element] = STATE(104), + [sym_emphasis] = STATE(186), + [sym_emphasis_begin] = STATE(1006), + [sym_strong] = STATE(186), + [sym_strong_begin] = STATE(79), + [sym__hard_line_break] = STATE(186), + [sym_hard_line_break] = STATE(186), + [sym__smart_punctuation] = STATE(186), + [sym_autolink] = STATE(186), + [sym_highlighted] = STATE(186), + [sym_insert] = STATE(186), + [sym_delete] = STATE(186), + [sym_superscript] = STATE(186), + [sym_subscript] = STATE(186), + [sym_footnote_reference] = STATE(186), + [sym__image] = STATE(186), + [sym_full_reference_image] = STATE(186), + [sym_collapsed_reference_image] = STATE(186), + [sym_inline_image] = STATE(186), + [sym__image_description] = STATE(714), + [sym__link] = STATE(186), + [sym_full_reference_link] = STATE(186), + [sym_collapsed_reference_link] = STATE(186), + [sym_inline_link] = STATE(186), + [sym_link_text] = STATE(713), + [sym__comment_with_spaces] = STATE(186), + [sym_span] = STATE(186), + [sym_raw_inline] = STATE(186), + [sym_math] = STATE(186), + [sym_verbatim] = STATE(186), + [sym__todo_highlights] = STATE(186), + [sym_todo] = STATE(186), + [sym_note] = STATE(186), + [sym__symbol_fallback] = STATE(186), + [aux_sym__text] = STATE(160), + [aux_sym__inline_repeat1] = STATE(104), + [anon_sym_LBRACE_] = ACTIONS(546), + [anon_sym__] = ACTIONS(548), + [anon_sym_LBRACE_STAR] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(1087), + [aux_sym_strong_end_token1] = ACTIONS(987), + [anon_sym_BSLASH] = ACTIONS(554), + [sym_quotation_marks] = ACTIONS(556), + [sym_ellipsis] = ACTIONS(556), + [sym_em_dash] = ACTIONS(556), + [sym_en_dash] = ACTIONS(558), + [sym_backslash_escape] = ACTIONS(558), + [anon_sym_LT] = ACTIONS(560), + [anon_sym_LBRACE_EQ] = ACTIONS(562), + [anon_sym_LBRACE_PLUS] = ACTIONS(564), + [anon_sym_LBRACE_DASH] = ACTIONS(566), + [sym_symbol] = ACTIONS(556), + [anon_sym_LBRACE_CARET] = ACTIONS(568), + [anon_sym_CARET] = ACTIONS(568), + [anon_sym_LBRACE_TILDE] = ACTIONS(570), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_LBRACK_CARET] = ACTIONS(572), + [anon_sym_BANG_LBRACK] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LBRACE2] = ACTIONS(558), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_TODO] = ACTIONS(580), + [anon_sym_WIP] = ACTIONS(580), + [anon_sym_NOTE] = ACTIONS(582), + [anon_sym_INFO] = ACTIONS(582), + [anon_sym_XXX] = ACTIONS(582), + [sym_fixme] = ACTIONS(556), + [anon_sym_PIPE] = ACTIONS(556), + [sym__whitespace1] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), + [aux_sym__text_token1] = ACTIONS(588), + [sym__verbatim_begin] = ACTIONS(590), }, [107] = { - [sym__inline] = STATE(863), - [sym__element] = STATE(94), - [sym_emphasis] = STATE(188), - [sym_emphasis_begin] = STATE(1020), - [sym_strong] = STATE(188), - [sym_strong_begin] = STATE(106), - [sym__hard_line_break] = STATE(188), - [sym_hard_line_break] = STATE(188), - [sym__smart_punctuation] = STATE(188), - [sym_autolink] = STATE(188), - [sym_highlighted] = STATE(188), - [sym_insert] = STATE(188), - [sym_delete] = STATE(188), - [sym_superscript] = STATE(188), - [sym_subscript] = STATE(188), - [sym_footnote_reference] = STATE(188), - [sym__image] = STATE(188), - [sym_full_reference_image] = STATE(188), - [sym_collapsed_reference_image] = STATE(188), - [sym_inline_image] = STATE(188), - [sym__image_description] = STATE(702), - [sym__link] = STATE(188), - [sym_full_reference_link] = STATE(188), - [sym_collapsed_reference_link] = STATE(188), - [sym_inline_link] = STATE(188), - [sym_link_text] = STATE(700), - [sym__comment_with_spaces] = STATE(188), - [sym_span] = STATE(188), - [sym_raw_inline] = STATE(188), - [sym_math] = STATE(188), - [sym_verbatim] = STATE(188), - [sym__todo_highlights] = STATE(188), - [sym_todo] = STATE(188), - [sym_note] = STATE(188), - [sym__symbol_fallback] = STATE(188), - [aux_sym__text] = STATE(147), - [aux_sym__inline_repeat1] = STATE(94), - [anon_sym_LBRACE_] = ACTIONS(614), - [anon_sym__] = ACTIONS(616), - [anon_sym_LBRACE_STAR] = ACTIONS(618), - [anon_sym_STAR] = ACTIONS(620), - [anon_sym_BSLASH] = ACTIONS(622), - [sym_quotation_marks] = ACTIONS(624), - [sym_ellipsis] = ACTIONS(624), - [sym_em_dash] = ACTIONS(624), - [sym_en_dash] = ACTIONS(626), - [sym_backslash_escape] = ACTIONS(626), - [anon_sym_LT] = ACTIONS(628), - [anon_sym_LBRACE_EQ] = ACTIONS(630), - [anon_sym_LBRACE_PLUS] = ACTIONS(632), - [anon_sym_LBRACE_DASH] = ACTIONS(634), - [sym_symbol] = ACTIONS(624), - [anon_sym_LBRACE_CARET] = ACTIONS(636), - [anon_sym_CARET] = ACTIONS(636), - [anon_sym_LBRACE_TILDE] = ACTIONS(638), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_LBRACK_CARET] = ACTIONS(640), - [anon_sym_BANG_LBRACK] = ACTIONS(642), - [anon_sym_LBRACK] = ACTIONS(644), - [anon_sym_LBRACE2] = ACTIONS(626), - [anon_sym_DOLLAR] = ACTIONS(646), - [anon_sym_TODO] = ACTIONS(648), - [anon_sym_WIP] = ACTIONS(648), - [anon_sym_NOTE] = ACTIONS(650), - [anon_sym_INFO] = ACTIONS(650), - [anon_sym_XXX] = ACTIONS(650), - [sym_fixme] = ACTIONS(624), - [anon_sym_PIPE] = ACTIONS(624), - [sym__whitespace1] = ACTIONS(652), - [sym__newline] = ACTIONS(654), - [aux_sym__text_token1] = ACTIONS(656), - [sym__verbatim_begin] = ACTIONS(658), + [sym__inline] = STATE(876), + [sym__element] = STATE(95), + [sym_emphasis] = STATE(191), + [sym_emphasis_begin] = STATE(1008), + [sym_strong] = STATE(191), + [sym_strong_begin] = STATE(90), + [sym__hard_line_break] = STATE(191), + [sym_hard_line_break] = STATE(191), + [sym__smart_punctuation] = STATE(191), + [sym_autolink] = STATE(191), + [sym_highlighted] = STATE(191), + [sym_insert] = STATE(191), + [sym_delete] = STATE(191), + [sym_superscript] = STATE(191), + [sym_subscript] = STATE(191), + [sym_footnote_reference] = STATE(191), + [sym__image] = STATE(191), + [sym_full_reference_image] = STATE(191), + [sym_collapsed_reference_image] = STATE(191), + [sym_inline_image] = STATE(191), + [sym__image_description] = STATE(699), + [sym__link] = STATE(191), + [sym_full_reference_link] = STATE(191), + [sym_collapsed_reference_link] = STATE(191), + [sym_inline_link] = STATE(191), + [sym_link_text] = STATE(698), + [sym__comment_with_spaces] = STATE(191), + [sym_span] = STATE(191), + [sym_raw_inline] = STATE(191), + [sym_math] = STATE(191), + [sym_verbatim] = STATE(191), + [sym__todo_highlights] = STATE(191), + [sym_todo] = STATE(191), + [sym_note] = STATE(191), + [sym__symbol_fallback] = STATE(191), + [aux_sym__text] = STATE(137), + [aux_sym__inline_repeat1] = STATE(95), + [anon_sym_LBRACE_] = ACTIONS(592), + [anon_sym__] = ACTIONS(594), + [anon_sym_LBRACE_STAR] = ACTIONS(596), + [anon_sym_STAR] = ACTIONS(598), + [anon_sym_BSLASH] = ACTIONS(600), + [sym_quotation_marks] = ACTIONS(602), + [sym_ellipsis] = ACTIONS(602), + [sym_em_dash] = ACTIONS(602), + [sym_en_dash] = ACTIONS(604), + [sym_backslash_escape] = ACTIONS(604), + [anon_sym_LT] = ACTIONS(606), + [anon_sym_LBRACE_EQ] = ACTIONS(608), + [anon_sym_LBRACE_PLUS] = ACTIONS(610), + [anon_sym_LBRACE_DASH] = ACTIONS(612), + [sym_symbol] = ACTIONS(602), + [anon_sym_LBRACE_CARET] = ACTIONS(614), + [anon_sym_CARET] = ACTIONS(614), + [anon_sym_LBRACE_TILDE] = ACTIONS(616), + [anon_sym_TILDE] = ACTIONS(616), + [anon_sym_LBRACK_CARET] = ACTIONS(618), + [anon_sym_BANG_LBRACK] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(622), + [anon_sym_LBRACE2] = ACTIONS(604), + [anon_sym_DOLLAR] = ACTIONS(624), + [anon_sym_TODO] = ACTIONS(626), + [anon_sym_WIP] = ACTIONS(626), + [anon_sym_NOTE] = ACTIONS(628), + [anon_sym_INFO] = ACTIONS(628), + [anon_sym_XXX] = ACTIONS(628), + [sym_fixme] = ACTIONS(602), + [anon_sym_PIPE] = ACTIONS(602), + [sym__whitespace1] = ACTIONS(630), + [sym__newline] = ACTIONS(632), + [aux_sym__text_token1] = ACTIONS(634), + [sym__verbatim_begin] = ACTIONS(636), }, [108] = { - [sym__inline_without_trailing_space] = STATE(729), - [sym__element] = STATE(581), - [sym_emphasis] = STATE(179), - [sym_emphasis_begin] = STATE(1019), - [sym_strong] = STATE(179), - [sym_strong_begin] = STATE(110), - [sym__hard_line_break] = STATE(179), - [sym_hard_line_break] = STATE(179), - [sym__smart_punctuation] = STATE(179), - [sym_autolink] = STATE(179), - [sym_highlighted] = STATE(179), - [sym_insert] = STATE(179), - [sym_delete] = STATE(179), - [sym_superscript] = STATE(179), - [sym_subscript] = STATE(179), - [sym_footnote_reference] = STATE(179), - [sym__image] = STATE(179), - [sym_full_reference_image] = STATE(179), - [sym_collapsed_reference_image] = STATE(179), - [sym_inline_image] = STATE(179), - [sym__image_description] = STATE(720), - [sym__link] = STATE(179), - [sym_full_reference_link] = STATE(179), - [sym_collapsed_reference_link] = STATE(179), - [sym_inline_link] = STATE(179), - [sym_link_text] = STATE(697), - [sym__comment_with_spaces] = STATE(179), - [sym_span] = STATE(179), - [sym_raw_inline] = STATE(179), - [sym_math] = STATE(179), - [sym_verbatim] = STATE(179), - [sym__todo_highlights] = STATE(179), - [sym_todo] = STATE(179), - [sym_note] = STATE(179), - [sym__symbol_fallback] = STATE(179), - [aux_sym__text] = STATE(163), - [aux_sym__inline_repeat1] = STATE(130), - [anon_sym_LBRACE_] = ACTIONS(915), - [anon_sym__] = ACTIONS(917), - [anon_sym_LBRACE_STAR] = ACTIONS(919), - [anon_sym_STAR] = ACTIONS(921), - [anon_sym_BSLASH] = ACTIONS(923), - [sym_quotation_marks] = ACTIONS(925), - [sym_ellipsis] = ACTIONS(925), - [sym_em_dash] = ACTIONS(925), - [sym_en_dash] = ACTIONS(927), - [sym_backslash_escape] = ACTIONS(927), - [anon_sym_LT] = ACTIONS(929), - [anon_sym_LBRACE_EQ] = ACTIONS(931), - [anon_sym_LBRACE_PLUS] = ACTIONS(933), - [anon_sym_LBRACE_DASH] = ACTIONS(935), - [sym_symbol] = ACTIONS(925), - [anon_sym_LBRACE_CARET] = ACTIONS(937), - [anon_sym_CARET] = ACTIONS(937), - [anon_sym_LBRACE_TILDE] = ACTIONS(939), - [anon_sym_TILDE] = ACTIONS(939), - [anon_sym_LBRACK_CARET] = ACTIONS(941), - [anon_sym_BANG_LBRACK] = ACTIONS(943), - [anon_sym_LBRACK] = ACTIONS(945), - [anon_sym_LBRACE2] = ACTIONS(927), - [anon_sym_DOLLAR] = ACTIONS(947), - [anon_sym_TODO] = ACTIONS(949), - [anon_sym_WIP] = ACTIONS(949), - [anon_sym_NOTE] = ACTIONS(951), - [anon_sym_INFO] = ACTIONS(951), - [anon_sym_XXX] = ACTIONS(951), - [sym_fixme] = ACTIONS(925), - [anon_sym_PIPE] = ACTIONS(925), - [sym__whitespace1] = ACTIONS(953), - [sym__newline] = ACTIONS(955), - [aux_sym__text_token1] = ACTIONS(957), - [sym__verbatim_begin] = ACTIONS(959), + [sym__inline_without_trailing_space] = STATE(877), + [sym__element] = STATE(582), + [sym_emphasis] = STATE(176), + [sym_emphasis_begin] = STATE(1007), + [sym_strong] = STATE(176), + [sym_strong_begin] = STATE(94), + [sym__hard_line_break] = STATE(176), + [sym_hard_line_break] = STATE(176), + [sym__smart_punctuation] = STATE(176), + [sym_autolink] = STATE(176), + [sym_highlighted] = STATE(176), + [sym_insert] = STATE(176), + [sym_delete] = STATE(176), + [sym_superscript] = STATE(176), + [sym_subscript] = STATE(176), + [sym_footnote_reference] = STATE(176), + [sym__image] = STATE(176), + [sym_full_reference_image] = STATE(176), + [sym_collapsed_reference_image] = STATE(176), + [sym_inline_image] = STATE(176), + [sym__image_description] = STATE(685), + [sym__link] = STATE(176), + [sym_full_reference_link] = STATE(176), + [sym_collapsed_reference_link] = STATE(176), + [sym_inline_link] = STATE(176), + [sym_link_text] = STATE(704), + [sym__comment_with_spaces] = STATE(176), + [sym_span] = STATE(176), + [sym_raw_inline] = STATE(176), + [sym_math] = STATE(176), + [sym_verbatim] = STATE(176), + [sym__todo_highlights] = STATE(176), + [sym_todo] = STATE(176), + [sym_note] = STATE(176), + [sym__symbol_fallback] = STATE(176), + [aux_sym__text] = STATE(161), + [aux_sym__inline_repeat1] = STATE(131), + [anon_sym_LBRACE_] = ACTIONS(781), + [anon_sym__] = ACTIONS(783), + [anon_sym_LBRACE_STAR] = ACTIONS(785), + [anon_sym_STAR] = ACTIONS(787), + [anon_sym_BSLASH] = ACTIONS(789), + [sym_quotation_marks] = ACTIONS(791), + [sym_ellipsis] = ACTIONS(791), + [sym_em_dash] = ACTIONS(791), + [sym_en_dash] = ACTIONS(793), + [sym_backslash_escape] = ACTIONS(793), + [anon_sym_LT] = ACTIONS(795), + [anon_sym_LBRACE_EQ] = ACTIONS(797), + [anon_sym_LBRACE_PLUS] = ACTIONS(799), + [anon_sym_LBRACE_DASH] = ACTIONS(801), + [sym_symbol] = ACTIONS(791), + [anon_sym_LBRACE_CARET] = ACTIONS(803), + [anon_sym_CARET] = ACTIONS(803), + [anon_sym_LBRACE_TILDE] = ACTIONS(805), + [anon_sym_TILDE] = ACTIONS(805), + [anon_sym_LBRACK_CARET] = ACTIONS(807), + [anon_sym_BANG_LBRACK] = ACTIONS(809), + [anon_sym_LBRACK] = ACTIONS(811), + [anon_sym_LBRACE2] = ACTIONS(793), + [anon_sym_DOLLAR] = ACTIONS(813), + [anon_sym_TODO] = ACTIONS(815), + [anon_sym_WIP] = ACTIONS(815), + [anon_sym_NOTE] = ACTIONS(817), + [anon_sym_INFO] = ACTIONS(817), + [anon_sym_XXX] = ACTIONS(817), + [sym_fixme] = ACTIONS(791), + [anon_sym_PIPE] = ACTIONS(791), + [sym__whitespace1] = ACTIONS(819), + [sym__newline] = ACTIONS(821), + [aux_sym__text_token1] = ACTIONS(823), + [sym__verbatim_begin] = ACTIONS(825), }, [109] = { - [sym__inline_without_trailing_space] = STATE(725), - [sym__element] = STATE(581), - [sym_emphasis] = STATE(179), - [sym_emphasis_begin] = STATE(1019), - [sym_strong] = STATE(179), - [sym_strong_begin] = STATE(110), - [sym__hard_line_break] = STATE(179), - [sym_hard_line_break] = STATE(179), - [sym__smart_punctuation] = STATE(179), - [sym_autolink] = STATE(179), - [sym_highlighted] = STATE(179), - [sym_insert] = STATE(179), - [sym_delete] = STATE(179), - [sym_superscript] = STATE(179), - [sym_subscript] = STATE(179), - [sym_footnote_reference] = STATE(179), - [sym__image] = STATE(179), - [sym_full_reference_image] = STATE(179), - [sym_collapsed_reference_image] = STATE(179), - [sym_inline_image] = STATE(179), - [sym__image_description] = STATE(720), - [sym__link] = STATE(179), - [sym_full_reference_link] = STATE(179), - [sym_collapsed_reference_link] = STATE(179), - [sym_inline_link] = STATE(179), - [sym_link_text] = STATE(697), - [sym__comment_with_spaces] = STATE(179), - [sym_span] = STATE(179), - [sym_raw_inline] = STATE(179), - [sym_math] = STATE(179), - [sym_verbatim] = STATE(179), - [sym__todo_highlights] = STATE(179), - [sym_todo] = STATE(179), - [sym_note] = STATE(179), - [sym__symbol_fallback] = STATE(179), - [aux_sym__text] = STATE(163), - [aux_sym__inline_repeat1] = STATE(130), - [anon_sym_LBRACE_] = ACTIONS(915), - [anon_sym__] = ACTIONS(917), - [anon_sym_LBRACE_STAR] = ACTIONS(919), - [anon_sym_STAR] = ACTIONS(921), - [anon_sym_BSLASH] = ACTIONS(923), - [sym_quotation_marks] = ACTIONS(925), - [sym_ellipsis] = ACTIONS(925), - [sym_em_dash] = ACTIONS(925), - [sym_en_dash] = ACTIONS(927), - [sym_backslash_escape] = ACTIONS(927), - [anon_sym_LT] = ACTIONS(929), - [anon_sym_LBRACE_EQ] = ACTIONS(931), - [anon_sym_LBRACE_PLUS] = ACTIONS(933), - [anon_sym_LBRACE_DASH] = ACTIONS(935), - [sym_symbol] = ACTIONS(925), - [anon_sym_LBRACE_CARET] = ACTIONS(937), - [anon_sym_CARET] = ACTIONS(937), - [anon_sym_LBRACE_TILDE] = ACTIONS(939), - [anon_sym_TILDE] = ACTIONS(939), - [anon_sym_LBRACK_CARET] = ACTIONS(941), - [anon_sym_BANG_LBRACK] = ACTIONS(943), - [anon_sym_LBRACK] = ACTIONS(945), - [anon_sym_LBRACE2] = ACTIONS(927), - [anon_sym_DOLLAR] = ACTIONS(947), - [anon_sym_TODO] = ACTIONS(949), - [anon_sym_WIP] = ACTIONS(949), - [anon_sym_NOTE] = ACTIONS(951), - [anon_sym_INFO] = ACTIONS(951), - [anon_sym_XXX] = ACTIONS(951), - [sym_fixme] = ACTIONS(925), - [anon_sym_PIPE] = ACTIONS(925), - [sym__whitespace1] = ACTIONS(953), - [sym__newline] = ACTIONS(955), - [aux_sym__text_token1] = ACTIONS(957), - [sym__verbatim_begin] = ACTIONS(959), + [sym__inline] = STATE(885), + [sym__element] = STATE(95), + [sym_emphasis] = STATE(191), + [sym_emphasis_begin] = STATE(1008), + [sym_strong] = STATE(191), + [sym_strong_begin] = STATE(90), + [sym__hard_line_break] = STATE(191), + [sym_hard_line_break] = STATE(191), + [sym__smart_punctuation] = STATE(191), + [sym_autolink] = STATE(191), + [sym_highlighted] = STATE(191), + [sym_insert] = STATE(191), + [sym_delete] = STATE(191), + [sym_superscript] = STATE(191), + [sym_subscript] = STATE(191), + [sym_footnote_reference] = STATE(191), + [sym__image] = STATE(191), + [sym_full_reference_image] = STATE(191), + [sym_collapsed_reference_image] = STATE(191), + [sym_inline_image] = STATE(191), + [sym__image_description] = STATE(699), + [sym__link] = STATE(191), + [sym_full_reference_link] = STATE(191), + [sym_collapsed_reference_link] = STATE(191), + [sym_inline_link] = STATE(191), + [sym_link_text] = STATE(698), + [sym__comment_with_spaces] = STATE(191), + [sym_span] = STATE(191), + [sym_raw_inline] = STATE(191), + [sym_math] = STATE(191), + [sym_verbatim] = STATE(191), + [sym__todo_highlights] = STATE(191), + [sym_todo] = STATE(191), + [sym_note] = STATE(191), + [sym__symbol_fallback] = STATE(191), + [aux_sym__text] = STATE(137), + [aux_sym__inline_repeat1] = STATE(95), + [anon_sym_LBRACE_] = ACTIONS(592), + [anon_sym__] = ACTIONS(594), + [anon_sym_LBRACE_STAR] = ACTIONS(596), + [anon_sym_STAR] = ACTIONS(598), + [anon_sym_BSLASH] = ACTIONS(600), + [sym_quotation_marks] = ACTIONS(602), + [sym_ellipsis] = ACTIONS(602), + [sym_em_dash] = ACTIONS(602), + [sym_en_dash] = ACTIONS(604), + [sym_backslash_escape] = ACTIONS(604), + [anon_sym_LT] = ACTIONS(606), + [anon_sym_LBRACE_EQ] = ACTIONS(608), + [anon_sym_LBRACE_PLUS] = ACTIONS(610), + [anon_sym_LBRACE_DASH] = ACTIONS(612), + [sym_symbol] = ACTIONS(602), + [anon_sym_LBRACE_CARET] = ACTIONS(614), + [anon_sym_CARET] = ACTIONS(614), + [anon_sym_LBRACE_TILDE] = ACTIONS(616), + [anon_sym_TILDE] = ACTIONS(616), + [anon_sym_LBRACK_CARET] = ACTIONS(618), + [anon_sym_BANG_LBRACK] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(622), + [anon_sym_LBRACE2] = ACTIONS(604), + [anon_sym_DOLLAR] = ACTIONS(624), + [anon_sym_TODO] = ACTIONS(626), + [anon_sym_WIP] = ACTIONS(626), + [anon_sym_NOTE] = ACTIONS(628), + [anon_sym_INFO] = ACTIONS(628), + [anon_sym_XXX] = ACTIONS(628), + [sym_fixme] = ACTIONS(602), + [anon_sym_PIPE] = ACTIONS(602), + [sym__whitespace1] = ACTIONS(630), + [sym__newline] = ACTIONS(632), + [aux_sym__text_token1] = ACTIONS(634), + [sym__verbatim_begin] = ACTIONS(636), }, [110] = { - [sym__inline] = STATE(735), - [sym__element] = STATE(126), - [sym_emphasis] = STATE(189), - [sym_emphasis_begin] = STATE(1018), - [sym_strong] = STATE(189), - [sym_strong_begin] = STATE(112), - [sym__hard_line_break] = STATE(189), - [sym_hard_line_break] = STATE(189), - [sym__smart_punctuation] = STATE(189), - [sym_autolink] = STATE(189), - [sym_highlighted] = STATE(189), - [sym_insert] = STATE(189), - [sym_delete] = STATE(189), - [sym_superscript] = STATE(189), - [sym_subscript] = STATE(189), - [sym_footnote_reference] = STATE(189), - [sym__image] = STATE(189), - [sym_full_reference_image] = STATE(189), - [sym_collapsed_reference_image] = STATE(189), - [sym_inline_image] = STATE(189), - [sym__image_description] = STATE(707), - [sym__link] = STATE(189), - [sym_full_reference_link] = STATE(189), - [sym_collapsed_reference_link] = STATE(189), - [sym_inline_link] = STATE(189), - [sym_link_text] = STATE(698), - [sym__comment_with_spaces] = STATE(189), - [sym_span] = STATE(189), - [sym_raw_inline] = STATE(189), - [sym_math] = STATE(189), - [sym_verbatim] = STATE(189), - [sym__todo_highlights] = STATE(189), - [sym_todo] = STATE(189), - [sym_note] = STATE(189), - [sym__symbol_fallback] = STATE(189), - [aux_sym__text] = STATE(161), - [aux_sym__inline_repeat1] = STATE(126), - [anon_sym_LBRACE_] = ACTIONS(1055), - [anon_sym__] = ACTIONS(1057), - [anon_sym_LBRACE_STAR] = ACTIONS(1059), - [anon_sym_STAR] = ACTIONS(1061), - [anon_sym_BSLASH] = ACTIONS(1063), - [sym_quotation_marks] = ACTIONS(1065), - [sym_ellipsis] = ACTIONS(1065), - [sym_em_dash] = ACTIONS(1065), - [sym_en_dash] = ACTIONS(1067), - [sym_backslash_escape] = ACTIONS(1067), - [anon_sym_LT] = ACTIONS(1069), - [anon_sym_LBRACE_EQ] = ACTIONS(1071), - [anon_sym_LBRACE_PLUS] = ACTIONS(1073), - [anon_sym_LBRACE_DASH] = ACTIONS(1075), - [sym_symbol] = ACTIONS(1065), - [anon_sym_LBRACE_CARET] = ACTIONS(1077), - [anon_sym_CARET] = ACTIONS(1077), - [anon_sym_LBRACE_TILDE] = ACTIONS(1079), - [anon_sym_TILDE] = ACTIONS(1079), - [anon_sym_LBRACK_CARET] = ACTIONS(1081), - [anon_sym_BANG_LBRACK] = ACTIONS(1083), - [anon_sym_LBRACK] = ACTIONS(1085), - [anon_sym_LBRACE2] = ACTIONS(1067), - [anon_sym_DOLLAR] = ACTIONS(1087), - [anon_sym_TODO] = ACTIONS(1089), - [anon_sym_WIP] = ACTIONS(1089), - [anon_sym_NOTE] = ACTIONS(1091), - [anon_sym_INFO] = ACTIONS(1091), - [anon_sym_XXX] = ACTIONS(1091), - [sym_fixme] = ACTIONS(1065), - [anon_sym_PIPE] = ACTIONS(1065), - [sym__whitespace1] = ACTIONS(1093), - [sym__newline] = ACTIONS(1095), - [aux_sym__text_token1] = ACTIONS(1097), - [sym__verbatim_begin] = ACTIONS(1099), + [sym__inline] = STATE(728), + [sym__element] = STATE(106), + [sym_emphasis] = STATE(186), + [sym_emphasis_begin] = STATE(1006), + [sym_strong] = STATE(186), + [sym_strong_begin] = STATE(79), + [sym__hard_line_break] = STATE(186), + [sym_hard_line_break] = STATE(186), + [sym__smart_punctuation] = STATE(186), + [sym_autolink] = STATE(186), + [sym_highlighted] = STATE(186), + [sym_insert] = STATE(186), + [sym_delete] = STATE(186), + [sym_superscript] = STATE(186), + [sym_subscript] = STATE(186), + [sym_footnote_reference] = STATE(186), + [sym__image] = STATE(186), + [sym_full_reference_image] = STATE(186), + [sym_collapsed_reference_image] = STATE(186), + [sym_inline_image] = STATE(186), + [sym__image_description] = STATE(714), + [sym__link] = STATE(186), + [sym_full_reference_link] = STATE(186), + [sym_collapsed_reference_link] = STATE(186), + [sym_inline_link] = STATE(186), + [sym_link_text] = STATE(713), + [sym__comment_with_spaces] = STATE(186), + [sym_span] = STATE(186), + [sym_raw_inline] = STATE(186), + [sym_math] = STATE(186), + [sym_verbatim] = STATE(186), + [sym__todo_highlights] = STATE(186), + [sym_todo] = STATE(186), + [sym_note] = STATE(186), + [sym__symbol_fallback] = STATE(186), + [aux_sym__text] = STATE(160), + [aux_sym__inline_repeat1] = STATE(106), + [anon_sym_LBRACE_] = ACTIONS(546), + [anon_sym__] = ACTIONS(548), + [anon_sym_LBRACE_STAR] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_BSLASH] = ACTIONS(554), + [sym_quotation_marks] = ACTIONS(556), + [sym_ellipsis] = ACTIONS(556), + [sym_em_dash] = ACTIONS(556), + [sym_en_dash] = ACTIONS(558), + [sym_backslash_escape] = ACTIONS(558), + [anon_sym_LT] = ACTIONS(560), + [anon_sym_LBRACE_EQ] = ACTIONS(562), + [anon_sym_LBRACE_PLUS] = ACTIONS(564), + [anon_sym_LBRACE_DASH] = ACTIONS(566), + [sym_symbol] = ACTIONS(556), + [anon_sym_LBRACE_CARET] = ACTIONS(568), + [anon_sym_CARET] = ACTIONS(568), + [anon_sym_LBRACE_TILDE] = ACTIONS(570), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_LBRACK_CARET] = ACTIONS(572), + [anon_sym_BANG_LBRACK] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LBRACE2] = ACTIONS(558), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_TODO] = ACTIONS(580), + [anon_sym_WIP] = ACTIONS(580), + [anon_sym_NOTE] = ACTIONS(582), + [anon_sym_INFO] = ACTIONS(582), + [anon_sym_XXX] = ACTIONS(582), + [sym_fixme] = ACTIONS(556), + [anon_sym_PIPE] = ACTIONS(556), + [sym__whitespace1] = ACTIONS(584), + [sym__newline] = ACTIONS(586), + [aux_sym__text_token1] = ACTIONS(588), + [sym__verbatim_begin] = ACTIONS(590), }, [111] = { - [sym__inline] = STATE(817), - [sym__element] = STATE(94), - [sym_emphasis] = STATE(188), - [sym_emphasis_begin] = STATE(1020), - [sym_strong] = STATE(188), - [sym_strong_begin] = STATE(106), - [sym__hard_line_break] = STATE(188), - [sym_hard_line_break] = STATE(188), - [sym__smart_punctuation] = STATE(188), - [sym_autolink] = STATE(188), - [sym_highlighted] = STATE(188), - [sym_insert] = STATE(188), - [sym_delete] = STATE(188), - [sym_superscript] = STATE(188), - [sym_subscript] = STATE(188), - [sym_footnote_reference] = STATE(188), - [sym__image] = STATE(188), - [sym_full_reference_image] = STATE(188), - [sym_collapsed_reference_image] = STATE(188), - [sym_inline_image] = STATE(188), - [sym__image_description] = STATE(702), - [sym__link] = STATE(188), - [sym_full_reference_link] = STATE(188), - [sym_collapsed_reference_link] = STATE(188), - [sym_inline_link] = STATE(188), - [sym_link_text] = STATE(700), - [sym__comment_with_spaces] = STATE(188), - [sym_span] = STATE(188), - [sym_raw_inline] = STATE(188), - [sym_math] = STATE(188), - [sym_verbatim] = STATE(188), - [sym__todo_highlights] = STATE(188), - [sym_todo] = STATE(188), - [sym_note] = STATE(188), - [sym__symbol_fallback] = STATE(188), - [aux_sym__text] = STATE(147), - [aux_sym__inline_repeat1] = STATE(94), - [anon_sym_LBRACE_] = ACTIONS(614), - [anon_sym__] = ACTIONS(616), - [anon_sym_LBRACE_STAR] = ACTIONS(618), - [anon_sym_STAR] = ACTIONS(620), - [anon_sym_BSLASH] = ACTIONS(622), - [sym_quotation_marks] = ACTIONS(624), - [sym_ellipsis] = ACTIONS(624), - [sym_em_dash] = ACTIONS(624), - [sym_en_dash] = ACTIONS(626), - [sym_backslash_escape] = ACTIONS(626), - [anon_sym_LT] = ACTIONS(628), - [anon_sym_LBRACE_EQ] = ACTIONS(630), - [anon_sym_LBRACE_PLUS] = ACTIONS(632), - [anon_sym_LBRACE_DASH] = ACTIONS(634), - [sym_symbol] = ACTIONS(624), - [anon_sym_LBRACE_CARET] = ACTIONS(636), - [anon_sym_CARET] = ACTIONS(636), - [anon_sym_LBRACE_TILDE] = ACTIONS(638), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_LBRACK_CARET] = ACTIONS(640), - [anon_sym_BANG_LBRACK] = ACTIONS(642), - [anon_sym_LBRACK] = ACTIONS(644), - [anon_sym_LBRACE2] = ACTIONS(626), - [anon_sym_DOLLAR] = ACTIONS(646), - [anon_sym_TODO] = ACTIONS(648), - [anon_sym_WIP] = ACTIONS(648), - [anon_sym_NOTE] = ACTIONS(650), - [anon_sym_INFO] = ACTIONS(650), - [anon_sym_XXX] = ACTIONS(650), - [sym_fixme] = ACTIONS(624), - [anon_sym_PIPE] = ACTIONS(624), - [sym__whitespace1] = ACTIONS(652), - [sym__newline] = ACTIONS(654), - [aux_sym__text_token1] = ACTIONS(656), - [sym__verbatim_begin] = ACTIONS(658), - }, - [112] = { - [sym__inline] = STATE(727), - [sym__element] = STATE(126), - [sym_emphasis] = STATE(189), - [sym_emphasis_begin] = STATE(1018), - [sym_strong] = STATE(189), - [sym_strong_begin] = STATE(112), - [sym__hard_line_break] = STATE(189), - [sym_hard_line_break] = STATE(189), - [sym__smart_punctuation] = STATE(189), - [sym_autolink] = STATE(189), - [sym_highlighted] = STATE(189), - [sym_insert] = STATE(189), - [sym_delete] = STATE(189), - [sym_superscript] = STATE(189), - [sym_subscript] = STATE(189), - [sym_footnote_reference] = STATE(189), - [sym__image] = STATE(189), - [sym_full_reference_image] = STATE(189), - [sym_collapsed_reference_image] = STATE(189), - [sym_inline_image] = STATE(189), - [sym__image_description] = STATE(707), - [sym__link] = STATE(189), - [sym_full_reference_link] = STATE(189), - [sym_collapsed_reference_link] = STATE(189), - [sym_inline_link] = STATE(189), - [sym_link_text] = STATE(698), - [sym__comment_with_spaces] = STATE(189), - [sym_span] = STATE(189), - [sym_raw_inline] = STATE(189), - [sym_math] = STATE(189), - [sym_verbatim] = STATE(189), - [sym__todo_highlights] = STATE(189), - [sym_todo] = STATE(189), - [sym_note] = STATE(189), - [sym__symbol_fallback] = STATE(189), - [aux_sym__text] = STATE(161), - [aux_sym__inline_repeat1] = STATE(126), - [anon_sym_LBRACE_] = ACTIONS(1055), - [anon_sym__] = ACTIONS(1057), - [anon_sym_LBRACE_STAR] = ACTIONS(1059), - [anon_sym_STAR] = ACTIONS(1061), - [anon_sym_BSLASH] = ACTIONS(1063), - [sym_quotation_marks] = ACTIONS(1065), - [sym_ellipsis] = ACTIONS(1065), - [sym_em_dash] = ACTIONS(1065), - [sym_en_dash] = ACTIONS(1067), - [sym_backslash_escape] = ACTIONS(1067), - [anon_sym_LT] = ACTIONS(1069), - [anon_sym_LBRACE_EQ] = ACTIONS(1071), - [anon_sym_LBRACE_PLUS] = ACTIONS(1073), - [anon_sym_LBRACE_DASH] = ACTIONS(1075), - [sym_symbol] = ACTIONS(1065), - [anon_sym_LBRACE_CARET] = ACTIONS(1077), - [anon_sym_CARET] = ACTIONS(1077), - [anon_sym_LBRACE_TILDE] = ACTIONS(1079), - [anon_sym_TILDE] = ACTIONS(1079), - [anon_sym_LBRACK_CARET] = ACTIONS(1081), - [anon_sym_BANG_LBRACK] = ACTIONS(1083), - [anon_sym_LBRACK] = ACTIONS(1085), - [anon_sym_LBRACE2] = ACTIONS(1067), - [anon_sym_DOLLAR] = ACTIONS(1087), - [anon_sym_TODO] = ACTIONS(1089), - [anon_sym_WIP] = ACTIONS(1089), - [anon_sym_NOTE] = ACTIONS(1091), - [anon_sym_INFO] = ACTIONS(1091), - [anon_sym_XXX] = ACTIONS(1091), - [sym_fixme] = ACTIONS(1065), - [anon_sym_PIPE] = ACTIONS(1065), - [sym__whitespace1] = ACTIONS(1093), - [sym__newline] = ACTIONS(1095), - [aux_sym__text_token1] = ACTIONS(1097), - [sym__verbatim_begin] = ACTIONS(1099), - }, - [113] = { - [sym__inline] = STATE(804), - [sym__element] = STATE(94), - [sym_emphasis] = STATE(188), - [sym_emphasis_begin] = STATE(1020), - [sym_strong] = STATE(188), - [sym_strong_begin] = STATE(106), - [sym__hard_line_break] = STATE(188), - [sym_hard_line_break] = STATE(188), - [sym__smart_punctuation] = STATE(188), - [sym_autolink] = STATE(188), - [sym_highlighted] = STATE(188), - [sym_insert] = STATE(188), - [sym_delete] = STATE(188), - [sym_superscript] = STATE(188), - [sym_subscript] = STATE(188), - [sym_footnote_reference] = STATE(188), - [sym__image] = STATE(188), - [sym_full_reference_image] = STATE(188), - [sym_collapsed_reference_image] = STATE(188), - [sym_inline_image] = STATE(188), - [sym__image_description] = STATE(702), - [sym__link] = STATE(188), - [sym_full_reference_link] = STATE(188), - [sym_collapsed_reference_link] = STATE(188), - [sym_inline_link] = STATE(188), - [sym_link_text] = STATE(700), - [sym__comment_with_spaces] = STATE(188), - [sym_span] = STATE(188), - [sym_raw_inline] = STATE(188), - [sym_math] = STATE(188), - [sym_verbatim] = STATE(188), - [sym__todo_highlights] = STATE(188), - [sym_todo] = STATE(188), - [sym_note] = STATE(188), - [sym__symbol_fallback] = STATE(188), - [aux_sym__text] = STATE(147), - [aux_sym__inline_repeat1] = STATE(94), - [anon_sym_LBRACE_] = ACTIONS(614), - [anon_sym__] = ACTIONS(616), - [anon_sym_LBRACE_STAR] = ACTIONS(618), - [anon_sym_STAR] = ACTIONS(620), - [anon_sym_BSLASH] = ACTIONS(622), - [sym_quotation_marks] = ACTIONS(624), - [sym_ellipsis] = ACTIONS(624), - [sym_em_dash] = ACTIONS(624), - [sym_en_dash] = ACTIONS(626), - [sym_backslash_escape] = ACTIONS(626), - [anon_sym_LT] = ACTIONS(628), - [anon_sym_LBRACE_EQ] = ACTIONS(630), - [anon_sym_LBRACE_PLUS] = ACTIONS(632), - [anon_sym_LBRACE_DASH] = ACTIONS(634), - [sym_symbol] = ACTIONS(624), - [anon_sym_LBRACE_CARET] = ACTIONS(636), - [anon_sym_CARET] = ACTIONS(636), - [anon_sym_LBRACE_TILDE] = ACTIONS(638), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_LBRACK_CARET] = ACTIONS(640), - [anon_sym_BANG_LBRACK] = ACTIONS(642), - [anon_sym_LBRACK] = ACTIONS(644), - [anon_sym_LBRACE2] = ACTIONS(626), - [anon_sym_DOLLAR] = ACTIONS(646), - [anon_sym_TODO] = ACTIONS(648), - [anon_sym_WIP] = ACTIONS(648), - [anon_sym_NOTE] = ACTIONS(650), - [anon_sym_INFO] = ACTIONS(650), - [anon_sym_XXX] = ACTIONS(650), - [sym_fixme] = ACTIONS(624), - [anon_sym_PIPE] = ACTIONS(624), - [sym__whitespace1] = ACTIONS(652), - [sym__newline] = ACTIONS(654), - [aux_sym__text_token1] = ACTIONS(656), - [sym__verbatim_begin] = ACTIONS(658), - }, - [114] = { - [sym__inline] = STATE(731), - [sym__element] = STATE(126), - [sym_emphasis] = STATE(189), - [sym_emphasis_begin] = STATE(1018), - [sym_strong] = STATE(189), - [sym_strong_begin] = STATE(112), - [sym__hard_line_break] = STATE(189), - [sym_hard_line_break] = STATE(189), - [sym__smart_punctuation] = STATE(189), - [sym_autolink] = STATE(189), - [sym_highlighted] = STATE(189), - [sym_insert] = STATE(189), - [sym_delete] = STATE(189), - [sym_superscript] = STATE(189), - [sym_subscript] = STATE(189), - [sym_footnote_reference] = STATE(189), - [sym__image] = STATE(189), - [sym_full_reference_image] = STATE(189), - [sym_collapsed_reference_image] = STATE(189), - [sym_inline_image] = STATE(189), - [sym__image_description] = STATE(707), - [sym__link] = STATE(189), - [sym_full_reference_link] = STATE(189), - [sym_collapsed_reference_link] = STATE(189), - [sym_inline_link] = STATE(189), + [sym__inline] = STATE(959), + [sym__element] = STATE(95), + [sym_emphasis] = STATE(191), + [sym_emphasis_begin] = STATE(1008), + [sym_strong] = STATE(191), + [sym_strong_begin] = STATE(90), + [sym__hard_line_break] = STATE(191), + [sym_hard_line_break] = STATE(191), + [sym__smart_punctuation] = STATE(191), + [sym_autolink] = STATE(191), + [sym_highlighted] = STATE(191), + [sym_insert] = STATE(191), + [sym_delete] = STATE(191), + [sym_superscript] = STATE(191), + [sym_subscript] = STATE(191), + [sym_footnote_reference] = STATE(191), + [sym__image] = STATE(191), + [sym_full_reference_image] = STATE(191), + [sym_collapsed_reference_image] = STATE(191), + [sym_inline_image] = STATE(191), + [sym__image_description] = STATE(699), + [sym__link] = STATE(191), + [sym_full_reference_link] = STATE(191), + [sym_collapsed_reference_link] = STATE(191), + [sym_inline_link] = STATE(191), [sym_link_text] = STATE(698), - [sym__comment_with_spaces] = STATE(189), - [sym_span] = STATE(189), - [sym_raw_inline] = STATE(189), - [sym_math] = STATE(189), - [sym_verbatim] = STATE(189), - [sym__todo_highlights] = STATE(189), - [sym_todo] = STATE(189), - [sym_note] = STATE(189), - [sym__symbol_fallback] = STATE(189), - [aux_sym__text] = STATE(161), - [aux_sym__inline_repeat1] = STATE(126), - [anon_sym_LBRACE_] = ACTIONS(1055), - [anon_sym__] = ACTIONS(1057), - [anon_sym_LBRACE_STAR] = ACTIONS(1059), - [anon_sym_STAR] = ACTIONS(1061), - [anon_sym_BSLASH] = ACTIONS(1063), - [sym_quotation_marks] = ACTIONS(1065), - [sym_ellipsis] = ACTIONS(1065), - [sym_em_dash] = ACTIONS(1065), - [sym_en_dash] = ACTIONS(1067), - [sym_backslash_escape] = ACTIONS(1067), - [anon_sym_LT] = ACTIONS(1069), - [anon_sym_LBRACE_EQ] = ACTIONS(1071), - [anon_sym_LBRACE_PLUS] = ACTIONS(1073), - [anon_sym_LBRACE_DASH] = ACTIONS(1075), - [sym_symbol] = ACTIONS(1065), - [anon_sym_LBRACE_CARET] = ACTIONS(1077), - [anon_sym_CARET] = ACTIONS(1077), - [anon_sym_LBRACE_TILDE] = ACTIONS(1079), - [anon_sym_TILDE] = ACTIONS(1079), - [anon_sym_LBRACK_CARET] = ACTIONS(1081), - [anon_sym_BANG_LBRACK] = ACTIONS(1083), - [anon_sym_LBRACK] = ACTIONS(1085), - [anon_sym_LBRACE2] = ACTIONS(1067), - [anon_sym_DOLLAR] = ACTIONS(1087), - [anon_sym_TODO] = ACTIONS(1089), - [anon_sym_WIP] = ACTIONS(1089), - [anon_sym_NOTE] = ACTIONS(1091), - [anon_sym_INFO] = ACTIONS(1091), - [anon_sym_XXX] = ACTIONS(1091), - [sym_fixme] = ACTIONS(1065), - [anon_sym_PIPE] = ACTIONS(1065), - [sym__whitespace1] = ACTIONS(1093), - [sym__newline] = ACTIONS(1095), - [aux_sym__text_token1] = ACTIONS(1097), - [sym__verbatim_begin] = ACTIONS(1099), - }, - [115] = { - [sym__element] = STATE(115), - [sym_emphasis] = STATE(215), - [sym_emphasis_begin] = STATE(1012), - [sym_strong] = STATE(215), - [sym_strong_begin] = STATE(128), - [sym__hard_line_break] = STATE(215), - [sym_hard_line_break] = STATE(215), - [sym__smart_punctuation] = STATE(215), - [sym_autolink] = STATE(215), - [sym_highlighted] = STATE(215), - [sym_insert] = STATE(215), - [sym_delete] = STATE(215), - [sym_superscript] = STATE(215), - [sym_subscript] = STATE(215), - [sym_footnote_reference] = STATE(215), - [sym__image] = STATE(215), - [sym_full_reference_image] = STATE(215), - [sym_collapsed_reference_image] = STATE(215), - [sym_inline_image] = STATE(215), - [sym__image_description] = STATE(696), - [sym__link] = STATE(215), - [sym_full_reference_link] = STATE(215), - [sym_collapsed_reference_link] = STATE(215), - [sym_inline_link] = STATE(215), - [sym_link_text] = STATE(705), - [sym__comment_with_spaces] = STATE(215), - [sym_span] = STATE(215), - [sym_raw_inline] = STATE(215), - [sym_math] = STATE(215), - [sym_verbatim] = STATE(215), - [sym__todo_highlights] = STATE(215), - [sym_todo] = STATE(215), - [sym_note] = STATE(215), - [sym__symbol_fallback] = STATE(215), - [aux_sym__text] = STATE(141), - [aux_sym__inline_repeat1] = STATE(115), - [anon_sym_LBRACE_] = ACTIONS(1313), - [anon_sym__] = ACTIONS(1316), - [anon_sym_LBRACE_STAR] = ACTIONS(1319), - [anon_sym_STAR] = ACTIONS(1322), - [anon_sym_BSLASH] = ACTIONS(1325), - [sym_quotation_marks] = ACTIONS(1328), - [sym_ellipsis] = ACTIONS(1328), - [sym_em_dash] = ACTIONS(1328), - [sym_en_dash] = ACTIONS(1331), - [sym_backslash_escape] = ACTIONS(1331), - [anon_sym_LT] = ACTIONS(1334), - [anon_sym_LBRACE_EQ] = ACTIONS(1337), - [anon_sym_EQ_RBRACE] = ACTIONS(690), - [anon_sym_LBRACE_PLUS] = ACTIONS(1340), - [anon_sym_LBRACE_DASH] = ACTIONS(1343), - [sym_symbol] = ACTIONS(1328), - [anon_sym_LBRACE_CARET] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_LBRACE_TILDE] = ACTIONS(1349), - [anon_sym_TILDE] = ACTIONS(1349), - [anon_sym_LBRACK_CARET] = ACTIONS(1352), - [anon_sym_BANG_LBRACK] = ACTIONS(1355), - [anon_sym_LBRACK] = ACTIONS(1358), - [anon_sym_LBRACE2] = ACTIONS(1331), - [anon_sym_DOLLAR] = ACTIONS(1361), - [anon_sym_TODO] = ACTIONS(1364), - [anon_sym_WIP] = ACTIONS(1364), - [anon_sym_NOTE] = ACTIONS(1367), - [anon_sym_INFO] = ACTIONS(1367), - [anon_sym_XXX] = ACTIONS(1367), - [sym_fixme] = ACTIONS(1328), - [anon_sym_PIPE] = ACTIONS(1328), - [sym__whitespace1] = ACTIONS(1370), - [sym__newline] = ACTIONS(1373), - [aux_sym__text_token1] = ACTIONS(1376), - [sym__verbatim_begin] = ACTIONS(1379), - }, - [116] = { - [sym__element] = STATE(116), - [sym_emphasis] = STATE(204), - [sym_emphasis_begin] = STATE(1017), - [sym_strong] = STATE(204), - [sym_strong_begin] = STATE(114), - [sym__hard_line_break] = STATE(204), - [sym_hard_line_break] = STATE(204), - [sym__smart_punctuation] = STATE(204), - [sym_autolink] = STATE(204), - [sym_highlighted] = STATE(204), - [sym_insert] = STATE(204), - [sym_delete] = STATE(204), - [sym_superscript] = STATE(204), - [sym_subscript] = STATE(204), - [sym_footnote_reference] = STATE(204), - [sym__image] = STATE(204), - [sym_full_reference_image] = STATE(204), - [sym_collapsed_reference_image] = STATE(204), - [sym_inline_image] = STATE(204), - [sym__image_description] = STATE(714), - [sym__link] = STATE(204), - [sym_full_reference_link] = STATE(204), - [sym_collapsed_reference_link] = STATE(204), - [sym_inline_link] = STATE(204), - [sym_link_text] = STATE(715), - [sym__comment_with_spaces] = STATE(204), - [sym_span] = STATE(204), - [sym_raw_inline] = STATE(204), - [sym_math] = STATE(204), - [sym_verbatim] = STATE(204), - [sym__todo_highlights] = STATE(204), - [sym_todo] = STATE(204), - [sym_note] = STATE(204), - [sym__symbol_fallback] = STATE(204), - [aux_sym__text] = STATE(149), - [aux_sym__inline_repeat1] = STATE(116), - [anon_sym_LBRACE_] = ACTIONS(1382), - [anon_sym__] = ACTIONS(1385), - [anon_sym_LBRACE_STAR] = ACTIONS(1388), - [anon_sym_STAR] = ACTIONS(1391), - [anon_sym_BSLASH] = ACTIONS(1394), - [sym_quotation_marks] = ACTIONS(1397), - [sym_ellipsis] = ACTIONS(1397), - [sym_em_dash] = ACTIONS(1397), - [sym_en_dash] = ACTIONS(1400), - [sym_backslash_escape] = ACTIONS(1400), - [anon_sym_LT] = ACTIONS(1403), - [anon_sym_LBRACE_EQ] = ACTIONS(1406), - [anon_sym_LBRACE_PLUS] = ACTIONS(1409), - [anon_sym_LBRACE_DASH] = ACTIONS(1412), - [sym_symbol] = ACTIONS(1397), - [anon_sym_LBRACE_CARET] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1415), - [anon_sym_LBRACE_TILDE] = ACTIONS(1418), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_LBRACK_CARET] = ACTIONS(1421), - [anon_sym_RBRACK] = ACTIONS(690), - [anon_sym_BANG_LBRACK] = ACTIONS(1424), - [anon_sym_LBRACK] = ACTIONS(1427), - [anon_sym_LBRACE2] = ACTIONS(1400), - [anon_sym_DOLLAR] = ACTIONS(1430), - [anon_sym_TODO] = ACTIONS(1433), - [anon_sym_WIP] = ACTIONS(1433), - [anon_sym_NOTE] = ACTIONS(1436), - [anon_sym_INFO] = ACTIONS(1436), - [anon_sym_XXX] = ACTIONS(1436), - [sym_fixme] = ACTIONS(1397), - [anon_sym_PIPE] = ACTIONS(1397), - [sym__whitespace1] = ACTIONS(1439), - [sym__newline] = ACTIONS(1442), - [aux_sym__text_token1] = ACTIONS(1445), - [sym__verbatim_begin] = ACTIONS(1448), + [sym__comment_with_spaces] = STATE(191), + [sym_span] = STATE(191), + [sym_raw_inline] = STATE(191), + [sym_math] = STATE(191), + [sym_verbatim] = STATE(191), + [sym__todo_highlights] = STATE(191), + [sym_todo] = STATE(191), + [sym_note] = STATE(191), + [sym__symbol_fallback] = STATE(191), + [aux_sym__text] = STATE(137), + [aux_sym__inline_repeat1] = STATE(95), + [anon_sym_LBRACE_] = ACTIONS(592), + [anon_sym__] = ACTIONS(594), + [anon_sym_LBRACE_STAR] = ACTIONS(596), + [anon_sym_STAR] = ACTIONS(598), + [anon_sym_BSLASH] = ACTIONS(600), + [sym_quotation_marks] = ACTIONS(602), + [sym_ellipsis] = ACTIONS(602), + [sym_em_dash] = ACTIONS(602), + [sym_en_dash] = ACTIONS(604), + [sym_backslash_escape] = ACTIONS(604), + [anon_sym_LT] = ACTIONS(606), + [anon_sym_LBRACE_EQ] = ACTIONS(608), + [anon_sym_LBRACE_PLUS] = ACTIONS(610), + [anon_sym_LBRACE_DASH] = ACTIONS(612), + [sym_symbol] = ACTIONS(602), + [anon_sym_LBRACE_CARET] = ACTIONS(614), + [anon_sym_CARET] = ACTIONS(614), + [anon_sym_LBRACE_TILDE] = ACTIONS(616), + [anon_sym_TILDE] = ACTIONS(616), + [anon_sym_LBRACK_CARET] = ACTIONS(618), + [anon_sym_BANG_LBRACK] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(622), + [anon_sym_LBRACE2] = ACTIONS(604), + [anon_sym_DOLLAR] = ACTIONS(624), + [anon_sym_TODO] = ACTIONS(626), + [anon_sym_WIP] = ACTIONS(626), + [anon_sym_NOTE] = ACTIONS(628), + [anon_sym_INFO] = ACTIONS(628), + [anon_sym_XXX] = ACTIONS(628), + [sym_fixme] = ACTIONS(602), + [anon_sym_PIPE] = ACTIONS(602), + [sym__whitespace1] = ACTIONS(630), + [sym__newline] = ACTIONS(632), + [aux_sym__text_token1] = ACTIONS(634), + [sym__verbatim_begin] = ACTIONS(636), }, - [117] = { - [sym__element] = STATE(119), - [sym_emphasis] = STATE(182), - [sym_emphasis_begin] = STATE(1016), - [sym_strong] = STATE(182), - [sym_strong_begin] = STATE(122), - [sym__hard_line_break] = STATE(182), - [sym_hard_line_break] = STATE(182), - [sym__smart_punctuation] = STATE(182), - [sym_autolink] = STATE(182), - [sym_highlighted] = STATE(182), - [sym_insert] = STATE(182), - [sym_delete] = STATE(182), - [sym_superscript] = STATE(182), - [sym_subscript] = STATE(182), - [sym_footnote_reference] = STATE(182), - [sym__image] = STATE(182), - [sym_full_reference_image] = STATE(182), - [sym_collapsed_reference_image] = STATE(182), - [sym_inline_image] = STATE(182), - [sym__image_description] = STATE(692), - [sym__link] = STATE(182), - [sym_full_reference_link] = STATE(182), - [sym_collapsed_reference_link] = STATE(182), - [sym_inline_link] = STATE(182), - [sym_link_text] = STATE(689), - [sym__comment_with_spaces] = STATE(182), - [sym_span] = STATE(182), - [sym_raw_inline] = STATE(182), - [sym_math] = STATE(182), - [sym_verbatim] = STATE(182), - [sym__todo_highlights] = STATE(182), - [sym_todo] = STATE(182), - [sym_note] = STATE(182), - [sym__symbol_fallback] = STATE(182), + [112] = { + [sym__inline_without_trailing_space] = STATE(968), + [sym__element] = STATE(582), + [sym_emphasis] = STATE(176), + [sym_emphasis_begin] = STATE(1007), + [sym_strong] = STATE(176), + [sym_strong_begin] = STATE(94), + [sym__hard_line_break] = STATE(176), + [sym_hard_line_break] = STATE(176), + [sym__smart_punctuation] = STATE(176), + [sym_autolink] = STATE(176), + [sym_highlighted] = STATE(176), + [sym_insert] = STATE(176), + [sym_delete] = STATE(176), + [sym_superscript] = STATE(176), + [sym_subscript] = STATE(176), + [sym_footnote_reference] = STATE(176), + [sym__image] = STATE(176), + [sym_full_reference_image] = STATE(176), + [sym_collapsed_reference_image] = STATE(176), + [sym_inline_image] = STATE(176), + [sym__image_description] = STATE(685), + [sym__link] = STATE(176), + [sym_full_reference_link] = STATE(176), + [sym_collapsed_reference_link] = STATE(176), + [sym_inline_link] = STATE(176), + [sym_link_text] = STATE(704), + [sym__comment_with_spaces] = STATE(176), + [sym_span] = STATE(176), + [sym_raw_inline] = STATE(176), + [sym_math] = STATE(176), + [sym_verbatim] = STATE(176), + [sym__todo_highlights] = STATE(176), + [sym_todo] = STATE(176), + [sym_note] = STATE(176), + [sym__symbol_fallback] = STATE(176), + [aux_sym__text] = STATE(161), + [aux_sym__inline_repeat1] = STATE(131), + [anon_sym_LBRACE_] = ACTIONS(781), + [anon_sym__] = ACTIONS(783), + [anon_sym_LBRACE_STAR] = ACTIONS(785), + [anon_sym_STAR] = ACTIONS(787), + [anon_sym_BSLASH] = ACTIONS(789), + [sym_quotation_marks] = ACTIONS(791), + [sym_ellipsis] = ACTIONS(791), + [sym_em_dash] = ACTIONS(791), + [sym_en_dash] = ACTIONS(793), + [sym_backslash_escape] = ACTIONS(793), + [anon_sym_LT] = ACTIONS(795), + [anon_sym_LBRACE_EQ] = ACTIONS(797), + [anon_sym_LBRACE_PLUS] = ACTIONS(799), + [anon_sym_LBRACE_DASH] = ACTIONS(801), + [sym_symbol] = ACTIONS(791), + [anon_sym_LBRACE_CARET] = ACTIONS(803), + [anon_sym_CARET] = ACTIONS(803), + [anon_sym_LBRACE_TILDE] = ACTIONS(805), + [anon_sym_TILDE] = ACTIONS(805), + [anon_sym_LBRACK_CARET] = ACTIONS(807), + [anon_sym_BANG_LBRACK] = ACTIONS(809), + [anon_sym_LBRACK] = ACTIONS(811), + [anon_sym_LBRACE2] = ACTIONS(793), + [anon_sym_DOLLAR] = ACTIONS(813), + [anon_sym_TODO] = ACTIONS(815), + [anon_sym_WIP] = ACTIONS(815), + [anon_sym_NOTE] = ACTIONS(817), + [anon_sym_INFO] = ACTIONS(817), + [anon_sym_XXX] = ACTIONS(817), + [sym_fixme] = ACTIONS(791), + [anon_sym_PIPE] = ACTIONS(791), + [sym__whitespace1] = ACTIONS(819), + [sym__newline] = ACTIONS(821), + [aux_sym__text_token1] = ACTIONS(823), + [sym__verbatim_begin] = ACTIONS(825), + }, + [113] = { + [sym__inline] = STATE(730), + [sym__element] = STATE(106), + [sym_emphasis] = STATE(186), + [sym_emphasis_begin] = STATE(1006), + [sym_strong] = STATE(186), + [sym_strong_begin] = STATE(79), + [sym__hard_line_break] = STATE(186), + [sym_hard_line_break] = STATE(186), + [sym__smart_punctuation] = STATE(186), + [sym_autolink] = STATE(186), + [sym_highlighted] = STATE(186), + [sym_insert] = STATE(186), + [sym_delete] = STATE(186), + [sym_superscript] = STATE(186), + [sym_subscript] = STATE(186), + [sym_footnote_reference] = STATE(186), + [sym__image] = STATE(186), + [sym_full_reference_image] = STATE(186), + [sym_collapsed_reference_image] = STATE(186), + [sym_inline_image] = STATE(186), + [sym__image_description] = STATE(714), + [sym__link] = STATE(186), + [sym_full_reference_link] = STATE(186), + [sym_collapsed_reference_link] = STATE(186), + [sym_inline_link] = STATE(186), + [sym_link_text] = STATE(713), + [sym__comment_with_spaces] = STATE(186), + [sym_span] = STATE(186), + [sym_raw_inline] = STATE(186), + [sym_math] = STATE(186), + [sym_verbatim] = STATE(186), + [sym__todo_highlights] = STATE(186), + [sym_todo] = STATE(186), + [sym_note] = STATE(186), + [sym__symbol_fallback] = STATE(186), + [aux_sym__text] = STATE(160), + [aux_sym__inline_repeat1] = STATE(106), + [anon_sym_LBRACE_] = ACTIONS(546), + [anon_sym__] = ACTIONS(548), + [anon_sym_LBRACE_STAR] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_BSLASH] = ACTIONS(554), + [sym_quotation_marks] = ACTIONS(556), + [sym_ellipsis] = ACTIONS(556), + [sym_em_dash] = ACTIONS(556), + [sym_en_dash] = ACTIONS(558), + [sym_backslash_escape] = ACTIONS(558), + [anon_sym_LT] = ACTIONS(560), + [anon_sym_LBRACE_EQ] = ACTIONS(562), + [anon_sym_LBRACE_PLUS] = ACTIONS(564), + [anon_sym_LBRACE_DASH] = ACTIONS(566), + [sym_symbol] = ACTIONS(556), + [anon_sym_LBRACE_CARET] = ACTIONS(568), + [anon_sym_CARET] = ACTIONS(568), + [anon_sym_LBRACE_TILDE] = ACTIONS(570), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_LBRACK_CARET] = ACTIONS(572), + [anon_sym_BANG_LBRACK] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LBRACE2] = ACTIONS(558), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_TODO] = ACTIONS(580), + [anon_sym_WIP] = ACTIONS(580), + [anon_sym_NOTE] = ACTIONS(582), + [anon_sym_INFO] = ACTIONS(582), + [anon_sym_XXX] = ACTIONS(582), + [sym_fixme] = ACTIONS(556), + [anon_sym_PIPE] = ACTIONS(556), + [sym__whitespace1] = ACTIONS(584), + [sym__newline] = ACTIONS(586), + [aux_sym__text_token1] = ACTIONS(588), + [sym__verbatim_begin] = ACTIONS(590), + }, + [114] = { + [sym__element] = STATE(81), + [sym_emphasis] = STATE(181), + [sym_emphasis_begin] = STATE(1004), + [sym_strong] = STATE(181), + [sym_strong_begin] = STATE(110), + [sym__hard_line_break] = STATE(181), + [sym_hard_line_break] = STATE(181), + [sym__smart_punctuation] = STATE(181), + [sym_autolink] = STATE(181), + [sym_highlighted] = STATE(181), + [sym_insert] = STATE(181), + [sym_delete] = STATE(181), + [sym_superscript] = STATE(181), + [sym_subscript] = STATE(181), + [sym_footnote_reference] = STATE(181), + [sym__image] = STATE(181), + [sym_full_reference_image] = STATE(181), + [sym_collapsed_reference_image] = STATE(181), + [sym_inline_image] = STATE(181), + [sym__image_description] = STATE(688), + [sym__link] = STATE(181), + [sym_full_reference_link] = STATE(181), + [sym_collapsed_reference_link] = STATE(181), + [sym_inline_link] = STATE(181), + [sym_link_text] = STATE(693), + [sym__comment_with_spaces] = STATE(181), + [sym_span] = STATE(181), + [sym_raw_inline] = STATE(181), + [sym_math] = STATE(181), + [sym_verbatim] = STATE(181), + [sym__todo_highlights] = STATE(181), + [sym_todo] = STATE(181), + [sym_note] = STATE(181), + [sym__symbol_fallback] = STATE(181), [aux_sym__text] = STATE(153), - [aux_sym__inline_repeat1] = STATE(119), - [anon_sym_LBRACE_] = ACTIONS(1451), - [anon_sym__] = ACTIONS(1453), - [anon_sym_LBRACE_STAR] = ACTIONS(1455), - [anon_sym_STAR] = ACTIONS(1457), - [anon_sym_BSLASH] = ACTIONS(1459), - [sym_quotation_marks] = ACTIONS(1461), - [sym_ellipsis] = ACTIONS(1461), - [sym_em_dash] = ACTIONS(1461), - [sym_en_dash] = ACTIONS(1463), - [sym_backslash_escape] = ACTIONS(1463), - [anon_sym_LT] = ACTIONS(1465), - [anon_sym_LBRACE_EQ] = ACTIONS(1467), - [anon_sym_LBRACE_PLUS] = ACTIONS(1469), - [anon_sym_LBRACE_DASH] = ACTIONS(1471), - [sym_symbol] = ACTIONS(1461), - [anon_sym_LBRACE_CARET] = ACTIONS(1473), - [anon_sym_CARET] = ACTIONS(1473), - [anon_sym_LBRACE_TILDE] = ACTIONS(1475), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_TILDE_RBRACE] = ACTIONS(590), - [anon_sym_LBRACK_CARET] = ACTIONS(1477), - [anon_sym_BANG_LBRACK] = ACTIONS(1479), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LBRACE2] = ACTIONS(1463), - [anon_sym_DOLLAR] = ACTIONS(1483), - [anon_sym_TODO] = ACTIONS(1485), - [anon_sym_WIP] = ACTIONS(1485), - [anon_sym_NOTE] = ACTIONS(1487), - [anon_sym_INFO] = ACTIONS(1487), - [anon_sym_XXX] = ACTIONS(1487), - [sym_fixme] = ACTIONS(1461), - [anon_sym_PIPE] = ACTIONS(1461), - [sym__whitespace1] = ACTIONS(1489), - [sym__newline] = ACTIONS(1491), - [aux_sym__text_token1] = ACTIONS(1493), - [sym__verbatim_begin] = ACTIONS(1495), + [aux_sym__inline_repeat1] = STATE(81), + [anon_sym_LBRACE_] = ACTIONS(1256), + [anon_sym__] = ACTIONS(1258), + [anon_sym_LBRACE_STAR] = ACTIONS(1260), + [anon_sym_STAR] = ACTIONS(1262), + [anon_sym_BSLASH] = ACTIONS(1264), + [sym_quotation_marks] = ACTIONS(1266), + [sym_ellipsis] = ACTIONS(1266), + [sym_em_dash] = ACTIONS(1266), + [sym_en_dash] = ACTIONS(1268), + [sym_backslash_escape] = ACTIONS(1268), + [anon_sym_LT] = ACTIONS(1270), + [anon_sym_LBRACE_EQ] = ACTIONS(1272), + [anon_sym_LBRACE_PLUS] = ACTIONS(1274), + [anon_sym_LBRACE_DASH] = ACTIONS(1276), + [sym_symbol] = ACTIONS(1266), + [anon_sym_LBRACE_CARET] = ACTIONS(1278), + [anon_sym_CARET] = ACTIONS(1278), + [anon_sym_LBRACE_TILDE] = ACTIONS(1280), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_TILDE_RBRACE] = ACTIONS(987), + [anon_sym_LBRACK_CARET] = ACTIONS(1282), + [anon_sym_BANG_LBRACK] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_LBRACE2] = ACTIONS(1268), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_TODO] = ACTIONS(1290), + [anon_sym_WIP] = ACTIONS(1290), + [anon_sym_NOTE] = ACTIONS(1292), + [anon_sym_INFO] = ACTIONS(1292), + [anon_sym_XXX] = ACTIONS(1292), + [sym_fixme] = ACTIONS(1266), + [anon_sym_PIPE] = ACTIONS(1266), + [sym__whitespace1] = ACTIONS(1294), + [sym__newline] = ACTIONS(1296), + [aux_sym__text_token1] = ACTIONS(1298), + [sym__verbatim_begin] = ACTIONS(1300), + }, + [115] = { + [sym__element] = STATE(123), + [sym_emphasis] = STATE(205), + [sym_emphasis_begin] = STATE(1000), + [sym_strong] = STATE(205), + [sym_strong_begin] = STATE(129), + [sym__hard_line_break] = STATE(205), + [sym_hard_line_break] = STATE(205), + [sym__smart_punctuation] = STATE(205), + [sym_autolink] = STATE(205), + [sym_highlighted] = STATE(205), + [sym_insert] = STATE(205), + [sym_delete] = STATE(205), + [sym_superscript] = STATE(205), + [sym_subscript] = STATE(205), + [sym_footnote_reference] = STATE(205), + [sym__image] = STATE(205), + [sym_full_reference_image] = STATE(205), + [sym_collapsed_reference_image] = STATE(205), + [sym_inline_image] = STATE(205), + [sym__image_description] = STATE(705), + [sym__link] = STATE(205), + [sym_full_reference_link] = STATE(205), + [sym_collapsed_reference_link] = STATE(205), + [sym_inline_link] = STATE(205), + [sym_link_text] = STATE(703), + [sym__comment_with_spaces] = STATE(205), + [sym_span] = STATE(205), + [sym_raw_inline] = STATE(205), + [sym_math] = STATE(205), + [sym_verbatim] = STATE(205), + [sym__todo_highlights] = STATE(205), + [sym_todo] = STATE(205), + [sym_note] = STATE(205), + [sym__symbol_fallback] = STATE(205), + [aux_sym__text] = STATE(136), + [aux_sym__inline_repeat1] = STATE(123), + [anon_sym_LBRACE_] = ACTIONS(1302), + [anon_sym__] = ACTIONS(1304), + [anon_sym_LBRACE_STAR] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_BSLASH] = ACTIONS(1310), + [sym_quotation_marks] = ACTIONS(1312), + [sym_ellipsis] = ACTIONS(1312), + [sym_em_dash] = ACTIONS(1312), + [sym_en_dash] = ACTIONS(1314), + [sym_backslash_escape] = ACTIONS(1314), + [anon_sym_LT] = ACTIONS(1316), + [anon_sym_LBRACE_EQ] = ACTIONS(1318), + [anon_sym_EQ_RBRACE] = ACTIONS(987), + [anon_sym_LBRACE_PLUS] = ACTIONS(1320), + [anon_sym_LBRACE_DASH] = ACTIONS(1322), + [sym_symbol] = ACTIONS(1312), + [anon_sym_LBRACE_CARET] = ACTIONS(1324), + [anon_sym_CARET] = ACTIONS(1324), + [anon_sym_LBRACE_TILDE] = ACTIONS(1326), + [anon_sym_TILDE] = ACTIONS(1326), + [anon_sym_LBRACK_CARET] = ACTIONS(1328), + [anon_sym_BANG_LBRACK] = ACTIONS(1330), + [anon_sym_LBRACK] = ACTIONS(1332), + [anon_sym_LBRACE2] = ACTIONS(1314), + [anon_sym_DOLLAR] = ACTIONS(1334), + [anon_sym_TODO] = ACTIONS(1336), + [anon_sym_WIP] = ACTIONS(1336), + [anon_sym_NOTE] = ACTIONS(1338), + [anon_sym_INFO] = ACTIONS(1338), + [anon_sym_XXX] = ACTIONS(1338), + [sym_fixme] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1312), + [sym__whitespace1] = ACTIONS(1340), + [sym__newline] = ACTIONS(1342), + [aux_sym__text_token1] = ACTIONS(1344), + [sym__verbatim_begin] = ACTIONS(1346), + }, + [116] = { + [sym__element] = STATE(116), + [sym_emphasis] = STATE(201), + [sym_emphasis_begin] = STATE(1005), + [sym_strong] = STATE(201), + [sym_strong_begin] = STATE(105), + [sym__hard_line_break] = STATE(201), + [sym_hard_line_break] = STATE(201), + [sym__smart_punctuation] = STATE(201), + [sym_autolink] = STATE(201), + [sym_highlighted] = STATE(201), + [sym_insert] = STATE(201), + [sym_delete] = STATE(201), + [sym_superscript] = STATE(201), + [sym_subscript] = STATE(201), + [sym_footnote_reference] = STATE(201), + [sym__image] = STATE(201), + [sym_full_reference_image] = STATE(201), + [sym_collapsed_reference_image] = STATE(201), + [sym_inline_image] = STATE(201), + [sym__image_description] = STATE(712), + [sym__link] = STATE(201), + [sym_full_reference_link] = STATE(201), + [sym_collapsed_reference_link] = STATE(201), + [sym_inline_link] = STATE(201), + [sym_link_text] = STATE(717), + [sym__comment_with_spaces] = STATE(201), + [sym_span] = STATE(201), + [sym_raw_inline] = STATE(201), + [sym_math] = STATE(201), + [sym_verbatim] = STATE(201), + [sym__todo_highlights] = STATE(201), + [sym_todo] = STATE(201), + [sym_note] = STATE(201), + [sym__symbol_fallback] = STATE(201), + [aux_sym__text] = STATE(139), + [aux_sym__inline_repeat1] = STATE(116), + [anon_sym_LBRACE_] = ACTIONS(1348), + [anon_sym__] = ACTIONS(1351), + [anon_sym_LBRACE_STAR] = ACTIONS(1354), + [anon_sym_STAR] = ACTIONS(1357), + [anon_sym_BSLASH] = ACTIONS(1360), + [sym_quotation_marks] = ACTIONS(1363), + [sym_ellipsis] = ACTIONS(1363), + [sym_em_dash] = ACTIONS(1363), + [sym_en_dash] = ACTIONS(1366), + [sym_backslash_escape] = ACTIONS(1366), + [anon_sym_LT] = ACTIONS(1369), + [anon_sym_LBRACE_EQ] = ACTIONS(1372), + [anon_sym_LBRACE_PLUS] = ACTIONS(1375), + [anon_sym_LBRACE_DASH] = ACTIONS(1378), + [sym_symbol] = ACTIONS(1363), + [anon_sym_LBRACE_CARET] = ACTIONS(1381), + [anon_sym_CARET] = ACTIONS(1381), + [anon_sym_LBRACE_TILDE] = ACTIONS(1384), + [anon_sym_TILDE] = ACTIONS(1384), + [anon_sym_LBRACK_CARET] = ACTIONS(1387), + [anon_sym_RBRACK] = ACTIONS(680), + [anon_sym_BANG_LBRACK] = ACTIONS(1390), + [anon_sym_LBRACK] = ACTIONS(1393), + [anon_sym_LBRACE2] = ACTIONS(1366), + [anon_sym_DOLLAR] = ACTIONS(1396), + [anon_sym_TODO] = ACTIONS(1399), + [anon_sym_WIP] = ACTIONS(1399), + [anon_sym_NOTE] = ACTIONS(1402), + [anon_sym_INFO] = ACTIONS(1402), + [anon_sym_XXX] = ACTIONS(1402), + [sym_fixme] = ACTIONS(1363), + [anon_sym_PIPE] = ACTIONS(1363), + [sym__whitespace1] = ACTIONS(1405), + [sym__newline] = ACTIONS(1408), + [aux_sym__text_token1] = ACTIONS(1411), + [sym__verbatim_begin] = ACTIONS(1414), + }, + [117] = { + [sym__element] = STATE(117), + [sym_emphasis] = STATE(191), + [sym_emphasis_begin] = STATE(1008), + [sym_strong] = STATE(191), + [sym_strong_begin] = STATE(90), + [sym__hard_line_break] = STATE(191), + [sym_hard_line_break] = STATE(191), + [sym__smart_punctuation] = STATE(191), + [sym_autolink] = STATE(191), + [sym_highlighted] = STATE(191), + [sym_insert] = STATE(191), + [sym_delete] = STATE(191), + [sym_superscript] = STATE(191), + [sym_subscript] = STATE(191), + [sym_footnote_reference] = STATE(191), + [sym__image] = STATE(191), + [sym_full_reference_image] = STATE(191), + [sym_collapsed_reference_image] = STATE(191), + [sym_inline_image] = STATE(191), + [sym__image_description] = STATE(699), + [sym__link] = STATE(191), + [sym_full_reference_link] = STATE(191), + [sym_collapsed_reference_link] = STATE(191), + [sym_inline_link] = STATE(191), + [sym_link_text] = STATE(698), + [sym__comment_with_spaces] = STATE(191), + [sym_span] = STATE(191), + [sym_raw_inline] = STATE(191), + [sym_math] = STATE(191), + [sym_verbatim] = STATE(191), + [sym__todo_highlights] = STATE(191), + [sym_todo] = STATE(191), + [sym_note] = STATE(191), + [sym__symbol_fallback] = STATE(191), + [aux_sym__text] = STATE(137), + [aux_sym__inline_repeat1] = STATE(117), + [anon_sym_LBRACE_] = ACTIONS(1417), + [anon_sym__] = ACTIONS(1420), + [anon_sym_LBRACE_STAR] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1426), + [anon_sym_BSLASH] = ACTIONS(1429), + [sym_quotation_marks] = ACTIONS(1432), + [sym_ellipsis] = ACTIONS(1432), + [sym_em_dash] = ACTIONS(1432), + [sym_en_dash] = ACTIONS(1435), + [sym_backslash_escape] = ACTIONS(1435), + [anon_sym_LT] = ACTIONS(1438), + [anon_sym_LBRACE_EQ] = ACTIONS(1441), + [anon_sym_LBRACE_PLUS] = ACTIONS(1444), + [anon_sym_LBRACE_DASH] = ACTIONS(1447), + [sym_symbol] = ACTIONS(1432), + [anon_sym_LBRACE_CARET] = ACTIONS(1450), + [anon_sym_CARET] = ACTIONS(1450), + [anon_sym_LBRACE_TILDE] = ACTIONS(1453), + [anon_sym_TILDE] = ACTIONS(1453), + [anon_sym_LBRACK_CARET] = ACTIONS(1456), + [anon_sym_BANG_LBRACK] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(1462), + [anon_sym_RBRACK2] = ACTIONS(680), + [anon_sym_LBRACE2] = ACTIONS(1435), + [anon_sym_DOLLAR] = ACTIONS(1465), + [anon_sym_TODO] = ACTIONS(1468), + [anon_sym_WIP] = ACTIONS(1468), + [anon_sym_NOTE] = ACTIONS(1471), + [anon_sym_INFO] = ACTIONS(1471), + [anon_sym_XXX] = ACTIONS(1471), + [sym_fixme] = ACTIONS(1432), + [anon_sym_PIPE] = ACTIONS(1432), + [sym__whitespace1] = ACTIONS(1474), + [sym__newline] = ACTIONS(1477), + [aux_sym__text_token1] = ACTIONS(1480), + [sym__verbatim_begin] = ACTIONS(1483), }, [118] = { [sym__element] = STATE(116), - [sym_emphasis] = STATE(204), - [sym_emphasis_begin] = STATE(1017), - [sym_strong] = STATE(204), - [sym_strong_begin] = STATE(114), - [sym__hard_line_break] = STATE(204), - [sym_hard_line_break] = STATE(204), - [sym__smart_punctuation] = STATE(204), - [sym_autolink] = STATE(204), - [sym_highlighted] = STATE(204), - [sym_insert] = STATE(204), - [sym_delete] = STATE(204), - [sym_superscript] = STATE(204), - [sym_subscript] = STATE(204), - [sym_footnote_reference] = STATE(204), - [sym__image] = STATE(204), - [sym_full_reference_image] = STATE(204), - [sym_collapsed_reference_image] = STATE(204), - [sym_inline_image] = STATE(204), - [sym__image_description] = STATE(714), - [sym__link] = STATE(204), - [sym_full_reference_link] = STATE(204), - [sym_collapsed_reference_link] = STATE(204), - [sym_inline_link] = STATE(204), - [sym_link_text] = STATE(715), - [sym__comment_with_spaces] = STATE(204), - [sym_span] = STATE(204), - [sym_raw_inline] = STATE(204), - [sym_math] = STATE(204), - [sym_verbatim] = STATE(204), - [sym__todo_highlights] = STATE(204), - [sym_todo] = STATE(204), - [sym_note] = STATE(204), - [sym__symbol_fallback] = STATE(204), - [aux_sym__text] = STATE(149), + [sym_emphasis] = STATE(201), + [sym_emphasis_begin] = STATE(1005), + [sym_strong] = STATE(201), + [sym_strong_begin] = STATE(105), + [sym__hard_line_break] = STATE(201), + [sym_hard_line_break] = STATE(201), + [sym__smart_punctuation] = STATE(201), + [sym_autolink] = STATE(201), + [sym_highlighted] = STATE(201), + [sym_insert] = STATE(201), + [sym_delete] = STATE(201), + [sym_superscript] = STATE(201), + [sym_subscript] = STATE(201), + [sym_footnote_reference] = STATE(201), + [sym__image] = STATE(201), + [sym_full_reference_image] = STATE(201), + [sym_collapsed_reference_image] = STATE(201), + [sym_inline_image] = STATE(201), + [sym__image_description] = STATE(712), + [sym__link] = STATE(201), + [sym_full_reference_link] = STATE(201), + [sym_collapsed_reference_link] = STATE(201), + [sym_inline_link] = STATE(201), + [sym_link_text] = STATE(717), + [sym__comment_with_spaces] = STATE(201), + [sym_span] = STATE(201), + [sym_raw_inline] = STATE(201), + [sym_math] = STATE(201), + [sym_verbatim] = STATE(201), + [sym__todo_highlights] = STATE(201), + [sym_todo] = STATE(201), + [sym_note] = STATE(201), + [sym__symbol_fallback] = STATE(201), + [aux_sym__text] = STATE(139), [aux_sym__inline_repeat1] = STATE(116), - [anon_sym_LBRACE_] = ACTIONS(1497), - [anon_sym__] = ACTIONS(1499), - [anon_sym_LBRACE_STAR] = ACTIONS(1501), - [anon_sym_STAR] = ACTIONS(1503), - [anon_sym_BSLASH] = ACTIONS(1505), - [sym_quotation_marks] = ACTIONS(1507), - [sym_ellipsis] = ACTIONS(1507), - [sym_em_dash] = ACTIONS(1507), - [sym_en_dash] = ACTIONS(1509), - [sym_backslash_escape] = ACTIONS(1509), - [anon_sym_LT] = ACTIONS(1511), - [anon_sym_LBRACE_EQ] = ACTIONS(1513), - [anon_sym_LBRACE_PLUS] = ACTIONS(1515), - [anon_sym_LBRACE_DASH] = ACTIONS(1517), - [sym_symbol] = ACTIONS(1507), - [anon_sym_LBRACE_CARET] = ACTIONS(1519), - [anon_sym_CARET] = ACTIONS(1519), - [anon_sym_LBRACE_TILDE] = ACTIONS(1521), - [anon_sym_TILDE] = ACTIONS(1521), - [anon_sym_LBRACK_CARET] = ACTIONS(1523), - [anon_sym_RBRACK] = ACTIONS(590), - [anon_sym_BANG_LBRACK] = ACTIONS(1525), - [anon_sym_LBRACK] = ACTIONS(1527), - [anon_sym_LBRACE2] = ACTIONS(1509), - [anon_sym_DOLLAR] = ACTIONS(1529), - [anon_sym_TODO] = ACTIONS(1531), - [anon_sym_WIP] = ACTIONS(1531), - [anon_sym_NOTE] = ACTIONS(1533), - [anon_sym_INFO] = ACTIONS(1533), - [anon_sym_XXX] = ACTIONS(1533), - [sym_fixme] = ACTIONS(1507), - [anon_sym_PIPE] = ACTIONS(1507), - [sym__whitespace1] = ACTIONS(1535), - [sym__newline] = ACTIONS(1537), - [aux_sym__text_token1] = ACTIONS(1539), - [sym__verbatim_begin] = ACTIONS(1541), + [anon_sym_LBRACE_] = ACTIONS(1486), + [anon_sym__] = ACTIONS(1488), + [anon_sym_LBRACE_STAR] = ACTIONS(1490), + [anon_sym_STAR] = ACTIONS(1492), + [anon_sym_BSLASH] = ACTIONS(1494), + [sym_quotation_marks] = ACTIONS(1496), + [sym_ellipsis] = ACTIONS(1496), + [sym_em_dash] = ACTIONS(1496), + [sym_en_dash] = ACTIONS(1498), + [sym_backslash_escape] = ACTIONS(1498), + [anon_sym_LT] = ACTIONS(1500), + [anon_sym_LBRACE_EQ] = ACTIONS(1502), + [anon_sym_LBRACE_PLUS] = ACTIONS(1504), + [anon_sym_LBRACE_DASH] = ACTIONS(1506), + [sym_symbol] = ACTIONS(1496), + [anon_sym_LBRACE_CARET] = ACTIONS(1508), + [anon_sym_CARET] = ACTIONS(1508), + [anon_sym_LBRACE_TILDE] = ACTIONS(1510), + [anon_sym_TILDE] = ACTIONS(1510), + [anon_sym_LBRACK_CARET] = ACTIONS(1512), + [anon_sym_RBRACK] = ACTIONS(987), + [anon_sym_BANG_LBRACK] = ACTIONS(1514), + [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_LBRACE2] = ACTIONS(1498), + [anon_sym_DOLLAR] = ACTIONS(1518), + [anon_sym_TODO] = ACTIONS(1520), + [anon_sym_WIP] = ACTIONS(1520), + [anon_sym_NOTE] = ACTIONS(1522), + [anon_sym_INFO] = ACTIONS(1522), + [anon_sym_XXX] = ACTIONS(1522), + [sym_fixme] = ACTIONS(1496), + [anon_sym_PIPE] = ACTIONS(1496), + [sym__whitespace1] = ACTIONS(1524), + [sym__newline] = ACTIONS(1526), + [aux_sym__text_token1] = ACTIONS(1528), + [sym__verbatim_begin] = ACTIONS(1530), }, [119] = { - [sym__element] = STATE(119), - [sym_emphasis] = STATE(182), - [sym_emphasis_begin] = STATE(1016), - [sym_strong] = STATE(182), - [sym_strong_begin] = STATE(122), - [sym__hard_line_break] = STATE(182), - [sym_hard_line_break] = STATE(182), - [sym__smart_punctuation] = STATE(182), - [sym_autolink] = STATE(182), - [sym_highlighted] = STATE(182), - [sym_insert] = STATE(182), - [sym_delete] = STATE(182), - [sym_superscript] = STATE(182), - [sym_subscript] = STATE(182), - [sym_footnote_reference] = STATE(182), - [sym__image] = STATE(182), - [sym_full_reference_image] = STATE(182), - [sym_collapsed_reference_image] = STATE(182), - [sym_inline_image] = STATE(182), - [sym__image_description] = STATE(692), - [sym__link] = STATE(182), - [sym_full_reference_link] = STATE(182), - [sym_collapsed_reference_link] = STATE(182), - [sym_inline_link] = STATE(182), - [sym_link_text] = STATE(689), - [sym__comment_with_spaces] = STATE(182), - [sym_span] = STATE(182), - [sym_raw_inline] = STATE(182), - [sym_math] = STATE(182), - [sym_verbatim] = STATE(182), - [sym__todo_highlights] = STATE(182), - [sym_todo] = STATE(182), - [sym_note] = STATE(182), - [sym__symbol_fallback] = STATE(182), - [aux_sym__text] = STATE(153), - [aux_sym__inline_repeat1] = STATE(119), - [anon_sym_LBRACE_] = ACTIONS(1543), - [anon_sym__] = ACTIONS(1546), - [anon_sym_LBRACE_STAR] = ACTIONS(1549), - [anon_sym_STAR] = ACTIONS(1552), - [anon_sym_BSLASH] = ACTIONS(1555), - [sym_quotation_marks] = ACTIONS(1558), - [sym_ellipsis] = ACTIONS(1558), - [sym_em_dash] = ACTIONS(1558), - [sym_en_dash] = ACTIONS(1561), - [sym_backslash_escape] = ACTIONS(1561), - [anon_sym_LT] = ACTIONS(1564), - [anon_sym_LBRACE_EQ] = ACTIONS(1567), - [anon_sym_LBRACE_PLUS] = ACTIONS(1570), - [anon_sym_LBRACE_DASH] = ACTIONS(1573), - [sym_symbol] = ACTIONS(1558), - [anon_sym_LBRACE_CARET] = ACTIONS(1576), - [anon_sym_CARET] = ACTIONS(1576), - [anon_sym_LBRACE_TILDE] = ACTIONS(1579), - [anon_sym_TILDE] = ACTIONS(1582), - [anon_sym_TILDE_RBRACE] = ACTIONS(690), - [anon_sym_LBRACK_CARET] = ACTIONS(1585), - [anon_sym_BANG_LBRACK] = ACTIONS(1588), - [anon_sym_LBRACK] = ACTIONS(1591), - [anon_sym_LBRACE2] = ACTIONS(1561), - [anon_sym_DOLLAR] = ACTIONS(1594), - [anon_sym_TODO] = ACTIONS(1597), - [anon_sym_WIP] = ACTIONS(1597), - [anon_sym_NOTE] = ACTIONS(1600), - [anon_sym_INFO] = ACTIONS(1600), - [anon_sym_XXX] = ACTIONS(1600), - [sym_fixme] = ACTIONS(1558), - [anon_sym_PIPE] = ACTIONS(1558), - [sym__whitespace1] = ACTIONS(1603), - [sym__newline] = ACTIONS(1606), - [aux_sym__text_token1] = ACTIONS(1609), - [sym__verbatim_begin] = ACTIONS(1612), + [sym__inline] = STATE(797), + [sym__element] = STATE(95), + [sym_emphasis] = STATE(191), + [sym_emphasis_begin] = STATE(1008), + [sym_strong] = STATE(191), + [sym_strong_begin] = STATE(90), + [sym__hard_line_break] = STATE(191), + [sym_hard_line_break] = STATE(191), + [sym__smart_punctuation] = STATE(191), + [sym_autolink] = STATE(191), + [sym_highlighted] = STATE(191), + [sym_insert] = STATE(191), + [sym_delete] = STATE(191), + [sym_superscript] = STATE(191), + [sym_subscript] = STATE(191), + [sym_footnote_reference] = STATE(191), + [sym__image] = STATE(191), + [sym_full_reference_image] = STATE(191), + [sym_collapsed_reference_image] = STATE(191), + [sym_inline_image] = STATE(191), + [sym__image_description] = STATE(699), + [sym__link] = STATE(191), + [sym_full_reference_link] = STATE(191), + [sym_collapsed_reference_link] = STATE(191), + [sym_inline_link] = STATE(191), + [sym_link_text] = STATE(698), + [sym__comment_with_spaces] = STATE(191), + [sym_span] = STATE(191), + [sym_raw_inline] = STATE(191), + [sym_math] = STATE(191), + [sym_verbatim] = STATE(191), + [sym__todo_highlights] = STATE(191), + [sym_todo] = STATE(191), + [sym_note] = STATE(191), + [sym__symbol_fallback] = STATE(191), + [aux_sym__text] = STATE(137), + [aux_sym__inline_repeat1] = STATE(95), + [anon_sym_LBRACE_] = ACTIONS(592), + [anon_sym__] = ACTIONS(594), + [anon_sym_LBRACE_STAR] = ACTIONS(596), + [anon_sym_STAR] = ACTIONS(598), + [anon_sym_BSLASH] = ACTIONS(600), + [sym_quotation_marks] = ACTIONS(602), + [sym_ellipsis] = ACTIONS(602), + [sym_em_dash] = ACTIONS(602), + [sym_en_dash] = ACTIONS(604), + [sym_backslash_escape] = ACTIONS(604), + [anon_sym_LT] = ACTIONS(606), + [anon_sym_LBRACE_EQ] = ACTIONS(608), + [anon_sym_LBRACE_PLUS] = ACTIONS(610), + [anon_sym_LBRACE_DASH] = ACTIONS(612), + [sym_symbol] = ACTIONS(602), + [anon_sym_LBRACE_CARET] = ACTIONS(614), + [anon_sym_CARET] = ACTIONS(614), + [anon_sym_LBRACE_TILDE] = ACTIONS(616), + [anon_sym_TILDE] = ACTIONS(616), + [anon_sym_LBRACK_CARET] = ACTIONS(618), + [anon_sym_BANG_LBRACK] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(622), + [anon_sym_LBRACE2] = ACTIONS(604), + [anon_sym_DOLLAR] = ACTIONS(624), + [anon_sym_TODO] = ACTIONS(626), + [anon_sym_WIP] = ACTIONS(626), + [anon_sym_NOTE] = ACTIONS(628), + [anon_sym_INFO] = ACTIONS(628), + [anon_sym_XXX] = ACTIONS(628), + [sym_fixme] = ACTIONS(602), + [anon_sym_PIPE] = ACTIONS(602), + [sym__whitespace1] = ACTIONS(630), + [sym__newline] = ACTIONS(632), + [aux_sym__text_token1] = ACTIONS(634), + [sym__verbatim_begin] = ACTIONS(636), }, [120] = { - [sym__inline_without_trailing_space] = STATE(738), - [sym__element] = STATE(581), - [sym_emphasis] = STATE(179), - [sym_emphasis_begin] = STATE(1019), - [sym_strong] = STATE(179), - [sym_strong_begin] = STATE(110), - [sym__hard_line_break] = STATE(179), - [sym_hard_line_break] = STATE(179), - [sym__smart_punctuation] = STATE(179), - [sym_autolink] = STATE(179), - [sym_highlighted] = STATE(179), - [sym_insert] = STATE(179), - [sym_delete] = STATE(179), - [sym_superscript] = STATE(179), - [sym_subscript] = STATE(179), - [sym_footnote_reference] = STATE(179), - [sym__image] = STATE(179), - [sym_full_reference_image] = STATE(179), - [sym_collapsed_reference_image] = STATE(179), - [sym_inline_image] = STATE(179), - [sym__image_description] = STATE(720), - [sym__link] = STATE(179), - [sym_full_reference_link] = STATE(179), - [sym_collapsed_reference_link] = STATE(179), - [sym_inline_link] = STATE(179), - [sym_link_text] = STATE(697), - [sym__comment_with_spaces] = STATE(179), - [sym_span] = STATE(179), - [sym_raw_inline] = STATE(179), - [sym_math] = STATE(179), - [sym_verbatim] = STATE(179), - [sym__todo_highlights] = STATE(179), - [sym_todo] = STATE(179), - [sym_note] = STATE(179), - [sym__symbol_fallback] = STATE(179), - [aux_sym__text] = STATE(163), - [aux_sym__inline_repeat1] = STATE(130), - [anon_sym_LBRACE_] = ACTIONS(915), - [anon_sym__] = ACTIONS(917), - [anon_sym_LBRACE_STAR] = ACTIONS(919), - [anon_sym_STAR] = ACTIONS(921), - [anon_sym_BSLASH] = ACTIONS(923), - [sym_quotation_marks] = ACTIONS(925), - [sym_ellipsis] = ACTIONS(925), - [sym_em_dash] = ACTIONS(925), - [sym_en_dash] = ACTIONS(927), - [sym_backslash_escape] = ACTIONS(927), - [anon_sym_LT] = ACTIONS(929), - [anon_sym_LBRACE_EQ] = ACTIONS(931), - [anon_sym_LBRACE_PLUS] = ACTIONS(933), - [anon_sym_LBRACE_DASH] = ACTIONS(935), - [sym_symbol] = ACTIONS(925), - [anon_sym_LBRACE_CARET] = ACTIONS(937), - [anon_sym_CARET] = ACTIONS(937), - [anon_sym_LBRACE_TILDE] = ACTIONS(939), - [anon_sym_TILDE] = ACTIONS(939), - [anon_sym_LBRACK_CARET] = ACTIONS(941), - [anon_sym_BANG_LBRACK] = ACTIONS(943), - [anon_sym_LBRACK] = ACTIONS(945), - [anon_sym_LBRACE2] = ACTIONS(927), - [anon_sym_DOLLAR] = ACTIONS(947), - [anon_sym_TODO] = ACTIONS(949), - [anon_sym_WIP] = ACTIONS(949), - [anon_sym_NOTE] = ACTIONS(951), - [anon_sym_INFO] = ACTIONS(951), - [anon_sym_XXX] = ACTIONS(951), - [sym_fixme] = ACTIONS(925), - [anon_sym_PIPE] = ACTIONS(925), - [sym__whitespace1] = ACTIONS(953), - [sym__newline] = ACTIONS(955), - [aux_sym__text_token1] = ACTIONS(957), - [sym__verbatim_begin] = ACTIONS(959), + [sym__inline_without_trailing_space] = STATE(799), + [sym__element] = STATE(582), + [sym_emphasis] = STATE(176), + [sym_emphasis_begin] = STATE(1007), + [sym_strong] = STATE(176), + [sym_strong_begin] = STATE(94), + [sym__hard_line_break] = STATE(176), + [sym_hard_line_break] = STATE(176), + [sym__smart_punctuation] = STATE(176), + [sym_autolink] = STATE(176), + [sym_highlighted] = STATE(176), + [sym_insert] = STATE(176), + [sym_delete] = STATE(176), + [sym_superscript] = STATE(176), + [sym_subscript] = STATE(176), + [sym_footnote_reference] = STATE(176), + [sym__image] = STATE(176), + [sym_full_reference_image] = STATE(176), + [sym_collapsed_reference_image] = STATE(176), + [sym_inline_image] = STATE(176), + [sym__image_description] = STATE(685), + [sym__link] = STATE(176), + [sym_full_reference_link] = STATE(176), + [sym_collapsed_reference_link] = STATE(176), + [sym_inline_link] = STATE(176), + [sym_link_text] = STATE(704), + [sym__comment_with_spaces] = STATE(176), + [sym_span] = STATE(176), + [sym_raw_inline] = STATE(176), + [sym_math] = STATE(176), + [sym_verbatim] = STATE(176), + [sym__todo_highlights] = STATE(176), + [sym_todo] = STATE(176), + [sym_note] = STATE(176), + [sym__symbol_fallback] = STATE(176), + [aux_sym__text] = STATE(161), + [aux_sym__inline_repeat1] = STATE(131), + [anon_sym_LBRACE_] = ACTIONS(781), + [anon_sym__] = ACTIONS(783), + [anon_sym_LBRACE_STAR] = ACTIONS(785), + [anon_sym_STAR] = ACTIONS(787), + [anon_sym_BSLASH] = ACTIONS(789), + [sym_quotation_marks] = ACTIONS(791), + [sym_ellipsis] = ACTIONS(791), + [sym_em_dash] = ACTIONS(791), + [sym_en_dash] = ACTIONS(793), + [sym_backslash_escape] = ACTIONS(793), + [anon_sym_LT] = ACTIONS(795), + [anon_sym_LBRACE_EQ] = ACTIONS(797), + [anon_sym_LBRACE_PLUS] = ACTIONS(799), + [anon_sym_LBRACE_DASH] = ACTIONS(801), + [sym_symbol] = ACTIONS(791), + [anon_sym_LBRACE_CARET] = ACTIONS(803), + [anon_sym_CARET] = ACTIONS(803), + [anon_sym_LBRACE_TILDE] = ACTIONS(805), + [anon_sym_TILDE] = ACTIONS(805), + [anon_sym_LBRACK_CARET] = ACTIONS(807), + [anon_sym_BANG_LBRACK] = ACTIONS(809), + [anon_sym_LBRACK] = ACTIONS(811), + [anon_sym_LBRACE2] = ACTIONS(793), + [anon_sym_DOLLAR] = ACTIONS(813), + [anon_sym_TODO] = ACTIONS(815), + [anon_sym_WIP] = ACTIONS(815), + [anon_sym_NOTE] = ACTIONS(817), + [anon_sym_INFO] = ACTIONS(817), + [anon_sym_XXX] = ACTIONS(817), + [sym_fixme] = ACTIONS(791), + [anon_sym_PIPE] = ACTIONS(791), + [sym__whitespace1] = ACTIONS(819), + [sym__newline] = ACTIONS(821), + [aux_sym__text_token1] = ACTIONS(823), + [sym__verbatim_begin] = ACTIONS(825), }, [121] = { - [sym__inline] = STATE(744), - [sym__element] = STATE(126), - [sym_emphasis] = STATE(189), - [sym_emphasis_begin] = STATE(1018), - [sym_strong] = STATE(189), - [sym_strong_begin] = STATE(112), - [sym__hard_line_break] = STATE(189), - [sym_hard_line_break] = STATE(189), - [sym__smart_punctuation] = STATE(189), - [sym_autolink] = STATE(189), - [sym_highlighted] = STATE(189), - [sym_insert] = STATE(189), - [sym_delete] = STATE(189), - [sym_superscript] = STATE(189), - [sym_subscript] = STATE(189), - [sym_footnote_reference] = STATE(189), - [sym__image] = STATE(189), - [sym_full_reference_image] = STATE(189), - [sym_collapsed_reference_image] = STATE(189), - [sym_inline_image] = STATE(189), - [sym__image_description] = STATE(707), - [sym__link] = STATE(189), - [sym_full_reference_link] = STATE(189), - [sym_collapsed_reference_link] = STATE(189), - [sym_inline_link] = STATE(189), - [sym_link_text] = STATE(698), - [sym__comment_with_spaces] = STATE(189), - [sym_span] = STATE(189), - [sym_raw_inline] = STATE(189), - [sym_math] = STATE(189), - [sym_verbatim] = STATE(189), - [sym__todo_highlights] = STATE(189), - [sym_todo] = STATE(189), - [sym_note] = STATE(189), - [sym__symbol_fallback] = STATE(189), - [aux_sym__text] = STATE(161), - [aux_sym__inline_repeat1] = STATE(126), - [anon_sym_LBRACE_] = ACTIONS(1055), - [anon_sym__] = ACTIONS(1057), - [anon_sym_LBRACE_STAR] = ACTIONS(1059), - [anon_sym_STAR] = ACTIONS(1061), - [anon_sym_BSLASH] = ACTIONS(1063), - [sym_quotation_marks] = ACTIONS(1065), - [sym_ellipsis] = ACTIONS(1065), - [sym_em_dash] = ACTIONS(1065), - [sym_en_dash] = ACTIONS(1067), - [sym_backslash_escape] = ACTIONS(1067), - [anon_sym_LT] = ACTIONS(1069), - [anon_sym_LBRACE_EQ] = ACTIONS(1071), - [anon_sym_LBRACE_PLUS] = ACTIONS(1073), - [anon_sym_LBRACE_DASH] = ACTIONS(1075), - [sym_symbol] = ACTIONS(1065), - [anon_sym_LBRACE_CARET] = ACTIONS(1077), - [anon_sym_CARET] = ACTIONS(1077), - [anon_sym_LBRACE_TILDE] = ACTIONS(1079), - [anon_sym_TILDE] = ACTIONS(1079), - [anon_sym_LBRACK_CARET] = ACTIONS(1081), - [anon_sym_BANG_LBRACK] = ACTIONS(1083), - [anon_sym_LBRACK] = ACTIONS(1085), - [anon_sym_LBRACE2] = ACTIONS(1067), - [anon_sym_DOLLAR] = ACTIONS(1087), - [anon_sym_TODO] = ACTIONS(1089), - [anon_sym_WIP] = ACTIONS(1089), - [anon_sym_NOTE] = ACTIONS(1091), - [anon_sym_INFO] = ACTIONS(1091), - [anon_sym_XXX] = ACTIONS(1091), - [sym_fixme] = ACTIONS(1065), - [anon_sym_PIPE] = ACTIONS(1065), - [sym__whitespace1] = ACTIONS(1093), - [sym__newline] = ACTIONS(1095), - [aux_sym__text_token1] = ACTIONS(1097), - [sym__verbatim_begin] = ACTIONS(1099), + [sym__inline] = STATE(723), + [sym__element] = STATE(106), + [sym_emphasis] = STATE(186), + [sym_emphasis_begin] = STATE(1006), + [sym_strong] = STATE(186), + [sym_strong_begin] = STATE(79), + [sym__hard_line_break] = STATE(186), + [sym_hard_line_break] = STATE(186), + [sym__smart_punctuation] = STATE(186), + [sym_autolink] = STATE(186), + [sym_highlighted] = STATE(186), + [sym_insert] = STATE(186), + [sym_delete] = STATE(186), + [sym_superscript] = STATE(186), + [sym_subscript] = STATE(186), + [sym_footnote_reference] = STATE(186), + [sym__image] = STATE(186), + [sym_full_reference_image] = STATE(186), + [sym_collapsed_reference_image] = STATE(186), + [sym_inline_image] = STATE(186), + [sym__image_description] = STATE(714), + [sym__link] = STATE(186), + [sym_full_reference_link] = STATE(186), + [sym_collapsed_reference_link] = STATE(186), + [sym_inline_link] = STATE(186), + [sym_link_text] = STATE(713), + [sym__comment_with_spaces] = STATE(186), + [sym_span] = STATE(186), + [sym_raw_inline] = STATE(186), + [sym_math] = STATE(186), + [sym_verbatim] = STATE(186), + [sym__todo_highlights] = STATE(186), + [sym_todo] = STATE(186), + [sym_note] = STATE(186), + [sym__symbol_fallback] = STATE(186), + [aux_sym__text] = STATE(160), + [aux_sym__inline_repeat1] = STATE(106), + [anon_sym_LBRACE_] = ACTIONS(546), + [anon_sym__] = ACTIONS(548), + [anon_sym_LBRACE_STAR] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_BSLASH] = ACTIONS(554), + [sym_quotation_marks] = ACTIONS(556), + [sym_ellipsis] = ACTIONS(556), + [sym_em_dash] = ACTIONS(556), + [sym_en_dash] = ACTIONS(558), + [sym_backslash_escape] = ACTIONS(558), + [anon_sym_LT] = ACTIONS(560), + [anon_sym_LBRACE_EQ] = ACTIONS(562), + [anon_sym_LBRACE_PLUS] = ACTIONS(564), + [anon_sym_LBRACE_DASH] = ACTIONS(566), + [sym_symbol] = ACTIONS(556), + [anon_sym_LBRACE_CARET] = ACTIONS(568), + [anon_sym_CARET] = ACTIONS(568), + [anon_sym_LBRACE_TILDE] = ACTIONS(570), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_LBRACK_CARET] = ACTIONS(572), + [anon_sym_BANG_LBRACK] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LBRACE2] = ACTIONS(558), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_TODO] = ACTIONS(580), + [anon_sym_WIP] = ACTIONS(580), + [anon_sym_NOTE] = ACTIONS(582), + [anon_sym_INFO] = ACTIONS(582), + [anon_sym_XXX] = ACTIONS(582), + [sym_fixme] = ACTIONS(556), + [anon_sym_PIPE] = ACTIONS(556), + [sym__whitespace1] = ACTIONS(584), + [sym__newline] = ACTIONS(586), + [aux_sym__text_token1] = ACTIONS(588), + [sym__verbatim_begin] = ACTIONS(590), }, [122] = { - [sym__inline] = STATE(742), - [sym__element] = STATE(126), - [sym_emphasis] = STATE(189), - [sym_emphasis_begin] = STATE(1018), - [sym_strong] = STATE(189), - [sym_strong_begin] = STATE(112), - [sym__hard_line_break] = STATE(189), - [sym_hard_line_break] = STATE(189), - [sym__smart_punctuation] = STATE(189), - [sym_autolink] = STATE(189), - [sym_highlighted] = STATE(189), - [sym_insert] = STATE(189), - [sym_delete] = STATE(189), - [sym_superscript] = STATE(189), - [sym_subscript] = STATE(189), - [sym_footnote_reference] = STATE(189), - [sym__image] = STATE(189), - [sym_full_reference_image] = STATE(189), - [sym_collapsed_reference_image] = STATE(189), - [sym_inline_image] = STATE(189), - [sym__image_description] = STATE(707), - [sym__link] = STATE(189), - [sym_full_reference_link] = STATE(189), - [sym_collapsed_reference_link] = STATE(189), - [sym_inline_link] = STATE(189), + [sym__inline] = STATE(842), + [sym__element] = STATE(95), + [sym_emphasis] = STATE(191), + [sym_emphasis_begin] = STATE(1008), + [sym_strong] = STATE(191), + [sym_strong_begin] = STATE(90), + [sym__hard_line_break] = STATE(191), + [sym_hard_line_break] = STATE(191), + [sym__smart_punctuation] = STATE(191), + [sym_autolink] = STATE(191), + [sym_highlighted] = STATE(191), + [sym_insert] = STATE(191), + [sym_delete] = STATE(191), + [sym_superscript] = STATE(191), + [sym_subscript] = STATE(191), + [sym_footnote_reference] = STATE(191), + [sym__image] = STATE(191), + [sym_full_reference_image] = STATE(191), + [sym_collapsed_reference_image] = STATE(191), + [sym_inline_image] = STATE(191), + [sym__image_description] = STATE(699), + [sym__link] = STATE(191), + [sym_full_reference_link] = STATE(191), + [sym_collapsed_reference_link] = STATE(191), + [sym_inline_link] = STATE(191), [sym_link_text] = STATE(698), - [sym__comment_with_spaces] = STATE(189), - [sym_span] = STATE(189), - [sym_raw_inline] = STATE(189), - [sym_math] = STATE(189), - [sym_verbatim] = STATE(189), - [sym__todo_highlights] = STATE(189), - [sym_todo] = STATE(189), - [sym_note] = STATE(189), - [sym__symbol_fallback] = STATE(189), - [aux_sym__text] = STATE(161), - [aux_sym__inline_repeat1] = STATE(126), - [anon_sym_LBRACE_] = ACTIONS(1055), - [anon_sym__] = ACTIONS(1057), - [anon_sym_LBRACE_STAR] = ACTIONS(1059), - [anon_sym_STAR] = ACTIONS(1061), - [anon_sym_BSLASH] = ACTIONS(1063), - [sym_quotation_marks] = ACTIONS(1065), - [sym_ellipsis] = ACTIONS(1065), - [sym_em_dash] = ACTIONS(1065), - [sym_en_dash] = ACTIONS(1067), - [sym_backslash_escape] = ACTIONS(1067), - [anon_sym_LT] = ACTIONS(1069), - [anon_sym_LBRACE_EQ] = ACTIONS(1071), - [anon_sym_LBRACE_PLUS] = ACTIONS(1073), - [anon_sym_LBRACE_DASH] = ACTIONS(1075), - [sym_symbol] = ACTIONS(1065), - [anon_sym_LBRACE_CARET] = ACTIONS(1077), - [anon_sym_CARET] = ACTIONS(1077), - [anon_sym_LBRACE_TILDE] = ACTIONS(1079), - [anon_sym_TILDE] = ACTIONS(1079), - [anon_sym_LBRACK_CARET] = ACTIONS(1081), - [anon_sym_BANG_LBRACK] = ACTIONS(1083), - [anon_sym_LBRACK] = ACTIONS(1085), - [anon_sym_LBRACE2] = ACTIONS(1067), - [anon_sym_DOLLAR] = ACTIONS(1087), - [anon_sym_TODO] = ACTIONS(1089), - [anon_sym_WIP] = ACTIONS(1089), - [anon_sym_NOTE] = ACTIONS(1091), - [anon_sym_INFO] = ACTIONS(1091), - [anon_sym_XXX] = ACTIONS(1091), - [sym_fixme] = ACTIONS(1065), - [anon_sym_PIPE] = ACTIONS(1065), - [sym__whitespace1] = ACTIONS(1093), - [sym__newline] = ACTIONS(1095), - [aux_sym__text_token1] = ACTIONS(1097), - [sym__verbatim_begin] = ACTIONS(1099), + [sym__comment_with_spaces] = STATE(191), + [sym_span] = STATE(191), + [sym_raw_inline] = STATE(191), + [sym_math] = STATE(191), + [sym_verbatim] = STATE(191), + [sym__todo_highlights] = STATE(191), + [sym_todo] = STATE(191), + [sym_note] = STATE(191), + [sym__symbol_fallback] = STATE(191), + [aux_sym__text] = STATE(137), + [aux_sym__inline_repeat1] = STATE(95), + [anon_sym_LBRACE_] = ACTIONS(592), + [anon_sym__] = ACTIONS(594), + [anon_sym_LBRACE_STAR] = ACTIONS(596), + [anon_sym_STAR] = ACTIONS(598), + [anon_sym_BSLASH] = ACTIONS(600), + [sym_quotation_marks] = ACTIONS(602), + [sym_ellipsis] = ACTIONS(602), + [sym_em_dash] = ACTIONS(602), + [sym_en_dash] = ACTIONS(604), + [sym_backslash_escape] = ACTIONS(604), + [anon_sym_LT] = ACTIONS(606), + [anon_sym_LBRACE_EQ] = ACTIONS(608), + [anon_sym_LBRACE_PLUS] = ACTIONS(610), + [anon_sym_LBRACE_DASH] = ACTIONS(612), + [sym_symbol] = ACTIONS(602), + [anon_sym_LBRACE_CARET] = ACTIONS(614), + [anon_sym_CARET] = ACTIONS(614), + [anon_sym_LBRACE_TILDE] = ACTIONS(616), + [anon_sym_TILDE] = ACTIONS(616), + [anon_sym_LBRACK_CARET] = ACTIONS(618), + [anon_sym_BANG_LBRACK] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(622), + [anon_sym_LBRACE2] = ACTIONS(604), + [anon_sym_DOLLAR] = ACTIONS(624), + [anon_sym_TODO] = ACTIONS(626), + [anon_sym_WIP] = ACTIONS(626), + [anon_sym_NOTE] = ACTIONS(628), + [anon_sym_INFO] = ACTIONS(628), + [anon_sym_XXX] = ACTIONS(628), + [sym_fixme] = ACTIONS(602), + [anon_sym_PIPE] = ACTIONS(602), + [sym__whitespace1] = ACTIONS(630), + [sym__newline] = ACTIONS(632), + [aux_sym__text_token1] = ACTIONS(634), + [sym__verbatim_begin] = ACTIONS(636), }, [123] = { - [sym__inline] = STATE(1005), - [sym__element] = STATE(94), - [sym_emphasis] = STATE(188), - [sym_emphasis_begin] = STATE(1020), - [sym_strong] = STATE(188), - [sym_strong_begin] = STATE(106), - [sym__hard_line_break] = STATE(188), - [sym_hard_line_break] = STATE(188), - [sym__smart_punctuation] = STATE(188), - [sym_autolink] = STATE(188), - [sym_highlighted] = STATE(188), - [sym_insert] = STATE(188), - [sym_delete] = STATE(188), - [sym_superscript] = STATE(188), - [sym_subscript] = STATE(188), - [sym_footnote_reference] = STATE(188), - [sym__image] = STATE(188), - [sym_full_reference_image] = STATE(188), - [sym_collapsed_reference_image] = STATE(188), - [sym_inline_image] = STATE(188), - [sym__image_description] = STATE(702), - [sym__link] = STATE(188), - [sym_full_reference_link] = STATE(188), - [sym_collapsed_reference_link] = STATE(188), - [sym_inline_link] = STATE(188), - [sym_link_text] = STATE(700), - [sym__comment_with_spaces] = STATE(188), - [sym_span] = STATE(188), - [sym_raw_inline] = STATE(188), - [sym_math] = STATE(188), - [sym_verbatim] = STATE(188), - [sym__todo_highlights] = STATE(188), - [sym_todo] = STATE(188), - [sym_note] = STATE(188), - [sym__symbol_fallback] = STATE(188), - [aux_sym__text] = STATE(147), - [aux_sym__inline_repeat1] = STATE(94), - [anon_sym_LBRACE_] = ACTIONS(614), - [anon_sym__] = ACTIONS(616), - [anon_sym_LBRACE_STAR] = ACTIONS(618), - [anon_sym_STAR] = ACTIONS(620), - [anon_sym_BSLASH] = ACTIONS(622), - [sym_quotation_marks] = ACTIONS(624), - [sym_ellipsis] = ACTIONS(624), - [sym_em_dash] = ACTIONS(624), - [sym_en_dash] = ACTIONS(626), - [sym_backslash_escape] = ACTIONS(626), - [anon_sym_LT] = ACTIONS(628), - [anon_sym_LBRACE_EQ] = ACTIONS(630), - [anon_sym_LBRACE_PLUS] = ACTIONS(632), - [anon_sym_LBRACE_DASH] = ACTIONS(634), - [sym_symbol] = ACTIONS(624), - [anon_sym_LBRACE_CARET] = ACTIONS(636), - [anon_sym_CARET] = ACTIONS(636), - [anon_sym_LBRACE_TILDE] = ACTIONS(638), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_LBRACK_CARET] = ACTIONS(640), - [anon_sym_BANG_LBRACK] = ACTIONS(642), - [anon_sym_LBRACK] = ACTIONS(644), - [anon_sym_LBRACE2] = ACTIONS(626), - [anon_sym_DOLLAR] = ACTIONS(646), - [anon_sym_TODO] = ACTIONS(648), - [anon_sym_WIP] = ACTIONS(648), - [anon_sym_NOTE] = ACTIONS(650), - [anon_sym_INFO] = ACTIONS(650), - [anon_sym_XXX] = ACTIONS(650), - [sym_fixme] = ACTIONS(624), - [anon_sym_PIPE] = ACTIONS(624), - [sym__whitespace1] = ACTIONS(652), - [sym__newline] = ACTIONS(654), - [aux_sym__text_token1] = ACTIONS(656), - [sym__verbatim_begin] = ACTIONS(658), + [sym__element] = STATE(123), + [sym_emphasis] = STATE(205), + [sym_emphasis_begin] = STATE(1000), + [sym_strong] = STATE(205), + [sym_strong_begin] = STATE(129), + [sym__hard_line_break] = STATE(205), + [sym_hard_line_break] = STATE(205), + [sym__smart_punctuation] = STATE(205), + [sym_autolink] = STATE(205), + [sym_highlighted] = STATE(205), + [sym_insert] = STATE(205), + [sym_delete] = STATE(205), + [sym_superscript] = STATE(205), + [sym_subscript] = STATE(205), + [sym_footnote_reference] = STATE(205), + [sym__image] = STATE(205), + [sym_full_reference_image] = STATE(205), + [sym_collapsed_reference_image] = STATE(205), + [sym_inline_image] = STATE(205), + [sym__image_description] = STATE(705), + [sym__link] = STATE(205), + [sym_full_reference_link] = STATE(205), + [sym_collapsed_reference_link] = STATE(205), + [sym_inline_link] = STATE(205), + [sym_link_text] = STATE(703), + [sym__comment_with_spaces] = STATE(205), + [sym_span] = STATE(205), + [sym_raw_inline] = STATE(205), + [sym_math] = STATE(205), + [sym_verbatim] = STATE(205), + [sym__todo_highlights] = STATE(205), + [sym_todo] = STATE(205), + [sym_note] = STATE(205), + [sym__symbol_fallback] = STATE(205), + [aux_sym__text] = STATE(136), + [aux_sym__inline_repeat1] = STATE(123), + [anon_sym_LBRACE_] = ACTIONS(1532), + [anon_sym__] = ACTIONS(1535), + [anon_sym_LBRACE_STAR] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(1541), + [anon_sym_BSLASH] = ACTIONS(1544), + [sym_quotation_marks] = ACTIONS(1547), + [sym_ellipsis] = ACTIONS(1547), + [sym_em_dash] = ACTIONS(1547), + [sym_en_dash] = ACTIONS(1550), + [sym_backslash_escape] = ACTIONS(1550), + [anon_sym_LT] = ACTIONS(1553), + [anon_sym_LBRACE_EQ] = ACTIONS(1556), + [anon_sym_EQ_RBRACE] = ACTIONS(680), + [anon_sym_LBRACE_PLUS] = ACTIONS(1559), + [anon_sym_LBRACE_DASH] = ACTIONS(1562), + [sym_symbol] = ACTIONS(1547), + [anon_sym_LBRACE_CARET] = ACTIONS(1565), + [anon_sym_CARET] = ACTIONS(1565), + [anon_sym_LBRACE_TILDE] = ACTIONS(1568), + [anon_sym_TILDE] = ACTIONS(1568), + [anon_sym_LBRACK_CARET] = ACTIONS(1571), + [anon_sym_BANG_LBRACK] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1577), + [anon_sym_LBRACE2] = ACTIONS(1550), + [anon_sym_DOLLAR] = ACTIONS(1580), + [anon_sym_TODO] = ACTIONS(1583), + [anon_sym_WIP] = ACTIONS(1583), + [anon_sym_NOTE] = ACTIONS(1586), + [anon_sym_INFO] = ACTIONS(1586), + [anon_sym_XXX] = ACTIONS(1586), + [sym_fixme] = ACTIONS(1547), + [anon_sym_PIPE] = ACTIONS(1547), + [sym__whitespace1] = ACTIONS(1589), + [sym__newline] = ACTIONS(1592), + [aux_sym__text_token1] = ACTIONS(1595), + [sym__verbatim_begin] = ACTIONS(1598), }, [124] = { - [sym__inline] = STATE(899), - [sym__element] = STATE(94), - [sym_emphasis] = STATE(188), - [sym_emphasis_begin] = STATE(1020), - [sym_strong] = STATE(188), - [sym_strong_begin] = STATE(106), - [sym__hard_line_break] = STATE(188), - [sym_hard_line_break] = STATE(188), - [sym__smart_punctuation] = STATE(188), - [sym_autolink] = STATE(188), - [sym_highlighted] = STATE(188), - [sym_insert] = STATE(188), - [sym_delete] = STATE(188), - [sym_superscript] = STATE(188), - [sym_subscript] = STATE(188), - [sym_footnote_reference] = STATE(188), - [sym__image] = STATE(188), - [sym_full_reference_image] = STATE(188), - [sym_collapsed_reference_image] = STATE(188), - [sym_inline_image] = STATE(188), - [sym__image_description] = STATE(702), - [sym__link] = STATE(188), - [sym_full_reference_link] = STATE(188), - [sym_collapsed_reference_link] = STATE(188), - [sym_inline_link] = STATE(188), - [sym_link_text] = STATE(700), - [sym__comment_with_spaces] = STATE(188), - [sym_span] = STATE(188), - [sym_raw_inline] = STATE(188), - [sym_math] = STATE(188), - [sym_verbatim] = STATE(188), - [sym__todo_highlights] = STATE(188), - [sym_todo] = STATE(188), - [sym_note] = STATE(188), - [sym__symbol_fallback] = STATE(188), - [aux_sym__text] = STATE(147), - [aux_sym__inline_repeat1] = STATE(94), - [anon_sym_LBRACE_] = ACTIONS(614), - [anon_sym__] = ACTIONS(616), - [anon_sym_LBRACE_STAR] = ACTIONS(618), - [anon_sym_STAR] = ACTIONS(620), - [anon_sym_BSLASH] = ACTIONS(622), - [sym_quotation_marks] = ACTIONS(624), - [sym_ellipsis] = ACTIONS(624), - [sym_em_dash] = ACTIONS(624), - [sym_en_dash] = ACTIONS(626), - [sym_backslash_escape] = ACTIONS(626), - [anon_sym_LT] = ACTIONS(628), - [anon_sym_LBRACE_EQ] = ACTIONS(630), - [anon_sym_LBRACE_PLUS] = ACTIONS(632), - [anon_sym_LBRACE_DASH] = ACTIONS(634), - [sym_symbol] = ACTIONS(624), - [anon_sym_LBRACE_CARET] = ACTIONS(636), - [anon_sym_CARET] = ACTIONS(636), - [anon_sym_LBRACE_TILDE] = ACTIONS(638), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_LBRACK_CARET] = ACTIONS(640), - [anon_sym_BANG_LBRACK] = ACTIONS(642), - [anon_sym_LBRACK] = ACTIONS(644), - [anon_sym_LBRACE2] = ACTIONS(626), - [anon_sym_DOLLAR] = ACTIONS(646), - [anon_sym_TODO] = ACTIONS(648), - [anon_sym_WIP] = ACTIONS(648), - [anon_sym_NOTE] = ACTIONS(650), - [anon_sym_INFO] = ACTIONS(650), - [anon_sym_XXX] = ACTIONS(650), - [sym_fixme] = ACTIONS(624), - [anon_sym_PIPE] = ACTIONS(624), - [sym__whitespace1] = ACTIONS(652), - [sym__newline] = ACTIONS(654), - [aux_sym__text_token1] = ACTIONS(656), - [sym__verbatim_begin] = ACTIONS(658), + [sym__inline_without_trailing_space] = STATE(850), + [sym__element] = STATE(582), + [sym_emphasis] = STATE(176), + [sym_emphasis_begin] = STATE(1007), + [sym_strong] = STATE(176), + [sym_strong_begin] = STATE(94), + [sym__hard_line_break] = STATE(176), + [sym_hard_line_break] = STATE(176), + [sym__smart_punctuation] = STATE(176), + [sym_autolink] = STATE(176), + [sym_highlighted] = STATE(176), + [sym_insert] = STATE(176), + [sym_delete] = STATE(176), + [sym_superscript] = STATE(176), + [sym_subscript] = STATE(176), + [sym_footnote_reference] = STATE(176), + [sym__image] = STATE(176), + [sym_full_reference_image] = STATE(176), + [sym_collapsed_reference_image] = STATE(176), + [sym_inline_image] = STATE(176), + [sym__image_description] = STATE(685), + [sym__link] = STATE(176), + [sym_full_reference_link] = STATE(176), + [sym_collapsed_reference_link] = STATE(176), + [sym_inline_link] = STATE(176), + [sym_link_text] = STATE(704), + [sym__comment_with_spaces] = STATE(176), + [sym_span] = STATE(176), + [sym_raw_inline] = STATE(176), + [sym_math] = STATE(176), + [sym_verbatim] = STATE(176), + [sym__todo_highlights] = STATE(176), + [sym_todo] = STATE(176), + [sym_note] = STATE(176), + [sym__symbol_fallback] = STATE(176), + [aux_sym__text] = STATE(161), + [aux_sym__inline_repeat1] = STATE(131), + [anon_sym_LBRACE_] = ACTIONS(781), + [anon_sym__] = ACTIONS(783), + [anon_sym_LBRACE_STAR] = ACTIONS(785), + [anon_sym_STAR] = ACTIONS(787), + [anon_sym_BSLASH] = ACTIONS(789), + [sym_quotation_marks] = ACTIONS(791), + [sym_ellipsis] = ACTIONS(791), + [sym_em_dash] = ACTIONS(791), + [sym_en_dash] = ACTIONS(793), + [sym_backslash_escape] = ACTIONS(793), + [anon_sym_LT] = ACTIONS(795), + [anon_sym_LBRACE_EQ] = ACTIONS(797), + [anon_sym_LBRACE_PLUS] = ACTIONS(799), + [anon_sym_LBRACE_DASH] = ACTIONS(801), + [sym_symbol] = ACTIONS(791), + [anon_sym_LBRACE_CARET] = ACTIONS(803), + [anon_sym_CARET] = ACTIONS(803), + [anon_sym_LBRACE_TILDE] = ACTIONS(805), + [anon_sym_TILDE] = ACTIONS(805), + [anon_sym_LBRACK_CARET] = ACTIONS(807), + [anon_sym_BANG_LBRACK] = ACTIONS(809), + [anon_sym_LBRACK] = ACTIONS(811), + [anon_sym_LBRACE2] = ACTIONS(793), + [anon_sym_DOLLAR] = ACTIONS(813), + [anon_sym_TODO] = ACTIONS(815), + [anon_sym_WIP] = ACTIONS(815), + [anon_sym_NOTE] = ACTIONS(817), + [anon_sym_INFO] = ACTIONS(817), + [anon_sym_XXX] = ACTIONS(817), + [sym_fixme] = ACTIONS(791), + [anon_sym_PIPE] = ACTIONS(791), + [sym__whitespace1] = ACTIONS(819), + [sym__newline] = ACTIONS(821), + [aux_sym__text_token1] = ACTIONS(823), + [sym__verbatim_begin] = ACTIONS(825), }, [125] = { - [sym__inline] = STATE(722), - [sym__element] = STATE(126), - [sym_emphasis] = STATE(189), - [sym_emphasis_begin] = STATE(1018), - [sym_strong] = STATE(189), - [sym_strong_begin] = STATE(112), - [sym__hard_line_break] = STATE(189), - [sym_hard_line_break] = STATE(189), - [sym__smart_punctuation] = STATE(189), - [sym_autolink] = STATE(189), - [sym_highlighted] = STATE(189), - [sym_insert] = STATE(189), - [sym_delete] = STATE(189), - [sym_superscript] = STATE(189), - [sym_subscript] = STATE(189), - [sym_footnote_reference] = STATE(189), - [sym__image] = STATE(189), - [sym_full_reference_image] = STATE(189), - [sym_collapsed_reference_image] = STATE(189), - [sym_inline_image] = STATE(189), - [sym__image_description] = STATE(707), - [sym__link] = STATE(189), - [sym_full_reference_link] = STATE(189), - [sym_collapsed_reference_link] = STATE(189), - [sym_inline_link] = STATE(189), - [sym_link_text] = STATE(698), - [sym__comment_with_spaces] = STATE(189), - [sym_span] = STATE(189), - [sym_raw_inline] = STATE(189), - [sym_math] = STATE(189), - [sym_verbatim] = STATE(189), - [sym__todo_highlights] = STATE(189), - [sym_todo] = STATE(189), - [sym_note] = STATE(189), - [sym__symbol_fallback] = STATE(189), + [sym__inline_without_trailing_space] = STATE(987), + [sym__element] = STATE(582), + [sym_emphasis] = STATE(176), + [sym_emphasis_begin] = STATE(1007), + [sym_strong] = STATE(176), + [sym_strong_begin] = STATE(94), + [sym__hard_line_break] = STATE(176), + [sym_hard_line_break] = STATE(176), + [sym__smart_punctuation] = STATE(176), + [sym_autolink] = STATE(176), + [sym_highlighted] = STATE(176), + [sym_insert] = STATE(176), + [sym_delete] = STATE(176), + [sym_superscript] = STATE(176), + [sym_subscript] = STATE(176), + [sym_footnote_reference] = STATE(176), + [sym__image] = STATE(176), + [sym_full_reference_image] = STATE(176), + [sym_collapsed_reference_image] = STATE(176), + [sym_inline_image] = STATE(176), + [sym__image_description] = STATE(685), + [sym__link] = STATE(176), + [sym_full_reference_link] = STATE(176), + [sym_collapsed_reference_link] = STATE(176), + [sym_inline_link] = STATE(176), + [sym_link_text] = STATE(704), + [sym__comment_with_spaces] = STATE(176), + [sym_span] = STATE(176), + [sym_raw_inline] = STATE(176), + [sym_math] = STATE(176), + [sym_verbatim] = STATE(176), + [sym__todo_highlights] = STATE(176), + [sym_todo] = STATE(176), + [sym_note] = STATE(176), + [sym__symbol_fallback] = STATE(176), [aux_sym__text] = STATE(161), - [aux_sym__inline_repeat1] = STATE(126), - [anon_sym_LBRACE_] = ACTIONS(1055), - [anon_sym__] = ACTIONS(1057), - [anon_sym_LBRACE_STAR] = ACTIONS(1059), - [anon_sym_STAR] = ACTIONS(1061), - [anon_sym_BSLASH] = ACTIONS(1063), - [sym_quotation_marks] = ACTIONS(1065), - [sym_ellipsis] = ACTIONS(1065), - [sym_em_dash] = ACTIONS(1065), - [sym_en_dash] = ACTIONS(1067), - [sym_backslash_escape] = ACTIONS(1067), - [anon_sym_LT] = ACTIONS(1069), - [anon_sym_LBRACE_EQ] = ACTIONS(1071), - [anon_sym_LBRACE_PLUS] = ACTIONS(1073), - [anon_sym_LBRACE_DASH] = ACTIONS(1075), - [sym_symbol] = ACTIONS(1065), - [anon_sym_LBRACE_CARET] = ACTIONS(1077), - [anon_sym_CARET] = ACTIONS(1077), - [anon_sym_LBRACE_TILDE] = ACTIONS(1079), - [anon_sym_TILDE] = ACTIONS(1079), - [anon_sym_LBRACK_CARET] = ACTIONS(1081), - [anon_sym_BANG_LBRACK] = ACTIONS(1083), - [anon_sym_LBRACK] = ACTIONS(1085), - [anon_sym_LBRACE2] = ACTIONS(1067), - [anon_sym_DOLLAR] = ACTIONS(1087), - [anon_sym_TODO] = ACTIONS(1089), - [anon_sym_WIP] = ACTIONS(1089), - [anon_sym_NOTE] = ACTIONS(1091), - [anon_sym_INFO] = ACTIONS(1091), - [anon_sym_XXX] = ACTIONS(1091), - [sym_fixme] = ACTIONS(1065), - [anon_sym_PIPE] = ACTIONS(1065), - [sym__whitespace1] = ACTIONS(1093), - [sym__newline] = ACTIONS(1095), - [aux_sym__text_token1] = ACTIONS(1097), - [sym__verbatim_begin] = ACTIONS(1099), + [aux_sym__inline_repeat1] = STATE(131), + [anon_sym_LBRACE_] = ACTIONS(781), + [anon_sym__] = ACTIONS(783), + [anon_sym_LBRACE_STAR] = ACTIONS(785), + [anon_sym_STAR] = ACTIONS(787), + [anon_sym_BSLASH] = ACTIONS(789), + [sym_quotation_marks] = ACTIONS(791), + [sym_ellipsis] = ACTIONS(791), + [sym_em_dash] = ACTIONS(791), + [sym_en_dash] = ACTIONS(793), + [sym_backslash_escape] = ACTIONS(793), + [anon_sym_LT] = ACTIONS(795), + [anon_sym_LBRACE_EQ] = ACTIONS(797), + [anon_sym_LBRACE_PLUS] = ACTIONS(799), + [anon_sym_LBRACE_DASH] = ACTIONS(801), + [sym_symbol] = ACTIONS(791), + [anon_sym_LBRACE_CARET] = ACTIONS(803), + [anon_sym_CARET] = ACTIONS(803), + [anon_sym_LBRACE_TILDE] = ACTIONS(805), + [anon_sym_TILDE] = ACTIONS(805), + [anon_sym_LBRACK_CARET] = ACTIONS(807), + [anon_sym_BANG_LBRACK] = ACTIONS(809), + [anon_sym_LBRACK] = ACTIONS(811), + [anon_sym_LBRACE2] = ACTIONS(793), + [anon_sym_DOLLAR] = ACTIONS(813), + [anon_sym_TODO] = ACTIONS(815), + [anon_sym_WIP] = ACTIONS(815), + [anon_sym_NOTE] = ACTIONS(817), + [anon_sym_INFO] = ACTIONS(817), + [anon_sym_XXX] = ACTIONS(817), + [sym_fixme] = ACTIONS(791), + [anon_sym_PIPE] = ACTIONS(791), + [sym__whitespace1] = ACTIONS(819), + [sym__newline] = ACTIONS(821), + [aux_sym__text_token1] = ACTIONS(823), + [sym__verbatim_begin] = ACTIONS(825), }, [126] = { - [sym__element] = STATE(104), - [sym_emphasis] = STATE(189), - [sym_emphasis_begin] = STATE(1018), - [sym_strong] = STATE(189), - [sym_strong_begin] = STATE(112), - [sym__hard_line_break] = STATE(189), - [sym_hard_line_break] = STATE(189), - [sym__smart_punctuation] = STATE(189), - [sym_autolink] = STATE(189), - [sym_highlighted] = STATE(189), - [sym_insert] = STATE(189), - [sym_delete] = STATE(189), - [sym_superscript] = STATE(189), - [sym_subscript] = STATE(189), - [sym_footnote_reference] = STATE(189), - [sym__image] = STATE(189), - [sym_full_reference_image] = STATE(189), - [sym_collapsed_reference_image] = STATE(189), - [sym_inline_image] = STATE(189), - [sym__image_description] = STATE(707), - [sym__link] = STATE(189), - [sym_full_reference_link] = STATE(189), - [sym_collapsed_reference_link] = STATE(189), - [sym_inline_link] = STATE(189), - [sym_link_text] = STATE(698), - [sym__comment_with_spaces] = STATE(189), - [sym_span] = STATE(189), - [sym_raw_inline] = STATE(189), - [sym_math] = STATE(189), - [sym_verbatim] = STATE(189), - [sym__todo_highlights] = STATE(189), - [sym_todo] = STATE(189), - [sym_note] = STATE(189), - [sym__symbol_fallback] = STATE(189), - [aux_sym__text] = STATE(161), - [aux_sym__inline_repeat1] = STATE(104), - [anon_sym_LBRACE_] = ACTIONS(1055), - [anon_sym__] = ACTIONS(1057), - [anon_sym_LBRACE_STAR] = ACTIONS(1059), - [anon_sym_STAR] = ACTIONS(588), - [aux_sym_strong_end_token1] = ACTIONS(590), - [anon_sym_BSLASH] = ACTIONS(1063), - [sym_quotation_marks] = ACTIONS(1065), - [sym_ellipsis] = ACTIONS(1065), - [sym_em_dash] = ACTIONS(1065), - [sym_en_dash] = ACTIONS(1067), - [sym_backslash_escape] = ACTIONS(1067), - [anon_sym_LT] = ACTIONS(1069), - [anon_sym_LBRACE_EQ] = ACTIONS(1071), - [anon_sym_LBRACE_PLUS] = ACTIONS(1073), - [anon_sym_LBRACE_DASH] = ACTIONS(1075), - [sym_symbol] = ACTIONS(1065), - [anon_sym_LBRACE_CARET] = ACTIONS(1077), - [anon_sym_CARET] = ACTIONS(1077), - [anon_sym_LBRACE_TILDE] = ACTIONS(1079), - [anon_sym_TILDE] = ACTIONS(1079), - [anon_sym_LBRACK_CARET] = ACTIONS(1081), - [anon_sym_BANG_LBRACK] = ACTIONS(1083), - [anon_sym_LBRACK] = ACTIONS(1085), - [anon_sym_LBRACE2] = ACTIONS(1067), - [anon_sym_DOLLAR] = ACTIONS(1087), - [anon_sym_TODO] = ACTIONS(1089), - [anon_sym_WIP] = ACTIONS(1089), - [anon_sym_NOTE] = ACTIONS(1091), - [anon_sym_INFO] = ACTIONS(1091), - [anon_sym_XXX] = ACTIONS(1091), - [sym_fixme] = ACTIONS(1065), - [anon_sym_PIPE] = ACTIONS(1065), - [sym__whitespace1] = ACTIONS(1615), - [sym__newline] = ACTIONS(1617), - [aux_sym__text_token1] = ACTIONS(1097), - [sym__verbatim_begin] = ACTIONS(1099), + [sym__inline] = STATE(731), + [sym__element] = STATE(106), + [sym_emphasis] = STATE(186), + [sym_emphasis_begin] = STATE(1006), + [sym_strong] = STATE(186), + [sym_strong_begin] = STATE(79), + [sym__hard_line_break] = STATE(186), + [sym_hard_line_break] = STATE(186), + [sym__smart_punctuation] = STATE(186), + [sym_autolink] = STATE(186), + [sym_highlighted] = STATE(186), + [sym_insert] = STATE(186), + [sym_delete] = STATE(186), + [sym_superscript] = STATE(186), + [sym_subscript] = STATE(186), + [sym_footnote_reference] = STATE(186), + [sym__image] = STATE(186), + [sym_full_reference_image] = STATE(186), + [sym_collapsed_reference_image] = STATE(186), + [sym_inline_image] = STATE(186), + [sym__image_description] = STATE(714), + [sym__link] = STATE(186), + [sym_full_reference_link] = STATE(186), + [sym_collapsed_reference_link] = STATE(186), + [sym_inline_link] = STATE(186), + [sym_link_text] = STATE(713), + [sym__comment_with_spaces] = STATE(186), + [sym_span] = STATE(186), + [sym_raw_inline] = STATE(186), + [sym_math] = STATE(186), + [sym_verbatim] = STATE(186), + [sym__todo_highlights] = STATE(186), + [sym_todo] = STATE(186), + [sym_note] = STATE(186), + [sym__symbol_fallback] = STATE(186), + [aux_sym__text] = STATE(160), + [aux_sym__inline_repeat1] = STATE(106), + [anon_sym_LBRACE_] = ACTIONS(546), + [anon_sym__] = ACTIONS(548), + [anon_sym_LBRACE_STAR] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_BSLASH] = ACTIONS(554), + [sym_quotation_marks] = ACTIONS(556), + [sym_ellipsis] = ACTIONS(556), + [sym_em_dash] = ACTIONS(556), + [sym_en_dash] = ACTIONS(558), + [sym_backslash_escape] = ACTIONS(558), + [anon_sym_LT] = ACTIONS(560), + [anon_sym_LBRACE_EQ] = ACTIONS(562), + [anon_sym_LBRACE_PLUS] = ACTIONS(564), + [anon_sym_LBRACE_DASH] = ACTIONS(566), + [sym_symbol] = ACTIONS(556), + [anon_sym_LBRACE_CARET] = ACTIONS(568), + [anon_sym_CARET] = ACTIONS(568), + [anon_sym_LBRACE_TILDE] = ACTIONS(570), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_LBRACK_CARET] = ACTIONS(572), + [anon_sym_BANG_LBRACK] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LBRACE2] = ACTIONS(558), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_TODO] = ACTIONS(580), + [anon_sym_WIP] = ACTIONS(580), + [anon_sym_NOTE] = ACTIONS(582), + [anon_sym_INFO] = ACTIONS(582), + [anon_sym_XXX] = ACTIONS(582), + [sym_fixme] = ACTIONS(556), + [anon_sym_PIPE] = ACTIONS(556), + [sym__whitespace1] = ACTIONS(584), + [sym__newline] = ACTIONS(586), + [aux_sym__text_token1] = ACTIONS(588), + [sym__verbatim_begin] = ACTIONS(590), }, [127] = { - [sym__inline] = STATE(849), - [sym__element] = STATE(94), - [sym_emphasis] = STATE(188), - [sym_emphasis_begin] = STATE(1020), - [sym_strong] = STATE(188), - [sym_strong_begin] = STATE(106), - [sym__hard_line_break] = STATE(188), - [sym_hard_line_break] = STATE(188), - [sym__smart_punctuation] = STATE(188), - [sym_autolink] = STATE(188), - [sym_highlighted] = STATE(188), - [sym_insert] = STATE(188), - [sym_delete] = STATE(188), - [sym_superscript] = STATE(188), - [sym_subscript] = STATE(188), - [sym_footnote_reference] = STATE(188), - [sym__image] = STATE(188), - [sym_full_reference_image] = STATE(188), - [sym_collapsed_reference_image] = STATE(188), - [sym_inline_image] = STATE(188), - [sym__image_description] = STATE(702), - [sym__link] = STATE(188), - [sym_full_reference_link] = STATE(188), - [sym_collapsed_reference_link] = STATE(188), - [sym_inline_link] = STATE(188), - [sym_link_text] = STATE(700), - [sym__comment_with_spaces] = STATE(188), - [sym_span] = STATE(188), - [sym_raw_inline] = STATE(188), - [sym_math] = STATE(188), - [sym_verbatim] = STATE(188), - [sym__todo_highlights] = STATE(188), - [sym_todo] = STATE(188), - [sym_note] = STATE(188), - [sym__symbol_fallback] = STATE(188), - [aux_sym__text] = STATE(147), - [aux_sym__inline_repeat1] = STATE(94), - [anon_sym_LBRACE_] = ACTIONS(614), - [anon_sym__] = ACTIONS(616), - [anon_sym_LBRACE_STAR] = ACTIONS(618), - [anon_sym_STAR] = ACTIONS(620), - [anon_sym_BSLASH] = ACTIONS(622), - [sym_quotation_marks] = ACTIONS(624), - [sym_ellipsis] = ACTIONS(624), - [sym_em_dash] = ACTIONS(624), - [sym_en_dash] = ACTIONS(626), - [sym_backslash_escape] = ACTIONS(626), - [anon_sym_LT] = ACTIONS(628), - [anon_sym_LBRACE_EQ] = ACTIONS(630), - [anon_sym_LBRACE_PLUS] = ACTIONS(632), - [anon_sym_LBRACE_DASH] = ACTIONS(634), - [sym_symbol] = ACTIONS(624), - [anon_sym_LBRACE_CARET] = ACTIONS(636), - [anon_sym_CARET] = ACTIONS(636), - [anon_sym_LBRACE_TILDE] = ACTIONS(638), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_LBRACK_CARET] = ACTIONS(640), - [anon_sym_BANG_LBRACK] = ACTIONS(642), - [anon_sym_LBRACK] = ACTIONS(644), - [anon_sym_LBRACE2] = ACTIONS(626), - [anon_sym_DOLLAR] = ACTIONS(646), - [anon_sym_TODO] = ACTIONS(648), - [anon_sym_WIP] = ACTIONS(648), - [anon_sym_NOTE] = ACTIONS(650), - [anon_sym_INFO] = ACTIONS(650), - [anon_sym_XXX] = ACTIONS(650), - [sym_fixme] = ACTIONS(624), - [anon_sym_PIPE] = ACTIONS(624), - [sym__whitespace1] = ACTIONS(652), - [sym__newline] = ACTIONS(654), - [aux_sym__text_token1] = ACTIONS(656), - [sym__verbatim_begin] = ACTIONS(658), + [sym__inline] = STATE(892), + [sym__element] = STATE(95), + [sym_emphasis] = STATE(191), + [sym_emphasis_begin] = STATE(1008), + [sym_strong] = STATE(191), + [sym_strong_begin] = STATE(90), + [sym__hard_line_break] = STATE(191), + [sym_hard_line_break] = STATE(191), + [sym__smart_punctuation] = STATE(191), + [sym_autolink] = STATE(191), + [sym_highlighted] = STATE(191), + [sym_insert] = STATE(191), + [sym_delete] = STATE(191), + [sym_superscript] = STATE(191), + [sym_subscript] = STATE(191), + [sym_footnote_reference] = STATE(191), + [sym__image] = STATE(191), + [sym_full_reference_image] = STATE(191), + [sym_collapsed_reference_image] = STATE(191), + [sym_inline_image] = STATE(191), + [sym__image_description] = STATE(699), + [sym__link] = STATE(191), + [sym_full_reference_link] = STATE(191), + [sym_collapsed_reference_link] = STATE(191), + [sym_inline_link] = STATE(191), + [sym_link_text] = STATE(698), + [sym__comment_with_spaces] = STATE(191), + [sym_span] = STATE(191), + [sym_raw_inline] = STATE(191), + [sym_math] = STATE(191), + [sym_verbatim] = STATE(191), + [sym__todo_highlights] = STATE(191), + [sym_todo] = STATE(191), + [sym_note] = STATE(191), + [sym__symbol_fallback] = STATE(191), + [aux_sym__text] = STATE(137), + [aux_sym__inline_repeat1] = STATE(95), + [anon_sym_LBRACE_] = ACTIONS(592), + [anon_sym__] = ACTIONS(594), + [anon_sym_LBRACE_STAR] = ACTIONS(596), + [anon_sym_STAR] = ACTIONS(598), + [anon_sym_BSLASH] = ACTIONS(600), + [sym_quotation_marks] = ACTIONS(602), + [sym_ellipsis] = ACTIONS(602), + [sym_em_dash] = ACTIONS(602), + [sym_en_dash] = ACTIONS(604), + [sym_backslash_escape] = ACTIONS(604), + [anon_sym_LT] = ACTIONS(606), + [anon_sym_LBRACE_EQ] = ACTIONS(608), + [anon_sym_LBRACE_PLUS] = ACTIONS(610), + [anon_sym_LBRACE_DASH] = ACTIONS(612), + [sym_symbol] = ACTIONS(602), + [anon_sym_LBRACE_CARET] = ACTIONS(614), + [anon_sym_CARET] = ACTIONS(614), + [anon_sym_LBRACE_TILDE] = ACTIONS(616), + [anon_sym_TILDE] = ACTIONS(616), + [anon_sym_LBRACK_CARET] = ACTIONS(618), + [anon_sym_BANG_LBRACK] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(622), + [anon_sym_LBRACE2] = ACTIONS(604), + [anon_sym_DOLLAR] = ACTIONS(624), + [anon_sym_TODO] = ACTIONS(626), + [anon_sym_WIP] = ACTIONS(626), + [anon_sym_NOTE] = ACTIONS(628), + [anon_sym_INFO] = ACTIONS(628), + [anon_sym_XXX] = ACTIONS(628), + [sym_fixme] = ACTIONS(602), + [anon_sym_PIPE] = ACTIONS(602), + [sym__whitespace1] = ACTIONS(630), + [sym__newline] = ACTIONS(632), + [aux_sym__text_token1] = ACTIONS(634), + [sym__verbatim_begin] = ACTIONS(636), }, [128] = { - [sym__inline] = STATE(741), - [sym__element] = STATE(126), - [sym_emphasis] = STATE(189), - [sym_emphasis_begin] = STATE(1018), - [sym_strong] = STATE(189), - [sym_strong_begin] = STATE(112), - [sym__hard_line_break] = STATE(189), - [sym_hard_line_break] = STATE(189), - [sym__smart_punctuation] = STATE(189), - [sym_autolink] = STATE(189), - [sym_highlighted] = STATE(189), - [sym_insert] = STATE(189), - [sym_delete] = STATE(189), - [sym_superscript] = STATE(189), - [sym_subscript] = STATE(189), - [sym_footnote_reference] = STATE(189), - [sym__image] = STATE(189), - [sym_full_reference_image] = STATE(189), - [sym_collapsed_reference_image] = STATE(189), - [sym_inline_image] = STATE(189), - [sym__image_description] = STATE(707), - [sym__link] = STATE(189), - [sym_full_reference_link] = STATE(189), - [sym_collapsed_reference_link] = STATE(189), - [sym_inline_link] = STATE(189), - [sym_link_text] = STATE(698), - [sym__comment_with_spaces] = STATE(189), - [sym_span] = STATE(189), - [sym_raw_inline] = STATE(189), - [sym_math] = STATE(189), - [sym_verbatim] = STATE(189), - [sym__todo_highlights] = STATE(189), - [sym_todo] = STATE(189), - [sym_note] = STATE(189), - [sym__symbol_fallback] = STATE(189), + [sym__inline_without_trailing_space] = STATE(893), + [sym__element] = STATE(582), + [sym_emphasis] = STATE(176), + [sym_emphasis_begin] = STATE(1007), + [sym_strong] = STATE(176), + [sym_strong_begin] = STATE(94), + [sym__hard_line_break] = STATE(176), + [sym_hard_line_break] = STATE(176), + [sym__smart_punctuation] = STATE(176), + [sym_autolink] = STATE(176), + [sym_highlighted] = STATE(176), + [sym_insert] = STATE(176), + [sym_delete] = STATE(176), + [sym_superscript] = STATE(176), + [sym_subscript] = STATE(176), + [sym_footnote_reference] = STATE(176), + [sym__image] = STATE(176), + [sym_full_reference_image] = STATE(176), + [sym_collapsed_reference_image] = STATE(176), + [sym_inline_image] = STATE(176), + [sym__image_description] = STATE(685), + [sym__link] = STATE(176), + [sym_full_reference_link] = STATE(176), + [sym_collapsed_reference_link] = STATE(176), + [sym_inline_link] = STATE(176), + [sym_link_text] = STATE(704), + [sym__comment_with_spaces] = STATE(176), + [sym_span] = STATE(176), + [sym_raw_inline] = STATE(176), + [sym_math] = STATE(176), + [sym_verbatim] = STATE(176), + [sym__todo_highlights] = STATE(176), + [sym_todo] = STATE(176), + [sym_note] = STATE(176), + [sym__symbol_fallback] = STATE(176), [aux_sym__text] = STATE(161), - [aux_sym__inline_repeat1] = STATE(126), - [anon_sym_LBRACE_] = ACTIONS(1055), - [anon_sym__] = ACTIONS(1057), - [anon_sym_LBRACE_STAR] = ACTIONS(1059), - [anon_sym_STAR] = ACTIONS(1061), - [anon_sym_BSLASH] = ACTIONS(1063), - [sym_quotation_marks] = ACTIONS(1065), - [sym_ellipsis] = ACTIONS(1065), - [sym_em_dash] = ACTIONS(1065), - [sym_en_dash] = ACTIONS(1067), - [sym_backslash_escape] = ACTIONS(1067), - [anon_sym_LT] = ACTIONS(1069), - [anon_sym_LBRACE_EQ] = ACTIONS(1071), - [anon_sym_LBRACE_PLUS] = ACTIONS(1073), - [anon_sym_LBRACE_DASH] = ACTIONS(1075), - [sym_symbol] = ACTIONS(1065), - [anon_sym_LBRACE_CARET] = ACTIONS(1077), - [anon_sym_CARET] = ACTIONS(1077), - [anon_sym_LBRACE_TILDE] = ACTIONS(1079), - [anon_sym_TILDE] = ACTIONS(1079), - [anon_sym_LBRACK_CARET] = ACTIONS(1081), - [anon_sym_BANG_LBRACK] = ACTIONS(1083), - [anon_sym_LBRACK] = ACTIONS(1085), - [anon_sym_LBRACE2] = ACTIONS(1067), - [anon_sym_DOLLAR] = ACTIONS(1087), - [anon_sym_TODO] = ACTIONS(1089), - [anon_sym_WIP] = ACTIONS(1089), - [anon_sym_NOTE] = ACTIONS(1091), - [anon_sym_INFO] = ACTIONS(1091), - [anon_sym_XXX] = ACTIONS(1091), - [sym_fixme] = ACTIONS(1065), - [anon_sym_PIPE] = ACTIONS(1065), - [sym__whitespace1] = ACTIONS(1093), - [sym__newline] = ACTIONS(1095), - [aux_sym__text_token1] = ACTIONS(1097), - [sym__verbatim_begin] = ACTIONS(1099), + [aux_sym__inline_repeat1] = STATE(131), + [anon_sym_LBRACE_] = ACTIONS(781), + [anon_sym__] = ACTIONS(783), + [anon_sym_LBRACE_STAR] = ACTIONS(785), + [anon_sym_STAR] = ACTIONS(787), + [anon_sym_BSLASH] = ACTIONS(789), + [sym_quotation_marks] = ACTIONS(791), + [sym_ellipsis] = ACTIONS(791), + [sym_em_dash] = ACTIONS(791), + [sym_en_dash] = ACTIONS(793), + [sym_backslash_escape] = ACTIONS(793), + [anon_sym_LT] = ACTIONS(795), + [anon_sym_LBRACE_EQ] = ACTIONS(797), + [anon_sym_LBRACE_PLUS] = ACTIONS(799), + [anon_sym_LBRACE_DASH] = ACTIONS(801), + [sym_symbol] = ACTIONS(791), + [anon_sym_LBRACE_CARET] = ACTIONS(803), + [anon_sym_CARET] = ACTIONS(803), + [anon_sym_LBRACE_TILDE] = ACTIONS(805), + [anon_sym_TILDE] = ACTIONS(805), + [anon_sym_LBRACK_CARET] = ACTIONS(807), + [anon_sym_BANG_LBRACK] = ACTIONS(809), + [anon_sym_LBRACK] = ACTIONS(811), + [anon_sym_LBRACE2] = ACTIONS(793), + [anon_sym_DOLLAR] = ACTIONS(813), + [anon_sym_TODO] = ACTIONS(815), + [anon_sym_WIP] = ACTIONS(815), + [anon_sym_NOTE] = ACTIONS(817), + [anon_sym_INFO] = ACTIONS(817), + [anon_sym_XXX] = ACTIONS(817), + [sym_fixme] = ACTIONS(791), + [anon_sym_PIPE] = ACTIONS(791), + [sym__whitespace1] = ACTIONS(819), + [sym__newline] = ACTIONS(821), + [aux_sym__text_token1] = ACTIONS(823), + [sym__verbatim_begin] = ACTIONS(825), }, [129] = { - [sym__inline] = STATE(961), - [sym__element] = STATE(94), - [sym_emphasis] = STATE(188), - [sym_emphasis_begin] = STATE(1020), - [sym_strong] = STATE(188), - [sym_strong_begin] = STATE(106), - [sym__hard_line_break] = STATE(188), - [sym_hard_line_break] = STATE(188), - [sym__smart_punctuation] = STATE(188), - [sym_autolink] = STATE(188), - [sym_highlighted] = STATE(188), - [sym_insert] = STATE(188), - [sym_delete] = STATE(188), - [sym_superscript] = STATE(188), - [sym_subscript] = STATE(188), - [sym_footnote_reference] = STATE(188), - [sym__image] = STATE(188), - [sym_full_reference_image] = STATE(188), - [sym_collapsed_reference_image] = STATE(188), - [sym_inline_image] = STATE(188), - [sym__image_description] = STATE(702), - [sym__link] = STATE(188), - [sym_full_reference_link] = STATE(188), - [sym_collapsed_reference_link] = STATE(188), - [sym_inline_link] = STATE(188), - [sym_link_text] = STATE(700), - [sym__comment_with_spaces] = STATE(188), - [sym_span] = STATE(188), - [sym_raw_inline] = STATE(188), - [sym_math] = STATE(188), - [sym_verbatim] = STATE(188), - [sym__todo_highlights] = STATE(188), - [sym_todo] = STATE(188), - [sym_note] = STATE(188), - [sym__symbol_fallback] = STATE(188), - [aux_sym__text] = STATE(147), - [aux_sym__inline_repeat1] = STATE(94), - [anon_sym_LBRACE_] = ACTIONS(614), - [anon_sym__] = ACTIONS(616), - [anon_sym_LBRACE_STAR] = ACTIONS(618), - [anon_sym_STAR] = ACTIONS(620), - [anon_sym_BSLASH] = ACTIONS(622), - [sym_quotation_marks] = ACTIONS(624), - [sym_ellipsis] = ACTIONS(624), - [sym_em_dash] = ACTIONS(624), - [sym_en_dash] = ACTIONS(626), - [sym_backslash_escape] = ACTIONS(626), - [anon_sym_LT] = ACTIONS(628), - [anon_sym_LBRACE_EQ] = ACTIONS(630), - [anon_sym_LBRACE_PLUS] = ACTIONS(632), - [anon_sym_LBRACE_DASH] = ACTIONS(634), - [sym_symbol] = ACTIONS(624), - [anon_sym_LBRACE_CARET] = ACTIONS(636), - [anon_sym_CARET] = ACTIONS(636), - [anon_sym_LBRACE_TILDE] = ACTIONS(638), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_LBRACK_CARET] = ACTIONS(640), - [anon_sym_BANG_LBRACK] = ACTIONS(642), - [anon_sym_LBRACK] = ACTIONS(644), - [anon_sym_LBRACE2] = ACTIONS(626), - [anon_sym_DOLLAR] = ACTIONS(646), - [anon_sym_TODO] = ACTIONS(648), - [anon_sym_WIP] = ACTIONS(648), - [anon_sym_NOTE] = ACTIONS(650), - [anon_sym_INFO] = ACTIONS(650), - [anon_sym_XXX] = ACTIONS(650), - [sym_fixme] = ACTIONS(624), - [anon_sym_PIPE] = ACTIONS(624), - [sym__whitespace1] = ACTIONS(652), - [sym__newline] = ACTIONS(654), - [aux_sym__text_token1] = ACTIONS(656), - [sym__verbatim_begin] = ACTIONS(658), + [sym__inline] = STATE(727), + [sym__element] = STATE(106), + [sym_emphasis] = STATE(186), + [sym_emphasis_begin] = STATE(1006), + [sym_strong] = STATE(186), + [sym_strong_begin] = STATE(79), + [sym__hard_line_break] = STATE(186), + [sym_hard_line_break] = STATE(186), + [sym__smart_punctuation] = STATE(186), + [sym_autolink] = STATE(186), + [sym_highlighted] = STATE(186), + [sym_insert] = STATE(186), + [sym_delete] = STATE(186), + [sym_superscript] = STATE(186), + [sym_subscript] = STATE(186), + [sym_footnote_reference] = STATE(186), + [sym__image] = STATE(186), + [sym_full_reference_image] = STATE(186), + [sym_collapsed_reference_image] = STATE(186), + [sym_inline_image] = STATE(186), + [sym__image_description] = STATE(714), + [sym__link] = STATE(186), + [sym_full_reference_link] = STATE(186), + [sym_collapsed_reference_link] = STATE(186), + [sym_inline_link] = STATE(186), + [sym_link_text] = STATE(713), + [sym__comment_with_spaces] = STATE(186), + [sym_span] = STATE(186), + [sym_raw_inline] = STATE(186), + [sym_math] = STATE(186), + [sym_verbatim] = STATE(186), + [sym__todo_highlights] = STATE(186), + [sym_todo] = STATE(186), + [sym_note] = STATE(186), + [sym__symbol_fallback] = STATE(186), + [aux_sym__text] = STATE(160), + [aux_sym__inline_repeat1] = STATE(106), + [anon_sym_LBRACE_] = ACTIONS(546), + [anon_sym__] = ACTIONS(548), + [anon_sym_LBRACE_STAR] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_BSLASH] = ACTIONS(554), + [sym_quotation_marks] = ACTIONS(556), + [sym_ellipsis] = ACTIONS(556), + [sym_em_dash] = ACTIONS(556), + [sym_en_dash] = ACTIONS(558), + [sym_backslash_escape] = ACTIONS(558), + [anon_sym_LT] = ACTIONS(560), + [anon_sym_LBRACE_EQ] = ACTIONS(562), + [anon_sym_LBRACE_PLUS] = ACTIONS(564), + [anon_sym_LBRACE_DASH] = ACTIONS(566), + [sym_symbol] = ACTIONS(556), + [anon_sym_LBRACE_CARET] = ACTIONS(568), + [anon_sym_CARET] = ACTIONS(568), + [anon_sym_LBRACE_TILDE] = ACTIONS(570), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_LBRACK_CARET] = ACTIONS(572), + [anon_sym_BANG_LBRACK] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LBRACE2] = ACTIONS(558), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_TODO] = ACTIONS(580), + [anon_sym_WIP] = ACTIONS(580), + [anon_sym_NOTE] = ACTIONS(582), + [anon_sym_INFO] = ACTIONS(582), + [anon_sym_XXX] = ACTIONS(582), + [sym_fixme] = ACTIONS(556), + [anon_sym_PIPE] = ACTIONS(556), + [sym__whitespace1] = ACTIONS(584), + [sym__newline] = ACTIONS(586), + [aux_sym__text_token1] = ACTIONS(588), + [sym__verbatim_begin] = ACTIONS(590), }, [130] = { - [sym__element] = STATE(598), - [sym_emphasis] = STATE(179), - [sym_emphasis_begin] = STATE(1019), - [sym_strong] = STATE(179), - [sym_strong_begin] = STATE(110), - [sym__hard_line_break] = STATE(179), - [sym_hard_line_break] = STATE(179), - [sym__smart_punctuation] = STATE(179), - [sym_autolink] = STATE(179), - [sym_highlighted] = STATE(179), - [sym_insert] = STATE(179), - [sym_delete] = STATE(179), - [sym_superscript] = STATE(179), - [sym_subscript] = STATE(179), - [sym_footnote_reference] = STATE(179), - [sym__image] = STATE(179), - [sym_full_reference_image] = STATE(179), - [sym_collapsed_reference_image] = STATE(179), - [sym_inline_image] = STATE(179), - [sym__image_description] = STATE(720), - [sym__link] = STATE(179), - [sym_full_reference_link] = STATE(179), - [sym_collapsed_reference_link] = STATE(179), - [sym_inline_link] = STATE(179), - [sym_link_text] = STATE(697), - [sym__comment_with_spaces] = STATE(179), - [sym_span] = STATE(179), - [sym_raw_inline] = STATE(179), - [sym_math] = STATE(179), - [sym_verbatim] = STATE(179), - [sym__todo_highlights] = STATE(179), - [sym_todo] = STATE(179), - [sym_note] = STATE(179), - [sym__symbol_fallback] = STATE(179), - [aux_sym__text] = STATE(163), - [aux_sym__inline_repeat1] = STATE(131), - [anon_sym_LBRACE_] = ACTIONS(915), - [anon_sym__] = ACTIONS(917), - [anon_sym_LBRACE_STAR] = ACTIONS(919), - [anon_sym_STAR] = ACTIONS(921), - [anon_sym_BSLASH] = ACTIONS(923), - [sym_quotation_marks] = ACTIONS(925), - [sym_ellipsis] = ACTIONS(925), - [sym_em_dash] = ACTIONS(925), - [sym_en_dash] = ACTIONS(927), - [sym_backslash_escape] = ACTIONS(927), - [anon_sym_LT] = ACTIONS(929), - [anon_sym_LBRACE_EQ] = ACTIONS(931), - [anon_sym_LBRACE_PLUS] = ACTIONS(933), - [anon_sym_LBRACE_DASH] = ACTIONS(935), - [sym_symbol] = ACTIONS(925), - [anon_sym_LBRACE_CARET] = ACTIONS(937), - [anon_sym_CARET] = ACTIONS(937), - [anon_sym_LBRACE_TILDE] = ACTIONS(939), - [anon_sym_TILDE] = ACTIONS(939), - [anon_sym_LBRACK_CARET] = ACTIONS(941), - [anon_sym_BANG_LBRACK] = ACTIONS(943), - [anon_sym_LBRACK] = ACTIONS(945), - [anon_sym_LBRACE2] = ACTIONS(927), - [anon_sym_DOLLAR] = ACTIONS(947), - [anon_sym_TODO] = ACTIONS(949), - [anon_sym_WIP] = ACTIONS(949), - [anon_sym_NOTE] = ACTIONS(951), - [anon_sym_INFO] = ACTIONS(951), - [anon_sym_XXX] = ACTIONS(951), - [sym_fixme] = ACTIONS(925), - [anon_sym_PIPE] = ACTIONS(925), - [sym__whitespace1] = ACTIONS(953), - [sym__newline] = ACTIONS(1619), - [aux_sym__text_token1] = ACTIONS(957), - [sym__verbatim_begin] = ACTIONS(959), + [sym__element] = STATE(130), + [sym_emphasis] = STATE(483), + [sym_emphasis_begin] = STATE(1009), + [sym_strong] = STATE(483), + [sym_strong_begin] = STATE(84), + [sym__hard_line_break] = STATE(483), + [sym_hard_line_break] = STATE(483), + [sym__smart_punctuation] = STATE(483), + [sym_autolink] = STATE(483), + [sym_highlighted] = STATE(483), + [sym_insert] = STATE(483), + [sym_delete] = STATE(483), + [sym_superscript] = STATE(483), + [sym_subscript] = STATE(483), + [sym_footnote_reference] = STATE(483), + [sym__image] = STATE(483), + [sym_full_reference_image] = STATE(483), + [sym_collapsed_reference_image] = STATE(483), + [sym_inline_image] = STATE(483), + [sym__image_description] = STATE(691), + [sym__link] = STATE(483), + [sym_full_reference_link] = STATE(483), + [sym_collapsed_reference_link] = STATE(483), + [sym_inline_link] = STATE(483), + [sym_link_text] = STATE(690), + [sym__comment_with_spaces] = STATE(483), + [sym_span] = STATE(483), + [sym_raw_inline] = STATE(483), + [sym_math] = STATE(483), + [sym_verbatim] = STATE(483), + [sym__todo_highlights] = STATE(483), + [sym_todo] = STATE(483), + [sym_note] = STATE(483), + [sym__symbol_fallback] = STATE(483), + [aux_sym__text] = STATE(215), + [aux_sym__inline_repeat1] = STATE(130), + [anon_sym_LBRACE_] = ACTIONS(1601), + [anon_sym__] = ACTIONS(1604), + [anon_sym_LBRACE_STAR] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1610), + [anon_sym_BSLASH] = ACTIONS(1613), + [sym_quotation_marks] = ACTIONS(1616), + [sym_ellipsis] = ACTIONS(1616), + [sym_em_dash] = ACTIONS(1616), + [sym_en_dash] = ACTIONS(1619), + [sym_backslash_escape] = ACTIONS(1619), + [anon_sym_LT] = ACTIONS(1622), + [anon_sym_LBRACE_EQ] = ACTIONS(1625), + [anon_sym_LBRACE_PLUS] = ACTIONS(1628), + [anon_sym_LBRACE_DASH] = ACTIONS(1631), + [sym_symbol] = ACTIONS(1616), + [anon_sym_LBRACE_CARET] = ACTIONS(1634), + [anon_sym_CARET] = ACTIONS(1634), + [anon_sym_LBRACE_TILDE] = ACTIONS(1637), + [anon_sym_TILDE] = ACTIONS(1637), + [anon_sym_LBRACK_CARET] = ACTIONS(1640), + [anon_sym_BANG_LBRACK] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_LBRACE2] = ACTIONS(1619), + [anon_sym_DOLLAR] = ACTIONS(1649), + [anon_sym_TODO] = ACTIONS(1652), + [anon_sym_WIP] = ACTIONS(1652), + [anon_sym_NOTE] = ACTIONS(1655), + [anon_sym_INFO] = ACTIONS(1655), + [anon_sym_XXX] = ACTIONS(1655), + [sym_fixme] = ACTIONS(1616), + [anon_sym_PIPE] = ACTIONS(1616), + [sym__whitespace1] = ACTIONS(1658), + [sym__newline] = ACTIONS(1661), + [aux_sym__text_token1] = ACTIONS(1664), + [sym__verbatim_begin] = ACTIONS(1667), }, [131] = { - [sym__element] = STATE(131), - [sym_emphasis] = STATE(466), - [sym_emphasis_begin] = STATE(1021), - [sym_strong] = STATE(466), - [sym_strong_begin] = STATE(99), - [sym__hard_line_break] = STATE(466), - [sym_hard_line_break] = STATE(466), - [sym__smart_punctuation] = STATE(466), - [sym_autolink] = STATE(466), - [sym_highlighted] = STATE(466), - [sym_insert] = STATE(466), - [sym_delete] = STATE(466), - [sym_superscript] = STATE(466), - [sym_subscript] = STATE(466), - [sym_footnote_reference] = STATE(466), - [sym__image] = STATE(466), - [sym_full_reference_image] = STATE(466), - [sym_collapsed_reference_image] = STATE(466), - [sym_inline_image] = STATE(466), - [sym__image_description] = STATE(704), - [sym__link] = STATE(466), - [sym_full_reference_link] = STATE(466), - [sym_collapsed_reference_link] = STATE(466), - [sym_inline_link] = STATE(466), - [sym_link_text] = STATE(688), - [sym__comment_with_spaces] = STATE(466), - [sym_span] = STATE(466), - [sym_raw_inline] = STATE(466), - [sym_math] = STATE(466), - [sym_verbatim] = STATE(466), - [sym__todo_highlights] = STATE(466), - [sym_todo] = STATE(466), - [sym_note] = STATE(466), - [sym__symbol_fallback] = STATE(466), - [aux_sym__text] = STATE(210), - [aux_sym__inline_repeat1] = STATE(131), - [anon_sym_LBRACE_] = ACTIONS(1621), - [anon_sym__] = ACTIONS(1624), - [anon_sym_LBRACE_STAR] = ACTIONS(1627), - [anon_sym_STAR] = ACTIONS(1630), - [anon_sym_BSLASH] = ACTIONS(1633), - [sym_quotation_marks] = ACTIONS(1636), - [sym_ellipsis] = ACTIONS(1636), - [sym_em_dash] = ACTIONS(1636), - [sym_en_dash] = ACTIONS(1639), - [sym_backslash_escape] = ACTIONS(1639), - [anon_sym_LT] = ACTIONS(1642), - [anon_sym_LBRACE_EQ] = ACTIONS(1645), - [anon_sym_LBRACE_PLUS] = ACTIONS(1648), - [anon_sym_LBRACE_DASH] = ACTIONS(1651), - [sym_symbol] = ACTIONS(1636), - [anon_sym_LBRACE_CARET] = ACTIONS(1654), - [anon_sym_CARET] = ACTIONS(1654), - [anon_sym_LBRACE_TILDE] = ACTIONS(1657), - [anon_sym_TILDE] = ACTIONS(1657), - [anon_sym_LBRACK_CARET] = ACTIONS(1660), - [anon_sym_BANG_LBRACK] = ACTIONS(1663), - [anon_sym_LBRACK] = ACTIONS(1666), - [anon_sym_LBRACE2] = ACTIONS(1639), - [anon_sym_DOLLAR] = ACTIONS(1669), - [anon_sym_TODO] = ACTIONS(1672), - [anon_sym_WIP] = ACTIONS(1672), - [anon_sym_NOTE] = ACTIONS(1675), - [anon_sym_INFO] = ACTIONS(1675), - [anon_sym_XXX] = ACTIONS(1675), - [sym_fixme] = ACTIONS(1636), - [anon_sym_PIPE] = ACTIONS(1636), - [sym__whitespace1] = ACTIONS(1678), - [sym__newline] = ACTIONS(1681), - [aux_sym__text_token1] = ACTIONS(1684), - [sym__verbatim_begin] = ACTIONS(1687), - }, -}; - -static const uint16_t ts_small_parse_table[] = { - [0] = 4, - ACTIONS(1690), 1, - sym__id, - STATE(814), 1, - sym_reference_label, - ACTIONS(49), 17, - anon_sym_LBRACE, - anon_sym__, - anon_sym_STAR, - anon_sym_BSLASH, - sym_em_dash, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE2, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - sym__whitespace1, - aux_sym__text_token1, - ACTIONS(84), 20, - sym__verbatim_begin, - anon_sym_LBRACE_, - anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, - sym_quotation_marks, - sym_ellipsis, - anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_PIPE, - sym__newline, - [48] = 6, - ACTIONS(49), 1, - anon_sym_LBRACE, - ACTIONS(84), 1, - anon_sym_PLUS_RBRACE, - ACTIONS(1695), 1, - anon_sym_SPACE, - STATE(298), 1, - aux_sym_strong_begin_repeat1, - ACTIONS(1697), 7, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE2, - sym__whitespace1, - aux_sym__text_token1, - ACTIONS(1692), 28, - sym__verbatim_begin, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - anon_sym_PIPE, - sym__newline, - [100] = 6, - ACTIONS(49), 1, - anon_sym_LBRACE, - ACTIONS(84), 1, - anon_sym_EQ_RBRACE, - ACTIONS(1695), 1, - anon_sym_SPACE, - STATE(298), 1, - aux_sym_strong_begin_repeat1, - ACTIONS(1697), 7, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE2, - sym__whitespace1, - aux_sym__text_token1, - ACTIONS(1692), 28, - sym__verbatim_begin, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - anon_sym_PIPE, - sym__newline, - [152] = 4, - ACTIONS(1704), 1, + [sym__element] = STATE(596), + [sym_emphasis] = STATE(176), + [sym_emphasis_begin] = STATE(1007), + [sym_strong] = STATE(176), + [sym_strong_begin] = STATE(94), + [sym__hard_line_break] = STATE(176), + [sym_hard_line_break] = STATE(176), + [sym__smart_punctuation] = STATE(176), + [sym_autolink] = STATE(176), + [sym_highlighted] = STATE(176), + [sym_insert] = STATE(176), + [sym_delete] = STATE(176), + [sym_superscript] = STATE(176), + [sym_subscript] = STATE(176), + [sym_footnote_reference] = STATE(176), + [sym__image] = STATE(176), + [sym_full_reference_image] = STATE(176), + [sym_collapsed_reference_image] = STATE(176), + [sym_inline_image] = STATE(176), + [sym__image_description] = STATE(685), + [sym__link] = STATE(176), + [sym_full_reference_link] = STATE(176), + [sym_collapsed_reference_link] = STATE(176), + [sym_inline_link] = STATE(176), + [sym_link_text] = STATE(704), + [sym__comment_with_spaces] = STATE(176), + [sym_span] = STATE(176), + [sym_raw_inline] = STATE(176), + [sym_math] = STATE(176), + [sym_verbatim] = STATE(176), + [sym__todo_highlights] = STATE(176), + [sym_todo] = STATE(176), + [sym_note] = STATE(176), + [sym__symbol_fallback] = STATE(176), + [aux_sym__text] = STATE(161), + [aux_sym__inline_repeat1] = STATE(130), + [anon_sym_LBRACE_] = ACTIONS(781), + [anon_sym__] = ACTIONS(783), + [anon_sym_LBRACE_STAR] = ACTIONS(785), + [anon_sym_STAR] = ACTIONS(787), + [anon_sym_BSLASH] = ACTIONS(789), + [sym_quotation_marks] = ACTIONS(791), + [sym_ellipsis] = ACTIONS(791), + [sym_em_dash] = ACTIONS(791), + [sym_en_dash] = ACTIONS(793), + [sym_backslash_escape] = ACTIONS(793), + [anon_sym_LT] = ACTIONS(795), + [anon_sym_LBRACE_EQ] = ACTIONS(797), + [anon_sym_LBRACE_PLUS] = ACTIONS(799), + [anon_sym_LBRACE_DASH] = ACTIONS(801), + [sym_symbol] = ACTIONS(791), + [anon_sym_LBRACE_CARET] = ACTIONS(803), + [anon_sym_CARET] = ACTIONS(803), + [anon_sym_LBRACE_TILDE] = ACTIONS(805), + [anon_sym_TILDE] = ACTIONS(805), + [anon_sym_LBRACK_CARET] = ACTIONS(807), + [anon_sym_BANG_LBRACK] = ACTIONS(809), + [anon_sym_LBRACK] = ACTIONS(811), + [anon_sym_LBRACE2] = ACTIONS(793), + [anon_sym_DOLLAR] = ACTIONS(813), + [anon_sym_TODO] = ACTIONS(815), + [anon_sym_WIP] = ACTIONS(815), + [anon_sym_NOTE] = ACTIONS(817), + [anon_sym_INFO] = ACTIONS(817), + [anon_sym_XXX] = ACTIONS(817), + [sym_fixme] = ACTIONS(791), + [anon_sym_PIPE] = ACTIONS(791), + [sym__whitespace1] = ACTIONS(819), + [sym__newline] = ACTIONS(1670), + [aux_sym__text_token1] = ACTIONS(823), + [sym__verbatim_begin] = ACTIONS(825), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 4, + ACTIONS(1676), 1, anon_sym_LBRACE_EQ2, - STATE(497), 1, + STATE(332), 1, sym_raw_inline_attribute, - ACTIONS(1700), 8, + ACTIONS(1672), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -18387,7 +17760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1702), 29, + ACTIONS(1674), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -18397,6 +17770,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, sym_em_dash, anon_sym_LT, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -18406,7 +17780,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -18417,16 +17790,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [200] = 6, + [48] = 6, ACTIONS(49), 1, anon_sym_LBRACE, - ACTIONS(84), 1, - ts_builtin_sym_end, - ACTIONS(1695), 1, + ACTIONS(93), 1, + sym_emphasis_end, + ACTIONS(1681), 1, anon_sym_SPACE, - STATE(298), 1, + STATE(296), 1, aux_sym_strong_begin_repeat1, - ACTIONS(1697), 7, + ACTIONS(1683), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, @@ -18434,7 +17807,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1692), 28, + ACTIONS(1678), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -18463,61 +17836,60 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [252] = 5, - ACTIONS(1706), 1, + [100] = 4, + ACTIONS(1686), 1, + sym__id, + STATE(805), 1, + sym_reference_label, + ACTIONS(49), 15, anon_sym_LBRACE, - STATE(206), 1, - aux_sym__text, - STATE(567), 1, - sym_inline_attribute, - ACTIONS(1710), 6, + anon_sym__, anon_sym_BSLASH, + sym_em_dash, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, aux_sym__text_token1, - ACTIONS(1708), 30, + ACTIONS(93), 22, sym__verbatim_begin, anon_sym_LBRACE_, - anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, sym_ellipsis, - sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, anon_sym_PIPE, sym__whitespace1, sym__newline, - [302] = 6, + [148] = 6, ACTIONS(49), 1, anon_sym_LBRACE, - ACTIONS(84), 1, + ACTIONS(93), 1, anon_sym_DASH_RBRACE, - ACTIONS(1695), 1, + ACTIONS(1681), 1, anon_sym_SPACE, - STATE(298), 1, + STATE(296), 1, aux_sym_strong_begin_repeat1, - ACTIONS(1697), 7, + ACTIONS(1683), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, @@ -18525,7 +17897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1692), 28, + ACTIONS(1678), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -18554,34 +17926,29 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [354] = 4, - ACTIONS(1690), 1, - sym__id, - STATE(964), 1, - sym_reference_label, - ACTIONS(49), 15, + [200] = 5, + ACTIONS(1688), 1, anon_sym_LBRACE, - anon_sym__, + STATE(212), 1, + aux_sym__text, + STATE(581), 1, + sym_inline_attribute, + ACTIONS(1692), 6, anon_sym_BSLASH, - sym_em_dash, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, aux_sym__text_token1, - ACTIONS(84), 22, + ACTIONS(1690), 30, sym__verbatim_begin, anon_sym_LBRACE_, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, sym_ellipsis, + sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_EQ_RBRACE, @@ -18595,68 +17962,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, - anon_sym_PIPE, - sym__whitespace1, - sym__newline, - [402] = 4, - ACTIONS(1690), 1, - sym__id, - STATE(826), 1, - sym_reference_label, - ACTIONS(49), 15, - anon_sym_LBRACE, - anon_sym__, - anon_sym_BSLASH, - sym_em_dash, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE2, anon_sym_TODO, anon_sym_WIP, anon_sym_NOTE, anon_sym_INFO, anon_sym_XXX, sym_fixme, - aux_sym__text_token1, - ACTIONS(84), 22, - sym__verbatim_begin, - anon_sym_LBRACE_, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_RBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, anon_sym_PIPE, sym__whitespace1, sym__newline, - [450] = 5, - ACTIONS(1712), 1, + [250] = 5, + ACTIONS(1694), 1, anon_sym_LBRACE, - STATE(198), 1, + STATE(211), 1, aux_sym__text, - STATE(587), 1, + STATE(580), 1, sym_inline_attribute, - ACTIONS(1710), 6, + ACTIONS(1692), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1708), 30, + ACTIONS(1690), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -18667,7 +17996,6 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -18677,6 +18005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -18687,12 +18016,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [500] = 4, - ACTIONS(1714), 1, + [300] = 4, + ACTIONS(1696), 1, anon_sym_LBRACE_EQ2, - STATE(268), 1, + STATE(266), 1, sym_raw_inline_attribute, - ACTIONS(1700), 8, + ACTIONS(1672), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -18701,7 +18030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1702), 29, + ACTIONS(1674), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -18731,21 +18060,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [548] = 4, - ACTIONS(1716), 1, - anon_sym_LBRACE_EQ2, - STATE(233), 1, - sym_raw_inline_attribute, - ACTIONS(1700), 8, + [348] = 5, + ACTIONS(1698), 1, anon_sym_LBRACE, + STATE(190), 1, + aux_sym__text, + STATE(585), 1, + sym_inline_attribute, + ACTIONS(1692), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE_EQ, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1702), 29, + ACTIONS(1690), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -18755,8 +18084,8 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, sym_em_dash, anon_sym_LT, + anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -18764,6 +18093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -18775,16 +18105,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [596] = 6, + [398] = 6, ACTIONS(49), 1, anon_sym_LBRACE, - ACTIONS(84), 1, - anon_sym_RBRACK, - ACTIONS(1695), 1, + ACTIONS(93), 1, + anon_sym_EQ_RBRACE, + ACTIONS(1681), 1, anon_sym_SPACE, - STATE(298), 1, + STATE(296), 1, aux_sym_strong_begin_repeat1, - ACTIONS(1697), 7, + ACTIONS(1683), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, @@ -18792,7 +18122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1692), 28, + ACTIONS(1678), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -18821,12 +18151,12 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [648] = 4, - ACTIONS(1718), 1, + [450] = 4, + ACTIONS(1700), 1, anon_sym_LBRACE_EQ2, - STATE(491), 1, + STATE(231), 1, sym_raw_inline_attribute, - ACTIONS(1700), 8, + ACTIONS(1672), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -18835,9 +18165,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1702), 29, + ACTIONS(1674), 29, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18847,6 +18176,7 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -18865,22 +18195,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [696] = 4, - ACTIONS(1720), 1, - anon_sym_LBRACE_EQ2, - STATE(372), 1, - sym_raw_inline_attribute, - ACTIONS(1700), 9, + [498] = 4, + ACTIONS(1686), 1, + sym__id, + STATE(858), 1, + sym_reference_label, + ACTIONS(49), 15, anon_sym_LBRACE, + anon_sym__, anon_sym_BSLASH, + sym_em_dash, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + aux_sym__text_token1, + ACTIONS(93), 22, + sym__verbatim_begin, + anon_sym_LBRACE_, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, + anon_sym_DOLLAR, + anon_sym_PIPE, + sym__whitespace1, + sym__newline, + [546] = 6, + ACTIONS(49), 1, + anon_sym_LBRACE, + ACTIONS(93), 1, + anon_sym_CARET_RBRACE, + ACTIONS(1681), 1, + anon_sym_SPACE, + STATE(296), 1, + aux_sym_strong_begin_repeat1, + ACTIONS(1683), 8, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1702), 28, + ACTIONS(1678), 27, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -18890,13 +18267,13 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, sym_em_dash, anon_sym_LT, + anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -18907,23 +18284,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [744] = 5, - ACTIONS(1722), 1, + [598] = 6, + ACTIONS(49), 1, anon_sym_LBRACE, - STATE(201), 1, - aux_sym__text, - STATE(574), 1, - sym_inline_attribute, - ACTIONS(1710), 6, + ACTIONS(93), 1, + anon_sym_RBRACK, + ACTIONS(1681), 1, + anon_sym_SPACE, + STATE(296), 1, + aux_sym_strong_begin_repeat1, + ACTIONS(1683), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1708), 30, + ACTIONS(1678), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -18943,7 +18322,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -18952,12 +18330,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [794] = 4, - ACTIONS(1690), 1, + [650] = 4, + ACTIONS(1686), 1, sym__id, - STATE(857), 1, + STATE(920), 1, sym_reference_label, ACTIONS(49), 15, anon_sym_LBRACE, @@ -18975,8 +18352,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, aux_sym__text_token1, - ACTIONS(84), 22, + ACTIONS(93), 22, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym_LBRACE_STAR, anon_sym_STAR, @@ -18993,27 +18371,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_PIPE, sym__whitespace1, sym__newline, - [842] = 5, - ACTIONS(1724), 1, + [698] = 4, + ACTIONS(1702), 1, + anon_sym_LBRACE_EQ2, + STATE(512), 1, + sym_raw_inline_attribute, + ACTIONS(1672), 8, anon_sym_LBRACE, - STATE(195), 1, - aux_sym__text, - STATE(588), 1, - sym_inline_attribute, - ACTIONS(1710), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE_EQ, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1708), 30, + ACTIONS(1674), 29, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19022,7 +18400,6 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -19031,7 +18408,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -19043,39 +18419,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [892] = 4, - ACTIONS(1690), 1, - sym__id, - STATE(902), 1, - sym_reference_label, - ACTIONS(49), 15, + [746] = 6, + ACTIONS(49), 1, anon_sym_LBRACE, - anon_sym__, + ACTIONS(93), 1, + anon_sym_RBRACK2, + ACTIONS(1681), 1, + anon_sym_SPACE, + STATE(296), 1, + aux_sym_strong_begin_repeat1, + ACTIONS(1683), 7, anon_sym_BSLASH, - sym_em_dash, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(84), 22, + ACTIONS(1678), 28, sym__verbatim_begin, anon_sym_LBRACE_, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, sym_ellipsis, + sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -19084,28 +18457,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [940] = 6, - ACTIONS(49), 1, + [798] = 5, + ACTIONS(1704), 1, anon_sym_LBRACE, - ACTIONS(84), 1, - anon_sym_CARET_RBRACE, - ACTIONS(1695), 1, - anon_sym_SPACE, - STATE(298), 1, - aux_sym_strong_begin_repeat1, - ACTIONS(1697), 8, + STATE(200), 1, + aux_sym__text, + STATE(573), 1, + sym_inline_attribute, + ACTIONS(1692), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1692), 27, + ACTIONS(1690), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -19117,9 +18491,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, + anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -19132,13 +18508,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [992] = 4, - ACTIONS(1726), 1, + [848] = 4, + ACTIONS(1706), 1, anon_sym_LBRACE_EQ2, - STATE(332), 1, + STATE(422), 1, sym_raw_inline_attribute, - ACTIONS(1700), 8, + ACTIONS(1672), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -19147,7 +18524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1702), 29, + ACTIONS(1674), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -19157,7 +18534,6 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -19166,6 +18542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -19177,22 +18554,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [1040] = 5, - ACTIONS(1728), 1, + [896] = 5, + ACTIONS(1708), 1, anon_sym_LBRACE, - STATE(199), 1, + STATE(204), 1, aux_sym__text, - STATE(584), 1, + STATE(569), 1, sym_inline_attribute, - ACTIONS(1710), 7, + ACTIONS(1692), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1708), 29, + ACTIONS(1690), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -19205,11 +18581,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -19222,21 +18599,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [1090] = 4, - ACTIONS(1730), 1, + [946] = 4, + ACTIONS(1710), 1, anon_sym_LBRACE_EQ2, - STATE(424), 1, + STATE(370), 1, sym_raw_inline_attribute, - ACTIONS(1700), 8, + ACTIONS(1672), 9, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE_EQ, + anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1702), 29, + ACTIONS(1674), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -19252,9 +18630,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -19266,21 +18643,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [1138] = 5, - ACTIONS(1732), 1, + [994] = 4, + ACTIONS(1712), 1, + anon_sym_LBRACE_EQ2, + STATE(553), 1, + sym_raw_inline_attribute, + ACTIONS(1672), 8, anon_sym_LBRACE, - STATE(202), 1, - aux_sym__text, - STATE(577), 1, - sym_inline_attribute, - ACTIONS(1710), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE_EQ, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1708), 30, + ACTIONS(1674), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -19290,9 +18667,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -19301,6 +18676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -19311,35 +18687,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [1188] = 4, - ACTIONS(1690), 1, - sym__id, - STATE(856), 1, - sym_reference_label, - ACTIONS(49), 16, + [1042] = 5, + ACTIONS(1714), 1, anon_sym_LBRACE, - anon_sym__, + STATE(172), 1, + aux_sym__text, + STATE(574), 1, + sym_inline_attribute, + ACTIONS(1692), 7, anon_sym_BSLASH, - sym_em_dash, sym_en_dash, sym_backslash_escape, anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, aux_sym__text_token1, - ACTIONS(84), 21, + ACTIONS(1690), 29, sym__verbatim_begin, anon_sym_LBRACE_, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, sym_ellipsis, + sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, @@ -19352,19 +18723,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, anon_sym_PIPE, sym__whitespace1, sym__newline, - [1236] = 6, + [1092] = 6, ACTIONS(49), 1, anon_sym_LBRACE, - ACTIONS(84), 1, + ACTIONS(93), 1, aux_sym_strong_end_token1, - ACTIONS(1695), 1, + ACTIONS(1681), 1, anon_sym_SPACE, - STATE(298), 1, + STATE(296), 1, aux_sym_strong_begin_repeat1, - ACTIONS(1697), 8, + ACTIONS(1683), 8, anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, @@ -19373,7 +18750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1692), 27, + ACTIONS(1678), 27, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -19401,18 +18778,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [1288] = 4, - ACTIONS(1690), 1, + [1144] = 4, + ACTIONS(1686), 1, sym__id, - STATE(926), 1, + STATE(870), 1, sym_reference_label, - ACTIONS(49), 15, + ACTIONS(49), 16, anon_sym_LBRACE, anon_sym__, anon_sym_BSLASH, sym_em_dash, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, anon_sym_TODO, @@ -19422,9 +18800,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, aux_sym__text_token1, - ACTIONS(84), 22, + ACTIONS(93), 21, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym_LBRACE_STAR, anon_sym_STAR, @@ -19436,7 +18813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -19445,32 +18822,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [1336] = 6, - ACTIONS(49), 1, + [1192] = 4, + ACTIONS(1686), 1, + sym__id, + STATE(903), 1, + sym_reference_label, + ACTIONS(49), 16, anon_sym_LBRACE, - ACTIONS(84), 1, - anon_sym_RBRACK2, - ACTIONS(1695), 1, - anon_sym_SPACE, - STATE(298), 1, - aux_sym_strong_begin_repeat1, - ACTIONS(1697), 7, + anon_sym__, anon_sym_BSLASH, + sym_em_dash, sym_en_dash, sym_backslash_escape, + anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, aux_sym__text_token1, - ACTIONS(1692), 28, + ACTIONS(93), 21, sym__verbatim_begin, anon_sym_LBRACE_, - anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, sym_ellipsis, - sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, @@ -19479,38 +18859,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [1388] = 4, - ACTIONS(1734), 1, + [1240] = 4, + ACTIONS(1716), 1, anon_sym_LBRACE_EQ2, - STATE(521), 1, + STATE(486), 1, sym_raw_inline_attribute, - ACTIONS(1700), 10, + ACTIONS(1672), 8, anon_sym_LBRACE, - anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE_EQ, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1702), 27, + ACTIONS(1674), 29, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -19534,36 +18908,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [1436] = 5, - ACTIONS(1736), 1, + [1288] = 4, + ACTIONS(1686), 1, + sym__id, + STATE(807), 1, + sym_reference_label, + ACTIONS(49), 15, anon_sym_LBRACE, - STATE(178), 1, - aux_sym__text, - STATE(594), 1, - sym_inline_attribute, - ACTIONS(1710), 8, - anon_sym_STAR, + anon_sym__, anon_sym_BSLASH, + sym_em_dash, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, aux_sym__text_token1, - ACTIONS(1708), 28, + ACTIONS(93), 22, sym__verbatim_begin, anon_sym_LBRACE_, - anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, - sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -19572,22 +18951,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [1486] = 4, - ACTIONS(1690), 1, + [1336] = 4, + ACTIONS(1686), 1, sym__id, - STATE(925), 1, + STATE(822), 1, sym_reference_label, - ACTIONS(49), 15, + ACTIONS(49), 17, anon_sym_LBRACE, anon_sym__, + anon_sym_STAR, anon_sym_BSLASH, sym_em_dash, sym_en_dash, @@ -19600,18 +18975,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(84), 22, + ACTIONS(93), 20, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -19622,17 +18997,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [1534] = 5, - ACTIONS(1738), 1, + [1384] = 5, + ACTIONS(1718), 1, anon_sym_LBRACE, - STATE(184), 1, + STATE(183), 1, aux_sym__text, - STATE(568), 1, + STATE(594), 1, sym_inline_attribute, - ACTIONS(1710), 8, - anon_sym__, + ACTIONS(1692), 8, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, @@ -19640,12 +19014,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1708), 28, + ACTIONS(1690), 28, sym__verbatim_begin, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -19669,26 +19043,23 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [1584] = 6, - ACTIONS(49), 1, + [1434] = 5, + ACTIONS(1720), 1, anon_sym_LBRACE, - ACTIONS(84), 1, - anon_sym_TILDE_RBRACE, - ACTIONS(1695), 1, - anon_sym_SPACE, - STATE(298), 1, - aux_sym_strong_begin_repeat1, - ACTIONS(1697), 8, + STATE(184), 1, + aux_sym__text, + STATE(577), 1, + sym_inline_attribute, + ACTIONS(1692), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1692), 27, + ACTIONS(1690), 30, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19704,6 +19075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -19714,13 +19086,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [1636] = 4, - ACTIONS(1690), 1, + [1484] = 4, + ACTIONS(1686), 1, sym__id, - STATE(834), 1, + STATE(997), 1, sym_reference_label, - ACTIONS(49), 16, + ACTIONS(49), 15, anon_sym_LBRACE, anon_sym__, anon_sym_BSLASH, @@ -19735,12 +19108,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(84), 21, + ACTIONS(93), 22, sym__verbatim_begin, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -19748,6 +19119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -19758,23 +19130,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [1684] = 4, - ACTIONS(1740), 1, - anon_sym_LBRACE_EQ2, - STATE(320), 1, - sym_raw_inline_attribute, - ACTIONS(1700), 9, + [1532] = 6, + ACTIONS(49), 1, anon_sym_LBRACE, + ACTIONS(93), 1, + ts_builtin_sym_end, + ACTIONS(1681), 1, + anon_sym_SPACE, + STATE(296), 1, + aux_sym_strong_begin_repeat1, + ACTIONS(1683), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE_EQ, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1702), 28, + ACTIONS(1678), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -19784,11 +19159,12 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, sym_em_dash, anon_sym_LT, + anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -19801,29 +19177,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [1732] = 6, + [1584] = 6, ACTIONS(49), 1, anon_sym_LBRACE, - ACTIONS(84), 1, - aux_sym_emphasis_end_token1, - ACTIONS(1695), 1, + ACTIONS(93), 1, + anon_sym_TILDE_RBRACE, + ACTIONS(1681), 1, anon_sym_SPACE, - STATE(298), 1, + STATE(296), 1, aux_sym_strong_begin_repeat1, - ACTIONS(1697), 8, - anon_sym__, + ACTIONS(1683), 8, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1692), 27, + ACTIONS(1678), 27, sym__verbatim_begin, anon_sym_LBRACE_, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -19837,7 +19213,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -19849,19 +19224,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [1784] = 4, - ACTIONS(1690), 1, + [1636] = 4, + ACTIONS(1686), 1, sym__id, - STATE(883), 1, + STATE(839), 1, sym_reference_label, - ACTIONS(49), 16, + ACTIONS(49), 15, anon_sym_LBRACE, anon_sym__, anon_sym_BSLASH, sym_em_dash, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, anon_sym_TODO, @@ -19871,8 +19245,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, aux_sym__text_token1, - ACTIONS(84), 21, + ACTIONS(93), 22, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym_LBRACE_STAR, anon_sym_STAR, @@ -19884,21 +19259,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_PIPE, + sym__whitespace1, + sym__newline, + [1684] = 4, + ACTIONS(1722), 1, + anon_sym_LBRACE_EQ2, + STATE(318), 1, + sym_raw_inline_attribute, + ACTIONS(1672), 9, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACE_EQ, + anon_sym_CARET, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1674), 28, + sym__verbatim_begin, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, anon_sym_PIPE, sym__whitespace1, sym__newline, - [1832] = 4, - ACTIONS(1742), 1, + [1732] = 4, + ACTIONS(1724), 1, anon_sym_LBRACE_EQ2, - STATE(476), 1, + STATE(474), 1, sym_raw_inline_attribute, - ACTIONS(1700), 10, + ACTIONS(1672), 10, anon_sym_LBRACE, anon_sym_STAR, anon_sym_BSLASH, @@ -19909,7 +19328,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1702), 27, + ACTIONS(1674), 27, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -19937,23 +19356,23 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [1880] = 5, - ACTIONS(1744), 1, + [1780] = 5, + ACTIONS(1726), 1, anon_sym_LBRACE, - STATE(175), 1, + STATE(192), 1, aux_sym__text, - STATE(600), 1, + STATE(595), 1, sym_inline_attribute, - ACTIONS(1710), 7, + ACTIONS(1692), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1708), 29, + ACTIONS(1690), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19967,7 +19386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -19982,23 +19401,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [1930] = 5, - ACTIONS(1746), 1, + [1830] = 6, + ACTIONS(49), 1, anon_sym_LBRACE, - STATE(207), 1, - aux_sym__text, - STATE(564), 1, - sym_inline_attribute, - ACTIONS(1710), 6, + ACTIONS(93), 1, + anon_sym_PLUS_RBRACE, + ACTIONS(1681), 1, + anon_sym_SPACE, + STATE(296), 1, + aux_sym_strong_begin_repeat1, + ACTIONS(1683), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1708), 30, + ACTIONS(1678), 28, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20025,14 +19446,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [1980] = 4, - ACTIONS(1744), 1, + [1882] = 5, + ACTIONS(1728), 1, anon_sym_LBRACE, - STATE(600), 1, + STATE(179), 1, + aux_sym__text, + STATE(579), 1, sym_inline_attribute, - ACTIONS(1710), 7, + ACTIONS(1692), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, @@ -20040,7 +19462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1708), 29, + ACTIONS(1690), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -20070,30 +19492,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [2027] = 3, - ACTIONS(1748), 1, - sym__non_whitespace_check, - ACTIONS(49), 7, + [1932] = 4, + ACTIONS(1686), 1, + sym__id, + STATE(896), 1, + sym_reference_label, + ACTIONS(49), 15, anon_sym_LBRACE, + anon_sym__, anon_sym_BSLASH, + sym_em_dash, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, aux_sym__text_token1, - ACTIONS(84), 30, + ACTIONS(93), 22, sym__verbatim_begin, anon_sym_LBRACE_, - anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, sym_ellipsis, - sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -20103,27 +19533,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, anon_sym_PIPE, sym__whitespace1, sym__newline, - [2072] = 3, - ACTIONS(1750), 1, - sym__non_whitespace_check, - ACTIONS(49), 7, + [1980] = 4, + ACTIONS(1734), 1, + aux_sym__text_token1, + STATE(172), 1, + aux_sym__text, + ACTIONS(1730), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(84), 30, + ACTIONS(1732), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -20134,14 +19560,13 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -20154,39 +19579,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [2117] = 4, - ACTIONS(1756), 1, - aux_sym__text_token1, - STATE(175), 1, - aux_sym__text, - ACTIONS(1752), 7, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_CARET, - anon_sym_LBRACK, - anon_sym_LBRACE2, - ACTIONS(1754), 29, + [2027] = 3, + ACTIONS(1737), 1, + aux_sym_autolink_token1, + ACTIONS(93), 3, sym__verbatim_begin, + sym__whitespace1, + sym__newline, + ACTIONS(49), 34, + anon_sym_LBRACE, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, + sym_en_dash, + sym_backslash_escape, anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, + anon_sym_CARET, anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK, + anon_sym_LBRACE2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -20195,21 +19620,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, - sym__newline, - [2164] = 4, - ACTIONS(1732), 1, + aux_sym__text_token1, + [2072] = 4, + ACTIONS(1704), 1, anon_sym_LBRACE, - STATE(577), 1, + STATE(573), 1, sym_inline_attribute, - ACTIONS(1710), 6, + ACTIONS(1692), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1708), 30, + ACTIONS(1690), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -20240,10 +19664,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [2211] = 3, - ACTIONS(1759), 1, + [2119] = 3, + ACTIONS(1739), 1, aux_sym_autolink_token1, - ACTIONS(84), 3, + ACTIONS(93), 3, sym__verbatim_begin, sym__whitespace1, sym__newline, @@ -20282,26 +19706,25 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, aux_sym__text_token1, - [2256] = 4, - ACTIONS(1761), 1, - aux_sym__text_token1, - STATE(178), 1, - aux_sym__text, - ACTIONS(1752), 8, + [2164] = 4, + ACTIONS(1720), 1, anon_sym_LBRACE, - anon_sym_STAR, + STATE(577), 1, + sym_inline_attribute, + ACTIONS(1692), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, - ACTIONS(1754), 28, + aux_sym__text_token1, + ACTIONS(1690), 30, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -20324,25 +19747,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [2303] = 4, - ACTIONS(1738), 1, + [2211] = 3, + ACTIONS(1741), 1, + sym__non_whitespace_check, + ACTIONS(49), 7, anon_sym_LBRACE, - STATE(568), 1, - sym_inline_attribute, - ACTIONS(1710), 8, - anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1708), 28, + ACTIONS(93), 30, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -20367,18 +19789,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [2350] = 3, - ACTIONS(1764), 1, + [2256] = 3, + ACTIONS(1743), 1, aux_sym_autolink_token1, - ACTIONS(84), 2, + ACTIONS(93), 4, sym__verbatim_begin, + sym_emphasis_end, + sym__whitespace1, sym__newline, - ACTIONS(49), 35, + ACTIONS(49), 33, anon_sym_LBRACE, anon_sym_LBRACE_, anon_sym__, - aux_sym_emphasis_end_token1, anon_sym_LBRACE_STAR, anon_sym_STAR, anon_sym_BSLASH, @@ -20408,10 +19832,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, aux_sym__text_token1, - [2395] = 3, - ACTIONS(1766), 1, + [2301] = 4, + ACTIONS(1745), 1, + aux_sym__text_token1, + STATE(179), 1, + aux_sym__text, + ACTIONS(1730), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_CARET, + anon_sym_LBRACK, + anon_sym_LBRACE2, + ACTIONS(1732), 29, + sym__verbatim_begin, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET_RBRACE, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + sym__whitespace1, + sym__newline, + [2348] = 3, + ACTIONS(1748), 1, sym__non_whitespace_check, ACTIONS(49), 8, anon_sym_LBRACE, @@ -20422,7 +19888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(84), 29, + ACTIONS(93), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -20452,12 +19918,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [2440] = 4, - ACTIONS(1728), 1, + [2393] = 4, + ACTIONS(1714), 1, anon_sym_LBRACE, - STATE(584), 1, + STATE(574), 1, sym_inline_attribute, - ACTIONS(1710), 7, + ACTIONS(1692), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, @@ -20465,7 +19931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1708), 29, + ACTIONS(1690), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -20495,10 +19961,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [2487] = 3, - ACTIONS(1768), 1, + [2440] = 3, + ACTIONS(1750), 1, aux_sym_autolink_token1, - ACTIONS(84), 3, + ACTIONS(93), 3, sym__verbatim_begin, sym__whitespace1, sym__newline, @@ -20537,26 +20003,26 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, aux_sym__text_token1, - [2532] = 4, - ACTIONS(1770), 1, + [2485] = 4, + ACTIONS(1752), 1, aux_sym__text_token1, - STATE(184), 1, + STATE(183), 1, aux_sym__text, - ACTIONS(1752), 8, + ACTIONS(1730), 8, anon_sym_LBRACE, - anon_sym__, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, sym__whitespace1, - ACTIONS(1754), 28, + ACTIONS(1732), 28, sym__verbatim_begin, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -20580,62 +20046,21 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [2579] = 4, - ACTIONS(1690), 1, - sym__id, - STATE(880), 1, - sym_reference_label, - ACTIONS(49), 15, - anon_sym_LBRACE, - anon_sym__, - anon_sym_BSLASH, - sym_em_dash, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE2, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, + [2532] = 4, + ACTIONS(1755), 1, aux_sym__text_token1, - ACTIONS(84), 21, - sym__verbatim_begin, - anon_sym_LBRACE_, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_PIPE, - sym__whitespace1, - sym__newline, - [2626] = 3, - ACTIONS(1773), 1, - sym__non_whitespace_check, - ACTIONS(49), 7, + STATE(184), 1, + aux_sym__text, + ACTIONS(1730), 6, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(84), 30, + ACTIONS(1732), 30, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20654,7 +20079,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -20665,10 +20089,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [2671] = 3, - ACTIONS(1775), 1, + [2579] = 3, + ACTIONS(1758), 1, aux_sym_autolink_token1, - ACTIONS(84), 2, + ACTIONS(93), 2, sym__verbatim_begin, sym__newline, ACTIONS(49), 35, @@ -20707,24 +20131,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, aux_sym__text_token1, - [2716] = 4, - ACTIONS(1722), 1, + [2624] = 4, + ACTIONS(1718), 1, anon_sym_LBRACE, - STATE(574), 1, + STATE(594), 1, sym_inline_attribute, - ACTIONS(1710), 6, + ACTIONS(1692), 8, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1708), 30, + ACTIONS(1690), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -20739,7 +20165,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -20748,14 +20173,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [2763] = 4, - ACTIONS(1736), 1, + [2671] = 3, + ACTIONS(1760), 1, + sym__non_whitespace_check, + ACTIONS(49), 9, anon_sym_LBRACE, - STATE(594), 1, - sym_inline_attribute, - ACTIONS(1710), 8, anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, @@ -20764,7 +20187,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1708), 28, + ACTIONS(93), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -20793,31 +20216,30 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [2810] = 3, - ACTIONS(1777), 1, + [2716] = 3, + ACTIONS(1762), 1, sym__non_whitespace_check, - ACTIONS(49), 9, + ACTIONS(49), 7, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(84), 28, + ACTIONS(93), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -20834,26 +20256,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__newline, - [2855] = 3, - ACTIONS(1779), 1, - aux_sym_autolink_token1, - ACTIONS(84), 3, - sym__verbatim_begin, sym__whitespace1, sym__newline, - ACTIONS(49), 34, + [2761] = 3, + ACTIONS(1764), 1, + sym__non_whitespace_check, + ACTIONS(49), 7, anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(93), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, - anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, - sym_en_dash, - sym_backslash_escape, anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, @@ -20865,9 +20289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LBRACK, anon_sym_RBRACK2, - anon_sym_LBRACE2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -20876,24 +20298,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, + sym__newline, + [2806] = 4, + ACTIONS(1766), 1, aux_sym__text_token1, - [2900] = 3, - ACTIONS(1781), 1, - sym__non_whitespace_check, - ACTIONS(49), 9, + STATE(190), 1, + aux_sym__text, + ACTIONS(1730), 6, anon_sym_LBRACE, - anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, - aux_sym__text_token1, - ACTIONS(84), 28, + ACTIONS(1732), 30, sym__verbatim_begin, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -20909,6 +20331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -20918,68 +20341,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__newline, - [2945] = 3, - ACTIONS(1783), 1, - aux_sym_autolink_token1, - ACTIONS(84), 4, - sym__verbatim_begin, - ts_builtin_sym_end, sym__whitespace1, sym__newline, - ACTIONS(49), 33, + [2853] = 4, + ACTIONS(1694), 1, anon_sym_LBRACE, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, + STATE(580), 1, + sym_inline_attribute, + ACTIONS(1692), 6, anon_sym_BSLASH, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, sym_en_dash, sym_backslash_escape, - anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, anon_sym_LBRACK, anon_sym_LBRACE2, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - anon_sym_PIPE, aux_sym__text_token1, - [2990] = 3, - ACTIONS(1785), 1, - aux_sym_autolink_token1, - ACTIONS(84), 3, + ACTIONS(1690), 30, sym__verbatim_begin, - sym__whitespace1, - sym__newline, - ACTIONS(49), 34, - anon_sym_LBRACE, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, - anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, - sym_en_dash, - sym_backslash_escape, anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, @@ -20987,13 +20371,11 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, - anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LBRACK, - anon_sym_LBRACE2, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -21001,22 +20383,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, - aux_sym__text_token1, - [3035] = 4, - ACTIONS(1787), 1, + anon_sym_PIPE, + sym__whitespace1, + sym__newline, + [2900] = 4, + ACTIONS(1769), 1, aux_sym__text_token1, - STATE(195), 1, + STATE(192), 1, aux_sym__text, - ACTIONS(1752), 6, + ACTIONS(1730), 6, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - ACTIONS(1754), 30, + ACTIONS(1732), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21034,7 +20418,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -21046,19 +20429,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [3082] = 3, - ACTIONS(1790), 1, - sym__non_whitespace_check, - ACTIONS(49), 8, + [2947] = 4, + ACTIONS(1772), 1, + anon_sym_LBRACE_EQ2, + STATE(626), 1, + sym_raw_inline_attribute, + ACTIONS(1672), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, + anon_sym_LBRACE_EQ, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(84), 29, + ACTIONS(1674), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -21068,12 +20453,11 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -21088,21 +20472,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [3127] = 4, - ACTIONS(1746), 1, + [2994] = 4, + ACTIONS(1728), 1, anon_sym_LBRACE, - STATE(564), 1, + STATE(579), 1, sym_inline_attribute, - ACTIONS(1710), 6, + ACTIONS(1692), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1708), 30, + ACTIONS(1690), 29, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21116,7 +20500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -21131,19 +20515,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [3174] = 4, - ACTIONS(1792), 1, - aux_sym__text_token1, - STATE(198), 1, - aux_sym__text, - ACTIONS(1752), 6, + [3041] = 3, + ACTIONS(1774), 1, + sym__non_whitespace_check, + ACTIONS(49), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - ACTIONS(1754), 30, + aux_sym__text_token1, + ACTIONS(93), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -21154,7 +20537,6 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -21163,6 +20545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -21174,20 +20557,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [3221] = 4, - ACTIONS(1795), 1, - aux_sym__text_token1, - STATE(199), 1, - aux_sym__text, - ACTIONS(1752), 7, + [3086] = 3, + ACTIONS(1776), 1, + sym__non_whitespace_check, + ACTIONS(49), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, - ACTIONS(1754), 29, + aux_sym__text_token1, + ACTIONS(93), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -21202,9 +20584,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -21217,30 +20599,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [3268] = 5, - ACTIONS(49), 1, - anon_sym_LBRACE, - ACTIONS(1695), 1, - anon_sym_SPACE, - STATE(298), 1, - aux_sym_strong_begin_repeat1, - ACTIONS(1697), 7, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE2, - sym__whitespace1, - aux_sym__text_token1, - ACTIONS(1692), 28, + [3131] = 3, + ACTIONS(1778), 1, + aux_sym_autolink_token1, + ACTIONS(93), 4, sym__verbatim_begin, + ts_builtin_sym_end, + sym__whitespace1, + sym__newline, + ACTIONS(49), 33, + anon_sym_LBRACE, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, + sym_en_dash, + sym_backslash_escape, anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, @@ -21252,6 +20630,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK, + anon_sym_LBRACE2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -21260,21 +20640,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__newline, - [3317] = 4, - ACTIONS(1798), 1, aux_sym__text_token1, - STATE(201), 1, - aux_sym__text, - ACTIONS(1752), 6, + [3176] = 4, + ACTIONS(1726), 1, anon_sym_LBRACE, + STATE(595), 1, + sym_inline_attribute, + ACTIONS(1692), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - ACTIONS(1754), 30, + aux_sym__text_token1, + ACTIONS(1690), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21293,7 +20674,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -21304,31 +20684,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [3364] = 4, - ACTIONS(1801), 1, - aux_sym__text_token1, - STATE(202), 1, - aux_sym__text, - ACTIONS(1752), 6, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE2, - ACTIONS(1754), 30, + [3223] = 3, + ACTIONS(1780), 1, + aux_sym_autolink_token1, + ACTIONS(93), 3, sym__verbatim_begin, + sym__whitespace1, + sym__newline, + ACTIONS(49), 34, + anon_sym_LBRACE, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, + sym_en_dash, + sym_backslash_escape, anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -21337,6 +20714,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK, + anon_sym_RBRACK2, + anon_sym_LBRACE2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -21345,20 +20725,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, - sym__newline, - [3411] = 3, - ACTIONS(1804), 1, - sym__non_whitespace_check, - ACTIONS(49), 7, + aux_sym__text_token1, + [3268] = 4, + ACTIONS(1782), 1, + aux_sym__text_token1, + STATE(200), 1, + aux_sym__text, + ACTIONS(1730), 6, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(84), 30, + ACTIONS(1732), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -21370,6 +20750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -21377,7 +20758,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -21389,19 +20769,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [3456] = 4, - ACTIONS(1724), 1, + [3315] = 4, + ACTIONS(1698), 1, anon_sym_LBRACE, - STATE(588), 1, + STATE(585), 1, sym_inline_attribute, - ACTIONS(1710), 6, + ACTIONS(1692), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1708), 30, + ACTIONS(1690), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -21432,10 +20812,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [3503] = 3, - ACTIONS(1806), 1, + [3362] = 3, + ACTIONS(1785), 1, aux_sym_autolink_token1, - ACTIONS(84), 3, + ACTIONS(93), 3, sym__verbatim_begin, sym__whitespace1, sym__newline, @@ -21474,19 +20854,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, aux_sym__text_token1, - [3548] = 4, - ACTIONS(1808), 1, - aux_sym__text_token1, - STATE(206), 1, - aux_sym__text, - ACTIONS(1752), 6, + [3407] = 3, + ACTIONS(1787), 1, + sym__non_whitespace_check, + ACTIONS(49), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - ACTIONS(1754), 30, + aux_sym__text_token1, + ACTIONS(93), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -21497,9 +20876,9 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -21517,21 +20896,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [3595] = 4, - ACTIONS(1811), 1, + [3452] = 4, + ACTIONS(1789), 1, aux_sym__text_token1, - STATE(207), 1, + STATE(204), 1, aux_sym__text, - ACTIONS(1752), 6, + ACTIONS(1730), 6, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - ACTIONS(1754), 30, + ACTIONS(1732), 30, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21543,6 +20921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -21560,18 +20939,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [3642] = 3, - ACTIONS(1814), 1, - sym__non_whitespace_check, - ACTIONS(49), 7, + [3499] = 4, + ACTIONS(1688), 1, anon_sym_LBRACE, + STATE(581), 1, + sym_inline_attribute, + ACTIONS(1692), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(84), 30, + ACTIONS(1690), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -21582,9 +20962,9 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -21602,21 +20982,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [3687] = 4, - ACTIONS(1816), 1, - anon_sym_LBRACE_EQ2, - STATE(619), 1, - sym_raw_inline_attribute, - ACTIONS(1700), 8, + [3546] = 3, + ACTIONS(1792), 1, + sym__non_whitespace_check, + ACTIONS(49), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE_EQ, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1702), 28, + ACTIONS(93), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -21626,8 +21003,10 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, sym_em_dash, anon_sym_LT, + anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -21645,31 +21024,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [3734] = 5, - ACTIONS(1818), 1, - anon_sym_LBRACE, - STATE(439), 1, - aux_sym__text, - STATE(628), 1, - sym_inline_attribute, - ACTIONS(1710), 6, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(1708), 29, + [3591] = 3, + ACTIONS(1794), 1, + aux_sym_autolink_token1, + ACTIONS(93), 3, sym__verbatim_begin, + sym__whitespace1, + sym__newline, + ACTIONS(49), 34, + anon_sym_LBRACE, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, + sym_en_dash, + sym_backslash_escape, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -21679,6 +21055,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK, + anon_sym_LBRACE2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -21687,21 +21065,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + aux_sym__text_token1, + [3636] = 4, + ACTIONS(1686), 1, + sym__id, + STATE(878), 1, + sym_reference_label, + ACTIONS(49), 15, + anon_sym_LBRACE, + anon_sym__, + anon_sym_BSLASH, + sym_em_dash, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + aux_sym__text_token1, + ACTIONS(93), 21, + sym__verbatim_begin, + anon_sym_LBRACE_, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + sym_quotation_marks, + sym_ellipsis, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_PIPE, sym__whitespace1, sym__newline, - [3783] = 4, - ACTIONS(1706), 1, + [3683] = 4, + ACTIONS(1708), 1, anon_sym_LBRACE, - STATE(567), 1, + STATE(569), 1, sym_inline_attribute, - ACTIONS(1710), 6, + ACTIONS(1692), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1708), 30, + ACTIONS(1690), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -21732,10 +21152,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [3830] = 3, - ACTIONS(1820), 1, + [3730] = 3, + ACTIONS(1796), 1, aux_sym_autolink_token1, - ACTIONS(84), 3, + ACTIONS(93), 3, sym__verbatim_begin, sym__whitespace1, sym__newline, @@ -21774,28 +21194,29 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, aux_sym__text_token1, - [3875] = 3, - ACTIONS(1822), 1, - aux_sym_autolink_token1, - ACTIONS(84), 3, - sym__verbatim_begin, - sym__whitespace1, - sym__newline, - ACTIONS(49), 34, + [3775] = 4, + ACTIONS(1798), 1, + aux_sym__text_token1, + STATE(211), 1, + aux_sym__text, + ACTIONS(1730), 6, anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + ACTIONS(1732), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, - anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, - sym_en_dash, - sym_backslash_escape, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -21805,8 +21226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LBRACK, - anon_sym_LBRACE2, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -21815,21 +21235,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, + sym__newline, + [3822] = 4, + ACTIONS(1801), 1, aux_sym__text_token1, - [3920] = 3, - ACTIONS(1824), 1, - sym__non_whitespace_check, - ACTIONS(49), 7, + STATE(212), 1, + aux_sym__text, + ACTIONS(1730), 6, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(84), 30, + ACTIONS(1732), 30, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21839,6 +21260,7 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -21858,19 +21280,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [3965] = 4, - ACTIONS(1712), 1, + [3869] = 5, + ACTIONS(49), 1, anon_sym_LBRACE, - STATE(587), 1, - sym_inline_attribute, - ACTIONS(1710), 6, + ACTIONS(1681), 1, + anon_sym_SPACE, + STATE(296), 1, + aux_sym_strong_begin_repeat1, + ACTIONS(1683), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1708), 30, + ACTIONS(1678), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -21881,7 +21306,6 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -21899,23 +21323,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [4012] = 2, - ACTIONS(1826), 9, + [3918] = 3, + ACTIONS(1804), 1, + sym__non_whitespace_check, + ACTIONS(49), 7, anon_sym_LBRACE, - anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1828), 28, + ACTIONS(93), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -21940,17 +21364,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [4054] = 2, - ACTIONS(1830), 7, + [3963] = 5, + ACTIONS(1806), 1, anon_sym_LBRACE, + STATE(437), 1, + aux_sym__text, + STATE(630), 1, + sym_inline_attribute, + ACTIONS(1692), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1832), 30, + ACTIONS(1690), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -21970,7 +21400,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -21981,8 +21410,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [4096] = 2, - ACTIONS(1826), 7, + [4012] = 2, + ACTIONS(1808), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -21990,8 +21419,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1828), 30, + ACTIONS(1810), 30, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22002,7 +21432,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -22021,8 +21450,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [4138] = 2, - ACTIONS(1834), 7, + [4054] = 3, + ACTIONS(1812), 1, + sym__non_whitespace_check, + ACTIONS(49), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22030,7 +21461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1836), 30, + ACTIONS(93), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -22042,7 +21473,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -22061,8 +21491,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [4180] = 2, - ACTIONS(1838), 7, + [4098] = 2, + ACTIONS(1814), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22070,7 +21500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1840), 30, + ACTIONS(1816), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -22101,8 +21531,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [4222] = 2, - ACTIONS(1842), 7, + [4140] = 2, + ACTIONS(1818), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22110,7 +21540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1844), 30, + ACTIONS(1820), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -22141,8 +21571,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [4264] = 2, - ACTIONS(1846), 7, + [4182] = 2, + ACTIONS(1822), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22150,7 +21580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1848), 30, + ACTIONS(1824), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -22181,19 +21611,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [4306] = 4, + [4224] = 4, ACTIONS(49), 1, anon_sym_LBRACE, - ACTIONS(84), 1, + ACTIONS(93), 1, ts_builtin_sym_end, - ACTIONS(1697), 6, + ACTIONS(1683), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1692), 29, + ACTIONS(1678), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -22223,8 +21653,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [4352] = 2, - ACTIONS(1850), 7, + [4270] = 2, + ACTIONS(1826), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22232,7 +21662,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1852), 30, + ACTIONS(1828), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -22263,8 +21693,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [4394] = 2, - ACTIONS(1854), 7, + [4312] = 2, + ACTIONS(1830), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22272,7 +21702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1856), 30, + ACTIONS(1832), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -22303,8 +21733,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [4436] = 2, - ACTIONS(1858), 7, + [4354] = 2, + ACTIONS(1834), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22312,7 +21742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1860), 30, + ACTIONS(1836), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -22343,8 +21773,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [4478] = 2, - ACTIONS(1862), 7, + [4396] = 2, + ACTIONS(1838), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22352,7 +21782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1864), 30, + ACTIONS(1840), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -22383,8 +21813,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [4520] = 2, - ACTIONS(1866), 7, + [4438] = 2, + ACTIONS(1842), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22392,7 +21822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1868), 30, + ACTIONS(1844), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -22423,8 +21853,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [4562] = 2, - ACTIONS(1870), 7, + [4480] = 2, + ACTIONS(1846), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22432,7 +21862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1872), 30, + ACTIONS(1848), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -22463,8 +21893,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [4604] = 2, - ACTIONS(1874), 7, + [4522] = 2, + ACTIONS(1850), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22472,7 +21902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1876), 30, + ACTIONS(1852), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -22503,8 +21933,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [4646] = 2, - ACTIONS(1878), 7, + [4564] = 2, + ACTIONS(1854), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22512,7 +21942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1880), 30, + ACTIONS(1856), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -22543,8 +21973,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [4688] = 2, - ACTIONS(1830), 7, + [4606] = 2, + ACTIONS(1858), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22552,7 +21982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1832), 30, + ACTIONS(1860), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -22583,8 +22013,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [4730] = 2, - ACTIONS(1882), 7, + [4648] = 2, + ACTIONS(1862), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22592,7 +22022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1884), 30, + ACTIONS(1864), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -22623,8 +22053,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [4772] = 3, - ACTIONS(1886), 1, + [4690] = 3, + ACTIONS(1866), 1, sym__verbatim_begin, ACTIONS(49), 7, anon_sym_LBRACE, @@ -22634,7 +22064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(84), 29, + ACTIONS(93), 29, ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, @@ -22664,8 +22094,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [4816] = 2, - ACTIONS(1889), 7, + [4734] = 2, + ACTIONS(1869), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22673,7 +22103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1891), 30, + ACTIONS(1871), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -22704,8 +22134,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [4858] = 2, - ACTIONS(1893), 7, + [4776] = 2, + ACTIONS(1873), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22713,7 +22143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1895), 30, + ACTIONS(1875), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -22744,8 +22174,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [4900] = 2, - ACTIONS(1897), 7, + [4818] = 2, + ACTIONS(1877), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22753,7 +22183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1899), 30, + ACTIONS(1879), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -22784,8 +22214,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [4942] = 2, - ACTIONS(1901), 7, + [4860] = 2, + ACTIONS(1881), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22793,7 +22223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1903), 30, + ACTIONS(1883), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -22824,8 +22254,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [4984] = 2, - ACTIONS(1905), 7, + [4902] = 2, + ACTIONS(1885), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22833,7 +22263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1907), 30, + ACTIONS(1887), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -22864,8 +22294,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [5026] = 2, - ACTIONS(1909), 7, + [4944] = 2, + ACTIONS(1889), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22873,7 +22303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1911), 30, + ACTIONS(1891), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -22904,8 +22334,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [5068] = 2, - ACTIONS(1913), 7, + [4986] = 2, + ACTIONS(1893), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22913,7 +22343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1915), 30, + ACTIONS(1895), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -22944,19 +22374,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [5110] = 4, + [5028] = 4, ACTIONS(49), 1, anon_sym_LBRACE, - ACTIONS(84), 1, + ACTIONS(93), 1, anon_sym_DASH_RBRACE, - ACTIONS(1697), 6, + ACTIONS(1683), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1692), 29, + ACTIONS(1678), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -22986,8 +22416,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [5156] = 3, - ACTIONS(1917), 1, + [5074] = 3, + ACTIONS(1897), 1, sym__verbatim_begin, ACTIONS(49), 7, anon_sym_LBRACE, @@ -22997,7 +22427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(84), 29, + ACTIONS(93), 29, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23027,8 +22457,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [5200] = 2, - ACTIONS(1920), 7, + [5118] = 2, + ACTIONS(1900), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -23036,7 +22466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1922), 30, + ACTIONS(1902), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -23067,8 +22497,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [5242] = 2, - ACTIONS(1924), 7, + [5160] = 2, + ACTIONS(1904), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -23076,7 +22506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1926), 30, + ACTIONS(1906), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -23107,18 +22537,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [5284] = 4, - ACTIONS(1932), 1, + [5202] = 4, + ACTIONS(1912), 1, anon_sym_LBRACE2, - STATE(250), 1, + STATE(248), 1, sym_comment, - ACTIONS(1930), 5, + ACTIONS(1910), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1928), 30, + ACTIONS(1908), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -23149,8 +22579,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [5330] = 2, - ACTIONS(1935), 7, + [5248] = 2, + ACTIONS(1915), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -23158,7 +22588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1937), 30, + ACTIONS(1917), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -23189,8 +22619,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [5372] = 2, - ACTIONS(1939), 7, + [5290] = 2, + ACTIONS(1919), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -23198,7 +22628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1941), 30, + ACTIONS(1921), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -23229,8 +22659,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [5414] = 2, - ACTIONS(1920), 7, + [5332] = 2, + ACTIONS(1900), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -23238,7 +22668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1922), 30, + ACTIONS(1902), 30, sym__verbatim_begin, ts_builtin_sym_end, anon_sym_LBRACE_, @@ -23269,8 +22699,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [5456] = 2, - ACTIONS(1943), 7, + [5374] = 2, + ACTIONS(1808), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -23278,7 +22708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1945), 30, + ACTIONS(1810), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -23309,8 +22739,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [5498] = 2, - ACTIONS(1947), 7, + [5416] = 2, + ACTIONS(1923), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -23318,7 +22748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1949), 30, + ACTIONS(1925), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -23349,8 +22779,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [5540] = 2, - ACTIONS(1951), 7, + [5458] = 2, + ACTIONS(1927), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -23358,7 +22788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1953), 30, + ACTIONS(1929), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -23389,8 +22819,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [5582] = 2, - ACTIONS(1826), 7, + [5500] = 2, + ACTIONS(1931), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -23398,7 +22828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1828), 30, + ACTIONS(1933), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -23429,8 +22859,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [5624] = 2, - ACTIONS(1834), 7, + [5542] = 2, + ACTIONS(1935), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -23438,7 +22868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1836), 30, + ACTIONS(1937), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -23469,8 +22899,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [5666] = 2, - ACTIONS(1838), 7, + [5584] = 2, + ACTIONS(1814), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -23478,7 +22908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1840), 30, + ACTIONS(1816), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -23509,8 +22939,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [5708] = 2, - ACTIONS(1842), 7, + [5626] = 2, + ACTIONS(1818), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -23518,7 +22948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1844), 30, + ACTIONS(1820), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -23549,8 +22979,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [5750] = 2, - ACTIONS(1846), 7, + [5668] = 2, + ACTIONS(1822), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -23558,7 +22988,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1848), 30, + ACTIONS(1824), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -23589,8 +23019,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [5792] = 2, - ACTIONS(1924), 7, + [5710] = 2, + ACTIONS(1904), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -23598,7 +23028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1926), 30, + ACTIONS(1906), 30, sym__verbatim_begin, ts_builtin_sym_end, anon_sym_LBRACE_, @@ -23629,8 +23059,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [5834] = 2, - ACTIONS(1850), 7, + [5752] = 2, + ACTIONS(1826), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -23638,7 +23068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1852), 30, + ACTIONS(1828), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -23669,8 +23099,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [5876] = 2, - ACTIONS(1854), 7, + [5794] = 2, + ACTIONS(1830), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -23678,7 +23108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1856), 30, + ACTIONS(1832), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -23709,8 +23139,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [5918] = 2, - ACTIONS(1858), 7, + [5836] = 2, + ACTIONS(1834), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -23718,7 +23148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1860), 30, + ACTIONS(1836), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -23749,8 +23179,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [5960] = 2, - ACTIONS(1862), 7, + [5878] = 2, + ACTIONS(1838), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -23758,7 +23188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1864), 30, + ACTIONS(1840), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -23789,8 +23219,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [6002] = 2, - ACTIONS(1866), 7, + [5920] = 2, + ACTIONS(1842), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -23798,7 +23228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1868), 30, + ACTIONS(1844), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -23829,8 +23259,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [6044] = 2, - ACTIONS(1870), 7, + [5962] = 2, + ACTIONS(1846), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -23838,7 +23268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1872), 30, + ACTIONS(1848), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -23869,8 +23299,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [6086] = 2, - ACTIONS(1874), 7, + [6004] = 2, + ACTIONS(1850), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -23878,7 +23308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1876), 30, + ACTIONS(1852), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -23909,8 +23339,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [6128] = 2, - ACTIONS(1878), 7, + [6046] = 2, + ACTIONS(1854), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -23918,7 +23348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1880), 30, + ACTIONS(1856), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -23949,8 +23379,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [6170] = 2, - ACTIONS(1830), 7, + [6088] = 2, + ACTIONS(1858), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -23958,7 +23388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1832), 30, + ACTIONS(1860), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -23989,8 +23419,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [6212] = 2, - ACTIONS(1882), 7, + [6130] = 2, + ACTIONS(1862), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -23998,7 +23428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1884), 30, + ACTIONS(1864), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -24029,18 +23459,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [6254] = 4, - ACTIONS(1955), 1, + [6172] = 4, + ACTIONS(1939), 1, anon_sym_LBRACE2, - STATE(440), 1, + STATE(439), 1, sym_comment, - ACTIONS(1930), 5, + ACTIONS(1910), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1928), 30, + ACTIONS(1908), 30, sym__verbatim_begin, ts_builtin_sym_end, anon_sym_LBRACE_, @@ -24071,8 +23501,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [6300] = 2, - ACTIONS(1889), 7, + [6218] = 2, + ACTIONS(1869), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -24080,7 +23510,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1891), 30, + ACTIONS(1871), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -24111,8 +23541,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [6342] = 2, - ACTIONS(1893), 7, + [6260] = 2, + ACTIONS(1873), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -24120,7 +23550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1895), 30, + ACTIONS(1875), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -24151,8 +23581,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [6384] = 2, - ACTIONS(1897), 7, + [6302] = 2, + ACTIONS(1877), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -24160,7 +23590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1899), 30, + ACTIONS(1879), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -24191,8 +23621,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [6426] = 2, - ACTIONS(1901), 7, + [6344] = 2, + ACTIONS(1881), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -24200,7 +23630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1903), 30, + ACTIONS(1883), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -24231,8 +23661,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [6468] = 2, - ACTIONS(1905), 7, + [6386] = 2, + ACTIONS(1885), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -24240,7 +23670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1907), 30, + ACTIONS(1887), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -24271,8 +23701,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [6510] = 2, - ACTIONS(1909), 7, + [6428] = 2, + ACTIONS(1889), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -24280,7 +23710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1911), 30, + ACTIONS(1891), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -24311,8 +23741,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [6552] = 2, - ACTIONS(1913), 7, + [6470] = 2, + ACTIONS(1893), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -24320,7 +23750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1915), 30, + ACTIONS(1895), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -24351,8 +23781,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [6594] = 2, - ACTIONS(1826), 7, + [6512] = 2, + ACTIONS(1818), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -24360,7 +23790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1828), 30, + ACTIONS(1820), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -24391,8 +23821,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [6636] = 2, - ACTIONS(1947), 7, + [6554] = 2, + ACTIONS(1931), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -24400,7 +23830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1949), 30, + ACTIONS(1933), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -24431,12 +23861,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [6678] = 4, + [6596] = 4, ACTIONS(49), 1, anon_sym_LBRACE, - ACTIONS(84), 1, + ACTIONS(93), 1, anon_sym_CARET_RBRACE, - ACTIONS(1697), 7, + ACTIONS(1683), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, @@ -24444,7 +23874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1692), 28, + ACTIONS(1678), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -24473,8 +23903,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [6724] = 2, - ACTIONS(1943), 7, + [6642] = 2, + ACTIONS(1927), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -24482,7 +23912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1945), 30, + ACTIONS(1929), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -24513,8 +23943,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [6766] = 2, - ACTIONS(1935), 7, + [6684] = 2, + ACTIONS(1923), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -24522,9 +23952,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1937), 30, + ACTIONS(1925), 30, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24535,6 +23964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -24553,8 +23983,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [6808] = 2, - ACTIONS(1939), 7, + [6726] = 2, + ACTIONS(1808), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -24562,7 +23992,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1941), 30, + ACTIONS(1810), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -24593,8 +24023,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [6850] = 2, - ACTIONS(1935), 7, + [6768] = 2, + ACTIONS(1915), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -24602,8 +24032,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1937), 30, + ACTIONS(1917), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24614,7 +24045,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -24633,18 +24063,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [6892] = 4, - ACTIONS(1958), 1, - anon_sym_LBRACE2, - STATE(280), 1, - sym_comment, - ACTIONS(1930), 5, + [6810] = 2, + ACTIONS(1919), 7, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1928), 30, + ACTIONS(1921), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -24675,8 +24103,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [6938] = 2, - ACTIONS(1924), 7, + [6852] = 2, + ACTIONS(1915), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -24684,7 +24112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1926), 30, + ACTIONS(1917), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -24715,16 +24143,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [6980] = 2, - ACTIONS(1920), 7, - anon_sym_LBRACE, + [6894] = 4, + ACTIONS(1942), 1, + anon_sym_LBRACE2, + STATE(280), 1, + sym_comment, + ACTIONS(1910), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1922), 30, + ACTIONS(1908), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -24755,10 +24185,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [7022] = 3, - ACTIONS(1961), 1, - sym__verbatim_begin, - ACTIONS(49), 7, + [6940] = 2, + ACTIONS(1904), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -24766,7 +24194,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(84), 29, + ACTIONS(1906), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24796,19 +24225,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [7066] = 4, - ACTIONS(49), 1, + [6982] = 2, + ACTIONS(1900), 7, anon_sym_LBRACE, - ACTIONS(84), 1, - anon_sym_PLUS_RBRACE, - ACTIONS(1697), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1692), 29, + ACTIONS(1902), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -24820,6 +24246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -24838,8 +24265,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [7112] = 2, - ACTIONS(1913), 7, + [7024] = 3, + ACTIONS(1945), 1, + sym__verbatim_begin, + ACTIONS(49), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -24847,8 +24276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1915), 30, - sym__verbatim_begin, + ACTIONS(93), 29, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24858,8 +24286,8 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -24878,8 +24306,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [7154] = 3, - ACTIONS(1964), 1, + [7068] = 3, + ACTIONS(1948), 1, sym__verbatim_begin, ACTIONS(49), 8, anon_sym_LBRACE, @@ -24890,7 +24318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(84), 28, + ACTIONS(93), 28, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24919,8 +24347,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [7198] = 2, - ACTIONS(1920), 8, + [7112] = 2, + ACTIONS(1900), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -24929,7 +24357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1922), 29, + ACTIONS(1902), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -24959,8 +24387,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [7240] = 2, - ACTIONS(1924), 8, + [7154] = 2, + ACTIONS(1904), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -24969,7 +24397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1926), 29, + ACTIONS(1906), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -24999,19 +24427,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [7282] = 4, - ACTIONS(1967), 1, + [7196] = 4, + ACTIONS(1951), 1, anon_sym_LBRACE2, - STATE(299), 1, + STATE(297), 1, sym_comment, - ACTIONS(1930), 6, + ACTIONS(1910), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_CARET, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1928), 29, + ACTIONS(1908), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -25041,16 +24469,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [7328] = 2, - ACTIONS(1909), 7, + [7242] = 4, + ACTIONS(49), 1, anon_sym_LBRACE, + ACTIONS(93), 1, + anon_sym_PLUS_RBRACE, + ACTIONS(1683), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1911), 30, + ACTIONS(1678), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -25061,7 +24492,6 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -25081,8 +24511,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [7370] = 2, - ACTIONS(1905), 7, + [7288] = 2, + ACTIONS(1893), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -25090,7 +24520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1907), 30, + ACTIONS(1895), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -25121,8 +24551,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [7412] = 2, - ACTIONS(1935), 8, + [7330] = 2, + ACTIONS(1915), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -25131,7 +24561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1937), 29, + ACTIONS(1917), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -25161,8 +24591,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [7454] = 2, - ACTIONS(1939), 8, + [7372] = 2, + ACTIONS(1919), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -25171,7 +24601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1941), 29, + ACTIONS(1921), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -25201,12 +24631,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [7496] = 4, - ACTIONS(1972), 1, + [7414] = 4, + ACTIONS(1956), 1, anon_sym_SPACE, - STATE(550), 1, + STATE(541), 1, aux_sym_strong_begin_repeat1, - ACTIONS(1974), 7, + ACTIONS(1958), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, @@ -25214,7 +24644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1970), 28, + ACTIONS(1954), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -25243,8 +24673,8 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [7542] = 2, - ACTIONS(1943), 8, + [7460] = 2, + ACTIONS(1808), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -25253,7 +24683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1945), 29, + ACTIONS(1810), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -25283,8 +24713,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [7584] = 2, - ACTIONS(1947), 8, + [7502] = 2, + ACTIONS(1923), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -25293,7 +24723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1949), 29, + ACTIONS(1925), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -25323,8 +24753,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [7626] = 2, - ACTIONS(1951), 8, + [7544] = 2, + ACTIONS(1927), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -25333,7 +24763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1953), 29, + ACTIONS(1929), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -25363,8 +24793,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [7668] = 2, - ACTIONS(1826), 8, + [7586] = 2, + ACTIONS(1931), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -25373,7 +24803,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1828), 29, + ACTIONS(1933), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -25403,8 +24833,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [7710] = 2, - ACTIONS(1834), 8, + [7628] = 2, + ACTIONS(1935), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -25413,7 +24843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1836), 29, + ACTIONS(1937), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -25443,8 +24873,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [7752] = 2, - ACTIONS(1838), 8, + [7670] = 2, + ACTIONS(1814), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -25453,7 +24883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1840), 29, + ACTIONS(1816), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -25483,8 +24913,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [7794] = 2, - ACTIONS(1842), 8, + [7712] = 2, + ACTIONS(1818), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -25493,7 +24923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1844), 29, + ACTIONS(1820), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -25523,8 +24953,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [7836] = 2, - ACTIONS(1901), 7, + [7754] = 2, + ACTIONS(1889), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -25532,7 +24962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1903), 30, + ACTIONS(1891), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -25563,8 +24993,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [7878] = 2, - ACTIONS(1897), 7, + [7796] = 2, + ACTIONS(1885), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -25572,7 +25002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1899), 30, + ACTIONS(1887), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -25603,8 +25033,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [7920] = 2, - ACTIONS(1893), 7, + [7838] = 2, + ACTIONS(1881), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -25612,7 +25042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1895), 30, + ACTIONS(1883), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -25643,8 +25073,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [7962] = 2, - ACTIONS(1846), 8, + [7880] = 2, + ACTIONS(1822), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -25653,7 +25083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1848), 29, + ACTIONS(1824), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -25683,8 +25113,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [8004] = 2, - ACTIONS(1939), 7, + [7922] = 2, + ACTIONS(1919), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -25692,7 +25122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1941), 30, + ACTIONS(1921), 30, sym__verbatim_begin, ts_builtin_sym_end, anon_sym_LBRACE_, @@ -25723,8 +25153,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [8046] = 2, - ACTIONS(1850), 8, + [7964] = 2, + ACTIONS(1826), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -25733,7 +25163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1852), 29, + ACTIONS(1828), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -25763,8 +25193,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [8088] = 2, - ACTIONS(1854), 8, + [8006] = 2, + ACTIONS(1830), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -25773,7 +25203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1856), 29, + ACTIONS(1832), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -25803,8 +25233,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [8130] = 2, - ACTIONS(1858), 8, + [8048] = 2, + ACTIONS(1834), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -25813,7 +25243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1860), 29, + ACTIONS(1836), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -25843,8 +25273,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [8172] = 2, - ACTIONS(1862), 8, + [8090] = 2, + ACTIONS(1838), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -25853,7 +25283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1864), 29, + ACTIONS(1840), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -25883,8 +25313,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [8214] = 2, - ACTIONS(1866), 8, + [8132] = 2, + ACTIONS(1842), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -25893,7 +25323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1868), 29, + ACTIONS(1844), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -25923,8 +25353,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [8256] = 2, - ACTIONS(1870), 8, + [8174] = 2, + ACTIONS(1846), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -25933,7 +25363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1872), 29, + ACTIONS(1848), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -25963,8 +25393,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [8298] = 2, - ACTIONS(1874), 8, + [8216] = 2, + ACTIONS(1850), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -25973,7 +25403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1876), 29, + ACTIONS(1852), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -26003,8 +25433,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [8340] = 2, - ACTIONS(1878), 8, + [8258] = 2, + ACTIONS(1854), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -26013,7 +25443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1880), 29, + ACTIONS(1856), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -26043,8 +25473,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [8382] = 2, - ACTIONS(1830), 8, + [8300] = 2, + ACTIONS(1858), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -26053,7 +25483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1832), 29, + ACTIONS(1860), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -26083,8 +25513,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [8424] = 2, - ACTIONS(1882), 8, + [8342] = 2, + ACTIONS(1862), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -26093,7 +25523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1884), 29, + ACTIONS(1864), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -26123,8 +25553,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [8466] = 2, - ACTIONS(1976), 7, + [8384] = 2, + ACTIONS(1960), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -26132,7 +25562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1978), 30, + ACTIONS(1962), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -26163,8 +25593,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [8508] = 2, - ACTIONS(1889), 8, + [8426] = 2, + ACTIONS(1869), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -26173,7 +25603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1891), 29, + ACTIONS(1871), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -26203,8 +25633,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [8550] = 2, - ACTIONS(1893), 8, + [8468] = 2, + ACTIONS(1873), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -26213,7 +25643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1895), 29, + ACTIONS(1875), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -26243,8 +25673,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [8592] = 2, - ACTIONS(1897), 8, + [8510] = 2, + ACTIONS(1877), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -26253,7 +25683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1899), 29, + ACTIONS(1879), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -26283,8 +25713,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [8634] = 2, - ACTIONS(1901), 8, + [8552] = 2, + ACTIONS(1881), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -26293,7 +25723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1903), 29, + ACTIONS(1883), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -26323,8 +25753,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [8676] = 2, - ACTIONS(1905), 8, + [8594] = 2, + ACTIONS(1885), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -26333,7 +25763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1907), 29, + ACTIONS(1887), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -26363,8 +25793,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [8718] = 2, - ACTIONS(1909), 8, + [8636] = 2, + ACTIONS(1889), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -26373,7 +25803,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1911), 29, + ACTIONS(1891), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -26403,8 +25833,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [8760] = 2, - ACTIONS(1913), 8, + [8678] = 2, + ACTIONS(1893), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -26413,7 +25843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1915), 29, + ACTIONS(1895), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -26443,8 +25873,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [8802] = 2, - ACTIONS(1889), 7, + [8720] = 2, + ACTIONS(1877), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -26452,7 +25882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1891), 30, + ACTIONS(1879), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -26483,8 +25913,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [8844] = 2, - ACTIONS(1980), 7, + [8762] = 2, + ACTIONS(1873), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -26492,7 +25922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1982), 30, + ACTIONS(1875), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -26503,6 +25933,7 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -26512,7 +25943,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -26523,12 +25953,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [8886] = 4, + [8804] = 4, ACTIONS(49), 1, anon_sym_LBRACE, - ACTIONS(84), 1, + ACTIONS(93), 1, anon_sym_TILDE_RBRACE, - ACTIONS(1697), 7, + ACTIONS(1683), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, @@ -26536,7 +25966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1692), 28, + ACTIONS(1678), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -26565,8 +25995,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [8932] = 2, - ACTIONS(1882), 7, + [8850] = 2, + ACTIONS(1869), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -26574,7 +26004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1884), 30, + ACTIONS(1871), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -26605,8 +26035,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [8974] = 2, - ACTIONS(1830), 7, + [8892] = 2, + ACTIONS(1964), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -26614,7 +26044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1832), 30, + ACTIONS(1966), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -26625,7 +26055,6 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -26635,6 +26064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -26645,8 +26075,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [9016] = 2, - ACTIONS(1878), 7, + [8934] = 2, + ACTIONS(1862), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -26654,7 +26084,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1880), 30, + ACTIONS(1864), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -26685,8 +26115,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [9058] = 2, - ACTIONS(1874), 7, + [8976] = 2, + ACTIONS(1858), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -26694,7 +26124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1876), 30, + ACTIONS(1860), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -26725,8 +26155,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [9100] = 2, - ACTIONS(1870), 7, + [9018] = 2, + ACTIONS(1854), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -26734,7 +26164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1872), 30, + ACTIONS(1856), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -26765,8 +26195,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [9142] = 2, - ACTIONS(1866), 7, + [9060] = 2, + ACTIONS(1850), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -26774,7 +26204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1868), 30, + ACTIONS(1852), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -26805,8 +26235,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [9184] = 2, - ACTIONS(1862), 7, + [9102] = 2, + ACTIONS(1846), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -26814,7 +26244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1864), 30, + ACTIONS(1848), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -26845,8 +26275,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [9226] = 2, - ACTIONS(1858), 7, + [9144] = 2, + ACTIONS(1842), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -26854,7 +26284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1860), 30, + ACTIONS(1844), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -26885,8 +26315,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [9268] = 2, - ACTIONS(1854), 7, + [9186] = 2, + ACTIONS(1838), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -26894,7 +26324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1856), 30, + ACTIONS(1840), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -26925,8 +26355,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [9310] = 2, - ACTIONS(1850), 7, + [9228] = 2, + ACTIONS(1834), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -26934,7 +26364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1852), 30, + ACTIONS(1836), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -26965,8 +26395,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [9352] = 3, - ACTIONS(1984), 1, + [9270] = 3, + ACTIONS(1968), 1, sym__verbatim_begin, ACTIONS(49), 8, anon_sym_LBRACE, @@ -26977,7 +26407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(84), 28, + ACTIONS(93), 28, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27006,8 +26436,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [9396] = 2, - ACTIONS(1920), 8, + [9314] = 2, + ACTIONS(1900), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -27016,7 +26446,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1922), 29, + ACTIONS(1902), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -27046,8 +26476,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [9438] = 2, - ACTIONS(1924), 8, + [9356] = 2, + ACTIONS(1904), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -27056,7 +26486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1926), 29, + ACTIONS(1906), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -27086,19 +26516,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [9480] = 4, - ACTIONS(1987), 1, + [9398] = 4, + ACTIONS(1971), 1, anon_sym_LBRACE2, - STATE(351), 1, + STATE(349), 1, sym_comment, - ACTIONS(1930), 6, + ACTIONS(1910), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_TILDE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1928), 29, + ACTIONS(1908), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -27128,21 +26558,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [9526] = 2, - ACTIONS(1976), 9, + [9444] = 2, + ACTIONS(1830), 7, anon_sym_LBRACE, - anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1978), 28, + ACTIONS(1832), 30, sym__verbatim_begin, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -27150,6 +26578,7 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -27167,9 +26596,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [9568] = 2, - ACTIONS(1846), 7, + [9486] = 2, + ACTIONS(1826), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -27177,7 +26607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1848), 30, + ACTIONS(1828), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -27208,8 +26638,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [9610] = 2, - ACTIONS(1935), 8, + [9528] = 2, + ACTIONS(1915), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -27218,7 +26648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1937), 29, + ACTIONS(1917), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -27248,8 +26678,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [9652] = 2, - ACTIONS(1939), 8, + [9570] = 2, + ACTIONS(1919), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -27258,7 +26688,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1941), 29, + ACTIONS(1921), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -27288,21 +26718,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [9694] = 2, - ACTIONS(1980), 9, + [9612] = 2, + ACTIONS(1960), 7, anon_sym_LBRACE, - anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1982), 28, + ACTIONS(1962), 30, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -27327,9 +26756,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [9736] = 2, - ACTIONS(1943), 8, + [9654] = 2, + ACTIONS(1808), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -27338,7 +26768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1945), 29, + ACTIONS(1810), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -27368,8 +26798,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [9778] = 2, - ACTIONS(1947), 8, + [9696] = 2, + ACTIONS(1923), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -27378,7 +26808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1949), 29, + ACTIONS(1925), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -27408,8 +26838,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [9820] = 2, - ACTIONS(1951), 8, + [9738] = 2, + ACTIONS(1927), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -27418,7 +26848,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1953), 29, + ACTIONS(1929), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -27448,8 +26878,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [9862] = 2, - ACTIONS(1826), 8, + [9780] = 2, + ACTIONS(1931), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -27458,7 +26888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1828), 29, + ACTIONS(1933), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -27488,8 +26918,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [9904] = 2, - ACTIONS(1834), 8, + [9822] = 2, + ACTIONS(1935), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -27498,7 +26928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1836), 29, + ACTIONS(1937), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -27528,8 +26958,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [9946] = 2, - ACTIONS(1838), 8, + [9864] = 2, + ACTIONS(1814), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -27538,7 +26968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1840), 29, + ACTIONS(1816), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -27568,8 +26998,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [9988] = 2, - ACTIONS(1842), 8, + [9906] = 2, + ACTIONS(1818), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -27578,7 +27008,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1844), 29, + ACTIONS(1820), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -27608,8 +27038,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [10030] = 2, - ACTIONS(1842), 7, + [9948] = 2, + ACTIONS(1964), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -27617,8 +27047,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1844), 30, + ACTIONS(1966), 30, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27628,7 +27059,6 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -27648,8 +27078,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [10072] = 2, - ACTIONS(1838), 7, + [9990] = 2, + ACTIONS(1822), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -27657,7 +27087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1840), 30, + ACTIONS(1824), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -27688,8 +27118,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [10114] = 2, - ACTIONS(1834), 7, + [10032] = 3, + ACTIONS(1974), 1, + sym__verbatim_begin, + ACTIONS(49), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -27697,8 +27129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1836), 30, - sym__verbatim_begin, + ACTIONS(93), 29, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27728,8 +27159,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [10156] = 2, - ACTIONS(1846), 8, + [10076] = 2, + ACTIONS(1822), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -27738,7 +27169,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1848), 29, + ACTIONS(1824), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -27768,8 +27199,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [10198] = 2, - ACTIONS(1976), 9, + [10118] = 2, + ACTIONS(1960), 9, anon_sym_LBRACE, anon_sym_STAR, anon_sym_BSLASH, @@ -27779,7 +27210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1978), 28, + ACTIONS(1962), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -27808,8 +27239,8 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [10240] = 2, - ACTIONS(1850), 8, + [10160] = 2, + ACTIONS(1826), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -27818,7 +27249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1852), 29, + ACTIONS(1828), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -27848,8 +27279,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [10282] = 2, - ACTIONS(1854), 8, + [10202] = 2, + ACTIONS(1830), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -27858,7 +27289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1856), 29, + ACTIONS(1832), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -27888,8 +27319,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [10324] = 2, - ACTIONS(1858), 8, + [10244] = 2, + ACTIONS(1834), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -27898,7 +27329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1860), 29, + ACTIONS(1836), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -27928,8 +27359,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [10366] = 2, - ACTIONS(1862), 8, + [10286] = 2, + ACTIONS(1838), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -27938,7 +27369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1864), 29, + ACTIONS(1840), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -27968,8 +27399,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [10408] = 2, - ACTIONS(1866), 8, + [10328] = 2, + ACTIONS(1842), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -27978,7 +27409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1868), 29, + ACTIONS(1844), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -28008,8 +27439,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [10450] = 2, - ACTIONS(1870), 8, + [10370] = 2, + ACTIONS(1846), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -28018,7 +27449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1872), 29, + ACTIONS(1848), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -28048,8 +27479,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [10492] = 2, - ACTIONS(1874), 8, + [10412] = 2, + ACTIONS(1850), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -28058,7 +27489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1876), 29, + ACTIONS(1852), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -28088,8 +27519,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [10534] = 2, - ACTIONS(1878), 8, + [10454] = 2, + ACTIONS(1854), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -28098,7 +27529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1880), 29, + ACTIONS(1856), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -28128,8 +27559,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [10576] = 2, - ACTIONS(1830), 8, + [10496] = 2, + ACTIONS(1858), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -28138,7 +27569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1832), 29, + ACTIONS(1860), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -28168,8 +27599,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [10618] = 2, - ACTIONS(1882), 8, + [10538] = 2, + ACTIONS(1862), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -28178,7 +27609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1884), 29, + ACTIONS(1864), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -28208,8 +27639,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [10660] = 2, - ACTIONS(1980), 9, + [10580] = 2, + ACTIONS(1964), 9, anon_sym_LBRACE, anon_sym_STAR, anon_sym_BSLASH, @@ -28219,7 +27650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1982), 28, + ACTIONS(1966), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -28248,8 +27679,8 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [10702] = 2, - ACTIONS(1889), 8, + [10622] = 2, + ACTIONS(1869), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -28258,7 +27689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1891), 29, + ACTIONS(1871), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -28288,8 +27719,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [10744] = 2, - ACTIONS(1893), 8, + [10664] = 2, + ACTIONS(1873), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -28298,7 +27729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1895), 29, + ACTIONS(1875), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -28328,8 +27759,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [10786] = 2, - ACTIONS(1897), 8, + [10706] = 2, + ACTIONS(1877), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -28338,7 +27769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1899), 29, + ACTIONS(1879), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -28368,8 +27799,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [10828] = 2, - ACTIONS(1901), 8, + [10748] = 2, + ACTIONS(1881), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -28378,7 +27809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1903), 29, + ACTIONS(1883), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -28408,8 +27839,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [10870] = 2, - ACTIONS(1905), 8, + [10790] = 2, + ACTIONS(1885), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -28418,7 +27849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1907), 29, + ACTIONS(1887), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -28448,8 +27879,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [10912] = 2, - ACTIONS(1909), 8, + [10832] = 2, + ACTIONS(1889), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -28458,7 +27889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1911), 29, + ACTIONS(1891), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -28488,8 +27919,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [10954] = 2, - ACTIONS(1913), 8, + [10874] = 2, + ACTIONS(1893), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -28498,7 +27929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1915), 29, + ACTIONS(1895), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -28528,10 +27959,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [10996] = 3, - ACTIONS(1990), 1, - sym__verbatim_begin, - ACTIONS(49), 7, + [10916] = 2, + ACTIONS(1814), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -28539,7 +27968,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(84), 29, + ACTIONS(1816), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28569,8 +27999,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [11040] = 2, - ACTIONS(1951), 7, + [10958] = 2, + ACTIONS(1935), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -28578,7 +28008,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1953), 30, + ACTIONS(1937), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -28609,19 +28039,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [11082] = 4, + [11000] = 4, ACTIONS(49), 1, anon_sym_LBRACE, - ACTIONS(84), 1, + ACTIONS(93), 1, anon_sym_RBRACK, - ACTIONS(1697), 6, + ACTIONS(1683), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1692), 29, + ACTIONS(1678), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -28651,8 +28081,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [11128] = 2, - ACTIONS(1947), 7, + [11046] = 2, + ACTIONS(1931), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -28660,7 +28090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1949), 30, + ACTIONS(1933), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -28691,8 +28121,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [11170] = 2, - ACTIONS(1943), 7, + [11088] = 2, + ACTIONS(1927), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -28700,7 +28130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1945), 30, + ACTIONS(1929), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -28731,8 +28161,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [11212] = 2, - ACTIONS(1976), 7, + [11130] = 2, + ACTIONS(1923), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -28740,7 +28170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1978), 30, + ACTIONS(1925), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -28751,6 +28181,7 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -28759,7 +28190,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -28771,8 +28201,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [11254] = 2, - ACTIONS(1939), 7, + [11172] = 2, + ACTIONS(1808), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -28780,7 +28210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1941), 30, + ACTIONS(1810), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -28811,8 +28241,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [11296] = 2, - ACTIONS(1935), 7, + [11214] = 2, + ACTIONS(1960), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -28820,7 +28250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1937), 30, + ACTIONS(1962), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -28831,7 +28261,6 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -28840,6 +28269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -28851,18 +28281,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [11338] = 4, - ACTIONS(1993), 1, - anon_sym_LBRACE2, - STATE(385), 1, - sym_comment, - ACTIONS(1930), 5, + [11256] = 2, + ACTIONS(1919), 7, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1928), 30, + ACTIONS(1921), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -28893,8 +28321,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [11384] = 2, - ACTIONS(1924), 7, + [11298] = 2, + ACTIONS(1915), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -28902,7 +28330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1926), 30, + ACTIONS(1917), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -28933,16 +28361,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [11426] = 2, - ACTIONS(1920), 7, - anon_sym_LBRACE, + [11340] = 4, + ACTIONS(1977), 1, + anon_sym_LBRACE2, + STATE(385), 1, + sym_comment, + ACTIONS(1910), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1922), 30, + ACTIONS(1908), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -28973,8 +28403,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [11468] = 2, - ACTIONS(1980), 7, + [11386] = 2, + ACTIONS(1904), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -28982,7 +28412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1982), 30, + ACTIONS(1906), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -28993,6 +28423,7 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -29001,7 +28432,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -29013,19 +28443,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [11510] = 4, - ACTIONS(49), 1, + [11428] = 2, + ACTIONS(1900), 7, anon_sym_LBRACE, - ACTIONS(84), 1, - anon_sym_EQ_RBRACE, - ACTIONS(1697), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1692), 29, + ACTIONS(1902), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -29036,6 +28463,7 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -29055,8 +28483,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [11556] = 3, - ACTIONS(1996), 1, + [11470] = 3, + ACTIONS(1980), 1, sym__verbatim_begin, ACTIONS(49), 7, anon_sym_LBRACE, @@ -29066,7 +28494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(84), 29, + ACTIONS(93), 29, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29096,8 +28524,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [11600] = 2, - ACTIONS(1920), 7, + [11514] = 2, + ACTIONS(1900), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -29105,7 +28533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1922), 30, + ACTIONS(1902), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -29136,8 +28564,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [11642] = 2, - ACTIONS(1924), 7, + [11556] = 2, + ACTIONS(1904), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -29145,7 +28573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1926), 30, + ACTIONS(1906), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -29176,18 +28604,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [11684] = 4, - ACTIONS(1999), 1, + [11598] = 4, + ACTIONS(1983), 1, anon_sym_LBRACE2, - STATE(403), 1, + STATE(401), 1, sym_comment, - ACTIONS(1930), 5, + ACTIONS(1910), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1928), 30, + ACTIONS(1908), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -29218,17 +28646,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [11730] = 2, - ACTIONS(1976), 8, + [11644] = 2, + ACTIONS(1964), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1978), 29, + ACTIONS(1966), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -29245,8 +28672,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -29258,17 +28686,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [11772] = 2, - ACTIONS(1980), 8, + [11686] = 4, + ACTIONS(49), 1, anon_sym_LBRACE, + ACTIONS(93), 1, + anon_sym_EQ_RBRACE, + ACTIONS(1683), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1982), 29, + ACTIONS(1678), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -29285,7 +28715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -29298,8 +28728,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [11814] = 2, - ACTIONS(1935), 7, + [11732] = 2, + ACTIONS(1915), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -29307,7 +28737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1937), 30, + ACTIONS(1917), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -29338,8 +28768,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [11856] = 2, - ACTIONS(1939), 7, + [11774] = 2, + ACTIONS(1919), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -29347,7 +28777,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1941), 30, + ACTIONS(1921), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -29378,17 +28808,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [11898] = 2, - ACTIONS(1976), 8, + [11816] = 2, + ACTIONS(1960), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, + anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1978), 29, + ACTIONS(1962), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -29403,9 +28833,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -29418,8 +28848,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [11940] = 2, - ACTIONS(1943), 7, + [11858] = 2, + ACTIONS(1808), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -29427,7 +28857,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1945), 30, + ACTIONS(1810), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -29458,8 +28888,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [11982] = 2, - ACTIONS(1947), 7, + [11900] = 2, + ACTIONS(1923), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -29467,7 +28897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1949), 30, + ACTIONS(1925), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -29498,8 +28928,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [12024] = 2, - ACTIONS(1951), 7, + [11942] = 2, + ACTIONS(1927), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -29507,7 +28937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1953), 30, + ACTIONS(1929), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -29538,8 +28968,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [12066] = 2, - ACTIONS(1826), 7, + [11984] = 2, + ACTIONS(1931), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -29547,7 +28977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1828), 30, + ACTIONS(1933), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -29578,8 +29008,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [12108] = 2, - ACTIONS(1834), 7, + [12026] = 2, + ACTIONS(1935), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -29587,7 +29017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1836), 30, + ACTIONS(1937), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -29618,8 +29048,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [12150] = 2, - ACTIONS(1838), 7, + [12068] = 2, + ACTIONS(1814), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -29627,7 +29057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1840), 30, + ACTIONS(1816), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -29658,8 +29088,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [12192] = 2, - ACTIONS(1842), 7, + [12110] = 2, + ACTIONS(1818), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -29667,7 +29097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1844), 30, + ACTIONS(1820), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -29698,17 +29128,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [12234] = 2, - ACTIONS(1980), 8, + [12152] = 2, + ACTIONS(1964), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, + anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1982), 29, + ACTIONS(1966), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -29723,9 +29153,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -29738,16 +29168,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [12276] = 2, - ACTIONS(1976), 7, + [12194] = 2, + ACTIONS(1960), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1978), 30, + ACTIONS(1962), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -29760,10 +29191,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -29778,18 +29208,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [12318] = 2, - ACTIONS(1913), 7, + [12236] = 2, + ACTIONS(1964), 8, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1915), 30, + ACTIONS(1966), 29, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29803,7 +29233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -29818,8 +29248,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [12360] = 2, - ACTIONS(1846), 7, + [12278] = 2, + ACTIONS(1822), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -29827,7 +29257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1848), 30, + ACTIONS(1824), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -29858,8 +29288,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [12402] = 2, - ACTIONS(1980), 7, + [12320] = 2, + ACTIONS(1960), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -29867,7 +29297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1982), 30, + ACTIONS(1962), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -29898,8 +29328,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [12444] = 2, - ACTIONS(1850), 7, + [12362] = 2, + ACTIONS(1826), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -29907,7 +29337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1852), 30, + ACTIONS(1828), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -29938,8 +29368,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [12486] = 2, - ACTIONS(1854), 7, + [12404] = 2, + ACTIONS(1830), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -29947,7 +29377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1856), 30, + ACTIONS(1832), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -29978,8 +29408,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [12528] = 2, - ACTIONS(1858), 7, + [12446] = 2, + ACTIONS(1834), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -29987,7 +29417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1860), 30, + ACTIONS(1836), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -30018,8 +29448,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [12570] = 2, - ACTIONS(1862), 7, + [12488] = 2, + ACTIONS(1838), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -30027,7 +29457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1864), 30, + ACTIONS(1840), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -30058,8 +29488,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [12612] = 2, - ACTIONS(1866), 7, + [12530] = 2, + ACTIONS(1842), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -30067,7 +29497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1868), 30, + ACTIONS(1844), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -30098,8 +29528,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [12654] = 2, - ACTIONS(1870), 7, + [12572] = 2, + ACTIONS(1846), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -30107,7 +29537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1872), 30, + ACTIONS(1848), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -30138,8 +29568,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [12696] = 2, - ACTIONS(1874), 7, + [12614] = 2, + ACTIONS(1850), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -30147,7 +29577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1876), 30, + ACTIONS(1852), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -30178,8 +29608,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [12738] = 2, - ACTIONS(1878), 7, + [12656] = 2, + ACTIONS(1854), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -30187,7 +29617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1880), 30, + ACTIONS(1856), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -30218,8 +29648,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [12780] = 2, - ACTIONS(1830), 7, + [12698] = 2, + ACTIONS(1858), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -30227,7 +29657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1832), 30, + ACTIONS(1860), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -30258,8 +29688,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [12822] = 2, - ACTIONS(1882), 7, + [12740] = 2, + ACTIONS(1862), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -30267,7 +29697,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1884), 30, + ACTIONS(1864), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -30298,8 +29728,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [12864] = 2, - ACTIONS(1976), 7, + [12782] = 2, + ACTIONS(1964), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -30307,7 +29737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1978), 30, + ACTIONS(1966), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -30319,8 +29749,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -30338,8 +29768,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [12906] = 2, - ACTIONS(1889), 7, + [12824] = 2, + ACTIONS(1869), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -30347,7 +29777,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1891), 30, + ACTIONS(1871), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -30378,8 +29808,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [12948] = 2, - ACTIONS(1893), 7, + [12866] = 2, + ACTIONS(1873), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -30387,7 +29817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1895), 30, + ACTIONS(1875), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -30418,8 +29848,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [12990] = 2, - ACTIONS(1897), 7, + [12908] = 2, + ACTIONS(1877), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -30427,7 +29857,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1899), 30, + ACTIONS(1879), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -30458,8 +29888,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [13032] = 2, - ACTIONS(1901), 7, + [12950] = 2, + ACTIONS(1881), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -30467,7 +29897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1903), 30, + ACTIONS(1883), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -30498,8 +29928,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [13074] = 2, - ACTIONS(1905), 7, + [12992] = 2, + ACTIONS(1885), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -30507,7 +29937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1907), 30, + ACTIONS(1887), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -30538,8 +29968,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [13116] = 2, - ACTIONS(1909), 7, + [13034] = 2, + ACTIONS(1889), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -30547,7 +29977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1911), 30, + ACTIONS(1891), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -30578,8 +30008,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [13158] = 2, - ACTIONS(1913), 7, + [13076] = 2, + ACTIONS(1893), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -30587,7 +30017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1915), 30, + ACTIONS(1895), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -30618,8 +30048,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [13200] = 2, - ACTIONS(1909), 7, + [13118] = 2, + ACTIONS(1960), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -30627,9 +30057,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1911), 30, + ACTIONS(1962), 30, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30640,6 +30069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -30658,8 +30088,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [13242] = 2, - ACTIONS(1980), 7, + [13160] = 2, + ACTIONS(1893), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -30667,8 +30097,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1982), 30, + ACTIONS(1895), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30679,7 +30110,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -30698,12 +30128,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [13284] = 4, + [13202] = 4, ACTIONS(49), 1, anon_sym_LBRACE, - ACTIONS(84), 1, + ACTIONS(93), 1, aux_sym_strong_end_token1, - ACTIONS(1697), 8, + ACTIONS(1683), 8, anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, @@ -30712,7 +30142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1692), 27, + ACTIONS(1678), 27, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -30740,8 +30170,8 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [13330] = 2, - ACTIONS(1976), 7, + [13248] = 2, + ACTIONS(1964), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -30749,7 +30179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1978), 30, + ACTIONS(1966), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -30760,8 +30190,8 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -30780,8 +30210,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [13372] = 2, - ACTIONS(1980), 7, + [13290] = 2, + ACTIONS(1960), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -30789,7 +30219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1982), 30, + ACTIONS(1962), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -30820,8 +30250,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [13414] = 2, - ACTIONS(1951), 7, + [13332] = 2, + ACTIONS(1964), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -30829,7 +30259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1953), 30, + ACTIONS(1966), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -30840,8 +30270,8 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -30860,19 +30290,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [13456] = 4, - ACTIONS(2002), 1, + [13374] = 4, + ACTIONS(1986), 1, aux_sym__text_token1, - STATE(439), 1, + STATE(437), 1, aux_sym__text, - ACTIONS(1752), 6, + ACTIONS(1730), 6, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - ACTIONS(1754), 29, + ACTIONS(1732), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -30902,8 +30332,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [13502] = 2, - ACTIONS(1943), 7, + [13420] = 2, + ACTIONS(1935), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -30911,9 +30341,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1945), 30, + ACTIONS(1937), 30, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30924,6 +30353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -30942,8 +30372,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [13544] = 2, - ACTIONS(1947), 7, + [13462] = 2, + ACTIONS(1808), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -30951,7 +30381,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1949), 30, + ACTIONS(1810), 30, sym__verbatim_begin, ts_builtin_sym_end, anon_sym_LBRACE_, @@ -30982,8 +30412,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [13586] = 2, - ACTIONS(1905), 7, + [13504] = 2, + ACTIONS(1923), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -30991,7 +30421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1907), 30, + ACTIONS(1925), 30, sym__verbatim_begin, ts_builtin_sym_end, anon_sym_LBRACE_, @@ -31022,8 +30452,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [13628] = 2, - ACTIONS(1901), 7, + [13546] = 2, + ACTIONS(1889), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -31031,7 +30461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1903), 30, + ACTIONS(1891), 30, sym__verbatim_begin, ts_builtin_sym_end, anon_sym_LBRACE_, @@ -31062,8 +30492,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [13670] = 2, - ACTIONS(1951), 7, + [13588] = 2, + ACTIONS(1885), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -31071,7 +30501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1953), 30, + ACTIONS(1887), 30, sym__verbatim_begin, ts_builtin_sym_end, anon_sym_LBRACE_, @@ -31102,8 +30532,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [13712] = 2, - ACTIONS(1826), 7, + [13630] = 2, + ACTIONS(1927), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -31111,7 +30541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1828), 30, + ACTIONS(1929), 30, sym__verbatim_begin, ts_builtin_sym_end, anon_sym_LBRACE_, @@ -31142,8 +30572,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [13754] = 3, - ACTIONS(2005), 1, + [13672] = 3, + ACTIONS(1989), 1, sym__verbatim_begin, ACTIONS(49), 9, anon_sym_LBRACE, @@ -31155,7 +30585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(84), 27, + ACTIONS(93), 27, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31183,8 +30613,8 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [13798] = 2, - ACTIONS(1920), 9, + [13716] = 2, + ACTIONS(1900), 9, anon_sym_LBRACE, anon_sym_STAR, anon_sym_BSLASH, @@ -31194,7 +30624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1922), 28, + ACTIONS(1902), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -31223,8 +30653,8 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [13840] = 2, - ACTIONS(1924), 9, + [13758] = 2, + ACTIONS(1904), 9, anon_sym_LBRACE, anon_sym_STAR, anon_sym_BSLASH, @@ -31234,7 +30664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1926), 28, + ACTIONS(1906), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -31263,12 +30693,12 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [13882] = 4, - ACTIONS(2008), 1, + [13800] = 4, + ACTIONS(1992), 1, anon_sym_LBRACE2, - STATE(455), 1, + STATE(453), 1, sym_comment, - ACTIONS(1930), 7, + ACTIONS(1910), 7, anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, @@ -31276,7 +30706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1928), 28, + ACTIONS(1908), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -31305,8 +30735,8 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [13928] = 2, - ACTIONS(1834), 7, + [13846] = 2, + ACTIONS(1881), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -31314,7 +30744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1836), 30, + ACTIONS(1883), 30, sym__verbatim_begin, ts_builtin_sym_end, anon_sym_LBRACE_, @@ -31345,8 +30775,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [13970] = 2, - ACTIONS(1897), 7, + [13888] = 2, + ACTIONS(1877), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -31354,7 +30784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1899), 30, + ACTIONS(1879), 30, sym__verbatim_begin, ts_builtin_sym_end, anon_sym_LBRACE_, @@ -31385,8 +30815,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [14012] = 2, - ACTIONS(1935), 9, + [13930] = 2, + ACTIONS(1915), 9, anon_sym_LBRACE, anon_sym_STAR, anon_sym_BSLASH, @@ -31396,7 +30826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1937), 28, + ACTIONS(1917), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -31425,8 +30855,8 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [14054] = 2, - ACTIONS(1939), 9, + [13972] = 2, + ACTIONS(1919), 9, anon_sym_LBRACE, anon_sym_STAR, anon_sym_BSLASH, @@ -31436,7 +30866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1941), 28, + ACTIONS(1921), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -31465,8 +30895,8 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [14096] = 2, - ACTIONS(1838), 7, + [14014] = 2, + ACTIONS(1931), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -31474,7 +30904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1840), 30, + ACTIONS(1933), 30, sym__verbatim_begin, ts_builtin_sym_end, anon_sym_LBRACE_, @@ -31503,10 +30933,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, + sym__whitespace1, + sym__newline, + [14056] = 2, + ACTIONS(1808), 9, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1810), 28, + sym__verbatim_begin, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + aux_sym_strong_end_token1, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, + sym__newline, + [14098] = 2, + ACTIONS(1923), 9, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + sym__whitespace1, + aux_sym__text_token1, + ACTIONS(1925), 28, + sym__verbatim_begin, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + aux_sym_strong_end_token1, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_symbol, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + anon_sym_PIPE, sym__newline, - [14138] = 2, - ACTIONS(1943), 9, + [14140] = 2, + ACTIONS(1927), 9, anon_sym_LBRACE, anon_sym_STAR, anon_sym_BSLASH, @@ -31516,7 +31026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1945), 28, + ACTIONS(1929), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -31545,8 +31055,8 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [14180] = 2, - ACTIONS(1947), 9, + [14182] = 2, + ACTIONS(1931), 9, anon_sym_LBRACE, anon_sym_STAR, anon_sym_BSLASH, @@ -31556,7 +31066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1949), 28, + ACTIONS(1933), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -31585,8 +31095,8 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [14222] = 2, - ACTIONS(1951), 9, + [14224] = 2, + ACTIONS(1935), 9, anon_sym_LBRACE, anon_sym_STAR, anon_sym_BSLASH, @@ -31596,7 +31106,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1953), 28, + ACTIONS(1937), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -31625,8 +31135,8 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [14264] = 2, - ACTIONS(1826), 9, + [14266] = 2, + ACTIONS(1814), 9, anon_sym_LBRACE, anon_sym_STAR, anon_sym_BSLASH, @@ -31636,7 +31146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1828), 28, + ACTIONS(1816), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -31665,8 +31175,8 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [14306] = 2, - ACTIONS(1834), 9, + [14308] = 2, + ACTIONS(1818), 9, anon_sym_LBRACE, anon_sym_STAR, anon_sym_BSLASH, @@ -31676,7 +31186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1836), 28, + ACTIONS(1820), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -31705,23 +31215,22 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [14348] = 2, - ACTIONS(1838), 9, + [14350] = 2, + ACTIONS(1873), 7, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1840), 28, + ACTIONS(1875), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -31744,24 +31253,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [14390] = 2, - ACTIONS(1842), 9, + [14392] = 2, + ACTIONS(1869), 7, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1844), 28, + ACTIONS(1871), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -31784,9 +31293,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [14432] = 2, - ACTIONS(1893), 7, + [14434] = 2, + ACTIONS(1935), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -31794,7 +31304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1895), 30, + ACTIONS(1937), 30, sym__verbatim_begin, ts_builtin_sym_end, anon_sym_LBRACE_, @@ -31825,22 +31335,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [14474] = 2, - ACTIONS(1889), 7, + [14476] = 2, + ACTIONS(1822), 9, anon_sym_LBRACE, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1891), 30, + ACTIONS(1824), 28, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -31863,27 +31374,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, - sym__newline, - [14516] = 3, - ACTIONS(2011), 1, - aux_sym_autolink_token1, - ACTIONS(84), 3, - sym__verbatim_begin, - sym__whitespace1, sym__newline, - ACTIONS(49), 33, + [14518] = 2, + ACTIONS(1814), 7, anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1816), 30, + sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, - anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, - sym_en_dash, - sym_backslash_escape, anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, @@ -31895,8 +31405,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LBRACK, - anon_sym_LBRACE2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -31905,9 +31413,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - aux_sym__text_token1, + sym__whitespace1, + sym__newline, [14560] = 2, - ACTIONS(1846), 9, + ACTIONS(1826), 9, anon_sym_LBRACE, anon_sym_STAR, anon_sym_BSLASH, @@ -31917,7 +31426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1848), 28, + ACTIONS(1828), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -31946,24 +31455,23 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [14602] = 4, - ACTIONS(1818), 1, + [14602] = 2, + ACTIONS(1830), 9, anon_sym_LBRACE, - STATE(628), 1, - sym_inline_attribute, - ACTIONS(1710), 6, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1708), 29, + ACTIONS(1832), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -31986,10 +31494,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [14648] = 2, - ACTIONS(1850), 9, + [14644] = 2, + ACTIONS(1834), 9, anon_sym_LBRACE, anon_sym_STAR, anon_sym_BSLASH, @@ -31999,7 +31506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1852), 28, + ACTIONS(1836), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32028,8 +31535,8 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [14690] = 2, - ACTIONS(1854), 9, + [14686] = 2, + ACTIONS(1838), 9, anon_sym_LBRACE, anon_sym_STAR, anon_sym_BSLASH, @@ -32039,7 +31546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1856), 28, + ACTIONS(1840), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32068,8 +31575,8 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [14732] = 2, - ACTIONS(1858), 9, + [14728] = 2, + ACTIONS(1842), 9, anon_sym_LBRACE, anon_sym_STAR, anon_sym_BSLASH, @@ -32079,7 +31586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1860), 28, + ACTIONS(1844), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32108,8 +31615,8 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [14774] = 2, - ACTIONS(1862), 9, + [14770] = 2, + ACTIONS(1846), 9, anon_sym_LBRACE, anon_sym_STAR, anon_sym_BSLASH, @@ -32119,7 +31626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1864), 28, + ACTIONS(1848), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32148,8 +31655,8 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [14816] = 2, - ACTIONS(1866), 9, + [14812] = 2, + ACTIONS(1850), 9, anon_sym_LBRACE, anon_sym_STAR, anon_sym_BSLASH, @@ -32159,7 +31666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1868), 28, + ACTIONS(1852), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32188,8 +31695,8 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [14858] = 2, - ACTIONS(1870), 9, + [14854] = 2, + ACTIONS(1854), 9, anon_sym_LBRACE, anon_sym_STAR, anon_sym_BSLASH, @@ -32199,7 +31706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1872), 28, + ACTIONS(1856), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32228,8 +31735,8 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [14900] = 2, - ACTIONS(1874), 9, + [14896] = 2, + ACTIONS(1858), 9, anon_sym_LBRACE, anon_sym_STAR, anon_sym_BSLASH, @@ -32239,7 +31746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1876), 28, + ACTIONS(1860), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32268,8 +31775,8 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [14942] = 2, - ACTIONS(1878), 9, + [14938] = 2, + ACTIONS(1862), 9, anon_sym_LBRACE, anon_sym_STAR, anon_sym_BSLASH, @@ -32279,7 +31786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1880), 28, + ACTIONS(1864), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32308,26 +31815,25 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [14984] = 2, - ACTIONS(1830), 9, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE2, - sym__whitespace1, - aux_sym__text_token1, - ACTIONS(1832), 28, + [14980] = 3, + ACTIONS(1995), 1, + aux_sym_autolink_token1, + ACTIONS(93), 3, sym__verbatim_begin, + sym__whitespace1, + sym__newline, + ACTIONS(49), 33, + anon_sym_LBRACE, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, + anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, + sym_en_dash, + sym_backslash_escape, anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, @@ -32339,6 +31845,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK, + anon_sym_LBRACE2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -32347,9 +31855,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__newline, - [15026] = 2, - ACTIONS(1882), 9, + aux_sym__text_token1, + [15024] = 2, + ACTIONS(1869), 9, anon_sym_LBRACE, anon_sym_STAR, anon_sym_BSLASH, @@ -32359,7 +31867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1884), 28, + ACTIONS(1871), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32388,22 +31896,23 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [15068] = 2, - ACTIONS(1842), 7, + [15066] = 2, + ACTIONS(1873), 9, anon_sym_LBRACE, + anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1844), 30, + ACTIONS(1875), 28, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - anon_sym_STAR, + aux_sym_strong_end_token1, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -32426,10 +31935,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [15110] = 2, - ACTIONS(1889), 9, + [15108] = 2, + ACTIONS(1877), 9, anon_sym_LBRACE, anon_sym_STAR, anon_sym_BSLASH, @@ -32439,7 +31947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1891), 28, + ACTIONS(1879), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32468,8 +31976,8 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [15152] = 2, - ACTIONS(1893), 9, + [15150] = 2, + ACTIONS(1881), 9, anon_sym_LBRACE, anon_sym_STAR, anon_sym_BSLASH, @@ -32479,7 +31987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1895), 28, + ACTIONS(1883), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32508,8 +32016,8 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [15194] = 2, - ACTIONS(1897), 9, + [15192] = 2, + ACTIONS(1885), 9, anon_sym_LBRACE, anon_sym_STAR, anon_sym_BSLASH, @@ -32519,7 +32027,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1899), 28, + ACTIONS(1887), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32548,8 +32056,8 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [15236] = 2, - ACTIONS(1901), 9, + [15234] = 2, + ACTIONS(1889), 9, anon_sym_LBRACE, anon_sym_STAR, anon_sym_BSLASH, @@ -32559,7 +32067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1903), 28, + ACTIONS(1891), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32588,8 +32096,8 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [15278] = 2, - ACTIONS(1905), 9, + [15276] = 2, + ACTIONS(1893), 9, anon_sym_LBRACE, anon_sym_STAR, anon_sym_BSLASH, @@ -32599,7 +32107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1907), 28, + ACTIONS(1895), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32628,23 +32136,24 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [15320] = 2, - ACTIONS(1909), 9, + [15318] = 4, + ACTIONS(1806), 1, anon_sym_LBRACE, - anon_sym_STAR, + STATE(630), 1, + sym_inline_attribute, + ACTIONS(1692), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1911), 28, + ACTIONS(1690), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -32667,24 +32176,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [15362] = 2, - ACTIONS(1913), 9, + [15364] = 2, + ACTIONS(1818), 7, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1915), 28, + ACTIONS(1820), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, @@ -32707,19 +32216,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [15404] = 3, - ACTIONS(2013), 1, - sym__non_whitespace_check, - ACTIONS(49), 7, + [15406] = 4, + ACTIONS(49), 1, anon_sym_LBRACE, + ACTIONS(93), 1, + sym_emphasis_end, + ACTIONS(1683), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(84), 29, + ACTIONS(1678), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32749,8 +32260,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [15448] = 2, - ACTIONS(1913), 7, + [15452] = 2, + ACTIONS(1862), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -32758,8 +32269,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1915), 30, + ACTIONS(1864), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32778,7 +32290,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -32789,23 +32300,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [15490] = 4, - ACTIONS(49), 1, + [15494] = 2, + ACTIONS(1858), 7, anon_sym_LBRACE, - ACTIONS(84), 1, - aux_sym_emphasis_end_token1, - ACTIONS(1697), 8, - anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1692), 27, + ACTIONS(1860), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -32830,9 +32338,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, [15536] = 2, - ACTIONS(1909), 7, + ACTIONS(1854), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -32840,8 +32349,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1911), 30, + ACTIONS(1856), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32860,7 +32370,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -32871,8 +32380,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [15578] = 2, - ACTIONS(1905), 7, + [15578] = 3, + ACTIONS(1997), 1, + sym__verbatim_begin, + ACTIONS(49), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -32880,8 +32391,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1907), 30, - sym__verbatim_begin, + ACTIONS(93), 29, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32900,7 +32411,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -32911,8 +32421,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [15620] = 2, - ACTIONS(1901), 7, + [15622] = 2, + ACTIONS(1900), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -32920,8 +32430,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1903), 30, + ACTIONS(1902), 30, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32940,7 +32451,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -32951,8 +32461,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [15662] = 2, - ACTIONS(1882), 7, + [15664] = 2, + ACTIONS(1904), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -32960,9 +32470,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1884), 30, + ACTIONS(1906), 30, sym__verbatim_begin, - ts_builtin_sym_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32991,8 +32501,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [15704] = 2, - ACTIONS(1897), 7, + [15706] = 2, + ACTIONS(1915), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -33000,8 +32510,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1899), 30, + ACTIONS(1917), 30, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33020,7 +32531,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -33031,8 +32541,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [15746] = 2, - ACTIONS(1893), 7, + [15748] = 2, + ACTIONS(1919), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -33040,8 +32550,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1895), 30, + ACTIONS(1921), 30, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33060,7 +32571,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -33071,8 +32581,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [15788] = 2, - ACTIONS(1889), 7, + [15790] = 2, + ACTIONS(1923), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -33080,8 +32590,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1891), 30, + ACTIONS(1925), 30, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33100,7 +32611,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -33111,8 +32621,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [15830] = 2, - ACTIONS(1830), 7, + [15832] = 2, + ACTIONS(1927), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -33120,9 +32630,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1832), 30, + ACTIONS(1929), 30, sym__verbatim_begin, - ts_builtin_sym_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33151,8 +32661,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [15872] = 2, - ACTIONS(1878), 7, + [15874] = 2, + ACTIONS(1931), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -33160,9 +32670,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1880), 30, + ACTIONS(1933), 30, sym__verbatim_begin, - ts_builtin_sym_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33191,8 +32701,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [15914] = 2, - ACTIONS(1882), 7, + [15916] = 2, + ACTIONS(1935), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -33200,8 +32710,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1884), 30, + ACTIONS(1937), 30, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33220,7 +32731,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -33231,22 +32741,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [15956] = 3, - ACTIONS(2015), 1, - sym__verbatim_begin, - ACTIONS(49), 9, + [15958] = 2, + ACTIONS(1814), 7, anon_sym_LBRACE, - anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(84), 27, + ACTIONS(1816), 30, + sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -33271,22 +32779,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, [16000] = 2, - ACTIONS(1920), 9, + ACTIONS(1818), 7, anon_sym_LBRACE, - anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1922), 28, + ACTIONS(1820), 30, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -33311,22 +32819,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, [16042] = 2, - ACTIONS(1924), 9, + ACTIONS(1850), 7, anon_sym_LBRACE, - anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1926), 28, + ACTIONS(1852), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -33351,22 +32859,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, [16084] = 2, - ACTIONS(1935), 9, + ACTIONS(1822), 7, anon_sym_LBRACE, - anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1937), 28, + ACTIONS(1824), 30, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -33391,22 +32899,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, [16126] = 2, - ACTIONS(1939), 9, + ACTIONS(1964), 7, anon_sym_LBRACE, - anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1941), 28, + ACTIONS(1966), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -33431,22 +32939,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, [16168] = 2, - ACTIONS(1943), 9, + ACTIONS(1826), 7, anon_sym_LBRACE, - anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1945), 28, + ACTIONS(1828), 30, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -33471,22 +32979,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, [16210] = 2, - ACTIONS(1947), 9, + ACTIONS(1830), 7, anon_sym_LBRACE, - anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1949), 28, + ACTIONS(1832), 30, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -33511,22 +33019,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, [16252] = 2, - ACTIONS(1951), 9, + ACTIONS(1834), 7, anon_sym_LBRACE, - anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1953), 28, + ACTIONS(1836), 30, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -33551,22 +33059,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, [16294] = 2, - ACTIONS(1834), 9, + ACTIONS(1838), 7, anon_sym_LBRACE, - anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1836), 28, + ACTIONS(1840), 30, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -33591,22 +33099,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, [16336] = 2, - ACTIONS(1838), 9, + ACTIONS(1842), 7, anon_sym_LBRACE, - anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1840), 28, + ACTIONS(1844), 30, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -33631,22 +33139,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, [16378] = 2, - ACTIONS(1842), 9, + ACTIONS(1846), 7, anon_sym_LBRACE, - anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1844), 28, + ACTIONS(1848), 30, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -33671,9 +33179,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, [16420] = 2, - ACTIONS(1874), 7, + ACTIONS(1850), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -33681,9 +33190,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1876), 30, + ACTIONS(1852), 30, sym__verbatim_begin, - ts_builtin_sym_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33713,20 +33222,19 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [16462] = 2, - ACTIONS(1846), 9, + ACTIONS(1854), 7, anon_sym_LBRACE, - anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1848), 28, + ACTIONS(1856), 30, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -33751,9 +33259,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, [16504] = 2, - ACTIONS(1980), 7, + ACTIONS(1858), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -33761,9 +33270,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1982), 30, + ACTIONS(1860), 30, sym__verbatim_begin, - ts_builtin_sym_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33793,20 +33302,19 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [16546] = 2, - ACTIONS(1850), 9, + ACTIONS(1862), 7, anon_sym_LBRACE, - anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1852), 28, + ACTIONS(1864), 30, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -33831,22 +33339,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, [16588] = 2, - ACTIONS(1854), 9, + ACTIONS(1960), 7, anon_sym_LBRACE, - anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1856), 28, + ACTIONS(1962), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -33871,22 +33379,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, [16630] = 2, - ACTIONS(1858), 9, + ACTIONS(1869), 7, anon_sym_LBRACE, - anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1860), 28, + ACTIONS(1871), 30, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -33911,22 +33419,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, [16672] = 2, - ACTIONS(1862), 9, + ACTIONS(1873), 7, anon_sym_LBRACE, - anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1864), 28, + ACTIONS(1875), 30, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -33951,22 +33459,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, [16714] = 2, - ACTIONS(1866), 9, + ACTIONS(1877), 7, anon_sym_LBRACE, - anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1868), 28, + ACTIONS(1879), 30, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -33991,22 +33499,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, [16756] = 2, - ACTIONS(1870), 9, + ACTIONS(1881), 7, anon_sym_LBRACE, - anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1872), 28, + ACTIONS(1883), 30, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -34031,22 +33539,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, [16798] = 2, - ACTIONS(1874), 9, + ACTIONS(1885), 7, anon_sym_LBRACE, - anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1876), 28, + ACTIONS(1887), 30, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -34071,22 +33579,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, [16840] = 2, - ACTIONS(1878), 9, + ACTIONS(1889), 7, anon_sym_LBRACE, - anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1880), 28, + ACTIONS(1891), 30, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -34111,22 +33619,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, [16882] = 2, - ACTIONS(1830), 9, + ACTIONS(1893), 7, anon_sym_LBRACE, - anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1832), 28, + ACTIONS(1895), 30, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -34151,22 +33659,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, [16924] = 2, - ACTIONS(1882), 9, + ACTIONS(1846), 7, anon_sym_LBRACE, - anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1884), 28, + ACTIONS(1848), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -34191,9 +33699,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, [16966] = 2, - ACTIONS(1976), 7, + ACTIONS(1842), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -34201,7 +33710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1978), 30, + ACTIONS(1844), 30, sym__verbatim_begin, ts_builtin_sym_end, anon_sym_LBRACE_, @@ -34232,21 +33741,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [17008] = 2, - ACTIONS(1889), 9, + [17008] = 4, + ACTIONS(49), 1, anon_sym_LBRACE, - anon_sym__, + ACTIONS(93), 1, + anon_sym_RBRACK2, + ACTIONS(1683), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1891), 28, + ACTIONS(1678), 29, sym__verbatim_begin, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -34271,22 +33781,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [17050] = 2, - ACTIONS(1893), 9, + [17054] = 2, + ACTIONS(1838), 7, anon_sym_LBRACE, - anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1895), 28, + ACTIONS(1840), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -34311,22 +33821,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [17092] = 2, - ACTIONS(1897), 9, + [17096] = 2, + ACTIONS(1834), 7, anon_sym_LBRACE, - anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1899), 28, + ACTIONS(1836), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -34351,22 +33861,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [17134] = 2, - ACTIONS(1901), 9, + [17138] = 2, + ACTIONS(1830), 7, anon_sym_LBRACE, - anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1903), 28, + ACTIONS(1832), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -34391,22 +33901,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [17176] = 2, - ACTIONS(1905), 9, + [17180] = 2, + ACTIONS(1826), 7, anon_sym_LBRACE, - anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1907), 28, + ACTIONS(1828), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -34431,22 +33941,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [17218] = 2, - ACTIONS(1909), 9, + [17222] = 3, + ACTIONS(2000), 1, + sym__verbatim_begin, + ACTIONS(49), 7, anon_sym_LBRACE, - anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1911), 28, - sym__verbatim_begin, + ACTIONS(93), 29, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -34463,6 +33973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -34471,22 +33982,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [17260] = 2, - ACTIONS(1913), 9, + [17266] = 2, + ACTIONS(1900), 7, anon_sym_LBRACE, - anon_sym__, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1915), 28, + ACTIONS(1902), 30, sym__verbatim_begin, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -34503,6 +34013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -34511,9 +34022,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [17302] = 2, - ACTIONS(1870), 7, + [17308] = 2, + ACTIONS(1904), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -34521,9 +34033,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1872), 30, + ACTIONS(1906), 30, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -34542,6 +34053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -34552,18 +34064,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [17344] = 2, - ACTIONS(1866), 7, - anon_sym_LBRACE, + [17350] = 4, + ACTIONS(2003), 1, + anon_sym_LBRACE2, + STATE(534), 1, + sym_comment, + ACTIONS(1910), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1868), 30, + ACTIONS(1908), 30, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -34582,6 +34095,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -34592,19 +34106,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [17386] = 4, - ACTIONS(49), 1, + [17396] = 2, + ACTIONS(1915), 7, anon_sym_LBRACE, - ACTIONS(84), 1, - anon_sym_RBRACK2, - ACTIONS(1697), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1692), 29, + ACTIONS(1917), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -34624,6 +34135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -34634,8 +34146,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [17432] = 2, - ACTIONS(1862), 7, + [17438] = 2, + ACTIONS(1919), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -34643,9 +34155,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1864), 30, + ACTIONS(1921), 30, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -34664,6 +34175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -34674,8 +34186,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [17474] = 2, - ACTIONS(1858), 7, + [17480] = 2, + ACTIONS(1808), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -34683,9 +34195,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1860), 30, + ACTIONS(1810), 30, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -34704,6 +34215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -34714,8 +34226,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [17516] = 2, - ACTIONS(1854), 7, + [17522] = 2, + ACTIONS(1923), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -34723,9 +34235,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1856), 30, + ACTIONS(1925), 30, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -34744,6 +34255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -34754,8 +34266,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [17558] = 2, - ACTIONS(1850), 7, + [17564] = 2, + ACTIONS(1927), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -34763,9 +34275,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1852), 30, + ACTIONS(1929), 30, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -34784,6 +34295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -34794,10 +34306,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [17600] = 3, - ACTIONS(2018), 1, - sym__verbatim_begin, - ACTIONS(49), 7, + [17606] = 2, + ACTIONS(1931), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -34805,7 +34315,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(84), 29, + ACTIONS(1933), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -34835,8 +34346,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [17644] = 2, - ACTIONS(1920), 7, + [17648] = 2, + ACTIONS(1935), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -34844,7 +34355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1922), 30, + ACTIONS(1937), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -34875,8 +34386,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [17686] = 2, - ACTIONS(1924), 7, + [17690] = 2, + ACTIONS(1814), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -34884,7 +34395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1926), 30, + ACTIONS(1816), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -34915,18 +34426,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [17728] = 4, - ACTIONS(2021), 1, - anon_sym_LBRACE2, - STATE(543), 1, - sym_comment, - ACTIONS(1930), 5, + [17732] = 2, + ACTIONS(1818), 7, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1928), 30, + ACTIONS(1820), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -34957,16 +34466,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [17774] = 2, - ACTIONS(1935), 7, - anon_sym_LBRACE, + [17774] = 4, + ACTIONS(2008), 1, + anon_sym_SPACE, + STATE(541), 1, + aux_sym_strong_begin_repeat1, + ACTIONS(2011), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + sym__whitespace1, aux_sym__text_token1, - ACTIONS(1937), 30, + ACTIONS(2006), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -34986,7 +34499,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -34995,10 +34507,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, - sym__whitespace1, sym__newline, - [17816] = 2, - ACTIONS(1939), 7, + [17820] = 2, + ACTIONS(1822), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -35006,8 +34517,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1941), 30, + ACTIONS(1824), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -35026,7 +34538,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -35037,8 +34548,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [17858] = 2, - ACTIONS(1943), 7, + [17862] = 2, + ACTIONS(1822), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -35046,7 +34557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1945), 30, + ACTIONS(1824), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -35077,8 +34588,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [17900] = 2, - ACTIONS(1947), 7, + [17904] = 2, + ACTIONS(1826), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -35086,7 +34597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1949), 30, + ACTIONS(1828), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -35117,8 +34628,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [17942] = 2, - ACTIONS(1951), 7, + [17946] = 2, + ACTIONS(1830), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -35126,7 +34637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1953), 30, + ACTIONS(1832), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -35157,8 +34668,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [17984] = 2, - ACTIONS(1826), 7, + [17988] = 2, + ACTIONS(1834), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -35166,7 +34677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1828), 30, + ACTIONS(1836), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -35197,8 +34708,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [18026] = 2, - ACTIONS(1834), 7, + [18030] = 2, + ACTIONS(1838), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -35206,7 +34717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1836), 30, + ACTIONS(1840), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -35237,8 +34748,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [18068] = 2, - ACTIONS(1838), 7, + [18072] = 2, + ACTIONS(1842), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -35246,7 +34757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1840), 30, + ACTIONS(1844), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -35277,8 +34788,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [18110] = 2, - ACTIONS(1842), 7, + [18114] = 2, + ACTIONS(1846), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -35286,7 +34797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1844), 30, + ACTIONS(1848), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -35317,20 +34828,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [18152] = 4, - ACTIONS(2026), 1, - anon_sym_SPACE, - STATE(550), 1, - aux_sym_strong_begin_repeat1, - ACTIONS(2029), 7, + [18156] = 2, + ACTIONS(1850), 7, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(2024), 28, + ACTIONS(1852), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -35350,6 +34857,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -35358,9 +34866,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, [18198] = 2, - ACTIONS(1846), 7, + ACTIONS(1854), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -35368,9 +34877,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1848), 30, + ACTIONS(1856), 30, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -35389,6 +34897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -35400,7 +34909,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [18240] = 2, - ACTIONS(1846), 7, + ACTIONS(1858), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -35408,7 +34917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1848), 30, + ACTIONS(1860), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -35440,7 +34949,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [18282] = 2, - ACTIONS(1850), 7, + ACTIONS(1862), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -35448,7 +34957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1852), 30, + ACTIONS(1864), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -35480,7 +34989,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [18324] = 2, - ACTIONS(1854), 7, + ACTIONS(1869), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -35488,7 +34997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1856), 30, + ACTIONS(1871), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -35520,7 +35029,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [18366] = 2, - ACTIONS(1858), 7, + ACTIONS(1873), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -35528,7 +35037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1860), 30, + ACTIONS(1875), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -35560,7 +35069,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [18408] = 2, - ACTIONS(1862), 7, + ACTIONS(1877), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -35568,7 +35077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1864), 30, + ACTIONS(1879), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -35600,7 +35109,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [18450] = 2, - ACTIONS(1866), 7, + ACTIONS(1881), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -35608,7 +35117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1868), 30, + ACTIONS(1883), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -35640,7 +35149,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [18492] = 2, - ACTIONS(1870), 7, + ACTIONS(1885), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -35648,7 +35157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1872), 30, + ACTIONS(1887), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -35680,7 +35189,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [18534] = 2, - ACTIONS(1874), 7, + ACTIONS(1889), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -35688,7 +35197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1876), 30, + ACTIONS(1891), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -35720,7 +35229,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [18576] = 2, - ACTIONS(1878), 7, + ACTIONS(1893), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -35728,7 +35237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1880), 30, + ACTIONS(1895), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -35760,7 +35269,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [18618] = 2, - ACTIONS(1850), 7, + ACTIONS(1818), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -35768,7 +35277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1852), 29, + ACTIONS(1820), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -35799,14 +35308,15 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [18659] = 2, - ACTIONS(1980), 6, + ACTIONS(1960), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1982), 30, + ACTIONS(1962), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -35823,9 +35333,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -35837,19 +35346,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [18700] = 4, - ACTIONS(2031), 1, - anon_sym_LBRACE2, - STATE(608), 1, - sym_comment, - ACTIONS(1930), 5, + [18700] = 2, + ACTIONS(1964), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1928), 29, + ACTIONS(1966), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -35878,17 +35385,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [18745] = 2, - ACTIONS(2036), 6, + [18741] = 4, + ACTIONS(2013), 1, + anon_sym_LBRACE2, + STATE(606), 1, + sym_comment, + ACTIONS(1910), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(2034), 30, + ACTIONS(1908), 29, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -35918,16 +35427,16 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [18786] = 2, - ACTIONS(1980), 6, + ACTIONS(1960), 7, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1982), 30, + ACTIONS(1962), 29, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -35957,14 +35466,14 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [18827] = 2, - ACTIONS(1976), 6, + ACTIONS(1960), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1978), 30, + ACTIONS(1962), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -35996,15 +35505,16 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [18868] = 2, - ACTIONS(2036), 6, + ACTIONS(1964), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(2034), 30, + ACTIONS(1966), 30, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -36016,7 +35526,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -36035,19 +35544,18 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [18909] = 2, - ACTIONS(2036), 8, - anon_sym__, + ACTIONS(1964), 7, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(2034), 28, + ACTIONS(1966), 29, sym__verbatim_begin, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -36072,21 +35580,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, [18950] = 2, - ACTIONS(1980), 8, - anon_sym__, + ACTIONS(2018), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1982), 28, + ACTIONS(2016), 30, sym__verbatim_begin, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -36096,6 +35603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -36111,16 +35619,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, [18991] = 2, - ACTIONS(1980), 6, + ACTIONS(1960), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1982), 30, + ACTIONS(1962), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -36131,9 +35640,9 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -36152,14 +35661,14 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [19032] = 2, - ACTIONS(1976), 6, + ACTIONS(1964), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1978), 30, + ACTIONS(1966), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -36190,18 +35699,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [19073] = 4, - ACTIONS(2038), 1, - anon_sym_LBRACE2, - STATE(503), 1, - sym_comment, - ACTIONS(1930), 5, + [19073] = 2, + ACTIONS(1960), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1928), 29, + ACTIONS(1962), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -36214,6 +35720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_DASH_RBRACE, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, @@ -36231,15 +35738,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [19118] = 2, - ACTIONS(1980), 6, + [19114] = 2, + ACTIONS(2018), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1982), 30, + ACTIONS(2016), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -36270,15 +35777,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [19159] = 2, - ACTIONS(2036), 6, + [19155] = 2, + ACTIONS(2018), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(2034), 30, + ACTIONS(2016), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -36295,10 +35803,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -36309,8 +35816,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [19200] = 2, - ACTIONS(1980), 7, + [19196] = 2, + ACTIONS(1960), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, @@ -36318,7 +35825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1982), 29, + ACTIONS(1962), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -36348,16 +35855,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [19241] = 2, - ACTIONS(1976), 7, - anon_sym_LBRACE, + [19237] = 2, + ACTIONS(1964), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1978), 29, + ACTIONS(1966), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -36374,7 +35881,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE, + anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -36387,16 +35894,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [19282] = 2, - ACTIONS(2036), 6, + [19278] = 2, + ACTIONS(2018), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(2034), 30, + ACTIONS(2016), 30, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -36407,7 +35915,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, @@ -36426,17 +35933,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [19323] = 2, - ACTIONS(1980), 7, - anon_sym_LBRACE, + [19319] = 2, + ACTIONS(1960), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1982), 29, + ACTIONS(1962), 30, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -36465,17 +35972,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [19364] = 2, - ACTIONS(1976), 6, + [19360] = 2, + ACTIONS(2018), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1978), 30, + ACTIONS(2016), 29, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -36489,7 +35996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -36504,20 +36011,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [19405] = 2, - ACTIONS(1976), 8, - anon_sym__, + [19401] = 2, + ACTIONS(2018), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1978), 28, + ACTIONS(2016), 30, sym__verbatim_begin, anon_sym_LBRACE_, - aux_sym_emphasis_end_token1, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -36534,6 +36039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -36542,23 +36048,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [19446] = 4, - ACTIONS(2041), 1, - anon_sym__, - ACTIONS(2044), 1, - aux_sym_emphasis_end_token1, - ACTIONS(1930), 7, + [19442] = 2, + ACTIONS(2018), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1928), 27, + ACTIONS(2016), 30, sym__verbatim_begin, anon_sym_LBRACE_, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -36566,6 +36069,7 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -36583,16 +36087,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [19491] = 2, - ACTIONS(1976), 6, + [19483] = 3, + ACTIONS(2020), 1, + sym_emphasis_end, + ACTIONS(1910), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1978), 30, + ACTIONS(1908), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -36603,7 +36110,6 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -36623,15 +36129,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [19532] = 2, - ACTIONS(1980), 6, + [19526] = 2, + ACTIONS(1964), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1982), 30, + ACTIONS(1966), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -36642,12 +36149,11 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET, + anon_sym_CARET_RBRACE, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -36662,16 +36168,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [19573] = 2, - ACTIONS(2036), 7, + [19567] = 2, + ACTIONS(1964), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(2034), 29, + ACTIONS(1966), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -36683,12 +36188,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, + anon_sym_PLUS_RBRACE, anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -36701,16 +36207,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [19614] = 2, - ACTIONS(1976), 7, + [19608] = 2, + ACTIONS(2018), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1978), 29, + ACTIONS(2016), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -36725,10 +36230,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -36740,16 +36246,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [19655] = 2, - ACTIONS(1976), 7, + [19649] = 4, + ACTIONS(2022), 1, + anon_sym_LBRACE2, + STATE(216), 1, + sym_comment, + ACTIONS(1910), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1978), 29, + ACTIONS(1908), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -36766,7 +36274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -36779,16 +36287,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [19696] = 2, - ACTIONS(2036), 6, + [19694] = 2, + ACTIONS(1960), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(2034), 30, + ACTIONS(1962), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -36798,7 +36307,6 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -36818,15 +36326,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [19737] = 2, - ACTIONS(2036), 6, + [19735] = 3, + ACTIONS(49), 1, + anon_sym_LBRACE, + ACTIONS(1683), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(2034), 30, + ACTIONS(1678), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -36845,7 +36355,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -36858,14 +36367,14 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [19778] = 2, - ACTIONS(1976), 6, + ACTIONS(1964), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1978), 30, + ACTIONS(1966), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -36896,17 +36405,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [19819] = 3, - ACTIONS(49), 1, - anon_sym_LBRACE, - ACTIONS(1697), 6, + [19819] = 2, + ACTIONS(1960), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1692), 29, + ACTIONS(1962), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -36925,6 +36432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -36936,8 +36444,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [19862] = 2, - ACTIONS(1976), 8, + [19860] = 2, + ACTIONS(1960), 8, anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, @@ -36946,7 +36454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1978), 28, + ACTIONS(1962), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -36975,8 +36483,8 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [19903] = 2, - ACTIONS(1980), 8, + [19901] = 2, + ACTIONS(1964), 8, anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, @@ -36985,7 +36493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(1982), 28, + ACTIONS(1966), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -37014,16 +36522,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [19944] = 2, - ACTIONS(1980), 7, + [19942] = 2, + ACTIONS(1893), 7, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1982), 29, + ACTIONS(1895), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -37040,7 +36548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, + anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -37053,8 +36561,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [19985] = 2, - ACTIONS(2036), 8, + [19983] = 2, + ACTIONS(2018), 8, anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, @@ -37063,7 +36571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, sym__whitespace1, aux_sym__text_token1, - ACTIONS(2034), 28, + ACTIONS(2016), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -37092,17 +36600,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, anon_sym_PIPE, sym__newline, - [20026] = 2, - ACTIONS(1913), 7, - anon_sym_LBRACE, + [20024] = 2, + ACTIONS(2018), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1915), 29, + ACTIONS(2016), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -37131,16 +36639,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [20067] = 2, - ACTIONS(1909), 7, - anon_sym_LBRACE, + [20065] = 3, + ACTIONS(2025), 1, + sym_emphasis_end, + ACTIONS(1910), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1911), 29, + ACTIONS(1908), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -37171,7 +36680,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [20108] = 2, - ACTIONS(1905), 7, + ACTIONS(1889), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -37179,7 +36688,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1907), 29, + ACTIONS(1891), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -37209,22 +36718,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [20149] = 4, - ACTIONS(2046), 1, - anon_sym__, - ACTIONS(2049), 1, - aux_sym_emphasis_end_token1, - ACTIONS(1930), 7, + [20149] = 2, + ACTIONS(1885), 7, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1928), 27, + ACTIONS(1887), 29, sym__verbatim_begin, anon_sym_LBRACE_, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, sym_quotation_marks, @@ -37249,9 +36755,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, anon_sym_PIPE, + sym__whitespace1, sym__newline, - [20194] = 2, - ACTIONS(1901), 7, + [20190] = 3, + ACTIONS(2027), 1, + sym__verbatim_begin, + ACTIONS(49), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -37259,8 +36768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1903), 29, - sym__verbatim_begin, + ACTIONS(93), 28, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -37289,16 +36797,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [20235] = 2, - ACTIONS(2036), 7, + [20233] = 2, + ACTIONS(1900), 7, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(2034), 29, + ACTIONS(1902), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -37313,7 +36821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, anon_sym_LBRACK_CARET, @@ -37328,10 +36836,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [20276] = 3, - ACTIONS(2051), 1, - sym__verbatim_begin, - ACTIONS(49), 7, + [20274] = 2, + ACTIONS(1904), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -37339,7 +36845,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(84), 28, + ACTIONS(1906), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -37368,8 +36875,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [20319] = 2, - ACTIONS(1920), 7, + [20315] = 2, + ACTIONS(1881), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -37377,7 +36884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1922), 29, + ACTIONS(1883), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -37407,8 +36914,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [20360] = 2, - ACTIONS(1924), 7, + [20356] = 2, + ACTIONS(1915), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -37416,7 +36923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1926), 29, + ACTIONS(1917), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -37446,8 +36953,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [20401] = 2, - ACTIONS(1897), 7, + [20397] = 2, + ACTIONS(1919), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -37455,7 +36962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1899), 29, + ACTIONS(1921), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -37485,8 +36992,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [20442] = 2, - ACTIONS(1935), 7, + [20438] = 2, + ACTIONS(1877), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -37494,7 +37001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1937), 29, + ACTIONS(1879), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -37524,8 +37031,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [20483] = 2, - ACTIONS(1939), 7, + [20479] = 2, + ACTIONS(1808), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -37533,7 +37040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1941), 29, + ACTIONS(1810), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -37563,8 +37070,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [20524] = 2, - ACTIONS(1893), 7, + [20520] = 2, + ACTIONS(1923), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -37572,7 +37079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1895), 29, + ACTIONS(1925), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -37602,8 +37109,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [20565] = 2, - ACTIONS(1943), 7, + [20561] = 2, + ACTIONS(1927), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -37611,7 +37118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1945), 29, + ACTIONS(1929), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -37641,8 +37148,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [20606] = 2, - ACTIONS(1947), 7, + [20602] = 2, + ACTIONS(1931), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -37650,7 +37157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1949), 29, + ACTIONS(1933), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -37680,8 +37187,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [20647] = 2, - ACTIONS(1951), 7, + [20643] = 2, + ACTIONS(1935), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -37689,7 +37196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1953), 29, + ACTIONS(1937), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -37719,8 +37226,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [20688] = 2, - ACTIONS(1826), 7, + [20684] = 2, + ACTIONS(1814), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -37728,7 +37235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1828), 29, + ACTIONS(1816), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -37758,8 +37265,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [20729] = 2, - ACTIONS(1834), 7, + [20725] = 2, + ACTIONS(1873), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -37767,7 +37274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1836), 29, + ACTIONS(1875), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -37797,16 +37304,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [20770] = 2, - ACTIONS(1838), 7, - anon_sym_LBRACE, + [20766] = 2, + ACTIONS(1964), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1840), 29, + ACTIONS(1966), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -37817,6 +37323,7 @@ static const uint16_t ts_small_parse_table[] = { sym_em_dash, anon_sym_LT, anon_sym_LBRACE_EQ, + anon_sym_EQ_RBRACE, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_symbol, @@ -37836,8 +37343,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [20811] = 2, - ACTIONS(1842), 7, + [20807] = 2, + ACTIONS(1869), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -37845,7 +37352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1844), 29, + ACTIONS(1871), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -37875,8 +37382,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [20852] = 2, - ACTIONS(1889), 7, + [20848] = 2, + ACTIONS(1822), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -37884,7 +37391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1891), 29, + ACTIONS(1824), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -37914,15 +37421,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [20893] = 2, - ACTIONS(1976), 6, + [20889] = 2, + ACTIONS(1964), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1978), 30, + ACTIONS(1966), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -37953,8 +37460,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [20934] = 2, - ACTIONS(1846), 7, + [20930] = 2, + ACTIONS(1826), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -37962,7 +37469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1848), 29, + ACTIONS(1828), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -37992,15 +37499,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [20975] = 2, - ACTIONS(1980), 6, + [20971] = 2, + ACTIONS(1830), 7, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1982), 30, + ACTIONS(1832), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -38020,7 +37528,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -38031,8 +37538,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [21016] = 2, - ACTIONS(1882), 7, + [21012] = 2, + ACTIONS(1834), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -38040,7 +37547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1884), 29, + ACTIONS(1836), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -38070,8 +37577,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [21057] = 2, - ACTIONS(1854), 7, + [21053] = 2, + ACTIONS(1838), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -38079,7 +37586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1856), 29, + ACTIONS(1840), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -38109,8 +37616,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [21098] = 2, - ACTIONS(1858), 7, + [21094] = 2, + ACTIONS(1842), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -38118,7 +37625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1860), 29, + ACTIONS(1844), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -38148,8 +37655,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [21139] = 2, - ACTIONS(1862), 7, + [21135] = 2, + ACTIONS(1846), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -38157,7 +37664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1864), 29, + ACTIONS(1848), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -38187,8 +37694,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [21180] = 2, - ACTIONS(1866), 7, + [21176] = 2, + ACTIONS(1850), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -38196,7 +37703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1868), 29, + ACTIONS(1852), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -38226,8 +37733,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [21221] = 2, - ACTIONS(1870), 7, + [21217] = 2, + ACTIONS(1854), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -38235,7 +37742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1872), 29, + ACTIONS(1856), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -38265,8 +37772,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [21262] = 2, - ACTIONS(1874), 7, + [21258] = 2, + ACTIONS(1858), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -38274,7 +37781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1876), 29, + ACTIONS(1860), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -38304,8 +37811,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [21303] = 2, - ACTIONS(1878), 7, + [21299] = 2, + ACTIONS(1862), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -38313,7 +37820,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1880), 29, + ACTIONS(1864), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -38343,16 +37850,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [21344] = 2, - ACTIONS(1830), 7, - anon_sym_LBRACE, + [21340] = 2, + ACTIONS(1960), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1832), 29, + ACTIONS(1962), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -38372,6 +37878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -38382,15 +37889,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [21385] = 2, - ACTIONS(2036), 6, + [21381] = 2, + ACTIONS(1964), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(2034), 29, + ACTIONS(1966), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -38420,15 +37927,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [21425] = 2, - ACTIONS(1976), 6, + [21421] = 2, + ACTIONS(1960), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1978), 29, + ACTIONS(1962), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -38458,15 +37965,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [21465] = 2, - ACTIONS(1980), 6, + [21461] = 2, + ACTIONS(2018), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1982), 29, + ACTIONS(2016), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -38496,998 +38003,998 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace1, sym__newline, - [21505] = 9, - ACTIONS(2054), 1, + [21501] = 9, + ACTIONS(2030), 1, anon_sym_RBRACE, - ACTIONS(2056), 1, + ACTIONS(2032), 1, sym__id, - ACTIONS(2058), 1, + ACTIONS(2034), 1, anon_sym_PERCENT, - ACTIONS(2062), 1, + ACTIONS(2038), 1, anon_sym_DOT, - STATE(637), 1, + STATE(642), 1, aux_sym_inline_attribute_repeat1, STATE(677), 1, sym__comment_with_newline, - STATE(1006), 1, + STATE(871), 1, sym_key, - STATE(678), 2, + STATE(676), 2, sym_class, sym_key_value, - ACTIONS(2060), 3, + ACTIONS(2036), 3, sym__whitespace1, sym__newline, sym_identifier, - [21536] = 9, - ACTIONS(2056), 1, + [21532] = 9, + ACTIONS(2032), 1, sym__id, - ACTIONS(2058), 1, + ACTIONS(2034), 1, anon_sym_PERCENT, - ACTIONS(2062), 1, + ACTIONS(2038), 1, anon_sym_DOT, - ACTIONS(2064), 1, + ACTIONS(2040), 1, anon_sym_RBRACE, - STATE(637), 1, + STATE(634), 1, aux_sym_inline_attribute_repeat1, STATE(677), 1, sym__comment_with_newline, - STATE(1006), 1, + STATE(871), 1, sym_key, - STATE(678), 2, + STATE(676), 2, sym_class, sym_key_value, - ACTIONS(2060), 3, + ACTIONS(2036), 3, sym__whitespace1, sym__newline, sym_identifier, - [21567] = 9, - ACTIONS(2056), 1, + [21563] = 9, + ACTIONS(2032), 1, sym__id, - ACTIONS(2058), 1, + ACTIONS(2034), 1, anon_sym_PERCENT, - ACTIONS(2062), 1, + ACTIONS(2038), 1, anon_sym_DOT, - ACTIONS(2066), 1, + ACTIONS(2042), 1, anon_sym_RBRACE, - STATE(637), 1, + STATE(635), 1, aux_sym_inline_attribute_repeat1, STATE(677), 1, sym__comment_with_newline, - STATE(1006), 1, + STATE(871), 1, sym_key, - STATE(678), 2, + STATE(676), 2, sym_class, sym_key_value, - ACTIONS(2060), 3, + ACTIONS(2036), 3, sym__whitespace1, sym__newline, sym_identifier, - [21598] = 9, - ACTIONS(2056), 1, + [21594] = 9, + ACTIONS(2044), 1, + anon_sym_RBRACE, + ACTIONS(2046), 1, sym__id, - ACTIONS(2058), 1, + ACTIONS(2049), 1, anon_sym_PERCENT, - ACTIONS(2062), 1, + ACTIONS(2055), 1, anon_sym_DOT, - ACTIONS(2068), 1, - anon_sym_RBRACE, - STATE(637), 1, + STATE(634), 1, aux_sym_inline_attribute_repeat1, STATE(677), 1, sym__comment_with_newline, - STATE(1006), 1, + STATE(871), 1, sym_key, - STATE(678), 2, + STATE(676), 2, sym_class, sym_key_value, - ACTIONS(2060), 3, + ACTIONS(2052), 3, sym__whitespace1, sym__newline, sym_identifier, - [21629] = 9, - ACTIONS(2056), 1, + [21625] = 9, + ACTIONS(2032), 1, sym__id, - ACTIONS(2058), 1, + ACTIONS(2034), 1, anon_sym_PERCENT, - ACTIONS(2062), 1, + ACTIONS(2038), 1, anon_sym_DOT, - ACTIONS(2070), 1, + ACTIONS(2058), 1, anon_sym_RBRACE, - STATE(637), 1, + STATE(634), 1, aux_sym_inline_attribute_repeat1, STATE(677), 1, sym__comment_with_newline, - STATE(1006), 1, + STATE(871), 1, sym_key, - STATE(678), 2, + STATE(676), 2, sym_class, sym_key_value, - ACTIONS(2060), 3, + ACTIONS(2036), 3, sym__whitespace1, sym__newline, sym_identifier, - [21660] = 9, - ACTIONS(2056), 1, + [21656] = 9, + ACTIONS(2032), 1, sym__id, - ACTIONS(2058), 1, + ACTIONS(2034), 1, anon_sym_PERCENT, - ACTIONS(2062), 1, + ACTIONS(2038), 1, anon_sym_DOT, - ACTIONS(2072), 1, + ACTIONS(2060), 1, anon_sym_RBRACE, - STATE(641), 1, + STATE(634), 1, aux_sym_inline_attribute_repeat1, STATE(677), 1, sym__comment_with_newline, - STATE(1006), 1, + STATE(871), 1, sym_key, - STATE(678), 2, + STATE(676), 2, sym_class, sym_key_value, - ACTIONS(2060), 3, + ACTIONS(2036), 3, sym__whitespace1, sym__newline, sym_identifier, - [21691] = 9, - ACTIONS(2074), 1, - anon_sym_RBRACE, - ACTIONS(2076), 1, + [21687] = 9, + ACTIONS(2032), 1, sym__id, - ACTIONS(2079), 1, + ACTIONS(2034), 1, anon_sym_PERCENT, - ACTIONS(2085), 1, + ACTIONS(2038), 1, anon_sym_DOT, - STATE(637), 1, + ACTIONS(2062), 1, + anon_sym_RBRACE, + STATE(639), 1, aux_sym_inline_attribute_repeat1, STATE(677), 1, sym__comment_with_newline, - STATE(1006), 1, + STATE(871), 1, sym_key, - STATE(678), 2, + STATE(676), 2, sym_class, sym_key_value, - ACTIONS(2082), 3, + ACTIONS(2036), 3, sym__whitespace1, sym__newline, sym_identifier, - [21722] = 9, - ACTIONS(2056), 1, + [21718] = 9, + ACTIONS(2032), 1, sym__id, - ACTIONS(2058), 1, + ACTIONS(2034), 1, anon_sym_PERCENT, - ACTIONS(2062), 1, + ACTIONS(2038), 1, anon_sym_DOT, - ACTIONS(2088), 1, + ACTIONS(2064), 1, anon_sym_RBRACE, - STATE(633), 1, + STATE(634), 1, aux_sym_inline_attribute_repeat1, STATE(677), 1, sym__comment_with_newline, - STATE(1006), 1, + STATE(871), 1, sym_key, - STATE(678), 2, + STATE(676), 2, sym_class, sym_key_value, - ACTIONS(2060), 3, + ACTIONS(2036), 3, sym__whitespace1, sym__newline, sym_identifier, - [21753] = 9, - ACTIONS(2056), 1, + [21749] = 9, + ACTIONS(2032), 1, sym__id, - ACTIONS(2058), 1, + ACTIONS(2034), 1, anon_sym_PERCENT, - ACTIONS(2062), 1, + ACTIONS(2038), 1, anon_sym_DOT, - ACTIONS(2090), 1, + ACTIONS(2066), 1, anon_sym_RBRACE, - STATE(640), 1, + STATE(634), 1, aux_sym_inline_attribute_repeat1, STATE(677), 1, sym__comment_with_newline, - STATE(1006), 1, + STATE(871), 1, sym_key, - STATE(678), 2, + STATE(676), 2, sym_class, sym_key_value, - ACTIONS(2060), 3, + ACTIONS(2036), 3, sym__whitespace1, sym__newline, sym_identifier, - [21784] = 9, - ACTIONS(2056), 1, + [21780] = 9, + ACTIONS(2032), 1, sym__id, - ACTIONS(2058), 1, + ACTIONS(2034), 1, anon_sym_PERCENT, - ACTIONS(2062), 1, + ACTIONS(2038), 1, anon_sym_DOT, - ACTIONS(2092), 1, + ACTIONS(2068), 1, anon_sym_RBRACE, - STATE(637), 1, + STATE(675), 1, aux_sym_inline_attribute_repeat1, STATE(677), 1, sym__comment_with_newline, - STATE(1006), 1, + STATE(871), 1, sym_key, - STATE(678), 2, + STATE(676), 2, sym_class, sym_key_value, - ACTIONS(2060), 3, + ACTIONS(2036), 3, sym__whitespace1, sym__newline, sym_identifier, - [21815] = 9, - ACTIONS(2056), 1, + [21811] = 9, + ACTIONS(2032), 1, sym__id, - ACTIONS(2058), 1, + ACTIONS(2034), 1, anon_sym_PERCENT, - ACTIONS(2062), 1, + ACTIONS(2038), 1, anon_sym_DOT, - ACTIONS(2094), 1, + ACTIONS(2070), 1, anon_sym_RBRACE, - STATE(637), 1, + STATE(638), 1, aux_sym_inline_attribute_repeat1, STATE(677), 1, sym__comment_with_newline, - STATE(1006), 1, + STATE(871), 1, sym_key, - STATE(678), 2, + STATE(676), 2, sym_class, sym_key_value, - ACTIONS(2060), 3, + ACTIONS(2036), 3, sym__whitespace1, sym__newline, sym_identifier, - [21846] = 9, - ACTIONS(2056), 1, + [21842] = 9, + ACTIONS(2032), 1, sym__id, - ACTIONS(2058), 1, + ACTIONS(2034), 1, anon_sym_PERCENT, - ACTIONS(2062), 1, + ACTIONS(2038), 1, anon_sym_DOT, - ACTIONS(2096), 1, + ACTIONS(2072), 1, anon_sym_RBRACE, - STATE(671), 1, + STATE(634), 1, aux_sym_inline_attribute_repeat1, STATE(677), 1, sym__comment_with_newline, - STATE(1006), 1, + STATE(871), 1, sym_key, - STATE(678), 2, + STATE(676), 2, sym_class, sym_key_value, - ACTIONS(2060), 3, + ACTIONS(2036), 3, sym__whitespace1, sym__newline, sym_identifier, - [21877] = 9, - ACTIONS(2056), 1, + [21873] = 9, + ACTIONS(2032), 1, sym__id, - ACTIONS(2058), 1, + ACTIONS(2034), 1, anon_sym_PERCENT, - ACTIONS(2062), 1, + ACTIONS(2038), 1, anon_sym_DOT, - ACTIONS(2098), 1, + ACTIONS(2074), 1, anon_sym_RBRACE, - STATE(647), 1, + STATE(636), 1, aux_sym_inline_attribute_repeat1, STATE(677), 1, sym__comment_with_newline, - STATE(1006), 1, + STATE(871), 1, sym_key, - STATE(678), 2, + STATE(676), 2, sym_class, sym_key_value, - ACTIONS(2060), 3, + ACTIONS(2036), 3, sym__whitespace1, sym__newline, sym_identifier, - [21908] = 9, - ACTIONS(2056), 1, + [21904] = 9, + ACTIONS(2032), 1, sym__id, - ACTIONS(2058), 1, + ACTIONS(2034), 1, anon_sym_PERCENT, - ACTIONS(2062), 1, + ACTIONS(2038), 1, anon_sym_DOT, - ACTIONS(2100), 1, + ACTIONS(2076), 1, anon_sym_RBRACE, - STATE(648), 1, + STATE(634), 1, aux_sym_inline_attribute_repeat1, STATE(677), 1, sym__comment_with_newline, - STATE(1006), 1, + STATE(871), 1, sym_key, - STATE(678), 2, + STATE(676), 2, sym_class, sym_key_value, - ACTIONS(2060), 3, + ACTIONS(2036), 3, sym__whitespace1, sym__newline, sym_identifier, - [21939] = 9, - ACTIONS(2056), 1, + [21935] = 9, + ACTIONS(2032), 1, sym__id, - ACTIONS(2058), 1, + ACTIONS(2034), 1, anon_sym_PERCENT, - ACTIONS(2062), 1, + ACTIONS(2038), 1, anon_sym_DOT, - ACTIONS(2102), 1, + ACTIONS(2078), 1, anon_sym_RBRACE, STATE(656), 1, aux_sym_inline_attribute_repeat1, STATE(677), 1, sym__comment_with_newline, - STATE(1006), 1, + STATE(871), 1, sym_key, - STATE(678), 2, + STATE(676), 2, sym_class, sym_key_value, - ACTIONS(2060), 3, + ACTIONS(2036), 3, sym__whitespace1, sym__newline, sym_identifier, - [21970] = 9, - ACTIONS(2056), 1, + [21966] = 9, + ACTIONS(2032), 1, sym__id, - ACTIONS(2058), 1, + ACTIONS(2034), 1, anon_sym_PERCENT, - ACTIONS(2062), 1, + ACTIONS(2038), 1, anon_sym_DOT, - ACTIONS(2104), 1, + ACTIONS(2080), 1, anon_sym_RBRACE, - STATE(634), 1, + STATE(652), 1, aux_sym_inline_attribute_repeat1, STATE(677), 1, sym__comment_with_newline, - STATE(1006), 1, + STATE(871), 1, sym_key, - STATE(678), 2, + STATE(676), 2, sym_class, sym_key_value, - ACTIONS(2060), 3, + ACTIONS(2036), 3, sym__whitespace1, sym__newline, sym_identifier, - [22001] = 9, - ACTIONS(2056), 1, + [21997] = 9, + ACTIONS(2032), 1, sym__id, - ACTIONS(2058), 1, + ACTIONS(2034), 1, anon_sym_PERCENT, - ACTIONS(2062), 1, + ACTIONS(2038), 1, anon_sym_DOT, - ACTIONS(2106), 1, + ACTIONS(2082), 1, anon_sym_RBRACE, - STATE(637), 1, + STATE(634), 1, aux_sym_inline_attribute_repeat1, STATE(677), 1, sym__comment_with_newline, - STATE(1006), 1, + STATE(871), 1, sym_key, - STATE(678), 2, + STATE(676), 2, sym_class, sym_key_value, - ACTIONS(2060), 3, + ACTIONS(2036), 3, sym__whitespace1, sym__newline, sym_identifier, - [22032] = 9, - ACTIONS(2056), 1, + [22028] = 9, + ACTIONS(2032), 1, sym__id, - ACTIONS(2058), 1, + ACTIONS(2034), 1, anon_sym_PERCENT, - ACTIONS(2062), 1, + ACTIONS(2038), 1, anon_sym_DOT, - ACTIONS(2108), 1, + ACTIONS(2084), 1, anon_sym_RBRACE, - STATE(637), 1, + STATE(649), 1, aux_sym_inline_attribute_repeat1, STATE(677), 1, sym__comment_with_newline, - STATE(1006), 1, + STATE(871), 1, sym_key, - STATE(678), 2, + STATE(676), 2, sym_class, sym_key_value, - ACTIONS(2060), 3, + ACTIONS(2036), 3, sym__whitespace1, sym__newline, sym_identifier, - [22063] = 9, - ACTIONS(2056), 1, + [22059] = 9, + ACTIONS(2032), 1, sym__id, - ACTIONS(2058), 1, + ACTIONS(2034), 1, anon_sym_PERCENT, - ACTIONS(2062), 1, + ACTIONS(2038), 1, anon_sym_DOT, - ACTIONS(2110), 1, + ACTIONS(2086), 1, anon_sym_RBRACE, - STATE(637), 1, + STATE(634), 1, aux_sym_inline_attribute_repeat1, STATE(677), 1, sym__comment_with_newline, - STATE(1006), 1, + STATE(871), 1, sym_key, - STATE(678), 2, + STATE(676), 2, sym_class, sym_key_value, - ACTIONS(2060), 3, + ACTIONS(2036), 3, sym__whitespace1, sym__newline, sym_identifier, - [22094] = 9, - ACTIONS(2056), 1, + [22090] = 9, + ACTIONS(2032), 1, sym__id, - ACTIONS(2058), 1, + ACTIONS(2034), 1, anon_sym_PERCENT, - ACTIONS(2062), 1, + ACTIONS(2038), 1, anon_sym_DOT, - ACTIONS(2112), 1, + ACTIONS(2088), 1, anon_sym_RBRACE, - STATE(649), 1, + STATE(644), 1, aux_sym_inline_attribute_repeat1, STATE(677), 1, sym__comment_with_newline, - STATE(1006), 1, + STATE(871), 1, sym_key, - STATE(678), 2, + STATE(676), 2, sym_class, sym_key_value, - ACTIONS(2060), 3, + ACTIONS(2036), 3, sym__whitespace1, sym__newline, sym_identifier, - [22125] = 9, - ACTIONS(2056), 1, + [22121] = 9, + ACTIONS(2032), 1, sym__id, - ACTIONS(2058), 1, + ACTIONS(2034), 1, anon_sym_PERCENT, - ACTIONS(2062), 1, + ACTIONS(2038), 1, anon_sym_DOT, - ACTIONS(2114), 1, + ACTIONS(2090), 1, anon_sym_RBRACE, - STATE(652), 1, + STATE(634), 1, aux_sym_inline_attribute_repeat1, STATE(677), 1, sym__comment_with_newline, - STATE(1006), 1, + STATE(871), 1, sym_key, - STATE(678), 2, + STATE(676), 2, sym_class, sym_key_value, - ACTIONS(2060), 3, + ACTIONS(2036), 3, sym__whitespace1, sym__newline, sym_identifier, - [22156] = 9, - ACTIONS(2056), 1, + [22152] = 9, + ACTIONS(2032), 1, sym__id, - ACTIONS(2058), 1, + ACTIONS(2034), 1, anon_sym_PERCENT, - ACTIONS(2062), 1, + ACTIONS(2038), 1, anon_sym_DOT, - ACTIONS(2116), 1, + ACTIONS(2092), 1, anon_sym_RBRACE, - STATE(637), 1, + STATE(634), 1, aux_sym_inline_attribute_repeat1, STATE(677), 1, sym__comment_with_newline, - STATE(1006), 1, + STATE(871), 1, sym_key, - STATE(678), 2, + STATE(676), 2, sym_class, sym_key_value, - ACTIONS(2060), 3, + ACTIONS(2036), 3, sym__whitespace1, sym__newline, sym_identifier, - [22187] = 9, - ACTIONS(2056), 1, + [22183] = 9, + ACTIONS(2032), 1, sym__id, - ACTIONS(2058), 1, + ACTIONS(2034), 1, anon_sym_PERCENT, - ACTIONS(2062), 1, + ACTIONS(2038), 1, anon_sym_DOT, - ACTIONS(2118), 1, + ACTIONS(2094), 1, anon_sym_RBRACE, - STATE(632), 1, + STATE(651), 1, aux_sym_inline_attribute_repeat1, STATE(677), 1, sym__comment_with_newline, - STATE(1006), 1, + STATE(871), 1, sym_key, - STATE(678), 2, + STATE(676), 2, sym_class, sym_key_value, - ACTIONS(2060), 3, + ACTIONS(2036), 3, sym__whitespace1, sym__newline, sym_identifier, - [22218] = 9, - ACTIONS(2056), 1, + [22214] = 9, + ACTIONS(2032), 1, sym__id, - ACTIONS(2058), 1, + ACTIONS(2034), 1, anon_sym_PERCENT, - ACTIONS(2062), 1, + ACTIONS(2038), 1, anon_sym_DOT, - ACTIONS(2120), 1, + ACTIONS(2096), 1, anon_sym_RBRACE, - STATE(655), 1, + STATE(647), 1, aux_sym_inline_attribute_repeat1, STATE(677), 1, sym__comment_with_newline, - STATE(1006), 1, + STATE(871), 1, sym_key, - STATE(678), 2, + STATE(676), 2, sym_class, sym_key_value, - ACTIONS(2060), 3, + ACTIONS(2036), 3, sym__whitespace1, sym__newline, sym_identifier, - [22249] = 9, - ACTIONS(2056), 1, + [22245] = 9, + ACTIONS(2032), 1, sym__id, - ACTIONS(2058), 1, + ACTIONS(2034), 1, anon_sym_PERCENT, - ACTIONS(2062), 1, + ACTIONS(2038), 1, anon_sym_DOT, - ACTIONS(2122), 1, + ACTIONS(2098), 1, anon_sym_RBRACE, - STATE(637), 1, + STATE(632), 1, aux_sym_inline_attribute_repeat1, STATE(677), 1, sym__comment_with_newline, - STATE(1006), 1, + STATE(871), 1, sym_key, - STATE(678), 2, + STATE(676), 2, sym_class, sym_key_value, - ACTIONS(2060), 3, + ACTIONS(2036), 3, sym__whitespace1, sym__newline, sym_identifier, - [22280] = 9, - ACTIONS(2056), 1, + [22276] = 9, + ACTIONS(2032), 1, sym__id, - ACTIONS(2058), 1, + ACTIONS(2034), 1, anon_sym_PERCENT, - ACTIONS(2062), 1, + ACTIONS(2038), 1, anon_sym_DOT, - ACTIONS(2124), 1, + ACTIONS(2100), 1, anon_sym_RBRACE, - STATE(637), 1, + STATE(634), 1, aux_sym_inline_attribute_repeat1, STATE(677), 1, sym__comment_with_newline, - STATE(1006), 1, + STATE(871), 1, sym_key, - STATE(678), 2, + STATE(676), 2, sym_class, sym_key_value, - ACTIONS(2060), 3, + ACTIONS(2036), 3, sym__whitespace1, sym__newline, sym_identifier, - [22311] = 9, - ACTIONS(2056), 1, + [22307] = 9, + ACTIONS(2032), 1, sym__id, - ACTIONS(2058), 1, + ACTIONS(2034), 1, anon_sym_PERCENT, - ACTIONS(2062), 1, + ACTIONS(2038), 1, anon_sym_DOT, - ACTIONS(2126), 1, + ACTIONS(2102), 1, anon_sym_RBRACE, - STATE(635), 1, + STATE(634), 1, aux_sym_inline_attribute_repeat1, STATE(677), 1, sym__comment_with_newline, - STATE(1006), 1, + STATE(871), 1, sym_key, - STATE(678), 2, + STATE(676), 2, sym_class, sym_key_value, - ACTIONS(2060), 3, + ACTIONS(2036), 3, sym__whitespace1, sym__newline, sym_identifier, - [22342] = 9, - ACTIONS(2056), 1, + [22338] = 9, + ACTIONS(2032), 1, sym__id, - ACTIONS(2058), 1, + ACTIONS(2034), 1, anon_sym_PERCENT, - ACTIONS(2062), 1, + ACTIONS(2038), 1, anon_sym_DOT, - ACTIONS(2128), 1, + ACTIONS(2104), 1, anon_sym_RBRACE, - STATE(637), 1, + STATE(657), 1, aux_sym_inline_attribute_repeat1, STATE(677), 1, sym__comment_with_newline, - STATE(1006), 1, + STATE(871), 1, sym_key, - STATE(678), 2, + STATE(676), 2, sym_class, sym_key_value, - ACTIONS(2060), 3, + ACTIONS(2036), 3, sym__whitespace1, sym__newline, sym_identifier, - [22373] = 9, - ACTIONS(2056), 1, + [22369] = 9, + ACTIONS(2032), 1, sym__id, - ACTIONS(2058), 1, + ACTIONS(2034), 1, anon_sym_PERCENT, - ACTIONS(2062), 1, + ACTIONS(2038), 1, anon_sym_DOT, - ACTIONS(2130), 1, + ACTIONS(2106), 1, anon_sym_RBRACE, - STATE(637), 1, + STATE(634), 1, aux_sym_inline_attribute_repeat1, STATE(677), 1, sym__comment_with_newline, - STATE(1006), 1, + STATE(871), 1, sym_key, - STATE(678), 2, + STATE(676), 2, sym_class, sym_key_value, - ACTIONS(2060), 3, + ACTIONS(2036), 3, sym__whitespace1, sym__newline, sym_identifier, - [22404] = 9, - ACTIONS(2056), 1, + [22400] = 9, + ACTIONS(2032), 1, sym__id, - ACTIONS(2058), 1, + ACTIONS(2034), 1, anon_sym_PERCENT, - ACTIONS(2062), 1, + ACTIONS(2038), 1, anon_sym_DOT, - ACTIONS(2132), 1, + ACTIONS(2108), 1, anon_sym_RBRACE, - STATE(661), 1, + STATE(659), 1, aux_sym_inline_attribute_repeat1, STATE(677), 1, sym__comment_with_newline, - STATE(1006), 1, + STATE(871), 1, sym_key, - STATE(678), 2, + STATE(676), 2, sym_class, sym_key_value, - ACTIONS(2060), 3, + ACTIONS(2036), 3, sym__whitespace1, sym__newline, sym_identifier, - [22435] = 9, - ACTIONS(2056), 1, + [22431] = 9, + ACTIONS(2032), 1, sym__id, - ACTIONS(2058), 1, + ACTIONS(2034), 1, anon_sym_PERCENT, - ACTIONS(2062), 1, + ACTIONS(2038), 1, anon_sym_DOT, - ACTIONS(2134), 1, + ACTIONS(2110), 1, anon_sym_RBRACE, - STATE(637), 1, + STATE(634), 1, aux_sym_inline_attribute_repeat1, STATE(677), 1, sym__comment_with_newline, - STATE(1006), 1, + STATE(871), 1, sym_key, - STATE(678), 2, + STATE(676), 2, sym_class, sym_key_value, - ACTIONS(2060), 3, + ACTIONS(2036), 3, sym__whitespace1, sym__newline, sym_identifier, - [22466] = 9, - ACTIONS(2056), 1, + [22462] = 9, + ACTIONS(2032), 1, sym__id, - ACTIONS(2058), 1, + ACTIONS(2034), 1, anon_sym_PERCENT, - ACTIONS(2062), 1, + ACTIONS(2038), 1, anon_sym_DOT, - ACTIONS(2136), 1, + ACTIONS(2112), 1, anon_sym_RBRACE, - STATE(664), 1, + STATE(661), 1, aux_sym_inline_attribute_repeat1, STATE(677), 1, sym__comment_with_newline, - STATE(1006), 1, + STATE(871), 1, sym_key, - STATE(678), 2, + STATE(676), 2, sym_class, sym_key_value, - ACTIONS(2060), 3, + ACTIONS(2036), 3, sym__whitespace1, sym__newline, sym_identifier, - [22497] = 9, - ACTIONS(2056), 1, + [22493] = 9, + ACTIONS(2032), 1, sym__id, - ACTIONS(2058), 1, + ACTIONS(2034), 1, anon_sym_PERCENT, - ACTIONS(2062), 1, + ACTIONS(2038), 1, anon_sym_DOT, - ACTIONS(2138), 1, + ACTIONS(2114), 1, anon_sym_RBRACE, - STATE(637), 1, + STATE(672), 1, aux_sym_inline_attribute_repeat1, STATE(677), 1, sym__comment_with_newline, - STATE(1006), 1, + STATE(871), 1, sym_key, - STATE(678), 2, + STATE(676), 2, sym_class, sym_key_value, - ACTIONS(2060), 3, + ACTIONS(2036), 3, sym__whitespace1, sym__newline, sym_identifier, - [22528] = 9, - ACTIONS(2056), 1, + [22524] = 9, + ACTIONS(2032), 1, sym__id, - ACTIONS(2058), 1, + ACTIONS(2034), 1, anon_sym_PERCENT, - ACTIONS(2062), 1, + ACTIONS(2038), 1, anon_sym_DOT, - ACTIONS(2140), 1, + ACTIONS(2116), 1, anon_sym_RBRACE, - STATE(637), 1, + STATE(634), 1, aux_sym_inline_attribute_repeat1, STATE(677), 1, sym__comment_with_newline, - STATE(1006), 1, + STATE(871), 1, sym_key, - STATE(678), 2, + STATE(676), 2, sym_class, sym_key_value, - ACTIONS(2060), 3, + ACTIONS(2036), 3, sym__whitespace1, sym__newline, sym_identifier, - [22559] = 9, - ACTIONS(2056), 1, + [22555] = 9, + ACTIONS(2032), 1, sym__id, - ACTIONS(2058), 1, + ACTIONS(2034), 1, anon_sym_PERCENT, - ACTIONS(2062), 1, + ACTIONS(2038), 1, anon_sym_DOT, - ACTIONS(2142), 1, + ACTIONS(2118), 1, anon_sym_RBRACE, - STATE(674), 1, + STATE(664), 1, aux_sym_inline_attribute_repeat1, STATE(677), 1, sym__comment_with_newline, - STATE(1006), 1, + STATE(871), 1, sym_key, - STATE(678), 2, + STATE(676), 2, sym_class, sym_key_value, - ACTIONS(2060), 3, + ACTIONS(2036), 3, sym__whitespace1, sym__newline, sym_identifier, - [22590] = 9, - ACTIONS(2056), 1, + [22586] = 9, + ACTIONS(2032), 1, sym__id, - ACTIONS(2058), 1, + ACTIONS(2034), 1, anon_sym_PERCENT, - ACTIONS(2062), 1, + ACTIONS(2038), 1, anon_sym_DOT, - ACTIONS(2144), 1, + ACTIONS(2120), 1, anon_sym_RBRACE, - STATE(667), 1, + STATE(634), 1, aux_sym_inline_attribute_repeat1, STATE(677), 1, sym__comment_with_newline, - STATE(1006), 1, + STATE(871), 1, sym_key, - STATE(678), 2, + STATE(676), 2, sym_class, sym_key_value, - ACTIONS(2060), 3, + ACTIONS(2036), 3, sym__whitespace1, sym__newline, sym_identifier, - [22621] = 9, - ACTIONS(2056), 1, + [22617] = 9, + ACTIONS(2032), 1, sym__id, - ACTIONS(2058), 1, + ACTIONS(2034), 1, anon_sym_PERCENT, - ACTIONS(2062), 1, + ACTIONS(2038), 1, anon_sym_DOT, - ACTIONS(2146), 1, + ACTIONS(2122), 1, anon_sym_RBRACE, - STATE(637), 1, + STATE(666), 1, aux_sym_inline_attribute_repeat1, STATE(677), 1, sym__comment_with_newline, - STATE(1006), 1, + STATE(871), 1, sym_key, - STATE(678), 2, + STATE(676), 2, sym_class, sym_key_value, - ACTIONS(2060), 3, + ACTIONS(2036), 3, sym__whitespace1, sym__newline, sym_identifier, - [22652] = 9, - ACTIONS(2056), 1, + [22648] = 9, + ACTIONS(2032), 1, sym__id, - ACTIONS(2058), 1, + ACTIONS(2034), 1, anon_sym_PERCENT, - ACTIONS(2062), 1, + ACTIONS(2038), 1, anon_sym_DOT, - ACTIONS(2148), 1, + ACTIONS(2124), 1, anon_sym_RBRACE, - STATE(658), 1, + STATE(634), 1, aux_sym_inline_attribute_repeat1, STATE(677), 1, sym__comment_with_newline, - STATE(1006), 1, + STATE(871), 1, sym_key, - STATE(678), 2, + STATE(676), 2, sym_class, sym_key_value, - ACTIONS(2060), 3, + ACTIONS(2036), 3, sym__whitespace1, sym__newline, sym_identifier, - [22683] = 9, - ACTIONS(2056), 1, + [22679] = 9, + ACTIONS(2032), 1, sym__id, - ACTIONS(2058), 1, + ACTIONS(2034), 1, anon_sym_PERCENT, - ACTIONS(2062), 1, + ACTIONS(2038), 1, anon_sym_DOT, - ACTIONS(2150), 1, + ACTIONS(2126), 1, anon_sym_RBRACE, - STATE(673), 1, + STATE(668), 1, aux_sym_inline_attribute_repeat1, STATE(677), 1, sym__comment_with_newline, - STATE(1006), 1, + STATE(871), 1, sym_key, - STATE(678), 2, + STATE(676), 2, sym_class, sym_key_value, - ACTIONS(2060), 3, + ACTIONS(2036), 3, sym__whitespace1, sym__newline, sym_identifier, - [22714] = 9, - ACTIONS(2056), 1, + [22710] = 9, + ACTIONS(2032), 1, sym__id, - ACTIONS(2058), 1, + ACTIONS(2034), 1, anon_sym_PERCENT, - ACTIONS(2062), 1, + ACTIONS(2038), 1, anon_sym_DOT, - ACTIONS(2152), 1, + ACTIONS(2128), 1, anon_sym_RBRACE, - STATE(631), 1, + STATE(634), 1, aux_sym_inline_attribute_repeat1, STATE(677), 1, sym__comment_with_newline, - STATE(1006), 1, + STATE(871), 1, sym_key, - STATE(678), 2, + STATE(676), 2, sym_class, sym_key_value, - ACTIONS(2060), 3, + ACTIONS(2036), 3, sym__whitespace1, sym__newline, sym_identifier, - [22745] = 9, - ACTIONS(2056), 1, + [22741] = 9, + ACTIONS(2032), 1, sym__id, - ACTIONS(2058), 1, + ACTIONS(2034), 1, anon_sym_PERCENT, - ACTIONS(2062), 1, + ACTIONS(2038), 1, anon_sym_DOT, - ACTIONS(2154), 1, + ACTIONS(2130), 1, anon_sym_RBRACE, - STATE(637), 1, + STATE(634), 1, aux_sym_inline_attribute_repeat1, STATE(677), 1, sym__comment_with_newline, - STATE(1006), 1, + STATE(871), 1, sym_key, - STATE(678), 2, + STATE(676), 2, sym_class, sym_key_value, - ACTIONS(2060), 3, + ACTIONS(2036), 3, sym__whitespace1, sym__newline, sym_identifier, - [22776] = 9, - ACTIONS(2056), 1, + [22772] = 9, + ACTIONS(2032), 1, sym__id, - ACTIONS(2058), 1, + ACTIONS(2034), 1, anon_sym_PERCENT, - ACTIONS(2062), 1, + ACTIONS(2038), 1, anon_sym_DOT, - ACTIONS(2156), 1, + ACTIONS(2132), 1, anon_sym_RBRACE, - STATE(659), 1, + STATE(634), 1, aux_sym_inline_attribute_repeat1, STATE(677), 1, sym__comment_with_newline, - STATE(1006), 1, + STATE(871), 1, sym_key, - STATE(678), 2, + STATE(676), 2, sym_class, sym_key_value, - ACTIONS(2060), 3, + ACTIONS(2036), 3, sym__whitespace1, sym__newline, sym_identifier, - [22807] = 9, - ACTIONS(2056), 1, + [22803] = 9, + ACTIONS(2032), 1, sym__id, - ACTIONS(2058), 1, + ACTIONS(2034), 1, anon_sym_PERCENT, - ACTIONS(2062), 1, + ACTIONS(2038), 1, anon_sym_DOT, - ACTIONS(2158), 1, + ACTIONS(2134), 1, anon_sym_RBRACE, - STATE(637), 1, + STATE(671), 1, aux_sym_inline_attribute_repeat1, STATE(677), 1, sym__comment_with_newline, - STATE(1006), 1, + STATE(871), 1, sym_key, - STATE(678), 2, + STATE(676), 2, sym_class, sym_key_value, - ACTIONS(2060), 3, + ACTIONS(2036), 3, sym__whitespace1, sym__newline, sym_identifier, - [22838] = 9, - ACTIONS(2056), 1, + [22834] = 9, + ACTIONS(2032), 1, sym__id, - ACTIONS(2058), 1, + ACTIONS(2034), 1, anon_sym_PERCENT, - ACTIONS(2062), 1, + ACTIONS(2038), 1, anon_sym_DOT, - ACTIONS(2160), 1, + ACTIONS(2136), 1, anon_sym_RBRACE, - STATE(637), 1, + STATE(670), 1, aux_sym_inline_attribute_repeat1, STATE(677), 1, sym__comment_with_newline, - STATE(1006), 1, + STATE(871), 1, sym_key, - STATE(678), 2, + STATE(676), 2, sym_class, sym_key_value, - ACTIONS(2060), 3, + ACTIONS(2036), 3, sym__whitespace1, sym__newline, sym_identifier, - [22869] = 9, - ACTIONS(2056), 1, + [22865] = 9, + ACTIONS(2032), 1, sym__id, - ACTIONS(2058), 1, + ACTIONS(2034), 1, anon_sym_PERCENT, - ACTIONS(2062), 1, + ACTIONS(2038), 1, anon_sym_DOT, - ACTIONS(2162), 1, + ACTIONS(2138), 1, anon_sym_RBRACE, - STATE(663), 1, + STATE(634), 1, aux_sym_inline_attribute_repeat1, STATE(677), 1, sym__comment_with_newline, - STATE(1006), 1, + STATE(871), 1, sym_key, - STATE(678), 2, + STATE(676), 2, sym_class, sym_key_value, - ACTIONS(2060), 3, + ACTIONS(2036), 3, sym__whitespace1, sym__newline, sym_identifier, - [22900] = 1, - ACTIONS(2164), 7, + [22896] = 1, + ACTIONS(2140), 7, anon_sym_RBRACE, sym__id, anon_sym_PERCENT, @@ -39495,8 +39002,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_DOT, sym_identifier, - [22910] = 1, - ACTIONS(2166), 7, + [22906] = 1, + ACTIONS(2142), 7, anon_sym_RBRACE, sym__id, anon_sym_PERCENT, @@ -39504,8 +39011,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_DOT, sym_identifier, - [22920] = 1, - ACTIONS(2168), 7, + [22916] = 1, + ACTIONS(2144), 7, anon_sym_RBRACE, sym__id, anon_sym_PERCENT, @@ -39513,8 +39020,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_DOT, sym_identifier, - [22930] = 1, - ACTIONS(2170), 7, + [22926] = 1, + ACTIONS(2146), 7, anon_sym_RBRACE, sym__id, anon_sym_PERCENT, @@ -39522,8 +39029,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_DOT, sym_identifier, - [22940] = 1, - ACTIONS(2172), 7, + [22936] = 1, + ACTIONS(2148), 7, anon_sym_RBRACE, sym__id, anon_sym_PERCENT, @@ -39531,8 +39038,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_DOT, sym_identifier, - [22950] = 1, - ACTIONS(2174), 7, + [22946] = 1, + ACTIONS(2150), 7, anon_sym_RBRACE, sym__id, anon_sym_PERCENT, @@ -39540,8 +39047,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_DOT, sym_identifier, - [22960] = 1, - ACTIONS(2176), 7, + [22956] = 1, + ACTIONS(2152), 7, anon_sym_RBRACE, sym__id, anon_sym_PERCENT, @@ -39549,8 +39056,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_DOT, sym_identifier, - [22970] = 1, - ACTIONS(2178), 7, + [22966] = 1, + ACTIONS(2154), 7, anon_sym_RBRACE, sym__id, anon_sym_PERCENT, @@ -39558,8 +39065,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_DOT, sym_identifier, - [22980] = 1, - ACTIONS(2180), 7, + [22976] = 1, + ACTIONS(2156), 7, anon_sym_RBRACE, sym__id, anon_sym_PERCENT, @@ -39567,1500 +39074,1420 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_DOT, sym_identifier, - [22990] = 5, - ACTIONS(2182), 1, + [22986] = 5, + ACTIONS(2158), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(2184), 1, + ACTIONS(2160), 1, anon_sym_LBRACK, - ACTIONS(2186), 1, + ACTIONS(2162), 1, anon_sym_LPAREN, - STATE(444), 1, + STATE(495), 1, sym__link_label, - STATE(445), 1, + STATE(496), 1, sym_inline_link_destination, - [23006] = 4, - ACTIONS(2188), 1, + [23002] = 3, + ACTIONS(2167), 1, + anon_sym_PERCENT, + STATE(686), 1, + aux_sym__comment_with_newline_repeat1, + ACTIONS(2164), 3, + sym_backslash_escape, + aux_sym__comment_with_newline_token1, + sym__newline, + [23014] = 4, + ACTIONS(2169), 1, anon_sym_LBRACE, - ACTIONS(2192), 1, + ACTIONS(2173), 1, anon_sym_LBRACK, - STATE(523), 1, + STATE(320), 1, sym_inline_attribute, - ACTIONS(2190), 2, + ACTIONS(2171), 2, + anon_sym_LBRACK_RBRACK, + anon_sym_LPAREN, + [23028] = 5, + ACTIONS(2175), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(2177), 1, + anon_sym_LBRACK, + ACTIONS(2179), 1, + anon_sym_LPAREN, + STATE(351), 1, + sym__link_label, + STATE(352), 1, + sym_inline_link_destination, + [23044] = 5, + ACTIONS(2181), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(2183), 1, + anon_sym_LBRACK, + ACTIONS(2185), 1, + anon_sym_LPAREN, + STATE(443), 1, + sym__link_label, + STATE(452), 1, + sym_inline_link_destination, + [23060] = 5, + ACTIONS(2187), 1, anon_sym_LBRACK_RBRACK, + ACTIONS(2189), 1, + anon_sym_LBRACK, + ACTIONS(2191), 1, + anon_sym_LPAREN, + STATE(561), 1, + sym_inline_link_destination, + STATE(611), 1, + sym__link_label, + [23076] = 5, + ACTIONS(2189), 1, + anon_sym_LBRACK, + ACTIONS(2191), 1, anon_sym_LPAREN, - [23020] = 4, - ACTIONS(2192), 1, + ACTIONS(2193), 1, + anon_sym_LBRACK_RBRACK, + STATE(608), 1, + sym__link_label, + STATE(609), 1, + sym_inline_link_destination, + [23092] = 4, + ACTIONS(2173), 1, anon_sym_LBRACK, - ACTIONS(2194), 1, + ACTIONS(2195), 1, anon_sym_LBRACE, - STATE(235), 1, + STATE(554), 1, sym_inline_attribute, - ACTIONS(2190), 2, + ACTIONS(2171), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - [23034] = 5, - ACTIONS(2196), 1, + [23106] = 5, + ACTIONS(2177), 1, + anon_sym_LBRACK, + ACTIONS(2179), 1, + anon_sym_LPAREN, + ACTIONS(2197), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(2198), 1, + STATE(354), 1, + sym__link_label, + STATE(355), 1, + sym_inline_link_destination, + [23122] = 5, + ACTIONS(2183), 1, anon_sym_LBRACK, - ACTIONS(2200), 1, + ACTIONS(2185), 1, anon_sym_LPAREN, - STATE(613), 1, + ACTIONS(2199), 1, + anon_sym_LBRACK_RBRACK, + STATE(464), 1, sym__link_label, - STATE(614), 1, + STATE(484), 1, sym_inline_link_destination, - [23050] = 5, - ACTIONS(2202), 1, + [23138] = 5, + ACTIONS(2201), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(2204), 1, + ACTIONS(2203), 1, anon_sym_LBRACK, - ACTIONS(2206), 1, + ACTIONS(2205), 1, anon_sym_LPAREN, - STATE(356), 1, + STATE(302), 1, sym__link_label, - STATE(357), 1, + STATE(303), 1, sym_inline_link_destination, - [23066] = 5, - ACTIONS(2208), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(2210), 1, + [23154] = 5, + ACTIONS(2203), 1, anon_sym_LBRACK, - ACTIONS(2212), 1, + ACTIONS(2205), 1, anon_sym_LPAREN, - STATE(218), 1, + ACTIONS(2207), 1, + anon_sym_LBRACK_RBRACK, + STATE(299), 1, + sym__link_label, + STATE(300), 1, sym_inline_link_destination, - STATE(438), 1, + [23170] = 4, + ACTIONS(2173), 1, + anon_sym_LBRACK, + ACTIONS(2209), 1, + anon_sym_LBRACE, + STATE(233), 1, + sym_inline_attribute, + ACTIONS(2171), 2, + anon_sym_LBRACK_RBRACK, + anon_sym_LPAREN, + [23184] = 5, + ACTIONS(2211), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(2213), 1, + anon_sym_LBRACK, + ACTIONS(2215), 1, + anon_sym_LPAREN, + STATE(539), 1, sym__link_label, - [23082] = 5, - ACTIONS(2210), 1, + STATE(540), 1, + sym_inline_link_destination, + [23200] = 5, + ACTIONS(2213), 1, anon_sym_LBRACK, - ACTIONS(2212), 1, + ACTIONS(2215), 1, anon_sym_LPAREN, - ACTIONS(2214), 1, + ACTIONS(2217), 1, anon_sym_LBRACK_RBRACK, - STATE(220), 1, + STATE(536), 1, sym__link_label, - STATE(221), 1, + STATE(537), 1, + sym_inline_link_destination, + [23216] = 4, + ACTIONS(2173), 1, + anon_sym_LBRACK, + ACTIONS(2219), 1, + anon_sym_LBRACE, + STATE(514), 1, + sym_inline_attribute, + ACTIONS(2171), 2, + anon_sym_LBRACK_RBRACK, + anon_sym_LPAREN, + [23230] = 3, + ACTIONS(2223), 1, + anon_sym_PERCENT, + STATE(702), 1, + aux_sym__comment_with_newline_repeat1, + ACTIONS(2221), 3, + sym_backslash_escape, + aux_sym__comment_with_newline_token1, + sym__newline, + [23242] = 3, + ACTIONS(2225), 1, + anon_sym_PERCENT, + STATE(686), 1, + aux_sym__comment_with_newline_repeat1, + ACTIONS(2221), 3, + sym_backslash_escape, + aux_sym__comment_with_newline_token1, + sym__newline, + [23254] = 5, + ACTIONS(2227), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(2229), 1, + anon_sym_LBRACK, + ACTIONS(2231), 1, + anon_sym_LPAREN, + STATE(275), 1, sym_inline_link_destination, - [23098] = 5, - ACTIONS(2204), 1, + STATE(379), 1, + sym__link_label, + [23270] = 5, + ACTIONS(2160), 1, anon_sym_LBRACK, - ACTIONS(2206), 1, + ACTIONS(2162), 1, anon_sym_LPAREN, - ACTIONS(2216), 1, + ACTIONS(2233), 1, anon_sym_LBRACK_RBRACK, - STATE(353), 1, + STATE(498), 1, sym__link_label, - STATE(354), 1, + STATE(499), 1, + sym_inline_link_destination, + [23286] = 5, + ACTIONS(2229), 1, + anon_sym_LBRACK, + ACTIONS(2231), 1, + anon_sym_LPAREN, + ACTIONS(2235), 1, + anon_sym_LBRACK_RBRACK, + STATE(382), 1, sym_inline_link_destination, - [23114] = 5, - ACTIONS(2218), 1, + STATE(383), 1, + sym__link_label, + [23302] = 5, + ACTIONS(2237), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(2220), 1, + ACTIONS(2239), 1, anon_sym_LBRACK, - ACTIONS(2222), 1, + ACTIONS(2241), 1, anon_sym_LPAREN, - STATE(252), 1, + STATE(250), 1, sym__link_label, - STATE(253), 1, + STATE(251), 1, sym_inline_link_destination, - [23130] = 5, - ACTIONS(2220), 1, + [23318] = 5, + ACTIONS(2239), 1, anon_sym_LBRACK, - ACTIONS(2222), 1, + ACTIONS(2241), 1, anon_sym_LPAREN, - ACTIONS(2224), 1, + ACTIONS(2243), 1, anon_sym_LBRACK_RBRACK, - STATE(255), 1, + STATE(253), 1, sym__link_label, - STATE(256), 1, + STATE(254), 1, sym_inline_link_destination, - [23146] = 4, - ACTIONS(2192), 1, + [23334] = 4, + ACTIONS(2173), 1, anon_sym_LBRACK, - ACTIONS(2226), 1, + ACTIONS(2245), 1, anon_sym_LBRACE, - STATE(426), 1, + STATE(476), 1, sym_inline_attribute, - ACTIONS(2190), 2, + ACTIONS(2171), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - [23160] = 5, - ACTIONS(2228), 1, + [23348] = 5, + ACTIONS(2247), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(2230), 1, + ACTIONS(2249), 1, anon_sym_LBRACK, - ACTIONS(2232), 1, + ACTIONS(2251), 1, anon_sym_LPAREN, - STATE(277), 1, + STATE(276), 1, sym_inline_link_destination, - STATE(382), 1, + STATE(278), 1, sym__link_label, - [23176] = 5, - ACTIONS(2234), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(2236), 1, + [23364] = 5, + ACTIONS(2249), 1, anon_sym_LBRACK, - ACTIONS(2238), 1, + ACTIONS(2251), 1, anon_sym_LPAREN, - STATE(507), 1, - sym__link_label, - STATE(508), 1, - sym_inline_link_destination, - [23192] = 5, - ACTIONS(2240), 1, + ACTIONS(2253), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(2242), 1, - anon_sym_LBRACK, - ACTIONS(2244), 1, - anon_sym_LPAREN, - STATE(460), 1, + STATE(218), 1, sym__link_label, - STATE(461), 1, + STATE(219), 1, sym_inline_link_destination, - [23208] = 4, - ACTIONS(2192), 1, + [23380] = 4, + ACTIONS(2173), 1, anon_sym_LBRACK, - ACTIONS(2246), 1, + ACTIONS(2255), 1, anon_sym_LBRACE, - STATE(374), 1, + STATE(372), 1, sym_inline_attribute, - ACTIONS(2190), 2, + ACTIONS(2171), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - [23222] = 5, - ACTIONS(2248), 1, + [23394] = 5, + ACTIONS(2257), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(2250), 1, + ACTIONS(2259), 1, anon_sym_LBRACK, - ACTIONS(2252), 1, + ACTIONS(2261), 1, anon_sym_LPAREN, - STATE(548), 1, + STATE(403), 1, sym__link_label, - STATE(549), 1, + STATE(404), 1, sym_inline_link_destination, - [23238] = 4, - ACTIONS(2192), 1, - anon_sym_LBRACK, - ACTIONS(2254), 1, - anon_sym_LBRACE, - STATE(463), 1, - sym_inline_attribute, - ACTIONS(2190), 2, + [23410] = 5, + ACTIONS(2263), 1, anon_sym_LBRACK_RBRACK, - anon_sym_LPAREN, - [23252] = 5, - ACTIONS(2250), 1, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2252), 1, + ACTIONS(2267), 1, anon_sym_LPAREN, - ACTIONS(2256), 1, - anon_sym_LBRACK_RBRACK, - STATE(545), 1, + STATE(458), 1, sym__link_label, - STATE(546), 1, + STATE(459), 1, sym_inline_link_destination, - [23268] = 4, - ACTIONS(2192), 1, - anon_sym_LBRACK, - ACTIONS(2258), 1, - anon_sym_LBRACE, - STATE(270), 1, - sym_inline_attribute, - ACTIONS(2190), 2, - anon_sym_LBRACK_RBRACK, - anon_sym_LPAREN, - [23282] = 5, - ACTIONS(2198), 1, + [23426] = 5, + ACTIONS(2265), 1, anon_sym_LBRACK, - ACTIONS(2200), 1, + ACTIONS(2267), 1, anon_sym_LPAREN, - ACTIONS(2260), 1, + ACTIONS(2269), 1, anon_sym_LBRACK_RBRACK, - STATE(610), 1, + STATE(455), 1, sym__link_label, - STATE(611), 1, + STATE(456), 1, sym_inline_link_destination, - [23298] = 5, - ACTIONS(2230), 1, + [23442] = 4, + ACTIONS(2173), 1, anon_sym_LBRACK, - ACTIONS(2232), 1, - anon_sym_LPAREN, - ACTIONS(2262), 1, + ACTIONS(2271), 1, + anon_sym_LBRACE, + STATE(424), 1, + sym_inline_attribute, + ACTIONS(2171), 2, anon_sym_LBRACK_RBRACK, - STATE(358), 1, - sym_inline_link_destination, - STATE(359), 1, - sym__link_label, - [23314] = 4, - ACTIONS(2192), 1, + anon_sym_LPAREN, + [23456] = 4, + ACTIONS(2173), 1, anon_sym_LBRACK, - ACTIONS(2264), 1, + ACTIONS(2273), 1, anon_sym_LBRACE, - STATE(494), 1, + STATE(614), 1, sym_inline_attribute, - ACTIONS(2190), 2, + ACTIONS(2171), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - [23328] = 5, - ACTIONS(2242), 1, + [23470] = 5, + ACTIONS(2259), 1, anon_sym_LBRACK, - ACTIONS(2244), 1, + ACTIONS(2261), 1, anon_sym_LPAREN, - ACTIONS(2266), 1, + ACTIONS(2275), 1, anon_sym_LBRACK_RBRACK, - STATE(457), 1, + STATE(406), 1, sym__link_label, - STATE(458), 1, + STATE(407), 1, sym_inline_link_destination, - [23344] = 4, - ACTIONS(2192), 1, + [23486] = 4, + ACTIONS(2173), 1, anon_sym_LBRACK, - ACTIONS(2268), 1, + ACTIONS(2277), 1, anon_sym_LBRACE, - STATE(329), 1, + STATE(330), 1, sym_inline_attribute, - ACTIONS(2190), 2, + ACTIONS(2171), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - [23358] = 4, - ACTIONS(2192), 1, + [23500] = 4, + ACTIONS(2173), 1, anon_sym_LBRACK, - ACTIONS(2270), 1, + ACTIONS(2279), 1, anon_sym_LBRACE, - STATE(322), 1, + STATE(461), 1, sym_inline_attribute, - ACTIONS(2190), 2, + ACTIONS(2171), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - [23372] = 4, - ACTIONS(2192), 1, + [23514] = 4, + ACTIONS(2173), 1, anon_sym_LBRACK, - ACTIONS(2272), 1, + ACTIONS(2281), 1, anon_sym_LBRACE, - STATE(478), 1, + STATE(268), 1, sym_inline_attribute, - ACTIONS(2190), 2, + ACTIONS(2171), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - [23386] = 5, - ACTIONS(2274), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(2276), 1, - anon_sym_LBRACK, - ACTIONS(2278), 1, - anon_sym_LPAREN, - STATE(301), 1, - sym__link_label, - STATE(302), 1, - sym_inline_link_destination, - [23402] = 5, - ACTIONS(2276), 1, - anon_sym_LBRACK, - ACTIONS(2278), 1, - anon_sym_LPAREN, - ACTIONS(2280), 1, - anon_sym_LBRACK_RBRACK, - STATE(304), 1, - sym__link_label, - STATE(305), 1, - sym_inline_link_destination, - [23418] = 3, - ACTIONS(2284), 1, - anon_sym_PERCENT, - STATE(717), 1, - aux_sym__comment_with_newline_repeat1, - ACTIONS(2282), 3, + [23528] = 1, + ACTIONS(2283), 4, sym_backslash_escape, + anon_sym_PERCENT, aux_sym__comment_with_newline_token1, sym__newline, - [23430] = 5, - ACTIONS(2286), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(2288), 1, - anon_sym_LBRACK, - ACTIONS(2290), 1, - anon_sym_LPAREN, - STATE(405), 1, - sym__link_label, - STATE(406), 1, - sym_inline_link_destination, - [23446] = 5, - ACTIONS(2288), 1, + [23535] = 2, + ACTIONS(2287), 1, anon_sym_LBRACK, - ACTIONS(2290), 1, - anon_sym_LPAREN, - ACTIONS(2292), 1, + ACTIONS(2285), 2, anon_sym_LBRACK_RBRACK, - STATE(408), 1, - sym__link_label, - STATE(409), 1, - sym_inline_link_destination, - [23462] = 3, + anon_sym_LPAREN, + [23543] = 3, + ACTIONS(2289), 1, + anon_sym_STAR, + ACTIONS(2291), 1, + aux_sym_strong_end_token1, + STATE(265), 1, + sym_strong_end, + [23553] = 3, + ACTIONS(2293), 1, + anon_sym_STAR, + ACTIONS(2295), 1, + aux_sym_strong_end_token1, + STATE(421), 1, + sym_strong_end, + [23563] = 3, ACTIONS(2297), 1, - anon_sym_PERCENT, - STATE(716), 1, - aux_sym__comment_with_newline_repeat1, - ACTIONS(2294), 3, - sym_backslash_escape, - aux_sym__comment_with_newline_token1, - sym__newline, - [23474] = 3, + anon_sym_DQUOTE, ACTIONS(2299), 1, - anon_sym_PERCENT, - STATE(716), 1, - aux_sym__comment_with_newline_repeat1, - ACTIONS(2282), 3, - sym_backslash_escape, - aux_sym__comment_with_newline_token1, - sym__newline, - [23486] = 4, - ACTIONS(2192), 1, - anon_sym_LBRACK, + aux_sym_value_token2, + STATE(679), 1, + sym_value, + [23573] = 3, ACTIONS(2301), 1, - anon_sym_LBRACE, - STATE(615), 1, - sym_inline_attribute, - ACTIONS(2190), 2, - anon_sym_LBRACK_RBRACK, - anon_sym_LPAREN, - [23500] = 5, - ACTIONS(2184), 1, - anon_sym_LBRACK, - ACTIONS(2186), 1, - anon_sym_LPAREN, + anon_sym_STAR, ACTIONS(2303), 1, - anon_sym_LBRACK_RBRACK, - STATE(454), 1, - sym__link_label, - STATE(477), 1, - sym_inline_link_destination, - [23516] = 5, - ACTIONS(2236), 1, - anon_sym_LBRACK, - ACTIONS(2238), 1, - anon_sym_LPAREN, + aux_sym_strong_end_token1, + STATE(473), 1, + sym_strong_end, + [23583] = 3, ACTIONS(2305), 1, - anon_sym_LBRACK_RBRACK, - STATE(216), 1, - sym_inline_link_destination, - STATE(505), 1, - sym__link_label, - [23532] = 1, - ACTIONS(2307), 4, - sym_backslash_escape, - anon_sym_PERCENT, - aux_sym__comment_with_newline_token1, - sym__newline, - [23539] = 3, + anon_sym_STAR, + ACTIONS(2307), 1, + aux_sym_strong_end_token1, + STATE(333), 1, + sym_strong_end, + [23593] = 3, ACTIONS(2309), 1, anon_sym_STAR, ACTIONS(2311), 1, aux_sym_strong_end_token1, - STATE(319), 1, + STATE(369), 1, sym_strong_end, - [23549] = 3, + [23603] = 3, ACTIONS(2313), 1, - anon_sym__, + anon_sym_STAR, ACTIONS(2315), 1, - aux_sym_emphasis_end_token1, - STATE(846), 1, - sym_emphasis_end, - [23559] = 2, + aux_sym_strong_end_token1, + STATE(511), 1, + sym_strong_end, + [23613] = 3, + ACTIONS(2317), 1, + anon_sym_STAR, ACTIONS(2319), 1, - anon_sym_LBRACK, - ACTIONS(2317), 2, - anon_sym_LBRACK_RBRACK, - anon_sym_LPAREN, - [23567] = 3, - ACTIONS(2313), 1, - anon_sym__, - ACTIONS(2315), 1, - aux_sym_emphasis_end_token1, - STATE(888), 1, - sym_emphasis_end, - [23577] = 3, - ACTIONS(2313), 1, - anon_sym__, - ACTIONS(2315), 1, - aux_sym_emphasis_end_token1, - STATE(910), 1, - sym_emphasis_end, - [23587] = 3, + aux_sym_strong_end_token1, + STATE(317), 1, + sym_strong_end, + [23623] = 3, ACTIONS(2321), 1, anon_sym_STAR, ACTIONS(2323), 1, aux_sym_strong_end_token1, - STATE(475), 1, + STATE(230), 1, sym_strong_end, - [23597] = 3, + [23633] = 3, ACTIONS(2325), 1, - anon_sym_DQUOTE, + anon_sym_STAR, ACTIONS(2327), 1, - aux_sym_value_token2, - STATE(683), 1, - sym_value, - [23607] = 3, - ACTIONS(2313), 1, - anon_sym__, - ACTIONS(2315), 1, - aux_sym_emphasis_end_token1, - STATE(865), 1, - sym_emphasis_end, - [23617] = 3, + aux_sym_strong_end_token1, + STATE(552), 1, + sym_strong_end, + [23643] = 3, ACTIONS(2329), 1, anon_sym_STAR, ACTIONS(2331), 1, aux_sym_strong_end_token1, - STATE(495), 1, + STATE(625), 1, sym_strong_end, - [23627] = 3, + [23653] = 3, ACTIONS(2333), 1, anon_sym_STAR, ACTIONS(2335), 1, aux_sym_strong_end_token1, - STATE(423), 1, + STATE(487), 1, sym_strong_end, - [23637] = 2, + [23663] = 2, ACTIONS(2339), 1, anon_sym_LBRACK, ACTIONS(2337), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - [23645] = 3, + [23671] = 2, ACTIONS(2341), 1, - anon_sym_STAR, + anon_sym_TILDE, ACTIONS(2343), 1, - aux_sym_strong_end_token1, - STATE(232), 1, - sym_strong_end, - [23655] = 3, - ACTIONS(2313), 1, - anon_sym__, - ACTIONS(2315), 1, - aux_sym_emphasis_end_token1, - STATE(842), 1, - sym_emphasis_end, - [23665] = 3, + anon_sym_TILDE_RBRACE, + [23678] = 2, ACTIONS(2345), 1, - anon_sym_STAR, + anon_sym_CARET, ACTIONS(2347), 1, - aux_sym_strong_end_token1, - STATE(520), 1, - sym_strong_end, - [23675] = 3, - ACTIONS(2313), 1, - anon_sym__, - ACTIONS(2315), 1, - aux_sym_emphasis_end_token1, - STATE(897), 1, - sym_emphasis_end, - [23685] = 3, - ACTIONS(2313), 1, - anon_sym__, - ACTIONS(2315), 1, - aux_sym_emphasis_end_token1, - STATE(952), 1, - sym_emphasis_end, - [23695] = 3, - ACTIONS(2313), 1, - anon_sym__, - ACTIONS(2315), 1, - aux_sym_emphasis_end_token1, - STATE(994), 1, - sym_emphasis_end, - [23705] = 3, - ACTIONS(2313), 1, - anon_sym__, - ACTIONS(2315), 1, - aux_sym_emphasis_end_token1, - STATE(819), 1, - sym_emphasis_end, - [23715] = 3, - ACTIONS(2313), 1, - anon_sym__, - ACTIONS(2315), 1, - aux_sym_emphasis_end_token1, - STATE(806), 1, - sym_emphasis_end, - [23725] = 3, + anon_sym_CARET_RBRACE, + [23685] = 2, ACTIONS(2349), 1, - anon_sym_STAR, + anon_sym_CARET, ACTIONS(2351), 1, - aux_sym_strong_end_token1, - STATE(333), 1, - sym_strong_end, - [23735] = 3, + anon_sym_CARET_RBRACE, + [23692] = 2, ACTIONS(2353), 1, - anon_sym_STAR, + anon_sym_TILDE, ACTIONS(2355), 1, - aux_sym_strong_end_token1, - STATE(371), 1, - sym_strong_end, - [23745] = 3, - ACTIONS(2313), 1, - anon_sym__, - ACTIONS(2315), 1, - aux_sym_emphasis_end_token1, - STATE(873), 1, - sym_emphasis_end, - [23755] = 3, + anon_sym_TILDE_RBRACE, + [23699] = 2, ACTIONS(2357), 1, - anon_sym_STAR, - ACTIONS(2359), 1, - aux_sym_strong_end_token1, - STATE(267), 1, - sym_strong_end, - [23765] = 3, - ACTIONS(2361), 1, - anon_sym_STAR, - ACTIONS(2363), 1, - aux_sym_strong_end_token1, - STATE(217), 1, - sym_strong_end, - [23775] = 3, - ACTIONS(2365), 1, - anon_sym_STAR, + sym__emphasis_mark_begin, + ACTIONS(2360), 1, + sym__in_fallback, + [23706] = 2, + ACTIONS(2362), 1, + sym__id, + STATE(683), 1, + sym_class_name, + [23713] = 2, + ACTIONS(2034), 1, + anon_sym_PERCENT, + STATE(883), 1, + sym__comment_with_newline, + [23720] = 2, + ACTIONS(2034), 1, + anon_sym_PERCENT, + STATE(861), 1, + sym__comment_with_newline, + [23727] = 2, + ACTIONS(2034), 1, + anon_sym_PERCENT, + STATE(844), 1, + sym__comment_with_newline, + [23734] = 2, + ACTIONS(2034), 1, + anon_sym_PERCENT, + STATE(826), 1, + sym__comment_with_newline, + [23741] = 2, + ACTIONS(2034), 1, + anon_sym_PERCENT, + STATE(809), 1, + sym__comment_with_newline, + [23748] = 2, + ACTIONS(2364), 1, + sym__emphasis_mark_begin, ACTIONS(2367), 1, - aux_sym_strong_end_token1, - STATE(627), 1, - sym_strong_end, - [23785] = 2, + sym__in_fallback, + [23755] = 2, + ACTIONS(2034), 1, + anon_sym_PERCENT, + STATE(880), 1, + sym__comment_with_newline, + [23762] = 2, + ACTIONS(2034), 1, + anon_sym_PERCENT, + STATE(977), 1, + sym__comment_with_newline, + [23769] = 2, ACTIONS(2369), 1, - anon_sym_CARET, - ACTIONS(2371), 1, - anon_sym_CARET_RBRACE, - [23792] = 2, - ACTIONS(2373), 1, sym__emphasis_mark_begin, - ACTIONS(2376), 1, + ACTIONS(2372), 1, sym__in_fallback, - [23799] = 2, + [23776] = 2, + ACTIONS(2034), 1, + anon_sym_PERCENT, + STATE(804), 1, + sym__comment_with_newline, + [23783] = 2, + ACTIONS(2374), 1, + anon_sym_CARET, + ACTIONS(2376), 1, + anon_sym_CARET_RBRACE, + [23790] = 2, ACTIONS(2378), 1, sym__emphasis_mark_begin, ACTIONS(2381), 1, sym__in_fallback, - [23806] = 2, + [23797] = 2, ACTIONS(2383), 1, anon_sym_TILDE, ACTIONS(2385), 1, anon_sym_TILDE_RBRACE, - [23813] = 2, + [23804] = 2, ACTIONS(2387), 1, - anon_sym_CARET, - ACTIONS(2389), 1, - anon_sym_CARET_RBRACE, - [23820] = 2, - ACTIONS(2391), 1, - sym__emphasis_mark_begin, - ACTIONS(2394), 1, - sym__in_fallback, - [23827] = 2, - ACTIONS(2396), 1, - sym__emphasis_mark_begin, - ACTIONS(2399), 1, - sym__in_fallback, - [23834] = 2, - ACTIONS(2401), 1, - sym__emphasis_mark_begin, - ACTIONS(2404), 1, - sym__in_fallback, - [23841] = 2, - ACTIONS(2406), 1, sym__emphasis_mark_begin, - ACTIONS(2409), 1, + ACTIONS(2390), 1, sym__in_fallback, - [23848] = 2, - ACTIONS(2058), 1, + [23811] = 2, + ACTIONS(2034), 1, anon_sym_PERCENT, - STATE(881), 1, + STATE(851), 1, sym__comment_with_newline, - [23855] = 2, - ACTIONS(2058), 1, + [23818] = 2, + ACTIONS(2034), 1, anon_sym_PERCENT, - STATE(850), 1, + STATE(983), 1, sym__comment_with_newline, - [23862] = 2, - ACTIONS(2411), 1, + [23825] = 2, + ACTIONS(2034), 1, + anon_sym_PERCENT, + STATE(894), 1, + sym__comment_with_newline, + [23832] = 2, + ACTIONS(2392), 1, + sym__emphasis_mark_begin, + ACTIONS(2395), 1, + sym__in_fallback, + [23839] = 2, + ACTIONS(2397), 1, sym__emphasis_mark_begin, + ACTIONS(2400), 1, + sym__in_fallback, + [23846] = 2, + ACTIONS(2402), 1, + anon_sym_CARET, + ACTIONS(2404), 1, + anon_sym_CARET_RBRACE, + [23853] = 2, + ACTIONS(2406), 1, + anon_sym_TILDE, + ACTIONS(2408), 1, + anon_sym_TILDE_RBRACE, + [23860] = 2, + ACTIONS(2410), 1, + anon_sym_CARET, + ACTIONS(2412), 1, + anon_sym_CARET_RBRACE, + [23867] = 2, ACTIONS(2414), 1, - sym__in_fallback, - [23869] = 2, + anon_sym_TILDE, ACTIONS(2416), 1, + anon_sym_TILDE_RBRACE, + [23874] = 2, + ACTIONS(2418), 1, sym__emphasis_mark_begin, - ACTIONS(2419), 1, - sym__in_fallback, - [23876] = 2, ACTIONS(2421), 1, - sym__id, - STATE(680), 1, - sym_class_name, - [23883] = 2, - ACTIONS(2058), 1, - anon_sym_PERCENT, - STATE(823), 1, - sym__comment_with_newline, - [23890] = 2, + sym__in_fallback, + [23881] = 2, ACTIONS(2423), 1, - anon_sym_TILDE, - ACTIONS(2425), 1, - anon_sym_TILDE_RBRACE, - [23897] = 2, - ACTIONS(2427), 1, - anon_sym_TILDE, - ACTIONS(2429), 1, - anon_sym_TILDE_RBRACE, - [23904] = 2, + sym__emphasis_mark_begin, + ACTIONS(2426), 1, + sym__in_fallback, + [23888] = 2, + ACTIONS(2428), 1, + sym__emphasis_mark_begin, ACTIONS(2431), 1, - anon_sym_TILDE, + sym__in_fallback, + [23895] = 2, ACTIONS(2433), 1, - anon_sym_TILDE_RBRACE, - [23911] = 2, - ACTIONS(2435), 1, - anon_sym_CARET, - ACTIONS(2437), 1, - anon_sym_CARET_RBRACE, - [23918] = 2, - ACTIONS(2058), 1, - anon_sym_PERCENT, - STATE(900), 1, - sym__comment_with_newline, - [23925] = 2, - ACTIONS(2058), 1, - anon_sym_PERCENT, - STATE(803), 1, - sym__comment_with_newline, - [23932] = 2, - ACTIONS(2439), 1, anon_sym_TILDE, - ACTIONS(2441), 1, + ACTIONS(2435), 1, anon_sym_TILDE_RBRACE, - [23939] = 2, - ACTIONS(2443), 1, + [23902] = 2, + ACTIONS(2437), 1, anon_sym_CARET, - ACTIONS(2445), 1, + ACTIONS(2439), 1, anon_sym_CARET_RBRACE, - [23946] = 2, - ACTIONS(2447), 1, + [23909] = 2, + ACTIONS(2441), 1, sym__emphasis_mark_begin, - ACTIONS(2450), 1, + ACTIONS(2444), 1, sym__in_fallback, - [23953] = 2, - ACTIONS(2452), 1, - anon_sym_TILDE, + [23916] = 2, + ACTIONS(2446), 1, + sym__emphasis_mark_begin, + ACTIONS(2449), 1, + sym__in_fallback, + [23923] = 2, + ACTIONS(2451), 1, + sym__emphasis_mark_begin, ACTIONS(2454), 1, - anon_sym_TILDE_RBRACE, - [23960] = 2, - ACTIONS(2058), 1, - anon_sym_PERCENT, - STATE(816), 1, - sym__comment_with_newline, - [23967] = 2, + sym__in_fallback, + [23930] = 2, ACTIONS(2456), 1, sym__emphasis_mark_begin, ACTIONS(2459), 1, sym__in_fallback, - [23974] = 2, + [23937] = 2, ACTIONS(2461), 1, sym__emphasis_mark_begin, ACTIONS(2464), 1, sym__in_fallback, - [23981] = 2, + [23944] = 2, ACTIONS(2466), 1, sym__emphasis_mark_begin, ACTIONS(2469), 1, sym__in_fallback, - [23988] = 2, + [23951] = 2, ACTIONS(2471), 1, - anon_sym_CARET, - ACTIONS(2473), 1, - anon_sym_CARET_RBRACE, - [23995] = 2, - ACTIONS(2475), 1, sym__emphasis_mark_begin, - ACTIONS(2478), 1, + ACTIONS(2474), 1, sym__in_fallback, - [24002] = 2, - ACTIONS(2480), 1, - anon_sym_TILDE, - ACTIONS(2482), 1, - anon_sym_TILDE_RBRACE, - [24009] = 2, - ACTIONS(2484), 1, + [23958] = 2, + ACTIONS(2476), 1, anon_sym_CARET, - ACTIONS(2486), 1, + ACTIONS(2478), 1, anon_sym_CARET_RBRACE, - [24016] = 2, - ACTIONS(2488), 1, + [23965] = 2, + ACTIONS(2480), 1, sym__emphasis_mark_begin, - ACTIONS(2491), 1, + ACTIONS(2483), 1, sym__in_fallback, - [24023] = 2, - ACTIONS(2058), 1, - anon_sym_PERCENT, - STATE(839), 1, - sym__comment_with_newline, - [24030] = 2, - ACTIONS(2493), 1, + [23972] = 2, + ACTIONS(2485), 1, anon_sym_TILDE, - ACTIONS(2495), 1, + ACTIONS(2487), 1, anon_sym_TILDE_RBRACE, - [24037] = 2, - ACTIONS(2497), 1, + [23979] = 2, + ACTIONS(2489), 1, anon_sym_CARET, - ACTIONS(2499), 1, + ACTIONS(2491), 1, anon_sym_CARET_RBRACE, - [24044] = 2, - ACTIONS(2501), 1, + [23986] = 2, + ACTIONS(2493), 1, sym__emphasis_mark_begin, - ACTIONS(2504), 1, + ACTIONS(2496), 1, sym__in_fallback, - [24051] = 2, - ACTIONS(2506), 1, + [23993] = 2, + ACTIONS(2498), 1, sym__emphasis_mark_begin, - ACTIONS(2509), 1, + ACTIONS(2501), 1, sym__in_fallback, - [24058] = 2, - ACTIONS(2511), 1, + [24000] = 2, + ACTIONS(2503), 1, anon_sym_CARET, - ACTIONS(2513), 1, + ACTIONS(2505), 1, anon_sym_CARET_RBRACE, - [24065] = 2, - ACTIONS(2515), 1, - anon_sym_TILDE, - ACTIONS(2517), 1, - anon_sym_TILDE_RBRACE, - [24072] = 2, - ACTIONS(2519), 1, + [24007] = 2, + ACTIONS(2507), 1, anon_sym_CARET, - ACTIONS(2521), 1, + ACTIONS(2509), 1, anon_sym_CARET_RBRACE, - [24079] = 2, - ACTIONS(2523), 1, + [24014] = 2, + ACTIONS(2511), 1, sym__emphasis_mark_begin, - ACTIONS(2526), 1, + ACTIONS(2514), 1, sym__in_fallback, - [24086] = 2, - ACTIONS(2058), 1, - anon_sym_PERCENT, - STATE(1008), 1, - sym__comment_with_newline, - [24093] = 2, + [24021] = 2, + ACTIONS(2516), 1, + anon_sym_TILDE, + ACTIONS(2518), 1, + anon_sym_TILDE_RBRACE, + [24028] = 2, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(2522), 1, + anon_sym_TILDE_RBRACE, + [24035] = 2, + ACTIONS(2524), 1, + anon_sym_CARET, + ACTIONS(2526), 1, + anon_sym_CARET_RBRACE, + [24042] = 2, ACTIONS(2528), 1, - sym__emphasis_mark_begin, - ACTIONS(2531), 1, - sym__in_fallback, - [24100] = 2, - ACTIONS(2058), 1, - anon_sym_PERCENT, - STATE(862), 1, - sym__comment_with_newline, - [24107] = 2, - ACTIONS(2533), 1, - sym__emphasis_mark_begin, - ACTIONS(2536), 1, - sym__in_fallback, - [24114] = 2, - ACTIONS(2538), 1, anon_sym_TILDE, - ACTIONS(2540), 1, + ACTIONS(2530), 1, anon_sym_TILDE_RBRACE, - [24121] = 2, - ACTIONS(2542), 1, + [24049] = 2, + ACTIONS(2532), 1, anon_sym_TILDE, - ACTIONS(2544), 1, + ACTIONS(2534), 1, anon_sym_TILDE_RBRACE, - [24128] = 2, - ACTIONS(2546), 1, + [24056] = 2, + ACTIONS(2536), 1, sym__emphasis_mark_begin, - ACTIONS(2549), 1, + ACTIONS(2539), 1, sym__in_fallback, - [24135] = 2, + [24063] = 1, + ACTIONS(2541), 1, + anon_sym_EQ_RBRACE, + [24067] = 1, + ACTIONS(2543), 1, + anon_sym_EQ_RBRACE, + [24071] = 1, + ACTIONS(2545), 1, + anon_sym_RBRACE, + [24075] = 1, + ACTIONS(2547), 1, + sym__newline, + [24079] = 1, + ACTIONS(2549), 1, + anon_sym_RPAREN, + [24083] = 1, ACTIONS(2551), 1, - anon_sym_CARET, + anon_sym_RBRACK2, + [24087] = 1, ACTIONS(2553), 1, - anon_sym_CARET_RBRACE, - [24142] = 2, + sym__verbatim_end, + [24091] = 1, ACTIONS(2555), 1, - sym__emphasis_mark_begin, - ACTIONS(2558), 1, - sym__in_fallback, - [24149] = 2, - ACTIONS(2058), 1, - anon_sym_PERCENT, - STATE(885), 1, - sym__comment_with_newline, - [24156] = 2, - ACTIONS(2058), 1, - anon_sym_PERCENT, - STATE(919), 1, - sym__comment_with_newline, - [24163] = 2, - ACTIONS(2560), 1, - sym__emphasis_mark_begin, + sym_emphasis_end, + [24095] = 1, + ACTIONS(2557), 1, + anon_sym_GT, + [24099] = 1, + ACTIONS(2559), 1, + anon_sym_EQ_RBRACE, + [24103] = 1, + ACTIONS(2561), 1, + anon_sym_PLUS_RBRACE, + [24107] = 1, ACTIONS(2563), 1, - sym__in_fallback, - [24170] = 2, + anon_sym_DASH_RBRACE, + [24111] = 1, ACTIONS(2565), 1, - anon_sym_CARET, + anon_sym_RBRACE, + [24115] = 1, ACTIONS(2567), 1, - anon_sym_CARET_RBRACE, - [24177] = 1, + anon_sym_RBRACK, + [24119] = 1, ACTIONS(2569), 1, - anon_sym_RBRACE, - [24181] = 1, + sym__verbatim_end, + [24123] = 1, ACTIONS(2571), 1, - anon_sym_RBRACK2, - [24185] = 1, + anon_sym_RBRACK, + [24127] = 1, ACTIONS(2573), 1, - anon_sym_RPAREN, - [24189] = 1, + sym__verbatim_end, + [24131] = 1, ACTIONS(2575), 1, - sym__emphasis_end_check, - [24193] = 1, - ACTIONS(2577), 1, anon_sym_RBRACE, - [24197] = 1, + [24135] = 1, + ACTIONS(2577), 1, + sym_emphasis_end, + [24139] = 1, ACTIONS(2579), 1, - sym__newline, - [24201] = 1, + anon_sym_RBRACK2, + [24143] = 1, ACTIONS(2581), 1, - sym__verbatim_end, - [24205] = 1, + anon_sym_RPAREN, + [24147] = 1, ACTIONS(2583), 1, - anon_sym_GT, - [24209] = 1, + anon_sym_RBRACE, + [24151] = 1, ACTIONS(2585), 1, - anon_sym_EQ_RBRACE, - [24213] = 1, + sym__newline, + [24155] = 1, ACTIONS(2587), 1, - anon_sym_PLUS_RBRACE, - [24217] = 1, - ACTIONS(2589), 1, anon_sym_DASH_RBRACE, - [24221] = 1, + [24159] = 1, + ACTIONS(2589), 1, + sym__verbatim_end, + [24163] = 1, ACTIONS(2591), 1, - anon_sym_RBRACK, - [24225] = 1, + anon_sym_PLUS_RBRACE, + [24167] = 1, ACTIONS(2593), 1, - sym__verbatim_end, - [24229] = 1, + anon_sym_GT, + [24171] = 1, ACTIONS(2595), 1, - anon_sym_RBRACE, - [24233] = 1, + anon_sym_EQ_RBRACE, + [24175] = 1, ACTIONS(2597), 1, - anon_sym_RBRACK2, - [24237] = 1, + anon_sym_PLUS_RBRACE, + [24179] = 1, ACTIONS(2599), 1, - anon_sym_RPAREN, - [24241] = 1, + anon_sym_DASH_RBRACE, + [24183] = 1, ACTIONS(2601), 1, - sym__emphasis_end_check, - [24245] = 1, + anon_sym_RBRACK, + [24187] = 1, ACTIONS(2603), 1, - anon_sym_RBRACE, - [24249] = 1, + anon_sym_EQ_RBRACE, + [24191] = 1, ACTIONS(2605), 1, - anon_sym_DASH_RBRACE, - [24253] = 1, + anon_sym_GT, + [24195] = 1, ACTIONS(2607), 1, - sym__newline, - [24257] = 1, + sym__verbatim_end, + [24199] = 1, ACTIONS(2609), 1, anon_sym_RBRACE, - [24261] = 1, + [24203] = 1, ACTIONS(2611), 1, - sym__verbatim_end, - [24265] = 1, + sym_emphasis_end, + [24207] = 1, ACTIONS(2613), 1, - sym__verbatim_end, - [24269] = 1, + anon_sym_RBRACK2, + [24211] = 1, ACTIONS(2615), 1, - anon_sym_RBRACK, - [24273] = 1, + anon_sym_RPAREN, + [24215] = 1, ACTIONS(2617), 1, - anon_sym_DASH_RBRACE, - [24277] = 1, + anon_sym_RBRACE, + [24219] = 1, ACTIONS(2619), 1, - anon_sym_GT, - [24281] = 1, + sym__newline, + [24223] = 1, ACTIONS(2621), 1, - anon_sym_EQ_RBRACE, - [24285] = 1, + sym__verbatim_end, + [24227] = 1, ACTIONS(2623), 1, - anon_sym_PLUS_RBRACE, - [24289] = 1, + sym__newline, + [24231] = 1, ACTIONS(2625), 1, - anon_sym_DASH_RBRACE, - [24293] = 1, + sym__verbatim_end, + [24235] = 1, ACTIONS(2627), 1, - anon_sym_PLUS_RBRACE, - [24297] = 1, + anon_sym_GT, + [24239] = 1, ACTIONS(2629), 1, anon_sym_EQ_RBRACE, - [24301] = 1, + [24243] = 1, ACTIONS(2631), 1, - anon_sym_RBRACK, - [24305] = 1, + anon_sym_PLUS_RBRACE, + [24247] = 1, ACTIONS(2633), 1, - anon_sym_GT, - [24309] = 1, + anon_sym_DASH_RBRACE, + [24251] = 1, ACTIONS(2635), 1, - sym__verbatim_end, - [24313] = 1, + anon_sym_RBRACK, + [24255] = 1, ACTIONS(2637), 1, - sym__newline, - [24317] = 1, + anon_sym_RBRACE, + [24259] = 1, ACTIONS(2639), 1, - sym__verbatim_end, - [24321] = 1, + anon_sym_RPAREN, + [24263] = 1, ACTIONS(2641), 1, - anon_sym_RBRACE, - [24325] = 1, - ACTIONS(2643), 1, anon_sym_RBRACK2, - [24329] = 1, + [24267] = 1, + ACTIONS(2643), 1, + sym__verbatim_end, + [24271] = 1, ACTIONS(2645), 1, - anon_sym_RPAREN, - [24333] = 1, + anon_sym_RBRACE, + [24275] = 1, ACTIONS(2647), 1, - sym__emphasis_end_check, - [24337] = 1, + sym_emphasis_end, + [24279] = 1, ACTIONS(2649), 1, - anon_sym_RBRACE, - [24341] = 1, + anon_sym_RBRACK2, + [24283] = 1, ACTIONS(2651), 1, - anon_sym_RBRACE, - [24345] = 1, + anon_sym_RPAREN, + [24287] = 1, ACTIONS(2653), 1, - sym__newline, - [24349] = 1, + anon_sym_RBRACE, + [24291] = 1, ACTIONS(2655), 1, - sym__emphasis_end_check, - [24353] = 1, + sym__newline, + [24295] = 1, ACTIONS(2657), 1, - anon_sym_RPAREN, - [24357] = 1, + sym_emphasis_end, + [24299] = 1, ACTIONS(2659), 1, - sym__verbatim_end, - [24361] = 1, + anon_sym_RBRACE, + [24303] = 1, ACTIONS(2661), 1, - anon_sym_RBRACK2, - [24365] = 1, + sym__verbatim_end, + [24307] = 1, ACTIONS(2663), 1, - anon_sym_RBRACE, - [24369] = 1, + sym__verbatim_end, + [24311] = 1, ACTIONS(2665), 1, anon_sym_GT, - [24373] = 1, + [24315] = 1, ACTIONS(2667), 1, anon_sym_EQ_RBRACE, - [24377] = 1, + [24319] = 1, ACTIONS(2669), 1, anon_sym_PLUS_RBRACE, - [24381] = 1, + [24323] = 1, ACTIONS(2671), 1, anon_sym_DASH_RBRACE, - [24385] = 1, + [24327] = 1, ACTIONS(2673), 1, - sym__verbatim_end, - [24389] = 1, - ACTIONS(2675), 1, anon_sym_RBRACK, - [24393] = 1, + [24331] = 1, + ACTIONS(2675), 1, + anon_sym_EQ_RBRACE, + [24335] = 1, ACTIONS(2677), 1, - anon_sym_RBRACK, - [24397] = 1, + sym__verbatim_end, + [24339] = 1, ACTIONS(2679), 1, - anon_sym_DASH_RBRACE, - [24401] = 1, + anon_sym_RBRACE, + [24343] = 1, ACTIONS(2681), 1, - anon_sym_PLUS_RBRACE, - [24405] = 1, + sym_emphasis_end, + [24347] = 1, ACTIONS(2683), 1, - anon_sym_EQ_RBRACE, - [24409] = 1, + anon_sym_RBRACK2, + [24351] = 1, ACTIONS(2685), 1, - sym__verbatim_end, - [24413] = 1, + anon_sym_RPAREN, + [24355] = 1, ACTIONS(2687), 1, anon_sym_RBRACE, - [24417] = 1, + [24359] = 1, ACTIONS(2689), 1, - anon_sym_RBRACK2, - [24421] = 1, + sym__newline, + [24363] = 1, ACTIONS(2691), 1, - anon_sym_RPAREN, - [24425] = 1, + anon_sym_DASH_RBRACE, + [24367] = 1, ACTIONS(2693), 1, - sym__emphasis_end_check, - [24429] = 1, + anon_sym_PLUS_RBRACE, + [24371] = 1, ACTIONS(2695), 1, - anon_sym_RBRACE, - [24433] = 1, + sym__verbatim_end, + [24375] = 1, ACTIONS(2697), 1, - anon_sym_GT, - [24437] = 1, + anon_sym_RBRACK, + [24379] = 1, ACTIONS(2699), 1, - sym__newline, - [24441] = 1, + anon_sym_EQ, + [24383] = 1, ACTIONS(2701), 1, - sym__verbatim_end, - [24445] = 1, + anon_sym_GT, + [24387] = 1, ACTIONS(2703), 1, - sym__newline, - [24449] = 1, + anon_sym_DASH_RBRACE, + [24391] = 1, ACTIONS(2705), 1, - sym__verbatim_end, - [24453] = 1, + anon_sym_PLUS_RBRACE, + [24395] = 1, ACTIONS(2707), 1, - anon_sym_RBRACE, - [24457] = 1, + anon_sym_DASH_RBRACE, + [24399] = 1, ACTIONS(2709), 1, - sym__emphasis_end_check, - [24461] = 1, + anon_sym_RBRACK2, + [24403] = 1, ACTIONS(2711), 1, - anon_sym_GT, - [24465] = 1, + sym_emphasis_end, + [24407] = 1, ACTIONS(2713), 1, - anon_sym_EQ_RBRACE, - [24469] = 1, + anon_sym_RBRACK, + [24411] = 1, ACTIONS(2715), 1, - anon_sym_PLUS_RBRACE, - [24473] = 1, + anon_sym_GT, + [24415] = 1, ACTIONS(2717), 1, - anon_sym_DASH_RBRACE, - [24477] = 1, + anon_sym_RBRACE, + [24419] = 1, ACTIONS(2719), 1, - anon_sym_RPAREN, - [24481] = 1, + sym__verbatim_end, + [24423] = 1, ACTIONS(2721), 1, - anon_sym_RBRACK2, - [24485] = 1, + sym__verbatim_end, + [24427] = 1, ACTIONS(2723), 1, - anon_sym_RBRACK, - [24489] = 1, - ACTIONS(2725), 1, anon_sym_RBRACE, - [24493] = 1, + [24431] = 1, + ACTIONS(2725), 1, + sym_emphasis_end, + [24435] = 1, ACTIONS(2727), 1, - sym__verbatim_end, - [24497] = 1, + anon_sym_RBRACK2, + [24439] = 1, ACTIONS(2729), 1, - anon_sym_RBRACK, - [24501] = 1, + anon_sym_RPAREN, + [24443] = 1, ACTIONS(2731), 1, - sym__verbatim_end, - [24505] = 1, - ACTIONS(2733), 1, anon_sym_RBRACE, - [24509] = 1, + [24447] = 1, + ACTIONS(2733), 1, + sym__newline, + [24451] = 1, ACTIONS(2735), 1, - anon_sym_RBRACK2, - [24513] = 1, + sym__verbatim_end, + [24455] = 1, ACTIONS(2737), 1, - anon_sym_RPAREN, - [24517] = 1, + anon_sym_RBRACE, + [24459] = 1, ACTIONS(2739), 1, - sym__emphasis_end_check, - [24521] = 1, + anon_sym_RPAREN, + [24463] = 1, ACTIONS(2741), 1, - anon_sym_RBRACE, - [24525] = 1, + anon_sym_RBRACK2, + [24467] = 1, ACTIONS(2743), 1, - anon_sym_PLUS_RBRACE, - [24529] = 1, + sym_emphasis_end, + [24471] = 1, ACTIONS(2745), 1, - anon_sym_PLUS_RBRACE, - [24533] = 1, + anon_sym_RBRACE, + [24475] = 1, ACTIONS(2747), 1, - anon_sym_EQ_RBRACE, - [24537] = 1, + sym__verbatim_end, + [24479] = 1, ACTIONS(2749), 1, - anon_sym_GT, - [24541] = 1, + anon_sym_RBRACK, + [24483] = 1, ACTIONS(2751), 1, - sym__verbatim_end, - [24545] = 1, + anon_sym_RBRACE, + [24487] = 1, ACTIONS(2753), 1, sym__newline, - [24549] = 1, + [24491] = 1, ACTIONS(2755), 1, - anon_sym_RBRACE, - [24553] = 1, + anon_sym_DASH_RBRACE, + [24495] = 1, ACTIONS(2757), 1, - sym__emphasis_end_check, - [24557] = 1, + anon_sym_PLUS_RBRACE, + [24499] = 1, ACTIONS(2759), 1, anon_sym_RPAREN, - [24561] = 1, + [24503] = 1, ACTIONS(2761), 1, - anon_sym_RBRACK2, - [24565] = 1, + anon_sym_GT, + [24507] = 1, ACTIONS(2763), 1, - anon_sym_RBRACE, - [24569] = 1, + anon_sym_RBRACK, + [24511] = 1, ACTIONS(2765), 1, sym__verbatim_end, - [24573] = 1, + [24515] = 1, ACTIONS(2767), 1, - anon_sym_RBRACK, - [24577] = 1, + sym__newline, + [24519] = 1, ACTIONS(2769), 1, anon_sym_DASH_RBRACE, - [24581] = 1, + [24523] = 1, ACTIONS(2771), 1, - anon_sym_PLUS_RBRACE, - [24585] = 1, + anon_sym_DQUOTE, + [24527] = 1, ACTIONS(2773), 1, - anon_sym_EQ_RBRACE, - [24589] = 1, + aux_sym_value_token1, + [24531] = 1, ACTIONS(2775), 1, - anon_sym_GT, - [24593] = 1, + anon_sym_RBRACK, + [24535] = 1, ACTIONS(2777), 1, - sym__verbatim_end, - [24597] = 1, + sym__verbatim_content, + [24539] = 1, ACTIONS(2779), 1, - sym__newline, - [24601] = 1, + sym__verbatim_content, + [24543] = 1, ACTIONS(2781), 1, - anon_sym_RBRACE, - [24605] = 1, + anon_sym_RBRACK, + [24547] = 1, ACTIONS(2783), 1, - sym__emphasis_end_check, - [24609] = 1, + sym__verbatim_content, + [24551] = 1, ACTIONS(2785), 1, - anon_sym_RPAREN, - [24613] = 1, + anon_sym_PLUS_RBRACE, + [24555] = 1, ACTIONS(2787), 1, - sym__verbatim_content, - [24617] = 1, + anon_sym_RBRACK, + [24559] = 1, ACTIONS(2789), 1, - sym__verbatim_content, - [24621] = 1, + anon_sym_EQ_RBRACE, + [24563] = 1, ACTIONS(2791), 1, - anon_sym_RBRACK, - [24625] = 1, + aux_sym_inline_link_destination_token1, + [24567] = 1, ACTIONS(2793), 1, - sym__verbatim_content, - [24629] = 1, + sym_language, + [24571] = 1, ACTIONS(2795), 1, - anon_sym_RBRACK2, - [24633] = 1, + sym__verbatim_content, + [24575] = 1, ACTIONS(2797), 1, anon_sym_RBRACK, - [24637] = 1, + [24579] = 1, ACTIONS(2799), 1, - aux_sym_inline_link_destination_token1, - [24641] = 1, + anon_sym_RBRACK, + [24583] = 1, ACTIONS(2801), 1, - anon_sym_RBRACE, - [24645] = 1, + sym__verbatim_content, + [24587] = 1, ACTIONS(2803), 1, - sym_language, - [24649] = 1, + anon_sym_GT, + [24591] = 1, ACTIONS(2805), 1, - sym__verbatim_content, - [24653] = 1, + anon_sym_RBRACK, + [24595] = 1, ACTIONS(2807), 1, sym__verbatim_end, - [24657] = 1, + [24599] = 1, ACTIONS(2809), 1, - anon_sym_RBRACK, - [24661] = 1, + aux_sym_inline_link_destination_token1, + [24603] = 1, ACTIONS(2811), 1, - sym__verbatim_content, - [24665] = 1, + sym_language, + [24607] = 1, ACTIONS(2813), 1, - anon_sym_RBRACK, - [24669] = 1, + sym__verbatim_content, + [24611] = 1, ACTIONS(2815), 1, - anon_sym_RBRACK, - [24673] = 1, + sym__verbatim_end, + [24615] = 1, ACTIONS(2817), 1, - aux_sym_inline_link_destination_token1, - [24677] = 1, + anon_sym_RBRACK, + [24619] = 1, ACTIONS(2819), 1, - anon_sym_DASH_RBRACE, - [24681] = 1, + sym__verbatim_content, + [24623] = 1, ACTIONS(2821), 1, - sym_language, - [24685] = 1, + anon_sym_GT, + [24627] = 1, ACTIONS(2823), 1, - sym__verbatim_content, - [24689] = 1, + anon_sym_DASH_RBRACE, + [24631] = 1, ACTIONS(2825), 1, - anon_sym_RBRACK, - [24693] = 1, + anon_sym_PLUS_RBRACE, + [24635] = 1, ACTIONS(2827), 1, - anon_sym_RBRACK, - [24697] = 1, + aux_sym_inline_link_destination_token1, + [24639] = 1, ACTIONS(2829), 1, - sym__verbatim_content, - [24701] = 1, + sym_language, + [24643] = 1, ACTIONS(2831), 1, - sym__whitespace, - [24705] = 1, + sym__verbatim_content, + [24647] = 1, ACTIONS(2833), 1, anon_sym_EQ_RBRACE, - [24709] = 1, + [24651] = 1, ACTIONS(2835), 1, - aux_sym_inline_link_destination_token1, - [24713] = 1, + anon_sym_RBRACK, + [24655] = 1, ACTIONS(2837), 1, - anon_sym_GT, - [24717] = 1, + sym__verbatim_content, + [24659] = 1, ACTIONS(2839), 1, - sym_language, - [24721] = 1, + sym__newline, + [24663] = 1, ACTIONS(2841), 1, - sym__verbatim_content, - [24725] = 1, + anon_sym_GT, + [24667] = 1, ACTIONS(2843), 1, - sym__verbatim_end, - [24729] = 1, + anon_sym_RBRACE, + [24671] = 1, ACTIONS(2845), 1, - anon_sym_RBRACK, - [24733] = 1, + aux_sym_inline_link_destination_token1, + [24675] = 1, ACTIONS(2847), 1, - sym__verbatim_content, - [24737] = 1, + sym_language, + [24679] = 1, ACTIONS(2849), 1, - sym__newline, - [24741] = 1, + sym__verbatim_content, + [24683] = 1, ACTIONS(2851), 1, - anon_sym_DASH_RBRACE, - [24745] = 1, - ACTIONS(2853), 1, aux_sym_inline_link_destination_token1, - [24749] = 1, + [24687] = 1, + ACTIONS(2853), 1, + anon_sym_RBRACK, + [24691] = 1, ACTIONS(2855), 1, - anon_sym_RBRACE, - [24753] = 1, + sym__verbatim_content, + [24695] = 1, ACTIONS(2857), 1, - sym_language, - [24757] = 1, + anon_sym_RBRACE, + [24699] = 1, ACTIONS(2859), 1, - sym__verbatim_content, - [24761] = 1, + anon_sym_RPAREN, + [24703] = 1, ACTIONS(2861), 1, - anon_sym_PLUS_RBRACE, - [24765] = 1, + sym_language, + [24707] = 1, ACTIONS(2863), 1, - anon_sym_RBRACK, - [24769] = 1, + aux_sym_inline_link_destination_token1, + [24711] = 1, ACTIONS(2865), 1, - sym__verbatim_content, - [24773] = 1, + sym_language, + [24715] = 1, ACTIONS(2867), 1, - sym__emphasis_end_check, - [24777] = 1, + sym__verbatim_content, + [24719] = 1, ACTIONS(2869), 1, - anon_sym_EQ_RBRACE, - [24781] = 1, + anon_sym_RPAREN, + [24723] = 1, ACTIONS(2871), 1, - aux_sym_inline_link_destination_token1, - [24785] = 1, + anon_sym_RBRACK, + [24727] = 1, ACTIONS(2873), 1, - anon_sym_RPAREN, - [24789] = 1, + sym__verbatim_content, + [24731] = 1, ACTIONS(2875), 1, - sym_language, - [24793] = 1, + anon_sym_RBRACK2, + [24735] = 1, ACTIONS(2877), 1, sym__verbatim_content, - [24797] = 1, + [24739] = 1, ACTIONS(2879), 1, - anon_sym_GT, - [24801] = 1, + sym__verbatim_end, + [24743] = 1, ACTIONS(2881), 1, - anon_sym_RBRACK, - [24805] = 1, + aux_sym_inline_link_destination_token1, + [24747] = 1, ACTIONS(2883), 1, - sym__verbatim_content, - [24809] = 1, + sym_language, + [24751] = 1, ACTIONS(2885), 1, - anon_sym_RBRACK2, - [24813] = 1, + sym__verbatim_content, + [24755] = 1, ACTIONS(2887), 1, sym__verbatim_end, - [24817] = 1, + [24759] = 1, ACTIONS(2889), 1, - aux_sym_inline_link_destination_token1, - [24821] = 1, - ACTIONS(2891), 1, anon_sym_RBRACK, - [24825] = 1, + [24763] = 1, + ACTIONS(2891), 1, + sym__verbatim_content, + [24767] = 1, ACTIONS(2893), 1, - sym_language, - [24829] = 1, + sym_emphasis_end, + [24771] = 1, ACTIONS(2895), 1, - sym__verbatim_content, - [24833] = 1, + anon_sym_EQ, + [24775] = 1, ACTIONS(2897), 1, - anon_sym_DASH_RBRACE, - [24837] = 1, + sym__emphasis_mark_begin, + [24779] = 1, ACTIONS(2899), 1, - anon_sym_RBRACK, - [24841] = 1, + aux_sym_inline_link_destination_token1, + [24783] = 1, ACTIONS(2901), 1, - sym__verbatim_content, - [24845] = 1, + sym_language, + [24787] = 1, ACTIONS(2903), 1, - anon_sym_PLUS_RBRACE, - [24849] = 1, + sym__verbatim_content, + [24791] = 1, ACTIONS(2905), 1, - anon_sym_EQ_RBRACE, - [24853] = 1, + ts_builtin_sym_end, + [24795] = 1, ACTIONS(2907), 1, - aux_sym_inline_link_destination_token1, - [24857] = 1, + anon_sym_RBRACK, + [24799] = 1, ACTIONS(2909), 1, - anon_sym_GT, - [24861] = 1, + sym__verbatim_content, + [24803] = 1, ACTIONS(2911), 1, - sym_language, - [24865] = 1, + anon_sym_RBRACE, + [24807] = 1, ACTIONS(2913), 1, - sym__verbatim_content, - [24869] = 1, + ts_builtin_sym_end, + [24811] = 1, ACTIONS(2915), 1, - sym__verbatim_end, - [24873] = 1, + anon_sym_RBRACK2, + [24815] = 1, ACTIONS(2917), 1, - anon_sym_RBRACK, - [24877] = 1, + aux_sym_inline_link_destination_token1, + [24819] = 1, ACTIONS(2919), 1, - sym__verbatim_content, - [24881] = 1, + sym_language, + [24823] = 1, ACTIONS(2921), 1, - sym__newline, - [24885] = 1, + sym__verbatim_content, + [24827] = 1, ACTIONS(2923), 1, - anon_sym_DQUOTE, - [24889] = 1, + anon_sym_RBRACE, + [24831] = 1, ACTIONS(2925), 1, - aux_sym_inline_link_destination_token1, - [24893] = 1, + anon_sym_RBRACK, + [24835] = 1, ACTIONS(2927), 1, - aux_sym_value_token1, - [24897] = 1, + sym__verbatim_content, + [24839] = 1, ACTIONS(2929), 1, - sym_language, - [24901] = 1, + sym__verbatim_end, + [24843] = 1, ACTIONS(2931), 1, - sym__verbatim_content, - [24905] = 1, + sym_emphasis_end, + [24847] = 1, ACTIONS(2933), 1, - sym__verbatim_content, - [24909] = 1, + sym__whitespace, + [24851] = 1, ACTIONS(2935), 1, - anon_sym_RBRACK, - [24913] = 1, + aux_sym_inline_link_destination_token1, + [24855] = 1, ACTIONS(2937), 1, - sym__verbatim_content, - [24917] = 1, + sym_language, + [24859] = 1, ACTIONS(2939), 1, - anon_sym_RBRACE, - [24921] = 1, + sym__verbatim_content, + [24863] = 1, ACTIONS(2941), 1, - sym__verbatim_end, - [24925] = 1, + sym__newline, + [24867] = 1, ACTIONS(2943), 1, - aux_sym_inline_link_destination_token1, - [24929] = 1, + anon_sym_RBRACK, + [24871] = 1, ACTIONS(2945), 1, - aux_sym_inline_link_destination_token1, - [24933] = 1, + sym__verbatim_content, + [24875] = 1, ACTIONS(2947), 1, - sym_language, - [24937] = 1, + anon_sym_EQ_RBRACE, + [24879] = 1, ACTIONS(2949), 1, - sym__verbatim_content, - [24941] = 1, + anon_sym_PLUS_RBRACE, + [24883] = 1, ACTIONS(2951), 1, - sym__emphasis_end_check, - [24945] = 1, - ACTIONS(2953), 1, anon_sym_RBRACK, - [24949] = 1, + [24887] = 1, + ACTIONS(2953), 1, + aux_sym_inline_link_destination_token1, + [24891] = 1, ACTIONS(2955), 1, - sym__verbatim_content, - [24953] = 1, + sym_language, + [24895] = 1, ACTIONS(2957), 1, - sym__emphasis_end_check, - [24957] = 1, + sym__emphasis_mark_begin, + [24899] = 1, ACTIONS(2959), 1, - sym_language, - [24961] = 1, + sym__emphasis_mark_begin, + [24903] = 1, ACTIONS(2961), 1, - aux_sym_inline_link_destination_token1, - [24965] = 1, + sym__emphasis_mark_begin, + [24907] = 1, ACTIONS(2963), 1, - anon_sym_RPAREN, - [24969] = 1, + sym__emphasis_mark_begin, + [24911] = 1, ACTIONS(2965), 1, - sym_language, - [24973] = 1, + sym__emphasis_mark_begin, + [24915] = 1, ACTIONS(2967), 1, sym__emphasis_mark_begin, - [24977] = 1, + [24919] = 1, ACTIONS(2969), 1, - ts_builtin_sym_end, - [24981] = 1, - ACTIONS(2971), 1, - ts_builtin_sym_end, - [24985] = 1, - ACTIONS(2973), 1, - anon_sym_RBRACK2, - [24989] = 1, - ACTIONS(2975), 1, - anon_sym_EQ, - [24993] = 1, - ACTIONS(2977), 1, - anon_sym_EQ, - [24997] = 1, - ACTIONS(2979), 1, - anon_sym_RBRACE, - [25001] = 1, - ACTIONS(2981), 1, - sym__newline, - [25005] = 1, - ACTIONS(2983), 1, - sym__verbatim_end, - [25009] = 1, - ACTIONS(2985), 1, - anon_sym_RBRACK, - [25013] = 1, - ACTIONS(2987), 1, - sym__emphasis_mark_begin, - [25017] = 1, - ACTIONS(2989), 1, - sym__emphasis_mark_begin, - [25021] = 1, - ACTIONS(2991), 1, sym__emphasis_mark_begin, - [25025] = 1, - ACTIONS(2993), 1, - sym__emphasis_mark_begin, - [25029] = 1, - ACTIONS(2995), 1, - sym__emphasis_mark_begin, - [25033] = 1, - ACTIONS(2997), 1, - sym__emphasis_mark_begin, - [25037] = 1, - ACTIONS(2999), 1, - sym__emphasis_mark_begin, - [25041] = 1, - ACTIONS(3001), 1, + [24923] = 1, + ACTIONS(2971), 1, sym__emphasis_mark_begin, - [25045] = 1, - ACTIONS(3003), 1, + [24927] = 1, + ACTIONS(2973), 1, sym__emphasis_mark_begin, - [25049] = 1, - ACTIONS(3005), 1, + [24931] = 1, + ACTIONS(2975), 1, sym__emphasis_mark_begin, }; @@ -41068,370 +40495,370 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(132)] = 0, [SMALL_STATE(133)] = 48, [SMALL_STATE(134)] = 100, - [SMALL_STATE(135)] = 152, + [SMALL_STATE(135)] = 148, [SMALL_STATE(136)] = 200, - [SMALL_STATE(137)] = 252, - [SMALL_STATE(138)] = 302, - [SMALL_STATE(139)] = 354, - [SMALL_STATE(140)] = 402, + [SMALL_STATE(137)] = 250, + [SMALL_STATE(138)] = 300, + [SMALL_STATE(139)] = 348, + [SMALL_STATE(140)] = 398, [SMALL_STATE(141)] = 450, - [SMALL_STATE(142)] = 500, - [SMALL_STATE(143)] = 548, - [SMALL_STATE(144)] = 596, - [SMALL_STATE(145)] = 648, - [SMALL_STATE(146)] = 696, - [SMALL_STATE(147)] = 744, - [SMALL_STATE(148)] = 794, - [SMALL_STATE(149)] = 842, - [SMALL_STATE(150)] = 892, - [SMALL_STATE(151)] = 940, - [SMALL_STATE(152)] = 992, - [SMALL_STATE(153)] = 1040, - [SMALL_STATE(154)] = 1090, - [SMALL_STATE(155)] = 1138, - [SMALL_STATE(156)] = 1188, - [SMALL_STATE(157)] = 1236, + [SMALL_STATE(142)] = 498, + [SMALL_STATE(143)] = 546, + [SMALL_STATE(144)] = 598, + [SMALL_STATE(145)] = 650, + [SMALL_STATE(146)] = 698, + [SMALL_STATE(147)] = 746, + [SMALL_STATE(148)] = 798, + [SMALL_STATE(149)] = 848, + [SMALL_STATE(150)] = 896, + [SMALL_STATE(151)] = 946, + [SMALL_STATE(152)] = 994, + [SMALL_STATE(153)] = 1042, + [SMALL_STATE(154)] = 1092, + [SMALL_STATE(155)] = 1144, + [SMALL_STATE(156)] = 1192, + [SMALL_STATE(157)] = 1240, [SMALL_STATE(158)] = 1288, [SMALL_STATE(159)] = 1336, - [SMALL_STATE(160)] = 1388, - [SMALL_STATE(161)] = 1436, - [SMALL_STATE(162)] = 1486, - [SMALL_STATE(163)] = 1534, + [SMALL_STATE(160)] = 1384, + [SMALL_STATE(161)] = 1434, + [SMALL_STATE(162)] = 1484, + [SMALL_STATE(163)] = 1532, [SMALL_STATE(164)] = 1584, [SMALL_STATE(165)] = 1636, [SMALL_STATE(166)] = 1684, [SMALL_STATE(167)] = 1732, - [SMALL_STATE(168)] = 1784, - [SMALL_STATE(169)] = 1832, - [SMALL_STATE(170)] = 1880, - [SMALL_STATE(171)] = 1930, + [SMALL_STATE(168)] = 1780, + [SMALL_STATE(169)] = 1830, + [SMALL_STATE(170)] = 1882, + [SMALL_STATE(171)] = 1932, [SMALL_STATE(172)] = 1980, [SMALL_STATE(173)] = 2027, [SMALL_STATE(174)] = 2072, - [SMALL_STATE(175)] = 2117, + [SMALL_STATE(175)] = 2119, [SMALL_STATE(176)] = 2164, [SMALL_STATE(177)] = 2211, [SMALL_STATE(178)] = 2256, - [SMALL_STATE(179)] = 2303, - [SMALL_STATE(180)] = 2350, - [SMALL_STATE(181)] = 2395, + [SMALL_STATE(179)] = 2301, + [SMALL_STATE(180)] = 2348, + [SMALL_STATE(181)] = 2393, [SMALL_STATE(182)] = 2440, - [SMALL_STATE(183)] = 2487, + [SMALL_STATE(183)] = 2485, [SMALL_STATE(184)] = 2532, [SMALL_STATE(185)] = 2579, - [SMALL_STATE(186)] = 2626, + [SMALL_STATE(186)] = 2624, [SMALL_STATE(187)] = 2671, [SMALL_STATE(188)] = 2716, - [SMALL_STATE(189)] = 2763, - [SMALL_STATE(190)] = 2810, - [SMALL_STATE(191)] = 2855, + [SMALL_STATE(189)] = 2761, + [SMALL_STATE(190)] = 2806, + [SMALL_STATE(191)] = 2853, [SMALL_STATE(192)] = 2900, - [SMALL_STATE(193)] = 2945, - [SMALL_STATE(194)] = 2990, - [SMALL_STATE(195)] = 3035, - [SMALL_STATE(196)] = 3082, - [SMALL_STATE(197)] = 3127, - [SMALL_STATE(198)] = 3174, - [SMALL_STATE(199)] = 3221, + [SMALL_STATE(193)] = 2947, + [SMALL_STATE(194)] = 2994, + [SMALL_STATE(195)] = 3041, + [SMALL_STATE(196)] = 3086, + [SMALL_STATE(197)] = 3131, + [SMALL_STATE(198)] = 3176, + [SMALL_STATE(199)] = 3223, [SMALL_STATE(200)] = 3268, - [SMALL_STATE(201)] = 3317, - [SMALL_STATE(202)] = 3364, - [SMALL_STATE(203)] = 3411, - [SMALL_STATE(204)] = 3456, - [SMALL_STATE(205)] = 3503, - [SMALL_STATE(206)] = 3548, - [SMALL_STATE(207)] = 3595, - [SMALL_STATE(208)] = 3642, - [SMALL_STATE(209)] = 3687, - [SMALL_STATE(210)] = 3734, - [SMALL_STATE(211)] = 3783, - [SMALL_STATE(212)] = 3830, - [SMALL_STATE(213)] = 3875, - [SMALL_STATE(214)] = 3920, - [SMALL_STATE(215)] = 3965, + [SMALL_STATE(201)] = 3315, + [SMALL_STATE(202)] = 3362, + [SMALL_STATE(203)] = 3407, + [SMALL_STATE(204)] = 3452, + [SMALL_STATE(205)] = 3499, + [SMALL_STATE(206)] = 3546, + [SMALL_STATE(207)] = 3591, + [SMALL_STATE(208)] = 3636, + [SMALL_STATE(209)] = 3683, + [SMALL_STATE(210)] = 3730, + [SMALL_STATE(211)] = 3775, + [SMALL_STATE(212)] = 3822, + [SMALL_STATE(213)] = 3869, + [SMALL_STATE(214)] = 3918, + [SMALL_STATE(215)] = 3963, [SMALL_STATE(216)] = 4012, [SMALL_STATE(217)] = 4054, - [SMALL_STATE(218)] = 4096, - [SMALL_STATE(219)] = 4138, - [SMALL_STATE(220)] = 4180, - [SMALL_STATE(221)] = 4222, - [SMALL_STATE(222)] = 4264, - [SMALL_STATE(223)] = 4306, - [SMALL_STATE(224)] = 4352, - [SMALL_STATE(225)] = 4394, - [SMALL_STATE(226)] = 4436, - [SMALL_STATE(227)] = 4478, - [SMALL_STATE(228)] = 4520, - [SMALL_STATE(229)] = 4562, - [SMALL_STATE(230)] = 4604, - [SMALL_STATE(231)] = 4646, - [SMALL_STATE(232)] = 4688, - [SMALL_STATE(233)] = 4730, - [SMALL_STATE(234)] = 4772, - [SMALL_STATE(235)] = 4816, - [SMALL_STATE(236)] = 4858, - [SMALL_STATE(237)] = 4900, - [SMALL_STATE(238)] = 4942, - [SMALL_STATE(239)] = 4984, - [SMALL_STATE(240)] = 5026, - [SMALL_STATE(241)] = 5068, - [SMALL_STATE(242)] = 5110, - [SMALL_STATE(243)] = 5156, - [SMALL_STATE(244)] = 5200, - [SMALL_STATE(245)] = 5242, - [SMALL_STATE(246)] = 5284, - [SMALL_STATE(247)] = 5330, - [SMALL_STATE(248)] = 5372, - [SMALL_STATE(249)] = 5414, - [SMALL_STATE(250)] = 5456, - [SMALL_STATE(251)] = 5498, - [SMALL_STATE(252)] = 5540, - [SMALL_STATE(253)] = 5582, - [SMALL_STATE(254)] = 5624, - [SMALL_STATE(255)] = 5666, - [SMALL_STATE(256)] = 5708, - [SMALL_STATE(257)] = 5750, - [SMALL_STATE(258)] = 5792, - [SMALL_STATE(259)] = 5834, - [SMALL_STATE(260)] = 5876, - [SMALL_STATE(261)] = 5918, - [SMALL_STATE(262)] = 5960, - [SMALL_STATE(263)] = 6002, - [SMALL_STATE(264)] = 6044, - [SMALL_STATE(265)] = 6086, - [SMALL_STATE(266)] = 6128, - [SMALL_STATE(267)] = 6170, - [SMALL_STATE(268)] = 6212, - [SMALL_STATE(269)] = 6254, - [SMALL_STATE(270)] = 6300, - [SMALL_STATE(271)] = 6342, - [SMALL_STATE(272)] = 6384, - [SMALL_STATE(273)] = 6426, - [SMALL_STATE(274)] = 6468, - [SMALL_STATE(275)] = 6510, - [SMALL_STATE(276)] = 6552, - [SMALL_STATE(277)] = 6594, - [SMALL_STATE(278)] = 6636, - [SMALL_STATE(279)] = 6678, - [SMALL_STATE(280)] = 6724, - [SMALL_STATE(281)] = 6766, - [SMALL_STATE(282)] = 6808, - [SMALL_STATE(283)] = 6850, - [SMALL_STATE(284)] = 6892, - [SMALL_STATE(285)] = 6938, - [SMALL_STATE(286)] = 6980, - [SMALL_STATE(287)] = 7022, - [SMALL_STATE(288)] = 7066, + [SMALL_STATE(218)] = 4098, + [SMALL_STATE(219)] = 4140, + [SMALL_STATE(220)] = 4182, + [SMALL_STATE(221)] = 4224, + [SMALL_STATE(222)] = 4270, + [SMALL_STATE(223)] = 4312, + [SMALL_STATE(224)] = 4354, + [SMALL_STATE(225)] = 4396, + [SMALL_STATE(226)] = 4438, + [SMALL_STATE(227)] = 4480, + [SMALL_STATE(228)] = 4522, + [SMALL_STATE(229)] = 4564, + [SMALL_STATE(230)] = 4606, + [SMALL_STATE(231)] = 4648, + [SMALL_STATE(232)] = 4690, + [SMALL_STATE(233)] = 4734, + [SMALL_STATE(234)] = 4776, + [SMALL_STATE(235)] = 4818, + [SMALL_STATE(236)] = 4860, + [SMALL_STATE(237)] = 4902, + [SMALL_STATE(238)] = 4944, + [SMALL_STATE(239)] = 4986, + [SMALL_STATE(240)] = 5028, + [SMALL_STATE(241)] = 5074, + [SMALL_STATE(242)] = 5118, + [SMALL_STATE(243)] = 5160, + [SMALL_STATE(244)] = 5202, + [SMALL_STATE(245)] = 5248, + [SMALL_STATE(246)] = 5290, + [SMALL_STATE(247)] = 5332, + [SMALL_STATE(248)] = 5374, + [SMALL_STATE(249)] = 5416, + [SMALL_STATE(250)] = 5458, + [SMALL_STATE(251)] = 5500, + [SMALL_STATE(252)] = 5542, + [SMALL_STATE(253)] = 5584, + [SMALL_STATE(254)] = 5626, + [SMALL_STATE(255)] = 5668, + [SMALL_STATE(256)] = 5710, + [SMALL_STATE(257)] = 5752, + [SMALL_STATE(258)] = 5794, + [SMALL_STATE(259)] = 5836, + [SMALL_STATE(260)] = 5878, + [SMALL_STATE(261)] = 5920, + [SMALL_STATE(262)] = 5962, + [SMALL_STATE(263)] = 6004, + [SMALL_STATE(264)] = 6046, + [SMALL_STATE(265)] = 6088, + [SMALL_STATE(266)] = 6130, + [SMALL_STATE(267)] = 6172, + [SMALL_STATE(268)] = 6218, + [SMALL_STATE(269)] = 6260, + [SMALL_STATE(270)] = 6302, + [SMALL_STATE(271)] = 6344, + [SMALL_STATE(272)] = 6386, + [SMALL_STATE(273)] = 6428, + [SMALL_STATE(274)] = 6470, + [SMALL_STATE(275)] = 6512, + [SMALL_STATE(276)] = 6554, + [SMALL_STATE(277)] = 6596, + [SMALL_STATE(278)] = 6642, + [SMALL_STATE(279)] = 6684, + [SMALL_STATE(280)] = 6726, + [SMALL_STATE(281)] = 6768, + [SMALL_STATE(282)] = 6810, + [SMALL_STATE(283)] = 6852, + [SMALL_STATE(284)] = 6894, + [SMALL_STATE(285)] = 6940, + [SMALL_STATE(286)] = 6982, + [SMALL_STATE(287)] = 7024, + [SMALL_STATE(288)] = 7068, [SMALL_STATE(289)] = 7112, [SMALL_STATE(290)] = 7154, - [SMALL_STATE(291)] = 7198, - [SMALL_STATE(292)] = 7240, - [SMALL_STATE(293)] = 7282, - [SMALL_STATE(294)] = 7328, - [SMALL_STATE(295)] = 7370, - [SMALL_STATE(296)] = 7412, - [SMALL_STATE(297)] = 7454, - [SMALL_STATE(298)] = 7496, - [SMALL_STATE(299)] = 7542, - [SMALL_STATE(300)] = 7584, - [SMALL_STATE(301)] = 7626, - [SMALL_STATE(302)] = 7668, - [SMALL_STATE(303)] = 7710, - [SMALL_STATE(304)] = 7752, - [SMALL_STATE(305)] = 7794, - [SMALL_STATE(306)] = 7836, - [SMALL_STATE(307)] = 7878, - [SMALL_STATE(308)] = 7920, - [SMALL_STATE(309)] = 7962, - [SMALL_STATE(310)] = 8004, - [SMALL_STATE(311)] = 8046, - [SMALL_STATE(312)] = 8088, - [SMALL_STATE(313)] = 8130, - [SMALL_STATE(314)] = 8172, - [SMALL_STATE(315)] = 8214, - [SMALL_STATE(316)] = 8256, - [SMALL_STATE(317)] = 8298, - [SMALL_STATE(318)] = 8340, - [SMALL_STATE(319)] = 8382, - [SMALL_STATE(320)] = 8424, - [SMALL_STATE(321)] = 8466, - [SMALL_STATE(322)] = 8508, - [SMALL_STATE(323)] = 8550, - [SMALL_STATE(324)] = 8592, - [SMALL_STATE(325)] = 8634, - [SMALL_STATE(326)] = 8676, - [SMALL_STATE(327)] = 8718, - [SMALL_STATE(328)] = 8760, - [SMALL_STATE(329)] = 8802, - [SMALL_STATE(330)] = 8844, - [SMALL_STATE(331)] = 8886, - [SMALL_STATE(332)] = 8932, - [SMALL_STATE(333)] = 8974, - [SMALL_STATE(334)] = 9016, - [SMALL_STATE(335)] = 9058, - [SMALL_STATE(336)] = 9100, - [SMALL_STATE(337)] = 9142, - [SMALL_STATE(338)] = 9184, - [SMALL_STATE(339)] = 9226, - [SMALL_STATE(340)] = 9268, - [SMALL_STATE(341)] = 9310, - [SMALL_STATE(342)] = 9352, - [SMALL_STATE(343)] = 9396, - [SMALL_STATE(344)] = 9438, - [SMALL_STATE(345)] = 9480, - [SMALL_STATE(346)] = 9526, - [SMALL_STATE(347)] = 9568, - [SMALL_STATE(348)] = 9610, - [SMALL_STATE(349)] = 9652, - [SMALL_STATE(350)] = 9694, - [SMALL_STATE(351)] = 9736, - [SMALL_STATE(352)] = 9778, - [SMALL_STATE(353)] = 9820, - [SMALL_STATE(354)] = 9862, - [SMALL_STATE(355)] = 9904, - [SMALL_STATE(356)] = 9946, - [SMALL_STATE(357)] = 9988, - [SMALL_STATE(358)] = 10030, - [SMALL_STATE(359)] = 10072, - [SMALL_STATE(360)] = 10114, - [SMALL_STATE(361)] = 10156, - [SMALL_STATE(362)] = 10198, - [SMALL_STATE(363)] = 10240, - [SMALL_STATE(364)] = 10282, - [SMALL_STATE(365)] = 10324, - [SMALL_STATE(366)] = 10366, - [SMALL_STATE(367)] = 10408, - [SMALL_STATE(368)] = 10450, - [SMALL_STATE(369)] = 10492, - [SMALL_STATE(370)] = 10534, - [SMALL_STATE(371)] = 10576, - [SMALL_STATE(372)] = 10618, - [SMALL_STATE(373)] = 10660, - [SMALL_STATE(374)] = 10702, - [SMALL_STATE(375)] = 10744, - [SMALL_STATE(376)] = 10786, - [SMALL_STATE(377)] = 10828, - [SMALL_STATE(378)] = 10870, - [SMALL_STATE(379)] = 10912, - [SMALL_STATE(380)] = 10954, - [SMALL_STATE(381)] = 10996, - [SMALL_STATE(382)] = 11040, - [SMALL_STATE(383)] = 11082, - [SMALL_STATE(384)] = 11128, - [SMALL_STATE(385)] = 11170, - [SMALL_STATE(386)] = 11212, - [SMALL_STATE(387)] = 11254, - [SMALL_STATE(388)] = 11296, - [SMALL_STATE(389)] = 11338, - [SMALL_STATE(390)] = 11384, - [SMALL_STATE(391)] = 11426, - [SMALL_STATE(392)] = 11468, - [SMALL_STATE(393)] = 11510, + [SMALL_STATE(291)] = 7196, + [SMALL_STATE(292)] = 7242, + [SMALL_STATE(293)] = 7288, + [SMALL_STATE(294)] = 7330, + [SMALL_STATE(295)] = 7372, + [SMALL_STATE(296)] = 7414, + [SMALL_STATE(297)] = 7460, + [SMALL_STATE(298)] = 7502, + [SMALL_STATE(299)] = 7544, + [SMALL_STATE(300)] = 7586, + [SMALL_STATE(301)] = 7628, + [SMALL_STATE(302)] = 7670, + [SMALL_STATE(303)] = 7712, + [SMALL_STATE(304)] = 7754, + [SMALL_STATE(305)] = 7796, + [SMALL_STATE(306)] = 7838, + [SMALL_STATE(307)] = 7880, + [SMALL_STATE(308)] = 7922, + [SMALL_STATE(309)] = 7964, + [SMALL_STATE(310)] = 8006, + [SMALL_STATE(311)] = 8048, + [SMALL_STATE(312)] = 8090, + [SMALL_STATE(313)] = 8132, + [SMALL_STATE(314)] = 8174, + [SMALL_STATE(315)] = 8216, + [SMALL_STATE(316)] = 8258, + [SMALL_STATE(317)] = 8300, + [SMALL_STATE(318)] = 8342, + [SMALL_STATE(319)] = 8384, + [SMALL_STATE(320)] = 8426, + [SMALL_STATE(321)] = 8468, + [SMALL_STATE(322)] = 8510, + [SMALL_STATE(323)] = 8552, + [SMALL_STATE(324)] = 8594, + [SMALL_STATE(325)] = 8636, + [SMALL_STATE(326)] = 8678, + [SMALL_STATE(327)] = 8720, + [SMALL_STATE(328)] = 8762, + [SMALL_STATE(329)] = 8804, + [SMALL_STATE(330)] = 8850, + [SMALL_STATE(331)] = 8892, + [SMALL_STATE(332)] = 8934, + [SMALL_STATE(333)] = 8976, + [SMALL_STATE(334)] = 9018, + [SMALL_STATE(335)] = 9060, + [SMALL_STATE(336)] = 9102, + [SMALL_STATE(337)] = 9144, + [SMALL_STATE(338)] = 9186, + [SMALL_STATE(339)] = 9228, + [SMALL_STATE(340)] = 9270, + [SMALL_STATE(341)] = 9314, + [SMALL_STATE(342)] = 9356, + [SMALL_STATE(343)] = 9398, + [SMALL_STATE(344)] = 9444, + [SMALL_STATE(345)] = 9486, + [SMALL_STATE(346)] = 9528, + [SMALL_STATE(347)] = 9570, + [SMALL_STATE(348)] = 9612, + [SMALL_STATE(349)] = 9654, + [SMALL_STATE(350)] = 9696, + [SMALL_STATE(351)] = 9738, + [SMALL_STATE(352)] = 9780, + [SMALL_STATE(353)] = 9822, + [SMALL_STATE(354)] = 9864, + [SMALL_STATE(355)] = 9906, + [SMALL_STATE(356)] = 9948, + [SMALL_STATE(357)] = 9990, + [SMALL_STATE(358)] = 10032, + [SMALL_STATE(359)] = 10076, + [SMALL_STATE(360)] = 10118, + [SMALL_STATE(361)] = 10160, + [SMALL_STATE(362)] = 10202, + [SMALL_STATE(363)] = 10244, + [SMALL_STATE(364)] = 10286, + [SMALL_STATE(365)] = 10328, + [SMALL_STATE(366)] = 10370, + [SMALL_STATE(367)] = 10412, + [SMALL_STATE(368)] = 10454, + [SMALL_STATE(369)] = 10496, + [SMALL_STATE(370)] = 10538, + [SMALL_STATE(371)] = 10580, + [SMALL_STATE(372)] = 10622, + [SMALL_STATE(373)] = 10664, + [SMALL_STATE(374)] = 10706, + [SMALL_STATE(375)] = 10748, + [SMALL_STATE(376)] = 10790, + [SMALL_STATE(377)] = 10832, + [SMALL_STATE(378)] = 10874, + [SMALL_STATE(379)] = 10916, + [SMALL_STATE(380)] = 10958, + [SMALL_STATE(381)] = 11000, + [SMALL_STATE(382)] = 11046, + [SMALL_STATE(383)] = 11088, + [SMALL_STATE(384)] = 11130, + [SMALL_STATE(385)] = 11172, + [SMALL_STATE(386)] = 11214, + [SMALL_STATE(387)] = 11256, + [SMALL_STATE(388)] = 11298, + [SMALL_STATE(389)] = 11340, + [SMALL_STATE(390)] = 11386, + [SMALL_STATE(391)] = 11428, + [SMALL_STATE(392)] = 11470, + [SMALL_STATE(393)] = 11514, [SMALL_STATE(394)] = 11556, - [SMALL_STATE(395)] = 11600, - [SMALL_STATE(396)] = 11642, - [SMALL_STATE(397)] = 11684, - [SMALL_STATE(398)] = 11730, - [SMALL_STATE(399)] = 11772, - [SMALL_STATE(400)] = 11814, - [SMALL_STATE(401)] = 11856, - [SMALL_STATE(402)] = 11898, - [SMALL_STATE(403)] = 11940, - [SMALL_STATE(404)] = 11982, - [SMALL_STATE(405)] = 12024, - [SMALL_STATE(406)] = 12066, - [SMALL_STATE(407)] = 12108, - [SMALL_STATE(408)] = 12150, - [SMALL_STATE(409)] = 12192, - [SMALL_STATE(410)] = 12234, - [SMALL_STATE(411)] = 12276, - [SMALL_STATE(412)] = 12318, - [SMALL_STATE(413)] = 12360, - [SMALL_STATE(414)] = 12402, - [SMALL_STATE(415)] = 12444, - [SMALL_STATE(416)] = 12486, - [SMALL_STATE(417)] = 12528, - [SMALL_STATE(418)] = 12570, - [SMALL_STATE(419)] = 12612, - [SMALL_STATE(420)] = 12654, - [SMALL_STATE(421)] = 12696, - [SMALL_STATE(422)] = 12738, - [SMALL_STATE(423)] = 12780, - [SMALL_STATE(424)] = 12822, - [SMALL_STATE(425)] = 12864, - [SMALL_STATE(426)] = 12906, - [SMALL_STATE(427)] = 12948, - [SMALL_STATE(428)] = 12990, - [SMALL_STATE(429)] = 13032, - [SMALL_STATE(430)] = 13074, - [SMALL_STATE(431)] = 13116, - [SMALL_STATE(432)] = 13158, - [SMALL_STATE(433)] = 13200, - [SMALL_STATE(434)] = 13242, - [SMALL_STATE(435)] = 13284, - [SMALL_STATE(436)] = 13330, - [SMALL_STATE(437)] = 13372, - [SMALL_STATE(438)] = 13414, - [SMALL_STATE(439)] = 13456, - [SMALL_STATE(440)] = 13502, - [SMALL_STATE(441)] = 13544, - [SMALL_STATE(442)] = 13586, - [SMALL_STATE(443)] = 13628, - [SMALL_STATE(444)] = 13670, - [SMALL_STATE(445)] = 13712, - [SMALL_STATE(446)] = 13754, - [SMALL_STATE(447)] = 13798, - [SMALL_STATE(448)] = 13840, - [SMALL_STATE(449)] = 13882, - [SMALL_STATE(450)] = 13928, - [SMALL_STATE(451)] = 13970, - [SMALL_STATE(452)] = 14012, - [SMALL_STATE(453)] = 14054, - [SMALL_STATE(454)] = 14096, - [SMALL_STATE(455)] = 14138, - [SMALL_STATE(456)] = 14180, - [SMALL_STATE(457)] = 14222, - [SMALL_STATE(458)] = 14264, - [SMALL_STATE(459)] = 14306, - [SMALL_STATE(460)] = 14348, - [SMALL_STATE(461)] = 14390, - [SMALL_STATE(462)] = 14432, - [SMALL_STATE(463)] = 14474, - [SMALL_STATE(464)] = 14516, + [SMALL_STATE(395)] = 11598, + [SMALL_STATE(396)] = 11644, + [SMALL_STATE(397)] = 11686, + [SMALL_STATE(398)] = 11732, + [SMALL_STATE(399)] = 11774, + [SMALL_STATE(400)] = 11816, + [SMALL_STATE(401)] = 11858, + [SMALL_STATE(402)] = 11900, + [SMALL_STATE(403)] = 11942, + [SMALL_STATE(404)] = 11984, + [SMALL_STATE(405)] = 12026, + [SMALL_STATE(406)] = 12068, + [SMALL_STATE(407)] = 12110, + [SMALL_STATE(408)] = 12152, + [SMALL_STATE(409)] = 12194, + [SMALL_STATE(410)] = 12236, + [SMALL_STATE(411)] = 12278, + [SMALL_STATE(412)] = 12320, + [SMALL_STATE(413)] = 12362, + [SMALL_STATE(414)] = 12404, + [SMALL_STATE(415)] = 12446, + [SMALL_STATE(416)] = 12488, + [SMALL_STATE(417)] = 12530, + [SMALL_STATE(418)] = 12572, + [SMALL_STATE(419)] = 12614, + [SMALL_STATE(420)] = 12656, + [SMALL_STATE(421)] = 12698, + [SMALL_STATE(422)] = 12740, + [SMALL_STATE(423)] = 12782, + [SMALL_STATE(424)] = 12824, + [SMALL_STATE(425)] = 12866, + [SMALL_STATE(426)] = 12908, + [SMALL_STATE(427)] = 12950, + [SMALL_STATE(428)] = 12992, + [SMALL_STATE(429)] = 13034, + [SMALL_STATE(430)] = 13076, + [SMALL_STATE(431)] = 13118, + [SMALL_STATE(432)] = 13160, + [SMALL_STATE(433)] = 13202, + [SMALL_STATE(434)] = 13248, + [SMALL_STATE(435)] = 13290, + [SMALL_STATE(436)] = 13332, + [SMALL_STATE(437)] = 13374, + [SMALL_STATE(438)] = 13420, + [SMALL_STATE(439)] = 13462, + [SMALL_STATE(440)] = 13504, + [SMALL_STATE(441)] = 13546, + [SMALL_STATE(442)] = 13588, + [SMALL_STATE(443)] = 13630, + [SMALL_STATE(444)] = 13672, + [SMALL_STATE(445)] = 13716, + [SMALL_STATE(446)] = 13758, + [SMALL_STATE(447)] = 13800, + [SMALL_STATE(448)] = 13846, + [SMALL_STATE(449)] = 13888, + [SMALL_STATE(450)] = 13930, + [SMALL_STATE(451)] = 13972, + [SMALL_STATE(452)] = 14014, + [SMALL_STATE(453)] = 14056, + [SMALL_STATE(454)] = 14098, + [SMALL_STATE(455)] = 14140, + [SMALL_STATE(456)] = 14182, + [SMALL_STATE(457)] = 14224, + [SMALL_STATE(458)] = 14266, + [SMALL_STATE(459)] = 14308, + [SMALL_STATE(460)] = 14350, + [SMALL_STATE(461)] = 14392, + [SMALL_STATE(462)] = 14434, + [SMALL_STATE(463)] = 14476, + [SMALL_STATE(464)] = 14518, [SMALL_STATE(465)] = 14560, [SMALL_STATE(466)] = 14602, - [SMALL_STATE(467)] = 14648, - [SMALL_STATE(468)] = 14690, - [SMALL_STATE(469)] = 14732, - [SMALL_STATE(470)] = 14774, - [SMALL_STATE(471)] = 14816, - [SMALL_STATE(472)] = 14858, - [SMALL_STATE(473)] = 14900, - [SMALL_STATE(474)] = 14942, - [SMALL_STATE(475)] = 14984, - [SMALL_STATE(476)] = 15026, - [SMALL_STATE(477)] = 15068, - [SMALL_STATE(478)] = 15110, - [SMALL_STATE(479)] = 15152, - [SMALL_STATE(480)] = 15194, - [SMALL_STATE(481)] = 15236, - [SMALL_STATE(482)] = 15278, - [SMALL_STATE(483)] = 15320, - [SMALL_STATE(484)] = 15362, - [SMALL_STATE(485)] = 15404, - [SMALL_STATE(486)] = 15448, - [SMALL_STATE(487)] = 15490, + [SMALL_STATE(467)] = 14644, + [SMALL_STATE(468)] = 14686, + [SMALL_STATE(469)] = 14728, + [SMALL_STATE(470)] = 14770, + [SMALL_STATE(471)] = 14812, + [SMALL_STATE(472)] = 14854, + [SMALL_STATE(473)] = 14896, + [SMALL_STATE(474)] = 14938, + [SMALL_STATE(475)] = 14980, + [SMALL_STATE(476)] = 15024, + [SMALL_STATE(477)] = 15066, + [SMALL_STATE(478)] = 15108, + [SMALL_STATE(479)] = 15150, + [SMALL_STATE(480)] = 15192, + [SMALL_STATE(481)] = 15234, + [SMALL_STATE(482)] = 15276, + [SMALL_STATE(483)] = 15318, + [SMALL_STATE(484)] = 15364, + [SMALL_STATE(485)] = 15406, + [SMALL_STATE(486)] = 15452, + [SMALL_STATE(487)] = 15494, [SMALL_STATE(488)] = 15536, [SMALL_STATE(489)] = 15578, - [SMALL_STATE(490)] = 15620, - [SMALL_STATE(491)] = 15662, - [SMALL_STATE(492)] = 15704, - [SMALL_STATE(493)] = 15746, - [SMALL_STATE(494)] = 15788, - [SMALL_STATE(495)] = 15830, - [SMALL_STATE(496)] = 15872, - [SMALL_STATE(497)] = 15914, - [SMALL_STATE(498)] = 15956, + [SMALL_STATE(490)] = 15622, + [SMALL_STATE(491)] = 15664, + [SMALL_STATE(492)] = 15706, + [SMALL_STATE(493)] = 15748, + [SMALL_STATE(494)] = 15790, + [SMALL_STATE(495)] = 15832, + [SMALL_STATE(496)] = 15874, + [SMALL_STATE(497)] = 15916, + [SMALL_STATE(498)] = 15958, [SMALL_STATE(499)] = 16000, [SMALL_STATE(500)] = 16042, [SMALL_STATE(501)] = 16084, @@ -41457,33 +40884,33 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(521)] = 16924, [SMALL_STATE(522)] = 16966, [SMALL_STATE(523)] = 17008, - [SMALL_STATE(524)] = 17050, - [SMALL_STATE(525)] = 17092, - [SMALL_STATE(526)] = 17134, - [SMALL_STATE(527)] = 17176, - [SMALL_STATE(528)] = 17218, - [SMALL_STATE(529)] = 17260, - [SMALL_STATE(530)] = 17302, - [SMALL_STATE(531)] = 17344, - [SMALL_STATE(532)] = 17386, - [SMALL_STATE(533)] = 17432, - [SMALL_STATE(534)] = 17474, - [SMALL_STATE(535)] = 17516, - [SMALL_STATE(536)] = 17558, - [SMALL_STATE(537)] = 17600, - [SMALL_STATE(538)] = 17644, - [SMALL_STATE(539)] = 17686, - [SMALL_STATE(540)] = 17728, + [SMALL_STATE(524)] = 17054, + [SMALL_STATE(525)] = 17096, + [SMALL_STATE(526)] = 17138, + [SMALL_STATE(527)] = 17180, + [SMALL_STATE(528)] = 17222, + [SMALL_STATE(529)] = 17266, + [SMALL_STATE(530)] = 17308, + [SMALL_STATE(531)] = 17350, + [SMALL_STATE(532)] = 17396, + [SMALL_STATE(533)] = 17438, + [SMALL_STATE(534)] = 17480, + [SMALL_STATE(535)] = 17522, + [SMALL_STATE(536)] = 17564, + [SMALL_STATE(537)] = 17606, + [SMALL_STATE(538)] = 17648, + [SMALL_STATE(539)] = 17690, + [SMALL_STATE(540)] = 17732, [SMALL_STATE(541)] = 17774, - [SMALL_STATE(542)] = 17816, - [SMALL_STATE(543)] = 17858, - [SMALL_STATE(544)] = 17900, - [SMALL_STATE(545)] = 17942, - [SMALL_STATE(546)] = 17984, - [SMALL_STATE(547)] = 18026, - [SMALL_STATE(548)] = 18068, - [SMALL_STATE(549)] = 18110, - [SMALL_STATE(550)] = 18152, + [SMALL_STATE(542)] = 17820, + [SMALL_STATE(543)] = 17862, + [SMALL_STATE(544)] = 17904, + [SMALL_STATE(545)] = 17946, + [SMALL_STATE(546)] = 17988, + [SMALL_STATE(547)] = 18030, + [SMALL_STATE(548)] = 18072, + [SMALL_STATE(549)] = 18114, + [SMALL_STATE(550)] = 18156, [SMALL_STATE(551)] = 18198, [SMALL_STATE(552)] = 18240, [SMALL_STATE(553)] = 18282, @@ -41497,7 +40924,7 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(561)] = 18618, [SMALL_STATE(562)] = 18659, [SMALL_STATE(563)] = 18700, - [SMALL_STATE(564)] = 18745, + [SMALL_STATE(564)] = 18741, [SMALL_STATE(565)] = 18786, [SMALL_STATE(566)] = 18827, [SMALL_STATE(567)] = 18868, @@ -41506,1729 +40933,1706 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(570)] = 18991, [SMALL_STATE(571)] = 19032, [SMALL_STATE(572)] = 19073, - [SMALL_STATE(573)] = 19118, - [SMALL_STATE(574)] = 19159, - [SMALL_STATE(575)] = 19200, - [SMALL_STATE(576)] = 19241, - [SMALL_STATE(577)] = 19282, - [SMALL_STATE(578)] = 19323, - [SMALL_STATE(579)] = 19364, - [SMALL_STATE(580)] = 19405, - [SMALL_STATE(581)] = 19446, - [SMALL_STATE(582)] = 19491, - [SMALL_STATE(583)] = 19532, - [SMALL_STATE(584)] = 19573, - [SMALL_STATE(585)] = 19614, - [SMALL_STATE(586)] = 19655, - [SMALL_STATE(587)] = 19696, - [SMALL_STATE(588)] = 19737, + [SMALL_STATE(573)] = 19114, + [SMALL_STATE(574)] = 19155, + [SMALL_STATE(575)] = 19196, + [SMALL_STATE(576)] = 19237, + [SMALL_STATE(577)] = 19278, + [SMALL_STATE(578)] = 19319, + [SMALL_STATE(579)] = 19360, + [SMALL_STATE(580)] = 19401, + [SMALL_STATE(581)] = 19442, + [SMALL_STATE(582)] = 19483, + [SMALL_STATE(583)] = 19526, + [SMALL_STATE(584)] = 19567, + [SMALL_STATE(585)] = 19608, + [SMALL_STATE(586)] = 19649, + [SMALL_STATE(587)] = 19694, + [SMALL_STATE(588)] = 19735, [SMALL_STATE(589)] = 19778, [SMALL_STATE(590)] = 19819, - [SMALL_STATE(591)] = 19862, - [SMALL_STATE(592)] = 19903, - [SMALL_STATE(593)] = 19944, - [SMALL_STATE(594)] = 19985, - [SMALL_STATE(595)] = 20026, - [SMALL_STATE(596)] = 20067, + [SMALL_STATE(591)] = 19860, + [SMALL_STATE(592)] = 19901, + [SMALL_STATE(593)] = 19942, + [SMALL_STATE(594)] = 19983, + [SMALL_STATE(595)] = 20024, + [SMALL_STATE(596)] = 20065, [SMALL_STATE(597)] = 20108, [SMALL_STATE(598)] = 20149, - [SMALL_STATE(599)] = 20194, - [SMALL_STATE(600)] = 20235, - [SMALL_STATE(601)] = 20276, - [SMALL_STATE(602)] = 20319, - [SMALL_STATE(603)] = 20360, - [SMALL_STATE(604)] = 20401, - [SMALL_STATE(605)] = 20442, - [SMALL_STATE(606)] = 20483, - [SMALL_STATE(607)] = 20524, - [SMALL_STATE(608)] = 20565, - [SMALL_STATE(609)] = 20606, - [SMALL_STATE(610)] = 20647, - [SMALL_STATE(611)] = 20688, - [SMALL_STATE(612)] = 20729, - [SMALL_STATE(613)] = 20770, - [SMALL_STATE(614)] = 20811, - [SMALL_STATE(615)] = 20852, - [SMALL_STATE(616)] = 20893, - [SMALL_STATE(617)] = 20934, - [SMALL_STATE(618)] = 20975, - [SMALL_STATE(619)] = 21016, - [SMALL_STATE(620)] = 21057, - [SMALL_STATE(621)] = 21098, - [SMALL_STATE(622)] = 21139, - [SMALL_STATE(623)] = 21180, - [SMALL_STATE(624)] = 21221, - [SMALL_STATE(625)] = 21262, - [SMALL_STATE(626)] = 21303, - [SMALL_STATE(627)] = 21344, - [SMALL_STATE(628)] = 21385, - [SMALL_STATE(629)] = 21425, - [SMALL_STATE(630)] = 21465, - [SMALL_STATE(631)] = 21505, - [SMALL_STATE(632)] = 21536, - [SMALL_STATE(633)] = 21567, - [SMALL_STATE(634)] = 21598, - [SMALL_STATE(635)] = 21629, - [SMALL_STATE(636)] = 21660, - [SMALL_STATE(637)] = 21691, - [SMALL_STATE(638)] = 21722, - [SMALL_STATE(639)] = 21753, - [SMALL_STATE(640)] = 21784, - [SMALL_STATE(641)] = 21815, - [SMALL_STATE(642)] = 21846, - [SMALL_STATE(643)] = 21877, - [SMALL_STATE(644)] = 21908, - [SMALL_STATE(645)] = 21939, - [SMALL_STATE(646)] = 21970, - [SMALL_STATE(647)] = 22001, - [SMALL_STATE(648)] = 22032, - [SMALL_STATE(649)] = 22063, - [SMALL_STATE(650)] = 22094, - [SMALL_STATE(651)] = 22125, - [SMALL_STATE(652)] = 22156, - [SMALL_STATE(653)] = 22187, - [SMALL_STATE(654)] = 22218, - [SMALL_STATE(655)] = 22249, - [SMALL_STATE(656)] = 22280, - [SMALL_STATE(657)] = 22311, - [SMALL_STATE(658)] = 22342, - [SMALL_STATE(659)] = 22373, - [SMALL_STATE(660)] = 22404, - [SMALL_STATE(661)] = 22435, - [SMALL_STATE(662)] = 22466, - [SMALL_STATE(663)] = 22497, - [SMALL_STATE(664)] = 22528, - [SMALL_STATE(665)] = 22559, - [SMALL_STATE(666)] = 22590, - [SMALL_STATE(667)] = 22621, - [SMALL_STATE(668)] = 22652, - [SMALL_STATE(669)] = 22683, - [SMALL_STATE(670)] = 22714, - [SMALL_STATE(671)] = 22745, - [SMALL_STATE(672)] = 22776, - [SMALL_STATE(673)] = 22807, - [SMALL_STATE(674)] = 22838, - [SMALL_STATE(675)] = 22869, - [SMALL_STATE(676)] = 22900, - [SMALL_STATE(677)] = 22910, - [SMALL_STATE(678)] = 22920, - [SMALL_STATE(679)] = 22930, - [SMALL_STATE(680)] = 22940, - [SMALL_STATE(681)] = 22950, - [SMALL_STATE(682)] = 22960, - [SMALL_STATE(683)] = 22970, - [SMALL_STATE(684)] = 22980, - [SMALL_STATE(685)] = 22990, - [SMALL_STATE(686)] = 23006, - [SMALL_STATE(687)] = 23020, - [SMALL_STATE(688)] = 23034, - [SMALL_STATE(689)] = 23050, - [SMALL_STATE(690)] = 23066, - [SMALL_STATE(691)] = 23082, - [SMALL_STATE(692)] = 23098, - [SMALL_STATE(693)] = 23114, - [SMALL_STATE(694)] = 23130, - [SMALL_STATE(695)] = 23146, - [SMALL_STATE(696)] = 23160, - [SMALL_STATE(697)] = 23176, - [SMALL_STATE(698)] = 23192, - [SMALL_STATE(699)] = 23208, - [SMALL_STATE(700)] = 23222, - [SMALL_STATE(701)] = 23238, - [SMALL_STATE(702)] = 23252, - [SMALL_STATE(703)] = 23268, - [SMALL_STATE(704)] = 23282, - [SMALL_STATE(705)] = 23298, - [SMALL_STATE(706)] = 23314, - [SMALL_STATE(707)] = 23328, - [SMALL_STATE(708)] = 23344, - [SMALL_STATE(709)] = 23358, - [SMALL_STATE(710)] = 23372, - [SMALL_STATE(711)] = 23386, - [SMALL_STATE(712)] = 23402, - [SMALL_STATE(713)] = 23418, - [SMALL_STATE(714)] = 23430, - [SMALL_STATE(715)] = 23446, - [SMALL_STATE(716)] = 23462, - [SMALL_STATE(717)] = 23474, + [SMALL_STATE(599)] = 20190, + [SMALL_STATE(600)] = 20233, + [SMALL_STATE(601)] = 20274, + [SMALL_STATE(602)] = 20315, + [SMALL_STATE(603)] = 20356, + [SMALL_STATE(604)] = 20397, + [SMALL_STATE(605)] = 20438, + [SMALL_STATE(606)] = 20479, + [SMALL_STATE(607)] = 20520, + [SMALL_STATE(608)] = 20561, + [SMALL_STATE(609)] = 20602, + [SMALL_STATE(610)] = 20643, + [SMALL_STATE(611)] = 20684, + [SMALL_STATE(612)] = 20725, + [SMALL_STATE(613)] = 20766, + [SMALL_STATE(614)] = 20807, + [SMALL_STATE(615)] = 20848, + [SMALL_STATE(616)] = 20889, + [SMALL_STATE(617)] = 20930, + [SMALL_STATE(618)] = 20971, + [SMALL_STATE(619)] = 21012, + [SMALL_STATE(620)] = 21053, + [SMALL_STATE(621)] = 21094, + [SMALL_STATE(622)] = 21135, + [SMALL_STATE(623)] = 21176, + [SMALL_STATE(624)] = 21217, + [SMALL_STATE(625)] = 21258, + [SMALL_STATE(626)] = 21299, + [SMALL_STATE(627)] = 21340, + [SMALL_STATE(628)] = 21381, + [SMALL_STATE(629)] = 21421, + [SMALL_STATE(630)] = 21461, + [SMALL_STATE(631)] = 21501, + [SMALL_STATE(632)] = 21532, + [SMALL_STATE(633)] = 21563, + [SMALL_STATE(634)] = 21594, + [SMALL_STATE(635)] = 21625, + [SMALL_STATE(636)] = 21656, + [SMALL_STATE(637)] = 21687, + [SMALL_STATE(638)] = 21718, + [SMALL_STATE(639)] = 21749, + [SMALL_STATE(640)] = 21780, + [SMALL_STATE(641)] = 21811, + [SMALL_STATE(642)] = 21842, + [SMALL_STATE(643)] = 21873, + [SMALL_STATE(644)] = 21904, + [SMALL_STATE(645)] = 21935, + [SMALL_STATE(646)] = 21966, + [SMALL_STATE(647)] = 21997, + [SMALL_STATE(648)] = 22028, + [SMALL_STATE(649)] = 22059, + [SMALL_STATE(650)] = 22090, + [SMALL_STATE(651)] = 22121, + [SMALL_STATE(652)] = 22152, + [SMALL_STATE(653)] = 22183, + [SMALL_STATE(654)] = 22214, + [SMALL_STATE(655)] = 22245, + [SMALL_STATE(656)] = 22276, + [SMALL_STATE(657)] = 22307, + [SMALL_STATE(658)] = 22338, + [SMALL_STATE(659)] = 22369, + [SMALL_STATE(660)] = 22400, + [SMALL_STATE(661)] = 22431, + [SMALL_STATE(662)] = 22462, + [SMALL_STATE(663)] = 22493, + [SMALL_STATE(664)] = 22524, + [SMALL_STATE(665)] = 22555, + [SMALL_STATE(666)] = 22586, + [SMALL_STATE(667)] = 22617, + [SMALL_STATE(668)] = 22648, + [SMALL_STATE(669)] = 22679, + [SMALL_STATE(670)] = 22710, + [SMALL_STATE(671)] = 22741, + [SMALL_STATE(672)] = 22772, + [SMALL_STATE(673)] = 22803, + [SMALL_STATE(674)] = 22834, + [SMALL_STATE(675)] = 22865, + [SMALL_STATE(676)] = 22896, + [SMALL_STATE(677)] = 22906, + [SMALL_STATE(678)] = 22916, + [SMALL_STATE(679)] = 22926, + [SMALL_STATE(680)] = 22936, + [SMALL_STATE(681)] = 22946, + [SMALL_STATE(682)] = 22956, + [SMALL_STATE(683)] = 22966, + [SMALL_STATE(684)] = 22976, + [SMALL_STATE(685)] = 22986, + [SMALL_STATE(686)] = 23002, + [SMALL_STATE(687)] = 23014, + [SMALL_STATE(688)] = 23028, + [SMALL_STATE(689)] = 23044, + [SMALL_STATE(690)] = 23060, + [SMALL_STATE(691)] = 23076, + [SMALL_STATE(692)] = 23092, + [SMALL_STATE(693)] = 23106, + [SMALL_STATE(694)] = 23122, + [SMALL_STATE(695)] = 23138, + [SMALL_STATE(696)] = 23154, + [SMALL_STATE(697)] = 23170, + [SMALL_STATE(698)] = 23184, + [SMALL_STATE(699)] = 23200, + [SMALL_STATE(700)] = 23216, + [SMALL_STATE(701)] = 23230, + [SMALL_STATE(702)] = 23242, + [SMALL_STATE(703)] = 23254, + [SMALL_STATE(704)] = 23270, + [SMALL_STATE(705)] = 23286, + [SMALL_STATE(706)] = 23302, + [SMALL_STATE(707)] = 23318, + [SMALL_STATE(708)] = 23334, + [SMALL_STATE(709)] = 23348, + [SMALL_STATE(710)] = 23364, + [SMALL_STATE(711)] = 23380, + [SMALL_STATE(712)] = 23394, + [SMALL_STATE(713)] = 23410, + [SMALL_STATE(714)] = 23426, + [SMALL_STATE(715)] = 23442, + [SMALL_STATE(716)] = 23456, + [SMALL_STATE(717)] = 23470, [SMALL_STATE(718)] = 23486, [SMALL_STATE(719)] = 23500, - [SMALL_STATE(720)] = 23516, - [SMALL_STATE(721)] = 23532, - [SMALL_STATE(722)] = 23539, - [SMALL_STATE(723)] = 23549, - [SMALL_STATE(724)] = 23559, - [SMALL_STATE(725)] = 23567, - [SMALL_STATE(726)] = 23577, - [SMALL_STATE(727)] = 23587, - [SMALL_STATE(728)] = 23597, - [SMALL_STATE(729)] = 23607, - [SMALL_STATE(730)] = 23617, - [SMALL_STATE(731)] = 23627, - [SMALL_STATE(732)] = 23637, - [SMALL_STATE(733)] = 23645, - [SMALL_STATE(734)] = 23655, - [SMALL_STATE(735)] = 23665, - [SMALL_STATE(736)] = 23675, - [SMALL_STATE(737)] = 23685, - [SMALL_STATE(738)] = 23695, - [SMALL_STATE(739)] = 23705, - [SMALL_STATE(740)] = 23715, - [SMALL_STATE(741)] = 23725, - [SMALL_STATE(742)] = 23735, - [SMALL_STATE(743)] = 23745, - [SMALL_STATE(744)] = 23755, - [SMALL_STATE(745)] = 23765, - [SMALL_STATE(746)] = 23775, - [SMALL_STATE(747)] = 23785, - [SMALL_STATE(748)] = 23792, - [SMALL_STATE(749)] = 23799, - [SMALL_STATE(750)] = 23806, - [SMALL_STATE(751)] = 23813, - [SMALL_STATE(752)] = 23820, - [SMALL_STATE(753)] = 23827, - [SMALL_STATE(754)] = 23834, - [SMALL_STATE(755)] = 23841, - [SMALL_STATE(756)] = 23848, - [SMALL_STATE(757)] = 23855, - [SMALL_STATE(758)] = 23862, - [SMALL_STATE(759)] = 23869, - [SMALL_STATE(760)] = 23876, - [SMALL_STATE(761)] = 23883, - [SMALL_STATE(762)] = 23890, - [SMALL_STATE(763)] = 23897, - [SMALL_STATE(764)] = 23904, - [SMALL_STATE(765)] = 23911, - [SMALL_STATE(766)] = 23918, - [SMALL_STATE(767)] = 23925, - [SMALL_STATE(768)] = 23932, - [SMALL_STATE(769)] = 23939, - [SMALL_STATE(770)] = 23946, - [SMALL_STATE(771)] = 23953, - [SMALL_STATE(772)] = 23960, - [SMALL_STATE(773)] = 23967, - [SMALL_STATE(774)] = 23974, - [SMALL_STATE(775)] = 23981, - [SMALL_STATE(776)] = 23988, - [SMALL_STATE(777)] = 23995, - [SMALL_STATE(778)] = 24002, - [SMALL_STATE(779)] = 24009, - [SMALL_STATE(780)] = 24016, - [SMALL_STATE(781)] = 24023, - [SMALL_STATE(782)] = 24030, - [SMALL_STATE(783)] = 24037, - [SMALL_STATE(784)] = 24044, - [SMALL_STATE(785)] = 24051, - [SMALL_STATE(786)] = 24058, - [SMALL_STATE(787)] = 24065, - [SMALL_STATE(788)] = 24072, - [SMALL_STATE(789)] = 24079, - [SMALL_STATE(790)] = 24086, - [SMALL_STATE(791)] = 24093, - [SMALL_STATE(792)] = 24100, - [SMALL_STATE(793)] = 24107, - [SMALL_STATE(794)] = 24114, - [SMALL_STATE(795)] = 24121, - [SMALL_STATE(796)] = 24128, - [SMALL_STATE(797)] = 24135, - [SMALL_STATE(798)] = 24142, - [SMALL_STATE(799)] = 24149, - [SMALL_STATE(800)] = 24156, - [SMALL_STATE(801)] = 24163, - [SMALL_STATE(802)] = 24170, - [SMALL_STATE(803)] = 24177, - [SMALL_STATE(804)] = 24181, - [SMALL_STATE(805)] = 24185, - [SMALL_STATE(806)] = 24189, - [SMALL_STATE(807)] = 24193, - [SMALL_STATE(808)] = 24197, - [SMALL_STATE(809)] = 24201, - [SMALL_STATE(810)] = 24205, - [SMALL_STATE(811)] = 24209, - [SMALL_STATE(812)] = 24213, - [SMALL_STATE(813)] = 24217, - [SMALL_STATE(814)] = 24221, - [SMALL_STATE(815)] = 24225, - [SMALL_STATE(816)] = 24229, - [SMALL_STATE(817)] = 24233, - [SMALL_STATE(818)] = 24237, - [SMALL_STATE(819)] = 24241, - [SMALL_STATE(820)] = 24245, - [SMALL_STATE(821)] = 24249, - [SMALL_STATE(822)] = 24253, - [SMALL_STATE(823)] = 24257, - [SMALL_STATE(824)] = 24261, - [SMALL_STATE(825)] = 24265, - [SMALL_STATE(826)] = 24269, - [SMALL_STATE(827)] = 24273, - [SMALL_STATE(828)] = 24277, - [SMALL_STATE(829)] = 24281, - [SMALL_STATE(830)] = 24285, - [SMALL_STATE(831)] = 24289, - [SMALL_STATE(832)] = 24293, - [SMALL_STATE(833)] = 24297, - [SMALL_STATE(834)] = 24301, - [SMALL_STATE(835)] = 24305, - [SMALL_STATE(836)] = 24309, - [SMALL_STATE(837)] = 24313, - [SMALL_STATE(838)] = 24317, - [SMALL_STATE(839)] = 24321, - [SMALL_STATE(840)] = 24325, - [SMALL_STATE(841)] = 24329, - [SMALL_STATE(842)] = 24333, - [SMALL_STATE(843)] = 24337, - [SMALL_STATE(844)] = 24341, - [SMALL_STATE(845)] = 24345, - [SMALL_STATE(846)] = 24349, - [SMALL_STATE(847)] = 24353, - [SMALL_STATE(848)] = 24357, - [SMALL_STATE(849)] = 24361, - [SMALL_STATE(850)] = 24365, - [SMALL_STATE(851)] = 24369, - [SMALL_STATE(852)] = 24373, - [SMALL_STATE(853)] = 24377, - [SMALL_STATE(854)] = 24381, - [SMALL_STATE(855)] = 24385, - [SMALL_STATE(856)] = 24389, - [SMALL_STATE(857)] = 24393, - [SMALL_STATE(858)] = 24397, - [SMALL_STATE(859)] = 24401, - [SMALL_STATE(860)] = 24405, - [SMALL_STATE(861)] = 24409, - [SMALL_STATE(862)] = 24413, - [SMALL_STATE(863)] = 24417, - [SMALL_STATE(864)] = 24421, - [SMALL_STATE(865)] = 24425, - [SMALL_STATE(866)] = 24429, - [SMALL_STATE(867)] = 24433, - [SMALL_STATE(868)] = 24437, - [SMALL_STATE(869)] = 24441, - [SMALL_STATE(870)] = 24445, - [SMALL_STATE(871)] = 24449, - [SMALL_STATE(872)] = 24453, - [SMALL_STATE(873)] = 24457, - [SMALL_STATE(874)] = 24461, - [SMALL_STATE(875)] = 24465, - [SMALL_STATE(876)] = 24469, - [SMALL_STATE(877)] = 24473, - [SMALL_STATE(878)] = 24477, - [SMALL_STATE(879)] = 24481, - [SMALL_STATE(880)] = 24485, - [SMALL_STATE(881)] = 24489, - [SMALL_STATE(882)] = 24493, - [SMALL_STATE(883)] = 24497, - [SMALL_STATE(884)] = 24501, - [SMALL_STATE(885)] = 24505, - [SMALL_STATE(886)] = 24509, - [SMALL_STATE(887)] = 24513, - [SMALL_STATE(888)] = 24517, - [SMALL_STATE(889)] = 24521, - [SMALL_STATE(890)] = 24525, - [SMALL_STATE(891)] = 24529, - [SMALL_STATE(892)] = 24533, - [SMALL_STATE(893)] = 24537, - [SMALL_STATE(894)] = 24541, - [SMALL_STATE(895)] = 24545, - [SMALL_STATE(896)] = 24549, - [SMALL_STATE(897)] = 24553, - [SMALL_STATE(898)] = 24557, - [SMALL_STATE(899)] = 24561, - [SMALL_STATE(900)] = 24565, - [SMALL_STATE(901)] = 24569, - [SMALL_STATE(902)] = 24573, - [SMALL_STATE(903)] = 24577, - [SMALL_STATE(904)] = 24581, - [SMALL_STATE(905)] = 24585, - [SMALL_STATE(906)] = 24589, - [SMALL_STATE(907)] = 24593, - [SMALL_STATE(908)] = 24597, - [SMALL_STATE(909)] = 24601, - [SMALL_STATE(910)] = 24605, - [SMALL_STATE(911)] = 24609, - [SMALL_STATE(912)] = 24613, - [SMALL_STATE(913)] = 24617, - [SMALL_STATE(914)] = 24621, - [SMALL_STATE(915)] = 24625, - [SMALL_STATE(916)] = 24629, - [SMALL_STATE(917)] = 24633, - [SMALL_STATE(918)] = 24637, - [SMALL_STATE(919)] = 24641, - [SMALL_STATE(920)] = 24645, - [SMALL_STATE(921)] = 24649, - [SMALL_STATE(922)] = 24653, - [SMALL_STATE(923)] = 24657, - [SMALL_STATE(924)] = 24661, - [SMALL_STATE(925)] = 24665, - [SMALL_STATE(926)] = 24669, - [SMALL_STATE(927)] = 24673, - [SMALL_STATE(928)] = 24677, - [SMALL_STATE(929)] = 24681, - [SMALL_STATE(930)] = 24685, - [SMALL_STATE(931)] = 24689, - [SMALL_STATE(932)] = 24693, - [SMALL_STATE(933)] = 24697, - [SMALL_STATE(934)] = 24701, - [SMALL_STATE(935)] = 24705, - [SMALL_STATE(936)] = 24709, - [SMALL_STATE(937)] = 24713, - [SMALL_STATE(938)] = 24717, - [SMALL_STATE(939)] = 24721, - [SMALL_STATE(940)] = 24725, - [SMALL_STATE(941)] = 24729, - [SMALL_STATE(942)] = 24733, - [SMALL_STATE(943)] = 24737, - [SMALL_STATE(944)] = 24741, - [SMALL_STATE(945)] = 24745, - [SMALL_STATE(946)] = 24749, - [SMALL_STATE(947)] = 24753, - [SMALL_STATE(948)] = 24757, - [SMALL_STATE(949)] = 24761, - [SMALL_STATE(950)] = 24765, - [SMALL_STATE(951)] = 24769, - [SMALL_STATE(952)] = 24773, - [SMALL_STATE(953)] = 24777, - [SMALL_STATE(954)] = 24781, - [SMALL_STATE(955)] = 24785, - [SMALL_STATE(956)] = 24789, - [SMALL_STATE(957)] = 24793, - [SMALL_STATE(958)] = 24797, - [SMALL_STATE(959)] = 24801, - [SMALL_STATE(960)] = 24805, - [SMALL_STATE(961)] = 24809, - [SMALL_STATE(962)] = 24813, - [SMALL_STATE(963)] = 24817, - [SMALL_STATE(964)] = 24821, - [SMALL_STATE(965)] = 24825, - [SMALL_STATE(966)] = 24829, - [SMALL_STATE(967)] = 24833, - [SMALL_STATE(968)] = 24837, - [SMALL_STATE(969)] = 24841, - [SMALL_STATE(970)] = 24845, - [SMALL_STATE(971)] = 24849, - [SMALL_STATE(972)] = 24853, - [SMALL_STATE(973)] = 24857, - [SMALL_STATE(974)] = 24861, - [SMALL_STATE(975)] = 24865, - [SMALL_STATE(976)] = 24869, - [SMALL_STATE(977)] = 24873, - [SMALL_STATE(978)] = 24877, - [SMALL_STATE(979)] = 24881, - [SMALL_STATE(980)] = 24885, - [SMALL_STATE(981)] = 24889, - [SMALL_STATE(982)] = 24893, - [SMALL_STATE(983)] = 24897, - [SMALL_STATE(984)] = 24901, - [SMALL_STATE(985)] = 24905, - [SMALL_STATE(986)] = 24909, - [SMALL_STATE(987)] = 24913, - [SMALL_STATE(988)] = 24917, - [SMALL_STATE(989)] = 24921, - [SMALL_STATE(990)] = 24925, - [SMALL_STATE(991)] = 24929, - [SMALL_STATE(992)] = 24933, - [SMALL_STATE(993)] = 24937, - [SMALL_STATE(994)] = 24941, - [SMALL_STATE(995)] = 24945, - [SMALL_STATE(996)] = 24949, - [SMALL_STATE(997)] = 24953, - [SMALL_STATE(998)] = 24957, - [SMALL_STATE(999)] = 24961, - [SMALL_STATE(1000)] = 24965, - [SMALL_STATE(1001)] = 24969, - [SMALL_STATE(1002)] = 24973, - [SMALL_STATE(1003)] = 24977, - [SMALL_STATE(1004)] = 24981, - [SMALL_STATE(1005)] = 24985, - [SMALL_STATE(1006)] = 24989, - [SMALL_STATE(1007)] = 24993, - [SMALL_STATE(1008)] = 24997, - [SMALL_STATE(1009)] = 25001, - [SMALL_STATE(1010)] = 25005, - [SMALL_STATE(1011)] = 25009, - [SMALL_STATE(1012)] = 25013, - [SMALL_STATE(1013)] = 25017, - [SMALL_STATE(1014)] = 25021, - [SMALL_STATE(1015)] = 25025, - [SMALL_STATE(1016)] = 25029, - [SMALL_STATE(1017)] = 25033, - [SMALL_STATE(1018)] = 25037, - [SMALL_STATE(1019)] = 25041, - [SMALL_STATE(1020)] = 25045, - [SMALL_STATE(1021)] = 25049, + [SMALL_STATE(720)] = 23514, + [SMALL_STATE(721)] = 23528, + [SMALL_STATE(722)] = 23535, + [SMALL_STATE(723)] = 23543, + [SMALL_STATE(724)] = 23553, + [SMALL_STATE(725)] = 23563, + [SMALL_STATE(726)] = 23573, + [SMALL_STATE(727)] = 23583, + [SMALL_STATE(728)] = 23593, + [SMALL_STATE(729)] = 23603, + [SMALL_STATE(730)] = 23613, + [SMALL_STATE(731)] = 23623, + [SMALL_STATE(732)] = 23633, + [SMALL_STATE(733)] = 23643, + [SMALL_STATE(734)] = 23653, + [SMALL_STATE(735)] = 23663, + [SMALL_STATE(736)] = 23671, + [SMALL_STATE(737)] = 23678, + [SMALL_STATE(738)] = 23685, + [SMALL_STATE(739)] = 23692, + [SMALL_STATE(740)] = 23699, + [SMALL_STATE(741)] = 23706, + [SMALL_STATE(742)] = 23713, + [SMALL_STATE(743)] = 23720, + [SMALL_STATE(744)] = 23727, + [SMALL_STATE(745)] = 23734, + [SMALL_STATE(746)] = 23741, + [SMALL_STATE(747)] = 23748, + [SMALL_STATE(748)] = 23755, + [SMALL_STATE(749)] = 23762, + [SMALL_STATE(750)] = 23769, + [SMALL_STATE(751)] = 23776, + [SMALL_STATE(752)] = 23783, + [SMALL_STATE(753)] = 23790, + [SMALL_STATE(754)] = 23797, + [SMALL_STATE(755)] = 23804, + [SMALL_STATE(756)] = 23811, + [SMALL_STATE(757)] = 23818, + [SMALL_STATE(758)] = 23825, + [SMALL_STATE(759)] = 23832, + [SMALL_STATE(760)] = 23839, + [SMALL_STATE(761)] = 23846, + [SMALL_STATE(762)] = 23853, + [SMALL_STATE(763)] = 23860, + [SMALL_STATE(764)] = 23867, + [SMALL_STATE(765)] = 23874, + [SMALL_STATE(766)] = 23881, + [SMALL_STATE(767)] = 23888, + [SMALL_STATE(768)] = 23895, + [SMALL_STATE(769)] = 23902, + [SMALL_STATE(770)] = 23909, + [SMALL_STATE(771)] = 23916, + [SMALL_STATE(772)] = 23923, + [SMALL_STATE(773)] = 23930, + [SMALL_STATE(774)] = 23937, + [SMALL_STATE(775)] = 23944, + [SMALL_STATE(776)] = 23951, + [SMALL_STATE(777)] = 23958, + [SMALL_STATE(778)] = 23965, + [SMALL_STATE(779)] = 23972, + [SMALL_STATE(780)] = 23979, + [SMALL_STATE(781)] = 23986, + [SMALL_STATE(782)] = 23993, + [SMALL_STATE(783)] = 24000, + [SMALL_STATE(784)] = 24007, + [SMALL_STATE(785)] = 24014, + [SMALL_STATE(786)] = 24021, + [SMALL_STATE(787)] = 24028, + [SMALL_STATE(788)] = 24035, + [SMALL_STATE(789)] = 24042, + [SMALL_STATE(790)] = 24049, + [SMALL_STATE(791)] = 24056, + [SMALL_STATE(792)] = 24063, + [SMALL_STATE(793)] = 24067, + [SMALL_STATE(794)] = 24071, + [SMALL_STATE(795)] = 24075, + [SMALL_STATE(796)] = 24079, + [SMALL_STATE(797)] = 24083, + [SMALL_STATE(798)] = 24087, + [SMALL_STATE(799)] = 24091, + [SMALL_STATE(800)] = 24095, + [SMALL_STATE(801)] = 24099, + [SMALL_STATE(802)] = 24103, + [SMALL_STATE(803)] = 24107, + [SMALL_STATE(804)] = 24111, + [SMALL_STATE(805)] = 24115, + [SMALL_STATE(806)] = 24119, + [SMALL_STATE(807)] = 24123, + [SMALL_STATE(808)] = 24127, + [SMALL_STATE(809)] = 24131, + [SMALL_STATE(810)] = 24135, + [SMALL_STATE(811)] = 24139, + [SMALL_STATE(812)] = 24143, + [SMALL_STATE(813)] = 24147, + [SMALL_STATE(814)] = 24151, + [SMALL_STATE(815)] = 24155, + [SMALL_STATE(816)] = 24159, + [SMALL_STATE(817)] = 24163, + [SMALL_STATE(818)] = 24167, + [SMALL_STATE(819)] = 24171, + [SMALL_STATE(820)] = 24175, + [SMALL_STATE(821)] = 24179, + [SMALL_STATE(822)] = 24183, + [SMALL_STATE(823)] = 24187, + [SMALL_STATE(824)] = 24191, + [SMALL_STATE(825)] = 24195, + [SMALL_STATE(826)] = 24199, + [SMALL_STATE(827)] = 24203, + [SMALL_STATE(828)] = 24207, + [SMALL_STATE(829)] = 24211, + [SMALL_STATE(830)] = 24215, + [SMALL_STATE(831)] = 24219, + [SMALL_STATE(832)] = 24223, + [SMALL_STATE(833)] = 24227, + [SMALL_STATE(834)] = 24231, + [SMALL_STATE(835)] = 24235, + [SMALL_STATE(836)] = 24239, + [SMALL_STATE(837)] = 24243, + [SMALL_STATE(838)] = 24247, + [SMALL_STATE(839)] = 24251, + [SMALL_STATE(840)] = 24255, + [SMALL_STATE(841)] = 24259, + [SMALL_STATE(842)] = 24263, + [SMALL_STATE(843)] = 24267, + [SMALL_STATE(844)] = 24271, + [SMALL_STATE(845)] = 24275, + [SMALL_STATE(846)] = 24279, + [SMALL_STATE(847)] = 24283, + [SMALL_STATE(848)] = 24287, + [SMALL_STATE(849)] = 24291, + [SMALL_STATE(850)] = 24295, + [SMALL_STATE(851)] = 24299, + [SMALL_STATE(852)] = 24303, + [SMALL_STATE(853)] = 24307, + [SMALL_STATE(854)] = 24311, + [SMALL_STATE(855)] = 24315, + [SMALL_STATE(856)] = 24319, + [SMALL_STATE(857)] = 24323, + [SMALL_STATE(858)] = 24327, + [SMALL_STATE(859)] = 24331, + [SMALL_STATE(860)] = 24335, + [SMALL_STATE(861)] = 24339, + [SMALL_STATE(862)] = 24343, + [SMALL_STATE(863)] = 24347, + [SMALL_STATE(864)] = 24351, + [SMALL_STATE(865)] = 24355, + [SMALL_STATE(866)] = 24359, + [SMALL_STATE(867)] = 24363, + [SMALL_STATE(868)] = 24367, + [SMALL_STATE(869)] = 24371, + [SMALL_STATE(870)] = 24375, + [SMALL_STATE(871)] = 24379, + [SMALL_STATE(872)] = 24383, + [SMALL_STATE(873)] = 24387, + [SMALL_STATE(874)] = 24391, + [SMALL_STATE(875)] = 24395, + [SMALL_STATE(876)] = 24399, + [SMALL_STATE(877)] = 24403, + [SMALL_STATE(878)] = 24407, + [SMALL_STATE(879)] = 24411, + [SMALL_STATE(880)] = 24415, + [SMALL_STATE(881)] = 24419, + [SMALL_STATE(882)] = 24423, + [SMALL_STATE(883)] = 24427, + [SMALL_STATE(884)] = 24431, + [SMALL_STATE(885)] = 24435, + [SMALL_STATE(886)] = 24439, + [SMALL_STATE(887)] = 24443, + [SMALL_STATE(888)] = 24447, + [SMALL_STATE(889)] = 24451, + [SMALL_STATE(890)] = 24455, + [SMALL_STATE(891)] = 24459, + [SMALL_STATE(892)] = 24463, + [SMALL_STATE(893)] = 24467, + [SMALL_STATE(894)] = 24471, + [SMALL_STATE(895)] = 24475, + [SMALL_STATE(896)] = 24479, + [SMALL_STATE(897)] = 24483, + [SMALL_STATE(898)] = 24487, + [SMALL_STATE(899)] = 24491, + [SMALL_STATE(900)] = 24495, + [SMALL_STATE(901)] = 24499, + [SMALL_STATE(902)] = 24503, + [SMALL_STATE(903)] = 24507, + [SMALL_STATE(904)] = 24511, + [SMALL_STATE(905)] = 24515, + [SMALL_STATE(906)] = 24519, + [SMALL_STATE(907)] = 24523, + [SMALL_STATE(908)] = 24527, + [SMALL_STATE(909)] = 24531, + [SMALL_STATE(910)] = 24535, + [SMALL_STATE(911)] = 24539, + [SMALL_STATE(912)] = 24543, + [SMALL_STATE(913)] = 24547, + [SMALL_STATE(914)] = 24551, + [SMALL_STATE(915)] = 24555, + [SMALL_STATE(916)] = 24559, + [SMALL_STATE(917)] = 24563, + [SMALL_STATE(918)] = 24567, + [SMALL_STATE(919)] = 24571, + [SMALL_STATE(920)] = 24575, + [SMALL_STATE(921)] = 24579, + [SMALL_STATE(922)] = 24583, + [SMALL_STATE(923)] = 24587, + [SMALL_STATE(924)] = 24591, + [SMALL_STATE(925)] = 24595, + [SMALL_STATE(926)] = 24599, + [SMALL_STATE(927)] = 24603, + [SMALL_STATE(928)] = 24607, + [SMALL_STATE(929)] = 24611, + [SMALL_STATE(930)] = 24615, + [SMALL_STATE(931)] = 24619, + [SMALL_STATE(932)] = 24623, + [SMALL_STATE(933)] = 24627, + [SMALL_STATE(934)] = 24631, + [SMALL_STATE(935)] = 24635, + [SMALL_STATE(936)] = 24639, + [SMALL_STATE(937)] = 24643, + [SMALL_STATE(938)] = 24647, + [SMALL_STATE(939)] = 24651, + [SMALL_STATE(940)] = 24655, + [SMALL_STATE(941)] = 24659, + [SMALL_STATE(942)] = 24663, + [SMALL_STATE(943)] = 24667, + [SMALL_STATE(944)] = 24671, + [SMALL_STATE(945)] = 24675, + [SMALL_STATE(946)] = 24679, + [SMALL_STATE(947)] = 24683, + [SMALL_STATE(948)] = 24687, + [SMALL_STATE(949)] = 24691, + [SMALL_STATE(950)] = 24695, + [SMALL_STATE(951)] = 24699, + [SMALL_STATE(952)] = 24703, + [SMALL_STATE(953)] = 24707, + [SMALL_STATE(954)] = 24711, + [SMALL_STATE(955)] = 24715, + [SMALL_STATE(956)] = 24719, + [SMALL_STATE(957)] = 24723, + [SMALL_STATE(958)] = 24727, + [SMALL_STATE(959)] = 24731, + [SMALL_STATE(960)] = 24735, + [SMALL_STATE(961)] = 24739, + [SMALL_STATE(962)] = 24743, + [SMALL_STATE(963)] = 24747, + [SMALL_STATE(964)] = 24751, + [SMALL_STATE(965)] = 24755, + [SMALL_STATE(966)] = 24759, + [SMALL_STATE(967)] = 24763, + [SMALL_STATE(968)] = 24767, + [SMALL_STATE(969)] = 24771, + [SMALL_STATE(970)] = 24775, + [SMALL_STATE(971)] = 24779, + [SMALL_STATE(972)] = 24783, + [SMALL_STATE(973)] = 24787, + [SMALL_STATE(974)] = 24791, + [SMALL_STATE(975)] = 24795, + [SMALL_STATE(976)] = 24799, + [SMALL_STATE(977)] = 24803, + [SMALL_STATE(978)] = 24807, + [SMALL_STATE(979)] = 24811, + [SMALL_STATE(980)] = 24815, + [SMALL_STATE(981)] = 24819, + [SMALL_STATE(982)] = 24823, + [SMALL_STATE(983)] = 24827, + [SMALL_STATE(984)] = 24831, + [SMALL_STATE(985)] = 24835, + [SMALL_STATE(986)] = 24839, + [SMALL_STATE(987)] = 24843, + [SMALL_STATE(988)] = 24847, + [SMALL_STATE(989)] = 24851, + [SMALL_STATE(990)] = 24855, + [SMALL_STATE(991)] = 24859, + [SMALL_STATE(992)] = 24863, + [SMALL_STATE(993)] = 24867, + [SMALL_STATE(994)] = 24871, + [SMALL_STATE(995)] = 24875, + [SMALL_STATE(996)] = 24879, + [SMALL_STATE(997)] = 24883, + [SMALL_STATE(998)] = 24887, + [SMALL_STATE(999)] = 24891, + [SMALL_STATE(1000)] = 24895, + [SMALL_STATE(1001)] = 24899, + [SMALL_STATE(1002)] = 24903, + [SMALL_STATE(1003)] = 24907, + [SMALL_STATE(1004)] = 24911, + [SMALL_STATE(1005)] = 24915, + [SMALL_STATE(1006)] = 24919, + [SMALL_STATE(1007)] = 24923, + [SMALL_STATE(1008)] = 24927, + [SMALL_STATE(1009)] = 24931, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [49] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), - [51] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(775), - [54] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(203), - [57] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(144), - [60] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(383), - [63] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(837), - [66] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(204), - [69] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(204), - [72] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(205), - [75] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(11), - [78] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(37), - [81] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(38), - [84] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), - [86] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(39), - [89] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(40), - [92] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(140), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [97] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(48), - [100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(49), - [103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(394), - [106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(395), - [109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(396), - [112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(397), - [115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(118), - [118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(149), - [121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(957), - [124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(39), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), - [129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(203), - [132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(397), - [135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(383), - [138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(40), - [141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(777), - [144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(174), - [147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(134), - [150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(393), - [153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(979), - [156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(215), - [159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(215), - [162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(213), - [165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(47), - [168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(46), - [171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(45), - [174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(44), - [177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(43), - [180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(139), - [183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(9), - [186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(41), - [189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(381), - [192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(391), - [195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(390), - [198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(389), - [201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(95), - [204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(141), - [207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(912), - [210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(752), - [213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(173), - [216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(133), - [219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(288), - [222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(943), - [225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(176), - [228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(176), - [231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(177), - [234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(29), - [237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(28), - [240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(27), - [243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(26), - [246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(25), - [249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(162), - [252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(4), - [255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(24), - [258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(287), - [261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(286), - [264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(285), - [267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(284), - [270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(87), - [273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(155), - [276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(921), - [279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(44), - [282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(26), - [285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(801), - [288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(208), - [291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(138), - [294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(242), - [297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(908), - [300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(211), - [303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(211), - [306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(212), - [309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(62), - [312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(66), - [315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(68), - [318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(55), - [321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(42), - [324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(150), - [327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(2), - [330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(61), - [333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(243), - [336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(244), - [339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(245), - [342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(246), - [345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(83), - [348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(137), - [351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(930), - [354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(796), - [357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(196), - [360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(151), - [363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(279), - [366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(895), - [369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(172), - [372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(172), - [375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(194), - [378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(13), - [381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(14), - [384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(20), - [387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(22), - [390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(23), - [393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(168), - [396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(5), - [399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(30), - [402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(290), - [405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(291), - [408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(292), - [411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(293), - [414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(79), - [417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(170), - [420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(939), - [423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(755), - [426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(181), - [429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(164), - [432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(331), - [435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(870), - [438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(182), - [441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(182), - [444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(183), - [447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(31), - [450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(32), - [453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(33), - [456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(34), - [459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(35), - [462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(156), - [465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(10), - [468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(36), - [471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(342), - [474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(343), - [477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(344), - [480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(345), - [483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(117), - [486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(153), - [489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(948), - [492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(55), - [495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(22), - [498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(34), - [501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(43), - [504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(25), - [507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(42), - [510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(23), - [513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(35), - [516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(732), - [519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(393), - [522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(389), - [525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(288), - [528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(284), - [531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(181), - [534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(345), - [537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(196), - [540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(293), - [543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(208), - [546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(246), - [549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(173), - [552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(174), - [555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(242), - [558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(331), - [561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(279), - [564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), - [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline, 1), - [590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline, 1), - [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), - [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), - [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), - [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(752), - [663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(173), - [666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(133), - [669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(288), - [672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(943), - [675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(176), - [678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(176), - [681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(177), - [684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(29), - [687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(28), - [690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), - [692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(27), - [695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(26), - [698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(25), - [701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(162), - [704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(4), - [707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(24), - [710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(287), - [713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(286), - [716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(285), - [719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(284), - [722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(81), - [725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(155), - [728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(921), - [731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(754), - [734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(214), - [737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(136), - [740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(223), - [743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1009), - [746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(197), - [749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(197), - [752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(193), - [755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(15), - [758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(16), - [761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(17), - [764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(18), - [767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(19), - [770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(158), - [773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(3), - [776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(21), - [779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(234), - [782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(249), - [785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(258), - [788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(269), - [791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(82), - [794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(171), - [797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(913), - [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), - [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), - [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), - [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(773), - [849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(186), - [852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(159), - [855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(532), - [858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(845), - [861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(188), - [864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(188), - [867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(191), - [870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(53), - [873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(12), - [876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(72), - [879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(71), - [882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(70), - [885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(148), - [888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(6), - [891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(67), - [894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(537), - [897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(538), - [900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(539), - [903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(540), - [906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(84), - [909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(147), - [912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(984), - [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), - [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), - [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), - [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), - [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), - [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), - [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), - [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), - [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), - [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), - [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [1103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(796), - [1106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(196), - [1109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(151), - [1112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(279), - [1115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(895), - [1118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(172), - [1121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(172), - [1124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(194), - [1127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(13), - [1130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(14), - [1133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(20), - [1136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(22), - [1139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(22), - [1142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(23), - [1145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(168), - [1148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(5), - [1151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(30), - [1154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(290), - [1157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(291), - [1160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(292), - [1163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(293), - [1166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(103), - [1169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(170), - [1172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(939), - [1175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(798), - [1178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(190), - [1181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(157), - [1184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(435), - [1187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(808), - [1190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(189), - [1193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(189), - [1196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(187), - [1199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(51), - [1202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(52), - [1205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(63), - [1208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(69), - [1211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(64), - [1214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(132), - [1217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(8), - [1220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(54), - [1223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(446), - [1226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(447), - [1229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(448), - [1232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(449), - [1235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(104), - [1238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(161), - [1241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(966), - [1244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(801), - [1247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(208), - [1250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(138), - [1253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(242), - [1256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(908), - [1259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(211), - [1262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(211), - [1265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(212), - [1268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(62), - [1271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(66), - [1274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(68), - [1277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(55), - [1280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(42), - [1283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(150), - [1286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(2), - [1289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(61), - [1292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(243), - [1295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(244), - [1298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(245), - [1301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(246), - [1304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(105), - [1307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(137), - [1310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(930), - [1313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(777), - [1316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(174), - [1319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(134), - [1322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(393), - [1325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(979), - [1328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(215), - [1331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(215), - [1334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(213), - [1337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(47), - [1340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(46), - [1343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(45), - [1346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(44), - [1349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(43), - [1352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(139), - [1355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(9), - [1358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(41), - [1361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(381), - [1364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(391), - [1367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(390), - [1370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(389), - [1373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(115), - [1376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(141), - [1379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(912), - [1382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(775), - [1385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(203), - [1388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(144), - [1391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(383), - [1394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(837), - [1397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(204), - [1400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(204), - [1403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(205), - [1406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(11), - [1409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(37), - [1412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(38), - [1415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(39), - [1418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(40), - [1421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(140), - [1424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(48), - [1427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(49), - [1430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(394), - [1433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(395), - [1436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(396), - [1439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(397), - [1442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(116), - [1445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(149), - [1448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(957), - [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), - [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), - [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), - [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), - [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), - [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [1543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(755), - [1546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(181), - [1549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(164), - [1552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(331), - [1555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(870), - [1558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(182), - [1561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(182), - [1564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(183), - [1567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(31), - [1570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(32), - [1573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(33), - [1576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(34), - [1579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(35), - [1582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(35), - [1585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(156), - [1588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(10), - [1591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(36), - [1594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(342), - [1597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(343), - [1600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(344), - [1603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(345), - [1606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(119), - [1609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(153), - [1612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(948), - [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), - [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [1621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(758), - [1624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(485), - [1627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(200), - [1630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(590), - [1633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(868), - [1636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(466), - [1639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(466), - [1642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(464), - [1645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(76), - [1648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(75), - [1651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(74), - [1654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(73), - [1657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(78), - [1660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(185), - [1663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(50), - [1666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(77), - [1669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(601), - [1672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(602), - [1675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(603), - [1678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(563), - [1681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(131), - [1684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(210), - [1687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(993), - [1690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), - [1692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), - [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), - [1697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_strong_begin, 1), REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), - [1700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verbatim, 3, .production_id = 1), - [1702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verbatim, 3, .production_id = 1), - [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [1706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), - [1708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element, 1), - [1710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__element, 1), - [1712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), - [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [1722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), - [1724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), - [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [1728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [1732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), - [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [1736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [1738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), - [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [1744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), - [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), - [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [1752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__text, 2), - [1754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__text, 2), - [1756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(175), - [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), - [1761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(178), - [1764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), - [1766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [1768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), - [1770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(184), - [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), - [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), - [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), - [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), - [1787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(195), - [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [1792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(198), - [1795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(199), - [1798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(201), - [1801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(202), - [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), - [1808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(206), - [1811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(207), - [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [1818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), - [1820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), - [1822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), - [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [1826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_image, 2), - [1828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_image, 2), - [1830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strong, 3, .production_id = 3), - [1832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strong, 3, .production_id = 3), - [1834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collapsed_reference_link, 2), - [1836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collapsed_reference_link, 2), - [1838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_reference_link, 2), - [1840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_reference_link, 2), - [1842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 2), - [1844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 2), - [1846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 3, .dynamic_precedence = -1000), - [1848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 3, .dynamic_precedence = -1000), - [1850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_autolink, 3), - [1852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_autolink, 3), - [1854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_highlighted, 3, .production_id = 3), - [1856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlighted, 3, .production_id = 3), - [1858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 3, .production_id = 3), - [1860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 3, .production_id = 3), - [1862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete, 3, .production_id = 3), - [1864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete, 3, .production_id = 3), - [1866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_superscript, 3, .production_id = 3), - [1868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_superscript, 3, .production_id = 3), - [1870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 3, .production_id = 3), - [1872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 3, .production_id = 3), - [1874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_footnote_reference, 3, .production_id = 4), - [1876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_footnote_reference, 3, .production_id = 4), - [1878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strong_end, 1), - [1880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strong_end, 1), - [1882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_inline, 4), - [1884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_inline, 4), - [1886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(985), - [1889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_span, 4), - [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_span, 4), - [1893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math, 4, .production_id = 7), - [1895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math, 4, .production_id = 7), - [1897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comment, 3), - [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 3), - [1901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_label, 3, .production_id = 8), - [1903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_label, 3, .production_id = 8), - [1905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link_destination, 3), - [1907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link_destination, 3), - [1909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_emphasis, 5), - [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emphasis, 5), - [1913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_inline_attribute, 3), - [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_inline_attribute, 3), - [1917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(933), - [1920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_todo, 1), - [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_todo, 1), - [1924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_note, 1), - [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note, 1), - [1928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 1), - [1930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), - [1932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(766), - [1935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 2, .dynamic_precedence = -1000), - [1937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 2, .dynamic_precedence = -1000), - [1939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hard_line_break, 2), - [1941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hard_line_break, 2), - [1943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__comment_with_spaces, 2), - [1945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_with_spaces, 2), - [1947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collapsed_reference_image, 2), - [1949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collapsed_reference_image, 2), - [1951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_reference_image, 2), - [1953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_reference_image, 2), - [1955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(790), - [1958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(800), - [1961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(924), - [1964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(942), - [1967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(756), - [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strong_begin, 2), - [1972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), - [1974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strong_begin, 2), - [1976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_attribute, 3, .production_id = 6), - [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_attribute, 3, .production_id = 6), - [1980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_attribute, 2), - [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_attribute, 2), - [1984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(951), - [1987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(757), - [1990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(915), - [1993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(767), - [1996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(960), - [1999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(761), - [2002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(439), - [2005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(969), - [2008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(772), - [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), - [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [2015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(978), - [2018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(987), - [2021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(792), - [2024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_strong_begin_repeat1, 2), - [2026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_strong_begin_repeat1, 2), SHIFT_REPEAT(550), - [2029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_strong_begin_repeat1, 2), - [2031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(799), - [2034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element, 2), - [2036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__element, 2), - [2038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(781), - [2041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_without_trailing_space, 1), REDUCE(aux_sym__inline_repeat1, 1), - [2044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_without_trailing_space, 1), - [2046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), REDUCE(sym__inline_without_trailing_space, 2), - [2049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_without_trailing_space, 2), - [2051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(996), - [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [2074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), - [2076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(1007), - [2079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(934), - [2082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(678), - [2085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(760), - [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [2164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_with_newline, 3), - [2166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 1, .production_id = 2), - [2168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 1), - [2170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_name, 1), - [2172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2), - [2174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 3), - [2176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_with_newline, 4, .production_id = 9), - [2178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value, 3), - [2180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1), - [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [2190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_text, 3), - [2192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_text, 3), - [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [2198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), - [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [2210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), - [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [2220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), - [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [2230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), - [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), - [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [2242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), - [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [2250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), - [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [2276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), - [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [2282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), - [2284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), - [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [2288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), - [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [2294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__comment_with_newline_repeat1, 2), SHIFT_REPEAT(721), - [2297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_with_newline_repeat1, 2), - [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), - [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [2307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_with_newline_repeat1, 1), - [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), - [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [2313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), - [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [2317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_description, 3, .production_id = 5), - [2319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_description, 3, .production_id = 5), - [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), - [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [2329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [2333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [49] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), + [51] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(773), + [54] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(195), + [57] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(144), + [60] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(381), + [63] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(795), + [66] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(201), + [69] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(201), + [72] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(202), + [75] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(37), + [78] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(38), + [81] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(39), + [84] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(40), + [87] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(41), + [90] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(41), + [93] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), + [95] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(134), + [98] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(12), + [103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(43), + [106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(392), + [109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(393), + [112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(394), + [115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(395), + [118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(118), + [121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(139), + [124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(955), + [127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(40), + [130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), + [132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(381), + [135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(395), + [138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(735), + [141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(759), + [144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(203), + [147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(140), + [150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(397), + [153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(905), + [156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(205), + [159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(205), + [162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(207), + [165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(51), + [168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(49), + [171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(48), + [174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(47), + [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(47), + [180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(46), + [183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(171), + [186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(10), + [189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(44), + [192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(358), + [195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(391), + [198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(390), + [201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(389), + [204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(115), + [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(136), + [210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(910), + [213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(766), + [216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(188), + [219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(169), + [222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(292), + [225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(888), + [228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(174), + [231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(174), + [234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(175), + [237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(30), + [240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(29), + [243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(28), + [246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(27), + [249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(26), + [252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(162), + [255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(6), + [258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(25), + [261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(287), + [264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(286), + [267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(285), + [270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(284), + [273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(91), + [276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(148), + [279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(919), + [282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(774), + [285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(206), + [288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(135), + [291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(240), + [294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(833), + [297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(209), + [300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(209), + [303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(210), + [306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(42), + [309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(61), + [312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(62), + [315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(66), + [318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(68), + [321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(158), + [324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(3), + [327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(13), + [330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(241), + [333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(242), + [336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(243), + [339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(244), + [342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(88), + [345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(150), + [348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(928), + [351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(765), + [354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(196), + [357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(143), + [360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(277), + [363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(898), + [366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(194), + [369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(194), + [372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(173), + [375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(14), + [378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(20), + [381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(22), + [384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(23), + [387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(24), + [390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(155), + [393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(5), + [396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(31), + [399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(288), + [402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(289), + [405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(290), + [408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(291), + [411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(102), + [414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(170), + [417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(937), + [420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(750), + [423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(180), + [426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(164), + [429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(329), + [432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(941), + [435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(181), + [438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(181), + [441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(182), + [444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(32), + [447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(33), + [450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(34), + [453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(35), + [456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(36), + [459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(156), + [462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(2), + [465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(11), + [468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(340), + [471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(341), + [474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(342), + [477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(343), + [480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(114), + [483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(153), + [486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(946), + [489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(27), + [492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(66), + [495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(23), + [498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(35), + [501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(46), + [504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(26), + [507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(68), + [510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(24), + [513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(36), + [516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(397), + [519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(389), + [522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(292), + [525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(284), + [528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(240), + [531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(244), + [534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(329), + [537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(343), + [540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(277), + [543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(291), + [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), + [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), + [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), + [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), + [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(750), + [641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(180), + [644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(164), + [647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(329), + [650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(941), + [653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(181), + [656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(181), + [659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(182), + [662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(32), + [665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(33), + [668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(34), + [671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(35), + [674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(36), + [677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(36), + [680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), + [682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(156), + [685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(2), + [688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(11), + [691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(340), + [694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(341), + [697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(342), + [700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(343), + [703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(81), + [706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(153), + [709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(946), + [712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(740), + [715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(214), + [718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(163), + [721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(221), + [724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(992), + [727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(198), + [730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(198), + [733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(197), + [736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(15), + [739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(16), + [742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(17), + [745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(18), + [748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(19), + [751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(145), + [754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(4), + [757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(21), + [760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(232), + [763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(247), + [766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(256), + [769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(267), + [772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(82), + [775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(168), + [778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(911), + [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), + [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), + [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(774), + [830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(206), + [833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(135), + [836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(240), + [839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(833), + [842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(209), + [845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(209), + [848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(210), + [851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(42), + [854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(61), + [857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(62), + [860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(66), + [863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(68), + [866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(158), + [869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(3), + [872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(13), + [875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(241), + [878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(242), + [881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(243), + [884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(244), + [887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(86), + [890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(150), + [893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(928), + [896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(766), + [899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(188), + [902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(169), + [905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(292), + [908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(888), + [911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(174), + [914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(174), + [917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(175), + [920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(30), + [923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(29), + [926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(28), + [929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(27), + [932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(26), + [935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(162), + [938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(6), + [941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(25), + [944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(287), + [947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(286), + [950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(285), + [953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(284), + [956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(87), + [959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(148), + [962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(919), + [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), + [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline, 1), + [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), + [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), + [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), + [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), + [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [1087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline, 1), + [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), + [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [1111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(765), + [1114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(196), + [1117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(143), + [1120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(277), + [1123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(898), + [1126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(194), + [1129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(194), + [1132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(173), + [1135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(14), + [1138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(20), + [1141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(22), + [1144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(23), + [1147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(23), + [1150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(24), + [1153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(155), + [1156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(5), + [1159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(31), + [1162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(288), + [1165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(289), + [1168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(290), + [1171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(291), + [1174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(103), + [1177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(170), + [1180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(937), + [1183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(775), + [1186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(187), + [1189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(154), + [1192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(433), + [1195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(814), + [1198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(186), + [1201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(186), + [1204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(185), + [1207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(52), + [1210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(53), + [1213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(63), + [1216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(69), + [1219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(64), + [1222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(159), + [1225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(9), + [1228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(55), + [1231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(444), + [1234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(445), + [1237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(446), + [1240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(447), + [1243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(104), + [1246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(160), + [1249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(964), + [1252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), + [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [1264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), + [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [1268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), + [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [1292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [1294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [1296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [1298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), + [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [1332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), + [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), + [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [1348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(773), + [1351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(195), + [1354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(144), + [1357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(381), + [1360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(795), + [1363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(201), + [1366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(201), + [1369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(202), + [1372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(37), + [1375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(38), + [1378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(39), + [1381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(40), + [1384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(41), + [1387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(134), + [1390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(12), + [1393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(43), + [1396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(392), + [1399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(393), + [1402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(394), + [1405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(395), + [1408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(116), + [1411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(139), + [1414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(955), + [1417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(776), + [1420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(189), + [1423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(147), + [1426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(523), + [1429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(849), + [1432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(191), + [1435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(191), + [1438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(199), + [1441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(54), + [1444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(45), + [1447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(72), + [1450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(71), + [1453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(70), + [1456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(142), + [1459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(7), + [1462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(67), + [1465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(528), + [1468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(529), + [1471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(530), + [1474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(531), + [1477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(117), + [1480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(137), + [1483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(982), + [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [1494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [1498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [1502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [1516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), + [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [1522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [1530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [1532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(759), + [1535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(203), + [1538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(140), + [1541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(397), + [1544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(905), + [1547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(205), + [1550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(205), + [1553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(207), + [1556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(51), + [1559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(49), + [1562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(48), + [1565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(47), + [1568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(46), + [1571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(171), + [1574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(10), + [1577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(44), + [1580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(358), + [1583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(391), + [1586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(390), + [1589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(389), + [1592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(123), + [1595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(136), + [1598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(910), + [1601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(782), + [1604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(217), + [1607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(213), + [1610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(588), + [1613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(866), + [1616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(483), + [1619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(483), + [1622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(475), + [1625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(78), + [1628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(77), + [1631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(76), + [1634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(73), + [1637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(74), + [1640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(208), + [1643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(50), + [1646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(75), + [1649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(599), + [1652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(600), + [1655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(601), + [1658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(564), + [1661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(130), + [1664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(215), + [1667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(991), + [1670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [1672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verbatim, 3, .production_id = 1), + [1674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verbatim, 3, .production_id = 1), + [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [1678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), REDUCE(sym__symbol_fallback, 1), + [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [1683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_strong_begin, 1), REDUCE(sym__symbol_fallback, 1), + [1686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), + [1688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), + [1690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element, 1), + [1692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__element, 1), + [1694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), + [1696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [1698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [1700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [1702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [1704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), + [1706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [1708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), + [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [1714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), + [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [1718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [1720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), + [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [1724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [1726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [1728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [1730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__text, 2), + [1732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__text, 2), + [1734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(172), + [1737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), + [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), + [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), + [1745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(179), + [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [1750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [1752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(183), + [1755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(184), + [1758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), + [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [1766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(190), + [1769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(192), + [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [1778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), + [1780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), + [1782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(200), + [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), + [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [1789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(204), + [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [1794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [1796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), + [1798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(211), + [1801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(212), + [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [1808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__comment_with_spaces, 2), + [1810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_with_spaces, 2), + [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [1814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_reference_link, 2), + [1816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_reference_link, 2), + [1818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 2), + [1820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 2), + [1822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 3), + [1824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 3), + [1826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_autolink, 3), + [1828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_autolink, 3), + [1830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_highlighted, 3, .production_id = 3), + [1832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlighted, 3, .production_id = 3), + [1834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 3, .production_id = 3), + [1836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 3, .production_id = 3), + [1838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete, 3, .production_id = 3), + [1840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete, 3, .production_id = 3), + [1842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_superscript, 3, .production_id = 3), + [1844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_superscript, 3, .production_id = 3), + [1846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 3, .production_id = 3), + [1848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 3, .production_id = 3), + [1850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_footnote_reference, 3, .production_id = 4), + [1852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_footnote_reference, 3, .production_id = 4), + [1854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strong_end, 1, .dynamic_precedence = 1000), + [1856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strong_end, 1, .dynamic_precedence = 1000), + [1858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strong, 3, .production_id = 3), + [1860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strong, 3, .production_id = 3), + [1862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_inline, 4), + [1864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_inline, 4), + [1866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(960), + [1869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_span, 4), + [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_span, 4), + [1873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math, 4, .production_id = 7), + [1875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math, 4, .production_id = 7), + [1877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comment, 3), + [1879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 3), + [1881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_emphasis, 4, .dynamic_precedence = 1000), + [1883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emphasis, 4, .dynamic_precedence = 1000), + [1885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_label, 3, .production_id = 8), + [1887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_label, 3, .production_id = 8), + [1889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link_destination, 3), + [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link_destination, 3), + [1893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_inline_attribute, 3), + [1895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_inline_attribute, 3), + [1897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(931), + [1900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_todo, 1), + [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_todo, 1), + [1904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_note, 1), + [1906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note, 1), + [1908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 1), + [1910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), + [1912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(751), + [1915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 2), + [1917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 2), + [1919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hard_line_break, 2), + [1921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hard_line_break, 2), + [1923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collapsed_reference_image, 2), + [1925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collapsed_reference_image, 2), + [1927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_reference_image, 2), + [1929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_reference_image, 2), + [1931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_image, 2), + [1933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_image, 2), + [1935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collapsed_reference_link, 2), + [1937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collapsed_reference_link, 2), + [1939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(757), + [1942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(756), + [1945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(922), + [1948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(940), + [1951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(749), + [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strong_begin, 2), + [1956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), + [1958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strong_begin, 2), + [1960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_attribute, 3, .production_id = 6), + [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_attribute, 3, .production_id = 6), + [1964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_attribute, 2), + [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_attribute, 2), + [1968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(949), + [1971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(748), + [1974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(913), + [1977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(758), + [1980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(958), + [1983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(746), + [1986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(437), + [1989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(967), + [1992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(745), + [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), + [1997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(976), + [2000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(985), + [2003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(743), + [2006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_strong_begin_repeat1, 2), + [2008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_strong_begin_repeat1, 2), SHIFT_REPEAT(541), + [2011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_strong_begin_repeat1, 2), + [2013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(742), + [2016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element, 2), + [2018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__element, 2), + [2020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_without_trailing_space, 1), + [2022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(744), + [2025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_without_trailing_space, 2), + [2027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(994), + [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [2032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [2044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), + [2046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(969), + [2049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(988), + [2052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(676), + [2055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(741), + [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [2140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 1), + [2142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 1, .production_id = 2), + [2144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1), + [2146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value, 3), + [2148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_with_newline, 4, .production_id = 9), + [2150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_with_newline, 3), + [2152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 3), + [2154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2), + [2156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_name, 1), + [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [2160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), + [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [2164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__comment_with_newline_repeat1, 2), SHIFT_REPEAT(721), + [2167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_with_newline_repeat1, 2), + [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [2171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_text, 3), + [2173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_text, 3), + [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), + [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), + [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), + [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), + [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [2213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), + [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [2221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), + [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), + [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [2229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [2239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), + [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), + [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [2259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), + [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [2265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), + [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [2283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_with_newline_repeat1, 1), + [2285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_description, 3, .production_id = 5), + [2287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_description, 3, .production_id = 5), + [2289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), + [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), + [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [2313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), + [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [2317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), + [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), + [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [2325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [2329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), + [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [2333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), + [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), [2337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_description, 2), [2339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_description, 2), - [2341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), - [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [2345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), - [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [2349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [2353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), - [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [2357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), - [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [2361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [2365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [2369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [2373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(347), - [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [2378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(222), - [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [2383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [2387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), - [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [2391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(283), - [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [2396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(617), - [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [2401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(281), - [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [2406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(348), - [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [2411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(605), - [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [2416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(361), - [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [2423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), - [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), - [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [2431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), - [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), - [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), - [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [2443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [2447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(552), - [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [2452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), - [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [2456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(541), - [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [2461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(465), - [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [2466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(400), - [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [2471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), - [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [2475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(388), - [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [2480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [2484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), - [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [2488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(413), - [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [2493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), - [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [2497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), - [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [2501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(551), - [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [2506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(510), - [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [2511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [2515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [2519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), - [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [2523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(309), - [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [2528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(257), - [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [2533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(501), - [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [2538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), - [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [2542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), - [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [2546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(296), - [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [2551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), - [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [2555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(452), - [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [2560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(247), - [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [2565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [2825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_label, 1), - [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [2957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emphasis_end, 1), - [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [2969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline, 1), - [2971] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [2977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key, 1), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [2341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [2345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), + [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [2349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), + [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [2353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), + [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [2357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(281), + [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [2364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(542), + [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [2369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(346), + [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [2374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), + [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [2378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(307), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [2383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), + [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [2387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(359), + [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [2392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(388), + [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [2397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(357), + [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [2402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [2406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [2410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [2414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [2418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(294), + [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [2423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(283), + [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [2428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(220), + [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [2441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(615), + [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [2446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(501), + [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [2451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(255), + [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [2456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(398), + [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [2461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(245), + [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [2466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(450), + [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [2471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(532), + [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [2476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), + [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [2480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(411), + [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [2485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), + [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [2489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), + [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [2493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(463), + [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [2498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(603), + [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [2503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [2507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [2511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(492), + [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [2516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [2520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), + [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [2524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [2528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [2532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [2536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(543), + [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [2805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_label, 1), + [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [2895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key, 1), + [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [2905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline, 1), + [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [2913] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), }; enum ts_external_scanner_symbol_identifiers { @@ -43237,7 +42641,7 @@ enum ts_external_scanner_symbol_identifiers { ts_external_token__verbatim_end = 2, ts_external_token__verbatim_content = 3, ts_external_token__emphasis_mark_begin = 4, - ts_external_token__emphasis_end_check = 5, + ts_external_token_emphasis_end = 5, ts_external_token__in_fallback = 6, ts_external_token__non_whitespace_check = 7, ts_external_token__error = 8, @@ -43249,20 +42653,20 @@ static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { [ts_external_token__verbatim_end] = sym__verbatim_end, [ts_external_token__verbatim_content] = sym__verbatim_content, [ts_external_token__emphasis_mark_begin] = sym__emphasis_mark_begin, - [ts_external_token__emphasis_end_check] = sym__emphasis_end_check, + [ts_external_token_emphasis_end] = sym_emphasis_end, [ts_external_token__in_fallback] = sym__in_fallback, [ts_external_token__non_whitespace_check] = sym__non_whitespace_check, [ts_external_token__error] = sym__error, }; -static const bool ts_external_scanner_states[9][EXTERNAL_TOKEN_COUNT] = { +static const bool ts_external_scanner_states[11][EXTERNAL_TOKEN_COUNT] = { [1] = { [ts_external_token__ignored] = true, [ts_external_token__verbatim_begin] = true, [ts_external_token__verbatim_end] = true, [ts_external_token__verbatim_content] = true, [ts_external_token__emphasis_mark_begin] = true, - [ts_external_token__emphasis_end_check] = true, + [ts_external_token_emphasis_end] = true, [ts_external_token__in_fallback] = true, [ts_external_token__non_whitespace_check] = true, [ts_external_token__error] = true, @@ -43272,22 +42676,31 @@ static const bool ts_external_scanner_states[9][EXTERNAL_TOKEN_COUNT] = { }, [3] = { [ts_external_token__verbatim_begin] = true, - [ts_external_token__non_whitespace_check] = true, + [ts_external_token_emphasis_end] = true, }, [4] = { - [ts_external_token__emphasis_mark_begin] = true, - [ts_external_token__in_fallback] = true, + [ts_external_token__verbatim_begin] = true, + [ts_external_token_emphasis_end] = true, + [ts_external_token__non_whitespace_check] = true, }, [5] = { - [ts_external_token__emphasis_end_check] = true, + [ts_external_token__verbatim_begin] = true, + [ts_external_token__non_whitespace_check] = true, }, [6] = { - [ts_external_token__verbatim_end] = true, + [ts_external_token__emphasis_mark_begin] = true, + [ts_external_token__in_fallback] = true, }, [7] = { - [ts_external_token__verbatim_content] = true, + [ts_external_token__verbatim_end] = true, }, [8] = { + [ts_external_token_emphasis_end] = true, + }, + [9] = { + [ts_external_token__verbatim_content] = true, + }, + [10] = { [ts_external_token__emphasis_mark_begin] = true, }, }; diff --git a/tree-sitter-djot-inline/src/scanner.c b/tree-sitter-djot-inline/src/scanner.c index 621ac16..122c686 100644 --- a/tree-sitter-djot-inline/src/scanner.c +++ b/tree-sitter-djot-inline/src/scanner.c @@ -3,7 +3,7 @@ #include "tree_sitter/parser.h" #include -#define DEBUG +// #define DEBUG // The different tokens the external scanner support // See `externals` in `grammar.js` for a description of most of them. @@ -14,9 +14,18 @@ typedef enum { VERBATIM_END, VERBATIM_CONTENT, + // The different spans. + // Begin is marked by a zero-width token to push elements on the open stack + // (unless when we're parsing a fallback token). + // End scans an actual ending token (such as `_}` or `_`) and checks the open + // stack. EMPHASIS_MARK_BEGIN, - EMPHASIS_END_CHECK, + EMPHASIS_END, + + // If we're scanning a fallback token then we should accept the beginning + // markers, but not push anything on the stack. IN_FALLBACK, + // Zero-width check for a non-whitespace token. NON_WHITESPACE_CHECK, ERROR, @@ -28,9 +37,17 @@ typedef enum { } ElementType; typedef struct { - Array(ElementType) * open_elements; + ElementType type; + // Different types may use data differently. + // For differe + uint8_t data; +} Element; + +typedef struct { + Array(Element *) * open_elements; // The number of ` we are currently matching, or 0 when not inside. + // TODO move into open_elements uint8_t verbatim_tick_count; } Scanner; @@ -57,6 +74,55 @@ static uint8_t consume_chars(TSLexer *lexer, char c) { return count; } +static bool is_whitespace(char c) { + switch (c) { + case ' ': + case '\t': + case '\r': + case '\n': + return true; + default: + return false; + } +} + +static uint8_t consume_whitespace(TSLexer *lexer) { + uint8_t indent = 0; + for (;;) { + if (lexer->lookahead == ' ') { + advance(lexer); + ++indent; + } else if (lexer->lookahead == '\r') { + advance(lexer); + } else if (lexer->lookahead == '\t') { + advance(lexer); + indent += 4; + } else { + break; + } + } + return indent; +} + +static Element *create_element(ElementType type, uint8_t data) { + Element *e = ts_malloc(sizeof(Element)); + e->type = type; + e->data = data; + return e; +} + +static void push_block(Scanner *s, ElementType type, uint8_t data) { + array_push(s->open_elements, create_element(type, data)); +} + +static Element *peek_element(Scanner *s) { + if (s->open_elements->size > 0) { + return *array_back(s->open_elements); + } else { + return NULL; + } +} + static bool parse_verbatim_content(Scanner *s, TSLexer *lexer) { uint8_t ticks = 0; while (!lexer->eof(lexer)) { @@ -114,68 +180,128 @@ static bool parse_verbatim_start(Scanner *s, TSLexer *lexer) { return true; } -static bool element_on_top(Scanner *s, ElementType e) { - return s->open_elements->size > 0 && *array_back(s->open_elements) == e; +static bool element_on_top(Scanner *s, ElementType type) { + return s->open_elements->size > 0 && + (*array_back(s->open_elements))->type == type; } -static bool find_element(Scanner *s, ElementType e) { +static Element *find_element(Scanner *s, ElementType type) { for (int i = s->open_elements->size - 1; i >= 0; --i) { - if (*array_get(s->open_elements, i) == e) { - return true; + Element *e = *array_get(s->open_elements, i); + if (e->type == type) { + return e; } } - return false; + return NULL; } -static bool emphasis_begin_check(Scanner *s, TSLexer *lexer) { - lexer->result_symbol = EMPHASIS_MARK_BEGIN; - array_push(s->open_elements, EMPHASIS); +static bool scan_span_end(TSLexer *lexer, char marker, + bool whitespace_sensitive) { + if (lexer->lookahead == marker) { + advance(lexer); + if (lexer->lookahead == '}') { + advance(lexer); + } + return true; + } + + if (whitespace_sensitive && consume_whitespace(lexer) == 0) { + return false; + } + + if (lexer->lookahead != marker) { + return false; + } + advance(lexer); + if (lexer->lookahead != '}') { + return false; + } + advance(lexer); return true; } -static bool emphasis_end_check(Scanner *s, TSLexer *lexer) { - if (!element_on_top(s, EMPHASIS)) { +static bool parse_span_end(Scanner *s, TSLexer *lexer, ElementType element, + TokenType token, char marker, + bool whitespace_sensitive) { + Element *top = peek_element(s); + if (!top || top->type != element) { return false; } - lexer->result_symbol = EMPHASIS_END_CHECK; + if (top->data > 0) { + return false; + } + + if (!scan_span_end(lexer, marker, whitespace_sensitive)) { + return false; + } + + lexer->result_symbol = token; array_pop(s->open_elements); return true; } -// IN_FALLBACK will only be valid during symbol fallback +static bool mark_span_begin(Scanner *s, TSLexer *lexer, + const bool *valid_symbols, ElementType element, + TokenType token, char marker) { + // If IN_FALLBACK is valid then it means we're processing the + // `_symbol_fallback` branch (see `grammar.js`). + if (valid_symbols[IN_FALLBACK]) { + // If there's multiple valid opening spans, for example: + // + // {_ {_ a_ + // + // Then we should choose the shorter one and the first `{_` + // should be regarded as regular text. + // To handle this case we count the number of opening tags + // an open element has and when we try to close an element with + // open tags then we issue an error (in `parse_span_end`). + // + // The reason we're not immediately issuing an error here + // is that spans might be nested, for example: + // + // _a _b_ a_ + // + // If we issue an error here at `_b` then we won't find the nested emphasis. + // The solution i found was to do the check when closing the span instead. + Element *open = find_element(s, element); + if (open != NULL) { + ++open->data; + } + // We need to output the token common to both the fallback symbol and + // the span so the resolver will detect the collision. + lexer->result_symbol = token; + return true; + } else { + lexer->mark_end(lexer); + lexer->result_symbol = token; + push_block(s, element, 0); + return true; + } +} -static bool parse_emphasis(Scanner *s, TSLexer *lexer, - const bool *valid_symbols) { - if (valid_symbols[EMPHASIS_END_CHECK] && emphasis_end_check(s, lexer)) { +static bool parse_span(Scanner *s, TSLexer *lexer, const bool *valid_symbols, + ElementType element, TokenType begin_token, + TokenType end_token, char marker, + bool whitespace_sensitive) { + if (valid_symbols[end_token] && + parse_span_end(s, lexer, element, end_token, marker, + whitespace_sensitive)) { return true; } - if (valid_symbols[EMPHASIS_MARK_BEGIN]) { - if (valid_symbols[IN_FALLBACK]) { - // FIXME - // this doesn't hold if we're seeing `__`...! - // - // If we can find an open emphasis element that means we should choose - // this one instead because we should prefer the shorter emphasis if two - // are valid. By issuing an error we'll prune this branch - // and make the resolver choose the other branch where we chose the - // fallback for the previous begin marker instead. - if (find_element(s, EMPHASIS)) { - lexer->result_symbol = ERROR; - return true; - } else { - // We need to output the token common to both the fallback symbol and - // the emphasis so the resolver will branch. - lexer->result_symbol = EMPHASIS_MARK_BEGIN; - return true; - } - } else if (emphasis_begin_check(s, lexer)) { - return true; - } + if (valid_symbols[begin_token] && + mark_span_begin(s, lexer, valid_symbols, element, begin_token, marker)) { + return true; } return false; } +static bool parse_emphasis(Scanner *s, TSLexer *lexer, + const bool *valid_symbols) { + return parse_span(s, lexer, valid_symbols, EMPHASIS, EMPHASIS_MARK_BEGIN, + EMPHASIS_END, '_', true); +} + static bool check_non_whitespace(Scanner *s, TSLexer *lexer) { switch (lexer->lookahead) { case ' ': @@ -274,8 +400,9 @@ unsigned tree_sitter_djot_inline_external_scanner_serialize(void *payload, buffer[size++] = (char)s->verbatim_tick_count; for (size_t i = 0; i < s->open_elements->size; ++i) { - ElementType e = *array_get(s->open_elements, i); - buffer[size++] = (char)e; + Element *e = *array_get(s->open_elements, i); + buffer[size++] = (char)e->type; + buffer[size++] = (char)e->data; } return size; } @@ -290,8 +417,9 @@ void tree_sitter_djot_inline_external_scanner_deserialize(void *payload, s->verbatim_tick_count = (uint8_t)buffer[size++]; while (size < length) { - ElementType e = (ElementType)buffer[size++]; - array_push(s->open_elements, e); + ElementType type = (ElementType)buffer[size++]; + uint8_t data = (uint8_t)buffer[size++]; + array_push(s->open_elements, create_element(type, data)); } } } @@ -309,17 +437,18 @@ static char *token_type_s(TokenType t) { case EMPHASIS_MARK_BEGIN: return "EMPHASIS_MARK_BEGIN"; - case EMPHASIS_END_CHECK: - return "EMPHASIS_END_CHECK"; + case EMPHASIS_END: + return "EMPHASIS_END"; + case IN_FALLBACK: return "IN_FALLBACK"; + case NON_WHITESPACE_CHECK: + return "NON_WHITESPACE_CHECK"; case ERROR: return "ERROR"; case IGNORED: return "IGNORED"; - default: - return "NOT IMPLEMENTED"; } } @@ -329,16 +458,15 @@ static char *element_type_s(ElementType t) { return "EMPHASIS"; case STRONG: return "STRONG"; - default: - return "NOT IMPLEMENTED"; } } static void dump_scanner(Scanner *s) { printf("--- Open elements: %u (last -> first)\n", s->open_elements->size); for (size_t i = 0; i < s->open_elements->size; ++i) { - ElementType e = *array_get(s->open_elements, i); - printf(" %s\n", element_type_s(e)); + Element *e = *array_get(s->open_elements, i); + printf(" %s data: %u ignore_end: %u\n", element_type_s(e->type), e->data, + e->ignore_end); } printf("---\n"); printf(" verbatim_tick_count: %u\n", s->verbatim_tick_count); diff --git a/tree-sitter-djot-inline/test/corpus/syntax.txt b/tree-sitter-djot-inline/test/corpus/syntax.txt index c16ae3e..72e29bc 100644 --- a/tree-sitter-djot-inline/test/corpus/syntax.txt +++ b/tree-sitter-djot-inline/test/corpus/syntax.txt @@ -337,7 +337,7 @@ b c_ (inline (emphasis (emphasis_begin) (content) (emphasis_end))) =============================================================================== -Emphasis: three chars with a two newlines +Emphasis: three chars with two newlines =============================================================================== _a b @@ -509,6 +509,94 @@ _yes _} (emphasis (emphasis_begin) (content) (emphasis_end)) (emphasis (emphasis_begin) (content) (emphasis_end))) +=============================================================================== +Emphasis: simple nested +=============================================================================== +__a_ b_ + +------------------------------------------------------------------------------- + +(inline + (emphasis + (emphasis_begin) + (content + (emphasis + (emphasis_begin) + (content) + (emphasis_end))) + (emphasis_end))) + +=============================================================================== +Emphasis: nested with spaces +=============================================================================== +_a _b_ a_ + +------------------------------------------------------------------------------- + +(inline + (emphasis + (emphasis_begin) + (content + (emphasis + (emphasis_begin) + (content) + (emphasis_end))) + (emphasis_end))) + +=============================================================================== +Emphasis: 2 not emphasis +=============================================================================== +__ a + +------------------------------------------------------------------------------- + +(inline) + +=============================================================================== +Emphasis: 3 not emphasis +=============================================================================== +___ a + +------------------------------------------------------------------------------- + +(inline) + +=============================================================================== +Emphasis: long not emphasis +=============================================================================== +_________ a + +------------------------------------------------------------------------------- + +(inline) + +=============================================================================== +Emphasis: begin 2 not emphasis +=============================================================================== +__a + +------------------------------------------------------------------------------- + +(inline) + +=============================================================================== +Emphasis: begin 3 not emphasis +=============================================================================== +___a + +------------------------------------------------------------------------------- + +(inline) + +=============================================================================== +Emphasis: begin long not emphasis +=============================================================================== +_________a + +------------------------------------------------------------------------------- + +(inline) + =============================================================================== Strong: forced despite spaces =============================================================================== From 4cc2dd188486e307e8471b93819c65c159b5e86d Mon Sep 17 00:00:00 2001 From: Jonas Hietala Date: Wed, 28 Aug 2024 10:33:23 +0200 Subject: [PATCH 10/46] Merge verbatim with open elements --- tree-sitter-djot-inline/src/scanner.c | 44 ++++++++++--------- .../test/corpus/syntax.txt | 13 ++++++ 2 files changed, 36 insertions(+), 21 deletions(-) diff --git a/tree-sitter-djot-inline/src/scanner.c b/tree-sitter-djot-inline/src/scanner.c index 122c686..5010f6c 100644 --- a/tree-sitter-djot-inline/src/scanner.c +++ b/tree-sitter-djot-inline/src/scanner.c @@ -32,23 +32,22 @@ typedef enum { } TokenType; typedef enum { + VERBATIM, EMPHASIS, STRONG, } ElementType; typedef struct { ElementType type; - // Different types may use data differently. - // For differe + // Different types may use `data` differently. + // Spans use it to count how many fallback symbols was returned after the + // opening tag. + // Verbatim counts the number of open and closing ticks. uint8_t data; } Element; typedef struct { Array(Element *) * open_elements; - - // The number of ` we are currently matching, or 0 when not inside. - // TODO move into open_elements - uint8_t verbatim_tick_count; } Scanner; #ifdef DEBUG @@ -111,7 +110,7 @@ static Element *create_element(ElementType type, uint8_t data) { return e; } -static void push_block(Scanner *s, ElementType type, uint8_t data) { +static void push_element(Scanner *s, ElementType type, uint8_t data) { array_push(s->open_elements, create_element(type, data)); } @@ -125,11 +124,17 @@ static Element *peek_element(Scanner *s) { static bool parse_verbatim_content(Scanner *s, TSLexer *lexer) { uint8_t ticks = 0; + Element *top = peek_element(s); + if (!top || top->type != VERBATIM) { + // Should always have the top element, but crashing is not great. + return false; + } + while (!lexer->eof(lexer)) { if (lexer->lookahead == '`') { // If we find a `, we need to count them to see if we should stop. uint8_t current = consume_chars(lexer, '`'); - if (current == s->verbatim_tick_count) { + if (current == top->data) { // We found a matching number of ` break; } else { @@ -152,20 +157,22 @@ static bool parse_verbatim_content(Scanner *s, TSLexer *lexer) { } static bool parse_verbatim_end(Scanner *s, TSLexer *lexer) { + Element *top = peek_element(s); + if (!top || top->type != VERBATIM) { + return false; + } if (lexer->eof(lexer)) { lexer->result_symbol = VERBATIM_END; + array_pop(s->open_elements); return true; } - if (s->verbatim_tick_count == 0) { - return false; - } uint8_t ticks = consume_chars(lexer, '`'); - if (ticks != s->verbatim_tick_count) { + if (ticks != top->data) { return false; } - s->verbatim_tick_count = 0; lexer->mark_end(lexer); lexer->result_symbol = VERBATIM_END; + array_pop(s->open_elements); return true; } @@ -174,9 +181,9 @@ static bool parse_verbatim_start(Scanner *s, TSLexer *lexer) { if (ticks == 0) { return false; } - s->verbatim_tick_count = ticks; lexer->mark_end(lexer); lexer->result_symbol = VERBATIM_BEGIN; + push_element(s, VERBATIM, ticks); return true; } @@ -275,7 +282,7 @@ static bool mark_span_begin(Scanner *s, TSLexer *lexer, } else { lexer->mark_end(lexer); lexer->result_symbol = token; - push_block(s, element, 0); + push_element(s, element, 0); return true; } } @@ -375,10 +382,7 @@ bool tree_sitter_djot_inline_external_scanner_scan(void *payload, return false; } -void init(Scanner *s) { - array_init(s->open_elements); - s->verbatim_tick_count = 0; -} +void init(Scanner *s) { array_init(s->open_elements); } void *tree_sitter_djot_inline_external_scanner_create() { Scanner *s = (Scanner *)ts_malloc(sizeof(Scanner)); @@ -397,7 +401,6 @@ unsigned tree_sitter_djot_inline_external_scanner_serialize(void *payload, char *buffer) { Scanner *s = (Scanner *)payload; unsigned size = 0; - buffer[size++] = (char)s->verbatim_tick_count; for (size_t i = 0; i < s->open_elements->size; ++i) { Element *e = *array_get(s->open_elements, i); @@ -414,7 +417,6 @@ void tree_sitter_djot_inline_external_scanner_deserialize(void *payload, init(s); if (length > 0) { size_t size = 0; - s->verbatim_tick_count = (uint8_t)buffer[size++]; while (size < length) { ElementType type = (ElementType)buffer[size++]; diff --git a/tree-sitter-djot-inline/test/corpus/syntax.txt b/tree-sitter-djot-inline/test/corpus/syntax.txt index 72e29bc..4d5c089 100644 --- a/tree-sitter-djot-inline/test/corpus/syntax.txt +++ b/tree-sitter-djot-inline/test/corpus/syntax.txt @@ -18,6 +18,19 @@ Simple `verbatim` here ------------------------------------------------------------------------------- +(inline + (verbatim + (verbatim_marker_begin) + (content) + (verbatim_marker_end))) + +=============================================================================== +Verbatim: with emphasis inside +=============================================================================== +Simple `x _a_` here + +------------------------------------------------------------------------------- + (inline (verbatim (verbatim_marker_begin) From ef94ad6f329e1e3c0980283b5b731e6092d14665 Mon Sep 17 00:00:00 2001 From: Jonas Hietala Date: Wed, 28 Aug 2024 10:36:37 +0200 Subject: [PATCH 11/46] Mark end at the beginning in scanner --- tree-sitter-djot-inline/src/scanner.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tree-sitter-djot-inline/src/scanner.c b/tree-sitter-djot-inline/src/scanner.c index 5010f6c..d84ccfe 100644 --- a/tree-sitter-djot-inline/src/scanner.c +++ b/tree-sitter-djot-inline/src/scanner.c @@ -243,6 +243,7 @@ static bool parse_span_end(Scanner *s, TSLexer *lexer, ElementType element, return false; } + lexer->mark_end(lexer); lexer->result_symbol = token; array_pop(s->open_elements); return true; @@ -334,6 +335,11 @@ bool tree_sitter_djot_inline_external_scanner_scan(void *payload, dump_valid_symbols(valid_symbols); #endif + // Mark end right from the start and then when outputting results + // we mark it again to make it consume. + // I found it easier to opt-in to consume tokens. + lexer->mark_end(lexer); + if (valid_symbols[ERROR]) { lexer->result_symbol = ERROR; return true; From 47d1b88fd3b929c79f681b1cc5b5261a4b2c14df Mon Sep 17 00:00:00 2001 From: Jonas Hietala Date: Wed, 28 Aug 2024 10:44:49 +0200 Subject: [PATCH 12/46] Some more comments --- tree-sitter-djot-inline/src/scanner.c | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/tree-sitter-djot-inline/src/scanner.c b/tree-sitter-djot-inline/src/scanner.c index d84ccfe..e2a952a 100644 --- a/tree-sitter-djot-inline/src/scanner.c +++ b/tree-sitter-djot-inline/src/scanner.c @@ -202,8 +202,17 @@ static Element *find_element(Scanner *s, ElementType type) { return NULL; } +// Scan an ending token for a span (`_` or `_}`) if marker == '_'. +// +// This routine is responsible for parsing the trailing whitespace in a span, +// so the token may become a ` _}`. +// +// If `whitespace_sensitive == true` then we should not allow a space +// before the single marker (` _` isn't a valid ending token) +// and only allow spaces with the bracketed variant. static bool scan_span_end(TSLexer *lexer, char marker, bool whitespace_sensitive) { + // Match `_` or `_}` if (lexer->lookahead == marker) { advance(lexer); if (lexer->lookahead == '}') { @@ -216,6 +225,7 @@ static bool scan_span_end(TSLexer *lexer, char marker, return false; } + // Only match `_}`. if (lexer->lookahead != marker) { return false; } @@ -230,11 +240,18 @@ static bool scan_span_end(TSLexer *lexer, char marker, static bool parse_span_end(Scanner *s, TSLexer *lexer, ElementType element, TokenType token, char marker, bool whitespace_sensitive) { + // Only close the topmost element, so in: + // + // _a *b_ + // + // The `*` isn't allowed to open a span, and that branch should not be valid. Element *top = peek_element(s); if (!top || top->type != element) { return false; } + // If we've chosen any fallback symbols inside the span then we + // should not accept the span. if (top->data > 0) { return false; } From b7d96954db9276d8b51f04fc6c5a7bc2d710eac4 Mon Sep 17 00:00:00 2001 From: Jonas Hietala Date: Wed, 28 Aug 2024 12:42:13 +0200 Subject: [PATCH 13/46] Move all span elements to external scanner --- tree-sitter-djot-inline/grammar.js | 137 +- tree-sitter-djot-inline/src/grammar.json | 671 +- tree-sitter-djot-inline/src/node-types.json | 132 +- tree-sitter-djot-inline/src/parser.c | 50716 ++++++++-------- tree-sitter-djot-inline/src/scanner.c | 214 +- .../test/corpus/syntax.txt | 183 +- 6 files changed, 24844 insertions(+), 27209 deletions(-) diff --git a/tree-sitter-djot-inline/grammar.js b/tree-sitter-djot-inline/grammar.js index 921a1ad..d1234ab 100644 --- a/tree-sitter-djot-inline/grammar.js +++ b/tree-sitter-djot-inline/grammar.js @@ -6,15 +6,16 @@ module.exports = grammar({ conflicts: ($) => [ [$.emphasis_begin, $._symbol_fallback], [$.strong_begin, $._symbol_fallback], + [$.superscript_begin, $._symbol_fallback], + [$.subscript_begin, $._symbol_fallback], + [$.highlighted_begin, $._symbol_fallback], + [$.insert_begin, $._symbol_fallback], + [$.delete_begin, $._symbol_fallback], - [$.highlighted, $._symbol_fallback], - [$.superscript, $._symbol_fallback], - [$.subscript, $._symbol_fallback], - [$.insert, $._symbol_fallback], - [$.delete, $._symbol_fallback], [$._image_description, $._symbol_fallback], [$.math, $._symbol_fallback], [$.link_text, $.span, $._symbol_fallback], + [$._inline, $._comment_with_spaces], [$._inline_without_trailing_space, $._comment_with_spaces], [$._comment_with_spaces], @@ -38,7 +39,7 @@ module.exports = grammar({ choice( seq( choice( - $._hard_line_break, + $.hard_line_break, $._smart_punctuation, $.backslash_escape, $.autolink, @@ -87,6 +88,14 @@ module.exports = grammar({ "}", ), + // Emphasis and strong are a little special as they don't allow spaces next + // to begin and end markers unless using the bracketed variant. + // The strategy to solve this: + // + // Begin: Use the zero-width `$._non_whitespace_check` token to avoid the `_ ` case. + // End: Use `$._inline_without_trailing_space` to match inline without a trailing space + // and let the end token in the external scanner consume space for the `_}` case + // and not for the `_` case. emphasis: ($) => seq( $.emphasis_begin, @@ -97,14 +106,59 @@ module.exports = grammar({ emphasis_begin: ($) => choice("{_", seq("_", $._non_whitespace_check)), strong: ($) => - seq($.strong_begin, alias($._inline, $.content), $.strong_end), - strong_begin: (_) => choice(seq("{*", repeat(" ")), "*"), - strong_end: (_) => - prec.dynamic(1000, choice(token(seq(repeat(" "), "*}")), "*")), - - _hard_line_break: ($) => - // seq($.hard_line_break, optional($._block_quote_prefix)), - $.hard_line_break, + seq( + $.strong_begin, + $._strong_mark_begin, + alias($._inline_without_trailing_space, $.content), + prec.dynamic(1000, $.strong_end), + ), + strong_begin: ($) => choice("{*", seq("*", $._non_whitespace_check)), + + // The syntax description isn't clear about if non-bracket can contain surrounding spaces. + // The live playground suggests that yes they can, although it's a bit inconsistent. + superscript: ($) => + seq( + $.superscript_begin, + $._superscript_mark_begin, + alias($._inline, $.content), + prec.dynamic(1000, $.superscript_end), + ), + superscript_begin: (_) => choice("{^", "^"), + + subscript: ($) => + seq( + $.subscript_begin, + $._subscript_mark_begin, + alias($._inline, $.content), + prec.dynamic(1000, $.subscript_end), + ), + subscript_begin: (_) => choice("{~", "~"), + + highlighted: ($) => + seq( + $.highlighted_begin, + $._highlighted_mark_begin, + alias($._inline, $.content), + prec.dynamic(1000, $.highlighted_end), + ), + highlighted_begin: (_) => "{=", + insert: ($) => + seq( + $.insert_begin, + $._insert_mark_begin, + alias($._inline, $.content), + prec.dynamic(1000, $.insert_end), + ), + insert_begin: (_) => "{+", + delete: ($) => + seq( + $.delete_begin, + $._delete_mark_begin, + alias($._inline, $.content), + prec.dynamic(1000, $.delete_end), + ), + delete_begin: (_) => "{-", + hard_line_break: ($) => seq("\\", $._newline), _smart_punctuation: ($) => @@ -120,18 +174,8 @@ module.exports = grammar({ autolink: (_) => seq("<", /[^>\s]+/, ">"), - highlighted: ($) => seq("{=", alias($._inline, $.content), "=}"), - insert: ($) => seq("{+", alias($._inline, $.content), "+}"), - delete: ($) => seq("{-", alias($._inline, $.content), "-}"), symbol: (_) => token(seq(":", /[^:\s]+/, ":")), - // The syntax description isn't clear about if non-bracket can contain surrounding spaces? - // The live playground suggests that yes they can. - superscript: ($) => - seq(choice("{^", "^"), alias($._inline, $.content), choice("^}", "^")), - subscript: ($) => - seq(choice("{~", "~"), alias($._inline, $.content), choice("~}", "~")), - footnote_reference: ($) => seq( alias("[^", $.footnote_marker_begin), @@ -250,26 +294,33 @@ module.exports = grammar({ _symbol_fallback: ($) => choice( "![", - "*", "[", "[^", - "^", - "_", "{", - "{*", - "{+", - "{-", - "{=", - "{^", + "<", + "$", + // Standalone emphasis and strong markers are required for backtracking + "_", + "*", + // Whitespace sensitive seq( choice("{_", seq("_", $._non_whitespace_check)), choice($._emphasis_mark_begin, $._in_fallback), ), - "{~", - "|", - "~", - "<", - "$", + seq( + choice("{*", seq("*", $._non_whitespace_check)), + choice($._strong_mark_begin, $._in_fallback), + ), + // Not sensitive to whitespace + seq( + choice("{^", "^"), + choice($._superscript_mark_begin, $._in_fallback), + ), + seq(choice("{~", "~"), choice($._subscript_mark_begin, $._in_fallback)), + // Only bracketed versions + seq("{=", choice($._highlighted_mark_begin, $._in_fallback)), + seq("{+", choice($._insert_mark_begin, $._in_fallback)), + seq("{-", choice($._delete_mark_begin, $._in_fallback)), ), language: (_) => /[^\n\t \{\}=]+/, @@ -300,6 +351,18 @@ module.exports = grammar({ $._emphasis_mark_begin, $.emphasis_end, + $._strong_mark_begin, + $.strong_end, + $._superscript_mark_begin, + $.superscript_end, + $._subscript_mark_begin, + $.subscript_end, + $._highlighted_mark_begin, + $.highlighted_end, + $._insert_mark_begin, + $.insert_end, + $._delete_mark_begin, + $.delete_end, $._in_fallback, $._non_whitespace_check, diff --git a/tree-sitter-djot-inline/src/grammar.json b/tree-sitter-djot-inline/src/grammar.json index 94f1639..657b4e6 100644 --- a/tree-sitter-djot-inline/src/grammar.json +++ b/tree-sitter-djot-inline/src/grammar.json @@ -76,7 +76,7 @@ "members": [ { "type": "SYMBOL", - "name": "_hard_line_break" + "name": "hard_line_break" }, { "type": "SYMBOL", @@ -306,178 +306,134 @@ "type": "SYMBOL", "name": "strong_begin" }, + { + "type": "SYMBOL", + "name": "_strong_mark_begin" + }, { "type": "ALIAS", "content": { "type": "SYMBOL", - "name": "_inline" + "name": "_inline_without_trailing_space" }, "named": true, "value": "content" }, { - "type": "SYMBOL", - "name": "strong_end" + "type": "PREC_DYNAMIC", + "value": 1000, + "content": { + "type": "SYMBOL", + "name": "strong_end" + } } ] }, "strong_begin": { "type": "CHOICE", "members": [ + { + "type": "STRING", + "value": "{*" + }, { "type": "SEQ", "members": [ { "type": "STRING", - "value": "{*" + "value": "*" }, { - "type": "REPEAT", - "content": { - "type": "STRING", - "value": " " - } + "type": "SYMBOL", + "name": "_non_whitespace_check" } ] - }, - { - "type": "STRING", - "value": "*" } ] }, - "strong_end": { - "type": "PREC_DYNAMIC", - "value": 1000, - "content": { - "type": "CHOICE", - "members": [ - { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "REPEAT", - "content": { - "type": "STRING", - "value": " " - } - }, - { - "type": "STRING", - "value": "*}" - } - ] - } + "superscript": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "superscript_begin" + }, + { + "type": "SYMBOL", + "name": "_superscript_mark_begin" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_inline" }, - { - "type": "STRING", - "value": "*" + "named": true, + "value": "content" + }, + { + "type": "PREC_DYNAMIC", + "value": 1000, + "content": { + "type": "SYMBOL", + "name": "superscript_end" } - ] - } - }, - "_hard_line_break": { - "type": "SYMBOL", - "name": "hard_line_break" + } + ] }, - "hard_line_break": { - "type": "SEQ", + "superscript_begin": { + "type": "CHOICE", "members": [ { "type": "STRING", - "value": "\\" + "value": "{^" }, { - "type": "SYMBOL", - "name": "_newline" + "type": "STRING", + "value": "^" } ] }, - "_smart_punctuation": { - "type": "CHOICE", + "subscript": { + "type": "SEQ", "members": [ { "type": "SYMBOL", - "name": "quotation_marks" + "name": "subscript_begin" }, { "type": "SYMBOL", - "name": "ellipsis" + "name": "_subscript_mark_begin" }, { - "type": "SYMBOL", - "name": "em_dash" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_inline" + }, + "named": true, + "value": "content" }, { - "type": "SYMBOL", - "name": "en_dash" + "type": "PREC_DYNAMIC", + "value": 1000, + "content": { + "type": "SYMBOL", + "name": "subscript_end" + } } ] }, - "quotation_marks": { - "type": "TOKEN", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "{\"" - }, - { - "type": "STRING", - "value": "\"}" - }, - { - "type": "STRING", - "value": "{'" - }, - { - "type": "STRING", - "value": "'}" - }, - { - "type": "STRING", - "value": "\\\"" - }, - { - "type": "STRING", - "value": "\\'" - } - ] - } - }, - "ellipsis": { - "type": "STRING", - "value": "..." - }, - "em_dash": { - "type": "STRING", - "value": "---" - }, - "en_dash": { - "type": "STRING", - "value": "--" - }, - "backslash_escape": { - "type": "PATTERN", - "value": "\\\\[^\\\\\\r\\n]" - }, - "autolink": { - "type": "SEQ", + "subscript_begin": { + "type": "CHOICE", "members": [ { "type": "STRING", - "value": "<" - }, - { - "type": "PATTERN", - "value": "[^>\\s]+" + "value": "{~" }, { "type": "STRING", - "value": ">" + "value": "~" } ] }, @@ -485,8 +441,12 @@ "type": "SEQ", "members": [ { - "type": "STRING", - "value": "{=" + "type": "SYMBOL", + "name": "highlighted_begin" + }, + { + "type": "SYMBOL", + "name": "_highlighted_mark_begin" }, { "type": "ALIAS", @@ -498,17 +458,29 @@ "value": "content" }, { - "type": "STRING", - "value": "=}" + "type": "PREC_DYNAMIC", + "value": 1000, + "content": { + "type": "SYMBOL", + "name": "highlighted_end" + } } ] }, + "highlighted_begin": { + "type": "STRING", + "value": "{=" + }, "insert": { "type": "SEQ", "members": [ { - "type": "STRING", - "value": "{+" + "type": "SYMBOL", + "name": "insert_begin" + }, + { + "type": "SYMBOL", + "name": "_insert_mark_begin" }, { "type": "ALIAS", @@ -520,17 +492,29 @@ "value": "content" }, { - "type": "STRING", - "value": "+}" + "type": "PREC_DYNAMIC", + "value": 1000, + "content": { + "type": "SYMBOL", + "name": "insert_end" + } } ] }, + "insert_begin": { + "type": "STRING", + "value": "{+" + }, "delete": { "type": "SEQ", "members": [ { - "type": "STRING", - "value": "{-" + "type": "SYMBOL", + "name": "delete_begin" + }, + { + "type": "SYMBOL", + "name": "_delete_mark_begin" }, { "type": "ALIAS", @@ -541,112 +525,139 @@ "named": true, "value": "content" }, + { + "type": "PREC_DYNAMIC", + "value": 1000, + "content": { + "type": "SYMBOL", + "name": "delete_end" + } + } + ] + }, + "delete_begin": { + "type": "STRING", + "value": "{-" + }, + "hard_line_break": { + "type": "SEQ", + "members": [ { "type": "STRING", - "value": "-}" + "value": "\\" + }, + { + "type": "SYMBOL", + "name": "_newline" } ] }, - "symbol": { + "_smart_punctuation": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "quotation_marks" + }, + { + "type": "SYMBOL", + "name": "ellipsis" + }, + { + "type": "SYMBOL", + "name": "em_dash" + }, + { + "type": "SYMBOL", + "name": "en_dash" + } + ] + }, + "quotation_marks": { "type": "TOKEN", "content": { - "type": "SEQ", + "type": "CHOICE", "members": [ { "type": "STRING", - "value": ":" + "value": "{\"" }, { - "type": "PATTERN", - "value": "[^:\\s]+" + "type": "STRING", + "value": "\"}" }, { "type": "STRING", - "value": ":" + "value": "{'" + }, + { + "type": "STRING", + "value": "'}" + }, + { + "type": "STRING", + "value": "\\\"" + }, + { + "type": "STRING", + "value": "\\'" } ] } }, - "superscript": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "{^" - }, - { - "type": "STRING", - "value": "^" - } - ] - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_inline" - }, - "named": true, - "value": "content" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "^}" - }, - { - "type": "STRING", - "value": "^" - } - ] - } - ] + "ellipsis": { + "type": "STRING", + "value": "..." }, - "subscript": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "{~" - }, - { - "type": "STRING", - "value": "~" - } - ] + "em_dash": { + "type": "STRING", + "value": "---" + }, + "en_dash": { + "type": "STRING", + "value": "--" + }, + "backslash_escape": { + "type": "PATTERN", + "value": "\\\\[^\\\\\\r\\n]" + }, + "autolink": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "<" }, { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_inline" - }, - "named": true, - "value": "content" + "type": "PATTERN", + "value": "[^>\\s]+" }, { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "~}" - }, - { - "type": "STRING", - "value": "~" - } - ] + "type": "STRING", + "value": ">" } ] }, + "symbol": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ":" + }, + { + "type": "PATTERN", + "value": "[^:\\s]+" + }, + { + "type": "STRING", + "value": ":" + } + ] + } + }, "footnote_reference": { "type": "SEQ", "members": [ @@ -1203,10 +1214,6 @@ "type": "STRING", "value": "![" }, - { - "type": "STRING", - "value": "*" - }, { "type": "STRING", "value": "[" @@ -1215,37 +1222,25 @@ "type": "STRING", "value": "[^" }, - { - "type": "STRING", - "value": "^" - }, - { - "type": "STRING", - "value": "_" - }, { "type": "STRING", "value": "{" }, { "type": "STRING", - "value": "{*" - }, - { - "type": "STRING", - "value": "{+" + "value": "<" }, { "type": "STRING", - "value": "{-" + "value": "$" }, { "type": "STRING", - "value": "{=" + "value": "_" }, { "type": "STRING", - "value": "{^" + "value": "*" }, { "type": "SEQ", @@ -1288,24 +1283,172 @@ ] }, { - "type": "STRING", - "value": "{~" + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "{*" + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "*" + }, + { + "type": "SYMBOL", + "name": "_non_whitespace_check" + } + ] + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_strong_mark_begin" + }, + { + "type": "SYMBOL", + "name": "_in_fallback" + } + ] + } + ] }, { - "type": "STRING", - "value": "|" + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "{^" + }, + { + "type": "STRING", + "value": "^" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_superscript_mark_begin" + }, + { + "type": "SYMBOL", + "name": "_in_fallback" + } + ] + } + ] }, { - "type": "STRING", - "value": "~" + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "{~" + }, + { + "type": "STRING", + "value": "~" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_subscript_mark_begin" + }, + { + "type": "SYMBOL", + "name": "_in_fallback" + } + ] + } + ] }, { - "type": "STRING", - "value": "<" + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{=" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_highlighted_mark_begin" + }, + { + "type": "SYMBOL", + "name": "_in_fallback" + } + ] + } + ] }, { - "type": "STRING", - "value": "$" + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{+" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_insert_mark_begin" + }, + { + "type": "SYMBOL", + "name": "_in_fallback" + } + ] + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{-" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_delete_mark_begin" + }, + { + "type": "SYMBOL", + "name": "_in_fallback" + } + ] + } + ] } ] }, @@ -1443,23 +1586,23 @@ "_symbol_fallback" ], [ - "highlighted", + "superscript_begin", "_symbol_fallback" ], [ - "superscript", + "subscript_begin", "_symbol_fallback" ], [ - "subscript", + "highlighted_begin", "_symbol_fallback" ], [ - "insert", + "insert_begin", "_symbol_fallback" ], [ - "delete", + "delete_begin", "_symbol_fallback" ], [ @@ -1513,6 +1656,54 @@ "type": "SYMBOL", "name": "emphasis_end" }, + { + "type": "SYMBOL", + "name": "_strong_mark_begin" + }, + { + "type": "SYMBOL", + "name": "strong_end" + }, + { + "type": "SYMBOL", + "name": "_superscript_mark_begin" + }, + { + "type": "SYMBOL", + "name": "superscript_end" + }, + { + "type": "SYMBOL", + "name": "_subscript_mark_begin" + }, + { + "type": "SYMBOL", + "name": "subscript_end" + }, + { + "type": "SYMBOL", + "name": "_highlighted_mark_begin" + }, + { + "type": "SYMBOL", + "name": "highlighted_end" + }, + { + "type": "SYMBOL", + "name": "_insert_mark_begin" + }, + { + "type": "SYMBOL", + "name": "insert_end" + }, + { + "type": "SYMBOL", + "name": "_delete_mark_begin" + }, + { + "type": "SYMBOL", + "name": "delete_end" + }, { "type": "SYMBOL", "name": "_in_fallback" diff --git a/tree-sitter-djot-inline/src/node-types.json b/tree-sitter-djot-inline/src/node-types.json index 9fba8d5..bc47add 100644 --- a/tree-sitter-djot-inline/src/node-types.json +++ b/tree-sitter-djot-inline/src/node-types.json @@ -221,16 +221,29 @@ "named": true, "fields": {}, "children": { - "multiple": false, + "multiple": true, "required": true, "types": [ { "type": "content", "named": true + }, + { + "type": "delete_begin", + "named": true + }, + { + "type": "delete_end", + "named": true } ] } }, + { + "type": "delete_begin", + "named": true, + "fields": {} + }, { "type": "emphasis", "named": true, @@ -330,16 +343,29 @@ "named": true, "fields": {}, "children": { - "multiple": false, + "multiple": true, "required": true, "types": [ { "type": "content", "named": true + }, + { + "type": "highlighted_begin", + "named": true + }, + { + "type": "highlighted_end", + "named": true } ] } }, + { + "type": "highlighted_begin", + "named": true, + "fields": {} + }, { "type": "image_description", "named": true, @@ -673,16 +699,29 @@ "named": true, "fields": {}, "children": { - "multiple": false, + "multiple": true, "required": true, "types": [ { "type": "content", "named": true + }, + { + "type": "insert_begin", + "named": true + }, + { + "type": "insert_end", + "named": true } ] } }, + { + "type": "insert_begin", + "named": true, + "fields": {} + }, { "type": "key", "named": true, @@ -1219,41 +1258,62 @@ "named": true, "fields": {} }, - { - "type": "strong_end", - "named": true, - "fields": {} - }, { "type": "subscript", "named": true, "fields": {}, "children": { - "multiple": false, + "multiple": true, "required": true, "types": [ { "type": "content", "named": true + }, + { + "type": "subscript_begin", + "named": true + }, + { + "type": "subscript_end", + "named": true } ] } }, + { + "type": "subscript_begin", + "named": true, + "fields": {} + }, { "type": "superscript", "named": true, "fields": {}, "children": { - "multiple": false, + "multiple": true, "required": true, "types": [ { "type": "content", "named": true + }, + { + "type": "superscript_begin", + "named": true + }, + { + "type": "superscript_end", + "named": true } ] } }, + { + "type": "superscript_begin", + "named": true, + "fields": {} + }, { "type": "todo", "named": true, @@ -1287,10 +1347,6 @@ ] } }, - { - "type": " ", - "named": false - }, { "type": "![", "named": false @@ -1319,14 +1375,6 @@ "type": "*", "named": false }, - { - "type": "+}", - "named": false - }, - { - "type": "-}", - "named": false - }, { "type": ".", "named": false @@ -1339,10 +1387,6 @@ "type": "=", "named": false }, - { - "type": "=}", - "named": false - }, { "type": ">", "named": false @@ -1391,10 +1435,6 @@ "type": "^", "named": false }, - { - "type": "^}", - "named": false - }, { "type": "_", "named": false @@ -1403,6 +1443,10 @@ "type": "backslash_escape", "named": true }, + { + "type": "delete_end", + "named": true + }, { "type": "ellipsis", "named": true @@ -1431,10 +1475,18 @@ "type": "footnote_marker_end", "named": true }, + { + "type": "highlighted_end", + "named": true + }, { "type": "identifier", "named": true }, + { + "type": "insert_end", + "named": true + }, { "type": "language", "named": true @@ -1463,6 +1515,18 @@ "type": "raw_inline_marker_end", "named": true }, + { + "type": "strong_end", + "named": true + }, + { + "type": "subscript_end", + "named": true + }, + { + "type": "superscript_end", + "named": true + }, { "type": "symbol", "named": true @@ -1507,10 +1571,6 @@ "type": "{~", "named": false }, - { - "type": "|", - "named": false - }, { "type": "}", "named": false @@ -1518,9 +1578,5 @@ { "type": "~", "named": false - }, - { - "type": "~}", - "named": false } ] \ No newline at end of file diff --git a/tree-sitter-djot-inline/src/parser.c b/tree-sitter-djot-inline/src/parser.c index f8ac2d6..f2ccaad 100644 --- a/tree-sitter-djot-inline/src/parser.c +++ b/tree-sitter-djot-inline/src/parser.c @@ -4,24 +4,16 @@ #pragma GCC diagnostic ignored "-Wmissing-field-initializers" #endif -#ifdef _MSC_VER -#pragma optimize("", off) -#elif defined(__clang__) -#pragma clang optimize off -#elif defined(__GNUC__) -#pragma GCC optimize ("O0") -#endif - #define LANGUAGE_VERSION 14 -#define STATE_COUNT 1010 -#define LARGE_STATE_COUNT 132 -#define SYMBOL_COUNT 128 +#define STATE_COUNT 1130 +#define LARGE_STATE_COUNT 131 +#define SYMBOL_COUNT 134 #define ALIAS_COUNT 10 -#define TOKEN_COUNT 73 -#define EXTERNAL_TOKEN_COUNT 9 +#define TOKEN_COUNT 77 +#define EXTERNAL_TOKEN_COUNT 21 #define FIELD_COUNT 0 #define MAX_ALIAS_SEQUENCE_LENGTH 4 -#define PRODUCTION_ID_COUNT 10 +#define PRODUCTION_ID_COUNT 9 enum ts_symbol_identifiers { anon_sym_LBRACE = 1, @@ -29,138 +21,144 @@ enum ts_symbol_identifiers { anon_sym_LBRACE_ = 3, anon_sym__ = 4, anon_sym_LBRACE_STAR = 5, - anon_sym_SPACE = 6, - anon_sym_STAR = 7, - aux_sym_strong_end_token1 = 8, - anon_sym_BSLASH = 9, - sym_quotation_marks = 10, - sym_ellipsis = 11, - sym_em_dash = 12, - sym_en_dash = 13, - sym_backslash_escape = 14, - anon_sym_LT = 15, - aux_sym_autolink_token1 = 16, - anon_sym_GT = 17, - anon_sym_LBRACE_EQ = 18, - anon_sym_EQ_RBRACE = 19, - anon_sym_LBRACE_PLUS = 20, - anon_sym_PLUS_RBRACE = 21, - anon_sym_LBRACE_DASH = 22, - anon_sym_DASH_RBRACE = 23, - sym_symbol = 24, - anon_sym_LBRACE_CARET = 25, - anon_sym_CARET = 26, - anon_sym_CARET_RBRACE = 27, - anon_sym_LBRACE_TILDE = 28, - anon_sym_TILDE = 29, - anon_sym_TILDE_RBRACE = 30, - anon_sym_LBRACK_CARET = 31, - anon_sym_RBRACK = 32, - sym__id = 33, - anon_sym_LBRACK_RBRACK = 34, - anon_sym_BANG_LBRACK = 35, - anon_sym_LBRACK = 36, - anon_sym_RBRACK2 = 37, - anon_sym_LPAREN = 38, - aux_sym_inline_link_destination_token1 = 39, - anon_sym_RPAREN = 40, - anon_sym_LBRACE2 = 41, - anon_sym_PERCENT = 42, - aux_sym__comment_with_newline_token1 = 43, - anon_sym_LBRACE_EQ2 = 44, - anon_sym_DOLLAR = 45, - anon_sym_TODO = 46, - anon_sym_WIP = 47, - anon_sym_NOTE = 48, - anon_sym_INFO = 49, - anon_sym_XXX = 50, - sym_fixme = 51, - anon_sym_PIPE = 52, - sym_language = 53, - sym__whitespace = 54, - sym__whitespace1 = 55, - sym__newline = 56, - aux_sym__text_token1 = 57, - anon_sym_DOT = 58, - sym_identifier = 59, - anon_sym_EQ = 60, - anon_sym_DQUOTE = 61, - aux_sym_value_token1 = 62, - aux_sym_value_token2 = 63, - sym__ignored = 64, - sym__verbatim_begin = 65, - sym__verbatim_end = 66, - sym__verbatim_content = 67, - sym__emphasis_mark_begin = 68, - sym_emphasis_end = 69, - sym__in_fallback = 70, - sym__non_whitespace_check = 71, - sym__error = 72, - sym_inline = 73, - sym__inline = 74, - sym__inline_without_trailing_space = 75, - sym__element = 76, - sym_inline_attribute = 77, - sym_emphasis = 78, - sym_emphasis_begin = 79, - sym_strong = 80, - sym_strong_begin = 81, - sym_strong_end = 82, - sym__hard_line_break = 83, - sym_hard_line_break = 84, - sym__smart_punctuation = 85, - sym_autolink = 86, - sym_highlighted = 87, - sym_insert = 88, - sym_delete = 89, - sym_superscript = 90, - sym_subscript = 91, - sym_footnote_reference = 92, - sym_reference_label = 93, - sym__image = 94, - sym_full_reference_image = 95, - sym_collapsed_reference_image = 96, - sym_inline_image = 97, - sym__image_description = 98, - sym__link = 99, - sym_full_reference_link = 100, - sym_collapsed_reference_link = 101, - sym_inline_link = 102, - sym_link_text = 103, - sym__link_label = 104, - sym_inline_link_destination = 105, - sym_comment = 106, - sym__comment_with_spaces = 107, - sym_span = 108, - sym__comment_with_newline = 109, - sym_raw_inline = 110, - sym_raw_inline_attribute = 111, - sym_math = 112, - sym_verbatim = 113, - sym__todo_highlights = 114, - sym_todo = 115, - sym_note = 116, - sym__symbol_fallback = 117, - aux_sym__text = 118, - sym_class_name = 119, - sym_class = 120, - sym_key_value = 121, - sym_key = 122, - sym_value = 123, - aux_sym__inline_repeat1 = 124, - aux_sym_inline_attribute_repeat1 = 125, - aux_sym_strong_begin_repeat1 = 126, - aux_sym__comment_with_newline_repeat1 = 127, - alias_sym_args = 128, - alias_sym_footnote_marker_begin = 129, - alias_sym_footnote_marker_end = 130, - alias_sym_image_description = 131, - alias_sym_link_label = 132, - alias_sym_math_marker = 133, - alias_sym_math_marker_begin = 134, - alias_sym_math_marker_end = 135, - alias_sym_verbatim_marker_begin = 136, - alias_sym_verbatim_marker_end = 137, + anon_sym_STAR = 6, + anon_sym_LBRACE_CARET = 7, + anon_sym_CARET = 8, + anon_sym_LBRACE_TILDE = 9, + anon_sym_TILDE = 10, + anon_sym_LBRACE_EQ = 11, + anon_sym_LBRACE_PLUS = 12, + anon_sym_LBRACE_DASH = 13, + anon_sym_BSLASH = 14, + sym_quotation_marks = 15, + sym_ellipsis = 16, + sym_em_dash = 17, + sym_en_dash = 18, + sym_backslash_escape = 19, + anon_sym_LT = 20, + aux_sym_autolink_token1 = 21, + anon_sym_GT = 22, + sym_symbol = 23, + anon_sym_LBRACK_CARET = 24, + anon_sym_RBRACK = 25, + sym__id = 26, + anon_sym_LBRACK_RBRACK = 27, + anon_sym_BANG_LBRACK = 28, + anon_sym_LBRACK = 29, + anon_sym_RBRACK2 = 30, + anon_sym_LPAREN = 31, + aux_sym_inline_link_destination_token1 = 32, + anon_sym_RPAREN = 33, + anon_sym_LBRACE2 = 34, + anon_sym_PERCENT = 35, + aux_sym__comment_with_newline_token1 = 36, + anon_sym_LBRACE_EQ2 = 37, + anon_sym_DOLLAR = 38, + anon_sym_TODO = 39, + anon_sym_WIP = 40, + anon_sym_NOTE = 41, + anon_sym_INFO = 42, + anon_sym_XXX = 43, + sym_fixme = 44, + sym_language = 45, + sym__whitespace = 46, + sym__whitespace1 = 47, + sym__newline = 48, + aux_sym__text_token1 = 49, + anon_sym_DOT = 50, + sym_identifier = 51, + anon_sym_EQ = 52, + anon_sym_DQUOTE = 53, + aux_sym_value_token1 = 54, + aux_sym_value_token2 = 55, + sym__ignored = 56, + sym__verbatim_begin = 57, + sym__verbatim_end = 58, + sym__verbatim_content = 59, + sym__emphasis_mark_begin = 60, + sym_emphasis_end = 61, + sym__strong_mark_begin = 62, + sym_strong_end = 63, + sym__superscript_mark_begin = 64, + sym_superscript_end = 65, + sym__subscript_mark_begin = 66, + sym_subscript_end = 67, + sym__highlighted_mark_begin = 68, + sym_highlighted_end = 69, + sym__insert_mark_begin = 70, + sym_insert_end = 71, + sym__delete_mark_begin = 72, + sym_delete_end = 73, + sym__in_fallback = 74, + sym__non_whitespace_check = 75, + sym__error = 76, + sym_inline = 77, + sym__inline = 78, + sym__inline_without_trailing_space = 79, + sym__element = 80, + sym_inline_attribute = 81, + sym_emphasis = 82, + sym_emphasis_begin = 83, + sym_strong = 84, + sym_strong_begin = 85, + sym_superscript = 86, + sym_superscript_begin = 87, + sym_subscript = 88, + sym_subscript_begin = 89, + sym_highlighted = 90, + sym_highlighted_begin = 91, + sym_insert = 92, + sym_insert_begin = 93, + sym_delete = 94, + sym_delete_begin = 95, + sym_hard_line_break = 96, + sym__smart_punctuation = 97, + sym_autolink = 98, + sym_footnote_reference = 99, + sym_reference_label = 100, + sym__image = 101, + sym_full_reference_image = 102, + sym_collapsed_reference_image = 103, + sym_inline_image = 104, + sym__image_description = 105, + sym__link = 106, + sym_full_reference_link = 107, + sym_collapsed_reference_link = 108, + sym_inline_link = 109, + sym_link_text = 110, + sym__link_label = 111, + sym_inline_link_destination = 112, + sym_comment = 113, + sym__comment_with_spaces = 114, + sym_span = 115, + sym__comment_with_newline = 116, + sym_raw_inline = 117, + sym_raw_inline_attribute = 118, + sym_math = 119, + sym_verbatim = 120, + sym__todo_highlights = 121, + sym_todo = 122, + sym_note = 123, + sym__symbol_fallback = 124, + aux_sym__text = 125, + sym_class_name = 126, + sym_class = 127, + sym_key_value = 128, + sym_key = 129, + sym_value = 130, + aux_sym__inline_repeat1 = 131, + aux_sym_inline_attribute_repeat1 = 132, + aux_sym__comment_with_newline_repeat1 = 133, + alias_sym_args = 134, + alias_sym_footnote_marker_begin = 135, + alias_sym_footnote_marker_end = 136, + alias_sym_image_description = 137, + alias_sym_link_label = 138, + alias_sym_math_marker = 139, + alias_sym_math_marker_begin = 140, + alias_sym_math_marker_end = 141, + alias_sym_verbatim_marker_begin = 142, + alias_sym_verbatim_marker_end = 143, }; static const char * const ts_symbol_names[] = { @@ -170,9 +168,14 @@ static const char * const ts_symbol_names[] = { [anon_sym_LBRACE_] = "{_", [anon_sym__] = "_", [anon_sym_LBRACE_STAR] = "{*", - [anon_sym_SPACE] = " ", [anon_sym_STAR] = "*", - [aux_sym_strong_end_token1] = "strong_end_token1", + [anon_sym_LBRACE_CARET] = "{^", + [anon_sym_CARET] = "^", + [anon_sym_LBRACE_TILDE] = "{~", + [anon_sym_TILDE] = "~", + [anon_sym_LBRACE_EQ] = "{=", + [anon_sym_LBRACE_PLUS] = "{+", + [anon_sym_LBRACE_DASH] = "{-", [anon_sym_BSLASH] = "\\", [sym_quotation_marks] = "quotation_marks", [sym_ellipsis] = "ellipsis", @@ -182,19 +185,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_LT] = "<", [aux_sym_autolink_token1] = "autolink_token1", [anon_sym_GT] = ">", - [anon_sym_LBRACE_EQ] = "{=", - [anon_sym_EQ_RBRACE] = "=}", - [anon_sym_LBRACE_PLUS] = "{+", - [anon_sym_PLUS_RBRACE] = "+}", - [anon_sym_LBRACE_DASH] = "{-", - [anon_sym_DASH_RBRACE] = "-}", [sym_symbol] = "symbol", - [anon_sym_LBRACE_CARET] = "{^", - [anon_sym_CARET] = "^", - [anon_sym_CARET_RBRACE] = "^}", - [anon_sym_LBRACE_TILDE] = "{~", - [anon_sym_TILDE] = "~", - [anon_sym_TILDE_RBRACE] = "~}", [anon_sym_LBRACK_CARET] = "[^", [anon_sym_RBRACK] = "]", [sym__id] = "_id", @@ -216,7 +207,6 @@ static const char * const ts_symbol_names[] = { [anon_sym_INFO] = "INFO", [anon_sym_XXX] = "XXX", [sym_fixme] = "fixme", - [anon_sym_PIPE] = "|", [sym_language] = "language", [sym__whitespace] = "_whitespace", [sym__whitespace1] = "_whitespace1", @@ -234,6 +224,18 @@ static const char * const ts_symbol_names[] = { [sym__verbatim_content] = "content", [sym__emphasis_mark_begin] = "_emphasis_mark_begin", [sym_emphasis_end] = "emphasis_end", + [sym__strong_mark_begin] = "_strong_mark_begin", + [sym_strong_end] = "strong_end", + [sym__superscript_mark_begin] = "_superscript_mark_begin", + [sym_superscript_end] = "superscript_end", + [sym__subscript_mark_begin] = "_subscript_mark_begin", + [sym_subscript_end] = "subscript_end", + [sym__highlighted_mark_begin] = "_highlighted_mark_begin", + [sym_highlighted_end] = "highlighted_end", + [sym__insert_mark_begin] = "_insert_mark_begin", + [sym_insert_end] = "insert_end", + [sym__delete_mark_begin] = "_delete_mark_begin", + [sym_delete_end] = "delete_end", [sym__in_fallback] = "_in_fallback", [sym__non_whitespace_check] = "_non_whitespace_check", [sym__error] = "_error", @@ -246,16 +248,19 @@ static const char * const ts_symbol_names[] = { [sym_emphasis_begin] = "emphasis_begin", [sym_strong] = "strong", [sym_strong_begin] = "strong_begin", - [sym_strong_end] = "strong_end", - [sym__hard_line_break] = "_hard_line_break", - [sym_hard_line_break] = "hard_line_break", - [sym__smart_punctuation] = "_smart_punctuation", - [sym_autolink] = "autolink", + [sym_superscript] = "superscript", + [sym_superscript_begin] = "superscript_begin", + [sym_subscript] = "subscript", + [sym_subscript_begin] = "subscript_begin", [sym_highlighted] = "highlighted", + [sym_highlighted_begin] = "highlighted_begin", [sym_insert] = "insert", + [sym_insert_begin] = "insert_begin", [sym_delete] = "delete", - [sym_superscript] = "superscript", - [sym_subscript] = "subscript", + [sym_delete_begin] = "delete_begin", + [sym_hard_line_break] = "hard_line_break", + [sym__smart_punctuation] = "_smart_punctuation", + [sym_autolink] = "autolink", [sym_footnote_reference] = "footnote_reference", [sym_reference_label] = "reference_label", [sym__image] = "_image", @@ -290,7 +295,6 @@ static const char * const ts_symbol_names[] = { [sym_value] = "value", [aux_sym__inline_repeat1] = "_inline_repeat1", [aux_sym_inline_attribute_repeat1] = "inline_attribute_repeat1", - [aux_sym_strong_begin_repeat1] = "strong_begin_repeat1", [aux_sym__comment_with_newline_repeat1] = "_comment_with_newline_repeat1", [alias_sym_args] = "args", [alias_sym_footnote_marker_begin] = "footnote_marker_begin", @@ -311,9 +315,14 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_LBRACE_] = anon_sym_LBRACE_, [anon_sym__] = anon_sym__, [anon_sym_LBRACE_STAR] = anon_sym_LBRACE_STAR, - [anon_sym_SPACE] = anon_sym_SPACE, [anon_sym_STAR] = anon_sym_STAR, - [aux_sym_strong_end_token1] = aux_sym_strong_end_token1, + [anon_sym_LBRACE_CARET] = anon_sym_LBRACE_CARET, + [anon_sym_CARET] = anon_sym_CARET, + [anon_sym_LBRACE_TILDE] = anon_sym_LBRACE_TILDE, + [anon_sym_TILDE] = anon_sym_TILDE, + [anon_sym_LBRACE_EQ] = anon_sym_LBRACE_EQ, + [anon_sym_LBRACE_PLUS] = anon_sym_LBRACE_PLUS, + [anon_sym_LBRACE_DASH] = anon_sym_LBRACE_DASH, [anon_sym_BSLASH] = anon_sym_BSLASH, [sym_quotation_marks] = sym_quotation_marks, [sym_ellipsis] = sym_ellipsis, @@ -323,19 +332,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_LT] = anon_sym_LT, [aux_sym_autolink_token1] = aux_sym_autolink_token1, [anon_sym_GT] = anon_sym_GT, - [anon_sym_LBRACE_EQ] = anon_sym_LBRACE_EQ, - [anon_sym_EQ_RBRACE] = anon_sym_EQ_RBRACE, - [anon_sym_LBRACE_PLUS] = anon_sym_LBRACE_PLUS, - [anon_sym_PLUS_RBRACE] = anon_sym_PLUS_RBRACE, - [anon_sym_LBRACE_DASH] = anon_sym_LBRACE_DASH, - [anon_sym_DASH_RBRACE] = anon_sym_DASH_RBRACE, [sym_symbol] = sym_symbol, - [anon_sym_LBRACE_CARET] = anon_sym_LBRACE_CARET, - [anon_sym_CARET] = anon_sym_CARET, - [anon_sym_CARET_RBRACE] = anon_sym_CARET_RBRACE, - [anon_sym_LBRACE_TILDE] = anon_sym_LBRACE_TILDE, - [anon_sym_TILDE] = anon_sym_TILDE, - [anon_sym_TILDE_RBRACE] = anon_sym_TILDE_RBRACE, [anon_sym_LBRACK_CARET] = anon_sym_LBRACK_CARET, [anon_sym_RBRACK] = anon_sym_RBRACK, [sym__id] = sym__id, @@ -357,7 +354,6 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_INFO] = anon_sym_INFO, [anon_sym_XXX] = anon_sym_XXX, [sym_fixme] = sym_fixme, - [anon_sym_PIPE] = anon_sym_PIPE, [sym_language] = sym_language, [sym__whitespace] = sym__whitespace, [sym__whitespace1] = sym__whitespace1, @@ -375,6 +371,18 @@ static const TSSymbol ts_symbol_map[] = { [sym__verbatim_content] = sym__verbatim_content, [sym__emphasis_mark_begin] = sym__emphasis_mark_begin, [sym_emphasis_end] = sym_emphasis_end, + [sym__strong_mark_begin] = sym__strong_mark_begin, + [sym_strong_end] = sym_strong_end, + [sym__superscript_mark_begin] = sym__superscript_mark_begin, + [sym_superscript_end] = sym_superscript_end, + [sym__subscript_mark_begin] = sym__subscript_mark_begin, + [sym_subscript_end] = sym_subscript_end, + [sym__highlighted_mark_begin] = sym__highlighted_mark_begin, + [sym_highlighted_end] = sym_highlighted_end, + [sym__insert_mark_begin] = sym__insert_mark_begin, + [sym_insert_end] = sym_insert_end, + [sym__delete_mark_begin] = sym__delete_mark_begin, + [sym_delete_end] = sym_delete_end, [sym__in_fallback] = sym__in_fallback, [sym__non_whitespace_check] = sym__non_whitespace_check, [sym__error] = sym__error, @@ -387,16 +395,19 @@ static const TSSymbol ts_symbol_map[] = { [sym_emphasis_begin] = sym_emphasis_begin, [sym_strong] = sym_strong, [sym_strong_begin] = sym_strong_begin, - [sym_strong_end] = sym_strong_end, - [sym__hard_line_break] = sym__hard_line_break, - [sym_hard_line_break] = sym_hard_line_break, - [sym__smart_punctuation] = sym__smart_punctuation, - [sym_autolink] = sym_autolink, + [sym_superscript] = sym_superscript, + [sym_superscript_begin] = sym_superscript_begin, + [sym_subscript] = sym_subscript, + [sym_subscript_begin] = sym_subscript_begin, [sym_highlighted] = sym_highlighted, + [sym_highlighted_begin] = sym_highlighted_begin, [sym_insert] = sym_insert, + [sym_insert_begin] = sym_insert_begin, [sym_delete] = sym_delete, - [sym_superscript] = sym_superscript, - [sym_subscript] = sym_subscript, + [sym_delete_begin] = sym_delete_begin, + [sym_hard_line_break] = sym_hard_line_break, + [sym__smart_punctuation] = sym__smart_punctuation, + [sym_autolink] = sym_autolink, [sym_footnote_reference] = sym_footnote_reference, [sym_reference_label] = sym_reference_label, [sym__image] = sym__image, @@ -431,7 +442,6 @@ static const TSSymbol ts_symbol_map[] = { [sym_value] = sym_value, [aux_sym__inline_repeat1] = aux_sym__inline_repeat1, [aux_sym_inline_attribute_repeat1] = aux_sym_inline_attribute_repeat1, - [aux_sym_strong_begin_repeat1] = aux_sym_strong_begin_repeat1, [aux_sym__comment_with_newline_repeat1] = aux_sym__comment_with_newline_repeat1, [alias_sym_args] = alias_sym_args, [alias_sym_footnote_marker_begin] = alias_sym_footnote_marker_begin, @@ -470,51 +480,23 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_SPACE] = { - .visible = true, - .named = false, - }, [anon_sym_STAR] = { .visible = true, .named = false, }, - [aux_sym_strong_end_token1] = { - .visible = false, - .named = false, - }, - [anon_sym_BSLASH] = { + [anon_sym_LBRACE_CARET] = { .visible = true, .named = false, }, - [sym_quotation_marks] = { - .visible = true, - .named = true, - }, - [sym_ellipsis] = { - .visible = true, - .named = true, - }, - [sym_em_dash] = { - .visible = true, - .named = true, - }, - [sym_en_dash] = { - .visible = true, - .named = true, - }, - [sym_backslash_escape] = { - .visible = true, - .named = true, - }, - [anon_sym_LT] = { + [anon_sym_CARET] = { .visible = true, .named = false, }, - [aux_sym_autolink_token1] = { - .visible = false, + [anon_sym_LBRACE_TILDE] = { + .visible = true, .named = false, }, - [anon_sym_GT] = { + [anon_sym_TILDE] = { .visible = true, .named = false, }, @@ -522,53 +504,53 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_EQ_RBRACE] = { + [anon_sym_LBRACE_PLUS] = { .visible = true, .named = false, }, - [anon_sym_LBRACE_PLUS] = { + [anon_sym_LBRACE_DASH] = { .visible = true, .named = false, }, - [anon_sym_PLUS_RBRACE] = { + [anon_sym_BSLASH] = { .visible = true, .named = false, }, - [anon_sym_LBRACE_DASH] = { + [sym_quotation_marks] = { .visible = true, - .named = false, + .named = true, }, - [anon_sym_DASH_RBRACE] = { + [sym_ellipsis] = { .visible = true, - .named = false, + .named = true, }, - [sym_symbol] = { + [sym_em_dash] = { .visible = true, .named = true, }, - [anon_sym_LBRACE_CARET] = { + [sym_en_dash] = { .visible = true, - .named = false, + .named = true, }, - [anon_sym_CARET] = { + [sym_backslash_escape] = { .visible = true, - .named = false, + .named = true, }, - [anon_sym_CARET_RBRACE] = { + [anon_sym_LT] = { .visible = true, .named = false, }, - [anon_sym_LBRACE_TILDE] = { - .visible = true, + [aux_sym_autolink_token1] = { + .visible = false, .named = false, }, - [anon_sym_TILDE] = { + [anon_sym_GT] = { .visible = true, .named = false, }, - [anon_sym_TILDE_RBRACE] = { + [sym_symbol] = { .visible = true, - .named = false, + .named = true, }, [anon_sym_LBRACK_CARET] = { .visible = true, @@ -654,10 +636,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [anon_sym_PIPE] = { - .visible = true, - .named = false, - }, [sym_language] = { .visible = true, .named = true, @@ -726,6 +704,54 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym__strong_mark_begin] = { + .visible = false, + .named = true, + }, + [sym_strong_end] = { + .visible = true, + .named = true, + }, + [sym__superscript_mark_begin] = { + .visible = false, + .named = true, + }, + [sym_superscript_end] = { + .visible = true, + .named = true, + }, + [sym__subscript_mark_begin] = { + .visible = false, + .named = true, + }, + [sym_subscript_end] = { + .visible = true, + .named = true, + }, + [sym__highlighted_mark_begin] = { + .visible = false, + .named = true, + }, + [sym_highlighted_end] = { + .visible = true, + .named = true, + }, + [sym__insert_mark_begin] = { + .visible = false, + .named = true, + }, + [sym_insert_end] = { + .visible = true, + .named = true, + }, + [sym__delete_mark_begin] = { + .visible = false, + .named = true, + }, + [sym_delete_end] = { + .visible = true, + .named = true, + }, [sym__in_fallback] = { .visible = false, .named = true, @@ -774,27 +800,27 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_strong_end] = { + [sym_superscript] = { .visible = true, .named = true, }, - [sym__hard_line_break] = { - .visible = false, + [sym_superscript_begin] = { + .visible = true, .named = true, }, - [sym_hard_line_break] = { + [sym_subscript] = { .visible = true, .named = true, }, - [sym__smart_punctuation] = { - .visible = false, + [sym_subscript_begin] = { + .visible = true, .named = true, }, - [sym_autolink] = { + [sym_highlighted] = { .visible = true, .named = true, }, - [sym_highlighted] = { + [sym_highlighted_begin] = { .visible = true, .named = true, }, @@ -802,15 +828,27 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_insert_begin] = { + .visible = true, + .named = true, + }, [sym_delete] = { .visible = true, .named = true, }, - [sym_superscript] = { + [sym_delete_begin] = { .visible = true, .named = true, }, - [sym_subscript] = { + [sym_hard_line_break] = { + .visible = true, + .named = true, + }, + [sym__smart_punctuation] = { + .visible = false, + .named = true, + }, + [sym_autolink] = { .visible = true, .named = true, }, @@ -950,10 +988,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_strong_begin_repeat1] = { - .visible = false, - .named = false, - }, [aux_sym__comment_with_newline_repeat1] = { .visible = false, .named = false, @@ -1010,29 +1044,26 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [0] = sym_comment, }, [3] = { - [1] = sym__verbatim_content, - }, - [4] = { [0] = alias_sym_footnote_marker_begin, [2] = alias_sym_footnote_marker_end, }, - [5] = { + [4] = { [1] = alias_sym_image_description, }, - [6] = { + [5] = { [1] = alias_sym_args, }, - [7] = { + [6] = { [0] = alias_sym_math_marker, [1] = alias_sym_math_marker_begin, [3] = alias_sym_math_marker_end, }, + [7] = { + [2] = sym__verbatim_content, + }, [8] = { [1] = alias_sym_link_label, }, - [9] = { - [2] = sym__verbatim_content, - }, }; static const uint16_t ts_non_terminal_alias_map[] = { @@ -1068,210 +1099,210 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [11] = 11, [12] = 2, [13] = 11, - [14] = 14, - [15] = 14, - [16] = 16, - [17] = 17, - [18] = 18, - [19] = 19, - [20] = 16, + [14] = 11, + [15] = 11, + [16] = 11, + [17] = 11, + [18] = 11, + [19] = 11, + [20] = 2, [21] = 11, - [22] = 17, - [23] = 18, - [24] = 19, - [25] = 11, - [26] = 19, - [27] = 18, - [28] = 17, - [29] = 16, - [30] = 14, - [31] = 11, - [32] = 14, - [33] = 16, - [34] = 17, - [35] = 18, - [36] = 19, - [37] = 14, - [38] = 16, - [39] = 17, - [40] = 18, - [41] = 19, - [42] = 14, - [43] = 11, - [44] = 11, - [45] = 16, - [46] = 19, - [47] = 18, - [48] = 17, - [49] = 16, - [50] = 2, - [51] = 14, - [52] = 14, - [53] = 16, - [54] = 14, - [55] = 11, - [56] = 19, - [57] = 18, - [58] = 17, - [59] = 16, - [60] = 14, - [61] = 16, - [62] = 17, - [63] = 17, - [64] = 19, - [65] = 11, - [66] = 18, - [67] = 11, - [68] = 19, - [69] = 18, - [70] = 19, - [71] = 18, - [72] = 17, - [73] = 18, - [74] = 19, - [75] = 11, - [76] = 17, - [77] = 16, - [78] = 14, - [79] = 79, - [80] = 80, - [81] = 81, - [82] = 81, - [83] = 83, - [84] = 79, - [85] = 80, - [86] = 81, - [87] = 81, - [88] = 88, - [89] = 83, - [90] = 79, - [91] = 88, - [92] = 80, - [93] = 83, - [94] = 79, - [95] = 88, - [96] = 83, - [97] = 79, - [98] = 80, - [99] = 80, - [100] = 88, - [101] = 83, - [102] = 88, - [103] = 81, - [104] = 81, - [105] = 79, - [106] = 88, - [107] = 80, - [108] = 83, - [109] = 80, - [110] = 79, - [111] = 80, - [112] = 83, - [113] = 79, - [114] = 88, - [115] = 88, - [116] = 81, - [117] = 81, - [118] = 88, - [119] = 80, - [120] = 83, - [121] = 79, - [122] = 80, - [123] = 81, - [124] = 83, - [125] = 83, - [126] = 79, - [127] = 80, - [128] = 83, - [129] = 79, - [130] = 81, + [22] = 11, + [23] = 11, + [24] = 24, + [25] = 25, + [26] = 26, + [27] = 27, + [28] = 24, + [29] = 29, + [30] = 30, + [31] = 25, + [32] = 32, + [33] = 33, + [34] = 26, + [35] = 27, + [36] = 24, + [37] = 26, + [38] = 38, + [39] = 29, + [40] = 40, + [41] = 30, + [42] = 25, + [43] = 27, + [44] = 32, + [45] = 33, + [46] = 26, + [47] = 27, + [48] = 24, + [49] = 29, + [50] = 30, + [51] = 25, + [52] = 32, + [53] = 33, + [54] = 32, + [55] = 25, + [56] = 30, + [57] = 29, + [58] = 24, + [59] = 27, + [60] = 26, + [61] = 33, + [62] = 26, + [63] = 32, + [64] = 25, + [65] = 40, + [66] = 38, + [67] = 30, + [68] = 40, + [69] = 29, + [70] = 27, + [71] = 24, + [72] = 29, + [73] = 30, + [74] = 25, + [75] = 32, + [76] = 33, + [77] = 26, + [78] = 40, + [79] = 38, + [80] = 27, + [81] = 24, + [82] = 29, + [83] = 30, + [84] = 25, + [85] = 32, + [86] = 24, + [87] = 33, + [88] = 26, + [89] = 27, + [90] = 24, + [91] = 29, + [92] = 30, + [93] = 38, + [94] = 32, + [95] = 33, + [96] = 40, + [97] = 26, + [98] = 27, + [99] = 24, + [100] = 29, + [101] = 30, + [102] = 25, + [103] = 38, + [104] = 40, + [105] = 33, + [106] = 38, + [107] = 32, + [108] = 29, + [109] = 30, + [110] = 40, + [111] = 38, + [112] = 25, + [113] = 32, + [114] = 33, + [115] = 38, + [116] = 33, + [117] = 26, + [118] = 27, + [119] = 24, + [120] = 29, + [121] = 30, + [122] = 25, + [123] = 40, + [124] = 32, + [125] = 33, + [126] = 26, + [127] = 27, + [128] = 128, + [129] = 40, + [130] = 128, [131] = 131, - [132] = 132, + [132] = 131, [133] = 133, - [134] = 134, - [135] = 133, - [136] = 136, - [137] = 136, - [138] = 132, - [139] = 136, + [134] = 131, + [135] = 135, + [136] = 133, + [137] = 133, + [138] = 135, + [139] = 131, [140] = 133, - [141] = 132, - [142] = 134, + [141] = 131, + [142] = 135, [143] = 133, - [144] = 133, - [145] = 134, - [146] = 132, - [147] = 133, - [148] = 136, - [149] = 132, - [150] = 136, - [151] = 132, - [152] = 132, - [153] = 136, - [154] = 133, - [155] = 134, - [156] = 134, - [157] = 132, - [158] = 134, - [159] = 134, - [160] = 136, - [161] = 136, - [162] = 134, - [163] = 133, + [144] = 135, + [145] = 133, + [146] = 131, + [147] = 135, + [148] = 135, + [149] = 131, + [150] = 135, + [151] = 135, + [152] = 133, + [153] = 133, + [154] = 135, + [155] = 131, + [156] = 135, + [157] = 133, + [158] = 133, + [159] = 131, + [160] = 131, + [161] = 161, + [162] = 162, + [163] = 162, [164] = 133, - [165] = 134, - [166] = 132, - [167] = 132, - [168] = 136, - [169] = 133, - [170] = 136, - [171] = 134, - [172] = 172, + [165] = 131, + [166] = 161, + [167] = 167, + [168] = 135, + [169] = 169, + [170] = 169, + [171] = 161, + [172] = 162, [173] = 173, - [174] = 174, + [174] = 167, [175] = 173, - [176] = 174, - [177] = 177, - [178] = 173, - [179] = 172, - [180] = 177, - [181] = 174, + [176] = 162, + [177] = 161, + [178] = 169, + [179] = 169, + [180] = 161, + [181] = 162, [182] = 173, - [183] = 172, - [184] = 172, - [185] = 173, - [186] = 174, - [187] = 177, - [188] = 177, - [189] = 177, - [190] = 172, - [191] = 174, - [192] = 172, - [193] = 132, - [194] = 174, - [195] = 177, - [196] = 177, - [197] = 173, - [198] = 174, - [199] = 173, - [200] = 172, - [201] = 174, - [202] = 173, - [203] = 177, - [204] = 172, - [205] = 174, - [206] = 177, - [207] = 173, - [208] = 134, - [209] = 174, - [210] = 173, - [211] = 172, - [212] = 172, - [213] = 133, - [214] = 177, - [215] = 136, + [183] = 167, + [184] = 173, + [185] = 169, + [186] = 161, + [187] = 167, + [188] = 162, + [189] = 173, + [190] = 167, + [191] = 169, + [192] = 161, + [193] = 162, + [194] = 173, + [195] = 167, + [196] = 169, + [197] = 161, + [198] = 167, + [199] = 162, + [200] = 173, + [201] = 167, + [202] = 169, + [203] = 167, + [204] = 169, + [205] = 167, + [206] = 173, + [207] = 162, + [208] = 161, + [209] = 169, + [210] = 162, + [211] = 161, + [212] = 173, + [213] = 173, + [214] = 214, + [215] = 215, [216] = 216, - [217] = 177, + [217] = 217, [218] = 218, [219] = 219, [220] = 220, @@ -1281,789 +1312,909 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [224] = 224, [225] = 225, [226] = 226, - [227] = 227, + [227] = 214, [228] = 228, [229] = 229, [230] = 230, [231] = 231, [232] = 232, [233] = 233, - [234] = 234, + [234] = 215, [235] = 235, [236] = 236, [237] = 237, [238] = 238, [239] = 239, - [240] = 221, - [241] = 232, + [240] = 240, + [241] = 241, [242] = 242, [243] = 243, [244] = 244, - [245] = 245, - [246] = 246, - [247] = 242, - [248] = 216, - [249] = 249, - [250] = 250, + [245] = 216, + [246] = 242, + [247] = 241, + [248] = 236, + [249] = 235, + [250] = 215, [251] = 251, [252] = 252, - [253] = 218, - [254] = 219, - [255] = 220, - [256] = 243, - [257] = 222, - [258] = 223, - [259] = 224, - [260] = 225, - [261] = 226, - [262] = 227, - [263] = 228, - [264] = 229, - [265] = 230, - [266] = 231, - [267] = 244, - [268] = 233, - [269] = 234, - [270] = 235, - [271] = 236, - [272] = 237, - [273] = 238, - [274] = 239, - [275] = 219, - [276] = 251, - [277] = 221, - [278] = 250, - [279] = 249, - [280] = 216, - [281] = 245, - [282] = 246, - [283] = 245, - [284] = 244, - [285] = 243, - [286] = 242, - [287] = 232, - [288] = 232, - [289] = 242, - [290] = 243, - [291] = 244, - [292] = 221, - [293] = 239, - [294] = 245, - [295] = 246, - [296] = 296, - [297] = 216, - [298] = 249, - [299] = 250, - [300] = 251, - [301] = 252, - [302] = 218, - [303] = 219, - [304] = 238, - [305] = 237, - [306] = 236, - [307] = 220, - [308] = 246, - [309] = 222, - [310] = 223, - [311] = 224, - [312] = 225, - [313] = 226, - [314] = 227, - [315] = 228, - [316] = 229, - [317] = 230, - [318] = 231, - [319] = 319, - [320] = 233, - [321] = 234, - [322] = 235, - [323] = 236, - [324] = 237, - [325] = 238, - [326] = 239, - [327] = 235, - [328] = 234, - [329] = 221, - [330] = 233, - [331] = 331, - [332] = 231, - [333] = 230, - [334] = 229, - [335] = 228, - [336] = 227, - [337] = 226, - [338] = 225, - [339] = 224, - [340] = 232, - [341] = 242, - [342] = 243, - [343] = 244, + [253] = 244, + [254] = 243, + [255] = 255, + [256] = 220, + [257] = 217, + [258] = 218, + [259] = 219, + [260] = 216, + [261] = 221, + [262] = 222, + [263] = 223, + [264] = 224, + [265] = 225, + [266] = 226, + [267] = 214, + [268] = 228, + [269] = 229, + [270] = 230, + [271] = 231, + [272] = 232, + [273] = 233, + [274] = 240, + [275] = 239, + [276] = 238, + [277] = 237, + [278] = 238, + [279] = 239, + [280] = 240, + [281] = 243, + [282] = 244, + [283] = 220, + [284] = 242, + [285] = 241, + [286] = 236, + [287] = 235, + [288] = 215, + [289] = 251, + [290] = 252, + [291] = 255, + [292] = 216, + [293] = 217, + [294] = 218, + [295] = 219, + [296] = 220, + [297] = 221, + [298] = 222, + [299] = 223, + [300] = 224, + [301] = 225, + [302] = 226, + [303] = 214, + [304] = 228, + [305] = 229, + [306] = 230, + [307] = 231, + [308] = 232, + [309] = 233, + [310] = 221, + [311] = 251, + [312] = 252, + [313] = 252, + [314] = 233, + [315] = 232, + [316] = 231, + [317] = 237, + [318] = 238, + [319] = 239, + [320] = 240, + [321] = 230, + [322] = 229, + [323] = 243, + [324] = 244, + [325] = 216, + [326] = 242, + [327] = 241, + [328] = 236, + [329] = 235, + [330] = 215, + [331] = 251, + [332] = 252, + [333] = 251, + [334] = 228, + [335] = 214, + [336] = 255, + [337] = 220, + [338] = 217, + [339] = 218, + [340] = 219, + [341] = 216, + [342] = 221, + [343] = 222, [344] = 223, - [345] = 222, - [346] = 245, - [347] = 246, - [348] = 319, - [349] = 216, - [350] = 249, - [351] = 250, - [352] = 251, - [353] = 252, - [354] = 218, - [355] = 219, - [356] = 331, - [357] = 220, - [358] = 232, - [359] = 220, - [360] = 319, - [361] = 222, - [362] = 223, - [363] = 224, - [364] = 225, - [365] = 226, - [366] = 227, - [367] = 228, - [368] = 229, - [369] = 230, - [370] = 231, - [371] = 331, - [372] = 233, - [373] = 234, + [345] = 224, + [346] = 225, + [347] = 226, + [348] = 222, + [349] = 228, + [350] = 229, + [351] = 230, + [352] = 231, + [353] = 232, + [354] = 233, + [355] = 215, + [356] = 235, + [357] = 236, + [358] = 241, + [359] = 226, + [360] = 225, + [361] = 224, + [362] = 237, + [363] = 238, + [364] = 239, + [365] = 240, + [366] = 223, + [367] = 222, + [368] = 243, + [369] = 244, + [370] = 220, + [371] = 242, + [372] = 241, + [373] = 236, [374] = 235, - [375] = 236, - [376] = 237, - [377] = 238, - [378] = 239, - [379] = 218, - [380] = 252, - [381] = 221, - [382] = 251, - [383] = 250, - [384] = 249, - [385] = 216, - [386] = 319, - [387] = 246, - [388] = 245, - [389] = 244, - [390] = 243, - [391] = 242, - [392] = 232, - [393] = 242, - [394] = 243, - [395] = 244, - [396] = 331, - [397] = 221, - [398] = 245, - [399] = 246, - [400] = 319, - [401] = 216, - [402] = 249, - [403] = 250, - [404] = 251, - [405] = 252, - [406] = 218, - [407] = 219, - [408] = 331, - [409] = 319, - [410] = 331, - [411] = 220, - [412] = 319, - [413] = 222, - [414] = 223, - [415] = 224, - [416] = 225, - [417] = 226, - [418] = 227, - [419] = 228, - [420] = 229, - [421] = 230, - [422] = 231, - [423] = 331, - [424] = 233, - [425] = 234, - [426] = 235, - [427] = 236, - [428] = 237, - [429] = 238, - [430] = 239, - [431] = 319, - [432] = 239, - [433] = 221, - [434] = 331, - [435] = 319, - [436] = 331, - [437] = 172, - [438] = 252, - [439] = 216, - [440] = 249, - [441] = 238, - [442] = 237, - [443] = 250, - [444] = 232, - [445] = 242, - [446] = 243, - [447] = 244, - [448] = 236, + [375] = 255, + [376] = 251, + [377] = 252, + [378] = 242, + [379] = 221, + [380] = 219, + [381] = 255, + [382] = 216, + [383] = 217, + [384] = 218, + [385] = 219, + [386] = 220, + [387] = 221, + [388] = 222, + [389] = 223, + [390] = 224, + [391] = 225, + [392] = 226, + [393] = 214, + [394] = 228, + [395] = 229, + [396] = 230, + [397] = 231, + [398] = 232, + [399] = 233, + [400] = 220, + [401] = 244, + [402] = 243, + [403] = 237, + [404] = 218, + [405] = 217, + [406] = 255, + [407] = 237, + [408] = 238, + [409] = 239, + [410] = 240, + [411] = 223, + [412] = 252, + [413] = 243, + [414] = 244, + [415] = 216, + [416] = 242, + [417] = 241, + [418] = 236, + [419] = 235, + [420] = 215, + [421] = 251, + [422] = 252, + [423] = 239, + [424] = 251, + [425] = 215, + [426] = 255, + [427] = 220, + [428] = 217, + [429] = 218, + [430] = 219, + [431] = 216, + [432] = 221, + [433] = 222, + [434] = 223, + [435] = 224, + [436] = 225, + [437] = 226, + [438] = 214, + [439] = 228, + [440] = 229, + [441] = 230, + [442] = 231, + [443] = 232, + [444] = 233, + [445] = 238, + [446] = 237, + [447] = 217, + [448] = 219, [449] = 235, - [450] = 245, - [451] = 246, - [452] = 251, - [453] = 216, - [454] = 249, - [455] = 250, - [456] = 251, - [457] = 252, - [458] = 218, - [459] = 219, - [460] = 234, - [461] = 233, - [462] = 252, - [463] = 220, - [464] = 218, - [465] = 222, - [466] = 223, - [467] = 224, - [468] = 225, - [469] = 226, - [470] = 227, - [471] = 228, - [472] = 229, - [473] = 230, - [474] = 231, - [475] = 173, - [476] = 233, - [477] = 234, - [478] = 235, - [479] = 236, - [480] = 237, - [481] = 238, - [482] = 239, - [483] = 174, - [484] = 219, - [485] = 221, + [450] = 236, + [451] = 241, + [452] = 237, + [453] = 238, + [454] = 239, + [455] = 240, + [456] = 242, + [457] = 243, + [458] = 244, + [459] = 220, + [460] = 242, + [461] = 241, + [462] = 236, + [463] = 235, + [464] = 215, + [465] = 251, + [466] = 252, + [467] = 255, + [468] = 244, + [469] = 243, + [470] = 255, + [471] = 216, + [472] = 217, + [473] = 218, + [474] = 219, + [475] = 240, + [476] = 221, + [477] = 222, + [478] = 223, + [479] = 224, + [480] = 225, + [481] = 226, + [482] = 214, + [483] = 228, + [484] = 229, + [485] = 230, [486] = 231, - [487] = 230, - [488] = 229, - [489] = 232, - [490] = 242, - [491] = 243, - [492] = 245, - [493] = 246, - [494] = 249, - [495] = 250, - [496] = 251, - [497] = 252, - [498] = 218, - [499] = 219, - [500] = 228, - [501] = 220, - [502] = 331, - [503] = 222, - [504] = 223, - [505] = 224, - [506] = 225, - [507] = 226, - [508] = 227, - [509] = 228, - [510] = 229, - [511] = 230, - [512] = 231, - [513] = 319, - [514] = 233, - [515] = 234, - [516] = 235, - [517] = 236, - [518] = 237, - [519] = 238, - [520] = 239, - [521] = 227, - [522] = 226, - [523] = 221, - [524] = 225, - [525] = 224, - [526] = 223, - [527] = 222, - [528] = 232, - [529] = 242, - [530] = 243, - [531] = 244, - [532] = 245, - [533] = 246, - [534] = 216, - [535] = 249, - [536] = 250, - [537] = 251, - [538] = 252, - [539] = 218, - [540] = 219, - [541] = 541, - [542] = 220, - [543] = 220, - [544] = 222, - [545] = 223, - [546] = 224, - [547] = 225, - [548] = 226, - [549] = 227, - [550] = 228, - [551] = 229, - [552] = 230, - [553] = 231, - [554] = 233, - [555] = 234, - [556] = 235, - [557] = 236, - [558] = 237, - [559] = 238, - [560] = 239, - [561] = 219, - [562] = 319, - [563] = 331, - [564] = 244, - [565] = 319, - [566] = 319, - [567] = 331, - [568] = 331, - [569] = 569, - [570] = 319, - [571] = 331, - [572] = 319, - [573] = 569, - [574] = 569, - [575] = 319, - [576] = 331, - [577] = 569, - [578] = 319, - [579] = 569, - [580] = 569, - [581] = 569, - [582] = 582, - [583] = 331, - [584] = 331, - [585] = 569, - [586] = 244, - [587] = 319, - [588] = 221, - [589] = 331, - [590] = 319, - [591] = 319, - [592] = 331, - [593] = 239, - [594] = 569, - [595] = 569, - [596] = 596, - [597] = 238, - [598] = 237, - [599] = 232, - [600] = 242, - [601] = 243, - [602] = 236, - [603] = 245, - [604] = 246, - [605] = 235, + [487] = 232, + [488] = 233, + [489] = 233, + [490] = 232, + [491] = 231, + [492] = 230, + [493] = 239, + [494] = 238, + [495] = 237, + [496] = 237, + [497] = 238, + [498] = 239, + [499] = 229, + [500] = 243, + [501] = 244, + [502] = 228, + [503] = 242, + [504] = 241, + [505] = 236, + [506] = 235, + [507] = 215, + [508] = 251, + [509] = 252, + [510] = 214, + [511] = 226, + [512] = 255, + [513] = 167, + [514] = 217, + [515] = 218, + [516] = 219, + [517] = 225, + [518] = 221, + [519] = 222, + [520] = 223, + [521] = 224, + [522] = 225, + [523] = 226, + [524] = 214, + [525] = 228, + [526] = 229, + [527] = 230, + [528] = 231, + [529] = 232, + [530] = 233, + [531] = 173, + [532] = 162, + [533] = 161, + [534] = 169, + [535] = 218, + [536] = 224, + [537] = 225, + [538] = 233, + [539] = 238, + [540] = 239, + [541] = 220, + [542] = 243, + [543] = 244, + [544] = 242, + [545] = 241, + [546] = 236, + [547] = 235, + [548] = 215, + [549] = 240, + [550] = 251, + [551] = 252, + [552] = 220, + [553] = 216, + [554] = 255, + [555] = 216, + [556] = 217, + [557] = 218, + [558] = 219, + [559] = 220, + [560] = 221, + [561] = 222, + [562] = 223, + [563] = 224, + [564] = 564, + [565] = 226, + [566] = 214, + [567] = 228, + [568] = 229, + [569] = 230, + [570] = 231, + [571] = 232, + [572] = 572, + [573] = 220, + [574] = 216, + [575] = 564, + [576] = 220, + [577] = 564, + [578] = 216, + [579] = 216, + [580] = 564, + [581] = 564, + [582] = 216, + [583] = 564, + [584] = 220, + [585] = 216, + [586] = 564, + [587] = 220, + [588] = 216, + [589] = 240, + [590] = 220, + [591] = 216, + [592] = 564, + [593] = 216, + [594] = 220, + [595] = 237, + [596] = 564, + [597] = 597, + [598] = 220, + [599] = 216, + [600] = 220, + [601] = 597, + [602] = 240, + [603] = 572, + [604] = 564, + [605] = 220, [606] = 216, - [607] = 249, - [608] = 250, - [609] = 251, - [610] = 252, - [611] = 218, - [612] = 234, - [613] = 331, - [614] = 233, - [615] = 220, - [616] = 331, - [617] = 222, - [618] = 223, - [619] = 224, - [620] = 225, - [621] = 226, - [622] = 227, - [623] = 228, - [624] = 229, - [625] = 230, - [626] = 231, - [627] = 319, - [628] = 331, - [629] = 319, - [630] = 569, - [631] = 631, - [632] = 632, - [633] = 631, - [634] = 634, - [635] = 632, - [636] = 632, - [637] = 631, - [638] = 632, - [639] = 632, - [640] = 631, - [641] = 631, - [642] = 632, - [643] = 631, - [644] = 632, - [645] = 631, - [646] = 631, - [647] = 632, - [648] = 631, - [649] = 632, - [650] = 631, - [651] = 632, - [652] = 632, - [653] = 631, - [654] = 631, - [655] = 631, - [656] = 632, - [657] = 632, - [658] = 631, - [659] = 632, - [660] = 631, - [661] = 632, - [662] = 631, - [663] = 631, - [664] = 632, - [665] = 631, - [666] = 632, - [667] = 631, - [668] = 632, - [669] = 631, - [670] = 632, - [671] = 632, - [672] = 632, - [673] = 631, - [674] = 631, - [675] = 632, - [676] = 676, - [677] = 677, - [678] = 678, - [679] = 679, - [680] = 680, - [681] = 681, - [682] = 682, - [683] = 683, - [684] = 684, - [685] = 685, - [686] = 686, - [687] = 687, - [688] = 685, - [689] = 685, - [690] = 690, - [691] = 685, - [692] = 687, - [693] = 690, - [694] = 690, - [695] = 690, - [696] = 685, - [697] = 687, - [698] = 690, - [699] = 685, - [700] = 687, + [607] = 564, + [608] = 608, + [609] = 609, + [610] = 609, + [611] = 608, + [612] = 608, + [613] = 609, + [614] = 609, + [615] = 609, + [616] = 608, + [617] = 608, + [618] = 608, + [619] = 609, + [620] = 608, + [621] = 609, + [622] = 609, + [623] = 608, + [624] = 609, + [625] = 608, + [626] = 609, + [627] = 608, + [628] = 609, + [629] = 609, + [630] = 608, + [631] = 608, + [632] = 608, + [633] = 609, + [634] = 608, + [635] = 609, + [636] = 608, + [637] = 609, + [638] = 608, + [639] = 609, + [640] = 608, + [641] = 609, + [642] = 608, + [643] = 609, + [644] = 608, + [645] = 609, + [646] = 608, + [647] = 608, + [648] = 608, + [649] = 609, + [650] = 650, + [651] = 609, + [652] = 609, + [653] = 653, + [654] = 654, + [655] = 655, + [656] = 656, + [657] = 657, + [658] = 658, + [659] = 659, + [660] = 660, + [661] = 661, + [662] = 662, + [663] = 663, + [664] = 663, + [665] = 665, + [666] = 666, + [667] = 665, + [668] = 663, + [669] = 665, + [670] = 665, + [671] = 666, + [672] = 663, + [673] = 666, + [674] = 666, + [675] = 663, + [676] = 663, + [677] = 665, + [678] = 665, + [679] = 666, + [680] = 666, + [681] = 666, + [682] = 663, + [683] = 663, + [684] = 666, + [685] = 665, + [686] = 663, + [687] = 663, + [688] = 688, + [689] = 689, + [690] = 665, + [691] = 665, + [692] = 666, + [693] = 663, + [694] = 665, + [695] = 665, + [696] = 666, + [697] = 666, + [698] = 698, + [699] = 699, + [700] = 700, [701] = 701, [702] = 702, - [703] = 690, - [704] = 690, - [705] = 685, - [706] = 685, - [707] = 690, - [708] = 687, - [709] = 685, - [710] = 690, - [711] = 687, - [712] = 685, - [713] = 690, - [714] = 685, - [715] = 687, - [716] = 687, - [717] = 690, - [718] = 687, - [719] = 687, - [720] = 687, - [721] = 721, - [722] = 722, - [723] = 723, - [724] = 723, - [725] = 725, - [726] = 723, - [727] = 723, - [728] = 723, - [729] = 723, - [730] = 723, - [731] = 723, - [732] = 723, - [733] = 723, - [734] = 723, - [735] = 735, - [736] = 736, - [737] = 737, - [738] = 737, - [739] = 736, - [740] = 740, - [741] = 741, - [742] = 742, - [743] = 742, - [744] = 742, - [745] = 742, - [746] = 742, - [747] = 747, - [748] = 742, - [749] = 742, - [750] = 740, - [751] = 742, - [752] = 737, - [753] = 747, - [754] = 736, - [755] = 747, - [756] = 742, - [757] = 742, - [758] = 742, - [759] = 740, - [760] = 747, - [761] = 737, - [762] = 736, - [763] = 737, - [764] = 736, - [765] = 740, - [766] = 740, - [767] = 747, - [768] = 736, - [769] = 737, - [770] = 747, - [771] = 747, - [772] = 747, - [773] = 740, - [774] = 740, - [775] = 740, - [776] = 740, - [777] = 737, - [778] = 747, - [779] = 736, - [780] = 737, - [781] = 747, - [782] = 740, - [783] = 737, - [784] = 737, - [785] = 740, - [786] = 736, - [787] = 736, - [788] = 737, - [789] = 736, - [790] = 736, - [791] = 747, - [792] = 792, - [793] = 792, - [794] = 794, - [795] = 795, - [796] = 796, - [797] = 797, - [798] = 798, - [799] = 799, - [800] = 800, - [801] = 792, - [802] = 802, - [803] = 803, - [804] = 804, - [805] = 805, - [806] = 806, - [807] = 805, - [808] = 806, - [809] = 804, - [810] = 799, - [811] = 797, - [812] = 796, - [813] = 794, - [814] = 795, - [815] = 803, - [816] = 798, - [817] = 802, - [818] = 800, - [819] = 792, - [820] = 802, - [821] = 803, - [822] = 805, - [823] = 792, - [824] = 800, - [825] = 806, - [826] = 804, - [827] = 799, - [828] = 797, - [829] = 796, - [830] = 794, - [831] = 795, - [832] = 798, - [833] = 795, - [834] = 798, - [835] = 800, - [836] = 792, - [837] = 802, - [838] = 803, - [839] = 805, - [840] = 794, - [841] = 796, - [842] = 797, - [843] = 806, - [844] = 804, - [845] = 799, - [846] = 797, - [847] = 796, - [848] = 794, - [849] = 795, - [850] = 799, - [851] = 804, - [852] = 798, - [853] = 806, - [854] = 800, - [855] = 792, - [856] = 802, - [857] = 803, - [858] = 805, - [859] = 792, - [860] = 806, - [861] = 804, - [862] = 799, - [863] = 797, - [864] = 796, - [865] = 794, - [866] = 795, - [867] = 803, - [868] = 802, - [869] = 798, - [870] = 805, - [871] = 871, - [872] = 800, - [873] = 803, - [874] = 802, - [875] = 803, - [876] = 797, - [877] = 799, - [878] = 805, - [879] = 800, - [880] = 804, - [881] = 798, - [882] = 806, - [883] = 804, - [884] = 799, - [885] = 797, - [886] = 796, - [887] = 794, - [888] = 795, - [889] = 806, - [890] = 794, - [891] = 796, - [892] = 797, - [893] = 799, - [894] = 804, - [895] = 806, - [896] = 805, - [897] = 794, - [898] = 795, - [899] = 803, - [900] = 802, - [901] = 796, - [902] = 800, - [903] = 805, - [904] = 798, - [905] = 795, - [906] = 803, - [907] = 907, - [908] = 908, - [909] = 909, - [910] = 910, - [911] = 910, - [912] = 909, - [913] = 913, - [914] = 802, - [915] = 915, - [916] = 792, - [917] = 917, - [918] = 918, - [919] = 910, - [920] = 805, - [921] = 909, - [922] = 913, - [923] = 800, - [924] = 924, - [925] = 798, - [926] = 917, - [927] = 918, - [928] = 910, - [929] = 798, - [930] = 909, - [931] = 913, - [932] = 800, - [933] = 803, - [934] = 802, - [935] = 917, - [936] = 918, - [937] = 910, - [938] = 792, - [939] = 909, - [940] = 913, - [941] = 795, - [942] = 800, - [943] = 794, - [944] = 917, - [945] = 918, - [946] = 910, - [947] = 917, - [948] = 909, - [949] = 913, - [950] = 794, - [951] = 796, - [952] = 918, - [953] = 917, - [954] = 918, - [955] = 910, - [956] = 796, - [957] = 909, - [958] = 913, - [959] = 797, - [960] = 913, - [961] = 798, - [962] = 917, - [963] = 918, - [964] = 910, - [965] = 806, - [966] = 909, - [967] = 913, - [968] = 799, - [969] = 969, - [970] = 970, - [971] = 917, - [972] = 918, - [973] = 910, - [974] = 974, - [975] = 909, - [976] = 913, - [977] = 804, - [978] = 978, - [979] = 797, - [980] = 917, - [981] = 918, - [982] = 910, - [983] = 804, - [984] = 909, - [985] = 913, - [986] = 806, - [987] = 799, - [988] = 988, - [989] = 917, - [990] = 918, - [991] = 910, - [992] = 795, - [993] = 909, - [994] = 913, - [995] = 792, - [996] = 802, - [997] = 805, - [998] = 917, - [999] = 918, - [1000] = 970, - [1001] = 970, - [1002] = 970, - [1003] = 970, - [1004] = 970, - [1005] = 970, - [1006] = 970, - [1007] = 970, - [1008] = 970, - [1009] = 970, + [703] = 703, + [704] = 704, + [705] = 705, + [706] = 706, + [707] = 707, + [708] = 708, + [709] = 709, + [710] = 710, + [711] = 703, + [712] = 705, + [713] = 704, + [714] = 702, + [715] = 707, + [716] = 710, + [717] = 702, + [718] = 708, + [719] = 707, + [720] = 706, + [721] = 705, + [722] = 704, + [723] = 709, + [724] = 724, + [725] = 704, + [726] = 705, + [727] = 706, + [728] = 707, + [729] = 708, + [730] = 724, + [731] = 709, + [732] = 710, + [733] = 703, + [734] = 702, + [735] = 703, + [736] = 710, + [737] = 703, + [738] = 702, + [739] = 708, + [740] = 707, + [741] = 706, + [742] = 702, + [743] = 709, + [744] = 705, + [745] = 704, + [746] = 703, + [747] = 710, + [748] = 709, + [749] = 724, + [750] = 704, + [751] = 705, + [752] = 706, + [753] = 707, + [754] = 708, + [755] = 702, + [756] = 702, + [757] = 724, + [758] = 710, + [759] = 710, + [760] = 703, + [761] = 703, + [762] = 708, + [763] = 707, + [764] = 710, + [765] = 708, + [766] = 706, + [767] = 705, + [768] = 704, + [769] = 724, + [770] = 709, + [771] = 707, + [772] = 724, + [773] = 706, + [774] = 703, + [775] = 710, + [776] = 705, + [777] = 704, + [778] = 709, + [779] = 724, + [780] = 704, + [781] = 705, + [782] = 706, + [783] = 707, + [784] = 708, + [785] = 708, + [786] = 724, + [787] = 709, + [788] = 707, + [789] = 710, + [790] = 703, + [791] = 706, + [792] = 706, + [793] = 705, + [794] = 709, + [795] = 702, + [796] = 704, + [797] = 724, + [798] = 709, + [799] = 724, + [800] = 702, + [801] = 708, + [802] = 709, + [803] = 724, + [804] = 704, + [805] = 705, + [806] = 706, + [807] = 707, + [808] = 708, + [809] = 702, + [810] = 810, + [811] = 710, + [812] = 703, + [813] = 813, + [814] = 814, + [815] = 815, + [816] = 816, + [817] = 813, + [818] = 818, + [819] = 819, + [820] = 820, + [821] = 821, + [822] = 822, + [823] = 823, + [824] = 822, + [825] = 814, + [826] = 826, + [827] = 827, + [828] = 828, + [829] = 829, + [830] = 830, + [831] = 814, + [832] = 832, + [833] = 816, + [834] = 830, + [835] = 819, + [836] = 820, + [837] = 821, + [838] = 829, + [839] = 828, + [840] = 827, + [841] = 826, + [842] = 823, + [843] = 822, + [844] = 818, + [845] = 815, + [846] = 815, + [847] = 821, + [848] = 818, + [849] = 820, + [850] = 819, + [851] = 813, + [852] = 822, + [853] = 823, + [854] = 816, + [855] = 832, + [856] = 826, + [857] = 827, + [858] = 828, + [859] = 829, + [860] = 830, + [861] = 814, + [862] = 832, + [863] = 816, + [864] = 813, + [865] = 819, + [866] = 820, + [867] = 821, + [868] = 814, + [869] = 830, + [870] = 829, + [871] = 828, + [872] = 827, + [873] = 826, + [874] = 823, + [875] = 815, + [876] = 822, + [877] = 818, + [878] = 818, + [879] = 815, + [880] = 821, + [881] = 820, + [882] = 822, + [883] = 823, + [884] = 819, + [885] = 813, + [886] = 826, + [887] = 827, + [888] = 828, + [889] = 829, + [890] = 830, + [891] = 814, + [892] = 832, + [893] = 816, + [894] = 813, + [895] = 819, + [896] = 820, + [897] = 821, + [898] = 816, + [899] = 832, + [900] = 814, + [901] = 830, + [902] = 829, + [903] = 828, + [904] = 827, + [905] = 826, + [906] = 823, + [907] = 820, + [908] = 818, + [909] = 815, + [910] = 821, + [911] = 820, + [912] = 819, + [913] = 813, + [914] = 816, + [915] = 832, + [916] = 814, + [917] = 830, + [918] = 829, + [919] = 828, + [920] = 920, + [921] = 921, + [922] = 922, + [923] = 827, + [924] = 826, + [925] = 823, + [926] = 822, + [927] = 818, + [928] = 815, + [929] = 821, + [930] = 920, + [931] = 931, + [932] = 932, + [933] = 933, + [934] = 920, + [935] = 921, + [936] = 922, + [937] = 815, + [938] = 819, + [939] = 813, + [940] = 816, + [941] = 832, + [942] = 942, + [943] = 814, + [944] = 830, + [945] = 829, + [946] = 932, + [947] = 933, + [948] = 920, + [949] = 921, + [950] = 922, + [951] = 828, + [952] = 821, + [953] = 827, + [954] = 826, + [955] = 823, + [956] = 822, + [957] = 818, + [958] = 815, + [959] = 821, + [960] = 932, + [961] = 933, + [962] = 920, + [963] = 921, + [964] = 922, + [965] = 820, + [966] = 933, + [967] = 820, + [968] = 819, + [969] = 813, + [970] = 816, + [971] = 832, + [972] = 832, + [973] = 830, + [974] = 932, + [975] = 933, + [976] = 920, + [977] = 921, + [978] = 922, + [979] = 819, + [980] = 829, + [981] = 813, + [982] = 828, + [983] = 827, + [984] = 826, + [985] = 816, + [986] = 832, + [987] = 814, + [988] = 932, + [989] = 933, + [990] = 920, + [991] = 921, + [992] = 922, + [993] = 830, + [994] = 994, + [995] = 829, + [996] = 828, + [997] = 827, + [998] = 998, + [999] = 999, + [1000] = 826, + [1001] = 932, + [1002] = 932, + [1003] = 933, + [1004] = 920, + [1005] = 921, + [1006] = 922, + [1007] = 823, + [1008] = 822, + [1009] = 922, + [1010] = 921, + [1011] = 1011, + [1012] = 818, + [1013] = 823, + [1014] = 1014, + [1015] = 822, + [1016] = 932, + [1017] = 933, + [1018] = 920, + [1019] = 921, + [1020] = 922, + [1021] = 815, + [1022] = 821, + [1023] = 820, + [1024] = 819, + [1025] = 813, + [1026] = 818, + [1027] = 816, + [1028] = 832, + [1029] = 1029, + [1030] = 932, + [1031] = 933, + [1032] = 920, + [1033] = 921, + [1034] = 922, + [1035] = 814, + [1036] = 1036, + [1037] = 1037, + [1038] = 1038, + [1039] = 1039, + [1040] = 1040, + [1041] = 1041, + [1042] = 1042, + [1043] = 1043, + [1044] = 932, + [1045] = 933, + [1046] = 920, + [1047] = 921, + [1048] = 922, + [1049] = 830, + [1050] = 815, + [1051] = 829, + [1052] = 828, + [1053] = 827, + [1054] = 826, + [1055] = 823, + [1056] = 822, + [1057] = 818, + [1058] = 932, + [1059] = 933, + [1060] = 1041, + [1061] = 1040, + [1062] = 1039, + [1063] = 1038, + [1064] = 1037, + [1065] = 1036, + [1066] = 1029, + [1067] = 1041, + [1068] = 1040, + [1069] = 1039, + [1070] = 1038, + [1071] = 1037, + [1072] = 1036, + [1073] = 1029, + [1074] = 1041, + [1075] = 1040, + [1076] = 1039, + [1077] = 1038, + [1078] = 1037, + [1079] = 1036, + [1080] = 1029, + [1081] = 1041, + [1082] = 1040, + [1083] = 1039, + [1084] = 1038, + [1085] = 1037, + [1086] = 1036, + [1087] = 1029, + [1088] = 1041, + [1089] = 1040, + [1090] = 1039, + [1091] = 1038, + [1092] = 1037, + [1093] = 1036, + [1094] = 1029, + [1095] = 1041, + [1096] = 1040, + [1097] = 1039, + [1098] = 1038, + [1099] = 1037, + [1100] = 1036, + [1101] = 1029, + [1102] = 1041, + [1103] = 1040, + [1104] = 1039, + [1105] = 1038, + [1106] = 1037, + [1107] = 1036, + [1108] = 1029, + [1109] = 1041, + [1110] = 1040, + [1111] = 1039, + [1112] = 1038, + [1113] = 1037, + [1114] = 1036, + [1115] = 1029, + [1116] = 1041, + [1117] = 1040, + [1118] = 1039, + [1119] = 1038, + [1120] = 1037, + [1121] = 1036, + [1122] = 1029, + [1123] = 1041, + [1124] = 1040, + [1125] = 1039, + [1126] = 1038, + [1127] = 1037, + [1128] = 1036, + [1129] = 1029, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -2071,4743 +2222,2052 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(130); - if (lookahead == '\t') ADVANCE(299); - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(118) - if (lookahead == ' ') ADVANCE(145); - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(321); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '%') ADVANCE(268); - if (lookahead == '(') ADVANCE(261); - if (lookahead == ')') ADVANCE(264); - if (lookahead == '*') ADVANCE(149); - if (lookahead == '+') ADVANCE(312); - if (lookahead == '-') ADVANCE(232); - if (lookahead == '.') ADVANCE(317); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == '=') ADVANCE(320); - if (lookahead == '>') ADVANCE(198); - if (lookahead == 'F') ADVANCE(239); - if (lookahead == 'I') ADVANCE(241); - if (lookahead == 'N') ADVANCE(242); - if (lookahead == 'T') ADVANCE(243); - if (lookahead == 'W') ADVANCE(238); - if (lookahead == 'X') ADVANCE(250); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(156); - if (lookahead == ']') ADVANCE(259); - if (lookahead == '^') ADVANCE(215); - if (lookahead == '_') ADVANCE(140); - if (lookahead == '{') ADVANCE(132); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '}') ADVANCE(136); - if (lookahead == '~') ADVANCE(223); + if (eof) ADVANCE(49); + if (lookahead == '\n') ADVANCE(190); + if (lookahead == '\r') SKIP(38) + if (lookahead == '!') ADVANCE(200); + if (lookahead == '"') ADVANCE(207); + if (lookahead == '$') ADVANCE(166); + if (lookahead == '%') ADVANCE(161); + if (lookahead == '(') ADVANCE(154); + if (lookahead == ')') ADVANCE(157); + if (lookahead == '*') ADVANCE(63); + if (lookahead == '-') ADVANCE(126); + if (lookahead == '.') ADVANCE(204); + if (lookahead == ':') ADVANCE(202); + if (lookahead == '<') ADVANCE(94); + if (lookahead == '=') ADVANCE(206); + if (lookahead == '>') ADVANCE(120); + if (lookahead == 'F') ADVANCE(132); + if (lookahead == 'I') ADVANCE(134); + if (lookahead == 'N') ADVANCE(135); + if (lookahead == 'T') ADVANCE(136); + if (lookahead == 'W') ADVANCE(131); + if (lookahead == 'X') ADVANCE(143); + if (lookahead == '[') ADVANCE(150); + if (lookahead == '\\') ADVANCE(81); + if (lookahead == ']') ADVANCE(152); + if (lookahead == '^') ADVANCE(67); + if (lookahead == '_') ADVANCE(59); + if (lookahead == '{') ADVANCE(51); + if (lookahead == '}') ADVANCE(55); + if (lookahead == '~') ADVANCE(71); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(189); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(301); + lookahead != '\f') ADVANCE(191); END_STATE(); case 1: - if (lookahead == '\t') ADVANCE(299); - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(20) - if (lookahead == ' ') ADVANCE(298); - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(149); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == ']') ADVANCE(230); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(134); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); + if (lookahead == '\n') ADVANCE(190); + if (lookahead == '\r') SKIP(3) + if (lookahead == '!') ADVANCE(200); + if (lookahead == '"') ADVANCE(201); + if (lookahead == '$') ADVANCE(166); + if (lookahead == '\'') ADVANCE(201); + if (lookahead == '*') ADVANCE(63); + if (lookahead == '-') ADVANCE(192); + if (lookahead == '.') ADVANCE(193); + if (lookahead == ':') ADVANCE(202); + if (lookahead == '<') ADVANCE(94); + if (lookahead == 'F') ADVANCE(194); + if (lookahead == 'I') ADVANCE(196); + if (lookahead == 'N') ADVANCE(197); + if (lookahead == 'T') ADVANCE(198); + if (lookahead == 'W') ADVANCE(195); + if (lookahead == 'X') ADVANCE(199); + if (lookahead == '[') ADVANCE(150); + if (lookahead == '\\') ADVANCE(79); + if (lookahead == ']') ADVANCE(152); + if (lookahead == '^') ADVANCE(67); + if (lookahead == '_') ADVANCE(58); + if (lookahead == '{') ADVANCE(53); + if (lookahead == '~') ADVANCE(71); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(189); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(301); + lookahead != '\f') ADVANCE(191); END_STATE(); case 2: - if (lookahead == '\t') ADVANCE(299); - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(35) - if (lookahead == ' ') ADVANCE(298); - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(149); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); + if (lookahead == '\n') ADVANCE(190); + if (lookahead == '\r') SKIP(3) + if (lookahead == '!') ADVANCE(200); + if (lookahead == '"') ADVANCE(201); + if (lookahead == '$') ADVANCE(166); + if (lookahead == '\'') ADVANCE(201); + if (lookahead == '*') ADVANCE(63); + if (lookahead == '-') ADVANCE(192); + if (lookahead == '.') ADVANCE(193); + if (lookahead == ':') ADVANCE(202); + if (lookahead == '<') ADVANCE(94); + if (lookahead == 'F') ADVANCE(194); + if (lookahead == 'I') ADVANCE(196); + if (lookahead == 'N') ADVANCE(197); + if (lookahead == 'T') ADVANCE(198); + if (lookahead == 'W') ADVANCE(195); + if (lookahead == 'X') ADVANCE(199); + if (lookahead == '[') ADVANCE(150); + if (lookahead == '\\') ADVANCE(79); + if (lookahead == ']') ADVANCE(124); + if (lookahead == '^') ADVANCE(67); + if (lookahead == '_') ADVANCE(58); + if (lookahead == '{') ADVANCE(159); + if (lookahead == '~') ADVANCE(71); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(189); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(301); + lookahead != '\f') ADVANCE(191); END_STATE(); case 3: - if (lookahead == '\t') ADVANCE(299); - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(35) - if (lookahead == ' ') ADVANCE(298); - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(149); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(134); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); + if (lookahead == '\n') ADVANCE(190); + if (lookahead == '\r') SKIP(3) + if (lookahead == '!') ADVANCE(200); + if (lookahead == '"') ADVANCE(201); + if (lookahead == '$') ADVANCE(166); + if (lookahead == '\'') ADVANCE(201); + if (lookahead == '*') ADVANCE(63); + if (lookahead == '-') ADVANCE(192); + if (lookahead == '.') ADVANCE(193); + if (lookahead == ':') ADVANCE(202); + if (lookahead == '<') ADVANCE(94); + if (lookahead == 'F') ADVANCE(194); + if (lookahead == 'I') ADVANCE(196); + if (lookahead == 'N') ADVANCE(197); + if (lookahead == 'T') ADVANCE(198); + if (lookahead == 'W') ADVANCE(195); + if (lookahead == 'X') ADVANCE(199); + if (lookahead == '[') ADVANCE(150); + if (lookahead == '\\') ADVANCE(79); + if (lookahead == ']') ADVANCE(124); + if (lookahead == '^') ADVANCE(67); + if (lookahead == '_') ADVANCE(58); + if (lookahead == '{') ADVANCE(159); + if (lookahead == '~') ADVANCE(71); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(301); + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(191); END_STATE(); case 4: - if (lookahead == '\t') ADVANCE(299); - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(35) - if (lookahead == ' ') ADVANCE(298); - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(149); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(133); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); + if (lookahead == '\n') ADVANCE(190); + if (lookahead == '\r') SKIP(3) + if (lookahead == '!') ADVANCE(200); + if (lookahead == '"') ADVANCE(201); + if (lookahead == '$') ADVANCE(166); + if (lookahead == '\'') ADVANCE(201); + if (lookahead == '*') ADVANCE(63); + if (lookahead == '-') ADVANCE(192); + if (lookahead == '.') ADVANCE(193); + if (lookahead == ':') ADVANCE(202); + if (lookahead == '<') ADVANCE(94); + if (lookahead == 'F') ADVANCE(194); + if (lookahead == 'I') ADVANCE(196); + if (lookahead == 'N') ADVANCE(197); + if (lookahead == 'T') ADVANCE(198); + if (lookahead == 'W') ADVANCE(195); + if (lookahead == 'X') ADVANCE(199); + if (lookahead == '[') ADVANCE(150); + if (lookahead == '\\') ADVANCE(79); + if (lookahead == ']') ADVANCE(124); + if (lookahead == '^') ADVANCE(67); + if (lookahead == '_') ADVANCE(58); + if (lookahead == '{') ADVANCE(52); + if (lookahead == '~') ADVANCE(71); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(189); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(301); + lookahead != '\f') ADVANCE(191); END_STATE(); case 5: - if (lookahead == '\t') ADVANCE(299); - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(38) - if (lookahead == ' ') ADVANCE(147); - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == '=') ADVANCE(313); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(134); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); + if (lookahead == '\n') ADVANCE(190); + if (lookahead == '\r') SKIP(8) + if (lookahead == '!') ADVANCE(200); + if (lookahead == '"') ADVANCE(201); + if (lookahead == '$') ADVANCE(166); + if (lookahead == '\'') ADVANCE(201); + if (lookahead == '*') ADVANCE(63); + if (lookahead == '-') ADVANCE(192); + if (lookahead == '.') ADVANCE(193); + if (lookahead == ':') ADVANCE(202); + if (lookahead == '<') ADVANCE(94); + if (lookahead == 'F') ADVANCE(194); + if (lookahead == 'I') ADVANCE(196); + if (lookahead == 'N') ADVANCE(197); + if (lookahead == 'T') ADVANCE(198); + if (lookahead == 'W') ADVANCE(195); + if (lookahead == 'X') ADVANCE(199); + if (lookahead == '[') ADVANCE(150); + if (lookahead == '\\') ADVANCE(79); + if (lookahead == ']') ADVANCE(152); + if (lookahead == '^') ADVANCE(67); + if (lookahead == '_') ADVANCE(58); + if (lookahead == '{') ADVANCE(159); + if (lookahead == '~') ADVANCE(71); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(189); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(301); + lookahead != '\f') ADVANCE(191); END_STATE(); case 6: - if (lookahead == '\t') ADVANCE(299); - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(41) - if (lookahead == ' ') ADVANCE(298); - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(149); - if (lookahead == '-') ADVANCE(233); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(239); - if (lookahead == 'I') ADVANCE(241); - if (lookahead == 'N') ADVANCE(242); - if (lookahead == 'T') ADVANCE(243); - if (lookahead == 'W') ADVANCE(238); - if (lookahead == 'X') ADVANCE(250); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(140); - if (lookahead == '{') ADVANCE(134); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); + if (lookahead == '\n') ADVANCE(190); + if (lookahead == '\r') SKIP(8) + if (lookahead == '!') ADVANCE(200); + if (lookahead == '"') ADVANCE(201); + if (lookahead == '$') ADVANCE(166); + if (lookahead == '\'') ADVANCE(201); + if (lookahead == '*') ADVANCE(63); + if (lookahead == '-') ADVANCE(192); + if (lookahead == '.') ADVANCE(193); + if (lookahead == ':') ADVANCE(202); + if (lookahead == '<') ADVANCE(94); + if (lookahead == 'F') ADVANCE(194); + if (lookahead == 'I') ADVANCE(196); + if (lookahead == 'N') ADVANCE(197); + if (lookahead == 'T') ADVANCE(198); + if (lookahead == 'W') ADVANCE(195); + if (lookahead == 'X') ADVANCE(199); + if (lookahead == '[') ADVANCE(150); + if (lookahead == '\\') ADVANCE(79); + if (lookahead == ']') ADVANCE(152); + if (lookahead == '^') ADVANCE(67); + if (lookahead == '_') ADVANCE(58); + if (lookahead == '{') ADVANCE(53); + if (lookahead == '~') ADVANCE(71); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(189); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(301); + lookahead != '\f') ADVANCE(191); END_STATE(); case 7: - if (lookahead == '\t') ADVANCE(299); - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(44) - if (lookahead == ' ') ADVANCE(147); - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '+') ADVANCE(312); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(134); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); + if (lookahead == '\n') ADVANCE(190); + if (lookahead == '\r') SKIP(8) + if (lookahead == '!') ADVANCE(200); + if (lookahead == '"') ADVANCE(201); + if (lookahead == '$') ADVANCE(166); + if (lookahead == '\'') ADVANCE(201); + if (lookahead == '*') ADVANCE(63); + if (lookahead == '-') ADVANCE(192); + if (lookahead == '.') ADVANCE(193); + if (lookahead == ':') ADVANCE(202); + if (lookahead == '<') ADVANCE(94); + if (lookahead == 'F') ADVANCE(194); + if (lookahead == 'I') ADVANCE(196); + if (lookahead == 'N') ADVANCE(197); + if (lookahead == 'T') ADVANCE(198); + if (lookahead == 'W') ADVANCE(195); + if (lookahead == 'X') ADVANCE(199); + if (lookahead == '[') ADVANCE(150); + if (lookahead == '\\') ADVANCE(79); + if (lookahead == ']') ADVANCE(152); + if (lookahead == '^') ADVANCE(67); + if (lookahead == '_') ADVANCE(58); + if (lookahead == '{') ADVANCE(52); + if (lookahead == '~') ADVANCE(71); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(189); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(301); + lookahead != '\f') ADVANCE(191); END_STATE(); case 8: - if (lookahead == '\t') ADVANCE(299); - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(51) - if (lookahead == ' ') ADVANCE(298); - if (lookahead == '!') ADVANCE(193); - if (lookahead == '"') ADVANCE(194); - if (lookahead == '$') ADVANCE(274); - if (lookahead == '\'') ADVANCE(194); - if (lookahead == '*') ADVANCE(150); - if (lookahead == '-') ADVANCE(172); - if (lookahead == '.') ADVANCE(174); - if (lookahead == ':') ADVANCE(175); - if (lookahead == '<') ADVANCE(170); - if (lookahead == '>') ADVANCE(301); - if (lookahead == 'F') ADVANCE(181); - if (lookahead == 'I') ADVANCE(183); - if (lookahead == 'N') ADVANCE(184); - if (lookahead == 'T') ADVANCE(185); - if (lookahead == 'W') ADVANCE(180); - if (lookahead == 'X') ADVANCE(192); - if (lookahead == '[') ADVANCE(258); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == '^') ADVANCE(217); - if (lookahead == '_') ADVANCE(141); - if (lookahead == '{') ADVANCE(135); - if (lookahead == '|') ADVANCE(294); - if (lookahead == '~') ADVANCE(225); + if (lookahead == '\n') ADVANCE(190); + if (lookahead == '\r') SKIP(8) + if (lookahead == '!') ADVANCE(200); + if (lookahead == '"') ADVANCE(201); + if (lookahead == '$') ADVANCE(166); + if (lookahead == '\'') ADVANCE(201); + if (lookahead == '*') ADVANCE(63); + if (lookahead == '-') ADVANCE(192); + if (lookahead == '.') ADVANCE(193); + if (lookahead == ':') ADVANCE(202); + if (lookahead == '<') ADVANCE(94); + if (lookahead == 'F') ADVANCE(194); + if (lookahead == 'I') ADVANCE(196); + if (lookahead == 'N') ADVANCE(197); + if (lookahead == 'T') ADVANCE(198); + if (lookahead == 'W') ADVANCE(195); + if (lookahead == 'X') ADVANCE(199); + if (lookahead == '[') ADVANCE(150); + if (lookahead == '\\') ADVANCE(79); + if (lookahead == '^') ADVANCE(67); + if (lookahead == '_') ADVANCE(58); + if (lookahead == '{') ADVANCE(159); + if (lookahead == '~') ADVANCE(71); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(197); + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(191); END_STATE(); case 9: - if (lookahead == '\t') ADVANCE(299); - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(61) - if (lookahead == ' ') ADVANCE(147); - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == ']') ADVANCE(230); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(134); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); + if (lookahead == '\n') ADVANCE(190); + if (lookahead == '\r') SKIP(10) + if (lookahead == '!') ADVANCE(200); + if (lookahead == '"') ADVANCE(201); + if (lookahead == '$') ADVANCE(166); + if (lookahead == '\'') ADVANCE(201); + if (lookahead == '*') ADVANCE(63); + if (lookahead == '-') ADVANCE(126); + if (lookahead == '.') ADVANCE(193); + if (lookahead == ':') ADVANCE(202); + if (lookahead == '<') ADVANCE(94); + if (lookahead == 'F') ADVANCE(132); + if (lookahead == 'I') ADVANCE(134); + if (lookahead == 'N') ADVANCE(135); + if (lookahead == 'T') ADVANCE(136); + if (lookahead == 'W') ADVANCE(131); + if (lookahead == 'X') ADVANCE(143); + if (lookahead == '[') ADVANCE(150); + if (lookahead == '\\') ADVANCE(79); + if (lookahead == ']') ADVANCE(152); + if (lookahead == '^') ADVANCE(67); + if (lookahead == '_') ADVANCE(59); + if (lookahead == '{') ADVANCE(53); + if (lookahead == '~') ADVANCE(71); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(189); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(301); + lookahead != '\f') ADVANCE(191); END_STATE(); case 10: - if (lookahead == '\t') ADVANCE(299); - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(66) - if (lookahead == ' ') ADVANCE(147); - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(303); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(134); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); + if (lookahead == '\n') ADVANCE(190); + if (lookahead == '\r') SKIP(10) + if (lookahead == '!') ADVANCE(200); + if (lookahead == '"') ADVANCE(201); + if (lookahead == '$') ADVANCE(166); + if (lookahead == '\'') ADVANCE(201); + if (lookahead == '*') ADVANCE(63); + if (lookahead == '-') ADVANCE(126); + if (lookahead == '.') ADVANCE(193); + if (lookahead == ':') ADVANCE(202); + if (lookahead == '<') ADVANCE(94); + if (lookahead == 'F') ADVANCE(132); + if (lookahead == 'I') ADVANCE(134); + if (lookahead == 'N') ADVANCE(135); + if (lookahead == 'T') ADVANCE(136); + if (lookahead == 'W') ADVANCE(131); + if (lookahead == 'X') ADVANCE(143); + if (lookahead == '[') ADVANCE(150); + if (lookahead == '\\') ADVANCE(79); + if (lookahead == '^') ADVANCE(67); + if (lookahead == '_') ADVANCE(59); + if (lookahead == '{') ADVANCE(159); + if (lookahead == '~') ADVANCE(71); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(301); + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(191); END_STATE(); case 11: - if (lookahead == '\t') ADVANCE(299); - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(77) - if (lookahead == ' ') ADVANCE(147); - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(215); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(134); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); + if (lookahead == '\n') ADVANCE(190); + if (lookahead == '\r') SKIP(11) + if (lookahead == '!') ADVANCE(200); + if (lookahead == '"') ADVANCE(201); + if (lookahead == '$') ADVANCE(166); + if (lookahead == '\'') ADVANCE(201); + if (lookahead == '*') ADVANCE(63); + if (lookahead == '-') ADVANCE(126); + if (lookahead == '.') ADVANCE(193); + if (lookahead == ':') ADVANCE(202); + if (lookahead == '<') ADVANCE(94); + if (lookahead == 'F') ADVANCE(132); + if (lookahead == 'I') ADVANCE(134); + if (lookahead == 'N') ADVANCE(135); + if (lookahead == 'T') ADVANCE(136); + if (lookahead == 'W') ADVANCE(131); + if (lookahead == 'X') ADVANCE(143); + if (lookahead == '[') ADVANCE(150); + if (lookahead == '\\') ADVANCE(79); + if (lookahead == ']') ADVANCE(124); + if (lookahead == '^') ADVANCE(67); + if (lookahead == '_') ADVANCE(59); + if (lookahead == '{') ADVANCE(159); + if (lookahead == '~') ADVANCE(71); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(301); + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(191); END_STATE(); case 12: - if (lookahead == '\t') ADVANCE(299); - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(90) - if (lookahead == ' ') ADVANCE(147); - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == ']') ADVANCE(259); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(134); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); + if (lookahead == '\n') ADVANCE(190); + if (lookahead == '\r') SKIP(11) + if (lookahead == '!') ADVANCE(200); + if (lookahead == '"') ADVANCE(201); + if (lookahead == '$') ADVANCE(166); + if (lookahead == '\'') ADVANCE(201); + if (lookahead == '*') ADVANCE(63); + if (lookahead == '-') ADVANCE(126); + if (lookahead == '.') ADVANCE(193); + if (lookahead == ':') ADVANCE(202); + if (lookahead == '<') ADVANCE(94); + if (lookahead == 'F') ADVANCE(132); + if (lookahead == 'I') ADVANCE(134); + if (lookahead == 'N') ADVANCE(135); + if (lookahead == 'T') ADVANCE(136); + if (lookahead == 'W') ADVANCE(131); + if (lookahead == 'X') ADVANCE(143); + if (lookahead == '[') ADVANCE(150); + if (lookahead == '\\') ADVANCE(79); + if (lookahead == ']') ADVANCE(124); + if (lookahead == '^') ADVANCE(67); + if (lookahead == '_') ADVANCE(59); + if (lookahead == '{') ADVANCE(53); + if (lookahead == '~') ADVANCE(71); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(189); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(301); + lookahead != '\f') ADVANCE(191); END_STATE(); case 13: - if (lookahead == '\t') ADVANCE(299); - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(90) - if (lookahead == ' ') ADVANCE(147); - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); + if (lookahead == '\n') ADVANCE(190); + if (lookahead == '\r') SKIP(14) + if (lookahead == '!') ADVANCE(117); + if (lookahead == '"') ADVANCE(118); + if (lookahead == '$') ADVANCE(167); + if (lookahead == '\'') ADVANCE(118); + if (lookahead == '*') ADVANCE(64); + if (lookahead == '-') ADVANCE(96); + if (lookahead == '.') ADVANCE(98); + if (lookahead == ':') ADVANCE(99); + if (lookahead == '<') ADVANCE(95); + if (lookahead == '>') ADVANCE(191); + if (lookahead == 'F') ADVANCE(105); + if (lookahead == 'I') ADVANCE(107); + if (lookahead == 'N') ADVANCE(108); + if (lookahead == 'T') ADVANCE(109); + if (lookahead == 'W') ADVANCE(104); + if (lookahead == 'X') ADVANCE(116); + if (lookahead == '[') ADVANCE(151); + if (lookahead == '\\') ADVANCE(80); + if (lookahead == ']') ADVANCE(153); + if (lookahead == '^') ADVANCE(68); + if (lookahead == '_') ADVANCE(60); + if (lookahead == '{') ADVANCE(54); + if (lookahead == '~') ADVANCE(72); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(189); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(301); + lookahead != '\f') ADVANCE(119); END_STATE(); case 14: - if (lookahead == '\t') ADVANCE(299); - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(95) - if (lookahead == ' ') ADVANCE(145); - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(149); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(134); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); + if (lookahead == '\n') ADVANCE(190); + if (lookahead == '\r') SKIP(14) + if (lookahead == '!') ADVANCE(117); + if (lookahead == '"') ADVANCE(118); + if (lookahead == '$') ADVANCE(167); + if (lookahead == '\'') ADVANCE(118); + if (lookahead == '*') ADVANCE(64); + if (lookahead == '-') ADVANCE(96); + if (lookahead == '.') ADVANCE(98); + if (lookahead == ':') ADVANCE(99); + if (lookahead == '<') ADVANCE(95); + if (lookahead == '>') ADVANCE(191); + if (lookahead == 'F') ADVANCE(105); + if (lookahead == 'I') ADVANCE(107); + if (lookahead == 'N') ADVANCE(108); + if (lookahead == 'T') ADVANCE(109); + if (lookahead == 'W') ADVANCE(104); + if (lookahead == 'X') ADVANCE(116); + if (lookahead == '[') ADVANCE(151); + if (lookahead == '\\') ADVANCE(80); + if (lookahead == '^') ADVANCE(68); + if (lookahead == '_') ADVANCE(60); + if (lookahead == '{') ADVANCE(160); + if (lookahead == '~') ADVANCE(72); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(301); + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(119); END_STATE(); case 15: - if (lookahead == '\t') ADVANCE(299); - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(96) - if (lookahead == ' ') ADVANCE(147); - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(134); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(223); + if (lookahead == '\n') ADVANCE(190); + if (lookahead == '\r') SKIP(16) + if (lookahead == '!') ADVANCE(117); + if (lookahead == '"') ADVANCE(118); + if (lookahead == '$') ADVANCE(167); + if (lookahead == '\'') ADVANCE(118); + if (lookahead == '*') ADVANCE(64); + if (lookahead == '-') ADVANCE(96); + if (lookahead == '.') ADVANCE(98); + if (lookahead == ':') ADVANCE(99); + if (lookahead == '<') ADVANCE(95); + if (lookahead == '>') ADVANCE(191); + if (lookahead == 'F') ADVANCE(105); + if (lookahead == 'I') ADVANCE(107); + if (lookahead == 'N') ADVANCE(108); + if (lookahead == 'T') ADVANCE(109); + if (lookahead == 'W') ADVANCE(104); + if (lookahead == 'X') ADVANCE(116); + if (lookahead == '[') ADVANCE(151); + if (lookahead == '\\') ADVANCE(80); + if (lookahead == ']') ADVANCE(125); + if (lookahead == '^') ADVANCE(68); + if (lookahead == '_') ADVANCE(60); + if (lookahead == '{') ADVANCE(54); + if (lookahead == '~') ADVANCE(72); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(189); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(301); + lookahead != '\f') ADVANCE(119); END_STATE(); case 16: - if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\n') ADVANCE(190); if (lookahead == '\r') SKIP(16) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == ']') ADVANCE(230); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(223); + if (lookahead == '!') ADVANCE(117); + if (lookahead == '"') ADVANCE(118); + if (lookahead == '$') ADVANCE(167); + if (lookahead == '\'') ADVANCE(118); + if (lookahead == '*') ADVANCE(64); + if (lookahead == '-') ADVANCE(96); + if (lookahead == '.') ADVANCE(98); + if (lookahead == ':') ADVANCE(99); + if (lookahead == '<') ADVANCE(95); + if (lookahead == '>') ADVANCE(191); + if (lookahead == 'F') ADVANCE(105); + if (lookahead == 'I') ADVANCE(107); + if (lookahead == 'N') ADVANCE(108); + if (lookahead == 'T') ADVANCE(109); + if (lookahead == 'W') ADVANCE(104); + if (lookahead == 'X') ADVANCE(116); + if (lookahead == '[') ADVANCE(151); + if (lookahead == '\\') ADVANCE(80); + if (lookahead == ']') ADVANCE(125); + if (lookahead == '^') ADVANCE(68); + if (lookahead == '_') ADVANCE(60); + if (lookahead == '{') ADVANCE(160); + if (lookahead == '~') ADVANCE(72); if (lookahead != 0 && (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(301); + lookahead != ' ') ADVANCE(119); END_STATE(); case 17: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(16) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == ']') ADVANCE(230); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(134); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(223); + if (lookahead == '\n') ADVANCE(190); + if (lookahead == '\r') SKIP(18) + if (lookahead == '"') ADVANCE(207); + if (lookahead == '#') ADVANCE(37); + if (lookahead == '%') ADVANCE(161); + if (lookahead == '(') ADVANCE(154); + if (lookahead == ')') ADVANCE(157); + if (lookahead == '.') ADVANCE(203); + if (lookahead == '=') ADVANCE(206); + if (lookahead == '>') ADVANCE(120); + if (lookahead == '[') ADVANCE(149); + if (lookahead == '{') ADVANCE(50); + if (lookahead == '}') ADVANCE(55); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); - if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(301); + lookahead == ' ') ADVANCE(189); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); END_STATE(); case 18: - if (lookahead == '\n') ADVANCE(300); + if (lookahead == '\n') ADVANCE(190); if (lookahead == '\r') SKIP(18) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '+') ADVANCE(312); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == ']') ADVANCE(230); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(301); + if (lookahead == '"') ADVANCE(207); + if (lookahead == '#') ADVANCE(37); + if (lookahead == '%') ADVANCE(161); + if (lookahead == '(') ADVANCE(154); + if (lookahead == ')') ADVANCE(157); + if (lookahead == '.') ADVANCE(203); + if (lookahead == '=') ADVANCE(206); + if (lookahead == '>') ADVANCE(120); + if (lookahead == '[') ADVANCE(148); + if (lookahead == '}') ADVANCE(55); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); END_STATE(); case 19: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(18) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '+') ADVANCE(312); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == ']') ADVANCE(230); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(134); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); - if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(301); + if (lookahead == '\n') ADVANCE(190); + if (lookahead == '\r') ADVANCE(163); + if (lookahead == '%') ADVANCE(161); + if (lookahead == '\\') ADVANCE(164); + if (lookahead != 0) ADVANCE(162); END_STATE(); case 20: - if (lookahead == '\n') ADVANCE(300); if (lookahead == '\r') SKIP(20) - if (lookahead == ' ') ADVANCE(101); - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(149); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == ']') ADVANCE(230); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(301); + if (lookahead == '"') ADVANCE(207); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); END_STATE(); case 21: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(21) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == '=') ADVANCE(313); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == ']') ADVANCE(230); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); + if (lookahead == '\r') ADVANCE(155); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(301); + lookahead != '\n' && + lookahead != ')') ADVANCE(156); END_STATE(); case 22: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(21) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == '=') ADVANCE(313); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == ']') ADVANCE(230); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(134); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); + if (lookahead == '\r') ADVANCE(186); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(301); + lookahead != '\t' && + lookahead != '\n' && + lookahead != ' ' && + lookahead != '=' && + lookahead != '{' && + lookahead != '}') ADVANCE(187); END_STATE(); case 23: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(24) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(223); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); + if (lookahead == '\r') ADVANCE(208); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(301); + lookahead != '\n' && + lookahead != '"') ADVANCE(209); END_STATE(); case 24: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(24) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(223); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(301); + if (lookahead == '.') ADVANCE(84); END_STATE(); case 25: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(24) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(134); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(223); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); + if (lookahead == ':') ADVANCE(121); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(301); + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ') ADVANCE(25); END_STATE(); case 26: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(24) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(133); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(223); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); - if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(301); + if (lookahead == 'D') ADVANCE(32); END_STATE(); case 27: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(28) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '+') ADVANCE(312); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); - if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(301); + if (lookahead == 'E') ADVANCE(174); END_STATE(); case 28: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(28) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '+') ADVANCE(312); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(301); + if (lookahead == 'E') ADVANCE(183); END_STATE(); case 29: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(28) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '+') ADVANCE(312); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(134); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); - if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(301); + if (lookahead == 'F') ADVANCE(31); END_STATE(); case 30: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(28) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '+') ADVANCE(312); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(133); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); - if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(301); + if (lookahead == 'M') ADVANCE(28); END_STATE(); case 31: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(32) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == '=') ADVANCE(313); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); - if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(301); + if (lookahead == 'O') ADVANCE(177); END_STATE(); case 32: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(32) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == '=') ADVANCE(313); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(301); + if (lookahead == 'O') ADVANCE(168); END_STATE(); case 33: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(32) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == '=') ADVANCE(313); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(134); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); - if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(301); + if (lookahead == 'P') ADVANCE(171); END_STATE(); case 34: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(32) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == '=') ADVANCE(313); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(133); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); - if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(301); + if (lookahead == 'T') ADVANCE(27); END_STATE(); case 35: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(35) - if (lookahead == ' ') ADVANCE(101); - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(149); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(301); + if (lookahead == 'X') ADVANCE(30); END_STATE(); case 36: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(36) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(233); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(239); - if (lookahead == 'I') ADVANCE(241); - if (lookahead == 'N') ADVANCE(242); - if (lookahead == 'T') ADVANCE(243); - if (lookahead == 'W') ADVANCE(238); - if (lookahead == 'X') ADVANCE(250); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == ']') ADVANCE(230); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(140); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(301); + if (lookahead == 'X') ADVANCE(180); END_STATE(); case 37: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(36) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(233); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(239); - if (lookahead == 'I') ADVANCE(241); - if (lookahead == 'N') ADVANCE(242); - if (lookahead == 'T') ADVANCE(243); - if (lookahead == 'W') ADVANCE(238); - if (lookahead == 'X') ADVANCE(250); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == ']') ADVANCE(230); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(140); - if (lookahead == '{') ADVANCE(134); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(301); + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '}') ADVANCE(205); END_STATE(); case 38: - if (lookahead == '\n') ADVANCE(300); + if (eof) ADVANCE(49); + if (lookahead == '\n') ADVANCE(190); if (lookahead == '\r') SKIP(38) - if (lookahead == ' ') ADVANCE(144); - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == '=') ADVANCE(313); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); + if (lookahead == '!') ADVANCE(200); + if (lookahead == '"') ADVANCE(207); + if (lookahead == '$') ADVANCE(166); + if (lookahead == '%') ADVANCE(161); + if (lookahead == '(') ADVANCE(154); + if (lookahead == ')') ADVANCE(157); + if (lookahead == '*') ADVANCE(63); + if (lookahead == '-') ADVANCE(126); + if (lookahead == '.') ADVANCE(204); + if (lookahead == ':') ADVANCE(202); + if (lookahead == '<') ADVANCE(94); + if (lookahead == '=') ADVANCE(206); + if (lookahead == '>') ADVANCE(120); + if (lookahead == 'F') ADVANCE(132); + if (lookahead == 'I') ADVANCE(134); + if (lookahead == 'N') ADVANCE(135); + if (lookahead == 'T') ADVANCE(136); + if (lookahead == 'W') ADVANCE(131); + if (lookahead == 'X') ADVANCE(143); + if (lookahead == '[') ADVANCE(150); + if (lookahead == '\\') ADVANCE(81); + if (lookahead == ']') ADVANCE(124); + if (lookahead == '^') ADVANCE(67); + if (lookahead == '_') ADVANCE(59); + if (lookahead == '{') ADVANCE(158); + if (lookahead == '}') ADVANCE(55); + if (lookahead == '~') ADVANCE(71); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(301); + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(191); END_STATE(); case 39: - if (lookahead == '\n') ADVANCE(300); + if (eof) ADVANCE(49); + if (lookahead == '\n') ADVANCE(190); if (lookahead == '\r') SKIP(40) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(233); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(239); - if (lookahead == 'I') ADVANCE(241); - if (lookahead == 'N') ADVANCE(242); - if (lookahead == 'T') ADVANCE(243); - if (lookahead == 'W') ADVANCE(238); - if (lookahead == 'X') ADVANCE(250); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == ']') ADVANCE(259); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(140); - if (lookahead == '{') ADVANCE(134); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); + if (lookahead == '!') ADVANCE(200); + if (lookahead == '"') ADVANCE(201); + if (lookahead == '$') ADVANCE(166); + if (lookahead == '\'') ADVANCE(201); + if (lookahead == '*') ADVANCE(63); + if (lookahead == '-') ADVANCE(192); + if (lookahead == '.') ADVANCE(193); + if (lookahead == ':') ADVANCE(202); + if (lookahead == '<') ADVANCE(94); + if (lookahead == 'F') ADVANCE(194); + if (lookahead == 'I') ADVANCE(196); + if (lookahead == 'N') ADVANCE(197); + if (lookahead == 'T') ADVANCE(198); + if (lookahead == 'W') ADVANCE(195); + if (lookahead == 'X') ADVANCE(199); + if (lookahead == '[') ADVANCE(150); + if (lookahead == '\\') ADVANCE(79); + if (lookahead == '^') ADVANCE(67); + if (lookahead == '_') ADVANCE(58); + if (lookahead == '{') ADVANCE(159); + if (lookahead == '~') ADVANCE(71); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); + lookahead == ' ') ADVANCE(189); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(301); + lookahead != '\f') ADVANCE(191); END_STATE(); case 40: - if (lookahead == '\n') ADVANCE(300); + if (eof) ADVANCE(49); + if (lookahead == '\n') ADVANCE(190); if (lookahead == '\r') SKIP(40) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(233); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(239); - if (lookahead == 'I') ADVANCE(241); - if (lookahead == 'N') ADVANCE(242); - if (lookahead == 'T') ADVANCE(243); - if (lookahead == 'W') ADVANCE(238); - if (lookahead == 'X') ADVANCE(250); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(140); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); + if (lookahead == '!') ADVANCE(200); + if (lookahead == '"') ADVANCE(201); + if (lookahead == '$') ADVANCE(166); + if (lookahead == '\'') ADVANCE(201); + if (lookahead == '*') ADVANCE(63); + if (lookahead == '-') ADVANCE(192); + if (lookahead == '.') ADVANCE(193); + if (lookahead == ':') ADVANCE(202); + if (lookahead == '<') ADVANCE(94); + if (lookahead == 'F') ADVANCE(194); + if (lookahead == 'I') ADVANCE(196); + if (lookahead == 'N') ADVANCE(197); + if (lookahead == 'T') ADVANCE(198); + if (lookahead == 'W') ADVANCE(195); + if (lookahead == 'X') ADVANCE(199); + if (lookahead == '[') ADVANCE(150); + if (lookahead == '\\') ADVANCE(79); + if (lookahead == '^') ADVANCE(67); + if (lookahead == '_') ADVANCE(58); + if (lookahead == '{') ADVANCE(159); + if (lookahead == '~') ADVANCE(71); if (lookahead != 0 && (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(301); + lookahead != ' ') ADVANCE(191); END_STATE(); case 41: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(41) - if (lookahead == ' ') ADVANCE(101); - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(149); - if (lookahead == '-') ADVANCE(233); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(239); - if (lookahead == 'I') ADVANCE(241); - if (lookahead == 'N') ADVANCE(242); - if (lookahead == 'T') ADVANCE(243); - if (lookahead == 'W') ADVANCE(238); - if (lookahead == 'X') ADVANCE(250); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(140); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); + if (eof) ADVANCE(49); + if (lookahead == '\n') ADVANCE(190); + if (lookahead == '\r') SKIP(40) + if (lookahead == '!') ADVANCE(200); + if (lookahead == '"') ADVANCE(201); + if (lookahead == '$') ADVANCE(166); + if (lookahead == '\'') ADVANCE(201); + if (lookahead == '*') ADVANCE(63); + if (lookahead == '-') ADVANCE(192); + if (lookahead == '.') ADVANCE(193); + if (lookahead == ':') ADVANCE(202); + if (lookahead == '<') ADVANCE(94); + if (lookahead == 'F') ADVANCE(194); + if (lookahead == 'I') ADVANCE(196); + if (lookahead == 'N') ADVANCE(197); + if (lookahead == 'T') ADVANCE(198); + if (lookahead == 'W') ADVANCE(195); + if (lookahead == 'X') ADVANCE(199); + if (lookahead == '[') ADVANCE(150); + if (lookahead == '\\') ADVANCE(79); + if (lookahead == '^') ADVANCE(67); + if (lookahead == '_') ADVANCE(58); + if (lookahead == '{') ADVANCE(53); + if (lookahead == '~') ADVANCE(71); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(189); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(301); + lookahead != 11 && + lookahead != '\f') ADVANCE(191); END_STATE(); case 42: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(42) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '+') ADVANCE(312); - if (lookahead == '-') ADVANCE(233); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(239); - if (lookahead == 'I') ADVANCE(241); - if (lookahead == 'N') ADVANCE(242); - if (lookahead == 'T') ADVANCE(243); - if (lookahead == 'W') ADVANCE(238); - if (lookahead == 'X') ADVANCE(250); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(140); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); + if (eof) ADVANCE(49); + if (lookahead == '\n') ADVANCE(190); + if (lookahead == '\r') SKIP(40) + if (lookahead == '!') ADVANCE(200); + if (lookahead == '"') ADVANCE(201); + if (lookahead == '$') ADVANCE(166); + if (lookahead == '\'') ADVANCE(201); + if (lookahead == '*') ADVANCE(63); + if (lookahead == '-') ADVANCE(192); + if (lookahead == '.') ADVANCE(193); + if (lookahead == ':') ADVANCE(202); + if (lookahead == '<') ADVANCE(94); + if (lookahead == 'F') ADVANCE(194); + if (lookahead == 'I') ADVANCE(196); + if (lookahead == 'N') ADVANCE(197); + if (lookahead == 'T') ADVANCE(198); + if (lookahead == 'W') ADVANCE(195); + if (lookahead == 'X') ADVANCE(199); + if (lookahead == '[') ADVANCE(150); + if (lookahead == '\\') ADVANCE(79); + if (lookahead == '^') ADVANCE(67); + if (lookahead == '_') ADVANCE(58); + if (lookahead == '{') ADVANCE(52); + if (lookahead == '~') ADVANCE(71); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(189); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(301); + lookahead != 11 && + lookahead != '\f') ADVANCE(191); END_STATE(); case 43: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(42) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '+') ADVANCE(312); - if (lookahead == '-') ADVANCE(233); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(239); - if (lookahead == 'I') ADVANCE(241); - if (lookahead == 'N') ADVANCE(242); - if (lookahead == 'T') ADVANCE(243); - if (lookahead == 'W') ADVANCE(238); - if (lookahead == 'X') ADVANCE(250); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(140); - if (lookahead == '{') ADVANCE(134); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); + if (eof) ADVANCE(49); + if (lookahead == '\n') ADVANCE(190); + if (lookahead == '\r') SKIP(43) + if (lookahead == '!') ADVANCE(200); + if (lookahead == '"') ADVANCE(201); + if (lookahead == '$') ADVANCE(166); + if (lookahead == '\'') ADVANCE(201); + if (lookahead == '*') ADVANCE(63); + if (lookahead == '-') ADVANCE(192); + if (lookahead == '.') ADVANCE(193); + if (lookahead == ':') ADVANCE(202); + if (lookahead == '<') ADVANCE(94); + if (lookahead == 'F') ADVANCE(194); + if (lookahead == 'I') ADVANCE(196); + if (lookahead == 'N') ADVANCE(197); + if (lookahead == 'T') ADVANCE(198); + if (lookahead == 'W') ADVANCE(195); + if (lookahead == 'X') ADVANCE(199); + if (lookahead == '[') ADVANCE(150); + if (lookahead == '\\') ADVANCE(79); + if (lookahead == ']') ADVANCE(124); + if (lookahead == '^') ADVANCE(67); + if (lookahead == '_') ADVANCE(58); + if (lookahead == '{') ADVANCE(159); + if (lookahead == '~') ADVANCE(71); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(301); + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(191); END_STATE(); case 44: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(44) - if (lookahead == ' ') ADVANCE(144); - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '+') ADVANCE(312); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); + if (eof) ADVANCE(49); + if (lookahead == '\n') ADVANCE(190); + if (lookahead == '\r') SKIP(43) + if (lookahead == '!') ADVANCE(200); + if (lookahead == '"') ADVANCE(201); + if (lookahead == '$') ADVANCE(166); + if (lookahead == '\'') ADVANCE(201); + if (lookahead == '*') ADVANCE(63); + if (lookahead == '-') ADVANCE(192); + if (lookahead == '.') ADVANCE(193); + if (lookahead == ':') ADVANCE(202); + if (lookahead == '<') ADVANCE(94); + if (lookahead == 'F') ADVANCE(194); + if (lookahead == 'I') ADVANCE(196); + if (lookahead == 'N') ADVANCE(197); + if (lookahead == 'T') ADVANCE(198); + if (lookahead == 'W') ADVANCE(195); + if (lookahead == 'X') ADVANCE(199); + if (lookahead == '[') ADVANCE(150); + if (lookahead == '\\') ADVANCE(79); + if (lookahead == ']') ADVANCE(124); + if (lookahead == '^') ADVANCE(67); + if (lookahead == '_') ADVANCE(58); + if (lookahead == '{') ADVANCE(53); + if (lookahead == '~') ADVANCE(71); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(189); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(301); + lookahead != 11 && + lookahead != '\f') ADVANCE(191); END_STATE(); case 45: - if (lookahead == '\n') ADVANCE(300); + if (eof) ADVANCE(49); + if (lookahead == '\n') ADVANCE(190); if (lookahead == '\r') SKIP(45) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(233); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == '=') ADVANCE(313); - if (lookahead == 'F') ADVANCE(239); - if (lookahead == 'I') ADVANCE(241); - if (lookahead == 'N') ADVANCE(242); - if (lookahead == 'T') ADVANCE(243); - if (lookahead == 'W') ADVANCE(238); - if (lookahead == 'X') ADVANCE(250); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(140); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); + if (lookahead == '!') ADVANCE(200); + if (lookahead == '"') ADVANCE(201); + if (lookahead == '$') ADVANCE(166); + if (lookahead == '\'') ADVANCE(201); + if (lookahead == '*') ADVANCE(63); + if (lookahead == '-') ADVANCE(126); + if (lookahead == '.') ADVANCE(193); + if (lookahead == ':') ADVANCE(202); + if (lookahead == '<') ADVANCE(94); + if (lookahead == 'F') ADVANCE(132); + if (lookahead == 'I') ADVANCE(134); + if (lookahead == 'N') ADVANCE(135); + if (lookahead == 'T') ADVANCE(136); + if (lookahead == 'W') ADVANCE(131); + if (lookahead == 'X') ADVANCE(143); + if (lookahead == '[') ADVANCE(150); + if (lookahead == '\\') ADVANCE(79); + if (lookahead == '^') ADVANCE(67); + if (lookahead == '_') ADVANCE(59); + if (lookahead == '{') ADVANCE(159); + if (lookahead == '~') ADVANCE(71); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); if (lookahead != 0 && (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(301); + lookahead != ' ') ADVANCE(191); END_STATE(); case 46: - if (lookahead == '\n') ADVANCE(300); + if (eof) ADVANCE(49); + if (lookahead == '\n') ADVANCE(190); if (lookahead == '\r') SKIP(45) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(233); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == '=') ADVANCE(313); - if (lookahead == 'F') ADVANCE(239); - if (lookahead == 'I') ADVANCE(241); - if (lookahead == 'N') ADVANCE(242); - if (lookahead == 'T') ADVANCE(243); - if (lookahead == 'W') ADVANCE(238); - if (lookahead == 'X') ADVANCE(250); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(140); - if (lookahead == '{') ADVANCE(134); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); + if (lookahead == '!') ADVANCE(200); + if (lookahead == '"') ADVANCE(201); + if (lookahead == '$') ADVANCE(166); + if (lookahead == '\'') ADVANCE(201); + if (lookahead == '*') ADVANCE(63); + if (lookahead == '-') ADVANCE(126); + if (lookahead == '.') ADVANCE(193); + if (lookahead == ':') ADVANCE(202); + if (lookahead == '<') ADVANCE(94); + if (lookahead == 'F') ADVANCE(132); + if (lookahead == 'I') ADVANCE(134); + if (lookahead == 'N') ADVANCE(135); + if (lookahead == 'T') ADVANCE(136); + if (lookahead == 'W') ADVANCE(131); + if (lookahead == 'X') ADVANCE(143); + if (lookahead == '[') ADVANCE(150); + if (lookahead == '\\') ADVANCE(79); + if (lookahead == '^') ADVANCE(67); + if (lookahead == '_') ADVANCE(59); + if (lookahead == '{') ADVANCE(53); + if (lookahead == '~') ADVANCE(71); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); + lookahead == ' ') ADVANCE(189); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(301); + lookahead != '\f') ADVANCE(191); END_STATE(); case 47: - if (lookahead == '\n') ADVANCE(300); + if (eof) ADVANCE(49); + if (lookahead == '\n') ADVANCE(190); if (lookahead == '\r') SKIP(48) - if (lookahead == '!') ADVANCE(193); - if (lookahead == '"') ADVANCE(194); - if (lookahead == '$') ADVANCE(274); - if (lookahead == '\'') ADVANCE(194); - if (lookahead == '*') ADVANCE(151); - if (lookahead == '-') ADVANCE(172); - if (lookahead == '.') ADVANCE(174); - if (lookahead == ':') ADVANCE(175); - if (lookahead == '<') ADVANCE(170); - if (lookahead == '>') ADVANCE(301); - if (lookahead == 'F') ADVANCE(181); - if (lookahead == 'I') ADVANCE(183); - if (lookahead == 'N') ADVANCE(184); - if (lookahead == 'T') ADVANCE(185); - if (lookahead == 'W') ADVANCE(180); - if (lookahead == 'X') ADVANCE(192); - if (lookahead == '[') ADVANCE(258); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == '^') ADVANCE(216); - if (lookahead == '_') ADVANCE(141); - if (lookahead == '{') ADVANCE(135); - if (lookahead == '|') ADVANCE(294); - if (lookahead == '~') ADVANCE(225); + if (lookahead == '!') ADVANCE(117); + if (lookahead == '"') ADVANCE(118); + if (lookahead == '$') ADVANCE(167); + if (lookahead == '\'') ADVANCE(118); + if (lookahead == '*') ADVANCE(64); + if (lookahead == '-') ADVANCE(96); + if (lookahead == '.') ADVANCE(98); + if (lookahead == ':') ADVANCE(99); + if (lookahead == '<') ADVANCE(95); + if (lookahead == '>') ADVANCE(191); + if (lookahead == 'F') ADVANCE(105); + if (lookahead == 'I') ADVANCE(107); + if (lookahead == 'N') ADVANCE(108); + if (lookahead == 'T') ADVANCE(109); + if (lookahead == 'W') ADVANCE(104); + if (lookahead == 'X') ADVANCE(116); + if (lookahead == '[') ADVANCE(151); + if (lookahead == '\\') ADVANCE(80); + if (lookahead == '^') ADVANCE(68); + if (lookahead == '_') ADVANCE(60); + if (lookahead == '{') ADVANCE(54); + if (lookahead == '~') ADVANCE(72); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); + lookahead == ' ') ADVANCE(189); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(197); + lookahead != '\f') ADVANCE(119); END_STATE(); case 48: - if (lookahead == '\n') ADVANCE(300); + if (eof) ADVANCE(49); + if (lookahead == '\n') ADVANCE(190); if (lookahead == '\r') SKIP(48) - if (lookahead == '!') ADVANCE(193); - if (lookahead == '"') ADVANCE(194); - if (lookahead == '$') ADVANCE(274); - if (lookahead == '\'') ADVANCE(194); - if (lookahead == '*') ADVANCE(151); - if (lookahead == '-') ADVANCE(172); - if (lookahead == '.') ADVANCE(174); - if (lookahead == ':') ADVANCE(175); - if (lookahead == '<') ADVANCE(170); - if (lookahead == '>') ADVANCE(301); - if (lookahead == 'F') ADVANCE(181); - if (lookahead == 'I') ADVANCE(183); - if (lookahead == 'N') ADVANCE(184); - if (lookahead == 'T') ADVANCE(185); - if (lookahead == 'W') ADVANCE(180); - if (lookahead == 'X') ADVANCE(192); - if (lookahead == '[') ADVANCE(258); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == '^') ADVANCE(216); - if (lookahead == '_') ADVANCE(141); - if (lookahead == '{') ADVANCE(267); - if (lookahead == '|') ADVANCE(294); - if (lookahead == '~') ADVANCE(225); + if (lookahead == '!') ADVANCE(117); + if (lookahead == '"') ADVANCE(118); + if (lookahead == '$') ADVANCE(167); + if (lookahead == '\'') ADVANCE(118); + if (lookahead == '*') ADVANCE(64); + if (lookahead == '-') ADVANCE(96); + if (lookahead == '.') ADVANCE(98); + if (lookahead == ':') ADVANCE(99); + if (lookahead == '<') ADVANCE(95); + if (lookahead == '>') ADVANCE(191); + if (lookahead == 'F') ADVANCE(105); + if (lookahead == 'I') ADVANCE(107); + if (lookahead == 'N') ADVANCE(108); + if (lookahead == 'T') ADVANCE(109); + if (lookahead == 'W') ADVANCE(104); + if (lookahead == 'X') ADVANCE(116); + if (lookahead == '[') ADVANCE(151); + if (lookahead == '\\') ADVANCE(80); + if (lookahead == '^') ADVANCE(68); + if (lookahead == '_') ADVANCE(60); + if (lookahead == '{') ADVANCE(160); + if (lookahead == '~') ADVANCE(72); if (lookahead != 0 && (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(197); + lookahead != ' ') ADVANCE(119); END_STATE(); case 49: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(50) - if (lookahead == '!') ADVANCE(193); - if (lookahead == '"') ADVANCE(194); - if (lookahead == '$') ADVANCE(274); - if (lookahead == '\'') ADVANCE(194); - if (lookahead == '*') ADVANCE(151); - if (lookahead == '+') ADVANCE(195); - if (lookahead == '-') ADVANCE(172); - if (lookahead == '.') ADVANCE(174); - if (lookahead == ':') ADVANCE(175); - if (lookahead == '<') ADVANCE(170); - if (lookahead == '>') ADVANCE(301); - if (lookahead == 'F') ADVANCE(181); - if (lookahead == 'I') ADVANCE(183); - if (lookahead == 'N') ADVANCE(184); - if (lookahead == 'T') ADVANCE(185); - if (lookahead == 'W') ADVANCE(180); - if (lookahead == 'X') ADVANCE(192); - if (lookahead == '[') ADVANCE(258); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == '^') ADVANCE(217); - if (lookahead == '_') ADVANCE(141); - if (lookahead == '{') ADVANCE(135); - if (lookahead == '|') ADVANCE(294); - if (lookahead == '~') ADVANCE(225); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); - if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(197); + ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); case 50: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(50) - if (lookahead == '!') ADVANCE(193); - if (lookahead == '"') ADVANCE(194); - if (lookahead == '$') ADVANCE(274); - if (lookahead == '\'') ADVANCE(194); - if (lookahead == '*') ADVANCE(151); - if (lookahead == '+') ADVANCE(195); - if (lookahead == '-') ADVANCE(172); - if (lookahead == '.') ADVANCE(174); - if (lookahead == ':') ADVANCE(175); - if (lookahead == '<') ADVANCE(170); - if (lookahead == '>') ADVANCE(301); - if (lookahead == 'F') ADVANCE(181); - if (lookahead == 'I') ADVANCE(183); - if (lookahead == 'N') ADVANCE(184); - if (lookahead == 'T') ADVANCE(185); - if (lookahead == 'W') ADVANCE(180); - if (lookahead == 'X') ADVANCE(192); - if (lookahead == '[') ADVANCE(258); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == '^') ADVANCE(217); - if (lookahead == '_') ADVANCE(141); - if (lookahead == '{') ADVANCE(267); - if (lookahead == '|') ADVANCE(294); - if (lookahead == '~') ADVANCE(225); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(197); + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 51: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(51) - if (lookahead == ' ') ADVANCE(101); - if (lookahead == '!') ADVANCE(193); - if (lookahead == '"') ADVANCE(194); - if (lookahead == '$') ADVANCE(274); - if (lookahead == '\'') ADVANCE(194); - if (lookahead == '*') ADVANCE(150); - if (lookahead == '-') ADVANCE(172); - if (lookahead == '.') ADVANCE(174); - if (lookahead == ':') ADVANCE(175); - if (lookahead == '<') ADVANCE(170); - if (lookahead == '>') ADVANCE(301); - if (lookahead == 'F') ADVANCE(181); - if (lookahead == 'I') ADVANCE(183); - if (lookahead == 'N') ADVANCE(184); - if (lookahead == 'T') ADVANCE(185); - if (lookahead == 'W') ADVANCE(180); - if (lookahead == 'X') ADVANCE(192); - if (lookahead == '[') ADVANCE(258); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == '^') ADVANCE(217); - if (lookahead == '_') ADVANCE(141); - if (lookahead == '{') ADVANCE(267); - if (lookahead == '|') ADVANCE(294); - if (lookahead == '~') ADVANCE(225); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(197); + ACCEPT_TOKEN(anon_sym_LBRACE); + if (lookahead == '*') ADVANCE(61); + if (lookahead == '+') ADVANCE(75); + if (lookahead == '-') ADVANCE(77); + if (lookahead == '=') ADVANCE(165); + if (lookahead == '^') ADVANCE(65); + if (lookahead == '_') ADVANCE(56); + if (lookahead == '~') ADVANCE(69); END_STATE(); case 52: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(53) - if (lookahead == '!') ADVANCE(193); - if (lookahead == '"') ADVANCE(194); - if (lookahead == '$') ADVANCE(274); - if (lookahead == '\'') ADVANCE(194); - if (lookahead == '*') ADVANCE(151); - if (lookahead == '-') ADVANCE(172); - if (lookahead == '.') ADVANCE(174); - if (lookahead == ':') ADVANCE(175); - if (lookahead == '<') ADVANCE(170); - if (lookahead == '>') ADVANCE(301); - if (lookahead == 'F') ADVANCE(181); - if (lookahead == 'I') ADVANCE(183); - if (lookahead == 'N') ADVANCE(184); - if (lookahead == 'T') ADVANCE(185); - if (lookahead == 'W') ADVANCE(180); - if (lookahead == 'X') ADVANCE(192); - if (lookahead == '[') ADVANCE(258); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == ']') ADVANCE(231); - if (lookahead == '^') ADVANCE(217); - if (lookahead == '_') ADVANCE(141); - if (lookahead == '{') ADVANCE(135); - if (lookahead == '|') ADVANCE(294); - if (lookahead == '~') ADVANCE(225); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); - if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(197); + ACCEPT_TOKEN(anon_sym_LBRACE); + if (lookahead == '"' || + lookahead == '\'') ADVANCE(82); + if (lookahead == '*') ADVANCE(61); + if (lookahead == '+') ADVANCE(75); + if (lookahead == '-') ADVANCE(77); + if (lookahead == '=') ADVANCE(165); + if (lookahead == '^') ADVANCE(65); + if (lookahead == '_') ADVANCE(56); + if (lookahead == '~') ADVANCE(69); END_STATE(); case 53: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(53) - if (lookahead == '!') ADVANCE(193); - if (lookahead == '"') ADVANCE(194); - if (lookahead == '$') ADVANCE(274); - if (lookahead == '\'') ADVANCE(194); - if (lookahead == '*') ADVANCE(151); - if (lookahead == '-') ADVANCE(172); - if (lookahead == '.') ADVANCE(174); - if (lookahead == ':') ADVANCE(175); - if (lookahead == '<') ADVANCE(170); - if (lookahead == '>') ADVANCE(301); - if (lookahead == 'F') ADVANCE(181); - if (lookahead == 'I') ADVANCE(183); - if (lookahead == 'N') ADVANCE(184); - if (lookahead == 'T') ADVANCE(185); - if (lookahead == 'W') ADVANCE(180); - if (lookahead == 'X') ADVANCE(192); - if (lookahead == '[') ADVANCE(258); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == ']') ADVANCE(231); - if (lookahead == '^') ADVANCE(217); - if (lookahead == '_') ADVANCE(141); - if (lookahead == '{') ADVANCE(267); - if (lookahead == '|') ADVANCE(294); - if (lookahead == '~') ADVANCE(225); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(197); + ACCEPT_TOKEN(anon_sym_LBRACE); + if (lookahead == '"' || + lookahead == '\'') ADVANCE(82); + if (lookahead == '*') ADVANCE(61); + if (lookahead == '+') ADVANCE(75); + if (lookahead == '-') ADVANCE(77); + if (lookahead == '=') ADVANCE(73); + if (lookahead == '^') ADVANCE(65); + if (lookahead == '_') ADVANCE(56); + if (lookahead == '~') ADVANCE(69); END_STATE(); case 54: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(55) - if (lookahead == '!') ADVANCE(193); - if (lookahead == '"') ADVANCE(194); - if (lookahead == '$') ADVANCE(274); - if (lookahead == '\'') ADVANCE(194); - if (lookahead == '*') ADVANCE(151); - if (lookahead == '-') ADVANCE(172); - if (lookahead == '.') ADVANCE(174); - if (lookahead == ':') ADVANCE(175); - if (lookahead == '<') ADVANCE(170); - if (lookahead == '=') ADVANCE(196); - if (lookahead == '>') ADVANCE(301); - if (lookahead == 'F') ADVANCE(181); - if (lookahead == 'I') ADVANCE(183); - if (lookahead == 'N') ADVANCE(184); - if (lookahead == 'T') ADVANCE(185); - if (lookahead == 'W') ADVANCE(180); - if (lookahead == 'X') ADVANCE(192); - if (lookahead == '[') ADVANCE(258); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == '^') ADVANCE(217); - if (lookahead == '_') ADVANCE(141); - if (lookahead == '{') ADVANCE(135); - if (lookahead == '|') ADVANCE(294); - if (lookahead == '~') ADVANCE(225); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); + ACCEPT_TOKEN(anon_sym_LBRACE); + if (lookahead == '"' || + lookahead == '\'') ADVANCE(83); + if (lookahead == '*') ADVANCE(62); + if (lookahead == '+') ADVANCE(76); + if (lookahead == '-') ADVANCE(78); + if (lookahead == '=') ADVANCE(74); + if (lookahead == '^') ADVANCE(66); + if (lookahead == '_') ADVANCE(57); + if (lookahead == '~') ADVANCE(70); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(197); + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(119); END_STATE(); case 55: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(55) - if (lookahead == '!') ADVANCE(193); - if (lookahead == '"') ADVANCE(194); - if (lookahead == '$') ADVANCE(274); - if (lookahead == '\'') ADVANCE(194); - if (lookahead == '*') ADVANCE(151); - if (lookahead == '-') ADVANCE(172); - if (lookahead == '.') ADVANCE(174); - if (lookahead == ':') ADVANCE(175); - if (lookahead == '<') ADVANCE(170); - if (lookahead == '=') ADVANCE(196); - if (lookahead == '>') ADVANCE(301); - if (lookahead == 'F') ADVANCE(181); - if (lookahead == 'I') ADVANCE(183); - if (lookahead == 'N') ADVANCE(184); - if (lookahead == 'T') ADVANCE(185); - if (lookahead == 'W') ADVANCE(180); - if (lookahead == 'X') ADVANCE(192); - if (lookahead == '[') ADVANCE(258); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == '^') ADVANCE(217); - if (lookahead == '_') ADVANCE(141); - if (lookahead == '{') ADVANCE(267); - if (lookahead == '|') ADVANCE(294); - if (lookahead == '~') ADVANCE(225); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(197); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 56: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(57) - if (lookahead == '"') ADVANCE(321); - if (lookahead == '#') ADVANCE(116); - if (lookahead == '%') ADVANCE(268); - if (lookahead == '(') ADVANCE(261); - if (lookahead == ')') ADVANCE(264); - if (lookahead == '.') ADVANCE(316); - if (lookahead == '=') ADVANCE(319); - if (lookahead == '>') ADVANCE(198); - if (lookahead == '[') ADVANCE(256); - if (lookahead == '{') ADVANCE(131); - if (lookahead == '}') ADVANCE(136); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); + ACCEPT_TOKEN(anon_sym_LBRACE_); END_STATE(); case 57: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(57) - if (lookahead == '"') ADVANCE(321); - if (lookahead == '#') ADVANCE(116); - if (lookahead == '%') ADVANCE(268); - if (lookahead == '(') ADVANCE(261); - if (lookahead == ')') ADVANCE(264); - if (lookahead == '.') ADVANCE(316); - if (lookahead == '=') ADVANCE(319); - if (lookahead == '>') ADVANCE(198); - if (lookahead == '[') ADVANCE(255); - if (lookahead == '}') ADVANCE(136); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); + ACCEPT_TOKEN(anon_sym_LBRACE_); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(119); END_STATE(); case 58: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') ADVANCE(270); - if (lookahead == '%') ADVANCE(268); - if (lookahead == '\\') ADVANCE(271); - if (lookahead != 0) ADVANCE(269); + ACCEPT_TOKEN(anon_sym__); END_STATE(); case 59: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(59) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(303); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == ']') ADVANCE(230); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(301); + ACCEPT_TOKEN(anon_sym__); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); END_STATE(); case 60: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(59) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(303); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == ']') ADVANCE(230); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(134); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); + ACCEPT_TOKEN(anon_sym__); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(301); + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(119); END_STATE(); case 61: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(61) - if (lookahead == ' ') ADVANCE(144); - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == ']') ADVANCE(230); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(301); + ACCEPT_TOKEN(anon_sym_LBRACE_STAR); END_STATE(); case 62: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(63) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(303); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); + ACCEPT_TOKEN(anon_sym_LBRACE_STAR); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(301); + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(119); END_STATE(); case 63: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(63) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(303); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(301); + ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); case 64: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(63) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(303); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(134); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); + ACCEPT_TOKEN(anon_sym_STAR); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(301); + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(119); END_STATE(); case 65: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(63) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(303); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(133); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); - if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(301); + ACCEPT_TOKEN(anon_sym_LBRACE_CARET); END_STATE(); case 66: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(66) - if (lookahead == ' ') ADVANCE(144); - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(303); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); + ACCEPT_TOKEN(anon_sym_LBRACE_CARET); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(301); + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(119); END_STATE(); case 67: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(67) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(233); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(239); - if (lookahead == 'I') ADVANCE(241); - if (lookahead == 'N') ADVANCE(242); - if (lookahead == 'T') ADVANCE(243); - if (lookahead == 'W') ADVANCE(238); - if (lookahead == 'X') ADVANCE(250); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(215); - if (lookahead == '_') ADVANCE(140); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(301); + ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); case 68: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(67) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(233); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(239); - if (lookahead == 'I') ADVANCE(241); - if (lookahead == 'N') ADVANCE(242); - if (lookahead == 'T') ADVANCE(243); - if (lookahead == 'W') ADVANCE(238); - if (lookahead == 'X') ADVANCE(250); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(215); - if (lookahead == '_') ADVANCE(140); - if (lookahead == '{') ADVANCE(134); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); + ACCEPT_TOKEN(anon_sym_CARET); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(301); + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(119); END_STATE(); case 69: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(70) - if (lookahead == '!') ADVANCE(193); - if (lookahead == '"') ADVANCE(194); - if (lookahead == '$') ADVANCE(274); - if (lookahead == '\'') ADVANCE(194); - if (lookahead == '*') ADVANCE(151); - if (lookahead == '-') ADVANCE(172); - if (lookahead == '.') ADVANCE(174); - if (lookahead == ':') ADVANCE(175); - if (lookahead == '<') ADVANCE(170); - if (lookahead == '>') ADVANCE(301); - if (lookahead == 'F') ADVANCE(181); - if (lookahead == 'I') ADVANCE(183); - if (lookahead == 'N') ADVANCE(184); - if (lookahead == 'T') ADVANCE(185); - if (lookahead == 'W') ADVANCE(180); - if (lookahead == 'X') ADVANCE(192); - if (lookahead == '[') ADVANCE(258); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == '^') ADVANCE(217); - if (lookahead == '_') ADVANCE(141); - if (lookahead == '{') ADVANCE(135); - if (lookahead == '|') ADVANCE(294); - if (lookahead == '~') ADVANCE(224); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); - if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(197); + ACCEPT_TOKEN(anon_sym_LBRACE_TILDE); END_STATE(); case 70: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(70) - if (lookahead == '!') ADVANCE(193); - if (lookahead == '"') ADVANCE(194); - if (lookahead == '$') ADVANCE(274); - if (lookahead == '\'') ADVANCE(194); - if (lookahead == '*') ADVANCE(151); - if (lookahead == '-') ADVANCE(172); - if (lookahead == '.') ADVANCE(174); - if (lookahead == ':') ADVANCE(175); - if (lookahead == '<') ADVANCE(170); - if (lookahead == '>') ADVANCE(301); - if (lookahead == 'F') ADVANCE(181); - if (lookahead == 'I') ADVANCE(183); - if (lookahead == 'N') ADVANCE(184); - if (lookahead == 'T') ADVANCE(185); - if (lookahead == 'W') ADVANCE(180); - if (lookahead == 'X') ADVANCE(192); - if (lookahead == '[') ADVANCE(258); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == '^') ADVANCE(217); - if (lookahead == '_') ADVANCE(141); - if (lookahead == '{') ADVANCE(267); - if (lookahead == '|') ADVANCE(294); - if (lookahead == '~') ADVANCE(224); + ACCEPT_TOKEN(anon_sym_LBRACE_TILDE); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(197); + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(119); END_STATE(); case 71: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(71) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == ']') ADVANCE(230); - if (lookahead == '^') ADVANCE(215); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(301); + ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); case 72: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(71) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == ']') ADVANCE(230); - if (lookahead == '^') ADVANCE(215); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(134); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); + ACCEPT_TOKEN(anon_sym_TILDE); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(301); + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(119); END_STATE(); case 73: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(74) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(215); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); - if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(301); + ACCEPT_TOKEN(anon_sym_LBRACE_EQ); END_STATE(); case 74: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(74) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(215); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); + ACCEPT_TOKEN(anon_sym_LBRACE_EQ); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(301); + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(119); END_STATE(); case 75: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(74) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(215); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(134); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); - if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(301); + ACCEPT_TOKEN(anon_sym_LBRACE_PLUS); END_STATE(); case 76: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(74) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(215); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(133); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); + ACCEPT_TOKEN(anon_sym_LBRACE_PLUS); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(301); + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(119); END_STATE(); case 77: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(77) - if (lookahead == ' ') ADVANCE(144); - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(215); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(301); + ACCEPT_TOKEN(anon_sym_LBRACE_DASH); END_STATE(); case 78: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(78) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(233); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(239); - if (lookahead == 'I') ADVANCE(241); - if (lookahead == 'N') ADVANCE(242); - if (lookahead == 'T') ADVANCE(243); - if (lookahead == 'W') ADVANCE(238); - if (lookahead == 'X') ADVANCE(250); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(140); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(223); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); + ACCEPT_TOKEN(anon_sym_LBRACE_DASH); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(301); + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(119); END_STATE(); case 79: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(78) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(233); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(239); - if (lookahead == 'I') ADVANCE(241); - if (lookahead == 'N') ADVANCE(242); - if (lookahead == 'T') ADVANCE(243); - if (lookahead == 'W') ADVANCE(238); - if (lookahead == 'X') ADVANCE(250); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(140); - if (lookahead == '{') ADVANCE(134); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(223); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); + ACCEPT_TOKEN(anon_sym_BSLASH); + if (lookahead == '"' || + lookahead == '\'') ADVANCE(82); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(301); + lookahead != '\n' && + lookahead != '\r' && + lookahead != '\\') ADVANCE(92); END_STATE(); case 80: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(81) - if (lookahead == '!') ADVANCE(193); - if (lookahead == '"') ADVANCE(194); - if (lookahead == '$') ADVANCE(274); - if (lookahead == '\'') ADVANCE(194); - if (lookahead == '*') ADVANCE(151); - if (lookahead == '-') ADVANCE(172); - if (lookahead == '.') ADVANCE(174); - if (lookahead == ':') ADVANCE(175); - if (lookahead == '<') ADVANCE(170); - if (lookahead == '>') ADVANCE(301); - if (lookahead == 'F') ADVANCE(181); - if (lookahead == 'I') ADVANCE(183); - if (lookahead == 'N') ADVANCE(184); - if (lookahead == 'T') ADVANCE(185); - if (lookahead == 'W') ADVANCE(180); - if (lookahead == 'X') ADVANCE(192); - if (lookahead == '[') ADVANCE(258); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == ']') ADVANCE(260); - if (lookahead == '^') ADVANCE(217); - if (lookahead == '_') ADVANCE(141); - if (lookahead == '{') ADVANCE(135); - if (lookahead == '|') ADVANCE(294); - if (lookahead == '~') ADVANCE(225); + ACCEPT_TOKEN(anon_sym_BSLASH); + if (lookahead == '"' || + lookahead == '\'') ADVANCE(83); + if (lookahead == '\\') ADVANCE(119); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); + lookahead == 11 || + lookahead == '\f' || + lookahead == ' ' || + lookahead == '>') ADVANCE(92); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(197); + (lookahead < '\n' || '\r' < lookahead)) ADVANCE(93); END_STATE(); case 81: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(81) - if (lookahead == '!') ADVANCE(193); - if (lookahead == '"') ADVANCE(194); - if (lookahead == '$') ADVANCE(274); - if (lookahead == '\'') ADVANCE(194); - if (lookahead == '*') ADVANCE(151); - if (lookahead == '-') ADVANCE(172); - if (lookahead == '.') ADVANCE(174); - if (lookahead == ':') ADVANCE(175); - if (lookahead == '<') ADVANCE(170); - if (lookahead == '>') ADVANCE(301); - if (lookahead == 'F') ADVANCE(181); - if (lookahead == 'I') ADVANCE(183); - if (lookahead == 'N') ADVANCE(184); - if (lookahead == 'T') ADVANCE(185); - if (lookahead == 'W') ADVANCE(180); - if (lookahead == 'X') ADVANCE(192); - if (lookahead == '[') ADVANCE(258); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == '^') ADVANCE(217); - if (lookahead == '_') ADVANCE(141); - if (lookahead == '{') ADVANCE(267); - if (lookahead == '|') ADVANCE(294); - if (lookahead == '~') ADVANCE(225); + ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(197); + lookahead != '\n' && + lookahead != '\r' && + lookahead != '\\') ADVANCE(92); END_STATE(); case 82: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(84) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == ']') ADVANCE(259); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(134); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); - if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(301); + ACCEPT_TOKEN(sym_quotation_marks); END_STATE(); case 83: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(84) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == ']') ADVANCE(230); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); + ACCEPT_TOKEN(sym_quotation_marks); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(301); + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(119); END_STATE(); case 84: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(84) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == ']') ADVANCE(230); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(301); + ACCEPT_TOKEN(sym_ellipsis); END_STATE(); case 85: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(84) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == ']') ADVANCE(230); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(133); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); + ACCEPT_TOKEN(sym_ellipsis); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(301); + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(119); END_STATE(); case 86: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(89) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == ']') ADVANCE(259); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); - if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(301); + ACCEPT_TOKEN(sym_em_dash); END_STATE(); case 87: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(89) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == ']') ADVANCE(259); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(134); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); - if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(301); - END_STATE(); - case 88: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(89) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == ']') ADVANCE(259); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(133); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); + ACCEPT_TOKEN(sym_em_dash); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); + END_STATE(); + case 88: + ACCEPT_TOKEN(sym_em_dash); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(301); + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(119); END_STATE(); case 89: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(89) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(301); + ACCEPT_TOKEN(sym_en_dash); + if (lookahead == '-') ADVANCE(87); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); END_STATE(); case 90: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(90) - if (lookahead == ' ') ADVANCE(144); - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(301); + ACCEPT_TOKEN(sym_en_dash); + if (lookahead == '-') ADVANCE(86); END_STATE(); case 91: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(91) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(232); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(239); - if (lookahead == 'I') ADVANCE(241); - if (lookahead == 'N') ADVANCE(242); - if (lookahead == 'T') ADVANCE(243); - if (lookahead == 'W') ADVANCE(238); - if (lookahead == 'X') ADVANCE(250); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(140); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); + ACCEPT_TOKEN(sym_en_dash); + if (lookahead == '-') ADVANCE(88); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(301); + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(119); END_STATE(); case 92: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(91) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(232); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(239); - if (lookahead == 'I') ADVANCE(241); - if (lookahead == 'N') ADVANCE(242); - if (lookahead == 'T') ADVANCE(243); - if (lookahead == 'W') ADVANCE(238); - if (lookahead == 'X') ADVANCE(250); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(140); - if (lookahead == '{') ADVANCE(134); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); - if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(301); + ACCEPT_TOKEN(sym_backslash_escape); END_STATE(); case 93: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(94) - if (lookahead == '!') ADVANCE(193); - if (lookahead == '"') ADVANCE(194); - if (lookahead == '$') ADVANCE(274); - if (lookahead == '\'') ADVANCE(194); - if (lookahead == '*') ADVANCE(151); - if (lookahead == '-') ADVANCE(171); - if (lookahead == '.') ADVANCE(174); - if (lookahead == ':') ADVANCE(175); - if (lookahead == '<') ADVANCE(170); - if (lookahead == '>') ADVANCE(301); - if (lookahead == 'F') ADVANCE(181); - if (lookahead == 'I') ADVANCE(183); - if (lookahead == 'N') ADVANCE(184); - if (lookahead == 'T') ADVANCE(185); - if (lookahead == 'W') ADVANCE(180); - if (lookahead == 'X') ADVANCE(192); - if (lookahead == '[') ADVANCE(258); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == '^') ADVANCE(217); - if (lookahead == '_') ADVANCE(141); - if (lookahead == '{') ADVANCE(135); - if (lookahead == '|') ADVANCE(294); - if (lookahead == '~') ADVANCE(225); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); + ACCEPT_TOKEN(sym_backslash_escape); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(197); + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(119); END_STATE(); case 94: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(94) - if (lookahead == '!') ADVANCE(193); - if (lookahead == '"') ADVANCE(194); - if (lookahead == '$') ADVANCE(274); - if (lookahead == '\'') ADVANCE(194); - if (lookahead == '*') ADVANCE(151); - if (lookahead == '-') ADVANCE(171); - if (lookahead == '.') ADVANCE(174); - if (lookahead == ':') ADVANCE(175); - if (lookahead == '<') ADVANCE(170); - if (lookahead == '>') ADVANCE(301); - if (lookahead == 'F') ADVANCE(181); - if (lookahead == 'I') ADVANCE(183); - if (lookahead == 'N') ADVANCE(184); - if (lookahead == 'T') ADVANCE(185); - if (lookahead == 'W') ADVANCE(180); - if (lookahead == 'X') ADVANCE(192); - if (lookahead == '[') ADVANCE(258); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == '^') ADVANCE(217); - if (lookahead == '_') ADVANCE(141); - if (lookahead == '{') ADVANCE(267); - if (lookahead == '|') ADVANCE(294); - if (lookahead == '~') ADVANCE(225); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(197); + ACCEPT_TOKEN(anon_sym_LT); END_STATE(); case 95: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(95) - if (lookahead == ' ') ADVANCE(146); - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(149); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); + ACCEPT_TOKEN(anon_sym_LT); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(301); + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(119); END_STATE(); case 96: - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(96) - if (lookahead == ' ') ADVANCE(144); - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(223); + ACCEPT_TOKEN(aux_sym_autolink_token1); + if (lookahead == '-') ADVANCE(91); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(301); + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(119); END_STATE(); case 97: - if (lookahead == '\r') SKIP(97) - if (lookahead == '"') ADVANCE(321); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(324); + ACCEPT_TOKEN(aux_sym_autolink_token1); + if (lookahead == '.') ADVANCE(85); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(119); END_STATE(); case 98: - if (lookahead == '\r') ADVANCE(322); + ACCEPT_TOKEN(aux_sym_autolink_token1); + if (lookahead == '.') ADVANCE(97); if (lookahead != 0 && - lookahead != '\n' && - lookahead != '"') ADVANCE(323); + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(119); END_STATE(); case 99: - if (lookahead == '\r') ADVANCE(262); + ACCEPT_TOKEN(aux_sym_autolink_token1); + if (lookahead == ':') ADVANCE(119); + if (lookahead == '>') ADVANCE(25); if (lookahead != 0 && - lookahead != '\n' && - lookahead != ')') ADVANCE(263); + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ') ADVANCE(99); END_STATE(); case 100: - if (lookahead == '\r') ADVANCE(295); + ACCEPT_TOKEN(aux_sym_autolink_token1); + if (lookahead == 'D') ADVANCE(111); if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && + (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '=' && - lookahead != '{' && - lookahead != '}') ADVANCE(296); + lookahead != '>') ADVANCE(119); END_STATE(); case 101: - if (lookahead == ' ') ADVANCE(101); - if (lookahead == '*') ADVANCE(115); + ACCEPT_TOKEN(aux_sym_autolink_token1); + if (lookahead == 'E') ADVANCE(176); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(119); END_STATE(); case 102: - if (lookahead == '.') ADVANCE(159); + ACCEPT_TOKEN(aux_sym_autolink_token1); + if (lookahead == 'E') ADVANCE(185); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(119); END_STATE(); case 103: - if (lookahead == ':') ADVANCE(211); + ACCEPT_TOKEN(aux_sym_autolink_token1); + if (lookahead == 'F') ADVANCE(110); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ') ADVANCE(103); + lookahead != ' ' && + lookahead != '>') ADVANCE(119); END_STATE(); case 104: - if (lookahead == 'D') ADVANCE(110); + ACCEPT_TOKEN(aux_sym_autolink_token1); + if (lookahead == 'I') ADVANCE(112); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(119); END_STATE(); case 105: - if (lookahead == 'E') ADVANCE(281); + ACCEPT_TOKEN(aux_sym_autolink_token1); + if (lookahead == 'I') ADVANCE(114); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(119); END_STATE(); case 106: - if (lookahead == 'E') ADVANCE(290); + ACCEPT_TOKEN(aux_sym_autolink_token1); + if (lookahead == 'M') ADVANCE(102); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(119); END_STATE(); case 107: - if (lookahead == 'F') ADVANCE(109); + ACCEPT_TOKEN(aux_sym_autolink_token1); + if (lookahead == 'N') ADVANCE(103); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(119); END_STATE(); case 108: - if (lookahead == 'M') ADVANCE(106); + ACCEPT_TOKEN(aux_sym_autolink_token1); + if (lookahead == 'O') ADVANCE(113); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(119); END_STATE(); case 109: - if (lookahead == 'O') ADVANCE(284); + ACCEPT_TOKEN(aux_sym_autolink_token1); + if (lookahead == 'O') ADVANCE(100); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(119); END_STATE(); case 110: - if (lookahead == 'O') ADVANCE(275); + ACCEPT_TOKEN(aux_sym_autolink_token1); + if (lookahead == 'O') ADVANCE(179); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(119); END_STATE(); case 111: - if (lookahead == 'P') ADVANCE(278); + ACCEPT_TOKEN(aux_sym_autolink_token1); + if (lookahead == 'O') ADVANCE(170); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(119); END_STATE(); case 112: - if (lookahead == 'T') ADVANCE(105); + ACCEPT_TOKEN(aux_sym_autolink_token1); + if (lookahead == 'P') ADVANCE(173); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(119); END_STATE(); case 113: - if (lookahead == 'X') ADVANCE(108); + ACCEPT_TOKEN(aux_sym_autolink_token1); + if (lookahead == 'T') ADVANCE(101); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(119); END_STATE(); case 114: - if (lookahead == 'X') ADVANCE(287); + ACCEPT_TOKEN(aux_sym_autolink_token1); + if (lookahead == 'X') ADVANCE(106); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(119); END_STATE(); case 115: - if (lookahead == '}') ADVANCE(152); + ACCEPT_TOKEN(aux_sym_autolink_token1); + if (lookahead == 'X') ADVANCE(182); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(119); END_STATE(); case 116: + ACCEPT_TOKEN(aux_sym_autolink_token1); + if (lookahead == 'X') ADVANCE(115); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '}') ADVANCE(318); + lookahead != '>') ADVANCE(119); END_STATE(); case 117: - if (eof) ADVANCE(130); - if (lookahead == '\t') ADVANCE(299); - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(125) - if (lookahead == ' ') ADVANCE(147); - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(134); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); + ACCEPT_TOKEN(aux_sym_autolink_token1); + if (lookahead == '[') ADVANCE(147); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(301); + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(119); END_STATE(); case 118: - if (eof) ADVANCE(130); - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(118) - if (lookahead == ' ') ADVANCE(146); - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(321); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '%') ADVANCE(268); - if (lookahead == '(') ADVANCE(261); - if (lookahead == ')') ADVANCE(264); - if (lookahead == '*') ADVANCE(149); - if (lookahead == '+') ADVANCE(312); - if (lookahead == '-') ADVANCE(232); - if (lookahead == '.') ADVANCE(317); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == '=') ADVANCE(320); - if (lookahead == '>') ADVANCE(198); - if (lookahead == 'F') ADVANCE(239); - if (lookahead == 'I') ADVANCE(241); - if (lookahead == 'N') ADVANCE(242); - if (lookahead == 'T') ADVANCE(243); - if (lookahead == 'W') ADVANCE(238); - if (lookahead == 'X') ADVANCE(250); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(156); - if (lookahead == ']') ADVANCE(230); - if (lookahead == '^') ADVANCE(215); - if (lookahead == '_') ADVANCE(140); - if (lookahead == '{') ADVANCE(265); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '}') ADVANCE(136); - if (lookahead == '~') ADVANCE(223); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); + ACCEPT_TOKEN(aux_sym_autolink_token1); + if (lookahead == '}') ADVANCE(83); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(301); + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(119); END_STATE(); case 119: - if (eof) ADVANCE(130); - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(120) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); + ACCEPT_TOKEN(aux_sym_autolink_token1); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(301); + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(119); END_STATE(); case 120: - if (eof) ADVANCE(130); - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(120) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(301); + ACCEPT_TOKEN(anon_sym_GT); END_STATE(); case 121: - if (eof) ADVANCE(130); - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(120) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(134); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); - if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(301); + ACCEPT_TOKEN(sym_symbol); END_STATE(); case 122: - if (eof) ADVANCE(130); - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(120) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(133); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); - if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(301); + ACCEPT_TOKEN(anon_sym_LBRACK_CARET); END_STATE(); case 123: - if (eof) ADVANCE(130); - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(123) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == ']') ADVANCE(230); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); + ACCEPT_TOKEN(anon_sym_LBRACK_CARET); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(301); + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(119); END_STATE(); case 124: - if (eof) ADVANCE(130); - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(123) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == ']') ADVANCE(230); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(134); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); - if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(301); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 125: - if (eof) ADVANCE(130); - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(125) - if (lookahead == ' ') ADVANCE(144); - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(305); - if (lookahead == 'I') ADVANCE(307); - if (lookahead == 'N') ADVANCE(308); - if (lookahead == 'T') ADVANCE(309); - if (lookahead == 'W') ADVANCE(306); - if (lookahead == 'X') ADVANCE(310); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(139); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); + ACCEPT_TOKEN(anon_sym_RBRACK); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(301); + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(119); END_STATE(); case 126: - if (eof) ADVANCE(130); - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(126) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(233); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(239); - if (lookahead == 'I') ADVANCE(241); - if (lookahead == 'N') ADVANCE(242); - if (lookahead == 'T') ADVANCE(243); - if (lookahead == 'W') ADVANCE(238); - if (lookahead == 'X') ADVANCE(250); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(140); - if (lookahead == '{') ADVANCE(266); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); + ACCEPT_TOKEN(sym__id); + if (lookahead == '-') ADVANCE(89); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(301); + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); END_STATE(); case 127: - if (eof) ADVANCE(130); - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(126) - if (lookahead == '!') ADVANCE(311); - if (lookahead == '"') ADVANCE(314); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '\'') ADVANCE(314); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '-') ADVANCE(233); - if (lookahead == '.') ADVANCE(304); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(169); - if (lookahead == 'F') ADVANCE(239); - if (lookahead == 'I') ADVANCE(241); - if (lookahead == 'N') ADVANCE(242); - if (lookahead == 'T') ADVANCE(243); - if (lookahead == 'W') ADVANCE(238); - if (lookahead == 'X') ADVANCE(250); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(140); - if (lookahead == '{') ADVANCE(134); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(222); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); - if (('0' <= lookahead && lookahead <= '9') || + ACCEPT_TOKEN(sym__id); + if (lookahead == 'D') ADVANCE(138); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); - if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(301); + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); END_STATE(); case 128: - if (eof) ADVANCE(130); - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(129) - if (lookahead == '!') ADVANCE(193); - if (lookahead == '"') ADVANCE(194); - if (lookahead == '$') ADVANCE(274); - if (lookahead == '\'') ADVANCE(194); - if (lookahead == '*') ADVANCE(151); - if (lookahead == '-') ADVANCE(172); - if (lookahead == '.') ADVANCE(174); - if (lookahead == ':') ADVANCE(175); - if (lookahead == '<') ADVANCE(170); - if (lookahead == '>') ADVANCE(301); - if (lookahead == 'F') ADVANCE(181); - if (lookahead == 'I') ADVANCE(183); - if (lookahead == 'N') ADVANCE(184); - if (lookahead == 'T') ADVANCE(185); - if (lookahead == 'W') ADVANCE(180); - if (lookahead == 'X') ADVANCE(192); - if (lookahead == '[') ADVANCE(258); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == '^') ADVANCE(217); - if (lookahead == '_') ADVANCE(141); - if (lookahead == '{') ADVANCE(135); - if (lookahead == '|') ADVANCE(294); - if (lookahead == '~') ADVANCE(225); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); - if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(197); + ACCEPT_TOKEN(sym__id); + if (lookahead == 'E') ADVANCE(175); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); END_STATE(); case 129: - if (eof) ADVANCE(130); - if (lookahead == '\n') ADVANCE(300); - if (lookahead == '\r') SKIP(129) - if (lookahead == '!') ADVANCE(193); - if (lookahead == '"') ADVANCE(194); - if (lookahead == '$') ADVANCE(274); - if (lookahead == '\'') ADVANCE(194); - if (lookahead == '*') ADVANCE(151); - if (lookahead == '-') ADVANCE(172); - if (lookahead == '.') ADVANCE(174); - if (lookahead == ':') ADVANCE(175); - if (lookahead == '<') ADVANCE(170); - if (lookahead == '>') ADVANCE(301); - if (lookahead == 'F') ADVANCE(181); - if (lookahead == 'I') ADVANCE(183); - if (lookahead == 'N') ADVANCE(184); - if (lookahead == 'T') ADVANCE(185); - if (lookahead == 'W') ADVANCE(180); - if (lookahead == 'X') ADVANCE(192); - if (lookahead == '[') ADVANCE(258); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == '^') ADVANCE(217); - if (lookahead == '_') ADVANCE(141); - if (lookahead == '{') ADVANCE(267); - if (lookahead == '|') ADVANCE(294); - if (lookahead == '~') ADVANCE(225); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(197); + ACCEPT_TOKEN(sym__id); + if (lookahead == 'E') ADVANCE(184); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); END_STATE(); case 130: - ACCEPT_TOKEN(ts_builtin_sym_end); + ACCEPT_TOKEN(sym__id); + if (lookahead == 'F') ADVANCE(137); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); END_STATE(); case 131: - ACCEPT_TOKEN(anon_sym_LBRACE); + ACCEPT_TOKEN(sym__id); + if (lookahead == 'I') ADVANCE(139); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); END_STATE(); case 132: - ACCEPT_TOKEN(anon_sym_LBRACE); - if (lookahead == '*') ADVANCE(142); - if (lookahead == '+') ADVANCE(203); - if (lookahead == '-') ADVANCE(207); - if (lookahead == '=') ADVANCE(272); - if (lookahead == '^') ADVANCE(212); - if (lookahead == '_') ADVANCE(137); - if (lookahead == '~') ADVANCE(220); + ACCEPT_TOKEN(sym__id); + if (lookahead == 'I') ADVANCE(141); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); END_STATE(); case 133: - ACCEPT_TOKEN(anon_sym_LBRACE); - if (lookahead == '"' || - lookahead == '\'') ADVANCE(157); - if (lookahead == '*') ADVANCE(142); - if (lookahead == '+') ADVANCE(203); - if (lookahead == '-') ADVANCE(207); - if (lookahead == '=') ADVANCE(272); - if (lookahead == '^') ADVANCE(212); - if (lookahead == '_') ADVANCE(137); - if (lookahead == '~') ADVANCE(220); + ACCEPT_TOKEN(sym__id); + if (lookahead == 'M') ADVANCE(129); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); END_STATE(); case 134: - ACCEPT_TOKEN(anon_sym_LBRACE); - if (lookahead == '"' || - lookahead == '\'') ADVANCE(157); - if (lookahead == '*') ADVANCE(142); - if (lookahead == '+') ADVANCE(203); - if (lookahead == '-') ADVANCE(207); - if (lookahead == '=') ADVANCE(199); - if (lookahead == '^') ADVANCE(212); - if (lookahead == '_') ADVANCE(137); - if (lookahead == '~') ADVANCE(220); + ACCEPT_TOKEN(sym__id); + if (lookahead == 'N') ADVANCE(130); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); END_STATE(); case 135: - ACCEPT_TOKEN(anon_sym_LBRACE); - if (lookahead == '"' || - lookahead == '\'') ADVANCE(158); - if (lookahead == '*') ADVANCE(143); - if (lookahead == '+') ADVANCE(204); - if (lookahead == '-') ADVANCE(208); - if (lookahead == '=') ADVANCE(200); - if (lookahead == '^') ADVANCE(213); - if (lookahead == '_') ADVANCE(138); - if (lookahead == '~') ADVANCE(221); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(197); + ACCEPT_TOKEN(sym__id); + if (lookahead == 'O') ADVANCE(140); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); END_STATE(); case 136: - ACCEPT_TOKEN(anon_sym_RBRACE); + ACCEPT_TOKEN(sym__id); + if (lookahead == 'O') ADVANCE(127); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); END_STATE(); case 137: - ACCEPT_TOKEN(anon_sym_LBRACE_); + ACCEPT_TOKEN(sym__id); + if (lookahead == 'O') ADVANCE(178); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); END_STATE(); case 138: - ACCEPT_TOKEN(anon_sym_LBRACE_); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(197); - END_STATE(); - case 139: - ACCEPT_TOKEN(anon_sym__); - END_STATE(); - case 140: - ACCEPT_TOKEN(anon_sym__); + ACCEPT_TOKEN(sym__id); + if (lookahead == 'O') ADVANCE(169); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); END_STATE(); - case 141: - ACCEPT_TOKEN(anon_sym__); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(197); + case 139: + ACCEPT_TOKEN(sym__id); + if (lookahead == 'P') ADVANCE(172); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); + END_STATE(); + case 140: + ACCEPT_TOKEN(sym__id); + if (lookahead == 'T') ADVANCE(128); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); + END_STATE(); + case 141: + ACCEPT_TOKEN(sym__id); + if (lookahead == 'X') ADVANCE(133); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); END_STATE(); case 142: - ACCEPT_TOKEN(anon_sym_LBRACE_STAR); + ACCEPT_TOKEN(sym__id); + if (lookahead == 'X') ADVANCE(181); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); END_STATE(); case 143: - ACCEPT_TOKEN(anon_sym_LBRACE_STAR); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(197); + ACCEPT_TOKEN(sym__id); + if (lookahead == 'X') ADVANCE(142); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); END_STATE(); case 144: - ACCEPT_TOKEN(anon_sym_SPACE); + ACCEPT_TOKEN(sym__id); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); END_STATE(); case 145: - ACCEPT_TOKEN(anon_sym_SPACE); - if (lookahead == '\t') ADVANCE(299); - if (lookahead == ' ') ADVANCE(298); - if (lookahead == '*') ADVANCE(115); + ACCEPT_TOKEN(anon_sym_LBRACK_RBRACK); END_STATE(); case 146: - ACCEPT_TOKEN(anon_sym_SPACE); - if (lookahead == ' ') ADVANCE(101); - if (lookahead == '*') ADVANCE(115); + ACCEPT_TOKEN(anon_sym_BANG_LBRACK); END_STATE(); case 147: - ACCEPT_TOKEN(anon_sym_SPACE); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); + ACCEPT_TOKEN(anon_sym_BANG_LBRACK); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(119); END_STATE(); case 148: - ACCEPT_TOKEN(anon_sym_STAR); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 149: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '}') ADVANCE(152); + ACCEPT_TOKEN(anon_sym_LBRACK); + if (lookahead == ']') ADVANCE(145); END_STATE(); case 150: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '}') ADVANCE(153); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(197); + ACCEPT_TOKEN(anon_sym_LBRACK); + if (lookahead == '^') ADVANCE(122); END_STATE(); case 151: - ACCEPT_TOKEN(anon_sym_STAR); + ACCEPT_TOKEN(anon_sym_LBRACK); + if (lookahead == '^') ADVANCE(123); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(197); + lookahead != '>') ADVANCE(119); END_STATE(); case 152: - ACCEPT_TOKEN(aux_sym_strong_end_token1); + ACCEPT_TOKEN(anon_sym_RBRACK2); END_STATE(); case 153: - ACCEPT_TOKEN(aux_sym_strong_end_token1); + ACCEPT_TOKEN(anon_sym_RBRACK2); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(197); + lookahead != '>') ADVANCE(119); END_STATE(); case 154: - ACCEPT_TOKEN(anon_sym_BSLASH); - if (lookahead == '"' || - lookahead == '\'') ADVANCE(157); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r' && - lookahead != '\\') ADVANCE(167); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 155: - ACCEPT_TOKEN(anon_sym_BSLASH); - if (lookahead == '"' || - lookahead == '\'') ADVANCE(158); - if (lookahead == '\\') ADVANCE(197); - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ' || - lookahead == '>') ADVANCE(167); + ACCEPT_TOKEN(aux_sym_inline_link_destination_token1); + if (lookahead == '\r') ADVANCE(155); if (lookahead != 0 && - (lookahead < '\n' || '\r' < lookahead)) ADVANCE(168); + lookahead != '\n' && + lookahead != ')') ADVANCE(156); END_STATE(); case 156: - ACCEPT_TOKEN(anon_sym_BSLASH); + ACCEPT_TOKEN(aux_sym_inline_link_destination_token1); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r' && - lookahead != '\\') ADVANCE(167); + lookahead != ')') ADVANCE(156); END_STATE(); case 157: - ACCEPT_TOKEN(sym_quotation_marks); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 158: - ACCEPT_TOKEN(sym_quotation_marks); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(197); + ACCEPT_TOKEN(anon_sym_LBRACE2); + if (lookahead == '*') ADVANCE(61); + if (lookahead == '+') ADVANCE(75); + if (lookahead == '-') ADVANCE(77); + if (lookahead == '=') ADVANCE(73); + if (lookahead == '^') ADVANCE(65); + if (lookahead == '_') ADVANCE(56); + if (lookahead == '~') ADVANCE(69); END_STATE(); case 159: - ACCEPT_TOKEN(sym_ellipsis); + ACCEPT_TOKEN(anon_sym_LBRACE2); + if (lookahead == '"' || + lookahead == '\'') ADVANCE(82); + if (lookahead == '*') ADVANCE(61); + if (lookahead == '+') ADVANCE(75); + if (lookahead == '-') ADVANCE(77); + if (lookahead == '=') ADVANCE(73); + if (lookahead == '^') ADVANCE(65); + if (lookahead == '_') ADVANCE(56); + if (lookahead == '~') ADVANCE(69); END_STATE(); case 160: - ACCEPT_TOKEN(sym_ellipsis); + ACCEPT_TOKEN(anon_sym_LBRACE2); + if (lookahead == '"' || + lookahead == '\'') ADVANCE(83); + if (lookahead == '*') ADVANCE(62); + if (lookahead == '+') ADVANCE(76); + if (lookahead == '-') ADVANCE(78); + if (lookahead == '=') ADVANCE(74); + if (lookahead == '^') ADVANCE(66); + if (lookahead == '_') ADVANCE(57); + if (lookahead == '~') ADVANCE(70); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(197); + lookahead != '>') ADVANCE(119); END_STATE(); case 161: - ACCEPT_TOKEN(sym_em_dash); + ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); case 162: - ACCEPT_TOKEN(sym_em_dash); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); + ACCEPT_TOKEN(aux_sym__comment_with_newline_token1); END_STATE(); case 163: - ACCEPT_TOKEN(sym_em_dash); + ACCEPT_TOKEN(aux_sym__comment_with_newline_token1); + if (lookahead == '\r') ADVANCE(163); + if (lookahead == '\\') ADVANCE(164); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(197); + lookahead != '\n' && + lookahead != '%') ADVANCE(162); END_STATE(); case 164: - ACCEPT_TOKEN(sym_en_dash); - if (lookahead == '-') ADVANCE(162); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); + ACCEPT_TOKEN(aux_sym__comment_with_newline_token1); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '\\') ADVANCE(92); END_STATE(); case 165: - ACCEPT_TOKEN(sym_en_dash); - if (lookahead == '-') ADVANCE(161); + ACCEPT_TOKEN(anon_sym_LBRACE_EQ2); END_STATE(); case 166: - ACCEPT_TOKEN(sym_en_dash); - if (lookahead == '-') ADVANCE(163); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(197); + ACCEPT_TOKEN(anon_sym_DOLLAR); END_STATE(); case 167: - ACCEPT_TOKEN(sym_backslash_escape); - END_STATE(); - case 168: - ACCEPT_TOKEN(sym_backslash_escape); + ACCEPT_TOKEN(anon_sym_DOLLAR); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(197); + lookahead != '>') ADVANCE(119); + END_STATE(); + case 168: + ACCEPT_TOKEN(anon_sym_TODO); END_STATE(); case 169: - ACCEPT_TOKEN(anon_sym_LT); + ACCEPT_TOKEN(anon_sym_TODO); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); END_STATE(); case 170: - ACCEPT_TOKEN(anon_sym_LT); + ACCEPT_TOKEN(anon_sym_TODO); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(197); + lookahead != '>') ADVANCE(119); END_STATE(); case 171: - ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == '-') ADVANCE(166); - if (lookahead == '}') ADVANCE(210); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(197); + ACCEPT_TOKEN(anon_sym_WIP); END_STATE(); case 172: - ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == '-') ADVANCE(166); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(197); + ACCEPT_TOKEN(anon_sym_WIP); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); END_STATE(); case 173: - ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == '.') ADVANCE(160); + ACCEPT_TOKEN(anon_sym_WIP); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(197); + lookahead != '>') ADVANCE(119); END_STATE(); case 174: - ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == '.') ADVANCE(173); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(197); + ACCEPT_TOKEN(anon_sym_NOTE); END_STATE(); case 175: - ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == ':') ADVANCE(197); - if (lookahead == '>') ADVANCE(103); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ') ADVANCE(175); + ACCEPT_TOKEN(anon_sym_NOTE); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); END_STATE(); case 176: - ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'D') ADVANCE(187); + ACCEPT_TOKEN(anon_sym_NOTE); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(197); + lookahead != '>') ADVANCE(119); END_STATE(); case 177: - ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'E') ADVANCE(283); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(197); + ACCEPT_TOKEN(anon_sym_INFO); END_STATE(); case 178: - ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'E') ADVANCE(292); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(197); + ACCEPT_TOKEN(anon_sym_INFO); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); END_STATE(); case 179: - ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'F') ADVANCE(186); + ACCEPT_TOKEN(anon_sym_INFO); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(197); + lookahead != '>') ADVANCE(119); END_STATE(); case 180: - ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'I') ADVANCE(188); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(197); + ACCEPT_TOKEN(anon_sym_XXX); END_STATE(); case 181: - ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'I') ADVANCE(190); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(197); + ACCEPT_TOKEN(anon_sym_XXX); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); END_STATE(); case 182: - ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'M') ADVANCE(178); + ACCEPT_TOKEN(anon_sym_XXX); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(197); + lookahead != '>') ADVANCE(119); END_STATE(); case 183: - ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'N') ADVANCE(179); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(197); + ACCEPT_TOKEN(sym_fixme); END_STATE(); case 184: - ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'O') ADVANCE(189); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(197); + ACCEPT_TOKEN(sym_fixme); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); END_STATE(); case 185: - ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'O') ADVANCE(176); + ACCEPT_TOKEN(sym_fixme); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(197); + lookahead != '>') ADVANCE(119); END_STATE(); case 186: - ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'O') ADVANCE(286); + ACCEPT_TOKEN(sym_language); + if (lookahead == '\r') ADVANCE(186); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && lookahead != ' ' && - lookahead != '>') ADVANCE(197); + lookahead != '=' && + lookahead != '{' && + lookahead != '}') ADVANCE(187); END_STATE(); case 187: - ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'O') ADVANCE(277); + ACCEPT_TOKEN(sym_language); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && lookahead != ' ' && - lookahead != '>') ADVANCE(197); + lookahead != '=' && + lookahead != '{' && + lookahead != '}') ADVANCE(187); END_STATE(); case 188: - ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'P') ADVANCE(280); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(197); + ACCEPT_TOKEN(sym__whitespace); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(188); END_STATE(); case 189: - ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'T') ADVANCE(177); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(197); + ACCEPT_TOKEN(sym__whitespace1); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(189); END_STATE(); case 190: - ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'X') ADVANCE(182); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(197); + ACCEPT_TOKEN(sym__newline); END_STATE(); case 191: - ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'X') ADVANCE(289); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(197); + ACCEPT_TOKEN(aux_sym__text_token1); END_STATE(); case 192: - ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'X') ADVANCE(191); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(197); + ACCEPT_TOKEN(aux_sym__text_token1); + if (lookahead == '-') ADVANCE(90); END_STATE(); case 193: - ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == '[') ADVANCE(254); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(197); + ACCEPT_TOKEN(aux_sym__text_token1); + if (lookahead == '.') ADVANCE(24); END_STATE(); case 194: - ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == '}') ADVANCE(158); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(197); + ACCEPT_TOKEN(aux_sym__text_token1); + if (lookahead == 'I') ADVANCE(35); END_STATE(); case 195: - ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == '}') ADVANCE(206); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(197); + ACCEPT_TOKEN(aux_sym__text_token1); + if (lookahead == 'I') ADVANCE(33); END_STATE(); case 196: - ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == '}') ADVANCE(202); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(197); + ACCEPT_TOKEN(aux_sym__text_token1); + if (lookahead == 'N') ADVANCE(29); END_STATE(); case 197: - ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(197); + ACCEPT_TOKEN(aux_sym__text_token1); + if (lookahead == 'O') ADVANCE(34); END_STATE(); case 198: - ACCEPT_TOKEN(anon_sym_GT); + ACCEPT_TOKEN(aux_sym__text_token1); + if (lookahead == 'O') ADVANCE(26); END_STATE(); case 199: - ACCEPT_TOKEN(anon_sym_LBRACE_EQ); + ACCEPT_TOKEN(aux_sym__text_token1); + if (lookahead == 'X') ADVANCE(36); END_STATE(); case 200: - ACCEPT_TOKEN(anon_sym_LBRACE_EQ); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(197); + ACCEPT_TOKEN(aux_sym__text_token1); + if (lookahead == '[') ADVANCE(146); END_STATE(); case 201: - ACCEPT_TOKEN(anon_sym_EQ_RBRACE); + ACCEPT_TOKEN(aux_sym__text_token1); + if (lookahead == '}') ADVANCE(82); END_STATE(); case 202: - ACCEPT_TOKEN(anon_sym_EQ_RBRACE); + ACCEPT_TOKEN(aux_sym__text_token1); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(197); + lookahead != ':') ADVANCE(25); END_STATE(); case 203: - ACCEPT_TOKEN(anon_sym_LBRACE_PLUS); + ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); case 204: - ACCEPT_TOKEN(anon_sym_LBRACE_PLUS); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(197); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(24); END_STATE(); case 205: - ACCEPT_TOKEN(anon_sym_PLUS_RBRACE); - END_STATE(); - case 206: - ACCEPT_TOKEN(anon_sym_PLUS_RBRACE); + ACCEPT_TOKEN(sym_identifier); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(197); + lookahead != '}') ADVANCE(205); + END_STATE(); + case 206: + ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); case 207: - ACCEPT_TOKEN(anon_sym_LBRACE_DASH); + ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); case 208: - ACCEPT_TOKEN(anon_sym_LBRACE_DASH); + ACCEPT_TOKEN(aux_sym_value_token1); + if (lookahead == '\r') ADVANCE(208); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(197); + lookahead != '\n' && + lookahead != '"') ADVANCE(209); END_STATE(); case 209: - ACCEPT_TOKEN(anon_sym_DASH_RBRACE); - END_STATE(); - case 210: - ACCEPT_TOKEN(anon_sym_DASH_RBRACE); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(197); - END_STATE(); - case 211: - ACCEPT_TOKEN(sym_symbol); - END_STATE(); - case 212: - ACCEPT_TOKEN(anon_sym_LBRACE_CARET); - END_STATE(); - case 213: - ACCEPT_TOKEN(anon_sym_LBRACE_CARET); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(197); - END_STATE(); - case 214: - ACCEPT_TOKEN(anon_sym_CARET); - END_STATE(); - case 215: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '}') ADVANCE(218); - END_STATE(); - case 216: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '}') ADVANCE(219); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(197); - END_STATE(); - case 217: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(197); - END_STATE(); - case 218: - ACCEPT_TOKEN(anon_sym_CARET_RBRACE); - END_STATE(); - case 219: - ACCEPT_TOKEN(anon_sym_CARET_RBRACE); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(197); - END_STATE(); - case 220: - ACCEPT_TOKEN(anon_sym_LBRACE_TILDE); - END_STATE(); - case 221: - ACCEPT_TOKEN(anon_sym_LBRACE_TILDE); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(197); - END_STATE(); - case 222: - ACCEPT_TOKEN(anon_sym_TILDE); - END_STATE(); - case 223: - ACCEPT_TOKEN(anon_sym_TILDE); - if (lookahead == '}') ADVANCE(226); - END_STATE(); - case 224: - ACCEPT_TOKEN(anon_sym_TILDE); - if (lookahead == '}') ADVANCE(227); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(197); - END_STATE(); - case 225: - ACCEPT_TOKEN(anon_sym_TILDE); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(197); - END_STATE(); - case 226: - ACCEPT_TOKEN(anon_sym_TILDE_RBRACE); - END_STATE(); - case 227: - ACCEPT_TOKEN(anon_sym_TILDE_RBRACE); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(197); - END_STATE(); - case 228: - ACCEPT_TOKEN(anon_sym_LBRACK_CARET); - END_STATE(); - case 229: - ACCEPT_TOKEN(anon_sym_LBRACK_CARET); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(197); - END_STATE(); - case 230: - ACCEPT_TOKEN(anon_sym_RBRACK); - END_STATE(); - case 231: - ACCEPT_TOKEN(anon_sym_RBRACK); + ACCEPT_TOKEN(aux_sym_value_token1); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(197); - END_STATE(); - case 232: - ACCEPT_TOKEN(sym__id); - if (lookahead == '-') ADVANCE(164); - if (lookahead == '}') ADVANCE(209); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); + lookahead != '\n' && + lookahead != '"') ADVANCE(209); END_STATE(); - case 233: - ACCEPT_TOKEN(sym__id); - if (lookahead == '-') ADVANCE(164); + case 210: + ACCEPT_TOKEN(aux_sym_value_token2); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); - END_STATE(); - case 234: - ACCEPT_TOKEN(sym__id); - if (lookahead == 'D') ADVANCE(245); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); - END_STATE(); - case 235: - ACCEPT_TOKEN(sym__id); - if (lookahead == 'E') ADVANCE(282); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); - END_STATE(); - case 236: - ACCEPT_TOKEN(sym__id); - if (lookahead == 'E') ADVANCE(291); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); - END_STATE(); - case 237: - ACCEPT_TOKEN(sym__id); - if (lookahead == 'F') ADVANCE(244); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); - END_STATE(); - case 238: - ACCEPT_TOKEN(sym__id); - if (lookahead == 'I') ADVANCE(246); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); - END_STATE(); - case 239: - ACCEPT_TOKEN(sym__id); - if (lookahead == 'I') ADVANCE(248); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); - END_STATE(); - case 240: - ACCEPT_TOKEN(sym__id); - if (lookahead == 'M') ADVANCE(236); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); - END_STATE(); - case 241: - ACCEPT_TOKEN(sym__id); - if (lookahead == 'N') ADVANCE(237); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); - END_STATE(); - case 242: - ACCEPT_TOKEN(sym__id); - if (lookahead == 'O') ADVANCE(247); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); - END_STATE(); - case 243: - ACCEPT_TOKEN(sym__id); - if (lookahead == 'O') ADVANCE(234); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); - END_STATE(); - case 244: - ACCEPT_TOKEN(sym__id); - if (lookahead == 'O') ADVANCE(285); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); - END_STATE(); - case 245: - ACCEPT_TOKEN(sym__id); - if (lookahead == 'O') ADVANCE(276); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); - END_STATE(); - case 246: - ACCEPT_TOKEN(sym__id); - if (lookahead == 'P') ADVANCE(279); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); - END_STATE(); - case 247: - ACCEPT_TOKEN(sym__id); - if (lookahead == 'T') ADVANCE(235); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); - END_STATE(); - case 248: - ACCEPT_TOKEN(sym__id); - if (lookahead == 'X') ADVANCE(240); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); - END_STATE(); - case 249: - ACCEPT_TOKEN(sym__id); - if (lookahead == 'X') ADVANCE(288); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); - END_STATE(); - case 250: - ACCEPT_TOKEN(sym__id); - if (lookahead == 'X') ADVANCE(249); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); - END_STATE(); - case 251: - ACCEPT_TOKEN(sym__id); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); - END_STATE(); - case 252: - ACCEPT_TOKEN(anon_sym_LBRACK_RBRACK); - END_STATE(); - case 253: - ACCEPT_TOKEN(anon_sym_BANG_LBRACK); - END_STATE(); - case 254: - ACCEPT_TOKEN(anon_sym_BANG_LBRACK); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(197); - END_STATE(); - case 255: - ACCEPT_TOKEN(anon_sym_LBRACK); - END_STATE(); - case 256: - ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == ']') ADVANCE(252); - END_STATE(); - case 257: - ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '^') ADVANCE(228); - END_STATE(); - case 258: - ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '^') ADVANCE(229); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(197); - END_STATE(); - case 259: - ACCEPT_TOKEN(anon_sym_RBRACK2); - END_STATE(); - case 260: - ACCEPT_TOKEN(anon_sym_RBRACK2); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(197); - END_STATE(); - case 261: - ACCEPT_TOKEN(anon_sym_LPAREN); - END_STATE(); - case 262: - ACCEPT_TOKEN(aux_sym_inline_link_destination_token1); - if (lookahead == '\r') ADVANCE(262); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != ')') ADVANCE(263); - END_STATE(); - case 263: - ACCEPT_TOKEN(aux_sym_inline_link_destination_token1); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != ')') ADVANCE(263); - END_STATE(); - case 264: - ACCEPT_TOKEN(anon_sym_RPAREN); - END_STATE(); - case 265: - ACCEPT_TOKEN(anon_sym_LBRACE2); - if (lookahead == '*') ADVANCE(142); - if (lookahead == '+') ADVANCE(203); - if (lookahead == '-') ADVANCE(207); - if (lookahead == '=') ADVANCE(199); - if (lookahead == '^') ADVANCE(212); - if (lookahead == '_') ADVANCE(137); - if (lookahead == '~') ADVANCE(220); - END_STATE(); - case 266: - ACCEPT_TOKEN(anon_sym_LBRACE2); - if (lookahead == '"' || - lookahead == '\'') ADVANCE(157); - if (lookahead == '*') ADVANCE(142); - if (lookahead == '+') ADVANCE(203); - if (lookahead == '-') ADVANCE(207); - if (lookahead == '=') ADVANCE(199); - if (lookahead == '^') ADVANCE(212); - if (lookahead == '_') ADVANCE(137); - if (lookahead == '~') ADVANCE(220); - END_STATE(); - case 267: - ACCEPT_TOKEN(anon_sym_LBRACE2); - if (lookahead == '"' || - lookahead == '\'') ADVANCE(158); - if (lookahead == '*') ADVANCE(143); - if (lookahead == '+') ADVANCE(204); - if (lookahead == '-') ADVANCE(208); - if (lookahead == '=') ADVANCE(200); - if (lookahead == '^') ADVANCE(213); - if (lookahead == '_') ADVANCE(138); - if (lookahead == '~') ADVANCE(221); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(197); - END_STATE(); - case 268: - ACCEPT_TOKEN(anon_sym_PERCENT); - END_STATE(); - case 269: - ACCEPT_TOKEN(aux_sym__comment_with_newline_token1); - END_STATE(); - case 270: - ACCEPT_TOKEN(aux_sym__comment_with_newline_token1); - if (lookahead == '\r') ADVANCE(270); - if (lookahead == '\\') ADVANCE(271); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '%') ADVANCE(269); - END_STATE(); - case 271: - ACCEPT_TOKEN(aux_sym__comment_with_newline_token1); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r' && - lookahead != '\\') ADVANCE(167); - END_STATE(); - case 272: - ACCEPT_TOKEN(anon_sym_LBRACE_EQ2); - END_STATE(); - case 273: - ACCEPT_TOKEN(anon_sym_DOLLAR); - END_STATE(); - case 274: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(197); - END_STATE(); - case 275: - ACCEPT_TOKEN(anon_sym_TODO); - END_STATE(); - case 276: - ACCEPT_TOKEN(anon_sym_TODO); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); - END_STATE(); - case 277: - ACCEPT_TOKEN(anon_sym_TODO); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(197); - END_STATE(); - case 278: - ACCEPT_TOKEN(anon_sym_WIP); - END_STATE(); - case 279: - ACCEPT_TOKEN(anon_sym_WIP); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); - END_STATE(); - case 280: - ACCEPT_TOKEN(anon_sym_WIP); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(197); - END_STATE(); - case 281: - ACCEPT_TOKEN(anon_sym_NOTE); - END_STATE(); - case 282: - ACCEPT_TOKEN(anon_sym_NOTE); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); - END_STATE(); - case 283: - ACCEPT_TOKEN(anon_sym_NOTE); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(197); - END_STATE(); - case 284: - ACCEPT_TOKEN(anon_sym_INFO); - END_STATE(); - case 285: - ACCEPT_TOKEN(anon_sym_INFO); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); - END_STATE(); - case 286: - ACCEPT_TOKEN(anon_sym_INFO); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(197); - END_STATE(); - case 287: - ACCEPT_TOKEN(anon_sym_XXX); - END_STATE(); - case 288: - ACCEPT_TOKEN(anon_sym_XXX); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); - END_STATE(); - case 289: - ACCEPT_TOKEN(anon_sym_XXX); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(197); - END_STATE(); - case 290: - ACCEPT_TOKEN(sym_fixme); - END_STATE(); - case 291: - ACCEPT_TOKEN(sym_fixme); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); - END_STATE(); - case 292: - ACCEPT_TOKEN(sym_fixme); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(197); - END_STATE(); - case 293: - ACCEPT_TOKEN(anon_sym_PIPE); - END_STATE(); - case 294: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(197); - END_STATE(); - case 295: - ACCEPT_TOKEN(sym_language); - if (lookahead == '\r') ADVANCE(295); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != ' ' && - lookahead != '=' && - lookahead != '{' && - lookahead != '}') ADVANCE(296); - END_STATE(); - case 296: - ACCEPT_TOKEN(sym_language); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != ' ' && - lookahead != '=' && - lookahead != '{' && - lookahead != '}') ADVANCE(296); - END_STATE(); - case 297: - ACCEPT_TOKEN(sym__whitespace); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(297); - END_STATE(); - case 298: - ACCEPT_TOKEN(sym__whitespace1); - if (lookahead == '\t') ADVANCE(299); - if (lookahead == ' ') ADVANCE(298); - if (lookahead == '*') ADVANCE(115); - END_STATE(); - case 299: - ACCEPT_TOKEN(sym__whitespace1); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(299); - END_STATE(); - case 300: - ACCEPT_TOKEN(sym__newline); - END_STATE(); - case 301: - ACCEPT_TOKEN(aux_sym__text_token1); - END_STATE(); - case 302: - ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == '-') ADVANCE(165); - END_STATE(); - case 303: - ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == '-') ADVANCE(165); - if (lookahead == '}') ADVANCE(209); - END_STATE(); - case 304: - ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == '.') ADVANCE(102); - END_STATE(); - case 305: - ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'I') ADVANCE(113); - END_STATE(); - case 306: - ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'I') ADVANCE(111); - END_STATE(); - case 307: - ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'N') ADVANCE(107); - END_STATE(); - case 308: - ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'O') ADVANCE(112); - END_STATE(); - case 309: - ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'O') ADVANCE(104); - END_STATE(); - case 310: - ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'X') ADVANCE(114); - END_STATE(); - case 311: - ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == '[') ADVANCE(253); - END_STATE(); - case 312: - ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == '}') ADVANCE(205); - END_STATE(); - case 313: - ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == '}') ADVANCE(201); - END_STATE(); - case 314: - ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == '}') ADVANCE(157); - END_STATE(); - case 315: - ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != ':') ADVANCE(103); - END_STATE(); - case 316: - ACCEPT_TOKEN(anon_sym_DOT); - END_STATE(); - case 317: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(102); - END_STATE(); - case 318: - ACCEPT_TOKEN(sym_identifier); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '}') ADVANCE(318); - END_STATE(); - case 319: - ACCEPT_TOKEN(anon_sym_EQ); - END_STATE(); - case 320: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '}') ADVANCE(201); - END_STATE(); - case 321: - ACCEPT_TOKEN(anon_sym_DQUOTE); - END_STATE(); - case 322: - ACCEPT_TOKEN(aux_sym_value_token1); - if (lookahead == '\r') ADVANCE(322); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '"') ADVANCE(323); - END_STATE(); - case 323: - ACCEPT_TOKEN(aux_sym_value_token1); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '"') ADVANCE(323); - END_STATE(); - case 324: - ACCEPT_TOKEN(aux_sym_value_token2); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(324); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); END_STATE(); default: return false; @@ -6816,1015 +4276,1135 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 119, .external_lex_state = 2}, - [2] = {.lex_state = 17, .external_lex_state = 2}, - [3] = {.lex_state = 60, .external_lex_state = 2}, - [4] = {.lex_state = 124, .external_lex_state = 2}, - [5] = {.lex_state = 72, .external_lex_state = 2}, - [6] = {.lex_state = 19, .external_lex_state = 2}, - [7] = {.lex_state = 82, .external_lex_state = 2}, - [8] = {.lex_state = 124, .external_lex_state = 3}, - [9] = {.lex_state = 1, .external_lex_state = 2}, - [10] = {.lex_state = 22, .external_lex_state = 2}, - [11] = {.lex_state = 25, .external_lex_state = 2}, - [12] = {.lex_state = 124, .external_lex_state = 2}, - [13] = {.lex_state = 64, .external_lex_state = 2}, - [14] = {.lex_state = 75, .external_lex_state = 2}, - [15] = {.lex_state = 121, .external_lex_state = 2}, - [16] = {.lex_state = 121, .external_lex_state = 2}, - [17] = {.lex_state = 121, .external_lex_state = 2}, - [18] = {.lex_state = 121, .external_lex_state = 2}, - [19] = {.lex_state = 121, .external_lex_state = 2}, - [20] = {.lex_state = 75, .external_lex_state = 2}, - [21] = {.lex_state = 121, .external_lex_state = 2}, - [22] = {.lex_state = 75, .external_lex_state = 2}, - [23] = {.lex_state = 75, .external_lex_state = 2}, - [24] = {.lex_state = 75, .external_lex_state = 2}, - [25] = {.lex_state = 29, .external_lex_state = 2}, - [26] = {.lex_state = 29, .external_lex_state = 2}, - [27] = {.lex_state = 29, .external_lex_state = 2}, - [28] = {.lex_state = 29, .external_lex_state = 2}, - [29] = {.lex_state = 29, .external_lex_state = 2}, - [30] = {.lex_state = 29, .external_lex_state = 2}, - [31] = {.lex_state = 75, .external_lex_state = 2}, - [32] = {.lex_state = 25, .external_lex_state = 2}, - [33] = {.lex_state = 25, .external_lex_state = 2}, - [34] = {.lex_state = 25, .external_lex_state = 2}, - [35] = {.lex_state = 25, .external_lex_state = 2}, - [36] = {.lex_state = 25, .external_lex_state = 2}, - [37] = {.lex_state = 124, .external_lex_state = 2}, - [38] = {.lex_state = 124, .external_lex_state = 2}, - [39] = {.lex_state = 124, .external_lex_state = 2}, - [40] = {.lex_state = 124, .external_lex_state = 2}, - [41] = {.lex_state = 124, .external_lex_state = 2}, - [42] = {.lex_state = 64, .external_lex_state = 2}, - [43] = {.lex_state = 124, .external_lex_state = 2}, - [44] = {.lex_state = 33, .external_lex_state = 2}, - [45] = {.lex_state = 87, .external_lex_state = 2}, - [46] = {.lex_state = 33, .external_lex_state = 2}, - [47] = {.lex_state = 33, .external_lex_state = 2}, - [48] = {.lex_state = 33, .external_lex_state = 2}, - [49] = {.lex_state = 33, .external_lex_state = 2}, - [50] = {.lex_state = 124, .external_lex_state = 2}, - [51] = {.lex_state = 33, .external_lex_state = 2}, - [52] = {.lex_state = 3, .external_lex_state = 2}, - [53] = {.lex_state = 3, .external_lex_state = 2}, - [54] = {.lex_state = 87, .external_lex_state = 2}, - [55] = {.lex_state = 3, .external_lex_state = 2}, - [56] = {.lex_state = 121, .external_lex_state = 3}, - [57] = {.lex_state = 121, .external_lex_state = 3}, - [58] = {.lex_state = 121, .external_lex_state = 3}, - [59] = {.lex_state = 121, .external_lex_state = 3}, - [60] = {.lex_state = 121, .external_lex_state = 3}, - [61] = {.lex_state = 64, .external_lex_state = 2}, - [62] = {.lex_state = 64, .external_lex_state = 2}, - [63] = {.lex_state = 3, .external_lex_state = 2}, - [64] = {.lex_state = 3, .external_lex_state = 2}, - [65] = {.lex_state = 121, .external_lex_state = 3}, - [66] = {.lex_state = 64, .external_lex_state = 2}, - [67] = {.lex_state = 87, .external_lex_state = 2}, - [68] = {.lex_state = 64, .external_lex_state = 2}, - [69] = {.lex_state = 3, .external_lex_state = 2}, - [70] = {.lex_state = 87, .external_lex_state = 2}, - [71] = {.lex_state = 87, .external_lex_state = 2}, - [72] = {.lex_state = 87, .external_lex_state = 2}, - [73] = {.lex_state = 121, .external_lex_state = 2}, - [74] = {.lex_state = 121, .external_lex_state = 2}, - [75] = {.lex_state = 121, .external_lex_state = 2}, - [76] = {.lex_state = 121, .external_lex_state = 2}, - [77] = {.lex_state = 121, .external_lex_state = 2}, - [78] = {.lex_state = 121, .external_lex_state = 2}, - [79] = {.lex_state = 119, .external_lex_state = 2}, - [80] = {.lex_state = 119, .external_lex_state = 2}, - [81] = {.lex_state = 23, .external_lex_state = 2}, - [82] = {.lex_state = 119, .external_lex_state = 2}, - [83] = {.lex_state = 119, .external_lex_state = 2}, - [84] = {.lex_state = 119, .external_lex_state = 2}, - [85] = {.lex_state = 119, .external_lex_state = 2}, - [86] = {.lex_state = 62, .external_lex_state = 2}, - [87] = {.lex_state = 27, .external_lex_state = 2}, - [88] = {.lex_state = 62, .external_lex_state = 2}, - [89] = {.lex_state = 119, .external_lex_state = 2}, - [90] = {.lex_state = 119, .external_lex_state = 2}, - [91] = {.lex_state = 27, .external_lex_state = 2}, - [92] = {.lex_state = 119, .external_lex_state = 2}, - [93] = {.lex_state = 119, .external_lex_state = 2}, - [94] = {.lex_state = 119, .external_lex_state = 2}, - [95] = {.lex_state = 86, .external_lex_state = 2}, - [96] = {.lex_state = 119, .external_lex_state = 2}, - [97] = {.lex_state = 119, .external_lex_state = 2}, - [98] = {.lex_state = 119, .external_lex_state = 2}, - [99] = {.lex_state = 119, .external_lex_state = 2}, - [100] = {.lex_state = 119, .external_lex_state = 2}, - [101] = {.lex_state = 119, .external_lex_state = 2}, - [102] = {.lex_state = 73, .external_lex_state = 2}, - [103] = {.lex_state = 73, .external_lex_state = 2}, - [104] = {.lex_state = 2, .external_lex_state = 2}, - [105] = {.lex_state = 119, .external_lex_state = 2}, + [1] = {.lex_state = 39, .external_lex_state = 2}, + [2] = {.lex_state = 1, .external_lex_state = 2}, + [3] = {.lex_state = 44, .external_lex_state = 3}, + [4] = {.lex_state = 44, .external_lex_state = 4}, + [5] = {.lex_state = 44, .external_lex_state = 5}, + [6] = {.lex_state = 44, .external_lex_state = 6}, + [7] = {.lex_state = 44, .external_lex_state = 2}, + [8] = {.lex_state = 44, .external_lex_state = 7}, + [9] = {.lex_state = 44, .external_lex_state = 8}, + [10] = {.lex_state = 44, .external_lex_state = 9}, + [11] = {.lex_state = 6, .external_lex_state = 2}, + [12] = {.lex_state = 44, .external_lex_state = 2}, + [13] = {.lex_state = 41, .external_lex_state = 6}, + [14] = {.lex_state = 41, .external_lex_state = 7}, + [15] = {.lex_state = 44, .external_lex_state = 2}, + [16] = {.lex_state = 41, .external_lex_state = 2}, + [17] = {.lex_state = 41, .external_lex_state = 5}, + [18] = {.lex_state = 41, .external_lex_state = 8}, + [19] = {.lex_state = 41, .external_lex_state = 9}, + [20] = {.lex_state = 44, .external_lex_state = 2}, + [21] = {.lex_state = 41, .external_lex_state = 3}, + [22] = {.lex_state = 41, .external_lex_state = 4}, + [23] = {.lex_state = 41, .external_lex_state = 2}, + [24] = {.lex_state = 39, .external_lex_state = 2}, + [25] = {.lex_state = 39, .external_lex_state = 2}, + [26] = {.lex_state = 39, .external_lex_state = 2}, + [27] = {.lex_state = 39, .external_lex_state = 2}, + [28] = {.lex_state = 39, .external_lex_state = 2}, + [29] = {.lex_state = 39, .external_lex_state = 2}, + [30] = {.lex_state = 39, .external_lex_state = 2}, + [31] = {.lex_state = 39, .external_lex_state = 2}, + [32] = {.lex_state = 39, .external_lex_state = 2}, + [33] = {.lex_state = 39, .external_lex_state = 2}, + [34] = {.lex_state = 39, .external_lex_state = 2}, + [35] = {.lex_state = 39, .external_lex_state = 2}, + [36] = {.lex_state = 39, .external_lex_state = 2}, + [37] = {.lex_state = 39, .external_lex_state = 2}, + [38] = {.lex_state = 39, .external_lex_state = 2}, + [39] = {.lex_state = 39, .external_lex_state = 2}, + [40] = {.lex_state = 5, .external_lex_state = 2}, + [41] = {.lex_state = 39, .external_lex_state = 2}, + [42] = {.lex_state = 39, .external_lex_state = 2}, + [43] = {.lex_state = 39, .external_lex_state = 2}, + [44] = {.lex_state = 39, .external_lex_state = 2}, + [45] = {.lex_state = 39, .external_lex_state = 2}, + [46] = {.lex_state = 39, .external_lex_state = 2}, + [47] = {.lex_state = 39, .external_lex_state = 2}, + [48] = {.lex_state = 39, .external_lex_state = 2}, + [49] = {.lex_state = 39, .external_lex_state = 2}, + [50] = {.lex_state = 39, .external_lex_state = 2}, + [51] = {.lex_state = 39, .external_lex_state = 2}, + [52] = {.lex_state = 39, .external_lex_state = 2}, + [53] = {.lex_state = 39, .external_lex_state = 2}, + [54] = {.lex_state = 39, .external_lex_state = 2}, + [55] = {.lex_state = 39, .external_lex_state = 2}, + [56] = {.lex_state = 39, .external_lex_state = 2}, + [57] = {.lex_state = 39, .external_lex_state = 2}, + [58] = {.lex_state = 39, .external_lex_state = 2}, + [59] = {.lex_state = 39, .external_lex_state = 2}, + [60] = {.lex_state = 39, .external_lex_state = 2}, + [61] = {.lex_state = 39, .external_lex_state = 2}, + [62] = {.lex_state = 39, .external_lex_state = 2}, + [63] = {.lex_state = 39, .external_lex_state = 2}, + [64] = {.lex_state = 39, .external_lex_state = 2}, + [65] = {.lex_state = 39, .external_lex_state = 3}, + [66] = {.lex_state = 5, .external_lex_state = 2}, + [67] = {.lex_state = 39, .external_lex_state = 2}, + [68] = {.lex_state = 39, .external_lex_state = 2}, + [69] = {.lex_state = 39, .external_lex_state = 2}, + [70] = {.lex_state = 39, .external_lex_state = 2}, + [71] = {.lex_state = 39, .external_lex_state = 2}, + [72] = {.lex_state = 39, .external_lex_state = 2}, + [73] = {.lex_state = 39, .external_lex_state = 2}, + [74] = {.lex_state = 39, .external_lex_state = 2}, + [75] = {.lex_state = 39, .external_lex_state = 2}, + [76] = {.lex_state = 39, .external_lex_state = 2}, + [77] = {.lex_state = 39, .external_lex_state = 2}, + [78] = {.lex_state = 2, .external_lex_state = 2}, + [79] = {.lex_state = 39, .external_lex_state = 7}, + [80] = {.lex_state = 39, .external_lex_state = 2}, + [81] = {.lex_state = 39, .external_lex_state = 2}, + [82] = {.lex_state = 39, .external_lex_state = 2}, + [83] = {.lex_state = 39, .external_lex_state = 2}, + [84] = {.lex_state = 39, .external_lex_state = 2}, + [85] = {.lex_state = 39, .external_lex_state = 2}, + [86] = {.lex_state = 39, .external_lex_state = 2}, + [87] = {.lex_state = 39, .external_lex_state = 2}, + [88] = {.lex_state = 39, .external_lex_state = 2}, + [89] = {.lex_state = 39, .external_lex_state = 2}, + [90] = {.lex_state = 39, .external_lex_state = 2}, + [91] = {.lex_state = 39, .external_lex_state = 2}, + [92] = {.lex_state = 39, .external_lex_state = 2}, + [93] = {.lex_state = 39, .external_lex_state = 6}, + [94] = {.lex_state = 39, .external_lex_state = 2}, + [95] = {.lex_state = 39, .external_lex_state = 2}, + [96] = {.lex_state = 39, .external_lex_state = 4}, + [97] = {.lex_state = 39, .external_lex_state = 2}, + [98] = {.lex_state = 39, .external_lex_state = 2}, + [99] = {.lex_state = 39, .external_lex_state = 2}, + [100] = {.lex_state = 39, .external_lex_state = 2}, + [101] = {.lex_state = 39, .external_lex_state = 2}, + [102] = {.lex_state = 39, .external_lex_state = 2}, + [103] = {.lex_state = 39, .external_lex_state = 3}, + [104] = {.lex_state = 39, .external_lex_state = 7}, + [105] = {.lex_state = 39, .external_lex_state = 2}, [106] = {.lex_state = 2, .external_lex_state = 2}, - [107] = {.lex_state = 119, .external_lex_state = 2}, - [108] = {.lex_state = 119, .external_lex_state = 2}, - [109] = {.lex_state = 119, .external_lex_state = 2}, - [110] = {.lex_state = 119, .external_lex_state = 2}, - [111] = {.lex_state = 119, .external_lex_state = 2}, - [112] = {.lex_state = 119, .external_lex_state = 2}, - [113] = {.lex_state = 119, .external_lex_state = 2}, - [114] = {.lex_state = 23, .external_lex_state = 2}, - [115] = {.lex_state = 31, .external_lex_state = 2}, - [116] = {.lex_state = 83, .external_lex_state = 2}, - [117] = {.lex_state = 86, .external_lex_state = 2}, - [118] = {.lex_state = 83, .external_lex_state = 2}, - [119] = {.lex_state = 119, .external_lex_state = 2}, - [120] = {.lex_state = 119, .external_lex_state = 2}, - [121] = {.lex_state = 119, .external_lex_state = 2}, - [122] = {.lex_state = 119, .external_lex_state = 2}, - [123] = {.lex_state = 31, .external_lex_state = 2}, - [124] = {.lex_state = 119, .external_lex_state = 2}, - [125] = {.lex_state = 119, .external_lex_state = 2}, - [126] = {.lex_state = 119, .external_lex_state = 2}, - [127] = {.lex_state = 119, .external_lex_state = 2}, - [128] = {.lex_state = 119, .external_lex_state = 2}, - [129] = {.lex_state = 119, .external_lex_state = 2}, - [130] = {.lex_state = 119, .external_lex_state = 2}, - [131] = {.lex_state = 119, .external_lex_state = 2}, - [132] = {.lex_state = 34, .external_lex_state = 2}, - [133] = {.lex_state = 117, .external_lex_state = 3}, - [134] = {.lex_state = 37, .external_lex_state = 2}, - [135] = {.lex_state = 10, .external_lex_state = 2}, - [136] = {.lex_state = 33, .external_lex_state = 2}, - [137] = {.lex_state = 87, .external_lex_state = 2}, - [138] = {.lex_state = 65, .external_lex_state = 2}, - [139] = {.lex_state = 124, .external_lex_state = 2}, - [140] = {.lex_state = 5, .external_lex_state = 2}, - [141] = {.lex_state = 30, .external_lex_state = 2}, - [142] = {.lex_state = 39, .external_lex_state = 2}, - [143] = {.lex_state = 11, .external_lex_state = 2}, - [144] = {.lex_state = 9, .external_lex_state = 2}, - [145] = {.lex_state = 127, .external_lex_state = 2}, - [146] = {.lex_state = 122, .external_lex_state = 3}, - [147] = {.lex_state = 12, .external_lex_state = 2}, - [148] = {.lex_state = 29, .external_lex_state = 2}, - [149] = {.lex_state = 85, .external_lex_state = 2}, - [150] = {.lex_state = 64, .external_lex_state = 2}, - [151] = {.lex_state = 26, .external_lex_state = 2}, - [152] = {.lex_state = 88, .external_lex_state = 2}, - [153] = {.lex_state = 25, .external_lex_state = 2}, - [154] = {.lex_state = 14, .external_lex_state = 2}, - [155] = {.lex_state = 68, .external_lex_state = 2}, - [156] = {.lex_state = 79, .external_lex_state = 2}, - [157] = {.lex_state = 122, .external_lex_state = 2}, - [158] = {.lex_state = 92, .external_lex_state = 2}, - [159] = {.lex_state = 6, .external_lex_state = 2}, - [160] = {.lex_state = 3, .external_lex_state = 2}, - [161] = {.lex_state = 121, .external_lex_state = 3}, - [162] = {.lex_state = 43, .external_lex_state = 2}, - [163] = {.lex_state = 117, .external_lex_state = 2}, - [164] = {.lex_state = 15, .external_lex_state = 2}, - [165] = {.lex_state = 127, .external_lex_state = 3}, - [166] = {.lex_state = 76, .external_lex_state = 2}, - [167] = {.lex_state = 4, .external_lex_state = 2}, - [168] = {.lex_state = 121, .external_lex_state = 2}, - [169] = {.lex_state = 7, .external_lex_state = 2}, - [170] = {.lex_state = 75, .external_lex_state = 2}, - [171] = {.lex_state = 46, .external_lex_state = 2}, - [172] = {.lex_state = 25, .external_lex_state = 2}, - [173] = {.lex_state = 47, .external_lex_state = 2}, - [174] = {.lex_state = 29, .external_lex_state = 2}, - [175] = {.lex_state = 49, .external_lex_state = 2}, - [176] = {.lex_state = 121, .external_lex_state = 3}, - [177] = {.lex_state = 121, .external_lex_state = 4}, - [178] = {.lex_state = 128, .external_lex_state = 3}, - [179] = {.lex_state = 75, .external_lex_state = 2}, - [180] = {.lex_state = 25, .external_lex_state = 5}, - [181] = {.lex_state = 25, .external_lex_state = 2}, - [182] = {.lex_state = 69, .external_lex_state = 2}, - [183] = {.lex_state = 3, .external_lex_state = 2}, - [184] = {.lex_state = 121, .external_lex_state = 3}, - [185] = {.lex_state = 8, .external_lex_state = 2}, - [186] = {.lex_state = 3, .external_lex_state = 2}, - [187] = {.lex_state = 3, .external_lex_state = 5}, - [188] = {.lex_state = 29, .external_lex_state = 5}, - [189] = {.lex_state = 87, .external_lex_state = 5}, - [190] = {.lex_state = 124, .external_lex_state = 2}, - [191] = {.lex_state = 87, .external_lex_state = 2}, - [192] = {.lex_state = 121, .external_lex_state = 2}, - [193] = {.lex_state = 122, .external_lex_state = 2}, - [194] = {.lex_state = 75, .external_lex_state = 2}, - [195] = {.lex_state = 124, .external_lex_state = 5}, - [196] = {.lex_state = 75, .external_lex_state = 5}, - [197] = {.lex_state = 128, .external_lex_state = 2}, - [198] = {.lex_state = 121, .external_lex_state = 2}, - [199] = {.lex_state = 80, .external_lex_state = 2}, - [200] = {.lex_state = 29, .external_lex_state = 2}, - [201] = {.lex_state = 124, .external_lex_state = 2}, - [202] = {.lex_state = 52, .external_lex_state = 2}, - [203] = {.lex_state = 33, .external_lex_state = 5}, - [204] = {.lex_state = 64, .external_lex_state = 2}, - [205] = {.lex_state = 33, .external_lex_state = 2}, - [206] = {.lex_state = 64, .external_lex_state = 5}, - [207] = {.lex_state = 54, .external_lex_state = 2}, - [208] = {.lex_state = 127, .external_lex_state = 2}, - [209] = {.lex_state = 64, .external_lex_state = 2}, - [210] = {.lex_state = 93, .external_lex_state = 2}, - [211] = {.lex_state = 87, .external_lex_state = 2}, - [212] = {.lex_state = 33, .external_lex_state = 2}, - [213] = {.lex_state = 117, .external_lex_state = 2}, - [214] = {.lex_state = 121, .external_lex_state = 5}, - [215] = {.lex_state = 121, .external_lex_state = 2}, - [216] = {.lex_state = 121, .external_lex_state = 3}, - [217] = {.lex_state = 121, .external_lex_state = 5}, - [218] = {.lex_state = 29, .external_lex_state = 2}, - [219] = {.lex_state = 29, .external_lex_state = 2}, - [220] = {.lex_state = 29, .external_lex_state = 2}, - [221] = {.lex_state = 121, .external_lex_state = 2}, - [222] = {.lex_state = 29, .external_lex_state = 2}, - [223] = {.lex_state = 29, .external_lex_state = 2}, - [224] = {.lex_state = 29, .external_lex_state = 2}, - [225] = {.lex_state = 29, .external_lex_state = 2}, - [226] = {.lex_state = 29, .external_lex_state = 2}, - [227] = {.lex_state = 29, .external_lex_state = 2}, - [228] = {.lex_state = 29, .external_lex_state = 2}, - [229] = {.lex_state = 29, .external_lex_state = 2}, - [230] = {.lex_state = 29, .external_lex_state = 2}, - [231] = {.lex_state = 29, .external_lex_state = 2}, - [232] = {.lex_state = 121, .external_lex_state = 2}, - [233] = {.lex_state = 29, .external_lex_state = 2}, - [234] = {.lex_state = 29, .external_lex_state = 2}, - [235] = {.lex_state = 29, .external_lex_state = 2}, - [236] = {.lex_state = 29, .external_lex_state = 2}, - [237] = {.lex_state = 29, .external_lex_state = 2}, - [238] = {.lex_state = 29, .external_lex_state = 2}, - [239] = {.lex_state = 29, .external_lex_state = 2}, - [240] = {.lex_state = 64, .external_lex_state = 2}, - [241] = {.lex_state = 64, .external_lex_state = 2}, - [242] = {.lex_state = 64, .external_lex_state = 2}, - [243] = {.lex_state = 64, .external_lex_state = 2}, - [244] = {.lex_state = 62, .external_lex_state = 2}, - [245] = {.lex_state = 64, .external_lex_state = 2}, - [246] = {.lex_state = 64, .external_lex_state = 2}, - [247] = {.lex_state = 121, .external_lex_state = 2}, - [248] = {.lex_state = 64, .external_lex_state = 2}, - [249] = {.lex_state = 64, .external_lex_state = 2}, - [250] = {.lex_state = 64, .external_lex_state = 2}, - [251] = {.lex_state = 64, .external_lex_state = 2}, - [252] = {.lex_state = 64, .external_lex_state = 2}, - [253] = {.lex_state = 64, .external_lex_state = 2}, - [254] = {.lex_state = 64, .external_lex_state = 2}, - [255] = {.lex_state = 64, .external_lex_state = 2}, - [256] = {.lex_state = 121, .external_lex_state = 2}, - [257] = {.lex_state = 64, .external_lex_state = 2}, - [258] = {.lex_state = 64, .external_lex_state = 2}, - [259] = {.lex_state = 64, .external_lex_state = 2}, - [260] = {.lex_state = 64, .external_lex_state = 2}, - [261] = {.lex_state = 64, .external_lex_state = 2}, - [262] = {.lex_state = 64, .external_lex_state = 2}, - [263] = {.lex_state = 64, .external_lex_state = 2}, - [264] = {.lex_state = 64, .external_lex_state = 2}, - [265] = {.lex_state = 64, .external_lex_state = 2}, - [266] = {.lex_state = 64, .external_lex_state = 2}, - [267] = {.lex_state = 119, .external_lex_state = 2}, - [268] = {.lex_state = 64, .external_lex_state = 2}, - [269] = {.lex_state = 64, .external_lex_state = 2}, - [270] = {.lex_state = 64, .external_lex_state = 2}, - [271] = {.lex_state = 64, .external_lex_state = 2}, - [272] = {.lex_state = 64, .external_lex_state = 2}, - [273] = {.lex_state = 64, .external_lex_state = 2}, - [274] = {.lex_state = 64, .external_lex_state = 2}, - [275] = {.lex_state = 33, .external_lex_state = 2}, - [276] = {.lex_state = 29, .external_lex_state = 2}, - [277] = {.lex_state = 75, .external_lex_state = 2}, - [278] = {.lex_state = 29, .external_lex_state = 2}, - [279] = {.lex_state = 29, .external_lex_state = 2}, - [280] = {.lex_state = 29, .external_lex_state = 2}, - [281] = {.lex_state = 121, .external_lex_state = 2}, - [282] = {.lex_state = 29, .external_lex_state = 2}, - [283] = {.lex_state = 29, .external_lex_state = 2}, - [284] = {.lex_state = 27, .external_lex_state = 2}, - [285] = {.lex_state = 29, .external_lex_state = 2}, - [286] = {.lex_state = 29, .external_lex_state = 2}, - [287] = {.lex_state = 29, .external_lex_state = 2}, - [288] = {.lex_state = 75, .external_lex_state = 2}, - [289] = {.lex_state = 75, .external_lex_state = 2}, - [290] = {.lex_state = 75, .external_lex_state = 2}, - [291] = {.lex_state = 73, .external_lex_state = 2}, - [292] = {.lex_state = 29, .external_lex_state = 2}, - [293] = {.lex_state = 33, .external_lex_state = 2}, - [294] = {.lex_state = 75, .external_lex_state = 2}, - [295] = {.lex_state = 75, .external_lex_state = 2}, - [296] = {.lex_state = 13, .external_lex_state = 2}, - [297] = {.lex_state = 75, .external_lex_state = 2}, - [298] = {.lex_state = 75, .external_lex_state = 2}, - [299] = {.lex_state = 75, .external_lex_state = 2}, - [300] = {.lex_state = 75, .external_lex_state = 2}, - [301] = {.lex_state = 75, .external_lex_state = 2}, - [302] = {.lex_state = 75, .external_lex_state = 2}, - [303] = {.lex_state = 75, .external_lex_state = 2}, - [304] = {.lex_state = 33, .external_lex_state = 2}, - [305] = {.lex_state = 33, .external_lex_state = 2}, - [306] = {.lex_state = 33, .external_lex_state = 2}, - [307] = {.lex_state = 75, .external_lex_state = 2}, - [308] = {.lex_state = 121, .external_lex_state = 2}, - [309] = {.lex_state = 75, .external_lex_state = 2}, - [310] = {.lex_state = 75, .external_lex_state = 2}, - [311] = {.lex_state = 75, .external_lex_state = 2}, - [312] = {.lex_state = 75, .external_lex_state = 2}, - [313] = {.lex_state = 75, .external_lex_state = 2}, - [314] = {.lex_state = 75, .external_lex_state = 2}, - [315] = {.lex_state = 75, .external_lex_state = 2}, - [316] = {.lex_state = 75, .external_lex_state = 2}, - [317] = {.lex_state = 75, .external_lex_state = 2}, - [318] = {.lex_state = 75, .external_lex_state = 2}, - [319] = {.lex_state = 87, .external_lex_state = 2}, - [320] = {.lex_state = 75, .external_lex_state = 2}, - [321] = {.lex_state = 75, .external_lex_state = 2}, - [322] = {.lex_state = 75, .external_lex_state = 2}, - [323] = {.lex_state = 75, .external_lex_state = 2}, - [324] = {.lex_state = 75, .external_lex_state = 2}, - [325] = {.lex_state = 75, .external_lex_state = 2}, - [326] = {.lex_state = 75, .external_lex_state = 2}, - [327] = {.lex_state = 33, .external_lex_state = 2}, - [328] = {.lex_state = 33, .external_lex_state = 2}, - [329] = {.lex_state = 25, .external_lex_state = 2}, - [330] = {.lex_state = 33, .external_lex_state = 2}, - [331] = {.lex_state = 87, .external_lex_state = 2}, - [332] = {.lex_state = 33, .external_lex_state = 2}, - [333] = {.lex_state = 33, .external_lex_state = 2}, - [334] = {.lex_state = 33, .external_lex_state = 2}, - [335] = {.lex_state = 33, .external_lex_state = 2}, - [336] = {.lex_state = 33, .external_lex_state = 2}, - [337] = {.lex_state = 33, .external_lex_state = 2}, - [338] = {.lex_state = 33, .external_lex_state = 2}, - [339] = {.lex_state = 33, .external_lex_state = 2}, - [340] = {.lex_state = 25, .external_lex_state = 2}, - [341] = {.lex_state = 25, .external_lex_state = 2}, - [342] = {.lex_state = 25, .external_lex_state = 2}, - [343] = {.lex_state = 23, .external_lex_state = 2}, - [344] = {.lex_state = 33, .external_lex_state = 2}, - [345] = {.lex_state = 33, .external_lex_state = 2}, - [346] = {.lex_state = 25, .external_lex_state = 2}, - [347] = {.lex_state = 25, .external_lex_state = 2}, - [348] = {.lex_state = 121, .external_lex_state = 3}, - [349] = {.lex_state = 25, .external_lex_state = 2}, - [350] = {.lex_state = 25, .external_lex_state = 2}, - [351] = {.lex_state = 25, .external_lex_state = 2}, - [352] = {.lex_state = 25, .external_lex_state = 2}, - [353] = {.lex_state = 25, .external_lex_state = 2}, - [354] = {.lex_state = 25, .external_lex_state = 2}, - [355] = {.lex_state = 25, .external_lex_state = 2}, - [356] = {.lex_state = 121, .external_lex_state = 3}, - [357] = {.lex_state = 33, .external_lex_state = 2}, - [358] = {.lex_state = 33, .external_lex_state = 2}, - [359] = {.lex_state = 25, .external_lex_state = 2}, - [360] = {.lex_state = 3, .external_lex_state = 2}, - [361] = {.lex_state = 25, .external_lex_state = 2}, - [362] = {.lex_state = 25, .external_lex_state = 2}, - [363] = {.lex_state = 25, .external_lex_state = 2}, - [364] = {.lex_state = 25, .external_lex_state = 2}, - [365] = {.lex_state = 25, .external_lex_state = 2}, - [366] = {.lex_state = 25, .external_lex_state = 2}, - [367] = {.lex_state = 25, .external_lex_state = 2}, - [368] = {.lex_state = 25, .external_lex_state = 2}, - [369] = {.lex_state = 25, .external_lex_state = 2}, - [370] = {.lex_state = 25, .external_lex_state = 2}, - [371] = {.lex_state = 3, .external_lex_state = 2}, - [372] = {.lex_state = 25, .external_lex_state = 2}, - [373] = {.lex_state = 25, .external_lex_state = 2}, - [374] = {.lex_state = 25, .external_lex_state = 2}, - [375] = {.lex_state = 25, .external_lex_state = 2}, - [376] = {.lex_state = 25, .external_lex_state = 2}, - [377] = {.lex_state = 25, .external_lex_state = 2}, - [378] = {.lex_state = 25, .external_lex_state = 2}, - [379] = {.lex_state = 33, .external_lex_state = 2}, - [380] = {.lex_state = 33, .external_lex_state = 2}, - [381] = {.lex_state = 124, .external_lex_state = 2}, - [382] = {.lex_state = 33, .external_lex_state = 2}, - [383] = {.lex_state = 33, .external_lex_state = 2}, - [384] = {.lex_state = 33, .external_lex_state = 2}, - [385] = {.lex_state = 33, .external_lex_state = 2}, - [386] = {.lex_state = 124, .external_lex_state = 2}, - [387] = {.lex_state = 33, .external_lex_state = 2}, - [388] = {.lex_state = 33, .external_lex_state = 2}, - [389] = {.lex_state = 31, .external_lex_state = 2}, - [390] = {.lex_state = 33, .external_lex_state = 2}, - [391] = {.lex_state = 33, .external_lex_state = 2}, - [392] = {.lex_state = 124, .external_lex_state = 2}, - [393] = {.lex_state = 124, .external_lex_state = 2}, - [394] = {.lex_state = 124, .external_lex_state = 2}, - [395] = {.lex_state = 83, .external_lex_state = 2}, - [396] = {.lex_state = 124, .external_lex_state = 2}, - [397] = {.lex_state = 33, .external_lex_state = 2}, - [398] = {.lex_state = 124, .external_lex_state = 2}, - [399] = {.lex_state = 124, .external_lex_state = 2}, - [400] = {.lex_state = 25, .external_lex_state = 2}, - [401] = {.lex_state = 124, .external_lex_state = 2}, - [402] = {.lex_state = 124, .external_lex_state = 2}, - [403] = {.lex_state = 124, .external_lex_state = 2}, - [404] = {.lex_state = 124, .external_lex_state = 2}, - [405] = {.lex_state = 124, .external_lex_state = 2}, - [406] = {.lex_state = 124, .external_lex_state = 2}, - [407] = {.lex_state = 124, .external_lex_state = 2}, - [408] = {.lex_state = 25, .external_lex_state = 2}, - [409] = {.lex_state = 75, .external_lex_state = 2}, - [410] = {.lex_state = 75, .external_lex_state = 2}, - [411] = {.lex_state = 124, .external_lex_state = 2}, - [412] = {.lex_state = 64, .external_lex_state = 2}, - [413] = {.lex_state = 124, .external_lex_state = 2}, - [414] = {.lex_state = 124, .external_lex_state = 2}, - [415] = {.lex_state = 124, .external_lex_state = 2}, - [416] = {.lex_state = 124, .external_lex_state = 2}, - [417] = {.lex_state = 124, .external_lex_state = 2}, - [418] = {.lex_state = 124, .external_lex_state = 2}, - [419] = {.lex_state = 124, .external_lex_state = 2}, - [420] = {.lex_state = 124, .external_lex_state = 2}, - [421] = {.lex_state = 124, .external_lex_state = 2}, - [422] = {.lex_state = 124, .external_lex_state = 2}, - [423] = {.lex_state = 64, .external_lex_state = 2}, - [424] = {.lex_state = 124, .external_lex_state = 2}, - [425] = {.lex_state = 124, .external_lex_state = 2}, - [426] = {.lex_state = 124, .external_lex_state = 2}, - [427] = {.lex_state = 124, .external_lex_state = 2}, - [428] = {.lex_state = 124, .external_lex_state = 2}, - [429] = {.lex_state = 124, .external_lex_state = 2}, - [430] = {.lex_state = 124, .external_lex_state = 2}, - [431] = {.lex_state = 29, .external_lex_state = 2}, - [432] = {.lex_state = 121, .external_lex_state = 2}, - [433] = {.lex_state = 3, .external_lex_state = 2}, - [434] = {.lex_state = 29, .external_lex_state = 2}, - [435] = {.lex_state = 33, .external_lex_state = 2}, - [436] = {.lex_state = 33, .external_lex_state = 2}, - [437] = {.lex_state = 121, .external_lex_state = 2}, - [438] = {.lex_state = 29, .external_lex_state = 2}, - [439] = {.lex_state = 121, .external_lex_state = 2}, - [440] = {.lex_state = 121, .external_lex_state = 2}, - [441] = {.lex_state = 121, .external_lex_state = 2}, - [442] = {.lex_state = 121, .external_lex_state = 2}, - [443] = {.lex_state = 121, .external_lex_state = 2}, - [444] = {.lex_state = 3, .external_lex_state = 2}, - [445] = {.lex_state = 3, .external_lex_state = 2}, - [446] = {.lex_state = 3, .external_lex_state = 2}, - [447] = {.lex_state = 2, .external_lex_state = 2}, - [448] = {.lex_state = 121, .external_lex_state = 2}, - [449] = {.lex_state = 121, .external_lex_state = 2}, - [450] = {.lex_state = 3, .external_lex_state = 2}, - [451] = {.lex_state = 3, .external_lex_state = 2}, - [452] = {.lex_state = 121, .external_lex_state = 2}, - [453] = {.lex_state = 3, .external_lex_state = 2}, - [454] = {.lex_state = 3, .external_lex_state = 2}, - [455] = {.lex_state = 3, .external_lex_state = 2}, - [456] = {.lex_state = 3, .external_lex_state = 2}, - [457] = {.lex_state = 3, .external_lex_state = 2}, - [458] = {.lex_state = 3, .external_lex_state = 2}, - [459] = {.lex_state = 3, .external_lex_state = 2}, - [460] = {.lex_state = 121, .external_lex_state = 2}, - [461] = {.lex_state = 121, .external_lex_state = 2}, - [462] = {.lex_state = 121, .external_lex_state = 2}, - [463] = {.lex_state = 3, .external_lex_state = 2}, - [464] = {.lex_state = 121, .external_lex_state = 2}, - [465] = {.lex_state = 3, .external_lex_state = 2}, - [466] = {.lex_state = 3, .external_lex_state = 2}, - [467] = {.lex_state = 3, .external_lex_state = 2}, - [468] = {.lex_state = 3, .external_lex_state = 2}, - [469] = {.lex_state = 3, .external_lex_state = 2}, - [470] = {.lex_state = 3, .external_lex_state = 2}, - [471] = {.lex_state = 3, .external_lex_state = 2}, - [472] = {.lex_state = 3, .external_lex_state = 2}, - [473] = {.lex_state = 3, .external_lex_state = 2}, - [474] = {.lex_state = 3, .external_lex_state = 2}, - [475] = {.lex_state = 128, .external_lex_state = 2}, - [476] = {.lex_state = 3, .external_lex_state = 2}, - [477] = {.lex_state = 3, .external_lex_state = 2}, - [478] = {.lex_state = 3, .external_lex_state = 2}, - [479] = {.lex_state = 3, .external_lex_state = 2}, - [480] = {.lex_state = 3, .external_lex_state = 2}, - [481] = {.lex_state = 3, .external_lex_state = 2}, - [482] = {.lex_state = 3, .external_lex_state = 2}, - [483] = {.lex_state = 121, .external_lex_state = 2}, - [484] = {.lex_state = 121, .external_lex_state = 2}, - [485] = {.lex_state = 121, .external_lex_state = 3}, - [486] = {.lex_state = 121, .external_lex_state = 2}, - [487] = {.lex_state = 121, .external_lex_state = 2}, - [488] = {.lex_state = 121, .external_lex_state = 2}, - [489] = {.lex_state = 121, .external_lex_state = 3}, - [490] = {.lex_state = 121, .external_lex_state = 3}, - [491] = {.lex_state = 121, .external_lex_state = 3}, - [492] = {.lex_state = 121, .external_lex_state = 3}, - [493] = {.lex_state = 121, .external_lex_state = 3}, - [494] = {.lex_state = 121, .external_lex_state = 3}, - [495] = {.lex_state = 121, .external_lex_state = 3}, - [496] = {.lex_state = 121, .external_lex_state = 3}, - [497] = {.lex_state = 121, .external_lex_state = 3}, - [498] = {.lex_state = 121, .external_lex_state = 3}, - [499] = {.lex_state = 121, .external_lex_state = 3}, - [500] = {.lex_state = 121, .external_lex_state = 2}, - [501] = {.lex_state = 121, .external_lex_state = 3}, - [502] = {.lex_state = 121, .external_lex_state = 2}, - [503] = {.lex_state = 121, .external_lex_state = 3}, - [504] = {.lex_state = 121, .external_lex_state = 3}, - [505] = {.lex_state = 121, .external_lex_state = 3}, - [506] = {.lex_state = 121, .external_lex_state = 3}, - [507] = {.lex_state = 121, .external_lex_state = 3}, - [508] = {.lex_state = 121, .external_lex_state = 3}, - [509] = {.lex_state = 121, .external_lex_state = 3}, - [510] = {.lex_state = 121, .external_lex_state = 3}, - [511] = {.lex_state = 121, .external_lex_state = 3}, - [512] = {.lex_state = 121, .external_lex_state = 3}, - [513] = {.lex_state = 121, .external_lex_state = 2}, - [514] = {.lex_state = 121, .external_lex_state = 3}, - [515] = {.lex_state = 121, .external_lex_state = 3}, - [516] = {.lex_state = 121, .external_lex_state = 3}, - [517] = {.lex_state = 121, .external_lex_state = 3}, - [518] = {.lex_state = 121, .external_lex_state = 3}, - [519] = {.lex_state = 121, .external_lex_state = 3}, - [520] = {.lex_state = 121, .external_lex_state = 3}, - [521] = {.lex_state = 121, .external_lex_state = 2}, - [522] = {.lex_state = 121, .external_lex_state = 2}, - [523] = {.lex_state = 87, .external_lex_state = 2}, - [524] = {.lex_state = 121, .external_lex_state = 2}, - [525] = {.lex_state = 121, .external_lex_state = 2}, - [526] = {.lex_state = 121, .external_lex_state = 2}, - [527] = {.lex_state = 121, .external_lex_state = 2}, - [528] = {.lex_state = 87, .external_lex_state = 2}, - [529] = {.lex_state = 87, .external_lex_state = 2}, - [530] = {.lex_state = 87, .external_lex_state = 2}, - [531] = {.lex_state = 86, .external_lex_state = 2}, - [532] = {.lex_state = 87, .external_lex_state = 2}, - [533] = {.lex_state = 87, .external_lex_state = 2}, - [534] = {.lex_state = 87, .external_lex_state = 2}, - [535] = {.lex_state = 87, .external_lex_state = 2}, - [536] = {.lex_state = 87, .external_lex_state = 2}, - [537] = {.lex_state = 87, .external_lex_state = 2}, - [538] = {.lex_state = 87, .external_lex_state = 2}, - [539] = {.lex_state = 87, .external_lex_state = 2}, - [540] = {.lex_state = 87, .external_lex_state = 2}, - [541] = {.lex_state = 13, .external_lex_state = 2}, - [542] = {.lex_state = 121, .external_lex_state = 2}, - [543] = {.lex_state = 87, .external_lex_state = 2}, - [544] = {.lex_state = 87, .external_lex_state = 2}, - [545] = {.lex_state = 87, .external_lex_state = 2}, - [546] = {.lex_state = 87, .external_lex_state = 2}, - [547] = {.lex_state = 87, .external_lex_state = 2}, - [548] = {.lex_state = 87, .external_lex_state = 2}, - [549] = {.lex_state = 87, .external_lex_state = 2}, - [550] = {.lex_state = 87, .external_lex_state = 2}, - [551] = {.lex_state = 87, .external_lex_state = 2}, - [552] = {.lex_state = 87, .external_lex_state = 2}, - [553] = {.lex_state = 87, .external_lex_state = 2}, - [554] = {.lex_state = 87, .external_lex_state = 2}, - [555] = {.lex_state = 87, .external_lex_state = 2}, - [556] = {.lex_state = 87, .external_lex_state = 2}, - [557] = {.lex_state = 87, .external_lex_state = 2}, - [558] = {.lex_state = 87, .external_lex_state = 2}, - [559] = {.lex_state = 87, .external_lex_state = 2}, - [560] = {.lex_state = 87, .external_lex_state = 2}, - [561] = {.lex_state = 121, .external_lex_state = 2}, - [562] = {.lex_state = 23, .external_lex_state = 2}, - [563] = {.lex_state = 119, .external_lex_state = 2}, - [564] = {.lex_state = 119, .external_lex_state = 2}, - [565] = {.lex_state = 121, .external_lex_state = 2}, - [566] = {.lex_state = 27, .external_lex_state = 2}, - [567] = {.lex_state = 119, .external_lex_state = 3}, - [568] = {.lex_state = 121, .external_lex_state = 2}, - [569] = {.lex_state = 62, .external_lex_state = 2}, - [570] = {.lex_state = 31, .external_lex_state = 2}, - [571] = {.lex_state = 62, .external_lex_state = 2}, - [572] = {.lex_state = 62, .external_lex_state = 2}, - [573] = {.lex_state = 27, .external_lex_state = 2}, - [574] = {.lex_state = 23, .external_lex_state = 2}, - [575] = {.lex_state = 73, .external_lex_state = 2}, - [576] = {.lex_state = 23, .external_lex_state = 2}, - [577] = {.lex_state = 119, .external_lex_state = 3}, - [578] = {.lex_state = 119, .external_lex_state = 3}, - [579] = {.lex_state = 73, .external_lex_state = 2}, - [580] = {.lex_state = 86, .external_lex_state = 2}, - [581] = {.lex_state = 31, .external_lex_state = 2}, - [582] = {.lex_state = 119, .external_lex_state = 3}, - [583] = {.lex_state = 73, .external_lex_state = 2}, - [584] = {.lex_state = 27, .external_lex_state = 2}, - [585] = {.lex_state = 83, .external_lex_state = 2}, - [586] = {.lex_state = 119, .external_lex_state = 2}, - [587] = {.lex_state = 119, .external_lex_state = 2}, - [588] = {.lex_state = 121, .external_lex_state = 2}, - [589] = {.lex_state = 83, .external_lex_state = 2}, - [590] = {.lex_state = 83, .external_lex_state = 2}, - [591] = {.lex_state = 2, .external_lex_state = 2}, - [592] = {.lex_state = 2, .external_lex_state = 2}, - [593] = {.lex_state = 121, .external_lex_state = 2}, - [594] = {.lex_state = 2, .external_lex_state = 2}, - [595] = {.lex_state = 119, .external_lex_state = 2}, - [596] = {.lex_state = 119, .external_lex_state = 3}, - [597] = {.lex_state = 121, .external_lex_state = 2}, - [598] = {.lex_state = 121, .external_lex_state = 2}, - [599] = {.lex_state = 121, .external_lex_state = 2}, - [600] = {.lex_state = 121, .external_lex_state = 2}, - [601] = {.lex_state = 121, .external_lex_state = 2}, - [602] = {.lex_state = 121, .external_lex_state = 2}, - [603] = {.lex_state = 121, .external_lex_state = 2}, - [604] = {.lex_state = 121, .external_lex_state = 2}, - [605] = {.lex_state = 121, .external_lex_state = 2}, - [606] = {.lex_state = 121, .external_lex_state = 2}, - [607] = {.lex_state = 121, .external_lex_state = 2}, - [608] = {.lex_state = 121, .external_lex_state = 2}, - [609] = {.lex_state = 121, .external_lex_state = 2}, - [610] = {.lex_state = 121, .external_lex_state = 2}, - [611] = {.lex_state = 121, .external_lex_state = 2}, - [612] = {.lex_state = 121, .external_lex_state = 2}, - [613] = {.lex_state = 31, .external_lex_state = 2}, - [614] = {.lex_state = 121, .external_lex_state = 2}, - [615] = {.lex_state = 121, .external_lex_state = 2}, - [616] = {.lex_state = 86, .external_lex_state = 2}, - [617] = {.lex_state = 121, .external_lex_state = 2}, - [618] = {.lex_state = 121, .external_lex_state = 2}, - [619] = {.lex_state = 121, .external_lex_state = 2}, - [620] = {.lex_state = 121, .external_lex_state = 2}, - [621] = {.lex_state = 121, .external_lex_state = 2}, - [622] = {.lex_state = 121, .external_lex_state = 2}, - [623] = {.lex_state = 121, .external_lex_state = 2}, - [624] = {.lex_state = 121, .external_lex_state = 2}, - [625] = {.lex_state = 121, .external_lex_state = 2}, - [626] = {.lex_state = 121, .external_lex_state = 2}, - [627] = {.lex_state = 86, .external_lex_state = 2}, - [628] = {.lex_state = 119, .external_lex_state = 2}, - [629] = {.lex_state = 119, .external_lex_state = 2}, - [630] = {.lex_state = 119, .external_lex_state = 2}, - [631] = {.lex_state = 56}, - [632] = {.lex_state = 56}, - [633] = {.lex_state = 56}, - [634] = {.lex_state = 56}, - [635] = {.lex_state = 56}, - [636] = {.lex_state = 56}, - [637] = {.lex_state = 56}, - [638] = {.lex_state = 56}, - [639] = {.lex_state = 56}, - [640] = {.lex_state = 56}, - [641] = {.lex_state = 56}, - [642] = {.lex_state = 56}, - [643] = {.lex_state = 56}, - [644] = {.lex_state = 56}, - [645] = {.lex_state = 56}, - [646] = {.lex_state = 56}, - [647] = {.lex_state = 56}, - [648] = {.lex_state = 56}, - [649] = {.lex_state = 56}, - [650] = {.lex_state = 56}, - [651] = {.lex_state = 56}, - [652] = {.lex_state = 56}, - [653] = {.lex_state = 56}, - [654] = {.lex_state = 56}, - [655] = {.lex_state = 56}, - [656] = {.lex_state = 56}, - [657] = {.lex_state = 56}, - [658] = {.lex_state = 56}, - [659] = {.lex_state = 56}, - [660] = {.lex_state = 56}, - [661] = {.lex_state = 56}, - [662] = {.lex_state = 56}, - [663] = {.lex_state = 56}, - [664] = {.lex_state = 56}, - [665] = {.lex_state = 56}, - [666] = {.lex_state = 56}, - [667] = {.lex_state = 56}, - [668] = {.lex_state = 56}, - [669] = {.lex_state = 56}, - [670] = {.lex_state = 56}, - [671] = {.lex_state = 56}, - [672] = {.lex_state = 56}, - [673] = {.lex_state = 56}, - [674] = {.lex_state = 56}, - [675] = {.lex_state = 56}, - [676] = {.lex_state = 56}, - [677] = {.lex_state = 56}, - [678] = {.lex_state = 56}, - [679] = {.lex_state = 56}, - [680] = {.lex_state = 56}, - [681] = {.lex_state = 56}, - [682] = {.lex_state = 56}, - [683] = {.lex_state = 56}, - [684] = {.lex_state = 56}, - [685] = {.lex_state = 56}, - [686] = {.lex_state = 58}, - [687] = {.lex_state = 56}, - [688] = {.lex_state = 56}, - [689] = {.lex_state = 56}, - [690] = {.lex_state = 56}, - [691] = {.lex_state = 56}, - [692] = {.lex_state = 56}, - [693] = {.lex_state = 56}, - [694] = {.lex_state = 56}, - [695] = {.lex_state = 56}, - [696] = {.lex_state = 56}, - [697] = {.lex_state = 56}, - [698] = {.lex_state = 56}, - [699] = {.lex_state = 56}, - [700] = {.lex_state = 56}, - [701] = {.lex_state = 58}, - [702] = {.lex_state = 58}, - [703] = {.lex_state = 56}, - [704] = {.lex_state = 56}, - [705] = {.lex_state = 56}, - [706] = {.lex_state = 56}, - [707] = {.lex_state = 56}, - [708] = {.lex_state = 56}, - [709] = {.lex_state = 56}, - [710] = {.lex_state = 56}, - [711] = {.lex_state = 56}, - [712] = {.lex_state = 56}, - [713] = {.lex_state = 56}, - [714] = {.lex_state = 56}, - [715] = {.lex_state = 56}, - [716] = {.lex_state = 56}, - [717] = {.lex_state = 56}, - [718] = {.lex_state = 56}, - [719] = {.lex_state = 56}, - [720] = {.lex_state = 56}, - [721] = {.lex_state = 58}, - [722] = {.lex_state = 56}, - [723] = {.lex_state = 0}, - [724] = {.lex_state = 0}, - [725] = {.lex_state = 97}, - [726] = {.lex_state = 0}, - [727] = {.lex_state = 0}, - [728] = {.lex_state = 0}, - [729] = {.lex_state = 0}, - [730] = {.lex_state = 0}, - [731] = {.lex_state = 0}, - [732] = {.lex_state = 0}, - [733] = {.lex_state = 0}, - [734] = {.lex_state = 0}, - [735] = {.lex_state = 56}, - [736] = {.lex_state = 0}, - [737] = {.lex_state = 0}, - [738] = {.lex_state = 0}, - [739] = {.lex_state = 0}, - [740] = {.lex_state = 0, .external_lex_state = 6}, - [741] = {.lex_state = 56}, - [742] = {.lex_state = 56}, - [743] = {.lex_state = 56}, - [744] = {.lex_state = 56}, - [745] = {.lex_state = 56}, - [746] = {.lex_state = 56}, - [747] = {.lex_state = 0, .external_lex_state = 6}, - [748] = {.lex_state = 56}, - [749] = {.lex_state = 56}, - [750] = {.lex_state = 0, .external_lex_state = 6}, - [751] = {.lex_state = 56}, - [752] = {.lex_state = 0}, - [753] = {.lex_state = 0, .external_lex_state = 6}, - [754] = {.lex_state = 0}, - [755] = {.lex_state = 0, .external_lex_state = 6}, - [756] = {.lex_state = 56}, - [757] = {.lex_state = 56}, - [758] = {.lex_state = 56}, - [759] = {.lex_state = 0, .external_lex_state = 6}, - [760] = {.lex_state = 0, .external_lex_state = 6}, - [761] = {.lex_state = 0}, - [762] = {.lex_state = 0}, - [763] = {.lex_state = 0}, - [764] = {.lex_state = 0}, - [765] = {.lex_state = 0, .external_lex_state = 6}, - [766] = {.lex_state = 0, .external_lex_state = 6}, - [767] = {.lex_state = 0, .external_lex_state = 6}, - [768] = {.lex_state = 0}, - [769] = {.lex_state = 0}, - [770] = {.lex_state = 0, .external_lex_state = 6}, - [771] = {.lex_state = 0, .external_lex_state = 6}, - [772] = {.lex_state = 0, .external_lex_state = 6}, - [773] = {.lex_state = 0, .external_lex_state = 6}, - [774] = {.lex_state = 0, .external_lex_state = 6}, - [775] = {.lex_state = 0, .external_lex_state = 6}, - [776] = {.lex_state = 0, .external_lex_state = 6}, - [777] = {.lex_state = 0}, - [778] = {.lex_state = 0, .external_lex_state = 6}, - [779] = {.lex_state = 0}, - [780] = {.lex_state = 0}, - [781] = {.lex_state = 0, .external_lex_state = 6}, - [782] = {.lex_state = 0, .external_lex_state = 6}, - [783] = {.lex_state = 0}, - [784] = {.lex_state = 0}, - [785] = {.lex_state = 0, .external_lex_state = 6}, - [786] = {.lex_state = 0}, - [787] = {.lex_state = 0}, - [788] = {.lex_state = 0}, - [789] = {.lex_state = 0}, - [790] = {.lex_state = 0}, - [791] = {.lex_state = 0, .external_lex_state = 6}, - [792] = {.lex_state = 22}, - [793] = {.lex_state = 22}, - [794] = {.lex_state = 56}, - [795] = {.lex_state = 0}, - [796] = {.lex_state = 56}, - [797] = {.lex_state = 0}, - [798] = {.lex_state = 0, .external_lex_state = 7}, - [799] = {.lex_state = 0, .external_lex_state = 8}, - [800] = {.lex_state = 56}, - [801] = {.lex_state = 22}, - [802] = {.lex_state = 0}, - [803] = {.lex_state = 0}, - [804] = {.lex_state = 56}, - [805] = {.lex_state = 17}, - [806] = {.lex_state = 0, .external_lex_state = 7}, - [807] = {.lex_state = 17}, - [808] = {.lex_state = 0, .external_lex_state = 7}, - [809] = {.lex_state = 56}, - [810] = {.lex_state = 0, .external_lex_state = 8}, - [811] = {.lex_state = 0}, - [812] = {.lex_state = 56}, - [813] = {.lex_state = 56}, - [814] = {.lex_state = 0}, + [107] = {.lex_state = 39, .external_lex_state = 2}, + [108] = {.lex_state = 39, .external_lex_state = 2}, + [109] = {.lex_state = 39, .external_lex_state = 2}, + [110] = {.lex_state = 39, .external_lex_state = 8}, + [111] = {.lex_state = 39, .external_lex_state = 4}, + [112] = {.lex_state = 39, .external_lex_state = 2}, + [113] = {.lex_state = 39, .external_lex_state = 2}, + [114] = {.lex_state = 39, .external_lex_state = 2}, + [115] = {.lex_state = 39, .external_lex_state = 8}, + [116] = {.lex_state = 39, .external_lex_state = 2}, + [117] = {.lex_state = 39, .external_lex_state = 2}, + [118] = {.lex_state = 39, .external_lex_state = 2}, + [119] = {.lex_state = 39, .external_lex_state = 2}, + [120] = {.lex_state = 39, .external_lex_state = 2}, + [121] = {.lex_state = 39, .external_lex_state = 2}, + [122] = {.lex_state = 39, .external_lex_state = 2}, + [123] = {.lex_state = 39, .external_lex_state = 6}, + [124] = {.lex_state = 39, .external_lex_state = 2}, + [125] = {.lex_state = 39, .external_lex_state = 2}, + [126] = {.lex_state = 39, .external_lex_state = 2}, + [127] = {.lex_state = 39, .external_lex_state = 2}, + [128] = {.lex_state = 39, .external_lex_state = 2}, + [129] = {.lex_state = 39, .external_lex_state = 2}, + [130] = {.lex_state = 39, .external_lex_state = 2}, + [131] = {.lex_state = 41, .external_lex_state = 5}, + [132] = {.lex_state = 41, .external_lex_state = 9}, + [133] = {.lex_state = 46, .external_lex_state = 2}, + [134] = {.lex_state = 41, .external_lex_state = 6}, + [135] = {.lex_state = 42, .external_lex_state = 6}, + [136] = {.lex_state = 46, .external_lex_state = 7}, + [137] = {.lex_state = 46, .external_lex_state = 8}, + [138] = {.lex_state = 42, .external_lex_state = 5}, + [139] = {.lex_state = 44, .external_lex_state = 2}, + [140] = {.lex_state = 9, .external_lex_state = 2}, + [141] = {.lex_state = 41, .external_lex_state = 8}, + [142] = {.lex_state = 42, .external_lex_state = 3}, + [143] = {.lex_state = 46, .external_lex_state = 6}, + [144] = {.lex_state = 42, .external_lex_state = 7}, + [145] = {.lex_state = 12, .external_lex_state = 2}, + [146] = {.lex_state = 6, .external_lex_state = 2}, + [147] = {.lex_state = 4, .external_lex_state = 2}, + [148] = {.lex_state = 42, .external_lex_state = 9}, + [149] = {.lex_state = 41, .external_lex_state = 7}, + [150] = {.lex_state = 42, .external_lex_state = 8}, + [151] = {.lex_state = 7, .external_lex_state = 2}, + [152] = {.lex_state = 46, .external_lex_state = 4}, + [153] = {.lex_state = 46, .external_lex_state = 5}, + [154] = {.lex_state = 42, .external_lex_state = 2}, + [155] = {.lex_state = 41, .external_lex_state = 4}, + [156] = {.lex_state = 42, .external_lex_state = 4}, + [157] = {.lex_state = 46, .external_lex_state = 3}, + [158] = {.lex_state = 46, .external_lex_state = 9}, + [159] = {.lex_state = 41, .external_lex_state = 3}, + [160] = {.lex_state = 41, .external_lex_state = 2}, + [161] = {.lex_state = 41, .external_lex_state = 7}, + [162] = {.lex_state = 41, .external_lex_state = 10}, + [163] = {.lex_state = 41, .external_lex_state = 11}, + [164] = {.lex_state = 46, .external_lex_state = 2}, + [165] = {.lex_state = 41, .external_lex_state = 2}, + [166] = {.lex_state = 41, .external_lex_state = 2}, + [167] = {.lex_state = 6, .external_lex_state = 2}, + [168] = {.lex_state = 42, .external_lex_state = 2}, + [169] = {.lex_state = 47, .external_lex_state = 2}, + [170] = {.lex_state = 13, .external_lex_state = 2}, + [171] = {.lex_state = 6, .external_lex_state = 2}, + [172] = {.lex_state = 6, .external_lex_state = 11}, + [173] = {.lex_state = 6, .external_lex_state = 11}, + [174] = {.lex_state = 41, .external_lex_state = 3}, + [175] = {.lex_state = 41, .external_lex_state = 12}, + [176] = {.lex_state = 41, .external_lex_state = 12}, + [177] = {.lex_state = 41, .external_lex_state = 9}, + [178] = {.lex_state = 47, .external_lex_state = 9}, + [179] = {.lex_state = 47, .external_lex_state = 3}, + [180] = {.lex_state = 41, .external_lex_state = 3}, + [181] = {.lex_state = 41, .external_lex_state = 13}, + [182] = {.lex_state = 41, .external_lex_state = 13}, + [183] = {.lex_state = 41, .external_lex_state = 4}, + [184] = {.lex_state = 41, .external_lex_state = 11}, + [185] = {.lex_state = 47, .external_lex_state = 4}, + [186] = {.lex_state = 41, .external_lex_state = 4}, + [187] = {.lex_state = 44, .external_lex_state = 2}, + [188] = {.lex_state = 41, .external_lex_state = 14}, + [189] = {.lex_state = 41, .external_lex_state = 14}, + [190] = {.lex_state = 41, .external_lex_state = 8}, + [191] = {.lex_state = 47, .external_lex_state = 8}, + [192] = {.lex_state = 41, .external_lex_state = 8}, + [193] = {.lex_state = 41, .external_lex_state = 15}, + [194] = {.lex_state = 41, .external_lex_state = 15}, + [195] = {.lex_state = 41, .external_lex_state = 6}, + [196] = {.lex_state = 47, .external_lex_state = 6}, + [197] = {.lex_state = 41, .external_lex_state = 6}, + [198] = {.lex_state = 41, .external_lex_state = 9}, + [199] = {.lex_state = 41, .external_lex_state = 16}, + [200] = {.lex_state = 41, .external_lex_state = 16}, + [201] = {.lex_state = 41, .external_lex_state = 7}, + [202] = {.lex_state = 47, .external_lex_state = 7}, + [203] = {.lex_state = 41, .external_lex_state = 2}, + [204] = {.lex_state = 15, .external_lex_state = 2}, + [205] = {.lex_state = 41, .external_lex_state = 5}, + [206] = {.lex_state = 41, .external_lex_state = 17}, + [207] = {.lex_state = 41, .external_lex_state = 17}, + [208] = {.lex_state = 41, .external_lex_state = 5}, + [209] = {.lex_state = 47, .external_lex_state = 5}, + [210] = {.lex_state = 44, .external_lex_state = 11}, + [211] = {.lex_state = 44, .external_lex_state = 2}, + [212] = {.lex_state = 44, .external_lex_state = 11}, + [213] = {.lex_state = 41, .external_lex_state = 10}, + [214] = {.lex_state = 41, .external_lex_state = 6}, + [215] = {.lex_state = 41, .external_lex_state = 8}, + [216] = {.lex_state = 41, .external_lex_state = 2}, + [217] = {.lex_state = 41, .external_lex_state = 9}, + [218] = {.lex_state = 41, .external_lex_state = 9}, + [219] = {.lex_state = 41, .external_lex_state = 9}, + [220] = {.lex_state = 41, .external_lex_state = 2}, + [221] = {.lex_state = 41, .external_lex_state = 9}, + [222] = {.lex_state = 41, .external_lex_state = 9}, + [223] = {.lex_state = 41, .external_lex_state = 9}, + [224] = {.lex_state = 41, .external_lex_state = 9}, + [225] = {.lex_state = 41, .external_lex_state = 9}, + [226] = {.lex_state = 41, .external_lex_state = 9}, + [227] = {.lex_state = 41, .external_lex_state = 9}, + [228] = {.lex_state = 41, .external_lex_state = 9}, + [229] = {.lex_state = 41, .external_lex_state = 9}, + [230] = {.lex_state = 41, .external_lex_state = 9}, + [231] = {.lex_state = 41, .external_lex_state = 9}, + [232] = {.lex_state = 41, .external_lex_state = 9}, + [233] = {.lex_state = 41, .external_lex_state = 9}, + [234] = {.lex_state = 44, .external_lex_state = 2}, + [235] = {.lex_state = 44, .external_lex_state = 2}, + [236] = {.lex_state = 44, .external_lex_state = 2}, + [237] = {.lex_state = 41, .external_lex_state = 5}, + [238] = {.lex_state = 41, .external_lex_state = 5}, + [239] = {.lex_state = 41, .external_lex_state = 5}, + [240] = {.lex_state = 39, .external_lex_state = 7}, + [241] = {.lex_state = 44, .external_lex_state = 2}, + [242] = {.lex_state = 44, .external_lex_state = 2}, + [243] = {.lex_state = 41, .external_lex_state = 5}, + [244] = {.lex_state = 41, .external_lex_state = 5}, + [245] = {.lex_state = 6, .external_lex_state = 2}, + [246] = {.lex_state = 41, .external_lex_state = 5}, + [247] = {.lex_state = 41, .external_lex_state = 5}, + [248] = {.lex_state = 41, .external_lex_state = 5}, + [249] = {.lex_state = 41, .external_lex_state = 5}, + [250] = {.lex_state = 41, .external_lex_state = 5}, + [251] = {.lex_state = 41, .external_lex_state = 5}, + [252] = {.lex_state = 41, .external_lex_state = 5}, + [253] = {.lex_state = 44, .external_lex_state = 2}, + [254] = {.lex_state = 44, .external_lex_state = 2}, + [255] = {.lex_state = 41, .external_lex_state = 5}, + [256] = {.lex_state = 41, .external_lex_state = 3}, + [257] = {.lex_state = 41, .external_lex_state = 5}, + [258] = {.lex_state = 41, .external_lex_state = 5}, + [259] = {.lex_state = 41, .external_lex_state = 5}, + [260] = {.lex_state = 41, .external_lex_state = 3}, + [261] = {.lex_state = 41, .external_lex_state = 5}, + [262] = {.lex_state = 41, .external_lex_state = 5}, + [263] = {.lex_state = 41, .external_lex_state = 5}, + [264] = {.lex_state = 41, .external_lex_state = 5}, + [265] = {.lex_state = 41, .external_lex_state = 5}, + [266] = {.lex_state = 41, .external_lex_state = 5}, + [267] = {.lex_state = 41, .external_lex_state = 5}, + [268] = {.lex_state = 41, .external_lex_state = 5}, + [269] = {.lex_state = 41, .external_lex_state = 5}, + [270] = {.lex_state = 41, .external_lex_state = 5}, + [271] = {.lex_state = 41, .external_lex_state = 5}, + [272] = {.lex_state = 41, .external_lex_state = 5}, + [273] = {.lex_state = 41, .external_lex_state = 5}, + [274] = {.lex_state = 2, .external_lex_state = 2}, + [275] = {.lex_state = 44, .external_lex_state = 2}, + [276] = {.lex_state = 44, .external_lex_state = 2}, + [277] = {.lex_state = 41, .external_lex_state = 7}, + [278] = {.lex_state = 41, .external_lex_state = 7}, + [279] = {.lex_state = 41, .external_lex_state = 7}, + [280] = {.lex_state = 39, .external_lex_state = 6}, + [281] = {.lex_state = 41, .external_lex_state = 7}, + [282] = {.lex_state = 41, .external_lex_state = 7}, + [283] = {.lex_state = 41, .external_lex_state = 4}, + [284] = {.lex_state = 41, .external_lex_state = 7}, + [285] = {.lex_state = 41, .external_lex_state = 7}, + [286] = {.lex_state = 41, .external_lex_state = 7}, + [287] = {.lex_state = 41, .external_lex_state = 7}, + [288] = {.lex_state = 41, .external_lex_state = 7}, + [289] = {.lex_state = 41, .external_lex_state = 7}, + [290] = {.lex_state = 41, .external_lex_state = 7}, + [291] = {.lex_state = 41, .external_lex_state = 7}, + [292] = {.lex_state = 41, .external_lex_state = 4}, + [293] = {.lex_state = 41, .external_lex_state = 7}, + [294] = {.lex_state = 41, .external_lex_state = 7}, + [295] = {.lex_state = 41, .external_lex_state = 7}, + [296] = {.lex_state = 41, .external_lex_state = 8}, + [297] = {.lex_state = 41, .external_lex_state = 7}, + [298] = {.lex_state = 41, .external_lex_state = 7}, + [299] = {.lex_state = 41, .external_lex_state = 7}, + [300] = {.lex_state = 41, .external_lex_state = 7}, + [301] = {.lex_state = 41, .external_lex_state = 7}, + [302] = {.lex_state = 41, .external_lex_state = 7}, + [303] = {.lex_state = 41, .external_lex_state = 7}, + [304] = {.lex_state = 41, .external_lex_state = 7}, + [305] = {.lex_state = 41, .external_lex_state = 7}, + [306] = {.lex_state = 41, .external_lex_state = 7}, + [307] = {.lex_state = 41, .external_lex_state = 7}, + [308] = {.lex_state = 41, .external_lex_state = 7}, + [309] = {.lex_state = 41, .external_lex_state = 7}, + [310] = {.lex_state = 44, .external_lex_state = 2}, + [311] = {.lex_state = 44, .external_lex_state = 2}, + [312] = {.lex_state = 44, .external_lex_state = 2}, + [313] = {.lex_state = 41, .external_lex_state = 9}, + [314] = {.lex_state = 41, .external_lex_state = 2}, + [315] = {.lex_state = 41, .external_lex_state = 2}, + [316] = {.lex_state = 41, .external_lex_state = 2}, + [317] = {.lex_state = 41, .external_lex_state = 6}, + [318] = {.lex_state = 41, .external_lex_state = 6}, + [319] = {.lex_state = 41, .external_lex_state = 6}, + [320] = {.lex_state = 39, .external_lex_state = 8}, + [321] = {.lex_state = 41, .external_lex_state = 2}, + [322] = {.lex_state = 41, .external_lex_state = 2}, + [323] = {.lex_state = 41, .external_lex_state = 6}, + [324] = {.lex_state = 41, .external_lex_state = 6}, + [325] = {.lex_state = 41, .external_lex_state = 8}, + [326] = {.lex_state = 41, .external_lex_state = 6}, + [327] = {.lex_state = 41, .external_lex_state = 6}, + [328] = {.lex_state = 41, .external_lex_state = 6}, + [329] = {.lex_state = 41, .external_lex_state = 6}, + [330] = {.lex_state = 41, .external_lex_state = 6}, + [331] = {.lex_state = 41, .external_lex_state = 6}, + [332] = {.lex_state = 41, .external_lex_state = 6}, + [333] = {.lex_state = 41, .external_lex_state = 9}, + [334] = {.lex_state = 41, .external_lex_state = 2}, + [335] = {.lex_state = 41, .external_lex_state = 2}, + [336] = {.lex_state = 41, .external_lex_state = 6}, + [337] = {.lex_state = 41, .external_lex_state = 6}, + [338] = {.lex_state = 41, .external_lex_state = 6}, + [339] = {.lex_state = 41, .external_lex_state = 6}, + [340] = {.lex_state = 41, .external_lex_state = 6}, + [341] = {.lex_state = 41, .external_lex_state = 6}, + [342] = {.lex_state = 41, .external_lex_state = 6}, + [343] = {.lex_state = 41, .external_lex_state = 6}, + [344] = {.lex_state = 41, .external_lex_state = 6}, + [345] = {.lex_state = 41, .external_lex_state = 6}, + [346] = {.lex_state = 41, .external_lex_state = 6}, + [347] = {.lex_state = 41, .external_lex_state = 6}, + [348] = {.lex_state = 44, .external_lex_state = 2}, + [349] = {.lex_state = 41, .external_lex_state = 6}, + [350] = {.lex_state = 41, .external_lex_state = 6}, + [351] = {.lex_state = 41, .external_lex_state = 6}, + [352] = {.lex_state = 41, .external_lex_state = 6}, + [353] = {.lex_state = 41, .external_lex_state = 6}, + [354] = {.lex_state = 41, .external_lex_state = 6}, + [355] = {.lex_state = 41, .external_lex_state = 9}, + [356] = {.lex_state = 41, .external_lex_state = 9}, + [357] = {.lex_state = 41, .external_lex_state = 9}, + [358] = {.lex_state = 41, .external_lex_state = 9}, + [359] = {.lex_state = 41, .external_lex_state = 2}, + [360] = {.lex_state = 41, .external_lex_state = 2}, + [361] = {.lex_state = 41, .external_lex_state = 2}, + [362] = {.lex_state = 41, .external_lex_state = 8}, + [363] = {.lex_state = 41, .external_lex_state = 8}, + [364] = {.lex_state = 41, .external_lex_state = 8}, + [365] = {.lex_state = 39, .external_lex_state = 4}, + [366] = {.lex_state = 41, .external_lex_state = 2}, + [367] = {.lex_state = 41, .external_lex_state = 2}, + [368] = {.lex_state = 41, .external_lex_state = 8}, + [369] = {.lex_state = 41, .external_lex_state = 8}, + [370] = {.lex_state = 41, .external_lex_state = 7}, + [371] = {.lex_state = 41, .external_lex_state = 8}, + [372] = {.lex_state = 41, .external_lex_state = 8}, + [373] = {.lex_state = 41, .external_lex_state = 8}, + [374] = {.lex_state = 41, .external_lex_state = 8}, + [375] = {.lex_state = 41, .external_lex_state = 9}, + [376] = {.lex_state = 41, .external_lex_state = 8}, + [377] = {.lex_state = 41, .external_lex_state = 8}, + [378] = {.lex_state = 41, .external_lex_state = 9}, + [379] = {.lex_state = 41, .external_lex_state = 2}, + [380] = {.lex_state = 41, .external_lex_state = 2}, + [381] = {.lex_state = 41, .external_lex_state = 8}, + [382] = {.lex_state = 41, .external_lex_state = 7}, + [383] = {.lex_state = 41, .external_lex_state = 8}, + [384] = {.lex_state = 41, .external_lex_state = 8}, + [385] = {.lex_state = 41, .external_lex_state = 8}, + [386] = {.lex_state = 41, .external_lex_state = 5}, + [387] = {.lex_state = 41, .external_lex_state = 8}, + [388] = {.lex_state = 41, .external_lex_state = 8}, + [389] = {.lex_state = 41, .external_lex_state = 8}, + [390] = {.lex_state = 41, .external_lex_state = 8}, + [391] = {.lex_state = 41, .external_lex_state = 8}, + [392] = {.lex_state = 41, .external_lex_state = 8}, + [393] = {.lex_state = 41, .external_lex_state = 8}, + [394] = {.lex_state = 41, .external_lex_state = 8}, + [395] = {.lex_state = 41, .external_lex_state = 8}, + [396] = {.lex_state = 41, .external_lex_state = 8}, + [397] = {.lex_state = 41, .external_lex_state = 8}, + [398] = {.lex_state = 41, .external_lex_state = 8}, + [399] = {.lex_state = 41, .external_lex_state = 8}, + [400] = {.lex_state = 6, .external_lex_state = 2}, + [401] = {.lex_state = 41, .external_lex_state = 9}, + [402] = {.lex_state = 41, .external_lex_state = 9}, + [403] = {.lex_state = 44, .external_lex_state = 2}, + [404] = {.lex_state = 41, .external_lex_state = 2}, + [405] = {.lex_state = 41, .external_lex_state = 2}, + [406] = {.lex_state = 41, .external_lex_state = 2}, + [407] = {.lex_state = 41, .external_lex_state = 4}, + [408] = {.lex_state = 41, .external_lex_state = 4}, + [409] = {.lex_state = 41, .external_lex_state = 4}, + [410] = {.lex_state = 39, .external_lex_state = 3}, + [411] = {.lex_state = 44, .external_lex_state = 2}, + [412] = {.lex_state = 41, .external_lex_state = 2}, + [413] = {.lex_state = 41, .external_lex_state = 4}, + [414] = {.lex_state = 41, .external_lex_state = 4}, + [415] = {.lex_state = 41, .external_lex_state = 5}, + [416] = {.lex_state = 41, .external_lex_state = 4}, + [417] = {.lex_state = 41, .external_lex_state = 4}, + [418] = {.lex_state = 41, .external_lex_state = 4}, + [419] = {.lex_state = 41, .external_lex_state = 4}, + [420] = {.lex_state = 41, .external_lex_state = 4}, + [421] = {.lex_state = 41, .external_lex_state = 4}, + [422] = {.lex_state = 41, .external_lex_state = 4}, + [423] = {.lex_state = 41, .external_lex_state = 9}, + [424] = {.lex_state = 41, .external_lex_state = 2}, + [425] = {.lex_state = 41, .external_lex_state = 2}, + [426] = {.lex_state = 41, .external_lex_state = 4}, + [427] = {.lex_state = 41, .external_lex_state = 9}, + [428] = {.lex_state = 41, .external_lex_state = 4}, + [429] = {.lex_state = 41, .external_lex_state = 4}, + [430] = {.lex_state = 41, .external_lex_state = 4}, + [431] = {.lex_state = 41, .external_lex_state = 9}, + [432] = {.lex_state = 41, .external_lex_state = 4}, + [433] = {.lex_state = 41, .external_lex_state = 4}, + [434] = {.lex_state = 41, .external_lex_state = 4}, + [435] = {.lex_state = 41, .external_lex_state = 4}, + [436] = {.lex_state = 41, .external_lex_state = 4}, + [437] = {.lex_state = 41, .external_lex_state = 4}, + [438] = {.lex_state = 41, .external_lex_state = 4}, + [439] = {.lex_state = 41, .external_lex_state = 4}, + [440] = {.lex_state = 41, .external_lex_state = 4}, + [441] = {.lex_state = 41, .external_lex_state = 4}, + [442] = {.lex_state = 41, .external_lex_state = 4}, + [443] = {.lex_state = 41, .external_lex_state = 4}, + [444] = {.lex_state = 41, .external_lex_state = 4}, + [445] = {.lex_state = 41, .external_lex_state = 9}, + [446] = {.lex_state = 41, .external_lex_state = 9}, + [447] = {.lex_state = 44, .external_lex_state = 2}, + [448] = {.lex_state = 44, .external_lex_state = 2}, + [449] = {.lex_state = 41, .external_lex_state = 2}, + [450] = {.lex_state = 41, .external_lex_state = 2}, + [451] = {.lex_state = 41, .external_lex_state = 2}, + [452] = {.lex_state = 41, .external_lex_state = 3}, + [453] = {.lex_state = 41, .external_lex_state = 3}, + [454] = {.lex_state = 41, .external_lex_state = 3}, + [455] = {.lex_state = 5, .external_lex_state = 2}, + [456] = {.lex_state = 41, .external_lex_state = 2}, + [457] = {.lex_state = 41, .external_lex_state = 3}, + [458] = {.lex_state = 41, .external_lex_state = 3}, + [459] = {.lex_state = 44, .external_lex_state = 2}, + [460] = {.lex_state = 41, .external_lex_state = 3}, + [461] = {.lex_state = 41, .external_lex_state = 3}, + [462] = {.lex_state = 41, .external_lex_state = 3}, + [463] = {.lex_state = 41, .external_lex_state = 3}, + [464] = {.lex_state = 41, .external_lex_state = 3}, + [465] = {.lex_state = 41, .external_lex_state = 3}, + [466] = {.lex_state = 41, .external_lex_state = 3}, + [467] = {.lex_state = 44, .external_lex_state = 2}, + [468] = {.lex_state = 41, .external_lex_state = 2}, + [469] = {.lex_state = 41, .external_lex_state = 2}, + [470] = {.lex_state = 41, .external_lex_state = 3}, + [471] = {.lex_state = 44, .external_lex_state = 2}, + [472] = {.lex_state = 41, .external_lex_state = 3}, + [473] = {.lex_state = 41, .external_lex_state = 3}, + [474] = {.lex_state = 41, .external_lex_state = 3}, + [475] = {.lex_state = 39, .external_lex_state = 2}, + [476] = {.lex_state = 41, .external_lex_state = 3}, + [477] = {.lex_state = 41, .external_lex_state = 3}, + [478] = {.lex_state = 41, .external_lex_state = 3}, + [479] = {.lex_state = 41, .external_lex_state = 3}, + [480] = {.lex_state = 41, .external_lex_state = 3}, + [481] = {.lex_state = 41, .external_lex_state = 3}, + [482] = {.lex_state = 41, .external_lex_state = 3}, + [483] = {.lex_state = 41, .external_lex_state = 3}, + [484] = {.lex_state = 41, .external_lex_state = 3}, + [485] = {.lex_state = 41, .external_lex_state = 3}, + [486] = {.lex_state = 41, .external_lex_state = 3}, + [487] = {.lex_state = 41, .external_lex_state = 3}, + [488] = {.lex_state = 41, .external_lex_state = 3}, + [489] = {.lex_state = 44, .external_lex_state = 2}, + [490] = {.lex_state = 44, .external_lex_state = 2}, + [491] = {.lex_state = 44, .external_lex_state = 2}, + [492] = {.lex_state = 44, .external_lex_state = 2}, + [493] = {.lex_state = 41, .external_lex_state = 2}, + [494] = {.lex_state = 41, .external_lex_state = 2}, + [495] = {.lex_state = 41, .external_lex_state = 2}, + [496] = {.lex_state = 6, .external_lex_state = 2}, + [497] = {.lex_state = 6, .external_lex_state = 2}, + [498] = {.lex_state = 6, .external_lex_state = 2}, + [499] = {.lex_state = 44, .external_lex_state = 2}, + [500] = {.lex_state = 6, .external_lex_state = 2}, + [501] = {.lex_state = 6, .external_lex_state = 2}, + [502] = {.lex_state = 44, .external_lex_state = 2}, + [503] = {.lex_state = 6, .external_lex_state = 2}, + [504] = {.lex_state = 6, .external_lex_state = 2}, + [505] = {.lex_state = 6, .external_lex_state = 2}, + [506] = {.lex_state = 6, .external_lex_state = 2}, + [507] = {.lex_state = 6, .external_lex_state = 2}, + [508] = {.lex_state = 6, .external_lex_state = 2}, + [509] = {.lex_state = 6, .external_lex_state = 2}, + [510] = {.lex_state = 44, .external_lex_state = 2}, + [511] = {.lex_state = 44, .external_lex_state = 2}, + [512] = {.lex_state = 6, .external_lex_state = 2}, + [513] = {.lex_state = 41, .external_lex_state = 2}, + [514] = {.lex_state = 6, .external_lex_state = 2}, + [515] = {.lex_state = 6, .external_lex_state = 2}, + [516] = {.lex_state = 6, .external_lex_state = 2}, + [517] = {.lex_state = 44, .external_lex_state = 2}, + [518] = {.lex_state = 6, .external_lex_state = 2}, + [519] = {.lex_state = 6, .external_lex_state = 2}, + [520] = {.lex_state = 6, .external_lex_state = 2}, + [521] = {.lex_state = 6, .external_lex_state = 2}, + [522] = {.lex_state = 6, .external_lex_state = 2}, + [523] = {.lex_state = 6, .external_lex_state = 2}, + [524] = {.lex_state = 6, .external_lex_state = 2}, + [525] = {.lex_state = 6, .external_lex_state = 2}, + [526] = {.lex_state = 6, .external_lex_state = 2}, + [527] = {.lex_state = 6, .external_lex_state = 2}, + [528] = {.lex_state = 6, .external_lex_state = 2}, + [529] = {.lex_state = 6, .external_lex_state = 2}, + [530] = {.lex_state = 6, .external_lex_state = 2}, + [531] = {.lex_state = 41, .external_lex_state = 11}, + [532] = {.lex_state = 41, .external_lex_state = 11}, + [533] = {.lex_state = 41, .external_lex_state = 2}, + [534] = {.lex_state = 47, .external_lex_state = 2}, + [535] = {.lex_state = 44, .external_lex_state = 2}, + [536] = {.lex_state = 44, .external_lex_state = 2}, + [537] = {.lex_state = 41, .external_lex_state = 2}, + [538] = {.lex_state = 41, .external_lex_state = 2}, + [539] = {.lex_state = 41, .external_lex_state = 2}, + [540] = {.lex_state = 41, .external_lex_state = 2}, + [541] = {.lex_state = 39, .external_lex_state = 3}, + [542] = {.lex_state = 41, .external_lex_state = 2}, + [543] = {.lex_state = 41, .external_lex_state = 2}, + [544] = {.lex_state = 41, .external_lex_state = 2}, + [545] = {.lex_state = 41, .external_lex_state = 2}, + [546] = {.lex_state = 41, .external_lex_state = 2}, + [547] = {.lex_state = 41, .external_lex_state = 2}, + [548] = {.lex_state = 41, .external_lex_state = 2}, + [549] = {.lex_state = 39, .external_lex_state = 2}, + [550] = {.lex_state = 41, .external_lex_state = 2}, + [551] = {.lex_state = 41, .external_lex_state = 2}, + [552] = {.lex_state = 39, .external_lex_state = 6}, + [553] = {.lex_state = 39, .external_lex_state = 3}, + [554] = {.lex_state = 41, .external_lex_state = 2}, + [555] = {.lex_state = 5, .external_lex_state = 2}, + [556] = {.lex_state = 41, .external_lex_state = 2}, + [557] = {.lex_state = 41, .external_lex_state = 2}, + [558] = {.lex_state = 41, .external_lex_state = 2}, + [559] = {.lex_state = 5, .external_lex_state = 2}, + [560] = {.lex_state = 41, .external_lex_state = 2}, + [561] = {.lex_state = 41, .external_lex_state = 2}, + [562] = {.lex_state = 41, .external_lex_state = 2}, + [563] = {.lex_state = 41, .external_lex_state = 2}, + [564] = {.lex_state = 5, .external_lex_state = 2}, + [565] = {.lex_state = 41, .external_lex_state = 2}, + [566] = {.lex_state = 41, .external_lex_state = 2}, + [567] = {.lex_state = 41, .external_lex_state = 2}, + [568] = {.lex_state = 41, .external_lex_state = 2}, + [569] = {.lex_state = 41, .external_lex_state = 2}, + [570] = {.lex_state = 41, .external_lex_state = 2}, + [571] = {.lex_state = 41, .external_lex_state = 2}, + [572] = {.lex_state = 39, .external_lex_state = 5}, + [573] = {.lex_state = 39, .external_lex_state = 4}, + [574] = {.lex_state = 39, .external_lex_state = 4}, + [575] = {.lex_state = 39, .external_lex_state = 3}, + [576] = {.lex_state = 39, .external_lex_state = 8}, + [577] = {.lex_state = 39, .external_lex_state = 9}, + [578] = {.lex_state = 2, .external_lex_state = 2}, + [579] = {.lex_state = 39, .external_lex_state = 8}, + [580] = {.lex_state = 39, .external_lex_state = 4}, + [581] = {.lex_state = 39, .external_lex_state = 7}, + [582] = {.lex_state = 39, .external_lex_state = 6}, + [583] = {.lex_state = 39, .external_lex_state = 8}, + [584] = {.lex_state = 39, .external_lex_state = 7}, + [585] = {.lex_state = 39, .external_lex_state = 7}, + [586] = {.lex_state = 39, .external_lex_state = 6}, + [587] = {.lex_state = 39, .external_lex_state = 5}, + [588] = {.lex_state = 39, .external_lex_state = 5}, + [589] = {.lex_state = 39, .external_lex_state = 2}, + [590] = {.lex_state = 39, .external_lex_state = 9}, + [591] = {.lex_state = 39, .external_lex_state = 9}, + [592] = {.lex_state = 39, .external_lex_state = 5}, + [593] = {.lex_state = 41, .external_lex_state = 2}, + [594] = {.lex_state = 41, .external_lex_state = 2}, + [595] = {.lex_state = 41, .external_lex_state = 2}, + [596] = {.lex_state = 2, .external_lex_state = 2}, + [597] = {.lex_state = 39, .external_lex_state = 5}, + [598] = {.lex_state = 2, .external_lex_state = 2}, + [599] = {.lex_state = 39, .external_lex_state = 2}, + [600] = {.lex_state = 39, .external_lex_state = 2}, + [601] = {.lex_state = 39, .external_lex_state = 9}, + [602] = {.lex_state = 39, .external_lex_state = 2}, + [603] = {.lex_state = 39, .external_lex_state = 9}, + [604] = {.lex_state = 39, .external_lex_state = 2}, + [605] = {.lex_state = 39, .external_lex_state = 2}, + [606] = {.lex_state = 39, .external_lex_state = 2}, + [607] = {.lex_state = 39, .external_lex_state = 2}, + [608] = {.lex_state = 17}, + [609] = {.lex_state = 17}, + [610] = {.lex_state = 17}, + [611] = {.lex_state = 17}, + [612] = {.lex_state = 17}, + [613] = {.lex_state = 17}, + [614] = {.lex_state = 17}, + [615] = {.lex_state = 17}, + [616] = {.lex_state = 17}, + [617] = {.lex_state = 17}, + [618] = {.lex_state = 17}, + [619] = {.lex_state = 17}, + [620] = {.lex_state = 17}, + [621] = {.lex_state = 17}, + [622] = {.lex_state = 17}, + [623] = {.lex_state = 17}, + [624] = {.lex_state = 17}, + [625] = {.lex_state = 17}, + [626] = {.lex_state = 17}, + [627] = {.lex_state = 17}, + [628] = {.lex_state = 17}, + [629] = {.lex_state = 17}, + [630] = {.lex_state = 17}, + [631] = {.lex_state = 17}, + [632] = {.lex_state = 17}, + [633] = {.lex_state = 17}, + [634] = {.lex_state = 17}, + [635] = {.lex_state = 17}, + [636] = {.lex_state = 17}, + [637] = {.lex_state = 17}, + [638] = {.lex_state = 17}, + [639] = {.lex_state = 17}, + [640] = {.lex_state = 17}, + [641] = {.lex_state = 17}, + [642] = {.lex_state = 17}, + [643] = {.lex_state = 17}, + [644] = {.lex_state = 17}, + [645] = {.lex_state = 17}, + [646] = {.lex_state = 17}, + [647] = {.lex_state = 17}, + [648] = {.lex_state = 17}, + [649] = {.lex_state = 17}, + [650] = {.lex_state = 17}, + [651] = {.lex_state = 17}, + [652] = {.lex_state = 17}, + [653] = {.lex_state = 17}, + [654] = {.lex_state = 17}, + [655] = {.lex_state = 17}, + [656] = {.lex_state = 17}, + [657] = {.lex_state = 17}, + [658] = {.lex_state = 17}, + [659] = {.lex_state = 17}, + [660] = {.lex_state = 17}, + [661] = {.lex_state = 17}, + [662] = {.lex_state = 19}, + [663] = {.lex_state = 17}, + [664] = {.lex_state = 17}, + [665] = {.lex_state = 17}, + [666] = {.lex_state = 17}, + [667] = {.lex_state = 17}, + [668] = {.lex_state = 17}, + [669] = {.lex_state = 17}, + [670] = {.lex_state = 17}, + [671] = {.lex_state = 17}, + [672] = {.lex_state = 17}, + [673] = {.lex_state = 17}, + [674] = {.lex_state = 17}, + [675] = {.lex_state = 17}, + [676] = {.lex_state = 17}, + [677] = {.lex_state = 17}, + [678] = {.lex_state = 17}, + [679] = {.lex_state = 17}, + [680] = {.lex_state = 17}, + [681] = {.lex_state = 17}, + [682] = {.lex_state = 17}, + [683] = {.lex_state = 17}, + [684] = {.lex_state = 17}, + [685] = {.lex_state = 17}, + [686] = {.lex_state = 17}, + [687] = {.lex_state = 17}, + [688] = {.lex_state = 19}, + [689] = {.lex_state = 19}, + [690] = {.lex_state = 17}, + [691] = {.lex_state = 17}, + [692] = {.lex_state = 17}, + [693] = {.lex_state = 17}, + [694] = {.lex_state = 17}, + [695] = {.lex_state = 17}, + [696] = {.lex_state = 17}, + [697] = {.lex_state = 17}, + [698] = {.lex_state = 19}, + [699] = {.lex_state = 17}, + [700] = {.lex_state = 20}, + [701] = {.lex_state = 17}, + [702] = {.lex_state = 17}, + [703] = {.lex_state = 0, .external_lex_state = 18}, + [704] = {.lex_state = 0, .external_lex_state = 19}, + [705] = {.lex_state = 0, .external_lex_state = 20}, + [706] = {.lex_state = 0, .external_lex_state = 21}, + [707] = {.lex_state = 0, .external_lex_state = 22}, + [708] = {.lex_state = 0, .external_lex_state = 23}, + [709] = {.lex_state = 0, .external_lex_state = 24}, + [710] = {.lex_state = 0, .external_lex_state = 24}, + [711] = {.lex_state = 0, .external_lex_state = 18}, + [712] = {.lex_state = 0, .external_lex_state = 20}, + [713] = {.lex_state = 0, .external_lex_state = 19}, + [714] = {.lex_state = 17}, + [715] = {.lex_state = 0, .external_lex_state = 22}, + [716] = {.lex_state = 0, .external_lex_state = 24}, + [717] = {.lex_state = 17}, + [718] = {.lex_state = 0, .external_lex_state = 23}, + [719] = {.lex_state = 0, .external_lex_state = 22}, + [720] = {.lex_state = 0, .external_lex_state = 21}, + [721] = {.lex_state = 0, .external_lex_state = 20}, + [722] = {.lex_state = 0, .external_lex_state = 19}, + [723] = {.lex_state = 0, .external_lex_state = 24}, + [724] = {.lex_state = 0, .external_lex_state = 18}, + [725] = {.lex_state = 0, .external_lex_state = 19}, + [726] = {.lex_state = 0, .external_lex_state = 20}, + [727] = {.lex_state = 0, .external_lex_state = 21}, + [728] = {.lex_state = 0, .external_lex_state = 22}, + [729] = {.lex_state = 0, .external_lex_state = 23}, + [730] = {.lex_state = 0, .external_lex_state = 18}, + [731] = {.lex_state = 0, .external_lex_state = 24}, + [732] = {.lex_state = 0, .external_lex_state = 24}, + [733] = {.lex_state = 0, .external_lex_state = 18}, + [734] = {.lex_state = 17}, + [735] = {.lex_state = 0, .external_lex_state = 18}, + [736] = {.lex_state = 0, .external_lex_state = 24}, + [737] = {.lex_state = 0, .external_lex_state = 18}, + [738] = {.lex_state = 17}, + [739] = {.lex_state = 0, .external_lex_state = 23}, + [740] = {.lex_state = 0, .external_lex_state = 22}, + [741] = {.lex_state = 0, .external_lex_state = 21}, + [742] = {.lex_state = 17}, + [743] = {.lex_state = 0, .external_lex_state = 24}, + [744] = {.lex_state = 0, .external_lex_state = 20}, + [745] = {.lex_state = 0, .external_lex_state = 19}, + [746] = {.lex_state = 0, .external_lex_state = 18}, + [747] = {.lex_state = 0, .external_lex_state = 24}, + [748] = {.lex_state = 0, .external_lex_state = 24}, + [749] = {.lex_state = 0, .external_lex_state = 18}, + [750] = {.lex_state = 0, .external_lex_state = 19}, + [751] = {.lex_state = 0, .external_lex_state = 20}, + [752] = {.lex_state = 0, .external_lex_state = 21}, + [753] = {.lex_state = 0, .external_lex_state = 22}, + [754] = {.lex_state = 0, .external_lex_state = 23}, + [755] = {.lex_state = 17}, + [756] = {.lex_state = 17}, + [757] = {.lex_state = 0, .external_lex_state = 18}, + [758] = {.lex_state = 0, .external_lex_state = 24}, + [759] = {.lex_state = 0, .external_lex_state = 24}, + [760] = {.lex_state = 0, .external_lex_state = 18}, + [761] = {.lex_state = 0, .external_lex_state = 18}, + [762] = {.lex_state = 0, .external_lex_state = 23}, + [763] = {.lex_state = 0, .external_lex_state = 22}, + [764] = {.lex_state = 0, .external_lex_state = 24}, + [765] = {.lex_state = 0, .external_lex_state = 23}, + [766] = {.lex_state = 0, .external_lex_state = 21}, + [767] = {.lex_state = 0, .external_lex_state = 20}, + [768] = {.lex_state = 0, .external_lex_state = 19}, + [769] = {.lex_state = 0, .external_lex_state = 18}, + [770] = {.lex_state = 0, .external_lex_state = 24}, + [771] = {.lex_state = 0, .external_lex_state = 22}, + [772] = {.lex_state = 0, .external_lex_state = 18}, + [773] = {.lex_state = 0, .external_lex_state = 21}, + [774] = {.lex_state = 0, .external_lex_state = 18}, + [775] = {.lex_state = 0, .external_lex_state = 24}, + [776] = {.lex_state = 0, .external_lex_state = 20}, + [777] = {.lex_state = 0, .external_lex_state = 19}, + [778] = {.lex_state = 0, .external_lex_state = 24}, + [779] = {.lex_state = 0, .external_lex_state = 18}, + [780] = {.lex_state = 0, .external_lex_state = 19}, + [781] = {.lex_state = 0, .external_lex_state = 20}, + [782] = {.lex_state = 0, .external_lex_state = 21}, + [783] = {.lex_state = 0, .external_lex_state = 22}, + [784] = {.lex_state = 0, .external_lex_state = 23}, + [785] = {.lex_state = 0, .external_lex_state = 23}, + [786] = {.lex_state = 0, .external_lex_state = 18}, + [787] = {.lex_state = 0, .external_lex_state = 24}, + [788] = {.lex_state = 0, .external_lex_state = 22}, + [789] = {.lex_state = 0, .external_lex_state = 24}, + [790] = {.lex_state = 0, .external_lex_state = 18}, + [791] = {.lex_state = 0, .external_lex_state = 21}, + [792] = {.lex_state = 0, .external_lex_state = 21}, + [793] = {.lex_state = 0, .external_lex_state = 20}, + [794] = {.lex_state = 0, .external_lex_state = 24}, + [795] = {.lex_state = 17}, + [796] = {.lex_state = 0, .external_lex_state = 19}, + [797] = {.lex_state = 0, .external_lex_state = 18}, + [798] = {.lex_state = 0, .external_lex_state = 24}, + [799] = {.lex_state = 0, .external_lex_state = 18}, + [800] = {.lex_state = 17}, + [801] = {.lex_state = 0, .external_lex_state = 23}, + [802] = {.lex_state = 0, .external_lex_state = 24}, + [803] = {.lex_state = 0, .external_lex_state = 18}, + [804] = {.lex_state = 0, .external_lex_state = 19}, + [805] = {.lex_state = 0, .external_lex_state = 20}, + [806] = {.lex_state = 0, .external_lex_state = 21}, + [807] = {.lex_state = 0, .external_lex_state = 22}, + [808] = {.lex_state = 0, .external_lex_state = 23}, + [809] = {.lex_state = 17}, + [810] = {.lex_state = 17}, + [811] = {.lex_state = 0, .external_lex_state = 24}, + [812] = {.lex_state = 0, .external_lex_state = 18}, + [813] = {.lex_state = 0, .external_lex_state = 25}, + [814] = {.lex_state = 0, .external_lex_state = 26}, [815] = {.lex_state = 0}, - [816] = {.lex_state = 0, .external_lex_state = 7}, - [817] = {.lex_state = 0}, - [818] = {.lex_state = 56}, - [819] = {.lex_state = 22}, - [820] = {.lex_state = 0}, - [821] = {.lex_state = 0}, + [816] = {.lex_state = 0, .external_lex_state = 27}, + [817] = {.lex_state = 0, .external_lex_state = 25}, + [818] = {.lex_state = 0, .external_lex_state = 28}, + [819] = {.lex_state = 0}, + [820] = {.lex_state = 17}, + [821] = {.lex_state = 17}, [822] = {.lex_state = 17}, - [823] = {.lex_state = 22}, - [824] = {.lex_state = 56}, - [825] = {.lex_state = 0, .external_lex_state = 7}, - [826] = {.lex_state = 56}, - [827] = {.lex_state = 0, .external_lex_state = 8}, - [828] = {.lex_state = 0}, - [829] = {.lex_state = 56}, - [830] = {.lex_state = 56}, - [831] = {.lex_state = 0}, - [832] = {.lex_state = 0, .external_lex_state = 7}, - [833] = {.lex_state = 0}, - [834] = {.lex_state = 0, .external_lex_state = 7}, - [835] = {.lex_state = 56}, - [836] = {.lex_state = 22}, - [837] = {.lex_state = 0}, - [838] = {.lex_state = 0}, - [839] = {.lex_state = 17}, - [840] = {.lex_state = 56}, - [841] = {.lex_state = 56}, - [842] = {.lex_state = 0}, - [843] = {.lex_state = 0, .external_lex_state = 7}, - [844] = {.lex_state = 56}, - [845] = {.lex_state = 0, .external_lex_state = 8}, + [823] = {.lex_state = 44}, + [824] = {.lex_state = 17}, + [825] = {.lex_state = 0, .external_lex_state = 26}, + [826] = {.lex_state = 0, .external_lex_state = 28}, + [827] = {.lex_state = 17}, + [828] = {.lex_state = 0, .external_lex_state = 29}, + [829] = {.lex_state = 0, .external_lex_state = 30}, + [830] = {.lex_state = 0, .external_lex_state = 31}, + [831] = {.lex_state = 0, .external_lex_state = 26}, + [832] = {.lex_state = 0, .external_lex_state = 32}, + [833] = {.lex_state = 0, .external_lex_state = 27}, + [834] = {.lex_state = 0, .external_lex_state = 31}, + [835] = {.lex_state = 0}, + [836] = {.lex_state = 17}, + [837] = {.lex_state = 17}, + [838] = {.lex_state = 0, .external_lex_state = 30}, + [839] = {.lex_state = 0, .external_lex_state = 29}, + [840] = {.lex_state = 17}, + [841] = {.lex_state = 0, .external_lex_state = 28}, + [842] = {.lex_state = 44}, + [843] = {.lex_state = 17}, + [844] = {.lex_state = 0, .external_lex_state = 28}, + [845] = {.lex_state = 0}, [846] = {.lex_state = 0}, - [847] = {.lex_state = 56}, - [848] = {.lex_state = 56}, - [849] = {.lex_state = 0}, - [850] = {.lex_state = 0, .external_lex_state = 8}, - [851] = {.lex_state = 56}, - [852] = {.lex_state = 0, .external_lex_state = 7}, - [853] = {.lex_state = 0, .external_lex_state = 7}, - [854] = {.lex_state = 56}, - [855] = {.lex_state = 22}, - [856] = {.lex_state = 0}, - [857] = {.lex_state = 0}, - [858] = {.lex_state = 17}, - [859] = {.lex_state = 22}, - [860] = {.lex_state = 0, .external_lex_state = 7}, - [861] = {.lex_state = 56}, - [862] = {.lex_state = 0, .external_lex_state = 8}, - [863] = {.lex_state = 0}, - [864] = {.lex_state = 56}, - [865] = {.lex_state = 56}, - [866] = {.lex_state = 0}, - [867] = {.lex_state = 0}, - [868] = {.lex_state = 0}, - [869] = {.lex_state = 0, .external_lex_state = 7}, - [870] = {.lex_state = 17}, - [871] = {.lex_state = 56}, - [872] = {.lex_state = 56}, - [873] = {.lex_state = 0}, - [874] = {.lex_state = 0}, + [847] = {.lex_state = 17}, + [848] = {.lex_state = 0, .external_lex_state = 28}, + [849] = {.lex_state = 17}, + [850] = {.lex_state = 0}, + [851] = {.lex_state = 0, .external_lex_state = 25}, + [852] = {.lex_state = 17}, + [853] = {.lex_state = 44}, + [854] = {.lex_state = 0, .external_lex_state = 27}, + [855] = {.lex_state = 0, .external_lex_state = 32}, + [856] = {.lex_state = 0, .external_lex_state = 28}, + [857] = {.lex_state = 17}, + [858] = {.lex_state = 0, .external_lex_state = 29}, + [859] = {.lex_state = 0, .external_lex_state = 30}, + [860] = {.lex_state = 0, .external_lex_state = 31}, + [861] = {.lex_state = 0, .external_lex_state = 26}, + [862] = {.lex_state = 0, .external_lex_state = 32}, + [863] = {.lex_state = 0, .external_lex_state = 27}, + [864] = {.lex_state = 0, .external_lex_state = 25}, + [865] = {.lex_state = 0}, + [866] = {.lex_state = 17}, + [867] = {.lex_state = 17}, + [868] = {.lex_state = 0, .external_lex_state = 26}, + [869] = {.lex_state = 0, .external_lex_state = 31}, + [870] = {.lex_state = 0, .external_lex_state = 30}, + [871] = {.lex_state = 0, .external_lex_state = 29}, + [872] = {.lex_state = 17}, + [873] = {.lex_state = 0, .external_lex_state = 28}, + [874] = {.lex_state = 44}, [875] = {.lex_state = 0}, - [876] = {.lex_state = 0}, - [877] = {.lex_state = 0, .external_lex_state = 8}, - [878] = {.lex_state = 17}, - [879] = {.lex_state = 56}, - [880] = {.lex_state = 56}, - [881] = {.lex_state = 0, .external_lex_state = 7}, - [882] = {.lex_state = 0, .external_lex_state = 7}, - [883] = {.lex_state = 56}, - [884] = {.lex_state = 0, .external_lex_state = 8}, - [885] = {.lex_state = 0}, - [886] = {.lex_state = 56}, - [887] = {.lex_state = 56}, - [888] = {.lex_state = 0}, - [889] = {.lex_state = 0, .external_lex_state = 7}, - [890] = {.lex_state = 56}, - [891] = {.lex_state = 56}, - [892] = {.lex_state = 0}, - [893] = {.lex_state = 0, .external_lex_state = 8}, - [894] = {.lex_state = 56}, - [895] = {.lex_state = 0, .external_lex_state = 7}, + [876] = {.lex_state = 17}, + [877] = {.lex_state = 0, .external_lex_state = 28}, + [878] = {.lex_state = 0, .external_lex_state = 28}, + [879] = {.lex_state = 0}, + [880] = {.lex_state = 17}, + [881] = {.lex_state = 17}, + [882] = {.lex_state = 17}, + [883] = {.lex_state = 44}, + [884] = {.lex_state = 0}, + [885] = {.lex_state = 0, .external_lex_state = 25}, + [886] = {.lex_state = 0, .external_lex_state = 28}, + [887] = {.lex_state = 17}, + [888] = {.lex_state = 0, .external_lex_state = 29}, + [889] = {.lex_state = 0, .external_lex_state = 30}, + [890] = {.lex_state = 0, .external_lex_state = 31}, + [891] = {.lex_state = 0, .external_lex_state = 26}, + [892] = {.lex_state = 0, .external_lex_state = 32}, + [893] = {.lex_state = 0, .external_lex_state = 27}, + [894] = {.lex_state = 0, .external_lex_state = 25}, + [895] = {.lex_state = 0}, [896] = {.lex_state = 17}, - [897] = {.lex_state = 56}, - [898] = {.lex_state = 0}, - [899] = {.lex_state = 0}, - [900] = {.lex_state = 0}, - [901] = {.lex_state = 56}, - [902] = {.lex_state = 56}, - [903] = {.lex_state = 17}, - [904] = {.lex_state = 0, .external_lex_state = 7}, - [905] = {.lex_state = 0}, - [906] = {.lex_state = 0}, - [907] = {.lex_state = 56}, - [908] = {.lex_state = 98}, - [909] = {.lex_state = 17}, - [910] = {.lex_state = 0, .external_lex_state = 9}, - [911] = {.lex_state = 0, .external_lex_state = 9}, - [912] = {.lex_state = 17}, - [913] = {.lex_state = 0, .external_lex_state = 9}, - [914] = {.lex_state = 0}, - [915] = {.lex_state = 17}, - [916] = {.lex_state = 22}, - [917] = {.lex_state = 99}, - [918] = {.lex_state = 100}, - [919] = {.lex_state = 0, .external_lex_state = 9}, - [920] = {.lex_state = 17}, - [921] = {.lex_state = 17}, - [922] = {.lex_state = 0, .external_lex_state = 9}, - [923] = {.lex_state = 56}, - [924] = {.lex_state = 17}, - [925] = {.lex_state = 0, .external_lex_state = 7}, - [926] = {.lex_state = 99}, - [927] = {.lex_state = 100}, - [928] = {.lex_state = 0, .external_lex_state = 9}, - [929] = {.lex_state = 0, .external_lex_state = 7}, - [930] = {.lex_state = 17}, - [931] = {.lex_state = 0, .external_lex_state = 9}, - [932] = {.lex_state = 56}, - [933] = {.lex_state = 0}, - [934] = {.lex_state = 0}, - [935] = {.lex_state = 99}, - [936] = {.lex_state = 100}, - [937] = {.lex_state = 0, .external_lex_state = 9}, - [938] = {.lex_state = 22}, - [939] = {.lex_state = 17}, - [940] = {.lex_state = 0, .external_lex_state = 9}, - [941] = {.lex_state = 0}, - [942] = {.lex_state = 56}, - [943] = {.lex_state = 56}, - [944] = {.lex_state = 99}, - [945] = {.lex_state = 100}, - [946] = {.lex_state = 0, .external_lex_state = 9}, - [947] = {.lex_state = 99}, - [948] = {.lex_state = 17}, - [949] = {.lex_state = 0, .external_lex_state = 9}, - [950] = {.lex_state = 56}, - [951] = {.lex_state = 56}, - [952] = {.lex_state = 100}, - [953] = {.lex_state = 99}, - [954] = {.lex_state = 100}, - [955] = {.lex_state = 0, .external_lex_state = 9}, - [956] = {.lex_state = 56}, - [957] = {.lex_state = 17}, - [958] = {.lex_state = 0, .external_lex_state = 9}, - [959] = {.lex_state = 0}, - [960] = {.lex_state = 0, .external_lex_state = 9}, - [961] = {.lex_state = 0, .external_lex_state = 7}, - [962] = {.lex_state = 99}, - [963] = {.lex_state = 100}, - [964] = {.lex_state = 0, .external_lex_state = 9}, - [965] = {.lex_state = 0, .external_lex_state = 7}, - [966] = {.lex_state = 17}, - [967] = {.lex_state = 0, .external_lex_state = 9}, - [968] = {.lex_state = 0, .external_lex_state = 8}, - [969] = {.lex_state = 56}, - [970] = {.lex_state = 0, .external_lex_state = 10}, - [971] = {.lex_state = 99}, - [972] = {.lex_state = 100}, - [973] = {.lex_state = 0, .external_lex_state = 9}, - [974] = {.lex_state = 0}, - [975] = {.lex_state = 17}, - [976] = {.lex_state = 0, .external_lex_state = 9}, - [977] = {.lex_state = 56}, - [978] = {.lex_state = 0}, + [897] = {.lex_state = 17}, + [898] = {.lex_state = 0, .external_lex_state = 27}, + [899] = {.lex_state = 0, .external_lex_state = 32}, + [900] = {.lex_state = 0, .external_lex_state = 26}, + [901] = {.lex_state = 0, .external_lex_state = 31}, + [902] = {.lex_state = 0, .external_lex_state = 30}, + [903] = {.lex_state = 0, .external_lex_state = 29}, + [904] = {.lex_state = 17}, + [905] = {.lex_state = 0, .external_lex_state = 28}, + [906] = {.lex_state = 44}, + [907] = {.lex_state = 17}, + [908] = {.lex_state = 0, .external_lex_state = 28}, + [909] = {.lex_state = 0}, + [910] = {.lex_state = 17}, + [911] = {.lex_state = 17}, + [912] = {.lex_state = 0}, + [913] = {.lex_state = 0, .external_lex_state = 25}, + [914] = {.lex_state = 0, .external_lex_state = 27}, + [915] = {.lex_state = 0, .external_lex_state = 32}, + [916] = {.lex_state = 0, .external_lex_state = 26}, + [917] = {.lex_state = 0, .external_lex_state = 31}, + [918] = {.lex_state = 0, .external_lex_state = 30}, + [919] = {.lex_state = 0, .external_lex_state = 29}, + [920] = {.lex_state = 0, .external_lex_state = 33}, + [921] = {.lex_state = 44}, + [922] = {.lex_state = 0, .external_lex_state = 33}, + [923] = {.lex_state = 17}, + [924] = {.lex_state = 0, .external_lex_state = 28}, + [925] = {.lex_state = 44}, + [926] = {.lex_state = 17}, + [927] = {.lex_state = 0, .external_lex_state = 28}, + [928] = {.lex_state = 0}, + [929] = {.lex_state = 17}, + [930] = {.lex_state = 0, .external_lex_state = 33}, + [931] = {.lex_state = 17}, + [932] = {.lex_state = 21}, + [933] = {.lex_state = 22}, + [934] = {.lex_state = 0, .external_lex_state = 33}, + [935] = {.lex_state = 44}, + [936] = {.lex_state = 0, .external_lex_state = 33}, + [937] = {.lex_state = 0}, + [938] = {.lex_state = 0}, + [939] = {.lex_state = 0, .external_lex_state = 25}, + [940] = {.lex_state = 0, .external_lex_state = 27}, + [941] = {.lex_state = 0, .external_lex_state = 32}, + [942] = {.lex_state = 23}, + [943] = {.lex_state = 0, .external_lex_state = 26}, + [944] = {.lex_state = 0, .external_lex_state = 31}, + [945] = {.lex_state = 0, .external_lex_state = 30}, + [946] = {.lex_state = 21}, + [947] = {.lex_state = 22}, + [948] = {.lex_state = 0, .external_lex_state = 33}, + [949] = {.lex_state = 44}, + [950] = {.lex_state = 0, .external_lex_state = 33}, + [951] = {.lex_state = 0, .external_lex_state = 29}, + [952] = {.lex_state = 17}, + [953] = {.lex_state = 17}, + [954] = {.lex_state = 0, .external_lex_state = 28}, + [955] = {.lex_state = 44}, + [956] = {.lex_state = 17}, + [957] = {.lex_state = 0, .external_lex_state = 28}, + [958] = {.lex_state = 0}, + [959] = {.lex_state = 17}, + [960] = {.lex_state = 21}, + [961] = {.lex_state = 22}, + [962] = {.lex_state = 0, .external_lex_state = 33}, + [963] = {.lex_state = 44}, + [964] = {.lex_state = 0, .external_lex_state = 33}, + [965] = {.lex_state = 17}, + [966] = {.lex_state = 22}, + [967] = {.lex_state = 17}, + [968] = {.lex_state = 0}, + [969] = {.lex_state = 0, .external_lex_state = 25}, + [970] = {.lex_state = 0, .external_lex_state = 27}, + [971] = {.lex_state = 0, .external_lex_state = 32}, + [972] = {.lex_state = 0, .external_lex_state = 32}, + [973] = {.lex_state = 0, .external_lex_state = 31}, + [974] = {.lex_state = 21}, + [975] = {.lex_state = 22}, + [976] = {.lex_state = 0, .external_lex_state = 33}, + [977] = {.lex_state = 44}, + [978] = {.lex_state = 0, .external_lex_state = 33}, [979] = {.lex_state = 0}, - [980] = {.lex_state = 99}, - [981] = {.lex_state = 100}, - [982] = {.lex_state = 0, .external_lex_state = 9}, - [983] = {.lex_state = 56}, - [984] = {.lex_state = 17}, - [985] = {.lex_state = 0, .external_lex_state = 9}, - [986] = {.lex_state = 0, .external_lex_state = 7}, - [987] = {.lex_state = 0, .external_lex_state = 8}, - [988] = {.lex_state = 297}, - [989] = {.lex_state = 99}, - [990] = {.lex_state = 100}, - [991] = {.lex_state = 0, .external_lex_state = 9}, - [992] = {.lex_state = 0}, - [993] = {.lex_state = 17}, - [994] = {.lex_state = 0, .external_lex_state = 9}, - [995] = {.lex_state = 22}, - [996] = {.lex_state = 0}, + [980] = {.lex_state = 0, .external_lex_state = 30}, + [981] = {.lex_state = 0, .external_lex_state = 25}, + [982] = {.lex_state = 0, .external_lex_state = 29}, + [983] = {.lex_state = 17}, + [984] = {.lex_state = 0, .external_lex_state = 28}, + [985] = {.lex_state = 0, .external_lex_state = 27}, + [986] = {.lex_state = 0, .external_lex_state = 32}, + [987] = {.lex_state = 0, .external_lex_state = 26}, + [988] = {.lex_state = 21}, + [989] = {.lex_state = 22}, + [990] = {.lex_state = 0, .external_lex_state = 33}, + [991] = {.lex_state = 44}, + [992] = {.lex_state = 0, .external_lex_state = 33}, + [993] = {.lex_state = 0, .external_lex_state = 31}, + [994] = {.lex_state = 17}, + [995] = {.lex_state = 0, .external_lex_state = 30}, + [996] = {.lex_state = 0, .external_lex_state = 29}, [997] = {.lex_state = 17}, - [998] = {.lex_state = 99}, - [999] = {.lex_state = 100}, - [1000] = {.lex_state = 0, .external_lex_state = 10}, - [1001] = {.lex_state = 0, .external_lex_state = 10}, - [1002] = {.lex_state = 0, .external_lex_state = 10}, - [1003] = {.lex_state = 0, .external_lex_state = 10}, - [1004] = {.lex_state = 0, .external_lex_state = 10}, - [1005] = {.lex_state = 0, .external_lex_state = 10}, - [1006] = {.lex_state = 0, .external_lex_state = 10}, - [1007] = {.lex_state = 0, .external_lex_state = 10}, - [1008] = {.lex_state = 0, .external_lex_state = 10}, - [1009] = {.lex_state = 0, .external_lex_state = 10}, + [998] = {.lex_state = 188}, + [999] = {.lex_state = 17}, + [1000] = {.lex_state = 0, .external_lex_state = 28}, + [1001] = {.lex_state = 21}, + [1002] = {.lex_state = 21}, + [1003] = {.lex_state = 22}, + [1004] = {.lex_state = 0, .external_lex_state = 33}, + [1005] = {.lex_state = 44}, + [1006] = {.lex_state = 0, .external_lex_state = 33}, + [1007] = {.lex_state = 44}, + [1008] = {.lex_state = 17}, + [1009] = {.lex_state = 0, .external_lex_state = 33}, + [1010] = {.lex_state = 44}, + [1011] = {.lex_state = 44}, + [1012] = {.lex_state = 0, .external_lex_state = 28}, + [1013] = {.lex_state = 44}, + [1014] = {.lex_state = 44}, + [1015] = {.lex_state = 17}, + [1016] = {.lex_state = 21}, + [1017] = {.lex_state = 22}, + [1018] = {.lex_state = 0, .external_lex_state = 33}, + [1019] = {.lex_state = 44}, + [1020] = {.lex_state = 0, .external_lex_state = 33}, + [1021] = {.lex_state = 0}, + [1022] = {.lex_state = 17}, + [1023] = {.lex_state = 17}, + [1024] = {.lex_state = 0}, + [1025] = {.lex_state = 0, .external_lex_state = 25}, + [1026] = {.lex_state = 0, .external_lex_state = 28}, + [1027] = {.lex_state = 0, .external_lex_state = 27}, + [1028] = {.lex_state = 0, .external_lex_state = 32}, + [1029] = {.lex_state = 0, .external_lex_state = 34}, + [1030] = {.lex_state = 21}, + [1031] = {.lex_state = 22}, + [1032] = {.lex_state = 0, .external_lex_state = 33}, + [1033] = {.lex_state = 44}, + [1034] = {.lex_state = 0, .external_lex_state = 33}, + [1035] = {.lex_state = 0, .external_lex_state = 26}, + [1036] = {.lex_state = 0, .external_lex_state = 35}, + [1037] = {.lex_state = 0, .external_lex_state = 36}, + [1038] = {.lex_state = 0, .external_lex_state = 37}, + [1039] = {.lex_state = 0, .external_lex_state = 38}, + [1040] = {.lex_state = 0, .external_lex_state = 39}, + [1041] = {.lex_state = 0, .external_lex_state = 40}, + [1042] = {.lex_state = 0}, + [1043] = {.lex_state = 0}, + [1044] = {.lex_state = 21}, + [1045] = {.lex_state = 22}, + [1046] = {.lex_state = 0, .external_lex_state = 33}, + [1047] = {.lex_state = 44}, + [1048] = {.lex_state = 0, .external_lex_state = 33}, + [1049] = {.lex_state = 0, .external_lex_state = 31}, + [1050] = {.lex_state = 0}, + [1051] = {.lex_state = 0, .external_lex_state = 30}, + [1052] = {.lex_state = 0, .external_lex_state = 29}, + [1053] = {.lex_state = 17}, + [1054] = {.lex_state = 0, .external_lex_state = 28}, + [1055] = {.lex_state = 44}, + [1056] = {.lex_state = 17}, + [1057] = {.lex_state = 0, .external_lex_state = 28}, + [1058] = {.lex_state = 21}, + [1059] = {.lex_state = 22}, + [1060] = {.lex_state = 0, .external_lex_state = 40}, + [1061] = {.lex_state = 0, .external_lex_state = 39}, + [1062] = {.lex_state = 0, .external_lex_state = 38}, + [1063] = {.lex_state = 0, .external_lex_state = 37}, + [1064] = {.lex_state = 0, .external_lex_state = 36}, + [1065] = {.lex_state = 0, .external_lex_state = 35}, + [1066] = {.lex_state = 0, .external_lex_state = 34}, + [1067] = {.lex_state = 0, .external_lex_state = 40}, + [1068] = {.lex_state = 0, .external_lex_state = 39}, + [1069] = {.lex_state = 0, .external_lex_state = 38}, + [1070] = {.lex_state = 0, .external_lex_state = 37}, + [1071] = {.lex_state = 0, .external_lex_state = 36}, + [1072] = {.lex_state = 0, .external_lex_state = 35}, + [1073] = {.lex_state = 0, .external_lex_state = 34}, + [1074] = {.lex_state = 0, .external_lex_state = 40}, + [1075] = {.lex_state = 0, .external_lex_state = 39}, + [1076] = {.lex_state = 0, .external_lex_state = 38}, + [1077] = {.lex_state = 0, .external_lex_state = 37}, + [1078] = {.lex_state = 0, .external_lex_state = 36}, + [1079] = {.lex_state = 0, .external_lex_state = 35}, + [1080] = {.lex_state = 0, .external_lex_state = 34}, + [1081] = {.lex_state = 0, .external_lex_state = 40}, + [1082] = {.lex_state = 0, .external_lex_state = 39}, + [1083] = {.lex_state = 0, .external_lex_state = 38}, + [1084] = {.lex_state = 0, .external_lex_state = 37}, + [1085] = {.lex_state = 0, .external_lex_state = 36}, + [1086] = {.lex_state = 0, .external_lex_state = 35}, + [1087] = {.lex_state = 0, .external_lex_state = 34}, + [1088] = {.lex_state = 0, .external_lex_state = 40}, + [1089] = {.lex_state = 0, .external_lex_state = 39}, + [1090] = {.lex_state = 0, .external_lex_state = 38}, + [1091] = {.lex_state = 0, .external_lex_state = 37}, + [1092] = {.lex_state = 0, .external_lex_state = 36}, + [1093] = {.lex_state = 0, .external_lex_state = 35}, + [1094] = {.lex_state = 0, .external_lex_state = 34}, + [1095] = {.lex_state = 0, .external_lex_state = 40}, + [1096] = {.lex_state = 0, .external_lex_state = 39}, + [1097] = {.lex_state = 0, .external_lex_state = 38}, + [1098] = {.lex_state = 0, .external_lex_state = 37}, + [1099] = {.lex_state = 0, .external_lex_state = 36}, + [1100] = {.lex_state = 0, .external_lex_state = 35}, + [1101] = {.lex_state = 0, .external_lex_state = 34}, + [1102] = {.lex_state = 0, .external_lex_state = 40}, + [1103] = {.lex_state = 0, .external_lex_state = 39}, + [1104] = {.lex_state = 0, .external_lex_state = 38}, + [1105] = {.lex_state = 0, .external_lex_state = 37}, + [1106] = {.lex_state = 0, .external_lex_state = 36}, + [1107] = {.lex_state = 0, .external_lex_state = 35}, + [1108] = {.lex_state = 0, .external_lex_state = 34}, + [1109] = {.lex_state = 0, .external_lex_state = 40}, + [1110] = {.lex_state = 0, .external_lex_state = 39}, + [1111] = {.lex_state = 0, .external_lex_state = 38}, + [1112] = {.lex_state = 0, .external_lex_state = 37}, + [1113] = {.lex_state = 0, .external_lex_state = 36}, + [1114] = {.lex_state = 0, .external_lex_state = 35}, + [1115] = {.lex_state = 0, .external_lex_state = 34}, + [1116] = {.lex_state = 0, .external_lex_state = 40}, + [1117] = {.lex_state = 0, .external_lex_state = 39}, + [1118] = {.lex_state = 0, .external_lex_state = 38}, + [1119] = {.lex_state = 0, .external_lex_state = 37}, + [1120] = {.lex_state = 0, .external_lex_state = 36}, + [1121] = {.lex_state = 0, .external_lex_state = 35}, + [1122] = {.lex_state = 0, .external_lex_state = 34}, + [1123] = {.lex_state = 0, .external_lex_state = 40}, + [1124] = {.lex_state = 0, .external_lex_state = 39}, + [1125] = {.lex_state = 0, .external_lex_state = 38}, + [1126] = {.lex_state = 0, .external_lex_state = 37}, + [1127] = {.lex_state = 0, .external_lex_state = 36}, + [1128] = {.lex_state = 0, .external_lex_state = 35}, + [1129] = {.lex_state = 0, .external_lex_state = 34}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -7835,9 +5415,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_] = ACTIONS(1), [anon_sym__] = ACTIONS(1), [anon_sym_LBRACE_STAR] = ACTIONS(1), - [anon_sym_SPACE] = ACTIONS(1), [anon_sym_STAR] = ACTIONS(1), - [aux_sym_strong_end_token1] = ACTIONS(1), + [anon_sym_LBRACE_CARET] = ACTIONS(1), + [anon_sym_CARET] = ACTIONS(1), + [anon_sym_LBRACE_TILDE] = ACTIONS(1), + [anon_sym_TILDE] = ACTIONS(1), + [anon_sym_LBRACE_EQ] = ACTIONS(1), + [anon_sym_LBRACE_PLUS] = ACTIONS(1), + [anon_sym_LBRACE_DASH] = ACTIONS(1), [anon_sym_BSLASH] = ACTIONS(1), [sym_ellipsis] = ACTIONS(1), [sym_em_dash] = ACTIONS(1), @@ -7845,19 +5430,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_backslash_escape] = ACTIONS(1), [anon_sym_LT] = ACTIONS(1), [anon_sym_GT] = ACTIONS(1), - [anon_sym_LBRACE_EQ] = ACTIONS(1), - [anon_sym_EQ_RBRACE] = ACTIONS(1), - [anon_sym_LBRACE_PLUS] = ACTIONS(1), - [anon_sym_PLUS_RBRACE] = ACTIONS(1), - [anon_sym_LBRACE_DASH] = ACTIONS(1), - [anon_sym_DASH_RBRACE] = ACTIONS(1), [sym_symbol] = ACTIONS(1), - [anon_sym_LBRACE_CARET] = ACTIONS(1), - [anon_sym_CARET] = ACTIONS(1), - [anon_sym_CARET_RBRACE] = ACTIONS(1), - [anon_sym_LBRACE_TILDE] = ACTIONS(1), - [anon_sym_TILDE] = ACTIONS(1), - [anon_sym_TILDE_RBRACE] = ACTIONS(1), [anon_sym_LBRACK_CARET] = ACTIONS(1), [anon_sym_RBRACK] = ACTIONS(1), [sym__id] = ACTIONS(1), @@ -7876,7 +5449,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_INFO] = ACTIONS(1), [anon_sym_XXX] = ACTIONS(1), [sym_fixme] = ACTIONS(1), - [anon_sym_PIPE] = ACTIONS(1), [sym__whitespace1] = ACTIONS(1), [sym__newline] = ACTIONS(1), [aux_sym__text_token1] = ACTIONS(1), @@ -7889,5967 +5461,4572 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_content] = ACTIONS(1), [sym__emphasis_mark_begin] = ACTIONS(1), [sym_emphasis_end] = ACTIONS(1), + [sym__strong_mark_begin] = ACTIONS(1), + [sym_strong_end] = ACTIONS(1), + [sym__superscript_mark_begin] = ACTIONS(1), + [sym_superscript_end] = ACTIONS(1), + [sym__subscript_mark_begin] = ACTIONS(1), + [sym_subscript_end] = ACTIONS(1), + [sym__highlighted_mark_begin] = ACTIONS(1), + [sym_highlighted_end] = ACTIONS(1), + [sym__insert_mark_begin] = ACTIONS(1), + [sym_insert_end] = ACTIONS(1), + [sym__delete_mark_begin] = ACTIONS(1), + [sym_delete_end] = ACTIONS(1), [sym__in_fallback] = ACTIONS(1), [sym__non_whitespace_check] = ACTIONS(1), [sym__error] = ACTIONS(1), }, [1] = { - [sym_inline] = STATE(978), - [sym__inline] = STATE(974), - [sym__element] = STATE(100), - [sym_emphasis] = STATE(198), - [sym_emphasis_begin] = STATE(970), - [sym_strong] = STATE(198), - [sym_strong_begin] = STATE(97), - [sym__hard_line_break] = STATE(198), - [sym_hard_line_break] = STATE(198), - [sym__smart_punctuation] = STATE(198), - [sym_autolink] = STATE(198), - [sym_highlighted] = STATE(198), - [sym_insert] = STATE(198), - [sym_delete] = STATE(198), - [sym_superscript] = STATE(198), - [sym_subscript] = STATE(198), - [sym_footnote_reference] = STATE(198), - [sym__image] = STATE(198), - [sym_full_reference_image] = STATE(198), - [sym_collapsed_reference_image] = STATE(198), - [sym_inline_image] = STATE(198), - [sym__image_description] = STATE(689), - [sym__link] = STATE(198), - [sym_full_reference_link] = STATE(198), - [sym_collapsed_reference_link] = STATE(198), - [sym_inline_link] = STATE(198), - [sym_link_text] = STATE(694), - [sym__comment_with_spaces] = STATE(198), - [sym_span] = STATE(198), - [sym_raw_inline] = STATE(198), - [sym_math] = STATE(198), - [sym_verbatim] = STATE(198), - [sym__todo_highlights] = STATE(198), - [sym_todo] = STATE(198), - [sym_note] = STATE(198), - [sym__symbol_fallback] = STATE(198), - [aux_sym__text] = STATE(168), - [aux_sym__inline_repeat1] = STATE(100), + [sym_inline] = STATE(1043), + [sym__inline] = STATE(1042), + [sym__element] = STATE(38), + [sym_emphasis] = STATE(166), + [sym_emphasis_begin] = STATE(1041), + [sym_strong] = STATE(166), + [sym_strong_begin] = STATE(1040), + [sym_superscript] = STATE(166), + [sym_superscript_begin] = STATE(1039), + [sym_subscript] = STATE(166), + [sym_subscript_begin] = STATE(1038), + [sym_highlighted] = STATE(166), + [sym_highlighted_begin] = STATE(1037), + [sym_insert] = STATE(166), + [sym_insert_begin] = STATE(1036), + [sym_delete] = STATE(166), + [sym_delete_begin] = STATE(1029), + [sym_hard_line_break] = STATE(166), + [sym__smart_punctuation] = STATE(166), + [sym_autolink] = STATE(166), + [sym_footnote_reference] = STATE(166), + [sym__image] = STATE(166), + [sym_full_reference_image] = STATE(166), + [sym_collapsed_reference_image] = STATE(166), + [sym_inline_image] = STATE(166), + [sym__image_description] = STATE(696), + [sym__link] = STATE(166), + [sym_full_reference_link] = STATE(166), + [sym_collapsed_reference_link] = STATE(166), + [sym_inline_link] = STATE(166), + [sym_link_text] = STATE(693), + [sym__comment_with_spaces] = STATE(166), + [sym_span] = STATE(166), + [sym_raw_inline] = STATE(166), + [sym_math] = STATE(166), + [sym_verbatim] = STATE(166), + [sym__todo_highlights] = STATE(166), + [sym_todo] = STATE(166), + [sym_note] = STATE(166), + [sym__symbol_fallback] = STATE(166), + [aux_sym__text] = STATE(160), + [aux_sym__inline_repeat1] = STATE(38), [anon_sym_LBRACE_] = ACTIONS(3), [anon_sym__] = ACTIONS(5), [anon_sym_LBRACE_STAR] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(11), - [sym_quotation_marks] = ACTIONS(13), - [sym_ellipsis] = ACTIONS(13), - [sym_em_dash] = ACTIONS(13), - [sym_en_dash] = ACTIONS(15), - [sym_backslash_escape] = ACTIONS(15), - [anon_sym_LT] = ACTIONS(17), - [anon_sym_LBRACE_EQ] = ACTIONS(19), - [anon_sym_LBRACE_PLUS] = ACTIONS(21), - [anon_sym_LBRACE_DASH] = ACTIONS(23), - [sym_symbol] = ACTIONS(13), - [anon_sym_LBRACE_CARET] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(25), - [anon_sym_LBRACE_TILDE] = ACTIONS(27), - [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_LBRACE_CARET] = ACTIONS(11), + [anon_sym_CARET] = ACTIONS(11), + [anon_sym_LBRACE_TILDE] = ACTIONS(13), + [anon_sym_TILDE] = ACTIONS(13), + [anon_sym_LBRACE_EQ] = ACTIONS(15), + [anon_sym_LBRACE_PLUS] = ACTIONS(17), + [anon_sym_LBRACE_DASH] = ACTIONS(19), + [anon_sym_BSLASH] = ACTIONS(21), + [sym_quotation_marks] = ACTIONS(23), + [sym_ellipsis] = ACTIONS(23), + [sym_em_dash] = ACTIONS(23), + [sym_en_dash] = ACTIONS(25), + [sym_backslash_escape] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(27), + [sym_symbol] = ACTIONS(23), [anon_sym_LBRACK_CARET] = ACTIONS(29), [anon_sym_BANG_LBRACK] = ACTIONS(31), [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACE2] = ACTIONS(15), + [anon_sym_LBRACE2] = ACTIONS(25), [anon_sym_DOLLAR] = ACTIONS(35), [anon_sym_TODO] = ACTIONS(37), [anon_sym_WIP] = ACTIONS(37), [anon_sym_NOTE] = ACTIONS(39), [anon_sym_INFO] = ACTIONS(39), [anon_sym_XXX] = ACTIONS(39), - [sym_fixme] = ACTIONS(13), - [anon_sym_PIPE] = ACTIONS(13), + [sym_fixme] = ACTIONS(23), [sym__whitespace1] = ACTIONS(41), [sym__newline] = ACTIONS(43), [aux_sym__text_token1] = ACTIONS(45), [sym__verbatim_begin] = ACTIONS(47), }, [2] = { - [sym__inline] = STATE(915), - [sym__element] = STATE(118), - [sym_emphasis] = STATE(201), - [sym_emphasis_begin] = STATE(1005), - [sym_strong] = STATE(201), - [sym_strong_begin] = STATE(105), - [sym__hard_line_break] = STATE(201), - [sym_hard_line_break] = STATE(201), - [sym__smart_punctuation] = STATE(201), - [sym_autolink] = STATE(201), - [sym_highlighted] = STATE(201), - [sym_insert] = STATE(201), - [sym_delete] = STATE(201), - [sym_superscript] = STATE(201), - [sym_subscript] = STATE(201), - [sym_footnote_reference] = STATE(201), - [sym__image] = STATE(201), - [sym_full_reference_image] = STATE(201), - [sym_collapsed_reference_image] = STATE(201), - [sym_inline_image] = STATE(201), - [sym__image_description] = STATE(712), - [sym__link] = STATE(201), - [sym_full_reference_link] = STATE(201), - [sym_collapsed_reference_link] = STATE(201), - [sym_inline_link] = STATE(201), - [sym_link_text] = STATE(717), - [sym__comment_with_spaces] = STATE(201), - [sym_span] = STATE(201), - [sym_raw_inline] = STATE(201), - [sym_math] = STATE(201), - [sym_verbatim] = STATE(201), - [sym__todo_highlights] = STATE(201), - [sym_todo] = STATE(201), - [sym_note] = STATE(201), - [sym__symbol_fallback] = STATE(201), + [sym__inline] = STATE(1011), + [sym__element] = STATE(106), + [sym_emphasis] = STATE(211), + [sym_emphasis_begin] = STATE(1060), + [sym_strong] = STATE(211), + [sym_strong_begin] = STATE(1061), + [sym_superscript] = STATE(211), + [sym_superscript_begin] = STATE(1062), + [sym_subscript] = STATE(211), + [sym_subscript_begin] = STATE(1063), + [sym_highlighted] = STATE(211), + [sym_highlighted_begin] = STATE(1064), + [sym_insert] = STATE(211), + [sym_insert_begin] = STATE(1065), + [sym_delete] = STATE(211), + [sym_delete_begin] = STATE(1066), + [sym_hard_line_break] = STATE(211), + [sym__smart_punctuation] = STATE(211), + [sym_autolink] = STATE(211), + [sym_footnote_reference] = STATE(211), + [sym__image] = STATE(211), + [sym_full_reference_image] = STATE(211), + [sym_collapsed_reference_image] = STATE(211), + [sym_inline_image] = STATE(211), + [sym__image_description] = STATE(671), + [sym__link] = STATE(211), + [sym_full_reference_link] = STATE(211), + [sym_collapsed_reference_link] = STATE(211), + [sym_inline_link] = STATE(211), + [sym_link_text] = STATE(676), + [sym__comment_with_spaces] = STATE(211), + [sym_span] = STATE(211), + [sym_raw_inline] = STATE(211), + [sym_math] = STATE(211), + [sym_verbatim] = STATE(211), + [sym__todo_highlights] = STATE(211), + [sym_todo] = STATE(211), + [sym_note] = STATE(211), + [sym__symbol_fallback] = STATE(211), [aux_sym__text] = STATE(139), - [aux_sym__inline_repeat1] = STATE(118), + [aux_sym__inline_repeat1] = STATE(106), [anon_sym_LBRACE] = ACTIONS(49), [anon_sym_LBRACE_] = ACTIONS(51), [anon_sym__] = ACTIONS(54), [anon_sym_LBRACE_STAR] = ACTIONS(57), [anon_sym_STAR] = ACTIONS(60), - [anon_sym_BSLASH] = ACTIONS(63), - [sym_quotation_marks] = ACTIONS(66), - [sym_ellipsis] = ACTIONS(66), - [sym_em_dash] = ACTIONS(66), - [sym_en_dash] = ACTIONS(69), - [sym_backslash_escape] = ACTIONS(69), - [anon_sym_LT] = ACTIONS(72), - [anon_sym_LBRACE_EQ] = ACTIONS(75), - [anon_sym_LBRACE_PLUS] = ACTIONS(78), - [anon_sym_LBRACE_DASH] = ACTIONS(81), - [sym_symbol] = ACTIONS(66), - [anon_sym_LBRACE_CARET] = ACTIONS(84), - [anon_sym_CARET] = ACTIONS(84), - [anon_sym_LBRACE_TILDE] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(90), - [anon_sym_TILDE_RBRACE] = ACTIONS(93), - [anon_sym_LBRACK_CARET] = ACTIONS(95), - [anon_sym_RBRACK] = ACTIONS(98), - [anon_sym_BANG_LBRACK] = ACTIONS(100), - [anon_sym_LBRACK] = ACTIONS(103), - [anon_sym_LBRACE2] = ACTIONS(69), - [anon_sym_DOLLAR] = ACTIONS(106), - [anon_sym_TODO] = ACTIONS(109), - [anon_sym_WIP] = ACTIONS(109), - [anon_sym_NOTE] = ACTIONS(112), - [anon_sym_INFO] = ACTIONS(112), - [anon_sym_XXX] = ACTIONS(112), - [sym_fixme] = ACTIONS(66), - [anon_sym_PIPE] = ACTIONS(66), - [sym__whitespace1] = ACTIONS(115), - [sym__newline] = ACTIONS(118), - [aux_sym__text_token1] = ACTIONS(121), - [sym__verbatim_begin] = ACTIONS(124), + [anon_sym_LBRACE_CARET] = ACTIONS(63), + [anon_sym_CARET] = ACTIONS(63), + [anon_sym_LBRACE_TILDE] = ACTIONS(66), + [anon_sym_TILDE] = ACTIONS(66), + [anon_sym_LBRACE_EQ] = ACTIONS(69), + [anon_sym_LBRACE_PLUS] = ACTIONS(72), + [anon_sym_LBRACE_DASH] = ACTIONS(75), + [anon_sym_BSLASH] = ACTIONS(78), + [sym_quotation_marks] = ACTIONS(81), + [sym_ellipsis] = ACTIONS(81), + [sym_em_dash] = ACTIONS(81), + [sym_en_dash] = ACTIONS(84), + [sym_backslash_escape] = ACTIONS(84), + [anon_sym_LT] = ACTIONS(87), + [sym_symbol] = ACTIONS(81), + [anon_sym_LBRACK_CARET] = ACTIONS(90), + [anon_sym_RBRACK] = ACTIONS(93), + [anon_sym_BANG_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(98), + [anon_sym_RBRACK2] = ACTIONS(101), + [anon_sym_LBRACE2] = ACTIONS(84), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_TODO] = ACTIONS(106), + [anon_sym_WIP] = ACTIONS(106), + [anon_sym_NOTE] = ACTIONS(109), + [anon_sym_INFO] = ACTIONS(109), + [anon_sym_XXX] = ACTIONS(109), + [sym_fixme] = ACTIONS(81), + [sym__whitespace1] = ACTIONS(112), + [sym__newline] = ACTIONS(115), + [aux_sym__text_token1] = ACTIONS(118), + [sym__verbatim_begin] = ACTIONS(121), }, [3] = { - [sym__inline] = STATE(915), - [sym__element] = STATE(118), - [sym_emphasis] = STATE(201), - [sym_emphasis_begin] = STATE(1005), - [sym_strong] = STATE(201), - [sym_strong_begin] = STATE(105), - [sym__hard_line_break] = STATE(201), - [sym_hard_line_break] = STATE(201), - [sym__smart_punctuation] = STATE(201), - [sym_autolink] = STATE(201), - [sym_highlighted] = STATE(201), - [sym_insert] = STATE(201), - [sym_delete] = STATE(201), - [sym_superscript] = STATE(201), - [sym_subscript] = STATE(201), - [sym_footnote_reference] = STATE(201), - [sym__image] = STATE(201), - [sym_full_reference_image] = STATE(201), - [sym_collapsed_reference_image] = STATE(201), - [sym_inline_image] = STATE(201), - [sym__image_description] = STATE(712), - [sym__link] = STATE(201), - [sym_full_reference_link] = STATE(201), - [sym_collapsed_reference_link] = STATE(201), - [sym_inline_link] = STATE(201), - [sym_link_text] = STATE(717), - [sym__comment_with_spaces] = STATE(201), - [sym_span] = STATE(201), - [sym_raw_inline] = STATE(201), - [sym_math] = STATE(201), - [sym_verbatim] = STATE(201), - [sym__todo_highlights] = STATE(201), - [sym_todo] = STATE(201), - [sym_note] = STATE(201), - [sym__symbol_fallback] = STATE(201), + [sym__inline] = STATE(1011), + [sym__element] = STATE(106), + [sym_emphasis] = STATE(211), + [sym_emphasis_begin] = STATE(1060), + [sym_strong] = STATE(211), + [sym_strong_begin] = STATE(1061), + [sym_superscript] = STATE(211), + [sym_superscript_begin] = STATE(1062), + [sym_subscript] = STATE(211), + [sym_subscript_begin] = STATE(1063), + [sym_highlighted] = STATE(211), + [sym_highlighted_begin] = STATE(1064), + [sym_insert] = STATE(211), + [sym_insert_begin] = STATE(1065), + [sym_delete] = STATE(211), + [sym_delete_begin] = STATE(1066), + [sym_hard_line_break] = STATE(211), + [sym__smart_punctuation] = STATE(211), + [sym_autolink] = STATE(211), + [sym_footnote_reference] = STATE(211), + [sym__image] = STATE(211), + [sym_full_reference_image] = STATE(211), + [sym_collapsed_reference_image] = STATE(211), + [sym_inline_image] = STATE(211), + [sym__image_description] = STATE(671), + [sym__link] = STATE(211), + [sym_full_reference_link] = STATE(211), + [sym_collapsed_reference_link] = STATE(211), + [sym_inline_link] = STATE(211), + [sym_link_text] = STATE(676), + [sym__comment_with_spaces] = STATE(211), + [sym_span] = STATE(211), + [sym_raw_inline] = STATE(211), + [sym_math] = STATE(211), + [sym_verbatim] = STATE(211), + [sym__todo_highlights] = STATE(211), + [sym_todo] = STATE(211), + [sym_note] = STATE(211), + [sym__symbol_fallback] = STATE(211), [aux_sym__text] = STATE(139), - [aux_sym__inline_repeat1] = STATE(118), + [aux_sym__inline_repeat1] = STATE(106), [anon_sym_LBRACE] = ACTIONS(49), [anon_sym_LBRACE_] = ACTIONS(51), [anon_sym__] = ACTIONS(54), [anon_sym_LBRACE_STAR] = ACTIONS(57), [anon_sym_STAR] = ACTIONS(60), - [anon_sym_BSLASH] = ACTIONS(63), - [sym_quotation_marks] = ACTIONS(66), - [sym_ellipsis] = ACTIONS(66), - [sym_em_dash] = ACTIONS(66), - [sym_en_dash] = ACTIONS(69), - [sym_backslash_escape] = ACTIONS(69), - [anon_sym_LT] = ACTIONS(72), - [anon_sym_LBRACE_EQ] = ACTIONS(75), - [anon_sym_LBRACE_PLUS] = ACTIONS(78), - [anon_sym_LBRACE_DASH] = ACTIONS(81), - [anon_sym_DASH_RBRACE] = ACTIONS(93), - [sym_symbol] = ACTIONS(66), - [anon_sym_LBRACE_CARET] = ACTIONS(84), - [anon_sym_CARET] = ACTIONS(84), - [anon_sym_LBRACE_TILDE] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(87), - [anon_sym_LBRACK_CARET] = ACTIONS(95), - [anon_sym_RBRACK] = ACTIONS(98), - [anon_sym_BANG_LBRACK] = ACTIONS(100), - [anon_sym_LBRACK] = ACTIONS(103), - [anon_sym_LBRACE2] = ACTIONS(69), - [anon_sym_DOLLAR] = ACTIONS(106), - [anon_sym_TODO] = ACTIONS(109), - [anon_sym_WIP] = ACTIONS(109), - [anon_sym_NOTE] = ACTIONS(112), - [anon_sym_INFO] = ACTIONS(112), - [anon_sym_XXX] = ACTIONS(112), - [sym_fixme] = ACTIONS(66), - [anon_sym_PIPE] = ACTIONS(66), - [sym__whitespace1] = ACTIONS(115), - [sym__newline] = ACTIONS(118), - [aux_sym__text_token1] = ACTIONS(121), - [sym__verbatim_begin] = ACTIONS(124), + [anon_sym_LBRACE_CARET] = ACTIONS(63), + [anon_sym_CARET] = ACTIONS(63), + [anon_sym_LBRACE_TILDE] = ACTIONS(66), + [anon_sym_TILDE] = ACTIONS(66), + [anon_sym_LBRACE_EQ] = ACTIONS(69), + [anon_sym_LBRACE_PLUS] = ACTIONS(72), + [anon_sym_LBRACE_DASH] = ACTIONS(75), + [anon_sym_BSLASH] = ACTIONS(78), + [sym_quotation_marks] = ACTIONS(81), + [sym_ellipsis] = ACTIONS(81), + [sym_em_dash] = ACTIONS(81), + [sym_en_dash] = ACTIONS(84), + [sym_backslash_escape] = ACTIONS(84), + [anon_sym_LT] = ACTIONS(87), + [sym_symbol] = ACTIONS(81), + [anon_sym_LBRACK_CARET] = ACTIONS(90), + [anon_sym_RBRACK] = ACTIONS(124), + [anon_sym_BANG_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(98), + [anon_sym_LBRACE2] = ACTIONS(84), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_TODO] = ACTIONS(106), + [anon_sym_WIP] = ACTIONS(106), + [anon_sym_NOTE] = ACTIONS(109), + [anon_sym_INFO] = ACTIONS(109), + [anon_sym_XXX] = ACTIONS(109), + [sym_fixme] = ACTIONS(81), + [sym__whitespace1] = ACTIONS(112), + [sym__newline] = ACTIONS(115), + [aux_sym__text_token1] = ACTIONS(118), + [sym__verbatim_begin] = ACTIONS(121), + [sym_delete_end] = ACTIONS(101), }, [4] = { - [sym__inline] = STATE(915), - [sym__element] = STATE(118), - [sym_emphasis] = STATE(201), - [sym_emphasis_begin] = STATE(1005), - [sym_strong] = STATE(201), - [sym_strong_begin] = STATE(105), - [sym__hard_line_break] = STATE(201), - [sym_hard_line_break] = STATE(201), - [sym__smart_punctuation] = STATE(201), - [sym_autolink] = STATE(201), - [sym_highlighted] = STATE(201), - [sym_insert] = STATE(201), - [sym_delete] = STATE(201), - [sym_superscript] = STATE(201), - [sym_subscript] = STATE(201), - [sym_footnote_reference] = STATE(201), - [sym__image] = STATE(201), - [sym_full_reference_image] = STATE(201), - [sym_collapsed_reference_image] = STATE(201), - [sym_inline_image] = STATE(201), - [sym__image_description] = STATE(712), - [sym__link] = STATE(201), - [sym_full_reference_link] = STATE(201), - [sym_collapsed_reference_link] = STATE(201), - [sym_inline_link] = STATE(201), - [sym_link_text] = STATE(717), - [sym__comment_with_spaces] = STATE(201), - [sym_span] = STATE(201), - [sym_raw_inline] = STATE(201), - [sym_math] = STATE(201), - [sym_verbatim] = STATE(201), - [sym__todo_highlights] = STATE(201), - [sym_todo] = STATE(201), - [sym_note] = STATE(201), - [sym__symbol_fallback] = STATE(201), + [sym__inline] = STATE(1011), + [sym__element] = STATE(106), + [sym_emphasis] = STATE(211), + [sym_emphasis_begin] = STATE(1060), + [sym_strong] = STATE(211), + [sym_strong_begin] = STATE(1061), + [sym_superscript] = STATE(211), + [sym_superscript_begin] = STATE(1062), + [sym_subscript] = STATE(211), + [sym_subscript_begin] = STATE(1063), + [sym_highlighted] = STATE(211), + [sym_highlighted_begin] = STATE(1064), + [sym_insert] = STATE(211), + [sym_insert_begin] = STATE(1065), + [sym_delete] = STATE(211), + [sym_delete_begin] = STATE(1066), + [sym_hard_line_break] = STATE(211), + [sym__smart_punctuation] = STATE(211), + [sym_autolink] = STATE(211), + [sym_footnote_reference] = STATE(211), + [sym__image] = STATE(211), + [sym_full_reference_image] = STATE(211), + [sym_collapsed_reference_image] = STATE(211), + [sym_inline_image] = STATE(211), + [sym__image_description] = STATE(671), + [sym__link] = STATE(211), + [sym_full_reference_link] = STATE(211), + [sym_collapsed_reference_link] = STATE(211), + [sym_inline_link] = STATE(211), + [sym_link_text] = STATE(676), + [sym__comment_with_spaces] = STATE(211), + [sym_span] = STATE(211), + [sym_raw_inline] = STATE(211), + [sym_math] = STATE(211), + [sym_verbatim] = STATE(211), + [sym__todo_highlights] = STATE(211), + [sym_todo] = STATE(211), + [sym_note] = STATE(211), + [sym__symbol_fallback] = STATE(211), [aux_sym__text] = STATE(139), - [aux_sym__inline_repeat1] = STATE(118), - [ts_builtin_sym_end] = ACTIONS(93), + [aux_sym__inline_repeat1] = STATE(106), [anon_sym_LBRACE] = ACTIONS(49), [anon_sym_LBRACE_] = ACTIONS(51), [anon_sym__] = ACTIONS(54), [anon_sym_LBRACE_STAR] = ACTIONS(57), [anon_sym_STAR] = ACTIONS(60), - [anon_sym_BSLASH] = ACTIONS(63), - [sym_quotation_marks] = ACTIONS(66), - [sym_ellipsis] = ACTIONS(66), - [sym_em_dash] = ACTIONS(66), - [sym_en_dash] = ACTIONS(69), - [sym_backslash_escape] = ACTIONS(69), - [anon_sym_LT] = ACTIONS(72), - [anon_sym_LBRACE_EQ] = ACTIONS(75), - [anon_sym_LBRACE_PLUS] = ACTIONS(78), - [anon_sym_LBRACE_DASH] = ACTIONS(81), - [sym_symbol] = ACTIONS(66), - [anon_sym_LBRACE_CARET] = ACTIONS(84), - [anon_sym_CARET] = ACTIONS(84), - [anon_sym_LBRACE_TILDE] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(87), - [anon_sym_LBRACK_CARET] = ACTIONS(95), - [anon_sym_RBRACK] = ACTIONS(98), - [anon_sym_BANG_LBRACK] = ACTIONS(100), - [anon_sym_LBRACK] = ACTIONS(103), - [anon_sym_LBRACE2] = ACTIONS(69), - [anon_sym_DOLLAR] = ACTIONS(106), - [anon_sym_TODO] = ACTIONS(109), - [anon_sym_WIP] = ACTIONS(109), - [anon_sym_NOTE] = ACTIONS(112), - [anon_sym_INFO] = ACTIONS(112), - [anon_sym_XXX] = ACTIONS(112), - [sym_fixme] = ACTIONS(66), - [anon_sym_PIPE] = ACTIONS(66), - [sym__whitespace1] = ACTIONS(115), - [sym__newline] = ACTIONS(118), - [aux_sym__text_token1] = ACTIONS(121), - [sym__verbatim_begin] = ACTIONS(124), + [anon_sym_LBRACE_CARET] = ACTIONS(63), + [anon_sym_CARET] = ACTIONS(63), + [anon_sym_LBRACE_TILDE] = ACTIONS(66), + [anon_sym_TILDE] = ACTIONS(66), + [anon_sym_LBRACE_EQ] = ACTIONS(69), + [anon_sym_LBRACE_PLUS] = ACTIONS(72), + [anon_sym_LBRACE_DASH] = ACTIONS(75), + [anon_sym_BSLASH] = ACTIONS(78), + [sym_quotation_marks] = ACTIONS(81), + [sym_ellipsis] = ACTIONS(81), + [sym_em_dash] = ACTIONS(81), + [sym_en_dash] = ACTIONS(84), + [sym_backslash_escape] = ACTIONS(84), + [anon_sym_LT] = ACTIONS(87), + [sym_symbol] = ACTIONS(81), + [anon_sym_LBRACK_CARET] = ACTIONS(90), + [anon_sym_RBRACK] = ACTIONS(124), + [anon_sym_BANG_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(98), + [anon_sym_LBRACE2] = ACTIONS(84), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_TODO] = ACTIONS(106), + [anon_sym_WIP] = ACTIONS(106), + [anon_sym_NOTE] = ACTIONS(109), + [anon_sym_INFO] = ACTIONS(109), + [anon_sym_XXX] = ACTIONS(109), + [sym_fixme] = ACTIONS(81), + [sym__whitespace1] = ACTIONS(112), + [sym__newline] = ACTIONS(115), + [aux_sym__text_token1] = ACTIONS(118), + [sym__verbatim_begin] = ACTIONS(121), + [sym_insert_end] = ACTIONS(101), }, [5] = { - [sym__inline] = STATE(915), - [sym__element] = STATE(118), - [sym_emphasis] = STATE(201), - [sym_emphasis_begin] = STATE(1005), - [sym_strong] = STATE(201), - [sym_strong_begin] = STATE(105), - [sym__hard_line_break] = STATE(201), - [sym_hard_line_break] = STATE(201), - [sym__smart_punctuation] = STATE(201), - [sym_autolink] = STATE(201), - [sym_highlighted] = STATE(201), - [sym_insert] = STATE(201), - [sym_delete] = STATE(201), - [sym_superscript] = STATE(201), - [sym_subscript] = STATE(201), - [sym_footnote_reference] = STATE(201), - [sym__image] = STATE(201), - [sym_full_reference_image] = STATE(201), - [sym_collapsed_reference_image] = STATE(201), - [sym_inline_image] = STATE(201), - [sym__image_description] = STATE(712), - [sym__link] = STATE(201), - [sym_full_reference_link] = STATE(201), - [sym_collapsed_reference_link] = STATE(201), - [sym_inline_link] = STATE(201), - [sym_link_text] = STATE(717), - [sym__comment_with_spaces] = STATE(201), - [sym_span] = STATE(201), - [sym_raw_inline] = STATE(201), - [sym_math] = STATE(201), - [sym_verbatim] = STATE(201), - [sym__todo_highlights] = STATE(201), - [sym_todo] = STATE(201), - [sym_note] = STATE(201), - [sym__symbol_fallback] = STATE(201), + [sym__inline] = STATE(1011), + [sym__element] = STATE(106), + [sym_emphasis] = STATE(211), + [sym_emphasis_begin] = STATE(1060), + [sym_strong] = STATE(211), + [sym_strong_begin] = STATE(1061), + [sym_superscript] = STATE(211), + [sym_superscript_begin] = STATE(1062), + [sym_subscript] = STATE(211), + [sym_subscript_begin] = STATE(1063), + [sym_highlighted] = STATE(211), + [sym_highlighted_begin] = STATE(1064), + [sym_insert] = STATE(211), + [sym_insert_begin] = STATE(1065), + [sym_delete] = STATE(211), + [sym_delete_begin] = STATE(1066), + [sym_hard_line_break] = STATE(211), + [sym__smart_punctuation] = STATE(211), + [sym_autolink] = STATE(211), + [sym_footnote_reference] = STATE(211), + [sym__image] = STATE(211), + [sym_full_reference_image] = STATE(211), + [sym_collapsed_reference_image] = STATE(211), + [sym_inline_image] = STATE(211), + [sym__image_description] = STATE(671), + [sym__link] = STATE(211), + [sym_full_reference_link] = STATE(211), + [sym_collapsed_reference_link] = STATE(211), + [sym_inline_link] = STATE(211), + [sym_link_text] = STATE(676), + [sym__comment_with_spaces] = STATE(211), + [sym_span] = STATE(211), + [sym_raw_inline] = STATE(211), + [sym_math] = STATE(211), + [sym_verbatim] = STATE(211), + [sym__todo_highlights] = STATE(211), + [sym_todo] = STATE(211), + [sym_note] = STATE(211), + [sym__symbol_fallback] = STATE(211), [aux_sym__text] = STATE(139), - [aux_sym__inline_repeat1] = STATE(118), + [aux_sym__inline_repeat1] = STATE(106), [anon_sym_LBRACE] = ACTIONS(49), [anon_sym_LBRACE_] = ACTIONS(51), [anon_sym__] = ACTIONS(54), [anon_sym_LBRACE_STAR] = ACTIONS(57), [anon_sym_STAR] = ACTIONS(60), - [anon_sym_BSLASH] = ACTIONS(63), - [sym_quotation_marks] = ACTIONS(66), - [sym_ellipsis] = ACTIONS(66), - [sym_em_dash] = ACTIONS(66), - [sym_en_dash] = ACTIONS(69), - [sym_backslash_escape] = ACTIONS(69), - [anon_sym_LT] = ACTIONS(72), - [anon_sym_LBRACE_EQ] = ACTIONS(75), - [anon_sym_LBRACE_PLUS] = ACTIONS(78), - [anon_sym_LBRACE_DASH] = ACTIONS(81), - [sym_symbol] = ACTIONS(66), - [anon_sym_LBRACE_CARET] = ACTIONS(84), - [anon_sym_CARET] = ACTIONS(127), - [anon_sym_CARET_RBRACE] = ACTIONS(93), - [anon_sym_LBRACE_TILDE] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(87), - [anon_sym_LBRACK_CARET] = ACTIONS(95), - [anon_sym_RBRACK] = ACTIONS(98), - [anon_sym_BANG_LBRACK] = ACTIONS(100), - [anon_sym_LBRACK] = ACTIONS(103), - [anon_sym_LBRACE2] = ACTIONS(69), - [anon_sym_DOLLAR] = ACTIONS(106), - [anon_sym_TODO] = ACTIONS(109), - [anon_sym_WIP] = ACTIONS(109), - [anon_sym_NOTE] = ACTIONS(112), - [anon_sym_INFO] = ACTIONS(112), - [anon_sym_XXX] = ACTIONS(112), - [sym_fixme] = ACTIONS(66), - [anon_sym_PIPE] = ACTIONS(66), - [sym__whitespace1] = ACTIONS(115), - [sym__newline] = ACTIONS(118), - [aux_sym__text_token1] = ACTIONS(121), - [sym__verbatim_begin] = ACTIONS(124), + [anon_sym_LBRACE_CARET] = ACTIONS(63), + [anon_sym_CARET] = ACTIONS(63), + [anon_sym_LBRACE_TILDE] = ACTIONS(66), + [anon_sym_TILDE] = ACTIONS(66), + [anon_sym_LBRACE_EQ] = ACTIONS(69), + [anon_sym_LBRACE_PLUS] = ACTIONS(72), + [anon_sym_LBRACE_DASH] = ACTIONS(75), + [anon_sym_BSLASH] = ACTIONS(78), + [sym_quotation_marks] = ACTIONS(81), + [sym_ellipsis] = ACTIONS(81), + [sym_em_dash] = ACTIONS(81), + [sym_en_dash] = ACTIONS(84), + [sym_backslash_escape] = ACTIONS(84), + [anon_sym_LT] = ACTIONS(87), + [sym_symbol] = ACTIONS(81), + [anon_sym_LBRACK_CARET] = ACTIONS(90), + [anon_sym_RBRACK] = ACTIONS(124), + [anon_sym_BANG_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(98), + [anon_sym_LBRACE2] = ACTIONS(84), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_TODO] = ACTIONS(106), + [anon_sym_WIP] = ACTIONS(106), + [anon_sym_NOTE] = ACTIONS(109), + [anon_sym_INFO] = ACTIONS(109), + [anon_sym_XXX] = ACTIONS(109), + [sym_fixme] = ACTIONS(81), + [sym__whitespace1] = ACTIONS(112), + [sym__newline] = ACTIONS(115), + [aux_sym__text_token1] = ACTIONS(118), + [sym__verbatim_begin] = ACTIONS(121), + [sym_strong_end] = ACTIONS(101), }, [6] = { - [sym__inline] = STATE(915), - [sym__element] = STATE(118), - [sym_emphasis] = STATE(201), - [sym_emphasis_begin] = STATE(1005), - [sym_strong] = STATE(201), - [sym_strong_begin] = STATE(105), - [sym__hard_line_break] = STATE(201), - [sym_hard_line_break] = STATE(201), - [sym__smart_punctuation] = STATE(201), - [sym_autolink] = STATE(201), - [sym_highlighted] = STATE(201), - [sym_insert] = STATE(201), - [sym_delete] = STATE(201), - [sym_superscript] = STATE(201), - [sym_subscript] = STATE(201), - [sym_footnote_reference] = STATE(201), - [sym__image] = STATE(201), - [sym_full_reference_image] = STATE(201), - [sym_collapsed_reference_image] = STATE(201), - [sym_inline_image] = STATE(201), - [sym__image_description] = STATE(712), - [sym__link] = STATE(201), - [sym_full_reference_link] = STATE(201), - [sym_collapsed_reference_link] = STATE(201), - [sym_inline_link] = STATE(201), - [sym_link_text] = STATE(717), - [sym__comment_with_spaces] = STATE(201), - [sym_span] = STATE(201), - [sym_raw_inline] = STATE(201), - [sym_math] = STATE(201), - [sym_verbatim] = STATE(201), - [sym__todo_highlights] = STATE(201), - [sym_todo] = STATE(201), - [sym_note] = STATE(201), - [sym__symbol_fallback] = STATE(201), + [sym__inline] = STATE(1011), + [sym__element] = STATE(106), + [sym_emphasis] = STATE(211), + [sym_emphasis_begin] = STATE(1060), + [sym_strong] = STATE(211), + [sym_strong_begin] = STATE(1061), + [sym_superscript] = STATE(211), + [sym_superscript_begin] = STATE(1062), + [sym_subscript] = STATE(211), + [sym_subscript_begin] = STATE(1063), + [sym_highlighted] = STATE(211), + [sym_highlighted_begin] = STATE(1064), + [sym_insert] = STATE(211), + [sym_insert_begin] = STATE(1065), + [sym_delete] = STATE(211), + [sym_delete_begin] = STATE(1066), + [sym_hard_line_break] = STATE(211), + [sym__smart_punctuation] = STATE(211), + [sym_autolink] = STATE(211), + [sym_footnote_reference] = STATE(211), + [sym__image] = STATE(211), + [sym_full_reference_image] = STATE(211), + [sym_collapsed_reference_image] = STATE(211), + [sym_inline_image] = STATE(211), + [sym__image_description] = STATE(671), + [sym__link] = STATE(211), + [sym_full_reference_link] = STATE(211), + [sym_collapsed_reference_link] = STATE(211), + [sym_inline_link] = STATE(211), + [sym_link_text] = STATE(676), + [sym__comment_with_spaces] = STATE(211), + [sym_span] = STATE(211), + [sym_raw_inline] = STATE(211), + [sym_math] = STATE(211), + [sym_verbatim] = STATE(211), + [sym__todo_highlights] = STATE(211), + [sym_todo] = STATE(211), + [sym_note] = STATE(211), + [sym__symbol_fallback] = STATE(211), [aux_sym__text] = STATE(139), - [aux_sym__inline_repeat1] = STATE(118), + [aux_sym__inline_repeat1] = STATE(106), [anon_sym_LBRACE] = ACTIONS(49), [anon_sym_LBRACE_] = ACTIONS(51), [anon_sym__] = ACTIONS(54), [anon_sym_LBRACE_STAR] = ACTIONS(57), [anon_sym_STAR] = ACTIONS(60), - [anon_sym_BSLASH] = ACTIONS(63), - [sym_quotation_marks] = ACTIONS(66), - [sym_ellipsis] = ACTIONS(66), - [sym_em_dash] = ACTIONS(66), - [sym_en_dash] = ACTIONS(69), - [sym_backslash_escape] = ACTIONS(69), - [anon_sym_LT] = ACTIONS(72), - [anon_sym_LBRACE_EQ] = ACTIONS(75), - [anon_sym_LBRACE_PLUS] = ACTIONS(78), - [anon_sym_PLUS_RBRACE] = ACTIONS(93), - [anon_sym_LBRACE_DASH] = ACTIONS(81), - [sym_symbol] = ACTIONS(66), - [anon_sym_LBRACE_CARET] = ACTIONS(84), - [anon_sym_CARET] = ACTIONS(84), - [anon_sym_LBRACE_TILDE] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(87), - [anon_sym_LBRACK_CARET] = ACTIONS(95), - [anon_sym_RBRACK] = ACTIONS(98), - [anon_sym_BANG_LBRACK] = ACTIONS(100), - [anon_sym_LBRACK] = ACTIONS(103), - [anon_sym_LBRACE2] = ACTIONS(69), - [anon_sym_DOLLAR] = ACTIONS(106), - [anon_sym_TODO] = ACTIONS(109), - [anon_sym_WIP] = ACTIONS(109), - [anon_sym_NOTE] = ACTIONS(112), - [anon_sym_INFO] = ACTIONS(112), - [anon_sym_XXX] = ACTIONS(112), - [sym_fixme] = ACTIONS(66), - [anon_sym_PIPE] = ACTIONS(66), - [sym__whitespace1] = ACTIONS(115), - [sym__newline] = ACTIONS(118), - [aux_sym__text_token1] = ACTIONS(121), - [sym__verbatim_begin] = ACTIONS(124), + [anon_sym_LBRACE_CARET] = ACTIONS(63), + [anon_sym_CARET] = ACTIONS(63), + [anon_sym_LBRACE_TILDE] = ACTIONS(66), + [anon_sym_TILDE] = ACTIONS(66), + [anon_sym_LBRACE_EQ] = ACTIONS(69), + [anon_sym_LBRACE_PLUS] = ACTIONS(72), + [anon_sym_LBRACE_DASH] = ACTIONS(75), + [anon_sym_BSLASH] = ACTIONS(78), + [sym_quotation_marks] = ACTIONS(81), + [sym_ellipsis] = ACTIONS(81), + [sym_em_dash] = ACTIONS(81), + [sym_en_dash] = ACTIONS(84), + [sym_backslash_escape] = ACTIONS(84), + [anon_sym_LT] = ACTIONS(87), + [sym_symbol] = ACTIONS(81), + [anon_sym_LBRACK_CARET] = ACTIONS(90), + [anon_sym_RBRACK] = ACTIONS(124), + [anon_sym_BANG_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(98), + [anon_sym_LBRACE2] = ACTIONS(84), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_TODO] = ACTIONS(106), + [anon_sym_WIP] = ACTIONS(106), + [anon_sym_NOTE] = ACTIONS(109), + [anon_sym_INFO] = ACTIONS(109), + [anon_sym_XXX] = ACTIONS(109), + [sym_fixme] = ACTIONS(81), + [sym__whitespace1] = ACTIONS(112), + [sym__newline] = ACTIONS(115), + [aux_sym__text_token1] = ACTIONS(118), + [sym__verbatim_begin] = ACTIONS(121), + [sym_subscript_end] = ACTIONS(101), }, [7] = { - [sym__inline] = STATE(915), - [sym__element] = STATE(118), - [sym_emphasis] = STATE(201), - [sym_emphasis_begin] = STATE(1005), - [sym_strong] = STATE(201), - [sym_strong_begin] = STATE(105), - [sym__hard_line_break] = STATE(201), - [sym_hard_line_break] = STATE(201), - [sym__smart_punctuation] = STATE(201), - [sym_autolink] = STATE(201), - [sym_highlighted] = STATE(201), - [sym_insert] = STATE(201), - [sym_delete] = STATE(201), - [sym_superscript] = STATE(201), - [sym_subscript] = STATE(201), - [sym_footnote_reference] = STATE(201), - [sym__image] = STATE(201), - [sym_full_reference_image] = STATE(201), - [sym_collapsed_reference_image] = STATE(201), - [sym_inline_image] = STATE(201), - [sym__image_description] = STATE(712), - [sym__link] = STATE(201), - [sym_full_reference_link] = STATE(201), - [sym_collapsed_reference_link] = STATE(201), - [sym_inline_link] = STATE(201), - [sym_link_text] = STATE(717), - [sym__comment_with_spaces] = STATE(201), - [sym_span] = STATE(201), - [sym_raw_inline] = STATE(201), - [sym_math] = STATE(201), - [sym_verbatim] = STATE(201), - [sym__todo_highlights] = STATE(201), - [sym_todo] = STATE(201), - [sym_note] = STATE(201), - [sym__symbol_fallback] = STATE(201), + [sym__inline] = STATE(1011), + [sym__element] = STATE(106), + [sym_emphasis] = STATE(211), + [sym_emphasis_begin] = STATE(1060), + [sym_strong] = STATE(211), + [sym_strong_begin] = STATE(1061), + [sym_superscript] = STATE(211), + [sym_superscript_begin] = STATE(1062), + [sym_subscript] = STATE(211), + [sym_subscript_begin] = STATE(1063), + [sym_highlighted] = STATE(211), + [sym_highlighted_begin] = STATE(1064), + [sym_insert] = STATE(211), + [sym_insert_begin] = STATE(1065), + [sym_delete] = STATE(211), + [sym_delete_begin] = STATE(1066), + [sym_hard_line_break] = STATE(211), + [sym__smart_punctuation] = STATE(211), + [sym_autolink] = STATE(211), + [sym_footnote_reference] = STATE(211), + [sym__image] = STATE(211), + [sym_full_reference_image] = STATE(211), + [sym_collapsed_reference_image] = STATE(211), + [sym_inline_image] = STATE(211), + [sym__image_description] = STATE(671), + [sym__link] = STATE(211), + [sym_full_reference_link] = STATE(211), + [sym_collapsed_reference_link] = STATE(211), + [sym_inline_link] = STATE(211), + [sym_link_text] = STATE(676), + [sym__comment_with_spaces] = STATE(211), + [sym_span] = STATE(211), + [sym_raw_inline] = STATE(211), + [sym_math] = STATE(211), + [sym_verbatim] = STATE(211), + [sym__todo_highlights] = STATE(211), + [sym_todo] = STATE(211), + [sym_note] = STATE(211), + [sym__symbol_fallback] = STATE(211), [aux_sym__text] = STATE(139), - [aux_sym__inline_repeat1] = STATE(118), + [aux_sym__inline_repeat1] = STATE(106), + [ts_builtin_sym_end] = ACTIONS(101), [anon_sym_LBRACE] = ACTIONS(49), [anon_sym_LBRACE_] = ACTIONS(51), [anon_sym__] = ACTIONS(54), [anon_sym_LBRACE_STAR] = ACTIONS(57), [anon_sym_STAR] = ACTIONS(60), - [anon_sym_BSLASH] = ACTIONS(63), - [sym_quotation_marks] = ACTIONS(66), - [sym_ellipsis] = ACTIONS(66), - [sym_em_dash] = ACTIONS(66), - [sym_en_dash] = ACTIONS(69), - [sym_backslash_escape] = ACTIONS(69), - [anon_sym_LT] = ACTIONS(72), - [anon_sym_LBRACE_EQ] = ACTIONS(75), - [anon_sym_LBRACE_PLUS] = ACTIONS(78), - [anon_sym_LBRACE_DASH] = ACTIONS(81), - [sym_symbol] = ACTIONS(66), - [anon_sym_LBRACE_CARET] = ACTIONS(84), - [anon_sym_CARET] = ACTIONS(84), - [anon_sym_LBRACE_TILDE] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(87), - [anon_sym_LBRACK_CARET] = ACTIONS(95), - [anon_sym_RBRACK] = ACTIONS(130), - [anon_sym_BANG_LBRACK] = ACTIONS(100), - [anon_sym_LBRACK] = ACTIONS(103), - [anon_sym_RBRACK2] = ACTIONS(93), - [anon_sym_LBRACE2] = ACTIONS(69), - [anon_sym_DOLLAR] = ACTIONS(106), - [anon_sym_TODO] = ACTIONS(109), - [anon_sym_WIP] = ACTIONS(109), - [anon_sym_NOTE] = ACTIONS(112), - [anon_sym_INFO] = ACTIONS(112), - [anon_sym_XXX] = ACTIONS(112), - [sym_fixme] = ACTIONS(66), - [anon_sym_PIPE] = ACTIONS(66), - [sym__whitespace1] = ACTIONS(115), - [sym__newline] = ACTIONS(118), - [aux_sym__text_token1] = ACTIONS(121), - [sym__verbatim_begin] = ACTIONS(124), + [anon_sym_LBRACE_CARET] = ACTIONS(63), + [anon_sym_CARET] = ACTIONS(63), + [anon_sym_LBRACE_TILDE] = ACTIONS(66), + [anon_sym_TILDE] = ACTIONS(66), + [anon_sym_LBRACE_EQ] = ACTIONS(69), + [anon_sym_LBRACE_PLUS] = ACTIONS(72), + [anon_sym_LBRACE_DASH] = ACTIONS(75), + [anon_sym_BSLASH] = ACTIONS(78), + [sym_quotation_marks] = ACTIONS(81), + [sym_ellipsis] = ACTIONS(81), + [sym_em_dash] = ACTIONS(81), + [sym_en_dash] = ACTIONS(84), + [sym_backslash_escape] = ACTIONS(84), + [anon_sym_LT] = ACTIONS(87), + [sym_symbol] = ACTIONS(81), + [anon_sym_LBRACK_CARET] = ACTIONS(90), + [anon_sym_RBRACK] = ACTIONS(124), + [anon_sym_BANG_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(98), + [anon_sym_LBRACE2] = ACTIONS(84), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_TODO] = ACTIONS(106), + [anon_sym_WIP] = ACTIONS(106), + [anon_sym_NOTE] = ACTIONS(109), + [anon_sym_INFO] = ACTIONS(109), + [anon_sym_XXX] = ACTIONS(109), + [sym_fixme] = ACTIONS(81), + [sym__whitespace1] = ACTIONS(112), + [sym__newline] = ACTIONS(115), + [aux_sym__text_token1] = ACTIONS(118), + [sym__verbatim_begin] = ACTIONS(121), }, [8] = { - [sym__inline] = STATE(915), - [sym__element] = STATE(118), - [sym_emphasis] = STATE(201), - [sym_emphasis_begin] = STATE(1005), - [sym_strong] = STATE(201), - [sym_strong_begin] = STATE(105), - [sym__hard_line_break] = STATE(201), - [sym_hard_line_break] = STATE(201), - [sym__smart_punctuation] = STATE(201), - [sym_autolink] = STATE(201), - [sym_highlighted] = STATE(201), - [sym_insert] = STATE(201), - [sym_delete] = STATE(201), - [sym_superscript] = STATE(201), - [sym_subscript] = STATE(201), - [sym_footnote_reference] = STATE(201), - [sym__image] = STATE(201), - [sym_full_reference_image] = STATE(201), - [sym_collapsed_reference_image] = STATE(201), - [sym_inline_image] = STATE(201), - [sym__image_description] = STATE(712), - [sym__link] = STATE(201), - [sym_full_reference_link] = STATE(201), - [sym_collapsed_reference_link] = STATE(201), - [sym_inline_link] = STATE(201), - [sym_link_text] = STATE(717), - [sym__comment_with_spaces] = STATE(201), - [sym_span] = STATE(201), - [sym_raw_inline] = STATE(201), - [sym_math] = STATE(201), - [sym_verbatim] = STATE(201), - [sym__todo_highlights] = STATE(201), - [sym_todo] = STATE(201), - [sym_note] = STATE(201), - [sym__symbol_fallback] = STATE(201), + [sym__inline] = STATE(1011), + [sym__element] = STATE(106), + [sym_emphasis] = STATE(211), + [sym_emphasis_begin] = STATE(1060), + [sym_strong] = STATE(211), + [sym_strong_begin] = STATE(1061), + [sym_superscript] = STATE(211), + [sym_superscript_begin] = STATE(1062), + [sym_subscript] = STATE(211), + [sym_subscript_begin] = STATE(1063), + [sym_highlighted] = STATE(211), + [sym_highlighted_begin] = STATE(1064), + [sym_insert] = STATE(211), + [sym_insert_begin] = STATE(1065), + [sym_delete] = STATE(211), + [sym_delete_begin] = STATE(1066), + [sym_hard_line_break] = STATE(211), + [sym__smart_punctuation] = STATE(211), + [sym_autolink] = STATE(211), + [sym_footnote_reference] = STATE(211), + [sym__image] = STATE(211), + [sym_full_reference_image] = STATE(211), + [sym_collapsed_reference_image] = STATE(211), + [sym_inline_image] = STATE(211), + [sym__image_description] = STATE(671), + [sym__link] = STATE(211), + [sym_full_reference_link] = STATE(211), + [sym_collapsed_reference_link] = STATE(211), + [sym_inline_link] = STATE(211), + [sym_link_text] = STATE(676), + [sym__comment_with_spaces] = STATE(211), + [sym_span] = STATE(211), + [sym_raw_inline] = STATE(211), + [sym_math] = STATE(211), + [sym_verbatim] = STATE(211), + [sym__todo_highlights] = STATE(211), + [sym_todo] = STATE(211), + [sym_note] = STATE(211), + [sym__symbol_fallback] = STATE(211), [aux_sym__text] = STATE(139), - [aux_sym__inline_repeat1] = STATE(118), + [aux_sym__inline_repeat1] = STATE(106), [anon_sym_LBRACE] = ACTIONS(49), [anon_sym_LBRACE_] = ACTIONS(51), [anon_sym__] = ACTIONS(54), [anon_sym_LBRACE_STAR] = ACTIONS(57), [anon_sym_STAR] = ACTIONS(60), - [anon_sym_BSLASH] = ACTIONS(63), - [sym_quotation_marks] = ACTIONS(66), - [sym_ellipsis] = ACTIONS(66), - [sym_em_dash] = ACTIONS(66), - [sym_en_dash] = ACTIONS(69), - [sym_backslash_escape] = ACTIONS(69), - [anon_sym_LT] = ACTIONS(72), - [anon_sym_LBRACE_EQ] = ACTIONS(75), - [anon_sym_LBRACE_PLUS] = ACTIONS(78), - [anon_sym_LBRACE_DASH] = ACTIONS(81), - [sym_symbol] = ACTIONS(66), - [anon_sym_LBRACE_CARET] = ACTIONS(84), - [anon_sym_CARET] = ACTIONS(84), - [anon_sym_LBRACE_TILDE] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(87), - [anon_sym_LBRACK_CARET] = ACTIONS(95), - [anon_sym_RBRACK] = ACTIONS(98), - [anon_sym_BANG_LBRACK] = ACTIONS(100), - [anon_sym_LBRACK] = ACTIONS(103), - [anon_sym_LBRACE2] = ACTIONS(69), - [anon_sym_DOLLAR] = ACTIONS(106), - [anon_sym_TODO] = ACTIONS(109), - [anon_sym_WIP] = ACTIONS(109), - [anon_sym_NOTE] = ACTIONS(112), - [anon_sym_INFO] = ACTIONS(112), - [anon_sym_XXX] = ACTIONS(112), - [sym_fixme] = ACTIONS(66), - [anon_sym_PIPE] = ACTIONS(66), - [sym__whitespace1] = ACTIONS(115), - [sym__newline] = ACTIONS(118), - [aux_sym__text_token1] = ACTIONS(121), - [sym__verbatim_begin] = ACTIONS(124), - [sym_emphasis_end] = ACTIONS(93), + [anon_sym_LBRACE_CARET] = ACTIONS(63), + [anon_sym_CARET] = ACTIONS(63), + [anon_sym_LBRACE_TILDE] = ACTIONS(66), + [anon_sym_TILDE] = ACTIONS(66), + [anon_sym_LBRACE_EQ] = ACTIONS(69), + [anon_sym_LBRACE_PLUS] = ACTIONS(72), + [anon_sym_LBRACE_DASH] = ACTIONS(75), + [anon_sym_BSLASH] = ACTIONS(78), + [sym_quotation_marks] = ACTIONS(81), + [sym_ellipsis] = ACTIONS(81), + [sym_em_dash] = ACTIONS(81), + [sym_en_dash] = ACTIONS(84), + [sym_backslash_escape] = ACTIONS(84), + [anon_sym_LT] = ACTIONS(87), + [sym_symbol] = ACTIONS(81), + [anon_sym_LBRACK_CARET] = ACTIONS(90), + [anon_sym_RBRACK] = ACTIONS(124), + [anon_sym_BANG_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(98), + [anon_sym_LBRACE2] = ACTIONS(84), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_TODO] = ACTIONS(106), + [anon_sym_WIP] = ACTIONS(106), + [anon_sym_NOTE] = ACTIONS(109), + [anon_sym_INFO] = ACTIONS(109), + [anon_sym_XXX] = ACTIONS(109), + [sym_fixme] = ACTIONS(81), + [sym__whitespace1] = ACTIONS(112), + [sym__newline] = ACTIONS(115), + [aux_sym__text_token1] = ACTIONS(118), + [sym__verbatim_begin] = ACTIONS(121), + [sym_superscript_end] = ACTIONS(101), }, [9] = { - [sym__inline] = STATE(915), - [sym__element] = STATE(118), - [sym_emphasis] = STATE(201), - [sym_emphasis_begin] = STATE(1005), - [sym_strong] = STATE(201), - [sym_strong_begin] = STATE(105), - [sym__hard_line_break] = STATE(201), - [sym_hard_line_break] = STATE(201), - [sym__smart_punctuation] = STATE(201), - [sym_autolink] = STATE(201), - [sym_highlighted] = STATE(201), - [sym_insert] = STATE(201), - [sym_delete] = STATE(201), - [sym_superscript] = STATE(201), - [sym_subscript] = STATE(201), - [sym_footnote_reference] = STATE(201), - [sym__image] = STATE(201), - [sym_full_reference_image] = STATE(201), - [sym_collapsed_reference_image] = STATE(201), - [sym_inline_image] = STATE(201), - [sym__image_description] = STATE(712), - [sym__link] = STATE(201), - [sym_full_reference_link] = STATE(201), - [sym_collapsed_reference_link] = STATE(201), - [sym_inline_link] = STATE(201), - [sym_link_text] = STATE(717), - [sym__comment_with_spaces] = STATE(201), - [sym_span] = STATE(201), - [sym_raw_inline] = STATE(201), - [sym_math] = STATE(201), - [sym_verbatim] = STATE(201), - [sym__todo_highlights] = STATE(201), - [sym_todo] = STATE(201), - [sym_note] = STATE(201), - [sym__symbol_fallback] = STATE(201), + [sym__inline] = STATE(1011), + [sym__element] = STATE(106), + [sym_emphasis] = STATE(211), + [sym_emphasis_begin] = STATE(1060), + [sym_strong] = STATE(211), + [sym_strong_begin] = STATE(1061), + [sym_superscript] = STATE(211), + [sym_superscript_begin] = STATE(1062), + [sym_subscript] = STATE(211), + [sym_subscript_begin] = STATE(1063), + [sym_highlighted] = STATE(211), + [sym_highlighted_begin] = STATE(1064), + [sym_insert] = STATE(211), + [sym_insert_begin] = STATE(1065), + [sym_delete] = STATE(211), + [sym_delete_begin] = STATE(1066), + [sym_hard_line_break] = STATE(211), + [sym__smart_punctuation] = STATE(211), + [sym_autolink] = STATE(211), + [sym_footnote_reference] = STATE(211), + [sym__image] = STATE(211), + [sym_full_reference_image] = STATE(211), + [sym_collapsed_reference_image] = STATE(211), + [sym_inline_image] = STATE(211), + [sym__image_description] = STATE(671), + [sym__link] = STATE(211), + [sym_full_reference_link] = STATE(211), + [sym_collapsed_reference_link] = STATE(211), + [sym_inline_link] = STATE(211), + [sym_link_text] = STATE(676), + [sym__comment_with_spaces] = STATE(211), + [sym_span] = STATE(211), + [sym_raw_inline] = STATE(211), + [sym_math] = STATE(211), + [sym_verbatim] = STATE(211), + [sym__todo_highlights] = STATE(211), + [sym_todo] = STATE(211), + [sym_note] = STATE(211), + [sym__symbol_fallback] = STATE(211), [aux_sym__text] = STATE(139), - [aux_sym__inline_repeat1] = STATE(118), + [aux_sym__inline_repeat1] = STATE(106), [anon_sym_LBRACE] = ACTIONS(49), [anon_sym_LBRACE_] = ACTIONS(51), [anon_sym__] = ACTIONS(54), [anon_sym_LBRACE_STAR] = ACTIONS(57), - [anon_sym_STAR] = ACTIONS(132), - [aux_sym_strong_end_token1] = ACTIONS(93), - [anon_sym_BSLASH] = ACTIONS(63), - [sym_quotation_marks] = ACTIONS(66), - [sym_ellipsis] = ACTIONS(66), - [sym_em_dash] = ACTIONS(66), - [sym_en_dash] = ACTIONS(69), - [sym_backslash_escape] = ACTIONS(69), - [anon_sym_LT] = ACTIONS(72), - [anon_sym_LBRACE_EQ] = ACTIONS(75), - [anon_sym_LBRACE_PLUS] = ACTIONS(78), - [anon_sym_LBRACE_DASH] = ACTIONS(81), - [sym_symbol] = ACTIONS(66), - [anon_sym_LBRACE_CARET] = ACTIONS(84), - [anon_sym_CARET] = ACTIONS(84), - [anon_sym_LBRACE_TILDE] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(87), - [anon_sym_LBRACK_CARET] = ACTIONS(95), - [anon_sym_RBRACK] = ACTIONS(98), - [anon_sym_BANG_LBRACK] = ACTIONS(100), - [anon_sym_LBRACK] = ACTIONS(103), - [anon_sym_LBRACE2] = ACTIONS(69), - [anon_sym_DOLLAR] = ACTIONS(106), - [anon_sym_TODO] = ACTIONS(109), - [anon_sym_WIP] = ACTIONS(109), - [anon_sym_NOTE] = ACTIONS(112), - [anon_sym_INFO] = ACTIONS(112), - [anon_sym_XXX] = ACTIONS(112), - [sym_fixme] = ACTIONS(66), - [anon_sym_PIPE] = ACTIONS(66), - [sym__whitespace1] = ACTIONS(135), - [sym__newline] = ACTIONS(118), - [aux_sym__text_token1] = ACTIONS(121), - [sym__verbatim_begin] = ACTIONS(124), + [anon_sym_STAR] = ACTIONS(60), + [anon_sym_LBRACE_CARET] = ACTIONS(63), + [anon_sym_CARET] = ACTIONS(63), + [anon_sym_LBRACE_TILDE] = ACTIONS(66), + [anon_sym_TILDE] = ACTIONS(66), + [anon_sym_LBRACE_EQ] = ACTIONS(69), + [anon_sym_LBRACE_PLUS] = ACTIONS(72), + [anon_sym_LBRACE_DASH] = ACTIONS(75), + [anon_sym_BSLASH] = ACTIONS(78), + [sym_quotation_marks] = ACTIONS(81), + [sym_ellipsis] = ACTIONS(81), + [sym_em_dash] = ACTIONS(81), + [sym_en_dash] = ACTIONS(84), + [sym_backslash_escape] = ACTIONS(84), + [anon_sym_LT] = ACTIONS(87), + [sym_symbol] = ACTIONS(81), + [anon_sym_LBRACK_CARET] = ACTIONS(90), + [anon_sym_RBRACK] = ACTIONS(124), + [anon_sym_BANG_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(98), + [anon_sym_LBRACE2] = ACTIONS(84), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_TODO] = ACTIONS(106), + [anon_sym_WIP] = ACTIONS(106), + [anon_sym_NOTE] = ACTIONS(109), + [anon_sym_INFO] = ACTIONS(109), + [anon_sym_XXX] = ACTIONS(109), + [sym_fixme] = ACTIONS(81), + [sym__whitespace1] = ACTIONS(112), + [sym__newline] = ACTIONS(115), + [aux_sym__text_token1] = ACTIONS(118), + [sym__verbatim_begin] = ACTIONS(121), + [sym_highlighted_end] = ACTIONS(101), }, [10] = { - [sym__inline] = STATE(915), - [sym__element] = STATE(118), - [sym_emphasis] = STATE(201), - [sym_emphasis_begin] = STATE(1005), - [sym_strong] = STATE(201), - [sym_strong_begin] = STATE(105), - [sym__hard_line_break] = STATE(201), - [sym_hard_line_break] = STATE(201), - [sym__smart_punctuation] = STATE(201), - [sym_autolink] = STATE(201), - [sym_highlighted] = STATE(201), - [sym_insert] = STATE(201), - [sym_delete] = STATE(201), - [sym_superscript] = STATE(201), - [sym_subscript] = STATE(201), - [sym_footnote_reference] = STATE(201), - [sym__image] = STATE(201), - [sym_full_reference_image] = STATE(201), - [sym_collapsed_reference_image] = STATE(201), - [sym_inline_image] = STATE(201), - [sym__image_description] = STATE(712), - [sym__link] = STATE(201), - [sym_full_reference_link] = STATE(201), - [sym_collapsed_reference_link] = STATE(201), - [sym_inline_link] = STATE(201), - [sym_link_text] = STATE(717), - [sym__comment_with_spaces] = STATE(201), - [sym_span] = STATE(201), - [sym_raw_inline] = STATE(201), - [sym_math] = STATE(201), - [sym_verbatim] = STATE(201), - [sym__todo_highlights] = STATE(201), - [sym_todo] = STATE(201), - [sym_note] = STATE(201), - [sym__symbol_fallback] = STATE(201), + [sym__inline] = STATE(1011), + [sym__element] = STATE(106), + [sym_emphasis] = STATE(211), + [sym_emphasis_begin] = STATE(1060), + [sym_strong] = STATE(211), + [sym_strong_begin] = STATE(1061), + [sym_superscript] = STATE(211), + [sym_superscript_begin] = STATE(1062), + [sym_subscript] = STATE(211), + [sym_subscript_begin] = STATE(1063), + [sym_highlighted] = STATE(211), + [sym_highlighted_begin] = STATE(1064), + [sym_insert] = STATE(211), + [sym_insert_begin] = STATE(1065), + [sym_delete] = STATE(211), + [sym_delete_begin] = STATE(1066), + [sym_hard_line_break] = STATE(211), + [sym__smart_punctuation] = STATE(211), + [sym_autolink] = STATE(211), + [sym_footnote_reference] = STATE(211), + [sym__image] = STATE(211), + [sym_full_reference_image] = STATE(211), + [sym_collapsed_reference_image] = STATE(211), + [sym_inline_image] = STATE(211), + [sym__image_description] = STATE(671), + [sym__link] = STATE(211), + [sym_full_reference_link] = STATE(211), + [sym_collapsed_reference_link] = STATE(211), + [sym_inline_link] = STATE(211), + [sym_link_text] = STATE(676), + [sym__comment_with_spaces] = STATE(211), + [sym_span] = STATE(211), + [sym_raw_inline] = STATE(211), + [sym_math] = STATE(211), + [sym_verbatim] = STATE(211), + [sym__todo_highlights] = STATE(211), + [sym_todo] = STATE(211), + [sym_note] = STATE(211), + [sym__symbol_fallback] = STATE(211), [aux_sym__text] = STATE(139), - [aux_sym__inline_repeat1] = STATE(118), + [aux_sym__inline_repeat1] = STATE(106), [anon_sym_LBRACE] = ACTIONS(49), [anon_sym_LBRACE_] = ACTIONS(51), [anon_sym__] = ACTIONS(54), [anon_sym_LBRACE_STAR] = ACTIONS(57), [anon_sym_STAR] = ACTIONS(60), - [anon_sym_BSLASH] = ACTIONS(63), - [sym_quotation_marks] = ACTIONS(66), - [sym_ellipsis] = ACTIONS(66), - [sym_em_dash] = ACTIONS(66), - [sym_en_dash] = ACTIONS(69), - [sym_backslash_escape] = ACTIONS(69), - [anon_sym_LT] = ACTIONS(72), - [anon_sym_LBRACE_EQ] = ACTIONS(75), - [anon_sym_EQ_RBRACE] = ACTIONS(93), - [anon_sym_LBRACE_PLUS] = ACTIONS(78), - [anon_sym_LBRACE_DASH] = ACTIONS(81), - [sym_symbol] = ACTIONS(66), - [anon_sym_LBRACE_CARET] = ACTIONS(84), - [anon_sym_CARET] = ACTIONS(84), - [anon_sym_LBRACE_TILDE] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(87), - [anon_sym_LBRACK_CARET] = ACTIONS(95), - [anon_sym_RBRACK] = ACTIONS(98), - [anon_sym_BANG_LBRACK] = ACTIONS(100), - [anon_sym_LBRACK] = ACTIONS(103), - [anon_sym_LBRACE2] = ACTIONS(69), - [anon_sym_DOLLAR] = ACTIONS(106), - [anon_sym_TODO] = ACTIONS(109), - [anon_sym_WIP] = ACTIONS(109), - [anon_sym_NOTE] = ACTIONS(112), - [anon_sym_INFO] = ACTIONS(112), - [anon_sym_XXX] = ACTIONS(112), - [sym_fixme] = ACTIONS(66), - [anon_sym_PIPE] = ACTIONS(66), - [sym__whitespace1] = ACTIONS(115), - [sym__newline] = ACTIONS(118), - [aux_sym__text_token1] = ACTIONS(121), - [sym__verbatim_begin] = ACTIONS(124), + [anon_sym_LBRACE_CARET] = ACTIONS(63), + [anon_sym_CARET] = ACTIONS(63), + [anon_sym_LBRACE_TILDE] = ACTIONS(66), + [anon_sym_TILDE] = ACTIONS(66), + [anon_sym_LBRACE_EQ] = ACTIONS(69), + [anon_sym_LBRACE_PLUS] = ACTIONS(72), + [anon_sym_LBRACE_DASH] = ACTIONS(75), + [anon_sym_BSLASH] = ACTIONS(78), + [sym_quotation_marks] = ACTIONS(81), + [sym_ellipsis] = ACTIONS(81), + [sym_em_dash] = ACTIONS(81), + [sym_en_dash] = ACTIONS(84), + [sym_backslash_escape] = ACTIONS(84), + [anon_sym_LT] = ACTIONS(87), + [sym_symbol] = ACTIONS(81), + [anon_sym_LBRACK_CARET] = ACTIONS(90), + [anon_sym_RBRACK] = ACTIONS(124), + [anon_sym_BANG_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(98), + [anon_sym_LBRACE2] = ACTIONS(84), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_TODO] = ACTIONS(106), + [anon_sym_WIP] = ACTIONS(106), + [anon_sym_NOTE] = ACTIONS(109), + [anon_sym_INFO] = ACTIONS(109), + [anon_sym_XXX] = ACTIONS(109), + [sym_fixme] = ACTIONS(81), + [sym__whitespace1] = ACTIONS(112), + [sym__newline] = ACTIONS(115), + [aux_sym__text_token1] = ACTIONS(118), + [sym__verbatim_begin] = ACTIONS(121), + [sym_emphasis_end] = ACTIONS(101), }, [11] = { - [sym__inline] = STATE(948), - [sym__element] = STATE(118), - [sym_emphasis] = STATE(201), - [sym_emphasis_begin] = STATE(1005), - [sym_strong] = STATE(201), - [sym_strong_begin] = STATE(105), - [sym__hard_line_break] = STATE(201), - [sym_hard_line_break] = STATE(201), - [sym__smart_punctuation] = STATE(201), - [sym_autolink] = STATE(201), - [sym_highlighted] = STATE(201), - [sym_insert] = STATE(201), - [sym_delete] = STATE(201), - [sym_superscript] = STATE(201), - [sym_subscript] = STATE(201), - [sym_footnote_reference] = STATE(201), - [sym__image] = STATE(201), - [sym_full_reference_image] = STATE(201), - [sym_collapsed_reference_image] = STATE(201), - [sym_inline_image] = STATE(201), - [sym__image_description] = STATE(712), - [sym__link] = STATE(201), - [sym_full_reference_link] = STATE(201), - [sym_collapsed_reference_link] = STATE(201), - [sym_inline_link] = STATE(201), - [sym_link_text] = STATE(717), - [sym__comment_with_spaces] = STATE(201), - [sym_span] = STATE(201), - [sym_raw_inline] = STATE(201), - [sym_math] = STATE(201), - [sym_verbatim] = STATE(201), - [sym__todo_highlights] = STATE(201), - [sym_todo] = STATE(201), - [sym_note] = STATE(201), - [sym__symbol_fallback] = STATE(201), + [sym__inline] = STATE(1033), + [sym__element] = STATE(106), + [sym_emphasis] = STATE(211), + [sym_emphasis_begin] = STATE(1060), + [sym_strong] = STATE(211), + [sym_strong_begin] = STATE(1061), + [sym_superscript] = STATE(211), + [sym_superscript_begin] = STATE(1062), + [sym_subscript] = STATE(211), + [sym_subscript_begin] = STATE(1063), + [sym_highlighted] = STATE(211), + [sym_highlighted_begin] = STATE(1064), + [sym_insert] = STATE(211), + [sym_insert_begin] = STATE(1065), + [sym_delete] = STATE(211), + [sym_delete_begin] = STATE(1066), + [sym_hard_line_break] = STATE(211), + [sym__smart_punctuation] = STATE(211), + [sym_autolink] = STATE(211), + [sym_footnote_reference] = STATE(211), + [sym__image] = STATE(211), + [sym_full_reference_image] = STATE(211), + [sym_collapsed_reference_image] = STATE(211), + [sym_inline_image] = STATE(211), + [sym__image_description] = STATE(671), + [sym__link] = STATE(211), + [sym_full_reference_link] = STATE(211), + [sym_collapsed_reference_link] = STATE(211), + [sym_inline_link] = STATE(211), + [sym_link_text] = STATE(676), + [sym__comment_with_spaces] = STATE(211), + [sym_span] = STATE(211), + [sym_raw_inline] = STATE(211), + [sym_math] = STATE(211), + [sym_verbatim] = STATE(211), + [sym__todo_highlights] = STATE(211), + [sym_todo] = STATE(211), + [sym_note] = STATE(211), + [sym__symbol_fallback] = STATE(211), [aux_sym__text] = STATE(139), - [aux_sym__inline_repeat1] = STATE(118), + [aux_sym__inline_repeat1] = STATE(106), [anon_sym_LBRACE] = ACTIONS(49), [anon_sym_LBRACE_] = ACTIONS(51), [anon_sym__] = ACTIONS(54), [anon_sym_LBRACE_STAR] = ACTIONS(57), [anon_sym_STAR] = ACTIONS(60), - [anon_sym_BSLASH] = ACTIONS(63), - [sym_quotation_marks] = ACTIONS(66), - [sym_ellipsis] = ACTIONS(66), - [sym_em_dash] = ACTIONS(66), - [sym_en_dash] = ACTIONS(69), - [sym_backslash_escape] = ACTIONS(69), - [anon_sym_LT] = ACTIONS(72), - [anon_sym_LBRACE_EQ] = ACTIONS(75), - [anon_sym_LBRACE_PLUS] = ACTIONS(78), - [anon_sym_LBRACE_DASH] = ACTIONS(81), - [sym_symbol] = ACTIONS(66), - [anon_sym_LBRACE_CARET] = ACTIONS(84), - [anon_sym_CARET] = ACTIONS(84), - [anon_sym_LBRACE_TILDE] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(90), - [anon_sym_TILDE_RBRACE] = ACTIONS(93), - [anon_sym_LBRACK_CARET] = ACTIONS(95), - [anon_sym_BANG_LBRACK] = ACTIONS(100), - [anon_sym_LBRACK] = ACTIONS(103), - [anon_sym_LBRACE2] = ACTIONS(69), - [anon_sym_DOLLAR] = ACTIONS(106), - [anon_sym_TODO] = ACTIONS(109), - [anon_sym_WIP] = ACTIONS(109), - [anon_sym_NOTE] = ACTIONS(112), - [anon_sym_INFO] = ACTIONS(112), - [anon_sym_XXX] = ACTIONS(112), - [sym_fixme] = ACTIONS(66), - [anon_sym_PIPE] = ACTIONS(66), - [sym__whitespace1] = ACTIONS(115), - [sym__newline] = ACTIONS(118), - [aux_sym__text_token1] = ACTIONS(121), - [sym__verbatim_begin] = ACTIONS(124), + [anon_sym_LBRACE_CARET] = ACTIONS(63), + [anon_sym_CARET] = ACTIONS(63), + [anon_sym_LBRACE_TILDE] = ACTIONS(66), + [anon_sym_TILDE] = ACTIONS(66), + [anon_sym_LBRACE_EQ] = ACTIONS(69), + [anon_sym_LBRACE_PLUS] = ACTIONS(72), + [anon_sym_LBRACE_DASH] = ACTIONS(75), + [anon_sym_BSLASH] = ACTIONS(78), + [sym_quotation_marks] = ACTIONS(81), + [sym_ellipsis] = ACTIONS(81), + [sym_em_dash] = ACTIONS(81), + [sym_en_dash] = ACTIONS(84), + [sym_backslash_escape] = ACTIONS(84), + [anon_sym_LT] = ACTIONS(87), + [sym_symbol] = ACTIONS(81), + [anon_sym_LBRACK_CARET] = ACTIONS(90), + [anon_sym_BANG_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(98), + [anon_sym_RBRACK2] = ACTIONS(101), + [anon_sym_LBRACE2] = ACTIONS(84), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_TODO] = ACTIONS(106), + [anon_sym_WIP] = ACTIONS(106), + [anon_sym_NOTE] = ACTIONS(109), + [anon_sym_INFO] = ACTIONS(109), + [anon_sym_XXX] = ACTIONS(109), + [sym_fixme] = ACTIONS(81), + [sym__whitespace1] = ACTIONS(112), + [sym__newline] = ACTIONS(115), + [aux_sym__text_token1] = ACTIONS(118), + [sym__verbatim_begin] = ACTIONS(121), }, [12] = { - [sym__inline] = STATE(915), - [sym__element] = STATE(118), - [sym_emphasis] = STATE(201), - [sym_emphasis_begin] = STATE(1005), - [sym_strong] = STATE(201), - [sym_strong_begin] = STATE(105), - [sym__hard_line_break] = STATE(201), - [sym_hard_line_break] = STATE(201), - [sym__smart_punctuation] = STATE(201), - [sym_autolink] = STATE(201), - [sym_highlighted] = STATE(201), - [sym_insert] = STATE(201), - [sym_delete] = STATE(201), - [sym_superscript] = STATE(201), - [sym_subscript] = STATE(201), - [sym_footnote_reference] = STATE(201), - [sym__image] = STATE(201), - [sym_full_reference_image] = STATE(201), - [sym_collapsed_reference_image] = STATE(201), - [sym_inline_image] = STATE(201), - [sym__image_description] = STATE(712), - [sym__link] = STATE(201), - [sym_full_reference_link] = STATE(201), - [sym_collapsed_reference_link] = STATE(201), - [sym_inline_link] = STATE(201), - [sym_link_text] = STATE(717), - [sym__comment_with_spaces] = STATE(201), - [sym_span] = STATE(201), - [sym_raw_inline] = STATE(201), - [sym_math] = STATE(201), - [sym_verbatim] = STATE(201), - [sym__todo_highlights] = STATE(201), - [sym_todo] = STATE(201), - [sym_note] = STATE(201), - [sym__symbol_fallback] = STATE(201), + [sym__inline] = STATE(1011), + [sym__element] = STATE(106), + [sym_emphasis] = STATE(211), + [sym_emphasis_begin] = STATE(1060), + [sym_strong] = STATE(211), + [sym_strong_begin] = STATE(1061), + [sym_superscript] = STATE(211), + [sym_superscript_begin] = STATE(1062), + [sym_subscript] = STATE(211), + [sym_subscript_begin] = STATE(1063), + [sym_highlighted] = STATE(211), + [sym_highlighted_begin] = STATE(1064), + [sym_insert] = STATE(211), + [sym_insert_begin] = STATE(1065), + [sym_delete] = STATE(211), + [sym_delete_begin] = STATE(1066), + [sym_hard_line_break] = STATE(211), + [sym__smart_punctuation] = STATE(211), + [sym_autolink] = STATE(211), + [sym_footnote_reference] = STATE(211), + [sym__image] = STATE(211), + [sym_full_reference_image] = STATE(211), + [sym_collapsed_reference_image] = STATE(211), + [sym_inline_image] = STATE(211), + [sym__image_description] = STATE(671), + [sym__link] = STATE(211), + [sym_full_reference_link] = STATE(211), + [sym_collapsed_reference_link] = STATE(211), + [sym_inline_link] = STATE(211), + [sym_link_text] = STATE(676), + [sym__comment_with_spaces] = STATE(211), + [sym_span] = STATE(211), + [sym_raw_inline] = STATE(211), + [sym_math] = STATE(211), + [sym_verbatim] = STATE(211), + [sym__todo_highlights] = STATE(211), + [sym_todo] = STATE(211), + [sym_note] = STATE(211), + [sym__symbol_fallback] = STATE(211), [aux_sym__text] = STATE(139), - [aux_sym__inline_repeat1] = STATE(118), + [aux_sym__inline_repeat1] = STATE(106), [anon_sym_LBRACE] = ACTIONS(49), [anon_sym_LBRACE_] = ACTIONS(51), [anon_sym__] = ACTIONS(54), [anon_sym_LBRACE_STAR] = ACTIONS(57), [anon_sym_STAR] = ACTIONS(60), - [anon_sym_BSLASH] = ACTIONS(63), - [sym_quotation_marks] = ACTIONS(66), - [sym_ellipsis] = ACTIONS(66), - [sym_em_dash] = ACTIONS(66), - [sym_en_dash] = ACTIONS(69), - [sym_backslash_escape] = ACTIONS(69), - [anon_sym_LT] = ACTIONS(72), - [anon_sym_LBRACE_EQ] = ACTIONS(75), - [anon_sym_LBRACE_PLUS] = ACTIONS(78), - [anon_sym_LBRACE_DASH] = ACTIONS(81), - [sym_symbol] = ACTIONS(66), - [anon_sym_LBRACE_CARET] = ACTIONS(84), - [anon_sym_CARET] = ACTIONS(84), - [anon_sym_LBRACE_TILDE] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(87), - [anon_sym_LBRACK_CARET] = ACTIONS(95), - [anon_sym_RBRACK] = ACTIONS(138), - [anon_sym_BANG_LBRACK] = ACTIONS(100), - [anon_sym_LBRACK] = ACTIONS(103), - [anon_sym_LBRACE2] = ACTIONS(69), - [anon_sym_DOLLAR] = ACTIONS(106), - [anon_sym_TODO] = ACTIONS(109), - [anon_sym_WIP] = ACTIONS(109), - [anon_sym_NOTE] = ACTIONS(112), - [anon_sym_INFO] = ACTIONS(112), - [anon_sym_XXX] = ACTIONS(112), - [sym_fixme] = ACTIONS(66), - [anon_sym_PIPE] = ACTIONS(66), - [sym__whitespace1] = ACTIONS(115), - [sym__newline] = ACTIONS(118), - [aux_sym__text_token1] = ACTIONS(121), - [sym__verbatim_begin] = ACTIONS(124), + [anon_sym_LBRACE_CARET] = ACTIONS(63), + [anon_sym_CARET] = ACTIONS(63), + [anon_sym_LBRACE_TILDE] = ACTIONS(66), + [anon_sym_TILDE] = ACTIONS(66), + [anon_sym_LBRACE_EQ] = ACTIONS(69), + [anon_sym_LBRACE_PLUS] = ACTIONS(72), + [anon_sym_LBRACE_DASH] = ACTIONS(75), + [anon_sym_BSLASH] = ACTIONS(78), + [sym_quotation_marks] = ACTIONS(81), + [sym_ellipsis] = ACTIONS(81), + [sym_em_dash] = ACTIONS(81), + [sym_en_dash] = ACTIONS(84), + [sym_backslash_escape] = ACTIONS(84), + [anon_sym_LT] = ACTIONS(87), + [sym_symbol] = ACTIONS(81), + [anon_sym_LBRACK_CARET] = ACTIONS(90), + [anon_sym_RBRACK] = ACTIONS(126), + [anon_sym_BANG_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(98), + [anon_sym_LBRACE2] = ACTIONS(84), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_TODO] = ACTIONS(106), + [anon_sym_WIP] = ACTIONS(106), + [anon_sym_NOTE] = ACTIONS(109), + [anon_sym_INFO] = ACTIONS(109), + [anon_sym_XXX] = ACTIONS(109), + [sym_fixme] = ACTIONS(81), + [sym__whitespace1] = ACTIONS(112), + [sym__newline] = ACTIONS(115), + [aux_sym__text_token1] = ACTIONS(118), + [sym__verbatim_begin] = ACTIONS(121), }, [13] = { - [sym__inline] = STATE(930), - [sym__element] = STATE(118), - [sym_emphasis] = STATE(201), - [sym_emphasis_begin] = STATE(1005), - [sym_strong] = STATE(201), - [sym_strong_begin] = STATE(105), - [sym__hard_line_break] = STATE(201), - [sym_hard_line_break] = STATE(201), - [sym__smart_punctuation] = STATE(201), - [sym_autolink] = STATE(201), - [sym_highlighted] = STATE(201), - [sym_insert] = STATE(201), - [sym_delete] = STATE(201), - [sym_superscript] = STATE(201), - [sym_subscript] = STATE(201), - [sym_footnote_reference] = STATE(201), - [sym__image] = STATE(201), - [sym_full_reference_image] = STATE(201), - [sym_collapsed_reference_image] = STATE(201), - [sym_inline_image] = STATE(201), - [sym__image_description] = STATE(712), - [sym__link] = STATE(201), - [sym_full_reference_link] = STATE(201), - [sym_collapsed_reference_link] = STATE(201), - [sym_inline_link] = STATE(201), - [sym_link_text] = STATE(717), - [sym__comment_with_spaces] = STATE(201), - [sym_span] = STATE(201), - [sym_raw_inline] = STATE(201), - [sym_math] = STATE(201), - [sym_verbatim] = STATE(201), - [sym__todo_highlights] = STATE(201), - [sym_todo] = STATE(201), - [sym_note] = STATE(201), - [sym__symbol_fallback] = STATE(201), + [sym__inline] = STATE(977), + [sym__element] = STATE(106), + [sym_emphasis] = STATE(211), + [sym_emphasis_begin] = STATE(1060), + [sym_strong] = STATE(211), + [sym_strong_begin] = STATE(1061), + [sym_superscript] = STATE(211), + [sym_superscript_begin] = STATE(1062), + [sym_subscript] = STATE(211), + [sym_subscript_begin] = STATE(1063), + [sym_highlighted] = STATE(211), + [sym_highlighted_begin] = STATE(1064), + [sym_insert] = STATE(211), + [sym_insert_begin] = STATE(1065), + [sym_delete] = STATE(211), + [sym_delete_begin] = STATE(1066), + [sym_hard_line_break] = STATE(211), + [sym__smart_punctuation] = STATE(211), + [sym_autolink] = STATE(211), + [sym_footnote_reference] = STATE(211), + [sym__image] = STATE(211), + [sym_full_reference_image] = STATE(211), + [sym_collapsed_reference_image] = STATE(211), + [sym_inline_image] = STATE(211), + [sym__image_description] = STATE(671), + [sym__link] = STATE(211), + [sym_full_reference_link] = STATE(211), + [sym_collapsed_reference_link] = STATE(211), + [sym_inline_link] = STATE(211), + [sym_link_text] = STATE(676), + [sym__comment_with_spaces] = STATE(211), + [sym_span] = STATE(211), + [sym_raw_inline] = STATE(211), + [sym_math] = STATE(211), + [sym_verbatim] = STATE(211), + [sym__todo_highlights] = STATE(211), + [sym_todo] = STATE(211), + [sym_note] = STATE(211), + [sym__symbol_fallback] = STATE(211), [aux_sym__text] = STATE(139), - [aux_sym__inline_repeat1] = STATE(118), + [aux_sym__inline_repeat1] = STATE(106), [anon_sym_LBRACE] = ACTIONS(49), [anon_sym_LBRACE_] = ACTIONS(51), [anon_sym__] = ACTIONS(54), [anon_sym_LBRACE_STAR] = ACTIONS(57), [anon_sym_STAR] = ACTIONS(60), - [anon_sym_BSLASH] = ACTIONS(63), - [sym_quotation_marks] = ACTIONS(66), - [sym_ellipsis] = ACTIONS(66), - [sym_em_dash] = ACTIONS(66), - [sym_en_dash] = ACTIONS(69), - [sym_backslash_escape] = ACTIONS(69), - [anon_sym_LT] = ACTIONS(72), - [anon_sym_LBRACE_EQ] = ACTIONS(75), - [anon_sym_LBRACE_PLUS] = ACTIONS(78), - [anon_sym_LBRACE_DASH] = ACTIONS(81), - [anon_sym_DASH_RBRACE] = ACTIONS(93), - [sym_symbol] = ACTIONS(66), - [anon_sym_LBRACE_CARET] = ACTIONS(84), - [anon_sym_CARET] = ACTIONS(84), - [anon_sym_LBRACE_TILDE] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(87), - [anon_sym_LBRACK_CARET] = ACTIONS(95), - [anon_sym_BANG_LBRACK] = ACTIONS(100), - [anon_sym_LBRACK] = ACTIONS(103), - [anon_sym_LBRACE2] = ACTIONS(69), - [anon_sym_DOLLAR] = ACTIONS(106), - [anon_sym_TODO] = ACTIONS(109), - [anon_sym_WIP] = ACTIONS(109), - [anon_sym_NOTE] = ACTIONS(112), - [anon_sym_INFO] = ACTIONS(112), - [anon_sym_XXX] = ACTIONS(112), - [sym_fixme] = ACTIONS(66), - [anon_sym_PIPE] = ACTIONS(66), - [sym__whitespace1] = ACTIONS(115), - [sym__newline] = ACTIONS(118), - [aux_sym__text_token1] = ACTIONS(121), - [sym__verbatim_begin] = ACTIONS(124), + [anon_sym_LBRACE_CARET] = ACTIONS(63), + [anon_sym_CARET] = ACTIONS(63), + [anon_sym_LBRACE_TILDE] = ACTIONS(66), + [anon_sym_TILDE] = ACTIONS(66), + [anon_sym_LBRACE_EQ] = ACTIONS(69), + [anon_sym_LBRACE_PLUS] = ACTIONS(72), + [anon_sym_LBRACE_DASH] = ACTIONS(75), + [anon_sym_BSLASH] = ACTIONS(78), + [sym_quotation_marks] = ACTIONS(81), + [sym_ellipsis] = ACTIONS(81), + [sym_em_dash] = ACTIONS(81), + [sym_en_dash] = ACTIONS(84), + [sym_backslash_escape] = ACTIONS(84), + [anon_sym_LT] = ACTIONS(87), + [sym_symbol] = ACTIONS(81), + [anon_sym_LBRACK_CARET] = ACTIONS(90), + [anon_sym_BANG_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(98), + [anon_sym_LBRACE2] = ACTIONS(84), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_TODO] = ACTIONS(106), + [anon_sym_WIP] = ACTIONS(106), + [anon_sym_NOTE] = ACTIONS(109), + [anon_sym_INFO] = ACTIONS(109), + [anon_sym_XXX] = ACTIONS(109), + [sym_fixme] = ACTIONS(81), + [sym__whitespace1] = ACTIONS(112), + [sym__newline] = ACTIONS(115), + [aux_sym__text_token1] = ACTIONS(118), + [sym__verbatim_begin] = ACTIONS(121), + [sym_subscript_end] = ACTIONS(101), }, [14] = { - [sym__inline] = STATE(995), - [sym__element] = STATE(115), - [sym_emphasis] = STATE(205), - [sym_emphasis_begin] = STATE(1000), - [sym_strong] = STATE(205), - [sym_strong_begin] = STATE(129), - [sym__hard_line_break] = STATE(205), - [sym_hard_line_break] = STATE(205), - [sym__smart_punctuation] = STATE(205), - [sym_autolink] = STATE(205), - [sym_highlighted] = STATE(205), - [sym_insert] = STATE(205), - [sym_delete] = STATE(205), - [sym_superscript] = STATE(205), - [sym_subscript] = STATE(205), - [sym_footnote_reference] = STATE(205), - [sym__image] = STATE(205), - [sym_full_reference_image] = STATE(205), - [sym_collapsed_reference_image] = STATE(205), - [sym_inline_image] = STATE(205), - [sym__image_description] = STATE(705), - [sym__link] = STATE(205), - [sym_full_reference_link] = STATE(205), - [sym_collapsed_reference_link] = STATE(205), - [sym_inline_link] = STATE(205), - [sym_link_text] = STATE(703), - [sym__comment_with_spaces] = STATE(205), - [sym_span] = STATE(205), - [sym_raw_inline] = STATE(205), - [sym_math] = STATE(205), - [sym_verbatim] = STATE(205), - [sym__todo_highlights] = STATE(205), - [sym_todo] = STATE(205), - [sym_note] = STATE(205), - [sym__symbol_fallback] = STATE(205), - [aux_sym__text] = STATE(136), - [aux_sym__inline_repeat1] = STATE(115), + [sym__inline] = STATE(963), + [sym__element] = STATE(106), + [sym_emphasis] = STATE(211), + [sym_emphasis_begin] = STATE(1060), + [sym_strong] = STATE(211), + [sym_strong_begin] = STATE(1061), + [sym_superscript] = STATE(211), + [sym_superscript_begin] = STATE(1062), + [sym_subscript] = STATE(211), + [sym_subscript_begin] = STATE(1063), + [sym_highlighted] = STATE(211), + [sym_highlighted_begin] = STATE(1064), + [sym_insert] = STATE(211), + [sym_insert_begin] = STATE(1065), + [sym_delete] = STATE(211), + [sym_delete_begin] = STATE(1066), + [sym_hard_line_break] = STATE(211), + [sym__smart_punctuation] = STATE(211), + [sym_autolink] = STATE(211), + [sym_footnote_reference] = STATE(211), + [sym__image] = STATE(211), + [sym_full_reference_image] = STATE(211), + [sym_collapsed_reference_image] = STATE(211), + [sym_inline_image] = STATE(211), + [sym__image_description] = STATE(671), + [sym__link] = STATE(211), + [sym_full_reference_link] = STATE(211), + [sym_collapsed_reference_link] = STATE(211), + [sym_inline_link] = STATE(211), + [sym_link_text] = STATE(676), + [sym__comment_with_spaces] = STATE(211), + [sym_span] = STATE(211), + [sym_raw_inline] = STATE(211), + [sym_math] = STATE(211), + [sym_verbatim] = STATE(211), + [sym__todo_highlights] = STATE(211), + [sym_todo] = STATE(211), + [sym_note] = STATE(211), + [sym__symbol_fallback] = STATE(211), + [aux_sym__text] = STATE(139), + [aux_sym__inline_repeat1] = STATE(106), [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(141), - [anon_sym__] = ACTIONS(144), - [anon_sym_LBRACE_STAR] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(150), - [anon_sym_BSLASH] = ACTIONS(153), - [sym_quotation_marks] = ACTIONS(156), - [sym_ellipsis] = ACTIONS(156), - [sym_em_dash] = ACTIONS(156), - [sym_en_dash] = ACTIONS(159), - [sym_backslash_escape] = ACTIONS(159), - [anon_sym_LT] = ACTIONS(162), - [anon_sym_LBRACE_EQ] = ACTIONS(165), - [anon_sym_LBRACE_PLUS] = ACTIONS(168), - [anon_sym_LBRACE_DASH] = ACTIONS(171), - [sym_symbol] = ACTIONS(156), - [anon_sym_LBRACE_CARET] = ACTIONS(174), - [anon_sym_CARET] = ACTIONS(177), - [anon_sym_CARET_RBRACE] = ACTIONS(93), - [anon_sym_LBRACE_TILDE] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_LBRACK_CARET] = ACTIONS(183), - [anon_sym_BANG_LBRACK] = ACTIONS(186), - [anon_sym_LBRACK] = ACTIONS(189), - [anon_sym_LBRACE2] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(192), - [anon_sym_TODO] = ACTIONS(195), - [anon_sym_WIP] = ACTIONS(195), - [anon_sym_NOTE] = ACTIONS(198), - [anon_sym_INFO] = ACTIONS(198), - [anon_sym_XXX] = ACTIONS(198), - [sym_fixme] = ACTIONS(156), - [anon_sym_PIPE] = ACTIONS(156), - [sym__whitespace1] = ACTIONS(201), - [sym__newline] = ACTIONS(204), - [aux_sym__text_token1] = ACTIONS(207), - [sym__verbatim_begin] = ACTIONS(210), + [anon_sym_LBRACE_] = ACTIONS(51), + [anon_sym__] = ACTIONS(54), + [anon_sym_LBRACE_STAR] = ACTIONS(57), + [anon_sym_STAR] = ACTIONS(60), + [anon_sym_LBRACE_CARET] = ACTIONS(63), + [anon_sym_CARET] = ACTIONS(63), + [anon_sym_LBRACE_TILDE] = ACTIONS(66), + [anon_sym_TILDE] = ACTIONS(66), + [anon_sym_LBRACE_EQ] = ACTIONS(69), + [anon_sym_LBRACE_PLUS] = ACTIONS(72), + [anon_sym_LBRACE_DASH] = ACTIONS(75), + [anon_sym_BSLASH] = ACTIONS(78), + [sym_quotation_marks] = ACTIONS(81), + [sym_ellipsis] = ACTIONS(81), + [sym_em_dash] = ACTIONS(81), + [sym_en_dash] = ACTIONS(84), + [sym_backslash_escape] = ACTIONS(84), + [anon_sym_LT] = ACTIONS(87), + [sym_symbol] = ACTIONS(81), + [anon_sym_LBRACK_CARET] = ACTIONS(90), + [anon_sym_BANG_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(98), + [anon_sym_LBRACE2] = ACTIONS(84), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_TODO] = ACTIONS(106), + [anon_sym_WIP] = ACTIONS(106), + [anon_sym_NOTE] = ACTIONS(109), + [anon_sym_INFO] = ACTIONS(109), + [anon_sym_XXX] = ACTIONS(109), + [sym_fixme] = ACTIONS(81), + [sym__whitespace1] = ACTIONS(112), + [sym__newline] = ACTIONS(115), + [aux_sym__text_token1] = ACTIONS(118), + [sym__verbatim_begin] = ACTIONS(121), + [sym_superscript_end] = ACTIONS(101), }, [15] = { - [sym__inline] = STATE(938), - [sym__element] = STATE(115), - [sym_emphasis] = STATE(205), - [sym_emphasis_begin] = STATE(1000), - [sym_strong] = STATE(205), - [sym_strong_begin] = STATE(129), - [sym__hard_line_break] = STATE(205), - [sym_hard_line_break] = STATE(205), - [sym__smart_punctuation] = STATE(205), - [sym_autolink] = STATE(205), - [sym_highlighted] = STATE(205), - [sym_insert] = STATE(205), - [sym_delete] = STATE(205), - [sym_superscript] = STATE(205), - [sym_subscript] = STATE(205), - [sym_footnote_reference] = STATE(205), - [sym__image] = STATE(205), - [sym_full_reference_image] = STATE(205), - [sym_collapsed_reference_image] = STATE(205), - [sym_inline_image] = STATE(205), - [sym__image_description] = STATE(705), - [sym__link] = STATE(205), - [sym_full_reference_link] = STATE(205), - [sym_collapsed_reference_link] = STATE(205), - [sym_inline_link] = STATE(205), - [sym_link_text] = STATE(703), - [sym__comment_with_spaces] = STATE(205), - [sym_span] = STATE(205), - [sym_raw_inline] = STATE(205), - [sym_math] = STATE(205), - [sym_verbatim] = STATE(205), - [sym__todo_highlights] = STATE(205), - [sym_todo] = STATE(205), - [sym_note] = STATE(205), - [sym__symbol_fallback] = STATE(205), - [aux_sym__text] = STATE(136), - [aux_sym__inline_repeat1] = STATE(115), - [ts_builtin_sym_end] = ACTIONS(93), + [sym__inline] = STATE(921), + [sym__element] = STATE(106), + [sym_emphasis] = STATE(211), + [sym_emphasis_begin] = STATE(1060), + [sym_strong] = STATE(211), + [sym_strong_begin] = STATE(1061), + [sym_superscript] = STATE(211), + [sym_superscript_begin] = STATE(1062), + [sym_subscript] = STATE(211), + [sym_subscript_begin] = STATE(1063), + [sym_highlighted] = STATE(211), + [sym_highlighted_begin] = STATE(1064), + [sym_insert] = STATE(211), + [sym_insert_begin] = STATE(1065), + [sym_delete] = STATE(211), + [sym_delete_begin] = STATE(1066), + [sym_hard_line_break] = STATE(211), + [sym__smart_punctuation] = STATE(211), + [sym_autolink] = STATE(211), + [sym_footnote_reference] = STATE(211), + [sym__image] = STATE(211), + [sym_full_reference_image] = STATE(211), + [sym_collapsed_reference_image] = STATE(211), + [sym_inline_image] = STATE(211), + [sym__image_description] = STATE(671), + [sym__link] = STATE(211), + [sym_full_reference_link] = STATE(211), + [sym_collapsed_reference_link] = STATE(211), + [sym_inline_link] = STATE(211), + [sym_link_text] = STATE(676), + [sym__comment_with_spaces] = STATE(211), + [sym_span] = STATE(211), + [sym_raw_inline] = STATE(211), + [sym_math] = STATE(211), + [sym_verbatim] = STATE(211), + [sym__todo_highlights] = STATE(211), + [sym_todo] = STATE(211), + [sym_note] = STATE(211), + [sym__symbol_fallback] = STATE(211), + [aux_sym__text] = STATE(139), + [aux_sym__inline_repeat1] = STATE(106), [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(141), - [anon_sym__] = ACTIONS(144), - [anon_sym_LBRACE_STAR] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(150), - [anon_sym_BSLASH] = ACTIONS(153), - [sym_quotation_marks] = ACTIONS(156), - [sym_ellipsis] = ACTIONS(156), - [sym_em_dash] = ACTIONS(156), - [sym_en_dash] = ACTIONS(159), - [sym_backslash_escape] = ACTIONS(159), - [anon_sym_LT] = ACTIONS(162), - [anon_sym_LBRACE_EQ] = ACTIONS(165), - [anon_sym_LBRACE_PLUS] = ACTIONS(168), - [anon_sym_LBRACE_DASH] = ACTIONS(171), - [sym_symbol] = ACTIONS(156), - [anon_sym_LBRACE_CARET] = ACTIONS(174), - [anon_sym_CARET] = ACTIONS(174), - [anon_sym_LBRACE_TILDE] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_LBRACK_CARET] = ACTIONS(183), - [anon_sym_BANG_LBRACK] = ACTIONS(186), - [anon_sym_LBRACK] = ACTIONS(189), - [anon_sym_LBRACE2] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(192), - [anon_sym_TODO] = ACTIONS(195), - [anon_sym_WIP] = ACTIONS(195), - [anon_sym_NOTE] = ACTIONS(198), - [anon_sym_INFO] = ACTIONS(198), - [anon_sym_XXX] = ACTIONS(198), - [sym_fixme] = ACTIONS(156), - [anon_sym_PIPE] = ACTIONS(156), - [sym__whitespace1] = ACTIONS(201), - [sym__newline] = ACTIONS(204), - [aux_sym__text_token1] = ACTIONS(207), - [sym__verbatim_begin] = ACTIONS(210), + [anon_sym_LBRACE_] = ACTIONS(51), + [anon_sym__] = ACTIONS(54), + [anon_sym_LBRACE_STAR] = ACTIONS(57), + [anon_sym_STAR] = ACTIONS(60), + [anon_sym_LBRACE_CARET] = ACTIONS(63), + [anon_sym_CARET] = ACTIONS(63), + [anon_sym_LBRACE_TILDE] = ACTIONS(66), + [anon_sym_TILDE] = ACTIONS(66), + [anon_sym_LBRACE_EQ] = ACTIONS(69), + [anon_sym_LBRACE_PLUS] = ACTIONS(72), + [anon_sym_LBRACE_DASH] = ACTIONS(75), + [anon_sym_BSLASH] = ACTIONS(78), + [sym_quotation_marks] = ACTIONS(81), + [sym_ellipsis] = ACTIONS(81), + [sym_em_dash] = ACTIONS(81), + [sym_en_dash] = ACTIONS(84), + [sym_backslash_escape] = ACTIONS(84), + [anon_sym_LT] = ACTIONS(87), + [sym_symbol] = ACTIONS(81), + [anon_sym_LBRACK_CARET] = ACTIONS(90), + [anon_sym_RBRACK] = ACTIONS(101), + [anon_sym_BANG_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(98), + [anon_sym_LBRACE2] = ACTIONS(84), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_TODO] = ACTIONS(106), + [anon_sym_WIP] = ACTIONS(106), + [anon_sym_NOTE] = ACTIONS(109), + [anon_sym_INFO] = ACTIONS(109), + [anon_sym_XXX] = ACTIONS(109), + [sym_fixme] = ACTIONS(81), + [sym__whitespace1] = ACTIONS(112), + [sym__newline] = ACTIONS(115), + [aux_sym__text_token1] = ACTIONS(118), + [sym__verbatim_begin] = ACTIONS(121), }, [16] = { - [sym__inline] = STATE(934), - [sym__element] = STATE(91), - [sym_emphasis] = STATE(174), - [sym_emphasis_begin] = STATE(1001), - [sym_strong] = STATE(174), - [sym_strong_begin] = STATE(126), - [sym__hard_line_break] = STATE(174), - [sym_hard_line_break] = STATE(174), - [sym__smart_punctuation] = STATE(174), - [sym_autolink] = STATE(174), - [sym_highlighted] = STATE(174), - [sym_insert] = STATE(174), - [sym_delete] = STATE(174), - [sym_superscript] = STATE(174), - [sym_subscript] = STATE(174), - [sym_footnote_reference] = STATE(174), - [sym__image] = STATE(174), - [sym_full_reference_image] = STATE(174), - [sym_collapsed_reference_image] = STATE(174), - [sym_inline_image] = STATE(174), - [sym__image_description] = STATE(709), - [sym__link] = STATE(174), - [sym_full_reference_link] = STATE(174), - [sym_collapsed_reference_link] = STATE(174), - [sym_inline_link] = STATE(174), - [sym_link_text] = STATE(710), - [sym__comment_with_spaces] = STATE(174), - [sym_span] = STATE(174), - [sym_raw_inline] = STATE(174), - [sym_math] = STATE(174), - [sym_verbatim] = STATE(174), - [sym__todo_highlights] = STATE(174), - [sym_todo] = STATE(174), - [sym_note] = STATE(174), - [sym__symbol_fallback] = STATE(174), - [aux_sym__text] = STATE(148), - [aux_sym__inline_repeat1] = STATE(91), - [ts_builtin_sym_end] = ACTIONS(93), + [sym__inline] = STATE(1010), + [sym__element] = STATE(106), + [sym_emphasis] = STATE(211), + [sym_emphasis_begin] = STATE(1060), + [sym_strong] = STATE(211), + [sym_strong_begin] = STATE(1061), + [sym_superscript] = STATE(211), + [sym_superscript_begin] = STATE(1062), + [sym_subscript] = STATE(211), + [sym_subscript_begin] = STATE(1063), + [sym_highlighted] = STATE(211), + [sym_highlighted_begin] = STATE(1064), + [sym_insert] = STATE(211), + [sym_insert_begin] = STATE(1065), + [sym_delete] = STATE(211), + [sym_delete_begin] = STATE(1066), + [sym_hard_line_break] = STATE(211), + [sym__smart_punctuation] = STATE(211), + [sym_autolink] = STATE(211), + [sym_footnote_reference] = STATE(211), + [sym__image] = STATE(211), + [sym_full_reference_image] = STATE(211), + [sym_collapsed_reference_image] = STATE(211), + [sym_inline_image] = STATE(211), + [sym__image_description] = STATE(671), + [sym__link] = STATE(211), + [sym_full_reference_link] = STATE(211), + [sym_collapsed_reference_link] = STATE(211), + [sym_inline_link] = STATE(211), + [sym_link_text] = STATE(676), + [sym__comment_with_spaces] = STATE(211), + [sym_span] = STATE(211), + [sym_raw_inline] = STATE(211), + [sym_math] = STATE(211), + [sym_verbatim] = STATE(211), + [sym__todo_highlights] = STATE(211), + [sym_todo] = STATE(211), + [sym_note] = STATE(211), + [sym__symbol_fallback] = STATE(211), + [aux_sym__text] = STATE(139), + [aux_sym__inline_repeat1] = STATE(106), + [ts_builtin_sym_end] = ACTIONS(101), [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(213), - [anon_sym__] = ACTIONS(216), - [anon_sym_LBRACE_STAR] = ACTIONS(219), - [anon_sym_STAR] = ACTIONS(222), - [anon_sym_BSLASH] = ACTIONS(225), - [sym_quotation_marks] = ACTIONS(228), - [sym_ellipsis] = ACTIONS(228), - [sym_em_dash] = ACTIONS(228), - [sym_en_dash] = ACTIONS(231), - [sym_backslash_escape] = ACTIONS(231), - [anon_sym_LT] = ACTIONS(234), - [anon_sym_LBRACE_EQ] = ACTIONS(237), - [anon_sym_LBRACE_PLUS] = ACTIONS(240), - [anon_sym_LBRACE_DASH] = ACTIONS(243), - [sym_symbol] = ACTIONS(228), - [anon_sym_LBRACE_CARET] = ACTIONS(246), - [anon_sym_CARET] = ACTIONS(246), - [anon_sym_LBRACE_TILDE] = ACTIONS(249), - [anon_sym_TILDE] = ACTIONS(249), - [anon_sym_LBRACK_CARET] = ACTIONS(252), - [anon_sym_BANG_LBRACK] = ACTIONS(255), - [anon_sym_LBRACK] = ACTIONS(258), - [anon_sym_LBRACE2] = ACTIONS(231), - [anon_sym_DOLLAR] = ACTIONS(261), - [anon_sym_TODO] = ACTIONS(264), - [anon_sym_WIP] = ACTIONS(264), - [anon_sym_NOTE] = ACTIONS(267), - [anon_sym_INFO] = ACTIONS(267), - [anon_sym_XXX] = ACTIONS(267), - [sym_fixme] = ACTIONS(228), - [anon_sym_PIPE] = ACTIONS(228), - [sym__whitespace1] = ACTIONS(270), - [sym__newline] = ACTIONS(273), - [aux_sym__text_token1] = ACTIONS(276), - [sym__verbatim_begin] = ACTIONS(279), + [anon_sym_LBRACE_] = ACTIONS(51), + [anon_sym__] = ACTIONS(54), + [anon_sym_LBRACE_STAR] = ACTIONS(57), + [anon_sym_STAR] = ACTIONS(60), + [anon_sym_LBRACE_CARET] = ACTIONS(63), + [anon_sym_CARET] = ACTIONS(63), + [anon_sym_LBRACE_TILDE] = ACTIONS(66), + [anon_sym_TILDE] = ACTIONS(66), + [anon_sym_LBRACE_EQ] = ACTIONS(69), + [anon_sym_LBRACE_PLUS] = ACTIONS(72), + [anon_sym_LBRACE_DASH] = ACTIONS(75), + [anon_sym_BSLASH] = ACTIONS(78), + [sym_quotation_marks] = ACTIONS(81), + [sym_ellipsis] = ACTIONS(81), + [sym_em_dash] = ACTIONS(81), + [sym_en_dash] = ACTIONS(84), + [sym_backslash_escape] = ACTIONS(84), + [anon_sym_LT] = ACTIONS(87), + [sym_symbol] = ACTIONS(81), + [anon_sym_LBRACK_CARET] = ACTIONS(90), + [anon_sym_BANG_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(98), + [anon_sym_LBRACE2] = ACTIONS(84), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_TODO] = ACTIONS(106), + [anon_sym_WIP] = ACTIONS(106), + [anon_sym_NOTE] = ACTIONS(109), + [anon_sym_INFO] = ACTIONS(109), + [anon_sym_XXX] = ACTIONS(109), + [sym_fixme] = ACTIONS(81), + [sym__whitespace1] = ACTIONS(112), + [sym__newline] = ACTIONS(115), + [aux_sym__text_token1] = ACTIONS(118), + [sym__verbatim_begin] = ACTIONS(121), }, [17] = { - [sym__inline] = STATE(933), - [sym__element] = STATE(88), - [sym_emphasis] = STATE(209), - [sym_emphasis_begin] = STATE(1002), - [sym_strong] = STATE(209), - [sym_strong_begin] = STATE(121), - [sym__hard_line_break] = STATE(209), - [sym_hard_line_break] = STATE(209), - [sym__smart_punctuation] = STATE(209), - [sym_autolink] = STATE(209), - [sym_highlighted] = STATE(209), - [sym_insert] = STATE(209), - [sym_delete] = STATE(209), - [sym_superscript] = STATE(209), - [sym_subscript] = STATE(209), - [sym_footnote_reference] = STATE(209), - [sym__image] = STATE(209), - [sym_full_reference_image] = STATE(209), - [sym_collapsed_reference_image] = STATE(209), - [sym_inline_image] = STATE(209), - [sym__image_description] = STATE(706), - [sym__link] = STATE(209), - [sym_full_reference_link] = STATE(209), - [sym_collapsed_reference_link] = STATE(209), - [sym_inline_link] = STATE(209), - [sym_link_text] = STATE(707), - [sym__comment_with_spaces] = STATE(209), - [sym_span] = STATE(209), - [sym_raw_inline] = STATE(209), - [sym_math] = STATE(209), - [sym_verbatim] = STATE(209), - [sym__todo_highlights] = STATE(209), - [sym_todo] = STATE(209), - [sym_note] = STATE(209), - [sym__symbol_fallback] = STATE(209), - [aux_sym__text] = STATE(150), - [aux_sym__inline_repeat1] = STATE(88), - [ts_builtin_sym_end] = ACTIONS(93), + [sym__inline] = STATE(949), + [sym__element] = STATE(106), + [sym_emphasis] = STATE(211), + [sym_emphasis_begin] = STATE(1060), + [sym_strong] = STATE(211), + [sym_strong_begin] = STATE(1061), + [sym_superscript] = STATE(211), + [sym_superscript_begin] = STATE(1062), + [sym_subscript] = STATE(211), + [sym_subscript_begin] = STATE(1063), + [sym_highlighted] = STATE(211), + [sym_highlighted_begin] = STATE(1064), + [sym_insert] = STATE(211), + [sym_insert_begin] = STATE(1065), + [sym_delete] = STATE(211), + [sym_delete_begin] = STATE(1066), + [sym_hard_line_break] = STATE(211), + [sym__smart_punctuation] = STATE(211), + [sym_autolink] = STATE(211), + [sym_footnote_reference] = STATE(211), + [sym__image] = STATE(211), + [sym_full_reference_image] = STATE(211), + [sym_collapsed_reference_image] = STATE(211), + [sym_inline_image] = STATE(211), + [sym__image_description] = STATE(671), + [sym__link] = STATE(211), + [sym_full_reference_link] = STATE(211), + [sym_collapsed_reference_link] = STATE(211), + [sym_inline_link] = STATE(211), + [sym_link_text] = STATE(676), + [sym__comment_with_spaces] = STATE(211), + [sym_span] = STATE(211), + [sym_raw_inline] = STATE(211), + [sym_math] = STATE(211), + [sym_verbatim] = STATE(211), + [sym__todo_highlights] = STATE(211), + [sym_todo] = STATE(211), + [sym_note] = STATE(211), + [sym__symbol_fallback] = STATE(211), + [aux_sym__text] = STATE(139), + [aux_sym__inline_repeat1] = STATE(106), [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(282), - [anon_sym__] = ACTIONS(285), - [anon_sym_LBRACE_STAR] = ACTIONS(288), - [anon_sym_STAR] = ACTIONS(291), - [anon_sym_BSLASH] = ACTIONS(294), - [sym_quotation_marks] = ACTIONS(297), - [sym_ellipsis] = ACTIONS(297), - [sym_em_dash] = ACTIONS(297), - [sym_en_dash] = ACTIONS(300), - [sym_backslash_escape] = ACTIONS(300), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACE_EQ] = ACTIONS(306), - [anon_sym_LBRACE_PLUS] = ACTIONS(309), - [anon_sym_LBRACE_DASH] = ACTIONS(312), - [sym_symbol] = ACTIONS(297), - [anon_sym_LBRACE_CARET] = ACTIONS(315), - [anon_sym_CARET] = ACTIONS(315), - [anon_sym_LBRACE_TILDE] = ACTIONS(318), - [anon_sym_TILDE] = ACTIONS(318), - [anon_sym_LBRACK_CARET] = ACTIONS(321), - [anon_sym_BANG_LBRACK] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(327), - [anon_sym_LBRACE2] = ACTIONS(300), - [anon_sym_DOLLAR] = ACTIONS(330), - [anon_sym_TODO] = ACTIONS(333), - [anon_sym_WIP] = ACTIONS(333), - [anon_sym_NOTE] = ACTIONS(336), - [anon_sym_INFO] = ACTIONS(336), - [anon_sym_XXX] = ACTIONS(336), - [sym_fixme] = ACTIONS(297), - [anon_sym_PIPE] = ACTIONS(297), - [sym__whitespace1] = ACTIONS(339), - [sym__newline] = ACTIONS(342), - [aux_sym__text_token1] = ACTIONS(345), - [sym__verbatim_begin] = ACTIONS(348), + [anon_sym_LBRACE_] = ACTIONS(51), + [anon_sym__] = ACTIONS(54), + [anon_sym_LBRACE_STAR] = ACTIONS(57), + [anon_sym_STAR] = ACTIONS(60), + [anon_sym_LBRACE_CARET] = ACTIONS(63), + [anon_sym_CARET] = ACTIONS(63), + [anon_sym_LBRACE_TILDE] = ACTIONS(66), + [anon_sym_TILDE] = ACTIONS(66), + [anon_sym_LBRACE_EQ] = ACTIONS(69), + [anon_sym_LBRACE_PLUS] = ACTIONS(72), + [anon_sym_LBRACE_DASH] = ACTIONS(75), + [anon_sym_BSLASH] = ACTIONS(78), + [sym_quotation_marks] = ACTIONS(81), + [sym_ellipsis] = ACTIONS(81), + [sym_em_dash] = ACTIONS(81), + [sym_en_dash] = ACTIONS(84), + [sym_backslash_escape] = ACTIONS(84), + [anon_sym_LT] = ACTIONS(87), + [sym_symbol] = ACTIONS(81), + [anon_sym_LBRACK_CARET] = ACTIONS(90), + [anon_sym_BANG_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(98), + [anon_sym_LBRACE2] = ACTIONS(84), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_TODO] = ACTIONS(106), + [anon_sym_WIP] = ACTIONS(106), + [anon_sym_NOTE] = ACTIONS(109), + [anon_sym_INFO] = ACTIONS(109), + [anon_sym_XXX] = ACTIONS(109), + [sym_fixme] = ACTIONS(81), + [sym__whitespace1] = ACTIONS(112), + [sym__newline] = ACTIONS(115), + [aux_sym__text_token1] = ACTIONS(118), + [sym__verbatim_begin] = ACTIONS(121), + [sym_strong_end] = ACTIONS(101), }, [18] = { - [sym__inline] = STATE(752), - [sym__element] = STATE(102), - [sym_emphasis] = STATE(194), - [sym_emphasis_begin] = STATE(1003), - [sym_strong] = STATE(194), - [sym_strong_begin] = STATE(113), - [sym__hard_line_break] = STATE(194), - [sym_hard_line_break] = STATE(194), - [sym__smart_punctuation] = STATE(194), - [sym_autolink] = STATE(194), - [sym_highlighted] = STATE(194), - [sym_insert] = STATE(194), - [sym_delete] = STATE(194), - [sym_superscript] = STATE(194), - [sym_subscript] = STATE(194), - [sym_footnote_reference] = STATE(194), - [sym__image] = STATE(194), - [sym_full_reference_image] = STATE(194), - [sym_collapsed_reference_image] = STATE(194), - [sym_inline_image] = STATE(194), - [sym__image_description] = STATE(696), - [sym__link] = STATE(194), - [sym_full_reference_link] = STATE(194), - [sym_collapsed_reference_link] = STATE(194), - [sym_inline_link] = STATE(194), - [sym_link_text] = STATE(695), - [sym__comment_with_spaces] = STATE(194), - [sym_span] = STATE(194), - [sym_raw_inline] = STATE(194), - [sym_math] = STATE(194), - [sym_verbatim] = STATE(194), - [sym__todo_highlights] = STATE(194), - [sym_todo] = STATE(194), - [sym_note] = STATE(194), - [sym__symbol_fallback] = STATE(194), - [aux_sym__text] = STATE(170), - [aux_sym__inline_repeat1] = STATE(102), - [ts_builtin_sym_end] = ACTIONS(93), + [sym__inline] = STATE(991), + [sym__element] = STATE(106), + [sym_emphasis] = STATE(211), + [sym_emphasis_begin] = STATE(1060), + [sym_strong] = STATE(211), + [sym_strong_begin] = STATE(1061), + [sym_superscript] = STATE(211), + [sym_superscript_begin] = STATE(1062), + [sym_subscript] = STATE(211), + [sym_subscript_begin] = STATE(1063), + [sym_highlighted] = STATE(211), + [sym_highlighted_begin] = STATE(1064), + [sym_insert] = STATE(211), + [sym_insert_begin] = STATE(1065), + [sym_delete] = STATE(211), + [sym_delete_begin] = STATE(1066), + [sym_hard_line_break] = STATE(211), + [sym__smart_punctuation] = STATE(211), + [sym_autolink] = STATE(211), + [sym_footnote_reference] = STATE(211), + [sym__image] = STATE(211), + [sym_full_reference_image] = STATE(211), + [sym_collapsed_reference_image] = STATE(211), + [sym_inline_image] = STATE(211), + [sym__image_description] = STATE(671), + [sym__link] = STATE(211), + [sym_full_reference_link] = STATE(211), + [sym_collapsed_reference_link] = STATE(211), + [sym_inline_link] = STATE(211), + [sym_link_text] = STATE(676), + [sym__comment_with_spaces] = STATE(211), + [sym_span] = STATE(211), + [sym_raw_inline] = STATE(211), + [sym_math] = STATE(211), + [sym_verbatim] = STATE(211), + [sym__todo_highlights] = STATE(211), + [sym_todo] = STATE(211), + [sym_note] = STATE(211), + [sym__symbol_fallback] = STATE(211), + [aux_sym__text] = STATE(139), + [aux_sym__inline_repeat1] = STATE(106), [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(351), - [anon_sym__] = ACTIONS(354), - [anon_sym_LBRACE_STAR] = ACTIONS(357), - [anon_sym_STAR] = ACTIONS(360), - [anon_sym_BSLASH] = ACTIONS(363), - [sym_quotation_marks] = ACTIONS(366), - [sym_ellipsis] = ACTIONS(366), - [sym_em_dash] = ACTIONS(366), - [sym_en_dash] = ACTIONS(369), - [sym_backslash_escape] = ACTIONS(369), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_LBRACE_EQ] = ACTIONS(375), - [anon_sym_LBRACE_PLUS] = ACTIONS(378), - [anon_sym_LBRACE_DASH] = ACTIONS(381), - [sym_symbol] = ACTIONS(366), - [anon_sym_LBRACE_CARET] = ACTIONS(384), - [anon_sym_CARET] = ACTIONS(384), - [anon_sym_LBRACE_TILDE] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_LBRACK_CARET] = ACTIONS(390), - [anon_sym_BANG_LBRACK] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(396), - [anon_sym_LBRACE2] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(399), - [anon_sym_TODO] = ACTIONS(402), - [anon_sym_WIP] = ACTIONS(402), - [anon_sym_NOTE] = ACTIONS(405), - [anon_sym_INFO] = ACTIONS(405), - [anon_sym_XXX] = ACTIONS(405), - [sym_fixme] = ACTIONS(366), - [anon_sym_PIPE] = ACTIONS(366), - [sym__whitespace1] = ACTIONS(408), - [sym__newline] = ACTIONS(411), - [aux_sym__text_token1] = ACTIONS(414), - [sym__verbatim_begin] = ACTIONS(417), + [anon_sym_LBRACE_] = ACTIONS(51), + [anon_sym__] = ACTIONS(54), + [anon_sym_LBRACE_STAR] = ACTIONS(57), + [anon_sym_STAR] = ACTIONS(60), + [anon_sym_LBRACE_CARET] = ACTIONS(63), + [anon_sym_CARET] = ACTIONS(63), + [anon_sym_LBRACE_TILDE] = ACTIONS(66), + [anon_sym_TILDE] = ACTIONS(66), + [anon_sym_LBRACE_EQ] = ACTIONS(69), + [anon_sym_LBRACE_PLUS] = ACTIONS(72), + [anon_sym_LBRACE_DASH] = ACTIONS(75), + [anon_sym_BSLASH] = ACTIONS(78), + [sym_quotation_marks] = ACTIONS(81), + [sym_ellipsis] = ACTIONS(81), + [sym_em_dash] = ACTIONS(81), + [sym_en_dash] = ACTIONS(84), + [sym_backslash_escape] = ACTIONS(84), + [anon_sym_LT] = ACTIONS(87), + [sym_symbol] = ACTIONS(81), + [anon_sym_LBRACK_CARET] = ACTIONS(90), + [anon_sym_BANG_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(98), + [anon_sym_LBRACE2] = ACTIONS(84), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_TODO] = ACTIONS(106), + [anon_sym_WIP] = ACTIONS(106), + [anon_sym_NOTE] = ACTIONS(109), + [anon_sym_INFO] = ACTIONS(109), + [anon_sym_XXX] = ACTIONS(109), + [sym_fixme] = ACTIONS(81), + [sym__whitespace1] = ACTIONS(112), + [sym__newline] = ACTIONS(115), + [aux_sym__text_token1] = ACTIONS(118), + [sym__verbatim_begin] = ACTIONS(121), + [sym_highlighted_end] = ACTIONS(101), }, [19] = { - [sym__inline] = STATE(754), - [sym__element] = STATE(114), - [sym_emphasis] = STATE(181), - [sym_emphasis_begin] = STATE(1004), - [sym_strong] = STATE(181), - [sym_strong_begin] = STATE(110), - [sym__hard_line_break] = STATE(181), - [sym_hard_line_break] = STATE(181), - [sym__smart_punctuation] = STATE(181), - [sym_autolink] = STATE(181), - [sym_highlighted] = STATE(181), - [sym_insert] = STATE(181), - [sym_delete] = STATE(181), - [sym_superscript] = STATE(181), - [sym_subscript] = STATE(181), - [sym_footnote_reference] = STATE(181), - [sym__image] = STATE(181), - [sym_full_reference_image] = STATE(181), - [sym_collapsed_reference_image] = STATE(181), - [sym_inline_image] = STATE(181), - [sym__image_description] = STATE(688), - [sym__link] = STATE(181), - [sym_full_reference_link] = STATE(181), - [sym_collapsed_reference_link] = STATE(181), - [sym_inline_link] = STATE(181), - [sym_link_text] = STATE(693), - [sym__comment_with_spaces] = STATE(181), - [sym_span] = STATE(181), - [sym_raw_inline] = STATE(181), - [sym_math] = STATE(181), - [sym_verbatim] = STATE(181), - [sym__todo_highlights] = STATE(181), - [sym_todo] = STATE(181), - [sym_note] = STATE(181), - [sym__symbol_fallback] = STATE(181), - [aux_sym__text] = STATE(153), - [aux_sym__inline_repeat1] = STATE(114), - [ts_builtin_sym_end] = ACTIONS(93), + [sym__inline] = STATE(935), + [sym__element] = STATE(106), + [sym_emphasis] = STATE(211), + [sym_emphasis_begin] = STATE(1060), + [sym_strong] = STATE(211), + [sym_strong_begin] = STATE(1061), + [sym_superscript] = STATE(211), + [sym_superscript_begin] = STATE(1062), + [sym_subscript] = STATE(211), + [sym_subscript_begin] = STATE(1063), + [sym_highlighted] = STATE(211), + [sym_highlighted_begin] = STATE(1064), + [sym_insert] = STATE(211), + [sym_insert_begin] = STATE(1065), + [sym_delete] = STATE(211), + [sym_delete_begin] = STATE(1066), + [sym_hard_line_break] = STATE(211), + [sym__smart_punctuation] = STATE(211), + [sym_autolink] = STATE(211), + [sym_footnote_reference] = STATE(211), + [sym__image] = STATE(211), + [sym_full_reference_image] = STATE(211), + [sym_collapsed_reference_image] = STATE(211), + [sym_inline_image] = STATE(211), + [sym__image_description] = STATE(671), + [sym__link] = STATE(211), + [sym_full_reference_link] = STATE(211), + [sym_collapsed_reference_link] = STATE(211), + [sym_inline_link] = STATE(211), + [sym_link_text] = STATE(676), + [sym__comment_with_spaces] = STATE(211), + [sym_span] = STATE(211), + [sym_raw_inline] = STATE(211), + [sym_math] = STATE(211), + [sym_verbatim] = STATE(211), + [sym__todo_highlights] = STATE(211), + [sym_todo] = STATE(211), + [sym_note] = STATE(211), + [sym__symbol_fallback] = STATE(211), + [aux_sym__text] = STATE(139), + [aux_sym__inline_repeat1] = STATE(106), [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(420), - [anon_sym__] = ACTIONS(423), - [anon_sym_LBRACE_STAR] = ACTIONS(426), - [anon_sym_STAR] = ACTIONS(429), - [anon_sym_BSLASH] = ACTIONS(432), - [sym_quotation_marks] = ACTIONS(435), - [sym_ellipsis] = ACTIONS(435), - [sym_em_dash] = ACTIONS(435), - [sym_en_dash] = ACTIONS(438), - [sym_backslash_escape] = ACTIONS(438), - [anon_sym_LT] = ACTIONS(441), - [anon_sym_LBRACE_EQ] = ACTIONS(444), - [anon_sym_LBRACE_PLUS] = ACTIONS(447), - [anon_sym_LBRACE_DASH] = ACTIONS(450), - [sym_symbol] = ACTIONS(435), - [anon_sym_LBRACE_CARET] = ACTIONS(453), - [anon_sym_CARET] = ACTIONS(453), - [anon_sym_LBRACE_TILDE] = ACTIONS(456), - [anon_sym_TILDE] = ACTIONS(456), - [anon_sym_LBRACK_CARET] = ACTIONS(459), - [anon_sym_BANG_LBRACK] = ACTIONS(462), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_LBRACE2] = ACTIONS(438), - [anon_sym_DOLLAR] = ACTIONS(468), - [anon_sym_TODO] = ACTIONS(471), - [anon_sym_WIP] = ACTIONS(471), - [anon_sym_NOTE] = ACTIONS(474), - [anon_sym_INFO] = ACTIONS(474), - [anon_sym_XXX] = ACTIONS(474), - [sym_fixme] = ACTIONS(435), - [anon_sym_PIPE] = ACTIONS(435), - [sym__whitespace1] = ACTIONS(477), - [sym__newline] = ACTIONS(480), - [aux_sym__text_token1] = ACTIONS(483), - [sym__verbatim_begin] = ACTIONS(486), + [anon_sym_LBRACE_] = ACTIONS(51), + [anon_sym__] = ACTIONS(54), + [anon_sym_LBRACE_STAR] = ACTIONS(57), + [anon_sym_STAR] = ACTIONS(60), + [anon_sym_LBRACE_CARET] = ACTIONS(63), + [anon_sym_CARET] = ACTIONS(63), + [anon_sym_LBRACE_TILDE] = ACTIONS(66), + [anon_sym_TILDE] = ACTIONS(66), + [anon_sym_LBRACE_EQ] = ACTIONS(69), + [anon_sym_LBRACE_PLUS] = ACTIONS(72), + [anon_sym_LBRACE_DASH] = ACTIONS(75), + [anon_sym_BSLASH] = ACTIONS(78), + [sym_quotation_marks] = ACTIONS(81), + [sym_ellipsis] = ACTIONS(81), + [sym_em_dash] = ACTIONS(81), + [sym_en_dash] = ACTIONS(84), + [sym_backslash_escape] = ACTIONS(84), + [anon_sym_LT] = ACTIONS(87), + [sym_symbol] = ACTIONS(81), + [anon_sym_LBRACK_CARET] = ACTIONS(90), + [anon_sym_BANG_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(98), + [anon_sym_LBRACE2] = ACTIONS(84), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_TODO] = ACTIONS(106), + [anon_sym_WIP] = ACTIONS(106), + [anon_sym_NOTE] = ACTIONS(109), + [anon_sym_INFO] = ACTIONS(109), + [anon_sym_XXX] = ACTIONS(109), + [sym_fixme] = ACTIONS(81), + [sym__whitespace1] = ACTIONS(112), + [sym__newline] = ACTIONS(115), + [aux_sym__text_token1] = ACTIONS(118), + [sym__verbatim_begin] = ACTIONS(121), + [sym_emphasis_end] = ACTIONS(101), }, [20] = { - [sym__inline] = STATE(996), - [sym__element] = STATE(91), - [sym_emphasis] = STATE(174), - [sym_emphasis_begin] = STATE(1001), - [sym_strong] = STATE(174), - [sym_strong_begin] = STATE(126), - [sym__hard_line_break] = STATE(174), - [sym_hard_line_break] = STATE(174), - [sym__smart_punctuation] = STATE(174), - [sym_autolink] = STATE(174), - [sym_highlighted] = STATE(174), - [sym_insert] = STATE(174), - [sym_delete] = STATE(174), - [sym_superscript] = STATE(174), - [sym_subscript] = STATE(174), - [sym_footnote_reference] = STATE(174), - [sym__image] = STATE(174), - [sym_full_reference_image] = STATE(174), - [sym_collapsed_reference_image] = STATE(174), - [sym_inline_image] = STATE(174), - [sym__image_description] = STATE(709), - [sym__link] = STATE(174), - [sym_full_reference_link] = STATE(174), - [sym_collapsed_reference_link] = STATE(174), - [sym_inline_link] = STATE(174), - [sym_link_text] = STATE(710), - [sym__comment_with_spaces] = STATE(174), - [sym_span] = STATE(174), - [sym_raw_inline] = STATE(174), - [sym_math] = STATE(174), - [sym_verbatim] = STATE(174), - [sym__todo_highlights] = STATE(174), - [sym_todo] = STATE(174), - [sym_note] = STATE(174), - [sym__symbol_fallback] = STATE(174), - [aux_sym__text] = STATE(148), - [aux_sym__inline_repeat1] = STATE(91), + [sym__inline] = STATE(1011), + [sym__element] = STATE(106), + [sym_emphasis] = STATE(211), + [sym_emphasis_begin] = STATE(1060), + [sym_strong] = STATE(211), + [sym_strong_begin] = STATE(1061), + [sym_superscript] = STATE(211), + [sym_superscript_begin] = STATE(1062), + [sym_subscript] = STATE(211), + [sym_subscript_begin] = STATE(1063), + [sym_highlighted] = STATE(211), + [sym_highlighted_begin] = STATE(1064), + [sym_insert] = STATE(211), + [sym_insert_begin] = STATE(1065), + [sym_delete] = STATE(211), + [sym_delete_begin] = STATE(1066), + [sym_hard_line_break] = STATE(211), + [sym__smart_punctuation] = STATE(211), + [sym_autolink] = STATE(211), + [sym_footnote_reference] = STATE(211), + [sym__image] = STATE(211), + [sym_full_reference_image] = STATE(211), + [sym_collapsed_reference_image] = STATE(211), + [sym_inline_image] = STATE(211), + [sym__image_description] = STATE(671), + [sym__link] = STATE(211), + [sym_full_reference_link] = STATE(211), + [sym_collapsed_reference_link] = STATE(211), + [sym_inline_link] = STATE(211), + [sym_link_text] = STATE(676), + [sym__comment_with_spaces] = STATE(211), + [sym_span] = STATE(211), + [sym_raw_inline] = STATE(211), + [sym_math] = STATE(211), + [sym_verbatim] = STATE(211), + [sym__todo_highlights] = STATE(211), + [sym_todo] = STATE(211), + [sym_note] = STATE(211), + [sym__symbol_fallback] = STATE(211), + [aux_sym__text] = STATE(139), + [aux_sym__inline_repeat1] = STATE(106), [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(213), - [anon_sym__] = ACTIONS(216), - [anon_sym_LBRACE_STAR] = ACTIONS(219), - [anon_sym_STAR] = ACTIONS(222), - [anon_sym_BSLASH] = ACTIONS(225), - [sym_quotation_marks] = ACTIONS(228), - [sym_ellipsis] = ACTIONS(228), - [sym_em_dash] = ACTIONS(228), - [sym_en_dash] = ACTIONS(231), - [sym_backslash_escape] = ACTIONS(231), - [anon_sym_LT] = ACTIONS(234), - [anon_sym_LBRACE_EQ] = ACTIONS(237), - [anon_sym_LBRACE_PLUS] = ACTIONS(240), - [anon_sym_LBRACE_DASH] = ACTIONS(243), - [sym_symbol] = ACTIONS(228), - [anon_sym_LBRACE_CARET] = ACTIONS(246), - [anon_sym_CARET] = ACTIONS(489), - [anon_sym_CARET_RBRACE] = ACTIONS(93), - [anon_sym_LBRACE_TILDE] = ACTIONS(249), - [anon_sym_TILDE] = ACTIONS(249), - [anon_sym_LBRACK_CARET] = ACTIONS(252), - [anon_sym_BANG_LBRACK] = ACTIONS(255), - [anon_sym_LBRACK] = ACTIONS(258), - [anon_sym_LBRACE2] = ACTIONS(231), - [anon_sym_DOLLAR] = ACTIONS(261), - [anon_sym_TODO] = ACTIONS(264), - [anon_sym_WIP] = ACTIONS(264), - [anon_sym_NOTE] = ACTIONS(267), - [anon_sym_INFO] = ACTIONS(267), - [anon_sym_XXX] = ACTIONS(267), - [sym_fixme] = ACTIONS(228), - [anon_sym_PIPE] = ACTIONS(228), - [sym__whitespace1] = ACTIONS(270), - [sym__newline] = ACTIONS(273), - [aux_sym__text_token1] = ACTIONS(276), - [sym__verbatim_begin] = ACTIONS(279), + [anon_sym_LBRACE_] = ACTIONS(51), + [anon_sym__] = ACTIONS(54), + [anon_sym_LBRACE_STAR] = ACTIONS(57), + [anon_sym_STAR] = ACTIONS(60), + [anon_sym_LBRACE_CARET] = ACTIONS(63), + [anon_sym_CARET] = ACTIONS(63), + [anon_sym_LBRACE_TILDE] = ACTIONS(66), + [anon_sym_TILDE] = ACTIONS(66), + [anon_sym_LBRACE_EQ] = ACTIONS(69), + [anon_sym_LBRACE_PLUS] = ACTIONS(72), + [anon_sym_LBRACE_DASH] = ACTIONS(75), + [anon_sym_BSLASH] = ACTIONS(78), + [sym_quotation_marks] = ACTIONS(81), + [sym_ellipsis] = ACTIONS(81), + [sym_em_dash] = ACTIONS(81), + [sym_en_dash] = ACTIONS(84), + [sym_backslash_escape] = ACTIONS(84), + [anon_sym_LT] = ACTIONS(87), + [sym_symbol] = ACTIONS(81), + [anon_sym_LBRACK_CARET] = ACTIONS(90), + [anon_sym_RBRACK] = ACTIONS(124), + [anon_sym_BANG_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(98), + [anon_sym_LBRACE2] = ACTIONS(84), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_TODO] = ACTIONS(106), + [anon_sym_WIP] = ACTIONS(106), + [anon_sym_NOTE] = ACTIONS(109), + [anon_sym_INFO] = ACTIONS(109), + [anon_sym_XXX] = ACTIONS(109), + [sym_fixme] = ACTIONS(81), + [sym__whitespace1] = ACTIONS(112), + [sym__newline] = ACTIONS(115), + [aux_sym__text_token1] = ACTIONS(118), + [sym__verbatim_begin] = ACTIONS(121), }, [21] = { - [sym__inline] = STATE(909), - [sym__element] = STATE(118), - [sym_emphasis] = STATE(201), - [sym_emphasis_begin] = STATE(1005), - [sym_strong] = STATE(201), - [sym_strong_begin] = STATE(105), - [sym__hard_line_break] = STATE(201), - [sym_hard_line_break] = STATE(201), - [sym__smart_punctuation] = STATE(201), - [sym_autolink] = STATE(201), - [sym_highlighted] = STATE(201), - [sym_insert] = STATE(201), - [sym_delete] = STATE(201), - [sym_superscript] = STATE(201), - [sym_subscript] = STATE(201), - [sym_footnote_reference] = STATE(201), - [sym__image] = STATE(201), - [sym_full_reference_image] = STATE(201), - [sym_collapsed_reference_image] = STATE(201), - [sym_inline_image] = STATE(201), - [sym__image_description] = STATE(712), - [sym__link] = STATE(201), - [sym_full_reference_link] = STATE(201), - [sym_collapsed_reference_link] = STATE(201), - [sym_inline_link] = STATE(201), - [sym_link_text] = STATE(717), - [sym__comment_with_spaces] = STATE(201), - [sym_span] = STATE(201), - [sym_raw_inline] = STATE(201), - [sym_math] = STATE(201), - [sym_verbatim] = STATE(201), - [sym__todo_highlights] = STATE(201), - [sym_todo] = STATE(201), - [sym_note] = STATE(201), - [sym__symbol_fallback] = STATE(201), + [sym__inline] = STATE(1019), + [sym__element] = STATE(106), + [sym_emphasis] = STATE(211), + [sym_emphasis_begin] = STATE(1060), + [sym_strong] = STATE(211), + [sym_strong_begin] = STATE(1061), + [sym_superscript] = STATE(211), + [sym_superscript_begin] = STATE(1062), + [sym_subscript] = STATE(211), + [sym_subscript_begin] = STATE(1063), + [sym_highlighted] = STATE(211), + [sym_highlighted_begin] = STATE(1064), + [sym_insert] = STATE(211), + [sym_insert_begin] = STATE(1065), + [sym_delete] = STATE(211), + [sym_delete_begin] = STATE(1066), + [sym_hard_line_break] = STATE(211), + [sym__smart_punctuation] = STATE(211), + [sym_autolink] = STATE(211), + [sym_footnote_reference] = STATE(211), + [sym__image] = STATE(211), + [sym_full_reference_image] = STATE(211), + [sym_collapsed_reference_image] = STATE(211), + [sym_inline_image] = STATE(211), + [sym__image_description] = STATE(671), + [sym__link] = STATE(211), + [sym_full_reference_link] = STATE(211), + [sym_collapsed_reference_link] = STATE(211), + [sym_inline_link] = STATE(211), + [sym_link_text] = STATE(676), + [sym__comment_with_spaces] = STATE(211), + [sym_span] = STATE(211), + [sym_raw_inline] = STATE(211), + [sym_math] = STATE(211), + [sym_verbatim] = STATE(211), + [sym__todo_highlights] = STATE(211), + [sym_todo] = STATE(211), + [sym_note] = STATE(211), + [sym__symbol_fallback] = STATE(211), [aux_sym__text] = STATE(139), - [aux_sym__inline_repeat1] = STATE(118), - [ts_builtin_sym_end] = ACTIONS(93), + [aux_sym__inline_repeat1] = STATE(106), [anon_sym_LBRACE] = ACTIONS(49), [anon_sym_LBRACE_] = ACTIONS(51), [anon_sym__] = ACTIONS(54), [anon_sym_LBRACE_STAR] = ACTIONS(57), [anon_sym_STAR] = ACTIONS(60), - [anon_sym_BSLASH] = ACTIONS(63), - [sym_quotation_marks] = ACTIONS(66), - [sym_ellipsis] = ACTIONS(66), - [sym_em_dash] = ACTIONS(66), - [sym_en_dash] = ACTIONS(69), - [sym_backslash_escape] = ACTIONS(69), - [anon_sym_LT] = ACTIONS(72), - [anon_sym_LBRACE_EQ] = ACTIONS(75), - [anon_sym_LBRACE_PLUS] = ACTIONS(78), - [anon_sym_LBRACE_DASH] = ACTIONS(81), - [sym_symbol] = ACTIONS(66), - [anon_sym_LBRACE_CARET] = ACTIONS(84), - [anon_sym_CARET] = ACTIONS(84), - [anon_sym_LBRACE_TILDE] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(87), - [anon_sym_LBRACK_CARET] = ACTIONS(95), - [anon_sym_BANG_LBRACK] = ACTIONS(100), - [anon_sym_LBRACK] = ACTIONS(103), - [anon_sym_LBRACE2] = ACTIONS(69), - [anon_sym_DOLLAR] = ACTIONS(106), - [anon_sym_TODO] = ACTIONS(109), - [anon_sym_WIP] = ACTIONS(109), - [anon_sym_NOTE] = ACTIONS(112), - [anon_sym_INFO] = ACTIONS(112), - [anon_sym_XXX] = ACTIONS(112), - [sym_fixme] = ACTIONS(66), - [anon_sym_PIPE] = ACTIONS(66), - [sym__whitespace1] = ACTIONS(115), - [sym__newline] = ACTIONS(118), - [aux_sym__text_token1] = ACTIONS(121), - [sym__verbatim_begin] = ACTIONS(124), + [anon_sym_LBRACE_CARET] = ACTIONS(63), + [anon_sym_CARET] = ACTIONS(63), + [anon_sym_LBRACE_TILDE] = ACTIONS(66), + [anon_sym_TILDE] = ACTIONS(66), + [anon_sym_LBRACE_EQ] = ACTIONS(69), + [anon_sym_LBRACE_PLUS] = ACTIONS(72), + [anon_sym_LBRACE_DASH] = ACTIONS(75), + [anon_sym_BSLASH] = ACTIONS(78), + [sym_quotation_marks] = ACTIONS(81), + [sym_ellipsis] = ACTIONS(81), + [sym_em_dash] = ACTIONS(81), + [sym_en_dash] = ACTIONS(84), + [sym_backslash_escape] = ACTIONS(84), + [anon_sym_LT] = ACTIONS(87), + [sym_symbol] = ACTIONS(81), + [anon_sym_LBRACK_CARET] = ACTIONS(90), + [anon_sym_BANG_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(98), + [anon_sym_LBRACE2] = ACTIONS(84), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_TODO] = ACTIONS(106), + [anon_sym_WIP] = ACTIONS(106), + [anon_sym_NOTE] = ACTIONS(109), + [anon_sym_INFO] = ACTIONS(109), + [anon_sym_XXX] = ACTIONS(109), + [sym_fixme] = ACTIONS(81), + [sym__whitespace1] = ACTIONS(112), + [sym__newline] = ACTIONS(115), + [aux_sym__text_token1] = ACTIONS(118), + [sym__verbatim_begin] = ACTIONS(121), + [sym_delete_end] = ACTIONS(101), }, [22] = { - [sym__inline] = STATE(873), - [sym__element] = STATE(88), - [sym_emphasis] = STATE(209), - [sym_emphasis_begin] = STATE(1002), - [sym_strong] = STATE(209), - [sym_strong_begin] = STATE(121), - [sym__hard_line_break] = STATE(209), - [sym_hard_line_break] = STATE(209), - [sym__smart_punctuation] = STATE(209), - [sym_autolink] = STATE(209), - [sym_highlighted] = STATE(209), - [sym_insert] = STATE(209), - [sym_delete] = STATE(209), - [sym_superscript] = STATE(209), - [sym_subscript] = STATE(209), - [sym_footnote_reference] = STATE(209), - [sym__image] = STATE(209), - [sym_full_reference_image] = STATE(209), - [sym_collapsed_reference_image] = STATE(209), - [sym_inline_image] = STATE(209), - [sym__image_description] = STATE(706), - [sym__link] = STATE(209), - [sym_full_reference_link] = STATE(209), - [sym_collapsed_reference_link] = STATE(209), - [sym_inline_link] = STATE(209), - [sym_link_text] = STATE(707), - [sym__comment_with_spaces] = STATE(209), - [sym_span] = STATE(209), - [sym_raw_inline] = STATE(209), - [sym_math] = STATE(209), - [sym_verbatim] = STATE(209), - [sym__todo_highlights] = STATE(209), - [sym_todo] = STATE(209), - [sym_note] = STATE(209), - [sym__symbol_fallback] = STATE(209), - [aux_sym__text] = STATE(150), - [aux_sym__inline_repeat1] = STATE(88), + [sym__inline] = STATE(1005), + [sym__element] = STATE(106), + [sym_emphasis] = STATE(211), + [sym_emphasis_begin] = STATE(1060), + [sym_strong] = STATE(211), + [sym_strong_begin] = STATE(1061), + [sym_superscript] = STATE(211), + [sym_superscript_begin] = STATE(1062), + [sym_subscript] = STATE(211), + [sym_subscript_begin] = STATE(1063), + [sym_highlighted] = STATE(211), + [sym_highlighted_begin] = STATE(1064), + [sym_insert] = STATE(211), + [sym_insert_begin] = STATE(1065), + [sym_delete] = STATE(211), + [sym_delete_begin] = STATE(1066), + [sym_hard_line_break] = STATE(211), + [sym__smart_punctuation] = STATE(211), + [sym_autolink] = STATE(211), + [sym_footnote_reference] = STATE(211), + [sym__image] = STATE(211), + [sym_full_reference_image] = STATE(211), + [sym_collapsed_reference_image] = STATE(211), + [sym_inline_image] = STATE(211), + [sym__image_description] = STATE(671), + [sym__link] = STATE(211), + [sym_full_reference_link] = STATE(211), + [sym_collapsed_reference_link] = STATE(211), + [sym_inline_link] = STATE(211), + [sym_link_text] = STATE(676), + [sym__comment_with_spaces] = STATE(211), + [sym_span] = STATE(211), + [sym_raw_inline] = STATE(211), + [sym_math] = STATE(211), + [sym_verbatim] = STATE(211), + [sym__todo_highlights] = STATE(211), + [sym_todo] = STATE(211), + [sym_note] = STATE(211), + [sym__symbol_fallback] = STATE(211), + [aux_sym__text] = STATE(139), + [aux_sym__inline_repeat1] = STATE(106), [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(282), - [anon_sym__] = ACTIONS(285), - [anon_sym_LBRACE_STAR] = ACTIONS(288), - [anon_sym_STAR] = ACTIONS(291), - [anon_sym_BSLASH] = ACTIONS(294), - [sym_quotation_marks] = ACTIONS(297), - [sym_ellipsis] = ACTIONS(297), - [sym_em_dash] = ACTIONS(297), - [sym_en_dash] = ACTIONS(300), - [sym_backslash_escape] = ACTIONS(300), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACE_EQ] = ACTIONS(306), - [anon_sym_LBRACE_PLUS] = ACTIONS(309), - [anon_sym_LBRACE_DASH] = ACTIONS(312), - [sym_symbol] = ACTIONS(297), - [anon_sym_LBRACE_CARET] = ACTIONS(315), - [anon_sym_CARET] = ACTIONS(492), - [anon_sym_CARET_RBRACE] = ACTIONS(93), - [anon_sym_LBRACE_TILDE] = ACTIONS(318), - [anon_sym_TILDE] = ACTIONS(318), - [anon_sym_LBRACK_CARET] = ACTIONS(321), - [anon_sym_BANG_LBRACK] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(327), - [anon_sym_LBRACE2] = ACTIONS(300), - [anon_sym_DOLLAR] = ACTIONS(330), - [anon_sym_TODO] = ACTIONS(333), - [anon_sym_WIP] = ACTIONS(333), - [anon_sym_NOTE] = ACTIONS(336), - [anon_sym_INFO] = ACTIONS(336), - [anon_sym_XXX] = ACTIONS(336), - [sym_fixme] = ACTIONS(297), - [anon_sym_PIPE] = ACTIONS(297), - [sym__whitespace1] = ACTIONS(339), - [sym__newline] = ACTIONS(342), - [aux_sym__text_token1] = ACTIONS(345), - [sym__verbatim_begin] = ACTIONS(348), + [anon_sym_LBRACE_] = ACTIONS(51), + [anon_sym__] = ACTIONS(54), + [anon_sym_LBRACE_STAR] = ACTIONS(57), + [anon_sym_STAR] = ACTIONS(60), + [anon_sym_LBRACE_CARET] = ACTIONS(63), + [anon_sym_CARET] = ACTIONS(63), + [anon_sym_LBRACE_TILDE] = ACTIONS(66), + [anon_sym_TILDE] = ACTIONS(66), + [anon_sym_LBRACE_EQ] = ACTIONS(69), + [anon_sym_LBRACE_PLUS] = ACTIONS(72), + [anon_sym_LBRACE_DASH] = ACTIONS(75), + [anon_sym_BSLASH] = ACTIONS(78), + [sym_quotation_marks] = ACTIONS(81), + [sym_ellipsis] = ACTIONS(81), + [sym_em_dash] = ACTIONS(81), + [sym_en_dash] = ACTIONS(84), + [sym_backslash_escape] = ACTIONS(84), + [anon_sym_LT] = ACTIONS(87), + [sym_symbol] = ACTIONS(81), + [anon_sym_LBRACK_CARET] = ACTIONS(90), + [anon_sym_BANG_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(98), + [anon_sym_LBRACE2] = ACTIONS(84), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_TODO] = ACTIONS(106), + [anon_sym_WIP] = ACTIONS(106), + [anon_sym_NOTE] = ACTIONS(109), + [anon_sym_INFO] = ACTIONS(109), + [anon_sym_XXX] = ACTIONS(109), + [sym_fixme] = ACTIONS(81), + [sym__whitespace1] = ACTIONS(112), + [sym__newline] = ACTIONS(115), + [aux_sym__text_token1] = ACTIONS(118), + [sym__verbatim_begin] = ACTIONS(121), + [sym_insert_end] = ACTIONS(101), }, [23] = { - [sym__inline] = STATE(738), - [sym__element] = STATE(102), - [sym_emphasis] = STATE(194), - [sym_emphasis_begin] = STATE(1003), - [sym_strong] = STATE(194), - [sym_strong_begin] = STATE(113), - [sym__hard_line_break] = STATE(194), - [sym_hard_line_break] = STATE(194), - [sym__smart_punctuation] = STATE(194), - [sym_autolink] = STATE(194), - [sym_highlighted] = STATE(194), - [sym_insert] = STATE(194), - [sym_delete] = STATE(194), - [sym_superscript] = STATE(194), - [sym_subscript] = STATE(194), - [sym_footnote_reference] = STATE(194), - [sym__image] = STATE(194), - [sym_full_reference_image] = STATE(194), - [sym_collapsed_reference_image] = STATE(194), - [sym_inline_image] = STATE(194), - [sym__image_description] = STATE(696), - [sym__link] = STATE(194), - [sym_full_reference_link] = STATE(194), - [sym_collapsed_reference_link] = STATE(194), - [sym_inline_link] = STATE(194), - [sym_link_text] = STATE(695), - [sym__comment_with_spaces] = STATE(194), - [sym_span] = STATE(194), - [sym_raw_inline] = STATE(194), - [sym_math] = STATE(194), - [sym_verbatim] = STATE(194), - [sym__todo_highlights] = STATE(194), - [sym_todo] = STATE(194), - [sym_note] = STATE(194), - [sym__symbol_fallback] = STATE(194), - [aux_sym__text] = STATE(170), - [aux_sym__inline_repeat1] = STATE(102), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(351), - [anon_sym__] = ACTIONS(354), - [anon_sym_LBRACE_STAR] = ACTIONS(357), - [anon_sym_STAR] = ACTIONS(360), - [anon_sym_BSLASH] = ACTIONS(363), - [sym_quotation_marks] = ACTIONS(366), - [sym_ellipsis] = ACTIONS(366), - [sym_em_dash] = ACTIONS(366), - [sym_en_dash] = ACTIONS(369), - [sym_backslash_escape] = ACTIONS(369), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_LBRACE_EQ] = ACTIONS(375), - [anon_sym_LBRACE_PLUS] = ACTIONS(378), - [anon_sym_LBRACE_DASH] = ACTIONS(381), - [sym_symbol] = ACTIONS(366), - [anon_sym_LBRACE_CARET] = ACTIONS(384), - [anon_sym_CARET] = ACTIONS(495), - [anon_sym_CARET_RBRACE] = ACTIONS(93), - [anon_sym_LBRACE_TILDE] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_LBRACK_CARET] = ACTIONS(390), - [anon_sym_BANG_LBRACK] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(396), - [anon_sym_LBRACE2] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(399), - [anon_sym_TODO] = ACTIONS(402), - [anon_sym_WIP] = ACTIONS(402), - [anon_sym_NOTE] = ACTIONS(405), - [anon_sym_INFO] = ACTIONS(405), - [anon_sym_XXX] = ACTIONS(405), - [sym_fixme] = ACTIONS(366), - [anon_sym_PIPE] = ACTIONS(366), - [sym__whitespace1] = ACTIONS(408), - [sym__newline] = ACTIONS(411), - [aux_sym__text_token1] = ACTIONS(414), - [sym__verbatim_begin] = ACTIONS(417), - }, - [24] = { - [sym__inline] = STATE(739), - [sym__element] = STATE(114), - [sym_emphasis] = STATE(181), - [sym_emphasis_begin] = STATE(1004), - [sym_strong] = STATE(181), - [sym_strong_begin] = STATE(110), - [sym__hard_line_break] = STATE(181), - [sym_hard_line_break] = STATE(181), - [sym__smart_punctuation] = STATE(181), - [sym_autolink] = STATE(181), - [sym_highlighted] = STATE(181), - [sym_insert] = STATE(181), - [sym_delete] = STATE(181), - [sym_superscript] = STATE(181), - [sym_subscript] = STATE(181), - [sym_footnote_reference] = STATE(181), - [sym__image] = STATE(181), - [sym_full_reference_image] = STATE(181), - [sym_collapsed_reference_image] = STATE(181), - [sym_inline_image] = STATE(181), - [sym__image_description] = STATE(688), - [sym__link] = STATE(181), - [sym_full_reference_link] = STATE(181), - [sym_collapsed_reference_link] = STATE(181), - [sym_inline_link] = STATE(181), - [sym_link_text] = STATE(693), - [sym__comment_with_spaces] = STATE(181), - [sym_span] = STATE(181), - [sym_raw_inline] = STATE(181), - [sym_math] = STATE(181), - [sym_verbatim] = STATE(181), - [sym__todo_highlights] = STATE(181), - [sym_todo] = STATE(181), - [sym_note] = STATE(181), - [sym__symbol_fallback] = STATE(181), - [aux_sym__text] = STATE(153), - [aux_sym__inline_repeat1] = STATE(114), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(420), - [anon_sym__] = ACTIONS(423), - [anon_sym_LBRACE_STAR] = ACTIONS(426), - [anon_sym_STAR] = ACTIONS(429), - [anon_sym_BSLASH] = ACTIONS(432), - [sym_quotation_marks] = ACTIONS(435), - [sym_ellipsis] = ACTIONS(435), - [sym_em_dash] = ACTIONS(435), - [sym_en_dash] = ACTIONS(438), - [sym_backslash_escape] = ACTIONS(438), - [anon_sym_LT] = ACTIONS(441), - [anon_sym_LBRACE_EQ] = ACTIONS(444), - [anon_sym_LBRACE_PLUS] = ACTIONS(447), - [anon_sym_LBRACE_DASH] = ACTIONS(450), - [sym_symbol] = ACTIONS(435), - [anon_sym_LBRACE_CARET] = ACTIONS(453), - [anon_sym_CARET] = ACTIONS(498), - [anon_sym_CARET_RBRACE] = ACTIONS(93), - [anon_sym_LBRACE_TILDE] = ACTIONS(456), - [anon_sym_TILDE] = ACTIONS(456), - [anon_sym_LBRACK_CARET] = ACTIONS(459), - [anon_sym_BANG_LBRACK] = ACTIONS(462), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_LBRACE2] = ACTIONS(438), - [anon_sym_DOLLAR] = ACTIONS(468), - [anon_sym_TODO] = ACTIONS(471), - [anon_sym_WIP] = ACTIONS(471), - [anon_sym_NOTE] = ACTIONS(474), - [anon_sym_INFO] = ACTIONS(474), - [anon_sym_XXX] = ACTIONS(474), - [sym_fixme] = ACTIONS(435), - [anon_sym_PIPE] = ACTIONS(435), - [sym__whitespace1] = ACTIONS(477), - [sym__newline] = ACTIONS(480), - [aux_sym__text_token1] = ACTIONS(483), - [sym__verbatim_begin] = ACTIONS(486), - }, - [25] = { - [sym__inline] = STATE(921), - [sym__element] = STATE(118), - [sym_emphasis] = STATE(201), - [sym_emphasis_begin] = STATE(1005), - [sym_strong] = STATE(201), - [sym_strong_begin] = STATE(105), - [sym__hard_line_break] = STATE(201), - [sym_hard_line_break] = STATE(201), - [sym__smart_punctuation] = STATE(201), - [sym_autolink] = STATE(201), - [sym_highlighted] = STATE(201), - [sym_insert] = STATE(201), - [sym_delete] = STATE(201), - [sym_superscript] = STATE(201), - [sym_subscript] = STATE(201), - [sym_footnote_reference] = STATE(201), - [sym__image] = STATE(201), - [sym_full_reference_image] = STATE(201), - [sym_collapsed_reference_image] = STATE(201), - [sym_inline_image] = STATE(201), - [sym__image_description] = STATE(712), - [sym__link] = STATE(201), - [sym_full_reference_link] = STATE(201), - [sym_collapsed_reference_link] = STATE(201), - [sym_inline_link] = STATE(201), - [sym_link_text] = STATE(717), - [sym__comment_with_spaces] = STATE(201), - [sym_span] = STATE(201), - [sym_raw_inline] = STATE(201), - [sym_math] = STATE(201), - [sym_verbatim] = STATE(201), - [sym__todo_highlights] = STATE(201), - [sym_todo] = STATE(201), - [sym_note] = STATE(201), - [sym__symbol_fallback] = STATE(201), + [sym__inline] = STATE(1047), + [sym__element] = STATE(106), + [sym_emphasis] = STATE(211), + [sym_emphasis_begin] = STATE(1060), + [sym_strong] = STATE(211), + [sym_strong_begin] = STATE(1061), + [sym_superscript] = STATE(211), + [sym_superscript_begin] = STATE(1062), + [sym_subscript] = STATE(211), + [sym_subscript_begin] = STATE(1063), + [sym_highlighted] = STATE(211), + [sym_highlighted_begin] = STATE(1064), + [sym_insert] = STATE(211), + [sym_insert_begin] = STATE(1065), + [sym_delete] = STATE(211), + [sym_delete_begin] = STATE(1066), + [sym_hard_line_break] = STATE(211), + [sym__smart_punctuation] = STATE(211), + [sym_autolink] = STATE(211), + [sym_footnote_reference] = STATE(211), + [sym__image] = STATE(211), + [sym_full_reference_image] = STATE(211), + [sym_collapsed_reference_image] = STATE(211), + [sym_inline_image] = STATE(211), + [sym__image_description] = STATE(671), + [sym__link] = STATE(211), + [sym_full_reference_link] = STATE(211), + [sym_collapsed_reference_link] = STATE(211), + [sym_inline_link] = STATE(211), + [sym_link_text] = STATE(676), + [sym__comment_with_spaces] = STATE(211), + [sym_span] = STATE(211), + [sym_raw_inline] = STATE(211), + [sym_math] = STATE(211), + [sym_verbatim] = STATE(211), + [sym__todo_highlights] = STATE(211), + [sym_todo] = STATE(211), + [sym_note] = STATE(211), + [sym__symbol_fallback] = STATE(211), [aux_sym__text] = STATE(139), - [aux_sym__inline_repeat1] = STATE(118), + [aux_sym__inline_repeat1] = STATE(106), [anon_sym_LBRACE] = ACTIONS(49), [anon_sym_LBRACE_] = ACTIONS(51), [anon_sym__] = ACTIONS(54), [anon_sym_LBRACE_STAR] = ACTIONS(57), [anon_sym_STAR] = ACTIONS(60), - [anon_sym_BSLASH] = ACTIONS(63), - [sym_quotation_marks] = ACTIONS(66), - [sym_ellipsis] = ACTIONS(66), - [sym_em_dash] = ACTIONS(66), - [sym_en_dash] = ACTIONS(69), - [sym_backslash_escape] = ACTIONS(69), - [anon_sym_LT] = ACTIONS(72), - [anon_sym_LBRACE_EQ] = ACTIONS(75), - [anon_sym_LBRACE_PLUS] = ACTIONS(78), - [anon_sym_PLUS_RBRACE] = ACTIONS(93), - [anon_sym_LBRACE_DASH] = ACTIONS(81), - [sym_symbol] = ACTIONS(66), - [anon_sym_LBRACE_CARET] = ACTIONS(84), - [anon_sym_CARET] = ACTIONS(84), - [anon_sym_LBRACE_TILDE] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(87), - [anon_sym_LBRACK_CARET] = ACTIONS(95), - [anon_sym_BANG_LBRACK] = ACTIONS(100), - [anon_sym_LBRACK] = ACTIONS(103), - [anon_sym_LBRACE2] = ACTIONS(69), - [anon_sym_DOLLAR] = ACTIONS(106), - [anon_sym_TODO] = ACTIONS(109), - [anon_sym_WIP] = ACTIONS(109), - [anon_sym_NOTE] = ACTIONS(112), - [anon_sym_INFO] = ACTIONS(112), - [anon_sym_XXX] = ACTIONS(112), - [sym_fixme] = ACTIONS(66), - [anon_sym_PIPE] = ACTIONS(66), - [sym__whitespace1] = ACTIONS(115), - [sym__newline] = ACTIONS(118), - [aux_sym__text_token1] = ACTIONS(121), - [sym__verbatim_begin] = ACTIONS(124), + [anon_sym_LBRACE_CARET] = ACTIONS(63), + [anon_sym_CARET] = ACTIONS(63), + [anon_sym_LBRACE_TILDE] = ACTIONS(66), + [anon_sym_TILDE] = ACTIONS(66), + [anon_sym_LBRACE_EQ] = ACTIONS(69), + [anon_sym_LBRACE_PLUS] = ACTIONS(72), + [anon_sym_LBRACE_DASH] = ACTIONS(75), + [anon_sym_BSLASH] = ACTIONS(78), + [sym_quotation_marks] = ACTIONS(81), + [sym_ellipsis] = ACTIONS(81), + [sym_em_dash] = ACTIONS(81), + [sym_en_dash] = ACTIONS(84), + [sym_backslash_escape] = ACTIONS(84), + [anon_sym_LT] = ACTIONS(87), + [sym_symbol] = ACTIONS(81), + [anon_sym_LBRACK_CARET] = ACTIONS(90), + [anon_sym_BANG_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(98), + [anon_sym_LBRACE2] = ACTIONS(84), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_TODO] = ACTIONS(106), + [anon_sym_WIP] = ACTIONS(106), + [anon_sym_NOTE] = ACTIONS(109), + [anon_sym_INFO] = ACTIONS(109), + [anon_sym_XXX] = ACTIONS(109), + [sym_fixme] = ACTIONS(81), + [sym__whitespace1] = ACTIONS(112), + [sym__newline] = ACTIONS(115), + [aux_sym__text_token1] = ACTIONS(118), + [sym__verbatim_begin] = ACTIONS(121), + }, + [24] = { + [sym__inline] = STATE(899), + [sym__element] = STATE(115), + [sym_emphasis] = STATE(192), + [sym_emphasis_begin] = STATE(1095), + [sym_strong] = STATE(192), + [sym_strong_begin] = STATE(1096), + [sym_superscript] = STATE(192), + [sym_superscript_begin] = STATE(1097), + [sym_subscript] = STATE(192), + [sym_subscript_begin] = STATE(1098), + [sym_highlighted] = STATE(192), + [sym_highlighted_begin] = STATE(1099), + [sym_insert] = STATE(192), + [sym_insert_begin] = STATE(1100), + [sym_delete] = STATE(192), + [sym_delete_begin] = STATE(1101), + [sym_hard_line_break] = STATE(192), + [sym__smart_punctuation] = STATE(192), + [sym_autolink] = STATE(192), + [sym_footnote_reference] = STATE(192), + [sym__image] = STATE(192), + [sym_full_reference_image] = STATE(192), + [sym_collapsed_reference_image] = STATE(192), + [sym_inline_image] = STATE(192), + [sym__image_description] = STATE(684), + [sym__link] = STATE(192), + [sym_full_reference_link] = STATE(192), + [sym_collapsed_reference_link] = STATE(192), + [sym_inline_link] = STATE(192), + [sym_link_text] = STATE(683), + [sym__comment_with_spaces] = STATE(192), + [sym_span] = STATE(192), + [sym_raw_inline] = STATE(192), + [sym_math] = STATE(192), + [sym_verbatim] = STATE(192), + [sym__todo_highlights] = STATE(192), + [sym_todo] = STATE(192), + [sym_note] = STATE(192), + [sym__symbol_fallback] = STATE(192), + [aux_sym__text] = STATE(141), + [aux_sym__inline_repeat1] = STATE(115), + [anon_sym_LBRACE_] = ACTIONS(129), + [anon_sym__] = ACTIONS(131), + [anon_sym_LBRACE_STAR] = ACTIONS(133), + [anon_sym_STAR] = ACTIONS(135), + [anon_sym_LBRACE_CARET] = ACTIONS(137), + [anon_sym_CARET] = ACTIONS(137), + [anon_sym_LBRACE_TILDE] = ACTIONS(139), + [anon_sym_TILDE] = ACTIONS(139), + [anon_sym_LBRACE_EQ] = ACTIONS(141), + [anon_sym_LBRACE_PLUS] = ACTIONS(143), + [anon_sym_LBRACE_DASH] = ACTIONS(145), + [anon_sym_BSLASH] = ACTIONS(147), + [sym_quotation_marks] = ACTIONS(149), + [sym_ellipsis] = ACTIONS(149), + [sym_em_dash] = ACTIONS(149), + [sym_en_dash] = ACTIONS(151), + [sym_backslash_escape] = ACTIONS(151), + [anon_sym_LT] = ACTIONS(153), + [sym_symbol] = ACTIONS(149), + [anon_sym_LBRACK_CARET] = ACTIONS(155), + [anon_sym_BANG_LBRACK] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LBRACE2] = ACTIONS(151), + [anon_sym_DOLLAR] = ACTIONS(161), + [anon_sym_TODO] = ACTIONS(163), + [anon_sym_WIP] = ACTIONS(163), + [anon_sym_NOTE] = ACTIONS(165), + [anon_sym_INFO] = ACTIONS(165), + [anon_sym_XXX] = ACTIONS(165), + [sym_fixme] = ACTIONS(149), + [sym__whitespace1] = ACTIONS(167), + [sym__newline] = ACTIONS(169), + [aux_sym__text_token1] = ACTIONS(171), + [sym__verbatim_begin] = ACTIONS(173), + }, + [25] = { + [sym__inline_without_trailing_space] = STATE(918), + [sym__element] = STATE(572), + [sym_emphasis] = STATE(208), + [sym_emphasis_begin] = STATE(1074), + [sym_strong] = STATE(208), + [sym_strong_begin] = STATE(1075), + [sym_superscript] = STATE(208), + [sym_superscript_begin] = STATE(1076), + [sym_subscript] = STATE(208), + [sym_subscript_begin] = STATE(1077), + [sym_highlighted] = STATE(208), + [sym_highlighted_begin] = STATE(1078), + [sym_insert] = STATE(208), + [sym_insert_begin] = STATE(1079), + [sym_delete] = STATE(208), + [sym_delete_begin] = STATE(1080), + [sym_hard_line_break] = STATE(208), + [sym__smart_punctuation] = STATE(208), + [sym_autolink] = STATE(208), + [sym_footnote_reference] = STATE(208), + [sym__image] = STATE(208), + [sym_full_reference_image] = STATE(208), + [sym_collapsed_reference_image] = STATE(208), + [sym_inline_image] = STATE(208), + [sym__image_description] = STATE(680), + [sym__link] = STATE(208), + [sym_full_reference_link] = STATE(208), + [sym_collapsed_reference_link] = STATE(208), + [sym_inline_link] = STATE(208), + [sym_link_text] = STATE(663), + [sym__comment_with_spaces] = STATE(208), + [sym_span] = STATE(208), + [sym_raw_inline] = STATE(208), + [sym_math] = STATE(208), + [sym_verbatim] = STATE(208), + [sym__todo_highlights] = STATE(208), + [sym_todo] = STATE(208), + [sym_note] = STATE(208), + [sym__symbol_fallback] = STATE(208), + [aux_sym__text] = STATE(131), + [aux_sym__inline_repeat1] = STATE(130), + [anon_sym_LBRACE_] = ACTIONS(175), + [anon_sym__] = ACTIONS(177), + [anon_sym_LBRACE_STAR] = ACTIONS(179), + [anon_sym_STAR] = ACTIONS(181), + [anon_sym_LBRACE_CARET] = ACTIONS(183), + [anon_sym_CARET] = ACTIONS(183), + [anon_sym_LBRACE_TILDE] = ACTIONS(185), + [anon_sym_TILDE] = ACTIONS(185), + [anon_sym_LBRACE_EQ] = ACTIONS(187), + [anon_sym_LBRACE_PLUS] = ACTIONS(189), + [anon_sym_LBRACE_DASH] = ACTIONS(191), + [anon_sym_BSLASH] = ACTIONS(193), + [sym_quotation_marks] = ACTIONS(195), + [sym_ellipsis] = ACTIONS(195), + [sym_em_dash] = ACTIONS(195), + [sym_en_dash] = ACTIONS(197), + [sym_backslash_escape] = ACTIONS(197), + [anon_sym_LT] = ACTIONS(199), + [sym_symbol] = ACTIONS(195), + [anon_sym_LBRACK_CARET] = ACTIONS(201), + [anon_sym_BANG_LBRACK] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACE2] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(207), + [anon_sym_TODO] = ACTIONS(209), + [anon_sym_WIP] = ACTIONS(209), + [anon_sym_NOTE] = ACTIONS(211), + [anon_sym_INFO] = ACTIONS(211), + [anon_sym_XXX] = ACTIONS(211), + [sym_fixme] = ACTIONS(195), + [sym__whitespace1] = ACTIONS(213), + [sym__newline] = ACTIONS(215), + [aux_sym__text_token1] = ACTIONS(217), + [sym__verbatim_begin] = ACTIONS(219), }, [26] = { - [sym__inline] = STATE(787), - [sym__element] = STATE(114), - [sym_emphasis] = STATE(181), - [sym_emphasis_begin] = STATE(1004), - [sym_strong] = STATE(181), - [sym_strong_begin] = STATE(110), - [sym__hard_line_break] = STATE(181), - [sym_hard_line_break] = STATE(181), - [sym__smart_punctuation] = STATE(181), - [sym_autolink] = STATE(181), - [sym_highlighted] = STATE(181), - [sym_insert] = STATE(181), - [sym_delete] = STATE(181), - [sym_superscript] = STATE(181), - [sym_subscript] = STATE(181), - [sym_footnote_reference] = STATE(181), - [sym__image] = STATE(181), - [sym_full_reference_image] = STATE(181), - [sym_collapsed_reference_image] = STATE(181), - [sym_inline_image] = STATE(181), - [sym__image_description] = STATE(688), - [sym__link] = STATE(181), - [sym_full_reference_link] = STATE(181), - [sym_collapsed_reference_link] = STATE(181), - [sym_inline_link] = STATE(181), - [sym_link_text] = STATE(693), - [sym__comment_with_spaces] = STATE(181), - [sym_span] = STATE(181), - [sym_raw_inline] = STATE(181), - [sym_math] = STATE(181), - [sym_verbatim] = STATE(181), - [sym__todo_highlights] = STATE(181), - [sym_todo] = STATE(181), - [sym_note] = STATE(181), - [sym__symbol_fallback] = STATE(181), - [aux_sym__text] = STATE(153), - [aux_sym__inline_repeat1] = STATE(114), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(420), - [anon_sym__] = ACTIONS(423), - [anon_sym_LBRACE_STAR] = ACTIONS(426), - [anon_sym_STAR] = ACTIONS(429), - [anon_sym_BSLASH] = ACTIONS(432), - [sym_quotation_marks] = ACTIONS(435), - [sym_ellipsis] = ACTIONS(435), - [sym_em_dash] = ACTIONS(435), - [sym_en_dash] = ACTIONS(438), - [sym_backslash_escape] = ACTIONS(438), - [anon_sym_LT] = ACTIONS(441), - [anon_sym_LBRACE_EQ] = ACTIONS(444), - [anon_sym_LBRACE_PLUS] = ACTIONS(447), - [anon_sym_PLUS_RBRACE] = ACTIONS(93), - [anon_sym_LBRACE_DASH] = ACTIONS(450), - [sym_symbol] = ACTIONS(435), - [anon_sym_LBRACE_CARET] = ACTIONS(453), - [anon_sym_CARET] = ACTIONS(453), - [anon_sym_LBRACE_TILDE] = ACTIONS(456), - [anon_sym_TILDE] = ACTIONS(456), - [anon_sym_LBRACK_CARET] = ACTIONS(459), - [anon_sym_BANG_LBRACK] = ACTIONS(462), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_LBRACE2] = ACTIONS(438), - [anon_sym_DOLLAR] = ACTIONS(468), - [anon_sym_TODO] = ACTIONS(471), - [anon_sym_WIP] = ACTIONS(471), - [anon_sym_NOTE] = ACTIONS(474), - [anon_sym_INFO] = ACTIONS(474), - [anon_sym_XXX] = ACTIONS(474), - [sym_fixme] = ACTIONS(435), - [anon_sym_PIPE] = ACTIONS(435), - [sym__whitespace1] = ACTIONS(477), - [sym__newline] = ACTIONS(480), - [aux_sym__text_token1] = ACTIONS(483), - [sym__verbatim_begin] = ACTIONS(486), + [sym__inline] = STATE(864), + [sym__element] = STATE(103), + [sym_emphasis] = STATE(180), + [sym_emphasis_begin] = STATE(1109), + [sym_strong] = STATE(180), + [sym_strong_begin] = STATE(1110), + [sym_superscript] = STATE(180), + [sym_superscript_begin] = STATE(1111), + [sym_subscript] = STATE(180), + [sym_subscript_begin] = STATE(1112), + [sym_highlighted] = STATE(180), + [sym_highlighted_begin] = STATE(1113), + [sym_insert] = STATE(180), + [sym_insert_begin] = STATE(1114), + [sym_delete] = STATE(180), + [sym_delete_begin] = STATE(1115), + [sym_hard_line_break] = STATE(180), + [sym__smart_punctuation] = STATE(180), + [sym_autolink] = STATE(180), + [sym_footnote_reference] = STATE(180), + [sym__image] = STATE(180), + [sym_full_reference_image] = STATE(180), + [sym_collapsed_reference_image] = STATE(180), + [sym_inline_image] = STATE(180), + [sym__image_description] = STATE(666), + [sym__link] = STATE(180), + [sym_full_reference_link] = STATE(180), + [sym_collapsed_reference_link] = STATE(180), + [sym_inline_link] = STATE(180), + [sym_link_text] = STATE(664), + [sym__comment_with_spaces] = STATE(180), + [sym_span] = STATE(180), + [sym_raw_inline] = STATE(180), + [sym_math] = STATE(180), + [sym_verbatim] = STATE(180), + [sym__todo_highlights] = STATE(180), + [sym_todo] = STATE(180), + [sym_note] = STATE(180), + [sym__symbol_fallback] = STATE(180), + [aux_sym__text] = STATE(159), + [aux_sym__inline_repeat1] = STATE(103), + [anon_sym_LBRACE_] = ACTIONS(221), + [anon_sym__] = ACTIONS(223), + [anon_sym_LBRACE_STAR] = ACTIONS(225), + [anon_sym_STAR] = ACTIONS(227), + [anon_sym_LBRACE_CARET] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym_LBRACE_TILDE] = ACTIONS(231), + [anon_sym_TILDE] = ACTIONS(231), + [anon_sym_LBRACE_EQ] = ACTIONS(233), + [anon_sym_LBRACE_PLUS] = ACTIONS(235), + [anon_sym_LBRACE_DASH] = ACTIONS(237), + [anon_sym_BSLASH] = ACTIONS(239), + [sym_quotation_marks] = ACTIONS(241), + [sym_ellipsis] = ACTIONS(241), + [sym_em_dash] = ACTIONS(241), + [sym_en_dash] = ACTIONS(243), + [sym_backslash_escape] = ACTIONS(243), + [anon_sym_LT] = ACTIONS(245), + [sym_symbol] = ACTIONS(241), + [anon_sym_LBRACK_CARET] = ACTIONS(247), + [anon_sym_BANG_LBRACK] = ACTIONS(249), + [anon_sym_LBRACK] = ACTIONS(251), + [anon_sym_LBRACE2] = ACTIONS(243), + [anon_sym_DOLLAR] = ACTIONS(253), + [anon_sym_TODO] = ACTIONS(255), + [anon_sym_WIP] = ACTIONS(255), + [anon_sym_NOTE] = ACTIONS(257), + [anon_sym_INFO] = ACTIONS(257), + [anon_sym_XXX] = ACTIONS(257), + [sym_fixme] = ACTIONS(241), + [sym__whitespace1] = ACTIONS(259), + [sym__newline] = ACTIONS(261), + [aux_sym__text_token1] = ACTIONS(263), + [sym__verbatim_begin] = ACTIONS(265), }, [27] = { - [sym__inline] = STATE(780), - [sym__element] = STATE(102), - [sym_emphasis] = STATE(194), - [sym_emphasis_begin] = STATE(1003), - [sym_strong] = STATE(194), - [sym_strong_begin] = STATE(113), - [sym__hard_line_break] = STATE(194), - [sym_hard_line_break] = STATE(194), - [sym__smart_punctuation] = STATE(194), - [sym_autolink] = STATE(194), - [sym_highlighted] = STATE(194), - [sym_insert] = STATE(194), - [sym_delete] = STATE(194), - [sym_superscript] = STATE(194), - [sym_subscript] = STATE(194), - [sym_footnote_reference] = STATE(194), - [sym__image] = STATE(194), - [sym_full_reference_image] = STATE(194), - [sym_collapsed_reference_image] = STATE(194), - [sym_inline_image] = STATE(194), - [sym__image_description] = STATE(696), - [sym__link] = STATE(194), - [sym_full_reference_link] = STATE(194), - [sym_collapsed_reference_link] = STATE(194), - [sym_inline_link] = STATE(194), - [sym_link_text] = STATE(695), - [sym__comment_with_spaces] = STATE(194), - [sym_span] = STATE(194), - [sym_raw_inline] = STATE(194), - [sym_math] = STATE(194), - [sym_verbatim] = STATE(194), - [sym__todo_highlights] = STATE(194), - [sym_todo] = STATE(194), - [sym_note] = STATE(194), - [sym__symbol_fallback] = STATE(194), - [aux_sym__text] = STATE(170), - [aux_sym__inline_repeat1] = STATE(102), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(351), - [anon_sym__] = ACTIONS(354), - [anon_sym_LBRACE_STAR] = ACTIONS(357), - [anon_sym_STAR] = ACTIONS(360), - [anon_sym_BSLASH] = ACTIONS(363), - [sym_quotation_marks] = ACTIONS(366), - [sym_ellipsis] = ACTIONS(366), - [sym_em_dash] = ACTIONS(366), - [sym_en_dash] = ACTIONS(369), - [sym_backslash_escape] = ACTIONS(369), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_LBRACE_EQ] = ACTIONS(375), - [anon_sym_LBRACE_PLUS] = ACTIONS(378), - [anon_sym_PLUS_RBRACE] = ACTIONS(93), - [anon_sym_LBRACE_DASH] = ACTIONS(381), - [sym_symbol] = ACTIONS(366), - [anon_sym_LBRACE_CARET] = ACTIONS(384), - [anon_sym_CARET] = ACTIONS(384), - [anon_sym_LBRACE_TILDE] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_LBRACK_CARET] = ACTIONS(390), - [anon_sym_BANG_LBRACK] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(396), - [anon_sym_LBRACE2] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(399), - [anon_sym_TODO] = ACTIONS(402), - [anon_sym_WIP] = ACTIONS(402), - [anon_sym_NOTE] = ACTIONS(405), - [anon_sym_INFO] = ACTIONS(405), - [anon_sym_XXX] = ACTIONS(405), - [sym_fixme] = ACTIONS(366), - [anon_sym_PIPE] = ACTIONS(366), - [sym__whitespace1] = ACTIONS(408), - [sym__newline] = ACTIONS(411), - [aux_sym__text_token1] = ACTIONS(414), - [sym__verbatim_begin] = ACTIONS(417), + [sym__inline] = STATE(863), + [sym__element] = STATE(111), + [sym_emphasis] = STATE(186), + [sym_emphasis_begin] = STATE(1102), + [sym_strong] = STATE(186), + [sym_strong_begin] = STATE(1103), + [sym_superscript] = STATE(186), + [sym_superscript_begin] = STATE(1104), + [sym_subscript] = STATE(186), + [sym_subscript_begin] = STATE(1105), + [sym_highlighted] = STATE(186), + [sym_highlighted_begin] = STATE(1106), + [sym_insert] = STATE(186), + [sym_insert_begin] = STATE(1107), + [sym_delete] = STATE(186), + [sym_delete_begin] = STATE(1108), + [sym_hard_line_break] = STATE(186), + [sym__smart_punctuation] = STATE(186), + [sym_autolink] = STATE(186), + [sym_footnote_reference] = STATE(186), + [sym__image] = STATE(186), + [sym_full_reference_image] = STATE(186), + [sym_collapsed_reference_image] = STATE(186), + [sym_inline_image] = STATE(186), + [sym__image_description] = STATE(673), + [sym__link] = STATE(186), + [sym_full_reference_link] = STATE(186), + [sym_collapsed_reference_link] = STATE(186), + [sym_inline_link] = STATE(186), + [sym_link_text] = STATE(672), + [sym__comment_with_spaces] = STATE(186), + [sym_span] = STATE(186), + [sym_raw_inline] = STATE(186), + [sym_math] = STATE(186), + [sym_verbatim] = STATE(186), + [sym__todo_highlights] = STATE(186), + [sym_todo] = STATE(186), + [sym_note] = STATE(186), + [sym__symbol_fallback] = STATE(186), + [aux_sym__text] = STATE(155), + [aux_sym__inline_repeat1] = STATE(111), + [anon_sym_LBRACE_] = ACTIONS(267), + [anon_sym__] = ACTIONS(269), + [anon_sym_LBRACE_STAR] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_LBRACE_CARET] = ACTIONS(275), + [anon_sym_CARET] = ACTIONS(275), + [anon_sym_LBRACE_TILDE] = ACTIONS(277), + [anon_sym_TILDE] = ACTIONS(277), + [anon_sym_LBRACE_EQ] = ACTIONS(279), + [anon_sym_LBRACE_PLUS] = ACTIONS(281), + [anon_sym_LBRACE_DASH] = ACTIONS(283), + [anon_sym_BSLASH] = ACTIONS(285), + [sym_quotation_marks] = ACTIONS(287), + [sym_ellipsis] = ACTIONS(287), + [sym_em_dash] = ACTIONS(287), + [sym_en_dash] = ACTIONS(289), + [sym_backslash_escape] = ACTIONS(289), + [anon_sym_LT] = ACTIONS(291), + [sym_symbol] = ACTIONS(287), + [anon_sym_LBRACK_CARET] = ACTIONS(293), + [anon_sym_BANG_LBRACK] = ACTIONS(295), + [anon_sym_LBRACK] = ACTIONS(297), + [anon_sym_LBRACE2] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(299), + [anon_sym_TODO] = ACTIONS(301), + [anon_sym_WIP] = ACTIONS(301), + [anon_sym_NOTE] = ACTIONS(303), + [anon_sym_INFO] = ACTIONS(303), + [anon_sym_XXX] = ACTIONS(303), + [sym_fixme] = ACTIONS(287), + [sym__whitespace1] = ACTIONS(305), + [sym__newline] = ACTIONS(307), + [aux_sym__text_token1] = ACTIONS(309), + [sym__verbatim_begin] = ACTIONS(311), }, [28] = { - [sym__inline] = STATE(867), - [sym__element] = STATE(88), - [sym_emphasis] = STATE(209), - [sym_emphasis_begin] = STATE(1002), - [sym_strong] = STATE(209), - [sym_strong_begin] = STATE(121), - [sym__hard_line_break] = STATE(209), - [sym_hard_line_break] = STATE(209), - [sym__smart_punctuation] = STATE(209), - [sym_autolink] = STATE(209), - [sym_highlighted] = STATE(209), - [sym_insert] = STATE(209), - [sym_delete] = STATE(209), - [sym_superscript] = STATE(209), - [sym_subscript] = STATE(209), - [sym_footnote_reference] = STATE(209), - [sym__image] = STATE(209), - [sym_full_reference_image] = STATE(209), - [sym_collapsed_reference_image] = STATE(209), - [sym_inline_image] = STATE(209), - [sym__image_description] = STATE(706), - [sym__link] = STATE(209), - [sym_full_reference_link] = STATE(209), - [sym_collapsed_reference_link] = STATE(209), - [sym_inline_link] = STATE(209), - [sym_link_text] = STATE(707), - [sym__comment_with_spaces] = STATE(209), - [sym_span] = STATE(209), - [sym_raw_inline] = STATE(209), - [sym_math] = STATE(209), - [sym_verbatim] = STATE(209), - [sym__todo_highlights] = STATE(209), - [sym_todo] = STATE(209), - [sym_note] = STATE(209), - [sym__symbol_fallback] = STATE(209), - [aux_sym__text] = STATE(150), - [aux_sym__inline_repeat1] = STATE(88), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(282), - [anon_sym__] = ACTIONS(285), - [anon_sym_LBRACE_STAR] = ACTIONS(288), - [anon_sym_STAR] = ACTIONS(291), - [anon_sym_BSLASH] = ACTIONS(294), - [sym_quotation_marks] = ACTIONS(297), - [sym_ellipsis] = ACTIONS(297), - [sym_em_dash] = ACTIONS(297), - [sym_en_dash] = ACTIONS(300), - [sym_backslash_escape] = ACTIONS(300), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACE_EQ] = ACTIONS(306), - [anon_sym_LBRACE_PLUS] = ACTIONS(309), - [anon_sym_PLUS_RBRACE] = ACTIONS(93), - [anon_sym_LBRACE_DASH] = ACTIONS(312), - [sym_symbol] = ACTIONS(297), - [anon_sym_LBRACE_CARET] = ACTIONS(315), - [anon_sym_CARET] = ACTIONS(315), - [anon_sym_LBRACE_TILDE] = ACTIONS(318), - [anon_sym_TILDE] = ACTIONS(318), - [anon_sym_LBRACK_CARET] = ACTIONS(321), - [anon_sym_BANG_LBRACK] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(327), - [anon_sym_LBRACE2] = ACTIONS(300), - [anon_sym_DOLLAR] = ACTIONS(330), - [anon_sym_TODO] = ACTIONS(333), - [anon_sym_WIP] = ACTIONS(333), - [anon_sym_NOTE] = ACTIONS(336), - [anon_sym_INFO] = ACTIONS(336), - [anon_sym_XXX] = ACTIONS(336), - [sym_fixme] = ACTIONS(297), - [anon_sym_PIPE] = ACTIONS(297), - [sym__whitespace1] = ACTIONS(339), - [sym__newline] = ACTIONS(342), - [aux_sym__text_token1] = ACTIONS(345), - [sym__verbatim_begin] = ACTIONS(348), + [sym__inline] = STATE(862), + [sym__element] = STATE(115), + [sym_emphasis] = STATE(192), + [sym_emphasis_begin] = STATE(1095), + [sym_strong] = STATE(192), + [sym_strong_begin] = STATE(1096), + [sym_superscript] = STATE(192), + [sym_superscript_begin] = STATE(1097), + [sym_subscript] = STATE(192), + [sym_subscript_begin] = STATE(1098), + [sym_highlighted] = STATE(192), + [sym_highlighted_begin] = STATE(1099), + [sym_insert] = STATE(192), + [sym_insert_begin] = STATE(1100), + [sym_delete] = STATE(192), + [sym_delete_begin] = STATE(1101), + [sym_hard_line_break] = STATE(192), + [sym__smart_punctuation] = STATE(192), + [sym_autolink] = STATE(192), + [sym_footnote_reference] = STATE(192), + [sym__image] = STATE(192), + [sym_full_reference_image] = STATE(192), + [sym_collapsed_reference_image] = STATE(192), + [sym_inline_image] = STATE(192), + [sym__image_description] = STATE(684), + [sym__link] = STATE(192), + [sym_full_reference_link] = STATE(192), + [sym_collapsed_reference_link] = STATE(192), + [sym_inline_link] = STATE(192), + [sym_link_text] = STATE(683), + [sym__comment_with_spaces] = STATE(192), + [sym_span] = STATE(192), + [sym_raw_inline] = STATE(192), + [sym_math] = STATE(192), + [sym_verbatim] = STATE(192), + [sym__todo_highlights] = STATE(192), + [sym_todo] = STATE(192), + [sym_note] = STATE(192), + [sym__symbol_fallback] = STATE(192), + [aux_sym__text] = STATE(141), + [aux_sym__inline_repeat1] = STATE(115), + [anon_sym_LBRACE_] = ACTIONS(129), + [anon_sym__] = ACTIONS(131), + [anon_sym_LBRACE_STAR] = ACTIONS(133), + [anon_sym_STAR] = ACTIONS(135), + [anon_sym_LBRACE_CARET] = ACTIONS(137), + [anon_sym_CARET] = ACTIONS(137), + [anon_sym_LBRACE_TILDE] = ACTIONS(139), + [anon_sym_TILDE] = ACTIONS(139), + [anon_sym_LBRACE_EQ] = ACTIONS(141), + [anon_sym_LBRACE_PLUS] = ACTIONS(143), + [anon_sym_LBRACE_DASH] = ACTIONS(145), + [anon_sym_BSLASH] = ACTIONS(147), + [sym_quotation_marks] = ACTIONS(149), + [sym_ellipsis] = ACTIONS(149), + [sym_em_dash] = ACTIONS(149), + [sym_en_dash] = ACTIONS(151), + [sym_backslash_escape] = ACTIONS(151), + [anon_sym_LT] = ACTIONS(153), + [sym_symbol] = ACTIONS(149), + [anon_sym_LBRACK_CARET] = ACTIONS(155), + [anon_sym_BANG_LBRACK] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LBRACE2] = ACTIONS(151), + [anon_sym_DOLLAR] = ACTIONS(161), + [anon_sym_TODO] = ACTIONS(163), + [anon_sym_WIP] = ACTIONS(163), + [anon_sym_NOTE] = ACTIONS(165), + [anon_sym_INFO] = ACTIONS(165), + [anon_sym_XXX] = ACTIONS(165), + [sym_fixme] = ACTIONS(149), + [sym__whitespace1] = ACTIONS(167), + [sym__newline] = ACTIONS(169), + [aux_sym__text_token1] = ACTIONS(171), + [sym__verbatim_begin] = ACTIONS(173), }, [29] = { - [sym__inline] = STATE(868), - [sym__element] = STATE(91), - [sym_emphasis] = STATE(174), - [sym_emphasis_begin] = STATE(1001), - [sym_strong] = STATE(174), - [sym_strong_begin] = STATE(126), - [sym__hard_line_break] = STATE(174), - [sym_hard_line_break] = STATE(174), - [sym__smart_punctuation] = STATE(174), - [sym_autolink] = STATE(174), - [sym_highlighted] = STATE(174), - [sym_insert] = STATE(174), - [sym_delete] = STATE(174), - [sym_superscript] = STATE(174), - [sym_subscript] = STATE(174), - [sym_footnote_reference] = STATE(174), - [sym__image] = STATE(174), - [sym_full_reference_image] = STATE(174), - [sym_collapsed_reference_image] = STATE(174), - [sym_inline_image] = STATE(174), - [sym__image_description] = STATE(709), - [sym__link] = STATE(174), - [sym_full_reference_link] = STATE(174), - [sym_collapsed_reference_link] = STATE(174), - [sym_inline_link] = STATE(174), - [sym_link_text] = STATE(710), - [sym__comment_with_spaces] = STATE(174), - [sym_span] = STATE(174), - [sym_raw_inline] = STATE(174), - [sym_math] = STATE(174), - [sym_verbatim] = STATE(174), - [sym__todo_highlights] = STATE(174), - [sym_todo] = STATE(174), - [sym_note] = STATE(174), - [sym__symbol_fallback] = STATE(174), - [aux_sym__text] = STATE(148), - [aux_sym__inline_repeat1] = STATE(91), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(213), - [anon_sym__] = ACTIONS(216), - [anon_sym_LBRACE_STAR] = ACTIONS(219), - [anon_sym_STAR] = ACTIONS(222), - [anon_sym_BSLASH] = ACTIONS(225), - [sym_quotation_marks] = ACTIONS(228), - [sym_ellipsis] = ACTIONS(228), - [sym_em_dash] = ACTIONS(228), - [sym_en_dash] = ACTIONS(231), - [sym_backslash_escape] = ACTIONS(231), - [anon_sym_LT] = ACTIONS(234), - [anon_sym_LBRACE_EQ] = ACTIONS(237), - [anon_sym_LBRACE_PLUS] = ACTIONS(240), - [anon_sym_PLUS_RBRACE] = ACTIONS(93), - [anon_sym_LBRACE_DASH] = ACTIONS(243), - [sym_symbol] = ACTIONS(228), - [anon_sym_LBRACE_CARET] = ACTIONS(246), - [anon_sym_CARET] = ACTIONS(246), - [anon_sym_LBRACE_TILDE] = ACTIONS(249), - [anon_sym_TILDE] = ACTIONS(249), - [anon_sym_LBRACK_CARET] = ACTIONS(252), - [anon_sym_BANG_LBRACK] = ACTIONS(255), - [anon_sym_LBRACK] = ACTIONS(258), - [anon_sym_LBRACE2] = ACTIONS(231), - [anon_sym_DOLLAR] = ACTIONS(261), - [anon_sym_TODO] = ACTIONS(264), - [anon_sym_WIP] = ACTIONS(264), - [anon_sym_NOTE] = ACTIONS(267), - [anon_sym_INFO] = ACTIONS(267), - [anon_sym_XXX] = ACTIONS(267), - [sym_fixme] = ACTIONS(228), - [anon_sym_PIPE] = ACTIONS(228), - [sym__whitespace1] = ACTIONS(270), - [sym__newline] = ACTIONS(273), - [aux_sym__text_token1] = ACTIONS(276), - [sym__verbatim_begin] = ACTIONS(279), + [sym__inline] = STATE(861), + [sym__element] = STATE(93), + [sym_emphasis] = STATE(197), + [sym_emphasis_begin] = STATE(1088), + [sym_strong] = STATE(197), + [sym_strong_begin] = STATE(1089), + [sym_superscript] = STATE(197), + [sym_superscript_begin] = STATE(1090), + [sym_subscript] = STATE(197), + [sym_subscript_begin] = STATE(1091), + [sym_highlighted] = STATE(197), + [sym_highlighted_begin] = STATE(1092), + [sym_insert] = STATE(197), + [sym_insert_begin] = STATE(1093), + [sym_delete] = STATE(197), + [sym_delete_begin] = STATE(1094), + [sym_hard_line_break] = STATE(197), + [sym__smart_punctuation] = STATE(197), + [sym_autolink] = STATE(197), + [sym_footnote_reference] = STATE(197), + [sym__image] = STATE(197), + [sym_full_reference_image] = STATE(197), + [sym_collapsed_reference_image] = STATE(197), + [sym_inline_image] = STATE(197), + [sym__image_description] = STATE(697), + [sym__link] = STATE(197), + [sym_full_reference_link] = STATE(197), + [sym_collapsed_reference_link] = STATE(197), + [sym_inline_link] = STATE(197), + [sym_link_text] = STATE(682), + [sym__comment_with_spaces] = STATE(197), + [sym_span] = STATE(197), + [sym_raw_inline] = STATE(197), + [sym_math] = STATE(197), + [sym_verbatim] = STATE(197), + [sym__todo_highlights] = STATE(197), + [sym_todo] = STATE(197), + [sym_note] = STATE(197), + [sym__symbol_fallback] = STATE(197), + [aux_sym__text] = STATE(134), + [aux_sym__inline_repeat1] = STATE(93), + [anon_sym_LBRACE_] = ACTIONS(313), + [anon_sym__] = ACTIONS(315), + [anon_sym_LBRACE_STAR] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_LBRACE_CARET] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [anon_sym_LBRACE_TILDE] = ACTIONS(323), + [anon_sym_TILDE] = ACTIONS(323), + [anon_sym_LBRACE_EQ] = ACTIONS(325), + [anon_sym_LBRACE_PLUS] = ACTIONS(327), + [anon_sym_LBRACE_DASH] = ACTIONS(329), + [anon_sym_BSLASH] = ACTIONS(331), + [sym_quotation_marks] = ACTIONS(333), + [sym_ellipsis] = ACTIONS(333), + [sym_em_dash] = ACTIONS(333), + [sym_en_dash] = ACTIONS(335), + [sym_backslash_escape] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(337), + [sym_symbol] = ACTIONS(333), + [anon_sym_LBRACK_CARET] = ACTIONS(339), + [anon_sym_BANG_LBRACK] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE2] = ACTIONS(335), + [anon_sym_DOLLAR] = ACTIONS(345), + [anon_sym_TODO] = ACTIONS(347), + [anon_sym_WIP] = ACTIONS(347), + [anon_sym_NOTE] = ACTIONS(349), + [anon_sym_INFO] = ACTIONS(349), + [anon_sym_XXX] = ACTIONS(349), + [sym_fixme] = ACTIONS(333), + [sym__whitespace1] = ACTIONS(351), + [sym__newline] = ACTIONS(353), + [aux_sym__text_token1] = ACTIONS(355), + [sym__verbatim_begin] = ACTIONS(357), }, [30] = { - [sym__inline] = STATE(859), - [sym__element] = STATE(115), - [sym_emphasis] = STATE(205), - [sym_emphasis_begin] = STATE(1000), - [sym_strong] = STATE(205), - [sym_strong_begin] = STATE(129), - [sym__hard_line_break] = STATE(205), - [sym_hard_line_break] = STATE(205), - [sym__smart_punctuation] = STATE(205), - [sym_autolink] = STATE(205), - [sym_highlighted] = STATE(205), - [sym_insert] = STATE(205), - [sym_delete] = STATE(205), - [sym_superscript] = STATE(205), - [sym_subscript] = STATE(205), - [sym_footnote_reference] = STATE(205), - [sym__image] = STATE(205), - [sym_full_reference_image] = STATE(205), - [sym_collapsed_reference_image] = STATE(205), - [sym_inline_image] = STATE(205), - [sym__image_description] = STATE(705), - [sym__link] = STATE(205), - [sym_full_reference_link] = STATE(205), - [sym_collapsed_reference_link] = STATE(205), - [sym_inline_link] = STATE(205), - [sym_link_text] = STATE(703), - [sym__comment_with_spaces] = STATE(205), - [sym_span] = STATE(205), - [sym_raw_inline] = STATE(205), - [sym_math] = STATE(205), - [sym_verbatim] = STATE(205), - [sym__todo_highlights] = STATE(205), - [sym_todo] = STATE(205), - [sym_note] = STATE(205), - [sym__symbol_fallback] = STATE(205), - [aux_sym__text] = STATE(136), - [aux_sym__inline_repeat1] = STATE(115), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(141), - [anon_sym__] = ACTIONS(144), - [anon_sym_LBRACE_STAR] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(150), - [anon_sym_BSLASH] = ACTIONS(153), - [sym_quotation_marks] = ACTIONS(156), - [sym_ellipsis] = ACTIONS(156), - [sym_em_dash] = ACTIONS(156), - [sym_en_dash] = ACTIONS(159), - [sym_backslash_escape] = ACTIONS(159), - [anon_sym_LT] = ACTIONS(162), - [anon_sym_LBRACE_EQ] = ACTIONS(165), - [anon_sym_LBRACE_PLUS] = ACTIONS(168), - [anon_sym_PLUS_RBRACE] = ACTIONS(93), - [anon_sym_LBRACE_DASH] = ACTIONS(171), - [sym_symbol] = ACTIONS(156), - [anon_sym_LBRACE_CARET] = ACTIONS(174), - [anon_sym_CARET] = ACTIONS(174), - [anon_sym_LBRACE_TILDE] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_LBRACK_CARET] = ACTIONS(183), - [anon_sym_BANG_LBRACK] = ACTIONS(186), - [anon_sym_LBRACK] = ACTIONS(189), - [anon_sym_LBRACE2] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(192), - [anon_sym_TODO] = ACTIONS(195), - [anon_sym_WIP] = ACTIONS(195), - [anon_sym_NOTE] = ACTIONS(198), - [anon_sym_INFO] = ACTIONS(198), - [anon_sym_XXX] = ACTIONS(198), - [sym_fixme] = ACTIONS(156), - [anon_sym_PIPE] = ACTIONS(156), - [sym__whitespace1] = ACTIONS(201), - [sym__newline] = ACTIONS(204), - [aux_sym__text_token1] = ACTIONS(207), - [sym__verbatim_begin] = ACTIONS(210), + [sym__inline] = STATE(860), + [sym__element] = STATE(79), + [sym_emphasis] = STATE(161), + [sym_emphasis_begin] = STATE(1081), + [sym_strong] = STATE(161), + [sym_strong_begin] = STATE(1082), + [sym_superscript] = STATE(161), + [sym_superscript_begin] = STATE(1083), + [sym_subscript] = STATE(161), + [sym_subscript_begin] = STATE(1084), + [sym_highlighted] = STATE(161), + [sym_highlighted_begin] = STATE(1085), + [sym_insert] = STATE(161), + [sym_insert_begin] = STATE(1086), + [sym_delete] = STATE(161), + [sym_delete_begin] = STATE(1087), + [sym_hard_line_break] = STATE(161), + [sym__smart_punctuation] = STATE(161), + [sym_autolink] = STATE(161), + [sym_footnote_reference] = STATE(161), + [sym__image] = STATE(161), + [sym_full_reference_image] = STATE(161), + [sym_collapsed_reference_image] = STATE(161), + [sym_inline_image] = STATE(161), + [sym__image_description] = STATE(692), + [sym__link] = STATE(161), + [sym_full_reference_link] = STATE(161), + [sym_collapsed_reference_link] = STATE(161), + [sym_inline_link] = STATE(161), + [sym_link_text] = STATE(687), + [sym__comment_with_spaces] = STATE(161), + [sym_span] = STATE(161), + [sym_raw_inline] = STATE(161), + [sym_math] = STATE(161), + [sym_verbatim] = STATE(161), + [sym__todo_highlights] = STATE(161), + [sym_todo] = STATE(161), + [sym_note] = STATE(161), + [sym__symbol_fallback] = STATE(161), + [aux_sym__text] = STATE(149), + [aux_sym__inline_repeat1] = STATE(79), + [anon_sym_LBRACE_] = ACTIONS(359), + [anon_sym__] = ACTIONS(361), + [anon_sym_LBRACE_STAR] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(365), + [anon_sym_LBRACE_CARET] = ACTIONS(367), + [anon_sym_CARET] = ACTIONS(367), + [anon_sym_LBRACE_TILDE] = ACTIONS(369), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_LBRACE_EQ] = ACTIONS(371), + [anon_sym_LBRACE_PLUS] = ACTIONS(373), + [anon_sym_LBRACE_DASH] = ACTIONS(375), + [anon_sym_BSLASH] = ACTIONS(377), + [sym_quotation_marks] = ACTIONS(379), + [sym_ellipsis] = ACTIONS(379), + [sym_em_dash] = ACTIONS(379), + [sym_en_dash] = ACTIONS(381), + [sym_backslash_escape] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(383), + [sym_symbol] = ACTIONS(379), + [anon_sym_LBRACK_CARET] = ACTIONS(385), + [anon_sym_BANG_LBRACK] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE2] = ACTIONS(381), + [anon_sym_DOLLAR] = ACTIONS(391), + [anon_sym_TODO] = ACTIONS(393), + [anon_sym_WIP] = ACTIONS(393), + [anon_sym_NOTE] = ACTIONS(395), + [anon_sym_INFO] = ACTIONS(395), + [anon_sym_XXX] = ACTIONS(395), + [sym_fixme] = ACTIONS(379), + [sym__whitespace1] = ACTIONS(397), + [sym__newline] = ACTIONS(399), + [aux_sym__text_token1] = ACTIONS(401), + [sym__verbatim_begin] = ACTIONS(403), }, [31] = { - [sym__inline] = STATE(939), - [sym__element] = STATE(118), - [sym_emphasis] = STATE(201), - [sym_emphasis_begin] = STATE(1005), - [sym_strong] = STATE(201), - [sym_strong_begin] = STATE(105), - [sym__hard_line_break] = STATE(201), - [sym_hard_line_break] = STATE(201), - [sym__smart_punctuation] = STATE(201), - [sym_autolink] = STATE(201), - [sym_highlighted] = STATE(201), - [sym_insert] = STATE(201), - [sym_delete] = STATE(201), - [sym_superscript] = STATE(201), - [sym_subscript] = STATE(201), - [sym_footnote_reference] = STATE(201), - [sym__image] = STATE(201), - [sym_full_reference_image] = STATE(201), - [sym_collapsed_reference_image] = STATE(201), - [sym_inline_image] = STATE(201), - [sym__image_description] = STATE(712), - [sym__link] = STATE(201), - [sym_full_reference_link] = STATE(201), - [sym_collapsed_reference_link] = STATE(201), - [sym_inline_link] = STATE(201), - [sym_link_text] = STATE(717), - [sym__comment_with_spaces] = STATE(201), - [sym_span] = STATE(201), - [sym_raw_inline] = STATE(201), - [sym_math] = STATE(201), - [sym_verbatim] = STATE(201), - [sym__todo_highlights] = STATE(201), - [sym_todo] = STATE(201), - [sym_note] = STATE(201), - [sym__symbol_fallback] = STATE(201), - [aux_sym__text] = STATE(139), - [aux_sym__inline_repeat1] = STATE(118), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(51), - [anon_sym__] = ACTIONS(54), - [anon_sym_LBRACE_STAR] = ACTIONS(57), - [anon_sym_STAR] = ACTIONS(60), - [anon_sym_BSLASH] = ACTIONS(63), - [sym_quotation_marks] = ACTIONS(66), - [sym_ellipsis] = ACTIONS(66), - [sym_em_dash] = ACTIONS(66), - [sym_en_dash] = ACTIONS(69), - [sym_backslash_escape] = ACTIONS(69), - [anon_sym_LT] = ACTIONS(72), - [anon_sym_LBRACE_EQ] = ACTIONS(75), - [anon_sym_LBRACE_PLUS] = ACTIONS(78), - [anon_sym_LBRACE_DASH] = ACTIONS(81), - [sym_symbol] = ACTIONS(66), - [anon_sym_LBRACE_CARET] = ACTIONS(84), - [anon_sym_CARET] = ACTIONS(127), - [anon_sym_CARET_RBRACE] = ACTIONS(93), - [anon_sym_LBRACE_TILDE] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(87), - [anon_sym_LBRACK_CARET] = ACTIONS(95), - [anon_sym_BANG_LBRACK] = ACTIONS(100), - [anon_sym_LBRACK] = ACTIONS(103), - [anon_sym_LBRACE2] = ACTIONS(69), - [anon_sym_DOLLAR] = ACTIONS(106), - [anon_sym_TODO] = ACTIONS(109), - [anon_sym_WIP] = ACTIONS(109), - [anon_sym_NOTE] = ACTIONS(112), - [anon_sym_INFO] = ACTIONS(112), - [anon_sym_XXX] = ACTIONS(112), - [sym_fixme] = ACTIONS(66), - [anon_sym_PIPE] = ACTIONS(66), - [sym__whitespace1] = ACTIONS(115), - [sym__newline] = ACTIONS(118), - [aux_sym__text_token1] = ACTIONS(121), - [sym__verbatim_begin] = ACTIONS(124), + [sym__inline_without_trailing_space] = STATE(859), + [sym__element] = STATE(572), + [sym_emphasis] = STATE(208), + [sym_emphasis_begin] = STATE(1074), + [sym_strong] = STATE(208), + [sym_strong_begin] = STATE(1075), + [sym_superscript] = STATE(208), + [sym_superscript_begin] = STATE(1076), + [sym_subscript] = STATE(208), + [sym_subscript_begin] = STATE(1077), + [sym_highlighted] = STATE(208), + [sym_highlighted_begin] = STATE(1078), + [sym_insert] = STATE(208), + [sym_insert_begin] = STATE(1079), + [sym_delete] = STATE(208), + [sym_delete_begin] = STATE(1080), + [sym_hard_line_break] = STATE(208), + [sym__smart_punctuation] = STATE(208), + [sym_autolink] = STATE(208), + [sym_footnote_reference] = STATE(208), + [sym__image] = STATE(208), + [sym_full_reference_image] = STATE(208), + [sym_collapsed_reference_image] = STATE(208), + [sym_inline_image] = STATE(208), + [sym__image_description] = STATE(680), + [sym__link] = STATE(208), + [sym_full_reference_link] = STATE(208), + [sym_collapsed_reference_link] = STATE(208), + [sym_inline_link] = STATE(208), + [sym_link_text] = STATE(663), + [sym__comment_with_spaces] = STATE(208), + [sym_span] = STATE(208), + [sym_raw_inline] = STATE(208), + [sym_math] = STATE(208), + [sym_verbatim] = STATE(208), + [sym__todo_highlights] = STATE(208), + [sym_todo] = STATE(208), + [sym_note] = STATE(208), + [sym__symbol_fallback] = STATE(208), + [aux_sym__text] = STATE(131), + [aux_sym__inline_repeat1] = STATE(130), + [anon_sym_LBRACE_] = ACTIONS(175), + [anon_sym__] = ACTIONS(177), + [anon_sym_LBRACE_STAR] = ACTIONS(179), + [anon_sym_STAR] = ACTIONS(181), + [anon_sym_LBRACE_CARET] = ACTIONS(183), + [anon_sym_CARET] = ACTIONS(183), + [anon_sym_LBRACE_TILDE] = ACTIONS(185), + [anon_sym_TILDE] = ACTIONS(185), + [anon_sym_LBRACE_EQ] = ACTIONS(187), + [anon_sym_LBRACE_PLUS] = ACTIONS(189), + [anon_sym_LBRACE_DASH] = ACTIONS(191), + [anon_sym_BSLASH] = ACTIONS(193), + [sym_quotation_marks] = ACTIONS(195), + [sym_ellipsis] = ACTIONS(195), + [sym_em_dash] = ACTIONS(195), + [sym_en_dash] = ACTIONS(197), + [sym_backslash_escape] = ACTIONS(197), + [anon_sym_LT] = ACTIONS(199), + [sym_symbol] = ACTIONS(195), + [anon_sym_LBRACK_CARET] = ACTIONS(201), + [anon_sym_BANG_LBRACK] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACE2] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(207), + [anon_sym_TODO] = ACTIONS(209), + [anon_sym_WIP] = ACTIONS(209), + [anon_sym_NOTE] = ACTIONS(211), + [anon_sym_INFO] = ACTIONS(211), + [anon_sym_XXX] = ACTIONS(211), + [sym_fixme] = ACTIONS(195), + [sym__whitespace1] = ACTIONS(213), + [sym__newline] = ACTIONS(215), + [aux_sym__text_token1] = ACTIONS(217), + [sym__verbatim_begin] = ACTIONS(219), }, [32] = { - [sym__inline] = STATE(916), - [sym__element] = STATE(115), - [sym_emphasis] = STATE(205), - [sym_emphasis_begin] = STATE(1000), - [sym_strong] = STATE(205), - [sym_strong_begin] = STATE(129), - [sym__hard_line_break] = STATE(205), - [sym_hard_line_break] = STATE(205), - [sym__smart_punctuation] = STATE(205), - [sym_autolink] = STATE(205), - [sym_highlighted] = STATE(205), - [sym_insert] = STATE(205), - [sym_delete] = STATE(205), - [sym_superscript] = STATE(205), - [sym_subscript] = STATE(205), - [sym_footnote_reference] = STATE(205), - [sym__image] = STATE(205), - [sym_full_reference_image] = STATE(205), - [sym_collapsed_reference_image] = STATE(205), - [sym_inline_image] = STATE(205), - [sym__image_description] = STATE(705), - [sym__link] = STATE(205), - [sym_full_reference_link] = STATE(205), - [sym_collapsed_reference_link] = STATE(205), - [sym_inline_link] = STATE(205), - [sym_link_text] = STATE(703), - [sym__comment_with_spaces] = STATE(205), - [sym_span] = STATE(205), - [sym_raw_inline] = STATE(205), - [sym_math] = STATE(205), - [sym_verbatim] = STATE(205), - [sym__todo_highlights] = STATE(205), - [sym_todo] = STATE(205), - [sym_note] = STATE(205), - [sym__symbol_fallback] = STATE(205), - [aux_sym__text] = STATE(136), - [aux_sym__inline_repeat1] = STATE(115), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(141), - [anon_sym__] = ACTIONS(144), - [anon_sym_LBRACE_STAR] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(150), - [anon_sym_BSLASH] = ACTIONS(153), - [sym_quotation_marks] = ACTIONS(156), - [sym_ellipsis] = ACTIONS(156), - [sym_em_dash] = ACTIONS(156), - [sym_en_dash] = ACTIONS(159), - [sym_backslash_escape] = ACTIONS(159), - [anon_sym_LT] = ACTIONS(162), - [anon_sym_LBRACE_EQ] = ACTIONS(165), - [anon_sym_LBRACE_PLUS] = ACTIONS(168), - [anon_sym_LBRACE_DASH] = ACTIONS(171), - [sym_symbol] = ACTIONS(156), - [anon_sym_LBRACE_CARET] = ACTIONS(174), - [anon_sym_CARET] = ACTIONS(174), - [anon_sym_LBRACE_TILDE] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(501), - [anon_sym_TILDE_RBRACE] = ACTIONS(93), - [anon_sym_LBRACK_CARET] = ACTIONS(183), - [anon_sym_BANG_LBRACK] = ACTIONS(186), - [anon_sym_LBRACK] = ACTIONS(189), - [anon_sym_LBRACE2] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(192), - [anon_sym_TODO] = ACTIONS(195), - [anon_sym_WIP] = ACTIONS(195), - [anon_sym_NOTE] = ACTIONS(198), - [anon_sym_INFO] = ACTIONS(198), - [anon_sym_XXX] = ACTIONS(198), - [sym_fixme] = ACTIONS(156), - [anon_sym_PIPE] = ACTIONS(156), - [sym__whitespace1] = ACTIONS(201), - [sym__newline] = ACTIONS(204), - [aux_sym__text_token1] = ACTIONS(207), - [sym__verbatim_begin] = ACTIONS(210), + [sym__inline_without_trailing_space] = STATE(858), + [sym__element] = STATE(603), + [sym_emphasis] = STATE(177), + [sym_emphasis_begin] = STATE(1067), + [sym_strong] = STATE(177), + [sym_strong_begin] = STATE(1068), + [sym_superscript] = STATE(177), + [sym_superscript_begin] = STATE(1069), + [sym_subscript] = STATE(177), + [sym_subscript_begin] = STATE(1070), + [sym_highlighted] = STATE(177), + [sym_highlighted_begin] = STATE(1071), + [sym_insert] = STATE(177), + [sym_insert_begin] = STATE(1072), + [sym_delete] = STATE(177), + [sym_delete_begin] = STATE(1073), + [sym_hard_line_break] = STATE(177), + [sym__smart_punctuation] = STATE(177), + [sym_autolink] = STATE(177), + [sym_footnote_reference] = STATE(177), + [sym__image] = STATE(177), + [sym_full_reference_image] = STATE(177), + [sym_collapsed_reference_image] = STATE(177), + [sym_inline_image] = STATE(177), + [sym__image_description] = STATE(681), + [sym__link] = STATE(177), + [sym_full_reference_link] = STATE(177), + [sym_collapsed_reference_link] = STATE(177), + [sym_inline_link] = STATE(177), + [sym_link_text] = STATE(668), + [sym__comment_with_spaces] = STATE(177), + [sym_span] = STATE(177), + [sym_raw_inline] = STATE(177), + [sym_math] = STATE(177), + [sym_verbatim] = STATE(177), + [sym__todo_highlights] = STATE(177), + [sym_todo] = STATE(177), + [sym_note] = STATE(177), + [sym__symbol_fallback] = STATE(177), + [aux_sym__text] = STATE(132), + [aux_sym__inline_repeat1] = STATE(128), + [anon_sym_LBRACE_] = ACTIONS(405), + [anon_sym__] = ACTIONS(407), + [anon_sym_LBRACE_STAR] = ACTIONS(409), + [anon_sym_STAR] = ACTIONS(411), + [anon_sym_LBRACE_CARET] = ACTIONS(413), + [anon_sym_CARET] = ACTIONS(413), + [anon_sym_LBRACE_TILDE] = ACTIONS(415), + [anon_sym_TILDE] = ACTIONS(415), + [anon_sym_LBRACE_EQ] = ACTIONS(417), + [anon_sym_LBRACE_PLUS] = ACTIONS(419), + [anon_sym_LBRACE_DASH] = ACTIONS(421), + [anon_sym_BSLASH] = ACTIONS(423), + [sym_quotation_marks] = ACTIONS(425), + [sym_ellipsis] = ACTIONS(425), + [sym_em_dash] = ACTIONS(425), + [sym_en_dash] = ACTIONS(427), + [sym_backslash_escape] = ACTIONS(427), + [anon_sym_LT] = ACTIONS(429), + [sym_symbol] = ACTIONS(425), + [anon_sym_LBRACK_CARET] = ACTIONS(431), + [anon_sym_BANG_LBRACK] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LBRACE2] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(437), + [anon_sym_TODO] = ACTIONS(439), + [anon_sym_WIP] = ACTIONS(439), + [anon_sym_NOTE] = ACTIONS(441), + [anon_sym_INFO] = ACTIONS(441), + [anon_sym_XXX] = ACTIONS(441), + [sym_fixme] = ACTIONS(425), + [sym__whitespace1] = ACTIONS(443), + [sym__newline] = ACTIONS(445), + [aux_sym__text_token1] = ACTIONS(447), + [sym__verbatim_begin] = ACTIONS(449), }, [33] = { - [sym__inline] = STATE(914), - [sym__element] = STATE(91), - [sym_emphasis] = STATE(174), - [sym_emphasis_begin] = STATE(1001), - [sym_strong] = STATE(174), - [sym_strong_begin] = STATE(126), - [sym__hard_line_break] = STATE(174), - [sym_hard_line_break] = STATE(174), - [sym__smart_punctuation] = STATE(174), - [sym_autolink] = STATE(174), - [sym_highlighted] = STATE(174), - [sym_insert] = STATE(174), - [sym_delete] = STATE(174), - [sym_superscript] = STATE(174), - [sym_subscript] = STATE(174), - [sym_footnote_reference] = STATE(174), - [sym__image] = STATE(174), - [sym_full_reference_image] = STATE(174), - [sym_collapsed_reference_image] = STATE(174), - [sym_inline_image] = STATE(174), - [sym__image_description] = STATE(709), - [sym__link] = STATE(174), - [sym_full_reference_link] = STATE(174), - [sym_collapsed_reference_link] = STATE(174), - [sym_inline_link] = STATE(174), - [sym_link_text] = STATE(710), - [sym__comment_with_spaces] = STATE(174), - [sym_span] = STATE(174), - [sym_raw_inline] = STATE(174), - [sym_math] = STATE(174), - [sym_verbatim] = STATE(174), - [sym__todo_highlights] = STATE(174), - [sym_todo] = STATE(174), - [sym_note] = STATE(174), - [sym__symbol_fallback] = STATE(174), - [aux_sym__text] = STATE(148), - [aux_sym__inline_repeat1] = STATE(91), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(213), - [anon_sym__] = ACTIONS(216), - [anon_sym_LBRACE_STAR] = ACTIONS(219), - [anon_sym_STAR] = ACTIONS(222), - [anon_sym_BSLASH] = ACTIONS(225), - [sym_quotation_marks] = ACTIONS(228), - [sym_ellipsis] = ACTIONS(228), - [sym_em_dash] = ACTIONS(228), - [sym_en_dash] = ACTIONS(231), - [sym_backslash_escape] = ACTIONS(231), - [anon_sym_LT] = ACTIONS(234), - [anon_sym_LBRACE_EQ] = ACTIONS(237), - [anon_sym_LBRACE_PLUS] = ACTIONS(240), - [anon_sym_LBRACE_DASH] = ACTIONS(243), - [sym_symbol] = ACTIONS(228), - [anon_sym_LBRACE_CARET] = ACTIONS(246), - [anon_sym_CARET] = ACTIONS(246), - [anon_sym_LBRACE_TILDE] = ACTIONS(249), - [anon_sym_TILDE] = ACTIONS(504), - [anon_sym_TILDE_RBRACE] = ACTIONS(93), - [anon_sym_LBRACK_CARET] = ACTIONS(252), - [anon_sym_BANG_LBRACK] = ACTIONS(255), - [anon_sym_LBRACK] = ACTIONS(258), - [anon_sym_LBRACE2] = ACTIONS(231), - [anon_sym_DOLLAR] = ACTIONS(261), - [anon_sym_TODO] = ACTIONS(264), - [anon_sym_WIP] = ACTIONS(264), - [anon_sym_NOTE] = ACTIONS(267), - [anon_sym_INFO] = ACTIONS(267), - [anon_sym_XXX] = ACTIONS(267), - [sym_fixme] = ACTIONS(228), - [anon_sym_PIPE] = ACTIONS(228), - [sym__whitespace1] = ACTIONS(270), - [sym__newline] = ACTIONS(273), - [aux_sym__text_token1] = ACTIONS(276), - [sym__verbatim_begin] = ACTIONS(279), + [sym__inline] = STATE(835), + [sym__element] = STATE(66), + [sym_emphasis] = STATE(171), + [sym_emphasis_begin] = STATE(1116), + [sym_strong] = STATE(171), + [sym_strong_begin] = STATE(1117), + [sym_superscript] = STATE(171), + [sym_superscript_begin] = STATE(1118), + [sym_subscript] = STATE(171), + [sym_subscript_begin] = STATE(1119), + [sym_highlighted] = STATE(171), + [sym_highlighted_begin] = STATE(1120), + [sym_insert] = STATE(171), + [sym_insert_begin] = STATE(1121), + [sym_delete] = STATE(171), + [sym_delete_begin] = STATE(1122), + [sym_hard_line_break] = STATE(171), + [sym__smart_punctuation] = STATE(171), + [sym_autolink] = STATE(171), + [sym_footnote_reference] = STATE(171), + [sym__image] = STATE(171), + [sym_full_reference_image] = STATE(171), + [sym_collapsed_reference_image] = STATE(171), + [sym_inline_image] = STATE(171), + [sym__image_description] = STATE(674), + [sym__link] = STATE(171), + [sym_full_reference_link] = STATE(171), + [sym_collapsed_reference_link] = STATE(171), + [sym_inline_link] = STATE(171), + [sym_link_text] = STATE(675), + [sym__comment_with_spaces] = STATE(171), + [sym_span] = STATE(171), + [sym_raw_inline] = STATE(171), + [sym_math] = STATE(171), + [sym_verbatim] = STATE(171), + [sym__todo_highlights] = STATE(171), + [sym_todo] = STATE(171), + [sym_note] = STATE(171), + [sym__symbol_fallback] = STATE(171), + [aux_sym__text] = STATE(146), + [aux_sym__inline_repeat1] = STATE(66), + [anon_sym_LBRACE_] = ACTIONS(451), + [anon_sym__] = ACTIONS(453), + [anon_sym_LBRACE_STAR] = ACTIONS(455), + [anon_sym_STAR] = ACTIONS(457), + [anon_sym_LBRACE_CARET] = ACTIONS(459), + [anon_sym_CARET] = ACTIONS(459), + [anon_sym_LBRACE_TILDE] = ACTIONS(461), + [anon_sym_TILDE] = ACTIONS(461), + [anon_sym_LBRACE_EQ] = ACTIONS(463), + [anon_sym_LBRACE_PLUS] = ACTIONS(465), + [anon_sym_LBRACE_DASH] = ACTIONS(467), + [anon_sym_BSLASH] = ACTIONS(469), + [sym_quotation_marks] = ACTIONS(471), + [sym_ellipsis] = ACTIONS(471), + [sym_em_dash] = ACTIONS(471), + [sym_en_dash] = ACTIONS(473), + [sym_backslash_escape] = ACTIONS(473), + [anon_sym_LT] = ACTIONS(475), + [sym_symbol] = ACTIONS(471), + [anon_sym_LBRACK_CARET] = ACTIONS(477), + [anon_sym_BANG_LBRACK] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(481), + [anon_sym_LBRACE2] = ACTIONS(473), + [anon_sym_DOLLAR] = ACTIONS(483), + [anon_sym_TODO] = ACTIONS(485), + [anon_sym_WIP] = ACTIONS(485), + [anon_sym_NOTE] = ACTIONS(487), + [anon_sym_INFO] = ACTIONS(487), + [anon_sym_XXX] = ACTIONS(487), + [sym_fixme] = ACTIONS(471), + [sym__whitespace1] = ACTIONS(489), + [sym__newline] = ACTIONS(491), + [aux_sym__text_token1] = ACTIONS(493), + [sym__verbatim_begin] = ACTIONS(495), }, [34] = { - [sym__inline] = STATE(906), - [sym__element] = STATE(88), - [sym_emphasis] = STATE(209), - [sym_emphasis_begin] = STATE(1002), - [sym_strong] = STATE(209), - [sym_strong_begin] = STATE(121), - [sym__hard_line_break] = STATE(209), - [sym_hard_line_break] = STATE(209), - [sym__smart_punctuation] = STATE(209), - [sym_autolink] = STATE(209), - [sym_highlighted] = STATE(209), - [sym_insert] = STATE(209), - [sym_delete] = STATE(209), - [sym_superscript] = STATE(209), - [sym_subscript] = STATE(209), - [sym_footnote_reference] = STATE(209), - [sym__image] = STATE(209), - [sym_full_reference_image] = STATE(209), - [sym_collapsed_reference_image] = STATE(209), - [sym_inline_image] = STATE(209), - [sym__image_description] = STATE(706), - [sym__link] = STATE(209), - [sym_full_reference_link] = STATE(209), - [sym_collapsed_reference_link] = STATE(209), - [sym_inline_link] = STATE(209), - [sym_link_text] = STATE(707), - [sym__comment_with_spaces] = STATE(209), - [sym_span] = STATE(209), - [sym_raw_inline] = STATE(209), - [sym_math] = STATE(209), - [sym_verbatim] = STATE(209), - [sym__todo_highlights] = STATE(209), - [sym_todo] = STATE(209), - [sym_note] = STATE(209), - [sym__symbol_fallback] = STATE(209), - [aux_sym__text] = STATE(150), - [aux_sym__inline_repeat1] = STATE(88), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(282), - [anon_sym__] = ACTIONS(285), - [anon_sym_LBRACE_STAR] = ACTIONS(288), - [anon_sym_STAR] = ACTIONS(291), - [anon_sym_BSLASH] = ACTIONS(294), - [sym_quotation_marks] = ACTIONS(297), - [sym_ellipsis] = ACTIONS(297), - [sym_em_dash] = ACTIONS(297), - [sym_en_dash] = ACTIONS(300), - [sym_backslash_escape] = ACTIONS(300), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACE_EQ] = ACTIONS(306), - [anon_sym_LBRACE_PLUS] = ACTIONS(309), - [anon_sym_LBRACE_DASH] = ACTIONS(312), - [sym_symbol] = ACTIONS(297), - [anon_sym_LBRACE_CARET] = ACTIONS(315), - [anon_sym_CARET] = ACTIONS(315), - [anon_sym_LBRACE_TILDE] = ACTIONS(318), - [anon_sym_TILDE] = ACTIONS(507), - [anon_sym_TILDE_RBRACE] = ACTIONS(93), - [anon_sym_LBRACK_CARET] = ACTIONS(321), - [anon_sym_BANG_LBRACK] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(327), - [anon_sym_LBRACE2] = ACTIONS(300), - [anon_sym_DOLLAR] = ACTIONS(330), - [anon_sym_TODO] = ACTIONS(333), - [anon_sym_WIP] = ACTIONS(333), - [anon_sym_NOTE] = ACTIONS(336), - [anon_sym_INFO] = ACTIONS(336), - [anon_sym_XXX] = ACTIONS(336), - [sym_fixme] = ACTIONS(297), - [anon_sym_PIPE] = ACTIONS(297), - [sym__whitespace1] = ACTIONS(339), - [sym__newline] = ACTIONS(342), - [aux_sym__text_token1] = ACTIONS(345), - [sym__verbatim_begin] = ACTIONS(348), + [sym__inline] = STATE(813), + [sym__element] = STATE(103), + [sym_emphasis] = STATE(180), + [sym_emphasis_begin] = STATE(1109), + [sym_strong] = STATE(180), + [sym_strong_begin] = STATE(1110), + [sym_superscript] = STATE(180), + [sym_superscript_begin] = STATE(1111), + [sym_subscript] = STATE(180), + [sym_subscript_begin] = STATE(1112), + [sym_highlighted] = STATE(180), + [sym_highlighted_begin] = STATE(1113), + [sym_insert] = STATE(180), + [sym_insert_begin] = STATE(1114), + [sym_delete] = STATE(180), + [sym_delete_begin] = STATE(1115), + [sym_hard_line_break] = STATE(180), + [sym__smart_punctuation] = STATE(180), + [sym_autolink] = STATE(180), + [sym_footnote_reference] = STATE(180), + [sym__image] = STATE(180), + [sym_full_reference_image] = STATE(180), + [sym_collapsed_reference_image] = STATE(180), + [sym_inline_image] = STATE(180), + [sym__image_description] = STATE(666), + [sym__link] = STATE(180), + [sym_full_reference_link] = STATE(180), + [sym_collapsed_reference_link] = STATE(180), + [sym_inline_link] = STATE(180), + [sym_link_text] = STATE(664), + [sym__comment_with_spaces] = STATE(180), + [sym_span] = STATE(180), + [sym_raw_inline] = STATE(180), + [sym_math] = STATE(180), + [sym_verbatim] = STATE(180), + [sym__todo_highlights] = STATE(180), + [sym_todo] = STATE(180), + [sym_note] = STATE(180), + [sym__symbol_fallback] = STATE(180), + [aux_sym__text] = STATE(159), + [aux_sym__inline_repeat1] = STATE(103), + [anon_sym_LBRACE_] = ACTIONS(221), + [anon_sym__] = ACTIONS(223), + [anon_sym_LBRACE_STAR] = ACTIONS(225), + [anon_sym_STAR] = ACTIONS(227), + [anon_sym_LBRACE_CARET] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym_LBRACE_TILDE] = ACTIONS(231), + [anon_sym_TILDE] = ACTIONS(231), + [anon_sym_LBRACE_EQ] = ACTIONS(233), + [anon_sym_LBRACE_PLUS] = ACTIONS(235), + [anon_sym_LBRACE_DASH] = ACTIONS(237), + [anon_sym_BSLASH] = ACTIONS(239), + [sym_quotation_marks] = ACTIONS(241), + [sym_ellipsis] = ACTIONS(241), + [sym_em_dash] = ACTIONS(241), + [sym_en_dash] = ACTIONS(243), + [sym_backslash_escape] = ACTIONS(243), + [anon_sym_LT] = ACTIONS(245), + [sym_symbol] = ACTIONS(241), + [anon_sym_LBRACK_CARET] = ACTIONS(247), + [anon_sym_BANG_LBRACK] = ACTIONS(249), + [anon_sym_LBRACK] = ACTIONS(251), + [anon_sym_LBRACE2] = ACTIONS(243), + [anon_sym_DOLLAR] = ACTIONS(253), + [anon_sym_TODO] = ACTIONS(255), + [anon_sym_WIP] = ACTIONS(255), + [anon_sym_NOTE] = ACTIONS(257), + [anon_sym_INFO] = ACTIONS(257), + [anon_sym_XXX] = ACTIONS(257), + [sym_fixme] = ACTIONS(241), + [sym__whitespace1] = ACTIONS(259), + [sym__newline] = ACTIONS(261), + [aux_sym__text_token1] = ACTIONS(263), + [sym__verbatim_begin] = ACTIONS(265), }, [35] = { - [sym__inline] = STATE(761), - [sym__element] = STATE(102), - [sym_emphasis] = STATE(194), - [sym_emphasis_begin] = STATE(1003), - [sym_strong] = STATE(194), - [sym_strong_begin] = STATE(113), - [sym__hard_line_break] = STATE(194), - [sym_hard_line_break] = STATE(194), - [sym__smart_punctuation] = STATE(194), - [sym_autolink] = STATE(194), - [sym_highlighted] = STATE(194), - [sym_insert] = STATE(194), - [sym_delete] = STATE(194), - [sym_superscript] = STATE(194), - [sym_subscript] = STATE(194), - [sym_footnote_reference] = STATE(194), - [sym__image] = STATE(194), - [sym_full_reference_image] = STATE(194), - [sym_collapsed_reference_image] = STATE(194), - [sym_inline_image] = STATE(194), - [sym__image_description] = STATE(696), - [sym__link] = STATE(194), - [sym_full_reference_link] = STATE(194), - [sym_collapsed_reference_link] = STATE(194), - [sym_inline_link] = STATE(194), - [sym_link_text] = STATE(695), - [sym__comment_with_spaces] = STATE(194), - [sym_span] = STATE(194), - [sym_raw_inline] = STATE(194), - [sym_math] = STATE(194), - [sym_verbatim] = STATE(194), - [sym__todo_highlights] = STATE(194), - [sym_todo] = STATE(194), - [sym_note] = STATE(194), - [sym__symbol_fallback] = STATE(194), - [aux_sym__text] = STATE(170), - [aux_sym__inline_repeat1] = STATE(102), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(351), - [anon_sym__] = ACTIONS(354), - [anon_sym_LBRACE_STAR] = ACTIONS(357), - [anon_sym_STAR] = ACTIONS(360), - [anon_sym_BSLASH] = ACTIONS(363), - [sym_quotation_marks] = ACTIONS(366), - [sym_ellipsis] = ACTIONS(366), - [sym_em_dash] = ACTIONS(366), - [sym_en_dash] = ACTIONS(369), - [sym_backslash_escape] = ACTIONS(369), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_LBRACE_EQ] = ACTIONS(375), - [anon_sym_LBRACE_PLUS] = ACTIONS(378), - [anon_sym_LBRACE_DASH] = ACTIONS(381), - [sym_symbol] = ACTIONS(366), - [anon_sym_LBRACE_CARET] = ACTIONS(384), - [anon_sym_CARET] = ACTIONS(384), - [anon_sym_LBRACE_TILDE] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(510), - [anon_sym_TILDE_RBRACE] = ACTIONS(93), - [anon_sym_LBRACK_CARET] = ACTIONS(390), - [anon_sym_BANG_LBRACK] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(396), - [anon_sym_LBRACE2] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(399), - [anon_sym_TODO] = ACTIONS(402), - [anon_sym_WIP] = ACTIONS(402), - [anon_sym_NOTE] = ACTIONS(405), - [anon_sym_INFO] = ACTIONS(405), - [anon_sym_XXX] = ACTIONS(405), - [sym_fixme] = ACTIONS(366), - [anon_sym_PIPE] = ACTIONS(366), - [sym__whitespace1] = ACTIONS(408), - [sym__newline] = ACTIONS(411), - [aux_sym__text_token1] = ACTIONS(414), - [sym__verbatim_begin] = ACTIONS(417), + [sym__inline] = STATE(833), + [sym__element] = STATE(111), + [sym_emphasis] = STATE(186), + [sym_emphasis_begin] = STATE(1102), + [sym_strong] = STATE(186), + [sym_strong_begin] = STATE(1103), + [sym_superscript] = STATE(186), + [sym_superscript_begin] = STATE(1104), + [sym_subscript] = STATE(186), + [sym_subscript_begin] = STATE(1105), + [sym_highlighted] = STATE(186), + [sym_highlighted_begin] = STATE(1106), + [sym_insert] = STATE(186), + [sym_insert_begin] = STATE(1107), + [sym_delete] = STATE(186), + [sym_delete_begin] = STATE(1108), + [sym_hard_line_break] = STATE(186), + [sym__smart_punctuation] = STATE(186), + [sym_autolink] = STATE(186), + [sym_footnote_reference] = STATE(186), + [sym__image] = STATE(186), + [sym_full_reference_image] = STATE(186), + [sym_collapsed_reference_image] = STATE(186), + [sym_inline_image] = STATE(186), + [sym__image_description] = STATE(673), + [sym__link] = STATE(186), + [sym_full_reference_link] = STATE(186), + [sym_collapsed_reference_link] = STATE(186), + [sym_inline_link] = STATE(186), + [sym_link_text] = STATE(672), + [sym__comment_with_spaces] = STATE(186), + [sym_span] = STATE(186), + [sym_raw_inline] = STATE(186), + [sym_math] = STATE(186), + [sym_verbatim] = STATE(186), + [sym__todo_highlights] = STATE(186), + [sym_todo] = STATE(186), + [sym_note] = STATE(186), + [sym__symbol_fallback] = STATE(186), + [aux_sym__text] = STATE(155), + [aux_sym__inline_repeat1] = STATE(111), + [anon_sym_LBRACE_] = ACTIONS(267), + [anon_sym__] = ACTIONS(269), + [anon_sym_LBRACE_STAR] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_LBRACE_CARET] = ACTIONS(275), + [anon_sym_CARET] = ACTIONS(275), + [anon_sym_LBRACE_TILDE] = ACTIONS(277), + [anon_sym_TILDE] = ACTIONS(277), + [anon_sym_LBRACE_EQ] = ACTIONS(279), + [anon_sym_LBRACE_PLUS] = ACTIONS(281), + [anon_sym_LBRACE_DASH] = ACTIONS(283), + [anon_sym_BSLASH] = ACTIONS(285), + [sym_quotation_marks] = ACTIONS(287), + [sym_ellipsis] = ACTIONS(287), + [sym_em_dash] = ACTIONS(287), + [sym_en_dash] = ACTIONS(289), + [sym_backslash_escape] = ACTIONS(289), + [anon_sym_LT] = ACTIONS(291), + [sym_symbol] = ACTIONS(287), + [anon_sym_LBRACK_CARET] = ACTIONS(293), + [anon_sym_BANG_LBRACK] = ACTIONS(295), + [anon_sym_LBRACK] = ACTIONS(297), + [anon_sym_LBRACE2] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(299), + [anon_sym_TODO] = ACTIONS(301), + [anon_sym_WIP] = ACTIONS(301), + [anon_sym_NOTE] = ACTIONS(303), + [anon_sym_INFO] = ACTIONS(303), + [anon_sym_XXX] = ACTIONS(303), + [sym_fixme] = ACTIONS(287), + [sym__whitespace1] = ACTIONS(305), + [sym__newline] = ACTIONS(307), + [aux_sym__text_token1] = ACTIONS(309), + [sym__verbatim_begin] = ACTIONS(311), }, [36] = { - [sym__inline] = STATE(762), - [sym__element] = STATE(114), - [sym_emphasis] = STATE(181), - [sym_emphasis_begin] = STATE(1004), - [sym_strong] = STATE(181), - [sym_strong_begin] = STATE(110), - [sym__hard_line_break] = STATE(181), - [sym_hard_line_break] = STATE(181), - [sym__smart_punctuation] = STATE(181), - [sym_autolink] = STATE(181), - [sym_highlighted] = STATE(181), - [sym_insert] = STATE(181), - [sym_delete] = STATE(181), - [sym_superscript] = STATE(181), - [sym_subscript] = STATE(181), - [sym_footnote_reference] = STATE(181), - [sym__image] = STATE(181), - [sym_full_reference_image] = STATE(181), - [sym_collapsed_reference_image] = STATE(181), - [sym_inline_image] = STATE(181), - [sym__image_description] = STATE(688), - [sym__link] = STATE(181), - [sym_full_reference_link] = STATE(181), - [sym_collapsed_reference_link] = STATE(181), - [sym_inline_link] = STATE(181), - [sym_link_text] = STATE(693), - [sym__comment_with_spaces] = STATE(181), - [sym_span] = STATE(181), - [sym_raw_inline] = STATE(181), - [sym_math] = STATE(181), - [sym_verbatim] = STATE(181), - [sym__todo_highlights] = STATE(181), - [sym_todo] = STATE(181), - [sym_note] = STATE(181), - [sym__symbol_fallback] = STATE(181), - [aux_sym__text] = STATE(153), - [aux_sym__inline_repeat1] = STATE(114), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(420), - [anon_sym__] = ACTIONS(423), - [anon_sym_LBRACE_STAR] = ACTIONS(426), - [anon_sym_STAR] = ACTIONS(429), - [anon_sym_BSLASH] = ACTIONS(432), - [sym_quotation_marks] = ACTIONS(435), - [sym_ellipsis] = ACTIONS(435), - [sym_em_dash] = ACTIONS(435), - [sym_en_dash] = ACTIONS(438), - [sym_backslash_escape] = ACTIONS(438), - [anon_sym_LT] = ACTIONS(441), - [anon_sym_LBRACE_EQ] = ACTIONS(444), - [anon_sym_LBRACE_PLUS] = ACTIONS(447), - [anon_sym_LBRACE_DASH] = ACTIONS(450), - [sym_symbol] = ACTIONS(435), - [anon_sym_LBRACE_CARET] = ACTIONS(453), - [anon_sym_CARET] = ACTIONS(453), - [anon_sym_LBRACE_TILDE] = ACTIONS(456), - [anon_sym_TILDE] = ACTIONS(513), - [anon_sym_TILDE_RBRACE] = ACTIONS(93), - [anon_sym_LBRACK_CARET] = ACTIONS(459), - [anon_sym_BANG_LBRACK] = ACTIONS(462), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_LBRACE2] = ACTIONS(438), - [anon_sym_DOLLAR] = ACTIONS(468), - [anon_sym_TODO] = ACTIONS(471), - [anon_sym_WIP] = ACTIONS(471), - [anon_sym_NOTE] = ACTIONS(474), - [anon_sym_INFO] = ACTIONS(474), - [anon_sym_XXX] = ACTIONS(474), - [sym_fixme] = ACTIONS(435), - [anon_sym_PIPE] = ACTIONS(435), - [sym__whitespace1] = ACTIONS(477), - [sym__newline] = ACTIONS(480), - [aux_sym__text_token1] = ACTIONS(483), - [sym__verbatim_begin] = ACTIONS(486), - }, - [37] = { - [sym__inline] = STATE(801), + [sym__inline] = STATE(832), [sym__element] = STATE(115), - [sym_emphasis] = STATE(205), - [sym_emphasis_begin] = STATE(1000), - [sym_strong] = STATE(205), - [sym_strong_begin] = STATE(129), - [sym__hard_line_break] = STATE(205), - [sym_hard_line_break] = STATE(205), - [sym__smart_punctuation] = STATE(205), - [sym_autolink] = STATE(205), - [sym_highlighted] = STATE(205), - [sym_insert] = STATE(205), - [sym_delete] = STATE(205), - [sym_superscript] = STATE(205), - [sym_subscript] = STATE(205), - [sym_footnote_reference] = STATE(205), - [sym__image] = STATE(205), - [sym_full_reference_image] = STATE(205), - [sym_collapsed_reference_image] = STATE(205), - [sym_inline_image] = STATE(205), - [sym__image_description] = STATE(705), - [sym__link] = STATE(205), - [sym_full_reference_link] = STATE(205), - [sym_collapsed_reference_link] = STATE(205), - [sym_inline_link] = STATE(205), - [sym_link_text] = STATE(703), - [sym__comment_with_spaces] = STATE(205), - [sym_span] = STATE(205), - [sym_raw_inline] = STATE(205), - [sym_math] = STATE(205), - [sym_verbatim] = STATE(205), - [sym__todo_highlights] = STATE(205), - [sym_todo] = STATE(205), - [sym_note] = STATE(205), - [sym__symbol_fallback] = STATE(205), - [aux_sym__text] = STATE(136), + [sym_emphasis] = STATE(192), + [sym_emphasis_begin] = STATE(1095), + [sym_strong] = STATE(192), + [sym_strong_begin] = STATE(1096), + [sym_superscript] = STATE(192), + [sym_superscript_begin] = STATE(1097), + [sym_subscript] = STATE(192), + [sym_subscript_begin] = STATE(1098), + [sym_highlighted] = STATE(192), + [sym_highlighted_begin] = STATE(1099), + [sym_insert] = STATE(192), + [sym_insert_begin] = STATE(1100), + [sym_delete] = STATE(192), + [sym_delete_begin] = STATE(1101), + [sym_hard_line_break] = STATE(192), + [sym__smart_punctuation] = STATE(192), + [sym_autolink] = STATE(192), + [sym_footnote_reference] = STATE(192), + [sym__image] = STATE(192), + [sym_full_reference_image] = STATE(192), + [sym_collapsed_reference_image] = STATE(192), + [sym_inline_image] = STATE(192), + [sym__image_description] = STATE(684), + [sym__link] = STATE(192), + [sym_full_reference_link] = STATE(192), + [sym_collapsed_reference_link] = STATE(192), + [sym_inline_link] = STATE(192), + [sym_link_text] = STATE(683), + [sym__comment_with_spaces] = STATE(192), + [sym_span] = STATE(192), + [sym_raw_inline] = STATE(192), + [sym_math] = STATE(192), + [sym_verbatim] = STATE(192), + [sym__todo_highlights] = STATE(192), + [sym_todo] = STATE(192), + [sym_note] = STATE(192), + [sym__symbol_fallback] = STATE(192), + [aux_sym__text] = STATE(141), [aux_sym__inline_repeat1] = STATE(115), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(141), - [anon_sym__] = ACTIONS(144), - [anon_sym_LBRACE_STAR] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(150), - [anon_sym_BSLASH] = ACTIONS(153), - [sym_quotation_marks] = ACTIONS(156), - [sym_ellipsis] = ACTIONS(156), - [sym_em_dash] = ACTIONS(156), - [sym_en_dash] = ACTIONS(159), - [sym_backslash_escape] = ACTIONS(159), - [anon_sym_LT] = ACTIONS(162), - [anon_sym_LBRACE_EQ] = ACTIONS(165), - [anon_sym_LBRACE_PLUS] = ACTIONS(168), - [anon_sym_LBRACE_DASH] = ACTIONS(171), - [sym_symbol] = ACTIONS(156), - [anon_sym_LBRACE_CARET] = ACTIONS(174), - [anon_sym_CARET] = ACTIONS(174), - [anon_sym_LBRACE_TILDE] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_LBRACK_CARET] = ACTIONS(183), - [anon_sym_RBRACK] = ACTIONS(93), - [anon_sym_BANG_LBRACK] = ACTIONS(186), - [anon_sym_LBRACK] = ACTIONS(189), - [anon_sym_LBRACE2] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(192), - [anon_sym_TODO] = ACTIONS(195), - [anon_sym_WIP] = ACTIONS(195), - [anon_sym_NOTE] = ACTIONS(198), - [anon_sym_INFO] = ACTIONS(198), - [anon_sym_XXX] = ACTIONS(198), - [sym_fixme] = ACTIONS(156), - [anon_sym_PIPE] = ACTIONS(156), - [sym__whitespace1] = ACTIONS(201), - [sym__newline] = ACTIONS(204), - [aux_sym__text_token1] = ACTIONS(207), - [sym__verbatim_begin] = ACTIONS(210), + [anon_sym_LBRACE_] = ACTIONS(129), + [anon_sym__] = ACTIONS(131), + [anon_sym_LBRACE_STAR] = ACTIONS(133), + [anon_sym_STAR] = ACTIONS(135), + [anon_sym_LBRACE_CARET] = ACTIONS(137), + [anon_sym_CARET] = ACTIONS(137), + [anon_sym_LBRACE_TILDE] = ACTIONS(139), + [anon_sym_TILDE] = ACTIONS(139), + [anon_sym_LBRACE_EQ] = ACTIONS(141), + [anon_sym_LBRACE_PLUS] = ACTIONS(143), + [anon_sym_LBRACE_DASH] = ACTIONS(145), + [anon_sym_BSLASH] = ACTIONS(147), + [sym_quotation_marks] = ACTIONS(149), + [sym_ellipsis] = ACTIONS(149), + [sym_em_dash] = ACTIONS(149), + [sym_en_dash] = ACTIONS(151), + [sym_backslash_escape] = ACTIONS(151), + [anon_sym_LT] = ACTIONS(153), + [sym_symbol] = ACTIONS(149), + [anon_sym_LBRACK_CARET] = ACTIONS(155), + [anon_sym_BANG_LBRACK] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LBRACE2] = ACTIONS(151), + [anon_sym_DOLLAR] = ACTIONS(161), + [anon_sym_TODO] = ACTIONS(163), + [anon_sym_WIP] = ACTIONS(163), + [anon_sym_NOTE] = ACTIONS(165), + [anon_sym_INFO] = ACTIONS(165), + [anon_sym_XXX] = ACTIONS(165), + [sym_fixme] = ACTIONS(149), + [sym__whitespace1] = ACTIONS(167), + [sym__newline] = ACTIONS(169), + [aux_sym__text_token1] = ACTIONS(171), + [sym__verbatim_begin] = ACTIONS(173), + }, + [37] = { + [sym__inline] = STATE(894), + [sym__element] = STATE(103), + [sym_emphasis] = STATE(180), + [sym_emphasis_begin] = STATE(1109), + [sym_strong] = STATE(180), + [sym_strong_begin] = STATE(1110), + [sym_superscript] = STATE(180), + [sym_superscript_begin] = STATE(1111), + [sym_subscript] = STATE(180), + [sym_subscript_begin] = STATE(1112), + [sym_highlighted] = STATE(180), + [sym_highlighted_begin] = STATE(1113), + [sym_insert] = STATE(180), + [sym_insert_begin] = STATE(1114), + [sym_delete] = STATE(180), + [sym_delete_begin] = STATE(1115), + [sym_hard_line_break] = STATE(180), + [sym__smart_punctuation] = STATE(180), + [sym_autolink] = STATE(180), + [sym_footnote_reference] = STATE(180), + [sym__image] = STATE(180), + [sym_full_reference_image] = STATE(180), + [sym_collapsed_reference_image] = STATE(180), + [sym_inline_image] = STATE(180), + [sym__image_description] = STATE(666), + [sym__link] = STATE(180), + [sym_full_reference_link] = STATE(180), + [sym_collapsed_reference_link] = STATE(180), + [sym_inline_link] = STATE(180), + [sym_link_text] = STATE(664), + [sym__comment_with_spaces] = STATE(180), + [sym_span] = STATE(180), + [sym_raw_inline] = STATE(180), + [sym_math] = STATE(180), + [sym_verbatim] = STATE(180), + [sym__todo_highlights] = STATE(180), + [sym_todo] = STATE(180), + [sym_note] = STATE(180), + [sym__symbol_fallback] = STATE(180), + [aux_sym__text] = STATE(159), + [aux_sym__inline_repeat1] = STATE(103), + [anon_sym_LBRACE_] = ACTIONS(221), + [anon_sym__] = ACTIONS(223), + [anon_sym_LBRACE_STAR] = ACTIONS(225), + [anon_sym_STAR] = ACTIONS(227), + [anon_sym_LBRACE_CARET] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym_LBRACE_TILDE] = ACTIONS(231), + [anon_sym_TILDE] = ACTIONS(231), + [anon_sym_LBRACE_EQ] = ACTIONS(233), + [anon_sym_LBRACE_PLUS] = ACTIONS(235), + [anon_sym_LBRACE_DASH] = ACTIONS(237), + [anon_sym_BSLASH] = ACTIONS(239), + [sym_quotation_marks] = ACTIONS(241), + [sym_ellipsis] = ACTIONS(241), + [sym_em_dash] = ACTIONS(241), + [sym_en_dash] = ACTIONS(243), + [sym_backslash_escape] = ACTIONS(243), + [anon_sym_LT] = ACTIONS(245), + [sym_symbol] = ACTIONS(241), + [anon_sym_LBRACK_CARET] = ACTIONS(247), + [anon_sym_BANG_LBRACK] = ACTIONS(249), + [anon_sym_LBRACK] = ACTIONS(251), + [anon_sym_LBRACE2] = ACTIONS(243), + [anon_sym_DOLLAR] = ACTIONS(253), + [anon_sym_TODO] = ACTIONS(255), + [anon_sym_WIP] = ACTIONS(255), + [anon_sym_NOTE] = ACTIONS(257), + [anon_sym_INFO] = ACTIONS(257), + [anon_sym_XXX] = ACTIONS(257), + [sym_fixme] = ACTIONS(241), + [sym__whitespace1] = ACTIONS(259), + [sym__newline] = ACTIONS(261), + [aux_sym__text_token1] = ACTIONS(263), + [sym__verbatim_begin] = ACTIONS(265), }, [38] = { - [sym__inline] = STATE(802), - [sym__element] = STATE(91), - [sym_emphasis] = STATE(174), - [sym_emphasis_begin] = STATE(1001), - [sym_strong] = STATE(174), - [sym_strong_begin] = STATE(126), - [sym__hard_line_break] = STATE(174), - [sym_hard_line_break] = STATE(174), - [sym__smart_punctuation] = STATE(174), - [sym_autolink] = STATE(174), - [sym_highlighted] = STATE(174), - [sym_insert] = STATE(174), - [sym_delete] = STATE(174), - [sym_superscript] = STATE(174), - [sym_subscript] = STATE(174), - [sym_footnote_reference] = STATE(174), - [sym__image] = STATE(174), - [sym_full_reference_image] = STATE(174), - [sym_collapsed_reference_image] = STATE(174), - [sym_inline_image] = STATE(174), - [sym__image_description] = STATE(709), - [sym__link] = STATE(174), - [sym_full_reference_link] = STATE(174), - [sym_collapsed_reference_link] = STATE(174), - [sym_inline_link] = STATE(174), - [sym_link_text] = STATE(710), - [sym__comment_with_spaces] = STATE(174), - [sym_span] = STATE(174), - [sym_raw_inline] = STATE(174), - [sym_math] = STATE(174), - [sym_verbatim] = STATE(174), - [sym__todo_highlights] = STATE(174), - [sym_todo] = STATE(174), - [sym_note] = STATE(174), - [sym__symbol_fallback] = STATE(174), - [aux_sym__text] = STATE(148), - [aux_sym__inline_repeat1] = STATE(91), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(213), - [anon_sym__] = ACTIONS(216), - [anon_sym_LBRACE_STAR] = ACTIONS(219), - [anon_sym_STAR] = ACTIONS(222), - [anon_sym_BSLASH] = ACTIONS(225), - [sym_quotation_marks] = ACTIONS(228), - [sym_ellipsis] = ACTIONS(228), - [sym_em_dash] = ACTIONS(228), - [sym_en_dash] = ACTIONS(231), - [sym_backslash_escape] = ACTIONS(231), - [anon_sym_LT] = ACTIONS(234), - [anon_sym_LBRACE_EQ] = ACTIONS(237), - [anon_sym_LBRACE_PLUS] = ACTIONS(240), - [anon_sym_LBRACE_DASH] = ACTIONS(243), - [sym_symbol] = ACTIONS(228), - [anon_sym_LBRACE_CARET] = ACTIONS(246), - [anon_sym_CARET] = ACTIONS(246), - [anon_sym_LBRACE_TILDE] = ACTIONS(249), - [anon_sym_TILDE] = ACTIONS(249), - [anon_sym_LBRACK_CARET] = ACTIONS(252), - [anon_sym_RBRACK] = ACTIONS(93), - [anon_sym_BANG_LBRACK] = ACTIONS(255), - [anon_sym_LBRACK] = ACTIONS(258), - [anon_sym_LBRACE2] = ACTIONS(231), - [anon_sym_DOLLAR] = ACTIONS(261), - [anon_sym_TODO] = ACTIONS(264), - [anon_sym_WIP] = ACTIONS(264), - [anon_sym_NOTE] = ACTIONS(267), - [anon_sym_INFO] = ACTIONS(267), - [anon_sym_XXX] = ACTIONS(267), - [sym_fixme] = ACTIONS(228), - [anon_sym_PIPE] = ACTIONS(228), - [sym__whitespace1] = ACTIONS(270), - [sym__newline] = ACTIONS(273), - [aux_sym__text_token1] = ACTIONS(276), - [sym__verbatim_begin] = ACTIONS(279), + [sym__element] = STATE(68), + [sym_emphasis] = STATE(166), + [sym_emphasis_begin] = STATE(1041), + [sym_strong] = STATE(166), + [sym_strong_begin] = STATE(1040), + [sym_superscript] = STATE(166), + [sym_superscript_begin] = STATE(1039), + [sym_subscript] = STATE(166), + [sym_subscript_begin] = STATE(1038), + [sym_highlighted] = STATE(166), + [sym_highlighted_begin] = STATE(1037), + [sym_insert] = STATE(166), + [sym_insert_begin] = STATE(1036), + [sym_delete] = STATE(166), + [sym_delete_begin] = STATE(1029), + [sym_hard_line_break] = STATE(166), + [sym__smart_punctuation] = STATE(166), + [sym_autolink] = STATE(166), + [sym_footnote_reference] = STATE(166), + [sym__image] = STATE(166), + [sym_full_reference_image] = STATE(166), + [sym_collapsed_reference_image] = STATE(166), + [sym_inline_image] = STATE(166), + [sym__image_description] = STATE(696), + [sym__link] = STATE(166), + [sym_full_reference_link] = STATE(166), + [sym_collapsed_reference_link] = STATE(166), + [sym_inline_link] = STATE(166), + [sym_link_text] = STATE(693), + [sym__comment_with_spaces] = STATE(166), + [sym_span] = STATE(166), + [sym_raw_inline] = STATE(166), + [sym_math] = STATE(166), + [sym_verbatim] = STATE(166), + [sym__todo_highlights] = STATE(166), + [sym_todo] = STATE(166), + [sym_note] = STATE(166), + [sym__symbol_fallback] = STATE(166), + [aux_sym__text] = STATE(160), + [aux_sym__inline_repeat1] = STATE(68), + [ts_builtin_sym_end] = ACTIONS(497), + [anon_sym_LBRACE_] = ACTIONS(3), + [anon_sym__] = ACTIONS(5), + [anon_sym_LBRACE_STAR] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(9), + [anon_sym_LBRACE_CARET] = ACTIONS(11), + [anon_sym_CARET] = ACTIONS(11), + [anon_sym_LBRACE_TILDE] = ACTIONS(13), + [anon_sym_TILDE] = ACTIONS(13), + [anon_sym_LBRACE_EQ] = ACTIONS(15), + [anon_sym_LBRACE_PLUS] = ACTIONS(17), + [anon_sym_LBRACE_DASH] = ACTIONS(19), + [anon_sym_BSLASH] = ACTIONS(21), + [sym_quotation_marks] = ACTIONS(23), + [sym_ellipsis] = ACTIONS(23), + [sym_em_dash] = ACTIONS(23), + [sym_en_dash] = ACTIONS(25), + [sym_backslash_escape] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(27), + [sym_symbol] = ACTIONS(23), + [anon_sym_LBRACK_CARET] = ACTIONS(29), + [anon_sym_BANG_LBRACK] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACE2] = ACTIONS(25), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_TODO] = ACTIONS(37), + [anon_sym_WIP] = ACTIONS(37), + [anon_sym_NOTE] = ACTIONS(39), + [anon_sym_INFO] = ACTIONS(39), + [anon_sym_XXX] = ACTIONS(39), + [sym_fixme] = ACTIONS(23), + [sym__whitespace1] = ACTIONS(41), + [sym__newline] = ACTIONS(499), + [aux_sym__text_token1] = ACTIONS(45), + [sym__verbatim_begin] = ACTIONS(47), }, [39] = { - [sym__inline] = STATE(803), - [sym__element] = STATE(88), - [sym_emphasis] = STATE(209), - [sym_emphasis_begin] = STATE(1002), - [sym_strong] = STATE(209), - [sym_strong_begin] = STATE(121), - [sym__hard_line_break] = STATE(209), - [sym_hard_line_break] = STATE(209), - [sym__smart_punctuation] = STATE(209), - [sym_autolink] = STATE(209), - [sym_highlighted] = STATE(209), - [sym_insert] = STATE(209), - [sym_delete] = STATE(209), - [sym_superscript] = STATE(209), - [sym_subscript] = STATE(209), - [sym_footnote_reference] = STATE(209), - [sym__image] = STATE(209), - [sym_full_reference_image] = STATE(209), - [sym_collapsed_reference_image] = STATE(209), - [sym_inline_image] = STATE(209), - [sym__image_description] = STATE(706), - [sym__link] = STATE(209), - [sym_full_reference_link] = STATE(209), - [sym_collapsed_reference_link] = STATE(209), - [sym_inline_link] = STATE(209), - [sym_link_text] = STATE(707), - [sym__comment_with_spaces] = STATE(209), - [sym_span] = STATE(209), - [sym_raw_inline] = STATE(209), - [sym_math] = STATE(209), - [sym_verbatim] = STATE(209), - [sym__todo_highlights] = STATE(209), - [sym_todo] = STATE(209), - [sym_note] = STATE(209), - [sym__symbol_fallback] = STATE(209), - [aux_sym__text] = STATE(150), - [aux_sym__inline_repeat1] = STATE(88), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(282), - [anon_sym__] = ACTIONS(285), - [anon_sym_LBRACE_STAR] = ACTIONS(288), - [anon_sym_STAR] = ACTIONS(291), - [anon_sym_BSLASH] = ACTIONS(294), - [sym_quotation_marks] = ACTIONS(297), - [sym_ellipsis] = ACTIONS(297), - [sym_em_dash] = ACTIONS(297), - [sym_en_dash] = ACTIONS(300), - [sym_backslash_escape] = ACTIONS(300), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACE_EQ] = ACTIONS(306), - [anon_sym_LBRACE_PLUS] = ACTIONS(309), - [anon_sym_LBRACE_DASH] = ACTIONS(312), - [sym_symbol] = ACTIONS(297), - [anon_sym_LBRACE_CARET] = ACTIONS(315), - [anon_sym_CARET] = ACTIONS(315), - [anon_sym_LBRACE_TILDE] = ACTIONS(318), - [anon_sym_TILDE] = ACTIONS(318), - [anon_sym_LBRACK_CARET] = ACTIONS(321), - [anon_sym_RBRACK] = ACTIONS(93), - [anon_sym_BANG_LBRACK] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(327), - [anon_sym_LBRACE2] = ACTIONS(300), - [anon_sym_DOLLAR] = ACTIONS(330), - [anon_sym_TODO] = ACTIONS(333), - [anon_sym_WIP] = ACTIONS(333), - [anon_sym_NOTE] = ACTIONS(336), - [anon_sym_INFO] = ACTIONS(336), - [anon_sym_XXX] = ACTIONS(336), - [sym_fixme] = ACTIONS(297), - [anon_sym_PIPE] = ACTIONS(297), - [sym__whitespace1] = ACTIONS(339), - [sym__newline] = ACTIONS(342), - [aux_sym__text_token1] = ACTIONS(345), - [sym__verbatim_begin] = ACTIONS(348), + [sym__inline] = STATE(831), + [sym__element] = STATE(93), + [sym_emphasis] = STATE(197), + [sym_emphasis_begin] = STATE(1088), + [sym_strong] = STATE(197), + [sym_strong_begin] = STATE(1089), + [sym_superscript] = STATE(197), + [sym_superscript_begin] = STATE(1090), + [sym_subscript] = STATE(197), + [sym_subscript_begin] = STATE(1091), + [sym_highlighted] = STATE(197), + [sym_highlighted_begin] = STATE(1092), + [sym_insert] = STATE(197), + [sym_insert_begin] = STATE(1093), + [sym_delete] = STATE(197), + [sym_delete_begin] = STATE(1094), + [sym_hard_line_break] = STATE(197), + [sym__smart_punctuation] = STATE(197), + [sym_autolink] = STATE(197), + [sym_footnote_reference] = STATE(197), + [sym__image] = STATE(197), + [sym_full_reference_image] = STATE(197), + [sym_collapsed_reference_image] = STATE(197), + [sym_inline_image] = STATE(197), + [sym__image_description] = STATE(697), + [sym__link] = STATE(197), + [sym_full_reference_link] = STATE(197), + [sym_collapsed_reference_link] = STATE(197), + [sym_inline_link] = STATE(197), + [sym_link_text] = STATE(682), + [sym__comment_with_spaces] = STATE(197), + [sym_span] = STATE(197), + [sym_raw_inline] = STATE(197), + [sym_math] = STATE(197), + [sym_verbatim] = STATE(197), + [sym__todo_highlights] = STATE(197), + [sym_todo] = STATE(197), + [sym_note] = STATE(197), + [sym__symbol_fallback] = STATE(197), + [aux_sym__text] = STATE(134), + [aux_sym__inline_repeat1] = STATE(93), + [anon_sym_LBRACE_] = ACTIONS(313), + [anon_sym__] = ACTIONS(315), + [anon_sym_LBRACE_STAR] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_LBRACE_CARET] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [anon_sym_LBRACE_TILDE] = ACTIONS(323), + [anon_sym_TILDE] = ACTIONS(323), + [anon_sym_LBRACE_EQ] = ACTIONS(325), + [anon_sym_LBRACE_PLUS] = ACTIONS(327), + [anon_sym_LBRACE_DASH] = ACTIONS(329), + [anon_sym_BSLASH] = ACTIONS(331), + [sym_quotation_marks] = ACTIONS(333), + [sym_ellipsis] = ACTIONS(333), + [sym_em_dash] = ACTIONS(333), + [sym_en_dash] = ACTIONS(335), + [sym_backslash_escape] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(337), + [sym_symbol] = ACTIONS(333), + [anon_sym_LBRACK_CARET] = ACTIONS(339), + [anon_sym_BANG_LBRACK] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE2] = ACTIONS(335), + [anon_sym_DOLLAR] = ACTIONS(345), + [anon_sym_TODO] = ACTIONS(347), + [anon_sym_WIP] = ACTIONS(347), + [anon_sym_NOTE] = ACTIONS(349), + [anon_sym_INFO] = ACTIONS(349), + [anon_sym_XXX] = ACTIONS(349), + [sym_fixme] = ACTIONS(333), + [sym__whitespace1] = ACTIONS(351), + [sym__newline] = ACTIONS(353), + [aux_sym__text_token1] = ACTIONS(355), + [sym__verbatim_begin] = ACTIONS(357), }, [40] = { - [sym__inline] = STATE(784), - [sym__element] = STATE(102), - [sym_emphasis] = STATE(194), - [sym_emphasis_begin] = STATE(1003), - [sym_strong] = STATE(194), - [sym_strong_begin] = STATE(113), - [sym__hard_line_break] = STATE(194), - [sym_hard_line_break] = STATE(194), - [sym__smart_punctuation] = STATE(194), - [sym_autolink] = STATE(194), - [sym_highlighted] = STATE(194), - [sym_insert] = STATE(194), - [sym_delete] = STATE(194), - [sym_superscript] = STATE(194), - [sym_subscript] = STATE(194), - [sym_footnote_reference] = STATE(194), - [sym__image] = STATE(194), - [sym_full_reference_image] = STATE(194), - [sym_collapsed_reference_image] = STATE(194), - [sym_inline_image] = STATE(194), - [sym__image_description] = STATE(696), - [sym__link] = STATE(194), - [sym_full_reference_link] = STATE(194), - [sym_collapsed_reference_link] = STATE(194), - [sym_inline_link] = STATE(194), - [sym_link_text] = STATE(695), - [sym__comment_with_spaces] = STATE(194), - [sym_span] = STATE(194), - [sym_raw_inline] = STATE(194), - [sym_math] = STATE(194), - [sym_verbatim] = STATE(194), - [sym__todo_highlights] = STATE(194), - [sym_todo] = STATE(194), - [sym_note] = STATE(194), - [sym__symbol_fallback] = STATE(194), - [aux_sym__text] = STATE(170), - [aux_sym__inline_repeat1] = STATE(102), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(351), - [anon_sym__] = ACTIONS(354), - [anon_sym_LBRACE_STAR] = ACTIONS(357), - [anon_sym_STAR] = ACTIONS(360), - [anon_sym_BSLASH] = ACTIONS(363), - [sym_quotation_marks] = ACTIONS(366), - [sym_ellipsis] = ACTIONS(366), - [sym_em_dash] = ACTIONS(366), - [sym_en_dash] = ACTIONS(369), - [sym_backslash_escape] = ACTIONS(369), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_LBRACE_EQ] = ACTIONS(375), - [anon_sym_LBRACE_PLUS] = ACTIONS(378), - [anon_sym_LBRACE_DASH] = ACTIONS(381), - [sym_symbol] = ACTIONS(366), - [anon_sym_LBRACE_CARET] = ACTIONS(384), - [anon_sym_CARET] = ACTIONS(384), - [anon_sym_LBRACE_TILDE] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_LBRACK_CARET] = ACTIONS(390), - [anon_sym_RBRACK] = ACTIONS(93), - [anon_sym_BANG_LBRACK] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(396), - [anon_sym_LBRACE2] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(399), - [anon_sym_TODO] = ACTIONS(402), - [anon_sym_WIP] = ACTIONS(402), - [anon_sym_NOTE] = ACTIONS(405), - [anon_sym_INFO] = ACTIONS(405), - [anon_sym_XXX] = ACTIONS(405), - [sym_fixme] = ACTIONS(366), - [anon_sym_PIPE] = ACTIONS(366), - [sym__whitespace1] = ACTIONS(408), - [sym__newline] = ACTIONS(411), - [aux_sym__text_token1] = ACTIONS(414), - [sym__verbatim_begin] = ACTIONS(417), + [sym__element] = STATE(40), + [sym_emphasis] = STATE(171), + [sym_emphasis_begin] = STATE(1116), + [sym_strong] = STATE(171), + [sym_strong_begin] = STATE(1117), + [sym_superscript] = STATE(171), + [sym_superscript_begin] = STATE(1118), + [sym_subscript] = STATE(171), + [sym_subscript_begin] = STATE(1119), + [sym_highlighted] = STATE(171), + [sym_highlighted_begin] = STATE(1120), + [sym_insert] = STATE(171), + [sym_insert_begin] = STATE(1121), + [sym_delete] = STATE(171), + [sym_delete_begin] = STATE(1122), + [sym_hard_line_break] = STATE(171), + [sym__smart_punctuation] = STATE(171), + [sym_autolink] = STATE(171), + [sym_footnote_reference] = STATE(171), + [sym__image] = STATE(171), + [sym_full_reference_image] = STATE(171), + [sym_collapsed_reference_image] = STATE(171), + [sym_inline_image] = STATE(171), + [sym__image_description] = STATE(674), + [sym__link] = STATE(171), + [sym_full_reference_link] = STATE(171), + [sym_collapsed_reference_link] = STATE(171), + [sym_inline_link] = STATE(171), + [sym_link_text] = STATE(675), + [sym__comment_with_spaces] = STATE(171), + [sym_span] = STATE(171), + [sym_raw_inline] = STATE(171), + [sym_math] = STATE(171), + [sym_verbatim] = STATE(171), + [sym__todo_highlights] = STATE(171), + [sym_todo] = STATE(171), + [sym_note] = STATE(171), + [sym__symbol_fallback] = STATE(171), + [aux_sym__text] = STATE(146), + [aux_sym__inline_repeat1] = STATE(40), + [anon_sym_LBRACE_] = ACTIONS(501), + [anon_sym__] = ACTIONS(504), + [anon_sym_LBRACE_STAR] = ACTIONS(507), + [anon_sym_STAR] = ACTIONS(510), + [anon_sym_LBRACE_CARET] = ACTIONS(513), + [anon_sym_CARET] = ACTIONS(513), + [anon_sym_LBRACE_TILDE] = ACTIONS(516), + [anon_sym_TILDE] = ACTIONS(516), + [anon_sym_LBRACE_EQ] = ACTIONS(519), + [anon_sym_LBRACE_PLUS] = ACTIONS(522), + [anon_sym_LBRACE_DASH] = ACTIONS(525), + [anon_sym_BSLASH] = ACTIONS(528), + [sym_quotation_marks] = ACTIONS(531), + [sym_ellipsis] = ACTIONS(531), + [sym_em_dash] = ACTIONS(531), + [sym_en_dash] = ACTIONS(534), + [sym_backslash_escape] = ACTIONS(534), + [anon_sym_LT] = ACTIONS(537), + [sym_symbol] = ACTIONS(531), + [anon_sym_LBRACK_CARET] = ACTIONS(540), + [anon_sym_BANG_LBRACK] = ACTIONS(543), + [anon_sym_LBRACK] = ACTIONS(546), + [anon_sym_RBRACK2] = ACTIONS(549), + [anon_sym_LBRACE2] = ACTIONS(534), + [anon_sym_DOLLAR] = ACTIONS(551), + [anon_sym_TODO] = ACTIONS(554), + [anon_sym_WIP] = ACTIONS(554), + [anon_sym_NOTE] = ACTIONS(557), + [anon_sym_INFO] = ACTIONS(557), + [anon_sym_XXX] = ACTIONS(557), + [sym_fixme] = ACTIONS(531), + [sym__whitespace1] = ACTIONS(560), + [sym__newline] = ACTIONS(563), + [aux_sym__text_token1] = ACTIONS(566), + [sym__verbatim_begin] = ACTIONS(569), }, [41] = { - [sym__inline] = STATE(736), - [sym__element] = STATE(114), - [sym_emphasis] = STATE(181), - [sym_emphasis_begin] = STATE(1004), - [sym_strong] = STATE(181), - [sym_strong_begin] = STATE(110), - [sym__hard_line_break] = STATE(181), - [sym_hard_line_break] = STATE(181), - [sym__smart_punctuation] = STATE(181), - [sym_autolink] = STATE(181), - [sym_highlighted] = STATE(181), - [sym_insert] = STATE(181), - [sym_delete] = STATE(181), - [sym_superscript] = STATE(181), - [sym_subscript] = STATE(181), - [sym_footnote_reference] = STATE(181), - [sym__image] = STATE(181), - [sym_full_reference_image] = STATE(181), - [sym_collapsed_reference_image] = STATE(181), - [sym_inline_image] = STATE(181), - [sym__image_description] = STATE(688), - [sym__link] = STATE(181), - [sym_full_reference_link] = STATE(181), - [sym_collapsed_reference_link] = STATE(181), - [sym_inline_link] = STATE(181), - [sym_link_text] = STATE(693), - [sym__comment_with_spaces] = STATE(181), - [sym_span] = STATE(181), - [sym_raw_inline] = STATE(181), - [sym_math] = STATE(181), - [sym_verbatim] = STATE(181), - [sym__todo_highlights] = STATE(181), - [sym_todo] = STATE(181), - [sym_note] = STATE(181), - [sym__symbol_fallback] = STATE(181), - [aux_sym__text] = STATE(153), - [aux_sym__inline_repeat1] = STATE(114), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(420), - [anon_sym__] = ACTIONS(423), - [anon_sym_LBRACE_STAR] = ACTIONS(426), - [anon_sym_STAR] = ACTIONS(429), - [anon_sym_BSLASH] = ACTIONS(432), - [sym_quotation_marks] = ACTIONS(435), - [sym_ellipsis] = ACTIONS(435), - [sym_em_dash] = ACTIONS(435), - [sym_en_dash] = ACTIONS(438), - [sym_backslash_escape] = ACTIONS(438), - [anon_sym_LT] = ACTIONS(441), - [anon_sym_LBRACE_EQ] = ACTIONS(444), - [anon_sym_LBRACE_PLUS] = ACTIONS(447), - [anon_sym_LBRACE_DASH] = ACTIONS(450), - [sym_symbol] = ACTIONS(435), - [anon_sym_LBRACE_CARET] = ACTIONS(453), - [anon_sym_CARET] = ACTIONS(453), - [anon_sym_LBRACE_TILDE] = ACTIONS(456), - [anon_sym_TILDE] = ACTIONS(456), - [anon_sym_LBRACK_CARET] = ACTIONS(459), - [anon_sym_RBRACK] = ACTIONS(93), - [anon_sym_BANG_LBRACK] = ACTIONS(462), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_LBRACE2] = ACTIONS(438), - [anon_sym_DOLLAR] = ACTIONS(468), - [anon_sym_TODO] = ACTIONS(471), - [anon_sym_WIP] = ACTIONS(471), - [anon_sym_NOTE] = ACTIONS(474), - [anon_sym_INFO] = ACTIONS(474), - [anon_sym_XXX] = ACTIONS(474), - [sym_fixme] = ACTIONS(435), - [anon_sym_PIPE] = ACTIONS(435), - [sym__whitespace1] = ACTIONS(477), - [sym__newline] = ACTIONS(480), - [aux_sym__text_token1] = ACTIONS(483), - [sym__verbatim_begin] = ACTIONS(486), + [sym__inline] = STATE(830), + [sym__element] = STATE(79), + [sym_emphasis] = STATE(161), + [sym_emphasis_begin] = STATE(1081), + [sym_strong] = STATE(161), + [sym_strong_begin] = STATE(1082), + [sym_superscript] = STATE(161), + [sym_superscript_begin] = STATE(1083), + [sym_subscript] = STATE(161), + [sym_subscript_begin] = STATE(1084), + [sym_highlighted] = STATE(161), + [sym_highlighted_begin] = STATE(1085), + [sym_insert] = STATE(161), + [sym_insert_begin] = STATE(1086), + [sym_delete] = STATE(161), + [sym_delete_begin] = STATE(1087), + [sym_hard_line_break] = STATE(161), + [sym__smart_punctuation] = STATE(161), + [sym_autolink] = STATE(161), + [sym_footnote_reference] = STATE(161), + [sym__image] = STATE(161), + [sym_full_reference_image] = STATE(161), + [sym_collapsed_reference_image] = STATE(161), + [sym_inline_image] = STATE(161), + [sym__image_description] = STATE(692), + [sym__link] = STATE(161), + [sym_full_reference_link] = STATE(161), + [sym_collapsed_reference_link] = STATE(161), + [sym_inline_link] = STATE(161), + [sym_link_text] = STATE(687), + [sym__comment_with_spaces] = STATE(161), + [sym_span] = STATE(161), + [sym_raw_inline] = STATE(161), + [sym_math] = STATE(161), + [sym_verbatim] = STATE(161), + [sym__todo_highlights] = STATE(161), + [sym_todo] = STATE(161), + [sym_note] = STATE(161), + [sym__symbol_fallback] = STATE(161), + [aux_sym__text] = STATE(149), + [aux_sym__inline_repeat1] = STATE(79), + [anon_sym_LBRACE_] = ACTIONS(359), + [anon_sym__] = ACTIONS(361), + [anon_sym_LBRACE_STAR] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(365), + [anon_sym_LBRACE_CARET] = ACTIONS(367), + [anon_sym_CARET] = ACTIONS(367), + [anon_sym_LBRACE_TILDE] = ACTIONS(369), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_LBRACE_EQ] = ACTIONS(371), + [anon_sym_LBRACE_PLUS] = ACTIONS(373), + [anon_sym_LBRACE_DASH] = ACTIONS(375), + [anon_sym_BSLASH] = ACTIONS(377), + [sym_quotation_marks] = ACTIONS(379), + [sym_ellipsis] = ACTIONS(379), + [sym_em_dash] = ACTIONS(379), + [sym_en_dash] = ACTIONS(381), + [sym_backslash_escape] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(383), + [sym_symbol] = ACTIONS(379), + [anon_sym_LBRACK_CARET] = ACTIONS(385), + [anon_sym_BANG_LBRACK] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE2] = ACTIONS(381), + [anon_sym_DOLLAR] = ACTIONS(391), + [anon_sym_TODO] = ACTIONS(393), + [anon_sym_WIP] = ACTIONS(393), + [anon_sym_NOTE] = ACTIONS(395), + [anon_sym_INFO] = ACTIONS(395), + [anon_sym_XXX] = ACTIONS(395), + [sym_fixme] = ACTIONS(379), + [sym__whitespace1] = ACTIONS(397), + [sym__newline] = ACTIONS(399), + [aux_sym__text_token1] = ACTIONS(401), + [sym__verbatim_begin] = ACTIONS(403), }, [42] = { - [sym__inline] = STATE(823), - [sym__element] = STATE(115), - [sym_emphasis] = STATE(205), - [sym_emphasis_begin] = STATE(1000), - [sym_strong] = STATE(205), - [sym_strong_begin] = STATE(129), - [sym__hard_line_break] = STATE(205), - [sym_hard_line_break] = STATE(205), - [sym__smart_punctuation] = STATE(205), - [sym_autolink] = STATE(205), - [sym_highlighted] = STATE(205), - [sym_insert] = STATE(205), - [sym_delete] = STATE(205), - [sym_superscript] = STATE(205), - [sym_subscript] = STATE(205), - [sym_footnote_reference] = STATE(205), - [sym__image] = STATE(205), - [sym_full_reference_image] = STATE(205), - [sym_collapsed_reference_image] = STATE(205), - [sym_inline_image] = STATE(205), - [sym__image_description] = STATE(705), - [sym__link] = STATE(205), - [sym_full_reference_link] = STATE(205), - [sym_collapsed_reference_link] = STATE(205), - [sym_inline_link] = STATE(205), - [sym_link_text] = STATE(703), - [sym__comment_with_spaces] = STATE(205), - [sym_span] = STATE(205), - [sym_raw_inline] = STATE(205), - [sym_math] = STATE(205), - [sym_verbatim] = STATE(205), - [sym__todo_highlights] = STATE(205), - [sym_todo] = STATE(205), - [sym_note] = STATE(205), - [sym__symbol_fallback] = STATE(205), - [aux_sym__text] = STATE(136), - [aux_sym__inline_repeat1] = STATE(115), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(141), - [anon_sym__] = ACTIONS(144), - [anon_sym_LBRACE_STAR] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(150), - [anon_sym_BSLASH] = ACTIONS(153), - [sym_quotation_marks] = ACTIONS(156), - [sym_ellipsis] = ACTIONS(156), - [sym_em_dash] = ACTIONS(156), - [sym_en_dash] = ACTIONS(159), - [sym_backslash_escape] = ACTIONS(159), - [anon_sym_LT] = ACTIONS(162), - [anon_sym_LBRACE_EQ] = ACTIONS(165), - [anon_sym_LBRACE_PLUS] = ACTIONS(168), - [anon_sym_LBRACE_DASH] = ACTIONS(171), - [anon_sym_DASH_RBRACE] = ACTIONS(93), - [sym_symbol] = ACTIONS(156), - [anon_sym_LBRACE_CARET] = ACTIONS(174), - [anon_sym_CARET] = ACTIONS(174), - [anon_sym_LBRACE_TILDE] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_LBRACK_CARET] = ACTIONS(183), - [anon_sym_BANG_LBRACK] = ACTIONS(186), - [anon_sym_LBRACK] = ACTIONS(189), - [anon_sym_LBRACE2] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(192), - [anon_sym_TODO] = ACTIONS(195), - [anon_sym_WIP] = ACTIONS(195), - [anon_sym_NOTE] = ACTIONS(198), - [anon_sym_INFO] = ACTIONS(198), - [anon_sym_XXX] = ACTIONS(198), - [sym_fixme] = ACTIONS(156), - [anon_sym_PIPE] = ACTIONS(156), - [sym__whitespace1] = ACTIONS(201), - [sym__newline] = ACTIONS(204), - [aux_sym__text_token1] = ACTIONS(207), - [sym__verbatim_begin] = ACTIONS(210), + [sym__inline_without_trailing_space] = STATE(829), + [sym__element] = STATE(572), + [sym_emphasis] = STATE(208), + [sym_emphasis_begin] = STATE(1074), + [sym_strong] = STATE(208), + [sym_strong_begin] = STATE(1075), + [sym_superscript] = STATE(208), + [sym_superscript_begin] = STATE(1076), + [sym_subscript] = STATE(208), + [sym_subscript_begin] = STATE(1077), + [sym_highlighted] = STATE(208), + [sym_highlighted_begin] = STATE(1078), + [sym_insert] = STATE(208), + [sym_insert_begin] = STATE(1079), + [sym_delete] = STATE(208), + [sym_delete_begin] = STATE(1080), + [sym_hard_line_break] = STATE(208), + [sym__smart_punctuation] = STATE(208), + [sym_autolink] = STATE(208), + [sym_footnote_reference] = STATE(208), + [sym__image] = STATE(208), + [sym_full_reference_image] = STATE(208), + [sym_collapsed_reference_image] = STATE(208), + [sym_inline_image] = STATE(208), + [sym__image_description] = STATE(680), + [sym__link] = STATE(208), + [sym_full_reference_link] = STATE(208), + [sym_collapsed_reference_link] = STATE(208), + [sym_inline_link] = STATE(208), + [sym_link_text] = STATE(663), + [sym__comment_with_spaces] = STATE(208), + [sym_span] = STATE(208), + [sym_raw_inline] = STATE(208), + [sym_math] = STATE(208), + [sym_verbatim] = STATE(208), + [sym__todo_highlights] = STATE(208), + [sym_todo] = STATE(208), + [sym_note] = STATE(208), + [sym__symbol_fallback] = STATE(208), + [aux_sym__text] = STATE(131), + [aux_sym__inline_repeat1] = STATE(130), + [anon_sym_LBRACE_] = ACTIONS(175), + [anon_sym__] = ACTIONS(177), + [anon_sym_LBRACE_STAR] = ACTIONS(179), + [anon_sym_STAR] = ACTIONS(181), + [anon_sym_LBRACE_CARET] = ACTIONS(183), + [anon_sym_CARET] = ACTIONS(183), + [anon_sym_LBRACE_TILDE] = ACTIONS(185), + [anon_sym_TILDE] = ACTIONS(185), + [anon_sym_LBRACE_EQ] = ACTIONS(187), + [anon_sym_LBRACE_PLUS] = ACTIONS(189), + [anon_sym_LBRACE_DASH] = ACTIONS(191), + [anon_sym_BSLASH] = ACTIONS(193), + [sym_quotation_marks] = ACTIONS(195), + [sym_ellipsis] = ACTIONS(195), + [sym_em_dash] = ACTIONS(195), + [sym_en_dash] = ACTIONS(197), + [sym_backslash_escape] = ACTIONS(197), + [anon_sym_LT] = ACTIONS(199), + [sym_symbol] = ACTIONS(195), + [anon_sym_LBRACK_CARET] = ACTIONS(201), + [anon_sym_BANG_LBRACK] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACE2] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(207), + [anon_sym_TODO] = ACTIONS(209), + [anon_sym_WIP] = ACTIONS(209), + [anon_sym_NOTE] = ACTIONS(211), + [anon_sym_INFO] = ACTIONS(211), + [anon_sym_XXX] = ACTIONS(211), + [sym_fixme] = ACTIONS(195), + [sym__whitespace1] = ACTIONS(213), + [sym__newline] = ACTIONS(215), + [aux_sym__text_token1] = ACTIONS(217), + [sym__verbatim_begin] = ACTIONS(219), }, [43] = { - [sym__inline] = STATE(957), - [sym__element] = STATE(118), - [sym_emphasis] = STATE(201), - [sym_emphasis_begin] = STATE(1005), - [sym_strong] = STATE(201), - [sym_strong_begin] = STATE(105), - [sym__hard_line_break] = STATE(201), - [sym_hard_line_break] = STATE(201), - [sym__smart_punctuation] = STATE(201), - [sym_autolink] = STATE(201), - [sym_highlighted] = STATE(201), - [sym_insert] = STATE(201), - [sym_delete] = STATE(201), - [sym_superscript] = STATE(201), - [sym_subscript] = STATE(201), - [sym_footnote_reference] = STATE(201), - [sym__image] = STATE(201), - [sym_full_reference_image] = STATE(201), - [sym_collapsed_reference_image] = STATE(201), - [sym_inline_image] = STATE(201), - [sym__image_description] = STATE(712), - [sym__link] = STATE(201), - [sym_full_reference_link] = STATE(201), - [sym_collapsed_reference_link] = STATE(201), - [sym_inline_link] = STATE(201), - [sym_link_text] = STATE(717), - [sym__comment_with_spaces] = STATE(201), - [sym_span] = STATE(201), - [sym_raw_inline] = STATE(201), - [sym_math] = STATE(201), - [sym_verbatim] = STATE(201), - [sym__todo_highlights] = STATE(201), - [sym_todo] = STATE(201), - [sym_note] = STATE(201), - [sym__symbol_fallback] = STATE(201), - [aux_sym__text] = STATE(139), - [aux_sym__inline_repeat1] = STATE(118), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(51), - [anon_sym__] = ACTIONS(54), - [anon_sym_LBRACE_STAR] = ACTIONS(57), - [anon_sym_STAR] = ACTIONS(60), - [anon_sym_BSLASH] = ACTIONS(63), - [sym_quotation_marks] = ACTIONS(66), - [sym_ellipsis] = ACTIONS(66), - [sym_em_dash] = ACTIONS(66), - [sym_en_dash] = ACTIONS(69), - [sym_backslash_escape] = ACTIONS(69), - [anon_sym_LT] = ACTIONS(72), - [anon_sym_LBRACE_EQ] = ACTIONS(75), - [anon_sym_LBRACE_PLUS] = ACTIONS(78), - [anon_sym_LBRACE_DASH] = ACTIONS(81), - [sym_symbol] = ACTIONS(66), - [anon_sym_LBRACE_CARET] = ACTIONS(84), - [anon_sym_CARET] = ACTIONS(84), - [anon_sym_LBRACE_TILDE] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(87), - [anon_sym_LBRACK_CARET] = ACTIONS(95), - [anon_sym_RBRACK] = ACTIONS(93), - [anon_sym_BANG_LBRACK] = ACTIONS(100), - [anon_sym_LBRACK] = ACTIONS(103), - [anon_sym_LBRACE2] = ACTIONS(69), - [anon_sym_DOLLAR] = ACTIONS(106), - [anon_sym_TODO] = ACTIONS(109), - [anon_sym_WIP] = ACTIONS(109), - [anon_sym_NOTE] = ACTIONS(112), - [anon_sym_INFO] = ACTIONS(112), - [anon_sym_XXX] = ACTIONS(112), - [sym_fixme] = ACTIONS(66), - [anon_sym_PIPE] = ACTIONS(66), - [sym__whitespace1] = ACTIONS(115), - [sym__newline] = ACTIONS(118), - [aux_sym__text_token1] = ACTIONS(121), - [sym__verbatim_begin] = ACTIONS(124), + [sym__inline] = STATE(893), + [sym__element] = STATE(111), + [sym_emphasis] = STATE(186), + [sym_emphasis_begin] = STATE(1102), + [sym_strong] = STATE(186), + [sym_strong_begin] = STATE(1103), + [sym_superscript] = STATE(186), + [sym_superscript_begin] = STATE(1104), + [sym_subscript] = STATE(186), + [sym_subscript_begin] = STATE(1105), + [sym_highlighted] = STATE(186), + [sym_highlighted_begin] = STATE(1106), + [sym_insert] = STATE(186), + [sym_insert_begin] = STATE(1107), + [sym_delete] = STATE(186), + [sym_delete_begin] = STATE(1108), + [sym_hard_line_break] = STATE(186), + [sym__smart_punctuation] = STATE(186), + [sym_autolink] = STATE(186), + [sym_footnote_reference] = STATE(186), + [sym__image] = STATE(186), + [sym_full_reference_image] = STATE(186), + [sym_collapsed_reference_image] = STATE(186), + [sym_inline_image] = STATE(186), + [sym__image_description] = STATE(673), + [sym__link] = STATE(186), + [sym_full_reference_link] = STATE(186), + [sym_collapsed_reference_link] = STATE(186), + [sym_inline_link] = STATE(186), + [sym_link_text] = STATE(672), + [sym__comment_with_spaces] = STATE(186), + [sym_span] = STATE(186), + [sym_raw_inline] = STATE(186), + [sym_math] = STATE(186), + [sym_verbatim] = STATE(186), + [sym__todo_highlights] = STATE(186), + [sym_todo] = STATE(186), + [sym_note] = STATE(186), + [sym__symbol_fallback] = STATE(186), + [aux_sym__text] = STATE(155), + [aux_sym__inline_repeat1] = STATE(111), + [anon_sym_LBRACE_] = ACTIONS(267), + [anon_sym__] = ACTIONS(269), + [anon_sym_LBRACE_STAR] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_LBRACE_CARET] = ACTIONS(275), + [anon_sym_CARET] = ACTIONS(275), + [anon_sym_LBRACE_TILDE] = ACTIONS(277), + [anon_sym_TILDE] = ACTIONS(277), + [anon_sym_LBRACE_EQ] = ACTIONS(279), + [anon_sym_LBRACE_PLUS] = ACTIONS(281), + [anon_sym_LBRACE_DASH] = ACTIONS(283), + [anon_sym_BSLASH] = ACTIONS(285), + [sym_quotation_marks] = ACTIONS(287), + [sym_ellipsis] = ACTIONS(287), + [sym_em_dash] = ACTIONS(287), + [sym_en_dash] = ACTIONS(289), + [sym_backslash_escape] = ACTIONS(289), + [anon_sym_LT] = ACTIONS(291), + [sym_symbol] = ACTIONS(287), + [anon_sym_LBRACK_CARET] = ACTIONS(293), + [anon_sym_BANG_LBRACK] = ACTIONS(295), + [anon_sym_LBRACK] = ACTIONS(297), + [anon_sym_LBRACE2] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(299), + [anon_sym_TODO] = ACTIONS(301), + [anon_sym_WIP] = ACTIONS(301), + [anon_sym_NOTE] = ACTIONS(303), + [anon_sym_INFO] = ACTIONS(303), + [anon_sym_XXX] = ACTIONS(303), + [sym_fixme] = ACTIONS(287), + [sym__whitespace1] = ACTIONS(305), + [sym__newline] = ACTIONS(307), + [aux_sym__text_token1] = ACTIONS(309), + [sym__verbatim_begin] = ACTIONS(311), }, [44] = { - [sym__inline] = STATE(912), - [sym__element] = STATE(118), - [sym_emphasis] = STATE(201), - [sym_emphasis_begin] = STATE(1005), - [sym_strong] = STATE(201), - [sym_strong_begin] = STATE(105), - [sym__hard_line_break] = STATE(201), - [sym_hard_line_break] = STATE(201), - [sym__smart_punctuation] = STATE(201), - [sym_autolink] = STATE(201), - [sym_highlighted] = STATE(201), - [sym_insert] = STATE(201), - [sym_delete] = STATE(201), - [sym_superscript] = STATE(201), - [sym_subscript] = STATE(201), - [sym_footnote_reference] = STATE(201), - [sym__image] = STATE(201), - [sym_full_reference_image] = STATE(201), - [sym_collapsed_reference_image] = STATE(201), - [sym_inline_image] = STATE(201), - [sym__image_description] = STATE(712), - [sym__link] = STATE(201), - [sym_full_reference_link] = STATE(201), - [sym_collapsed_reference_link] = STATE(201), - [sym_inline_link] = STATE(201), - [sym_link_text] = STATE(717), - [sym__comment_with_spaces] = STATE(201), - [sym_span] = STATE(201), - [sym_raw_inline] = STATE(201), - [sym_math] = STATE(201), - [sym_verbatim] = STATE(201), - [sym__todo_highlights] = STATE(201), - [sym_todo] = STATE(201), - [sym_note] = STATE(201), - [sym__symbol_fallback] = STATE(201), - [aux_sym__text] = STATE(139), - [aux_sym__inline_repeat1] = STATE(118), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(51), - [anon_sym__] = ACTIONS(54), - [anon_sym_LBRACE_STAR] = ACTIONS(57), - [anon_sym_STAR] = ACTIONS(60), - [anon_sym_BSLASH] = ACTIONS(63), - [sym_quotation_marks] = ACTIONS(66), - [sym_ellipsis] = ACTIONS(66), - [sym_em_dash] = ACTIONS(66), - [sym_en_dash] = ACTIONS(69), - [sym_backslash_escape] = ACTIONS(69), - [anon_sym_LT] = ACTIONS(72), - [anon_sym_LBRACE_EQ] = ACTIONS(75), - [anon_sym_EQ_RBRACE] = ACTIONS(93), - [anon_sym_LBRACE_PLUS] = ACTIONS(78), - [anon_sym_LBRACE_DASH] = ACTIONS(81), - [sym_symbol] = ACTIONS(66), - [anon_sym_LBRACE_CARET] = ACTIONS(84), - [anon_sym_CARET] = ACTIONS(84), - [anon_sym_LBRACE_TILDE] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(87), - [anon_sym_LBRACK_CARET] = ACTIONS(95), - [anon_sym_BANG_LBRACK] = ACTIONS(100), - [anon_sym_LBRACK] = ACTIONS(103), - [anon_sym_LBRACE2] = ACTIONS(69), - [anon_sym_DOLLAR] = ACTIONS(106), - [anon_sym_TODO] = ACTIONS(109), - [anon_sym_WIP] = ACTIONS(109), - [anon_sym_NOTE] = ACTIONS(112), - [anon_sym_INFO] = ACTIONS(112), - [anon_sym_XXX] = ACTIONS(112), - [sym_fixme] = ACTIONS(66), - [anon_sym_PIPE] = ACTIONS(66), - [sym__whitespace1] = ACTIONS(115), - [sym__newline] = ACTIONS(118), - [aux_sym__text_token1] = ACTIONS(121), - [sym__verbatim_begin] = ACTIONS(124), + [sym__inline_without_trailing_space] = STATE(828), + [sym__element] = STATE(603), + [sym_emphasis] = STATE(177), + [sym_emphasis_begin] = STATE(1067), + [sym_strong] = STATE(177), + [sym_strong_begin] = STATE(1068), + [sym_superscript] = STATE(177), + [sym_superscript_begin] = STATE(1069), + [sym_subscript] = STATE(177), + [sym_subscript_begin] = STATE(1070), + [sym_highlighted] = STATE(177), + [sym_highlighted_begin] = STATE(1071), + [sym_insert] = STATE(177), + [sym_insert_begin] = STATE(1072), + [sym_delete] = STATE(177), + [sym_delete_begin] = STATE(1073), + [sym_hard_line_break] = STATE(177), + [sym__smart_punctuation] = STATE(177), + [sym_autolink] = STATE(177), + [sym_footnote_reference] = STATE(177), + [sym__image] = STATE(177), + [sym_full_reference_image] = STATE(177), + [sym_collapsed_reference_image] = STATE(177), + [sym_inline_image] = STATE(177), + [sym__image_description] = STATE(681), + [sym__link] = STATE(177), + [sym_full_reference_link] = STATE(177), + [sym_collapsed_reference_link] = STATE(177), + [sym_inline_link] = STATE(177), + [sym_link_text] = STATE(668), + [sym__comment_with_spaces] = STATE(177), + [sym_span] = STATE(177), + [sym_raw_inline] = STATE(177), + [sym_math] = STATE(177), + [sym_verbatim] = STATE(177), + [sym__todo_highlights] = STATE(177), + [sym_todo] = STATE(177), + [sym_note] = STATE(177), + [sym__symbol_fallback] = STATE(177), + [aux_sym__text] = STATE(132), + [aux_sym__inline_repeat1] = STATE(128), + [anon_sym_LBRACE_] = ACTIONS(405), + [anon_sym__] = ACTIONS(407), + [anon_sym_LBRACE_STAR] = ACTIONS(409), + [anon_sym_STAR] = ACTIONS(411), + [anon_sym_LBRACE_CARET] = ACTIONS(413), + [anon_sym_CARET] = ACTIONS(413), + [anon_sym_LBRACE_TILDE] = ACTIONS(415), + [anon_sym_TILDE] = ACTIONS(415), + [anon_sym_LBRACE_EQ] = ACTIONS(417), + [anon_sym_LBRACE_PLUS] = ACTIONS(419), + [anon_sym_LBRACE_DASH] = ACTIONS(421), + [anon_sym_BSLASH] = ACTIONS(423), + [sym_quotation_marks] = ACTIONS(425), + [sym_ellipsis] = ACTIONS(425), + [sym_em_dash] = ACTIONS(425), + [sym_en_dash] = ACTIONS(427), + [sym_backslash_escape] = ACTIONS(427), + [anon_sym_LT] = ACTIONS(429), + [sym_symbol] = ACTIONS(425), + [anon_sym_LBRACK_CARET] = ACTIONS(431), + [anon_sym_BANG_LBRACK] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LBRACE2] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(437), + [anon_sym_TODO] = ACTIONS(439), + [anon_sym_WIP] = ACTIONS(439), + [anon_sym_NOTE] = ACTIONS(441), + [anon_sym_INFO] = ACTIONS(441), + [anon_sym_XXX] = ACTIONS(441), + [sym_fixme] = ACTIONS(425), + [sym__whitespace1] = ACTIONS(443), + [sym__newline] = ACTIONS(445), + [aux_sym__text_token1] = ACTIONS(447), + [sym__verbatim_begin] = ACTIONS(449), }, [45] = { - [sym__inline] = STATE(856), - [sym__element] = STATE(91), - [sym_emphasis] = STATE(174), - [sym_emphasis_begin] = STATE(1001), - [sym_strong] = STATE(174), - [sym_strong_begin] = STATE(126), - [sym__hard_line_break] = STATE(174), - [sym_hard_line_break] = STATE(174), - [sym__smart_punctuation] = STATE(174), - [sym_autolink] = STATE(174), - [sym_highlighted] = STATE(174), - [sym_insert] = STATE(174), - [sym_delete] = STATE(174), - [sym_superscript] = STATE(174), - [sym_subscript] = STATE(174), - [sym_footnote_reference] = STATE(174), - [sym__image] = STATE(174), - [sym_full_reference_image] = STATE(174), - [sym_collapsed_reference_image] = STATE(174), - [sym_inline_image] = STATE(174), - [sym__image_description] = STATE(709), - [sym__link] = STATE(174), - [sym_full_reference_link] = STATE(174), - [sym_collapsed_reference_link] = STATE(174), - [sym_inline_link] = STATE(174), - [sym_link_text] = STATE(710), - [sym__comment_with_spaces] = STATE(174), - [sym_span] = STATE(174), - [sym_raw_inline] = STATE(174), - [sym_math] = STATE(174), - [sym_verbatim] = STATE(174), - [sym__todo_highlights] = STATE(174), - [sym_todo] = STATE(174), - [sym_note] = STATE(174), - [sym__symbol_fallback] = STATE(174), - [aux_sym__text] = STATE(148), - [aux_sym__inline_repeat1] = STATE(91), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(213), - [anon_sym__] = ACTIONS(216), - [anon_sym_LBRACE_STAR] = ACTIONS(219), - [anon_sym_STAR] = ACTIONS(222), - [anon_sym_BSLASH] = ACTIONS(225), - [sym_quotation_marks] = ACTIONS(228), - [sym_ellipsis] = ACTIONS(228), - [sym_em_dash] = ACTIONS(228), - [sym_en_dash] = ACTIONS(231), - [sym_backslash_escape] = ACTIONS(231), - [anon_sym_LT] = ACTIONS(234), - [anon_sym_LBRACE_EQ] = ACTIONS(237), - [anon_sym_LBRACE_PLUS] = ACTIONS(240), - [anon_sym_LBRACE_DASH] = ACTIONS(243), - [sym_symbol] = ACTIONS(228), - [anon_sym_LBRACE_CARET] = ACTIONS(246), - [anon_sym_CARET] = ACTIONS(246), - [anon_sym_LBRACE_TILDE] = ACTIONS(249), - [anon_sym_TILDE] = ACTIONS(249), - [anon_sym_LBRACK_CARET] = ACTIONS(252), - [anon_sym_BANG_LBRACK] = ACTIONS(255), - [anon_sym_LBRACK] = ACTIONS(258), - [anon_sym_RBRACK2] = ACTIONS(93), - [anon_sym_LBRACE2] = ACTIONS(231), - [anon_sym_DOLLAR] = ACTIONS(261), - [anon_sym_TODO] = ACTIONS(264), - [anon_sym_WIP] = ACTIONS(264), - [anon_sym_NOTE] = ACTIONS(267), - [anon_sym_INFO] = ACTIONS(267), - [anon_sym_XXX] = ACTIONS(267), - [sym_fixme] = ACTIONS(228), - [anon_sym_PIPE] = ACTIONS(228), - [sym__whitespace1] = ACTIONS(270), - [sym__newline] = ACTIONS(273), - [aux_sym__text_token1] = ACTIONS(276), - [sym__verbatim_begin] = ACTIONS(279), + [sym__inline] = STATE(819), + [sym__element] = STATE(66), + [sym_emphasis] = STATE(171), + [sym_emphasis_begin] = STATE(1116), + [sym_strong] = STATE(171), + [sym_strong_begin] = STATE(1117), + [sym_superscript] = STATE(171), + [sym_superscript_begin] = STATE(1118), + [sym_subscript] = STATE(171), + [sym_subscript_begin] = STATE(1119), + [sym_highlighted] = STATE(171), + [sym_highlighted_begin] = STATE(1120), + [sym_insert] = STATE(171), + [sym_insert_begin] = STATE(1121), + [sym_delete] = STATE(171), + [sym_delete_begin] = STATE(1122), + [sym_hard_line_break] = STATE(171), + [sym__smart_punctuation] = STATE(171), + [sym_autolink] = STATE(171), + [sym_footnote_reference] = STATE(171), + [sym__image] = STATE(171), + [sym_full_reference_image] = STATE(171), + [sym_collapsed_reference_image] = STATE(171), + [sym_inline_image] = STATE(171), + [sym__image_description] = STATE(674), + [sym__link] = STATE(171), + [sym_full_reference_link] = STATE(171), + [sym_collapsed_reference_link] = STATE(171), + [sym_inline_link] = STATE(171), + [sym_link_text] = STATE(675), + [sym__comment_with_spaces] = STATE(171), + [sym_span] = STATE(171), + [sym_raw_inline] = STATE(171), + [sym_math] = STATE(171), + [sym_verbatim] = STATE(171), + [sym__todo_highlights] = STATE(171), + [sym_todo] = STATE(171), + [sym_note] = STATE(171), + [sym__symbol_fallback] = STATE(171), + [aux_sym__text] = STATE(146), + [aux_sym__inline_repeat1] = STATE(66), + [anon_sym_LBRACE_] = ACTIONS(451), + [anon_sym__] = ACTIONS(453), + [anon_sym_LBRACE_STAR] = ACTIONS(455), + [anon_sym_STAR] = ACTIONS(457), + [anon_sym_LBRACE_CARET] = ACTIONS(459), + [anon_sym_CARET] = ACTIONS(459), + [anon_sym_LBRACE_TILDE] = ACTIONS(461), + [anon_sym_TILDE] = ACTIONS(461), + [anon_sym_LBRACE_EQ] = ACTIONS(463), + [anon_sym_LBRACE_PLUS] = ACTIONS(465), + [anon_sym_LBRACE_DASH] = ACTIONS(467), + [anon_sym_BSLASH] = ACTIONS(469), + [sym_quotation_marks] = ACTIONS(471), + [sym_ellipsis] = ACTIONS(471), + [sym_em_dash] = ACTIONS(471), + [sym_en_dash] = ACTIONS(473), + [sym_backslash_escape] = ACTIONS(473), + [anon_sym_LT] = ACTIONS(475), + [sym_symbol] = ACTIONS(471), + [anon_sym_LBRACK_CARET] = ACTIONS(477), + [anon_sym_BANG_LBRACK] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(481), + [anon_sym_LBRACE2] = ACTIONS(473), + [anon_sym_DOLLAR] = ACTIONS(483), + [anon_sym_TODO] = ACTIONS(485), + [anon_sym_WIP] = ACTIONS(485), + [anon_sym_NOTE] = ACTIONS(487), + [anon_sym_INFO] = ACTIONS(487), + [anon_sym_XXX] = ACTIONS(487), + [sym_fixme] = ACTIONS(471), + [sym__whitespace1] = ACTIONS(489), + [sym__newline] = ACTIONS(491), + [aux_sym__text_token1] = ACTIONS(493), + [sym__verbatim_begin] = ACTIONS(495), }, [46] = { - [sym__inline] = STATE(764), - [sym__element] = STATE(114), - [sym_emphasis] = STATE(181), - [sym_emphasis_begin] = STATE(1004), - [sym_strong] = STATE(181), - [sym_strong_begin] = STATE(110), - [sym__hard_line_break] = STATE(181), - [sym_hard_line_break] = STATE(181), - [sym__smart_punctuation] = STATE(181), - [sym_autolink] = STATE(181), - [sym_highlighted] = STATE(181), - [sym_insert] = STATE(181), - [sym_delete] = STATE(181), - [sym_superscript] = STATE(181), - [sym_subscript] = STATE(181), - [sym_footnote_reference] = STATE(181), - [sym__image] = STATE(181), - [sym_full_reference_image] = STATE(181), - [sym_collapsed_reference_image] = STATE(181), - [sym_inline_image] = STATE(181), - [sym__image_description] = STATE(688), - [sym__link] = STATE(181), - [sym_full_reference_link] = STATE(181), - [sym_collapsed_reference_link] = STATE(181), - [sym_inline_link] = STATE(181), - [sym_link_text] = STATE(693), - [sym__comment_with_spaces] = STATE(181), - [sym_span] = STATE(181), - [sym_raw_inline] = STATE(181), - [sym_math] = STATE(181), - [sym_verbatim] = STATE(181), - [sym__todo_highlights] = STATE(181), - [sym_todo] = STATE(181), - [sym_note] = STATE(181), - [sym__symbol_fallback] = STATE(181), - [aux_sym__text] = STATE(153), - [aux_sym__inline_repeat1] = STATE(114), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(420), - [anon_sym__] = ACTIONS(423), - [anon_sym_LBRACE_STAR] = ACTIONS(426), - [anon_sym_STAR] = ACTIONS(429), - [anon_sym_BSLASH] = ACTIONS(432), - [sym_quotation_marks] = ACTIONS(435), - [sym_ellipsis] = ACTIONS(435), - [sym_em_dash] = ACTIONS(435), - [sym_en_dash] = ACTIONS(438), - [sym_backslash_escape] = ACTIONS(438), - [anon_sym_LT] = ACTIONS(441), - [anon_sym_LBRACE_EQ] = ACTIONS(444), - [anon_sym_EQ_RBRACE] = ACTIONS(93), - [anon_sym_LBRACE_PLUS] = ACTIONS(447), - [anon_sym_LBRACE_DASH] = ACTIONS(450), - [sym_symbol] = ACTIONS(435), - [anon_sym_LBRACE_CARET] = ACTIONS(453), - [anon_sym_CARET] = ACTIONS(453), - [anon_sym_LBRACE_TILDE] = ACTIONS(456), - [anon_sym_TILDE] = ACTIONS(456), - [anon_sym_LBRACK_CARET] = ACTIONS(459), - [anon_sym_BANG_LBRACK] = ACTIONS(462), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_LBRACE2] = ACTIONS(438), - [anon_sym_DOLLAR] = ACTIONS(468), - [anon_sym_TODO] = ACTIONS(471), - [anon_sym_WIP] = ACTIONS(471), - [anon_sym_NOTE] = ACTIONS(474), - [anon_sym_INFO] = ACTIONS(474), - [anon_sym_XXX] = ACTIONS(474), - [sym_fixme] = ACTIONS(435), - [anon_sym_PIPE] = ACTIONS(435), - [sym__whitespace1] = ACTIONS(477), - [sym__newline] = ACTIONS(480), - [aux_sym__text_token1] = ACTIONS(483), - [sym__verbatim_begin] = ACTIONS(486), + [sym__inline] = STATE(817), + [sym__element] = STATE(103), + [sym_emphasis] = STATE(180), + [sym_emphasis_begin] = STATE(1109), + [sym_strong] = STATE(180), + [sym_strong_begin] = STATE(1110), + [sym_superscript] = STATE(180), + [sym_superscript_begin] = STATE(1111), + [sym_subscript] = STATE(180), + [sym_subscript_begin] = STATE(1112), + [sym_highlighted] = STATE(180), + [sym_highlighted_begin] = STATE(1113), + [sym_insert] = STATE(180), + [sym_insert_begin] = STATE(1114), + [sym_delete] = STATE(180), + [sym_delete_begin] = STATE(1115), + [sym_hard_line_break] = STATE(180), + [sym__smart_punctuation] = STATE(180), + [sym_autolink] = STATE(180), + [sym_footnote_reference] = STATE(180), + [sym__image] = STATE(180), + [sym_full_reference_image] = STATE(180), + [sym_collapsed_reference_image] = STATE(180), + [sym_inline_image] = STATE(180), + [sym__image_description] = STATE(666), + [sym__link] = STATE(180), + [sym_full_reference_link] = STATE(180), + [sym_collapsed_reference_link] = STATE(180), + [sym_inline_link] = STATE(180), + [sym_link_text] = STATE(664), + [sym__comment_with_spaces] = STATE(180), + [sym_span] = STATE(180), + [sym_raw_inline] = STATE(180), + [sym_math] = STATE(180), + [sym_verbatim] = STATE(180), + [sym__todo_highlights] = STATE(180), + [sym_todo] = STATE(180), + [sym_note] = STATE(180), + [sym__symbol_fallback] = STATE(180), + [aux_sym__text] = STATE(159), + [aux_sym__inline_repeat1] = STATE(103), + [anon_sym_LBRACE_] = ACTIONS(221), + [anon_sym__] = ACTIONS(223), + [anon_sym_LBRACE_STAR] = ACTIONS(225), + [anon_sym_STAR] = ACTIONS(227), + [anon_sym_LBRACE_CARET] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym_LBRACE_TILDE] = ACTIONS(231), + [anon_sym_TILDE] = ACTIONS(231), + [anon_sym_LBRACE_EQ] = ACTIONS(233), + [anon_sym_LBRACE_PLUS] = ACTIONS(235), + [anon_sym_LBRACE_DASH] = ACTIONS(237), + [anon_sym_BSLASH] = ACTIONS(239), + [sym_quotation_marks] = ACTIONS(241), + [sym_ellipsis] = ACTIONS(241), + [sym_em_dash] = ACTIONS(241), + [sym_en_dash] = ACTIONS(243), + [sym_backslash_escape] = ACTIONS(243), + [anon_sym_LT] = ACTIONS(245), + [sym_symbol] = ACTIONS(241), + [anon_sym_LBRACK_CARET] = ACTIONS(247), + [anon_sym_BANG_LBRACK] = ACTIONS(249), + [anon_sym_LBRACK] = ACTIONS(251), + [anon_sym_LBRACE2] = ACTIONS(243), + [anon_sym_DOLLAR] = ACTIONS(253), + [anon_sym_TODO] = ACTIONS(255), + [anon_sym_WIP] = ACTIONS(255), + [anon_sym_NOTE] = ACTIONS(257), + [anon_sym_INFO] = ACTIONS(257), + [anon_sym_XXX] = ACTIONS(257), + [sym_fixme] = ACTIONS(241), + [sym__whitespace1] = ACTIONS(259), + [sym__newline] = ACTIONS(261), + [aux_sym__text_token1] = ACTIONS(263), + [sym__verbatim_begin] = ACTIONS(265), }, [47] = { - [sym__inline] = STATE(763), - [sym__element] = STATE(102), - [sym_emphasis] = STATE(194), - [sym_emphasis_begin] = STATE(1003), - [sym_strong] = STATE(194), - [sym_strong_begin] = STATE(113), - [sym__hard_line_break] = STATE(194), - [sym_hard_line_break] = STATE(194), - [sym__smart_punctuation] = STATE(194), - [sym_autolink] = STATE(194), - [sym_highlighted] = STATE(194), - [sym_insert] = STATE(194), - [sym_delete] = STATE(194), - [sym_superscript] = STATE(194), - [sym_subscript] = STATE(194), - [sym_footnote_reference] = STATE(194), - [sym__image] = STATE(194), - [sym_full_reference_image] = STATE(194), - [sym_collapsed_reference_image] = STATE(194), - [sym_inline_image] = STATE(194), - [sym__image_description] = STATE(696), - [sym__link] = STATE(194), - [sym_full_reference_link] = STATE(194), - [sym_collapsed_reference_link] = STATE(194), - [sym_inline_link] = STATE(194), - [sym_link_text] = STATE(695), - [sym__comment_with_spaces] = STATE(194), - [sym_span] = STATE(194), - [sym_raw_inline] = STATE(194), - [sym_math] = STATE(194), - [sym_verbatim] = STATE(194), - [sym__todo_highlights] = STATE(194), - [sym_todo] = STATE(194), - [sym_note] = STATE(194), - [sym__symbol_fallback] = STATE(194), - [aux_sym__text] = STATE(170), - [aux_sym__inline_repeat1] = STATE(102), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(351), - [anon_sym__] = ACTIONS(354), - [anon_sym_LBRACE_STAR] = ACTIONS(357), - [anon_sym_STAR] = ACTIONS(360), - [anon_sym_BSLASH] = ACTIONS(363), - [sym_quotation_marks] = ACTIONS(366), - [sym_ellipsis] = ACTIONS(366), - [sym_em_dash] = ACTIONS(366), - [sym_en_dash] = ACTIONS(369), - [sym_backslash_escape] = ACTIONS(369), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_LBRACE_EQ] = ACTIONS(375), - [anon_sym_EQ_RBRACE] = ACTIONS(93), - [anon_sym_LBRACE_PLUS] = ACTIONS(378), - [anon_sym_LBRACE_DASH] = ACTIONS(381), - [sym_symbol] = ACTIONS(366), - [anon_sym_LBRACE_CARET] = ACTIONS(384), - [anon_sym_CARET] = ACTIONS(384), - [anon_sym_LBRACE_TILDE] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_LBRACK_CARET] = ACTIONS(390), - [anon_sym_BANG_LBRACK] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(396), - [anon_sym_LBRACE2] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(399), - [anon_sym_TODO] = ACTIONS(402), - [anon_sym_WIP] = ACTIONS(402), - [anon_sym_NOTE] = ACTIONS(405), - [anon_sym_INFO] = ACTIONS(405), - [anon_sym_XXX] = ACTIONS(405), - [sym_fixme] = ACTIONS(366), - [anon_sym_PIPE] = ACTIONS(366), - [sym__whitespace1] = ACTIONS(408), - [sym__newline] = ACTIONS(411), - [aux_sym__text_token1] = ACTIONS(414), - [sym__verbatim_begin] = ACTIONS(417), + [sym__inline] = STATE(816), + [sym__element] = STATE(111), + [sym_emphasis] = STATE(186), + [sym_emphasis_begin] = STATE(1102), + [sym_strong] = STATE(186), + [sym_strong_begin] = STATE(1103), + [sym_superscript] = STATE(186), + [sym_superscript_begin] = STATE(1104), + [sym_subscript] = STATE(186), + [sym_subscript_begin] = STATE(1105), + [sym_highlighted] = STATE(186), + [sym_highlighted_begin] = STATE(1106), + [sym_insert] = STATE(186), + [sym_insert_begin] = STATE(1107), + [sym_delete] = STATE(186), + [sym_delete_begin] = STATE(1108), + [sym_hard_line_break] = STATE(186), + [sym__smart_punctuation] = STATE(186), + [sym_autolink] = STATE(186), + [sym_footnote_reference] = STATE(186), + [sym__image] = STATE(186), + [sym_full_reference_image] = STATE(186), + [sym_collapsed_reference_image] = STATE(186), + [sym_inline_image] = STATE(186), + [sym__image_description] = STATE(673), + [sym__link] = STATE(186), + [sym_full_reference_link] = STATE(186), + [sym_collapsed_reference_link] = STATE(186), + [sym_inline_link] = STATE(186), + [sym_link_text] = STATE(672), + [sym__comment_with_spaces] = STATE(186), + [sym_span] = STATE(186), + [sym_raw_inline] = STATE(186), + [sym_math] = STATE(186), + [sym_verbatim] = STATE(186), + [sym__todo_highlights] = STATE(186), + [sym_todo] = STATE(186), + [sym_note] = STATE(186), + [sym__symbol_fallback] = STATE(186), + [aux_sym__text] = STATE(155), + [aux_sym__inline_repeat1] = STATE(111), + [anon_sym_LBRACE_] = ACTIONS(267), + [anon_sym__] = ACTIONS(269), + [anon_sym_LBRACE_STAR] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_LBRACE_CARET] = ACTIONS(275), + [anon_sym_CARET] = ACTIONS(275), + [anon_sym_LBRACE_TILDE] = ACTIONS(277), + [anon_sym_TILDE] = ACTIONS(277), + [anon_sym_LBRACE_EQ] = ACTIONS(279), + [anon_sym_LBRACE_PLUS] = ACTIONS(281), + [anon_sym_LBRACE_DASH] = ACTIONS(283), + [anon_sym_BSLASH] = ACTIONS(285), + [sym_quotation_marks] = ACTIONS(287), + [sym_ellipsis] = ACTIONS(287), + [sym_em_dash] = ACTIONS(287), + [sym_en_dash] = ACTIONS(289), + [sym_backslash_escape] = ACTIONS(289), + [anon_sym_LT] = ACTIONS(291), + [sym_symbol] = ACTIONS(287), + [anon_sym_LBRACK_CARET] = ACTIONS(293), + [anon_sym_BANG_LBRACK] = ACTIONS(295), + [anon_sym_LBRACK] = ACTIONS(297), + [anon_sym_LBRACE2] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(299), + [anon_sym_TODO] = ACTIONS(301), + [anon_sym_WIP] = ACTIONS(301), + [anon_sym_NOTE] = ACTIONS(303), + [anon_sym_INFO] = ACTIONS(303), + [anon_sym_XXX] = ACTIONS(303), + [sym_fixme] = ACTIONS(287), + [sym__whitespace1] = ACTIONS(305), + [sym__newline] = ACTIONS(307), + [aux_sym__text_token1] = ACTIONS(309), + [sym__verbatim_begin] = ACTIONS(311), }, [48] = { - [sym__inline] = STATE(899), - [sym__element] = STATE(88), - [sym_emphasis] = STATE(209), - [sym_emphasis_begin] = STATE(1002), - [sym_strong] = STATE(209), - [sym_strong_begin] = STATE(121), - [sym__hard_line_break] = STATE(209), - [sym_hard_line_break] = STATE(209), - [sym__smart_punctuation] = STATE(209), - [sym_autolink] = STATE(209), - [sym_highlighted] = STATE(209), - [sym_insert] = STATE(209), - [sym_delete] = STATE(209), - [sym_superscript] = STATE(209), - [sym_subscript] = STATE(209), - [sym_footnote_reference] = STATE(209), - [sym__image] = STATE(209), - [sym_full_reference_image] = STATE(209), - [sym_collapsed_reference_image] = STATE(209), - [sym_inline_image] = STATE(209), - [sym__image_description] = STATE(706), - [sym__link] = STATE(209), - [sym_full_reference_link] = STATE(209), - [sym_collapsed_reference_link] = STATE(209), - [sym_inline_link] = STATE(209), - [sym_link_text] = STATE(707), - [sym__comment_with_spaces] = STATE(209), - [sym_span] = STATE(209), - [sym_raw_inline] = STATE(209), - [sym_math] = STATE(209), - [sym_verbatim] = STATE(209), - [sym__todo_highlights] = STATE(209), - [sym_todo] = STATE(209), - [sym_note] = STATE(209), - [sym__symbol_fallback] = STATE(209), - [aux_sym__text] = STATE(150), - [aux_sym__inline_repeat1] = STATE(88), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(282), - [anon_sym__] = ACTIONS(285), - [anon_sym_LBRACE_STAR] = ACTIONS(288), - [anon_sym_STAR] = ACTIONS(291), - [anon_sym_BSLASH] = ACTIONS(294), - [sym_quotation_marks] = ACTIONS(297), - [sym_ellipsis] = ACTIONS(297), - [sym_em_dash] = ACTIONS(297), - [sym_en_dash] = ACTIONS(300), - [sym_backslash_escape] = ACTIONS(300), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACE_EQ] = ACTIONS(306), - [anon_sym_EQ_RBRACE] = ACTIONS(93), - [anon_sym_LBRACE_PLUS] = ACTIONS(309), - [anon_sym_LBRACE_DASH] = ACTIONS(312), - [sym_symbol] = ACTIONS(297), - [anon_sym_LBRACE_CARET] = ACTIONS(315), - [anon_sym_CARET] = ACTIONS(315), - [anon_sym_LBRACE_TILDE] = ACTIONS(318), - [anon_sym_TILDE] = ACTIONS(318), - [anon_sym_LBRACK_CARET] = ACTIONS(321), - [anon_sym_BANG_LBRACK] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(327), - [anon_sym_LBRACE2] = ACTIONS(300), - [anon_sym_DOLLAR] = ACTIONS(330), - [anon_sym_TODO] = ACTIONS(333), - [anon_sym_WIP] = ACTIONS(333), - [anon_sym_NOTE] = ACTIONS(336), - [anon_sym_INFO] = ACTIONS(336), - [anon_sym_XXX] = ACTIONS(336), - [sym_fixme] = ACTIONS(297), - [anon_sym_PIPE] = ACTIONS(297), - [sym__whitespace1] = ACTIONS(339), - [sym__newline] = ACTIONS(342), - [aux_sym__text_token1] = ACTIONS(345), - [sym__verbatim_begin] = ACTIONS(348), + [sym__inline] = STATE(972), + [sym__element] = STATE(115), + [sym_emphasis] = STATE(192), + [sym_emphasis_begin] = STATE(1095), + [sym_strong] = STATE(192), + [sym_strong_begin] = STATE(1096), + [sym_superscript] = STATE(192), + [sym_superscript_begin] = STATE(1097), + [sym_subscript] = STATE(192), + [sym_subscript_begin] = STATE(1098), + [sym_highlighted] = STATE(192), + [sym_highlighted_begin] = STATE(1099), + [sym_insert] = STATE(192), + [sym_insert_begin] = STATE(1100), + [sym_delete] = STATE(192), + [sym_delete_begin] = STATE(1101), + [sym_hard_line_break] = STATE(192), + [sym__smart_punctuation] = STATE(192), + [sym_autolink] = STATE(192), + [sym_footnote_reference] = STATE(192), + [sym__image] = STATE(192), + [sym_full_reference_image] = STATE(192), + [sym_collapsed_reference_image] = STATE(192), + [sym_inline_image] = STATE(192), + [sym__image_description] = STATE(684), + [sym__link] = STATE(192), + [sym_full_reference_link] = STATE(192), + [sym_collapsed_reference_link] = STATE(192), + [sym_inline_link] = STATE(192), + [sym_link_text] = STATE(683), + [sym__comment_with_spaces] = STATE(192), + [sym_span] = STATE(192), + [sym_raw_inline] = STATE(192), + [sym_math] = STATE(192), + [sym_verbatim] = STATE(192), + [sym__todo_highlights] = STATE(192), + [sym_todo] = STATE(192), + [sym_note] = STATE(192), + [sym__symbol_fallback] = STATE(192), + [aux_sym__text] = STATE(141), + [aux_sym__inline_repeat1] = STATE(115), + [anon_sym_LBRACE_] = ACTIONS(129), + [anon_sym__] = ACTIONS(131), + [anon_sym_LBRACE_STAR] = ACTIONS(133), + [anon_sym_STAR] = ACTIONS(135), + [anon_sym_LBRACE_CARET] = ACTIONS(137), + [anon_sym_CARET] = ACTIONS(137), + [anon_sym_LBRACE_TILDE] = ACTIONS(139), + [anon_sym_TILDE] = ACTIONS(139), + [anon_sym_LBRACE_EQ] = ACTIONS(141), + [anon_sym_LBRACE_PLUS] = ACTIONS(143), + [anon_sym_LBRACE_DASH] = ACTIONS(145), + [anon_sym_BSLASH] = ACTIONS(147), + [sym_quotation_marks] = ACTIONS(149), + [sym_ellipsis] = ACTIONS(149), + [sym_em_dash] = ACTIONS(149), + [sym_en_dash] = ACTIONS(151), + [sym_backslash_escape] = ACTIONS(151), + [anon_sym_LT] = ACTIONS(153), + [sym_symbol] = ACTIONS(149), + [anon_sym_LBRACK_CARET] = ACTIONS(155), + [anon_sym_BANG_LBRACK] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LBRACE2] = ACTIONS(151), + [anon_sym_DOLLAR] = ACTIONS(161), + [anon_sym_TODO] = ACTIONS(163), + [anon_sym_WIP] = ACTIONS(163), + [anon_sym_NOTE] = ACTIONS(165), + [anon_sym_INFO] = ACTIONS(165), + [anon_sym_XXX] = ACTIONS(165), + [sym_fixme] = ACTIONS(149), + [sym__whitespace1] = ACTIONS(167), + [sym__newline] = ACTIONS(169), + [aux_sym__text_token1] = ACTIONS(171), + [sym__verbatim_begin] = ACTIONS(173), }, [49] = { - [sym__inline] = STATE(900), - [sym__element] = STATE(91), - [sym_emphasis] = STATE(174), - [sym_emphasis_begin] = STATE(1001), - [sym_strong] = STATE(174), - [sym_strong_begin] = STATE(126), - [sym__hard_line_break] = STATE(174), - [sym_hard_line_break] = STATE(174), - [sym__smart_punctuation] = STATE(174), - [sym_autolink] = STATE(174), - [sym_highlighted] = STATE(174), - [sym_insert] = STATE(174), - [sym_delete] = STATE(174), - [sym_superscript] = STATE(174), - [sym_subscript] = STATE(174), - [sym_footnote_reference] = STATE(174), - [sym__image] = STATE(174), - [sym_full_reference_image] = STATE(174), - [sym_collapsed_reference_image] = STATE(174), - [sym_inline_image] = STATE(174), - [sym__image_description] = STATE(709), - [sym__link] = STATE(174), - [sym_full_reference_link] = STATE(174), - [sym_collapsed_reference_link] = STATE(174), - [sym_inline_link] = STATE(174), - [sym_link_text] = STATE(710), - [sym__comment_with_spaces] = STATE(174), - [sym_span] = STATE(174), - [sym_raw_inline] = STATE(174), - [sym_math] = STATE(174), - [sym_verbatim] = STATE(174), - [sym__todo_highlights] = STATE(174), - [sym_todo] = STATE(174), - [sym_note] = STATE(174), - [sym__symbol_fallback] = STATE(174), - [aux_sym__text] = STATE(148), - [aux_sym__inline_repeat1] = STATE(91), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(213), - [anon_sym__] = ACTIONS(216), - [anon_sym_LBRACE_STAR] = ACTIONS(219), - [anon_sym_STAR] = ACTIONS(222), - [anon_sym_BSLASH] = ACTIONS(225), - [sym_quotation_marks] = ACTIONS(228), - [sym_ellipsis] = ACTIONS(228), - [sym_em_dash] = ACTIONS(228), - [sym_en_dash] = ACTIONS(231), - [sym_backslash_escape] = ACTIONS(231), - [anon_sym_LT] = ACTIONS(234), - [anon_sym_LBRACE_EQ] = ACTIONS(237), - [anon_sym_EQ_RBRACE] = ACTIONS(93), - [anon_sym_LBRACE_PLUS] = ACTIONS(240), - [anon_sym_LBRACE_DASH] = ACTIONS(243), - [sym_symbol] = ACTIONS(228), - [anon_sym_LBRACE_CARET] = ACTIONS(246), - [anon_sym_CARET] = ACTIONS(246), - [anon_sym_LBRACE_TILDE] = ACTIONS(249), - [anon_sym_TILDE] = ACTIONS(249), - [anon_sym_LBRACK_CARET] = ACTIONS(252), - [anon_sym_BANG_LBRACK] = ACTIONS(255), - [anon_sym_LBRACK] = ACTIONS(258), - [anon_sym_LBRACE2] = ACTIONS(231), - [anon_sym_DOLLAR] = ACTIONS(261), - [anon_sym_TODO] = ACTIONS(264), - [anon_sym_WIP] = ACTIONS(264), - [anon_sym_NOTE] = ACTIONS(267), - [anon_sym_INFO] = ACTIONS(267), - [anon_sym_XXX] = ACTIONS(267), - [sym_fixme] = ACTIONS(228), - [anon_sym_PIPE] = ACTIONS(228), - [sym__whitespace1] = ACTIONS(270), - [sym__newline] = ACTIONS(273), - [aux_sym__text_token1] = ACTIONS(276), - [sym__verbatim_begin] = ACTIONS(279), + [sym__inline] = STATE(825), + [sym__element] = STATE(93), + [sym_emphasis] = STATE(197), + [sym_emphasis_begin] = STATE(1088), + [sym_strong] = STATE(197), + [sym_strong_begin] = STATE(1089), + [sym_superscript] = STATE(197), + [sym_superscript_begin] = STATE(1090), + [sym_subscript] = STATE(197), + [sym_subscript_begin] = STATE(1091), + [sym_highlighted] = STATE(197), + [sym_highlighted_begin] = STATE(1092), + [sym_insert] = STATE(197), + [sym_insert_begin] = STATE(1093), + [sym_delete] = STATE(197), + [sym_delete_begin] = STATE(1094), + [sym_hard_line_break] = STATE(197), + [sym__smart_punctuation] = STATE(197), + [sym_autolink] = STATE(197), + [sym_footnote_reference] = STATE(197), + [sym__image] = STATE(197), + [sym_full_reference_image] = STATE(197), + [sym_collapsed_reference_image] = STATE(197), + [sym_inline_image] = STATE(197), + [sym__image_description] = STATE(697), + [sym__link] = STATE(197), + [sym_full_reference_link] = STATE(197), + [sym_collapsed_reference_link] = STATE(197), + [sym_inline_link] = STATE(197), + [sym_link_text] = STATE(682), + [sym__comment_with_spaces] = STATE(197), + [sym_span] = STATE(197), + [sym_raw_inline] = STATE(197), + [sym_math] = STATE(197), + [sym_verbatim] = STATE(197), + [sym__todo_highlights] = STATE(197), + [sym_todo] = STATE(197), + [sym_note] = STATE(197), + [sym__symbol_fallback] = STATE(197), + [aux_sym__text] = STATE(134), + [aux_sym__inline_repeat1] = STATE(93), + [anon_sym_LBRACE_] = ACTIONS(313), + [anon_sym__] = ACTIONS(315), + [anon_sym_LBRACE_STAR] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_LBRACE_CARET] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [anon_sym_LBRACE_TILDE] = ACTIONS(323), + [anon_sym_TILDE] = ACTIONS(323), + [anon_sym_LBRACE_EQ] = ACTIONS(325), + [anon_sym_LBRACE_PLUS] = ACTIONS(327), + [anon_sym_LBRACE_DASH] = ACTIONS(329), + [anon_sym_BSLASH] = ACTIONS(331), + [sym_quotation_marks] = ACTIONS(333), + [sym_ellipsis] = ACTIONS(333), + [sym_em_dash] = ACTIONS(333), + [sym_en_dash] = ACTIONS(335), + [sym_backslash_escape] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(337), + [sym_symbol] = ACTIONS(333), + [anon_sym_LBRACK_CARET] = ACTIONS(339), + [anon_sym_BANG_LBRACK] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE2] = ACTIONS(335), + [anon_sym_DOLLAR] = ACTIONS(345), + [anon_sym_TODO] = ACTIONS(347), + [anon_sym_WIP] = ACTIONS(347), + [anon_sym_NOTE] = ACTIONS(349), + [anon_sym_INFO] = ACTIONS(349), + [anon_sym_XXX] = ACTIONS(349), + [sym_fixme] = ACTIONS(333), + [sym__whitespace1] = ACTIONS(351), + [sym__newline] = ACTIONS(353), + [aux_sym__text_token1] = ACTIONS(355), + [sym__verbatim_begin] = ACTIONS(357), }, [50] = { - [sym__inline] = STATE(915), - [sym__element] = STATE(118), - [sym_emphasis] = STATE(201), - [sym_emphasis_begin] = STATE(1005), - [sym_strong] = STATE(201), - [sym_strong_begin] = STATE(105), - [sym__hard_line_break] = STATE(201), - [sym_hard_line_break] = STATE(201), - [sym__smart_punctuation] = STATE(201), - [sym_autolink] = STATE(201), - [sym_highlighted] = STATE(201), - [sym_insert] = STATE(201), - [sym_delete] = STATE(201), - [sym_superscript] = STATE(201), - [sym_subscript] = STATE(201), - [sym_footnote_reference] = STATE(201), - [sym__image] = STATE(201), - [sym_full_reference_image] = STATE(201), - [sym_collapsed_reference_image] = STATE(201), - [sym_inline_image] = STATE(201), - [sym__image_description] = STATE(712), - [sym__link] = STATE(201), - [sym_full_reference_link] = STATE(201), - [sym_collapsed_reference_link] = STATE(201), - [sym_inline_link] = STATE(201), - [sym_link_text] = STATE(717), - [sym__comment_with_spaces] = STATE(201), - [sym_span] = STATE(201), - [sym_raw_inline] = STATE(201), - [sym_math] = STATE(201), - [sym_verbatim] = STATE(201), - [sym__todo_highlights] = STATE(201), - [sym_todo] = STATE(201), - [sym_note] = STATE(201), - [sym__symbol_fallback] = STATE(201), - [aux_sym__text] = STATE(139), - [aux_sym__inline_repeat1] = STATE(118), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(51), - [anon_sym__] = ACTIONS(54), - [anon_sym_LBRACE_STAR] = ACTIONS(57), - [anon_sym_STAR] = ACTIONS(60), - [anon_sym_BSLASH] = ACTIONS(63), - [sym_quotation_marks] = ACTIONS(66), - [sym_ellipsis] = ACTIONS(66), - [sym_em_dash] = ACTIONS(66), - [sym_en_dash] = ACTIONS(69), - [sym_backslash_escape] = ACTIONS(69), - [anon_sym_LT] = ACTIONS(72), - [anon_sym_LBRACE_EQ] = ACTIONS(75), - [anon_sym_LBRACE_PLUS] = ACTIONS(78), - [anon_sym_LBRACE_DASH] = ACTIONS(81), - [sym_symbol] = ACTIONS(66), - [anon_sym_LBRACE_CARET] = ACTIONS(84), - [anon_sym_CARET] = ACTIONS(84), - [anon_sym_LBRACE_TILDE] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(87), - [anon_sym_LBRACK_CARET] = ACTIONS(95), - [anon_sym_RBRACK] = ACTIONS(98), - [anon_sym_BANG_LBRACK] = ACTIONS(100), - [anon_sym_LBRACK] = ACTIONS(103), - [anon_sym_LBRACE2] = ACTIONS(69), - [anon_sym_DOLLAR] = ACTIONS(106), - [anon_sym_TODO] = ACTIONS(109), - [anon_sym_WIP] = ACTIONS(109), - [anon_sym_NOTE] = ACTIONS(112), - [anon_sym_INFO] = ACTIONS(112), - [anon_sym_XXX] = ACTIONS(112), - [sym_fixme] = ACTIONS(66), - [anon_sym_PIPE] = ACTIONS(66), - [sym__whitespace1] = ACTIONS(115), - [sym__newline] = ACTIONS(118), - [aux_sym__text_token1] = ACTIONS(121), - [sym__verbatim_begin] = ACTIONS(124), + [sym__inline] = STATE(834), + [sym__element] = STATE(79), + [sym_emphasis] = STATE(161), + [sym_emphasis_begin] = STATE(1081), + [sym_strong] = STATE(161), + [sym_strong_begin] = STATE(1082), + [sym_superscript] = STATE(161), + [sym_superscript_begin] = STATE(1083), + [sym_subscript] = STATE(161), + [sym_subscript_begin] = STATE(1084), + [sym_highlighted] = STATE(161), + [sym_highlighted_begin] = STATE(1085), + [sym_insert] = STATE(161), + [sym_insert_begin] = STATE(1086), + [sym_delete] = STATE(161), + [sym_delete_begin] = STATE(1087), + [sym_hard_line_break] = STATE(161), + [sym__smart_punctuation] = STATE(161), + [sym_autolink] = STATE(161), + [sym_footnote_reference] = STATE(161), + [sym__image] = STATE(161), + [sym_full_reference_image] = STATE(161), + [sym_collapsed_reference_image] = STATE(161), + [sym_inline_image] = STATE(161), + [sym__image_description] = STATE(692), + [sym__link] = STATE(161), + [sym_full_reference_link] = STATE(161), + [sym_collapsed_reference_link] = STATE(161), + [sym_inline_link] = STATE(161), + [sym_link_text] = STATE(687), + [sym__comment_with_spaces] = STATE(161), + [sym_span] = STATE(161), + [sym_raw_inline] = STATE(161), + [sym_math] = STATE(161), + [sym_verbatim] = STATE(161), + [sym__todo_highlights] = STATE(161), + [sym_todo] = STATE(161), + [sym_note] = STATE(161), + [sym__symbol_fallback] = STATE(161), + [aux_sym__text] = STATE(149), + [aux_sym__inline_repeat1] = STATE(79), + [anon_sym_LBRACE_] = ACTIONS(359), + [anon_sym__] = ACTIONS(361), + [anon_sym_LBRACE_STAR] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(365), + [anon_sym_LBRACE_CARET] = ACTIONS(367), + [anon_sym_CARET] = ACTIONS(367), + [anon_sym_LBRACE_TILDE] = ACTIONS(369), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_LBRACE_EQ] = ACTIONS(371), + [anon_sym_LBRACE_PLUS] = ACTIONS(373), + [anon_sym_LBRACE_DASH] = ACTIONS(375), + [anon_sym_BSLASH] = ACTIONS(377), + [sym_quotation_marks] = ACTIONS(379), + [sym_ellipsis] = ACTIONS(379), + [sym_em_dash] = ACTIONS(379), + [sym_en_dash] = ACTIONS(381), + [sym_backslash_escape] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(383), + [sym_symbol] = ACTIONS(379), + [anon_sym_LBRACK_CARET] = ACTIONS(385), + [anon_sym_BANG_LBRACK] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE2] = ACTIONS(381), + [anon_sym_DOLLAR] = ACTIONS(391), + [anon_sym_TODO] = ACTIONS(393), + [anon_sym_WIP] = ACTIONS(393), + [anon_sym_NOTE] = ACTIONS(395), + [anon_sym_INFO] = ACTIONS(395), + [anon_sym_XXX] = ACTIONS(395), + [sym_fixme] = ACTIONS(379), + [sym__whitespace1] = ACTIONS(397), + [sym__newline] = ACTIONS(399), + [aux_sym__text_token1] = ACTIONS(401), + [sym__verbatim_begin] = ACTIONS(403), }, [51] = { - [sym__inline] = STATE(793), - [sym__element] = STATE(115), - [sym_emphasis] = STATE(205), - [sym_emphasis_begin] = STATE(1000), - [sym_strong] = STATE(205), - [sym_strong_begin] = STATE(129), - [sym__hard_line_break] = STATE(205), - [sym_hard_line_break] = STATE(205), - [sym__smart_punctuation] = STATE(205), - [sym_autolink] = STATE(205), - [sym_highlighted] = STATE(205), - [sym_insert] = STATE(205), - [sym_delete] = STATE(205), - [sym_superscript] = STATE(205), - [sym_subscript] = STATE(205), - [sym_footnote_reference] = STATE(205), - [sym__image] = STATE(205), - [sym_full_reference_image] = STATE(205), - [sym_collapsed_reference_image] = STATE(205), - [sym_inline_image] = STATE(205), - [sym__image_description] = STATE(705), - [sym__link] = STATE(205), - [sym_full_reference_link] = STATE(205), - [sym_collapsed_reference_link] = STATE(205), - [sym_inline_link] = STATE(205), - [sym_link_text] = STATE(703), - [sym__comment_with_spaces] = STATE(205), - [sym_span] = STATE(205), - [sym_raw_inline] = STATE(205), - [sym_math] = STATE(205), - [sym_verbatim] = STATE(205), - [sym__todo_highlights] = STATE(205), - [sym_todo] = STATE(205), - [sym_note] = STATE(205), - [sym__symbol_fallback] = STATE(205), - [aux_sym__text] = STATE(136), - [aux_sym__inline_repeat1] = STATE(115), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(141), - [anon_sym__] = ACTIONS(144), - [anon_sym_LBRACE_STAR] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(150), - [anon_sym_BSLASH] = ACTIONS(153), - [sym_quotation_marks] = ACTIONS(156), - [sym_ellipsis] = ACTIONS(156), - [sym_em_dash] = ACTIONS(156), - [sym_en_dash] = ACTIONS(159), - [sym_backslash_escape] = ACTIONS(159), - [anon_sym_LT] = ACTIONS(162), - [anon_sym_LBRACE_EQ] = ACTIONS(165), - [anon_sym_EQ_RBRACE] = ACTIONS(93), - [anon_sym_LBRACE_PLUS] = ACTIONS(168), - [anon_sym_LBRACE_DASH] = ACTIONS(171), - [sym_symbol] = ACTIONS(156), - [anon_sym_LBRACE_CARET] = ACTIONS(174), - [anon_sym_CARET] = ACTIONS(174), - [anon_sym_LBRACE_TILDE] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_LBRACK_CARET] = ACTIONS(183), - [anon_sym_BANG_LBRACK] = ACTIONS(186), - [anon_sym_LBRACK] = ACTIONS(189), - [anon_sym_LBRACE2] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(192), - [anon_sym_TODO] = ACTIONS(195), - [anon_sym_WIP] = ACTIONS(195), - [anon_sym_NOTE] = ACTIONS(198), - [anon_sym_INFO] = ACTIONS(198), - [anon_sym_XXX] = ACTIONS(198), - [sym_fixme] = ACTIONS(156), - [anon_sym_PIPE] = ACTIONS(156), - [sym__whitespace1] = ACTIONS(201), - [sym__newline] = ACTIONS(204), - [aux_sym__text_token1] = ACTIONS(207), - [sym__verbatim_begin] = ACTIONS(210), + [sym__inline_without_trailing_space] = STATE(838), + [sym__element] = STATE(572), + [sym_emphasis] = STATE(208), + [sym_emphasis_begin] = STATE(1074), + [sym_strong] = STATE(208), + [sym_strong_begin] = STATE(1075), + [sym_superscript] = STATE(208), + [sym_superscript_begin] = STATE(1076), + [sym_subscript] = STATE(208), + [sym_subscript_begin] = STATE(1077), + [sym_highlighted] = STATE(208), + [sym_highlighted_begin] = STATE(1078), + [sym_insert] = STATE(208), + [sym_insert_begin] = STATE(1079), + [sym_delete] = STATE(208), + [sym_delete_begin] = STATE(1080), + [sym_hard_line_break] = STATE(208), + [sym__smart_punctuation] = STATE(208), + [sym_autolink] = STATE(208), + [sym_footnote_reference] = STATE(208), + [sym__image] = STATE(208), + [sym_full_reference_image] = STATE(208), + [sym_collapsed_reference_image] = STATE(208), + [sym_inline_image] = STATE(208), + [sym__image_description] = STATE(680), + [sym__link] = STATE(208), + [sym_full_reference_link] = STATE(208), + [sym_collapsed_reference_link] = STATE(208), + [sym_inline_link] = STATE(208), + [sym_link_text] = STATE(663), + [sym__comment_with_spaces] = STATE(208), + [sym_span] = STATE(208), + [sym_raw_inline] = STATE(208), + [sym_math] = STATE(208), + [sym_verbatim] = STATE(208), + [sym__todo_highlights] = STATE(208), + [sym_todo] = STATE(208), + [sym_note] = STATE(208), + [sym__symbol_fallback] = STATE(208), + [aux_sym__text] = STATE(131), + [aux_sym__inline_repeat1] = STATE(130), + [anon_sym_LBRACE_] = ACTIONS(175), + [anon_sym__] = ACTIONS(177), + [anon_sym_LBRACE_STAR] = ACTIONS(179), + [anon_sym_STAR] = ACTIONS(181), + [anon_sym_LBRACE_CARET] = ACTIONS(183), + [anon_sym_CARET] = ACTIONS(183), + [anon_sym_LBRACE_TILDE] = ACTIONS(185), + [anon_sym_TILDE] = ACTIONS(185), + [anon_sym_LBRACE_EQ] = ACTIONS(187), + [anon_sym_LBRACE_PLUS] = ACTIONS(189), + [anon_sym_LBRACE_DASH] = ACTIONS(191), + [anon_sym_BSLASH] = ACTIONS(193), + [sym_quotation_marks] = ACTIONS(195), + [sym_ellipsis] = ACTIONS(195), + [sym_em_dash] = ACTIONS(195), + [sym_en_dash] = ACTIONS(197), + [sym_backslash_escape] = ACTIONS(197), + [anon_sym_LT] = ACTIONS(199), + [sym_symbol] = ACTIONS(195), + [anon_sym_LBRACK_CARET] = ACTIONS(201), + [anon_sym_BANG_LBRACK] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACE2] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(207), + [anon_sym_TODO] = ACTIONS(209), + [anon_sym_WIP] = ACTIONS(209), + [anon_sym_NOTE] = ACTIONS(211), + [anon_sym_INFO] = ACTIONS(211), + [anon_sym_XXX] = ACTIONS(211), + [sym_fixme] = ACTIONS(195), + [sym__whitespace1] = ACTIONS(213), + [sym__newline] = ACTIONS(215), + [aux_sym__text_token1] = ACTIONS(217), + [sym__verbatim_begin] = ACTIONS(219), }, [52] = { - [sym__inline] = STATE(819), - [sym__element] = STATE(115), - [sym_emphasis] = STATE(205), - [sym_emphasis_begin] = STATE(1000), - [sym_strong] = STATE(205), - [sym_strong_begin] = STATE(129), - [sym__hard_line_break] = STATE(205), - [sym_hard_line_break] = STATE(205), - [sym__smart_punctuation] = STATE(205), - [sym_autolink] = STATE(205), - [sym_highlighted] = STATE(205), - [sym_insert] = STATE(205), - [sym_delete] = STATE(205), - [sym_superscript] = STATE(205), - [sym_subscript] = STATE(205), - [sym_footnote_reference] = STATE(205), - [sym__image] = STATE(205), - [sym_full_reference_image] = STATE(205), - [sym_collapsed_reference_image] = STATE(205), - [sym_inline_image] = STATE(205), - [sym__image_description] = STATE(705), - [sym__link] = STATE(205), - [sym_full_reference_link] = STATE(205), - [sym_collapsed_reference_link] = STATE(205), - [sym_inline_link] = STATE(205), - [sym_link_text] = STATE(703), - [sym__comment_with_spaces] = STATE(205), - [sym_span] = STATE(205), - [sym_raw_inline] = STATE(205), - [sym_math] = STATE(205), - [sym_verbatim] = STATE(205), - [sym__todo_highlights] = STATE(205), - [sym_todo] = STATE(205), - [sym_note] = STATE(205), - [sym__symbol_fallback] = STATE(205), - [aux_sym__text] = STATE(136), - [aux_sym__inline_repeat1] = STATE(115), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(141), - [anon_sym__] = ACTIONS(144), - [anon_sym_LBRACE_STAR] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(516), - [aux_sym_strong_end_token1] = ACTIONS(93), - [anon_sym_BSLASH] = ACTIONS(153), - [sym_quotation_marks] = ACTIONS(156), - [sym_ellipsis] = ACTIONS(156), - [sym_em_dash] = ACTIONS(156), - [sym_en_dash] = ACTIONS(159), - [sym_backslash_escape] = ACTIONS(159), - [anon_sym_LT] = ACTIONS(162), - [anon_sym_LBRACE_EQ] = ACTIONS(165), - [anon_sym_LBRACE_PLUS] = ACTIONS(168), - [anon_sym_LBRACE_DASH] = ACTIONS(171), - [sym_symbol] = ACTIONS(156), - [anon_sym_LBRACE_CARET] = ACTIONS(174), - [anon_sym_CARET] = ACTIONS(174), - [anon_sym_LBRACE_TILDE] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_LBRACK_CARET] = ACTIONS(183), - [anon_sym_BANG_LBRACK] = ACTIONS(186), - [anon_sym_LBRACK] = ACTIONS(189), - [anon_sym_LBRACE2] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(192), - [anon_sym_TODO] = ACTIONS(195), - [anon_sym_WIP] = ACTIONS(195), - [anon_sym_NOTE] = ACTIONS(198), - [anon_sym_INFO] = ACTIONS(198), - [anon_sym_XXX] = ACTIONS(198), - [sym_fixme] = ACTIONS(156), - [anon_sym_PIPE] = ACTIONS(156), - [sym__whitespace1] = ACTIONS(519), - [sym__newline] = ACTIONS(204), - [aux_sym__text_token1] = ACTIONS(207), - [sym__verbatim_begin] = ACTIONS(210), + [sym__inline_without_trailing_space] = STATE(839), + [sym__element] = STATE(603), + [sym_emphasis] = STATE(177), + [sym_emphasis_begin] = STATE(1067), + [sym_strong] = STATE(177), + [sym_strong_begin] = STATE(1068), + [sym_superscript] = STATE(177), + [sym_superscript_begin] = STATE(1069), + [sym_subscript] = STATE(177), + [sym_subscript_begin] = STATE(1070), + [sym_highlighted] = STATE(177), + [sym_highlighted_begin] = STATE(1071), + [sym_insert] = STATE(177), + [sym_insert_begin] = STATE(1072), + [sym_delete] = STATE(177), + [sym_delete_begin] = STATE(1073), + [sym_hard_line_break] = STATE(177), + [sym__smart_punctuation] = STATE(177), + [sym_autolink] = STATE(177), + [sym_footnote_reference] = STATE(177), + [sym__image] = STATE(177), + [sym_full_reference_image] = STATE(177), + [sym_collapsed_reference_image] = STATE(177), + [sym_inline_image] = STATE(177), + [sym__image_description] = STATE(681), + [sym__link] = STATE(177), + [sym_full_reference_link] = STATE(177), + [sym_collapsed_reference_link] = STATE(177), + [sym_inline_link] = STATE(177), + [sym_link_text] = STATE(668), + [sym__comment_with_spaces] = STATE(177), + [sym_span] = STATE(177), + [sym_raw_inline] = STATE(177), + [sym_math] = STATE(177), + [sym_verbatim] = STATE(177), + [sym__todo_highlights] = STATE(177), + [sym_todo] = STATE(177), + [sym_note] = STATE(177), + [sym__symbol_fallback] = STATE(177), + [aux_sym__text] = STATE(132), + [aux_sym__inline_repeat1] = STATE(128), + [anon_sym_LBRACE_] = ACTIONS(405), + [anon_sym__] = ACTIONS(407), + [anon_sym_LBRACE_STAR] = ACTIONS(409), + [anon_sym_STAR] = ACTIONS(411), + [anon_sym_LBRACE_CARET] = ACTIONS(413), + [anon_sym_CARET] = ACTIONS(413), + [anon_sym_LBRACE_TILDE] = ACTIONS(415), + [anon_sym_TILDE] = ACTIONS(415), + [anon_sym_LBRACE_EQ] = ACTIONS(417), + [anon_sym_LBRACE_PLUS] = ACTIONS(419), + [anon_sym_LBRACE_DASH] = ACTIONS(421), + [anon_sym_BSLASH] = ACTIONS(423), + [sym_quotation_marks] = ACTIONS(425), + [sym_ellipsis] = ACTIONS(425), + [sym_em_dash] = ACTIONS(425), + [sym_en_dash] = ACTIONS(427), + [sym_backslash_escape] = ACTIONS(427), + [anon_sym_LT] = ACTIONS(429), + [sym_symbol] = ACTIONS(425), + [anon_sym_LBRACK_CARET] = ACTIONS(431), + [anon_sym_BANG_LBRACK] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LBRACE2] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(437), + [anon_sym_TODO] = ACTIONS(439), + [anon_sym_WIP] = ACTIONS(439), + [anon_sym_NOTE] = ACTIONS(441), + [anon_sym_INFO] = ACTIONS(441), + [anon_sym_XXX] = ACTIONS(441), + [sym_fixme] = ACTIONS(425), + [sym__whitespace1] = ACTIONS(443), + [sym__newline] = ACTIONS(445), + [aux_sym__text_token1] = ACTIONS(447), + [sym__verbatim_begin] = ACTIONS(449), }, [53] = { - [sym__inline] = STATE(820), - [sym__element] = STATE(91), - [sym_emphasis] = STATE(174), - [sym_emphasis_begin] = STATE(1001), - [sym_strong] = STATE(174), - [sym_strong_begin] = STATE(126), - [sym__hard_line_break] = STATE(174), - [sym_hard_line_break] = STATE(174), - [sym__smart_punctuation] = STATE(174), - [sym_autolink] = STATE(174), - [sym_highlighted] = STATE(174), - [sym_insert] = STATE(174), - [sym_delete] = STATE(174), - [sym_superscript] = STATE(174), - [sym_subscript] = STATE(174), - [sym_footnote_reference] = STATE(174), - [sym__image] = STATE(174), - [sym_full_reference_image] = STATE(174), - [sym_collapsed_reference_image] = STATE(174), - [sym_inline_image] = STATE(174), - [sym__image_description] = STATE(709), - [sym__link] = STATE(174), - [sym_full_reference_link] = STATE(174), - [sym_collapsed_reference_link] = STATE(174), - [sym_inline_link] = STATE(174), - [sym_link_text] = STATE(710), - [sym__comment_with_spaces] = STATE(174), - [sym_span] = STATE(174), - [sym_raw_inline] = STATE(174), - [sym_math] = STATE(174), - [sym_verbatim] = STATE(174), - [sym__todo_highlights] = STATE(174), - [sym_todo] = STATE(174), - [sym_note] = STATE(174), - [sym__symbol_fallback] = STATE(174), - [aux_sym__text] = STATE(148), - [aux_sym__inline_repeat1] = STATE(91), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(213), - [anon_sym__] = ACTIONS(216), - [anon_sym_LBRACE_STAR] = ACTIONS(219), - [anon_sym_STAR] = ACTIONS(522), - [aux_sym_strong_end_token1] = ACTIONS(93), - [anon_sym_BSLASH] = ACTIONS(225), - [sym_quotation_marks] = ACTIONS(228), - [sym_ellipsis] = ACTIONS(228), - [sym_em_dash] = ACTIONS(228), - [sym_en_dash] = ACTIONS(231), - [sym_backslash_escape] = ACTIONS(231), - [anon_sym_LT] = ACTIONS(234), - [anon_sym_LBRACE_EQ] = ACTIONS(237), - [anon_sym_LBRACE_PLUS] = ACTIONS(240), - [anon_sym_LBRACE_DASH] = ACTIONS(243), - [sym_symbol] = ACTIONS(228), - [anon_sym_LBRACE_CARET] = ACTIONS(246), - [anon_sym_CARET] = ACTIONS(246), - [anon_sym_LBRACE_TILDE] = ACTIONS(249), - [anon_sym_TILDE] = ACTIONS(249), - [anon_sym_LBRACK_CARET] = ACTIONS(252), - [anon_sym_BANG_LBRACK] = ACTIONS(255), - [anon_sym_LBRACK] = ACTIONS(258), - [anon_sym_LBRACE2] = ACTIONS(231), - [anon_sym_DOLLAR] = ACTIONS(261), - [anon_sym_TODO] = ACTIONS(264), - [anon_sym_WIP] = ACTIONS(264), - [anon_sym_NOTE] = ACTIONS(267), - [anon_sym_INFO] = ACTIONS(267), - [anon_sym_XXX] = ACTIONS(267), - [sym_fixme] = ACTIONS(228), - [anon_sym_PIPE] = ACTIONS(228), - [sym__whitespace1] = ACTIONS(525), - [sym__newline] = ACTIONS(273), - [aux_sym__text_token1] = ACTIONS(276), - [sym__verbatim_begin] = ACTIONS(279), + [sym__inline] = STATE(850), + [sym__element] = STATE(66), + [sym_emphasis] = STATE(171), + [sym_emphasis_begin] = STATE(1116), + [sym_strong] = STATE(171), + [sym_strong_begin] = STATE(1117), + [sym_superscript] = STATE(171), + [sym_superscript_begin] = STATE(1118), + [sym_subscript] = STATE(171), + [sym_subscript_begin] = STATE(1119), + [sym_highlighted] = STATE(171), + [sym_highlighted_begin] = STATE(1120), + [sym_insert] = STATE(171), + [sym_insert_begin] = STATE(1121), + [sym_delete] = STATE(171), + [sym_delete_begin] = STATE(1122), + [sym_hard_line_break] = STATE(171), + [sym__smart_punctuation] = STATE(171), + [sym_autolink] = STATE(171), + [sym_footnote_reference] = STATE(171), + [sym__image] = STATE(171), + [sym_full_reference_image] = STATE(171), + [sym_collapsed_reference_image] = STATE(171), + [sym_inline_image] = STATE(171), + [sym__image_description] = STATE(674), + [sym__link] = STATE(171), + [sym_full_reference_link] = STATE(171), + [sym_collapsed_reference_link] = STATE(171), + [sym_inline_link] = STATE(171), + [sym_link_text] = STATE(675), + [sym__comment_with_spaces] = STATE(171), + [sym_span] = STATE(171), + [sym_raw_inline] = STATE(171), + [sym_math] = STATE(171), + [sym_verbatim] = STATE(171), + [sym__todo_highlights] = STATE(171), + [sym_todo] = STATE(171), + [sym_note] = STATE(171), + [sym__symbol_fallback] = STATE(171), + [aux_sym__text] = STATE(146), + [aux_sym__inline_repeat1] = STATE(66), + [anon_sym_LBRACE_] = ACTIONS(451), + [anon_sym__] = ACTIONS(453), + [anon_sym_LBRACE_STAR] = ACTIONS(455), + [anon_sym_STAR] = ACTIONS(457), + [anon_sym_LBRACE_CARET] = ACTIONS(459), + [anon_sym_CARET] = ACTIONS(459), + [anon_sym_LBRACE_TILDE] = ACTIONS(461), + [anon_sym_TILDE] = ACTIONS(461), + [anon_sym_LBRACE_EQ] = ACTIONS(463), + [anon_sym_LBRACE_PLUS] = ACTIONS(465), + [anon_sym_LBRACE_DASH] = ACTIONS(467), + [anon_sym_BSLASH] = ACTIONS(469), + [sym_quotation_marks] = ACTIONS(471), + [sym_ellipsis] = ACTIONS(471), + [sym_em_dash] = ACTIONS(471), + [sym_en_dash] = ACTIONS(473), + [sym_backslash_escape] = ACTIONS(473), + [anon_sym_LT] = ACTIONS(475), + [sym_symbol] = ACTIONS(471), + [anon_sym_LBRACK_CARET] = ACTIONS(477), + [anon_sym_BANG_LBRACK] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(481), + [anon_sym_LBRACE2] = ACTIONS(473), + [anon_sym_DOLLAR] = ACTIONS(483), + [anon_sym_TODO] = ACTIONS(485), + [anon_sym_WIP] = ACTIONS(485), + [anon_sym_NOTE] = ACTIONS(487), + [anon_sym_INFO] = ACTIONS(487), + [anon_sym_XXX] = ACTIONS(487), + [sym_fixme] = ACTIONS(471), + [sym__whitespace1] = ACTIONS(489), + [sym__newline] = ACTIONS(491), + [aux_sym__text_token1] = ACTIONS(493), + [sym__verbatim_begin] = ACTIONS(495), }, [54] = { - [sym__inline] = STATE(855), - [sym__element] = STATE(115), - [sym_emphasis] = STATE(205), - [sym_emphasis_begin] = STATE(1000), - [sym_strong] = STATE(205), - [sym_strong_begin] = STATE(129), - [sym__hard_line_break] = STATE(205), - [sym_hard_line_break] = STATE(205), - [sym__smart_punctuation] = STATE(205), - [sym_autolink] = STATE(205), - [sym_highlighted] = STATE(205), - [sym_insert] = STATE(205), - [sym_delete] = STATE(205), - [sym_superscript] = STATE(205), - [sym_subscript] = STATE(205), - [sym_footnote_reference] = STATE(205), - [sym__image] = STATE(205), - [sym_full_reference_image] = STATE(205), - [sym_collapsed_reference_image] = STATE(205), - [sym_inline_image] = STATE(205), - [sym__image_description] = STATE(705), - [sym__link] = STATE(205), - [sym_full_reference_link] = STATE(205), - [sym_collapsed_reference_link] = STATE(205), - [sym_inline_link] = STATE(205), - [sym_link_text] = STATE(703), - [sym__comment_with_spaces] = STATE(205), - [sym_span] = STATE(205), - [sym_raw_inline] = STATE(205), - [sym_math] = STATE(205), - [sym_verbatim] = STATE(205), - [sym__todo_highlights] = STATE(205), - [sym_todo] = STATE(205), - [sym_note] = STATE(205), - [sym__symbol_fallback] = STATE(205), - [aux_sym__text] = STATE(136), - [aux_sym__inline_repeat1] = STATE(115), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(141), - [anon_sym__] = ACTIONS(144), - [anon_sym_LBRACE_STAR] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(150), - [anon_sym_BSLASH] = ACTIONS(153), - [sym_quotation_marks] = ACTIONS(156), - [sym_ellipsis] = ACTIONS(156), - [sym_em_dash] = ACTIONS(156), - [sym_en_dash] = ACTIONS(159), - [sym_backslash_escape] = ACTIONS(159), - [anon_sym_LT] = ACTIONS(162), - [anon_sym_LBRACE_EQ] = ACTIONS(165), - [anon_sym_LBRACE_PLUS] = ACTIONS(168), - [anon_sym_LBRACE_DASH] = ACTIONS(171), - [sym_symbol] = ACTIONS(156), - [anon_sym_LBRACE_CARET] = ACTIONS(174), - [anon_sym_CARET] = ACTIONS(174), - [anon_sym_LBRACE_TILDE] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_LBRACK_CARET] = ACTIONS(183), - [anon_sym_BANG_LBRACK] = ACTIONS(186), - [anon_sym_LBRACK] = ACTIONS(189), - [anon_sym_RBRACK2] = ACTIONS(93), - [anon_sym_LBRACE2] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(192), - [anon_sym_TODO] = ACTIONS(195), - [anon_sym_WIP] = ACTIONS(195), - [anon_sym_NOTE] = ACTIONS(198), - [anon_sym_INFO] = ACTIONS(198), - [anon_sym_XXX] = ACTIONS(198), - [sym_fixme] = ACTIONS(156), - [anon_sym_PIPE] = ACTIONS(156), - [sym__whitespace1] = ACTIONS(201), - [sym__newline] = ACTIONS(204), - [aux_sym__text_token1] = ACTIONS(207), - [sym__verbatim_begin] = ACTIONS(210), + [sym__inline_without_trailing_space] = STATE(982), + [sym__element] = STATE(603), + [sym_emphasis] = STATE(177), + [sym_emphasis_begin] = STATE(1067), + [sym_strong] = STATE(177), + [sym_strong_begin] = STATE(1068), + [sym_superscript] = STATE(177), + [sym_superscript_begin] = STATE(1069), + [sym_subscript] = STATE(177), + [sym_subscript_begin] = STATE(1070), + [sym_highlighted] = STATE(177), + [sym_highlighted_begin] = STATE(1071), + [sym_insert] = STATE(177), + [sym_insert_begin] = STATE(1072), + [sym_delete] = STATE(177), + [sym_delete_begin] = STATE(1073), + [sym_hard_line_break] = STATE(177), + [sym__smart_punctuation] = STATE(177), + [sym_autolink] = STATE(177), + [sym_footnote_reference] = STATE(177), + [sym__image] = STATE(177), + [sym_full_reference_image] = STATE(177), + [sym_collapsed_reference_image] = STATE(177), + [sym_inline_image] = STATE(177), + [sym__image_description] = STATE(681), + [sym__link] = STATE(177), + [sym_full_reference_link] = STATE(177), + [sym_collapsed_reference_link] = STATE(177), + [sym_inline_link] = STATE(177), + [sym_link_text] = STATE(668), + [sym__comment_with_spaces] = STATE(177), + [sym_span] = STATE(177), + [sym_raw_inline] = STATE(177), + [sym_math] = STATE(177), + [sym_verbatim] = STATE(177), + [sym__todo_highlights] = STATE(177), + [sym_todo] = STATE(177), + [sym_note] = STATE(177), + [sym__symbol_fallback] = STATE(177), + [aux_sym__text] = STATE(132), + [aux_sym__inline_repeat1] = STATE(128), + [anon_sym_LBRACE_] = ACTIONS(405), + [anon_sym__] = ACTIONS(407), + [anon_sym_LBRACE_STAR] = ACTIONS(409), + [anon_sym_STAR] = ACTIONS(411), + [anon_sym_LBRACE_CARET] = ACTIONS(413), + [anon_sym_CARET] = ACTIONS(413), + [anon_sym_LBRACE_TILDE] = ACTIONS(415), + [anon_sym_TILDE] = ACTIONS(415), + [anon_sym_LBRACE_EQ] = ACTIONS(417), + [anon_sym_LBRACE_PLUS] = ACTIONS(419), + [anon_sym_LBRACE_DASH] = ACTIONS(421), + [anon_sym_BSLASH] = ACTIONS(423), + [sym_quotation_marks] = ACTIONS(425), + [sym_ellipsis] = ACTIONS(425), + [sym_em_dash] = ACTIONS(425), + [sym_en_dash] = ACTIONS(427), + [sym_backslash_escape] = ACTIONS(427), + [anon_sym_LT] = ACTIONS(429), + [sym_symbol] = ACTIONS(425), + [anon_sym_LBRACK_CARET] = ACTIONS(431), + [anon_sym_BANG_LBRACK] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LBRACE2] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(437), + [anon_sym_TODO] = ACTIONS(439), + [anon_sym_WIP] = ACTIONS(439), + [anon_sym_NOTE] = ACTIONS(441), + [anon_sym_INFO] = ACTIONS(441), + [anon_sym_XXX] = ACTIONS(441), + [sym_fixme] = ACTIONS(425), + [sym__whitespace1] = ACTIONS(443), + [sym__newline] = ACTIONS(445), + [aux_sym__text_token1] = ACTIONS(447), + [sym__verbatim_begin] = ACTIONS(449), }, [55] = { - [sym__inline] = STATE(966), - [sym__element] = STATE(118), - [sym_emphasis] = STATE(201), - [sym_emphasis_begin] = STATE(1005), - [sym_strong] = STATE(201), - [sym_strong_begin] = STATE(105), - [sym__hard_line_break] = STATE(201), - [sym_hard_line_break] = STATE(201), - [sym__smart_punctuation] = STATE(201), - [sym_autolink] = STATE(201), - [sym_highlighted] = STATE(201), - [sym_insert] = STATE(201), - [sym_delete] = STATE(201), - [sym_superscript] = STATE(201), - [sym_subscript] = STATE(201), - [sym_footnote_reference] = STATE(201), - [sym__image] = STATE(201), - [sym_full_reference_image] = STATE(201), - [sym_collapsed_reference_image] = STATE(201), - [sym_inline_image] = STATE(201), - [sym__image_description] = STATE(712), - [sym__link] = STATE(201), - [sym_full_reference_link] = STATE(201), - [sym_collapsed_reference_link] = STATE(201), - [sym_inline_link] = STATE(201), - [sym_link_text] = STATE(717), - [sym__comment_with_spaces] = STATE(201), - [sym_span] = STATE(201), - [sym_raw_inline] = STATE(201), - [sym_math] = STATE(201), - [sym_verbatim] = STATE(201), - [sym__todo_highlights] = STATE(201), - [sym_todo] = STATE(201), - [sym_note] = STATE(201), - [sym__symbol_fallback] = STATE(201), - [aux_sym__text] = STATE(139), - [aux_sym__inline_repeat1] = STATE(118), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(51), - [anon_sym__] = ACTIONS(54), - [anon_sym_LBRACE_STAR] = ACTIONS(57), - [anon_sym_STAR] = ACTIONS(132), - [aux_sym_strong_end_token1] = ACTIONS(93), - [anon_sym_BSLASH] = ACTIONS(63), - [sym_quotation_marks] = ACTIONS(66), - [sym_ellipsis] = ACTIONS(66), - [sym_em_dash] = ACTIONS(66), - [sym_en_dash] = ACTIONS(69), - [sym_backslash_escape] = ACTIONS(69), - [anon_sym_LT] = ACTIONS(72), - [anon_sym_LBRACE_EQ] = ACTIONS(75), - [anon_sym_LBRACE_PLUS] = ACTIONS(78), - [anon_sym_LBRACE_DASH] = ACTIONS(81), - [sym_symbol] = ACTIONS(66), - [anon_sym_LBRACE_CARET] = ACTIONS(84), - [anon_sym_CARET] = ACTIONS(84), - [anon_sym_LBRACE_TILDE] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(87), - [anon_sym_LBRACK_CARET] = ACTIONS(95), - [anon_sym_BANG_LBRACK] = ACTIONS(100), - [anon_sym_LBRACK] = ACTIONS(103), - [anon_sym_LBRACE2] = ACTIONS(69), - [anon_sym_DOLLAR] = ACTIONS(106), - [anon_sym_TODO] = ACTIONS(109), - [anon_sym_WIP] = ACTIONS(109), - [anon_sym_NOTE] = ACTIONS(112), - [anon_sym_INFO] = ACTIONS(112), - [anon_sym_XXX] = ACTIONS(112), - [sym_fixme] = ACTIONS(66), - [anon_sym_PIPE] = ACTIONS(66), - [sym__whitespace1] = ACTIONS(135), - [sym__newline] = ACTIONS(118), - [aux_sym__text_token1] = ACTIONS(121), - [sym__verbatim_begin] = ACTIONS(124), + [sym__inline_without_trailing_space] = STATE(980), + [sym__element] = STATE(572), + [sym_emphasis] = STATE(208), + [sym_emphasis_begin] = STATE(1074), + [sym_strong] = STATE(208), + [sym_strong_begin] = STATE(1075), + [sym_superscript] = STATE(208), + [sym_superscript_begin] = STATE(1076), + [sym_subscript] = STATE(208), + [sym_subscript_begin] = STATE(1077), + [sym_highlighted] = STATE(208), + [sym_highlighted_begin] = STATE(1078), + [sym_insert] = STATE(208), + [sym_insert_begin] = STATE(1079), + [sym_delete] = STATE(208), + [sym_delete_begin] = STATE(1080), + [sym_hard_line_break] = STATE(208), + [sym__smart_punctuation] = STATE(208), + [sym_autolink] = STATE(208), + [sym_footnote_reference] = STATE(208), + [sym__image] = STATE(208), + [sym_full_reference_image] = STATE(208), + [sym_collapsed_reference_image] = STATE(208), + [sym_inline_image] = STATE(208), + [sym__image_description] = STATE(680), + [sym__link] = STATE(208), + [sym_full_reference_link] = STATE(208), + [sym_collapsed_reference_link] = STATE(208), + [sym_inline_link] = STATE(208), + [sym_link_text] = STATE(663), + [sym__comment_with_spaces] = STATE(208), + [sym_span] = STATE(208), + [sym_raw_inline] = STATE(208), + [sym_math] = STATE(208), + [sym_verbatim] = STATE(208), + [sym__todo_highlights] = STATE(208), + [sym_todo] = STATE(208), + [sym_note] = STATE(208), + [sym__symbol_fallback] = STATE(208), + [aux_sym__text] = STATE(131), + [aux_sym__inline_repeat1] = STATE(130), + [anon_sym_LBRACE_] = ACTIONS(175), + [anon_sym__] = ACTIONS(177), + [anon_sym_LBRACE_STAR] = ACTIONS(179), + [anon_sym_STAR] = ACTIONS(181), + [anon_sym_LBRACE_CARET] = ACTIONS(183), + [anon_sym_CARET] = ACTIONS(183), + [anon_sym_LBRACE_TILDE] = ACTIONS(185), + [anon_sym_TILDE] = ACTIONS(185), + [anon_sym_LBRACE_EQ] = ACTIONS(187), + [anon_sym_LBRACE_PLUS] = ACTIONS(189), + [anon_sym_LBRACE_DASH] = ACTIONS(191), + [anon_sym_BSLASH] = ACTIONS(193), + [sym_quotation_marks] = ACTIONS(195), + [sym_ellipsis] = ACTIONS(195), + [sym_em_dash] = ACTIONS(195), + [sym_en_dash] = ACTIONS(197), + [sym_backslash_escape] = ACTIONS(197), + [anon_sym_LT] = ACTIONS(199), + [sym_symbol] = ACTIONS(195), + [anon_sym_LBRACK_CARET] = ACTIONS(201), + [anon_sym_BANG_LBRACK] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACE2] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(207), + [anon_sym_TODO] = ACTIONS(209), + [anon_sym_WIP] = ACTIONS(209), + [anon_sym_NOTE] = ACTIONS(211), + [anon_sym_INFO] = ACTIONS(211), + [anon_sym_XXX] = ACTIONS(211), + [sym_fixme] = ACTIONS(195), + [sym__whitespace1] = ACTIONS(213), + [sym__newline] = ACTIONS(215), + [aux_sym__text_token1] = ACTIONS(217), + [sym__verbatim_begin] = ACTIONS(219), }, [56] = { - [sym__inline] = STATE(786), - [sym__element] = STATE(114), - [sym_emphasis] = STATE(181), - [sym_emphasis_begin] = STATE(1004), - [sym_strong] = STATE(181), - [sym_strong_begin] = STATE(110), - [sym__hard_line_break] = STATE(181), - [sym_hard_line_break] = STATE(181), - [sym__smart_punctuation] = STATE(181), - [sym_autolink] = STATE(181), - [sym_highlighted] = STATE(181), - [sym_insert] = STATE(181), - [sym_delete] = STATE(181), - [sym_superscript] = STATE(181), - [sym_subscript] = STATE(181), - [sym_footnote_reference] = STATE(181), - [sym__image] = STATE(181), - [sym_full_reference_image] = STATE(181), - [sym_collapsed_reference_image] = STATE(181), - [sym_inline_image] = STATE(181), - [sym__image_description] = STATE(688), - [sym__link] = STATE(181), - [sym_full_reference_link] = STATE(181), - [sym_collapsed_reference_link] = STATE(181), - [sym_inline_link] = STATE(181), - [sym_link_text] = STATE(693), - [sym__comment_with_spaces] = STATE(181), - [sym_span] = STATE(181), - [sym_raw_inline] = STATE(181), - [sym_math] = STATE(181), - [sym_verbatim] = STATE(181), - [sym__todo_highlights] = STATE(181), - [sym_todo] = STATE(181), - [sym_note] = STATE(181), - [sym__symbol_fallback] = STATE(181), - [aux_sym__text] = STATE(153), - [aux_sym__inline_repeat1] = STATE(114), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(420), - [anon_sym__] = ACTIONS(423), - [anon_sym_LBRACE_STAR] = ACTIONS(426), - [anon_sym_STAR] = ACTIONS(429), - [anon_sym_BSLASH] = ACTIONS(432), - [sym_quotation_marks] = ACTIONS(435), - [sym_ellipsis] = ACTIONS(435), - [sym_em_dash] = ACTIONS(435), - [sym_en_dash] = ACTIONS(438), - [sym_backslash_escape] = ACTIONS(438), - [anon_sym_LT] = ACTIONS(441), - [anon_sym_LBRACE_EQ] = ACTIONS(444), - [anon_sym_LBRACE_PLUS] = ACTIONS(447), - [anon_sym_LBRACE_DASH] = ACTIONS(450), - [sym_symbol] = ACTIONS(435), - [anon_sym_LBRACE_CARET] = ACTIONS(453), - [anon_sym_CARET] = ACTIONS(453), - [anon_sym_LBRACE_TILDE] = ACTIONS(456), - [anon_sym_TILDE] = ACTIONS(456), - [anon_sym_LBRACK_CARET] = ACTIONS(459), - [anon_sym_BANG_LBRACK] = ACTIONS(462), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_LBRACE2] = ACTIONS(438), - [anon_sym_DOLLAR] = ACTIONS(468), - [anon_sym_TODO] = ACTIONS(471), - [anon_sym_WIP] = ACTIONS(471), - [anon_sym_NOTE] = ACTIONS(474), - [anon_sym_INFO] = ACTIONS(474), - [anon_sym_XXX] = ACTIONS(474), - [sym_fixme] = ACTIONS(435), - [anon_sym_PIPE] = ACTIONS(435), - [sym__whitespace1] = ACTIONS(477), - [sym__newline] = ACTIONS(480), - [aux_sym__text_token1] = ACTIONS(483), - [sym__verbatim_begin] = ACTIONS(486), - [sym_emphasis_end] = ACTIONS(93), + [sym__inline] = STATE(973), + [sym__element] = STATE(79), + [sym_emphasis] = STATE(161), + [sym_emphasis_begin] = STATE(1081), + [sym_strong] = STATE(161), + [sym_strong_begin] = STATE(1082), + [sym_superscript] = STATE(161), + [sym_superscript_begin] = STATE(1083), + [sym_subscript] = STATE(161), + [sym_subscript_begin] = STATE(1084), + [sym_highlighted] = STATE(161), + [sym_highlighted_begin] = STATE(1085), + [sym_insert] = STATE(161), + [sym_insert_begin] = STATE(1086), + [sym_delete] = STATE(161), + [sym_delete_begin] = STATE(1087), + [sym_hard_line_break] = STATE(161), + [sym__smart_punctuation] = STATE(161), + [sym_autolink] = STATE(161), + [sym_footnote_reference] = STATE(161), + [sym__image] = STATE(161), + [sym_full_reference_image] = STATE(161), + [sym_collapsed_reference_image] = STATE(161), + [sym_inline_image] = STATE(161), + [sym__image_description] = STATE(692), + [sym__link] = STATE(161), + [sym_full_reference_link] = STATE(161), + [sym_collapsed_reference_link] = STATE(161), + [sym_inline_link] = STATE(161), + [sym_link_text] = STATE(687), + [sym__comment_with_spaces] = STATE(161), + [sym_span] = STATE(161), + [sym_raw_inline] = STATE(161), + [sym_math] = STATE(161), + [sym_verbatim] = STATE(161), + [sym__todo_highlights] = STATE(161), + [sym_todo] = STATE(161), + [sym_note] = STATE(161), + [sym__symbol_fallback] = STATE(161), + [aux_sym__text] = STATE(149), + [aux_sym__inline_repeat1] = STATE(79), + [anon_sym_LBRACE_] = ACTIONS(359), + [anon_sym__] = ACTIONS(361), + [anon_sym_LBRACE_STAR] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(365), + [anon_sym_LBRACE_CARET] = ACTIONS(367), + [anon_sym_CARET] = ACTIONS(367), + [anon_sym_LBRACE_TILDE] = ACTIONS(369), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_LBRACE_EQ] = ACTIONS(371), + [anon_sym_LBRACE_PLUS] = ACTIONS(373), + [anon_sym_LBRACE_DASH] = ACTIONS(375), + [anon_sym_BSLASH] = ACTIONS(377), + [sym_quotation_marks] = ACTIONS(379), + [sym_ellipsis] = ACTIONS(379), + [sym_em_dash] = ACTIONS(379), + [sym_en_dash] = ACTIONS(381), + [sym_backslash_escape] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(383), + [sym_symbol] = ACTIONS(379), + [anon_sym_LBRACK_CARET] = ACTIONS(385), + [anon_sym_BANG_LBRACK] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE2] = ACTIONS(381), + [anon_sym_DOLLAR] = ACTIONS(391), + [anon_sym_TODO] = ACTIONS(393), + [anon_sym_WIP] = ACTIONS(393), + [anon_sym_NOTE] = ACTIONS(395), + [anon_sym_INFO] = ACTIONS(395), + [anon_sym_XXX] = ACTIONS(395), + [sym_fixme] = ACTIONS(379), + [sym__whitespace1] = ACTIONS(397), + [sym__newline] = ACTIONS(399), + [aux_sym__text_token1] = ACTIONS(401), + [sym__verbatim_begin] = ACTIONS(403), }, [57] = { - [sym__inline] = STATE(783), - [sym__element] = STATE(102), - [sym_emphasis] = STATE(194), - [sym_emphasis_begin] = STATE(1003), - [sym_strong] = STATE(194), - [sym_strong_begin] = STATE(113), - [sym__hard_line_break] = STATE(194), - [sym_hard_line_break] = STATE(194), - [sym__smart_punctuation] = STATE(194), - [sym_autolink] = STATE(194), - [sym_highlighted] = STATE(194), - [sym_insert] = STATE(194), - [sym_delete] = STATE(194), - [sym_superscript] = STATE(194), - [sym_subscript] = STATE(194), - [sym_footnote_reference] = STATE(194), - [sym__image] = STATE(194), - [sym_full_reference_image] = STATE(194), - [sym_collapsed_reference_image] = STATE(194), - [sym_inline_image] = STATE(194), - [sym__image_description] = STATE(696), - [sym__link] = STATE(194), - [sym_full_reference_link] = STATE(194), - [sym_collapsed_reference_link] = STATE(194), - [sym_inline_link] = STATE(194), - [sym_link_text] = STATE(695), - [sym__comment_with_spaces] = STATE(194), - [sym_span] = STATE(194), - [sym_raw_inline] = STATE(194), - [sym_math] = STATE(194), - [sym_verbatim] = STATE(194), - [sym__todo_highlights] = STATE(194), - [sym_todo] = STATE(194), - [sym_note] = STATE(194), - [sym__symbol_fallback] = STATE(194), - [aux_sym__text] = STATE(170), - [aux_sym__inline_repeat1] = STATE(102), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(351), - [anon_sym__] = ACTIONS(354), - [anon_sym_LBRACE_STAR] = ACTIONS(357), - [anon_sym_STAR] = ACTIONS(360), - [anon_sym_BSLASH] = ACTIONS(363), - [sym_quotation_marks] = ACTIONS(366), - [sym_ellipsis] = ACTIONS(366), - [sym_em_dash] = ACTIONS(366), - [sym_en_dash] = ACTIONS(369), - [sym_backslash_escape] = ACTIONS(369), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_LBRACE_EQ] = ACTIONS(375), - [anon_sym_LBRACE_PLUS] = ACTIONS(378), - [anon_sym_LBRACE_DASH] = ACTIONS(381), - [sym_symbol] = ACTIONS(366), - [anon_sym_LBRACE_CARET] = ACTIONS(384), - [anon_sym_CARET] = ACTIONS(384), - [anon_sym_LBRACE_TILDE] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_LBRACK_CARET] = ACTIONS(390), - [anon_sym_BANG_LBRACK] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(396), - [anon_sym_LBRACE2] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(399), - [anon_sym_TODO] = ACTIONS(402), - [anon_sym_WIP] = ACTIONS(402), - [anon_sym_NOTE] = ACTIONS(405), - [anon_sym_INFO] = ACTIONS(405), - [anon_sym_XXX] = ACTIONS(405), - [sym_fixme] = ACTIONS(366), - [anon_sym_PIPE] = ACTIONS(366), - [sym__whitespace1] = ACTIONS(408), - [sym__newline] = ACTIONS(411), - [aux_sym__text_token1] = ACTIONS(414), - [sym__verbatim_begin] = ACTIONS(417), - [sym_emphasis_end] = ACTIONS(93), + [sym__inline] = STATE(814), + [sym__element] = STATE(93), + [sym_emphasis] = STATE(197), + [sym_emphasis_begin] = STATE(1088), + [sym_strong] = STATE(197), + [sym_strong_begin] = STATE(1089), + [sym_superscript] = STATE(197), + [sym_superscript_begin] = STATE(1090), + [sym_subscript] = STATE(197), + [sym_subscript_begin] = STATE(1091), + [sym_highlighted] = STATE(197), + [sym_highlighted_begin] = STATE(1092), + [sym_insert] = STATE(197), + [sym_insert_begin] = STATE(1093), + [sym_delete] = STATE(197), + [sym_delete_begin] = STATE(1094), + [sym_hard_line_break] = STATE(197), + [sym__smart_punctuation] = STATE(197), + [sym_autolink] = STATE(197), + [sym_footnote_reference] = STATE(197), + [sym__image] = STATE(197), + [sym_full_reference_image] = STATE(197), + [sym_collapsed_reference_image] = STATE(197), + [sym_inline_image] = STATE(197), + [sym__image_description] = STATE(697), + [sym__link] = STATE(197), + [sym_full_reference_link] = STATE(197), + [sym_collapsed_reference_link] = STATE(197), + [sym_inline_link] = STATE(197), + [sym_link_text] = STATE(682), + [sym__comment_with_spaces] = STATE(197), + [sym_span] = STATE(197), + [sym_raw_inline] = STATE(197), + [sym_math] = STATE(197), + [sym_verbatim] = STATE(197), + [sym__todo_highlights] = STATE(197), + [sym_todo] = STATE(197), + [sym_note] = STATE(197), + [sym__symbol_fallback] = STATE(197), + [aux_sym__text] = STATE(134), + [aux_sym__inline_repeat1] = STATE(93), + [anon_sym_LBRACE_] = ACTIONS(313), + [anon_sym__] = ACTIONS(315), + [anon_sym_LBRACE_STAR] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_LBRACE_CARET] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [anon_sym_LBRACE_TILDE] = ACTIONS(323), + [anon_sym_TILDE] = ACTIONS(323), + [anon_sym_LBRACE_EQ] = ACTIONS(325), + [anon_sym_LBRACE_PLUS] = ACTIONS(327), + [anon_sym_LBRACE_DASH] = ACTIONS(329), + [anon_sym_BSLASH] = ACTIONS(331), + [sym_quotation_marks] = ACTIONS(333), + [sym_ellipsis] = ACTIONS(333), + [sym_em_dash] = ACTIONS(333), + [sym_en_dash] = ACTIONS(335), + [sym_backslash_escape] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(337), + [sym_symbol] = ACTIONS(333), + [anon_sym_LBRACK_CARET] = ACTIONS(339), + [anon_sym_BANG_LBRACK] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE2] = ACTIONS(335), + [anon_sym_DOLLAR] = ACTIONS(345), + [anon_sym_TODO] = ACTIONS(347), + [anon_sym_WIP] = ACTIONS(347), + [anon_sym_NOTE] = ACTIONS(349), + [anon_sym_INFO] = ACTIONS(349), + [anon_sym_XXX] = ACTIONS(349), + [sym_fixme] = ACTIONS(333), + [sym__whitespace1] = ACTIONS(351), + [sym__newline] = ACTIONS(353), + [aux_sym__text_token1] = ACTIONS(355), + [sym__verbatim_begin] = ACTIONS(357), }, [58] = { - [sym__inline] = STATE(838), - [sym__element] = STATE(88), - [sym_emphasis] = STATE(209), - [sym_emphasis_begin] = STATE(1002), - [sym_strong] = STATE(209), - [sym_strong_begin] = STATE(121), - [sym__hard_line_break] = STATE(209), - [sym_hard_line_break] = STATE(209), - [sym__smart_punctuation] = STATE(209), - [sym_autolink] = STATE(209), - [sym_highlighted] = STATE(209), - [sym_insert] = STATE(209), - [sym_delete] = STATE(209), - [sym_superscript] = STATE(209), - [sym_subscript] = STATE(209), - [sym_footnote_reference] = STATE(209), - [sym__image] = STATE(209), - [sym_full_reference_image] = STATE(209), - [sym_collapsed_reference_image] = STATE(209), - [sym_inline_image] = STATE(209), - [sym__image_description] = STATE(706), - [sym__link] = STATE(209), - [sym_full_reference_link] = STATE(209), - [sym_collapsed_reference_link] = STATE(209), - [sym_inline_link] = STATE(209), - [sym_link_text] = STATE(707), - [sym__comment_with_spaces] = STATE(209), - [sym_span] = STATE(209), - [sym_raw_inline] = STATE(209), - [sym_math] = STATE(209), - [sym_verbatim] = STATE(209), - [sym__todo_highlights] = STATE(209), - [sym_todo] = STATE(209), - [sym_note] = STATE(209), - [sym__symbol_fallback] = STATE(209), - [aux_sym__text] = STATE(150), - [aux_sym__inline_repeat1] = STATE(88), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(282), - [anon_sym__] = ACTIONS(285), - [anon_sym_LBRACE_STAR] = ACTIONS(288), - [anon_sym_STAR] = ACTIONS(291), - [anon_sym_BSLASH] = ACTIONS(294), - [sym_quotation_marks] = ACTIONS(297), - [sym_ellipsis] = ACTIONS(297), - [sym_em_dash] = ACTIONS(297), - [sym_en_dash] = ACTIONS(300), - [sym_backslash_escape] = ACTIONS(300), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACE_EQ] = ACTIONS(306), - [anon_sym_LBRACE_PLUS] = ACTIONS(309), - [anon_sym_LBRACE_DASH] = ACTIONS(312), - [sym_symbol] = ACTIONS(297), - [anon_sym_LBRACE_CARET] = ACTIONS(315), - [anon_sym_CARET] = ACTIONS(315), - [anon_sym_LBRACE_TILDE] = ACTIONS(318), - [anon_sym_TILDE] = ACTIONS(318), - [anon_sym_LBRACK_CARET] = ACTIONS(321), - [anon_sym_BANG_LBRACK] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(327), - [anon_sym_LBRACE2] = ACTIONS(300), - [anon_sym_DOLLAR] = ACTIONS(330), - [anon_sym_TODO] = ACTIONS(333), - [anon_sym_WIP] = ACTIONS(333), - [anon_sym_NOTE] = ACTIONS(336), - [anon_sym_INFO] = ACTIONS(336), - [anon_sym_XXX] = ACTIONS(336), - [sym_fixme] = ACTIONS(297), - [anon_sym_PIPE] = ACTIONS(297), - [sym__whitespace1] = ACTIONS(339), - [sym__newline] = ACTIONS(342), - [aux_sym__text_token1] = ACTIONS(345), - [sym__verbatim_begin] = ACTIONS(348), - [sym_emphasis_end] = ACTIONS(93), - }, - [59] = { - [sym__inline] = STATE(837), - [sym__element] = STATE(91), - [sym_emphasis] = STATE(174), - [sym_emphasis_begin] = STATE(1001), - [sym_strong] = STATE(174), - [sym_strong_begin] = STATE(126), - [sym__hard_line_break] = STATE(174), - [sym_hard_line_break] = STATE(174), - [sym__smart_punctuation] = STATE(174), - [sym_autolink] = STATE(174), - [sym_highlighted] = STATE(174), - [sym_insert] = STATE(174), - [sym_delete] = STATE(174), - [sym_superscript] = STATE(174), - [sym_subscript] = STATE(174), - [sym_footnote_reference] = STATE(174), - [sym__image] = STATE(174), - [sym_full_reference_image] = STATE(174), - [sym_collapsed_reference_image] = STATE(174), - [sym_inline_image] = STATE(174), - [sym__image_description] = STATE(709), - [sym__link] = STATE(174), - [sym_full_reference_link] = STATE(174), - [sym_collapsed_reference_link] = STATE(174), - [sym_inline_link] = STATE(174), - [sym_link_text] = STATE(710), - [sym__comment_with_spaces] = STATE(174), - [sym_span] = STATE(174), - [sym_raw_inline] = STATE(174), - [sym_math] = STATE(174), - [sym_verbatim] = STATE(174), - [sym__todo_highlights] = STATE(174), - [sym_todo] = STATE(174), - [sym_note] = STATE(174), - [sym__symbol_fallback] = STATE(174), - [aux_sym__text] = STATE(148), - [aux_sym__inline_repeat1] = STATE(91), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(213), - [anon_sym__] = ACTIONS(216), - [anon_sym_LBRACE_STAR] = ACTIONS(219), - [anon_sym_STAR] = ACTIONS(222), - [anon_sym_BSLASH] = ACTIONS(225), - [sym_quotation_marks] = ACTIONS(228), - [sym_ellipsis] = ACTIONS(228), - [sym_em_dash] = ACTIONS(228), - [sym_en_dash] = ACTIONS(231), - [sym_backslash_escape] = ACTIONS(231), - [anon_sym_LT] = ACTIONS(234), - [anon_sym_LBRACE_EQ] = ACTIONS(237), - [anon_sym_LBRACE_PLUS] = ACTIONS(240), - [anon_sym_LBRACE_DASH] = ACTIONS(243), - [sym_symbol] = ACTIONS(228), - [anon_sym_LBRACE_CARET] = ACTIONS(246), - [anon_sym_CARET] = ACTIONS(246), - [anon_sym_LBRACE_TILDE] = ACTIONS(249), - [anon_sym_TILDE] = ACTIONS(249), - [anon_sym_LBRACK_CARET] = ACTIONS(252), - [anon_sym_BANG_LBRACK] = ACTIONS(255), - [anon_sym_LBRACK] = ACTIONS(258), - [anon_sym_LBRACE2] = ACTIONS(231), - [anon_sym_DOLLAR] = ACTIONS(261), - [anon_sym_TODO] = ACTIONS(264), - [anon_sym_WIP] = ACTIONS(264), - [anon_sym_NOTE] = ACTIONS(267), - [anon_sym_INFO] = ACTIONS(267), - [anon_sym_XXX] = ACTIONS(267), - [sym_fixme] = ACTIONS(228), - [anon_sym_PIPE] = ACTIONS(228), - [sym__whitespace1] = ACTIONS(270), - [sym__newline] = ACTIONS(273), - [aux_sym__text_token1] = ACTIONS(276), - [sym__verbatim_begin] = ACTIONS(279), - [sym_emphasis_end] = ACTIONS(93), - }, - [60] = { - [sym__inline] = STATE(836), - [sym__element] = STATE(115), - [sym_emphasis] = STATE(205), - [sym_emphasis_begin] = STATE(1000), - [sym_strong] = STATE(205), - [sym_strong_begin] = STATE(129), - [sym__hard_line_break] = STATE(205), - [sym_hard_line_break] = STATE(205), - [sym__smart_punctuation] = STATE(205), - [sym_autolink] = STATE(205), - [sym_highlighted] = STATE(205), - [sym_insert] = STATE(205), - [sym_delete] = STATE(205), - [sym_superscript] = STATE(205), - [sym_subscript] = STATE(205), - [sym_footnote_reference] = STATE(205), - [sym__image] = STATE(205), - [sym_full_reference_image] = STATE(205), - [sym_collapsed_reference_image] = STATE(205), - [sym_inline_image] = STATE(205), - [sym__image_description] = STATE(705), - [sym__link] = STATE(205), - [sym_full_reference_link] = STATE(205), - [sym_collapsed_reference_link] = STATE(205), - [sym_inline_link] = STATE(205), - [sym_link_text] = STATE(703), - [sym__comment_with_spaces] = STATE(205), - [sym_span] = STATE(205), - [sym_raw_inline] = STATE(205), - [sym_math] = STATE(205), - [sym_verbatim] = STATE(205), - [sym__todo_highlights] = STATE(205), - [sym_todo] = STATE(205), - [sym_note] = STATE(205), - [sym__symbol_fallback] = STATE(205), - [aux_sym__text] = STATE(136), - [aux_sym__inline_repeat1] = STATE(115), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(141), - [anon_sym__] = ACTIONS(144), - [anon_sym_LBRACE_STAR] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(150), - [anon_sym_BSLASH] = ACTIONS(153), - [sym_quotation_marks] = ACTIONS(156), - [sym_ellipsis] = ACTIONS(156), - [sym_em_dash] = ACTIONS(156), - [sym_en_dash] = ACTIONS(159), - [sym_backslash_escape] = ACTIONS(159), - [anon_sym_LT] = ACTIONS(162), - [anon_sym_LBRACE_EQ] = ACTIONS(165), - [anon_sym_LBRACE_PLUS] = ACTIONS(168), - [anon_sym_LBRACE_DASH] = ACTIONS(171), - [sym_symbol] = ACTIONS(156), - [anon_sym_LBRACE_CARET] = ACTIONS(174), - [anon_sym_CARET] = ACTIONS(174), - [anon_sym_LBRACE_TILDE] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_LBRACK_CARET] = ACTIONS(183), - [anon_sym_BANG_LBRACK] = ACTIONS(186), - [anon_sym_LBRACK] = ACTIONS(189), - [anon_sym_LBRACE2] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(192), - [anon_sym_TODO] = ACTIONS(195), - [anon_sym_WIP] = ACTIONS(195), - [anon_sym_NOTE] = ACTIONS(198), - [anon_sym_INFO] = ACTIONS(198), - [anon_sym_XXX] = ACTIONS(198), - [sym_fixme] = ACTIONS(156), - [anon_sym_PIPE] = ACTIONS(156), - [sym__whitespace1] = ACTIONS(201), - [sym__newline] = ACTIONS(204), - [aux_sym__text_token1] = ACTIONS(207), - [sym__verbatim_begin] = ACTIONS(210), - [sym_emphasis_end] = ACTIONS(93), - }, - [61] = { - [sym__inline] = STATE(817), - [sym__element] = STATE(91), - [sym_emphasis] = STATE(174), - [sym_emphasis_begin] = STATE(1001), - [sym_strong] = STATE(174), - [sym_strong_begin] = STATE(126), - [sym__hard_line_break] = STATE(174), - [sym_hard_line_break] = STATE(174), - [sym__smart_punctuation] = STATE(174), - [sym_autolink] = STATE(174), - [sym_highlighted] = STATE(174), - [sym_insert] = STATE(174), - [sym_delete] = STATE(174), - [sym_superscript] = STATE(174), - [sym_subscript] = STATE(174), - [sym_footnote_reference] = STATE(174), - [sym__image] = STATE(174), - [sym_full_reference_image] = STATE(174), - [sym_collapsed_reference_image] = STATE(174), - [sym_inline_image] = STATE(174), - [sym__image_description] = STATE(709), - [sym__link] = STATE(174), - [sym_full_reference_link] = STATE(174), - [sym_collapsed_reference_link] = STATE(174), - [sym_inline_link] = STATE(174), - [sym_link_text] = STATE(710), - [sym__comment_with_spaces] = STATE(174), - [sym_span] = STATE(174), - [sym_raw_inline] = STATE(174), - [sym_math] = STATE(174), - [sym_verbatim] = STATE(174), - [sym__todo_highlights] = STATE(174), - [sym_todo] = STATE(174), - [sym_note] = STATE(174), - [sym__symbol_fallback] = STATE(174), - [aux_sym__text] = STATE(148), - [aux_sym__inline_repeat1] = STATE(91), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(213), - [anon_sym__] = ACTIONS(216), - [anon_sym_LBRACE_STAR] = ACTIONS(219), - [anon_sym_STAR] = ACTIONS(222), - [anon_sym_BSLASH] = ACTIONS(225), - [sym_quotation_marks] = ACTIONS(228), - [sym_ellipsis] = ACTIONS(228), - [sym_em_dash] = ACTIONS(228), - [sym_en_dash] = ACTIONS(231), - [sym_backslash_escape] = ACTIONS(231), - [anon_sym_LT] = ACTIONS(234), - [anon_sym_LBRACE_EQ] = ACTIONS(237), - [anon_sym_LBRACE_PLUS] = ACTIONS(240), - [anon_sym_LBRACE_DASH] = ACTIONS(243), - [anon_sym_DASH_RBRACE] = ACTIONS(93), - [sym_symbol] = ACTIONS(228), - [anon_sym_LBRACE_CARET] = ACTIONS(246), - [anon_sym_CARET] = ACTIONS(246), - [anon_sym_LBRACE_TILDE] = ACTIONS(249), - [anon_sym_TILDE] = ACTIONS(249), - [anon_sym_LBRACK_CARET] = ACTIONS(252), - [anon_sym_BANG_LBRACK] = ACTIONS(255), - [anon_sym_LBRACK] = ACTIONS(258), - [anon_sym_LBRACE2] = ACTIONS(231), - [anon_sym_DOLLAR] = ACTIONS(261), - [anon_sym_TODO] = ACTIONS(264), - [anon_sym_WIP] = ACTIONS(264), - [anon_sym_NOTE] = ACTIONS(267), - [anon_sym_INFO] = ACTIONS(267), - [anon_sym_XXX] = ACTIONS(267), - [sym_fixme] = ACTIONS(228), - [anon_sym_PIPE] = ACTIONS(228), - [sym__whitespace1] = ACTIONS(270), - [sym__newline] = ACTIONS(273), - [aux_sym__text_token1] = ACTIONS(276), - [sym__verbatim_begin] = ACTIONS(279), - }, - [62] = { - [sym__inline] = STATE(815), - [sym__element] = STATE(88), - [sym_emphasis] = STATE(209), - [sym_emphasis_begin] = STATE(1002), - [sym_strong] = STATE(209), - [sym_strong_begin] = STATE(121), - [sym__hard_line_break] = STATE(209), - [sym_hard_line_break] = STATE(209), - [sym__smart_punctuation] = STATE(209), - [sym_autolink] = STATE(209), - [sym_highlighted] = STATE(209), - [sym_insert] = STATE(209), - [sym_delete] = STATE(209), - [sym_superscript] = STATE(209), - [sym_subscript] = STATE(209), - [sym_footnote_reference] = STATE(209), - [sym__image] = STATE(209), - [sym_full_reference_image] = STATE(209), - [sym_collapsed_reference_image] = STATE(209), - [sym_inline_image] = STATE(209), - [sym__image_description] = STATE(706), - [sym__link] = STATE(209), - [sym_full_reference_link] = STATE(209), - [sym_collapsed_reference_link] = STATE(209), - [sym_inline_link] = STATE(209), - [sym_link_text] = STATE(707), - [sym__comment_with_spaces] = STATE(209), - [sym_span] = STATE(209), - [sym_raw_inline] = STATE(209), - [sym_math] = STATE(209), - [sym_verbatim] = STATE(209), - [sym__todo_highlights] = STATE(209), - [sym_todo] = STATE(209), - [sym_note] = STATE(209), - [sym__symbol_fallback] = STATE(209), - [aux_sym__text] = STATE(150), - [aux_sym__inline_repeat1] = STATE(88), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(282), - [anon_sym__] = ACTIONS(285), - [anon_sym_LBRACE_STAR] = ACTIONS(288), - [anon_sym_STAR] = ACTIONS(291), - [anon_sym_BSLASH] = ACTIONS(294), - [sym_quotation_marks] = ACTIONS(297), - [sym_ellipsis] = ACTIONS(297), - [sym_em_dash] = ACTIONS(297), - [sym_en_dash] = ACTIONS(300), - [sym_backslash_escape] = ACTIONS(300), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACE_EQ] = ACTIONS(306), - [anon_sym_LBRACE_PLUS] = ACTIONS(309), - [anon_sym_LBRACE_DASH] = ACTIONS(312), - [anon_sym_DASH_RBRACE] = ACTIONS(93), - [sym_symbol] = ACTIONS(297), - [anon_sym_LBRACE_CARET] = ACTIONS(315), - [anon_sym_CARET] = ACTIONS(315), - [anon_sym_LBRACE_TILDE] = ACTIONS(318), - [anon_sym_TILDE] = ACTIONS(318), - [anon_sym_LBRACK_CARET] = ACTIONS(321), - [anon_sym_BANG_LBRACK] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(327), - [anon_sym_LBRACE2] = ACTIONS(300), - [anon_sym_DOLLAR] = ACTIONS(330), - [anon_sym_TODO] = ACTIONS(333), - [anon_sym_WIP] = ACTIONS(333), - [anon_sym_NOTE] = ACTIONS(336), - [anon_sym_INFO] = ACTIONS(336), - [anon_sym_XXX] = ACTIONS(336), - [sym_fixme] = ACTIONS(297), - [anon_sym_PIPE] = ACTIONS(297), - [sym__whitespace1] = ACTIONS(339), - [sym__newline] = ACTIONS(342), - [aux_sym__text_token1] = ACTIONS(345), - [sym__verbatim_begin] = ACTIONS(348), - }, - [63] = { - [sym__inline] = STATE(821), - [sym__element] = STATE(88), - [sym_emphasis] = STATE(209), - [sym_emphasis_begin] = STATE(1002), - [sym_strong] = STATE(209), - [sym_strong_begin] = STATE(121), - [sym__hard_line_break] = STATE(209), - [sym_hard_line_break] = STATE(209), - [sym__smart_punctuation] = STATE(209), - [sym_autolink] = STATE(209), - [sym_highlighted] = STATE(209), - [sym_insert] = STATE(209), - [sym_delete] = STATE(209), - [sym_superscript] = STATE(209), - [sym_subscript] = STATE(209), - [sym_footnote_reference] = STATE(209), - [sym__image] = STATE(209), - [sym_full_reference_image] = STATE(209), - [sym_collapsed_reference_image] = STATE(209), - [sym_inline_image] = STATE(209), - [sym__image_description] = STATE(706), - [sym__link] = STATE(209), - [sym_full_reference_link] = STATE(209), - [sym_collapsed_reference_link] = STATE(209), - [sym_inline_link] = STATE(209), - [sym_link_text] = STATE(707), - [sym__comment_with_spaces] = STATE(209), - [sym_span] = STATE(209), - [sym_raw_inline] = STATE(209), - [sym_math] = STATE(209), - [sym_verbatim] = STATE(209), - [sym__todo_highlights] = STATE(209), - [sym_todo] = STATE(209), - [sym_note] = STATE(209), - [sym__symbol_fallback] = STATE(209), - [aux_sym__text] = STATE(150), - [aux_sym__inline_repeat1] = STATE(88), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(282), - [anon_sym__] = ACTIONS(285), - [anon_sym_LBRACE_STAR] = ACTIONS(288), - [anon_sym_STAR] = ACTIONS(528), - [aux_sym_strong_end_token1] = ACTIONS(93), - [anon_sym_BSLASH] = ACTIONS(294), - [sym_quotation_marks] = ACTIONS(297), - [sym_ellipsis] = ACTIONS(297), - [sym_em_dash] = ACTIONS(297), - [sym_en_dash] = ACTIONS(300), - [sym_backslash_escape] = ACTIONS(300), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACE_EQ] = ACTIONS(306), - [anon_sym_LBRACE_PLUS] = ACTIONS(309), - [anon_sym_LBRACE_DASH] = ACTIONS(312), - [sym_symbol] = ACTIONS(297), - [anon_sym_LBRACE_CARET] = ACTIONS(315), - [anon_sym_CARET] = ACTIONS(315), - [anon_sym_LBRACE_TILDE] = ACTIONS(318), - [anon_sym_TILDE] = ACTIONS(318), - [anon_sym_LBRACK_CARET] = ACTIONS(321), - [anon_sym_BANG_LBRACK] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(327), - [anon_sym_LBRACE2] = ACTIONS(300), - [anon_sym_DOLLAR] = ACTIONS(330), - [anon_sym_TODO] = ACTIONS(333), - [anon_sym_WIP] = ACTIONS(333), - [anon_sym_NOTE] = ACTIONS(336), - [anon_sym_INFO] = ACTIONS(336), - [anon_sym_XXX] = ACTIONS(336), - [sym_fixme] = ACTIONS(297), - [anon_sym_PIPE] = ACTIONS(297), - [sym__whitespace1] = ACTIONS(531), - [sym__newline] = ACTIONS(342), - [aux_sym__text_token1] = ACTIONS(345), - [sym__verbatim_begin] = ACTIONS(348), - }, - [64] = { - [sym__inline] = STATE(790), - [sym__element] = STATE(114), - [sym_emphasis] = STATE(181), - [sym_emphasis_begin] = STATE(1004), - [sym_strong] = STATE(181), - [sym_strong_begin] = STATE(110), - [sym__hard_line_break] = STATE(181), - [sym_hard_line_break] = STATE(181), - [sym__smart_punctuation] = STATE(181), - [sym_autolink] = STATE(181), - [sym_highlighted] = STATE(181), - [sym_insert] = STATE(181), - [sym_delete] = STATE(181), - [sym_superscript] = STATE(181), - [sym_subscript] = STATE(181), - [sym_footnote_reference] = STATE(181), - [sym__image] = STATE(181), - [sym_full_reference_image] = STATE(181), - [sym_collapsed_reference_image] = STATE(181), - [sym_inline_image] = STATE(181), - [sym__image_description] = STATE(688), - [sym__link] = STATE(181), - [sym_full_reference_link] = STATE(181), - [sym_collapsed_reference_link] = STATE(181), - [sym_inline_link] = STATE(181), - [sym_link_text] = STATE(693), - [sym__comment_with_spaces] = STATE(181), - [sym_span] = STATE(181), - [sym_raw_inline] = STATE(181), - [sym_math] = STATE(181), - [sym_verbatim] = STATE(181), - [sym__todo_highlights] = STATE(181), - [sym_todo] = STATE(181), - [sym_note] = STATE(181), - [sym__symbol_fallback] = STATE(181), - [aux_sym__text] = STATE(153), - [aux_sym__inline_repeat1] = STATE(114), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(420), - [anon_sym__] = ACTIONS(423), - [anon_sym_LBRACE_STAR] = ACTIONS(426), - [anon_sym_STAR] = ACTIONS(534), - [aux_sym_strong_end_token1] = ACTIONS(93), - [anon_sym_BSLASH] = ACTIONS(432), - [sym_quotation_marks] = ACTIONS(435), - [sym_ellipsis] = ACTIONS(435), - [sym_em_dash] = ACTIONS(435), - [sym_en_dash] = ACTIONS(438), - [sym_backslash_escape] = ACTIONS(438), - [anon_sym_LT] = ACTIONS(441), - [anon_sym_LBRACE_EQ] = ACTIONS(444), - [anon_sym_LBRACE_PLUS] = ACTIONS(447), - [anon_sym_LBRACE_DASH] = ACTIONS(450), - [sym_symbol] = ACTIONS(435), - [anon_sym_LBRACE_CARET] = ACTIONS(453), - [anon_sym_CARET] = ACTIONS(453), - [anon_sym_LBRACE_TILDE] = ACTIONS(456), - [anon_sym_TILDE] = ACTIONS(456), - [anon_sym_LBRACK_CARET] = ACTIONS(459), - [anon_sym_BANG_LBRACK] = ACTIONS(462), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_LBRACE2] = ACTIONS(438), - [anon_sym_DOLLAR] = ACTIONS(468), - [anon_sym_TODO] = ACTIONS(471), - [anon_sym_WIP] = ACTIONS(471), - [anon_sym_NOTE] = ACTIONS(474), - [anon_sym_INFO] = ACTIONS(474), - [anon_sym_XXX] = ACTIONS(474), - [sym_fixme] = ACTIONS(435), - [anon_sym_PIPE] = ACTIONS(435), - [sym__whitespace1] = ACTIONS(537), - [sym__newline] = ACTIONS(480), - [aux_sym__text_token1] = ACTIONS(483), - [sym__verbatim_begin] = ACTIONS(486), - }, - [65] = { - [sym__inline] = STATE(975), - [sym__element] = STATE(118), - [sym_emphasis] = STATE(201), - [sym_emphasis_begin] = STATE(1005), - [sym_strong] = STATE(201), - [sym_strong_begin] = STATE(105), - [sym__hard_line_break] = STATE(201), - [sym_hard_line_break] = STATE(201), - [sym__smart_punctuation] = STATE(201), - [sym_autolink] = STATE(201), - [sym_highlighted] = STATE(201), - [sym_insert] = STATE(201), - [sym_delete] = STATE(201), - [sym_superscript] = STATE(201), - [sym_subscript] = STATE(201), - [sym_footnote_reference] = STATE(201), - [sym__image] = STATE(201), - [sym_full_reference_image] = STATE(201), - [sym_collapsed_reference_image] = STATE(201), - [sym_inline_image] = STATE(201), - [sym__image_description] = STATE(712), - [sym__link] = STATE(201), - [sym_full_reference_link] = STATE(201), - [sym_collapsed_reference_link] = STATE(201), - [sym_inline_link] = STATE(201), - [sym_link_text] = STATE(717), - [sym__comment_with_spaces] = STATE(201), - [sym_span] = STATE(201), - [sym_raw_inline] = STATE(201), - [sym_math] = STATE(201), - [sym_verbatim] = STATE(201), - [sym__todo_highlights] = STATE(201), - [sym_todo] = STATE(201), - [sym_note] = STATE(201), - [sym__symbol_fallback] = STATE(201), - [aux_sym__text] = STATE(139), - [aux_sym__inline_repeat1] = STATE(118), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(51), - [anon_sym__] = ACTIONS(54), - [anon_sym_LBRACE_STAR] = ACTIONS(57), - [anon_sym_STAR] = ACTIONS(60), - [anon_sym_BSLASH] = ACTIONS(63), - [sym_quotation_marks] = ACTIONS(66), - [sym_ellipsis] = ACTIONS(66), - [sym_em_dash] = ACTIONS(66), - [sym_en_dash] = ACTIONS(69), - [sym_backslash_escape] = ACTIONS(69), - [anon_sym_LT] = ACTIONS(72), - [anon_sym_LBRACE_EQ] = ACTIONS(75), - [anon_sym_LBRACE_PLUS] = ACTIONS(78), - [anon_sym_LBRACE_DASH] = ACTIONS(81), - [sym_symbol] = ACTIONS(66), - [anon_sym_LBRACE_CARET] = ACTIONS(84), - [anon_sym_CARET] = ACTIONS(84), - [anon_sym_LBRACE_TILDE] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(87), - [anon_sym_LBRACK_CARET] = ACTIONS(95), - [anon_sym_BANG_LBRACK] = ACTIONS(100), - [anon_sym_LBRACK] = ACTIONS(103), - [anon_sym_LBRACE2] = ACTIONS(69), - [anon_sym_DOLLAR] = ACTIONS(106), - [anon_sym_TODO] = ACTIONS(109), - [anon_sym_WIP] = ACTIONS(109), - [anon_sym_NOTE] = ACTIONS(112), - [anon_sym_INFO] = ACTIONS(112), - [anon_sym_XXX] = ACTIONS(112), - [sym_fixme] = ACTIONS(66), - [anon_sym_PIPE] = ACTIONS(66), - [sym__whitespace1] = ACTIONS(115), - [sym__newline] = ACTIONS(118), - [aux_sym__text_token1] = ACTIONS(121), - [sym__verbatim_begin] = ACTIONS(124), - [sym_emphasis_end] = ACTIONS(93), - }, - [66] = { - [sym__inline] = STATE(777), - [sym__element] = STATE(102), - [sym_emphasis] = STATE(194), - [sym_emphasis_begin] = STATE(1003), - [sym_strong] = STATE(194), - [sym_strong_begin] = STATE(113), - [sym__hard_line_break] = STATE(194), - [sym_hard_line_break] = STATE(194), - [sym__smart_punctuation] = STATE(194), - [sym_autolink] = STATE(194), - [sym_highlighted] = STATE(194), - [sym_insert] = STATE(194), - [sym_delete] = STATE(194), - [sym_superscript] = STATE(194), - [sym_subscript] = STATE(194), - [sym_footnote_reference] = STATE(194), - [sym__image] = STATE(194), - [sym_full_reference_image] = STATE(194), - [sym_collapsed_reference_image] = STATE(194), - [sym_inline_image] = STATE(194), - [sym__image_description] = STATE(696), - [sym__link] = STATE(194), - [sym_full_reference_link] = STATE(194), - [sym_collapsed_reference_link] = STATE(194), - [sym_inline_link] = STATE(194), - [sym_link_text] = STATE(695), - [sym__comment_with_spaces] = STATE(194), - [sym_span] = STATE(194), - [sym_raw_inline] = STATE(194), - [sym_math] = STATE(194), - [sym_verbatim] = STATE(194), - [sym__todo_highlights] = STATE(194), - [sym_todo] = STATE(194), - [sym_note] = STATE(194), - [sym__symbol_fallback] = STATE(194), - [aux_sym__text] = STATE(170), - [aux_sym__inline_repeat1] = STATE(102), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(351), - [anon_sym__] = ACTIONS(354), - [anon_sym_LBRACE_STAR] = ACTIONS(357), - [anon_sym_STAR] = ACTIONS(360), - [anon_sym_BSLASH] = ACTIONS(363), - [sym_quotation_marks] = ACTIONS(366), - [sym_ellipsis] = ACTIONS(366), - [sym_em_dash] = ACTIONS(366), - [sym_en_dash] = ACTIONS(369), - [sym_backslash_escape] = ACTIONS(369), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_LBRACE_EQ] = ACTIONS(375), - [anon_sym_LBRACE_PLUS] = ACTIONS(378), - [anon_sym_LBRACE_DASH] = ACTIONS(381), - [anon_sym_DASH_RBRACE] = ACTIONS(93), - [sym_symbol] = ACTIONS(366), - [anon_sym_LBRACE_CARET] = ACTIONS(384), - [anon_sym_CARET] = ACTIONS(384), - [anon_sym_LBRACE_TILDE] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_LBRACK_CARET] = ACTIONS(390), - [anon_sym_BANG_LBRACK] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(396), - [anon_sym_LBRACE2] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(399), - [anon_sym_TODO] = ACTIONS(402), - [anon_sym_WIP] = ACTIONS(402), - [anon_sym_NOTE] = ACTIONS(405), - [anon_sym_INFO] = ACTIONS(405), - [anon_sym_XXX] = ACTIONS(405), - [sym_fixme] = ACTIONS(366), - [anon_sym_PIPE] = ACTIONS(366), - [sym__whitespace1] = ACTIONS(408), - [sym__newline] = ACTIONS(411), - [aux_sym__text_token1] = ACTIONS(414), - [sym__verbatim_begin] = ACTIONS(417), - }, - [67] = { - [sym__inline] = STATE(984), - [sym__element] = STATE(118), - [sym_emphasis] = STATE(201), - [sym_emphasis_begin] = STATE(1005), - [sym_strong] = STATE(201), - [sym_strong_begin] = STATE(105), - [sym__hard_line_break] = STATE(201), - [sym_hard_line_break] = STATE(201), - [sym__smart_punctuation] = STATE(201), - [sym_autolink] = STATE(201), - [sym_highlighted] = STATE(201), - [sym_insert] = STATE(201), - [sym_delete] = STATE(201), - [sym_superscript] = STATE(201), - [sym_subscript] = STATE(201), - [sym_footnote_reference] = STATE(201), - [sym__image] = STATE(201), - [sym_full_reference_image] = STATE(201), - [sym_collapsed_reference_image] = STATE(201), - [sym_inline_image] = STATE(201), - [sym__image_description] = STATE(712), - [sym__link] = STATE(201), - [sym_full_reference_link] = STATE(201), - [sym_collapsed_reference_link] = STATE(201), - [sym_inline_link] = STATE(201), - [sym_link_text] = STATE(717), - [sym__comment_with_spaces] = STATE(201), - [sym_span] = STATE(201), - [sym_raw_inline] = STATE(201), - [sym_math] = STATE(201), - [sym_verbatim] = STATE(201), - [sym__todo_highlights] = STATE(201), - [sym_todo] = STATE(201), - [sym_note] = STATE(201), - [sym__symbol_fallback] = STATE(201), - [aux_sym__text] = STATE(139), - [aux_sym__inline_repeat1] = STATE(118), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(51), - [anon_sym__] = ACTIONS(54), - [anon_sym_LBRACE_STAR] = ACTIONS(57), - [anon_sym_STAR] = ACTIONS(60), - [anon_sym_BSLASH] = ACTIONS(63), - [sym_quotation_marks] = ACTIONS(66), - [sym_ellipsis] = ACTIONS(66), - [sym_em_dash] = ACTIONS(66), - [sym_en_dash] = ACTIONS(69), - [sym_backslash_escape] = ACTIONS(69), - [anon_sym_LT] = ACTIONS(72), - [anon_sym_LBRACE_EQ] = ACTIONS(75), - [anon_sym_LBRACE_PLUS] = ACTIONS(78), - [anon_sym_LBRACE_DASH] = ACTIONS(81), - [sym_symbol] = ACTIONS(66), - [anon_sym_LBRACE_CARET] = ACTIONS(84), - [anon_sym_CARET] = ACTIONS(84), - [anon_sym_LBRACE_TILDE] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(87), - [anon_sym_LBRACK_CARET] = ACTIONS(95), - [anon_sym_BANG_LBRACK] = ACTIONS(100), - [anon_sym_LBRACK] = ACTIONS(103), - [anon_sym_RBRACK2] = ACTIONS(93), - [anon_sym_LBRACE2] = ACTIONS(69), - [anon_sym_DOLLAR] = ACTIONS(106), - [anon_sym_TODO] = ACTIONS(109), - [anon_sym_WIP] = ACTIONS(109), - [anon_sym_NOTE] = ACTIONS(112), - [anon_sym_INFO] = ACTIONS(112), - [anon_sym_XXX] = ACTIONS(112), - [sym_fixme] = ACTIONS(66), - [anon_sym_PIPE] = ACTIONS(66), - [sym__whitespace1] = ACTIONS(115), - [sym__newline] = ACTIONS(118), - [aux_sym__text_token1] = ACTIONS(121), - [sym__verbatim_begin] = ACTIONS(124), - }, - [68] = { - [sym__inline] = STATE(789), - [sym__element] = STATE(114), - [sym_emphasis] = STATE(181), - [sym_emphasis_begin] = STATE(1004), - [sym_strong] = STATE(181), - [sym_strong_begin] = STATE(110), - [sym__hard_line_break] = STATE(181), - [sym_hard_line_break] = STATE(181), - [sym__smart_punctuation] = STATE(181), - [sym_autolink] = STATE(181), - [sym_highlighted] = STATE(181), - [sym_insert] = STATE(181), - [sym_delete] = STATE(181), - [sym_superscript] = STATE(181), - [sym_subscript] = STATE(181), - [sym_footnote_reference] = STATE(181), - [sym__image] = STATE(181), - [sym_full_reference_image] = STATE(181), - [sym_collapsed_reference_image] = STATE(181), - [sym_inline_image] = STATE(181), - [sym__image_description] = STATE(688), - [sym__link] = STATE(181), - [sym_full_reference_link] = STATE(181), - [sym_collapsed_reference_link] = STATE(181), - [sym_inline_link] = STATE(181), - [sym_link_text] = STATE(693), - [sym__comment_with_spaces] = STATE(181), - [sym_span] = STATE(181), - [sym_raw_inline] = STATE(181), - [sym_math] = STATE(181), - [sym_verbatim] = STATE(181), - [sym__todo_highlights] = STATE(181), - [sym_todo] = STATE(181), - [sym_note] = STATE(181), - [sym__symbol_fallback] = STATE(181), - [aux_sym__text] = STATE(153), - [aux_sym__inline_repeat1] = STATE(114), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(420), - [anon_sym__] = ACTIONS(423), - [anon_sym_LBRACE_STAR] = ACTIONS(426), - [anon_sym_STAR] = ACTIONS(429), - [anon_sym_BSLASH] = ACTIONS(432), - [sym_quotation_marks] = ACTIONS(435), - [sym_ellipsis] = ACTIONS(435), - [sym_em_dash] = ACTIONS(435), - [sym_en_dash] = ACTIONS(438), - [sym_backslash_escape] = ACTIONS(438), - [anon_sym_LT] = ACTIONS(441), - [anon_sym_LBRACE_EQ] = ACTIONS(444), - [anon_sym_LBRACE_PLUS] = ACTIONS(447), - [anon_sym_LBRACE_DASH] = ACTIONS(450), - [anon_sym_DASH_RBRACE] = ACTIONS(93), - [sym_symbol] = ACTIONS(435), - [anon_sym_LBRACE_CARET] = ACTIONS(453), - [anon_sym_CARET] = ACTIONS(453), - [anon_sym_LBRACE_TILDE] = ACTIONS(456), - [anon_sym_TILDE] = ACTIONS(456), - [anon_sym_LBRACK_CARET] = ACTIONS(459), - [anon_sym_BANG_LBRACK] = ACTIONS(462), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_LBRACE2] = ACTIONS(438), - [anon_sym_DOLLAR] = ACTIONS(468), - [anon_sym_TODO] = ACTIONS(471), - [anon_sym_WIP] = ACTIONS(471), - [anon_sym_NOTE] = ACTIONS(474), - [anon_sym_INFO] = ACTIONS(474), - [anon_sym_XXX] = ACTIONS(474), - [sym_fixme] = ACTIONS(435), - [anon_sym_PIPE] = ACTIONS(435), - [sym__whitespace1] = ACTIONS(477), - [sym__newline] = ACTIONS(480), - [aux_sym__text_token1] = ACTIONS(483), - [sym__verbatim_begin] = ACTIONS(486), - }, - [69] = { - [sym__inline] = STATE(788), - [sym__element] = STATE(102), - [sym_emphasis] = STATE(194), - [sym_emphasis_begin] = STATE(1003), - [sym_strong] = STATE(194), - [sym_strong_begin] = STATE(113), - [sym__hard_line_break] = STATE(194), - [sym_hard_line_break] = STATE(194), - [sym__smart_punctuation] = STATE(194), - [sym_autolink] = STATE(194), - [sym_highlighted] = STATE(194), - [sym_insert] = STATE(194), - [sym_delete] = STATE(194), - [sym_superscript] = STATE(194), - [sym_subscript] = STATE(194), - [sym_footnote_reference] = STATE(194), - [sym__image] = STATE(194), - [sym_full_reference_image] = STATE(194), - [sym_collapsed_reference_image] = STATE(194), - [sym_inline_image] = STATE(194), - [sym__image_description] = STATE(696), - [sym__link] = STATE(194), - [sym_full_reference_link] = STATE(194), - [sym_collapsed_reference_link] = STATE(194), - [sym_inline_link] = STATE(194), - [sym_link_text] = STATE(695), - [sym__comment_with_spaces] = STATE(194), - [sym_span] = STATE(194), - [sym_raw_inline] = STATE(194), - [sym_math] = STATE(194), - [sym_verbatim] = STATE(194), - [sym__todo_highlights] = STATE(194), - [sym_todo] = STATE(194), - [sym_note] = STATE(194), - [sym__symbol_fallback] = STATE(194), - [aux_sym__text] = STATE(170), - [aux_sym__inline_repeat1] = STATE(102), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(351), - [anon_sym__] = ACTIONS(354), - [anon_sym_LBRACE_STAR] = ACTIONS(357), - [anon_sym_STAR] = ACTIONS(540), - [aux_sym_strong_end_token1] = ACTIONS(93), - [anon_sym_BSLASH] = ACTIONS(363), - [sym_quotation_marks] = ACTIONS(366), - [sym_ellipsis] = ACTIONS(366), - [sym_em_dash] = ACTIONS(366), - [sym_en_dash] = ACTIONS(369), - [sym_backslash_escape] = ACTIONS(369), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_LBRACE_EQ] = ACTIONS(375), - [anon_sym_LBRACE_PLUS] = ACTIONS(378), - [anon_sym_LBRACE_DASH] = ACTIONS(381), - [sym_symbol] = ACTIONS(366), - [anon_sym_LBRACE_CARET] = ACTIONS(384), - [anon_sym_CARET] = ACTIONS(384), - [anon_sym_LBRACE_TILDE] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_LBRACK_CARET] = ACTIONS(390), - [anon_sym_BANG_LBRACK] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(396), - [anon_sym_LBRACE2] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(399), - [anon_sym_TODO] = ACTIONS(402), - [anon_sym_WIP] = ACTIONS(402), - [anon_sym_NOTE] = ACTIONS(405), - [anon_sym_INFO] = ACTIONS(405), - [anon_sym_XXX] = ACTIONS(405), - [sym_fixme] = ACTIONS(366), - [anon_sym_PIPE] = ACTIONS(366), - [sym__whitespace1] = ACTIONS(543), - [sym__newline] = ACTIONS(411), - [aux_sym__text_token1] = ACTIONS(414), - [sym__verbatim_begin] = ACTIONS(417), - }, - [70] = { - [sym__inline] = STATE(779), - [sym__element] = STATE(114), - [sym_emphasis] = STATE(181), - [sym_emphasis_begin] = STATE(1004), - [sym_strong] = STATE(181), - [sym_strong_begin] = STATE(110), - [sym__hard_line_break] = STATE(181), - [sym_hard_line_break] = STATE(181), - [sym__smart_punctuation] = STATE(181), - [sym_autolink] = STATE(181), - [sym_highlighted] = STATE(181), - [sym_insert] = STATE(181), - [sym_delete] = STATE(181), - [sym_superscript] = STATE(181), - [sym_subscript] = STATE(181), - [sym_footnote_reference] = STATE(181), - [sym__image] = STATE(181), - [sym_full_reference_image] = STATE(181), - [sym_collapsed_reference_image] = STATE(181), - [sym_inline_image] = STATE(181), - [sym__image_description] = STATE(688), - [sym__link] = STATE(181), - [sym_full_reference_link] = STATE(181), - [sym_collapsed_reference_link] = STATE(181), - [sym_inline_link] = STATE(181), - [sym_link_text] = STATE(693), - [sym__comment_with_spaces] = STATE(181), - [sym_span] = STATE(181), - [sym_raw_inline] = STATE(181), - [sym_math] = STATE(181), - [sym_verbatim] = STATE(181), - [sym__todo_highlights] = STATE(181), - [sym_todo] = STATE(181), - [sym_note] = STATE(181), - [sym__symbol_fallback] = STATE(181), - [aux_sym__text] = STATE(153), - [aux_sym__inline_repeat1] = STATE(114), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(420), - [anon_sym__] = ACTIONS(423), - [anon_sym_LBRACE_STAR] = ACTIONS(426), - [anon_sym_STAR] = ACTIONS(429), - [anon_sym_BSLASH] = ACTIONS(432), - [sym_quotation_marks] = ACTIONS(435), - [sym_ellipsis] = ACTIONS(435), - [sym_em_dash] = ACTIONS(435), - [sym_en_dash] = ACTIONS(438), - [sym_backslash_escape] = ACTIONS(438), - [anon_sym_LT] = ACTIONS(441), - [anon_sym_LBRACE_EQ] = ACTIONS(444), - [anon_sym_LBRACE_PLUS] = ACTIONS(447), - [anon_sym_LBRACE_DASH] = ACTIONS(450), - [sym_symbol] = ACTIONS(435), - [anon_sym_LBRACE_CARET] = ACTIONS(453), - [anon_sym_CARET] = ACTIONS(453), - [anon_sym_LBRACE_TILDE] = ACTIONS(456), - [anon_sym_TILDE] = ACTIONS(456), - [anon_sym_LBRACK_CARET] = ACTIONS(459), - [anon_sym_BANG_LBRACK] = ACTIONS(462), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_RBRACK2] = ACTIONS(93), - [anon_sym_LBRACE2] = ACTIONS(438), - [anon_sym_DOLLAR] = ACTIONS(468), - [anon_sym_TODO] = ACTIONS(471), - [anon_sym_WIP] = ACTIONS(471), - [anon_sym_NOTE] = ACTIONS(474), - [anon_sym_INFO] = ACTIONS(474), - [anon_sym_XXX] = ACTIONS(474), - [sym_fixme] = ACTIONS(435), - [anon_sym_PIPE] = ACTIONS(435), - [sym__whitespace1] = ACTIONS(477), - [sym__newline] = ACTIONS(480), - [aux_sym__text_token1] = ACTIONS(483), - [sym__verbatim_begin] = ACTIONS(486), - }, - [71] = { - [sym__inline] = STATE(737), - [sym__element] = STATE(102), - [sym_emphasis] = STATE(194), - [sym_emphasis_begin] = STATE(1003), - [sym_strong] = STATE(194), - [sym_strong_begin] = STATE(113), - [sym__hard_line_break] = STATE(194), - [sym_hard_line_break] = STATE(194), - [sym__smart_punctuation] = STATE(194), - [sym_autolink] = STATE(194), - [sym_highlighted] = STATE(194), - [sym_insert] = STATE(194), - [sym_delete] = STATE(194), - [sym_superscript] = STATE(194), - [sym_subscript] = STATE(194), - [sym_footnote_reference] = STATE(194), - [sym__image] = STATE(194), - [sym_full_reference_image] = STATE(194), - [sym_collapsed_reference_image] = STATE(194), - [sym_inline_image] = STATE(194), - [sym__image_description] = STATE(696), - [sym__link] = STATE(194), - [sym_full_reference_link] = STATE(194), - [sym_collapsed_reference_link] = STATE(194), - [sym_inline_link] = STATE(194), - [sym_link_text] = STATE(695), - [sym__comment_with_spaces] = STATE(194), - [sym_span] = STATE(194), - [sym_raw_inline] = STATE(194), - [sym_math] = STATE(194), - [sym_verbatim] = STATE(194), - [sym__todo_highlights] = STATE(194), - [sym_todo] = STATE(194), - [sym_note] = STATE(194), - [sym__symbol_fallback] = STATE(194), - [aux_sym__text] = STATE(170), - [aux_sym__inline_repeat1] = STATE(102), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(351), - [anon_sym__] = ACTIONS(354), - [anon_sym_LBRACE_STAR] = ACTIONS(357), - [anon_sym_STAR] = ACTIONS(360), - [anon_sym_BSLASH] = ACTIONS(363), - [sym_quotation_marks] = ACTIONS(366), - [sym_ellipsis] = ACTIONS(366), - [sym_em_dash] = ACTIONS(366), - [sym_en_dash] = ACTIONS(369), - [sym_backslash_escape] = ACTIONS(369), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_LBRACE_EQ] = ACTIONS(375), - [anon_sym_LBRACE_PLUS] = ACTIONS(378), - [anon_sym_LBRACE_DASH] = ACTIONS(381), - [sym_symbol] = ACTIONS(366), - [anon_sym_LBRACE_CARET] = ACTIONS(384), - [anon_sym_CARET] = ACTIONS(384), - [anon_sym_LBRACE_TILDE] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_LBRACK_CARET] = ACTIONS(390), - [anon_sym_BANG_LBRACK] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(396), - [anon_sym_RBRACK2] = ACTIONS(93), - [anon_sym_LBRACE2] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(399), - [anon_sym_TODO] = ACTIONS(402), - [anon_sym_WIP] = ACTIONS(402), - [anon_sym_NOTE] = ACTIONS(405), - [anon_sym_INFO] = ACTIONS(405), - [anon_sym_XXX] = ACTIONS(405), - [sym_fixme] = ACTIONS(366), - [anon_sym_PIPE] = ACTIONS(366), - [sym__whitespace1] = ACTIONS(408), - [sym__newline] = ACTIONS(411), - [aux_sym__text_token1] = ACTIONS(414), - [sym__verbatim_begin] = ACTIONS(417), - }, - [72] = { - [sym__inline] = STATE(857), - [sym__element] = STATE(88), - [sym_emphasis] = STATE(209), - [sym_emphasis_begin] = STATE(1002), - [sym_strong] = STATE(209), - [sym_strong_begin] = STATE(121), - [sym__hard_line_break] = STATE(209), - [sym_hard_line_break] = STATE(209), - [sym__smart_punctuation] = STATE(209), - [sym_autolink] = STATE(209), - [sym_highlighted] = STATE(209), - [sym_insert] = STATE(209), - [sym_delete] = STATE(209), - [sym_superscript] = STATE(209), - [sym_subscript] = STATE(209), - [sym_footnote_reference] = STATE(209), - [sym__image] = STATE(209), - [sym_full_reference_image] = STATE(209), - [sym_collapsed_reference_image] = STATE(209), - [sym_inline_image] = STATE(209), - [sym__image_description] = STATE(706), - [sym__link] = STATE(209), - [sym_full_reference_link] = STATE(209), - [sym_collapsed_reference_link] = STATE(209), - [sym_inline_link] = STATE(209), - [sym_link_text] = STATE(707), - [sym__comment_with_spaces] = STATE(209), - [sym_span] = STATE(209), - [sym_raw_inline] = STATE(209), - [sym_math] = STATE(209), - [sym_verbatim] = STATE(209), - [sym__todo_highlights] = STATE(209), - [sym_todo] = STATE(209), - [sym_note] = STATE(209), - [sym__symbol_fallback] = STATE(209), - [aux_sym__text] = STATE(150), - [aux_sym__inline_repeat1] = STATE(88), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(282), - [anon_sym__] = ACTIONS(285), - [anon_sym_LBRACE_STAR] = ACTIONS(288), - [anon_sym_STAR] = ACTIONS(291), - [anon_sym_BSLASH] = ACTIONS(294), - [sym_quotation_marks] = ACTIONS(297), - [sym_ellipsis] = ACTIONS(297), - [sym_em_dash] = ACTIONS(297), - [sym_en_dash] = ACTIONS(300), - [sym_backslash_escape] = ACTIONS(300), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACE_EQ] = ACTIONS(306), - [anon_sym_LBRACE_PLUS] = ACTIONS(309), - [anon_sym_LBRACE_DASH] = ACTIONS(312), - [sym_symbol] = ACTIONS(297), - [anon_sym_LBRACE_CARET] = ACTIONS(315), - [anon_sym_CARET] = ACTIONS(315), - [anon_sym_LBRACE_TILDE] = ACTIONS(318), - [anon_sym_TILDE] = ACTIONS(318), - [anon_sym_LBRACK_CARET] = ACTIONS(321), - [anon_sym_BANG_LBRACK] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(327), - [anon_sym_RBRACK2] = ACTIONS(93), - [anon_sym_LBRACE2] = ACTIONS(300), - [anon_sym_DOLLAR] = ACTIONS(330), - [anon_sym_TODO] = ACTIONS(333), - [anon_sym_WIP] = ACTIONS(333), - [anon_sym_NOTE] = ACTIONS(336), - [anon_sym_INFO] = ACTIONS(336), - [anon_sym_XXX] = ACTIONS(336), - [sym_fixme] = ACTIONS(297), - [anon_sym_PIPE] = ACTIONS(297), - [sym__whitespace1] = ACTIONS(339), - [sym__newline] = ACTIONS(342), - [aux_sym__text_token1] = ACTIONS(345), - [sym__verbatim_begin] = ACTIONS(348), - }, - [73] = { - [sym__inline] = STATE(769), - [sym__element] = STATE(102), - [sym_emphasis] = STATE(194), - [sym_emphasis_begin] = STATE(1003), - [sym_strong] = STATE(194), - [sym_strong_begin] = STATE(113), - [sym__hard_line_break] = STATE(194), - [sym_hard_line_break] = STATE(194), - [sym__smart_punctuation] = STATE(194), - [sym_autolink] = STATE(194), - [sym_highlighted] = STATE(194), - [sym_insert] = STATE(194), - [sym_delete] = STATE(194), - [sym_superscript] = STATE(194), - [sym_subscript] = STATE(194), - [sym_footnote_reference] = STATE(194), - [sym__image] = STATE(194), - [sym_full_reference_image] = STATE(194), - [sym_collapsed_reference_image] = STATE(194), - [sym_inline_image] = STATE(194), - [sym__image_description] = STATE(696), - [sym__link] = STATE(194), - [sym_full_reference_link] = STATE(194), - [sym_collapsed_reference_link] = STATE(194), - [sym_inline_link] = STATE(194), - [sym_link_text] = STATE(695), - [sym__comment_with_spaces] = STATE(194), - [sym_span] = STATE(194), - [sym_raw_inline] = STATE(194), - [sym_math] = STATE(194), - [sym_verbatim] = STATE(194), - [sym__todo_highlights] = STATE(194), - [sym_todo] = STATE(194), - [sym_note] = STATE(194), - [sym__symbol_fallback] = STATE(194), - [aux_sym__text] = STATE(170), - [aux_sym__inline_repeat1] = STATE(102), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(351), - [anon_sym__] = ACTIONS(354), - [anon_sym_LBRACE_STAR] = ACTIONS(357), - [anon_sym_STAR] = ACTIONS(360), - [anon_sym_BSLASH] = ACTIONS(363), - [sym_quotation_marks] = ACTIONS(366), - [sym_ellipsis] = ACTIONS(366), - [sym_em_dash] = ACTIONS(366), - [sym_en_dash] = ACTIONS(369), - [sym_backslash_escape] = ACTIONS(369), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_LBRACE_EQ] = ACTIONS(375), - [anon_sym_LBRACE_PLUS] = ACTIONS(378), - [anon_sym_LBRACE_DASH] = ACTIONS(381), - [sym_symbol] = ACTIONS(366), - [anon_sym_LBRACE_CARET] = ACTIONS(384), - [anon_sym_CARET] = ACTIONS(384), - [anon_sym_LBRACE_TILDE] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_LBRACK_CARET] = ACTIONS(390), - [anon_sym_BANG_LBRACK] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(396), - [anon_sym_LBRACE2] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(399), - [anon_sym_TODO] = ACTIONS(402), - [anon_sym_WIP] = ACTIONS(402), - [anon_sym_NOTE] = ACTIONS(405), - [anon_sym_INFO] = ACTIONS(405), - [anon_sym_XXX] = ACTIONS(405), - [sym_fixme] = ACTIONS(366), - [anon_sym_PIPE] = ACTIONS(366), - [sym__whitespace1] = ACTIONS(408), - [sym__newline] = ACTIONS(411), - [aux_sym__text_token1] = ACTIONS(414), - [sym__verbatim_begin] = ACTIONS(417), - }, - [74] = { - [sym__inline] = STATE(768), - [sym__element] = STATE(114), - [sym_emphasis] = STATE(181), - [sym_emphasis_begin] = STATE(1004), - [sym_strong] = STATE(181), - [sym_strong_begin] = STATE(110), - [sym__hard_line_break] = STATE(181), - [sym_hard_line_break] = STATE(181), - [sym__smart_punctuation] = STATE(181), - [sym_autolink] = STATE(181), - [sym_highlighted] = STATE(181), - [sym_insert] = STATE(181), - [sym_delete] = STATE(181), - [sym_superscript] = STATE(181), - [sym_subscript] = STATE(181), - [sym_footnote_reference] = STATE(181), - [sym__image] = STATE(181), - [sym_full_reference_image] = STATE(181), - [sym_collapsed_reference_image] = STATE(181), - [sym_inline_image] = STATE(181), - [sym__image_description] = STATE(688), - [sym__link] = STATE(181), - [sym_full_reference_link] = STATE(181), - [sym_collapsed_reference_link] = STATE(181), - [sym_inline_link] = STATE(181), - [sym_link_text] = STATE(693), - [sym__comment_with_spaces] = STATE(181), - [sym_span] = STATE(181), - [sym_raw_inline] = STATE(181), - [sym_math] = STATE(181), - [sym_verbatim] = STATE(181), - [sym__todo_highlights] = STATE(181), - [sym_todo] = STATE(181), - [sym_note] = STATE(181), - [sym__symbol_fallback] = STATE(181), - [aux_sym__text] = STATE(153), - [aux_sym__inline_repeat1] = STATE(114), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(420), - [anon_sym__] = ACTIONS(423), - [anon_sym_LBRACE_STAR] = ACTIONS(426), - [anon_sym_STAR] = ACTIONS(429), - [anon_sym_BSLASH] = ACTIONS(432), - [sym_quotation_marks] = ACTIONS(435), - [sym_ellipsis] = ACTIONS(435), - [sym_em_dash] = ACTIONS(435), - [sym_en_dash] = ACTIONS(438), - [sym_backslash_escape] = ACTIONS(438), - [anon_sym_LT] = ACTIONS(441), - [anon_sym_LBRACE_EQ] = ACTIONS(444), - [anon_sym_LBRACE_PLUS] = ACTIONS(447), - [anon_sym_LBRACE_DASH] = ACTIONS(450), - [sym_symbol] = ACTIONS(435), - [anon_sym_LBRACE_CARET] = ACTIONS(453), - [anon_sym_CARET] = ACTIONS(453), - [anon_sym_LBRACE_TILDE] = ACTIONS(456), - [anon_sym_TILDE] = ACTIONS(456), - [anon_sym_LBRACK_CARET] = ACTIONS(459), - [anon_sym_BANG_LBRACK] = ACTIONS(462), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_LBRACE2] = ACTIONS(438), - [anon_sym_DOLLAR] = ACTIONS(468), - [anon_sym_TODO] = ACTIONS(471), - [anon_sym_WIP] = ACTIONS(471), - [anon_sym_NOTE] = ACTIONS(474), - [anon_sym_INFO] = ACTIONS(474), - [anon_sym_XXX] = ACTIONS(474), - [sym_fixme] = ACTIONS(435), - [anon_sym_PIPE] = ACTIONS(435), - [sym__whitespace1] = ACTIONS(477), - [sym__newline] = ACTIONS(480), - [aux_sym__text_token1] = ACTIONS(483), - [sym__verbatim_begin] = ACTIONS(486), - }, - [75] = { - [sym__inline] = STATE(993), - [sym__element] = STATE(118), - [sym_emphasis] = STATE(201), - [sym_emphasis_begin] = STATE(1005), - [sym_strong] = STATE(201), - [sym_strong_begin] = STATE(105), - [sym__hard_line_break] = STATE(201), - [sym_hard_line_break] = STATE(201), - [sym__smart_punctuation] = STATE(201), - [sym_autolink] = STATE(201), - [sym_highlighted] = STATE(201), - [sym_insert] = STATE(201), - [sym_delete] = STATE(201), - [sym_superscript] = STATE(201), - [sym_subscript] = STATE(201), - [sym_footnote_reference] = STATE(201), - [sym__image] = STATE(201), - [sym_full_reference_image] = STATE(201), - [sym_collapsed_reference_image] = STATE(201), - [sym_inline_image] = STATE(201), - [sym__image_description] = STATE(712), - [sym__link] = STATE(201), - [sym_full_reference_link] = STATE(201), - [sym_collapsed_reference_link] = STATE(201), - [sym_inline_link] = STATE(201), - [sym_link_text] = STATE(717), - [sym__comment_with_spaces] = STATE(201), - [sym_span] = STATE(201), - [sym_raw_inline] = STATE(201), - [sym_math] = STATE(201), - [sym_verbatim] = STATE(201), - [sym__todo_highlights] = STATE(201), - [sym_todo] = STATE(201), - [sym_note] = STATE(201), - [sym__symbol_fallback] = STATE(201), - [aux_sym__text] = STATE(139), - [aux_sym__inline_repeat1] = STATE(118), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(51), - [anon_sym__] = ACTIONS(54), - [anon_sym_LBRACE_STAR] = ACTIONS(57), - [anon_sym_STAR] = ACTIONS(60), - [anon_sym_BSLASH] = ACTIONS(63), - [sym_quotation_marks] = ACTIONS(66), - [sym_ellipsis] = ACTIONS(66), - [sym_em_dash] = ACTIONS(66), - [sym_en_dash] = ACTIONS(69), - [sym_backslash_escape] = ACTIONS(69), - [anon_sym_LT] = ACTIONS(72), - [anon_sym_LBRACE_EQ] = ACTIONS(75), - [anon_sym_LBRACE_PLUS] = ACTIONS(78), - [anon_sym_LBRACE_DASH] = ACTIONS(81), - [sym_symbol] = ACTIONS(66), - [anon_sym_LBRACE_CARET] = ACTIONS(84), - [anon_sym_CARET] = ACTIONS(84), - [anon_sym_LBRACE_TILDE] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(87), - [anon_sym_LBRACK_CARET] = ACTIONS(95), - [anon_sym_BANG_LBRACK] = ACTIONS(100), - [anon_sym_LBRACK] = ACTIONS(103), - [anon_sym_LBRACE2] = ACTIONS(69), - [anon_sym_DOLLAR] = ACTIONS(106), - [anon_sym_TODO] = ACTIONS(109), - [anon_sym_WIP] = ACTIONS(109), - [anon_sym_NOTE] = ACTIONS(112), - [anon_sym_INFO] = ACTIONS(112), - [anon_sym_XXX] = ACTIONS(112), - [sym_fixme] = ACTIONS(66), - [anon_sym_PIPE] = ACTIONS(66), - [sym__whitespace1] = ACTIONS(115), - [sym__newline] = ACTIONS(118), - [aux_sym__text_token1] = ACTIONS(121), - [sym__verbatim_begin] = ACTIONS(124), - }, - [76] = { - [sym__inline] = STATE(875), - [sym__element] = STATE(88), - [sym_emphasis] = STATE(209), - [sym_emphasis_begin] = STATE(1002), - [sym_strong] = STATE(209), - [sym_strong_begin] = STATE(121), - [sym__hard_line_break] = STATE(209), - [sym_hard_line_break] = STATE(209), - [sym__smart_punctuation] = STATE(209), - [sym_autolink] = STATE(209), - [sym_highlighted] = STATE(209), - [sym_insert] = STATE(209), - [sym_delete] = STATE(209), - [sym_superscript] = STATE(209), - [sym_subscript] = STATE(209), - [sym_footnote_reference] = STATE(209), - [sym__image] = STATE(209), - [sym_full_reference_image] = STATE(209), - [sym_collapsed_reference_image] = STATE(209), - [sym_inline_image] = STATE(209), - [sym__image_description] = STATE(706), - [sym__link] = STATE(209), - [sym_full_reference_link] = STATE(209), - [sym_collapsed_reference_link] = STATE(209), - [sym_inline_link] = STATE(209), - [sym_link_text] = STATE(707), - [sym__comment_with_spaces] = STATE(209), - [sym_span] = STATE(209), - [sym_raw_inline] = STATE(209), - [sym_math] = STATE(209), - [sym_verbatim] = STATE(209), - [sym__todo_highlights] = STATE(209), - [sym_todo] = STATE(209), - [sym_note] = STATE(209), - [sym__symbol_fallback] = STATE(209), - [aux_sym__text] = STATE(150), - [aux_sym__inline_repeat1] = STATE(88), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(282), - [anon_sym__] = ACTIONS(285), - [anon_sym_LBRACE_STAR] = ACTIONS(288), - [anon_sym_STAR] = ACTIONS(291), - [anon_sym_BSLASH] = ACTIONS(294), - [sym_quotation_marks] = ACTIONS(297), - [sym_ellipsis] = ACTIONS(297), - [sym_em_dash] = ACTIONS(297), - [sym_en_dash] = ACTIONS(300), - [sym_backslash_escape] = ACTIONS(300), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACE_EQ] = ACTIONS(306), - [anon_sym_LBRACE_PLUS] = ACTIONS(309), - [anon_sym_LBRACE_DASH] = ACTIONS(312), - [sym_symbol] = ACTIONS(297), - [anon_sym_LBRACE_CARET] = ACTIONS(315), - [anon_sym_CARET] = ACTIONS(315), - [anon_sym_LBRACE_TILDE] = ACTIONS(318), - [anon_sym_TILDE] = ACTIONS(318), - [anon_sym_LBRACK_CARET] = ACTIONS(321), - [anon_sym_BANG_LBRACK] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(327), - [anon_sym_LBRACE2] = ACTIONS(300), - [anon_sym_DOLLAR] = ACTIONS(330), - [anon_sym_TODO] = ACTIONS(333), - [anon_sym_WIP] = ACTIONS(333), - [anon_sym_NOTE] = ACTIONS(336), - [anon_sym_INFO] = ACTIONS(336), - [anon_sym_XXX] = ACTIONS(336), - [sym_fixme] = ACTIONS(297), - [anon_sym_PIPE] = ACTIONS(297), - [sym__whitespace1] = ACTIONS(339), - [sym__newline] = ACTIONS(342), - [aux_sym__text_token1] = ACTIONS(345), - [sym__verbatim_begin] = ACTIONS(348), - }, - [77] = { - [sym__inline] = STATE(874), - [sym__element] = STATE(91), - [sym_emphasis] = STATE(174), - [sym_emphasis_begin] = STATE(1001), - [sym_strong] = STATE(174), - [sym_strong_begin] = STATE(126), - [sym__hard_line_break] = STATE(174), - [sym_hard_line_break] = STATE(174), - [sym__smart_punctuation] = STATE(174), - [sym_autolink] = STATE(174), - [sym_highlighted] = STATE(174), - [sym_insert] = STATE(174), - [sym_delete] = STATE(174), - [sym_superscript] = STATE(174), - [sym_subscript] = STATE(174), - [sym_footnote_reference] = STATE(174), - [sym__image] = STATE(174), - [sym_full_reference_image] = STATE(174), - [sym_collapsed_reference_image] = STATE(174), - [sym_inline_image] = STATE(174), - [sym__image_description] = STATE(709), - [sym__link] = STATE(174), - [sym_full_reference_link] = STATE(174), - [sym_collapsed_reference_link] = STATE(174), - [sym_inline_link] = STATE(174), - [sym_link_text] = STATE(710), - [sym__comment_with_spaces] = STATE(174), - [sym_span] = STATE(174), - [sym_raw_inline] = STATE(174), - [sym_math] = STATE(174), - [sym_verbatim] = STATE(174), - [sym__todo_highlights] = STATE(174), - [sym_todo] = STATE(174), - [sym_note] = STATE(174), - [sym__symbol_fallback] = STATE(174), - [aux_sym__text] = STATE(148), - [aux_sym__inline_repeat1] = STATE(91), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(213), - [anon_sym__] = ACTIONS(216), - [anon_sym_LBRACE_STAR] = ACTIONS(219), - [anon_sym_STAR] = ACTIONS(222), - [anon_sym_BSLASH] = ACTIONS(225), - [sym_quotation_marks] = ACTIONS(228), - [sym_ellipsis] = ACTIONS(228), - [sym_em_dash] = ACTIONS(228), - [sym_en_dash] = ACTIONS(231), - [sym_backslash_escape] = ACTIONS(231), - [anon_sym_LT] = ACTIONS(234), - [anon_sym_LBRACE_EQ] = ACTIONS(237), - [anon_sym_LBRACE_PLUS] = ACTIONS(240), - [anon_sym_LBRACE_DASH] = ACTIONS(243), - [sym_symbol] = ACTIONS(228), - [anon_sym_LBRACE_CARET] = ACTIONS(246), - [anon_sym_CARET] = ACTIONS(246), - [anon_sym_LBRACE_TILDE] = ACTIONS(249), - [anon_sym_TILDE] = ACTIONS(249), - [anon_sym_LBRACK_CARET] = ACTIONS(252), - [anon_sym_BANG_LBRACK] = ACTIONS(255), - [anon_sym_LBRACK] = ACTIONS(258), - [anon_sym_LBRACE2] = ACTIONS(231), - [anon_sym_DOLLAR] = ACTIONS(261), - [anon_sym_TODO] = ACTIONS(264), - [anon_sym_WIP] = ACTIONS(264), - [anon_sym_NOTE] = ACTIONS(267), - [anon_sym_INFO] = ACTIONS(267), - [anon_sym_XXX] = ACTIONS(267), - [sym_fixme] = ACTIONS(228), - [anon_sym_PIPE] = ACTIONS(228), - [sym__whitespace1] = ACTIONS(270), - [sym__newline] = ACTIONS(273), - [aux_sym__text_token1] = ACTIONS(276), - [sym__verbatim_begin] = ACTIONS(279), - }, - [78] = { - [sym__inline] = STATE(792), + [sym__inline] = STATE(971), [sym__element] = STATE(115), - [sym_emphasis] = STATE(205), - [sym_emphasis_begin] = STATE(1000), - [sym_strong] = STATE(205), - [sym_strong_begin] = STATE(129), - [sym__hard_line_break] = STATE(205), - [sym_hard_line_break] = STATE(205), - [sym__smart_punctuation] = STATE(205), - [sym_autolink] = STATE(205), - [sym_highlighted] = STATE(205), - [sym_insert] = STATE(205), - [sym_delete] = STATE(205), - [sym_superscript] = STATE(205), - [sym_subscript] = STATE(205), - [sym_footnote_reference] = STATE(205), - [sym__image] = STATE(205), - [sym_full_reference_image] = STATE(205), - [sym_collapsed_reference_image] = STATE(205), - [sym_inline_image] = STATE(205), - [sym__image_description] = STATE(705), - [sym__link] = STATE(205), - [sym_full_reference_link] = STATE(205), - [sym_collapsed_reference_link] = STATE(205), - [sym_inline_link] = STATE(205), - [sym_link_text] = STATE(703), - [sym__comment_with_spaces] = STATE(205), - [sym_span] = STATE(205), - [sym_raw_inline] = STATE(205), - [sym_math] = STATE(205), - [sym_verbatim] = STATE(205), - [sym__todo_highlights] = STATE(205), - [sym_todo] = STATE(205), - [sym_note] = STATE(205), - [sym__symbol_fallback] = STATE(205), - [aux_sym__text] = STATE(136), + [sym_emphasis] = STATE(192), + [sym_emphasis_begin] = STATE(1095), + [sym_strong] = STATE(192), + [sym_strong_begin] = STATE(1096), + [sym_superscript] = STATE(192), + [sym_superscript_begin] = STATE(1097), + [sym_subscript] = STATE(192), + [sym_subscript_begin] = STATE(1098), + [sym_highlighted] = STATE(192), + [sym_highlighted_begin] = STATE(1099), + [sym_insert] = STATE(192), + [sym_insert_begin] = STATE(1100), + [sym_delete] = STATE(192), + [sym_delete_begin] = STATE(1101), + [sym_hard_line_break] = STATE(192), + [sym__smart_punctuation] = STATE(192), + [sym_autolink] = STATE(192), + [sym_footnote_reference] = STATE(192), + [sym__image] = STATE(192), + [sym_full_reference_image] = STATE(192), + [sym_collapsed_reference_image] = STATE(192), + [sym_inline_image] = STATE(192), + [sym__image_description] = STATE(684), + [sym__link] = STATE(192), + [sym_full_reference_link] = STATE(192), + [sym_collapsed_reference_link] = STATE(192), + [sym_inline_link] = STATE(192), + [sym_link_text] = STATE(683), + [sym__comment_with_spaces] = STATE(192), + [sym_span] = STATE(192), + [sym_raw_inline] = STATE(192), + [sym_math] = STATE(192), + [sym_verbatim] = STATE(192), + [sym__todo_highlights] = STATE(192), + [sym_todo] = STATE(192), + [sym_note] = STATE(192), + [sym__symbol_fallback] = STATE(192), + [aux_sym__text] = STATE(141), [aux_sym__inline_repeat1] = STATE(115), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(141), - [anon_sym__] = ACTIONS(144), - [anon_sym_LBRACE_STAR] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(150), - [anon_sym_BSLASH] = ACTIONS(153), - [sym_quotation_marks] = ACTIONS(156), - [sym_ellipsis] = ACTIONS(156), - [sym_em_dash] = ACTIONS(156), - [sym_en_dash] = ACTIONS(159), - [sym_backslash_escape] = ACTIONS(159), - [anon_sym_LT] = ACTIONS(162), - [anon_sym_LBRACE_EQ] = ACTIONS(165), - [anon_sym_LBRACE_PLUS] = ACTIONS(168), - [anon_sym_LBRACE_DASH] = ACTIONS(171), - [sym_symbol] = ACTIONS(156), - [anon_sym_LBRACE_CARET] = ACTIONS(174), - [anon_sym_CARET] = ACTIONS(174), - [anon_sym_LBRACE_TILDE] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_LBRACK_CARET] = ACTIONS(183), - [anon_sym_BANG_LBRACK] = ACTIONS(186), - [anon_sym_LBRACK] = ACTIONS(189), - [anon_sym_LBRACE2] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(192), - [anon_sym_TODO] = ACTIONS(195), - [anon_sym_WIP] = ACTIONS(195), - [anon_sym_NOTE] = ACTIONS(198), - [anon_sym_INFO] = ACTIONS(198), - [anon_sym_XXX] = ACTIONS(198), - [sym_fixme] = ACTIONS(156), - [anon_sym_PIPE] = ACTIONS(156), - [sym__whitespace1] = ACTIONS(201), - [sym__newline] = ACTIONS(204), - [aux_sym__text_token1] = ACTIONS(207), - [sym__verbatim_begin] = ACTIONS(210), + [anon_sym_LBRACE_] = ACTIONS(129), + [anon_sym__] = ACTIONS(131), + [anon_sym_LBRACE_STAR] = ACTIONS(133), + [anon_sym_STAR] = ACTIONS(135), + [anon_sym_LBRACE_CARET] = ACTIONS(137), + [anon_sym_CARET] = ACTIONS(137), + [anon_sym_LBRACE_TILDE] = ACTIONS(139), + [anon_sym_TILDE] = ACTIONS(139), + [anon_sym_LBRACE_EQ] = ACTIONS(141), + [anon_sym_LBRACE_PLUS] = ACTIONS(143), + [anon_sym_LBRACE_DASH] = ACTIONS(145), + [anon_sym_BSLASH] = ACTIONS(147), + [sym_quotation_marks] = ACTIONS(149), + [sym_ellipsis] = ACTIONS(149), + [sym_em_dash] = ACTIONS(149), + [sym_en_dash] = ACTIONS(151), + [sym_backslash_escape] = ACTIONS(151), + [anon_sym_LT] = ACTIONS(153), + [sym_symbol] = ACTIONS(149), + [anon_sym_LBRACK_CARET] = ACTIONS(155), + [anon_sym_BANG_LBRACK] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LBRACE2] = ACTIONS(151), + [anon_sym_DOLLAR] = ACTIONS(161), + [anon_sym_TODO] = ACTIONS(163), + [anon_sym_WIP] = ACTIONS(163), + [anon_sym_NOTE] = ACTIONS(165), + [anon_sym_INFO] = ACTIONS(165), + [anon_sym_XXX] = ACTIONS(165), + [sym_fixme] = ACTIONS(149), + [sym__whitespace1] = ACTIONS(167), + [sym__newline] = ACTIONS(169), + [aux_sym__text_token1] = ACTIONS(171), + [sym__verbatim_begin] = ACTIONS(173), }, - [79] = { - [sym__inline] = STATE(726), - [sym__element] = STATE(106), + [59] = { + [sym__inline] = STATE(970), + [sym__element] = STATE(111), [sym_emphasis] = STATE(186), - [sym_emphasis_begin] = STATE(1006), + [sym_emphasis_begin] = STATE(1102), [sym_strong] = STATE(186), - [sym_strong_begin] = STATE(79), - [sym__hard_line_break] = STATE(186), - [sym_hard_line_break] = STATE(186), - [sym__smart_punctuation] = STATE(186), - [sym_autolink] = STATE(186), + [sym_strong_begin] = STATE(1103), + [sym_superscript] = STATE(186), + [sym_superscript_begin] = STATE(1104), + [sym_subscript] = STATE(186), + [sym_subscript_begin] = STATE(1105), [sym_highlighted] = STATE(186), + [sym_highlighted_begin] = STATE(1106), [sym_insert] = STATE(186), + [sym_insert_begin] = STATE(1107), [sym_delete] = STATE(186), - [sym_superscript] = STATE(186), - [sym_subscript] = STATE(186), + [sym_delete_begin] = STATE(1108), + [sym_hard_line_break] = STATE(186), + [sym__smart_punctuation] = STATE(186), + [sym_autolink] = STATE(186), [sym_footnote_reference] = STATE(186), [sym__image] = STATE(186), [sym_full_reference_image] = STATE(186), [sym_collapsed_reference_image] = STATE(186), [sym_inline_image] = STATE(186), - [sym__image_description] = STATE(714), + [sym__image_description] = STATE(673), [sym__link] = STATE(186), [sym_full_reference_link] = STATE(186), [sym_collapsed_reference_link] = STATE(186), [sym_inline_link] = STATE(186), - [sym_link_text] = STATE(713), + [sym_link_text] = STATE(672), [sym__comment_with_spaces] = STATE(186), [sym_span] = STATE(186), [sym_raw_inline] = STATE(186), @@ -13859,367 +10036,1614 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(186), [sym_note] = STATE(186), [sym__symbol_fallback] = STATE(186), - [aux_sym__text] = STATE(160), - [aux_sym__inline_repeat1] = STATE(106), - [anon_sym_LBRACE_] = ACTIONS(546), - [anon_sym__] = ACTIONS(548), - [anon_sym_LBRACE_STAR] = ACTIONS(550), - [anon_sym_STAR] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(554), - [sym_quotation_marks] = ACTIONS(556), - [sym_ellipsis] = ACTIONS(556), - [sym_em_dash] = ACTIONS(556), - [sym_en_dash] = ACTIONS(558), - [sym_backslash_escape] = ACTIONS(558), - [anon_sym_LT] = ACTIONS(560), - [anon_sym_LBRACE_EQ] = ACTIONS(562), - [anon_sym_LBRACE_PLUS] = ACTIONS(564), - [anon_sym_LBRACE_DASH] = ACTIONS(566), - [sym_symbol] = ACTIONS(556), - [anon_sym_LBRACE_CARET] = ACTIONS(568), - [anon_sym_CARET] = ACTIONS(568), - [anon_sym_LBRACE_TILDE] = ACTIONS(570), - [anon_sym_TILDE] = ACTIONS(570), - [anon_sym_LBRACK_CARET] = ACTIONS(572), - [anon_sym_BANG_LBRACK] = ACTIONS(574), - [anon_sym_LBRACK] = ACTIONS(576), - [anon_sym_LBRACE2] = ACTIONS(558), - [anon_sym_DOLLAR] = ACTIONS(578), - [anon_sym_TODO] = ACTIONS(580), - [anon_sym_WIP] = ACTIONS(580), - [anon_sym_NOTE] = ACTIONS(582), - [anon_sym_INFO] = ACTIONS(582), - [anon_sym_XXX] = ACTIONS(582), - [sym_fixme] = ACTIONS(556), - [anon_sym_PIPE] = ACTIONS(556), - [sym__whitespace1] = ACTIONS(584), - [sym__newline] = ACTIONS(586), - [aux_sym__text_token1] = ACTIONS(588), - [sym__verbatim_begin] = ACTIONS(590), + [aux_sym__text] = STATE(155), + [aux_sym__inline_repeat1] = STATE(111), + [anon_sym_LBRACE_] = ACTIONS(267), + [anon_sym__] = ACTIONS(269), + [anon_sym_LBRACE_STAR] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_LBRACE_CARET] = ACTIONS(275), + [anon_sym_CARET] = ACTIONS(275), + [anon_sym_LBRACE_TILDE] = ACTIONS(277), + [anon_sym_TILDE] = ACTIONS(277), + [anon_sym_LBRACE_EQ] = ACTIONS(279), + [anon_sym_LBRACE_PLUS] = ACTIONS(281), + [anon_sym_LBRACE_DASH] = ACTIONS(283), + [anon_sym_BSLASH] = ACTIONS(285), + [sym_quotation_marks] = ACTIONS(287), + [sym_ellipsis] = ACTIONS(287), + [sym_em_dash] = ACTIONS(287), + [sym_en_dash] = ACTIONS(289), + [sym_backslash_escape] = ACTIONS(289), + [anon_sym_LT] = ACTIONS(291), + [sym_symbol] = ACTIONS(287), + [anon_sym_LBRACK_CARET] = ACTIONS(293), + [anon_sym_BANG_LBRACK] = ACTIONS(295), + [anon_sym_LBRACK] = ACTIONS(297), + [anon_sym_LBRACE2] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(299), + [anon_sym_TODO] = ACTIONS(301), + [anon_sym_WIP] = ACTIONS(301), + [anon_sym_NOTE] = ACTIONS(303), + [anon_sym_INFO] = ACTIONS(303), + [anon_sym_XXX] = ACTIONS(303), + [sym_fixme] = ACTIONS(287), + [sym__whitespace1] = ACTIONS(305), + [sym__newline] = ACTIONS(307), + [aux_sym__text_token1] = ACTIONS(309), + [sym__verbatim_begin] = ACTIONS(311), }, - [80] = { - [sym__inline] = STATE(828), - [sym__element] = STATE(95), - [sym_emphasis] = STATE(191), - [sym_emphasis_begin] = STATE(1008), - [sym_strong] = STATE(191), - [sym_strong_begin] = STATE(90), - [sym__hard_line_break] = STATE(191), - [sym_hard_line_break] = STATE(191), - [sym__smart_punctuation] = STATE(191), - [sym_autolink] = STATE(191), - [sym_highlighted] = STATE(191), - [sym_insert] = STATE(191), - [sym_delete] = STATE(191), - [sym_superscript] = STATE(191), - [sym_subscript] = STATE(191), - [sym_footnote_reference] = STATE(191), - [sym__image] = STATE(191), - [sym_full_reference_image] = STATE(191), - [sym_collapsed_reference_image] = STATE(191), - [sym_inline_image] = STATE(191), - [sym__image_description] = STATE(699), - [sym__link] = STATE(191), - [sym_full_reference_link] = STATE(191), - [sym_collapsed_reference_link] = STATE(191), - [sym_inline_link] = STATE(191), - [sym_link_text] = STATE(698), - [sym__comment_with_spaces] = STATE(191), - [sym_span] = STATE(191), - [sym_raw_inline] = STATE(191), - [sym_math] = STATE(191), - [sym_verbatim] = STATE(191), - [sym__todo_highlights] = STATE(191), - [sym_todo] = STATE(191), - [sym_note] = STATE(191), - [sym__symbol_fallback] = STATE(191), - [aux_sym__text] = STATE(137), - [aux_sym__inline_repeat1] = STATE(95), - [anon_sym_LBRACE_] = ACTIONS(592), - [anon_sym__] = ACTIONS(594), - [anon_sym_LBRACE_STAR] = ACTIONS(596), - [anon_sym_STAR] = ACTIONS(598), - [anon_sym_BSLASH] = ACTIONS(600), + [60] = { + [sym__inline] = STATE(969), + [sym__element] = STATE(103), + [sym_emphasis] = STATE(180), + [sym_emphasis_begin] = STATE(1109), + [sym_strong] = STATE(180), + [sym_strong_begin] = STATE(1110), + [sym_superscript] = STATE(180), + [sym_superscript_begin] = STATE(1111), + [sym_subscript] = STATE(180), + [sym_subscript_begin] = STATE(1112), + [sym_highlighted] = STATE(180), + [sym_highlighted_begin] = STATE(1113), + [sym_insert] = STATE(180), + [sym_insert_begin] = STATE(1114), + [sym_delete] = STATE(180), + [sym_delete_begin] = STATE(1115), + [sym_hard_line_break] = STATE(180), + [sym__smart_punctuation] = STATE(180), + [sym_autolink] = STATE(180), + [sym_footnote_reference] = STATE(180), + [sym__image] = STATE(180), + [sym_full_reference_image] = STATE(180), + [sym_collapsed_reference_image] = STATE(180), + [sym_inline_image] = STATE(180), + [sym__image_description] = STATE(666), + [sym__link] = STATE(180), + [sym_full_reference_link] = STATE(180), + [sym_collapsed_reference_link] = STATE(180), + [sym_inline_link] = STATE(180), + [sym_link_text] = STATE(664), + [sym__comment_with_spaces] = STATE(180), + [sym_span] = STATE(180), + [sym_raw_inline] = STATE(180), + [sym_math] = STATE(180), + [sym_verbatim] = STATE(180), + [sym__todo_highlights] = STATE(180), + [sym_todo] = STATE(180), + [sym_note] = STATE(180), + [sym__symbol_fallback] = STATE(180), + [aux_sym__text] = STATE(159), + [aux_sym__inline_repeat1] = STATE(103), + [anon_sym_LBRACE_] = ACTIONS(221), + [anon_sym__] = ACTIONS(223), + [anon_sym_LBRACE_STAR] = ACTIONS(225), + [anon_sym_STAR] = ACTIONS(227), + [anon_sym_LBRACE_CARET] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym_LBRACE_TILDE] = ACTIONS(231), + [anon_sym_TILDE] = ACTIONS(231), + [anon_sym_LBRACE_EQ] = ACTIONS(233), + [anon_sym_LBRACE_PLUS] = ACTIONS(235), + [anon_sym_LBRACE_DASH] = ACTIONS(237), + [anon_sym_BSLASH] = ACTIONS(239), + [sym_quotation_marks] = ACTIONS(241), + [sym_ellipsis] = ACTIONS(241), + [sym_em_dash] = ACTIONS(241), + [sym_en_dash] = ACTIONS(243), + [sym_backslash_escape] = ACTIONS(243), + [anon_sym_LT] = ACTIONS(245), + [sym_symbol] = ACTIONS(241), + [anon_sym_LBRACK_CARET] = ACTIONS(247), + [anon_sym_BANG_LBRACK] = ACTIONS(249), + [anon_sym_LBRACK] = ACTIONS(251), + [anon_sym_LBRACE2] = ACTIONS(243), + [anon_sym_DOLLAR] = ACTIONS(253), + [anon_sym_TODO] = ACTIONS(255), + [anon_sym_WIP] = ACTIONS(255), + [anon_sym_NOTE] = ACTIONS(257), + [anon_sym_INFO] = ACTIONS(257), + [anon_sym_XXX] = ACTIONS(257), + [sym_fixme] = ACTIONS(241), + [sym__whitespace1] = ACTIONS(259), + [sym__newline] = ACTIONS(261), + [aux_sym__text_token1] = ACTIONS(263), + [sym__verbatim_begin] = ACTIONS(265), + }, + [61] = { + [sym__inline] = STATE(968), + [sym__element] = STATE(66), + [sym_emphasis] = STATE(171), + [sym_emphasis_begin] = STATE(1116), + [sym_strong] = STATE(171), + [sym_strong_begin] = STATE(1117), + [sym_superscript] = STATE(171), + [sym_superscript_begin] = STATE(1118), + [sym_subscript] = STATE(171), + [sym_subscript_begin] = STATE(1119), + [sym_highlighted] = STATE(171), + [sym_highlighted_begin] = STATE(1120), + [sym_insert] = STATE(171), + [sym_insert_begin] = STATE(1121), + [sym_delete] = STATE(171), + [sym_delete_begin] = STATE(1122), + [sym_hard_line_break] = STATE(171), + [sym__smart_punctuation] = STATE(171), + [sym_autolink] = STATE(171), + [sym_footnote_reference] = STATE(171), + [sym__image] = STATE(171), + [sym_full_reference_image] = STATE(171), + [sym_collapsed_reference_image] = STATE(171), + [sym_inline_image] = STATE(171), + [sym__image_description] = STATE(674), + [sym__link] = STATE(171), + [sym_full_reference_link] = STATE(171), + [sym_collapsed_reference_link] = STATE(171), + [sym_inline_link] = STATE(171), + [sym_link_text] = STATE(675), + [sym__comment_with_spaces] = STATE(171), + [sym_span] = STATE(171), + [sym_raw_inline] = STATE(171), + [sym_math] = STATE(171), + [sym_verbatim] = STATE(171), + [sym__todo_highlights] = STATE(171), + [sym_todo] = STATE(171), + [sym_note] = STATE(171), + [sym__symbol_fallback] = STATE(171), + [aux_sym__text] = STATE(146), + [aux_sym__inline_repeat1] = STATE(66), + [anon_sym_LBRACE_] = ACTIONS(451), + [anon_sym__] = ACTIONS(453), + [anon_sym_LBRACE_STAR] = ACTIONS(455), + [anon_sym_STAR] = ACTIONS(457), + [anon_sym_LBRACE_CARET] = ACTIONS(459), + [anon_sym_CARET] = ACTIONS(459), + [anon_sym_LBRACE_TILDE] = ACTIONS(461), + [anon_sym_TILDE] = ACTIONS(461), + [anon_sym_LBRACE_EQ] = ACTIONS(463), + [anon_sym_LBRACE_PLUS] = ACTIONS(465), + [anon_sym_LBRACE_DASH] = ACTIONS(467), + [anon_sym_BSLASH] = ACTIONS(469), + [sym_quotation_marks] = ACTIONS(471), + [sym_ellipsis] = ACTIONS(471), + [sym_em_dash] = ACTIONS(471), + [sym_en_dash] = ACTIONS(473), + [sym_backslash_escape] = ACTIONS(473), + [anon_sym_LT] = ACTIONS(475), + [sym_symbol] = ACTIONS(471), + [anon_sym_LBRACK_CARET] = ACTIONS(477), + [anon_sym_BANG_LBRACK] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(481), + [anon_sym_LBRACE2] = ACTIONS(473), + [anon_sym_DOLLAR] = ACTIONS(483), + [anon_sym_TODO] = ACTIONS(485), + [anon_sym_WIP] = ACTIONS(485), + [anon_sym_NOTE] = ACTIONS(487), + [anon_sym_INFO] = ACTIONS(487), + [anon_sym_XXX] = ACTIONS(487), + [sym_fixme] = ACTIONS(471), + [sym__whitespace1] = ACTIONS(489), + [sym__newline] = ACTIONS(491), + [aux_sym__text_token1] = ACTIONS(493), + [sym__verbatim_begin] = ACTIONS(495), + }, + [62] = { + [sym__inline] = STATE(851), + [sym__element] = STATE(103), + [sym_emphasis] = STATE(180), + [sym_emphasis_begin] = STATE(1109), + [sym_strong] = STATE(180), + [sym_strong_begin] = STATE(1110), + [sym_superscript] = STATE(180), + [sym_superscript_begin] = STATE(1111), + [sym_subscript] = STATE(180), + [sym_subscript_begin] = STATE(1112), + [sym_highlighted] = STATE(180), + [sym_highlighted_begin] = STATE(1113), + [sym_insert] = STATE(180), + [sym_insert_begin] = STATE(1114), + [sym_delete] = STATE(180), + [sym_delete_begin] = STATE(1115), + [sym_hard_line_break] = STATE(180), + [sym__smart_punctuation] = STATE(180), + [sym_autolink] = STATE(180), + [sym_footnote_reference] = STATE(180), + [sym__image] = STATE(180), + [sym_full_reference_image] = STATE(180), + [sym_collapsed_reference_image] = STATE(180), + [sym_inline_image] = STATE(180), + [sym__image_description] = STATE(666), + [sym__link] = STATE(180), + [sym_full_reference_link] = STATE(180), + [sym_collapsed_reference_link] = STATE(180), + [sym_inline_link] = STATE(180), + [sym_link_text] = STATE(664), + [sym__comment_with_spaces] = STATE(180), + [sym_span] = STATE(180), + [sym_raw_inline] = STATE(180), + [sym_math] = STATE(180), + [sym_verbatim] = STATE(180), + [sym__todo_highlights] = STATE(180), + [sym_todo] = STATE(180), + [sym_note] = STATE(180), + [sym__symbol_fallback] = STATE(180), + [aux_sym__text] = STATE(159), + [aux_sym__inline_repeat1] = STATE(103), + [anon_sym_LBRACE_] = ACTIONS(221), + [anon_sym__] = ACTIONS(223), + [anon_sym_LBRACE_STAR] = ACTIONS(225), + [anon_sym_STAR] = ACTIONS(227), + [anon_sym_LBRACE_CARET] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym_LBRACE_TILDE] = ACTIONS(231), + [anon_sym_TILDE] = ACTIONS(231), + [anon_sym_LBRACE_EQ] = ACTIONS(233), + [anon_sym_LBRACE_PLUS] = ACTIONS(235), + [anon_sym_LBRACE_DASH] = ACTIONS(237), + [anon_sym_BSLASH] = ACTIONS(239), + [sym_quotation_marks] = ACTIONS(241), + [sym_ellipsis] = ACTIONS(241), + [sym_em_dash] = ACTIONS(241), + [sym_en_dash] = ACTIONS(243), + [sym_backslash_escape] = ACTIONS(243), + [anon_sym_LT] = ACTIONS(245), + [sym_symbol] = ACTIONS(241), + [anon_sym_LBRACK_CARET] = ACTIONS(247), + [anon_sym_BANG_LBRACK] = ACTIONS(249), + [anon_sym_LBRACK] = ACTIONS(251), + [anon_sym_LBRACE2] = ACTIONS(243), + [anon_sym_DOLLAR] = ACTIONS(253), + [anon_sym_TODO] = ACTIONS(255), + [anon_sym_WIP] = ACTIONS(255), + [anon_sym_NOTE] = ACTIONS(257), + [anon_sym_INFO] = ACTIONS(257), + [anon_sym_XXX] = ACTIONS(257), + [sym_fixme] = ACTIONS(241), + [sym__whitespace1] = ACTIONS(259), + [sym__newline] = ACTIONS(261), + [aux_sym__text_token1] = ACTIONS(263), + [sym__verbatim_begin] = ACTIONS(265), + }, + [63] = { + [sym__inline_without_trailing_space] = STATE(1052), + [sym__element] = STATE(603), + [sym_emphasis] = STATE(177), + [sym_emphasis_begin] = STATE(1067), + [sym_strong] = STATE(177), + [sym_strong_begin] = STATE(1068), + [sym_superscript] = STATE(177), + [sym_superscript_begin] = STATE(1069), + [sym_subscript] = STATE(177), + [sym_subscript_begin] = STATE(1070), + [sym_highlighted] = STATE(177), + [sym_highlighted_begin] = STATE(1071), + [sym_insert] = STATE(177), + [sym_insert_begin] = STATE(1072), + [sym_delete] = STATE(177), + [sym_delete_begin] = STATE(1073), + [sym_hard_line_break] = STATE(177), + [sym__smart_punctuation] = STATE(177), + [sym_autolink] = STATE(177), + [sym_footnote_reference] = STATE(177), + [sym__image] = STATE(177), + [sym_full_reference_image] = STATE(177), + [sym_collapsed_reference_image] = STATE(177), + [sym_inline_image] = STATE(177), + [sym__image_description] = STATE(681), + [sym__link] = STATE(177), + [sym_full_reference_link] = STATE(177), + [sym_collapsed_reference_link] = STATE(177), + [sym_inline_link] = STATE(177), + [sym_link_text] = STATE(668), + [sym__comment_with_spaces] = STATE(177), + [sym_span] = STATE(177), + [sym_raw_inline] = STATE(177), + [sym_math] = STATE(177), + [sym_verbatim] = STATE(177), + [sym__todo_highlights] = STATE(177), + [sym_todo] = STATE(177), + [sym_note] = STATE(177), + [sym__symbol_fallback] = STATE(177), + [aux_sym__text] = STATE(132), + [aux_sym__inline_repeat1] = STATE(128), + [anon_sym_LBRACE_] = ACTIONS(405), + [anon_sym__] = ACTIONS(407), + [anon_sym_LBRACE_STAR] = ACTIONS(409), + [anon_sym_STAR] = ACTIONS(411), + [anon_sym_LBRACE_CARET] = ACTIONS(413), + [anon_sym_CARET] = ACTIONS(413), + [anon_sym_LBRACE_TILDE] = ACTIONS(415), + [anon_sym_TILDE] = ACTIONS(415), + [anon_sym_LBRACE_EQ] = ACTIONS(417), + [anon_sym_LBRACE_PLUS] = ACTIONS(419), + [anon_sym_LBRACE_DASH] = ACTIONS(421), + [anon_sym_BSLASH] = ACTIONS(423), + [sym_quotation_marks] = ACTIONS(425), + [sym_ellipsis] = ACTIONS(425), + [sym_em_dash] = ACTIONS(425), + [sym_en_dash] = ACTIONS(427), + [sym_backslash_escape] = ACTIONS(427), + [anon_sym_LT] = ACTIONS(429), + [sym_symbol] = ACTIONS(425), + [anon_sym_LBRACK_CARET] = ACTIONS(431), + [anon_sym_BANG_LBRACK] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LBRACE2] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(437), + [anon_sym_TODO] = ACTIONS(439), + [anon_sym_WIP] = ACTIONS(439), + [anon_sym_NOTE] = ACTIONS(441), + [anon_sym_INFO] = ACTIONS(441), + [anon_sym_XXX] = ACTIONS(441), + [sym_fixme] = ACTIONS(425), + [sym__whitespace1] = ACTIONS(443), + [sym__newline] = ACTIONS(445), + [aux_sym__text_token1] = ACTIONS(447), + [sym__verbatim_begin] = ACTIONS(449), + }, + [64] = { + [sym__inline_without_trailing_space] = STATE(1051), + [sym__element] = STATE(572), + [sym_emphasis] = STATE(208), + [sym_emphasis_begin] = STATE(1074), + [sym_strong] = STATE(208), + [sym_strong_begin] = STATE(1075), + [sym_superscript] = STATE(208), + [sym_superscript_begin] = STATE(1076), + [sym_subscript] = STATE(208), + [sym_subscript_begin] = STATE(1077), + [sym_highlighted] = STATE(208), + [sym_highlighted_begin] = STATE(1078), + [sym_insert] = STATE(208), + [sym_insert_begin] = STATE(1079), + [sym_delete] = STATE(208), + [sym_delete_begin] = STATE(1080), + [sym_hard_line_break] = STATE(208), + [sym__smart_punctuation] = STATE(208), + [sym_autolink] = STATE(208), + [sym_footnote_reference] = STATE(208), + [sym__image] = STATE(208), + [sym_full_reference_image] = STATE(208), + [sym_collapsed_reference_image] = STATE(208), + [sym_inline_image] = STATE(208), + [sym__image_description] = STATE(680), + [sym__link] = STATE(208), + [sym_full_reference_link] = STATE(208), + [sym_collapsed_reference_link] = STATE(208), + [sym_inline_link] = STATE(208), + [sym_link_text] = STATE(663), + [sym__comment_with_spaces] = STATE(208), + [sym_span] = STATE(208), + [sym_raw_inline] = STATE(208), + [sym_math] = STATE(208), + [sym_verbatim] = STATE(208), + [sym__todo_highlights] = STATE(208), + [sym_todo] = STATE(208), + [sym_note] = STATE(208), + [sym__symbol_fallback] = STATE(208), + [aux_sym__text] = STATE(131), + [aux_sym__inline_repeat1] = STATE(130), + [anon_sym_LBRACE_] = ACTIONS(175), + [anon_sym__] = ACTIONS(177), + [anon_sym_LBRACE_STAR] = ACTIONS(179), + [anon_sym_STAR] = ACTIONS(181), + [anon_sym_LBRACE_CARET] = ACTIONS(183), + [anon_sym_CARET] = ACTIONS(183), + [anon_sym_LBRACE_TILDE] = ACTIONS(185), + [anon_sym_TILDE] = ACTIONS(185), + [anon_sym_LBRACE_EQ] = ACTIONS(187), + [anon_sym_LBRACE_PLUS] = ACTIONS(189), + [anon_sym_LBRACE_DASH] = ACTIONS(191), + [anon_sym_BSLASH] = ACTIONS(193), + [sym_quotation_marks] = ACTIONS(195), + [sym_ellipsis] = ACTIONS(195), + [sym_em_dash] = ACTIONS(195), + [sym_en_dash] = ACTIONS(197), + [sym_backslash_escape] = ACTIONS(197), + [anon_sym_LT] = ACTIONS(199), + [sym_symbol] = ACTIONS(195), + [anon_sym_LBRACK_CARET] = ACTIONS(201), + [anon_sym_BANG_LBRACK] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACE2] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(207), + [anon_sym_TODO] = ACTIONS(209), + [anon_sym_WIP] = ACTIONS(209), + [anon_sym_NOTE] = ACTIONS(211), + [anon_sym_INFO] = ACTIONS(211), + [anon_sym_XXX] = ACTIONS(211), + [sym_fixme] = ACTIONS(195), + [sym__whitespace1] = ACTIONS(213), + [sym__newline] = ACTIONS(215), + [aux_sym__text_token1] = ACTIONS(217), + [sym__verbatim_begin] = ACTIONS(219), + }, + [65] = { + [sym__element] = STATE(65), + [sym_emphasis] = STATE(180), + [sym_emphasis_begin] = STATE(1109), + [sym_strong] = STATE(180), + [sym_strong_begin] = STATE(1110), + [sym_superscript] = STATE(180), + [sym_superscript_begin] = STATE(1111), + [sym_subscript] = STATE(180), + [sym_subscript_begin] = STATE(1112), + [sym_highlighted] = STATE(180), + [sym_highlighted_begin] = STATE(1113), + [sym_insert] = STATE(180), + [sym_insert_begin] = STATE(1114), + [sym_delete] = STATE(180), + [sym_delete_begin] = STATE(1115), + [sym_hard_line_break] = STATE(180), + [sym__smart_punctuation] = STATE(180), + [sym_autolink] = STATE(180), + [sym_footnote_reference] = STATE(180), + [sym__image] = STATE(180), + [sym_full_reference_image] = STATE(180), + [sym_collapsed_reference_image] = STATE(180), + [sym_inline_image] = STATE(180), + [sym__image_description] = STATE(666), + [sym__link] = STATE(180), + [sym_full_reference_link] = STATE(180), + [sym_collapsed_reference_link] = STATE(180), + [sym_inline_link] = STATE(180), + [sym_link_text] = STATE(664), + [sym__comment_with_spaces] = STATE(180), + [sym_span] = STATE(180), + [sym_raw_inline] = STATE(180), + [sym_math] = STATE(180), + [sym_verbatim] = STATE(180), + [sym__todo_highlights] = STATE(180), + [sym_todo] = STATE(180), + [sym_note] = STATE(180), + [sym__symbol_fallback] = STATE(180), + [aux_sym__text] = STATE(159), + [aux_sym__inline_repeat1] = STATE(65), + [anon_sym_LBRACE_] = ACTIONS(572), + [anon_sym__] = ACTIONS(575), + [anon_sym_LBRACE_STAR] = ACTIONS(578), + [anon_sym_STAR] = ACTIONS(581), + [anon_sym_LBRACE_CARET] = ACTIONS(584), + [anon_sym_CARET] = ACTIONS(584), + [anon_sym_LBRACE_TILDE] = ACTIONS(587), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_LBRACE_EQ] = ACTIONS(590), + [anon_sym_LBRACE_PLUS] = ACTIONS(593), + [anon_sym_LBRACE_DASH] = ACTIONS(596), + [anon_sym_BSLASH] = ACTIONS(599), [sym_quotation_marks] = ACTIONS(602), [sym_ellipsis] = ACTIONS(602), [sym_em_dash] = ACTIONS(602), - [sym_en_dash] = ACTIONS(604), - [sym_backslash_escape] = ACTIONS(604), - [anon_sym_LT] = ACTIONS(606), - [anon_sym_LBRACE_EQ] = ACTIONS(608), - [anon_sym_LBRACE_PLUS] = ACTIONS(610), - [anon_sym_LBRACE_DASH] = ACTIONS(612), + [sym_en_dash] = ACTIONS(605), + [sym_backslash_escape] = ACTIONS(605), + [anon_sym_LT] = ACTIONS(608), [sym_symbol] = ACTIONS(602), - [anon_sym_LBRACE_CARET] = ACTIONS(614), - [anon_sym_CARET] = ACTIONS(614), - [anon_sym_LBRACE_TILDE] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(616), - [anon_sym_LBRACK_CARET] = ACTIONS(618), - [anon_sym_BANG_LBRACK] = ACTIONS(620), - [anon_sym_LBRACK] = ACTIONS(622), - [anon_sym_LBRACE2] = ACTIONS(604), - [anon_sym_DOLLAR] = ACTIONS(624), - [anon_sym_TODO] = ACTIONS(626), - [anon_sym_WIP] = ACTIONS(626), - [anon_sym_NOTE] = ACTIONS(628), - [anon_sym_INFO] = ACTIONS(628), - [anon_sym_XXX] = ACTIONS(628), + [anon_sym_LBRACK_CARET] = ACTIONS(611), + [anon_sym_BANG_LBRACK] = ACTIONS(614), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_LBRACE2] = ACTIONS(605), + [anon_sym_DOLLAR] = ACTIONS(620), + [anon_sym_TODO] = ACTIONS(623), + [anon_sym_WIP] = ACTIONS(623), + [anon_sym_NOTE] = ACTIONS(626), + [anon_sym_INFO] = ACTIONS(626), + [anon_sym_XXX] = ACTIONS(626), [sym_fixme] = ACTIONS(602), - [anon_sym_PIPE] = ACTIONS(602), - [sym__whitespace1] = ACTIONS(630), + [sym__whitespace1] = ACTIONS(629), [sym__newline] = ACTIONS(632), - [aux_sym__text_token1] = ACTIONS(634), - [sym__verbatim_begin] = ACTIONS(636), + [aux_sym__text_token1] = ACTIONS(635), + [sym__verbatim_begin] = ACTIONS(638), + [sym_delete_end] = ACTIONS(549), }, - [81] = { - [sym__element] = STATE(81), - [sym_emphasis] = STATE(181), - [sym_emphasis_begin] = STATE(1004), - [sym_strong] = STATE(181), - [sym_strong_begin] = STATE(110), - [sym__hard_line_break] = STATE(181), - [sym_hard_line_break] = STATE(181), - [sym__smart_punctuation] = STATE(181), - [sym_autolink] = STATE(181), - [sym_highlighted] = STATE(181), - [sym_insert] = STATE(181), - [sym_delete] = STATE(181), - [sym_superscript] = STATE(181), - [sym_subscript] = STATE(181), - [sym_footnote_reference] = STATE(181), - [sym__image] = STATE(181), - [sym_full_reference_image] = STATE(181), - [sym_collapsed_reference_image] = STATE(181), - [sym_inline_image] = STATE(181), - [sym__image_description] = STATE(688), - [sym__link] = STATE(181), - [sym_full_reference_link] = STATE(181), - [sym_collapsed_reference_link] = STATE(181), - [sym_inline_link] = STATE(181), + [66] = { + [sym__element] = STATE(40), + [sym_emphasis] = STATE(171), + [sym_emphasis_begin] = STATE(1116), + [sym_strong] = STATE(171), + [sym_strong_begin] = STATE(1117), + [sym_superscript] = STATE(171), + [sym_superscript_begin] = STATE(1118), + [sym_subscript] = STATE(171), + [sym_subscript_begin] = STATE(1119), + [sym_highlighted] = STATE(171), + [sym_highlighted_begin] = STATE(1120), + [sym_insert] = STATE(171), + [sym_insert_begin] = STATE(1121), + [sym_delete] = STATE(171), + [sym_delete_begin] = STATE(1122), + [sym_hard_line_break] = STATE(171), + [sym__smart_punctuation] = STATE(171), + [sym_autolink] = STATE(171), + [sym_footnote_reference] = STATE(171), + [sym__image] = STATE(171), + [sym_full_reference_image] = STATE(171), + [sym_collapsed_reference_image] = STATE(171), + [sym_inline_image] = STATE(171), + [sym__image_description] = STATE(674), + [sym__link] = STATE(171), + [sym_full_reference_link] = STATE(171), + [sym_collapsed_reference_link] = STATE(171), + [sym_inline_link] = STATE(171), + [sym_link_text] = STATE(675), + [sym__comment_with_spaces] = STATE(171), + [sym_span] = STATE(171), + [sym_raw_inline] = STATE(171), + [sym_math] = STATE(171), + [sym_verbatim] = STATE(171), + [sym__todo_highlights] = STATE(171), + [sym_todo] = STATE(171), + [sym_note] = STATE(171), + [sym__symbol_fallback] = STATE(171), + [aux_sym__text] = STATE(146), + [aux_sym__inline_repeat1] = STATE(40), + [anon_sym_LBRACE_] = ACTIONS(451), + [anon_sym__] = ACTIONS(453), + [anon_sym_LBRACE_STAR] = ACTIONS(455), + [anon_sym_STAR] = ACTIONS(457), + [anon_sym_LBRACE_CARET] = ACTIONS(459), + [anon_sym_CARET] = ACTIONS(459), + [anon_sym_LBRACE_TILDE] = ACTIONS(461), + [anon_sym_TILDE] = ACTIONS(461), + [anon_sym_LBRACE_EQ] = ACTIONS(463), + [anon_sym_LBRACE_PLUS] = ACTIONS(465), + [anon_sym_LBRACE_DASH] = ACTIONS(467), + [anon_sym_BSLASH] = ACTIONS(469), + [sym_quotation_marks] = ACTIONS(471), + [sym_ellipsis] = ACTIONS(471), + [sym_em_dash] = ACTIONS(471), + [sym_en_dash] = ACTIONS(473), + [sym_backslash_escape] = ACTIONS(473), + [anon_sym_LT] = ACTIONS(475), + [sym_symbol] = ACTIONS(471), + [anon_sym_LBRACK_CARET] = ACTIONS(477), + [anon_sym_BANG_LBRACK] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(481), + [anon_sym_RBRACK2] = ACTIONS(497), + [anon_sym_LBRACE2] = ACTIONS(473), + [anon_sym_DOLLAR] = ACTIONS(483), + [anon_sym_TODO] = ACTIONS(485), + [anon_sym_WIP] = ACTIONS(485), + [anon_sym_NOTE] = ACTIONS(487), + [anon_sym_INFO] = ACTIONS(487), + [anon_sym_XXX] = ACTIONS(487), + [sym_fixme] = ACTIONS(471), + [sym__whitespace1] = ACTIONS(489), + [sym__newline] = ACTIONS(641), + [aux_sym__text_token1] = ACTIONS(493), + [sym__verbatim_begin] = ACTIONS(495), + }, + [67] = { + [sym__inline] = STATE(1049), + [sym__element] = STATE(79), + [sym_emphasis] = STATE(161), + [sym_emphasis_begin] = STATE(1081), + [sym_strong] = STATE(161), + [sym_strong_begin] = STATE(1082), + [sym_superscript] = STATE(161), + [sym_superscript_begin] = STATE(1083), + [sym_subscript] = STATE(161), + [sym_subscript_begin] = STATE(1084), + [sym_highlighted] = STATE(161), + [sym_highlighted_begin] = STATE(1085), + [sym_insert] = STATE(161), + [sym_insert_begin] = STATE(1086), + [sym_delete] = STATE(161), + [sym_delete_begin] = STATE(1087), + [sym_hard_line_break] = STATE(161), + [sym__smart_punctuation] = STATE(161), + [sym_autolink] = STATE(161), + [sym_footnote_reference] = STATE(161), + [sym__image] = STATE(161), + [sym_full_reference_image] = STATE(161), + [sym_collapsed_reference_image] = STATE(161), + [sym_inline_image] = STATE(161), + [sym__image_description] = STATE(692), + [sym__link] = STATE(161), + [sym_full_reference_link] = STATE(161), + [sym_collapsed_reference_link] = STATE(161), + [sym_inline_link] = STATE(161), + [sym_link_text] = STATE(687), + [sym__comment_with_spaces] = STATE(161), + [sym_span] = STATE(161), + [sym_raw_inline] = STATE(161), + [sym_math] = STATE(161), + [sym_verbatim] = STATE(161), + [sym__todo_highlights] = STATE(161), + [sym_todo] = STATE(161), + [sym_note] = STATE(161), + [sym__symbol_fallback] = STATE(161), + [aux_sym__text] = STATE(149), + [aux_sym__inline_repeat1] = STATE(79), + [anon_sym_LBRACE_] = ACTIONS(359), + [anon_sym__] = ACTIONS(361), + [anon_sym_LBRACE_STAR] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(365), + [anon_sym_LBRACE_CARET] = ACTIONS(367), + [anon_sym_CARET] = ACTIONS(367), + [anon_sym_LBRACE_TILDE] = ACTIONS(369), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_LBRACE_EQ] = ACTIONS(371), + [anon_sym_LBRACE_PLUS] = ACTIONS(373), + [anon_sym_LBRACE_DASH] = ACTIONS(375), + [anon_sym_BSLASH] = ACTIONS(377), + [sym_quotation_marks] = ACTIONS(379), + [sym_ellipsis] = ACTIONS(379), + [sym_em_dash] = ACTIONS(379), + [sym_en_dash] = ACTIONS(381), + [sym_backslash_escape] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(383), + [sym_symbol] = ACTIONS(379), + [anon_sym_LBRACK_CARET] = ACTIONS(385), + [anon_sym_BANG_LBRACK] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE2] = ACTIONS(381), + [anon_sym_DOLLAR] = ACTIONS(391), + [anon_sym_TODO] = ACTIONS(393), + [anon_sym_WIP] = ACTIONS(393), + [anon_sym_NOTE] = ACTIONS(395), + [anon_sym_INFO] = ACTIONS(395), + [anon_sym_XXX] = ACTIONS(395), + [sym_fixme] = ACTIONS(379), + [sym__whitespace1] = ACTIONS(397), + [sym__newline] = ACTIONS(399), + [aux_sym__text_token1] = ACTIONS(401), + [sym__verbatim_begin] = ACTIONS(403), + }, + [68] = { + [sym__element] = STATE(68), + [sym_emphasis] = STATE(166), + [sym_emphasis_begin] = STATE(1041), + [sym_strong] = STATE(166), + [sym_strong_begin] = STATE(1040), + [sym_superscript] = STATE(166), + [sym_superscript_begin] = STATE(1039), + [sym_subscript] = STATE(166), + [sym_subscript_begin] = STATE(1038), + [sym_highlighted] = STATE(166), + [sym_highlighted_begin] = STATE(1037), + [sym_insert] = STATE(166), + [sym_insert_begin] = STATE(1036), + [sym_delete] = STATE(166), + [sym_delete_begin] = STATE(1029), + [sym_hard_line_break] = STATE(166), + [sym__smart_punctuation] = STATE(166), + [sym_autolink] = STATE(166), + [sym_footnote_reference] = STATE(166), + [sym__image] = STATE(166), + [sym_full_reference_image] = STATE(166), + [sym_collapsed_reference_image] = STATE(166), + [sym_inline_image] = STATE(166), + [sym__image_description] = STATE(696), + [sym__link] = STATE(166), + [sym_full_reference_link] = STATE(166), + [sym_collapsed_reference_link] = STATE(166), + [sym_inline_link] = STATE(166), [sym_link_text] = STATE(693), - [sym__comment_with_spaces] = STATE(181), - [sym_span] = STATE(181), - [sym_raw_inline] = STATE(181), - [sym_math] = STATE(181), - [sym_verbatim] = STATE(181), - [sym__todo_highlights] = STATE(181), - [sym_todo] = STATE(181), - [sym_note] = STATE(181), - [sym__symbol_fallback] = STATE(181), - [aux_sym__text] = STATE(153), - [aux_sym__inline_repeat1] = STATE(81), - [anon_sym_LBRACE_] = ACTIONS(638), - [anon_sym__] = ACTIONS(641), - [anon_sym_LBRACE_STAR] = ACTIONS(644), - [anon_sym_STAR] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(650), - [sym_quotation_marks] = ACTIONS(653), - [sym_ellipsis] = ACTIONS(653), - [sym_em_dash] = ACTIONS(653), - [sym_en_dash] = ACTIONS(656), - [sym_backslash_escape] = ACTIONS(656), - [anon_sym_LT] = ACTIONS(659), - [anon_sym_LBRACE_EQ] = ACTIONS(662), - [anon_sym_LBRACE_PLUS] = ACTIONS(665), - [anon_sym_LBRACE_DASH] = ACTIONS(668), - [sym_symbol] = ACTIONS(653), - [anon_sym_LBRACE_CARET] = ACTIONS(671), - [anon_sym_CARET] = ACTIONS(671), - [anon_sym_LBRACE_TILDE] = ACTIONS(674), - [anon_sym_TILDE] = ACTIONS(677), - [anon_sym_TILDE_RBRACE] = ACTIONS(680), + [sym__comment_with_spaces] = STATE(166), + [sym_span] = STATE(166), + [sym_raw_inline] = STATE(166), + [sym_math] = STATE(166), + [sym_verbatim] = STATE(166), + [sym__todo_highlights] = STATE(166), + [sym_todo] = STATE(166), + [sym_note] = STATE(166), + [sym__symbol_fallback] = STATE(166), + [aux_sym__text] = STATE(160), + [aux_sym__inline_repeat1] = STATE(68), + [ts_builtin_sym_end] = ACTIONS(549), + [anon_sym_LBRACE_] = ACTIONS(643), + [anon_sym__] = ACTIONS(646), + [anon_sym_LBRACE_STAR] = ACTIONS(649), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_LBRACE_CARET] = ACTIONS(655), + [anon_sym_CARET] = ACTIONS(655), + [anon_sym_LBRACE_TILDE] = ACTIONS(658), + [anon_sym_TILDE] = ACTIONS(658), + [anon_sym_LBRACE_EQ] = ACTIONS(661), + [anon_sym_LBRACE_PLUS] = ACTIONS(664), + [anon_sym_LBRACE_DASH] = ACTIONS(667), + [anon_sym_BSLASH] = ACTIONS(670), + [sym_quotation_marks] = ACTIONS(673), + [sym_ellipsis] = ACTIONS(673), + [sym_em_dash] = ACTIONS(673), + [sym_en_dash] = ACTIONS(676), + [sym_backslash_escape] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(679), + [sym_symbol] = ACTIONS(673), [anon_sym_LBRACK_CARET] = ACTIONS(682), [anon_sym_BANG_LBRACK] = ACTIONS(685), [anon_sym_LBRACK] = ACTIONS(688), - [anon_sym_LBRACE2] = ACTIONS(656), + [anon_sym_LBRACE2] = ACTIONS(676), [anon_sym_DOLLAR] = ACTIONS(691), [anon_sym_TODO] = ACTIONS(694), [anon_sym_WIP] = ACTIONS(694), [anon_sym_NOTE] = ACTIONS(697), [anon_sym_INFO] = ACTIONS(697), [anon_sym_XXX] = ACTIONS(697), - [sym_fixme] = ACTIONS(653), - [anon_sym_PIPE] = ACTIONS(653), + [sym_fixme] = ACTIONS(673), [sym__whitespace1] = ACTIONS(700), [sym__newline] = ACTIONS(703), [aux_sym__text_token1] = ACTIONS(706), [sym__verbatim_begin] = ACTIONS(709), }, - [82] = { - [sym__element] = STATE(82), - [sym_emphasis] = STATE(198), - [sym_emphasis_begin] = STATE(970), - [sym_strong] = STATE(198), - [sym_strong_begin] = STATE(97), - [sym__hard_line_break] = STATE(198), - [sym_hard_line_break] = STATE(198), - [sym__smart_punctuation] = STATE(198), - [sym_autolink] = STATE(198), - [sym_highlighted] = STATE(198), - [sym_insert] = STATE(198), - [sym_delete] = STATE(198), - [sym_superscript] = STATE(198), - [sym_subscript] = STATE(198), - [sym_footnote_reference] = STATE(198), - [sym__image] = STATE(198), - [sym_full_reference_image] = STATE(198), - [sym_collapsed_reference_image] = STATE(198), - [sym_inline_image] = STATE(198), - [sym__image_description] = STATE(689), - [sym__link] = STATE(198), - [sym_full_reference_link] = STATE(198), - [sym_collapsed_reference_link] = STATE(198), - [sym_inline_link] = STATE(198), - [sym_link_text] = STATE(694), - [sym__comment_with_spaces] = STATE(198), - [sym_span] = STATE(198), - [sym_raw_inline] = STATE(198), - [sym_math] = STATE(198), - [sym_verbatim] = STATE(198), - [sym__todo_highlights] = STATE(198), - [sym_todo] = STATE(198), - [sym_note] = STATE(198), - [sym__symbol_fallback] = STATE(198), - [aux_sym__text] = STATE(168), - [aux_sym__inline_repeat1] = STATE(82), - [ts_builtin_sym_end] = ACTIONS(680), - [anon_sym_LBRACE_] = ACTIONS(712), - [anon_sym__] = ACTIONS(715), - [anon_sym_LBRACE_STAR] = ACTIONS(718), - [anon_sym_STAR] = ACTIONS(721), - [anon_sym_BSLASH] = ACTIONS(724), - [sym_quotation_marks] = ACTIONS(727), - [sym_ellipsis] = ACTIONS(727), - [sym_em_dash] = ACTIONS(727), - [sym_en_dash] = ACTIONS(730), - [sym_backslash_escape] = ACTIONS(730), - [anon_sym_LT] = ACTIONS(733), - [anon_sym_LBRACE_EQ] = ACTIONS(736), - [anon_sym_LBRACE_PLUS] = ACTIONS(739), - [anon_sym_LBRACE_DASH] = ACTIONS(742), - [sym_symbol] = ACTIONS(727), - [anon_sym_LBRACE_CARET] = ACTIONS(745), - [anon_sym_CARET] = ACTIONS(745), - [anon_sym_LBRACE_TILDE] = ACTIONS(748), - [anon_sym_TILDE] = ACTIONS(748), - [anon_sym_LBRACK_CARET] = ACTIONS(751), - [anon_sym_BANG_LBRACK] = ACTIONS(754), - [anon_sym_LBRACK] = ACTIONS(757), - [anon_sym_LBRACE2] = ACTIONS(730), - [anon_sym_DOLLAR] = ACTIONS(760), - [anon_sym_TODO] = ACTIONS(763), - [anon_sym_WIP] = ACTIONS(763), - [anon_sym_NOTE] = ACTIONS(766), - [anon_sym_INFO] = ACTIONS(766), - [anon_sym_XXX] = ACTIONS(766), - [sym_fixme] = ACTIONS(727), - [anon_sym_PIPE] = ACTIONS(727), - [sym__whitespace1] = ACTIONS(769), - [sym__newline] = ACTIONS(772), - [aux_sym__text_token1] = ACTIONS(775), - [sym__verbatim_begin] = ACTIONS(778), + [69] = { + [sym__inline] = STATE(1035), + [sym__element] = STATE(93), + [sym_emphasis] = STATE(197), + [sym_emphasis_begin] = STATE(1088), + [sym_strong] = STATE(197), + [sym_strong_begin] = STATE(1089), + [sym_superscript] = STATE(197), + [sym_superscript_begin] = STATE(1090), + [sym_subscript] = STATE(197), + [sym_subscript_begin] = STATE(1091), + [sym_highlighted] = STATE(197), + [sym_highlighted_begin] = STATE(1092), + [sym_insert] = STATE(197), + [sym_insert_begin] = STATE(1093), + [sym_delete] = STATE(197), + [sym_delete_begin] = STATE(1094), + [sym_hard_line_break] = STATE(197), + [sym__smart_punctuation] = STATE(197), + [sym_autolink] = STATE(197), + [sym_footnote_reference] = STATE(197), + [sym__image] = STATE(197), + [sym_full_reference_image] = STATE(197), + [sym_collapsed_reference_image] = STATE(197), + [sym_inline_image] = STATE(197), + [sym__image_description] = STATE(697), + [sym__link] = STATE(197), + [sym_full_reference_link] = STATE(197), + [sym_collapsed_reference_link] = STATE(197), + [sym_inline_link] = STATE(197), + [sym_link_text] = STATE(682), + [sym__comment_with_spaces] = STATE(197), + [sym_span] = STATE(197), + [sym_raw_inline] = STATE(197), + [sym_math] = STATE(197), + [sym_verbatim] = STATE(197), + [sym__todo_highlights] = STATE(197), + [sym_todo] = STATE(197), + [sym_note] = STATE(197), + [sym__symbol_fallback] = STATE(197), + [aux_sym__text] = STATE(134), + [aux_sym__inline_repeat1] = STATE(93), + [anon_sym_LBRACE_] = ACTIONS(313), + [anon_sym__] = ACTIONS(315), + [anon_sym_LBRACE_STAR] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_LBRACE_CARET] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [anon_sym_LBRACE_TILDE] = ACTIONS(323), + [anon_sym_TILDE] = ACTIONS(323), + [anon_sym_LBRACE_EQ] = ACTIONS(325), + [anon_sym_LBRACE_PLUS] = ACTIONS(327), + [anon_sym_LBRACE_DASH] = ACTIONS(329), + [anon_sym_BSLASH] = ACTIONS(331), + [sym_quotation_marks] = ACTIONS(333), + [sym_ellipsis] = ACTIONS(333), + [sym_em_dash] = ACTIONS(333), + [sym_en_dash] = ACTIONS(335), + [sym_backslash_escape] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(337), + [sym_symbol] = ACTIONS(333), + [anon_sym_LBRACK_CARET] = ACTIONS(339), + [anon_sym_BANG_LBRACK] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE2] = ACTIONS(335), + [anon_sym_DOLLAR] = ACTIONS(345), + [anon_sym_TODO] = ACTIONS(347), + [anon_sym_WIP] = ACTIONS(347), + [anon_sym_NOTE] = ACTIONS(349), + [anon_sym_INFO] = ACTIONS(349), + [anon_sym_XXX] = ACTIONS(349), + [sym_fixme] = ACTIONS(333), + [sym__whitespace1] = ACTIONS(351), + [sym__newline] = ACTIONS(353), + [aux_sym__text_token1] = ACTIONS(355), + [sym__verbatim_begin] = ACTIONS(357), }, - [83] = { - [sym__inline_without_trailing_space] = STATE(884), - [sym__element] = STATE(582), - [sym_emphasis] = STATE(176), - [sym_emphasis_begin] = STATE(1007), - [sym_strong] = STATE(176), - [sym_strong_begin] = STATE(94), - [sym__hard_line_break] = STATE(176), - [sym_hard_line_break] = STATE(176), - [sym__smart_punctuation] = STATE(176), - [sym_autolink] = STATE(176), - [sym_highlighted] = STATE(176), - [sym_insert] = STATE(176), - [sym_delete] = STATE(176), - [sym_superscript] = STATE(176), - [sym_subscript] = STATE(176), - [sym_footnote_reference] = STATE(176), - [sym__image] = STATE(176), - [sym_full_reference_image] = STATE(176), - [sym_collapsed_reference_image] = STATE(176), - [sym_inline_image] = STATE(176), - [sym__image_description] = STATE(685), - [sym__link] = STATE(176), - [sym_full_reference_link] = STATE(176), - [sym_collapsed_reference_link] = STATE(176), - [sym_inline_link] = STATE(176), - [sym_link_text] = STATE(704), - [sym__comment_with_spaces] = STATE(176), - [sym_span] = STATE(176), - [sym_raw_inline] = STATE(176), - [sym_math] = STATE(176), - [sym_verbatim] = STATE(176), - [sym__todo_highlights] = STATE(176), - [sym_todo] = STATE(176), - [sym_note] = STATE(176), - [sym__symbol_fallback] = STATE(176), - [aux_sym__text] = STATE(161), - [aux_sym__inline_repeat1] = STATE(131), - [anon_sym_LBRACE_] = ACTIONS(781), - [anon_sym__] = ACTIONS(783), - [anon_sym_LBRACE_STAR] = ACTIONS(785), - [anon_sym_STAR] = ACTIONS(787), - [anon_sym_BSLASH] = ACTIONS(789), - [sym_quotation_marks] = ACTIONS(791), - [sym_ellipsis] = ACTIONS(791), - [sym_em_dash] = ACTIONS(791), - [sym_en_dash] = ACTIONS(793), - [sym_backslash_escape] = ACTIONS(793), - [anon_sym_LT] = ACTIONS(795), - [anon_sym_LBRACE_EQ] = ACTIONS(797), - [anon_sym_LBRACE_PLUS] = ACTIONS(799), - [anon_sym_LBRACE_DASH] = ACTIONS(801), - [sym_symbol] = ACTIONS(791), - [anon_sym_LBRACE_CARET] = ACTIONS(803), - [anon_sym_CARET] = ACTIONS(803), - [anon_sym_LBRACE_TILDE] = ACTIONS(805), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_LBRACK_CARET] = ACTIONS(807), - [anon_sym_BANG_LBRACK] = ACTIONS(809), - [anon_sym_LBRACK] = ACTIONS(811), - [anon_sym_LBRACE2] = ACTIONS(793), - [anon_sym_DOLLAR] = ACTIONS(813), - [anon_sym_TODO] = ACTIONS(815), - [anon_sym_WIP] = ACTIONS(815), - [anon_sym_NOTE] = ACTIONS(817), - [anon_sym_INFO] = ACTIONS(817), - [anon_sym_XXX] = ACTIONS(817), - [sym_fixme] = ACTIONS(791), - [anon_sym_PIPE] = ACTIONS(791), - [sym__whitespace1] = ACTIONS(819), - [sym__newline] = ACTIONS(821), - [aux_sym__text_token1] = ACTIONS(823), - [sym__verbatim_begin] = ACTIONS(825), - }, - [84] = { - [sym__inline] = STATE(733), - [sym__element] = STATE(106), + [70] = { + [sym__inline] = STATE(854), + [sym__element] = STATE(111), [sym_emphasis] = STATE(186), - [sym_emphasis_begin] = STATE(1006), + [sym_emphasis_begin] = STATE(1102), [sym_strong] = STATE(186), - [sym_strong_begin] = STATE(79), - [sym__hard_line_break] = STATE(186), + [sym_strong_begin] = STATE(1103), + [sym_superscript] = STATE(186), + [sym_superscript_begin] = STATE(1104), + [sym_subscript] = STATE(186), + [sym_subscript_begin] = STATE(1105), + [sym_highlighted] = STATE(186), + [sym_highlighted_begin] = STATE(1106), + [sym_insert] = STATE(186), + [sym_insert_begin] = STATE(1107), + [sym_delete] = STATE(186), + [sym_delete_begin] = STATE(1108), [sym_hard_line_break] = STATE(186), [sym__smart_punctuation] = STATE(186), [sym_autolink] = STATE(186), + [sym_footnote_reference] = STATE(186), + [sym__image] = STATE(186), + [sym_full_reference_image] = STATE(186), + [sym_collapsed_reference_image] = STATE(186), + [sym_inline_image] = STATE(186), + [sym__image_description] = STATE(673), + [sym__link] = STATE(186), + [sym_full_reference_link] = STATE(186), + [sym_collapsed_reference_link] = STATE(186), + [sym_inline_link] = STATE(186), + [sym_link_text] = STATE(672), + [sym__comment_with_spaces] = STATE(186), + [sym_span] = STATE(186), + [sym_raw_inline] = STATE(186), + [sym_math] = STATE(186), + [sym_verbatim] = STATE(186), + [sym__todo_highlights] = STATE(186), + [sym_todo] = STATE(186), + [sym_note] = STATE(186), + [sym__symbol_fallback] = STATE(186), + [aux_sym__text] = STATE(155), + [aux_sym__inline_repeat1] = STATE(111), + [anon_sym_LBRACE_] = ACTIONS(267), + [anon_sym__] = ACTIONS(269), + [anon_sym_LBRACE_STAR] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_LBRACE_CARET] = ACTIONS(275), + [anon_sym_CARET] = ACTIONS(275), + [anon_sym_LBRACE_TILDE] = ACTIONS(277), + [anon_sym_TILDE] = ACTIONS(277), + [anon_sym_LBRACE_EQ] = ACTIONS(279), + [anon_sym_LBRACE_PLUS] = ACTIONS(281), + [anon_sym_LBRACE_DASH] = ACTIONS(283), + [anon_sym_BSLASH] = ACTIONS(285), + [sym_quotation_marks] = ACTIONS(287), + [sym_ellipsis] = ACTIONS(287), + [sym_em_dash] = ACTIONS(287), + [sym_en_dash] = ACTIONS(289), + [sym_backslash_escape] = ACTIONS(289), + [anon_sym_LT] = ACTIONS(291), + [sym_symbol] = ACTIONS(287), + [anon_sym_LBRACK_CARET] = ACTIONS(293), + [anon_sym_BANG_LBRACK] = ACTIONS(295), + [anon_sym_LBRACK] = ACTIONS(297), + [anon_sym_LBRACE2] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(299), + [anon_sym_TODO] = ACTIONS(301), + [anon_sym_WIP] = ACTIONS(301), + [anon_sym_NOTE] = ACTIONS(303), + [anon_sym_INFO] = ACTIONS(303), + [anon_sym_XXX] = ACTIONS(303), + [sym_fixme] = ACTIONS(287), + [sym__whitespace1] = ACTIONS(305), + [sym__newline] = ACTIONS(307), + [aux_sym__text_token1] = ACTIONS(309), + [sym__verbatim_begin] = ACTIONS(311), + }, + [71] = { + [sym__inline] = STATE(855), + [sym__element] = STATE(115), + [sym_emphasis] = STATE(192), + [sym_emphasis_begin] = STATE(1095), + [sym_strong] = STATE(192), + [sym_strong_begin] = STATE(1096), + [sym_superscript] = STATE(192), + [sym_superscript_begin] = STATE(1097), + [sym_subscript] = STATE(192), + [sym_subscript_begin] = STATE(1098), + [sym_highlighted] = STATE(192), + [sym_highlighted_begin] = STATE(1099), + [sym_insert] = STATE(192), + [sym_insert_begin] = STATE(1100), + [sym_delete] = STATE(192), + [sym_delete_begin] = STATE(1101), + [sym_hard_line_break] = STATE(192), + [sym__smart_punctuation] = STATE(192), + [sym_autolink] = STATE(192), + [sym_footnote_reference] = STATE(192), + [sym__image] = STATE(192), + [sym_full_reference_image] = STATE(192), + [sym_collapsed_reference_image] = STATE(192), + [sym_inline_image] = STATE(192), + [sym__image_description] = STATE(684), + [sym__link] = STATE(192), + [sym_full_reference_link] = STATE(192), + [sym_collapsed_reference_link] = STATE(192), + [sym_inline_link] = STATE(192), + [sym_link_text] = STATE(683), + [sym__comment_with_spaces] = STATE(192), + [sym_span] = STATE(192), + [sym_raw_inline] = STATE(192), + [sym_math] = STATE(192), + [sym_verbatim] = STATE(192), + [sym__todo_highlights] = STATE(192), + [sym_todo] = STATE(192), + [sym_note] = STATE(192), + [sym__symbol_fallback] = STATE(192), + [aux_sym__text] = STATE(141), + [aux_sym__inline_repeat1] = STATE(115), + [anon_sym_LBRACE_] = ACTIONS(129), + [anon_sym__] = ACTIONS(131), + [anon_sym_LBRACE_STAR] = ACTIONS(133), + [anon_sym_STAR] = ACTIONS(135), + [anon_sym_LBRACE_CARET] = ACTIONS(137), + [anon_sym_CARET] = ACTIONS(137), + [anon_sym_LBRACE_TILDE] = ACTIONS(139), + [anon_sym_TILDE] = ACTIONS(139), + [anon_sym_LBRACE_EQ] = ACTIONS(141), + [anon_sym_LBRACE_PLUS] = ACTIONS(143), + [anon_sym_LBRACE_DASH] = ACTIONS(145), + [anon_sym_BSLASH] = ACTIONS(147), + [sym_quotation_marks] = ACTIONS(149), + [sym_ellipsis] = ACTIONS(149), + [sym_em_dash] = ACTIONS(149), + [sym_en_dash] = ACTIONS(151), + [sym_backslash_escape] = ACTIONS(151), + [anon_sym_LT] = ACTIONS(153), + [sym_symbol] = ACTIONS(149), + [anon_sym_LBRACK_CARET] = ACTIONS(155), + [anon_sym_BANG_LBRACK] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LBRACE2] = ACTIONS(151), + [anon_sym_DOLLAR] = ACTIONS(161), + [anon_sym_TODO] = ACTIONS(163), + [anon_sym_WIP] = ACTIONS(163), + [anon_sym_NOTE] = ACTIONS(165), + [anon_sym_INFO] = ACTIONS(165), + [anon_sym_XXX] = ACTIONS(165), + [sym_fixme] = ACTIONS(149), + [sym__whitespace1] = ACTIONS(167), + [sym__newline] = ACTIONS(169), + [aux_sym__text_token1] = ACTIONS(171), + [sym__verbatim_begin] = ACTIONS(173), + }, + [72] = { + [sym__inline] = STATE(868), + [sym__element] = STATE(93), + [sym_emphasis] = STATE(197), + [sym_emphasis_begin] = STATE(1088), + [sym_strong] = STATE(197), + [sym_strong_begin] = STATE(1089), + [sym_superscript] = STATE(197), + [sym_superscript_begin] = STATE(1090), + [sym_subscript] = STATE(197), + [sym_subscript_begin] = STATE(1091), + [sym_highlighted] = STATE(197), + [sym_highlighted_begin] = STATE(1092), + [sym_insert] = STATE(197), + [sym_insert_begin] = STATE(1093), + [sym_delete] = STATE(197), + [sym_delete_begin] = STATE(1094), + [sym_hard_line_break] = STATE(197), + [sym__smart_punctuation] = STATE(197), + [sym_autolink] = STATE(197), + [sym_footnote_reference] = STATE(197), + [sym__image] = STATE(197), + [sym_full_reference_image] = STATE(197), + [sym_collapsed_reference_image] = STATE(197), + [sym_inline_image] = STATE(197), + [sym__image_description] = STATE(697), + [sym__link] = STATE(197), + [sym_full_reference_link] = STATE(197), + [sym_collapsed_reference_link] = STATE(197), + [sym_inline_link] = STATE(197), + [sym_link_text] = STATE(682), + [sym__comment_with_spaces] = STATE(197), + [sym_span] = STATE(197), + [sym_raw_inline] = STATE(197), + [sym_math] = STATE(197), + [sym_verbatim] = STATE(197), + [sym__todo_highlights] = STATE(197), + [sym_todo] = STATE(197), + [sym_note] = STATE(197), + [sym__symbol_fallback] = STATE(197), + [aux_sym__text] = STATE(134), + [aux_sym__inline_repeat1] = STATE(93), + [anon_sym_LBRACE_] = ACTIONS(313), + [anon_sym__] = ACTIONS(315), + [anon_sym_LBRACE_STAR] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_LBRACE_CARET] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [anon_sym_LBRACE_TILDE] = ACTIONS(323), + [anon_sym_TILDE] = ACTIONS(323), + [anon_sym_LBRACE_EQ] = ACTIONS(325), + [anon_sym_LBRACE_PLUS] = ACTIONS(327), + [anon_sym_LBRACE_DASH] = ACTIONS(329), + [anon_sym_BSLASH] = ACTIONS(331), + [sym_quotation_marks] = ACTIONS(333), + [sym_ellipsis] = ACTIONS(333), + [sym_em_dash] = ACTIONS(333), + [sym_en_dash] = ACTIONS(335), + [sym_backslash_escape] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(337), + [sym_symbol] = ACTIONS(333), + [anon_sym_LBRACK_CARET] = ACTIONS(339), + [anon_sym_BANG_LBRACK] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE2] = ACTIONS(335), + [anon_sym_DOLLAR] = ACTIONS(345), + [anon_sym_TODO] = ACTIONS(347), + [anon_sym_WIP] = ACTIONS(347), + [anon_sym_NOTE] = ACTIONS(349), + [anon_sym_INFO] = ACTIONS(349), + [anon_sym_XXX] = ACTIONS(349), + [sym_fixme] = ACTIONS(333), + [sym__whitespace1] = ACTIONS(351), + [sym__newline] = ACTIONS(353), + [aux_sym__text_token1] = ACTIONS(355), + [sym__verbatim_begin] = ACTIONS(357), + }, + [73] = { + [sym__inline] = STATE(869), + [sym__element] = STATE(79), + [sym_emphasis] = STATE(161), + [sym_emphasis_begin] = STATE(1081), + [sym_strong] = STATE(161), + [sym_strong_begin] = STATE(1082), + [sym_superscript] = STATE(161), + [sym_superscript_begin] = STATE(1083), + [sym_subscript] = STATE(161), + [sym_subscript_begin] = STATE(1084), + [sym_highlighted] = STATE(161), + [sym_highlighted_begin] = STATE(1085), + [sym_insert] = STATE(161), + [sym_insert_begin] = STATE(1086), + [sym_delete] = STATE(161), + [sym_delete_begin] = STATE(1087), + [sym_hard_line_break] = STATE(161), + [sym__smart_punctuation] = STATE(161), + [sym_autolink] = STATE(161), + [sym_footnote_reference] = STATE(161), + [sym__image] = STATE(161), + [sym_full_reference_image] = STATE(161), + [sym_collapsed_reference_image] = STATE(161), + [sym_inline_image] = STATE(161), + [sym__image_description] = STATE(692), + [sym__link] = STATE(161), + [sym_full_reference_link] = STATE(161), + [sym_collapsed_reference_link] = STATE(161), + [sym_inline_link] = STATE(161), + [sym_link_text] = STATE(687), + [sym__comment_with_spaces] = STATE(161), + [sym_span] = STATE(161), + [sym_raw_inline] = STATE(161), + [sym_math] = STATE(161), + [sym_verbatim] = STATE(161), + [sym__todo_highlights] = STATE(161), + [sym_todo] = STATE(161), + [sym_note] = STATE(161), + [sym__symbol_fallback] = STATE(161), + [aux_sym__text] = STATE(149), + [aux_sym__inline_repeat1] = STATE(79), + [anon_sym_LBRACE_] = ACTIONS(359), + [anon_sym__] = ACTIONS(361), + [anon_sym_LBRACE_STAR] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(365), + [anon_sym_LBRACE_CARET] = ACTIONS(367), + [anon_sym_CARET] = ACTIONS(367), + [anon_sym_LBRACE_TILDE] = ACTIONS(369), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_LBRACE_EQ] = ACTIONS(371), + [anon_sym_LBRACE_PLUS] = ACTIONS(373), + [anon_sym_LBRACE_DASH] = ACTIONS(375), + [anon_sym_BSLASH] = ACTIONS(377), + [sym_quotation_marks] = ACTIONS(379), + [sym_ellipsis] = ACTIONS(379), + [sym_em_dash] = ACTIONS(379), + [sym_en_dash] = ACTIONS(381), + [sym_backslash_escape] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(383), + [sym_symbol] = ACTIONS(379), + [anon_sym_LBRACK_CARET] = ACTIONS(385), + [anon_sym_BANG_LBRACK] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE2] = ACTIONS(381), + [anon_sym_DOLLAR] = ACTIONS(391), + [anon_sym_TODO] = ACTIONS(393), + [anon_sym_WIP] = ACTIONS(393), + [anon_sym_NOTE] = ACTIONS(395), + [anon_sym_INFO] = ACTIONS(395), + [anon_sym_XXX] = ACTIONS(395), + [sym_fixme] = ACTIONS(379), + [sym__whitespace1] = ACTIONS(397), + [sym__newline] = ACTIONS(399), + [aux_sym__text_token1] = ACTIONS(401), + [sym__verbatim_begin] = ACTIONS(403), + }, + [74] = { + [sym__inline_without_trailing_space] = STATE(870), + [sym__element] = STATE(572), + [sym_emphasis] = STATE(208), + [sym_emphasis_begin] = STATE(1074), + [sym_strong] = STATE(208), + [sym_strong_begin] = STATE(1075), + [sym_superscript] = STATE(208), + [sym_superscript_begin] = STATE(1076), + [sym_subscript] = STATE(208), + [sym_subscript_begin] = STATE(1077), + [sym_highlighted] = STATE(208), + [sym_highlighted_begin] = STATE(1078), + [sym_insert] = STATE(208), + [sym_insert_begin] = STATE(1079), + [sym_delete] = STATE(208), + [sym_delete_begin] = STATE(1080), + [sym_hard_line_break] = STATE(208), + [sym__smart_punctuation] = STATE(208), + [sym_autolink] = STATE(208), + [sym_footnote_reference] = STATE(208), + [sym__image] = STATE(208), + [sym_full_reference_image] = STATE(208), + [sym_collapsed_reference_image] = STATE(208), + [sym_inline_image] = STATE(208), + [sym__image_description] = STATE(680), + [sym__link] = STATE(208), + [sym_full_reference_link] = STATE(208), + [sym_collapsed_reference_link] = STATE(208), + [sym_inline_link] = STATE(208), + [sym_link_text] = STATE(663), + [sym__comment_with_spaces] = STATE(208), + [sym_span] = STATE(208), + [sym_raw_inline] = STATE(208), + [sym_math] = STATE(208), + [sym_verbatim] = STATE(208), + [sym__todo_highlights] = STATE(208), + [sym_todo] = STATE(208), + [sym_note] = STATE(208), + [sym__symbol_fallback] = STATE(208), + [aux_sym__text] = STATE(131), + [aux_sym__inline_repeat1] = STATE(130), + [anon_sym_LBRACE_] = ACTIONS(175), + [anon_sym__] = ACTIONS(177), + [anon_sym_LBRACE_STAR] = ACTIONS(179), + [anon_sym_STAR] = ACTIONS(181), + [anon_sym_LBRACE_CARET] = ACTIONS(183), + [anon_sym_CARET] = ACTIONS(183), + [anon_sym_LBRACE_TILDE] = ACTIONS(185), + [anon_sym_TILDE] = ACTIONS(185), + [anon_sym_LBRACE_EQ] = ACTIONS(187), + [anon_sym_LBRACE_PLUS] = ACTIONS(189), + [anon_sym_LBRACE_DASH] = ACTIONS(191), + [anon_sym_BSLASH] = ACTIONS(193), + [sym_quotation_marks] = ACTIONS(195), + [sym_ellipsis] = ACTIONS(195), + [sym_em_dash] = ACTIONS(195), + [sym_en_dash] = ACTIONS(197), + [sym_backslash_escape] = ACTIONS(197), + [anon_sym_LT] = ACTIONS(199), + [sym_symbol] = ACTIONS(195), + [anon_sym_LBRACK_CARET] = ACTIONS(201), + [anon_sym_BANG_LBRACK] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACE2] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(207), + [anon_sym_TODO] = ACTIONS(209), + [anon_sym_WIP] = ACTIONS(209), + [anon_sym_NOTE] = ACTIONS(211), + [anon_sym_INFO] = ACTIONS(211), + [anon_sym_XXX] = ACTIONS(211), + [sym_fixme] = ACTIONS(195), + [sym__whitespace1] = ACTIONS(213), + [sym__newline] = ACTIONS(215), + [aux_sym__text_token1] = ACTIONS(217), + [sym__verbatim_begin] = ACTIONS(219), + }, + [75] = { + [sym__inline_without_trailing_space] = STATE(871), + [sym__element] = STATE(603), + [sym_emphasis] = STATE(177), + [sym_emphasis_begin] = STATE(1067), + [sym_strong] = STATE(177), + [sym_strong_begin] = STATE(1068), + [sym_superscript] = STATE(177), + [sym_superscript_begin] = STATE(1069), + [sym_subscript] = STATE(177), + [sym_subscript_begin] = STATE(1070), + [sym_highlighted] = STATE(177), + [sym_highlighted_begin] = STATE(1071), + [sym_insert] = STATE(177), + [sym_insert_begin] = STATE(1072), + [sym_delete] = STATE(177), + [sym_delete_begin] = STATE(1073), + [sym_hard_line_break] = STATE(177), + [sym__smart_punctuation] = STATE(177), + [sym_autolink] = STATE(177), + [sym_footnote_reference] = STATE(177), + [sym__image] = STATE(177), + [sym_full_reference_image] = STATE(177), + [sym_collapsed_reference_image] = STATE(177), + [sym_inline_image] = STATE(177), + [sym__image_description] = STATE(681), + [sym__link] = STATE(177), + [sym_full_reference_link] = STATE(177), + [sym_collapsed_reference_link] = STATE(177), + [sym_inline_link] = STATE(177), + [sym_link_text] = STATE(668), + [sym__comment_with_spaces] = STATE(177), + [sym_span] = STATE(177), + [sym_raw_inline] = STATE(177), + [sym_math] = STATE(177), + [sym_verbatim] = STATE(177), + [sym__todo_highlights] = STATE(177), + [sym_todo] = STATE(177), + [sym_note] = STATE(177), + [sym__symbol_fallback] = STATE(177), + [aux_sym__text] = STATE(132), + [aux_sym__inline_repeat1] = STATE(128), + [anon_sym_LBRACE_] = ACTIONS(405), + [anon_sym__] = ACTIONS(407), + [anon_sym_LBRACE_STAR] = ACTIONS(409), + [anon_sym_STAR] = ACTIONS(411), + [anon_sym_LBRACE_CARET] = ACTIONS(413), + [anon_sym_CARET] = ACTIONS(413), + [anon_sym_LBRACE_TILDE] = ACTIONS(415), + [anon_sym_TILDE] = ACTIONS(415), + [anon_sym_LBRACE_EQ] = ACTIONS(417), + [anon_sym_LBRACE_PLUS] = ACTIONS(419), + [anon_sym_LBRACE_DASH] = ACTIONS(421), + [anon_sym_BSLASH] = ACTIONS(423), + [sym_quotation_marks] = ACTIONS(425), + [sym_ellipsis] = ACTIONS(425), + [sym_em_dash] = ACTIONS(425), + [sym_en_dash] = ACTIONS(427), + [sym_backslash_escape] = ACTIONS(427), + [anon_sym_LT] = ACTIONS(429), + [sym_symbol] = ACTIONS(425), + [anon_sym_LBRACK_CARET] = ACTIONS(431), + [anon_sym_BANG_LBRACK] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LBRACE2] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(437), + [anon_sym_TODO] = ACTIONS(439), + [anon_sym_WIP] = ACTIONS(439), + [anon_sym_NOTE] = ACTIONS(441), + [anon_sym_INFO] = ACTIONS(441), + [anon_sym_XXX] = ACTIONS(441), + [sym_fixme] = ACTIONS(425), + [sym__whitespace1] = ACTIONS(443), + [sym__newline] = ACTIONS(445), + [aux_sym__text_token1] = ACTIONS(447), + [sym__verbatim_begin] = ACTIONS(449), + }, + [76] = { + [sym__inline] = STATE(884), + [sym__element] = STATE(66), + [sym_emphasis] = STATE(171), + [sym_emphasis_begin] = STATE(1116), + [sym_strong] = STATE(171), + [sym_strong_begin] = STATE(1117), + [sym_superscript] = STATE(171), + [sym_superscript_begin] = STATE(1118), + [sym_subscript] = STATE(171), + [sym_subscript_begin] = STATE(1119), + [sym_highlighted] = STATE(171), + [sym_highlighted_begin] = STATE(1120), + [sym_insert] = STATE(171), + [sym_insert_begin] = STATE(1121), + [sym_delete] = STATE(171), + [sym_delete_begin] = STATE(1122), + [sym_hard_line_break] = STATE(171), + [sym__smart_punctuation] = STATE(171), + [sym_autolink] = STATE(171), + [sym_footnote_reference] = STATE(171), + [sym__image] = STATE(171), + [sym_full_reference_image] = STATE(171), + [sym_collapsed_reference_image] = STATE(171), + [sym_inline_image] = STATE(171), + [sym__image_description] = STATE(674), + [sym__link] = STATE(171), + [sym_full_reference_link] = STATE(171), + [sym_collapsed_reference_link] = STATE(171), + [sym_inline_link] = STATE(171), + [sym_link_text] = STATE(675), + [sym__comment_with_spaces] = STATE(171), + [sym_span] = STATE(171), + [sym_raw_inline] = STATE(171), + [sym_math] = STATE(171), + [sym_verbatim] = STATE(171), + [sym__todo_highlights] = STATE(171), + [sym_todo] = STATE(171), + [sym_note] = STATE(171), + [sym__symbol_fallback] = STATE(171), + [aux_sym__text] = STATE(146), + [aux_sym__inline_repeat1] = STATE(66), + [anon_sym_LBRACE_] = ACTIONS(451), + [anon_sym__] = ACTIONS(453), + [anon_sym_LBRACE_STAR] = ACTIONS(455), + [anon_sym_STAR] = ACTIONS(457), + [anon_sym_LBRACE_CARET] = ACTIONS(459), + [anon_sym_CARET] = ACTIONS(459), + [anon_sym_LBRACE_TILDE] = ACTIONS(461), + [anon_sym_TILDE] = ACTIONS(461), + [anon_sym_LBRACE_EQ] = ACTIONS(463), + [anon_sym_LBRACE_PLUS] = ACTIONS(465), + [anon_sym_LBRACE_DASH] = ACTIONS(467), + [anon_sym_BSLASH] = ACTIONS(469), + [sym_quotation_marks] = ACTIONS(471), + [sym_ellipsis] = ACTIONS(471), + [sym_em_dash] = ACTIONS(471), + [sym_en_dash] = ACTIONS(473), + [sym_backslash_escape] = ACTIONS(473), + [anon_sym_LT] = ACTIONS(475), + [sym_symbol] = ACTIONS(471), + [anon_sym_LBRACK_CARET] = ACTIONS(477), + [anon_sym_BANG_LBRACK] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(481), + [anon_sym_LBRACE2] = ACTIONS(473), + [anon_sym_DOLLAR] = ACTIONS(483), + [anon_sym_TODO] = ACTIONS(485), + [anon_sym_WIP] = ACTIONS(485), + [anon_sym_NOTE] = ACTIONS(487), + [anon_sym_INFO] = ACTIONS(487), + [anon_sym_XXX] = ACTIONS(487), + [sym_fixme] = ACTIONS(471), + [sym__whitespace1] = ACTIONS(489), + [sym__newline] = ACTIONS(491), + [aux_sym__text_token1] = ACTIONS(493), + [sym__verbatim_begin] = ACTIONS(495), + }, + [77] = { + [sym__inline] = STATE(885), + [sym__element] = STATE(103), + [sym_emphasis] = STATE(180), + [sym_emphasis_begin] = STATE(1109), + [sym_strong] = STATE(180), + [sym_strong_begin] = STATE(1110), + [sym_superscript] = STATE(180), + [sym_superscript_begin] = STATE(1111), + [sym_subscript] = STATE(180), + [sym_subscript_begin] = STATE(1112), + [sym_highlighted] = STATE(180), + [sym_highlighted_begin] = STATE(1113), + [sym_insert] = STATE(180), + [sym_insert_begin] = STATE(1114), + [sym_delete] = STATE(180), + [sym_delete_begin] = STATE(1115), + [sym_hard_line_break] = STATE(180), + [sym__smart_punctuation] = STATE(180), + [sym_autolink] = STATE(180), + [sym_footnote_reference] = STATE(180), + [sym__image] = STATE(180), + [sym_full_reference_image] = STATE(180), + [sym_collapsed_reference_image] = STATE(180), + [sym_inline_image] = STATE(180), + [sym__image_description] = STATE(666), + [sym__link] = STATE(180), + [sym_full_reference_link] = STATE(180), + [sym_collapsed_reference_link] = STATE(180), + [sym_inline_link] = STATE(180), + [sym_link_text] = STATE(664), + [sym__comment_with_spaces] = STATE(180), + [sym_span] = STATE(180), + [sym_raw_inline] = STATE(180), + [sym_math] = STATE(180), + [sym_verbatim] = STATE(180), + [sym__todo_highlights] = STATE(180), + [sym_todo] = STATE(180), + [sym_note] = STATE(180), + [sym__symbol_fallback] = STATE(180), + [aux_sym__text] = STATE(159), + [aux_sym__inline_repeat1] = STATE(103), + [anon_sym_LBRACE_] = ACTIONS(221), + [anon_sym__] = ACTIONS(223), + [anon_sym_LBRACE_STAR] = ACTIONS(225), + [anon_sym_STAR] = ACTIONS(227), + [anon_sym_LBRACE_CARET] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym_LBRACE_TILDE] = ACTIONS(231), + [anon_sym_TILDE] = ACTIONS(231), + [anon_sym_LBRACE_EQ] = ACTIONS(233), + [anon_sym_LBRACE_PLUS] = ACTIONS(235), + [anon_sym_LBRACE_DASH] = ACTIONS(237), + [anon_sym_BSLASH] = ACTIONS(239), + [sym_quotation_marks] = ACTIONS(241), + [sym_ellipsis] = ACTIONS(241), + [sym_em_dash] = ACTIONS(241), + [sym_en_dash] = ACTIONS(243), + [sym_backslash_escape] = ACTIONS(243), + [anon_sym_LT] = ACTIONS(245), + [sym_symbol] = ACTIONS(241), + [anon_sym_LBRACK_CARET] = ACTIONS(247), + [anon_sym_BANG_LBRACK] = ACTIONS(249), + [anon_sym_LBRACK] = ACTIONS(251), + [anon_sym_LBRACE2] = ACTIONS(243), + [anon_sym_DOLLAR] = ACTIONS(253), + [anon_sym_TODO] = ACTIONS(255), + [anon_sym_WIP] = ACTIONS(255), + [anon_sym_NOTE] = ACTIONS(257), + [anon_sym_INFO] = ACTIONS(257), + [anon_sym_XXX] = ACTIONS(257), + [sym_fixme] = ACTIONS(241), + [sym__whitespace1] = ACTIONS(259), + [sym__newline] = ACTIONS(261), + [aux_sym__text_token1] = ACTIONS(263), + [sym__verbatim_begin] = ACTIONS(265), + }, + [78] = { + [sym__element] = STATE(78), + [sym_emphasis] = STATE(211), + [sym_emphasis_begin] = STATE(1060), + [sym_strong] = STATE(211), + [sym_strong_begin] = STATE(1061), + [sym_superscript] = STATE(211), + [sym_superscript_begin] = STATE(1062), + [sym_subscript] = STATE(211), + [sym_subscript_begin] = STATE(1063), + [sym_highlighted] = STATE(211), + [sym_highlighted_begin] = STATE(1064), + [sym_insert] = STATE(211), + [sym_insert_begin] = STATE(1065), + [sym_delete] = STATE(211), + [sym_delete_begin] = STATE(1066), + [sym_hard_line_break] = STATE(211), + [sym__smart_punctuation] = STATE(211), + [sym_autolink] = STATE(211), + [sym_footnote_reference] = STATE(211), + [sym__image] = STATE(211), + [sym_full_reference_image] = STATE(211), + [sym_collapsed_reference_image] = STATE(211), + [sym_inline_image] = STATE(211), + [sym__image_description] = STATE(671), + [sym__link] = STATE(211), + [sym_full_reference_link] = STATE(211), + [sym_collapsed_reference_link] = STATE(211), + [sym_inline_link] = STATE(211), + [sym_link_text] = STATE(676), + [sym__comment_with_spaces] = STATE(211), + [sym_span] = STATE(211), + [sym_raw_inline] = STATE(211), + [sym_math] = STATE(211), + [sym_verbatim] = STATE(211), + [sym__todo_highlights] = STATE(211), + [sym_todo] = STATE(211), + [sym_note] = STATE(211), + [sym__symbol_fallback] = STATE(211), + [aux_sym__text] = STATE(139), + [aux_sym__inline_repeat1] = STATE(78), + [anon_sym_LBRACE_] = ACTIONS(712), + [anon_sym__] = ACTIONS(715), + [anon_sym_LBRACE_STAR] = ACTIONS(718), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_LBRACE_CARET] = ACTIONS(724), + [anon_sym_CARET] = ACTIONS(724), + [anon_sym_LBRACE_TILDE] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(727), + [anon_sym_LBRACE_EQ] = ACTIONS(730), + [anon_sym_LBRACE_PLUS] = ACTIONS(733), + [anon_sym_LBRACE_DASH] = ACTIONS(736), + [anon_sym_BSLASH] = ACTIONS(739), + [sym_quotation_marks] = ACTIONS(742), + [sym_ellipsis] = ACTIONS(742), + [sym_em_dash] = ACTIONS(742), + [sym_en_dash] = ACTIONS(745), + [sym_backslash_escape] = ACTIONS(745), + [anon_sym_LT] = ACTIONS(748), + [sym_symbol] = ACTIONS(742), + [anon_sym_LBRACK_CARET] = ACTIONS(751), + [anon_sym_RBRACK] = ACTIONS(549), + [anon_sym_BANG_LBRACK] = ACTIONS(754), + [anon_sym_LBRACK] = ACTIONS(757), + [anon_sym_LBRACE2] = ACTIONS(745), + [anon_sym_DOLLAR] = ACTIONS(760), + [anon_sym_TODO] = ACTIONS(763), + [anon_sym_WIP] = ACTIONS(763), + [anon_sym_NOTE] = ACTIONS(766), + [anon_sym_INFO] = ACTIONS(766), + [anon_sym_XXX] = ACTIONS(766), + [sym_fixme] = ACTIONS(742), + [sym__whitespace1] = ACTIONS(769), + [sym__newline] = ACTIONS(772), + [aux_sym__text_token1] = ACTIONS(775), + [sym__verbatim_begin] = ACTIONS(778), + }, + [79] = { + [sym__element] = STATE(104), + [sym_emphasis] = STATE(161), + [sym_emphasis_begin] = STATE(1081), + [sym_strong] = STATE(161), + [sym_strong_begin] = STATE(1082), + [sym_superscript] = STATE(161), + [sym_superscript_begin] = STATE(1083), + [sym_subscript] = STATE(161), + [sym_subscript_begin] = STATE(1084), + [sym_highlighted] = STATE(161), + [sym_highlighted_begin] = STATE(1085), + [sym_insert] = STATE(161), + [sym_insert_begin] = STATE(1086), + [sym_delete] = STATE(161), + [sym_delete_begin] = STATE(1087), + [sym_hard_line_break] = STATE(161), + [sym__smart_punctuation] = STATE(161), + [sym_autolink] = STATE(161), + [sym_footnote_reference] = STATE(161), + [sym__image] = STATE(161), + [sym_full_reference_image] = STATE(161), + [sym_collapsed_reference_image] = STATE(161), + [sym_inline_image] = STATE(161), + [sym__image_description] = STATE(692), + [sym__link] = STATE(161), + [sym_full_reference_link] = STATE(161), + [sym_collapsed_reference_link] = STATE(161), + [sym_inline_link] = STATE(161), + [sym_link_text] = STATE(687), + [sym__comment_with_spaces] = STATE(161), + [sym_span] = STATE(161), + [sym_raw_inline] = STATE(161), + [sym_math] = STATE(161), + [sym_verbatim] = STATE(161), + [sym__todo_highlights] = STATE(161), + [sym_todo] = STATE(161), + [sym_note] = STATE(161), + [sym__symbol_fallback] = STATE(161), + [aux_sym__text] = STATE(149), + [aux_sym__inline_repeat1] = STATE(104), + [anon_sym_LBRACE_] = ACTIONS(359), + [anon_sym__] = ACTIONS(361), + [anon_sym_LBRACE_STAR] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(365), + [anon_sym_LBRACE_CARET] = ACTIONS(367), + [anon_sym_CARET] = ACTIONS(367), + [anon_sym_LBRACE_TILDE] = ACTIONS(369), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_LBRACE_EQ] = ACTIONS(371), + [anon_sym_LBRACE_PLUS] = ACTIONS(373), + [anon_sym_LBRACE_DASH] = ACTIONS(375), + [anon_sym_BSLASH] = ACTIONS(377), + [sym_quotation_marks] = ACTIONS(379), + [sym_ellipsis] = ACTIONS(379), + [sym_em_dash] = ACTIONS(379), + [sym_en_dash] = ACTIONS(381), + [sym_backslash_escape] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(383), + [sym_symbol] = ACTIONS(379), + [anon_sym_LBRACK_CARET] = ACTIONS(385), + [anon_sym_BANG_LBRACK] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE2] = ACTIONS(381), + [anon_sym_DOLLAR] = ACTIONS(391), + [anon_sym_TODO] = ACTIONS(393), + [anon_sym_WIP] = ACTIONS(393), + [anon_sym_NOTE] = ACTIONS(395), + [anon_sym_INFO] = ACTIONS(395), + [anon_sym_XXX] = ACTIONS(395), + [sym_fixme] = ACTIONS(379), + [sym__whitespace1] = ACTIONS(397), + [sym__newline] = ACTIONS(781), + [aux_sym__text_token1] = ACTIONS(401), + [sym__verbatim_begin] = ACTIONS(403), + [sym_superscript_end] = ACTIONS(497), + }, + [80] = { + [sym__inline] = STATE(898), + [sym__element] = STATE(111), + [sym_emphasis] = STATE(186), + [sym_emphasis_begin] = STATE(1102), + [sym_strong] = STATE(186), + [sym_strong_begin] = STATE(1103), + [sym_superscript] = STATE(186), + [sym_superscript_begin] = STATE(1104), + [sym_subscript] = STATE(186), + [sym_subscript_begin] = STATE(1105), [sym_highlighted] = STATE(186), + [sym_highlighted_begin] = STATE(1106), [sym_insert] = STATE(186), + [sym_insert_begin] = STATE(1107), [sym_delete] = STATE(186), - [sym_superscript] = STATE(186), - [sym_subscript] = STATE(186), + [sym_delete_begin] = STATE(1108), + [sym_hard_line_break] = STATE(186), + [sym__smart_punctuation] = STATE(186), + [sym_autolink] = STATE(186), [sym_footnote_reference] = STATE(186), [sym__image] = STATE(186), [sym_full_reference_image] = STATE(186), [sym_collapsed_reference_image] = STATE(186), [sym_inline_image] = STATE(186), - [sym__image_description] = STATE(714), + [sym__image_description] = STATE(673), [sym__link] = STATE(186), [sym_full_reference_link] = STATE(186), [sym_collapsed_reference_link] = STATE(186), [sym_inline_link] = STATE(186), - [sym_link_text] = STATE(713), + [sym_link_text] = STATE(672), [sym__comment_with_spaces] = STATE(186), [sym_span] = STATE(186), [sym_raw_inline] = STATE(186), @@ -14229,441 +11653,690 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(186), [sym_note] = STATE(186), [sym__symbol_fallback] = STATE(186), - [aux_sym__text] = STATE(160), - [aux_sym__inline_repeat1] = STATE(106), - [anon_sym_LBRACE_] = ACTIONS(546), - [anon_sym__] = ACTIONS(548), - [anon_sym_LBRACE_STAR] = ACTIONS(550), - [anon_sym_STAR] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(554), - [sym_quotation_marks] = ACTIONS(556), - [sym_ellipsis] = ACTIONS(556), - [sym_em_dash] = ACTIONS(556), - [sym_en_dash] = ACTIONS(558), - [sym_backslash_escape] = ACTIONS(558), - [anon_sym_LT] = ACTIONS(560), - [anon_sym_LBRACE_EQ] = ACTIONS(562), - [anon_sym_LBRACE_PLUS] = ACTIONS(564), - [anon_sym_LBRACE_DASH] = ACTIONS(566), - [sym_symbol] = ACTIONS(556), - [anon_sym_LBRACE_CARET] = ACTIONS(568), - [anon_sym_CARET] = ACTIONS(568), - [anon_sym_LBRACE_TILDE] = ACTIONS(570), - [anon_sym_TILDE] = ACTIONS(570), - [anon_sym_LBRACK_CARET] = ACTIONS(572), - [anon_sym_BANG_LBRACK] = ACTIONS(574), - [anon_sym_LBRACK] = ACTIONS(576), - [anon_sym_LBRACE2] = ACTIONS(558), - [anon_sym_DOLLAR] = ACTIONS(578), - [anon_sym_TODO] = ACTIONS(580), - [anon_sym_WIP] = ACTIONS(580), - [anon_sym_NOTE] = ACTIONS(582), - [anon_sym_INFO] = ACTIONS(582), - [anon_sym_XXX] = ACTIONS(582), - [sym_fixme] = ACTIONS(556), - [anon_sym_PIPE] = ACTIONS(556), - [sym__whitespace1] = ACTIONS(584), - [sym__newline] = ACTIONS(586), - [aux_sym__text_token1] = ACTIONS(588), - [sym__verbatim_begin] = ACTIONS(590), + [aux_sym__text] = STATE(155), + [aux_sym__inline_repeat1] = STATE(111), + [anon_sym_LBRACE_] = ACTIONS(267), + [anon_sym__] = ACTIONS(269), + [anon_sym_LBRACE_STAR] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_LBRACE_CARET] = ACTIONS(275), + [anon_sym_CARET] = ACTIONS(275), + [anon_sym_LBRACE_TILDE] = ACTIONS(277), + [anon_sym_TILDE] = ACTIONS(277), + [anon_sym_LBRACE_EQ] = ACTIONS(279), + [anon_sym_LBRACE_PLUS] = ACTIONS(281), + [anon_sym_LBRACE_DASH] = ACTIONS(283), + [anon_sym_BSLASH] = ACTIONS(285), + [sym_quotation_marks] = ACTIONS(287), + [sym_ellipsis] = ACTIONS(287), + [sym_em_dash] = ACTIONS(287), + [sym_en_dash] = ACTIONS(289), + [sym_backslash_escape] = ACTIONS(289), + [anon_sym_LT] = ACTIONS(291), + [sym_symbol] = ACTIONS(287), + [anon_sym_LBRACK_CARET] = ACTIONS(293), + [anon_sym_BANG_LBRACK] = ACTIONS(295), + [anon_sym_LBRACK] = ACTIONS(297), + [anon_sym_LBRACE2] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(299), + [anon_sym_TODO] = ACTIONS(301), + [anon_sym_WIP] = ACTIONS(301), + [anon_sym_NOTE] = ACTIONS(303), + [anon_sym_INFO] = ACTIONS(303), + [anon_sym_XXX] = ACTIONS(303), + [sym_fixme] = ACTIONS(287), + [sym__whitespace1] = ACTIONS(305), + [sym__newline] = ACTIONS(307), + [aux_sym__text_token1] = ACTIONS(309), + [sym__verbatim_begin] = ACTIONS(311), + }, + [81] = { + [sym__inline] = STATE(892), + [sym__element] = STATE(115), + [sym_emphasis] = STATE(192), + [sym_emphasis_begin] = STATE(1095), + [sym_strong] = STATE(192), + [sym_strong_begin] = STATE(1096), + [sym_superscript] = STATE(192), + [sym_superscript_begin] = STATE(1097), + [sym_subscript] = STATE(192), + [sym_subscript_begin] = STATE(1098), + [sym_highlighted] = STATE(192), + [sym_highlighted_begin] = STATE(1099), + [sym_insert] = STATE(192), + [sym_insert_begin] = STATE(1100), + [sym_delete] = STATE(192), + [sym_delete_begin] = STATE(1101), + [sym_hard_line_break] = STATE(192), + [sym__smart_punctuation] = STATE(192), + [sym_autolink] = STATE(192), + [sym_footnote_reference] = STATE(192), + [sym__image] = STATE(192), + [sym_full_reference_image] = STATE(192), + [sym_collapsed_reference_image] = STATE(192), + [sym_inline_image] = STATE(192), + [sym__image_description] = STATE(684), + [sym__link] = STATE(192), + [sym_full_reference_link] = STATE(192), + [sym_collapsed_reference_link] = STATE(192), + [sym_inline_link] = STATE(192), + [sym_link_text] = STATE(683), + [sym__comment_with_spaces] = STATE(192), + [sym_span] = STATE(192), + [sym_raw_inline] = STATE(192), + [sym_math] = STATE(192), + [sym_verbatim] = STATE(192), + [sym__todo_highlights] = STATE(192), + [sym_todo] = STATE(192), + [sym_note] = STATE(192), + [sym__symbol_fallback] = STATE(192), + [aux_sym__text] = STATE(141), + [aux_sym__inline_repeat1] = STATE(115), + [anon_sym_LBRACE_] = ACTIONS(129), + [anon_sym__] = ACTIONS(131), + [anon_sym_LBRACE_STAR] = ACTIONS(133), + [anon_sym_STAR] = ACTIONS(135), + [anon_sym_LBRACE_CARET] = ACTIONS(137), + [anon_sym_CARET] = ACTIONS(137), + [anon_sym_LBRACE_TILDE] = ACTIONS(139), + [anon_sym_TILDE] = ACTIONS(139), + [anon_sym_LBRACE_EQ] = ACTIONS(141), + [anon_sym_LBRACE_PLUS] = ACTIONS(143), + [anon_sym_LBRACE_DASH] = ACTIONS(145), + [anon_sym_BSLASH] = ACTIONS(147), + [sym_quotation_marks] = ACTIONS(149), + [sym_ellipsis] = ACTIONS(149), + [sym_em_dash] = ACTIONS(149), + [sym_en_dash] = ACTIONS(151), + [sym_backslash_escape] = ACTIONS(151), + [anon_sym_LT] = ACTIONS(153), + [sym_symbol] = ACTIONS(149), + [anon_sym_LBRACK_CARET] = ACTIONS(155), + [anon_sym_BANG_LBRACK] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LBRACE2] = ACTIONS(151), + [anon_sym_DOLLAR] = ACTIONS(161), + [anon_sym_TODO] = ACTIONS(163), + [anon_sym_WIP] = ACTIONS(163), + [anon_sym_NOTE] = ACTIONS(165), + [anon_sym_INFO] = ACTIONS(165), + [anon_sym_XXX] = ACTIONS(165), + [sym_fixme] = ACTIONS(149), + [sym__whitespace1] = ACTIONS(167), + [sym__newline] = ACTIONS(169), + [aux_sym__text_token1] = ACTIONS(171), + [sym__verbatim_begin] = ACTIONS(173), + }, + [82] = { + [sym__inline] = STATE(900), + [sym__element] = STATE(93), + [sym_emphasis] = STATE(197), + [sym_emphasis_begin] = STATE(1088), + [sym_strong] = STATE(197), + [sym_strong_begin] = STATE(1089), + [sym_superscript] = STATE(197), + [sym_superscript_begin] = STATE(1090), + [sym_subscript] = STATE(197), + [sym_subscript_begin] = STATE(1091), + [sym_highlighted] = STATE(197), + [sym_highlighted_begin] = STATE(1092), + [sym_insert] = STATE(197), + [sym_insert_begin] = STATE(1093), + [sym_delete] = STATE(197), + [sym_delete_begin] = STATE(1094), + [sym_hard_line_break] = STATE(197), + [sym__smart_punctuation] = STATE(197), + [sym_autolink] = STATE(197), + [sym_footnote_reference] = STATE(197), + [sym__image] = STATE(197), + [sym_full_reference_image] = STATE(197), + [sym_collapsed_reference_image] = STATE(197), + [sym_inline_image] = STATE(197), + [sym__image_description] = STATE(697), + [sym__link] = STATE(197), + [sym_full_reference_link] = STATE(197), + [sym_collapsed_reference_link] = STATE(197), + [sym_inline_link] = STATE(197), + [sym_link_text] = STATE(682), + [sym__comment_with_spaces] = STATE(197), + [sym_span] = STATE(197), + [sym_raw_inline] = STATE(197), + [sym_math] = STATE(197), + [sym_verbatim] = STATE(197), + [sym__todo_highlights] = STATE(197), + [sym_todo] = STATE(197), + [sym_note] = STATE(197), + [sym__symbol_fallback] = STATE(197), + [aux_sym__text] = STATE(134), + [aux_sym__inline_repeat1] = STATE(93), + [anon_sym_LBRACE_] = ACTIONS(313), + [anon_sym__] = ACTIONS(315), + [anon_sym_LBRACE_STAR] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_LBRACE_CARET] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [anon_sym_LBRACE_TILDE] = ACTIONS(323), + [anon_sym_TILDE] = ACTIONS(323), + [anon_sym_LBRACE_EQ] = ACTIONS(325), + [anon_sym_LBRACE_PLUS] = ACTIONS(327), + [anon_sym_LBRACE_DASH] = ACTIONS(329), + [anon_sym_BSLASH] = ACTIONS(331), + [sym_quotation_marks] = ACTIONS(333), + [sym_ellipsis] = ACTIONS(333), + [sym_em_dash] = ACTIONS(333), + [sym_en_dash] = ACTIONS(335), + [sym_backslash_escape] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(337), + [sym_symbol] = ACTIONS(333), + [anon_sym_LBRACK_CARET] = ACTIONS(339), + [anon_sym_BANG_LBRACK] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE2] = ACTIONS(335), + [anon_sym_DOLLAR] = ACTIONS(345), + [anon_sym_TODO] = ACTIONS(347), + [anon_sym_WIP] = ACTIONS(347), + [anon_sym_NOTE] = ACTIONS(349), + [anon_sym_INFO] = ACTIONS(349), + [anon_sym_XXX] = ACTIONS(349), + [sym_fixme] = ACTIONS(333), + [sym__whitespace1] = ACTIONS(351), + [sym__newline] = ACTIONS(353), + [aux_sym__text_token1] = ACTIONS(355), + [sym__verbatim_begin] = ACTIONS(357), + }, + [83] = { + [sym__inline] = STATE(901), + [sym__element] = STATE(79), + [sym_emphasis] = STATE(161), + [sym_emphasis_begin] = STATE(1081), + [sym_strong] = STATE(161), + [sym_strong_begin] = STATE(1082), + [sym_superscript] = STATE(161), + [sym_superscript_begin] = STATE(1083), + [sym_subscript] = STATE(161), + [sym_subscript_begin] = STATE(1084), + [sym_highlighted] = STATE(161), + [sym_highlighted_begin] = STATE(1085), + [sym_insert] = STATE(161), + [sym_insert_begin] = STATE(1086), + [sym_delete] = STATE(161), + [sym_delete_begin] = STATE(1087), + [sym_hard_line_break] = STATE(161), + [sym__smart_punctuation] = STATE(161), + [sym_autolink] = STATE(161), + [sym_footnote_reference] = STATE(161), + [sym__image] = STATE(161), + [sym_full_reference_image] = STATE(161), + [sym_collapsed_reference_image] = STATE(161), + [sym_inline_image] = STATE(161), + [sym__image_description] = STATE(692), + [sym__link] = STATE(161), + [sym_full_reference_link] = STATE(161), + [sym_collapsed_reference_link] = STATE(161), + [sym_inline_link] = STATE(161), + [sym_link_text] = STATE(687), + [sym__comment_with_spaces] = STATE(161), + [sym_span] = STATE(161), + [sym_raw_inline] = STATE(161), + [sym_math] = STATE(161), + [sym_verbatim] = STATE(161), + [sym__todo_highlights] = STATE(161), + [sym_todo] = STATE(161), + [sym_note] = STATE(161), + [sym__symbol_fallback] = STATE(161), + [aux_sym__text] = STATE(149), + [aux_sym__inline_repeat1] = STATE(79), + [anon_sym_LBRACE_] = ACTIONS(359), + [anon_sym__] = ACTIONS(361), + [anon_sym_LBRACE_STAR] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(365), + [anon_sym_LBRACE_CARET] = ACTIONS(367), + [anon_sym_CARET] = ACTIONS(367), + [anon_sym_LBRACE_TILDE] = ACTIONS(369), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_LBRACE_EQ] = ACTIONS(371), + [anon_sym_LBRACE_PLUS] = ACTIONS(373), + [anon_sym_LBRACE_DASH] = ACTIONS(375), + [anon_sym_BSLASH] = ACTIONS(377), + [sym_quotation_marks] = ACTIONS(379), + [sym_ellipsis] = ACTIONS(379), + [sym_em_dash] = ACTIONS(379), + [sym_en_dash] = ACTIONS(381), + [sym_backslash_escape] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(383), + [sym_symbol] = ACTIONS(379), + [anon_sym_LBRACK_CARET] = ACTIONS(385), + [anon_sym_BANG_LBRACK] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE2] = ACTIONS(381), + [anon_sym_DOLLAR] = ACTIONS(391), + [anon_sym_TODO] = ACTIONS(393), + [anon_sym_WIP] = ACTIONS(393), + [anon_sym_NOTE] = ACTIONS(395), + [anon_sym_INFO] = ACTIONS(395), + [anon_sym_XXX] = ACTIONS(395), + [sym_fixme] = ACTIONS(379), + [sym__whitespace1] = ACTIONS(397), + [sym__newline] = ACTIONS(399), + [aux_sym__text_token1] = ACTIONS(401), + [sym__verbatim_begin] = ACTIONS(403), + }, + [84] = { + [sym__inline_without_trailing_space] = STATE(902), + [sym__element] = STATE(572), + [sym_emphasis] = STATE(208), + [sym_emphasis_begin] = STATE(1074), + [sym_strong] = STATE(208), + [sym_strong_begin] = STATE(1075), + [sym_superscript] = STATE(208), + [sym_superscript_begin] = STATE(1076), + [sym_subscript] = STATE(208), + [sym_subscript_begin] = STATE(1077), + [sym_highlighted] = STATE(208), + [sym_highlighted_begin] = STATE(1078), + [sym_insert] = STATE(208), + [sym_insert_begin] = STATE(1079), + [sym_delete] = STATE(208), + [sym_delete_begin] = STATE(1080), + [sym_hard_line_break] = STATE(208), + [sym__smart_punctuation] = STATE(208), + [sym_autolink] = STATE(208), + [sym_footnote_reference] = STATE(208), + [sym__image] = STATE(208), + [sym_full_reference_image] = STATE(208), + [sym_collapsed_reference_image] = STATE(208), + [sym_inline_image] = STATE(208), + [sym__image_description] = STATE(680), + [sym__link] = STATE(208), + [sym_full_reference_link] = STATE(208), + [sym_collapsed_reference_link] = STATE(208), + [sym_inline_link] = STATE(208), + [sym_link_text] = STATE(663), + [sym__comment_with_spaces] = STATE(208), + [sym_span] = STATE(208), + [sym_raw_inline] = STATE(208), + [sym_math] = STATE(208), + [sym_verbatim] = STATE(208), + [sym__todo_highlights] = STATE(208), + [sym_todo] = STATE(208), + [sym_note] = STATE(208), + [sym__symbol_fallback] = STATE(208), + [aux_sym__text] = STATE(131), + [aux_sym__inline_repeat1] = STATE(130), + [anon_sym_LBRACE_] = ACTIONS(175), + [anon_sym__] = ACTIONS(177), + [anon_sym_LBRACE_STAR] = ACTIONS(179), + [anon_sym_STAR] = ACTIONS(181), + [anon_sym_LBRACE_CARET] = ACTIONS(183), + [anon_sym_CARET] = ACTIONS(183), + [anon_sym_LBRACE_TILDE] = ACTIONS(185), + [anon_sym_TILDE] = ACTIONS(185), + [anon_sym_LBRACE_EQ] = ACTIONS(187), + [anon_sym_LBRACE_PLUS] = ACTIONS(189), + [anon_sym_LBRACE_DASH] = ACTIONS(191), + [anon_sym_BSLASH] = ACTIONS(193), + [sym_quotation_marks] = ACTIONS(195), + [sym_ellipsis] = ACTIONS(195), + [sym_em_dash] = ACTIONS(195), + [sym_en_dash] = ACTIONS(197), + [sym_backslash_escape] = ACTIONS(197), + [anon_sym_LT] = ACTIONS(199), + [sym_symbol] = ACTIONS(195), + [anon_sym_LBRACK_CARET] = ACTIONS(201), + [anon_sym_BANG_LBRACK] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACE2] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(207), + [anon_sym_TODO] = ACTIONS(209), + [anon_sym_WIP] = ACTIONS(209), + [anon_sym_NOTE] = ACTIONS(211), + [anon_sym_INFO] = ACTIONS(211), + [anon_sym_XXX] = ACTIONS(211), + [sym_fixme] = ACTIONS(195), + [sym__whitespace1] = ACTIONS(213), + [sym__newline] = ACTIONS(215), + [aux_sym__text_token1] = ACTIONS(217), + [sym__verbatim_begin] = ACTIONS(219), }, [85] = { - [sym__inline] = STATE(863), - [sym__element] = STATE(95), - [sym_emphasis] = STATE(191), - [sym_emphasis_begin] = STATE(1008), - [sym_strong] = STATE(191), - [sym_strong_begin] = STATE(90), - [sym__hard_line_break] = STATE(191), - [sym_hard_line_break] = STATE(191), - [sym__smart_punctuation] = STATE(191), - [sym_autolink] = STATE(191), - [sym_highlighted] = STATE(191), - [sym_insert] = STATE(191), - [sym_delete] = STATE(191), - [sym_superscript] = STATE(191), - [sym_subscript] = STATE(191), - [sym_footnote_reference] = STATE(191), - [sym__image] = STATE(191), - [sym_full_reference_image] = STATE(191), - [sym_collapsed_reference_image] = STATE(191), - [sym_inline_image] = STATE(191), - [sym__image_description] = STATE(699), - [sym__link] = STATE(191), - [sym_full_reference_link] = STATE(191), - [sym_collapsed_reference_link] = STATE(191), - [sym_inline_link] = STATE(191), - [sym_link_text] = STATE(698), - [sym__comment_with_spaces] = STATE(191), - [sym_span] = STATE(191), - [sym_raw_inline] = STATE(191), - [sym_math] = STATE(191), - [sym_verbatim] = STATE(191), - [sym__todo_highlights] = STATE(191), - [sym_todo] = STATE(191), - [sym_note] = STATE(191), - [sym__symbol_fallback] = STATE(191), - [aux_sym__text] = STATE(137), - [aux_sym__inline_repeat1] = STATE(95), - [anon_sym_LBRACE_] = ACTIONS(592), - [anon_sym__] = ACTIONS(594), - [anon_sym_LBRACE_STAR] = ACTIONS(596), - [anon_sym_STAR] = ACTIONS(598), - [anon_sym_BSLASH] = ACTIONS(600), - [sym_quotation_marks] = ACTIONS(602), - [sym_ellipsis] = ACTIONS(602), - [sym_em_dash] = ACTIONS(602), - [sym_en_dash] = ACTIONS(604), - [sym_backslash_escape] = ACTIONS(604), - [anon_sym_LT] = ACTIONS(606), - [anon_sym_LBRACE_EQ] = ACTIONS(608), - [anon_sym_LBRACE_PLUS] = ACTIONS(610), - [anon_sym_LBRACE_DASH] = ACTIONS(612), - [sym_symbol] = ACTIONS(602), - [anon_sym_LBRACE_CARET] = ACTIONS(614), - [anon_sym_CARET] = ACTIONS(614), - [anon_sym_LBRACE_TILDE] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(616), - [anon_sym_LBRACK_CARET] = ACTIONS(618), - [anon_sym_BANG_LBRACK] = ACTIONS(620), - [anon_sym_LBRACK] = ACTIONS(622), - [anon_sym_LBRACE2] = ACTIONS(604), - [anon_sym_DOLLAR] = ACTIONS(624), - [anon_sym_TODO] = ACTIONS(626), - [anon_sym_WIP] = ACTIONS(626), - [anon_sym_NOTE] = ACTIONS(628), - [anon_sym_INFO] = ACTIONS(628), - [anon_sym_XXX] = ACTIONS(628), - [sym_fixme] = ACTIONS(602), - [anon_sym_PIPE] = ACTIONS(602), - [sym__whitespace1] = ACTIONS(630), - [sym__newline] = ACTIONS(632), - [aux_sym__text_token1] = ACTIONS(634), - [sym__verbatim_begin] = ACTIONS(636), + [sym__inline_without_trailing_space] = STATE(903), + [sym__element] = STATE(603), + [sym_emphasis] = STATE(177), + [sym_emphasis_begin] = STATE(1067), + [sym_strong] = STATE(177), + [sym_strong_begin] = STATE(1068), + [sym_superscript] = STATE(177), + [sym_superscript_begin] = STATE(1069), + [sym_subscript] = STATE(177), + [sym_subscript_begin] = STATE(1070), + [sym_highlighted] = STATE(177), + [sym_highlighted_begin] = STATE(1071), + [sym_insert] = STATE(177), + [sym_insert_begin] = STATE(1072), + [sym_delete] = STATE(177), + [sym_delete_begin] = STATE(1073), + [sym_hard_line_break] = STATE(177), + [sym__smart_punctuation] = STATE(177), + [sym_autolink] = STATE(177), + [sym_footnote_reference] = STATE(177), + [sym__image] = STATE(177), + [sym_full_reference_image] = STATE(177), + [sym_collapsed_reference_image] = STATE(177), + [sym_inline_image] = STATE(177), + [sym__image_description] = STATE(681), + [sym__link] = STATE(177), + [sym_full_reference_link] = STATE(177), + [sym_collapsed_reference_link] = STATE(177), + [sym_inline_link] = STATE(177), + [sym_link_text] = STATE(668), + [sym__comment_with_spaces] = STATE(177), + [sym_span] = STATE(177), + [sym_raw_inline] = STATE(177), + [sym_math] = STATE(177), + [sym_verbatim] = STATE(177), + [sym__todo_highlights] = STATE(177), + [sym_todo] = STATE(177), + [sym_note] = STATE(177), + [sym__symbol_fallback] = STATE(177), + [aux_sym__text] = STATE(132), + [aux_sym__inline_repeat1] = STATE(128), + [anon_sym_LBRACE_] = ACTIONS(405), + [anon_sym__] = ACTIONS(407), + [anon_sym_LBRACE_STAR] = ACTIONS(409), + [anon_sym_STAR] = ACTIONS(411), + [anon_sym_LBRACE_CARET] = ACTIONS(413), + [anon_sym_CARET] = ACTIONS(413), + [anon_sym_LBRACE_TILDE] = ACTIONS(415), + [anon_sym_TILDE] = ACTIONS(415), + [anon_sym_LBRACE_EQ] = ACTIONS(417), + [anon_sym_LBRACE_PLUS] = ACTIONS(419), + [anon_sym_LBRACE_DASH] = ACTIONS(421), + [anon_sym_BSLASH] = ACTIONS(423), + [sym_quotation_marks] = ACTIONS(425), + [sym_ellipsis] = ACTIONS(425), + [sym_em_dash] = ACTIONS(425), + [sym_en_dash] = ACTIONS(427), + [sym_backslash_escape] = ACTIONS(427), + [anon_sym_LT] = ACTIONS(429), + [sym_symbol] = ACTIONS(425), + [anon_sym_LBRACK_CARET] = ACTIONS(431), + [anon_sym_BANG_LBRACK] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LBRACE2] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(437), + [anon_sym_TODO] = ACTIONS(439), + [anon_sym_WIP] = ACTIONS(439), + [anon_sym_NOTE] = ACTIONS(441), + [anon_sym_INFO] = ACTIONS(441), + [anon_sym_XXX] = ACTIONS(441), + [sym_fixme] = ACTIONS(425), + [sym__whitespace1] = ACTIONS(443), + [sym__newline] = ACTIONS(445), + [aux_sym__text_token1] = ACTIONS(447), + [sym__verbatim_begin] = ACTIONS(449), }, [86] = { - [sym__element] = STATE(86), - [sym_emphasis] = STATE(209), - [sym_emphasis_begin] = STATE(1002), - [sym_strong] = STATE(209), - [sym_strong_begin] = STATE(121), - [sym__hard_line_break] = STATE(209), - [sym_hard_line_break] = STATE(209), - [sym__smart_punctuation] = STATE(209), - [sym_autolink] = STATE(209), - [sym_highlighted] = STATE(209), - [sym_insert] = STATE(209), - [sym_delete] = STATE(209), - [sym_superscript] = STATE(209), - [sym_subscript] = STATE(209), - [sym_footnote_reference] = STATE(209), - [sym__image] = STATE(209), - [sym_full_reference_image] = STATE(209), - [sym_collapsed_reference_image] = STATE(209), - [sym_inline_image] = STATE(209), - [sym__image_description] = STATE(706), - [sym__link] = STATE(209), - [sym_full_reference_link] = STATE(209), - [sym_collapsed_reference_link] = STATE(209), - [sym_inline_link] = STATE(209), - [sym_link_text] = STATE(707), - [sym__comment_with_spaces] = STATE(209), - [sym_span] = STATE(209), - [sym_raw_inline] = STATE(209), - [sym_math] = STATE(209), - [sym_verbatim] = STATE(209), - [sym__todo_highlights] = STATE(209), - [sym_todo] = STATE(209), - [sym_note] = STATE(209), - [sym__symbol_fallback] = STATE(209), - [aux_sym__text] = STATE(150), - [aux_sym__inline_repeat1] = STATE(86), - [anon_sym_LBRACE_] = ACTIONS(827), - [anon_sym__] = ACTIONS(830), - [anon_sym_LBRACE_STAR] = ACTIONS(833), - [anon_sym_STAR] = ACTIONS(836), - [anon_sym_BSLASH] = ACTIONS(839), - [sym_quotation_marks] = ACTIONS(842), - [sym_ellipsis] = ACTIONS(842), - [sym_em_dash] = ACTIONS(842), - [sym_en_dash] = ACTIONS(845), - [sym_backslash_escape] = ACTIONS(845), - [anon_sym_LT] = ACTIONS(848), - [anon_sym_LBRACE_EQ] = ACTIONS(851), - [anon_sym_LBRACE_PLUS] = ACTIONS(854), - [anon_sym_LBRACE_DASH] = ACTIONS(857), - [anon_sym_DASH_RBRACE] = ACTIONS(680), - [sym_symbol] = ACTIONS(842), - [anon_sym_LBRACE_CARET] = ACTIONS(860), - [anon_sym_CARET] = ACTIONS(860), - [anon_sym_LBRACE_TILDE] = ACTIONS(863), - [anon_sym_TILDE] = ACTIONS(863), - [anon_sym_LBRACK_CARET] = ACTIONS(866), - [anon_sym_BANG_LBRACK] = ACTIONS(869), - [anon_sym_LBRACK] = ACTIONS(872), - [anon_sym_LBRACE2] = ACTIONS(845), - [anon_sym_DOLLAR] = ACTIONS(875), - [anon_sym_TODO] = ACTIONS(878), - [anon_sym_WIP] = ACTIONS(878), - [anon_sym_NOTE] = ACTIONS(881), - [anon_sym_INFO] = ACTIONS(881), - [anon_sym_XXX] = ACTIONS(881), - [sym_fixme] = ACTIONS(842), - [anon_sym_PIPE] = ACTIONS(842), - [sym__whitespace1] = ACTIONS(884), - [sym__newline] = ACTIONS(887), - [aux_sym__text_token1] = ACTIONS(890), - [sym__verbatim_begin] = ACTIONS(893), + [sym__inline] = STATE(1028), + [sym__element] = STATE(115), + [sym_emphasis] = STATE(192), + [sym_emphasis_begin] = STATE(1095), + [sym_strong] = STATE(192), + [sym_strong_begin] = STATE(1096), + [sym_superscript] = STATE(192), + [sym_superscript_begin] = STATE(1097), + [sym_subscript] = STATE(192), + [sym_subscript_begin] = STATE(1098), + [sym_highlighted] = STATE(192), + [sym_highlighted_begin] = STATE(1099), + [sym_insert] = STATE(192), + [sym_insert_begin] = STATE(1100), + [sym_delete] = STATE(192), + [sym_delete_begin] = STATE(1101), + [sym_hard_line_break] = STATE(192), + [sym__smart_punctuation] = STATE(192), + [sym_autolink] = STATE(192), + [sym_footnote_reference] = STATE(192), + [sym__image] = STATE(192), + [sym_full_reference_image] = STATE(192), + [sym_collapsed_reference_image] = STATE(192), + [sym_inline_image] = STATE(192), + [sym__image_description] = STATE(684), + [sym__link] = STATE(192), + [sym_full_reference_link] = STATE(192), + [sym_collapsed_reference_link] = STATE(192), + [sym_inline_link] = STATE(192), + [sym_link_text] = STATE(683), + [sym__comment_with_spaces] = STATE(192), + [sym_span] = STATE(192), + [sym_raw_inline] = STATE(192), + [sym_math] = STATE(192), + [sym_verbatim] = STATE(192), + [sym__todo_highlights] = STATE(192), + [sym_todo] = STATE(192), + [sym_note] = STATE(192), + [sym__symbol_fallback] = STATE(192), + [aux_sym__text] = STATE(141), + [aux_sym__inline_repeat1] = STATE(115), + [anon_sym_LBRACE_] = ACTIONS(129), + [anon_sym__] = ACTIONS(131), + [anon_sym_LBRACE_STAR] = ACTIONS(133), + [anon_sym_STAR] = ACTIONS(135), + [anon_sym_LBRACE_CARET] = ACTIONS(137), + [anon_sym_CARET] = ACTIONS(137), + [anon_sym_LBRACE_TILDE] = ACTIONS(139), + [anon_sym_TILDE] = ACTIONS(139), + [anon_sym_LBRACE_EQ] = ACTIONS(141), + [anon_sym_LBRACE_PLUS] = ACTIONS(143), + [anon_sym_LBRACE_DASH] = ACTIONS(145), + [anon_sym_BSLASH] = ACTIONS(147), + [sym_quotation_marks] = ACTIONS(149), + [sym_ellipsis] = ACTIONS(149), + [sym_em_dash] = ACTIONS(149), + [sym_en_dash] = ACTIONS(151), + [sym_backslash_escape] = ACTIONS(151), + [anon_sym_LT] = ACTIONS(153), + [sym_symbol] = ACTIONS(149), + [anon_sym_LBRACK_CARET] = ACTIONS(155), + [anon_sym_BANG_LBRACK] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LBRACE2] = ACTIONS(151), + [anon_sym_DOLLAR] = ACTIONS(161), + [anon_sym_TODO] = ACTIONS(163), + [anon_sym_WIP] = ACTIONS(163), + [anon_sym_NOTE] = ACTIONS(165), + [anon_sym_INFO] = ACTIONS(165), + [anon_sym_XXX] = ACTIONS(165), + [sym_fixme] = ACTIONS(149), + [sym__whitespace1] = ACTIONS(167), + [sym__newline] = ACTIONS(169), + [aux_sym__text_token1] = ACTIONS(171), + [sym__verbatim_begin] = ACTIONS(173), }, [87] = { - [sym__element] = STATE(87), - [sym_emphasis] = STATE(174), - [sym_emphasis_begin] = STATE(1001), - [sym_strong] = STATE(174), - [sym_strong_begin] = STATE(126), - [sym__hard_line_break] = STATE(174), - [sym_hard_line_break] = STATE(174), - [sym__smart_punctuation] = STATE(174), - [sym_autolink] = STATE(174), - [sym_highlighted] = STATE(174), - [sym_insert] = STATE(174), - [sym_delete] = STATE(174), - [sym_superscript] = STATE(174), - [sym_subscript] = STATE(174), - [sym_footnote_reference] = STATE(174), - [sym__image] = STATE(174), - [sym_full_reference_image] = STATE(174), - [sym_collapsed_reference_image] = STATE(174), - [sym_inline_image] = STATE(174), - [sym__image_description] = STATE(709), - [sym__link] = STATE(174), - [sym_full_reference_link] = STATE(174), - [sym_collapsed_reference_link] = STATE(174), - [sym_inline_link] = STATE(174), - [sym_link_text] = STATE(710), - [sym__comment_with_spaces] = STATE(174), - [sym_span] = STATE(174), - [sym_raw_inline] = STATE(174), - [sym_math] = STATE(174), - [sym_verbatim] = STATE(174), - [sym__todo_highlights] = STATE(174), - [sym_todo] = STATE(174), - [sym_note] = STATE(174), - [sym__symbol_fallback] = STATE(174), - [aux_sym__text] = STATE(148), - [aux_sym__inline_repeat1] = STATE(87), - [anon_sym_LBRACE_] = ACTIONS(896), - [anon_sym__] = ACTIONS(899), - [anon_sym_LBRACE_STAR] = ACTIONS(902), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_BSLASH] = ACTIONS(908), - [sym_quotation_marks] = ACTIONS(911), - [sym_ellipsis] = ACTIONS(911), - [sym_em_dash] = ACTIONS(911), - [sym_en_dash] = ACTIONS(914), - [sym_backslash_escape] = ACTIONS(914), - [anon_sym_LT] = ACTIONS(917), - [anon_sym_LBRACE_EQ] = ACTIONS(920), - [anon_sym_LBRACE_PLUS] = ACTIONS(923), - [anon_sym_PLUS_RBRACE] = ACTIONS(680), - [anon_sym_LBRACE_DASH] = ACTIONS(926), - [sym_symbol] = ACTIONS(911), - [anon_sym_LBRACE_CARET] = ACTIONS(929), - [anon_sym_CARET] = ACTIONS(929), - [anon_sym_LBRACE_TILDE] = ACTIONS(932), - [anon_sym_TILDE] = ACTIONS(932), - [anon_sym_LBRACK_CARET] = ACTIONS(935), - [anon_sym_BANG_LBRACK] = ACTIONS(938), - [anon_sym_LBRACK] = ACTIONS(941), - [anon_sym_LBRACE2] = ACTIONS(914), - [anon_sym_DOLLAR] = ACTIONS(944), - [anon_sym_TODO] = ACTIONS(947), - [anon_sym_WIP] = ACTIONS(947), - [anon_sym_NOTE] = ACTIONS(950), - [anon_sym_INFO] = ACTIONS(950), - [anon_sym_XXX] = ACTIONS(950), - [sym_fixme] = ACTIONS(911), - [anon_sym_PIPE] = ACTIONS(911), - [sym__whitespace1] = ACTIONS(953), - [sym__newline] = ACTIONS(956), - [aux_sym__text_token1] = ACTIONS(959), - [sym__verbatim_begin] = ACTIONS(962), + [sym__inline] = STATE(912), + [sym__element] = STATE(66), + [sym_emphasis] = STATE(171), + [sym_emphasis_begin] = STATE(1116), + [sym_strong] = STATE(171), + [sym_strong_begin] = STATE(1117), + [sym_superscript] = STATE(171), + [sym_superscript_begin] = STATE(1118), + [sym_subscript] = STATE(171), + [sym_subscript_begin] = STATE(1119), + [sym_highlighted] = STATE(171), + [sym_highlighted_begin] = STATE(1120), + [sym_insert] = STATE(171), + [sym_insert_begin] = STATE(1121), + [sym_delete] = STATE(171), + [sym_delete_begin] = STATE(1122), + [sym_hard_line_break] = STATE(171), + [sym__smart_punctuation] = STATE(171), + [sym_autolink] = STATE(171), + [sym_footnote_reference] = STATE(171), + [sym__image] = STATE(171), + [sym_full_reference_image] = STATE(171), + [sym_collapsed_reference_image] = STATE(171), + [sym_inline_image] = STATE(171), + [sym__image_description] = STATE(674), + [sym__link] = STATE(171), + [sym_full_reference_link] = STATE(171), + [sym_collapsed_reference_link] = STATE(171), + [sym_inline_link] = STATE(171), + [sym_link_text] = STATE(675), + [sym__comment_with_spaces] = STATE(171), + [sym_span] = STATE(171), + [sym_raw_inline] = STATE(171), + [sym_math] = STATE(171), + [sym_verbatim] = STATE(171), + [sym__todo_highlights] = STATE(171), + [sym_todo] = STATE(171), + [sym_note] = STATE(171), + [sym__symbol_fallback] = STATE(171), + [aux_sym__text] = STATE(146), + [aux_sym__inline_repeat1] = STATE(66), + [anon_sym_LBRACE_] = ACTIONS(451), + [anon_sym__] = ACTIONS(453), + [anon_sym_LBRACE_STAR] = ACTIONS(455), + [anon_sym_STAR] = ACTIONS(457), + [anon_sym_LBRACE_CARET] = ACTIONS(459), + [anon_sym_CARET] = ACTIONS(459), + [anon_sym_LBRACE_TILDE] = ACTIONS(461), + [anon_sym_TILDE] = ACTIONS(461), + [anon_sym_LBRACE_EQ] = ACTIONS(463), + [anon_sym_LBRACE_PLUS] = ACTIONS(465), + [anon_sym_LBRACE_DASH] = ACTIONS(467), + [anon_sym_BSLASH] = ACTIONS(469), + [sym_quotation_marks] = ACTIONS(471), + [sym_ellipsis] = ACTIONS(471), + [sym_em_dash] = ACTIONS(471), + [sym_en_dash] = ACTIONS(473), + [sym_backslash_escape] = ACTIONS(473), + [anon_sym_LT] = ACTIONS(475), + [sym_symbol] = ACTIONS(471), + [anon_sym_LBRACK_CARET] = ACTIONS(477), + [anon_sym_BANG_LBRACK] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(481), + [anon_sym_LBRACE2] = ACTIONS(473), + [anon_sym_DOLLAR] = ACTIONS(483), + [anon_sym_TODO] = ACTIONS(485), + [anon_sym_WIP] = ACTIONS(485), + [anon_sym_NOTE] = ACTIONS(487), + [anon_sym_INFO] = ACTIONS(487), + [anon_sym_XXX] = ACTIONS(487), + [sym_fixme] = ACTIONS(471), + [sym__whitespace1] = ACTIONS(489), + [sym__newline] = ACTIONS(491), + [aux_sym__text_token1] = ACTIONS(493), + [sym__verbatim_begin] = ACTIONS(495), }, [88] = { - [sym__element] = STATE(86), - [sym_emphasis] = STATE(209), - [sym_emphasis_begin] = STATE(1002), - [sym_strong] = STATE(209), - [sym_strong_begin] = STATE(121), - [sym__hard_line_break] = STATE(209), - [sym_hard_line_break] = STATE(209), - [sym__smart_punctuation] = STATE(209), - [sym_autolink] = STATE(209), - [sym_highlighted] = STATE(209), - [sym_insert] = STATE(209), - [sym_delete] = STATE(209), - [sym_superscript] = STATE(209), - [sym_subscript] = STATE(209), - [sym_footnote_reference] = STATE(209), - [sym__image] = STATE(209), - [sym_full_reference_image] = STATE(209), - [sym_collapsed_reference_image] = STATE(209), - [sym_inline_image] = STATE(209), - [sym__image_description] = STATE(706), - [sym__link] = STATE(209), - [sym_full_reference_link] = STATE(209), - [sym_collapsed_reference_link] = STATE(209), - [sym_inline_link] = STATE(209), - [sym_link_text] = STATE(707), - [sym__comment_with_spaces] = STATE(209), - [sym_span] = STATE(209), - [sym_raw_inline] = STATE(209), - [sym_math] = STATE(209), - [sym_verbatim] = STATE(209), - [sym__todo_highlights] = STATE(209), - [sym_todo] = STATE(209), - [sym_note] = STATE(209), - [sym__symbol_fallback] = STATE(209), - [aux_sym__text] = STATE(150), - [aux_sym__inline_repeat1] = STATE(86), - [anon_sym_LBRACE_] = ACTIONS(965), - [anon_sym__] = ACTIONS(967), - [anon_sym_LBRACE_STAR] = ACTIONS(969), - [anon_sym_STAR] = ACTIONS(971), - [anon_sym_BSLASH] = ACTIONS(973), - [sym_quotation_marks] = ACTIONS(975), - [sym_ellipsis] = ACTIONS(975), - [sym_em_dash] = ACTIONS(975), - [sym_en_dash] = ACTIONS(977), - [sym_backslash_escape] = ACTIONS(977), - [anon_sym_LT] = ACTIONS(979), - [anon_sym_LBRACE_EQ] = ACTIONS(981), - [anon_sym_LBRACE_PLUS] = ACTIONS(983), - [anon_sym_LBRACE_DASH] = ACTIONS(985), - [anon_sym_DASH_RBRACE] = ACTIONS(987), - [sym_symbol] = ACTIONS(975), - [anon_sym_LBRACE_CARET] = ACTIONS(989), - [anon_sym_CARET] = ACTIONS(989), - [anon_sym_LBRACE_TILDE] = ACTIONS(991), - [anon_sym_TILDE] = ACTIONS(991), - [anon_sym_LBRACK_CARET] = ACTIONS(993), - [anon_sym_BANG_LBRACK] = ACTIONS(995), - [anon_sym_LBRACK] = ACTIONS(997), - [anon_sym_LBRACE2] = ACTIONS(977), - [anon_sym_DOLLAR] = ACTIONS(999), - [anon_sym_TODO] = ACTIONS(1001), - [anon_sym_WIP] = ACTIONS(1001), - [anon_sym_NOTE] = ACTIONS(1003), - [anon_sym_INFO] = ACTIONS(1003), - [anon_sym_XXX] = ACTIONS(1003), - [sym_fixme] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(975), - [sym__whitespace1] = ACTIONS(1005), - [sym__newline] = ACTIONS(1007), - [aux_sym__text_token1] = ACTIONS(1009), - [sym__verbatim_begin] = ACTIONS(1011), + [sym__inline] = STATE(913), + [sym__element] = STATE(103), + [sym_emphasis] = STATE(180), + [sym_emphasis_begin] = STATE(1109), + [sym_strong] = STATE(180), + [sym_strong_begin] = STATE(1110), + [sym_superscript] = STATE(180), + [sym_superscript_begin] = STATE(1111), + [sym_subscript] = STATE(180), + [sym_subscript_begin] = STATE(1112), + [sym_highlighted] = STATE(180), + [sym_highlighted_begin] = STATE(1113), + [sym_insert] = STATE(180), + [sym_insert_begin] = STATE(1114), + [sym_delete] = STATE(180), + [sym_delete_begin] = STATE(1115), + [sym_hard_line_break] = STATE(180), + [sym__smart_punctuation] = STATE(180), + [sym_autolink] = STATE(180), + [sym_footnote_reference] = STATE(180), + [sym__image] = STATE(180), + [sym_full_reference_image] = STATE(180), + [sym_collapsed_reference_image] = STATE(180), + [sym_inline_image] = STATE(180), + [sym__image_description] = STATE(666), + [sym__link] = STATE(180), + [sym_full_reference_link] = STATE(180), + [sym_collapsed_reference_link] = STATE(180), + [sym_inline_link] = STATE(180), + [sym_link_text] = STATE(664), + [sym__comment_with_spaces] = STATE(180), + [sym_span] = STATE(180), + [sym_raw_inline] = STATE(180), + [sym_math] = STATE(180), + [sym_verbatim] = STATE(180), + [sym__todo_highlights] = STATE(180), + [sym_todo] = STATE(180), + [sym_note] = STATE(180), + [sym__symbol_fallback] = STATE(180), + [aux_sym__text] = STATE(159), + [aux_sym__inline_repeat1] = STATE(103), + [anon_sym_LBRACE_] = ACTIONS(221), + [anon_sym__] = ACTIONS(223), + [anon_sym_LBRACE_STAR] = ACTIONS(225), + [anon_sym_STAR] = ACTIONS(227), + [anon_sym_LBRACE_CARET] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym_LBRACE_TILDE] = ACTIONS(231), + [anon_sym_TILDE] = ACTIONS(231), + [anon_sym_LBRACE_EQ] = ACTIONS(233), + [anon_sym_LBRACE_PLUS] = ACTIONS(235), + [anon_sym_LBRACE_DASH] = ACTIONS(237), + [anon_sym_BSLASH] = ACTIONS(239), + [sym_quotation_marks] = ACTIONS(241), + [sym_ellipsis] = ACTIONS(241), + [sym_em_dash] = ACTIONS(241), + [sym_en_dash] = ACTIONS(243), + [sym_backslash_escape] = ACTIONS(243), + [anon_sym_LT] = ACTIONS(245), + [sym_symbol] = ACTIONS(241), + [anon_sym_LBRACK_CARET] = ACTIONS(247), + [anon_sym_BANG_LBRACK] = ACTIONS(249), + [anon_sym_LBRACK] = ACTIONS(251), + [anon_sym_LBRACE2] = ACTIONS(243), + [anon_sym_DOLLAR] = ACTIONS(253), + [anon_sym_TODO] = ACTIONS(255), + [anon_sym_WIP] = ACTIONS(255), + [anon_sym_NOTE] = ACTIONS(257), + [anon_sym_INFO] = ACTIONS(257), + [anon_sym_XXX] = ACTIONS(257), + [sym_fixme] = ACTIONS(241), + [sym__whitespace1] = ACTIONS(259), + [sym__newline] = ACTIONS(261), + [aux_sym__text_token1] = ACTIONS(263), + [sym__verbatim_begin] = ACTIONS(265), }, [89] = { - [sym__inline_without_trailing_space] = STATE(862), - [sym__element] = STATE(582), - [sym_emphasis] = STATE(176), - [sym_emphasis_begin] = STATE(1007), - [sym_strong] = STATE(176), - [sym_strong_begin] = STATE(94), - [sym__hard_line_break] = STATE(176), - [sym_hard_line_break] = STATE(176), - [sym__smart_punctuation] = STATE(176), - [sym_autolink] = STATE(176), - [sym_highlighted] = STATE(176), - [sym_insert] = STATE(176), - [sym_delete] = STATE(176), - [sym_superscript] = STATE(176), - [sym_subscript] = STATE(176), - [sym_footnote_reference] = STATE(176), - [sym__image] = STATE(176), - [sym_full_reference_image] = STATE(176), - [sym_collapsed_reference_image] = STATE(176), - [sym_inline_image] = STATE(176), - [sym__image_description] = STATE(685), - [sym__link] = STATE(176), - [sym_full_reference_link] = STATE(176), - [sym_collapsed_reference_link] = STATE(176), - [sym_inline_link] = STATE(176), - [sym_link_text] = STATE(704), - [sym__comment_with_spaces] = STATE(176), - [sym_span] = STATE(176), - [sym_raw_inline] = STATE(176), - [sym_math] = STATE(176), - [sym_verbatim] = STATE(176), - [sym__todo_highlights] = STATE(176), - [sym_todo] = STATE(176), - [sym_note] = STATE(176), - [sym__symbol_fallback] = STATE(176), - [aux_sym__text] = STATE(161), - [aux_sym__inline_repeat1] = STATE(131), - [anon_sym_LBRACE_] = ACTIONS(781), - [anon_sym__] = ACTIONS(783), - [anon_sym_LBRACE_STAR] = ACTIONS(785), - [anon_sym_STAR] = ACTIONS(787), - [anon_sym_BSLASH] = ACTIONS(789), - [sym_quotation_marks] = ACTIONS(791), - [sym_ellipsis] = ACTIONS(791), - [sym_em_dash] = ACTIONS(791), - [sym_en_dash] = ACTIONS(793), - [sym_backslash_escape] = ACTIONS(793), - [anon_sym_LT] = ACTIONS(795), - [anon_sym_LBRACE_EQ] = ACTIONS(797), - [anon_sym_LBRACE_PLUS] = ACTIONS(799), - [anon_sym_LBRACE_DASH] = ACTIONS(801), - [sym_symbol] = ACTIONS(791), - [anon_sym_LBRACE_CARET] = ACTIONS(803), - [anon_sym_CARET] = ACTIONS(803), - [anon_sym_LBRACE_TILDE] = ACTIONS(805), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_LBRACK_CARET] = ACTIONS(807), - [anon_sym_BANG_LBRACK] = ACTIONS(809), - [anon_sym_LBRACK] = ACTIONS(811), - [anon_sym_LBRACE2] = ACTIONS(793), - [anon_sym_DOLLAR] = ACTIONS(813), - [anon_sym_TODO] = ACTIONS(815), - [anon_sym_WIP] = ACTIONS(815), - [anon_sym_NOTE] = ACTIONS(817), - [anon_sym_INFO] = ACTIONS(817), - [anon_sym_XXX] = ACTIONS(817), - [sym_fixme] = ACTIONS(791), - [anon_sym_PIPE] = ACTIONS(791), - [sym__whitespace1] = ACTIONS(819), - [sym__newline] = ACTIONS(821), - [aux_sym__text_token1] = ACTIONS(823), - [sym__verbatim_begin] = ACTIONS(825), - }, - [90] = { - [sym__inline] = STATE(732), - [sym__element] = STATE(106), + [sym__inline] = STATE(914), + [sym__element] = STATE(111), [sym_emphasis] = STATE(186), - [sym_emphasis_begin] = STATE(1006), + [sym_emphasis_begin] = STATE(1102), [sym_strong] = STATE(186), - [sym_strong_begin] = STATE(79), - [sym__hard_line_break] = STATE(186), - [sym_hard_line_break] = STATE(186), - [sym__smart_punctuation] = STATE(186), - [sym_autolink] = STATE(186), + [sym_strong_begin] = STATE(1103), + [sym_superscript] = STATE(186), + [sym_superscript_begin] = STATE(1104), + [sym_subscript] = STATE(186), + [sym_subscript_begin] = STATE(1105), [sym_highlighted] = STATE(186), + [sym_highlighted_begin] = STATE(1106), [sym_insert] = STATE(186), + [sym_insert_begin] = STATE(1107), [sym_delete] = STATE(186), - [sym_superscript] = STATE(186), - [sym_subscript] = STATE(186), + [sym_delete_begin] = STATE(1108), + [sym_hard_line_break] = STATE(186), + [sym__smart_punctuation] = STATE(186), + [sym_autolink] = STATE(186), [sym_footnote_reference] = STATE(186), [sym__image] = STATE(186), [sym_full_reference_image] = STATE(186), [sym_collapsed_reference_image] = STATE(186), [sym_inline_image] = STATE(186), - [sym__image_description] = STATE(714), + [sym__image_description] = STATE(673), [sym__link] = STATE(186), [sym_full_reference_link] = STATE(186), [sym_collapsed_reference_link] = STATE(186), [sym_inline_link] = STATE(186), - [sym_link_text] = STATE(713), + [sym_link_text] = STATE(672), [sym__comment_with_spaces] = STATE(186), [sym_span] = STATE(186), [sym_raw_inline] = STATE(186), @@ -14673,293 +12346,535 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(186), [sym_note] = STATE(186), [sym__symbol_fallback] = STATE(186), - [aux_sym__text] = STATE(160), - [aux_sym__inline_repeat1] = STATE(106), - [anon_sym_LBRACE_] = ACTIONS(546), - [anon_sym__] = ACTIONS(548), - [anon_sym_LBRACE_STAR] = ACTIONS(550), - [anon_sym_STAR] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(554), - [sym_quotation_marks] = ACTIONS(556), - [sym_ellipsis] = ACTIONS(556), - [sym_em_dash] = ACTIONS(556), - [sym_en_dash] = ACTIONS(558), - [sym_backslash_escape] = ACTIONS(558), - [anon_sym_LT] = ACTIONS(560), - [anon_sym_LBRACE_EQ] = ACTIONS(562), - [anon_sym_LBRACE_PLUS] = ACTIONS(564), - [anon_sym_LBRACE_DASH] = ACTIONS(566), - [sym_symbol] = ACTIONS(556), - [anon_sym_LBRACE_CARET] = ACTIONS(568), - [anon_sym_CARET] = ACTIONS(568), - [anon_sym_LBRACE_TILDE] = ACTIONS(570), - [anon_sym_TILDE] = ACTIONS(570), - [anon_sym_LBRACK_CARET] = ACTIONS(572), - [anon_sym_BANG_LBRACK] = ACTIONS(574), - [anon_sym_LBRACK] = ACTIONS(576), - [anon_sym_LBRACE2] = ACTIONS(558), - [anon_sym_DOLLAR] = ACTIONS(578), - [anon_sym_TODO] = ACTIONS(580), - [anon_sym_WIP] = ACTIONS(580), - [anon_sym_NOTE] = ACTIONS(582), - [anon_sym_INFO] = ACTIONS(582), - [anon_sym_XXX] = ACTIONS(582), - [sym_fixme] = ACTIONS(556), - [anon_sym_PIPE] = ACTIONS(556), - [sym__whitespace1] = ACTIONS(584), - [sym__newline] = ACTIONS(586), - [aux_sym__text_token1] = ACTIONS(588), - [sym__verbatim_begin] = ACTIONS(590), + [aux_sym__text] = STATE(155), + [aux_sym__inline_repeat1] = STATE(111), + [anon_sym_LBRACE_] = ACTIONS(267), + [anon_sym__] = ACTIONS(269), + [anon_sym_LBRACE_STAR] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_LBRACE_CARET] = ACTIONS(275), + [anon_sym_CARET] = ACTIONS(275), + [anon_sym_LBRACE_TILDE] = ACTIONS(277), + [anon_sym_TILDE] = ACTIONS(277), + [anon_sym_LBRACE_EQ] = ACTIONS(279), + [anon_sym_LBRACE_PLUS] = ACTIONS(281), + [anon_sym_LBRACE_DASH] = ACTIONS(283), + [anon_sym_BSLASH] = ACTIONS(285), + [sym_quotation_marks] = ACTIONS(287), + [sym_ellipsis] = ACTIONS(287), + [sym_em_dash] = ACTIONS(287), + [sym_en_dash] = ACTIONS(289), + [sym_backslash_escape] = ACTIONS(289), + [anon_sym_LT] = ACTIONS(291), + [sym_symbol] = ACTIONS(287), + [anon_sym_LBRACK_CARET] = ACTIONS(293), + [anon_sym_BANG_LBRACK] = ACTIONS(295), + [anon_sym_LBRACK] = ACTIONS(297), + [anon_sym_LBRACE2] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(299), + [anon_sym_TODO] = ACTIONS(301), + [anon_sym_WIP] = ACTIONS(301), + [anon_sym_NOTE] = ACTIONS(303), + [anon_sym_INFO] = ACTIONS(303), + [anon_sym_XXX] = ACTIONS(303), + [sym_fixme] = ACTIONS(287), + [sym__whitespace1] = ACTIONS(305), + [sym__newline] = ACTIONS(307), + [aux_sym__text_token1] = ACTIONS(309), + [sym__verbatim_begin] = ACTIONS(311), + }, + [90] = { + [sym__inline] = STATE(915), + [sym__element] = STATE(115), + [sym_emphasis] = STATE(192), + [sym_emphasis_begin] = STATE(1095), + [sym_strong] = STATE(192), + [sym_strong_begin] = STATE(1096), + [sym_superscript] = STATE(192), + [sym_superscript_begin] = STATE(1097), + [sym_subscript] = STATE(192), + [sym_subscript_begin] = STATE(1098), + [sym_highlighted] = STATE(192), + [sym_highlighted_begin] = STATE(1099), + [sym_insert] = STATE(192), + [sym_insert_begin] = STATE(1100), + [sym_delete] = STATE(192), + [sym_delete_begin] = STATE(1101), + [sym_hard_line_break] = STATE(192), + [sym__smart_punctuation] = STATE(192), + [sym_autolink] = STATE(192), + [sym_footnote_reference] = STATE(192), + [sym__image] = STATE(192), + [sym_full_reference_image] = STATE(192), + [sym_collapsed_reference_image] = STATE(192), + [sym_inline_image] = STATE(192), + [sym__image_description] = STATE(684), + [sym__link] = STATE(192), + [sym_full_reference_link] = STATE(192), + [sym_collapsed_reference_link] = STATE(192), + [sym_inline_link] = STATE(192), + [sym_link_text] = STATE(683), + [sym__comment_with_spaces] = STATE(192), + [sym_span] = STATE(192), + [sym_raw_inline] = STATE(192), + [sym_math] = STATE(192), + [sym_verbatim] = STATE(192), + [sym__todo_highlights] = STATE(192), + [sym_todo] = STATE(192), + [sym_note] = STATE(192), + [sym__symbol_fallback] = STATE(192), + [aux_sym__text] = STATE(141), + [aux_sym__inline_repeat1] = STATE(115), + [anon_sym_LBRACE_] = ACTIONS(129), + [anon_sym__] = ACTIONS(131), + [anon_sym_LBRACE_STAR] = ACTIONS(133), + [anon_sym_STAR] = ACTIONS(135), + [anon_sym_LBRACE_CARET] = ACTIONS(137), + [anon_sym_CARET] = ACTIONS(137), + [anon_sym_LBRACE_TILDE] = ACTIONS(139), + [anon_sym_TILDE] = ACTIONS(139), + [anon_sym_LBRACE_EQ] = ACTIONS(141), + [anon_sym_LBRACE_PLUS] = ACTIONS(143), + [anon_sym_LBRACE_DASH] = ACTIONS(145), + [anon_sym_BSLASH] = ACTIONS(147), + [sym_quotation_marks] = ACTIONS(149), + [sym_ellipsis] = ACTIONS(149), + [sym_em_dash] = ACTIONS(149), + [sym_en_dash] = ACTIONS(151), + [sym_backslash_escape] = ACTIONS(151), + [anon_sym_LT] = ACTIONS(153), + [sym_symbol] = ACTIONS(149), + [anon_sym_LBRACK_CARET] = ACTIONS(155), + [anon_sym_BANG_LBRACK] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LBRACE2] = ACTIONS(151), + [anon_sym_DOLLAR] = ACTIONS(161), + [anon_sym_TODO] = ACTIONS(163), + [anon_sym_WIP] = ACTIONS(163), + [anon_sym_NOTE] = ACTIONS(165), + [anon_sym_INFO] = ACTIONS(165), + [anon_sym_XXX] = ACTIONS(165), + [sym_fixme] = ACTIONS(149), + [sym__whitespace1] = ACTIONS(167), + [sym__newline] = ACTIONS(169), + [aux_sym__text_token1] = ACTIONS(171), + [sym__verbatim_begin] = ACTIONS(173), }, [91] = { - [sym__element] = STATE(87), - [sym_emphasis] = STATE(174), - [sym_emphasis_begin] = STATE(1001), - [sym_strong] = STATE(174), - [sym_strong_begin] = STATE(126), - [sym__hard_line_break] = STATE(174), - [sym_hard_line_break] = STATE(174), - [sym__smart_punctuation] = STATE(174), - [sym_autolink] = STATE(174), - [sym_highlighted] = STATE(174), - [sym_insert] = STATE(174), - [sym_delete] = STATE(174), - [sym_superscript] = STATE(174), - [sym_subscript] = STATE(174), - [sym_footnote_reference] = STATE(174), - [sym__image] = STATE(174), - [sym_full_reference_image] = STATE(174), - [sym_collapsed_reference_image] = STATE(174), - [sym_inline_image] = STATE(174), - [sym__image_description] = STATE(709), - [sym__link] = STATE(174), - [sym_full_reference_link] = STATE(174), - [sym_collapsed_reference_link] = STATE(174), - [sym_inline_link] = STATE(174), - [sym_link_text] = STATE(710), - [sym__comment_with_spaces] = STATE(174), - [sym_span] = STATE(174), - [sym_raw_inline] = STATE(174), - [sym_math] = STATE(174), - [sym_verbatim] = STATE(174), - [sym__todo_highlights] = STATE(174), - [sym_todo] = STATE(174), - [sym_note] = STATE(174), - [sym__symbol_fallback] = STATE(174), - [aux_sym__text] = STATE(148), - [aux_sym__inline_repeat1] = STATE(87), - [anon_sym_LBRACE_] = ACTIONS(1013), - [anon_sym__] = ACTIONS(1015), - [anon_sym_LBRACE_STAR] = ACTIONS(1017), - [anon_sym_STAR] = ACTIONS(1019), - [anon_sym_BSLASH] = ACTIONS(1021), - [sym_quotation_marks] = ACTIONS(1023), - [sym_ellipsis] = ACTIONS(1023), - [sym_em_dash] = ACTIONS(1023), - [sym_en_dash] = ACTIONS(1025), - [sym_backslash_escape] = ACTIONS(1025), - [anon_sym_LT] = ACTIONS(1027), - [anon_sym_LBRACE_EQ] = ACTIONS(1029), - [anon_sym_LBRACE_PLUS] = ACTIONS(1031), - [anon_sym_PLUS_RBRACE] = ACTIONS(987), - [anon_sym_LBRACE_DASH] = ACTIONS(1033), - [sym_symbol] = ACTIONS(1023), - [anon_sym_LBRACE_CARET] = ACTIONS(1035), - [anon_sym_CARET] = ACTIONS(1035), - [anon_sym_LBRACE_TILDE] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1037), - [anon_sym_LBRACK_CARET] = ACTIONS(1039), - [anon_sym_BANG_LBRACK] = ACTIONS(1041), - [anon_sym_LBRACK] = ACTIONS(1043), - [anon_sym_LBRACE2] = ACTIONS(1025), - [anon_sym_DOLLAR] = ACTIONS(1045), - [anon_sym_TODO] = ACTIONS(1047), - [anon_sym_WIP] = ACTIONS(1047), - [anon_sym_NOTE] = ACTIONS(1049), - [anon_sym_INFO] = ACTIONS(1049), - [anon_sym_XXX] = ACTIONS(1049), - [sym_fixme] = ACTIONS(1023), - [anon_sym_PIPE] = ACTIONS(1023), - [sym__whitespace1] = ACTIONS(1051), - [sym__newline] = ACTIONS(1053), - [aux_sym__text_token1] = ACTIONS(1055), - [sym__verbatim_begin] = ACTIONS(1057), + [sym__inline] = STATE(916), + [sym__element] = STATE(93), + [sym_emphasis] = STATE(197), + [sym_emphasis_begin] = STATE(1088), + [sym_strong] = STATE(197), + [sym_strong_begin] = STATE(1089), + [sym_superscript] = STATE(197), + [sym_superscript_begin] = STATE(1090), + [sym_subscript] = STATE(197), + [sym_subscript_begin] = STATE(1091), + [sym_highlighted] = STATE(197), + [sym_highlighted_begin] = STATE(1092), + [sym_insert] = STATE(197), + [sym_insert_begin] = STATE(1093), + [sym_delete] = STATE(197), + [sym_delete_begin] = STATE(1094), + [sym_hard_line_break] = STATE(197), + [sym__smart_punctuation] = STATE(197), + [sym_autolink] = STATE(197), + [sym_footnote_reference] = STATE(197), + [sym__image] = STATE(197), + [sym_full_reference_image] = STATE(197), + [sym_collapsed_reference_image] = STATE(197), + [sym_inline_image] = STATE(197), + [sym__image_description] = STATE(697), + [sym__link] = STATE(197), + [sym_full_reference_link] = STATE(197), + [sym_collapsed_reference_link] = STATE(197), + [sym_inline_link] = STATE(197), + [sym_link_text] = STATE(682), + [sym__comment_with_spaces] = STATE(197), + [sym_span] = STATE(197), + [sym_raw_inline] = STATE(197), + [sym_math] = STATE(197), + [sym_verbatim] = STATE(197), + [sym__todo_highlights] = STATE(197), + [sym_todo] = STATE(197), + [sym_note] = STATE(197), + [sym__symbol_fallback] = STATE(197), + [aux_sym__text] = STATE(134), + [aux_sym__inline_repeat1] = STATE(93), + [anon_sym_LBRACE_] = ACTIONS(313), + [anon_sym__] = ACTIONS(315), + [anon_sym_LBRACE_STAR] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_LBRACE_CARET] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [anon_sym_LBRACE_TILDE] = ACTIONS(323), + [anon_sym_TILDE] = ACTIONS(323), + [anon_sym_LBRACE_EQ] = ACTIONS(325), + [anon_sym_LBRACE_PLUS] = ACTIONS(327), + [anon_sym_LBRACE_DASH] = ACTIONS(329), + [anon_sym_BSLASH] = ACTIONS(331), + [sym_quotation_marks] = ACTIONS(333), + [sym_ellipsis] = ACTIONS(333), + [sym_em_dash] = ACTIONS(333), + [sym_en_dash] = ACTIONS(335), + [sym_backslash_escape] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(337), + [sym_symbol] = ACTIONS(333), + [anon_sym_LBRACK_CARET] = ACTIONS(339), + [anon_sym_BANG_LBRACK] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE2] = ACTIONS(335), + [anon_sym_DOLLAR] = ACTIONS(345), + [anon_sym_TODO] = ACTIONS(347), + [anon_sym_WIP] = ACTIONS(347), + [anon_sym_NOTE] = ACTIONS(349), + [anon_sym_INFO] = ACTIONS(349), + [anon_sym_XXX] = ACTIONS(349), + [sym_fixme] = ACTIONS(333), + [sym__whitespace1] = ACTIONS(351), + [sym__newline] = ACTIONS(353), + [aux_sym__text_token1] = ACTIONS(355), + [sym__verbatim_begin] = ACTIONS(357), }, [92] = { - [sym__inline] = STATE(846), - [sym__element] = STATE(95), - [sym_emphasis] = STATE(191), - [sym_emphasis_begin] = STATE(1008), - [sym_strong] = STATE(191), - [sym_strong_begin] = STATE(90), - [sym__hard_line_break] = STATE(191), - [sym_hard_line_break] = STATE(191), - [sym__smart_punctuation] = STATE(191), - [sym_autolink] = STATE(191), - [sym_highlighted] = STATE(191), - [sym_insert] = STATE(191), - [sym_delete] = STATE(191), - [sym_superscript] = STATE(191), - [sym_subscript] = STATE(191), - [sym_footnote_reference] = STATE(191), - [sym__image] = STATE(191), - [sym_full_reference_image] = STATE(191), - [sym_collapsed_reference_image] = STATE(191), - [sym_inline_image] = STATE(191), - [sym__image_description] = STATE(699), - [sym__link] = STATE(191), - [sym_full_reference_link] = STATE(191), - [sym_collapsed_reference_link] = STATE(191), - [sym_inline_link] = STATE(191), - [sym_link_text] = STATE(698), - [sym__comment_with_spaces] = STATE(191), - [sym_span] = STATE(191), - [sym_raw_inline] = STATE(191), - [sym_math] = STATE(191), - [sym_verbatim] = STATE(191), - [sym__todo_highlights] = STATE(191), - [sym_todo] = STATE(191), - [sym_note] = STATE(191), - [sym__symbol_fallback] = STATE(191), - [aux_sym__text] = STATE(137), - [aux_sym__inline_repeat1] = STATE(95), - [anon_sym_LBRACE_] = ACTIONS(592), - [anon_sym__] = ACTIONS(594), - [anon_sym_LBRACE_STAR] = ACTIONS(596), - [anon_sym_STAR] = ACTIONS(598), - [anon_sym_BSLASH] = ACTIONS(600), - [sym_quotation_marks] = ACTIONS(602), - [sym_ellipsis] = ACTIONS(602), - [sym_em_dash] = ACTIONS(602), - [sym_en_dash] = ACTIONS(604), - [sym_backslash_escape] = ACTIONS(604), - [anon_sym_LT] = ACTIONS(606), - [anon_sym_LBRACE_EQ] = ACTIONS(608), - [anon_sym_LBRACE_PLUS] = ACTIONS(610), - [anon_sym_LBRACE_DASH] = ACTIONS(612), - [sym_symbol] = ACTIONS(602), - [anon_sym_LBRACE_CARET] = ACTIONS(614), - [anon_sym_CARET] = ACTIONS(614), - [anon_sym_LBRACE_TILDE] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(616), - [anon_sym_LBRACK_CARET] = ACTIONS(618), - [anon_sym_BANG_LBRACK] = ACTIONS(620), - [anon_sym_LBRACK] = ACTIONS(622), - [anon_sym_LBRACE2] = ACTIONS(604), - [anon_sym_DOLLAR] = ACTIONS(624), - [anon_sym_TODO] = ACTIONS(626), - [anon_sym_WIP] = ACTIONS(626), - [anon_sym_NOTE] = ACTIONS(628), - [anon_sym_INFO] = ACTIONS(628), - [anon_sym_XXX] = ACTIONS(628), - [sym_fixme] = ACTIONS(602), - [anon_sym_PIPE] = ACTIONS(602), - [sym__whitespace1] = ACTIONS(630), - [sym__newline] = ACTIONS(632), - [aux_sym__text_token1] = ACTIONS(634), - [sym__verbatim_begin] = ACTIONS(636), + [sym__inline] = STATE(917), + [sym__element] = STATE(79), + [sym_emphasis] = STATE(161), + [sym_emphasis_begin] = STATE(1081), + [sym_strong] = STATE(161), + [sym_strong_begin] = STATE(1082), + [sym_superscript] = STATE(161), + [sym_superscript_begin] = STATE(1083), + [sym_subscript] = STATE(161), + [sym_subscript_begin] = STATE(1084), + [sym_highlighted] = STATE(161), + [sym_highlighted_begin] = STATE(1085), + [sym_insert] = STATE(161), + [sym_insert_begin] = STATE(1086), + [sym_delete] = STATE(161), + [sym_delete_begin] = STATE(1087), + [sym_hard_line_break] = STATE(161), + [sym__smart_punctuation] = STATE(161), + [sym_autolink] = STATE(161), + [sym_footnote_reference] = STATE(161), + [sym__image] = STATE(161), + [sym_full_reference_image] = STATE(161), + [sym_collapsed_reference_image] = STATE(161), + [sym_inline_image] = STATE(161), + [sym__image_description] = STATE(692), + [sym__link] = STATE(161), + [sym_full_reference_link] = STATE(161), + [sym_collapsed_reference_link] = STATE(161), + [sym_inline_link] = STATE(161), + [sym_link_text] = STATE(687), + [sym__comment_with_spaces] = STATE(161), + [sym_span] = STATE(161), + [sym_raw_inline] = STATE(161), + [sym_math] = STATE(161), + [sym_verbatim] = STATE(161), + [sym__todo_highlights] = STATE(161), + [sym_todo] = STATE(161), + [sym_note] = STATE(161), + [sym__symbol_fallback] = STATE(161), + [aux_sym__text] = STATE(149), + [aux_sym__inline_repeat1] = STATE(79), + [anon_sym_LBRACE_] = ACTIONS(359), + [anon_sym__] = ACTIONS(361), + [anon_sym_LBRACE_STAR] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(365), + [anon_sym_LBRACE_CARET] = ACTIONS(367), + [anon_sym_CARET] = ACTIONS(367), + [anon_sym_LBRACE_TILDE] = ACTIONS(369), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_LBRACE_EQ] = ACTIONS(371), + [anon_sym_LBRACE_PLUS] = ACTIONS(373), + [anon_sym_LBRACE_DASH] = ACTIONS(375), + [anon_sym_BSLASH] = ACTIONS(377), + [sym_quotation_marks] = ACTIONS(379), + [sym_ellipsis] = ACTIONS(379), + [sym_em_dash] = ACTIONS(379), + [sym_en_dash] = ACTIONS(381), + [sym_backslash_escape] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(383), + [sym_symbol] = ACTIONS(379), + [anon_sym_LBRACK_CARET] = ACTIONS(385), + [anon_sym_BANG_LBRACK] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE2] = ACTIONS(381), + [anon_sym_DOLLAR] = ACTIONS(391), + [anon_sym_TODO] = ACTIONS(393), + [anon_sym_WIP] = ACTIONS(393), + [anon_sym_NOTE] = ACTIONS(395), + [anon_sym_INFO] = ACTIONS(395), + [anon_sym_XXX] = ACTIONS(395), + [sym_fixme] = ACTIONS(379), + [sym__whitespace1] = ACTIONS(397), + [sym__newline] = ACTIONS(399), + [aux_sym__text_token1] = ACTIONS(401), + [sym__verbatim_begin] = ACTIONS(403), }, [93] = { - [sym__inline_without_trailing_space] = STATE(845), - [sym__element] = STATE(582), - [sym_emphasis] = STATE(176), - [sym_emphasis_begin] = STATE(1007), - [sym_strong] = STATE(176), - [sym_strong_begin] = STATE(94), - [sym__hard_line_break] = STATE(176), - [sym_hard_line_break] = STATE(176), - [sym__smart_punctuation] = STATE(176), - [sym_autolink] = STATE(176), - [sym_highlighted] = STATE(176), - [sym_insert] = STATE(176), - [sym_delete] = STATE(176), - [sym_superscript] = STATE(176), - [sym_subscript] = STATE(176), - [sym_footnote_reference] = STATE(176), - [sym__image] = STATE(176), - [sym_full_reference_image] = STATE(176), - [sym_collapsed_reference_image] = STATE(176), - [sym_inline_image] = STATE(176), - [sym__image_description] = STATE(685), - [sym__link] = STATE(176), - [sym_full_reference_link] = STATE(176), - [sym_collapsed_reference_link] = STATE(176), - [sym_inline_link] = STATE(176), - [sym_link_text] = STATE(704), - [sym__comment_with_spaces] = STATE(176), - [sym_span] = STATE(176), - [sym_raw_inline] = STATE(176), - [sym_math] = STATE(176), - [sym_verbatim] = STATE(176), - [sym__todo_highlights] = STATE(176), - [sym_todo] = STATE(176), - [sym_note] = STATE(176), - [sym__symbol_fallback] = STATE(176), - [aux_sym__text] = STATE(161), - [aux_sym__inline_repeat1] = STATE(131), - [anon_sym_LBRACE_] = ACTIONS(781), - [anon_sym__] = ACTIONS(783), - [anon_sym_LBRACE_STAR] = ACTIONS(785), - [anon_sym_STAR] = ACTIONS(787), - [anon_sym_BSLASH] = ACTIONS(789), - [sym_quotation_marks] = ACTIONS(791), - [sym_ellipsis] = ACTIONS(791), - [sym_em_dash] = ACTIONS(791), - [sym_en_dash] = ACTIONS(793), - [sym_backslash_escape] = ACTIONS(793), - [anon_sym_LT] = ACTIONS(795), - [anon_sym_LBRACE_EQ] = ACTIONS(797), - [anon_sym_LBRACE_PLUS] = ACTIONS(799), - [anon_sym_LBRACE_DASH] = ACTIONS(801), - [sym_symbol] = ACTIONS(791), - [anon_sym_LBRACE_CARET] = ACTIONS(803), - [anon_sym_CARET] = ACTIONS(803), - [anon_sym_LBRACE_TILDE] = ACTIONS(805), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_LBRACK_CARET] = ACTIONS(807), - [anon_sym_BANG_LBRACK] = ACTIONS(809), - [anon_sym_LBRACK] = ACTIONS(811), - [anon_sym_LBRACE2] = ACTIONS(793), - [anon_sym_DOLLAR] = ACTIONS(813), - [anon_sym_TODO] = ACTIONS(815), - [anon_sym_WIP] = ACTIONS(815), - [anon_sym_NOTE] = ACTIONS(817), - [anon_sym_INFO] = ACTIONS(817), - [anon_sym_XXX] = ACTIONS(817), - [sym_fixme] = ACTIONS(791), - [anon_sym_PIPE] = ACTIONS(791), - [sym__whitespace1] = ACTIONS(819), - [sym__newline] = ACTIONS(821), - [aux_sym__text_token1] = ACTIONS(823), - [sym__verbatim_begin] = ACTIONS(825), + [sym__element] = STATE(123), + [sym_emphasis] = STATE(197), + [sym_emphasis_begin] = STATE(1088), + [sym_strong] = STATE(197), + [sym_strong_begin] = STATE(1089), + [sym_superscript] = STATE(197), + [sym_superscript_begin] = STATE(1090), + [sym_subscript] = STATE(197), + [sym_subscript_begin] = STATE(1091), + [sym_highlighted] = STATE(197), + [sym_highlighted_begin] = STATE(1092), + [sym_insert] = STATE(197), + [sym_insert_begin] = STATE(1093), + [sym_delete] = STATE(197), + [sym_delete_begin] = STATE(1094), + [sym_hard_line_break] = STATE(197), + [sym__smart_punctuation] = STATE(197), + [sym_autolink] = STATE(197), + [sym_footnote_reference] = STATE(197), + [sym__image] = STATE(197), + [sym_full_reference_image] = STATE(197), + [sym_collapsed_reference_image] = STATE(197), + [sym_inline_image] = STATE(197), + [sym__image_description] = STATE(697), + [sym__link] = STATE(197), + [sym_full_reference_link] = STATE(197), + [sym_collapsed_reference_link] = STATE(197), + [sym_inline_link] = STATE(197), + [sym_link_text] = STATE(682), + [sym__comment_with_spaces] = STATE(197), + [sym_span] = STATE(197), + [sym_raw_inline] = STATE(197), + [sym_math] = STATE(197), + [sym_verbatim] = STATE(197), + [sym__todo_highlights] = STATE(197), + [sym_todo] = STATE(197), + [sym_note] = STATE(197), + [sym__symbol_fallback] = STATE(197), + [aux_sym__text] = STATE(134), + [aux_sym__inline_repeat1] = STATE(123), + [anon_sym_LBRACE_] = ACTIONS(313), + [anon_sym__] = ACTIONS(315), + [anon_sym_LBRACE_STAR] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_LBRACE_CARET] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [anon_sym_LBRACE_TILDE] = ACTIONS(323), + [anon_sym_TILDE] = ACTIONS(323), + [anon_sym_LBRACE_EQ] = ACTIONS(325), + [anon_sym_LBRACE_PLUS] = ACTIONS(327), + [anon_sym_LBRACE_DASH] = ACTIONS(329), + [anon_sym_BSLASH] = ACTIONS(331), + [sym_quotation_marks] = ACTIONS(333), + [sym_ellipsis] = ACTIONS(333), + [sym_em_dash] = ACTIONS(333), + [sym_en_dash] = ACTIONS(335), + [sym_backslash_escape] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(337), + [sym_symbol] = ACTIONS(333), + [anon_sym_LBRACK_CARET] = ACTIONS(339), + [anon_sym_BANG_LBRACK] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE2] = ACTIONS(335), + [anon_sym_DOLLAR] = ACTIONS(345), + [anon_sym_TODO] = ACTIONS(347), + [anon_sym_WIP] = ACTIONS(347), + [anon_sym_NOTE] = ACTIONS(349), + [anon_sym_INFO] = ACTIONS(349), + [anon_sym_XXX] = ACTIONS(349), + [sym_fixme] = ACTIONS(333), + [sym__whitespace1] = ACTIONS(351), + [sym__newline] = ACTIONS(783), + [aux_sym__text_token1] = ACTIONS(355), + [sym__verbatim_begin] = ACTIONS(357), + [sym_subscript_end] = ACTIONS(497), }, [94] = { - [sym__inline] = STATE(729), - [sym__element] = STATE(106), + [sym__inline_without_trailing_space] = STATE(919), + [sym__element] = STATE(603), + [sym_emphasis] = STATE(177), + [sym_emphasis_begin] = STATE(1067), + [sym_strong] = STATE(177), + [sym_strong_begin] = STATE(1068), + [sym_superscript] = STATE(177), + [sym_superscript_begin] = STATE(1069), + [sym_subscript] = STATE(177), + [sym_subscript_begin] = STATE(1070), + [sym_highlighted] = STATE(177), + [sym_highlighted_begin] = STATE(1071), + [sym_insert] = STATE(177), + [sym_insert_begin] = STATE(1072), + [sym_delete] = STATE(177), + [sym_delete_begin] = STATE(1073), + [sym_hard_line_break] = STATE(177), + [sym__smart_punctuation] = STATE(177), + [sym_autolink] = STATE(177), + [sym_footnote_reference] = STATE(177), + [sym__image] = STATE(177), + [sym_full_reference_image] = STATE(177), + [sym_collapsed_reference_image] = STATE(177), + [sym_inline_image] = STATE(177), + [sym__image_description] = STATE(681), + [sym__link] = STATE(177), + [sym_full_reference_link] = STATE(177), + [sym_collapsed_reference_link] = STATE(177), + [sym_inline_link] = STATE(177), + [sym_link_text] = STATE(668), + [sym__comment_with_spaces] = STATE(177), + [sym_span] = STATE(177), + [sym_raw_inline] = STATE(177), + [sym_math] = STATE(177), + [sym_verbatim] = STATE(177), + [sym__todo_highlights] = STATE(177), + [sym_todo] = STATE(177), + [sym_note] = STATE(177), + [sym__symbol_fallback] = STATE(177), + [aux_sym__text] = STATE(132), + [aux_sym__inline_repeat1] = STATE(128), + [anon_sym_LBRACE_] = ACTIONS(405), + [anon_sym__] = ACTIONS(407), + [anon_sym_LBRACE_STAR] = ACTIONS(409), + [anon_sym_STAR] = ACTIONS(411), + [anon_sym_LBRACE_CARET] = ACTIONS(413), + [anon_sym_CARET] = ACTIONS(413), + [anon_sym_LBRACE_TILDE] = ACTIONS(415), + [anon_sym_TILDE] = ACTIONS(415), + [anon_sym_LBRACE_EQ] = ACTIONS(417), + [anon_sym_LBRACE_PLUS] = ACTIONS(419), + [anon_sym_LBRACE_DASH] = ACTIONS(421), + [anon_sym_BSLASH] = ACTIONS(423), + [sym_quotation_marks] = ACTIONS(425), + [sym_ellipsis] = ACTIONS(425), + [sym_em_dash] = ACTIONS(425), + [sym_en_dash] = ACTIONS(427), + [sym_backslash_escape] = ACTIONS(427), + [anon_sym_LT] = ACTIONS(429), + [sym_symbol] = ACTIONS(425), + [anon_sym_LBRACK_CARET] = ACTIONS(431), + [anon_sym_BANG_LBRACK] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LBRACE2] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(437), + [anon_sym_TODO] = ACTIONS(439), + [anon_sym_WIP] = ACTIONS(439), + [anon_sym_NOTE] = ACTIONS(441), + [anon_sym_INFO] = ACTIONS(441), + [anon_sym_XXX] = ACTIONS(441), + [sym_fixme] = ACTIONS(425), + [sym__whitespace1] = ACTIONS(443), + [sym__newline] = ACTIONS(445), + [aux_sym__text_token1] = ACTIONS(447), + [sym__verbatim_begin] = ACTIONS(449), + }, + [95] = { + [sym__inline] = STATE(938), + [sym__element] = STATE(66), + [sym_emphasis] = STATE(171), + [sym_emphasis_begin] = STATE(1116), + [sym_strong] = STATE(171), + [sym_strong_begin] = STATE(1117), + [sym_superscript] = STATE(171), + [sym_superscript_begin] = STATE(1118), + [sym_subscript] = STATE(171), + [sym_subscript_begin] = STATE(1119), + [sym_highlighted] = STATE(171), + [sym_highlighted_begin] = STATE(1120), + [sym_insert] = STATE(171), + [sym_insert_begin] = STATE(1121), + [sym_delete] = STATE(171), + [sym_delete_begin] = STATE(1122), + [sym_hard_line_break] = STATE(171), + [sym__smart_punctuation] = STATE(171), + [sym_autolink] = STATE(171), + [sym_footnote_reference] = STATE(171), + [sym__image] = STATE(171), + [sym_full_reference_image] = STATE(171), + [sym_collapsed_reference_image] = STATE(171), + [sym_inline_image] = STATE(171), + [sym__image_description] = STATE(674), + [sym__link] = STATE(171), + [sym_full_reference_link] = STATE(171), + [sym_collapsed_reference_link] = STATE(171), + [sym_inline_link] = STATE(171), + [sym_link_text] = STATE(675), + [sym__comment_with_spaces] = STATE(171), + [sym_span] = STATE(171), + [sym_raw_inline] = STATE(171), + [sym_math] = STATE(171), + [sym_verbatim] = STATE(171), + [sym__todo_highlights] = STATE(171), + [sym_todo] = STATE(171), + [sym_note] = STATE(171), + [sym__symbol_fallback] = STATE(171), + [aux_sym__text] = STATE(146), + [aux_sym__inline_repeat1] = STATE(66), + [anon_sym_LBRACE_] = ACTIONS(451), + [anon_sym__] = ACTIONS(453), + [anon_sym_LBRACE_STAR] = ACTIONS(455), + [anon_sym_STAR] = ACTIONS(457), + [anon_sym_LBRACE_CARET] = ACTIONS(459), + [anon_sym_CARET] = ACTIONS(459), + [anon_sym_LBRACE_TILDE] = ACTIONS(461), + [anon_sym_TILDE] = ACTIONS(461), + [anon_sym_LBRACE_EQ] = ACTIONS(463), + [anon_sym_LBRACE_PLUS] = ACTIONS(465), + [anon_sym_LBRACE_DASH] = ACTIONS(467), + [anon_sym_BSLASH] = ACTIONS(469), + [sym_quotation_marks] = ACTIONS(471), + [sym_ellipsis] = ACTIONS(471), + [sym_em_dash] = ACTIONS(471), + [sym_en_dash] = ACTIONS(473), + [sym_backslash_escape] = ACTIONS(473), + [anon_sym_LT] = ACTIONS(475), + [sym_symbol] = ACTIONS(471), + [anon_sym_LBRACK_CARET] = ACTIONS(477), + [anon_sym_BANG_LBRACK] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(481), + [anon_sym_LBRACE2] = ACTIONS(473), + [anon_sym_DOLLAR] = ACTIONS(483), + [anon_sym_TODO] = ACTIONS(485), + [anon_sym_WIP] = ACTIONS(485), + [anon_sym_NOTE] = ACTIONS(487), + [anon_sym_INFO] = ACTIONS(487), + [anon_sym_XXX] = ACTIONS(487), + [sym_fixme] = ACTIONS(471), + [sym__whitespace1] = ACTIONS(489), + [sym__newline] = ACTIONS(491), + [aux_sym__text_token1] = ACTIONS(493), + [sym__verbatim_begin] = ACTIONS(495), + }, + [96] = { + [sym__element] = STATE(96), [sym_emphasis] = STATE(186), - [sym_emphasis_begin] = STATE(1006), + [sym_emphasis_begin] = STATE(1102), [sym_strong] = STATE(186), - [sym_strong_begin] = STATE(79), - [sym__hard_line_break] = STATE(186), - [sym_hard_line_break] = STATE(186), - [sym__smart_punctuation] = STATE(186), - [sym_autolink] = STATE(186), + [sym_strong_begin] = STATE(1103), + [sym_superscript] = STATE(186), + [sym_superscript_begin] = STATE(1104), + [sym_subscript] = STATE(186), + [sym_subscript_begin] = STATE(1105), [sym_highlighted] = STATE(186), + [sym_highlighted_begin] = STATE(1106), [sym_insert] = STATE(186), + [sym_insert_begin] = STATE(1107), [sym_delete] = STATE(186), - [sym_superscript] = STATE(186), - [sym_subscript] = STATE(186), + [sym_delete_begin] = STATE(1108), + [sym_hard_line_break] = STATE(186), + [sym__smart_punctuation] = STATE(186), + [sym_autolink] = STATE(186), [sym_footnote_reference] = STATE(186), [sym__image] = STATE(186), [sym_full_reference_image] = STATE(186), [sym_collapsed_reference_image] = STATE(186), [sym_inline_image] = STATE(186), - [sym__image_description] = STATE(714), + [sym__image_description] = STATE(673), [sym__link] = STATE(186), [sym_full_reference_link] = STATE(186), [sym_collapsed_reference_link] = STATE(186), [sym_inline_link] = STATE(186), - [sym_link_text] = STATE(713), + [sym_link_text] = STATE(672), [sym__comment_with_spaces] = STATE(186), [sym_span] = STATE(186), [sym_raw_inline] = STATE(186), @@ -14969,219 +12884,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(186), [sym_note] = STATE(186), [sym__symbol_fallback] = STATE(186), - [aux_sym__text] = STATE(160), - [aux_sym__inline_repeat1] = STATE(106), - [anon_sym_LBRACE_] = ACTIONS(546), - [anon_sym__] = ACTIONS(548), - [anon_sym_LBRACE_STAR] = ACTIONS(550), - [anon_sym_STAR] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(554), - [sym_quotation_marks] = ACTIONS(556), - [sym_ellipsis] = ACTIONS(556), - [sym_em_dash] = ACTIONS(556), - [sym_en_dash] = ACTIONS(558), - [sym_backslash_escape] = ACTIONS(558), - [anon_sym_LT] = ACTIONS(560), - [anon_sym_LBRACE_EQ] = ACTIONS(562), - [anon_sym_LBRACE_PLUS] = ACTIONS(564), - [anon_sym_LBRACE_DASH] = ACTIONS(566), - [sym_symbol] = ACTIONS(556), - [anon_sym_LBRACE_CARET] = ACTIONS(568), - [anon_sym_CARET] = ACTIONS(568), - [anon_sym_LBRACE_TILDE] = ACTIONS(570), - [anon_sym_TILDE] = ACTIONS(570), - [anon_sym_LBRACK_CARET] = ACTIONS(572), - [anon_sym_BANG_LBRACK] = ACTIONS(574), - [anon_sym_LBRACK] = ACTIONS(576), - [anon_sym_LBRACE2] = ACTIONS(558), - [anon_sym_DOLLAR] = ACTIONS(578), - [anon_sym_TODO] = ACTIONS(580), - [anon_sym_WIP] = ACTIONS(580), - [anon_sym_NOTE] = ACTIONS(582), - [anon_sym_INFO] = ACTIONS(582), - [anon_sym_XXX] = ACTIONS(582), - [sym_fixme] = ACTIONS(556), - [anon_sym_PIPE] = ACTIONS(556), - [sym__whitespace1] = ACTIONS(584), - [sym__newline] = ACTIONS(586), - [aux_sym__text_token1] = ACTIONS(588), - [sym__verbatim_begin] = ACTIONS(590), - }, - [95] = { - [sym__element] = STATE(117), - [sym_emphasis] = STATE(191), - [sym_emphasis_begin] = STATE(1008), - [sym_strong] = STATE(191), - [sym_strong_begin] = STATE(90), - [sym__hard_line_break] = STATE(191), - [sym_hard_line_break] = STATE(191), - [sym__smart_punctuation] = STATE(191), - [sym_autolink] = STATE(191), - [sym_highlighted] = STATE(191), - [sym_insert] = STATE(191), - [sym_delete] = STATE(191), - [sym_superscript] = STATE(191), - [sym_subscript] = STATE(191), - [sym_footnote_reference] = STATE(191), - [sym__image] = STATE(191), - [sym_full_reference_image] = STATE(191), - [sym_collapsed_reference_image] = STATE(191), - [sym_inline_image] = STATE(191), - [sym__image_description] = STATE(699), - [sym__link] = STATE(191), - [sym_full_reference_link] = STATE(191), - [sym_collapsed_reference_link] = STATE(191), - [sym_inline_link] = STATE(191), - [sym_link_text] = STATE(698), - [sym__comment_with_spaces] = STATE(191), - [sym_span] = STATE(191), - [sym_raw_inline] = STATE(191), - [sym_math] = STATE(191), - [sym_verbatim] = STATE(191), - [sym__todo_highlights] = STATE(191), - [sym_todo] = STATE(191), - [sym_note] = STATE(191), - [sym__symbol_fallback] = STATE(191), - [aux_sym__text] = STATE(137), - [aux_sym__inline_repeat1] = STATE(117), - [anon_sym_LBRACE_] = ACTIONS(592), - [anon_sym__] = ACTIONS(594), - [anon_sym_LBRACE_STAR] = ACTIONS(596), - [anon_sym_STAR] = ACTIONS(598), - [anon_sym_BSLASH] = ACTIONS(600), - [sym_quotation_marks] = ACTIONS(602), - [sym_ellipsis] = ACTIONS(602), - [sym_em_dash] = ACTIONS(602), - [sym_en_dash] = ACTIONS(604), - [sym_backslash_escape] = ACTIONS(604), - [anon_sym_LT] = ACTIONS(606), - [anon_sym_LBRACE_EQ] = ACTIONS(608), - [anon_sym_LBRACE_PLUS] = ACTIONS(610), - [anon_sym_LBRACE_DASH] = ACTIONS(612), - [sym_symbol] = ACTIONS(602), - [anon_sym_LBRACE_CARET] = ACTIONS(614), - [anon_sym_CARET] = ACTIONS(614), - [anon_sym_LBRACE_TILDE] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(616), - [anon_sym_LBRACK_CARET] = ACTIONS(618), - [anon_sym_BANG_LBRACK] = ACTIONS(620), - [anon_sym_LBRACK] = ACTIONS(622), - [anon_sym_RBRACK2] = ACTIONS(987), - [anon_sym_LBRACE2] = ACTIONS(604), - [anon_sym_DOLLAR] = ACTIONS(624), - [anon_sym_TODO] = ACTIONS(626), - [anon_sym_WIP] = ACTIONS(626), - [anon_sym_NOTE] = ACTIONS(628), - [anon_sym_INFO] = ACTIONS(628), - [anon_sym_XXX] = ACTIONS(628), - [sym_fixme] = ACTIONS(602), - [anon_sym_PIPE] = ACTIONS(602), - [sym__whitespace1] = ACTIONS(630), - [sym__newline] = ACTIONS(1059), - [aux_sym__text_token1] = ACTIONS(634), - [sym__verbatim_begin] = ACTIONS(636), - }, - [96] = { - [sym__inline_without_trailing_space] = STATE(827), - [sym__element] = STATE(582), - [sym_emphasis] = STATE(176), - [sym_emphasis_begin] = STATE(1007), - [sym_strong] = STATE(176), - [sym_strong_begin] = STATE(94), - [sym__hard_line_break] = STATE(176), - [sym_hard_line_break] = STATE(176), - [sym__smart_punctuation] = STATE(176), - [sym_autolink] = STATE(176), - [sym_highlighted] = STATE(176), - [sym_insert] = STATE(176), - [sym_delete] = STATE(176), - [sym_superscript] = STATE(176), - [sym_subscript] = STATE(176), - [sym_footnote_reference] = STATE(176), - [sym__image] = STATE(176), - [sym_full_reference_image] = STATE(176), - [sym_collapsed_reference_image] = STATE(176), - [sym_inline_image] = STATE(176), - [sym__image_description] = STATE(685), - [sym__link] = STATE(176), - [sym_full_reference_link] = STATE(176), - [sym_collapsed_reference_link] = STATE(176), - [sym_inline_link] = STATE(176), - [sym_link_text] = STATE(704), - [sym__comment_with_spaces] = STATE(176), - [sym_span] = STATE(176), - [sym_raw_inline] = STATE(176), - [sym_math] = STATE(176), - [sym_verbatim] = STATE(176), - [sym__todo_highlights] = STATE(176), - [sym_todo] = STATE(176), - [sym_note] = STATE(176), - [sym__symbol_fallback] = STATE(176), - [aux_sym__text] = STATE(161), - [aux_sym__inline_repeat1] = STATE(131), - [anon_sym_LBRACE_] = ACTIONS(781), - [anon_sym__] = ACTIONS(783), - [anon_sym_LBRACE_STAR] = ACTIONS(785), - [anon_sym_STAR] = ACTIONS(787), - [anon_sym_BSLASH] = ACTIONS(789), - [sym_quotation_marks] = ACTIONS(791), - [sym_ellipsis] = ACTIONS(791), - [sym_em_dash] = ACTIONS(791), - [sym_en_dash] = ACTIONS(793), - [sym_backslash_escape] = ACTIONS(793), - [anon_sym_LT] = ACTIONS(795), - [anon_sym_LBRACE_EQ] = ACTIONS(797), - [anon_sym_LBRACE_PLUS] = ACTIONS(799), - [anon_sym_LBRACE_DASH] = ACTIONS(801), - [sym_symbol] = ACTIONS(791), - [anon_sym_LBRACE_CARET] = ACTIONS(803), - [anon_sym_CARET] = ACTIONS(803), - [anon_sym_LBRACE_TILDE] = ACTIONS(805), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_LBRACK_CARET] = ACTIONS(807), - [anon_sym_BANG_LBRACK] = ACTIONS(809), - [anon_sym_LBRACK] = ACTIONS(811), - [anon_sym_LBRACE2] = ACTIONS(793), - [anon_sym_DOLLAR] = ACTIONS(813), - [anon_sym_TODO] = ACTIONS(815), - [anon_sym_WIP] = ACTIONS(815), - [anon_sym_NOTE] = ACTIONS(817), - [anon_sym_INFO] = ACTIONS(817), - [anon_sym_XXX] = ACTIONS(817), - [sym_fixme] = ACTIONS(791), - [anon_sym_PIPE] = ACTIONS(791), - [sym__whitespace1] = ACTIONS(819), - [sym__newline] = ACTIONS(821), - [aux_sym__text_token1] = ACTIONS(823), - [sym__verbatim_begin] = ACTIONS(825), + [aux_sym__text] = STATE(155), + [aux_sym__inline_repeat1] = STATE(96), + [anon_sym_LBRACE_] = ACTIONS(785), + [anon_sym__] = ACTIONS(788), + [anon_sym_LBRACE_STAR] = ACTIONS(791), + [anon_sym_STAR] = ACTIONS(794), + [anon_sym_LBRACE_CARET] = ACTIONS(797), + [anon_sym_CARET] = ACTIONS(797), + [anon_sym_LBRACE_TILDE] = ACTIONS(800), + [anon_sym_TILDE] = ACTIONS(800), + [anon_sym_LBRACE_EQ] = ACTIONS(803), + [anon_sym_LBRACE_PLUS] = ACTIONS(806), + [anon_sym_LBRACE_DASH] = ACTIONS(809), + [anon_sym_BSLASH] = ACTIONS(812), + [sym_quotation_marks] = ACTIONS(815), + [sym_ellipsis] = ACTIONS(815), + [sym_em_dash] = ACTIONS(815), + [sym_en_dash] = ACTIONS(818), + [sym_backslash_escape] = ACTIONS(818), + [anon_sym_LT] = ACTIONS(821), + [sym_symbol] = ACTIONS(815), + [anon_sym_LBRACK_CARET] = ACTIONS(824), + [anon_sym_BANG_LBRACK] = ACTIONS(827), + [anon_sym_LBRACK] = ACTIONS(830), + [anon_sym_LBRACE2] = ACTIONS(818), + [anon_sym_DOLLAR] = ACTIONS(833), + [anon_sym_TODO] = ACTIONS(836), + [anon_sym_WIP] = ACTIONS(836), + [anon_sym_NOTE] = ACTIONS(839), + [anon_sym_INFO] = ACTIONS(839), + [anon_sym_XXX] = ACTIONS(839), + [sym_fixme] = ACTIONS(815), + [sym__whitespace1] = ACTIONS(842), + [sym__newline] = ACTIONS(845), + [aux_sym__text_token1] = ACTIONS(848), + [sym__verbatim_begin] = ACTIONS(851), + [sym_insert_end] = ACTIONS(549), }, [97] = { - [sym__inline] = STATE(734), - [sym__element] = STATE(106), + [sym__inline] = STATE(939), + [sym__element] = STATE(103), + [sym_emphasis] = STATE(180), + [sym_emphasis_begin] = STATE(1109), + [sym_strong] = STATE(180), + [sym_strong_begin] = STATE(1110), + [sym_superscript] = STATE(180), + [sym_superscript_begin] = STATE(1111), + [sym_subscript] = STATE(180), + [sym_subscript_begin] = STATE(1112), + [sym_highlighted] = STATE(180), + [sym_highlighted_begin] = STATE(1113), + [sym_insert] = STATE(180), + [sym_insert_begin] = STATE(1114), + [sym_delete] = STATE(180), + [sym_delete_begin] = STATE(1115), + [sym_hard_line_break] = STATE(180), + [sym__smart_punctuation] = STATE(180), + [sym_autolink] = STATE(180), + [sym_footnote_reference] = STATE(180), + [sym__image] = STATE(180), + [sym_full_reference_image] = STATE(180), + [sym_collapsed_reference_image] = STATE(180), + [sym_inline_image] = STATE(180), + [sym__image_description] = STATE(666), + [sym__link] = STATE(180), + [sym_full_reference_link] = STATE(180), + [sym_collapsed_reference_link] = STATE(180), + [sym_inline_link] = STATE(180), + [sym_link_text] = STATE(664), + [sym__comment_with_spaces] = STATE(180), + [sym_span] = STATE(180), + [sym_raw_inline] = STATE(180), + [sym_math] = STATE(180), + [sym_verbatim] = STATE(180), + [sym__todo_highlights] = STATE(180), + [sym_todo] = STATE(180), + [sym_note] = STATE(180), + [sym__symbol_fallback] = STATE(180), + [aux_sym__text] = STATE(159), + [aux_sym__inline_repeat1] = STATE(103), + [anon_sym_LBRACE_] = ACTIONS(221), + [anon_sym__] = ACTIONS(223), + [anon_sym_LBRACE_STAR] = ACTIONS(225), + [anon_sym_STAR] = ACTIONS(227), + [anon_sym_LBRACE_CARET] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym_LBRACE_TILDE] = ACTIONS(231), + [anon_sym_TILDE] = ACTIONS(231), + [anon_sym_LBRACE_EQ] = ACTIONS(233), + [anon_sym_LBRACE_PLUS] = ACTIONS(235), + [anon_sym_LBRACE_DASH] = ACTIONS(237), + [anon_sym_BSLASH] = ACTIONS(239), + [sym_quotation_marks] = ACTIONS(241), + [sym_ellipsis] = ACTIONS(241), + [sym_em_dash] = ACTIONS(241), + [sym_en_dash] = ACTIONS(243), + [sym_backslash_escape] = ACTIONS(243), + [anon_sym_LT] = ACTIONS(245), + [sym_symbol] = ACTIONS(241), + [anon_sym_LBRACK_CARET] = ACTIONS(247), + [anon_sym_BANG_LBRACK] = ACTIONS(249), + [anon_sym_LBRACK] = ACTIONS(251), + [anon_sym_LBRACE2] = ACTIONS(243), + [anon_sym_DOLLAR] = ACTIONS(253), + [anon_sym_TODO] = ACTIONS(255), + [anon_sym_WIP] = ACTIONS(255), + [anon_sym_NOTE] = ACTIONS(257), + [anon_sym_INFO] = ACTIONS(257), + [anon_sym_XXX] = ACTIONS(257), + [sym_fixme] = ACTIONS(241), + [sym__whitespace1] = ACTIONS(259), + [sym__newline] = ACTIONS(261), + [aux_sym__text_token1] = ACTIONS(263), + [sym__verbatim_begin] = ACTIONS(265), + }, + [98] = { + [sym__inline] = STATE(940), + [sym__element] = STATE(111), [sym_emphasis] = STATE(186), - [sym_emphasis_begin] = STATE(1006), + [sym_emphasis_begin] = STATE(1102), [sym_strong] = STATE(186), - [sym_strong_begin] = STATE(79), - [sym__hard_line_break] = STATE(186), - [sym_hard_line_break] = STATE(186), - [sym__smart_punctuation] = STATE(186), - [sym_autolink] = STATE(186), + [sym_strong_begin] = STATE(1103), + [sym_superscript] = STATE(186), + [sym_superscript_begin] = STATE(1104), + [sym_subscript] = STATE(186), + [sym_subscript_begin] = STATE(1105), [sym_highlighted] = STATE(186), + [sym_highlighted_begin] = STATE(1106), [sym_insert] = STATE(186), + [sym_insert_begin] = STATE(1107), [sym_delete] = STATE(186), - [sym_superscript] = STATE(186), - [sym_subscript] = STATE(186), + [sym_delete_begin] = STATE(1108), + [sym_hard_line_break] = STATE(186), + [sym__smart_punctuation] = STATE(186), + [sym_autolink] = STATE(186), [sym_footnote_reference] = STATE(186), [sym__image] = STATE(186), [sym_full_reference_image] = STATE(186), [sym_collapsed_reference_image] = STATE(186), [sym_inline_image] = STATE(186), - [sym__image_description] = STATE(714), + [sym__image_description] = STATE(673), [sym__link] = STATE(186), [sym_full_reference_link] = STATE(186), [sym_collapsed_reference_link] = STATE(186), [sym_inline_link] = STATE(186), - [sym_link_text] = STATE(713), + [sym_link_text] = STATE(672), [sym__comment_with_spaces] = STATE(186), [sym_span] = STATE(186), [sym_raw_inline] = STATE(186), @@ -15191,514 +13039,997 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(186), [sym_note] = STATE(186), [sym__symbol_fallback] = STATE(186), - [aux_sym__text] = STATE(160), - [aux_sym__inline_repeat1] = STATE(106), - [anon_sym_LBRACE_] = ACTIONS(546), - [anon_sym__] = ACTIONS(548), - [anon_sym_LBRACE_STAR] = ACTIONS(550), - [anon_sym_STAR] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(554), - [sym_quotation_marks] = ACTIONS(556), - [sym_ellipsis] = ACTIONS(556), - [sym_em_dash] = ACTIONS(556), - [sym_en_dash] = ACTIONS(558), - [sym_backslash_escape] = ACTIONS(558), - [anon_sym_LT] = ACTIONS(560), - [anon_sym_LBRACE_EQ] = ACTIONS(562), - [anon_sym_LBRACE_PLUS] = ACTIONS(564), - [anon_sym_LBRACE_DASH] = ACTIONS(566), - [sym_symbol] = ACTIONS(556), - [anon_sym_LBRACE_CARET] = ACTIONS(568), - [anon_sym_CARET] = ACTIONS(568), - [anon_sym_LBRACE_TILDE] = ACTIONS(570), - [anon_sym_TILDE] = ACTIONS(570), - [anon_sym_LBRACK_CARET] = ACTIONS(572), - [anon_sym_BANG_LBRACK] = ACTIONS(574), - [anon_sym_LBRACK] = ACTIONS(576), - [anon_sym_LBRACE2] = ACTIONS(558), - [anon_sym_DOLLAR] = ACTIONS(578), - [anon_sym_TODO] = ACTIONS(580), - [anon_sym_WIP] = ACTIONS(580), - [anon_sym_NOTE] = ACTIONS(582), - [anon_sym_INFO] = ACTIONS(582), - [anon_sym_XXX] = ACTIONS(582), - [sym_fixme] = ACTIONS(556), - [anon_sym_PIPE] = ACTIONS(556), - [sym__whitespace1] = ACTIONS(584), - [sym__newline] = ACTIONS(586), - [aux_sym__text_token1] = ACTIONS(588), - [sym__verbatim_begin] = ACTIONS(590), - }, - [98] = { - [sym__inline] = STATE(979), - [sym__element] = STATE(95), - [sym_emphasis] = STATE(191), - [sym_emphasis_begin] = STATE(1008), - [sym_strong] = STATE(191), - [sym_strong_begin] = STATE(90), - [sym__hard_line_break] = STATE(191), - [sym_hard_line_break] = STATE(191), - [sym__smart_punctuation] = STATE(191), - [sym_autolink] = STATE(191), - [sym_highlighted] = STATE(191), - [sym_insert] = STATE(191), - [sym_delete] = STATE(191), - [sym_superscript] = STATE(191), - [sym_subscript] = STATE(191), - [sym_footnote_reference] = STATE(191), - [sym__image] = STATE(191), - [sym_full_reference_image] = STATE(191), - [sym_collapsed_reference_image] = STATE(191), - [sym_inline_image] = STATE(191), - [sym__image_description] = STATE(699), - [sym__link] = STATE(191), - [sym_full_reference_link] = STATE(191), - [sym_collapsed_reference_link] = STATE(191), - [sym_inline_link] = STATE(191), - [sym_link_text] = STATE(698), - [sym__comment_with_spaces] = STATE(191), - [sym_span] = STATE(191), - [sym_raw_inline] = STATE(191), - [sym_math] = STATE(191), - [sym_verbatim] = STATE(191), - [sym__todo_highlights] = STATE(191), - [sym_todo] = STATE(191), - [sym_note] = STATE(191), - [sym__symbol_fallback] = STATE(191), - [aux_sym__text] = STATE(137), - [aux_sym__inline_repeat1] = STATE(95), - [anon_sym_LBRACE_] = ACTIONS(592), - [anon_sym__] = ACTIONS(594), - [anon_sym_LBRACE_STAR] = ACTIONS(596), - [anon_sym_STAR] = ACTIONS(598), - [anon_sym_BSLASH] = ACTIONS(600), - [sym_quotation_marks] = ACTIONS(602), - [sym_ellipsis] = ACTIONS(602), - [sym_em_dash] = ACTIONS(602), - [sym_en_dash] = ACTIONS(604), - [sym_backslash_escape] = ACTIONS(604), - [anon_sym_LT] = ACTIONS(606), - [anon_sym_LBRACE_EQ] = ACTIONS(608), - [anon_sym_LBRACE_PLUS] = ACTIONS(610), - [anon_sym_LBRACE_DASH] = ACTIONS(612), - [sym_symbol] = ACTIONS(602), - [anon_sym_LBRACE_CARET] = ACTIONS(614), - [anon_sym_CARET] = ACTIONS(614), - [anon_sym_LBRACE_TILDE] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(616), - [anon_sym_LBRACK_CARET] = ACTIONS(618), - [anon_sym_BANG_LBRACK] = ACTIONS(620), - [anon_sym_LBRACK] = ACTIONS(622), - [anon_sym_LBRACE2] = ACTIONS(604), - [anon_sym_DOLLAR] = ACTIONS(624), - [anon_sym_TODO] = ACTIONS(626), - [anon_sym_WIP] = ACTIONS(626), - [anon_sym_NOTE] = ACTIONS(628), - [anon_sym_INFO] = ACTIONS(628), - [anon_sym_XXX] = ACTIONS(628), - [sym_fixme] = ACTIONS(602), - [anon_sym_PIPE] = ACTIONS(602), - [sym__whitespace1] = ACTIONS(630), - [sym__newline] = ACTIONS(632), - [aux_sym__text_token1] = ACTIONS(634), - [sym__verbatim_begin] = ACTIONS(636), + [aux_sym__text] = STATE(155), + [aux_sym__inline_repeat1] = STATE(111), + [anon_sym_LBRACE_] = ACTIONS(267), + [anon_sym__] = ACTIONS(269), + [anon_sym_LBRACE_STAR] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_LBRACE_CARET] = ACTIONS(275), + [anon_sym_CARET] = ACTIONS(275), + [anon_sym_LBRACE_TILDE] = ACTIONS(277), + [anon_sym_TILDE] = ACTIONS(277), + [anon_sym_LBRACE_EQ] = ACTIONS(279), + [anon_sym_LBRACE_PLUS] = ACTIONS(281), + [anon_sym_LBRACE_DASH] = ACTIONS(283), + [anon_sym_BSLASH] = ACTIONS(285), + [sym_quotation_marks] = ACTIONS(287), + [sym_ellipsis] = ACTIONS(287), + [sym_em_dash] = ACTIONS(287), + [sym_en_dash] = ACTIONS(289), + [sym_backslash_escape] = ACTIONS(289), + [anon_sym_LT] = ACTIONS(291), + [sym_symbol] = ACTIONS(287), + [anon_sym_LBRACK_CARET] = ACTIONS(293), + [anon_sym_BANG_LBRACK] = ACTIONS(295), + [anon_sym_LBRACK] = ACTIONS(297), + [anon_sym_LBRACE2] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(299), + [anon_sym_TODO] = ACTIONS(301), + [anon_sym_WIP] = ACTIONS(301), + [anon_sym_NOTE] = ACTIONS(303), + [anon_sym_INFO] = ACTIONS(303), + [anon_sym_XXX] = ACTIONS(303), + [sym_fixme] = ACTIONS(287), + [sym__whitespace1] = ACTIONS(305), + [sym__newline] = ACTIONS(307), + [aux_sym__text_token1] = ACTIONS(309), + [sym__verbatim_begin] = ACTIONS(311), }, [99] = { - [sym__inline] = STATE(811), - [sym__element] = STATE(95), - [sym_emphasis] = STATE(191), - [sym_emphasis_begin] = STATE(1008), - [sym_strong] = STATE(191), - [sym_strong_begin] = STATE(90), - [sym__hard_line_break] = STATE(191), - [sym_hard_line_break] = STATE(191), - [sym__smart_punctuation] = STATE(191), - [sym_autolink] = STATE(191), - [sym_highlighted] = STATE(191), - [sym_insert] = STATE(191), - [sym_delete] = STATE(191), - [sym_superscript] = STATE(191), - [sym_subscript] = STATE(191), - [sym_footnote_reference] = STATE(191), - [sym__image] = STATE(191), - [sym_full_reference_image] = STATE(191), - [sym_collapsed_reference_image] = STATE(191), - [sym_inline_image] = STATE(191), - [sym__image_description] = STATE(699), - [sym__link] = STATE(191), - [sym_full_reference_link] = STATE(191), - [sym_collapsed_reference_link] = STATE(191), - [sym_inline_link] = STATE(191), - [sym_link_text] = STATE(698), - [sym__comment_with_spaces] = STATE(191), - [sym_span] = STATE(191), - [sym_raw_inline] = STATE(191), - [sym_math] = STATE(191), - [sym_verbatim] = STATE(191), - [sym__todo_highlights] = STATE(191), - [sym_todo] = STATE(191), - [sym_note] = STATE(191), - [sym__symbol_fallback] = STATE(191), - [aux_sym__text] = STATE(137), - [aux_sym__inline_repeat1] = STATE(95), - [anon_sym_LBRACE_] = ACTIONS(592), - [anon_sym__] = ACTIONS(594), - [anon_sym_LBRACE_STAR] = ACTIONS(596), - [anon_sym_STAR] = ACTIONS(598), - [anon_sym_BSLASH] = ACTIONS(600), - [sym_quotation_marks] = ACTIONS(602), - [sym_ellipsis] = ACTIONS(602), - [sym_em_dash] = ACTIONS(602), - [sym_en_dash] = ACTIONS(604), - [sym_backslash_escape] = ACTIONS(604), - [anon_sym_LT] = ACTIONS(606), - [anon_sym_LBRACE_EQ] = ACTIONS(608), - [anon_sym_LBRACE_PLUS] = ACTIONS(610), - [anon_sym_LBRACE_DASH] = ACTIONS(612), - [sym_symbol] = ACTIONS(602), - [anon_sym_LBRACE_CARET] = ACTIONS(614), - [anon_sym_CARET] = ACTIONS(614), - [anon_sym_LBRACE_TILDE] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(616), - [anon_sym_LBRACK_CARET] = ACTIONS(618), - [anon_sym_BANG_LBRACK] = ACTIONS(620), - [anon_sym_LBRACK] = ACTIONS(622), - [anon_sym_LBRACE2] = ACTIONS(604), - [anon_sym_DOLLAR] = ACTIONS(624), - [anon_sym_TODO] = ACTIONS(626), - [anon_sym_WIP] = ACTIONS(626), - [anon_sym_NOTE] = ACTIONS(628), - [anon_sym_INFO] = ACTIONS(628), - [anon_sym_XXX] = ACTIONS(628), - [sym_fixme] = ACTIONS(602), - [anon_sym_PIPE] = ACTIONS(602), - [sym__whitespace1] = ACTIONS(630), - [sym__newline] = ACTIONS(632), - [aux_sym__text_token1] = ACTIONS(634), - [sym__verbatim_begin] = ACTIONS(636), + [sym__inline] = STATE(941), + [sym__element] = STATE(115), + [sym_emphasis] = STATE(192), + [sym_emphasis_begin] = STATE(1095), + [sym_strong] = STATE(192), + [sym_strong_begin] = STATE(1096), + [sym_superscript] = STATE(192), + [sym_superscript_begin] = STATE(1097), + [sym_subscript] = STATE(192), + [sym_subscript_begin] = STATE(1098), + [sym_highlighted] = STATE(192), + [sym_highlighted_begin] = STATE(1099), + [sym_insert] = STATE(192), + [sym_insert_begin] = STATE(1100), + [sym_delete] = STATE(192), + [sym_delete_begin] = STATE(1101), + [sym_hard_line_break] = STATE(192), + [sym__smart_punctuation] = STATE(192), + [sym_autolink] = STATE(192), + [sym_footnote_reference] = STATE(192), + [sym__image] = STATE(192), + [sym_full_reference_image] = STATE(192), + [sym_collapsed_reference_image] = STATE(192), + [sym_inline_image] = STATE(192), + [sym__image_description] = STATE(684), + [sym__link] = STATE(192), + [sym_full_reference_link] = STATE(192), + [sym_collapsed_reference_link] = STATE(192), + [sym_inline_link] = STATE(192), + [sym_link_text] = STATE(683), + [sym__comment_with_spaces] = STATE(192), + [sym_span] = STATE(192), + [sym_raw_inline] = STATE(192), + [sym_math] = STATE(192), + [sym_verbatim] = STATE(192), + [sym__todo_highlights] = STATE(192), + [sym_todo] = STATE(192), + [sym_note] = STATE(192), + [sym__symbol_fallback] = STATE(192), + [aux_sym__text] = STATE(141), + [aux_sym__inline_repeat1] = STATE(115), + [anon_sym_LBRACE_] = ACTIONS(129), + [anon_sym__] = ACTIONS(131), + [anon_sym_LBRACE_STAR] = ACTIONS(133), + [anon_sym_STAR] = ACTIONS(135), + [anon_sym_LBRACE_CARET] = ACTIONS(137), + [anon_sym_CARET] = ACTIONS(137), + [anon_sym_LBRACE_TILDE] = ACTIONS(139), + [anon_sym_TILDE] = ACTIONS(139), + [anon_sym_LBRACE_EQ] = ACTIONS(141), + [anon_sym_LBRACE_PLUS] = ACTIONS(143), + [anon_sym_LBRACE_DASH] = ACTIONS(145), + [anon_sym_BSLASH] = ACTIONS(147), + [sym_quotation_marks] = ACTIONS(149), + [sym_ellipsis] = ACTIONS(149), + [sym_em_dash] = ACTIONS(149), + [sym_en_dash] = ACTIONS(151), + [sym_backslash_escape] = ACTIONS(151), + [anon_sym_LT] = ACTIONS(153), + [sym_symbol] = ACTIONS(149), + [anon_sym_LBRACK_CARET] = ACTIONS(155), + [anon_sym_BANG_LBRACK] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LBRACE2] = ACTIONS(151), + [anon_sym_DOLLAR] = ACTIONS(161), + [anon_sym_TODO] = ACTIONS(163), + [anon_sym_WIP] = ACTIONS(163), + [anon_sym_NOTE] = ACTIONS(165), + [anon_sym_INFO] = ACTIONS(165), + [anon_sym_XXX] = ACTIONS(165), + [sym_fixme] = ACTIONS(149), + [sym__whitespace1] = ACTIONS(167), + [sym__newline] = ACTIONS(169), + [aux_sym__text_token1] = ACTIONS(171), + [sym__verbatim_begin] = ACTIONS(173), }, [100] = { - [sym__element] = STATE(82), - [sym_emphasis] = STATE(198), - [sym_emphasis_begin] = STATE(970), - [sym_strong] = STATE(198), - [sym_strong_begin] = STATE(97), - [sym__hard_line_break] = STATE(198), - [sym_hard_line_break] = STATE(198), - [sym__smart_punctuation] = STATE(198), - [sym_autolink] = STATE(198), - [sym_highlighted] = STATE(198), - [sym_insert] = STATE(198), - [sym_delete] = STATE(198), - [sym_superscript] = STATE(198), - [sym_subscript] = STATE(198), - [sym_footnote_reference] = STATE(198), - [sym__image] = STATE(198), - [sym_full_reference_image] = STATE(198), - [sym_collapsed_reference_image] = STATE(198), - [sym_inline_image] = STATE(198), - [sym__image_description] = STATE(689), - [sym__link] = STATE(198), - [sym_full_reference_link] = STATE(198), - [sym_collapsed_reference_link] = STATE(198), - [sym_inline_link] = STATE(198), - [sym_link_text] = STATE(694), - [sym__comment_with_spaces] = STATE(198), - [sym_span] = STATE(198), - [sym_raw_inline] = STATE(198), - [sym_math] = STATE(198), - [sym_verbatim] = STATE(198), - [sym__todo_highlights] = STATE(198), - [sym_todo] = STATE(198), - [sym_note] = STATE(198), - [sym__symbol_fallback] = STATE(198), - [aux_sym__text] = STATE(168), - [aux_sym__inline_repeat1] = STATE(82), - [ts_builtin_sym_end] = ACTIONS(987), - [anon_sym_LBRACE_] = ACTIONS(3), - [anon_sym__] = ACTIONS(5), - [anon_sym_LBRACE_STAR] = ACTIONS(7), - [anon_sym_STAR] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(11), - [sym_quotation_marks] = ACTIONS(13), - [sym_ellipsis] = ACTIONS(13), - [sym_em_dash] = ACTIONS(13), - [sym_en_dash] = ACTIONS(15), - [sym_backslash_escape] = ACTIONS(15), - [anon_sym_LT] = ACTIONS(17), - [anon_sym_LBRACE_EQ] = ACTIONS(19), - [anon_sym_LBRACE_PLUS] = ACTIONS(21), - [anon_sym_LBRACE_DASH] = ACTIONS(23), - [sym_symbol] = ACTIONS(13), - [anon_sym_LBRACE_CARET] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(25), - [anon_sym_LBRACE_TILDE] = ACTIONS(27), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_LBRACK_CARET] = ACTIONS(29), - [anon_sym_BANG_LBRACK] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACE2] = ACTIONS(15), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_TODO] = ACTIONS(37), - [anon_sym_WIP] = ACTIONS(37), - [anon_sym_NOTE] = ACTIONS(39), - [anon_sym_INFO] = ACTIONS(39), - [anon_sym_XXX] = ACTIONS(39), - [sym_fixme] = ACTIONS(13), - [anon_sym_PIPE] = ACTIONS(13), - [sym__whitespace1] = ACTIONS(41), - [sym__newline] = ACTIONS(1061), - [aux_sym__text_token1] = ACTIONS(45), - [sym__verbatim_begin] = ACTIONS(47), + [sym__inline] = STATE(943), + [sym__element] = STATE(93), + [sym_emphasis] = STATE(197), + [sym_emphasis_begin] = STATE(1088), + [sym_strong] = STATE(197), + [sym_strong_begin] = STATE(1089), + [sym_superscript] = STATE(197), + [sym_superscript_begin] = STATE(1090), + [sym_subscript] = STATE(197), + [sym_subscript_begin] = STATE(1091), + [sym_highlighted] = STATE(197), + [sym_highlighted_begin] = STATE(1092), + [sym_insert] = STATE(197), + [sym_insert_begin] = STATE(1093), + [sym_delete] = STATE(197), + [sym_delete_begin] = STATE(1094), + [sym_hard_line_break] = STATE(197), + [sym__smart_punctuation] = STATE(197), + [sym_autolink] = STATE(197), + [sym_footnote_reference] = STATE(197), + [sym__image] = STATE(197), + [sym_full_reference_image] = STATE(197), + [sym_collapsed_reference_image] = STATE(197), + [sym_inline_image] = STATE(197), + [sym__image_description] = STATE(697), + [sym__link] = STATE(197), + [sym_full_reference_link] = STATE(197), + [sym_collapsed_reference_link] = STATE(197), + [sym_inline_link] = STATE(197), + [sym_link_text] = STATE(682), + [sym__comment_with_spaces] = STATE(197), + [sym_span] = STATE(197), + [sym_raw_inline] = STATE(197), + [sym_math] = STATE(197), + [sym_verbatim] = STATE(197), + [sym__todo_highlights] = STATE(197), + [sym_todo] = STATE(197), + [sym_note] = STATE(197), + [sym__symbol_fallback] = STATE(197), + [aux_sym__text] = STATE(134), + [aux_sym__inline_repeat1] = STATE(93), + [anon_sym_LBRACE_] = ACTIONS(313), + [anon_sym__] = ACTIONS(315), + [anon_sym_LBRACE_STAR] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_LBRACE_CARET] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [anon_sym_LBRACE_TILDE] = ACTIONS(323), + [anon_sym_TILDE] = ACTIONS(323), + [anon_sym_LBRACE_EQ] = ACTIONS(325), + [anon_sym_LBRACE_PLUS] = ACTIONS(327), + [anon_sym_LBRACE_DASH] = ACTIONS(329), + [anon_sym_BSLASH] = ACTIONS(331), + [sym_quotation_marks] = ACTIONS(333), + [sym_ellipsis] = ACTIONS(333), + [sym_em_dash] = ACTIONS(333), + [sym_en_dash] = ACTIONS(335), + [sym_backslash_escape] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(337), + [sym_symbol] = ACTIONS(333), + [anon_sym_LBRACK_CARET] = ACTIONS(339), + [anon_sym_BANG_LBRACK] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE2] = ACTIONS(335), + [anon_sym_DOLLAR] = ACTIONS(345), + [anon_sym_TODO] = ACTIONS(347), + [anon_sym_WIP] = ACTIONS(347), + [anon_sym_NOTE] = ACTIONS(349), + [anon_sym_INFO] = ACTIONS(349), + [anon_sym_XXX] = ACTIONS(349), + [sym_fixme] = ACTIONS(333), + [sym__whitespace1] = ACTIONS(351), + [sym__newline] = ACTIONS(353), + [aux_sym__text_token1] = ACTIONS(355), + [sym__verbatim_begin] = ACTIONS(357), }, [101] = { - [sym__inline_without_trailing_space] = STATE(810), - [sym__element] = STATE(582), - [sym_emphasis] = STATE(176), - [sym_emphasis_begin] = STATE(1007), - [sym_strong] = STATE(176), - [sym_strong_begin] = STATE(94), - [sym__hard_line_break] = STATE(176), - [sym_hard_line_break] = STATE(176), - [sym__smart_punctuation] = STATE(176), - [sym_autolink] = STATE(176), - [sym_highlighted] = STATE(176), - [sym_insert] = STATE(176), - [sym_delete] = STATE(176), - [sym_superscript] = STATE(176), - [sym_subscript] = STATE(176), - [sym_footnote_reference] = STATE(176), - [sym__image] = STATE(176), - [sym_full_reference_image] = STATE(176), - [sym_collapsed_reference_image] = STATE(176), - [sym_inline_image] = STATE(176), - [sym__image_description] = STATE(685), - [sym__link] = STATE(176), - [sym_full_reference_link] = STATE(176), - [sym_collapsed_reference_link] = STATE(176), - [sym_inline_link] = STATE(176), - [sym_link_text] = STATE(704), - [sym__comment_with_spaces] = STATE(176), - [sym_span] = STATE(176), - [sym_raw_inline] = STATE(176), - [sym_math] = STATE(176), - [sym_verbatim] = STATE(176), - [sym__todo_highlights] = STATE(176), - [sym_todo] = STATE(176), - [sym_note] = STATE(176), - [sym__symbol_fallback] = STATE(176), - [aux_sym__text] = STATE(161), - [aux_sym__inline_repeat1] = STATE(131), - [anon_sym_LBRACE_] = ACTIONS(781), - [anon_sym__] = ACTIONS(783), - [anon_sym_LBRACE_STAR] = ACTIONS(785), - [anon_sym_STAR] = ACTIONS(787), - [anon_sym_BSLASH] = ACTIONS(789), - [sym_quotation_marks] = ACTIONS(791), - [sym_ellipsis] = ACTIONS(791), - [sym_em_dash] = ACTIONS(791), - [sym_en_dash] = ACTIONS(793), - [sym_backslash_escape] = ACTIONS(793), - [anon_sym_LT] = ACTIONS(795), - [anon_sym_LBRACE_EQ] = ACTIONS(797), - [anon_sym_LBRACE_PLUS] = ACTIONS(799), - [anon_sym_LBRACE_DASH] = ACTIONS(801), - [sym_symbol] = ACTIONS(791), - [anon_sym_LBRACE_CARET] = ACTIONS(803), - [anon_sym_CARET] = ACTIONS(803), - [anon_sym_LBRACE_TILDE] = ACTIONS(805), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_LBRACK_CARET] = ACTIONS(807), - [anon_sym_BANG_LBRACK] = ACTIONS(809), - [anon_sym_LBRACK] = ACTIONS(811), - [anon_sym_LBRACE2] = ACTIONS(793), - [anon_sym_DOLLAR] = ACTIONS(813), - [anon_sym_TODO] = ACTIONS(815), - [anon_sym_WIP] = ACTIONS(815), - [anon_sym_NOTE] = ACTIONS(817), - [anon_sym_INFO] = ACTIONS(817), - [anon_sym_XXX] = ACTIONS(817), - [sym_fixme] = ACTIONS(791), - [anon_sym_PIPE] = ACTIONS(791), - [sym__whitespace1] = ACTIONS(819), - [sym__newline] = ACTIONS(821), - [aux_sym__text_token1] = ACTIONS(823), - [sym__verbatim_begin] = ACTIONS(825), + [sym__inline] = STATE(944), + [sym__element] = STATE(79), + [sym_emphasis] = STATE(161), + [sym_emphasis_begin] = STATE(1081), + [sym_strong] = STATE(161), + [sym_strong_begin] = STATE(1082), + [sym_superscript] = STATE(161), + [sym_superscript_begin] = STATE(1083), + [sym_subscript] = STATE(161), + [sym_subscript_begin] = STATE(1084), + [sym_highlighted] = STATE(161), + [sym_highlighted_begin] = STATE(1085), + [sym_insert] = STATE(161), + [sym_insert_begin] = STATE(1086), + [sym_delete] = STATE(161), + [sym_delete_begin] = STATE(1087), + [sym_hard_line_break] = STATE(161), + [sym__smart_punctuation] = STATE(161), + [sym_autolink] = STATE(161), + [sym_footnote_reference] = STATE(161), + [sym__image] = STATE(161), + [sym_full_reference_image] = STATE(161), + [sym_collapsed_reference_image] = STATE(161), + [sym_inline_image] = STATE(161), + [sym__image_description] = STATE(692), + [sym__link] = STATE(161), + [sym_full_reference_link] = STATE(161), + [sym_collapsed_reference_link] = STATE(161), + [sym_inline_link] = STATE(161), + [sym_link_text] = STATE(687), + [sym__comment_with_spaces] = STATE(161), + [sym_span] = STATE(161), + [sym_raw_inline] = STATE(161), + [sym_math] = STATE(161), + [sym_verbatim] = STATE(161), + [sym__todo_highlights] = STATE(161), + [sym_todo] = STATE(161), + [sym_note] = STATE(161), + [sym__symbol_fallback] = STATE(161), + [aux_sym__text] = STATE(149), + [aux_sym__inline_repeat1] = STATE(79), + [anon_sym_LBRACE_] = ACTIONS(359), + [anon_sym__] = ACTIONS(361), + [anon_sym_LBRACE_STAR] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(365), + [anon_sym_LBRACE_CARET] = ACTIONS(367), + [anon_sym_CARET] = ACTIONS(367), + [anon_sym_LBRACE_TILDE] = ACTIONS(369), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_LBRACE_EQ] = ACTIONS(371), + [anon_sym_LBRACE_PLUS] = ACTIONS(373), + [anon_sym_LBRACE_DASH] = ACTIONS(375), + [anon_sym_BSLASH] = ACTIONS(377), + [sym_quotation_marks] = ACTIONS(379), + [sym_ellipsis] = ACTIONS(379), + [sym_em_dash] = ACTIONS(379), + [sym_en_dash] = ACTIONS(381), + [sym_backslash_escape] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(383), + [sym_symbol] = ACTIONS(379), + [anon_sym_LBRACK_CARET] = ACTIONS(385), + [anon_sym_BANG_LBRACK] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE2] = ACTIONS(381), + [anon_sym_DOLLAR] = ACTIONS(391), + [anon_sym_TODO] = ACTIONS(393), + [anon_sym_WIP] = ACTIONS(393), + [anon_sym_NOTE] = ACTIONS(395), + [anon_sym_INFO] = ACTIONS(395), + [anon_sym_XXX] = ACTIONS(395), + [sym_fixme] = ACTIONS(379), + [sym__whitespace1] = ACTIONS(397), + [sym__newline] = ACTIONS(399), + [aux_sym__text_token1] = ACTIONS(401), + [sym__verbatim_begin] = ACTIONS(403), }, [102] = { - [sym__element] = STATE(103), - [sym_emphasis] = STATE(194), - [sym_emphasis_begin] = STATE(1003), - [sym_strong] = STATE(194), - [sym_strong_begin] = STATE(113), - [sym__hard_line_break] = STATE(194), - [sym_hard_line_break] = STATE(194), - [sym__smart_punctuation] = STATE(194), - [sym_autolink] = STATE(194), - [sym_highlighted] = STATE(194), - [sym_insert] = STATE(194), - [sym_delete] = STATE(194), - [sym_superscript] = STATE(194), - [sym_subscript] = STATE(194), - [sym_footnote_reference] = STATE(194), - [sym__image] = STATE(194), - [sym_full_reference_image] = STATE(194), - [sym_collapsed_reference_image] = STATE(194), - [sym_inline_image] = STATE(194), - [sym__image_description] = STATE(696), - [sym__link] = STATE(194), - [sym_full_reference_link] = STATE(194), - [sym_collapsed_reference_link] = STATE(194), - [sym_inline_link] = STATE(194), - [sym_link_text] = STATE(695), - [sym__comment_with_spaces] = STATE(194), - [sym_span] = STATE(194), - [sym_raw_inline] = STATE(194), - [sym_math] = STATE(194), - [sym_verbatim] = STATE(194), - [sym__todo_highlights] = STATE(194), - [sym_todo] = STATE(194), - [sym_note] = STATE(194), - [sym__symbol_fallback] = STATE(194), - [aux_sym__text] = STATE(170), - [aux_sym__inline_repeat1] = STATE(103), - [anon_sym_LBRACE_] = ACTIONS(1063), - [anon_sym__] = ACTIONS(1065), - [anon_sym_LBRACE_STAR] = ACTIONS(1067), - [anon_sym_STAR] = ACTIONS(1069), - [anon_sym_BSLASH] = ACTIONS(1071), - [sym_quotation_marks] = ACTIONS(1073), - [sym_ellipsis] = ACTIONS(1073), - [sym_em_dash] = ACTIONS(1073), - [sym_en_dash] = ACTIONS(1075), - [sym_backslash_escape] = ACTIONS(1075), - [anon_sym_LT] = ACTIONS(1077), - [anon_sym_LBRACE_EQ] = ACTIONS(1079), - [anon_sym_LBRACE_PLUS] = ACTIONS(1081), - [anon_sym_LBRACE_DASH] = ACTIONS(1083), - [sym_symbol] = ACTIONS(1073), - [anon_sym_LBRACE_CARET] = ACTIONS(1085), - [anon_sym_CARET] = ACTIONS(1087), - [anon_sym_CARET_RBRACE] = ACTIONS(987), - [anon_sym_LBRACE_TILDE] = ACTIONS(1089), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_LBRACK_CARET] = ACTIONS(1091), - [anon_sym_BANG_LBRACK] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(1095), - [anon_sym_LBRACE2] = ACTIONS(1075), - [anon_sym_DOLLAR] = ACTIONS(1097), - [anon_sym_TODO] = ACTIONS(1099), - [anon_sym_WIP] = ACTIONS(1099), - [anon_sym_NOTE] = ACTIONS(1101), - [anon_sym_INFO] = ACTIONS(1101), - [anon_sym_XXX] = ACTIONS(1101), - [sym_fixme] = ACTIONS(1073), - [anon_sym_PIPE] = ACTIONS(1073), - [sym__whitespace1] = ACTIONS(1103), - [sym__newline] = ACTIONS(1105), - [aux_sym__text_token1] = ACTIONS(1107), - [sym__verbatim_begin] = ACTIONS(1109), + [sym__inline_without_trailing_space] = STATE(945), + [sym__element] = STATE(572), + [sym_emphasis] = STATE(208), + [sym_emphasis_begin] = STATE(1074), + [sym_strong] = STATE(208), + [sym_strong_begin] = STATE(1075), + [sym_superscript] = STATE(208), + [sym_superscript_begin] = STATE(1076), + [sym_subscript] = STATE(208), + [sym_subscript_begin] = STATE(1077), + [sym_highlighted] = STATE(208), + [sym_highlighted_begin] = STATE(1078), + [sym_insert] = STATE(208), + [sym_insert_begin] = STATE(1079), + [sym_delete] = STATE(208), + [sym_delete_begin] = STATE(1080), + [sym_hard_line_break] = STATE(208), + [sym__smart_punctuation] = STATE(208), + [sym_autolink] = STATE(208), + [sym_footnote_reference] = STATE(208), + [sym__image] = STATE(208), + [sym_full_reference_image] = STATE(208), + [sym_collapsed_reference_image] = STATE(208), + [sym_inline_image] = STATE(208), + [sym__image_description] = STATE(680), + [sym__link] = STATE(208), + [sym_full_reference_link] = STATE(208), + [sym_collapsed_reference_link] = STATE(208), + [sym_inline_link] = STATE(208), + [sym_link_text] = STATE(663), + [sym__comment_with_spaces] = STATE(208), + [sym_span] = STATE(208), + [sym_raw_inline] = STATE(208), + [sym_math] = STATE(208), + [sym_verbatim] = STATE(208), + [sym__todo_highlights] = STATE(208), + [sym_todo] = STATE(208), + [sym_note] = STATE(208), + [sym__symbol_fallback] = STATE(208), + [aux_sym__text] = STATE(131), + [aux_sym__inline_repeat1] = STATE(130), + [anon_sym_LBRACE_] = ACTIONS(175), + [anon_sym__] = ACTIONS(177), + [anon_sym_LBRACE_STAR] = ACTIONS(179), + [anon_sym_STAR] = ACTIONS(181), + [anon_sym_LBRACE_CARET] = ACTIONS(183), + [anon_sym_CARET] = ACTIONS(183), + [anon_sym_LBRACE_TILDE] = ACTIONS(185), + [anon_sym_TILDE] = ACTIONS(185), + [anon_sym_LBRACE_EQ] = ACTIONS(187), + [anon_sym_LBRACE_PLUS] = ACTIONS(189), + [anon_sym_LBRACE_DASH] = ACTIONS(191), + [anon_sym_BSLASH] = ACTIONS(193), + [sym_quotation_marks] = ACTIONS(195), + [sym_ellipsis] = ACTIONS(195), + [sym_em_dash] = ACTIONS(195), + [sym_en_dash] = ACTIONS(197), + [sym_backslash_escape] = ACTIONS(197), + [anon_sym_LT] = ACTIONS(199), + [sym_symbol] = ACTIONS(195), + [anon_sym_LBRACK_CARET] = ACTIONS(201), + [anon_sym_BANG_LBRACK] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACE2] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(207), + [anon_sym_TODO] = ACTIONS(209), + [anon_sym_WIP] = ACTIONS(209), + [anon_sym_NOTE] = ACTIONS(211), + [anon_sym_INFO] = ACTIONS(211), + [anon_sym_XXX] = ACTIONS(211), + [sym_fixme] = ACTIONS(195), + [sym__whitespace1] = ACTIONS(213), + [sym__newline] = ACTIONS(215), + [aux_sym__text_token1] = ACTIONS(217), + [sym__verbatim_begin] = ACTIONS(219), }, [103] = { - [sym__element] = STATE(103), - [sym_emphasis] = STATE(194), - [sym_emphasis_begin] = STATE(1003), - [sym_strong] = STATE(194), - [sym_strong_begin] = STATE(113), - [sym__hard_line_break] = STATE(194), - [sym_hard_line_break] = STATE(194), - [sym__smart_punctuation] = STATE(194), - [sym_autolink] = STATE(194), - [sym_highlighted] = STATE(194), - [sym_insert] = STATE(194), - [sym_delete] = STATE(194), - [sym_superscript] = STATE(194), - [sym_subscript] = STATE(194), - [sym_footnote_reference] = STATE(194), - [sym__image] = STATE(194), - [sym_full_reference_image] = STATE(194), - [sym_collapsed_reference_image] = STATE(194), - [sym_inline_image] = STATE(194), - [sym__image_description] = STATE(696), - [sym__link] = STATE(194), - [sym_full_reference_link] = STATE(194), - [sym_collapsed_reference_link] = STATE(194), - [sym_inline_link] = STATE(194), - [sym_link_text] = STATE(695), - [sym__comment_with_spaces] = STATE(194), - [sym_span] = STATE(194), - [sym_raw_inline] = STATE(194), - [sym_math] = STATE(194), - [sym_verbatim] = STATE(194), - [sym__todo_highlights] = STATE(194), - [sym_todo] = STATE(194), - [sym_note] = STATE(194), - [sym__symbol_fallback] = STATE(194), - [aux_sym__text] = STATE(170), - [aux_sym__inline_repeat1] = STATE(103), - [anon_sym_LBRACE_] = ACTIONS(1111), - [anon_sym__] = ACTIONS(1114), - [anon_sym_LBRACE_STAR] = ACTIONS(1117), - [anon_sym_STAR] = ACTIONS(1120), - [anon_sym_BSLASH] = ACTIONS(1123), - [sym_quotation_marks] = ACTIONS(1126), - [sym_ellipsis] = ACTIONS(1126), - [sym_em_dash] = ACTIONS(1126), - [sym_en_dash] = ACTIONS(1129), - [sym_backslash_escape] = ACTIONS(1129), - [anon_sym_LT] = ACTIONS(1132), - [anon_sym_LBRACE_EQ] = ACTIONS(1135), - [anon_sym_LBRACE_PLUS] = ACTIONS(1138), - [anon_sym_LBRACE_DASH] = ACTIONS(1141), - [sym_symbol] = ACTIONS(1126), - [anon_sym_LBRACE_CARET] = ACTIONS(1144), - [anon_sym_CARET] = ACTIONS(1147), - [anon_sym_CARET_RBRACE] = ACTIONS(680), - [anon_sym_LBRACE_TILDE] = ACTIONS(1150), - [anon_sym_TILDE] = ACTIONS(1150), - [anon_sym_LBRACK_CARET] = ACTIONS(1153), - [anon_sym_BANG_LBRACK] = ACTIONS(1156), - [anon_sym_LBRACK] = ACTIONS(1159), - [anon_sym_LBRACE2] = ACTIONS(1129), - [anon_sym_DOLLAR] = ACTIONS(1162), - [anon_sym_TODO] = ACTIONS(1165), - [anon_sym_WIP] = ACTIONS(1165), - [anon_sym_NOTE] = ACTIONS(1168), - [anon_sym_INFO] = ACTIONS(1168), - [anon_sym_XXX] = ACTIONS(1168), - [sym_fixme] = ACTIONS(1126), - [anon_sym_PIPE] = ACTIONS(1126), - [sym__whitespace1] = ACTIONS(1171), - [sym__newline] = ACTIONS(1174), - [aux_sym__text_token1] = ACTIONS(1177), - [sym__verbatim_begin] = ACTIONS(1180), + [sym__element] = STATE(65), + [sym_emphasis] = STATE(180), + [sym_emphasis_begin] = STATE(1109), + [sym_strong] = STATE(180), + [sym_strong_begin] = STATE(1110), + [sym_superscript] = STATE(180), + [sym_superscript_begin] = STATE(1111), + [sym_subscript] = STATE(180), + [sym_subscript_begin] = STATE(1112), + [sym_highlighted] = STATE(180), + [sym_highlighted_begin] = STATE(1113), + [sym_insert] = STATE(180), + [sym_insert_begin] = STATE(1114), + [sym_delete] = STATE(180), + [sym_delete_begin] = STATE(1115), + [sym_hard_line_break] = STATE(180), + [sym__smart_punctuation] = STATE(180), + [sym_autolink] = STATE(180), + [sym_footnote_reference] = STATE(180), + [sym__image] = STATE(180), + [sym_full_reference_image] = STATE(180), + [sym_collapsed_reference_image] = STATE(180), + [sym_inline_image] = STATE(180), + [sym__image_description] = STATE(666), + [sym__link] = STATE(180), + [sym_full_reference_link] = STATE(180), + [sym_collapsed_reference_link] = STATE(180), + [sym_inline_link] = STATE(180), + [sym_link_text] = STATE(664), + [sym__comment_with_spaces] = STATE(180), + [sym_span] = STATE(180), + [sym_raw_inline] = STATE(180), + [sym_math] = STATE(180), + [sym_verbatim] = STATE(180), + [sym__todo_highlights] = STATE(180), + [sym_todo] = STATE(180), + [sym_note] = STATE(180), + [sym__symbol_fallback] = STATE(180), + [aux_sym__text] = STATE(159), + [aux_sym__inline_repeat1] = STATE(65), + [anon_sym_LBRACE_] = ACTIONS(221), + [anon_sym__] = ACTIONS(223), + [anon_sym_LBRACE_STAR] = ACTIONS(225), + [anon_sym_STAR] = ACTIONS(227), + [anon_sym_LBRACE_CARET] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym_LBRACE_TILDE] = ACTIONS(231), + [anon_sym_TILDE] = ACTIONS(231), + [anon_sym_LBRACE_EQ] = ACTIONS(233), + [anon_sym_LBRACE_PLUS] = ACTIONS(235), + [anon_sym_LBRACE_DASH] = ACTIONS(237), + [anon_sym_BSLASH] = ACTIONS(239), + [sym_quotation_marks] = ACTIONS(241), + [sym_ellipsis] = ACTIONS(241), + [sym_em_dash] = ACTIONS(241), + [sym_en_dash] = ACTIONS(243), + [sym_backslash_escape] = ACTIONS(243), + [anon_sym_LT] = ACTIONS(245), + [sym_symbol] = ACTIONS(241), + [anon_sym_LBRACK_CARET] = ACTIONS(247), + [anon_sym_BANG_LBRACK] = ACTIONS(249), + [anon_sym_LBRACK] = ACTIONS(251), + [anon_sym_LBRACE2] = ACTIONS(243), + [anon_sym_DOLLAR] = ACTIONS(253), + [anon_sym_TODO] = ACTIONS(255), + [anon_sym_WIP] = ACTIONS(255), + [anon_sym_NOTE] = ACTIONS(257), + [anon_sym_INFO] = ACTIONS(257), + [anon_sym_XXX] = ACTIONS(257), + [sym_fixme] = ACTIONS(241), + [sym__whitespace1] = ACTIONS(259), + [sym__newline] = ACTIONS(854), + [aux_sym__text_token1] = ACTIONS(263), + [sym__verbatim_begin] = ACTIONS(265), + [sym_delete_end] = ACTIONS(497), }, [104] = { [sym__element] = STATE(104), + [sym_emphasis] = STATE(161), + [sym_emphasis_begin] = STATE(1081), + [sym_strong] = STATE(161), + [sym_strong_begin] = STATE(1082), + [sym_superscript] = STATE(161), + [sym_superscript_begin] = STATE(1083), + [sym_subscript] = STATE(161), + [sym_subscript_begin] = STATE(1084), + [sym_highlighted] = STATE(161), + [sym_highlighted_begin] = STATE(1085), + [sym_insert] = STATE(161), + [sym_insert_begin] = STATE(1086), + [sym_delete] = STATE(161), + [sym_delete_begin] = STATE(1087), + [sym_hard_line_break] = STATE(161), + [sym__smart_punctuation] = STATE(161), + [sym_autolink] = STATE(161), + [sym_footnote_reference] = STATE(161), + [sym__image] = STATE(161), + [sym_full_reference_image] = STATE(161), + [sym_collapsed_reference_image] = STATE(161), + [sym_inline_image] = STATE(161), + [sym__image_description] = STATE(692), + [sym__link] = STATE(161), + [sym_full_reference_link] = STATE(161), + [sym_collapsed_reference_link] = STATE(161), + [sym_inline_link] = STATE(161), + [sym_link_text] = STATE(687), + [sym__comment_with_spaces] = STATE(161), + [sym_span] = STATE(161), + [sym_raw_inline] = STATE(161), + [sym_math] = STATE(161), + [sym_verbatim] = STATE(161), + [sym__todo_highlights] = STATE(161), + [sym_todo] = STATE(161), + [sym_note] = STATE(161), + [sym__symbol_fallback] = STATE(161), + [aux_sym__text] = STATE(149), + [aux_sym__inline_repeat1] = STATE(104), + [anon_sym_LBRACE_] = ACTIONS(856), + [anon_sym__] = ACTIONS(859), + [anon_sym_LBRACE_STAR] = ACTIONS(862), + [anon_sym_STAR] = ACTIONS(865), + [anon_sym_LBRACE_CARET] = ACTIONS(868), + [anon_sym_CARET] = ACTIONS(868), + [anon_sym_LBRACE_TILDE] = ACTIONS(871), + [anon_sym_TILDE] = ACTIONS(871), + [anon_sym_LBRACE_EQ] = ACTIONS(874), + [anon_sym_LBRACE_PLUS] = ACTIONS(877), + [anon_sym_LBRACE_DASH] = ACTIONS(880), + [anon_sym_BSLASH] = ACTIONS(883), + [sym_quotation_marks] = ACTIONS(886), + [sym_ellipsis] = ACTIONS(886), + [sym_em_dash] = ACTIONS(886), + [sym_en_dash] = ACTIONS(889), + [sym_backslash_escape] = ACTIONS(889), + [anon_sym_LT] = ACTIONS(892), + [sym_symbol] = ACTIONS(886), + [anon_sym_LBRACK_CARET] = ACTIONS(895), + [anon_sym_BANG_LBRACK] = ACTIONS(898), + [anon_sym_LBRACK] = ACTIONS(901), + [anon_sym_LBRACE2] = ACTIONS(889), + [anon_sym_DOLLAR] = ACTIONS(904), + [anon_sym_TODO] = ACTIONS(907), + [anon_sym_WIP] = ACTIONS(907), + [anon_sym_NOTE] = ACTIONS(910), + [anon_sym_INFO] = ACTIONS(910), + [anon_sym_XXX] = ACTIONS(910), + [sym_fixme] = ACTIONS(886), + [sym__whitespace1] = ACTIONS(913), + [sym__newline] = ACTIONS(916), + [aux_sym__text_token1] = ACTIONS(919), + [sym__verbatim_begin] = ACTIONS(922), + [sym_superscript_end] = ACTIONS(549), + }, + [105] = { + [sym__inline] = STATE(895), + [sym__element] = STATE(66), + [sym_emphasis] = STATE(171), + [sym_emphasis_begin] = STATE(1116), + [sym_strong] = STATE(171), + [sym_strong_begin] = STATE(1117), + [sym_superscript] = STATE(171), + [sym_superscript_begin] = STATE(1118), + [sym_subscript] = STATE(171), + [sym_subscript_begin] = STATE(1119), + [sym_highlighted] = STATE(171), + [sym_highlighted_begin] = STATE(1120), + [sym_insert] = STATE(171), + [sym_insert_begin] = STATE(1121), + [sym_delete] = STATE(171), + [sym_delete_begin] = STATE(1122), + [sym_hard_line_break] = STATE(171), + [sym__smart_punctuation] = STATE(171), + [sym_autolink] = STATE(171), + [sym_footnote_reference] = STATE(171), + [sym__image] = STATE(171), + [sym_full_reference_image] = STATE(171), + [sym_collapsed_reference_image] = STATE(171), + [sym_inline_image] = STATE(171), + [sym__image_description] = STATE(674), + [sym__link] = STATE(171), + [sym_full_reference_link] = STATE(171), + [sym_collapsed_reference_link] = STATE(171), + [sym_inline_link] = STATE(171), + [sym_link_text] = STATE(675), + [sym__comment_with_spaces] = STATE(171), + [sym_span] = STATE(171), + [sym_raw_inline] = STATE(171), + [sym_math] = STATE(171), + [sym_verbatim] = STATE(171), + [sym__todo_highlights] = STATE(171), + [sym_todo] = STATE(171), + [sym_note] = STATE(171), + [sym__symbol_fallback] = STATE(171), + [aux_sym__text] = STATE(146), + [aux_sym__inline_repeat1] = STATE(66), + [anon_sym_LBRACE_] = ACTIONS(451), + [anon_sym__] = ACTIONS(453), + [anon_sym_LBRACE_STAR] = ACTIONS(455), + [anon_sym_STAR] = ACTIONS(457), + [anon_sym_LBRACE_CARET] = ACTIONS(459), + [anon_sym_CARET] = ACTIONS(459), + [anon_sym_LBRACE_TILDE] = ACTIONS(461), + [anon_sym_TILDE] = ACTIONS(461), + [anon_sym_LBRACE_EQ] = ACTIONS(463), + [anon_sym_LBRACE_PLUS] = ACTIONS(465), + [anon_sym_LBRACE_DASH] = ACTIONS(467), + [anon_sym_BSLASH] = ACTIONS(469), + [sym_quotation_marks] = ACTIONS(471), + [sym_ellipsis] = ACTIONS(471), + [sym_em_dash] = ACTIONS(471), + [sym_en_dash] = ACTIONS(473), + [sym_backslash_escape] = ACTIONS(473), + [anon_sym_LT] = ACTIONS(475), + [sym_symbol] = ACTIONS(471), + [anon_sym_LBRACK_CARET] = ACTIONS(477), + [anon_sym_BANG_LBRACK] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(481), + [anon_sym_LBRACE2] = ACTIONS(473), + [anon_sym_DOLLAR] = ACTIONS(483), + [anon_sym_TODO] = ACTIONS(485), + [anon_sym_WIP] = ACTIONS(485), + [anon_sym_NOTE] = ACTIONS(487), + [anon_sym_INFO] = ACTIONS(487), + [anon_sym_XXX] = ACTIONS(487), + [sym_fixme] = ACTIONS(471), + [sym__whitespace1] = ACTIONS(489), + [sym__newline] = ACTIONS(491), + [aux_sym__text_token1] = ACTIONS(493), + [sym__verbatim_begin] = ACTIONS(495), + }, + [106] = { + [sym__element] = STATE(78), + [sym_emphasis] = STATE(211), + [sym_emphasis_begin] = STATE(1060), + [sym_strong] = STATE(211), + [sym_strong_begin] = STATE(1061), + [sym_superscript] = STATE(211), + [sym_superscript_begin] = STATE(1062), + [sym_subscript] = STATE(211), + [sym_subscript_begin] = STATE(1063), + [sym_highlighted] = STATE(211), + [sym_highlighted_begin] = STATE(1064), + [sym_insert] = STATE(211), + [sym_insert_begin] = STATE(1065), + [sym_delete] = STATE(211), + [sym_delete_begin] = STATE(1066), + [sym_hard_line_break] = STATE(211), + [sym__smart_punctuation] = STATE(211), + [sym_autolink] = STATE(211), + [sym_footnote_reference] = STATE(211), + [sym__image] = STATE(211), + [sym_full_reference_image] = STATE(211), + [sym_collapsed_reference_image] = STATE(211), + [sym_inline_image] = STATE(211), + [sym__image_description] = STATE(671), + [sym__link] = STATE(211), + [sym_full_reference_link] = STATE(211), + [sym_collapsed_reference_link] = STATE(211), + [sym_inline_link] = STATE(211), + [sym_link_text] = STATE(676), + [sym__comment_with_spaces] = STATE(211), + [sym_span] = STATE(211), + [sym_raw_inline] = STATE(211), + [sym_math] = STATE(211), + [sym_verbatim] = STATE(211), + [sym__todo_highlights] = STATE(211), + [sym_todo] = STATE(211), + [sym_note] = STATE(211), + [sym__symbol_fallback] = STATE(211), + [aux_sym__text] = STATE(139), + [aux_sym__inline_repeat1] = STATE(78), + [anon_sym_LBRACE_] = ACTIONS(925), + [anon_sym__] = ACTIONS(927), + [anon_sym_LBRACE_STAR] = ACTIONS(929), + [anon_sym_STAR] = ACTIONS(931), + [anon_sym_LBRACE_CARET] = ACTIONS(933), + [anon_sym_CARET] = ACTIONS(933), + [anon_sym_LBRACE_TILDE] = ACTIONS(935), + [anon_sym_TILDE] = ACTIONS(935), + [anon_sym_LBRACE_EQ] = ACTIONS(937), + [anon_sym_LBRACE_PLUS] = ACTIONS(939), + [anon_sym_LBRACE_DASH] = ACTIONS(941), + [anon_sym_BSLASH] = ACTIONS(943), + [sym_quotation_marks] = ACTIONS(945), + [sym_ellipsis] = ACTIONS(945), + [sym_em_dash] = ACTIONS(945), + [sym_en_dash] = ACTIONS(947), + [sym_backslash_escape] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(949), + [sym_symbol] = ACTIONS(945), + [anon_sym_LBRACK_CARET] = ACTIONS(951), + [anon_sym_RBRACK] = ACTIONS(497), + [anon_sym_BANG_LBRACK] = ACTIONS(953), + [anon_sym_LBRACK] = ACTIONS(955), + [anon_sym_LBRACE2] = ACTIONS(947), + [anon_sym_DOLLAR] = ACTIONS(957), + [anon_sym_TODO] = ACTIONS(959), + [anon_sym_WIP] = ACTIONS(959), + [anon_sym_NOTE] = ACTIONS(961), + [anon_sym_INFO] = ACTIONS(961), + [anon_sym_XXX] = ACTIONS(961), + [sym_fixme] = ACTIONS(945), + [sym__whitespace1] = ACTIONS(963), + [sym__newline] = ACTIONS(965), + [aux_sym__text_token1] = ACTIONS(967), + [sym__verbatim_begin] = ACTIONS(969), + }, + [107] = { + [sym__inline_without_trailing_space] = STATE(951), + [sym__element] = STATE(603), + [sym_emphasis] = STATE(177), + [sym_emphasis_begin] = STATE(1067), + [sym_strong] = STATE(177), + [sym_strong_begin] = STATE(1068), + [sym_superscript] = STATE(177), + [sym_superscript_begin] = STATE(1069), + [sym_subscript] = STATE(177), + [sym_subscript_begin] = STATE(1070), + [sym_highlighted] = STATE(177), + [sym_highlighted_begin] = STATE(1071), + [sym_insert] = STATE(177), + [sym_insert_begin] = STATE(1072), + [sym_delete] = STATE(177), + [sym_delete_begin] = STATE(1073), + [sym_hard_line_break] = STATE(177), + [sym__smart_punctuation] = STATE(177), + [sym_autolink] = STATE(177), + [sym_footnote_reference] = STATE(177), + [sym__image] = STATE(177), + [sym_full_reference_image] = STATE(177), + [sym_collapsed_reference_image] = STATE(177), + [sym_inline_image] = STATE(177), + [sym__image_description] = STATE(681), + [sym__link] = STATE(177), + [sym_full_reference_link] = STATE(177), + [sym_collapsed_reference_link] = STATE(177), + [sym_inline_link] = STATE(177), + [sym_link_text] = STATE(668), + [sym__comment_with_spaces] = STATE(177), + [sym_span] = STATE(177), + [sym_raw_inline] = STATE(177), + [sym_math] = STATE(177), + [sym_verbatim] = STATE(177), + [sym__todo_highlights] = STATE(177), + [sym_todo] = STATE(177), + [sym_note] = STATE(177), + [sym__symbol_fallback] = STATE(177), + [aux_sym__text] = STATE(132), + [aux_sym__inline_repeat1] = STATE(128), + [anon_sym_LBRACE_] = ACTIONS(405), + [anon_sym__] = ACTIONS(407), + [anon_sym_LBRACE_STAR] = ACTIONS(409), + [anon_sym_STAR] = ACTIONS(411), + [anon_sym_LBRACE_CARET] = ACTIONS(413), + [anon_sym_CARET] = ACTIONS(413), + [anon_sym_LBRACE_TILDE] = ACTIONS(415), + [anon_sym_TILDE] = ACTIONS(415), + [anon_sym_LBRACE_EQ] = ACTIONS(417), + [anon_sym_LBRACE_PLUS] = ACTIONS(419), + [anon_sym_LBRACE_DASH] = ACTIONS(421), + [anon_sym_BSLASH] = ACTIONS(423), + [sym_quotation_marks] = ACTIONS(425), + [sym_ellipsis] = ACTIONS(425), + [sym_em_dash] = ACTIONS(425), + [sym_en_dash] = ACTIONS(427), + [sym_backslash_escape] = ACTIONS(427), + [anon_sym_LT] = ACTIONS(429), + [sym_symbol] = ACTIONS(425), + [anon_sym_LBRACK_CARET] = ACTIONS(431), + [anon_sym_BANG_LBRACK] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LBRACE2] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(437), + [anon_sym_TODO] = ACTIONS(439), + [anon_sym_WIP] = ACTIONS(439), + [anon_sym_NOTE] = ACTIONS(441), + [anon_sym_INFO] = ACTIONS(441), + [anon_sym_XXX] = ACTIONS(441), + [sym_fixme] = ACTIONS(425), + [sym__whitespace1] = ACTIONS(443), + [sym__newline] = ACTIONS(445), + [aux_sym__text_token1] = ACTIONS(447), + [sym__verbatim_begin] = ACTIONS(449), + }, + [108] = { + [sym__inline] = STATE(891), + [sym__element] = STATE(93), + [sym_emphasis] = STATE(197), + [sym_emphasis_begin] = STATE(1088), + [sym_strong] = STATE(197), + [sym_strong_begin] = STATE(1089), + [sym_superscript] = STATE(197), + [sym_superscript_begin] = STATE(1090), + [sym_subscript] = STATE(197), + [sym_subscript_begin] = STATE(1091), + [sym_highlighted] = STATE(197), + [sym_highlighted_begin] = STATE(1092), + [sym_insert] = STATE(197), + [sym_insert_begin] = STATE(1093), + [sym_delete] = STATE(197), + [sym_delete_begin] = STATE(1094), + [sym_hard_line_break] = STATE(197), + [sym__smart_punctuation] = STATE(197), + [sym_autolink] = STATE(197), + [sym_footnote_reference] = STATE(197), + [sym__image] = STATE(197), + [sym_full_reference_image] = STATE(197), + [sym_collapsed_reference_image] = STATE(197), + [sym_inline_image] = STATE(197), + [sym__image_description] = STATE(697), + [sym__link] = STATE(197), + [sym_full_reference_link] = STATE(197), + [sym_collapsed_reference_link] = STATE(197), + [sym_inline_link] = STATE(197), + [sym_link_text] = STATE(682), + [sym__comment_with_spaces] = STATE(197), + [sym_span] = STATE(197), + [sym_raw_inline] = STATE(197), + [sym_math] = STATE(197), + [sym_verbatim] = STATE(197), + [sym__todo_highlights] = STATE(197), + [sym_todo] = STATE(197), + [sym_note] = STATE(197), + [sym__symbol_fallback] = STATE(197), + [aux_sym__text] = STATE(134), + [aux_sym__inline_repeat1] = STATE(93), + [anon_sym_LBRACE_] = ACTIONS(313), + [anon_sym__] = ACTIONS(315), + [anon_sym_LBRACE_STAR] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_LBRACE_CARET] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [anon_sym_LBRACE_TILDE] = ACTIONS(323), + [anon_sym_TILDE] = ACTIONS(323), + [anon_sym_LBRACE_EQ] = ACTIONS(325), + [anon_sym_LBRACE_PLUS] = ACTIONS(327), + [anon_sym_LBRACE_DASH] = ACTIONS(329), + [anon_sym_BSLASH] = ACTIONS(331), + [sym_quotation_marks] = ACTIONS(333), + [sym_ellipsis] = ACTIONS(333), + [sym_em_dash] = ACTIONS(333), + [sym_en_dash] = ACTIONS(335), + [sym_backslash_escape] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(337), + [sym_symbol] = ACTIONS(333), + [anon_sym_LBRACK_CARET] = ACTIONS(339), + [anon_sym_BANG_LBRACK] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE2] = ACTIONS(335), + [anon_sym_DOLLAR] = ACTIONS(345), + [anon_sym_TODO] = ACTIONS(347), + [anon_sym_WIP] = ACTIONS(347), + [anon_sym_NOTE] = ACTIONS(349), + [anon_sym_INFO] = ACTIONS(349), + [anon_sym_XXX] = ACTIONS(349), + [sym_fixme] = ACTIONS(333), + [sym__whitespace1] = ACTIONS(351), + [sym__newline] = ACTIONS(353), + [aux_sym__text_token1] = ACTIONS(355), + [sym__verbatim_begin] = ACTIONS(357), + }, + [109] = { + [sym__inline] = STATE(890), + [sym__element] = STATE(79), + [sym_emphasis] = STATE(161), + [sym_emphasis_begin] = STATE(1081), + [sym_strong] = STATE(161), + [sym_strong_begin] = STATE(1082), + [sym_superscript] = STATE(161), + [sym_superscript_begin] = STATE(1083), + [sym_subscript] = STATE(161), + [sym_subscript_begin] = STATE(1084), + [sym_highlighted] = STATE(161), + [sym_highlighted_begin] = STATE(1085), + [sym_insert] = STATE(161), + [sym_insert_begin] = STATE(1086), + [sym_delete] = STATE(161), + [sym_delete_begin] = STATE(1087), + [sym_hard_line_break] = STATE(161), + [sym__smart_punctuation] = STATE(161), + [sym_autolink] = STATE(161), + [sym_footnote_reference] = STATE(161), + [sym__image] = STATE(161), + [sym_full_reference_image] = STATE(161), + [sym_collapsed_reference_image] = STATE(161), + [sym_inline_image] = STATE(161), + [sym__image_description] = STATE(692), + [sym__link] = STATE(161), + [sym_full_reference_link] = STATE(161), + [sym_collapsed_reference_link] = STATE(161), + [sym_inline_link] = STATE(161), + [sym_link_text] = STATE(687), + [sym__comment_with_spaces] = STATE(161), + [sym_span] = STATE(161), + [sym_raw_inline] = STATE(161), + [sym_math] = STATE(161), + [sym_verbatim] = STATE(161), + [sym__todo_highlights] = STATE(161), + [sym_todo] = STATE(161), + [sym_note] = STATE(161), + [sym__symbol_fallback] = STATE(161), + [aux_sym__text] = STATE(149), + [aux_sym__inline_repeat1] = STATE(79), + [anon_sym_LBRACE_] = ACTIONS(359), + [anon_sym__] = ACTIONS(361), + [anon_sym_LBRACE_STAR] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(365), + [anon_sym_LBRACE_CARET] = ACTIONS(367), + [anon_sym_CARET] = ACTIONS(367), + [anon_sym_LBRACE_TILDE] = ACTIONS(369), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_LBRACE_EQ] = ACTIONS(371), + [anon_sym_LBRACE_PLUS] = ACTIONS(373), + [anon_sym_LBRACE_DASH] = ACTIONS(375), + [anon_sym_BSLASH] = ACTIONS(377), + [sym_quotation_marks] = ACTIONS(379), + [sym_ellipsis] = ACTIONS(379), + [sym_em_dash] = ACTIONS(379), + [sym_en_dash] = ACTIONS(381), + [sym_backslash_escape] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(383), + [sym_symbol] = ACTIONS(379), + [anon_sym_LBRACK_CARET] = ACTIONS(385), + [anon_sym_BANG_LBRACK] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE2] = ACTIONS(381), + [anon_sym_DOLLAR] = ACTIONS(391), + [anon_sym_TODO] = ACTIONS(393), + [anon_sym_WIP] = ACTIONS(393), + [anon_sym_NOTE] = ACTIONS(395), + [anon_sym_INFO] = ACTIONS(395), + [anon_sym_XXX] = ACTIONS(395), + [sym_fixme] = ACTIONS(379), + [sym__whitespace1] = ACTIONS(397), + [sym__newline] = ACTIONS(399), + [aux_sym__text_token1] = ACTIONS(401), + [sym__verbatim_begin] = ACTIONS(403), + }, + [110] = { + [sym__element] = STATE(110), + [sym_emphasis] = STATE(192), + [sym_emphasis_begin] = STATE(1095), + [sym_strong] = STATE(192), + [sym_strong_begin] = STATE(1096), + [sym_superscript] = STATE(192), + [sym_superscript_begin] = STATE(1097), + [sym_subscript] = STATE(192), + [sym_subscript_begin] = STATE(1098), + [sym_highlighted] = STATE(192), + [sym_highlighted_begin] = STATE(1099), + [sym_insert] = STATE(192), + [sym_insert_begin] = STATE(1100), + [sym_delete] = STATE(192), + [sym_delete_begin] = STATE(1101), + [sym_hard_line_break] = STATE(192), + [sym__smart_punctuation] = STATE(192), + [sym_autolink] = STATE(192), + [sym_footnote_reference] = STATE(192), + [sym__image] = STATE(192), + [sym_full_reference_image] = STATE(192), + [sym_collapsed_reference_image] = STATE(192), + [sym_inline_image] = STATE(192), + [sym__image_description] = STATE(684), + [sym__link] = STATE(192), + [sym_full_reference_link] = STATE(192), + [sym_collapsed_reference_link] = STATE(192), + [sym_inline_link] = STATE(192), + [sym_link_text] = STATE(683), + [sym__comment_with_spaces] = STATE(192), + [sym_span] = STATE(192), + [sym_raw_inline] = STATE(192), + [sym_math] = STATE(192), + [sym_verbatim] = STATE(192), + [sym__todo_highlights] = STATE(192), + [sym_todo] = STATE(192), + [sym_note] = STATE(192), + [sym__symbol_fallback] = STATE(192), + [aux_sym__text] = STATE(141), + [aux_sym__inline_repeat1] = STATE(110), + [anon_sym_LBRACE_] = ACTIONS(971), + [anon_sym__] = ACTIONS(974), + [anon_sym_LBRACE_STAR] = ACTIONS(977), + [anon_sym_STAR] = ACTIONS(980), + [anon_sym_LBRACE_CARET] = ACTIONS(983), + [anon_sym_CARET] = ACTIONS(983), + [anon_sym_LBRACE_TILDE] = ACTIONS(986), + [anon_sym_TILDE] = ACTIONS(986), + [anon_sym_LBRACE_EQ] = ACTIONS(989), + [anon_sym_LBRACE_PLUS] = ACTIONS(992), + [anon_sym_LBRACE_DASH] = ACTIONS(995), + [anon_sym_BSLASH] = ACTIONS(998), + [sym_quotation_marks] = ACTIONS(1001), + [sym_ellipsis] = ACTIONS(1001), + [sym_em_dash] = ACTIONS(1001), + [sym_en_dash] = ACTIONS(1004), + [sym_backslash_escape] = ACTIONS(1004), + [anon_sym_LT] = ACTIONS(1007), + [sym_symbol] = ACTIONS(1001), + [anon_sym_LBRACK_CARET] = ACTIONS(1010), + [anon_sym_BANG_LBRACK] = ACTIONS(1013), + [anon_sym_LBRACK] = ACTIONS(1016), + [anon_sym_LBRACE2] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(1019), + [anon_sym_TODO] = ACTIONS(1022), + [anon_sym_WIP] = ACTIONS(1022), + [anon_sym_NOTE] = ACTIONS(1025), + [anon_sym_INFO] = ACTIONS(1025), + [anon_sym_XXX] = ACTIONS(1025), + [sym_fixme] = ACTIONS(1001), + [sym__whitespace1] = ACTIONS(1028), + [sym__newline] = ACTIONS(1031), + [aux_sym__text_token1] = ACTIONS(1034), + [sym__verbatim_begin] = ACTIONS(1037), + [sym_highlighted_end] = ACTIONS(549), + }, + [111] = { + [sym__element] = STATE(96), [sym_emphasis] = STATE(186), - [sym_emphasis_begin] = STATE(1006), + [sym_emphasis_begin] = STATE(1102), [sym_strong] = STATE(186), - [sym_strong_begin] = STATE(79), - [sym__hard_line_break] = STATE(186), - [sym_hard_line_break] = STATE(186), - [sym__smart_punctuation] = STATE(186), - [sym_autolink] = STATE(186), + [sym_strong_begin] = STATE(1103), + [sym_superscript] = STATE(186), + [sym_superscript_begin] = STATE(1104), + [sym_subscript] = STATE(186), + [sym_subscript_begin] = STATE(1105), [sym_highlighted] = STATE(186), + [sym_highlighted_begin] = STATE(1106), [sym_insert] = STATE(186), + [sym_insert_begin] = STATE(1107), [sym_delete] = STATE(186), - [sym_superscript] = STATE(186), - [sym_subscript] = STATE(186), + [sym_delete_begin] = STATE(1108), + [sym_hard_line_break] = STATE(186), + [sym__smart_punctuation] = STATE(186), + [sym_autolink] = STATE(186), [sym_footnote_reference] = STATE(186), [sym__image] = STATE(186), [sym_full_reference_image] = STATE(186), [sym_collapsed_reference_image] = STATE(186), [sym_inline_image] = STATE(186), - [sym__image_description] = STATE(714), + [sym__image_description] = STATE(673), [sym__link] = STATE(186), [sym_full_reference_link] = STATE(186), [sym_collapsed_reference_link] = STATE(186), [sym_inline_link] = STATE(186), - [sym_link_text] = STATE(713), + [sym_link_text] = STATE(672), [sym__comment_with_spaces] = STATE(186), [sym_span] = STATE(186), [sym_raw_inline] = STATE(186), @@ -15708,664 +14039,537 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(186), [sym_note] = STATE(186), [sym__symbol_fallback] = STATE(186), - [aux_sym__text] = STATE(160), - [aux_sym__inline_repeat1] = STATE(104), - [anon_sym_LBRACE_] = ACTIONS(1183), - [anon_sym__] = ACTIONS(1186), - [anon_sym_LBRACE_STAR] = ACTIONS(1189), - [anon_sym_STAR] = ACTIONS(1192), - [aux_sym_strong_end_token1] = ACTIONS(680), - [anon_sym_BSLASH] = ACTIONS(1195), - [sym_quotation_marks] = ACTIONS(1198), - [sym_ellipsis] = ACTIONS(1198), - [sym_em_dash] = ACTIONS(1198), - [sym_en_dash] = ACTIONS(1201), - [sym_backslash_escape] = ACTIONS(1201), - [anon_sym_LT] = ACTIONS(1204), - [anon_sym_LBRACE_EQ] = ACTIONS(1207), - [anon_sym_LBRACE_PLUS] = ACTIONS(1210), - [anon_sym_LBRACE_DASH] = ACTIONS(1213), - [sym_symbol] = ACTIONS(1198), - [anon_sym_LBRACE_CARET] = ACTIONS(1216), - [anon_sym_CARET] = ACTIONS(1216), - [anon_sym_LBRACE_TILDE] = ACTIONS(1219), - [anon_sym_TILDE] = ACTIONS(1219), - [anon_sym_LBRACK_CARET] = ACTIONS(1222), - [anon_sym_BANG_LBRACK] = ACTIONS(1225), - [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LBRACE2] = ACTIONS(1201), - [anon_sym_DOLLAR] = ACTIONS(1231), - [anon_sym_TODO] = ACTIONS(1234), - [anon_sym_WIP] = ACTIONS(1234), - [anon_sym_NOTE] = ACTIONS(1237), - [anon_sym_INFO] = ACTIONS(1237), - [anon_sym_XXX] = ACTIONS(1237), - [sym_fixme] = ACTIONS(1198), - [anon_sym_PIPE] = ACTIONS(1198), - [sym__whitespace1] = ACTIONS(1240), - [sym__newline] = ACTIONS(1243), - [aux_sym__text_token1] = ACTIONS(1246), - [sym__verbatim_begin] = ACTIONS(1249), + [aux_sym__text] = STATE(155), + [aux_sym__inline_repeat1] = STATE(96), + [anon_sym_LBRACE_] = ACTIONS(267), + [anon_sym__] = ACTIONS(269), + [anon_sym_LBRACE_STAR] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_LBRACE_CARET] = ACTIONS(275), + [anon_sym_CARET] = ACTIONS(275), + [anon_sym_LBRACE_TILDE] = ACTIONS(277), + [anon_sym_TILDE] = ACTIONS(277), + [anon_sym_LBRACE_EQ] = ACTIONS(279), + [anon_sym_LBRACE_PLUS] = ACTIONS(281), + [anon_sym_LBRACE_DASH] = ACTIONS(283), + [anon_sym_BSLASH] = ACTIONS(285), + [sym_quotation_marks] = ACTIONS(287), + [sym_ellipsis] = ACTIONS(287), + [sym_em_dash] = ACTIONS(287), + [sym_en_dash] = ACTIONS(289), + [sym_backslash_escape] = ACTIONS(289), + [anon_sym_LT] = ACTIONS(291), + [sym_symbol] = ACTIONS(287), + [anon_sym_LBRACK_CARET] = ACTIONS(293), + [anon_sym_BANG_LBRACK] = ACTIONS(295), + [anon_sym_LBRACK] = ACTIONS(297), + [anon_sym_LBRACE2] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(299), + [anon_sym_TODO] = ACTIONS(301), + [anon_sym_WIP] = ACTIONS(301), + [anon_sym_NOTE] = ACTIONS(303), + [anon_sym_INFO] = ACTIONS(303), + [anon_sym_XXX] = ACTIONS(303), + [sym_fixme] = ACTIONS(287), + [sym__whitespace1] = ACTIONS(305), + [sym__newline] = ACTIONS(1040), + [aux_sym__text_token1] = ACTIONS(309), + [sym__verbatim_begin] = ACTIONS(311), + [sym_insert_end] = ACTIONS(497), }, - [105] = { - [sym__inline] = STATE(724), - [sym__element] = STATE(106), - [sym_emphasis] = STATE(186), - [sym_emphasis_begin] = STATE(1006), - [sym_strong] = STATE(186), - [sym_strong_begin] = STATE(79), - [sym__hard_line_break] = STATE(186), - [sym_hard_line_break] = STATE(186), - [sym__smart_punctuation] = STATE(186), - [sym_autolink] = STATE(186), - [sym_highlighted] = STATE(186), - [sym_insert] = STATE(186), - [sym_delete] = STATE(186), - [sym_superscript] = STATE(186), - [sym_subscript] = STATE(186), - [sym_footnote_reference] = STATE(186), - [sym__image] = STATE(186), - [sym_full_reference_image] = STATE(186), - [sym_collapsed_reference_image] = STATE(186), - [sym_inline_image] = STATE(186), - [sym__image_description] = STATE(714), - [sym__link] = STATE(186), - [sym_full_reference_link] = STATE(186), - [sym_collapsed_reference_link] = STATE(186), - [sym_inline_link] = STATE(186), - [sym_link_text] = STATE(713), - [sym__comment_with_spaces] = STATE(186), - [sym_span] = STATE(186), - [sym_raw_inline] = STATE(186), - [sym_math] = STATE(186), - [sym_verbatim] = STATE(186), - [sym__todo_highlights] = STATE(186), - [sym_todo] = STATE(186), - [sym_note] = STATE(186), - [sym__symbol_fallback] = STATE(186), - [aux_sym__text] = STATE(160), - [aux_sym__inline_repeat1] = STATE(106), - [anon_sym_LBRACE_] = ACTIONS(546), - [anon_sym__] = ACTIONS(548), - [anon_sym_LBRACE_STAR] = ACTIONS(550), - [anon_sym_STAR] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(554), - [sym_quotation_marks] = ACTIONS(556), - [sym_ellipsis] = ACTIONS(556), - [sym_em_dash] = ACTIONS(556), - [sym_en_dash] = ACTIONS(558), - [sym_backslash_escape] = ACTIONS(558), - [anon_sym_LT] = ACTIONS(560), - [anon_sym_LBRACE_EQ] = ACTIONS(562), - [anon_sym_LBRACE_PLUS] = ACTIONS(564), - [anon_sym_LBRACE_DASH] = ACTIONS(566), - [sym_symbol] = ACTIONS(556), - [anon_sym_LBRACE_CARET] = ACTIONS(568), - [anon_sym_CARET] = ACTIONS(568), - [anon_sym_LBRACE_TILDE] = ACTIONS(570), - [anon_sym_TILDE] = ACTIONS(570), - [anon_sym_LBRACK_CARET] = ACTIONS(572), - [anon_sym_BANG_LBRACK] = ACTIONS(574), - [anon_sym_LBRACK] = ACTIONS(576), - [anon_sym_LBRACE2] = ACTIONS(558), - [anon_sym_DOLLAR] = ACTIONS(578), - [anon_sym_TODO] = ACTIONS(580), - [anon_sym_WIP] = ACTIONS(580), - [anon_sym_NOTE] = ACTIONS(582), - [anon_sym_INFO] = ACTIONS(582), - [anon_sym_XXX] = ACTIONS(582), - [sym_fixme] = ACTIONS(556), - [anon_sym_PIPE] = ACTIONS(556), - [sym__whitespace1] = ACTIONS(584), - [sym__newline] = ACTIONS(586), - [aux_sym__text_token1] = ACTIONS(588), - [sym__verbatim_begin] = ACTIONS(590), + [112] = { + [sym__inline_without_trailing_space] = STATE(889), + [sym__element] = STATE(572), + [sym_emphasis] = STATE(208), + [sym_emphasis_begin] = STATE(1074), + [sym_strong] = STATE(208), + [sym_strong_begin] = STATE(1075), + [sym_superscript] = STATE(208), + [sym_superscript_begin] = STATE(1076), + [sym_subscript] = STATE(208), + [sym_subscript_begin] = STATE(1077), + [sym_highlighted] = STATE(208), + [sym_highlighted_begin] = STATE(1078), + [sym_insert] = STATE(208), + [sym_insert_begin] = STATE(1079), + [sym_delete] = STATE(208), + [sym_delete_begin] = STATE(1080), + [sym_hard_line_break] = STATE(208), + [sym__smart_punctuation] = STATE(208), + [sym_autolink] = STATE(208), + [sym_footnote_reference] = STATE(208), + [sym__image] = STATE(208), + [sym_full_reference_image] = STATE(208), + [sym_collapsed_reference_image] = STATE(208), + [sym_inline_image] = STATE(208), + [sym__image_description] = STATE(680), + [sym__link] = STATE(208), + [sym_full_reference_link] = STATE(208), + [sym_collapsed_reference_link] = STATE(208), + [sym_inline_link] = STATE(208), + [sym_link_text] = STATE(663), + [sym__comment_with_spaces] = STATE(208), + [sym_span] = STATE(208), + [sym_raw_inline] = STATE(208), + [sym_math] = STATE(208), + [sym_verbatim] = STATE(208), + [sym__todo_highlights] = STATE(208), + [sym_todo] = STATE(208), + [sym_note] = STATE(208), + [sym__symbol_fallback] = STATE(208), + [aux_sym__text] = STATE(131), + [aux_sym__inline_repeat1] = STATE(130), + [anon_sym_LBRACE_] = ACTIONS(175), + [anon_sym__] = ACTIONS(177), + [anon_sym_LBRACE_STAR] = ACTIONS(179), + [anon_sym_STAR] = ACTIONS(181), + [anon_sym_LBRACE_CARET] = ACTIONS(183), + [anon_sym_CARET] = ACTIONS(183), + [anon_sym_LBRACE_TILDE] = ACTIONS(185), + [anon_sym_TILDE] = ACTIONS(185), + [anon_sym_LBRACE_EQ] = ACTIONS(187), + [anon_sym_LBRACE_PLUS] = ACTIONS(189), + [anon_sym_LBRACE_DASH] = ACTIONS(191), + [anon_sym_BSLASH] = ACTIONS(193), + [sym_quotation_marks] = ACTIONS(195), + [sym_ellipsis] = ACTIONS(195), + [sym_em_dash] = ACTIONS(195), + [sym_en_dash] = ACTIONS(197), + [sym_backslash_escape] = ACTIONS(197), + [anon_sym_LT] = ACTIONS(199), + [sym_symbol] = ACTIONS(195), + [anon_sym_LBRACK_CARET] = ACTIONS(201), + [anon_sym_BANG_LBRACK] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACE2] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(207), + [anon_sym_TODO] = ACTIONS(209), + [anon_sym_WIP] = ACTIONS(209), + [anon_sym_NOTE] = ACTIONS(211), + [anon_sym_INFO] = ACTIONS(211), + [anon_sym_XXX] = ACTIONS(211), + [sym_fixme] = ACTIONS(195), + [sym__whitespace1] = ACTIONS(213), + [sym__newline] = ACTIONS(215), + [aux_sym__text_token1] = ACTIONS(217), + [sym__verbatim_begin] = ACTIONS(219), }, - [106] = { - [sym__element] = STATE(104), - [sym_emphasis] = STATE(186), - [sym_emphasis_begin] = STATE(1006), - [sym_strong] = STATE(186), - [sym_strong_begin] = STATE(79), - [sym__hard_line_break] = STATE(186), - [sym_hard_line_break] = STATE(186), - [sym__smart_punctuation] = STATE(186), - [sym_autolink] = STATE(186), - [sym_highlighted] = STATE(186), - [sym_insert] = STATE(186), - [sym_delete] = STATE(186), - [sym_superscript] = STATE(186), - [sym_subscript] = STATE(186), - [sym_footnote_reference] = STATE(186), - [sym__image] = STATE(186), - [sym_full_reference_image] = STATE(186), - [sym_collapsed_reference_image] = STATE(186), - [sym_inline_image] = STATE(186), - [sym__image_description] = STATE(714), - [sym__link] = STATE(186), - [sym_full_reference_link] = STATE(186), - [sym_collapsed_reference_link] = STATE(186), - [sym_inline_link] = STATE(186), - [sym_link_text] = STATE(713), - [sym__comment_with_spaces] = STATE(186), - [sym_span] = STATE(186), - [sym_raw_inline] = STATE(186), - [sym_math] = STATE(186), - [sym_verbatim] = STATE(186), - [sym__todo_highlights] = STATE(186), - [sym_todo] = STATE(186), - [sym_note] = STATE(186), - [sym__symbol_fallback] = STATE(186), - [aux_sym__text] = STATE(160), - [aux_sym__inline_repeat1] = STATE(104), - [anon_sym_LBRACE_] = ACTIONS(546), - [anon_sym__] = ACTIONS(548), - [anon_sym_LBRACE_STAR] = ACTIONS(550), - [anon_sym_STAR] = ACTIONS(1087), - [aux_sym_strong_end_token1] = ACTIONS(987), - [anon_sym_BSLASH] = ACTIONS(554), - [sym_quotation_marks] = ACTIONS(556), - [sym_ellipsis] = ACTIONS(556), - [sym_em_dash] = ACTIONS(556), - [sym_en_dash] = ACTIONS(558), - [sym_backslash_escape] = ACTIONS(558), - [anon_sym_LT] = ACTIONS(560), - [anon_sym_LBRACE_EQ] = ACTIONS(562), - [anon_sym_LBRACE_PLUS] = ACTIONS(564), - [anon_sym_LBRACE_DASH] = ACTIONS(566), - [sym_symbol] = ACTIONS(556), - [anon_sym_LBRACE_CARET] = ACTIONS(568), - [anon_sym_CARET] = ACTIONS(568), - [anon_sym_LBRACE_TILDE] = ACTIONS(570), - [anon_sym_TILDE] = ACTIONS(570), - [anon_sym_LBRACK_CARET] = ACTIONS(572), - [anon_sym_BANG_LBRACK] = ACTIONS(574), - [anon_sym_LBRACK] = ACTIONS(576), - [anon_sym_LBRACE2] = ACTIONS(558), - [anon_sym_DOLLAR] = ACTIONS(578), - [anon_sym_TODO] = ACTIONS(580), - [anon_sym_WIP] = ACTIONS(580), - [anon_sym_NOTE] = ACTIONS(582), - [anon_sym_INFO] = ACTIONS(582), - [anon_sym_XXX] = ACTIONS(582), - [sym_fixme] = ACTIONS(556), - [anon_sym_PIPE] = ACTIONS(556), - [sym__whitespace1] = ACTIONS(1252), - [sym__newline] = ACTIONS(1254), - [aux_sym__text_token1] = ACTIONS(588), - [sym__verbatim_begin] = ACTIONS(590), + [113] = { + [sym__inline_without_trailing_space] = STATE(888), + [sym__element] = STATE(603), + [sym_emphasis] = STATE(177), + [sym_emphasis_begin] = STATE(1067), + [sym_strong] = STATE(177), + [sym_strong_begin] = STATE(1068), + [sym_superscript] = STATE(177), + [sym_superscript_begin] = STATE(1069), + [sym_subscript] = STATE(177), + [sym_subscript_begin] = STATE(1070), + [sym_highlighted] = STATE(177), + [sym_highlighted_begin] = STATE(1071), + [sym_insert] = STATE(177), + [sym_insert_begin] = STATE(1072), + [sym_delete] = STATE(177), + [sym_delete_begin] = STATE(1073), + [sym_hard_line_break] = STATE(177), + [sym__smart_punctuation] = STATE(177), + [sym_autolink] = STATE(177), + [sym_footnote_reference] = STATE(177), + [sym__image] = STATE(177), + [sym_full_reference_image] = STATE(177), + [sym_collapsed_reference_image] = STATE(177), + [sym_inline_image] = STATE(177), + [sym__image_description] = STATE(681), + [sym__link] = STATE(177), + [sym_full_reference_link] = STATE(177), + [sym_collapsed_reference_link] = STATE(177), + [sym_inline_link] = STATE(177), + [sym_link_text] = STATE(668), + [sym__comment_with_spaces] = STATE(177), + [sym_span] = STATE(177), + [sym_raw_inline] = STATE(177), + [sym_math] = STATE(177), + [sym_verbatim] = STATE(177), + [sym__todo_highlights] = STATE(177), + [sym_todo] = STATE(177), + [sym_note] = STATE(177), + [sym__symbol_fallback] = STATE(177), + [aux_sym__text] = STATE(132), + [aux_sym__inline_repeat1] = STATE(128), + [anon_sym_LBRACE_] = ACTIONS(405), + [anon_sym__] = ACTIONS(407), + [anon_sym_LBRACE_STAR] = ACTIONS(409), + [anon_sym_STAR] = ACTIONS(411), + [anon_sym_LBRACE_CARET] = ACTIONS(413), + [anon_sym_CARET] = ACTIONS(413), + [anon_sym_LBRACE_TILDE] = ACTIONS(415), + [anon_sym_TILDE] = ACTIONS(415), + [anon_sym_LBRACE_EQ] = ACTIONS(417), + [anon_sym_LBRACE_PLUS] = ACTIONS(419), + [anon_sym_LBRACE_DASH] = ACTIONS(421), + [anon_sym_BSLASH] = ACTIONS(423), + [sym_quotation_marks] = ACTIONS(425), + [sym_ellipsis] = ACTIONS(425), + [sym_em_dash] = ACTIONS(425), + [sym_en_dash] = ACTIONS(427), + [sym_backslash_escape] = ACTIONS(427), + [anon_sym_LT] = ACTIONS(429), + [sym_symbol] = ACTIONS(425), + [anon_sym_LBRACK_CARET] = ACTIONS(431), + [anon_sym_BANG_LBRACK] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LBRACE2] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(437), + [anon_sym_TODO] = ACTIONS(439), + [anon_sym_WIP] = ACTIONS(439), + [anon_sym_NOTE] = ACTIONS(441), + [anon_sym_INFO] = ACTIONS(441), + [anon_sym_XXX] = ACTIONS(441), + [sym_fixme] = ACTIONS(425), + [sym__whitespace1] = ACTIONS(443), + [sym__newline] = ACTIONS(445), + [aux_sym__text_token1] = ACTIONS(447), + [sym__verbatim_begin] = ACTIONS(449), }, - [107] = { - [sym__inline] = STATE(876), - [sym__element] = STATE(95), - [sym_emphasis] = STATE(191), - [sym_emphasis_begin] = STATE(1008), - [sym_strong] = STATE(191), - [sym_strong_begin] = STATE(90), - [sym__hard_line_break] = STATE(191), - [sym_hard_line_break] = STATE(191), - [sym__smart_punctuation] = STATE(191), - [sym_autolink] = STATE(191), - [sym_highlighted] = STATE(191), - [sym_insert] = STATE(191), - [sym_delete] = STATE(191), - [sym_superscript] = STATE(191), - [sym_subscript] = STATE(191), - [sym_footnote_reference] = STATE(191), - [sym__image] = STATE(191), - [sym_full_reference_image] = STATE(191), - [sym_collapsed_reference_image] = STATE(191), - [sym_inline_image] = STATE(191), - [sym__image_description] = STATE(699), - [sym__link] = STATE(191), - [sym_full_reference_link] = STATE(191), - [sym_collapsed_reference_link] = STATE(191), - [sym_inline_link] = STATE(191), - [sym_link_text] = STATE(698), - [sym__comment_with_spaces] = STATE(191), - [sym_span] = STATE(191), - [sym_raw_inline] = STATE(191), - [sym_math] = STATE(191), - [sym_verbatim] = STATE(191), - [sym__todo_highlights] = STATE(191), - [sym_todo] = STATE(191), - [sym_note] = STATE(191), - [sym__symbol_fallback] = STATE(191), - [aux_sym__text] = STATE(137), - [aux_sym__inline_repeat1] = STATE(95), - [anon_sym_LBRACE_] = ACTIONS(592), - [anon_sym__] = ACTIONS(594), - [anon_sym_LBRACE_STAR] = ACTIONS(596), - [anon_sym_STAR] = ACTIONS(598), - [anon_sym_BSLASH] = ACTIONS(600), - [sym_quotation_marks] = ACTIONS(602), - [sym_ellipsis] = ACTIONS(602), - [sym_em_dash] = ACTIONS(602), - [sym_en_dash] = ACTIONS(604), - [sym_backslash_escape] = ACTIONS(604), - [anon_sym_LT] = ACTIONS(606), - [anon_sym_LBRACE_EQ] = ACTIONS(608), - [anon_sym_LBRACE_PLUS] = ACTIONS(610), - [anon_sym_LBRACE_DASH] = ACTIONS(612), - [sym_symbol] = ACTIONS(602), - [anon_sym_LBRACE_CARET] = ACTIONS(614), - [anon_sym_CARET] = ACTIONS(614), - [anon_sym_LBRACE_TILDE] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(616), - [anon_sym_LBRACK_CARET] = ACTIONS(618), - [anon_sym_BANG_LBRACK] = ACTIONS(620), - [anon_sym_LBRACK] = ACTIONS(622), - [anon_sym_LBRACE2] = ACTIONS(604), - [anon_sym_DOLLAR] = ACTIONS(624), - [anon_sym_TODO] = ACTIONS(626), - [anon_sym_WIP] = ACTIONS(626), - [anon_sym_NOTE] = ACTIONS(628), - [anon_sym_INFO] = ACTIONS(628), - [anon_sym_XXX] = ACTIONS(628), - [sym_fixme] = ACTIONS(602), - [anon_sym_PIPE] = ACTIONS(602), - [sym__whitespace1] = ACTIONS(630), - [sym__newline] = ACTIONS(632), - [aux_sym__text_token1] = ACTIONS(634), - [sym__verbatim_begin] = ACTIONS(636), + [114] = { + [sym__inline] = STATE(865), + [sym__element] = STATE(66), + [sym_emphasis] = STATE(171), + [sym_emphasis_begin] = STATE(1116), + [sym_strong] = STATE(171), + [sym_strong_begin] = STATE(1117), + [sym_superscript] = STATE(171), + [sym_superscript_begin] = STATE(1118), + [sym_subscript] = STATE(171), + [sym_subscript_begin] = STATE(1119), + [sym_highlighted] = STATE(171), + [sym_highlighted_begin] = STATE(1120), + [sym_insert] = STATE(171), + [sym_insert_begin] = STATE(1121), + [sym_delete] = STATE(171), + [sym_delete_begin] = STATE(1122), + [sym_hard_line_break] = STATE(171), + [sym__smart_punctuation] = STATE(171), + [sym_autolink] = STATE(171), + [sym_footnote_reference] = STATE(171), + [sym__image] = STATE(171), + [sym_full_reference_image] = STATE(171), + [sym_collapsed_reference_image] = STATE(171), + [sym_inline_image] = STATE(171), + [sym__image_description] = STATE(674), + [sym__link] = STATE(171), + [sym_full_reference_link] = STATE(171), + [sym_collapsed_reference_link] = STATE(171), + [sym_inline_link] = STATE(171), + [sym_link_text] = STATE(675), + [sym__comment_with_spaces] = STATE(171), + [sym_span] = STATE(171), + [sym_raw_inline] = STATE(171), + [sym_math] = STATE(171), + [sym_verbatim] = STATE(171), + [sym__todo_highlights] = STATE(171), + [sym_todo] = STATE(171), + [sym_note] = STATE(171), + [sym__symbol_fallback] = STATE(171), + [aux_sym__text] = STATE(146), + [aux_sym__inline_repeat1] = STATE(66), + [anon_sym_LBRACE_] = ACTIONS(451), + [anon_sym__] = ACTIONS(453), + [anon_sym_LBRACE_STAR] = ACTIONS(455), + [anon_sym_STAR] = ACTIONS(457), + [anon_sym_LBRACE_CARET] = ACTIONS(459), + [anon_sym_CARET] = ACTIONS(459), + [anon_sym_LBRACE_TILDE] = ACTIONS(461), + [anon_sym_TILDE] = ACTIONS(461), + [anon_sym_LBRACE_EQ] = ACTIONS(463), + [anon_sym_LBRACE_PLUS] = ACTIONS(465), + [anon_sym_LBRACE_DASH] = ACTIONS(467), + [anon_sym_BSLASH] = ACTIONS(469), + [sym_quotation_marks] = ACTIONS(471), + [sym_ellipsis] = ACTIONS(471), + [sym_em_dash] = ACTIONS(471), + [sym_en_dash] = ACTIONS(473), + [sym_backslash_escape] = ACTIONS(473), + [anon_sym_LT] = ACTIONS(475), + [sym_symbol] = ACTIONS(471), + [anon_sym_LBRACK_CARET] = ACTIONS(477), + [anon_sym_BANG_LBRACK] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(481), + [anon_sym_LBRACE2] = ACTIONS(473), + [anon_sym_DOLLAR] = ACTIONS(483), + [anon_sym_TODO] = ACTIONS(485), + [anon_sym_WIP] = ACTIONS(485), + [anon_sym_NOTE] = ACTIONS(487), + [anon_sym_INFO] = ACTIONS(487), + [anon_sym_XXX] = ACTIONS(487), + [sym_fixme] = ACTIONS(471), + [sym__whitespace1] = ACTIONS(489), + [sym__newline] = ACTIONS(491), + [aux_sym__text_token1] = ACTIONS(493), + [sym__verbatim_begin] = ACTIONS(495), }, - [108] = { - [sym__inline_without_trailing_space] = STATE(877), - [sym__element] = STATE(582), - [sym_emphasis] = STATE(176), - [sym_emphasis_begin] = STATE(1007), - [sym_strong] = STATE(176), - [sym_strong_begin] = STATE(94), - [sym__hard_line_break] = STATE(176), - [sym_hard_line_break] = STATE(176), - [sym__smart_punctuation] = STATE(176), - [sym_autolink] = STATE(176), - [sym_highlighted] = STATE(176), - [sym_insert] = STATE(176), - [sym_delete] = STATE(176), - [sym_superscript] = STATE(176), - [sym_subscript] = STATE(176), - [sym_footnote_reference] = STATE(176), - [sym__image] = STATE(176), - [sym_full_reference_image] = STATE(176), - [sym_collapsed_reference_image] = STATE(176), - [sym_inline_image] = STATE(176), - [sym__image_description] = STATE(685), - [sym__link] = STATE(176), - [sym_full_reference_link] = STATE(176), - [sym_collapsed_reference_link] = STATE(176), - [sym_inline_link] = STATE(176), - [sym_link_text] = STATE(704), - [sym__comment_with_spaces] = STATE(176), - [sym_span] = STATE(176), - [sym_raw_inline] = STATE(176), - [sym_math] = STATE(176), - [sym_verbatim] = STATE(176), - [sym__todo_highlights] = STATE(176), - [sym_todo] = STATE(176), - [sym_note] = STATE(176), - [sym__symbol_fallback] = STATE(176), - [aux_sym__text] = STATE(161), - [aux_sym__inline_repeat1] = STATE(131), - [anon_sym_LBRACE_] = ACTIONS(781), - [anon_sym__] = ACTIONS(783), - [anon_sym_LBRACE_STAR] = ACTIONS(785), - [anon_sym_STAR] = ACTIONS(787), - [anon_sym_BSLASH] = ACTIONS(789), - [sym_quotation_marks] = ACTIONS(791), - [sym_ellipsis] = ACTIONS(791), - [sym_em_dash] = ACTIONS(791), - [sym_en_dash] = ACTIONS(793), - [sym_backslash_escape] = ACTIONS(793), - [anon_sym_LT] = ACTIONS(795), - [anon_sym_LBRACE_EQ] = ACTIONS(797), - [anon_sym_LBRACE_PLUS] = ACTIONS(799), - [anon_sym_LBRACE_DASH] = ACTIONS(801), - [sym_symbol] = ACTIONS(791), - [anon_sym_LBRACE_CARET] = ACTIONS(803), - [anon_sym_CARET] = ACTIONS(803), - [anon_sym_LBRACE_TILDE] = ACTIONS(805), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_LBRACK_CARET] = ACTIONS(807), - [anon_sym_BANG_LBRACK] = ACTIONS(809), - [anon_sym_LBRACK] = ACTIONS(811), - [anon_sym_LBRACE2] = ACTIONS(793), - [anon_sym_DOLLAR] = ACTIONS(813), - [anon_sym_TODO] = ACTIONS(815), - [anon_sym_WIP] = ACTIONS(815), - [anon_sym_NOTE] = ACTIONS(817), - [anon_sym_INFO] = ACTIONS(817), - [anon_sym_XXX] = ACTIONS(817), - [sym_fixme] = ACTIONS(791), - [anon_sym_PIPE] = ACTIONS(791), - [sym__whitespace1] = ACTIONS(819), - [sym__newline] = ACTIONS(821), - [aux_sym__text_token1] = ACTIONS(823), - [sym__verbatim_begin] = ACTIONS(825), + [115] = { + [sym__element] = STATE(110), + [sym_emphasis] = STATE(192), + [sym_emphasis_begin] = STATE(1095), + [sym_strong] = STATE(192), + [sym_strong_begin] = STATE(1096), + [sym_superscript] = STATE(192), + [sym_superscript_begin] = STATE(1097), + [sym_subscript] = STATE(192), + [sym_subscript_begin] = STATE(1098), + [sym_highlighted] = STATE(192), + [sym_highlighted_begin] = STATE(1099), + [sym_insert] = STATE(192), + [sym_insert_begin] = STATE(1100), + [sym_delete] = STATE(192), + [sym_delete_begin] = STATE(1101), + [sym_hard_line_break] = STATE(192), + [sym__smart_punctuation] = STATE(192), + [sym_autolink] = STATE(192), + [sym_footnote_reference] = STATE(192), + [sym__image] = STATE(192), + [sym_full_reference_image] = STATE(192), + [sym_collapsed_reference_image] = STATE(192), + [sym_inline_image] = STATE(192), + [sym__image_description] = STATE(684), + [sym__link] = STATE(192), + [sym_full_reference_link] = STATE(192), + [sym_collapsed_reference_link] = STATE(192), + [sym_inline_link] = STATE(192), + [sym_link_text] = STATE(683), + [sym__comment_with_spaces] = STATE(192), + [sym_span] = STATE(192), + [sym_raw_inline] = STATE(192), + [sym_math] = STATE(192), + [sym_verbatim] = STATE(192), + [sym__todo_highlights] = STATE(192), + [sym_todo] = STATE(192), + [sym_note] = STATE(192), + [sym__symbol_fallback] = STATE(192), + [aux_sym__text] = STATE(141), + [aux_sym__inline_repeat1] = STATE(110), + [anon_sym_LBRACE_] = ACTIONS(129), + [anon_sym__] = ACTIONS(131), + [anon_sym_LBRACE_STAR] = ACTIONS(133), + [anon_sym_STAR] = ACTIONS(135), + [anon_sym_LBRACE_CARET] = ACTIONS(137), + [anon_sym_CARET] = ACTIONS(137), + [anon_sym_LBRACE_TILDE] = ACTIONS(139), + [anon_sym_TILDE] = ACTIONS(139), + [anon_sym_LBRACE_EQ] = ACTIONS(141), + [anon_sym_LBRACE_PLUS] = ACTIONS(143), + [anon_sym_LBRACE_DASH] = ACTIONS(145), + [anon_sym_BSLASH] = ACTIONS(147), + [sym_quotation_marks] = ACTIONS(149), + [sym_ellipsis] = ACTIONS(149), + [sym_em_dash] = ACTIONS(149), + [sym_en_dash] = ACTIONS(151), + [sym_backslash_escape] = ACTIONS(151), + [anon_sym_LT] = ACTIONS(153), + [sym_symbol] = ACTIONS(149), + [anon_sym_LBRACK_CARET] = ACTIONS(155), + [anon_sym_BANG_LBRACK] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LBRACE2] = ACTIONS(151), + [anon_sym_DOLLAR] = ACTIONS(161), + [anon_sym_TODO] = ACTIONS(163), + [anon_sym_WIP] = ACTIONS(163), + [anon_sym_NOTE] = ACTIONS(165), + [anon_sym_INFO] = ACTIONS(165), + [anon_sym_XXX] = ACTIONS(165), + [sym_fixme] = ACTIONS(149), + [sym__whitespace1] = ACTIONS(167), + [sym__newline] = ACTIONS(1042), + [aux_sym__text_token1] = ACTIONS(171), + [sym__verbatim_begin] = ACTIONS(173), + [sym_highlighted_end] = ACTIONS(497), }, - [109] = { - [sym__inline] = STATE(885), - [sym__element] = STATE(95), - [sym_emphasis] = STATE(191), - [sym_emphasis_begin] = STATE(1008), - [sym_strong] = STATE(191), - [sym_strong_begin] = STATE(90), - [sym__hard_line_break] = STATE(191), - [sym_hard_line_break] = STATE(191), - [sym__smart_punctuation] = STATE(191), - [sym_autolink] = STATE(191), - [sym_highlighted] = STATE(191), - [sym_insert] = STATE(191), - [sym_delete] = STATE(191), - [sym_superscript] = STATE(191), - [sym_subscript] = STATE(191), - [sym_footnote_reference] = STATE(191), - [sym__image] = STATE(191), - [sym_full_reference_image] = STATE(191), - [sym_collapsed_reference_image] = STATE(191), - [sym_inline_image] = STATE(191), - [sym__image_description] = STATE(699), - [sym__link] = STATE(191), - [sym_full_reference_link] = STATE(191), - [sym_collapsed_reference_link] = STATE(191), - [sym_inline_link] = STATE(191), - [sym_link_text] = STATE(698), - [sym__comment_with_spaces] = STATE(191), - [sym_span] = STATE(191), - [sym_raw_inline] = STATE(191), - [sym_math] = STATE(191), - [sym_verbatim] = STATE(191), - [sym__todo_highlights] = STATE(191), - [sym_todo] = STATE(191), - [sym_note] = STATE(191), - [sym__symbol_fallback] = STATE(191), - [aux_sym__text] = STATE(137), - [aux_sym__inline_repeat1] = STATE(95), - [anon_sym_LBRACE_] = ACTIONS(592), - [anon_sym__] = ACTIONS(594), - [anon_sym_LBRACE_STAR] = ACTIONS(596), - [anon_sym_STAR] = ACTIONS(598), - [anon_sym_BSLASH] = ACTIONS(600), - [sym_quotation_marks] = ACTIONS(602), - [sym_ellipsis] = ACTIONS(602), - [sym_em_dash] = ACTIONS(602), - [sym_en_dash] = ACTIONS(604), - [sym_backslash_escape] = ACTIONS(604), - [anon_sym_LT] = ACTIONS(606), - [anon_sym_LBRACE_EQ] = ACTIONS(608), - [anon_sym_LBRACE_PLUS] = ACTIONS(610), - [anon_sym_LBRACE_DASH] = ACTIONS(612), - [sym_symbol] = ACTIONS(602), - [anon_sym_LBRACE_CARET] = ACTIONS(614), - [anon_sym_CARET] = ACTIONS(614), - [anon_sym_LBRACE_TILDE] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(616), - [anon_sym_LBRACK_CARET] = ACTIONS(618), - [anon_sym_BANG_LBRACK] = ACTIONS(620), - [anon_sym_LBRACK] = ACTIONS(622), - [anon_sym_LBRACE2] = ACTIONS(604), - [anon_sym_DOLLAR] = ACTIONS(624), - [anon_sym_TODO] = ACTIONS(626), - [anon_sym_WIP] = ACTIONS(626), - [anon_sym_NOTE] = ACTIONS(628), - [anon_sym_INFO] = ACTIONS(628), - [anon_sym_XXX] = ACTIONS(628), - [sym_fixme] = ACTIONS(602), - [anon_sym_PIPE] = ACTIONS(602), - [sym__whitespace1] = ACTIONS(630), - [sym__newline] = ACTIONS(632), - [aux_sym__text_token1] = ACTIONS(634), - [sym__verbatim_begin] = ACTIONS(636), + [116] = { + [sym__inline] = STATE(979), + [sym__element] = STATE(66), + [sym_emphasis] = STATE(171), + [sym_emphasis_begin] = STATE(1116), + [sym_strong] = STATE(171), + [sym_strong_begin] = STATE(1117), + [sym_superscript] = STATE(171), + [sym_superscript_begin] = STATE(1118), + [sym_subscript] = STATE(171), + [sym_subscript_begin] = STATE(1119), + [sym_highlighted] = STATE(171), + [sym_highlighted_begin] = STATE(1120), + [sym_insert] = STATE(171), + [sym_insert_begin] = STATE(1121), + [sym_delete] = STATE(171), + [sym_delete_begin] = STATE(1122), + [sym_hard_line_break] = STATE(171), + [sym__smart_punctuation] = STATE(171), + [sym_autolink] = STATE(171), + [sym_footnote_reference] = STATE(171), + [sym__image] = STATE(171), + [sym_full_reference_image] = STATE(171), + [sym_collapsed_reference_image] = STATE(171), + [sym_inline_image] = STATE(171), + [sym__image_description] = STATE(674), + [sym__link] = STATE(171), + [sym_full_reference_link] = STATE(171), + [sym_collapsed_reference_link] = STATE(171), + [sym_inline_link] = STATE(171), + [sym_link_text] = STATE(675), + [sym__comment_with_spaces] = STATE(171), + [sym_span] = STATE(171), + [sym_raw_inline] = STATE(171), + [sym_math] = STATE(171), + [sym_verbatim] = STATE(171), + [sym__todo_highlights] = STATE(171), + [sym_todo] = STATE(171), + [sym_note] = STATE(171), + [sym__symbol_fallback] = STATE(171), + [aux_sym__text] = STATE(146), + [aux_sym__inline_repeat1] = STATE(66), + [anon_sym_LBRACE_] = ACTIONS(451), + [anon_sym__] = ACTIONS(453), + [anon_sym_LBRACE_STAR] = ACTIONS(455), + [anon_sym_STAR] = ACTIONS(457), + [anon_sym_LBRACE_CARET] = ACTIONS(459), + [anon_sym_CARET] = ACTIONS(459), + [anon_sym_LBRACE_TILDE] = ACTIONS(461), + [anon_sym_TILDE] = ACTIONS(461), + [anon_sym_LBRACE_EQ] = ACTIONS(463), + [anon_sym_LBRACE_PLUS] = ACTIONS(465), + [anon_sym_LBRACE_DASH] = ACTIONS(467), + [anon_sym_BSLASH] = ACTIONS(469), + [sym_quotation_marks] = ACTIONS(471), + [sym_ellipsis] = ACTIONS(471), + [sym_em_dash] = ACTIONS(471), + [sym_en_dash] = ACTIONS(473), + [sym_backslash_escape] = ACTIONS(473), + [anon_sym_LT] = ACTIONS(475), + [sym_symbol] = ACTIONS(471), + [anon_sym_LBRACK_CARET] = ACTIONS(477), + [anon_sym_BANG_LBRACK] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(481), + [anon_sym_LBRACE2] = ACTIONS(473), + [anon_sym_DOLLAR] = ACTIONS(483), + [anon_sym_TODO] = ACTIONS(485), + [anon_sym_WIP] = ACTIONS(485), + [anon_sym_NOTE] = ACTIONS(487), + [anon_sym_INFO] = ACTIONS(487), + [anon_sym_XXX] = ACTIONS(487), + [sym_fixme] = ACTIONS(471), + [sym__whitespace1] = ACTIONS(489), + [sym__newline] = ACTIONS(491), + [aux_sym__text_token1] = ACTIONS(493), + [sym__verbatim_begin] = ACTIONS(495), }, - [110] = { - [sym__inline] = STATE(728), - [sym__element] = STATE(106), + [117] = { + [sym__inline] = STATE(981), + [sym__element] = STATE(103), + [sym_emphasis] = STATE(180), + [sym_emphasis_begin] = STATE(1109), + [sym_strong] = STATE(180), + [sym_strong_begin] = STATE(1110), + [sym_superscript] = STATE(180), + [sym_superscript_begin] = STATE(1111), + [sym_subscript] = STATE(180), + [sym_subscript_begin] = STATE(1112), + [sym_highlighted] = STATE(180), + [sym_highlighted_begin] = STATE(1113), + [sym_insert] = STATE(180), + [sym_insert_begin] = STATE(1114), + [sym_delete] = STATE(180), + [sym_delete_begin] = STATE(1115), + [sym_hard_line_break] = STATE(180), + [sym__smart_punctuation] = STATE(180), + [sym_autolink] = STATE(180), + [sym_footnote_reference] = STATE(180), + [sym__image] = STATE(180), + [sym_full_reference_image] = STATE(180), + [sym_collapsed_reference_image] = STATE(180), + [sym_inline_image] = STATE(180), + [sym__image_description] = STATE(666), + [sym__link] = STATE(180), + [sym_full_reference_link] = STATE(180), + [sym_collapsed_reference_link] = STATE(180), + [sym_inline_link] = STATE(180), + [sym_link_text] = STATE(664), + [sym__comment_with_spaces] = STATE(180), + [sym_span] = STATE(180), + [sym_raw_inline] = STATE(180), + [sym_math] = STATE(180), + [sym_verbatim] = STATE(180), + [sym__todo_highlights] = STATE(180), + [sym_todo] = STATE(180), + [sym_note] = STATE(180), + [sym__symbol_fallback] = STATE(180), + [aux_sym__text] = STATE(159), + [aux_sym__inline_repeat1] = STATE(103), + [anon_sym_LBRACE_] = ACTIONS(221), + [anon_sym__] = ACTIONS(223), + [anon_sym_LBRACE_STAR] = ACTIONS(225), + [anon_sym_STAR] = ACTIONS(227), + [anon_sym_LBRACE_CARET] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym_LBRACE_TILDE] = ACTIONS(231), + [anon_sym_TILDE] = ACTIONS(231), + [anon_sym_LBRACE_EQ] = ACTIONS(233), + [anon_sym_LBRACE_PLUS] = ACTIONS(235), + [anon_sym_LBRACE_DASH] = ACTIONS(237), + [anon_sym_BSLASH] = ACTIONS(239), + [sym_quotation_marks] = ACTIONS(241), + [sym_ellipsis] = ACTIONS(241), + [sym_em_dash] = ACTIONS(241), + [sym_en_dash] = ACTIONS(243), + [sym_backslash_escape] = ACTIONS(243), + [anon_sym_LT] = ACTIONS(245), + [sym_symbol] = ACTIONS(241), + [anon_sym_LBRACK_CARET] = ACTIONS(247), + [anon_sym_BANG_LBRACK] = ACTIONS(249), + [anon_sym_LBRACK] = ACTIONS(251), + [anon_sym_LBRACE2] = ACTIONS(243), + [anon_sym_DOLLAR] = ACTIONS(253), + [anon_sym_TODO] = ACTIONS(255), + [anon_sym_WIP] = ACTIONS(255), + [anon_sym_NOTE] = ACTIONS(257), + [anon_sym_INFO] = ACTIONS(257), + [anon_sym_XXX] = ACTIONS(257), + [sym_fixme] = ACTIONS(241), + [sym__whitespace1] = ACTIONS(259), + [sym__newline] = ACTIONS(261), + [aux_sym__text_token1] = ACTIONS(263), + [sym__verbatim_begin] = ACTIONS(265), + }, + [118] = { + [sym__inline] = STATE(985), + [sym__element] = STATE(111), [sym_emphasis] = STATE(186), - [sym_emphasis_begin] = STATE(1006), + [sym_emphasis_begin] = STATE(1102), [sym_strong] = STATE(186), - [sym_strong_begin] = STATE(79), - [sym__hard_line_break] = STATE(186), - [sym_hard_line_break] = STATE(186), - [sym__smart_punctuation] = STATE(186), - [sym_autolink] = STATE(186), + [sym_strong_begin] = STATE(1103), + [sym_superscript] = STATE(186), + [sym_superscript_begin] = STATE(1104), + [sym_subscript] = STATE(186), + [sym_subscript_begin] = STATE(1105), [sym_highlighted] = STATE(186), + [sym_highlighted_begin] = STATE(1106), [sym_insert] = STATE(186), + [sym_insert_begin] = STATE(1107), [sym_delete] = STATE(186), - [sym_superscript] = STATE(186), - [sym_subscript] = STATE(186), - [sym_footnote_reference] = STATE(186), - [sym__image] = STATE(186), - [sym_full_reference_image] = STATE(186), - [sym_collapsed_reference_image] = STATE(186), - [sym_inline_image] = STATE(186), - [sym__image_description] = STATE(714), - [sym__link] = STATE(186), - [sym_full_reference_link] = STATE(186), - [sym_collapsed_reference_link] = STATE(186), - [sym_inline_link] = STATE(186), - [sym_link_text] = STATE(713), - [sym__comment_with_spaces] = STATE(186), - [sym_span] = STATE(186), - [sym_raw_inline] = STATE(186), - [sym_math] = STATE(186), - [sym_verbatim] = STATE(186), - [sym__todo_highlights] = STATE(186), - [sym_todo] = STATE(186), - [sym_note] = STATE(186), - [sym__symbol_fallback] = STATE(186), - [aux_sym__text] = STATE(160), - [aux_sym__inline_repeat1] = STATE(106), - [anon_sym_LBRACE_] = ACTIONS(546), - [anon_sym__] = ACTIONS(548), - [anon_sym_LBRACE_STAR] = ACTIONS(550), - [anon_sym_STAR] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(554), - [sym_quotation_marks] = ACTIONS(556), - [sym_ellipsis] = ACTIONS(556), - [sym_em_dash] = ACTIONS(556), - [sym_en_dash] = ACTIONS(558), - [sym_backslash_escape] = ACTIONS(558), - [anon_sym_LT] = ACTIONS(560), - [anon_sym_LBRACE_EQ] = ACTIONS(562), - [anon_sym_LBRACE_PLUS] = ACTIONS(564), - [anon_sym_LBRACE_DASH] = ACTIONS(566), - [sym_symbol] = ACTIONS(556), - [anon_sym_LBRACE_CARET] = ACTIONS(568), - [anon_sym_CARET] = ACTIONS(568), - [anon_sym_LBRACE_TILDE] = ACTIONS(570), - [anon_sym_TILDE] = ACTIONS(570), - [anon_sym_LBRACK_CARET] = ACTIONS(572), - [anon_sym_BANG_LBRACK] = ACTIONS(574), - [anon_sym_LBRACK] = ACTIONS(576), - [anon_sym_LBRACE2] = ACTIONS(558), - [anon_sym_DOLLAR] = ACTIONS(578), - [anon_sym_TODO] = ACTIONS(580), - [anon_sym_WIP] = ACTIONS(580), - [anon_sym_NOTE] = ACTIONS(582), - [anon_sym_INFO] = ACTIONS(582), - [anon_sym_XXX] = ACTIONS(582), - [sym_fixme] = ACTIONS(556), - [anon_sym_PIPE] = ACTIONS(556), - [sym__whitespace1] = ACTIONS(584), - [sym__newline] = ACTIONS(586), - [aux_sym__text_token1] = ACTIONS(588), - [sym__verbatim_begin] = ACTIONS(590), - }, - [111] = { - [sym__inline] = STATE(959), - [sym__element] = STATE(95), - [sym_emphasis] = STATE(191), - [sym_emphasis_begin] = STATE(1008), - [sym_strong] = STATE(191), - [sym_strong_begin] = STATE(90), - [sym__hard_line_break] = STATE(191), - [sym_hard_line_break] = STATE(191), - [sym__smart_punctuation] = STATE(191), - [sym_autolink] = STATE(191), - [sym_highlighted] = STATE(191), - [sym_insert] = STATE(191), - [sym_delete] = STATE(191), - [sym_superscript] = STATE(191), - [sym_subscript] = STATE(191), - [sym_footnote_reference] = STATE(191), - [sym__image] = STATE(191), - [sym_full_reference_image] = STATE(191), - [sym_collapsed_reference_image] = STATE(191), - [sym_inline_image] = STATE(191), - [sym__image_description] = STATE(699), - [sym__link] = STATE(191), - [sym_full_reference_link] = STATE(191), - [sym_collapsed_reference_link] = STATE(191), - [sym_inline_link] = STATE(191), - [sym_link_text] = STATE(698), - [sym__comment_with_spaces] = STATE(191), - [sym_span] = STATE(191), - [sym_raw_inline] = STATE(191), - [sym_math] = STATE(191), - [sym_verbatim] = STATE(191), - [sym__todo_highlights] = STATE(191), - [sym_todo] = STATE(191), - [sym_note] = STATE(191), - [sym__symbol_fallback] = STATE(191), - [aux_sym__text] = STATE(137), - [aux_sym__inline_repeat1] = STATE(95), - [anon_sym_LBRACE_] = ACTIONS(592), - [anon_sym__] = ACTIONS(594), - [anon_sym_LBRACE_STAR] = ACTIONS(596), - [anon_sym_STAR] = ACTIONS(598), - [anon_sym_BSLASH] = ACTIONS(600), - [sym_quotation_marks] = ACTIONS(602), - [sym_ellipsis] = ACTIONS(602), - [sym_em_dash] = ACTIONS(602), - [sym_en_dash] = ACTIONS(604), - [sym_backslash_escape] = ACTIONS(604), - [anon_sym_LT] = ACTIONS(606), - [anon_sym_LBRACE_EQ] = ACTIONS(608), - [anon_sym_LBRACE_PLUS] = ACTIONS(610), - [anon_sym_LBRACE_DASH] = ACTIONS(612), - [sym_symbol] = ACTIONS(602), - [anon_sym_LBRACE_CARET] = ACTIONS(614), - [anon_sym_CARET] = ACTIONS(614), - [anon_sym_LBRACE_TILDE] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(616), - [anon_sym_LBRACK_CARET] = ACTIONS(618), - [anon_sym_BANG_LBRACK] = ACTIONS(620), - [anon_sym_LBRACK] = ACTIONS(622), - [anon_sym_LBRACE2] = ACTIONS(604), - [anon_sym_DOLLAR] = ACTIONS(624), - [anon_sym_TODO] = ACTIONS(626), - [anon_sym_WIP] = ACTIONS(626), - [anon_sym_NOTE] = ACTIONS(628), - [anon_sym_INFO] = ACTIONS(628), - [anon_sym_XXX] = ACTIONS(628), - [sym_fixme] = ACTIONS(602), - [anon_sym_PIPE] = ACTIONS(602), - [sym__whitespace1] = ACTIONS(630), - [sym__newline] = ACTIONS(632), - [aux_sym__text_token1] = ACTIONS(634), - [sym__verbatim_begin] = ACTIONS(636), - }, - [112] = { - [sym__inline_without_trailing_space] = STATE(968), - [sym__element] = STATE(582), - [sym_emphasis] = STATE(176), - [sym_emphasis_begin] = STATE(1007), - [sym_strong] = STATE(176), - [sym_strong_begin] = STATE(94), - [sym__hard_line_break] = STATE(176), - [sym_hard_line_break] = STATE(176), - [sym__smart_punctuation] = STATE(176), - [sym_autolink] = STATE(176), - [sym_highlighted] = STATE(176), - [sym_insert] = STATE(176), - [sym_delete] = STATE(176), - [sym_superscript] = STATE(176), - [sym_subscript] = STATE(176), - [sym_footnote_reference] = STATE(176), - [sym__image] = STATE(176), - [sym_full_reference_image] = STATE(176), - [sym_collapsed_reference_image] = STATE(176), - [sym_inline_image] = STATE(176), - [sym__image_description] = STATE(685), - [sym__link] = STATE(176), - [sym_full_reference_link] = STATE(176), - [sym_collapsed_reference_link] = STATE(176), - [sym_inline_link] = STATE(176), - [sym_link_text] = STATE(704), - [sym__comment_with_spaces] = STATE(176), - [sym_span] = STATE(176), - [sym_raw_inline] = STATE(176), - [sym_math] = STATE(176), - [sym_verbatim] = STATE(176), - [sym__todo_highlights] = STATE(176), - [sym_todo] = STATE(176), - [sym_note] = STATE(176), - [sym__symbol_fallback] = STATE(176), - [aux_sym__text] = STATE(161), - [aux_sym__inline_repeat1] = STATE(131), - [anon_sym_LBRACE_] = ACTIONS(781), - [anon_sym__] = ACTIONS(783), - [anon_sym_LBRACE_STAR] = ACTIONS(785), - [anon_sym_STAR] = ACTIONS(787), - [anon_sym_BSLASH] = ACTIONS(789), - [sym_quotation_marks] = ACTIONS(791), - [sym_ellipsis] = ACTIONS(791), - [sym_em_dash] = ACTIONS(791), - [sym_en_dash] = ACTIONS(793), - [sym_backslash_escape] = ACTIONS(793), - [anon_sym_LT] = ACTIONS(795), - [anon_sym_LBRACE_EQ] = ACTIONS(797), - [anon_sym_LBRACE_PLUS] = ACTIONS(799), - [anon_sym_LBRACE_DASH] = ACTIONS(801), - [sym_symbol] = ACTIONS(791), - [anon_sym_LBRACE_CARET] = ACTIONS(803), - [anon_sym_CARET] = ACTIONS(803), - [anon_sym_LBRACE_TILDE] = ACTIONS(805), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_LBRACK_CARET] = ACTIONS(807), - [anon_sym_BANG_LBRACK] = ACTIONS(809), - [anon_sym_LBRACK] = ACTIONS(811), - [anon_sym_LBRACE2] = ACTIONS(793), - [anon_sym_DOLLAR] = ACTIONS(813), - [anon_sym_TODO] = ACTIONS(815), - [anon_sym_WIP] = ACTIONS(815), - [anon_sym_NOTE] = ACTIONS(817), - [anon_sym_INFO] = ACTIONS(817), - [anon_sym_XXX] = ACTIONS(817), - [sym_fixme] = ACTIONS(791), - [anon_sym_PIPE] = ACTIONS(791), - [sym__whitespace1] = ACTIONS(819), - [sym__newline] = ACTIONS(821), - [aux_sym__text_token1] = ACTIONS(823), - [sym__verbatim_begin] = ACTIONS(825), - }, - [113] = { - [sym__inline] = STATE(730), - [sym__element] = STATE(106), - [sym_emphasis] = STATE(186), - [sym_emphasis_begin] = STATE(1006), - [sym_strong] = STATE(186), - [sym_strong_begin] = STATE(79), - [sym__hard_line_break] = STATE(186), + [sym_delete_begin] = STATE(1108), [sym_hard_line_break] = STATE(186), [sym__smart_punctuation] = STATE(186), [sym_autolink] = STATE(186), - [sym_highlighted] = STATE(186), - [sym_insert] = STATE(186), - [sym_delete] = STATE(186), - [sym_superscript] = STATE(186), - [sym_subscript] = STATE(186), [sym_footnote_reference] = STATE(186), [sym__image] = STATE(186), [sym_full_reference_image] = STATE(186), [sym_collapsed_reference_image] = STATE(186), [sym_inline_image] = STATE(186), - [sym__image_description] = STATE(714), + [sym__image_description] = STATE(673), [sym__link] = STATE(186), [sym_full_reference_link] = STATE(186), [sym_collapsed_reference_link] = STATE(186), [sym_inline_link] = STATE(186), - [sym_link_text] = STATE(713), + [sym_link_text] = STATE(672), [sym__comment_with_spaces] = STATE(186), [sym_span] = STATE(186), [sym_raw_inline] = STATE(186), @@ -16375,959 +14579,690 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(186), [sym_note] = STATE(186), [sym__symbol_fallback] = STATE(186), - [aux_sym__text] = STATE(160), - [aux_sym__inline_repeat1] = STATE(106), - [anon_sym_LBRACE_] = ACTIONS(546), - [anon_sym__] = ACTIONS(548), - [anon_sym_LBRACE_STAR] = ACTIONS(550), - [anon_sym_STAR] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(554), - [sym_quotation_marks] = ACTIONS(556), - [sym_ellipsis] = ACTIONS(556), - [sym_em_dash] = ACTIONS(556), - [sym_en_dash] = ACTIONS(558), - [sym_backslash_escape] = ACTIONS(558), - [anon_sym_LT] = ACTIONS(560), - [anon_sym_LBRACE_EQ] = ACTIONS(562), - [anon_sym_LBRACE_PLUS] = ACTIONS(564), - [anon_sym_LBRACE_DASH] = ACTIONS(566), - [sym_symbol] = ACTIONS(556), - [anon_sym_LBRACE_CARET] = ACTIONS(568), - [anon_sym_CARET] = ACTIONS(568), - [anon_sym_LBRACE_TILDE] = ACTIONS(570), - [anon_sym_TILDE] = ACTIONS(570), - [anon_sym_LBRACK_CARET] = ACTIONS(572), - [anon_sym_BANG_LBRACK] = ACTIONS(574), - [anon_sym_LBRACK] = ACTIONS(576), - [anon_sym_LBRACE2] = ACTIONS(558), - [anon_sym_DOLLAR] = ACTIONS(578), - [anon_sym_TODO] = ACTIONS(580), - [anon_sym_WIP] = ACTIONS(580), - [anon_sym_NOTE] = ACTIONS(582), - [anon_sym_INFO] = ACTIONS(582), - [anon_sym_XXX] = ACTIONS(582), - [sym_fixme] = ACTIONS(556), - [anon_sym_PIPE] = ACTIONS(556), - [sym__whitespace1] = ACTIONS(584), - [sym__newline] = ACTIONS(586), - [aux_sym__text_token1] = ACTIONS(588), - [sym__verbatim_begin] = ACTIONS(590), - }, - [114] = { - [sym__element] = STATE(81), - [sym_emphasis] = STATE(181), - [sym_emphasis_begin] = STATE(1004), - [sym_strong] = STATE(181), - [sym_strong_begin] = STATE(110), - [sym__hard_line_break] = STATE(181), - [sym_hard_line_break] = STATE(181), - [sym__smart_punctuation] = STATE(181), - [sym_autolink] = STATE(181), - [sym_highlighted] = STATE(181), - [sym_insert] = STATE(181), - [sym_delete] = STATE(181), - [sym_superscript] = STATE(181), - [sym_subscript] = STATE(181), - [sym_footnote_reference] = STATE(181), - [sym__image] = STATE(181), - [sym_full_reference_image] = STATE(181), - [sym_collapsed_reference_image] = STATE(181), - [sym_inline_image] = STATE(181), - [sym__image_description] = STATE(688), - [sym__link] = STATE(181), - [sym_full_reference_link] = STATE(181), - [sym_collapsed_reference_link] = STATE(181), - [sym_inline_link] = STATE(181), - [sym_link_text] = STATE(693), - [sym__comment_with_spaces] = STATE(181), - [sym_span] = STATE(181), - [sym_raw_inline] = STATE(181), - [sym_math] = STATE(181), - [sym_verbatim] = STATE(181), - [sym__todo_highlights] = STATE(181), - [sym_todo] = STATE(181), - [sym_note] = STATE(181), - [sym__symbol_fallback] = STATE(181), - [aux_sym__text] = STATE(153), - [aux_sym__inline_repeat1] = STATE(81), - [anon_sym_LBRACE_] = ACTIONS(1256), - [anon_sym__] = ACTIONS(1258), - [anon_sym_LBRACE_STAR] = ACTIONS(1260), - [anon_sym_STAR] = ACTIONS(1262), - [anon_sym_BSLASH] = ACTIONS(1264), - [sym_quotation_marks] = ACTIONS(1266), - [sym_ellipsis] = ACTIONS(1266), - [sym_em_dash] = ACTIONS(1266), - [sym_en_dash] = ACTIONS(1268), - [sym_backslash_escape] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(1270), - [anon_sym_LBRACE_EQ] = ACTIONS(1272), - [anon_sym_LBRACE_PLUS] = ACTIONS(1274), - [anon_sym_LBRACE_DASH] = ACTIONS(1276), - [sym_symbol] = ACTIONS(1266), - [anon_sym_LBRACE_CARET] = ACTIONS(1278), - [anon_sym_CARET] = ACTIONS(1278), - [anon_sym_LBRACE_TILDE] = ACTIONS(1280), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_TILDE_RBRACE] = ACTIONS(987), - [anon_sym_LBRACK_CARET] = ACTIONS(1282), - [anon_sym_BANG_LBRACK] = ACTIONS(1284), - [anon_sym_LBRACK] = ACTIONS(1286), - [anon_sym_LBRACE2] = ACTIONS(1268), - [anon_sym_DOLLAR] = ACTIONS(1288), - [anon_sym_TODO] = ACTIONS(1290), - [anon_sym_WIP] = ACTIONS(1290), - [anon_sym_NOTE] = ACTIONS(1292), - [anon_sym_INFO] = ACTIONS(1292), - [anon_sym_XXX] = ACTIONS(1292), - [sym_fixme] = ACTIONS(1266), - [anon_sym_PIPE] = ACTIONS(1266), - [sym__whitespace1] = ACTIONS(1294), - [sym__newline] = ACTIONS(1296), - [aux_sym__text_token1] = ACTIONS(1298), - [sym__verbatim_begin] = ACTIONS(1300), - }, - [115] = { - [sym__element] = STATE(123), - [sym_emphasis] = STATE(205), - [sym_emphasis_begin] = STATE(1000), - [sym_strong] = STATE(205), - [sym_strong_begin] = STATE(129), - [sym__hard_line_break] = STATE(205), - [sym_hard_line_break] = STATE(205), - [sym__smart_punctuation] = STATE(205), - [sym_autolink] = STATE(205), - [sym_highlighted] = STATE(205), - [sym_insert] = STATE(205), - [sym_delete] = STATE(205), - [sym_superscript] = STATE(205), - [sym_subscript] = STATE(205), - [sym_footnote_reference] = STATE(205), - [sym__image] = STATE(205), - [sym_full_reference_image] = STATE(205), - [sym_collapsed_reference_image] = STATE(205), - [sym_inline_image] = STATE(205), - [sym__image_description] = STATE(705), - [sym__link] = STATE(205), - [sym_full_reference_link] = STATE(205), - [sym_collapsed_reference_link] = STATE(205), - [sym_inline_link] = STATE(205), - [sym_link_text] = STATE(703), - [sym__comment_with_spaces] = STATE(205), - [sym_span] = STATE(205), - [sym_raw_inline] = STATE(205), - [sym_math] = STATE(205), - [sym_verbatim] = STATE(205), - [sym__todo_highlights] = STATE(205), - [sym_todo] = STATE(205), - [sym_note] = STATE(205), - [sym__symbol_fallback] = STATE(205), - [aux_sym__text] = STATE(136), - [aux_sym__inline_repeat1] = STATE(123), - [anon_sym_LBRACE_] = ACTIONS(1302), - [anon_sym__] = ACTIONS(1304), - [anon_sym_LBRACE_STAR] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_BSLASH] = ACTIONS(1310), - [sym_quotation_marks] = ACTIONS(1312), - [sym_ellipsis] = ACTIONS(1312), - [sym_em_dash] = ACTIONS(1312), - [sym_en_dash] = ACTIONS(1314), - [sym_backslash_escape] = ACTIONS(1314), - [anon_sym_LT] = ACTIONS(1316), - [anon_sym_LBRACE_EQ] = ACTIONS(1318), - [anon_sym_EQ_RBRACE] = ACTIONS(987), - [anon_sym_LBRACE_PLUS] = ACTIONS(1320), - [anon_sym_LBRACE_DASH] = ACTIONS(1322), - [sym_symbol] = ACTIONS(1312), - [anon_sym_LBRACE_CARET] = ACTIONS(1324), - [anon_sym_CARET] = ACTIONS(1324), - [anon_sym_LBRACE_TILDE] = ACTIONS(1326), - [anon_sym_TILDE] = ACTIONS(1326), - [anon_sym_LBRACK_CARET] = ACTIONS(1328), - [anon_sym_BANG_LBRACK] = ACTIONS(1330), - [anon_sym_LBRACK] = ACTIONS(1332), - [anon_sym_LBRACE2] = ACTIONS(1314), - [anon_sym_DOLLAR] = ACTIONS(1334), - [anon_sym_TODO] = ACTIONS(1336), - [anon_sym_WIP] = ACTIONS(1336), - [anon_sym_NOTE] = ACTIONS(1338), - [anon_sym_INFO] = ACTIONS(1338), - [anon_sym_XXX] = ACTIONS(1338), - [sym_fixme] = ACTIONS(1312), - [anon_sym_PIPE] = ACTIONS(1312), - [sym__whitespace1] = ACTIONS(1340), - [sym__newline] = ACTIONS(1342), - [aux_sym__text_token1] = ACTIONS(1344), - [sym__verbatim_begin] = ACTIONS(1346), - }, - [116] = { - [sym__element] = STATE(116), - [sym_emphasis] = STATE(201), - [sym_emphasis_begin] = STATE(1005), - [sym_strong] = STATE(201), - [sym_strong_begin] = STATE(105), - [sym__hard_line_break] = STATE(201), - [sym_hard_line_break] = STATE(201), - [sym__smart_punctuation] = STATE(201), - [sym_autolink] = STATE(201), - [sym_highlighted] = STATE(201), - [sym_insert] = STATE(201), - [sym_delete] = STATE(201), - [sym_superscript] = STATE(201), - [sym_subscript] = STATE(201), - [sym_footnote_reference] = STATE(201), - [sym__image] = STATE(201), - [sym_full_reference_image] = STATE(201), - [sym_collapsed_reference_image] = STATE(201), - [sym_inline_image] = STATE(201), - [sym__image_description] = STATE(712), - [sym__link] = STATE(201), - [sym_full_reference_link] = STATE(201), - [sym_collapsed_reference_link] = STATE(201), - [sym_inline_link] = STATE(201), - [sym_link_text] = STATE(717), - [sym__comment_with_spaces] = STATE(201), - [sym_span] = STATE(201), - [sym_raw_inline] = STATE(201), - [sym_math] = STATE(201), - [sym_verbatim] = STATE(201), - [sym__todo_highlights] = STATE(201), - [sym_todo] = STATE(201), - [sym_note] = STATE(201), - [sym__symbol_fallback] = STATE(201), - [aux_sym__text] = STATE(139), - [aux_sym__inline_repeat1] = STATE(116), - [anon_sym_LBRACE_] = ACTIONS(1348), - [anon_sym__] = ACTIONS(1351), - [anon_sym_LBRACE_STAR] = ACTIONS(1354), - [anon_sym_STAR] = ACTIONS(1357), - [anon_sym_BSLASH] = ACTIONS(1360), - [sym_quotation_marks] = ACTIONS(1363), - [sym_ellipsis] = ACTIONS(1363), - [sym_em_dash] = ACTIONS(1363), - [sym_en_dash] = ACTIONS(1366), - [sym_backslash_escape] = ACTIONS(1366), - [anon_sym_LT] = ACTIONS(1369), - [anon_sym_LBRACE_EQ] = ACTIONS(1372), - [anon_sym_LBRACE_PLUS] = ACTIONS(1375), - [anon_sym_LBRACE_DASH] = ACTIONS(1378), - [sym_symbol] = ACTIONS(1363), - [anon_sym_LBRACE_CARET] = ACTIONS(1381), - [anon_sym_CARET] = ACTIONS(1381), - [anon_sym_LBRACE_TILDE] = ACTIONS(1384), - [anon_sym_TILDE] = ACTIONS(1384), - [anon_sym_LBRACK_CARET] = ACTIONS(1387), - [anon_sym_RBRACK] = ACTIONS(680), - [anon_sym_BANG_LBRACK] = ACTIONS(1390), - [anon_sym_LBRACK] = ACTIONS(1393), - [anon_sym_LBRACE2] = ACTIONS(1366), - [anon_sym_DOLLAR] = ACTIONS(1396), - [anon_sym_TODO] = ACTIONS(1399), - [anon_sym_WIP] = ACTIONS(1399), - [anon_sym_NOTE] = ACTIONS(1402), - [anon_sym_INFO] = ACTIONS(1402), - [anon_sym_XXX] = ACTIONS(1402), - [sym_fixme] = ACTIONS(1363), - [anon_sym_PIPE] = ACTIONS(1363), - [sym__whitespace1] = ACTIONS(1405), - [sym__newline] = ACTIONS(1408), - [aux_sym__text_token1] = ACTIONS(1411), - [sym__verbatim_begin] = ACTIONS(1414), - }, - [117] = { - [sym__element] = STATE(117), - [sym_emphasis] = STATE(191), - [sym_emphasis_begin] = STATE(1008), - [sym_strong] = STATE(191), - [sym_strong_begin] = STATE(90), - [sym__hard_line_break] = STATE(191), - [sym_hard_line_break] = STATE(191), - [sym__smart_punctuation] = STATE(191), - [sym_autolink] = STATE(191), - [sym_highlighted] = STATE(191), - [sym_insert] = STATE(191), - [sym_delete] = STATE(191), - [sym_superscript] = STATE(191), - [sym_subscript] = STATE(191), - [sym_footnote_reference] = STATE(191), - [sym__image] = STATE(191), - [sym_full_reference_image] = STATE(191), - [sym_collapsed_reference_image] = STATE(191), - [sym_inline_image] = STATE(191), - [sym__image_description] = STATE(699), - [sym__link] = STATE(191), - [sym_full_reference_link] = STATE(191), - [sym_collapsed_reference_link] = STATE(191), - [sym_inline_link] = STATE(191), - [sym_link_text] = STATE(698), - [sym__comment_with_spaces] = STATE(191), - [sym_span] = STATE(191), - [sym_raw_inline] = STATE(191), - [sym_math] = STATE(191), - [sym_verbatim] = STATE(191), - [sym__todo_highlights] = STATE(191), - [sym_todo] = STATE(191), - [sym_note] = STATE(191), - [sym__symbol_fallback] = STATE(191), - [aux_sym__text] = STATE(137), - [aux_sym__inline_repeat1] = STATE(117), - [anon_sym_LBRACE_] = ACTIONS(1417), - [anon_sym__] = ACTIONS(1420), - [anon_sym_LBRACE_STAR] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1426), - [anon_sym_BSLASH] = ACTIONS(1429), - [sym_quotation_marks] = ACTIONS(1432), - [sym_ellipsis] = ACTIONS(1432), - [sym_em_dash] = ACTIONS(1432), - [sym_en_dash] = ACTIONS(1435), - [sym_backslash_escape] = ACTIONS(1435), - [anon_sym_LT] = ACTIONS(1438), - [anon_sym_LBRACE_EQ] = ACTIONS(1441), - [anon_sym_LBRACE_PLUS] = ACTIONS(1444), - [anon_sym_LBRACE_DASH] = ACTIONS(1447), - [sym_symbol] = ACTIONS(1432), - [anon_sym_LBRACE_CARET] = ACTIONS(1450), - [anon_sym_CARET] = ACTIONS(1450), - [anon_sym_LBRACE_TILDE] = ACTIONS(1453), - [anon_sym_TILDE] = ACTIONS(1453), - [anon_sym_LBRACK_CARET] = ACTIONS(1456), - [anon_sym_BANG_LBRACK] = ACTIONS(1459), - [anon_sym_LBRACK] = ACTIONS(1462), - [anon_sym_RBRACK2] = ACTIONS(680), - [anon_sym_LBRACE2] = ACTIONS(1435), - [anon_sym_DOLLAR] = ACTIONS(1465), - [anon_sym_TODO] = ACTIONS(1468), - [anon_sym_WIP] = ACTIONS(1468), - [anon_sym_NOTE] = ACTIONS(1471), - [anon_sym_INFO] = ACTIONS(1471), - [anon_sym_XXX] = ACTIONS(1471), - [sym_fixme] = ACTIONS(1432), - [anon_sym_PIPE] = ACTIONS(1432), - [sym__whitespace1] = ACTIONS(1474), - [sym__newline] = ACTIONS(1477), - [aux_sym__text_token1] = ACTIONS(1480), - [sym__verbatim_begin] = ACTIONS(1483), - }, - [118] = { - [sym__element] = STATE(116), - [sym_emphasis] = STATE(201), - [sym_emphasis_begin] = STATE(1005), - [sym_strong] = STATE(201), - [sym_strong_begin] = STATE(105), - [sym__hard_line_break] = STATE(201), - [sym_hard_line_break] = STATE(201), - [sym__smart_punctuation] = STATE(201), - [sym_autolink] = STATE(201), - [sym_highlighted] = STATE(201), - [sym_insert] = STATE(201), - [sym_delete] = STATE(201), - [sym_superscript] = STATE(201), - [sym_subscript] = STATE(201), - [sym_footnote_reference] = STATE(201), - [sym__image] = STATE(201), - [sym_full_reference_image] = STATE(201), - [sym_collapsed_reference_image] = STATE(201), - [sym_inline_image] = STATE(201), - [sym__image_description] = STATE(712), - [sym__link] = STATE(201), - [sym_full_reference_link] = STATE(201), - [sym_collapsed_reference_link] = STATE(201), - [sym_inline_link] = STATE(201), - [sym_link_text] = STATE(717), - [sym__comment_with_spaces] = STATE(201), - [sym_span] = STATE(201), - [sym_raw_inline] = STATE(201), - [sym_math] = STATE(201), - [sym_verbatim] = STATE(201), - [sym__todo_highlights] = STATE(201), - [sym_todo] = STATE(201), - [sym_note] = STATE(201), - [sym__symbol_fallback] = STATE(201), - [aux_sym__text] = STATE(139), - [aux_sym__inline_repeat1] = STATE(116), - [anon_sym_LBRACE_] = ACTIONS(1486), - [anon_sym__] = ACTIONS(1488), - [anon_sym_LBRACE_STAR] = ACTIONS(1490), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_BSLASH] = ACTIONS(1494), - [sym_quotation_marks] = ACTIONS(1496), - [sym_ellipsis] = ACTIONS(1496), - [sym_em_dash] = ACTIONS(1496), - [sym_en_dash] = ACTIONS(1498), - [sym_backslash_escape] = ACTIONS(1498), - [anon_sym_LT] = ACTIONS(1500), - [anon_sym_LBRACE_EQ] = ACTIONS(1502), - [anon_sym_LBRACE_PLUS] = ACTIONS(1504), - [anon_sym_LBRACE_DASH] = ACTIONS(1506), - [sym_symbol] = ACTIONS(1496), - [anon_sym_LBRACE_CARET] = ACTIONS(1508), - [anon_sym_CARET] = ACTIONS(1508), - [anon_sym_LBRACE_TILDE] = ACTIONS(1510), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_LBRACK_CARET] = ACTIONS(1512), - [anon_sym_RBRACK] = ACTIONS(987), - [anon_sym_BANG_LBRACK] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_LBRACE2] = ACTIONS(1498), - [anon_sym_DOLLAR] = ACTIONS(1518), - [anon_sym_TODO] = ACTIONS(1520), - [anon_sym_WIP] = ACTIONS(1520), - [anon_sym_NOTE] = ACTIONS(1522), - [anon_sym_INFO] = ACTIONS(1522), - [anon_sym_XXX] = ACTIONS(1522), - [sym_fixme] = ACTIONS(1496), - [anon_sym_PIPE] = ACTIONS(1496), - [sym__whitespace1] = ACTIONS(1524), - [sym__newline] = ACTIONS(1526), - [aux_sym__text_token1] = ACTIONS(1528), - [sym__verbatim_begin] = ACTIONS(1530), + [aux_sym__text] = STATE(155), + [aux_sym__inline_repeat1] = STATE(111), + [anon_sym_LBRACE_] = ACTIONS(267), + [anon_sym__] = ACTIONS(269), + [anon_sym_LBRACE_STAR] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_LBRACE_CARET] = ACTIONS(275), + [anon_sym_CARET] = ACTIONS(275), + [anon_sym_LBRACE_TILDE] = ACTIONS(277), + [anon_sym_TILDE] = ACTIONS(277), + [anon_sym_LBRACE_EQ] = ACTIONS(279), + [anon_sym_LBRACE_PLUS] = ACTIONS(281), + [anon_sym_LBRACE_DASH] = ACTIONS(283), + [anon_sym_BSLASH] = ACTIONS(285), + [sym_quotation_marks] = ACTIONS(287), + [sym_ellipsis] = ACTIONS(287), + [sym_em_dash] = ACTIONS(287), + [sym_en_dash] = ACTIONS(289), + [sym_backslash_escape] = ACTIONS(289), + [anon_sym_LT] = ACTIONS(291), + [sym_symbol] = ACTIONS(287), + [anon_sym_LBRACK_CARET] = ACTIONS(293), + [anon_sym_BANG_LBRACK] = ACTIONS(295), + [anon_sym_LBRACK] = ACTIONS(297), + [anon_sym_LBRACE2] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(299), + [anon_sym_TODO] = ACTIONS(301), + [anon_sym_WIP] = ACTIONS(301), + [anon_sym_NOTE] = ACTIONS(303), + [anon_sym_INFO] = ACTIONS(303), + [anon_sym_XXX] = ACTIONS(303), + [sym_fixme] = ACTIONS(287), + [sym__whitespace1] = ACTIONS(305), + [sym__newline] = ACTIONS(307), + [aux_sym__text_token1] = ACTIONS(309), + [sym__verbatim_begin] = ACTIONS(311), }, [119] = { - [sym__inline] = STATE(797), - [sym__element] = STATE(95), - [sym_emphasis] = STATE(191), - [sym_emphasis_begin] = STATE(1008), - [sym_strong] = STATE(191), - [sym_strong_begin] = STATE(90), - [sym__hard_line_break] = STATE(191), - [sym_hard_line_break] = STATE(191), - [sym__smart_punctuation] = STATE(191), - [sym_autolink] = STATE(191), - [sym_highlighted] = STATE(191), - [sym_insert] = STATE(191), - [sym_delete] = STATE(191), - [sym_superscript] = STATE(191), - [sym_subscript] = STATE(191), - [sym_footnote_reference] = STATE(191), - [sym__image] = STATE(191), - [sym_full_reference_image] = STATE(191), - [sym_collapsed_reference_image] = STATE(191), - [sym_inline_image] = STATE(191), - [sym__image_description] = STATE(699), - [sym__link] = STATE(191), - [sym_full_reference_link] = STATE(191), - [sym_collapsed_reference_link] = STATE(191), - [sym_inline_link] = STATE(191), - [sym_link_text] = STATE(698), - [sym__comment_with_spaces] = STATE(191), - [sym_span] = STATE(191), - [sym_raw_inline] = STATE(191), - [sym_math] = STATE(191), - [sym_verbatim] = STATE(191), - [sym__todo_highlights] = STATE(191), - [sym_todo] = STATE(191), - [sym_note] = STATE(191), - [sym__symbol_fallback] = STATE(191), - [aux_sym__text] = STATE(137), - [aux_sym__inline_repeat1] = STATE(95), - [anon_sym_LBRACE_] = ACTIONS(592), - [anon_sym__] = ACTIONS(594), - [anon_sym_LBRACE_STAR] = ACTIONS(596), - [anon_sym_STAR] = ACTIONS(598), - [anon_sym_BSLASH] = ACTIONS(600), - [sym_quotation_marks] = ACTIONS(602), - [sym_ellipsis] = ACTIONS(602), - [sym_em_dash] = ACTIONS(602), - [sym_en_dash] = ACTIONS(604), - [sym_backslash_escape] = ACTIONS(604), - [anon_sym_LT] = ACTIONS(606), - [anon_sym_LBRACE_EQ] = ACTIONS(608), - [anon_sym_LBRACE_PLUS] = ACTIONS(610), - [anon_sym_LBRACE_DASH] = ACTIONS(612), - [sym_symbol] = ACTIONS(602), - [anon_sym_LBRACE_CARET] = ACTIONS(614), - [anon_sym_CARET] = ACTIONS(614), - [anon_sym_LBRACE_TILDE] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(616), - [anon_sym_LBRACK_CARET] = ACTIONS(618), - [anon_sym_BANG_LBRACK] = ACTIONS(620), - [anon_sym_LBRACK] = ACTIONS(622), - [anon_sym_LBRACE2] = ACTIONS(604), - [anon_sym_DOLLAR] = ACTIONS(624), - [anon_sym_TODO] = ACTIONS(626), - [anon_sym_WIP] = ACTIONS(626), - [anon_sym_NOTE] = ACTIONS(628), - [anon_sym_INFO] = ACTIONS(628), - [anon_sym_XXX] = ACTIONS(628), - [sym_fixme] = ACTIONS(602), - [anon_sym_PIPE] = ACTIONS(602), - [sym__whitespace1] = ACTIONS(630), - [sym__newline] = ACTIONS(632), - [aux_sym__text_token1] = ACTIONS(634), - [sym__verbatim_begin] = ACTIONS(636), + [sym__inline] = STATE(986), + [sym__element] = STATE(115), + [sym_emphasis] = STATE(192), + [sym_emphasis_begin] = STATE(1095), + [sym_strong] = STATE(192), + [sym_strong_begin] = STATE(1096), + [sym_superscript] = STATE(192), + [sym_superscript_begin] = STATE(1097), + [sym_subscript] = STATE(192), + [sym_subscript_begin] = STATE(1098), + [sym_highlighted] = STATE(192), + [sym_highlighted_begin] = STATE(1099), + [sym_insert] = STATE(192), + [sym_insert_begin] = STATE(1100), + [sym_delete] = STATE(192), + [sym_delete_begin] = STATE(1101), + [sym_hard_line_break] = STATE(192), + [sym__smart_punctuation] = STATE(192), + [sym_autolink] = STATE(192), + [sym_footnote_reference] = STATE(192), + [sym__image] = STATE(192), + [sym_full_reference_image] = STATE(192), + [sym_collapsed_reference_image] = STATE(192), + [sym_inline_image] = STATE(192), + [sym__image_description] = STATE(684), + [sym__link] = STATE(192), + [sym_full_reference_link] = STATE(192), + [sym_collapsed_reference_link] = STATE(192), + [sym_inline_link] = STATE(192), + [sym_link_text] = STATE(683), + [sym__comment_with_spaces] = STATE(192), + [sym_span] = STATE(192), + [sym_raw_inline] = STATE(192), + [sym_math] = STATE(192), + [sym_verbatim] = STATE(192), + [sym__todo_highlights] = STATE(192), + [sym_todo] = STATE(192), + [sym_note] = STATE(192), + [sym__symbol_fallback] = STATE(192), + [aux_sym__text] = STATE(141), + [aux_sym__inline_repeat1] = STATE(115), + [anon_sym_LBRACE_] = ACTIONS(129), + [anon_sym__] = ACTIONS(131), + [anon_sym_LBRACE_STAR] = ACTIONS(133), + [anon_sym_STAR] = ACTIONS(135), + [anon_sym_LBRACE_CARET] = ACTIONS(137), + [anon_sym_CARET] = ACTIONS(137), + [anon_sym_LBRACE_TILDE] = ACTIONS(139), + [anon_sym_TILDE] = ACTIONS(139), + [anon_sym_LBRACE_EQ] = ACTIONS(141), + [anon_sym_LBRACE_PLUS] = ACTIONS(143), + [anon_sym_LBRACE_DASH] = ACTIONS(145), + [anon_sym_BSLASH] = ACTIONS(147), + [sym_quotation_marks] = ACTIONS(149), + [sym_ellipsis] = ACTIONS(149), + [sym_em_dash] = ACTIONS(149), + [sym_en_dash] = ACTIONS(151), + [sym_backslash_escape] = ACTIONS(151), + [anon_sym_LT] = ACTIONS(153), + [sym_symbol] = ACTIONS(149), + [anon_sym_LBRACK_CARET] = ACTIONS(155), + [anon_sym_BANG_LBRACK] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LBRACE2] = ACTIONS(151), + [anon_sym_DOLLAR] = ACTIONS(161), + [anon_sym_TODO] = ACTIONS(163), + [anon_sym_WIP] = ACTIONS(163), + [anon_sym_NOTE] = ACTIONS(165), + [anon_sym_INFO] = ACTIONS(165), + [anon_sym_XXX] = ACTIONS(165), + [sym_fixme] = ACTIONS(149), + [sym__whitespace1] = ACTIONS(167), + [sym__newline] = ACTIONS(169), + [aux_sym__text_token1] = ACTIONS(171), + [sym__verbatim_begin] = ACTIONS(173), }, [120] = { - [sym__inline_without_trailing_space] = STATE(799), - [sym__element] = STATE(582), - [sym_emphasis] = STATE(176), - [sym_emphasis_begin] = STATE(1007), - [sym_strong] = STATE(176), - [sym_strong_begin] = STATE(94), - [sym__hard_line_break] = STATE(176), - [sym_hard_line_break] = STATE(176), - [sym__smart_punctuation] = STATE(176), - [sym_autolink] = STATE(176), - [sym_highlighted] = STATE(176), - [sym_insert] = STATE(176), - [sym_delete] = STATE(176), - [sym_superscript] = STATE(176), - [sym_subscript] = STATE(176), - [sym_footnote_reference] = STATE(176), - [sym__image] = STATE(176), - [sym_full_reference_image] = STATE(176), - [sym_collapsed_reference_image] = STATE(176), - [sym_inline_image] = STATE(176), - [sym__image_description] = STATE(685), - [sym__link] = STATE(176), - [sym_full_reference_link] = STATE(176), - [sym_collapsed_reference_link] = STATE(176), - [sym_inline_link] = STATE(176), - [sym_link_text] = STATE(704), - [sym__comment_with_spaces] = STATE(176), - [sym_span] = STATE(176), - [sym_raw_inline] = STATE(176), - [sym_math] = STATE(176), - [sym_verbatim] = STATE(176), - [sym__todo_highlights] = STATE(176), - [sym_todo] = STATE(176), - [sym_note] = STATE(176), - [sym__symbol_fallback] = STATE(176), - [aux_sym__text] = STATE(161), - [aux_sym__inline_repeat1] = STATE(131), - [anon_sym_LBRACE_] = ACTIONS(781), - [anon_sym__] = ACTIONS(783), - [anon_sym_LBRACE_STAR] = ACTIONS(785), - [anon_sym_STAR] = ACTIONS(787), - [anon_sym_BSLASH] = ACTIONS(789), - [sym_quotation_marks] = ACTIONS(791), - [sym_ellipsis] = ACTIONS(791), - [sym_em_dash] = ACTIONS(791), - [sym_en_dash] = ACTIONS(793), - [sym_backslash_escape] = ACTIONS(793), - [anon_sym_LT] = ACTIONS(795), - [anon_sym_LBRACE_EQ] = ACTIONS(797), - [anon_sym_LBRACE_PLUS] = ACTIONS(799), - [anon_sym_LBRACE_DASH] = ACTIONS(801), - [sym_symbol] = ACTIONS(791), - [anon_sym_LBRACE_CARET] = ACTIONS(803), - [anon_sym_CARET] = ACTIONS(803), - [anon_sym_LBRACE_TILDE] = ACTIONS(805), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_LBRACK_CARET] = ACTIONS(807), - [anon_sym_BANG_LBRACK] = ACTIONS(809), - [anon_sym_LBRACK] = ACTIONS(811), - [anon_sym_LBRACE2] = ACTIONS(793), - [anon_sym_DOLLAR] = ACTIONS(813), - [anon_sym_TODO] = ACTIONS(815), - [anon_sym_WIP] = ACTIONS(815), - [anon_sym_NOTE] = ACTIONS(817), - [anon_sym_INFO] = ACTIONS(817), - [anon_sym_XXX] = ACTIONS(817), - [sym_fixme] = ACTIONS(791), - [anon_sym_PIPE] = ACTIONS(791), - [sym__whitespace1] = ACTIONS(819), - [sym__newline] = ACTIONS(821), - [aux_sym__text_token1] = ACTIONS(823), - [sym__verbatim_begin] = ACTIONS(825), + [sym__inline] = STATE(987), + [sym__element] = STATE(93), + [sym_emphasis] = STATE(197), + [sym_emphasis_begin] = STATE(1088), + [sym_strong] = STATE(197), + [sym_strong_begin] = STATE(1089), + [sym_superscript] = STATE(197), + [sym_superscript_begin] = STATE(1090), + [sym_subscript] = STATE(197), + [sym_subscript_begin] = STATE(1091), + [sym_highlighted] = STATE(197), + [sym_highlighted_begin] = STATE(1092), + [sym_insert] = STATE(197), + [sym_insert_begin] = STATE(1093), + [sym_delete] = STATE(197), + [sym_delete_begin] = STATE(1094), + [sym_hard_line_break] = STATE(197), + [sym__smart_punctuation] = STATE(197), + [sym_autolink] = STATE(197), + [sym_footnote_reference] = STATE(197), + [sym__image] = STATE(197), + [sym_full_reference_image] = STATE(197), + [sym_collapsed_reference_image] = STATE(197), + [sym_inline_image] = STATE(197), + [sym__image_description] = STATE(697), + [sym__link] = STATE(197), + [sym_full_reference_link] = STATE(197), + [sym_collapsed_reference_link] = STATE(197), + [sym_inline_link] = STATE(197), + [sym_link_text] = STATE(682), + [sym__comment_with_spaces] = STATE(197), + [sym_span] = STATE(197), + [sym_raw_inline] = STATE(197), + [sym_math] = STATE(197), + [sym_verbatim] = STATE(197), + [sym__todo_highlights] = STATE(197), + [sym_todo] = STATE(197), + [sym_note] = STATE(197), + [sym__symbol_fallback] = STATE(197), + [aux_sym__text] = STATE(134), + [aux_sym__inline_repeat1] = STATE(93), + [anon_sym_LBRACE_] = ACTIONS(313), + [anon_sym__] = ACTIONS(315), + [anon_sym_LBRACE_STAR] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_LBRACE_CARET] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [anon_sym_LBRACE_TILDE] = ACTIONS(323), + [anon_sym_TILDE] = ACTIONS(323), + [anon_sym_LBRACE_EQ] = ACTIONS(325), + [anon_sym_LBRACE_PLUS] = ACTIONS(327), + [anon_sym_LBRACE_DASH] = ACTIONS(329), + [anon_sym_BSLASH] = ACTIONS(331), + [sym_quotation_marks] = ACTIONS(333), + [sym_ellipsis] = ACTIONS(333), + [sym_em_dash] = ACTIONS(333), + [sym_en_dash] = ACTIONS(335), + [sym_backslash_escape] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(337), + [sym_symbol] = ACTIONS(333), + [anon_sym_LBRACK_CARET] = ACTIONS(339), + [anon_sym_BANG_LBRACK] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_LBRACE2] = ACTIONS(335), + [anon_sym_DOLLAR] = ACTIONS(345), + [anon_sym_TODO] = ACTIONS(347), + [anon_sym_WIP] = ACTIONS(347), + [anon_sym_NOTE] = ACTIONS(349), + [anon_sym_INFO] = ACTIONS(349), + [anon_sym_XXX] = ACTIONS(349), + [sym_fixme] = ACTIONS(333), + [sym__whitespace1] = ACTIONS(351), + [sym__newline] = ACTIONS(353), + [aux_sym__text_token1] = ACTIONS(355), + [sym__verbatim_begin] = ACTIONS(357), }, [121] = { - [sym__inline] = STATE(723), - [sym__element] = STATE(106), - [sym_emphasis] = STATE(186), - [sym_emphasis_begin] = STATE(1006), - [sym_strong] = STATE(186), - [sym_strong_begin] = STATE(79), - [sym__hard_line_break] = STATE(186), - [sym_hard_line_break] = STATE(186), - [sym__smart_punctuation] = STATE(186), - [sym_autolink] = STATE(186), - [sym_highlighted] = STATE(186), - [sym_insert] = STATE(186), - [sym_delete] = STATE(186), - [sym_superscript] = STATE(186), - [sym_subscript] = STATE(186), - [sym_footnote_reference] = STATE(186), - [sym__image] = STATE(186), - [sym_full_reference_image] = STATE(186), - [sym_collapsed_reference_image] = STATE(186), - [sym_inline_image] = STATE(186), - [sym__image_description] = STATE(714), - [sym__link] = STATE(186), - [sym_full_reference_link] = STATE(186), - [sym_collapsed_reference_link] = STATE(186), - [sym_inline_link] = STATE(186), - [sym_link_text] = STATE(713), - [sym__comment_with_spaces] = STATE(186), - [sym_span] = STATE(186), - [sym_raw_inline] = STATE(186), - [sym_math] = STATE(186), - [sym_verbatim] = STATE(186), - [sym__todo_highlights] = STATE(186), - [sym_todo] = STATE(186), - [sym_note] = STATE(186), - [sym__symbol_fallback] = STATE(186), - [aux_sym__text] = STATE(160), - [aux_sym__inline_repeat1] = STATE(106), - [anon_sym_LBRACE_] = ACTIONS(546), - [anon_sym__] = ACTIONS(548), - [anon_sym_LBRACE_STAR] = ACTIONS(550), - [anon_sym_STAR] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(554), - [sym_quotation_marks] = ACTIONS(556), - [sym_ellipsis] = ACTIONS(556), - [sym_em_dash] = ACTIONS(556), - [sym_en_dash] = ACTIONS(558), - [sym_backslash_escape] = ACTIONS(558), - [anon_sym_LT] = ACTIONS(560), - [anon_sym_LBRACE_EQ] = ACTIONS(562), - [anon_sym_LBRACE_PLUS] = ACTIONS(564), - [anon_sym_LBRACE_DASH] = ACTIONS(566), - [sym_symbol] = ACTIONS(556), - [anon_sym_LBRACE_CARET] = ACTIONS(568), - [anon_sym_CARET] = ACTIONS(568), - [anon_sym_LBRACE_TILDE] = ACTIONS(570), - [anon_sym_TILDE] = ACTIONS(570), - [anon_sym_LBRACK_CARET] = ACTIONS(572), - [anon_sym_BANG_LBRACK] = ACTIONS(574), - [anon_sym_LBRACK] = ACTIONS(576), - [anon_sym_LBRACE2] = ACTIONS(558), - [anon_sym_DOLLAR] = ACTIONS(578), - [anon_sym_TODO] = ACTIONS(580), - [anon_sym_WIP] = ACTIONS(580), - [anon_sym_NOTE] = ACTIONS(582), - [anon_sym_INFO] = ACTIONS(582), - [anon_sym_XXX] = ACTIONS(582), - [sym_fixme] = ACTIONS(556), - [anon_sym_PIPE] = ACTIONS(556), - [sym__whitespace1] = ACTIONS(584), - [sym__newline] = ACTIONS(586), - [aux_sym__text_token1] = ACTIONS(588), - [sym__verbatim_begin] = ACTIONS(590), + [sym__inline] = STATE(993), + [sym__element] = STATE(79), + [sym_emphasis] = STATE(161), + [sym_emphasis_begin] = STATE(1081), + [sym_strong] = STATE(161), + [sym_strong_begin] = STATE(1082), + [sym_superscript] = STATE(161), + [sym_superscript_begin] = STATE(1083), + [sym_subscript] = STATE(161), + [sym_subscript_begin] = STATE(1084), + [sym_highlighted] = STATE(161), + [sym_highlighted_begin] = STATE(1085), + [sym_insert] = STATE(161), + [sym_insert_begin] = STATE(1086), + [sym_delete] = STATE(161), + [sym_delete_begin] = STATE(1087), + [sym_hard_line_break] = STATE(161), + [sym__smart_punctuation] = STATE(161), + [sym_autolink] = STATE(161), + [sym_footnote_reference] = STATE(161), + [sym__image] = STATE(161), + [sym_full_reference_image] = STATE(161), + [sym_collapsed_reference_image] = STATE(161), + [sym_inline_image] = STATE(161), + [sym__image_description] = STATE(692), + [sym__link] = STATE(161), + [sym_full_reference_link] = STATE(161), + [sym_collapsed_reference_link] = STATE(161), + [sym_inline_link] = STATE(161), + [sym_link_text] = STATE(687), + [sym__comment_with_spaces] = STATE(161), + [sym_span] = STATE(161), + [sym_raw_inline] = STATE(161), + [sym_math] = STATE(161), + [sym_verbatim] = STATE(161), + [sym__todo_highlights] = STATE(161), + [sym_todo] = STATE(161), + [sym_note] = STATE(161), + [sym__symbol_fallback] = STATE(161), + [aux_sym__text] = STATE(149), + [aux_sym__inline_repeat1] = STATE(79), + [anon_sym_LBRACE_] = ACTIONS(359), + [anon_sym__] = ACTIONS(361), + [anon_sym_LBRACE_STAR] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(365), + [anon_sym_LBRACE_CARET] = ACTIONS(367), + [anon_sym_CARET] = ACTIONS(367), + [anon_sym_LBRACE_TILDE] = ACTIONS(369), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_LBRACE_EQ] = ACTIONS(371), + [anon_sym_LBRACE_PLUS] = ACTIONS(373), + [anon_sym_LBRACE_DASH] = ACTIONS(375), + [anon_sym_BSLASH] = ACTIONS(377), + [sym_quotation_marks] = ACTIONS(379), + [sym_ellipsis] = ACTIONS(379), + [sym_em_dash] = ACTIONS(379), + [sym_en_dash] = ACTIONS(381), + [sym_backslash_escape] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(383), + [sym_symbol] = ACTIONS(379), + [anon_sym_LBRACK_CARET] = ACTIONS(385), + [anon_sym_BANG_LBRACK] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE2] = ACTIONS(381), + [anon_sym_DOLLAR] = ACTIONS(391), + [anon_sym_TODO] = ACTIONS(393), + [anon_sym_WIP] = ACTIONS(393), + [anon_sym_NOTE] = ACTIONS(395), + [anon_sym_INFO] = ACTIONS(395), + [anon_sym_XXX] = ACTIONS(395), + [sym_fixme] = ACTIONS(379), + [sym__whitespace1] = ACTIONS(397), + [sym__newline] = ACTIONS(399), + [aux_sym__text_token1] = ACTIONS(401), + [sym__verbatim_begin] = ACTIONS(403), }, [122] = { - [sym__inline] = STATE(842), - [sym__element] = STATE(95), - [sym_emphasis] = STATE(191), - [sym_emphasis_begin] = STATE(1008), - [sym_strong] = STATE(191), - [sym_strong_begin] = STATE(90), - [sym__hard_line_break] = STATE(191), - [sym_hard_line_break] = STATE(191), - [sym__smart_punctuation] = STATE(191), - [sym_autolink] = STATE(191), - [sym_highlighted] = STATE(191), - [sym_insert] = STATE(191), - [sym_delete] = STATE(191), - [sym_superscript] = STATE(191), - [sym_subscript] = STATE(191), - [sym_footnote_reference] = STATE(191), - [sym__image] = STATE(191), - [sym_full_reference_image] = STATE(191), - [sym_collapsed_reference_image] = STATE(191), - [sym_inline_image] = STATE(191), - [sym__image_description] = STATE(699), - [sym__link] = STATE(191), - [sym_full_reference_link] = STATE(191), - [sym_collapsed_reference_link] = STATE(191), - [sym_inline_link] = STATE(191), - [sym_link_text] = STATE(698), - [sym__comment_with_spaces] = STATE(191), - [sym_span] = STATE(191), - [sym_raw_inline] = STATE(191), - [sym_math] = STATE(191), - [sym_verbatim] = STATE(191), - [sym__todo_highlights] = STATE(191), - [sym_todo] = STATE(191), - [sym_note] = STATE(191), - [sym__symbol_fallback] = STATE(191), - [aux_sym__text] = STATE(137), - [aux_sym__inline_repeat1] = STATE(95), - [anon_sym_LBRACE_] = ACTIONS(592), - [anon_sym__] = ACTIONS(594), - [anon_sym_LBRACE_STAR] = ACTIONS(596), - [anon_sym_STAR] = ACTIONS(598), - [anon_sym_BSLASH] = ACTIONS(600), - [sym_quotation_marks] = ACTIONS(602), - [sym_ellipsis] = ACTIONS(602), - [sym_em_dash] = ACTIONS(602), - [sym_en_dash] = ACTIONS(604), - [sym_backslash_escape] = ACTIONS(604), - [anon_sym_LT] = ACTIONS(606), - [anon_sym_LBRACE_EQ] = ACTIONS(608), - [anon_sym_LBRACE_PLUS] = ACTIONS(610), - [anon_sym_LBRACE_DASH] = ACTIONS(612), - [sym_symbol] = ACTIONS(602), - [anon_sym_LBRACE_CARET] = ACTIONS(614), - [anon_sym_CARET] = ACTIONS(614), - [anon_sym_LBRACE_TILDE] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(616), - [anon_sym_LBRACK_CARET] = ACTIONS(618), - [anon_sym_BANG_LBRACK] = ACTIONS(620), - [anon_sym_LBRACK] = ACTIONS(622), - [anon_sym_LBRACE2] = ACTIONS(604), - [anon_sym_DOLLAR] = ACTIONS(624), - [anon_sym_TODO] = ACTIONS(626), - [anon_sym_WIP] = ACTIONS(626), - [anon_sym_NOTE] = ACTIONS(628), - [anon_sym_INFO] = ACTIONS(628), - [anon_sym_XXX] = ACTIONS(628), - [sym_fixme] = ACTIONS(602), - [anon_sym_PIPE] = ACTIONS(602), - [sym__whitespace1] = ACTIONS(630), - [sym__newline] = ACTIONS(632), - [aux_sym__text_token1] = ACTIONS(634), - [sym__verbatim_begin] = ACTIONS(636), + [sym__inline_without_trailing_space] = STATE(995), + [sym__element] = STATE(572), + [sym_emphasis] = STATE(208), + [sym_emphasis_begin] = STATE(1074), + [sym_strong] = STATE(208), + [sym_strong_begin] = STATE(1075), + [sym_superscript] = STATE(208), + [sym_superscript_begin] = STATE(1076), + [sym_subscript] = STATE(208), + [sym_subscript_begin] = STATE(1077), + [sym_highlighted] = STATE(208), + [sym_highlighted_begin] = STATE(1078), + [sym_insert] = STATE(208), + [sym_insert_begin] = STATE(1079), + [sym_delete] = STATE(208), + [sym_delete_begin] = STATE(1080), + [sym_hard_line_break] = STATE(208), + [sym__smart_punctuation] = STATE(208), + [sym_autolink] = STATE(208), + [sym_footnote_reference] = STATE(208), + [sym__image] = STATE(208), + [sym_full_reference_image] = STATE(208), + [sym_collapsed_reference_image] = STATE(208), + [sym_inline_image] = STATE(208), + [sym__image_description] = STATE(680), + [sym__link] = STATE(208), + [sym_full_reference_link] = STATE(208), + [sym_collapsed_reference_link] = STATE(208), + [sym_inline_link] = STATE(208), + [sym_link_text] = STATE(663), + [sym__comment_with_spaces] = STATE(208), + [sym_span] = STATE(208), + [sym_raw_inline] = STATE(208), + [sym_math] = STATE(208), + [sym_verbatim] = STATE(208), + [sym__todo_highlights] = STATE(208), + [sym_todo] = STATE(208), + [sym_note] = STATE(208), + [sym__symbol_fallback] = STATE(208), + [aux_sym__text] = STATE(131), + [aux_sym__inline_repeat1] = STATE(130), + [anon_sym_LBRACE_] = ACTIONS(175), + [anon_sym__] = ACTIONS(177), + [anon_sym_LBRACE_STAR] = ACTIONS(179), + [anon_sym_STAR] = ACTIONS(181), + [anon_sym_LBRACE_CARET] = ACTIONS(183), + [anon_sym_CARET] = ACTIONS(183), + [anon_sym_LBRACE_TILDE] = ACTIONS(185), + [anon_sym_TILDE] = ACTIONS(185), + [anon_sym_LBRACE_EQ] = ACTIONS(187), + [anon_sym_LBRACE_PLUS] = ACTIONS(189), + [anon_sym_LBRACE_DASH] = ACTIONS(191), + [anon_sym_BSLASH] = ACTIONS(193), + [sym_quotation_marks] = ACTIONS(195), + [sym_ellipsis] = ACTIONS(195), + [sym_em_dash] = ACTIONS(195), + [sym_en_dash] = ACTIONS(197), + [sym_backslash_escape] = ACTIONS(197), + [anon_sym_LT] = ACTIONS(199), + [sym_symbol] = ACTIONS(195), + [anon_sym_LBRACK_CARET] = ACTIONS(201), + [anon_sym_BANG_LBRACK] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACE2] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(207), + [anon_sym_TODO] = ACTIONS(209), + [anon_sym_WIP] = ACTIONS(209), + [anon_sym_NOTE] = ACTIONS(211), + [anon_sym_INFO] = ACTIONS(211), + [anon_sym_XXX] = ACTIONS(211), + [sym_fixme] = ACTIONS(195), + [sym__whitespace1] = ACTIONS(213), + [sym__newline] = ACTIONS(215), + [aux_sym__text_token1] = ACTIONS(217), + [sym__verbatim_begin] = ACTIONS(219), }, [123] = { [sym__element] = STATE(123), - [sym_emphasis] = STATE(205), - [sym_emphasis_begin] = STATE(1000), - [sym_strong] = STATE(205), - [sym_strong_begin] = STATE(129), - [sym__hard_line_break] = STATE(205), - [sym_hard_line_break] = STATE(205), - [sym__smart_punctuation] = STATE(205), - [sym_autolink] = STATE(205), - [sym_highlighted] = STATE(205), - [sym_insert] = STATE(205), - [sym_delete] = STATE(205), - [sym_superscript] = STATE(205), - [sym_subscript] = STATE(205), - [sym_footnote_reference] = STATE(205), - [sym__image] = STATE(205), - [sym_full_reference_image] = STATE(205), - [sym_collapsed_reference_image] = STATE(205), - [sym_inline_image] = STATE(205), - [sym__image_description] = STATE(705), - [sym__link] = STATE(205), - [sym_full_reference_link] = STATE(205), - [sym_collapsed_reference_link] = STATE(205), - [sym_inline_link] = STATE(205), - [sym_link_text] = STATE(703), - [sym__comment_with_spaces] = STATE(205), - [sym_span] = STATE(205), - [sym_raw_inline] = STATE(205), - [sym_math] = STATE(205), - [sym_verbatim] = STATE(205), - [sym__todo_highlights] = STATE(205), - [sym_todo] = STATE(205), - [sym_note] = STATE(205), - [sym__symbol_fallback] = STATE(205), - [aux_sym__text] = STATE(136), + [sym_emphasis] = STATE(197), + [sym_emphasis_begin] = STATE(1088), + [sym_strong] = STATE(197), + [sym_strong_begin] = STATE(1089), + [sym_superscript] = STATE(197), + [sym_superscript_begin] = STATE(1090), + [sym_subscript] = STATE(197), + [sym_subscript_begin] = STATE(1091), + [sym_highlighted] = STATE(197), + [sym_highlighted_begin] = STATE(1092), + [sym_insert] = STATE(197), + [sym_insert_begin] = STATE(1093), + [sym_delete] = STATE(197), + [sym_delete_begin] = STATE(1094), + [sym_hard_line_break] = STATE(197), + [sym__smart_punctuation] = STATE(197), + [sym_autolink] = STATE(197), + [sym_footnote_reference] = STATE(197), + [sym__image] = STATE(197), + [sym_full_reference_image] = STATE(197), + [sym_collapsed_reference_image] = STATE(197), + [sym_inline_image] = STATE(197), + [sym__image_description] = STATE(697), + [sym__link] = STATE(197), + [sym_full_reference_link] = STATE(197), + [sym_collapsed_reference_link] = STATE(197), + [sym_inline_link] = STATE(197), + [sym_link_text] = STATE(682), + [sym__comment_with_spaces] = STATE(197), + [sym_span] = STATE(197), + [sym_raw_inline] = STATE(197), + [sym_math] = STATE(197), + [sym_verbatim] = STATE(197), + [sym__todo_highlights] = STATE(197), + [sym_todo] = STATE(197), + [sym_note] = STATE(197), + [sym__symbol_fallback] = STATE(197), + [aux_sym__text] = STATE(134), [aux_sym__inline_repeat1] = STATE(123), - [anon_sym_LBRACE_] = ACTIONS(1532), - [anon_sym__] = ACTIONS(1535), - [anon_sym_LBRACE_STAR] = ACTIONS(1538), - [anon_sym_STAR] = ACTIONS(1541), - [anon_sym_BSLASH] = ACTIONS(1544), - [sym_quotation_marks] = ACTIONS(1547), - [sym_ellipsis] = ACTIONS(1547), - [sym_em_dash] = ACTIONS(1547), - [sym_en_dash] = ACTIONS(1550), - [sym_backslash_escape] = ACTIONS(1550), - [anon_sym_LT] = ACTIONS(1553), - [anon_sym_LBRACE_EQ] = ACTIONS(1556), - [anon_sym_EQ_RBRACE] = ACTIONS(680), - [anon_sym_LBRACE_PLUS] = ACTIONS(1559), - [anon_sym_LBRACE_DASH] = ACTIONS(1562), - [sym_symbol] = ACTIONS(1547), - [anon_sym_LBRACE_CARET] = ACTIONS(1565), - [anon_sym_CARET] = ACTIONS(1565), - [anon_sym_LBRACE_TILDE] = ACTIONS(1568), - [anon_sym_TILDE] = ACTIONS(1568), - [anon_sym_LBRACK_CARET] = ACTIONS(1571), - [anon_sym_BANG_LBRACK] = ACTIONS(1574), - [anon_sym_LBRACK] = ACTIONS(1577), - [anon_sym_LBRACE2] = ACTIONS(1550), - [anon_sym_DOLLAR] = ACTIONS(1580), - [anon_sym_TODO] = ACTIONS(1583), - [anon_sym_WIP] = ACTIONS(1583), - [anon_sym_NOTE] = ACTIONS(1586), - [anon_sym_INFO] = ACTIONS(1586), - [anon_sym_XXX] = ACTIONS(1586), - [sym_fixme] = ACTIONS(1547), - [anon_sym_PIPE] = ACTIONS(1547), - [sym__whitespace1] = ACTIONS(1589), - [sym__newline] = ACTIONS(1592), - [aux_sym__text_token1] = ACTIONS(1595), - [sym__verbatim_begin] = ACTIONS(1598), + [anon_sym_LBRACE_] = ACTIONS(1044), + [anon_sym__] = ACTIONS(1047), + [anon_sym_LBRACE_STAR] = ACTIONS(1050), + [anon_sym_STAR] = ACTIONS(1053), + [anon_sym_LBRACE_CARET] = ACTIONS(1056), + [anon_sym_CARET] = ACTIONS(1056), + [anon_sym_LBRACE_TILDE] = ACTIONS(1059), + [anon_sym_TILDE] = ACTIONS(1059), + [anon_sym_LBRACE_EQ] = ACTIONS(1062), + [anon_sym_LBRACE_PLUS] = ACTIONS(1065), + [anon_sym_LBRACE_DASH] = ACTIONS(1068), + [anon_sym_BSLASH] = ACTIONS(1071), + [sym_quotation_marks] = ACTIONS(1074), + [sym_ellipsis] = ACTIONS(1074), + [sym_em_dash] = ACTIONS(1074), + [sym_en_dash] = ACTIONS(1077), + [sym_backslash_escape] = ACTIONS(1077), + [anon_sym_LT] = ACTIONS(1080), + [sym_symbol] = ACTIONS(1074), + [anon_sym_LBRACK_CARET] = ACTIONS(1083), + [anon_sym_BANG_LBRACK] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LBRACE2] = ACTIONS(1077), + [anon_sym_DOLLAR] = ACTIONS(1092), + [anon_sym_TODO] = ACTIONS(1095), + [anon_sym_WIP] = ACTIONS(1095), + [anon_sym_NOTE] = ACTIONS(1098), + [anon_sym_INFO] = ACTIONS(1098), + [anon_sym_XXX] = ACTIONS(1098), + [sym_fixme] = ACTIONS(1074), + [sym__whitespace1] = ACTIONS(1101), + [sym__newline] = ACTIONS(1104), + [aux_sym__text_token1] = ACTIONS(1107), + [sym__verbatim_begin] = ACTIONS(1110), + [sym_subscript_end] = ACTIONS(549), }, [124] = { - [sym__inline_without_trailing_space] = STATE(850), - [sym__element] = STATE(582), - [sym_emphasis] = STATE(176), - [sym_emphasis_begin] = STATE(1007), - [sym_strong] = STATE(176), - [sym_strong_begin] = STATE(94), - [sym__hard_line_break] = STATE(176), - [sym_hard_line_break] = STATE(176), - [sym__smart_punctuation] = STATE(176), - [sym_autolink] = STATE(176), - [sym_highlighted] = STATE(176), - [sym_insert] = STATE(176), - [sym_delete] = STATE(176), - [sym_superscript] = STATE(176), - [sym_subscript] = STATE(176), - [sym_footnote_reference] = STATE(176), - [sym__image] = STATE(176), - [sym_full_reference_image] = STATE(176), - [sym_collapsed_reference_image] = STATE(176), - [sym_inline_image] = STATE(176), - [sym__image_description] = STATE(685), - [sym__link] = STATE(176), - [sym_full_reference_link] = STATE(176), - [sym_collapsed_reference_link] = STATE(176), - [sym_inline_link] = STATE(176), - [sym_link_text] = STATE(704), - [sym__comment_with_spaces] = STATE(176), - [sym_span] = STATE(176), - [sym_raw_inline] = STATE(176), - [sym_math] = STATE(176), - [sym_verbatim] = STATE(176), - [sym__todo_highlights] = STATE(176), - [sym_todo] = STATE(176), - [sym_note] = STATE(176), - [sym__symbol_fallback] = STATE(176), - [aux_sym__text] = STATE(161), - [aux_sym__inline_repeat1] = STATE(131), - [anon_sym_LBRACE_] = ACTIONS(781), - [anon_sym__] = ACTIONS(783), - [anon_sym_LBRACE_STAR] = ACTIONS(785), - [anon_sym_STAR] = ACTIONS(787), - [anon_sym_BSLASH] = ACTIONS(789), - [sym_quotation_marks] = ACTIONS(791), - [sym_ellipsis] = ACTIONS(791), - [sym_em_dash] = ACTIONS(791), - [sym_en_dash] = ACTIONS(793), - [sym_backslash_escape] = ACTIONS(793), - [anon_sym_LT] = ACTIONS(795), - [anon_sym_LBRACE_EQ] = ACTIONS(797), - [anon_sym_LBRACE_PLUS] = ACTIONS(799), - [anon_sym_LBRACE_DASH] = ACTIONS(801), - [sym_symbol] = ACTIONS(791), - [anon_sym_LBRACE_CARET] = ACTIONS(803), - [anon_sym_CARET] = ACTIONS(803), - [anon_sym_LBRACE_TILDE] = ACTIONS(805), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_LBRACK_CARET] = ACTIONS(807), - [anon_sym_BANG_LBRACK] = ACTIONS(809), - [anon_sym_LBRACK] = ACTIONS(811), - [anon_sym_LBRACE2] = ACTIONS(793), - [anon_sym_DOLLAR] = ACTIONS(813), - [anon_sym_TODO] = ACTIONS(815), - [anon_sym_WIP] = ACTIONS(815), - [anon_sym_NOTE] = ACTIONS(817), - [anon_sym_INFO] = ACTIONS(817), - [anon_sym_XXX] = ACTIONS(817), - [sym_fixme] = ACTIONS(791), - [anon_sym_PIPE] = ACTIONS(791), - [sym__whitespace1] = ACTIONS(819), - [sym__newline] = ACTIONS(821), - [aux_sym__text_token1] = ACTIONS(823), - [sym__verbatim_begin] = ACTIONS(825), + [sym__inline_without_trailing_space] = STATE(996), + [sym__element] = STATE(603), + [sym_emphasis] = STATE(177), + [sym_emphasis_begin] = STATE(1067), + [sym_strong] = STATE(177), + [sym_strong_begin] = STATE(1068), + [sym_superscript] = STATE(177), + [sym_superscript_begin] = STATE(1069), + [sym_subscript] = STATE(177), + [sym_subscript_begin] = STATE(1070), + [sym_highlighted] = STATE(177), + [sym_highlighted_begin] = STATE(1071), + [sym_insert] = STATE(177), + [sym_insert_begin] = STATE(1072), + [sym_delete] = STATE(177), + [sym_delete_begin] = STATE(1073), + [sym_hard_line_break] = STATE(177), + [sym__smart_punctuation] = STATE(177), + [sym_autolink] = STATE(177), + [sym_footnote_reference] = STATE(177), + [sym__image] = STATE(177), + [sym_full_reference_image] = STATE(177), + [sym_collapsed_reference_image] = STATE(177), + [sym_inline_image] = STATE(177), + [sym__image_description] = STATE(681), + [sym__link] = STATE(177), + [sym_full_reference_link] = STATE(177), + [sym_collapsed_reference_link] = STATE(177), + [sym_inline_link] = STATE(177), + [sym_link_text] = STATE(668), + [sym__comment_with_spaces] = STATE(177), + [sym_span] = STATE(177), + [sym_raw_inline] = STATE(177), + [sym_math] = STATE(177), + [sym_verbatim] = STATE(177), + [sym__todo_highlights] = STATE(177), + [sym_todo] = STATE(177), + [sym_note] = STATE(177), + [sym__symbol_fallback] = STATE(177), + [aux_sym__text] = STATE(132), + [aux_sym__inline_repeat1] = STATE(128), + [anon_sym_LBRACE_] = ACTIONS(405), + [anon_sym__] = ACTIONS(407), + [anon_sym_LBRACE_STAR] = ACTIONS(409), + [anon_sym_STAR] = ACTIONS(411), + [anon_sym_LBRACE_CARET] = ACTIONS(413), + [anon_sym_CARET] = ACTIONS(413), + [anon_sym_LBRACE_TILDE] = ACTIONS(415), + [anon_sym_TILDE] = ACTIONS(415), + [anon_sym_LBRACE_EQ] = ACTIONS(417), + [anon_sym_LBRACE_PLUS] = ACTIONS(419), + [anon_sym_LBRACE_DASH] = ACTIONS(421), + [anon_sym_BSLASH] = ACTIONS(423), + [sym_quotation_marks] = ACTIONS(425), + [sym_ellipsis] = ACTIONS(425), + [sym_em_dash] = ACTIONS(425), + [sym_en_dash] = ACTIONS(427), + [sym_backslash_escape] = ACTIONS(427), + [anon_sym_LT] = ACTIONS(429), + [sym_symbol] = ACTIONS(425), + [anon_sym_LBRACK_CARET] = ACTIONS(431), + [anon_sym_BANG_LBRACK] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LBRACE2] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(437), + [anon_sym_TODO] = ACTIONS(439), + [anon_sym_WIP] = ACTIONS(439), + [anon_sym_NOTE] = ACTIONS(441), + [anon_sym_INFO] = ACTIONS(441), + [anon_sym_XXX] = ACTIONS(441), + [sym_fixme] = ACTIONS(425), + [sym__whitespace1] = ACTIONS(443), + [sym__newline] = ACTIONS(445), + [aux_sym__text_token1] = ACTIONS(447), + [sym__verbatim_begin] = ACTIONS(449), }, [125] = { - [sym__inline_without_trailing_space] = STATE(987), - [sym__element] = STATE(582), - [sym_emphasis] = STATE(176), - [sym_emphasis_begin] = STATE(1007), - [sym_strong] = STATE(176), - [sym_strong_begin] = STATE(94), - [sym__hard_line_break] = STATE(176), - [sym_hard_line_break] = STATE(176), - [sym__smart_punctuation] = STATE(176), - [sym_autolink] = STATE(176), - [sym_highlighted] = STATE(176), - [sym_insert] = STATE(176), - [sym_delete] = STATE(176), - [sym_superscript] = STATE(176), - [sym_subscript] = STATE(176), - [sym_footnote_reference] = STATE(176), - [sym__image] = STATE(176), - [sym_full_reference_image] = STATE(176), - [sym_collapsed_reference_image] = STATE(176), - [sym_inline_image] = STATE(176), - [sym__image_description] = STATE(685), - [sym__link] = STATE(176), - [sym_full_reference_link] = STATE(176), - [sym_collapsed_reference_link] = STATE(176), - [sym_inline_link] = STATE(176), - [sym_link_text] = STATE(704), - [sym__comment_with_spaces] = STATE(176), - [sym_span] = STATE(176), - [sym_raw_inline] = STATE(176), - [sym_math] = STATE(176), - [sym_verbatim] = STATE(176), - [sym__todo_highlights] = STATE(176), - [sym_todo] = STATE(176), - [sym_note] = STATE(176), - [sym__symbol_fallback] = STATE(176), - [aux_sym__text] = STATE(161), - [aux_sym__inline_repeat1] = STATE(131), - [anon_sym_LBRACE_] = ACTIONS(781), - [anon_sym__] = ACTIONS(783), - [anon_sym_LBRACE_STAR] = ACTIONS(785), - [anon_sym_STAR] = ACTIONS(787), - [anon_sym_BSLASH] = ACTIONS(789), - [sym_quotation_marks] = ACTIONS(791), - [sym_ellipsis] = ACTIONS(791), - [sym_em_dash] = ACTIONS(791), - [sym_en_dash] = ACTIONS(793), - [sym_backslash_escape] = ACTIONS(793), - [anon_sym_LT] = ACTIONS(795), - [anon_sym_LBRACE_EQ] = ACTIONS(797), - [anon_sym_LBRACE_PLUS] = ACTIONS(799), - [anon_sym_LBRACE_DASH] = ACTIONS(801), - [sym_symbol] = ACTIONS(791), - [anon_sym_LBRACE_CARET] = ACTIONS(803), - [anon_sym_CARET] = ACTIONS(803), - [anon_sym_LBRACE_TILDE] = ACTIONS(805), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_LBRACK_CARET] = ACTIONS(807), - [anon_sym_BANG_LBRACK] = ACTIONS(809), - [anon_sym_LBRACK] = ACTIONS(811), - [anon_sym_LBRACE2] = ACTIONS(793), - [anon_sym_DOLLAR] = ACTIONS(813), - [anon_sym_TODO] = ACTIONS(815), - [anon_sym_WIP] = ACTIONS(815), - [anon_sym_NOTE] = ACTIONS(817), - [anon_sym_INFO] = ACTIONS(817), - [anon_sym_XXX] = ACTIONS(817), - [sym_fixme] = ACTIONS(791), - [anon_sym_PIPE] = ACTIONS(791), - [sym__whitespace1] = ACTIONS(819), - [sym__newline] = ACTIONS(821), - [aux_sym__text_token1] = ACTIONS(823), - [sym__verbatim_begin] = ACTIONS(825), + [sym__inline] = STATE(1024), + [sym__element] = STATE(66), + [sym_emphasis] = STATE(171), + [sym_emphasis_begin] = STATE(1116), + [sym_strong] = STATE(171), + [sym_strong_begin] = STATE(1117), + [sym_superscript] = STATE(171), + [sym_superscript_begin] = STATE(1118), + [sym_subscript] = STATE(171), + [sym_subscript_begin] = STATE(1119), + [sym_highlighted] = STATE(171), + [sym_highlighted_begin] = STATE(1120), + [sym_insert] = STATE(171), + [sym_insert_begin] = STATE(1121), + [sym_delete] = STATE(171), + [sym_delete_begin] = STATE(1122), + [sym_hard_line_break] = STATE(171), + [sym__smart_punctuation] = STATE(171), + [sym_autolink] = STATE(171), + [sym_footnote_reference] = STATE(171), + [sym__image] = STATE(171), + [sym_full_reference_image] = STATE(171), + [sym_collapsed_reference_image] = STATE(171), + [sym_inline_image] = STATE(171), + [sym__image_description] = STATE(674), + [sym__link] = STATE(171), + [sym_full_reference_link] = STATE(171), + [sym_collapsed_reference_link] = STATE(171), + [sym_inline_link] = STATE(171), + [sym_link_text] = STATE(675), + [sym__comment_with_spaces] = STATE(171), + [sym_span] = STATE(171), + [sym_raw_inline] = STATE(171), + [sym_math] = STATE(171), + [sym_verbatim] = STATE(171), + [sym__todo_highlights] = STATE(171), + [sym_todo] = STATE(171), + [sym_note] = STATE(171), + [sym__symbol_fallback] = STATE(171), + [aux_sym__text] = STATE(146), + [aux_sym__inline_repeat1] = STATE(66), + [anon_sym_LBRACE_] = ACTIONS(451), + [anon_sym__] = ACTIONS(453), + [anon_sym_LBRACE_STAR] = ACTIONS(455), + [anon_sym_STAR] = ACTIONS(457), + [anon_sym_LBRACE_CARET] = ACTIONS(459), + [anon_sym_CARET] = ACTIONS(459), + [anon_sym_LBRACE_TILDE] = ACTIONS(461), + [anon_sym_TILDE] = ACTIONS(461), + [anon_sym_LBRACE_EQ] = ACTIONS(463), + [anon_sym_LBRACE_PLUS] = ACTIONS(465), + [anon_sym_LBRACE_DASH] = ACTIONS(467), + [anon_sym_BSLASH] = ACTIONS(469), + [sym_quotation_marks] = ACTIONS(471), + [sym_ellipsis] = ACTIONS(471), + [sym_em_dash] = ACTIONS(471), + [sym_en_dash] = ACTIONS(473), + [sym_backslash_escape] = ACTIONS(473), + [anon_sym_LT] = ACTIONS(475), + [sym_symbol] = ACTIONS(471), + [anon_sym_LBRACK_CARET] = ACTIONS(477), + [anon_sym_BANG_LBRACK] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(481), + [anon_sym_LBRACE2] = ACTIONS(473), + [anon_sym_DOLLAR] = ACTIONS(483), + [anon_sym_TODO] = ACTIONS(485), + [anon_sym_WIP] = ACTIONS(485), + [anon_sym_NOTE] = ACTIONS(487), + [anon_sym_INFO] = ACTIONS(487), + [anon_sym_XXX] = ACTIONS(487), + [sym_fixme] = ACTIONS(471), + [sym__whitespace1] = ACTIONS(489), + [sym__newline] = ACTIONS(491), + [aux_sym__text_token1] = ACTIONS(493), + [sym__verbatim_begin] = ACTIONS(495), }, [126] = { - [sym__inline] = STATE(731), - [sym__element] = STATE(106), + [sym__inline] = STATE(1025), + [sym__element] = STATE(103), + [sym_emphasis] = STATE(180), + [sym_emphasis_begin] = STATE(1109), + [sym_strong] = STATE(180), + [sym_strong_begin] = STATE(1110), + [sym_superscript] = STATE(180), + [sym_superscript_begin] = STATE(1111), + [sym_subscript] = STATE(180), + [sym_subscript_begin] = STATE(1112), + [sym_highlighted] = STATE(180), + [sym_highlighted_begin] = STATE(1113), + [sym_insert] = STATE(180), + [sym_insert_begin] = STATE(1114), + [sym_delete] = STATE(180), + [sym_delete_begin] = STATE(1115), + [sym_hard_line_break] = STATE(180), + [sym__smart_punctuation] = STATE(180), + [sym_autolink] = STATE(180), + [sym_footnote_reference] = STATE(180), + [sym__image] = STATE(180), + [sym_full_reference_image] = STATE(180), + [sym_collapsed_reference_image] = STATE(180), + [sym_inline_image] = STATE(180), + [sym__image_description] = STATE(666), + [sym__link] = STATE(180), + [sym_full_reference_link] = STATE(180), + [sym_collapsed_reference_link] = STATE(180), + [sym_inline_link] = STATE(180), + [sym_link_text] = STATE(664), + [sym__comment_with_spaces] = STATE(180), + [sym_span] = STATE(180), + [sym_raw_inline] = STATE(180), + [sym_math] = STATE(180), + [sym_verbatim] = STATE(180), + [sym__todo_highlights] = STATE(180), + [sym_todo] = STATE(180), + [sym_note] = STATE(180), + [sym__symbol_fallback] = STATE(180), + [aux_sym__text] = STATE(159), + [aux_sym__inline_repeat1] = STATE(103), + [anon_sym_LBRACE_] = ACTIONS(221), + [anon_sym__] = ACTIONS(223), + [anon_sym_LBRACE_STAR] = ACTIONS(225), + [anon_sym_STAR] = ACTIONS(227), + [anon_sym_LBRACE_CARET] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym_LBRACE_TILDE] = ACTIONS(231), + [anon_sym_TILDE] = ACTIONS(231), + [anon_sym_LBRACE_EQ] = ACTIONS(233), + [anon_sym_LBRACE_PLUS] = ACTIONS(235), + [anon_sym_LBRACE_DASH] = ACTIONS(237), + [anon_sym_BSLASH] = ACTIONS(239), + [sym_quotation_marks] = ACTIONS(241), + [sym_ellipsis] = ACTIONS(241), + [sym_em_dash] = ACTIONS(241), + [sym_en_dash] = ACTIONS(243), + [sym_backslash_escape] = ACTIONS(243), + [anon_sym_LT] = ACTIONS(245), + [sym_symbol] = ACTIONS(241), + [anon_sym_LBRACK_CARET] = ACTIONS(247), + [anon_sym_BANG_LBRACK] = ACTIONS(249), + [anon_sym_LBRACK] = ACTIONS(251), + [anon_sym_LBRACE2] = ACTIONS(243), + [anon_sym_DOLLAR] = ACTIONS(253), + [anon_sym_TODO] = ACTIONS(255), + [anon_sym_WIP] = ACTIONS(255), + [anon_sym_NOTE] = ACTIONS(257), + [anon_sym_INFO] = ACTIONS(257), + [anon_sym_XXX] = ACTIONS(257), + [sym_fixme] = ACTIONS(241), + [sym__whitespace1] = ACTIONS(259), + [sym__newline] = ACTIONS(261), + [aux_sym__text_token1] = ACTIONS(263), + [sym__verbatim_begin] = ACTIONS(265), + }, + [127] = { + [sym__inline] = STATE(1027), + [sym__element] = STATE(111), [sym_emphasis] = STATE(186), - [sym_emphasis_begin] = STATE(1006), + [sym_emphasis_begin] = STATE(1102), [sym_strong] = STATE(186), - [sym_strong_begin] = STATE(79), - [sym__hard_line_break] = STATE(186), - [sym_hard_line_break] = STATE(186), - [sym__smart_punctuation] = STATE(186), - [sym_autolink] = STATE(186), + [sym_strong_begin] = STATE(1103), + [sym_superscript] = STATE(186), + [sym_superscript_begin] = STATE(1104), + [sym_subscript] = STATE(186), + [sym_subscript_begin] = STATE(1105), [sym_highlighted] = STATE(186), + [sym_highlighted_begin] = STATE(1106), [sym_insert] = STATE(186), + [sym_insert_begin] = STATE(1107), [sym_delete] = STATE(186), - [sym_superscript] = STATE(186), - [sym_subscript] = STATE(186), + [sym_delete_begin] = STATE(1108), + [sym_hard_line_break] = STATE(186), + [sym__smart_punctuation] = STATE(186), + [sym_autolink] = STATE(186), [sym_footnote_reference] = STATE(186), [sym__image] = STATE(186), [sym_full_reference_image] = STATE(186), [sym_collapsed_reference_image] = STATE(186), [sym_inline_image] = STATE(186), - [sym__image_description] = STATE(714), + [sym__image_description] = STATE(673), [sym__link] = STATE(186), [sym_full_reference_link] = STATE(186), [sym_collapsed_reference_link] = STATE(186), [sym_inline_link] = STATE(186), - [sym_link_text] = STATE(713), + [sym_link_text] = STATE(672), [sym__comment_with_spaces] = STATE(186), [sym_span] = STATE(186), [sym_raw_inline] = STATE(186), @@ -17337,447 +15272,307 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(186), [sym_note] = STATE(186), [sym__symbol_fallback] = STATE(186), - [aux_sym__text] = STATE(160), - [aux_sym__inline_repeat1] = STATE(106), - [anon_sym_LBRACE_] = ACTIONS(546), - [anon_sym__] = ACTIONS(548), - [anon_sym_LBRACE_STAR] = ACTIONS(550), - [anon_sym_STAR] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(554), - [sym_quotation_marks] = ACTIONS(556), - [sym_ellipsis] = ACTIONS(556), - [sym_em_dash] = ACTIONS(556), - [sym_en_dash] = ACTIONS(558), - [sym_backslash_escape] = ACTIONS(558), - [anon_sym_LT] = ACTIONS(560), - [anon_sym_LBRACE_EQ] = ACTIONS(562), - [anon_sym_LBRACE_PLUS] = ACTIONS(564), - [anon_sym_LBRACE_DASH] = ACTIONS(566), - [sym_symbol] = ACTIONS(556), - [anon_sym_LBRACE_CARET] = ACTIONS(568), - [anon_sym_CARET] = ACTIONS(568), - [anon_sym_LBRACE_TILDE] = ACTIONS(570), - [anon_sym_TILDE] = ACTIONS(570), - [anon_sym_LBRACK_CARET] = ACTIONS(572), - [anon_sym_BANG_LBRACK] = ACTIONS(574), - [anon_sym_LBRACK] = ACTIONS(576), - [anon_sym_LBRACE2] = ACTIONS(558), - [anon_sym_DOLLAR] = ACTIONS(578), - [anon_sym_TODO] = ACTIONS(580), - [anon_sym_WIP] = ACTIONS(580), - [anon_sym_NOTE] = ACTIONS(582), - [anon_sym_INFO] = ACTIONS(582), - [anon_sym_XXX] = ACTIONS(582), - [sym_fixme] = ACTIONS(556), - [anon_sym_PIPE] = ACTIONS(556), - [sym__whitespace1] = ACTIONS(584), - [sym__newline] = ACTIONS(586), - [aux_sym__text_token1] = ACTIONS(588), - [sym__verbatim_begin] = ACTIONS(590), - }, - [127] = { - [sym__inline] = STATE(892), - [sym__element] = STATE(95), - [sym_emphasis] = STATE(191), - [sym_emphasis_begin] = STATE(1008), - [sym_strong] = STATE(191), - [sym_strong_begin] = STATE(90), - [sym__hard_line_break] = STATE(191), - [sym_hard_line_break] = STATE(191), - [sym__smart_punctuation] = STATE(191), - [sym_autolink] = STATE(191), - [sym_highlighted] = STATE(191), - [sym_insert] = STATE(191), - [sym_delete] = STATE(191), - [sym_superscript] = STATE(191), - [sym_subscript] = STATE(191), - [sym_footnote_reference] = STATE(191), - [sym__image] = STATE(191), - [sym_full_reference_image] = STATE(191), - [sym_collapsed_reference_image] = STATE(191), - [sym_inline_image] = STATE(191), - [sym__image_description] = STATE(699), - [sym__link] = STATE(191), - [sym_full_reference_link] = STATE(191), - [sym_collapsed_reference_link] = STATE(191), - [sym_inline_link] = STATE(191), - [sym_link_text] = STATE(698), - [sym__comment_with_spaces] = STATE(191), - [sym_span] = STATE(191), - [sym_raw_inline] = STATE(191), - [sym_math] = STATE(191), - [sym_verbatim] = STATE(191), - [sym__todo_highlights] = STATE(191), - [sym_todo] = STATE(191), - [sym_note] = STATE(191), - [sym__symbol_fallback] = STATE(191), - [aux_sym__text] = STATE(137), - [aux_sym__inline_repeat1] = STATE(95), - [anon_sym_LBRACE_] = ACTIONS(592), - [anon_sym__] = ACTIONS(594), - [anon_sym_LBRACE_STAR] = ACTIONS(596), - [anon_sym_STAR] = ACTIONS(598), - [anon_sym_BSLASH] = ACTIONS(600), - [sym_quotation_marks] = ACTIONS(602), - [sym_ellipsis] = ACTIONS(602), - [sym_em_dash] = ACTIONS(602), - [sym_en_dash] = ACTIONS(604), - [sym_backslash_escape] = ACTIONS(604), - [anon_sym_LT] = ACTIONS(606), - [anon_sym_LBRACE_EQ] = ACTIONS(608), - [anon_sym_LBRACE_PLUS] = ACTIONS(610), - [anon_sym_LBRACE_DASH] = ACTIONS(612), - [sym_symbol] = ACTIONS(602), - [anon_sym_LBRACE_CARET] = ACTIONS(614), - [anon_sym_CARET] = ACTIONS(614), - [anon_sym_LBRACE_TILDE] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(616), - [anon_sym_LBRACK_CARET] = ACTIONS(618), - [anon_sym_BANG_LBRACK] = ACTIONS(620), - [anon_sym_LBRACK] = ACTIONS(622), - [anon_sym_LBRACE2] = ACTIONS(604), - [anon_sym_DOLLAR] = ACTIONS(624), - [anon_sym_TODO] = ACTIONS(626), - [anon_sym_WIP] = ACTIONS(626), - [anon_sym_NOTE] = ACTIONS(628), - [anon_sym_INFO] = ACTIONS(628), - [anon_sym_XXX] = ACTIONS(628), - [sym_fixme] = ACTIONS(602), - [anon_sym_PIPE] = ACTIONS(602), - [sym__whitespace1] = ACTIONS(630), - [sym__newline] = ACTIONS(632), - [aux_sym__text_token1] = ACTIONS(634), - [sym__verbatim_begin] = ACTIONS(636), + [aux_sym__text] = STATE(155), + [aux_sym__inline_repeat1] = STATE(111), + [anon_sym_LBRACE_] = ACTIONS(267), + [anon_sym__] = ACTIONS(269), + [anon_sym_LBRACE_STAR] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_LBRACE_CARET] = ACTIONS(275), + [anon_sym_CARET] = ACTIONS(275), + [anon_sym_LBRACE_TILDE] = ACTIONS(277), + [anon_sym_TILDE] = ACTIONS(277), + [anon_sym_LBRACE_EQ] = ACTIONS(279), + [anon_sym_LBRACE_PLUS] = ACTIONS(281), + [anon_sym_LBRACE_DASH] = ACTIONS(283), + [anon_sym_BSLASH] = ACTIONS(285), + [sym_quotation_marks] = ACTIONS(287), + [sym_ellipsis] = ACTIONS(287), + [sym_em_dash] = ACTIONS(287), + [sym_en_dash] = ACTIONS(289), + [sym_backslash_escape] = ACTIONS(289), + [anon_sym_LT] = ACTIONS(291), + [sym_symbol] = ACTIONS(287), + [anon_sym_LBRACK_CARET] = ACTIONS(293), + [anon_sym_BANG_LBRACK] = ACTIONS(295), + [anon_sym_LBRACK] = ACTIONS(297), + [anon_sym_LBRACE2] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(299), + [anon_sym_TODO] = ACTIONS(301), + [anon_sym_WIP] = ACTIONS(301), + [anon_sym_NOTE] = ACTIONS(303), + [anon_sym_INFO] = ACTIONS(303), + [anon_sym_XXX] = ACTIONS(303), + [sym_fixme] = ACTIONS(287), + [sym__whitespace1] = ACTIONS(305), + [sym__newline] = ACTIONS(307), + [aux_sym__text_token1] = ACTIONS(309), + [sym__verbatim_begin] = ACTIONS(311), }, [128] = { - [sym__inline_without_trailing_space] = STATE(893), - [sym__element] = STATE(582), - [sym_emphasis] = STATE(176), - [sym_emphasis_begin] = STATE(1007), - [sym_strong] = STATE(176), - [sym_strong_begin] = STATE(94), - [sym__hard_line_break] = STATE(176), - [sym_hard_line_break] = STATE(176), - [sym__smart_punctuation] = STATE(176), - [sym_autolink] = STATE(176), - [sym_highlighted] = STATE(176), - [sym_insert] = STATE(176), - [sym_delete] = STATE(176), - [sym_superscript] = STATE(176), - [sym_subscript] = STATE(176), - [sym_footnote_reference] = STATE(176), - [sym__image] = STATE(176), - [sym_full_reference_image] = STATE(176), - [sym_collapsed_reference_image] = STATE(176), - [sym_inline_image] = STATE(176), - [sym__image_description] = STATE(685), - [sym__link] = STATE(176), - [sym_full_reference_link] = STATE(176), - [sym_collapsed_reference_link] = STATE(176), - [sym_inline_link] = STATE(176), - [sym_link_text] = STATE(704), - [sym__comment_with_spaces] = STATE(176), - [sym_span] = STATE(176), - [sym_raw_inline] = STATE(176), - [sym_math] = STATE(176), - [sym_verbatim] = STATE(176), - [sym__todo_highlights] = STATE(176), - [sym_todo] = STATE(176), - [sym_note] = STATE(176), - [sym__symbol_fallback] = STATE(176), - [aux_sym__text] = STATE(161), - [aux_sym__inline_repeat1] = STATE(131), - [anon_sym_LBRACE_] = ACTIONS(781), - [anon_sym__] = ACTIONS(783), - [anon_sym_LBRACE_STAR] = ACTIONS(785), - [anon_sym_STAR] = ACTIONS(787), - [anon_sym_BSLASH] = ACTIONS(789), - [sym_quotation_marks] = ACTIONS(791), - [sym_ellipsis] = ACTIONS(791), - [sym_em_dash] = ACTIONS(791), - [sym_en_dash] = ACTIONS(793), - [sym_backslash_escape] = ACTIONS(793), - [anon_sym_LT] = ACTIONS(795), - [anon_sym_LBRACE_EQ] = ACTIONS(797), - [anon_sym_LBRACE_PLUS] = ACTIONS(799), - [anon_sym_LBRACE_DASH] = ACTIONS(801), - [sym_symbol] = ACTIONS(791), - [anon_sym_LBRACE_CARET] = ACTIONS(803), - [anon_sym_CARET] = ACTIONS(803), - [anon_sym_LBRACE_TILDE] = ACTIONS(805), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_LBRACK_CARET] = ACTIONS(807), - [anon_sym_BANG_LBRACK] = ACTIONS(809), - [anon_sym_LBRACK] = ACTIONS(811), - [anon_sym_LBRACE2] = ACTIONS(793), - [anon_sym_DOLLAR] = ACTIONS(813), - [anon_sym_TODO] = ACTIONS(815), - [anon_sym_WIP] = ACTIONS(815), - [anon_sym_NOTE] = ACTIONS(817), - [anon_sym_INFO] = ACTIONS(817), - [anon_sym_XXX] = ACTIONS(817), - [sym_fixme] = ACTIONS(791), - [anon_sym_PIPE] = ACTIONS(791), - [sym__whitespace1] = ACTIONS(819), - [sym__newline] = ACTIONS(821), - [aux_sym__text_token1] = ACTIONS(823), - [sym__verbatim_begin] = ACTIONS(825), + [sym__element] = STATE(601), + [sym_emphasis] = STATE(177), + [sym_emphasis_begin] = STATE(1067), + [sym_strong] = STATE(177), + [sym_strong_begin] = STATE(1068), + [sym_superscript] = STATE(177), + [sym_superscript_begin] = STATE(1069), + [sym_subscript] = STATE(177), + [sym_subscript_begin] = STATE(1070), + [sym_highlighted] = STATE(177), + [sym_highlighted_begin] = STATE(1071), + [sym_insert] = STATE(177), + [sym_insert_begin] = STATE(1072), + [sym_delete] = STATE(177), + [sym_delete_begin] = STATE(1073), + [sym_hard_line_break] = STATE(177), + [sym__smart_punctuation] = STATE(177), + [sym_autolink] = STATE(177), + [sym_footnote_reference] = STATE(177), + [sym__image] = STATE(177), + [sym_full_reference_image] = STATE(177), + [sym_collapsed_reference_image] = STATE(177), + [sym_inline_image] = STATE(177), + [sym__image_description] = STATE(681), + [sym__link] = STATE(177), + [sym_full_reference_link] = STATE(177), + [sym_collapsed_reference_link] = STATE(177), + [sym_inline_link] = STATE(177), + [sym_link_text] = STATE(668), + [sym__comment_with_spaces] = STATE(177), + [sym_span] = STATE(177), + [sym_raw_inline] = STATE(177), + [sym_math] = STATE(177), + [sym_verbatim] = STATE(177), + [sym__todo_highlights] = STATE(177), + [sym_todo] = STATE(177), + [sym_note] = STATE(177), + [sym__symbol_fallback] = STATE(177), + [aux_sym__text] = STATE(132), + [aux_sym__inline_repeat1] = STATE(129), + [anon_sym_LBRACE_] = ACTIONS(405), + [anon_sym__] = ACTIONS(407), + [anon_sym_LBRACE_STAR] = ACTIONS(409), + [anon_sym_STAR] = ACTIONS(411), + [anon_sym_LBRACE_CARET] = ACTIONS(413), + [anon_sym_CARET] = ACTIONS(413), + [anon_sym_LBRACE_TILDE] = ACTIONS(415), + [anon_sym_TILDE] = ACTIONS(415), + [anon_sym_LBRACE_EQ] = ACTIONS(417), + [anon_sym_LBRACE_PLUS] = ACTIONS(419), + [anon_sym_LBRACE_DASH] = ACTIONS(421), + [anon_sym_BSLASH] = ACTIONS(423), + [sym_quotation_marks] = ACTIONS(425), + [sym_ellipsis] = ACTIONS(425), + [sym_em_dash] = ACTIONS(425), + [sym_en_dash] = ACTIONS(427), + [sym_backslash_escape] = ACTIONS(427), + [anon_sym_LT] = ACTIONS(429), + [sym_symbol] = ACTIONS(425), + [anon_sym_LBRACK_CARET] = ACTIONS(431), + [anon_sym_BANG_LBRACK] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LBRACE2] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(437), + [anon_sym_TODO] = ACTIONS(439), + [anon_sym_WIP] = ACTIONS(439), + [anon_sym_NOTE] = ACTIONS(441), + [anon_sym_INFO] = ACTIONS(441), + [anon_sym_XXX] = ACTIONS(441), + [sym_fixme] = ACTIONS(425), + [sym__whitespace1] = ACTIONS(443), + [sym__newline] = ACTIONS(1113), + [aux_sym__text_token1] = ACTIONS(447), + [sym__verbatim_begin] = ACTIONS(449), }, [129] = { - [sym__inline] = STATE(727), - [sym__element] = STATE(106), - [sym_emphasis] = STATE(186), - [sym_emphasis_begin] = STATE(1006), - [sym_strong] = STATE(186), - [sym_strong_begin] = STATE(79), - [sym__hard_line_break] = STATE(186), - [sym_hard_line_break] = STATE(186), - [sym__smart_punctuation] = STATE(186), - [sym_autolink] = STATE(186), - [sym_highlighted] = STATE(186), - [sym_insert] = STATE(186), - [sym_delete] = STATE(186), - [sym_superscript] = STATE(186), - [sym_subscript] = STATE(186), - [sym_footnote_reference] = STATE(186), - [sym__image] = STATE(186), - [sym_full_reference_image] = STATE(186), - [sym_collapsed_reference_image] = STATE(186), - [sym_inline_image] = STATE(186), - [sym__image_description] = STATE(714), - [sym__link] = STATE(186), - [sym_full_reference_link] = STATE(186), - [sym_collapsed_reference_link] = STATE(186), - [sym_inline_link] = STATE(186), - [sym_link_text] = STATE(713), - [sym__comment_with_spaces] = STATE(186), - [sym_span] = STATE(186), - [sym_raw_inline] = STATE(186), - [sym_math] = STATE(186), - [sym_verbatim] = STATE(186), - [sym__todo_highlights] = STATE(186), - [sym_todo] = STATE(186), - [sym_note] = STATE(186), - [sym__symbol_fallback] = STATE(186), - [aux_sym__text] = STATE(160), - [aux_sym__inline_repeat1] = STATE(106), - [anon_sym_LBRACE_] = ACTIONS(546), - [anon_sym__] = ACTIONS(548), - [anon_sym_LBRACE_STAR] = ACTIONS(550), - [anon_sym_STAR] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(554), - [sym_quotation_marks] = ACTIONS(556), - [sym_ellipsis] = ACTIONS(556), - [sym_em_dash] = ACTIONS(556), - [sym_en_dash] = ACTIONS(558), - [sym_backslash_escape] = ACTIONS(558), - [anon_sym_LT] = ACTIONS(560), - [anon_sym_LBRACE_EQ] = ACTIONS(562), - [anon_sym_LBRACE_PLUS] = ACTIONS(564), - [anon_sym_LBRACE_DASH] = ACTIONS(566), - [sym_symbol] = ACTIONS(556), - [anon_sym_LBRACE_CARET] = ACTIONS(568), - [anon_sym_CARET] = ACTIONS(568), - [anon_sym_LBRACE_TILDE] = ACTIONS(570), - [anon_sym_TILDE] = ACTIONS(570), - [anon_sym_LBRACK_CARET] = ACTIONS(572), - [anon_sym_BANG_LBRACK] = ACTIONS(574), - [anon_sym_LBRACK] = ACTIONS(576), - [anon_sym_LBRACE2] = ACTIONS(558), - [anon_sym_DOLLAR] = ACTIONS(578), - [anon_sym_TODO] = ACTIONS(580), - [anon_sym_WIP] = ACTIONS(580), - [anon_sym_NOTE] = ACTIONS(582), - [anon_sym_INFO] = ACTIONS(582), - [anon_sym_XXX] = ACTIONS(582), - [sym_fixme] = ACTIONS(556), - [anon_sym_PIPE] = ACTIONS(556), - [sym__whitespace1] = ACTIONS(584), - [sym__newline] = ACTIONS(586), - [aux_sym__text_token1] = ACTIONS(588), - [sym__verbatim_begin] = ACTIONS(590), + [sym__element] = STATE(129), + [sym_emphasis] = STATE(533), + [sym_emphasis_begin] = STATE(1123), + [sym_strong] = STATE(533), + [sym_strong_begin] = STATE(1124), + [sym_superscript] = STATE(533), + [sym_superscript_begin] = STATE(1125), + [sym_subscript] = STATE(533), + [sym_subscript_begin] = STATE(1126), + [sym_highlighted] = STATE(533), + [sym_highlighted_begin] = STATE(1127), + [sym_insert] = STATE(533), + [sym_insert_begin] = STATE(1128), + [sym_delete] = STATE(533), + [sym_delete_begin] = STATE(1129), + [sym_hard_line_break] = STATE(533), + [sym__smart_punctuation] = STATE(533), + [sym_autolink] = STATE(533), + [sym_footnote_reference] = STATE(533), + [sym__image] = STATE(533), + [sym_full_reference_image] = STATE(533), + [sym_collapsed_reference_image] = STATE(533), + [sym_inline_image] = STATE(533), + [sym__image_description] = STATE(679), + [sym__link] = STATE(533), + [sym_full_reference_link] = STATE(533), + [sym_collapsed_reference_link] = STATE(533), + [sym_inline_link] = STATE(533), + [sym_link_text] = STATE(686), + [sym__comment_with_spaces] = STATE(533), + [sym_span] = STATE(533), + [sym_raw_inline] = STATE(533), + [sym_math] = STATE(533), + [sym_verbatim] = STATE(533), + [sym__todo_highlights] = STATE(533), + [sym_todo] = STATE(533), + [sym_note] = STATE(533), + [sym__symbol_fallback] = STATE(533), + [aux_sym__text] = STATE(165), + [aux_sym__inline_repeat1] = STATE(129), + [anon_sym_LBRACE_] = ACTIONS(1115), + [anon_sym__] = ACTIONS(1118), + [anon_sym_LBRACE_STAR] = ACTIONS(1121), + [anon_sym_STAR] = ACTIONS(1124), + [anon_sym_LBRACE_CARET] = ACTIONS(1127), + [anon_sym_CARET] = ACTIONS(1127), + [anon_sym_LBRACE_TILDE] = ACTIONS(1130), + [anon_sym_TILDE] = ACTIONS(1130), + [anon_sym_LBRACE_EQ] = ACTIONS(1133), + [anon_sym_LBRACE_PLUS] = ACTIONS(1136), + [anon_sym_LBRACE_DASH] = ACTIONS(1139), + [anon_sym_BSLASH] = ACTIONS(1142), + [sym_quotation_marks] = ACTIONS(1145), + [sym_ellipsis] = ACTIONS(1145), + [sym_em_dash] = ACTIONS(1145), + [sym_en_dash] = ACTIONS(1148), + [sym_backslash_escape] = ACTIONS(1148), + [anon_sym_LT] = ACTIONS(1151), + [sym_symbol] = ACTIONS(1145), + [anon_sym_LBRACK_CARET] = ACTIONS(1154), + [anon_sym_BANG_LBRACK] = ACTIONS(1157), + [anon_sym_LBRACK] = ACTIONS(1160), + [anon_sym_LBRACE2] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(1163), + [anon_sym_TODO] = ACTIONS(1166), + [anon_sym_WIP] = ACTIONS(1166), + [anon_sym_NOTE] = ACTIONS(1169), + [anon_sym_INFO] = ACTIONS(1169), + [anon_sym_XXX] = ACTIONS(1169), + [sym_fixme] = ACTIONS(1145), + [sym__whitespace1] = ACTIONS(1172), + [sym__newline] = ACTIONS(1175), + [aux_sym__text_token1] = ACTIONS(1178), + [sym__verbatim_begin] = ACTIONS(1181), }, [130] = { - [sym__element] = STATE(130), - [sym_emphasis] = STATE(483), - [sym_emphasis_begin] = STATE(1009), - [sym_strong] = STATE(483), - [sym_strong_begin] = STATE(84), - [sym__hard_line_break] = STATE(483), - [sym_hard_line_break] = STATE(483), - [sym__smart_punctuation] = STATE(483), - [sym_autolink] = STATE(483), - [sym_highlighted] = STATE(483), - [sym_insert] = STATE(483), - [sym_delete] = STATE(483), - [sym_superscript] = STATE(483), - [sym_subscript] = STATE(483), - [sym_footnote_reference] = STATE(483), - [sym__image] = STATE(483), - [sym_full_reference_image] = STATE(483), - [sym_collapsed_reference_image] = STATE(483), - [sym_inline_image] = STATE(483), - [sym__image_description] = STATE(691), - [sym__link] = STATE(483), - [sym_full_reference_link] = STATE(483), - [sym_collapsed_reference_link] = STATE(483), - [sym_inline_link] = STATE(483), - [sym_link_text] = STATE(690), - [sym__comment_with_spaces] = STATE(483), - [sym_span] = STATE(483), - [sym_raw_inline] = STATE(483), - [sym_math] = STATE(483), - [sym_verbatim] = STATE(483), - [sym__todo_highlights] = STATE(483), - [sym_todo] = STATE(483), - [sym_note] = STATE(483), - [sym__symbol_fallback] = STATE(483), - [aux_sym__text] = STATE(215), - [aux_sym__inline_repeat1] = STATE(130), - [anon_sym_LBRACE_] = ACTIONS(1601), - [anon_sym__] = ACTIONS(1604), - [anon_sym_LBRACE_STAR] = ACTIONS(1607), - [anon_sym_STAR] = ACTIONS(1610), - [anon_sym_BSLASH] = ACTIONS(1613), - [sym_quotation_marks] = ACTIONS(1616), - [sym_ellipsis] = ACTIONS(1616), - [sym_em_dash] = ACTIONS(1616), - [sym_en_dash] = ACTIONS(1619), - [sym_backslash_escape] = ACTIONS(1619), - [anon_sym_LT] = ACTIONS(1622), - [anon_sym_LBRACE_EQ] = ACTIONS(1625), - [anon_sym_LBRACE_PLUS] = ACTIONS(1628), - [anon_sym_LBRACE_DASH] = ACTIONS(1631), - [sym_symbol] = ACTIONS(1616), - [anon_sym_LBRACE_CARET] = ACTIONS(1634), - [anon_sym_CARET] = ACTIONS(1634), - [anon_sym_LBRACE_TILDE] = ACTIONS(1637), - [anon_sym_TILDE] = ACTIONS(1637), - [anon_sym_LBRACK_CARET] = ACTIONS(1640), - [anon_sym_BANG_LBRACK] = ACTIONS(1643), - [anon_sym_LBRACK] = ACTIONS(1646), - [anon_sym_LBRACE2] = ACTIONS(1619), - [anon_sym_DOLLAR] = ACTIONS(1649), - [anon_sym_TODO] = ACTIONS(1652), - [anon_sym_WIP] = ACTIONS(1652), - [anon_sym_NOTE] = ACTIONS(1655), - [anon_sym_INFO] = ACTIONS(1655), - [anon_sym_XXX] = ACTIONS(1655), - [sym_fixme] = ACTIONS(1616), - [anon_sym_PIPE] = ACTIONS(1616), - [sym__whitespace1] = ACTIONS(1658), - [sym__newline] = ACTIONS(1661), - [aux_sym__text_token1] = ACTIONS(1664), - [sym__verbatim_begin] = ACTIONS(1667), - }, - [131] = { - [sym__element] = STATE(596), - [sym_emphasis] = STATE(176), - [sym_emphasis_begin] = STATE(1007), - [sym_strong] = STATE(176), - [sym_strong_begin] = STATE(94), - [sym__hard_line_break] = STATE(176), - [sym_hard_line_break] = STATE(176), - [sym__smart_punctuation] = STATE(176), - [sym_autolink] = STATE(176), - [sym_highlighted] = STATE(176), - [sym_insert] = STATE(176), - [sym_delete] = STATE(176), - [sym_superscript] = STATE(176), - [sym_subscript] = STATE(176), - [sym_footnote_reference] = STATE(176), - [sym__image] = STATE(176), - [sym_full_reference_image] = STATE(176), - [sym_collapsed_reference_image] = STATE(176), - [sym_inline_image] = STATE(176), - [sym__image_description] = STATE(685), - [sym__link] = STATE(176), - [sym_full_reference_link] = STATE(176), - [sym_collapsed_reference_link] = STATE(176), - [sym_inline_link] = STATE(176), - [sym_link_text] = STATE(704), - [sym__comment_with_spaces] = STATE(176), - [sym_span] = STATE(176), - [sym_raw_inline] = STATE(176), - [sym_math] = STATE(176), - [sym_verbatim] = STATE(176), - [sym__todo_highlights] = STATE(176), - [sym_todo] = STATE(176), - [sym_note] = STATE(176), - [sym__symbol_fallback] = STATE(176), - [aux_sym__text] = STATE(161), - [aux_sym__inline_repeat1] = STATE(130), - [anon_sym_LBRACE_] = ACTIONS(781), - [anon_sym__] = ACTIONS(783), - [anon_sym_LBRACE_STAR] = ACTIONS(785), - [anon_sym_STAR] = ACTIONS(787), - [anon_sym_BSLASH] = ACTIONS(789), - [sym_quotation_marks] = ACTIONS(791), - [sym_ellipsis] = ACTIONS(791), - [sym_em_dash] = ACTIONS(791), - [sym_en_dash] = ACTIONS(793), - [sym_backslash_escape] = ACTIONS(793), - [anon_sym_LT] = ACTIONS(795), - [anon_sym_LBRACE_EQ] = ACTIONS(797), - [anon_sym_LBRACE_PLUS] = ACTIONS(799), - [anon_sym_LBRACE_DASH] = ACTIONS(801), - [sym_symbol] = ACTIONS(791), - [anon_sym_LBRACE_CARET] = ACTIONS(803), - [anon_sym_CARET] = ACTIONS(803), - [anon_sym_LBRACE_TILDE] = ACTIONS(805), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_LBRACK_CARET] = ACTIONS(807), - [anon_sym_BANG_LBRACK] = ACTIONS(809), - [anon_sym_LBRACK] = ACTIONS(811), - [anon_sym_LBRACE2] = ACTIONS(793), - [anon_sym_DOLLAR] = ACTIONS(813), - [anon_sym_TODO] = ACTIONS(815), - [anon_sym_WIP] = ACTIONS(815), - [anon_sym_NOTE] = ACTIONS(817), - [anon_sym_INFO] = ACTIONS(817), - [anon_sym_XXX] = ACTIONS(817), - [sym_fixme] = ACTIONS(791), - [anon_sym_PIPE] = ACTIONS(791), - [sym__whitespace1] = ACTIONS(819), - [sym__newline] = ACTIONS(1670), - [aux_sym__text_token1] = ACTIONS(823), - [sym__verbatim_begin] = ACTIONS(825), + [sym__element] = STATE(597), + [sym_emphasis] = STATE(208), + [sym_emphasis_begin] = STATE(1074), + [sym_strong] = STATE(208), + [sym_strong_begin] = STATE(1075), + [sym_superscript] = STATE(208), + [sym_superscript_begin] = STATE(1076), + [sym_subscript] = STATE(208), + [sym_subscript_begin] = STATE(1077), + [sym_highlighted] = STATE(208), + [sym_highlighted_begin] = STATE(1078), + [sym_insert] = STATE(208), + [sym_insert_begin] = STATE(1079), + [sym_delete] = STATE(208), + [sym_delete_begin] = STATE(1080), + [sym_hard_line_break] = STATE(208), + [sym__smart_punctuation] = STATE(208), + [sym_autolink] = STATE(208), + [sym_footnote_reference] = STATE(208), + [sym__image] = STATE(208), + [sym_full_reference_image] = STATE(208), + [sym_collapsed_reference_image] = STATE(208), + [sym_inline_image] = STATE(208), + [sym__image_description] = STATE(680), + [sym__link] = STATE(208), + [sym_full_reference_link] = STATE(208), + [sym_collapsed_reference_link] = STATE(208), + [sym_inline_link] = STATE(208), + [sym_link_text] = STATE(663), + [sym__comment_with_spaces] = STATE(208), + [sym_span] = STATE(208), + [sym_raw_inline] = STATE(208), + [sym_math] = STATE(208), + [sym_verbatim] = STATE(208), + [sym__todo_highlights] = STATE(208), + [sym_todo] = STATE(208), + [sym_note] = STATE(208), + [sym__symbol_fallback] = STATE(208), + [aux_sym__text] = STATE(131), + [aux_sym__inline_repeat1] = STATE(129), + [anon_sym_LBRACE_] = ACTIONS(175), + [anon_sym__] = ACTIONS(177), + [anon_sym_LBRACE_STAR] = ACTIONS(179), + [anon_sym_STAR] = ACTIONS(181), + [anon_sym_LBRACE_CARET] = ACTIONS(183), + [anon_sym_CARET] = ACTIONS(183), + [anon_sym_LBRACE_TILDE] = ACTIONS(185), + [anon_sym_TILDE] = ACTIONS(185), + [anon_sym_LBRACE_EQ] = ACTIONS(187), + [anon_sym_LBRACE_PLUS] = ACTIONS(189), + [anon_sym_LBRACE_DASH] = ACTIONS(191), + [anon_sym_BSLASH] = ACTIONS(193), + [sym_quotation_marks] = ACTIONS(195), + [sym_ellipsis] = ACTIONS(195), + [sym_em_dash] = ACTIONS(195), + [sym_en_dash] = ACTIONS(197), + [sym_backslash_escape] = ACTIONS(197), + [anon_sym_LT] = ACTIONS(199), + [sym_symbol] = ACTIONS(195), + [anon_sym_LBRACK_CARET] = ACTIONS(201), + [anon_sym_BANG_LBRACK] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACE2] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(207), + [anon_sym_TODO] = ACTIONS(209), + [anon_sym_WIP] = ACTIONS(209), + [anon_sym_NOTE] = ACTIONS(211), + [anon_sym_INFO] = ACTIONS(211), + [anon_sym_XXX] = ACTIONS(211), + [sym_fixme] = ACTIONS(195), + [sym__whitespace1] = ACTIONS(213), + [sym__newline] = ACTIONS(1113), + [aux_sym__text_token1] = ACTIONS(217), + [sym__verbatim_begin] = ACTIONS(219), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 4, - ACTIONS(1676), 1, - anon_sym_LBRACE_EQ2, - STATE(332), 1, - sym_raw_inline_attribute, - ACTIONS(1672), 8, + [0] = 5, + ACTIONS(1184), 1, anon_sym_LBRACE, + STATE(205), 1, + aux_sym__text, + STATE(592), 1, + sym_inline_attribute, + ACTIONS(1188), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE_EQ, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1674), 29, + ACTIONS(1186), 29, sym__verbatim_begin, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -17787,44 +15582,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [48] = 6, - ACTIONS(49), 1, + [49] = 5, + ACTIONS(1190), 1, anon_sym_LBRACE, - ACTIONS(93), 1, - sym_emphasis_end, - ACTIONS(1681), 1, - anon_sym_SPACE, - STATE(296), 1, - aux_sym_strong_begin_repeat1, - ACTIONS(1683), 7, + STATE(198), 1, + aux_sym__text, + STATE(577), 1, + sym_inline_attribute, + ACTIONS(1188), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1678), 28, + ACTIONS(1186), 29, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -17834,12 +15626,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, + sym__whitespace1, sym__newline, - [100] = 4, - ACTIONS(1686), 1, + [98] = 4, + ACTIONS(1192), 1, sym__id, - STATE(805), 1, + STATE(1013), 1, sym_reference_label, ACTIONS(49), 15, anon_sym_LBRACE, @@ -17857,64 +15649,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, aux_sym__text_token1, - ACTIONS(93), 22, + ACTIONS(101), 21, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym_LBRACE_STAR, anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + anon_sym_LT, + sym_symbol, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [148] = 6, - ACTIONS(49), 1, + [145] = 5, + ACTIONS(1194), 1, anon_sym_LBRACE, - ACTIONS(93), 1, - anon_sym_DASH_RBRACE, - ACTIONS(1681), 1, - anon_sym_SPACE, - STATE(296), 1, - aux_sym_strong_begin_repeat1, - ACTIONS(1683), 7, + STATE(195), 1, + aux_sym__text, + STATE(586), 1, + sym_inline_attribute, + ACTIONS(1188), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1678), 28, + ACTIONS(1186), 29, sym__verbatim_begin, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -17924,41 +15713,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, + sym__whitespace1, sym__newline, - [200] = 5, - ACTIONS(1688), 1, + [194] = 4, + ACTIONS(1200), 1, + anon_sym_LBRACE_EQ2, + STATE(340), 1, + sym_raw_inline_attribute, + ACTIONS(1196), 8, anon_sym_LBRACE, - STATE(212), 1, - aux_sym__text, - STATE(581), 1, - sym_inline_attribute, - ACTIONS(1692), 6, + anon_sym_LBRACE_EQ, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1690), 30, + ACTIONS(1198), 28, sym__verbatim_begin, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -17968,86 +15756,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [250] = 5, - ACTIONS(1694), 1, + [241] = 4, + ACTIONS(1192), 1, + sym__id, + STATE(925), 1, + sym_reference_label, + ACTIONS(49), 15, anon_sym_LBRACE, - STATE(211), 1, - aux_sym__text, - STATE(580), 1, - sym_inline_attribute, - ACTIONS(1692), 6, + anon_sym__, anon_sym_BSLASH, + sym_em_dash, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, aux_sym__text_token1, - ACTIONS(1690), 30, + ACTIONS(101), 21, sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, - anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + anon_sym_LT, + sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, + sym__whitespace1, + sym__newline, + [288] = 4, + ACTIONS(1192), 1, + sym__id, + STATE(874), 1, + sym_reference_label, + ACTIONS(49), 15, + anon_sym_LBRACE, + anon_sym__, + anon_sym_BSLASH, + sym_em_dash, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, anon_sym_TODO, anon_sym_WIP, anon_sym_NOTE, anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, + aux_sym__text_token1, + ACTIONS(101), 21, + sym__verbatim_begin, + sym_highlighted_end, + anon_sym_LBRACE_, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, sym__whitespace1, sym__newline, - [300] = 4, - ACTIONS(1696), 1, + [335] = 4, + ACTIONS(1202), 1, anon_sym_LBRACE_EQ2, - STATE(266), 1, + STATE(259), 1, sym_raw_inline_attribute, - ACTIONS(1672), 8, + ACTIONS(1196), 8, anon_sym_LBRACE, + anon_sym_LBRACE_EQ, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE_EQ, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1674), 29, + ACTIONS(1198), 28, sym__verbatim_begin, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -18057,41 +15885,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [348] = 5, - ACTIONS(1698), 1, + [382] = 5, + ACTIONS(1204), 1, anon_sym_LBRACE, - STATE(190), 1, + STATE(187), 1, aux_sym__text, - STATE(585), 1, + STATE(596), 1, sym_inline_attribute, - ACTIONS(1692), 6, + ACTIONS(1188), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1690), 30, + ACTIONS(1186), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_RBRACK, anon_sym_BANG_LBRACK, @@ -18102,87 +15929,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [398] = 6, - ACTIONS(49), 1, + [431] = 4, + ACTIONS(1192), 1, + sym__id, + STATE(853), 1, + sym_reference_label, + ACTIONS(49), 15, anon_sym_LBRACE, - ACTIONS(93), 1, - anon_sym_EQ_RBRACE, - ACTIONS(1681), 1, - anon_sym_SPACE, - STATE(296), 1, - aux_sym_strong_begin_repeat1, - ACTIONS(1683), 7, + anon_sym__, anon_sym_BSLASH, + sym_em_dash, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, aux_sym__text_token1, - ACTIONS(1678), 28, + ACTIONS(101), 21, sym__verbatim_begin, anon_sym_LBRACE_, - anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + anon_sym_LT, + sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - anon_sym_PIPE, + sym__whitespace1, sym__newline, - [450] = 4, - ACTIONS(1700), 1, - anon_sym_LBRACE_EQ2, - STATE(231), 1, - sym_raw_inline_attribute, - ACTIONS(1672), 8, + [478] = 5, + ACTIONS(1206), 1, anon_sym_LBRACE, + STATE(190), 1, + aux_sym__text, + STATE(583), 1, + sym_inline_attribute, + ACTIONS(1188), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE_EQ, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1674), 29, + ACTIONS(1186), 29, sym__verbatim_begin, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -18192,134 +16016,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [498] = 4, - ACTIONS(1686), 1, - sym__id, - STATE(858), 1, - sym_reference_label, - ACTIONS(49), 15, + [527] = 4, + ACTIONS(1208), 1, + anon_sym_LBRACE_EQ2, + STATE(474), 1, + sym_raw_inline_attribute, + ACTIONS(1196), 8, anon_sym_LBRACE, - anon_sym__, + anon_sym_LBRACE_EQ, anon_sym_BSLASH, - sym_em_dash, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, aux_sym__text_token1, - ACTIONS(93), 22, + ACTIONS(1198), 28, sym__verbatim_begin, + sym_delete_end, anon_sym_LBRACE_, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, - anon_sym_PIPE, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, sym__whitespace1, sym__newline, - [546] = 6, - ACTIONS(49), 1, + [574] = 4, + ACTIONS(1192), 1, + sym__id, + STATE(906), 1, + sym_reference_label, + ACTIONS(49), 15, anon_sym_LBRACE, - ACTIONS(93), 1, - anon_sym_CARET_RBRACE, - ACTIONS(1681), 1, - anon_sym_SPACE, - STATE(296), 1, - aux_sym_strong_begin_repeat1, - ACTIONS(1683), 8, + anon_sym__, anon_sym_BSLASH, + sym_em_dash, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, aux_sym__text_token1, - ACTIONS(1678), 27, + ACTIONS(101), 21, sym__verbatim_begin, + sym_subscript_end, anon_sym_LBRACE_, - anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + anon_sym_LT, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - anon_sym_PIPE, + sym__whitespace1, sym__newline, - [598] = 6, - ACTIONS(49), 1, + [621] = 4, + ACTIONS(1210), 1, + anon_sym_LBRACE_EQ2, + STATE(295), 1, + sym_raw_inline_attribute, + ACTIONS(1196), 8, anon_sym_LBRACE, - ACTIONS(93), 1, - anon_sym_RBRACK, - ACTIONS(1681), 1, - anon_sym_SPACE, - STATE(296), 1, - aux_sym_strong_begin_repeat1, - ACTIONS(1683), 7, + anon_sym_LBRACE_EQ, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1678), 28, + ACTIONS(1198), 28, sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -18329,12 +16145,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, + sym__whitespace1, sym__newline, - [650] = 4, - ACTIONS(1686), 1, + [668] = 4, + ACTIONS(1192), 1, sym__id, - STATE(920), 1, + STATE(1055), 1, sym_reference_label, ACTIONS(49), 15, anon_sym_LBRACE, @@ -18352,110 +16168,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, aux_sym__text_token1, - ACTIONS(93), 22, + ACTIONS(101), 21, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym_LBRACE_STAR, anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_PIPE, - sym__whitespace1, - sym__newline, - [698] = 4, - ACTIONS(1702), 1, - anon_sym_LBRACE_EQ2, - STATE(512), 1, - sym_raw_inline_attribute, - ACTIONS(1672), 8, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, anon_sym_LBRACE_EQ, - anon_sym_LBRACK, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(1674), 29, - sym__verbatim_begin, - sym_emphasis_end, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, - sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [746] = 6, - ACTIONS(49), 1, + [715] = 5, + ACTIONS(1212), 1, anon_sym_LBRACE, - ACTIONS(93), 1, - anon_sym_RBRACK2, - ACTIONS(1681), 1, - anon_sym_SPACE, - STATE(296), 1, - aux_sym_strong_begin_repeat1, - ACTIONS(1683), 7, + STATE(167), 1, + aux_sym__text, + STATE(564), 1, + sym_inline_attribute, + ACTIONS(1188), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1678), 28, + ACTIONS(1186), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -18463,42 +16232,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, + sym__whitespace1, sym__newline, - [798] = 5, - ACTIONS(1704), 1, + [764] = 4, + ACTIONS(1214), 1, + anon_sym_LBRACE_EQ2, + STATE(448), 1, + sym_raw_inline_attribute, + ACTIONS(1196), 8, anon_sym_LBRACE, - STATE(200), 1, - aux_sym__text, - STATE(573), 1, - sym_inline_attribute, - ACTIONS(1692), 6, + anon_sym_LBRACE_EQ, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1690), 30, + ACTIONS(1198), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -18507,42 +16275,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [848] = 4, - ACTIONS(1706), 1, + [811] = 4, + ACTIONS(1216), 1, anon_sym_LBRACE_EQ2, - STATE(422), 1, + STATE(219), 1, sym_raw_inline_attribute, - ACTIONS(1672), 8, + ACTIONS(1196), 8, anon_sym_LBRACE, + anon_sym_LBRACE_EQ, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE_EQ, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1674), 29, + ACTIONS(1198), 28, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -18551,42 +16318,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [896] = 5, - ACTIONS(1708), 1, + [858] = 5, + ACTIONS(1218), 1, anon_sym_LBRACE, - STATE(204), 1, + STATE(201), 1, aux_sym__text, - STATE(569), 1, + STATE(581), 1, sym_inline_attribute, - ACTIONS(1692), 6, + ACTIONS(1188), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1690), 30, + ACTIONS(1186), 29, sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -18596,41 +16362,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [946] = 4, - ACTIONS(1710), 1, + [907] = 4, + ACTIONS(1220), 1, anon_sym_LBRACE_EQ2, - STATE(370), 1, + STATE(385), 1, sym_raw_inline_attribute, - ACTIONS(1672), 9, + ACTIONS(1196), 8, anon_sym_LBRACE, + anon_sym_LBRACE_EQ, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE_EQ, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1674), 28, + ACTIONS(1198), 28, sym__verbatim_begin, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -18640,40 +16405,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [994] = 4, - ACTIONS(1712), 1, + [954] = 4, + ACTIONS(1222), 1, anon_sym_LBRACE_EQ2, - STATE(553), 1, + STATE(516), 1, sym_raw_inline_attribute, - ACTIONS(1672), 8, + ACTIONS(1196), 8, anon_sym_LBRACE, + anon_sym_LBRACE_EQ, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE_EQ, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1674), 29, + ACTIONS(1198), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_RBRACK2, @@ -18684,113 +16448,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [1042] = 5, - ACTIONS(1714), 1, + [1001] = 4, + ACTIONS(1192), 1, + sym__id, + STATE(842), 1, + sym_reference_label, + ACTIONS(49), 15, anon_sym_LBRACE, - STATE(172), 1, - aux_sym__text, - STATE(574), 1, - sym_inline_attribute, - ACTIONS(1692), 7, + anon_sym__, anon_sym_BSLASH, + sym_em_dash, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, aux_sym__text_token1, - ACTIONS(1690), 29, + ACTIONS(101), 21, sym__verbatim_begin, + sym_insert_end, anon_sym_LBRACE_, - anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - anon_sym_PIPE, - sym__whitespace1, - sym__newline, - [1092] = 6, - ACTIONS(49), 1, - anon_sym_LBRACE, - ACTIONS(93), 1, - aux_sym_strong_end_token1, - ACTIONS(1681), 1, - anon_sym_SPACE, - STATE(296), 1, - aux_sym_strong_begin_repeat1, - ACTIONS(1683), 8, - anon_sym_STAR, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE2, - sym__whitespace1, - aux_sym__text_token1, - ACTIONS(1678), 27, - sym__verbatim_begin, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, + anon_sym_TILDE, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + anon_sym_LT, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - anon_sym_PIPE, + sym__whitespace1, sym__newline, - [1144] = 4, - ACTIONS(1686), 1, + [1048] = 4, + ACTIONS(1192), 1, sym__id, - STATE(870), 1, + STATE(955), 1, sym_reference_label, - ACTIONS(49), 16, + ACTIONS(49), 15, anon_sym_LBRACE, anon_sym__, anon_sym_BSLASH, sym_em_dash, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, anon_sym_TODO, @@ -18800,104 +16514,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, aux_sym__text_token1, - ACTIONS(93), 21, + ACTIONS(101), 21, sym__verbatim_begin, + sym_strong_end, anon_sym_LBRACE_, anon_sym_LBRACE_STAR, anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - anon_sym_LT, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + anon_sym_LT, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [1192] = 4, - ACTIONS(1686), 1, - sym__id, - STATE(903), 1, - sym_reference_label, - ACTIONS(49), 16, + [1095] = 4, + ACTIONS(1224), 1, + anon_sym_LBRACE_EQ2, + STATE(380), 1, + sym_raw_inline_attribute, + ACTIONS(1196), 8, anon_sym_LBRACE, - anon_sym__, + anon_sym_LBRACE_EQ, anon_sym_BSLASH, - sym_em_dash, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1198), 28, + sym__verbatim_begin, + ts_builtin_sym_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, anon_sym_NOTE, anon_sym_INFO, anon_sym_XXX, sym_fixme, + sym__whitespace1, + sym__newline, + [1142] = 5, + ACTIONS(1226), 1, + anon_sym_LBRACE, + STATE(183), 1, + aux_sym__text, + STATE(580), 1, + sym_inline_attribute, + ACTIONS(1188), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(93), 21, + ACTIONS(1186), 29, sym__verbatim_begin, + sym_insert_end, anon_sym_LBRACE_, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - anon_sym_LT, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, - anon_sym_PIPE, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, sym__whitespace1, sym__newline, - [1240] = 4, - ACTIONS(1716), 1, + [1191] = 4, + ACTIONS(1228), 1, anon_sym_LBRACE_EQ2, - STATE(486), 1, + STATE(430), 1, sym_raw_inline_attribute, - ACTIONS(1672), 8, + ACTIONS(1196), 8, anon_sym_LBRACE, + anon_sym_LBRACE_EQ, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE_EQ, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1674), 29, + ACTIONS(1198), 28, sym__verbatim_begin, - ts_builtin_sym_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -18907,13 +16664,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [1288] = 4, - ACTIONS(1686), 1, + [1238] = 4, + ACTIONS(1192), 1, sym__id, - STATE(807), 1, + STATE(823), 1, sym_reference_label, ACTIONS(49), 15, anon_sym_LBRACE, @@ -18931,38 +16687,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, aux_sym__text_token1, - ACTIONS(93), 22, + ACTIONS(101), 21, sym__verbatim_begin, + sym_delete_end, anon_sym_LBRACE_, anon_sym_LBRACE_STAR, anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, - sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + anon_sym_LT, + sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [1336] = 4, - ACTIONS(1686), 1, + [1285] = 4, + ACTIONS(1192), 1, sym__id, - STATE(822), 1, + STATE(1007), 1, sym_reference_label, - ACTIONS(49), 17, + ACTIONS(49), 15, anon_sym_LBRACE, anon_sym__, - anon_sym_STAR, anon_sym_BSLASH, sym_em_dash, sym_en_dash, @@ -18975,63 +16729,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(93), 20, + ACTIONS(101), 21, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, - sym_quotation_marks, - sym_ellipsis, - anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, + anon_sym_STAR, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + anon_sym_LT, + sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, - anon_sym_PIPE, + sym__whitespace1, sym__newline, - [1384] = 5, - ACTIONS(1718), 1, + [1332] = 5, + ACTIONS(1230), 1, anon_sym_LBRACE, - STATE(183), 1, + STATE(174), 1, aux_sym__text, - STATE(594), 1, + STATE(575), 1, sym_inline_attribute, - ACTIONS(1692), 8, - anon_sym_STAR, + ACTIONS(1188), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1690), 28, + ACTIONS(1186), 29, sym__verbatim_begin, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -19041,41 +16794,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, + sym__whitespace1, sym__newline, - [1434] = 5, - ACTIONS(1720), 1, + [1381] = 5, + ACTIONS(1232), 1, anon_sym_LBRACE, - STATE(184), 1, + STATE(203), 1, aux_sym__text, - STATE(577), 1, + STATE(604), 1, sym_inline_attribute, - ACTIONS(1692), 6, + ACTIONS(1188), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1690), 30, + ACTIONS(1186), 29, sym__verbatim_begin, - sym_emphasis_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -19085,88 +16838,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [1484] = 4, - ACTIONS(1686), 1, - sym__id, - STATE(997), 1, - sym_reference_label, - ACTIONS(49), 15, + [1430] = 4, + ACTIONS(1218), 1, anon_sym_LBRACE, - anon_sym__, + STATE(581), 1, + sym_inline_attribute, + ACTIONS(1188), 6, anon_sym_BSLASH, - sym_em_dash, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, aux_sym__text_token1, - ACTIONS(93), 22, + ACTIONS(1186), 29, sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, - anon_sym_LBRACE_DASH, - sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, - anon_sym_PIPE, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, sym__whitespace1, sym__newline, - [1532] = 6, - ACTIONS(49), 1, + [1476] = 3, + ACTIONS(1234), 1, + sym__non_whitespace_check, + ACTIONS(49), 7, anon_sym_LBRACE, - ACTIONS(93), 1, - ts_builtin_sym_end, - ACTIONS(1681), 1, - anon_sym_SPACE, - STATE(296), 1, - aux_sym_strong_begin_repeat1, - ACTIONS(1683), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1678), 28, + ACTIONS(101), 29, sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -19176,43 +16921,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, + sym__whitespace1, sym__newline, - [1584] = 6, - ACTIONS(49), 1, + [1520] = 3, + ACTIONS(1236), 1, + sym__non_whitespace_check, + ACTIONS(49), 7, anon_sym_LBRACE, - ACTIONS(93), 1, - anon_sym_TILDE_RBRACE, - ACTIONS(1681), 1, - anon_sym_SPACE, - STATE(296), 1, - aux_sym_strong_begin_repeat1, - ACTIONS(1683), 8, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1678), 27, + ACTIONS(101), 29, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -19222,12 +16962,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, + sym__whitespace1, sym__newline, - [1636] = 4, - ACTIONS(1686), 1, + [1564] = 4, + ACTIONS(1192), 1, sym__id, - STATE(839), 1, + STATE(883), 1, sym_reference_label, ACTIONS(49), 15, anon_sym_LBRACE, @@ -19245,106 +16985,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, aux_sym__text_token1, - ACTIONS(93), 22, + ACTIONS(101), 20, sym__verbatim_begin, - sym_emphasis_end, anon_sym_LBRACE_, anon_sym_LBRACE_STAR, anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_PIPE, - sym__whitespace1, - sym__newline, - [1684] = 4, - ACTIONS(1722), 1, - anon_sym_LBRACE_EQ2, - STATE(318), 1, - sym_raw_inline_attribute, - ACTIONS(1672), 9, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, anon_sym_LBRACE_EQ, - anon_sym_CARET, - anon_sym_LBRACK, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(1674), 28, - sym__verbatim_begin, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, - sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [1732] = 4, - ACTIONS(1724), 1, - anon_sym_LBRACE_EQ2, - STATE(474), 1, - sym_raw_inline_attribute, - ACTIONS(1672), 10, + [1610] = 5, + ACTIONS(1238), 1, anon_sym_LBRACE, - anon_sym_STAR, + STATE(513), 1, + aux_sym__text, + STATE(607), 1, + sym_inline_attribute, + ACTIONS(1188), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE_EQ, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1674), 27, + ACTIONS(1186), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -19354,41 +17047,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, + sym__whitespace1, sym__newline, - [1780] = 5, - ACTIONS(1726), 1, + [1658] = 4, + ACTIONS(1232), 1, anon_sym_LBRACE, - STATE(192), 1, - aux_sym__text, - STATE(595), 1, + STATE(604), 1, sym_inline_attribute, - ACTIONS(1692), 6, + ACTIONS(1188), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1690), 30, + ACTIONS(1186), 29, sym__verbatim_begin, ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -19398,46 +17089,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [1830] = 6, - ACTIONS(49), 1, + [1704] = 4, + ACTIONS(1244), 1, + aux_sym__text_token1, + STATE(167), 1, + aux_sym__text, + ACTIONS(1240), 6, anon_sym_LBRACE, - ACTIONS(93), 1, - anon_sym_PLUS_RBRACE, - ACTIONS(1681), 1, - anon_sym_SPACE, - STATE(296), 1, - aux_sym_strong_begin_repeat1, - ACTIONS(1683), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, - aux_sym__text_token1, - ACTIONS(1678), 28, + ACTIONS(1242), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -19445,41 +17131,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, + sym__whitespace1, sym__newline, - [1882] = 5, - ACTIONS(1728), 1, + [1750] = 4, + ACTIONS(1247), 1, + anon_sym_LBRACE_EQ2, + STATE(558), 1, + sym_raw_inline_attribute, + ACTIONS(1196), 8, anon_sym_LBRACE, - STATE(179), 1, - aux_sym__text, - STATE(579), 1, - sym_inline_attribute, - ACTIONS(1692), 7, + anon_sym_LBRACE_EQ, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1690), 29, + ACTIONS(1198), 27, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -19489,86 +17173,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [1932] = 4, - ACTIONS(1686), 1, - sym__id, - STATE(896), 1, - sym_reference_label, - ACTIONS(49), 15, - anon_sym_LBRACE, - anon_sym__, - anon_sym_BSLASH, - sym_em_dash, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE2, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - aux_sym__text_token1, - ACTIONS(93), 22, + [1796] = 3, + ACTIONS(1249), 1, + aux_sym_autolink_token1, + ACTIONS(101), 4, sym__verbatim_begin, + ts_builtin_sym_end, + sym__whitespace1, + sym__newline, + ACTIONS(49), 32, + anon_sym_LBRACE, anon_sym_LBRACE_, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_PIPE, - sym__whitespace1, - sym__newline, - [1980] = 4, - ACTIONS(1734), 1, - aux_sym__text_token1, - STATE(172), 1, - aux_sym__text, - ACTIONS(1730), 7, - anon_sym_LBRACE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_TILDE, - anon_sym_LBRACK, - anon_sym_LBRACE2, - ACTIONS(1732), 29, - sym__verbatim_begin, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, + sym_en_dash, + sym_backslash_escape, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK, + anon_sym_LBRACE2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -19576,22 +17215,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, - sym__whitespace1, - sym__newline, - [2027] = 3, - ACTIONS(1737), 1, + aux_sym__text_token1, + [1840] = 3, + ACTIONS(1251), 1, aux_sym_autolink_token1, - ACTIONS(93), 3, + ACTIONS(101), 3, sym__verbatim_begin, sym__whitespace1, sym__newline, - ACTIONS(49), 34, + ACTIONS(49), 33, anon_sym_LBRACE, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, @@ -19599,18 +17243,11 @@ static const uint16_t ts_small_parse_table[] = { sym_en_dash, sym_backslash_escape, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_LBRACK, + anon_sym_RBRACK2, anon_sym_LBRACE2, anon_sym_DOLLAR, anon_sym_TODO, @@ -19619,41 +17256,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, aux_sym__text_token1, - [2072] = 4, - ACTIONS(1704), 1, + [1884] = 4, + ACTIONS(1212), 1, anon_sym_LBRACE, - STATE(573), 1, + STATE(564), 1, sym_inline_attribute, - ACTIONS(1692), 6, + ACTIONS(1188), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1690), 30, + ACTIONS(1186), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -19661,42 +17297,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, - sym__whitespace1, - sym__newline, - [2119] = 3, - ACTIONS(1739), 1, - aux_sym_autolink_token1, - ACTIONS(93), 3, - sym__verbatim_begin, sym__whitespace1, sym__newline, - ACTIONS(49), 34, + [1930] = 3, + ACTIONS(1253), 1, + sym__non_whitespace_check, + ACTIONS(49), 7, anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(101), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, - anon_sym_BSLASH, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, - sym_en_dash, - sym_backslash_escape, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LBRACK, - anon_sym_LBRACE2, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -19704,41 +17338,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, - aux_sym__text_token1, - [2164] = 4, - ACTIONS(1720), 1, + sym__whitespace1, + sym__newline, + [1974] = 3, + ACTIONS(1255), 1, + sym__non_whitespace_check, + ACTIONS(49), 7, anon_sym_LBRACE, - STATE(577), 1, - sym_inline_attribute, - ACTIONS(1692), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1690), 30, + ACTIONS(101), 29, sym__verbatim_begin, - sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -19746,39 +17379,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [2211] = 3, - ACTIONS(1741), 1, - sym__non_whitespace_check, - ACTIONS(49), 7, + [2018] = 4, + ACTIONS(1257), 1, + aux_sym__text_token1, + STATE(174), 1, + aux_sym__text, + ACTIONS(1240), 6, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(93), 30, + ACTIONS(1242), 29, sym__verbatim_begin, - sym_emphasis_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -19788,42 +17421,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [2256] = 3, - ACTIONS(1743), 1, - aux_sym_autolink_token1, - ACTIONS(93), 4, + [2064] = 3, + ACTIONS(1260), 1, + sym__non_whitespace_check, + ACTIONS(49), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(101), 29, sym__verbatim_begin, sym_emphasis_end, - sym__whitespace1, - sym__newline, - ACTIONS(49), 33, - anon_sym_LBRACE, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, - anon_sym_BSLASH, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, - sym_en_dash, - sym_backslash_escape, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LBRACK, - anon_sym_LBRACE2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -19831,39 +17462,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, - aux_sym__text_token1, - [2301] = 4, - ACTIONS(1745), 1, - aux_sym__text_token1, - STATE(179), 1, - aux_sym__text, - ACTIONS(1730), 7, + sym__whitespace1, + sym__newline, + [2108] = 3, + ACTIONS(1262), 1, + sym__non_whitespace_check, + ACTIONS(49), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, - ACTIONS(1732), 29, + aux_sym__text_token1, + ACTIONS(101), 29, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -19873,39 +17503,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [2348] = 3, - ACTIONS(1748), 1, - sym__non_whitespace_check, - ACTIONS(49), 8, + [2152] = 4, + ACTIONS(1190), 1, anon_sym_LBRACE, + STATE(577), 1, + sym_inline_attribute, + ACTIONS(1188), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(93), 29, + ACTIONS(1186), 29, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -19915,42 +17545,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [2393] = 4, - ACTIONS(1714), 1, - anon_sym_LBRACE, - STATE(574), 1, - sym_inline_attribute, - ACTIONS(1692), 7, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_TILDE, - anon_sym_LBRACK, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(1690), 29, + [2198] = 3, + ACTIONS(1264), 1, + aux_sym_autolink_token1, + ACTIONS(101), 4, sym__verbatim_begin, + sym_emphasis_end, + sym__whitespace1, + sym__newline, + ACTIONS(49), 32, + anon_sym_LBRACE, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, + sym_en_dash, + sym_backslash_escape, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK, + anon_sym_LBRACE2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -19958,22 +17587,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, - sym__whitespace1, - sym__newline, - [2440] = 3, - ACTIONS(1750), 1, + aux_sym__text_token1, + [2242] = 3, + ACTIONS(1266), 1, aux_sym_autolink_token1, - ACTIONS(93), 3, + ACTIONS(101), 4, sym__verbatim_begin, + sym_delete_end, sym__whitespace1, sym__newline, - ACTIONS(49), 34, + ACTIONS(49), 32, anon_sym_LBRACE, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, @@ -19981,15 +17616,7 @@ static const uint16_t ts_small_parse_table[] = { sym_en_dash, sym_backslash_escape, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_LBRACK, @@ -20001,40 +17628,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, aux_sym__text_token1, - [2485] = 4, - ACTIONS(1752), 1, - aux_sym__text_token1, - STATE(183), 1, - aux_sym__text, - ACTIONS(1730), 8, + [2286] = 4, + ACTIONS(1230), 1, anon_sym_LBRACE, - anon_sym_STAR, + STATE(575), 1, + sym_inline_attribute, + ACTIONS(1188), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, - ACTIONS(1732), 28, + aux_sym__text_token1, + ACTIONS(1186), 29, sym__verbatim_begin, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -20044,39 +17669,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, + sym__whitespace1, sym__newline, - [2532] = 4, - ACTIONS(1755), 1, - aux_sym__text_token1, - STATE(184), 1, - aux_sym__text, - ACTIONS(1730), 6, + [2332] = 3, + ACTIONS(1268), 1, + sym__non_whitespace_check, + ACTIONS(49), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - ACTIONS(1732), 30, + aux_sym__text_token1, + ACTIONS(101), 29, sym__verbatim_begin, - sym_emphasis_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -20086,41 +17710,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [2579] = 3, - ACTIONS(1758), 1, - aux_sym_autolink_token1, - ACTIONS(93), 2, - sym__verbatim_begin, - sym__newline, - ACTIONS(49), 35, + [2376] = 3, + ACTIONS(1270), 1, + sym__non_whitespace_check, + ACTIONS(49), 7, anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(101), 29, + sym__verbatim_begin, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, - aux_sym_strong_end_token1, - anon_sym_BSLASH, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - sym_en_dash, - sym_backslash_escape, - anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LBRACK, - anon_sym_LBRACE2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -20128,41 +17751,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, + sym__newline, + [2420] = 4, + ACTIONS(1272), 1, aux_sym__text_token1, - [2624] = 4, - ACTIONS(1718), 1, + STATE(183), 1, + aux_sym__text, + ACTIONS(1240), 6, anon_sym_LBRACE, - STATE(594), 1, - sym_inline_attribute, - ACTIONS(1692), 8, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, - aux_sym__text_token1, - ACTIONS(1690), 28, + ACTIONS(1242), 29, sym__verbatim_begin, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -20172,39 +17793,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, + sym__whitespace1, sym__newline, - [2671] = 3, - ACTIONS(1760), 1, + [2466] = 3, + ACTIONS(1275), 1, sym__non_whitespace_check, - ACTIONS(49), 9, + ACTIONS(49), 7, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(93), 28, + ACTIONS(101), 29, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -20214,40 +17834,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, + sym__whitespace1, sym__newline, - [2716] = 3, - ACTIONS(1762), 1, - sym__non_whitespace_check, - ACTIONS(49), 7, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(93), 30, + [2510] = 3, + ACTIONS(1277), 1, + aux_sym_autolink_token1, + ACTIONS(101), 4, sym__verbatim_begin, + sym_insert_end, + sym__whitespace1, + sym__newline, + ACTIONS(49), 32, + anon_sym_LBRACE, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, + sym_en_dash, + sym_backslash_escape, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK, + anon_sym_LBRACE2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -20255,41 +17876,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, - sym__whitespace1, - sym__newline, - [2761] = 3, - ACTIONS(1764), 1, - sym__non_whitespace_check, - ACTIONS(49), 7, + aux_sym__text_token1, + [2554] = 4, + ACTIONS(1226), 1, anon_sym_LBRACE, + STATE(580), 1, + sym_inline_attribute, + ACTIONS(1188), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(93), 30, + ACTIONS(1186), 29, sym__verbatim_begin, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -20297,39 +17917,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [2806] = 4, - ACTIONS(1766), 1, + [2600] = 4, + ACTIONS(1279), 1, aux_sym__text_token1, - STATE(190), 1, + STATE(187), 1, aux_sym__text, - ACTIONS(1730), 6, + ACTIONS(1240), 6, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - ACTIONS(1732), 30, + ACTIONS(1242), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_RBRACK, anon_sym_BANG_LBRACK, @@ -20340,42 +17959,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [2853] = 4, - ACTIONS(1694), 1, + [2646] = 3, + ACTIONS(1282), 1, + sym__non_whitespace_check, + ACTIONS(49), 7, anon_sym_LBRACE, - STATE(580), 1, - sym_inline_attribute, - ACTIONS(1692), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1690), 30, + ACTIONS(101), 29, sym__verbatim_begin, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -20383,40 +18000,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [2900] = 4, - ACTIONS(1769), 1, - aux_sym__text_token1, - STATE(192), 1, - aux_sym__text, - ACTIONS(1730), 6, + [2690] = 3, + ACTIONS(1284), 1, + sym__non_whitespace_check, + ACTIONS(49), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - ACTIONS(1732), 30, + aux_sym__text_token1, + ACTIONS(101), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -20426,42 +18041,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [2947] = 4, - ACTIONS(1772), 1, - anon_sym_LBRACE_EQ2, - STATE(626), 1, - sym_raw_inline_attribute, - ACTIONS(1672), 8, + [2734] = 4, + ACTIONS(1286), 1, + aux_sym__text_token1, + STATE(190), 1, + aux_sym__text, + ACTIONS(1240), 6, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE_EQ, anon_sym_LBRACK, anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(1674), 28, + ACTIONS(1242), 29, sym__verbatim_begin, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + sym__whitespace1, + sym__newline, + [2780] = 3, + ACTIONS(1289), 1, + aux_sym_autolink_token1, + ACTIONS(101), 4, + sym__verbatim_begin, + sym_highlighted_end, + sym__whitespace1, + sym__newline, + ACTIONS(49), 32, + anon_sym_LBRACE, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + anon_sym_BSLASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + sym_en_dash, + sym_backslash_escape, + anon_sym_LT, + sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK, + anon_sym_LBRACE2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -20469,40 +18125,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, - sym__whitespace1, - sym__newline, - [2994] = 4, - ACTIONS(1728), 1, + aux_sym__text_token1, + [2824] = 4, + ACTIONS(1206), 1, anon_sym_LBRACE, - STATE(579), 1, + STATE(583), 1, sym_inline_attribute, - ACTIONS(1692), 7, + ACTIONS(1188), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1690), 29, + ACTIONS(1186), 29, sym__verbatim_begin, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -20512,11 +18166,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [3041] = 3, - ACTIONS(1774), 1, + [2870] = 3, + ACTIONS(1291), 1, sym__non_whitespace_check, ACTIONS(49), 7, anon_sym_LBRACE, @@ -20526,26 +18179,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(93), 30, + ACTIONS(101), 29, sym__verbatim_begin, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -20554,84 +18207,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [3086] = 3, - ACTIONS(1776), 1, + [2914] = 3, + ACTIONS(1293), 1, sym__non_whitespace_check, - ACTIONS(49), 8, + ACTIONS(49), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(93), 29, + ACTIONS(101), 29, sym__verbatim_begin, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, + anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - anon_sym_PIPE, - sym__whitespace1, - sym__newline, - [3131] = 3, - ACTIONS(1778), 1, - aux_sym_autolink_token1, - ACTIONS(93), 4, - sym__verbatim_begin, - ts_builtin_sym_end, - sym__whitespace1, - sym__newline, - ACTIONS(49), 33, - anon_sym_LBRACE, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_BSLASH, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, - sym_en_dash, - sym_backslash_escape, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LBRACK, - anon_sym_LBRACE2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -20639,39 +18248,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, + sym__whitespace1, + sym__newline, + [2958] = 4, + ACTIONS(1295), 1, aux_sym__text_token1, - [3176] = 4, - ACTIONS(1726), 1, + STATE(195), 1, + aux_sym__text, + ACTIONS(1240), 6, anon_sym_LBRACE, - STATE(595), 1, - sym_inline_attribute, - ACTIONS(1692), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(1690), 30, + ACTIONS(1242), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -20681,22 +18290,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [3223] = 3, - ACTIONS(1780), 1, + [3004] = 3, + ACTIONS(1298), 1, aux_sym_autolink_token1, - ACTIONS(93), 3, + ACTIONS(101), 4, sym__verbatim_begin, + sym_subscript_end, sym__whitespace1, sym__newline, - ACTIONS(49), 34, + ACTIONS(49), 32, anon_sym_LBRACE, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, @@ -20704,18 +18320,10 @@ static const uint16_t ts_small_parse_table[] = { sym_en_dash, sym_backslash_escape, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_LBRACK, - anon_sym_RBRACK2, anon_sym_LBRACE2, anon_sym_DOLLAR, anon_sym_TODO, @@ -20724,39 +18332,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, aux_sym__text_token1, - [3268] = 4, - ACTIONS(1782), 1, - aux_sym__text_token1, - STATE(200), 1, - aux_sym__text, - ACTIONS(1730), 6, + [3048] = 4, + ACTIONS(1194), 1, anon_sym_LBRACE, + STATE(586), 1, + sym_inline_attribute, + ACTIONS(1188), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - ACTIONS(1732), 30, + aux_sym__text_token1, + ACTIONS(1186), 29, sym__verbatim_begin, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -20766,41 +18373,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [3315] = 4, - ACTIONS(1698), 1, + [3094] = 4, + ACTIONS(1300), 1, + aux_sym__text_token1, + STATE(198), 1, + aux_sym__text, + ACTIONS(1240), 6, anon_sym_LBRACE, - STATE(585), 1, - sym_inline_attribute, - ACTIONS(1692), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(1690), 30, + ACTIONS(1242), 29, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -20809,42 +18415,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, - sym__whitespace1, - sym__newline, - [3362] = 3, - ACTIONS(1785), 1, - aux_sym_autolink_token1, - ACTIONS(93), 3, - sym__verbatim_begin, sym__whitespace1, sym__newline, - ACTIONS(49), 34, + [3140] = 3, + ACTIONS(1303), 1, + sym__non_whitespace_check, + ACTIONS(49), 7, anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(101), 29, + sym__verbatim_begin, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, - anon_sym_BSLASH, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, - sym_en_dash, - sym_backslash_escape, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, - anon_sym_LBRACK, - anon_sym_LBRACE2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -20852,10 +18456,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, - aux_sym__text_token1, - [3407] = 3, - ACTIONS(1787), 1, + sym__whitespace1, + sym__newline, + [3184] = 3, + ACTIONS(1305), 1, sym__non_whitespace_check, ACTIONS(49), 7, anon_sym_LBRACE, @@ -20865,25 +18469,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(93), 30, + ACTIONS(101), 29, sym__verbatim_begin, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -20893,40 +18497,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [3452] = 4, - ACTIONS(1789), 1, + [3228] = 4, + ACTIONS(1307), 1, aux_sym__text_token1, - STATE(204), 1, + STATE(201), 1, aux_sym__text, - ACTIONS(1730), 6, + ACTIONS(1240), 6, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - ACTIONS(1732), 30, + ACTIONS(1242), 29, sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -20936,42 +18539,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [3499] = 4, - ACTIONS(1688), 1, - anon_sym_LBRACE, - STATE(581), 1, - sym_inline_attribute, - ACTIONS(1692), 6, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(1690), 30, + [3274] = 3, + ACTIONS(1310), 1, + aux_sym_autolink_token1, + ACTIONS(101), 4, sym__verbatim_begin, + sym_superscript_end, + sym__whitespace1, + sym__newline, + ACTIONS(49), 32, + anon_sym_LBRACE, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, + sym_en_dash, + sym_backslash_escape, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK, + anon_sym_LBRACE2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -20979,39 +18581,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, - sym__whitespace1, - sym__newline, - [3546] = 3, - ACTIONS(1792), 1, - sym__non_whitespace_check, - ACTIONS(49), 7, + aux_sym__text_token1, + [3318] = 4, + ACTIONS(1312), 1, + aux_sym__text_token1, + STATE(203), 1, + aux_sym__text, + ACTIONS(1240), 6, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(93), 30, + ACTIONS(1242), 29, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -21021,22 +18622,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [3591] = 3, - ACTIONS(1794), 1, + [3364] = 3, + ACTIONS(1315), 1, aux_sym_autolink_token1, - ACTIONS(93), 3, + ACTIONS(101), 3, sym__verbatim_begin, sym__whitespace1, sym__newline, - ACTIONS(49), 34, + ACTIONS(49), 33, anon_sym_LBRACE, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, @@ -21044,16 +18651,9 @@ static const uint16_t ts_small_parse_table[] = { sym_en_dash, sym_backslash_escape, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_LBRACK, anon_sym_LBRACE2, @@ -21064,82 +18664,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, aux_sym__text_token1, - [3636] = 4, - ACTIONS(1686), 1, - sym__id, - STATE(878), 1, - sym_reference_label, - ACTIONS(49), 15, + [3408] = 4, + ACTIONS(1317), 1, + aux_sym__text_token1, + STATE(205), 1, + aux_sym__text, + ACTIONS(1240), 6, anon_sym_LBRACE, - anon_sym__, anon_sym_BSLASH, - sym_em_dash, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, + ACTIONS(1242), 29, + sym__verbatim_begin, + sym_strong_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, anon_sym_NOTE, anon_sym_INFO, anon_sym_XXX, sym_fixme, + sym__whitespace1, + sym__newline, + [3454] = 3, + ACTIONS(1320), 1, + sym__non_whitespace_check, + ACTIONS(49), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(93), 21, + ACTIONS(101), 29, sym__verbatim_begin, + sym_strong_end, anon_sym_LBRACE_, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - anon_sym_LT, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + sym__whitespace1, + sym__newline, + [3498] = 3, + ACTIONS(1322), 1, + sym__non_whitespace_check, + ACTIONS(49), 7, + anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(101), 29, + sym__verbatim_begin, + sym_strong_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, - anon_sym_PIPE, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, sym__whitespace1, sym__newline, - [3683] = 4, - ACTIONS(1708), 1, + [3542] = 4, + ACTIONS(1184), 1, anon_sym_LBRACE, - STATE(569), 1, + STATE(592), 1, sym_inline_attribute, - ACTIONS(1692), 6, + ACTIONS(1188), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1690), 30, + ACTIONS(1186), 29, sym__verbatim_begin, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -21149,22 +18829,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [3730] = 3, - ACTIONS(1796), 1, + [3588] = 3, + ACTIONS(1324), 1, aux_sym_autolink_token1, - ACTIONS(93), 3, + ACTIONS(101), 4, sym__verbatim_begin, + sym_strong_end, sym__whitespace1, sym__newline, - ACTIONS(49), 34, + ACTIONS(49), 32, anon_sym_LBRACE, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, @@ -21172,15 +18859,7 @@ static const uint16_t ts_small_parse_table[] = { sym_en_dash, sym_backslash_escape, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_LBRACK, @@ -21192,41 +18871,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, aux_sym__text_token1, - [3775] = 4, - ACTIONS(1798), 1, - aux_sym__text_token1, - STATE(211), 1, - aux_sym__text, - ACTIONS(1730), 6, + [3632] = 3, + ACTIONS(1326), 1, + sym__non_whitespace_check, + ACTIONS(49), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - ACTIONS(1732), 30, + aux_sym__text_token1, + ACTIONS(101), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -21234,41 +18911,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [3822] = 4, - ACTIONS(1801), 1, - aux_sym__text_token1, - STATE(212), 1, - aux_sym__text, - ACTIONS(1730), 6, + [3676] = 4, + ACTIONS(1204), 1, anon_sym_LBRACE, + STATE(596), 1, + sym_inline_attribute, + ACTIONS(1188), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - ACTIONS(1732), 30, + aux_sym__text_token1, + ACTIONS(1186), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -21277,43 +18953,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [3869] = 5, - ACTIONS(49), 1, + [3722] = 3, + ACTIONS(1328), 1, + sym__non_whitespace_check, + ACTIONS(49), 7, anon_sym_LBRACE, - ACTIONS(1681), 1, - anon_sym_SPACE, - STATE(296), 1, - aux_sym_strong_begin_repeat1, - ACTIONS(1683), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1678), 28, + ACTIONS(101), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -21322,10 +18994,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, + sym__whitespace1, sym__newline, - [3918] = 3, - ACTIONS(1804), 1, + [3766] = 3, + ACTIONS(1330), 1, sym__non_whitespace_check, ACTIONS(49), 7, anon_sym_LBRACE, @@ -21335,25 +19007,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(93), 30, + ACTIONS(101), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -21363,41 +19035,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [3963] = 5, - ACTIONS(1806), 1, + [3810] = 2, + ACTIONS(1332), 7, anon_sym_LBRACE, - STATE(437), 1, - aux_sym__text, - STATE(630), 1, - sym_inline_attribute, - ACTIONS(1692), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1690), 29, + ACTIONS(1334), 29, sym__verbatim_begin, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -21407,11 +19074,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [4012] = 2, - ACTIONS(1808), 7, + [3851] = 2, + ACTIONS(1336), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -21419,25 +19085,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1810), 30, + ACTIONS(1338), 29, sym__verbatim_begin, - sym_emphasis_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -21447,13 +19113,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [4054] = 3, - ACTIONS(1812), 1, - sym__non_whitespace_check, - ACTIONS(49), 7, + [3892] = 2, + ACTIONS(1342), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -21461,24 +19124,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(93), 29, + ACTIONS(1340), 29, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -21488,11 +19152,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [4098] = 2, - ACTIONS(1814), 7, + [3933] = 2, + ACTIONS(1344), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -21500,25 +19163,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1816), 30, + ACTIONS(1346), 29, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, - anon_sym_LBRACE_DASH, - sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -21528,11 +19191,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [4140] = 2, - ACTIONS(1818), 7, + [3974] = 2, + ACTIONS(1348), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -21540,25 +19202,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1820), 30, + ACTIONS(1350), 29, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -21568,11 +19230,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [4182] = 2, - ACTIONS(1822), 7, + [4015] = 2, + ACTIONS(1352), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -21580,25 +19241,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1824), 30, + ACTIONS(1354), 29, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -21608,39 +19269,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [4224] = 4, - ACTIONS(49), 1, + [4056] = 2, + ACTIONS(1358), 7, anon_sym_LBRACE, - ACTIONS(93), 1, - ts_builtin_sym_end, - ACTIONS(1683), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1678), 29, + ACTIONS(1356), 29, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -21650,11 +19308,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [4270] = 2, - ACTIONS(1826), 7, + [4097] = 2, + ACTIONS(1360), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -21662,25 +19319,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1828), 30, + ACTIONS(1362), 29, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -21690,11 +19347,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [4312] = 2, - ACTIONS(1830), 7, + [4138] = 2, + ACTIONS(1364), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -21702,25 +19358,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1832), 30, + ACTIONS(1366), 29, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -21730,11 +19386,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [4354] = 2, - ACTIONS(1834), 7, + [4179] = 2, + ACTIONS(1368), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -21742,25 +19397,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1836), 30, + ACTIONS(1370), 29, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -21770,11 +19425,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [4396] = 2, - ACTIONS(1838), 7, + [4220] = 2, + ACTIONS(1372), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -21782,25 +19436,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1840), 30, + ACTIONS(1374), 29, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -21810,11 +19464,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [4438] = 2, - ACTIONS(1842), 7, + [4261] = 2, + ACTIONS(1376), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -21822,25 +19475,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1844), 30, + ACTIONS(1378), 29, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -21850,11 +19503,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [4480] = 2, - ACTIONS(1846), 7, + [4302] = 2, + ACTIONS(1380), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -21862,25 +19514,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1848), 30, + ACTIONS(1382), 29, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -21890,11 +19542,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [4522] = 2, - ACTIONS(1850), 7, + [4343] = 2, + ACTIONS(1332), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -21902,25 +19553,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1852), 30, + ACTIONS(1334), 29, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -21930,11 +19581,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [4564] = 2, - ACTIONS(1854), 7, + [4384] = 2, + ACTIONS(1384), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -21942,25 +19592,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1856), 30, + ACTIONS(1386), 29, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -21970,11 +19620,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [4606] = 2, - ACTIONS(1858), 7, + [4425] = 2, + ACTIONS(1388), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -21982,25 +19631,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1860), 30, + ACTIONS(1390), 29, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -22010,11 +19659,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [4648] = 2, - ACTIONS(1862), 7, + [4466] = 2, + ACTIONS(1392), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22022,25 +19670,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1864), 30, + ACTIONS(1394), 29, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -22050,13 +19698,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [4690] = 3, - ACTIONS(1866), 1, - sym__verbatim_begin, - ACTIONS(49), 7, + [4507] = 2, + ACTIONS(1396), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22064,24 +19709,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(93), 29, - ts_builtin_sym_end, + ACTIONS(1398), 29, + sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -22091,11 +19737,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [4734] = 2, - ACTIONS(1869), 7, + [4548] = 2, + ACTIONS(1400), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22103,25 +19748,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1871), 30, + ACTIONS(1402), 29, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -22131,11 +19776,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [4776] = 2, - ACTIONS(1873), 7, + [4589] = 2, + ACTIONS(1404), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22143,25 +19787,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1875), 30, + ACTIONS(1406), 29, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -22171,11 +19815,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [4818] = 2, - ACTIONS(1877), 7, + [4630] = 2, + ACTIONS(1336), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22183,26 +19826,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1879), 30, + ACTIONS(1338), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -22211,11 +19854,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [4860] = 2, - ACTIONS(1881), 7, + [4671] = 2, + ACTIONS(1408), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22223,26 +19865,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1883), 30, + ACTIONS(1410), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -22251,11 +19893,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [4902] = 2, - ACTIONS(1885), 7, + [4712] = 2, + ACTIONS(1412), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22263,26 +19904,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1887), 30, + ACTIONS(1414), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -22291,11 +19932,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [4944] = 2, - ACTIONS(1889), 7, + [4753] = 3, + ACTIONS(1416), 1, + sym__verbatim_begin, + ACTIONS(49), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22303,25 +19945,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1891), 30, - sym__verbatim_begin, + ACTIONS(101), 28, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -22331,11 +19972,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [4986] = 2, - ACTIONS(1893), 7, + [4796] = 2, + ACTIONS(1419), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22343,25 +19983,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1895), 30, + ACTIONS(1421), 29, sym__verbatim_begin, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -22371,39 +20011,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [5028] = 4, - ACTIONS(49), 1, + [4837] = 2, + ACTIONS(1423), 7, anon_sym_LBRACE, - ACTIONS(93), 1, - anon_sym_DASH_RBRACE, - ACTIONS(1683), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1678), 29, + ACTIONS(1425), 29, sym__verbatim_begin, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -22413,38 +20050,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [5074] = 3, - ACTIONS(1897), 1, - sym__verbatim_begin, - ACTIONS(49), 7, - anon_sym_LBRACE, + [4878] = 4, + ACTIONS(1431), 1, + anon_sym_LBRACE2, + STATE(284), 1, + sym_comment, + ACTIONS(1429), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(93), 29, + ACTIONS(1427), 29, + sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -22454,11 +20091,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [5118] = 2, - ACTIONS(1900), 7, + [4923] = 2, + ACTIONS(1434), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22466,26 +20102,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1902), 30, + ACTIONS(1436), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -22494,11 +20130,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [5160] = 2, - ACTIONS(1904), 7, + [4964] = 2, + ACTIONS(1438), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22506,26 +20141,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1906), 30, + ACTIONS(1440), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -22534,39 +20169,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [5202] = 4, - ACTIONS(1912), 1, - anon_sym_LBRACE2, - STATE(248), 1, - sym_comment, - ACTIONS(1910), 5, + [5005] = 2, + ACTIONS(1442), 7, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1908), 30, + ACTIONS(1444), 29, sym__verbatim_begin, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -22576,11 +20208,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [5248] = 2, - ACTIONS(1915), 7, + [5046] = 2, + ACTIONS(1446), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22588,25 +20219,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1917), 30, + ACTIONS(1448), 29, sym__verbatim_begin, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -22616,11 +20247,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [5290] = 2, - ACTIONS(1919), 7, + [5087] = 2, + ACTIONS(1342), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22628,27 +20258,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1921), 30, + ACTIONS(1340), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -22656,11 +20286,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [5332] = 2, - ACTIONS(1900), 7, + [5128] = 2, + ACTIONS(1438), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22668,25 +20297,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1902), 30, + ACTIONS(1440), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -22696,11 +20325,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [5374] = 2, - ACTIONS(1808), 7, + [5169] = 2, + ACTIONS(1434), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22708,25 +20336,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1810), 30, + ACTIONS(1436), 29, sym__verbatim_begin, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -22736,11 +20364,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [5416] = 2, - ACTIONS(1923), 7, + [5210] = 2, + ACTIONS(1412), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22748,25 +20375,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1925), 30, + ACTIONS(1414), 29, sym__verbatim_begin, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -22776,11 +20403,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [5458] = 2, - ACTIONS(1927), 7, + [5251] = 2, + ACTIONS(1408), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22788,25 +20414,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1929), 30, + ACTIONS(1410), 29, sym__verbatim_begin, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -22816,11 +20442,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [5500] = 2, - ACTIONS(1931), 7, + [5292] = 2, + ACTIONS(1336), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22828,25 +20453,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1933), 30, + ACTIONS(1338), 29, sym__verbatim_begin, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -22856,11 +20481,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [5542] = 2, - ACTIONS(1935), 7, + [5333] = 2, + ACTIONS(1450), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22868,25 +20492,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1937), 30, + ACTIONS(1452), 29, sym__verbatim_begin, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -22896,11 +20520,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [5584] = 2, - ACTIONS(1814), 7, + [5374] = 2, + ACTIONS(1454), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22908,25 +20531,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1816), 30, + ACTIONS(1456), 29, sym__verbatim_begin, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -22936,11 +20559,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [5626] = 2, - ACTIONS(1818), 7, + [5415] = 2, + ACTIONS(1446), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22948,26 +20570,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1820), 30, + ACTIONS(1448), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -22976,11 +20598,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [5668] = 2, - ACTIONS(1822), 7, + [5456] = 2, + ACTIONS(1442), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -22988,26 +20609,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1824), 30, + ACTIONS(1444), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -23016,11 +20637,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [5710] = 2, - ACTIONS(1904), 7, + [5497] = 2, + ACTIONS(1458), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -23028,25 +20648,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1906), 30, + ACTIONS(1460), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -23056,11 +20676,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [5752] = 2, - ACTIONS(1826), 7, + [5538] = 2, + ACTIONS(1358), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -23068,25 +20687,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1828), 30, + ACTIONS(1356), 29, sym__verbatim_begin, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -23096,11 +20715,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [5794] = 2, - ACTIONS(1830), 7, + [5579] = 2, + ACTIONS(1344), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -23108,25 +20726,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1832), 30, + ACTIONS(1346), 29, sym__verbatim_begin, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -23136,11 +20754,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [5836] = 2, - ACTIONS(1834), 7, + [5620] = 2, + ACTIONS(1348), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -23148,25 +20765,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1836), 30, + ACTIONS(1350), 29, sym__verbatim_begin, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -23176,11 +20793,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [5878] = 2, - ACTIONS(1838), 7, + [5661] = 2, + ACTIONS(1352), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -23188,25 +20804,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1840), 30, + ACTIONS(1354), 29, sym__verbatim_begin, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -23216,11 +20832,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [5920] = 2, - ACTIONS(1842), 7, + [5702] = 2, + ACTIONS(1342), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -23228,25 +20843,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1844), 30, + ACTIONS(1340), 29, sym__verbatim_begin, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -23256,11 +20871,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [5962] = 2, - ACTIONS(1846), 7, + [5743] = 2, + ACTIONS(1360), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -23268,25 +20882,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1848), 30, + ACTIONS(1362), 29, sym__verbatim_begin, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -23296,11 +20910,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [6004] = 2, - ACTIONS(1850), 7, + [5784] = 2, + ACTIONS(1364), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -23308,25 +20921,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1852), 30, + ACTIONS(1366), 29, sym__verbatim_begin, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -23336,11 +20949,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [6046] = 2, - ACTIONS(1854), 7, + [5825] = 2, + ACTIONS(1368), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -23348,25 +20960,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1856), 30, + ACTIONS(1370), 29, sym__verbatim_begin, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -23376,11 +20988,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [6088] = 2, - ACTIONS(1858), 7, + [5866] = 2, + ACTIONS(1372), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -23388,25 +20999,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1860), 30, + ACTIONS(1374), 29, sym__verbatim_begin, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -23416,11 +21027,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [6130] = 2, - ACTIONS(1862), 7, + [5907] = 2, + ACTIONS(1376), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -23428,25 +21038,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1864), 30, + ACTIONS(1378), 29, sym__verbatim_begin, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -23456,39 +21066,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [6172] = 4, - ACTIONS(1939), 1, - anon_sym_LBRACE2, - STATE(439), 1, - sym_comment, - ACTIONS(1910), 5, + [5948] = 2, + ACTIONS(1380), 7, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1908), 30, + ACTIONS(1382), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -23498,11 +21105,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [6218] = 2, - ACTIONS(1869), 7, + [5989] = 2, + ACTIONS(1332), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -23510,25 +21116,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1871), 30, + ACTIONS(1334), 29, sym__verbatim_begin, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -23538,11 +21144,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [6260] = 2, - ACTIONS(1873), 7, + [6030] = 2, + ACTIONS(1384), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -23550,25 +21155,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1875), 30, + ACTIONS(1386), 29, sym__verbatim_begin, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -23578,11 +21183,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [6302] = 2, - ACTIONS(1877), 7, + [6071] = 2, + ACTIONS(1388), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -23590,25 +21194,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1879), 30, + ACTIONS(1390), 29, sym__verbatim_begin, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -23618,11 +21222,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [6344] = 2, - ACTIONS(1881), 7, + [6112] = 2, + ACTIONS(1392), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -23630,25 +21233,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1883), 30, + ACTIONS(1394), 29, sym__verbatim_begin, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -23658,11 +21261,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [6386] = 2, - ACTIONS(1885), 7, + [6153] = 2, + ACTIONS(1396), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -23670,25 +21272,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1887), 30, + ACTIONS(1398), 29, sym__verbatim_begin, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -23698,11 +21300,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [6428] = 2, - ACTIONS(1889), 7, + [6194] = 2, + ACTIONS(1400), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -23710,25 +21311,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1891), 30, + ACTIONS(1402), 29, sym__verbatim_begin, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -23738,11 +21339,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [6470] = 2, - ACTIONS(1893), 7, + [6235] = 2, + ACTIONS(1404), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -23750,25 +21350,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1895), 30, + ACTIONS(1406), 29, sym__verbatim_begin, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -23778,38 +21378,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [6512] = 2, - ACTIONS(1818), 7, - anon_sym_LBRACE, + [6276] = 4, + ACTIONS(1462), 1, + anon_sym_LBRACE2, + STATE(242), 1, + sym_comment, + ACTIONS(1429), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1820), 30, + ACTIONS(1427), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -23818,11 +21419,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [6554] = 2, - ACTIONS(1931), 7, + [6321] = 2, + ACTIONS(1423), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -23830,26 +21430,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1933), 30, + ACTIONS(1425), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -23858,40 +21458,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [6596] = 4, - ACTIONS(49), 1, + [6362] = 2, + ACTIONS(1419), 7, anon_sym_LBRACE, - ACTIONS(93), 1, - anon_sym_CARET_RBRACE, - ACTIONS(1683), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1678), 28, + ACTIONS(1421), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -23900,11 +21497,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [6642] = 2, - ACTIONS(1927), 7, + [6403] = 3, + ACTIONS(1465), 1, + sym__verbatim_begin, + ACTIONS(49), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -23912,25 +21510,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1929), 30, - sym__verbatim_begin, + ACTIONS(101), 28, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -23940,11 +21537,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [6684] = 2, - ACTIONS(1923), 7, + [6446] = 2, + ACTIONS(1419), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -23952,25 +21548,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1925), 30, + ACTIONS(1421), 29, sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -23980,11 +21576,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [6726] = 2, - ACTIONS(1808), 7, + [6487] = 2, + ACTIONS(1423), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -23992,25 +21587,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1810), 30, + ACTIONS(1425), 29, sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -24020,37 +21615,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [6768] = 2, - ACTIONS(1915), 7, - anon_sym_LBRACE, + [6528] = 4, + ACTIONS(1468), 1, + anon_sym_LBRACE2, + STATE(326), 1, + sym_comment, + ACTIONS(1429), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1917), 30, + ACTIONS(1427), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -24060,11 +21656,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [6810] = 2, - ACTIONS(1919), 7, + [6573] = 2, + ACTIONS(1442), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -24072,25 +21667,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1921), 30, + ACTIONS(1444), 29, sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -24100,11 +21695,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [6852] = 2, - ACTIONS(1915), 7, + [6614] = 2, + ACTIONS(1446), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -24112,25 +21706,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1917), 30, + ACTIONS(1448), 29, sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -24140,39 +21734,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [6894] = 4, - ACTIONS(1942), 1, - anon_sym_LBRACE2, - STATE(280), 1, - sym_comment, - ACTIONS(1910), 5, + [6655] = 2, + ACTIONS(1358), 7, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1908), 30, + ACTIONS(1356), 29, sym__verbatim_begin, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -24182,11 +21773,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [6940] = 2, - ACTIONS(1904), 7, + [6696] = 2, + ACTIONS(1438), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -24194,25 +21784,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1906), 30, + ACTIONS(1440), 29, sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -24222,11 +21812,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [6982] = 2, - ACTIONS(1900), 7, + [6737] = 2, + ACTIONS(1434), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -24234,25 +21823,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1902), 30, + ACTIONS(1436), 29, sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -24262,13 +21851,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [7024] = 3, - ACTIONS(1945), 1, - sym__verbatim_begin, - ACTIONS(49), 7, + [6778] = 2, + ACTIONS(1412), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -24276,24 +21862,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(93), 29, + ACTIONS(1414), 29, + sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -24303,38 +21890,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [7068] = 3, - ACTIONS(1948), 1, - sym__verbatim_begin, - ACTIONS(49), 8, + [6819] = 2, + ACTIONS(1408), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(93), 28, + ACTIONS(1410), 29, + sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -24344,37 +21929,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [7112] = 2, - ACTIONS(1900), 8, + [6860] = 2, + ACTIONS(1336), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1902), 29, + ACTIONS(1338), 29, sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -24384,37 +21968,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [7154] = 2, - ACTIONS(1904), 8, + [6901] = 2, + ACTIONS(1450), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1906), 29, + ACTIONS(1452), 29, sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -24424,39 +22007,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [7196] = 4, - ACTIONS(1951), 1, - anon_sym_LBRACE2, - STATE(297), 1, - sym_comment, - ACTIONS(1910), 6, + [6942] = 2, + ACTIONS(1454), 7, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, + anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1908), 29, + ACTIONS(1456), 29, sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -24466,39 +22046,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [7242] = 4, - ACTIONS(49), 1, + [6983] = 2, + ACTIONS(1458), 7, anon_sym_LBRACE, - ACTIONS(93), 1, - anon_sym_PLUS_RBRACE, - ACTIONS(1683), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1678), 29, + ACTIONS(1460), 29, sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -24508,11 +22085,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [7288] = 2, - ACTIONS(1893), 7, + [7024] = 2, + ACTIONS(1342), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -24520,25 +22096,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1895), 30, + ACTIONS(1340), 29, sym__verbatim_begin, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -24548,37 +22124,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [7330] = 2, - ACTIONS(1915), 8, + [7065] = 2, + ACTIONS(1344), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1917), 29, + ACTIONS(1346), 29, sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -24588,37 +22163,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [7372] = 2, - ACTIONS(1919), 8, + [7106] = 2, + ACTIONS(1348), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1921), 29, + ACTIONS(1350), 29, sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -24628,40 +22202,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [7414] = 4, - ACTIONS(1956), 1, - anon_sym_SPACE, - STATE(541), 1, - aux_sym_strong_begin_repeat1, - ACTIONS(1958), 7, + [7147] = 2, + ACTIONS(1352), 7, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1954), 28, + ACTIONS(1354), 29, sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -24671,36 +22241,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, + sym__whitespace1, sym__newline, - [7460] = 2, - ACTIONS(1808), 8, + [7188] = 2, + ACTIONS(1358), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1810), 29, + ACTIONS(1356), 29, sym__verbatim_begin, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -24710,37 +22280,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [7502] = 2, - ACTIONS(1923), 8, + [7229] = 2, + ACTIONS(1360), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1925), 29, + ACTIONS(1362), 29, sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -24750,37 +22319,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [7544] = 2, - ACTIONS(1927), 8, + [7270] = 2, + ACTIONS(1364), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1929), 29, + ACTIONS(1366), 29, sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -24790,37 +22358,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [7586] = 2, - ACTIONS(1931), 8, + [7311] = 2, + ACTIONS(1368), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1933), 29, + ACTIONS(1370), 29, sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -24830,37 +22397,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [7628] = 2, - ACTIONS(1935), 8, + [7352] = 2, + ACTIONS(1372), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1937), 29, + ACTIONS(1374), 29, sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -24870,37 +22436,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [7670] = 2, - ACTIONS(1814), 8, + [7393] = 2, + ACTIONS(1376), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1816), 29, + ACTIONS(1378), 29, sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -24910,37 +22475,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [7712] = 2, - ACTIONS(1818), 8, + [7434] = 2, + ACTIONS(1380), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1820), 29, + ACTIONS(1382), 29, sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -24950,11 +22514,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [7754] = 2, - ACTIONS(1889), 7, + [7475] = 2, + ACTIONS(1332), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -24962,25 +22525,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1891), 30, + ACTIONS(1334), 29, sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -24990,11 +22553,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [7796] = 2, - ACTIONS(1885), 7, + [7516] = 2, + ACTIONS(1384), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -25002,25 +22564,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1887), 30, + ACTIONS(1386), 29, sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -25030,11 +22592,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [7838] = 2, - ACTIONS(1881), 7, + [7557] = 2, + ACTIONS(1388), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -25042,25 +22603,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1883), 30, + ACTIONS(1390), 29, sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -25070,37 +22631,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [7880] = 2, - ACTIONS(1822), 8, + [7598] = 2, + ACTIONS(1392), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1824), 29, + ACTIONS(1394), 29, sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -25110,11 +22670,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [7922] = 2, - ACTIONS(1919), 7, + [7639] = 2, + ACTIONS(1396), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -25122,25 +22681,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1921), 30, + ACTIONS(1398), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -25150,37 +22709,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [7964] = 2, - ACTIONS(1826), 8, + [7680] = 2, + ACTIONS(1400), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1828), 29, + ACTIONS(1402), 29, sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -25190,37 +22748,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [8006] = 2, - ACTIONS(1830), 8, + [7721] = 2, + ACTIONS(1404), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1832), 29, + ACTIONS(1406), 29, sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -25230,38 +22787,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [8048] = 2, - ACTIONS(1834), 8, + [7762] = 2, + ACTIONS(1360), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1836), 29, + ACTIONS(1362), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -25270,38 +22826,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [8090] = 2, - ACTIONS(1838), 8, + [7803] = 2, + ACTIONS(1450), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1840), 29, + ACTIONS(1452), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -25310,38 +22865,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [8132] = 2, - ACTIONS(1842), 8, + [7844] = 2, + ACTIONS(1454), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1844), 29, + ACTIONS(1456), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -25350,37 +22904,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [8174] = 2, - ACTIONS(1846), 8, + [7885] = 2, + ACTIONS(1454), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1848), 29, + ACTIONS(1456), 29, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -25390,37 +22943,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [8216] = 2, - ACTIONS(1850), 8, + [7926] = 2, + ACTIONS(1404), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1852), 29, + ACTIONS(1406), 29, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -25430,37 +22982,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [8258] = 2, - ACTIONS(1854), 8, + [7967] = 2, + ACTIONS(1400), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1856), 29, + ACTIONS(1402), 29, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -25470,37 +23021,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [8300] = 2, - ACTIONS(1858), 8, + [8008] = 2, + ACTIONS(1396), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1860), 29, + ACTIONS(1398), 29, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -25510,37 +23060,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [8342] = 2, - ACTIONS(1862), 8, + [8049] = 3, + ACTIONS(1471), 1, + sym__verbatim_begin, + ACTIONS(49), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1864), 29, - sym__verbatim_begin, + ACTIONS(101), 28, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -25550,11 +23100,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [8384] = 2, - ACTIONS(1960), 7, + [8092] = 2, + ACTIONS(1419), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -25562,27 +23111,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1962), 30, + ACTIONS(1421), 29, sym__verbatim_begin, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -25590,37 +23139,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [8426] = 2, - ACTIONS(1869), 8, + [8133] = 2, + ACTIONS(1423), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1871), 29, + ACTIONS(1425), 29, sym__verbatim_begin, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -25630,37 +23178,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [8468] = 2, - ACTIONS(1873), 8, - anon_sym_LBRACE, + [8174] = 4, + ACTIONS(1474), 1, + anon_sym_LBRACE2, + STATE(371), 1, + sym_comment, + ACTIONS(1429), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1875), 29, + ACTIONS(1427), 29, sym__verbatim_begin, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -25670,37 +23219,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [8510] = 2, - ACTIONS(1877), 8, + [8219] = 2, + ACTIONS(1392), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1879), 29, + ACTIONS(1394), 29, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -25710,37 +23258,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [8552] = 2, - ACTIONS(1881), 8, + [8260] = 2, + ACTIONS(1388), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1883), 29, + ACTIONS(1390), 29, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -25750,37 +23297,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [8594] = 2, - ACTIONS(1885), 8, + [8301] = 2, + ACTIONS(1442), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1887), 29, + ACTIONS(1444), 29, sym__verbatim_begin, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -25790,37 +23336,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [8636] = 2, - ACTIONS(1889), 8, + [8342] = 2, + ACTIONS(1446), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1891), 29, + ACTIONS(1448), 29, sym__verbatim_begin, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -25830,37 +23375,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [8678] = 2, - ACTIONS(1893), 8, + [8383] = 2, + ACTIONS(1342), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1895), 29, + ACTIONS(1340), 29, sym__verbatim_begin, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -25870,11 +23414,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [8720] = 2, - ACTIONS(1877), 7, + [8424] = 2, + ACTIONS(1438), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -25882,25 +23425,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1879), 30, + ACTIONS(1440), 29, sym__verbatim_begin, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -25910,11 +23453,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [8762] = 2, - ACTIONS(1873), 7, + [8465] = 2, + ACTIONS(1434), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -25922,25 +23464,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1875), 30, + ACTIONS(1436), 29, sym__verbatim_begin, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -25950,39 +23492,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [8804] = 4, - ACTIONS(49), 1, + [8506] = 2, + ACTIONS(1412), 7, anon_sym_LBRACE, - ACTIONS(93), 1, - anon_sym_TILDE_RBRACE, - ACTIONS(1683), 7, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1678), 28, + ACTIONS(1414), 29, sym__verbatim_begin, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -25992,11 +23531,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [8850] = 2, - ACTIONS(1869), 7, + [8547] = 2, + ACTIONS(1408), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -26004,25 +23542,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1871), 30, + ACTIONS(1410), 29, sym__verbatim_begin, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -26032,11 +23570,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [8892] = 2, - ACTIONS(1964), 7, + [8588] = 2, + ACTIONS(1336), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -26044,27 +23581,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1966), 30, + ACTIONS(1338), 29, sym__verbatim_begin, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -26072,11 +23609,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [8934] = 2, - ACTIONS(1862), 7, + [8629] = 2, + ACTIONS(1450), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -26084,25 +23620,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1864), 30, + ACTIONS(1452), 29, sym__verbatim_begin, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -26112,11 +23648,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [8976] = 2, - ACTIONS(1858), 7, + [8670] = 2, + ACTIONS(1454), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -26124,25 +23659,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1860), 30, + ACTIONS(1456), 29, sym__verbatim_begin, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -26152,11 +23687,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [9018] = 2, - ACTIONS(1854), 7, + [8711] = 2, + ACTIONS(1450), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -26164,25 +23698,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1856), 30, + ACTIONS(1452), 29, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -26192,11 +23726,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [9060] = 2, - ACTIONS(1850), 7, + [8752] = 2, + ACTIONS(1384), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -26204,25 +23737,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1852), 30, + ACTIONS(1386), 29, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -26232,11 +23765,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [9102] = 2, - ACTIONS(1846), 7, + [8793] = 2, + ACTIONS(1332), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -26244,25 +23776,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1848), 30, + ACTIONS(1334), 29, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -26272,11 +23804,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [9144] = 2, - ACTIONS(1842), 7, + [8834] = 2, + ACTIONS(1458), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -26284,25 +23815,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1844), 30, + ACTIONS(1460), 29, sym__verbatim_begin, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -26312,11 +23843,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [9186] = 2, - ACTIONS(1838), 7, + [8875] = 2, + ACTIONS(1358), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -26324,25 +23854,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1840), 30, + ACTIONS(1356), 29, sym__verbatim_begin, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -26352,11 +23882,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [9228] = 2, - ACTIONS(1834), 7, + [8916] = 2, + ACTIONS(1344), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -26364,25 +23893,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1836), 30, + ACTIONS(1346), 29, sym__verbatim_begin, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -26392,38 +23921,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [9270] = 3, - ACTIONS(1968), 1, - sym__verbatim_begin, - ACTIONS(49), 8, + [8957] = 2, + ACTIONS(1348), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(93), 28, + ACTIONS(1350), 29, + sym__verbatim_begin, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -26433,37 +23960,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [9314] = 2, - ACTIONS(1900), 8, + [8998] = 2, + ACTIONS(1352), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1902), 29, + ACTIONS(1354), 29, sym__verbatim_begin, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -26473,37 +23999,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [9356] = 2, - ACTIONS(1904), 8, + [9039] = 2, + ACTIONS(1342), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1906), 29, + ACTIONS(1340), 29, sym__verbatim_begin, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -26513,39 +24038,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [9398] = 4, - ACTIONS(1971), 1, - anon_sym_LBRACE2, - STATE(349), 1, - sym_comment, - ACTIONS(1910), 6, + [9080] = 2, + ACTIONS(1360), 7, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, + anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1908), 29, + ACTIONS(1362), 29, sym__verbatim_begin, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -26555,11 +24077,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [9444] = 2, - ACTIONS(1830), 7, + [9121] = 2, + ACTIONS(1364), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -26567,25 +24088,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1832), 30, + ACTIONS(1366), 29, sym__verbatim_begin, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -26595,11 +24116,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [9486] = 2, - ACTIONS(1826), 7, + [9162] = 2, + ACTIONS(1368), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -26607,25 +24127,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1828), 30, + ACTIONS(1370), 29, sym__verbatim_begin, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -26635,37 +24155,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [9528] = 2, - ACTIONS(1915), 8, + [9203] = 2, + ACTIONS(1372), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1917), 29, + ACTIONS(1374), 29, sym__verbatim_begin, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -26675,37 +24194,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [9570] = 2, - ACTIONS(1919), 8, + [9244] = 2, + ACTIONS(1376), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1921), 29, + ACTIONS(1378), 29, sym__verbatim_begin, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -26715,11 +24233,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [9612] = 2, - ACTIONS(1960), 7, + [9285] = 2, + ACTIONS(1380), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -26727,25 +24244,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1962), 30, + ACTIONS(1382), 29, sym__verbatim_begin, - sym_emphasis_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -26755,38 +24272,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [9654] = 2, - ACTIONS(1808), 8, + [9326] = 2, + ACTIONS(1364), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1810), 29, + ACTIONS(1366), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -26795,37 +24311,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [9696] = 2, - ACTIONS(1923), 8, + [9367] = 2, + ACTIONS(1384), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1925), 29, + ACTIONS(1386), 29, sym__verbatim_begin, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -26835,37 +24350,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [9738] = 2, - ACTIONS(1927), 8, + [9408] = 2, + ACTIONS(1388), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1929), 29, + ACTIONS(1390), 29, sym__verbatim_begin, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -26875,37 +24389,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [9780] = 2, - ACTIONS(1931), 8, + [9449] = 2, + ACTIONS(1392), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1933), 29, + ACTIONS(1394), 29, sym__verbatim_begin, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -26915,37 +24428,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [9822] = 2, - ACTIONS(1935), 8, + [9490] = 2, + ACTIONS(1396), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1937), 29, + ACTIONS(1398), 29, sym__verbatim_begin, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -26955,37 +24467,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [9864] = 2, - ACTIONS(1814), 8, + [9531] = 2, + ACTIONS(1400), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1816), 29, + ACTIONS(1402), 29, sym__verbatim_begin, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -26995,37 +24506,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [9906] = 2, - ACTIONS(1818), 8, + [9572] = 2, + ACTIONS(1404), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1820), 29, + ACTIONS(1406), 29, sym__verbatim_begin, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -27035,11 +24545,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [9948] = 2, - ACTIONS(1964), 7, + [9613] = 2, + ACTIONS(1336), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -27047,25 +24556,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1966), 30, + ACTIONS(1338), 29, sym__verbatim_begin, sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -27075,11 +24584,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [9990] = 2, - ACTIONS(1822), 7, + [9654] = 2, + ACTIONS(1408), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -27087,25 +24595,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1824), 30, + ACTIONS(1410), 29, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -27115,13 +24623,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [10032] = 3, - ACTIONS(1974), 1, - sym__verbatim_begin, - ACTIONS(49), 7, + [9695] = 2, + ACTIONS(1412), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -27129,24 +24634,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(93), 29, + ACTIONS(1414), 29, + sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -27156,37 +24662,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [10076] = 2, - ACTIONS(1822), 8, + [9736] = 2, + ACTIONS(1434), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1824), 29, + ACTIONS(1436), 29, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -27196,38 +24701,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [10118] = 2, - ACTIONS(1960), 9, + [9777] = 2, + ACTIONS(1380), 7, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1962), 28, + ACTIONS(1382), 29, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -27237,36 +24740,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, + sym__whitespace1, sym__newline, - [10160] = 2, - ACTIONS(1826), 8, + [9818] = 2, + ACTIONS(1376), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1828), 29, + ACTIONS(1378), 29, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -27276,37 +24779,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [10202] = 2, - ACTIONS(1830), 8, + [9859] = 2, + ACTIONS(1372), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1832), 29, + ACTIONS(1374), 29, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -27316,37 +24818,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [10244] = 2, - ACTIONS(1834), 8, + [9900] = 3, + ACTIONS(1477), 1, + sym__verbatim_begin, + ACTIONS(49), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1836), 29, - sym__verbatim_begin, + ACTIONS(101), 28, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -27356,37 +24858,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [10286] = 2, - ACTIONS(1838), 8, + [9943] = 2, + ACTIONS(1419), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1840), 29, + ACTIONS(1421), 29, sym__verbatim_begin, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -27396,37 +24897,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [10328] = 2, - ACTIONS(1842), 8, + [9984] = 2, + ACTIONS(1423), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1844), 29, + ACTIONS(1425), 29, sym__verbatim_begin, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -27436,37 +24936,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [10370] = 2, - ACTIONS(1846), 8, - anon_sym_LBRACE, + [10025] = 4, + ACTIONS(1480), 1, + anon_sym_LBRACE2, + STATE(416), 1, + sym_comment, + ACTIONS(1429), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1848), 29, + ACTIONS(1427), 29, sym__verbatim_begin, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -27476,37 +24977,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [10412] = 2, - ACTIONS(1850), 8, + [10070] = 2, + ACTIONS(1368), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1852), 29, + ACTIONS(1370), 29, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -27516,37 +25016,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [10454] = 2, - ACTIONS(1854), 8, + [10111] = 2, + ACTIONS(1364), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1856), 29, + ACTIONS(1366), 29, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -27556,37 +25055,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [10496] = 2, - ACTIONS(1858), 8, + [10152] = 2, + ACTIONS(1442), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1860), 29, + ACTIONS(1444), 29, sym__verbatim_begin, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -27596,37 +25094,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [10538] = 2, - ACTIONS(1862), 8, + [10193] = 2, + ACTIONS(1446), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1864), 29, + ACTIONS(1448), 29, sym__verbatim_begin, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -27636,38 +25133,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [10580] = 2, - ACTIONS(1964), 9, + [10234] = 2, + ACTIONS(1358), 7, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1966), 28, + ACTIONS(1356), 29, sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -27677,36 +25172,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, + sym__whitespace1, sym__newline, - [10622] = 2, - ACTIONS(1869), 8, + [10275] = 2, + ACTIONS(1438), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1871), 29, + ACTIONS(1440), 29, sym__verbatim_begin, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -27716,37 +25211,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [10664] = 2, - ACTIONS(1873), 8, + [10316] = 2, + ACTIONS(1434), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1875), 29, + ACTIONS(1436), 29, sym__verbatim_begin, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -27756,37 +25250,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [10706] = 2, - ACTIONS(1877), 8, + [10357] = 2, + ACTIONS(1412), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1879), 29, + ACTIONS(1414), 29, sym__verbatim_begin, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -27796,37 +25289,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [10748] = 2, - ACTIONS(1881), 8, + [10398] = 2, + ACTIONS(1408), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1883), 29, + ACTIONS(1410), 29, sym__verbatim_begin, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -27836,37 +25328,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [10790] = 2, - ACTIONS(1885), 8, + [10439] = 2, + ACTIONS(1458), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1887), 29, + ACTIONS(1460), 29, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -27876,37 +25367,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [10832] = 2, - ACTIONS(1889), 8, + [10480] = 2, + ACTIONS(1450), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1891), 29, + ACTIONS(1452), 29, sym__verbatim_begin, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -27916,37 +25406,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [10874] = 2, - ACTIONS(1893), 8, + [10521] = 2, + ACTIONS(1454), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1895), 29, + ACTIONS(1456), 29, sym__verbatim_begin, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -27956,11 +25445,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [10916] = 2, - ACTIONS(1814), 7, + [10562] = 2, + ACTIONS(1438), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -27968,25 +25456,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1816), 30, + ACTIONS(1440), 29, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -27996,11 +25484,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [10958] = 2, - ACTIONS(1935), 7, + [10603] = 2, + ACTIONS(1360), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -28008,25 +25495,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1937), 30, + ACTIONS(1362), 29, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -28036,39 +25523,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [11000] = 4, - ACTIONS(49), 1, + [10644] = 2, + ACTIONS(1352), 7, anon_sym_LBRACE, - ACTIONS(93), 1, - anon_sym_RBRACK, - ACTIONS(1683), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1678), 29, + ACTIONS(1354), 29, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -28078,11 +25562,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [11046] = 2, - ACTIONS(1931), 7, + [10685] = 2, + ACTIONS(1458), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -28090,25 +25573,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1933), 30, + ACTIONS(1460), 29, sym__verbatim_begin, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -28118,11 +25601,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [11088] = 2, - ACTIONS(1927), 7, + [10726] = 2, + ACTIONS(1342), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -28130,25 +25612,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1929), 30, + ACTIONS(1340), 29, sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -28158,11 +25640,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [11130] = 2, - ACTIONS(1923), 7, + [10767] = 2, + ACTIONS(1344), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -28170,25 +25651,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1925), 30, + ACTIONS(1346), 29, sym__verbatim_begin, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -28198,11 +25679,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [11172] = 2, - ACTIONS(1808), 7, + [10808] = 2, + ACTIONS(1348), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -28210,25 +25690,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1810), 30, + ACTIONS(1350), 29, sym__verbatim_begin, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -28238,11 +25718,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [11214] = 2, - ACTIONS(1960), 7, + [10849] = 2, + ACTIONS(1352), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -28250,26 +25729,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1962), 30, + ACTIONS(1354), 29, sym__verbatim_begin, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -28278,11 +25757,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [11256] = 2, - ACTIONS(1919), 7, + [10890] = 2, + ACTIONS(1358), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -28290,25 +25768,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1921), 30, + ACTIONS(1356), 29, sym__verbatim_begin, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -28318,11 +25796,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [11298] = 2, - ACTIONS(1915), 7, + [10931] = 2, + ACTIONS(1360), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -28330,25 +25807,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1917), 30, + ACTIONS(1362), 29, sym__verbatim_begin, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -28358,39 +25835,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [11340] = 4, - ACTIONS(1977), 1, - anon_sym_LBRACE2, - STATE(385), 1, - sym_comment, - ACTIONS(1910), 5, + [10972] = 2, + ACTIONS(1364), 7, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1908), 30, + ACTIONS(1366), 29, sym__verbatim_begin, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -28400,11 +25874,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [11386] = 2, - ACTIONS(1904), 7, + [11013] = 2, + ACTIONS(1368), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -28412,25 +25885,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1906), 30, + ACTIONS(1370), 29, sym__verbatim_begin, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -28440,11 +25913,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [11428] = 2, - ACTIONS(1900), 7, + [11054] = 2, + ACTIONS(1372), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -28452,25 +25924,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1902), 30, + ACTIONS(1374), 29, sym__verbatim_begin, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -28480,13 +25952,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [11470] = 3, - ACTIONS(1980), 1, - sym__verbatim_begin, - ACTIONS(49), 7, + [11095] = 2, + ACTIONS(1376), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -28494,25 +25963,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(93), 29, + ACTIONS(1378), 29, + sym__verbatim_begin, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -28521,11 +25991,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [11514] = 2, - ACTIONS(1900), 7, + [11136] = 2, + ACTIONS(1380), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -28533,26 +26002,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1902), 30, + ACTIONS(1382), 29, sym__verbatim_begin, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -28561,11 +26030,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [11556] = 2, - ACTIONS(1904), 7, + [11177] = 2, + ACTIONS(1332), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -28573,26 +26041,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1906), 30, + ACTIONS(1334), 29, sym__verbatim_begin, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -28601,40 +26069,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [11598] = 4, - ACTIONS(1983), 1, - anon_sym_LBRACE2, - STATE(401), 1, - sym_comment, - ACTIONS(1910), 5, + [11218] = 2, + ACTIONS(1384), 7, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1908), 30, + ACTIONS(1386), 29, sym__verbatim_begin, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -28643,11 +26108,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [11644] = 2, - ACTIONS(1964), 7, + [11259] = 2, + ACTIONS(1388), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -28655,26 +26119,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1966), 30, + ACTIONS(1390), 29, sym__verbatim_begin, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -28683,39 +26147,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [11686] = 4, - ACTIONS(49), 1, + [11300] = 2, + ACTIONS(1392), 7, anon_sym_LBRACE, - ACTIONS(93), 1, - anon_sym_EQ_RBRACE, - ACTIONS(1683), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1678), 29, + ACTIONS(1394), 29, sym__verbatim_begin, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -28725,11 +26186,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [11732] = 2, - ACTIONS(1915), 7, + [11341] = 2, + ACTIONS(1396), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -28737,26 +26197,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1917), 30, + ACTIONS(1398), 29, sym__verbatim_begin, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -28765,11 +26225,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [11774] = 2, - ACTIONS(1919), 7, + [11382] = 2, + ACTIONS(1400), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -28777,26 +26236,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1921), 30, + ACTIONS(1402), 29, sym__verbatim_begin, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -28805,37 +26264,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [11816] = 2, - ACTIONS(1960), 8, + [11423] = 2, + ACTIONS(1404), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1962), 29, + ACTIONS(1406), 29, sym__verbatim_begin, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -28845,11 +26303,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [11858] = 2, - ACTIONS(1808), 7, + [11464] = 2, + ACTIONS(1358), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -28857,27 +26314,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1810), 30, + ACTIONS(1356), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -28885,11 +26342,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [11900] = 2, - ACTIONS(1923), 7, + [11505] = 2, + ACTIONS(1446), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -28897,26 +26353,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1925), 30, + ACTIONS(1448), 29, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -28925,11 +26381,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [11942] = 2, - ACTIONS(1927), 7, + [11546] = 2, + ACTIONS(1442), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -28937,26 +26392,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1929), 30, + ACTIONS(1444), 29, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -28965,11 +26420,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [11984] = 2, - ACTIONS(1931), 7, + [11587] = 3, + ACTIONS(1483), 1, + sym__verbatim_begin, + ACTIONS(49), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -28977,24 +26433,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1933), 30, - sym__verbatim_begin, + ACTIONS(101), 28, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_RBRACK, anon_sym_BANG_LBRACK, @@ -29005,11 +26460,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [12026] = 2, - ACTIONS(1935), 7, + [11630] = 2, + ACTIONS(1348), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -29017,26 +26471,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1937), 30, + ACTIONS(1350), 29, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -29045,11 +26499,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [12068] = 2, - ACTIONS(1814), 7, + [11671] = 2, + ACTIONS(1344), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -29057,26 +26510,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1816), 30, + ACTIONS(1346), 29, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -29085,11 +26538,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [12110] = 2, - ACTIONS(1818), 7, + [11712] = 2, + ACTIONS(1458), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -29097,26 +26549,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1820), 30, + ACTIONS(1460), 29, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -29125,37 +26577,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [12152] = 2, - ACTIONS(1964), 8, + [11753] = 3, + ACTIONS(1486), 1, + sym__verbatim_begin, + ACTIONS(49), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1966), 29, - sym__verbatim_begin, + ACTIONS(101), 28, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -29165,37 +26617,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [12194] = 2, - ACTIONS(1960), 8, + [11796] = 2, + ACTIONS(1419), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1962), 29, + ACTIONS(1421), 29, sym__verbatim_begin, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -29205,37 +26656,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [12236] = 2, - ACTIONS(1964), 8, + [11837] = 2, + ACTIONS(1423), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1966), 29, + ACTIONS(1425), 29, sym__verbatim_begin, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -29245,38 +26695,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [12278] = 2, - ACTIONS(1822), 7, - anon_sym_LBRACE, + [11878] = 4, + ACTIONS(1489), 1, + anon_sym_LBRACE2, + STATE(460), 1, + sym_comment, + ACTIONS(1429), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1824), 30, + ACTIONS(1427), 29, sym__verbatim_begin, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -29285,11 +26736,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [12320] = 2, - ACTIONS(1960), 7, + [11923] = 2, + ACTIONS(1368), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -29297,26 +26747,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1962), 30, + ACTIONS(1370), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -29325,11 +26775,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [12362] = 2, - ACTIONS(1826), 7, + [11964] = 2, + ACTIONS(1454), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -29337,26 +26786,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1828), 30, + ACTIONS(1456), 29, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -29365,11 +26814,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [12404] = 2, - ACTIONS(1830), 7, + [12005] = 2, + ACTIONS(1442), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -29377,26 +26825,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1832), 30, + ACTIONS(1444), 29, sym__verbatim_begin, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -29405,11 +26853,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [12446] = 2, - ACTIONS(1834), 7, + [12046] = 2, + ACTIONS(1446), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -29417,26 +26864,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1836), 30, + ACTIONS(1448), 29, sym__verbatim_begin, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -29445,11 +26892,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [12488] = 2, - ACTIONS(1838), 7, + [12087] = 2, + ACTIONS(1342), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -29457,26 +26903,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1840), 30, + ACTIONS(1340), 29, sym__verbatim_begin, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -29485,11 +26931,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [12530] = 2, - ACTIONS(1842), 7, + [12128] = 2, + ACTIONS(1438), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -29497,26 +26942,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1844), 30, + ACTIONS(1440), 29, sym__verbatim_begin, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -29525,11 +26970,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [12572] = 2, - ACTIONS(1846), 7, + [12169] = 2, + ACTIONS(1434), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -29537,26 +26981,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1848), 30, + ACTIONS(1436), 29, sym__verbatim_begin, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -29565,11 +27009,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [12614] = 2, - ACTIONS(1850), 7, + [12210] = 2, + ACTIONS(1412), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -29577,26 +27020,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1852), 30, + ACTIONS(1414), 29, sym__verbatim_begin, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -29605,11 +27048,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [12656] = 2, - ACTIONS(1854), 7, + [12251] = 2, + ACTIONS(1408), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -29617,26 +27059,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1856), 30, + ACTIONS(1410), 29, sym__verbatim_begin, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -29645,11 +27087,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [12698] = 2, - ACTIONS(1858), 7, + [12292] = 2, + ACTIONS(1336), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -29657,26 +27098,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1860), 30, + ACTIONS(1338), 29, sym__verbatim_begin, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -29685,11 +27126,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [12740] = 2, - ACTIONS(1862), 7, + [12333] = 2, + ACTIONS(1450), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -29697,26 +27137,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1864), 30, + ACTIONS(1452), 29, sym__verbatim_begin, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -29725,11 +27165,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [12782] = 2, - ACTIONS(1964), 7, + [12374] = 2, + ACTIONS(1454), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -29737,25 +27176,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1966), 30, + ACTIONS(1456), 29, sym__verbatim_begin, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -29765,11 +27204,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [12824] = 2, - ACTIONS(1869), 7, + [12415] = 2, + ACTIONS(1423), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -29777,26 +27215,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1871), 30, + ACTIONS(1425), 29, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -29805,11 +27243,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [12866] = 2, - ACTIONS(1873), 7, + [12456] = 2, + ACTIONS(1450), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -29817,26 +27254,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1875), 30, + ACTIONS(1452), 29, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -29845,11 +27282,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [12908] = 2, - ACTIONS(1877), 7, + [12497] = 2, + ACTIONS(1336), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -29857,26 +27293,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1879), 30, + ACTIONS(1338), 29, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -29885,11 +27321,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [12950] = 2, - ACTIONS(1881), 7, + [12538] = 2, + ACTIONS(1458), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -29897,26 +27332,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1883), 30, + ACTIONS(1460), 29, sym__verbatim_begin, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -29925,11 +27360,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [12992] = 2, - ACTIONS(1885), 7, + [12579] = 2, + ACTIONS(1358), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -29937,26 +27371,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1887), 30, + ACTIONS(1356), 29, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -29965,11 +27399,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [13034] = 2, - ACTIONS(1889), 7, + [12620] = 2, + ACTIONS(1344), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -29977,26 +27410,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1891), 30, + ACTIONS(1346), 29, sym__verbatim_begin, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -30005,11 +27438,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [13076] = 2, - ACTIONS(1893), 7, + [12661] = 2, + ACTIONS(1348), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -30017,26 +27449,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1895), 30, + ACTIONS(1350), 29, sym__verbatim_begin, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -30045,11 +27477,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [13118] = 2, - ACTIONS(1960), 7, + [12702] = 2, + ACTIONS(1352), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -30057,25 +27488,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1962), 30, + ACTIONS(1354), 29, sym__verbatim_begin, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -30085,11 +27516,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [13160] = 2, - ACTIONS(1893), 7, + [12743] = 2, + ACTIONS(1342), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -30097,25 +27527,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1895), 30, + ACTIONS(1340), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -30125,40 +27555,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [13202] = 4, - ACTIONS(49), 1, + [12784] = 2, + ACTIONS(1360), 7, anon_sym_LBRACE, - ACTIONS(93), 1, - aux_sym_strong_end_token1, - ACTIONS(1683), 8, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1678), 27, + ACTIONS(1362), 29, sym__verbatim_begin, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -30168,10 +27594,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, + sym__whitespace1, sym__newline, - [13248] = 2, - ACTIONS(1964), 7, + [12825] = 2, + ACTIONS(1364), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -30179,25 +27605,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1966), 30, + ACTIONS(1366), 29, sym__verbatim_begin, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -30207,11 +27633,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [13290] = 2, - ACTIONS(1960), 7, + [12866] = 2, + ACTIONS(1368), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -30219,25 +27644,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1962), 30, + ACTIONS(1370), 29, sym__verbatim_begin, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -30247,11 +27672,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [13332] = 2, - ACTIONS(1964), 7, + [12907] = 2, + ACTIONS(1372), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -30259,25 +27683,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1966), 30, + ACTIONS(1374), 29, sym__verbatim_begin, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -30287,39 +27711,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [13374] = 4, - ACTIONS(1986), 1, - aux_sym__text_token1, - STATE(437), 1, - aux_sym__text, - ACTIONS(1730), 6, + [12948] = 2, + ACTIONS(1376), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - ACTIONS(1732), 29, + aux_sym__text_token1, + ACTIONS(1378), 29, sym__verbatim_begin, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -30329,11 +27750,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [13420] = 2, - ACTIONS(1935), 7, + [12989] = 2, + ACTIONS(1380), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -30341,25 +27761,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1937), 30, + ACTIONS(1382), 29, sym__verbatim_begin, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -30369,11 +27789,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [13462] = 2, - ACTIONS(1808), 7, + [13030] = 2, + ACTIONS(1332), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -30381,25 +27800,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1810), 30, + ACTIONS(1334), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -30409,11 +27828,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [13504] = 2, - ACTIONS(1923), 7, + [13071] = 2, + ACTIONS(1384), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -30421,25 +27839,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1925), 30, + ACTIONS(1386), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -30449,11 +27867,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [13546] = 2, - ACTIONS(1889), 7, + [13112] = 2, + ACTIONS(1388), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -30461,25 +27878,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1891), 30, + ACTIONS(1390), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -30489,11 +27906,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [13588] = 2, - ACTIONS(1885), 7, + [13153] = 2, + ACTIONS(1392), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -30501,25 +27917,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1887), 30, + ACTIONS(1394), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -30529,11 +27945,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [13630] = 2, - ACTIONS(1927), 7, + [13194] = 2, + ACTIONS(1396), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -30541,25 +27956,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1929), 30, + ACTIONS(1398), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -30569,39 +27984,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [13672] = 3, - ACTIONS(1989), 1, - sym__verbatim_begin, - ACTIONS(49), 9, + [13235] = 2, + ACTIONS(1400), 7, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(93), 27, + ACTIONS(1402), 29, + sym__verbatim_begin, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -30611,37 +28023,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, + sym__whitespace1, sym__newline, - [13716] = 2, - ACTIONS(1900), 9, + [13276] = 2, + ACTIONS(1404), 7, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1902), 28, + ACTIONS(1406), 29, sym__verbatim_begin, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -30651,37 +28062,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, + sym__whitespace1, sym__newline, - [13758] = 2, - ACTIONS(1904), 9, + [13317] = 2, + ACTIONS(1419), 7, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1906), 28, + ACTIONS(1421), 29, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -30691,39 +28101,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, + sym__whitespace1, sym__newline, - [13800] = 4, - ACTIONS(1992), 1, - anon_sym_LBRACE2, - STATE(453), 1, - sym_comment, - ACTIONS(1910), 7, - anon_sym_STAR, + [13358] = 3, + ACTIONS(1492), 1, + sym__verbatim_begin, + ACTIONS(49), 7, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - sym__whitespace1, + anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1908), 28, - sym__verbatim_begin, + ACTIONS(101), 28, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -30733,10 +28141,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, + sym__whitespace1, sym__newline, - [13846] = 2, - ACTIONS(1881), 7, + [13401] = 2, + ACTIONS(1344), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -30744,26 +28152,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1883), 30, + ACTIONS(1346), 29, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -30772,11 +28180,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [13888] = 2, - ACTIONS(1877), 7, + [13442] = 2, + ACTIONS(1352), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -30784,26 +28191,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1879), 30, + ACTIONS(1354), 29, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -30812,38 +28219,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [13930] = 2, - ACTIONS(1915), 9, + [13483] = 2, + ACTIONS(1408), 7, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1917), 28, + ACTIONS(1410), 29, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -30853,37 +28258,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, + sym__whitespace1, sym__newline, - [13972] = 2, - ACTIONS(1919), 9, + [13524] = 2, + ACTIONS(1412), 7, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1921), 28, + ACTIONS(1414), 29, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -30893,10 +28297,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, + sym__whitespace1, sym__newline, - [14014] = 2, - ACTIONS(1931), 7, + [13565] = 2, + ACTIONS(1434), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -30904,25 +28308,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1933), 30, + ACTIONS(1436), 29, sym__verbatim_begin, ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -30932,38 +28336,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [14056] = 2, - ACTIONS(1808), 9, + [13606] = 3, + ACTIONS(1495), 1, + sym__verbatim_begin, + ACTIONS(49), 7, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1810), 28, - sym__verbatim_begin, + ACTIONS(101), 28, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -30973,37 +28376,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, + sym__whitespace1, sym__newline, - [14098] = 2, - ACTIONS(1923), 9, + [13649] = 2, + ACTIONS(1419), 7, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1925), 28, + ACTIONS(1421), 29, sym__verbatim_begin, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -31013,37 +28415,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, + sym__whitespace1, sym__newline, - [14140] = 2, - ACTIONS(1927), 9, + [13690] = 2, + ACTIONS(1423), 7, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1929), 28, + ACTIONS(1425), 29, sym__verbatim_begin, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -31053,39 +28454,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, + sym__whitespace1, sym__newline, - [14182] = 2, - ACTIONS(1931), 9, - anon_sym_LBRACE, - anon_sym_STAR, + [13731] = 4, + ACTIONS(1498), 1, + anon_sym_LBRACE2, + STATE(503), 1, + sym_comment, + ACTIONS(1429), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1933), 28, + ACTIONS(1427), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -31093,37 +28495,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, + sym__whitespace1, sym__newline, - [14224] = 2, - ACTIONS(1935), 9, + [13776] = 2, + ACTIONS(1438), 7, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1937), 28, + ACTIONS(1440), 29, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -31133,37 +28534,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, + sym__whitespace1, sym__newline, - [14266] = 2, - ACTIONS(1814), 9, + [13817] = 2, + ACTIONS(1442), 7, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1816), 28, + ACTIONS(1444), 29, sym__verbatim_begin, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -31173,37 +28573,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, + sym__whitespace1, sym__newline, - [14308] = 2, - ACTIONS(1818), 9, + [13858] = 2, + ACTIONS(1446), 7, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1820), 28, + ACTIONS(1448), 29, sym__verbatim_begin, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -31213,10 +28612,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, + sym__whitespace1, sym__newline, - [14350] = 2, - ACTIONS(1873), 7, + [13899] = 2, + ACTIONS(1358), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -31224,26 +28623,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1875), 30, + ACTIONS(1356), 29, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -31252,11 +28651,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [14392] = 2, - ACTIONS(1869), 7, + [13940] = 2, + ACTIONS(1438), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -31264,25 +28662,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1871), 30, + ACTIONS(1440), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -31292,11 +28690,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [14434] = 2, - ACTIONS(1935), 7, + [13981] = 2, + ACTIONS(1434), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -31304,25 +28701,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1937), 30, + ACTIONS(1436), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -31332,38 +28729,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [14476] = 2, - ACTIONS(1822), 9, + [14022] = 2, + ACTIONS(1412), 7, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1824), 28, + ACTIONS(1414), 29, sym__verbatim_begin, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -31373,10 +28768,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, + sym__whitespace1, sym__newline, - [14518] = 2, - ACTIONS(1814), 7, + [14063] = 2, + ACTIONS(1408), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -31384,25 +28779,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1816), 30, + ACTIONS(1410), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -31412,38 +28807,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [14560] = 2, - ACTIONS(1826), 9, + [14104] = 2, + ACTIONS(1336), 7, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1828), 28, + ACTIONS(1338), 29, sym__verbatim_begin, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, + anon_sym_STAR, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -31453,37 +28846,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, + sym__whitespace1, sym__newline, - [14602] = 2, - ACTIONS(1830), 9, + [14145] = 2, + ACTIONS(1450), 7, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1832), 28, + ACTIONS(1452), 29, sym__verbatim_begin, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -31493,37 +28885,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, + sym__whitespace1, sym__newline, - [14644] = 2, - ACTIONS(1834), 9, + [14186] = 2, + ACTIONS(1454), 7, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1836), 28, + ACTIONS(1456), 29, sym__verbatim_begin, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -31533,38 +28924,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, + sym__whitespace1, sym__newline, - [14686] = 2, - ACTIONS(1838), 9, + [14227] = 2, + ACTIONS(1458), 7, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1840), 28, + ACTIONS(1460), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -31573,37 +28963,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, + sym__whitespace1, sym__newline, - [14728] = 2, - ACTIONS(1842), 9, + [14268] = 2, + ACTIONS(1446), 7, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1844), 28, + ACTIONS(1448), 29, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -31613,37 +29002,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, + sym__whitespace1, sym__newline, - [14770] = 2, - ACTIONS(1846), 9, + [14309] = 2, + ACTIONS(1442), 7, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1848), 28, + ACTIONS(1444), 29, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -31653,37 +29041,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, + sym__whitespace1, sym__newline, - [14812] = 2, - ACTIONS(1850), 9, + [14350] = 2, + ACTIONS(1458), 7, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1852), 28, + ACTIONS(1460), 29, sym__verbatim_begin, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -31693,38 +29080,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, + sym__whitespace1, sym__newline, - [14854] = 2, - ACTIONS(1854), 9, + [14391] = 2, + ACTIONS(1342), 7, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1856), 28, + ACTIONS(1340), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -31733,37 +29119,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, + sym__whitespace1, sym__newline, - [14896] = 2, - ACTIONS(1858), 9, + [14432] = 2, + ACTIONS(1344), 7, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1860), 28, + ACTIONS(1346), 29, sym__verbatim_begin, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -31773,37 +29158,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, + sym__whitespace1, sym__newline, - [14938] = 2, - ACTIONS(1862), 9, + [14473] = 2, + ACTIONS(1348), 7, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1864), 28, + ACTIONS(1350), 29, sym__verbatim_begin, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -31813,40 +29197,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, - sym__newline, - [14980] = 3, - ACTIONS(1995), 1, - aux_sym_autolink_token1, - ACTIONS(93), 3, - sym__verbatim_begin, sym__whitespace1, sym__newline, - ACTIONS(49), 33, + [14514] = 2, + ACTIONS(1352), 7, anon_sym_LBRACE, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE2, + aux_sym__text_token1, + ACTIONS(1354), 29, + sym__verbatim_begin, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, - anon_sym_BSLASH, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, - sym_en_dash, - sym_backslash_escape, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LBRACK, - anon_sym_LBRACE2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -31854,37 +29236,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, - aux_sym__text_token1, - [15024] = 2, - ACTIONS(1869), 9, - anon_sym_LBRACE, - anon_sym_STAR, + sym__whitespace1, + sym__newline, + [14555] = 4, + ACTIONS(1501), 1, + anon_sym_LBRACE2, + STATE(456), 1, + sym_comment, + ACTIONS(1429), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1871), 28, + ACTIONS(1427), 29, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -31894,37 +29277,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, + sym__whitespace1, sym__newline, - [15066] = 2, - ACTIONS(1873), 9, + [14600] = 2, + ACTIONS(1360), 7, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1875), 28, + ACTIONS(1362), 29, sym__verbatim_begin, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -31934,37 +29316,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, + sym__whitespace1, sym__newline, - [15108] = 2, - ACTIONS(1877), 9, + [14641] = 2, + ACTIONS(1364), 7, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1879), 28, + ACTIONS(1366), 29, sym__verbatim_begin, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, + anon_sym_STAR, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -31974,37 +29355,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, + sym__whitespace1, sym__newline, - [15150] = 2, - ACTIONS(1881), 9, + [14682] = 2, + ACTIONS(1368), 7, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1883), 28, + ACTIONS(1370), 29, sym__verbatim_begin, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -32014,37 +29394,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, + sym__whitespace1, sym__newline, - [15192] = 2, - ACTIONS(1885), 9, + [14723] = 2, + ACTIONS(1372), 7, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1887), 28, + ACTIONS(1374), 29, sym__verbatim_begin, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -32054,37 +29433,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, + sym__whitespace1, sym__newline, - [15234] = 2, - ACTIONS(1889), 9, + [14764] = 2, + ACTIONS(1376), 7, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1891), 28, + ACTIONS(1378), 29, sym__verbatim_begin, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -32094,37 +29472,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, + sym__whitespace1, sym__newline, - [15276] = 2, - ACTIONS(1893), 9, + [14805] = 2, + ACTIONS(1380), 7, anon_sym_LBRACE, - anon_sym_STAR, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1895), 28, + ACTIONS(1382), 29, sym__verbatim_begin, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -32134,38 +29511,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, + sym__whitespace1, sym__newline, - [15318] = 4, - ACTIONS(1806), 1, + [14846] = 2, + ACTIONS(1332), 7, anon_sym_LBRACE, - STATE(630), 1, - sym_inline_attribute, - ACTIONS(1692), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1690), 29, + ACTIONS(1334), 29, sym__verbatim_begin, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -32175,11 +29550,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [15364] = 2, - ACTIONS(1818), 7, + [14887] = 2, + ACTIONS(1384), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -32187,25 +29561,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1820), 30, + ACTIONS(1386), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -32215,39 +29589,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [15406] = 4, - ACTIONS(49), 1, + [14928] = 2, + ACTIONS(1388), 7, anon_sym_LBRACE, - ACTIONS(93), 1, - sym_emphasis_end, - ACTIONS(1683), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1678), 29, + ACTIONS(1390), 29, sym__verbatim_begin, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -32257,11 +29628,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [15452] = 2, - ACTIONS(1862), 7, + [14969] = 2, + ACTIONS(1392), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -32269,25 +29639,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1864), 30, + ACTIONS(1394), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -32297,11 +29667,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [15494] = 2, - ACTIONS(1858), 7, + [15010] = 2, + ACTIONS(1396), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -32309,25 +29678,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1860), 30, + ACTIONS(1398), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -32337,11 +29706,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [15536] = 2, - ACTIONS(1854), 7, + [15051] = 2, + ACTIONS(1400), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -32349,25 +29717,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1856), 30, + ACTIONS(1402), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -32377,13 +29745,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [15578] = 3, - ACTIONS(1997), 1, - sym__verbatim_begin, - ACTIONS(49), 7, + [15092] = 2, + ACTIONS(1404), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -32391,24 +29756,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(93), 29, - sym_emphasis_end, + ACTIONS(1406), 29, + sym__verbatim_begin, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -32418,11 +29784,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [15622] = 2, - ACTIONS(1900), 7, + [15133] = 2, + ACTIONS(1404), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -32430,26 +29795,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1902), 30, + ACTIONS(1406), 29, sym__verbatim_begin, - sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -32458,11 +29823,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [15664] = 2, - ACTIONS(1904), 7, + [15174] = 2, + ACTIONS(1400), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -32470,26 +29834,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1906), 30, + ACTIONS(1402), 29, sym__verbatim_begin, - sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -32498,11 +29862,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [15706] = 2, - ACTIONS(1915), 7, + [15215] = 2, + ACTIONS(1396), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -32510,26 +29873,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1917), 30, + ACTIONS(1398), 29, sym__verbatim_begin, - sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -32538,11 +29901,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [15748] = 2, - ACTIONS(1919), 7, + [15256] = 2, + ACTIONS(1392), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -32550,26 +29912,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1921), 30, + ACTIONS(1394), 29, sym__verbatim_begin, - sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, - anon_sym_LBRACK_CARET, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -32578,11 +29940,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [15790] = 2, - ACTIONS(1923), 7, + [15297] = 2, + ACTIONS(1423), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -32590,25 +29951,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1925), 30, + ACTIONS(1425), 29, sym__verbatim_begin, - sym_emphasis_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -32618,11 +29979,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [15832] = 2, - ACTIONS(1927), 7, + [15338] = 2, + ACTIONS(1419), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -32630,25 +29990,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1929), 30, + ACTIONS(1421), 29, sym__verbatim_begin, - sym_emphasis_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -32658,11 +30018,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [15874] = 2, - ACTIONS(1931), 7, + [15379] = 3, + ACTIONS(1504), 1, + sym__verbatim_begin, + ACTIONS(49), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -32670,25 +30031,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1933), 30, - sym__verbatim_begin, - sym_emphasis_end, + ACTIONS(101), 28, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -32698,11 +30058,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [15916] = 2, - ACTIONS(1935), 7, + [15422] = 3, + ACTIONS(1507), 1, + sym__verbatim_begin, + ACTIONS(49), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -32710,27 +30071,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1937), 30, - sym__verbatim_begin, - sym_emphasis_end, + ACTIONS(101), 28, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -32738,11 +30098,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [15958] = 2, - ACTIONS(1814), 7, + [15465] = 2, + ACTIONS(1419), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -32750,27 +30109,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1816), 30, + ACTIONS(1421), 29, sym__verbatim_begin, - sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -32778,11 +30137,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [16000] = 2, - ACTIONS(1818), 7, + [15506] = 2, + ACTIONS(1423), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -32790,27 +30148,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1820), 30, + ACTIONS(1425), 29, sym__verbatim_begin, - sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -32818,11 +30176,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [16042] = 2, - ACTIONS(1850), 7, + [15547] = 2, + ACTIONS(1388), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -32830,26 +30187,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1852), 30, + ACTIONS(1390), 29, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -32858,11 +30215,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [16084] = 2, - ACTIONS(1822), 7, + [15588] = 2, + ACTIONS(1442), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -32870,27 +30226,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1824), 30, + ACTIONS(1444), 29, sym__verbatim_begin, - sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -32898,11 +30254,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [16126] = 2, - ACTIONS(1964), 7, + [15629] = 2, + ACTIONS(1446), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -32910,27 +30265,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1966), 30, + ACTIONS(1448), 29, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -32938,11 +30293,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [16168] = 2, - ACTIONS(1826), 7, + [15670] = 2, + ACTIONS(1384), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -32950,26 +30304,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1828), 30, + ACTIONS(1386), 29, sym__verbatim_begin, - sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -32978,11 +30332,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [16210] = 2, - ACTIONS(1830), 7, + [15711] = 2, + ACTIONS(1438), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -32990,27 +30343,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1832), 30, + ACTIONS(1440), 29, sym__verbatim_begin, - sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -33018,11 +30371,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [16252] = 2, - ACTIONS(1834), 7, + [15752] = 2, + ACTIONS(1434), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -33030,27 +30382,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1836), 30, + ACTIONS(1436), 29, sym__verbatim_begin, - sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -33058,11 +30410,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [16294] = 2, - ACTIONS(1838), 7, + [15793] = 2, + ACTIONS(1412), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -33070,27 +30421,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1840), 30, + ACTIONS(1414), 29, sym__verbatim_begin, - sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -33098,11 +30449,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [16336] = 2, - ACTIONS(1842), 7, + [15834] = 2, + ACTIONS(1408), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -33110,27 +30460,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1844), 30, + ACTIONS(1410), 29, sym__verbatim_begin, - sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -33138,11 +30488,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [16378] = 2, - ACTIONS(1846), 7, + [15875] = 2, + ACTIONS(1336), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -33150,27 +30499,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1848), 30, + ACTIONS(1338), 29, sym__verbatim_begin, - sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -33178,11 +30527,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [16420] = 2, - ACTIONS(1850), 7, + [15916] = 2, + ACTIONS(1450), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -33190,27 +30538,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1852), 30, + ACTIONS(1452), 29, sym__verbatim_begin, - sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -33218,11 +30566,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [16462] = 2, - ACTIONS(1854), 7, + [15957] = 2, + ACTIONS(1454), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -33230,27 +30577,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1856), 30, + ACTIONS(1456), 29, sym__verbatim_begin, - sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -33258,11 +30605,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [16504] = 2, - ACTIONS(1858), 7, + [15998] = 2, + ACTIONS(1332), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -33270,26 +30616,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1860), 30, + ACTIONS(1334), 29, sym__verbatim_begin, - sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -33298,11 +30644,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [16546] = 2, - ACTIONS(1862), 7, + [16039] = 2, + ACTIONS(1380), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -33310,26 +30655,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1864), 30, + ACTIONS(1382), 29, sym__verbatim_begin, - sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -33338,11 +30683,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [16588] = 2, - ACTIONS(1960), 7, + [16080] = 2, + ACTIONS(1458), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -33350,27 +30694,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1962), 30, + ACTIONS(1460), 29, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -33378,37 +30722,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [16630] = 2, - ACTIONS(1869), 7, + [16121] = 4, + ACTIONS(1510), 1, + aux_sym__text_token1, + STATE(513), 1, + aux_sym__text, + ACTIONS(1240), 6, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(1871), 30, + ACTIONS(1242), 28, sym__verbatim_begin, - sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -33418,11 +30763,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [16672] = 2, - ACTIONS(1873), 7, + [16166] = 2, + ACTIONS(1344), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -33430,27 +30774,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1875), 30, + ACTIONS(1346), 29, sym__verbatim_begin, - sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -33458,11 +30802,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [16714] = 2, - ACTIONS(1877), 7, + [16207] = 2, + ACTIONS(1348), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -33470,27 +30813,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1879), 30, + ACTIONS(1350), 29, sym__verbatim_begin, - sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -33498,11 +30841,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [16756] = 2, - ACTIONS(1881), 7, + [16248] = 2, + ACTIONS(1352), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -33510,27 +30852,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1883), 30, + ACTIONS(1354), 29, sym__verbatim_begin, - sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -33538,11 +30880,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [16798] = 2, - ACTIONS(1885), 7, + [16289] = 2, + ACTIONS(1376), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -33550,26 +30891,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1887), 30, + ACTIONS(1378), 29, sym__verbatim_begin, - sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -33578,11 +30919,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [16840] = 2, - ACTIONS(1889), 7, + [16330] = 2, + ACTIONS(1360), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -33590,27 +30930,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1891), 30, + ACTIONS(1362), 29, sym__verbatim_begin, - sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -33618,11 +30958,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [16882] = 2, - ACTIONS(1893), 7, + [16371] = 2, + ACTIONS(1364), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -33630,27 +30969,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1895), 30, + ACTIONS(1366), 29, sym__verbatim_begin, - sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -33658,11 +30997,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [16924] = 2, - ACTIONS(1846), 7, + [16412] = 2, + ACTIONS(1368), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -33670,27 +31008,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1848), 30, + ACTIONS(1370), 29, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -33698,11 +31036,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [16966] = 2, - ACTIONS(1842), 7, + [16453] = 2, + ACTIONS(1372), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -33710,27 +31047,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1844), 30, + ACTIONS(1374), 29, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -33738,41 +31075,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [17008] = 4, - ACTIONS(49), 1, + [16494] = 2, + ACTIONS(1376), 7, anon_sym_LBRACE, - ACTIONS(93), 1, - anon_sym_RBRACK2, - ACTIONS(1683), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1678), 29, + ACTIONS(1378), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -33780,11 +31114,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [17054] = 2, - ACTIONS(1838), 7, + [16535] = 2, + ACTIONS(1380), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -33792,27 +31125,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1840), 30, + ACTIONS(1382), 29, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -33820,11 +31153,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [17096] = 2, - ACTIONS(1834), 7, + [16576] = 2, + ACTIONS(1332), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -33832,27 +31164,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1836), 30, + ACTIONS(1334), 29, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -33860,11 +31192,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [17138] = 2, - ACTIONS(1830), 7, + [16617] = 2, + ACTIONS(1384), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -33872,27 +31203,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1832), 30, + ACTIONS(1386), 29, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -33900,11 +31231,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [17180] = 2, - ACTIONS(1826), 7, + [16658] = 2, + ACTIONS(1388), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -33912,27 +31242,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1828), 30, + ACTIONS(1390), 29, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -33940,13 +31270,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [17222] = 3, - ACTIONS(2000), 1, - sym__verbatim_begin, - ACTIONS(49), 7, + [16699] = 2, + ACTIONS(1392), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -33954,23 +31281,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(93), 29, + ACTIONS(1394), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_RBRACK2, @@ -33981,11 +31309,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [17266] = 2, - ACTIONS(1900), 7, + [16740] = 2, + ACTIONS(1396), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -33993,24 +31320,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1902), 30, + ACTIONS(1398), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_RBRACK2, @@ -34021,11 +31348,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [17308] = 2, - ACTIONS(1904), 7, + [16781] = 2, + ACTIONS(1400), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -34033,24 +31359,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1906), 30, + ACTIONS(1402), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_RBRACK2, @@ -34061,38 +31387,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [17350] = 4, - ACTIONS(2003), 1, - anon_sym_LBRACE2, - STATE(534), 1, - sym_comment, - ACTIONS(1910), 5, + [16822] = 2, + ACTIONS(1404), 7, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1908), 30, + ACTIONS(1406), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_RBRACK2, @@ -34103,11 +31426,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [17396] = 2, - ACTIONS(1915), 7, + [16863] = 3, + ACTIONS(1513), 1, + sym__non_whitespace_check, + ACTIONS(49), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -34115,27 +31439,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1917), 30, + ACTIONS(101), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -34143,11 +31466,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [17438] = 2, - ACTIONS(1919), 7, + [16906] = 3, + ACTIONS(1515), 1, + sym__non_whitespace_check, + ACTIONS(49), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -34155,27 +31479,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1921), 30, + ACTIONS(101), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -34183,39 +31506,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [17480] = 2, - ACTIONS(1808), 7, + [16949] = 4, + ACTIONS(1238), 1, anon_sym_LBRACE, + STATE(607), 1, + sym_inline_attribute, + ACTIONS(1188), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1810), 30, + ACTIONS(1186), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -34223,39 +31547,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [17522] = 2, - ACTIONS(1923), 7, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(1925), 30, + [16994] = 3, + ACTIONS(1517), 1, + aux_sym_autolink_token1, + ACTIONS(101), 3, sym__verbatim_begin, + sym__whitespace1, + sym__newline, + ACTIONS(49), 32, + anon_sym_LBRACE, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, + sym_en_dash, + sym_backslash_escape, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, + anon_sym_LBRACK, + anon_sym_LBRACE2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -34263,11 +31588,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, - sym__whitespace1, - sym__newline, - [17564] = 2, - ACTIONS(1927), 7, + aux_sym__text_token1, + [17037] = 2, + ACTIONS(1348), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -34275,27 +31598,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1929), 30, + ACTIONS(1350), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -34303,11 +31626,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [17606] = 2, - ACTIONS(1931), 7, + [17078] = 2, + ACTIONS(1372), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -34315,27 +31637,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1933), 30, + ACTIONS(1374), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -34343,11 +31665,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [17648] = 2, - ACTIONS(1935), 7, + [17119] = 2, + ACTIONS(1376), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -34355,27 +31676,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1937), 30, + ACTIONS(1378), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -34383,11 +31703,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [17690] = 2, - ACTIONS(1814), 7, + [17159] = 2, + ACTIONS(1404), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -34395,27 +31714,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1816), 30, + ACTIONS(1406), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -34423,11 +31741,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [17732] = 2, - ACTIONS(1818), 7, + [17199] = 2, + ACTIONS(1419), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -34435,27 +31752,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1820), 30, + ACTIONS(1421), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -34463,40 +31779,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [17774] = 4, - ACTIONS(2008), 1, - anon_sym_SPACE, - STATE(541), 1, - aux_sym_strong_begin_repeat1, - ACTIONS(2011), 7, + [17239] = 2, + ACTIONS(1423), 7, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(2006), 28, + ACTIONS(1425), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -34506,36 +31817,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, + sym__whitespace1, sym__newline, - [17820] = 2, - ACTIONS(1822), 7, - anon_sym_LBRACE, + [17279] = 2, + ACTIONS(1358), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1824), 30, + ACTIONS(1356), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -34545,11 +31855,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [17862] = 2, - ACTIONS(1822), 7, + [17319] = 2, + ACTIONS(1442), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -34557,27 +31866,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1824), 30, + ACTIONS(1444), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -34585,11 +31893,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [17904] = 2, - ACTIONS(1826), 7, + [17359] = 2, + ACTIONS(1446), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -34597,27 +31904,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1828), 30, + ACTIONS(1448), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -34625,11 +31931,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [17946] = 2, - ACTIONS(1830), 7, + [17399] = 2, + ACTIONS(1438), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -34637,27 +31942,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1832), 30, + ACTIONS(1440), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -34665,11 +31969,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [17988] = 2, - ACTIONS(1834), 7, + [17439] = 2, + ACTIONS(1434), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -34677,27 +31980,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1836), 30, + ACTIONS(1436), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -34705,11 +32007,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [18030] = 2, - ACTIONS(1838), 7, + [17479] = 2, + ACTIONS(1412), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -34717,27 +32018,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1840), 30, + ACTIONS(1414), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -34745,11 +32045,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [18072] = 2, - ACTIONS(1842), 7, + [17519] = 2, + ACTIONS(1408), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -34757,27 +32056,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1844), 30, + ACTIONS(1410), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -34785,11 +32083,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [18114] = 2, - ACTIONS(1846), 7, + [17559] = 2, + ACTIONS(1336), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -34797,27 +32094,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1848), 30, + ACTIONS(1338), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -34825,39 +32121,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [18156] = 2, - ACTIONS(1850), 7, - anon_sym_LBRACE, + [17599] = 4, + ACTIONS(1519), 1, + anon_sym_LBRACE2, + STATE(246), 1, + sym_comment, + ACTIONS(1429), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1852), 30, + ACTIONS(1427), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -34865,11 +32161,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [18198] = 2, - ACTIONS(1854), 7, + [17643] = 2, + ACTIONS(1450), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -34877,27 +32172,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1856), 30, + ACTIONS(1452), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -34905,11 +32199,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [18240] = 2, - ACTIONS(1858), 7, + [17683] = 2, + ACTIONS(1454), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -34917,27 +32210,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1860), 30, + ACTIONS(1456), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -34945,39 +32237,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [18282] = 2, - ACTIONS(1862), 7, - anon_sym_LBRACE, + [17723] = 2, + ACTIONS(1358), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1864), 30, + ACTIONS(1356), 29, sym__verbatim_begin, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -34985,39 +32275,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [18324] = 2, - ACTIONS(1869), 7, - anon_sym_LBRACE, + [17763] = 2, + ACTIONS(1342), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1871), 30, + ACTIONS(1340), 29, sym__verbatim_begin, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -35025,11 +32313,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [18366] = 2, - ACTIONS(1873), 7, + [17803] = 2, + ACTIONS(1458), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -35037,27 +32324,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1875), 30, + ACTIONS(1460), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -35065,36 +32351,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [18408] = 2, - ACTIONS(1877), 7, - anon_sym_LBRACE, + [17843] = 2, + ACTIONS(1342), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1879), 30, + ACTIONS(1340), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_RBRACK2, @@ -35105,11 +32389,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [18450] = 2, - ACTIONS(1881), 7, + [17883] = 2, + ACTIONS(1344), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -35117,27 +32400,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1883), 30, + ACTIONS(1346), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -35145,11 +32427,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [18492] = 2, - ACTIONS(1885), 7, + [17923] = 2, + ACTIONS(1348), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -35157,27 +32438,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1887), 30, + ACTIONS(1350), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -35185,11 +32465,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [18534] = 2, - ACTIONS(1889), 7, + [17963] = 2, + ACTIONS(1352), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -35197,27 +32476,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1891), 30, + ACTIONS(1354), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -35225,36 +32503,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [18576] = 2, - ACTIONS(1893), 7, - anon_sym_LBRACE, + [18003] = 2, + ACTIONS(1358), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1895), 30, + ACTIONS(1356), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_RBRACK2, @@ -35265,11 +32541,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [18618] = 2, - ACTIONS(1818), 7, + [18043] = 2, + ACTIONS(1360), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -35277,24 +32552,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1820), 29, + ACTIONS(1362), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -35304,36 +32579,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [18659] = 2, - ACTIONS(1960), 7, + [18083] = 2, + ACTIONS(1364), 7, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1962), 29, + ACTIONS(1366), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -35343,36 +32617,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [18700] = 2, - ACTIONS(1964), 6, + [18123] = 2, + ACTIONS(1368), 7, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1966), 30, + ACTIONS(1370), 28, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -35382,38 +32655,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [18741] = 4, - ACTIONS(2013), 1, - anon_sym_LBRACE2, - STATE(606), 1, - sym_comment, - ACTIONS(1910), 5, + [18163] = 2, + ACTIONS(1372), 7, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1908), 29, + ACTIONS(1374), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -35423,38 +32693,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [18786] = 2, - ACTIONS(1960), 7, - anon_sym_LBRACE, + [18203] = 2, + ACTIONS(1524), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1962), 29, + ACTIONS(1522), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -35462,36 +32731,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [18827] = 2, - ACTIONS(1960), 6, + [18243] = 2, + ACTIONS(1380), 7, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1962), 30, + ACTIONS(1382), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -35501,36 +32769,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [18868] = 2, - ACTIONS(1964), 6, + [18283] = 2, + ACTIONS(1332), 7, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1966), 30, + ACTIONS(1334), 28, sym__verbatim_begin, - sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -35540,11 +32807,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [18909] = 2, - ACTIONS(1964), 7, + [18323] = 2, + ACTIONS(1384), 7, anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, @@ -35552,24 +32818,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1966), 29, + ACTIONS(1386), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -35579,36 +32845,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [18950] = 2, - ACTIONS(2018), 6, + [18363] = 2, + ACTIONS(1388), 7, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(2016), 30, + ACTIONS(1390), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -35618,36 +32883,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [18991] = 2, - ACTIONS(1960), 6, + [18403] = 2, + ACTIONS(1392), 7, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1962), 30, + ACTIONS(1394), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -35657,36 +32921,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [19032] = 2, - ACTIONS(1964), 6, + [18443] = 2, + ACTIONS(1396), 7, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1966), 30, + ACTIONS(1398), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -35696,36 +32959,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [19073] = 2, - ACTIONS(1960), 6, + [18483] = 2, + ACTIONS(1400), 7, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1962), 30, + ACTIONS(1402), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - anon_sym_DASH_RBRACE, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -35735,36 +32997,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [19114] = 2, - ACTIONS(2018), 6, + [18523] = 3, + ACTIONS(1526), 1, + sym_strong_end, + ACTIONS(1429), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(2016), 30, + ACTIONS(1427), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -35774,36 +33036,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [19155] = 2, - ACTIONS(2018), 7, + [18565] = 2, + ACTIONS(1358), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(2016), 29, + ACTIONS(1356), 29, sym__verbatim_begin, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -35813,36 +33074,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [19196] = 2, - ACTIONS(1960), 7, + [18605] = 2, + ACTIONS(1342), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1962), 29, + ACTIONS(1340), 29, sym__verbatim_begin, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -35852,36 +33112,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [19237] = 2, - ACTIONS(1964), 7, + [18645] = 2, + ACTIONS(1524), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_TILDE, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1966), 29, + ACTIONS(1522), 29, sym__verbatim_begin, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE_RBRACE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -35891,36 +33150,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [19278] = 2, - ACTIONS(2018), 6, + [18685] = 2, + ACTIONS(1358), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(2016), 30, + ACTIONS(1356), 29, sym__verbatim_begin, - sym_emphasis_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -35930,36 +33188,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [19319] = 2, - ACTIONS(1960), 6, + [18725] = 2, + ACTIONS(1524), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1962), 30, + ACTIONS(1522), 29, sym__verbatim_begin, sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -35969,37 +33226,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [19360] = 2, - ACTIONS(2018), 7, + [18765] = 2, + ACTIONS(1342), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(2016), 29, + ACTIONS(1340), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -36008,38 +33264,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [19401] = 2, - ACTIONS(2018), 6, + [18805] = 2, + ACTIONS(1342), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(2016), 30, + ACTIONS(1340), 29, sym__verbatim_begin, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -36047,36 +33302,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [19442] = 2, - ACTIONS(2018), 6, + [18845] = 2, + ACTIONS(1524), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(2016), 30, + ACTIONS(1522), 29, sym__verbatim_begin, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -36086,37 +33340,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [19483] = 3, - ACTIONS(2020), 1, - sym_emphasis_end, - ACTIONS(1910), 6, + [18885] = 2, + ACTIONS(1524), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1908), 29, + ACTIONS(1522), 29, sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -36126,36 +33378,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [19526] = 2, - ACTIONS(1964), 7, + [18925] = 2, + ACTIONS(1342), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_CARET, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1966), 29, + ACTIONS(1340), 29, sym__verbatim_begin, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET_RBRACE, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -36165,36 +33416,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [19567] = 2, - ACTIONS(1964), 6, + [18965] = 2, + ACTIONS(1524), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1966), 30, + ACTIONS(1522), 29, sym__verbatim_begin, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_PLUS_RBRACE, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -36204,37 +33454,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [19608] = 2, - ACTIONS(2018), 6, + [19005] = 2, + ACTIONS(1358), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(2016), 30, + ACTIONS(1356), 29, sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -36243,38 +33492,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [19649] = 4, - ACTIONS(2022), 1, - anon_sym_LBRACE2, - STATE(216), 1, - sym_comment, - ACTIONS(1910), 5, + [19045] = 2, + ACTIONS(1342), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1908), 29, + ACTIONS(1340), 29, sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -36284,36 +33530,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [19694] = 2, - ACTIONS(1960), 6, + [19085] = 2, + ACTIONS(1524), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1962), 30, + ACTIONS(1522), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -36323,37 +33568,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [19735] = 3, - ACTIONS(49), 1, - anon_sym_LBRACE, - ACTIONS(1683), 6, + [19125] = 2, + ACTIONS(1358), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1678), 29, + ACTIONS(1356), 29, sym__verbatim_begin, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -36363,37 +33606,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [19778] = 2, - ACTIONS(1964), 6, + [19165] = 2, + ACTIONS(1342), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1966), 30, + ACTIONS(1340), 29, sym__verbatim_begin, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -36402,37 +33644,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [19819] = 2, - ACTIONS(1960), 6, - anon_sym_BSLASH, + [19205] = 4, + ACTIONS(1528), 1, + anon_sym_LBRACE2, + STATE(378), 1, + sym_comment, + ACTIONS(1429), 5, + anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1962), 30, + ACTIONS(1427), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -36441,37 +33684,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [19860] = 2, - ACTIONS(1960), 8, - anon_sym_STAR, + [19249] = 2, + ACTIONS(1358), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1962), 28, + ACTIONS(1356), 29, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -36481,36 +33722,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, + sym__whitespace1, sym__newline, - [19901] = 2, - ACTIONS(1964), 8, - anon_sym_STAR, + [19289] = 2, + ACTIONS(1342), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(1966), 28, + ACTIONS(1340), 29, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -36520,35 +33760,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, + sym__whitespace1, sym__newline, - [19942] = 2, - ACTIONS(1893), 7, - anon_sym_LBRACE, + [19329] = 2, + ACTIONS(1524), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1895), 29, + ACTIONS(1522), 29, sym__verbatim_begin, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -36558,37 +33798,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [19983] = 2, - ACTIONS(2018), 8, - anon_sym_STAR, + [19369] = 2, + ACTIONS(1342), 7, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, - sym__whitespace1, aux_sym__text_token1, - ACTIONS(2016), 28, + ACTIONS(1340), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, - aux_sym_strong_end_token1, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -36598,35 +33836,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, + sym__whitespace1, sym__newline, - [20024] = 2, - ACTIONS(2018), 6, + [19409] = 2, + ACTIONS(1358), 7, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(2016), 30, + ACTIONS(1356), 28, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -36636,37 +33874,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [20065] = 3, - ACTIONS(2025), 1, - sym_emphasis_end, - ACTIONS(1910), 6, + [19449] = 3, + ACTIONS(1531), 1, + sym__verbatim_begin, + ACTIONS(49), 7, + anon_sym_LBRACE, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1908), 29, - sym__verbatim_begin, + ACTIONS(101), 27, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -36676,37 +33913,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [20108] = 2, - ACTIONS(1889), 7, - anon_sym_LBRACE, + [19491] = 2, + ACTIONS(1524), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1891), 29, + ACTIONS(1522), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -36715,36 +33951,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [20149] = 2, - ACTIONS(1885), 7, - anon_sym_LBRACE, + [19531] = 3, + ACTIONS(1534), 1, + sym_strong_end, + ACTIONS(1429), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1887), 29, + ACTIONS(1427), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -36754,38 +33990,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [20190] = 3, - ACTIONS(2027), 1, - sym__verbatim_begin, - ACTIONS(49), 7, - anon_sym_LBRACE, + [19573] = 2, + ACTIONS(1358), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(93), 28, + ACTIONS(1356), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, + anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -36794,36 +34028,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [20233] = 2, - ACTIONS(1900), 7, - anon_sym_LBRACE, + [19613] = 2, + ACTIONS(1342), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1902), 29, + ACTIONS(1340), 29, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -36833,36 +34066,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [20274] = 2, - ACTIONS(1904), 7, - anon_sym_LBRACE, + [19653] = 2, + ACTIONS(1358), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1906), 29, + ACTIONS(1356), 29, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -36872,36 +34104,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [20315] = 2, - ACTIONS(1881), 7, - anon_sym_LBRACE, + [19693] = 3, + ACTIONS(1534), 1, + sym_emphasis_end, + ACTIONS(1429), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1883), 29, + ACTIONS(1427), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -36911,36 +34143,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [20356] = 2, - ACTIONS(1915), 7, - anon_sym_LBRACE, + [19735] = 4, + ACTIONS(1536), 1, + anon_sym_LBRACE2, + STATE(544), 1, + sym_comment, + ACTIONS(1429), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1917), 29, + ACTIONS(1427), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -36950,114 +34183,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [20397] = 2, - ACTIONS(1919), 7, - anon_sym_LBRACE, + [19779] = 3, + ACTIONS(1526), 1, + sym_emphasis_end, + ACTIONS(1429), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1921), 29, + ACTIONS(1427), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - anon_sym_PIPE, - sym__whitespace1, - sym__newline, - [20438] = 2, - ACTIONS(1877), 7, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(1879), 29, - sym__verbatim_begin, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - anon_sym_PIPE, - sym__whitespace1, - sym__newline, - [20479] = 2, - ACTIONS(1808), 7, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(1810), 29, - sym__verbatim_begin, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -37067,75 +34222,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [20520] = 2, - ACTIONS(1923), 7, - anon_sym_LBRACE, + [19821] = 2, + ACTIONS(1524), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1925), 29, + ACTIONS(1522), 29, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - anon_sym_PIPE, - sym__whitespace1, - sym__newline, - [20561] = 2, - ACTIONS(1927), 7, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(1929), 29, - sym__verbatim_begin, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -37145,75 +34260,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [20602] = 2, - ACTIONS(1931), 7, - anon_sym_LBRACE, + [19861] = 2, + ACTIONS(1358), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1933), 29, + ACTIONS(1356), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - anon_sym_PIPE, - sym__whitespace1, - sym__newline, - [20643] = 2, - ACTIONS(1935), 7, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(1937), 29, - sym__verbatim_begin, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -37223,75 +34297,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [20684] = 2, - ACTIONS(1814), 7, - anon_sym_LBRACE, + [19900] = 2, + ACTIONS(1342), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1816), 29, + ACTIONS(1340), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - anon_sym_PIPE, - sym__whitespace1, - sym__newline, - [20725] = 2, - ACTIONS(1873), 7, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(1875), 29, - sym__verbatim_begin, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -37301,75 +34334,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [20766] = 2, - ACTIONS(1964), 6, + [19939] = 2, + ACTIONS(1524), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1966), 30, + ACTIONS(1522), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_EQ_RBRACE, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - anon_sym_PIPE, - sym__whitespace1, - sym__newline, - [20807] = 2, - ACTIONS(1869), 7, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(1871), 29, - sym__verbatim_begin, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, @@ -37379,1622 +34371,1000 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - anon_sym_PIPE, sym__whitespace1, sym__newline, - [20848] = 2, - ACTIONS(1822), 7, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(1824), 29, - sym__verbatim_begin, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - anon_sym_PIPE, - sym__whitespace1, - sym__newline, - [20889] = 2, - ACTIONS(1964), 6, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(1966), 30, - sym__verbatim_begin, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - anon_sym_PIPE, - sym__whitespace1, - sym__newline, - [20930] = 2, - ACTIONS(1826), 7, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(1828), 29, - sym__verbatim_begin, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - anon_sym_PIPE, - sym__whitespace1, - sym__newline, - [20971] = 2, - ACTIONS(1830), 7, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(1832), 29, - sym__verbatim_begin, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - anon_sym_PIPE, - sym__whitespace1, - sym__newline, - [21012] = 2, - ACTIONS(1834), 7, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(1836), 29, - sym__verbatim_begin, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - anon_sym_PIPE, - sym__whitespace1, - sym__newline, - [21053] = 2, - ACTIONS(1838), 7, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(1840), 29, - sym__verbatim_begin, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - anon_sym_PIPE, - sym__whitespace1, - sym__newline, - [21094] = 2, - ACTIONS(1842), 7, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(1844), 29, - sym__verbatim_begin, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - anon_sym_PIPE, - sym__whitespace1, - sym__newline, - [21135] = 2, - ACTIONS(1846), 7, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(1848), 29, - sym__verbatim_begin, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - anon_sym_PIPE, - sym__whitespace1, - sym__newline, - [21176] = 2, - ACTIONS(1850), 7, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(1852), 29, - sym__verbatim_begin, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - anon_sym_PIPE, - sym__whitespace1, - sym__newline, - [21217] = 2, - ACTIONS(1854), 7, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(1856), 29, - sym__verbatim_begin, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - anon_sym_PIPE, - sym__whitespace1, - sym__newline, - [21258] = 2, - ACTIONS(1858), 7, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(1860), 29, - sym__verbatim_begin, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - anon_sym_PIPE, - sym__whitespace1, - sym__newline, - [21299] = 2, - ACTIONS(1862), 7, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(1864), 29, - sym__verbatim_begin, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - anon_sym_PIPE, - sym__whitespace1, - sym__newline, - [21340] = 2, - ACTIONS(1960), 6, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(1962), 30, - sym__verbatim_begin, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - anon_sym_PIPE, - sym__whitespace1, - sym__newline, - [21381] = 2, - ACTIONS(1964), 6, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(1966), 29, - sym__verbatim_begin, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - anon_sym_PIPE, - sym__whitespace1, - sym__newline, - [21421] = 2, - ACTIONS(1960), 6, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(1962), 29, - sym__verbatim_begin, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - anon_sym_PIPE, - sym__whitespace1, - sym__newline, - [21461] = 2, - ACTIONS(2018), 6, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(2016), 29, - sym__verbatim_begin, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_symbol, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - anon_sym_PIPE, - sym__whitespace1, - sym__newline, - [21501] = 9, - ACTIONS(2030), 1, + [19978] = 9, + ACTIONS(1539), 1, anon_sym_RBRACE, - ACTIONS(2032), 1, + ACTIONS(1541), 1, sym__id, - ACTIONS(2034), 1, + ACTIONS(1543), 1, anon_sym_PERCENT, - ACTIONS(2038), 1, + ACTIONS(1547), 1, anon_sym_DOT, - STATE(642), 1, + STATE(622), 1, aux_sym_inline_attribute_repeat1, - STATE(677), 1, + STATE(653), 1, sym__comment_with_newline, - STATE(871), 1, + STATE(994), 1, sym_key, - STATE(676), 2, + STATE(655), 2, sym_class, sym_key_value, - ACTIONS(2036), 3, + ACTIONS(1545), 3, sym__whitespace1, sym__newline, sym_identifier, - [21532] = 9, - ACTIONS(2032), 1, + [20009] = 9, + ACTIONS(1541), 1, sym__id, - ACTIONS(2034), 1, + ACTIONS(1543), 1, anon_sym_PERCENT, - ACTIONS(2038), 1, + ACTIONS(1547), 1, anon_sym_DOT, - ACTIONS(2040), 1, + ACTIONS(1549), 1, anon_sym_RBRACE, - STATE(634), 1, + STATE(650), 1, aux_sym_inline_attribute_repeat1, - STATE(677), 1, + STATE(653), 1, sym__comment_with_newline, - STATE(871), 1, + STATE(994), 1, sym_key, - STATE(676), 2, + STATE(655), 2, sym_class, sym_key_value, - ACTIONS(2036), 3, + ACTIONS(1545), 3, sym__whitespace1, sym__newline, sym_identifier, - [21563] = 9, - ACTIONS(2032), 1, + [20040] = 9, + ACTIONS(1541), 1, sym__id, - ACTIONS(2034), 1, + ACTIONS(1543), 1, anon_sym_PERCENT, - ACTIONS(2038), 1, + ACTIONS(1547), 1, anon_sym_DOT, - ACTIONS(2042), 1, + ACTIONS(1551), 1, anon_sym_RBRACE, - STATE(635), 1, + STATE(650), 1, aux_sym_inline_attribute_repeat1, - STATE(677), 1, + STATE(653), 1, sym__comment_with_newline, - STATE(871), 1, + STATE(994), 1, sym_key, - STATE(676), 2, + STATE(655), 2, sym_class, sym_key_value, - ACTIONS(2036), 3, + ACTIONS(1545), 3, sym__whitespace1, sym__newline, sym_identifier, - [21594] = 9, - ACTIONS(2044), 1, - anon_sym_RBRACE, - ACTIONS(2046), 1, + [20071] = 9, + ACTIONS(1541), 1, sym__id, - ACTIONS(2049), 1, + ACTIONS(1543), 1, anon_sym_PERCENT, - ACTIONS(2055), 1, + ACTIONS(1547), 1, anon_sym_DOT, - STATE(634), 1, + ACTIONS(1553), 1, + anon_sym_RBRACE, + STATE(610), 1, aux_sym_inline_attribute_repeat1, - STATE(677), 1, + STATE(653), 1, sym__comment_with_newline, - STATE(871), 1, + STATE(994), 1, sym_key, - STATE(676), 2, + STATE(655), 2, sym_class, sym_key_value, - ACTIONS(2052), 3, + ACTIONS(1545), 3, sym__whitespace1, sym__newline, sym_identifier, - [21625] = 9, - ACTIONS(2032), 1, + [20102] = 9, + ACTIONS(1541), 1, sym__id, - ACTIONS(2034), 1, + ACTIONS(1543), 1, anon_sym_PERCENT, - ACTIONS(2038), 1, + ACTIONS(1547), 1, anon_sym_DOT, - ACTIONS(2058), 1, + ACTIONS(1555), 1, anon_sym_RBRACE, - STATE(634), 1, + STATE(613), 1, aux_sym_inline_attribute_repeat1, - STATE(677), 1, + STATE(653), 1, sym__comment_with_newline, - STATE(871), 1, + STATE(994), 1, sym_key, - STATE(676), 2, + STATE(655), 2, sym_class, sym_key_value, - ACTIONS(2036), 3, + ACTIONS(1545), 3, sym__whitespace1, sym__newline, sym_identifier, - [21656] = 9, - ACTIONS(2032), 1, + [20133] = 9, + ACTIONS(1541), 1, sym__id, - ACTIONS(2034), 1, + ACTIONS(1543), 1, anon_sym_PERCENT, - ACTIONS(2038), 1, + ACTIONS(1547), 1, anon_sym_DOT, - ACTIONS(2060), 1, + ACTIONS(1557), 1, anon_sym_RBRACE, - STATE(634), 1, + STATE(650), 1, aux_sym_inline_attribute_repeat1, - STATE(677), 1, + STATE(653), 1, sym__comment_with_newline, - STATE(871), 1, + STATE(994), 1, sym_key, - STATE(676), 2, + STATE(655), 2, sym_class, sym_key_value, - ACTIONS(2036), 3, + ACTIONS(1545), 3, sym__whitespace1, sym__newline, sym_identifier, - [21687] = 9, - ACTIONS(2032), 1, + [20164] = 9, + ACTIONS(1541), 1, sym__id, - ACTIONS(2034), 1, + ACTIONS(1543), 1, anon_sym_PERCENT, - ACTIONS(2038), 1, + ACTIONS(1547), 1, anon_sym_DOT, - ACTIONS(2062), 1, + ACTIONS(1559), 1, anon_sym_RBRACE, - STATE(639), 1, + STATE(650), 1, aux_sym_inline_attribute_repeat1, - STATE(677), 1, + STATE(653), 1, sym__comment_with_newline, - STATE(871), 1, + STATE(994), 1, sym_key, - STATE(676), 2, + STATE(655), 2, sym_class, sym_key_value, - ACTIONS(2036), 3, + ACTIONS(1545), 3, sym__whitespace1, sym__newline, sym_identifier, - [21718] = 9, - ACTIONS(2032), 1, + [20195] = 9, + ACTIONS(1541), 1, sym__id, - ACTIONS(2034), 1, + ACTIONS(1543), 1, anon_sym_PERCENT, - ACTIONS(2038), 1, + ACTIONS(1547), 1, anon_sym_DOT, - ACTIONS(2064), 1, + ACTIONS(1561), 1, anon_sym_RBRACE, - STATE(634), 1, + STATE(650), 1, aux_sym_inline_attribute_repeat1, - STATE(677), 1, + STATE(653), 1, sym__comment_with_newline, - STATE(871), 1, + STATE(994), 1, sym_key, - STATE(676), 2, + STATE(655), 2, sym_class, sym_key_value, - ACTIONS(2036), 3, + ACTIONS(1545), 3, sym__whitespace1, sym__newline, sym_identifier, - [21749] = 9, - ACTIONS(2032), 1, + [20226] = 9, + ACTIONS(1541), 1, sym__id, - ACTIONS(2034), 1, + ACTIONS(1543), 1, anon_sym_PERCENT, - ACTIONS(2038), 1, + ACTIONS(1547), 1, anon_sym_DOT, - ACTIONS(2066), 1, + ACTIONS(1563), 1, anon_sym_RBRACE, - STATE(634), 1, + STATE(615), 1, aux_sym_inline_attribute_repeat1, - STATE(677), 1, + STATE(653), 1, sym__comment_with_newline, - STATE(871), 1, + STATE(994), 1, sym_key, - STATE(676), 2, + STATE(655), 2, sym_class, sym_key_value, - ACTIONS(2036), 3, + ACTIONS(1545), 3, sym__whitespace1, sym__newline, sym_identifier, - [21780] = 9, - ACTIONS(2032), 1, + [20257] = 9, + ACTIONS(1541), 1, sym__id, - ACTIONS(2034), 1, + ACTIONS(1543), 1, anon_sym_PERCENT, - ACTIONS(2038), 1, + ACTIONS(1547), 1, anon_sym_DOT, - ACTIONS(2068), 1, + ACTIONS(1565), 1, anon_sym_RBRACE, - STATE(675), 1, + STATE(619), 1, aux_sym_inline_attribute_repeat1, - STATE(677), 1, + STATE(653), 1, sym__comment_with_newline, - STATE(871), 1, + STATE(994), 1, sym_key, - STATE(676), 2, + STATE(655), 2, sym_class, sym_key_value, - ACTIONS(2036), 3, + ACTIONS(1545), 3, sym__whitespace1, sym__newline, sym_identifier, - [21811] = 9, - ACTIONS(2032), 1, + [20288] = 9, + ACTIONS(1541), 1, sym__id, - ACTIONS(2034), 1, + ACTIONS(1543), 1, anon_sym_PERCENT, - ACTIONS(2038), 1, + ACTIONS(1547), 1, anon_sym_DOT, - ACTIONS(2070), 1, + ACTIONS(1567), 1, anon_sym_RBRACE, - STATE(638), 1, + STATE(621), 1, aux_sym_inline_attribute_repeat1, - STATE(677), 1, + STATE(653), 1, sym__comment_with_newline, - STATE(871), 1, + STATE(994), 1, sym_key, - STATE(676), 2, + STATE(655), 2, sym_class, sym_key_value, - ACTIONS(2036), 3, + ACTIONS(1545), 3, sym__whitespace1, sym__newline, sym_identifier, - [21842] = 9, - ACTIONS(2032), 1, + [20319] = 9, + ACTIONS(1541), 1, sym__id, - ACTIONS(2034), 1, + ACTIONS(1543), 1, anon_sym_PERCENT, - ACTIONS(2038), 1, + ACTIONS(1547), 1, anon_sym_DOT, - ACTIONS(2072), 1, + ACTIONS(1569), 1, anon_sym_RBRACE, - STATE(634), 1, + STATE(650), 1, aux_sym_inline_attribute_repeat1, - STATE(677), 1, + STATE(653), 1, sym__comment_with_newline, - STATE(871), 1, + STATE(994), 1, sym_key, - STATE(676), 2, + STATE(655), 2, sym_class, sym_key_value, - ACTIONS(2036), 3, + ACTIONS(1545), 3, sym__whitespace1, sym__newline, sym_identifier, - [21873] = 9, - ACTIONS(2032), 1, + [20350] = 9, + ACTIONS(1541), 1, sym__id, - ACTIONS(2034), 1, + ACTIONS(1543), 1, anon_sym_PERCENT, - ACTIONS(2038), 1, + ACTIONS(1547), 1, anon_sym_DOT, - ACTIONS(2074), 1, + ACTIONS(1571), 1, anon_sym_RBRACE, - STATE(636), 1, + STATE(635), 1, aux_sym_inline_attribute_repeat1, - STATE(677), 1, + STATE(653), 1, sym__comment_with_newline, - STATE(871), 1, + STATE(994), 1, sym_key, - STATE(676), 2, + STATE(655), 2, sym_class, sym_key_value, - ACTIONS(2036), 3, + ACTIONS(1545), 3, sym__whitespace1, sym__newline, sym_identifier, - [21904] = 9, - ACTIONS(2032), 1, + [20381] = 9, + ACTIONS(1541), 1, sym__id, - ACTIONS(2034), 1, + ACTIONS(1543), 1, anon_sym_PERCENT, - ACTIONS(2038), 1, + ACTIONS(1547), 1, anon_sym_DOT, - ACTIONS(2076), 1, + ACTIONS(1573), 1, anon_sym_RBRACE, - STATE(634), 1, + STATE(650), 1, aux_sym_inline_attribute_repeat1, - STATE(677), 1, + STATE(653), 1, sym__comment_with_newline, - STATE(871), 1, + STATE(994), 1, sym_key, - STATE(676), 2, + STATE(655), 2, sym_class, sym_key_value, - ACTIONS(2036), 3, + ACTIONS(1545), 3, sym__whitespace1, sym__newline, sym_identifier, - [21935] = 9, - ACTIONS(2032), 1, + [20412] = 9, + ACTIONS(1541), 1, sym__id, - ACTIONS(2034), 1, + ACTIONS(1543), 1, anon_sym_PERCENT, - ACTIONS(2038), 1, + ACTIONS(1547), 1, anon_sym_DOT, - ACTIONS(2078), 1, + ACTIONS(1575), 1, anon_sym_RBRACE, - STATE(656), 1, + STATE(650), 1, aux_sym_inline_attribute_repeat1, - STATE(677), 1, + STATE(653), 1, sym__comment_with_newline, - STATE(871), 1, + STATE(994), 1, sym_key, - STATE(676), 2, + STATE(655), 2, sym_class, sym_key_value, - ACTIONS(2036), 3, + ACTIONS(1545), 3, sym__whitespace1, sym__newline, sym_identifier, - [21966] = 9, - ACTIONS(2032), 1, + [20443] = 9, + ACTIONS(1541), 1, sym__id, - ACTIONS(2034), 1, + ACTIONS(1543), 1, anon_sym_PERCENT, - ACTIONS(2038), 1, + ACTIONS(1547), 1, anon_sym_DOT, - ACTIONS(2080), 1, + ACTIONS(1577), 1, anon_sym_RBRACE, - STATE(652), 1, + STATE(624), 1, aux_sym_inline_attribute_repeat1, - STATE(677), 1, + STATE(653), 1, sym__comment_with_newline, - STATE(871), 1, + STATE(994), 1, sym_key, - STATE(676), 2, + STATE(655), 2, sym_class, sym_key_value, - ACTIONS(2036), 3, + ACTIONS(1545), 3, sym__whitespace1, sym__newline, sym_identifier, - [21997] = 9, - ACTIONS(2032), 1, + [20474] = 9, + ACTIONS(1541), 1, sym__id, - ACTIONS(2034), 1, + ACTIONS(1543), 1, anon_sym_PERCENT, - ACTIONS(2038), 1, + ACTIONS(1547), 1, anon_sym_DOT, - ACTIONS(2082), 1, + ACTIONS(1579), 1, anon_sym_RBRACE, - STATE(634), 1, + STATE(650), 1, aux_sym_inline_attribute_repeat1, - STATE(677), 1, + STATE(653), 1, sym__comment_with_newline, - STATE(871), 1, + STATE(994), 1, sym_key, - STATE(676), 2, + STATE(655), 2, sym_class, sym_key_value, - ACTIONS(2036), 3, + ACTIONS(1545), 3, sym__whitespace1, sym__newline, sym_identifier, - [22028] = 9, - ACTIONS(2032), 1, + [20505] = 9, + ACTIONS(1541), 1, sym__id, - ACTIONS(2034), 1, + ACTIONS(1543), 1, anon_sym_PERCENT, - ACTIONS(2038), 1, + ACTIONS(1547), 1, anon_sym_DOT, - ACTIONS(2084), 1, + ACTIONS(1581), 1, anon_sym_RBRACE, - STATE(649), 1, + STATE(626), 1, aux_sym_inline_attribute_repeat1, - STATE(677), 1, + STATE(653), 1, sym__comment_with_newline, - STATE(871), 1, + STATE(994), 1, sym_key, - STATE(676), 2, + STATE(655), 2, sym_class, sym_key_value, - ACTIONS(2036), 3, + ACTIONS(1545), 3, sym__whitespace1, sym__newline, sym_identifier, - [22059] = 9, - ACTIONS(2032), 1, + [20536] = 9, + ACTIONS(1541), 1, sym__id, - ACTIONS(2034), 1, + ACTIONS(1543), 1, anon_sym_PERCENT, - ACTIONS(2038), 1, + ACTIONS(1547), 1, anon_sym_DOT, - ACTIONS(2086), 1, + ACTIONS(1583), 1, anon_sym_RBRACE, - STATE(634), 1, + STATE(650), 1, aux_sym_inline_attribute_repeat1, - STATE(677), 1, + STATE(653), 1, sym__comment_with_newline, - STATE(871), 1, + STATE(994), 1, sym_key, - STATE(676), 2, + STATE(655), 2, sym_class, sym_key_value, - ACTIONS(2036), 3, + ACTIONS(1545), 3, sym__whitespace1, sym__newline, sym_identifier, - [22090] = 9, - ACTIONS(2032), 1, + [20567] = 9, + ACTIONS(1541), 1, sym__id, - ACTIONS(2034), 1, + ACTIONS(1543), 1, anon_sym_PERCENT, - ACTIONS(2038), 1, + ACTIONS(1547), 1, anon_sym_DOT, - ACTIONS(2088), 1, + ACTIONS(1585), 1, anon_sym_RBRACE, - STATE(644), 1, + STATE(629), 1, aux_sym_inline_attribute_repeat1, - STATE(677), 1, + STATE(653), 1, sym__comment_with_newline, - STATE(871), 1, + STATE(994), 1, sym_key, - STATE(676), 2, + STATE(655), 2, sym_class, sym_key_value, - ACTIONS(2036), 3, + ACTIONS(1545), 3, sym__whitespace1, sym__newline, sym_identifier, - [22121] = 9, - ACTIONS(2032), 1, + [20598] = 9, + ACTIONS(1541), 1, sym__id, - ACTIONS(2034), 1, + ACTIONS(1543), 1, anon_sym_PERCENT, - ACTIONS(2038), 1, + ACTIONS(1547), 1, anon_sym_DOT, - ACTIONS(2090), 1, + ACTIONS(1587), 1, anon_sym_RBRACE, - STATE(634), 1, + STATE(650), 1, aux_sym_inline_attribute_repeat1, - STATE(677), 1, + STATE(653), 1, sym__comment_with_newline, - STATE(871), 1, + STATE(994), 1, sym_key, - STATE(676), 2, + STATE(655), 2, sym_class, sym_key_value, - ACTIONS(2036), 3, + ACTIONS(1545), 3, sym__whitespace1, sym__newline, sym_identifier, - [22152] = 9, - ACTIONS(2032), 1, + [20629] = 9, + ACTIONS(1541), 1, sym__id, - ACTIONS(2034), 1, + ACTIONS(1543), 1, anon_sym_PERCENT, - ACTIONS(2038), 1, + ACTIONS(1547), 1, anon_sym_DOT, - ACTIONS(2092), 1, + ACTIONS(1589), 1, anon_sym_RBRACE, - STATE(634), 1, + STATE(650), 1, aux_sym_inline_attribute_repeat1, - STATE(677), 1, + STATE(653), 1, sym__comment_with_newline, - STATE(871), 1, + STATE(994), 1, sym_key, - STATE(676), 2, + STATE(655), 2, sym_class, sym_key_value, - ACTIONS(2036), 3, + ACTIONS(1545), 3, sym__whitespace1, sym__newline, sym_identifier, - [22183] = 9, - ACTIONS(2032), 1, + [20660] = 9, + ACTIONS(1541), 1, sym__id, - ACTIONS(2034), 1, + ACTIONS(1543), 1, anon_sym_PERCENT, - ACTIONS(2038), 1, + ACTIONS(1547), 1, anon_sym_DOT, - ACTIONS(2094), 1, + ACTIONS(1591), 1, anon_sym_RBRACE, - STATE(651), 1, + STATE(633), 1, aux_sym_inline_attribute_repeat1, - STATE(677), 1, + STATE(653), 1, sym__comment_with_newline, - STATE(871), 1, + STATE(994), 1, sym_key, - STATE(676), 2, + STATE(655), 2, sym_class, sym_key_value, - ACTIONS(2036), 3, + ACTIONS(1545), 3, sym__whitespace1, sym__newline, sym_identifier, - [22214] = 9, - ACTIONS(2032), 1, + [20691] = 9, + ACTIONS(1541), 1, sym__id, - ACTIONS(2034), 1, + ACTIONS(1543), 1, anon_sym_PERCENT, - ACTIONS(2038), 1, + ACTIONS(1547), 1, anon_sym_DOT, - ACTIONS(2096), 1, + ACTIONS(1593), 1, anon_sym_RBRACE, - STATE(647), 1, + STATE(628), 1, aux_sym_inline_attribute_repeat1, - STATE(677), 1, + STATE(653), 1, sym__comment_with_newline, - STATE(871), 1, + STATE(994), 1, sym_key, - STATE(676), 2, + STATE(655), 2, sym_class, sym_key_value, - ACTIONS(2036), 3, + ACTIONS(1545), 3, sym__whitespace1, sym__newline, sym_identifier, - [22245] = 9, - ACTIONS(2032), 1, + [20722] = 9, + ACTIONS(1541), 1, sym__id, - ACTIONS(2034), 1, + ACTIONS(1543), 1, anon_sym_PERCENT, - ACTIONS(2038), 1, + ACTIONS(1547), 1, anon_sym_DOT, - ACTIONS(2098), 1, + ACTIONS(1595), 1, anon_sym_RBRACE, - STATE(632), 1, + STATE(651), 1, aux_sym_inline_attribute_repeat1, - STATE(677), 1, + STATE(653), 1, sym__comment_with_newline, - STATE(871), 1, + STATE(994), 1, sym_key, - STATE(676), 2, + STATE(655), 2, sym_class, sym_key_value, - ACTIONS(2036), 3, + ACTIONS(1545), 3, sym__whitespace1, sym__newline, sym_identifier, - [22276] = 9, - ACTIONS(2032), 1, + [20753] = 9, + ACTIONS(1541), 1, sym__id, - ACTIONS(2034), 1, + ACTIONS(1543), 1, anon_sym_PERCENT, - ACTIONS(2038), 1, + ACTIONS(1547), 1, anon_sym_DOT, - ACTIONS(2100), 1, + ACTIONS(1597), 1, anon_sym_RBRACE, - STATE(634), 1, + STATE(650), 1, aux_sym_inline_attribute_repeat1, - STATE(677), 1, + STATE(653), 1, sym__comment_with_newline, - STATE(871), 1, + STATE(994), 1, sym_key, - STATE(676), 2, + STATE(655), 2, sym_class, sym_key_value, - ACTIONS(2036), 3, + ACTIONS(1545), 3, sym__whitespace1, sym__newline, sym_identifier, - [22307] = 9, - ACTIONS(2032), 1, + [20784] = 9, + ACTIONS(1541), 1, sym__id, - ACTIONS(2034), 1, + ACTIONS(1543), 1, anon_sym_PERCENT, - ACTIONS(2038), 1, + ACTIONS(1547), 1, anon_sym_DOT, - ACTIONS(2102), 1, + ACTIONS(1599), 1, anon_sym_RBRACE, - STATE(634), 1, + STATE(609), 1, aux_sym_inline_attribute_repeat1, - STATE(677), 1, + STATE(653), 1, sym__comment_with_newline, - STATE(871), 1, + STATE(994), 1, sym_key, - STATE(676), 2, + STATE(655), 2, sym_class, sym_key_value, - ACTIONS(2036), 3, + ACTIONS(1545), 3, sym__whitespace1, sym__newline, sym_identifier, - [22338] = 9, - ACTIONS(2032), 1, + [20815] = 9, + ACTIONS(1541), 1, sym__id, - ACTIONS(2034), 1, + ACTIONS(1543), 1, anon_sym_PERCENT, - ACTIONS(2038), 1, + ACTIONS(1547), 1, anon_sym_DOT, - ACTIONS(2104), 1, + ACTIONS(1601), 1, anon_sym_RBRACE, - STATE(657), 1, + STATE(650), 1, aux_sym_inline_attribute_repeat1, - STATE(677), 1, + STATE(653), 1, sym__comment_with_newline, - STATE(871), 1, + STATE(994), 1, sym_key, - STATE(676), 2, + STATE(655), 2, sym_class, sym_key_value, - ACTIONS(2036), 3, + ACTIONS(1545), 3, sym__whitespace1, sym__newline, sym_identifier, - [22369] = 9, - ACTIONS(2032), 1, + [20846] = 9, + ACTIONS(1541), 1, sym__id, - ACTIONS(2034), 1, + ACTIONS(1543), 1, anon_sym_PERCENT, - ACTIONS(2038), 1, + ACTIONS(1547), 1, anon_sym_DOT, - ACTIONS(2106), 1, + ACTIONS(1603), 1, anon_sym_RBRACE, - STATE(634), 1, + STATE(637), 1, aux_sym_inline_attribute_repeat1, - STATE(677), 1, + STATE(653), 1, sym__comment_with_newline, - STATE(871), 1, + STATE(994), 1, sym_key, - STATE(676), 2, + STATE(655), 2, sym_class, sym_key_value, - ACTIONS(2036), 3, + ACTIONS(1545), 3, sym__whitespace1, sym__newline, sym_identifier, - [22400] = 9, - ACTIONS(2032), 1, + [20877] = 9, + ACTIONS(1541), 1, sym__id, - ACTIONS(2034), 1, + ACTIONS(1543), 1, anon_sym_PERCENT, - ACTIONS(2038), 1, + ACTIONS(1547), 1, anon_sym_DOT, - ACTIONS(2108), 1, + ACTIONS(1605), 1, anon_sym_RBRACE, - STATE(659), 1, + STATE(650), 1, aux_sym_inline_attribute_repeat1, - STATE(677), 1, + STATE(653), 1, sym__comment_with_newline, - STATE(871), 1, + STATE(994), 1, sym_key, - STATE(676), 2, + STATE(655), 2, sym_class, sym_key_value, - ACTIONS(2036), 3, + ACTIONS(1545), 3, sym__whitespace1, sym__newline, sym_identifier, - [22431] = 9, - ACTIONS(2032), 1, + [20908] = 9, + ACTIONS(1541), 1, sym__id, - ACTIONS(2034), 1, + ACTIONS(1543), 1, anon_sym_PERCENT, - ACTIONS(2038), 1, + ACTIONS(1547), 1, anon_sym_DOT, - ACTIONS(2110), 1, + ACTIONS(1607), 1, anon_sym_RBRACE, - STATE(634), 1, + STATE(639), 1, aux_sym_inline_attribute_repeat1, - STATE(677), 1, + STATE(653), 1, sym__comment_with_newline, - STATE(871), 1, + STATE(994), 1, sym_key, - STATE(676), 2, + STATE(655), 2, sym_class, sym_key_value, - ACTIONS(2036), 3, + ACTIONS(1545), 3, sym__whitespace1, sym__newline, sym_identifier, - [22462] = 9, - ACTIONS(2032), 1, + [20939] = 9, + ACTIONS(1541), 1, sym__id, - ACTIONS(2034), 1, + ACTIONS(1543), 1, anon_sym_PERCENT, - ACTIONS(2038), 1, + ACTIONS(1547), 1, anon_sym_DOT, - ACTIONS(2112), 1, + ACTIONS(1609), 1, anon_sym_RBRACE, - STATE(661), 1, + STATE(650), 1, aux_sym_inline_attribute_repeat1, - STATE(677), 1, + STATE(653), 1, sym__comment_with_newline, - STATE(871), 1, + STATE(994), 1, sym_key, - STATE(676), 2, + STATE(655), 2, sym_class, sym_key_value, - ACTIONS(2036), 3, + ACTIONS(1545), 3, sym__whitespace1, sym__newline, sym_identifier, - [22493] = 9, - ACTIONS(2032), 1, + [20970] = 9, + ACTIONS(1541), 1, sym__id, - ACTIONS(2034), 1, + ACTIONS(1543), 1, anon_sym_PERCENT, - ACTIONS(2038), 1, + ACTIONS(1547), 1, anon_sym_DOT, - ACTIONS(2114), 1, + ACTIONS(1611), 1, anon_sym_RBRACE, - STATE(672), 1, + STATE(641), 1, aux_sym_inline_attribute_repeat1, - STATE(677), 1, + STATE(653), 1, sym__comment_with_newline, - STATE(871), 1, + STATE(994), 1, sym_key, - STATE(676), 2, + STATE(655), 2, sym_class, sym_key_value, - ACTIONS(2036), 3, + ACTIONS(1545), 3, sym__whitespace1, sym__newline, sym_identifier, - [22524] = 9, - ACTIONS(2032), 1, + [21001] = 9, + ACTIONS(1541), 1, sym__id, - ACTIONS(2034), 1, + ACTIONS(1543), 1, anon_sym_PERCENT, - ACTIONS(2038), 1, + ACTIONS(1547), 1, anon_sym_DOT, - ACTIONS(2116), 1, + ACTIONS(1613), 1, anon_sym_RBRACE, - STATE(634), 1, + STATE(650), 1, aux_sym_inline_attribute_repeat1, - STATE(677), 1, + STATE(653), 1, sym__comment_with_newline, - STATE(871), 1, + STATE(994), 1, sym_key, - STATE(676), 2, + STATE(655), 2, sym_class, sym_key_value, - ACTIONS(2036), 3, + ACTIONS(1545), 3, sym__whitespace1, sym__newline, sym_identifier, - [22555] = 9, - ACTIONS(2032), 1, + [21032] = 9, + ACTIONS(1541), 1, sym__id, - ACTIONS(2034), 1, + ACTIONS(1543), 1, anon_sym_PERCENT, - ACTIONS(2038), 1, + ACTIONS(1547), 1, anon_sym_DOT, - ACTIONS(2118), 1, + ACTIONS(1615), 1, anon_sym_RBRACE, - STATE(664), 1, + STATE(643), 1, aux_sym_inline_attribute_repeat1, - STATE(677), 1, + STATE(653), 1, sym__comment_with_newline, - STATE(871), 1, + STATE(994), 1, sym_key, - STATE(676), 2, + STATE(655), 2, sym_class, sym_key_value, - ACTIONS(2036), 3, + ACTIONS(1545), 3, sym__whitespace1, sym__newline, sym_identifier, - [22586] = 9, - ACTIONS(2032), 1, + [21063] = 9, + ACTIONS(1541), 1, sym__id, - ACTIONS(2034), 1, + ACTIONS(1543), 1, anon_sym_PERCENT, - ACTIONS(2038), 1, + ACTIONS(1547), 1, anon_sym_DOT, - ACTIONS(2120), 1, + ACTIONS(1617), 1, anon_sym_RBRACE, - STATE(634), 1, + STATE(650), 1, aux_sym_inline_attribute_repeat1, - STATE(677), 1, + STATE(653), 1, sym__comment_with_newline, - STATE(871), 1, + STATE(994), 1, sym_key, - STATE(676), 2, + STATE(655), 2, sym_class, sym_key_value, - ACTIONS(2036), 3, + ACTIONS(1545), 3, sym__whitespace1, sym__newline, sym_identifier, - [22617] = 9, - ACTIONS(2032), 1, + [21094] = 9, + ACTIONS(1541), 1, sym__id, - ACTIONS(2034), 1, + ACTIONS(1543), 1, anon_sym_PERCENT, - ACTIONS(2038), 1, + ACTIONS(1547), 1, anon_sym_DOT, - ACTIONS(2122), 1, + ACTIONS(1619), 1, anon_sym_RBRACE, - STATE(666), 1, + STATE(645), 1, aux_sym_inline_attribute_repeat1, - STATE(677), 1, + STATE(653), 1, sym__comment_with_newline, - STATE(871), 1, + STATE(994), 1, sym_key, - STATE(676), 2, + STATE(655), 2, sym_class, sym_key_value, - ACTIONS(2036), 3, + ACTIONS(1545), 3, sym__whitespace1, sym__newline, sym_identifier, - [22648] = 9, - ACTIONS(2032), 1, + [21125] = 9, + ACTIONS(1541), 1, sym__id, - ACTIONS(2034), 1, + ACTIONS(1543), 1, anon_sym_PERCENT, - ACTIONS(2038), 1, + ACTIONS(1547), 1, anon_sym_DOT, - ACTIONS(2124), 1, + ACTIONS(1621), 1, anon_sym_RBRACE, - STATE(634), 1, + STATE(650), 1, aux_sym_inline_attribute_repeat1, - STATE(677), 1, + STATE(653), 1, sym__comment_with_newline, - STATE(871), 1, + STATE(994), 1, sym_key, - STATE(676), 2, + STATE(655), 2, sym_class, sym_key_value, - ACTIONS(2036), 3, + ACTIONS(1545), 3, sym__whitespace1, sym__newline, sym_identifier, - [22679] = 9, - ACTIONS(2032), 1, + [21156] = 9, + ACTIONS(1541), 1, sym__id, - ACTIONS(2034), 1, + ACTIONS(1543), 1, anon_sym_PERCENT, - ACTIONS(2038), 1, + ACTIONS(1547), 1, anon_sym_DOT, - ACTIONS(2126), 1, + ACTIONS(1623), 1, anon_sym_RBRACE, - STATE(668), 1, + STATE(614), 1, aux_sym_inline_attribute_repeat1, - STATE(677), 1, + STATE(653), 1, sym__comment_with_newline, - STATE(871), 1, + STATE(994), 1, sym_key, - STATE(676), 2, + STATE(655), 2, sym_class, sym_key_value, - ACTIONS(2036), 3, + ACTIONS(1545), 3, sym__whitespace1, sym__newline, sym_identifier, - [22710] = 9, - ACTIONS(2032), 1, + [21187] = 9, + ACTIONS(1541), 1, sym__id, - ACTIONS(2034), 1, + ACTIONS(1543), 1, anon_sym_PERCENT, - ACTIONS(2038), 1, + ACTIONS(1547), 1, anon_sym_DOT, - ACTIONS(2128), 1, + ACTIONS(1625), 1, anon_sym_RBRACE, - STATE(634), 1, + STATE(649), 1, aux_sym_inline_attribute_repeat1, - STATE(677), 1, + STATE(653), 1, sym__comment_with_newline, - STATE(871), 1, + STATE(994), 1, sym_key, - STATE(676), 2, + STATE(655), 2, sym_class, sym_key_value, - ACTIONS(2036), 3, + ACTIONS(1545), 3, sym__whitespace1, sym__newline, sym_identifier, - [22741] = 9, - ACTIONS(2032), 1, + [21218] = 9, + ACTIONS(1541), 1, sym__id, - ACTIONS(2034), 1, + ACTIONS(1543), 1, anon_sym_PERCENT, - ACTIONS(2038), 1, + ACTIONS(1547), 1, anon_sym_DOT, - ACTIONS(2130), 1, + ACTIONS(1627), 1, anon_sym_RBRACE, - STATE(634), 1, + STATE(652), 1, aux_sym_inline_attribute_repeat1, - STATE(677), 1, + STATE(653), 1, sym__comment_with_newline, - STATE(871), 1, + STATE(994), 1, sym_key, - STATE(676), 2, + STATE(655), 2, sym_class, sym_key_value, - ACTIONS(2036), 3, + ACTIONS(1545), 3, sym__whitespace1, sym__newline, sym_identifier, - [22772] = 9, - ACTIONS(2032), 1, + [21249] = 9, + ACTIONS(1541), 1, sym__id, - ACTIONS(2034), 1, + ACTIONS(1543), 1, anon_sym_PERCENT, - ACTIONS(2038), 1, + ACTIONS(1547), 1, anon_sym_DOT, - ACTIONS(2132), 1, + ACTIONS(1629), 1, anon_sym_RBRACE, - STATE(634), 1, + STATE(650), 1, aux_sym_inline_attribute_repeat1, - STATE(677), 1, + STATE(653), 1, sym__comment_with_newline, - STATE(871), 1, + STATE(994), 1, sym_key, - STATE(676), 2, + STATE(655), 2, sym_class, sym_key_value, - ACTIONS(2036), 3, + ACTIONS(1545), 3, sym__whitespace1, sym__newline, sym_identifier, - [22803] = 9, - ACTIONS(2032), 1, + [21280] = 9, + ACTIONS(1631), 1, + anon_sym_RBRACE, + ACTIONS(1633), 1, sym__id, - ACTIONS(2034), 1, + ACTIONS(1636), 1, anon_sym_PERCENT, - ACTIONS(2038), 1, + ACTIONS(1642), 1, anon_sym_DOT, - ACTIONS(2134), 1, - anon_sym_RBRACE, - STATE(671), 1, + STATE(650), 1, aux_sym_inline_attribute_repeat1, - STATE(677), 1, + STATE(653), 1, sym__comment_with_newline, - STATE(871), 1, + STATE(994), 1, sym_key, - STATE(676), 2, + STATE(655), 2, sym_class, sym_key_value, - ACTIONS(2036), 3, + ACTIONS(1639), 3, sym__whitespace1, sym__newline, sym_identifier, - [22834] = 9, - ACTIONS(2032), 1, + [21311] = 9, + ACTIONS(1541), 1, sym__id, - ACTIONS(2034), 1, + ACTIONS(1543), 1, anon_sym_PERCENT, - ACTIONS(2038), 1, + ACTIONS(1547), 1, anon_sym_DOT, - ACTIONS(2136), 1, + ACTIONS(1645), 1, anon_sym_RBRACE, - STATE(670), 1, + STATE(650), 1, aux_sym_inline_attribute_repeat1, - STATE(677), 1, + STATE(653), 1, sym__comment_with_newline, - STATE(871), 1, + STATE(994), 1, sym_key, - STATE(676), 2, + STATE(655), 2, sym_class, sym_key_value, - ACTIONS(2036), 3, + ACTIONS(1545), 3, sym__whitespace1, sym__newline, sym_identifier, - [22865] = 9, - ACTIONS(2032), 1, + [21342] = 9, + ACTIONS(1541), 1, sym__id, - ACTIONS(2034), 1, + ACTIONS(1543), 1, anon_sym_PERCENT, - ACTIONS(2038), 1, + ACTIONS(1547), 1, anon_sym_DOT, - ACTIONS(2138), 1, + ACTIONS(1647), 1, anon_sym_RBRACE, - STATE(634), 1, + STATE(650), 1, aux_sym_inline_attribute_repeat1, - STATE(677), 1, + STATE(653), 1, sym__comment_with_newline, - STATE(871), 1, + STATE(994), 1, sym_key, - STATE(676), 2, + STATE(655), 2, sym_class, sym_key_value, - ACTIONS(2036), 3, + ACTIONS(1545), 3, sym__whitespace1, sym__newline, sym_identifier, - [22896] = 1, - ACTIONS(2140), 7, + [21373] = 1, + ACTIONS(1649), 7, anon_sym_RBRACE, sym__id, anon_sym_PERCENT, @@ -39002,8 +35372,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_DOT, sym_identifier, - [22906] = 1, - ACTIONS(2142), 7, + [21383] = 1, + ACTIONS(1651), 7, anon_sym_RBRACE, sym__id, anon_sym_PERCENT, @@ -39011,8 +35381,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_DOT, sym_identifier, - [22916] = 1, - ACTIONS(2144), 7, + [21393] = 1, + ACTIONS(1653), 7, anon_sym_RBRACE, sym__id, anon_sym_PERCENT, @@ -39020,8 +35390,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_DOT, sym_identifier, - [22926] = 1, - ACTIONS(2146), 7, + [21403] = 1, + ACTIONS(1655), 7, anon_sym_RBRACE, sym__id, anon_sym_PERCENT, @@ -39029,8 +35399,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_DOT, sym_identifier, - [22936] = 1, - ACTIONS(2148), 7, + [21413] = 1, + ACTIONS(1657), 7, anon_sym_RBRACE, sym__id, anon_sym_PERCENT, @@ -39038,8 +35408,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_DOT, sym_identifier, - [22946] = 1, - ACTIONS(2150), 7, + [21423] = 1, + ACTIONS(1659), 7, anon_sym_RBRACE, sym__id, anon_sym_PERCENT, @@ -39047,8 +35417,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_DOT, sym_identifier, - [22956] = 1, - ACTIONS(2152), 7, + [21433] = 1, + ACTIONS(1661), 7, anon_sym_RBRACE, sym__id, anon_sym_PERCENT, @@ -39056,8 +35426,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_DOT, sym_identifier, - [22966] = 1, - ACTIONS(2154), 7, + [21443] = 1, + ACTIONS(1663), 7, anon_sym_RBRACE, sym__id, anon_sym_PERCENT, @@ -39065,8 +35435,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_DOT, sym_identifier, - [22976] = 1, - ACTIONS(2156), 7, + [21453] = 1, + ACTIONS(1665), 7, anon_sym_RBRACE, sym__id, anon_sym_PERCENT, @@ -39074,3565 +35444,4129 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_DOT, sym_identifier, - [22986] = 5, - ACTIONS(2158), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(2160), 1, - anon_sym_LBRACK, - ACTIONS(2162), 1, - anon_sym_LPAREN, - STATE(495), 1, - sym__link_label, - STATE(496), 1, - sym_inline_link_destination, - [23002] = 3, - ACTIONS(2167), 1, + [21463] = 3, + ACTIONS(1669), 1, anon_sym_PERCENT, - STATE(686), 1, + STATE(688), 1, aux_sym__comment_with_newline_repeat1, - ACTIONS(2164), 3, + ACTIONS(1667), 3, sym_backslash_escape, aux_sym__comment_with_newline_token1, sym__newline, - [23014] = 4, - ACTIONS(2169), 1, + [21475] = 5, + ACTIONS(1671), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(1673), 1, + anon_sym_LBRACK, + ACTIONS(1675), 1, + anon_sym_LPAREN, + STATE(251), 1, + sym__link_label, + STATE(252), 1, + sym_inline_link_destination, + [21491] = 5, + ACTIONS(1677), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(1679), 1, + anon_sym_LBRACK, + ACTIONS(1681), 1, + anon_sym_LPAREN, + STATE(465), 1, + sym__link_label, + STATE(466), 1, + sym_inline_link_destination, + [21507] = 4, + ACTIONS(1683), 1, anon_sym_LBRACE, - ACTIONS(2173), 1, + ACTIONS(1687), 1, anon_sym_LBRACK, - STATE(320), 1, + STATE(221), 1, sym_inline_attribute, - ACTIONS(2171), 2, + ACTIONS(1685), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - [23028] = 5, - ACTIONS(2175), 1, + [21521] = 5, + ACTIONS(1679), 1, + anon_sym_LBRACK, + ACTIONS(1681), 1, + anon_sym_LPAREN, + ACTIONS(1689), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(2177), 1, + STATE(462), 1, + sym__link_label, + STATE(463), 1, + sym_inline_link_destination, + [21537] = 4, + ACTIONS(1687), 1, anon_sym_LBRACK, - ACTIONS(2179), 1, + ACTIONS(1691), 1, + anon_sym_LBRACE, + STATE(476), 1, + sym_inline_attribute, + ACTIONS(1685), 2, + anon_sym_LBRACK_RBRACK, + anon_sym_LPAREN, + [21551] = 5, + ACTIONS(1693), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(1695), 1, + anon_sym_LBRACK, + ACTIONS(1697), 1, + anon_sym_LPAREN, + STATE(313), 1, + sym_inline_link_destination, + STATE(333), 1, + sym__link_label, + [21567] = 4, + ACTIONS(1687), 1, + anon_sym_LBRACK, + ACTIONS(1699), 1, + anon_sym_LBRACE, + STATE(379), 1, + sym_inline_attribute, + ACTIONS(1685), 2, + anon_sym_LBRACK_RBRACK, + anon_sym_LPAREN, + [21581] = 4, + ACTIONS(1687), 1, + anon_sym_LBRACK, + ACTIONS(1701), 1, + anon_sym_LBRACE, + STATE(432), 1, + sym_inline_attribute, + ACTIONS(1685), 2, + anon_sym_LBRACK_RBRACK, + anon_sym_LPAREN, + [21595] = 5, + ACTIONS(1703), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(1705), 1, + anon_sym_LBRACK, + ACTIONS(1707), 1, + anon_sym_LPAREN, + STATE(235), 1, + sym_inline_link_destination, + STATE(236), 1, + sym__link_label, + [21611] = 5, + ACTIONS(1709), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(1711), 1, + anon_sym_LBRACK, + ACTIONS(1713), 1, + anon_sym_LPAREN, + STATE(421), 1, + sym__link_label, + STATE(422), 1, + sym_inline_link_destination, + [21627] = 5, + ACTIONS(1711), 1, + anon_sym_LBRACK, + ACTIONS(1713), 1, anon_sym_LPAREN, - STATE(351), 1, + ACTIONS(1715), 1, + anon_sym_LBRACK_RBRACK, + STATE(418), 1, sym__link_label, - STATE(352), 1, + STATE(419), 1, sym_inline_link_destination, - [23044] = 5, - ACTIONS(2181), 1, + [21643] = 5, + ACTIONS(1717), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(2183), 1, + ACTIONS(1719), 1, anon_sym_LBRACK, - ACTIONS(2185), 1, + ACTIONS(1721), 1, anon_sym_LPAREN, - STATE(443), 1, + STATE(505), 1, sym__link_label, - STATE(452), 1, + STATE(506), 1, sym_inline_link_destination, - [23060] = 5, - ACTIONS(2187), 1, + [21659] = 5, + ACTIONS(1719), 1, + anon_sym_LBRACK, + ACTIONS(1721), 1, + anon_sym_LPAREN, + ACTIONS(1723), 1, + anon_sym_LBRACK_RBRACK, + STATE(508), 1, + sym__link_label, + STATE(509), 1, + sym_inline_link_destination, + [21675] = 5, + ACTIONS(1705), 1, + anon_sym_LBRACK, + ACTIONS(1707), 1, + anon_sym_LPAREN, + ACTIONS(1725), 1, + anon_sym_LBRACK_RBRACK, + STATE(311), 1, + sym__link_label, + STATE(312), 1, + sym_inline_link_destination, + [21691] = 4, + ACTIONS(1687), 1, + anon_sym_LBRACK, + ACTIONS(1727), 1, + anon_sym_LBRACE, + STATE(518), 1, + sym_inline_attribute, + ACTIONS(1685), 2, + anon_sym_LBRACK_RBRACK, + anon_sym_LPAREN, + [21705] = 4, + ACTIONS(1687), 1, + anon_sym_LBRACK, + ACTIONS(1729), 1, + anon_sym_LBRACE, + STATE(387), 1, + sym_inline_attribute, + ACTIONS(1685), 2, + anon_sym_LBRACK_RBRACK, + anon_sym_LPAREN, + [21719] = 5, + ACTIONS(1731), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(1733), 1, + anon_sym_LBRACK, + ACTIONS(1735), 1, + anon_sym_LPAREN, + STATE(546), 1, + sym__link_label, + STATE(547), 1, + sym_inline_link_destination, + [21735] = 5, + ACTIONS(1673), 1, + anon_sym_LBRACK, + ACTIONS(1675), 1, + anon_sym_LPAREN, + ACTIONS(1737), 1, + anon_sym_LBRACK_RBRACK, + STATE(248), 1, + sym__link_label, + STATE(249), 1, + sym_inline_link_destination, + [21751] = 5, + ACTIONS(1695), 1, + anon_sym_LBRACK, + ACTIONS(1697), 1, + anon_sym_LPAREN, + ACTIONS(1739), 1, + anon_sym_LBRACK_RBRACK, + STATE(356), 1, + sym_inline_link_destination, + STATE(357), 1, + sym__link_label, + [21767] = 5, + ACTIONS(1741), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(1743), 1, + anon_sym_LBRACK, + ACTIONS(1745), 1, + anon_sym_LPAREN, + STATE(331), 1, + sym__link_label, + STATE(332), 1, + sym_inline_link_destination, + [21783] = 5, + ACTIONS(1747), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(1749), 1, + anon_sym_LBRACK, + ACTIONS(1751), 1, + anon_sym_LPAREN, + STATE(376), 1, + sym__link_label, + STATE(377), 1, + sym_inline_link_destination, + [21799] = 5, + ACTIONS(1749), 1, + anon_sym_LBRACK, + ACTIONS(1751), 1, + anon_sym_LPAREN, + ACTIONS(1753), 1, + anon_sym_LBRACK_RBRACK, + STATE(373), 1, + sym__link_label, + STATE(374), 1, + sym_inline_link_destination, + [21815] = 4, + ACTIONS(1687), 1, + anon_sym_LBRACK, + ACTIONS(1755), 1, + anon_sym_LBRACE, + STATE(261), 1, + sym_inline_attribute, + ACTIONS(1685), 2, + anon_sym_LBRACK_RBRACK, + anon_sym_LPAREN, + [21829] = 5, + ACTIONS(1733), 1, + anon_sym_LBRACK, + ACTIONS(1735), 1, + anon_sym_LPAREN, + ACTIONS(1757), 1, + anon_sym_LBRACK_RBRACK, + STATE(550), 1, + sym__link_label, + STATE(551), 1, + sym_inline_link_destination, + [21845] = 5, + ACTIONS(1759), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(1761), 1, + anon_sym_LBRACK, + ACTIONS(1763), 1, + anon_sym_LPAREN, + STATE(289), 1, + sym__link_label, + STATE(290), 1, + sym_inline_link_destination, + [21861] = 3, + ACTIONS(1765), 1, + anon_sym_PERCENT, + STATE(689), 1, + aux_sym__comment_with_newline_repeat1, + ACTIONS(1667), 3, + sym_backslash_escape, + aux_sym__comment_with_newline_token1, + sym__newline, + [21873] = 3, + ACTIONS(1770), 1, + anon_sym_PERCENT, + STATE(689), 1, + aux_sym__comment_with_newline_repeat1, + ACTIONS(1767), 3, + sym_backslash_escape, + aux_sym__comment_with_newline_token1, + sym__newline, + [21885] = 4, + ACTIONS(1687), 1, + anon_sym_LBRACK, + ACTIONS(1772), 1, + anon_sym_LBRACE, + STATE(560), 1, + sym_inline_attribute, + ACTIONS(1685), 2, + anon_sym_LBRACK_RBRACK, + anon_sym_LPAREN, + [21899] = 4, + ACTIONS(1687), 1, + anon_sym_LBRACK, + ACTIONS(1774), 1, + anon_sym_LBRACE, + STATE(310), 1, + sym_inline_attribute, + ACTIONS(1685), 2, + anon_sym_LBRACK_RBRACK, + anon_sym_LPAREN, + [21913] = 5, + ACTIONS(1761), 1, + anon_sym_LBRACK, + ACTIONS(1763), 1, + anon_sym_LPAREN, + ACTIONS(1776), 1, + anon_sym_LBRACK_RBRACK, + STATE(286), 1, + sym__link_label, + STATE(287), 1, + sym_inline_link_destination, + [21929] = 5, + ACTIONS(1778), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(2189), 1, + ACTIONS(1780), 1, anon_sym_LBRACK, - ACTIONS(2191), 1, + ACTIONS(1782), 1, anon_sym_LPAREN, - STATE(561), 1, + STATE(412), 1, sym_inline_link_destination, - STATE(611), 1, + STATE(424), 1, sym__link_label, - [23076] = 5, - ACTIONS(2189), 1, + [21945] = 4, + ACTIONS(1687), 1, anon_sym_LBRACK, - ACTIONS(2191), 1, - anon_sym_LPAREN, - ACTIONS(2193), 1, + ACTIONS(1784), 1, + anon_sym_LBRACE, + STATE(297), 1, + sym_inline_attribute, + ACTIONS(1685), 2, anon_sym_LBRACK_RBRACK, - STATE(608), 1, - sym__link_label, - STATE(609), 1, - sym_inline_link_destination, - [23092] = 4, - ACTIONS(2173), 1, + anon_sym_LPAREN, + [21959] = 4, + ACTIONS(1687), 1, anon_sym_LBRACK, - ACTIONS(2195), 1, + ACTIONS(1786), 1, anon_sym_LBRACE, - STATE(554), 1, + STATE(342), 1, sym_inline_attribute, - ACTIONS(2171), 2, + ACTIONS(1685), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - [23106] = 5, - ACTIONS(2177), 1, + [21973] = 5, + ACTIONS(1780), 1, anon_sym_LBRACK, - ACTIONS(2179), 1, + ACTIONS(1782), 1, anon_sym_LPAREN, - ACTIONS(2197), 1, + ACTIONS(1788), 1, + anon_sym_LBRACK_RBRACK, + STATE(449), 1, + sym_inline_link_destination, + STATE(450), 1, + sym__link_label, + [21989] = 5, + ACTIONS(1743), 1, + anon_sym_LBRACK, + ACTIONS(1745), 1, + anon_sym_LPAREN, + ACTIONS(1790), 1, anon_sym_LBRACK_RBRACK, - STATE(354), 1, + STATE(328), 1, sym__link_label, - STATE(355), 1, + STATE(329), 1, sym_inline_link_destination, - [23122] = 5, + [22005] = 1, + ACTIONS(1792), 4, + sym_backslash_escape, + anon_sym_PERCENT, + aux_sym__comment_with_newline_token1, + sym__newline, + [22012] = 2, + ACTIONS(1796), 1, + anon_sym_LBRACK, + ACTIONS(1794), 2, + anon_sym_LBRACK_RBRACK, + anon_sym_LPAREN, + [22020] = 3, + ACTIONS(1798), 1, + anon_sym_DQUOTE, + ACTIONS(1800), 1, + aux_sym_value_token2, + STATE(656), 1, + sym_value, + [22030] = 2, + ACTIONS(1804), 1, + anon_sym_LBRACK, + ACTIONS(1802), 2, + anon_sym_LBRACK_RBRACK, + anon_sym_LPAREN, + [22038] = 2, + ACTIONS(1543), 1, + anon_sym_PERCENT, + STATE(857), 1, + sym__comment_with_newline, + [22045] = 2, + ACTIONS(1806), 1, + sym__strong_mark_begin, + ACTIONS(1809), 1, + sym__in_fallback, + [22052] = 2, + ACTIONS(1811), 1, + sym__superscript_mark_begin, + ACTIONS(1814), 1, + sym__in_fallback, + [22059] = 2, + ACTIONS(1814), 1, + sym__in_fallback, + ACTIONS(1816), 1, + sym__subscript_mark_begin, + [22066] = 2, + ACTIONS(1814), 1, + sym__in_fallback, + ACTIONS(1819), 1, + sym__highlighted_mark_begin, + [22073] = 2, + ACTIONS(1814), 1, + sym__in_fallback, + ACTIONS(1822), 1, + sym__insert_mark_begin, + [22080] = 2, + ACTIONS(1814), 1, + sym__in_fallback, + ACTIONS(1825), 1, + sym__delete_mark_begin, + [22087] = 2, + ACTIONS(1828), 1, + sym__emphasis_mark_begin, + ACTIONS(1831), 1, + sym__in_fallback, + [22094] = 2, + ACTIONS(1833), 1, + sym__emphasis_mark_begin, + ACTIONS(1836), 1, + sym__in_fallback, + [22101] = 2, + ACTIONS(1836), 1, + sym__in_fallback, + ACTIONS(1838), 1, + sym__strong_mark_begin, + [22108] = 2, + ACTIONS(1831), 1, + sym__in_fallback, + ACTIONS(1841), 1, + sym__subscript_mark_begin, + [22115] = 2, + ACTIONS(1831), 1, + sym__in_fallback, + ACTIONS(1844), 1, + sym__superscript_mark_begin, + [22122] = 2, + ACTIONS(1543), 1, + anon_sym_PERCENT, + STATE(1053), 1, + sym__comment_with_newline, + [22129] = 2, + ACTIONS(1831), 1, + sym__in_fallback, + ACTIONS(1847), 1, + sym__insert_mark_begin, + [22136] = 2, + ACTIONS(1850), 1, + sym__emphasis_mark_begin, + ACTIONS(1853), 1, + sym__in_fallback, + [22143] = 2, + ACTIONS(1543), 1, + anon_sym_PERCENT, + STATE(983), 1, + sym__comment_with_newline, + [22150] = 2, + ACTIONS(1855), 1, + sym__delete_mark_begin, + ACTIONS(1858), 1, + sym__in_fallback, + [22157] = 2, + ACTIONS(1858), 1, + sym__in_fallback, + ACTIONS(1860), 1, + sym__insert_mark_begin, + [22164] = 2, + ACTIONS(1858), 1, + sym__in_fallback, + ACTIONS(1863), 1, + sym__highlighted_mark_begin, + [22171] = 2, + ACTIONS(1858), 1, + sym__in_fallback, + ACTIONS(1866), 1, + sym__subscript_mark_begin, + [22178] = 2, + ACTIONS(1858), 1, + sym__in_fallback, + ACTIONS(1869), 1, + sym__superscript_mark_begin, + [22185] = 2, + ACTIONS(1872), 1, + sym__emphasis_mark_begin, + ACTIONS(1875), 1, + sym__in_fallback, + [22192] = 2, + ACTIONS(1875), 1, + sym__in_fallback, + ACTIONS(1877), 1, + sym__strong_mark_begin, + [22199] = 2, + ACTIONS(1875), 1, + sym__in_fallback, + ACTIONS(1880), 1, + sym__superscript_mark_begin, + [22206] = 2, + ACTIONS(1875), 1, + sym__in_fallback, + ACTIONS(1883), 1, + sym__subscript_mark_begin, + [22213] = 2, + ACTIONS(1875), 1, + sym__in_fallback, + ACTIONS(1886), 1, + sym__highlighted_mark_begin, + [22220] = 2, + ACTIONS(1875), 1, + sym__in_fallback, + ACTIONS(1889), 1, + sym__insert_mark_begin, + [22227] = 2, + ACTIONS(1875), 1, + sym__in_fallback, + ACTIONS(1892), 1, + sym__delete_mark_begin, + [22234] = 2, + ACTIONS(1858), 1, + sym__in_fallback, + ACTIONS(1895), 1, + sym__strong_mark_begin, + [22241] = 2, + ACTIONS(1858), 1, + sym__in_fallback, + ACTIONS(1898), 1, + sym__emphasis_mark_begin, + [22248] = 2, + ACTIONS(1901), 1, + sym__emphasis_mark_begin, + ACTIONS(1904), 1, + sym__in_fallback, + [22255] = 2, + ACTIONS(1904), 1, + sym__in_fallback, + ACTIONS(1906), 1, + sym__strong_mark_begin, + [22262] = 2, + ACTIONS(1543), 1, + anon_sym_PERCENT, + STATE(827), 1, + sym__comment_with_newline, + [22269] = 2, + ACTIONS(1909), 1, + sym__strong_mark_begin, + ACTIONS(1912), 1, + sym__in_fallback, + [22276] = 2, + ACTIONS(1912), 1, + sym__in_fallback, + ACTIONS(1914), 1, + sym__emphasis_mark_begin, + [22283] = 2, + ACTIONS(1853), 1, + sym__in_fallback, + ACTIONS(1917), 1, + sym__strong_mark_begin, + [22290] = 2, + ACTIONS(1543), 1, + anon_sym_PERCENT, + STATE(887), 1, + sym__comment_with_newline, + [22297] = 2, + ACTIONS(1920), 1, + sym__delete_mark_begin, + ACTIONS(1923), 1, + sym__in_fallback, + [22304] = 2, + ACTIONS(1923), 1, + sym__in_fallback, + ACTIONS(1925), 1, + sym__insert_mark_begin, + [22311] = 2, + ACTIONS(1923), 1, + sym__in_fallback, + ACTIONS(1928), 1, + sym__highlighted_mark_begin, + [22318] = 2, + ACTIONS(1543), 1, + anon_sym_PERCENT, + STATE(840), 1, + sym__comment_with_newline, + [22325] = 2, + ACTIONS(1814), 1, + sym__in_fallback, + ACTIONS(1931), 1, + sym__emphasis_mark_begin, + [22332] = 2, + ACTIONS(1923), 1, + sym__in_fallback, + ACTIONS(1934), 1, + sym__subscript_mark_begin, + [22339] = 2, + ACTIONS(1923), 1, + sym__in_fallback, + ACTIONS(1937), 1, + sym__superscript_mark_begin, + [22346] = 2, + ACTIONS(1940), 1, + sym__strong_mark_begin, + ACTIONS(1943), 1, + sym__in_fallback, + [22353] = 2, + ACTIONS(1943), 1, + sym__in_fallback, + ACTIONS(1945), 1, + sym__emphasis_mark_begin, + [22360] = 2, + ACTIONS(1948), 1, + sym__emphasis_mark_begin, + ACTIONS(1951), 1, + sym__in_fallback, + [22367] = 2, + ACTIONS(1951), 1, + sym__in_fallback, + ACTIONS(1953), 1, + sym__strong_mark_begin, + [22374] = 2, + ACTIONS(1951), 1, + sym__in_fallback, + ACTIONS(1956), 1, + sym__superscript_mark_begin, + [22381] = 2, + ACTIONS(1951), 1, + sym__in_fallback, + ACTIONS(1959), 1, + sym__subscript_mark_begin, + [22388] = 2, + ACTIONS(1951), 1, + sym__in_fallback, + ACTIONS(1962), 1, + sym__highlighted_mark_begin, + [22395] = 2, + ACTIONS(1951), 1, + sym__in_fallback, + ACTIONS(1965), 1, + sym__insert_mark_begin, + [22402] = 2, + ACTIONS(1951), 1, + sym__in_fallback, + ACTIONS(1968), 1, + sym__delete_mark_begin, + [22409] = 2, + ACTIONS(1543), 1, + anon_sym_PERCENT, + STATE(997), 1, + sym__comment_with_newline, + [22416] = 2, + ACTIONS(1543), 1, + anon_sym_PERCENT, + STATE(953), 1, + sym__comment_with_newline, + [22423] = 2, + ACTIONS(1814), 1, + sym__in_fallback, + ACTIONS(1971), 1, + sym__strong_mark_begin, + [22430] = 2, + ACTIONS(1809), 1, + sym__in_fallback, + ACTIONS(1974), 1, + sym__emphasis_mark_begin, + [22437] = 2, + ACTIONS(1977), 1, + sym__emphasis_mark_begin, + ACTIONS(1980), 1, + sym__in_fallback, + [22444] = 2, + ACTIONS(1980), 1, + sym__in_fallback, + ACTIONS(1982), 1, + sym__strong_mark_begin, + [22451] = 2, + ACTIONS(1985), 1, + sym__strong_mark_begin, + ACTIONS(1988), 1, + sym__in_fallback, + [22458] = 2, + ACTIONS(1990), 1, + sym__delete_mark_begin, + ACTIONS(1993), 1, + sym__in_fallback, + [22465] = 2, + ACTIONS(1993), 1, + sym__in_fallback, + ACTIONS(1995), 1, + sym__insert_mark_begin, + [22472] = 2, + ACTIONS(1988), 1, + sym__in_fallback, + ACTIONS(1998), 1, + sym__emphasis_mark_begin, + [22479] = 2, + ACTIONS(2001), 1, + sym__delete_mark_begin, + ACTIONS(2004), 1, + sym__in_fallback, + [22486] = 2, + ACTIONS(1993), 1, + sym__in_fallback, + ACTIONS(2006), 1, + sym__highlighted_mark_begin, + [22493] = 2, + ACTIONS(1993), 1, + sym__in_fallback, + ACTIONS(2009), 1, + sym__subscript_mark_begin, + [22500] = 2, + ACTIONS(1993), 1, + sym__in_fallback, + ACTIONS(2012), 1, + sym__superscript_mark_begin, + [22507] = 2, + ACTIONS(1993), 1, + sym__in_fallback, + ACTIONS(2015), 1, + sym__strong_mark_begin, + [22514] = 2, + ACTIONS(1993), 1, + sym__in_fallback, + ACTIONS(2018), 1, + sym__emphasis_mark_begin, + [22521] = 2, + ACTIONS(2004), 1, + sym__in_fallback, + ACTIONS(2021), 1, + sym__insert_mark_begin, + [22528] = 2, + ACTIONS(1923), 1, + sym__in_fallback, + ACTIONS(2024), 1, + sym__strong_mark_begin, + [22535] = 2, + ACTIONS(2004), 1, + sym__in_fallback, + ACTIONS(2027), 1, + sym__highlighted_mark_begin, + [22542] = 2, + ACTIONS(2030), 1, + sym__strong_mark_begin, + ACTIONS(2033), 1, + sym__in_fallback, + [22549] = 2, + ACTIONS(2033), 1, + sym__in_fallback, + ACTIONS(2035), 1, + sym__emphasis_mark_begin, + [22556] = 2, + ACTIONS(2004), 1, + sym__in_fallback, + ACTIONS(2038), 1, + sym__subscript_mark_begin, + [22563] = 2, + ACTIONS(2004), 1, + sym__in_fallback, + ACTIONS(2041), 1, + sym__superscript_mark_begin, + [22570] = 2, + ACTIONS(2044), 1, + sym__emphasis_mark_begin, + ACTIONS(2047), 1, + sym__in_fallback, + [22577] = 2, + ACTIONS(2047), 1, + sym__in_fallback, + ACTIONS(2049), 1, + sym__strong_mark_begin, + [22584] = 2, + ACTIONS(2047), 1, + sym__in_fallback, + ACTIONS(2052), 1, + sym__superscript_mark_begin, + [22591] = 2, + ACTIONS(2047), 1, + sym__in_fallback, + ACTIONS(2055), 1, + sym__subscript_mark_begin, + [22598] = 2, + ACTIONS(2047), 1, + sym__in_fallback, + ACTIONS(2058), 1, + sym__highlighted_mark_begin, + [22605] = 2, + ACTIONS(2047), 1, + sym__in_fallback, + ACTIONS(2061), 1, + sym__insert_mark_begin, + [22612] = 2, + ACTIONS(2047), 1, + sym__in_fallback, + ACTIONS(2064), 1, + sym__delete_mark_begin, + [22619] = 2, + ACTIONS(2067), 1, + sym__delete_mark_begin, + ACTIONS(2070), 1, + sym__in_fallback, + [22626] = 2, + ACTIONS(2004), 1, + sym__in_fallback, + ACTIONS(2072), 1, + sym__strong_mark_begin, + [22633] = 2, + ACTIONS(2004), 1, + sym__in_fallback, + ACTIONS(2075), 1, + sym__emphasis_mark_begin, + [22640] = 2, + ACTIONS(2070), 1, + sym__in_fallback, + ACTIONS(2078), 1, + sym__insert_mark_begin, + [22647] = 2, + ACTIONS(2081), 1, + sym__emphasis_mark_begin, + ACTIONS(2084), 1, + sym__in_fallback, + [22654] = 2, + ACTIONS(2084), 1, + sym__in_fallback, + ACTIONS(2086), 1, + sym__strong_mark_begin, + [22661] = 2, + ACTIONS(1831), 1, + sym__in_fallback, + ACTIONS(2089), 1, + sym__highlighted_mark_begin, + [22668] = 2, + ACTIONS(2070), 1, + sym__in_fallback, + ACTIONS(2092), 1, + sym__highlighted_mark_begin, + [22675] = 2, + ACTIONS(2070), 1, + sym__in_fallback, + ACTIONS(2095), 1, + sym__subscript_mark_begin, + [22682] = 2, + ACTIONS(1923), 1, + sym__in_fallback, + ACTIONS(2098), 1, + sym__emphasis_mark_begin, + [22689] = 2, + ACTIONS(1543), 1, + anon_sym_PERCENT, + STATE(923), 1, + sym__comment_with_newline, + [22696] = 2, + ACTIONS(2070), 1, + sym__in_fallback, + ACTIONS(2101), 1, + sym__superscript_mark_begin, + [22703] = 2, + ACTIONS(2070), 1, + sym__in_fallback, + ACTIONS(2104), 1, + sym__strong_mark_begin, + [22710] = 2, + ACTIONS(2070), 1, + sym__in_fallback, + ACTIONS(2107), 1, + sym__emphasis_mark_begin, + [22717] = 2, + ACTIONS(1831), 1, + sym__in_fallback, + ACTIONS(2110), 1, + sym__strong_mark_begin, + [22724] = 2, + ACTIONS(1543), 1, + anon_sym_PERCENT, + STATE(904), 1, + sym__comment_with_newline, + [22731] = 2, + ACTIONS(1831), 1, + sym__in_fallback, + ACTIONS(2113), 1, + sym__delete_mark_begin, + [22738] = 2, + ACTIONS(2116), 1, + sym__emphasis_mark_begin, + ACTIONS(2119), 1, + sym__in_fallback, + [22745] = 2, + ACTIONS(2119), 1, + sym__in_fallback, + ACTIONS(2121), 1, + sym__strong_mark_begin, + [22752] = 2, + ACTIONS(2119), 1, + sym__in_fallback, + ACTIONS(2124), 1, + sym__superscript_mark_begin, + [22759] = 2, + ACTIONS(2119), 1, + sym__in_fallback, + ACTIONS(2127), 1, + sym__subscript_mark_begin, + [22766] = 2, + ACTIONS(2119), 1, + sym__in_fallback, + ACTIONS(2130), 1, + sym__highlighted_mark_begin, + [22773] = 2, + ACTIONS(2119), 1, + sym__in_fallback, + ACTIONS(2133), 1, + sym__insert_mark_begin, + [22780] = 2, + ACTIONS(2119), 1, + sym__in_fallback, + ACTIONS(2136), 1, + sym__delete_mark_begin, + [22787] = 2, + ACTIONS(1543), 1, + anon_sym_PERCENT, + STATE(872), 1, + sym__comment_with_newline, + [22794] = 2, + ACTIONS(2139), 1, + sym__id, + STATE(657), 1, + sym_class_name, + [22801] = 2, + ACTIONS(2141), 1, + sym__emphasis_mark_begin, + ACTIONS(2144), 1, + sym__in_fallback, + [22808] = 2, + ACTIONS(2144), 1, + sym__in_fallback, + ACTIONS(2146), 1, + sym__strong_mark_begin, + [22815] = 1, + ACTIONS(2149), 1, + sym_delete_end, + [22819] = 1, + ACTIONS(2151), 1, + sym_subscript_end, + [22823] = 1, + ACTIONS(2153), 1, + sym__newline, + [22827] = 1, + ACTIONS(2155), 1, + sym_insert_end, + [22831] = 1, + ACTIONS(2157), 1, + sym_delete_end, + [22835] = 1, + ACTIONS(2159), 1, + sym__verbatim_end, + [22839] = 1, + ACTIONS(2161), 1, + anon_sym_RBRACK2, + [22843] = 1, + ACTIONS(2163), 1, + anon_sym_RPAREN, + [22847] = 1, + ACTIONS(2165), 1, + anon_sym_RBRACE, + [22851] = 1, + ACTIONS(2167), 1, + anon_sym_GT, + [22855] = 1, + ACTIONS(2169), 1, + anon_sym_RBRACK, + [22859] = 1, + ACTIONS(2171), 1, + anon_sym_GT, + [22863] = 1, + ACTIONS(2173), 1, + sym_subscript_end, + [22867] = 1, + ACTIONS(2175), 1, + sym__verbatim_end, + [22871] = 1, + ACTIONS(2177), 1, + anon_sym_RBRACE, + [22875] = 1, + ACTIONS(2179), 1, + sym_emphasis_end, + [22879] = 1, + ACTIONS(2181), 1, + sym_strong_end, + [22883] = 1, ACTIONS(2183), 1, - anon_sym_LBRACK, + sym_superscript_end, + [22887] = 1, ACTIONS(2185), 1, - anon_sym_LPAREN, + sym_subscript_end, + [22891] = 1, + ACTIONS(2187), 1, + sym_highlighted_end, + [22895] = 1, + ACTIONS(2189), 1, + sym_insert_end, + [22899] = 1, + ACTIONS(2191), 1, + sym_superscript_end, + [22903] = 1, + ACTIONS(2193), 1, + anon_sym_RBRACK2, + [22907] = 1, + ACTIONS(2195), 1, + anon_sym_RPAREN, + [22911] = 1, + ACTIONS(2197), 1, + anon_sym_RBRACE, + [22915] = 1, ACTIONS(2199), 1, - anon_sym_LBRACK_RBRACK, - STATE(464), 1, - sym__link_label, - STATE(484), 1, - sym_inline_link_destination, - [23138] = 5, + sym_strong_end, + [22919] = 1, ACTIONS(2201), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(2203), 1, - anon_sym_LBRACK, - ACTIONS(2205), 1, - anon_sym_LPAREN, - STATE(302), 1, - sym__link_label, - STATE(303), 1, - sym_inline_link_destination, - [23154] = 5, + sym_emphasis_end, + [22923] = 1, ACTIONS(2203), 1, - anon_sym_LBRACK, + anon_sym_RBRACE, + [22927] = 1, ACTIONS(2205), 1, - anon_sym_LPAREN, + sym__verbatim_end, + [22931] = 1, ACTIONS(2207), 1, - anon_sym_LBRACK_RBRACK, - STATE(299), 1, - sym__link_label, - STATE(300), 1, - sym_inline_link_destination, - [23170] = 4, - ACTIONS(2173), 1, - anon_sym_LBRACK, + anon_sym_RBRACK, + [22935] = 1, ACTIONS(2209), 1, - anon_sym_LBRACE, - STATE(233), 1, - sym_inline_attribute, - ACTIONS(2171), 2, - anon_sym_LBRACK_RBRACK, - anon_sym_LPAREN, - [23184] = 5, + anon_sym_GT, + [22939] = 1, ACTIONS(2211), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(2213), 1, - anon_sym_LBRACK, - ACTIONS(2215), 1, - anon_sym_LPAREN, - STATE(539), 1, - sym__link_label, - STATE(540), 1, - sym_inline_link_destination, - [23200] = 5, + sym__verbatim_end, + [22943] = 1, ACTIONS(2213), 1, - anon_sym_LBRACK, + sym__newline, + [22947] = 1, ACTIONS(2215), 1, - anon_sym_LPAREN, + sym__newline, + [22951] = 1, ACTIONS(2217), 1, - anon_sym_LBRACK_RBRACK, - STATE(536), 1, - sym__link_label, - STATE(537), 1, - sym_inline_link_destination, - [23216] = 4, - ACTIONS(2173), 1, - anon_sym_LBRACK, + anon_sym_RBRACE, + [22955] = 1, ACTIONS(2219), 1, - anon_sym_LBRACE, - STATE(514), 1, - sym_inline_attribute, - ACTIONS(2171), 2, - anon_sym_LBRACK_RBRACK, - anon_sym_LPAREN, - [23230] = 3, + sym__verbatim_end, + [22959] = 1, + ACTIONS(2221), 1, + anon_sym_RPAREN, + [22963] = 1, ACTIONS(2223), 1, - anon_sym_PERCENT, - STATE(702), 1, - aux_sym__comment_with_newline_repeat1, - ACTIONS(2221), 3, - sym_backslash_escape, - aux_sym__comment_with_newline_token1, - sym__newline, - [23242] = 3, + anon_sym_RBRACK2, + [22967] = 1, ACTIONS(2225), 1, - anon_sym_PERCENT, - STATE(686), 1, - aux_sym__comment_with_newline_repeat1, - ACTIONS(2221), 3, - sym_backslash_escape, - aux_sym__comment_with_newline_token1, - sym__newline, - [23254] = 5, + sym_delete_end, + [22971] = 1, ACTIONS(2227), 1, - anon_sym_LBRACK_RBRACK, + anon_sym_GT, + [22975] = 1, ACTIONS(2229), 1, - anon_sym_LBRACK, + anon_sym_RBRACK, + [22979] = 1, ACTIONS(2231), 1, - anon_sym_LPAREN, - STATE(275), 1, - sym_inline_link_destination, - STATE(379), 1, - sym__link_label, - [23270] = 5, - ACTIONS(2160), 1, - anon_sym_LBRACK, - ACTIONS(2162), 1, - anon_sym_LPAREN, + sym_insert_end, + [22983] = 1, ACTIONS(2233), 1, - anon_sym_LBRACK_RBRACK, - STATE(498), 1, - sym__link_label, - STATE(499), 1, - sym_inline_link_destination, - [23286] = 5, - ACTIONS(2229), 1, - anon_sym_LBRACK, - ACTIONS(2231), 1, - anon_sym_LPAREN, + sym_highlighted_end, + [22987] = 1, ACTIONS(2235), 1, - anon_sym_LBRACK_RBRACK, - STATE(382), 1, - sym_inline_link_destination, - STATE(383), 1, - sym__link_label, - [23302] = 5, + sym__verbatim_end, + [22991] = 1, ACTIONS(2237), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(2239), 1, - anon_sym_LBRACK, - ACTIONS(2241), 1, - anon_sym_LPAREN, - STATE(250), 1, - sym__link_label, - STATE(251), 1, - sym_inline_link_destination, - [23318] = 5, + anon_sym_RBRACE, + [22995] = 1, ACTIONS(2239), 1, - anon_sym_LBRACK, + sym_emphasis_end, + [22999] = 1, ACTIONS(2241), 1, - anon_sym_LPAREN, + sym_strong_end, + [23003] = 1, ACTIONS(2243), 1, - anon_sym_LBRACK_RBRACK, - STATE(253), 1, - sym__link_label, - STATE(254), 1, - sym_inline_link_destination, - [23334] = 4, - ACTIONS(2173), 1, - anon_sym_LBRACK, + sym_superscript_end, + [23007] = 1, ACTIONS(2245), 1, - anon_sym_LBRACE, - STATE(476), 1, - sym_inline_attribute, - ACTIONS(2171), 2, - anon_sym_LBRACK_RBRACK, - anon_sym_LPAREN, - [23348] = 5, + sym_subscript_end, + [23011] = 1, ACTIONS(2247), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(2249), 1, - anon_sym_LBRACK, - ACTIONS(2251), 1, - anon_sym_LPAREN, - STATE(276), 1, - sym_inline_link_destination, - STATE(278), 1, - sym__link_label, - [23364] = 5, + sym_highlighted_end, + [23015] = 1, ACTIONS(2249), 1, - anon_sym_LBRACK, + sym_insert_end, + [23019] = 1, ACTIONS(2251), 1, - anon_sym_LPAREN, + sym_delete_end, + [23023] = 1, ACTIONS(2253), 1, - anon_sym_LBRACK_RBRACK, - STATE(218), 1, - sym__link_label, - STATE(219), 1, - sym_inline_link_destination, - [23380] = 4, - ACTIONS(2173), 1, - anon_sym_LBRACK, + anon_sym_RBRACK2, + [23027] = 1, ACTIONS(2255), 1, - anon_sym_LBRACE, - STATE(372), 1, - sym_inline_attribute, - ACTIONS(2171), 2, - anon_sym_LBRACK_RBRACK, - anon_sym_LPAREN, - [23394] = 5, + anon_sym_RPAREN, + [23031] = 1, ACTIONS(2257), 1, - anon_sym_LBRACK_RBRACK, + anon_sym_RBRACE, + [23035] = 1, ACTIONS(2259), 1, - anon_sym_LBRACK, + sym_subscript_end, + [23039] = 1, ACTIONS(2261), 1, - anon_sym_LPAREN, - STATE(403), 1, - sym__link_label, - STATE(404), 1, - sym_inline_link_destination, - [23410] = 5, + sym_superscript_end, + [23043] = 1, ACTIONS(2263), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(2265), 1, - anon_sym_LBRACK, - ACTIONS(2267), 1, - anon_sym_LPAREN, - STATE(458), 1, - sym__link_label, - STATE(459), 1, - sym_inline_link_destination, - [23426] = 5, + sym_strong_end, + [23047] = 1, ACTIONS(2265), 1, - anon_sym_LBRACK, + sym_emphasis_end, + [23051] = 1, ACTIONS(2267), 1, - anon_sym_LPAREN, + anon_sym_RBRACE, + [23055] = 1, ACTIONS(2269), 1, - anon_sym_LBRACK_RBRACK, - STATE(455), 1, - sym__link_label, - STATE(456), 1, - sym_inline_link_destination, - [23442] = 4, - ACTIONS(2173), 1, - anon_sym_LBRACK, + sym__verbatim_end, + [23059] = 1, ACTIONS(2271), 1, - anon_sym_LBRACE, - STATE(424), 1, - sym_inline_attribute, - ACTIONS(2171), 2, - anon_sym_LBRACK_RBRACK, - anon_sym_LPAREN, - [23456] = 4, - ACTIONS(2173), 1, - anon_sym_LBRACK, + anon_sym_RBRACK, + [23063] = 1, ACTIONS(2273), 1, - anon_sym_LBRACE, - STATE(614), 1, - sym_inline_attribute, - ACTIONS(2171), 2, - anon_sym_LBRACK_RBRACK, - anon_sym_LPAREN, - [23470] = 5, - ACTIONS(2259), 1, - anon_sym_LBRACK, - ACTIONS(2261), 1, - anon_sym_LPAREN, + sym__newline, + [23067] = 1, ACTIONS(2275), 1, - anon_sym_LBRACK_RBRACK, - STATE(406), 1, - sym__link_label, - STATE(407), 1, - sym_inline_link_destination, - [23486] = 4, - ACTIONS(2173), 1, - anon_sym_LBRACK, + anon_sym_GT, + [23071] = 1, ACTIONS(2277), 1, - anon_sym_LBRACE, - STATE(330), 1, - sym_inline_attribute, - ACTIONS(2171), 2, - anon_sym_LBRACK_RBRACK, - anon_sym_LPAREN, - [23500] = 4, - ACTIONS(2173), 1, - anon_sym_LBRACK, + sym__verbatim_end, + [23075] = 1, ACTIONS(2279), 1, - anon_sym_LBRACE, - STATE(461), 1, - sym_inline_attribute, - ACTIONS(2171), 2, - anon_sym_LBRACK_RBRACK, - anon_sym_LPAREN, - [23514] = 4, - ACTIONS(2173), 1, - anon_sym_LBRACK, + sym__verbatim_end, + [23079] = 1, ACTIONS(2281), 1, - anon_sym_LBRACE, - STATE(268), 1, - sym_inline_attribute, - ACTIONS(2171), 2, - anon_sym_LBRACK_RBRACK, - anon_sym_LPAREN, - [23528] = 1, - ACTIONS(2283), 4, - sym_backslash_escape, - anon_sym_PERCENT, - aux_sym__comment_with_newline_token1, sym__newline, - [23535] = 2, + [23083] = 1, + ACTIONS(2283), 1, + anon_sym_RBRACE, + [23087] = 1, + ACTIONS(2285), 1, + anon_sym_RPAREN, + [23091] = 1, ACTIONS(2287), 1, - anon_sym_LBRACK, - ACTIONS(2285), 2, - anon_sym_LBRACK_RBRACK, - anon_sym_LPAREN, - [23543] = 3, + anon_sym_GT, + [23095] = 1, ACTIONS(2289), 1, - anon_sym_STAR, + anon_sym_RBRACK, + [23099] = 1, ACTIONS(2291), 1, - aux_sym_strong_end_token1, - STATE(265), 1, - sym_strong_end, - [23553] = 3, + anon_sym_RBRACK2, + [23103] = 1, ACTIONS(2293), 1, - anon_sym_STAR, + sym_delete_end, + [23107] = 1, ACTIONS(2295), 1, - aux_sym_strong_end_token1, - STATE(421), 1, - sym_strong_end, - [23563] = 3, + sym__verbatim_end, + [23111] = 1, ACTIONS(2297), 1, - anon_sym_DQUOTE, + anon_sym_RBRACE, + [23115] = 1, ACTIONS(2299), 1, - aux_sym_value_token2, - STATE(679), 1, - sym_value, - [23573] = 3, + sym_emphasis_end, + [23119] = 1, ACTIONS(2301), 1, - anon_sym_STAR, - ACTIONS(2303), 1, - aux_sym_strong_end_token1, - STATE(473), 1, sym_strong_end, - [23583] = 3, + [23123] = 1, + ACTIONS(2303), 1, + sym_superscript_end, + [23127] = 1, ACTIONS(2305), 1, - anon_sym_STAR, + sym_subscript_end, + [23131] = 1, ACTIONS(2307), 1, - aux_sym_strong_end_token1, - STATE(333), 1, - sym_strong_end, - [23593] = 3, + sym_highlighted_end, + [23135] = 1, ACTIONS(2309), 1, - anon_sym_STAR, + sym_insert_end, + [23139] = 1, ACTIONS(2311), 1, - aux_sym_strong_end_token1, - STATE(369), 1, - sym_strong_end, - [23603] = 3, + sym_delete_end, + [23143] = 1, ACTIONS(2313), 1, - anon_sym_STAR, + anon_sym_RBRACK2, + [23147] = 1, ACTIONS(2315), 1, - aux_sym_strong_end_token1, - STATE(511), 1, - sym_strong_end, - [23613] = 3, + anon_sym_RPAREN, + [23151] = 1, ACTIONS(2317), 1, - anon_sym_STAR, + anon_sym_RBRACE, + [23155] = 1, ACTIONS(2319), 1, - aux_sym_strong_end_token1, - STATE(317), 1, - sym_strong_end, - [23623] = 3, + sym_insert_end, + [23159] = 1, ACTIONS(2321), 1, - anon_sym_STAR, + sym_highlighted_end, + [23163] = 1, ACTIONS(2323), 1, - aux_sym_strong_end_token1, - STATE(230), 1, - sym_strong_end, - [23633] = 3, + sym_subscript_end, + [23167] = 1, ACTIONS(2325), 1, - anon_sym_STAR, + sym_superscript_end, + [23171] = 1, ACTIONS(2327), 1, - aux_sym_strong_end_token1, - STATE(552), 1, sym_strong_end, - [23643] = 3, + [23175] = 1, ACTIONS(2329), 1, - anon_sym_STAR, + sym_emphasis_end, + [23179] = 1, ACTIONS(2331), 1, - aux_sym_strong_end_token1, - STATE(625), 1, - sym_strong_end, - [23653] = 3, + anon_sym_RBRACE, + [23183] = 1, ACTIONS(2333), 1, - anon_sym_STAR, + sym__verbatim_end, + [23187] = 1, ACTIONS(2335), 1, - aux_sym_strong_end_token1, - STATE(487), 1, - sym_strong_end, - [23663] = 2, + anon_sym_RBRACK, + [23191] = 1, + ACTIONS(2337), 1, + anon_sym_RPAREN, + [23195] = 1, ACTIONS(2339), 1, - anon_sym_LBRACK, - ACTIONS(2337), 2, - anon_sym_LBRACK_RBRACK, - anon_sym_LPAREN, - [23671] = 2, + sym__verbatim_end, + [23199] = 1, ACTIONS(2341), 1, - anon_sym_TILDE, + sym__newline, + [23203] = 1, ACTIONS(2343), 1, - anon_sym_TILDE_RBRACE, - [23678] = 2, + anon_sym_RBRACE, + [23207] = 1, ACTIONS(2345), 1, - anon_sym_CARET, + anon_sym_RPAREN, + [23211] = 1, ACTIONS(2347), 1, - anon_sym_CARET_RBRACE, - [23685] = 2, + anon_sym_RBRACK2, + [23215] = 1, ACTIONS(2349), 1, - anon_sym_CARET, + sym_delete_end, + [23219] = 1, ACTIONS(2351), 1, - anon_sym_CARET_RBRACE, - [23692] = 2, + sym_insert_end, + [23223] = 1, ACTIONS(2353), 1, - anon_sym_TILDE, + sym_highlighted_end, + [23227] = 1, ACTIONS(2355), 1, - anon_sym_TILDE_RBRACE, - [23699] = 2, + sym_subscript_end, + [23231] = 1, ACTIONS(2357), 1, - sym__emphasis_mark_begin, - ACTIONS(2360), 1, - sym__in_fallback, - [23706] = 2, - ACTIONS(2362), 1, - sym__id, - STATE(683), 1, - sym_class_name, - [23713] = 2, - ACTIONS(2034), 1, - anon_sym_PERCENT, - STATE(883), 1, - sym__comment_with_newline, - [23720] = 2, - ACTIONS(2034), 1, - anon_sym_PERCENT, - STATE(861), 1, - sym__comment_with_newline, - [23727] = 2, - ACTIONS(2034), 1, - anon_sym_PERCENT, - STATE(844), 1, - sym__comment_with_newline, - [23734] = 2, - ACTIONS(2034), 1, - anon_sym_PERCENT, - STATE(826), 1, - sym__comment_with_newline, - [23741] = 2, - ACTIONS(2034), 1, - anon_sym_PERCENT, - STATE(809), 1, - sym__comment_with_newline, - [23748] = 2, - ACTIONS(2364), 1, - sym__emphasis_mark_begin, + sym_superscript_end, + [23235] = 1, + ACTIONS(2359), 1, + sym_strong_end, + [23239] = 1, + ACTIONS(2361), 1, + sym_emphasis_end, + [23243] = 1, + ACTIONS(2363), 1, + sym__verbatim_content, + [23247] = 1, + ACTIONS(2365), 1, + anon_sym_RBRACK, + [23251] = 1, ACTIONS(2367), 1, - sym__in_fallback, - [23755] = 2, - ACTIONS(2034), 1, - anon_sym_PERCENT, - STATE(880), 1, - sym__comment_with_newline, - [23762] = 2, - ACTIONS(2034), 1, - anon_sym_PERCENT, - STATE(977), 1, - sym__comment_with_newline, - [23769] = 2, + sym__verbatim_content, + [23255] = 1, ACTIONS(2369), 1, - sym__emphasis_mark_begin, - ACTIONS(2372), 1, - sym__in_fallback, - [23776] = 2, - ACTIONS(2034), 1, - anon_sym_PERCENT, - STATE(804), 1, - sym__comment_with_newline, - [23783] = 2, - ACTIONS(2374), 1, - anon_sym_CARET, - ACTIONS(2376), 1, - anon_sym_CARET_RBRACE, - [23790] = 2, - ACTIONS(2378), 1, - sym__emphasis_mark_begin, + anon_sym_RBRACE, + [23259] = 1, + ACTIONS(2371), 1, + sym__verbatim_end, + [23263] = 1, + ACTIONS(2373), 1, + anon_sym_RBRACK, + [23267] = 1, + ACTIONS(2375), 1, + anon_sym_GT, + [23271] = 1, + ACTIONS(2377), 1, + sym__verbatim_end, + [23275] = 1, + ACTIONS(2379), 1, + sym__newline, + [23279] = 1, ACTIONS(2381), 1, - sym__in_fallback, - [23797] = 2, + anon_sym_RBRACE, + [23283] = 1, ACTIONS(2383), 1, - anon_sym_TILDE, + sym__verbatim_content, + [23287] = 1, ACTIONS(2385), 1, - anon_sym_TILDE_RBRACE, - [23804] = 2, + anon_sym_DQUOTE, + [23291] = 1, ACTIONS(2387), 1, - sym__emphasis_mark_begin, - ACTIONS(2390), 1, - sym__in_fallback, - [23811] = 2, - ACTIONS(2034), 1, - anon_sym_PERCENT, - STATE(851), 1, - sym__comment_with_newline, - [23818] = 2, - ACTIONS(2034), 1, - anon_sym_PERCENT, - STATE(983), 1, - sym__comment_with_newline, - [23825] = 2, - ACTIONS(2034), 1, - anon_sym_PERCENT, - STATE(894), 1, - sym__comment_with_newline, - [23832] = 2, - ACTIONS(2392), 1, - sym__emphasis_mark_begin, + aux_sym_inline_link_destination_token1, + [23295] = 1, + ACTIONS(2389), 1, + sym_language, + [23299] = 1, + ACTIONS(2391), 1, + sym__verbatim_content, + [23303] = 1, + ACTIONS(2393), 1, + anon_sym_RBRACK, + [23307] = 1, ACTIONS(2395), 1, - sym__in_fallback, - [23839] = 2, + sym__verbatim_content, + [23311] = 1, ACTIONS(2397), 1, - sym__emphasis_mark_begin, - ACTIONS(2400), 1, - sym__in_fallback, - [23846] = 2, - ACTIONS(2402), 1, - anon_sym_CARET, - ACTIONS(2404), 1, - anon_sym_CARET_RBRACE, - [23853] = 2, - ACTIONS(2406), 1, - anon_sym_TILDE, - ACTIONS(2408), 1, - anon_sym_TILDE_RBRACE, - [23860] = 2, - ACTIONS(2410), 1, - anon_sym_CARET, - ACTIONS(2412), 1, - anon_sym_CARET_RBRACE, - [23867] = 2, - ACTIONS(2414), 1, - anon_sym_TILDE, - ACTIONS(2416), 1, - anon_sym_TILDE_RBRACE, - [23874] = 2, - ACTIONS(2418), 1, - sym__emphasis_mark_begin, + sym__newline, + [23315] = 1, + ACTIONS(2399), 1, + anon_sym_RBRACK2, + [23319] = 1, + ACTIONS(2401), 1, + sym_delete_end, + [23323] = 1, + ACTIONS(2403), 1, + sym_insert_end, + [23327] = 1, + ACTIONS(2405), 1, + sym_highlighted_end, + [23331] = 1, + ACTIONS(2407), 1, + aux_sym_value_token1, + [23335] = 1, + ACTIONS(2409), 1, + sym_subscript_end, + [23339] = 1, + ACTIONS(2411), 1, + sym_superscript_end, + [23343] = 1, + ACTIONS(2413), 1, + sym_strong_end, + [23347] = 1, + ACTIONS(2415), 1, + aux_sym_inline_link_destination_token1, + [23351] = 1, + ACTIONS(2417), 1, + sym_language, + [23355] = 1, + ACTIONS(2419), 1, + sym__verbatim_content, + [23359] = 1, ACTIONS(2421), 1, - sym__in_fallback, - [23881] = 2, + anon_sym_RBRACK, + [23363] = 1, ACTIONS(2423), 1, - sym__emphasis_mark_begin, - ACTIONS(2426), 1, - sym__in_fallback, - [23888] = 2, - ACTIONS(2428), 1, - sym__emphasis_mark_begin, + sym__verbatim_content, + [23367] = 1, + ACTIONS(2425), 1, + sym_emphasis_end, + [23371] = 1, + ACTIONS(2427), 1, + anon_sym_RBRACE, + [23375] = 1, + ACTIONS(2429), 1, + anon_sym_RBRACE, + [23379] = 1, ACTIONS(2431), 1, - sym__in_fallback, - [23895] = 2, + sym__verbatim_end, + [23383] = 1, ACTIONS(2433), 1, - anon_sym_TILDE, + anon_sym_RBRACK, + [23387] = 1, ACTIONS(2435), 1, - anon_sym_TILDE_RBRACE, - [23902] = 2, + anon_sym_GT, + [23391] = 1, ACTIONS(2437), 1, - anon_sym_CARET, + sym__verbatim_end, + [23395] = 1, ACTIONS(2439), 1, - anon_sym_CARET_RBRACE, - [23909] = 2, + sym__newline, + [23399] = 1, ACTIONS(2441), 1, - sym__emphasis_mark_begin, - ACTIONS(2444), 1, - sym__in_fallback, - [23916] = 2, - ACTIONS(2446), 1, - sym__emphasis_mark_begin, + anon_sym_RBRACE, + [23403] = 1, + ACTIONS(2443), 1, + aux_sym_inline_link_destination_token1, + [23407] = 1, + ACTIONS(2445), 1, + sym_language, + [23411] = 1, + ACTIONS(2447), 1, + sym__verbatim_content, + [23415] = 1, ACTIONS(2449), 1, - sym__in_fallback, - [23923] = 2, + anon_sym_RBRACK, + [23419] = 1, ACTIONS(2451), 1, - sym__emphasis_mark_begin, - ACTIONS(2454), 1, - sym__in_fallback, - [23930] = 2, - ACTIONS(2456), 1, - sym__emphasis_mark_begin, + sym__verbatim_content, + [23423] = 1, + ACTIONS(2453), 1, + anon_sym_RPAREN, + [23427] = 1, + ACTIONS(2455), 1, + sym_language, + [23431] = 1, + ACTIONS(2457), 1, + anon_sym_RPAREN, + [23435] = 1, ACTIONS(2459), 1, - sym__in_fallback, - [23937] = 2, + anon_sym_RBRACK2, + [23439] = 1, ACTIONS(2461), 1, - sym__emphasis_mark_begin, - ACTIONS(2464), 1, - sym__in_fallback, - [23944] = 2, - ACTIONS(2466), 1, - sym__emphasis_mark_begin, + sym_delete_end, + [23443] = 1, + ACTIONS(2463), 1, + sym_insert_end, + [23447] = 1, + ACTIONS(2465), 1, + sym_highlighted_end, + [23451] = 1, + ACTIONS(2467), 1, + sym_highlighted_end, + [23455] = 1, ACTIONS(2469), 1, - sym__in_fallback, - [23951] = 2, + sym_superscript_end, + [23459] = 1, ACTIONS(2471), 1, - sym__emphasis_mark_begin, - ACTIONS(2474), 1, - sym__in_fallback, - [23958] = 2, - ACTIONS(2476), 1, - anon_sym_CARET, - ACTIONS(2478), 1, - anon_sym_CARET_RBRACE, - [23965] = 2, - ACTIONS(2480), 1, - sym__emphasis_mark_begin, + aux_sym_inline_link_destination_token1, + [23463] = 1, + ACTIONS(2473), 1, + sym_language, + [23467] = 1, + ACTIONS(2475), 1, + sym__verbatim_content, + [23471] = 1, + ACTIONS(2477), 1, + anon_sym_RBRACK, + [23475] = 1, + ACTIONS(2479), 1, + sym__verbatim_content, + [23479] = 1, + ACTIONS(2481), 1, + anon_sym_RBRACK2, + [23483] = 1, ACTIONS(2483), 1, - sym__in_fallback, - [23972] = 2, + sym_strong_end, + [23487] = 1, ACTIONS(2485), 1, - anon_sym_TILDE, + sym_delete_end, + [23491] = 1, ACTIONS(2487), 1, - anon_sym_TILDE_RBRACE, - [23979] = 2, + sym_emphasis_end, + [23495] = 1, ACTIONS(2489), 1, - anon_sym_CARET, + anon_sym_RBRACE, + [23499] = 1, ACTIONS(2491), 1, - anon_sym_CARET_RBRACE, - [23986] = 2, + sym__verbatim_end, + [23503] = 1, ACTIONS(2493), 1, - sym__emphasis_mark_begin, - ACTIONS(2496), 1, - sym__in_fallback, - [23993] = 2, - ACTIONS(2498), 1, - sym__emphasis_mark_begin, + sym_insert_end, + [23507] = 1, + ACTIONS(2495), 1, + sym_highlighted_end, + [23511] = 1, + ACTIONS(2497), 1, + sym_subscript_end, + [23515] = 1, + ACTIONS(2499), 1, + aux_sym_inline_link_destination_token1, + [23519] = 1, ACTIONS(2501), 1, - sym__in_fallback, - [24000] = 2, + sym_language, + [23523] = 1, ACTIONS(2503), 1, - anon_sym_CARET, + sym__verbatim_content, + [23527] = 1, ACTIONS(2505), 1, - anon_sym_CARET_RBRACE, - [24007] = 2, + anon_sym_RBRACK, + [23531] = 1, ACTIONS(2507), 1, - anon_sym_CARET, + sym__verbatim_content, + [23535] = 1, ACTIONS(2509), 1, - anon_sym_CARET_RBRACE, - [24014] = 2, + sym_superscript_end, + [23539] = 1, ACTIONS(2511), 1, - sym__emphasis_mark_begin, - ACTIONS(2514), 1, - sym__in_fallback, - [24021] = 2, - ACTIONS(2516), 1, - anon_sym_TILDE, - ACTIONS(2518), 1, - anon_sym_TILDE_RBRACE, - [24028] = 2, - ACTIONS(2520), 1, - anon_sym_TILDE, - ACTIONS(2522), 1, - anon_sym_TILDE_RBRACE, - [24035] = 2, - ACTIONS(2524), 1, - anon_sym_CARET, - ACTIONS(2526), 1, - anon_sym_CARET_RBRACE, - [24042] = 2, - ACTIONS(2528), 1, - anon_sym_TILDE, - ACTIONS(2530), 1, - anon_sym_TILDE_RBRACE, - [24049] = 2, - ACTIONS(2532), 1, - anon_sym_TILDE, - ACTIONS(2534), 1, - anon_sym_TILDE_RBRACE, - [24056] = 2, - ACTIONS(2536), 1, - sym__emphasis_mark_begin, + anon_sym_EQ, + [23543] = 1, + ACTIONS(2513), 1, + sym_strong_end, + [23547] = 1, + ACTIONS(2515), 1, + sym_emphasis_end, + [23551] = 1, + ACTIONS(2517), 1, + anon_sym_RBRACE, + [23555] = 1, + ACTIONS(2519), 1, + sym__whitespace, + [23559] = 1, + ACTIONS(2521), 1, + anon_sym_EQ, + [23563] = 1, + ACTIONS(2523), 1, + sym__verbatim_end, + [23567] = 1, + ACTIONS(2525), 1, + aux_sym_inline_link_destination_token1, + [23571] = 1, + ACTIONS(2527), 1, + aux_sym_inline_link_destination_token1, + [23575] = 1, + ACTIONS(2529), 1, + sym_language, + [23579] = 1, + ACTIONS(2531), 1, + sym__verbatim_content, + [23583] = 1, + ACTIONS(2533), 1, + anon_sym_RBRACK, + [23587] = 1, + ACTIONS(2535), 1, + sym__verbatim_content, + [23591] = 1, + ACTIONS(2537), 1, + anon_sym_RBRACK, + [23595] = 1, ACTIONS(2539), 1, - sym__in_fallback, - [24063] = 1, + anon_sym_GT, + [23599] = 1, ACTIONS(2541), 1, - anon_sym_EQ_RBRACE, - [24067] = 1, + sym__verbatim_content, + [23603] = 1, ACTIONS(2543), 1, - anon_sym_EQ_RBRACE, - [24071] = 1, + anon_sym_RBRACK, + [23607] = 1, ACTIONS(2545), 1, - anon_sym_RBRACE, - [24075] = 1, + anon_sym_RBRACK, + [23611] = 1, ACTIONS(2547), 1, - sym__newline, - [24079] = 1, + sym__verbatim_end, + [23615] = 1, ACTIONS(2549), 1, - anon_sym_RPAREN, - [24083] = 1, + anon_sym_RBRACK, + [23619] = 1, ACTIONS(2551), 1, - anon_sym_RBRACK2, - [24087] = 1, + anon_sym_RBRACK, + [23623] = 1, ACTIONS(2553), 1, - sym__verbatim_end, - [24091] = 1, + anon_sym_GT, + [23627] = 1, ACTIONS(2555), 1, - sym_emphasis_end, - [24095] = 1, + aux_sym_inline_link_destination_token1, + [23631] = 1, ACTIONS(2557), 1, - anon_sym_GT, - [24099] = 1, + sym_language, + [23635] = 1, ACTIONS(2559), 1, - anon_sym_EQ_RBRACE, - [24103] = 1, + sym__verbatim_content, + [23639] = 1, ACTIONS(2561), 1, - anon_sym_PLUS_RBRACE, - [24107] = 1, + anon_sym_RBRACK, + [23643] = 1, ACTIONS(2563), 1, - anon_sym_DASH_RBRACE, - [24111] = 1, + sym__verbatim_content, + [23647] = 1, ACTIONS(2565), 1, - anon_sym_RBRACE, - [24115] = 1, + sym__newline, + [23651] = 1, ACTIONS(2567), 1, - anon_sym_RBRACK, - [24119] = 1, + anon_sym_RBRACE, + [23655] = 1, ACTIONS(2569), 1, - sym__verbatim_end, - [24123] = 1, + anon_sym_RPAREN, + [23659] = 1, ACTIONS(2571), 1, - anon_sym_RBRACK, - [24127] = 1, + anon_sym_RBRACK2, + [23663] = 1, ACTIONS(2573), 1, - sym__verbatim_end, - [24131] = 1, + sym_delete_end, + [23667] = 1, ACTIONS(2575), 1, - anon_sym_RBRACE, - [24135] = 1, + sym__verbatim_end, + [23671] = 1, ACTIONS(2577), 1, - sym_emphasis_end, - [24139] = 1, + sym_insert_end, + [23675] = 1, ACTIONS(2579), 1, - anon_sym_RBRACK2, - [24143] = 1, + sym_highlighted_end, + [23679] = 1, ACTIONS(2581), 1, - anon_sym_RPAREN, - [24147] = 1, + sym__delete_mark_begin, + [23683] = 1, ACTIONS(2583), 1, - anon_sym_RBRACE, - [24151] = 1, + aux_sym_inline_link_destination_token1, + [23687] = 1, ACTIONS(2585), 1, - sym__newline, - [24155] = 1, + sym_language, + [23691] = 1, ACTIONS(2587), 1, - anon_sym_DASH_RBRACE, - [24159] = 1, + sym__verbatim_content, + [23695] = 1, ACTIONS(2589), 1, - sym__verbatim_end, - [24163] = 1, + anon_sym_RBRACK, + [23699] = 1, ACTIONS(2591), 1, - anon_sym_PLUS_RBRACE, - [24167] = 1, + sym__verbatim_content, + [23703] = 1, ACTIONS(2593), 1, - anon_sym_GT, - [24171] = 1, + sym_subscript_end, + [23707] = 1, ACTIONS(2595), 1, - anon_sym_EQ_RBRACE, - [24175] = 1, + sym__insert_mark_begin, + [23711] = 1, ACTIONS(2597), 1, - anon_sym_PLUS_RBRACE, - [24179] = 1, + sym__highlighted_mark_begin, + [23715] = 1, ACTIONS(2599), 1, - anon_sym_DASH_RBRACE, - [24183] = 1, + sym__subscript_mark_begin, + [23719] = 1, ACTIONS(2601), 1, - anon_sym_RBRACK, - [24187] = 1, + sym__superscript_mark_begin, + [23723] = 1, ACTIONS(2603), 1, - anon_sym_EQ_RBRACE, - [24191] = 1, + sym__strong_mark_begin, + [23727] = 1, ACTIONS(2605), 1, - anon_sym_GT, - [24195] = 1, + sym__emphasis_mark_begin, + [23731] = 1, ACTIONS(2607), 1, - sym__verbatim_end, - [24199] = 1, + ts_builtin_sym_end, + [23735] = 1, ACTIONS(2609), 1, - anon_sym_RBRACE, - [24203] = 1, + ts_builtin_sym_end, + [23739] = 1, ACTIONS(2611), 1, - sym_emphasis_end, - [24207] = 1, + aux_sym_inline_link_destination_token1, + [23743] = 1, ACTIONS(2613), 1, - anon_sym_RBRACK2, - [24211] = 1, + sym_language, + [23747] = 1, ACTIONS(2615), 1, - anon_sym_RPAREN, - [24215] = 1, + sym__verbatim_content, + [23751] = 1, ACTIONS(2617), 1, - anon_sym_RBRACE, - [24219] = 1, + anon_sym_RBRACK, + [23755] = 1, ACTIONS(2619), 1, - sym__newline, - [24223] = 1, + sym__verbatim_content, + [23759] = 1, ACTIONS(2621), 1, - sym__verbatim_end, - [24227] = 1, + sym_superscript_end, + [23763] = 1, ACTIONS(2623), 1, sym__newline, - [24231] = 1, + [23767] = 1, ACTIONS(2625), 1, - sym__verbatim_end, - [24235] = 1, + sym_strong_end, + [23771] = 1, ACTIONS(2627), 1, - anon_sym_GT, - [24239] = 1, + sym_emphasis_end, + [23775] = 1, ACTIONS(2629), 1, - anon_sym_EQ_RBRACE, - [24243] = 1, + anon_sym_RBRACE, + [23779] = 1, ACTIONS(2631), 1, - anon_sym_PLUS_RBRACE, - [24247] = 1, + sym__verbatim_end, + [23783] = 1, ACTIONS(2633), 1, - anon_sym_DASH_RBRACE, - [24251] = 1, - ACTIONS(2635), 1, anon_sym_RBRACK, - [24255] = 1, + [23787] = 1, + ACTIONS(2635), 1, + anon_sym_GT, + [23791] = 1, ACTIONS(2637), 1, - anon_sym_RBRACE, - [24259] = 1, + sym__verbatim_end, + [23795] = 1, ACTIONS(2639), 1, - anon_sym_RPAREN, - [24263] = 1, + aux_sym_inline_link_destination_token1, + [23799] = 1, ACTIONS(2641), 1, - anon_sym_RBRACK2, - [24267] = 1, + sym_language, + [23803] = 1, ACTIONS(2643), 1, - sym__verbatim_end, - [24271] = 1, + sym__emphasis_mark_begin, + [23807] = 1, ACTIONS(2645), 1, - anon_sym_RBRACE, - [24275] = 1, + sym__strong_mark_begin, + [23811] = 1, ACTIONS(2647), 1, - sym_emphasis_end, - [24279] = 1, + sym__superscript_mark_begin, + [23815] = 1, ACTIONS(2649), 1, - anon_sym_RBRACK2, - [24283] = 1, + sym__subscript_mark_begin, + [23819] = 1, ACTIONS(2651), 1, - anon_sym_RPAREN, - [24287] = 1, + sym__highlighted_mark_begin, + [23823] = 1, ACTIONS(2653), 1, - anon_sym_RBRACE, - [24291] = 1, + sym__insert_mark_begin, + [23827] = 1, ACTIONS(2655), 1, - sym__newline, - [24295] = 1, + sym__delete_mark_begin, + [23831] = 1, ACTIONS(2657), 1, - sym_emphasis_end, - [24299] = 1, + sym__emphasis_mark_begin, + [23835] = 1, ACTIONS(2659), 1, - anon_sym_RBRACE, - [24303] = 1, + sym__strong_mark_begin, + [23839] = 1, ACTIONS(2661), 1, - sym__verbatim_end, - [24307] = 1, + sym__superscript_mark_begin, + [23843] = 1, ACTIONS(2663), 1, - sym__verbatim_end, - [24311] = 1, + sym__subscript_mark_begin, + [23847] = 1, ACTIONS(2665), 1, - anon_sym_GT, - [24315] = 1, + sym__highlighted_mark_begin, + [23851] = 1, ACTIONS(2667), 1, - anon_sym_EQ_RBRACE, - [24319] = 1, + sym__insert_mark_begin, + [23855] = 1, ACTIONS(2669), 1, - anon_sym_PLUS_RBRACE, - [24323] = 1, + sym__delete_mark_begin, + [23859] = 1, ACTIONS(2671), 1, - anon_sym_DASH_RBRACE, - [24327] = 1, + sym__emphasis_mark_begin, + [23863] = 1, ACTIONS(2673), 1, - anon_sym_RBRACK, - [24331] = 1, + sym__strong_mark_begin, + [23867] = 1, ACTIONS(2675), 1, - anon_sym_EQ_RBRACE, - [24335] = 1, + sym__superscript_mark_begin, + [23871] = 1, ACTIONS(2677), 1, - sym__verbatim_end, - [24339] = 1, + sym__subscript_mark_begin, + [23875] = 1, ACTIONS(2679), 1, - anon_sym_RBRACE, - [24343] = 1, + sym__highlighted_mark_begin, + [23879] = 1, ACTIONS(2681), 1, - sym_emphasis_end, - [24347] = 1, + sym__insert_mark_begin, + [23883] = 1, ACTIONS(2683), 1, - anon_sym_RBRACK2, - [24351] = 1, + sym__delete_mark_begin, + [23887] = 1, ACTIONS(2685), 1, - anon_sym_RPAREN, - [24355] = 1, + sym__emphasis_mark_begin, + [23891] = 1, ACTIONS(2687), 1, - anon_sym_RBRACE, - [24359] = 1, + sym__strong_mark_begin, + [23895] = 1, ACTIONS(2689), 1, - sym__newline, - [24363] = 1, + sym__superscript_mark_begin, + [23899] = 1, ACTIONS(2691), 1, - anon_sym_DASH_RBRACE, - [24367] = 1, + sym__subscript_mark_begin, + [23903] = 1, ACTIONS(2693), 1, - anon_sym_PLUS_RBRACE, - [24371] = 1, + sym__highlighted_mark_begin, + [23907] = 1, ACTIONS(2695), 1, - sym__verbatim_end, - [24375] = 1, + sym__insert_mark_begin, + [23911] = 1, ACTIONS(2697), 1, - anon_sym_RBRACK, - [24379] = 1, + sym__delete_mark_begin, + [23915] = 1, ACTIONS(2699), 1, - anon_sym_EQ, - [24383] = 1, + sym__emphasis_mark_begin, + [23919] = 1, ACTIONS(2701), 1, - anon_sym_GT, - [24387] = 1, + sym__strong_mark_begin, + [23923] = 1, ACTIONS(2703), 1, - anon_sym_DASH_RBRACE, - [24391] = 1, + sym__superscript_mark_begin, + [23927] = 1, ACTIONS(2705), 1, - anon_sym_PLUS_RBRACE, - [24395] = 1, + sym__subscript_mark_begin, + [23931] = 1, ACTIONS(2707), 1, - anon_sym_DASH_RBRACE, - [24399] = 1, + sym__highlighted_mark_begin, + [23935] = 1, ACTIONS(2709), 1, - anon_sym_RBRACK2, - [24403] = 1, + sym__insert_mark_begin, + [23939] = 1, ACTIONS(2711), 1, - sym_emphasis_end, - [24407] = 1, + sym__delete_mark_begin, + [23943] = 1, ACTIONS(2713), 1, - anon_sym_RBRACK, - [24411] = 1, + sym__emphasis_mark_begin, + [23947] = 1, ACTIONS(2715), 1, - anon_sym_GT, - [24415] = 1, + sym__strong_mark_begin, + [23951] = 1, ACTIONS(2717), 1, - anon_sym_RBRACE, - [24419] = 1, + sym__superscript_mark_begin, + [23955] = 1, ACTIONS(2719), 1, - sym__verbatim_end, - [24423] = 1, + sym__subscript_mark_begin, + [23959] = 1, ACTIONS(2721), 1, - sym__verbatim_end, - [24427] = 1, + sym__highlighted_mark_begin, + [23963] = 1, ACTIONS(2723), 1, - anon_sym_RBRACE, - [24431] = 1, + sym__insert_mark_begin, + [23967] = 1, ACTIONS(2725), 1, - sym_emphasis_end, - [24435] = 1, + sym__delete_mark_begin, + [23971] = 1, ACTIONS(2727), 1, - anon_sym_RBRACK2, - [24439] = 1, + sym__emphasis_mark_begin, + [23975] = 1, ACTIONS(2729), 1, - anon_sym_RPAREN, - [24443] = 1, + sym__strong_mark_begin, + [23979] = 1, ACTIONS(2731), 1, - anon_sym_RBRACE, - [24447] = 1, + sym__superscript_mark_begin, + [23983] = 1, ACTIONS(2733), 1, - sym__newline, - [24451] = 1, + sym__subscript_mark_begin, + [23987] = 1, ACTIONS(2735), 1, - sym__verbatim_end, - [24455] = 1, + sym__highlighted_mark_begin, + [23991] = 1, ACTIONS(2737), 1, - anon_sym_RBRACE, - [24459] = 1, + sym__insert_mark_begin, + [23995] = 1, ACTIONS(2739), 1, - anon_sym_RPAREN, - [24463] = 1, + sym__delete_mark_begin, + [23999] = 1, ACTIONS(2741), 1, - anon_sym_RBRACK2, - [24467] = 1, + sym__emphasis_mark_begin, + [24003] = 1, ACTIONS(2743), 1, - sym_emphasis_end, - [24471] = 1, + sym__strong_mark_begin, + [24007] = 1, ACTIONS(2745), 1, - anon_sym_RBRACE, - [24475] = 1, + sym__superscript_mark_begin, + [24011] = 1, ACTIONS(2747), 1, - sym__verbatim_end, - [24479] = 1, + sym__subscript_mark_begin, + [24015] = 1, ACTIONS(2749), 1, - anon_sym_RBRACK, - [24483] = 1, + sym__highlighted_mark_begin, + [24019] = 1, ACTIONS(2751), 1, - anon_sym_RBRACE, - [24487] = 1, + sym__insert_mark_begin, + [24023] = 1, ACTIONS(2753), 1, - sym__newline, - [24491] = 1, + sym__delete_mark_begin, + [24027] = 1, ACTIONS(2755), 1, - anon_sym_DASH_RBRACE, - [24495] = 1, + sym__emphasis_mark_begin, + [24031] = 1, ACTIONS(2757), 1, - anon_sym_PLUS_RBRACE, - [24499] = 1, + sym__strong_mark_begin, + [24035] = 1, ACTIONS(2759), 1, - anon_sym_RPAREN, - [24503] = 1, + sym__superscript_mark_begin, + [24039] = 1, ACTIONS(2761), 1, - anon_sym_GT, - [24507] = 1, + sym__subscript_mark_begin, + [24043] = 1, ACTIONS(2763), 1, - anon_sym_RBRACK, - [24511] = 1, + sym__highlighted_mark_begin, + [24047] = 1, ACTIONS(2765), 1, - sym__verbatim_end, - [24515] = 1, + sym__insert_mark_begin, + [24051] = 1, ACTIONS(2767), 1, - sym__newline, - [24519] = 1, + sym__delete_mark_begin, + [24055] = 1, ACTIONS(2769), 1, - anon_sym_DASH_RBRACE, - [24523] = 1, + sym__emphasis_mark_begin, + [24059] = 1, ACTIONS(2771), 1, - anon_sym_DQUOTE, - [24527] = 1, + sym__strong_mark_begin, + [24063] = 1, ACTIONS(2773), 1, - aux_sym_value_token1, - [24531] = 1, + sym__superscript_mark_begin, + [24067] = 1, ACTIONS(2775), 1, - anon_sym_RBRACK, - [24535] = 1, + sym__subscript_mark_begin, + [24071] = 1, ACTIONS(2777), 1, - sym__verbatim_content, - [24539] = 1, + sym__highlighted_mark_begin, + [24075] = 1, ACTIONS(2779), 1, - sym__verbatim_content, - [24543] = 1, + sym__insert_mark_begin, + [24079] = 1, ACTIONS(2781), 1, - anon_sym_RBRACK, - [24547] = 1, - ACTIONS(2783), 1, - sym__verbatim_content, - [24551] = 1, - ACTIONS(2785), 1, - anon_sym_PLUS_RBRACE, - [24555] = 1, - ACTIONS(2787), 1, - anon_sym_RBRACK, - [24559] = 1, - ACTIONS(2789), 1, - anon_sym_EQ_RBRACE, - [24563] = 1, - ACTIONS(2791), 1, - aux_sym_inline_link_destination_token1, - [24567] = 1, - ACTIONS(2793), 1, - sym_language, - [24571] = 1, - ACTIONS(2795), 1, - sym__verbatim_content, - [24575] = 1, - ACTIONS(2797), 1, - anon_sym_RBRACK, - [24579] = 1, - ACTIONS(2799), 1, - anon_sym_RBRACK, - [24583] = 1, - ACTIONS(2801), 1, - sym__verbatim_content, - [24587] = 1, - ACTIONS(2803), 1, - anon_sym_GT, - [24591] = 1, - ACTIONS(2805), 1, - anon_sym_RBRACK, - [24595] = 1, - ACTIONS(2807), 1, - sym__verbatim_end, - [24599] = 1, - ACTIONS(2809), 1, - aux_sym_inline_link_destination_token1, - [24603] = 1, - ACTIONS(2811), 1, - sym_language, - [24607] = 1, - ACTIONS(2813), 1, - sym__verbatim_content, - [24611] = 1, - ACTIONS(2815), 1, - sym__verbatim_end, - [24615] = 1, - ACTIONS(2817), 1, - anon_sym_RBRACK, - [24619] = 1, - ACTIONS(2819), 1, - sym__verbatim_content, - [24623] = 1, - ACTIONS(2821), 1, - anon_sym_GT, - [24627] = 1, - ACTIONS(2823), 1, - anon_sym_DASH_RBRACE, - [24631] = 1, - ACTIONS(2825), 1, - anon_sym_PLUS_RBRACE, - [24635] = 1, - ACTIONS(2827), 1, - aux_sym_inline_link_destination_token1, - [24639] = 1, - ACTIONS(2829), 1, - sym_language, - [24643] = 1, - ACTIONS(2831), 1, - sym__verbatim_content, - [24647] = 1, - ACTIONS(2833), 1, - anon_sym_EQ_RBRACE, - [24651] = 1, - ACTIONS(2835), 1, - anon_sym_RBRACK, - [24655] = 1, - ACTIONS(2837), 1, - sym__verbatim_content, - [24659] = 1, - ACTIONS(2839), 1, - sym__newline, - [24663] = 1, - ACTIONS(2841), 1, - anon_sym_GT, - [24667] = 1, - ACTIONS(2843), 1, - anon_sym_RBRACE, - [24671] = 1, - ACTIONS(2845), 1, - aux_sym_inline_link_destination_token1, - [24675] = 1, - ACTIONS(2847), 1, - sym_language, - [24679] = 1, - ACTIONS(2849), 1, - sym__verbatim_content, - [24683] = 1, - ACTIONS(2851), 1, - aux_sym_inline_link_destination_token1, - [24687] = 1, - ACTIONS(2853), 1, - anon_sym_RBRACK, - [24691] = 1, - ACTIONS(2855), 1, - sym__verbatim_content, - [24695] = 1, - ACTIONS(2857), 1, - anon_sym_RBRACE, - [24699] = 1, - ACTIONS(2859), 1, - anon_sym_RPAREN, - [24703] = 1, - ACTIONS(2861), 1, - sym_language, - [24707] = 1, - ACTIONS(2863), 1, - aux_sym_inline_link_destination_token1, - [24711] = 1, - ACTIONS(2865), 1, - sym_language, - [24715] = 1, - ACTIONS(2867), 1, - sym__verbatim_content, - [24719] = 1, - ACTIONS(2869), 1, - anon_sym_RPAREN, - [24723] = 1, - ACTIONS(2871), 1, - anon_sym_RBRACK, - [24727] = 1, - ACTIONS(2873), 1, - sym__verbatim_content, - [24731] = 1, - ACTIONS(2875), 1, - anon_sym_RBRACK2, - [24735] = 1, - ACTIONS(2877), 1, - sym__verbatim_content, - [24739] = 1, - ACTIONS(2879), 1, - sym__verbatim_end, - [24743] = 1, - ACTIONS(2881), 1, - aux_sym_inline_link_destination_token1, - [24747] = 1, - ACTIONS(2883), 1, - sym_language, - [24751] = 1, - ACTIONS(2885), 1, - sym__verbatim_content, - [24755] = 1, - ACTIONS(2887), 1, - sym__verbatim_end, - [24759] = 1, - ACTIONS(2889), 1, - anon_sym_RBRACK, - [24763] = 1, - ACTIONS(2891), 1, - sym__verbatim_content, - [24767] = 1, - ACTIONS(2893), 1, - sym_emphasis_end, - [24771] = 1, - ACTIONS(2895), 1, - anon_sym_EQ, - [24775] = 1, - ACTIONS(2897), 1, - sym__emphasis_mark_begin, - [24779] = 1, - ACTIONS(2899), 1, - aux_sym_inline_link_destination_token1, - [24783] = 1, - ACTIONS(2901), 1, - sym_language, - [24787] = 1, - ACTIONS(2903), 1, - sym__verbatim_content, - [24791] = 1, - ACTIONS(2905), 1, - ts_builtin_sym_end, - [24795] = 1, - ACTIONS(2907), 1, - anon_sym_RBRACK, - [24799] = 1, - ACTIONS(2909), 1, - sym__verbatim_content, - [24803] = 1, - ACTIONS(2911), 1, - anon_sym_RBRACE, - [24807] = 1, - ACTIONS(2913), 1, - ts_builtin_sym_end, - [24811] = 1, - ACTIONS(2915), 1, - anon_sym_RBRACK2, - [24815] = 1, - ACTIONS(2917), 1, - aux_sym_inline_link_destination_token1, - [24819] = 1, - ACTIONS(2919), 1, - sym_language, - [24823] = 1, - ACTIONS(2921), 1, - sym__verbatim_content, - [24827] = 1, - ACTIONS(2923), 1, - anon_sym_RBRACE, - [24831] = 1, - ACTIONS(2925), 1, - anon_sym_RBRACK, - [24835] = 1, - ACTIONS(2927), 1, - sym__verbatim_content, - [24839] = 1, - ACTIONS(2929), 1, - sym__verbatim_end, - [24843] = 1, - ACTIONS(2931), 1, - sym_emphasis_end, - [24847] = 1, - ACTIONS(2933), 1, - sym__whitespace, - [24851] = 1, - ACTIONS(2935), 1, - aux_sym_inline_link_destination_token1, - [24855] = 1, - ACTIONS(2937), 1, - sym_language, - [24859] = 1, - ACTIONS(2939), 1, - sym__verbatim_content, - [24863] = 1, - ACTIONS(2941), 1, - sym__newline, - [24867] = 1, - ACTIONS(2943), 1, - anon_sym_RBRACK, - [24871] = 1, - ACTIONS(2945), 1, - sym__verbatim_content, - [24875] = 1, - ACTIONS(2947), 1, - anon_sym_EQ_RBRACE, - [24879] = 1, - ACTIONS(2949), 1, - anon_sym_PLUS_RBRACE, - [24883] = 1, - ACTIONS(2951), 1, - anon_sym_RBRACK, - [24887] = 1, - ACTIONS(2953), 1, - aux_sym_inline_link_destination_token1, - [24891] = 1, - ACTIONS(2955), 1, - sym_language, - [24895] = 1, - ACTIONS(2957), 1, - sym__emphasis_mark_begin, - [24899] = 1, - ACTIONS(2959), 1, - sym__emphasis_mark_begin, - [24903] = 1, - ACTIONS(2961), 1, - sym__emphasis_mark_begin, - [24907] = 1, - ACTIONS(2963), 1, - sym__emphasis_mark_begin, - [24911] = 1, - ACTIONS(2965), 1, - sym__emphasis_mark_begin, - [24915] = 1, - ACTIONS(2967), 1, - sym__emphasis_mark_begin, - [24919] = 1, - ACTIONS(2969), 1, - sym__emphasis_mark_begin, - [24923] = 1, - ACTIONS(2971), 1, - sym__emphasis_mark_begin, - [24927] = 1, - ACTIONS(2973), 1, - sym__emphasis_mark_begin, - [24931] = 1, - ACTIONS(2975), 1, - sym__emphasis_mark_begin, + sym__delete_mark_begin, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(132)] = 0, - [SMALL_STATE(133)] = 48, - [SMALL_STATE(134)] = 100, - [SMALL_STATE(135)] = 148, - [SMALL_STATE(136)] = 200, - [SMALL_STATE(137)] = 250, - [SMALL_STATE(138)] = 300, - [SMALL_STATE(139)] = 348, - [SMALL_STATE(140)] = 398, - [SMALL_STATE(141)] = 450, - [SMALL_STATE(142)] = 498, - [SMALL_STATE(143)] = 546, - [SMALL_STATE(144)] = 598, - [SMALL_STATE(145)] = 650, - [SMALL_STATE(146)] = 698, - [SMALL_STATE(147)] = 746, - [SMALL_STATE(148)] = 798, - [SMALL_STATE(149)] = 848, - [SMALL_STATE(150)] = 896, - [SMALL_STATE(151)] = 946, - [SMALL_STATE(152)] = 994, - [SMALL_STATE(153)] = 1042, - [SMALL_STATE(154)] = 1092, - [SMALL_STATE(155)] = 1144, - [SMALL_STATE(156)] = 1192, - [SMALL_STATE(157)] = 1240, - [SMALL_STATE(158)] = 1288, - [SMALL_STATE(159)] = 1336, - [SMALL_STATE(160)] = 1384, - [SMALL_STATE(161)] = 1434, - [SMALL_STATE(162)] = 1484, - [SMALL_STATE(163)] = 1532, - [SMALL_STATE(164)] = 1584, - [SMALL_STATE(165)] = 1636, - [SMALL_STATE(166)] = 1684, - [SMALL_STATE(167)] = 1732, - [SMALL_STATE(168)] = 1780, - [SMALL_STATE(169)] = 1830, - [SMALL_STATE(170)] = 1882, - [SMALL_STATE(171)] = 1932, - [SMALL_STATE(172)] = 1980, - [SMALL_STATE(173)] = 2027, - [SMALL_STATE(174)] = 2072, - [SMALL_STATE(175)] = 2119, - [SMALL_STATE(176)] = 2164, - [SMALL_STATE(177)] = 2211, - [SMALL_STATE(178)] = 2256, - [SMALL_STATE(179)] = 2301, - [SMALL_STATE(180)] = 2348, - [SMALL_STATE(181)] = 2393, - [SMALL_STATE(182)] = 2440, - [SMALL_STATE(183)] = 2485, - [SMALL_STATE(184)] = 2532, - [SMALL_STATE(185)] = 2579, - [SMALL_STATE(186)] = 2624, - [SMALL_STATE(187)] = 2671, - [SMALL_STATE(188)] = 2716, - [SMALL_STATE(189)] = 2761, - [SMALL_STATE(190)] = 2806, - [SMALL_STATE(191)] = 2853, - [SMALL_STATE(192)] = 2900, - [SMALL_STATE(193)] = 2947, - [SMALL_STATE(194)] = 2994, - [SMALL_STATE(195)] = 3041, - [SMALL_STATE(196)] = 3086, - [SMALL_STATE(197)] = 3131, - [SMALL_STATE(198)] = 3176, - [SMALL_STATE(199)] = 3223, - [SMALL_STATE(200)] = 3268, - [SMALL_STATE(201)] = 3315, - [SMALL_STATE(202)] = 3362, - [SMALL_STATE(203)] = 3407, - [SMALL_STATE(204)] = 3452, - [SMALL_STATE(205)] = 3499, - [SMALL_STATE(206)] = 3546, - [SMALL_STATE(207)] = 3591, - [SMALL_STATE(208)] = 3636, - [SMALL_STATE(209)] = 3683, - [SMALL_STATE(210)] = 3730, - [SMALL_STATE(211)] = 3775, - [SMALL_STATE(212)] = 3822, - [SMALL_STATE(213)] = 3869, - [SMALL_STATE(214)] = 3918, - [SMALL_STATE(215)] = 3963, - [SMALL_STATE(216)] = 4012, - [SMALL_STATE(217)] = 4054, - [SMALL_STATE(218)] = 4098, - [SMALL_STATE(219)] = 4140, - [SMALL_STATE(220)] = 4182, - [SMALL_STATE(221)] = 4224, - [SMALL_STATE(222)] = 4270, - [SMALL_STATE(223)] = 4312, - [SMALL_STATE(224)] = 4354, - [SMALL_STATE(225)] = 4396, - [SMALL_STATE(226)] = 4438, - [SMALL_STATE(227)] = 4480, - [SMALL_STATE(228)] = 4522, - [SMALL_STATE(229)] = 4564, - [SMALL_STATE(230)] = 4606, - [SMALL_STATE(231)] = 4648, - [SMALL_STATE(232)] = 4690, - [SMALL_STATE(233)] = 4734, - [SMALL_STATE(234)] = 4776, - [SMALL_STATE(235)] = 4818, - [SMALL_STATE(236)] = 4860, - [SMALL_STATE(237)] = 4902, - [SMALL_STATE(238)] = 4944, - [SMALL_STATE(239)] = 4986, - [SMALL_STATE(240)] = 5028, - [SMALL_STATE(241)] = 5074, - [SMALL_STATE(242)] = 5118, - [SMALL_STATE(243)] = 5160, - [SMALL_STATE(244)] = 5202, - [SMALL_STATE(245)] = 5248, - [SMALL_STATE(246)] = 5290, - [SMALL_STATE(247)] = 5332, - [SMALL_STATE(248)] = 5374, - [SMALL_STATE(249)] = 5416, - [SMALL_STATE(250)] = 5458, - [SMALL_STATE(251)] = 5500, - [SMALL_STATE(252)] = 5542, - [SMALL_STATE(253)] = 5584, - [SMALL_STATE(254)] = 5626, - [SMALL_STATE(255)] = 5668, - [SMALL_STATE(256)] = 5710, - [SMALL_STATE(257)] = 5752, - [SMALL_STATE(258)] = 5794, - [SMALL_STATE(259)] = 5836, - [SMALL_STATE(260)] = 5878, - [SMALL_STATE(261)] = 5920, - [SMALL_STATE(262)] = 5962, - [SMALL_STATE(263)] = 6004, - [SMALL_STATE(264)] = 6046, - [SMALL_STATE(265)] = 6088, - [SMALL_STATE(266)] = 6130, - [SMALL_STATE(267)] = 6172, - [SMALL_STATE(268)] = 6218, - [SMALL_STATE(269)] = 6260, - [SMALL_STATE(270)] = 6302, - [SMALL_STATE(271)] = 6344, - [SMALL_STATE(272)] = 6386, - [SMALL_STATE(273)] = 6428, - [SMALL_STATE(274)] = 6470, - [SMALL_STATE(275)] = 6512, - [SMALL_STATE(276)] = 6554, - [SMALL_STATE(277)] = 6596, - [SMALL_STATE(278)] = 6642, - [SMALL_STATE(279)] = 6684, - [SMALL_STATE(280)] = 6726, - [SMALL_STATE(281)] = 6768, - [SMALL_STATE(282)] = 6810, - [SMALL_STATE(283)] = 6852, - [SMALL_STATE(284)] = 6894, - [SMALL_STATE(285)] = 6940, - [SMALL_STATE(286)] = 6982, - [SMALL_STATE(287)] = 7024, - [SMALL_STATE(288)] = 7068, - [SMALL_STATE(289)] = 7112, - [SMALL_STATE(290)] = 7154, - [SMALL_STATE(291)] = 7196, - [SMALL_STATE(292)] = 7242, - [SMALL_STATE(293)] = 7288, - [SMALL_STATE(294)] = 7330, - [SMALL_STATE(295)] = 7372, - [SMALL_STATE(296)] = 7414, - [SMALL_STATE(297)] = 7460, - [SMALL_STATE(298)] = 7502, - [SMALL_STATE(299)] = 7544, - [SMALL_STATE(300)] = 7586, - [SMALL_STATE(301)] = 7628, - [SMALL_STATE(302)] = 7670, - [SMALL_STATE(303)] = 7712, - [SMALL_STATE(304)] = 7754, - [SMALL_STATE(305)] = 7796, - [SMALL_STATE(306)] = 7838, - [SMALL_STATE(307)] = 7880, - [SMALL_STATE(308)] = 7922, - [SMALL_STATE(309)] = 7964, - [SMALL_STATE(310)] = 8006, - [SMALL_STATE(311)] = 8048, - [SMALL_STATE(312)] = 8090, - [SMALL_STATE(313)] = 8132, - [SMALL_STATE(314)] = 8174, - [SMALL_STATE(315)] = 8216, - [SMALL_STATE(316)] = 8258, - [SMALL_STATE(317)] = 8300, - [SMALL_STATE(318)] = 8342, - [SMALL_STATE(319)] = 8384, - [SMALL_STATE(320)] = 8426, - [SMALL_STATE(321)] = 8468, - [SMALL_STATE(322)] = 8510, - [SMALL_STATE(323)] = 8552, - [SMALL_STATE(324)] = 8594, - [SMALL_STATE(325)] = 8636, - [SMALL_STATE(326)] = 8678, - [SMALL_STATE(327)] = 8720, - [SMALL_STATE(328)] = 8762, - [SMALL_STATE(329)] = 8804, - [SMALL_STATE(330)] = 8850, - [SMALL_STATE(331)] = 8892, - [SMALL_STATE(332)] = 8934, - [SMALL_STATE(333)] = 8976, - [SMALL_STATE(334)] = 9018, - [SMALL_STATE(335)] = 9060, - [SMALL_STATE(336)] = 9102, - [SMALL_STATE(337)] = 9144, - [SMALL_STATE(338)] = 9186, - [SMALL_STATE(339)] = 9228, - [SMALL_STATE(340)] = 9270, - [SMALL_STATE(341)] = 9314, - [SMALL_STATE(342)] = 9356, - [SMALL_STATE(343)] = 9398, - [SMALL_STATE(344)] = 9444, - [SMALL_STATE(345)] = 9486, - [SMALL_STATE(346)] = 9528, - [SMALL_STATE(347)] = 9570, - [SMALL_STATE(348)] = 9612, - [SMALL_STATE(349)] = 9654, - [SMALL_STATE(350)] = 9696, - [SMALL_STATE(351)] = 9738, - [SMALL_STATE(352)] = 9780, - [SMALL_STATE(353)] = 9822, - [SMALL_STATE(354)] = 9864, - [SMALL_STATE(355)] = 9906, - [SMALL_STATE(356)] = 9948, - [SMALL_STATE(357)] = 9990, - [SMALL_STATE(358)] = 10032, - [SMALL_STATE(359)] = 10076, - [SMALL_STATE(360)] = 10118, - [SMALL_STATE(361)] = 10160, - [SMALL_STATE(362)] = 10202, - [SMALL_STATE(363)] = 10244, - [SMALL_STATE(364)] = 10286, - [SMALL_STATE(365)] = 10328, - [SMALL_STATE(366)] = 10370, - [SMALL_STATE(367)] = 10412, - [SMALL_STATE(368)] = 10454, - [SMALL_STATE(369)] = 10496, - [SMALL_STATE(370)] = 10538, - [SMALL_STATE(371)] = 10580, - [SMALL_STATE(372)] = 10622, - [SMALL_STATE(373)] = 10664, - [SMALL_STATE(374)] = 10706, - [SMALL_STATE(375)] = 10748, - [SMALL_STATE(376)] = 10790, - [SMALL_STATE(377)] = 10832, - [SMALL_STATE(378)] = 10874, - [SMALL_STATE(379)] = 10916, - [SMALL_STATE(380)] = 10958, - [SMALL_STATE(381)] = 11000, - [SMALL_STATE(382)] = 11046, - [SMALL_STATE(383)] = 11088, - [SMALL_STATE(384)] = 11130, - [SMALL_STATE(385)] = 11172, - [SMALL_STATE(386)] = 11214, - [SMALL_STATE(387)] = 11256, - [SMALL_STATE(388)] = 11298, - [SMALL_STATE(389)] = 11340, - [SMALL_STATE(390)] = 11386, - [SMALL_STATE(391)] = 11428, - [SMALL_STATE(392)] = 11470, - [SMALL_STATE(393)] = 11514, - [SMALL_STATE(394)] = 11556, - [SMALL_STATE(395)] = 11598, - [SMALL_STATE(396)] = 11644, - [SMALL_STATE(397)] = 11686, - [SMALL_STATE(398)] = 11732, - [SMALL_STATE(399)] = 11774, - [SMALL_STATE(400)] = 11816, - [SMALL_STATE(401)] = 11858, - [SMALL_STATE(402)] = 11900, - [SMALL_STATE(403)] = 11942, - [SMALL_STATE(404)] = 11984, - [SMALL_STATE(405)] = 12026, - [SMALL_STATE(406)] = 12068, - [SMALL_STATE(407)] = 12110, - [SMALL_STATE(408)] = 12152, - [SMALL_STATE(409)] = 12194, - [SMALL_STATE(410)] = 12236, - [SMALL_STATE(411)] = 12278, - [SMALL_STATE(412)] = 12320, - [SMALL_STATE(413)] = 12362, - [SMALL_STATE(414)] = 12404, - [SMALL_STATE(415)] = 12446, - [SMALL_STATE(416)] = 12488, - [SMALL_STATE(417)] = 12530, - [SMALL_STATE(418)] = 12572, - [SMALL_STATE(419)] = 12614, - [SMALL_STATE(420)] = 12656, - [SMALL_STATE(421)] = 12698, - [SMALL_STATE(422)] = 12740, - [SMALL_STATE(423)] = 12782, - [SMALL_STATE(424)] = 12824, - [SMALL_STATE(425)] = 12866, - [SMALL_STATE(426)] = 12908, - [SMALL_STATE(427)] = 12950, - [SMALL_STATE(428)] = 12992, - [SMALL_STATE(429)] = 13034, - [SMALL_STATE(430)] = 13076, - [SMALL_STATE(431)] = 13118, - [SMALL_STATE(432)] = 13160, - [SMALL_STATE(433)] = 13202, - [SMALL_STATE(434)] = 13248, - [SMALL_STATE(435)] = 13290, - [SMALL_STATE(436)] = 13332, - [SMALL_STATE(437)] = 13374, - [SMALL_STATE(438)] = 13420, - [SMALL_STATE(439)] = 13462, - [SMALL_STATE(440)] = 13504, - [SMALL_STATE(441)] = 13546, - [SMALL_STATE(442)] = 13588, - [SMALL_STATE(443)] = 13630, - [SMALL_STATE(444)] = 13672, - [SMALL_STATE(445)] = 13716, - [SMALL_STATE(446)] = 13758, - [SMALL_STATE(447)] = 13800, - [SMALL_STATE(448)] = 13846, - [SMALL_STATE(449)] = 13888, - [SMALL_STATE(450)] = 13930, - [SMALL_STATE(451)] = 13972, - [SMALL_STATE(452)] = 14014, - [SMALL_STATE(453)] = 14056, - [SMALL_STATE(454)] = 14098, - [SMALL_STATE(455)] = 14140, - [SMALL_STATE(456)] = 14182, - [SMALL_STATE(457)] = 14224, - [SMALL_STATE(458)] = 14266, - [SMALL_STATE(459)] = 14308, - [SMALL_STATE(460)] = 14350, - [SMALL_STATE(461)] = 14392, - [SMALL_STATE(462)] = 14434, - [SMALL_STATE(463)] = 14476, - [SMALL_STATE(464)] = 14518, - [SMALL_STATE(465)] = 14560, - [SMALL_STATE(466)] = 14602, - [SMALL_STATE(467)] = 14644, - [SMALL_STATE(468)] = 14686, - [SMALL_STATE(469)] = 14728, - [SMALL_STATE(470)] = 14770, - [SMALL_STATE(471)] = 14812, - [SMALL_STATE(472)] = 14854, - [SMALL_STATE(473)] = 14896, - [SMALL_STATE(474)] = 14938, - [SMALL_STATE(475)] = 14980, - [SMALL_STATE(476)] = 15024, - [SMALL_STATE(477)] = 15066, - [SMALL_STATE(478)] = 15108, - [SMALL_STATE(479)] = 15150, - [SMALL_STATE(480)] = 15192, - [SMALL_STATE(481)] = 15234, - [SMALL_STATE(482)] = 15276, - [SMALL_STATE(483)] = 15318, - [SMALL_STATE(484)] = 15364, - [SMALL_STATE(485)] = 15406, - [SMALL_STATE(486)] = 15452, - [SMALL_STATE(487)] = 15494, - [SMALL_STATE(488)] = 15536, - [SMALL_STATE(489)] = 15578, - [SMALL_STATE(490)] = 15622, - [SMALL_STATE(491)] = 15664, - [SMALL_STATE(492)] = 15706, - [SMALL_STATE(493)] = 15748, - [SMALL_STATE(494)] = 15790, - [SMALL_STATE(495)] = 15832, - [SMALL_STATE(496)] = 15874, - [SMALL_STATE(497)] = 15916, - [SMALL_STATE(498)] = 15958, - [SMALL_STATE(499)] = 16000, - [SMALL_STATE(500)] = 16042, - [SMALL_STATE(501)] = 16084, - [SMALL_STATE(502)] = 16126, - [SMALL_STATE(503)] = 16168, - [SMALL_STATE(504)] = 16210, - [SMALL_STATE(505)] = 16252, - [SMALL_STATE(506)] = 16294, - [SMALL_STATE(507)] = 16336, - [SMALL_STATE(508)] = 16378, - [SMALL_STATE(509)] = 16420, - [SMALL_STATE(510)] = 16462, - [SMALL_STATE(511)] = 16504, - [SMALL_STATE(512)] = 16546, - [SMALL_STATE(513)] = 16588, - [SMALL_STATE(514)] = 16630, - [SMALL_STATE(515)] = 16672, - [SMALL_STATE(516)] = 16714, - [SMALL_STATE(517)] = 16756, - [SMALL_STATE(518)] = 16798, - [SMALL_STATE(519)] = 16840, - [SMALL_STATE(520)] = 16882, - [SMALL_STATE(521)] = 16924, - [SMALL_STATE(522)] = 16966, - [SMALL_STATE(523)] = 17008, - [SMALL_STATE(524)] = 17054, - [SMALL_STATE(525)] = 17096, - [SMALL_STATE(526)] = 17138, - [SMALL_STATE(527)] = 17180, - [SMALL_STATE(528)] = 17222, - [SMALL_STATE(529)] = 17266, - [SMALL_STATE(530)] = 17308, - [SMALL_STATE(531)] = 17350, - [SMALL_STATE(532)] = 17396, - [SMALL_STATE(533)] = 17438, - [SMALL_STATE(534)] = 17480, - [SMALL_STATE(535)] = 17522, - [SMALL_STATE(536)] = 17564, - [SMALL_STATE(537)] = 17606, - [SMALL_STATE(538)] = 17648, - [SMALL_STATE(539)] = 17690, - [SMALL_STATE(540)] = 17732, - [SMALL_STATE(541)] = 17774, - [SMALL_STATE(542)] = 17820, - [SMALL_STATE(543)] = 17862, - [SMALL_STATE(544)] = 17904, - [SMALL_STATE(545)] = 17946, - [SMALL_STATE(546)] = 17988, - [SMALL_STATE(547)] = 18030, - [SMALL_STATE(548)] = 18072, - [SMALL_STATE(549)] = 18114, - [SMALL_STATE(550)] = 18156, - [SMALL_STATE(551)] = 18198, - [SMALL_STATE(552)] = 18240, - [SMALL_STATE(553)] = 18282, - [SMALL_STATE(554)] = 18324, - [SMALL_STATE(555)] = 18366, - [SMALL_STATE(556)] = 18408, - [SMALL_STATE(557)] = 18450, - [SMALL_STATE(558)] = 18492, - [SMALL_STATE(559)] = 18534, - [SMALL_STATE(560)] = 18576, - [SMALL_STATE(561)] = 18618, - [SMALL_STATE(562)] = 18659, - [SMALL_STATE(563)] = 18700, - [SMALL_STATE(564)] = 18741, - [SMALL_STATE(565)] = 18786, - [SMALL_STATE(566)] = 18827, - [SMALL_STATE(567)] = 18868, - [SMALL_STATE(568)] = 18909, - [SMALL_STATE(569)] = 18950, - [SMALL_STATE(570)] = 18991, - [SMALL_STATE(571)] = 19032, - [SMALL_STATE(572)] = 19073, - [SMALL_STATE(573)] = 19114, - [SMALL_STATE(574)] = 19155, - [SMALL_STATE(575)] = 19196, - [SMALL_STATE(576)] = 19237, - [SMALL_STATE(577)] = 19278, - [SMALL_STATE(578)] = 19319, - [SMALL_STATE(579)] = 19360, - [SMALL_STATE(580)] = 19401, - [SMALL_STATE(581)] = 19442, - [SMALL_STATE(582)] = 19483, - [SMALL_STATE(583)] = 19526, - [SMALL_STATE(584)] = 19567, - [SMALL_STATE(585)] = 19608, - [SMALL_STATE(586)] = 19649, - [SMALL_STATE(587)] = 19694, - [SMALL_STATE(588)] = 19735, - [SMALL_STATE(589)] = 19778, - [SMALL_STATE(590)] = 19819, - [SMALL_STATE(591)] = 19860, - [SMALL_STATE(592)] = 19901, - [SMALL_STATE(593)] = 19942, - [SMALL_STATE(594)] = 19983, - [SMALL_STATE(595)] = 20024, - [SMALL_STATE(596)] = 20065, - [SMALL_STATE(597)] = 20108, - [SMALL_STATE(598)] = 20149, - [SMALL_STATE(599)] = 20190, - [SMALL_STATE(600)] = 20233, - [SMALL_STATE(601)] = 20274, - [SMALL_STATE(602)] = 20315, - [SMALL_STATE(603)] = 20356, - [SMALL_STATE(604)] = 20397, - [SMALL_STATE(605)] = 20438, - [SMALL_STATE(606)] = 20479, - [SMALL_STATE(607)] = 20520, - [SMALL_STATE(608)] = 20561, - [SMALL_STATE(609)] = 20602, - [SMALL_STATE(610)] = 20643, - [SMALL_STATE(611)] = 20684, - [SMALL_STATE(612)] = 20725, - [SMALL_STATE(613)] = 20766, - [SMALL_STATE(614)] = 20807, - [SMALL_STATE(615)] = 20848, - [SMALL_STATE(616)] = 20889, - [SMALL_STATE(617)] = 20930, - [SMALL_STATE(618)] = 20971, - [SMALL_STATE(619)] = 21012, - [SMALL_STATE(620)] = 21053, - [SMALL_STATE(621)] = 21094, - [SMALL_STATE(622)] = 21135, - [SMALL_STATE(623)] = 21176, - [SMALL_STATE(624)] = 21217, - [SMALL_STATE(625)] = 21258, - [SMALL_STATE(626)] = 21299, - [SMALL_STATE(627)] = 21340, - [SMALL_STATE(628)] = 21381, - [SMALL_STATE(629)] = 21421, - [SMALL_STATE(630)] = 21461, - [SMALL_STATE(631)] = 21501, - [SMALL_STATE(632)] = 21532, - [SMALL_STATE(633)] = 21563, - [SMALL_STATE(634)] = 21594, - [SMALL_STATE(635)] = 21625, - [SMALL_STATE(636)] = 21656, - [SMALL_STATE(637)] = 21687, - [SMALL_STATE(638)] = 21718, - [SMALL_STATE(639)] = 21749, - [SMALL_STATE(640)] = 21780, - [SMALL_STATE(641)] = 21811, - [SMALL_STATE(642)] = 21842, - [SMALL_STATE(643)] = 21873, - [SMALL_STATE(644)] = 21904, - [SMALL_STATE(645)] = 21935, - [SMALL_STATE(646)] = 21966, - [SMALL_STATE(647)] = 21997, - [SMALL_STATE(648)] = 22028, - [SMALL_STATE(649)] = 22059, - [SMALL_STATE(650)] = 22090, - [SMALL_STATE(651)] = 22121, - [SMALL_STATE(652)] = 22152, - [SMALL_STATE(653)] = 22183, - [SMALL_STATE(654)] = 22214, - [SMALL_STATE(655)] = 22245, - [SMALL_STATE(656)] = 22276, - [SMALL_STATE(657)] = 22307, - [SMALL_STATE(658)] = 22338, - [SMALL_STATE(659)] = 22369, - [SMALL_STATE(660)] = 22400, - [SMALL_STATE(661)] = 22431, - [SMALL_STATE(662)] = 22462, - [SMALL_STATE(663)] = 22493, - [SMALL_STATE(664)] = 22524, - [SMALL_STATE(665)] = 22555, - [SMALL_STATE(666)] = 22586, - [SMALL_STATE(667)] = 22617, - [SMALL_STATE(668)] = 22648, - [SMALL_STATE(669)] = 22679, - [SMALL_STATE(670)] = 22710, - [SMALL_STATE(671)] = 22741, - [SMALL_STATE(672)] = 22772, - [SMALL_STATE(673)] = 22803, - [SMALL_STATE(674)] = 22834, - [SMALL_STATE(675)] = 22865, - [SMALL_STATE(676)] = 22896, - [SMALL_STATE(677)] = 22906, - [SMALL_STATE(678)] = 22916, - [SMALL_STATE(679)] = 22926, - [SMALL_STATE(680)] = 22936, - [SMALL_STATE(681)] = 22946, - [SMALL_STATE(682)] = 22956, - [SMALL_STATE(683)] = 22966, - [SMALL_STATE(684)] = 22976, - [SMALL_STATE(685)] = 22986, - [SMALL_STATE(686)] = 23002, - [SMALL_STATE(687)] = 23014, - [SMALL_STATE(688)] = 23028, - [SMALL_STATE(689)] = 23044, - [SMALL_STATE(690)] = 23060, - [SMALL_STATE(691)] = 23076, - [SMALL_STATE(692)] = 23092, - [SMALL_STATE(693)] = 23106, - [SMALL_STATE(694)] = 23122, - [SMALL_STATE(695)] = 23138, - [SMALL_STATE(696)] = 23154, - [SMALL_STATE(697)] = 23170, - [SMALL_STATE(698)] = 23184, - [SMALL_STATE(699)] = 23200, - [SMALL_STATE(700)] = 23216, - [SMALL_STATE(701)] = 23230, - [SMALL_STATE(702)] = 23242, - [SMALL_STATE(703)] = 23254, - [SMALL_STATE(704)] = 23270, - [SMALL_STATE(705)] = 23286, - [SMALL_STATE(706)] = 23302, - [SMALL_STATE(707)] = 23318, - [SMALL_STATE(708)] = 23334, - [SMALL_STATE(709)] = 23348, - [SMALL_STATE(710)] = 23364, - [SMALL_STATE(711)] = 23380, - [SMALL_STATE(712)] = 23394, - [SMALL_STATE(713)] = 23410, - [SMALL_STATE(714)] = 23426, - [SMALL_STATE(715)] = 23442, - [SMALL_STATE(716)] = 23456, - [SMALL_STATE(717)] = 23470, - [SMALL_STATE(718)] = 23486, - [SMALL_STATE(719)] = 23500, - [SMALL_STATE(720)] = 23514, - [SMALL_STATE(721)] = 23528, - [SMALL_STATE(722)] = 23535, - [SMALL_STATE(723)] = 23543, - [SMALL_STATE(724)] = 23553, - [SMALL_STATE(725)] = 23563, - [SMALL_STATE(726)] = 23573, - [SMALL_STATE(727)] = 23583, - [SMALL_STATE(728)] = 23593, - [SMALL_STATE(729)] = 23603, - [SMALL_STATE(730)] = 23613, - [SMALL_STATE(731)] = 23623, - [SMALL_STATE(732)] = 23633, - [SMALL_STATE(733)] = 23643, - [SMALL_STATE(734)] = 23653, - [SMALL_STATE(735)] = 23663, - [SMALL_STATE(736)] = 23671, - [SMALL_STATE(737)] = 23678, - [SMALL_STATE(738)] = 23685, - [SMALL_STATE(739)] = 23692, - [SMALL_STATE(740)] = 23699, - [SMALL_STATE(741)] = 23706, - [SMALL_STATE(742)] = 23713, - [SMALL_STATE(743)] = 23720, - [SMALL_STATE(744)] = 23727, - [SMALL_STATE(745)] = 23734, - [SMALL_STATE(746)] = 23741, - [SMALL_STATE(747)] = 23748, - [SMALL_STATE(748)] = 23755, - [SMALL_STATE(749)] = 23762, - [SMALL_STATE(750)] = 23769, - [SMALL_STATE(751)] = 23776, - [SMALL_STATE(752)] = 23783, - [SMALL_STATE(753)] = 23790, - [SMALL_STATE(754)] = 23797, - [SMALL_STATE(755)] = 23804, - [SMALL_STATE(756)] = 23811, - [SMALL_STATE(757)] = 23818, - [SMALL_STATE(758)] = 23825, - [SMALL_STATE(759)] = 23832, - [SMALL_STATE(760)] = 23839, - [SMALL_STATE(761)] = 23846, - [SMALL_STATE(762)] = 23853, - [SMALL_STATE(763)] = 23860, - [SMALL_STATE(764)] = 23867, - [SMALL_STATE(765)] = 23874, - [SMALL_STATE(766)] = 23881, - [SMALL_STATE(767)] = 23888, - [SMALL_STATE(768)] = 23895, - [SMALL_STATE(769)] = 23902, - [SMALL_STATE(770)] = 23909, - [SMALL_STATE(771)] = 23916, - [SMALL_STATE(772)] = 23923, - [SMALL_STATE(773)] = 23930, - [SMALL_STATE(774)] = 23937, - [SMALL_STATE(775)] = 23944, - [SMALL_STATE(776)] = 23951, - [SMALL_STATE(777)] = 23958, - [SMALL_STATE(778)] = 23965, - [SMALL_STATE(779)] = 23972, - [SMALL_STATE(780)] = 23979, - [SMALL_STATE(781)] = 23986, - [SMALL_STATE(782)] = 23993, - [SMALL_STATE(783)] = 24000, - [SMALL_STATE(784)] = 24007, - [SMALL_STATE(785)] = 24014, - [SMALL_STATE(786)] = 24021, - [SMALL_STATE(787)] = 24028, - [SMALL_STATE(788)] = 24035, - [SMALL_STATE(789)] = 24042, - [SMALL_STATE(790)] = 24049, - [SMALL_STATE(791)] = 24056, - [SMALL_STATE(792)] = 24063, - [SMALL_STATE(793)] = 24067, - [SMALL_STATE(794)] = 24071, - [SMALL_STATE(795)] = 24075, - [SMALL_STATE(796)] = 24079, - [SMALL_STATE(797)] = 24083, - [SMALL_STATE(798)] = 24087, - [SMALL_STATE(799)] = 24091, - [SMALL_STATE(800)] = 24095, - [SMALL_STATE(801)] = 24099, - [SMALL_STATE(802)] = 24103, - [SMALL_STATE(803)] = 24107, - [SMALL_STATE(804)] = 24111, - [SMALL_STATE(805)] = 24115, - [SMALL_STATE(806)] = 24119, - [SMALL_STATE(807)] = 24123, - [SMALL_STATE(808)] = 24127, - [SMALL_STATE(809)] = 24131, - [SMALL_STATE(810)] = 24135, - [SMALL_STATE(811)] = 24139, - [SMALL_STATE(812)] = 24143, - [SMALL_STATE(813)] = 24147, - [SMALL_STATE(814)] = 24151, - [SMALL_STATE(815)] = 24155, - [SMALL_STATE(816)] = 24159, - [SMALL_STATE(817)] = 24163, - [SMALL_STATE(818)] = 24167, - [SMALL_STATE(819)] = 24171, - [SMALL_STATE(820)] = 24175, - [SMALL_STATE(821)] = 24179, - [SMALL_STATE(822)] = 24183, - [SMALL_STATE(823)] = 24187, - [SMALL_STATE(824)] = 24191, - [SMALL_STATE(825)] = 24195, - [SMALL_STATE(826)] = 24199, - [SMALL_STATE(827)] = 24203, - [SMALL_STATE(828)] = 24207, - [SMALL_STATE(829)] = 24211, - [SMALL_STATE(830)] = 24215, - [SMALL_STATE(831)] = 24219, - [SMALL_STATE(832)] = 24223, - [SMALL_STATE(833)] = 24227, - [SMALL_STATE(834)] = 24231, - [SMALL_STATE(835)] = 24235, - [SMALL_STATE(836)] = 24239, - [SMALL_STATE(837)] = 24243, - [SMALL_STATE(838)] = 24247, - [SMALL_STATE(839)] = 24251, - [SMALL_STATE(840)] = 24255, - [SMALL_STATE(841)] = 24259, - [SMALL_STATE(842)] = 24263, - [SMALL_STATE(843)] = 24267, - [SMALL_STATE(844)] = 24271, - [SMALL_STATE(845)] = 24275, - [SMALL_STATE(846)] = 24279, - [SMALL_STATE(847)] = 24283, - [SMALL_STATE(848)] = 24287, - [SMALL_STATE(849)] = 24291, - [SMALL_STATE(850)] = 24295, - [SMALL_STATE(851)] = 24299, - [SMALL_STATE(852)] = 24303, - [SMALL_STATE(853)] = 24307, - [SMALL_STATE(854)] = 24311, - [SMALL_STATE(855)] = 24315, - [SMALL_STATE(856)] = 24319, - [SMALL_STATE(857)] = 24323, - [SMALL_STATE(858)] = 24327, - [SMALL_STATE(859)] = 24331, - [SMALL_STATE(860)] = 24335, - [SMALL_STATE(861)] = 24339, - [SMALL_STATE(862)] = 24343, - [SMALL_STATE(863)] = 24347, - [SMALL_STATE(864)] = 24351, - [SMALL_STATE(865)] = 24355, - [SMALL_STATE(866)] = 24359, - [SMALL_STATE(867)] = 24363, - [SMALL_STATE(868)] = 24367, - [SMALL_STATE(869)] = 24371, - [SMALL_STATE(870)] = 24375, - [SMALL_STATE(871)] = 24379, - [SMALL_STATE(872)] = 24383, - [SMALL_STATE(873)] = 24387, - [SMALL_STATE(874)] = 24391, - [SMALL_STATE(875)] = 24395, - [SMALL_STATE(876)] = 24399, - [SMALL_STATE(877)] = 24403, - [SMALL_STATE(878)] = 24407, - [SMALL_STATE(879)] = 24411, - [SMALL_STATE(880)] = 24415, - [SMALL_STATE(881)] = 24419, - [SMALL_STATE(882)] = 24423, - [SMALL_STATE(883)] = 24427, - [SMALL_STATE(884)] = 24431, - [SMALL_STATE(885)] = 24435, - [SMALL_STATE(886)] = 24439, - [SMALL_STATE(887)] = 24443, - [SMALL_STATE(888)] = 24447, - [SMALL_STATE(889)] = 24451, - [SMALL_STATE(890)] = 24455, - [SMALL_STATE(891)] = 24459, - [SMALL_STATE(892)] = 24463, - [SMALL_STATE(893)] = 24467, - [SMALL_STATE(894)] = 24471, - [SMALL_STATE(895)] = 24475, - [SMALL_STATE(896)] = 24479, - [SMALL_STATE(897)] = 24483, - [SMALL_STATE(898)] = 24487, - [SMALL_STATE(899)] = 24491, - [SMALL_STATE(900)] = 24495, - [SMALL_STATE(901)] = 24499, - [SMALL_STATE(902)] = 24503, - [SMALL_STATE(903)] = 24507, - [SMALL_STATE(904)] = 24511, - [SMALL_STATE(905)] = 24515, - [SMALL_STATE(906)] = 24519, - [SMALL_STATE(907)] = 24523, - [SMALL_STATE(908)] = 24527, - [SMALL_STATE(909)] = 24531, - [SMALL_STATE(910)] = 24535, - [SMALL_STATE(911)] = 24539, - [SMALL_STATE(912)] = 24543, - [SMALL_STATE(913)] = 24547, - [SMALL_STATE(914)] = 24551, - [SMALL_STATE(915)] = 24555, - [SMALL_STATE(916)] = 24559, - [SMALL_STATE(917)] = 24563, - [SMALL_STATE(918)] = 24567, - [SMALL_STATE(919)] = 24571, - [SMALL_STATE(920)] = 24575, - [SMALL_STATE(921)] = 24579, - [SMALL_STATE(922)] = 24583, - [SMALL_STATE(923)] = 24587, - [SMALL_STATE(924)] = 24591, - [SMALL_STATE(925)] = 24595, - [SMALL_STATE(926)] = 24599, - [SMALL_STATE(927)] = 24603, - [SMALL_STATE(928)] = 24607, - [SMALL_STATE(929)] = 24611, - [SMALL_STATE(930)] = 24615, - [SMALL_STATE(931)] = 24619, - [SMALL_STATE(932)] = 24623, - [SMALL_STATE(933)] = 24627, - [SMALL_STATE(934)] = 24631, - [SMALL_STATE(935)] = 24635, - [SMALL_STATE(936)] = 24639, - [SMALL_STATE(937)] = 24643, - [SMALL_STATE(938)] = 24647, - [SMALL_STATE(939)] = 24651, - [SMALL_STATE(940)] = 24655, - [SMALL_STATE(941)] = 24659, - [SMALL_STATE(942)] = 24663, - [SMALL_STATE(943)] = 24667, - [SMALL_STATE(944)] = 24671, - [SMALL_STATE(945)] = 24675, - [SMALL_STATE(946)] = 24679, - [SMALL_STATE(947)] = 24683, - [SMALL_STATE(948)] = 24687, - [SMALL_STATE(949)] = 24691, - [SMALL_STATE(950)] = 24695, - [SMALL_STATE(951)] = 24699, - [SMALL_STATE(952)] = 24703, - [SMALL_STATE(953)] = 24707, - [SMALL_STATE(954)] = 24711, - [SMALL_STATE(955)] = 24715, - [SMALL_STATE(956)] = 24719, - [SMALL_STATE(957)] = 24723, - [SMALL_STATE(958)] = 24727, - [SMALL_STATE(959)] = 24731, - [SMALL_STATE(960)] = 24735, - [SMALL_STATE(961)] = 24739, - [SMALL_STATE(962)] = 24743, - [SMALL_STATE(963)] = 24747, - [SMALL_STATE(964)] = 24751, - [SMALL_STATE(965)] = 24755, - [SMALL_STATE(966)] = 24759, - [SMALL_STATE(967)] = 24763, - [SMALL_STATE(968)] = 24767, - [SMALL_STATE(969)] = 24771, - [SMALL_STATE(970)] = 24775, - [SMALL_STATE(971)] = 24779, - [SMALL_STATE(972)] = 24783, - [SMALL_STATE(973)] = 24787, - [SMALL_STATE(974)] = 24791, - [SMALL_STATE(975)] = 24795, - [SMALL_STATE(976)] = 24799, - [SMALL_STATE(977)] = 24803, - [SMALL_STATE(978)] = 24807, - [SMALL_STATE(979)] = 24811, - [SMALL_STATE(980)] = 24815, - [SMALL_STATE(981)] = 24819, - [SMALL_STATE(982)] = 24823, - [SMALL_STATE(983)] = 24827, - [SMALL_STATE(984)] = 24831, - [SMALL_STATE(985)] = 24835, - [SMALL_STATE(986)] = 24839, - [SMALL_STATE(987)] = 24843, - [SMALL_STATE(988)] = 24847, - [SMALL_STATE(989)] = 24851, - [SMALL_STATE(990)] = 24855, - [SMALL_STATE(991)] = 24859, - [SMALL_STATE(992)] = 24863, - [SMALL_STATE(993)] = 24867, - [SMALL_STATE(994)] = 24871, - [SMALL_STATE(995)] = 24875, - [SMALL_STATE(996)] = 24879, - [SMALL_STATE(997)] = 24883, - [SMALL_STATE(998)] = 24887, - [SMALL_STATE(999)] = 24891, - [SMALL_STATE(1000)] = 24895, - [SMALL_STATE(1001)] = 24899, - [SMALL_STATE(1002)] = 24903, - [SMALL_STATE(1003)] = 24907, - [SMALL_STATE(1004)] = 24911, - [SMALL_STATE(1005)] = 24915, - [SMALL_STATE(1006)] = 24919, - [SMALL_STATE(1007)] = 24923, - [SMALL_STATE(1008)] = 24927, - [SMALL_STATE(1009)] = 24931, + [SMALL_STATE(131)] = 0, + [SMALL_STATE(132)] = 49, + [SMALL_STATE(133)] = 98, + [SMALL_STATE(134)] = 145, + [SMALL_STATE(135)] = 194, + [SMALL_STATE(136)] = 241, + [SMALL_STATE(137)] = 288, + [SMALL_STATE(138)] = 335, + [SMALL_STATE(139)] = 382, + [SMALL_STATE(140)] = 431, + [SMALL_STATE(141)] = 478, + [SMALL_STATE(142)] = 527, + [SMALL_STATE(143)] = 574, + [SMALL_STATE(144)] = 621, + [SMALL_STATE(145)] = 668, + [SMALL_STATE(146)] = 715, + [SMALL_STATE(147)] = 764, + [SMALL_STATE(148)] = 811, + [SMALL_STATE(149)] = 858, + [SMALL_STATE(150)] = 907, + [SMALL_STATE(151)] = 954, + [SMALL_STATE(152)] = 1001, + [SMALL_STATE(153)] = 1048, + [SMALL_STATE(154)] = 1095, + [SMALL_STATE(155)] = 1142, + [SMALL_STATE(156)] = 1191, + [SMALL_STATE(157)] = 1238, + [SMALL_STATE(158)] = 1285, + [SMALL_STATE(159)] = 1332, + [SMALL_STATE(160)] = 1381, + [SMALL_STATE(161)] = 1430, + [SMALL_STATE(162)] = 1476, + [SMALL_STATE(163)] = 1520, + [SMALL_STATE(164)] = 1564, + [SMALL_STATE(165)] = 1610, + [SMALL_STATE(166)] = 1658, + [SMALL_STATE(167)] = 1704, + [SMALL_STATE(168)] = 1750, + [SMALL_STATE(169)] = 1796, + [SMALL_STATE(170)] = 1840, + [SMALL_STATE(171)] = 1884, + [SMALL_STATE(172)] = 1930, + [SMALL_STATE(173)] = 1974, + [SMALL_STATE(174)] = 2018, + [SMALL_STATE(175)] = 2064, + [SMALL_STATE(176)] = 2108, + [SMALL_STATE(177)] = 2152, + [SMALL_STATE(178)] = 2198, + [SMALL_STATE(179)] = 2242, + [SMALL_STATE(180)] = 2286, + [SMALL_STATE(181)] = 2332, + [SMALL_STATE(182)] = 2376, + [SMALL_STATE(183)] = 2420, + [SMALL_STATE(184)] = 2466, + [SMALL_STATE(185)] = 2510, + [SMALL_STATE(186)] = 2554, + [SMALL_STATE(187)] = 2600, + [SMALL_STATE(188)] = 2646, + [SMALL_STATE(189)] = 2690, + [SMALL_STATE(190)] = 2734, + [SMALL_STATE(191)] = 2780, + [SMALL_STATE(192)] = 2824, + [SMALL_STATE(193)] = 2870, + [SMALL_STATE(194)] = 2914, + [SMALL_STATE(195)] = 2958, + [SMALL_STATE(196)] = 3004, + [SMALL_STATE(197)] = 3048, + [SMALL_STATE(198)] = 3094, + [SMALL_STATE(199)] = 3140, + [SMALL_STATE(200)] = 3184, + [SMALL_STATE(201)] = 3228, + [SMALL_STATE(202)] = 3274, + [SMALL_STATE(203)] = 3318, + [SMALL_STATE(204)] = 3364, + [SMALL_STATE(205)] = 3408, + [SMALL_STATE(206)] = 3454, + [SMALL_STATE(207)] = 3498, + [SMALL_STATE(208)] = 3542, + [SMALL_STATE(209)] = 3588, + [SMALL_STATE(210)] = 3632, + [SMALL_STATE(211)] = 3676, + [SMALL_STATE(212)] = 3722, + [SMALL_STATE(213)] = 3766, + [SMALL_STATE(214)] = 3810, + [SMALL_STATE(215)] = 3851, + [SMALL_STATE(216)] = 3892, + [SMALL_STATE(217)] = 3933, + [SMALL_STATE(218)] = 3974, + [SMALL_STATE(219)] = 4015, + [SMALL_STATE(220)] = 4056, + [SMALL_STATE(221)] = 4097, + [SMALL_STATE(222)] = 4138, + [SMALL_STATE(223)] = 4179, + [SMALL_STATE(224)] = 4220, + [SMALL_STATE(225)] = 4261, + [SMALL_STATE(226)] = 4302, + [SMALL_STATE(227)] = 4343, + [SMALL_STATE(228)] = 4384, + [SMALL_STATE(229)] = 4425, + [SMALL_STATE(230)] = 4466, + [SMALL_STATE(231)] = 4507, + [SMALL_STATE(232)] = 4548, + [SMALL_STATE(233)] = 4589, + [SMALL_STATE(234)] = 4630, + [SMALL_STATE(235)] = 4671, + [SMALL_STATE(236)] = 4712, + [SMALL_STATE(237)] = 4753, + [SMALL_STATE(238)] = 4796, + [SMALL_STATE(239)] = 4837, + [SMALL_STATE(240)] = 4878, + [SMALL_STATE(241)] = 4923, + [SMALL_STATE(242)] = 4964, + [SMALL_STATE(243)] = 5005, + [SMALL_STATE(244)] = 5046, + [SMALL_STATE(245)] = 5087, + [SMALL_STATE(246)] = 5128, + [SMALL_STATE(247)] = 5169, + [SMALL_STATE(248)] = 5210, + [SMALL_STATE(249)] = 5251, + [SMALL_STATE(250)] = 5292, + [SMALL_STATE(251)] = 5333, + [SMALL_STATE(252)] = 5374, + [SMALL_STATE(253)] = 5415, + [SMALL_STATE(254)] = 5456, + [SMALL_STATE(255)] = 5497, + [SMALL_STATE(256)] = 5538, + [SMALL_STATE(257)] = 5579, + [SMALL_STATE(258)] = 5620, + [SMALL_STATE(259)] = 5661, + [SMALL_STATE(260)] = 5702, + [SMALL_STATE(261)] = 5743, + [SMALL_STATE(262)] = 5784, + [SMALL_STATE(263)] = 5825, + [SMALL_STATE(264)] = 5866, + [SMALL_STATE(265)] = 5907, + [SMALL_STATE(266)] = 5948, + [SMALL_STATE(267)] = 5989, + [SMALL_STATE(268)] = 6030, + [SMALL_STATE(269)] = 6071, + [SMALL_STATE(270)] = 6112, + [SMALL_STATE(271)] = 6153, + [SMALL_STATE(272)] = 6194, + [SMALL_STATE(273)] = 6235, + [SMALL_STATE(274)] = 6276, + [SMALL_STATE(275)] = 6321, + [SMALL_STATE(276)] = 6362, + [SMALL_STATE(277)] = 6403, + [SMALL_STATE(278)] = 6446, + [SMALL_STATE(279)] = 6487, + [SMALL_STATE(280)] = 6528, + [SMALL_STATE(281)] = 6573, + [SMALL_STATE(282)] = 6614, + [SMALL_STATE(283)] = 6655, + [SMALL_STATE(284)] = 6696, + [SMALL_STATE(285)] = 6737, + [SMALL_STATE(286)] = 6778, + [SMALL_STATE(287)] = 6819, + [SMALL_STATE(288)] = 6860, + [SMALL_STATE(289)] = 6901, + [SMALL_STATE(290)] = 6942, + [SMALL_STATE(291)] = 6983, + [SMALL_STATE(292)] = 7024, + [SMALL_STATE(293)] = 7065, + [SMALL_STATE(294)] = 7106, + [SMALL_STATE(295)] = 7147, + [SMALL_STATE(296)] = 7188, + [SMALL_STATE(297)] = 7229, + [SMALL_STATE(298)] = 7270, + [SMALL_STATE(299)] = 7311, + [SMALL_STATE(300)] = 7352, + [SMALL_STATE(301)] = 7393, + [SMALL_STATE(302)] = 7434, + [SMALL_STATE(303)] = 7475, + [SMALL_STATE(304)] = 7516, + [SMALL_STATE(305)] = 7557, + [SMALL_STATE(306)] = 7598, + [SMALL_STATE(307)] = 7639, + [SMALL_STATE(308)] = 7680, + [SMALL_STATE(309)] = 7721, + [SMALL_STATE(310)] = 7762, + [SMALL_STATE(311)] = 7803, + [SMALL_STATE(312)] = 7844, + [SMALL_STATE(313)] = 7885, + [SMALL_STATE(314)] = 7926, + [SMALL_STATE(315)] = 7967, + [SMALL_STATE(316)] = 8008, + [SMALL_STATE(317)] = 8049, + [SMALL_STATE(318)] = 8092, + [SMALL_STATE(319)] = 8133, + [SMALL_STATE(320)] = 8174, + [SMALL_STATE(321)] = 8219, + [SMALL_STATE(322)] = 8260, + [SMALL_STATE(323)] = 8301, + [SMALL_STATE(324)] = 8342, + [SMALL_STATE(325)] = 8383, + [SMALL_STATE(326)] = 8424, + [SMALL_STATE(327)] = 8465, + [SMALL_STATE(328)] = 8506, + [SMALL_STATE(329)] = 8547, + [SMALL_STATE(330)] = 8588, + [SMALL_STATE(331)] = 8629, + [SMALL_STATE(332)] = 8670, + [SMALL_STATE(333)] = 8711, + [SMALL_STATE(334)] = 8752, + [SMALL_STATE(335)] = 8793, + [SMALL_STATE(336)] = 8834, + [SMALL_STATE(337)] = 8875, + [SMALL_STATE(338)] = 8916, + [SMALL_STATE(339)] = 8957, + [SMALL_STATE(340)] = 8998, + [SMALL_STATE(341)] = 9039, + [SMALL_STATE(342)] = 9080, + [SMALL_STATE(343)] = 9121, + [SMALL_STATE(344)] = 9162, + [SMALL_STATE(345)] = 9203, + [SMALL_STATE(346)] = 9244, + [SMALL_STATE(347)] = 9285, + [SMALL_STATE(348)] = 9326, + [SMALL_STATE(349)] = 9367, + [SMALL_STATE(350)] = 9408, + [SMALL_STATE(351)] = 9449, + [SMALL_STATE(352)] = 9490, + [SMALL_STATE(353)] = 9531, + [SMALL_STATE(354)] = 9572, + [SMALL_STATE(355)] = 9613, + [SMALL_STATE(356)] = 9654, + [SMALL_STATE(357)] = 9695, + [SMALL_STATE(358)] = 9736, + [SMALL_STATE(359)] = 9777, + [SMALL_STATE(360)] = 9818, + [SMALL_STATE(361)] = 9859, + [SMALL_STATE(362)] = 9900, + [SMALL_STATE(363)] = 9943, + [SMALL_STATE(364)] = 9984, + [SMALL_STATE(365)] = 10025, + [SMALL_STATE(366)] = 10070, + [SMALL_STATE(367)] = 10111, + [SMALL_STATE(368)] = 10152, + [SMALL_STATE(369)] = 10193, + [SMALL_STATE(370)] = 10234, + [SMALL_STATE(371)] = 10275, + [SMALL_STATE(372)] = 10316, + [SMALL_STATE(373)] = 10357, + [SMALL_STATE(374)] = 10398, + [SMALL_STATE(375)] = 10439, + [SMALL_STATE(376)] = 10480, + [SMALL_STATE(377)] = 10521, + [SMALL_STATE(378)] = 10562, + [SMALL_STATE(379)] = 10603, + [SMALL_STATE(380)] = 10644, + [SMALL_STATE(381)] = 10685, + [SMALL_STATE(382)] = 10726, + [SMALL_STATE(383)] = 10767, + [SMALL_STATE(384)] = 10808, + [SMALL_STATE(385)] = 10849, + [SMALL_STATE(386)] = 10890, + [SMALL_STATE(387)] = 10931, + [SMALL_STATE(388)] = 10972, + [SMALL_STATE(389)] = 11013, + [SMALL_STATE(390)] = 11054, + [SMALL_STATE(391)] = 11095, + [SMALL_STATE(392)] = 11136, + [SMALL_STATE(393)] = 11177, + [SMALL_STATE(394)] = 11218, + [SMALL_STATE(395)] = 11259, + [SMALL_STATE(396)] = 11300, + [SMALL_STATE(397)] = 11341, + [SMALL_STATE(398)] = 11382, + [SMALL_STATE(399)] = 11423, + [SMALL_STATE(400)] = 11464, + [SMALL_STATE(401)] = 11505, + [SMALL_STATE(402)] = 11546, + [SMALL_STATE(403)] = 11587, + [SMALL_STATE(404)] = 11630, + [SMALL_STATE(405)] = 11671, + [SMALL_STATE(406)] = 11712, + [SMALL_STATE(407)] = 11753, + [SMALL_STATE(408)] = 11796, + [SMALL_STATE(409)] = 11837, + [SMALL_STATE(410)] = 11878, + [SMALL_STATE(411)] = 11923, + [SMALL_STATE(412)] = 11964, + [SMALL_STATE(413)] = 12005, + [SMALL_STATE(414)] = 12046, + [SMALL_STATE(415)] = 12087, + [SMALL_STATE(416)] = 12128, + [SMALL_STATE(417)] = 12169, + [SMALL_STATE(418)] = 12210, + [SMALL_STATE(419)] = 12251, + [SMALL_STATE(420)] = 12292, + [SMALL_STATE(421)] = 12333, + [SMALL_STATE(422)] = 12374, + [SMALL_STATE(423)] = 12415, + [SMALL_STATE(424)] = 12456, + [SMALL_STATE(425)] = 12497, + [SMALL_STATE(426)] = 12538, + [SMALL_STATE(427)] = 12579, + [SMALL_STATE(428)] = 12620, + [SMALL_STATE(429)] = 12661, + [SMALL_STATE(430)] = 12702, + [SMALL_STATE(431)] = 12743, + [SMALL_STATE(432)] = 12784, + [SMALL_STATE(433)] = 12825, + [SMALL_STATE(434)] = 12866, + [SMALL_STATE(435)] = 12907, + [SMALL_STATE(436)] = 12948, + [SMALL_STATE(437)] = 12989, + [SMALL_STATE(438)] = 13030, + [SMALL_STATE(439)] = 13071, + [SMALL_STATE(440)] = 13112, + [SMALL_STATE(441)] = 13153, + [SMALL_STATE(442)] = 13194, + [SMALL_STATE(443)] = 13235, + [SMALL_STATE(444)] = 13276, + [SMALL_STATE(445)] = 13317, + [SMALL_STATE(446)] = 13358, + [SMALL_STATE(447)] = 13401, + [SMALL_STATE(448)] = 13442, + [SMALL_STATE(449)] = 13483, + [SMALL_STATE(450)] = 13524, + [SMALL_STATE(451)] = 13565, + [SMALL_STATE(452)] = 13606, + [SMALL_STATE(453)] = 13649, + [SMALL_STATE(454)] = 13690, + [SMALL_STATE(455)] = 13731, + [SMALL_STATE(456)] = 13776, + [SMALL_STATE(457)] = 13817, + [SMALL_STATE(458)] = 13858, + [SMALL_STATE(459)] = 13899, + [SMALL_STATE(460)] = 13940, + [SMALL_STATE(461)] = 13981, + [SMALL_STATE(462)] = 14022, + [SMALL_STATE(463)] = 14063, + [SMALL_STATE(464)] = 14104, + [SMALL_STATE(465)] = 14145, + [SMALL_STATE(466)] = 14186, + [SMALL_STATE(467)] = 14227, + [SMALL_STATE(468)] = 14268, + [SMALL_STATE(469)] = 14309, + [SMALL_STATE(470)] = 14350, + [SMALL_STATE(471)] = 14391, + [SMALL_STATE(472)] = 14432, + [SMALL_STATE(473)] = 14473, + [SMALL_STATE(474)] = 14514, + [SMALL_STATE(475)] = 14555, + [SMALL_STATE(476)] = 14600, + [SMALL_STATE(477)] = 14641, + [SMALL_STATE(478)] = 14682, + [SMALL_STATE(479)] = 14723, + [SMALL_STATE(480)] = 14764, + [SMALL_STATE(481)] = 14805, + [SMALL_STATE(482)] = 14846, + [SMALL_STATE(483)] = 14887, + [SMALL_STATE(484)] = 14928, + [SMALL_STATE(485)] = 14969, + [SMALL_STATE(486)] = 15010, + [SMALL_STATE(487)] = 15051, + [SMALL_STATE(488)] = 15092, + [SMALL_STATE(489)] = 15133, + [SMALL_STATE(490)] = 15174, + [SMALL_STATE(491)] = 15215, + [SMALL_STATE(492)] = 15256, + [SMALL_STATE(493)] = 15297, + [SMALL_STATE(494)] = 15338, + [SMALL_STATE(495)] = 15379, + [SMALL_STATE(496)] = 15422, + [SMALL_STATE(497)] = 15465, + [SMALL_STATE(498)] = 15506, + [SMALL_STATE(499)] = 15547, + [SMALL_STATE(500)] = 15588, + [SMALL_STATE(501)] = 15629, + [SMALL_STATE(502)] = 15670, + [SMALL_STATE(503)] = 15711, + [SMALL_STATE(504)] = 15752, + [SMALL_STATE(505)] = 15793, + [SMALL_STATE(506)] = 15834, + [SMALL_STATE(507)] = 15875, + [SMALL_STATE(508)] = 15916, + [SMALL_STATE(509)] = 15957, + [SMALL_STATE(510)] = 15998, + [SMALL_STATE(511)] = 16039, + [SMALL_STATE(512)] = 16080, + [SMALL_STATE(513)] = 16121, + [SMALL_STATE(514)] = 16166, + [SMALL_STATE(515)] = 16207, + [SMALL_STATE(516)] = 16248, + [SMALL_STATE(517)] = 16289, + [SMALL_STATE(518)] = 16330, + [SMALL_STATE(519)] = 16371, + [SMALL_STATE(520)] = 16412, + [SMALL_STATE(521)] = 16453, + [SMALL_STATE(522)] = 16494, + [SMALL_STATE(523)] = 16535, + [SMALL_STATE(524)] = 16576, + [SMALL_STATE(525)] = 16617, + [SMALL_STATE(526)] = 16658, + [SMALL_STATE(527)] = 16699, + [SMALL_STATE(528)] = 16740, + [SMALL_STATE(529)] = 16781, + [SMALL_STATE(530)] = 16822, + [SMALL_STATE(531)] = 16863, + [SMALL_STATE(532)] = 16906, + [SMALL_STATE(533)] = 16949, + [SMALL_STATE(534)] = 16994, + [SMALL_STATE(535)] = 17037, + [SMALL_STATE(536)] = 17078, + [SMALL_STATE(537)] = 17119, + [SMALL_STATE(538)] = 17159, + [SMALL_STATE(539)] = 17199, + [SMALL_STATE(540)] = 17239, + [SMALL_STATE(541)] = 17279, + [SMALL_STATE(542)] = 17319, + [SMALL_STATE(543)] = 17359, + [SMALL_STATE(544)] = 17399, + [SMALL_STATE(545)] = 17439, + [SMALL_STATE(546)] = 17479, + [SMALL_STATE(547)] = 17519, + [SMALL_STATE(548)] = 17559, + [SMALL_STATE(549)] = 17599, + [SMALL_STATE(550)] = 17643, + [SMALL_STATE(551)] = 17683, + [SMALL_STATE(552)] = 17723, + [SMALL_STATE(553)] = 17763, + [SMALL_STATE(554)] = 17803, + [SMALL_STATE(555)] = 17843, + [SMALL_STATE(556)] = 17883, + [SMALL_STATE(557)] = 17923, + [SMALL_STATE(558)] = 17963, + [SMALL_STATE(559)] = 18003, + [SMALL_STATE(560)] = 18043, + [SMALL_STATE(561)] = 18083, + [SMALL_STATE(562)] = 18123, + [SMALL_STATE(563)] = 18163, + [SMALL_STATE(564)] = 18203, + [SMALL_STATE(565)] = 18243, + [SMALL_STATE(566)] = 18283, + [SMALL_STATE(567)] = 18323, + [SMALL_STATE(568)] = 18363, + [SMALL_STATE(569)] = 18403, + [SMALL_STATE(570)] = 18443, + [SMALL_STATE(571)] = 18483, + [SMALL_STATE(572)] = 18523, + [SMALL_STATE(573)] = 18565, + [SMALL_STATE(574)] = 18605, + [SMALL_STATE(575)] = 18645, + [SMALL_STATE(576)] = 18685, + [SMALL_STATE(577)] = 18725, + [SMALL_STATE(578)] = 18765, + [SMALL_STATE(579)] = 18805, + [SMALL_STATE(580)] = 18845, + [SMALL_STATE(581)] = 18885, + [SMALL_STATE(582)] = 18925, + [SMALL_STATE(583)] = 18965, + [SMALL_STATE(584)] = 19005, + [SMALL_STATE(585)] = 19045, + [SMALL_STATE(586)] = 19085, + [SMALL_STATE(587)] = 19125, + [SMALL_STATE(588)] = 19165, + [SMALL_STATE(589)] = 19205, + [SMALL_STATE(590)] = 19249, + [SMALL_STATE(591)] = 19289, + [SMALL_STATE(592)] = 19329, + [SMALL_STATE(593)] = 19369, + [SMALL_STATE(594)] = 19409, + [SMALL_STATE(595)] = 19449, + [SMALL_STATE(596)] = 19491, + [SMALL_STATE(597)] = 19531, + [SMALL_STATE(598)] = 19573, + [SMALL_STATE(599)] = 19613, + [SMALL_STATE(600)] = 19653, + [SMALL_STATE(601)] = 19693, + [SMALL_STATE(602)] = 19735, + [SMALL_STATE(603)] = 19779, + [SMALL_STATE(604)] = 19821, + [SMALL_STATE(605)] = 19861, + [SMALL_STATE(606)] = 19900, + [SMALL_STATE(607)] = 19939, + [SMALL_STATE(608)] = 19978, + [SMALL_STATE(609)] = 20009, + [SMALL_STATE(610)] = 20040, + [SMALL_STATE(611)] = 20071, + [SMALL_STATE(612)] = 20102, + [SMALL_STATE(613)] = 20133, + [SMALL_STATE(614)] = 20164, + [SMALL_STATE(615)] = 20195, + [SMALL_STATE(616)] = 20226, + [SMALL_STATE(617)] = 20257, + [SMALL_STATE(618)] = 20288, + [SMALL_STATE(619)] = 20319, + [SMALL_STATE(620)] = 20350, + [SMALL_STATE(621)] = 20381, + [SMALL_STATE(622)] = 20412, + [SMALL_STATE(623)] = 20443, + [SMALL_STATE(624)] = 20474, + [SMALL_STATE(625)] = 20505, + [SMALL_STATE(626)] = 20536, + [SMALL_STATE(627)] = 20567, + [SMALL_STATE(628)] = 20598, + [SMALL_STATE(629)] = 20629, + [SMALL_STATE(630)] = 20660, + [SMALL_STATE(631)] = 20691, + [SMALL_STATE(632)] = 20722, + [SMALL_STATE(633)] = 20753, + [SMALL_STATE(634)] = 20784, + [SMALL_STATE(635)] = 20815, + [SMALL_STATE(636)] = 20846, + [SMALL_STATE(637)] = 20877, + [SMALL_STATE(638)] = 20908, + [SMALL_STATE(639)] = 20939, + [SMALL_STATE(640)] = 20970, + [SMALL_STATE(641)] = 21001, + [SMALL_STATE(642)] = 21032, + [SMALL_STATE(643)] = 21063, + [SMALL_STATE(644)] = 21094, + [SMALL_STATE(645)] = 21125, + [SMALL_STATE(646)] = 21156, + [SMALL_STATE(647)] = 21187, + [SMALL_STATE(648)] = 21218, + [SMALL_STATE(649)] = 21249, + [SMALL_STATE(650)] = 21280, + [SMALL_STATE(651)] = 21311, + [SMALL_STATE(652)] = 21342, + [SMALL_STATE(653)] = 21373, + [SMALL_STATE(654)] = 21383, + [SMALL_STATE(655)] = 21393, + [SMALL_STATE(656)] = 21403, + [SMALL_STATE(657)] = 21413, + [SMALL_STATE(658)] = 21423, + [SMALL_STATE(659)] = 21433, + [SMALL_STATE(660)] = 21443, + [SMALL_STATE(661)] = 21453, + [SMALL_STATE(662)] = 21463, + [SMALL_STATE(663)] = 21475, + [SMALL_STATE(664)] = 21491, + [SMALL_STATE(665)] = 21507, + [SMALL_STATE(666)] = 21521, + [SMALL_STATE(667)] = 21537, + [SMALL_STATE(668)] = 21551, + [SMALL_STATE(669)] = 21567, + [SMALL_STATE(670)] = 21581, + [SMALL_STATE(671)] = 21595, + [SMALL_STATE(672)] = 21611, + [SMALL_STATE(673)] = 21627, + [SMALL_STATE(674)] = 21643, + [SMALL_STATE(675)] = 21659, + [SMALL_STATE(676)] = 21675, + [SMALL_STATE(677)] = 21691, + [SMALL_STATE(678)] = 21705, + [SMALL_STATE(679)] = 21719, + [SMALL_STATE(680)] = 21735, + [SMALL_STATE(681)] = 21751, + [SMALL_STATE(682)] = 21767, + [SMALL_STATE(683)] = 21783, + [SMALL_STATE(684)] = 21799, + [SMALL_STATE(685)] = 21815, + [SMALL_STATE(686)] = 21829, + [SMALL_STATE(687)] = 21845, + [SMALL_STATE(688)] = 21861, + [SMALL_STATE(689)] = 21873, + [SMALL_STATE(690)] = 21885, + [SMALL_STATE(691)] = 21899, + [SMALL_STATE(692)] = 21913, + [SMALL_STATE(693)] = 21929, + [SMALL_STATE(694)] = 21945, + [SMALL_STATE(695)] = 21959, + [SMALL_STATE(696)] = 21973, + [SMALL_STATE(697)] = 21989, + [SMALL_STATE(698)] = 22005, + [SMALL_STATE(699)] = 22012, + [SMALL_STATE(700)] = 22020, + [SMALL_STATE(701)] = 22030, + [SMALL_STATE(702)] = 22038, + [SMALL_STATE(703)] = 22045, + [SMALL_STATE(704)] = 22052, + [SMALL_STATE(705)] = 22059, + [SMALL_STATE(706)] = 22066, + [SMALL_STATE(707)] = 22073, + [SMALL_STATE(708)] = 22080, + [SMALL_STATE(709)] = 22087, + [SMALL_STATE(710)] = 22094, + [SMALL_STATE(711)] = 22101, + [SMALL_STATE(712)] = 22108, + [SMALL_STATE(713)] = 22115, + [SMALL_STATE(714)] = 22122, + [SMALL_STATE(715)] = 22129, + [SMALL_STATE(716)] = 22136, + [SMALL_STATE(717)] = 22143, + [SMALL_STATE(718)] = 22150, + [SMALL_STATE(719)] = 22157, + [SMALL_STATE(720)] = 22164, + [SMALL_STATE(721)] = 22171, + [SMALL_STATE(722)] = 22178, + [SMALL_STATE(723)] = 22185, + [SMALL_STATE(724)] = 22192, + [SMALL_STATE(725)] = 22199, + [SMALL_STATE(726)] = 22206, + [SMALL_STATE(727)] = 22213, + [SMALL_STATE(728)] = 22220, + [SMALL_STATE(729)] = 22227, + [SMALL_STATE(730)] = 22234, + [SMALL_STATE(731)] = 22241, + [SMALL_STATE(732)] = 22248, + [SMALL_STATE(733)] = 22255, + [SMALL_STATE(734)] = 22262, + [SMALL_STATE(735)] = 22269, + [SMALL_STATE(736)] = 22276, + [SMALL_STATE(737)] = 22283, + [SMALL_STATE(738)] = 22290, + [SMALL_STATE(739)] = 22297, + [SMALL_STATE(740)] = 22304, + [SMALL_STATE(741)] = 22311, + [SMALL_STATE(742)] = 22318, + [SMALL_STATE(743)] = 22325, + [SMALL_STATE(744)] = 22332, + [SMALL_STATE(745)] = 22339, + [SMALL_STATE(746)] = 22346, + [SMALL_STATE(747)] = 22353, + [SMALL_STATE(748)] = 22360, + [SMALL_STATE(749)] = 22367, + [SMALL_STATE(750)] = 22374, + [SMALL_STATE(751)] = 22381, + [SMALL_STATE(752)] = 22388, + [SMALL_STATE(753)] = 22395, + [SMALL_STATE(754)] = 22402, + [SMALL_STATE(755)] = 22409, + [SMALL_STATE(756)] = 22416, + [SMALL_STATE(757)] = 22423, + [SMALL_STATE(758)] = 22430, + [SMALL_STATE(759)] = 22437, + [SMALL_STATE(760)] = 22444, + [SMALL_STATE(761)] = 22451, + [SMALL_STATE(762)] = 22458, + [SMALL_STATE(763)] = 22465, + [SMALL_STATE(764)] = 22472, + [SMALL_STATE(765)] = 22479, + [SMALL_STATE(766)] = 22486, + [SMALL_STATE(767)] = 22493, + [SMALL_STATE(768)] = 22500, + [SMALL_STATE(769)] = 22507, + [SMALL_STATE(770)] = 22514, + [SMALL_STATE(771)] = 22521, + [SMALL_STATE(772)] = 22528, + [SMALL_STATE(773)] = 22535, + [SMALL_STATE(774)] = 22542, + [SMALL_STATE(775)] = 22549, + [SMALL_STATE(776)] = 22556, + [SMALL_STATE(777)] = 22563, + [SMALL_STATE(778)] = 22570, + [SMALL_STATE(779)] = 22577, + [SMALL_STATE(780)] = 22584, + [SMALL_STATE(781)] = 22591, + [SMALL_STATE(782)] = 22598, + [SMALL_STATE(783)] = 22605, + [SMALL_STATE(784)] = 22612, + [SMALL_STATE(785)] = 22619, + [SMALL_STATE(786)] = 22626, + [SMALL_STATE(787)] = 22633, + [SMALL_STATE(788)] = 22640, + [SMALL_STATE(789)] = 22647, + [SMALL_STATE(790)] = 22654, + [SMALL_STATE(791)] = 22661, + [SMALL_STATE(792)] = 22668, + [SMALL_STATE(793)] = 22675, + [SMALL_STATE(794)] = 22682, + [SMALL_STATE(795)] = 22689, + [SMALL_STATE(796)] = 22696, + [SMALL_STATE(797)] = 22703, + [SMALL_STATE(798)] = 22710, + [SMALL_STATE(799)] = 22717, + [SMALL_STATE(800)] = 22724, + [SMALL_STATE(801)] = 22731, + [SMALL_STATE(802)] = 22738, + [SMALL_STATE(803)] = 22745, + [SMALL_STATE(804)] = 22752, + [SMALL_STATE(805)] = 22759, + [SMALL_STATE(806)] = 22766, + [SMALL_STATE(807)] = 22773, + [SMALL_STATE(808)] = 22780, + [SMALL_STATE(809)] = 22787, + [SMALL_STATE(810)] = 22794, + [SMALL_STATE(811)] = 22801, + [SMALL_STATE(812)] = 22808, + [SMALL_STATE(813)] = 22815, + [SMALL_STATE(814)] = 22819, + [SMALL_STATE(815)] = 22823, + [SMALL_STATE(816)] = 22827, + [SMALL_STATE(817)] = 22831, + [SMALL_STATE(818)] = 22835, + [SMALL_STATE(819)] = 22839, + [SMALL_STATE(820)] = 22843, + [SMALL_STATE(821)] = 22847, + [SMALL_STATE(822)] = 22851, + [SMALL_STATE(823)] = 22855, + [SMALL_STATE(824)] = 22859, + [SMALL_STATE(825)] = 22863, + [SMALL_STATE(826)] = 22867, + [SMALL_STATE(827)] = 22871, + [SMALL_STATE(828)] = 22875, + [SMALL_STATE(829)] = 22879, + [SMALL_STATE(830)] = 22883, + [SMALL_STATE(831)] = 22887, + [SMALL_STATE(832)] = 22891, + [SMALL_STATE(833)] = 22895, + [SMALL_STATE(834)] = 22899, + [SMALL_STATE(835)] = 22903, + [SMALL_STATE(836)] = 22907, + [SMALL_STATE(837)] = 22911, + [SMALL_STATE(838)] = 22915, + [SMALL_STATE(839)] = 22919, + [SMALL_STATE(840)] = 22923, + [SMALL_STATE(841)] = 22927, + [SMALL_STATE(842)] = 22931, + [SMALL_STATE(843)] = 22935, + [SMALL_STATE(844)] = 22939, + [SMALL_STATE(845)] = 22943, + [SMALL_STATE(846)] = 22947, + [SMALL_STATE(847)] = 22951, + [SMALL_STATE(848)] = 22955, + [SMALL_STATE(849)] = 22959, + [SMALL_STATE(850)] = 22963, + [SMALL_STATE(851)] = 22967, + [SMALL_STATE(852)] = 22971, + [SMALL_STATE(853)] = 22975, + [SMALL_STATE(854)] = 22979, + [SMALL_STATE(855)] = 22983, + [SMALL_STATE(856)] = 22987, + [SMALL_STATE(857)] = 22991, + [SMALL_STATE(858)] = 22995, + [SMALL_STATE(859)] = 22999, + [SMALL_STATE(860)] = 23003, + [SMALL_STATE(861)] = 23007, + [SMALL_STATE(862)] = 23011, + [SMALL_STATE(863)] = 23015, + [SMALL_STATE(864)] = 23019, + [SMALL_STATE(865)] = 23023, + [SMALL_STATE(866)] = 23027, + [SMALL_STATE(867)] = 23031, + [SMALL_STATE(868)] = 23035, + [SMALL_STATE(869)] = 23039, + [SMALL_STATE(870)] = 23043, + [SMALL_STATE(871)] = 23047, + [SMALL_STATE(872)] = 23051, + [SMALL_STATE(873)] = 23055, + [SMALL_STATE(874)] = 23059, + [SMALL_STATE(875)] = 23063, + [SMALL_STATE(876)] = 23067, + [SMALL_STATE(877)] = 23071, + [SMALL_STATE(878)] = 23075, + [SMALL_STATE(879)] = 23079, + [SMALL_STATE(880)] = 23083, + [SMALL_STATE(881)] = 23087, + [SMALL_STATE(882)] = 23091, + [SMALL_STATE(883)] = 23095, + [SMALL_STATE(884)] = 23099, + [SMALL_STATE(885)] = 23103, + [SMALL_STATE(886)] = 23107, + [SMALL_STATE(887)] = 23111, + [SMALL_STATE(888)] = 23115, + [SMALL_STATE(889)] = 23119, + [SMALL_STATE(890)] = 23123, + [SMALL_STATE(891)] = 23127, + [SMALL_STATE(892)] = 23131, + [SMALL_STATE(893)] = 23135, + [SMALL_STATE(894)] = 23139, + [SMALL_STATE(895)] = 23143, + [SMALL_STATE(896)] = 23147, + [SMALL_STATE(897)] = 23151, + [SMALL_STATE(898)] = 23155, + [SMALL_STATE(899)] = 23159, + [SMALL_STATE(900)] = 23163, + [SMALL_STATE(901)] = 23167, + [SMALL_STATE(902)] = 23171, + [SMALL_STATE(903)] = 23175, + [SMALL_STATE(904)] = 23179, + [SMALL_STATE(905)] = 23183, + [SMALL_STATE(906)] = 23187, + [SMALL_STATE(907)] = 23191, + [SMALL_STATE(908)] = 23195, + [SMALL_STATE(909)] = 23199, + [SMALL_STATE(910)] = 23203, + [SMALL_STATE(911)] = 23207, + [SMALL_STATE(912)] = 23211, + [SMALL_STATE(913)] = 23215, + [SMALL_STATE(914)] = 23219, + [SMALL_STATE(915)] = 23223, + [SMALL_STATE(916)] = 23227, + [SMALL_STATE(917)] = 23231, + [SMALL_STATE(918)] = 23235, + [SMALL_STATE(919)] = 23239, + [SMALL_STATE(920)] = 23243, + [SMALL_STATE(921)] = 23247, + [SMALL_STATE(922)] = 23251, + [SMALL_STATE(923)] = 23255, + [SMALL_STATE(924)] = 23259, + [SMALL_STATE(925)] = 23263, + [SMALL_STATE(926)] = 23267, + [SMALL_STATE(927)] = 23271, + [SMALL_STATE(928)] = 23275, + [SMALL_STATE(929)] = 23279, + [SMALL_STATE(930)] = 23283, + [SMALL_STATE(931)] = 23287, + [SMALL_STATE(932)] = 23291, + [SMALL_STATE(933)] = 23295, + [SMALL_STATE(934)] = 23299, + [SMALL_STATE(935)] = 23303, + [SMALL_STATE(936)] = 23307, + [SMALL_STATE(937)] = 23311, + [SMALL_STATE(938)] = 23315, + [SMALL_STATE(939)] = 23319, + [SMALL_STATE(940)] = 23323, + [SMALL_STATE(941)] = 23327, + [SMALL_STATE(942)] = 23331, + [SMALL_STATE(943)] = 23335, + [SMALL_STATE(944)] = 23339, + [SMALL_STATE(945)] = 23343, + [SMALL_STATE(946)] = 23347, + [SMALL_STATE(947)] = 23351, + [SMALL_STATE(948)] = 23355, + [SMALL_STATE(949)] = 23359, + [SMALL_STATE(950)] = 23363, + [SMALL_STATE(951)] = 23367, + [SMALL_STATE(952)] = 23371, + [SMALL_STATE(953)] = 23375, + [SMALL_STATE(954)] = 23379, + [SMALL_STATE(955)] = 23383, + [SMALL_STATE(956)] = 23387, + [SMALL_STATE(957)] = 23391, + [SMALL_STATE(958)] = 23395, + [SMALL_STATE(959)] = 23399, + [SMALL_STATE(960)] = 23403, + [SMALL_STATE(961)] = 23407, + [SMALL_STATE(962)] = 23411, + [SMALL_STATE(963)] = 23415, + [SMALL_STATE(964)] = 23419, + [SMALL_STATE(965)] = 23423, + [SMALL_STATE(966)] = 23427, + [SMALL_STATE(967)] = 23431, + [SMALL_STATE(968)] = 23435, + [SMALL_STATE(969)] = 23439, + [SMALL_STATE(970)] = 23443, + [SMALL_STATE(971)] = 23447, + [SMALL_STATE(972)] = 23451, + [SMALL_STATE(973)] = 23455, + [SMALL_STATE(974)] = 23459, + [SMALL_STATE(975)] = 23463, + [SMALL_STATE(976)] = 23467, + [SMALL_STATE(977)] = 23471, + [SMALL_STATE(978)] = 23475, + [SMALL_STATE(979)] = 23479, + [SMALL_STATE(980)] = 23483, + [SMALL_STATE(981)] = 23487, + [SMALL_STATE(982)] = 23491, + [SMALL_STATE(983)] = 23495, + [SMALL_STATE(984)] = 23499, + [SMALL_STATE(985)] = 23503, + [SMALL_STATE(986)] = 23507, + [SMALL_STATE(987)] = 23511, + [SMALL_STATE(988)] = 23515, + [SMALL_STATE(989)] = 23519, + [SMALL_STATE(990)] = 23523, + [SMALL_STATE(991)] = 23527, + [SMALL_STATE(992)] = 23531, + [SMALL_STATE(993)] = 23535, + [SMALL_STATE(994)] = 23539, + [SMALL_STATE(995)] = 23543, + [SMALL_STATE(996)] = 23547, + [SMALL_STATE(997)] = 23551, + [SMALL_STATE(998)] = 23555, + [SMALL_STATE(999)] = 23559, + [SMALL_STATE(1000)] = 23563, + [SMALL_STATE(1001)] = 23567, + [SMALL_STATE(1002)] = 23571, + [SMALL_STATE(1003)] = 23575, + [SMALL_STATE(1004)] = 23579, + [SMALL_STATE(1005)] = 23583, + [SMALL_STATE(1006)] = 23587, + [SMALL_STATE(1007)] = 23591, + [SMALL_STATE(1008)] = 23595, + [SMALL_STATE(1009)] = 23599, + [SMALL_STATE(1010)] = 23603, + [SMALL_STATE(1011)] = 23607, + [SMALL_STATE(1012)] = 23611, + [SMALL_STATE(1013)] = 23615, + [SMALL_STATE(1014)] = 23619, + [SMALL_STATE(1015)] = 23623, + [SMALL_STATE(1016)] = 23627, + [SMALL_STATE(1017)] = 23631, + [SMALL_STATE(1018)] = 23635, + [SMALL_STATE(1019)] = 23639, + [SMALL_STATE(1020)] = 23643, + [SMALL_STATE(1021)] = 23647, + [SMALL_STATE(1022)] = 23651, + [SMALL_STATE(1023)] = 23655, + [SMALL_STATE(1024)] = 23659, + [SMALL_STATE(1025)] = 23663, + [SMALL_STATE(1026)] = 23667, + [SMALL_STATE(1027)] = 23671, + [SMALL_STATE(1028)] = 23675, + [SMALL_STATE(1029)] = 23679, + [SMALL_STATE(1030)] = 23683, + [SMALL_STATE(1031)] = 23687, + [SMALL_STATE(1032)] = 23691, + [SMALL_STATE(1033)] = 23695, + [SMALL_STATE(1034)] = 23699, + [SMALL_STATE(1035)] = 23703, + [SMALL_STATE(1036)] = 23707, + [SMALL_STATE(1037)] = 23711, + [SMALL_STATE(1038)] = 23715, + [SMALL_STATE(1039)] = 23719, + [SMALL_STATE(1040)] = 23723, + [SMALL_STATE(1041)] = 23727, + [SMALL_STATE(1042)] = 23731, + [SMALL_STATE(1043)] = 23735, + [SMALL_STATE(1044)] = 23739, + [SMALL_STATE(1045)] = 23743, + [SMALL_STATE(1046)] = 23747, + [SMALL_STATE(1047)] = 23751, + [SMALL_STATE(1048)] = 23755, + [SMALL_STATE(1049)] = 23759, + [SMALL_STATE(1050)] = 23763, + [SMALL_STATE(1051)] = 23767, + [SMALL_STATE(1052)] = 23771, + [SMALL_STATE(1053)] = 23775, + [SMALL_STATE(1054)] = 23779, + [SMALL_STATE(1055)] = 23783, + [SMALL_STATE(1056)] = 23787, + [SMALL_STATE(1057)] = 23791, + [SMALL_STATE(1058)] = 23795, + [SMALL_STATE(1059)] = 23799, + [SMALL_STATE(1060)] = 23803, + [SMALL_STATE(1061)] = 23807, + [SMALL_STATE(1062)] = 23811, + [SMALL_STATE(1063)] = 23815, + [SMALL_STATE(1064)] = 23819, + [SMALL_STATE(1065)] = 23823, + [SMALL_STATE(1066)] = 23827, + [SMALL_STATE(1067)] = 23831, + [SMALL_STATE(1068)] = 23835, + [SMALL_STATE(1069)] = 23839, + [SMALL_STATE(1070)] = 23843, + [SMALL_STATE(1071)] = 23847, + [SMALL_STATE(1072)] = 23851, + [SMALL_STATE(1073)] = 23855, + [SMALL_STATE(1074)] = 23859, + [SMALL_STATE(1075)] = 23863, + [SMALL_STATE(1076)] = 23867, + [SMALL_STATE(1077)] = 23871, + [SMALL_STATE(1078)] = 23875, + [SMALL_STATE(1079)] = 23879, + [SMALL_STATE(1080)] = 23883, + [SMALL_STATE(1081)] = 23887, + [SMALL_STATE(1082)] = 23891, + [SMALL_STATE(1083)] = 23895, + [SMALL_STATE(1084)] = 23899, + [SMALL_STATE(1085)] = 23903, + [SMALL_STATE(1086)] = 23907, + [SMALL_STATE(1087)] = 23911, + [SMALL_STATE(1088)] = 23915, + [SMALL_STATE(1089)] = 23919, + [SMALL_STATE(1090)] = 23923, + [SMALL_STATE(1091)] = 23927, + [SMALL_STATE(1092)] = 23931, + [SMALL_STATE(1093)] = 23935, + [SMALL_STATE(1094)] = 23939, + [SMALL_STATE(1095)] = 23943, + [SMALL_STATE(1096)] = 23947, + [SMALL_STATE(1097)] = 23951, + [SMALL_STATE(1098)] = 23955, + [SMALL_STATE(1099)] = 23959, + [SMALL_STATE(1100)] = 23963, + [SMALL_STATE(1101)] = 23967, + [SMALL_STATE(1102)] = 23971, + [SMALL_STATE(1103)] = 23975, + [SMALL_STATE(1104)] = 23979, + [SMALL_STATE(1105)] = 23983, + [SMALL_STATE(1106)] = 23987, + [SMALL_STATE(1107)] = 23991, + [SMALL_STATE(1108)] = 23995, + [SMALL_STATE(1109)] = 23999, + [SMALL_STATE(1110)] = 24003, + [SMALL_STATE(1111)] = 24007, + [SMALL_STATE(1112)] = 24011, + [SMALL_STATE(1113)] = 24015, + [SMALL_STATE(1114)] = 24019, + [SMALL_STATE(1115)] = 24023, + [SMALL_STATE(1116)] = 24027, + [SMALL_STATE(1117)] = 24031, + [SMALL_STATE(1118)] = 24035, + [SMALL_STATE(1119)] = 24039, + [SMALL_STATE(1120)] = 24043, + [SMALL_STATE(1121)] = 24047, + [SMALL_STATE(1122)] = 24051, + [SMALL_STATE(1123)] = 24055, + [SMALL_STATE(1124)] = 24059, + [SMALL_STATE(1125)] = 24063, + [SMALL_STATE(1126)] = 24067, + [SMALL_STATE(1127)] = 24071, + [SMALL_STATE(1128)] = 24075, + [SMALL_STATE(1129)] = 24079, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), [49] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), - [51] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(773), - [54] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(195), - [57] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(144), - [60] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(381), - [63] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(795), - [66] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(201), - [69] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(201), - [72] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(202), - [75] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(37), - [78] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(38), - [81] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(39), - [84] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(40), - [87] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(41), - [90] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(41), - [93] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), - [95] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(134), - [98] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(12), - [103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(43), - [106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(392), - [109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(393), - [112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(394), - [115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(395), - [118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(118), - [121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(139), - [124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(955), - [127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(40), - [130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), - [132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(381), - [135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(395), - [138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(735), - [141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(759), - [144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(203), - [147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(140), - [150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(397), - [153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(905), - [156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(205), - [159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(205), - [162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(207), - [165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(51), - [168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(49), - [171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(48), - [174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(47), - [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(47), - [180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(46), - [183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(171), - [186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(10), - [189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(44), - [192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(358), - [195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(391), - [198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(390), - [201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(389), - [204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(115), - [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(136), - [210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(910), - [213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(766), - [216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(188), - [219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(169), - [222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(292), - [225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(888), - [228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(174), - [231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(174), - [234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(175), - [237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(30), - [240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(29), - [243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(28), - [246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(27), - [249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(26), - [252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(162), - [255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(6), - [258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(25), - [261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(287), - [264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(286), - [267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(285), - [270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(284), - [273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(91), - [276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(148), - [279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(919), - [282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(774), - [285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(206), - [288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(135), - [291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(240), - [294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(833), - [297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(209), - [300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(209), - [303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(210), - [306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(42), - [309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(61), - [312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(62), - [315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(66), - [318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(68), - [321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(158), - [324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(3), - [327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(13), - [330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(241), - [333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(242), - [336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(243), - [339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(244), - [342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(88), - [345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(150), - [348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(928), - [351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(765), - [354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(196), - [357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(143), - [360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(277), - [363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(898), - [366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(194), - [369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(194), - [372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(173), - [375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(14), - [378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(20), - [381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(22), - [384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(23), - [387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(24), - [390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(155), - [393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(5), - [396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(31), - [399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(288), - [402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(289), - [405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(290), - [408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(291), - [411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(102), - [414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(170), - [417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(937), - [420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(750), - [423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(180), - [426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(164), - [429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(329), - [432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(941), - [435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(181), - [438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(181), - [441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(182), - [444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(32), - [447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(33), - [450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(34), - [453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(35), - [456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(36), - [459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(156), - [462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(2), - [465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(11), - [468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(340), - [471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(341), - [474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(342), - [477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(343), - [480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(114), - [483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(153), - [486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(946), - [489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(27), - [492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(66), - [495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(23), - [498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(35), - [501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(46), - [504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(26), - [507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(68), - [510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(24), - [513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(36), - [516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(397), - [519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(389), - [522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(292), - [525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(284), - [528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(240), - [531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(244), - [534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(329), - [537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(343), - [540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(277), - [543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(291), - [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), - [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), - [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), - [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), - [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), - [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(750), - [641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(180), - [644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(164), - [647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(329), - [650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(941), - [653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(181), - [656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(181), - [659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(182), - [662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(32), - [665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(33), - [668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(34), - [671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(35), - [674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(36), - [677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(36), - [680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), - [682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(156), - [685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(2), - [688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(11), - [691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(340), - [694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(341), - [697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(342), - [700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(343), - [703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(81), - [706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(153), - [709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(946), - [712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(740), - [715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(214), - [718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(163), - [721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(221), - [724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(992), - [727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(198), - [730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(198), - [733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(197), - [736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(15), - [739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(16), - [742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(17), - [745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(18), - [748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(19), + [51] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(709), + [54] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(212), + [57] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(799), + [60] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(210), + [63] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(713), + [66] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(712), + [69] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(791), + [72] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(715), + [75] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(801), + [78] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(937), + [81] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(211), + [84] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(211), + [87] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(204), + [90] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(145), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), + [95] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(12), + [98] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(15), + [101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), + [103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(403), + [106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(276), + [109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(275), + [112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(274), + [115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(106), + [118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(139), + [121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(920), + [124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(699), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), + [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), + [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), + [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17), + [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), + [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), + [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), + [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), + [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14), + [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline, 1), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(798), + [504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(173), + [507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(797), + [510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(172), + [513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(796), + [516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(793), + [519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(792), + [522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(788), + [525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(785), + [528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(845), + [531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(171), + [534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(171), + [537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(170), + [540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(140), + [543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(2), + [546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(11), + [549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), + [551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(496), + [554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(497), + [557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(498), + [560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(455), + [563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(40), + [566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(146), + [569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1032), + [572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(802), + [575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(182), + [578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(803), + [581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(181), + [584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(804), + [587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(805), + [590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(806), + [593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(807), + [596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(808), + [599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(815), + [602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(180), + [605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(180), + [608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(179), + [611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(157), + [614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(3), + [617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(21), + [620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(452), + [623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(453), + [626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(454), + [629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(410), + [632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(65), + [635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(159), + [638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1018), + [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(794), + [646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(184), + [649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(772), + [652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(163), + [655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(745), + [658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(744), + [661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(741), + [664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(740), + [667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(739), + [670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1050), + [673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(166), + [676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(166), + [679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(169), + [682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(133), + [685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(7), + [688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(16), + [691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(495), + [694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(494), + [697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(493), + [700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(475), + [703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(68), + [706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(160), + [709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(930), + [712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(709), + [715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(212), + [718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(799), + [721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(210), + [724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(713), + [727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(712), + [730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(791), + [733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(715), + [736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(801), + [739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(937), + [742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(211), + [745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(211), + [748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(204), [751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(145), - [754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(4), - [757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(21), - [760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(232), - [763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(247), - [766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(256), - [769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(267), - [772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(82), - [775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(168), - [778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(911), - [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), - [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), - [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), - [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(774), - [830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(206), - [833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(135), - [836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(240), - [839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(833), - [842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(209), - [845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(209), - [848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(210), - [851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(42), - [854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(61), - [857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(62), - [860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(66), - [863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(68), - [866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(158), - [869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(3), - [872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(13), - [875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(241), - [878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(242), - [881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(243), - [884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(244), - [887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(86), - [890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(150), - [893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(928), - [896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(766), - [899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(188), - [902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(169), - [905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(292), - [908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(888), - [911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(174), - [914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(174), - [917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(175), - [920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(30), - [923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(29), - [926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(28), - [929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(27), - [932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(26), - [935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(162), - [938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(6), - [941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(25), - [944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(287), - [947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(286), - [950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(285), - [953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(284), - [956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(87), - [959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(148), - [962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(919), - [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), - [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline, 1), - [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), - [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), - [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), - [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), - [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [1087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline, 1), - [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), - [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [1111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(765), - [1114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(196), - [1117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(143), - [1120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(277), - [1123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(898), - [1126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(194), - [1129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(194), - [1132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(173), - [1135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(14), - [1138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(20), - [1141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(22), - [1144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(23), - [1147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(23), - [1150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(24), - [1153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(155), - [1156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(5), - [1159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(31), - [1162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(288), - [1165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(289), - [1168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(290), - [1171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(291), - [1174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(103), - [1177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(170), - [1180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(937), - [1183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(775), - [1186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(187), - [1189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(154), - [1192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(433), - [1195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(814), - [1198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(186), - [1201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(186), - [1204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(185), - [1207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(52), - [1210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(53), - [1213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(63), - [1216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(69), - [1219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(64), - [1222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(159), - [1225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(9), - [1228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(55), - [1231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(444), - [1234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(445), - [1237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(446), - [1240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(447), - [1243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(104), - [1246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(160), - [1249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(964), - [1252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), - [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [1264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), - [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [1268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), - [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [1292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [1294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [1296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [1298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), - [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), - [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [1332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), - [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [1348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(773), - [1351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(195), - [1354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(144), - [1357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(381), - [1360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(795), - [1363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(201), - [1366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(201), - [1369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(202), - [1372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(37), - [1375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(38), - [1378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(39), - [1381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(40), - [1384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(41), - [1387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(134), - [1390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(12), - [1393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(43), - [1396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(392), - [1399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(393), - [1402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(394), - [1405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(395), - [1408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(116), - [1411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(139), - [1414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(955), - [1417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(776), - [1420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(189), - [1423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(147), - [1426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(523), - [1429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(849), - [1432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(191), - [1435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(191), - [1438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(199), - [1441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(54), - [1444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(45), - [1447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(72), - [1450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(71), - [1453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(70), - [1456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(142), - [1459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(7), - [1462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(67), - [1465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(528), - [1468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(529), - [1471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(530), - [1474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(531), - [1477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(117), - [1480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(137), - [1483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(982), - [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [1494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), - [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [1498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [1502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [1516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), - [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [1522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [1530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [1532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(759), - [1535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(203), - [1538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(140), - [1541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(397), - [1544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(905), - [1547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(205), - [1550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(205), - [1553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(207), - [1556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(51), - [1559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(49), - [1562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(48), - [1565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(47), - [1568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(46), - [1571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(171), - [1574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(10), - [1577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(44), - [1580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(358), - [1583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(391), - [1586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(390), - [1589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(389), - [1592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(123), - [1595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(136), - [1598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(910), - [1601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(782), - [1604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(217), - [1607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(213), - [1610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(588), - [1613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(866), - [1616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(483), - [1619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(483), - [1622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(475), - [1625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(78), - [1628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(77), - [1631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(76), - [1634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(73), - [1637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(74), - [1640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(208), - [1643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(50), - [1646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(75), - [1649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(599), - [1652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(600), - [1655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(601), - [1658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(564), - [1661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(130), - [1664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(215), - [1667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(991), - [1670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [1672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verbatim, 3, .production_id = 1), - [1674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verbatim, 3, .production_id = 1), - [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [1678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), REDUCE(sym__symbol_fallback, 1), - [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [1683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_strong_begin, 1), REDUCE(sym__symbol_fallback, 1), - [1686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), - [1688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), - [1690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element, 1), - [1692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__element, 1), - [1694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), - [1696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [1698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), - [1700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [1702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [1704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), - [1706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [1708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), - [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [1714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), - [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [1718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [1720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), - [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [1724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [1726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [1728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), - [1730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__text, 2), - [1732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__text, 2), - [1734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(172), - [1737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), - [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), - [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), - [1745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(179), - [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [1750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), - [1752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(183), - [1755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(184), - [1758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), - [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [1766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(190), - [1769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(192), - [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [1778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), - [1780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), - [1782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(200), - [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), - [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [1789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(204), - [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [1794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), - [1796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), - [1798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(211), - [1801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(212), - [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), - [1808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__comment_with_spaces, 2), - [1810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_with_spaces, 2), - [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [1814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_reference_link, 2), - [1816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_reference_link, 2), - [1818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 2), - [1820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 2), - [1822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 3), - [1824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 3), - [1826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_autolink, 3), - [1828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_autolink, 3), - [1830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_highlighted, 3, .production_id = 3), - [1832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlighted, 3, .production_id = 3), - [1834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 3, .production_id = 3), - [1836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 3, .production_id = 3), - [1838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete, 3, .production_id = 3), - [1840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete, 3, .production_id = 3), - [1842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_superscript, 3, .production_id = 3), - [1844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_superscript, 3, .production_id = 3), - [1846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 3, .production_id = 3), - [1848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 3, .production_id = 3), - [1850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_footnote_reference, 3, .production_id = 4), - [1852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_footnote_reference, 3, .production_id = 4), - [1854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strong_end, 1, .dynamic_precedence = 1000), - [1856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strong_end, 1, .dynamic_precedence = 1000), - [1858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strong, 3, .production_id = 3), - [1860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strong, 3, .production_id = 3), - [1862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_inline, 4), - [1864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_inline, 4), - [1866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(960), - [1869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_span, 4), - [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_span, 4), - [1873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math, 4, .production_id = 7), - [1875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math, 4, .production_id = 7), - [1877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comment, 3), - [1879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 3), - [1881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_emphasis, 4, .dynamic_precedence = 1000), - [1883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emphasis, 4, .dynamic_precedence = 1000), - [1885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_label, 3, .production_id = 8), - [1887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_label, 3, .production_id = 8), - [1889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link_destination, 3), - [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link_destination, 3), - [1893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_inline_attribute, 3), - [1895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_inline_attribute, 3), - [1897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(931), - [1900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_todo, 1), - [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_todo, 1), - [1904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_note, 1), - [1906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note, 1), - [1908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 1), - [1910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), - [1912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(751), - [1915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 2), - [1917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 2), - [1919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hard_line_break, 2), - [1921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hard_line_break, 2), - [1923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collapsed_reference_image, 2), - [1925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collapsed_reference_image, 2), - [1927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_reference_image, 2), - [1929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_reference_image, 2), - [1931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_image, 2), - [1933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_image, 2), - [1935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collapsed_reference_link, 2), - [1937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collapsed_reference_link, 2), - [1939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(757), - [1942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(756), - [1945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(922), - [1948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(940), - [1951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(749), - [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strong_begin, 2), - [1956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), - [1958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strong_begin, 2), - [1960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_attribute, 3, .production_id = 6), - [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_attribute, 3, .production_id = 6), - [1964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_attribute, 2), - [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_attribute, 2), - [1968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(949), - [1971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(748), - [1974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(913), - [1977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(758), - [1980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(958), - [1983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(746), - [1986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(437), - [1989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(967), - [1992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(745), - [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), - [1997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(976), - [2000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(985), - [2003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(743), - [2006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_strong_begin_repeat1, 2), - [2008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_strong_begin_repeat1, 2), SHIFT_REPEAT(541), - [2011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_strong_begin_repeat1, 2), - [2013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(742), - [2016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element, 2), - [2018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__element, 2), - [2020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_without_trailing_space, 1), - [2022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(744), - [2025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_without_trailing_space, 2), - [2027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(994), - [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [2032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [2044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), - [2046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(969), - [2049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(988), - [2052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(676), - [2055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(741), - [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [2140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 1), - [2142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 1, .production_id = 2), - [2144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1), - [2146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value, 3), - [2148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_with_newline, 4, .production_id = 9), - [2150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_with_newline, 3), - [2152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 3), - [2154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2), - [2156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_name, 1), - [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [2160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), - [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [2164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__comment_with_newline_repeat1, 2), SHIFT_REPEAT(721), - [2167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_with_newline_repeat1, 2), - [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [2171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_text, 3), - [2173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_text, 3), - [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), - [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), - [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), - [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), - [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [2213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), - [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [2221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), - [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), - [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), - [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [2229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [2239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), - [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), - [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [2259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), - [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [2265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), - [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [2283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_with_newline_repeat1, 1), - [2285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_description, 3, .production_id = 5), - [2287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_description, 3, .production_id = 5), - [2289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), - [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), - [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [2313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), - [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [2317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), - [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), - [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [2325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), - [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [2329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [2333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), - [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [2337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_description, 2), - [2339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_description, 2), - [2341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [2345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), - [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [2349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), - [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [2353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), - [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [2357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(281), - [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [2364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(542), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [2369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(346), - [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [2374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), - [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [2378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(307), - [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [2383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [2387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(359), - [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [2392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(388), - [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [2397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(357), - [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [2402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), - [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [2406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), - [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [2410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [2414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), - [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [2418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(294), - [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [2423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(283), - [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [2428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(220), - [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), - [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [2441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(615), - [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [2446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(501), - [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [2451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(255), - [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [2456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(398), - [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [2461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(245), - [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [2466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(450), - [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [2471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(532), - [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [2476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), - [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [2480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(411), - [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [2485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [2489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), - [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [2493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(463), - [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [2498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(603), - [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [2503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), - [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [2507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [2511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(492), - [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [2516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [2520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), - [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [2524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), - [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [2528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), - [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [2532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [2536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(543), - [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [2805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_label, 1), - [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [2895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key, 1), - [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [2905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline, 1), - [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [2913] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(12), + [757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(15), + [760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(403), + [763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(276), + [766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(275), + [769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(274), + [772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(78), + [775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(139), + [778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(920), + [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(778), + [788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(189), + [791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(779), + [794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(188), + [797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(780), + [800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(781), + [803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(782), + [806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(783), + [809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(784), + [812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(846), + [815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(186), + [818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(186), + [821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(185), + [824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(152), + [827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(4), + [830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(22), + [833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(407), + [836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(408), + [839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(409), + [842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(365), + [845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(96), + [848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(155), + [851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1004), + [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(743), + [859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(213), + [862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(757), + [865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(162), + [868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(704), + [871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(705), + [874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(706), + [877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(707), + [880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(708), + [883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(928), + [886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(161), + [889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(161), + [892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(202), + [895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(136), + [898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(8), + [901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(14), + [904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(277), + [907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(278), + [910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(279), + [913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(240), + [916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(104), + [919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(149), + [922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(962), + [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), + [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), + [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15), + [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(748), + [974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(194), + [977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(749), + [980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(193), + [983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(750), + [986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(751), + [989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(752), + [992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(753), + [995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(754), + [998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(879), + [1001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(192), + [1004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(192), + [1007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(191), + [1010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(137), + [1013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(9), + [1016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(18), + [1019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(362), + [1022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(363), + [1025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(364), + [1028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(320), + [1031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(110), + [1034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(141), + [1037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(990), + [1040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [1042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [1044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(723), + [1047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(200), + [1050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(724), + [1053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(199), + [1056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(725), + [1059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(726), + [1062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(727), + [1065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(728), + [1068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(729), + [1071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(909), + [1074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(197), + [1077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(197), + [1080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(196), + [1083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(143), + [1086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(6), + [1089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(13), + [1092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(317), + [1095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(318), + [1098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(319), + [1101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(280), + [1104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(123), + [1107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(134), + [1110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(976), + [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [1115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(770), + [1118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(531), + [1121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(769), + [1124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(532), + [1127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(768), + [1130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(767), + [1133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(766), + [1136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(763), + [1139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(762), + [1142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(875), + [1145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(533), + [1148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(533), + [1151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(534), + [1154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(164), + [1157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(20), + [1160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(23), + [1163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(595), + [1166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(539), + [1169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(540), + [1172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(602), + [1175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(129), + [1178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(165), + [1181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1046), + [1184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), + [1186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element, 1), + [1188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__element, 1), + [1190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), + [1192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), + [1194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), + [1196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verbatim, 3, .production_id = 1), + [1198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verbatim, 3, .production_id = 1), + [1200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [1202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [1204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), + [1206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), + [1208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [1212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [1214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [1216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [1218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [1220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [1222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [1224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [1226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), + [1228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [1230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [1232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), + [1234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [1240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__text, 2), + [1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__text, 2), + [1244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(167), + [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), + [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [1257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(174), + [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [1264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), + [1266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), + [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [1272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(183), + [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), + [1279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(187), + [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [1286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(190), + [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), + [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [1295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(195), + [1298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), + [1300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(198), + [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [1307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(201), + [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), + [1312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(203), + [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), + [1317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(205), + [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [1324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), + [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [1332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, .dynamic_precedence = 1000, .production_id = 7), + [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, .dynamic_precedence = 1000, .production_id = 7), + [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collapsed_reference_link, 2), + [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collapsed_reference_link, 2), + [1340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_attribute, 2), + [1342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_attribute, 2), + [1344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_autolink, 3), + [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_autolink, 3), + [1348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_footnote_reference, 3, .production_id = 3), + [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_footnote_reference, 3, .production_id = 3), + [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_inline, 4), + [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_inline, 4), + [1356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_attribute, 3, .production_id = 5), + [1358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_attribute, 3, .production_id = 5), + [1360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_span, 4), + [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_span, 4), + [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math, 4, .production_id = 6), + [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math, 4, .production_id = 6), + [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comment, 3), + [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 3), + [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_emphasis, 4, .dynamic_precedence = 1000), + [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emphasis, 4, .dynamic_precedence = 1000), + [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strong, 4, .dynamic_precedence = 1000), + [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strong, 4, .dynamic_precedence = 1000), + [1380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_superscript, 4, .dynamic_precedence = 1000, .production_id = 7), + [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_superscript, 4, .dynamic_precedence = 1000, .production_id = 7), + [1384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_highlighted, 4, .dynamic_precedence = 1000, .production_id = 7), + [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlighted, 4, .dynamic_precedence = 1000, .production_id = 7), + [1388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 4, .dynamic_precedence = 1000, .production_id = 7), + [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 4, .dynamic_precedence = 1000, .production_id = 7), + [1392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete, 4, .dynamic_precedence = 1000, .production_id = 7), + [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete, 4, .dynamic_precedence = 1000, .production_id = 7), + [1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_label, 3, .production_id = 8), + [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_label, 3, .production_id = 8), + [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link_destination, 3), + [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link_destination, 3), + [1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_inline_attribute, 3), + [1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_inline_attribute, 3), + [1408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_image, 2), + [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_image, 2), + [1412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_reference_image, 2), + [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_reference_image, 2), + [1416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(950), + [1419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_todo, 1), + [1421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_todo, 1), + [1423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_note, 1), + [1425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note, 1), + [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 1), + [1429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), + [1431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(795), + [1434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collapsed_reference_image, 2), + [1436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collapsed_reference_image, 2), + [1438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__comment_with_spaces, 2), + [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_with_spaces, 2), + [1442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 2), + [1444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 2), + [1446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hard_line_break, 2), + [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hard_line_break, 2), + [1450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_reference_link, 2), + [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_reference_link, 2), + [1454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 2), + [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 2), + [1458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 3), + [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 3), + [1462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(714), + [1465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(964), + [1468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(800), + [1471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(978), + [1474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(809), + [1477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(992), + [1480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(742), + [1483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(922), + [1486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1006), + [1489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(734), + [1492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(936), + [1495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1020), + [1498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(702), + [1501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(717), + [1504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1009), + [1507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1034), + [1510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(513), + [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), + [1519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(756), + [1522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element, 2), + [1524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__element, 2), + [1526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_without_trailing_space, 1), + [1528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(755), + [1531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1048), + [1534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_without_trailing_space, 2), + [1536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(738), + [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [1631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), + [1633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(999), + [1636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(998), + [1639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(655), + [1642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(810), + [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [1649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 1, .production_id = 2), + [1651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_with_newline, 4, .production_id = 7), + [1653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 1), + [1655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value, 3), + [1657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2), + [1659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1), + [1661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_with_newline, 3), + [1663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 3), + [1665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_name, 1), + [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), + [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), + [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), + [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), + [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [1685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_text, 3), + [1687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_text, 3), + [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), + [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [1705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), + [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [1711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), + [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), + [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), + [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), + [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), + [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), + [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), + [1767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__comment_with_newline_repeat1, 2), SHIFT_REPEAT(698), + [1770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_with_newline_repeat1, 2), + [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [1780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [1792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_with_newline_repeat1, 1), + [1794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_description, 2), + [1796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_description, 2), + [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_description, 3, .production_id = 4), + [1804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_description, 3, .production_id = 4), + [1806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(255), + [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [1811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(281), + [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [1816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(281), + [1819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(281), + [1822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(281), + [1825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(281), + [1828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(254), + [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [1833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(291), + [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [1838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(291), + [1841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(254), + [1844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(254), + [1847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(254), + [1850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(375), + [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [1855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(402), + [1858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [1860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(402), + [1863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(402), + [1866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(402), + [1869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(402), + [1872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(323), + [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [1877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(323), + [1880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(323), + [1883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(323), + [1886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(323), + [1889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(323), + [1892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(323), + [1895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(402), + [1898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(402), + [1901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(336), + [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [1906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(336), + [1909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(406), + [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [1914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(406), + [1917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(375), + [1920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(469), + [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [1925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(469), + [1928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(469), + [1931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(281), + [1934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(469), + [1937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(469), + [1940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(554), + [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [1945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(554), + [1948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(368), + [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [1953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(368), + [1956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(368), + [1959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(368), + [1962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(368), + [1965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(368), + [1968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(368), + [1971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(281), + [1974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(255), + [1977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(381), + [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [1982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(381), + [1985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(467), + [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [1990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(542), + [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [1995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(542), + [1998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(467), + [2001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(243), + [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [2006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(542), + [2009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(542), + [2012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(542), + [2015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(542), + [2018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(542), + [2021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(243), + [2024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(469), + [2027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(243), + [2030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(512), + [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [2035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(512), + [2038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(243), + [2041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(243), + [2044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(413), + [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [2049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(413), + [2052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(413), + [2055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(413), + [2058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(413), + [2061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(413), + [2064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(413), + [2067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(500), + [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [2072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(243), + [2075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(243), + [2078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(500), + [2081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(426), + [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [2086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(426), + [2089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(254), + [2092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(500), + [2095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(500), + [2098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(469), + [2101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(500), + [2104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(500), + [2107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(500), + [2110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(254), + [2113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(254), + [2116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(457), + [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [2121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(457), + [2124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(457), + [2127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(457), + [2130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(457), + [2133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(457), + [2136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(457), + [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [2141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(470), + [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [2146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(470), + [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [2521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key, 1), + [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [2551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_label, 1), + [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [2607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline, 1), + [2609] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), }; enum ts_external_scanner_symbol_identifiers { @@ -42642,9 +39576,21 @@ enum ts_external_scanner_symbol_identifiers { ts_external_token__verbatim_content = 3, ts_external_token__emphasis_mark_begin = 4, ts_external_token_emphasis_end = 5, - ts_external_token__in_fallback = 6, - ts_external_token__non_whitespace_check = 7, - ts_external_token__error = 8, + ts_external_token__strong_mark_begin = 6, + ts_external_token_strong_end = 7, + ts_external_token__superscript_mark_begin = 8, + ts_external_token_superscript_end = 9, + ts_external_token__subscript_mark_begin = 10, + ts_external_token_subscript_end = 11, + ts_external_token__highlighted_mark_begin = 12, + ts_external_token_highlighted_end = 13, + ts_external_token__insert_mark_begin = 14, + ts_external_token_insert_end = 15, + ts_external_token__delete_mark_begin = 16, + ts_external_token_delete_end = 17, + ts_external_token__in_fallback = 18, + ts_external_token__non_whitespace_check = 19, + ts_external_token__error = 20, }; static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { @@ -42654,12 +39600,24 @@ static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { [ts_external_token__verbatim_content] = sym__verbatim_content, [ts_external_token__emphasis_mark_begin] = sym__emphasis_mark_begin, [ts_external_token_emphasis_end] = sym_emphasis_end, + [ts_external_token__strong_mark_begin] = sym__strong_mark_begin, + [ts_external_token_strong_end] = sym_strong_end, + [ts_external_token__superscript_mark_begin] = sym__superscript_mark_begin, + [ts_external_token_superscript_end] = sym_superscript_end, + [ts_external_token__subscript_mark_begin] = sym__subscript_mark_begin, + [ts_external_token_subscript_end] = sym_subscript_end, + [ts_external_token__highlighted_mark_begin] = sym__highlighted_mark_begin, + [ts_external_token_highlighted_end] = sym_highlighted_end, + [ts_external_token__insert_mark_begin] = sym__insert_mark_begin, + [ts_external_token_insert_end] = sym_insert_end, + [ts_external_token__delete_mark_begin] = sym__delete_mark_begin, + [ts_external_token_delete_end] = sym_delete_end, [ts_external_token__in_fallback] = sym__in_fallback, [ts_external_token__non_whitespace_check] = sym__non_whitespace_check, [ts_external_token__error] = sym__error, }; -static const bool ts_external_scanner_states[11][EXTERNAL_TOKEN_COUNT] = { +static const bool ts_external_scanner_states[41][EXTERNAL_TOKEN_COUNT] = { [1] = { [ts_external_token__ignored] = true, [ts_external_token__verbatim_begin] = true, @@ -42667,6 +39625,18 @@ static const bool ts_external_scanner_states[11][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__verbatim_content] = true, [ts_external_token__emphasis_mark_begin] = true, [ts_external_token_emphasis_end] = true, + [ts_external_token__strong_mark_begin] = true, + [ts_external_token_strong_end] = true, + [ts_external_token__superscript_mark_begin] = true, + [ts_external_token_superscript_end] = true, + [ts_external_token__subscript_mark_begin] = true, + [ts_external_token_subscript_end] = true, + [ts_external_token__highlighted_mark_begin] = true, + [ts_external_token_highlighted_end] = true, + [ts_external_token__insert_mark_begin] = true, + [ts_external_token_insert_end] = true, + [ts_external_token__delete_mark_begin] = true, + [ts_external_token_delete_end] = true, [ts_external_token__in_fallback] = true, [ts_external_token__non_whitespace_check] = true, [ts_external_token__error] = true, @@ -42676,31 +39646,145 @@ static const bool ts_external_scanner_states[11][EXTERNAL_TOKEN_COUNT] = { }, [3] = { [ts_external_token__verbatim_begin] = true, - [ts_external_token_emphasis_end] = true, + [ts_external_token_delete_end] = true, }, [4] = { + [ts_external_token__verbatim_begin] = true, + [ts_external_token_insert_end] = true, + }, + [5] = { + [ts_external_token__verbatim_begin] = true, + [ts_external_token_strong_end] = true, + }, + [6] = { + [ts_external_token__verbatim_begin] = true, + [ts_external_token_subscript_end] = true, + }, + [7] = { + [ts_external_token__verbatim_begin] = true, + [ts_external_token_superscript_end] = true, + }, + [8] = { + [ts_external_token__verbatim_begin] = true, + [ts_external_token_highlighted_end] = true, + }, + [9] = { + [ts_external_token__verbatim_begin] = true, + [ts_external_token_emphasis_end] = true, + }, + [10] = { + [ts_external_token__verbatim_begin] = true, + [ts_external_token_superscript_end] = true, + [ts_external_token__non_whitespace_check] = true, + }, + [11] = { + [ts_external_token__verbatim_begin] = true, + [ts_external_token__non_whitespace_check] = true, + }, + [12] = { [ts_external_token__verbatim_begin] = true, [ts_external_token_emphasis_end] = true, [ts_external_token__non_whitespace_check] = true, }, - [5] = { + [13] = { [ts_external_token__verbatim_begin] = true, + [ts_external_token_delete_end] = true, [ts_external_token__non_whitespace_check] = true, }, - [6] = { + [14] = { + [ts_external_token__verbatim_begin] = true, + [ts_external_token_insert_end] = true, + [ts_external_token__non_whitespace_check] = true, + }, + [15] = { + [ts_external_token__verbatim_begin] = true, + [ts_external_token_highlighted_end] = true, + [ts_external_token__non_whitespace_check] = true, + }, + [16] = { + [ts_external_token__verbatim_begin] = true, + [ts_external_token_subscript_end] = true, + [ts_external_token__non_whitespace_check] = true, + }, + [17] = { + [ts_external_token__verbatim_begin] = true, + [ts_external_token_strong_end] = true, + [ts_external_token__non_whitespace_check] = true, + }, + [18] = { + [ts_external_token__strong_mark_begin] = true, + [ts_external_token__in_fallback] = true, + }, + [19] = { + [ts_external_token__superscript_mark_begin] = true, + [ts_external_token__in_fallback] = true, + }, + [20] = { + [ts_external_token__subscript_mark_begin] = true, + [ts_external_token__in_fallback] = true, + }, + [21] = { + [ts_external_token__highlighted_mark_begin] = true, + [ts_external_token__in_fallback] = true, + }, + [22] = { + [ts_external_token__insert_mark_begin] = true, + [ts_external_token__in_fallback] = true, + }, + [23] = { + [ts_external_token__delete_mark_begin] = true, + [ts_external_token__in_fallback] = true, + }, + [24] = { [ts_external_token__emphasis_mark_begin] = true, [ts_external_token__in_fallback] = true, }, - [7] = { + [25] = { + [ts_external_token_delete_end] = true, + }, + [26] = { + [ts_external_token_subscript_end] = true, + }, + [27] = { + [ts_external_token_insert_end] = true, + }, + [28] = { [ts_external_token__verbatim_end] = true, }, - [8] = { + [29] = { [ts_external_token_emphasis_end] = true, }, - [9] = { + [30] = { + [ts_external_token_strong_end] = true, + }, + [31] = { + [ts_external_token_superscript_end] = true, + }, + [32] = { + [ts_external_token_highlighted_end] = true, + }, + [33] = { [ts_external_token__verbatim_content] = true, }, - [10] = { + [34] = { + [ts_external_token__delete_mark_begin] = true, + }, + [35] = { + [ts_external_token__insert_mark_begin] = true, + }, + [36] = { + [ts_external_token__highlighted_mark_begin] = true, + }, + [37] = { + [ts_external_token__subscript_mark_begin] = true, + }, + [38] = { + [ts_external_token__superscript_mark_begin] = true, + }, + [39] = { + [ts_external_token__strong_mark_begin] = true, + }, + [40] = { [ts_external_token__emphasis_mark_begin] = true, }, }; diff --git a/tree-sitter-djot-inline/src/scanner.c b/tree-sitter-djot-inline/src/scanner.c index e2a952a..f36ceff 100644 --- a/tree-sitter-djot-inline/src/scanner.c +++ b/tree-sitter-djot-inline/src/scanner.c @@ -21,6 +21,18 @@ typedef enum { // stack. EMPHASIS_MARK_BEGIN, EMPHASIS_END, + STRONG_MARK_BEGIN, + STRONG_END, + SUPERSCRIPT_MARK_BEGIN, + SUPERSCRIPT_END, + SUBSCRIPT_MARK_BEGIN, + SUBSCRIPT_END, + HIGHLIGHTED_MARK_BEGIN, + HIGHLIGHTED_END, + INSERT_MARK_BEGIN, + INSERT_END, + DELETE_MARK_BEGIN, + DELETE_END, // If we're scanning a fallback token then we should accept the beginning // markers, but not push anything on the stack. @@ -35,6 +47,11 @@ typedef enum { VERBATIM, EMPHASIS, STRONG, + SUPERSCRIPT, + SUBSCRIPT, + HIGHLIGHTED, + INSERT, + DELETE, } ElementType; typedef struct { @@ -202,6 +219,19 @@ static Element *find_element(Scanner *s, ElementType type) { return NULL; } +// Match a `_}` style token. +static bool scan_bracketed_span_end(TSLexer *lexer, char marker) { + if (lexer->lookahead != marker) { + return false; + } + advance(lexer); + if (lexer->lookahead != '}') { + return false; + } + advance(lexer); + return true; +} + // Scan an ending token for a span (`_` or `_}`) if marker == '_'. // // This routine is responsible for parsing the trailing whitespace in a span, @@ -226,44 +256,7 @@ static bool scan_span_end(TSLexer *lexer, char marker, } // Only match `_}`. - if (lexer->lookahead != marker) { - return false; - } - advance(lexer); - if (lexer->lookahead != '}') { - return false; - } - advance(lexer); - return true; -} - -static bool parse_span_end(Scanner *s, TSLexer *lexer, ElementType element, - TokenType token, char marker, - bool whitespace_sensitive) { - // Only close the topmost element, so in: - // - // _a *b_ - // - // The `*` isn't allowed to open a span, and that branch should not be valid. - Element *top = peek_element(s); - if (!top || top->type != element) { - return false; - } - - // If we've chosen any fallback symbols inside the span then we - // should not accept the span. - if (top->data > 0) { - return false; - } - - if (!scan_span_end(lexer, marker, whitespace_sensitive)) { - return false; - } - - lexer->mark_end(lexer); - lexer->result_symbol = token; - array_pop(s->open_elements); - return true; + return scan_bracketed_span_end(lexer, marker); } static bool mark_span_begin(Scanner *s, TSLexer *lexer, @@ -305,13 +298,51 @@ static bool mark_span_begin(Scanner *s, TSLexer *lexer, } } +// Parse a span ending token, either `_` or `_}`. +static bool parse_span_end(Scanner *s, TSLexer *lexer, ElementType element, + TokenType token, char marker, + bool whitespace_sensitive, bool bracketed_only) { + // Only close the topmost element, so in: + // + // _a *b_ + // + // The `*` isn't allowed to open a span, and that branch should not be valid. + Element *top = peek_element(s); + if (!top || top->type != element) { + return false; + } + + // If we've chosen any fallback symbols inside the span then we + // should not accept the span. + if (top->data > 0) { + return false; + } + + if (bracketed_only) { + if (!scan_bracketed_span_end(lexer, marker)) { + return false; + } + } else { + if (!scan_span_end(lexer, marker, whitespace_sensitive)) { + return false; + } + } + + lexer->mark_end(lexer); + lexer->result_symbol = token; + array_pop(s->open_elements); + return true; +} + +// Parse a span delimited with `marker`, with `_`, `{_`, and `_}` being valid +// delimiters. static bool parse_span(Scanner *s, TSLexer *lexer, const bool *valid_symbols, ElementType element, TokenType begin_token, TokenType end_token, char marker, - bool whitespace_sensitive) { + bool whitespace_sensitive, bool bracketed_only) { if (valid_symbols[end_token] && - parse_span_end(s, lexer, element, end_token, marker, - whitespace_sensitive)) { + parse_span_end(s, lexer, element, end_token, marker, whitespace_sensitive, + bracketed_only)) { return true; } if (valid_symbols[begin_token] && @@ -324,7 +355,37 @@ static bool parse_span(Scanner *s, TSLexer *lexer, const bool *valid_symbols, static bool parse_emphasis(Scanner *s, TSLexer *lexer, const bool *valid_symbols) { return parse_span(s, lexer, valid_symbols, EMPHASIS, EMPHASIS_MARK_BEGIN, - EMPHASIS_END, '_', true); + EMPHASIS_END, '_', true, false); +} +static bool parse_strong(Scanner *s, TSLexer *lexer, + const bool *valid_symbols) { + return parse_span(s, lexer, valid_symbols, STRONG, STRONG_MARK_BEGIN, + STRONG_END, '*', true, false); +} +static bool parse_superscript(Scanner *s, TSLexer *lexer, + const bool *valid_symbols) { + return parse_span(s, lexer, valid_symbols, SUPERSCRIPT, + SUPERSCRIPT_MARK_BEGIN, SUPERSCRIPT_END, '^', false, false); +} +static bool parse_subscript(Scanner *s, TSLexer *lexer, + const bool *valid_symbols) { + return parse_span(s, lexer, valid_symbols, SUBSCRIPT, SUBSCRIPT_MARK_BEGIN, + SUBSCRIPT_END, '~', false, false); +} +static bool parse_highlighted(Scanner *s, TSLexer *lexer, + const bool *valid_symbols) { + return parse_span(s, lexer, valid_symbols, HIGHLIGHTED, + HIGHLIGHTED_MARK_BEGIN, HIGHLIGHTED_END, '=', false, true); +} +static bool parse_insert(Scanner *s, TSLexer *lexer, + const bool *valid_symbols) { + return parse_span(s, lexer, valid_symbols, INSERT, INSERT_MARK_BEGIN, + INSERT_END, '+', false, true); +} +static bool parse_delete(Scanner *s, TSLexer *lexer, + const bool *valid_symbols) { + return parse_span(s, lexer, valid_symbols, DELETE, DELETE_MARK_BEGIN, + DELETE_END, '-', false, true); } static bool check_non_whitespace(Scanner *s, TSLexer *lexer) { @@ -378,6 +439,24 @@ bool tree_sitter_djot_inline_external_scanner_scan(void *payload, if (parse_emphasis(s, lexer, valid_symbols)) { return true; } + if (parse_strong(s, lexer, valid_symbols)) { + return true; + } + if (parse_superscript(s, lexer, valid_symbols)) { + return true; + } + if (parse_subscript(s, lexer, valid_symbols)) { + return true; + } + if (parse_highlighted(s, lexer, valid_symbols)) { + return true; + } + if (parse_insert(s, lexer, valid_symbols)) { + return true; + } + if (parse_delete(s, lexer, valid_symbols)) { + return true; + } switch (lexer->lookahead) { case '`': @@ -388,16 +467,6 @@ bool tree_sitter_djot_inline_external_scanner_scan(void *payload, return true; } break; - // case '*': - // if (parse_strong(s, lexer, valid_symbols)) { - // return true; - // } - // break; - // case '_': - // if (parse_emphasis(s, lexer, valid_symbols)) { - // return true; - // } - // break; default: break; } @@ -464,6 +533,30 @@ static char *token_type_s(TokenType t) { return "EMPHASIS_MARK_BEGIN"; case EMPHASIS_END: return "EMPHASIS_END"; + case STRONG_MARK_BEGIN: + return "STRONG_MARK_BEGIN"; + case STRONG_END: + return "STRONG_END"; + case SUPERSCRIPT_MARK_BEGIN: + return "SUPERSCRIPT_MARK_BEGIN"; + case SUPERSCRIPT_END: + return "SUPERSCRIPT_END"; + case SUBSCRIPT_MARK_BEGIN: + return "SUBSCRIPT_MARK_BEGIN"; + case SUBSCRIPT_END: + return "SUBSCRIPT_END"; + case HIGHLIGHTED_MARK_BEGIN: + return "HIGHLIGHTED_MARK_BEGIN"; + case HIGHLIGHTED_END: + return "HIGHLIGHTED_END"; + case INSERT_MARK_BEGIN: + return "INSERT_MARK_BEGIN"; + case INSERT_END: + return "INSERT_END"; + case DELETE_MARK_BEGIN: + return "DELETE_MARK_BEGIN"; + case DELETE_END: + return "DELETE_END"; case IN_FALLBACK: return "IN_FALLBACK"; @@ -479,10 +572,22 @@ static char *token_type_s(TokenType t) { static char *element_type_s(ElementType t) { switch (t) { + case VERBATIM: + return "VERBATIM"; case EMPHASIS: return "EMPHASIS"; case STRONG: return "STRONG"; + case SUPERSCRIPT: + return "SUPERSCRIPT"; + case SUBSCRIPT: + return "SUBSCRIPT"; + case HIGHLIGHTED: + return "HIGHLIGHTED"; + case INSERT: + return "INSERT"; + case DELETE: + return "DELETE"; } } @@ -490,11 +595,8 @@ static void dump_scanner(Scanner *s) { printf("--- Open elements: %u (last -> first)\n", s->open_elements->size); for (size_t i = 0; i < s->open_elements->size; ++i) { Element *e = *array_get(s->open_elements, i); - printf(" %s data: %u ignore_end: %u\n", element_type_s(e->type), e->data, - e->ignore_end); + printf(" %s data: %u\n", element_type_s(e->type), e->data); } - printf("---\n"); - printf(" verbatim_tick_count: %u\n", s->verbatim_tick_count); printf("===\n"); } diff --git a/tree-sitter-djot-inline/test/corpus/syntax.txt b/tree-sitter-djot-inline/test/corpus/syntax.txt index 4d5c089..4d78b7d 100644 --- a/tree-sitter-djot-inline/test/corpus/syntax.txt +++ b/tree-sitter-djot-inline/test/corpus/syntax.txt @@ -392,7 +392,7 @@ cd_ (inline (emphasis (emphasis_begin) (content) (emphasis_end))) =============================================================================== -Emphasis: Prefer start token +Emphasis: Shorter span =============================================================================== {_*s*{_b_ @@ -403,6 +403,18 @@ Emphasis: Prefer start token (strong (strong_begin) (content) (strong_end)) (emphasis (emphasis_begin) (content) (emphasis_end))) +=============================================================================== +Superscript: Shorter span +=============================================================================== + +{^*s*{^b^ + +------------------------------------------------------------------------------- + +(inline + (strong (strong_begin) (content) (strong_end)) + (superscript (superscript_begin) (content) (superscript_end))) + =============================================================================== Superscript: three chars with spaces =============================================================================== @@ -410,7 +422,11 @@ Superscript: three chars with spaces ------------------------------------------------------------------------------- -(inline (superscript (content))) +(inline + (superscript + (superscript_begin) + (content) + (superscript_end))) =============================================================================== Superscript: two chars with spaces @@ -419,7 +435,11 @@ Superscript: two chars with spaces ------------------------------------------------------------------------------- -(inline (superscript (content))) +(inline + (superscript + (superscript_begin) + (content) + (superscript_end))) =============================================================================== Superscript: one char between @@ -428,7 +448,11 @@ Superscript: one char between ------------------------------------------------------------------------------- -(inline (superscript (content))) +(inline + (superscript + (superscript_begin) + (content) + (superscript_end))) =============================================================================== Superscript: three chars with a newline @@ -438,7 +462,11 @@ b c^ ------------------------------------------------------------------------------- -(inline (superscript (content))) +(inline + (superscript + (superscript_begin) + (content) + (superscript_end))) =============================================================================== @@ -449,7 +477,11 @@ b c^ ------------------------------------------------------------------------------- -(inline (superscript (content))) +(inline + (superscript + (superscript_begin) + (content) + (superscript_end))) =============================================================================== Superscript: three chars with a two newlines @@ -460,7 +492,11 @@ c^ ------------------------------------------------------------------------------- -(inline (superscript (content))) +(inline + (superscript + (superscript_begin) + (content) + (superscript_end))) =============================================================================== Superscript: two chars with a newline @@ -470,7 +506,11 @@ b^ ------------------------------------------------------------------------------- -(inline (superscript (content))) +(inline + (superscript + (superscript_begin) + (content) + (superscript_end))) =============================================================================== Superscript: two chars with a newline 2 @@ -480,7 +520,11 @@ cd^ ------------------------------------------------------------------------------- -(inline (superscript (content))) +(inline + (superscript + (superscript_begin) + (content) + (superscript_end))) =============================================================================== Superscript: two chars with a newline 3 @@ -491,7 +535,11 @@ cd^ ------------------------------------------------------------------------------- -(inline (superscript (content))) +(inline + (superscript + (superscript_begin) + (content) + (superscript_end))) =============================================================================== Emphasis: nested @@ -610,6 +658,60 @@ _________a (inline) +=============================================================================== +Superscript: 2 not emphasis +=============================================================================== +^^ a + +------------------------------------------------------------------------------- + +(inline) + +=============================================================================== +Superscript: 3 not emphasis +=============================================================================== +^^^ a + +------------------------------------------------------------------------------- + +(inline) + +=============================================================================== +Superscript: long not emphasis +=============================================================================== +^^^^^^^^^ a + +------------------------------------------------------------------------------- + +(inline) + +=============================================================================== +Superscript: begin 2 not emphasis +=============================================================================== +^^a + +------------------------------------------------------------------------------- + +(inline) + +=============================================================================== +Superscript: begin 3 not emphasis +=============================================================================== +^^^a + +------------------------------------------------------------------------------- + +(inline) + +=============================================================================== +Superscript: begin long not emphasis +=============================================================================== +^^^^^^^^^a + +------------------------------------------------------------------------------- + +(inline) + =============================================================================== Strong: forced despite spaces =============================================================================== @@ -635,8 +737,8 @@ Subscript ------------------------------------------------------------------------------- (inline - (subscript (content)) - (subscript (content))) + (subscript (subscript_begin) (content) (subscript_end)) + (subscript (subscript_begin) (content) (subscript_end))) =============================================================================== Superscript @@ -647,8 +749,14 @@ Superscript ------------------------------------------------------------------------------- (inline - (superscript (content)) - (superscript (content))) + (superscript + (superscript_begin) + (content) + (superscript_end)) + (superscript + (superscript_begin) + (content) + (superscript_end))) =============================================================================== Highlighted @@ -658,7 +766,22 @@ With {=mark=} here ------------------------------------------------------------------------------- (inline - (highlighted (content))) + (highlighted + (highlighted_begin) + (content) + (highlighted_end))) + +=============================================================================== +Highlighted: Shorter span +=============================================================================== + +{=*s*{=b=} + +------------------------------------------------------------------------------- + +(inline + (strong (strong_begin) (content) (strong_end)) + (highlighted (highlighted_begin) (content) (highlighted_end))) =============================================================================== Insert @@ -668,7 +791,10 @@ With {+insert+} here ------------------------------------------------------------------------------- (inline - (insert (content))) + (insert + (insert_begin) + (content) + (insert_end))) =============================================================================== Delete @@ -678,7 +804,10 @@ With {-delete-} here ------------------------------------------------------------------------------- (inline - (delete (content))) + (delete + (delete_begin) + (content) + (delete_end))) =============================================================================== Inline with newlines @@ -698,15 +827,25 @@ b~ (inline (highlighted - (content)) + (highlighted_begin) + (content) + (highlighted_end)) (insert - (content)) + (insert_begin) + (content) + (insert_end)) (delete - (content)) + (delete_begin) + (content) + (delete_end)) (superscript - (content)) + (superscript_begin) + (content) + (superscript_end)) (subscript - (content))) + (subscript_begin) + (content) + (subscript_end))) =============================================================================== Hard line break From 85cf546fe2e1c472d69262f396a120f09d3f2dcd Mon Sep 17 00:00:00 2001 From: Jonas Hietala Date: Wed, 28 Aug 2024 12:53:18 +0200 Subject: [PATCH 14/46] Update highlights --- tree-sitter-djot-inline/package.json | 1 + .../queries/highlights.scm | 49 ++++--------------- tree-sitter-djot/src/scanner.c | 2 +- 3 files changed, 12 insertions(+), 40 deletions(-) diff --git a/tree-sitter-djot-inline/package.json b/tree-sitter-djot-inline/package.json index 0fc1c06..6c797db 100644 --- a/tree-sitter-djot-inline/package.json +++ b/tree-sitter-djot-inline/package.json @@ -33,6 +33,7 @@ "tree-sitter": [ { "scope": "source.djot_inline", + "injection-regex": "djot_inline", "highlights": [ "queries/highlights.scm" ] diff --git a/tree-sitter-djot-inline/queries/highlights.scm b/tree-sitter-djot-inline/queries/highlights.scm index 7a22d75..e8b0a05 100644 --- a/tree-sitter-djot-inline/queries/highlights.scm +++ b/tree-sitter-djot-inline/queries/highlights.scm @@ -77,50 +77,21 @@ (subscript) @markup.subscript -; We need to target tokens specifically because `{=` etc can exist as fallback symbols in -; regular text, which we don't want to highlight or conceal. -(highlighted - [ - "{=" - "=}" - ] @punctuation.delimiter - (#set! conceal "")) - -(insert - [ - "{+" - "+}" - ] @punctuation.delimiter - (#set! conceal "")) - -(delete - [ - "{-" - "-}" - ] @punctuation.delimiter - (#set! conceal "")) - -(superscript - [ - "^" - "{^" - "^}" - ] @punctuation.delimiter - (#set! conceal "")) - -(subscript - [ - "~" - "{~" - "~}" - ] @punctuation.delimiter - (#set! conceal "")) - ([ (emphasis_begin) (emphasis_end) (strong_begin) (strong_end) + (superscript_begin) + (superscript_end) + (subscript_begin) + (subscript_end) + (highlighted_begin) + (highlighted_end) + (insert_begin) + (insert_end) + (delete_begin) + (delete_end) (verbatim_marker_begin) (verbatim_marker_end) (math_marker) diff --git a/tree-sitter-djot/src/scanner.c b/tree-sitter-djot/src/scanner.c index 53e3c83..bdf5338 100644 --- a/tree-sitter-djot/src/scanner.c +++ b/tree-sitter-djot/src/scanner.c @@ -3,7 +3,7 @@ #include "tree_sitter/parser.h" #include -#define DEBUG +// #define DEBUG #ifdef DEBUG #include From 84e0fc793dd2980d895e0d073e813f5673e925a0 Mon Sep 17 00:00:00 2001 From: Jonas Hietala Date: Thu, 29 Aug 2024 10:37:36 +0200 Subject: [PATCH 15/46] Move lots of elements to external scanner Try to update package description a bit... Not sure about them really. --- tree-sitter-djot-inline/binding.gyp | 2 +- .../bindings/rust/build.rs | 5 +- tree-sitter-djot-inline/grammar.js | 100 +- tree-sitter-djot-inline/package.json | 5 +- .../queries/highlights.scm | 13 + tree-sitter-djot-inline/src/grammar.json | 370 +- tree-sitter-djot-inline/src/node-types.json | 4 - tree-sitter-djot-inline/src/parser.c | 42126 ++++++++-------- tree-sitter-djot-inline/src/scanner.c | 120 +- .../test/corpus/syntax.txt | 163 +- tree-sitter-djot/binding.gyp | 2 +- tree-sitter-djot/package.json | 5 +- 12 files changed, 21436 insertions(+), 21479 deletions(-) diff --git a/tree-sitter-djot-inline/binding.gyp b/tree-sitter-djot-inline/binding.gyp index 337bb19..6e705de 100644 --- a/tree-sitter-djot-inline/binding.gyp +++ b/tree-sitter-djot-inline/binding.gyp @@ -11,7 +11,7 @@ "sources": [ "bindings/node/binding.cc", "src/parser.c", - # NOTE: if your language has an external scanner, add it here. + "src/scanner.c", ], "cflags_c": [ "-std=c11", diff --git a/tree-sitter-djot-inline/bindings/rust/build.rs b/tree-sitter-djot-inline/bindings/rust/build.rs index c76123c..5ab5a12 100644 --- a/tree-sitter-djot-inline/bindings/rust/build.rs +++ b/tree-sitter-djot-inline/bindings/rust/build.rs @@ -8,12 +8,9 @@ fn main() { c_config.file(&parser_path); println!("cargo:rerun-if-changed={}", parser_path.to_str().unwrap()); - // NOTE: if your language uses an external scanner, uncomment this block: - /* let scanner_path = src_dir.join("scanner.c"); c_config.file(&scanner_path); println!("cargo:rerun-if-changed={}", scanner_path.to_str().unwrap()); - */ - c_config.compile("tree-sitter-YOUR_LANGUAGE_NAME"); + c_config.compile("tree-sitter-djot_inline"); } diff --git a/tree-sitter-djot-inline/grammar.js b/tree-sitter-djot-inline/grammar.js index d1234ab..5f764e9 100644 --- a/tree-sitter-djot-inline/grammar.js +++ b/tree-sitter-djot-inline/grammar.js @@ -11,14 +11,11 @@ module.exports = grammar({ [$.highlighted_begin, $._symbol_fallback], [$.insert_begin, $._symbol_fallback], [$.delete_begin, $._symbol_fallback], + [$._bracketed_text_begin, $._symbol_fallback], + [$._image_description_begin, $._symbol_fallback], + [$._inline_attribute_begin, $._inline_attribute_fallback], - [$._image_description, $._symbol_fallback], [$.math, $._symbol_fallback], - [$.link_text, $.span, $._symbol_fallback], - - [$._inline, $._comment_with_spaces], - [$._inline_without_trailing_space, $._comment_with_spaces], - [$._comment_with_spaces], ], rules: { @@ -55,7 +52,6 @@ module.exports = grammar({ $.raw_inline, $.footnote_reference, $.symbol, - $.span, $._image, $._link, $._comment_with_spaces, @@ -63,31 +59,12 @@ module.exports = grammar({ $._symbol_fallback, $._text, ), - optional($.inline_attribute), + optional(choice($.inline_attribute, $._inline_attribute_fallback)), ), $.span, ), ), - inline_attribute: ($) => - seq( - token.immediate("{"), - alias( - repeat( - choice( - $.class, - $.identifier, - $.key_value, - alias($._comment_with_newline, $.comment), - $._whitespace1, - $._newline, - ), - ), - $.args, - ), - "}", - ), - // Emphasis and strong are a little special as they don't allow spaces next // to begin and end markers unless using the bracketed variant. // The strategy to solve this: @@ -172,9 +149,10 @@ module.exports = grammar({ backslash_escape: (_) => /\\[^\\\r\n]/, + // No backlash escape in an autolink. autolink: (_) => seq("<", /[^>\s]+/, ">"), - symbol: (_) => token(seq(":", /[^:\s]+/, ":")), + symbol: (_) => token(seq(":", /[\w\d_-]+/, ":")), footnote_reference: ($) => seq( @@ -198,7 +176,13 @@ module.exports = grammar({ inline_image: ($) => seq($._image_description, $.inline_link_destination), _image_description: ($) => - seq("![", optional(alias($._inline, $.image_description)), "]"), + seq( + $._image_description_begin, + $._image_description_mark_begin, + optional(alias($._inline, $.image_description)), + prec.dynamic(1000, $._image_description_end), + ), + _image_description_begin: (_) => "![", _link: ($) => choice($.full_reference_link, $.collapsed_reference_link, $.inline_link), @@ -206,15 +190,18 @@ module.exports = grammar({ collapsed_reference_link: ($) => seq($.link_text, token.immediate("[]")), inline_link: ($) => seq($.link_text, $.inline_link_destination), - link_text: ($) => seq("[", $._inline, "]"), + link_text: ($) => $._bracketed_text, - _link_label: ($) => - seq("[", alias($._inline, $.link_label), token.immediate("]")), - inline_link_destination: (_) => seq("(", /[^\n\)]+/, ")"), + span: ($) => + // Both bracketed_text and inline_attribute contributes +1000 each, + // so we pull it back to 1000 so it's the same as other spans, + // making precedence work properly. + prec.dynamic(-1000, seq($._bracketed_text, $.inline_attribute)), inline_attribute: ($) => seq( - token.immediate("{"), + $._inline_attribute_begin, + $._inline_attribute_mark_begin, alias( repeat( choice( @@ -228,16 +215,28 @@ module.exports = grammar({ ), $.args, ), - "}", + prec.dynamic(1000, $._inline_attribute_end), ), + _inline_attribute_begin: (_) => "{", + + _bracketed_text: ($) => + seq( + $._bracketed_text_begin, + $._bracketed_text_mark_begin, + $._inline, + prec.dynamic(1000, $._bracketed_text_end), + ), + _bracketed_text_begin: (_) => "[", + + _link_label: ($) => + seq("[", alias($._inline, $.link_label), token.immediate("]")), + inline_link_destination: (_) => seq("(", /[^\)]+/, ")"), // An inline attribute is only allowed to have surrounding spaces // if it only contains a comment. comment: ($) => seq("{", $._comment_with_newline, "}"), _comment_with_spaces: ($) => seq($._whitespace1, $.comment), - span: ($) => seq("[", $._inline, "]", $.inline_attribute), - _comment_with_newline: ($) => seq( "%", @@ -293,12 +292,6 @@ module.exports = grammar({ // when the tree grows large. _symbol_fallback: ($) => choice( - "![", - "[", - "[^", - "{", - "<", - "$", // Standalone emphasis and strong markers are required for backtracking "_", "*", @@ -321,8 +314,20 @@ module.exports = grammar({ seq("{=", choice($._highlighted_mark_begin, $._in_fallback)), seq("{+", choice($._insert_mark_begin, $._in_fallback)), seq("{-", choice($._delete_mark_begin, $._in_fallback)), + + // Fallbacks for spans, links and images + seq("![", choice($._image_description_mark_begin, $._in_fallback)), + seq("[", choice($._bracketed_text_mark_begin, $._in_fallback)), + + // "[^", + // "{", + "<", + "$", ), + _inline_attribute_fallback: ($) => + seq("{", choice($._inline_attribute_mark_begin, $._in_fallback)), + language: (_) => /[^\n\t \{\}=]+/, _whitespace: (_) => token.immediate(/[ \t]*/), @@ -349,6 +354,9 @@ module.exports = grammar({ $._verbatim_end, $._verbatim_content, + // The different spans. + // Begin is marked by a zero-width token and the end is the actual + // ending token (such as `_}`). $._emphasis_mark_begin, $.emphasis_end, $._strong_mark_begin, @@ -363,6 +371,12 @@ module.exports = grammar({ $.insert_end, $._delete_mark_begin, $.delete_end, + $._bracketed_text_mark_begin, + $._bracketed_text_end, + $._image_description_mark_begin, + $._image_description_end, + $._inline_attribute_mark_begin, + $._inline_attribute_end, $._in_fallback, $._non_whitespace_check, diff --git a/tree-sitter-djot-inline/package.json b/tree-sitter-djot-inline/package.json index 6c797db..7d08a79 100644 --- a/tree-sitter-djot-inline/package.json +++ b/tree-sitter-djot-inline/package.json @@ -32,10 +32,13 @@ }, "tree-sitter": [ { - "scope": "source.djot_inline", + "scope": "text.djot_inline", "injection-regex": "djot_inline", "highlights": [ "queries/highlights.scm" + ], + "injections": [ + "queries/injections.scm" ] } ], diff --git a/tree-sitter-djot-inline/queries/highlights.scm b/tree-sitter-djot-inline/queries/highlights.scm index e8b0a05..efd1908 100644 --- a/tree-sitter-djot-inline/queries/highlights.scm +++ b/tree-sitter-djot-inline/queries/highlights.scm @@ -134,6 +134,19 @@ "}" ] @punctuation.bracket) +(class) @type + +(identifier) @tag + +(key_value + "=" @operator) + +(key_value + (key) @property) + +(key_value + (value) @string) + (link_text [ "[" diff --git a/tree-sitter-djot-inline/src/grammar.json b/tree-sitter-djot-inline/src/grammar.json index 657b4e6..8140580 100644 --- a/tree-sitter-djot-inline/src/grammar.json +++ b/tree-sitter-djot-inline/src/grammar.json @@ -138,10 +138,6 @@ "type": "SYMBOL", "name": "symbol" }, - { - "type": "SYMBOL", - "name": "span" - }, { "type": "SYMBOL", "name": "_image" @@ -172,8 +168,17 @@ "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "inline_attribute" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "inline_attribute" + }, + { + "type": "SYMBOL", + "name": "_inline_attribute_fallback" + } + ] }, { "type": "BLANK" @@ -189,64 +194,6 @@ ] } }, - "inline_attribute": { - "type": "SEQ", - "members": [ - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": "{" - } - }, - { - "type": "ALIAS", - "content": { - "type": "REPEAT", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "class" - }, - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "SYMBOL", - "name": "key_value" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_comment_with_newline" - }, - "named": true, - "value": "comment" - }, - { - "type": "SYMBOL", - "name": "_whitespace1" - }, - { - "type": "SYMBOL", - "name": "_newline" - } - ] - } - }, - "named": true, - "value": "args" - }, - { - "type": "STRING", - "value": "}" - } - ] - }, "emphasis": { "type": "SEQ", "members": [ @@ -649,7 +596,7 @@ }, { "type": "PATTERN", - "value": "[^:\\s]+" + "value": "[\\w\\d_-]+" }, { "type": "STRING", @@ -756,8 +703,12 @@ "type": "SEQ", "members": [ { - "type": "STRING", - "value": "![" + "type": "SYMBOL", + "name": "_image_description_begin" + }, + { + "type": "SYMBOL", + "name": "_image_description_mark_begin" }, { "type": "CHOICE", @@ -777,11 +728,19 @@ ] }, { - "type": "STRING", - "value": "]" + "type": "PREC_DYNAMIC", + "value": 1000, + "content": { + "type": "SYMBOL", + "name": "_image_description_end" + } } ] }, + "_image_description_begin": { + "type": "STRING", + "value": "![" + }, "_link": { "type": "CHOICE", "members": [ @@ -842,22 +801,122 @@ ] }, "link_text": { + "type": "SYMBOL", + "name": "_bracketed_text" + }, + "span": { + "type": "PREC_DYNAMIC", + "value": -1000, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_bracketed_text" + }, + { + "type": "SYMBOL", + "name": "inline_attribute" + } + ] + } + }, + "inline_attribute": { "type": "SEQ", "members": [ { - "type": "STRING", - "value": "[" + "type": "SYMBOL", + "name": "_inline_attribute_begin" + }, + { + "type": "SYMBOL", + "name": "_inline_attribute_mark_begin" + }, + { + "type": "ALIAS", + "content": { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "class" + }, + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "key_value" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_comment_with_newline" + }, + "named": true, + "value": "comment" + }, + { + "type": "SYMBOL", + "name": "_whitespace1" + }, + { + "type": "SYMBOL", + "name": "_newline" + } + ] + } + }, + "named": true, + "value": "args" + }, + { + "type": "PREC_DYNAMIC", + "value": 1000, + "content": { + "type": "SYMBOL", + "name": "_inline_attribute_end" + } + } + ] + }, + "_inline_attribute_begin": { + "type": "STRING", + "value": "{" + }, + "_bracketed_text": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_bracketed_text_begin" + }, + { + "type": "SYMBOL", + "name": "_bracketed_text_mark_begin" }, { "type": "SYMBOL", "name": "_inline" }, { - "type": "STRING", - "value": "]" + "type": "PREC_DYNAMIC", + "value": 1000, + "content": { + "type": "SYMBOL", + "name": "_bracketed_text_end" + } } ] }, + "_bracketed_text_begin": { + "type": "STRING", + "value": "[" + }, "_link_label": { "type": "SEQ", "members": [ @@ -892,7 +951,7 @@ }, { "type": "PATTERN", - "value": "[^\\n\\)]+" + "value": "[^\\)]+" }, { "type": "STRING", @@ -930,27 +989,6 @@ } ] }, - "span": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "[" - }, - { - "type": "SYMBOL", - "name": "_inline" - }, - { - "type": "STRING", - "value": "]" - }, - { - "type": "SYMBOL", - "name": "inline_attribute" - } - ] - }, "_comment_with_newline": { "type": "SEQ", "members": [ @@ -1210,30 +1248,6 @@ "_symbol_fallback": { "type": "CHOICE", "members": [ - { - "type": "STRING", - "value": "![" - }, - { - "type": "STRING", - "value": "[" - }, - { - "type": "STRING", - "value": "[^" - }, - { - "type": "STRING", - "value": "{" - }, - { - "type": "STRING", - "value": "<" - }, - { - "type": "STRING", - "value": "$" - }, { "type": "STRING", "value": "_" @@ -1449,6 +1463,80 @@ ] } ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "![" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_image_description_mark_begin" + }, + { + "type": "SYMBOL", + "name": "_in_fallback" + } + ] + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "[" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_bracketed_text_mark_begin" + }, + { + "type": "SYMBOL", + "name": "_in_fallback" + } + ] + } + ] + }, + { + "type": "STRING", + "value": "<" + }, + { + "type": "STRING", + "value": "$" + } + ] + }, + "_inline_attribute_fallback": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_inline_attribute_mark_begin" + }, + { + "type": "SYMBOL", + "name": "_in_fallback" + } + ] } ] }, @@ -1606,28 +1694,20 @@ "_symbol_fallback" ], [ - "_image_description", - "_symbol_fallback" - ], - [ - "math", + "_bracketed_text_begin", "_symbol_fallback" ], [ - "link_text", - "span", + "_image_description_begin", "_symbol_fallback" ], [ - "_inline", - "_comment_with_spaces" + "_inline_attribute_begin", + "_inline_attribute_fallback" ], [ - "_inline_without_trailing_space", - "_comment_with_spaces" - ], - [ - "_comment_with_spaces" + "math", + "_symbol_fallback" ] ], "precedences": [], @@ -1704,6 +1784,30 @@ "type": "SYMBOL", "name": "delete_end" }, + { + "type": "SYMBOL", + "name": "_bracketed_text_mark_begin" + }, + { + "type": "SYMBOL", + "name": "_bracketed_text_end" + }, + { + "type": "SYMBOL", + "name": "_image_description_mark_begin" + }, + { + "type": "SYMBOL", + "name": "_image_description_end" + }, + { + "type": "SYMBOL", + "name": "_inline_attribute_mark_begin" + }, + { + "type": "SYMBOL", + "name": "_inline_attribute_end" + }, { "type": "SYMBOL", "name": "_in_fallback" diff --git a/tree-sitter-djot-inline/src/node-types.json b/tree-sitter-djot-inline/src/node-types.json index bc47add..baa5266 100644 --- a/tree-sitter-djot-inline/src/node-types.json +++ b/tree-sitter-djot-inline/src/node-types.json @@ -1419,10 +1419,6 @@ "type": "[]", "named": false }, - { - "type": "[^", - "named": false - }, { "type": "\\", "named": false diff --git a/tree-sitter-djot-inline/src/parser.c b/tree-sitter-djot-inline/src/parser.c index f2ccaad..4d1ff81 100644 --- a/tree-sitter-djot-inline/src/parser.c +++ b/tree-sitter-djot-inline/src/parser.c @@ -5,166 +5,172 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 1130 -#define LARGE_STATE_COUNT 131 -#define SYMBOL_COUNT 134 -#define ALIAS_COUNT 10 -#define TOKEN_COUNT 77 -#define EXTERNAL_TOKEN_COUNT 21 +#define STATE_COUNT 1217 +#define LARGE_STATE_COUNT 121 +#define SYMBOL_COUNT 144 +#define ALIAS_COUNT 8 +#define TOKEN_COUNT 82 +#define EXTERNAL_TOKEN_COUNT 27 #define FIELD_COUNT 0 #define MAX_ALIAS_SEQUENCE_LENGTH 4 -#define PRODUCTION_ID_COUNT 9 +#define PRODUCTION_ID_COUNT 8 enum ts_symbol_identifiers { - anon_sym_LBRACE = 1, - anon_sym_RBRACE = 2, - anon_sym_LBRACE_ = 3, - anon_sym__ = 4, - anon_sym_LBRACE_STAR = 5, - anon_sym_STAR = 6, - anon_sym_LBRACE_CARET = 7, - anon_sym_CARET = 8, - anon_sym_LBRACE_TILDE = 9, - anon_sym_TILDE = 10, - anon_sym_LBRACE_EQ = 11, - anon_sym_LBRACE_PLUS = 12, - anon_sym_LBRACE_DASH = 13, - anon_sym_BSLASH = 14, - sym_quotation_marks = 15, - sym_ellipsis = 16, - sym_em_dash = 17, - sym_en_dash = 18, - sym_backslash_escape = 19, - anon_sym_LT = 20, - aux_sym_autolink_token1 = 21, - anon_sym_GT = 22, - sym_symbol = 23, - anon_sym_LBRACK_CARET = 24, - anon_sym_RBRACK = 25, - sym__id = 26, - anon_sym_LBRACK_RBRACK = 27, - anon_sym_BANG_LBRACK = 28, - anon_sym_LBRACK = 29, - anon_sym_RBRACK2 = 30, - anon_sym_LPAREN = 31, - aux_sym_inline_link_destination_token1 = 32, - anon_sym_RPAREN = 33, - anon_sym_LBRACE2 = 34, - anon_sym_PERCENT = 35, - aux_sym__comment_with_newline_token1 = 36, - anon_sym_LBRACE_EQ2 = 37, - anon_sym_DOLLAR = 38, - anon_sym_TODO = 39, - anon_sym_WIP = 40, - anon_sym_NOTE = 41, - anon_sym_INFO = 42, - anon_sym_XXX = 43, - sym_fixme = 44, - sym_language = 45, - sym__whitespace = 46, - sym__whitespace1 = 47, - sym__newline = 48, - aux_sym__text_token1 = 49, - anon_sym_DOT = 50, - sym_identifier = 51, - anon_sym_EQ = 52, - anon_sym_DQUOTE = 53, - aux_sym_value_token1 = 54, - aux_sym_value_token2 = 55, - sym__ignored = 56, - sym__verbatim_begin = 57, - sym__verbatim_end = 58, - sym__verbatim_content = 59, - sym__emphasis_mark_begin = 60, - sym_emphasis_end = 61, - sym__strong_mark_begin = 62, - sym_strong_end = 63, - sym__superscript_mark_begin = 64, - sym_superscript_end = 65, - sym__subscript_mark_begin = 66, - sym_subscript_end = 67, - sym__highlighted_mark_begin = 68, - sym_highlighted_end = 69, - sym__insert_mark_begin = 70, - sym_insert_end = 71, - sym__delete_mark_begin = 72, - sym_delete_end = 73, - sym__in_fallback = 74, - sym__non_whitespace_check = 75, - sym__error = 76, - sym_inline = 77, - sym__inline = 78, - sym__inline_without_trailing_space = 79, - sym__element = 80, - sym_inline_attribute = 81, - sym_emphasis = 82, - sym_emphasis_begin = 83, - sym_strong = 84, - sym_strong_begin = 85, - sym_superscript = 86, - sym_superscript_begin = 87, - sym_subscript = 88, - sym_subscript_begin = 89, - sym_highlighted = 90, - sym_highlighted_begin = 91, - sym_insert = 92, - sym_insert_begin = 93, - sym_delete = 94, - sym_delete_begin = 95, - sym_hard_line_break = 96, - sym__smart_punctuation = 97, - sym_autolink = 98, - sym_footnote_reference = 99, - sym_reference_label = 100, - sym__image = 101, - sym_full_reference_image = 102, - sym_collapsed_reference_image = 103, - sym_inline_image = 104, - sym__image_description = 105, - sym__link = 106, - sym_full_reference_link = 107, - sym_collapsed_reference_link = 108, - sym_inline_link = 109, - sym_link_text = 110, - sym__link_label = 111, - sym_inline_link_destination = 112, - sym_comment = 113, - sym__comment_with_spaces = 114, - sym_span = 115, - sym__comment_with_newline = 116, - sym_raw_inline = 117, - sym_raw_inline_attribute = 118, - sym_math = 119, - sym_verbatim = 120, - sym__todo_highlights = 121, - sym_todo = 122, - sym_note = 123, - sym__symbol_fallback = 124, - aux_sym__text = 125, - sym_class_name = 126, - sym_class = 127, - sym_key_value = 128, - sym_key = 129, - sym_value = 130, - aux_sym__inline_repeat1 = 131, - aux_sym_inline_attribute_repeat1 = 132, - aux_sym__comment_with_newline_repeat1 = 133, - alias_sym_args = 134, - alias_sym_footnote_marker_begin = 135, - alias_sym_footnote_marker_end = 136, - alias_sym_image_description = 137, - alias_sym_link_label = 138, - alias_sym_math_marker = 139, - alias_sym_math_marker_begin = 140, - alias_sym_math_marker_end = 141, - alias_sym_verbatim_marker_begin = 142, - alias_sym_verbatim_marker_end = 143, + anon_sym_LBRACE_ = 1, + anon_sym__ = 2, + anon_sym_LBRACE_STAR = 3, + anon_sym_STAR = 4, + anon_sym_LBRACE_CARET = 5, + anon_sym_CARET = 6, + anon_sym_LBRACE_TILDE = 7, + anon_sym_TILDE = 8, + anon_sym_LBRACE_EQ = 9, + anon_sym_LBRACE_PLUS = 10, + anon_sym_LBRACE_DASH = 11, + anon_sym_BSLASH = 12, + sym_quotation_marks = 13, + sym_ellipsis = 14, + sym_em_dash = 15, + sym_en_dash = 16, + sym_backslash_escape = 17, + anon_sym_LT = 18, + aux_sym_autolink_token1 = 19, + anon_sym_GT = 20, + sym_symbol = 21, + anon_sym_LBRACK_CARET = 22, + anon_sym_RBRACK = 23, + sym__id = 24, + anon_sym_LBRACK_RBRACK = 25, + anon_sym_BANG_LBRACK = 26, + anon_sym_LBRACE = 27, + anon_sym_LBRACK = 28, + anon_sym_RBRACK2 = 29, + anon_sym_LPAREN = 30, + aux_sym_inline_link_destination_token1 = 31, + anon_sym_RPAREN = 32, + anon_sym_RBRACE = 33, + anon_sym_PERCENT = 34, + aux_sym__comment_with_newline_token1 = 35, + anon_sym_LBRACE_EQ2 = 36, + anon_sym_DOLLAR = 37, + anon_sym_TODO = 38, + anon_sym_WIP = 39, + anon_sym_NOTE = 40, + anon_sym_INFO = 41, + anon_sym_XXX = 42, + sym_fixme = 43, + sym_language = 44, + sym__whitespace = 45, + sym__whitespace1 = 46, + sym__newline = 47, + aux_sym__text_token1 = 48, + anon_sym_DOT = 49, + sym_identifier = 50, + anon_sym_EQ = 51, + anon_sym_DQUOTE = 52, + aux_sym_value_token1 = 53, + aux_sym_value_token2 = 54, + sym__ignored = 55, + sym__verbatim_begin = 56, + sym__verbatim_end = 57, + sym__verbatim_content = 58, + sym__emphasis_mark_begin = 59, + sym_emphasis_end = 60, + sym__strong_mark_begin = 61, + sym_strong_end = 62, + sym__superscript_mark_begin = 63, + sym_superscript_end = 64, + sym__subscript_mark_begin = 65, + sym_subscript_end = 66, + sym__highlighted_mark_begin = 67, + sym_highlighted_end = 68, + sym__insert_mark_begin = 69, + sym_insert_end = 70, + sym__delete_mark_begin = 71, + sym_delete_end = 72, + sym__bracketed_text_mark_begin = 73, + sym__bracketed_text_end = 74, + sym__image_description_mark_begin = 75, + sym__image_description_end = 76, + sym__inline_attribute_mark_begin = 77, + sym__inline_attribute_end = 78, + sym__in_fallback = 79, + sym__non_whitespace_check = 80, + sym__error = 81, + sym_inline = 82, + sym__inline = 83, + sym__inline_without_trailing_space = 84, + sym__element = 85, + sym_emphasis = 86, + sym_emphasis_begin = 87, + sym_strong = 88, + sym_strong_begin = 89, + sym_superscript = 90, + sym_superscript_begin = 91, + sym_subscript = 92, + sym_subscript_begin = 93, + sym_highlighted = 94, + sym_highlighted_begin = 95, + sym_insert = 96, + sym_insert_begin = 97, + sym_delete = 98, + sym_delete_begin = 99, + sym_hard_line_break = 100, + sym__smart_punctuation = 101, + sym_autolink = 102, + sym_footnote_reference = 103, + sym_reference_label = 104, + sym__image = 105, + sym_full_reference_image = 106, + sym_collapsed_reference_image = 107, + sym_inline_image = 108, + sym__image_description = 109, + sym__image_description_begin = 110, + sym__link = 111, + sym_full_reference_link = 112, + sym_collapsed_reference_link = 113, + sym_inline_link = 114, + sym_link_text = 115, + sym_span = 116, + sym_inline_attribute = 117, + sym__inline_attribute_begin = 118, + sym__bracketed_text = 119, + sym__bracketed_text_begin = 120, + sym__link_label = 121, + sym_inline_link_destination = 122, + sym_comment = 123, + sym__comment_with_spaces = 124, + sym__comment_with_newline = 125, + sym_raw_inline = 126, + sym_raw_inline_attribute = 127, + sym_math = 128, + sym_verbatim = 129, + sym__todo_highlights = 130, + sym_todo = 131, + sym_note = 132, + sym__symbol_fallback = 133, + sym__inline_attribute_fallback = 134, + aux_sym__text = 135, + sym_class_name = 136, + sym_class = 137, + sym_key_value = 138, + sym_key = 139, + sym_value = 140, + aux_sym__inline_repeat1 = 141, + aux_sym_inline_attribute_repeat1 = 142, + aux_sym__comment_with_newline_repeat1 = 143, + alias_sym_args = 144, + alias_sym_image_description = 145, + alias_sym_link_label = 146, + alias_sym_math_marker = 147, + alias_sym_math_marker_begin = 148, + alias_sym_math_marker_end = 149, + alias_sym_verbatim_marker_begin = 150, + alias_sym_verbatim_marker_end = 151, }; static const char * const ts_symbol_names[] = { [ts_builtin_sym_end] = "end", - [anon_sym_LBRACE] = "{", - [anon_sym_RBRACE] = "}", [anon_sym_LBRACE_] = "{_", [anon_sym__] = "_", [anon_sym_LBRACE_STAR] = "{*", @@ -186,17 +192,18 @@ static const char * const ts_symbol_names[] = { [aux_sym_autolink_token1] = "autolink_token1", [anon_sym_GT] = ">", [sym_symbol] = "symbol", - [anon_sym_LBRACK_CARET] = "[^", - [anon_sym_RBRACK] = "]", + [anon_sym_LBRACK_CARET] = "footnote_marker_begin", + [anon_sym_RBRACK] = "footnote_marker_end", [sym__id] = "_id", [anon_sym_LBRACK_RBRACK] = "[]", [anon_sym_BANG_LBRACK] = "![", + [anon_sym_LBRACE] = "{", [anon_sym_LBRACK] = "[", [anon_sym_RBRACK2] = "]", [anon_sym_LPAREN] = "(", [aux_sym_inline_link_destination_token1] = "inline_link_destination_token1", [anon_sym_RPAREN] = ")", - [anon_sym_LBRACE2] = "{", + [anon_sym_RBRACE] = "}", [anon_sym_PERCENT] = "%", [aux_sym__comment_with_newline_token1] = "_comment_with_newline_token1", [anon_sym_LBRACE_EQ2] = "{=", @@ -236,6 +243,12 @@ static const char * const ts_symbol_names[] = { [sym_insert_end] = "insert_end", [sym__delete_mark_begin] = "_delete_mark_begin", [sym_delete_end] = "delete_end", + [sym__bracketed_text_mark_begin] = "_bracketed_text_mark_begin", + [sym__bracketed_text_end] = "_bracketed_text_end", + [sym__image_description_mark_begin] = "_image_description_mark_begin", + [sym__image_description_end] = "_image_description_end", + [sym__inline_attribute_mark_begin] = "_inline_attribute_mark_begin", + [sym__inline_attribute_end] = "_inline_attribute_end", [sym__in_fallback] = "_in_fallback", [sym__non_whitespace_check] = "_non_whitespace_check", [sym__error] = "_error", @@ -243,7 +256,6 @@ static const char * const ts_symbol_names[] = { [sym__inline] = "_inline", [sym__inline_without_trailing_space] = "content", [sym__element] = "_element", - [sym_inline_attribute] = "inline_attribute", [sym_emphasis] = "emphasis", [sym_emphasis_begin] = "emphasis_begin", [sym_strong] = "strong", @@ -268,16 +280,21 @@ static const char * const ts_symbol_names[] = { [sym_collapsed_reference_image] = "collapsed_reference_image", [sym_inline_image] = "inline_image", [sym__image_description] = "_image_description", + [sym__image_description_begin] = "_image_description_begin", [sym__link] = "_link", [sym_full_reference_link] = "full_reference_link", [sym_collapsed_reference_link] = "collapsed_reference_link", [sym_inline_link] = "inline_link", [sym_link_text] = "link_text", + [sym_span] = "span", + [sym_inline_attribute] = "inline_attribute", + [sym__inline_attribute_begin] = "_inline_attribute_begin", + [sym__bracketed_text] = "_bracketed_text", + [sym__bracketed_text_begin] = "_bracketed_text_begin", [sym__link_label] = "_link_label", [sym_inline_link_destination] = "inline_link_destination", [sym_comment] = "comment", [sym__comment_with_spaces] = "_comment_with_spaces", - [sym_span] = "span", [sym__comment_with_newline] = "_comment_with_newline", [sym_raw_inline] = "raw_inline", [sym_raw_inline_attribute] = "raw_inline_attribute", @@ -287,6 +304,7 @@ static const char * const ts_symbol_names[] = { [sym_todo] = "todo", [sym_note] = "note", [sym__symbol_fallback] = "_symbol_fallback", + [sym__inline_attribute_fallback] = "_inline_attribute_fallback", [aux_sym__text] = "_text", [sym_class_name] = "class", [sym_class] = "class", @@ -297,8 +315,6 @@ static const char * const ts_symbol_names[] = { [aux_sym_inline_attribute_repeat1] = "inline_attribute_repeat1", [aux_sym__comment_with_newline_repeat1] = "_comment_with_newline_repeat1", [alias_sym_args] = "args", - [alias_sym_footnote_marker_begin] = "footnote_marker_begin", - [alias_sym_footnote_marker_end] = "footnote_marker_end", [alias_sym_image_description] = "image_description", [alias_sym_link_label] = "link_label", [alias_sym_math_marker] = "math_marker", @@ -310,8 +326,6 @@ static const char * const ts_symbol_names[] = { static const TSSymbol ts_symbol_map[] = { [ts_builtin_sym_end] = ts_builtin_sym_end, - [anon_sym_LBRACE] = anon_sym_LBRACE, - [anon_sym_RBRACE] = anon_sym_RBRACE, [anon_sym_LBRACE_] = anon_sym_LBRACE_, [anon_sym__] = anon_sym__, [anon_sym_LBRACE_STAR] = anon_sym_LBRACE_STAR, @@ -338,12 +352,13 @@ static const TSSymbol ts_symbol_map[] = { [sym__id] = sym__id, [anon_sym_LBRACK_RBRACK] = anon_sym_LBRACK_RBRACK, [anon_sym_BANG_LBRACK] = anon_sym_BANG_LBRACK, + [anon_sym_LBRACE] = anon_sym_LBRACE, [anon_sym_LBRACK] = anon_sym_LBRACK, [anon_sym_RBRACK2] = anon_sym_RBRACK, [anon_sym_LPAREN] = anon_sym_LPAREN, [aux_sym_inline_link_destination_token1] = aux_sym_inline_link_destination_token1, [anon_sym_RPAREN] = anon_sym_RPAREN, - [anon_sym_LBRACE2] = anon_sym_LBRACE, + [anon_sym_RBRACE] = anon_sym_RBRACE, [anon_sym_PERCENT] = anon_sym_PERCENT, [aux_sym__comment_with_newline_token1] = aux_sym__comment_with_newline_token1, [anon_sym_LBRACE_EQ2] = anon_sym_LBRACE_EQ, @@ -383,6 +398,12 @@ static const TSSymbol ts_symbol_map[] = { [sym_insert_end] = sym_insert_end, [sym__delete_mark_begin] = sym__delete_mark_begin, [sym_delete_end] = sym_delete_end, + [sym__bracketed_text_mark_begin] = sym__bracketed_text_mark_begin, + [sym__bracketed_text_end] = sym__bracketed_text_end, + [sym__image_description_mark_begin] = sym__image_description_mark_begin, + [sym__image_description_end] = sym__image_description_end, + [sym__inline_attribute_mark_begin] = sym__inline_attribute_mark_begin, + [sym__inline_attribute_end] = sym__inline_attribute_end, [sym__in_fallback] = sym__in_fallback, [sym__non_whitespace_check] = sym__non_whitespace_check, [sym__error] = sym__error, @@ -390,7 +411,6 @@ static const TSSymbol ts_symbol_map[] = { [sym__inline] = sym__inline, [sym__inline_without_trailing_space] = sym__verbatim_content, [sym__element] = sym__element, - [sym_inline_attribute] = sym_inline_attribute, [sym_emphasis] = sym_emphasis, [sym_emphasis_begin] = sym_emphasis_begin, [sym_strong] = sym_strong, @@ -415,16 +435,21 @@ static const TSSymbol ts_symbol_map[] = { [sym_collapsed_reference_image] = sym_collapsed_reference_image, [sym_inline_image] = sym_inline_image, [sym__image_description] = sym__image_description, + [sym__image_description_begin] = sym__image_description_begin, [sym__link] = sym__link, [sym_full_reference_link] = sym_full_reference_link, [sym_collapsed_reference_link] = sym_collapsed_reference_link, [sym_inline_link] = sym_inline_link, [sym_link_text] = sym_link_text, + [sym_span] = sym_span, + [sym_inline_attribute] = sym_inline_attribute, + [sym__inline_attribute_begin] = sym__inline_attribute_begin, + [sym__bracketed_text] = sym__bracketed_text, + [sym__bracketed_text_begin] = sym__bracketed_text_begin, [sym__link_label] = sym__link_label, [sym_inline_link_destination] = sym_inline_link_destination, [sym_comment] = sym_comment, [sym__comment_with_spaces] = sym__comment_with_spaces, - [sym_span] = sym_span, [sym__comment_with_newline] = sym__comment_with_newline, [sym_raw_inline] = sym_raw_inline, [sym_raw_inline_attribute] = sym_raw_inline_attribute, @@ -434,6 +459,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_todo] = sym_todo, [sym_note] = sym_note, [sym__symbol_fallback] = sym__symbol_fallback, + [sym__inline_attribute_fallback] = sym__inline_attribute_fallback, [aux_sym__text] = aux_sym__text, [sym_class_name] = sym_class_name, [sym_class] = sym_class, @@ -444,8 +470,6 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_inline_attribute_repeat1] = aux_sym_inline_attribute_repeat1, [aux_sym__comment_with_newline_repeat1] = aux_sym__comment_with_newline_repeat1, [alias_sym_args] = alias_sym_args, - [alias_sym_footnote_marker_begin] = alias_sym_footnote_marker_begin, - [alias_sym_footnote_marker_end] = alias_sym_footnote_marker_end, [alias_sym_image_description] = alias_sym_image_description, [alias_sym_link_label] = alias_sym_link_label, [alias_sym_math_marker] = alias_sym_math_marker, @@ -460,14 +484,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, - [anon_sym_LBRACE] = { - .visible = true, - .named = false, - }, - [anon_sym_RBRACE] = { - .visible = true, - .named = false, - }, [anon_sym_LBRACE_] = { .visible = true, .named = false, @@ -554,11 +570,11 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { }, [anon_sym_LBRACK_CARET] = { .visible = true, - .named = false, + .named = true, }, [anon_sym_RBRACK] = { .visible = true, - .named = false, + .named = true, }, [sym__id] = { .visible = false, @@ -572,6 +588,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_LBRACE] = { + .visible = true, + .named = false, + }, [anon_sym_LBRACK] = { .visible = true, .named = false, @@ -592,7 +612,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_LBRACE2] = { + [anon_sym_RBRACE] = { .visible = true, .named = false, }, @@ -752,6 +772,30 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym__bracketed_text_mark_begin] = { + .visible = false, + .named = true, + }, + [sym__bracketed_text_end] = { + .visible = false, + .named = true, + }, + [sym__image_description_mark_begin] = { + .visible = false, + .named = true, + }, + [sym__image_description_end] = { + .visible = false, + .named = true, + }, + [sym__inline_attribute_mark_begin] = { + .visible = false, + .named = true, + }, + [sym__inline_attribute_end] = { + .visible = false, + .named = true, + }, [sym__in_fallback] = { .visible = false, .named = true, @@ -780,10 +824,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, - [sym_inline_attribute] = { - .visible = true, - .named = true, - }, [sym_emphasis] = { .visible = true, .named = true, @@ -880,6 +920,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, + [sym__image_description_begin] = { + .visible = false, + .named = true, + }, [sym__link] = { .visible = false, .named = true, @@ -900,6 +944,26 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_span] = { + .visible = true, + .named = true, + }, + [sym_inline_attribute] = { + .visible = true, + .named = true, + }, + [sym__inline_attribute_begin] = { + .visible = false, + .named = true, + }, + [sym__bracketed_text] = { + .visible = false, + .named = true, + }, + [sym__bracketed_text_begin] = { + .visible = false, + .named = true, + }, [sym__link_label] = { .visible = false, .named = true, @@ -916,10 +980,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, - [sym_span] = { - .visible = true, - .named = true, - }, [sym__comment_with_newline] = { .visible = false, .named = true, @@ -956,6 +1016,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, + [sym__inline_attribute_fallback] = { + .visible = false, + .named = true, + }, [aux_sym__text] = { .visible = false, .named = false, @@ -996,14 +1060,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [alias_sym_footnote_marker_begin] = { - .visible = true, - .named = true, - }, - [alias_sym_footnote_marker_end] = { - .visible = true, - .named = true, - }, [alias_sym_image_description] = { .visible = true, .named = true, @@ -1044,25 +1100,21 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [0] = sym_comment, }, [3] = { - [0] = alias_sym_footnote_marker_begin, - [2] = alias_sym_footnote_marker_end, + [0] = alias_sym_math_marker, + [1] = alias_sym_math_marker_begin, + [3] = alias_sym_math_marker_end, }, [4] = { - [1] = alias_sym_image_description, + [2] = sym__verbatim_content, }, [5] = { - [1] = alias_sym_args, + [1] = alias_sym_link_label, }, [6] = { - [0] = alias_sym_math_marker, - [1] = alias_sym_math_marker_begin, - [3] = alias_sym_math_marker_end, + [2] = alias_sym_image_description, }, [7] = { - [2] = sym__verbatim_content, - }, - [8] = { - [1] = alias_sym_link_label, + [2] = alias_sym_args, }, }; @@ -1088,217 +1140,217 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [0] = 0, [1] = 1, [2] = 2, - [3] = 2, - [4] = 2, - [5] = 2, - [6] = 2, - [7] = 2, - [8] = 2, - [9] = 2, - [10] = 2, + [3] = 3, + [4] = 4, + [5] = 5, + [6] = 6, + [7] = 7, + [8] = 3, + [9] = 9, + [10] = 10, [11] = 11, - [12] = 2, - [13] = 11, - [14] = 11, - [15] = 11, - [16] = 11, - [17] = 11, + [12] = 4, + [13] = 13, + [14] = 14, + [15] = 5, + [16] = 6, + [17] = 7, [18] = 11, - [19] = 11, - [20] = 2, - [21] = 11, - [22] = 11, - [23] = 11, - [24] = 24, - [25] = 25, - [26] = 26, - [27] = 27, - [28] = 24, - [29] = 29, - [30] = 30, - [31] = 25, - [32] = 32, - [33] = 33, - [34] = 26, - [35] = 27, - [36] = 24, - [37] = 26, - [38] = 38, - [39] = 29, - [40] = 40, - [41] = 30, - [42] = 25, - [43] = 27, - [44] = 32, - [45] = 33, - [46] = 26, - [47] = 27, - [48] = 24, - [49] = 29, - [50] = 30, - [51] = 25, - [52] = 32, - [53] = 33, - [54] = 32, - [55] = 25, - [56] = 30, - [57] = 29, - [58] = 24, - [59] = 27, - [60] = 26, - [61] = 33, - [62] = 26, - [63] = 32, - [64] = 25, - [65] = 40, - [66] = 38, - [67] = 30, - [68] = 40, - [69] = 29, - [70] = 27, - [71] = 24, - [72] = 29, - [73] = 30, - [74] = 25, - [75] = 32, - [76] = 33, - [77] = 26, - [78] = 40, - [79] = 38, - [80] = 27, - [81] = 24, - [82] = 29, - [83] = 30, - [84] = 25, - [85] = 32, - [86] = 24, - [87] = 33, - [88] = 26, - [89] = 27, - [90] = 24, - [91] = 29, - [92] = 30, - [93] = 38, - [94] = 32, - [95] = 33, - [96] = 40, - [97] = 26, - [98] = 27, - [99] = 24, - [100] = 29, - [101] = 30, - [102] = 25, - [103] = 38, - [104] = 40, - [105] = 33, - [106] = 38, - [107] = 32, - [108] = 29, - [109] = 30, - [110] = 40, - [111] = 38, - [112] = 25, - [113] = 32, - [114] = 33, - [115] = 38, - [116] = 33, - [117] = 26, - [118] = 27, - [119] = 24, - [120] = 29, - [121] = 30, - [122] = 25, - [123] = 40, - [124] = 32, - [125] = 33, - [126] = 26, - [127] = 27, - [128] = 128, - [129] = 40, - [130] = 128, - [131] = 131, - [132] = 131, + [19] = 10, + [20] = 9, + [21] = 13, + [22] = 3, + [23] = 9, + [24] = 10, + [25] = 11, + [26] = 4, + [27] = 5, + [28] = 6, + [29] = 7, + [30] = 3, + [31] = 3, + [32] = 9, + [33] = 7, + [34] = 6, + [35] = 10, + [36] = 14, + [37] = 13, + [38] = 11, + [39] = 5, + [40] = 4, + [41] = 5, + [42] = 4, + [43] = 6, + [44] = 11, + [45] = 7, + [46] = 3, + [47] = 9, + [48] = 10, + [49] = 11, + [50] = 4, + [51] = 10, + [52] = 11, + [53] = 10, + [54] = 9, + [55] = 3, + [56] = 7, + [57] = 6, + [58] = 5, + [59] = 9, + [60] = 4, + [61] = 5, + [62] = 3, + [63] = 7, + [64] = 14, + [65] = 13, + [66] = 6, + [67] = 5, + [68] = 14, + [69] = 69, + [70] = 13, + [71] = 14, + [72] = 13, + [73] = 11, + [74] = 10, + [75] = 9, + [76] = 3, + [77] = 7, + [78] = 6, + [79] = 7, + [80] = 3, + [81] = 9, + [82] = 6, + [83] = 14, + [84] = 10, + [85] = 11, + [86] = 4, + [87] = 5, + [88] = 6, + [89] = 7, + [90] = 3, + [91] = 9, + [92] = 5, + [93] = 10, + [94] = 11, + [95] = 4, + [96] = 4, + [97] = 11, + [98] = 5, + [99] = 10, + [100] = 6, + [101] = 9, + [102] = 7, + [103] = 13, + [104] = 7, + [105] = 13, + [106] = 4, + [107] = 5, + [108] = 14, + [109] = 6, + [110] = 13, + [111] = 3, + [112] = 14, + [113] = 4, + [114] = 9, + [115] = 10, + [116] = 14, + [117] = 11, + [118] = 118, + [119] = 14, + [120] = 118, + [121] = 121, + [122] = 121, + [123] = 121, + [124] = 121, + [125] = 121, + [126] = 121, + [127] = 121, + [128] = 121, + [129] = 121, + [130] = 121, + [131] = 121, + [132] = 121, [133] = 133, - [134] = 131, - [135] = 135, + [134] = 133, + [135] = 133, [136] = 133, [137] = 133, - [138] = 135, - [139] = 131, + [138] = 133, + [139] = 133, [140] = 133, - [141] = 131, - [142] = 135, + [141] = 133, + [142] = 133, [143] = 133, - [144] = 135, + [144] = 144, [145] = 133, - [146] = 131, - [147] = 135, - [148] = 135, - [149] = 131, - [150] = 135, - [151] = 135, - [152] = 133, - [153] = 133, - [154] = 135, - [155] = 131, - [156] = 135, - [157] = 133, - [158] = 133, - [159] = 131, - [160] = 131, - [161] = 161, + [146] = 144, + [147] = 144, + [148] = 144, + [149] = 144, + [150] = 144, + [151] = 144, + [152] = 144, + [153] = 144, + [154] = 144, + [155] = 144, + [156] = 156, + [157] = 157, + [158] = 158, + [159] = 158, + [160] = 160, + [161] = 156, [162] = 162, - [163] = 162, - [164] = 133, - [165] = 131, - [166] = 161, - [167] = 167, - [168] = 135, - [169] = 169, - [170] = 169, - [171] = 161, - [172] = 162, - [173] = 173, - [174] = 167, - [175] = 173, - [176] = 162, - [177] = 161, - [178] = 169, - [179] = 169, - [180] = 161, - [181] = 162, - [182] = 173, - [183] = 167, - [184] = 173, - [185] = 169, - [186] = 161, - [187] = 167, - [188] = 162, - [189] = 173, - [190] = 167, - [191] = 169, - [192] = 161, - [193] = 162, - [194] = 173, - [195] = 167, - [196] = 169, - [197] = 161, - [198] = 167, - [199] = 162, - [200] = 173, - [201] = 167, - [202] = 169, - [203] = 167, - [204] = 169, - [205] = 167, - [206] = 173, - [207] = 162, - [208] = 161, - [209] = 169, - [210] = 162, - [211] = 161, - [212] = 173, - [213] = 173, + [163] = 158, + [164] = 156, + [165] = 157, + [166] = 162, + [167] = 158, + [168] = 157, + [169] = 160, + [170] = 156, + [171] = 162, + [172] = 157, + [173] = 158, + [174] = 162, + [175] = 157, + [176] = 160, + [177] = 156, + [178] = 157, + [179] = 162, + [180] = 157, + [181] = 157, + [182] = 162, + [183] = 160, + [184] = 162, + [185] = 158, + [186] = 156, + [187] = 144, + [188] = 158, + [189] = 156, + [190] = 160, + [191] = 162, + [192] = 156, + [193] = 160, + [194] = 157, + [195] = 157, + [196] = 162, + [197] = 160, + [198] = 156, + [199] = 158, + [200] = 158, + [201] = 158, + [202] = 160, + [203] = 157, + [204] = 158, + [205] = 160, + [206] = 156, + [207] = 156, + [208] = 162, + [209] = 162, + [210] = 210, + [211] = 211, + [212] = 160, + [213] = 211, [214] = 214, [215] = 215, [216] = 216, @@ -1311,478 +1363,478 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [223] = 223, [224] = 224, [225] = 225, - [226] = 226, - [227] = 214, + [226] = 160, + [227] = 227, [228] = 228, [229] = 229, [230] = 230, [231] = 231, [232] = 232, - [233] = 233, - [234] = 215, + [233] = 210, + [234] = 234, [235] = 235, [236] = 236, [237] = 237, [238] = 238, [239] = 239, [240] = 240, - [241] = 241, - [242] = 242, - [243] = 243, + [241] = 220, + [242] = 222, + [243] = 238, [244] = 244, - [245] = 216, - [246] = 242, - [247] = 241, - [248] = 236, - [249] = 235, - [250] = 215, - [251] = 251, - [252] = 252, - [253] = 244, - [254] = 243, - [255] = 255, - [256] = 220, - [257] = 217, - [258] = 218, - [259] = 219, - [260] = 216, - [261] = 221, - [262] = 222, - [263] = 223, - [264] = 224, - [265] = 225, - [266] = 226, - [267] = 214, - [268] = 228, - [269] = 229, - [270] = 230, - [271] = 231, - [272] = 232, - [273] = 233, - [274] = 240, - [275] = 239, - [276] = 238, - [277] = 237, - [278] = 238, - [279] = 239, - [280] = 240, - [281] = 243, - [282] = 244, - [283] = 220, - [284] = 242, - [285] = 241, - [286] = 236, - [287] = 235, - [288] = 215, - [289] = 251, - [290] = 252, - [291] = 255, - [292] = 216, - [293] = 217, - [294] = 218, - [295] = 219, - [296] = 220, - [297] = 221, - [298] = 222, - [299] = 223, - [300] = 224, - [301] = 225, - [302] = 226, - [303] = 214, - [304] = 228, - [305] = 229, - [306] = 230, - [307] = 231, - [308] = 232, - [309] = 233, - [310] = 221, - [311] = 251, - [312] = 252, - [313] = 252, - [314] = 233, - [315] = 232, - [316] = 231, - [317] = 237, - [318] = 238, - [319] = 239, - [320] = 240, - [321] = 230, - [322] = 229, - [323] = 243, - [324] = 244, - [325] = 216, - [326] = 242, - [327] = 241, - [328] = 236, - [329] = 235, - [330] = 215, - [331] = 251, - [332] = 252, - [333] = 251, - [334] = 228, - [335] = 214, - [336] = 255, - [337] = 220, - [338] = 217, - [339] = 218, - [340] = 219, - [341] = 216, - [342] = 221, - [343] = 222, - [344] = 223, - [345] = 224, - [346] = 225, - [347] = 226, - [348] = 222, - [349] = 228, - [350] = 229, - [351] = 230, - [352] = 231, + [245] = 244, + [246] = 211, + [247] = 214, + [248] = 215, + [249] = 216, + [250] = 217, + [251] = 218, + [252] = 219, + [253] = 211, + [254] = 221, + [255] = 214, + [256] = 223, + [257] = 224, + [258] = 225, + [259] = 215, + [260] = 227, + [261] = 228, + [262] = 229, + [263] = 230, + [264] = 231, + [265] = 232, + [266] = 210, + [267] = 234, + [268] = 235, + [269] = 236, + [270] = 237, + [271] = 216, + [272] = 239, + [273] = 240, + [274] = 220, + [275] = 222, + [276] = 217, + [277] = 238, + [278] = 222, + [279] = 238, + [280] = 244, + [281] = 218, + [282] = 211, + [283] = 214, + [284] = 215, + [285] = 216, + [286] = 217, + [287] = 218, + [288] = 219, + [289] = 219, + [290] = 220, + [291] = 240, + [292] = 221, + [293] = 221, + [294] = 223, + [295] = 223, + [296] = 224, + [297] = 225, + [298] = 224, + [299] = 227, + [300] = 228, + [301] = 229, + [302] = 230, + [303] = 231, + [304] = 232, + [305] = 210, + [306] = 234, + [307] = 235, + [308] = 236, + [309] = 237, + [310] = 225, + [311] = 239, + [312] = 239, + [313] = 227, + [314] = 228, + [315] = 237, + [316] = 240, + [317] = 220, + [318] = 222, + [319] = 236, + [320] = 235, + [321] = 234, + [322] = 238, + [323] = 244, + [324] = 229, + [325] = 211, + [326] = 214, + [327] = 215, + [328] = 216, + [329] = 217, + [330] = 218, + [331] = 219, + [332] = 230, + [333] = 210, + [334] = 232, + [335] = 231, + [336] = 221, + [337] = 158, + [338] = 223, + [339] = 224, + [340] = 225, + [341] = 231, + [342] = 227, + [343] = 228, + [344] = 229, + [345] = 230, + [346] = 231, + [347] = 232, + [348] = 156, + [349] = 234, + [350] = 235, + [351] = 236, + [352] = 237, [353] = 232, - [354] = 233, - [355] = 215, - [356] = 235, - [357] = 236, - [358] = 241, - [359] = 226, - [360] = 225, - [361] = 224, - [362] = 237, - [363] = 238, - [364] = 239, - [365] = 240, - [366] = 223, - [367] = 222, - [368] = 243, - [369] = 244, - [370] = 220, - [371] = 242, - [372] = 241, - [373] = 236, - [374] = 235, - [375] = 255, - [376] = 251, - [377] = 252, - [378] = 242, + [354] = 239, + [355] = 230, + [356] = 162, + [357] = 229, + [358] = 228, + [359] = 240, + [360] = 220, + [361] = 222, + [362] = 227, + [363] = 157, + [364] = 225, + [365] = 238, + [366] = 244, + [367] = 239, + [368] = 211, + [369] = 214, + [370] = 215, + [371] = 216, + [372] = 217, + [373] = 218, + [374] = 219, + [375] = 237, + [376] = 236, + [377] = 224, + [378] = 223, [379] = 221, - [380] = 219, - [381] = 255, - [382] = 216, - [383] = 217, - [384] = 218, - [385] = 219, - [386] = 220, - [387] = 221, - [388] = 222, - [389] = 223, - [390] = 224, - [391] = 225, - [392] = 226, - [393] = 214, - [394] = 228, - [395] = 229, - [396] = 230, - [397] = 231, - [398] = 232, - [399] = 233, - [400] = 220, - [401] = 244, - [402] = 243, - [403] = 237, - [404] = 218, - [405] = 217, - [406] = 255, - [407] = 237, + [380] = 235, + [381] = 223, + [382] = 224, + [383] = 225, + [384] = 234, + [385] = 227, + [386] = 228, + [387] = 229, + [388] = 230, + [389] = 231, + [390] = 232, + [391] = 210, + [392] = 234, + [393] = 235, + [394] = 236, + [395] = 237, + [396] = 210, + [397] = 239, + [398] = 238, + [399] = 221, + [400] = 232, + [401] = 219, + [402] = 240, + [403] = 220, + [404] = 222, + [405] = 218, + [406] = 217, + [407] = 216, [408] = 238, - [409] = 239, - [410] = 240, - [411] = 223, - [412] = 252, - [413] = 243, - [414] = 244, - [415] = 216, - [416] = 242, - [417] = 241, - [418] = 236, - [419] = 235, - [420] = 215, - [421] = 251, - [422] = 252, - [423] = 239, - [424] = 251, - [425] = 215, - [426] = 255, - [427] = 220, - [428] = 217, - [429] = 218, - [430] = 219, - [431] = 216, - [432] = 221, - [433] = 222, - [434] = 223, - [435] = 224, - [436] = 225, - [437] = 226, - [438] = 214, - [439] = 228, - [440] = 229, - [441] = 230, - [442] = 231, - [443] = 232, - [444] = 233, - [445] = 238, - [446] = 237, - [447] = 217, - [448] = 219, - [449] = 235, - [450] = 236, - [451] = 241, - [452] = 237, - [453] = 238, - [454] = 239, - [455] = 240, - [456] = 242, - [457] = 243, - [458] = 244, - [459] = 220, - [460] = 242, - [461] = 241, - [462] = 236, - [463] = 235, - [464] = 215, - [465] = 251, - [466] = 252, - [467] = 255, - [468] = 244, - [469] = 243, - [470] = 255, - [471] = 216, - [472] = 217, - [473] = 218, - [474] = 219, - [475] = 240, - [476] = 221, - [477] = 222, - [478] = 223, - [479] = 224, - [480] = 225, - [481] = 226, - [482] = 214, - [483] = 228, - [484] = 229, - [485] = 230, - [486] = 231, - [487] = 232, - [488] = 233, - [489] = 233, - [490] = 232, - [491] = 231, - [492] = 230, - [493] = 239, - [494] = 238, - [495] = 237, - [496] = 237, - [497] = 238, - [498] = 239, - [499] = 229, - [500] = 243, - [501] = 244, - [502] = 228, - [503] = 242, - [504] = 241, - [505] = 236, - [506] = 235, - [507] = 215, - [508] = 251, - [509] = 252, - [510] = 214, - [511] = 226, - [512] = 255, - [513] = 167, - [514] = 217, - [515] = 218, - [516] = 219, - [517] = 225, - [518] = 221, - [519] = 222, - [520] = 223, - [521] = 224, - [522] = 225, - [523] = 226, - [524] = 214, - [525] = 228, - [526] = 229, - [527] = 230, - [528] = 231, - [529] = 232, - [530] = 233, - [531] = 173, - [532] = 162, - [533] = 161, - [534] = 169, - [535] = 218, - [536] = 224, - [537] = 225, - [538] = 233, - [539] = 238, - [540] = 239, - [541] = 220, - [542] = 243, - [543] = 244, - [544] = 242, - [545] = 241, - [546] = 236, - [547] = 235, - [548] = 215, - [549] = 240, - [550] = 251, - [551] = 252, - [552] = 220, - [553] = 216, - [554] = 255, - [555] = 216, - [556] = 217, - [557] = 218, - [558] = 219, - [559] = 220, - [560] = 221, - [561] = 222, - [562] = 223, - [563] = 224, - [564] = 564, - [565] = 226, - [566] = 214, - [567] = 228, - [568] = 229, - [569] = 230, - [570] = 231, - [571] = 232, - [572] = 572, - [573] = 220, - [574] = 216, - [575] = 564, - [576] = 220, - [577] = 564, - [578] = 216, - [579] = 216, - [580] = 564, - [581] = 564, - [582] = 216, - [583] = 564, - [584] = 220, - [585] = 216, - [586] = 564, - [587] = 220, - [588] = 216, - [589] = 240, - [590] = 220, - [591] = 216, - [592] = 564, - [593] = 216, - [594] = 220, - [595] = 237, - [596] = 564, - [597] = 597, - [598] = 220, - [599] = 216, - [600] = 220, - [601] = 597, - [602] = 240, - [603] = 572, - [604] = 564, - [605] = 220, - [606] = 216, - [607] = 564, - [608] = 608, - [609] = 609, - [610] = 609, - [611] = 608, - [612] = 608, - [613] = 609, - [614] = 609, - [615] = 609, - [616] = 608, - [617] = 608, - [618] = 608, - [619] = 609, - [620] = 608, - [621] = 609, - [622] = 609, - [623] = 608, - [624] = 609, - [625] = 608, - [626] = 609, - [627] = 608, - [628] = 609, - [629] = 609, - [630] = 608, - [631] = 608, - [632] = 608, - [633] = 609, - [634] = 608, - [635] = 609, - [636] = 608, - [637] = 609, - [638] = 608, - [639] = 609, - [640] = 608, - [641] = 609, - [642] = 608, - [643] = 609, - [644] = 608, - [645] = 609, - [646] = 608, - [647] = 608, - [648] = 608, - [649] = 609, + [409] = 244, + [410] = 231, + [411] = 211, + [412] = 214, + [413] = 215, + [414] = 216, + [415] = 217, + [416] = 218, + [417] = 219, + [418] = 230, + [419] = 215, + [420] = 214, + [421] = 211, + [422] = 221, + [423] = 229, + [424] = 223, + [425] = 224, + [426] = 225, + [427] = 228, + [428] = 227, + [429] = 228, + [430] = 229, + [431] = 230, + [432] = 231, + [433] = 232, + [434] = 210, + [435] = 234, + [436] = 235, + [437] = 236, + [438] = 237, + [439] = 227, + [440] = 239, + [441] = 225, + [442] = 244, + [443] = 224, + [444] = 160, + [445] = 240, + [446] = 220, + [447] = 222, + [448] = 222, + [449] = 220, + [450] = 240, + [451] = 238, + [452] = 244, + [453] = 223, + [454] = 244, + [455] = 214, + [456] = 215, + [457] = 216, + [458] = 217, + [459] = 218, + [460] = 219, + [461] = 221, + [462] = 210, + [463] = 234, + [464] = 219, + [465] = 221, + [466] = 218, + [467] = 223, + [468] = 224, + [469] = 225, + [470] = 217, + [471] = 227, + [472] = 228, + [473] = 229, + [474] = 230, + [475] = 231, + [476] = 232, + [477] = 210, + [478] = 234, + [479] = 235, + [480] = 236, + [481] = 237, + [482] = 216, + [483] = 239, + [484] = 215, + [485] = 239, + [486] = 214, + [487] = 211, + [488] = 240, + [489] = 220, + [490] = 222, + [491] = 244, + [492] = 238, + [493] = 238, + [494] = 244, + [495] = 235, + [496] = 211, + [497] = 214, + [498] = 215, + [499] = 216, + [500] = 217, + [501] = 218, + [502] = 219, + [503] = 222, + [504] = 220, + [505] = 240, + [506] = 236, + [507] = 221, + [508] = 237, + [509] = 223, + [510] = 224, + [511] = 225, + [512] = 240, + [513] = 227, + [514] = 228, + [515] = 229, + [516] = 230, + [517] = 231, + [518] = 232, + [519] = 210, + [520] = 234, + [521] = 235, + [522] = 236, + [523] = 237, + [524] = 239, + [525] = 219, + [526] = 526, + [527] = 527, + [528] = 528, + [529] = 528, + [530] = 530, + [531] = 526, + [532] = 527, + [533] = 533, + [534] = 526, + [535] = 533, + [536] = 533, + [537] = 533, + [538] = 527, + [539] = 528, + [540] = 526, + [541] = 530, + [542] = 528, + [543] = 530, + [544] = 527, + [545] = 533, + [546] = 526, + [547] = 527, + [548] = 528, + [549] = 533, + [550] = 528, + [551] = 533, + [552] = 530, + [553] = 526, + [554] = 530, + [555] = 528, + [556] = 527, + [557] = 533, + [558] = 527, + [559] = 526, + [560] = 530, + [561] = 528, + [562] = 562, + [563] = 527, + [564] = 526, + [565] = 533, + [566] = 530, + [567] = 567, + [568] = 526, + [569] = 533, + [570] = 240, + [571] = 220, + [572] = 222, + [573] = 530, + [574] = 238, + [575] = 244, + [576] = 527, + [577] = 211, + [578] = 214, + [579] = 215, + [580] = 216, + [581] = 217, + [582] = 218, + [583] = 530, + [584] = 527, + [585] = 528, + [586] = 527, + [587] = 221, + [588] = 528, + [589] = 223, + [590] = 224, + [591] = 225, + [592] = 530, + [593] = 227, + [594] = 228, + [595] = 229, + [596] = 230, + [597] = 231, + [598] = 232, + [599] = 210, + [600] = 234, + [601] = 235, + [602] = 236, + [603] = 237, + [604] = 562, + [605] = 239, + [606] = 567, + [607] = 533, + [608] = 526, + [609] = 526, + [610] = 528, + [611] = 530, + [612] = 526, + [613] = 533, + [614] = 527, + [615] = 530, + [616] = 528, + [617] = 617, + [618] = 618, + [619] = 618, + [620] = 618, + [621] = 618, + [622] = 617, + [623] = 618, + [624] = 617, + [625] = 617, + [626] = 617, + [627] = 627, + [628] = 617, + [629] = 618, + [630] = 617, + [631] = 617, + [632] = 618, + [633] = 617, + [634] = 618, + [635] = 617, + [636] = 618, + [637] = 617, + [638] = 618, + [639] = 617, + [640] = 618, + [641] = 618, + [642] = 642, + [643] = 643, + [644] = 644, + [645] = 645, + [646] = 646, + [647] = 647, + [648] = 648, + [649] = 649, [650] = 650, - [651] = 609, - [652] = 609, - [653] = 653, - [654] = 654, - [655] = 655, - [656] = 656, - [657] = 657, - [658] = 658, - [659] = 659, - [660] = 660, - [661] = 661, - [662] = 662, + [651] = 651, + [652] = 651, + [653] = 651, + [654] = 651, + [655] = 651, + [656] = 651, + [657] = 651, + [658] = 651, + [659] = 651, + [660] = 651, + [661] = 651, + [662] = 651, [663] = 663, [664] = 663, - [665] = 665, + [665] = 663, [666] = 666, - [667] = 665, + [667] = 666, [668] = 663, - [669] = 665, - [670] = 665, - [671] = 666, + [669] = 663, + [670] = 666, + [671] = 671, [672] = 663, [673] = 666, [674] = 666, [675] = 663, - [676] = 663, - [677] = 665, - [678] = 665, + [676] = 671, + [677] = 666, + [678] = 678, [679] = 666, - [680] = 666, - [681] = 666, - [682] = 663, + [680] = 680, + [681] = 663, + [682] = 666, [683] = 663, - [684] = 666, - [685] = 665, - [686] = 663, - [687] = 663, - [688] = 688, - [689] = 689, - [690] = 665, - [691] = 665, - [692] = 666, - [693] = 663, - [694] = 665, - [695] = 665, - [696] = 666, - [697] = 666, + [684] = 680, + [685] = 666, + [686] = 666, + [687] = 666, + [688] = 663, + [689] = 663, + [690] = 666, + [691] = 663, + [692] = 692, + [693] = 693, + [694] = 694, + [695] = 695, + [696] = 696, + [697] = 697, [698] = 698, [699] = 699, [700] = 700, @@ -1790,431 +1842,518 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [702] = 702, [703] = 703, [704] = 704, - [705] = 705, + [705] = 697, [706] = 706, [707] = 707, [708] = 708, [709] = 709, - [710] = 710, - [711] = 703, - [712] = 705, - [713] = 704, - [714] = 702, - [715] = 707, - [716] = 710, + [710] = 698, + [711] = 711, + [712] = 711, + [713] = 699, + [714] = 700, + [715] = 698, + [716] = 711, [717] = 702, - [718] = 708, - [719] = 707, - [720] = 706, - [721] = 705, - [722] = 704, - [723] = 709, - [724] = 724, - [725] = 704, - [726] = 705, - [727] = 706, - [728] = 707, - [729] = 708, - [730] = 724, - [731] = 709, - [732] = 710, - [733] = 703, - [734] = 702, - [735] = 703, - [736] = 710, - [737] = 703, - [738] = 702, - [739] = 708, - [740] = 707, - [741] = 706, - [742] = 702, - [743] = 709, - [744] = 705, - [745] = 704, - [746] = 703, - [747] = 710, - [748] = 709, - [749] = 724, - [750] = 704, - [751] = 705, - [752] = 706, - [753] = 707, + [718] = 698, + [719] = 719, + [720] = 701, + [721] = 697, + [722] = 706, + [723] = 707, + [724] = 708, + [725] = 709, + [726] = 711, + [727] = 699, + [728] = 700, + [729] = 703, + [730] = 702, + [731] = 703, + [732] = 704, + [733] = 704, + [734] = 698, + [735] = 711, + [736] = 698, + [737] = 711, + [738] = 698, + [739] = 711, + [740] = 740, + [741] = 719, + [742] = 698, + [743] = 711, + [744] = 701, + [745] = 706, + [746] = 707, + [747] = 719, + [748] = 701, + [749] = 697, + [750] = 706, + [751] = 707, + [752] = 708, + [753] = 709, [754] = 708, - [755] = 702, - [756] = 702, - [757] = 724, - [758] = 710, - [759] = 710, - [760] = 703, - [761] = 703, - [762] = 708, - [763] = 707, - [764] = 710, - [765] = 708, - [766] = 706, - [767] = 705, - [768] = 704, - [769] = 724, - [770] = 709, - [771] = 707, - [772] = 724, - [773] = 706, - [774] = 703, - [775] = 710, - [776] = 705, - [777] = 704, - [778] = 709, - [779] = 724, - [780] = 704, - [781] = 705, - [782] = 706, + [755] = 699, + [756] = 700, + [757] = 709, + [758] = 702, + [759] = 703, + [760] = 704, + [761] = 699, + [762] = 698, + [763] = 711, + [764] = 700, + [765] = 702, + [766] = 703, + [767] = 704, + [768] = 719, + [769] = 698, + [770] = 711, + [771] = 698, + [772] = 711, + [773] = 719, + [774] = 697, + [775] = 706, + [776] = 719, + [777] = 701, + [778] = 697, + [779] = 706, + [780] = 707, + [781] = 708, + [782] = 709, [783] = 707, - [784] = 708, - [785] = 708, - [786] = 724, - [787] = 709, + [784] = 699, + [785] = 700, + [786] = 709, + [787] = 708, [788] = 707, - [789] = 710, - [790] = 703, - [791] = 706, - [792] = 706, - [793] = 705, - [794] = 709, - [795] = 702, - [796] = 704, - [797] = 724, - [798] = 709, - [799] = 724, - [800] = 702, - [801] = 708, - [802] = 709, - [803] = 724, - [804] = 704, - [805] = 705, - [806] = 706, - [807] = 707, - [808] = 708, - [809] = 702, - [810] = 810, - [811] = 710, - [812] = 703, - [813] = 813, - [814] = 814, - [815] = 815, - [816] = 816, - [817] = 813, - [818] = 818, - [819] = 819, - [820] = 820, - [821] = 821, - [822] = 822, - [823] = 823, - [824] = 822, - [825] = 814, - [826] = 826, - [827] = 827, - [828] = 828, - [829] = 829, - [830] = 830, - [831] = 814, - [832] = 832, - [833] = 816, - [834] = 830, - [835] = 819, - [836] = 820, - [837] = 821, - [838] = 829, - [839] = 828, - [840] = 827, - [841] = 826, - [842] = 823, - [843] = 822, - [844] = 818, - [845] = 815, - [846] = 815, - [847] = 821, - [848] = 818, - [849] = 820, - [850] = 819, - [851] = 813, - [852] = 822, - [853] = 823, - [854] = 816, - [855] = 832, - [856] = 826, - [857] = 827, - [858] = 828, - [859] = 829, - [860] = 830, - [861] = 814, - [862] = 832, - [863] = 816, - [864] = 813, - [865] = 819, - [866] = 820, - [867] = 821, - [868] = 814, - [869] = 830, - [870] = 829, - [871] = 828, - [872] = 827, - [873] = 826, - [874] = 823, - [875] = 815, - [876] = 822, - [877] = 818, - [878] = 818, - [879] = 815, - [880] = 821, - [881] = 820, - [882] = 822, - [883] = 823, - [884] = 819, - [885] = 813, - [886] = 826, - [887] = 827, - [888] = 828, - [889] = 829, - [890] = 830, - [891] = 814, - [892] = 832, - [893] = 816, - [894] = 813, - [895] = 819, - [896] = 820, - [897] = 821, - [898] = 816, - [899] = 832, - [900] = 814, - [901] = 830, - [902] = 829, - [903] = 828, - [904] = 827, - [905] = 826, - [906] = 823, - [907] = 820, - [908] = 818, - [909] = 815, - [910] = 821, - [911] = 820, - [912] = 819, - [913] = 813, - [914] = 816, - [915] = 832, - [916] = 814, - [917] = 830, - [918] = 829, - [919] = 828, - [920] = 920, - [921] = 921, - [922] = 922, - [923] = 827, - [924] = 826, - [925] = 823, - [926] = 822, - [927] = 818, - [928] = 815, - [929] = 821, - [930] = 920, - [931] = 931, - [932] = 932, - [933] = 933, - [934] = 920, - [935] = 921, - [936] = 922, - [937] = 815, - [938] = 819, - [939] = 813, - [940] = 816, - [941] = 832, - [942] = 942, - [943] = 814, - [944] = 830, - [945] = 829, - [946] = 932, - [947] = 933, - [948] = 920, - [949] = 921, - [950] = 922, - [951] = 828, - [952] = 821, - [953] = 827, - [954] = 826, - [955] = 823, - [956] = 822, - [957] = 818, - [958] = 815, - [959] = 821, - [960] = 932, - [961] = 933, - [962] = 920, - [963] = 921, - [964] = 922, - [965] = 820, - [966] = 933, - [967] = 820, - [968] = 819, - [969] = 813, - [970] = 816, - [971] = 832, - [972] = 832, - [973] = 830, - [974] = 932, - [975] = 933, - [976] = 920, - [977] = 921, - [978] = 922, - [979] = 819, - [980] = 829, - [981] = 813, - [982] = 828, - [983] = 827, - [984] = 826, - [985] = 816, - [986] = 832, - [987] = 814, - [988] = 932, - [989] = 933, - [990] = 920, - [991] = 921, - [992] = 922, - [993] = 830, - [994] = 994, - [995] = 829, - [996] = 828, - [997] = 827, - [998] = 998, - [999] = 999, - [1000] = 826, - [1001] = 932, - [1002] = 932, - [1003] = 933, - [1004] = 920, - [1005] = 921, - [1006] = 922, - [1007] = 823, - [1008] = 822, - [1009] = 922, - [1010] = 921, - [1011] = 1011, - [1012] = 818, - [1013] = 823, - [1014] = 1014, - [1015] = 822, - [1016] = 932, - [1017] = 933, - [1018] = 920, - [1019] = 921, - [1020] = 922, - [1021] = 815, - [1022] = 821, - [1023] = 820, - [1024] = 819, - [1025] = 813, - [1026] = 818, - [1027] = 816, - [1028] = 832, - [1029] = 1029, - [1030] = 932, - [1031] = 933, - [1032] = 920, - [1033] = 921, - [1034] = 922, - [1035] = 814, - [1036] = 1036, - [1037] = 1037, - [1038] = 1038, - [1039] = 1039, + [789] = 698, + [790] = 702, + [791] = 703, + [792] = 704, + [793] = 711, + [794] = 708, + [795] = 706, + [796] = 709, + [797] = 704, + [798] = 703, + [799] = 702, + [800] = 699, + [801] = 700, + [802] = 700, + [803] = 699, + [804] = 709, + [805] = 708, + [806] = 707, + [807] = 697, + [808] = 706, + [809] = 719, + [810] = 701, + [811] = 697, + [812] = 706, + [813] = 707, + [814] = 708, + [815] = 709, + [816] = 697, + [817] = 699, + [818] = 700, + [819] = 701, + [820] = 719, + [821] = 701, + [822] = 719, + [823] = 702, + [824] = 703, + [825] = 704, + [826] = 702, + [827] = 704, + [828] = 703, + [829] = 702, + [830] = 703, + [831] = 704, + [832] = 700, + [833] = 699, + [834] = 709, + [835] = 708, + [836] = 707, + [837] = 706, + [838] = 697, + [839] = 701, + [840] = 719, + [841] = 704, + [842] = 719, + [843] = 701, + [844] = 697, + [845] = 706, + [846] = 707, + [847] = 708, + [848] = 709, + [849] = 703, + [850] = 699, + [851] = 700, + [852] = 702, + [853] = 701, + [854] = 700, + [855] = 699, + [856] = 702, + [857] = 703, + [858] = 704, + [859] = 709, + [860] = 708, + [861] = 707, + [862] = 706, + [863] = 697, + [864] = 701, + [865] = 719, + [866] = 866, + [867] = 867, + [868] = 868, + [869] = 869, + [870] = 870, + [871] = 871, + [872] = 872, + [873] = 866, + [874] = 874, + [875] = 875, + [876] = 876, + [877] = 877, + [878] = 878, + [879] = 867, + [880] = 880, + [881] = 881, + [882] = 882, + [883] = 883, + [884] = 868, + [885] = 869, + [886] = 876, + [887] = 877, + [888] = 883, + [889] = 870, + [890] = 882, + [891] = 874, + [892] = 881, + [893] = 880, + [894] = 878, + [895] = 878, + [896] = 877, + [897] = 876, + [898] = 875, + [899] = 866, + [900] = 867, + [901] = 868, + [902] = 869, + [903] = 870, + [904] = 871, + [905] = 872, + [906] = 880, + [907] = 874, + [908] = 871, + [909] = 872, + [910] = 871, + [911] = 870, + [912] = 869, + [913] = 868, + [914] = 867, + [915] = 882, + [916] = 866, + [917] = 875, + [918] = 881, + [919] = 876, + [920] = 877, + [921] = 883, + [922] = 878, + [923] = 872, + [924] = 880, + [925] = 881, + [926] = 880, + [927] = 881, + [928] = 878, + [929] = 877, + [930] = 876, + [931] = 875, + [932] = 866, + [933] = 867, + [934] = 868, + [935] = 869, + [936] = 870, + [937] = 871, + [938] = 872, + [939] = 883, + [940] = 874, + [941] = 883, + [942] = 874, + [943] = 882, + [944] = 874, + [945] = 872, + [946] = 871, + [947] = 870, + [948] = 882, + [949] = 869, + [950] = 868, + [951] = 867, + [952] = 866, + [953] = 882, + [954] = 883, + [955] = 875, + [956] = 876, + [957] = 877, + [958] = 881, + [959] = 880, + [960] = 878, + [961] = 878, + [962] = 877, + [963] = 876, + [964] = 875, + [965] = 866, + [966] = 867, + [967] = 868, + [968] = 869, + [969] = 870, + [970] = 871, + [971] = 872, + [972] = 880, + [973] = 874, + [974] = 974, + [975] = 881, + [976] = 976, + [977] = 977, + [978] = 883, + [979] = 882, + [980] = 874, + [981] = 875, + [982] = 878, + [983] = 872, + [984] = 874, + [985] = 872, + [986] = 871, + [987] = 987, + [988] = 988, + [989] = 989, + [990] = 974, + [991] = 871, + [992] = 976, + [993] = 977, + [994] = 870, + [995] = 870, + [996] = 869, + [997] = 868, + [998] = 867, + [999] = 866, + [1000] = 875, + [1001] = 876, + [1002] = 877, + [1003] = 987, + [1004] = 989, + [1005] = 974, + [1006] = 869, + [1007] = 976, + [1008] = 977, + [1009] = 868, + [1010] = 867, + [1011] = 880, + [1012] = 881, + [1013] = 866, + [1014] = 875, + [1015] = 876, + [1016] = 883, + [1017] = 877, + [1018] = 987, + [1019] = 989, + [1020] = 974, + [1021] = 878, + [1022] = 976, + [1023] = 977, + [1024] = 880, + [1025] = 881, + [1026] = 882, + [1027] = 883, + [1028] = 882, + [1029] = 874, + [1030] = 872, + [1031] = 871, + [1032] = 644, + [1033] = 987, + [1034] = 989, + [1035] = 974, + [1036] = 870, + [1037] = 976, + [1038] = 977, + [1039] = 869, [1040] = 1040, - [1041] = 1041, + [1041] = 868, [1042] = 1042, - [1043] = 1043, - [1044] = 932, - [1045] = 933, - [1046] = 920, - [1047] = 921, - [1048] = 922, - [1049] = 830, - [1050] = 815, - [1051] = 829, - [1052] = 828, - [1053] = 827, - [1054] = 826, - [1055] = 823, - [1056] = 822, - [1057] = 818, - [1058] = 932, - [1059] = 933, - [1060] = 1041, - [1061] = 1040, - [1062] = 1039, - [1063] = 1038, - [1064] = 1037, - [1065] = 1036, - [1066] = 1029, - [1067] = 1041, - [1068] = 1040, - [1069] = 1039, - [1070] = 1038, - [1071] = 1037, - [1072] = 1036, - [1073] = 1029, - [1074] = 1041, - [1075] = 1040, - [1076] = 1039, - [1077] = 1038, - [1078] = 1037, - [1079] = 1036, - [1080] = 1029, - [1081] = 1041, - [1082] = 1040, - [1083] = 1039, - [1084] = 1038, - [1085] = 1037, - [1086] = 1036, - [1087] = 1029, - [1088] = 1041, - [1089] = 1040, - [1090] = 1039, - [1091] = 1038, - [1092] = 1037, - [1093] = 1036, - [1094] = 1029, - [1095] = 1041, - [1096] = 1040, - [1097] = 1039, - [1098] = 1038, - [1099] = 1037, - [1100] = 1036, - [1101] = 1029, - [1102] = 1041, - [1103] = 1040, - [1104] = 1039, - [1105] = 1038, - [1106] = 1037, - [1107] = 1036, - [1108] = 1029, - [1109] = 1041, - [1110] = 1040, - [1111] = 1039, - [1112] = 1038, - [1113] = 1037, - [1114] = 1036, - [1115] = 1029, - [1116] = 1041, - [1117] = 1040, - [1118] = 1039, - [1119] = 1038, - [1120] = 1037, - [1121] = 1036, - [1122] = 1029, - [1123] = 1041, - [1124] = 1040, - [1125] = 1039, - [1126] = 1038, - [1127] = 1037, - [1128] = 1036, - [1129] = 1029, + [1043] = 642, + [1044] = 874, + [1045] = 1045, + [1046] = 867, + [1047] = 1047, + [1048] = 987, + [1049] = 989, + [1050] = 974, + [1051] = 866, + [1052] = 976, + [1053] = 977, + [1054] = 875, + [1055] = 989, + [1056] = 1056, + [1057] = 1057, + [1058] = 872, + [1059] = 871, + [1060] = 870, + [1061] = 869, + [1062] = 868, + [1063] = 987, + [1064] = 989, + [1065] = 974, + [1066] = 876, + [1067] = 976, + [1068] = 977, + [1069] = 877, + [1070] = 867, + [1071] = 866, + [1072] = 875, + [1073] = 876, + [1074] = 877, + [1075] = 988, + [1076] = 878, + [1077] = 987, + [1078] = 987, + [1079] = 989, + [1080] = 974, + [1081] = 878, + [1082] = 976, + [1083] = 977, + [1084] = 880, + [1085] = 882, + [1086] = 977, + [1087] = 880, + [1088] = 1088, + [1089] = 881, + [1090] = 976, + [1091] = 881, + [1092] = 883, + [1093] = 987, + [1094] = 989, + [1095] = 974, + [1096] = 882, + [1097] = 976, + [1098] = 977, + [1099] = 874, + [1100] = 872, + [1101] = 883, + [1102] = 1102, + [1103] = 1103, + [1104] = 1104, + [1105] = 1105, + [1106] = 1106, + [1107] = 1107, + [1108] = 987, + [1109] = 989, + [1110] = 974, + [1111] = 871, + [1112] = 976, + [1113] = 977, + [1114] = 870, + [1115] = 1115, + [1116] = 1116, + [1117] = 1117, + [1118] = 1118, + [1119] = 1119, + [1120] = 869, + [1121] = 868, + [1122] = 867, + [1123] = 987, + [1124] = 989, + [1125] = 974, + [1126] = 866, + [1127] = 976, + [1128] = 977, + [1129] = 875, + [1130] = 882, + [1131] = 876, + [1132] = 877, + [1133] = 878, + [1134] = 880, + [1135] = 974, + [1136] = 881, + [1137] = 883, + [1138] = 987, + [1139] = 989, + [1140] = 1117, + [1141] = 1116, + [1142] = 1115, + [1143] = 1107, + [1144] = 1106, + [1145] = 1105, + [1146] = 1104, + [1147] = 1117, + [1148] = 1116, + [1149] = 1115, + [1150] = 1107, + [1151] = 1106, + [1152] = 1105, + [1153] = 1104, + [1154] = 1117, + [1155] = 1116, + [1156] = 1115, + [1157] = 1107, + [1158] = 1106, + [1159] = 1105, + [1160] = 1104, + [1161] = 1117, + [1162] = 1116, + [1163] = 1115, + [1164] = 1107, + [1165] = 1106, + [1166] = 1105, + [1167] = 1104, + [1168] = 1117, + [1169] = 1116, + [1170] = 1115, + [1171] = 1107, + [1172] = 1106, + [1173] = 1105, + [1174] = 1104, + [1175] = 1117, + [1176] = 1116, + [1177] = 1115, + [1178] = 1107, + [1179] = 1106, + [1180] = 1105, + [1181] = 1104, + [1182] = 1117, + [1183] = 1116, + [1184] = 1115, + [1185] = 1107, + [1186] = 1106, + [1187] = 1105, + [1188] = 1104, + [1189] = 1117, + [1190] = 1116, + [1191] = 1115, + [1192] = 1107, + [1193] = 1106, + [1194] = 1105, + [1195] = 1104, + [1196] = 1117, + [1197] = 1116, + [1198] = 1115, + [1199] = 1107, + [1200] = 1106, + [1201] = 1105, + [1202] = 1104, + [1203] = 1117, + [1204] = 1116, + [1205] = 1115, + [1206] = 1107, + [1207] = 1106, + [1208] = 1105, + [1209] = 1104, + [1210] = 1117, + [1211] = 1116, + [1212] = 1115, + [1213] = 1107, + [1214] = 1106, + [1215] = 1105, + [1216] = 1104, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -2222,1941 +2361,1300 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(49); - if (lookahead == '\n') ADVANCE(190); - if (lookahead == '\r') SKIP(38) - if (lookahead == '!') ADVANCE(200); - if (lookahead == '"') ADVANCE(207); - if (lookahead == '$') ADVANCE(166); - if (lookahead == '%') ADVANCE(161); - if (lookahead == '(') ADVANCE(154); - if (lookahead == ')') ADVANCE(157); - if (lookahead == '*') ADVANCE(63); - if (lookahead == '-') ADVANCE(126); - if (lookahead == '.') ADVANCE(204); - if (lookahead == ':') ADVANCE(202); - if (lookahead == '<') ADVANCE(94); - if (lookahead == '=') ADVANCE(206); - if (lookahead == '>') ADVANCE(120); - if (lookahead == 'F') ADVANCE(132); - if (lookahead == 'I') ADVANCE(134); - if (lookahead == 'N') ADVANCE(135); - if (lookahead == 'T') ADVANCE(136); - if (lookahead == 'W') ADVANCE(131); - if (lookahead == 'X') ADVANCE(143); - if (lookahead == '[') ADVANCE(150); - if (lookahead == '\\') ADVANCE(81); - if (lookahead == ']') ADVANCE(152); - if (lookahead == '^') ADVANCE(67); - if (lookahead == '_') ADVANCE(59); - if (lookahead == '{') ADVANCE(51); - if (lookahead == '}') ADVANCE(55); - if (lookahead == '~') ADVANCE(71); + if (eof) ADVANCE(37); + if (lookahead == '\n') ADVANCE(149); + if (lookahead == '\r') SKIP(29) + if (lookahead == '!') ADVANCE(159); + if (lookahead == '"') ADVANCE(167); + if (lookahead == '$') ADVANCE(131); + if (lookahead == '%') ADVANCE(126); + if (lookahead == '(') ADVANCE(121); + if (lookahead == ')') ADVANCE(124); + if (lookahead == '*') ADVANCE(44); + if (lookahead == '-') ADVANCE(151); + if (lookahead == '.') ADVANCE(164); + if (lookahead == ':') ADVANCE(162); + if (lookahead == '<') ADVANCE(73); + if (lookahead == '=') ADVANCE(166); + if (lookahead == '>') ADVANCE(100); + if (lookahead == 'F') ADVANCE(153); + if (lookahead == 'I') ADVANCE(155); + if (lookahead == 'N') ADVANCE(156); + if (lookahead == 'T') ADVANCE(157); + if (lookahead == 'W') ADVANCE(154); + if (lookahead == 'X') ADVANCE(158); + if (lookahead == '[') ADVANCE(117); + if (lookahead == '\\') ADVANCE(62); + if (lookahead == ']') ADVANCE(104); + if (lookahead == '^') ADVANCE(48); + if (lookahead == '_') ADVANCE(40); + if (lookahead == '{') ADVANCE(110); + if (lookahead == '}') ADVANCE(125); + if (lookahead == '~') ADVANCE(52); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(189); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); + lookahead == ' ') ADVANCE(148); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(191); + lookahead != '\f') ADVANCE(150); END_STATE(); case 1: - if (lookahead == '\n') ADVANCE(190); - if (lookahead == '\r') SKIP(3) - if (lookahead == '!') ADVANCE(200); - if (lookahead == '"') ADVANCE(201); - if (lookahead == '$') ADVANCE(166); - if (lookahead == '\'') ADVANCE(201); - if (lookahead == '*') ADVANCE(63); - if (lookahead == '-') ADVANCE(192); - if (lookahead == '.') ADVANCE(193); - if (lookahead == ':') ADVANCE(202); - if (lookahead == '<') ADVANCE(94); - if (lookahead == 'F') ADVANCE(194); - if (lookahead == 'I') ADVANCE(196); - if (lookahead == 'N') ADVANCE(197); - if (lookahead == 'T') ADVANCE(198); - if (lookahead == 'W') ADVANCE(195); - if (lookahead == 'X') ADVANCE(199); - if (lookahead == '[') ADVANCE(150); - if (lookahead == '\\') ADVANCE(79); - if (lookahead == ']') ADVANCE(152); - if (lookahead == '^') ADVANCE(67); - if (lookahead == '_') ADVANCE(58); - if (lookahead == '{') ADVANCE(53); - if (lookahead == '~') ADVANCE(71); + if (lookahead == '\n') ADVANCE(149); + if (lookahead == '\r') SKIP(2) + if (lookahead == '!') ADVANCE(159); + if (lookahead == '"') ADVANCE(160); + if (lookahead == '$') ADVANCE(131); + if (lookahead == '\'') ADVANCE(160); + if (lookahead == '*') ADVANCE(44); + if (lookahead == '-') ADVANCE(151); + if (lookahead == '.') ADVANCE(152); + if (lookahead == ':') ADVANCE(162); + if (lookahead == '<') ADVANCE(73); + if (lookahead == 'F') ADVANCE(153); + if (lookahead == 'I') ADVANCE(155); + if (lookahead == 'N') ADVANCE(156); + if (lookahead == 'T') ADVANCE(157); + if (lookahead == 'W') ADVANCE(154); + if (lookahead == 'X') ADVANCE(158); + if (lookahead == '[') ADVANCE(117); + if (lookahead == '\\') ADVANCE(60); + if (lookahead == ']') ADVANCE(119); + if (lookahead == '^') ADVANCE(48); + if (lookahead == '_') ADVANCE(40); + if (lookahead == '{') ADVANCE(161); + if (lookahead == '~') ADVANCE(52); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(189); + lookahead == ' ') ADVANCE(148); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(191); + lookahead != '\f') ADVANCE(150); END_STATE(); case 2: - if (lookahead == '\n') ADVANCE(190); - if (lookahead == '\r') SKIP(3) - if (lookahead == '!') ADVANCE(200); - if (lookahead == '"') ADVANCE(201); - if (lookahead == '$') ADVANCE(166); - if (lookahead == '\'') ADVANCE(201); - if (lookahead == '*') ADVANCE(63); - if (lookahead == '-') ADVANCE(192); - if (lookahead == '.') ADVANCE(193); - if (lookahead == ':') ADVANCE(202); - if (lookahead == '<') ADVANCE(94); - if (lookahead == 'F') ADVANCE(194); - if (lookahead == 'I') ADVANCE(196); - if (lookahead == 'N') ADVANCE(197); - if (lookahead == 'T') ADVANCE(198); - if (lookahead == 'W') ADVANCE(195); - if (lookahead == 'X') ADVANCE(199); - if (lookahead == '[') ADVANCE(150); - if (lookahead == '\\') ADVANCE(79); - if (lookahead == ']') ADVANCE(124); - if (lookahead == '^') ADVANCE(67); - if (lookahead == '_') ADVANCE(58); - if (lookahead == '{') ADVANCE(159); - if (lookahead == '~') ADVANCE(71); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(189); + if (lookahead == '\n') ADVANCE(149); + if (lookahead == '\r') SKIP(2) + if (lookahead == '!') ADVANCE(159); + if (lookahead == '"') ADVANCE(160); + if (lookahead == '$') ADVANCE(131); + if (lookahead == '\'') ADVANCE(160); + if (lookahead == '*') ADVANCE(44); + if (lookahead == '-') ADVANCE(151); + if (lookahead == '.') ADVANCE(152); + if (lookahead == ':') ADVANCE(162); + if (lookahead == '<') ADVANCE(73); + if (lookahead == 'F') ADVANCE(153); + if (lookahead == 'I') ADVANCE(155); + if (lookahead == 'N') ADVANCE(156); + if (lookahead == 'T') ADVANCE(157); + if (lookahead == 'W') ADVANCE(154); + if (lookahead == 'X') ADVANCE(158); + if (lookahead == '[') ADVANCE(117); + if (lookahead == '\\') ADVANCE(60); + if (lookahead == '^') ADVANCE(48); + if (lookahead == '_') ADVANCE(40); + if (lookahead == '{') ADVANCE(161); + if (lookahead == '~') ADVANCE(52); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(191); + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(150); END_STATE(); case 3: - if (lookahead == '\n') ADVANCE(190); - if (lookahead == '\r') SKIP(3) - if (lookahead == '!') ADVANCE(200); - if (lookahead == '"') ADVANCE(201); - if (lookahead == '$') ADVANCE(166); - if (lookahead == '\'') ADVANCE(201); - if (lookahead == '*') ADVANCE(63); - if (lookahead == '-') ADVANCE(192); - if (lookahead == '.') ADVANCE(193); - if (lookahead == ':') ADVANCE(202); - if (lookahead == '<') ADVANCE(94); - if (lookahead == 'F') ADVANCE(194); - if (lookahead == 'I') ADVANCE(196); - if (lookahead == 'N') ADVANCE(197); - if (lookahead == 'T') ADVANCE(198); - if (lookahead == 'W') ADVANCE(195); - if (lookahead == 'X') ADVANCE(199); - if (lookahead == '[') ADVANCE(150); - if (lookahead == '\\') ADVANCE(79); - if (lookahead == ']') ADVANCE(124); - if (lookahead == '^') ADVANCE(67); - if (lookahead == '_') ADVANCE(58); - if (lookahead == '{') ADVANCE(159); - if (lookahead == '~') ADVANCE(71); + if (lookahead == '\n') ADVANCE(149); + if (lookahead == '\r') SKIP(4) + if (lookahead == '!') ADVANCE(96); + if (lookahead == '"') ADVANCE(97); + if (lookahead == '$') ADVANCE(132); + if (lookahead == '\'') ADVANCE(97); + if (lookahead == '*') ADVANCE(45); + if (lookahead == '-') ADVANCE(75); + if (lookahead == '.') ADVANCE(77); + if (lookahead == ':') ADVANCE(98); + if (lookahead == '<') ADVANCE(74); + if (lookahead == '>') ADVANCE(150); + if (lookahead == 'F') ADVANCE(84); + if (lookahead == 'I') ADVANCE(86); + if (lookahead == 'N') ADVANCE(87); + if (lookahead == 'T') ADVANCE(88); + if (lookahead == 'W') ADVANCE(83); + if (lookahead == 'X') ADVANCE(95); + if (lookahead == '[') ADVANCE(118); + if (lookahead == '\\') ADVANCE(61); + if (lookahead == ']') ADVANCE(120); + if (lookahead == '^') ADVANCE(49); + if (lookahead == '_') ADVANCE(41); + if (lookahead == '{') ADVANCE(114); + if (lookahead == '~') ADVANCE(53); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(148); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(191); + lookahead != 11 && + lookahead != '\f') ADVANCE(99); END_STATE(); case 4: - if (lookahead == '\n') ADVANCE(190); - if (lookahead == '\r') SKIP(3) - if (lookahead == '!') ADVANCE(200); - if (lookahead == '"') ADVANCE(201); - if (lookahead == '$') ADVANCE(166); - if (lookahead == '\'') ADVANCE(201); - if (lookahead == '*') ADVANCE(63); - if (lookahead == '-') ADVANCE(192); - if (lookahead == '.') ADVANCE(193); - if (lookahead == ':') ADVANCE(202); - if (lookahead == '<') ADVANCE(94); - if (lookahead == 'F') ADVANCE(194); - if (lookahead == 'I') ADVANCE(196); - if (lookahead == 'N') ADVANCE(197); - if (lookahead == 'T') ADVANCE(198); - if (lookahead == 'W') ADVANCE(195); - if (lookahead == 'X') ADVANCE(199); - if (lookahead == '[') ADVANCE(150); - if (lookahead == '\\') ADVANCE(79); - if (lookahead == ']') ADVANCE(124); - if (lookahead == '^') ADVANCE(67); - if (lookahead == '_') ADVANCE(58); - if (lookahead == '{') ADVANCE(52); - if (lookahead == '~') ADVANCE(71); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(189); + if (lookahead == '\n') ADVANCE(149); + if (lookahead == '\r') SKIP(4) + if (lookahead == '!') ADVANCE(96); + if (lookahead == '"') ADVANCE(97); + if (lookahead == '$') ADVANCE(132); + if (lookahead == '\'') ADVANCE(97); + if (lookahead == '*') ADVANCE(45); + if (lookahead == '-') ADVANCE(75); + if (lookahead == '.') ADVANCE(77); + if (lookahead == ':') ADVANCE(98); + if (lookahead == '<') ADVANCE(74); + if (lookahead == '>') ADVANCE(150); + if (lookahead == 'F') ADVANCE(84); + if (lookahead == 'I') ADVANCE(86); + if (lookahead == 'N') ADVANCE(87); + if (lookahead == 'T') ADVANCE(88); + if (lookahead == 'W') ADVANCE(83); + if (lookahead == 'X') ADVANCE(95); + if (lookahead == '[') ADVANCE(118); + if (lookahead == '\\') ADVANCE(61); + if (lookahead == '^') ADVANCE(49); + if (lookahead == '_') ADVANCE(41); + if (lookahead == '{') ADVANCE(114); + if (lookahead == '~') ADVANCE(53); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(191); + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(99); END_STATE(); case 5: - if (lookahead == '\n') ADVANCE(190); - if (lookahead == '\r') SKIP(8) - if (lookahead == '!') ADVANCE(200); - if (lookahead == '"') ADVANCE(201); - if (lookahead == '$') ADVANCE(166); - if (lookahead == '\'') ADVANCE(201); - if (lookahead == '*') ADVANCE(63); - if (lookahead == '-') ADVANCE(192); - if (lookahead == '.') ADVANCE(193); - if (lookahead == ':') ADVANCE(202); - if (lookahead == '<') ADVANCE(94); - if (lookahead == 'F') ADVANCE(194); - if (lookahead == 'I') ADVANCE(196); - if (lookahead == 'N') ADVANCE(197); - if (lookahead == 'T') ADVANCE(198); - if (lookahead == 'W') ADVANCE(195); - if (lookahead == 'X') ADVANCE(199); - if (lookahead == '[') ADVANCE(150); - if (lookahead == '\\') ADVANCE(79); - if (lookahead == ']') ADVANCE(152); - if (lookahead == '^') ADVANCE(67); - if (lookahead == '_') ADVANCE(58); - if (lookahead == '{') ADVANCE(159); - if (lookahead == '~') ADVANCE(71); + if (lookahead == '\n') ADVANCE(149); + if (lookahead == '\r') SKIP(6) + if (lookahead == '"') ADVANCE(167); + if (lookahead == '#') ADVANCE(28); + if (lookahead == '%') ADVANCE(126); + if (lookahead == '(') ADVANCE(121); + if (lookahead == ')') ADVANCE(124); + if (lookahead == '.') ADVANCE(163); + if (lookahead == '=') ADVANCE(166); + if (lookahead == '>') ADVANCE(100); + if (lookahead == '[') ADVANCE(116); + if (lookahead == ']') ADVANCE(104); + if (lookahead == '{') ADVANCE(109); + if (lookahead == '}') ADVANCE(125); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(189); - if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(191); + lookahead == ' ') ADVANCE(148); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(105); END_STATE(); case 6: - if (lookahead == '\n') ADVANCE(190); - if (lookahead == '\r') SKIP(8) - if (lookahead == '!') ADVANCE(200); - if (lookahead == '"') ADVANCE(201); - if (lookahead == '$') ADVANCE(166); - if (lookahead == '\'') ADVANCE(201); - if (lookahead == '*') ADVANCE(63); - if (lookahead == '-') ADVANCE(192); - if (lookahead == '.') ADVANCE(193); - if (lookahead == ':') ADVANCE(202); - if (lookahead == '<') ADVANCE(94); - if (lookahead == 'F') ADVANCE(194); - if (lookahead == 'I') ADVANCE(196); - if (lookahead == 'N') ADVANCE(197); - if (lookahead == 'T') ADVANCE(198); - if (lookahead == 'W') ADVANCE(195); - if (lookahead == 'X') ADVANCE(199); - if (lookahead == '[') ADVANCE(150); - if (lookahead == '\\') ADVANCE(79); - if (lookahead == ']') ADVANCE(152); - if (lookahead == '^') ADVANCE(67); - if (lookahead == '_') ADVANCE(58); - if (lookahead == '{') ADVANCE(53); - if (lookahead == '~') ADVANCE(71); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(189); - if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(191); + if (lookahead == '\n') ADVANCE(149); + if (lookahead == '\r') SKIP(6) + if (lookahead == '"') ADVANCE(167); + if (lookahead == '#') ADVANCE(28); + if (lookahead == '%') ADVANCE(126); + if (lookahead == '(') ADVANCE(121); + if (lookahead == ')') ADVANCE(124); + if (lookahead == '.') ADVANCE(163); + if (lookahead == '=') ADVANCE(166); + if (lookahead == '>') ADVANCE(100); + if (lookahead == '[') ADVANCE(115); + if (lookahead == ']') ADVANCE(104); + if (lookahead == '{') ADVANCE(109); + if (lookahead == '}') ADVANCE(125); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(105); END_STATE(); case 7: - if (lookahead == '\n') ADVANCE(190); - if (lookahead == '\r') SKIP(8) - if (lookahead == '!') ADVANCE(200); - if (lookahead == '"') ADVANCE(201); - if (lookahead == '$') ADVANCE(166); - if (lookahead == '\'') ADVANCE(201); - if (lookahead == '*') ADVANCE(63); - if (lookahead == '-') ADVANCE(192); - if (lookahead == '.') ADVANCE(193); - if (lookahead == ':') ADVANCE(202); - if (lookahead == '<') ADVANCE(94); - if (lookahead == 'F') ADVANCE(194); - if (lookahead == 'I') ADVANCE(196); - if (lookahead == 'N') ADVANCE(197); - if (lookahead == 'T') ADVANCE(198); - if (lookahead == 'W') ADVANCE(195); - if (lookahead == 'X') ADVANCE(199); - if (lookahead == '[') ADVANCE(150); - if (lookahead == '\\') ADVANCE(79); - if (lookahead == ']') ADVANCE(152); - if (lookahead == '^') ADVANCE(67); - if (lookahead == '_') ADVANCE(58); - if (lookahead == '{') ADVANCE(52); - if (lookahead == '~') ADVANCE(71); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(189); - if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(191); + if (lookahead == '\n') ADVANCE(149); + if (lookahead == '\r') ADVANCE(128); + if (lookahead == '%') ADVANCE(126); + if (lookahead == '\\') ADVANCE(129); + if (lookahead != 0) ADVANCE(127); END_STATE(); case 8: - if (lookahead == '\n') ADVANCE(190); - if (lookahead == '\r') SKIP(8) - if (lookahead == '!') ADVANCE(200); - if (lookahead == '"') ADVANCE(201); - if (lookahead == '$') ADVANCE(166); - if (lookahead == '\'') ADVANCE(201); - if (lookahead == '*') ADVANCE(63); - if (lookahead == '-') ADVANCE(192); - if (lookahead == '.') ADVANCE(193); - if (lookahead == ':') ADVANCE(202); - if (lookahead == '<') ADVANCE(94); - if (lookahead == 'F') ADVANCE(194); - if (lookahead == 'I') ADVANCE(196); - if (lookahead == 'N') ADVANCE(197); - if (lookahead == 'T') ADVANCE(198); - if (lookahead == 'W') ADVANCE(195); - if (lookahead == 'X') ADVANCE(199); - if (lookahead == '[') ADVANCE(150); - if (lookahead == '\\') ADVANCE(79); - if (lookahead == '^') ADVANCE(67); - if (lookahead == '_') ADVANCE(58); - if (lookahead == '{') ADVANCE(159); - if (lookahead == '~') ADVANCE(71); + if (lookahead == '\n') ADVANCE(149); + if (lookahead == '\r') SKIP(10) + if (lookahead == '!') ADVANCE(159); + if (lookahead == '"') ADVANCE(160); + if (lookahead == '$') ADVANCE(131); + if (lookahead == '\'') ADVANCE(160); + if (lookahead == '*') ADVANCE(44); + if (lookahead == '-') ADVANCE(151); + if (lookahead == '.') ADVANCE(152); + if (lookahead == ':') ADVANCE(162); + if (lookahead == '<') ADVANCE(73); + if (lookahead == 'F') ADVANCE(153); + if (lookahead == 'I') ADVANCE(155); + if (lookahead == 'N') ADVANCE(156); + if (lookahead == 'T') ADVANCE(157); + if (lookahead == 'W') ADVANCE(154); + if (lookahead == 'X') ADVANCE(158); + if (lookahead == '[') ADVANCE(117); + if (lookahead == '\\') ADVANCE(60); + if (lookahead == ']') ADVANCE(119); + if (lookahead == '^') ADVANCE(48); + if (lookahead == '_') ADVANCE(40); + if (lookahead == '{') ADVANCE(113); + if (lookahead == '~') ADVANCE(52); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(148); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(191); + lookahead != 11 && + lookahead != '\f') ADVANCE(150); END_STATE(); case 9: - if (lookahead == '\n') ADVANCE(190); + if (lookahead == '\n') ADVANCE(149); if (lookahead == '\r') SKIP(10) - if (lookahead == '!') ADVANCE(200); - if (lookahead == '"') ADVANCE(201); - if (lookahead == '$') ADVANCE(166); - if (lookahead == '\'') ADVANCE(201); - if (lookahead == '*') ADVANCE(63); - if (lookahead == '-') ADVANCE(126); - if (lookahead == '.') ADVANCE(193); - if (lookahead == ':') ADVANCE(202); - if (lookahead == '<') ADVANCE(94); - if (lookahead == 'F') ADVANCE(132); - if (lookahead == 'I') ADVANCE(134); - if (lookahead == 'N') ADVANCE(135); - if (lookahead == 'T') ADVANCE(136); - if (lookahead == 'W') ADVANCE(131); - if (lookahead == 'X') ADVANCE(143); - if (lookahead == '[') ADVANCE(150); - if (lookahead == '\\') ADVANCE(79); - if (lookahead == ']') ADVANCE(152); - if (lookahead == '^') ADVANCE(67); - if (lookahead == '_') ADVANCE(59); - if (lookahead == '{') ADVANCE(53); - if (lookahead == '~') ADVANCE(71); + if (lookahead == '!') ADVANCE(159); + if (lookahead == '"') ADVANCE(160); + if (lookahead == '$') ADVANCE(131); + if (lookahead == '\'') ADVANCE(160); + if (lookahead == '*') ADVANCE(44); + if (lookahead == '-') ADVANCE(151); + if (lookahead == '.') ADVANCE(152); + if (lookahead == ':') ADVANCE(162); + if (lookahead == '<') ADVANCE(73); + if (lookahead == 'F') ADVANCE(153); + if (lookahead == 'I') ADVANCE(155); + if (lookahead == 'N') ADVANCE(156); + if (lookahead == 'T') ADVANCE(157); + if (lookahead == 'W') ADVANCE(154); + if (lookahead == 'X') ADVANCE(158); + if (lookahead == '[') ADVANCE(117); + if (lookahead == '\\') ADVANCE(60); + if (lookahead == ']') ADVANCE(119); + if (lookahead == '^') ADVANCE(48); + if (lookahead == '_') ADVANCE(40); + if (lookahead == '{') ADVANCE(112); + if (lookahead == '~') ADVANCE(52); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(189); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); + lookahead == ' ') ADVANCE(148); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(191); + lookahead != '\f') ADVANCE(150); END_STATE(); case 10: - if (lookahead == '\n') ADVANCE(190); + if (lookahead == '\n') ADVANCE(149); if (lookahead == '\r') SKIP(10) - if (lookahead == '!') ADVANCE(200); - if (lookahead == '"') ADVANCE(201); - if (lookahead == '$') ADVANCE(166); - if (lookahead == '\'') ADVANCE(201); - if (lookahead == '*') ADVANCE(63); - if (lookahead == '-') ADVANCE(126); - if (lookahead == '.') ADVANCE(193); - if (lookahead == ':') ADVANCE(202); - if (lookahead == '<') ADVANCE(94); - if (lookahead == 'F') ADVANCE(132); - if (lookahead == 'I') ADVANCE(134); - if (lookahead == 'N') ADVANCE(135); - if (lookahead == 'T') ADVANCE(136); - if (lookahead == 'W') ADVANCE(131); - if (lookahead == 'X') ADVANCE(143); - if (lookahead == '[') ADVANCE(150); - if (lookahead == '\\') ADVANCE(79); - if (lookahead == '^') ADVANCE(67); - if (lookahead == '_') ADVANCE(59); - if (lookahead == '{') ADVANCE(159); - if (lookahead == '~') ADVANCE(71); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); + if (lookahead == '!') ADVANCE(159); + if (lookahead == '"') ADVANCE(160); + if (lookahead == '$') ADVANCE(131); + if (lookahead == '\'') ADVANCE(160); + if (lookahead == '*') ADVANCE(44); + if (lookahead == '-') ADVANCE(151); + if (lookahead == '.') ADVANCE(152); + if (lookahead == ':') ADVANCE(162); + if (lookahead == '<') ADVANCE(73); + if (lookahead == 'F') ADVANCE(153); + if (lookahead == 'I') ADVANCE(155); + if (lookahead == 'N') ADVANCE(156); + if (lookahead == 'T') ADVANCE(157); + if (lookahead == 'W') ADVANCE(154); + if (lookahead == 'X') ADVANCE(158); + if (lookahead == '[') ADVANCE(117); + if (lookahead == '\\') ADVANCE(60); + if (lookahead == '^') ADVANCE(48); + if (lookahead == '_') ADVANCE(40); + if (lookahead == '{') ADVANCE(113); + if (lookahead == '~') ADVANCE(52); if (lookahead != 0 && (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(191); + lookahead != ' ') ADVANCE(150); END_STATE(); case 11: - if (lookahead == '\n') ADVANCE(190); if (lookahead == '\r') SKIP(11) - if (lookahead == '!') ADVANCE(200); - if (lookahead == '"') ADVANCE(201); - if (lookahead == '$') ADVANCE(166); - if (lookahead == '\'') ADVANCE(201); - if (lookahead == '*') ADVANCE(63); - if (lookahead == '-') ADVANCE(126); - if (lookahead == '.') ADVANCE(193); - if (lookahead == ':') ADVANCE(202); - if (lookahead == '<') ADVANCE(94); - if (lookahead == 'F') ADVANCE(132); - if (lookahead == 'I') ADVANCE(134); - if (lookahead == 'N') ADVANCE(135); - if (lookahead == 'T') ADVANCE(136); - if (lookahead == 'W') ADVANCE(131); - if (lookahead == 'X') ADVANCE(143); - if (lookahead == '[') ADVANCE(150); - if (lookahead == '\\') ADVANCE(79); - if (lookahead == ']') ADVANCE(124); - if (lookahead == '^') ADVANCE(67); - if (lookahead == '_') ADVANCE(59); - if (lookahead == '{') ADVANCE(159); - if (lookahead == '~') ADVANCE(71); + if (lookahead == '"') ADVANCE(167); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(191); + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 12: - if (lookahead == '\n') ADVANCE(190); - if (lookahead == '\r') SKIP(11) - if (lookahead == '!') ADVANCE(200); - if (lookahead == '"') ADVANCE(201); - if (lookahead == '$') ADVANCE(166); - if (lookahead == '\'') ADVANCE(201); - if (lookahead == '*') ADVANCE(63); - if (lookahead == '-') ADVANCE(126); - if (lookahead == '.') ADVANCE(193); - if (lookahead == ':') ADVANCE(202); - if (lookahead == '<') ADVANCE(94); - if (lookahead == 'F') ADVANCE(132); - if (lookahead == 'I') ADVANCE(134); - if (lookahead == 'N') ADVANCE(135); - if (lookahead == 'T') ADVANCE(136); - if (lookahead == 'W') ADVANCE(131); - if (lookahead == 'X') ADVANCE(143); - if (lookahead == '[') ADVANCE(150); - if (lookahead == '\\') ADVANCE(79); - if (lookahead == ']') ADVANCE(124); - if (lookahead == '^') ADVANCE(67); - if (lookahead == '_') ADVANCE(59); - if (lookahead == '{') ADVANCE(53); - if (lookahead == '~') ADVANCE(71); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(189); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); + if (lookahead == '\r') ADVANCE(122); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(191); + lookahead != ')') ADVANCE(123); END_STATE(); case 13: - if (lookahead == '\n') ADVANCE(190); - if (lookahead == '\r') SKIP(14) - if (lookahead == '!') ADVANCE(117); - if (lookahead == '"') ADVANCE(118); - if (lookahead == '$') ADVANCE(167); - if (lookahead == '\'') ADVANCE(118); - if (lookahead == '*') ADVANCE(64); - if (lookahead == '-') ADVANCE(96); - if (lookahead == '.') ADVANCE(98); - if (lookahead == ':') ADVANCE(99); - if (lookahead == '<') ADVANCE(95); - if (lookahead == '>') ADVANCE(191); - if (lookahead == 'F') ADVANCE(105); - if (lookahead == 'I') ADVANCE(107); - if (lookahead == 'N') ADVANCE(108); - if (lookahead == 'T') ADVANCE(109); - if (lookahead == 'W') ADVANCE(104); - if (lookahead == 'X') ADVANCE(116); - if (lookahead == '[') ADVANCE(151); - if (lookahead == '\\') ADVANCE(80); - if (lookahead == ']') ADVANCE(153); - if (lookahead == '^') ADVANCE(68); - if (lookahead == '_') ADVANCE(60); - if (lookahead == '{') ADVANCE(54); - if (lookahead == '~') ADVANCE(72); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(189); + if (lookahead == '\r') ADVANCE(145); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(119); + lookahead != '\t' && + lookahead != '\n' && + lookahead != ' ' && + lookahead != '=' && + lookahead != '{' && + lookahead != '}') ADVANCE(146); END_STATE(); case 14: - if (lookahead == '\n') ADVANCE(190); - if (lookahead == '\r') SKIP(14) - if (lookahead == '!') ADVANCE(117); - if (lookahead == '"') ADVANCE(118); - if (lookahead == '$') ADVANCE(167); - if (lookahead == '\'') ADVANCE(118); - if (lookahead == '*') ADVANCE(64); - if (lookahead == '-') ADVANCE(96); - if (lookahead == '.') ADVANCE(98); - if (lookahead == ':') ADVANCE(99); - if (lookahead == '<') ADVANCE(95); - if (lookahead == '>') ADVANCE(191); - if (lookahead == 'F') ADVANCE(105); - if (lookahead == 'I') ADVANCE(107); - if (lookahead == 'N') ADVANCE(108); - if (lookahead == 'T') ADVANCE(109); - if (lookahead == 'W') ADVANCE(104); - if (lookahead == 'X') ADVANCE(116); - if (lookahead == '[') ADVANCE(151); - if (lookahead == '\\') ADVANCE(80); - if (lookahead == '^') ADVANCE(68); - if (lookahead == '_') ADVANCE(60); - if (lookahead == '{') ADVANCE(160); - if (lookahead == '~') ADVANCE(72); + if (lookahead == '\r') ADVANCE(168); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(119); + lookahead != '\n' && + lookahead != '"') ADVANCE(169); END_STATE(); case 15: - if (lookahead == '\n') ADVANCE(190); - if (lookahead == '\r') SKIP(16) - if (lookahead == '!') ADVANCE(117); - if (lookahead == '"') ADVANCE(118); - if (lookahead == '$') ADVANCE(167); - if (lookahead == '\'') ADVANCE(118); - if (lookahead == '*') ADVANCE(64); - if (lookahead == '-') ADVANCE(96); - if (lookahead == '.') ADVANCE(98); - if (lookahead == ':') ADVANCE(99); - if (lookahead == '<') ADVANCE(95); - if (lookahead == '>') ADVANCE(191); - if (lookahead == 'F') ADVANCE(105); - if (lookahead == 'I') ADVANCE(107); - if (lookahead == 'N') ADVANCE(108); - if (lookahead == 'T') ADVANCE(109); - if (lookahead == 'W') ADVANCE(104); - if (lookahead == 'X') ADVANCE(116); - if (lookahead == '[') ADVANCE(151); - if (lookahead == '\\') ADVANCE(80); - if (lookahead == ']') ADVANCE(125); - if (lookahead == '^') ADVANCE(68); - if (lookahead == '_') ADVANCE(60); - if (lookahead == '{') ADVANCE(54); - if (lookahead == '~') ADVANCE(72); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(189); - if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(119); + if (lookahead == '.') ADVANCE(65); END_STATE(); case 16: - if (lookahead == '\n') ADVANCE(190); - if (lookahead == '\r') SKIP(16) - if (lookahead == '!') ADVANCE(117); - if (lookahead == '"') ADVANCE(118); - if (lookahead == '$') ADVANCE(167); - if (lookahead == '\'') ADVANCE(118); - if (lookahead == '*') ADVANCE(64); - if (lookahead == '-') ADVANCE(96); - if (lookahead == '.') ADVANCE(98); - if (lookahead == ':') ADVANCE(99); - if (lookahead == '<') ADVANCE(95); - if (lookahead == '>') ADVANCE(191); - if (lookahead == 'F') ADVANCE(105); - if (lookahead == 'I') ADVANCE(107); - if (lookahead == 'N') ADVANCE(108); - if (lookahead == 'T') ADVANCE(109); - if (lookahead == 'W') ADVANCE(104); - if (lookahead == 'X') ADVANCE(116); - if (lookahead == '[') ADVANCE(151); - if (lookahead == '\\') ADVANCE(80); - if (lookahead == ']') ADVANCE(125); - if (lookahead == '^') ADVANCE(68); - if (lookahead == '_') ADVANCE(60); - if (lookahead == '{') ADVANCE(160); - if (lookahead == '~') ADVANCE(72); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(119); - END_STATE(); - case 17: - if (lookahead == '\n') ADVANCE(190); - if (lookahead == '\r') SKIP(18) - if (lookahead == '"') ADVANCE(207); - if (lookahead == '#') ADVANCE(37); - if (lookahead == '%') ADVANCE(161); - if (lookahead == '(') ADVANCE(154); - if (lookahead == ')') ADVANCE(157); - if (lookahead == '.') ADVANCE(203); - if (lookahead == '=') ADVANCE(206); - if (lookahead == '>') ADVANCE(120); - if (lookahead == '[') ADVANCE(149); - if (lookahead == '{') ADVANCE(50); - if (lookahead == '}') ADVANCE(55); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(189); + if (lookahead == ':') ADVANCE(101); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(16); + END_STATE(); + case 17: + if (lookahead == 'D') ADVANCE(23); END_STATE(); case 18: - if (lookahead == '\n') ADVANCE(190); - if (lookahead == '\r') SKIP(18) - if (lookahead == '"') ADVANCE(207); - if (lookahead == '#') ADVANCE(37); - if (lookahead == '%') ADVANCE(161); - if (lookahead == '(') ADVANCE(154); - if (lookahead == ')') ADVANCE(157); - if (lookahead == '.') ADVANCE(203); - if (lookahead == '=') ADVANCE(206); - if (lookahead == '>') ADVANCE(120); - if (lookahead == '[') ADVANCE(148); - if (lookahead == '}') ADVANCE(55); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); + if (lookahead == 'E') ADVANCE(137); END_STATE(); case 19: - if (lookahead == '\n') ADVANCE(190); - if (lookahead == '\r') ADVANCE(163); - if (lookahead == '%') ADVANCE(161); - if (lookahead == '\\') ADVANCE(164); - if (lookahead != 0) ADVANCE(162); + if (lookahead == 'E') ADVANCE(143); END_STATE(); case 20: - if (lookahead == '\r') SKIP(20) - if (lookahead == '"') ADVANCE(207); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); + if (lookahead == 'F') ADVANCE(22); END_STATE(); case 21: - if (lookahead == '\r') ADVANCE(155); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != ')') ADVANCE(156); + if (lookahead == 'M') ADVANCE(19); END_STATE(); case 22: - if (lookahead == '\r') ADVANCE(186); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != ' ' && - lookahead != '=' && - lookahead != '{' && - lookahead != '}') ADVANCE(187); + if (lookahead == 'O') ADVANCE(139); END_STATE(); case 23: - if (lookahead == '\r') ADVANCE(208); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '"') ADVANCE(209); + if (lookahead == 'O') ADVANCE(133); END_STATE(); case 24: - if (lookahead == '.') ADVANCE(84); + if (lookahead == 'P') ADVANCE(135); END_STATE(); case 25: - if (lookahead == ':') ADVANCE(121); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ') ADVANCE(25); + if (lookahead == 'T') ADVANCE(18); END_STATE(); case 26: - if (lookahead == 'D') ADVANCE(32); + if (lookahead == 'X') ADVANCE(21); END_STATE(); case 27: - if (lookahead == 'E') ADVANCE(174); + if (lookahead == 'X') ADVANCE(141); END_STATE(); case 28: - if (lookahead == 'E') ADVANCE(183); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '}') ADVANCE(165); END_STATE(); case 29: - if (lookahead == 'F') ADVANCE(31); + if (eof) ADVANCE(37); + if (lookahead == '\n') ADVANCE(149); + if (lookahead == '\r') SKIP(29) + if (lookahead == '!') ADVANCE(159); + if (lookahead == '"') ADVANCE(167); + if (lookahead == '$') ADVANCE(131); + if (lookahead == '%') ADVANCE(126); + if (lookahead == '(') ADVANCE(121); + if (lookahead == ')') ADVANCE(124); + if (lookahead == '*') ADVANCE(44); + if (lookahead == '-') ADVANCE(151); + if (lookahead == '.') ADVANCE(164); + if (lookahead == ':') ADVANCE(162); + if (lookahead == '<') ADVANCE(73); + if (lookahead == '=') ADVANCE(166); + if (lookahead == '>') ADVANCE(100); + if (lookahead == 'F') ADVANCE(153); + if (lookahead == 'I') ADVANCE(155); + if (lookahead == 'N') ADVANCE(156); + if (lookahead == 'T') ADVANCE(157); + if (lookahead == 'W') ADVANCE(154); + if (lookahead == 'X') ADVANCE(158); + if (lookahead == '[') ADVANCE(117); + if (lookahead == '\\') ADVANCE(62); + if (lookahead == ']') ADVANCE(104); + if (lookahead == '^') ADVANCE(48); + if (lookahead == '_') ADVANCE(40); + if (lookahead == '{') ADVANCE(111); + if (lookahead == '}') ADVANCE(125); + if (lookahead == '~') ADVANCE(52); + if (lookahead != 0 && + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(150); END_STATE(); case 30: - if (lookahead == 'M') ADVANCE(28); + if (eof) ADVANCE(37); + if (lookahead == '\n') ADVANCE(149); + if (lookahead == '\r') SKIP(31) + if (lookahead == '!') ADVANCE(159); + if (lookahead == '"') ADVANCE(160); + if (lookahead == '$') ADVANCE(131); + if (lookahead == '\'') ADVANCE(160); + if (lookahead == '*') ADVANCE(44); + if (lookahead == '-') ADVANCE(151); + if (lookahead == '.') ADVANCE(152); + if (lookahead == ':') ADVANCE(162); + if (lookahead == '<') ADVANCE(73); + if (lookahead == 'F') ADVANCE(153); + if (lookahead == 'I') ADVANCE(155); + if (lookahead == 'N') ADVANCE(156); + if (lookahead == 'T') ADVANCE(157); + if (lookahead == 'W') ADVANCE(154); + if (lookahead == 'X') ADVANCE(158); + if (lookahead == '[') ADVANCE(117); + if (lookahead == '\\') ADVANCE(60); + if (lookahead == '^') ADVANCE(48); + if (lookahead == '_') ADVANCE(40); + if (lookahead == '{') ADVANCE(161); + if (lookahead == '~') ADVANCE(52); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(148); + if (lookahead != 0 && + lookahead != 11 && + lookahead != '\f') ADVANCE(150); END_STATE(); case 31: - if (lookahead == 'O') ADVANCE(177); + if (eof) ADVANCE(37); + if (lookahead == '\n') ADVANCE(149); + if (lookahead == '\r') SKIP(31) + if (lookahead == '!') ADVANCE(159); + if (lookahead == '"') ADVANCE(160); + if (lookahead == '$') ADVANCE(131); + if (lookahead == '\'') ADVANCE(160); + if (lookahead == '*') ADVANCE(44); + if (lookahead == '-') ADVANCE(151); + if (lookahead == '.') ADVANCE(152); + if (lookahead == ':') ADVANCE(162); + if (lookahead == '<') ADVANCE(73); + if (lookahead == 'F') ADVANCE(153); + if (lookahead == 'I') ADVANCE(155); + if (lookahead == 'N') ADVANCE(156); + if (lookahead == 'T') ADVANCE(157); + if (lookahead == 'W') ADVANCE(154); + if (lookahead == 'X') ADVANCE(158); + if (lookahead == '[') ADVANCE(117); + if (lookahead == '\\') ADVANCE(60); + if (lookahead == '^') ADVANCE(48); + if (lookahead == '_') ADVANCE(40); + if (lookahead == '{') ADVANCE(161); + if (lookahead == '~') ADVANCE(52); + if (lookahead != 0 && + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(150); END_STATE(); case 32: - if (lookahead == 'O') ADVANCE(168); + if (eof) ADVANCE(37); + if (lookahead == '\n') ADVANCE(149); + if (lookahead == '\r') SKIP(33) + if (lookahead == '!') ADVANCE(96); + if (lookahead == '"') ADVANCE(97); + if (lookahead == '$') ADVANCE(132); + if (lookahead == '\'') ADVANCE(97); + if (lookahead == '*') ADVANCE(45); + if (lookahead == '-') ADVANCE(75); + if (lookahead == '.') ADVANCE(77); + if (lookahead == ':') ADVANCE(98); + if (lookahead == '<') ADVANCE(74); + if (lookahead == '>') ADVANCE(150); + if (lookahead == 'F') ADVANCE(84); + if (lookahead == 'I') ADVANCE(86); + if (lookahead == 'N') ADVANCE(87); + if (lookahead == 'T') ADVANCE(88); + if (lookahead == 'W') ADVANCE(83); + if (lookahead == 'X') ADVANCE(95); + if (lookahead == '[') ADVANCE(118); + if (lookahead == '\\') ADVANCE(61); + if (lookahead == '^') ADVANCE(49); + if (lookahead == '_') ADVANCE(41); + if (lookahead == '{') ADVANCE(114); + if (lookahead == '~') ADVANCE(53); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(148); + if (lookahead != 0 && + lookahead != 11 && + lookahead != '\f') ADVANCE(99); END_STATE(); case 33: - if (lookahead == 'P') ADVANCE(171); + if (eof) ADVANCE(37); + if (lookahead == '\n') ADVANCE(149); + if (lookahead == '\r') SKIP(33) + if (lookahead == '!') ADVANCE(96); + if (lookahead == '"') ADVANCE(97); + if (lookahead == '$') ADVANCE(132); + if (lookahead == '\'') ADVANCE(97); + if (lookahead == '*') ADVANCE(45); + if (lookahead == '-') ADVANCE(75); + if (lookahead == '.') ADVANCE(77); + if (lookahead == ':') ADVANCE(98); + if (lookahead == '<') ADVANCE(74); + if (lookahead == '>') ADVANCE(150); + if (lookahead == 'F') ADVANCE(84); + if (lookahead == 'I') ADVANCE(86); + if (lookahead == 'N') ADVANCE(87); + if (lookahead == 'T') ADVANCE(88); + if (lookahead == 'W') ADVANCE(83); + if (lookahead == 'X') ADVANCE(95); + if (lookahead == '[') ADVANCE(118); + if (lookahead == '\\') ADVANCE(61); + if (lookahead == '^') ADVANCE(49); + if (lookahead == '_') ADVANCE(41); + if (lookahead == '{') ADVANCE(114); + if (lookahead == '~') ADVANCE(53); + if (lookahead != 0 && + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(99); END_STATE(); case 34: - if (lookahead == 'T') ADVANCE(27); + if (eof) ADVANCE(37); + if (lookahead == '\n') ADVANCE(149); + if (lookahead == '\r') SKIP(35) + if (lookahead == '!') ADVANCE(159); + if (lookahead == '"') ADVANCE(160); + if (lookahead == '$') ADVANCE(131); + if (lookahead == '\'') ADVANCE(160); + if (lookahead == '*') ADVANCE(44); + if (lookahead == '-') ADVANCE(151); + if (lookahead == '.') ADVANCE(152); + if (lookahead == ':') ADVANCE(162); + if (lookahead == '<') ADVANCE(73); + if (lookahead == 'F') ADVANCE(153); + if (lookahead == 'I') ADVANCE(155); + if (lookahead == 'N') ADVANCE(156); + if (lookahead == 'T') ADVANCE(157); + if (lookahead == 'W') ADVANCE(154); + if (lookahead == 'X') ADVANCE(158); + if (lookahead == '[') ADVANCE(117); + if (lookahead == '\\') ADVANCE(60); + if (lookahead == '^') ADVANCE(48); + if (lookahead == '_') ADVANCE(40); + if (lookahead == '{') ADVANCE(113); + if (lookahead == '~') ADVANCE(52); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(148); + if (lookahead != 0 && + lookahead != 11 && + lookahead != '\f') ADVANCE(150); END_STATE(); case 35: - if (lookahead == 'X') ADVANCE(30); + if (eof) ADVANCE(37); + if (lookahead == '\n') ADVANCE(149); + if (lookahead == '\r') SKIP(35) + if (lookahead == '!') ADVANCE(159); + if (lookahead == '"') ADVANCE(160); + if (lookahead == '$') ADVANCE(131); + if (lookahead == '\'') ADVANCE(160); + if (lookahead == '*') ADVANCE(44); + if (lookahead == '-') ADVANCE(151); + if (lookahead == '.') ADVANCE(152); + if (lookahead == ':') ADVANCE(162); + if (lookahead == '<') ADVANCE(73); + if (lookahead == 'F') ADVANCE(153); + if (lookahead == 'I') ADVANCE(155); + if (lookahead == 'N') ADVANCE(156); + if (lookahead == 'T') ADVANCE(157); + if (lookahead == 'W') ADVANCE(154); + if (lookahead == 'X') ADVANCE(158); + if (lookahead == '[') ADVANCE(117); + if (lookahead == '\\') ADVANCE(60); + if (lookahead == '^') ADVANCE(48); + if (lookahead == '_') ADVANCE(40); + if (lookahead == '{') ADVANCE(113); + if (lookahead == '~') ADVANCE(52); + if (lookahead != 0 && + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(150); END_STATE(); case 36: - if (lookahead == 'X') ADVANCE(180); + if (eof) ADVANCE(37); + if (lookahead == '\n') ADVANCE(149); + if (lookahead == '\r') SKIP(35) + if (lookahead == '!') ADVANCE(159); + if (lookahead == '"') ADVANCE(160); + if (lookahead == '$') ADVANCE(131); + if (lookahead == '\'') ADVANCE(160); + if (lookahead == '*') ADVANCE(44); + if (lookahead == '-') ADVANCE(151); + if (lookahead == '.') ADVANCE(152); + if (lookahead == ':') ADVANCE(162); + if (lookahead == '<') ADVANCE(73); + if (lookahead == 'F') ADVANCE(153); + if (lookahead == 'I') ADVANCE(155); + if (lookahead == 'N') ADVANCE(156); + if (lookahead == 'T') ADVANCE(157); + if (lookahead == 'W') ADVANCE(154); + if (lookahead == 'X') ADVANCE(158); + if (lookahead == '[') ADVANCE(117); + if (lookahead == '\\') ADVANCE(60); + if (lookahead == '^') ADVANCE(48); + if (lookahead == '_') ADVANCE(40); + if (lookahead == '{') ADVANCE(112); + if (lookahead == '~') ADVANCE(52); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(148); + if (lookahead != 0 && + lookahead != 11 && + lookahead != '\f') ADVANCE(150); END_STATE(); case 37: - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '}') ADVANCE(205); + ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); case 38: - if (eof) ADVANCE(49); - if (lookahead == '\n') ADVANCE(190); - if (lookahead == '\r') SKIP(38) - if (lookahead == '!') ADVANCE(200); - if (lookahead == '"') ADVANCE(207); - if (lookahead == '$') ADVANCE(166); - if (lookahead == '%') ADVANCE(161); - if (lookahead == '(') ADVANCE(154); - if (lookahead == ')') ADVANCE(157); - if (lookahead == '*') ADVANCE(63); - if (lookahead == '-') ADVANCE(126); - if (lookahead == '.') ADVANCE(204); - if (lookahead == ':') ADVANCE(202); - if (lookahead == '<') ADVANCE(94); - if (lookahead == '=') ADVANCE(206); - if (lookahead == '>') ADVANCE(120); - if (lookahead == 'F') ADVANCE(132); - if (lookahead == 'I') ADVANCE(134); - if (lookahead == 'N') ADVANCE(135); - if (lookahead == 'T') ADVANCE(136); - if (lookahead == 'W') ADVANCE(131); - if (lookahead == 'X') ADVANCE(143); - if (lookahead == '[') ADVANCE(150); - if (lookahead == '\\') ADVANCE(81); - if (lookahead == ']') ADVANCE(124); - if (lookahead == '^') ADVANCE(67); - if (lookahead == '_') ADVANCE(59); - if (lookahead == '{') ADVANCE(158); - if (lookahead == '}') ADVANCE(55); - if (lookahead == '~') ADVANCE(71); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(191); + ACCEPT_TOKEN(anon_sym_LBRACE_); END_STATE(); case 39: - if (eof) ADVANCE(49); - if (lookahead == '\n') ADVANCE(190); - if (lookahead == '\r') SKIP(40) - if (lookahead == '!') ADVANCE(200); - if (lookahead == '"') ADVANCE(201); - if (lookahead == '$') ADVANCE(166); - if (lookahead == '\'') ADVANCE(201); - if (lookahead == '*') ADVANCE(63); - if (lookahead == '-') ADVANCE(192); - if (lookahead == '.') ADVANCE(193); - if (lookahead == ':') ADVANCE(202); - if (lookahead == '<') ADVANCE(94); - if (lookahead == 'F') ADVANCE(194); - if (lookahead == 'I') ADVANCE(196); - if (lookahead == 'N') ADVANCE(197); - if (lookahead == 'T') ADVANCE(198); - if (lookahead == 'W') ADVANCE(195); - if (lookahead == 'X') ADVANCE(199); - if (lookahead == '[') ADVANCE(150); - if (lookahead == '\\') ADVANCE(79); - if (lookahead == '^') ADVANCE(67); - if (lookahead == '_') ADVANCE(58); - if (lookahead == '{') ADVANCE(159); - if (lookahead == '~') ADVANCE(71); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(189); + ACCEPT_TOKEN(anon_sym_LBRACE_); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(191); + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(99); END_STATE(); case 40: - if (eof) ADVANCE(49); - if (lookahead == '\n') ADVANCE(190); - if (lookahead == '\r') SKIP(40) - if (lookahead == '!') ADVANCE(200); - if (lookahead == '"') ADVANCE(201); - if (lookahead == '$') ADVANCE(166); - if (lookahead == '\'') ADVANCE(201); - if (lookahead == '*') ADVANCE(63); - if (lookahead == '-') ADVANCE(192); - if (lookahead == '.') ADVANCE(193); - if (lookahead == ':') ADVANCE(202); - if (lookahead == '<') ADVANCE(94); - if (lookahead == 'F') ADVANCE(194); - if (lookahead == 'I') ADVANCE(196); - if (lookahead == 'N') ADVANCE(197); - if (lookahead == 'T') ADVANCE(198); - if (lookahead == 'W') ADVANCE(195); - if (lookahead == 'X') ADVANCE(199); - if (lookahead == '[') ADVANCE(150); - if (lookahead == '\\') ADVANCE(79); - if (lookahead == '^') ADVANCE(67); - if (lookahead == '_') ADVANCE(58); - if (lookahead == '{') ADVANCE(159); - if (lookahead == '~') ADVANCE(71); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(191); + ACCEPT_TOKEN(anon_sym__); END_STATE(); case 41: - if (eof) ADVANCE(49); - if (lookahead == '\n') ADVANCE(190); - if (lookahead == '\r') SKIP(40) - if (lookahead == '!') ADVANCE(200); - if (lookahead == '"') ADVANCE(201); - if (lookahead == '$') ADVANCE(166); - if (lookahead == '\'') ADVANCE(201); - if (lookahead == '*') ADVANCE(63); - if (lookahead == '-') ADVANCE(192); - if (lookahead == '.') ADVANCE(193); - if (lookahead == ':') ADVANCE(202); - if (lookahead == '<') ADVANCE(94); - if (lookahead == 'F') ADVANCE(194); - if (lookahead == 'I') ADVANCE(196); - if (lookahead == 'N') ADVANCE(197); - if (lookahead == 'T') ADVANCE(198); - if (lookahead == 'W') ADVANCE(195); - if (lookahead == 'X') ADVANCE(199); - if (lookahead == '[') ADVANCE(150); - if (lookahead == '\\') ADVANCE(79); - if (lookahead == '^') ADVANCE(67); - if (lookahead == '_') ADVANCE(58); - if (lookahead == '{') ADVANCE(53); - if (lookahead == '~') ADVANCE(71); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(189); + ACCEPT_TOKEN(anon_sym__); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(191); + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(99); END_STATE(); case 42: - if (eof) ADVANCE(49); - if (lookahead == '\n') ADVANCE(190); - if (lookahead == '\r') SKIP(40) - if (lookahead == '!') ADVANCE(200); - if (lookahead == '"') ADVANCE(201); - if (lookahead == '$') ADVANCE(166); - if (lookahead == '\'') ADVANCE(201); - if (lookahead == '*') ADVANCE(63); - if (lookahead == '-') ADVANCE(192); - if (lookahead == '.') ADVANCE(193); - if (lookahead == ':') ADVANCE(202); - if (lookahead == '<') ADVANCE(94); - if (lookahead == 'F') ADVANCE(194); - if (lookahead == 'I') ADVANCE(196); - if (lookahead == 'N') ADVANCE(197); - if (lookahead == 'T') ADVANCE(198); - if (lookahead == 'W') ADVANCE(195); - if (lookahead == 'X') ADVANCE(199); - if (lookahead == '[') ADVANCE(150); - if (lookahead == '\\') ADVANCE(79); - if (lookahead == '^') ADVANCE(67); - if (lookahead == '_') ADVANCE(58); - if (lookahead == '{') ADVANCE(52); - if (lookahead == '~') ADVANCE(71); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(189); - if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(191); + ACCEPT_TOKEN(anon_sym_LBRACE_STAR); END_STATE(); case 43: - if (eof) ADVANCE(49); - if (lookahead == '\n') ADVANCE(190); - if (lookahead == '\r') SKIP(43) - if (lookahead == '!') ADVANCE(200); - if (lookahead == '"') ADVANCE(201); - if (lookahead == '$') ADVANCE(166); - if (lookahead == '\'') ADVANCE(201); - if (lookahead == '*') ADVANCE(63); - if (lookahead == '-') ADVANCE(192); - if (lookahead == '.') ADVANCE(193); - if (lookahead == ':') ADVANCE(202); - if (lookahead == '<') ADVANCE(94); - if (lookahead == 'F') ADVANCE(194); - if (lookahead == 'I') ADVANCE(196); - if (lookahead == 'N') ADVANCE(197); - if (lookahead == 'T') ADVANCE(198); - if (lookahead == 'W') ADVANCE(195); - if (lookahead == 'X') ADVANCE(199); - if (lookahead == '[') ADVANCE(150); - if (lookahead == '\\') ADVANCE(79); - if (lookahead == ']') ADVANCE(124); - if (lookahead == '^') ADVANCE(67); - if (lookahead == '_') ADVANCE(58); - if (lookahead == '{') ADVANCE(159); - if (lookahead == '~') ADVANCE(71); + ACCEPT_TOKEN(anon_sym_LBRACE_STAR); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(191); + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(99); END_STATE(); case 44: - if (eof) ADVANCE(49); - if (lookahead == '\n') ADVANCE(190); - if (lookahead == '\r') SKIP(43) - if (lookahead == '!') ADVANCE(200); - if (lookahead == '"') ADVANCE(201); - if (lookahead == '$') ADVANCE(166); - if (lookahead == '\'') ADVANCE(201); - if (lookahead == '*') ADVANCE(63); - if (lookahead == '-') ADVANCE(192); - if (lookahead == '.') ADVANCE(193); - if (lookahead == ':') ADVANCE(202); - if (lookahead == '<') ADVANCE(94); - if (lookahead == 'F') ADVANCE(194); - if (lookahead == 'I') ADVANCE(196); - if (lookahead == 'N') ADVANCE(197); - if (lookahead == 'T') ADVANCE(198); - if (lookahead == 'W') ADVANCE(195); - if (lookahead == 'X') ADVANCE(199); - if (lookahead == '[') ADVANCE(150); - if (lookahead == '\\') ADVANCE(79); - if (lookahead == ']') ADVANCE(124); - if (lookahead == '^') ADVANCE(67); - if (lookahead == '_') ADVANCE(58); - if (lookahead == '{') ADVANCE(53); - if (lookahead == '~') ADVANCE(71); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(189); - if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(191); + ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); case 45: - if (eof) ADVANCE(49); - if (lookahead == '\n') ADVANCE(190); - if (lookahead == '\r') SKIP(45) - if (lookahead == '!') ADVANCE(200); - if (lookahead == '"') ADVANCE(201); - if (lookahead == '$') ADVANCE(166); - if (lookahead == '\'') ADVANCE(201); - if (lookahead == '*') ADVANCE(63); - if (lookahead == '-') ADVANCE(126); - if (lookahead == '.') ADVANCE(193); - if (lookahead == ':') ADVANCE(202); - if (lookahead == '<') ADVANCE(94); - if (lookahead == 'F') ADVANCE(132); - if (lookahead == 'I') ADVANCE(134); - if (lookahead == 'N') ADVANCE(135); - if (lookahead == 'T') ADVANCE(136); - if (lookahead == 'W') ADVANCE(131); - if (lookahead == 'X') ADVANCE(143); - if (lookahead == '[') ADVANCE(150); - if (lookahead == '\\') ADVANCE(79); - if (lookahead == '^') ADVANCE(67); - if (lookahead == '_') ADVANCE(59); - if (lookahead == '{') ADVANCE(159); - if (lookahead == '~') ADVANCE(71); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); + ACCEPT_TOKEN(anon_sym_STAR); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(191); + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(99); END_STATE(); case 46: - if (eof) ADVANCE(49); - if (lookahead == '\n') ADVANCE(190); - if (lookahead == '\r') SKIP(45) - if (lookahead == '!') ADVANCE(200); - if (lookahead == '"') ADVANCE(201); - if (lookahead == '$') ADVANCE(166); - if (lookahead == '\'') ADVANCE(201); - if (lookahead == '*') ADVANCE(63); - if (lookahead == '-') ADVANCE(126); - if (lookahead == '.') ADVANCE(193); - if (lookahead == ':') ADVANCE(202); - if (lookahead == '<') ADVANCE(94); - if (lookahead == 'F') ADVANCE(132); - if (lookahead == 'I') ADVANCE(134); - if (lookahead == 'N') ADVANCE(135); - if (lookahead == 'T') ADVANCE(136); - if (lookahead == 'W') ADVANCE(131); - if (lookahead == 'X') ADVANCE(143); - if (lookahead == '[') ADVANCE(150); - if (lookahead == '\\') ADVANCE(79); - if (lookahead == '^') ADVANCE(67); - if (lookahead == '_') ADVANCE(59); - if (lookahead == '{') ADVANCE(53); - if (lookahead == '~') ADVANCE(71); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(189); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); - if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(191); + ACCEPT_TOKEN(anon_sym_LBRACE_CARET); END_STATE(); case 47: - if (eof) ADVANCE(49); - if (lookahead == '\n') ADVANCE(190); - if (lookahead == '\r') SKIP(48) - if (lookahead == '!') ADVANCE(117); - if (lookahead == '"') ADVANCE(118); - if (lookahead == '$') ADVANCE(167); - if (lookahead == '\'') ADVANCE(118); - if (lookahead == '*') ADVANCE(64); - if (lookahead == '-') ADVANCE(96); - if (lookahead == '.') ADVANCE(98); - if (lookahead == ':') ADVANCE(99); - if (lookahead == '<') ADVANCE(95); - if (lookahead == '>') ADVANCE(191); - if (lookahead == 'F') ADVANCE(105); - if (lookahead == 'I') ADVANCE(107); - if (lookahead == 'N') ADVANCE(108); - if (lookahead == 'T') ADVANCE(109); - if (lookahead == 'W') ADVANCE(104); - if (lookahead == 'X') ADVANCE(116); - if (lookahead == '[') ADVANCE(151); - if (lookahead == '\\') ADVANCE(80); - if (lookahead == '^') ADVANCE(68); - if (lookahead == '_') ADVANCE(60); - if (lookahead == '{') ADVANCE(54); - if (lookahead == '~') ADVANCE(72); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(189); - if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(119); - END_STATE(); - case 48: - if (eof) ADVANCE(49); - if (lookahead == '\n') ADVANCE(190); - if (lookahead == '\r') SKIP(48) - if (lookahead == '!') ADVANCE(117); - if (lookahead == '"') ADVANCE(118); - if (lookahead == '$') ADVANCE(167); - if (lookahead == '\'') ADVANCE(118); - if (lookahead == '*') ADVANCE(64); - if (lookahead == '-') ADVANCE(96); - if (lookahead == '.') ADVANCE(98); - if (lookahead == ':') ADVANCE(99); - if (lookahead == '<') ADVANCE(95); - if (lookahead == '>') ADVANCE(191); - if (lookahead == 'F') ADVANCE(105); - if (lookahead == 'I') ADVANCE(107); - if (lookahead == 'N') ADVANCE(108); - if (lookahead == 'T') ADVANCE(109); - if (lookahead == 'W') ADVANCE(104); - if (lookahead == 'X') ADVANCE(116); - if (lookahead == '[') ADVANCE(151); - if (lookahead == '\\') ADVANCE(80); - if (lookahead == '^') ADVANCE(68); - if (lookahead == '_') ADVANCE(60); - if (lookahead == '{') ADVANCE(160); - if (lookahead == '~') ADVANCE(72); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(119); - END_STATE(); - case 49: - ACCEPT_TOKEN(ts_builtin_sym_end); - END_STATE(); - case 50: - ACCEPT_TOKEN(anon_sym_LBRACE); - END_STATE(); - case 51: - ACCEPT_TOKEN(anon_sym_LBRACE); - if (lookahead == '*') ADVANCE(61); - if (lookahead == '+') ADVANCE(75); - if (lookahead == '-') ADVANCE(77); - if (lookahead == '=') ADVANCE(165); - if (lookahead == '^') ADVANCE(65); - if (lookahead == '_') ADVANCE(56); - if (lookahead == '~') ADVANCE(69); - END_STATE(); - case 52: - ACCEPT_TOKEN(anon_sym_LBRACE); - if (lookahead == '"' || - lookahead == '\'') ADVANCE(82); - if (lookahead == '*') ADVANCE(61); - if (lookahead == '+') ADVANCE(75); - if (lookahead == '-') ADVANCE(77); - if (lookahead == '=') ADVANCE(165); - if (lookahead == '^') ADVANCE(65); - if (lookahead == '_') ADVANCE(56); - if (lookahead == '~') ADVANCE(69); - END_STATE(); - case 53: - ACCEPT_TOKEN(anon_sym_LBRACE); - if (lookahead == '"' || - lookahead == '\'') ADVANCE(82); - if (lookahead == '*') ADVANCE(61); - if (lookahead == '+') ADVANCE(75); - if (lookahead == '-') ADVANCE(77); - if (lookahead == '=') ADVANCE(73); - if (lookahead == '^') ADVANCE(65); - if (lookahead == '_') ADVANCE(56); - if (lookahead == '~') ADVANCE(69); - END_STATE(); - case 54: - ACCEPT_TOKEN(anon_sym_LBRACE); - if (lookahead == '"' || - lookahead == '\'') ADVANCE(83); - if (lookahead == '*') ADVANCE(62); - if (lookahead == '+') ADVANCE(76); - if (lookahead == '-') ADVANCE(78); - if (lookahead == '=') ADVANCE(74); - if (lookahead == '^') ADVANCE(66); - if (lookahead == '_') ADVANCE(57); - if (lookahead == '~') ADVANCE(70); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(119); - END_STATE(); - case 55: - ACCEPT_TOKEN(anon_sym_RBRACE); - END_STATE(); - case 56: - ACCEPT_TOKEN(anon_sym_LBRACE_); - END_STATE(); - case 57: - ACCEPT_TOKEN(anon_sym_LBRACE_); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(119); - END_STATE(); - case 58: - ACCEPT_TOKEN(anon_sym__); - END_STATE(); - case 59: - ACCEPT_TOKEN(anon_sym__); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); - END_STATE(); - case 60: - ACCEPT_TOKEN(anon_sym__); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(119); - END_STATE(); - case 61: - ACCEPT_TOKEN(anon_sym_LBRACE_STAR); - END_STATE(); - case 62: - ACCEPT_TOKEN(anon_sym_LBRACE_STAR); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(119); - END_STATE(); - case 63: - ACCEPT_TOKEN(anon_sym_STAR); - END_STATE(); - case 64: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(119); - END_STATE(); - case 65: - ACCEPT_TOKEN(anon_sym_LBRACE_CARET); - END_STATE(); - case 66: ACCEPT_TOKEN(anon_sym_LBRACE_CARET); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(119); + lookahead != '>') ADVANCE(99); END_STATE(); - case 67: + case 48: ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); - case 68: + case 49: ACCEPT_TOKEN(anon_sym_CARET); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(119); + lookahead != '>') ADVANCE(99); END_STATE(); - case 69: + case 50: ACCEPT_TOKEN(anon_sym_LBRACE_TILDE); END_STATE(); - case 70: + case 51: ACCEPT_TOKEN(anon_sym_LBRACE_TILDE); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(119); + lookahead != '>') ADVANCE(99); END_STATE(); - case 71: + case 52: ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); - case 72: + case 53: ACCEPT_TOKEN(anon_sym_TILDE); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(119); + lookahead != '>') ADVANCE(99); END_STATE(); - case 73: + case 54: ACCEPT_TOKEN(anon_sym_LBRACE_EQ); END_STATE(); - case 74: + case 55: ACCEPT_TOKEN(anon_sym_LBRACE_EQ); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(119); + lookahead != '>') ADVANCE(99); END_STATE(); - case 75: + case 56: ACCEPT_TOKEN(anon_sym_LBRACE_PLUS); END_STATE(); - case 76: + case 57: ACCEPT_TOKEN(anon_sym_LBRACE_PLUS); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(119); + lookahead != '>') ADVANCE(99); END_STATE(); - case 77: + case 58: ACCEPT_TOKEN(anon_sym_LBRACE_DASH); END_STATE(); - case 78: + case 59: ACCEPT_TOKEN(anon_sym_LBRACE_DASH); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(119); + lookahead != '>') ADVANCE(99); END_STATE(); - case 79: + case 60: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '"' || - lookahead == '\'') ADVANCE(82); + lookahead == '\'') ADVANCE(63); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && - lookahead != '\\') ADVANCE(92); + lookahead != '\\') ADVANCE(71); END_STATE(); - case 80: + case 61: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '"' || - lookahead == '\'') ADVANCE(83); - if (lookahead == '\\') ADVANCE(119); + lookahead == '\'') ADVANCE(64); + if (lookahead == '\\') ADVANCE(99); if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || lookahead == ' ' || - lookahead == '>') ADVANCE(92); + lookahead == '>') ADVANCE(71); if (lookahead != 0 && - (lookahead < '\n' || '\r' < lookahead)) ADVANCE(93); + (lookahead < '\n' || '\r' < lookahead)) ADVANCE(72); END_STATE(); - case 81: + case 62: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && - lookahead != '\\') ADVANCE(92); + lookahead != '\\') ADVANCE(71); END_STATE(); - case 82: + case 63: ACCEPT_TOKEN(sym_quotation_marks); END_STATE(); - case 83: + case 64: ACCEPT_TOKEN(sym_quotation_marks); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(119); + lookahead != '>') ADVANCE(99); END_STATE(); - case 84: + case 65: ACCEPT_TOKEN(sym_ellipsis); END_STATE(); - case 85: + case 66: ACCEPT_TOKEN(sym_ellipsis); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(119); - END_STATE(); - case 86: - ACCEPT_TOKEN(sym_em_dash); + lookahead != '>') ADVANCE(99); END_STATE(); - case 87: + case 67: ACCEPT_TOKEN(sym_em_dash); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); END_STATE(); - case 88: + case 68: ACCEPT_TOKEN(sym_em_dash); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(119); - END_STATE(); - case 89: - ACCEPT_TOKEN(sym_en_dash); - if (lookahead == '-') ADVANCE(87); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); + lookahead != '>') ADVANCE(99); END_STATE(); - case 90: + case 69: ACCEPT_TOKEN(sym_en_dash); - if (lookahead == '-') ADVANCE(86); + if (lookahead == '-') ADVANCE(67); END_STATE(); - case 91: + case 70: ACCEPT_TOKEN(sym_en_dash); - if (lookahead == '-') ADVANCE(88); + if (lookahead == '-') ADVANCE(68); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(119); + lookahead != '>') ADVANCE(99); END_STATE(); - case 92: + case 71: ACCEPT_TOKEN(sym_backslash_escape); END_STATE(); - case 93: + case 72: ACCEPT_TOKEN(sym_backslash_escape); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(119); + lookahead != '>') ADVANCE(99); END_STATE(); - case 94: + case 73: ACCEPT_TOKEN(anon_sym_LT); END_STATE(); - case 95: + case 74: ACCEPT_TOKEN(anon_sym_LT); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(119); + lookahead != '>') ADVANCE(99); END_STATE(); - case 96: + case 75: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == '-') ADVANCE(91); + if (lookahead == '-') ADVANCE(70); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(119); + lookahead != '>') ADVANCE(99); END_STATE(); - case 97: + case 76: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == '.') ADVANCE(85); + if (lookahead == '.') ADVANCE(66); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(119); + lookahead != '>') ADVANCE(99); END_STATE(); - case 98: + case 77: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == '.') ADVANCE(97); + if (lookahead == '.') ADVANCE(76); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(119); + lookahead != '>') ADVANCE(99); END_STATE(); - case 99: + case 78: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == ':') ADVANCE(119); - if (lookahead == '>') ADVANCE(25); + if (lookahead == ':') ADVANCE(99); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(78); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ') ADVANCE(99); + lookahead != ' ' && + lookahead != '>') ADVANCE(99); END_STATE(); - case 100: + case 79: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'D') ADVANCE(111); + if (lookahead == 'D') ADVANCE(90); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(119); + lookahead != '>') ADVANCE(99); END_STATE(); - case 101: + case 80: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'E') ADVANCE(176); + if (lookahead == 'E') ADVANCE(138); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(119); + lookahead != '>') ADVANCE(99); END_STATE(); - case 102: + case 81: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'E') ADVANCE(185); + if (lookahead == 'E') ADVANCE(144); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(119); + lookahead != '>') ADVANCE(99); END_STATE(); - case 103: + case 82: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'F') ADVANCE(110); + if (lookahead == 'F') ADVANCE(89); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(119); + lookahead != '>') ADVANCE(99); END_STATE(); - case 104: + case 83: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'I') ADVANCE(112); + if (lookahead == 'I') ADVANCE(91); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(119); + lookahead != '>') ADVANCE(99); END_STATE(); - case 105: + case 84: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'I') ADVANCE(114); + if (lookahead == 'I') ADVANCE(93); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(119); + lookahead != '>') ADVANCE(99); END_STATE(); - case 106: + case 85: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'M') ADVANCE(102); + if (lookahead == 'M') ADVANCE(81); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(119); + lookahead != '>') ADVANCE(99); END_STATE(); - case 107: + case 86: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'N') ADVANCE(103); + if (lookahead == 'N') ADVANCE(82); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(119); + lookahead != '>') ADVANCE(99); END_STATE(); - case 108: + case 87: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'O') ADVANCE(113); + if (lookahead == 'O') ADVANCE(92); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(119); + lookahead != '>') ADVANCE(99); END_STATE(); - case 109: + case 88: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'O') ADVANCE(100); + if (lookahead == 'O') ADVANCE(79); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(119); + lookahead != '>') ADVANCE(99); END_STATE(); - case 110: + case 89: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'O') ADVANCE(179); + if (lookahead == 'O') ADVANCE(140); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(119); + lookahead != '>') ADVANCE(99); END_STATE(); - case 111: + case 90: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'O') ADVANCE(170); + if (lookahead == 'O') ADVANCE(134); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(119); + lookahead != '>') ADVANCE(99); END_STATE(); - case 112: + case 91: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'P') ADVANCE(173); + if (lookahead == 'P') ADVANCE(136); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(119); + lookahead != '>') ADVANCE(99); END_STATE(); - case 113: + case 92: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'T') ADVANCE(101); + if (lookahead == 'T') ADVANCE(80); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(119); + lookahead != '>') ADVANCE(99); END_STATE(); - case 114: + case 93: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'X') ADVANCE(106); + if (lookahead == 'X') ADVANCE(85); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(119); + lookahead != '>') ADVANCE(99); END_STATE(); - case 115: + case 94: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'X') ADVANCE(182); + if (lookahead == 'X') ADVANCE(142); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(119); + lookahead != '>') ADVANCE(99); END_STATE(); - case 116: + case 95: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'X') ADVANCE(115); + if (lookahead == 'X') ADVANCE(94); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(119); + lookahead != '>') ADVANCE(99); END_STATE(); - case 117: + case 96: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == '[') ADVANCE(147); + if (lookahead == '[') ADVANCE(108); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(119); + lookahead != '>') ADVANCE(99); END_STATE(); - case 118: + case 97: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == '}') ADVANCE(83); + if (lookahead == '}') ADVANCE(64); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(119); + lookahead != '>') ADVANCE(99); END_STATE(); - case 119: + case 98: ACCEPT_TOKEN(aux_sym_autolink_token1); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(78); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(119); + lookahead != '>') ADVANCE(99); END_STATE(); - case 120: + case 99: + ACCEPT_TOKEN(aux_sym_autolink_token1); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(99); + END_STATE(); + case 100: ACCEPT_TOKEN(anon_sym_GT); END_STATE(); - case 121: + case 101: ACCEPT_TOKEN(sym_symbol); END_STATE(); - case 122: + case 102: ACCEPT_TOKEN(anon_sym_LBRACK_CARET); END_STATE(); - case 123: + case 103: ACCEPT_TOKEN(anon_sym_LBRACK_CARET); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(119); - END_STATE(); - case 124: - ACCEPT_TOKEN(anon_sym_RBRACK); + lookahead != '>') ADVANCE(99); END_STATE(); - case 125: + case 104: ACCEPT_TOKEN(anon_sym_RBRACK); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(119); - END_STATE(); - case 126: - ACCEPT_TOKEN(sym__id); - if (lookahead == '-') ADVANCE(89); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); END_STATE(); - case 127: + case 105: ACCEPT_TOKEN(sym__id); - if (lookahead == 'D') ADVANCE(138); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(105); END_STATE(); - case 128: - ACCEPT_TOKEN(sym__id); - if (lookahead == 'E') ADVANCE(175); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); + case 106: + ACCEPT_TOKEN(anon_sym_LBRACK_RBRACK); END_STATE(); - case 129: - ACCEPT_TOKEN(sym__id); - if (lookahead == 'E') ADVANCE(184); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); - END_STATE(); - case 130: - ACCEPT_TOKEN(sym__id); - if (lookahead == 'F') ADVANCE(137); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); - END_STATE(); - case 131: - ACCEPT_TOKEN(sym__id); - if (lookahead == 'I') ADVANCE(139); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); - END_STATE(); - case 132: - ACCEPT_TOKEN(sym__id); - if (lookahead == 'I') ADVANCE(141); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); - END_STATE(); - case 133: - ACCEPT_TOKEN(sym__id); - if (lookahead == 'M') ADVANCE(129); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); - END_STATE(); - case 134: - ACCEPT_TOKEN(sym__id); - if (lookahead == 'N') ADVANCE(130); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); - END_STATE(); - case 135: - ACCEPT_TOKEN(sym__id); - if (lookahead == 'O') ADVANCE(140); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); - END_STATE(); - case 136: - ACCEPT_TOKEN(sym__id); - if (lookahead == 'O') ADVANCE(127); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); - END_STATE(); - case 137: - ACCEPT_TOKEN(sym__id); - if (lookahead == 'O') ADVANCE(178); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); - END_STATE(); - case 138: - ACCEPT_TOKEN(sym__id); - if (lookahead == 'O') ADVANCE(169); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); - END_STATE(); - case 139: - ACCEPT_TOKEN(sym__id); - if (lookahead == 'P') ADVANCE(172); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); - END_STATE(); - case 140: - ACCEPT_TOKEN(sym__id); - if (lookahead == 'T') ADVANCE(128); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); + case 107: + ACCEPT_TOKEN(anon_sym_BANG_LBRACK); END_STATE(); - case 141: - ACCEPT_TOKEN(sym__id); - if (lookahead == 'X') ADVANCE(133); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); + case 108: + ACCEPT_TOKEN(anon_sym_BANG_LBRACK); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(99); END_STATE(); - case 142: - ACCEPT_TOKEN(sym__id); - if (lookahead == 'X') ADVANCE(181); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); + case 109: + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 143: - ACCEPT_TOKEN(sym__id); - if (lookahead == 'X') ADVANCE(142); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); + case 110: + ACCEPT_TOKEN(anon_sym_LBRACE); + if (lookahead == '*') ADVANCE(42); + if (lookahead == '+') ADVANCE(56); + if (lookahead == '-') ADVANCE(58); + if (lookahead == '=') ADVANCE(130); + if (lookahead == '^') ADVANCE(46); + if (lookahead == '_') ADVANCE(38); + if (lookahead == '~') ADVANCE(50); END_STATE(); - case 144: - ACCEPT_TOKEN(sym__id); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); + case 111: + ACCEPT_TOKEN(anon_sym_LBRACE); + if (lookahead == '*') ADVANCE(42); + if (lookahead == '+') ADVANCE(56); + if (lookahead == '-') ADVANCE(58); + if (lookahead == '=') ADVANCE(54); + if (lookahead == '^') ADVANCE(46); + if (lookahead == '_') ADVANCE(38); + if (lookahead == '~') ADVANCE(50); END_STATE(); - case 145: - ACCEPT_TOKEN(anon_sym_LBRACK_RBRACK); + case 112: + ACCEPT_TOKEN(anon_sym_LBRACE); + if (lookahead == '"' || + lookahead == '\'') ADVANCE(63); + if (lookahead == '*') ADVANCE(42); + if (lookahead == '+') ADVANCE(56); + if (lookahead == '-') ADVANCE(58); + if (lookahead == '=') ADVANCE(130); + if (lookahead == '^') ADVANCE(46); + if (lookahead == '_') ADVANCE(38); + if (lookahead == '~') ADVANCE(50); END_STATE(); - case 146: - ACCEPT_TOKEN(anon_sym_BANG_LBRACK); + case 113: + ACCEPT_TOKEN(anon_sym_LBRACE); + if (lookahead == '"' || + lookahead == '\'') ADVANCE(63); + if (lookahead == '*') ADVANCE(42); + if (lookahead == '+') ADVANCE(56); + if (lookahead == '-') ADVANCE(58); + if (lookahead == '=') ADVANCE(54); + if (lookahead == '^') ADVANCE(46); + if (lookahead == '_') ADVANCE(38); + if (lookahead == '~') ADVANCE(50); END_STATE(); - case 147: - ACCEPT_TOKEN(anon_sym_BANG_LBRACK); + case 114: + ACCEPT_TOKEN(anon_sym_LBRACE); + if (lookahead == '"' || + lookahead == '\'') ADVANCE(64); + if (lookahead == '*') ADVANCE(43); + if (lookahead == '+') ADVANCE(57); + if (lookahead == '-') ADVANCE(59); + if (lookahead == '=') ADVANCE(55); + if (lookahead == '^') ADVANCE(47); + if (lookahead == '_') ADVANCE(39); + if (lookahead == '~') ADVANCE(51); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(119); + lookahead != '>') ADVANCE(99); END_STATE(); - case 148: + case 115: ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); - case 149: + case 116: ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == ']') ADVANCE(145); + if (lookahead == ']') ADVANCE(106); END_STATE(); - case 150: + case 117: ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '^') ADVANCE(122); + if (lookahead == '^') ADVANCE(102); END_STATE(); - case 151: + case 118: ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '^') ADVANCE(123); + if (lookahead == '^') ADVANCE(103); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(119); + lookahead != '>') ADVANCE(99); END_STATE(); - case 152: + case 119: ACCEPT_TOKEN(anon_sym_RBRACK2); END_STATE(); - case 153: + case 120: ACCEPT_TOKEN(anon_sym_RBRACK2); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(119); + lookahead != '>') ADVANCE(99); END_STATE(); - case 154: + case 121: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 155: + case 122: ACCEPT_TOKEN(aux_sym_inline_link_destination_token1); - if (lookahead == '\r') ADVANCE(155); + if (lookahead == '\r') ADVANCE(122); if (lookahead != 0 && - lookahead != '\n' && - lookahead != ')') ADVANCE(156); + lookahead != ')') ADVANCE(123); END_STATE(); - case 156: + case 123: ACCEPT_TOKEN(aux_sym_inline_link_destination_token1); if (lookahead != 0 && - lookahead != '\n' && - lookahead != ')') ADVANCE(156); + lookahead != ')') ADVANCE(123); END_STATE(); - case 157: + case 124: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 158: - ACCEPT_TOKEN(anon_sym_LBRACE2); - if (lookahead == '*') ADVANCE(61); - if (lookahead == '+') ADVANCE(75); - if (lookahead == '-') ADVANCE(77); - if (lookahead == '=') ADVANCE(73); - if (lookahead == '^') ADVANCE(65); - if (lookahead == '_') ADVANCE(56); - if (lookahead == '~') ADVANCE(69); - END_STATE(); - case 159: - ACCEPT_TOKEN(anon_sym_LBRACE2); - if (lookahead == '"' || - lookahead == '\'') ADVANCE(82); - if (lookahead == '*') ADVANCE(61); - if (lookahead == '+') ADVANCE(75); - if (lookahead == '-') ADVANCE(77); - if (lookahead == '=') ADVANCE(73); - if (lookahead == '^') ADVANCE(65); - if (lookahead == '_') ADVANCE(56); - if (lookahead == '~') ADVANCE(69); - END_STATE(); - case 160: - ACCEPT_TOKEN(anon_sym_LBRACE2); - if (lookahead == '"' || - lookahead == '\'') ADVANCE(83); - if (lookahead == '*') ADVANCE(62); - if (lookahead == '+') ADVANCE(76); - if (lookahead == '-') ADVANCE(78); - if (lookahead == '=') ADVANCE(74); - if (lookahead == '^') ADVANCE(66); - if (lookahead == '_') ADVANCE(57); - if (lookahead == '~') ADVANCE(70); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(119); + case 125: + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 161: + case 126: ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); - case 162: + case 127: ACCEPT_TOKEN(aux_sym__comment_with_newline_token1); END_STATE(); - case 163: + case 128: ACCEPT_TOKEN(aux_sym__comment_with_newline_token1); - if (lookahead == '\r') ADVANCE(163); - if (lookahead == '\\') ADVANCE(164); + if (lookahead == '\r') ADVANCE(128); + if (lookahead == '\\') ADVANCE(129); if (lookahead != 0 && lookahead != '\n' && - lookahead != '%') ADVANCE(162); + lookahead != '%') ADVANCE(127); END_STATE(); - case 164: + case 129: ACCEPT_TOKEN(aux_sym__comment_with_newline_token1); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && - lookahead != '\\') ADVANCE(92); + lookahead != '\\') ADVANCE(71); END_STATE(); - case 165: + case 130: ACCEPT_TOKEN(anon_sym_LBRACE_EQ2); END_STATE(); - case 166: + case 131: ACCEPT_TOKEN(anon_sym_DOLLAR); END_STATE(); - case 167: + case 132: ACCEPT_TOKEN(anon_sym_DOLLAR); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(119); - END_STATE(); - case 168: - ACCEPT_TOKEN(anon_sym_TODO); + lookahead != '>') ADVANCE(99); END_STATE(); - case 169: + case 133: ACCEPT_TOKEN(anon_sym_TODO); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); END_STATE(); - case 170: + case 134: ACCEPT_TOKEN(anon_sym_TODO); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(119); - END_STATE(); - case 171: - ACCEPT_TOKEN(anon_sym_WIP); + lookahead != '>') ADVANCE(99); END_STATE(); - case 172: + case 135: ACCEPT_TOKEN(anon_sym_WIP); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); END_STATE(); - case 173: + case 136: ACCEPT_TOKEN(anon_sym_WIP); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(119); - END_STATE(); - case 174: - ACCEPT_TOKEN(anon_sym_NOTE); + lookahead != '>') ADVANCE(99); END_STATE(); - case 175: + case 137: ACCEPT_TOKEN(anon_sym_NOTE); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); END_STATE(); - case 176: + case 138: ACCEPT_TOKEN(anon_sym_NOTE); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(119); - END_STATE(); - case 177: - ACCEPT_TOKEN(anon_sym_INFO); + lookahead != '>') ADVANCE(99); END_STATE(); - case 178: + case 139: ACCEPT_TOKEN(anon_sym_INFO); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); END_STATE(); - case 179: + case 140: ACCEPT_TOKEN(anon_sym_INFO); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(119); - END_STATE(); - case 180: - ACCEPT_TOKEN(anon_sym_XXX); + lookahead != '>') ADVANCE(99); END_STATE(); - case 181: + case 141: ACCEPT_TOKEN(anon_sym_XXX); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); END_STATE(); - case 182: + case 142: ACCEPT_TOKEN(anon_sym_XXX); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(119); - END_STATE(); - case 183: - ACCEPT_TOKEN(sym_fixme); + lookahead != '>') ADVANCE(99); END_STATE(); - case 184: + case 143: ACCEPT_TOKEN(sym_fixme); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); END_STATE(); - case 185: + case 144: ACCEPT_TOKEN(sym_fixme); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(119); + lookahead != '>') ADVANCE(99); END_STATE(); - case 186: + case 145: ACCEPT_TOKEN(sym_language); - if (lookahead == '\r') ADVANCE(186); + if (lookahead == '\r') ADVANCE(145); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && lookahead != '=' && lookahead != '{' && - lookahead != '}') ADVANCE(187); + lookahead != '}') ADVANCE(146); END_STATE(); - case 187: + case 146: ACCEPT_TOKEN(sym_language); if (lookahead != 0 && lookahead != '\t' && @@ -4164,110 +3662,123 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ' && lookahead != '=' && lookahead != '{' && - lookahead != '}') ADVANCE(187); + lookahead != '}') ADVANCE(146); END_STATE(); - case 188: + case 147: ACCEPT_TOKEN(sym__whitespace); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(188); + lookahead == ' ') ADVANCE(147); END_STATE(); - case 189: + case 148: ACCEPT_TOKEN(sym__whitespace1); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(189); + lookahead == ' ') ADVANCE(148); END_STATE(); - case 190: + case 149: ACCEPT_TOKEN(sym__newline); END_STATE(); - case 191: + case 150: ACCEPT_TOKEN(aux_sym__text_token1); END_STATE(); - case 192: + case 151: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == '-') ADVANCE(90); + if (lookahead == '-') ADVANCE(69); END_STATE(); - case 193: + case 152: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == '.') ADVANCE(24); + if (lookahead == '.') ADVANCE(15); END_STATE(); - case 194: + case 153: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'I') ADVANCE(35); + if (lookahead == 'I') ADVANCE(26); END_STATE(); - case 195: + case 154: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'I') ADVANCE(33); + if (lookahead == 'I') ADVANCE(24); END_STATE(); - case 196: + case 155: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'N') ADVANCE(29); + if (lookahead == 'N') ADVANCE(20); END_STATE(); - case 197: + case 156: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'O') ADVANCE(34); + if (lookahead == 'O') ADVANCE(25); END_STATE(); - case 198: + case 157: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'O') ADVANCE(26); + if (lookahead == 'O') ADVANCE(17); END_STATE(); - case 199: + case 158: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'X') ADVANCE(36); + if (lookahead == 'X') ADVANCE(27); END_STATE(); - case 200: + case 159: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == '[') ADVANCE(146); + if (lookahead == '[') ADVANCE(107); END_STATE(); - case 201: + case 160: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == '}') ADVANCE(82); + if (lookahead == '}') ADVANCE(63); END_STATE(); - case 202: + case 161: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != ':') ADVANCE(25); - END_STATE(); - case 203: - ACCEPT_TOKEN(anon_sym_DOT); - END_STATE(); - case 204: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(24); + if (lookahead == '"' || + lookahead == '\'') ADVANCE(63); + if (lookahead == '*') ADVANCE(42); + if (lookahead == '+') ADVANCE(56); + if (lookahead == '-') ADVANCE(58); + if (lookahead == '=') ADVANCE(54); + if (lookahead == '^') ADVANCE(46); + if (lookahead == '_') ADVANCE(38); + if (lookahead == '~') ADVANCE(50); END_STATE(); - case 205: - ACCEPT_TOKEN(sym_identifier); + case 162: + ACCEPT_TOKEN(aux_sym__text_token1); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(16); + END_STATE(); + case 163: + ACCEPT_TOKEN(anon_sym_DOT); + END_STATE(); + case 164: + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(15); + END_STATE(); + case 165: + ACCEPT_TOKEN(sym_identifier); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '}') ADVANCE(205); + lookahead != '}') ADVANCE(165); END_STATE(); - case 206: + case 166: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 207: + case 167: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 208: + case 168: ACCEPT_TOKEN(aux_sym_value_token1); - if (lookahead == '\r') ADVANCE(208); + if (lookahead == '\r') ADVANCE(168); if (lookahead != 0 && lookahead != '\n' && - lookahead != '"') ADVANCE(209); + lookahead != '"') ADVANCE(169); END_STATE(); - case 209: + case 169: ACCEPT_TOKEN(aux_sym_value_token1); if (lookahead != 0 && lookahead != '\n' && - lookahead != '"') ADVANCE(209); + lookahead != '"') ADVANCE(169); END_STATE(); - case 210: + case 170: ACCEPT_TOKEN(aux_sym_value_token2); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); default: return false; @@ -4276,1142 +3787,1227 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 39, .external_lex_state = 2}, - [2] = {.lex_state = 1, .external_lex_state = 2}, - [3] = {.lex_state = 44, .external_lex_state = 3}, - [4] = {.lex_state = 44, .external_lex_state = 4}, - [5] = {.lex_state = 44, .external_lex_state = 5}, - [6] = {.lex_state = 44, .external_lex_state = 6}, - [7] = {.lex_state = 44, .external_lex_state = 2}, - [8] = {.lex_state = 44, .external_lex_state = 7}, - [9] = {.lex_state = 44, .external_lex_state = 8}, - [10] = {.lex_state = 44, .external_lex_state = 9}, - [11] = {.lex_state = 6, .external_lex_state = 2}, - [12] = {.lex_state = 44, .external_lex_state = 2}, - [13] = {.lex_state = 41, .external_lex_state = 6}, - [14] = {.lex_state = 41, .external_lex_state = 7}, - [15] = {.lex_state = 44, .external_lex_state = 2}, - [16] = {.lex_state = 41, .external_lex_state = 2}, - [17] = {.lex_state = 41, .external_lex_state = 5}, - [18] = {.lex_state = 41, .external_lex_state = 8}, - [19] = {.lex_state = 41, .external_lex_state = 9}, - [20] = {.lex_state = 44, .external_lex_state = 2}, - [21] = {.lex_state = 41, .external_lex_state = 3}, - [22] = {.lex_state = 41, .external_lex_state = 4}, - [23] = {.lex_state = 41, .external_lex_state = 2}, - [24] = {.lex_state = 39, .external_lex_state = 2}, - [25] = {.lex_state = 39, .external_lex_state = 2}, - [26] = {.lex_state = 39, .external_lex_state = 2}, - [27] = {.lex_state = 39, .external_lex_state = 2}, - [28] = {.lex_state = 39, .external_lex_state = 2}, - [29] = {.lex_state = 39, .external_lex_state = 2}, - [30] = {.lex_state = 39, .external_lex_state = 2}, - [31] = {.lex_state = 39, .external_lex_state = 2}, - [32] = {.lex_state = 39, .external_lex_state = 2}, - [33] = {.lex_state = 39, .external_lex_state = 2}, - [34] = {.lex_state = 39, .external_lex_state = 2}, - [35] = {.lex_state = 39, .external_lex_state = 2}, - [36] = {.lex_state = 39, .external_lex_state = 2}, - [37] = {.lex_state = 39, .external_lex_state = 2}, - [38] = {.lex_state = 39, .external_lex_state = 2}, - [39] = {.lex_state = 39, .external_lex_state = 2}, - [40] = {.lex_state = 5, .external_lex_state = 2}, - [41] = {.lex_state = 39, .external_lex_state = 2}, - [42] = {.lex_state = 39, .external_lex_state = 2}, - [43] = {.lex_state = 39, .external_lex_state = 2}, - [44] = {.lex_state = 39, .external_lex_state = 2}, - [45] = {.lex_state = 39, .external_lex_state = 2}, - [46] = {.lex_state = 39, .external_lex_state = 2}, - [47] = {.lex_state = 39, .external_lex_state = 2}, - [48] = {.lex_state = 39, .external_lex_state = 2}, - [49] = {.lex_state = 39, .external_lex_state = 2}, - [50] = {.lex_state = 39, .external_lex_state = 2}, - [51] = {.lex_state = 39, .external_lex_state = 2}, - [52] = {.lex_state = 39, .external_lex_state = 2}, - [53] = {.lex_state = 39, .external_lex_state = 2}, - [54] = {.lex_state = 39, .external_lex_state = 2}, - [55] = {.lex_state = 39, .external_lex_state = 2}, - [56] = {.lex_state = 39, .external_lex_state = 2}, - [57] = {.lex_state = 39, .external_lex_state = 2}, - [58] = {.lex_state = 39, .external_lex_state = 2}, - [59] = {.lex_state = 39, .external_lex_state = 2}, - [60] = {.lex_state = 39, .external_lex_state = 2}, - [61] = {.lex_state = 39, .external_lex_state = 2}, - [62] = {.lex_state = 39, .external_lex_state = 2}, - [63] = {.lex_state = 39, .external_lex_state = 2}, - [64] = {.lex_state = 39, .external_lex_state = 2}, - [65] = {.lex_state = 39, .external_lex_state = 3}, - [66] = {.lex_state = 5, .external_lex_state = 2}, - [67] = {.lex_state = 39, .external_lex_state = 2}, - [68] = {.lex_state = 39, .external_lex_state = 2}, - [69] = {.lex_state = 39, .external_lex_state = 2}, - [70] = {.lex_state = 39, .external_lex_state = 2}, - [71] = {.lex_state = 39, .external_lex_state = 2}, - [72] = {.lex_state = 39, .external_lex_state = 2}, - [73] = {.lex_state = 39, .external_lex_state = 2}, - [74] = {.lex_state = 39, .external_lex_state = 2}, - [75] = {.lex_state = 39, .external_lex_state = 2}, - [76] = {.lex_state = 39, .external_lex_state = 2}, - [77] = {.lex_state = 39, .external_lex_state = 2}, - [78] = {.lex_state = 2, .external_lex_state = 2}, - [79] = {.lex_state = 39, .external_lex_state = 7}, - [80] = {.lex_state = 39, .external_lex_state = 2}, - [81] = {.lex_state = 39, .external_lex_state = 2}, - [82] = {.lex_state = 39, .external_lex_state = 2}, - [83] = {.lex_state = 39, .external_lex_state = 2}, - [84] = {.lex_state = 39, .external_lex_state = 2}, - [85] = {.lex_state = 39, .external_lex_state = 2}, - [86] = {.lex_state = 39, .external_lex_state = 2}, - [87] = {.lex_state = 39, .external_lex_state = 2}, - [88] = {.lex_state = 39, .external_lex_state = 2}, - [89] = {.lex_state = 39, .external_lex_state = 2}, - [90] = {.lex_state = 39, .external_lex_state = 2}, - [91] = {.lex_state = 39, .external_lex_state = 2}, - [92] = {.lex_state = 39, .external_lex_state = 2}, - [93] = {.lex_state = 39, .external_lex_state = 6}, - [94] = {.lex_state = 39, .external_lex_state = 2}, - [95] = {.lex_state = 39, .external_lex_state = 2}, - [96] = {.lex_state = 39, .external_lex_state = 4}, - [97] = {.lex_state = 39, .external_lex_state = 2}, - [98] = {.lex_state = 39, .external_lex_state = 2}, - [99] = {.lex_state = 39, .external_lex_state = 2}, - [100] = {.lex_state = 39, .external_lex_state = 2}, - [101] = {.lex_state = 39, .external_lex_state = 2}, - [102] = {.lex_state = 39, .external_lex_state = 2}, - [103] = {.lex_state = 39, .external_lex_state = 3}, - [104] = {.lex_state = 39, .external_lex_state = 7}, - [105] = {.lex_state = 39, .external_lex_state = 2}, - [106] = {.lex_state = 2, .external_lex_state = 2}, - [107] = {.lex_state = 39, .external_lex_state = 2}, - [108] = {.lex_state = 39, .external_lex_state = 2}, - [109] = {.lex_state = 39, .external_lex_state = 2}, - [110] = {.lex_state = 39, .external_lex_state = 8}, - [111] = {.lex_state = 39, .external_lex_state = 4}, - [112] = {.lex_state = 39, .external_lex_state = 2}, - [113] = {.lex_state = 39, .external_lex_state = 2}, - [114] = {.lex_state = 39, .external_lex_state = 2}, - [115] = {.lex_state = 39, .external_lex_state = 8}, - [116] = {.lex_state = 39, .external_lex_state = 2}, - [117] = {.lex_state = 39, .external_lex_state = 2}, - [118] = {.lex_state = 39, .external_lex_state = 2}, - [119] = {.lex_state = 39, .external_lex_state = 2}, - [120] = {.lex_state = 39, .external_lex_state = 2}, - [121] = {.lex_state = 39, .external_lex_state = 2}, - [122] = {.lex_state = 39, .external_lex_state = 2}, - [123] = {.lex_state = 39, .external_lex_state = 6}, - [124] = {.lex_state = 39, .external_lex_state = 2}, - [125] = {.lex_state = 39, .external_lex_state = 2}, - [126] = {.lex_state = 39, .external_lex_state = 2}, - [127] = {.lex_state = 39, .external_lex_state = 2}, - [128] = {.lex_state = 39, .external_lex_state = 2}, - [129] = {.lex_state = 39, .external_lex_state = 2}, - [130] = {.lex_state = 39, .external_lex_state = 2}, - [131] = {.lex_state = 41, .external_lex_state = 5}, - [132] = {.lex_state = 41, .external_lex_state = 9}, - [133] = {.lex_state = 46, .external_lex_state = 2}, - [134] = {.lex_state = 41, .external_lex_state = 6}, - [135] = {.lex_state = 42, .external_lex_state = 6}, - [136] = {.lex_state = 46, .external_lex_state = 7}, - [137] = {.lex_state = 46, .external_lex_state = 8}, - [138] = {.lex_state = 42, .external_lex_state = 5}, - [139] = {.lex_state = 44, .external_lex_state = 2}, - [140] = {.lex_state = 9, .external_lex_state = 2}, - [141] = {.lex_state = 41, .external_lex_state = 8}, - [142] = {.lex_state = 42, .external_lex_state = 3}, - [143] = {.lex_state = 46, .external_lex_state = 6}, - [144] = {.lex_state = 42, .external_lex_state = 7}, - [145] = {.lex_state = 12, .external_lex_state = 2}, - [146] = {.lex_state = 6, .external_lex_state = 2}, - [147] = {.lex_state = 4, .external_lex_state = 2}, - [148] = {.lex_state = 42, .external_lex_state = 9}, - [149] = {.lex_state = 41, .external_lex_state = 7}, - [150] = {.lex_state = 42, .external_lex_state = 8}, - [151] = {.lex_state = 7, .external_lex_state = 2}, - [152] = {.lex_state = 46, .external_lex_state = 4}, - [153] = {.lex_state = 46, .external_lex_state = 5}, - [154] = {.lex_state = 42, .external_lex_state = 2}, - [155] = {.lex_state = 41, .external_lex_state = 4}, - [156] = {.lex_state = 42, .external_lex_state = 4}, - [157] = {.lex_state = 46, .external_lex_state = 3}, - [158] = {.lex_state = 46, .external_lex_state = 9}, - [159] = {.lex_state = 41, .external_lex_state = 3}, - [160] = {.lex_state = 41, .external_lex_state = 2}, - [161] = {.lex_state = 41, .external_lex_state = 7}, - [162] = {.lex_state = 41, .external_lex_state = 10}, - [163] = {.lex_state = 41, .external_lex_state = 11}, - [164] = {.lex_state = 46, .external_lex_state = 2}, - [165] = {.lex_state = 41, .external_lex_state = 2}, - [166] = {.lex_state = 41, .external_lex_state = 2}, - [167] = {.lex_state = 6, .external_lex_state = 2}, - [168] = {.lex_state = 42, .external_lex_state = 2}, - [169] = {.lex_state = 47, .external_lex_state = 2}, - [170] = {.lex_state = 13, .external_lex_state = 2}, - [171] = {.lex_state = 6, .external_lex_state = 2}, - [172] = {.lex_state = 6, .external_lex_state = 11}, - [173] = {.lex_state = 6, .external_lex_state = 11}, - [174] = {.lex_state = 41, .external_lex_state = 3}, - [175] = {.lex_state = 41, .external_lex_state = 12}, - [176] = {.lex_state = 41, .external_lex_state = 12}, - [177] = {.lex_state = 41, .external_lex_state = 9}, - [178] = {.lex_state = 47, .external_lex_state = 9}, - [179] = {.lex_state = 47, .external_lex_state = 3}, - [180] = {.lex_state = 41, .external_lex_state = 3}, - [181] = {.lex_state = 41, .external_lex_state = 13}, - [182] = {.lex_state = 41, .external_lex_state = 13}, - [183] = {.lex_state = 41, .external_lex_state = 4}, - [184] = {.lex_state = 41, .external_lex_state = 11}, - [185] = {.lex_state = 47, .external_lex_state = 4}, - [186] = {.lex_state = 41, .external_lex_state = 4}, - [187] = {.lex_state = 44, .external_lex_state = 2}, - [188] = {.lex_state = 41, .external_lex_state = 14}, - [189] = {.lex_state = 41, .external_lex_state = 14}, - [190] = {.lex_state = 41, .external_lex_state = 8}, - [191] = {.lex_state = 47, .external_lex_state = 8}, - [192] = {.lex_state = 41, .external_lex_state = 8}, - [193] = {.lex_state = 41, .external_lex_state = 15}, - [194] = {.lex_state = 41, .external_lex_state = 15}, - [195] = {.lex_state = 41, .external_lex_state = 6}, - [196] = {.lex_state = 47, .external_lex_state = 6}, - [197] = {.lex_state = 41, .external_lex_state = 6}, - [198] = {.lex_state = 41, .external_lex_state = 9}, - [199] = {.lex_state = 41, .external_lex_state = 16}, - [200] = {.lex_state = 41, .external_lex_state = 16}, - [201] = {.lex_state = 41, .external_lex_state = 7}, - [202] = {.lex_state = 47, .external_lex_state = 7}, - [203] = {.lex_state = 41, .external_lex_state = 2}, - [204] = {.lex_state = 15, .external_lex_state = 2}, - [205] = {.lex_state = 41, .external_lex_state = 5}, - [206] = {.lex_state = 41, .external_lex_state = 17}, - [207] = {.lex_state = 41, .external_lex_state = 17}, - [208] = {.lex_state = 41, .external_lex_state = 5}, - [209] = {.lex_state = 47, .external_lex_state = 5}, - [210] = {.lex_state = 44, .external_lex_state = 11}, - [211] = {.lex_state = 44, .external_lex_state = 2}, - [212] = {.lex_state = 44, .external_lex_state = 11}, - [213] = {.lex_state = 41, .external_lex_state = 10}, - [214] = {.lex_state = 41, .external_lex_state = 6}, - [215] = {.lex_state = 41, .external_lex_state = 8}, - [216] = {.lex_state = 41, .external_lex_state = 2}, - [217] = {.lex_state = 41, .external_lex_state = 9}, - [218] = {.lex_state = 41, .external_lex_state = 9}, - [219] = {.lex_state = 41, .external_lex_state = 9}, - [220] = {.lex_state = 41, .external_lex_state = 2}, - [221] = {.lex_state = 41, .external_lex_state = 9}, - [222] = {.lex_state = 41, .external_lex_state = 9}, - [223] = {.lex_state = 41, .external_lex_state = 9}, - [224] = {.lex_state = 41, .external_lex_state = 9}, - [225] = {.lex_state = 41, .external_lex_state = 9}, - [226] = {.lex_state = 41, .external_lex_state = 9}, - [227] = {.lex_state = 41, .external_lex_state = 9}, - [228] = {.lex_state = 41, .external_lex_state = 9}, - [229] = {.lex_state = 41, .external_lex_state = 9}, - [230] = {.lex_state = 41, .external_lex_state = 9}, - [231] = {.lex_state = 41, .external_lex_state = 9}, - [232] = {.lex_state = 41, .external_lex_state = 9}, - [233] = {.lex_state = 41, .external_lex_state = 9}, - [234] = {.lex_state = 44, .external_lex_state = 2}, - [235] = {.lex_state = 44, .external_lex_state = 2}, - [236] = {.lex_state = 44, .external_lex_state = 2}, - [237] = {.lex_state = 41, .external_lex_state = 5}, - [238] = {.lex_state = 41, .external_lex_state = 5}, - [239] = {.lex_state = 41, .external_lex_state = 5}, - [240] = {.lex_state = 39, .external_lex_state = 7}, - [241] = {.lex_state = 44, .external_lex_state = 2}, - [242] = {.lex_state = 44, .external_lex_state = 2}, - [243] = {.lex_state = 41, .external_lex_state = 5}, - [244] = {.lex_state = 41, .external_lex_state = 5}, - [245] = {.lex_state = 6, .external_lex_state = 2}, - [246] = {.lex_state = 41, .external_lex_state = 5}, - [247] = {.lex_state = 41, .external_lex_state = 5}, - [248] = {.lex_state = 41, .external_lex_state = 5}, - [249] = {.lex_state = 41, .external_lex_state = 5}, - [250] = {.lex_state = 41, .external_lex_state = 5}, - [251] = {.lex_state = 41, .external_lex_state = 5}, - [252] = {.lex_state = 41, .external_lex_state = 5}, - [253] = {.lex_state = 44, .external_lex_state = 2}, - [254] = {.lex_state = 44, .external_lex_state = 2}, - [255] = {.lex_state = 41, .external_lex_state = 5}, - [256] = {.lex_state = 41, .external_lex_state = 3}, - [257] = {.lex_state = 41, .external_lex_state = 5}, - [258] = {.lex_state = 41, .external_lex_state = 5}, - [259] = {.lex_state = 41, .external_lex_state = 5}, - [260] = {.lex_state = 41, .external_lex_state = 3}, - [261] = {.lex_state = 41, .external_lex_state = 5}, - [262] = {.lex_state = 41, .external_lex_state = 5}, - [263] = {.lex_state = 41, .external_lex_state = 5}, - [264] = {.lex_state = 41, .external_lex_state = 5}, - [265] = {.lex_state = 41, .external_lex_state = 5}, - [266] = {.lex_state = 41, .external_lex_state = 5}, - [267] = {.lex_state = 41, .external_lex_state = 5}, - [268] = {.lex_state = 41, .external_lex_state = 5}, - [269] = {.lex_state = 41, .external_lex_state = 5}, - [270] = {.lex_state = 41, .external_lex_state = 5}, - [271] = {.lex_state = 41, .external_lex_state = 5}, - [272] = {.lex_state = 41, .external_lex_state = 5}, - [273] = {.lex_state = 41, .external_lex_state = 5}, - [274] = {.lex_state = 2, .external_lex_state = 2}, - [275] = {.lex_state = 44, .external_lex_state = 2}, - [276] = {.lex_state = 44, .external_lex_state = 2}, - [277] = {.lex_state = 41, .external_lex_state = 7}, - [278] = {.lex_state = 41, .external_lex_state = 7}, - [279] = {.lex_state = 41, .external_lex_state = 7}, - [280] = {.lex_state = 39, .external_lex_state = 6}, - [281] = {.lex_state = 41, .external_lex_state = 7}, - [282] = {.lex_state = 41, .external_lex_state = 7}, - [283] = {.lex_state = 41, .external_lex_state = 4}, - [284] = {.lex_state = 41, .external_lex_state = 7}, - [285] = {.lex_state = 41, .external_lex_state = 7}, - [286] = {.lex_state = 41, .external_lex_state = 7}, - [287] = {.lex_state = 41, .external_lex_state = 7}, - [288] = {.lex_state = 41, .external_lex_state = 7}, - [289] = {.lex_state = 41, .external_lex_state = 7}, - [290] = {.lex_state = 41, .external_lex_state = 7}, - [291] = {.lex_state = 41, .external_lex_state = 7}, - [292] = {.lex_state = 41, .external_lex_state = 4}, - [293] = {.lex_state = 41, .external_lex_state = 7}, - [294] = {.lex_state = 41, .external_lex_state = 7}, - [295] = {.lex_state = 41, .external_lex_state = 7}, - [296] = {.lex_state = 41, .external_lex_state = 8}, - [297] = {.lex_state = 41, .external_lex_state = 7}, - [298] = {.lex_state = 41, .external_lex_state = 7}, - [299] = {.lex_state = 41, .external_lex_state = 7}, - [300] = {.lex_state = 41, .external_lex_state = 7}, - [301] = {.lex_state = 41, .external_lex_state = 7}, - [302] = {.lex_state = 41, .external_lex_state = 7}, - [303] = {.lex_state = 41, .external_lex_state = 7}, - [304] = {.lex_state = 41, .external_lex_state = 7}, - [305] = {.lex_state = 41, .external_lex_state = 7}, - [306] = {.lex_state = 41, .external_lex_state = 7}, - [307] = {.lex_state = 41, .external_lex_state = 7}, - [308] = {.lex_state = 41, .external_lex_state = 7}, - [309] = {.lex_state = 41, .external_lex_state = 7}, - [310] = {.lex_state = 44, .external_lex_state = 2}, - [311] = {.lex_state = 44, .external_lex_state = 2}, - [312] = {.lex_state = 44, .external_lex_state = 2}, - [313] = {.lex_state = 41, .external_lex_state = 9}, - [314] = {.lex_state = 41, .external_lex_state = 2}, - [315] = {.lex_state = 41, .external_lex_state = 2}, - [316] = {.lex_state = 41, .external_lex_state = 2}, - [317] = {.lex_state = 41, .external_lex_state = 6}, - [318] = {.lex_state = 41, .external_lex_state = 6}, - [319] = {.lex_state = 41, .external_lex_state = 6}, - [320] = {.lex_state = 39, .external_lex_state = 8}, - [321] = {.lex_state = 41, .external_lex_state = 2}, - [322] = {.lex_state = 41, .external_lex_state = 2}, - [323] = {.lex_state = 41, .external_lex_state = 6}, - [324] = {.lex_state = 41, .external_lex_state = 6}, - [325] = {.lex_state = 41, .external_lex_state = 8}, - [326] = {.lex_state = 41, .external_lex_state = 6}, - [327] = {.lex_state = 41, .external_lex_state = 6}, - [328] = {.lex_state = 41, .external_lex_state = 6}, - [329] = {.lex_state = 41, .external_lex_state = 6}, - [330] = {.lex_state = 41, .external_lex_state = 6}, - [331] = {.lex_state = 41, .external_lex_state = 6}, - [332] = {.lex_state = 41, .external_lex_state = 6}, - [333] = {.lex_state = 41, .external_lex_state = 9}, - [334] = {.lex_state = 41, .external_lex_state = 2}, - [335] = {.lex_state = 41, .external_lex_state = 2}, - [336] = {.lex_state = 41, .external_lex_state = 6}, - [337] = {.lex_state = 41, .external_lex_state = 6}, - [338] = {.lex_state = 41, .external_lex_state = 6}, - [339] = {.lex_state = 41, .external_lex_state = 6}, - [340] = {.lex_state = 41, .external_lex_state = 6}, - [341] = {.lex_state = 41, .external_lex_state = 6}, - [342] = {.lex_state = 41, .external_lex_state = 6}, - [343] = {.lex_state = 41, .external_lex_state = 6}, - [344] = {.lex_state = 41, .external_lex_state = 6}, - [345] = {.lex_state = 41, .external_lex_state = 6}, - [346] = {.lex_state = 41, .external_lex_state = 6}, - [347] = {.lex_state = 41, .external_lex_state = 6}, - [348] = {.lex_state = 44, .external_lex_state = 2}, - [349] = {.lex_state = 41, .external_lex_state = 6}, - [350] = {.lex_state = 41, .external_lex_state = 6}, - [351] = {.lex_state = 41, .external_lex_state = 6}, - [352] = {.lex_state = 41, .external_lex_state = 6}, - [353] = {.lex_state = 41, .external_lex_state = 6}, - [354] = {.lex_state = 41, .external_lex_state = 6}, - [355] = {.lex_state = 41, .external_lex_state = 9}, - [356] = {.lex_state = 41, .external_lex_state = 9}, - [357] = {.lex_state = 41, .external_lex_state = 9}, - [358] = {.lex_state = 41, .external_lex_state = 9}, - [359] = {.lex_state = 41, .external_lex_state = 2}, - [360] = {.lex_state = 41, .external_lex_state = 2}, - [361] = {.lex_state = 41, .external_lex_state = 2}, - [362] = {.lex_state = 41, .external_lex_state = 8}, - [363] = {.lex_state = 41, .external_lex_state = 8}, - [364] = {.lex_state = 41, .external_lex_state = 8}, - [365] = {.lex_state = 39, .external_lex_state = 4}, - [366] = {.lex_state = 41, .external_lex_state = 2}, - [367] = {.lex_state = 41, .external_lex_state = 2}, - [368] = {.lex_state = 41, .external_lex_state = 8}, - [369] = {.lex_state = 41, .external_lex_state = 8}, - [370] = {.lex_state = 41, .external_lex_state = 7}, - [371] = {.lex_state = 41, .external_lex_state = 8}, - [372] = {.lex_state = 41, .external_lex_state = 8}, - [373] = {.lex_state = 41, .external_lex_state = 8}, - [374] = {.lex_state = 41, .external_lex_state = 8}, - [375] = {.lex_state = 41, .external_lex_state = 9}, - [376] = {.lex_state = 41, .external_lex_state = 8}, - [377] = {.lex_state = 41, .external_lex_state = 8}, - [378] = {.lex_state = 41, .external_lex_state = 9}, - [379] = {.lex_state = 41, .external_lex_state = 2}, - [380] = {.lex_state = 41, .external_lex_state = 2}, - [381] = {.lex_state = 41, .external_lex_state = 8}, - [382] = {.lex_state = 41, .external_lex_state = 7}, - [383] = {.lex_state = 41, .external_lex_state = 8}, - [384] = {.lex_state = 41, .external_lex_state = 8}, - [385] = {.lex_state = 41, .external_lex_state = 8}, - [386] = {.lex_state = 41, .external_lex_state = 5}, - [387] = {.lex_state = 41, .external_lex_state = 8}, - [388] = {.lex_state = 41, .external_lex_state = 8}, - [389] = {.lex_state = 41, .external_lex_state = 8}, - [390] = {.lex_state = 41, .external_lex_state = 8}, - [391] = {.lex_state = 41, .external_lex_state = 8}, - [392] = {.lex_state = 41, .external_lex_state = 8}, - [393] = {.lex_state = 41, .external_lex_state = 8}, - [394] = {.lex_state = 41, .external_lex_state = 8}, - [395] = {.lex_state = 41, .external_lex_state = 8}, - [396] = {.lex_state = 41, .external_lex_state = 8}, - [397] = {.lex_state = 41, .external_lex_state = 8}, - [398] = {.lex_state = 41, .external_lex_state = 8}, - [399] = {.lex_state = 41, .external_lex_state = 8}, - [400] = {.lex_state = 6, .external_lex_state = 2}, - [401] = {.lex_state = 41, .external_lex_state = 9}, - [402] = {.lex_state = 41, .external_lex_state = 9}, - [403] = {.lex_state = 44, .external_lex_state = 2}, - [404] = {.lex_state = 41, .external_lex_state = 2}, - [405] = {.lex_state = 41, .external_lex_state = 2}, - [406] = {.lex_state = 41, .external_lex_state = 2}, - [407] = {.lex_state = 41, .external_lex_state = 4}, - [408] = {.lex_state = 41, .external_lex_state = 4}, - [409] = {.lex_state = 41, .external_lex_state = 4}, - [410] = {.lex_state = 39, .external_lex_state = 3}, - [411] = {.lex_state = 44, .external_lex_state = 2}, - [412] = {.lex_state = 41, .external_lex_state = 2}, - [413] = {.lex_state = 41, .external_lex_state = 4}, - [414] = {.lex_state = 41, .external_lex_state = 4}, - [415] = {.lex_state = 41, .external_lex_state = 5}, - [416] = {.lex_state = 41, .external_lex_state = 4}, - [417] = {.lex_state = 41, .external_lex_state = 4}, - [418] = {.lex_state = 41, .external_lex_state = 4}, - [419] = {.lex_state = 41, .external_lex_state = 4}, - [420] = {.lex_state = 41, .external_lex_state = 4}, - [421] = {.lex_state = 41, .external_lex_state = 4}, - [422] = {.lex_state = 41, .external_lex_state = 4}, - [423] = {.lex_state = 41, .external_lex_state = 9}, - [424] = {.lex_state = 41, .external_lex_state = 2}, - [425] = {.lex_state = 41, .external_lex_state = 2}, - [426] = {.lex_state = 41, .external_lex_state = 4}, - [427] = {.lex_state = 41, .external_lex_state = 9}, - [428] = {.lex_state = 41, .external_lex_state = 4}, - [429] = {.lex_state = 41, .external_lex_state = 4}, - [430] = {.lex_state = 41, .external_lex_state = 4}, - [431] = {.lex_state = 41, .external_lex_state = 9}, - [432] = {.lex_state = 41, .external_lex_state = 4}, - [433] = {.lex_state = 41, .external_lex_state = 4}, - [434] = {.lex_state = 41, .external_lex_state = 4}, - [435] = {.lex_state = 41, .external_lex_state = 4}, - [436] = {.lex_state = 41, .external_lex_state = 4}, - [437] = {.lex_state = 41, .external_lex_state = 4}, - [438] = {.lex_state = 41, .external_lex_state = 4}, - [439] = {.lex_state = 41, .external_lex_state = 4}, - [440] = {.lex_state = 41, .external_lex_state = 4}, - [441] = {.lex_state = 41, .external_lex_state = 4}, - [442] = {.lex_state = 41, .external_lex_state = 4}, - [443] = {.lex_state = 41, .external_lex_state = 4}, - [444] = {.lex_state = 41, .external_lex_state = 4}, - [445] = {.lex_state = 41, .external_lex_state = 9}, - [446] = {.lex_state = 41, .external_lex_state = 9}, - [447] = {.lex_state = 44, .external_lex_state = 2}, - [448] = {.lex_state = 44, .external_lex_state = 2}, - [449] = {.lex_state = 41, .external_lex_state = 2}, - [450] = {.lex_state = 41, .external_lex_state = 2}, - [451] = {.lex_state = 41, .external_lex_state = 2}, - [452] = {.lex_state = 41, .external_lex_state = 3}, - [453] = {.lex_state = 41, .external_lex_state = 3}, - [454] = {.lex_state = 41, .external_lex_state = 3}, - [455] = {.lex_state = 5, .external_lex_state = 2}, - [456] = {.lex_state = 41, .external_lex_state = 2}, - [457] = {.lex_state = 41, .external_lex_state = 3}, - [458] = {.lex_state = 41, .external_lex_state = 3}, - [459] = {.lex_state = 44, .external_lex_state = 2}, - [460] = {.lex_state = 41, .external_lex_state = 3}, - [461] = {.lex_state = 41, .external_lex_state = 3}, - [462] = {.lex_state = 41, .external_lex_state = 3}, - [463] = {.lex_state = 41, .external_lex_state = 3}, - [464] = {.lex_state = 41, .external_lex_state = 3}, - [465] = {.lex_state = 41, .external_lex_state = 3}, - [466] = {.lex_state = 41, .external_lex_state = 3}, - [467] = {.lex_state = 44, .external_lex_state = 2}, - [468] = {.lex_state = 41, .external_lex_state = 2}, - [469] = {.lex_state = 41, .external_lex_state = 2}, - [470] = {.lex_state = 41, .external_lex_state = 3}, - [471] = {.lex_state = 44, .external_lex_state = 2}, - [472] = {.lex_state = 41, .external_lex_state = 3}, - [473] = {.lex_state = 41, .external_lex_state = 3}, - [474] = {.lex_state = 41, .external_lex_state = 3}, - [475] = {.lex_state = 39, .external_lex_state = 2}, - [476] = {.lex_state = 41, .external_lex_state = 3}, - [477] = {.lex_state = 41, .external_lex_state = 3}, - [478] = {.lex_state = 41, .external_lex_state = 3}, - [479] = {.lex_state = 41, .external_lex_state = 3}, - [480] = {.lex_state = 41, .external_lex_state = 3}, - [481] = {.lex_state = 41, .external_lex_state = 3}, - [482] = {.lex_state = 41, .external_lex_state = 3}, - [483] = {.lex_state = 41, .external_lex_state = 3}, - [484] = {.lex_state = 41, .external_lex_state = 3}, - [485] = {.lex_state = 41, .external_lex_state = 3}, - [486] = {.lex_state = 41, .external_lex_state = 3}, - [487] = {.lex_state = 41, .external_lex_state = 3}, - [488] = {.lex_state = 41, .external_lex_state = 3}, - [489] = {.lex_state = 44, .external_lex_state = 2}, - [490] = {.lex_state = 44, .external_lex_state = 2}, - [491] = {.lex_state = 44, .external_lex_state = 2}, - [492] = {.lex_state = 44, .external_lex_state = 2}, - [493] = {.lex_state = 41, .external_lex_state = 2}, - [494] = {.lex_state = 41, .external_lex_state = 2}, - [495] = {.lex_state = 41, .external_lex_state = 2}, - [496] = {.lex_state = 6, .external_lex_state = 2}, - [497] = {.lex_state = 6, .external_lex_state = 2}, - [498] = {.lex_state = 6, .external_lex_state = 2}, - [499] = {.lex_state = 44, .external_lex_state = 2}, - [500] = {.lex_state = 6, .external_lex_state = 2}, - [501] = {.lex_state = 6, .external_lex_state = 2}, - [502] = {.lex_state = 44, .external_lex_state = 2}, - [503] = {.lex_state = 6, .external_lex_state = 2}, - [504] = {.lex_state = 6, .external_lex_state = 2}, - [505] = {.lex_state = 6, .external_lex_state = 2}, - [506] = {.lex_state = 6, .external_lex_state = 2}, - [507] = {.lex_state = 6, .external_lex_state = 2}, - [508] = {.lex_state = 6, .external_lex_state = 2}, - [509] = {.lex_state = 6, .external_lex_state = 2}, - [510] = {.lex_state = 44, .external_lex_state = 2}, - [511] = {.lex_state = 44, .external_lex_state = 2}, - [512] = {.lex_state = 6, .external_lex_state = 2}, - [513] = {.lex_state = 41, .external_lex_state = 2}, - [514] = {.lex_state = 6, .external_lex_state = 2}, - [515] = {.lex_state = 6, .external_lex_state = 2}, - [516] = {.lex_state = 6, .external_lex_state = 2}, - [517] = {.lex_state = 44, .external_lex_state = 2}, - [518] = {.lex_state = 6, .external_lex_state = 2}, - [519] = {.lex_state = 6, .external_lex_state = 2}, - [520] = {.lex_state = 6, .external_lex_state = 2}, - [521] = {.lex_state = 6, .external_lex_state = 2}, - [522] = {.lex_state = 6, .external_lex_state = 2}, - [523] = {.lex_state = 6, .external_lex_state = 2}, - [524] = {.lex_state = 6, .external_lex_state = 2}, - [525] = {.lex_state = 6, .external_lex_state = 2}, - [526] = {.lex_state = 6, .external_lex_state = 2}, - [527] = {.lex_state = 6, .external_lex_state = 2}, - [528] = {.lex_state = 6, .external_lex_state = 2}, - [529] = {.lex_state = 6, .external_lex_state = 2}, - [530] = {.lex_state = 6, .external_lex_state = 2}, - [531] = {.lex_state = 41, .external_lex_state = 11}, - [532] = {.lex_state = 41, .external_lex_state = 11}, - [533] = {.lex_state = 41, .external_lex_state = 2}, - [534] = {.lex_state = 47, .external_lex_state = 2}, - [535] = {.lex_state = 44, .external_lex_state = 2}, - [536] = {.lex_state = 44, .external_lex_state = 2}, - [537] = {.lex_state = 41, .external_lex_state = 2}, - [538] = {.lex_state = 41, .external_lex_state = 2}, - [539] = {.lex_state = 41, .external_lex_state = 2}, - [540] = {.lex_state = 41, .external_lex_state = 2}, - [541] = {.lex_state = 39, .external_lex_state = 3}, - [542] = {.lex_state = 41, .external_lex_state = 2}, - [543] = {.lex_state = 41, .external_lex_state = 2}, - [544] = {.lex_state = 41, .external_lex_state = 2}, - [545] = {.lex_state = 41, .external_lex_state = 2}, - [546] = {.lex_state = 41, .external_lex_state = 2}, - [547] = {.lex_state = 41, .external_lex_state = 2}, - [548] = {.lex_state = 41, .external_lex_state = 2}, - [549] = {.lex_state = 39, .external_lex_state = 2}, - [550] = {.lex_state = 41, .external_lex_state = 2}, - [551] = {.lex_state = 41, .external_lex_state = 2}, - [552] = {.lex_state = 39, .external_lex_state = 6}, - [553] = {.lex_state = 39, .external_lex_state = 3}, - [554] = {.lex_state = 41, .external_lex_state = 2}, - [555] = {.lex_state = 5, .external_lex_state = 2}, - [556] = {.lex_state = 41, .external_lex_state = 2}, - [557] = {.lex_state = 41, .external_lex_state = 2}, - [558] = {.lex_state = 41, .external_lex_state = 2}, - [559] = {.lex_state = 5, .external_lex_state = 2}, - [560] = {.lex_state = 41, .external_lex_state = 2}, - [561] = {.lex_state = 41, .external_lex_state = 2}, - [562] = {.lex_state = 41, .external_lex_state = 2}, - [563] = {.lex_state = 41, .external_lex_state = 2}, - [564] = {.lex_state = 5, .external_lex_state = 2}, - [565] = {.lex_state = 41, .external_lex_state = 2}, - [566] = {.lex_state = 41, .external_lex_state = 2}, - [567] = {.lex_state = 41, .external_lex_state = 2}, - [568] = {.lex_state = 41, .external_lex_state = 2}, - [569] = {.lex_state = 41, .external_lex_state = 2}, - [570] = {.lex_state = 41, .external_lex_state = 2}, - [571] = {.lex_state = 41, .external_lex_state = 2}, - [572] = {.lex_state = 39, .external_lex_state = 5}, - [573] = {.lex_state = 39, .external_lex_state = 4}, - [574] = {.lex_state = 39, .external_lex_state = 4}, - [575] = {.lex_state = 39, .external_lex_state = 3}, - [576] = {.lex_state = 39, .external_lex_state = 8}, - [577] = {.lex_state = 39, .external_lex_state = 9}, - [578] = {.lex_state = 2, .external_lex_state = 2}, - [579] = {.lex_state = 39, .external_lex_state = 8}, - [580] = {.lex_state = 39, .external_lex_state = 4}, - [581] = {.lex_state = 39, .external_lex_state = 7}, - [582] = {.lex_state = 39, .external_lex_state = 6}, - [583] = {.lex_state = 39, .external_lex_state = 8}, - [584] = {.lex_state = 39, .external_lex_state = 7}, - [585] = {.lex_state = 39, .external_lex_state = 7}, - [586] = {.lex_state = 39, .external_lex_state = 6}, - [587] = {.lex_state = 39, .external_lex_state = 5}, - [588] = {.lex_state = 39, .external_lex_state = 5}, - [589] = {.lex_state = 39, .external_lex_state = 2}, - [590] = {.lex_state = 39, .external_lex_state = 9}, - [591] = {.lex_state = 39, .external_lex_state = 9}, - [592] = {.lex_state = 39, .external_lex_state = 5}, - [593] = {.lex_state = 41, .external_lex_state = 2}, - [594] = {.lex_state = 41, .external_lex_state = 2}, - [595] = {.lex_state = 41, .external_lex_state = 2}, - [596] = {.lex_state = 2, .external_lex_state = 2}, - [597] = {.lex_state = 39, .external_lex_state = 5}, - [598] = {.lex_state = 2, .external_lex_state = 2}, - [599] = {.lex_state = 39, .external_lex_state = 2}, - [600] = {.lex_state = 39, .external_lex_state = 2}, - [601] = {.lex_state = 39, .external_lex_state = 9}, - [602] = {.lex_state = 39, .external_lex_state = 2}, - [603] = {.lex_state = 39, .external_lex_state = 9}, - [604] = {.lex_state = 39, .external_lex_state = 2}, - [605] = {.lex_state = 39, .external_lex_state = 2}, - [606] = {.lex_state = 39, .external_lex_state = 2}, - [607] = {.lex_state = 39, .external_lex_state = 2}, - [608] = {.lex_state = 17}, - [609] = {.lex_state = 17}, - [610] = {.lex_state = 17}, - [611] = {.lex_state = 17}, - [612] = {.lex_state = 17}, - [613] = {.lex_state = 17}, - [614] = {.lex_state = 17}, - [615] = {.lex_state = 17}, - [616] = {.lex_state = 17}, - [617] = {.lex_state = 17}, - [618] = {.lex_state = 17}, - [619] = {.lex_state = 17}, - [620] = {.lex_state = 17}, - [621] = {.lex_state = 17}, - [622] = {.lex_state = 17}, - [623] = {.lex_state = 17}, - [624] = {.lex_state = 17}, - [625] = {.lex_state = 17}, - [626] = {.lex_state = 17}, - [627] = {.lex_state = 17}, - [628] = {.lex_state = 17}, - [629] = {.lex_state = 17}, - [630] = {.lex_state = 17}, - [631] = {.lex_state = 17}, - [632] = {.lex_state = 17}, - [633] = {.lex_state = 17}, - [634] = {.lex_state = 17}, - [635] = {.lex_state = 17}, - [636] = {.lex_state = 17}, - [637] = {.lex_state = 17}, - [638] = {.lex_state = 17}, - [639] = {.lex_state = 17}, - [640] = {.lex_state = 17}, - [641] = {.lex_state = 17}, - [642] = {.lex_state = 17}, - [643] = {.lex_state = 17}, - [644] = {.lex_state = 17}, - [645] = {.lex_state = 17}, - [646] = {.lex_state = 17}, - [647] = {.lex_state = 17}, - [648] = {.lex_state = 17}, - [649] = {.lex_state = 17}, - [650] = {.lex_state = 17}, - [651] = {.lex_state = 17}, - [652] = {.lex_state = 17}, - [653] = {.lex_state = 17}, - [654] = {.lex_state = 17}, - [655] = {.lex_state = 17}, - [656] = {.lex_state = 17}, - [657] = {.lex_state = 17}, - [658] = {.lex_state = 17}, - [659] = {.lex_state = 17}, - [660] = {.lex_state = 17}, - [661] = {.lex_state = 17}, - [662] = {.lex_state = 19}, - [663] = {.lex_state = 17}, - [664] = {.lex_state = 17}, - [665] = {.lex_state = 17}, - [666] = {.lex_state = 17}, - [667] = {.lex_state = 17}, - [668] = {.lex_state = 17}, - [669] = {.lex_state = 17}, - [670] = {.lex_state = 17}, - [671] = {.lex_state = 17}, - [672] = {.lex_state = 17}, - [673] = {.lex_state = 17}, - [674] = {.lex_state = 17}, - [675] = {.lex_state = 17}, - [676] = {.lex_state = 17}, - [677] = {.lex_state = 17}, - [678] = {.lex_state = 17}, - [679] = {.lex_state = 17}, - [680] = {.lex_state = 17}, - [681] = {.lex_state = 17}, - [682] = {.lex_state = 17}, - [683] = {.lex_state = 17}, - [684] = {.lex_state = 17}, - [685] = {.lex_state = 17}, - [686] = {.lex_state = 17}, - [687] = {.lex_state = 17}, - [688] = {.lex_state = 19}, - [689] = {.lex_state = 19}, - [690] = {.lex_state = 17}, - [691] = {.lex_state = 17}, - [692] = {.lex_state = 17}, - [693] = {.lex_state = 17}, - [694] = {.lex_state = 17}, - [695] = {.lex_state = 17}, - [696] = {.lex_state = 17}, - [697] = {.lex_state = 17}, - [698] = {.lex_state = 19}, - [699] = {.lex_state = 17}, - [700] = {.lex_state = 20}, - [701] = {.lex_state = 17}, - [702] = {.lex_state = 17}, - [703] = {.lex_state = 0, .external_lex_state = 18}, - [704] = {.lex_state = 0, .external_lex_state = 19}, - [705] = {.lex_state = 0, .external_lex_state = 20}, - [706] = {.lex_state = 0, .external_lex_state = 21}, - [707] = {.lex_state = 0, .external_lex_state = 22}, - [708] = {.lex_state = 0, .external_lex_state = 23}, - [709] = {.lex_state = 0, .external_lex_state = 24}, - [710] = {.lex_state = 0, .external_lex_state = 24}, - [711] = {.lex_state = 0, .external_lex_state = 18}, - [712] = {.lex_state = 0, .external_lex_state = 20}, - [713] = {.lex_state = 0, .external_lex_state = 19}, - [714] = {.lex_state = 17}, - [715] = {.lex_state = 0, .external_lex_state = 22}, - [716] = {.lex_state = 0, .external_lex_state = 24}, - [717] = {.lex_state = 17}, - [718] = {.lex_state = 0, .external_lex_state = 23}, - [719] = {.lex_state = 0, .external_lex_state = 22}, - [720] = {.lex_state = 0, .external_lex_state = 21}, - [721] = {.lex_state = 0, .external_lex_state = 20}, - [722] = {.lex_state = 0, .external_lex_state = 19}, - [723] = {.lex_state = 0, .external_lex_state = 24}, - [724] = {.lex_state = 0, .external_lex_state = 18}, - [725] = {.lex_state = 0, .external_lex_state = 19}, - [726] = {.lex_state = 0, .external_lex_state = 20}, - [727] = {.lex_state = 0, .external_lex_state = 21}, - [728] = {.lex_state = 0, .external_lex_state = 22}, - [729] = {.lex_state = 0, .external_lex_state = 23}, - [730] = {.lex_state = 0, .external_lex_state = 18}, - [731] = {.lex_state = 0, .external_lex_state = 24}, - [732] = {.lex_state = 0, .external_lex_state = 24}, - [733] = {.lex_state = 0, .external_lex_state = 18}, - [734] = {.lex_state = 17}, - [735] = {.lex_state = 0, .external_lex_state = 18}, - [736] = {.lex_state = 0, .external_lex_state = 24}, - [737] = {.lex_state = 0, .external_lex_state = 18}, - [738] = {.lex_state = 17}, - [739] = {.lex_state = 0, .external_lex_state = 23}, - [740] = {.lex_state = 0, .external_lex_state = 22}, - [741] = {.lex_state = 0, .external_lex_state = 21}, - [742] = {.lex_state = 17}, - [743] = {.lex_state = 0, .external_lex_state = 24}, - [744] = {.lex_state = 0, .external_lex_state = 20}, - [745] = {.lex_state = 0, .external_lex_state = 19}, - [746] = {.lex_state = 0, .external_lex_state = 18}, - [747] = {.lex_state = 0, .external_lex_state = 24}, - [748] = {.lex_state = 0, .external_lex_state = 24}, - [749] = {.lex_state = 0, .external_lex_state = 18}, - [750] = {.lex_state = 0, .external_lex_state = 19}, - [751] = {.lex_state = 0, .external_lex_state = 20}, - [752] = {.lex_state = 0, .external_lex_state = 21}, - [753] = {.lex_state = 0, .external_lex_state = 22}, - [754] = {.lex_state = 0, .external_lex_state = 23}, - [755] = {.lex_state = 17}, - [756] = {.lex_state = 17}, - [757] = {.lex_state = 0, .external_lex_state = 18}, - [758] = {.lex_state = 0, .external_lex_state = 24}, - [759] = {.lex_state = 0, .external_lex_state = 24}, - [760] = {.lex_state = 0, .external_lex_state = 18}, - [761] = {.lex_state = 0, .external_lex_state = 18}, - [762] = {.lex_state = 0, .external_lex_state = 23}, - [763] = {.lex_state = 0, .external_lex_state = 22}, - [764] = {.lex_state = 0, .external_lex_state = 24}, - [765] = {.lex_state = 0, .external_lex_state = 23}, - [766] = {.lex_state = 0, .external_lex_state = 21}, - [767] = {.lex_state = 0, .external_lex_state = 20}, - [768] = {.lex_state = 0, .external_lex_state = 19}, - [769] = {.lex_state = 0, .external_lex_state = 18}, - [770] = {.lex_state = 0, .external_lex_state = 24}, - [771] = {.lex_state = 0, .external_lex_state = 22}, - [772] = {.lex_state = 0, .external_lex_state = 18}, - [773] = {.lex_state = 0, .external_lex_state = 21}, - [774] = {.lex_state = 0, .external_lex_state = 18}, - [775] = {.lex_state = 0, .external_lex_state = 24}, - [776] = {.lex_state = 0, .external_lex_state = 20}, - [777] = {.lex_state = 0, .external_lex_state = 19}, - [778] = {.lex_state = 0, .external_lex_state = 24}, - [779] = {.lex_state = 0, .external_lex_state = 18}, - [780] = {.lex_state = 0, .external_lex_state = 19}, - [781] = {.lex_state = 0, .external_lex_state = 20}, - [782] = {.lex_state = 0, .external_lex_state = 21}, - [783] = {.lex_state = 0, .external_lex_state = 22}, - [784] = {.lex_state = 0, .external_lex_state = 23}, - [785] = {.lex_state = 0, .external_lex_state = 23}, - [786] = {.lex_state = 0, .external_lex_state = 18}, - [787] = {.lex_state = 0, .external_lex_state = 24}, - [788] = {.lex_state = 0, .external_lex_state = 22}, - [789] = {.lex_state = 0, .external_lex_state = 24}, - [790] = {.lex_state = 0, .external_lex_state = 18}, - [791] = {.lex_state = 0, .external_lex_state = 21}, - [792] = {.lex_state = 0, .external_lex_state = 21}, - [793] = {.lex_state = 0, .external_lex_state = 20}, - [794] = {.lex_state = 0, .external_lex_state = 24}, - [795] = {.lex_state = 17}, - [796] = {.lex_state = 0, .external_lex_state = 19}, - [797] = {.lex_state = 0, .external_lex_state = 18}, - [798] = {.lex_state = 0, .external_lex_state = 24}, - [799] = {.lex_state = 0, .external_lex_state = 18}, - [800] = {.lex_state = 17}, - [801] = {.lex_state = 0, .external_lex_state = 23}, - [802] = {.lex_state = 0, .external_lex_state = 24}, - [803] = {.lex_state = 0, .external_lex_state = 18}, - [804] = {.lex_state = 0, .external_lex_state = 19}, - [805] = {.lex_state = 0, .external_lex_state = 20}, - [806] = {.lex_state = 0, .external_lex_state = 21}, - [807] = {.lex_state = 0, .external_lex_state = 22}, - [808] = {.lex_state = 0, .external_lex_state = 23}, - [809] = {.lex_state = 17}, - [810] = {.lex_state = 17}, - [811] = {.lex_state = 0, .external_lex_state = 24}, - [812] = {.lex_state = 0, .external_lex_state = 18}, - [813] = {.lex_state = 0, .external_lex_state = 25}, - [814] = {.lex_state = 0, .external_lex_state = 26}, - [815] = {.lex_state = 0}, - [816] = {.lex_state = 0, .external_lex_state = 27}, - [817] = {.lex_state = 0, .external_lex_state = 25}, - [818] = {.lex_state = 0, .external_lex_state = 28}, - [819] = {.lex_state = 0}, - [820] = {.lex_state = 17}, - [821] = {.lex_state = 17}, - [822] = {.lex_state = 17}, - [823] = {.lex_state = 44}, - [824] = {.lex_state = 17}, - [825] = {.lex_state = 0, .external_lex_state = 26}, - [826] = {.lex_state = 0, .external_lex_state = 28}, - [827] = {.lex_state = 17}, - [828] = {.lex_state = 0, .external_lex_state = 29}, - [829] = {.lex_state = 0, .external_lex_state = 30}, - [830] = {.lex_state = 0, .external_lex_state = 31}, - [831] = {.lex_state = 0, .external_lex_state = 26}, - [832] = {.lex_state = 0, .external_lex_state = 32}, - [833] = {.lex_state = 0, .external_lex_state = 27}, - [834] = {.lex_state = 0, .external_lex_state = 31}, - [835] = {.lex_state = 0}, - [836] = {.lex_state = 17}, - [837] = {.lex_state = 17}, - [838] = {.lex_state = 0, .external_lex_state = 30}, - [839] = {.lex_state = 0, .external_lex_state = 29}, - [840] = {.lex_state = 17}, + [1] = {.lex_state = 30, .external_lex_state = 2}, + [2] = {.lex_state = 30, .external_lex_state = 3}, + [3] = {.lex_state = 30, .external_lex_state = 2}, + [4] = {.lex_state = 30, .external_lex_state = 2}, + [5] = {.lex_state = 30, .external_lex_state = 2}, + [6] = {.lex_state = 30, .external_lex_state = 2}, + [7] = {.lex_state = 30, .external_lex_state = 2}, + [8] = {.lex_state = 30, .external_lex_state = 2}, + [9] = {.lex_state = 30, .external_lex_state = 2}, + [10] = {.lex_state = 30, .external_lex_state = 2}, + [11] = {.lex_state = 30, .external_lex_state = 2}, + [12] = {.lex_state = 30, .external_lex_state = 2}, + [13] = {.lex_state = 30, .external_lex_state = 4}, + [14] = {.lex_state = 30, .external_lex_state = 5}, + [15] = {.lex_state = 30, .external_lex_state = 2}, + [16] = {.lex_state = 30, .external_lex_state = 2}, + [17] = {.lex_state = 30, .external_lex_state = 2}, + [18] = {.lex_state = 30, .external_lex_state = 2}, + [19] = {.lex_state = 30, .external_lex_state = 2}, + [20] = {.lex_state = 30, .external_lex_state = 2}, + [21] = {.lex_state = 30, .external_lex_state = 6}, + [22] = {.lex_state = 30, .external_lex_state = 2}, + [23] = {.lex_state = 30, .external_lex_state = 2}, + [24] = {.lex_state = 30, .external_lex_state = 2}, + [25] = {.lex_state = 30, .external_lex_state = 2}, + [26] = {.lex_state = 30, .external_lex_state = 2}, + [27] = {.lex_state = 30, .external_lex_state = 2}, + [28] = {.lex_state = 30, .external_lex_state = 2}, + [29] = {.lex_state = 30, .external_lex_state = 2}, + [30] = {.lex_state = 30, .external_lex_state = 2}, + [31] = {.lex_state = 30, .external_lex_state = 2}, + [32] = {.lex_state = 30, .external_lex_state = 2}, + [33] = {.lex_state = 30, .external_lex_state = 2}, + [34] = {.lex_state = 30, .external_lex_state = 2}, + [35] = {.lex_state = 30, .external_lex_state = 2}, + [36] = {.lex_state = 30, .external_lex_state = 7}, + [37] = {.lex_state = 30, .external_lex_state = 2}, + [38] = {.lex_state = 30, .external_lex_state = 2}, + [39] = {.lex_state = 30, .external_lex_state = 2}, + [40] = {.lex_state = 30, .external_lex_state = 2}, + [41] = {.lex_state = 30, .external_lex_state = 2}, + [42] = {.lex_state = 30, .external_lex_state = 2}, + [43] = {.lex_state = 30, .external_lex_state = 2}, + [44] = {.lex_state = 30, .external_lex_state = 2}, + [45] = {.lex_state = 30, .external_lex_state = 2}, + [46] = {.lex_state = 30, .external_lex_state = 2}, + [47] = {.lex_state = 30, .external_lex_state = 2}, + [48] = {.lex_state = 30, .external_lex_state = 2}, + [49] = {.lex_state = 30, .external_lex_state = 2}, + [50] = {.lex_state = 30, .external_lex_state = 2}, + [51] = {.lex_state = 30, .external_lex_state = 2}, + [52] = {.lex_state = 30, .external_lex_state = 2}, + [53] = {.lex_state = 30, .external_lex_state = 2}, + [54] = {.lex_state = 30, .external_lex_state = 2}, + [55] = {.lex_state = 30, .external_lex_state = 2}, + [56] = {.lex_state = 30, .external_lex_state = 2}, + [57] = {.lex_state = 30, .external_lex_state = 2}, + [58] = {.lex_state = 30, .external_lex_state = 2}, + [59] = {.lex_state = 30, .external_lex_state = 2}, + [60] = {.lex_state = 30, .external_lex_state = 2}, + [61] = {.lex_state = 30, .external_lex_state = 2}, + [62] = {.lex_state = 30, .external_lex_state = 2}, + [63] = {.lex_state = 30, .external_lex_state = 2}, + [64] = {.lex_state = 30, .external_lex_state = 8}, + [65] = {.lex_state = 1, .external_lex_state = 2}, + [66] = {.lex_state = 30, .external_lex_state = 2}, + [67] = {.lex_state = 30, .external_lex_state = 2}, + [68] = {.lex_state = 30, .external_lex_state = 6}, + [69] = {.lex_state = 30, .external_lex_state = 2}, + [70] = {.lex_state = 30, .external_lex_state = 8}, + [71] = {.lex_state = 30, .external_lex_state = 2}, + [72] = {.lex_state = 30, .external_lex_state = 3}, + [73] = {.lex_state = 30, .external_lex_state = 2}, + [74] = {.lex_state = 30, .external_lex_state = 2}, + [75] = {.lex_state = 30, .external_lex_state = 2}, + [76] = {.lex_state = 30, .external_lex_state = 2}, + [77] = {.lex_state = 30, .external_lex_state = 2}, + [78] = {.lex_state = 30, .external_lex_state = 2}, + [79] = {.lex_state = 30, .external_lex_state = 2}, + [80] = {.lex_state = 30, .external_lex_state = 2}, + [81] = {.lex_state = 30, .external_lex_state = 2}, + [82] = {.lex_state = 30, .external_lex_state = 2}, + [83] = {.lex_state = 1, .external_lex_state = 2}, + [84] = {.lex_state = 30, .external_lex_state = 2}, + [85] = {.lex_state = 30, .external_lex_state = 2}, + [86] = {.lex_state = 30, .external_lex_state = 2}, + [87] = {.lex_state = 30, .external_lex_state = 2}, + [88] = {.lex_state = 30, .external_lex_state = 2}, + [89] = {.lex_state = 30, .external_lex_state = 2}, + [90] = {.lex_state = 30, .external_lex_state = 2}, + [91] = {.lex_state = 30, .external_lex_state = 2}, + [92] = {.lex_state = 30, .external_lex_state = 2}, + [93] = {.lex_state = 30, .external_lex_state = 2}, + [94] = {.lex_state = 30, .external_lex_state = 2}, + [95] = {.lex_state = 30, .external_lex_state = 2}, + [96] = {.lex_state = 30, .external_lex_state = 2}, + [97] = {.lex_state = 30, .external_lex_state = 2}, + [98] = {.lex_state = 30, .external_lex_state = 2}, + [99] = {.lex_state = 30, .external_lex_state = 2}, + [100] = {.lex_state = 30, .external_lex_state = 2}, + [101] = {.lex_state = 30, .external_lex_state = 2}, + [102] = {.lex_state = 30, .external_lex_state = 2}, + [103] = {.lex_state = 30, .external_lex_state = 7}, + [104] = {.lex_state = 30, .external_lex_state = 2}, + [105] = {.lex_state = 30, .external_lex_state = 5}, + [106] = {.lex_state = 30, .external_lex_state = 2}, + [107] = {.lex_state = 30, .external_lex_state = 2}, + [108] = {.lex_state = 30, .external_lex_state = 4}, + [109] = {.lex_state = 30, .external_lex_state = 2}, + [110] = {.lex_state = 30, .external_lex_state = 9}, + [111] = {.lex_state = 30, .external_lex_state = 2}, + [112] = {.lex_state = 30, .external_lex_state = 9}, + [113] = {.lex_state = 30, .external_lex_state = 2}, + [114] = {.lex_state = 30, .external_lex_state = 2}, + [115] = {.lex_state = 30, .external_lex_state = 2}, + [116] = {.lex_state = 30, .external_lex_state = 3}, + [117] = {.lex_state = 30, .external_lex_state = 2}, + [118] = {.lex_state = 30, .external_lex_state = 2}, + [119] = {.lex_state = 30, .external_lex_state = 2}, + [120] = {.lex_state = 30, .external_lex_state = 2}, + [121] = {.lex_state = 34, .external_lex_state = 3}, + [122] = {.lex_state = 34, .external_lex_state = 9}, + [123] = {.lex_state = 8, .external_lex_state = 2}, + [124] = {.lex_state = 34, .external_lex_state = 10}, + [125] = {.lex_state = 34, .external_lex_state = 8}, + [126] = {.lex_state = 34, .external_lex_state = 11}, + [127] = {.lex_state = 34, .external_lex_state = 6}, + [128] = {.lex_state = 34, .external_lex_state = 4}, + [129] = {.lex_state = 34, .external_lex_state = 7}, + [130] = {.lex_state = 34, .external_lex_state = 2}, + [131] = {.lex_state = 34, .external_lex_state = 5}, + [132] = {.lex_state = 34, .external_lex_state = 2}, + [133] = {.lex_state = 8, .external_lex_state = 2}, + [134] = {.lex_state = 34, .external_lex_state = 6}, + [135] = {.lex_state = 34, .external_lex_state = 9}, + [136] = {.lex_state = 34, .external_lex_state = 8}, + [137] = {.lex_state = 34, .external_lex_state = 3}, + [138] = {.lex_state = 34, .external_lex_state = 10}, + [139] = {.lex_state = 34, .external_lex_state = 7}, + [140] = {.lex_state = 34, .external_lex_state = 5}, + [141] = {.lex_state = 34, .external_lex_state = 4}, + [142] = {.lex_state = 34, .external_lex_state = 11}, + [143] = {.lex_state = 34, .external_lex_state = 2}, + [144] = {.lex_state = 36, .external_lex_state = 4}, + [145] = {.lex_state = 34, .external_lex_state = 2}, + [146] = {.lex_state = 36, .external_lex_state = 8}, + [147] = {.lex_state = 36, .external_lex_state = 2}, + [148] = {.lex_state = 36, .external_lex_state = 6}, + [149] = {.lex_state = 9, .external_lex_state = 2}, + [150] = {.lex_state = 36, .external_lex_state = 5}, + [151] = {.lex_state = 36, .external_lex_state = 10}, + [152] = {.lex_state = 36, .external_lex_state = 11}, + [153] = {.lex_state = 36, .external_lex_state = 9}, + [154] = {.lex_state = 36, .external_lex_state = 7}, + [155] = {.lex_state = 36, .external_lex_state = 3}, + [156] = {.lex_state = 32, .external_lex_state = 3}, + [157] = {.lex_state = 34, .external_lex_state = 12}, + [158] = {.lex_state = 34, .external_lex_state = 6}, + [159] = {.lex_state = 8, .external_lex_state = 2}, + [160] = {.lex_state = 8, .external_lex_state = 2}, + [161] = {.lex_state = 32, .external_lex_state = 6}, + [162] = {.lex_state = 34, .external_lex_state = 13}, + [163] = {.lex_state = 34, .external_lex_state = 10}, + [164] = {.lex_state = 32, .external_lex_state = 9}, + [165] = {.lex_state = 34, .external_lex_state = 13}, + [166] = {.lex_state = 34, .external_lex_state = 14}, + [167] = {.lex_state = 34, .external_lex_state = 7}, + [168] = {.lex_state = 34, .external_lex_state = 14}, + [169] = {.lex_state = 34, .external_lex_state = 6}, + [170] = {.lex_state = 32, .external_lex_state = 7}, + [171] = {.lex_state = 34, .external_lex_state = 15}, + [172] = {.lex_state = 34, .external_lex_state = 15}, + [173] = {.lex_state = 34, .external_lex_state = 4}, + [174] = {.lex_state = 34, .external_lex_state = 16}, + [175] = {.lex_state = 34, .external_lex_state = 16}, + [176] = {.lex_state = 34, .external_lex_state = 7}, + [177] = {.lex_state = 32, .external_lex_state = 4}, + [178] = {.lex_state = 34, .external_lex_state = 17}, + [179] = {.lex_state = 34, .external_lex_state = 18}, + [180] = {.lex_state = 34, .external_lex_state = 18}, + [181] = {.lex_state = 8, .external_lex_state = 19}, + [182] = {.lex_state = 8, .external_lex_state = 19}, + [183] = {.lex_state = 34, .external_lex_state = 9}, + [184] = {.lex_state = 34, .external_lex_state = 12}, + [185] = {.lex_state = 34, .external_lex_state = 3}, + [186] = {.lex_state = 32, .external_lex_state = 11}, + [187] = {.lex_state = 36, .external_lex_state = 2}, + [188] = {.lex_state = 34, .external_lex_state = 8}, + [189] = {.lex_state = 32, .external_lex_state = 8}, + [190] = {.lex_state = 34, .external_lex_state = 5}, + [191] = {.lex_state = 34, .external_lex_state = 19}, + [192] = {.lex_state = 3, .external_lex_state = 2}, + [193] = {.lex_state = 34, .external_lex_state = 4}, + [194] = {.lex_state = 34, .external_lex_state = 20}, + [195] = {.lex_state = 34, .external_lex_state = 21}, + [196] = {.lex_state = 34, .external_lex_state = 21}, + [197] = {.lex_state = 34, .external_lex_state = 3}, + [198] = {.lex_state = 32, .external_lex_state = 5}, + [199] = {.lex_state = 34, .external_lex_state = 5}, + [200] = {.lex_state = 34, .external_lex_state = 2}, + [201] = {.lex_state = 34, .external_lex_state = 9}, + [202] = {.lex_state = 34, .external_lex_state = 8}, + [203] = {.lex_state = 34, .external_lex_state = 19}, + [204] = {.lex_state = 34, .external_lex_state = 11}, + [205] = {.lex_state = 34, .external_lex_state = 2}, + [206] = {.lex_state = 32, .external_lex_state = 10}, + [207] = {.lex_state = 32, .external_lex_state = 2}, + [208] = {.lex_state = 34, .external_lex_state = 20}, + [209] = {.lex_state = 34, .external_lex_state = 17}, + [210] = {.lex_state = 34, .external_lex_state = 4}, + [211] = {.lex_state = 8, .external_lex_state = 2}, + [212] = {.lex_state = 34, .external_lex_state = 2}, + [213] = {.lex_state = 34, .external_lex_state = 11}, + [214] = {.lex_state = 34, .external_lex_state = 11}, + [215] = {.lex_state = 34, .external_lex_state = 11}, + [216] = {.lex_state = 34, .external_lex_state = 11}, + [217] = {.lex_state = 34, .external_lex_state = 11}, + [218] = {.lex_state = 34, .external_lex_state = 11}, + [219] = {.lex_state = 34, .external_lex_state = 11}, + [220] = {.lex_state = 34, .external_lex_state = 2}, + [221] = {.lex_state = 34, .external_lex_state = 11}, + [222] = {.lex_state = 34, .external_lex_state = 2}, + [223] = {.lex_state = 34, .external_lex_state = 11}, + [224] = {.lex_state = 34, .external_lex_state = 11}, + [225] = {.lex_state = 34, .external_lex_state = 11}, + [226] = {.lex_state = 34, .external_lex_state = 2}, + [227] = {.lex_state = 34, .external_lex_state = 11}, + [228] = {.lex_state = 34, .external_lex_state = 11}, + [229] = {.lex_state = 34, .external_lex_state = 11}, + [230] = {.lex_state = 34, .external_lex_state = 11}, + [231] = {.lex_state = 34, .external_lex_state = 11}, + [232] = {.lex_state = 34, .external_lex_state = 11}, + [233] = {.lex_state = 34, .external_lex_state = 11}, + [234] = {.lex_state = 34, .external_lex_state = 11}, + [235] = {.lex_state = 34, .external_lex_state = 11}, + [236] = {.lex_state = 34, .external_lex_state = 11}, + [237] = {.lex_state = 34, .external_lex_state = 11}, + [238] = {.lex_state = 34, .external_lex_state = 2}, + [239] = {.lex_state = 34, .external_lex_state = 11}, + [240] = {.lex_state = 34, .external_lex_state = 5}, + [241] = {.lex_state = 34, .external_lex_state = 5}, + [242] = {.lex_state = 34, .external_lex_state = 5}, + [243] = {.lex_state = 34, .external_lex_state = 5}, + [244] = {.lex_state = 34, .external_lex_state = 5}, + [245] = {.lex_state = 34, .external_lex_state = 2}, + [246] = {.lex_state = 34, .external_lex_state = 5}, + [247] = {.lex_state = 34, .external_lex_state = 5}, + [248] = {.lex_state = 34, .external_lex_state = 5}, + [249] = {.lex_state = 34, .external_lex_state = 5}, + [250] = {.lex_state = 34, .external_lex_state = 5}, + [251] = {.lex_state = 34, .external_lex_state = 5}, + [252] = {.lex_state = 34, .external_lex_state = 5}, + [253] = {.lex_state = 34, .external_lex_state = 2}, + [254] = {.lex_state = 34, .external_lex_state = 5}, + [255] = {.lex_state = 34, .external_lex_state = 2}, + [256] = {.lex_state = 34, .external_lex_state = 5}, + [257] = {.lex_state = 34, .external_lex_state = 5}, + [258] = {.lex_state = 34, .external_lex_state = 5}, + [259] = {.lex_state = 34, .external_lex_state = 2}, + [260] = {.lex_state = 34, .external_lex_state = 5}, + [261] = {.lex_state = 34, .external_lex_state = 5}, + [262] = {.lex_state = 34, .external_lex_state = 5}, + [263] = {.lex_state = 34, .external_lex_state = 5}, + [264] = {.lex_state = 34, .external_lex_state = 5}, + [265] = {.lex_state = 34, .external_lex_state = 5}, + [266] = {.lex_state = 34, .external_lex_state = 5}, + [267] = {.lex_state = 34, .external_lex_state = 5}, + [268] = {.lex_state = 34, .external_lex_state = 5}, + [269] = {.lex_state = 34, .external_lex_state = 5}, + [270] = {.lex_state = 34, .external_lex_state = 5}, + [271] = {.lex_state = 34, .external_lex_state = 2}, + [272] = {.lex_state = 34, .external_lex_state = 5}, + [273] = {.lex_state = 34, .external_lex_state = 8}, + [274] = {.lex_state = 34, .external_lex_state = 8}, + [275] = {.lex_state = 34, .external_lex_state = 8}, + [276] = {.lex_state = 34, .external_lex_state = 2}, + [277] = {.lex_state = 34, .external_lex_state = 11}, + [278] = {.lex_state = 34, .external_lex_state = 11}, + [279] = {.lex_state = 34, .external_lex_state = 8}, + [280] = {.lex_state = 34, .external_lex_state = 8}, + [281] = {.lex_state = 34, .external_lex_state = 2}, + [282] = {.lex_state = 34, .external_lex_state = 8}, + [283] = {.lex_state = 34, .external_lex_state = 8}, + [284] = {.lex_state = 34, .external_lex_state = 8}, + [285] = {.lex_state = 34, .external_lex_state = 8}, + [286] = {.lex_state = 34, .external_lex_state = 8}, + [287] = {.lex_state = 34, .external_lex_state = 8}, + [288] = {.lex_state = 34, .external_lex_state = 8}, + [289] = {.lex_state = 34, .external_lex_state = 2}, + [290] = {.lex_state = 34, .external_lex_state = 11}, + [291] = {.lex_state = 34, .external_lex_state = 11}, + [292] = {.lex_state = 34, .external_lex_state = 2}, + [293] = {.lex_state = 34, .external_lex_state = 8}, + [294] = {.lex_state = 34, .external_lex_state = 2}, + [295] = {.lex_state = 34, .external_lex_state = 8}, + [296] = {.lex_state = 34, .external_lex_state = 8}, + [297] = {.lex_state = 34, .external_lex_state = 8}, + [298] = {.lex_state = 34, .external_lex_state = 2}, + [299] = {.lex_state = 34, .external_lex_state = 8}, + [300] = {.lex_state = 34, .external_lex_state = 8}, + [301] = {.lex_state = 34, .external_lex_state = 8}, + [302] = {.lex_state = 34, .external_lex_state = 8}, + [303] = {.lex_state = 34, .external_lex_state = 8}, + [304] = {.lex_state = 34, .external_lex_state = 8}, + [305] = {.lex_state = 34, .external_lex_state = 8}, + [306] = {.lex_state = 34, .external_lex_state = 8}, + [307] = {.lex_state = 34, .external_lex_state = 8}, + [308] = {.lex_state = 34, .external_lex_state = 8}, + [309] = {.lex_state = 34, .external_lex_state = 8}, + [310] = {.lex_state = 34, .external_lex_state = 2}, + [311] = {.lex_state = 34, .external_lex_state = 8}, + [312] = {.lex_state = 34, .external_lex_state = 10}, + [313] = {.lex_state = 34, .external_lex_state = 2}, + [314] = {.lex_state = 34, .external_lex_state = 2}, + [315] = {.lex_state = 34, .external_lex_state = 10}, + [316] = {.lex_state = 34, .external_lex_state = 4}, + [317] = {.lex_state = 34, .external_lex_state = 4}, + [318] = {.lex_state = 34, .external_lex_state = 4}, + [319] = {.lex_state = 34, .external_lex_state = 10}, + [320] = {.lex_state = 34, .external_lex_state = 10}, + [321] = {.lex_state = 34, .external_lex_state = 10}, + [322] = {.lex_state = 34, .external_lex_state = 4}, + [323] = {.lex_state = 34, .external_lex_state = 4}, + [324] = {.lex_state = 34, .external_lex_state = 2}, + [325] = {.lex_state = 34, .external_lex_state = 4}, + [326] = {.lex_state = 34, .external_lex_state = 4}, + [327] = {.lex_state = 34, .external_lex_state = 4}, + [328] = {.lex_state = 34, .external_lex_state = 4}, + [329] = {.lex_state = 34, .external_lex_state = 4}, + [330] = {.lex_state = 34, .external_lex_state = 4}, + [331] = {.lex_state = 34, .external_lex_state = 4}, + [332] = {.lex_state = 34, .external_lex_state = 2}, + [333] = {.lex_state = 34, .external_lex_state = 10}, + [334] = {.lex_state = 34, .external_lex_state = 10}, + [335] = {.lex_state = 34, .external_lex_state = 10}, + [336] = {.lex_state = 34, .external_lex_state = 4}, + [337] = {.lex_state = 34, .external_lex_state = 2}, + [338] = {.lex_state = 34, .external_lex_state = 4}, + [339] = {.lex_state = 34, .external_lex_state = 4}, + [340] = {.lex_state = 34, .external_lex_state = 4}, + [341] = {.lex_state = 34, .external_lex_state = 2}, + [342] = {.lex_state = 34, .external_lex_state = 4}, + [343] = {.lex_state = 34, .external_lex_state = 4}, + [344] = {.lex_state = 34, .external_lex_state = 4}, + [345] = {.lex_state = 34, .external_lex_state = 4}, + [346] = {.lex_state = 34, .external_lex_state = 4}, + [347] = {.lex_state = 34, .external_lex_state = 4}, + [348] = {.lex_state = 32, .external_lex_state = 2}, + [349] = {.lex_state = 34, .external_lex_state = 4}, + [350] = {.lex_state = 34, .external_lex_state = 4}, + [351] = {.lex_state = 34, .external_lex_state = 4}, + [352] = {.lex_state = 34, .external_lex_state = 4}, + [353] = {.lex_state = 34, .external_lex_state = 2}, + [354] = {.lex_state = 34, .external_lex_state = 4}, + [355] = {.lex_state = 34, .external_lex_state = 10}, + [356] = {.lex_state = 34, .external_lex_state = 19}, + [357] = {.lex_state = 34, .external_lex_state = 10}, + [358] = {.lex_state = 34, .external_lex_state = 10}, + [359] = {.lex_state = 34, .external_lex_state = 7}, + [360] = {.lex_state = 34, .external_lex_state = 7}, + [361] = {.lex_state = 34, .external_lex_state = 7}, + [362] = {.lex_state = 34, .external_lex_state = 10}, + [363] = {.lex_state = 34, .external_lex_state = 19}, + [364] = {.lex_state = 34, .external_lex_state = 10}, + [365] = {.lex_state = 34, .external_lex_state = 7}, + [366] = {.lex_state = 34, .external_lex_state = 7}, + [367] = {.lex_state = 34, .external_lex_state = 9}, + [368] = {.lex_state = 34, .external_lex_state = 7}, + [369] = {.lex_state = 34, .external_lex_state = 7}, + [370] = {.lex_state = 34, .external_lex_state = 7}, + [371] = {.lex_state = 34, .external_lex_state = 7}, + [372] = {.lex_state = 34, .external_lex_state = 7}, + [373] = {.lex_state = 34, .external_lex_state = 7}, + [374] = {.lex_state = 34, .external_lex_state = 7}, + [375] = {.lex_state = 34, .external_lex_state = 9}, + [376] = {.lex_state = 34, .external_lex_state = 9}, + [377] = {.lex_state = 34, .external_lex_state = 10}, + [378] = {.lex_state = 34, .external_lex_state = 10}, + [379] = {.lex_state = 34, .external_lex_state = 7}, + [380] = {.lex_state = 34, .external_lex_state = 9}, + [381] = {.lex_state = 34, .external_lex_state = 7}, + [382] = {.lex_state = 34, .external_lex_state = 7}, + [383] = {.lex_state = 34, .external_lex_state = 7}, + [384] = {.lex_state = 34, .external_lex_state = 9}, + [385] = {.lex_state = 34, .external_lex_state = 7}, + [386] = {.lex_state = 34, .external_lex_state = 7}, + [387] = {.lex_state = 34, .external_lex_state = 7}, + [388] = {.lex_state = 34, .external_lex_state = 7}, + [389] = {.lex_state = 34, .external_lex_state = 7}, + [390] = {.lex_state = 34, .external_lex_state = 7}, + [391] = {.lex_state = 34, .external_lex_state = 7}, + [392] = {.lex_state = 34, .external_lex_state = 7}, + [393] = {.lex_state = 34, .external_lex_state = 7}, + [394] = {.lex_state = 34, .external_lex_state = 7}, + [395] = {.lex_state = 34, .external_lex_state = 7}, + [396] = {.lex_state = 34, .external_lex_state = 9}, + [397] = {.lex_state = 34, .external_lex_state = 7}, + [398] = {.lex_state = 34, .external_lex_state = 10}, + [399] = {.lex_state = 34, .external_lex_state = 10}, + [400] = {.lex_state = 34, .external_lex_state = 9}, + [401] = {.lex_state = 34, .external_lex_state = 10}, + [402] = {.lex_state = 34, .external_lex_state = 6}, + [403] = {.lex_state = 34, .external_lex_state = 6}, + [404] = {.lex_state = 34, .external_lex_state = 6}, + [405] = {.lex_state = 34, .external_lex_state = 10}, + [406] = {.lex_state = 34, .external_lex_state = 10}, + [407] = {.lex_state = 34, .external_lex_state = 10}, + [408] = {.lex_state = 34, .external_lex_state = 6}, + [409] = {.lex_state = 34, .external_lex_state = 6}, + [410] = {.lex_state = 34, .external_lex_state = 9}, + [411] = {.lex_state = 34, .external_lex_state = 6}, + [412] = {.lex_state = 34, .external_lex_state = 6}, + [413] = {.lex_state = 34, .external_lex_state = 6}, + [414] = {.lex_state = 34, .external_lex_state = 6}, + [415] = {.lex_state = 34, .external_lex_state = 6}, + [416] = {.lex_state = 34, .external_lex_state = 6}, + [417] = {.lex_state = 34, .external_lex_state = 6}, + [418] = {.lex_state = 34, .external_lex_state = 9}, + [419] = {.lex_state = 34, .external_lex_state = 10}, + [420] = {.lex_state = 34, .external_lex_state = 10}, + [421] = {.lex_state = 34, .external_lex_state = 10}, + [422] = {.lex_state = 34, .external_lex_state = 6}, + [423] = {.lex_state = 34, .external_lex_state = 9}, + [424] = {.lex_state = 34, .external_lex_state = 6}, + [425] = {.lex_state = 34, .external_lex_state = 6}, + [426] = {.lex_state = 34, .external_lex_state = 6}, + [427] = {.lex_state = 34, .external_lex_state = 9}, + [428] = {.lex_state = 34, .external_lex_state = 6}, + [429] = {.lex_state = 34, .external_lex_state = 6}, + [430] = {.lex_state = 34, .external_lex_state = 6}, + [431] = {.lex_state = 34, .external_lex_state = 6}, + [432] = {.lex_state = 34, .external_lex_state = 6}, + [433] = {.lex_state = 34, .external_lex_state = 6}, + [434] = {.lex_state = 34, .external_lex_state = 6}, + [435] = {.lex_state = 34, .external_lex_state = 6}, + [436] = {.lex_state = 34, .external_lex_state = 6}, + [437] = {.lex_state = 34, .external_lex_state = 6}, + [438] = {.lex_state = 34, .external_lex_state = 6}, + [439] = {.lex_state = 34, .external_lex_state = 9}, + [440] = {.lex_state = 34, .external_lex_state = 6}, + [441] = {.lex_state = 34, .external_lex_state = 9}, + [442] = {.lex_state = 34, .external_lex_state = 10}, + [443] = {.lex_state = 34, .external_lex_state = 9}, + [444] = {.lex_state = 34, .external_lex_state = 2}, + [445] = {.lex_state = 8, .external_lex_state = 2}, + [446] = {.lex_state = 8, .external_lex_state = 2}, + [447] = {.lex_state = 8, .external_lex_state = 2}, + [448] = {.lex_state = 34, .external_lex_state = 10}, + [449] = {.lex_state = 34, .external_lex_state = 10}, + [450] = {.lex_state = 34, .external_lex_state = 10}, + [451] = {.lex_state = 8, .external_lex_state = 2}, + [452] = {.lex_state = 8, .external_lex_state = 2}, + [453] = {.lex_state = 34, .external_lex_state = 9}, + [454] = {.lex_state = 34, .external_lex_state = 11}, + [455] = {.lex_state = 8, .external_lex_state = 2}, + [456] = {.lex_state = 8, .external_lex_state = 2}, + [457] = {.lex_state = 8, .external_lex_state = 2}, + [458] = {.lex_state = 8, .external_lex_state = 2}, + [459] = {.lex_state = 8, .external_lex_state = 2}, + [460] = {.lex_state = 8, .external_lex_state = 2}, + [461] = {.lex_state = 34, .external_lex_state = 9}, + [462] = {.lex_state = 34, .external_lex_state = 2}, + [463] = {.lex_state = 34, .external_lex_state = 2}, + [464] = {.lex_state = 34, .external_lex_state = 9}, + [465] = {.lex_state = 8, .external_lex_state = 2}, + [466] = {.lex_state = 34, .external_lex_state = 9}, + [467] = {.lex_state = 8, .external_lex_state = 2}, + [468] = {.lex_state = 8, .external_lex_state = 2}, + [469] = {.lex_state = 8, .external_lex_state = 2}, + [470] = {.lex_state = 34, .external_lex_state = 9}, + [471] = {.lex_state = 8, .external_lex_state = 2}, + [472] = {.lex_state = 8, .external_lex_state = 2}, + [473] = {.lex_state = 8, .external_lex_state = 2}, + [474] = {.lex_state = 8, .external_lex_state = 2}, + [475] = {.lex_state = 8, .external_lex_state = 2}, + [476] = {.lex_state = 8, .external_lex_state = 2}, + [477] = {.lex_state = 8, .external_lex_state = 2}, + [478] = {.lex_state = 8, .external_lex_state = 2}, + [479] = {.lex_state = 8, .external_lex_state = 2}, + [480] = {.lex_state = 8, .external_lex_state = 2}, + [481] = {.lex_state = 8, .external_lex_state = 2}, + [482] = {.lex_state = 34, .external_lex_state = 9}, + [483] = {.lex_state = 8, .external_lex_state = 2}, + [484] = {.lex_state = 34, .external_lex_state = 9}, + [485] = {.lex_state = 34, .external_lex_state = 2}, + [486] = {.lex_state = 34, .external_lex_state = 9}, + [487] = {.lex_state = 34, .external_lex_state = 9}, + [488] = {.lex_state = 34, .external_lex_state = 3}, + [489] = {.lex_state = 34, .external_lex_state = 3}, + [490] = {.lex_state = 34, .external_lex_state = 3}, + [491] = {.lex_state = 34, .external_lex_state = 9}, + [492] = {.lex_state = 34, .external_lex_state = 9}, + [493] = {.lex_state = 34, .external_lex_state = 3}, + [494] = {.lex_state = 34, .external_lex_state = 3}, + [495] = {.lex_state = 34, .external_lex_state = 2}, + [496] = {.lex_state = 34, .external_lex_state = 3}, + [497] = {.lex_state = 34, .external_lex_state = 3}, + [498] = {.lex_state = 34, .external_lex_state = 3}, + [499] = {.lex_state = 34, .external_lex_state = 3}, + [500] = {.lex_state = 34, .external_lex_state = 3}, + [501] = {.lex_state = 34, .external_lex_state = 3}, + [502] = {.lex_state = 34, .external_lex_state = 3}, + [503] = {.lex_state = 34, .external_lex_state = 9}, + [504] = {.lex_state = 34, .external_lex_state = 9}, + [505] = {.lex_state = 34, .external_lex_state = 9}, + [506] = {.lex_state = 34, .external_lex_state = 2}, + [507] = {.lex_state = 34, .external_lex_state = 3}, + [508] = {.lex_state = 34, .external_lex_state = 2}, + [509] = {.lex_state = 34, .external_lex_state = 3}, + [510] = {.lex_state = 34, .external_lex_state = 3}, + [511] = {.lex_state = 34, .external_lex_state = 3}, + [512] = {.lex_state = 34, .external_lex_state = 2}, + [513] = {.lex_state = 34, .external_lex_state = 3}, + [514] = {.lex_state = 34, .external_lex_state = 3}, + [515] = {.lex_state = 34, .external_lex_state = 3}, + [516] = {.lex_state = 34, .external_lex_state = 3}, + [517] = {.lex_state = 34, .external_lex_state = 3}, + [518] = {.lex_state = 34, .external_lex_state = 3}, + [519] = {.lex_state = 34, .external_lex_state = 3}, + [520] = {.lex_state = 34, .external_lex_state = 3}, + [521] = {.lex_state = 34, .external_lex_state = 3}, + [522] = {.lex_state = 34, .external_lex_state = 3}, + [523] = {.lex_state = 34, .external_lex_state = 3}, + [524] = {.lex_state = 34, .external_lex_state = 3}, + [525] = {.lex_state = 34, .external_lex_state = 2}, + [526] = {.lex_state = 30, .external_lex_state = 3}, + [527] = {.lex_state = 30, .external_lex_state = 11}, + [528] = {.lex_state = 30, .external_lex_state = 3}, + [529] = {.lex_state = 30, .external_lex_state = 11}, + [530] = {.lex_state = 30, .external_lex_state = 11}, + [531] = {.lex_state = 30, .external_lex_state = 11}, + [532] = {.lex_state = 30, .external_lex_state = 3}, + [533] = {.lex_state = 30, .external_lex_state = 3}, + [534] = {.lex_state = 30, .external_lex_state = 2}, + [535] = {.lex_state = 30, .external_lex_state = 5}, + [536] = {.lex_state = 30, .external_lex_state = 9}, + [537] = {.lex_state = 30, .external_lex_state = 2}, + [538] = {.lex_state = 30, .external_lex_state = 5}, + [539] = {.lex_state = 30, .external_lex_state = 5}, + [540] = {.lex_state = 1, .external_lex_state = 2}, + [541] = {.lex_state = 1, .external_lex_state = 2}, + [542] = {.lex_state = 1, .external_lex_state = 2}, + [543] = {.lex_state = 30, .external_lex_state = 5}, + [544] = {.lex_state = 30, .external_lex_state = 9}, + [545] = {.lex_state = 30, .external_lex_state = 11}, + [546] = {.lex_state = 30, .external_lex_state = 5}, + [547] = {.lex_state = 1, .external_lex_state = 2}, + [548] = {.lex_state = 30, .external_lex_state = 9}, + [549] = {.lex_state = 1, .external_lex_state = 2}, + [550] = {.lex_state = 30, .external_lex_state = 10}, + [551] = {.lex_state = 30, .external_lex_state = 10}, + [552] = {.lex_state = 30, .external_lex_state = 9}, + [553] = {.lex_state = 30, .external_lex_state = 6}, + [554] = {.lex_state = 30, .external_lex_state = 6}, + [555] = {.lex_state = 30, .external_lex_state = 6}, + [556] = {.lex_state = 30, .external_lex_state = 6}, + [557] = {.lex_state = 30, .external_lex_state = 6}, + [558] = {.lex_state = 30, .external_lex_state = 10}, + [559] = {.lex_state = 30, .external_lex_state = 7}, + [560] = {.lex_state = 30, .external_lex_state = 7}, + [561] = {.lex_state = 30, .external_lex_state = 7}, + [562] = {.lex_state = 30, .external_lex_state = 11}, + [563] = {.lex_state = 30, .external_lex_state = 7}, + [564] = {.lex_state = 30, .external_lex_state = 9}, + [565] = {.lex_state = 30, .external_lex_state = 7}, + [566] = {.lex_state = 30, .external_lex_state = 10}, + [567] = {.lex_state = 30, .external_lex_state = 11}, + [568] = {.lex_state = 30, .external_lex_state = 4}, + [569] = {.lex_state = 30, .external_lex_state = 8}, + [570] = {.lex_state = 34, .external_lex_state = 2}, + [571] = {.lex_state = 34, .external_lex_state = 2}, + [572] = {.lex_state = 34, .external_lex_state = 2}, + [573] = {.lex_state = 30, .external_lex_state = 4}, + [574] = {.lex_state = 34, .external_lex_state = 2}, + [575] = {.lex_state = 34, .external_lex_state = 2}, + [576] = {.lex_state = 30, .external_lex_state = 8}, + [577] = {.lex_state = 34, .external_lex_state = 2}, + [578] = {.lex_state = 34, .external_lex_state = 2}, + [579] = {.lex_state = 34, .external_lex_state = 2}, + [580] = {.lex_state = 34, .external_lex_state = 2}, + [581] = {.lex_state = 34, .external_lex_state = 2}, + [582] = {.lex_state = 34, .external_lex_state = 2}, + [583] = {.lex_state = 30, .external_lex_state = 3}, + [584] = {.lex_state = 30, .external_lex_state = 2}, + [585] = {.lex_state = 30, .external_lex_state = 2}, + [586] = {.lex_state = 30, .external_lex_state = 4}, + [587] = {.lex_state = 34, .external_lex_state = 2}, + [588] = {.lex_state = 30, .external_lex_state = 8}, + [589] = {.lex_state = 34, .external_lex_state = 2}, + [590] = {.lex_state = 34, .external_lex_state = 2}, + [591] = {.lex_state = 34, .external_lex_state = 2}, + [592] = {.lex_state = 30, .external_lex_state = 8}, + [593] = {.lex_state = 34, .external_lex_state = 2}, + [594] = {.lex_state = 34, .external_lex_state = 2}, + [595] = {.lex_state = 34, .external_lex_state = 2}, + [596] = {.lex_state = 34, .external_lex_state = 2}, + [597] = {.lex_state = 34, .external_lex_state = 2}, + [598] = {.lex_state = 34, .external_lex_state = 2}, + [599] = {.lex_state = 34, .external_lex_state = 2}, + [600] = {.lex_state = 34, .external_lex_state = 2}, + [601] = {.lex_state = 34, .external_lex_state = 2}, + [602] = {.lex_state = 34, .external_lex_state = 2}, + [603] = {.lex_state = 34, .external_lex_state = 2}, + [604] = {.lex_state = 30, .external_lex_state = 10}, + [605] = {.lex_state = 34, .external_lex_state = 2}, + [606] = {.lex_state = 30, .external_lex_state = 10}, + [607] = {.lex_state = 30, .external_lex_state = 4}, + [608] = {.lex_state = 30, .external_lex_state = 10}, + [609] = {.lex_state = 30, .external_lex_state = 8}, + [610] = {.lex_state = 30, .external_lex_state = 4}, + [611] = {.lex_state = 30, .external_lex_state = 2}, + [612] = {.lex_state = 30, .external_lex_state = 2}, + [613] = {.lex_state = 30, .external_lex_state = 2}, + [614] = {.lex_state = 30, .external_lex_state = 2}, + [615] = {.lex_state = 30, .external_lex_state = 2}, + [616] = {.lex_state = 30, .external_lex_state = 2}, + [617] = {.lex_state = 5, .external_lex_state = 22}, + [618] = {.lex_state = 5, .external_lex_state = 22}, + [619] = {.lex_state = 5, .external_lex_state = 22}, + [620] = {.lex_state = 5, .external_lex_state = 22}, + [621] = {.lex_state = 5, .external_lex_state = 22}, + [622] = {.lex_state = 5, .external_lex_state = 22}, + [623] = {.lex_state = 5, .external_lex_state = 22}, + [624] = {.lex_state = 5, .external_lex_state = 22}, + [625] = {.lex_state = 5, .external_lex_state = 22}, + [626] = {.lex_state = 5, .external_lex_state = 22}, + [627] = {.lex_state = 5, .external_lex_state = 22}, + [628] = {.lex_state = 5, .external_lex_state = 22}, + [629] = {.lex_state = 5, .external_lex_state = 22}, + [630] = {.lex_state = 5, .external_lex_state = 22}, + [631] = {.lex_state = 5, .external_lex_state = 22}, + [632] = {.lex_state = 5, .external_lex_state = 22}, + [633] = {.lex_state = 5, .external_lex_state = 22}, + [634] = {.lex_state = 5, .external_lex_state = 22}, + [635] = {.lex_state = 5, .external_lex_state = 22}, + [636] = {.lex_state = 5, .external_lex_state = 22}, + [637] = {.lex_state = 5, .external_lex_state = 22}, + [638] = {.lex_state = 5, .external_lex_state = 22}, + [639] = {.lex_state = 5, .external_lex_state = 22}, + [640] = {.lex_state = 5, .external_lex_state = 22}, + [641] = {.lex_state = 5, .external_lex_state = 22}, + [642] = {.lex_state = 5, .external_lex_state = 22}, + [643] = {.lex_state = 5, .external_lex_state = 22}, + [644] = {.lex_state = 5, .external_lex_state = 22}, + [645] = {.lex_state = 5, .external_lex_state = 22}, + [646] = {.lex_state = 5, .external_lex_state = 22}, + [647] = {.lex_state = 5, .external_lex_state = 22}, + [648] = {.lex_state = 5, .external_lex_state = 22}, + [649] = {.lex_state = 5, .external_lex_state = 22}, + [650] = {.lex_state = 5, .external_lex_state = 22}, + [651] = {.lex_state = 5}, + [652] = {.lex_state = 5}, + [653] = {.lex_state = 5}, + [654] = {.lex_state = 5}, + [655] = {.lex_state = 5}, + [656] = {.lex_state = 5}, + [657] = {.lex_state = 5}, + [658] = {.lex_state = 5}, + [659] = {.lex_state = 5}, + [660] = {.lex_state = 5}, + [661] = {.lex_state = 5}, + [662] = {.lex_state = 5}, + [663] = {.lex_state = 5}, + [664] = {.lex_state = 5}, + [665] = {.lex_state = 5}, + [666] = {.lex_state = 5}, + [667] = {.lex_state = 5}, + [668] = {.lex_state = 5}, + [669] = {.lex_state = 5}, + [670] = {.lex_state = 5}, + [671] = {.lex_state = 7}, + [672] = {.lex_state = 5}, + [673] = {.lex_state = 5}, + [674] = {.lex_state = 5}, + [675] = {.lex_state = 5}, + [676] = {.lex_state = 7}, + [677] = {.lex_state = 5}, + [678] = {.lex_state = 7}, + [679] = {.lex_state = 5}, + [680] = {.lex_state = 7}, + [681] = {.lex_state = 5}, + [682] = {.lex_state = 5}, + [683] = {.lex_state = 5}, + [684] = {.lex_state = 7}, + [685] = {.lex_state = 5}, + [686] = {.lex_state = 5}, + [687] = {.lex_state = 5}, + [688] = {.lex_state = 5}, + [689] = {.lex_state = 5}, + [690] = {.lex_state = 5}, + [691] = {.lex_state = 5}, + [692] = {.lex_state = 7}, + [693] = {.lex_state = 5}, + [694] = {.lex_state = 11}, + [695] = {.lex_state = 5}, + [696] = {.lex_state = 5}, + [697] = {.lex_state = 0, .external_lex_state = 23}, + [698] = {.lex_state = 5}, + [699] = {.lex_state = 0, .external_lex_state = 24}, + [700] = {.lex_state = 0, .external_lex_state = 25}, + [701] = {.lex_state = 0, .external_lex_state = 26}, + [702] = {.lex_state = 0, .external_lex_state = 27}, + [703] = {.lex_state = 0, .external_lex_state = 26}, + [704] = {.lex_state = 0, .external_lex_state = 28}, + [705] = {.lex_state = 0, .external_lex_state = 23}, + [706] = {.lex_state = 0, .external_lex_state = 29}, + [707] = {.lex_state = 0, .external_lex_state = 30}, + [708] = {.lex_state = 0, .external_lex_state = 31}, + [709] = {.lex_state = 0, .external_lex_state = 32}, + [710] = {.lex_state = 5}, + [711] = {.lex_state = 5}, + [712] = {.lex_state = 5}, + [713] = {.lex_state = 0, .external_lex_state = 24}, + [714] = {.lex_state = 0, .external_lex_state = 25}, + [715] = {.lex_state = 5}, + [716] = {.lex_state = 5}, + [717] = {.lex_state = 0, .external_lex_state = 27}, + [718] = {.lex_state = 5}, + [719] = {.lex_state = 0, .external_lex_state = 27}, + [720] = {.lex_state = 0, .external_lex_state = 26}, + [721] = {.lex_state = 0, .external_lex_state = 23}, + [722] = {.lex_state = 0, .external_lex_state = 29}, + [723] = {.lex_state = 0, .external_lex_state = 30}, + [724] = {.lex_state = 0, .external_lex_state = 31}, + [725] = {.lex_state = 0, .external_lex_state = 32}, + [726] = {.lex_state = 5}, + [727] = {.lex_state = 0, .external_lex_state = 24}, + [728] = {.lex_state = 0, .external_lex_state = 25}, + [729] = {.lex_state = 0, .external_lex_state = 26}, + [730] = {.lex_state = 0, .external_lex_state = 27}, + [731] = {.lex_state = 0, .external_lex_state = 26}, + [732] = {.lex_state = 0, .external_lex_state = 28}, + [733] = {.lex_state = 0, .external_lex_state = 28}, + [734] = {.lex_state = 5}, + [735] = {.lex_state = 5}, + [736] = {.lex_state = 5}, + [737] = {.lex_state = 5}, + [738] = {.lex_state = 5}, + [739] = {.lex_state = 5}, + [740] = {.lex_state = 5}, + [741] = {.lex_state = 0, .external_lex_state = 27}, + [742] = {.lex_state = 5}, + [743] = {.lex_state = 5}, + [744] = {.lex_state = 0, .external_lex_state = 26}, + [745] = {.lex_state = 0, .external_lex_state = 29}, + [746] = {.lex_state = 0, .external_lex_state = 30}, + [747] = {.lex_state = 0, .external_lex_state = 27}, + [748] = {.lex_state = 0, .external_lex_state = 26}, + [749] = {.lex_state = 0, .external_lex_state = 23}, + [750] = {.lex_state = 0, .external_lex_state = 29}, + [751] = {.lex_state = 0, .external_lex_state = 30}, + [752] = {.lex_state = 0, .external_lex_state = 31}, + [753] = {.lex_state = 0, .external_lex_state = 32}, + [754] = {.lex_state = 0, .external_lex_state = 31}, + [755] = {.lex_state = 0, .external_lex_state = 24}, + [756] = {.lex_state = 0, .external_lex_state = 25}, + [757] = {.lex_state = 0, .external_lex_state = 32}, + [758] = {.lex_state = 0, .external_lex_state = 27}, + [759] = {.lex_state = 0, .external_lex_state = 26}, + [760] = {.lex_state = 0, .external_lex_state = 28}, + [761] = {.lex_state = 0, .external_lex_state = 24}, + [762] = {.lex_state = 5}, + [763] = {.lex_state = 5}, + [764] = {.lex_state = 0, .external_lex_state = 25}, + [765] = {.lex_state = 0, .external_lex_state = 27}, + [766] = {.lex_state = 0, .external_lex_state = 26}, + [767] = {.lex_state = 0, .external_lex_state = 28}, + [768] = {.lex_state = 0, .external_lex_state = 27}, + [769] = {.lex_state = 5}, + [770] = {.lex_state = 5}, + [771] = {.lex_state = 5}, + [772] = {.lex_state = 5}, + [773] = {.lex_state = 0, .external_lex_state = 27}, + [774] = {.lex_state = 0, .external_lex_state = 23}, + [775] = {.lex_state = 0, .external_lex_state = 29}, + [776] = {.lex_state = 0, .external_lex_state = 27}, + [777] = {.lex_state = 0, .external_lex_state = 26}, + [778] = {.lex_state = 0, .external_lex_state = 23}, + [779] = {.lex_state = 0, .external_lex_state = 29}, + [780] = {.lex_state = 0, .external_lex_state = 30}, + [781] = {.lex_state = 0, .external_lex_state = 31}, + [782] = {.lex_state = 0, .external_lex_state = 32}, + [783] = {.lex_state = 0, .external_lex_state = 30}, + [784] = {.lex_state = 0, .external_lex_state = 24}, + [785] = {.lex_state = 0, .external_lex_state = 25}, + [786] = {.lex_state = 0, .external_lex_state = 32}, + [787] = {.lex_state = 0, .external_lex_state = 31}, + [788] = {.lex_state = 0, .external_lex_state = 30}, + [789] = {.lex_state = 5}, + [790] = {.lex_state = 0, .external_lex_state = 27}, + [791] = {.lex_state = 0, .external_lex_state = 26}, + [792] = {.lex_state = 0, .external_lex_state = 28}, + [793] = {.lex_state = 5}, + [794] = {.lex_state = 0, .external_lex_state = 31}, + [795] = {.lex_state = 0, .external_lex_state = 29}, + [796] = {.lex_state = 0, .external_lex_state = 32}, + [797] = {.lex_state = 0, .external_lex_state = 28}, + [798] = {.lex_state = 0, .external_lex_state = 26}, + [799] = {.lex_state = 0, .external_lex_state = 27}, + [800] = {.lex_state = 0, .external_lex_state = 24}, + [801] = {.lex_state = 0, .external_lex_state = 25}, + [802] = {.lex_state = 0, .external_lex_state = 25}, + [803] = {.lex_state = 0, .external_lex_state = 24}, + [804] = {.lex_state = 0, .external_lex_state = 32}, + [805] = {.lex_state = 0, .external_lex_state = 31}, + [806] = {.lex_state = 0, .external_lex_state = 30}, + [807] = {.lex_state = 0, .external_lex_state = 23}, + [808] = {.lex_state = 0, .external_lex_state = 29}, + [809] = {.lex_state = 0, .external_lex_state = 27}, + [810] = {.lex_state = 0, .external_lex_state = 26}, + [811] = {.lex_state = 0, .external_lex_state = 23}, + [812] = {.lex_state = 0, .external_lex_state = 29}, + [813] = {.lex_state = 0, .external_lex_state = 30}, + [814] = {.lex_state = 0, .external_lex_state = 31}, + [815] = {.lex_state = 0, .external_lex_state = 32}, + [816] = {.lex_state = 0, .external_lex_state = 23}, + [817] = {.lex_state = 0, .external_lex_state = 24}, + [818] = {.lex_state = 0, .external_lex_state = 25}, + [819] = {.lex_state = 0, .external_lex_state = 26}, + [820] = {.lex_state = 0, .external_lex_state = 27}, + [821] = {.lex_state = 0, .external_lex_state = 26}, + [822] = {.lex_state = 0, .external_lex_state = 27}, + [823] = {.lex_state = 0, .external_lex_state = 27}, + [824] = {.lex_state = 0, .external_lex_state = 26}, + [825] = {.lex_state = 0, .external_lex_state = 28}, + [826] = {.lex_state = 0, .external_lex_state = 27}, + [827] = {.lex_state = 0, .external_lex_state = 28}, + [828] = {.lex_state = 0, .external_lex_state = 26}, + [829] = {.lex_state = 0, .external_lex_state = 27}, + [830] = {.lex_state = 0, .external_lex_state = 26}, + [831] = {.lex_state = 0, .external_lex_state = 28}, + [832] = {.lex_state = 0, .external_lex_state = 25}, + [833] = {.lex_state = 0, .external_lex_state = 24}, + [834] = {.lex_state = 0, .external_lex_state = 32}, + [835] = {.lex_state = 0, .external_lex_state = 31}, + [836] = {.lex_state = 0, .external_lex_state = 30}, + [837] = {.lex_state = 0, .external_lex_state = 29}, + [838] = {.lex_state = 0, .external_lex_state = 23}, + [839] = {.lex_state = 0, .external_lex_state = 26}, + [840] = {.lex_state = 0, .external_lex_state = 27}, [841] = {.lex_state = 0, .external_lex_state = 28}, - [842] = {.lex_state = 44}, - [843] = {.lex_state = 17}, - [844] = {.lex_state = 0, .external_lex_state = 28}, - [845] = {.lex_state = 0}, - [846] = {.lex_state = 0}, - [847] = {.lex_state = 17}, - [848] = {.lex_state = 0, .external_lex_state = 28}, - [849] = {.lex_state = 17}, - [850] = {.lex_state = 0}, + [842] = {.lex_state = 0, .external_lex_state = 27}, + [843] = {.lex_state = 0, .external_lex_state = 26}, + [844] = {.lex_state = 0, .external_lex_state = 23}, + [845] = {.lex_state = 0, .external_lex_state = 29}, + [846] = {.lex_state = 0, .external_lex_state = 30}, + [847] = {.lex_state = 0, .external_lex_state = 31}, + [848] = {.lex_state = 0, .external_lex_state = 32}, + [849] = {.lex_state = 0, .external_lex_state = 26}, + [850] = {.lex_state = 0, .external_lex_state = 24}, [851] = {.lex_state = 0, .external_lex_state = 25}, - [852] = {.lex_state = 17}, - [853] = {.lex_state = 44}, - [854] = {.lex_state = 0, .external_lex_state = 27}, - [855] = {.lex_state = 0, .external_lex_state = 32}, - [856] = {.lex_state = 0, .external_lex_state = 28}, - [857] = {.lex_state = 17}, - [858] = {.lex_state = 0, .external_lex_state = 29}, - [859] = {.lex_state = 0, .external_lex_state = 30}, + [852] = {.lex_state = 0, .external_lex_state = 27}, + [853] = {.lex_state = 0, .external_lex_state = 26}, + [854] = {.lex_state = 0, .external_lex_state = 25}, + [855] = {.lex_state = 0, .external_lex_state = 24}, + [856] = {.lex_state = 0, .external_lex_state = 27}, + [857] = {.lex_state = 0, .external_lex_state = 26}, + [858] = {.lex_state = 0, .external_lex_state = 28}, + [859] = {.lex_state = 0, .external_lex_state = 32}, [860] = {.lex_state = 0, .external_lex_state = 31}, - [861] = {.lex_state = 0, .external_lex_state = 26}, - [862] = {.lex_state = 0, .external_lex_state = 32}, - [863] = {.lex_state = 0, .external_lex_state = 27}, - [864] = {.lex_state = 0, .external_lex_state = 25}, - [865] = {.lex_state = 0}, - [866] = {.lex_state = 17}, - [867] = {.lex_state = 17}, - [868] = {.lex_state = 0, .external_lex_state = 26}, - [869] = {.lex_state = 0, .external_lex_state = 31}, - [870] = {.lex_state = 0, .external_lex_state = 30}, - [871] = {.lex_state = 0, .external_lex_state = 29}, - [872] = {.lex_state = 17}, - [873] = {.lex_state = 0, .external_lex_state = 28}, - [874] = {.lex_state = 44}, - [875] = {.lex_state = 0}, - [876] = {.lex_state = 17}, - [877] = {.lex_state = 0, .external_lex_state = 28}, - [878] = {.lex_state = 0, .external_lex_state = 28}, - [879] = {.lex_state = 0}, - [880] = {.lex_state = 17}, - [881] = {.lex_state = 17}, - [882] = {.lex_state = 17}, - [883] = {.lex_state = 44}, - [884] = {.lex_state = 0}, - [885] = {.lex_state = 0, .external_lex_state = 25}, - [886] = {.lex_state = 0, .external_lex_state = 28}, - [887] = {.lex_state = 17}, - [888] = {.lex_state = 0, .external_lex_state = 29}, - [889] = {.lex_state = 0, .external_lex_state = 30}, - [890] = {.lex_state = 0, .external_lex_state = 31}, - [891] = {.lex_state = 0, .external_lex_state = 26}, - [892] = {.lex_state = 0, .external_lex_state = 32}, - [893] = {.lex_state = 0, .external_lex_state = 27}, - [894] = {.lex_state = 0, .external_lex_state = 25}, - [895] = {.lex_state = 0}, - [896] = {.lex_state = 17}, - [897] = {.lex_state = 17}, - [898] = {.lex_state = 0, .external_lex_state = 27}, - [899] = {.lex_state = 0, .external_lex_state = 32}, - [900] = {.lex_state = 0, .external_lex_state = 26}, - [901] = {.lex_state = 0, .external_lex_state = 31}, - [902] = {.lex_state = 0, .external_lex_state = 30}, - [903] = {.lex_state = 0, .external_lex_state = 29}, - [904] = {.lex_state = 17}, - [905] = {.lex_state = 0, .external_lex_state = 28}, - [906] = {.lex_state = 44}, - [907] = {.lex_state = 17}, - [908] = {.lex_state = 0, .external_lex_state = 28}, - [909] = {.lex_state = 0}, - [910] = {.lex_state = 17}, - [911] = {.lex_state = 17}, - [912] = {.lex_state = 0}, - [913] = {.lex_state = 0, .external_lex_state = 25}, - [914] = {.lex_state = 0, .external_lex_state = 27}, - [915] = {.lex_state = 0, .external_lex_state = 32}, - [916] = {.lex_state = 0, .external_lex_state = 26}, - [917] = {.lex_state = 0, .external_lex_state = 31}, - [918] = {.lex_state = 0, .external_lex_state = 30}, - [919] = {.lex_state = 0, .external_lex_state = 29}, - [920] = {.lex_state = 0, .external_lex_state = 33}, - [921] = {.lex_state = 44}, - [922] = {.lex_state = 0, .external_lex_state = 33}, - [923] = {.lex_state = 17}, - [924] = {.lex_state = 0, .external_lex_state = 28}, - [925] = {.lex_state = 44}, - [926] = {.lex_state = 17}, - [927] = {.lex_state = 0, .external_lex_state = 28}, - [928] = {.lex_state = 0}, - [929] = {.lex_state = 17}, - [930] = {.lex_state = 0, .external_lex_state = 33}, - [931] = {.lex_state = 17}, - [932] = {.lex_state = 21}, - [933] = {.lex_state = 22}, - [934] = {.lex_state = 0, .external_lex_state = 33}, - [935] = {.lex_state = 44}, - [936] = {.lex_state = 0, .external_lex_state = 33}, - [937] = {.lex_state = 0}, - [938] = {.lex_state = 0}, - [939] = {.lex_state = 0, .external_lex_state = 25}, - [940] = {.lex_state = 0, .external_lex_state = 27}, - [941] = {.lex_state = 0, .external_lex_state = 32}, - [942] = {.lex_state = 23}, - [943] = {.lex_state = 0, .external_lex_state = 26}, - [944] = {.lex_state = 0, .external_lex_state = 31}, - [945] = {.lex_state = 0, .external_lex_state = 30}, - [946] = {.lex_state = 21}, - [947] = {.lex_state = 22}, - [948] = {.lex_state = 0, .external_lex_state = 33}, - [949] = {.lex_state = 44}, - [950] = {.lex_state = 0, .external_lex_state = 33}, - [951] = {.lex_state = 0, .external_lex_state = 29}, - [952] = {.lex_state = 17}, - [953] = {.lex_state = 17}, - [954] = {.lex_state = 0, .external_lex_state = 28}, - [955] = {.lex_state = 44}, - [956] = {.lex_state = 17}, - [957] = {.lex_state = 0, .external_lex_state = 28}, - [958] = {.lex_state = 0}, - [959] = {.lex_state = 17}, - [960] = {.lex_state = 21}, - [961] = {.lex_state = 22}, - [962] = {.lex_state = 0, .external_lex_state = 33}, - [963] = {.lex_state = 44}, - [964] = {.lex_state = 0, .external_lex_state = 33}, - [965] = {.lex_state = 17}, - [966] = {.lex_state = 22}, - [967] = {.lex_state = 17}, - [968] = {.lex_state = 0}, - [969] = {.lex_state = 0, .external_lex_state = 25}, - [970] = {.lex_state = 0, .external_lex_state = 27}, - [971] = {.lex_state = 0, .external_lex_state = 32}, - [972] = {.lex_state = 0, .external_lex_state = 32}, - [973] = {.lex_state = 0, .external_lex_state = 31}, - [974] = {.lex_state = 21}, - [975] = {.lex_state = 22}, - [976] = {.lex_state = 0, .external_lex_state = 33}, - [977] = {.lex_state = 44}, - [978] = {.lex_state = 0, .external_lex_state = 33}, + [861] = {.lex_state = 0, .external_lex_state = 30}, + [862] = {.lex_state = 0, .external_lex_state = 29}, + [863] = {.lex_state = 0, .external_lex_state = 23}, + [864] = {.lex_state = 0, .external_lex_state = 26}, + [865] = {.lex_state = 0, .external_lex_state = 27}, + [866] = {.lex_state = 0, .external_lex_state = 33}, + [867] = {.lex_state = 0, .external_lex_state = 34}, + [868] = {.lex_state = 0, .external_lex_state = 35}, + [869] = {.lex_state = 0, .external_lex_state = 36}, + [870] = {.lex_state = 0, .external_lex_state = 37}, + [871] = {.lex_state = 1}, + [872] = {.lex_state = 5}, + [873] = {.lex_state = 0, .external_lex_state = 33}, + [874] = {.lex_state = 5}, + [875] = {.lex_state = 0, .external_lex_state = 38}, + [876] = {.lex_state = 0, .external_lex_state = 39}, + [877] = {.lex_state = 5}, + [878] = {.lex_state = 0, .external_lex_state = 40}, + [879] = {.lex_state = 0, .external_lex_state = 34}, + [880] = {.lex_state = 5}, + [881] = {.lex_state = 5}, + [882] = {.lex_state = 0}, + [883] = {.lex_state = 0, .external_lex_state = 40}, + [884] = {.lex_state = 0, .external_lex_state = 35}, + [885] = {.lex_state = 0, .external_lex_state = 36}, + [886] = {.lex_state = 0, .external_lex_state = 39}, + [887] = {.lex_state = 5}, + [888] = {.lex_state = 0, .external_lex_state = 40}, + [889] = {.lex_state = 0, .external_lex_state = 37}, + [890] = {.lex_state = 0}, + [891] = {.lex_state = 5}, + [892] = {.lex_state = 5}, + [893] = {.lex_state = 5}, + [894] = {.lex_state = 0, .external_lex_state = 40}, + [895] = {.lex_state = 0, .external_lex_state = 40}, + [896] = {.lex_state = 5}, + [897] = {.lex_state = 0, .external_lex_state = 39}, + [898] = {.lex_state = 0, .external_lex_state = 38}, + [899] = {.lex_state = 0, .external_lex_state = 33}, + [900] = {.lex_state = 0, .external_lex_state = 34}, + [901] = {.lex_state = 0, .external_lex_state = 35}, + [902] = {.lex_state = 0, .external_lex_state = 36}, + [903] = {.lex_state = 0, .external_lex_state = 37}, + [904] = {.lex_state = 1}, + [905] = {.lex_state = 5}, + [906] = {.lex_state = 5}, + [907] = {.lex_state = 5}, + [908] = {.lex_state = 1}, + [909] = {.lex_state = 5}, + [910] = {.lex_state = 1}, + [911] = {.lex_state = 0, .external_lex_state = 37}, + [912] = {.lex_state = 0, .external_lex_state = 36}, + [913] = {.lex_state = 0, .external_lex_state = 35}, + [914] = {.lex_state = 0, .external_lex_state = 34}, + [915] = {.lex_state = 0}, + [916] = {.lex_state = 0, .external_lex_state = 33}, + [917] = {.lex_state = 0, .external_lex_state = 38}, + [918] = {.lex_state = 5}, + [919] = {.lex_state = 0, .external_lex_state = 39}, + [920] = {.lex_state = 5}, + [921] = {.lex_state = 0, .external_lex_state = 40}, + [922] = {.lex_state = 0, .external_lex_state = 40}, + [923] = {.lex_state = 5}, + [924] = {.lex_state = 5}, + [925] = {.lex_state = 5}, + [926] = {.lex_state = 5}, + [927] = {.lex_state = 5}, + [928] = {.lex_state = 0, .external_lex_state = 40}, + [929] = {.lex_state = 5}, + [930] = {.lex_state = 0, .external_lex_state = 39}, + [931] = {.lex_state = 0, .external_lex_state = 38}, + [932] = {.lex_state = 0, .external_lex_state = 33}, + [933] = {.lex_state = 0, .external_lex_state = 34}, + [934] = {.lex_state = 0, .external_lex_state = 35}, + [935] = {.lex_state = 0, .external_lex_state = 36}, + [936] = {.lex_state = 0, .external_lex_state = 37}, + [937] = {.lex_state = 1}, + [938] = {.lex_state = 5}, + [939] = {.lex_state = 0, .external_lex_state = 40}, + [940] = {.lex_state = 5}, + [941] = {.lex_state = 0, .external_lex_state = 40}, + [942] = {.lex_state = 5}, + [943] = {.lex_state = 0}, + [944] = {.lex_state = 5}, + [945] = {.lex_state = 5}, + [946] = {.lex_state = 1}, + [947] = {.lex_state = 0, .external_lex_state = 37}, + [948] = {.lex_state = 0}, + [949] = {.lex_state = 0, .external_lex_state = 36}, + [950] = {.lex_state = 0, .external_lex_state = 35}, + [951] = {.lex_state = 0, .external_lex_state = 34}, + [952] = {.lex_state = 0, .external_lex_state = 33}, + [953] = {.lex_state = 0}, + [954] = {.lex_state = 0, .external_lex_state = 40}, + [955] = {.lex_state = 0, .external_lex_state = 38}, + [956] = {.lex_state = 0, .external_lex_state = 39}, + [957] = {.lex_state = 5}, + [958] = {.lex_state = 5}, + [959] = {.lex_state = 5}, + [960] = {.lex_state = 0, .external_lex_state = 40}, + [961] = {.lex_state = 0, .external_lex_state = 40}, + [962] = {.lex_state = 5}, + [963] = {.lex_state = 0, .external_lex_state = 39}, + [964] = {.lex_state = 0, .external_lex_state = 38}, + [965] = {.lex_state = 0, .external_lex_state = 33}, + [966] = {.lex_state = 0, .external_lex_state = 34}, + [967] = {.lex_state = 0, .external_lex_state = 35}, + [968] = {.lex_state = 0, .external_lex_state = 36}, + [969] = {.lex_state = 0, .external_lex_state = 37}, + [970] = {.lex_state = 1}, + [971] = {.lex_state = 5}, + [972] = {.lex_state = 5}, + [973] = {.lex_state = 5}, + [974] = {.lex_state = 0, .external_lex_state = 41}, + [975] = {.lex_state = 5}, + [976] = {.lex_state = 0, .external_lex_state = 42}, + [977] = {.lex_state = 0, .external_lex_state = 41}, + [978] = {.lex_state = 0, .external_lex_state = 40}, [979] = {.lex_state = 0}, - [980] = {.lex_state = 0, .external_lex_state = 30}, - [981] = {.lex_state = 0, .external_lex_state = 25}, - [982] = {.lex_state = 0, .external_lex_state = 29}, - [983] = {.lex_state = 17}, - [984] = {.lex_state = 0, .external_lex_state = 28}, - [985] = {.lex_state = 0, .external_lex_state = 27}, - [986] = {.lex_state = 0, .external_lex_state = 32}, - [987] = {.lex_state = 0, .external_lex_state = 26}, - [988] = {.lex_state = 21}, - [989] = {.lex_state = 22}, - [990] = {.lex_state = 0, .external_lex_state = 33}, - [991] = {.lex_state = 44}, - [992] = {.lex_state = 0, .external_lex_state = 33}, - [993] = {.lex_state = 0, .external_lex_state = 31}, - [994] = {.lex_state = 17}, - [995] = {.lex_state = 0, .external_lex_state = 30}, - [996] = {.lex_state = 0, .external_lex_state = 29}, - [997] = {.lex_state = 17}, - [998] = {.lex_state = 188}, - [999] = {.lex_state = 17}, - [1000] = {.lex_state = 0, .external_lex_state = 28}, - [1001] = {.lex_state = 21}, - [1002] = {.lex_state = 21}, - [1003] = {.lex_state = 22}, - [1004] = {.lex_state = 0, .external_lex_state = 33}, - [1005] = {.lex_state = 44}, - [1006] = {.lex_state = 0, .external_lex_state = 33}, - [1007] = {.lex_state = 44}, - [1008] = {.lex_state = 17}, - [1009] = {.lex_state = 0, .external_lex_state = 33}, - [1010] = {.lex_state = 44}, - [1011] = {.lex_state = 44}, - [1012] = {.lex_state = 0, .external_lex_state = 28}, - [1013] = {.lex_state = 44}, - [1014] = {.lex_state = 44}, - [1015] = {.lex_state = 17}, - [1016] = {.lex_state = 21}, - [1017] = {.lex_state = 22}, - [1018] = {.lex_state = 0, .external_lex_state = 33}, - [1019] = {.lex_state = 44}, - [1020] = {.lex_state = 0, .external_lex_state = 33}, - [1021] = {.lex_state = 0}, - [1022] = {.lex_state = 17}, - [1023] = {.lex_state = 17}, - [1024] = {.lex_state = 0}, - [1025] = {.lex_state = 0, .external_lex_state = 25}, - [1026] = {.lex_state = 0, .external_lex_state = 28}, - [1027] = {.lex_state = 0, .external_lex_state = 27}, - [1028] = {.lex_state = 0, .external_lex_state = 32}, - [1029] = {.lex_state = 0, .external_lex_state = 34}, - [1030] = {.lex_state = 21}, - [1031] = {.lex_state = 22}, - [1032] = {.lex_state = 0, .external_lex_state = 33}, - [1033] = {.lex_state = 44}, - [1034] = {.lex_state = 0, .external_lex_state = 33}, - [1035] = {.lex_state = 0, .external_lex_state = 26}, - [1036] = {.lex_state = 0, .external_lex_state = 35}, - [1037] = {.lex_state = 0, .external_lex_state = 36}, - [1038] = {.lex_state = 0, .external_lex_state = 37}, - [1039] = {.lex_state = 0, .external_lex_state = 38}, - [1040] = {.lex_state = 0, .external_lex_state = 39}, - [1041] = {.lex_state = 0, .external_lex_state = 40}, - [1042] = {.lex_state = 0}, - [1043] = {.lex_state = 0}, - [1044] = {.lex_state = 21}, - [1045] = {.lex_state = 22}, - [1046] = {.lex_state = 0, .external_lex_state = 33}, - [1047] = {.lex_state = 44}, - [1048] = {.lex_state = 0, .external_lex_state = 33}, - [1049] = {.lex_state = 0, .external_lex_state = 31}, - [1050] = {.lex_state = 0}, - [1051] = {.lex_state = 0, .external_lex_state = 30}, - [1052] = {.lex_state = 0, .external_lex_state = 29}, - [1053] = {.lex_state = 17}, - [1054] = {.lex_state = 0, .external_lex_state = 28}, - [1055] = {.lex_state = 44}, - [1056] = {.lex_state = 17}, - [1057] = {.lex_state = 0, .external_lex_state = 28}, - [1058] = {.lex_state = 21}, - [1059] = {.lex_state = 22}, - [1060] = {.lex_state = 0, .external_lex_state = 40}, - [1061] = {.lex_state = 0, .external_lex_state = 39}, - [1062] = {.lex_state = 0, .external_lex_state = 38}, - [1063] = {.lex_state = 0, .external_lex_state = 37}, - [1064] = {.lex_state = 0, .external_lex_state = 36}, - [1065] = {.lex_state = 0, .external_lex_state = 35}, - [1066] = {.lex_state = 0, .external_lex_state = 34}, - [1067] = {.lex_state = 0, .external_lex_state = 40}, - [1068] = {.lex_state = 0, .external_lex_state = 39}, - [1069] = {.lex_state = 0, .external_lex_state = 38}, - [1070] = {.lex_state = 0, .external_lex_state = 37}, - [1071] = {.lex_state = 0, .external_lex_state = 36}, - [1072] = {.lex_state = 0, .external_lex_state = 35}, - [1073] = {.lex_state = 0, .external_lex_state = 34}, - [1074] = {.lex_state = 0, .external_lex_state = 40}, - [1075] = {.lex_state = 0, .external_lex_state = 39}, - [1076] = {.lex_state = 0, .external_lex_state = 38}, - [1077] = {.lex_state = 0, .external_lex_state = 37}, - [1078] = {.lex_state = 0, .external_lex_state = 36}, - [1079] = {.lex_state = 0, .external_lex_state = 35}, - [1080] = {.lex_state = 0, .external_lex_state = 34}, + [980] = {.lex_state = 5}, + [981] = {.lex_state = 0, .external_lex_state = 38}, + [982] = {.lex_state = 0, .external_lex_state = 40}, + [983] = {.lex_state = 5}, + [984] = {.lex_state = 5}, + [985] = {.lex_state = 5}, + [986] = {.lex_state = 1}, + [987] = {.lex_state = 12}, + [988] = {.lex_state = 147}, + [989] = {.lex_state = 13}, + [990] = {.lex_state = 0, .external_lex_state = 41}, + [991] = {.lex_state = 1}, + [992] = {.lex_state = 0, .external_lex_state = 42}, + [993] = {.lex_state = 0, .external_lex_state = 41}, + [994] = {.lex_state = 0, .external_lex_state = 37}, + [995] = {.lex_state = 0, .external_lex_state = 37}, + [996] = {.lex_state = 0, .external_lex_state = 36}, + [997] = {.lex_state = 0, .external_lex_state = 35}, + [998] = {.lex_state = 0, .external_lex_state = 34}, + [999] = {.lex_state = 0, .external_lex_state = 33}, + [1000] = {.lex_state = 0, .external_lex_state = 38}, + [1001] = {.lex_state = 0, .external_lex_state = 39}, + [1002] = {.lex_state = 5}, + [1003] = {.lex_state = 12}, + [1004] = {.lex_state = 13}, + [1005] = {.lex_state = 0, .external_lex_state = 41}, + [1006] = {.lex_state = 0, .external_lex_state = 36}, + [1007] = {.lex_state = 0, .external_lex_state = 42}, + [1008] = {.lex_state = 0, .external_lex_state = 41}, + [1009] = {.lex_state = 0, .external_lex_state = 35}, + [1010] = {.lex_state = 0, .external_lex_state = 34}, + [1011] = {.lex_state = 5}, + [1012] = {.lex_state = 5}, + [1013] = {.lex_state = 0, .external_lex_state = 33}, + [1014] = {.lex_state = 0, .external_lex_state = 38}, + [1015] = {.lex_state = 0, .external_lex_state = 39}, + [1016] = {.lex_state = 0, .external_lex_state = 40}, + [1017] = {.lex_state = 5}, + [1018] = {.lex_state = 12}, + [1019] = {.lex_state = 13}, + [1020] = {.lex_state = 0, .external_lex_state = 41}, + [1021] = {.lex_state = 0, .external_lex_state = 40}, + [1022] = {.lex_state = 0, .external_lex_state = 42}, + [1023] = {.lex_state = 0, .external_lex_state = 41}, + [1024] = {.lex_state = 5}, + [1025] = {.lex_state = 5}, + [1026] = {.lex_state = 0}, + [1027] = {.lex_state = 0, .external_lex_state = 40}, + [1028] = {.lex_state = 0}, + [1029] = {.lex_state = 5}, + [1030] = {.lex_state = 5}, + [1031] = {.lex_state = 1}, + [1032] = {.lex_state = 5}, + [1033] = {.lex_state = 12}, + [1034] = {.lex_state = 13}, + [1035] = {.lex_state = 0, .external_lex_state = 41}, + [1036] = {.lex_state = 0, .external_lex_state = 37}, + [1037] = {.lex_state = 0, .external_lex_state = 42}, + [1038] = {.lex_state = 0, .external_lex_state = 41}, + [1039] = {.lex_state = 0, .external_lex_state = 36}, + [1040] = {.lex_state = 5}, + [1041] = {.lex_state = 0, .external_lex_state = 35}, + [1042] = {.lex_state = 14}, + [1043] = {.lex_state = 5}, + [1044] = {.lex_state = 5}, + [1045] = {.lex_state = 5}, + [1046] = {.lex_state = 0, .external_lex_state = 34}, + [1047] = {.lex_state = 5}, + [1048] = {.lex_state = 12}, + [1049] = {.lex_state = 13}, + [1050] = {.lex_state = 0, .external_lex_state = 41}, + [1051] = {.lex_state = 0, .external_lex_state = 33}, + [1052] = {.lex_state = 0, .external_lex_state = 42}, + [1053] = {.lex_state = 0, .external_lex_state = 41}, + [1054] = {.lex_state = 0, .external_lex_state = 38}, + [1055] = {.lex_state = 13}, + [1056] = {.lex_state = 0, .external_lex_state = 43}, + [1057] = {.lex_state = 0, .external_lex_state = 44}, + [1058] = {.lex_state = 5}, + [1059] = {.lex_state = 1}, + [1060] = {.lex_state = 0, .external_lex_state = 37}, + [1061] = {.lex_state = 0, .external_lex_state = 36}, + [1062] = {.lex_state = 0, .external_lex_state = 35}, + [1063] = {.lex_state = 12}, + [1064] = {.lex_state = 13}, + [1065] = {.lex_state = 0, .external_lex_state = 41}, + [1066] = {.lex_state = 0, .external_lex_state = 39}, + [1067] = {.lex_state = 0, .external_lex_state = 42}, + [1068] = {.lex_state = 0, .external_lex_state = 41}, + [1069] = {.lex_state = 5}, + [1070] = {.lex_state = 0, .external_lex_state = 34}, + [1071] = {.lex_state = 0, .external_lex_state = 33}, + [1072] = {.lex_state = 0, .external_lex_state = 38}, + [1073] = {.lex_state = 0, .external_lex_state = 39}, + [1074] = {.lex_state = 5}, + [1075] = {.lex_state = 147}, + [1076] = {.lex_state = 0, .external_lex_state = 40}, + [1077] = {.lex_state = 12}, + [1078] = {.lex_state = 12}, + [1079] = {.lex_state = 13}, + [1080] = {.lex_state = 0, .external_lex_state = 41}, [1081] = {.lex_state = 0, .external_lex_state = 40}, - [1082] = {.lex_state = 0, .external_lex_state = 39}, - [1083] = {.lex_state = 0, .external_lex_state = 38}, - [1084] = {.lex_state = 0, .external_lex_state = 37}, - [1085] = {.lex_state = 0, .external_lex_state = 36}, - [1086] = {.lex_state = 0, .external_lex_state = 35}, - [1087] = {.lex_state = 0, .external_lex_state = 34}, - [1088] = {.lex_state = 0, .external_lex_state = 40}, - [1089] = {.lex_state = 0, .external_lex_state = 39}, - [1090] = {.lex_state = 0, .external_lex_state = 38}, - [1091] = {.lex_state = 0, .external_lex_state = 37}, - [1092] = {.lex_state = 0, .external_lex_state = 36}, - [1093] = {.lex_state = 0, .external_lex_state = 35}, - [1094] = {.lex_state = 0, .external_lex_state = 34}, - [1095] = {.lex_state = 0, .external_lex_state = 40}, - [1096] = {.lex_state = 0, .external_lex_state = 39}, - [1097] = {.lex_state = 0, .external_lex_state = 38}, - [1098] = {.lex_state = 0, .external_lex_state = 37}, - [1099] = {.lex_state = 0, .external_lex_state = 36}, - [1100] = {.lex_state = 0, .external_lex_state = 35}, - [1101] = {.lex_state = 0, .external_lex_state = 34}, - [1102] = {.lex_state = 0, .external_lex_state = 40}, - [1103] = {.lex_state = 0, .external_lex_state = 39}, - [1104] = {.lex_state = 0, .external_lex_state = 38}, - [1105] = {.lex_state = 0, .external_lex_state = 37}, - [1106] = {.lex_state = 0, .external_lex_state = 36}, - [1107] = {.lex_state = 0, .external_lex_state = 35}, - [1108] = {.lex_state = 0, .external_lex_state = 34}, - [1109] = {.lex_state = 0, .external_lex_state = 40}, - [1110] = {.lex_state = 0, .external_lex_state = 39}, - [1111] = {.lex_state = 0, .external_lex_state = 38}, - [1112] = {.lex_state = 0, .external_lex_state = 37}, - [1113] = {.lex_state = 0, .external_lex_state = 36}, - [1114] = {.lex_state = 0, .external_lex_state = 35}, - [1115] = {.lex_state = 0, .external_lex_state = 34}, - [1116] = {.lex_state = 0, .external_lex_state = 40}, - [1117] = {.lex_state = 0, .external_lex_state = 39}, - [1118] = {.lex_state = 0, .external_lex_state = 38}, - [1119] = {.lex_state = 0, .external_lex_state = 37}, + [1082] = {.lex_state = 0, .external_lex_state = 42}, + [1083] = {.lex_state = 0, .external_lex_state = 41}, + [1084] = {.lex_state = 5}, + [1085] = {.lex_state = 0}, + [1086] = {.lex_state = 0, .external_lex_state = 41}, + [1087] = {.lex_state = 5}, + [1088] = {.lex_state = 5}, + [1089] = {.lex_state = 5}, + [1090] = {.lex_state = 0, .external_lex_state = 42}, + [1091] = {.lex_state = 5}, + [1092] = {.lex_state = 0, .external_lex_state = 40}, + [1093] = {.lex_state = 12}, + [1094] = {.lex_state = 13}, + [1095] = {.lex_state = 0, .external_lex_state = 41}, + [1096] = {.lex_state = 0}, + [1097] = {.lex_state = 0, .external_lex_state = 42}, + [1098] = {.lex_state = 0, .external_lex_state = 41}, + [1099] = {.lex_state = 5}, + [1100] = {.lex_state = 5}, + [1101] = {.lex_state = 0, .external_lex_state = 40}, + [1102] = {.lex_state = 0, .external_lex_state = 45}, + [1103] = {.lex_state = 0, .external_lex_state = 46}, + [1104] = {.lex_state = 0, .external_lex_state = 47}, + [1105] = {.lex_state = 0, .external_lex_state = 48}, + [1106] = {.lex_state = 0, .external_lex_state = 49}, + [1107] = {.lex_state = 0, .external_lex_state = 50}, + [1108] = {.lex_state = 12}, + [1109] = {.lex_state = 13}, + [1110] = {.lex_state = 0, .external_lex_state = 41}, + [1111] = {.lex_state = 1}, + [1112] = {.lex_state = 0, .external_lex_state = 42}, + [1113] = {.lex_state = 0, .external_lex_state = 41}, + [1114] = {.lex_state = 0, .external_lex_state = 37}, + [1115] = {.lex_state = 0, .external_lex_state = 51}, + [1116] = {.lex_state = 0, .external_lex_state = 52}, + [1117] = {.lex_state = 0, .external_lex_state = 53}, + [1118] = {.lex_state = 0}, + [1119] = {.lex_state = 0}, [1120] = {.lex_state = 0, .external_lex_state = 36}, [1121] = {.lex_state = 0, .external_lex_state = 35}, [1122] = {.lex_state = 0, .external_lex_state = 34}, - [1123] = {.lex_state = 0, .external_lex_state = 40}, - [1124] = {.lex_state = 0, .external_lex_state = 39}, - [1125] = {.lex_state = 0, .external_lex_state = 38}, - [1126] = {.lex_state = 0, .external_lex_state = 37}, - [1127] = {.lex_state = 0, .external_lex_state = 36}, - [1128] = {.lex_state = 0, .external_lex_state = 35}, - [1129] = {.lex_state = 0, .external_lex_state = 34}, + [1123] = {.lex_state = 12}, + [1124] = {.lex_state = 13}, + [1125] = {.lex_state = 0, .external_lex_state = 41}, + [1126] = {.lex_state = 0, .external_lex_state = 33}, + [1127] = {.lex_state = 0, .external_lex_state = 42}, + [1128] = {.lex_state = 0, .external_lex_state = 41}, + [1129] = {.lex_state = 0, .external_lex_state = 38}, + [1130] = {.lex_state = 0}, + [1131] = {.lex_state = 0, .external_lex_state = 39}, + [1132] = {.lex_state = 5}, + [1133] = {.lex_state = 0, .external_lex_state = 40}, + [1134] = {.lex_state = 5}, + [1135] = {.lex_state = 0, .external_lex_state = 41}, + [1136] = {.lex_state = 5}, + [1137] = {.lex_state = 0, .external_lex_state = 40}, + [1138] = {.lex_state = 12}, + [1139] = {.lex_state = 13}, + [1140] = {.lex_state = 0, .external_lex_state = 53}, + [1141] = {.lex_state = 0, .external_lex_state = 52}, + [1142] = {.lex_state = 0, .external_lex_state = 51}, + [1143] = {.lex_state = 0, .external_lex_state = 50}, + [1144] = {.lex_state = 0, .external_lex_state = 49}, + [1145] = {.lex_state = 0, .external_lex_state = 48}, + [1146] = {.lex_state = 0, .external_lex_state = 47}, + [1147] = {.lex_state = 0, .external_lex_state = 53}, + [1148] = {.lex_state = 0, .external_lex_state = 52}, + [1149] = {.lex_state = 0, .external_lex_state = 51}, + [1150] = {.lex_state = 0, .external_lex_state = 50}, + [1151] = {.lex_state = 0, .external_lex_state = 49}, + [1152] = {.lex_state = 0, .external_lex_state = 48}, + [1153] = {.lex_state = 0, .external_lex_state = 47}, + [1154] = {.lex_state = 0, .external_lex_state = 53}, + [1155] = {.lex_state = 0, .external_lex_state = 52}, + [1156] = {.lex_state = 0, .external_lex_state = 51}, + [1157] = {.lex_state = 0, .external_lex_state = 50}, + [1158] = {.lex_state = 0, .external_lex_state = 49}, + [1159] = {.lex_state = 0, .external_lex_state = 48}, + [1160] = {.lex_state = 0, .external_lex_state = 47}, + [1161] = {.lex_state = 0, .external_lex_state = 53}, + [1162] = {.lex_state = 0, .external_lex_state = 52}, + [1163] = {.lex_state = 0, .external_lex_state = 51}, + [1164] = {.lex_state = 0, .external_lex_state = 50}, + [1165] = {.lex_state = 0, .external_lex_state = 49}, + [1166] = {.lex_state = 0, .external_lex_state = 48}, + [1167] = {.lex_state = 0, .external_lex_state = 47}, + [1168] = {.lex_state = 0, .external_lex_state = 53}, + [1169] = {.lex_state = 0, .external_lex_state = 52}, + [1170] = {.lex_state = 0, .external_lex_state = 51}, + [1171] = {.lex_state = 0, .external_lex_state = 50}, + [1172] = {.lex_state = 0, .external_lex_state = 49}, + [1173] = {.lex_state = 0, .external_lex_state = 48}, + [1174] = {.lex_state = 0, .external_lex_state = 47}, + [1175] = {.lex_state = 0, .external_lex_state = 53}, + [1176] = {.lex_state = 0, .external_lex_state = 52}, + [1177] = {.lex_state = 0, .external_lex_state = 51}, + [1178] = {.lex_state = 0, .external_lex_state = 50}, + [1179] = {.lex_state = 0, .external_lex_state = 49}, + [1180] = {.lex_state = 0, .external_lex_state = 48}, + [1181] = {.lex_state = 0, .external_lex_state = 47}, + [1182] = {.lex_state = 0, .external_lex_state = 53}, + [1183] = {.lex_state = 0, .external_lex_state = 52}, + [1184] = {.lex_state = 0, .external_lex_state = 51}, + [1185] = {.lex_state = 0, .external_lex_state = 50}, + [1186] = {.lex_state = 0, .external_lex_state = 49}, + [1187] = {.lex_state = 0, .external_lex_state = 48}, + [1188] = {.lex_state = 0, .external_lex_state = 47}, + [1189] = {.lex_state = 0, .external_lex_state = 53}, + [1190] = {.lex_state = 0, .external_lex_state = 52}, + [1191] = {.lex_state = 0, .external_lex_state = 51}, + [1192] = {.lex_state = 0, .external_lex_state = 50}, + [1193] = {.lex_state = 0, .external_lex_state = 49}, + [1194] = {.lex_state = 0, .external_lex_state = 48}, + [1195] = {.lex_state = 0, .external_lex_state = 47}, + [1196] = {.lex_state = 0, .external_lex_state = 53}, + [1197] = {.lex_state = 0, .external_lex_state = 52}, + [1198] = {.lex_state = 0, .external_lex_state = 51}, + [1199] = {.lex_state = 0, .external_lex_state = 50}, + [1200] = {.lex_state = 0, .external_lex_state = 49}, + [1201] = {.lex_state = 0, .external_lex_state = 48}, + [1202] = {.lex_state = 0, .external_lex_state = 47}, + [1203] = {.lex_state = 0, .external_lex_state = 53}, + [1204] = {.lex_state = 0, .external_lex_state = 52}, + [1205] = {.lex_state = 0, .external_lex_state = 51}, + [1206] = {.lex_state = 0, .external_lex_state = 50}, + [1207] = {.lex_state = 0, .external_lex_state = 49}, + [1208] = {.lex_state = 0, .external_lex_state = 48}, + [1209] = {.lex_state = 0, .external_lex_state = 47}, + [1210] = {.lex_state = 0, .external_lex_state = 53}, + [1211] = {.lex_state = 0, .external_lex_state = 52}, + [1212] = {.lex_state = 0, .external_lex_state = 51}, + [1213] = {.lex_state = 0, .external_lex_state = 50}, + [1214] = {.lex_state = 0, .external_lex_state = 49}, + [1215] = {.lex_state = 0, .external_lex_state = 48}, + [1216] = {.lex_state = 0, .external_lex_state = 47}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [0] = { [ts_builtin_sym_end] = ACTIONS(1), - [anon_sym_LBRACE] = ACTIONS(1), - [anon_sym_RBRACE] = ACTIONS(1), [anon_sym_LBRACE_] = ACTIONS(1), [anon_sym__] = ACTIONS(1), [anon_sym_LBRACE_STAR] = ACTIONS(1), @@ -5433,13 +5029,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_symbol] = ACTIONS(1), [anon_sym_LBRACK_CARET] = ACTIONS(1), [anon_sym_RBRACK] = ACTIONS(1), - [sym__id] = ACTIONS(1), [anon_sym_BANG_LBRACK] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(1), [anon_sym_LBRACK] = ACTIONS(1), - [anon_sym_RBRACK2] = ACTIONS(1), [anon_sym_LPAREN] = ACTIONS(1), [anon_sym_RPAREN] = ACTIONS(1), - [anon_sym_LBRACE2] = ACTIONS(1), + [anon_sym_RBRACE] = ACTIONS(1), [anon_sym_PERCENT] = ACTIONS(1), [anon_sym_LBRACE_EQ2] = ACTIONS(1), [anon_sym_DOLLAR] = ACTIONS(1), @@ -5473,53 +5068,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_insert_end] = ACTIONS(1), [sym__delete_mark_begin] = ACTIONS(1), [sym_delete_end] = ACTIONS(1), + [sym__bracketed_text_mark_begin] = ACTIONS(1), + [sym__bracketed_text_end] = ACTIONS(1), + [sym__image_description_mark_begin] = ACTIONS(1), + [sym__image_description_end] = ACTIONS(1), + [sym__inline_attribute_mark_begin] = ACTIONS(1), + [sym__inline_attribute_end] = ACTIONS(1), [sym__in_fallback] = ACTIONS(1), [sym__non_whitespace_check] = ACTIONS(1), [sym__error] = ACTIONS(1), }, [1] = { - [sym_inline] = STATE(1043), - [sym__inline] = STATE(1042), - [sym__element] = STATE(38), - [sym_emphasis] = STATE(166), - [sym_emphasis_begin] = STATE(1041), - [sym_strong] = STATE(166), - [sym_strong_begin] = STATE(1040), - [sym_superscript] = STATE(166), - [sym_superscript_begin] = STATE(1039), - [sym_subscript] = STATE(166), - [sym_subscript_begin] = STATE(1038), - [sym_highlighted] = STATE(166), - [sym_highlighted_begin] = STATE(1037), - [sym_insert] = STATE(166), - [sym_insert_begin] = STATE(1036), - [sym_delete] = STATE(166), - [sym_delete_begin] = STATE(1029), - [sym_hard_line_break] = STATE(166), - [sym__smart_punctuation] = STATE(166), - [sym_autolink] = STATE(166), - [sym_footnote_reference] = STATE(166), - [sym__image] = STATE(166), - [sym_full_reference_image] = STATE(166), - [sym_collapsed_reference_image] = STATE(166), - [sym_inline_image] = STATE(166), - [sym__image_description] = STATE(696), - [sym__link] = STATE(166), - [sym_full_reference_link] = STATE(166), - [sym_collapsed_reference_link] = STATE(166), - [sym_inline_link] = STATE(166), - [sym_link_text] = STATE(693), - [sym__comment_with_spaces] = STATE(166), - [sym_span] = STATE(166), - [sym_raw_inline] = STATE(166), - [sym_math] = STATE(166), - [sym_verbatim] = STATE(166), - [sym__todo_highlights] = STATE(166), - [sym_todo] = STATE(166), - [sym_note] = STATE(166), - [sym__symbol_fallback] = STATE(166), - [aux_sym__text] = STATE(160), - [aux_sym__inline_repeat1] = STATE(38), + [sym_inline] = STATE(1119), + [sym__inline] = STATE(1118), + [sym__element] = STATE(37), + [sym_emphasis] = STATE(143), + [sym_emphasis_begin] = STATE(1117), + [sym_strong] = STATE(143), + [sym_strong_begin] = STATE(1116), + [sym_superscript] = STATE(143), + [sym_superscript_begin] = STATE(1115), + [sym_subscript] = STATE(143), + [sym_subscript_begin] = STATE(1107), + [sym_highlighted] = STATE(143), + [sym_highlighted_begin] = STATE(1106), + [sym_insert] = STATE(143), + [sym_insert_begin] = STATE(1105), + [sym_delete] = STATE(143), + [sym_delete_begin] = STATE(1104), + [sym_hard_line_break] = STATE(143), + [sym__smart_punctuation] = STATE(143), + [sym_autolink] = STATE(143), + [sym_footnote_reference] = STATE(143), + [sym__image] = STATE(143), + [sym_full_reference_image] = STATE(143), + [sym_collapsed_reference_image] = STATE(143), + [sym_inline_image] = STATE(143), + [sym__image_description] = STATE(673), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(143), + [sym_full_reference_link] = STATE(143), + [sym_collapsed_reference_link] = STATE(143), + [sym_inline_link] = STATE(143), + [sym_link_text] = STATE(669), + [sym_span] = STATE(37), + [sym__bracketed_text] = STATE(661), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(143), + [sym_raw_inline] = STATE(143), + [sym_math] = STATE(143), + [sym_verbatim] = STATE(143), + [sym__todo_highlights] = STATE(143), + [sym_todo] = STATE(143), + [sym_note] = STATE(143), + [sym__symbol_fallback] = STATE(143), + [aux_sym__text] = STATE(130), + [aux_sym__inline_repeat1] = STATE(37), [anon_sym_LBRACE_] = ACTIONS(3), [anon_sym__] = ACTIONS(5), [anon_sym_LBRACE_STAR] = ACTIONS(7), @@ -5542,7 +5146,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_CARET] = ACTIONS(29), [anon_sym_BANG_LBRACK] = ACTIONS(31), [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACE2] = ACTIONS(25), [anon_sym_DOLLAR] = ACTIONS(35), [anon_sym_TODO] = ACTIONS(37), [anon_sym_WIP] = ACTIONS(37), @@ -5556,2871 +5159,2816 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(47), }, [2] = { - [sym__inline] = STATE(1011), - [sym__element] = STATE(106), - [sym_emphasis] = STATE(211), - [sym_emphasis_begin] = STATE(1060), - [sym_strong] = STATE(211), - [sym_strong_begin] = STATE(1061), - [sym_superscript] = STATE(211), - [sym_superscript_begin] = STATE(1062), - [sym_subscript] = STATE(211), - [sym_subscript_begin] = STATE(1063), - [sym_highlighted] = STATE(211), - [sym_highlighted_begin] = STATE(1064), - [sym_insert] = STATE(211), - [sym_insert_begin] = STATE(1065), - [sym_delete] = STATE(211), - [sym_delete_begin] = STATE(1066), - [sym_hard_line_break] = STATE(211), - [sym__smart_punctuation] = STATE(211), - [sym_autolink] = STATE(211), - [sym_footnote_reference] = STATE(211), - [sym__image] = STATE(211), - [sym_full_reference_image] = STATE(211), - [sym_collapsed_reference_image] = STATE(211), - [sym_inline_image] = STATE(211), - [sym__image_description] = STATE(671), - [sym__link] = STATE(211), - [sym_full_reference_link] = STATE(211), - [sym_collapsed_reference_link] = STATE(211), - [sym_inline_link] = STATE(211), - [sym_link_text] = STATE(676), - [sym__comment_with_spaces] = STATE(211), - [sym_span] = STATE(211), - [sym_raw_inline] = STATE(211), - [sym_math] = STATE(211), - [sym_verbatim] = STATE(211), - [sym__todo_highlights] = STATE(211), - [sym_todo] = STATE(211), - [sym_note] = STATE(211), - [sym__symbol_fallback] = STATE(211), - [aux_sym__text] = STATE(139), - [aux_sym__inline_repeat1] = STATE(106), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(51), - [anon_sym__] = ACTIONS(54), - [anon_sym_LBRACE_STAR] = ACTIONS(57), - [anon_sym_STAR] = ACTIONS(60), - [anon_sym_LBRACE_CARET] = ACTIONS(63), - [anon_sym_CARET] = ACTIONS(63), - [anon_sym_LBRACE_TILDE] = ACTIONS(66), - [anon_sym_TILDE] = ACTIONS(66), - [anon_sym_LBRACE_EQ] = ACTIONS(69), - [anon_sym_LBRACE_PLUS] = ACTIONS(72), - [anon_sym_LBRACE_DASH] = ACTIONS(75), - [anon_sym_BSLASH] = ACTIONS(78), - [sym_quotation_marks] = ACTIONS(81), - [sym_ellipsis] = ACTIONS(81), - [sym_em_dash] = ACTIONS(81), - [sym_en_dash] = ACTIONS(84), - [sym_backslash_escape] = ACTIONS(84), - [anon_sym_LT] = ACTIONS(87), - [sym_symbol] = ACTIONS(81), - [anon_sym_LBRACK_CARET] = ACTIONS(90), - [anon_sym_RBRACK] = ACTIONS(93), - [anon_sym_BANG_LBRACK] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(98), - [anon_sym_RBRACK2] = ACTIONS(101), - [anon_sym_LBRACE2] = ACTIONS(84), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_TODO] = ACTIONS(106), - [anon_sym_WIP] = ACTIONS(106), - [anon_sym_NOTE] = ACTIONS(109), - [anon_sym_INFO] = ACTIONS(109), - [anon_sym_XXX] = ACTIONS(109), - [sym_fixme] = ACTIONS(81), - [sym__whitespace1] = ACTIONS(112), - [sym__newline] = ACTIONS(115), - [aux_sym__text_token1] = ACTIONS(118), - [sym__verbatim_begin] = ACTIONS(121), + [sym__inline] = STATE(1057), + [sym__element] = STATE(72), + [sym_emphasis] = STATE(137), + [sym_emphasis_begin] = STATE(1196), + [sym_strong] = STATE(137), + [sym_strong_begin] = STATE(1197), + [sym_superscript] = STATE(137), + [sym_superscript_begin] = STATE(1198), + [sym_subscript] = STATE(137), + [sym_subscript_begin] = STATE(1199), + [sym_highlighted] = STATE(137), + [sym_highlighted_begin] = STATE(1200), + [sym_insert] = STATE(137), + [sym_insert_begin] = STATE(1201), + [sym_delete] = STATE(137), + [sym_delete_begin] = STATE(1202), + [sym_hard_line_break] = STATE(137), + [sym__smart_punctuation] = STATE(137), + [sym_autolink] = STATE(137), + [sym_footnote_reference] = STATE(137), + [sym__image] = STATE(137), + [sym_full_reference_image] = STATE(137), + [sym_collapsed_reference_image] = STATE(137), + [sym_inline_image] = STATE(137), + [sym__image_description] = STATE(666), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(137), + [sym_full_reference_link] = STATE(137), + [sym_collapsed_reference_link] = STATE(137), + [sym_inline_link] = STATE(137), + [sym_link_text] = STATE(665), + [sym_span] = STATE(72), + [sym__bracketed_text] = STATE(651), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(137), + [sym_raw_inline] = STATE(137), + [sym_math] = STATE(137), + [sym_verbatim] = STATE(137), + [sym__todo_highlights] = STATE(137), + [sym_todo] = STATE(137), + [sym_note] = STATE(137), + [sym__symbol_fallback] = STATE(137), + [aux_sym__text] = STATE(121), + [aux_sym__inline_repeat1] = STATE(72), + [anon_sym_LBRACE_] = ACTIONS(49), + [anon_sym__] = ACTIONS(51), + [anon_sym_LBRACE_STAR] = ACTIONS(53), + [anon_sym_STAR] = ACTIONS(55), + [anon_sym_LBRACE_CARET] = ACTIONS(57), + [anon_sym_CARET] = ACTIONS(57), + [anon_sym_LBRACE_TILDE] = ACTIONS(59), + [anon_sym_TILDE] = ACTIONS(59), + [anon_sym_LBRACE_EQ] = ACTIONS(61), + [anon_sym_LBRACE_PLUS] = ACTIONS(63), + [anon_sym_LBRACE_DASH] = ACTIONS(65), + [anon_sym_BSLASH] = ACTIONS(67), + [sym_quotation_marks] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(69), + [sym_em_dash] = ACTIONS(69), + [sym_en_dash] = ACTIONS(71), + [sym_backslash_escape] = ACTIONS(71), + [anon_sym_LT] = ACTIONS(73), + [sym_symbol] = ACTIONS(69), + [anon_sym_LBRACK_CARET] = ACTIONS(75), + [anon_sym_BANG_LBRACK] = ACTIONS(77), + [anon_sym_LBRACK] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(81), + [anon_sym_TODO] = ACTIONS(83), + [anon_sym_WIP] = ACTIONS(83), + [anon_sym_NOTE] = ACTIONS(85), + [anon_sym_INFO] = ACTIONS(85), + [anon_sym_XXX] = ACTIONS(85), + [sym_fixme] = ACTIONS(69), + [sym__whitespace1] = ACTIONS(87), + [sym__newline] = ACTIONS(89), + [aux_sym__text_token1] = ACTIONS(91), + [sym__verbatim_begin] = ACTIONS(93), + [sym__image_description_end] = ACTIONS(95), }, [3] = { - [sym__inline] = STATE(1011), - [sym__element] = STATE(106), - [sym_emphasis] = STATE(211), - [sym_emphasis_begin] = STATE(1060), - [sym_strong] = STATE(211), - [sym_strong_begin] = STATE(1061), - [sym_superscript] = STATE(211), - [sym_superscript_begin] = STATE(1062), - [sym_subscript] = STATE(211), - [sym_subscript_begin] = STATE(1063), - [sym_highlighted] = STATE(211), - [sym_highlighted_begin] = STATE(1064), - [sym_insert] = STATE(211), - [sym_insert_begin] = STATE(1065), - [sym_delete] = STATE(211), - [sym_delete_begin] = STATE(1066), - [sym_hard_line_break] = STATE(211), - [sym__smart_punctuation] = STATE(211), - [sym_autolink] = STATE(211), - [sym_footnote_reference] = STATE(211), - [sym__image] = STATE(211), - [sym_full_reference_image] = STATE(211), - [sym_collapsed_reference_image] = STATE(211), - [sym_inline_image] = STATE(211), - [sym__image_description] = STATE(671), - [sym__link] = STATE(211), - [sym_full_reference_link] = STATE(211), - [sym_collapsed_reference_link] = STATE(211), - [sym_inline_link] = STATE(211), - [sym_link_text] = STATE(676), - [sym__comment_with_spaces] = STATE(211), - [sym_span] = STATE(211), - [sym_raw_inline] = STATE(211), - [sym_math] = STATE(211), - [sym_verbatim] = STATE(211), - [sym__todo_highlights] = STATE(211), - [sym_todo] = STATE(211), - [sym_note] = STATE(211), - [sym__symbol_fallback] = STATE(211), - [aux_sym__text] = STATE(139), - [aux_sym__inline_repeat1] = STATE(106), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(51), - [anon_sym__] = ACTIONS(54), - [anon_sym_LBRACE_STAR] = ACTIONS(57), - [anon_sym_STAR] = ACTIONS(60), - [anon_sym_LBRACE_CARET] = ACTIONS(63), - [anon_sym_CARET] = ACTIONS(63), - [anon_sym_LBRACE_TILDE] = ACTIONS(66), - [anon_sym_TILDE] = ACTIONS(66), - [anon_sym_LBRACE_EQ] = ACTIONS(69), - [anon_sym_LBRACE_PLUS] = ACTIONS(72), - [anon_sym_LBRACE_DASH] = ACTIONS(75), - [anon_sym_BSLASH] = ACTIONS(78), - [sym_quotation_marks] = ACTIONS(81), - [sym_ellipsis] = ACTIONS(81), - [sym_em_dash] = ACTIONS(81), - [sym_en_dash] = ACTIONS(84), - [sym_backslash_escape] = ACTIONS(84), - [anon_sym_LT] = ACTIONS(87), - [sym_symbol] = ACTIONS(81), - [anon_sym_LBRACK_CARET] = ACTIONS(90), - [anon_sym_RBRACK] = ACTIONS(124), - [anon_sym_BANG_LBRACK] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(98), - [anon_sym_LBRACE2] = ACTIONS(84), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_TODO] = ACTIONS(106), - [anon_sym_WIP] = ACTIONS(106), - [anon_sym_NOTE] = ACTIONS(109), - [anon_sym_INFO] = ACTIONS(109), - [anon_sym_XXX] = ACTIONS(109), - [sym_fixme] = ACTIONS(81), - [sym__whitespace1] = ACTIONS(112), - [sym__newline] = ACTIONS(115), - [aux_sym__text_token1] = ACTIONS(118), - [sym__verbatim_begin] = ACTIONS(121), - [sym_delete_end] = ACTIONS(101), + [sym__inline] = STATE(1046), + [sym__element] = STATE(70), + [sym_emphasis] = STATE(136), + [sym_emphasis_begin] = STATE(1161), + [sym_strong] = STATE(136), + [sym_strong_begin] = STATE(1162), + [sym_superscript] = STATE(136), + [sym_superscript_begin] = STATE(1163), + [sym_subscript] = STATE(136), + [sym_subscript_begin] = STATE(1164), + [sym_highlighted] = STATE(136), + [sym_highlighted_begin] = STATE(1165), + [sym_insert] = STATE(136), + [sym_insert_begin] = STATE(1166), + [sym_delete] = STATE(136), + [sym_delete_begin] = STATE(1167), + [sym_hard_line_break] = STATE(136), + [sym__smart_punctuation] = STATE(136), + [sym_autolink] = STATE(136), + [sym_footnote_reference] = STATE(136), + [sym__image] = STATE(136), + [sym_full_reference_image] = STATE(136), + [sym_collapsed_reference_image] = STATE(136), + [sym_inline_image] = STATE(136), + [sym__image_description] = STATE(690), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(136), + [sym_full_reference_link] = STATE(136), + [sym_collapsed_reference_link] = STATE(136), + [sym_inline_link] = STATE(136), + [sym_link_text] = STATE(691), + [sym_span] = STATE(70), + [sym__bracketed_text] = STATE(653), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(136), + [sym_raw_inline] = STATE(136), + [sym_math] = STATE(136), + [sym_verbatim] = STATE(136), + [sym__todo_highlights] = STATE(136), + [sym_todo] = STATE(136), + [sym_note] = STATE(136), + [sym__symbol_fallback] = STATE(136), + [aux_sym__text] = STATE(125), + [aux_sym__inline_repeat1] = STATE(70), + [anon_sym_LBRACE_] = ACTIONS(97), + [anon_sym__] = ACTIONS(99), + [anon_sym_LBRACE_STAR] = ACTIONS(101), + [anon_sym_STAR] = ACTIONS(103), + [anon_sym_LBRACE_CARET] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [anon_sym_LBRACE_TILDE] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(107), + [anon_sym_LBRACE_EQ] = ACTIONS(109), + [anon_sym_LBRACE_PLUS] = ACTIONS(111), + [anon_sym_LBRACE_DASH] = ACTIONS(113), + [anon_sym_BSLASH] = ACTIONS(115), + [sym_quotation_marks] = ACTIONS(117), + [sym_ellipsis] = ACTIONS(117), + [sym_em_dash] = ACTIONS(117), + [sym_en_dash] = ACTIONS(119), + [sym_backslash_escape] = ACTIONS(119), + [anon_sym_LT] = ACTIONS(121), + [sym_symbol] = ACTIONS(117), + [anon_sym_LBRACK_CARET] = ACTIONS(123), + [anon_sym_BANG_LBRACK] = ACTIONS(125), + [anon_sym_LBRACK] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_TODO] = ACTIONS(131), + [anon_sym_WIP] = ACTIONS(131), + [anon_sym_NOTE] = ACTIONS(133), + [anon_sym_INFO] = ACTIONS(133), + [anon_sym_XXX] = ACTIONS(133), + [sym_fixme] = ACTIONS(117), + [sym__whitespace1] = ACTIONS(135), + [sym__newline] = ACTIONS(137), + [aux_sym__text_token1] = ACTIONS(139), + [sym__verbatim_begin] = ACTIONS(141), }, [4] = { - [sym__inline] = STATE(1011), - [sym__element] = STATE(106), - [sym_emphasis] = STATE(211), - [sym_emphasis_begin] = STATE(1060), - [sym_strong] = STATE(211), - [sym_strong_begin] = STATE(1061), - [sym_superscript] = STATE(211), - [sym_superscript_begin] = STATE(1062), - [sym_subscript] = STATE(211), - [sym_subscript_begin] = STATE(1063), - [sym_highlighted] = STATE(211), - [sym_highlighted_begin] = STATE(1064), - [sym_insert] = STATE(211), - [sym_insert_begin] = STATE(1065), - [sym_delete] = STATE(211), - [sym_delete_begin] = STATE(1066), - [sym_hard_line_break] = STATE(211), - [sym__smart_punctuation] = STATE(211), - [sym_autolink] = STATE(211), - [sym_footnote_reference] = STATE(211), - [sym__image] = STATE(211), - [sym_full_reference_image] = STATE(211), - [sym_collapsed_reference_image] = STATE(211), - [sym_inline_image] = STATE(211), - [sym__image_description] = STATE(671), - [sym__link] = STATE(211), - [sym_full_reference_link] = STATE(211), - [sym_collapsed_reference_link] = STATE(211), - [sym_inline_link] = STATE(211), - [sym_link_text] = STATE(676), - [sym__comment_with_spaces] = STATE(211), - [sym_span] = STATE(211), - [sym_raw_inline] = STATE(211), - [sym_math] = STATE(211), - [sym_verbatim] = STATE(211), - [sym__todo_highlights] = STATE(211), - [sym_todo] = STATE(211), - [sym_note] = STATE(211), - [sym__symbol_fallback] = STATE(211), - [aux_sym__text] = STATE(139), - [aux_sym__inline_repeat1] = STATE(106), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(51), - [anon_sym__] = ACTIONS(54), - [anon_sym_LBRACE_STAR] = ACTIONS(57), - [anon_sym_STAR] = ACTIONS(60), - [anon_sym_LBRACE_CARET] = ACTIONS(63), - [anon_sym_CARET] = ACTIONS(63), - [anon_sym_LBRACE_TILDE] = ACTIONS(66), - [anon_sym_TILDE] = ACTIONS(66), - [anon_sym_LBRACE_EQ] = ACTIONS(69), - [anon_sym_LBRACE_PLUS] = ACTIONS(72), - [anon_sym_LBRACE_DASH] = ACTIONS(75), - [anon_sym_BSLASH] = ACTIONS(78), - [sym_quotation_marks] = ACTIONS(81), - [sym_ellipsis] = ACTIONS(81), - [sym_em_dash] = ACTIONS(81), - [sym_en_dash] = ACTIONS(84), - [sym_backslash_escape] = ACTIONS(84), - [anon_sym_LT] = ACTIONS(87), - [sym_symbol] = ACTIONS(81), - [anon_sym_LBRACK_CARET] = ACTIONS(90), - [anon_sym_RBRACK] = ACTIONS(124), - [anon_sym_BANG_LBRACK] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(98), - [anon_sym_LBRACE2] = ACTIONS(84), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_TODO] = ACTIONS(106), - [anon_sym_WIP] = ACTIONS(106), - [anon_sym_NOTE] = ACTIONS(109), - [anon_sym_INFO] = ACTIONS(109), - [anon_sym_XXX] = ACTIONS(109), - [sym_fixme] = ACTIONS(81), - [sym__whitespace1] = ACTIONS(112), - [sym__newline] = ACTIONS(115), - [aux_sym__text_token1] = ACTIONS(118), - [sym__verbatim_begin] = ACTIONS(121), - [sym_insert_end] = ACTIONS(101), + [sym__inline] = STATE(908), + [sym__element] = STATE(65), + [sym_emphasis] = STATE(133), + [sym_emphasis_begin] = STATE(1189), + [sym_strong] = STATE(133), + [sym_strong_begin] = STATE(1190), + [sym_superscript] = STATE(133), + [sym_superscript_begin] = STATE(1191), + [sym_subscript] = STATE(133), + [sym_subscript_begin] = STATE(1192), + [sym_highlighted] = STATE(133), + [sym_highlighted_begin] = STATE(1193), + [sym_insert] = STATE(133), + [sym_insert_begin] = STATE(1194), + [sym_delete] = STATE(133), + [sym_delete_begin] = STATE(1195), + [sym_hard_line_break] = STATE(133), + [sym__smart_punctuation] = STATE(133), + [sym_autolink] = STATE(133), + [sym_footnote_reference] = STATE(133), + [sym__image] = STATE(133), + [sym_full_reference_image] = STATE(133), + [sym_collapsed_reference_image] = STATE(133), + [sym_inline_image] = STATE(133), + [sym__image_description] = STATE(670), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(133), + [sym_full_reference_link] = STATE(133), + [sym_collapsed_reference_link] = STATE(133), + [sym_inline_link] = STATE(133), + [sym_link_text] = STATE(663), + [sym_span] = STATE(65), + [sym__bracketed_text] = STATE(662), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(133), + [sym_raw_inline] = STATE(133), + [sym_math] = STATE(133), + [sym_verbatim] = STATE(133), + [sym__todo_highlights] = STATE(133), + [sym_todo] = STATE(133), + [sym_note] = STATE(133), + [sym__symbol_fallback] = STATE(133), + [aux_sym__text] = STATE(123), + [aux_sym__inline_repeat1] = STATE(65), + [anon_sym_LBRACE_] = ACTIONS(143), + [anon_sym__] = ACTIONS(145), + [anon_sym_LBRACE_STAR] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(149), + [anon_sym_LBRACE_CARET] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(151), + [anon_sym_LBRACE_TILDE] = ACTIONS(153), + [anon_sym_TILDE] = ACTIONS(153), + [anon_sym_LBRACE_EQ] = ACTIONS(155), + [anon_sym_LBRACE_PLUS] = ACTIONS(157), + [anon_sym_LBRACE_DASH] = ACTIONS(159), + [anon_sym_BSLASH] = ACTIONS(161), + [sym_quotation_marks] = ACTIONS(163), + [sym_ellipsis] = ACTIONS(163), + [sym_em_dash] = ACTIONS(163), + [sym_en_dash] = ACTIONS(165), + [sym_backslash_escape] = ACTIONS(165), + [anon_sym_LT] = ACTIONS(167), + [sym_symbol] = ACTIONS(163), + [anon_sym_LBRACK_CARET] = ACTIONS(169), + [anon_sym_BANG_LBRACK] = ACTIONS(171), + [anon_sym_LBRACK] = ACTIONS(173), + [anon_sym_DOLLAR] = ACTIONS(175), + [anon_sym_TODO] = ACTIONS(177), + [anon_sym_WIP] = ACTIONS(177), + [anon_sym_NOTE] = ACTIONS(179), + [anon_sym_INFO] = ACTIONS(179), + [anon_sym_XXX] = ACTIONS(179), + [sym_fixme] = ACTIONS(163), + [sym__whitespace1] = ACTIONS(181), + [sym__newline] = ACTIONS(183), + [aux_sym__text_token1] = ACTIONS(185), + [sym__verbatim_begin] = ACTIONS(187), }, [5] = { - [sym__inline] = STATE(1011), - [sym__element] = STATE(106), - [sym_emphasis] = STATE(211), - [sym_emphasis_begin] = STATE(1060), - [sym_strong] = STATE(211), - [sym_strong_begin] = STATE(1061), - [sym_superscript] = STATE(211), - [sym_superscript_begin] = STATE(1062), - [sym_subscript] = STATE(211), - [sym_subscript_begin] = STATE(1063), - [sym_highlighted] = STATE(211), - [sym_highlighted_begin] = STATE(1064), - [sym_insert] = STATE(211), - [sym_insert_begin] = STATE(1065), - [sym_delete] = STATE(211), - [sym_delete_begin] = STATE(1066), - [sym_hard_line_break] = STATE(211), - [sym__smart_punctuation] = STATE(211), - [sym_autolink] = STATE(211), - [sym_footnote_reference] = STATE(211), - [sym__image] = STATE(211), - [sym_full_reference_image] = STATE(211), - [sym_collapsed_reference_image] = STATE(211), - [sym_inline_image] = STATE(211), - [sym__image_description] = STATE(671), - [sym__link] = STATE(211), - [sym_full_reference_link] = STATE(211), - [sym_collapsed_reference_link] = STATE(211), - [sym_inline_link] = STATE(211), - [sym_link_text] = STATE(676), - [sym__comment_with_spaces] = STATE(211), - [sym_span] = STATE(211), - [sym_raw_inline] = STATE(211), - [sym_math] = STATE(211), - [sym_verbatim] = STATE(211), - [sym__todo_highlights] = STATE(211), - [sym_todo] = STATE(211), - [sym_note] = STATE(211), - [sym__symbol_fallback] = STATE(211), - [aux_sym__text] = STATE(139), - [aux_sym__inline_repeat1] = STATE(106), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(51), - [anon_sym__] = ACTIONS(54), - [anon_sym_LBRACE_STAR] = ACTIONS(57), - [anon_sym_STAR] = ACTIONS(60), - [anon_sym_LBRACE_CARET] = ACTIONS(63), - [anon_sym_CARET] = ACTIONS(63), - [anon_sym_LBRACE_TILDE] = ACTIONS(66), - [anon_sym_TILDE] = ACTIONS(66), - [anon_sym_LBRACE_EQ] = ACTIONS(69), - [anon_sym_LBRACE_PLUS] = ACTIONS(72), - [anon_sym_LBRACE_DASH] = ACTIONS(75), - [anon_sym_BSLASH] = ACTIONS(78), - [sym_quotation_marks] = ACTIONS(81), - [sym_ellipsis] = ACTIONS(81), - [sym_em_dash] = ACTIONS(81), - [sym_en_dash] = ACTIONS(84), - [sym_backslash_escape] = ACTIONS(84), - [anon_sym_LT] = ACTIONS(87), - [sym_symbol] = ACTIONS(81), - [anon_sym_LBRACK_CARET] = ACTIONS(90), - [anon_sym_RBRACK] = ACTIONS(124), - [anon_sym_BANG_LBRACK] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(98), - [anon_sym_LBRACE2] = ACTIONS(84), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_TODO] = ACTIONS(106), - [anon_sym_WIP] = ACTIONS(106), - [anon_sym_NOTE] = ACTIONS(109), - [anon_sym_INFO] = ACTIONS(109), - [anon_sym_XXX] = ACTIONS(109), - [sym_fixme] = ACTIONS(81), - [sym__whitespace1] = ACTIONS(112), - [sym__newline] = ACTIONS(115), - [aux_sym__text_token1] = ACTIONS(118), - [sym__verbatim_begin] = ACTIONS(121), - [sym_strong_end] = ACTIONS(101), + [sym__inline] = STATE(969), + [sym__element] = STATE(21), + [sym_emphasis] = STATE(134), + [sym_emphasis_begin] = STATE(1182), + [sym_strong] = STATE(134), + [sym_strong_begin] = STATE(1183), + [sym_superscript] = STATE(134), + [sym_superscript_begin] = STATE(1184), + [sym_subscript] = STATE(134), + [sym_subscript_begin] = STATE(1185), + [sym_highlighted] = STATE(134), + [sym_highlighted_begin] = STATE(1186), + [sym_insert] = STATE(134), + [sym_insert_begin] = STATE(1187), + [sym_delete] = STATE(134), + [sym_delete_begin] = STATE(1188), + [sym_hard_line_break] = STATE(134), + [sym__smart_punctuation] = STATE(134), + [sym_autolink] = STATE(134), + [sym_footnote_reference] = STATE(134), + [sym__image] = STATE(134), + [sym_full_reference_image] = STATE(134), + [sym_collapsed_reference_image] = STATE(134), + [sym_inline_image] = STATE(134), + [sym__image_description] = STATE(677), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(134), + [sym_full_reference_link] = STATE(134), + [sym_collapsed_reference_link] = STATE(134), + [sym_inline_link] = STATE(134), + [sym_link_text] = STATE(675), + [sym_span] = STATE(21), + [sym__bracketed_text] = STATE(660), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(134), + [sym_raw_inline] = STATE(134), + [sym_math] = STATE(134), + [sym_verbatim] = STATE(134), + [sym__todo_highlights] = STATE(134), + [sym_todo] = STATE(134), + [sym_note] = STATE(134), + [sym__symbol_fallback] = STATE(134), + [aux_sym__text] = STATE(127), + [aux_sym__inline_repeat1] = STATE(21), + [anon_sym_LBRACE_] = ACTIONS(189), + [anon_sym__] = ACTIONS(191), + [anon_sym_LBRACE_STAR] = ACTIONS(193), + [anon_sym_STAR] = ACTIONS(195), + [anon_sym_LBRACE_CARET] = ACTIONS(197), + [anon_sym_CARET] = ACTIONS(197), + [anon_sym_LBRACE_TILDE] = ACTIONS(199), + [anon_sym_TILDE] = ACTIONS(199), + [anon_sym_LBRACE_EQ] = ACTIONS(201), + [anon_sym_LBRACE_PLUS] = ACTIONS(203), + [anon_sym_LBRACE_DASH] = ACTIONS(205), + [anon_sym_BSLASH] = ACTIONS(207), + [sym_quotation_marks] = ACTIONS(209), + [sym_ellipsis] = ACTIONS(209), + [sym_em_dash] = ACTIONS(209), + [sym_en_dash] = ACTIONS(211), + [sym_backslash_escape] = ACTIONS(211), + [anon_sym_LT] = ACTIONS(213), + [sym_symbol] = ACTIONS(209), + [anon_sym_LBRACK_CARET] = ACTIONS(215), + [anon_sym_BANG_LBRACK] = ACTIONS(217), + [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_DOLLAR] = ACTIONS(221), + [anon_sym_TODO] = ACTIONS(223), + [anon_sym_WIP] = ACTIONS(223), + [anon_sym_NOTE] = ACTIONS(225), + [anon_sym_INFO] = ACTIONS(225), + [anon_sym_XXX] = ACTIONS(225), + [sym_fixme] = ACTIONS(209), + [sym__whitespace1] = ACTIONS(227), + [sym__newline] = ACTIONS(229), + [aux_sym__text_token1] = ACTIONS(231), + [sym__verbatim_begin] = ACTIONS(233), }, [6] = { - [sym__inline] = STATE(1011), - [sym__element] = STATE(106), - [sym_emphasis] = STATE(211), - [sym_emphasis_begin] = STATE(1060), - [sym_strong] = STATE(211), - [sym_strong_begin] = STATE(1061), - [sym_superscript] = STATE(211), - [sym_superscript_begin] = STATE(1062), - [sym_subscript] = STATE(211), - [sym_subscript_begin] = STATE(1063), - [sym_highlighted] = STATE(211), - [sym_highlighted_begin] = STATE(1064), - [sym_insert] = STATE(211), - [sym_insert_begin] = STATE(1065), - [sym_delete] = STATE(211), - [sym_delete_begin] = STATE(1066), - [sym_hard_line_break] = STATE(211), - [sym__smart_punctuation] = STATE(211), - [sym_autolink] = STATE(211), - [sym_footnote_reference] = STATE(211), - [sym__image] = STATE(211), - [sym_full_reference_image] = STATE(211), - [sym_collapsed_reference_image] = STATE(211), - [sym_inline_image] = STATE(211), - [sym__image_description] = STATE(671), - [sym__link] = STATE(211), - [sym_full_reference_link] = STATE(211), - [sym_collapsed_reference_link] = STATE(211), - [sym_inline_link] = STATE(211), - [sym_link_text] = STATE(676), - [sym__comment_with_spaces] = STATE(211), - [sym_span] = STATE(211), - [sym_raw_inline] = STATE(211), - [sym_math] = STATE(211), - [sym_verbatim] = STATE(211), - [sym__todo_highlights] = STATE(211), - [sym_todo] = STATE(211), - [sym_note] = STATE(211), - [sym__symbol_fallback] = STATE(211), - [aux_sym__text] = STATE(139), - [aux_sym__inline_repeat1] = STATE(106), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(51), - [anon_sym__] = ACTIONS(54), - [anon_sym_LBRACE_STAR] = ACTIONS(57), - [anon_sym_STAR] = ACTIONS(60), - [anon_sym_LBRACE_CARET] = ACTIONS(63), - [anon_sym_CARET] = ACTIONS(63), - [anon_sym_LBRACE_TILDE] = ACTIONS(66), - [anon_sym_TILDE] = ACTIONS(66), - [anon_sym_LBRACE_EQ] = ACTIONS(69), - [anon_sym_LBRACE_PLUS] = ACTIONS(72), - [anon_sym_LBRACE_DASH] = ACTIONS(75), - [anon_sym_BSLASH] = ACTIONS(78), - [sym_quotation_marks] = ACTIONS(81), - [sym_ellipsis] = ACTIONS(81), - [sym_em_dash] = ACTIONS(81), - [sym_en_dash] = ACTIONS(84), - [sym_backslash_escape] = ACTIONS(84), - [anon_sym_LT] = ACTIONS(87), - [sym_symbol] = ACTIONS(81), - [anon_sym_LBRACK_CARET] = ACTIONS(90), - [anon_sym_RBRACK] = ACTIONS(124), - [anon_sym_BANG_LBRACK] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(98), - [anon_sym_LBRACE2] = ACTIONS(84), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_TODO] = ACTIONS(106), - [anon_sym_WIP] = ACTIONS(106), - [anon_sym_NOTE] = ACTIONS(109), - [anon_sym_INFO] = ACTIONS(109), - [anon_sym_XXX] = ACTIONS(109), - [sym_fixme] = ACTIONS(81), - [sym__whitespace1] = ACTIONS(112), - [sym__newline] = ACTIONS(115), - [aux_sym__text_token1] = ACTIONS(118), - [sym__verbatim_begin] = ACTIONS(121), - [sym_subscript_end] = ACTIONS(101), + [sym__inline] = STATE(968), + [sym__element] = STATE(103), + [sym_emphasis] = STATE(139), + [sym_emphasis_begin] = STATE(1175), + [sym_strong] = STATE(139), + [sym_strong_begin] = STATE(1176), + [sym_superscript] = STATE(139), + [sym_superscript_begin] = STATE(1177), + [sym_subscript] = STATE(139), + [sym_subscript_begin] = STATE(1178), + [sym_highlighted] = STATE(139), + [sym_highlighted_begin] = STATE(1179), + [sym_insert] = STATE(139), + [sym_insert_begin] = STATE(1180), + [sym_delete] = STATE(139), + [sym_delete_begin] = STATE(1181), + [sym_hard_line_break] = STATE(139), + [sym__smart_punctuation] = STATE(139), + [sym_autolink] = STATE(139), + [sym_footnote_reference] = STATE(139), + [sym__image] = STATE(139), + [sym_full_reference_image] = STATE(139), + [sym_collapsed_reference_image] = STATE(139), + [sym_inline_image] = STATE(139), + [sym__image_description] = STATE(682), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(139), + [sym_full_reference_link] = STATE(139), + [sym_collapsed_reference_link] = STATE(139), + [sym_inline_link] = STATE(139), + [sym_link_text] = STATE(681), + [sym_span] = STATE(103), + [sym__bracketed_text] = STATE(656), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(139), + [sym_raw_inline] = STATE(139), + [sym_math] = STATE(139), + [sym_verbatim] = STATE(139), + [sym__todo_highlights] = STATE(139), + [sym_todo] = STATE(139), + [sym_note] = STATE(139), + [sym__symbol_fallback] = STATE(139), + [aux_sym__text] = STATE(129), + [aux_sym__inline_repeat1] = STATE(103), + [anon_sym_LBRACE_] = ACTIONS(235), + [anon_sym__] = ACTIONS(237), + [anon_sym_LBRACE_STAR] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(241), + [anon_sym_LBRACE_CARET] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(243), + [anon_sym_LBRACE_TILDE] = ACTIONS(245), + [anon_sym_TILDE] = ACTIONS(245), + [anon_sym_LBRACE_EQ] = ACTIONS(247), + [anon_sym_LBRACE_PLUS] = ACTIONS(249), + [anon_sym_LBRACE_DASH] = ACTIONS(251), + [anon_sym_BSLASH] = ACTIONS(253), + [sym_quotation_marks] = ACTIONS(255), + [sym_ellipsis] = ACTIONS(255), + [sym_em_dash] = ACTIONS(255), + [sym_en_dash] = ACTIONS(257), + [sym_backslash_escape] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(259), + [sym_symbol] = ACTIONS(255), + [anon_sym_LBRACK_CARET] = ACTIONS(261), + [anon_sym_BANG_LBRACK] = ACTIONS(263), + [anon_sym_LBRACK] = ACTIONS(265), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_TODO] = ACTIONS(269), + [anon_sym_WIP] = ACTIONS(269), + [anon_sym_NOTE] = ACTIONS(271), + [anon_sym_INFO] = ACTIONS(271), + [anon_sym_XXX] = ACTIONS(271), + [sym_fixme] = ACTIONS(255), + [sym__whitespace1] = ACTIONS(273), + [sym__newline] = ACTIONS(275), + [aux_sym__text_token1] = ACTIONS(277), + [sym__verbatim_begin] = ACTIONS(279), }, [7] = { - [sym__inline] = STATE(1011), - [sym__element] = STATE(106), - [sym_emphasis] = STATE(211), - [sym_emphasis_begin] = STATE(1060), - [sym_strong] = STATE(211), - [sym_strong_begin] = STATE(1061), - [sym_superscript] = STATE(211), - [sym_superscript_begin] = STATE(1062), - [sym_subscript] = STATE(211), - [sym_subscript_begin] = STATE(1063), - [sym_highlighted] = STATE(211), - [sym_highlighted_begin] = STATE(1064), - [sym_insert] = STATE(211), - [sym_insert_begin] = STATE(1065), - [sym_delete] = STATE(211), - [sym_delete_begin] = STATE(1066), - [sym_hard_line_break] = STATE(211), - [sym__smart_punctuation] = STATE(211), - [sym_autolink] = STATE(211), - [sym_footnote_reference] = STATE(211), - [sym__image] = STATE(211), - [sym_full_reference_image] = STATE(211), - [sym_collapsed_reference_image] = STATE(211), - [sym_inline_image] = STATE(211), - [sym__image_description] = STATE(671), - [sym__link] = STATE(211), - [sym_full_reference_link] = STATE(211), - [sym_collapsed_reference_link] = STATE(211), - [sym_inline_link] = STATE(211), - [sym_link_text] = STATE(676), - [sym__comment_with_spaces] = STATE(211), - [sym_span] = STATE(211), - [sym_raw_inline] = STATE(211), - [sym_math] = STATE(211), - [sym_verbatim] = STATE(211), - [sym__todo_highlights] = STATE(211), - [sym_todo] = STATE(211), - [sym_note] = STATE(211), - [sym__symbol_fallback] = STATE(211), - [aux_sym__text] = STATE(139), - [aux_sym__inline_repeat1] = STATE(106), - [ts_builtin_sym_end] = ACTIONS(101), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(51), - [anon_sym__] = ACTIONS(54), - [anon_sym_LBRACE_STAR] = ACTIONS(57), - [anon_sym_STAR] = ACTIONS(60), - [anon_sym_LBRACE_CARET] = ACTIONS(63), - [anon_sym_CARET] = ACTIONS(63), - [anon_sym_LBRACE_TILDE] = ACTIONS(66), - [anon_sym_TILDE] = ACTIONS(66), - [anon_sym_LBRACE_EQ] = ACTIONS(69), - [anon_sym_LBRACE_PLUS] = ACTIONS(72), - [anon_sym_LBRACE_DASH] = ACTIONS(75), - [anon_sym_BSLASH] = ACTIONS(78), - [sym_quotation_marks] = ACTIONS(81), - [sym_ellipsis] = ACTIONS(81), - [sym_em_dash] = ACTIONS(81), - [sym_en_dash] = ACTIONS(84), - [sym_backslash_escape] = ACTIONS(84), - [anon_sym_LT] = ACTIONS(87), - [sym_symbol] = ACTIONS(81), - [anon_sym_LBRACK_CARET] = ACTIONS(90), - [anon_sym_RBRACK] = ACTIONS(124), - [anon_sym_BANG_LBRACK] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(98), - [anon_sym_LBRACE2] = ACTIONS(84), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_TODO] = ACTIONS(106), - [anon_sym_WIP] = ACTIONS(106), - [anon_sym_NOTE] = ACTIONS(109), - [anon_sym_INFO] = ACTIONS(109), - [anon_sym_XXX] = ACTIONS(109), - [sym_fixme] = ACTIONS(81), - [sym__whitespace1] = ACTIONS(112), - [sym__newline] = ACTIONS(115), - [aux_sym__text_token1] = ACTIONS(118), - [sym__verbatim_begin] = ACTIONS(121), + [sym__inline] = STATE(967), + [sym__element] = STATE(13), + [sym_emphasis] = STATE(141), + [sym_emphasis_begin] = STATE(1168), + [sym_strong] = STATE(141), + [sym_strong_begin] = STATE(1169), + [sym_superscript] = STATE(141), + [sym_superscript_begin] = STATE(1170), + [sym_subscript] = STATE(141), + [sym_subscript_begin] = STATE(1171), + [sym_highlighted] = STATE(141), + [sym_highlighted_begin] = STATE(1172), + [sym_insert] = STATE(141), + [sym_insert_begin] = STATE(1173), + [sym_delete] = STATE(141), + [sym_delete_begin] = STATE(1174), + [sym_hard_line_break] = STATE(141), + [sym__smart_punctuation] = STATE(141), + [sym_autolink] = STATE(141), + [sym_footnote_reference] = STATE(141), + [sym__image] = STATE(141), + [sym_full_reference_image] = STATE(141), + [sym_collapsed_reference_image] = STATE(141), + [sym_inline_image] = STATE(141), + [sym__image_description] = STATE(674), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(141), + [sym_full_reference_link] = STATE(141), + [sym_collapsed_reference_link] = STATE(141), + [sym_inline_link] = STATE(141), + [sym_link_text] = STATE(672), + [sym_span] = STATE(13), + [sym__bracketed_text] = STATE(655), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(141), + [sym_raw_inline] = STATE(141), + [sym_math] = STATE(141), + [sym_verbatim] = STATE(141), + [sym__todo_highlights] = STATE(141), + [sym_todo] = STATE(141), + [sym_note] = STATE(141), + [sym__symbol_fallback] = STATE(141), + [aux_sym__text] = STATE(128), + [aux_sym__inline_repeat1] = STATE(13), + [anon_sym_LBRACE_] = ACTIONS(281), + [anon_sym__] = ACTIONS(283), + [anon_sym_LBRACE_STAR] = ACTIONS(285), + [anon_sym_STAR] = ACTIONS(287), + [anon_sym_LBRACE_CARET] = ACTIONS(289), + [anon_sym_CARET] = ACTIONS(289), + [anon_sym_LBRACE_TILDE] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(291), + [anon_sym_LBRACE_EQ] = ACTIONS(293), + [anon_sym_LBRACE_PLUS] = ACTIONS(295), + [anon_sym_LBRACE_DASH] = ACTIONS(297), + [anon_sym_BSLASH] = ACTIONS(299), + [sym_quotation_marks] = ACTIONS(301), + [sym_ellipsis] = ACTIONS(301), + [sym_em_dash] = ACTIONS(301), + [sym_en_dash] = ACTIONS(303), + [sym_backslash_escape] = ACTIONS(303), + [anon_sym_LT] = ACTIONS(305), + [sym_symbol] = ACTIONS(301), + [anon_sym_LBRACK_CARET] = ACTIONS(307), + [anon_sym_BANG_LBRACK] = ACTIONS(309), + [anon_sym_LBRACK] = ACTIONS(311), + [anon_sym_DOLLAR] = ACTIONS(313), + [anon_sym_TODO] = ACTIONS(315), + [anon_sym_WIP] = ACTIONS(315), + [anon_sym_NOTE] = ACTIONS(317), + [anon_sym_INFO] = ACTIONS(317), + [anon_sym_XXX] = ACTIONS(317), + [sym_fixme] = ACTIONS(301), + [sym__whitespace1] = ACTIONS(319), + [sym__newline] = ACTIONS(321), + [aux_sym__text_token1] = ACTIONS(323), + [sym__verbatim_begin] = ACTIONS(325), }, [8] = { - [sym__inline] = STATE(1011), - [sym__element] = STATE(106), - [sym_emphasis] = STATE(211), - [sym_emphasis_begin] = STATE(1060), - [sym_strong] = STATE(211), - [sym_strong_begin] = STATE(1061), - [sym_superscript] = STATE(211), - [sym_superscript_begin] = STATE(1062), - [sym_subscript] = STATE(211), - [sym_subscript_begin] = STATE(1063), - [sym_highlighted] = STATE(211), - [sym_highlighted_begin] = STATE(1064), - [sym_insert] = STATE(211), - [sym_insert_begin] = STATE(1065), - [sym_delete] = STATE(211), - [sym_delete_begin] = STATE(1066), - [sym_hard_line_break] = STATE(211), - [sym__smart_punctuation] = STATE(211), - [sym_autolink] = STATE(211), - [sym_footnote_reference] = STATE(211), - [sym__image] = STATE(211), - [sym_full_reference_image] = STATE(211), - [sym_collapsed_reference_image] = STATE(211), - [sym_inline_image] = STATE(211), - [sym__image_description] = STATE(671), - [sym__link] = STATE(211), - [sym_full_reference_link] = STATE(211), - [sym_collapsed_reference_link] = STATE(211), - [sym_inline_link] = STATE(211), - [sym_link_text] = STATE(676), - [sym__comment_with_spaces] = STATE(211), - [sym_span] = STATE(211), - [sym_raw_inline] = STATE(211), - [sym_math] = STATE(211), - [sym_verbatim] = STATE(211), - [sym__todo_highlights] = STATE(211), - [sym_todo] = STATE(211), - [sym_note] = STATE(211), - [sym__symbol_fallback] = STATE(211), - [aux_sym__text] = STATE(139), - [aux_sym__inline_repeat1] = STATE(106), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(51), - [anon_sym__] = ACTIONS(54), - [anon_sym_LBRACE_STAR] = ACTIONS(57), - [anon_sym_STAR] = ACTIONS(60), - [anon_sym_LBRACE_CARET] = ACTIONS(63), - [anon_sym_CARET] = ACTIONS(63), - [anon_sym_LBRACE_TILDE] = ACTIONS(66), - [anon_sym_TILDE] = ACTIONS(66), - [anon_sym_LBRACE_EQ] = ACTIONS(69), - [anon_sym_LBRACE_PLUS] = ACTIONS(72), - [anon_sym_LBRACE_DASH] = ACTIONS(75), - [anon_sym_BSLASH] = ACTIONS(78), - [sym_quotation_marks] = ACTIONS(81), - [sym_ellipsis] = ACTIONS(81), - [sym_em_dash] = ACTIONS(81), - [sym_en_dash] = ACTIONS(84), - [sym_backslash_escape] = ACTIONS(84), - [anon_sym_LT] = ACTIONS(87), - [sym_symbol] = ACTIONS(81), - [anon_sym_LBRACK_CARET] = ACTIONS(90), - [anon_sym_RBRACK] = ACTIONS(124), - [anon_sym_BANG_LBRACK] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(98), - [anon_sym_LBRACE2] = ACTIONS(84), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_TODO] = ACTIONS(106), - [anon_sym_WIP] = ACTIONS(106), - [anon_sym_NOTE] = ACTIONS(109), - [anon_sym_INFO] = ACTIONS(109), - [anon_sym_XXX] = ACTIONS(109), - [sym_fixme] = ACTIONS(81), - [sym__whitespace1] = ACTIONS(112), - [sym__newline] = ACTIONS(115), - [aux_sym__text_token1] = ACTIONS(118), - [sym__verbatim_begin] = ACTIONS(121), - [sym_superscript_end] = ACTIONS(101), + [sym__inline] = STATE(966), + [sym__element] = STATE(70), + [sym_emphasis] = STATE(136), + [sym_emphasis_begin] = STATE(1161), + [sym_strong] = STATE(136), + [sym_strong_begin] = STATE(1162), + [sym_superscript] = STATE(136), + [sym_superscript_begin] = STATE(1163), + [sym_subscript] = STATE(136), + [sym_subscript_begin] = STATE(1164), + [sym_highlighted] = STATE(136), + [sym_highlighted_begin] = STATE(1165), + [sym_insert] = STATE(136), + [sym_insert_begin] = STATE(1166), + [sym_delete] = STATE(136), + [sym_delete_begin] = STATE(1167), + [sym_hard_line_break] = STATE(136), + [sym__smart_punctuation] = STATE(136), + [sym_autolink] = STATE(136), + [sym_footnote_reference] = STATE(136), + [sym__image] = STATE(136), + [sym_full_reference_image] = STATE(136), + [sym_collapsed_reference_image] = STATE(136), + [sym_inline_image] = STATE(136), + [sym__image_description] = STATE(690), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(136), + [sym_full_reference_link] = STATE(136), + [sym_collapsed_reference_link] = STATE(136), + [sym_inline_link] = STATE(136), + [sym_link_text] = STATE(691), + [sym_span] = STATE(70), + [sym__bracketed_text] = STATE(653), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(136), + [sym_raw_inline] = STATE(136), + [sym_math] = STATE(136), + [sym_verbatim] = STATE(136), + [sym__todo_highlights] = STATE(136), + [sym_todo] = STATE(136), + [sym_note] = STATE(136), + [sym__symbol_fallback] = STATE(136), + [aux_sym__text] = STATE(125), + [aux_sym__inline_repeat1] = STATE(70), + [anon_sym_LBRACE_] = ACTIONS(97), + [anon_sym__] = ACTIONS(99), + [anon_sym_LBRACE_STAR] = ACTIONS(101), + [anon_sym_STAR] = ACTIONS(103), + [anon_sym_LBRACE_CARET] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [anon_sym_LBRACE_TILDE] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(107), + [anon_sym_LBRACE_EQ] = ACTIONS(109), + [anon_sym_LBRACE_PLUS] = ACTIONS(111), + [anon_sym_LBRACE_DASH] = ACTIONS(113), + [anon_sym_BSLASH] = ACTIONS(115), + [sym_quotation_marks] = ACTIONS(117), + [sym_ellipsis] = ACTIONS(117), + [sym_em_dash] = ACTIONS(117), + [sym_en_dash] = ACTIONS(119), + [sym_backslash_escape] = ACTIONS(119), + [anon_sym_LT] = ACTIONS(121), + [sym_symbol] = ACTIONS(117), + [anon_sym_LBRACK_CARET] = ACTIONS(123), + [anon_sym_BANG_LBRACK] = ACTIONS(125), + [anon_sym_LBRACK] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_TODO] = ACTIONS(131), + [anon_sym_WIP] = ACTIONS(131), + [anon_sym_NOTE] = ACTIONS(133), + [anon_sym_INFO] = ACTIONS(133), + [anon_sym_XXX] = ACTIONS(133), + [sym_fixme] = ACTIONS(117), + [sym__whitespace1] = ACTIONS(135), + [sym__newline] = ACTIONS(137), + [aux_sym__text_token1] = ACTIONS(139), + [sym__verbatim_begin] = ACTIONS(141), }, [9] = { - [sym__inline] = STATE(1011), - [sym__element] = STATE(106), - [sym_emphasis] = STATE(211), - [sym_emphasis_begin] = STATE(1060), - [sym_strong] = STATE(211), - [sym_strong_begin] = STATE(1061), - [sym_superscript] = STATE(211), - [sym_superscript_begin] = STATE(1062), - [sym_subscript] = STATE(211), - [sym_subscript_begin] = STATE(1063), - [sym_highlighted] = STATE(211), - [sym_highlighted_begin] = STATE(1064), - [sym_insert] = STATE(211), - [sym_insert_begin] = STATE(1065), - [sym_delete] = STATE(211), - [sym_delete_begin] = STATE(1066), - [sym_hard_line_break] = STATE(211), - [sym__smart_punctuation] = STATE(211), - [sym_autolink] = STATE(211), - [sym_footnote_reference] = STATE(211), - [sym__image] = STATE(211), - [sym_full_reference_image] = STATE(211), - [sym_collapsed_reference_image] = STATE(211), - [sym_inline_image] = STATE(211), - [sym__image_description] = STATE(671), - [sym__link] = STATE(211), - [sym_full_reference_link] = STATE(211), - [sym_collapsed_reference_link] = STATE(211), - [sym_inline_link] = STATE(211), - [sym_link_text] = STATE(676), - [sym__comment_with_spaces] = STATE(211), - [sym_span] = STATE(211), - [sym_raw_inline] = STATE(211), - [sym_math] = STATE(211), - [sym_verbatim] = STATE(211), - [sym__todo_highlights] = STATE(211), - [sym_todo] = STATE(211), - [sym_note] = STATE(211), - [sym__symbol_fallback] = STATE(211), - [aux_sym__text] = STATE(139), - [aux_sym__inline_repeat1] = STATE(106), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(51), - [anon_sym__] = ACTIONS(54), - [anon_sym_LBRACE_STAR] = ACTIONS(57), - [anon_sym_STAR] = ACTIONS(60), - [anon_sym_LBRACE_CARET] = ACTIONS(63), - [anon_sym_CARET] = ACTIONS(63), - [anon_sym_LBRACE_TILDE] = ACTIONS(66), - [anon_sym_TILDE] = ACTIONS(66), - [anon_sym_LBRACE_EQ] = ACTIONS(69), - [anon_sym_LBRACE_PLUS] = ACTIONS(72), - [anon_sym_LBRACE_DASH] = ACTIONS(75), - [anon_sym_BSLASH] = ACTIONS(78), - [sym_quotation_marks] = ACTIONS(81), - [sym_ellipsis] = ACTIONS(81), - [sym_em_dash] = ACTIONS(81), - [sym_en_dash] = ACTIONS(84), - [sym_backslash_escape] = ACTIONS(84), - [anon_sym_LT] = ACTIONS(87), - [sym_symbol] = ACTIONS(81), - [anon_sym_LBRACK_CARET] = ACTIONS(90), - [anon_sym_RBRACK] = ACTIONS(124), - [anon_sym_BANG_LBRACK] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(98), - [anon_sym_LBRACE2] = ACTIONS(84), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_TODO] = ACTIONS(106), - [anon_sym_WIP] = ACTIONS(106), - [anon_sym_NOTE] = ACTIONS(109), - [anon_sym_INFO] = ACTIONS(109), - [anon_sym_XXX] = ACTIONS(109), - [sym_fixme] = ACTIONS(81), - [sym__whitespace1] = ACTIONS(112), - [sym__newline] = ACTIONS(115), - [aux_sym__text_token1] = ACTIONS(118), - [sym__verbatim_begin] = ACTIONS(121), - [sym_highlighted_end] = ACTIONS(101), + [sym__inline] = STATE(965), + [sym__element] = STATE(105), + [sym_emphasis] = STATE(140), + [sym_emphasis_begin] = STATE(1154), + [sym_strong] = STATE(140), + [sym_strong_begin] = STATE(1155), + [sym_superscript] = STATE(140), + [sym_superscript_begin] = STATE(1156), + [sym_subscript] = STATE(140), + [sym_subscript_begin] = STATE(1157), + [sym_highlighted] = STATE(140), + [sym_highlighted_begin] = STATE(1158), + [sym_insert] = STATE(140), + [sym_insert_begin] = STATE(1159), + [sym_delete] = STATE(140), + [sym_delete_begin] = STATE(1160), + [sym_hard_line_break] = STATE(140), + [sym__smart_punctuation] = STATE(140), + [sym_autolink] = STATE(140), + [sym_footnote_reference] = STATE(140), + [sym__image] = STATE(140), + [sym_full_reference_image] = STATE(140), + [sym_collapsed_reference_image] = STATE(140), + [sym_inline_image] = STATE(140), + [sym__image_description] = STATE(687), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(140), + [sym_full_reference_link] = STATE(140), + [sym_collapsed_reference_link] = STATE(140), + [sym_inline_link] = STATE(140), + [sym_link_text] = STATE(688), + [sym_span] = STATE(105), + [sym__bracketed_text] = STATE(654), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(140), + [sym_raw_inline] = STATE(140), + [sym_math] = STATE(140), + [sym_verbatim] = STATE(140), + [sym__todo_highlights] = STATE(140), + [sym_todo] = STATE(140), + [sym_note] = STATE(140), + [sym__symbol_fallback] = STATE(140), + [aux_sym__text] = STATE(131), + [aux_sym__inline_repeat1] = STATE(105), + [anon_sym_LBRACE_] = ACTIONS(327), + [anon_sym__] = ACTIONS(329), + [anon_sym_LBRACE_STAR] = ACTIONS(331), + [anon_sym_STAR] = ACTIONS(333), + [anon_sym_LBRACE_CARET] = ACTIONS(335), + [anon_sym_CARET] = ACTIONS(335), + [anon_sym_LBRACE_TILDE] = ACTIONS(337), + [anon_sym_TILDE] = ACTIONS(337), + [anon_sym_LBRACE_EQ] = ACTIONS(339), + [anon_sym_LBRACE_PLUS] = ACTIONS(341), + [anon_sym_LBRACE_DASH] = ACTIONS(343), + [anon_sym_BSLASH] = ACTIONS(345), + [sym_quotation_marks] = ACTIONS(347), + [sym_ellipsis] = ACTIONS(347), + [sym_em_dash] = ACTIONS(347), + [sym_en_dash] = ACTIONS(349), + [sym_backslash_escape] = ACTIONS(349), + [anon_sym_LT] = ACTIONS(351), + [sym_symbol] = ACTIONS(347), + [anon_sym_LBRACK_CARET] = ACTIONS(353), + [anon_sym_BANG_LBRACK] = ACTIONS(355), + [anon_sym_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [anon_sym_TODO] = ACTIONS(361), + [anon_sym_WIP] = ACTIONS(361), + [anon_sym_NOTE] = ACTIONS(363), + [anon_sym_INFO] = ACTIONS(363), + [anon_sym_XXX] = ACTIONS(363), + [sym_fixme] = ACTIONS(347), + [sym__whitespace1] = ACTIONS(365), + [sym__newline] = ACTIONS(367), + [aux_sym__text_token1] = ACTIONS(369), + [sym__verbatim_begin] = ACTIONS(371), }, [10] = { - [sym__inline] = STATE(1011), - [sym__element] = STATE(106), - [sym_emphasis] = STATE(211), - [sym_emphasis_begin] = STATE(1060), - [sym_strong] = STATE(211), - [sym_strong_begin] = STATE(1061), - [sym_superscript] = STATE(211), - [sym_superscript_begin] = STATE(1062), - [sym_subscript] = STATE(211), - [sym_subscript_begin] = STATE(1063), - [sym_highlighted] = STATE(211), - [sym_highlighted_begin] = STATE(1064), - [sym_insert] = STATE(211), - [sym_insert_begin] = STATE(1065), - [sym_delete] = STATE(211), - [sym_delete_begin] = STATE(1066), - [sym_hard_line_break] = STATE(211), - [sym__smart_punctuation] = STATE(211), - [sym_autolink] = STATE(211), - [sym_footnote_reference] = STATE(211), - [sym__image] = STATE(211), - [sym_full_reference_image] = STATE(211), - [sym_collapsed_reference_image] = STATE(211), - [sym_inline_image] = STATE(211), - [sym__image_description] = STATE(671), - [sym__link] = STATE(211), - [sym_full_reference_link] = STATE(211), - [sym_collapsed_reference_link] = STATE(211), - [sym_inline_link] = STATE(211), - [sym_link_text] = STATE(676), - [sym__comment_with_spaces] = STATE(211), - [sym_span] = STATE(211), - [sym_raw_inline] = STATE(211), - [sym_math] = STATE(211), - [sym_verbatim] = STATE(211), - [sym__todo_highlights] = STATE(211), - [sym_todo] = STATE(211), - [sym_note] = STATE(211), - [sym__symbol_fallback] = STATE(211), - [aux_sym__text] = STATE(139), - [aux_sym__inline_repeat1] = STATE(106), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(51), - [anon_sym__] = ACTIONS(54), - [anon_sym_LBRACE_STAR] = ACTIONS(57), - [anon_sym_STAR] = ACTIONS(60), - [anon_sym_LBRACE_CARET] = ACTIONS(63), - [anon_sym_CARET] = ACTIONS(63), - [anon_sym_LBRACE_TILDE] = ACTIONS(66), - [anon_sym_TILDE] = ACTIONS(66), - [anon_sym_LBRACE_EQ] = ACTIONS(69), - [anon_sym_LBRACE_PLUS] = ACTIONS(72), - [anon_sym_LBRACE_DASH] = ACTIONS(75), - [anon_sym_BSLASH] = ACTIONS(78), - [sym_quotation_marks] = ACTIONS(81), - [sym_ellipsis] = ACTIONS(81), - [sym_em_dash] = ACTIONS(81), - [sym_en_dash] = ACTIONS(84), - [sym_backslash_escape] = ACTIONS(84), - [anon_sym_LT] = ACTIONS(87), - [sym_symbol] = ACTIONS(81), - [anon_sym_LBRACK_CARET] = ACTIONS(90), - [anon_sym_RBRACK] = ACTIONS(124), - [anon_sym_BANG_LBRACK] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(98), - [anon_sym_LBRACE2] = ACTIONS(84), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_TODO] = ACTIONS(106), - [anon_sym_WIP] = ACTIONS(106), - [anon_sym_NOTE] = ACTIONS(109), - [anon_sym_INFO] = ACTIONS(109), - [anon_sym_XXX] = ACTIONS(109), - [sym_fixme] = ACTIONS(81), - [sym__whitespace1] = ACTIONS(112), - [sym__newline] = ACTIONS(115), - [aux_sym__text_token1] = ACTIONS(118), - [sym__verbatim_begin] = ACTIONS(121), - [sym_emphasis_end] = ACTIONS(101), + [sym__inline_without_trailing_space] = STATE(964), + [sym__element] = STATE(562), + [sym_emphasis] = STATE(142), + [sym_emphasis_begin] = STATE(1147), + [sym_strong] = STATE(142), + [sym_strong_begin] = STATE(1148), + [sym_superscript] = STATE(142), + [sym_superscript_begin] = STATE(1149), + [sym_subscript] = STATE(142), + [sym_subscript_begin] = STATE(1150), + [sym_highlighted] = STATE(142), + [sym_highlighted_begin] = STATE(1151), + [sym_insert] = STATE(142), + [sym_insert_begin] = STATE(1152), + [sym_delete] = STATE(142), + [sym_delete_begin] = STATE(1153), + [sym_hard_line_break] = STATE(142), + [sym__smart_punctuation] = STATE(142), + [sym_autolink] = STATE(142), + [sym_footnote_reference] = STATE(142), + [sym__image] = STATE(142), + [sym_full_reference_image] = STATE(142), + [sym_collapsed_reference_image] = STATE(142), + [sym_inline_image] = STATE(142), + [sym__image_description] = STATE(685), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(142), + [sym_full_reference_link] = STATE(142), + [sym_collapsed_reference_link] = STATE(142), + [sym_inline_link] = STATE(142), + [sym_link_text] = STATE(683), + [sym_span] = STATE(562), + [sym__bracketed_text] = STATE(657), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(142), + [sym_raw_inline] = STATE(142), + [sym_math] = STATE(142), + [sym_verbatim] = STATE(142), + [sym__todo_highlights] = STATE(142), + [sym_todo] = STATE(142), + [sym_note] = STATE(142), + [sym__symbol_fallback] = STATE(142), + [aux_sym__text] = STATE(126), + [aux_sym__inline_repeat1] = STATE(120), + [anon_sym_LBRACE_] = ACTIONS(373), + [anon_sym__] = ACTIONS(375), + [anon_sym_LBRACE_STAR] = ACTIONS(377), + [anon_sym_STAR] = ACTIONS(379), + [anon_sym_LBRACE_CARET] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(381), + [anon_sym_LBRACE_TILDE] = ACTIONS(383), + [anon_sym_TILDE] = ACTIONS(383), + [anon_sym_LBRACE_EQ] = ACTIONS(385), + [anon_sym_LBRACE_PLUS] = ACTIONS(387), + [anon_sym_LBRACE_DASH] = ACTIONS(389), + [anon_sym_BSLASH] = ACTIONS(391), + [sym_quotation_marks] = ACTIONS(393), + [sym_ellipsis] = ACTIONS(393), + [sym_em_dash] = ACTIONS(393), + [sym_en_dash] = ACTIONS(395), + [sym_backslash_escape] = ACTIONS(395), + [anon_sym_LT] = ACTIONS(397), + [sym_symbol] = ACTIONS(393), + [anon_sym_LBRACK_CARET] = ACTIONS(399), + [anon_sym_BANG_LBRACK] = ACTIONS(401), + [anon_sym_LBRACK] = ACTIONS(403), + [anon_sym_DOLLAR] = ACTIONS(405), + [anon_sym_TODO] = ACTIONS(407), + [anon_sym_WIP] = ACTIONS(407), + [anon_sym_NOTE] = ACTIONS(409), + [anon_sym_INFO] = ACTIONS(409), + [anon_sym_XXX] = ACTIONS(409), + [sym_fixme] = ACTIONS(393), + [sym__whitespace1] = ACTIONS(411), + [sym__newline] = ACTIONS(413), + [aux_sym__text_token1] = ACTIONS(415), + [sym__verbatim_begin] = ACTIONS(417), }, [11] = { - [sym__inline] = STATE(1033), - [sym__element] = STATE(106), - [sym_emphasis] = STATE(211), - [sym_emphasis_begin] = STATE(1060), - [sym_strong] = STATE(211), - [sym_strong_begin] = STATE(1061), - [sym_superscript] = STATE(211), - [sym_superscript_begin] = STATE(1062), - [sym_subscript] = STATE(211), - [sym_subscript_begin] = STATE(1063), - [sym_highlighted] = STATE(211), - [sym_highlighted_begin] = STATE(1064), - [sym_insert] = STATE(211), - [sym_insert_begin] = STATE(1065), - [sym_delete] = STATE(211), - [sym_delete_begin] = STATE(1066), - [sym_hard_line_break] = STATE(211), - [sym__smart_punctuation] = STATE(211), - [sym_autolink] = STATE(211), - [sym_footnote_reference] = STATE(211), - [sym__image] = STATE(211), - [sym_full_reference_image] = STATE(211), - [sym_collapsed_reference_image] = STATE(211), - [sym_inline_image] = STATE(211), - [sym__image_description] = STATE(671), - [sym__link] = STATE(211), - [sym_full_reference_link] = STATE(211), - [sym_collapsed_reference_link] = STATE(211), - [sym_inline_link] = STATE(211), - [sym_link_text] = STATE(676), - [sym__comment_with_spaces] = STATE(211), - [sym_span] = STATE(211), - [sym_raw_inline] = STATE(211), - [sym_math] = STATE(211), - [sym_verbatim] = STATE(211), - [sym__todo_highlights] = STATE(211), - [sym_todo] = STATE(211), - [sym_note] = STATE(211), - [sym__symbol_fallback] = STATE(211), - [aux_sym__text] = STATE(139), - [aux_sym__inline_repeat1] = STATE(106), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(51), - [anon_sym__] = ACTIONS(54), - [anon_sym_LBRACE_STAR] = ACTIONS(57), - [anon_sym_STAR] = ACTIONS(60), - [anon_sym_LBRACE_CARET] = ACTIONS(63), - [anon_sym_CARET] = ACTIONS(63), - [anon_sym_LBRACE_TILDE] = ACTIONS(66), - [anon_sym_TILDE] = ACTIONS(66), - [anon_sym_LBRACE_EQ] = ACTIONS(69), - [anon_sym_LBRACE_PLUS] = ACTIONS(72), - [anon_sym_LBRACE_DASH] = ACTIONS(75), - [anon_sym_BSLASH] = ACTIONS(78), - [sym_quotation_marks] = ACTIONS(81), - [sym_ellipsis] = ACTIONS(81), - [sym_em_dash] = ACTIONS(81), - [sym_en_dash] = ACTIONS(84), - [sym_backslash_escape] = ACTIONS(84), - [anon_sym_LT] = ACTIONS(87), - [sym_symbol] = ACTIONS(81), - [anon_sym_LBRACK_CARET] = ACTIONS(90), - [anon_sym_BANG_LBRACK] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(98), - [anon_sym_RBRACK2] = ACTIONS(101), - [anon_sym_LBRACE2] = ACTIONS(84), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_TODO] = ACTIONS(106), - [anon_sym_WIP] = ACTIONS(106), - [anon_sym_NOTE] = ACTIONS(109), - [anon_sym_INFO] = ACTIONS(109), - [anon_sym_XXX] = ACTIONS(109), - [sym_fixme] = ACTIONS(81), - [sym__whitespace1] = ACTIONS(112), - [sym__newline] = ACTIONS(115), - [aux_sym__text_token1] = ACTIONS(118), - [sym__verbatim_begin] = ACTIONS(121), + [sym__inline_without_trailing_space] = STATE(963), + [sym__element] = STATE(604), + [sym_emphasis] = STATE(138), + [sym_emphasis_begin] = STATE(1140), + [sym_strong] = STATE(138), + [sym_strong_begin] = STATE(1141), + [sym_superscript] = STATE(138), + [sym_superscript_begin] = STATE(1142), + [sym_subscript] = STATE(138), + [sym_subscript_begin] = STATE(1143), + [sym_highlighted] = STATE(138), + [sym_highlighted_begin] = STATE(1144), + [sym_insert] = STATE(138), + [sym_insert_begin] = STATE(1145), + [sym_delete] = STATE(138), + [sym_delete_begin] = STATE(1146), + [sym_hard_line_break] = STATE(138), + [sym__smart_punctuation] = STATE(138), + [sym_autolink] = STATE(138), + [sym_footnote_reference] = STATE(138), + [sym__image] = STATE(138), + [sym_full_reference_image] = STATE(138), + [sym_collapsed_reference_image] = STATE(138), + [sym_inline_image] = STATE(138), + [sym__image_description] = STATE(667), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(138), + [sym_full_reference_link] = STATE(138), + [sym_collapsed_reference_link] = STATE(138), + [sym_inline_link] = STATE(138), + [sym_link_text] = STATE(689), + [sym_span] = STATE(604), + [sym__bracketed_text] = STATE(658), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(138), + [sym_raw_inline] = STATE(138), + [sym_math] = STATE(138), + [sym_verbatim] = STATE(138), + [sym__todo_highlights] = STATE(138), + [sym_todo] = STATE(138), + [sym_note] = STATE(138), + [sym__symbol_fallback] = STATE(138), + [aux_sym__text] = STATE(124), + [aux_sym__inline_repeat1] = STATE(118), + [anon_sym_LBRACE_] = ACTIONS(419), + [anon_sym__] = ACTIONS(421), + [anon_sym_LBRACE_STAR] = ACTIONS(423), + [anon_sym_STAR] = ACTIONS(425), + [anon_sym_LBRACE_CARET] = ACTIONS(427), + [anon_sym_CARET] = ACTIONS(427), + [anon_sym_LBRACE_TILDE] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_LBRACE_EQ] = ACTIONS(431), + [anon_sym_LBRACE_PLUS] = ACTIONS(433), + [anon_sym_LBRACE_DASH] = ACTIONS(435), + [anon_sym_BSLASH] = ACTIONS(437), + [sym_quotation_marks] = ACTIONS(439), + [sym_ellipsis] = ACTIONS(439), + [sym_em_dash] = ACTIONS(439), + [sym_en_dash] = ACTIONS(441), + [sym_backslash_escape] = ACTIONS(441), + [anon_sym_LT] = ACTIONS(443), + [sym_symbol] = ACTIONS(439), + [anon_sym_LBRACK_CARET] = ACTIONS(445), + [anon_sym_BANG_LBRACK] = ACTIONS(447), + [anon_sym_LBRACK] = ACTIONS(449), + [anon_sym_DOLLAR] = ACTIONS(451), + [anon_sym_TODO] = ACTIONS(453), + [anon_sym_WIP] = ACTIONS(453), + [anon_sym_NOTE] = ACTIONS(455), + [anon_sym_INFO] = ACTIONS(455), + [anon_sym_XXX] = ACTIONS(455), + [sym_fixme] = ACTIONS(439), + [sym__whitespace1] = ACTIONS(457), + [sym__newline] = ACTIONS(459), + [aux_sym__text_token1] = ACTIONS(461), + [sym__verbatim_begin] = ACTIONS(463), }, [12] = { - [sym__inline] = STATE(1011), - [sym__element] = STATE(106), - [sym_emphasis] = STATE(211), - [sym_emphasis_begin] = STATE(1060), - [sym_strong] = STATE(211), - [sym_strong_begin] = STATE(1061), - [sym_superscript] = STATE(211), - [sym_superscript_begin] = STATE(1062), - [sym_subscript] = STATE(211), - [sym_subscript_begin] = STATE(1063), - [sym_highlighted] = STATE(211), - [sym_highlighted_begin] = STATE(1064), - [sym_insert] = STATE(211), - [sym_insert_begin] = STATE(1065), - [sym_delete] = STATE(211), - [sym_delete_begin] = STATE(1066), - [sym_hard_line_break] = STATE(211), - [sym__smart_punctuation] = STATE(211), - [sym_autolink] = STATE(211), - [sym_footnote_reference] = STATE(211), - [sym__image] = STATE(211), - [sym_full_reference_image] = STATE(211), - [sym_collapsed_reference_image] = STATE(211), - [sym_inline_image] = STATE(211), - [sym__image_description] = STATE(671), - [sym__link] = STATE(211), - [sym_full_reference_link] = STATE(211), - [sym_collapsed_reference_link] = STATE(211), - [sym_inline_link] = STATE(211), - [sym_link_text] = STATE(676), - [sym__comment_with_spaces] = STATE(211), - [sym_span] = STATE(211), - [sym_raw_inline] = STATE(211), - [sym_math] = STATE(211), - [sym_verbatim] = STATE(211), - [sym__todo_highlights] = STATE(211), - [sym_todo] = STATE(211), - [sym_note] = STATE(211), - [sym__symbol_fallback] = STATE(211), - [aux_sym__text] = STATE(139), - [aux_sym__inline_repeat1] = STATE(106), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(51), - [anon_sym__] = ACTIONS(54), - [anon_sym_LBRACE_STAR] = ACTIONS(57), - [anon_sym_STAR] = ACTIONS(60), - [anon_sym_LBRACE_CARET] = ACTIONS(63), - [anon_sym_CARET] = ACTIONS(63), - [anon_sym_LBRACE_TILDE] = ACTIONS(66), - [anon_sym_TILDE] = ACTIONS(66), - [anon_sym_LBRACE_EQ] = ACTIONS(69), - [anon_sym_LBRACE_PLUS] = ACTIONS(72), - [anon_sym_LBRACE_DASH] = ACTIONS(75), - [anon_sym_BSLASH] = ACTIONS(78), - [sym_quotation_marks] = ACTIONS(81), - [sym_ellipsis] = ACTIONS(81), - [sym_em_dash] = ACTIONS(81), - [sym_en_dash] = ACTIONS(84), - [sym_backslash_escape] = ACTIONS(84), - [anon_sym_LT] = ACTIONS(87), - [sym_symbol] = ACTIONS(81), - [anon_sym_LBRACK_CARET] = ACTIONS(90), - [anon_sym_RBRACK] = ACTIONS(126), - [anon_sym_BANG_LBRACK] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(98), - [anon_sym_LBRACE2] = ACTIONS(84), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_TODO] = ACTIONS(106), - [anon_sym_WIP] = ACTIONS(106), - [anon_sym_NOTE] = ACTIONS(109), - [anon_sym_INFO] = ACTIONS(109), - [anon_sym_XXX] = ACTIONS(109), - [sym_fixme] = ACTIONS(81), - [sym__whitespace1] = ACTIONS(112), - [sym__newline] = ACTIONS(115), - [aux_sym__text_token1] = ACTIONS(118), - [sym__verbatim_begin] = ACTIONS(121), + [sym__inline] = STATE(937), + [sym__element] = STATE(65), + [sym_emphasis] = STATE(133), + [sym_emphasis_begin] = STATE(1189), + [sym_strong] = STATE(133), + [sym_strong_begin] = STATE(1190), + [sym_superscript] = STATE(133), + [sym_superscript_begin] = STATE(1191), + [sym_subscript] = STATE(133), + [sym_subscript_begin] = STATE(1192), + [sym_highlighted] = STATE(133), + [sym_highlighted_begin] = STATE(1193), + [sym_insert] = STATE(133), + [sym_insert_begin] = STATE(1194), + [sym_delete] = STATE(133), + [sym_delete_begin] = STATE(1195), + [sym_hard_line_break] = STATE(133), + [sym__smart_punctuation] = STATE(133), + [sym_autolink] = STATE(133), + [sym_footnote_reference] = STATE(133), + [sym__image] = STATE(133), + [sym_full_reference_image] = STATE(133), + [sym_collapsed_reference_image] = STATE(133), + [sym_inline_image] = STATE(133), + [sym__image_description] = STATE(670), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(133), + [sym_full_reference_link] = STATE(133), + [sym_collapsed_reference_link] = STATE(133), + [sym_inline_link] = STATE(133), + [sym_link_text] = STATE(663), + [sym_span] = STATE(65), + [sym__bracketed_text] = STATE(662), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(133), + [sym_raw_inline] = STATE(133), + [sym_math] = STATE(133), + [sym_verbatim] = STATE(133), + [sym__todo_highlights] = STATE(133), + [sym_todo] = STATE(133), + [sym_note] = STATE(133), + [sym__symbol_fallback] = STATE(133), + [aux_sym__text] = STATE(123), + [aux_sym__inline_repeat1] = STATE(65), + [anon_sym_LBRACE_] = ACTIONS(143), + [anon_sym__] = ACTIONS(145), + [anon_sym_LBRACE_STAR] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(149), + [anon_sym_LBRACE_CARET] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(151), + [anon_sym_LBRACE_TILDE] = ACTIONS(153), + [anon_sym_TILDE] = ACTIONS(153), + [anon_sym_LBRACE_EQ] = ACTIONS(155), + [anon_sym_LBRACE_PLUS] = ACTIONS(157), + [anon_sym_LBRACE_DASH] = ACTIONS(159), + [anon_sym_BSLASH] = ACTIONS(161), + [sym_quotation_marks] = ACTIONS(163), + [sym_ellipsis] = ACTIONS(163), + [sym_em_dash] = ACTIONS(163), + [sym_en_dash] = ACTIONS(165), + [sym_backslash_escape] = ACTIONS(165), + [anon_sym_LT] = ACTIONS(167), + [sym_symbol] = ACTIONS(163), + [anon_sym_LBRACK_CARET] = ACTIONS(169), + [anon_sym_BANG_LBRACK] = ACTIONS(171), + [anon_sym_LBRACK] = ACTIONS(173), + [anon_sym_DOLLAR] = ACTIONS(175), + [anon_sym_TODO] = ACTIONS(177), + [anon_sym_WIP] = ACTIONS(177), + [anon_sym_NOTE] = ACTIONS(179), + [anon_sym_INFO] = ACTIONS(179), + [anon_sym_XXX] = ACTIONS(179), + [sym_fixme] = ACTIONS(163), + [sym__whitespace1] = ACTIONS(181), + [sym__newline] = ACTIONS(183), + [aux_sym__text_token1] = ACTIONS(185), + [sym__verbatim_begin] = ACTIONS(187), }, [13] = { - [sym__inline] = STATE(977), - [sym__element] = STATE(106), - [sym_emphasis] = STATE(211), - [sym_emphasis_begin] = STATE(1060), - [sym_strong] = STATE(211), - [sym_strong_begin] = STATE(1061), - [sym_superscript] = STATE(211), - [sym_superscript_begin] = STATE(1062), - [sym_subscript] = STATE(211), - [sym_subscript_begin] = STATE(1063), - [sym_highlighted] = STATE(211), - [sym_highlighted_begin] = STATE(1064), - [sym_insert] = STATE(211), - [sym_insert_begin] = STATE(1065), - [sym_delete] = STATE(211), - [sym_delete_begin] = STATE(1066), - [sym_hard_line_break] = STATE(211), - [sym__smart_punctuation] = STATE(211), - [sym_autolink] = STATE(211), - [sym_footnote_reference] = STATE(211), - [sym__image] = STATE(211), - [sym_full_reference_image] = STATE(211), - [sym_collapsed_reference_image] = STATE(211), - [sym_inline_image] = STATE(211), - [sym__image_description] = STATE(671), - [sym__link] = STATE(211), - [sym_full_reference_link] = STATE(211), - [sym_collapsed_reference_link] = STATE(211), - [sym_inline_link] = STATE(211), - [sym_link_text] = STATE(676), - [sym__comment_with_spaces] = STATE(211), - [sym_span] = STATE(211), - [sym_raw_inline] = STATE(211), - [sym_math] = STATE(211), - [sym_verbatim] = STATE(211), - [sym__todo_highlights] = STATE(211), - [sym_todo] = STATE(211), - [sym_note] = STATE(211), - [sym__symbol_fallback] = STATE(211), - [aux_sym__text] = STATE(139), - [aux_sym__inline_repeat1] = STATE(106), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(51), - [anon_sym__] = ACTIONS(54), - [anon_sym_LBRACE_STAR] = ACTIONS(57), - [anon_sym_STAR] = ACTIONS(60), - [anon_sym_LBRACE_CARET] = ACTIONS(63), - [anon_sym_CARET] = ACTIONS(63), - [anon_sym_LBRACE_TILDE] = ACTIONS(66), - [anon_sym_TILDE] = ACTIONS(66), - [anon_sym_LBRACE_EQ] = ACTIONS(69), - [anon_sym_LBRACE_PLUS] = ACTIONS(72), - [anon_sym_LBRACE_DASH] = ACTIONS(75), - [anon_sym_BSLASH] = ACTIONS(78), - [sym_quotation_marks] = ACTIONS(81), - [sym_ellipsis] = ACTIONS(81), - [sym_em_dash] = ACTIONS(81), - [sym_en_dash] = ACTIONS(84), - [sym_backslash_escape] = ACTIONS(84), - [anon_sym_LT] = ACTIONS(87), - [sym_symbol] = ACTIONS(81), - [anon_sym_LBRACK_CARET] = ACTIONS(90), - [anon_sym_BANG_LBRACK] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(98), - [anon_sym_LBRACE2] = ACTIONS(84), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_TODO] = ACTIONS(106), - [anon_sym_WIP] = ACTIONS(106), - [anon_sym_NOTE] = ACTIONS(109), - [anon_sym_INFO] = ACTIONS(109), - [anon_sym_XXX] = ACTIONS(109), - [sym_fixme] = ACTIONS(81), - [sym__whitespace1] = ACTIONS(112), - [sym__newline] = ACTIONS(115), - [aux_sym__text_token1] = ACTIONS(118), - [sym__verbatim_begin] = ACTIONS(121), - [sym_subscript_end] = ACTIONS(101), + [sym__element] = STATE(108), + [sym_emphasis] = STATE(141), + [sym_emphasis_begin] = STATE(1168), + [sym_strong] = STATE(141), + [sym_strong_begin] = STATE(1169), + [sym_superscript] = STATE(141), + [sym_superscript_begin] = STATE(1170), + [sym_subscript] = STATE(141), + [sym_subscript_begin] = STATE(1171), + [sym_highlighted] = STATE(141), + [sym_highlighted_begin] = STATE(1172), + [sym_insert] = STATE(141), + [sym_insert_begin] = STATE(1173), + [sym_delete] = STATE(141), + [sym_delete_begin] = STATE(1174), + [sym_hard_line_break] = STATE(141), + [sym__smart_punctuation] = STATE(141), + [sym_autolink] = STATE(141), + [sym_footnote_reference] = STATE(141), + [sym__image] = STATE(141), + [sym_full_reference_image] = STATE(141), + [sym_collapsed_reference_image] = STATE(141), + [sym_inline_image] = STATE(141), + [sym__image_description] = STATE(674), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(141), + [sym_full_reference_link] = STATE(141), + [sym_collapsed_reference_link] = STATE(141), + [sym_inline_link] = STATE(141), + [sym_link_text] = STATE(672), + [sym_span] = STATE(108), + [sym__bracketed_text] = STATE(655), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(141), + [sym_raw_inline] = STATE(141), + [sym_math] = STATE(141), + [sym_verbatim] = STATE(141), + [sym__todo_highlights] = STATE(141), + [sym_todo] = STATE(141), + [sym_note] = STATE(141), + [sym__symbol_fallback] = STATE(141), + [aux_sym__text] = STATE(128), + [aux_sym__inline_repeat1] = STATE(108), + [anon_sym_LBRACE_] = ACTIONS(281), + [anon_sym__] = ACTIONS(283), + [anon_sym_LBRACE_STAR] = ACTIONS(285), + [anon_sym_STAR] = ACTIONS(287), + [anon_sym_LBRACE_CARET] = ACTIONS(289), + [anon_sym_CARET] = ACTIONS(289), + [anon_sym_LBRACE_TILDE] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(291), + [anon_sym_LBRACE_EQ] = ACTIONS(293), + [anon_sym_LBRACE_PLUS] = ACTIONS(295), + [anon_sym_LBRACE_DASH] = ACTIONS(297), + [anon_sym_BSLASH] = ACTIONS(299), + [sym_quotation_marks] = ACTIONS(301), + [sym_ellipsis] = ACTIONS(301), + [sym_em_dash] = ACTIONS(301), + [sym_en_dash] = ACTIONS(303), + [sym_backslash_escape] = ACTIONS(303), + [anon_sym_LT] = ACTIONS(305), + [sym_symbol] = ACTIONS(301), + [anon_sym_LBRACK_CARET] = ACTIONS(307), + [anon_sym_BANG_LBRACK] = ACTIONS(309), + [anon_sym_LBRACK] = ACTIONS(311), + [anon_sym_DOLLAR] = ACTIONS(313), + [anon_sym_TODO] = ACTIONS(315), + [anon_sym_WIP] = ACTIONS(315), + [anon_sym_NOTE] = ACTIONS(317), + [anon_sym_INFO] = ACTIONS(317), + [anon_sym_XXX] = ACTIONS(317), + [sym_fixme] = ACTIONS(301), + [sym__whitespace1] = ACTIONS(319), + [sym__newline] = ACTIONS(465), + [aux_sym__text_token1] = ACTIONS(323), + [sym__verbatim_begin] = ACTIONS(325), + [sym_highlighted_end] = ACTIONS(467), }, [14] = { - [sym__inline] = STATE(963), - [sym__element] = STATE(106), - [sym_emphasis] = STATE(211), - [sym_emphasis_begin] = STATE(1060), - [sym_strong] = STATE(211), - [sym_strong_begin] = STATE(1061), - [sym_superscript] = STATE(211), - [sym_superscript_begin] = STATE(1062), - [sym_subscript] = STATE(211), - [sym_subscript_begin] = STATE(1063), - [sym_highlighted] = STATE(211), - [sym_highlighted_begin] = STATE(1064), - [sym_insert] = STATE(211), - [sym_insert_begin] = STATE(1065), - [sym_delete] = STATE(211), - [sym_delete_begin] = STATE(1066), - [sym_hard_line_break] = STATE(211), - [sym__smart_punctuation] = STATE(211), - [sym_autolink] = STATE(211), - [sym_footnote_reference] = STATE(211), - [sym__image] = STATE(211), - [sym_full_reference_image] = STATE(211), - [sym_collapsed_reference_image] = STATE(211), - [sym_inline_image] = STATE(211), - [sym__image_description] = STATE(671), - [sym__link] = STATE(211), - [sym_full_reference_link] = STATE(211), - [sym_collapsed_reference_link] = STATE(211), - [sym_inline_link] = STATE(211), - [sym_link_text] = STATE(676), - [sym__comment_with_spaces] = STATE(211), - [sym_span] = STATE(211), - [sym_raw_inline] = STATE(211), - [sym_math] = STATE(211), - [sym_verbatim] = STATE(211), - [sym__todo_highlights] = STATE(211), - [sym_todo] = STATE(211), - [sym_note] = STATE(211), - [sym__symbol_fallback] = STATE(211), - [aux_sym__text] = STATE(139), - [aux_sym__inline_repeat1] = STATE(106), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(51), - [anon_sym__] = ACTIONS(54), - [anon_sym_LBRACE_STAR] = ACTIONS(57), - [anon_sym_STAR] = ACTIONS(60), - [anon_sym_LBRACE_CARET] = ACTIONS(63), - [anon_sym_CARET] = ACTIONS(63), - [anon_sym_LBRACE_TILDE] = ACTIONS(66), - [anon_sym_TILDE] = ACTIONS(66), - [anon_sym_LBRACE_EQ] = ACTIONS(69), - [anon_sym_LBRACE_PLUS] = ACTIONS(72), - [anon_sym_LBRACE_DASH] = ACTIONS(75), - [anon_sym_BSLASH] = ACTIONS(78), - [sym_quotation_marks] = ACTIONS(81), - [sym_ellipsis] = ACTIONS(81), - [sym_em_dash] = ACTIONS(81), - [sym_en_dash] = ACTIONS(84), - [sym_backslash_escape] = ACTIONS(84), - [anon_sym_LT] = ACTIONS(87), - [sym_symbol] = ACTIONS(81), - [anon_sym_LBRACK_CARET] = ACTIONS(90), - [anon_sym_BANG_LBRACK] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(98), - [anon_sym_LBRACE2] = ACTIONS(84), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_TODO] = ACTIONS(106), - [anon_sym_WIP] = ACTIONS(106), - [anon_sym_NOTE] = ACTIONS(109), - [anon_sym_INFO] = ACTIONS(109), - [anon_sym_XXX] = ACTIONS(109), - [sym_fixme] = ACTIONS(81), - [sym__whitespace1] = ACTIONS(112), - [sym__newline] = ACTIONS(115), - [aux_sym__text_token1] = ACTIONS(118), - [sym__verbatim_begin] = ACTIONS(121), - [sym_superscript_end] = ACTIONS(101), + [sym__element] = STATE(14), + [sym_emphasis] = STATE(140), + [sym_emphasis_begin] = STATE(1154), + [sym_strong] = STATE(140), + [sym_strong_begin] = STATE(1155), + [sym_superscript] = STATE(140), + [sym_superscript_begin] = STATE(1156), + [sym_subscript] = STATE(140), + [sym_subscript_begin] = STATE(1157), + [sym_highlighted] = STATE(140), + [sym_highlighted_begin] = STATE(1158), + [sym_insert] = STATE(140), + [sym_insert_begin] = STATE(1159), + [sym_delete] = STATE(140), + [sym_delete_begin] = STATE(1160), + [sym_hard_line_break] = STATE(140), + [sym__smart_punctuation] = STATE(140), + [sym_autolink] = STATE(140), + [sym_footnote_reference] = STATE(140), + [sym__image] = STATE(140), + [sym_full_reference_image] = STATE(140), + [sym_collapsed_reference_image] = STATE(140), + [sym_inline_image] = STATE(140), + [sym__image_description] = STATE(687), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(140), + [sym_full_reference_link] = STATE(140), + [sym_collapsed_reference_link] = STATE(140), + [sym_inline_link] = STATE(140), + [sym_link_text] = STATE(688), + [sym_span] = STATE(14), + [sym__bracketed_text] = STATE(654), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(140), + [sym_raw_inline] = STATE(140), + [sym_math] = STATE(140), + [sym_verbatim] = STATE(140), + [sym__todo_highlights] = STATE(140), + [sym_todo] = STATE(140), + [sym_note] = STATE(140), + [sym__symbol_fallback] = STATE(140), + [aux_sym__text] = STATE(131), + [aux_sym__inline_repeat1] = STATE(14), + [anon_sym_LBRACE_] = ACTIONS(469), + [anon_sym__] = ACTIONS(472), + [anon_sym_LBRACE_STAR] = ACTIONS(475), + [anon_sym_STAR] = ACTIONS(478), + [anon_sym_LBRACE_CARET] = ACTIONS(481), + [anon_sym_CARET] = ACTIONS(481), + [anon_sym_LBRACE_TILDE] = ACTIONS(484), + [anon_sym_TILDE] = ACTIONS(484), + [anon_sym_LBRACE_EQ] = ACTIONS(487), + [anon_sym_LBRACE_PLUS] = ACTIONS(490), + [anon_sym_LBRACE_DASH] = ACTIONS(493), + [anon_sym_BSLASH] = ACTIONS(496), + [sym_quotation_marks] = ACTIONS(499), + [sym_ellipsis] = ACTIONS(499), + [sym_em_dash] = ACTIONS(499), + [sym_en_dash] = ACTIONS(502), + [sym_backslash_escape] = ACTIONS(502), + [anon_sym_LT] = ACTIONS(505), + [sym_symbol] = ACTIONS(499), + [anon_sym_LBRACK_CARET] = ACTIONS(508), + [anon_sym_BANG_LBRACK] = ACTIONS(511), + [anon_sym_LBRACK] = ACTIONS(514), + [anon_sym_DOLLAR] = ACTIONS(517), + [anon_sym_TODO] = ACTIONS(520), + [anon_sym_WIP] = ACTIONS(520), + [anon_sym_NOTE] = ACTIONS(523), + [anon_sym_INFO] = ACTIONS(523), + [anon_sym_XXX] = ACTIONS(523), + [sym_fixme] = ACTIONS(499), + [sym__whitespace1] = ACTIONS(526), + [sym__newline] = ACTIONS(529), + [aux_sym__text_token1] = ACTIONS(532), + [sym__verbatim_begin] = ACTIONS(535), + [sym_superscript_end] = ACTIONS(538), }, [15] = { - [sym__inline] = STATE(921), - [sym__element] = STATE(106), - [sym_emphasis] = STATE(211), - [sym_emphasis_begin] = STATE(1060), - [sym_strong] = STATE(211), - [sym_strong_begin] = STATE(1061), - [sym_superscript] = STATE(211), - [sym_superscript_begin] = STATE(1062), - [sym_subscript] = STATE(211), - [sym_subscript_begin] = STATE(1063), - [sym_highlighted] = STATE(211), - [sym_highlighted_begin] = STATE(1064), - [sym_insert] = STATE(211), - [sym_insert_begin] = STATE(1065), - [sym_delete] = STATE(211), - [sym_delete_begin] = STATE(1066), - [sym_hard_line_break] = STATE(211), - [sym__smart_punctuation] = STATE(211), - [sym_autolink] = STATE(211), - [sym_footnote_reference] = STATE(211), - [sym__image] = STATE(211), - [sym_full_reference_image] = STATE(211), - [sym_collapsed_reference_image] = STATE(211), - [sym_inline_image] = STATE(211), - [sym__image_description] = STATE(671), - [sym__link] = STATE(211), - [sym_full_reference_link] = STATE(211), - [sym_collapsed_reference_link] = STATE(211), - [sym_inline_link] = STATE(211), - [sym_link_text] = STATE(676), - [sym__comment_with_spaces] = STATE(211), - [sym_span] = STATE(211), - [sym_raw_inline] = STATE(211), - [sym_math] = STATE(211), - [sym_verbatim] = STATE(211), - [sym__todo_highlights] = STATE(211), - [sym_todo] = STATE(211), - [sym_note] = STATE(211), - [sym__symbol_fallback] = STATE(211), - [aux_sym__text] = STATE(139), - [aux_sym__inline_repeat1] = STATE(106), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(51), - [anon_sym__] = ACTIONS(54), - [anon_sym_LBRACE_STAR] = ACTIONS(57), - [anon_sym_STAR] = ACTIONS(60), - [anon_sym_LBRACE_CARET] = ACTIONS(63), - [anon_sym_CARET] = ACTIONS(63), - [anon_sym_LBRACE_TILDE] = ACTIONS(66), - [anon_sym_TILDE] = ACTIONS(66), - [anon_sym_LBRACE_EQ] = ACTIONS(69), - [anon_sym_LBRACE_PLUS] = ACTIONS(72), - [anon_sym_LBRACE_DASH] = ACTIONS(75), - [anon_sym_BSLASH] = ACTIONS(78), - [sym_quotation_marks] = ACTIONS(81), - [sym_ellipsis] = ACTIONS(81), - [sym_em_dash] = ACTIONS(81), - [sym_en_dash] = ACTIONS(84), - [sym_backslash_escape] = ACTIONS(84), - [anon_sym_LT] = ACTIONS(87), - [sym_symbol] = ACTIONS(81), - [anon_sym_LBRACK_CARET] = ACTIONS(90), - [anon_sym_RBRACK] = ACTIONS(101), - [anon_sym_BANG_LBRACK] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(98), - [anon_sym_LBRACE2] = ACTIONS(84), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_TODO] = ACTIONS(106), - [anon_sym_WIP] = ACTIONS(106), - [anon_sym_NOTE] = ACTIONS(109), - [anon_sym_INFO] = ACTIONS(109), - [anon_sym_XXX] = ACTIONS(109), - [sym_fixme] = ACTIONS(81), - [sym__whitespace1] = ACTIONS(112), - [sym__newline] = ACTIONS(115), - [aux_sym__text_token1] = ACTIONS(118), - [sym__verbatim_begin] = ACTIONS(121), + [sym__inline] = STATE(936), + [sym__element] = STATE(21), + [sym_emphasis] = STATE(134), + [sym_emphasis_begin] = STATE(1182), + [sym_strong] = STATE(134), + [sym_strong_begin] = STATE(1183), + [sym_superscript] = STATE(134), + [sym_superscript_begin] = STATE(1184), + [sym_subscript] = STATE(134), + [sym_subscript_begin] = STATE(1185), + [sym_highlighted] = STATE(134), + [sym_highlighted_begin] = STATE(1186), + [sym_insert] = STATE(134), + [sym_insert_begin] = STATE(1187), + [sym_delete] = STATE(134), + [sym_delete_begin] = STATE(1188), + [sym_hard_line_break] = STATE(134), + [sym__smart_punctuation] = STATE(134), + [sym_autolink] = STATE(134), + [sym_footnote_reference] = STATE(134), + [sym__image] = STATE(134), + [sym_full_reference_image] = STATE(134), + [sym_collapsed_reference_image] = STATE(134), + [sym_inline_image] = STATE(134), + [sym__image_description] = STATE(677), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(134), + [sym_full_reference_link] = STATE(134), + [sym_collapsed_reference_link] = STATE(134), + [sym_inline_link] = STATE(134), + [sym_link_text] = STATE(675), + [sym_span] = STATE(21), + [sym__bracketed_text] = STATE(660), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(134), + [sym_raw_inline] = STATE(134), + [sym_math] = STATE(134), + [sym_verbatim] = STATE(134), + [sym__todo_highlights] = STATE(134), + [sym_todo] = STATE(134), + [sym_note] = STATE(134), + [sym__symbol_fallback] = STATE(134), + [aux_sym__text] = STATE(127), + [aux_sym__inline_repeat1] = STATE(21), + [anon_sym_LBRACE_] = ACTIONS(189), + [anon_sym__] = ACTIONS(191), + [anon_sym_LBRACE_STAR] = ACTIONS(193), + [anon_sym_STAR] = ACTIONS(195), + [anon_sym_LBRACE_CARET] = ACTIONS(197), + [anon_sym_CARET] = ACTIONS(197), + [anon_sym_LBRACE_TILDE] = ACTIONS(199), + [anon_sym_TILDE] = ACTIONS(199), + [anon_sym_LBRACE_EQ] = ACTIONS(201), + [anon_sym_LBRACE_PLUS] = ACTIONS(203), + [anon_sym_LBRACE_DASH] = ACTIONS(205), + [anon_sym_BSLASH] = ACTIONS(207), + [sym_quotation_marks] = ACTIONS(209), + [sym_ellipsis] = ACTIONS(209), + [sym_em_dash] = ACTIONS(209), + [sym_en_dash] = ACTIONS(211), + [sym_backslash_escape] = ACTIONS(211), + [anon_sym_LT] = ACTIONS(213), + [sym_symbol] = ACTIONS(209), + [anon_sym_LBRACK_CARET] = ACTIONS(215), + [anon_sym_BANG_LBRACK] = ACTIONS(217), + [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_DOLLAR] = ACTIONS(221), + [anon_sym_TODO] = ACTIONS(223), + [anon_sym_WIP] = ACTIONS(223), + [anon_sym_NOTE] = ACTIONS(225), + [anon_sym_INFO] = ACTIONS(225), + [anon_sym_XXX] = ACTIONS(225), + [sym_fixme] = ACTIONS(209), + [sym__whitespace1] = ACTIONS(227), + [sym__newline] = ACTIONS(229), + [aux_sym__text_token1] = ACTIONS(231), + [sym__verbatim_begin] = ACTIONS(233), }, [16] = { - [sym__inline] = STATE(1010), - [sym__element] = STATE(106), - [sym_emphasis] = STATE(211), - [sym_emphasis_begin] = STATE(1060), - [sym_strong] = STATE(211), - [sym_strong_begin] = STATE(1061), - [sym_superscript] = STATE(211), - [sym_superscript_begin] = STATE(1062), - [sym_subscript] = STATE(211), - [sym_subscript_begin] = STATE(1063), - [sym_highlighted] = STATE(211), - [sym_highlighted_begin] = STATE(1064), - [sym_insert] = STATE(211), - [sym_insert_begin] = STATE(1065), - [sym_delete] = STATE(211), - [sym_delete_begin] = STATE(1066), - [sym_hard_line_break] = STATE(211), - [sym__smart_punctuation] = STATE(211), - [sym_autolink] = STATE(211), - [sym_footnote_reference] = STATE(211), - [sym__image] = STATE(211), - [sym_full_reference_image] = STATE(211), - [sym_collapsed_reference_image] = STATE(211), - [sym_inline_image] = STATE(211), - [sym__image_description] = STATE(671), - [sym__link] = STATE(211), - [sym_full_reference_link] = STATE(211), - [sym_collapsed_reference_link] = STATE(211), - [sym_inline_link] = STATE(211), - [sym_link_text] = STATE(676), - [sym__comment_with_spaces] = STATE(211), - [sym_span] = STATE(211), - [sym_raw_inline] = STATE(211), - [sym_math] = STATE(211), - [sym_verbatim] = STATE(211), - [sym__todo_highlights] = STATE(211), - [sym_todo] = STATE(211), - [sym_note] = STATE(211), - [sym__symbol_fallback] = STATE(211), - [aux_sym__text] = STATE(139), - [aux_sym__inline_repeat1] = STATE(106), - [ts_builtin_sym_end] = ACTIONS(101), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(51), - [anon_sym__] = ACTIONS(54), - [anon_sym_LBRACE_STAR] = ACTIONS(57), - [anon_sym_STAR] = ACTIONS(60), - [anon_sym_LBRACE_CARET] = ACTIONS(63), - [anon_sym_CARET] = ACTIONS(63), - [anon_sym_LBRACE_TILDE] = ACTIONS(66), - [anon_sym_TILDE] = ACTIONS(66), - [anon_sym_LBRACE_EQ] = ACTIONS(69), - [anon_sym_LBRACE_PLUS] = ACTIONS(72), - [anon_sym_LBRACE_DASH] = ACTIONS(75), - [anon_sym_BSLASH] = ACTIONS(78), - [sym_quotation_marks] = ACTIONS(81), - [sym_ellipsis] = ACTIONS(81), - [sym_em_dash] = ACTIONS(81), - [sym_en_dash] = ACTIONS(84), - [sym_backslash_escape] = ACTIONS(84), - [anon_sym_LT] = ACTIONS(87), - [sym_symbol] = ACTIONS(81), - [anon_sym_LBRACK_CARET] = ACTIONS(90), - [anon_sym_BANG_LBRACK] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(98), - [anon_sym_LBRACE2] = ACTIONS(84), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_TODO] = ACTIONS(106), - [anon_sym_WIP] = ACTIONS(106), - [anon_sym_NOTE] = ACTIONS(109), - [anon_sym_INFO] = ACTIONS(109), - [anon_sym_XXX] = ACTIONS(109), - [sym_fixme] = ACTIONS(81), - [sym__whitespace1] = ACTIONS(112), - [sym__newline] = ACTIONS(115), - [aux_sym__text_token1] = ACTIONS(118), - [sym__verbatim_begin] = ACTIONS(121), + [sym__inline] = STATE(935), + [sym__element] = STATE(103), + [sym_emphasis] = STATE(139), + [sym_emphasis_begin] = STATE(1175), + [sym_strong] = STATE(139), + [sym_strong_begin] = STATE(1176), + [sym_superscript] = STATE(139), + [sym_superscript_begin] = STATE(1177), + [sym_subscript] = STATE(139), + [sym_subscript_begin] = STATE(1178), + [sym_highlighted] = STATE(139), + [sym_highlighted_begin] = STATE(1179), + [sym_insert] = STATE(139), + [sym_insert_begin] = STATE(1180), + [sym_delete] = STATE(139), + [sym_delete_begin] = STATE(1181), + [sym_hard_line_break] = STATE(139), + [sym__smart_punctuation] = STATE(139), + [sym_autolink] = STATE(139), + [sym_footnote_reference] = STATE(139), + [sym__image] = STATE(139), + [sym_full_reference_image] = STATE(139), + [sym_collapsed_reference_image] = STATE(139), + [sym_inline_image] = STATE(139), + [sym__image_description] = STATE(682), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(139), + [sym_full_reference_link] = STATE(139), + [sym_collapsed_reference_link] = STATE(139), + [sym_inline_link] = STATE(139), + [sym_link_text] = STATE(681), + [sym_span] = STATE(103), + [sym__bracketed_text] = STATE(656), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(139), + [sym_raw_inline] = STATE(139), + [sym_math] = STATE(139), + [sym_verbatim] = STATE(139), + [sym__todo_highlights] = STATE(139), + [sym_todo] = STATE(139), + [sym_note] = STATE(139), + [sym__symbol_fallback] = STATE(139), + [aux_sym__text] = STATE(129), + [aux_sym__inline_repeat1] = STATE(103), + [anon_sym_LBRACE_] = ACTIONS(235), + [anon_sym__] = ACTIONS(237), + [anon_sym_LBRACE_STAR] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(241), + [anon_sym_LBRACE_CARET] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(243), + [anon_sym_LBRACE_TILDE] = ACTIONS(245), + [anon_sym_TILDE] = ACTIONS(245), + [anon_sym_LBRACE_EQ] = ACTIONS(247), + [anon_sym_LBRACE_PLUS] = ACTIONS(249), + [anon_sym_LBRACE_DASH] = ACTIONS(251), + [anon_sym_BSLASH] = ACTIONS(253), + [sym_quotation_marks] = ACTIONS(255), + [sym_ellipsis] = ACTIONS(255), + [sym_em_dash] = ACTIONS(255), + [sym_en_dash] = ACTIONS(257), + [sym_backslash_escape] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(259), + [sym_symbol] = ACTIONS(255), + [anon_sym_LBRACK_CARET] = ACTIONS(261), + [anon_sym_BANG_LBRACK] = ACTIONS(263), + [anon_sym_LBRACK] = ACTIONS(265), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_TODO] = ACTIONS(269), + [anon_sym_WIP] = ACTIONS(269), + [anon_sym_NOTE] = ACTIONS(271), + [anon_sym_INFO] = ACTIONS(271), + [anon_sym_XXX] = ACTIONS(271), + [sym_fixme] = ACTIONS(255), + [sym__whitespace1] = ACTIONS(273), + [sym__newline] = ACTIONS(275), + [aux_sym__text_token1] = ACTIONS(277), + [sym__verbatim_begin] = ACTIONS(279), }, [17] = { - [sym__inline] = STATE(949), - [sym__element] = STATE(106), - [sym_emphasis] = STATE(211), - [sym_emphasis_begin] = STATE(1060), - [sym_strong] = STATE(211), - [sym_strong_begin] = STATE(1061), - [sym_superscript] = STATE(211), - [sym_superscript_begin] = STATE(1062), - [sym_subscript] = STATE(211), - [sym_subscript_begin] = STATE(1063), - [sym_highlighted] = STATE(211), - [sym_highlighted_begin] = STATE(1064), - [sym_insert] = STATE(211), - [sym_insert_begin] = STATE(1065), - [sym_delete] = STATE(211), - [sym_delete_begin] = STATE(1066), - [sym_hard_line_break] = STATE(211), - [sym__smart_punctuation] = STATE(211), - [sym_autolink] = STATE(211), - [sym_footnote_reference] = STATE(211), - [sym__image] = STATE(211), - [sym_full_reference_image] = STATE(211), - [sym_collapsed_reference_image] = STATE(211), - [sym_inline_image] = STATE(211), - [sym__image_description] = STATE(671), - [sym__link] = STATE(211), - [sym_full_reference_link] = STATE(211), - [sym_collapsed_reference_link] = STATE(211), - [sym_inline_link] = STATE(211), - [sym_link_text] = STATE(676), - [sym__comment_with_spaces] = STATE(211), - [sym_span] = STATE(211), - [sym_raw_inline] = STATE(211), - [sym_math] = STATE(211), - [sym_verbatim] = STATE(211), - [sym__todo_highlights] = STATE(211), - [sym_todo] = STATE(211), - [sym_note] = STATE(211), - [sym__symbol_fallback] = STATE(211), - [aux_sym__text] = STATE(139), - [aux_sym__inline_repeat1] = STATE(106), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(51), - [anon_sym__] = ACTIONS(54), - [anon_sym_LBRACE_STAR] = ACTIONS(57), - [anon_sym_STAR] = ACTIONS(60), - [anon_sym_LBRACE_CARET] = ACTIONS(63), - [anon_sym_CARET] = ACTIONS(63), - [anon_sym_LBRACE_TILDE] = ACTIONS(66), - [anon_sym_TILDE] = ACTIONS(66), - [anon_sym_LBRACE_EQ] = ACTIONS(69), - [anon_sym_LBRACE_PLUS] = ACTIONS(72), - [anon_sym_LBRACE_DASH] = ACTIONS(75), - [anon_sym_BSLASH] = ACTIONS(78), - [sym_quotation_marks] = ACTIONS(81), - [sym_ellipsis] = ACTIONS(81), - [sym_em_dash] = ACTIONS(81), - [sym_en_dash] = ACTIONS(84), - [sym_backslash_escape] = ACTIONS(84), - [anon_sym_LT] = ACTIONS(87), - [sym_symbol] = ACTIONS(81), - [anon_sym_LBRACK_CARET] = ACTIONS(90), - [anon_sym_BANG_LBRACK] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(98), - [anon_sym_LBRACE2] = ACTIONS(84), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_TODO] = ACTIONS(106), - [anon_sym_WIP] = ACTIONS(106), - [anon_sym_NOTE] = ACTIONS(109), - [anon_sym_INFO] = ACTIONS(109), - [anon_sym_XXX] = ACTIONS(109), - [sym_fixme] = ACTIONS(81), - [sym__whitespace1] = ACTIONS(112), - [sym__newline] = ACTIONS(115), - [aux_sym__text_token1] = ACTIONS(118), - [sym__verbatim_begin] = ACTIONS(121), - [sym_strong_end] = ACTIONS(101), + [sym__inline] = STATE(934), + [sym__element] = STATE(13), + [sym_emphasis] = STATE(141), + [sym_emphasis_begin] = STATE(1168), + [sym_strong] = STATE(141), + [sym_strong_begin] = STATE(1169), + [sym_superscript] = STATE(141), + [sym_superscript_begin] = STATE(1170), + [sym_subscript] = STATE(141), + [sym_subscript_begin] = STATE(1171), + [sym_highlighted] = STATE(141), + [sym_highlighted_begin] = STATE(1172), + [sym_insert] = STATE(141), + [sym_insert_begin] = STATE(1173), + [sym_delete] = STATE(141), + [sym_delete_begin] = STATE(1174), + [sym_hard_line_break] = STATE(141), + [sym__smart_punctuation] = STATE(141), + [sym_autolink] = STATE(141), + [sym_footnote_reference] = STATE(141), + [sym__image] = STATE(141), + [sym_full_reference_image] = STATE(141), + [sym_collapsed_reference_image] = STATE(141), + [sym_inline_image] = STATE(141), + [sym__image_description] = STATE(674), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(141), + [sym_full_reference_link] = STATE(141), + [sym_collapsed_reference_link] = STATE(141), + [sym_inline_link] = STATE(141), + [sym_link_text] = STATE(672), + [sym_span] = STATE(13), + [sym__bracketed_text] = STATE(655), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(141), + [sym_raw_inline] = STATE(141), + [sym_math] = STATE(141), + [sym_verbatim] = STATE(141), + [sym__todo_highlights] = STATE(141), + [sym_todo] = STATE(141), + [sym_note] = STATE(141), + [sym__symbol_fallback] = STATE(141), + [aux_sym__text] = STATE(128), + [aux_sym__inline_repeat1] = STATE(13), + [anon_sym_LBRACE_] = ACTIONS(281), + [anon_sym__] = ACTIONS(283), + [anon_sym_LBRACE_STAR] = ACTIONS(285), + [anon_sym_STAR] = ACTIONS(287), + [anon_sym_LBRACE_CARET] = ACTIONS(289), + [anon_sym_CARET] = ACTIONS(289), + [anon_sym_LBRACE_TILDE] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(291), + [anon_sym_LBRACE_EQ] = ACTIONS(293), + [anon_sym_LBRACE_PLUS] = ACTIONS(295), + [anon_sym_LBRACE_DASH] = ACTIONS(297), + [anon_sym_BSLASH] = ACTIONS(299), + [sym_quotation_marks] = ACTIONS(301), + [sym_ellipsis] = ACTIONS(301), + [sym_em_dash] = ACTIONS(301), + [sym_en_dash] = ACTIONS(303), + [sym_backslash_escape] = ACTIONS(303), + [anon_sym_LT] = ACTIONS(305), + [sym_symbol] = ACTIONS(301), + [anon_sym_LBRACK_CARET] = ACTIONS(307), + [anon_sym_BANG_LBRACK] = ACTIONS(309), + [anon_sym_LBRACK] = ACTIONS(311), + [anon_sym_DOLLAR] = ACTIONS(313), + [anon_sym_TODO] = ACTIONS(315), + [anon_sym_WIP] = ACTIONS(315), + [anon_sym_NOTE] = ACTIONS(317), + [anon_sym_INFO] = ACTIONS(317), + [anon_sym_XXX] = ACTIONS(317), + [sym_fixme] = ACTIONS(301), + [sym__whitespace1] = ACTIONS(319), + [sym__newline] = ACTIONS(321), + [aux_sym__text_token1] = ACTIONS(323), + [sym__verbatim_begin] = ACTIONS(325), }, [18] = { - [sym__inline] = STATE(991), - [sym__element] = STATE(106), - [sym_emphasis] = STATE(211), - [sym_emphasis_begin] = STATE(1060), - [sym_strong] = STATE(211), - [sym_strong_begin] = STATE(1061), - [sym_superscript] = STATE(211), - [sym_superscript_begin] = STATE(1062), - [sym_subscript] = STATE(211), - [sym_subscript_begin] = STATE(1063), - [sym_highlighted] = STATE(211), - [sym_highlighted_begin] = STATE(1064), - [sym_insert] = STATE(211), - [sym_insert_begin] = STATE(1065), - [sym_delete] = STATE(211), - [sym_delete_begin] = STATE(1066), - [sym_hard_line_break] = STATE(211), - [sym__smart_punctuation] = STATE(211), - [sym_autolink] = STATE(211), - [sym_footnote_reference] = STATE(211), - [sym__image] = STATE(211), - [sym_full_reference_image] = STATE(211), - [sym_collapsed_reference_image] = STATE(211), - [sym_inline_image] = STATE(211), - [sym__image_description] = STATE(671), - [sym__link] = STATE(211), - [sym_full_reference_link] = STATE(211), - [sym_collapsed_reference_link] = STATE(211), - [sym_inline_link] = STATE(211), - [sym_link_text] = STATE(676), - [sym__comment_with_spaces] = STATE(211), - [sym_span] = STATE(211), - [sym_raw_inline] = STATE(211), - [sym_math] = STATE(211), - [sym_verbatim] = STATE(211), - [sym__todo_highlights] = STATE(211), - [sym_todo] = STATE(211), - [sym_note] = STATE(211), - [sym__symbol_fallback] = STATE(211), - [aux_sym__text] = STATE(139), - [aux_sym__inline_repeat1] = STATE(106), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(51), - [anon_sym__] = ACTIONS(54), - [anon_sym_LBRACE_STAR] = ACTIONS(57), - [anon_sym_STAR] = ACTIONS(60), - [anon_sym_LBRACE_CARET] = ACTIONS(63), - [anon_sym_CARET] = ACTIONS(63), - [anon_sym_LBRACE_TILDE] = ACTIONS(66), - [anon_sym_TILDE] = ACTIONS(66), - [anon_sym_LBRACE_EQ] = ACTIONS(69), - [anon_sym_LBRACE_PLUS] = ACTIONS(72), - [anon_sym_LBRACE_DASH] = ACTIONS(75), - [anon_sym_BSLASH] = ACTIONS(78), - [sym_quotation_marks] = ACTIONS(81), - [sym_ellipsis] = ACTIONS(81), - [sym_em_dash] = ACTIONS(81), - [sym_en_dash] = ACTIONS(84), - [sym_backslash_escape] = ACTIONS(84), - [anon_sym_LT] = ACTIONS(87), - [sym_symbol] = ACTIONS(81), - [anon_sym_LBRACK_CARET] = ACTIONS(90), - [anon_sym_BANG_LBRACK] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(98), - [anon_sym_LBRACE2] = ACTIONS(84), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_TODO] = ACTIONS(106), - [anon_sym_WIP] = ACTIONS(106), - [anon_sym_NOTE] = ACTIONS(109), - [anon_sym_INFO] = ACTIONS(109), - [anon_sym_XXX] = ACTIONS(109), - [sym_fixme] = ACTIONS(81), - [sym__whitespace1] = ACTIONS(112), - [sym__newline] = ACTIONS(115), - [aux_sym__text_token1] = ACTIONS(118), - [sym__verbatim_begin] = ACTIONS(121), - [sym_highlighted_end] = ACTIONS(101), + [sym__inline_without_trailing_space] = STATE(1001), + [sym__element] = STATE(604), + [sym_emphasis] = STATE(138), + [sym_emphasis_begin] = STATE(1140), + [sym_strong] = STATE(138), + [sym_strong_begin] = STATE(1141), + [sym_superscript] = STATE(138), + [sym_superscript_begin] = STATE(1142), + [sym_subscript] = STATE(138), + [sym_subscript_begin] = STATE(1143), + [sym_highlighted] = STATE(138), + [sym_highlighted_begin] = STATE(1144), + [sym_insert] = STATE(138), + [sym_insert_begin] = STATE(1145), + [sym_delete] = STATE(138), + [sym_delete_begin] = STATE(1146), + [sym_hard_line_break] = STATE(138), + [sym__smart_punctuation] = STATE(138), + [sym_autolink] = STATE(138), + [sym_footnote_reference] = STATE(138), + [sym__image] = STATE(138), + [sym_full_reference_image] = STATE(138), + [sym_collapsed_reference_image] = STATE(138), + [sym_inline_image] = STATE(138), + [sym__image_description] = STATE(667), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(138), + [sym_full_reference_link] = STATE(138), + [sym_collapsed_reference_link] = STATE(138), + [sym_inline_link] = STATE(138), + [sym_link_text] = STATE(689), + [sym_span] = STATE(604), + [sym__bracketed_text] = STATE(658), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(138), + [sym_raw_inline] = STATE(138), + [sym_math] = STATE(138), + [sym_verbatim] = STATE(138), + [sym__todo_highlights] = STATE(138), + [sym_todo] = STATE(138), + [sym_note] = STATE(138), + [sym__symbol_fallback] = STATE(138), + [aux_sym__text] = STATE(124), + [aux_sym__inline_repeat1] = STATE(118), + [anon_sym_LBRACE_] = ACTIONS(419), + [anon_sym__] = ACTIONS(421), + [anon_sym_LBRACE_STAR] = ACTIONS(423), + [anon_sym_STAR] = ACTIONS(425), + [anon_sym_LBRACE_CARET] = ACTIONS(427), + [anon_sym_CARET] = ACTIONS(427), + [anon_sym_LBRACE_TILDE] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_LBRACE_EQ] = ACTIONS(431), + [anon_sym_LBRACE_PLUS] = ACTIONS(433), + [anon_sym_LBRACE_DASH] = ACTIONS(435), + [anon_sym_BSLASH] = ACTIONS(437), + [sym_quotation_marks] = ACTIONS(439), + [sym_ellipsis] = ACTIONS(439), + [sym_em_dash] = ACTIONS(439), + [sym_en_dash] = ACTIONS(441), + [sym_backslash_escape] = ACTIONS(441), + [anon_sym_LT] = ACTIONS(443), + [sym_symbol] = ACTIONS(439), + [anon_sym_LBRACK_CARET] = ACTIONS(445), + [anon_sym_BANG_LBRACK] = ACTIONS(447), + [anon_sym_LBRACK] = ACTIONS(449), + [anon_sym_DOLLAR] = ACTIONS(451), + [anon_sym_TODO] = ACTIONS(453), + [anon_sym_WIP] = ACTIONS(453), + [anon_sym_NOTE] = ACTIONS(455), + [anon_sym_INFO] = ACTIONS(455), + [anon_sym_XXX] = ACTIONS(455), + [sym_fixme] = ACTIONS(439), + [sym__whitespace1] = ACTIONS(457), + [sym__newline] = ACTIONS(459), + [aux_sym__text_token1] = ACTIONS(461), + [sym__verbatim_begin] = ACTIONS(463), }, [19] = { - [sym__inline] = STATE(935), - [sym__element] = STATE(106), - [sym_emphasis] = STATE(211), - [sym_emphasis_begin] = STATE(1060), - [sym_strong] = STATE(211), - [sym_strong_begin] = STATE(1061), - [sym_superscript] = STATE(211), - [sym_superscript_begin] = STATE(1062), - [sym_subscript] = STATE(211), - [sym_subscript_begin] = STATE(1063), - [sym_highlighted] = STATE(211), - [sym_highlighted_begin] = STATE(1064), - [sym_insert] = STATE(211), - [sym_insert_begin] = STATE(1065), - [sym_delete] = STATE(211), - [sym_delete_begin] = STATE(1066), - [sym_hard_line_break] = STATE(211), - [sym__smart_punctuation] = STATE(211), - [sym_autolink] = STATE(211), - [sym_footnote_reference] = STATE(211), - [sym__image] = STATE(211), - [sym_full_reference_image] = STATE(211), - [sym_collapsed_reference_image] = STATE(211), - [sym_inline_image] = STATE(211), - [sym__image_description] = STATE(671), - [sym__link] = STATE(211), - [sym_full_reference_link] = STATE(211), - [sym_collapsed_reference_link] = STATE(211), - [sym_inline_link] = STATE(211), - [sym_link_text] = STATE(676), - [sym__comment_with_spaces] = STATE(211), - [sym_span] = STATE(211), - [sym_raw_inline] = STATE(211), - [sym_math] = STATE(211), - [sym_verbatim] = STATE(211), - [sym__todo_highlights] = STATE(211), - [sym_todo] = STATE(211), - [sym_note] = STATE(211), - [sym__symbol_fallback] = STATE(211), - [aux_sym__text] = STATE(139), - [aux_sym__inline_repeat1] = STATE(106), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(51), - [anon_sym__] = ACTIONS(54), - [anon_sym_LBRACE_STAR] = ACTIONS(57), - [anon_sym_STAR] = ACTIONS(60), - [anon_sym_LBRACE_CARET] = ACTIONS(63), - [anon_sym_CARET] = ACTIONS(63), - [anon_sym_LBRACE_TILDE] = ACTIONS(66), - [anon_sym_TILDE] = ACTIONS(66), - [anon_sym_LBRACE_EQ] = ACTIONS(69), - [anon_sym_LBRACE_PLUS] = ACTIONS(72), - [anon_sym_LBRACE_DASH] = ACTIONS(75), - [anon_sym_BSLASH] = ACTIONS(78), - [sym_quotation_marks] = ACTIONS(81), - [sym_ellipsis] = ACTIONS(81), - [sym_em_dash] = ACTIONS(81), - [sym_en_dash] = ACTIONS(84), - [sym_backslash_escape] = ACTIONS(84), - [anon_sym_LT] = ACTIONS(87), - [sym_symbol] = ACTIONS(81), - [anon_sym_LBRACK_CARET] = ACTIONS(90), - [anon_sym_BANG_LBRACK] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(98), - [anon_sym_LBRACE2] = ACTIONS(84), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_TODO] = ACTIONS(106), - [anon_sym_WIP] = ACTIONS(106), - [anon_sym_NOTE] = ACTIONS(109), - [anon_sym_INFO] = ACTIONS(109), - [anon_sym_XXX] = ACTIONS(109), - [sym_fixme] = ACTIONS(81), - [sym__whitespace1] = ACTIONS(112), - [sym__newline] = ACTIONS(115), - [aux_sym__text_token1] = ACTIONS(118), - [sym__verbatim_begin] = ACTIONS(121), - [sym_emphasis_end] = ACTIONS(101), + [sym__inline_without_trailing_space] = STATE(1000), + [sym__element] = STATE(562), + [sym_emphasis] = STATE(142), + [sym_emphasis_begin] = STATE(1147), + [sym_strong] = STATE(142), + [sym_strong_begin] = STATE(1148), + [sym_superscript] = STATE(142), + [sym_superscript_begin] = STATE(1149), + [sym_subscript] = STATE(142), + [sym_subscript_begin] = STATE(1150), + [sym_highlighted] = STATE(142), + [sym_highlighted_begin] = STATE(1151), + [sym_insert] = STATE(142), + [sym_insert_begin] = STATE(1152), + [sym_delete] = STATE(142), + [sym_delete_begin] = STATE(1153), + [sym_hard_line_break] = STATE(142), + [sym__smart_punctuation] = STATE(142), + [sym_autolink] = STATE(142), + [sym_footnote_reference] = STATE(142), + [sym__image] = STATE(142), + [sym_full_reference_image] = STATE(142), + [sym_collapsed_reference_image] = STATE(142), + [sym_inline_image] = STATE(142), + [sym__image_description] = STATE(685), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(142), + [sym_full_reference_link] = STATE(142), + [sym_collapsed_reference_link] = STATE(142), + [sym_inline_link] = STATE(142), + [sym_link_text] = STATE(683), + [sym_span] = STATE(562), + [sym__bracketed_text] = STATE(657), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(142), + [sym_raw_inline] = STATE(142), + [sym_math] = STATE(142), + [sym_verbatim] = STATE(142), + [sym__todo_highlights] = STATE(142), + [sym_todo] = STATE(142), + [sym_note] = STATE(142), + [sym__symbol_fallback] = STATE(142), + [aux_sym__text] = STATE(126), + [aux_sym__inline_repeat1] = STATE(120), + [anon_sym_LBRACE_] = ACTIONS(373), + [anon_sym__] = ACTIONS(375), + [anon_sym_LBRACE_STAR] = ACTIONS(377), + [anon_sym_STAR] = ACTIONS(379), + [anon_sym_LBRACE_CARET] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(381), + [anon_sym_LBRACE_TILDE] = ACTIONS(383), + [anon_sym_TILDE] = ACTIONS(383), + [anon_sym_LBRACE_EQ] = ACTIONS(385), + [anon_sym_LBRACE_PLUS] = ACTIONS(387), + [anon_sym_LBRACE_DASH] = ACTIONS(389), + [anon_sym_BSLASH] = ACTIONS(391), + [sym_quotation_marks] = ACTIONS(393), + [sym_ellipsis] = ACTIONS(393), + [sym_em_dash] = ACTIONS(393), + [sym_en_dash] = ACTIONS(395), + [sym_backslash_escape] = ACTIONS(395), + [anon_sym_LT] = ACTIONS(397), + [sym_symbol] = ACTIONS(393), + [anon_sym_LBRACK_CARET] = ACTIONS(399), + [anon_sym_BANG_LBRACK] = ACTIONS(401), + [anon_sym_LBRACK] = ACTIONS(403), + [anon_sym_DOLLAR] = ACTIONS(405), + [anon_sym_TODO] = ACTIONS(407), + [anon_sym_WIP] = ACTIONS(407), + [anon_sym_NOTE] = ACTIONS(409), + [anon_sym_INFO] = ACTIONS(409), + [anon_sym_XXX] = ACTIONS(409), + [sym_fixme] = ACTIONS(393), + [sym__whitespace1] = ACTIONS(411), + [sym__newline] = ACTIONS(413), + [aux_sym__text_token1] = ACTIONS(415), + [sym__verbatim_begin] = ACTIONS(417), }, [20] = { - [sym__inline] = STATE(1011), - [sym__element] = STATE(106), - [sym_emphasis] = STATE(211), - [sym_emphasis_begin] = STATE(1060), - [sym_strong] = STATE(211), - [sym_strong_begin] = STATE(1061), - [sym_superscript] = STATE(211), - [sym_superscript_begin] = STATE(1062), - [sym_subscript] = STATE(211), - [sym_subscript_begin] = STATE(1063), - [sym_highlighted] = STATE(211), - [sym_highlighted_begin] = STATE(1064), - [sym_insert] = STATE(211), - [sym_insert_begin] = STATE(1065), - [sym_delete] = STATE(211), - [sym_delete_begin] = STATE(1066), - [sym_hard_line_break] = STATE(211), - [sym__smart_punctuation] = STATE(211), - [sym_autolink] = STATE(211), - [sym_footnote_reference] = STATE(211), - [sym__image] = STATE(211), - [sym_full_reference_image] = STATE(211), - [sym_collapsed_reference_image] = STATE(211), - [sym_inline_image] = STATE(211), - [sym__image_description] = STATE(671), - [sym__link] = STATE(211), - [sym_full_reference_link] = STATE(211), - [sym_collapsed_reference_link] = STATE(211), - [sym_inline_link] = STATE(211), - [sym_link_text] = STATE(676), - [sym__comment_with_spaces] = STATE(211), - [sym_span] = STATE(211), - [sym_raw_inline] = STATE(211), - [sym_math] = STATE(211), - [sym_verbatim] = STATE(211), - [sym__todo_highlights] = STATE(211), - [sym_todo] = STATE(211), - [sym_note] = STATE(211), - [sym__symbol_fallback] = STATE(211), - [aux_sym__text] = STATE(139), - [aux_sym__inline_repeat1] = STATE(106), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(51), - [anon_sym__] = ACTIONS(54), - [anon_sym_LBRACE_STAR] = ACTIONS(57), - [anon_sym_STAR] = ACTIONS(60), - [anon_sym_LBRACE_CARET] = ACTIONS(63), - [anon_sym_CARET] = ACTIONS(63), - [anon_sym_LBRACE_TILDE] = ACTIONS(66), - [anon_sym_TILDE] = ACTIONS(66), - [anon_sym_LBRACE_EQ] = ACTIONS(69), - [anon_sym_LBRACE_PLUS] = ACTIONS(72), - [anon_sym_LBRACE_DASH] = ACTIONS(75), - [anon_sym_BSLASH] = ACTIONS(78), - [sym_quotation_marks] = ACTIONS(81), - [sym_ellipsis] = ACTIONS(81), - [sym_em_dash] = ACTIONS(81), - [sym_en_dash] = ACTIONS(84), - [sym_backslash_escape] = ACTIONS(84), - [anon_sym_LT] = ACTIONS(87), - [sym_symbol] = ACTIONS(81), - [anon_sym_LBRACK_CARET] = ACTIONS(90), - [anon_sym_RBRACK] = ACTIONS(124), - [anon_sym_BANG_LBRACK] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(98), - [anon_sym_LBRACE2] = ACTIONS(84), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_TODO] = ACTIONS(106), - [anon_sym_WIP] = ACTIONS(106), - [anon_sym_NOTE] = ACTIONS(109), - [anon_sym_INFO] = ACTIONS(109), - [anon_sym_XXX] = ACTIONS(109), - [sym_fixme] = ACTIONS(81), - [sym__whitespace1] = ACTIONS(112), - [sym__newline] = ACTIONS(115), - [aux_sym__text_token1] = ACTIONS(118), - [sym__verbatim_begin] = ACTIONS(121), + [sym__inline] = STATE(999), + [sym__element] = STATE(105), + [sym_emphasis] = STATE(140), + [sym_emphasis_begin] = STATE(1154), + [sym_strong] = STATE(140), + [sym_strong_begin] = STATE(1155), + [sym_superscript] = STATE(140), + [sym_superscript_begin] = STATE(1156), + [sym_subscript] = STATE(140), + [sym_subscript_begin] = STATE(1157), + [sym_highlighted] = STATE(140), + [sym_highlighted_begin] = STATE(1158), + [sym_insert] = STATE(140), + [sym_insert_begin] = STATE(1159), + [sym_delete] = STATE(140), + [sym_delete_begin] = STATE(1160), + [sym_hard_line_break] = STATE(140), + [sym__smart_punctuation] = STATE(140), + [sym_autolink] = STATE(140), + [sym_footnote_reference] = STATE(140), + [sym__image] = STATE(140), + [sym_full_reference_image] = STATE(140), + [sym_collapsed_reference_image] = STATE(140), + [sym_inline_image] = STATE(140), + [sym__image_description] = STATE(687), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(140), + [sym_full_reference_link] = STATE(140), + [sym_collapsed_reference_link] = STATE(140), + [sym_inline_link] = STATE(140), + [sym_link_text] = STATE(688), + [sym_span] = STATE(105), + [sym__bracketed_text] = STATE(654), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(140), + [sym_raw_inline] = STATE(140), + [sym_math] = STATE(140), + [sym_verbatim] = STATE(140), + [sym__todo_highlights] = STATE(140), + [sym_todo] = STATE(140), + [sym_note] = STATE(140), + [sym__symbol_fallback] = STATE(140), + [aux_sym__text] = STATE(131), + [aux_sym__inline_repeat1] = STATE(105), + [anon_sym_LBRACE_] = ACTIONS(327), + [anon_sym__] = ACTIONS(329), + [anon_sym_LBRACE_STAR] = ACTIONS(331), + [anon_sym_STAR] = ACTIONS(333), + [anon_sym_LBRACE_CARET] = ACTIONS(335), + [anon_sym_CARET] = ACTIONS(335), + [anon_sym_LBRACE_TILDE] = ACTIONS(337), + [anon_sym_TILDE] = ACTIONS(337), + [anon_sym_LBRACE_EQ] = ACTIONS(339), + [anon_sym_LBRACE_PLUS] = ACTIONS(341), + [anon_sym_LBRACE_DASH] = ACTIONS(343), + [anon_sym_BSLASH] = ACTIONS(345), + [sym_quotation_marks] = ACTIONS(347), + [sym_ellipsis] = ACTIONS(347), + [sym_em_dash] = ACTIONS(347), + [sym_en_dash] = ACTIONS(349), + [sym_backslash_escape] = ACTIONS(349), + [anon_sym_LT] = ACTIONS(351), + [sym_symbol] = ACTIONS(347), + [anon_sym_LBRACK_CARET] = ACTIONS(353), + [anon_sym_BANG_LBRACK] = ACTIONS(355), + [anon_sym_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [anon_sym_TODO] = ACTIONS(361), + [anon_sym_WIP] = ACTIONS(361), + [anon_sym_NOTE] = ACTIONS(363), + [anon_sym_INFO] = ACTIONS(363), + [anon_sym_XXX] = ACTIONS(363), + [sym_fixme] = ACTIONS(347), + [sym__whitespace1] = ACTIONS(365), + [sym__newline] = ACTIONS(367), + [aux_sym__text_token1] = ACTIONS(369), + [sym__verbatim_begin] = ACTIONS(371), }, [21] = { - [sym__inline] = STATE(1019), - [sym__element] = STATE(106), - [sym_emphasis] = STATE(211), - [sym_emphasis_begin] = STATE(1060), - [sym_strong] = STATE(211), - [sym_strong_begin] = STATE(1061), - [sym_superscript] = STATE(211), - [sym_superscript_begin] = STATE(1062), - [sym_subscript] = STATE(211), - [sym_subscript_begin] = STATE(1063), - [sym_highlighted] = STATE(211), - [sym_highlighted_begin] = STATE(1064), - [sym_insert] = STATE(211), - [sym_insert_begin] = STATE(1065), - [sym_delete] = STATE(211), - [sym_delete_begin] = STATE(1066), - [sym_hard_line_break] = STATE(211), - [sym__smart_punctuation] = STATE(211), - [sym_autolink] = STATE(211), - [sym_footnote_reference] = STATE(211), - [sym__image] = STATE(211), - [sym_full_reference_image] = STATE(211), - [sym_collapsed_reference_image] = STATE(211), - [sym_inline_image] = STATE(211), - [sym__image_description] = STATE(671), - [sym__link] = STATE(211), - [sym_full_reference_link] = STATE(211), - [sym_collapsed_reference_link] = STATE(211), - [sym_inline_link] = STATE(211), - [sym_link_text] = STATE(676), - [sym__comment_with_spaces] = STATE(211), - [sym_span] = STATE(211), - [sym_raw_inline] = STATE(211), - [sym_math] = STATE(211), - [sym_verbatim] = STATE(211), - [sym__todo_highlights] = STATE(211), - [sym_todo] = STATE(211), - [sym_note] = STATE(211), - [sym__symbol_fallback] = STATE(211), - [aux_sym__text] = STATE(139), - [aux_sym__inline_repeat1] = STATE(106), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(51), - [anon_sym__] = ACTIONS(54), - [anon_sym_LBRACE_STAR] = ACTIONS(57), - [anon_sym_STAR] = ACTIONS(60), - [anon_sym_LBRACE_CARET] = ACTIONS(63), - [anon_sym_CARET] = ACTIONS(63), - [anon_sym_LBRACE_TILDE] = ACTIONS(66), - [anon_sym_TILDE] = ACTIONS(66), - [anon_sym_LBRACE_EQ] = ACTIONS(69), - [anon_sym_LBRACE_PLUS] = ACTIONS(72), - [anon_sym_LBRACE_DASH] = ACTIONS(75), - [anon_sym_BSLASH] = ACTIONS(78), - [sym_quotation_marks] = ACTIONS(81), - [sym_ellipsis] = ACTIONS(81), - [sym_em_dash] = ACTIONS(81), - [sym_en_dash] = ACTIONS(84), - [sym_backslash_escape] = ACTIONS(84), - [anon_sym_LT] = ACTIONS(87), - [sym_symbol] = ACTIONS(81), - [anon_sym_LBRACK_CARET] = ACTIONS(90), - [anon_sym_BANG_LBRACK] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(98), - [anon_sym_LBRACE2] = ACTIONS(84), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_TODO] = ACTIONS(106), - [anon_sym_WIP] = ACTIONS(106), - [anon_sym_NOTE] = ACTIONS(109), - [anon_sym_INFO] = ACTIONS(109), - [anon_sym_XXX] = ACTIONS(109), - [sym_fixme] = ACTIONS(81), - [sym__whitespace1] = ACTIONS(112), - [sym__newline] = ACTIONS(115), - [aux_sym__text_token1] = ACTIONS(118), - [sym__verbatim_begin] = ACTIONS(121), - [sym_delete_end] = ACTIONS(101), + [sym__element] = STATE(68), + [sym_emphasis] = STATE(134), + [sym_emphasis_begin] = STATE(1182), + [sym_strong] = STATE(134), + [sym_strong_begin] = STATE(1183), + [sym_superscript] = STATE(134), + [sym_superscript_begin] = STATE(1184), + [sym_subscript] = STATE(134), + [sym_subscript_begin] = STATE(1185), + [sym_highlighted] = STATE(134), + [sym_highlighted_begin] = STATE(1186), + [sym_insert] = STATE(134), + [sym_insert_begin] = STATE(1187), + [sym_delete] = STATE(134), + [sym_delete_begin] = STATE(1188), + [sym_hard_line_break] = STATE(134), + [sym__smart_punctuation] = STATE(134), + [sym_autolink] = STATE(134), + [sym_footnote_reference] = STATE(134), + [sym__image] = STATE(134), + [sym_full_reference_image] = STATE(134), + [sym_collapsed_reference_image] = STATE(134), + [sym_inline_image] = STATE(134), + [sym__image_description] = STATE(677), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(134), + [sym_full_reference_link] = STATE(134), + [sym_collapsed_reference_link] = STATE(134), + [sym_inline_link] = STATE(134), + [sym_link_text] = STATE(675), + [sym_span] = STATE(68), + [sym__bracketed_text] = STATE(660), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(134), + [sym_raw_inline] = STATE(134), + [sym_math] = STATE(134), + [sym_verbatim] = STATE(134), + [sym__todo_highlights] = STATE(134), + [sym_todo] = STATE(134), + [sym_note] = STATE(134), + [sym__symbol_fallback] = STATE(134), + [aux_sym__text] = STATE(127), + [aux_sym__inline_repeat1] = STATE(68), + [anon_sym_LBRACE_] = ACTIONS(189), + [anon_sym__] = ACTIONS(191), + [anon_sym_LBRACE_STAR] = ACTIONS(193), + [anon_sym_STAR] = ACTIONS(195), + [anon_sym_LBRACE_CARET] = ACTIONS(197), + [anon_sym_CARET] = ACTIONS(197), + [anon_sym_LBRACE_TILDE] = ACTIONS(199), + [anon_sym_TILDE] = ACTIONS(199), + [anon_sym_LBRACE_EQ] = ACTIONS(201), + [anon_sym_LBRACE_PLUS] = ACTIONS(203), + [anon_sym_LBRACE_DASH] = ACTIONS(205), + [anon_sym_BSLASH] = ACTIONS(207), + [sym_quotation_marks] = ACTIONS(209), + [sym_ellipsis] = ACTIONS(209), + [sym_em_dash] = ACTIONS(209), + [sym_en_dash] = ACTIONS(211), + [sym_backslash_escape] = ACTIONS(211), + [anon_sym_LT] = ACTIONS(213), + [sym_symbol] = ACTIONS(209), + [anon_sym_LBRACK_CARET] = ACTIONS(215), + [anon_sym_BANG_LBRACK] = ACTIONS(217), + [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_DOLLAR] = ACTIONS(221), + [anon_sym_TODO] = ACTIONS(223), + [anon_sym_WIP] = ACTIONS(223), + [anon_sym_NOTE] = ACTIONS(225), + [anon_sym_INFO] = ACTIONS(225), + [anon_sym_XXX] = ACTIONS(225), + [sym_fixme] = ACTIONS(209), + [sym__whitespace1] = ACTIONS(227), + [sym__newline] = ACTIONS(540), + [aux_sym__text_token1] = ACTIONS(231), + [sym__verbatim_begin] = ACTIONS(233), + [sym_delete_end] = ACTIONS(467), }, [22] = { - [sym__inline] = STATE(1005), - [sym__element] = STATE(106), - [sym_emphasis] = STATE(211), - [sym_emphasis_begin] = STATE(1060), - [sym_strong] = STATE(211), - [sym_strong_begin] = STATE(1061), - [sym_superscript] = STATE(211), - [sym_superscript_begin] = STATE(1062), - [sym_subscript] = STATE(211), - [sym_subscript_begin] = STATE(1063), - [sym_highlighted] = STATE(211), - [sym_highlighted_begin] = STATE(1064), - [sym_insert] = STATE(211), - [sym_insert_begin] = STATE(1065), - [sym_delete] = STATE(211), - [sym_delete_begin] = STATE(1066), - [sym_hard_line_break] = STATE(211), - [sym__smart_punctuation] = STATE(211), - [sym_autolink] = STATE(211), - [sym_footnote_reference] = STATE(211), - [sym__image] = STATE(211), - [sym_full_reference_image] = STATE(211), - [sym_collapsed_reference_image] = STATE(211), - [sym_inline_image] = STATE(211), - [sym__image_description] = STATE(671), - [sym__link] = STATE(211), - [sym_full_reference_link] = STATE(211), - [sym_collapsed_reference_link] = STATE(211), - [sym_inline_link] = STATE(211), - [sym_link_text] = STATE(676), - [sym__comment_with_spaces] = STATE(211), - [sym_span] = STATE(211), - [sym_raw_inline] = STATE(211), - [sym_math] = STATE(211), - [sym_verbatim] = STATE(211), - [sym__todo_highlights] = STATE(211), - [sym_todo] = STATE(211), - [sym_note] = STATE(211), - [sym__symbol_fallback] = STATE(211), - [aux_sym__text] = STATE(139), - [aux_sym__inline_repeat1] = STATE(106), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(51), - [anon_sym__] = ACTIONS(54), - [anon_sym_LBRACE_STAR] = ACTIONS(57), - [anon_sym_STAR] = ACTIONS(60), - [anon_sym_LBRACE_CARET] = ACTIONS(63), - [anon_sym_CARET] = ACTIONS(63), - [anon_sym_LBRACE_TILDE] = ACTIONS(66), - [anon_sym_TILDE] = ACTIONS(66), - [anon_sym_LBRACE_EQ] = ACTIONS(69), - [anon_sym_LBRACE_PLUS] = ACTIONS(72), - [anon_sym_LBRACE_DASH] = ACTIONS(75), - [anon_sym_BSLASH] = ACTIONS(78), - [sym_quotation_marks] = ACTIONS(81), - [sym_ellipsis] = ACTIONS(81), - [sym_em_dash] = ACTIONS(81), - [sym_en_dash] = ACTIONS(84), - [sym_backslash_escape] = ACTIONS(84), - [anon_sym_LT] = ACTIONS(87), - [sym_symbol] = ACTIONS(81), - [anon_sym_LBRACK_CARET] = ACTIONS(90), - [anon_sym_BANG_LBRACK] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(98), - [anon_sym_LBRACE2] = ACTIONS(84), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_TODO] = ACTIONS(106), - [anon_sym_WIP] = ACTIONS(106), - [anon_sym_NOTE] = ACTIONS(109), - [anon_sym_INFO] = ACTIONS(109), - [anon_sym_XXX] = ACTIONS(109), - [sym_fixme] = ACTIONS(81), - [sym__whitespace1] = ACTIONS(112), - [sym__newline] = ACTIONS(115), - [aux_sym__text_token1] = ACTIONS(118), - [sym__verbatim_begin] = ACTIONS(121), - [sym_insert_end] = ACTIONS(101), + [sym__inline] = STATE(933), + [sym__element] = STATE(70), + [sym_emphasis] = STATE(136), + [sym_emphasis_begin] = STATE(1161), + [sym_strong] = STATE(136), + [sym_strong_begin] = STATE(1162), + [sym_superscript] = STATE(136), + [sym_superscript_begin] = STATE(1163), + [sym_subscript] = STATE(136), + [sym_subscript_begin] = STATE(1164), + [sym_highlighted] = STATE(136), + [sym_highlighted_begin] = STATE(1165), + [sym_insert] = STATE(136), + [sym_insert_begin] = STATE(1166), + [sym_delete] = STATE(136), + [sym_delete_begin] = STATE(1167), + [sym_hard_line_break] = STATE(136), + [sym__smart_punctuation] = STATE(136), + [sym_autolink] = STATE(136), + [sym_footnote_reference] = STATE(136), + [sym__image] = STATE(136), + [sym_full_reference_image] = STATE(136), + [sym_collapsed_reference_image] = STATE(136), + [sym_inline_image] = STATE(136), + [sym__image_description] = STATE(690), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(136), + [sym_full_reference_link] = STATE(136), + [sym_collapsed_reference_link] = STATE(136), + [sym_inline_link] = STATE(136), + [sym_link_text] = STATE(691), + [sym_span] = STATE(70), + [sym__bracketed_text] = STATE(653), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(136), + [sym_raw_inline] = STATE(136), + [sym_math] = STATE(136), + [sym_verbatim] = STATE(136), + [sym__todo_highlights] = STATE(136), + [sym_todo] = STATE(136), + [sym_note] = STATE(136), + [sym__symbol_fallback] = STATE(136), + [aux_sym__text] = STATE(125), + [aux_sym__inline_repeat1] = STATE(70), + [anon_sym_LBRACE_] = ACTIONS(97), + [anon_sym__] = ACTIONS(99), + [anon_sym_LBRACE_STAR] = ACTIONS(101), + [anon_sym_STAR] = ACTIONS(103), + [anon_sym_LBRACE_CARET] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [anon_sym_LBRACE_TILDE] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(107), + [anon_sym_LBRACE_EQ] = ACTIONS(109), + [anon_sym_LBRACE_PLUS] = ACTIONS(111), + [anon_sym_LBRACE_DASH] = ACTIONS(113), + [anon_sym_BSLASH] = ACTIONS(115), + [sym_quotation_marks] = ACTIONS(117), + [sym_ellipsis] = ACTIONS(117), + [sym_em_dash] = ACTIONS(117), + [sym_en_dash] = ACTIONS(119), + [sym_backslash_escape] = ACTIONS(119), + [anon_sym_LT] = ACTIONS(121), + [sym_symbol] = ACTIONS(117), + [anon_sym_LBRACK_CARET] = ACTIONS(123), + [anon_sym_BANG_LBRACK] = ACTIONS(125), + [anon_sym_LBRACK] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_TODO] = ACTIONS(131), + [anon_sym_WIP] = ACTIONS(131), + [anon_sym_NOTE] = ACTIONS(133), + [anon_sym_INFO] = ACTIONS(133), + [anon_sym_XXX] = ACTIONS(133), + [sym_fixme] = ACTIONS(117), + [sym__whitespace1] = ACTIONS(135), + [sym__newline] = ACTIONS(137), + [aux_sym__text_token1] = ACTIONS(139), + [sym__verbatim_begin] = ACTIONS(141), }, [23] = { - [sym__inline] = STATE(1047), - [sym__element] = STATE(106), - [sym_emphasis] = STATE(211), - [sym_emphasis_begin] = STATE(1060), - [sym_strong] = STATE(211), - [sym_strong_begin] = STATE(1061), - [sym_superscript] = STATE(211), - [sym_superscript_begin] = STATE(1062), - [sym_subscript] = STATE(211), - [sym_subscript_begin] = STATE(1063), - [sym_highlighted] = STATE(211), - [sym_highlighted_begin] = STATE(1064), - [sym_insert] = STATE(211), - [sym_insert_begin] = STATE(1065), - [sym_delete] = STATE(211), - [sym_delete_begin] = STATE(1066), - [sym_hard_line_break] = STATE(211), - [sym__smart_punctuation] = STATE(211), - [sym_autolink] = STATE(211), - [sym_footnote_reference] = STATE(211), - [sym__image] = STATE(211), - [sym_full_reference_image] = STATE(211), - [sym_collapsed_reference_image] = STATE(211), - [sym_inline_image] = STATE(211), - [sym__image_description] = STATE(671), - [sym__link] = STATE(211), - [sym_full_reference_link] = STATE(211), - [sym_collapsed_reference_link] = STATE(211), - [sym_inline_link] = STATE(211), - [sym_link_text] = STATE(676), - [sym__comment_with_spaces] = STATE(211), - [sym_span] = STATE(211), - [sym_raw_inline] = STATE(211), - [sym_math] = STATE(211), - [sym_verbatim] = STATE(211), - [sym__todo_highlights] = STATE(211), - [sym_todo] = STATE(211), - [sym_note] = STATE(211), - [sym__symbol_fallback] = STATE(211), - [aux_sym__text] = STATE(139), - [aux_sym__inline_repeat1] = STATE(106), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_LBRACE_] = ACTIONS(51), - [anon_sym__] = ACTIONS(54), - [anon_sym_LBRACE_STAR] = ACTIONS(57), - [anon_sym_STAR] = ACTIONS(60), - [anon_sym_LBRACE_CARET] = ACTIONS(63), - [anon_sym_CARET] = ACTIONS(63), - [anon_sym_LBRACE_TILDE] = ACTIONS(66), - [anon_sym_TILDE] = ACTIONS(66), - [anon_sym_LBRACE_EQ] = ACTIONS(69), - [anon_sym_LBRACE_PLUS] = ACTIONS(72), - [anon_sym_LBRACE_DASH] = ACTIONS(75), - [anon_sym_BSLASH] = ACTIONS(78), - [sym_quotation_marks] = ACTIONS(81), - [sym_ellipsis] = ACTIONS(81), - [sym_em_dash] = ACTIONS(81), - [sym_en_dash] = ACTIONS(84), - [sym_backslash_escape] = ACTIONS(84), - [anon_sym_LT] = ACTIONS(87), - [sym_symbol] = ACTIONS(81), - [anon_sym_LBRACK_CARET] = ACTIONS(90), - [anon_sym_BANG_LBRACK] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(98), - [anon_sym_LBRACE2] = ACTIONS(84), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_TODO] = ACTIONS(106), - [anon_sym_WIP] = ACTIONS(106), - [anon_sym_NOTE] = ACTIONS(109), - [anon_sym_INFO] = ACTIONS(109), - [anon_sym_XXX] = ACTIONS(109), - [sym_fixme] = ACTIONS(81), - [sym__whitespace1] = ACTIONS(112), - [sym__newline] = ACTIONS(115), - [aux_sym__text_token1] = ACTIONS(118), - [sym__verbatim_begin] = ACTIONS(121), + [sym__inline] = STATE(932), + [sym__element] = STATE(105), + [sym_emphasis] = STATE(140), + [sym_emphasis_begin] = STATE(1154), + [sym_strong] = STATE(140), + [sym_strong_begin] = STATE(1155), + [sym_superscript] = STATE(140), + [sym_superscript_begin] = STATE(1156), + [sym_subscript] = STATE(140), + [sym_subscript_begin] = STATE(1157), + [sym_highlighted] = STATE(140), + [sym_highlighted_begin] = STATE(1158), + [sym_insert] = STATE(140), + [sym_insert_begin] = STATE(1159), + [sym_delete] = STATE(140), + [sym_delete_begin] = STATE(1160), + [sym_hard_line_break] = STATE(140), + [sym__smart_punctuation] = STATE(140), + [sym_autolink] = STATE(140), + [sym_footnote_reference] = STATE(140), + [sym__image] = STATE(140), + [sym_full_reference_image] = STATE(140), + [sym_collapsed_reference_image] = STATE(140), + [sym_inline_image] = STATE(140), + [sym__image_description] = STATE(687), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(140), + [sym_full_reference_link] = STATE(140), + [sym_collapsed_reference_link] = STATE(140), + [sym_inline_link] = STATE(140), + [sym_link_text] = STATE(688), + [sym_span] = STATE(105), + [sym__bracketed_text] = STATE(654), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(140), + [sym_raw_inline] = STATE(140), + [sym_math] = STATE(140), + [sym_verbatim] = STATE(140), + [sym__todo_highlights] = STATE(140), + [sym_todo] = STATE(140), + [sym_note] = STATE(140), + [sym__symbol_fallback] = STATE(140), + [aux_sym__text] = STATE(131), + [aux_sym__inline_repeat1] = STATE(105), + [anon_sym_LBRACE_] = ACTIONS(327), + [anon_sym__] = ACTIONS(329), + [anon_sym_LBRACE_STAR] = ACTIONS(331), + [anon_sym_STAR] = ACTIONS(333), + [anon_sym_LBRACE_CARET] = ACTIONS(335), + [anon_sym_CARET] = ACTIONS(335), + [anon_sym_LBRACE_TILDE] = ACTIONS(337), + [anon_sym_TILDE] = ACTIONS(337), + [anon_sym_LBRACE_EQ] = ACTIONS(339), + [anon_sym_LBRACE_PLUS] = ACTIONS(341), + [anon_sym_LBRACE_DASH] = ACTIONS(343), + [anon_sym_BSLASH] = ACTIONS(345), + [sym_quotation_marks] = ACTIONS(347), + [sym_ellipsis] = ACTIONS(347), + [sym_em_dash] = ACTIONS(347), + [sym_en_dash] = ACTIONS(349), + [sym_backslash_escape] = ACTIONS(349), + [anon_sym_LT] = ACTIONS(351), + [sym_symbol] = ACTIONS(347), + [anon_sym_LBRACK_CARET] = ACTIONS(353), + [anon_sym_BANG_LBRACK] = ACTIONS(355), + [anon_sym_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [anon_sym_TODO] = ACTIONS(361), + [anon_sym_WIP] = ACTIONS(361), + [anon_sym_NOTE] = ACTIONS(363), + [anon_sym_INFO] = ACTIONS(363), + [anon_sym_XXX] = ACTIONS(363), + [sym_fixme] = ACTIONS(347), + [sym__whitespace1] = ACTIONS(365), + [sym__newline] = ACTIONS(367), + [aux_sym__text_token1] = ACTIONS(369), + [sym__verbatim_begin] = ACTIONS(371), }, [24] = { - [sym__inline] = STATE(899), - [sym__element] = STATE(115), - [sym_emphasis] = STATE(192), - [sym_emphasis_begin] = STATE(1095), - [sym_strong] = STATE(192), - [sym_strong_begin] = STATE(1096), - [sym_superscript] = STATE(192), - [sym_superscript_begin] = STATE(1097), - [sym_subscript] = STATE(192), - [sym_subscript_begin] = STATE(1098), - [sym_highlighted] = STATE(192), - [sym_highlighted_begin] = STATE(1099), - [sym_insert] = STATE(192), - [sym_insert_begin] = STATE(1100), - [sym_delete] = STATE(192), - [sym_delete_begin] = STATE(1101), - [sym_hard_line_break] = STATE(192), - [sym__smart_punctuation] = STATE(192), - [sym_autolink] = STATE(192), - [sym_footnote_reference] = STATE(192), - [sym__image] = STATE(192), - [sym_full_reference_image] = STATE(192), - [sym_collapsed_reference_image] = STATE(192), - [sym_inline_image] = STATE(192), - [sym__image_description] = STATE(684), - [sym__link] = STATE(192), - [sym_full_reference_link] = STATE(192), - [sym_collapsed_reference_link] = STATE(192), - [sym_inline_link] = STATE(192), + [sym__inline_without_trailing_space] = STATE(931), + [sym__element] = STATE(562), + [sym_emphasis] = STATE(142), + [sym_emphasis_begin] = STATE(1147), + [sym_strong] = STATE(142), + [sym_strong_begin] = STATE(1148), + [sym_superscript] = STATE(142), + [sym_superscript_begin] = STATE(1149), + [sym_subscript] = STATE(142), + [sym_subscript_begin] = STATE(1150), + [sym_highlighted] = STATE(142), + [sym_highlighted_begin] = STATE(1151), + [sym_insert] = STATE(142), + [sym_insert_begin] = STATE(1152), + [sym_delete] = STATE(142), + [sym_delete_begin] = STATE(1153), + [sym_hard_line_break] = STATE(142), + [sym__smart_punctuation] = STATE(142), + [sym_autolink] = STATE(142), + [sym_footnote_reference] = STATE(142), + [sym__image] = STATE(142), + [sym_full_reference_image] = STATE(142), + [sym_collapsed_reference_image] = STATE(142), + [sym_inline_image] = STATE(142), + [sym__image_description] = STATE(685), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(142), + [sym_full_reference_link] = STATE(142), + [sym_collapsed_reference_link] = STATE(142), + [sym_inline_link] = STATE(142), [sym_link_text] = STATE(683), - [sym__comment_with_spaces] = STATE(192), - [sym_span] = STATE(192), - [sym_raw_inline] = STATE(192), - [sym_math] = STATE(192), - [sym_verbatim] = STATE(192), - [sym__todo_highlights] = STATE(192), - [sym_todo] = STATE(192), - [sym_note] = STATE(192), - [sym__symbol_fallback] = STATE(192), - [aux_sym__text] = STATE(141), - [aux_sym__inline_repeat1] = STATE(115), - [anon_sym_LBRACE_] = ACTIONS(129), - [anon_sym__] = ACTIONS(131), - [anon_sym_LBRACE_STAR] = ACTIONS(133), - [anon_sym_STAR] = ACTIONS(135), - [anon_sym_LBRACE_CARET] = ACTIONS(137), - [anon_sym_CARET] = ACTIONS(137), - [anon_sym_LBRACE_TILDE] = ACTIONS(139), - [anon_sym_TILDE] = ACTIONS(139), - [anon_sym_LBRACE_EQ] = ACTIONS(141), - [anon_sym_LBRACE_PLUS] = ACTIONS(143), - [anon_sym_LBRACE_DASH] = ACTIONS(145), - [anon_sym_BSLASH] = ACTIONS(147), - [sym_quotation_marks] = ACTIONS(149), - [sym_ellipsis] = ACTIONS(149), - [sym_em_dash] = ACTIONS(149), - [sym_en_dash] = ACTIONS(151), - [sym_backslash_escape] = ACTIONS(151), - [anon_sym_LT] = ACTIONS(153), - [sym_symbol] = ACTIONS(149), - [anon_sym_LBRACK_CARET] = ACTIONS(155), - [anon_sym_BANG_LBRACK] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LBRACE2] = ACTIONS(151), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_TODO] = ACTIONS(163), - [anon_sym_WIP] = ACTIONS(163), - [anon_sym_NOTE] = ACTIONS(165), - [anon_sym_INFO] = ACTIONS(165), - [anon_sym_XXX] = ACTIONS(165), - [sym_fixme] = ACTIONS(149), - [sym__whitespace1] = ACTIONS(167), - [sym__newline] = ACTIONS(169), - [aux_sym__text_token1] = ACTIONS(171), - [sym__verbatim_begin] = ACTIONS(173), + [sym_span] = STATE(562), + [sym__bracketed_text] = STATE(657), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(142), + [sym_raw_inline] = STATE(142), + [sym_math] = STATE(142), + [sym_verbatim] = STATE(142), + [sym__todo_highlights] = STATE(142), + [sym_todo] = STATE(142), + [sym_note] = STATE(142), + [sym__symbol_fallback] = STATE(142), + [aux_sym__text] = STATE(126), + [aux_sym__inline_repeat1] = STATE(120), + [anon_sym_LBRACE_] = ACTIONS(373), + [anon_sym__] = ACTIONS(375), + [anon_sym_LBRACE_STAR] = ACTIONS(377), + [anon_sym_STAR] = ACTIONS(379), + [anon_sym_LBRACE_CARET] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(381), + [anon_sym_LBRACE_TILDE] = ACTIONS(383), + [anon_sym_TILDE] = ACTIONS(383), + [anon_sym_LBRACE_EQ] = ACTIONS(385), + [anon_sym_LBRACE_PLUS] = ACTIONS(387), + [anon_sym_LBRACE_DASH] = ACTIONS(389), + [anon_sym_BSLASH] = ACTIONS(391), + [sym_quotation_marks] = ACTIONS(393), + [sym_ellipsis] = ACTIONS(393), + [sym_em_dash] = ACTIONS(393), + [sym_en_dash] = ACTIONS(395), + [sym_backslash_escape] = ACTIONS(395), + [anon_sym_LT] = ACTIONS(397), + [sym_symbol] = ACTIONS(393), + [anon_sym_LBRACK_CARET] = ACTIONS(399), + [anon_sym_BANG_LBRACK] = ACTIONS(401), + [anon_sym_LBRACK] = ACTIONS(403), + [anon_sym_DOLLAR] = ACTIONS(405), + [anon_sym_TODO] = ACTIONS(407), + [anon_sym_WIP] = ACTIONS(407), + [anon_sym_NOTE] = ACTIONS(409), + [anon_sym_INFO] = ACTIONS(409), + [anon_sym_XXX] = ACTIONS(409), + [sym_fixme] = ACTIONS(393), + [sym__whitespace1] = ACTIONS(411), + [sym__newline] = ACTIONS(413), + [aux_sym__text_token1] = ACTIONS(415), + [sym__verbatim_begin] = ACTIONS(417), }, [25] = { - [sym__inline_without_trailing_space] = STATE(918), - [sym__element] = STATE(572), - [sym_emphasis] = STATE(208), - [sym_emphasis_begin] = STATE(1074), - [sym_strong] = STATE(208), - [sym_strong_begin] = STATE(1075), - [sym_superscript] = STATE(208), - [sym_superscript_begin] = STATE(1076), - [sym_subscript] = STATE(208), - [sym_subscript_begin] = STATE(1077), - [sym_highlighted] = STATE(208), - [sym_highlighted_begin] = STATE(1078), - [sym_insert] = STATE(208), - [sym_insert_begin] = STATE(1079), - [sym_delete] = STATE(208), - [sym_delete_begin] = STATE(1080), - [sym_hard_line_break] = STATE(208), - [sym__smart_punctuation] = STATE(208), - [sym_autolink] = STATE(208), - [sym_footnote_reference] = STATE(208), - [sym__image] = STATE(208), - [sym_full_reference_image] = STATE(208), - [sym_collapsed_reference_image] = STATE(208), - [sym_inline_image] = STATE(208), - [sym__image_description] = STATE(680), - [sym__link] = STATE(208), - [sym_full_reference_link] = STATE(208), - [sym_collapsed_reference_link] = STATE(208), - [sym_inline_link] = STATE(208), - [sym_link_text] = STATE(663), - [sym__comment_with_spaces] = STATE(208), - [sym_span] = STATE(208), - [sym_raw_inline] = STATE(208), - [sym_math] = STATE(208), - [sym_verbatim] = STATE(208), - [sym__todo_highlights] = STATE(208), - [sym_todo] = STATE(208), - [sym_note] = STATE(208), - [sym__symbol_fallback] = STATE(208), - [aux_sym__text] = STATE(131), - [aux_sym__inline_repeat1] = STATE(130), - [anon_sym_LBRACE_] = ACTIONS(175), - [anon_sym__] = ACTIONS(177), - [anon_sym_LBRACE_STAR] = ACTIONS(179), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_LBRACE_CARET] = ACTIONS(183), - [anon_sym_CARET] = ACTIONS(183), - [anon_sym_LBRACE_TILDE] = ACTIONS(185), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_LBRACE_EQ] = ACTIONS(187), - [anon_sym_LBRACE_PLUS] = ACTIONS(189), - [anon_sym_LBRACE_DASH] = ACTIONS(191), - [anon_sym_BSLASH] = ACTIONS(193), - [sym_quotation_marks] = ACTIONS(195), - [sym_ellipsis] = ACTIONS(195), - [sym_em_dash] = ACTIONS(195), - [sym_en_dash] = ACTIONS(197), - [sym_backslash_escape] = ACTIONS(197), - [anon_sym_LT] = ACTIONS(199), - [sym_symbol] = ACTIONS(195), - [anon_sym_LBRACK_CARET] = ACTIONS(201), - [anon_sym_BANG_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE2] = ACTIONS(197), - [anon_sym_DOLLAR] = ACTIONS(207), - [anon_sym_TODO] = ACTIONS(209), - [anon_sym_WIP] = ACTIONS(209), - [anon_sym_NOTE] = ACTIONS(211), - [anon_sym_INFO] = ACTIONS(211), - [anon_sym_XXX] = ACTIONS(211), - [sym_fixme] = ACTIONS(195), - [sym__whitespace1] = ACTIONS(213), - [sym__newline] = ACTIONS(215), - [aux_sym__text_token1] = ACTIONS(217), - [sym__verbatim_begin] = ACTIONS(219), + [sym__inline_without_trailing_space] = STATE(930), + [sym__element] = STATE(604), + [sym_emphasis] = STATE(138), + [sym_emphasis_begin] = STATE(1140), + [sym_strong] = STATE(138), + [sym_strong_begin] = STATE(1141), + [sym_superscript] = STATE(138), + [sym_superscript_begin] = STATE(1142), + [sym_subscript] = STATE(138), + [sym_subscript_begin] = STATE(1143), + [sym_highlighted] = STATE(138), + [sym_highlighted_begin] = STATE(1144), + [sym_insert] = STATE(138), + [sym_insert_begin] = STATE(1145), + [sym_delete] = STATE(138), + [sym_delete_begin] = STATE(1146), + [sym_hard_line_break] = STATE(138), + [sym__smart_punctuation] = STATE(138), + [sym_autolink] = STATE(138), + [sym_footnote_reference] = STATE(138), + [sym__image] = STATE(138), + [sym_full_reference_image] = STATE(138), + [sym_collapsed_reference_image] = STATE(138), + [sym_inline_image] = STATE(138), + [sym__image_description] = STATE(667), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(138), + [sym_full_reference_link] = STATE(138), + [sym_collapsed_reference_link] = STATE(138), + [sym_inline_link] = STATE(138), + [sym_link_text] = STATE(689), + [sym_span] = STATE(604), + [sym__bracketed_text] = STATE(658), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(138), + [sym_raw_inline] = STATE(138), + [sym_math] = STATE(138), + [sym_verbatim] = STATE(138), + [sym__todo_highlights] = STATE(138), + [sym_todo] = STATE(138), + [sym_note] = STATE(138), + [sym__symbol_fallback] = STATE(138), + [aux_sym__text] = STATE(124), + [aux_sym__inline_repeat1] = STATE(118), + [anon_sym_LBRACE_] = ACTIONS(419), + [anon_sym__] = ACTIONS(421), + [anon_sym_LBRACE_STAR] = ACTIONS(423), + [anon_sym_STAR] = ACTIONS(425), + [anon_sym_LBRACE_CARET] = ACTIONS(427), + [anon_sym_CARET] = ACTIONS(427), + [anon_sym_LBRACE_TILDE] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_LBRACE_EQ] = ACTIONS(431), + [anon_sym_LBRACE_PLUS] = ACTIONS(433), + [anon_sym_LBRACE_DASH] = ACTIONS(435), + [anon_sym_BSLASH] = ACTIONS(437), + [sym_quotation_marks] = ACTIONS(439), + [sym_ellipsis] = ACTIONS(439), + [sym_em_dash] = ACTIONS(439), + [sym_en_dash] = ACTIONS(441), + [sym_backslash_escape] = ACTIONS(441), + [anon_sym_LT] = ACTIONS(443), + [sym_symbol] = ACTIONS(439), + [anon_sym_LBRACK_CARET] = ACTIONS(445), + [anon_sym_BANG_LBRACK] = ACTIONS(447), + [anon_sym_LBRACK] = ACTIONS(449), + [anon_sym_DOLLAR] = ACTIONS(451), + [anon_sym_TODO] = ACTIONS(453), + [anon_sym_WIP] = ACTIONS(453), + [anon_sym_NOTE] = ACTIONS(455), + [anon_sym_INFO] = ACTIONS(455), + [anon_sym_XXX] = ACTIONS(455), + [sym_fixme] = ACTIONS(439), + [sym__whitespace1] = ACTIONS(457), + [sym__newline] = ACTIONS(459), + [aux_sym__text_token1] = ACTIONS(461), + [sym__verbatim_begin] = ACTIONS(463), }, [26] = { - [sym__inline] = STATE(864), - [sym__element] = STATE(103), - [sym_emphasis] = STATE(180), - [sym_emphasis_begin] = STATE(1109), - [sym_strong] = STATE(180), - [sym_strong_begin] = STATE(1110), - [sym_superscript] = STATE(180), - [sym_superscript_begin] = STATE(1111), - [sym_subscript] = STATE(180), - [sym_subscript_begin] = STATE(1112), - [sym_highlighted] = STATE(180), - [sym_highlighted_begin] = STATE(1113), - [sym_insert] = STATE(180), - [sym_insert_begin] = STATE(1114), - [sym_delete] = STATE(180), - [sym_delete_begin] = STATE(1115), - [sym_hard_line_break] = STATE(180), - [sym__smart_punctuation] = STATE(180), - [sym_autolink] = STATE(180), - [sym_footnote_reference] = STATE(180), - [sym__image] = STATE(180), - [sym_full_reference_image] = STATE(180), - [sym_collapsed_reference_image] = STATE(180), - [sym_inline_image] = STATE(180), - [sym__image_description] = STATE(666), - [sym__link] = STATE(180), - [sym_full_reference_link] = STATE(180), - [sym_collapsed_reference_link] = STATE(180), - [sym_inline_link] = STATE(180), - [sym_link_text] = STATE(664), - [sym__comment_with_spaces] = STATE(180), - [sym_span] = STATE(180), - [sym_raw_inline] = STATE(180), - [sym_math] = STATE(180), - [sym_verbatim] = STATE(180), - [sym__todo_highlights] = STATE(180), - [sym_todo] = STATE(180), - [sym_note] = STATE(180), - [sym__symbol_fallback] = STATE(180), - [aux_sym__text] = STATE(159), - [aux_sym__inline_repeat1] = STATE(103), - [anon_sym_LBRACE_] = ACTIONS(221), - [anon_sym__] = ACTIONS(223), - [anon_sym_LBRACE_STAR] = ACTIONS(225), - [anon_sym_STAR] = ACTIONS(227), - [anon_sym_LBRACE_CARET] = ACTIONS(229), - [anon_sym_CARET] = ACTIONS(229), - [anon_sym_LBRACE_TILDE] = ACTIONS(231), - [anon_sym_TILDE] = ACTIONS(231), - [anon_sym_LBRACE_EQ] = ACTIONS(233), - [anon_sym_LBRACE_PLUS] = ACTIONS(235), - [anon_sym_LBRACE_DASH] = ACTIONS(237), - [anon_sym_BSLASH] = ACTIONS(239), - [sym_quotation_marks] = ACTIONS(241), - [sym_ellipsis] = ACTIONS(241), - [sym_em_dash] = ACTIONS(241), - [sym_en_dash] = ACTIONS(243), - [sym_backslash_escape] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(245), - [sym_symbol] = ACTIONS(241), - [anon_sym_LBRACK_CARET] = ACTIONS(247), - [anon_sym_BANG_LBRACK] = ACTIONS(249), - [anon_sym_LBRACK] = ACTIONS(251), - [anon_sym_LBRACE2] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(253), - [anon_sym_TODO] = ACTIONS(255), - [anon_sym_WIP] = ACTIONS(255), - [anon_sym_NOTE] = ACTIONS(257), - [anon_sym_INFO] = ACTIONS(257), - [anon_sym_XXX] = ACTIONS(257), - [sym_fixme] = ACTIONS(241), - [sym__whitespace1] = ACTIONS(259), - [sym__newline] = ACTIONS(261), - [aux_sym__text_token1] = ACTIONS(263), - [sym__verbatim_begin] = ACTIONS(265), + [sym__inline] = STATE(904), + [sym__element] = STATE(65), + [sym_emphasis] = STATE(133), + [sym_emphasis_begin] = STATE(1189), + [sym_strong] = STATE(133), + [sym_strong_begin] = STATE(1190), + [sym_superscript] = STATE(133), + [sym_superscript_begin] = STATE(1191), + [sym_subscript] = STATE(133), + [sym_subscript_begin] = STATE(1192), + [sym_highlighted] = STATE(133), + [sym_highlighted_begin] = STATE(1193), + [sym_insert] = STATE(133), + [sym_insert_begin] = STATE(1194), + [sym_delete] = STATE(133), + [sym_delete_begin] = STATE(1195), + [sym_hard_line_break] = STATE(133), + [sym__smart_punctuation] = STATE(133), + [sym_autolink] = STATE(133), + [sym_footnote_reference] = STATE(133), + [sym__image] = STATE(133), + [sym_full_reference_image] = STATE(133), + [sym_collapsed_reference_image] = STATE(133), + [sym_inline_image] = STATE(133), + [sym__image_description] = STATE(670), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(133), + [sym_full_reference_link] = STATE(133), + [sym_collapsed_reference_link] = STATE(133), + [sym_inline_link] = STATE(133), + [sym_link_text] = STATE(663), + [sym_span] = STATE(65), + [sym__bracketed_text] = STATE(662), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(133), + [sym_raw_inline] = STATE(133), + [sym_math] = STATE(133), + [sym_verbatim] = STATE(133), + [sym__todo_highlights] = STATE(133), + [sym_todo] = STATE(133), + [sym_note] = STATE(133), + [sym__symbol_fallback] = STATE(133), + [aux_sym__text] = STATE(123), + [aux_sym__inline_repeat1] = STATE(65), + [anon_sym_LBRACE_] = ACTIONS(143), + [anon_sym__] = ACTIONS(145), + [anon_sym_LBRACE_STAR] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(149), + [anon_sym_LBRACE_CARET] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(151), + [anon_sym_LBRACE_TILDE] = ACTIONS(153), + [anon_sym_TILDE] = ACTIONS(153), + [anon_sym_LBRACE_EQ] = ACTIONS(155), + [anon_sym_LBRACE_PLUS] = ACTIONS(157), + [anon_sym_LBRACE_DASH] = ACTIONS(159), + [anon_sym_BSLASH] = ACTIONS(161), + [sym_quotation_marks] = ACTIONS(163), + [sym_ellipsis] = ACTIONS(163), + [sym_em_dash] = ACTIONS(163), + [sym_en_dash] = ACTIONS(165), + [sym_backslash_escape] = ACTIONS(165), + [anon_sym_LT] = ACTIONS(167), + [sym_symbol] = ACTIONS(163), + [anon_sym_LBRACK_CARET] = ACTIONS(169), + [anon_sym_BANG_LBRACK] = ACTIONS(171), + [anon_sym_LBRACK] = ACTIONS(173), + [anon_sym_DOLLAR] = ACTIONS(175), + [anon_sym_TODO] = ACTIONS(177), + [anon_sym_WIP] = ACTIONS(177), + [anon_sym_NOTE] = ACTIONS(179), + [anon_sym_INFO] = ACTIONS(179), + [anon_sym_XXX] = ACTIONS(179), + [sym_fixme] = ACTIONS(163), + [sym__whitespace1] = ACTIONS(181), + [sym__newline] = ACTIONS(183), + [aux_sym__text_token1] = ACTIONS(185), + [sym__verbatim_begin] = ACTIONS(187), }, [27] = { - [sym__inline] = STATE(863), - [sym__element] = STATE(111), - [sym_emphasis] = STATE(186), - [sym_emphasis_begin] = STATE(1102), - [sym_strong] = STATE(186), - [sym_strong_begin] = STATE(1103), - [sym_superscript] = STATE(186), - [sym_superscript_begin] = STATE(1104), - [sym_subscript] = STATE(186), - [sym_subscript_begin] = STATE(1105), - [sym_highlighted] = STATE(186), - [sym_highlighted_begin] = STATE(1106), - [sym_insert] = STATE(186), - [sym_insert_begin] = STATE(1107), - [sym_delete] = STATE(186), - [sym_delete_begin] = STATE(1108), - [sym_hard_line_break] = STATE(186), - [sym__smart_punctuation] = STATE(186), - [sym_autolink] = STATE(186), - [sym_footnote_reference] = STATE(186), - [sym__image] = STATE(186), - [sym_full_reference_image] = STATE(186), - [sym_collapsed_reference_image] = STATE(186), - [sym_inline_image] = STATE(186), - [sym__image_description] = STATE(673), - [sym__link] = STATE(186), - [sym_full_reference_link] = STATE(186), - [sym_collapsed_reference_link] = STATE(186), - [sym_inline_link] = STATE(186), - [sym_link_text] = STATE(672), - [sym__comment_with_spaces] = STATE(186), - [sym_span] = STATE(186), - [sym_raw_inline] = STATE(186), - [sym_math] = STATE(186), - [sym_verbatim] = STATE(186), - [sym__todo_highlights] = STATE(186), - [sym_todo] = STATE(186), - [sym_note] = STATE(186), - [sym__symbol_fallback] = STATE(186), - [aux_sym__text] = STATE(155), - [aux_sym__inline_repeat1] = STATE(111), - [anon_sym_LBRACE_] = ACTIONS(267), - [anon_sym__] = ACTIONS(269), - [anon_sym_LBRACE_STAR] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_LBRACE_CARET] = ACTIONS(275), - [anon_sym_CARET] = ACTIONS(275), - [anon_sym_LBRACE_TILDE] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(277), - [anon_sym_LBRACE_EQ] = ACTIONS(279), - [anon_sym_LBRACE_PLUS] = ACTIONS(281), - [anon_sym_LBRACE_DASH] = ACTIONS(283), - [anon_sym_BSLASH] = ACTIONS(285), - [sym_quotation_marks] = ACTIONS(287), - [sym_ellipsis] = ACTIONS(287), - [sym_em_dash] = ACTIONS(287), - [sym_en_dash] = ACTIONS(289), - [sym_backslash_escape] = ACTIONS(289), - [anon_sym_LT] = ACTIONS(291), - [sym_symbol] = ACTIONS(287), - [anon_sym_LBRACK_CARET] = ACTIONS(293), - [anon_sym_BANG_LBRACK] = ACTIONS(295), - [anon_sym_LBRACK] = ACTIONS(297), - [anon_sym_LBRACE2] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(299), - [anon_sym_TODO] = ACTIONS(301), - [anon_sym_WIP] = ACTIONS(301), - [anon_sym_NOTE] = ACTIONS(303), - [anon_sym_INFO] = ACTIONS(303), - [anon_sym_XXX] = ACTIONS(303), - [sym_fixme] = ACTIONS(287), - [sym__whitespace1] = ACTIONS(305), - [sym__newline] = ACTIONS(307), - [aux_sym__text_token1] = ACTIONS(309), - [sym__verbatim_begin] = ACTIONS(311), + [sym__inline] = STATE(903), + [sym__element] = STATE(21), + [sym_emphasis] = STATE(134), + [sym_emphasis_begin] = STATE(1182), + [sym_strong] = STATE(134), + [sym_strong_begin] = STATE(1183), + [sym_superscript] = STATE(134), + [sym_superscript_begin] = STATE(1184), + [sym_subscript] = STATE(134), + [sym_subscript_begin] = STATE(1185), + [sym_highlighted] = STATE(134), + [sym_highlighted_begin] = STATE(1186), + [sym_insert] = STATE(134), + [sym_insert_begin] = STATE(1187), + [sym_delete] = STATE(134), + [sym_delete_begin] = STATE(1188), + [sym_hard_line_break] = STATE(134), + [sym__smart_punctuation] = STATE(134), + [sym_autolink] = STATE(134), + [sym_footnote_reference] = STATE(134), + [sym__image] = STATE(134), + [sym_full_reference_image] = STATE(134), + [sym_collapsed_reference_image] = STATE(134), + [sym_inline_image] = STATE(134), + [sym__image_description] = STATE(677), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(134), + [sym_full_reference_link] = STATE(134), + [sym_collapsed_reference_link] = STATE(134), + [sym_inline_link] = STATE(134), + [sym_link_text] = STATE(675), + [sym_span] = STATE(21), + [sym__bracketed_text] = STATE(660), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(134), + [sym_raw_inline] = STATE(134), + [sym_math] = STATE(134), + [sym_verbatim] = STATE(134), + [sym__todo_highlights] = STATE(134), + [sym_todo] = STATE(134), + [sym_note] = STATE(134), + [sym__symbol_fallback] = STATE(134), + [aux_sym__text] = STATE(127), + [aux_sym__inline_repeat1] = STATE(21), + [anon_sym_LBRACE_] = ACTIONS(189), + [anon_sym__] = ACTIONS(191), + [anon_sym_LBRACE_STAR] = ACTIONS(193), + [anon_sym_STAR] = ACTIONS(195), + [anon_sym_LBRACE_CARET] = ACTIONS(197), + [anon_sym_CARET] = ACTIONS(197), + [anon_sym_LBRACE_TILDE] = ACTIONS(199), + [anon_sym_TILDE] = ACTIONS(199), + [anon_sym_LBRACE_EQ] = ACTIONS(201), + [anon_sym_LBRACE_PLUS] = ACTIONS(203), + [anon_sym_LBRACE_DASH] = ACTIONS(205), + [anon_sym_BSLASH] = ACTIONS(207), + [sym_quotation_marks] = ACTIONS(209), + [sym_ellipsis] = ACTIONS(209), + [sym_em_dash] = ACTIONS(209), + [sym_en_dash] = ACTIONS(211), + [sym_backslash_escape] = ACTIONS(211), + [anon_sym_LT] = ACTIONS(213), + [sym_symbol] = ACTIONS(209), + [anon_sym_LBRACK_CARET] = ACTIONS(215), + [anon_sym_BANG_LBRACK] = ACTIONS(217), + [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_DOLLAR] = ACTIONS(221), + [anon_sym_TODO] = ACTIONS(223), + [anon_sym_WIP] = ACTIONS(223), + [anon_sym_NOTE] = ACTIONS(225), + [anon_sym_INFO] = ACTIONS(225), + [anon_sym_XXX] = ACTIONS(225), + [sym_fixme] = ACTIONS(209), + [sym__whitespace1] = ACTIONS(227), + [sym__newline] = ACTIONS(229), + [aux_sym__text_token1] = ACTIONS(231), + [sym__verbatim_begin] = ACTIONS(233), }, [28] = { - [sym__inline] = STATE(862), - [sym__element] = STATE(115), - [sym_emphasis] = STATE(192), - [sym_emphasis_begin] = STATE(1095), - [sym_strong] = STATE(192), - [sym_strong_begin] = STATE(1096), - [sym_superscript] = STATE(192), - [sym_superscript_begin] = STATE(1097), - [sym_subscript] = STATE(192), - [sym_subscript_begin] = STATE(1098), - [sym_highlighted] = STATE(192), - [sym_highlighted_begin] = STATE(1099), - [sym_insert] = STATE(192), - [sym_insert_begin] = STATE(1100), - [sym_delete] = STATE(192), - [sym_delete_begin] = STATE(1101), - [sym_hard_line_break] = STATE(192), - [sym__smart_punctuation] = STATE(192), - [sym_autolink] = STATE(192), - [sym_footnote_reference] = STATE(192), - [sym__image] = STATE(192), - [sym_full_reference_image] = STATE(192), - [sym_collapsed_reference_image] = STATE(192), - [sym_inline_image] = STATE(192), - [sym__image_description] = STATE(684), - [sym__link] = STATE(192), - [sym_full_reference_link] = STATE(192), - [sym_collapsed_reference_link] = STATE(192), - [sym_inline_link] = STATE(192), - [sym_link_text] = STATE(683), - [sym__comment_with_spaces] = STATE(192), - [sym_span] = STATE(192), - [sym_raw_inline] = STATE(192), - [sym_math] = STATE(192), - [sym_verbatim] = STATE(192), - [sym__todo_highlights] = STATE(192), - [sym_todo] = STATE(192), - [sym_note] = STATE(192), - [sym__symbol_fallback] = STATE(192), - [aux_sym__text] = STATE(141), - [aux_sym__inline_repeat1] = STATE(115), - [anon_sym_LBRACE_] = ACTIONS(129), - [anon_sym__] = ACTIONS(131), - [anon_sym_LBRACE_STAR] = ACTIONS(133), - [anon_sym_STAR] = ACTIONS(135), - [anon_sym_LBRACE_CARET] = ACTIONS(137), - [anon_sym_CARET] = ACTIONS(137), - [anon_sym_LBRACE_TILDE] = ACTIONS(139), - [anon_sym_TILDE] = ACTIONS(139), - [anon_sym_LBRACE_EQ] = ACTIONS(141), - [anon_sym_LBRACE_PLUS] = ACTIONS(143), - [anon_sym_LBRACE_DASH] = ACTIONS(145), - [anon_sym_BSLASH] = ACTIONS(147), - [sym_quotation_marks] = ACTIONS(149), - [sym_ellipsis] = ACTIONS(149), - [sym_em_dash] = ACTIONS(149), - [sym_en_dash] = ACTIONS(151), - [sym_backslash_escape] = ACTIONS(151), - [anon_sym_LT] = ACTIONS(153), - [sym_symbol] = ACTIONS(149), - [anon_sym_LBRACK_CARET] = ACTIONS(155), - [anon_sym_BANG_LBRACK] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LBRACE2] = ACTIONS(151), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_TODO] = ACTIONS(163), - [anon_sym_WIP] = ACTIONS(163), - [anon_sym_NOTE] = ACTIONS(165), - [anon_sym_INFO] = ACTIONS(165), - [anon_sym_XXX] = ACTIONS(165), - [sym_fixme] = ACTIONS(149), - [sym__whitespace1] = ACTIONS(167), - [sym__newline] = ACTIONS(169), - [aux_sym__text_token1] = ACTIONS(171), - [sym__verbatim_begin] = ACTIONS(173), + [sym__inline] = STATE(902), + [sym__element] = STATE(103), + [sym_emphasis] = STATE(139), + [sym_emphasis_begin] = STATE(1175), + [sym_strong] = STATE(139), + [sym_strong_begin] = STATE(1176), + [sym_superscript] = STATE(139), + [sym_superscript_begin] = STATE(1177), + [sym_subscript] = STATE(139), + [sym_subscript_begin] = STATE(1178), + [sym_highlighted] = STATE(139), + [sym_highlighted_begin] = STATE(1179), + [sym_insert] = STATE(139), + [sym_insert_begin] = STATE(1180), + [sym_delete] = STATE(139), + [sym_delete_begin] = STATE(1181), + [sym_hard_line_break] = STATE(139), + [sym__smart_punctuation] = STATE(139), + [sym_autolink] = STATE(139), + [sym_footnote_reference] = STATE(139), + [sym__image] = STATE(139), + [sym_full_reference_image] = STATE(139), + [sym_collapsed_reference_image] = STATE(139), + [sym_inline_image] = STATE(139), + [sym__image_description] = STATE(682), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(139), + [sym_full_reference_link] = STATE(139), + [sym_collapsed_reference_link] = STATE(139), + [sym_inline_link] = STATE(139), + [sym_link_text] = STATE(681), + [sym_span] = STATE(103), + [sym__bracketed_text] = STATE(656), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(139), + [sym_raw_inline] = STATE(139), + [sym_math] = STATE(139), + [sym_verbatim] = STATE(139), + [sym__todo_highlights] = STATE(139), + [sym_todo] = STATE(139), + [sym_note] = STATE(139), + [sym__symbol_fallback] = STATE(139), + [aux_sym__text] = STATE(129), + [aux_sym__inline_repeat1] = STATE(103), + [anon_sym_LBRACE_] = ACTIONS(235), + [anon_sym__] = ACTIONS(237), + [anon_sym_LBRACE_STAR] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(241), + [anon_sym_LBRACE_CARET] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(243), + [anon_sym_LBRACE_TILDE] = ACTIONS(245), + [anon_sym_TILDE] = ACTIONS(245), + [anon_sym_LBRACE_EQ] = ACTIONS(247), + [anon_sym_LBRACE_PLUS] = ACTIONS(249), + [anon_sym_LBRACE_DASH] = ACTIONS(251), + [anon_sym_BSLASH] = ACTIONS(253), + [sym_quotation_marks] = ACTIONS(255), + [sym_ellipsis] = ACTIONS(255), + [sym_em_dash] = ACTIONS(255), + [sym_en_dash] = ACTIONS(257), + [sym_backslash_escape] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(259), + [sym_symbol] = ACTIONS(255), + [anon_sym_LBRACK_CARET] = ACTIONS(261), + [anon_sym_BANG_LBRACK] = ACTIONS(263), + [anon_sym_LBRACK] = ACTIONS(265), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_TODO] = ACTIONS(269), + [anon_sym_WIP] = ACTIONS(269), + [anon_sym_NOTE] = ACTIONS(271), + [anon_sym_INFO] = ACTIONS(271), + [anon_sym_XXX] = ACTIONS(271), + [sym_fixme] = ACTIONS(255), + [sym__whitespace1] = ACTIONS(273), + [sym__newline] = ACTIONS(275), + [aux_sym__text_token1] = ACTIONS(277), + [sym__verbatim_begin] = ACTIONS(279), }, [29] = { - [sym__inline] = STATE(861), - [sym__element] = STATE(93), - [sym_emphasis] = STATE(197), - [sym_emphasis_begin] = STATE(1088), - [sym_strong] = STATE(197), - [sym_strong_begin] = STATE(1089), - [sym_superscript] = STATE(197), - [sym_superscript_begin] = STATE(1090), - [sym_subscript] = STATE(197), - [sym_subscript_begin] = STATE(1091), - [sym_highlighted] = STATE(197), - [sym_highlighted_begin] = STATE(1092), - [sym_insert] = STATE(197), - [sym_insert_begin] = STATE(1093), - [sym_delete] = STATE(197), - [sym_delete_begin] = STATE(1094), - [sym_hard_line_break] = STATE(197), - [sym__smart_punctuation] = STATE(197), - [sym_autolink] = STATE(197), - [sym_footnote_reference] = STATE(197), - [sym__image] = STATE(197), - [sym_full_reference_image] = STATE(197), - [sym_collapsed_reference_image] = STATE(197), - [sym_inline_image] = STATE(197), - [sym__image_description] = STATE(697), - [sym__link] = STATE(197), - [sym_full_reference_link] = STATE(197), - [sym_collapsed_reference_link] = STATE(197), - [sym_inline_link] = STATE(197), - [sym_link_text] = STATE(682), - [sym__comment_with_spaces] = STATE(197), - [sym_span] = STATE(197), - [sym_raw_inline] = STATE(197), - [sym_math] = STATE(197), - [sym_verbatim] = STATE(197), - [sym__todo_highlights] = STATE(197), - [sym_todo] = STATE(197), - [sym_note] = STATE(197), - [sym__symbol_fallback] = STATE(197), - [aux_sym__text] = STATE(134), - [aux_sym__inline_repeat1] = STATE(93), - [anon_sym_LBRACE_] = ACTIONS(313), - [anon_sym__] = ACTIONS(315), - [anon_sym_LBRACE_STAR] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_LBRACE_CARET] = ACTIONS(321), - [anon_sym_CARET] = ACTIONS(321), - [anon_sym_LBRACE_TILDE] = ACTIONS(323), - [anon_sym_TILDE] = ACTIONS(323), - [anon_sym_LBRACE_EQ] = ACTIONS(325), - [anon_sym_LBRACE_PLUS] = ACTIONS(327), - [anon_sym_LBRACE_DASH] = ACTIONS(329), - [anon_sym_BSLASH] = ACTIONS(331), - [sym_quotation_marks] = ACTIONS(333), - [sym_ellipsis] = ACTIONS(333), - [sym_em_dash] = ACTIONS(333), - [sym_en_dash] = ACTIONS(335), - [sym_backslash_escape] = ACTIONS(335), - [anon_sym_LT] = ACTIONS(337), - [sym_symbol] = ACTIONS(333), - [anon_sym_LBRACK_CARET] = ACTIONS(339), - [anon_sym_BANG_LBRACK] = ACTIONS(341), - [anon_sym_LBRACK] = ACTIONS(343), - [anon_sym_LBRACE2] = ACTIONS(335), - [anon_sym_DOLLAR] = ACTIONS(345), - [anon_sym_TODO] = ACTIONS(347), - [anon_sym_WIP] = ACTIONS(347), - [anon_sym_NOTE] = ACTIONS(349), - [anon_sym_INFO] = ACTIONS(349), - [anon_sym_XXX] = ACTIONS(349), - [sym_fixme] = ACTIONS(333), - [sym__whitespace1] = ACTIONS(351), - [sym__newline] = ACTIONS(353), - [aux_sym__text_token1] = ACTIONS(355), - [sym__verbatim_begin] = ACTIONS(357), + [sym__inline] = STATE(901), + [sym__element] = STATE(13), + [sym_emphasis] = STATE(141), + [sym_emphasis_begin] = STATE(1168), + [sym_strong] = STATE(141), + [sym_strong_begin] = STATE(1169), + [sym_superscript] = STATE(141), + [sym_superscript_begin] = STATE(1170), + [sym_subscript] = STATE(141), + [sym_subscript_begin] = STATE(1171), + [sym_highlighted] = STATE(141), + [sym_highlighted_begin] = STATE(1172), + [sym_insert] = STATE(141), + [sym_insert_begin] = STATE(1173), + [sym_delete] = STATE(141), + [sym_delete_begin] = STATE(1174), + [sym_hard_line_break] = STATE(141), + [sym__smart_punctuation] = STATE(141), + [sym_autolink] = STATE(141), + [sym_footnote_reference] = STATE(141), + [sym__image] = STATE(141), + [sym_full_reference_image] = STATE(141), + [sym_collapsed_reference_image] = STATE(141), + [sym_inline_image] = STATE(141), + [sym__image_description] = STATE(674), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(141), + [sym_full_reference_link] = STATE(141), + [sym_collapsed_reference_link] = STATE(141), + [sym_inline_link] = STATE(141), + [sym_link_text] = STATE(672), + [sym_span] = STATE(13), + [sym__bracketed_text] = STATE(655), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(141), + [sym_raw_inline] = STATE(141), + [sym_math] = STATE(141), + [sym_verbatim] = STATE(141), + [sym__todo_highlights] = STATE(141), + [sym_todo] = STATE(141), + [sym_note] = STATE(141), + [sym__symbol_fallback] = STATE(141), + [aux_sym__text] = STATE(128), + [aux_sym__inline_repeat1] = STATE(13), + [anon_sym_LBRACE_] = ACTIONS(281), + [anon_sym__] = ACTIONS(283), + [anon_sym_LBRACE_STAR] = ACTIONS(285), + [anon_sym_STAR] = ACTIONS(287), + [anon_sym_LBRACE_CARET] = ACTIONS(289), + [anon_sym_CARET] = ACTIONS(289), + [anon_sym_LBRACE_TILDE] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(291), + [anon_sym_LBRACE_EQ] = ACTIONS(293), + [anon_sym_LBRACE_PLUS] = ACTIONS(295), + [anon_sym_LBRACE_DASH] = ACTIONS(297), + [anon_sym_BSLASH] = ACTIONS(299), + [sym_quotation_marks] = ACTIONS(301), + [sym_ellipsis] = ACTIONS(301), + [sym_em_dash] = ACTIONS(301), + [sym_en_dash] = ACTIONS(303), + [sym_backslash_escape] = ACTIONS(303), + [anon_sym_LT] = ACTIONS(305), + [sym_symbol] = ACTIONS(301), + [anon_sym_LBRACK_CARET] = ACTIONS(307), + [anon_sym_BANG_LBRACK] = ACTIONS(309), + [anon_sym_LBRACK] = ACTIONS(311), + [anon_sym_DOLLAR] = ACTIONS(313), + [anon_sym_TODO] = ACTIONS(315), + [anon_sym_WIP] = ACTIONS(315), + [anon_sym_NOTE] = ACTIONS(317), + [anon_sym_INFO] = ACTIONS(317), + [anon_sym_XXX] = ACTIONS(317), + [sym_fixme] = ACTIONS(301), + [sym__whitespace1] = ACTIONS(319), + [sym__newline] = ACTIONS(321), + [aux_sym__text_token1] = ACTIONS(323), + [sym__verbatim_begin] = ACTIONS(325), }, [30] = { - [sym__inline] = STATE(860), - [sym__element] = STATE(79), - [sym_emphasis] = STATE(161), - [sym_emphasis_begin] = STATE(1081), - [sym_strong] = STATE(161), - [sym_strong_begin] = STATE(1082), - [sym_superscript] = STATE(161), - [sym_superscript_begin] = STATE(1083), - [sym_subscript] = STATE(161), - [sym_subscript_begin] = STATE(1084), - [sym_highlighted] = STATE(161), - [sym_highlighted_begin] = STATE(1085), - [sym_insert] = STATE(161), - [sym_insert_begin] = STATE(1086), - [sym_delete] = STATE(161), - [sym_delete_begin] = STATE(1087), - [sym_hard_line_break] = STATE(161), - [sym__smart_punctuation] = STATE(161), - [sym_autolink] = STATE(161), - [sym_footnote_reference] = STATE(161), - [sym__image] = STATE(161), - [sym_full_reference_image] = STATE(161), - [sym_collapsed_reference_image] = STATE(161), - [sym_inline_image] = STATE(161), - [sym__image_description] = STATE(692), - [sym__link] = STATE(161), - [sym_full_reference_link] = STATE(161), - [sym_collapsed_reference_link] = STATE(161), - [sym_inline_link] = STATE(161), - [sym_link_text] = STATE(687), - [sym__comment_with_spaces] = STATE(161), - [sym_span] = STATE(161), - [sym_raw_inline] = STATE(161), - [sym_math] = STATE(161), - [sym_verbatim] = STATE(161), - [sym__todo_highlights] = STATE(161), - [sym_todo] = STATE(161), - [sym_note] = STATE(161), - [sym__symbol_fallback] = STATE(161), - [aux_sym__text] = STATE(149), - [aux_sym__inline_repeat1] = STATE(79), - [anon_sym_LBRACE_] = ACTIONS(359), - [anon_sym__] = ACTIONS(361), - [anon_sym_LBRACE_STAR] = ACTIONS(363), - [anon_sym_STAR] = ACTIONS(365), - [anon_sym_LBRACE_CARET] = ACTIONS(367), - [anon_sym_CARET] = ACTIONS(367), - [anon_sym_LBRACE_TILDE] = ACTIONS(369), - [anon_sym_TILDE] = ACTIONS(369), - [anon_sym_LBRACE_EQ] = ACTIONS(371), - [anon_sym_LBRACE_PLUS] = ACTIONS(373), - [anon_sym_LBRACE_DASH] = ACTIONS(375), - [anon_sym_BSLASH] = ACTIONS(377), - [sym_quotation_marks] = ACTIONS(379), - [sym_ellipsis] = ACTIONS(379), - [sym_em_dash] = ACTIONS(379), - [sym_en_dash] = ACTIONS(381), - [sym_backslash_escape] = ACTIONS(381), - [anon_sym_LT] = ACTIONS(383), - [sym_symbol] = ACTIONS(379), - [anon_sym_LBRACK_CARET] = ACTIONS(385), - [anon_sym_BANG_LBRACK] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(389), - [anon_sym_LBRACE2] = ACTIONS(381), - [anon_sym_DOLLAR] = ACTIONS(391), - [anon_sym_TODO] = ACTIONS(393), - [anon_sym_WIP] = ACTIONS(393), - [anon_sym_NOTE] = ACTIONS(395), - [anon_sym_INFO] = ACTIONS(395), - [anon_sym_XXX] = ACTIONS(395), - [sym_fixme] = ACTIONS(379), - [sym__whitespace1] = ACTIONS(397), - [sym__newline] = ACTIONS(399), - [aux_sym__text_token1] = ACTIONS(401), - [sym__verbatim_begin] = ACTIONS(403), + [sym__inline] = STATE(900), + [sym__element] = STATE(70), + [sym_emphasis] = STATE(136), + [sym_emphasis_begin] = STATE(1161), + [sym_strong] = STATE(136), + [sym_strong_begin] = STATE(1162), + [sym_superscript] = STATE(136), + [sym_superscript_begin] = STATE(1163), + [sym_subscript] = STATE(136), + [sym_subscript_begin] = STATE(1164), + [sym_highlighted] = STATE(136), + [sym_highlighted_begin] = STATE(1165), + [sym_insert] = STATE(136), + [sym_insert_begin] = STATE(1166), + [sym_delete] = STATE(136), + [sym_delete_begin] = STATE(1167), + [sym_hard_line_break] = STATE(136), + [sym__smart_punctuation] = STATE(136), + [sym_autolink] = STATE(136), + [sym_footnote_reference] = STATE(136), + [sym__image] = STATE(136), + [sym_full_reference_image] = STATE(136), + [sym_collapsed_reference_image] = STATE(136), + [sym_inline_image] = STATE(136), + [sym__image_description] = STATE(690), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(136), + [sym_full_reference_link] = STATE(136), + [sym_collapsed_reference_link] = STATE(136), + [sym_inline_link] = STATE(136), + [sym_link_text] = STATE(691), + [sym_span] = STATE(70), + [sym__bracketed_text] = STATE(653), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(136), + [sym_raw_inline] = STATE(136), + [sym_math] = STATE(136), + [sym_verbatim] = STATE(136), + [sym__todo_highlights] = STATE(136), + [sym_todo] = STATE(136), + [sym_note] = STATE(136), + [sym__symbol_fallback] = STATE(136), + [aux_sym__text] = STATE(125), + [aux_sym__inline_repeat1] = STATE(70), + [anon_sym_LBRACE_] = ACTIONS(97), + [anon_sym__] = ACTIONS(99), + [anon_sym_LBRACE_STAR] = ACTIONS(101), + [anon_sym_STAR] = ACTIONS(103), + [anon_sym_LBRACE_CARET] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [anon_sym_LBRACE_TILDE] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(107), + [anon_sym_LBRACE_EQ] = ACTIONS(109), + [anon_sym_LBRACE_PLUS] = ACTIONS(111), + [anon_sym_LBRACE_DASH] = ACTIONS(113), + [anon_sym_BSLASH] = ACTIONS(115), + [sym_quotation_marks] = ACTIONS(117), + [sym_ellipsis] = ACTIONS(117), + [sym_em_dash] = ACTIONS(117), + [sym_en_dash] = ACTIONS(119), + [sym_backslash_escape] = ACTIONS(119), + [anon_sym_LT] = ACTIONS(121), + [sym_symbol] = ACTIONS(117), + [anon_sym_LBRACK_CARET] = ACTIONS(123), + [anon_sym_BANG_LBRACK] = ACTIONS(125), + [anon_sym_LBRACK] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_TODO] = ACTIONS(131), + [anon_sym_WIP] = ACTIONS(131), + [anon_sym_NOTE] = ACTIONS(133), + [anon_sym_INFO] = ACTIONS(133), + [anon_sym_XXX] = ACTIONS(133), + [sym_fixme] = ACTIONS(117), + [sym__whitespace1] = ACTIONS(135), + [sym__newline] = ACTIONS(137), + [aux_sym__text_token1] = ACTIONS(139), + [sym__verbatim_begin] = ACTIONS(141), }, [31] = { - [sym__inline_without_trailing_space] = STATE(859), - [sym__element] = STATE(572), - [sym_emphasis] = STATE(208), - [sym_emphasis_begin] = STATE(1074), - [sym_strong] = STATE(208), - [sym_strong_begin] = STATE(1075), - [sym_superscript] = STATE(208), - [sym_superscript_begin] = STATE(1076), - [sym_subscript] = STATE(208), - [sym_subscript_begin] = STATE(1077), - [sym_highlighted] = STATE(208), - [sym_highlighted_begin] = STATE(1078), - [sym_insert] = STATE(208), - [sym_insert_begin] = STATE(1079), - [sym_delete] = STATE(208), - [sym_delete_begin] = STATE(1080), - [sym_hard_line_break] = STATE(208), - [sym__smart_punctuation] = STATE(208), - [sym_autolink] = STATE(208), - [sym_footnote_reference] = STATE(208), - [sym__image] = STATE(208), - [sym_full_reference_image] = STATE(208), - [sym_collapsed_reference_image] = STATE(208), - [sym_inline_image] = STATE(208), - [sym__image_description] = STATE(680), - [sym__link] = STATE(208), - [sym_full_reference_link] = STATE(208), - [sym_collapsed_reference_link] = STATE(208), - [sym_inline_link] = STATE(208), - [sym_link_text] = STATE(663), - [sym__comment_with_spaces] = STATE(208), - [sym_span] = STATE(208), - [sym_raw_inline] = STATE(208), - [sym_math] = STATE(208), - [sym_verbatim] = STATE(208), - [sym__todo_highlights] = STATE(208), - [sym_todo] = STATE(208), - [sym_note] = STATE(208), - [sym__symbol_fallback] = STATE(208), - [aux_sym__text] = STATE(131), - [aux_sym__inline_repeat1] = STATE(130), - [anon_sym_LBRACE_] = ACTIONS(175), - [anon_sym__] = ACTIONS(177), - [anon_sym_LBRACE_STAR] = ACTIONS(179), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_LBRACE_CARET] = ACTIONS(183), - [anon_sym_CARET] = ACTIONS(183), - [anon_sym_LBRACE_TILDE] = ACTIONS(185), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_LBRACE_EQ] = ACTIONS(187), - [anon_sym_LBRACE_PLUS] = ACTIONS(189), - [anon_sym_LBRACE_DASH] = ACTIONS(191), - [anon_sym_BSLASH] = ACTIONS(193), - [sym_quotation_marks] = ACTIONS(195), - [sym_ellipsis] = ACTIONS(195), - [sym_em_dash] = ACTIONS(195), - [sym_en_dash] = ACTIONS(197), - [sym_backslash_escape] = ACTIONS(197), - [anon_sym_LT] = ACTIONS(199), - [sym_symbol] = ACTIONS(195), - [anon_sym_LBRACK_CARET] = ACTIONS(201), - [anon_sym_BANG_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE2] = ACTIONS(197), - [anon_sym_DOLLAR] = ACTIONS(207), - [anon_sym_TODO] = ACTIONS(209), - [anon_sym_WIP] = ACTIONS(209), - [anon_sym_NOTE] = ACTIONS(211), - [anon_sym_INFO] = ACTIONS(211), - [anon_sym_XXX] = ACTIONS(211), - [sym_fixme] = ACTIONS(195), - [sym__whitespace1] = ACTIONS(213), - [sym__newline] = ACTIONS(215), - [aux_sym__text_token1] = ACTIONS(217), - [sym__verbatim_begin] = ACTIONS(219), + [sym__inline] = STATE(998), + [sym__element] = STATE(70), + [sym_emphasis] = STATE(136), + [sym_emphasis_begin] = STATE(1161), + [sym_strong] = STATE(136), + [sym_strong_begin] = STATE(1162), + [sym_superscript] = STATE(136), + [sym_superscript_begin] = STATE(1163), + [sym_subscript] = STATE(136), + [sym_subscript_begin] = STATE(1164), + [sym_highlighted] = STATE(136), + [sym_highlighted_begin] = STATE(1165), + [sym_insert] = STATE(136), + [sym_insert_begin] = STATE(1166), + [sym_delete] = STATE(136), + [sym_delete_begin] = STATE(1167), + [sym_hard_line_break] = STATE(136), + [sym__smart_punctuation] = STATE(136), + [sym_autolink] = STATE(136), + [sym_footnote_reference] = STATE(136), + [sym__image] = STATE(136), + [sym_full_reference_image] = STATE(136), + [sym_collapsed_reference_image] = STATE(136), + [sym_inline_image] = STATE(136), + [sym__image_description] = STATE(690), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(136), + [sym_full_reference_link] = STATE(136), + [sym_collapsed_reference_link] = STATE(136), + [sym_inline_link] = STATE(136), + [sym_link_text] = STATE(691), + [sym_span] = STATE(70), + [sym__bracketed_text] = STATE(653), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(136), + [sym_raw_inline] = STATE(136), + [sym_math] = STATE(136), + [sym_verbatim] = STATE(136), + [sym__todo_highlights] = STATE(136), + [sym_todo] = STATE(136), + [sym_note] = STATE(136), + [sym__symbol_fallback] = STATE(136), + [aux_sym__text] = STATE(125), + [aux_sym__inline_repeat1] = STATE(70), + [anon_sym_LBRACE_] = ACTIONS(97), + [anon_sym__] = ACTIONS(99), + [anon_sym_LBRACE_STAR] = ACTIONS(101), + [anon_sym_STAR] = ACTIONS(103), + [anon_sym_LBRACE_CARET] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [anon_sym_LBRACE_TILDE] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(107), + [anon_sym_LBRACE_EQ] = ACTIONS(109), + [anon_sym_LBRACE_PLUS] = ACTIONS(111), + [anon_sym_LBRACE_DASH] = ACTIONS(113), + [anon_sym_BSLASH] = ACTIONS(115), + [sym_quotation_marks] = ACTIONS(117), + [sym_ellipsis] = ACTIONS(117), + [sym_em_dash] = ACTIONS(117), + [sym_en_dash] = ACTIONS(119), + [sym_backslash_escape] = ACTIONS(119), + [anon_sym_LT] = ACTIONS(121), + [sym_symbol] = ACTIONS(117), + [anon_sym_LBRACK_CARET] = ACTIONS(123), + [anon_sym_BANG_LBRACK] = ACTIONS(125), + [anon_sym_LBRACK] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_TODO] = ACTIONS(131), + [anon_sym_WIP] = ACTIONS(131), + [anon_sym_NOTE] = ACTIONS(133), + [anon_sym_INFO] = ACTIONS(133), + [anon_sym_XXX] = ACTIONS(133), + [sym_fixme] = ACTIONS(117), + [sym__whitespace1] = ACTIONS(135), + [sym__newline] = ACTIONS(137), + [aux_sym__text_token1] = ACTIONS(139), + [sym__verbatim_begin] = ACTIONS(141), }, [32] = { - [sym__inline_without_trailing_space] = STATE(858), - [sym__element] = STATE(603), - [sym_emphasis] = STATE(177), - [sym_emphasis_begin] = STATE(1067), - [sym_strong] = STATE(177), - [sym_strong_begin] = STATE(1068), - [sym_superscript] = STATE(177), - [sym_superscript_begin] = STATE(1069), - [sym_subscript] = STATE(177), - [sym_subscript_begin] = STATE(1070), - [sym_highlighted] = STATE(177), - [sym_highlighted_begin] = STATE(1071), - [sym_insert] = STATE(177), - [sym_insert_begin] = STATE(1072), - [sym_delete] = STATE(177), - [sym_delete_begin] = STATE(1073), - [sym_hard_line_break] = STATE(177), - [sym__smart_punctuation] = STATE(177), - [sym_autolink] = STATE(177), - [sym_footnote_reference] = STATE(177), - [sym__image] = STATE(177), - [sym_full_reference_image] = STATE(177), - [sym_collapsed_reference_image] = STATE(177), - [sym_inline_image] = STATE(177), - [sym__image_description] = STATE(681), - [sym__link] = STATE(177), - [sym_full_reference_link] = STATE(177), - [sym_collapsed_reference_link] = STATE(177), - [sym_inline_link] = STATE(177), - [sym_link_text] = STATE(668), - [sym__comment_with_spaces] = STATE(177), - [sym_span] = STATE(177), - [sym_raw_inline] = STATE(177), - [sym_math] = STATE(177), - [sym_verbatim] = STATE(177), - [sym__todo_highlights] = STATE(177), - [sym_todo] = STATE(177), - [sym_note] = STATE(177), - [sym__symbol_fallback] = STATE(177), - [aux_sym__text] = STATE(132), - [aux_sym__inline_repeat1] = STATE(128), - [anon_sym_LBRACE_] = ACTIONS(405), - [anon_sym__] = ACTIONS(407), - [anon_sym_LBRACE_STAR] = ACTIONS(409), - [anon_sym_STAR] = ACTIONS(411), - [anon_sym_LBRACE_CARET] = ACTIONS(413), - [anon_sym_CARET] = ACTIONS(413), - [anon_sym_LBRACE_TILDE] = ACTIONS(415), - [anon_sym_TILDE] = ACTIONS(415), - [anon_sym_LBRACE_EQ] = ACTIONS(417), - [anon_sym_LBRACE_PLUS] = ACTIONS(419), - [anon_sym_LBRACE_DASH] = ACTIONS(421), - [anon_sym_BSLASH] = ACTIONS(423), - [sym_quotation_marks] = ACTIONS(425), - [sym_ellipsis] = ACTIONS(425), - [sym_em_dash] = ACTIONS(425), - [sym_en_dash] = ACTIONS(427), - [sym_backslash_escape] = ACTIONS(427), - [anon_sym_LT] = ACTIONS(429), - [sym_symbol] = ACTIONS(425), - [anon_sym_LBRACK_CARET] = ACTIONS(431), - [anon_sym_BANG_LBRACK] = ACTIONS(433), - [anon_sym_LBRACK] = ACTIONS(435), - [anon_sym_LBRACE2] = ACTIONS(427), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_TODO] = ACTIONS(439), - [anon_sym_WIP] = ACTIONS(439), - [anon_sym_NOTE] = ACTIONS(441), - [anon_sym_INFO] = ACTIONS(441), - [anon_sym_XXX] = ACTIONS(441), - [sym_fixme] = ACTIONS(425), - [sym__whitespace1] = ACTIONS(443), - [sym__newline] = ACTIONS(445), - [aux_sym__text_token1] = ACTIONS(447), - [sym__verbatim_begin] = ACTIONS(449), + [sym__inline] = STATE(899), + [sym__element] = STATE(105), + [sym_emphasis] = STATE(140), + [sym_emphasis_begin] = STATE(1154), + [sym_strong] = STATE(140), + [sym_strong_begin] = STATE(1155), + [sym_superscript] = STATE(140), + [sym_superscript_begin] = STATE(1156), + [sym_subscript] = STATE(140), + [sym_subscript_begin] = STATE(1157), + [sym_highlighted] = STATE(140), + [sym_highlighted_begin] = STATE(1158), + [sym_insert] = STATE(140), + [sym_insert_begin] = STATE(1159), + [sym_delete] = STATE(140), + [sym_delete_begin] = STATE(1160), + [sym_hard_line_break] = STATE(140), + [sym__smart_punctuation] = STATE(140), + [sym_autolink] = STATE(140), + [sym_footnote_reference] = STATE(140), + [sym__image] = STATE(140), + [sym_full_reference_image] = STATE(140), + [sym_collapsed_reference_image] = STATE(140), + [sym_inline_image] = STATE(140), + [sym__image_description] = STATE(687), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(140), + [sym_full_reference_link] = STATE(140), + [sym_collapsed_reference_link] = STATE(140), + [sym_inline_link] = STATE(140), + [sym_link_text] = STATE(688), + [sym_span] = STATE(105), + [sym__bracketed_text] = STATE(654), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(140), + [sym_raw_inline] = STATE(140), + [sym_math] = STATE(140), + [sym_verbatim] = STATE(140), + [sym__todo_highlights] = STATE(140), + [sym_todo] = STATE(140), + [sym_note] = STATE(140), + [sym__symbol_fallback] = STATE(140), + [aux_sym__text] = STATE(131), + [aux_sym__inline_repeat1] = STATE(105), + [anon_sym_LBRACE_] = ACTIONS(327), + [anon_sym__] = ACTIONS(329), + [anon_sym_LBRACE_STAR] = ACTIONS(331), + [anon_sym_STAR] = ACTIONS(333), + [anon_sym_LBRACE_CARET] = ACTIONS(335), + [anon_sym_CARET] = ACTIONS(335), + [anon_sym_LBRACE_TILDE] = ACTIONS(337), + [anon_sym_TILDE] = ACTIONS(337), + [anon_sym_LBRACE_EQ] = ACTIONS(339), + [anon_sym_LBRACE_PLUS] = ACTIONS(341), + [anon_sym_LBRACE_DASH] = ACTIONS(343), + [anon_sym_BSLASH] = ACTIONS(345), + [sym_quotation_marks] = ACTIONS(347), + [sym_ellipsis] = ACTIONS(347), + [sym_em_dash] = ACTIONS(347), + [sym_en_dash] = ACTIONS(349), + [sym_backslash_escape] = ACTIONS(349), + [anon_sym_LT] = ACTIONS(351), + [sym_symbol] = ACTIONS(347), + [anon_sym_LBRACK_CARET] = ACTIONS(353), + [anon_sym_BANG_LBRACK] = ACTIONS(355), + [anon_sym_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [anon_sym_TODO] = ACTIONS(361), + [anon_sym_WIP] = ACTIONS(361), + [anon_sym_NOTE] = ACTIONS(363), + [anon_sym_INFO] = ACTIONS(363), + [anon_sym_XXX] = ACTIONS(363), + [sym_fixme] = ACTIONS(347), + [sym__whitespace1] = ACTIONS(365), + [sym__newline] = ACTIONS(367), + [aux_sym__text_token1] = ACTIONS(369), + [sym__verbatim_begin] = ACTIONS(371), }, [33] = { - [sym__inline] = STATE(835), - [sym__element] = STATE(66), - [sym_emphasis] = STATE(171), - [sym_emphasis_begin] = STATE(1116), - [sym_strong] = STATE(171), - [sym_strong_begin] = STATE(1117), - [sym_superscript] = STATE(171), - [sym_superscript_begin] = STATE(1118), - [sym_subscript] = STATE(171), - [sym_subscript_begin] = STATE(1119), - [sym_highlighted] = STATE(171), - [sym_highlighted_begin] = STATE(1120), - [sym_insert] = STATE(171), - [sym_insert_begin] = STATE(1121), - [sym_delete] = STATE(171), - [sym_delete_begin] = STATE(1122), - [sym_hard_line_break] = STATE(171), - [sym__smart_punctuation] = STATE(171), - [sym_autolink] = STATE(171), - [sym_footnote_reference] = STATE(171), - [sym__image] = STATE(171), - [sym_full_reference_image] = STATE(171), - [sym_collapsed_reference_image] = STATE(171), - [sym_inline_image] = STATE(171), + [sym__inline] = STATE(997), + [sym__element] = STATE(13), + [sym_emphasis] = STATE(141), + [sym_emphasis_begin] = STATE(1168), + [sym_strong] = STATE(141), + [sym_strong_begin] = STATE(1169), + [sym_superscript] = STATE(141), + [sym_superscript_begin] = STATE(1170), + [sym_subscript] = STATE(141), + [sym_subscript_begin] = STATE(1171), + [sym_highlighted] = STATE(141), + [sym_highlighted_begin] = STATE(1172), + [sym_insert] = STATE(141), + [sym_insert_begin] = STATE(1173), + [sym_delete] = STATE(141), + [sym_delete_begin] = STATE(1174), + [sym_hard_line_break] = STATE(141), + [sym__smart_punctuation] = STATE(141), + [sym_autolink] = STATE(141), + [sym_footnote_reference] = STATE(141), + [sym__image] = STATE(141), + [sym_full_reference_image] = STATE(141), + [sym_collapsed_reference_image] = STATE(141), + [sym_inline_image] = STATE(141), [sym__image_description] = STATE(674), - [sym__link] = STATE(171), - [sym_full_reference_link] = STATE(171), - [sym_collapsed_reference_link] = STATE(171), - [sym_inline_link] = STATE(171), - [sym_link_text] = STATE(675), - [sym__comment_with_spaces] = STATE(171), - [sym_span] = STATE(171), - [sym_raw_inline] = STATE(171), - [sym_math] = STATE(171), - [sym_verbatim] = STATE(171), - [sym__todo_highlights] = STATE(171), - [sym_todo] = STATE(171), - [sym_note] = STATE(171), - [sym__symbol_fallback] = STATE(171), - [aux_sym__text] = STATE(146), - [aux_sym__inline_repeat1] = STATE(66), - [anon_sym_LBRACE_] = ACTIONS(451), - [anon_sym__] = ACTIONS(453), - [anon_sym_LBRACE_STAR] = ACTIONS(455), - [anon_sym_STAR] = ACTIONS(457), - [anon_sym_LBRACE_CARET] = ACTIONS(459), - [anon_sym_CARET] = ACTIONS(459), - [anon_sym_LBRACE_TILDE] = ACTIONS(461), - [anon_sym_TILDE] = ACTIONS(461), - [anon_sym_LBRACE_EQ] = ACTIONS(463), - [anon_sym_LBRACE_PLUS] = ACTIONS(465), - [anon_sym_LBRACE_DASH] = ACTIONS(467), - [anon_sym_BSLASH] = ACTIONS(469), - [sym_quotation_marks] = ACTIONS(471), - [sym_ellipsis] = ACTIONS(471), - [sym_em_dash] = ACTIONS(471), - [sym_en_dash] = ACTIONS(473), - [sym_backslash_escape] = ACTIONS(473), - [anon_sym_LT] = ACTIONS(475), - [sym_symbol] = ACTIONS(471), - [anon_sym_LBRACK_CARET] = ACTIONS(477), - [anon_sym_BANG_LBRACK] = ACTIONS(479), - [anon_sym_LBRACK] = ACTIONS(481), - [anon_sym_LBRACE2] = ACTIONS(473), - [anon_sym_DOLLAR] = ACTIONS(483), - [anon_sym_TODO] = ACTIONS(485), - [anon_sym_WIP] = ACTIONS(485), - [anon_sym_NOTE] = ACTIONS(487), - [anon_sym_INFO] = ACTIONS(487), - [anon_sym_XXX] = ACTIONS(487), - [sym_fixme] = ACTIONS(471), - [sym__whitespace1] = ACTIONS(489), - [sym__newline] = ACTIONS(491), - [aux_sym__text_token1] = ACTIONS(493), - [sym__verbatim_begin] = ACTIONS(495), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(141), + [sym_full_reference_link] = STATE(141), + [sym_collapsed_reference_link] = STATE(141), + [sym_inline_link] = STATE(141), + [sym_link_text] = STATE(672), + [sym_span] = STATE(13), + [sym__bracketed_text] = STATE(655), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(141), + [sym_raw_inline] = STATE(141), + [sym_math] = STATE(141), + [sym_verbatim] = STATE(141), + [sym__todo_highlights] = STATE(141), + [sym_todo] = STATE(141), + [sym_note] = STATE(141), + [sym__symbol_fallback] = STATE(141), + [aux_sym__text] = STATE(128), + [aux_sym__inline_repeat1] = STATE(13), + [anon_sym_LBRACE_] = ACTIONS(281), + [anon_sym__] = ACTIONS(283), + [anon_sym_LBRACE_STAR] = ACTIONS(285), + [anon_sym_STAR] = ACTIONS(287), + [anon_sym_LBRACE_CARET] = ACTIONS(289), + [anon_sym_CARET] = ACTIONS(289), + [anon_sym_LBRACE_TILDE] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(291), + [anon_sym_LBRACE_EQ] = ACTIONS(293), + [anon_sym_LBRACE_PLUS] = ACTIONS(295), + [anon_sym_LBRACE_DASH] = ACTIONS(297), + [anon_sym_BSLASH] = ACTIONS(299), + [sym_quotation_marks] = ACTIONS(301), + [sym_ellipsis] = ACTIONS(301), + [sym_em_dash] = ACTIONS(301), + [sym_en_dash] = ACTIONS(303), + [sym_backslash_escape] = ACTIONS(303), + [anon_sym_LT] = ACTIONS(305), + [sym_symbol] = ACTIONS(301), + [anon_sym_LBRACK_CARET] = ACTIONS(307), + [anon_sym_BANG_LBRACK] = ACTIONS(309), + [anon_sym_LBRACK] = ACTIONS(311), + [anon_sym_DOLLAR] = ACTIONS(313), + [anon_sym_TODO] = ACTIONS(315), + [anon_sym_WIP] = ACTIONS(315), + [anon_sym_NOTE] = ACTIONS(317), + [anon_sym_INFO] = ACTIONS(317), + [anon_sym_XXX] = ACTIONS(317), + [sym_fixme] = ACTIONS(301), + [sym__whitespace1] = ACTIONS(319), + [sym__newline] = ACTIONS(321), + [aux_sym__text_token1] = ACTIONS(323), + [sym__verbatim_begin] = ACTIONS(325), }, [34] = { - [sym__inline] = STATE(813), + [sym__inline] = STATE(996), [sym__element] = STATE(103), - [sym_emphasis] = STATE(180), - [sym_emphasis_begin] = STATE(1109), - [sym_strong] = STATE(180), - [sym_strong_begin] = STATE(1110), - [sym_superscript] = STATE(180), - [sym_superscript_begin] = STATE(1111), - [sym_subscript] = STATE(180), - [sym_subscript_begin] = STATE(1112), - [sym_highlighted] = STATE(180), - [sym_highlighted_begin] = STATE(1113), - [sym_insert] = STATE(180), - [sym_insert_begin] = STATE(1114), - [sym_delete] = STATE(180), - [sym_delete_begin] = STATE(1115), - [sym_hard_line_break] = STATE(180), - [sym__smart_punctuation] = STATE(180), - [sym_autolink] = STATE(180), - [sym_footnote_reference] = STATE(180), - [sym__image] = STATE(180), - [sym_full_reference_image] = STATE(180), - [sym_collapsed_reference_image] = STATE(180), - [sym_inline_image] = STATE(180), - [sym__image_description] = STATE(666), - [sym__link] = STATE(180), - [sym_full_reference_link] = STATE(180), - [sym_collapsed_reference_link] = STATE(180), - [sym_inline_link] = STATE(180), - [sym_link_text] = STATE(664), - [sym__comment_with_spaces] = STATE(180), - [sym_span] = STATE(180), - [sym_raw_inline] = STATE(180), - [sym_math] = STATE(180), - [sym_verbatim] = STATE(180), - [sym__todo_highlights] = STATE(180), - [sym_todo] = STATE(180), - [sym_note] = STATE(180), - [sym__symbol_fallback] = STATE(180), - [aux_sym__text] = STATE(159), + [sym_emphasis] = STATE(139), + [sym_emphasis_begin] = STATE(1175), + [sym_strong] = STATE(139), + [sym_strong_begin] = STATE(1176), + [sym_superscript] = STATE(139), + [sym_superscript_begin] = STATE(1177), + [sym_subscript] = STATE(139), + [sym_subscript_begin] = STATE(1178), + [sym_highlighted] = STATE(139), + [sym_highlighted_begin] = STATE(1179), + [sym_insert] = STATE(139), + [sym_insert_begin] = STATE(1180), + [sym_delete] = STATE(139), + [sym_delete_begin] = STATE(1181), + [sym_hard_line_break] = STATE(139), + [sym__smart_punctuation] = STATE(139), + [sym_autolink] = STATE(139), + [sym_footnote_reference] = STATE(139), + [sym__image] = STATE(139), + [sym_full_reference_image] = STATE(139), + [sym_collapsed_reference_image] = STATE(139), + [sym_inline_image] = STATE(139), + [sym__image_description] = STATE(682), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(139), + [sym_full_reference_link] = STATE(139), + [sym_collapsed_reference_link] = STATE(139), + [sym_inline_link] = STATE(139), + [sym_link_text] = STATE(681), + [sym_span] = STATE(103), + [sym__bracketed_text] = STATE(656), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(139), + [sym_raw_inline] = STATE(139), + [sym_math] = STATE(139), + [sym_verbatim] = STATE(139), + [sym__todo_highlights] = STATE(139), + [sym_todo] = STATE(139), + [sym_note] = STATE(139), + [sym__symbol_fallback] = STATE(139), + [aux_sym__text] = STATE(129), [aux_sym__inline_repeat1] = STATE(103), - [anon_sym_LBRACE_] = ACTIONS(221), - [anon_sym__] = ACTIONS(223), - [anon_sym_LBRACE_STAR] = ACTIONS(225), - [anon_sym_STAR] = ACTIONS(227), - [anon_sym_LBRACE_CARET] = ACTIONS(229), - [anon_sym_CARET] = ACTIONS(229), - [anon_sym_LBRACE_TILDE] = ACTIONS(231), - [anon_sym_TILDE] = ACTIONS(231), - [anon_sym_LBRACE_EQ] = ACTIONS(233), - [anon_sym_LBRACE_PLUS] = ACTIONS(235), - [anon_sym_LBRACE_DASH] = ACTIONS(237), - [anon_sym_BSLASH] = ACTIONS(239), - [sym_quotation_marks] = ACTIONS(241), - [sym_ellipsis] = ACTIONS(241), - [sym_em_dash] = ACTIONS(241), - [sym_en_dash] = ACTIONS(243), - [sym_backslash_escape] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(245), - [sym_symbol] = ACTIONS(241), - [anon_sym_LBRACK_CARET] = ACTIONS(247), - [anon_sym_BANG_LBRACK] = ACTIONS(249), - [anon_sym_LBRACK] = ACTIONS(251), - [anon_sym_LBRACE2] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(253), - [anon_sym_TODO] = ACTIONS(255), - [anon_sym_WIP] = ACTIONS(255), - [anon_sym_NOTE] = ACTIONS(257), - [anon_sym_INFO] = ACTIONS(257), - [anon_sym_XXX] = ACTIONS(257), - [sym_fixme] = ACTIONS(241), - [sym__whitespace1] = ACTIONS(259), - [sym__newline] = ACTIONS(261), - [aux_sym__text_token1] = ACTIONS(263), - [sym__verbatim_begin] = ACTIONS(265), + [anon_sym_LBRACE_] = ACTIONS(235), + [anon_sym__] = ACTIONS(237), + [anon_sym_LBRACE_STAR] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(241), + [anon_sym_LBRACE_CARET] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(243), + [anon_sym_LBRACE_TILDE] = ACTIONS(245), + [anon_sym_TILDE] = ACTIONS(245), + [anon_sym_LBRACE_EQ] = ACTIONS(247), + [anon_sym_LBRACE_PLUS] = ACTIONS(249), + [anon_sym_LBRACE_DASH] = ACTIONS(251), + [anon_sym_BSLASH] = ACTIONS(253), + [sym_quotation_marks] = ACTIONS(255), + [sym_ellipsis] = ACTIONS(255), + [sym_em_dash] = ACTIONS(255), + [sym_en_dash] = ACTIONS(257), + [sym_backslash_escape] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(259), + [sym_symbol] = ACTIONS(255), + [anon_sym_LBRACK_CARET] = ACTIONS(261), + [anon_sym_BANG_LBRACK] = ACTIONS(263), + [anon_sym_LBRACK] = ACTIONS(265), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_TODO] = ACTIONS(269), + [anon_sym_WIP] = ACTIONS(269), + [anon_sym_NOTE] = ACTIONS(271), + [anon_sym_INFO] = ACTIONS(271), + [anon_sym_XXX] = ACTIONS(271), + [sym_fixme] = ACTIONS(255), + [sym__whitespace1] = ACTIONS(273), + [sym__newline] = ACTIONS(275), + [aux_sym__text_token1] = ACTIONS(277), + [sym__verbatim_begin] = ACTIONS(279), }, [35] = { - [sym__inline] = STATE(833), - [sym__element] = STATE(111), - [sym_emphasis] = STATE(186), - [sym_emphasis_begin] = STATE(1102), - [sym_strong] = STATE(186), - [sym_strong_begin] = STATE(1103), - [sym_superscript] = STATE(186), - [sym_superscript_begin] = STATE(1104), - [sym_subscript] = STATE(186), - [sym_subscript_begin] = STATE(1105), - [sym_highlighted] = STATE(186), - [sym_highlighted_begin] = STATE(1106), - [sym_insert] = STATE(186), - [sym_insert_begin] = STATE(1107), - [sym_delete] = STATE(186), - [sym_delete_begin] = STATE(1108), - [sym_hard_line_break] = STATE(186), - [sym__smart_punctuation] = STATE(186), - [sym_autolink] = STATE(186), - [sym_footnote_reference] = STATE(186), - [sym__image] = STATE(186), - [sym_full_reference_image] = STATE(186), - [sym_collapsed_reference_image] = STATE(186), - [sym_inline_image] = STATE(186), - [sym__image_description] = STATE(673), - [sym__link] = STATE(186), - [sym_full_reference_link] = STATE(186), - [sym_collapsed_reference_link] = STATE(186), - [sym_inline_link] = STATE(186), - [sym_link_text] = STATE(672), - [sym__comment_with_spaces] = STATE(186), - [sym_span] = STATE(186), - [sym_raw_inline] = STATE(186), - [sym_math] = STATE(186), - [sym_verbatim] = STATE(186), - [sym__todo_highlights] = STATE(186), - [sym_todo] = STATE(186), - [sym_note] = STATE(186), - [sym__symbol_fallback] = STATE(186), - [aux_sym__text] = STATE(155), - [aux_sym__inline_repeat1] = STATE(111), - [anon_sym_LBRACE_] = ACTIONS(267), - [anon_sym__] = ACTIONS(269), - [anon_sym_LBRACE_STAR] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_LBRACE_CARET] = ACTIONS(275), - [anon_sym_CARET] = ACTIONS(275), - [anon_sym_LBRACE_TILDE] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(277), - [anon_sym_LBRACE_EQ] = ACTIONS(279), - [anon_sym_LBRACE_PLUS] = ACTIONS(281), - [anon_sym_LBRACE_DASH] = ACTIONS(283), - [anon_sym_BSLASH] = ACTIONS(285), - [sym_quotation_marks] = ACTIONS(287), - [sym_ellipsis] = ACTIONS(287), - [sym_em_dash] = ACTIONS(287), - [sym_en_dash] = ACTIONS(289), - [sym_backslash_escape] = ACTIONS(289), - [anon_sym_LT] = ACTIONS(291), - [sym_symbol] = ACTIONS(287), - [anon_sym_LBRACK_CARET] = ACTIONS(293), - [anon_sym_BANG_LBRACK] = ACTIONS(295), - [anon_sym_LBRACK] = ACTIONS(297), - [anon_sym_LBRACE2] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(299), - [anon_sym_TODO] = ACTIONS(301), - [anon_sym_WIP] = ACTIONS(301), - [anon_sym_NOTE] = ACTIONS(303), - [anon_sym_INFO] = ACTIONS(303), - [anon_sym_XXX] = ACTIONS(303), - [sym_fixme] = ACTIONS(287), - [sym__whitespace1] = ACTIONS(305), - [sym__newline] = ACTIONS(307), - [aux_sym__text_token1] = ACTIONS(309), - [sym__verbatim_begin] = ACTIONS(311), + [sym__inline_without_trailing_space] = STATE(898), + [sym__element] = STATE(562), + [sym_emphasis] = STATE(142), + [sym_emphasis_begin] = STATE(1147), + [sym_strong] = STATE(142), + [sym_strong_begin] = STATE(1148), + [sym_superscript] = STATE(142), + [sym_superscript_begin] = STATE(1149), + [sym_subscript] = STATE(142), + [sym_subscript_begin] = STATE(1150), + [sym_highlighted] = STATE(142), + [sym_highlighted_begin] = STATE(1151), + [sym_insert] = STATE(142), + [sym_insert_begin] = STATE(1152), + [sym_delete] = STATE(142), + [sym_delete_begin] = STATE(1153), + [sym_hard_line_break] = STATE(142), + [sym__smart_punctuation] = STATE(142), + [sym_autolink] = STATE(142), + [sym_footnote_reference] = STATE(142), + [sym__image] = STATE(142), + [sym_full_reference_image] = STATE(142), + [sym_collapsed_reference_image] = STATE(142), + [sym_inline_image] = STATE(142), + [sym__image_description] = STATE(685), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(142), + [sym_full_reference_link] = STATE(142), + [sym_collapsed_reference_link] = STATE(142), + [sym_inline_link] = STATE(142), + [sym_link_text] = STATE(683), + [sym_span] = STATE(562), + [sym__bracketed_text] = STATE(657), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(142), + [sym_raw_inline] = STATE(142), + [sym_math] = STATE(142), + [sym_verbatim] = STATE(142), + [sym__todo_highlights] = STATE(142), + [sym_todo] = STATE(142), + [sym_note] = STATE(142), + [sym__symbol_fallback] = STATE(142), + [aux_sym__text] = STATE(126), + [aux_sym__inline_repeat1] = STATE(120), + [anon_sym_LBRACE_] = ACTIONS(373), + [anon_sym__] = ACTIONS(375), + [anon_sym_LBRACE_STAR] = ACTIONS(377), + [anon_sym_STAR] = ACTIONS(379), + [anon_sym_LBRACE_CARET] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(381), + [anon_sym_LBRACE_TILDE] = ACTIONS(383), + [anon_sym_TILDE] = ACTIONS(383), + [anon_sym_LBRACE_EQ] = ACTIONS(385), + [anon_sym_LBRACE_PLUS] = ACTIONS(387), + [anon_sym_LBRACE_DASH] = ACTIONS(389), + [anon_sym_BSLASH] = ACTIONS(391), + [sym_quotation_marks] = ACTIONS(393), + [sym_ellipsis] = ACTIONS(393), + [sym_em_dash] = ACTIONS(393), + [sym_en_dash] = ACTIONS(395), + [sym_backslash_escape] = ACTIONS(395), + [anon_sym_LT] = ACTIONS(397), + [sym_symbol] = ACTIONS(393), + [anon_sym_LBRACK_CARET] = ACTIONS(399), + [anon_sym_BANG_LBRACK] = ACTIONS(401), + [anon_sym_LBRACK] = ACTIONS(403), + [anon_sym_DOLLAR] = ACTIONS(405), + [anon_sym_TODO] = ACTIONS(407), + [anon_sym_WIP] = ACTIONS(407), + [anon_sym_NOTE] = ACTIONS(409), + [anon_sym_INFO] = ACTIONS(409), + [anon_sym_XXX] = ACTIONS(409), + [sym_fixme] = ACTIONS(393), + [sym__whitespace1] = ACTIONS(411), + [sym__newline] = ACTIONS(413), + [aux_sym__text_token1] = ACTIONS(415), + [sym__verbatim_begin] = ACTIONS(417), }, [36] = { - [sym__inline] = STATE(832), - [sym__element] = STATE(115), - [sym_emphasis] = STATE(192), - [sym_emphasis_begin] = STATE(1095), - [sym_strong] = STATE(192), - [sym_strong_begin] = STATE(1096), - [sym_superscript] = STATE(192), - [sym_superscript_begin] = STATE(1097), - [sym_subscript] = STATE(192), - [sym_subscript_begin] = STATE(1098), - [sym_highlighted] = STATE(192), - [sym_highlighted_begin] = STATE(1099), - [sym_insert] = STATE(192), - [sym_insert_begin] = STATE(1100), - [sym_delete] = STATE(192), - [sym_delete_begin] = STATE(1101), - [sym_hard_line_break] = STATE(192), - [sym__smart_punctuation] = STATE(192), - [sym_autolink] = STATE(192), - [sym_footnote_reference] = STATE(192), - [sym__image] = STATE(192), - [sym_full_reference_image] = STATE(192), - [sym_collapsed_reference_image] = STATE(192), - [sym_inline_image] = STATE(192), - [sym__image_description] = STATE(684), - [sym__link] = STATE(192), - [sym_full_reference_link] = STATE(192), - [sym_collapsed_reference_link] = STATE(192), - [sym_inline_link] = STATE(192), - [sym_link_text] = STATE(683), - [sym__comment_with_spaces] = STATE(192), - [sym_span] = STATE(192), - [sym_raw_inline] = STATE(192), - [sym_math] = STATE(192), - [sym_verbatim] = STATE(192), - [sym__todo_highlights] = STATE(192), - [sym_todo] = STATE(192), - [sym_note] = STATE(192), - [sym__symbol_fallback] = STATE(192), - [aux_sym__text] = STATE(141), - [aux_sym__inline_repeat1] = STATE(115), - [anon_sym_LBRACE_] = ACTIONS(129), - [anon_sym__] = ACTIONS(131), - [anon_sym_LBRACE_STAR] = ACTIONS(133), - [anon_sym_STAR] = ACTIONS(135), - [anon_sym_LBRACE_CARET] = ACTIONS(137), - [anon_sym_CARET] = ACTIONS(137), - [anon_sym_LBRACE_TILDE] = ACTIONS(139), - [anon_sym_TILDE] = ACTIONS(139), - [anon_sym_LBRACE_EQ] = ACTIONS(141), - [anon_sym_LBRACE_PLUS] = ACTIONS(143), - [anon_sym_LBRACE_DASH] = ACTIONS(145), - [anon_sym_BSLASH] = ACTIONS(147), - [sym_quotation_marks] = ACTIONS(149), - [sym_ellipsis] = ACTIONS(149), - [sym_em_dash] = ACTIONS(149), - [sym_en_dash] = ACTIONS(151), - [sym_backslash_escape] = ACTIONS(151), - [anon_sym_LT] = ACTIONS(153), - [sym_symbol] = ACTIONS(149), - [anon_sym_LBRACK_CARET] = ACTIONS(155), - [anon_sym_BANG_LBRACK] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LBRACE2] = ACTIONS(151), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_TODO] = ACTIONS(163), - [anon_sym_WIP] = ACTIONS(163), - [anon_sym_NOTE] = ACTIONS(165), - [anon_sym_INFO] = ACTIONS(165), - [anon_sym_XXX] = ACTIONS(165), - [sym_fixme] = ACTIONS(149), - [sym__whitespace1] = ACTIONS(167), - [sym__newline] = ACTIONS(169), - [aux_sym__text_token1] = ACTIONS(171), - [sym__verbatim_begin] = ACTIONS(173), + [sym__element] = STATE(36), + [sym_emphasis] = STATE(139), + [sym_emphasis_begin] = STATE(1175), + [sym_strong] = STATE(139), + [sym_strong_begin] = STATE(1176), + [sym_superscript] = STATE(139), + [sym_superscript_begin] = STATE(1177), + [sym_subscript] = STATE(139), + [sym_subscript_begin] = STATE(1178), + [sym_highlighted] = STATE(139), + [sym_highlighted_begin] = STATE(1179), + [sym_insert] = STATE(139), + [sym_insert_begin] = STATE(1180), + [sym_delete] = STATE(139), + [sym_delete_begin] = STATE(1181), + [sym_hard_line_break] = STATE(139), + [sym__smart_punctuation] = STATE(139), + [sym_autolink] = STATE(139), + [sym_footnote_reference] = STATE(139), + [sym__image] = STATE(139), + [sym_full_reference_image] = STATE(139), + [sym_collapsed_reference_image] = STATE(139), + [sym_inline_image] = STATE(139), + [sym__image_description] = STATE(682), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(139), + [sym_full_reference_link] = STATE(139), + [sym_collapsed_reference_link] = STATE(139), + [sym_inline_link] = STATE(139), + [sym_link_text] = STATE(681), + [sym_span] = STATE(36), + [sym__bracketed_text] = STATE(656), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(139), + [sym_raw_inline] = STATE(139), + [sym_math] = STATE(139), + [sym_verbatim] = STATE(139), + [sym__todo_highlights] = STATE(139), + [sym_todo] = STATE(139), + [sym_note] = STATE(139), + [sym__symbol_fallback] = STATE(139), + [aux_sym__text] = STATE(129), + [aux_sym__inline_repeat1] = STATE(36), + [anon_sym_LBRACE_] = ACTIONS(542), + [anon_sym__] = ACTIONS(545), + [anon_sym_LBRACE_STAR] = ACTIONS(548), + [anon_sym_STAR] = ACTIONS(551), + [anon_sym_LBRACE_CARET] = ACTIONS(554), + [anon_sym_CARET] = ACTIONS(554), + [anon_sym_LBRACE_TILDE] = ACTIONS(557), + [anon_sym_TILDE] = ACTIONS(557), + [anon_sym_LBRACE_EQ] = ACTIONS(560), + [anon_sym_LBRACE_PLUS] = ACTIONS(563), + [anon_sym_LBRACE_DASH] = ACTIONS(566), + [anon_sym_BSLASH] = ACTIONS(569), + [sym_quotation_marks] = ACTIONS(572), + [sym_ellipsis] = ACTIONS(572), + [sym_em_dash] = ACTIONS(572), + [sym_en_dash] = ACTIONS(575), + [sym_backslash_escape] = ACTIONS(575), + [anon_sym_LT] = ACTIONS(578), + [sym_symbol] = ACTIONS(572), + [anon_sym_LBRACK_CARET] = ACTIONS(581), + [anon_sym_BANG_LBRACK] = ACTIONS(584), + [anon_sym_LBRACK] = ACTIONS(587), + [anon_sym_DOLLAR] = ACTIONS(590), + [anon_sym_TODO] = ACTIONS(593), + [anon_sym_WIP] = ACTIONS(593), + [anon_sym_NOTE] = ACTIONS(596), + [anon_sym_INFO] = ACTIONS(596), + [anon_sym_XXX] = ACTIONS(596), + [sym_fixme] = ACTIONS(572), + [sym__whitespace1] = ACTIONS(599), + [sym__newline] = ACTIONS(602), + [aux_sym__text_token1] = ACTIONS(605), + [sym__verbatim_begin] = ACTIONS(608), + [sym_insert_end] = ACTIONS(538), }, [37] = { - [sym__inline] = STATE(894), - [sym__element] = STATE(103), - [sym_emphasis] = STATE(180), - [sym_emphasis_begin] = STATE(1109), - [sym_strong] = STATE(180), - [sym_strong_begin] = STATE(1110), - [sym_superscript] = STATE(180), - [sym_superscript_begin] = STATE(1111), - [sym_subscript] = STATE(180), - [sym_subscript_begin] = STATE(1112), - [sym_highlighted] = STATE(180), - [sym_highlighted_begin] = STATE(1113), - [sym_insert] = STATE(180), - [sym_insert_begin] = STATE(1114), - [sym_delete] = STATE(180), - [sym_delete_begin] = STATE(1115), - [sym_hard_line_break] = STATE(180), - [sym__smart_punctuation] = STATE(180), - [sym_autolink] = STATE(180), - [sym_footnote_reference] = STATE(180), - [sym__image] = STATE(180), - [sym_full_reference_image] = STATE(180), - [sym_collapsed_reference_image] = STATE(180), - [sym_inline_image] = STATE(180), - [sym__image_description] = STATE(666), - [sym__link] = STATE(180), - [sym_full_reference_link] = STATE(180), - [sym_collapsed_reference_link] = STATE(180), - [sym_inline_link] = STATE(180), - [sym_link_text] = STATE(664), - [sym__comment_with_spaces] = STATE(180), - [sym_span] = STATE(180), - [sym_raw_inline] = STATE(180), - [sym_math] = STATE(180), - [sym_verbatim] = STATE(180), - [sym__todo_highlights] = STATE(180), - [sym_todo] = STATE(180), - [sym_note] = STATE(180), - [sym__symbol_fallback] = STATE(180), - [aux_sym__text] = STATE(159), - [aux_sym__inline_repeat1] = STATE(103), - [anon_sym_LBRACE_] = ACTIONS(221), - [anon_sym__] = ACTIONS(223), - [anon_sym_LBRACE_STAR] = ACTIONS(225), - [anon_sym_STAR] = ACTIONS(227), - [anon_sym_LBRACE_CARET] = ACTIONS(229), - [anon_sym_CARET] = ACTIONS(229), - [anon_sym_LBRACE_TILDE] = ACTIONS(231), - [anon_sym_TILDE] = ACTIONS(231), - [anon_sym_LBRACE_EQ] = ACTIONS(233), - [anon_sym_LBRACE_PLUS] = ACTIONS(235), - [anon_sym_LBRACE_DASH] = ACTIONS(237), - [anon_sym_BSLASH] = ACTIONS(239), - [sym_quotation_marks] = ACTIONS(241), - [sym_ellipsis] = ACTIONS(241), - [sym_em_dash] = ACTIONS(241), - [sym_en_dash] = ACTIONS(243), - [sym_backslash_escape] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(245), - [sym_symbol] = ACTIONS(241), - [anon_sym_LBRACK_CARET] = ACTIONS(247), - [anon_sym_BANG_LBRACK] = ACTIONS(249), - [anon_sym_LBRACK] = ACTIONS(251), - [anon_sym_LBRACE2] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(253), - [anon_sym_TODO] = ACTIONS(255), - [anon_sym_WIP] = ACTIONS(255), - [anon_sym_NOTE] = ACTIONS(257), - [anon_sym_INFO] = ACTIONS(257), - [anon_sym_XXX] = ACTIONS(257), - [sym_fixme] = ACTIONS(241), - [sym__whitespace1] = ACTIONS(259), - [sym__newline] = ACTIONS(261), - [aux_sym__text_token1] = ACTIONS(263), - [sym__verbatim_begin] = ACTIONS(265), - }, - [38] = { - [sym__element] = STATE(68), - [sym_emphasis] = STATE(166), - [sym_emphasis_begin] = STATE(1041), - [sym_strong] = STATE(166), - [sym_strong_begin] = STATE(1040), - [sym_superscript] = STATE(166), - [sym_superscript_begin] = STATE(1039), - [sym_subscript] = STATE(166), - [sym_subscript_begin] = STATE(1038), - [sym_highlighted] = STATE(166), - [sym_highlighted_begin] = STATE(1037), - [sym_insert] = STATE(166), - [sym_insert_begin] = STATE(1036), - [sym_delete] = STATE(166), - [sym_delete_begin] = STATE(1029), - [sym_hard_line_break] = STATE(166), - [sym__smart_punctuation] = STATE(166), - [sym_autolink] = STATE(166), - [sym_footnote_reference] = STATE(166), - [sym__image] = STATE(166), - [sym_full_reference_image] = STATE(166), - [sym_collapsed_reference_image] = STATE(166), - [sym_inline_image] = STATE(166), - [sym__image_description] = STATE(696), - [sym__link] = STATE(166), - [sym_full_reference_link] = STATE(166), - [sym_collapsed_reference_link] = STATE(166), - [sym_inline_link] = STATE(166), - [sym_link_text] = STATE(693), - [sym__comment_with_spaces] = STATE(166), - [sym_span] = STATE(166), - [sym_raw_inline] = STATE(166), - [sym_math] = STATE(166), - [sym_verbatim] = STATE(166), - [sym__todo_highlights] = STATE(166), - [sym_todo] = STATE(166), - [sym_note] = STATE(166), - [sym__symbol_fallback] = STATE(166), - [aux_sym__text] = STATE(160), - [aux_sym__inline_repeat1] = STATE(68), - [ts_builtin_sym_end] = ACTIONS(497), + [sym__element] = STATE(71), + [sym_emphasis] = STATE(143), + [sym_emphasis_begin] = STATE(1117), + [sym_strong] = STATE(143), + [sym_strong_begin] = STATE(1116), + [sym_superscript] = STATE(143), + [sym_superscript_begin] = STATE(1115), + [sym_subscript] = STATE(143), + [sym_subscript_begin] = STATE(1107), + [sym_highlighted] = STATE(143), + [sym_highlighted_begin] = STATE(1106), + [sym_insert] = STATE(143), + [sym_insert_begin] = STATE(1105), + [sym_delete] = STATE(143), + [sym_delete_begin] = STATE(1104), + [sym_hard_line_break] = STATE(143), + [sym__smart_punctuation] = STATE(143), + [sym_autolink] = STATE(143), + [sym_footnote_reference] = STATE(143), + [sym__image] = STATE(143), + [sym_full_reference_image] = STATE(143), + [sym_collapsed_reference_image] = STATE(143), + [sym_inline_image] = STATE(143), + [sym__image_description] = STATE(673), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(143), + [sym_full_reference_link] = STATE(143), + [sym_collapsed_reference_link] = STATE(143), + [sym_inline_link] = STATE(143), + [sym_link_text] = STATE(669), + [sym_span] = STATE(71), + [sym__bracketed_text] = STATE(661), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(143), + [sym_raw_inline] = STATE(143), + [sym_math] = STATE(143), + [sym_verbatim] = STATE(143), + [sym__todo_highlights] = STATE(143), + [sym_todo] = STATE(143), + [sym_note] = STATE(143), + [sym__symbol_fallback] = STATE(143), + [aux_sym__text] = STATE(130), + [aux_sym__inline_repeat1] = STATE(71), + [ts_builtin_sym_end] = ACTIONS(467), [anon_sym_LBRACE_] = ACTIONS(3), [anon_sym__] = ACTIONS(5), [anon_sym_LBRACE_STAR] = ACTIONS(7), @@ -8443,7 +7991,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_CARET] = ACTIONS(29), [anon_sym_BANG_LBRACK] = ACTIONS(31), [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACE2] = ACTIONS(25), [anon_sym_DOLLAR] = ACTIONS(35), [anon_sym_TODO] = ACTIONS(37), [anon_sym_WIP] = ACTIONS(37), @@ -8452,7111 +7999,6586 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_XXX] = ACTIONS(39), [sym_fixme] = ACTIONS(23), [sym__whitespace1] = ACTIONS(41), - [sym__newline] = ACTIONS(499), + [sym__newline] = ACTIONS(611), [aux_sym__text_token1] = ACTIONS(45), [sym__verbatim_begin] = ACTIONS(47), }, + [38] = { + [sym__inline_without_trailing_space] = STATE(897), + [sym__element] = STATE(604), + [sym_emphasis] = STATE(138), + [sym_emphasis_begin] = STATE(1140), + [sym_strong] = STATE(138), + [sym_strong_begin] = STATE(1141), + [sym_superscript] = STATE(138), + [sym_superscript_begin] = STATE(1142), + [sym_subscript] = STATE(138), + [sym_subscript_begin] = STATE(1143), + [sym_highlighted] = STATE(138), + [sym_highlighted_begin] = STATE(1144), + [sym_insert] = STATE(138), + [sym_insert_begin] = STATE(1145), + [sym_delete] = STATE(138), + [sym_delete_begin] = STATE(1146), + [sym_hard_line_break] = STATE(138), + [sym__smart_punctuation] = STATE(138), + [sym_autolink] = STATE(138), + [sym_footnote_reference] = STATE(138), + [sym__image] = STATE(138), + [sym_full_reference_image] = STATE(138), + [sym_collapsed_reference_image] = STATE(138), + [sym_inline_image] = STATE(138), + [sym__image_description] = STATE(667), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(138), + [sym_full_reference_link] = STATE(138), + [sym_collapsed_reference_link] = STATE(138), + [sym_inline_link] = STATE(138), + [sym_link_text] = STATE(689), + [sym_span] = STATE(604), + [sym__bracketed_text] = STATE(658), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(138), + [sym_raw_inline] = STATE(138), + [sym_math] = STATE(138), + [sym_verbatim] = STATE(138), + [sym__todo_highlights] = STATE(138), + [sym_todo] = STATE(138), + [sym_note] = STATE(138), + [sym__symbol_fallback] = STATE(138), + [aux_sym__text] = STATE(124), + [aux_sym__inline_repeat1] = STATE(118), + [anon_sym_LBRACE_] = ACTIONS(419), + [anon_sym__] = ACTIONS(421), + [anon_sym_LBRACE_STAR] = ACTIONS(423), + [anon_sym_STAR] = ACTIONS(425), + [anon_sym_LBRACE_CARET] = ACTIONS(427), + [anon_sym_CARET] = ACTIONS(427), + [anon_sym_LBRACE_TILDE] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_LBRACE_EQ] = ACTIONS(431), + [anon_sym_LBRACE_PLUS] = ACTIONS(433), + [anon_sym_LBRACE_DASH] = ACTIONS(435), + [anon_sym_BSLASH] = ACTIONS(437), + [sym_quotation_marks] = ACTIONS(439), + [sym_ellipsis] = ACTIONS(439), + [sym_em_dash] = ACTIONS(439), + [sym_en_dash] = ACTIONS(441), + [sym_backslash_escape] = ACTIONS(441), + [anon_sym_LT] = ACTIONS(443), + [sym_symbol] = ACTIONS(439), + [anon_sym_LBRACK_CARET] = ACTIONS(445), + [anon_sym_BANG_LBRACK] = ACTIONS(447), + [anon_sym_LBRACK] = ACTIONS(449), + [anon_sym_DOLLAR] = ACTIONS(451), + [anon_sym_TODO] = ACTIONS(453), + [anon_sym_WIP] = ACTIONS(453), + [anon_sym_NOTE] = ACTIONS(455), + [anon_sym_INFO] = ACTIONS(455), + [anon_sym_XXX] = ACTIONS(455), + [sym_fixme] = ACTIONS(439), + [sym__whitespace1] = ACTIONS(457), + [sym__newline] = ACTIONS(459), + [aux_sym__text_token1] = ACTIONS(461), + [sym__verbatim_begin] = ACTIONS(463), + }, [39] = { - [sym__inline] = STATE(831), - [sym__element] = STATE(93), - [sym_emphasis] = STATE(197), - [sym_emphasis_begin] = STATE(1088), - [sym_strong] = STATE(197), - [sym_strong_begin] = STATE(1089), - [sym_superscript] = STATE(197), - [sym_superscript_begin] = STATE(1090), - [sym_subscript] = STATE(197), - [sym_subscript_begin] = STATE(1091), - [sym_highlighted] = STATE(197), - [sym_highlighted_begin] = STATE(1092), - [sym_insert] = STATE(197), - [sym_insert_begin] = STATE(1093), - [sym_delete] = STATE(197), - [sym_delete_begin] = STATE(1094), - [sym_hard_line_break] = STATE(197), - [sym__smart_punctuation] = STATE(197), - [sym_autolink] = STATE(197), - [sym_footnote_reference] = STATE(197), - [sym__image] = STATE(197), - [sym_full_reference_image] = STATE(197), - [sym_collapsed_reference_image] = STATE(197), - [sym_inline_image] = STATE(197), - [sym__image_description] = STATE(697), - [sym__link] = STATE(197), - [sym_full_reference_link] = STATE(197), - [sym_collapsed_reference_link] = STATE(197), - [sym_inline_link] = STATE(197), - [sym_link_text] = STATE(682), - [sym__comment_with_spaces] = STATE(197), - [sym_span] = STATE(197), - [sym_raw_inline] = STATE(197), - [sym_math] = STATE(197), - [sym_verbatim] = STATE(197), - [sym__todo_highlights] = STATE(197), - [sym_todo] = STATE(197), - [sym_note] = STATE(197), - [sym__symbol_fallback] = STATE(197), - [aux_sym__text] = STATE(134), - [aux_sym__inline_repeat1] = STATE(93), - [anon_sym_LBRACE_] = ACTIONS(313), - [anon_sym__] = ACTIONS(315), - [anon_sym_LBRACE_STAR] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_LBRACE_CARET] = ACTIONS(321), - [anon_sym_CARET] = ACTIONS(321), - [anon_sym_LBRACE_TILDE] = ACTIONS(323), - [anon_sym_TILDE] = ACTIONS(323), - [anon_sym_LBRACE_EQ] = ACTIONS(325), - [anon_sym_LBRACE_PLUS] = ACTIONS(327), - [anon_sym_LBRACE_DASH] = ACTIONS(329), - [anon_sym_BSLASH] = ACTIONS(331), - [sym_quotation_marks] = ACTIONS(333), - [sym_ellipsis] = ACTIONS(333), - [sym_em_dash] = ACTIONS(333), - [sym_en_dash] = ACTIONS(335), - [sym_backslash_escape] = ACTIONS(335), - [anon_sym_LT] = ACTIONS(337), - [sym_symbol] = ACTIONS(333), - [anon_sym_LBRACK_CARET] = ACTIONS(339), - [anon_sym_BANG_LBRACK] = ACTIONS(341), - [anon_sym_LBRACK] = ACTIONS(343), - [anon_sym_LBRACE2] = ACTIONS(335), - [anon_sym_DOLLAR] = ACTIONS(345), - [anon_sym_TODO] = ACTIONS(347), - [anon_sym_WIP] = ACTIONS(347), - [anon_sym_NOTE] = ACTIONS(349), - [anon_sym_INFO] = ACTIONS(349), - [anon_sym_XXX] = ACTIONS(349), - [sym_fixme] = ACTIONS(333), - [sym__whitespace1] = ACTIONS(351), - [sym__newline] = ACTIONS(353), - [aux_sym__text_token1] = ACTIONS(355), - [sym__verbatim_begin] = ACTIONS(357), + [sym__inline] = STATE(995), + [sym__element] = STATE(21), + [sym_emphasis] = STATE(134), + [sym_emphasis_begin] = STATE(1182), + [sym_strong] = STATE(134), + [sym_strong_begin] = STATE(1183), + [sym_superscript] = STATE(134), + [sym_superscript_begin] = STATE(1184), + [sym_subscript] = STATE(134), + [sym_subscript_begin] = STATE(1185), + [sym_highlighted] = STATE(134), + [sym_highlighted_begin] = STATE(1186), + [sym_insert] = STATE(134), + [sym_insert_begin] = STATE(1187), + [sym_delete] = STATE(134), + [sym_delete_begin] = STATE(1188), + [sym_hard_line_break] = STATE(134), + [sym__smart_punctuation] = STATE(134), + [sym_autolink] = STATE(134), + [sym_footnote_reference] = STATE(134), + [sym__image] = STATE(134), + [sym_full_reference_image] = STATE(134), + [sym_collapsed_reference_image] = STATE(134), + [sym_inline_image] = STATE(134), + [sym__image_description] = STATE(677), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(134), + [sym_full_reference_link] = STATE(134), + [sym_collapsed_reference_link] = STATE(134), + [sym_inline_link] = STATE(134), + [sym_link_text] = STATE(675), + [sym_span] = STATE(21), + [sym__bracketed_text] = STATE(660), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(134), + [sym_raw_inline] = STATE(134), + [sym_math] = STATE(134), + [sym_verbatim] = STATE(134), + [sym__todo_highlights] = STATE(134), + [sym_todo] = STATE(134), + [sym_note] = STATE(134), + [sym__symbol_fallback] = STATE(134), + [aux_sym__text] = STATE(127), + [aux_sym__inline_repeat1] = STATE(21), + [anon_sym_LBRACE_] = ACTIONS(189), + [anon_sym__] = ACTIONS(191), + [anon_sym_LBRACE_STAR] = ACTIONS(193), + [anon_sym_STAR] = ACTIONS(195), + [anon_sym_LBRACE_CARET] = ACTIONS(197), + [anon_sym_CARET] = ACTIONS(197), + [anon_sym_LBRACE_TILDE] = ACTIONS(199), + [anon_sym_TILDE] = ACTIONS(199), + [anon_sym_LBRACE_EQ] = ACTIONS(201), + [anon_sym_LBRACE_PLUS] = ACTIONS(203), + [anon_sym_LBRACE_DASH] = ACTIONS(205), + [anon_sym_BSLASH] = ACTIONS(207), + [sym_quotation_marks] = ACTIONS(209), + [sym_ellipsis] = ACTIONS(209), + [sym_em_dash] = ACTIONS(209), + [sym_en_dash] = ACTIONS(211), + [sym_backslash_escape] = ACTIONS(211), + [anon_sym_LT] = ACTIONS(213), + [sym_symbol] = ACTIONS(209), + [anon_sym_LBRACK_CARET] = ACTIONS(215), + [anon_sym_BANG_LBRACK] = ACTIONS(217), + [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_DOLLAR] = ACTIONS(221), + [anon_sym_TODO] = ACTIONS(223), + [anon_sym_WIP] = ACTIONS(223), + [anon_sym_NOTE] = ACTIONS(225), + [anon_sym_INFO] = ACTIONS(225), + [anon_sym_XXX] = ACTIONS(225), + [sym_fixme] = ACTIONS(209), + [sym__whitespace1] = ACTIONS(227), + [sym__newline] = ACTIONS(229), + [aux_sym__text_token1] = ACTIONS(231), + [sym__verbatim_begin] = ACTIONS(233), }, [40] = { - [sym__element] = STATE(40), - [sym_emphasis] = STATE(171), - [sym_emphasis_begin] = STATE(1116), - [sym_strong] = STATE(171), - [sym_strong_begin] = STATE(1117), - [sym_superscript] = STATE(171), - [sym_superscript_begin] = STATE(1118), - [sym_subscript] = STATE(171), - [sym_subscript_begin] = STATE(1119), - [sym_highlighted] = STATE(171), - [sym_highlighted_begin] = STATE(1120), - [sym_insert] = STATE(171), - [sym_insert_begin] = STATE(1121), - [sym_delete] = STATE(171), - [sym_delete_begin] = STATE(1122), - [sym_hard_line_break] = STATE(171), - [sym__smart_punctuation] = STATE(171), - [sym_autolink] = STATE(171), - [sym_footnote_reference] = STATE(171), - [sym__image] = STATE(171), - [sym_full_reference_image] = STATE(171), - [sym_collapsed_reference_image] = STATE(171), - [sym_inline_image] = STATE(171), - [sym__image_description] = STATE(674), - [sym__link] = STATE(171), - [sym_full_reference_link] = STATE(171), - [sym_collapsed_reference_link] = STATE(171), - [sym_inline_link] = STATE(171), - [sym_link_text] = STATE(675), - [sym__comment_with_spaces] = STATE(171), - [sym_span] = STATE(171), - [sym_raw_inline] = STATE(171), - [sym_math] = STATE(171), - [sym_verbatim] = STATE(171), - [sym__todo_highlights] = STATE(171), - [sym_todo] = STATE(171), - [sym_note] = STATE(171), - [sym__symbol_fallback] = STATE(171), - [aux_sym__text] = STATE(146), - [aux_sym__inline_repeat1] = STATE(40), - [anon_sym_LBRACE_] = ACTIONS(501), - [anon_sym__] = ACTIONS(504), - [anon_sym_LBRACE_STAR] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(510), - [anon_sym_LBRACE_CARET] = ACTIONS(513), - [anon_sym_CARET] = ACTIONS(513), - [anon_sym_LBRACE_TILDE] = ACTIONS(516), - [anon_sym_TILDE] = ACTIONS(516), - [anon_sym_LBRACE_EQ] = ACTIONS(519), - [anon_sym_LBRACE_PLUS] = ACTIONS(522), - [anon_sym_LBRACE_DASH] = ACTIONS(525), - [anon_sym_BSLASH] = ACTIONS(528), - [sym_quotation_marks] = ACTIONS(531), - [sym_ellipsis] = ACTIONS(531), - [sym_em_dash] = ACTIONS(531), - [sym_en_dash] = ACTIONS(534), - [sym_backslash_escape] = ACTIONS(534), - [anon_sym_LT] = ACTIONS(537), - [sym_symbol] = ACTIONS(531), - [anon_sym_LBRACK_CARET] = ACTIONS(540), - [anon_sym_BANG_LBRACK] = ACTIONS(543), - [anon_sym_LBRACK] = ACTIONS(546), - [anon_sym_RBRACK2] = ACTIONS(549), - [anon_sym_LBRACE2] = ACTIONS(534), - [anon_sym_DOLLAR] = ACTIONS(551), - [anon_sym_TODO] = ACTIONS(554), - [anon_sym_WIP] = ACTIONS(554), - [anon_sym_NOTE] = ACTIONS(557), - [anon_sym_INFO] = ACTIONS(557), - [anon_sym_XXX] = ACTIONS(557), - [sym_fixme] = ACTIONS(531), - [sym__whitespace1] = ACTIONS(560), - [sym__newline] = ACTIONS(563), - [aux_sym__text_token1] = ACTIONS(566), - [sym__verbatim_begin] = ACTIONS(569), + [sym__inline] = STATE(871), + [sym__element] = STATE(65), + [sym_emphasis] = STATE(133), + [sym_emphasis_begin] = STATE(1189), + [sym_strong] = STATE(133), + [sym_strong_begin] = STATE(1190), + [sym_superscript] = STATE(133), + [sym_superscript_begin] = STATE(1191), + [sym_subscript] = STATE(133), + [sym_subscript_begin] = STATE(1192), + [sym_highlighted] = STATE(133), + [sym_highlighted_begin] = STATE(1193), + [sym_insert] = STATE(133), + [sym_insert_begin] = STATE(1194), + [sym_delete] = STATE(133), + [sym_delete_begin] = STATE(1195), + [sym_hard_line_break] = STATE(133), + [sym__smart_punctuation] = STATE(133), + [sym_autolink] = STATE(133), + [sym_footnote_reference] = STATE(133), + [sym__image] = STATE(133), + [sym_full_reference_image] = STATE(133), + [sym_collapsed_reference_image] = STATE(133), + [sym_inline_image] = STATE(133), + [sym__image_description] = STATE(670), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(133), + [sym_full_reference_link] = STATE(133), + [sym_collapsed_reference_link] = STATE(133), + [sym_inline_link] = STATE(133), + [sym_link_text] = STATE(663), + [sym_span] = STATE(65), + [sym__bracketed_text] = STATE(662), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(133), + [sym_raw_inline] = STATE(133), + [sym_math] = STATE(133), + [sym_verbatim] = STATE(133), + [sym__todo_highlights] = STATE(133), + [sym_todo] = STATE(133), + [sym_note] = STATE(133), + [sym__symbol_fallback] = STATE(133), + [aux_sym__text] = STATE(123), + [aux_sym__inline_repeat1] = STATE(65), + [anon_sym_LBRACE_] = ACTIONS(143), + [anon_sym__] = ACTIONS(145), + [anon_sym_LBRACE_STAR] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(149), + [anon_sym_LBRACE_CARET] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(151), + [anon_sym_LBRACE_TILDE] = ACTIONS(153), + [anon_sym_TILDE] = ACTIONS(153), + [anon_sym_LBRACE_EQ] = ACTIONS(155), + [anon_sym_LBRACE_PLUS] = ACTIONS(157), + [anon_sym_LBRACE_DASH] = ACTIONS(159), + [anon_sym_BSLASH] = ACTIONS(161), + [sym_quotation_marks] = ACTIONS(163), + [sym_ellipsis] = ACTIONS(163), + [sym_em_dash] = ACTIONS(163), + [sym_en_dash] = ACTIONS(165), + [sym_backslash_escape] = ACTIONS(165), + [anon_sym_LT] = ACTIONS(167), + [sym_symbol] = ACTIONS(163), + [anon_sym_LBRACK_CARET] = ACTIONS(169), + [anon_sym_BANG_LBRACK] = ACTIONS(171), + [anon_sym_LBRACK] = ACTIONS(173), + [anon_sym_DOLLAR] = ACTIONS(175), + [anon_sym_TODO] = ACTIONS(177), + [anon_sym_WIP] = ACTIONS(177), + [anon_sym_NOTE] = ACTIONS(179), + [anon_sym_INFO] = ACTIONS(179), + [anon_sym_XXX] = ACTIONS(179), + [sym_fixme] = ACTIONS(163), + [sym__whitespace1] = ACTIONS(181), + [sym__newline] = ACTIONS(183), + [aux_sym__text_token1] = ACTIONS(185), + [sym__verbatim_begin] = ACTIONS(187), }, [41] = { - [sym__inline] = STATE(830), - [sym__element] = STATE(79), - [sym_emphasis] = STATE(161), - [sym_emphasis_begin] = STATE(1081), - [sym_strong] = STATE(161), - [sym_strong_begin] = STATE(1082), - [sym_superscript] = STATE(161), - [sym_superscript_begin] = STATE(1083), - [sym_subscript] = STATE(161), - [sym_subscript_begin] = STATE(1084), - [sym_highlighted] = STATE(161), - [sym_highlighted_begin] = STATE(1085), - [sym_insert] = STATE(161), - [sym_insert_begin] = STATE(1086), - [sym_delete] = STATE(161), - [sym_delete_begin] = STATE(1087), - [sym_hard_line_break] = STATE(161), - [sym__smart_punctuation] = STATE(161), - [sym_autolink] = STATE(161), - [sym_footnote_reference] = STATE(161), - [sym__image] = STATE(161), - [sym_full_reference_image] = STATE(161), - [sym_collapsed_reference_image] = STATE(161), - [sym_inline_image] = STATE(161), - [sym__image_description] = STATE(692), - [sym__link] = STATE(161), - [sym_full_reference_link] = STATE(161), - [sym_collapsed_reference_link] = STATE(161), - [sym_inline_link] = STATE(161), - [sym_link_text] = STATE(687), - [sym__comment_with_spaces] = STATE(161), - [sym_span] = STATE(161), - [sym_raw_inline] = STATE(161), - [sym_math] = STATE(161), - [sym_verbatim] = STATE(161), - [sym__todo_highlights] = STATE(161), - [sym_todo] = STATE(161), - [sym_note] = STATE(161), - [sym__symbol_fallback] = STATE(161), - [aux_sym__text] = STATE(149), - [aux_sym__inline_repeat1] = STATE(79), - [anon_sym_LBRACE_] = ACTIONS(359), - [anon_sym__] = ACTIONS(361), - [anon_sym_LBRACE_STAR] = ACTIONS(363), - [anon_sym_STAR] = ACTIONS(365), - [anon_sym_LBRACE_CARET] = ACTIONS(367), - [anon_sym_CARET] = ACTIONS(367), - [anon_sym_LBRACE_TILDE] = ACTIONS(369), - [anon_sym_TILDE] = ACTIONS(369), - [anon_sym_LBRACE_EQ] = ACTIONS(371), - [anon_sym_LBRACE_PLUS] = ACTIONS(373), - [anon_sym_LBRACE_DASH] = ACTIONS(375), - [anon_sym_BSLASH] = ACTIONS(377), - [sym_quotation_marks] = ACTIONS(379), - [sym_ellipsis] = ACTIONS(379), - [sym_em_dash] = ACTIONS(379), - [sym_en_dash] = ACTIONS(381), - [sym_backslash_escape] = ACTIONS(381), - [anon_sym_LT] = ACTIONS(383), - [sym_symbol] = ACTIONS(379), - [anon_sym_LBRACK_CARET] = ACTIONS(385), - [anon_sym_BANG_LBRACK] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(389), - [anon_sym_LBRACE2] = ACTIONS(381), - [anon_sym_DOLLAR] = ACTIONS(391), - [anon_sym_TODO] = ACTIONS(393), - [anon_sym_WIP] = ACTIONS(393), - [anon_sym_NOTE] = ACTIONS(395), - [anon_sym_INFO] = ACTIONS(395), - [anon_sym_XXX] = ACTIONS(395), - [sym_fixme] = ACTIONS(379), - [sym__whitespace1] = ACTIONS(397), - [sym__newline] = ACTIONS(399), - [aux_sym__text_token1] = ACTIONS(401), - [sym__verbatim_begin] = ACTIONS(403), + [sym__inline] = STATE(870), + [sym__element] = STATE(21), + [sym_emphasis] = STATE(134), + [sym_emphasis_begin] = STATE(1182), + [sym_strong] = STATE(134), + [sym_strong_begin] = STATE(1183), + [sym_superscript] = STATE(134), + [sym_superscript_begin] = STATE(1184), + [sym_subscript] = STATE(134), + [sym_subscript_begin] = STATE(1185), + [sym_highlighted] = STATE(134), + [sym_highlighted_begin] = STATE(1186), + [sym_insert] = STATE(134), + [sym_insert_begin] = STATE(1187), + [sym_delete] = STATE(134), + [sym_delete_begin] = STATE(1188), + [sym_hard_line_break] = STATE(134), + [sym__smart_punctuation] = STATE(134), + [sym_autolink] = STATE(134), + [sym_footnote_reference] = STATE(134), + [sym__image] = STATE(134), + [sym_full_reference_image] = STATE(134), + [sym_collapsed_reference_image] = STATE(134), + [sym_inline_image] = STATE(134), + [sym__image_description] = STATE(677), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(134), + [sym_full_reference_link] = STATE(134), + [sym_collapsed_reference_link] = STATE(134), + [sym_inline_link] = STATE(134), + [sym_link_text] = STATE(675), + [sym_span] = STATE(21), + [sym__bracketed_text] = STATE(660), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(134), + [sym_raw_inline] = STATE(134), + [sym_math] = STATE(134), + [sym_verbatim] = STATE(134), + [sym__todo_highlights] = STATE(134), + [sym_todo] = STATE(134), + [sym_note] = STATE(134), + [sym__symbol_fallback] = STATE(134), + [aux_sym__text] = STATE(127), + [aux_sym__inline_repeat1] = STATE(21), + [anon_sym_LBRACE_] = ACTIONS(189), + [anon_sym__] = ACTIONS(191), + [anon_sym_LBRACE_STAR] = ACTIONS(193), + [anon_sym_STAR] = ACTIONS(195), + [anon_sym_LBRACE_CARET] = ACTIONS(197), + [anon_sym_CARET] = ACTIONS(197), + [anon_sym_LBRACE_TILDE] = ACTIONS(199), + [anon_sym_TILDE] = ACTIONS(199), + [anon_sym_LBRACE_EQ] = ACTIONS(201), + [anon_sym_LBRACE_PLUS] = ACTIONS(203), + [anon_sym_LBRACE_DASH] = ACTIONS(205), + [anon_sym_BSLASH] = ACTIONS(207), + [sym_quotation_marks] = ACTIONS(209), + [sym_ellipsis] = ACTIONS(209), + [sym_em_dash] = ACTIONS(209), + [sym_en_dash] = ACTIONS(211), + [sym_backslash_escape] = ACTIONS(211), + [anon_sym_LT] = ACTIONS(213), + [sym_symbol] = ACTIONS(209), + [anon_sym_LBRACK_CARET] = ACTIONS(215), + [anon_sym_BANG_LBRACK] = ACTIONS(217), + [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_DOLLAR] = ACTIONS(221), + [anon_sym_TODO] = ACTIONS(223), + [anon_sym_WIP] = ACTIONS(223), + [anon_sym_NOTE] = ACTIONS(225), + [anon_sym_INFO] = ACTIONS(225), + [anon_sym_XXX] = ACTIONS(225), + [sym_fixme] = ACTIONS(209), + [sym__whitespace1] = ACTIONS(227), + [sym__newline] = ACTIONS(229), + [aux_sym__text_token1] = ACTIONS(231), + [sym__verbatim_begin] = ACTIONS(233), }, [42] = { - [sym__inline_without_trailing_space] = STATE(829), - [sym__element] = STATE(572), - [sym_emphasis] = STATE(208), - [sym_emphasis_begin] = STATE(1074), - [sym_strong] = STATE(208), - [sym_strong_begin] = STATE(1075), - [sym_superscript] = STATE(208), - [sym_superscript_begin] = STATE(1076), - [sym_subscript] = STATE(208), - [sym_subscript_begin] = STATE(1077), - [sym_highlighted] = STATE(208), - [sym_highlighted_begin] = STATE(1078), - [sym_insert] = STATE(208), - [sym_insert_begin] = STATE(1079), - [sym_delete] = STATE(208), - [sym_delete_begin] = STATE(1080), - [sym_hard_line_break] = STATE(208), - [sym__smart_punctuation] = STATE(208), - [sym_autolink] = STATE(208), - [sym_footnote_reference] = STATE(208), - [sym__image] = STATE(208), - [sym_full_reference_image] = STATE(208), - [sym_collapsed_reference_image] = STATE(208), - [sym_inline_image] = STATE(208), - [sym__image_description] = STATE(680), - [sym__link] = STATE(208), - [sym_full_reference_link] = STATE(208), - [sym_collapsed_reference_link] = STATE(208), - [sym_inline_link] = STATE(208), + [sym__inline] = STATE(986), + [sym__element] = STATE(65), + [sym_emphasis] = STATE(133), + [sym_emphasis_begin] = STATE(1189), + [sym_strong] = STATE(133), + [sym_strong_begin] = STATE(1190), + [sym_superscript] = STATE(133), + [sym_superscript_begin] = STATE(1191), + [sym_subscript] = STATE(133), + [sym_subscript_begin] = STATE(1192), + [sym_highlighted] = STATE(133), + [sym_highlighted_begin] = STATE(1193), + [sym_insert] = STATE(133), + [sym_insert_begin] = STATE(1194), + [sym_delete] = STATE(133), + [sym_delete_begin] = STATE(1195), + [sym_hard_line_break] = STATE(133), + [sym__smart_punctuation] = STATE(133), + [sym_autolink] = STATE(133), + [sym_footnote_reference] = STATE(133), + [sym__image] = STATE(133), + [sym_full_reference_image] = STATE(133), + [sym_collapsed_reference_image] = STATE(133), + [sym_inline_image] = STATE(133), + [sym__image_description] = STATE(670), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(133), + [sym_full_reference_link] = STATE(133), + [sym_collapsed_reference_link] = STATE(133), + [sym_inline_link] = STATE(133), [sym_link_text] = STATE(663), - [sym__comment_with_spaces] = STATE(208), - [sym_span] = STATE(208), - [sym_raw_inline] = STATE(208), - [sym_math] = STATE(208), - [sym_verbatim] = STATE(208), - [sym__todo_highlights] = STATE(208), - [sym_todo] = STATE(208), - [sym_note] = STATE(208), - [sym__symbol_fallback] = STATE(208), - [aux_sym__text] = STATE(131), - [aux_sym__inline_repeat1] = STATE(130), - [anon_sym_LBRACE_] = ACTIONS(175), - [anon_sym__] = ACTIONS(177), - [anon_sym_LBRACE_STAR] = ACTIONS(179), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_LBRACE_CARET] = ACTIONS(183), - [anon_sym_CARET] = ACTIONS(183), - [anon_sym_LBRACE_TILDE] = ACTIONS(185), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_LBRACE_EQ] = ACTIONS(187), - [anon_sym_LBRACE_PLUS] = ACTIONS(189), - [anon_sym_LBRACE_DASH] = ACTIONS(191), - [anon_sym_BSLASH] = ACTIONS(193), - [sym_quotation_marks] = ACTIONS(195), - [sym_ellipsis] = ACTIONS(195), - [sym_em_dash] = ACTIONS(195), - [sym_en_dash] = ACTIONS(197), - [sym_backslash_escape] = ACTIONS(197), - [anon_sym_LT] = ACTIONS(199), - [sym_symbol] = ACTIONS(195), - [anon_sym_LBRACK_CARET] = ACTIONS(201), - [anon_sym_BANG_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE2] = ACTIONS(197), - [anon_sym_DOLLAR] = ACTIONS(207), - [anon_sym_TODO] = ACTIONS(209), - [anon_sym_WIP] = ACTIONS(209), - [anon_sym_NOTE] = ACTIONS(211), - [anon_sym_INFO] = ACTIONS(211), - [anon_sym_XXX] = ACTIONS(211), - [sym_fixme] = ACTIONS(195), - [sym__whitespace1] = ACTIONS(213), - [sym__newline] = ACTIONS(215), - [aux_sym__text_token1] = ACTIONS(217), - [sym__verbatim_begin] = ACTIONS(219), + [sym_span] = STATE(65), + [sym__bracketed_text] = STATE(662), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(133), + [sym_raw_inline] = STATE(133), + [sym_math] = STATE(133), + [sym_verbatim] = STATE(133), + [sym__todo_highlights] = STATE(133), + [sym_todo] = STATE(133), + [sym_note] = STATE(133), + [sym__symbol_fallback] = STATE(133), + [aux_sym__text] = STATE(123), + [aux_sym__inline_repeat1] = STATE(65), + [anon_sym_LBRACE_] = ACTIONS(143), + [anon_sym__] = ACTIONS(145), + [anon_sym_LBRACE_STAR] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(149), + [anon_sym_LBRACE_CARET] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(151), + [anon_sym_LBRACE_TILDE] = ACTIONS(153), + [anon_sym_TILDE] = ACTIONS(153), + [anon_sym_LBRACE_EQ] = ACTIONS(155), + [anon_sym_LBRACE_PLUS] = ACTIONS(157), + [anon_sym_LBRACE_DASH] = ACTIONS(159), + [anon_sym_BSLASH] = ACTIONS(161), + [sym_quotation_marks] = ACTIONS(163), + [sym_ellipsis] = ACTIONS(163), + [sym_em_dash] = ACTIONS(163), + [sym_en_dash] = ACTIONS(165), + [sym_backslash_escape] = ACTIONS(165), + [anon_sym_LT] = ACTIONS(167), + [sym_symbol] = ACTIONS(163), + [anon_sym_LBRACK_CARET] = ACTIONS(169), + [anon_sym_BANG_LBRACK] = ACTIONS(171), + [anon_sym_LBRACK] = ACTIONS(173), + [anon_sym_DOLLAR] = ACTIONS(175), + [anon_sym_TODO] = ACTIONS(177), + [anon_sym_WIP] = ACTIONS(177), + [anon_sym_NOTE] = ACTIONS(179), + [anon_sym_INFO] = ACTIONS(179), + [anon_sym_XXX] = ACTIONS(179), + [sym_fixme] = ACTIONS(163), + [sym__whitespace1] = ACTIONS(181), + [sym__newline] = ACTIONS(183), + [aux_sym__text_token1] = ACTIONS(185), + [sym__verbatim_begin] = ACTIONS(187), }, [43] = { - [sym__inline] = STATE(893), - [sym__element] = STATE(111), - [sym_emphasis] = STATE(186), - [sym_emphasis_begin] = STATE(1102), - [sym_strong] = STATE(186), - [sym_strong_begin] = STATE(1103), - [sym_superscript] = STATE(186), - [sym_superscript_begin] = STATE(1104), - [sym_subscript] = STATE(186), - [sym_subscript_begin] = STATE(1105), - [sym_highlighted] = STATE(186), - [sym_highlighted_begin] = STATE(1106), - [sym_insert] = STATE(186), - [sym_insert_begin] = STATE(1107), - [sym_delete] = STATE(186), - [sym_delete_begin] = STATE(1108), - [sym_hard_line_break] = STATE(186), - [sym__smart_punctuation] = STATE(186), - [sym_autolink] = STATE(186), - [sym_footnote_reference] = STATE(186), - [sym__image] = STATE(186), - [sym_full_reference_image] = STATE(186), - [sym_collapsed_reference_image] = STATE(186), - [sym_inline_image] = STATE(186), - [sym__image_description] = STATE(673), - [sym__link] = STATE(186), - [sym_full_reference_link] = STATE(186), - [sym_collapsed_reference_link] = STATE(186), - [sym_inline_link] = STATE(186), - [sym_link_text] = STATE(672), - [sym__comment_with_spaces] = STATE(186), - [sym_span] = STATE(186), - [sym_raw_inline] = STATE(186), - [sym_math] = STATE(186), - [sym_verbatim] = STATE(186), - [sym__todo_highlights] = STATE(186), - [sym_todo] = STATE(186), - [sym_note] = STATE(186), - [sym__symbol_fallback] = STATE(186), - [aux_sym__text] = STATE(155), - [aux_sym__inline_repeat1] = STATE(111), - [anon_sym_LBRACE_] = ACTIONS(267), - [anon_sym__] = ACTIONS(269), - [anon_sym_LBRACE_STAR] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_LBRACE_CARET] = ACTIONS(275), - [anon_sym_CARET] = ACTIONS(275), - [anon_sym_LBRACE_TILDE] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(277), - [anon_sym_LBRACE_EQ] = ACTIONS(279), - [anon_sym_LBRACE_PLUS] = ACTIONS(281), - [anon_sym_LBRACE_DASH] = ACTIONS(283), - [anon_sym_BSLASH] = ACTIONS(285), - [sym_quotation_marks] = ACTIONS(287), - [sym_ellipsis] = ACTIONS(287), - [sym_em_dash] = ACTIONS(287), - [sym_en_dash] = ACTIONS(289), - [sym_backslash_escape] = ACTIONS(289), - [anon_sym_LT] = ACTIONS(291), - [sym_symbol] = ACTIONS(287), - [anon_sym_LBRACK_CARET] = ACTIONS(293), - [anon_sym_BANG_LBRACK] = ACTIONS(295), - [anon_sym_LBRACK] = ACTIONS(297), - [anon_sym_LBRACE2] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(299), - [anon_sym_TODO] = ACTIONS(301), - [anon_sym_WIP] = ACTIONS(301), - [anon_sym_NOTE] = ACTIONS(303), - [anon_sym_INFO] = ACTIONS(303), - [anon_sym_XXX] = ACTIONS(303), - [sym_fixme] = ACTIONS(287), - [sym__whitespace1] = ACTIONS(305), - [sym__newline] = ACTIONS(307), - [aux_sym__text_token1] = ACTIONS(309), - [sym__verbatim_begin] = ACTIONS(311), + [sym__inline] = STATE(869), + [sym__element] = STATE(103), + [sym_emphasis] = STATE(139), + [sym_emphasis_begin] = STATE(1175), + [sym_strong] = STATE(139), + [sym_strong_begin] = STATE(1176), + [sym_superscript] = STATE(139), + [sym_superscript_begin] = STATE(1177), + [sym_subscript] = STATE(139), + [sym_subscript_begin] = STATE(1178), + [sym_highlighted] = STATE(139), + [sym_highlighted_begin] = STATE(1179), + [sym_insert] = STATE(139), + [sym_insert_begin] = STATE(1180), + [sym_delete] = STATE(139), + [sym_delete_begin] = STATE(1181), + [sym_hard_line_break] = STATE(139), + [sym__smart_punctuation] = STATE(139), + [sym_autolink] = STATE(139), + [sym_footnote_reference] = STATE(139), + [sym__image] = STATE(139), + [sym_full_reference_image] = STATE(139), + [sym_collapsed_reference_image] = STATE(139), + [sym_inline_image] = STATE(139), + [sym__image_description] = STATE(682), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(139), + [sym_full_reference_link] = STATE(139), + [sym_collapsed_reference_link] = STATE(139), + [sym_inline_link] = STATE(139), + [sym_link_text] = STATE(681), + [sym_span] = STATE(103), + [sym__bracketed_text] = STATE(656), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(139), + [sym_raw_inline] = STATE(139), + [sym_math] = STATE(139), + [sym_verbatim] = STATE(139), + [sym__todo_highlights] = STATE(139), + [sym_todo] = STATE(139), + [sym_note] = STATE(139), + [sym__symbol_fallback] = STATE(139), + [aux_sym__text] = STATE(129), + [aux_sym__inline_repeat1] = STATE(103), + [anon_sym_LBRACE_] = ACTIONS(235), + [anon_sym__] = ACTIONS(237), + [anon_sym_LBRACE_STAR] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(241), + [anon_sym_LBRACE_CARET] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(243), + [anon_sym_LBRACE_TILDE] = ACTIONS(245), + [anon_sym_TILDE] = ACTIONS(245), + [anon_sym_LBRACE_EQ] = ACTIONS(247), + [anon_sym_LBRACE_PLUS] = ACTIONS(249), + [anon_sym_LBRACE_DASH] = ACTIONS(251), + [anon_sym_BSLASH] = ACTIONS(253), + [sym_quotation_marks] = ACTIONS(255), + [sym_ellipsis] = ACTIONS(255), + [sym_em_dash] = ACTIONS(255), + [sym_en_dash] = ACTIONS(257), + [sym_backslash_escape] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(259), + [sym_symbol] = ACTIONS(255), + [anon_sym_LBRACK_CARET] = ACTIONS(261), + [anon_sym_BANG_LBRACK] = ACTIONS(263), + [anon_sym_LBRACK] = ACTIONS(265), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_TODO] = ACTIONS(269), + [anon_sym_WIP] = ACTIONS(269), + [anon_sym_NOTE] = ACTIONS(271), + [anon_sym_INFO] = ACTIONS(271), + [anon_sym_XXX] = ACTIONS(271), + [sym_fixme] = ACTIONS(255), + [sym__whitespace1] = ACTIONS(273), + [sym__newline] = ACTIONS(275), + [aux_sym__text_token1] = ACTIONS(277), + [sym__verbatim_begin] = ACTIONS(279), }, [44] = { - [sym__inline_without_trailing_space] = STATE(828), - [sym__element] = STATE(603), - [sym_emphasis] = STATE(177), - [sym_emphasis_begin] = STATE(1067), - [sym_strong] = STATE(177), - [sym_strong_begin] = STATE(1068), - [sym_superscript] = STATE(177), - [sym_superscript_begin] = STATE(1069), - [sym_subscript] = STATE(177), - [sym_subscript_begin] = STATE(1070), - [sym_highlighted] = STATE(177), - [sym_highlighted_begin] = STATE(1071), - [sym_insert] = STATE(177), - [sym_insert_begin] = STATE(1072), - [sym_delete] = STATE(177), - [sym_delete_begin] = STATE(1073), - [sym_hard_line_break] = STATE(177), - [sym__smart_punctuation] = STATE(177), - [sym_autolink] = STATE(177), - [sym_footnote_reference] = STATE(177), - [sym__image] = STATE(177), - [sym_full_reference_image] = STATE(177), - [sym_collapsed_reference_image] = STATE(177), - [sym_inline_image] = STATE(177), - [sym__image_description] = STATE(681), - [sym__link] = STATE(177), - [sym_full_reference_link] = STATE(177), - [sym_collapsed_reference_link] = STATE(177), - [sym_inline_link] = STATE(177), - [sym_link_text] = STATE(668), - [sym__comment_with_spaces] = STATE(177), - [sym_span] = STATE(177), - [sym_raw_inline] = STATE(177), - [sym_math] = STATE(177), - [sym_verbatim] = STATE(177), - [sym__todo_highlights] = STATE(177), - [sym_todo] = STATE(177), - [sym_note] = STATE(177), - [sym__symbol_fallback] = STATE(177), - [aux_sym__text] = STATE(132), - [aux_sym__inline_repeat1] = STATE(128), - [anon_sym_LBRACE_] = ACTIONS(405), - [anon_sym__] = ACTIONS(407), - [anon_sym_LBRACE_STAR] = ACTIONS(409), - [anon_sym_STAR] = ACTIONS(411), - [anon_sym_LBRACE_CARET] = ACTIONS(413), - [anon_sym_CARET] = ACTIONS(413), - [anon_sym_LBRACE_TILDE] = ACTIONS(415), - [anon_sym_TILDE] = ACTIONS(415), - [anon_sym_LBRACE_EQ] = ACTIONS(417), - [anon_sym_LBRACE_PLUS] = ACTIONS(419), - [anon_sym_LBRACE_DASH] = ACTIONS(421), - [anon_sym_BSLASH] = ACTIONS(423), - [sym_quotation_marks] = ACTIONS(425), - [sym_ellipsis] = ACTIONS(425), - [sym_em_dash] = ACTIONS(425), - [sym_en_dash] = ACTIONS(427), - [sym_backslash_escape] = ACTIONS(427), - [anon_sym_LT] = ACTIONS(429), - [sym_symbol] = ACTIONS(425), - [anon_sym_LBRACK_CARET] = ACTIONS(431), - [anon_sym_BANG_LBRACK] = ACTIONS(433), - [anon_sym_LBRACK] = ACTIONS(435), - [anon_sym_LBRACE2] = ACTIONS(427), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_TODO] = ACTIONS(439), - [anon_sym_WIP] = ACTIONS(439), - [anon_sym_NOTE] = ACTIONS(441), - [anon_sym_INFO] = ACTIONS(441), - [anon_sym_XXX] = ACTIONS(441), - [sym_fixme] = ACTIONS(425), - [sym__whitespace1] = ACTIONS(443), - [sym__newline] = ACTIONS(445), - [aux_sym__text_token1] = ACTIONS(447), - [sym__verbatim_begin] = ACTIONS(449), + [sym__inline_without_trailing_space] = STATE(886), + [sym__element] = STATE(604), + [sym_emphasis] = STATE(138), + [sym_emphasis_begin] = STATE(1140), + [sym_strong] = STATE(138), + [sym_strong_begin] = STATE(1141), + [sym_superscript] = STATE(138), + [sym_superscript_begin] = STATE(1142), + [sym_subscript] = STATE(138), + [sym_subscript_begin] = STATE(1143), + [sym_highlighted] = STATE(138), + [sym_highlighted_begin] = STATE(1144), + [sym_insert] = STATE(138), + [sym_insert_begin] = STATE(1145), + [sym_delete] = STATE(138), + [sym_delete_begin] = STATE(1146), + [sym_hard_line_break] = STATE(138), + [sym__smart_punctuation] = STATE(138), + [sym_autolink] = STATE(138), + [sym_footnote_reference] = STATE(138), + [sym__image] = STATE(138), + [sym_full_reference_image] = STATE(138), + [sym_collapsed_reference_image] = STATE(138), + [sym_inline_image] = STATE(138), + [sym__image_description] = STATE(667), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(138), + [sym_full_reference_link] = STATE(138), + [sym_collapsed_reference_link] = STATE(138), + [sym_inline_link] = STATE(138), + [sym_link_text] = STATE(689), + [sym_span] = STATE(604), + [sym__bracketed_text] = STATE(658), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(138), + [sym_raw_inline] = STATE(138), + [sym_math] = STATE(138), + [sym_verbatim] = STATE(138), + [sym__todo_highlights] = STATE(138), + [sym_todo] = STATE(138), + [sym_note] = STATE(138), + [sym__symbol_fallback] = STATE(138), + [aux_sym__text] = STATE(124), + [aux_sym__inline_repeat1] = STATE(118), + [anon_sym_LBRACE_] = ACTIONS(419), + [anon_sym__] = ACTIONS(421), + [anon_sym_LBRACE_STAR] = ACTIONS(423), + [anon_sym_STAR] = ACTIONS(425), + [anon_sym_LBRACE_CARET] = ACTIONS(427), + [anon_sym_CARET] = ACTIONS(427), + [anon_sym_LBRACE_TILDE] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_LBRACE_EQ] = ACTIONS(431), + [anon_sym_LBRACE_PLUS] = ACTIONS(433), + [anon_sym_LBRACE_DASH] = ACTIONS(435), + [anon_sym_BSLASH] = ACTIONS(437), + [sym_quotation_marks] = ACTIONS(439), + [sym_ellipsis] = ACTIONS(439), + [sym_em_dash] = ACTIONS(439), + [sym_en_dash] = ACTIONS(441), + [sym_backslash_escape] = ACTIONS(441), + [anon_sym_LT] = ACTIONS(443), + [sym_symbol] = ACTIONS(439), + [anon_sym_LBRACK_CARET] = ACTIONS(445), + [anon_sym_BANG_LBRACK] = ACTIONS(447), + [anon_sym_LBRACK] = ACTIONS(449), + [anon_sym_DOLLAR] = ACTIONS(451), + [anon_sym_TODO] = ACTIONS(453), + [anon_sym_WIP] = ACTIONS(453), + [anon_sym_NOTE] = ACTIONS(455), + [anon_sym_INFO] = ACTIONS(455), + [anon_sym_XXX] = ACTIONS(455), + [sym_fixme] = ACTIONS(439), + [sym__whitespace1] = ACTIONS(457), + [sym__newline] = ACTIONS(459), + [aux_sym__text_token1] = ACTIONS(461), + [sym__verbatim_begin] = ACTIONS(463), }, [45] = { - [sym__inline] = STATE(819), - [sym__element] = STATE(66), - [sym_emphasis] = STATE(171), - [sym_emphasis_begin] = STATE(1116), - [sym_strong] = STATE(171), - [sym_strong_begin] = STATE(1117), - [sym_superscript] = STATE(171), - [sym_superscript_begin] = STATE(1118), - [sym_subscript] = STATE(171), - [sym_subscript_begin] = STATE(1119), - [sym_highlighted] = STATE(171), - [sym_highlighted_begin] = STATE(1120), - [sym_insert] = STATE(171), - [sym_insert_begin] = STATE(1121), - [sym_delete] = STATE(171), - [sym_delete_begin] = STATE(1122), - [sym_hard_line_break] = STATE(171), - [sym__smart_punctuation] = STATE(171), - [sym_autolink] = STATE(171), - [sym_footnote_reference] = STATE(171), - [sym__image] = STATE(171), - [sym_full_reference_image] = STATE(171), - [sym_collapsed_reference_image] = STATE(171), - [sym_inline_image] = STATE(171), + [sym__inline] = STATE(868), + [sym__element] = STATE(13), + [sym_emphasis] = STATE(141), + [sym_emphasis_begin] = STATE(1168), + [sym_strong] = STATE(141), + [sym_strong_begin] = STATE(1169), + [sym_superscript] = STATE(141), + [sym_superscript_begin] = STATE(1170), + [sym_subscript] = STATE(141), + [sym_subscript_begin] = STATE(1171), + [sym_highlighted] = STATE(141), + [sym_highlighted_begin] = STATE(1172), + [sym_insert] = STATE(141), + [sym_insert_begin] = STATE(1173), + [sym_delete] = STATE(141), + [sym_delete_begin] = STATE(1174), + [sym_hard_line_break] = STATE(141), + [sym__smart_punctuation] = STATE(141), + [sym_autolink] = STATE(141), + [sym_footnote_reference] = STATE(141), + [sym__image] = STATE(141), + [sym_full_reference_image] = STATE(141), + [sym_collapsed_reference_image] = STATE(141), + [sym_inline_image] = STATE(141), [sym__image_description] = STATE(674), - [sym__link] = STATE(171), - [sym_full_reference_link] = STATE(171), - [sym_collapsed_reference_link] = STATE(171), - [sym_inline_link] = STATE(171), - [sym_link_text] = STATE(675), - [sym__comment_with_spaces] = STATE(171), - [sym_span] = STATE(171), - [sym_raw_inline] = STATE(171), - [sym_math] = STATE(171), - [sym_verbatim] = STATE(171), - [sym__todo_highlights] = STATE(171), - [sym_todo] = STATE(171), - [sym_note] = STATE(171), - [sym__symbol_fallback] = STATE(171), - [aux_sym__text] = STATE(146), - [aux_sym__inline_repeat1] = STATE(66), - [anon_sym_LBRACE_] = ACTIONS(451), - [anon_sym__] = ACTIONS(453), - [anon_sym_LBRACE_STAR] = ACTIONS(455), - [anon_sym_STAR] = ACTIONS(457), - [anon_sym_LBRACE_CARET] = ACTIONS(459), - [anon_sym_CARET] = ACTIONS(459), - [anon_sym_LBRACE_TILDE] = ACTIONS(461), - [anon_sym_TILDE] = ACTIONS(461), - [anon_sym_LBRACE_EQ] = ACTIONS(463), - [anon_sym_LBRACE_PLUS] = ACTIONS(465), - [anon_sym_LBRACE_DASH] = ACTIONS(467), - [anon_sym_BSLASH] = ACTIONS(469), - [sym_quotation_marks] = ACTIONS(471), - [sym_ellipsis] = ACTIONS(471), - [sym_em_dash] = ACTIONS(471), - [sym_en_dash] = ACTIONS(473), - [sym_backslash_escape] = ACTIONS(473), - [anon_sym_LT] = ACTIONS(475), - [sym_symbol] = ACTIONS(471), - [anon_sym_LBRACK_CARET] = ACTIONS(477), - [anon_sym_BANG_LBRACK] = ACTIONS(479), - [anon_sym_LBRACK] = ACTIONS(481), - [anon_sym_LBRACE2] = ACTIONS(473), - [anon_sym_DOLLAR] = ACTIONS(483), - [anon_sym_TODO] = ACTIONS(485), - [anon_sym_WIP] = ACTIONS(485), - [anon_sym_NOTE] = ACTIONS(487), - [anon_sym_INFO] = ACTIONS(487), - [anon_sym_XXX] = ACTIONS(487), - [sym_fixme] = ACTIONS(471), - [sym__whitespace1] = ACTIONS(489), - [sym__newline] = ACTIONS(491), - [aux_sym__text_token1] = ACTIONS(493), - [sym__verbatim_begin] = ACTIONS(495), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(141), + [sym_full_reference_link] = STATE(141), + [sym_collapsed_reference_link] = STATE(141), + [sym_inline_link] = STATE(141), + [sym_link_text] = STATE(672), + [sym_span] = STATE(13), + [sym__bracketed_text] = STATE(655), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(141), + [sym_raw_inline] = STATE(141), + [sym_math] = STATE(141), + [sym_verbatim] = STATE(141), + [sym__todo_highlights] = STATE(141), + [sym_todo] = STATE(141), + [sym_note] = STATE(141), + [sym__symbol_fallback] = STATE(141), + [aux_sym__text] = STATE(128), + [aux_sym__inline_repeat1] = STATE(13), + [anon_sym_LBRACE_] = ACTIONS(281), + [anon_sym__] = ACTIONS(283), + [anon_sym_LBRACE_STAR] = ACTIONS(285), + [anon_sym_STAR] = ACTIONS(287), + [anon_sym_LBRACE_CARET] = ACTIONS(289), + [anon_sym_CARET] = ACTIONS(289), + [anon_sym_LBRACE_TILDE] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(291), + [anon_sym_LBRACE_EQ] = ACTIONS(293), + [anon_sym_LBRACE_PLUS] = ACTIONS(295), + [anon_sym_LBRACE_DASH] = ACTIONS(297), + [anon_sym_BSLASH] = ACTIONS(299), + [sym_quotation_marks] = ACTIONS(301), + [sym_ellipsis] = ACTIONS(301), + [sym_em_dash] = ACTIONS(301), + [sym_en_dash] = ACTIONS(303), + [sym_backslash_escape] = ACTIONS(303), + [anon_sym_LT] = ACTIONS(305), + [sym_symbol] = ACTIONS(301), + [anon_sym_LBRACK_CARET] = ACTIONS(307), + [anon_sym_BANG_LBRACK] = ACTIONS(309), + [anon_sym_LBRACK] = ACTIONS(311), + [anon_sym_DOLLAR] = ACTIONS(313), + [anon_sym_TODO] = ACTIONS(315), + [anon_sym_WIP] = ACTIONS(315), + [anon_sym_NOTE] = ACTIONS(317), + [anon_sym_INFO] = ACTIONS(317), + [anon_sym_XXX] = ACTIONS(317), + [sym_fixme] = ACTIONS(301), + [sym__whitespace1] = ACTIONS(319), + [sym__newline] = ACTIONS(321), + [aux_sym__text_token1] = ACTIONS(323), + [sym__verbatim_begin] = ACTIONS(325), }, [46] = { - [sym__inline] = STATE(817), - [sym__element] = STATE(103), - [sym_emphasis] = STATE(180), - [sym_emphasis_begin] = STATE(1109), - [sym_strong] = STATE(180), - [sym_strong_begin] = STATE(1110), - [sym_superscript] = STATE(180), - [sym_superscript_begin] = STATE(1111), - [sym_subscript] = STATE(180), - [sym_subscript_begin] = STATE(1112), - [sym_highlighted] = STATE(180), - [sym_highlighted_begin] = STATE(1113), - [sym_insert] = STATE(180), - [sym_insert_begin] = STATE(1114), - [sym_delete] = STATE(180), - [sym_delete_begin] = STATE(1115), - [sym_hard_line_break] = STATE(180), - [sym__smart_punctuation] = STATE(180), - [sym_autolink] = STATE(180), - [sym_footnote_reference] = STATE(180), - [sym__image] = STATE(180), - [sym_full_reference_image] = STATE(180), - [sym_collapsed_reference_image] = STATE(180), - [sym_inline_image] = STATE(180), - [sym__image_description] = STATE(666), - [sym__link] = STATE(180), - [sym_full_reference_link] = STATE(180), - [sym_collapsed_reference_link] = STATE(180), - [sym_inline_link] = STATE(180), - [sym_link_text] = STATE(664), - [sym__comment_with_spaces] = STATE(180), - [sym_span] = STATE(180), - [sym_raw_inline] = STATE(180), - [sym_math] = STATE(180), - [sym_verbatim] = STATE(180), - [sym__todo_highlights] = STATE(180), - [sym_todo] = STATE(180), - [sym_note] = STATE(180), - [sym__symbol_fallback] = STATE(180), - [aux_sym__text] = STATE(159), - [aux_sym__inline_repeat1] = STATE(103), - [anon_sym_LBRACE_] = ACTIONS(221), - [anon_sym__] = ACTIONS(223), - [anon_sym_LBRACE_STAR] = ACTIONS(225), - [anon_sym_STAR] = ACTIONS(227), - [anon_sym_LBRACE_CARET] = ACTIONS(229), - [anon_sym_CARET] = ACTIONS(229), - [anon_sym_LBRACE_TILDE] = ACTIONS(231), - [anon_sym_TILDE] = ACTIONS(231), - [anon_sym_LBRACE_EQ] = ACTIONS(233), - [anon_sym_LBRACE_PLUS] = ACTIONS(235), - [anon_sym_LBRACE_DASH] = ACTIONS(237), - [anon_sym_BSLASH] = ACTIONS(239), - [sym_quotation_marks] = ACTIONS(241), - [sym_ellipsis] = ACTIONS(241), - [sym_em_dash] = ACTIONS(241), - [sym_en_dash] = ACTIONS(243), - [sym_backslash_escape] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(245), - [sym_symbol] = ACTIONS(241), - [anon_sym_LBRACK_CARET] = ACTIONS(247), - [anon_sym_BANG_LBRACK] = ACTIONS(249), - [anon_sym_LBRACK] = ACTIONS(251), - [anon_sym_LBRACE2] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(253), - [anon_sym_TODO] = ACTIONS(255), - [anon_sym_WIP] = ACTIONS(255), - [anon_sym_NOTE] = ACTIONS(257), - [anon_sym_INFO] = ACTIONS(257), - [anon_sym_XXX] = ACTIONS(257), - [sym_fixme] = ACTIONS(241), - [sym__whitespace1] = ACTIONS(259), - [sym__newline] = ACTIONS(261), - [aux_sym__text_token1] = ACTIONS(263), - [sym__verbatim_begin] = ACTIONS(265), + [sym__inline] = STATE(867), + [sym__element] = STATE(70), + [sym_emphasis] = STATE(136), + [sym_emphasis_begin] = STATE(1161), + [sym_strong] = STATE(136), + [sym_strong_begin] = STATE(1162), + [sym_superscript] = STATE(136), + [sym_superscript_begin] = STATE(1163), + [sym_subscript] = STATE(136), + [sym_subscript_begin] = STATE(1164), + [sym_highlighted] = STATE(136), + [sym_highlighted_begin] = STATE(1165), + [sym_insert] = STATE(136), + [sym_insert_begin] = STATE(1166), + [sym_delete] = STATE(136), + [sym_delete_begin] = STATE(1167), + [sym_hard_line_break] = STATE(136), + [sym__smart_punctuation] = STATE(136), + [sym_autolink] = STATE(136), + [sym_footnote_reference] = STATE(136), + [sym__image] = STATE(136), + [sym_full_reference_image] = STATE(136), + [sym_collapsed_reference_image] = STATE(136), + [sym_inline_image] = STATE(136), + [sym__image_description] = STATE(690), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(136), + [sym_full_reference_link] = STATE(136), + [sym_collapsed_reference_link] = STATE(136), + [sym_inline_link] = STATE(136), + [sym_link_text] = STATE(691), + [sym_span] = STATE(70), + [sym__bracketed_text] = STATE(653), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(136), + [sym_raw_inline] = STATE(136), + [sym_math] = STATE(136), + [sym_verbatim] = STATE(136), + [sym__todo_highlights] = STATE(136), + [sym_todo] = STATE(136), + [sym_note] = STATE(136), + [sym__symbol_fallback] = STATE(136), + [aux_sym__text] = STATE(125), + [aux_sym__inline_repeat1] = STATE(70), + [anon_sym_LBRACE_] = ACTIONS(97), + [anon_sym__] = ACTIONS(99), + [anon_sym_LBRACE_STAR] = ACTIONS(101), + [anon_sym_STAR] = ACTIONS(103), + [anon_sym_LBRACE_CARET] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [anon_sym_LBRACE_TILDE] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(107), + [anon_sym_LBRACE_EQ] = ACTIONS(109), + [anon_sym_LBRACE_PLUS] = ACTIONS(111), + [anon_sym_LBRACE_DASH] = ACTIONS(113), + [anon_sym_BSLASH] = ACTIONS(115), + [sym_quotation_marks] = ACTIONS(117), + [sym_ellipsis] = ACTIONS(117), + [sym_em_dash] = ACTIONS(117), + [sym_en_dash] = ACTIONS(119), + [sym_backslash_escape] = ACTIONS(119), + [anon_sym_LT] = ACTIONS(121), + [sym_symbol] = ACTIONS(117), + [anon_sym_LBRACK_CARET] = ACTIONS(123), + [anon_sym_BANG_LBRACK] = ACTIONS(125), + [anon_sym_LBRACK] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_TODO] = ACTIONS(131), + [anon_sym_WIP] = ACTIONS(131), + [anon_sym_NOTE] = ACTIONS(133), + [anon_sym_INFO] = ACTIONS(133), + [anon_sym_XXX] = ACTIONS(133), + [sym_fixme] = ACTIONS(117), + [sym__whitespace1] = ACTIONS(135), + [sym__newline] = ACTIONS(137), + [aux_sym__text_token1] = ACTIONS(139), + [sym__verbatim_begin] = ACTIONS(141), }, [47] = { - [sym__inline] = STATE(816), - [sym__element] = STATE(111), - [sym_emphasis] = STATE(186), - [sym_emphasis_begin] = STATE(1102), - [sym_strong] = STATE(186), - [sym_strong_begin] = STATE(1103), - [sym_superscript] = STATE(186), - [sym_superscript_begin] = STATE(1104), - [sym_subscript] = STATE(186), - [sym_subscript_begin] = STATE(1105), - [sym_highlighted] = STATE(186), - [sym_highlighted_begin] = STATE(1106), - [sym_insert] = STATE(186), - [sym_insert_begin] = STATE(1107), - [sym_delete] = STATE(186), - [sym_delete_begin] = STATE(1108), - [sym_hard_line_break] = STATE(186), - [sym__smart_punctuation] = STATE(186), - [sym_autolink] = STATE(186), - [sym_footnote_reference] = STATE(186), - [sym__image] = STATE(186), - [sym_full_reference_image] = STATE(186), - [sym_collapsed_reference_image] = STATE(186), - [sym_inline_image] = STATE(186), - [sym__image_description] = STATE(673), - [sym__link] = STATE(186), - [sym_full_reference_link] = STATE(186), - [sym_collapsed_reference_link] = STATE(186), - [sym_inline_link] = STATE(186), - [sym_link_text] = STATE(672), - [sym__comment_with_spaces] = STATE(186), - [sym_span] = STATE(186), - [sym_raw_inline] = STATE(186), - [sym_math] = STATE(186), - [sym_verbatim] = STATE(186), - [sym__todo_highlights] = STATE(186), - [sym_todo] = STATE(186), - [sym_note] = STATE(186), - [sym__symbol_fallback] = STATE(186), - [aux_sym__text] = STATE(155), - [aux_sym__inline_repeat1] = STATE(111), - [anon_sym_LBRACE_] = ACTIONS(267), - [anon_sym__] = ACTIONS(269), - [anon_sym_LBRACE_STAR] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_LBRACE_CARET] = ACTIONS(275), - [anon_sym_CARET] = ACTIONS(275), - [anon_sym_LBRACE_TILDE] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(277), - [anon_sym_LBRACE_EQ] = ACTIONS(279), - [anon_sym_LBRACE_PLUS] = ACTIONS(281), - [anon_sym_LBRACE_DASH] = ACTIONS(283), - [anon_sym_BSLASH] = ACTIONS(285), - [sym_quotation_marks] = ACTIONS(287), - [sym_ellipsis] = ACTIONS(287), - [sym_em_dash] = ACTIONS(287), - [sym_en_dash] = ACTIONS(289), - [sym_backslash_escape] = ACTIONS(289), - [anon_sym_LT] = ACTIONS(291), - [sym_symbol] = ACTIONS(287), - [anon_sym_LBRACK_CARET] = ACTIONS(293), - [anon_sym_BANG_LBRACK] = ACTIONS(295), - [anon_sym_LBRACK] = ACTIONS(297), - [anon_sym_LBRACE2] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(299), - [anon_sym_TODO] = ACTIONS(301), - [anon_sym_WIP] = ACTIONS(301), - [anon_sym_NOTE] = ACTIONS(303), - [anon_sym_INFO] = ACTIONS(303), - [anon_sym_XXX] = ACTIONS(303), - [sym_fixme] = ACTIONS(287), - [sym__whitespace1] = ACTIONS(305), - [sym__newline] = ACTIONS(307), - [aux_sym__text_token1] = ACTIONS(309), - [sym__verbatim_begin] = ACTIONS(311), + [sym__inline] = STATE(866), + [sym__element] = STATE(105), + [sym_emphasis] = STATE(140), + [sym_emphasis_begin] = STATE(1154), + [sym_strong] = STATE(140), + [sym_strong_begin] = STATE(1155), + [sym_superscript] = STATE(140), + [sym_superscript_begin] = STATE(1156), + [sym_subscript] = STATE(140), + [sym_subscript_begin] = STATE(1157), + [sym_highlighted] = STATE(140), + [sym_highlighted_begin] = STATE(1158), + [sym_insert] = STATE(140), + [sym_insert_begin] = STATE(1159), + [sym_delete] = STATE(140), + [sym_delete_begin] = STATE(1160), + [sym_hard_line_break] = STATE(140), + [sym__smart_punctuation] = STATE(140), + [sym_autolink] = STATE(140), + [sym_footnote_reference] = STATE(140), + [sym__image] = STATE(140), + [sym_full_reference_image] = STATE(140), + [sym_collapsed_reference_image] = STATE(140), + [sym_inline_image] = STATE(140), + [sym__image_description] = STATE(687), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(140), + [sym_full_reference_link] = STATE(140), + [sym_collapsed_reference_link] = STATE(140), + [sym_inline_link] = STATE(140), + [sym_link_text] = STATE(688), + [sym_span] = STATE(105), + [sym__bracketed_text] = STATE(654), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(140), + [sym_raw_inline] = STATE(140), + [sym_math] = STATE(140), + [sym_verbatim] = STATE(140), + [sym__todo_highlights] = STATE(140), + [sym_todo] = STATE(140), + [sym_note] = STATE(140), + [sym__symbol_fallback] = STATE(140), + [aux_sym__text] = STATE(131), + [aux_sym__inline_repeat1] = STATE(105), + [anon_sym_LBRACE_] = ACTIONS(327), + [anon_sym__] = ACTIONS(329), + [anon_sym_LBRACE_STAR] = ACTIONS(331), + [anon_sym_STAR] = ACTIONS(333), + [anon_sym_LBRACE_CARET] = ACTIONS(335), + [anon_sym_CARET] = ACTIONS(335), + [anon_sym_LBRACE_TILDE] = ACTIONS(337), + [anon_sym_TILDE] = ACTIONS(337), + [anon_sym_LBRACE_EQ] = ACTIONS(339), + [anon_sym_LBRACE_PLUS] = ACTIONS(341), + [anon_sym_LBRACE_DASH] = ACTIONS(343), + [anon_sym_BSLASH] = ACTIONS(345), + [sym_quotation_marks] = ACTIONS(347), + [sym_ellipsis] = ACTIONS(347), + [sym_em_dash] = ACTIONS(347), + [sym_en_dash] = ACTIONS(349), + [sym_backslash_escape] = ACTIONS(349), + [anon_sym_LT] = ACTIONS(351), + [sym_symbol] = ACTIONS(347), + [anon_sym_LBRACK_CARET] = ACTIONS(353), + [anon_sym_BANG_LBRACK] = ACTIONS(355), + [anon_sym_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [anon_sym_TODO] = ACTIONS(361), + [anon_sym_WIP] = ACTIONS(361), + [anon_sym_NOTE] = ACTIONS(363), + [anon_sym_INFO] = ACTIONS(363), + [anon_sym_XXX] = ACTIONS(363), + [sym_fixme] = ACTIONS(347), + [sym__whitespace1] = ACTIONS(365), + [sym__newline] = ACTIONS(367), + [aux_sym__text_token1] = ACTIONS(369), + [sym__verbatim_begin] = ACTIONS(371), }, [48] = { - [sym__inline] = STATE(972), - [sym__element] = STATE(115), - [sym_emphasis] = STATE(192), - [sym_emphasis_begin] = STATE(1095), - [sym_strong] = STATE(192), - [sym_strong_begin] = STATE(1096), - [sym_superscript] = STATE(192), - [sym_superscript_begin] = STATE(1097), - [sym_subscript] = STATE(192), - [sym_subscript_begin] = STATE(1098), - [sym_highlighted] = STATE(192), - [sym_highlighted_begin] = STATE(1099), - [sym_insert] = STATE(192), - [sym_insert_begin] = STATE(1100), - [sym_delete] = STATE(192), - [sym_delete_begin] = STATE(1101), - [sym_hard_line_break] = STATE(192), - [sym__smart_punctuation] = STATE(192), - [sym_autolink] = STATE(192), - [sym_footnote_reference] = STATE(192), - [sym__image] = STATE(192), - [sym_full_reference_image] = STATE(192), - [sym_collapsed_reference_image] = STATE(192), - [sym_inline_image] = STATE(192), - [sym__image_description] = STATE(684), - [sym__link] = STATE(192), - [sym_full_reference_link] = STATE(192), - [sym_collapsed_reference_link] = STATE(192), - [sym_inline_link] = STATE(192), + [sym__inline_without_trailing_space] = STATE(875), + [sym__element] = STATE(562), + [sym_emphasis] = STATE(142), + [sym_emphasis_begin] = STATE(1147), + [sym_strong] = STATE(142), + [sym_strong_begin] = STATE(1148), + [sym_superscript] = STATE(142), + [sym_superscript_begin] = STATE(1149), + [sym_subscript] = STATE(142), + [sym_subscript_begin] = STATE(1150), + [sym_highlighted] = STATE(142), + [sym_highlighted_begin] = STATE(1151), + [sym_insert] = STATE(142), + [sym_insert_begin] = STATE(1152), + [sym_delete] = STATE(142), + [sym_delete_begin] = STATE(1153), + [sym_hard_line_break] = STATE(142), + [sym__smart_punctuation] = STATE(142), + [sym_autolink] = STATE(142), + [sym_footnote_reference] = STATE(142), + [sym__image] = STATE(142), + [sym_full_reference_image] = STATE(142), + [sym_collapsed_reference_image] = STATE(142), + [sym_inline_image] = STATE(142), + [sym__image_description] = STATE(685), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(142), + [sym_full_reference_link] = STATE(142), + [sym_collapsed_reference_link] = STATE(142), + [sym_inline_link] = STATE(142), [sym_link_text] = STATE(683), - [sym__comment_with_spaces] = STATE(192), - [sym_span] = STATE(192), - [sym_raw_inline] = STATE(192), - [sym_math] = STATE(192), - [sym_verbatim] = STATE(192), - [sym__todo_highlights] = STATE(192), - [sym_todo] = STATE(192), - [sym_note] = STATE(192), - [sym__symbol_fallback] = STATE(192), - [aux_sym__text] = STATE(141), - [aux_sym__inline_repeat1] = STATE(115), - [anon_sym_LBRACE_] = ACTIONS(129), - [anon_sym__] = ACTIONS(131), - [anon_sym_LBRACE_STAR] = ACTIONS(133), - [anon_sym_STAR] = ACTIONS(135), - [anon_sym_LBRACE_CARET] = ACTIONS(137), - [anon_sym_CARET] = ACTIONS(137), - [anon_sym_LBRACE_TILDE] = ACTIONS(139), - [anon_sym_TILDE] = ACTIONS(139), - [anon_sym_LBRACE_EQ] = ACTIONS(141), - [anon_sym_LBRACE_PLUS] = ACTIONS(143), - [anon_sym_LBRACE_DASH] = ACTIONS(145), - [anon_sym_BSLASH] = ACTIONS(147), - [sym_quotation_marks] = ACTIONS(149), - [sym_ellipsis] = ACTIONS(149), - [sym_em_dash] = ACTIONS(149), - [sym_en_dash] = ACTIONS(151), - [sym_backslash_escape] = ACTIONS(151), - [anon_sym_LT] = ACTIONS(153), - [sym_symbol] = ACTIONS(149), - [anon_sym_LBRACK_CARET] = ACTIONS(155), - [anon_sym_BANG_LBRACK] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LBRACE2] = ACTIONS(151), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_TODO] = ACTIONS(163), - [anon_sym_WIP] = ACTIONS(163), - [anon_sym_NOTE] = ACTIONS(165), - [anon_sym_INFO] = ACTIONS(165), - [anon_sym_XXX] = ACTIONS(165), - [sym_fixme] = ACTIONS(149), - [sym__whitespace1] = ACTIONS(167), - [sym__newline] = ACTIONS(169), - [aux_sym__text_token1] = ACTIONS(171), - [sym__verbatim_begin] = ACTIONS(173), + [sym_span] = STATE(562), + [sym__bracketed_text] = STATE(657), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(142), + [sym_raw_inline] = STATE(142), + [sym_math] = STATE(142), + [sym_verbatim] = STATE(142), + [sym__todo_highlights] = STATE(142), + [sym_todo] = STATE(142), + [sym_note] = STATE(142), + [sym__symbol_fallback] = STATE(142), + [aux_sym__text] = STATE(126), + [aux_sym__inline_repeat1] = STATE(120), + [anon_sym_LBRACE_] = ACTIONS(373), + [anon_sym__] = ACTIONS(375), + [anon_sym_LBRACE_STAR] = ACTIONS(377), + [anon_sym_STAR] = ACTIONS(379), + [anon_sym_LBRACE_CARET] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(381), + [anon_sym_LBRACE_TILDE] = ACTIONS(383), + [anon_sym_TILDE] = ACTIONS(383), + [anon_sym_LBRACE_EQ] = ACTIONS(385), + [anon_sym_LBRACE_PLUS] = ACTIONS(387), + [anon_sym_LBRACE_DASH] = ACTIONS(389), + [anon_sym_BSLASH] = ACTIONS(391), + [sym_quotation_marks] = ACTIONS(393), + [sym_ellipsis] = ACTIONS(393), + [sym_em_dash] = ACTIONS(393), + [sym_en_dash] = ACTIONS(395), + [sym_backslash_escape] = ACTIONS(395), + [anon_sym_LT] = ACTIONS(397), + [sym_symbol] = ACTIONS(393), + [anon_sym_LBRACK_CARET] = ACTIONS(399), + [anon_sym_BANG_LBRACK] = ACTIONS(401), + [anon_sym_LBRACK] = ACTIONS(403), + [anon_sym_DOLLAR] = ACTIONS(405), + [anon_sym_TODO] = ACTIONS(407), + [anon_sym_WIP] = ACTIONS(407), + [anon_sym_NOTE] = ACTIONS(409), + [anon_sym_INFO] = ACTIONS(409), + [anon_sym_XXX] = ACTIONS(409), + [sym_fixme] = ACTIONS(393), + [sym__whitespace1] = ACTIONS(411), + [sym__newline] = ACTIONS(413), + [aux_sym__text_token1] = ACTIONS(415), + [sym__verbatim_begin] = ACTIONS(417), }, [49] = { - [sym__inline] = STATE(825), - [sym__element] = STATE(93), - [sym_emphasis] = STATE(197), - [sym_emphasis_begin] = STATE(1088), - [sym_strong] = STATE(197), - [sym_strong_begin] = STATE(1089), - [sym_superscript] = STATE(197), - [sym_superscript_begin] = STATE(1090), - [sym_subscript] = STATE(197), - [sym_subscript_begin] = STATE(1091), - [sym_highlighted] = STATE(197), - [sym_highlighted_begin] = STATE(1092), - [sym_insert] = STATE(197), - [sym_insert_begin] = STATE(1093), - [sym_delete] = STATE(197), - [sym_delete_begin] = STATE(1094), - [sym_hard_line_break] = STATE(197), - [sym__smart_punctuation] = STATE(197), - [sym_autolink] = STATE(197), - [sym_footnote_reference] = STATE(197), - [sym__image] = STATE(197), - [sym_full_reference_image] = STATE(197), - [sym_collapsed_reference_image] = STATE(197), - [sym_inline_image] = STATE(197), - [sym__image_description] = STATE(697), - [sym__link] = STATE(197), - [sym_full_reference_link] = STATE(197), - [sym_collapsed_reference_link] = STATE(197), - [sym_inline_link] = STATE(197), - [sym_link_text] = STATE(682), - [sym__comment_with_spaces] = STATE(197), - [sym_span] = STATE(197), - [sym_raw_inline] = STATE(197), - [sym_math] = STATE(197), - [sym_verbatim] = STATE(197), - [sym__todo_highlights] = STATE(197), - [sym_todo] = STATE(197), - [sym_note] = STATE(197), - [sym__symbol_fallback] = STATE(197), - [aux_sym__text] = STATE(134), - [aux_sym__inline_repeat1] = STATE(93), - [anon_sym_LBRACE_] = ACTIONS(313), - [anon_sym__] = ACTIONS(315), - [anon_sym_LBRACE_STAR] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_LBRACE_CARET] = ACTIONS(321), - [anon_sym_CARET] = ACTIONS(321), - [anon_sym_LBRACE_TILDE] = ACTIONS(323), - [anon_sym_TILDE] = ACTIONS(323), - [anon_sym_LBRACE_EQ] = ACTIONS(325), - [anon_sym_LBRACE_PLUS] = ACTIONS(327), - [anon_sym_LBRACE_DASH] = ACTIONS(329), - [anon_sym_BSLASH] = ACTIONS(331), - [sym_quotation_marks] = ACTIONS(333), - [sym_ellipsis] = ACTIONS(333), - [sym_em_dash] = ACTIONS(333), - [sym_en_dash] = ACTIONS(335), - [sym_backslash_escape] = ACTIONS(335), - [anon_sym_LT] = ACTIONS(337), - [sym_symbol] = ACTIONS(333), - [anon_sym_LBRACK_CARET] = ACTIONS(339), - [anon_sym_BANG_LBRACK] = ACTIONS(341), - [anon_sym_LBRACK] = ACTIONS(343), - [anon_sym_LBRACE2] = ACTIONS(335), - [anon_sym_DOLLAR] = ACTIONS(345), - [anon_sym_TODO] = ACTIONS(347), - [anon_sym_WIP] = ACTIONS(347), - [anon_sym_NOTE] = ACTIONS(349), - [anon_sym_INFO] = ACTIONS(349), - [anon_sym_XXX] = ACTIONS(349), - [sym_fixme] = ACTIONS(333), - [sym__whitespace1] = ACTIONS(351), - [sym__newline] = ACTIONS(353), - [aux_sym__text_token1] = ACTIONS(355), - [sym__verbatim_begin] = ACTIONS(357), + [sym__inline_without_trailing_space] = STATE(876), + [sym__element] = STATE(604), + [sym_emphasis] = STATE(138), + [sym_emphasis_begin] = STATE(1140), + [sym_strong] = STATE(138), + [sym_strong_begin] = STATE(1141), + [sym_superscript] = STATE(138), + [sym_superscript_begin] = STATE(1142), + [sym_subscript] = STATE(138), + [sym_subscript_begin] = STATE(1143), + [sym_highlighted] = STATE(138), + [sym_highlighted_begin] = STATE(1144), + [sym_insert] = STATE(138), + [sym_insert_begin] = STATE(1145), + [sym_delete] = STATE(138), + [sym_delete_begin] = STATE(1146), + [sym_hard_line_break] = STATE(138), + [sym__smart_punctuation] = STATE(138), + [sym_autolink] = STATE(138), + [sym_footnote_reference] = STATE(138), + [sym__image] = STATE(138), + [sym_full_reference_image] = STATE(138), + [sym_collapsed_reference_image] = STATE(138), + [sym_inline_image] = STATE(138), + [sym__image_description] = STATE(667), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(138), + [sym_full_reference_link] = STATE(138), + [sym_collapsed_reference_link] = STATE(138), + [sym_inline_link] = STATE(138), + [sym_link_text] = STATE(689), + [sym_span] = STATE(604), + [sym__bracketed_text] = STATE(658), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(138), + [sym_raw_inline] = STATE(138), + [sym_math] = STATE(138), + [sym_verbatim] = STATE(138), + [sym__todo_highlights] = STATE(138), + [sym_todo] = STATE(138), + [sym_note] = STATE(138), + [sym__symbol_fallback] = STATE(138), + [aux_sym__text] = STATE(124), + [aux_sym__inline_repeat1] = STATE(118), + [anon_sym_LBRACE_] = ACTIONS(419), + [anon_sym__] = ACTIONS(421), + [anon_sym_LBRACE_STAR] = ACTIONS(423), + [anon_sym_STAR] = ACTIONS(425), + [anon_sym_LBRACE_CARET] = ACTIONS(427), + [anon_sym_CARET] = ACTIONS(427), + [anon_sym_LBRACE_TILDE] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_LBRACE_EQ] = ACTIONS(431), + [anon_sym_LBRACE_PLUS] = ACTIONS(433), + [anon_sym_LBRACE_DASH] = ACTIONS(435), + [anon_sym_BSLASH] = ACTIONS(437), + [sym_quotation_marks] = ACTIONS(439), + [sym_ellipsis] = ACTIONS(439), + [sym_em_dash] = ACTIONS(439), + [sym_en_dash] = ACTIONS(441), + [sym_backslash_escape] = ACTIONS(441), + [anon_sym_LT] = ACTIONS(443), + [sym_symbol] = ACTIONS(439), + [anon_sym_LBRACK_CARET] = ACTIONS(445), + [anon_sym_BANG_LBRACK] = ACTIONS(447), + [anon_sym_LBRACK] = ACTIONS(449), + [anon_sym_DOLLAR] = ACTIONS(451), + [anon_sym_TODO] = ACTIONS(453), + [anon_sym_WIP] = ACTIONS(453), + [anon_sym_NOTE] = ACTIONS(455), + [anon_sym_INFO] = ACTIONS(455), + [anon_sym_XXX] = ACTIONS(455), + [sym_fixme] = ACTIONS(439), + [sym__whitespace1] = ACTIONS(457), + [sym__newline] = ACTIONS(459), + [aux_sym__text_token1] = ACTIONS(461), + [sym__verbatim_begin] = ACTIONS(463), }, [50] = { - [sym__inline] = STATE(834), - [sym__element] = STATE(79), - [sym_emphasis] = STATE(161), - [sym_emphasis_begin] = STATE(1081), - [sym_strong] = STATE(161), - [sym_strong_begin] = STATE(1082), - [sym_superscript] = STATE(161), - [sym_superscript_begin] = STATE(1083), - [sym_subscript] = STATE(161), - [sym_subscript_begin] = STATE(1084), - [sym_highlighted] = STATE(161), - [sym_highlighted_begin] = STATE(1085), - [sym_insert] = STATE(161), - [sym_insert_begin] = STATE(1086), - [sym_delete] = STATE(161), - [sym_delete_begin] = STATE(1087), - [sym_hard_line_break] = STATE(161), - [sym__smart_punctuation] = STATE(161), - [sym_autolink] = STATE(161), - [sym_footnote_reference] = STATE(161), - [sym__image] = STATE(161), - [sym_full_reference_image] = STATE(161), - [sym_collapsed_reference_image] = STATE(161), - [sym_inline_image] = STATE(161), - [sym__image_description] = STATE(692), - [sym__link] = STATE(161), - [sym_full_reference_link] = STATE(161), - [sym_collapsed_reference_link] = STATE(161), - [sym_inline_link] = STATE(161), - [sym_link_text] = STATE(687), - [sym__comment_with_spaces] = STATE(161), - [sym_span] = STATE(161), - [sym_raw_inline] = STATE(161), - [sym_math] = STATE(161), - [sym_verbatim] = STATE(161), - [sym__todo_highlights] = STATE(161), - [sym_todo] = STATE(161), - [sym_note] = STATE(161), - [sym__symbol_fallback] = STATE(161), - [aux_sym__text] = STATE(149), - [aux_sym__inline_repeat1] = STATE(79), - [anon_sym_LBRACE_] = ACTIONS(359), - [anon_sym__] = ACTIONS(361), - [anon_sym_LBRACE_STAR] = ACTIONS(363), - [anon_sym_STAR] = ACTIONS(365), - [anon_sym_LBRACE_CARET] = ACTIONS(367), - [anon_sym_CARET] = ACTIONS(367), - [anon_sym_LBRACE_TILDE] = ACTIONS(369), - [anon_sym_TILDE] = ACTIONS(369), - [anon_sym_LBRACE_EQ] = ACTIONS(371), - [anon_sym_LBRACE_PLUS] = ACTIONS(373), - [anon_sym_LBRACE_DASH] = ACTIONS(375), - [anon_sym_BSLASH] = ACTIONS(377), - [sym_quotation_marks] = ACTIONS(379), - [sym_ellipsis] = ACTIONS(379), - [sym_em_dash] = ACTIONS(379), - [sym_en_dash] = ACTIONS(381), - [sym_backslash_escape] = ACTIONS(381), - [anon_sym_LT] = ACTIONS(383), - [sym_symbol] = ACTIONS(379), - [anon_sym_LBRACK_CARET] = ACTIONS(385), - [anon_sym_BANG_LBRACK] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(389), - [anon_sym_LBRACE2] = ACTIONS(381), - [anon_sym_DOLLAR] = ACTIONS(391), - [anon_sym_TODO] = ACTIONS(393), - [anon_sym_WIP] = ACTIONS(393), - [anon_sym_NOTE] = ACTIONS(395), - [anon_sym_INFO] = ACTIONS(395), - [anon_sym_XXX] = ACTIONS(395), - [sym_fixme] = ACTIONS(379), - [sym__whitespace1] = ACTIONS(397), - [sym__newline] = ACTIONS(399), - [aux_sym__text_token1] = ACTIONS(401), - [sym__verbatim_begin] = ACTIONS(403), + [sym__inline] = STATE(910), + [sym__element] = STATE(65), + [sym_emphasis] = STATE(133), + [sym_emphasis_begin] = STATE(1189), + [sym_strong] = STATE(133), + [sym_strong_begin] = STATE(1190), + [sym_superscript] = STATE(133), + [sym_superscript_begin] = STATE(1191), + [sym_subscript] = STATE(133), + [sym_subscript_begin] = STATE(1192), + [sym_highlighted] = STATE(133), + [sym_highlighted_begin] = STATE(1193), + [sym_insert] = STATE(133), + [sym_insert_begin] = STATE(1194), + [sym_delete] = STATE(133), + [sym_delete_begin] = STATE(1195), + [sym_hard_line_break] = STATE(133), + [sym__smart_punctuation] = STATE(133), + [sym_autolink] = STATE(133), + [sym_footnote_reference] = STATE(133), + [sym__image] = STATE(133), + [sym_full_reference_image] = STATE(133), + [sym_collapsed_reference_image] = STATE(133), + [sym_inline_image] = STATE(133), + [sym__image_description] = STATE(670), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(133), + [sym_full_reference_link] = STATE(133), + [sym_collapsed_reference_link] = STATE(133), + [sym_inline_link] = STATE(133), + [sym_link_text] = STATE(663), + [sym_span] = STATE(65), + [sym__bracketed_text] = STATE(662), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(133), + [sym_raw_inline] = STATE(133), + [sym_math] = STATE(133), + [sym_verbatim] = STATE(133), + [sym__todo_highlights] = STATE(133), + [sym_todo] = STATE(133), + [sym_note] = STATE(133), + [sym__symbol_fallback] = STATE(133), + [aux_sym__text] = STATE(123), + [aux_sym__inline_repeat1] = STATE(65), + [anon_sym_LBRACE_] = ACTIONS(143), + [anon_sym__] = ACTIONS(145), + [anon_sym_LBRACE_STAR] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(149), + [anon_sym_LBRACE_CARET] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(151), + [anon_sym_LBRACE_TILDE] = ACTIONS(153), + [anon_sym_TILDE] = ACTIONS(153), + [anon_sym_LBRACE_EQ] = ACTIONS(155), + [anon_sym_LBRACE_PLUS] = ACTIONS(157), + [anon_sym_LBRACE_DASH] = ACTIONS(159), + [anon_sym_BSLASH] = ACTIONS(161), + [sym_quotation_marks] = ACTIONS(163), + [sym_ellipsis] = ACTIONS(163), + [sym_em_dash] = ACTIONS(163), + [sym_en_dash] = ACTIONS(165), + [sym_backslash_escape] = ACTIONS(165), + [anon_sym_LT] = ACTIONS(167), + [sym_symbol] = ACTIONS(163), + [anon_sym_LBRACK_CARET] = ACTIONS(169), + [anon_sym_BANG_LBRACK] = ACTIONS(171), + [anon_sym_LBRACK] = ACTIONS(173), + [anon_sym_DOLLAR] = ACTIONS(175), + [anon_sym_TODO] = ACTIONS(177), + [anon_sym_WIP] = ACTIONS(177), + [anon_sym_NOTE] = ACTIONS(179), + [anon_sym_INFO] = ACTIONS(179), + [anon_sym_XXX] = ACTIONS(179), + [sym_fixme] = ACTIONS(163), + [sym__whitespace1] = ACTIONS(181), + [sym__newline] = ACTIONS(183), + [aux_sym__text_token1] = ACTIONS(185), + [sym__verbatim_begin] = ACTIONS(187), }, [51] = { - [sym__inline_without_trailing_space] = STATE(838), - [sym__element] = STATE(572), - [sym_emphasis] = STATE(208), - [sym_emphasis_begin] = STATE(1074), - [sym_strong] = STATE(208), - [sym_strong_begin] = STATE(1075), - [sym_superscript] = STATE(208), - [sym_superscript_begin] = STATE(1076), - [sym_subscript] = STATE(208), - [sym_subscript_begin] = STATE(1077), - [sym_highlighted] = STATE(208), - [sym_highlighted_begin] = STATE(1078), - [sym_insert] = STATE(208), - [sym_insert_begin] = STATE(1079), - [sym_delete] = STATE(208), - [sym_delete_begin] = STATE(1080), - [sym_hard_line_break] = STATE(208), - [sym__smart_punctuation] = STATE(208), - [sym_autolink] = STATE(208), - [sym_footnote_reference] = STATE(208), - [sym__image] = STATE(208), - [sym_full_reference_image] = STATE(208), - [sym_collapsed_reference_image] = STATE(208), - [sym_inline_image] = STATE(208), - [sym__image_description] = STATE(680), - [sym__link] = STATE(208), - [sym_full_reference_link] = STATE(208), - [sym_collapsed_reference_link] = STATE(208), - [sym_inline_link] = STATE(208), - [sym_link_text] = STATE(663), - [sym__comment_with_spaces] = STATE(208), - [sym_span] = STATE(208), - [sym_raw_inline] = STATE(208), - [sym_math] = STATE(208), - [sym_verbatim] = STATE(208), - [sym__todo_highlights] = STATE(208), - [sym_todo] = STATE(208), - [sym_note] = STATE(208), - [sym__symbol_fallback] = STATE(208), - [aux_sym__text] = STATE(131), - [aux_sym__inline_repeat1] = STATE(130), - [anon_sym_LBRACE_] = ACTIONS(175), - [anon_sym__] = ACTIONS(177), - [anon_sym_LBRACE_STAR] = ACTIONS(179), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_LBRACE_CARET] = ACTIONS(183), - [anon_sym_CARET] = ACTIONS(183), - [anon_sym_LBRACE_TILDE] = ACTIONS(185), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_LBRACE_EQ] = ACTIONS(187), - [anon_sym_LBRACE_PLUS] = ACTIONS(189), - [anon_sym_LBRACE_DASH] = ACTIONS(191), - [anon_sym_BSLASH] = ACTIONS(193), - [sym_quotation_marks] = ACTIONS(195), - [sym_ellipsis] = ACTIONS(195), - [sym_em_dash] = ACTIONS(195), - [sym_en_dash] = ACTIONS(197), - [sym_backslash_escape] = ACTIONS(197), - [anon_sym_LT] = ACTIONS(199), - [sym_symbol] = ACTIONS(195), - [anon_sym_LBRACK_CARET] = ACTIONS(201), - [anon_sym_BANG_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE2] = ACTIONS(197), - [anon_sym_DOLLAR] = ACTIONS(207), - [anon_sym_TODO] = ACTIONS(209), - [anon_sym_WIP] = ACTIONS(209), - [anon_sym_NOTE] = ACTIONS(211), - [anon_sym_INFO] = ACTIONS(211), - [anon_sym_XXX] = ACTIONS(211), - [sym_fixme] = ACTIONS(195), - [sym__whitespace1] = ACTIONS(213), - [sym__newline] = ACTIONS(215), - [aux_sym__text_token1] = ACTIONS(217), - [sym__verbatim_begin] = ACTIONS(219), + [sym__inline_without_trailing_space] = STATE(981), + [sym__element] = STATE(562), + [sym_emphasis] = STATE(142), + [sym_emphasis_begin] = STATE(1147), + [sym_strong] = STATE(142), + [sym_strong_begin] = STATE(1148), + [sym_superscript] = STATE(142), + [sym_superscript_begin] = STATE(1149), + [sym_subscript] = STATE(142), + [sym_subscript_begin] = STATE(1150), + [sym_highlighted] = STATE(142), + [sym_highlighted_begin] = STATE(1151), + [sym_insert] = STATE(142), + [sym_insert_begin] = STATE(1152), + [sym_delete] = STATE(142), + [sym_delete_begin] = STATE(1153), + [sym_hard_line_break] = STATE(142), + [sym__smart_punctuation] = STATE(142), + [sym_autolink] = STATE(142), + [sym_footnote_reference] = STATE(142), + [sym__image] = STATE(142), + [sym_full_reference_image] = STATE(142), + [sym_collapsed_reference_image] = STATE(142), + [sym_inline_image] = STATE(142), + [sym__image_description] = STATE(685), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(142), + [sym_full_reference_link] = STATE(142), + [sym_collapsed_reference_link] = STATE(142), + [sym_inline_link] = STATE(142), + [sym_link_text] = STATE(683), + [sym_span] = STATE(562), + [sym__bracketed_text] = STATE(657), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(142), + [sym_raw_inline] = STATE(142), + [sym_math] = STATE(142), + [sym_verbatim] = STATE(142), + [sym__todo_highlights] = STATE(142), + [sym_todo] = STATE(142), + [sym_note] = STATE(142), + [sym__symbol_fallback] = STATE(142), + [aux_sym__text] = STATE(126), + [aux_sym__inline_repeat1] = STATE(120), + [anon_sym_LBRACE_] = ACTIONS(373), + [anon_sym__] = ACTIONS(375), + [anon_sym_LBRACE_STAR] = ACTIONS(377), + [anon_sym_STAR] = ACTIONS(379), + [anon_sym_LBRACE_CARET] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(381), + [anon_sym_LBRACE_TILDE] = ACTIONS(383), + [anon_sym_TILDE] = ACTIONS(383), + [anon_sym_LBRACE_EQ] = ACTIONS(385), + [anon_sym_LBRACE_PLUS] = ACTIONS(387), + [anon_sym_LBRACE_DASH] = ACTIONS(389), + [anon_sym_BSLASH] = ACTIONS(391), + [sym_quotation_marks] = ACTIONS(393), + [sym_ellipsis] = ACTIONS(393), + [sym_em_dash] = ACTIONS(393), + [sym_en_dash] = ACTIONS(395), + [sym_backslash_escape] = ACTIONS(395), + [anon_sym_LT] = ACTIONS(397), + [sym_symbol] = ACTIONS(393), + [anon_sym_LBRACK_CARET] = ACTIONS(399), + [anon_sym_BANG_LBRACK] = ACTIONS(401), + [anon_sym_LBRACK] = ACTIONS(403), + [anon_sym_DOLLAR] = ACTIONS(405), + [anon_sym_TODO] = ACTIONS(407), + [anon_sym_WIP] = ACTIONS(407), + [anon_sym_NOTE] = ACTIONS(409), + [anon_sym_INFO] = ACTIONS(409), + [anon_sym_XXX] = ACTIONS(409), + [sym_fixme] = ACTIONS(393), + [sym__whitespace1] = ACTIONS(411), + [sym__newline] = ACTIONS(413), + [aux_sym__text_token1] = ACTIONS(415), + [sym__verbatim_begin] = ACTIONS(417), }, [52] = { - [sym__inline_without_trailing_space] = STATE(839), - [sym__element] = STATE(603), - [sym_emphasis] = STATE(177), - [sym_emphasis_begin] = STATE(1067), - [sym_strong] = STATE(177), - [sym_strong_begin] = STATE(1068), - [sym_superscript] = STATE(177), - [sym_superscript_begin] = STATE(1069), - [sym_subscript] = STATE(177), - [sym_subscript_begin] = STATE(1070), - [sym_highlighted] = STATE(177), - [sym_highlighted_begin] = STATE(1071), - [sym_insert] = STATE(177), - [sym_insert_begin] = STATE(1072), - [sym_delete] = STATE(177), - [sym_delete_begin] = STATE(1073), - [sym_hard_line_break] = STATE(177), - [sym__smart_punctuation] = STATE(177), - [sym_autolink] = STATE(177), - [sym_footnote_reference] = STATE(177), - [sym__image] = STATE(177), - [sym_full_reference_image] = STATE(177), - [sym_collapsed_reference_image] = STATE(177), - [sym_inline_image] = STATE(177), - [sym__image_description] = STATE(681), - [sym__link] = STATE(177), - [sym_full_reference_link] = STATE(177), - [sym_collapsed_reference_link] = STATE(177), - [sym_inline_link] = STATE(177), - [sym_link_text] = STATE(668), - [sym__comment_with_spaces] = STATE(177), - [sym_span] = STATE(177), - [sym_raw_inline] = STATE(177), - [sym_math] = STATE(177), - [sym_verbatim] = STATE(177), - [sym__todo_highlights] = STATE(177), - [sym_todo] = STATE(177), - [sym_note] = STATE(177), - [sym__symbol_fallback] = STATE(177), - [aux_sym__text] = STATE(132), - [aux_sym__inline_repeat1] = STATE(128), - [anon_sym_LBRACE_] = ACTIONS(405), - [anon_sym__] = ACTIONS(407), - [anon_sym_LBRACE_STAR] = ACTIONS(409), - [anon_sym_STAR] = ACTIONS(411), - [anon_sym_LBRACE_CARET] = ACTIONS(413), - [anon_sym_CARET] = ACTIONS(413), - [anon_sym_LBRACE_TILDE] = ACTIONS(415), - [anon_sym_TILDE] = ACTIONS(415), - [anon_sym_LBRACE_EQ] = ACTIONS(417), - [anon_sym_LBRACE_PLUS] = ACTIONS(419), - [anon_sym_LBRACE_DASH] = ACTIONS(421), - [anon_sym_BSLASH] = ACTIONS(423), - [sym_quotation_marks] = ACTIONS(425), - [sym_ellipsis] = ACTIONS(425), - [sym_em_dash] = ACTIONS(425), - [sym_en_dash] = ACTIONS(427), - [sym_backslash_escape] = ACTIONS(427), - [anon_sym_LT] = ACTIONS(429), - [sym_symbol] = ACTIONS(425), - [anon_sym_LBRACK_CARET] = ACTIONS(431), - [anon_sym_BANG_LBRACK] = ACTIONS(433), - [anon_sym_LBRACK] = ACTIONS(435), - [anon_sym_LBRACE2] = ACTIONS(427), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_TODO] = ACTIONS(439), - [anon_sym_WIP] = ACTIONS(439), - [anon_sym_NOTE] = ACTIONS(441), - [anon_sym_INFO] = ACTIONS(441), - [anon_sym_XXX] = ACTIONS(441), - [sym_fixme] = ACTIONS(425), - [sym__whitespace1] = ACTIONS(443), - [sym__newline] = ACTIONS(445), - [aux_sym__text_token1] = ACTIONS(447), - [sym__verbatim_begin] = ACTIONS(449), + [sym__inline_without_trailing_space] = STATE(1073), + [sym__element] = STATE(604), + [sym_emphasis] = STATE(138), + [sym_emphasis_begin] = STATE(1140), + [sym_strong] = STATE(138), + [sym_strong_begin] = STATE(1141), + [sym_superscript] = STATE(138), + [sym_superscript_begin] = STATE(1142), + [sym_subscript] = STATE(138), + [sym_subscript_begin] = STATE(1143), + [sym_highlighted] = STATE(138), + [sym_highlighted_begin] = STATE(1144), + [sym_insert] = STATE(138), + [sym_insert_begin] = STATE(1145), + [sym_delete] = STATE(138), + [sym_delete_begin] = STATE(1146), + [sym_hard_line_break] = STATE(138), + [sym__smart_punctuation] = STATE(138), + [sym_autolink] = STATE(138), + [sym_footnote_reference] = STATE(138), + [sym__image] = STATE(138), + [sym_full_reference_image] = STATE(138), + [sym_collapsed_reference_image] = STATE(138), + [sym_inline_image] = STATE(138), + [sym__image_description] = STATE(667), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(138), + [sym_full_reference_link] = STATE(138), + [sym_collapsed_reference_link] = STATE(138), + [sym_inline_link] = STATE(138), + [sym_link_text] = STATE(689), + [sym_span] = STATE(604), + [sym__bracketed_text] = STATE(658), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(138), + [sym_raw_inline] = STATE(138), + [sym_math] = STATE(138), + [sym_verbatim] = STATE(138), + [sym__todo_highlights] = STATE(138), + [sym_todo] = STATE(138), + [sym_note] = STATE(138), + [sym__symbol_fallback] = STATE(138), + [aux_sym__text] = STATE(124), + [aux_sym__inline_repeat1] = STATE(118), + [anon_sym_LBRACE_] = ACTIONS(419), + [anon_sym__] = ACTIONS(421), + [anon_sym_LBRACE_STAR] = ACTIONS(423), + [anon_sym_STAR] = ACTIONS(425), + [anon_sym_LBRACE_CARET] = ACTIONS(427), + [anon_sym_CARET] = ACTIONS(427), + [anon_sym_LBRACE_TILDE] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_LBRACE_EQ] = ACTIONS(431), + [anon_sym_LBRACE_PLUS] = ACTIONS(433), + [anon_sym_LBRACE_DASH] = ACTIONS(435), + [anon_sym_BSLASH] = ACTIONS(437), + [sym_quotation_marks] = ACTIONS(439), + [sym_ellipsis] = ACTIONS(439), + [sym_em_dash] = ACTIONS(439), + [sym_en_dash] = ACTIONS(441), + [sym_backslash_escape] = ACTIONS(441), + [anon_sym_LT] = ACTIONS(443), + [sym_symbol] = ACTIONS(439), + [anon_sym_LBRACK_CARET] = ACTIONS(445), + [anon_sym_BANG_LBRACK] = ACTIONS(447), + [anon_sym_LBRACK] = ACTIONS(449), + [anon_sym_DOLLAR] = ACTIONS(451), + [anon_sym_TODO] = ACTIONS(453), + [anon_sym_WIP] = ACTIONS(453), + [anon_sym_NOTE] = ACTIONS(455), + [anon_sym_INFO] = ACTIONS(455), + [anon_sym_XXX] = ACTIONS(455), + [sym_fixme] = ACTIONS(439), + [sym__whitespace1] = ACTIONS(457), + [sym__newline] = ACTIONS(459), + [aux_sym__text_token1] = ACTIONS(461), + [sym__verbatim_begin] = ACTIONS(463), }, [53] = { - [sym__inline] = STATE(850), - [sym__element] = STATE(66), - [sym_emphasis] = STATE(171), - [sym_emphasis_begin] = STATE(1116), - [sym_strong] = STATE(171), - [sym_strong_begin] = STATE(1117), - [sym_superscript] = STATE(171), - [sym_superscript_begin] = STATE(1118), - [sym_subscript] = STATE(171), - [sym_subscript_begin] = STATE(1119), - [sym_highlighted] = STATE(171), - [sym_highlighted_begin] = STATE(1120), - [sym_insert] = STATE(171), - [sym_insert_begin] = STATE(1121), - [sym_delete] = STATE(171), - [sym_delete_begin] = STATE(1122), - [sym_hard_line_break] = STATE(171), - [sym__smart_punctuation] = STATE(171), - [sym_autolink] = STATE(171), - [sym_footnote_reference] = STATE(171), - [sym__image] = STATE(171), - [sym_full_reference_image] = STATE(171), - [sym_collapsed_reference_image] = STATE(171), - [sym_inline_image] = STATE(171), - [sym__image_description] = STATE(674), - [sym__link] = STATE(171), - [sym_full_reference_link] = STATE(171), - [sym_collapsed_reference_link] = STATE(171), - [sym_inline_link] = STATE(171), - [sym_link_text] = STATE(675), - [sym__comment_with_spaces] = STATE(171), - [sym_span] = STATE(171), - [sym_raw_inline] = STATE(171), - [sym_math] = STATE(171), - [sym_verbatim] = STATE(171), - [sym__todo_highlights] = STATE(171), - [sym_todo] = STATE(171), - [sym_note] = STATE(171), - [sym__symbol_fallback] = STATE(171), - [aux_sym__text] = STATE(146), - [aux_sym__inline_repeat1] = STATE(66), - [anon_sym_LBRACE_] = ACTIONS(451), - [anon_sym__] = ACTIONS(453), - [anon_sym_LBRACE_STAR] = ACTIONS(455), - [anon_sym_STAR] = ACTIONS(457), - [anon_sym_LBRACE_CARET] = ACTIONS(459), - [anon_sym_CARET] = ACTIONS(459), - [anon_sym_LBRACE_TILDE] = ACTIONS(461), - [anon_sym_TILDE] = ACTIONS(461), - [anon_sym_LBRACE_EQ] = ACTIONS(463), - [anon_sym_LBRACE_PLUS] = ACTIONS(465), - [anon_sym_LBRACE_DASH] = ACTIONS(467), - [anon_sym_BSLASH] = ACTIONS(469), - [sym_quotation_marks] = ACTIONS(471), - [sym_ellipsis] = ACTIONS(471), - [sym_em_dash] = ACTIONS(471), - [sym_en_dash] = ACTIONS(473), - [sym_backslash_escape] = ACTIONS(473), - [anon_sym_LT] = ACTIONS(475), - [sym_symbol] = ACTIONS(471), - [anon_sym_LBRACK_CARET] = ACTIONS(477), - [anon_sym_BANG_LBRACK] = ACTIONS(479), - [anon_sym_LBRACK] = ACTIONS(481), - [anon_sym_LBRACE2] = ACTIONS(473), - [anon_sym_DOLLAR] = ACTIONS(483), - [anon_sym_TODO] = ACTIONS(485), - [anon_sym_WIP] = ACTIONS(485), - [anon_sym_NOTE] = ACTIONS(487), - [anon_sym_INFO] = ACTIONS(487), - [anon_sym_XXX] = ACTIONS(487), - [sym_fixme] = ACTIONS(471), - [sym__whitespace1] = ACTIONS(489), - [sym__newline] = ACTIONS(491), - [aux_sym__text_token1] = ACTIONS(493), - [sym__verbatim_begin] = ACTIONS(495), + [sym__inline_without_trailing_space] = STATE(1072), + [sym__element] = STATE(562), + [sym_emphasis] = STATE(142), + [sym_emphasis_begin] = STATE(1147), + [sym_strong] = STATE(142), + [sym_strong_begin] = STATE(1148), + [sym_superscript] = STATE(142), + [sym_superscript_begin] = STATE(1149), + [sym_subscript] = STATE(142), + [sym_subscript_begin] = STATE(1150), + [sym_highlighted] = STATE(142), + [sym_highlighted_begin] = STATE(1151), + [sym_insert] = STATE(142), + [sym_insert_begin] = STATE(1152), + [sym_delete] = STATE(142), + [sym_delete_begin] = STATE(1153), + [sym_hard_line_break] = STATE(142), + [sym__smart_punctuation] = STATE(142), + [sym_autolink] = STATE(142), + [sym_footnote_reference] = STATE(142), + [sym__image] = STATE(142), + [sym_full_reference_image] = STATE(142), + [sym_collapsed_reference_image] = STATE(142), + [sym_inline_image] = STATE(142), + [sym__image_description] = STATE(685), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(142), + [sym_full_reference_link] = STATE(142), + [sym_collapsed_reference_link] = STATE(142), + [sym_inline_link] = STATE(142), + [sym_link_text] = STATE(683), + [sym_span] = STATE(562), + [sym__bracketed_text] = STATE(657), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(142), + [sym_raw_inline] = STATE(142), + [sym_math] = STATE(142), + [sym_verbatim] = STATE(142), + [sym__todo_highlights] = STATE(142), + [sym_todo] = STATE(142), + [sym_note] = STATE(142), + [sym__symbol_fallback] = STATE(142), + [aux_sym__text] = STATE(126), + [aux_sym__inline_repeat1] = STATE(120), + [anon_sym_LBRACE_] = ACTIONS(373), + [anon_sym__] = ACTIONS(375), + [anon_sym_LBRACE_STAR] = ACTIONS(377), + [anon_sym_STAR] = ACTIONS(379), + [anon_sym_LBRACE_CARET] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(381), + [anon_sym_LBRACE_TILDE] = ACTIONS(383), + [anon_sym_TILDE] = ACTIONS(383), + [anon_sym_LBRACE_EQ] = ACTIONS(385), + [anon_sym_LBRACE_PLUS] = ACTIONS(387), + [anon_sym_LBRACE_DASH] = ACTIONS(389), + [anon_sym_BSLASH] = ACTIONS(391), + [sym_quotation_marks] = ACTIONS(393), + [sym_ellipsis] = ACTIONS(393), + [sym_em_dash] = ACTIONS(393), + [sym_en_dash] = ACTIONS(395), + [sym_backslash_escape] = ACTIONS(395), + [anon_sym_LT] = ACTIONS(397), + [sym_symbol] = ACTIONS(393), + [anon_sym_LBRACK_CARET] = ACTIONS(399), + [anon_sym_BANG_LBRACK] = ACTIONS(401), + [anon_sym_LBRACK] = ACTIONS(403), + [anon_sym_DOLLAR] = ACTIONS(405), + [anon_sym_TODO] = ACTIONS(407), + [anon_sym_WIP] = ACTIONS(407), + [anon_sym_NOTE] = ACTIONS(409), + [anon_sym_INFO] = ACTIONS(409), + [anon_sym_XXX] = ACTIONS(409), + [sym_fixme] = ACTIONS(393), + [sym__whitespace1] = ACTIONS(411), + [sym__newline] = ACTIONS(413), + [aux_sym__text_token1] = ACTIONS(415), + [sym__verbatim_begin] = ACTIONS(417), }, [54] = { - [sym__inline_without_trailing_space] = STATE(982), - [sym__element] = STATE(603), - [sym_emphasis] = STATE(177), - [sym_emphasis_begin] = STATE(1067), - [sym_strong] = STATE(177), - [sym_strong_begin] = STATE(1068), - [sym_superscript] = STATE(177), - [sym_superscript_begin] = STATE(1069), - [sym_subscript] = STATE(177), - [sym_subscript_begin] = STATE(1070), - [sym_highlighted] = STATE(177), - [sym_highlighted_begin] = STATE(1071), - [sym_insert] = STATE(177), - [sym_insert_begin] = STATE(1072), - [sym_delete] = STATE(177), - [sym_delete_begin] = STATE(1073), - [sym_hard_line_break] = STATE(177), - [sym__smart_punctuation] = STATE(177), - [sym_autolink] = STATE(177), - [sym_footnote_reference] = STATE(177), - [sym__image] = STATE(177), - [sym_full_reference_image] = STATE(177), - [sym_collapsed_reference_image] = STATE(177), - [sym_inline_image] = STATE(177), - [sym__image_description] = STATE(681), - [sym__link] = STATE(177), - [sym_full_reference_link] = STATE(177), - [sym_collapsed_reference_link] = STATE(177), - [sym_inline_link] = STATE(177), - [sym_link_text] = STATE(668), - [sym__comment_with_spaces] = STATE(177), - [sym_span] = STATE(177), - [sym_raw_inline] = STATE(177), - [sym_math] = STATE(177), - [sym_verbatim] = STATE(177), - [sym__todo_highlights] = STATE(177), - [sym_todo] = STATE(177), - [sym_note] = STATE(177), - [sym__symbol_fallback] = STATE(177), - [aux_sym__text] = STATE(132), - [aux_sym__inline_repeat1] = STATE(128), - [anon_sym_LBRACE_] = ACTIONS(405), - [anon_sym__] = ACTIONS(407), - [anon_sym_LBRACE_STAR] = ACTIONS(409), - [anon_sym_STAR] = ACTIONS(411), - [anon_sym_LBRACE_CARET] = ACTIONS(413), - [anon_sym_CARET] = ACTIONS(413), - [anon_sym_LBRACE_TILDE] = ACTIONS(415), - [anon_sym_TILDE] = ACTIONS(415), - [anon_sym_LBRACE_EQ] = ACTIONS(417), - [anon_sym_LBRACE_PLUS] = ACTIONS(419), - [anon_sym_LBRACE_DASH] = ACTIONS(421), - [anon_sym_BSLASH] = ACTIONS(423), - [sym_quotation_marks] = ACTIONS(425), - [sym_ellipsis] = ACTIONS(425), - [sym_em_dash] = ACTIONS(425), - [sym_en_dash] = ACTIONS(427), - [sym_backslash_escape] = ACTIONS(427), - [anon_sym_LT] = ACTIONS(429), - [sym_symbol] = ACTIONS(425), - [anon_sym_LBRACK_CARET] = ACTIONS(431), - [anon_sym_BANG_LBRACK] = ACTIONS(433), - [anon_sym_LBRACK] = ACTIONS(435), - [anon_sym_LBRACE2] = ACTIONS(427), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_TODO] = ACTIONS(439), - [anon_sym_WIP] = ACTIONS(439), - [anon_sym_NOTE] = ACTIONS(441), - [anon_sym_INFO] = ACTIONS(441), - [anon_sym_XXX] = ACTIONS(441), - [sym_fixme] = ACTIONS(425), - [sym__whitespace1] = ACTIONS(443), - [sym__newline] = ACTIONS(445), - [aux_sym__text_token1] = ACTIONS(447), - [sym__verbatim_begin] = ACTIONS(449), + [sym__inline] = STATE(1071), + [sym__element] = STATE(105), + [sym_emphasis] = STATE(140), + [sym_emphasis_begin] = STATE(1154), + [sym_strong] = STATE(140), + [sym_strong_begin] = STATE(1155), + [sym_superscript] = STATE(140), + [sym_superscript_begin] = STATE(1156), + [sym_subscript] = STATE(140), + [sym_subscript_begin] = STATE(1157), + [sym_highlighted] = STATE(140), + [sym_highlighted_begin] = STATE(1158), + [sym_insert] = STATE(140), + [sym_insert_begin] = STATE(1159), + [sym_delete] = STATE(140), + [sym_delete_begin] = STATE(1160), + [sym_hard_line_break] = STATE(140), + [sym__smart_punctuation] = STATE(140), + [sym_autolink] = STATE(140), + [sym_footnote_reference] = STATE(140), + [sym__image] = STATE(140), + [sym_full_reference_image] = STATE(140), + [sym_collapsed_reference_image] = STATE(140), + [sym_inline_image] = STATE(140), + [sym__image_description] = STATE(687), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(140), + [sym_full_reference_link] = STATE(140), + [sym_collapsed_reference_link] = STATE(140), + [sym_inline_link] = STATE(140), + [sym_link_text] = STATE(688), + [sym_span] = STATE(105), + [sym__bracketed_text] = STATE(654), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(140), + [sym_raw_inline] = STATE(140), + [sym_math] = STATE(140), + [sym_verbatim] = STATE(140), + [sym__todo_highlights] = STATE(140), + [sym_todo] = STATE(140), + [sym_note] = STATE(140), + [sym__symbol_fallback] = STATE(140), + [aux_sym__text] = STATE(131), + [aux_sym__inline_repeat1] = STATE(105), + [anon_sym_LBRACE_] = ACTIONS(327), + [anon_sym__] = ACTIONS(329), + [anon_sym_LBRACE_STAR] = ACTIONS(331), + [anon_sym_STAR] = ACTIONS(333), + [anon_sym_LBRACE_CARET] = ACTIONS(335), + [anon_sym_CARET] = ACTIONS(335), + [anon_sym_LBRACE_TILDE] = ACTIONS(337), + [anon_sym_TILDE] = ACTIONS(337), + [anon_sym_LBRACE_EQ] = ACTIONS(339), + [anon_sym_LBRACE_PLUS] = ACTIONS(341), + [anon_sym_LBRACE_DASH] = ACTIONS(343), + [anon_sym_BSLASH] = ACTIONS(345), + [sym_quotation_marks] = ACTIONS(347), + [sym_ellipsis] = ACTIONS(347), + [sym_em_dash] = ACTIONS(347), + [sym_en_dash] = ACTIONS(349), + [sym_backslash_escape] = ACTIONS(349), + [anon_sym_LT] = ACTIONS(351), + [sym_symbol] = ACTIONS(347), + [anon_sym_LBRACK_CARET] = ACTIONS(353), + [anon_sym_BANG_LBRACK] = ACTIONS(355), + [anon_sym_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [anon_sym_TODO] = ACTIONS(361), + [anon_sym_WIP] = ACTIONS(361), + [anon_sym_NOTE] = ACTIONS(363), + [anon_sym_INFO] = ACTIONS(363), + [anon_sym_XXX] = ACTIONS(363), + [sym_fixme] = ACTIONS(347), + [sym__whitespace1] = ACTIONS(365), + [sym__newline] = ACTIONS(367), + [aux_sym__text_token1] = ACTIONS(369), + [sym__verbatim_begin] = ACTIONS(371), }, [55] = { - [sym__inline_without_trailing_space] = STATE(980), - [sym__element] = STATE(572), - [sym_emphasis] = STATE(208), - [sym_emphasis_begin] = STATE(1074), - [sym_strong] = STATE(208), - [sym_strong_begin] = STATE(1075), - [sym_superscript] = STATE(208), - [sym_superscript_begin] = STATE(1076), - [sym_subscript] = STATE(208), - [sym_subscript_begin] = STATE(1077), - [sym_highlighted] = STATE(208), - [sym_highlighted_begin] = STATE(1078), - [sym_insert] = STATE(208), - [sym_insert_begin] = STATE(1079), - [sym_delete] = STATE(208), - [sym_delete_begin] = STATE(1080), - [sym_hard_line_break] = STATE(208), - [sym__smart_punctuation] = STATE(208), - [sym_autolink] = STATE(208), - [sym_footnote_reference] = STATE(208), - [sym__image] = STATE(208), - [sym_full_reference_image] = STATE(208), - [sym_collapsed_reference_image] = STATE(208), - [sym_inline_image] = STATE(208), - [sym__image_description] = STATE(680), - [sym__link] = STATE(208), - [sym_full_reference_link] = STATE(208), - [sym_collapsed_reference_link] = STATE(208), - [sym_inline_link] = STATE(208), - [sym_link_text] = STATE(663), - [sym__comment_with_spaces] = STATE(208), - [sym_span] = STATE(208), - [sym_raw_inline] = STATE(208), - [sym_math] = STATE(208), - [sym_verbatim] = STATE(208), - [sym__todo_highlights] = STATE(208), - [sym_todo] = STATE(208), - [sym_note] = STATE(208), - [sym__symbol_fallback] = STATE(208), - [aux_sym__text] = STATE(131), - [aux_sym__inline_repeat1] = STATE(130), - [anon_sym_LBRACE_] = ACTIONS(175), - [anon_sym__] = ACTIONS(177), - [anon_sym_LBRACE_STAR] = ACTIONS(179), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_LBRACE_CARET] = ACTIONS(183), - [anon_sym_CARET] = ACTIONS(183), - [anon_sym_LBRACE_TILDE] = ACTIONS(185), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_LBRACE_EQ] = ACTIONS(187), - [anon_sym_LBRACE_PLUS] = ACTIONS(189), - [anon_sym_LBRACE_DASH] = ACTIONS(191), - [anon_sym_BSLASH] = ACTIONS(193), - [sym_quotation_marks] = ACTIONS(195), - [sym_ellipsis] = ACTIONS(195), - [sym_em_dash] = ACTIONS(195), - [sym_en_dash] = ACTIONS(197), - [sym_backslash_escape] = ACTIONS(197), - [anon_sym_LT] = ACTIONS(199), - [sym_symbol] = ACTIONS(195), - [anon_sym_LBRACK_CARET] = ACTIONS(201), - [anon_sym_BANG_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE2] = ACTIONS(197), - [anon_sym_DOLLAR] = ACTIONS(207), - [anon_sym_TODO] = ACTIONS(209), - [anon_sym_WIP] = ACTIONS(209), - [anon_sym_NOTE] = ACTIONS(211), - [anon_sym_INFO] = ACTIONS(211), - [anon_sym_XXX] = ACTIONS(211), - [sym_fixme] = ACTIONS(195), - [sym__whitespace1] = ACTIONS(213), - [sym__newline] = ACTIONS(215), - [aux_sym__text_token1] = ACTIONS(217), - [sym__verbatim_begin] = ACTIONS(219), + [sym__inline] = STATE(1070), + [sym__element] = STATE(70), + [sym_emphasis] = STATE(136), + [sym_emphasis_begin] = STATE(1161), + [sym_strong] = STATE(136), + [sym_strong_begin] = STATE(1162), + [sym_superscript] = STATE(136), + [sym_superscript_begin] = STATE(1163), + [sym_subscript] = STATE(136), + [sym_subscript_begin] = STATE(1164), + [sym_highlighted] = STATE(136), + [sym_highlighted_begin] = STATE(1165), + [sym_insert] = STATE(136), + [sym_insert_begin] = STATE(1166), + [sym_delete] = STATE(136), + [sym_delete_begin] = STATE(1167), + [sym_hard_line_break] = STATE(136), + [sym__smart_punctuation] = STATE(136), + [sym_autolink] = STATE(136), + [sym_footnote_reference] = STATE(136), + [sym__image] = STATE(136), + [sym_full_reference_image] = STATE(136), + [sym_collapsed_reference_image] = STATE(136), + [sym_inline_image] = STATE(136), + [sym__image_description] = STATE(690), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(136), + [sym_full_reference_link] = STATE(136), + [sym_collapsed_reference_link] = STATE(136), + [sym_inline_link] = STATE(136), + [sym_link_text] = STATE(691), + [sym_span] = STATE(70), + [sym__bracketed_text] = STATE(653), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(136), + [sym_raw_inline] = STATE(136), + [sym_math] = STATE(136), + [sym_verbatim] = STATE(136), + [sym__todo_highlights] = STATE(136), + [sym_todo] = STATE(136), + [sym_note] = STATE(136), + [sym__symbol_fallback] = STATE(136), + [aux_sym__text] = STATE(125), + [aux_sym__inline_repeat1] = STATE(70), + [anon_sym_LBRACE_] = ACTIONS(97), + [anon_sym__] = ACTIONS(99), + [anon_sym_LBRACE_STAR] = ACTIONS(101), + [anon_sym_STAR] = ACTIONS(103), + [anon_sym_LBRACE_CARET] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [anon_sym_LBRACE_TILDE] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(107), + [anon_sym_LBRACE_EQ] = ACTIONS(109), + [anon_sym_LBRACE_PLUS] = ACTIONS(111), + [anon_sym_LBRACE_DASH] = ACTIONS(113), + [anon_sym_BSLASH] = ACTIONS(115), + [sym_quotation_marks] = ACTIONS(117), + [sym_ellipsis] = ACTIONS(117), + [sym_em_dash] = ACTIONS(117), + [sym_en_dash] = ACTIONS(119), + [sym_backslash_escape] = ACTIONS(119), + [anon_sym_LT] = ACTIONS(121), + [sym_symbol] = ACTIONS(117), + [anon_sym_LBRACK_CARET] = ACTIONS(123), + [anon_sym_BANG_LBRACK] = ACTIONS(125), + [anon_sym_LBRACK] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_TODO] = ACTIONS(131), + [anon_sym_WIP] = ACTIONS(131), + [anon_sym_NOTE] = ACTIONS(133), + [anon_sym_INFO] = ACTIONS(133), + [anon_sym_XXX] = ACTIONS(133), + [sym_fixme] = ACTIONS(117), + [sym__whitespace1] = ACTIONS(135), + [sym__newline] = ACTIONS(137), + [aux_sym__text_token1] = ACTIONS(139), + [sym__verbatim_begin] = ACTIONS(141), }, [56] = { - [sym__inline] = STATE(973), - [sym__element] = STATE(79), - [sym_emphasis] = STATE(161), - [sym_emphasis_begin] = STATE(1081), - [sym_strong] = STATE(161), - [sym_strong_begin] = STATE(1082), - [sym_superscript] = STATE(161), - [sym_superscript_begin] = STATE(1083), - [sym_subscript] = STATE(161), - [sym_subscript_begin] = STATE(1084), - [sym_highlighted] = STATE(161), - [sym_highlighted_begin] = STATE(1085), - [sym_insert] = STATE(161), - [sym_insert_begin] = STATE(1086), - [sym_delete] = STATE(161), - [sym_delete_begin] = STATE(1087), - [sym_hard_line_break] = STATE(161), - [sym__smart_punctuation] = STATE(161), - [sym_autolink] = STATE(161), - [sym_footnote_reference] = STATE(161), - [sym__image] = STATE(161), - [sym_full_reference_image] = STATE(161), - [sym_collapsed_reference_image] = STATE(161), - [sym_inline_image] = STATE(161), - [sym__image_description] = STATE(692), - [sym__link] = STATE(161), - [sym_full_reference_link] = STATE(161), - [sym_collapsed_reference_link] = STATE(161), - [sym_inline_link] = STATE(161), - [sym_link_text] = STATE(687), - [sym__comment_with_spaces] = STATE(161), - [sym_span] = STATE(161), - [sym_raw_inline] = STATE(161), - [sym_math] = STATE(161), - [sym_verbatim] = STATE(161), - [sym__todo_highlights] = STATE(161), - [sym_todo] = STATE(161), - [sym_note] = STATE(161), - [sym__symbol_fallback] = STATE(161), - [aux_sym__text] = STATE(149), - [aux_sym__inline_repeat1] = STATE(79), - [anon_sym_LBRACE_] = ACTIONS(359), - [anon_sym__] = ACTIONS(361), - [anon_sym_LBRACE_STAR] = ACTIONS(363), - [anon_sym_STAR] = ACTIONS(365), - [anon_sym_LBRACE_CARET] = ACTIONS(367), - [anon_sym_CARET] = ACTIONS(367), - [anon_sym_LBRACE_TILDE] = ACTIONS(369), - [anon_sym_TILDE] = ACTIONS(369), - [anon_sym_LBRACE_EQ] = ACTIONS(371), - [anon_sym_LBRACE_PLUS] = ACTIONS(373), - [anon_sym_LBRACE_DASH] = ACTIONS(375), - [anon_sym_BSLASH] = ACTIONS(377), - [sym_quotation_marks] = ACTIONS(379), - [sym_ellipsis] = ACTIONS(379), - [sym_em_dash] = ACTIONS(379), - [sym_en_dash] = ACTIONS(381), - [sym_backslash_escape] = ACTIONS(381), - [anon_sym_LT] = ACTIONS(383), - [sym_symbol] = ACTIONS(379), - [anon_sym_LBRACK_CARET] = ACTIONS(385), - [anon_sym_BANG_LBRACK] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(389), - [anon_sym_LBRACE2] = ACTIONS(381), - [anon_sym_DOLLAR] = ACTIONS(391), - [anon_sym_TODO] = ACTIONS(393), - [anon_sym_WIP] = ACTIONS(393), - [anon_sym_NOTE] = ACTIONS(395), - [anon_sym_INFO] = ACTIONS(395), - [anon_sym_XXX] = ACTIONS(395), - [sym_fixme] = ACTIONS(379), - [sym__whitespace1] = ACTIONS(397), - [sym__newline] = ACTIONS(399), - [aux_sym__text_token1] = ACTIONS(401), - [sym__verbatim_begin] = ACTIONS(403), + [sym__inline] = STATE(1062), + [sym__element] = STATE(13), + [sym_emphasis] = STATE(141), + [sym_emphasis_begin] = STATE(1168), + [sym_strong] = STATE(141), + [sym_strong_begin] = STATE(1169), + [sym_superscript] = STATE(141), + [sym_superscript_begin] = STATE(1170), + [sym_subscript] = STATE(141), + [sym_subscript_begin] = STATE(1171), + [sym_highlighted] = STATE(141), + [sym_highlighted_begin] = STATE(1172), + [sym_insert] = STATE(141), + [sym_insert_begin] = STATE(1173), + [sym_delete] = STATE(141), + [sym_delete_begin] = STATE(1174), + [sym_hard_line_break] = STATE(141), + [sym__smart_punctuation] = STATE(141), + [sym_autolink] = STATE(141), + [sym_footnote_reference] = STATE(141), + [sym__image] = STATE(141), + [sym_full_reference_image] = STATE(141), + [sym_collapsed_reference_image] = STATE(141), + [sym_inline_image] = STATE(141), + [sym__image_description] = STATE(674), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(141), + [sym_full_reference_link] = STATE(141), + [sym_collapsed_reference_link] = STATE(141), + [sym_inline_link] = STATE(141), + [sym_link_text] = STATE(672), + [sym_span] = STATE(13), + [sym__bracketed_text] = STATE(655), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(141), + [sym_raw_inline] = STATE(141), + [sym_math] = STATE(141), + [sym_verbatim] = STATE(141), + [sym__todo_highlights] = STATE(141), + [sym_todo] = STATE(141), + [sym_note] = STATE(141), + [sym__symbol_fallback] = STATE(141), + [aux_sym__text] = STATE(128), + [aux_sym__inline_repeat1] = STATE(13), + [anon_sym_LBRACE_] = ACTIONS(281), + [anon_sym__] = ACTIONS(283), + [anon_sym_LBRACE_STAR] = ACTIONS(285), + [anon_sym_STAR] = ACTIONS(287), + [anon_sym_LBRACE_CARET] = ACTIONS(289), + [anon_sym_CARET] = ACTIONS(289), + [anon_sym_LBRACE_TILDE] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(291), + [anon_sym_LBRACE_EQ] = ACTIONS(293), + [anon_sym_LBRACE_PLUS] = ACTIONS(295), + [anon_sym_LBRACE_DASH] = ACTIONS(297), + [anon_sym_BSLASH] = ACTIONS(299), + [sym_quotation_marks] = ACTIONS(301), + [sym_ellipsis] = ACTIONS(301), + [sym_em_dash] = ACTIONS(301), + [sym_en_dash] = ACTIONS(303), + [sym_backslash_escape] = ACTIONS(303), + [anon_sym_LT] = ACTIONS(305), + [sym_symbol] = ACTIONS(301), + [anon_sym_LBRACK_CARET] = ACTIONS(307), + [anon_sym_BANG_LBRACK] = ACTIONS(309), + [anon_sym_LBRACK] = ACTIONS(311), + [anon_sym_DOLLAR] = ACTIONS(313), + [anon_sym_TODO] = ACTIONS(315), + [anon_sym_WIP] = ACTIONS(315), + [anon_sym_NOTE] = ACTIONS(317), + [anon_sym_INFO] = ACTIONS(317), + [anon_sym_XXX] = ACTIONS(317), + [sym_fixme] = ACTIONS(301), + [sym__whitespace1] = ACTIONS(319), + [sym__newline] = ACTIONS(321), + [aux_sym__text_token1] = ACTIONS(323), + [sym__verbatim_begin] = ACTIONS(325), }, [57] = { - [sym__inline] = STATE(814), - [sym__element] = STATE(93), - [sym_emphasis] = STATE(197), - [sym_emphasis_begin] = STATE(1088), - [sym_strong] = STATE(197), - [sym_strong_begin] = STATE(1089), - [sym_superscript] = STATE(197), - [sym_superscript_begin] = STATE(1090), - [sym_subscript] = STATE(197), - [sym_subscript_begin] = STATE(1091), - [sym_highlighted] = STATE(197), - [sym_highlighted_begin] = STATE(1092), - [sym_insert] = STATE(197), - [sym_insert_begin] = STATE(1093), - [sym_delete] = STATE(197), - [sym_delete_begin] = STATE(1094), - [sym_hard_line_break] = STATE(197), - [sym__smart_punctuation] = STATE(197), - [sym_autolink] = STATE(197), - [sym_footnote_reference] = STATE(197), - [sym__image] = STATE(197), - [sym_full_reference_image] = STATE(197), - [sym_collapsed_reference_image] = STATE(197), - [sym_inline_image] = STATE(197), - [sym__image_description] = STATE(697), - [sym__link] = STATE(197), - [sym_full_reference_link] = STATE(197), - [sym_collapsed_reference_link] = STATE(197), - [sym_inline_link] = STATE(197), - [sym_link_text] = STATE(682), - [sym__comment_with_spaces] = STATE(197), - [sym_span] = STATE(197), - [sym_raw_inline] = STATE(197), - [sym_math] = STATE(197), - [sym_verbatim] = STATE(197), - [sym__todo_highlights] = STATE(197), - [sym_todo] = STATE(197), - [sym_note] = STATE(197), - [sym__symbol_fallback] = STATE(197), - [aux_sym__text] = STATE(134), - [aux_sym__inline_repeat1] = STATE(93), - [anon_sym_LBRACE_] = ACTIONS(313), - [anon_sym__] = ACTIONS(315), - [anon_sym_LBRACE_STAR] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_LBRACE_CARET] = ACTIONS(321), - [anon_sym_CARET] = ACTIONS(321), - [anon_sym_LBRACE_TILDE] = ACTIONS(323), - [anon_sym_TILDE] = ACTIONS(323), - [anon_sym_LBRACE_EQ] = ACTIONS(325), - [anon_sym_LBRACE_PLUS] = ACTIONS(327), - [anon_sym_LBRACE_DASH] = ACTIONS(329), - [anon_sym_BSLASH] = ACTIONS(331), - [sym_quotation_marks] = ACTIONS(333), - [sym_ellipsis] = ACTIONS(333), - [sym_em_dash] = ACTIONS(333), - [sym_en_dash] = ACTIONS(335), - [sym_backslash_escape] = ACTIONS(335), - [anon_sym_LT] = ACTIONS(337), - [sym_symbol] = ACTIONS(333), - [anon_sym_LBRACK_CARET] = ACTIONS(339), - [anon_sym_BANG_LBRACK] = ACTIONS(341), - [anon_sym_LBRACK] = ACTIONS(343), - [anon_sym_LBRACE2] = ACTIONS(335), - [anon_sym_DOLLAR] = ACTIONS(345), - [anon_sym_TODO] = ACTIONS(347), - [anon_sym_WIP] = ACTIONS(347), - [anon_sym_NOTE] = ACTIONS(349), - [anon_sym_INFO] = ACTIONS(349), - [anon_sym_XXX] = ACTIONS(349), - [sym_fixme] = ACTIONS(333), - [sym__whitespace1] = ACTIONS(351), - [sym__newline] = ACTIONS(353), - [aux_sym__text_token1] = ACTIONS(355), - [sym__verbatim_begin] = ACTIONS(357), + [sym__inline] = STATE(1061), + [sym__element] = STATE(103), + [sym_emphasis] = STATE(139), + [sym_emphasis_begin] = STATE(1175), + [sym_strong] = STATE(139), + [sym_strong_begin] = STATE(1176), + [sym_superscript] = STATE(139), + [sym_superscript_begin] = STATE(1177), + [sym_subscript] = STATE(139), + [sym_subscript_begin] = STATE(1178), + [sym_highlighted] = STATE(139), + [sym_highlighted_begin] = STATE(1179), + [sym_insert] = STATE(139), + [sym_insert_begin] = STATE(1180), + [sym_delete] = STATE(139), + [sym_delete_begin] = STATE(1181), + [sym_hard_line_break] = STATE(139), + [sym__smart_punctuation] = STATE(139), + [sym_autolink] = STATE(139), + [sym_footnote_reference] = STATE(139), + [sym__image] = STATE(139), + [sym_full_reference_image] = STATE(139), + [sym_collapsed_reference_image] = STATE(139), + [sym_inline_image] = STATE(139), + [sym__image_description] = STATE(682), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(139), + [sym_full_reference_link] = STATE(139), + [sym_collapsed_reference_link] = STATE(139), + [sym_inline_link] = STATE(139), + [sym_link_text] = STATE(681), + [sym_span] = STATE(103), + [sym__bracketed_text] = STATE(656), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(139), + [sym_raw_inline] = STATE(139), + [sym_math] = STATE(139), + [sym_verbatim] = STATE(139), + [sym__todo_highlights] = STATE(139), + [sym_todo] = STATE(139), + [sym_note] = STATE(139), + [sym__symbol_fallback] = STATE(139), + [aux_sym__text] = STATE(129), + [aux_sym__inline_repeat1] = STATE(103), + [anon_sym_LBRACE_] = ACTIONS(235), + [anon_sym__] = ACTIONS(237), + [anon_sym_LBRACE_STAR] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(241), + [anon_sym_LBRACE_CARET] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(243), + [anon_sym_LBRACE_TILDE] = ACTIONS(245), + [anon_sym_TILDE] = ACTIONS(245), + [anon_sym_LBRACE_EQ] = ACTIONS(247), + [anon_sym_LBRACE_PLUS] = ACTIONS(249), + [anon_sym_LBRACE_DASH] = ACTIONS(251), + [anon_sym_BSLASH] = ACTIONS(253), + [sym_quotation_marks] = ACTIONS(255), + [sym_ellipsis] = ACTIONS(255), + [sym_em_dash] = ACTIONS(255), + [sym_en_dash] = ACTIONS(257), + [sym_backslash_escape] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(259), + [sym_symbol] = ACTIONS(255), + [anon_sym_LBRACK_CARET] = ACTIONS(261), + [anon_sym_BANG_LBRACK] = ACTIONS(263), + [anon_sym_LBRACK] = ACTIONS(265), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_TODO] = ACTIONS(269), + [anon_sym_WIP] = ACTIONS(269), + [anon_sym_NOTE] = ACTIONS(271), + [anon_sym_INFO] = ACTIONS(271), + [anon_sym_XXX] = ACTIONS(271), + [sym_fixme] = ACTIONS(255), + [sym__whitespace1] = ACTIONS(273), + [sym__newline] = ACTIONS(275), + [aux_sym__text_token1] = ACTIONS(277), + [sym__verbatim_begin] = ACTIONS(279), }, [58] = { - [sym__inline] = STATE(971), - [sym__element] = STATE(115), - [sym_emphasis] = STATE(192), - [sym_emphasis_begin] = STATE(1095), - [sym_strong] = STATE(192), - [sym_strong_begin] = STATE(1096), - [sym_superscript] = STATE(192), - [sym_superscript_begin] = STATE(1097), - [sym_subscript] = STATE(192), - [sym_subscript_begin] = STATE(1098), - [sym_highlighted] = STATE(192), - [sym_highlighted_begin] = STATE(1099), - [sym_insert] = STATE(192), - [sym_insert_begin] = STATE(1100), - [sym_delete] = STATE(192), - [sym_delete_begin] = STATE(1101), - [sym_hard_line_break] = STATE(192), - [sym__smart_punctuation] = STATE(192), - [sym_autolink] = STATE(192), - [sym_footnote_reference] = STATE(192), - [sym__image] = STATE(192), - [sym_full_reference_image] = STATE(192), - [sym_collapsed_reference_image] = STATE(192), - [sym_inline_image] = STATE(192), - [sym__image_description] = STATE(684), - [sym__link] = STATE(192), - [sym_full_reference_link] = STATE(192), - [sym_collapsed_reference_link] = STATE(192), - [sym_inline_link] = STATE(192), - [sym_link_text] = STATE(683), - [sym__comment_with_spaces] = STATE(192), - [sym_span] = STATE(192), - [sym_raw_inline] = STATE(192), - [sym_math] = STATE(192), - [sym_verbatim] = STATE(192), - [sym__todo_highlights] = STATE(192), - [sym_todo] = STATE(192), - [sym_note] = STATE(192), - [sym__symbol_fallback] = STATE(192), - [aux_sym__text] = STATE(141), - [aux_sym__inline_repeat1] = STATE(115), - [anon_sym_LBRACE_] = ACTIONS(129), - [anon_sym__] = ACTIONS(131), - [anon_sym_LBRACE_STAR] = ACTIONS(133), - [anon_sym_STAR] = ACTIONS(135), - [anon_sym_LBRACE_CARET] = ACTIONS(137), - [anon_sym_CARET] = ACTIONS(137), - [anon_sym_LBRACE_TILDE] = ACTIONS(139), - [anon_sym_TILDE] = ACTIONS(139), - [anon_sym_LBRACE_EQ] = ACTIONS(141), - [anon_sym_LBRACE_PLUS] = ACTIONS(143), - [anon_sym_LBRACE_DASH] = ACTIONS(145), - [anon_sym_BSLASH] = ACTIONS(147), - [sym_quotation_marks] = ACTIONS(149), - [sym_ellipsis] = ACTIONS(149), - [sym_em_dash] = ACTIONS(149), - [sym_en_dash] = ACTIONS(151), - [sym_backslash_escape] = ACTIONS(151), - [anon_sym_LT] = ACTIONS(153), - [sym_symbol] = ACTIONS(149), - [anon_sym_LBRACK_CARET] = ACTIONS(155), - [anon_sym_BANG_LBRACK] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LBRACE2] = ACTIONS(151), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_TODO] = ACTIONS(163), - [anon_sym_WIP] = ACTIONS(163), - [anon_sym_NOTE] = ACTIONS(165), - [anon_sym_INFO] = ACTIONS(165), - [anon_sym_XXX] = ACTIONS(165), - [sym_fixme] = ACTIONS(149), - [sym__whitespace1] = ACTIONS(167), - [sym__newline] = ACTIONS(169), - [aux_sym__text_token1] = ACTIONS(171), - [sym__verbatim_begin] = ACTIONS(173), + [sym__inline] = STATE(1060), + [sym__element] = STATE(21), + [sym_emphasis] = STATE(134), + [sym_emphasis_begin] = STATE(1182), + [sym_strong] = STATE(134), + [sym_strong_begin] = STATE(1183), + [sym_superscript] = STATE(134), + [sym_superscript_begin] = STATE(1184), + [sym_subscript] = STATE(134), + [sym_subscript_begin] = STATE(1185), + [sym_highlighted] = STATE(134), + [sym_highlighted_begin] = STATE(1186), + [sym_insert] = STATE(134), + [sym_insert_begin] = STATE(1187), + [sym_delete] = STATE(134), + [sym_delete_begin] = STATE(1188), + [sym_hard_line_break] = STATE(134), + [sym__smart_punctuation] = STATE(134), + [sym_autolink] = STATE(134), + [sym_footnote_reference] = STATE(134), + [sym__image] = STATE(134), + [sym_full_reference_image] = STATE(134), + [sym_collapsed_reference_image] = STATE(134), + [sym_inline_image] = STATE(134), + [sym__image_description] = STATE(677), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(134), + [sym_full_reference_link] = STATE(134), + [sym_collapsed_reference_link] = STATE(134), + [sym_inline_link] = STATE(134), + [sym_link_text] = STATE(675), + [sym_span] = STATE(21), + [sym__bracketed_text] = STATE(660), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(134), + [sym_raw_inline] = STATE(134), + [sym_math] = STATE(134), + [sym_verbatim] = STATE(134), + [sym__todo_highlights] = STATE(134), + [sym_todo] = STATE(134), + [sym_note] = STATE(134), + [sym__symbol_fallback] = STATE(134), + [aux_sym__text] = STATE(127), + [aux_sym__inline_repeat1] = STATE(21), + [anon_sym_LBRACE_] = ACTIONS(189), + [anon_sym__] = ACTIONS(191), + [anon_sym_LBRACE_STAR] = ACTIONS(193), + [anon_sym_STAR] = ACTIONS(195), + [anon_sym_LBRACE_CARET] = ACTIONS(197), + [anon_sym_CARET] = ACTIONS(197), + [anon_sym_LBRACE_TILDE] = ACTIONS(199), + [anon_sym_TILDE] = ACTIONS(199), + [anon_sym_LBRACE_EQ] = ACTIONS(201), + [anon_sym_LBRACE_PLUS] = ACTIONS(203), + [anon_sym_LBRACE_DASH] = ACTIONS(205), + [anon_sym_BSLASH] = ACTIONS(207), + [sym_quotation_marks] = ACTIONS(209), + [sym_ellipsis] = ACTIONS(209), + [sym_em_dash] = ACTIONS(209), + [sym_en_dash] = ACTIONS(211), + [sym_backslash_escape] = ACTIONS(211), + [anon_sym_LT] = ACTIONS(213), + [sym_symbol] = ACTIONS(209), + [anon_sym_LBRACK_CARET] = ACTIONS(215), + [anon_sym_BANG_LBRACK] = ACTIONS(217), + [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_DOLLAR] = ACTIONS(221), + [anon_sym_TODO] = ACTIONS(223), + [anon_sym_WIP] = ACTIONS(223), + [anon_sym_NOTE] = ACTIONS(225), + [anon_sym_INFO] = ACTIONS(225), + [anon_sym_XXX] = ACTIONS(225), + [sym_fixme] = ACTIONS(209), + [sym__whitespace1] = ACTIONS(227), + [sym__newline] = ACTIONS(229), + [aux_sym__text_token1] = ACTIONS(231), + [sym__verbatim_begin] = ACTIONS(233), }, [59] = { - [sym__inline] = STATE(970), - [sym__element] = STATE(111), - [sym_emphasis] = STATE(186), - [sym_emphasis_begin] = STATE(1102), - [sym_strong] = STATE(186), - [sym_strong_begin] = STATE(1103), - [sym_superscript] = STATE(186), - [sym_superscript_begin] = STATE(1104), - [sym_subscript] = STATE(186), - [sym_subscript_begin] = STATE(1105), - [sym_highlighted] = STATE(186), - [sym_highlighted_begin] = STATE(1106), - [sym_insert] = STATE(186), - [sym_insert_begin] = STATE(1107), - [sym_delete] = STATE(186), - [sym_delete_begin] = STATE(1108), - [sym_hard_line_break] = STATE(186), - [sym__smart_punctuation] = STATE(186), - [sym_autolink] = STATE(186), - [sym_footnote_reference] = STATE(186), - [sym__image] = STATE(186), - [sym_full_reference_image] = STATE(186), - [sym_collapsed_reference_image] = STATE(186), - [sym_inline_image] = STATE(186), - [sym__image_description] = STATE(673), - [sym__link] = STATE(186), - [sym_full_reference_link] = STATE(186), - [sym_collapsed_reference_link] = STATE(186), - [sym_inline_link] = STATE(186), - [sym_link_text] = STATE(672), - [sym__comment_with_spaces] = STATE(186), - [sym_span] = STATE(186), - [sym_raw_inline] = STATE(186), - [sym_math] = STATE(186), - [sym_verbatim] = STATE(186), - [sym__todo_highlights] = STATE(186), - [sym_todo] = STATE(186), - [sym_note] = STATE(186), - [sym__symbol_fallback] = STATE(186), - [aux_sym__text] = STATE(155), - [aux_sym__inline_repeat1] = STATE(111), - [anon_sym_LBRACE_] = ACTIONS(267), - [anon_sym__] = ACTIONS(269), - [anon_sym_LBRACE_STAR] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_LBRACE_CARET] = ACTIONS(275), - [anon_sym_CARET] = ACTIONS(275), - [anon_sym_LBRACE_TILDE] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(277), - [anon_sym_LBRACE_EQ] = ACTIONS(279), - [anon_sym_LBRACE_PLUS] = ACTIONS(281), - [anon_sym_LBRACE_DASH] = ACTIONS(283), - [anon_sym_BSLASH] = ACTIONS(285), - [sym_quotation_marks] = ACTIONS(287), - [sym_ellipsis] = ACTIONS(287), - [sym_em_dash] = ACTIONS(287), - [sym_en_dash] = ACTIONS(289), - [sym_backslash_escape] = ACTIONS(289), - [anon_sym_LT] = ACTIONS(291), - [sym_symbol] = ACTIONS(287), - [anon_sym_LBRACK_CARET] = ACTIONS(293), - [anon_sym_BANG_LBRACK] = ACTIONS(295), - [anon_sym_LBRACK] = ACTIONS(297), - [anon_sym_LBRACE2] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(299), - [anon_sym_TODO] = ACTIONS(301), - [anon_sym_WIP] = ACTIONS(301), - [anon_sym_NOTE] = ACTIONS(303), - [anon_sym_INFO] = ACTIONS(303), - [anon_sym_XXX] = ACTIONS(303), - [sym_fixme] = ACTIONS(287), - [sym__whitespace1] = ACTIONS(305), - [sym__newline] = ACTIONS(307), - [aux_sym__text_token1] = ACTIONS(309), - [sym__verbatim_begin] = ACTIONS(311), + [sym__inline] = STATE(873), + [sym__element] = STATE(105), + [sym_emphasis] = STATE(140), + [sym_emphasis_begin] = STATE(1154), + [sym_strong] = STATE(140), + [sym_strong_begin] = STATE(1155), + [sym_superscript] = STATE(140), + [sym_superscript_begin] = STATE(1156), + [sym_subscript] = STATE(140), + [sym_subscript_begin] = STATE(1157), + [sym_highlighted] = STATE(140), + [sym_highlighted_begin] = STATE(1158), + [sym_insert] = STATE(140), + [sym_insert_begin] = STATE(1159), + [sym_delete] = STATE(140), + [sym_delete_begin] = STATE(1160), + [sym_hard_line_break] = STATE(140), + [sym__smart_punctuation] = STATE(140), + [sym_autolink] = STATE(140), + [sym_footnote_reference] = STATE(140), + [sym__image] = STATE(140), + [sym_full_reference_image] = STATE(140), + [sym_collapsed_reference_image] = STATE(140), + [sym_inline_image] = STATE(140), + [sym__image_description] = STATE(687), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(140), + [sym_full_reference_link] = STATE(140), + [sym_collapsed_reference_link] = STATE(140), + [sym_inline_link] = STATE(140), + [sym_link_text] = STATE(688), + [sym_span] = STATE(105), + [sym__bracketed_text] = STATE(654), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(140), + [sym_raw_inline] = STATE(140), + [sym_math] = STATE(140), + [sym_verbatim] = STATE(140), + [sym__todo_highlights] = STATE(140), + [sym_todo] = STATE(140), + [sym_note] = STATE(140), + [sym__symbol_fallback] = STATE(140), + [aux_sym__text] = STATE(131), + [aux_sym__inline_repeat1] = STATE(105), + [anon_sym_LBRACE_] = ACTIONS(327), + [anon_sym__] = ACTIONS(329), + [anon_sym_LBRACE_STAR] = ACTIONS(331), + [anon_sym_STAR] = ACTIONS(333), + [anon_sym_LBRACE_CARET] = ACTIONS(335), + [anon_sym_CARET] = ACTIONS(335), + [anon_sym_LBRACE_TILDE] = ACTIONS(337), + [anon_sym_TILDE] = ACTIONS(337), + [anon_sym_LBRACE_EQ] = ACTIONS(339), + [anon_sym_LBRACE_PLUS] = ACTIONS(341), + [anon_sym_LBRACE_DASH] = ACTIONS(343), + [anon_sym_BSLASH] = ACTIONS(345), + [sym_quotation_marks] = ACTIONS(347), + [sym_ellipsis] = ACTIONS(347), + [sym_em_dash] = ACTIONS(347), + [sym_en_dash] = ACTIONS(349), + [sym_backslash_escape] = ACTIONS(349), + [anon_sym_LT] = ACTIONS(351), + [sym_symbol] = ACTIONS(347), + [anon_sym_LBRACK_CARET] = ACTIONS(353), + [anon_sym_BANG_LBRACK] = ACTIONS(355), + [anon_sym_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [anon_sym_TODO] = ACTIONS(361), + [anon_sym_WIP] = ACTIONS(361), + [anon_sym_NOTE] = ACTIONS(363), + [anon_sym_INFO] = ACTIONS(363), + [anon_sym_XXX] = ACTIONS(363), + [sym_fixme] = ACTIONS(347), + [sym__whitespace1] = ACTIONS(365), + [sym__newline] = ACTIONS(367), + [aux_sym__text_token1] = ACTIONS(369), + [sym__verbatim_begin] = ACTIONS(371), }, [60] = { - [sym__inline] = STATE(969), - [sym__element] = STATE(103), - [sym_emphasis] = STATE(180), - [sym_emphasis_begin] = STATE(1109), - [sym_strong] = STATE(180), - [sym_strong_begin] = STATE(1110), - [sym_superscript] = STATE(180), - [sym_superscript_begin] = STATE(1111), - [sym_subscript] = STATE(180), - [sym_subscript_begin] = STATE(1112), - [sym_highlighted] = STATE(180), - [sym_highlighted_begin] = STATE(1113), - [sym_insert] = STATE(180), - [sym_insert_begin] = STATE(1114), - [sym_delete] = STATE(180), - [sym_delete_begin] = STATE(1115), - [sym_hard_line_break] = STATE(180), - [sym__smart_punctuation] = STATE(180), - [sym_autolink] = STATE(180), - [sym_footnote_reference] = STATE(180), - [sym__image] = STATE(180), - [sym_full_reference_image] = STATE(180), - [sym_collapsed_reference_image] = STATE(180), - [sym_inline_image] = STATE(180), - [sym__image_description] = STATE(666), - [sym__link] = STATE(180), - [sym_full_reference_link] = STATE(180), - [sym_collapsed_reference_link] = STATE(180), - [sym_inline_link] = STATE(180), - [sym_link_text] = STATE(664), - [sym__comment_with_spaces] = STATE(180), - [sym_span] = STATE(180), - [sym_raw_inline] = STATE(180), - [sym_math] = STATE(180), - [sym_verbatim] = STATE(180), - [sym__todo_highlights] = STATE(180), - [sym_todo] = STATE(180), - [sym_note] = STATE(180), - [sym__symbol_fallback] = STATE(180), - [aux_sym__text] = STATE(159), - [aux_sym__inline_repeat1] = STATE(103), - [anon_sym_LBRACE_] = ACTIONS(221), - [anon_sym__] = ACTIONS(223), - [anon_sym_LBRACE_STAR] = ACTIONS(225), - [anon_sym_STAR] = ACTIONS(227), - [anon_sym_LBRACE_CARET] = ACTIONS(229), - [anon_sym_CARET] = ACTIONS(229), - [anon_sym_LBRACE_TILDE] = ACTIONS(231), - [anon_sym_TILDE] = ACTIONS(231), - [anon_sym_LBRACE_EQ] = ACTIONS(233), - [anon_sym_LBRACE_PLUS] = ACTIONS(235), - [anon_sym_LBRACE_DASH] = ACTIONS(237), - [anon_sym_BSLASH] = ACTIONS(239), - [sym_quotation_marks] = ACTIONS(241), - [sym_ellipsis] = ACTIONS(241), - [sym_em_dash] = ACTIONS(241), - [sym_en_dash] = ACTIONS(243), - [sym_backslash_escape] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(245), - [sym_symbol] = ACTIONS(241), - [anon_sym_LBRACK_CARET] = ACTIONS(247), - [anon_sym_BANG_LBRACK] = ACTIONS(249), - [anon_sym_LBRACK] = ACTIONS(251), - [anon_sym_LBRACE2] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(253), - [anon_sym_TODO] = ACTIONS(255), - [anon_sym_WIP] = ACTIONS(255), - [anon_sym_NOTE] = ACTIONS(257), - [anon_sym_INFO] = ACTIONS(257), - [anon_sym_XXX] = ACTIONS(257), - [sym_fixme] = ACTIONS(241), - [sym__whitespace1] = ACTIONS(259), - [sym__newline] = ACTIONS(261), - [aux_sym__text_token1] = ACTIONS(263), - [sym__verbatim_begin] = ACTIONS(265), + [sym__inline] = STATE(1059), + [sym__element] = STATE(65), + [sym_emphasis] = STATE(133), + [sym_emphasis_begin] = STATE(1189), + [sym_strong] = STATE(133), + [sym_strong_begin] = STATE(1190), + [sym_superscript] = STATE(133), + [sym_superscript_begin] = STATE(1191), + [sym_subscript] = STATE(133), + [sym_subscript_begin] = STATE(1192), + [sym_highlighted] = STATE(133), + [sym_highlighted_begin] = STATE(1193), + [sym_insert] = STATE(133), + [sym_insert_begin] = STATE(1194), + [sym_delete] = STATE(133), + [sym_delete_begin] = STATE(1195), + [sym_hard_line_break] = STATE(133), + [sym__smart_punctuation] = STATE(133), + [sym_autolink] = STATE(133), + [sym_footnote_reference] = STATE(133), + [sym__image] = STATE(133), + [sym_full_reference_image] = STATE(133), + [sym_collapsed_reference_image] = STATE(133), + [sym_inline_image] = STATE(133), + [sym__image_description] = STATE(670), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(133), + [sym_full_reference_link] = STATE(133), + [sym_collapsed_reference_link] = STATE(133), + [sym_inline_link] = STATE(133), + [sym_link_text] = STATE(663), + [sym_span] = STATE(65), + [sym__bracketed_text] = STATE(662), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(133), + [sym_raw_inline] = STATE(133), + [sym_math] = STATE(133), + [sym_verbatim] = STATE(133), + [sym__todo_highlights] = STATE(133), + [sym_todo] = STATE(133), + [sym_note] = STATE(133), + [sym__symbol_fallback] = STATE(133), + [aux_sym__text] = STATE(123), + [aux_sym__inline_repeat1] = STATE(65), + [anon_sym_LBRACE_] = ACTIONS(143), + [anon_sym__] = ACTIONS(145), + [anon_sym_LBRACE_STAR] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(149), + [anon_sym_LBRACE_CARET] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(151), + [anon_sym_LBRACE_TILDE] = ACTIONS(153), + [anon_sym_TILDE] = ACTIONS(153), + [anon_sym_LBRACE_EQ] = ACTIONS(155), + [anon_sym_LBRACE_PLUS] = ACTIONS(157), + [anon_sym_LBRACE_DASH] = ACTIONS(159), + [anon_sym_BSLASH] = ACTIONS(161), + [sym_quotation_marks] = ACTIONS(163), + [sym_ellipsis] = ACTIONS(163), + [sym_em_dash] = ACTIONS(163), + [sym_en_dash] = ACTIONS(165), + [sym_backslash_escape] = ACTIONS(165), + [anon_sym_LT] = ACTIONS(167), + [sym_symbol] = ACTIONS(163), + [anon_sym_LBRACK_CARET] = ACTIONS(169), + [anon_sym_BANG_LBRACK] = ACTIONS(171), + [anon_sym_LBRACK] = ACTIONS(173), + [anon_sym_DOLLAR] = ACTIONS(175), + [anon_sym_TODO] = ACTIONS(177), + [anon_sym_WIP] = ACTIONS(177), + [anon_sym_NOTE] = ACTIONS(179), + [anon_sym_INFO] = ACTIONS(179), + [anon_sym_XXX] = ACTIONS(179), + [sym_fixme] = ACTIONS(163), + [sym__whitespace1] = ACTIONS(181), + [sym__newline] = ACTIONS(183), + [aux_sym__text_token1] = ACTIONS(185), + [sym__verbatim_begin] = ACTIONS(187), }, [61] = { - [sym__inline] = STATE(968), - [sym__element] = STATE(66), - [sym_emphasis] = STATE(171), - [sym_emphasis_begin] = STATE(1116), - [sym_strong] = STATE(171), - [sym_strong_begin] = STATE(1117), - [sym_superscript] = STATE(171), - [sym_superscript_begin] = STATE(1118), - [sym_subscript] = STATE(171), - [sym_subscript_begin] = STATE(1119), - [sym_highlighted] = STATE(171), - [sym_highlighted_begin] = STATE(1120), - [sym_insert] = STATE(171), - [sym_insert_begin] = STATE(1121), - [sym_delete] = STATE(171), - [sym_delete_begin] = STATE(1122), - [sym_hard_line_break] = STATE(171), - [sym__smart_punctuation] = STATE(171), - [sym_autolink] = STATE(171), - [sym_footnote_reference] = STATE(171), - [sym__image] = STATE(171), - [sym_full_reference_image] = STATE(171), - [sym_collapsed_reference_image] = STATE(171), - [sym_inline_image] = STATE(171), - [sym__image_description] = STATE(674), - [sym__link] = STATE(171), - [sym_full_reference_link] = STATE(171), - [sym_collapsed_reference_link] = STATE(171), - [sym_inline_link] = STATE(171), + [sym__inline] = STATE(911), + [sym__element] = STATE(21), + [sym_emphasis] = STATE(134), + [sym_emphasis_begin] = STATE(1182), + [sym_strong] = STATE(134), + [sym_strong_begin] = STATE(1183), + [sym_superscript] = STATE(134), + [sym_superscript_begin] = STATE(1184), + [sym_subscript] = STATE(134), + [sym_subscript_begin] = STATE(1185), + [sym_highlighted] = STATE(134), + [sym_highlighted_begin] = STATE(1186), + [sym_insert] = STATE(134), + [sym_insert_begin] = STATE(1187), + [sym_delete] = STATE(134), + [sym_delete_begin] = STATE(1188), + [sym_hard_line_break] = STATE(134), + [sym__smart_punctuation] = STATE(134), + [sym_autolink] = STATE(134), + [sym_footnote_reference] = STATE(134), + [sym__image] = STATE(134), + [sym_full_reference_image] = STATE(134), + [sym_collapsed_reference_image] = STATE(134), + [sym_inline_image] = STATE(134), + [sym__image_description] = STATE(677), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(134), + [sym_full_reference_link] = STATE(134), + [sym_collapsed_reference_link] = STATE(134), + [sym_inline_link] = STATE(134), [sym_link_text] = STATE(675), - [sym__comment_with_spaces] = STATE(171), - [sym_span] = STATE(171), - [sym_raw_inline] = STATE(171), - [sym_math] = STATE(171), - [sym_verbatim] = STATE(171), - [sym__todo_highlights] = STATE(171), - [sym_todo] = STATE(171), - [sym_note] = STATE(171), - [sym__symbol_fallback] = STATE(171), - [aux_sym__text] = STATE(146), - [aux_sym__inline_repeat1] = STATE(66), - [anon_sym_LBRACE_] = ACTIONS(451), - [anon_sym__] = ACTIONS(453), - [anon_sym_LBRACE_STAR] = ACTIONS(455), - [anon_sym_STAR] = ACTIONS(457), - [anon_sym_LBRACE_CARET] = ACTIONS(459), - [anon_sym_CARET] = ACTIONS(459), - [anon_sym_LBRACE_TILDE] = ACTIONS(461), - [anon_sym_TILDE] = ACTIONS(461), - [anon_sym_LBRACE_EQ] = ACTIONS(463), - [anon_sym_LBRACE_PLUS] = ACTIONS(465), - [anon_sym_LBRACE_DASH] = ACTIONS(467), - [anon_sym_BSLASH] = ACTIONS(469), - [sym_quotation_marks] = ACTIONS(471), - [sym_ellipsis] = ACTIONS(471), - [sym_em_dash] = ACTIONS(471), - [sym_en_dash] = ACTIONS(473), - [sym_backslash_escape] = ACTIONS(473), - [anon_sym_LT] = ACTIONS(475), - [sym_symbol] = ACTIONS(471), - [anon_sym_LBRACK_CARET] = ACTIONS(477), - [anon_sym_BANG_LBRACK] = ACTIONS(479), - [anon_sym_LBRACK] = ACTIONS(481), - [anon_sym_LBRACE2] = ACTIONS(473), - [anon_sym_DOLLAR] = ACTIONS(483), - [anon_sym_TODO] = ACTIONS(485), - [anon_sym_WIP] = ACTIONS(485), - [anon_sym_NOTE] = ACTIONS(487), - [anon_sym_INFO] = ACTIONS(487), - [anon_sym_XXX] = ACTIONS(487), - [sym_fixme] = ACTIONS(471), - [sym__whitespace1] = ACTIONS(489), - [sym__newline] = ACTIONS(491), - [aux_sym__text_token1] = ACTIONS(493), - [sym__verbatim_begin] = ACTIONS(495), + [sym_span] = STATE(21), + [sym__bracketed_text] = STATE(660), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(134), + [sym_raw_inline] = STATE(134), + [sym_math] = STATE(134), + [sym_verbatim] = STATE(134), + [sym__todo_highlights] = STATE(134), + [sym_todo] = STATE(134), + [sym_note] = STATE(134), + [sym__symbol_fallback] = STATE(134), + [aux_sym__text] = STATE(127), + [aux_sym__inline_repeat1] = STATE(21), + [anon_sym_LBRACE_] = ACTIONS(189), + [anon_sym__] = ACTIONS(191), + [anon_sym_LBRACE_STAR] = ACTIONS(193), + [anon_sym_STAR] = ACTIONS(195), + [anon_sym_LBRACE_CARET] = ACTIONS(197), + [anon_sym_CARET] = ACTIONS(197), + [anon_sym_LBRACE_TILDE] = ACTIONS(199), + [anon_sym_TILDE] = ACTIONS(199), + [anon_sym_LBRACE_EQ] = ACTIONS(201), + [anon_sym_LBRACE_PLUS] = ACTIONS(203), + [anon_sym_LBRACE_DASH] = ACTIONS(205), + [anon_sym_BSLASH] = ACTIONS(207), + [sym_quotation_marks] = ACTIONS(209), + [sym_ellipsis] = ACTIONS(209), + [sym_em_dash] = ACTIONS(209), + [sym_en_dash] = ACTIONS(211), + [sym_backslash_escape] = ACTIONS(211), + [anon_sym_LT] = ACTIONS(213), + [sym_symbol] = ACTIONS(209), + [anon_sym_LBRACK_CARET] = ACTIONS(215), + [anon_sym_BANG_LBRACK] = ACTIONS(217), + [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_DOLLAR] = ACTIONS(221), + [anon_sym_TODO] = ACTIONS(223), + [anon_sym_WIP] = ACTIONS(223), + [anon_sym_NOTE] = ACTIONS(225), + [anon_sym_INFO] = ACTIONS(225), + [anon_sym_XXX] = ACTIONS(225), + [sym_fixme] = ACTIONS(209), + [sym__whitespace1] = ACTIONS(227), + [sym__newline] = ACTIONS(229), + [aux_sym__text_token1] = ACTIONS(231), + [sym__verbatim_begin] = ACTIONS(233), }, [62] = { - [sym__inline] = STATE(851), - [sym__element] = STATE(103), - [sym_emphasis] = STATE(180), - [sym_emphasis_begin] = STATE(1109), - [sym_strong] = STATE(180), - [sym_strong_begin] = STATE(1110), - [sym_superscript] = STATE(180), - [sym_superscript_begin] = STATE(1111), - [sym_subscript] = STATE(180), - [sym_subscript_begin] = STATE(1112), - [sym_highlighted] = STATE(180), - [sym_highlighted_begin] = STATE(1113), - [sym_insert] = STATE(180), - [sym_insert_begin] = STATE(1114), - [sym_delete] = STATE(180), - [sym_delete_begin] = STATE(1115), - [sym_hard_line_break] = STATE(180), - [sym__smart_punctuation] = STATE(180), - [sym_autolink] = STATE(180), - [sym_footnote_reference] = STATE(180), - [sym__image] = STATE(180), - [sym_full_reference_image] = STATE(180), - [sym_collapsed_reference_image] = STATE(180), - [sym_inline_image] = STATE(180), - [sym__image_description] = STATE(666), - [sym__link] = STATE(180), - [sym_full_reference_link] = STATE(180), - [sym_collapsed_reference_link] = STATE(180), - [sym_inline_link] = STATE(180), - [sym_link_text] = STATE(664), - [sym__comment_with_spaces] = STATE(180), - [sym_span] = STATE(180), - [sym_raw_inline] = STATE(180), - [sym_math] = STATE(180), - [sym_verbatim] = STATE(180), - [sym__todo_highlights] = STATE(180), - [sym_todo] = STATE(180), - [sym_note] = STATE(180), - [sym__symbol_fallback] = STATE(180), - [aux_sym__text] = STATE(159), - [aux_sym__inline_repeat1] = STATE(103), - [anon_sym_LBRACE_] = ACTIONS(221), - [anon_sym__] = ACTIONS(223), - [anon_sym_LBRACE_STAR] = ACTIONS(225), - [anon_sym_STAR] = ACTIONS(227), - [anon_sym_LBRACE_CARET] = ACTIONS(229), - [anon_sym_CARET] = ACTIONS(229), - [anon_sym_LBRACE_TILDE] = ACTIONS(231), - [anon_sym_TILDE] = ACTIONS(231), - [anon_sym_LBRACE_EQ] = ACTIONS(233), - [anon_sym_LBRACE_PLUS] = ACTIONS(235), - [anon_sym_LBRACE_DASH] = ACTIONS(237), - [anon_sym_BSLASH] = ACTIONS(239), - [sym_quotation_marks] = ACTIONS(241), - [sym_ellipsis] = ACTIONS(241), - [sym_em_dash] = ACTIONS(241), - [sym_en_dash] = ACTIONS(243), - [sym_backslash_escape] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(245), - [sym_symbol] = ACTIONS(241), - [anon_sym_LBRACK_CARET] = ACTIONS(247), - [anon_sym_BANG_LBRACK] = ACTIONS(249), - [anon_sym_LBRACK] = ACTIONS(251), - [anon_sym_LBRACE2] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(253), - [anon_sym_TODO] = ACTIONS(255), - [anon_sym_WIP] = ACTIONS(255), - [anon_sym_NOTE] = ACTIONS(257), - [anon_sym_INFO] = ACTIONS(257), - [anon_sym_XXX] = ACTIONS(257), - [sym_fixme] = ACTIONS(241), - [sym__whitespace1] = ACTIONS(259), - [sym__newline] = ACTIONS(261), - [aux_sym__text_token1] = ACTIONS(263), - [sym__verbatim_begin] = ACTIONS(265), + [sym__inline] = STATE(879), + [sym__element] = STATE(70), + [sym_emphasis] = STATE(136), + [sym_emphasis_begin] = STATE(1161), + [sym_strong] = STATE(136), + [sym_strong_begin] = STATE(1162), + [sym_superscript] = STATE(136), + [sym_superscript_begin] = STATE(1163), + [sym_subscript] = STATE(136), + [sym_subscript_begin] = STATE(1164), + [sym_highlighted] = STATE(136), + [sym_highlighted_begin] = STATE(1165), + [sym_insert] = STATE(136), + [sym_insert_begin] = STATE(1166), + [sym_delete] = STATE(136), + [sym_delete_begin] = STATE(1167), + [sym_hard_line_break] = STATE(136), + [sym__smart_punctuation] = STATE(136), + [sym_autolink] = STATE(136), + [sym_footnote_reference] = STATE(136), + [sym__image] = STATE(136), + [sym_full_reference_image] = STATE(136), + [sym_collapsed_reference_image] = STATE(136), + [sym_inline_image] = STATE(136), + [sym__image_description] = STATE(690), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(136), + [sym_full_reference_link] = STATE(136), + [sym_collapsed_reference_link] = STATE(136), + [sym_inline_link] = STATE(136), + [sym_link_text] = STATE(691), + [sym_span] = STATE(70), + [sym__bracketed_text] = STATE(653), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(136), + [sym_raw_inline] = STATE(136), + [sym_math] = STATE(136), + [sym_verbatim] = STATE(136), + [sym__todo_highlights] = STATE(136), + [sym_todo] = STATE(136), + [sym_note] = STATE(136), + [sym__symbol_fallback] = STATE(136), + [aux_sym__text] = STATE(125), + [aux_sym__inline_repeat1] = STATE(70), + [anon_sym_LBRACE_] = ACTIONS(97), + [anon_sym__] = ACTIONS(99), + [anon_sym_LBRACE_STAR] = ACTIONS(101), + [anon_sym_STAR] = ACTIONS(103), + [anon_sym_LBRACE_CARET] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [anon_sym_LBRACE_TILDE] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(107), + [anon_sym_LBRACE_EQ] = ACTIONS(109), + [anon_sym_LBRACE_PLUS] = ACTIONS(111), + [anon_sym_LBRACE_DASH] = ACTIONS(113), + [anon_sym_BSLASH] = ACTIONS(115), + [sym_quotation_marks] = ACTIONS(117), + [sym_ellipsis] = ACTIONS(117), + [sym_em_dash] = ACTIONS(117), + [sym_en_dash] = ACTIONS(119), + [sym_backslash_escape] = ACTIONS(119), + [anon_sym_LT] = ACTIONS(121), + [sym_symbol] = ACTIONS(117), + [anon_sym_LBRACK_CARET] = ACTIONS(123), + [anon_sym_BANG_LBRACK] = ACTIONS(125), + [anon_sym_LBRACK] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_TODO] = ACTIONS(131), + [anon_sym_WIP] = ACTIONS(131), + [anon_sym_NOTE] = ACTIONS(133), + [anon_sym_INFO] = ACTIONS(133), + [anon_sym_XXX] = ACTIONS(133), + [sym_fixme] = ACTIONS(117), + [sym__whitespace1] = ACTIONS(135), + [sym__newline] = ACTIONS(137), + [aux_sym__text_token1] = ACTIONS(139), + [sym__verbatim_begin] = ACTIONS(141), }, [63] = { - [sym__inline_without_trailing_space] = STATE(1052), - [sym__element] = STATE(603), - [sym_emphasis] = STATE(177), - [sym_emphasis_begin] = STATE(1067), - [sym_strong] = STATE(177), - [sym_strong_begin] = STATE(1068), - [sym_superscript] = STATE(177), - [sym_superscript_begin] = STATE(1069), - [sym_subscript] = STATE(177), - [sym_subscript_begin] = STATE(1070), - [sym_highlighted] = STATE(177), - [sym_highlighted_begin] = STATE(1071), - [sym_insert] = STATE(177), - [sym_insert_begin] = STATE(1072), - [sym_delete] = STATE(177), - [sym_delete_begin] = STATE(1073), - [sym_hard_line_break] = STATE(177), - [sym__smart_punctuation] = STATE(177), - [sym_autolink] = STATE(177), - [sym_footnote_reference] = STATE(177), - [sym__image] = STATE(177), - [sym_full_reference_image] = STATE(177), - [sym_collapsed_reference_image] = STATE(177), - [sym_inline_image] = STATE(177), - [sym__image_description] = STATE(681), - [sym__link] = STATE(177), - [sym_full_reference_link] = STATE(177), - [sym_collapsed_reference_link] = STATE(177), - [sym_inline_link] = STATE(177), - [sym_link_text] = STATE(668), - [sym__comment_with_spaces] = STATE(177), - [sym_span] = STATE(177), - [sym_raw_inline] = STATE(177), - [sym_math] = STATE(177), - [sym_verbatim] = STATE(177), - [sym__todo_highlights] = STATE(177), - [sym_todo] = STATE(177), - [sym_note] = STATE(177), - [sym__symbol_fallback] = STATE(177), - [aux_sym__text] = STATE(132), - [aux_sym__inline_repeat1] = STATE(128), - [anon_sym_LBRACE_] = ACTIONS(405), - [anon_sym__] = ACTIONS(407), - [anon_sym_LBRACE_STAR] = ACTIONS(409), - [anon_sym_STAR] = ACTIONS(411), - [anon_sym_LBRACE_CARET] = ACTIONS(413), - [anon_sym_CARET] = ACTIONS(413), - [anon_sym_LBRACE_TILDE] = ACTIONS(415), - [anon_sym_TILDE] = ACTIONS(415), - [anon_sym_LBRACE_EQ] = ACTIONS(417), - [anon_sym_LBRACE_PLUS] = ACTIONS(419), - [anon_sym_LBRACE_DASH] = ACTIONS(421), - [anon_sym_BSLASH] = ACTIONS(423), - [sym_quotation_marks] = ACTIONS(425), - [sym_ellipsis] = ACTIONS(425), - [sym_em_dash] = ACTIONS(425), - [sym_en_dash] = ACTIONS(427), - [sym_backslash_escape] = ACTIONS(427), - [anon_sym_LT] = ACTIONS(429), - [sym_symbol] = ACTIONS(425), - [anon_sym_LBRACK_CARET] = ACTIONS(431), - [anon_sym_BANG_LBRACK] = ACTIONS(433), - [anon_sym_LBRACK] = ACTIONS(435), - [anon_sym_LBRACE2] = ACTIONS(427), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_TODO] = ACTIONS(439), - [anon_sym_WIP] = ACTIONS(439), - [anon_sym_NOTE] = ACTIONS(441), - [anon_sym_INFO] = ACTIONS(441), - [anon_sym_XXX] = ACTIONS(441), - [sym_fixme] = ACTIONS(425), - [sym__whitespace1] = ACTIONS(443), - [sym__newline] = ACTIONS(445), - [aux_sym__text_token1] = ACTIONS(447), - [sym__verbatim_begin] = ACTIONS(449), + [sym__inline] = STATE(884), + [sym__element] = STATE(13), + [sym_emphasis] = STATE(141), + [sym_emphasis_begin] = STATE(1168), + [sym_strong] = STATE(141), + [sym_strong_begin] = STATE(1169), + [sym_superscript] = STATE(141), + [sym_superscript_begin] = STATE(1170), + [sym_subscript] = STATE(141), + [sym_subscript_begin] = STATE(1171), + [sym_highlighted] = STATE(141), + [sym_highlighted_begin] = STATE(1172), + [sym_insert] = STATE(141), + [sym_insert_begin] = STATE(1173), + [sym_delete] = STATE(141), + [sym_delete_begin] = STATE(1174), + [sym_hard_line_break] = STATE(141), + [sym__smart_punctuation] = STATE(141), + [sym_autolink] = STATE(141), + [sym_footnote_reference] = STATE(141), + [sym__image] = STATE(141), + [sym_full_reference_image] = STATE(141), + [sym_collapsed_reference_image] = STATE(141), + [sym_inline_image] = STATE(141), + [sym__image_description] = STATE(674), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(141), + [sym_full_reference_link] = STATE(141), + [sym_collapsed_reference_link] = STATE(141), + [sym_inline_link] = STATE(141), + [sym_link_text] = STATE(672), + [sym_span] = STATE(13), + [sym__bracketed_text] = STATE(655), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(141), + [sym_raw_inline] = STATE(141), + [sym_math] = STATE(141), + [sym_verbatim] = STATE(141), + [sym__todo_highlights] = STATE(141), + [sym_todo] = STATE(141), + [sym_note] = STATE(141), + [sym__symbol_fallback] = STATE(141), + [aux_sym__text] = STATE(128), + [aux_sym__inline_repeat1] = STATE(13), + [anon_sym_LBRACE_] = ACTIONS(281), + [anon_sym__] = ACTIONS(283), + [anon_sym_LBRACE_STAR] = ACTIONS(285), + [anon_sym_STAR] = ACTIONS(287), + [anon_sym_LBRACE_CARET] = ACTIONS(289), + [anon_sym_CARET] = ACTIONS(289), + [anon_sym_LBRACE_TILDE] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(291), + [anon_sym_LBRACE_EQ] = ACTIONS(293), + [anon_sym_LBRACE_PLUS] = ACTIONS(295), + [anon_sym_LBRACE_DASH] = ACTIONS(297), + [anon_sym_BSLASH] = ACTIONS(299), + [sym_quotation_marks] = ACTIONS(301), + [sym_ellipsis] = ACTIONS(301), + [sym_em_dash] = ACTIONS(301), + [sym_en_dash] = ACTIONS(303), + [sym_backslash_escape] = ACTIONS(303), + [anon_sym_LT] = ACTIONS(305), + [sym_symbol] = ACTIONS(301), + [anon_sym_LBRACK_CARET] = ACTIONS(307), + [anon_sym_BANG_LBRACK] = ACTIONS(309), + [anon_sym_LBRACK] = ACTIONS(311), + [anon_sym_DOLLAR] = ACTIONS(313), + [anon_sym_TODO] = ACTIONS(315), + [anon_sym_WIP] = ACTIONS(315), + [anon_sym_NOTE] = ACTIONS(317), + [anon_sym_INFO] = ACTIONS(317), + [anon_sym_XXX] = ACTIONS(317), + [sym_fixme] = ACTIONS(301), + [sym__whitespace1] = ACTIONS(319), + [sym__newline] = ACTIONS(321), + [aux_sym__text_token1] = ACTIONS(323), + [sym__verbatim_begin] = ACTIONS(325), }, [64] = { - [sym__inline_without_trailing_space] = STATE(1051), - [sym__element] = STATE(572), - [sym_emphasis] = STATE(208), - [sym_emphasis_begin] = STATE(1074), - [sym_strong] = STATE(208), - [sym_strong_begin] = STATE(1075), - [sym_superscript] = STATE(208), - [sym_superscript_begin] = STATE(1076), - [sym_subscript] = STATE(208), - [sym_subscript_begin] = STATE(1077), - [sym_highlighted] = STATE(208), - [sym_highlighted_begin] = STATE(1078), - [sym_insert] = STATE(208), - [sym_insert_begin] = STATE(1079), - [sym_delete] = STATE(208), - [sym_delete_begin] = STATE(1080), - [sym_hard_line_break] = STATE(208), - [sym__smart_punctuation] = STATE(208), - [sym_autolink] = STATE(208), - [sym_footnote_reference] = STATE(208), - [sym__image] = STATE(208), - [sym_full_reference_image] = STATE(208), - [sym_collapsed_reference_image] = STATE(208), - [sym_inline_image] = STATE(208), - [sym__image_description] = STATE(680), - [sym__link] = STATE(208), - [sym_full_reference_link] = STATE(208), - [sym_collapsed_reference_link] = STATE(208), - [sym_inline_link] = STATE(208), - [sym_link_text] = STATE(663), - [sym__comment_with_spaces] = STATE(208), - [sym_span] = STATE(208), - [sym_raw_inline] = STATE(208), - [sym_math] = STATE(208), - [sym_verbatim] = STATE(208), - [sym__todo_highlights] = STATE(208), - [sym_todo] = STATE(208), - [sym_note] = STATE(208), - [sym__symbol_fallback] = STATE(208), - [aux_sym__text] = STATE(131), - [aux_sym__inline_repeat1] = STATE(130), - [anon_sym_LBRACE_] = ACTIONS(175), - [anon_sym__] = ACTIONS(177), - [anon_sym_LBRACE_STAR] = ACTIONS(179), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_LBRACE_CARET] = ACTIONS(183), - [anon_sym_CARET] = ACTIONS(183), - [anon_sym_LBRACE_TILDE] = ACTIONS(185), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_LBRACE_EQ] = ACTIONS(187), - [anon_sym_LBRACE_PLUS] = ACTIONS(189), - [anon_sym_LBRACE_DASH] = ACTIONS(191), - [anon_sym_BSLASH] = ACTIONS(193), - [sym_quotation_marks] = ACTIONS(195), - [sym_ellipsis] = ACTIONS(195), - [sym_em_dash] = ACTIONS(195), - [sym_en_dash] = ACTIONS(197), - [sym_backslash_escape] = ACTIONS(197), - [anon_sym_LT] = ACTIONS(199), - [sym_symbol] = ACTIONS(195), - [anon_sym_LBRACK_CARET] = ACTIONS(201), - [anon_sym_BANG_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE2] = ACTIONS(197), - [anon_sym_DOLLAR] = ACTIONS(207), - [anon_sym_TODO] = ACTIONS(209), - [anon_sym_WIP] = ACTIONS(209), - [anon_sym_NOTE] = ACTIONS(211), - [anon_sym_INFO] = ACTIONS(211), - [anon_sym_XXX] = ACTIONS(211), - [sym_fixme] = ACTIONS(195), - [sym__whitespace1] = ACTIONS(213), - [sym__newline] = ACTIONS(215), - [aux_sym__text_token1] = ACTIONS(217), - [sym__verbatim_begin] = ACTIONS(219), + [sym__element] = STATE(64), + [sym_emphasis] = STATE(136), + [sym_emphasis_begin] = STATE(1161), + [sym_strong] = STATE(136), + [sym_strong_begin] = STATE(1162), + [sym_superscript] = STATE(136), + [sym_superscript_begin] = STATE(1163), + [sym_subscript] = STATE(136), + [sym_subscript_begin] = STATE(1164), + [sym_highlighted] = STATE(136), + [sym_highlighted_begin] = STATE(1165), + [sym_insert] = STATE(136), + [sym_insert_begin] = STATE(1166), + [sym_delete] = STATE(136), + [sym_delete_begin] = STATE(1167), + [sym_hard_line_break] = STATE(136), + [sym__smart_punctuation] = STATE(136), + [sym_autolink] = STATE(136), + [sym_footnote_reference] = STATE(136), + [sym__image] = STATE(136), + [sym_full_reference_image] = STATE(136), + [sym_collapsed_reference_image] = STATE(136), + [sym_inline_image] = STATE(136), + [sym__image_description] = STATE(690), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(136), + [sym_full_reference_link] = STATE(136), + [sym_collapsed_reference_link] = STATE(136), + [sym_inline_link] = STATE(136), + [sym_link_text] = STATE(691), + [sym_span] = STATE(64), + [sym__bracketed_text] = STATE(653), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(136), + [sym_raw_inline] = STATE(136), + [sym_math] = STATE(136), + [sym_verbatim] = STATE(136), + [sym__todo_highlights] = STATE(136), + [sym_todo] = STATE(136), + [sym_note] = STATE(136), + [sym__symbol_fallback] = STATE(136), + [aux_sym__text] = STATE(125), + [aux_sym__inline_repeat1] = STATE(64), + [anon_sym_LBRACE_] = ACTIONS(613), + [anon_sym__] = ACTIONS(616), + [anon_sym_LBRACE_STAR] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_LBRACE_CARET] = ACTIONS(625), + [anon_sym_CARET] = ACTIONS(625), + [anon_sym_LBRACE_TILDE] = ACTIONS(628), + [anon_sym_TILDE] = ACTIONS(628), + [anon_sym_LBRACE_EQ] = ACTIONS(631), + [anon_sym_LBRACE_PLUS] = ACTIONS(634), + [anon_sym_LBRACE_DASH] = ACTIONS(637), + [anon_sym_BSLASH] = ACTIONS(640), + [sym_quotation_marks] = ACTIONS(643), + [sym_ellipsis] = ACTIONS(643), + [sym_em_dash] = ACTIONS(643), + [sym_en_dash] = ACTIONS(646), + [sym_backslash_escape] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(649), + [sym_symbol] = ACTIONS(643), + [anon_sym_LBRACK_CARET] = ACTIONS(652), + [anon_sym_BANG_LBRACK] = ACTIONS(655), + [anon_sym_LBRACK] = ACTIONS(658), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_TODO] = ACTIONS(664), + [anon_sym_WIP] = ACTIONS(664), + [anon_sym_NOTE] = ACTIONS(667), + [anon_sym_INFO] = ACTIONS(667), + [anon_sym_XXX] = ACTIONS(667), + [sym_fixme] = ACTIONS(643), + [sym__whitespace1] = ACTIONS(670), + [sym__newline] = ACTIONS(673), + [aux_sym__text_token1] = ACTIONS(676), + [sym__verbatim_begin] = ACTIONS(679), + [sym_subscript_end] = ACTIONS(538), }, [65] = { - [sym__element] = STATE(65), - [sym_emphasis] = STATE(180), - [sym_emphasis_begin] = STATE(1109), - [sym_strong] = STATE(180), - [sym_strong_begin] = STATE(1110), - [sym_superscript] = STATE(180), - [sym_superscript_begin] = STATE(1111), - [sym_subscript] = STATE(180), - [sym_subscript_begin] = STATE(1112), - [sym_highlighted] = STATE(180), - [sym_highlighted_begin] = STATE(1113), - [sym_insert] = STATE(180), - [sym_insert_begin] = STATE(1114), - [sym_delete] = STATE(180), - [sym_delete_begin] = STATE(1115), - [sym_hard_line_break] = STATE(180), - [sym__smart_punctuation] = STATE(180), - [sym_autolink] = STATE(180), - [sym_footnote_reference] = STATE(180), - [sym__image] = STATE(180), - [sym_full_reference_image] = STATE(180), - [sym_collapsed_reference_image] = STATE(180), - [sym_inline_image] = STATE(180), - [sym__image_description] = STATE(666), - [sym__link] = STATE(180), - [sym_full_reference_link] = STATE(180), - [sym_collapsed_reference_link] = STATE(180), - [sym_inline_link] = STATE(180), - [sym_link_text] = STATE(664), - [sym__comment_with_spaces] = STATE(180), - [sym_span] = STATE(180), - [sym_raw_inline] = STATE(180), - [sym_math] = STATE(180), - [sym_verbatim] = STATE(180), - [sym__todo_highlights] = STATE(180), - [sym_todo] = STATE(180), - [sym_note] = STATE(180), - [sym__symbol_fallback] = STATE(180), - [aux_sym__text] = STATE(159), - [aux_sym__inline_repeat1] = STATE(65), - [anon_sym_LBRACE_] = ACTIONS(572), - [anon_sym__] = ACTIONS(575), - [anon_sym_LBRACE_STAR] = ACTIONS(578), - [anon_sym_STAR] = ACTIONS(581), - [anon_sym_LBRACE_CARET] = ACTIONS(584), - [anon_sym_CARET] = ACTIONS(584), - [anon_sym_LBRACE_TILDE] = ACTIONS(587), - [anon_sym_TILDE] = ACTIONS(587), - [anon_sym_LBRACE_EQ] = ACTIONS(590), - [anon_sym_LBRACE_PLUS] = ACTIONS(593), - [anon_sym_LBRACE_DASH] = ACTIONS(596), - [anon_sym_BSLASH] = ACTIONS(599), - [sym_quotation_marks] = ACTIONS(602), - [sym_ellipsis] = ACTIONS(602), - [sym_em_dash] = ACTIONS(602), - [sym_en_dash] = ACTIONS(605), - [sym_backslash_escape] = ACTIONS(605), - [anon_sym_LT] = ACTIONS(608), - [sym_symbol] = ACTIONS(602), - [anon_sym_LBRACK_CARET] = ACTIONS(611), - [anon_sym_BANG_LBRACK] = ACTIONS(614), - [anon_sym_LBRACK] = ACTIONS(617), - [anon_sym_LBRACE2] = ACTIONS(605), - [anon_sym_DOLLAR] = ACTIONS(620), - [anon_sym_TODO] = ACTIONS(623), - [anon_sym_WIP] = ACTIONS(623), - [anon_sym_NOTE] = ACTIONS(626), - [anon_sym_INFO] = ACTIONS(626), - [anon_sym_XXX] = ACTIONS(626), - [sym_fixme] = ACTIONS(602), - [sym__whitespace1] = ACTIONS(629), - [sym__newline] = ACTIONS(632), - [aux_sym__text_token1] = ACTIONS(635), - [sym__verbatim_begin] = ACTIONS(638), - [sym_delete_end] = ACTIONS(549), + [sym__element] = STATE(83), + [sym_emphasis] = STATE(133), + [sym_emphasis_begin] = STATE(1189), + [sym_strong] = STATE(133), + [sym_strong_begin] = STATE(1190), + [sym_superscript] = STATE(133), + [sym_superscript_begin] = STATE(1191), + [sym_subscript] = STATE(133), + [sym_subscript_begin] = STATE(1192), + [sym_highlighted] = STATE(133), + [sym_highlighted_begin] = STATE(1193), + [sym_insert] = STATE(133), + [sym_insert_begin] = STATE(1194), + [sym_delete] = STATE(133), + [sym_delete_begin] = STATE(1195), + [sym_hard_line_break] = STATE(133), + [sym__smart_punctuation] = STATE(133), + [sym_autolink] = STATE(133), + [sym_footnote_reference] = STATE(133), + [sym__image] = STATE(133), + [sym_full_reference_image] = STATE(133), + [sym_collapsed_reference_image] = STATE(133), + [sym_inline_image] = STATE(133), + [sym__image_description] = STATE(670), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(133), + [sym_full_reference_link] = STATE(133), + [sym_collapsed_reference_link] = STATE(133), + [sym_inline_link] = STATE(133), + [sym_link_text] = STATE(663), + [sym_span] = STATE(83), + [sym__bracketed_text] = STATE(662), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(133), + [sym_raw_inline] = STATE(133), + [sym_math] = STATE(133), + [sym_verbatim] = STATE(133), + [sym__todo_highlights] = STATE(133), + [sym_todo] = STATE(133), + [sym_note] = STATE(133), + [sym__symbol_fallback] = STATE(133), + [aux_sym__text] = STATE(123), + [aux_sym__inline_repeat1] = STATE(83), + [anon_sym_LBRACE_] = ACTIONS(143), + [anon_sym__] = ACTIONS(145), + [anon_sym_LBRACE_STAR] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(149), + [anon_sym_LBRACE_CARET] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(151), + [anon_sym_LBRACE_TILDE] = ACTIONS(153), + [anon_sym_TILDE] = ACTIONS(153), + [anon_sym_LBRACE_EQ] = ACTIONS(155), + [anon_sym_LBRACE_PLUS] = ACTIONS(157), + [anon_sym_LBRACE_DASH] = ACTIONS(159), + [anon_sym_BSLASH] = ACTIONS(161), + [sym_quotation_marks] = ACTIONS(163), + [sym_ellipsis] = ACTIONS(163), + [sym_em_dash] = ACTIONS(163), + [sym_en_dash] = ACTIONS(165), + [sym_backslash_escape] = ACTIONS(165), + [anon_sym_LT] = ACTIONS(167), + [sym_symbol] = ACTIONS(163), + [anon_sym_LBRACK_CARET] = ACTIONS(169), + [anon_sym_BANG_LBRACK] = ACTIONS(171), + [anon_sym_LBRACK] = ACTIONS(173), + [anon_sym_RBRACK2] = ACTIONS(467), + [anon_sym_DOLLAR] = ACTIONS(175), + [anon_sym_TODO] = ACTIONS(177), + [anon_sym_WIP] = ACTIONS(177), + [anon_sym_NOTE] = ACTIONS(179), + [anon_sym_INFO] = ACTIONS(179), + [anon_sym_XXX] = ACTIONS(179), + [sym_fixme] = ACTIONS(163), + [sym__whitespace1] = ACTIONS(181), + [sym__newline] = ACTIONS(682), + [aux_sym__text_token1] = ACTIONS(185), + [sym__verbatim_begin] = ACTIONS(187), }, [66] = { - [sym__element] = STATE(40), - [sym_emphasis] = STATE(171), - [sym_emphasis_begin] = STATE(1116), - [sym_strong] = STATE(171), - [sym_strong_begin] = STATE(1117), - [sym_superscript] = STATE(171), - [sym_superscript_begin] = STATE(1118), - [sym_subscript] = STATE(171), - [sym_subscript_begin] = STATE(1119), - [sym_highlighted] = STATE(171), - [sym_highlighted_begin] = STATE(1120), - [sym_insert] = STATE(171), - [sym_insert_begin] = STATE(1121), - [sym_delete] = STATE(171), - [sym_delete_begin] = STATE(1122), - [sym_hard_line_break] = STATE(171), - [sym__smart_punctuation] = STATE(171), - [sym_autolink] = STATE(171), - [sym_footnote_reference] = STATE(171), - [sym__image] = STATE(171), - [sym_full_reference_image] = STATE(171), - [sym_collapsed_reference_image] = STATE(171), - [sym_inline_image] = STATE(171), - [sym__image_description] = STATE(674), - [sym__link] = STATE(171), - [sym_full_reference_link] = STATE(171), - [sym_collapsed_reference_link] = STATE(171), - [sym_inline_link] = STATE(171), - [sym_link_text] = STATE(675), - [sym__comment_with_spaces] = STATE(171), - [sym_span] = STATE(171), - [sym_raw_inline] = STATE(171), - [sym_math] = STATE(171), - [sym_verbatim] = STATE(171), - [sym__todo_highlights] = STATE(171), - [sym_todo] = STATE(171), - [sym_note] = STATE(171), - [sym__symbol_fallback] = STATE(171), - [aux_sym__text] = STATE(146), - [aux_sym__inline_repeat1] = STATE(40), - [anon_sym_LBRACE_] = ACTIONS(451), - [anon_sym__] = ACTIONS(453), - [anon_sym_LBRACE_STAR] = ACTIONS(455), - [anon_sym_STAR] = ACTIONS(457), - [anon_sym_LBRACE_CARET] = ACTIONS(459), - [anon_sym_CARET] = ACTIONS(459), - [anon_sym_LBRACE_TILDE] = ACTIONS(461), - [anon_sym_TILDE] = ACTIONS(461), - [anon_sym_LBRACE_EQ] = ACTIONS(463), - [anon_sym_LBRACE_PLUS] = ACTIONS(465), - [anon_sym_LBRACE_DASH] = ACTIONS(467), - [anon_sym_BSLASH] = ACTIONS(469), - [sym_quotation_marks] = ACTIONS(471), - [sym_ellipsis] = ACTIONS(471), - [sym_em_dash] = ACTIONS(471), - [sym_en_dash] = ACTIONS(473), - [sym_backslash_escape] = ACTIONS(473), - [anon_sym_LT] = ACTIONS(475), - [sym_symbol] = ACTIONS(471), - [anon_sym_LBRACK_CARET] = ACTIONS(477), - [anon_sym_BANG_LBRACK] = ACTIONS(479), - [anon_sym_LBRACK] = ACTIONS(481), - [anon_sym_RBRACK2] = ACTIONS(497), - [anon_sym_LBRACE2] = ACTIONS(473), - [anon_sym_DOLLAR] = ACTIONS(483), - [anon_sym_TODO] = ACTIONS(485), - [anon_sym_WIP] = ACTIONS(485), - [anon_sym_NOTE] = ACTIONS(487), - [anon_sym_INFO] = ACTIONS(487), - [anon_sym_XXX] = ACTIONS(487), - [sym_fixme] = ACTIONS(471), - [sym__whitespace1] = ACTIONS(489), - [sym__newline] = ACTIONS(641), - [aux_sym__text_token1] = ACTIONS(493), - [sym__verbatim_begin] = ACTIONS(495), + [sym__inline] = STATE(885), + [sym__element] = STATE(103), + [sym_emphasis] = STATE(139), + [sym_emphasis_begin] = STATE(1175), + [sym_strong] = STATE(139), + [sym_strong_begin] = STATE(1176), + [sym_superscript] = STATE(139), + [sym_superscript_begin] = STATE(1177), + [sym_subscript] = STATE(139), + [sym_subscript_begin] = STATE(1178), + [sym_highlighted] = STATE(139), + [sym_highlighted_begin] = STATE(1179), + [sym_insert] = STATE(139), + [sym_insert_begin] = STATE(1180), + [sym_delete] = STATE(139), + [sym_delete_begin] = STATE(1181), + [sym_hard_line_break] = STATE(139), + [sym__smart_punctuation] = STATE(139), + [sym_autolink] = STATE(139), + [sym_footnote_reference] = STATE(139), + [sym__image] = STATE(139), + [sym_full_reference_image] = STATE(139), + [sym_collapsed_reference_image] = STATE(139), + [sym_inline_image] = STATE(139), + [sym__image_description] = STATE(682), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(139), + [sym_full_reference_link] = STATE(139), + [sym_collapsed_reference_link] = STATE(139), + [sym_inline_link] = STATE(139), + [sym_link_text] = STATE(681), + [sym_span] = STATE(103), + [sym__bracketed_text] = STATE(656), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(139), + [sym_raw_inline] = STATE(139), + [sym_math] = STATE(139), + [sym_verbatim] = STATE(139), + [sym__todo_highlights] = STATE(139), + [sym_todo] = STATE(139), + [sym_note] = STATE(139), + [sym__symbol_fallback] = STATE(139), + [aux_sym__text] = STATE(129), + [aux_sym__inline_repeat1] = STATE(103), + [anon_sym_LBRACE_] = ACTIONS(235), + [anon_sym__] = ACTIONS(237), + [anon_sym_LBRACE_STAR] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(241), + [anon_sym_LBRACE_CARET] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(243), + [anon_sym_LBRACE_TILDE] = ACTIONS(245), + [anon_sym_TILDE] = ACTIONS(245), + [anon_sym_LBRACE_EQ] = ACTIONS(247), + [anon_sym_LBRACE_PLUS] = ACTIONS(249), + [anon_sym_LBRACE_DASH] = ACTIONS(251), + [anon_sym_BSLASH] = ACTIONS(253), + [sym_quotation_marks] = ACTIONS(255), + [sym_ellipsis] = ACTIONS(255), + [sym_em_dash] = ACTIONS(255), + [sym_en_dash] = ACTIONS(257), + [sym_backslash_escape] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(259), + [sym_symbol] = ACTIONS(255), + [anon_sym_LBRACK_CARET] = ACTIONS(261), + [anon_sym_BANG_LBRACK] = ACTIONS(263), + [anon_sym_LBRACK] = ACTIONS(265), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_TODO] = ACTIONS(269), + [anon_sym_WIP] = ACTIONS(269), + [anon_sym_NOTE] = ACTIONS(271), + [anon_sym_INFO] = ACTIONS(271), + [anon_sym_XXX] = ACTIONS(271), + [sym_fixme] = ACTIONS(255), + [sym__whitespace1] = ACTIONS(273), + [sym__newline] = ACTIONS(275), + [aux_sym__text_token1] = ACTIONS(277), + [sym__verbatim_begin] = ACTIONS(279), }, [67] = { - [sym__inline] = STATE(1049), - [sym__element] = STATE(79), - [sym_emphasis] = STATE(161), - [sym_emphasis_begin] = STATE(1081), - [sym_strong] = STATE(161), - [sym_strong_begin] = STATE(1082), - [sym_superscript] = STATE(161), - [sym_superscript_begin] = STATE(1083), - [sym_subscript] = STATE(161), - [sym_subscript_begin] = STATE(1084), - [sym_highlighted] = STATE(161), - [sym_highlighted_begin] = STATE(1085), - [sym_insert] = STATE(161), - [sym_insert_begin] = STATE(1086), - [sym_delete] = STATE(161), - [sym_delete_begin] = STATE(1087), - [sym_hard_line_break] = STATE(161), - [sym__smart_punctuation] = STATE(161), - [sym_autolink] = STATE(161), - [sym_footnote_reference] = STATE(161), - [sym__image] = STATE(161), - [sym_full_reference_image] = STATE(161), - [sym_collapsed_reference_image] = STATE(161), - [sym_inline_image] = STATE(161), - [sym__image_description] = STATE(692), - [sym__link] = STATE(161), - [sym_full_reference_link] = STATE(161), - [sym_collapsed_reference_link] = STATE(161), - [sym_inline_link] = STATE(161), - [sym_link_text] = STATE(687), - [sym__comment_with_spaces] = STATE(161), - [sym_span] = STATE(161), - [sym_raw_inline] = STATE(161), - [sym_math] = STATE(161), - [sym_verbatim] = STATE(161), - [sym__todo_highlights] = STATE(161), - [sym_todo] = STATE(161), - [sym_note] = STATE(161), - [sym__symbol_fallback] = STATE(161), - [aux_sym__text] = STATE(149), - [aux_sym__inline_repeat1] = STATE(79), - [anon_sym_LBRACE_] = ACTIONS(359), - [anon_sym__] = ACTIONS(361), - [anon_sym_LBRACE_STAR] = ACTIONS(363), - [anon_sym_STAR] = ACTIONS(365), - [anon_sym_LBRACE_CARET] = ACTIONS(367), - [anon_sym_CARET] = ACTIONS(367), - [anon_sym_LBRACE_TILDE] = ACTIONS(369), - [anon_sym_TILDE] = ACTIONS(369), - [anon_sym_LBRACE_EQ] = ACTIONS(371), - [anon_sym_LBRACE_PLUS] = ACTIONS(373), - [anon_sym_LBRACE_DASH] = ACTIONS(375), - [anon_sym_BSLASH] = ACTIONS(377), - [sym_quotation_marks] = ACTIONS(379), - [sym_ellipsis] = ACTIONS(379), - [sym_em_dash] = ACTIONS(379), - [sym_en_dash] = ACTIONS(381), - [sym_backslash_escape] = ACTIONS(381), - [anon_sym_LT] = ACTIONS(383), - [sym_symbol] = ACTIONS(379), - [anon_sym_LBRACK_CARET] = ACTIONS(385), - [anon_sym_BANG_LBRACK] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(389), - [anon_sym_LBRACE2] = ACTIONS(381), - [anon_sym_DOLLAR] = ACTIONS(391), - [anon_sym_TODO] = ACTIONS(393), - [anon_sym_WIP] = ACTIONS(393), - [anon_sym_NOTE] = ACTIONS(395), - [anon_sym_INFO] = ACTIONS(395), - [anon_sym_XXX] = ACTIONS(395), - [sym_fixme] = ACTIONS(379), - [sym__whitespace1] = ACTIONS(397), - [sym__newline] = ACTIONS(399), - [aux_sym__text_token1] = ACTIONS(401), - [sym__verbatim_begin] = ACTIONS(403), + [sym__inline] = STATE(889), + [sym__element] = STATE(21), + [sym_emphasis] = STATE(134), + [sym_emphasis_begin] = STATE(1182), + [sym_strong] = STATE(134), + [sym_strong_begin] = STATE(1183), + [sym_superscript] = STATE(134), + [sym_superscript_begin] = STATE(1184), + [sym_subscript] = STATE(134), + [sym_subscript_begin] = STATE(1185), + [sym_highlighted] = STATE(134), + [sym_highlighted_begin] = STATE(1186), + [sym_insert] = STATE(134), + [sym_insert_begin] = STATE(1187), + [sym_delete] = STATE(134), + [sym_delete_begin] = STATE(1188), + [sym_hard_line_break] = STATE(134), + [sym__smart_punctuation] = STATE(134), + [sym_autolink] = STATE(134), + [sym_footnote_reference] = STATE(134), + [sym__image] = STATE(134), + [sym_full_reference_image] = STATE(134), + [sym_collapsed_reference_image] = STATE(134), + [sym_inline_image] = STATE(134), + [sym__image_description] = STATE(677), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(134), + [sym_full_reference_link] = STATE(134), + [sym_collapsed_reference_link] = STATE(134), + [sym_inline_link] = STATE(134), + [sym_link_text] = STATE(675), + [sym_span] = STATE(21), + [sym__bracketed_text] = STATE(660), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(134), + [sym_raw_inline] = STATE(134), + [sym_math] = STATE(134), + [sym_verbatim] = STATE(134), + [sym__todo_highlights] = STATE(134), + [sym_todo] = STATE(134), + [sym_note] = STATE(134), + [sym__symbol_fallback] = STATE(134), + [aux_sym__text] = STATE(127), + [aux_sym__inline_repeat1] = STATE(21), + [anon_sym_LBRACE_] = ACTIONS(189), + [anon_sym__] = ACTIONS(191), + [anon_sym_LBRACE_STAR] = ACTIONS(193), + [anon_sym_STAR] = ACTIONS(195), + [anon_sym_LBRACE_CARET] = ACTIONS(197), + [anon_sym_CARET] = ACTIONS(197), + [anon_sym_LBRACE_TILDE] = ACTIONS(199), + [anon_sym_TILDE] = ACTIONS(199), + [anon_sym_LBRACE_EQ] = ACTIONS(201), + [anon_sym_LBRACE_PLUS] = ACTIONS(203), + [anon_sym_LBRACE_DASH] = ACTIONS(205), + [anon_sym_BSLASH] = ACTIONS(207), + [sym_quotation_marks] = ACTIONS(209), + [sym_ellipsis] = ACTIONS(209), + [sym_em_dash] = ACTIONS(209), + [sym_en_dash] = ACTIONS(211), + [sym_backslash_escape] = ACTIONS(211), + [anon_sym_LT] = ACTIONS(213), + [sym_symbol] = ACTIONS(209), + [anon_sym_LBRACK_CARET] = ACTIONS(215), + [anon_sym_BANG_LBRACK] = ACTIONS(217), + [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_DOLLAR] = ACTIONS(221), + [anon_sym_TODO] = ACTIONS(223), + [anon_sym_WIP] = ACTIONS(223), + [anon_sym_NOTE] = ACTIONS(225), + [anon_sym_INFO] = ACTIONS(225), + [anon_sym_XXX] = ACTIONS(225), + [sym_fixme] = ACTIONS(209), + [sym__whitespace1] = ACTIONS(227), + [sym__newline] = ACTIONS(229), + [aux_sym__text_token1] = ACTIONS(231), + [sym__verbatim_begin] = ACTIONS(233), }, [68] = { [sym__element] = STATE(68), - [sym_emphasis] = STATE(166), - [sym_emphasis_begin] = STATE(1041), - [sym_strong] = STATE(166), - [sym_strong_begin] = STATE(1040), - [sym_superscript] = STATE(166), - [sym_superscript_begin] = STATE(1039), - [sym_subscript] = STATE(166), - [sym_subscript_begin] = STATE(1038), - [sym_highlighted] = STATE(166), - [sym_highlighted_begin] = STATE(1037), - [sym_insert] = STATE(166), - [sym_insert_begin] = STATE(1036), - [sym_delete] = STATE(166), - [sym_delete_begin] = STATE(1029), - [sym_hard_line_break] = STATE(166), - [sym__smart_punctuation] = STATE(166), - [sym_autolink] = STATE(166), - [sym_footnote_reference] = STATE(166), - [sym__image] = STATE(166), - [sym_full_reference_image] = STATE(166), - [sym_collapsed_reference_image] = STATE(166), - [sym_inline_image] = STATE(166), - [sym__image_description] = STATE(696), - [sym__link] = STATE(166), - [sym_full_reference_link] = STATE(166), - [sym_collapsed_reference_link] = STATE(166), - [sym_inline_link] = STATE(166), - [sym_link_text] = STATE(693), - [sym__comment_with_spaces] = STATE(166), - [sym_span] = STATE(166), - [sym_raw_inline] = STATE(166), - [sym_math] = STATE(166), - [sym_verbatim] = STATE(166), - [sym__todo_highlights] = STATE(166), - [sym_todo] = STATE(166), - [sym_note] = STATE(166), - [sym__symbol_fallback] = STATE(166), - [aux_sym__text] = STATE(160), + [sym_emphasis] = STATE(134), + [sym_emphasis_begin] = STATE(1182), + [sym_strong] = STATE(134), + [sym_strong_begin] = STATE(1183), + [sym_superscript] = STATE(134), + [sym_superscript_begin] = STATE(1184), + [sym_subscript] = STATE(134), + [sym_subscript_begin] = STATE(1185), + [sym_highlighted] = STATE(134), + [sym_highlighted_begin] = STATE(1186), + [sym_insert] = STATE(134), + [sym_insert_begin] = STATE(1187), + [sym_delete] = STATE(134), + [sym_delete_begin] = STATE(1188), + [sym_hard_line_break] = STATE(134), + [sym__smart_punctuation] = STATE(134), + [sym_autolink] = STATE(134), + [sym_footnote_reference] = STATE(134), + [sym__image] = STATE(134), + [sym_full_reference_image] = STATE(134), + [sym_collapsed_reference_image] = STATE(134), + [sym_inline_image] = STATE(134), + [sym__image_description] = STATE(677), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(134), + [sym_full_reference_link] = STATE(134), + [sym_collapsed_reference_link] = STATE(134), + [sym_inline_link] = STATE(134), + [sym_link_text] = STATE(675), + [sym_span] = STATE(68), + [sym__bracketed_text] = STATE(660), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(134), + [sym_raw_inline] = STATE(134), + [sym_math] = STATE(134), + [sym_verbatim] = STATE(134), + [sym__todo_highlights] = STATE(134), + [sym_todo] = STATE(134), + [sym_note] = STATE(134), + [sym__symbol_fallback] = STATE(134), + [aux_sym__text] = STATE(127), [aux_sym__inline_repeat1] = STATE(68), - [ts_builtin_sym_end] = ACTIONS(549), - [anon_sym_LBRACE_] = ACTIONS(643), - [anon_sym__] = ACTIONS(646), - [anon_sym_LBRACE_STAR] = ACTIONS(649), - [anon_sym_STAR] = ACTIONS(652), - [anon_sym_LBRACE_CARET] = ACTIONS(655), - [anon_sym_CARET] = ACTIONS(655), - [anon_sym_LBRACE_TILDE] = ACTIONS(658), - [anon_sym_TILDE] = ACTIONS(658), - [anon_sym_LBRACE_EQ] = ACTIONS(661), - [anon_sym_LBRACE_PLUS] = ACTIONS(664), - [anon_sym_LBRACE_DASH] = ACTIONS(667), - [anon_sym_BSLASH] = ACTIONS(670), - [sym_quotation_marks] = ACTIONS(673), - [sym_ellipsis] = ACTIONS(673), - [sym_em_dash] = ACTIONS(673), - [sym_en_dash] = ACTIONS(676), - [sym_backslash_escape] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(679), - [sym_symbol] = ACTIONS(673), - [anon_sym_LBRACK_CARET] = ACTIONS(682), - [anon_sym_BANG_LBRACK] = ACTIONS(685), - [anon_sym_LBRACK] = ACTIONS(688), - [anon_sym_LBRACE2] = ACTIONS(676), - [anon_sym_DOLLAR] = ACTIONS(691), - [anon_sym_TODO] = ACTIONS(694), - [anon_sym_WIP] = ACTIONS(694), - [anon_sym_NOTE] = ACTIONS(697), - [anon_sym_INFO] = ACTIONS(697), - [anon_sym_XXX] = ACTIONS(697), - [sym_fixme] = ACTIONS(673), - [sym__whitespace1] = ACTIONS(700), - [sym__newline] = ACTIONS(703), - [aux_sym__text_token1] = ACTIONS(706), - [sym__verbatim_begin] = ACTIONS(709), + [anon_sym_LBRACE_] = ACTIONS(684), + [anon_sym__] = ACTIONS(687), + [anon_sym_LBRACE_STAR] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(693), + [anon_sym_LBRACE_CARET] = ACTIONS(696), + [anon_sym_CARET] = ACTIONS(696), + [anon_sym_LBRACE_TILDE] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_LBRACE_EQ] = ACTIONS(702), + [anon_sym_LBRACE_PLUS] = ACTIONS(705), + [anon_sym_LBRACE_DASH] = ACTIONS(708), + [anon_sym_BSLASH] = ACTIONS(711), + [sym_quotation_marks] = ACTIONS(714), + [sym_ellipsis] = ACTIONS(714), + [sym_em_dash] = ACTIONS(714), + [sym_en_dash] = ACTIONS(717), + [sym_backslash_escape] = ACTIONS(717), + [anon_sym_LT] = ACTIONS(720), + [sym_symbol] = ACTIONS(714), + [anon_sym_LBRACK_CARET] = ACTIONS(723), + [anon_sym_BANG_LBRACK] = ACTIONS(726), + [anon_sym_LBRACK] = ACTIONS(729), + [anon_sym_DOLLAR] = ACTIONS(732), + [anon_sym_TODO] = ACTIONS(735), + [anon_sym_WIP] = ACTIONS(735), + [anon_sym_NOTE] = ACTIONS(738), + [anon_sym_INFO] = ACTIONS(738), + [anon_sym_XXX] = ACTIONS(738), + [sym_fixme] = ACTIONS(714), + [sym__whitespace1] = ACTIONS(741), + [sym__newline] = ACTIONS(744), + [aux_sym__text_token1] = ACTIONS(747), + [sym__verbatim_begin] = ACTIONS(750), + [sym_delete_end] = ACTIONS(538), }, [69] = { - [sym__inline] = STATE(1035), - [sym__element] = STATE(93), - [sym_emphasis] = STATE(197), - [sym_emphasis_begin] = STATE(1088), - [sym_strong] = STATE(197), - [sym_strong_begin] = STATE(1089), - [sym_superscript] = STATE(197), - [sym_superscript_begin] = STATE(1090), - [sym_subscript] = STATE(197), - [sym_subscript_begin] = STATE(1091), - [sym_highlighted] = STATE(197), - [sym_highlighted_begin] = STATE(1092), - [sym_insert] = STATE(197), - [sym_insert_begin] = STATE(1093), - [sym_delete] = STATE(197), - [sym_delete_begin] = STATE(1094), - [sym_hard_line_break] = STATE(197), - [sym__smart_punctuation] = STATE(197), - [sym_autolink] = STATE(197), - [sym_footnote_reference] = STATE(197), - [sym__image] = STATE(197), - [sym_full_reference_image] = STATE(197), - [sym_collapsed_reference_image] = STATE(197), - [sym_inline_image] = STATE(197), - [sym__image_description] = STATE(697), - [sym__link] = STATE(197), - [sym_full_reference_link] = STATE(197), - [sym_collapsed_reference_link] = STATE(197), - [sym_inline_link] = STATE(197), - [sym_link_text] = STATE(682), - [sym__comment_with_spaces] = STATE(197), - [sym_span] = STATE(197), - [sym_raw_inline] = STATE(197), - [sym_math] = STATE(197), - [sym_verbatim] = STATE(197), - [sym__todo_highlights] = STATE(197), - [sym_todo] = STATE(197), - [sym_note] = STATE(197), - [sym__symbol_fallback] = STATE(197), - [aux_sym__text] = STATE(134), - [aux_sym__inline_repeat1] = STATE(93), - [anon_sym_LBRACE_] = ACTIONS(313), - [anon_sym__] = ACTIONS(315), - [anon_sym_LBRACE_STAR] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_LBRACE_CARET] = ACTIONS(321), - [anon_sym_CARET] = ACTIONS(321), - [anon_sym_LBRACE_TILDE] = ACTIONS(323), - [anon_sym_TILDE] = ACTIONS(323), - [anon_sym_LBRACE_EQ] = ACTIONS(325), - [anon_sym_LBRACE_PLUS] = ACTIONS(327), - [anon_sym_LBRACE_DASH] = ACTIONS(329), - [anon_sym_BSLASH] = ACTIONS(331), - [sym_quotation_marks] = ACTIONS(333), - [sym_ellipsis] = ACTIONS(333), - [sym_em_dash] = ACTIONS(333), - [sym_en_dash] = ACTIONS(335), - [sym_backslash_escape] = ACTIONS(335), - [anon_sym_LT] = ACTIONS(337), - [sym_symbol] = ACTIONS(333), - [anon_sym_LBRACK_CARET] = ACTIONS(339), - [anon_sym_BANG_LBRACK] = ACTIONS(341), - [anon_sym_LBRACK] = ACTIONS(343), - [anon_sym_LBRACE2] = ACTIONS(335), - [anon_sym_DOLLAR] = ACTIONS(345), - [anon_sym_TODO] = ACTIONS(347), - [anon_sym_WIP] = ACTIONS(347), - [anon_sym_NOTE] = ACTIONS(349), - [anon_sym_INFO] = ACTIONS(349), - [anon_sym_XXX] = ACTIONS(349), - [sym_fixme] = ACTIONS(333), - [sym__whitespace1] = ACTIONS(351), - [sym__newline] = ACTIONS(353), - [aux_sym__text_token1] = ACTIONS(355), - [sym__verbatim_begin] = ACTIONS(357), + [sym__inline] = STATE(1056), + [sym__element] = STATE(110), + [sym_emphasis] = STATE(135), + [sym_emphasis_begin] = STATE(1203), + [sym_strong] = STATE(135), + [sym_strong_begin] = STATE(1204), + [sym_superscript] = STATE(135), + [sym_superscript_begin] = STATE(1205), + [sym_subscript] = STATE(135), + [sym_subscript_begin] = STATE(1206), + [sym_highlighted] = STATE(135), + [sym_highlighted_begin] = STATE(1207), + [sym_insert] = STATE(135), + [sym_insert_begin] = STATE(1208), + [sym_delete] = STATE(135), + [sym_delete_begin] = STATE(1209), + [sym_hard_line_break] = STATE(135), + [sym__smart_punctuation] = STATE(135), + [sym_autolink] = STATE(135), + [sym_footnote_reference] = STATE(135), + [sym__image] = STATE(135), + [sym_full_reference_image] = STATE(135), + [sym_collapsed_reference_image] = STATE(135), + [sym_inline_image] = STATE(135), + [sym__image_description] = STATE(679), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(135), + [sym_full_reference_link] = STATE(135), + [sym_collapsed_reference_link] = STATE(135), + [sym_inline_link] = STATE(135), + [sym_link_text] = STATE(664), + [sym_span] = STATE(110), + [sym__bracketed_text] = STATE(659), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(135), + [sym_raw_inline] = STATE(135), + [sym_math] = STATE(135), + [sym_verbatim] = STATE(135), + [sym__todo_highlights] = STATE(135), + [sym_todo] = STATE(135), + [sym_note] = STATE(135), + [sym__symbol_fallback] = STATE(135), + [aux_sym__text] = STATE(122), + [aux_sym__inline_repeat1] = STATE(110), + [anon_sym_LBRACE_] = ACTIONS(753), + [anon_sym__] = ACTIONS(755), + [anon_sym_LBRACE_STAR] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_LBRACE_CARET] = ACTIONS(761), + [anon_sym_CARET] = ACTIONS(761), + [anon_sym_LBRACE_TILDE] = ACTIONS(763), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_LBRACE_EQ] = ACTIONS(765), + [anon_sym_LBRACE_PLUS] = ACTIONS(767), + [anon_sym_LBRACE_DASH] = ACTIONS(769), + [anon_sym_BSLASH] = ACTIONS(771), + [sym_quotation_marks] = ACTIONS(773), + [sym_ellipsis] = ACTIONS(773), + [sym_em_dash] = ACTIONS(773), + [sym_en_dash] = ACTIONS(775), + [sym_backslash_escape] = ACTIONS(775), + [anon_sym_LT] = ACTIONS(777), + [sym_symbol] = ACTIONS(773), + [anon_sym_LBRACK_CARET] = ACTIONS(779), + [anon_sym_BANG_LBRACK] = ACTIONS(781), + [anon_sym_LBRACK] = ACTIONS(783), + [anon_sym_DOLLAR] = ACTIONS(785), + [anon_sym_TODO] = ACTIONS(787), + [anon_sym_WIP] = ACTIONS(787), + [anon_sym_NOTE] = ACTIONS(789), + [anon_sym_INFO] = ACTIONS(789), + [anon_sym_XXX] = ACTIONS(789), + [sym_fixme] = ACTIONS(773), + [sym__whitespace1] = ACTIONS(791), + [sym__newline] = ACTIONS(793), + [aux_sym__text_token1] = ACTIONS(795), + [sym__verbatim_begin] = ACTIONS(797), }, [70] = { - [sym__inline] = STATE(854), - [sym__element] = STATE(111), - [sym_emphasis] = STATE(186), - [sym_emphasis_begin] = STATE(1102), - [sym_strong] = STATE(186), - [sym_strong_begin] = STATE(1103), - [sym_superscript] = STATE(186), - [sym_superscript_begin] = STATE(1104), - [sym_subscript] = STATE(186), - [sym_subscript_begin] = STATE(1105), - [sym_highlighted] = STATE(186), - [sym_highlighted_begin] = STATE(1106), - [sym_insert] = STATE(186), - [sym_insert_begin] = STATE(1107), - [sym_delete] = STATE(186), - [sym_delete_begin] = STATE(1108), - [sym_hard_line_break] = STATE(186), - [sym__smart_punctuation] = STATE(186), - [sym_autolink] = STATE(186), - [sym_footnote_reference] = STATE(186), - [sym__image] = STATE(186), - [sym_full_reference_image] = STATE(186), - [sym_collapsed_reference_image] = STATE(186), - [sym_inline_image] = STATE(186), - [sym__image_description] = STATE(673), - [sym__link] = STATE(186), - [sym_full_reference_link] = STATE(186), - [sym_collapsed_reference_link] = STATE(186), - [sym_inline_link] = STATE(186), - [sym_link_text] = STATE(672), - [sym__comment_with_spaces] = STATE(186), - [sym_span] = STATE(186), - [sym_raw_inline] = STATE(186), - [sym_math] = STATE(186), - [sym_verbatim] = STATE(186), - [sym__todo_highlights] = STATE(186), - [sym_todo] = STATE(186), - [sym_note] = STATE(186), - [sym__symbol_fallback] = STATE(186), - [aux_sym__text] = STATE(155), - [aux_sym__inline_repeat1] = STATE(111), - [anon_sym_LBRACE_] = ACTIONS(267), - [anon_sym__] = ACTIONS(269), - [anon_sym_LBRACE_STAR] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_LBRACE_CARET] = ACTIONS(275), - [anon_sym_CARET] = ACTIONS(275), - [anon_sym_LBRACE_TILDE] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(277), - [anon_sym_LBRACE_EQ] = ACTIONS(279), - [anon_sym_LBRACE_PLUS] = ACTIONS(281), - [anon_sym_LBRACE_DASH] = ACTIONS(283), - [anon_sym_BSLASH] = ACTIONS(285), - [sym_quotation_marks] = ACTIONS(287), - [sym_ellipsis] = ACTIONS(287), - [sym_em_dash] = ACTIONS(287), - [sym_en_dash] = ACTIONS(289), - [sym_backslash_escape] = ACTIONS(289), - [anon_sym_LT] = ACTIONS(291), - [sym_symbol] = ACTIONS(287), - [anon_sym_LBRACK_CARET] = ACTIONS(293), - [anon_sym_BANG_LBRACK] = ACTIONS(295), - [anon_sym_LBRACK] = ACTIONS(297), - [anon_sym_LBRACE2] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(299), - [anon_sym_TODO] = ACTIONS(301), - [anon_sym_WIP] = ACTIONS(301), - [anon_sym_NOTE] = ACTIONS(303), - [anon_sym_INFO] = ACTIONS(303), - [anon_sym_XXX] = ACTIONS(303), - [sym_fixme] = ACTIONS(287), - [sym__whitespace1] = ACTIONS(305), - [sym__newline] = ACTIONS(307), - [aux_sym__text_token1] = ACTIONS(309), - [sym__verbatim_begin] = ACTIONS(311), + [sym__element] = STATE(64), + [sym_emphasis] = STATE(136), + [sym_emphasis_begin] = STATE(1161), + [sym_strong] = STATE(136), + [sym_strong_begin] = STATE(1162), + [sym_superscript] = STATE(136), + [sym_superscript_begin] = STATE(1163), + [sym_subscript] = STATE(136), + [sym_subscript_begin] = STATE(1164), + [sym_highlighted] = STATE(136), + [sym_highlighted_begin] = STATE(1165), + [sym_insert] = STATE(136), + [sym_insert_begin] = STATE(1166), + [sym_delete] = STATE(136), + [sym_delete_begin] = STATE(1167), + [sym_hard_line_break] = STATE(136), + [sym__smart_punctuation] = STATE(136), + [sym_autolink] = STATE(136), + [sym_footnote_reference] = STATE(136), + [sym__image] = STATE(136), + [sym_full_reference_image] = STATE(136), + [sym_collapsed_reference_image] = STATE(136), + [sym_inline_image] = STATE(136), + [sym__image_description] = STATE(690), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(136), + [sym_full_reference_link] = STATE(136), + [sym_collapsed_reference_link] = STATE(136), + [sym_inline_link] = STATE(136), + [sym_link_text] = STATE(691), + [sym_span] = STATE(64), + [sym__bracketed_text] = STATE(653), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(136), + [sym_raw_inline] = STATE(136), + [sym_math] = STATE(136), + [sym_verbatim] = STATE(136), + [sym__todo_highlights] = STATE(136), + [sym_todo] = STATE(136), + [sym_note] = STATE(136), + [sym__symbol_fallback] = STATE(136), + [aux_sym__text] = STATE(125), + [aux_sym__inline_repeat1] = STATE(64), + [anon_sym_LBRACE_] = ACTIONS(97), + [anon_sym__] = ACTIONS(99), + [anon_sym_LBRACE_STAR] = ACTIONS(101), + [anon_sym_STAR] = ACTIONS(103), + [anon_sym_LBRACE_CARET] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [anon_sym_LBRACE_TILDE] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(107), + [anon_sym_LBRACE_EQ] = ACTIONS(109), + [anon_sym_LBRACE_PLUS] = ACTIONS(111), + [anon_sym_LBRACE_DASH] = ACTIONS(113), + [anon_sym_BSLASH] = ACTIONS(115), + [sym_quotation_marks] = ACTIONS(117), + [sym_ellipsis] = ACTIONS(117), + [sym_em_dash] = ACTIONS(117), + [sym_en_dash] = ACTIONS(119), + [sym_backslash_escape] = ACTIONS(119), + [anon_sym_LT] = ACTIONS(121), + [sym_symbol] = ACTIONS(117), + [anon_sym_LBRACK_CARET] = ACTIONS(123), + [anon_sym_BANG_LBRACK] = ACTIONS(125), + [anon_sym_LBRACK] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_TODO] = ACTIONS(131), + [anon_sym_WIP] = ACTIONS(131), + [anon_sym_NOTE] = ACTIONS(133), + [anon_sym_INFO] = ACTIONS(133), + [anon_sym_XXX] = ACTIONS(133), + [sym_fixme] = ACTIONS(117), + [sym__whitespace1] = ACTIONS(135), + [sym__newline] = ACTIONS(799), + [aux_sym__text_token1] = ACTIONS(139), + [sym__verbatim_begin] = ACTIONS(141), + [sym_subscript_end] = ACTIONS(467), }, [71] = { - [sym__inline] = STATE(855), - [sym__element] = STATE(115), - [sym_emphasis] = STATE(192), - [sym_emphasis_begin] = STATE(1095), - [sym_strong] = STATE(192), - [sym_strong_begin] = STATE(1096), - [sym_superscript] = STATE(192), - [sym_superscript_begin] = STATE(1097), - [sym_subscript] = STATE(192), - [sym_subscript_begin] = STATE(1098), - [sym_highlighted] = STATE(192), - [sym_highlighted_begin] = STATE(1099), - [sym_insert] = STATE(192), - [sym_insert_begin] = STATE(1100), - [sym_delete] = STATE(192), - [sym_delete_begin] = STATE(1101), - [sym_hard_line_break] = STATE(192), - [sym__smart_punctuation] = STATE(192), - [sym_autolink] = STATE(192), - [sym_footnote_reference] = STATE(192), - [sym__image] = STATE(192), - [sym_full_reference_image] = STATE(192), - [sym_collapsed_reference_image] = STATE(192), - [sym_inline_image] = STATE(192), - [sym__image_description] = STATE(684), - [sym__link] = STATE(192), - [sym_full_reference_link] = STATE(192), - [sym_collapsed_reference_link] = STATE(192), - [sym_inline_link] = STATE(192), - [sym_link_text] = STATE(683), - [sym__comment_with_spaces] = STATE(192), - [sym_span] = STATE(192), - [sym_raw_inline] = STATE(192), - [sym_math] = STATE(192), - [sym_verbatim] = STATE(192), - [sym__todo_highlights] = STATE(192), - [sym_todo] = STATE(192), - [sym_note] = STATE(192), - [sym__symbol_fallback] = STATE(192), - [aux_sym__text] = STATE(141), - [aux_sym__inline_repeat1] = STATE(115), - [anon_sym_LBRACE_] = ACTIONS(129), - [anon_sym__] = ACTIONS(131), - [anon_sym_LBRACE_STAR] = ACTIONS(133), - [anon_sym_STAR] = ACTIONS(135), - [anon_sym_LBRACE_CARET] = ACTIONS(137), - [anon_sym_CARET] = ACTIONS(137), - [anon_sym_LBRACE_TILDE] = ACTIONS(139), - [anon_sym_TILDE] = ACTIONS(139), - [anon_sym_LBRACE_EQ] = ACTIONS(141), - [anon_sym_LBRACE_PLUS] = ACTIONS(143), - [anon_sym_LBRACE_DASH] = ACTIONS(145), - [anon_sym_BSLASH] = ACTIONS(147), - [sym_quotation_marks] = ACTIONS(149), - [sym_ellipsis] = ACTIONS(149), - [sym_em_dash] = ACTIONS(149), - [sym_en_dash] = ACTIONS(151), - [sym_backslash_escape] = ACTIONS(151), - [anon_sym_LT] = ACTIONS(153), - [sym_symbol] = ACTIONS(149), - [anon_sym_LBRACK_CARET] = ACTIONS(155), - [anon_sym_BANG_LBRACK] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LBRACE2] = ACTIONS(151), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_TODO] = ACTIONS(163), - [anon_sym_WIP] = ACTIONS(163), - [anon_sym_NOTE] = ACTIONS(165), - [anon_sym_INFO] = ACTIONS(165), - [anon_sym_XXX] = ACTIONS(165), - [sym_fixme] = ACTIONS(149), - [sym__whitespace1] = ACTIONS(167), - [sym__newline] = ACTIONS(169), - [aux_sym__text_token1] = ACTIONS(171), - [sym__verbatim_begin] = ACTIONS(173), + [sym__element] = STATE(71), + [sym_emphasis] = STATE(143), + [sym_emphasis_begin] = STATE(1117), + [sym_strong] = STATE(143), + [sym_strong_begin] = STATE(1116), + [sym_superscript] = STATE(143), + [sym_superscript_begin] = STATE(1115), + [sym_subscript] = STATE(143), + [sym_subscript_begin] = STATE(1107), + [sym_highlighted] = STATE(143), + [sym_highlighted_begin] = STATE(1106), + [sym_insert] = STATE(143), + [sym_insert_begin] = STATE(1105), + [sym_delete] = STATE(143), + [sym_delete_begin] = STATE(1104), + [sym_hard_line_break] = STATE(143), + [sym__smart_punctuation] = STATE(143), + [sym_autolink] = STATE(143), + [sym_footnote_reference] = STATE(143), + [sym__image] = STATE(143), + [sym_full_reference_image] = STATE(143), + [sym_collapsed_reference_image] = STATE(143), + [sym_inline_image] = STATE(143), + [sym__image_description] = STATE(673), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(143), + [sym_full_reference_link] = STATE(143), + [sym_collapsed_reference_link] = STATE(143), + [sym_inline_link] = STATE(143), + [sym_link_text] = STATE(669), + [sym_span] = STATE(71), + [sym__bracketed_text] = STATE(661), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(143), + [sym_raw_inline] = STATE(143), + [sym_math] = STATE(143), + [sym_verbatim] = STATE(143), + [sym__todo_highlights] = STATE(143), + [sym_todo] = STATE(143), + [sym_note] = STATE(143), + [sym__symbol_fallback] = STATE(143), + [aux_sym__text] = STATE(130), + [aux_sym__inline_repeat1] = STATE(71), + [ts_builtin_sym_end] = ACTIONS(538), + [anon_sym_LBRACE_] = ACTIONS(801), + [anon_sym__] = ACTIONS(804), + [anon_sym_LBRACE_STAR] = ACTIONS(807), + [anon_sym_STAR] = ACTIONS(810), + [anon_sym_LBRACE_CARET] = ACTIONS(813), + [anon_sym_CARET] = ACTIONS(813), + [anon_sym_LBRACE_TILDE] = ACTIONS(816), + [anon_sym_TILDE] = ACTIONS(816), + [anon_sym_LBRACE_EQ] = ACTIONS(819), + [anon_sym_LBRACE_PLUS] = ACTIONS(822), + [anon_sym_LBRACE_DASH] = ACTIONS(825), + [anon_sym_BSLASH] = ACTIONS(828), + [sym_quotation_marks] = ACTIONS(831), + [sym_ellipsis] = ACTIONS(831), + [sym_em_dash] = ACTIONS(831), + [sym_en_dash] = ACTIONS(834), + [sym_backslash_escape] = ACTIONS(834), + [anon_sym_LT] = ACTIONS(837), + [sym_symbol] = ACTIONS(831), + [anon_sym_LBRACK_CARET] = ACTIONS(840), + [anon_sym_BANG_LBRACK] = ACTIONS(843), + [anon_sym_LBRACK] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(849), + [anon_sym_TODO] = ACTIONS(852), + [anon_sym_WIP] = ACTIONS(852), + [anon_sym_NOTE] = ACTIONS(855), + [anon_sym_INFO] = ACTIONS(855), + [anon_sym_XXX] = ACTIONS(855), + [sym_fixme] = ACTIONS(831), + [sym__whitespace1] = ACTIONS(858), + [sym__newline] = ACTIONS(861), + [aux_sym__text_token1] = ACTIONS(864), + [sym__verbatim_begin] = ACTIONS(867), }, [72] = { - [sym__inline] = STATE(868), - [sym__element] = STATE(93), - [sym_emphasis] = STATE(197), - [sym_emphasis_begin] = STATE(1088), - [sym_strong] = STATE(197), - [sym_strong_begin] = STATE(1089), - [sym_superscript] = STATE(197), - [sym_superscript_begin] = STATE(1090), - [sym_subscript] = STATE(197), - [sym_subscript_begin] = STATE(1091), - [sym_highlighted] = STATE(197), - [sym_highlighted_begin] = STATE(1092), - [sym_insert] = STATE(197), - [sym_insert_begin] = STATE(1093), - [sym_delete] = STATE(197), - [sym_delete_begin] = STATE(1094), - [sym_hard_line_break] = STATE(197), - [sym__smart_punctuation] = STATE(197), - [sym_autolink] = STATE(197), - [sym_footnote_reference] = STATE(197), - [sym__image] = STATE(197), - [sym_full_reference_image] = STATE(197), - [sym_collapsed_reference_image] = STATE(197), - [sym_inline_image] = STATE(197), - [sym__image_description] = STATE(697), - [sym__link] = STATE(197), - [sym_full_reference_link] = STATE(197), - [sym_collapsed_reference_link] = STATE(197), - [sym_inline_link] = STATE(197), - [sym_link_text] = STATE(682), - [sym__comment_with_spaces] = STATE(197), - [sym_span] = STATE(197), - [sym_raw_inline] = STATE(197), - [sym_math] = STATE(197), - [sym_verbatim] = STATE(197), - [sym__todo_highlights] = STATE(197), - [sym_todo] = STATE(197), - [sym_note] = STATE(197), - [sym__symbol_fallback] = STATE(197), - [aux_sym__text] = STATE(134), - [aux_sym__inline_repeat1] = STATE(93), - [anon_sym_LBRACE_] = ACTIONS(313), - [anon_sym__] = ACTIONS(315), - [anon_sym_LBRACE_STAR] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_LBRACE_CARET] = ACTIONS(321), - [anon_sym_CARET] = ACTIONS(321), - [anon_sym_LBRACE_TILDE] = ACTIONS(323), - [anon_sym_TILDE] = ACTIONS(323), - [anon_sym_LBRACE_EQ] = ACTIONS(325), - [anon_sym_LBRACE_PLUS] = ACTIONS(327), - [anon_sym_LBRACE_DASH] = ACTIONS(329), - [anon_sym_BSLASH] = ACTIONS(331), - [sym_quotation_marks] = ACTIONS(333), - [sym_ellipsis] = ACTIONS(333), - [sym_em_dash] = ACTIONS(333), - [sym_en_dash] = ACTIONS(335), - [sym_backslash_escape] = ACTIONS(335), - [anon_sym_LT] = ACTIONS(337), - [sym_symbol] = ACTIONS(333), - [anon_sym_LBRACK_CARET] = ACTIONS(339), - [anon_sym_BANG_LBRACK] = ACTIONS(341), - [anon_sym_LBRACK] = ACTIONS(343), - [anon_sym_LBRACE2] = ACTIONS(335), - [anon_sym_DOLLAR] = ACTIONS(345), - [anon_sym_TODO] = ACTIONS(347), - [anon_sym_WIP] = ACTIONS(347), - [anon_sym_NOTE] = ACTIONS(349), - [anon_sym_INFO] = ACTIONS(349), - [anon_sym_XXX] = ACTIONS(349), - [sym_fixme] = ACTIONS(333), - [sym__whitespace1] = ACTIONS(351), - [sym__newline] = ACTIONS(353), - [aux_sym__text_token1] = ACTIONS(355), - [sym__verbatim_begin] = ACTIONS(357), + [sym__element] = STATE(116), + [sym_emphasis] = STATE(137), + [sym_emphasis_begin] = STATE(1196), + [sym_strong] = STATE(137), + [sym_strong_begin] = STATE(1197), + [sym_superscript] = STATE(137), + [sym_superscript_begin] = STATE(1198), + [sym_subscript] = STATE(137), + [sym_subscript_begin] = STATE(1199), + [sym_highlighted] = STATE(137), + [sym_highlighted_begin] = STATE(1200), + [sym_insert] = STATE(137), + [sym_insert_begin] = STATE(1201), + [sym_delete] = STATE(137), + [sym_delete_begin] = STATE(1202), + [sym_hard_line_break] = STATE(137), + [sym__smart_punctuation] = STATE(137), + [sym_autolink] = STATE(137), + [sym_footnote_reference] = STATE(137), + [sym__image] = STATE(137), + [sym_full_reference_image] = STATE(137), + [sym_collapsed_reference_image] = STATE(137), + [sym_inline_image] = STATE(137), + [sym__image_description] = STATE(666), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(137), + [sym_full_reference_link] = STATE(137), + [sym_collapsed_reference_link] = STATE(137), + [sym_inline_link] = STATE(137), + [sym_link_text] = STATE(665), + [sym_span] = STATE(116), + [sym__bracketed_text] = STATE(651), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(137), + [sym_raw_inline] = STATE(137), + [sym_math] = STATE(137), + [sym_verbatim] = STATE(137), + [sym__todo_highlights] = STATE(137), + [sym_todo] = STATE(137), + [sym_note] = STATE(137), + [sym__symbol_fallback] = STATE(137), + [aux_sym__text] = STATE(121), + [aux_sym__inline_repeat1] = STATE(116), + [anon_sym_LBRACE_] = ACTIONS(49), + [anon_sym__] = ACTIONS(51), + [anon_sym_LBRACE_STAR] = ACTIONS(53), + [anon_sym_STAR] = ACTIONS(55), + [anon_sym_LBRACE_CARET] = ACTIONS(57), + [anon_sym_CARET] = ACTIONS(57), + [anon_sym_LBRACE_TILDE] = ACTIONS(59), + [anon_sym_TILDE] = ACTIONS(59), + [anon_sym_LBRACE_EQ] = ACTIONS(61), + [anon_sym_LBRACE_PLUS] = ACTIONS(63), + [anon_sym_LBRACE_DASH] = ACTIONS(65), + [anon_sym_BSLASH] = ACTIONS(67), + [sym_quotation_marks] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(69), + [sym_em_dash] = ACTIONS(69), + [sym_en_dash] = ACTIONS(71), + [sym_backslash_escape] = ACTIONS(71), + [anon_sym_LT] = ACTIONS(73), + [sym_symbol] = ACTIONS(69), + [anon_sym_LBRACK_CARET] = ACTIONS(75), + [anon_sym_BANG_LBRACK] = ACTIONS(77), + [anon_sym_LBRACK] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(81), + [anon_sym_TODO] = ACTIONS(83), + [anon_sym_WIP] = ACTIONS(83), + [anon_sym_NOTE] = ACTIONS(85), + [anon_sym_INFO] = ACTIONS(85), + [anon_sym_XXX] = ACTIONS(85), + [sym_fixme] = ACTIONS(69), + [sym__whitespace1] = ACTIONS(87), + [sym__newline] = ACTIONS(870), + [aux_sym__text_token1] = ACTIONS(91), + [sym__verbatim_begin] = ACTIONS(93), + [sym__image_description_end] = ACTIONS(467), }, [73] = { - [sym__inline] = STATE(869), - [sym__element] = STATE(79), - [sym_emphasis] = STATE(161), - [sym_emphasis_begin] = STATE(1081), - [sym_strong] = STATE(161), - [sym_strong_begin] = STATE(1082), - [sym_superscript] = STATE(161), - [sym_superscript_begin] = STATE(1083), - [sym_subscript] = STATE(161), - [sym_subscript_begin] = STATE(1084), - [sym_highlighted] = STATE(161), - [sym_highlighted_begin] = STATE(1085), - [sym_insert] = STATE(161), - [sym_insert_begin] = STATE(1086), - [sym_delete] = STATE(161), - [sym_delete_begin] = STATE(1087), - [sym_hard_line_break] = STATE(161), - [sym__smart_punctuation] = STATE(161), - [sym_autolink] = STATE(161), - [sym_footnote_reference] = STATE(161), - [sym__image] = STATE(161), - [sym_full_reference_image] = STATE(161), - [sym_collapsed_reference_image] = STATE(161), - [sym_inline_image] = STATE(161), - [sym__image_description] = STATE(692), - [sym__link] = STATE(161), - [sym_full_reference_link] = STATE(161), - [sym_collapsed_reference_link] = STATE(161), - [sym_inline_link] = STATE(161), - [sym_link_text] = STATE(687), - [sym__comment_with_spaces] = STATE(161), - [sym_span] = STATE(161), - [sym_raw_inline] = STATE(161), - [sym_math] = STATE(161), - [sym_verbatim] = STATE(161), - [sym__todo_highlights] = STATE(161), - [sym_todo] = STATE(161), - [sym_note] = STATE(161), - [sym__symbol_fallback] = STATE(161), - [aux_sym__text] = STATE(149), - [aux_sym__inline_repeat1] = STATE(79), - [anon_sym_LBRACE_] = ACTIONS(359), - [anon_sym__] = ACTIONS(361), - [anon_sym_LBRACE_STAR] = ACTIONS(363), - [anon_sym_STAR] = ACTIONS(365), - [anon_sym_LBRACE_CARET] = ACTIONS(367), - [anon_sym_CARET] = ACTIONS(367), - [anon_sym_LBRACE_TILDE] = ACTIONS(369), - [anon_sym_TILDE] = ACTIONS(369), - [anon_sym_LBRACE_EQ] = ACTIONS(371), - [anon_sym_LBRACE_PLUS] = ACTIONS(373), - [anon_sym_LBRACE_DASH] = ACTIONS(375), - [anon_sym_BSLASH] = ACTIONS(377), - [sym_quotation_marks] = ACTIONS(379), - [sym_ellipsis] = ACTIONS(379), - [sym_em_dash] = ACTIONS(379), - [sym_en_dash] = ACTIONS(381), - [sym_backslash_escape] = ACTIONS(381), - [anon_sym_LT] = ACTIONS(383), - [sym_symbol] = ACTIONS(379), - [anon_sym_LBRACK_CARET] = ACTIONS(385), - [anon_sym_BANG_LBRACK] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(389), - [anon_sym_LBRACE2] = ACTIONS(381), - [anon_sym_DOLLAR] = ACTIONS(391), - [anon_sym_TODO] = ACTIONS(393), - [anon_sym_WIP] = ACTIONS(393), - [anon_sym_NOTE] = ACTIONS(395), - [anon_sym_INFO] = ACTIONS(395), - [anon_sym_XXX] = ACTIONS(395), - [sym_fixme] = ACTIONS(379), - [sym__whitespace1] = ACTIONS(397), - [sym__newline] = ACTIONS(399), - [aux_sym__text_token1] = ACTIONS(401), - [sym__verbatim_begin] = ACTIONS(403), + [sym__inline_without_trailing_space] = STATE(1131), + [sym__element] = STATE(604), + [sym_emphasis] = STATE(138), + [sym_emphasis_begin] = STATE(1140), + [sym_strong] = STATE(138), + [sym_strong_begin] = STATE(1141), + [sym_superscript] = STATE(138), + [sym_superscript_begin] = STATE(1142), + [sym_subscript] = STATE(138), + [sym_subscript_begin] = STATE(1143), + [sym_highlighted] = STATE(138), + [sym_highlighted_begin] = STATE(1144), + [sym_insert] = STATE(138), + [sym_insert_begin] = STATE(1145), + [sym_delete] = STATE(138), + [sym_delete_begin] = STATE(1146), + [sym_hard_line_break] = STATE(138), + [sym__smart_punctuation] = STATE(138), + [sym_autolink] = STATE(138), + [sym_footnote_reference] = STATE(138), + [sym__image] = STATE(138), + [sym_full_reference_image] = STATE(138), + [sym_collapsed_reference_image] = STATE(138), + [sym_inline_image] = STATE(138), + [sym__image_description] = STATE(667), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(138), + [sym_full_reference_link] = STATE(138), + [sym_collapsed_reference_link] = STATE(138), + [sym_inline_link] = STATE(138), + [sym_link_text] = STATE(689), + [sym_span] = STATE(604), + [sym__bracketed_text] = STATE(658), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(138), + [sym_raw_inline] = STATE(138), + [sym_math] = STATE(138), + [sym_verbatim] = STATE(138), + [sym__todo_highlights] = STATE(138), + [sym_todo] = STATE(138), + [sym_note] = STATE(138), + [sym__symbol_fallback] = STATE(138), + [aux_sym__text] = STATE(124), + [aux_sym__inline_repeat1] = STATE(118), + [anon_sym_LBRACE_] = ACTIONS(419), + [anon_sym__] = ACTIONS(421), + [anon_sym_LBRACE_STAR] = ACTIONS(423), + [anon_sym_STAR] = ACTIONS(425), + [anon_sym_LBRACE_CARET] = ACTIONS(427), + [anon_sym_CARET] = ACTIONS(427), + [anon_sym_LBRACE_TILDE] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_LBRACE_EQ] = ACTIONS(431), + [anon_sym_LBRACE_PLUS] = ACTIONS(433), + [anon_sym_LBRACE_DASH] = ACTIONS(435), + [anon_sym_BSLASH] = ACTIONS(437), + [sym_quotation_marks] = ACTIONS(439), + [sym_ellipsis] = ACTIONS(439), + [sym_em_dash] = ACTIONS(439), + [sym_en_dash] = ACTIONS(441), + [sym_backslash_escape] = ACTIONS(441), + [anon_sym_LT] = ACTIONS(443), + [sym_symbol] = ACTIONS(439), + [anon_sym_LBRACK_CARET] = ACTIONS(445), + [anon_sym_BANG_LBRACK] = ACTIONS(447), + [anon_sym_LBRACK] = ACTIONS(449), + [anon_sym_DOLLAR] = ACTIONS(451), + [anon_sym_TODO] = ACTIONS(453), + [anon_sym_WIP] = ACTIONS(453), + [anon_sym_NOTE] = ACTIONS(455), + [anon_sym_INFO] = ACTIONS(455), + [anon_sym_XXX] = ACTIONS(455), + [sym_fixme] = ACTIONS(439), + [sym__whitespace1] = ACTIONS(457), + [sym__newline] = ACTIONS(459), + [aux_sym__text_token1] = ACTIONS(461), + [sym__verbatim_begin] = ACTIONS(463), }, [74] = { - [sym__inline_without_trailing_space] = STATE(870), - [sym__element] = STATE(572), - [sym_emphasis] = STATE(208), - [sym_emphasis_begin] = STATE(1074), - [sym_strong] = STATE(208), - [sym_strong_begin] = STATE(1075), - [sym_superscript] = STATE(208), - [sym_superscript_begin] = STATE(1076), - [sym_subscript] = STATE(208), - [sym_subscript_begin] = STATE(1077), - [sym_highlighted] = STATE(208), - [sym_highlighted_begin] = STATE(1078), - [sym_insert] = STATE(208), - [sym_insert_begin] = STATE(1079), - [sym_delete] = STATE(208), - [sym_delete_begin] = STATE(1080), - [sym_hard_line_break] = STATE(208), - [sym__smart_punctuation] = STATE(208), - [sym_autolink] = STATE(208), - [sym_footnote_reference] = STATE(208), - [sym__image] = STATE(208), - [sym_full_reference_image] = STATE(208), - [sym_collapsed_reference_image] = STATE(208), - [sym_inline_image] = STATE(208), - [sym__image_description] = STATE(680), - [sym__link] = STATE(208), - [sym_full_reference_link] = STATE(208), - [sym_collapsed_reference_link] = STATE(208), - [sym_inline_link] = STATE(208), - [sym_link_text] = STATE(663), - [sym__comment_with_spaces] = STATE(208), - [sym_span] = STATE(208), - [sym_raw_inline] = STATE(208), - [sym_math] = STATE(208), - [sym_verbatim] = STATE(208), - [sym__todo_highlights] = STATE(208), - [sym_todo] = STATE(208), - [sym_note] = STATE(208), - [sym__symbol_fallback] = STATE(208), - [aux_sym__text] = STATE(131), - [aux_sym__inline_repeat1] = STATE(130), - [anon_sym_LBRACE_] = ACTIONS(175), - [anon_sym__] = ACTIONS(177), - [anon_sym_LBRACE_STAR] = ACTIONS(179), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_LBRACE_CARET] = ACTIONS(183), - [anon_sym_CARET] = ACTIONS(183), - [anon_sym_LBRACE_TILDE] = ACTIONS(185), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_LBRACE_EQ] = ACTIONS(187), - [anon_sym_LBRACE_PLUS] = ACTIONS(189), - [anon_sym_LBRACE_DASH] = ACTIONS(191), - [anon_sym_BSLASH] = ACTIONS(193), - [sym_quotation_marks] = ACTIONS(195), - [sym_ellipsis] = ACTIONS(195), - [sym_em_dash] = ACTIONS(195), - [sym_en_dash] = ACTIONS(197), - [sym_backslash_escape] = ACTIONS(197), - [anon_sym_LT] = ACTIONS(199), - [sym_symbol] = ACTIONS(195), - [anon_sym_LBRACK_CARET] = ACTIONS(201), - [anon_sym_BANG_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE2] = ACTIONS(197), - [anon_sym_DOLLAR] = ACTIONS(207), - [anon_sym_TODO] = ACTIONS(209), - [anon_sym_WIP] = ACTIONS(209), - [anon_sym_NOTE] = ACTIONS(211), - [anon_sym_INFO] = ACTIONS(211), - [anon_sym_XXX] = ACTIONS(211), - [sym_fixme] = ACTIONS(195), - [sym__whitespace1] = ACTIONS(213), - [sym__newline] = ACTIONS(215), - [aux_sym__text_token1] = ACTIONS(217), - [sym__verbatim_begin] = ACTIONS(219), + [sym__inline_without_trailing_space] = STATE(1129), + [sym__element] = STATE(562), + [sym_emphasis] = STATE(142), + [sym_emphasis_begin] = STATE(1147), + [sym_strong] = STATE(142), + [sym_strong_begin] = STATE(1148), + [sym_superscript] = STATE(142), + [sym_superscript_begin] = STATE(1149), + [sym_subscript] = STATE(142), + [sym_subscript_begin] = STATE(1150), + [sym_highlighted] = STATE(142), + [sym_highlighted_begin] = STATE(1151), + [sym_insert] = STATE(142), + [sym_insert_begin] = STATE(1152), + [sym_delete] = STATE(142), + [sym_delete_begin] = STATE(1153), + [sym_hard_line_break] = STATE(142), + [sym__smart_punctuation] = STATE(142), + [sym_autolink] = STATE(142), + [sym_footnote_reference] = STATE(142), + [sym__image] = STATE(142), + [sym_full_reference_image] = STATE(142), + [sym_collapsed_reference_image] = STATE(142), + [sym_inline_image] = STATE(142), + [sym__image_description] = STATE(685), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(142), + [sym_full_reference_link] = STATE(142), + [sym_collapsed_reference_link] = STATE(142), + [sym_inline_link] = STATE(142), + [sym_link_text] = STATE(683), + [sym_span] = STATE(562), + [sym__bracketed_text] = STATE(657), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(142), + [sym_raw_inline] = STATE(142), + [sym_math] = STATE(142), + [sym_verbatim] = STATE(142), + [sym__todo_highlights] = STATE(142), + [sym_todo] = STATE(142), + [sym_note] = STATE(142), + [sym__symbol_fallback] = STATE(142), + [aux_sym__text] = STATE(126), + [aux_sym__inline_repeat1] = STATE(120), + [anon_sym_LBRACE_] = ACTIONS(373), + [anon_sym__] = ACTIONS(375), + [anon_sym_LBRACE_STAR] = ACTIONS(377), + [anon_sym_STAR] = ACTIONS(379), + [anon_sym_LBRACE_CARET] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(381), + [anon_sym_LBRACE_TILDE] = ACTIONS(383), + [anon_sym_TILDE] = ACTIONS(383), + [anon_sym_LBRACE_EQ] = ACTIONS(385), + [anon_sym_LBRACE_PLUS] = ACTIONS(387), + [anon_sym_LBRACE_DASH] = ACTIONS(389), + [anon_sym_BSLASH] = ACTIONS(391), + [sym_quotation_marks] = ACTIONS(393), + [sym_ellipsis] = ACTIONS(393), + [sym_em_dash] = ACTIONS(393), + [sym_en_dash] = ACTIONS(395), + [sym_backslash_escape] = ACTIONS(395), + [anon_sym_LT] = ACTIONS(397), + [sym_symbol] = ACTIONS(393), + [anon_sym_LBRACK_CARET] = ACTIONS(399), + [anon_sym_BANG_LBRACK] = ACTIONS(401), + [anon_sym_LBRACK] = ACTIONS(403), + [anon_sym_DOLLAR] = ACTIONS(405), + [anon_sym_TODO] = ACTIONS(407), + [anon_sym_WIP] = ACTIONS(407), + [anon_sym_NOTE] = ACTIONS(409), + [anon_sym_INFO] = ACTIONS(409), + [anon_sym_XXX] = ACTIONS(409), + [sym_fixme] = ACTIONS(393), + [sym__whitespace1] = ACTIONS(411), + [sym__newline] = ACTIONS(413), + [aux_sym__text_token1] = ACTIONS(415), + [sym__verbatim_begin] = ACTIONS(417), }, [75] = { - [sym__inline_without_trailing_space] = STATE(871), - [sym__element] = STATE(603), - [sym_emphasis] = STATE(177), - [sym_emphasis_begin] = STATE(1067), - [sym_strong] = STATE(177), - [sym_strong_begin] = STATE(1068), - [sym_superscript] = STATE(177), - [sym_superscript_begin] = STATE(1069), - [sym_subscript] = STATE(177), - [sym_subscript_begin] = STATE(1070), - [sym_highlighted] = STATE(177), - [sym_highlighted_begin] = STATE(1071), - [sym_insert] = STATE(177), - [sym_insert_begin] = STATE(1072), - [sym_delete] = STATE(177), - [sym_delete_begin] = STATE(1073), - [sym_hard_line_break] = STATE(177), - [sym__smart_punctuation] = STATE(177), - [sym_autolink] = STATE(177), - [sym_footnote_reference] = STATE(177), - [sym__image] = STATE(177), - [sym_full_reference_image] = STATE(177), - [sym_collapsed_reference_image] = STATE(177), - [sym_inline_image] = STATE(177), - [sym__image_description] = STATE(681), - [sym__link] = STATE(177), - [sym_full_reference_link] = STATE(177), - [sym_collapsed_reference_link] = STATE(177), - [sym_inline_link] = STATE(177), - [sym_link_text] = STATE(668), - [sym__comment_with_spaces] = STATE(177), - [sym_span] = STATE(177), - [sym_raw_inline] = STATE(177), - [sym_math] = STATE(177), - [sym_verbatim] = STATE(177), - [sym__todo_highlights] = STATE(177), - [sym_todo] = STATE(177), - [sym_note] = STATE(177), - [sym__symbol_fallback] = STATE(177), - [aux_sym__text] = STATE(132), - [aux_sym__inline_repeat1] = STATE(128), - [anon_sym_LBRACE_] = ACTIONS(405), - [anon_sym__] = ACTIONS(407), - [anon_sym_LBRACE_STAR] = ACTIONS(409), - [anon_sym_STAR] = ACTIONS(411), - [anon_sym_LBRACE_CARET] = ACTIONS(413), - [anon_sym_CARET] = ACTIONS(413), - [anon_sym_LBRACE_TILDE] = ACTIONS(415), - [anon_sym_TILDE] = ACTIONS(415), - [anon_sym_LBRACE_EQ] = ACTIONS(417), - [anon_sym_LBRACE_PLUS] = ACTIONS(419), - [anon_sym_LBRACE_DASH] = ACTIONS(421), - [anon_sym_BSLASH] = ACTIONS(423), - [sym_quotation_marks] = ACTIONS(425), - [sym_ellipsis] = ACTIONS(425), - [sym_em_dash] = ACTIONS(425), - [sym_en_dash] = ACTIONS(427), - [sym_backslash_escape] = ACTIONS(427), - [anon_sym_LT] = ACTIONS(429), - [sym_symbol] = ACTIONS(425), - [anon_sym_LBRACK_CARET] = ACTIONS(431), - [anon_sym_BANG_LBRACK] = ACTIONS(433), - [anon_sym_LBRACK] = ACTIONS(435), - [anon_sym_LBRACE2] = ACTIONS(427), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_TODO] = ACTIONS(439), - [anon_sym_WIP] = ACTIONS(439), - [anon_sym_NOTE] = ACTIONS(441), - [anon_sym_INFO] = ACTIONS(441), - [anon_sym_XXX] = ACTIONS(441), - [sym_fixme] = ACTIONS(425), - [sym__whitespace1] = ACTIONS(443), - [sym__newline] = ACTIONS(445), - [aux_sym__text_token1] = ACTIONS(447), - [sym__verbatim_begin] = ACTIONS(449), + [sym__inline] = STATE(1126), + [sym__element] = STATE(105), + [sym_emphasis] = STATE(140), + [sym_emphasis_begin] = STATE(1154), + [sym_strong] = STATE(140), + [sym_strong_begin] = STATE(1155), + [sym_superscript] = STATE(140), + [sym_superscript_begin] = STATE(1156), + [sym_subscript] = STATE(140), + [sym_subscript_begin] = STATE(1157), + [sym_highlighted] = STATE(140), + [sym_highlighted_begin] = STATE(1158), + [sym_insert] = STATE(140), + [sym_insert_begin] = STATE(1159), + [sym_delete] = STATE(140), + [sym_delete_begin] = STATE(1160), + [sym_hard_line_break] = STATE(140), + [sym__smart_punctuation] = STATE(140), + [sym_autolink] = STATE(140), + [sym_footnote_reference] = STATE(140), + [sym__image] = STATE(140), + [sym_full_reference_image] = STATE(140), + [sym_collapsed_reference_image] = STATE(140), + [sym_inline_image] = STATE(140), + [sym__image_description] = STATE(687), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(140), + [sym_full_reference_link] = STATE(140), + [sym_collapsed_reference_link] = STATE(140), + [sym_inline_link] = STATE(140), + [sym_link_text] = STATE(688), + [sym_span] = STATE(105), + [sym__bracketed_text] = STATE(654), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(140), + [sym_raw_inline] = STATE(140), + [sym_math] = STATE(140), + [sym_verbatim] = STATE(140), + [sym__todo_highlights] = STATE(140), + [sym_todo] = STATE(140), + [sym_note] = STATE(140), + [sym__symbol_fallback] = STATE(140), + [aux_sym__text] = STATE(131), + [aux_sym__inline_repeat1] = STATE(105), + [anon_sym_LBRACE_] = ACTIONS(327), + [anon_sym__] = ACTIONS(329), + [anon_sym_LBRACE_STAR] = ACTIONS(331), + [anon_sym_STAR] = ACTIONS(333), + [anon_sym_LBRACE_CARET] = ACTIONS(335), + [anon_sym_CARET] = ACTIONS(335), + [anon_sym_LBRACE_TILDE] = ACTIONS(337), + [anon_sym_TILDE] = ACTIONS(337), + [anon_sym_LBRACE_EQ] = ACTIONS(339), + [anon_sym_LBRACE_PLUS] = ACTIONS(341), + [anon_sym_LBRACE_DASH] = ACTIONS(343), + [anon_sym_BSLASH] = ACTIONS(345), + [sym_quotation_marks] = ACTIONS(347), + [sym_ellipsis] = ACTIONS(347), + [sym_em_dash] = ACTIONS(347), + [sym_en_dash] = ACTIONS(349), + [sym_backslash_escape] = ACTIONS(349), + [anon_sym_LT] = ACTIONS(351), + [sym_symbol] = ACTIONS(347), + [anon_sym_LBRACK_CARET] = ACTIONS(353), + [anon_sym_BANG_LBRACK] = ACTIONS(355), + [anon_sym_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [anon_sym_TODO] = ACTIONS(361), + [anon_sym_WIP] = ACTIONS(361), + [anon_sym_NOTE] = ACTIONS(363), + [anon_sym_INFO] = ACTIONS(363), + [anon_sym_XXX] = ACTIONS(363), + [sym_fixme] = ACTIONS(347), + [sym__whitespace1] = ACTIONS(365), + [sym__newline] = ACTIONS(367), + [aux_sym__text_token1] = ACTIONS(369), + [sym__verbatim_begin] = ACTIONS(371), }, [76] = { - [sym__inline] = STATE(884), - [sym__element] = STATE(66), - [sym_emphasis] = STATE(171), - [sym_emphasis_begin] = STATE(1116), - [sym_strong] = STATE(171), - [sym_strong_begin] = STATE(1117), - [sym_superscript] = STATE(171), - [sym_superscript_begin] = STATE(1118), - [sym_subscript] = STATE(171), - [sym_subscript_begin] = STATE(1119), - [sym_highlighted] = STATE(171), - [sym_highlighted_begin] = STATE(1120), - [sym_insert] = STATE(171), - [sym_insert_begin] = STATE(1121), - [sym_delete] = STATE(171), - [sym_delete_begin] = STATE(1122), - [sym_hard_line_break] = STATE(171), - [sym__smart_punctuation] = STATE(171), - [sym_autolink] = STATE(171), - [sym_footnote_reference] = STATE(171), - [sym__image] = STATE(171), - [sym_full_reference_image] = STATE(171), - [sym_collapsed_reference_image] = STATE(171), - [sym_inline_image] = STATE(171), - [sym__image_description] = STATE(674), - [sym__link] = STATE(171), - [sym_full_reference_link] = STATE(171), - [sym_collapsed_reference_link] = STATE(171), - [sym_inline_link] = STATE(171), - [sym_link_text] = STATE(675), - [sym__comment_with_spaces] = STATE(171), - [sym_span] = STATE(171), - [sym_raw_inline] = STATE(171), - [sym_math] = STATE(171), - [sym_verbatim] = STATE(171), - [sym__todo_highlights] = STATE(171), - [sym_todo] = STATE(171), - [sym_note] = STATE(171), - [sym__symbol_fallback] = STATE(171), - [aux_sym__text] = STATE(146), - [aux_sym__inline_repeat1] = STATE(66), - [anon_sym_LBRACE_] = ACTIONS(451), - [anon_sym__] = ACTIONS(453), - [anon_sym_LBRACE_STAR] = ACTIONS(455), - [anon_sym_STAR] = ACTIONS(457), - [anon_sym_LBRACE_CARET] = ACTIONS(459), - [anon_sym_CARET] = ACTIONS(459), - [anon_sym_LBRACE_TILDE] = ACTIONS(461), - [anon_sym_TILDE] = ACTIONS(461), - [anon_sym_LBRACE_EQ] = ACTIONS(463), - [anon_sym_LBRACE_PLUS] = ACTIONS(465), - [anon_sym_LBRACE_DASH] = ACTIONS(467), - [anon_sym_BSLASH] = ACTIONS(469), - [sym_quotation_marks] = ACTIONS(471), - [sym_ellipsis] = ACTIONS(471), - [sym_em_dash] = ACTIONS(471), - [sym_en_dash] = ACTIONS(473), - [sym_backslash_escape] = ACTIONS(473), - [anon_sym_LT] = ACTIONS(475), - [sym_symbol] = ACTIONS(471), - [anon_sym_LBRACK_CARET] = ACTIONS(477), - [anon_sym_BANG_LBRACK] = ACTIONS(479), - [anon_sym_LBRACK] = ACTIONS(481), - [anon_sym_LBRACE2] = ACTIONS(473), - [anon_sym_DOLLAR] = ACTIONS(483), - [anon_sym_TODO] = ACTIONS(485), - [anon_sym_WIP] = ACTIONS(485), - [anon_sym_NOTE] = ACTIONS(487), - [anon_sym_INFO] = ACTIONS(487), - [anon_sym_XXX] = ACTIONS(487), - [sym_fixme] = ACTIONS(471), - [sym__whitespace1] = ACTIONS(489), - [sym__newline] = ACTIONS(491), - [aux_sym__text_token1] = ACTIONS(493), - [sym__verbatim_begin] = ACTIONS(495), + [sym__inline] = STATE(1122), + [sym__element] = STATE(70), + [sym_emphasis] = STATE(136), + [sym_emphasis_begin] = STATE(1161), + [sym_strong] = STATE(136), + [sym_strong_begin] = STATE(1162), + [sym_superscript] = STATE(136), + [sym_superscript_begin] = STATE(1163), + [sym_subscript] = STATE(136), + [sym_subscript_begin] = STATE(1164), + [sym_highlighted] = STATE(136), + [sym_highlighted_begin] = STATE(1165), + [sym_insert] = STATE(136), + [sym_insert_begin] = STATE(1166), + [sym_delete] = STATE(136), + [sym_delete_begin] = STATE(1167), + [sym_hard_line_break] = STATE(136), + [sym__smart_punctuation] = STATE(136), + [sym_autolink] = STATE(136), + [sym_footnote_reference] = STATE(136), + [sym__image] = STATE(136), + [sym_full_reference_image] = STATE(136), + [sym_collapsed_reference_image] = STATE(136), + [sym_inline_image] = STATE(136), + [sym__image_description] = STATE(690), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(136), + [sym_full_reference_link] = STATE(136), + [sym_collapsed_reference_link] = STATE(136), + [sym_inline_link] = STATE(136), + [sym_link_text] = STATE(691), + [sym_span] = STATE(70), + [sym__bracketed_text] = STATE(653), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(136), + [sym_raw_inline] = STATE(136), + [sym_math] = STATE(136), + [sym_verbatim] = STATE(136), + [sym__todo_highlights] = STATE(136), + [sym_todo] = STATE(136), + [sym_note] = STATE(136), + [sym__symbol_fallback] = STATE(136), + [aux_sym__text] = STATE(125), + [aux_sym__inline_repeat1] = STATE(70), + [anon_sym_LBRACE_] = ACTIONS(97), + [anon_sym__] = ACTIONS(99), + [anon_sym_LBRACE_STAR] = ACTIONS(101), + [anon_sym_STAR] = ACTIONS(103), + [anon_sym_LBRACE_CARET] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [anon_sym_LBRACE_TILDE] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(107), + [anon_sym_LBRACE_EQ] = ACTIONS(109), + [anon_sym_LBRACE_PLUS] = ACTIONS(111), + [anon_sym_LBRACE_DASH] = ACTIONS(113), + [anon_sym_BSLASH] = ACTIONS(115), + [sym_quotation_marks] = ACTIONS(117), + [sym_ellipsis] = ACTIONS(117), + [sym_em_dash] = ACTIONS(117), + [sym_en_dash] = ACTIONS(119), + [sym_backslash_escape] = ACTIONS(119), + [anon_sym_LT] = ACTIONS(121), + [sym_symbol] = ACTIONS(117), + [anon_sym_LBRACK_CARET] = ACTIONS(123), + [anon_sym_BANG_LBRACK] = ACTIONS(125), + [anon_sym_LBRACK] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_TODO] = ACTIONS(131), + [anon_sym_WIP] = ACTIONS(131), + [anon_sym_NOTE] = ACTIONS(133), + [anon_sym_INFO] = ACTIONS(133), + [anon_sym_XXX] = ACTIONS(133), + [sym_fixme] = ACTIONS(117), + [sym__whitespace1] = ACTIONS(135), + [sym__newline] = ACTIONS(137), + [aux_sym__text_token1] = ACTIONS(139), + [sym__verbatim_begin] = ACTIONS(141), }, [77] = { - [sym__inline] = STATE(885), - [sym__element] = STATE(103), - [sym_emphasis] = STATE(180), - [sym_emphasis_begin] = STATE(1109), - [sym_strong] = STATE(180), - [sym_strong_begin] = STATE(1110), - [sym_superscript] = STATE(180), - [sym_superscript_begin] = STATE(1111), - [sym_subscript] = STATE(180), - [sym_subscript_begin] = STATE(1112), - [sym_highlighted] = STATE(180), - [sym_highlighted_begin] = STATE(1113), - [sym_insert] = STATE(180), - [sym_insert_begin] = STATE(1114), - [sym_delete] = STATE(180), - [sym_delete_begin] = STATE(1115), - [sym_hard_line_break] = STATE(180), - [sym__smart_punctuation] = STATE(180), - [sym_autolink] = STATE(180), - [sym_footnote_reference] = STATE(180), - [sym__image] = STATE(180), - [sym_full_reference_image] = STATE(180), - [sym_collapsed_reference_image] = STATE(180), - [sym_inline_image] = STATE(180), - [sym__image_description] = STATE(666), - [sym__link] = STATE(180), - [sym_full_reference_link] = STATE(180), - [sym_collapsed_reference_link] = STATE(180), - [sym_inline_link] = STATE(180), - [sym_link_text] = STATE(664), - [sym__comment_with_spaces] = STATE(180), - [sym_span] = STATE(180), - [sym_raw_inline] = STATE(180), - [sym_math] = STATE(180), - [sym_verbatim] = STATE(180), - [sym__todo_highlights] = STATE(180), - [sym_todo] = STATE(180), - [sym_note] = STATE(180), - [sym__symbol_fallback] = STATE(180), - [aux_sym__text] = STATE(159), - [aux_sym__inline_repeat1] = STATE(103), - [anon_sym_LBRACE_] = ACTIONS(221), - [anon_sym__] = ACTIONS(223), - [anon_sym_LBRACE_STAR] = ACTIONS(225), - [anon_sym_STAR] = ACTIONS(227), - [anon_sym_LBRACE_CARET] = ACTIONS(229), - [anon_sym_CARET] = ACTIONS(229), - [anon_sym_LBRACE_TILDE] = ACTIONS(231), - [anon_sym_TILDE] = ACTIONS(231), - [anon_sym_LBRACE_EQ] = ACTIONS(233), - [anon_sym_LBRACE_PLUS] = ACTIONS(235), - [anon_sym_LBRACE_DASH] = ACTIONS(237), - [anon_sym_BSLASH] = ACTIONS(239), - [sym_quotation_marks] = ACTIONS(241), - [sym_ellipsis] = ACTIONS(241), - [sym_em_dash] = ACTIONS(241), - [sym_en_dash] = ACTIONS(243), - [sym_backslash_escape] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(245), - [sym_symbol] = ACTIONS(241), - [anon_sym_LBRACK_CARET] = ACTIONS(247), - [anon_sym_BANG_LBRACK] = ACTIONS(249), - [anon_sym_LBRACK] = ACTIONS(251), - [anon_sym_LBRACE2] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(253), - [anon_sym_TODO] = ACTIONS(255), - [anon_sym_WIP] = ACTIONS(255), - [anon_sym_NOTE] = ACTIONS(257), - [anon_sym_INFO] = ACTIONS(257), - [anon_sym_XXX] = ACTIONS(257), - [sym_fixme] = ACTIONS(241), - [sym__whitespace1] = ACTIONS(259), - [sym__newline] = ACTIONS(261), - [aux_sym__text_token1] = ACTIONS(263), - [sym__verbatim_begin] = ACTIONS(265), + [sym__inline] = STATE(1121), + [sym__element] = STATE(13), + [sym_emphasis] = STATE(141), + [sym_emphasis_begin] = STATE(1168), + [sym_strong] = STATE(141), + [sym_strong_begin] = STATE(1169), + [sym_superscript] = STATE(141), + [sym_superscript_begin] = STATE(1170), + [sym_subscript] = STATE(141), + [sym_subscript_begin] = STATE(1171), + [sym_highlighted] = STATE(141), + [sym_highlighted_begin] = STATE(1172), + [sym_insert] = STATE(141), + [sym_insert_begin] = STATE(1173), + [sym_delete] = STATE(141), + [sym_delete_begin] = STATE(1174), + [sym_hard_line_break] = STATE(141), + [sym__smart_punctuation] = STATE(141), + [sym_autolink] = STATE(141), + [sym_footnote_reference] = STATE(141), + [sym__image] = STATE(141), + [sym_full_reference_image] = STATE(141), + [sym_collapsed_reference_image] = STATE(141), + [sym_inline_image] = STATE(141), + [sym__image_description] = STATE(674), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(141), + [sym_full_reference_link] = STATE(141), + [sym_collapsed_reference_link] = STATE(141), + [sym_inline_link] = STATE(141), + [sym_link_text] = STATE(672), + [sym_span] = STATE(13), + [sym__bracketed_text] = STATE(655), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(141), + [sym_raw_inline] = STATE(141), + [sym_math] = STATE(141), + [sym_verbatim] = STATE(141), + [sym__todo_highlights] = STATE(141), + [sym_todo] = STATE(141), + [sym_note] = STATE(141), + [sym__symbol_fallback] = STATE(141), + [aux_sym__text] = STATE(128), + [aux_sym__inline_repeat1] = STATE(13), + [anon_sym_LBRACE_] = ACTIONS(281), + [anon_sym__] = ACTIONS(283), + [anon_sym_LBRACE_STAR] = ACTIONS(285), + [anon_sym_STAR] = ACTIONS(287), + [anon_sym_LBRACE_CARET] = ACTIONS(289), + [anon_sym_CARET] = ACTIONS(289), + [anon_sym_LBRACE_TILDE] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(291), + [anon_sym_LBRACE_EQ] = ACTIONS(293), + [anon_sym_LBRACE_PLUS] = ACTIONS(295), + [anon_sym_LBRACE_DASH] = ACTIONS(297), + [anon_sym_BSLASH] = ACTIONS(299), + [sym_quotation_marks] = ACTIONS(301), + [sym_ellipsis] = ACTIONS(301), + [sym_em_dash] = ACTIONS(301), + [sym_en_dash] = ACTIONS(303), + [sym_backslash_escape] = ACTIONS(303), + [anon_sym_LT] = ACTIONS(305), + [sym_symbol] = ACTIONS(301), + [anon_sym_LBRACK_CARET] = ACTIONS(307), + [anon_sym_BANG_LBRACK] = ACTIONS(309), + [anon_sym_LBRACK] = ACTIONS(311), + [anon_sym_DOLLAR] = ACTIONS(313), + [anon_sym_TODO] = ACTIONS(315), + [anon_sym_WIP] = ACTIONS(315), + [anon_sym_NOTE] = ACTIONS(317), + [anon_sym_INFO] = ACTIONS(317), + [anon_sym_XXX] = ACTIONS(317), + [sym_fixme] = ACTIONS(301), + [sym__whitespace1] = ACTIONS(319), + [sym__newline] = ACTIONS(321), + [aux_sym__text_token1] = ACTIONS(323), + [sym__verbatim_begin] = ACTIONS(325), }, [78] = { - [sym__element] = STATE(78), - [sym_emphasis] = STATE(211), - [sym_emphasis_begin] = STATE(1060), - [sym_strong] = STATE(211), - [sym_strong_begin] = STATE(1061), - [sym_superscript] = STATE(211), - [sym_superscript_begin] = STATE(1062), - [sym_subscript] = STATE(211), - [sym_subscript_begin] = STATE(1063), - [sym_highlighted] = STATE(211), - [sym_highlighted_begin] = STATE(1064), - [sym_insert] = STATE(211), - [sym_insert_begin] = STATE(1065), - [sym_delete] = STATE(211), - [sym_delete_begin] = STATE(1066), - [sym_hard_line_break] = STATE(211), - [sym__smart_punctuation] = STATE(211), - [sym_autolink] = STATE(211), - [sym_footnote_reference] = STATE(211), - [sym__image] = STATE(211), - [sym_full_reference_image] = STATE(211), - [sym_collapsed_reference_image] = STATE(211), - [sym_inline_image] = STATE(211), - [sym__image_description] = STATE(671), - [sym__link] = STATE(211), - [sym_full_reference_link] = STATE(211), - [sym_collapsed_reference_link] = STATE(211), - [sym_inline_link] = STATE(211), - [sym_link_text] = STATE(676), - [sym__comment_with_spaces] = STATE(211), - [sym_span] = STATE(211), - [sym_raw_inline] = STATE(211), - [sym_math] = STATE(211), - [sym_verbatim] = STATE(211), - [sym__todo_highlights] = STATE(211), - [sym_todo] = STATE(211), - [sym_note] = STATE(211), - [sym__symbol_fallback] = STATE(211), - [aux_sym__text] = STATE(139), - [aux_sym__inline_repeat1] = STATE(78), - [anon_sym_LBRACE_] = ACTIONS(712), - [anon_sym__] = ACTIONS(715), - [anon_sym_LBRACE_STAR] = ACTIONS(718), - [anon_sym_STAR] = ACTIONS(721), - [anon_sym_LBRACE_CARET] = ACTIONS(724), - [anon_sym_CARET] = ACTIONS(724), - [anon_sym_LBRACE_TILDE] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(727), - [anon_sym_LBRACE_EQ] = ACTIONS(730), - [anon_sym_LBRACE_PLUS] = ACTIONS(733), - [anon_sym_LBRACE_DASH] = ACTIONS(736), - [anon_sym_BSLASH] = ACTIONS(739), - [sym_quotation_marks] = ACTIONS(742), - [sym_ellipsis] = ACTIONS(742), - [sym_em_dash] = ACTIONS(742), - [sym_en_dash] = ACTIONS(745), - [sym_backslash_escape] = ACTIONS(745), - [anon_sym_LT] = ACTIONS(748), - [sym_symbol] = ACTIONS(742), - [anon_sym_LBRACK_CARET] = ACTIONS(751), - [anon_sym_RBRACK] = ACTIONS(549), - [anon_sym_BANG_LBRACK] = ACTIONS(754), - [anon_sym_LBRACK] = ACTIONS(757), - [anon_sym_LBRACE2] = ACTIONS(745), - [anon_sym_DOLLAR] = ACTIONS(760), - [anon_sym_TODO] = ACTIONS(763), - [anon_sym_WIP] = ACTIONS(763), - [anon_sym_NOTE] = ACTIONS(766), - [anon_sym_INFO] = ACTIONS(766), - [anon_sym_XXX] = ACTIONS(766), - [sym_fixme] = ACTIONS(742), - [sym__whitespace1] = ACTIONS(769), - [sym__newline] = ACTIONS(772), - [aux_sym__text_token1] = ACTIONS(775), - [sym__verbatim_begin] = ACTIONS(778), + [sym__inline] = STATE(912), + [sym__element] = STATE(103), + [sym_emphasis] = STATE(139), + [sym_emphasis_begin] = STATE(1175), + [sym_strong] = STATE(139), + [sym_strong_begin] = STATE(1176), + [sym_superscript] = STATE(139), + [sym_superscript_begin] = STATE(1177), + [sym_subscript] = STATE(139), + [sym_subscript_begin] = STATE(1178), + [sym_highlighted] = STATE(139), + [sym_highlighted_begin] = STATE(1179), + [sym_insert] = STATE(139), + [sym_insert_begin] = STATE(1180), + [sym_delete] = STATE(139), + [sym_delete_begin] = STATE(1181), + [sym_hard_line_break] = STATE(139), + [sym__smart_punctuation] = STATE(139), + [sym_autolink] = STATE(139), + [sym_footnote_reference] = STATE(139), + [sym__image] = STATE(139), + [sym_full_reference_image] = STATE(139), + [sym_collapsed_reference_image] = STATE(139), + [sym_inline_image] = STATE(139), + [sym__image_description] = STATE(682), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(139), + [sym_full_reference_link] = STATE(139), + [sym_collapsed_reference_link] = STATE(139), + [sym_inline_link] = STATE(139), + [sym_link_text] = STATE(681), + [sym_span] = STATE(103), + [sym__bracketed_text] = STATE(656), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(139), + [sym_raw_inline] = STATE(139), + [sym_math] = STATE(139), + [sym_verbatim] = STATE(139), + [sym__todo_highlights] = STATE(139), + [sym_todo] = STATE(139), + [sym_note] = STATE(139), + [sym__symbol_fallback] = STATE(139), + [aux_sym__text] = STATE(129), + [aux_sym__inline_repeat1] = STATE(103), + [anon_sym_LBRACE_] = ACTIONS(235), + [anon_sym__] = ACTIONS(237), + [anon_sym_LBRACE_STAR] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(241), + [anon_sym_LBRACE_CARET] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(243), + [anon_sym_LBRACE_TILDE] = ACTIONS(245), + [anon_sym_TILDE] = ACTIONS(245), + [anon_sym_LBRACE_EQ] = ACTIONS(247), + [anon_sym_LBRACE_PLUS] = ACTIONS(249), + [anon_sym_LBRACE_DASH] = ACTIONS(251), + [anon_sym_BSLASH] = ACTIONS(253), + [sym_quotation_marks] = ACTIONS(255), + [sym_ellipsis] = ACTIONS(255), + [sym_em_dash] = ACTIONS(255), + [sym_en_dash] = ACTIONS(257), + [sym_backslash_escape] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(259), + [sym_symbol] = ACTIONS(255), + [anon_sym_LBRACK_CARET] = ACTIONS(261), + [anon_sym_BANG_LBRACK] = ACTIONS(263), + [anon_sym_LBRACK] = ACTIONS(265), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_TODO] = ACTIONS(269), + [anon_sym_WIP] = ACTIONS(269), + [anon_sym_NOTE] = ACTIONS(271), + [anon_sym_INFO] = ACTIONS(271), + [anon_sym_XXX] = ACTIONS(271), + [sym_fixme] = ACTIONS(255), + [sym__whitespace1] = ACTIONS(273), + [sym__newline] = ACTIONS(275), + [aux_sym__text_token1] = ACTIONS(277), + [sym__verbatim_begin] = ACTIONS(279), }, [79] = { - [sym__element] = STATE(104), - [sym_emphasis] = STATE(161), - [sym_emphasis_begin] = STATE(1081), - [sym_strong] = STATE(161), - [sym_strong_begin] = STATE(1082), - [sym_superscript] = STATE(161), - [sym_superscript_begin] = STATE(1083), - [sym_subscript] = STATE(161), - [sym_subscript_begin] = STATE(1084), - [sym_highlighted] = STATE(161), - [sym_highlighted_begin] = STATE(1085), - [sym_insert] = STATE(161), - [sym_insert_begin] = STATE(1086), - [sym_delete] = STATE(161), - [sym_delete_begin] = STATE(1087), - [sym_hard_line_break] = STATE(161), - [sym__smart_punctuation] = STATE(161), - [sym_autolink] = STATE(161), - [sym_footnote_reference] = STATE(161), - [sym__image] = STATE(161), - [sym_full_reference_image] = STATE(161), - [sym_collapsed_reference_image] = STATE(161), - [sym_inline_image] = STATE(161), - [sym__image_description] = STATE(692), - [sym__link] = STATE(161), - [sym_full_reference_link] = STATE(161), - [sym_collapsed_reference_link] = STATE(161), - [sym_inline_link] = STATE(161), - [sym_link_text] = STATE(687), - [sym__comment_with_spaces] = STATE(161), - [sym_span] = STATE(161), - [sym_raw_inline] = STATE(161), - [sym_math] = STATE(161), - [sym_verbatim] = STATE(161), - [sym__todo_highlights] = STATE(161), - [sym_todo] = STATE(161), - [sym_note] = STATE(161), - [sym__symbol_fallback] = STATE(161), - [aux_sym__text] = STATE(149), - [aux_sym__inline_repeat1] = STATE(104), - [anon_sym_LBRACE_] = ACTIONS(359), - [anon_sym__] = ACTIONS(361), - [anon_sym_LBRACE_STAR] = ACTIONS(363), - [anon_sym_STAR] = ACTIONS(365), - [anon_sym_LBRACE_CARET] = ACTIONS(367), - [anon_sym_CARET] = ACTIONS(367), - [anon_sym_LBRACE_TILDE] = ACTIONS(369), - [anon_sym_TILDE] = ACTIONS(369), - [anon_sym_LBRACE_EQ] = ACTIONS(371), - [anon_sym_LBRACE_PLUS] = ACTIONS(373), - [anon_sym_LBRACE_DASH] = ACTIONS(375), - [anon_sym_BSLASH] = ACTIONS(377), - [sym_quotation_marks] = ACTIONS(379), - [sym_ellipsis] = ACTIONS(379), - [sym_em_dash] = ACTIONS(379), - [sym_en_dash] = ACTIONS(381), - [sym_backslash_escape] = ACTIONS(381), - [anon_sym_LT] = ACTIONS(383), - [sym_symbol] = ACTIONS(379), - [anon_sym_LBRACK_CARET] = ACTIONS(385), - [anon_sym_BANG_LBRACK] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(389), - [anon_sym_LBRACE2] = ACTIONS(381), - [anon_sym_DOLLAR] = ACTIONS(391), - [anon_sym_TODO] = ACTIONS(393), - [anon_sym_WIP] = ACTIONS(393), - [anon_sym_NOTE] = ACTIONS(395), - [anon_sym_INFO] = ACTIONS(395), - [anon_sym_XXX] = ACTIONS(395), - [sym_fixme] = ACTIONS(379), - [sym__whitespace1] = ACTIONS(397), - [sym__newline] = ACTIONS(781), - [aux_sym__text_token1] = ACTIONS(401), - [sym__verbatim_begin] = ACTIONS(403), - [sym_superscript_end] = ACTIONS(497), + [sym__inline] = STATE(913), + [sym__element] = STATE(13), + [sym_emphasis] = STATE(141), + [sym_emphasis_begin] = STATE(1168), + [sym_strong] = STATE(141), + [sym_strong_begin] = STATE(1169), + [sym_superscript] = STATE(141), + [sym_superscript_begin] = STATE(1170), + [sym_subscript] = STATE(141), + [sym_subscript_begin] = STATE(1171), + [sym_highlighted] = STATE(141), + [sym_highlighted_begin] = STATE(1172), + [sym_insert] = STATE(141), + [sym_insert_begin] = STATE(1173), + [sym_delete] = STATE(141), + [sym_delete_begin] = STATE(1174), + [sym_hard_line_break] = STATE(141), + [sym__smart_punctuation] = STATE(141), + [sym_autolink] = STATE(141), + [sym_footnote_reference] = STATE(141), + [sym__image] = STATE(141), + [sym_full_reference_image] = STATE(141), + [sym_collapsed_reference_image] = STATE(141), + [sym_inline_image] = STATE(141), + [sym__image_description] = STATE(674), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(141), + [sym_full_reference_link] = STATE(141), + [sym_collapsed_reference_link] = STATE(141), + [sym_inline_link] = STATE(141), + [sym_link_text] = STATE(672), + [sym_span] = STATE(13), + [sym__bracketed_text] = STATE(655), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(141), + [sym_raw_inline] = STATE(141), + [sym_math] = STATE(141), + [sym_verbatim] = STATE(141), + [sym__todo_highlights] = STATE(141), + [sym_todo] = STATE(141), + [sym_note] = STATE(141), + [sym__symbol_fallback] = STATE(141), + [aux_sym__text] = STATE(128), + [aux_sym__inline_repeat1] = STATE(13), + [anon_sym_LBRACE_] = ACTIONS(281), + [anon_sym__] = ACTIONS(283), + [anon_sym_LBRACE_STAR] = ACTIONS(285), + [anon_sym_STAR] = ACTIONS(287), + [anon_sym_LBRACE_CARET] = ACTIONS(289), + [anon_sym_CARET] = ACTIONS(289), + [anon_sym_LBRACE_TILDE] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(291), + [anon_sym_LBRACE_EQ] = ACTIONS(293), + [anon_sym_LBRACE_PLUS] = ACTIONS(295), + [anon_sym_LBRACE_DASH] = ACTIONS(297), + [anon_sym_BSLASH] = ACTIONS(299), + [sym_quotation_marks] = ACTIONS(301), + [sym_ellipsis] = ACTIONS(301), + [sym_em_dash] = ACTIONS(301), + [sym_en_dash] = ACTIONS(303), + [sym_backslash_escape] = ACTIONS(303), + [anon_sym_LT] = ACTIONS(305), + [sym_symbol] = ACTIONS(301), + [anon_sym_LBRACK_CARET] = ACTIONS(307), + [anon_sym_BANG_LBRACK] = ACTIONS(309), + [anon_sym_LBRACK] = ACTIONS(311), + [anon_sym_DOLLAR] = ACTIONS(313), + [anon_sym_TODO] = ACTIONS(315), + [anon_sym_WIP] = ACTIONS(315), + [anon_sym_NOTE] = ACTIONS(317), + [anon_sym_INFO] = ACTIONS(317), + [anon_sym_XXX] = ACTIONS(317), + [sym_fixme] = ACTIONS(301), + [sym__whitespace1] = ACTIONS(319), + [sym__newline] = ACTIONS(321), + [aux_sym__text_token1] = ACTIONS(323), + [sym__verbatim_begin] = ACTIONS(325), }, [80] = { - [sym__inline] = STATE(898), - [sym__element] = STATE(111), - [sym_emphasis] = STATE(186), - [sym_emphasis_begin] = STATE(1102), - [sym_strong] = STATE(186), - [sym_strong_begin] = STATE(1103), - [sym_superscript] = STATE(186), - [sym_superscript_begin] = STATE(1104), - [sym_subscript] = STATE(186), - [sym_subscript_begin] = STATE(1105), - [sym_highlighted] = STATE(186), - [sym_highlighted_begin] = STATE(1106), - [sym_insert] = STATE(186), - [sym_insert_begin] = STATE(1107), - [sym_delete] = STATE(186), - [sym_delete_begin] = STATE(1108), - [sym_hard_line_break] = STATE(186), - [sym__smart_punctuation] = STATE(186), - [sym_autolink] = STATE(186), - [sym_footnote_reference] = STATE(186), - [sym__image] = STATE(186), - [sym_full_reference_image] = STATE(186), - [sym_collapsed_reference_image] = STATE(186), - [sym_inline_image] = STATE(186), - [sym__image_description] = STATE(673), - [sym__link] = STATE(186), - [sym_full_reference_link] = STATE(186), - [sym_collapsed_reference_link] = STATE(186), - [sym_inline_link] = STATE(186), - [sym_link_text] = STATE(672), - [sym__comment_with_spaces] = STATE(186), - [sym_span] = STATE(186), - [sym_raw_inline] = STATE(186), - [sym_math] = STATE(186), - [sym_verbatim] = STATE(186), - [sym__todo_highlights] = STATE(186), - [sym_todo] = STATE(186), - [sym_note] = STATE(186), - [sym__symbol_fallback] = STATE(186), - [aux_sym__text] = STATE(155), - [aux_sym__inline_repeat1] = STATE(111), - [anon_sym_LBRACE_] = ACTIONS(267), - [anon_sym__] = ACTIONS(269), - [anon_sym_LBRACE_STAR] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_LBRACE_CARET] = ACTIONS(275), - [anon_sym_CARET] = ACTIONS(275), - [anon_sym_LBRACE_TILDE] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(277), - [anon_sym_LBRACE_EQ] = ACTIONS(279), - [anon_sym_LBRACE_PLUS] = ACTIONS(281), - [anon_sym_LBRACE_DASH] = ACTIONS(283), - [anon_sym_BSLASH] = ACTIONS(285), - [sym_quotation_marks] = ACTIONS(287), - [sym_ellipsis] = ACTIONS(287), - [sym_em_dash] = ACTIONS(287), - [sym_en_dash] = ACTIONS(289), - [sym_backslash_escape] = ACTIONS(289), - [anon_sym_LT] = ACTIONS(291), - [sym_symbol] = ACTIONS(287), - [anon_sym_LBRACK_CARET] = ACTIONS(293), - [anon_sym_BANG_LBRACK] = ACTIONS(295), - [anon_sym_LBRACK] = ACTIONS(297), - [anon_sym_LBRACE2] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(299), - [anon_sym_TODO] = ACTIONS(301), - [anon_sym_WIP] = ACTIONS(301), - [anon_sym_NOTE] = ACTIONS(303), - [anon_sym_INFO] = ACTIONS(303), - [anon_sym_XXX] = ACTIONS(303), - [sym_fixme] = ACTIONS(287), - [sym__whitespace1] = ACTIONS(305), - [sym__newline] = ACTIONS(307), - [aux_sym__text_token1] = ACTIONS(309), - [sym__verbatim_begin] = ACTIONS(311), + [sym__inline] = STATE(914), + [sym__element] = STATE(70), + [sym_emphasis] = STATE(136), + [sym_emphasis_begin] = STATE(1161), + [sym_strong] = STATE(136), + [sym_strong_begin] = STATE(1162), + [sym_superscript] = STATE(136), + [sym_superscript_begin] = STATE(1163), + [sym_subscript] = STATE(136), + [sym_subscript_begin] = STATE(1164), + [sym_highlighted] = STATE(136), + [sym_highlighted_begin] = STATE(1165), + [sym_insert] = STATE(136), + [sym_insert_begin] = STATE(1166), + [sym_delete] = STATE(136), + [sym_delete_begin] = STATE(1167), + [sym_hard_line_break] = STATE(136), + [sym__smart_punctuation] = STATE(136), + [sym_autolink] = STATE(136), + [sym_footnote_reference] = STATE(136), + [sym__image] = STATE(136), + [sym_full_reference_image] = STATE(136), + [sym_collapsed_reference_image] = STATE(136), + [sym_inline_image] = STATE(136), + [sym__image_description] = STATE(690), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(136), + [sym_full_reference_link] = STATE(136), + [sym_collapsed_reference_link] = STATE(136), + [sym_inline_link] = STATE(136), + [sym_link_text] = STATE(691), + [sym_span] = STATE(70), + [sym__bracketed_text] = STATE(653), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(136), + [sym_raw_inline] = STATE(136), + [sym_math] = STATE(136), + [sym_verbatim] = STATE(136), + [sym__todo_highlights] = STATE(136), + [sym_todo] = STATE(136), + [sym_note] = STATE(136), + [sym__symbol_fallback] = STATE(136), + [aux_sym__text] = STATE(125), + [aux_sym__inline_repeat1] = STATE(70), + [anon_sym_LBRACE_] = ACTIONS(97), + [anon_sym__] = ACTIONS(99), + [anon_sym_LBRACE_STAR] = ACTIONS(101), + [anon_sym_STAR] = ACTIONS(103), + [anon_sym_LBRACE_CARET] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [anon_sym_LBRACE_TILDE] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(107), + [anon_sym_LBRACE_EQ] = ACTIONS(109), + [anon_sym_LBRACE_PLUS] = ACTIONS(111), + [anon_sym_LBRACE_DASH] = ACTIONS(113), + [anon_sym_BSLASH] = ACTIONS(115), + [sym_quotation_marks] = ACTIONS(117), + [sym_ellipsis] = ACTIONS(117), + [sym_em_dash] = ACTIONS(117), + [sym_en_dash] = ACTIONS(119), + [sym_backslash_escape] = ACTIONS(119), + [anon_sym_LT] = ACTIONS(121), + [sym_symbol] = ACTIONS(117), + [anon_sym_LBRACK_CARET] = ACTIONS(123), + [anon_sym_BANG_LBRACK] = ACTIONS(125), + [anon_sym_LBRACK] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_TODO] = ACTIONS(131), + [anon_sym_WIP] = ACTIONS(131), + [anon_sym_NOTE] = ACTIONS(133), + [anon_sym_INFO] = ACTIONS(133), + [anon_sym_XXX] = ACTIONS(133), + [sym_fixme] = ACTIONS(117), + [sym__whitespace1] = ACTIONS(135), + [sym__newline] = ACTIONS(137), + [aux_sym__text_token1] = ACTIONS(139), + [sym__verbatim_begin] = ACTIONS(141), }, [81] = { - [sym__inline] = STATE(892), - [sym__element] = STATE(115), - [sym_emphasis] = STATE(192), - [sym_emphasis_begin] = STATE(1095), - [sym_strong] = STATE(192), - [sym_strong_begin] = STATE(1096), - [sym_superscript] = STATE(192), - [sym_superscript_begin] = STATE(1097), - [sym_subscript] = STATE(192), - [sym_subscript_begin] = STATE(1098), - [sym_highlighted] = STATE(192), - [sym_highlighted_begin] = STATE(1099), - [sym_insert] = STATE(192), - [sym_insert_begin] = STATE(1100), - [sym_delete] = STATE(192), - [sym_delete_begin] = STATE(1101), - [sym_hard_line_break] = STATE(192), - [sym__smart_punctuation] = STATE(192), - [sym_autolink] = STATE(192), - [sym_footnote_reference] = STATE(192), - [sym__image] = STATE(192), - [sym_full_reference_image] = STATE(192), - [sym_collapsed_reference_image] = STATE(192), - [sym_inline_image] = STATE(192), - [sym__image_description] = STATE(684), - [sym__link] = STATE(192), - [sym_full_reference_link] = STATE(192), - [sym_collapsed_reference_link] = STATE(192), - [sym_inline_link] = STATE(192), - [sym_link_text] = STATE(683), - [sym__comment_with_spaces] = STATE(192), - [sym_span] = STATE(192), - [sym_raw_inline] = STATE(192), - [sym_math] = STATE(192), - [sym_verbatim] = STATE(192), - [sym__todo_highlights] = STATE(192), - [sym_todo] = STATE(192), - [sym_note] = STATE(192), - [sym__symbol_fallback] = STATE(192), - [aux_sym__text] = STATE(141), - [aux_sym__inline_repeat1] = STATE(115), - [anon_sym_LBRACE_] = ACTIONS(129), - [anon_sym__] = ACTIONS(131), - [anon_sym_LBRACE_STAR] = ACTIONS(133), - [anon_sym_STAR] = ACTIONS(135), - [anon_sym_LBRACE_CARET] = ACTIONS(137), - [anon_sym_CARET] = ACTIONS(137), - [anon_sym_LBRACE_TILDE] = ACTIONS(139), - [anon_sym_TILDE] = ACTIONS(139), - [anon_sym_LBRACE_EQ] = ACTIONS(141), - [anon_sym_LBRACE_PLUS] = ACTIONS(143), - [anon_sym_LBRACE_DASH] = ACTIONS(145), - [anon_sym_BSLASH] = ACTIONS(147), - [sym_quotation_marks] = ACTIONS(149), - [sym_ellipsis] = ACTIONS(149), - [sym_em_dash] = ACTIONS(149), - [sym_en_dash] = ACTIONS(151), - [sym_backslash_escape] = ACTIONS(151), - [anon_sym_LT] = ACTIONS(153), - [sym_symbol] = ACTIONS(149), - [anon_sym_LBRACK_CARET] = ACTIONS(155), - [anon_sym_BANG_LBRACK] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LBRACE2] = ACTIONS(151), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_TODO] = ACTIONS(163), - [anon_sym_WIP] = ACTIONS(163), - [anon_sym_NOTE] = ACTIONS(165), - [anon_sym_INFO] = ACTIONS(165), - [anon_sym_XXX] = ACTIONS(165), - [sym_fixme] = ACTIONS(149), - [sym__whitespace1] = ACTIONS(167), - [sym__newline] = ACTIONS(169), - [aux_sym__text_token1] = ACTIONS(171), - [sym__verbatim_begin] = ACTIONS(173), + [sym__inline] = STATE(916), + [sym__element] = STATE(105), + [sym_emphasis] = STATE(140), + [sym_emphasis_begin] = STATE(1154), + [sym_strong] = STATE(140), + [sym_strong_begin] = STATE(1155), + [sym_superscript] = STATE(140), + [sym_superscript_begin] = STATE(1156), + [sym_subscript] = STATE(140), + [sym_subscript_begin] = STATE(1157), + [sym_highlighted] = STATE(140), + [sym_highlighted_begin] = STATE(1158), + [sym_insert] = STATE(140), + [sym_insert_begin] = STATE(1159), + [sym_delete] = STATE(140), + [sym_delete_begin] = STATE(1160), + [sym_hard_line_break] = STATE(140), + [sym__smart_punctuation] = STATE(140), + [sym_autolink] = STATE(140), + [sym_footnote_reference] = STATE(140), + [sym__image] = STATE(140), + [sym_full_reference_image] = STATE(140), + [sym_collapsed_reference_image] = STATE(140), + [sym_inline_image] = STATE(140), + [sym__image_description] = STATE(687), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(140), + [sym_full_reference_link] = STATE(140), + [sym_collapsed_reference_link] = STATE(140), + [sym_inline_link] = STATE(140), + [sym_link_text] = STATE(688), + [sym_span] = STATE(105), + [sym__bracketed_text] = STATE(654), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(140), + [sym_raw_inline] = STATE(140), + [sym_math] = STATE(140), + [sym_verbatim] = STATE(140), + [sym__todo_highlights] = STATE(140), + [sym_todo] = STATE(140), + [sym_note] = STATE(140), + [sym__symbol_fallback] = STATE(140), + [aux_sym__text] = STATE(131), + [aux_sym__inline_repeat1] = STATE(105), + [anon_sym_LBRACE_] = ACTIONS(327), + [anon_sym__] = ACTIONS(329), + [anon_sym_LBRACE_STAR] = ACTIONS(331), + [anon_sym_STAR] = ACTIONS(333), + [anon_sym_LBRACE_CARET] = ACTIONS(335), + [anon_sym_CARET] = ACTIONS(335), + [anon_sym_LBRACE_TILDE] = ACTIONS(337), + [anon_sym_TILDE] = ACTIONS(337), + [anon_sym_LBRACE_EQ] = ACTIONS(339), + [anon_sym_LBRACE_PLUS] = ACTIONS(341), + [anon_sym_LBRACE_DASH] = ACTIONS(343), + [anon_sym_BSLASH] = ACTIONS(345), + [sym_quotation_marks] = ACTIONS(347), + [sym_ellipsis] = ACTIONS(347), + [sym_em_dash] = ACTIONS(347), + [sym_en_dash] = ACTIONS(349), + [sym_backslash_escape] = ACTIONS(349), + [anon_sym_LT] = ACTIONS(351), + [sym_symbol] = ACTIONS(347), + [anon_sym_LBRACK_CARET] = ACTIONS(353), + [anon_sym_BANG_LBRACK] = ACTIONS(355), + [anon_sym_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [anon_sym_TODO] = ACTIONS(361), + [anon_sym_WIP] = ACTIONS(361), + [anon_sym_NOTE] = ACTIONS(363), + [anon_sym_INFO] = ACTIONS(363), + [anon_sym_XXX] = ACTIONS(363), + [sym_fixme] = ACTIONS(347), + [sym__whitespace1] = ACTIONS(365), + [sym__newline] = ACTIONS(367), + [aux_sym__text_token1] = ACTIONS(369), + [sym__verbatim_begin] = ACTIONS(371), }, [82] = { - [sym__inline] = STATE(900), - [sym__element] = STATE(93), - [sym_emphasis] = STATE(197), - [sym_emphasis_begin] = STATE(1088), - [sym_strong] = STATE(197), - [sym_strong_begin] = STATE(1089), - [sym_superscript] = STATE(197), - [sym_superscript_begin] = STATE(1090), - [sym_subscript] = STATE(197), - [sym_subscript_begin] = STATE(1091), - [sym_highlighted] = STATE(197), - [sym_highlighted_begin] = STATE(1092), - [sym_insert] = STATE(197), - [sym_insert_begin] = STATE(1093), - [sym_delete] = STATE(197), - [sym_delete_begin] = STATE(1094), - [sym_hard_line_break] = STATE(197), - [sym__smart_punctuation] = STATE(197), - [sym_autolink] = STATE(197), - [sym_footnote_reference] = STATE(197), - [sym__image] = STATE(197), - [sym_full_reference_image] = STATE(197), - [sym_collapsed_reference_image] = STATE(197), - [sym_inline_image] = STATE(197), - [sym__image_description] = STATE(697), - [sym__link] = STATE(197), - [sym_full_reference_link] = STATE(197), - [sym_collapsed_reference_link] = STATE(197), - [sym_inline_link] = STATE(197), - [sym_link_text] = STATE(682), - [sym__comment_with_spaces] = STATE(197), - [sym_span] = STATE(197), - [sym_raw_inline] = STATE(197), - [sym_math] = STATE(197), - [sym_verbatim] = STATE(197), - [sym__todo_highlights] = STATE(197), - [sym_todo] = STATE(197), - [sym_note] = STATE(197), - [sym__symbol_fallback] = STATE(197), - [aux_sym__text] = STATE(134), - [aux_sym__inline_repeat1] = STATE(93), - [anon_sym_LBRACE_] = ACTIONS(313), - [anon_sym__] = ACTIONS(315), - [anon_sym_LBRACE_STAR] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_LBRACE_CARET] = ACTIONS(321), - [anon_sym_CARET] = ACTIONS(321), - [anon_sym_LBRACE_TILDE] = ACTIONS(323), - [anon_sym_TILDE] = ACTIONS(323), - [anon_sym_LBRACE_EQ] = ACTIONS(325), - [anon_sym_LBRACE_PLUS] = ACTIONS(327), - [anon_sym_LBRACE_DASH] = ACTIONS(329), - [anon_sym_BSLASH] = ACTIONS(331), - [sym_quotation_marks] = ACTIONS(333), - [sym_ellipsis] = ACTIONS(333), - [sym_em_dash] = ACTIONS(333), - [sym_en_dash] = ACTIONS(335), - [sym_backslash_escape] = ACTIONS(335), - [anon_sym_LT] = ACTIONS(337), - [sym_symbol] = ACTIONS(333), - [anon_sym_LBRACK_CARET] = ACTIONS(339), - [anon_sym_BANG_LBRACK] = ACTIONS(341), - [anon_sym_LBRACK] = ACTIONS(343), - [anon_sym_LBRACE2] = ACTIONS(335), - [anon_sym_DOLLAR] = ACTIONS(345), - [anon_sym_TODO] = ACTIONS(347), - [anon_sym_WIP] = ACTIONS(347), - [anon_sym_NOTE] = ACTIONS(349), - [anon_sym_INFO] = ACTIONS(349), - [anon_sym_XXX] = ACTIONS(349), - [sym_fixme] = ACTIONS(333), - [sym__whitespace1] = ACTIONS(351), - [sym__newline] = ACTIONS(353), - [aux_sym__text_token1] = ACTIONS(355), - [sym__verbatim_begin] = ACTIONS(357), + [sym__inline] = STATE(1120), + [sym__element] = STATE(103), + [sym_emphasis] = STATE(139), + [sym_emphasis_begin] = STATE(1175), + [sym_strong] = STATE(139), + [sym_strong_begin] = STATE(1176), + [sym_superscript] = STATE(139), + [sym_superscript_begin] = STATE(1177), + [sym_subscript] = STATE(139), + [sym_subscript_begin] = STATE(1178), + [sym_highlighted] = STATE(139), + [sym_highlighted_begin] = STATE(1179), + [sym_insert] = STATE(139), + [sym_insert_begin] = STATE(1180), + [sym_delete] = STATE(139), + [sym_delete_begin] = STATE(1181), + [sym_hard_line_break] = STATE(139), + [sym__smart_punctuation] = STATE(139), + [sym_autolink] = STATE(139), + [sym_footnote_reference] = STATE(139), + [sym__image] = STATE(139), + [sym_full_reference_image] = STATE(139), + [sym_collapsed_reference_image] = STATE(139), + [sym_inline_image] = STATE(139), + [sym__image_description] = STATE(682), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(139), + [sym_full_reference_link] = STATE(139), + [sym_collapsed_reference_link] = STATE(139), + [sym_inline_link] = STATE(139), + [sym_link_text] = STATE(681), + [sym_span] = STATE(103), + [sym__bracketed_text] = STATE(656), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(139), + [sym_raw_inline] = STATE(139), + [sym_math] = STATE(139), + [sym_verbatim] = STATE(139), + [sym__todo_highlights] = STATE(139), + [sym_todo] = STATE(139), + [sym_note] = STATE(139), + [sym__symbol_fallback] = STATE(139), + [aux_sym__text] = STATE(129), + [aux_sym__inline_repeat1] = STATE(103), + [anon_sym_LBRACE_] = ACTIONS(235), + [anon_sym__] = ACTIONS(237), + [anon_sym_LBRACE_STAR] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(241), + [anon_sym_LBRACE_CARET] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(243), + [anon_sym_LBRACE_TILDE] = ACTIONS(245), + [anon_sym_TILDE] = ACTIONS(245), + [anon_sym_LBRACE_EQ] = ACTIONS(247), + [anon_sym_LBRACE_PLUS] = ACTIONS(249), + [anon_sym_LBRACE_DASH] = ACTIONS(251), + [anon_sym_BSLASH] = ACTIONS(253), + [sym_quotation_marks] = ACTIONS(255), + [sym_ellipsis] = ACTIONS(255), + [sym_em_dash] = ACTIONS(255), + [sym_en_dash] = ACTIONS(257), + [sym_backslash_escape] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(259), + [sym_symbol] = ACTIONS(255), + [anon_sym_LBRACK_CARET] = ACTIONS(261), + [anon_sym_BANG_LBRACK] = ACTIONS(263), + [anon_sym_LBRACK] = ACTIONS(265), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_TODO] = ACTIONS(269), + [anon_sym_WIP] = ACTIONS(269), + [anon_sym_NOTE] = ACTIONS(271), + [anon_sym_INFO] = ACTIONS(271), + [anon_sym_XXX] = ACTIONS(271), + [sym_fixme] = ACTIONS(255), + [sym__whitespace1] = ACTIONS(273), + [sym__newline] = ACTIONS(275), + [aux_sym__text_token1] = ACTIONS(277), + [sym__verbatim_begin] = ACTIONS(279), }, [83] = { - [sym__inline] = STATE(901), - [sym__element] = STATE(79), - [sym_emphasis] = STATE(161), - [sym_emphasis_begin] = STATE(1081), - [sym_strong] = STATE(161), - [sym_strong_begin] = STATE(1082), - [sym_superscript] = STATE(161), - [sym_superscript_begin] = STATE(1083), - [sym_subscript] = STATE(161), - [sym_subscript_begin] = STATE(1084), - [sym_highlighted] = STATE(161), - [sym_highlighted_begin] = STATE(1085), - [sym_insert] = STATE(161), - [sym_insert_begin] = STATE(1086), - [sym_delete] = STATE(161), - [sym_delete_begin] = STATE(1087), - [sym_hard_line_break] = STATE(161), - [sym__smart_punctuation] = STATE(161), - [sym_autolink] = STATE(161), - [sym_footnote_reference] = STATE(161), - [sym__image] = STATE(161), - [sym_full_reference_image] = STATE(161), - [sym_collapsed_reference_image] = STATE(161), - [sym_inline_image] = STATE(161), - [sym__image_description] = STATE(692), - [sym__link] = STATE(161), - [sym_full_reference_link] = STATE(161), - [sym_collapsed_reference_link] = STATE(161), - [sym_inline_link] = STATE(161), - [sym_link_text] = STATE(687), - [sym__comment_with_spaces] = STATE(161), - [sym_span] = STATE(161), - [sym_raw_inline] = STATE(161), - [sym_math] = STATE(161), - [sym_verbatim] = STATE(161), - [sym__todo_highlights] = STATE(161), - [sym_todo] = STATE(161), - [sym_note] = STATE(161), - [sym__symbol_fallback] = STATE(161), - [aux_sym__text] = STATE(149), - [aux_sym__inline_repeat1] = STATE(79), - [anon_sym_LBRACE_] = ACTIONS(359), - [anon_sym__] = ACTIONS(361), - [anon_sym_LBRACE_STAR] = ACTIONS(363), - [anon_sym_STAR] = ACTIONS(365), - [anon_sym_LBRACE_CARET] = ACTIONS(367), - [anon_sym_CARET] = ACTIONS(367), - [anon_sym_LBRACE_TILDE] = ACTIONS(369), - [anon_sym_TILDE] = ACTIONS(369), - [anon_sym_LBRACE_EQ] = ACTIONS(371), - [anon_sym_LBRACE_PLUS] = ACTIONS(373), - [anon_sym_LBRACE_DASH] = ACTIONS(375), - [anon_sym_BSLASH] = ACTIONS(377), - [sym_quotation_marks] = ACTIONS(379), - [sym_ellipsis] = ACTIONS(379), - [sym_em_dash] = ACTIONS(379), - [sym_en_dash] = ACTIONS(381), - [sym_backslash_escape] = ACTIONS(381), - [anon_sym_LT] = ACTIONS(383), - [sym_symbol] = ACTIONS(379), - [anon_sym_LBRACK_CARET] = ACTIONS(385), - [anon_sym_BANG_LBRACK] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(389), - [anon_sym_LBRACE2] = ACTIONS(381), - [anon_sym_DOLLAR] = ACTIONS(391), - [anon_sym_TODO] = ACTIONS(393), - [anon_sym_WIP] = ACTIONS(393), - [anon_sym_NOTE] = ACTIONS(395), - [anon_sym_INFO] = ACTIONS(395), - [anon_sym_XXX] = ACTIONS(395), - [sym_fixme] = ACTIONS(379), - [sym__whitespace1] = ACTIONS(397), - [sym__newline] = ACTIONS(399), - [aux_sym__text_token1] = ACTIONS(401), - [sym__verbatim_begin] = ACTIONS(403), + [sym__element] = STATE(83), + [sym_emphasis] = STATE(133), + [sym_emphasis_begin] = STATE(1189), + [sym_strong] = STATE(133), + [sym_strong_begin] = STATE(1190), + [sym_superscript] = STATE(133), + [sym_superscript_begin] = STATE(1191), + [sym_subscript] = STATE(133), + [sym_subscript_begin] = STATE(1192), + [sym_highlighted] = STATE(133), + [sym_highlighted_begin] = STATE(1193), + [sym_insert] = STATE(133), + [sym_insert_begin] = STATE(1194), + [sym_delete] = STATE(133), + [sym_delete_begin] = STATE(1195), + [sym_hard_line_break] = STATE(133), + [sym__smart_punctuation] = STATE(133), + [sym_autolink] = STATE(133), + [sym_footnote_reference] = STATE(133), + [sym__image] = STATE(133), + [sym_full_reference_image] = STATE(133), + [sym_collapsed_reference_image] = STATE(133), + [sym_inline_image] = STATE(133), + [sym__image_description] = STATE(670), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(133), + [sym_full_reference_link] = STATE(133), + [sym_collapsed_reference_link] = STATE(133), + [sym_inline_link] = STATE(133), + [sym_link_text] = STATE(663), + [sym_span] = STATE(83), + [sym__bracketed_text] = STATE(662), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(133), + [sym_raw_inline] = STATE(133), + [sym_math] = STATE(133), + [sym_verbatim] = STATE(133), + [sym__todo_highlights] = STATE(133), + [sym_todo] = STATE(133), + [sym_note] = STATE(133), + [sym__symbol_fallback] = STATE(133), + [aux_sym__text] = STATE(123), + [aux_sym__inline_repeat1] = STATE(83), + [anon_sym_LBRACE_] = ACTIONS(872), + [anon_sym__] = ACTIONS(875), + [anon_sym_LBRACE_STAR] = ACTIONS(878), + [anon_sym_STAR] = ACTIONS(881), + [anon_sym_LBRACE_CARET] = ACTIONS(884), + [anon_sym_CARET] = ACTIONS(884), + [anon_sym_LBRACE_TILDE] = ACTIONS(887), + [anon_sym_TILDE] = ACTIONS(887), + [anon_sym_LBRACE_EQ] = ACTIONS(890), + [anon_sym_LBRACE_PLUS] = ACTIONS(893), + [anon_sym_LBRACE_DASH] = ACTIONS(896), + [anon_sym_BSLASH] = ACTIONS(899), + [sym_quotation_marks] = ACTIONS(902), + [sym_ellipsis] = ACTIONS(902), + [sym_em_dash] = ACTIONS(902), + [sym_en_dash] = ACTIONS(905), + [sym_backslash_escape] = ACTIONS(905), + [anon_sym_LT] = ACTIONS(908), + [sym_symbol] = ACTIONS(902), + [anon_sym_LBRACK_CARET] = ACTIONS(911), + [anon_sym_BANG_LBRACK] = ACTIONS(914), + [anon_sym_LBRACK] = ACTIONS(917), + [anon_sym_RBRACK2] = ACTIONS(538), + [anon_sym_DOLLAR] = ACTIONS(920), + [anon_sym_TODO] = ACTIONS(923), + [anon_sym_WIP] = ACTIONS(923), + [anon_sym_NOTE] = ACTIONS(926), + [anon_sym_INFO] = ACTIONS(926), + [anon_sym_XXX] = ACTIONS(926), + [sym_fixme] = ACTIONS(902), + [sym__whitespace1] = ACTIONS(929), + [sym__newline] = ACTIONS(932), + [aux_sym__text_token1] = ACTIONS(935), + [sym__verbatim_begin] = ACTIONS(938), }, [84] = { - [sym__inline_without_trailing_space] = STATE(902), - [sym__element] = STATE(572), - [sym_emphasis] = STATE(208), - [sym_emphasis_begin] = STATE(1074), - [sym_strong] = STATE(208), - [sym_strong_begin] = STATE(1075), - [sym_superscript] = STATE(208), - [sym_superscript_begin] = STATE(1076), - [sym_subscript] = STATE(208), - [sym_subscript_begin] = STATE(1077), - [sym_highlighted] = STATE(208), - [sym_highlighted_begin] = STATE(1078), - [sym_insert] = STATE(208), - [sym_insert_begin] = STATE(1079), - [sym_delete] = STATE(208), - [sym_delete_begin] = STATE(1080), - [sym_hard_line_break] = STATE(208), - [sym__smart_punctuation] = STATE(208), - [sym_autolink] = STATE(208), - [sym_footnote_reference] = STATE(208), - [sym__image] = STATE(208), - [sym_full_reference_image] = STATE(208), - [sym_collapsed_reference_image] = STATE(208), - [sym_inline_image] = STATE(208), - [sym__image_description] = STATE(680), - [sym__link] = STATE(208), - [sym_full_reference_link] = STATE(208), - [sym_collapsed_reference_link] = STATE(208), - [sym_inline_link] = STATE(208), - [sym_link_text] = STATE(663), - [sym__comment_with_spaces] = STATE(208), - [sym_span] = STATE(208), - [sym_raw_inline] = STATE(208), - [sym_math] = STATE(208), - [sym_verbatim] = STATE(208), - [sym__todo_highlights] = STATE(208), - [sym_todo] = STATE(208), - [sym_note] = STATE(208), - [sym__symbol_fallback] = STATE(208), - [aux_sym__text] = STATE(131), - [aux_sym__inline_repeat1] = STATE(130), - [anon_sym_LBRACE_] = ACTIONS(175), - [anon_sym__] = ACTIONS(177), - [anon_sym_LBRACE_STAR] = ACTIONS(179), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_LBRACE_CARET] = ACTIONS(183), - [anon_sym_CARET] = ACTIONS(183), - [anon_sym_LBRACE_TILDE] = ACTIONS(185), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_LBRACE_EQ] = ACTIONS(187), - [anon_sym_LBRACE_PLUS] = ACTIONS(189), - [anon_sym_LBRACE_DASH] = ACTIONS(191), - [anon_sym_BSLASH] = ACTIONS(193), - [sym_quotation_marks] = ACTIONS(195), - [sym_ellipsis] = ACTIONS(195), - [sym_em_dash] = ACTIONS(195), - [sym_en_dash] = ACTIONS(197), - [sym_backslash_escape] = ACTIONS(197), - [anon_sym_LT] = ACTIONS(199), - [sym_symbol] = ACTIONS(195), - [anon_sym_LBRACK_CARET] = ACTIONS(201), - [anon_sym_BANG_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE2] = ACTIONS(197), - [anon_sym_DOLLAR] = ACTIONS(207), - [anon_sym_TODO] = ACTIONS(209), - [anon_sym_WIP] = ACTIONS(209), - [anon_sym_NOTE] = ACTIONS(211), - [anon_sym_INFO] = ACTIONS(211), - [anon_sym_XXX] = ACTIONS(211), - [sym_fixme] = ACTIONS(195), - [sym__whitespace1] = ACTIONS(213), - [sym__newline] = ACTIONS(215), - [aux_sym__text_token1] = ACTIONS(217), - [sym__verbatim_begin] = ACTIONS(219), + [sym__inline_without_trailing_space] = STATE(917), + [sym__element] = STATE(562), + [sym_emphasis] = STATE(142), + [sym_emphasis_begin] = STATE(1147), + [sym_strong] = STATE(142), + [sym_strong_begin] = STATE(1148), + [sym_superscript] = STATE(142), + [sym_superscript_begin] = STATE(1149), + [sym_subscript] = STATE(142), + [sym_subscript_begin] = STATE(1150), + [sym_highlighted] = STATE(142), + [sym_highlighted_begin] = STATE(1151), + [sym_insert] = STATE(142), + [sym_insert_begin] = STATE(1152), + [sym_delete] = STATE(142), + [sym_delete_begin] = STATE(1153), + [sym_hard_line_break] = STATE(142), + [sym__smart_punctuation] = STATE(142), + [sym_autolink] = STATE(142), + [sym_footnote_reference] = STATE(142), + [sym__image] = STATE(142), + [sym_full_reference_image] = STATE(142), + [sym_collapsed_reference_image] = STATE(142), + [sym_inline_image] = STATE(142), + [sym__image_description] = STATE(685), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(142), + [sym_full_reference_link] = STATE(142), + [sym_collapsed_reference_link] = STATE(142), + [sym_inline_link] = STATE(142), + [sym_link_text] = STATE(683), + [sym_span] = STATE(562), + [sym__bracketed_text] = STATE(657), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(142), + [sym_raw_inline] = STATE(142), + [sym_math] = STATE(142), + [sym_verbatim] = STATE(142), + [sym__todo_highlights] = STATE(142), + [sym_todo] = STATE(142), + [sym_note] = STATE(142), + [sym__symbol_fallback] = STATE(142), + [aux_sym__text] = STATE(126), + [aux_sym__inline_repeat1] = STATE(120), + [anon_sym_LBRACE_] = ACTIONS(373), + [anon_sym__] = ACTIONS(375), + [anon_sym_LBRACE_STAR] = ACTIONS(377), + [anon_sym_STAR] = ACTIONS(379), + [anon_sym_LBRACE_CARET] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(381), + [anon_sym_LBRACE_TILDE] = ACTIONS(383), + [anon_sym_TILDE] = ACTIONS(383), + [anon_sym_LBRACE_EQ] = ACTIONS(385), + [anon_sym_LBRACE_PLUS] = ACTIONS(387), + [anon_sym_LBRACE_DASH] = ACTIONS(389), + [anon_sym_BSLASH] = ACTIONS(391), + [sym_quotation_marks] = ACTIONS(393), + [sym_ellipsis] = ACTIONS(393), + [sym_em_dash] = ACTIONS(393), + [sym_en_dash] = ACTIONS(395), + [sym_backslash_escape] = ACTIONS(395), + [anon_sym_LT] = ACTIONS(397), + [sym_symbol] = ACTIONS(393), + [anon_sym_LBRACK_CARET] = ACTIONS(399), + [anon_sym_BANG_LBRACK] = ACTIONS(401), + [anon_sym_LBRACK] = ACTIONS(403), + [anon_sym_DOLLAR] = ACTIONS(405), + [anon_sym_TODO] = ACTIONS(407), + [anon_sym_WIP] = ACTIONS(407), + [anon_sym_NOTE] = ACTIONS(409), + [anon_sym_INFO] = ACTIONS(409), + [anon_sym_XXX] = ACTIONS(409), + [sym_fixme] = ACTIONS(393), + [sym__whitespace1] = ACTIONS(411), + [sym__newline] = ACTIONS(413), + [aux_sym__text_token1] = ACTIONS(415), + [sym__verbatim_begin] = ACTIONS(417), }, [85] = { - [sym__inline_without_trailing_space] = STATE(903), - [sym__element] = STATE(603), - [sym_emphasis] = STATE(177), - [sym_emphasis_begin] = STATE(1067), - [sym_strong] = STATE(177), - [sym_strong_begin] = STATE(1068), - [sym_superscript] = STATE(177), - [sym_superscript_begin] = STATE(1069), - [sym_subscript] = STATE(177), - [sym_subscript_begin] = STATE(1070), - [sym_highlighted] = STATE(177), - [sym_highlighted_begin] = STATE(1071), - [sym_insert] = STATE(177), - [sym_insert_begin] = STATE(1072), - [sym_delete] = STATE(177), - [sym_delete_begin] = STATE(1073), - [sym_hard_line_break] = STATE(177), - [sym__smart_punctuation] = STATE(177), - [sym_autolink] = STATE(177), - [sym_footnote_reference] = STATE(177), - [sym__image] = STATE(177), - [sym_full_reference_image] = STATE(177), - [sym_collapsed_reference_image] = STATE(177), - [sym_inline_image] = STATE(177), - [sym__image_description] = STATE(681), - [sym__link] = STATE(177), - [sym_full_reference_link] = STATE(177), - [sym_collapsed_reference_link] = STATE(177), - [sym_inline_link] = STATE(177), - [sym_link_text] = STATE(668), - [sym__comment_with_spaces] = STATE(177), - [sym_span] = STATE(177), - [sym_raw_inline] = STATE(177), - [sym_math] = STATE(177), - [sym_verbatim] = STATE(177), - [sym__todo_highlights] = STATE(177), - [sym_todo] = STATE(177), - [sym_note] = STATE(177), - [sym__symbol_fallback] = STATE(177), - [aux_sym__text] = STATE(132), - [aux_sym__inline_repeat1] = STATE(128), - [anon_sym_LBRACE_] = ACTIONS(405), - [anon_sym__] = ACTIONS(407), - [anon_sym_LBRACE_STAR] = ACTIONS(409), - [anon_sym_STAR] = ACTIONS(411), - [anon_sym_LBRACE_CARET] = ACTIONS(413), - [anon_sym_CARET] = ACTIONS(413), - [anon_sym_LBRACE_TILDE] = ACTIONS(415), - [anon_sym_TILDE] = ACTIONS(415), - [anon_sym_LBRACE_EQ] = ACTIONS(417), - [anon_sym_LBRACE_PLUS] = ACTIONS(419), - [anon_sym_LBRACE_DASH] = ACTIONS(421), - [anon_sym_BSLASH] = ACTIONS(423), - [sym_quotation_marks] = ACTIONS(425), - [sym_ellipsis] = ACTIONS(425), - [sym_em_dash] = ACTIONS(425), - [sym_en_dash] = ACTIONS(427), - [sym_backslash_escape] = ACTIONS(427), - [anon_sym_LT] = ACTIONS(429), - [sym_symbol] = ACTIONS(425), - [anon_sym_LBRACK_CARET] = ACTIONS(431), - [anon_sym_BANG_LBRACK] = ACTIONS(433), - [anon_sym_LBRACK] = ACTIONS(435), - [anon_sym_LBRACE2] = ACTIONS(427), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_TODO] = ACTIONS(439), - [anon_sym_WIP] = ACTIONS(439), - [anon_sym_NOTE] = ACTIONS(441), - [anon_sym_INFO] = ACTIONS(441), - [anon_sym_XXX] = ACTIONS(441), - [sym_fixme] = ACTIONS(425), - [sym__whitespace1] = ACTIONS(443), - [sym__newline] = ACTIONS(445), - [aux_sym__text_token1] = ACTIONS(447), - [sym__verbatim_begin] = ACTIONS(449), + [sym__inline_without_trailing_space] = STATE(919), + [sym__element] = STATE(604), + [sym_emphasis] = STATE(138), + [sym_emphasis_begin] = STATE(1140), + [sym_strong] = STATE(138), + [sym_strong_begin] = STATE(1141), + [sym_superscript] = STATE(138), + [sym_superscript_begin] = STATE(1142), + [sym_subscript] = STATE(138), + [sym_subscript_begin] = STATE(1143), + [sym_highlighted] = STATE(138), + [sym_highlighted_begin] = STATE(1144), + [sym_insert] = STATE(138), + [sym_insert_begin] = STATE(1145), + [sym_delete] = STATE(138), + [sym_delete_begin] = STATE(1146), + [sym_hard_line_break] = STATE(138), + [sym__smart_punctuation] = STATE(138), + [sym_autolink] = STATE(138), + [sym_footnote_reference] = STATE(138), + [sym__image] = STATE(138), + [sym_full_reference_image] = STATE(138), + [sym_collapsed_reference_image] = STATE(138), + [sym_inline_image] = STATE(138), + [sym__image_description] = STATE(667), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(138), + [sym_full_reference_link] = STATE(138), + [sym_collapsed_reference_link] = STATE(138), + [sym_inline_link] = STATE(138), + [sym_link_text] = STATE(689), + [sym_span] = STATE(604), + [sym__bracketed_text] = STATE(658), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(138), + [sym_raw_inline] = STATE(138), + [sym_math] = STATE(138), + [sym_verbatim] = STATE(138), + [sym__todo_highlights] = STATE(138), + [sym_todo] = STATE(138), + [sym_note] = STATE(138), + [sym__symbol_fallback] = STATE(138), + [aux_sym__text] = STATE(124), + [aux_sym__inline_repeat1] = STATE(118), + [anon_sym_LBRACE_] = ACTIONS(419), + [anon_sym__] = ACTIONS(421), + [anon_sym_LBRACE_STAR] = ACTIONS(423), + [anon_sym_STAR] = ACTIONS(425), + [anon_sym_LBRACE_CARET] = ACTIONS(427), + [anon_sym_CARET] = ACTIONS(427), + [anon_sym_LBRACE_TILDE] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_LBRACE_EQ] = ACTIONS(431), + [anon_sym_LBRACE_PLUS] = ACTIONS(433), + [anon_sym_LBRACE_DASH] = ACTIONS(435), + [anon_sym_BSLASH] = ACTIONS(437), + [sym_quotation_marks] = ACTIONS(439), + [sym_ellipsis] = ACTIONS(439), + [sym_em_dash] = ACTIONS(439), + [sym_en_dash] = ACTIONS(441), + [sym_backslash_escape] = ACTIONS(441), + [anon_sym_LT] = ACTIONS(443), + [sym_symbol] = ACTIONS(439), + [anon_sym_LBRACK_CARET] = ACTIONS(445), + [anon_sym_BANG_LBRACK] = ACTIONS(447), + [anon_sym_LBRACK] = ACTIONS(449), + [anon_sym_DOLLAR] = ACTIONS(451), + [anon_sym_TODO] = ACTIONS(453), + [anon_sym_WIP] = ACTIONS(453), + [anon_sym_NOTE] = ACTIONS(455), + [anon_sym_INFO] = ACTIONS(455), + [anon_sym_XXX] = ACTIONS(455), + [sym_fixme] = ACTIONS(439), + [sym__whitespace1] = ACTIONS(457), + [sym__newline] = ACTIONS(459), + [aux_sym__text_token1] = ACTIONS(461), + [sym__verbatim_begin] = ACTIONS(463), }, [86] = { - [sym__inline] = STATE(1028), - [sym__element] = STATE(115), - [sym_emphasis] = STATE(192), - [sym_emphasis_begin] = STATE(1095), - [sym_strong] = STATE(192), - [sym_strong_begin] = STATE(1096), - [sym_superscript] = STATE(192), - [sym_superscript_begin] = STATE(1097), - [sym_subscript] = STATE(192), - [sym_subscript_begin] = STATE(1098), - [sym_highlighted] = STATE(192), - [sym_highlighted_begin] = STATE(1099), - [sym_insert] = STATE(192), - [sym_insert_begin] = STATE(1100), - [sym_delete] = STATE(192), - [sym_delete_begin] = STATE(1101), - [sym_hard_line_break] = STATE(192), - [sym__smart_punctuation] = STATE(192), - [sym_autolink] = STATE(192), - [sym_footnote_reference] = STATE(192), - [sym__image] = STATE(192), - [sym_full_reference_image] = STATE(192), - [sym_collapsed_reference_image] = STATE(192), - [sym_inline_image] = STATE(192), - [sym__image_description] = STATE(684), - [sym__link] = STATE(192), - [sym_full_reference_link] = STATE(192), - [sym_collapsed_reference_link] = STATE(192), - [sym_inline_link] = STATE(192), - [sym_link_text] = STATE(683), - [sym__comment_with_spaces] = STATE(192), - [sym_span] = STATE(192), - [sym_raw_inline] = STATE(192), - [sym_math] = STATE(192), - [sym_verbatim] = STATE(192), - [sym__todo_highlights] = STATE(192), - [sym_todo] = STATE(192), - [sym_note] = STATE(192), - [sym__symbol_fallback] = STATE(192), - [aux_sym__text] = STATE(141), - [aux_sym__inline_repeat1] = STATE(115), - [anon_sym_LBRACE_] = ACTIONS(129), - [anon_sym__] = ACTIONS(131), - [anon_sym_LBRACE_STAR] = ACTIONS(133), - [anon_sym_STAR] = ACTIONS(135), - [anon_sym_LBRACE_CARET] = ACTIONS(137), - [anon_sym_CARET] = ACTIONS(137), - [anon_sym_LBRACE_TILDE] = ACTIONS(139), - [anon_sym_TILDE] = ACTIONS(139), - [anon_sym_LBRACE_EQ] = ACTIONS(141), - [anon_sym_LBRACE_PLUS] = ACTIONS(143), - [anon_sym_LBRACE_DASH] = ACTIONS(145), - [anon_sym_BSLASH] = ACTIONS(147), - [sym_quotation_marks] = ACTIONS(149), - [sym_ellipsis] = ACTIONS(149), - [sym_em_dash] = ACTIONS(149), - [sym_en_dash] = ACTIONS(151), - [sym_backslash_escape] = ACTIONS(151), - [anon_sym_LT] = ACTIONS(153), - [sym_symbol] = ACTIONS(149), - [anon_sym_LBRACK_CARET] = ACTIONS(155), - [anon_sym_BANG_LBRACK] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LBRACE2] = ACTIONS(151), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_TODO] = ACTIONS(163), - [anon_sym_WIP] = ACTIONS(163), - [anon_sym_NOTE] = ACTIONS(165), - [anon_sym_INFO] = ACTIONS(165), - [anon_sym_XXX] = ACTIONS(165), - [sym_fixme] = ACTIONS(149), - [sym__whitespace1] = ACTIONS(167), - [sym__newline] = ACTIONS(169), - [aux_sym__text_token1] = ACTIONS(171), - [sym__verbatim_begin] = ACTIONS(173), + [sym__inline] = STATE(946), + [sym__element] = STATE(65), + [sym_emphasis] = STATE(133), + [sym_emphasis_begin] = STATE(1189), + [sym_strong] = STATE(133), + [sym_strong_begin] = STATE(1190), + [sym_superscript] = STATE(133), + [sym_superscript_begin] = STATE(1191), + [sym_subscript] = STATE(133), + [sym_subscript_begin] = STATE(1192), + [sym_highlighted] = STATE(133), + [sym_highlighted_begin] = STATE(1193), + [sym_insert] = STATE(133), + [sym_insert_begin] = STATE(1194), + [sym_delete] = STATE(133), + [sym_delete_begin] = STATE(1195), + [sym_hard_line_break] = STATE(133), + [sym__smart_punctuation] = STATE(133), + [sym_autolink] = STATE(133), + [sym_footnote_reference] = STATE(133), + [sym__image] = STATE(133), + [sym_full_reference_image] = STATE(133), + [sym_collapsed_reference_image] = STATE(133), + [sym_inline_image] = STATE(133), + [sym__image_description] = STATE(670), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(133), + [sym_full_reference_link] = STATE(133), + [sym_collapsed_reference_link] = STATE(133), + [sym_inline_link] = STATE(133), + [sym_link_text] = STATE(663), + [sym_span] = STATE(65), + [sym__bracketed_text] = STATE(662), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(133), + [sym_raw_inline] = STATE(133), + [sym_math] = STATE(133), + [sym_verbatim] = STATE(133), + [sym__todo_highlights] = STATE(133), + [sym_todo] = STATE(133), + [sym_note] = STATE(133), + [sym__symbol_fallback] = STATE(133), + [aux_sym__text] = STATE(123), + [aux_sym__inline_repeat1] = STATE(65), + [anon_sym_LBRACE_] = ACTIONS(143), + [anon_sym__] = ACTIONS(145), + [anon_sym_LBRACE_STAR] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(149), + [anon_sym_LBRACE_CARET] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(151), + [anon_sym_LBRACE_TILDE] = ACTIONS(153), + [anon_sym_TILDE] = ACTIONS(153), + [anon_sym_LBRACE_EQ] = ACTIONS(155), + [anon_sym_LBRACE_PLUS] = ACTIONS(157), + [anon_sym_LBRACE_DASH] = ACTIONS(159), + [anon_sym_BSLASH] = ACTIONS(161), + [sym_quotation_marks] = ACTIONS(163), + [sym_ellipsis] = ACTIONS(163), + [sym_em_dash] = ACTIONS(163), + [sym_en_dash] = ACTIONS(165), + [sym_backslash_escape] = ACTIONS(165), + [anon_sym_LT] = ACTIONS(167), + [sym_symbol] = ACTIONS(163), + [anon_sym_LBRACK_CARET] = ACTIONS(169), + [anon_sym_BANG_LBRACK] = ACTIONS(171), + [anon_sym_LBRACK] = ACTIONS(173), + [anon_sym_DOLLAR] = ACTIONS(175), + [anon_sym_TODO] = ACTIONS(177), + [anon_sym_WIP] = ACTIONS(177), + [anon_sym_NOTE] = ACTIONS(179), + [anon_sym_INFO] = ACTIONS(179), + [anon_sym_XXX] = ACTIONS(179), + [sym_fixme] = ACTIONS(163), + [sym__whitespace1] = ACTIONS(181), + [sym__newline] = ACTIONS(183), + [aux_sym__text_token1] = ACTIONS(185), + [sym__verbatim_begin] = ACTIONS(187), }, [87] = { - [sym__inline] = STATE(912), - [sym__element] = STATE(66), - [sym_emphasis] = STATE(171), - [sym_emphasis_begin] = STATE(1116), - [sym_strong] = STATE(171), - [sym_strong_begin] = STATE(1117), - [sym_superscript] = STATE(171), - [sym_superscript_begin] = STATE(1118), - [sym_subscript] = STATE(171), - [sym_subscript_begin] = STATE(1119), - [sym_highlighted] = STATE(171), - [sym_highlighted_begin] = STATE(1120), - [sym_insert] = STATE(171), - [sym_insert_begin] = STATE(1121), - [sym_delete] = STATE(171), - [sym_delete_begin] = STATE(1122), - [sym_hard_line_break] = STATE(171), - [sym__smart_punctuation] = STATE(171), - [sym_autolink] = STATE(171), - [sym_footnote_reference] = STATE(171), - [sym__image] = STATE(171), - [sym_full_reference_image] = STATE(171), - [sym_collapsed_reference_image] = STATE(171), - [sym_inline_image] = STATE(171), - [sym__image_description] = STATE(674), - [sym__link] = STATE(171), - [sym_full_reference_link] = STATE(171), - [sym_collapsed_reference_link] = STATE(171), - [sym_inline_link] = STATE(171), + [sym__inline] = STATE(947), + [sym__element] = STATE(21), + [sym_emphasis] = STATE(134), + [sym_emphasis_begin] = STATE(1182), + [sym_strong] = STATE(134), + [sym_strong_begin] = STATE(1183), + [sym_superscript] = STATE(134), + [sym_superscript_begin] = STATE(1184), + [sym_subscript] = STATE(134), + [sym_subscript_begin] = STATE(1185), + [sym_highlighted] = STATE(134), + [sym_highlighted_begin] = STATE(1186), + [sym_insert] = STATE(134), + [sym_insert_begin] = STATE(1187), + [sym_delete] = STATE(134), + [sym_delete_begin] = STATE(1188), + [sym_hard_line_break] = STATE(134), + [sym__smart_punctuation] = STATE(134), + [sym_autolink] = STATE(134), + [sym_footnote_reference] = STATE(134), + [sym__image] = STATE(134), + [sym_full_reference_image] = STATE(134), + [sym_collapsed_reference_image] = STATE(134), + [sym_inline_image] = STATE(134), + [sym__image_description] = STATE(677), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(134), + [sym_full_reference_link] = STATE(134), + [sym_collapsed_reference_link] = STATE(134), + [sym_inline_link] = STATE(134), [sym_link_text] = STATE(675), - [sym__comment_with_spaces] = STATE(171), - [sym_span] = STATE(171), - [sym_raw_inline] = STATE(171), - [sym_math] = STATE(171), - [sym_verbatim] = STATE(171), - [sym__todo_highlights] = STATE(171), - [sym_todo] = STATE(171), - [sym_note] = STATE(171), - [sym__symbol_fallback] = STATE(171), - [aux_sym__text] = STATE(146), - [aux_sym__inline_repeat1] = STATE(66), - [anon_sym_LBRACE_] = ACTIONS(451), - [anon_sym__] = ACTIONS(453), - [anon_sym_LBRACE_STAR] = ACTIONS(455), - [anon_sym_STAR] = ACTIONS(457), - [anon_sym_LBRACE_CARET] = ACTIONS(459), - [anon_sym_CARET] = ACTIONS(459), - [anon_sym_LBRACE_TILDE] = ACTIONS(461), - [anon_sym_TILDE] = ACTIONS(461), - [anon_sym_LBRACE_EQ] = ACTIONS(463), - [anon_sym_LBRACE_PLUS] = ACTIONS(465), - [anon_sym_LBRACE_DASH] = ACTIONS(467), - [anon_sym_BSLASH] = ACTIONS(469), - [sym_quotation_marks] = ACTIONS(471), - [sym_ellipsis] = ACTIONS(471), - [sym_em_dash] = ACTIONS(471), - [sym_en_dash] = ACTIONS(473), - [sym_backslash_escape] = ACTIONS(473), - [anon_sym_LT] = ACTIONS(475), - [sym_symbol] = ACTIONS(471), - [anon_sym_LBRACK_CARET] = ACTIONS(477), - [anon_sym_BANG_LBRACK] = ACTIONS(479), - [anon_sym_LBRACK] = ACTIONS(481), - [anon_sym_LBRACE2] = ACTIONS(473), - [anon_sym_DOLLAR] = ACTIONS(483), - [anon_sym_TODO] = ACTIONS(485), - [anon_sym_WIP] = ACTIONS(485), - [anon_sym_NOTE] = ACTIONS(487), - [anon_sym_INFO] = ACTIONS(487), - [anon_sym_XXX] = ACTIONS(487), - [sym_fixme] = ACTIONS(471), - [sym__whitespace1] = ACTIONS(489), - [sym__newline] = ACTIONS(491), - [aux_sym__text_token1] = ACTIONS(493), - [sym__verbatim_begin] = ACTIONS(495), + [sym_span] = STATE(21), + [sym__bracketed_text] = STATE(660), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(134), + [sym_raw_inline] = STATE(134), + [sym_math] = STATE(134), + [sym_verbatim] = STATE(134), + [sym__todo_highlights] = STATE(134), + [sym_todo] = STATE(134), + [sym_note] = STATE(134), + [sym__symbol_fallback] = STATE(134), + [aux_sym__text] = STATE(127), + [aux_sym__inline_repeat1] = STATE(21), + [anon_sym_LBRACE_] = ACTIONS(189), + [anon_sym__] = ACTIONS(191), + [anon_sym_LBRACE_STAR] = ACTIONS(193), + [anon_sym_STAR] = ACTIONS(195), + [anon_sym_LBRACE_CARET] = ACTIONS(197), + [anon_sym_CARET] = ACTIONS(197), + [anon_sym_LBRACE_TILDE] = ACTIONS(199), + [anon_sym_TILDE] = ACTIONS(199), + [anon_sym_LBRACE_EQ] = ACTIONS(201), + [anon_sym_LBRACE_PLUS] = ACTIONS(203), + [anon_sym_LBRACE_DASH] = ACTIONS(205), + [anon_sym_BSLASH] = ACTIONS(207), + [sym_quotation_marks] = ACTIONS(209), + [sym_ellipsis] = ACTIONS(209), + [sym_em_dash] = ACTIONS(209), + [sym_en_dash] = ACTIONS(211), + [sym_backslash_escape] = ACTIONS(211), + [anon_sym_LT] = ACTIONS(213), + [sym_symbol] = ACTIONS(209), + [anon_sym_LBRACK_CARET] = ACTIONS(215), + [anon_sym_BANG_LBRACK] = ACTIONS(217), + [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_DOLLAR] = ACTIONS(221), + [anon_sym_TODO] = ACTIONS(223), + [anon_sym_WIP] = ACTIONS(223), + [anon_sym_NOTE] = ACTIONS(225), + [anon_sym_INFO] = ACTIONS(225), + [anon_sym_XXX] = ACTIONS(225), + [sym_fixme] = ACTIONS(209), + [sym__whitespace1] = ACTIONS(227), + [sym__newline] = ACTIONS(229), + [aux_sym__text_token1] = ACTIONS(231), + [sym__verbatim_begin] = ACTIONS(233), }, [88] = { - [sym__inline] = STATE(913), + [sym__inline] = STATE(949), [sym__element] = STATE(103), - [sym_emphasis] = STATE(180), - [sym_emphasis_begin] = STATE(1109), - [sym_strong] = STATE(180), - [sym_strong_begin] = STATE(1110), - [sym_superscript] = STATE(180), - [sym_superscript_begin] = STATE(1111), - [sym_subscript] = STATE(180), - [sym_subscript_begin] = STATE(1112), - [sym_highlighted] = STATE(180), - [sym_highlighted_begin] = STATE(1113), - [sym_insert] = STATE(180), - [sym_insert_begin] = STATE(1114), - [sym_delete] = STATE(180), - [sym_delete_begin] = STATE(1115), - [sym_hard_line_break] = STATE(180), - [sym__smart_punctuation] = STATE(180), - [sym_autolink] = STATE(180), - [sym_footnote_reference] = STATE(180), - [sym__image] = STATE(180), - [sym_full_reference_image] = STATE(180), - [sym_collapsed_reference_image] = STATE(180), - [sym_inline_image] = STATE(180), - [sym__image_description] = STATE(666), - [sym__link] = STATE(180), - [sym_full_reference_link] = STATE(180), - [sym_collapsed_reference_link] = STATE(180), - [sym_inline_link] = STATE(180), - [sym_link_text] = STATE(664), - [sym__comment_with_spaces] = STATE(180), - [sym_span] = STATE(180), - [sym_raw_inline] = STATE(180), - [sym_math] = STATE(180), - [sym_verbatim] = STATE(180), - [sym__todo_highlights] = STATE(180), - [sym_todo] = STATE(180), - [sym_note] = STATE(180), - [sym__symbol_fallback] = STATE(180), - [aux_sym__text] = STATE(159), + [sym_emphasis] = STATE(139), + [sym_emphasis_begin] = STATE(1175), + [sym_strong] = STATE(139), + [sym_strong_begin] = STATE(1176), + [sym_superscript] = STATE(139), + [sym_superscript_begin] = STATE(1177), + [sym_subscript] = STATE(139), + [sym_subscript_begin] = STATE(1178), + [sym_highlighted] = STATE(139), + [sym_highlighted_begin] = STATE(1179), + [sym_insert] = STATE(139), + [sym_insert_begin] = STATE(1180), + [sym_delete] = STATE(139), + [sym_delete_begin] = STATE(1181), + [sym_hard_line_break] = STATE(139), + [sym__smart_punctuation] = STATE(139), + [sym_autolink] = STATE(139), + [sym_footnote_reference] = STATE(139), + [sym__image] = STATE(139), + [sym_full_reference_image] = STATE(139), + [sym_collapsed_reference_image] = STATE(139), + [sym_inline_image] = STATE(139), + [sym__image_description] = STATE(682), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(139), + [sym_full_reference_link] = STATE(139), + [sym_collapsed_reference_link] = STATE(139), + [sym_inline_link] = STATE(139), + [sym_link_text] = STATE(681), + [sym_span] = STATE(103), + [sym__bracketed_text] = STATE(656), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(139), + [sym_raw_inline] = STATE(139), + [sym_math] = STATE(139), + [sym_verbatim] = STATE(139), + [sym__todo_highlights] = STATE(139), + [sym_todo] = STATE(139), + [sym_note] = STATE(139), + [sym__symbol_fallback] = STATE(139), + [aux_sym__text] = STATE(129), [aux_sym__inline_repeat1] = STATE(103), - [anon_sym_LBRACE_] = ACTIONS(221), - [anon_sym__] = ACTIONS(223), - [anon_sym_LBRACE_STAR] = ACTIONS(225), - [anon_sym_STAR] = ACTIONS(227), - [anon_sym_LBRACE_CARET] = ACTIONS(229), - [anon_sym_CARET] = ACTIONS(229), - [anon_sym_LBRACE_TILDE] = ACTIONS(231), - [anon_sym_TILDE] = ACTIONS(231), - [anon_sym_LBRACE_EQ] = ACTIONS(233), - [anon_sym_LBRACE_PLUS] = ACTIONS(235), - [anon_sym_LBRACE_DASH] = ACTIONS(237), - [anon_sym_BSLASH] = ACTIONS(239), - [sym_quotation_marks] = ACTIONS(241), - [sym_ellipsis] = ACTIONS(241), - [sym_em_dash] = ACTIONS(241), - [sym_en_dash] = ACTIONS(243), - [sym_backslash_escape] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(245), - [sym_symbol] = ACTIONS(241), - [anon_sym_LBRACK_CARET] = ACTIONS(247), - [anon_sym_BANG_LBRACK] = ACTIONS(249), - [anon_sym_LBRACK] = ACTIONS(251), - [anon_sym_LBRACE2] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(253), - [anon_sym_TODO] = ACTIONS(255), - [anon_sym_WIP] = ACTIONS(255), - [anon_sym_NOTE] = ACTIONS(257), - [anon_sym_INFO] = ACTIONS(257), - [anon_sym_XXX] = ACTIONS(257), - [sym_fixme] = ACTIONS(241), - [sym__whitespace1] = ACTIONS(259), - [sym__newline] = ACTIONS(261), - [aux_sym__text_token1] = ACTIONS(263), - [sym__verbatim_begin] = ACTIONS(265), + [anon_sym_LBRACE_] = ACTIONS(235), + [anon_sym__] = ACTIONS(237), + [anon_sym_LBRACE_STAR] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(241), + [anon_sym_LBRACE_CARET] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(243), + [anon_sym_LBRACE_TILDE] = ACTIONS(245), + [anon_sym_TILDE] = ACTIONS(245), + [anon_sym_LBRACE_EQ] = ACTIONS(247), + [anon_sym_LBRACE_PLUS] = ACTIONS(249), + [anon_sym_LBRACE_DASH] = ACTIONS(251), + [anon_sym_BSLASH] = ACTIONS(253), + [sym_quotation_marks] = ACTIONS(255), + [sym_ellipsis] = ACTIONS(255), + [sym_em_dash] = ACTIONS(255), + [sym_en_dash] = ACTIONS(257), + [sym_backslash_escape] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(259), + [sym_symbol] = ACTIONS(255), + [anon_sym_LBRACK_CARET] = ACTIONS(261), + [anon_sym_BANG_LBRACK] = ACTIONS(263), + [anon_sym_LBRACK] = ACTIONS(265), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_TODO] = ACTIONS(269), + [anon_sym_WIP] = ACTIONS(269), + [anon_sym_NOTE] = ACTIONS(271), + [anon_sym_INFO] = ACTIONS(271), + [anon_sym_XXX] = ACTIONS(271), + [sym_fixme] = ACTIONS(255), + [sym__whitespace1] = ACTIONS(273), + [sym__newline] = ACTIONS(275), + [aux_sym__text_token1] = ACTIONS(277), + [sym__verbatim_begin] = ACTIONS(279), }, [89] = { - [sym__inline] = STATE(914), - [sym__element] = STATE(111), - [sym_emphasis] = STATE(186), - [sym_emphasis_begin] = STATE(1102), - [sym_strong] = STATE(186), - [sym_strong_begin] = STATE(1103), - [sym_superscript] = STATE(186), - [sym_superscript_begin] = STATE(1104), - [sym_subscript] = STATE(186), - [sym_subscript_begin] = STATE(1105), - [sym_highlighted] = STATE(186), - [sym_highlighted_begin] = STATE(1106), - [sym_insert] = STATE(186), - [sym_insert_begin] = STATE(1107), - [sym_delete] = STATE(186), - [sym_delete_begin] = STATE(1108), - [sym_hard_line_break] = STATE(186), - [sym__smart_punctuation] = STATE(186), - [sym_autolink] = STATE(186), - [sym_footnote_reference] = STATE(186), - [sym__image] = STATE(186), - [sym_full_reference_image] = STATE(186), - [sym_collapsed_reference_image] = STATE(186), - [sym_inline_image] = STATE(186), - [sym__image_description] = STATE(673), - [sym__link] = STATE(186), - [sym_full_reference_link] = STATE(186), - [sym_collapsed_reference_link] = STATE(186), - [sym_inline_link] = STATE(186), + [sym__inline] = STATE(950), + [sym__element] = STATE(13), + [sym_emphasis] = STATE(141), + [sym_emphasis_begin] = STATE(1168), + [sym_strong] = STATE(141), + [sym_strong_begin] = STATE(1169), + [sym_superscript] = STATE(141), + [sym_superscript_begin] = STATE(1170), + [sym_subscript] = STATE(141), + [sym_subscript_begin] = STATE(1171), + [sym_highlighted] = STATE(141), + [sym_highlighted_begin] = STATE(1172), + [sym_insert] = STATE(141), + [sym_insert_begin] = STATE(1173), + [sym_delete] = STATE(141), + [sym_delete_begin] = STATE(1174), + [sym_hard_line_break] = STATE(141), + [sym__smart_punctuation] = STATE(141), + [sym_autolink] = STATE(141), + [sym_footnote_reference] = STATE(141), + [sym__image] = STATE(141), + [sym_full_reference_image] = STATE(141), + [sym_collapsed_reference_image] = STATE(141), + [sym_inline_image] = STATE(141), + [sym__image_description] = STATE(674), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(141), + [sym_full_reference_link] = STATE(141), + [sym_collapsed_reference_link] = STATE(141), + [sym_inline_link] = STATE(141), [sym_link_text] = STATE(672), - [sym__comment_with_spaces] = STATE(186), - [sym_span] = STATE(186), - [sym_raw_inline] = STATE(186), - [sym_math] = STATE(186), - [sym_verbatim] = STATE(186), - [sym__todo_highlights] = STATE(186), - [sym_todo] = STATE(186), - [sym_note] = STATE(186), - [sym__symbol_fallback] = STATE(186), - [aux_sym__text] = STATE(155), - [aux_sym__inline_repeat1] = STATE(111), - [anon_sym_LBRACE_] = ACTIONS(267), - [anon_sym__] = ACTIONS(269), - [anon_sym_LBRACE_STAR] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_LBRACE_CARET] = ACTIONS(275), - [anon_sym_CARET] = ACTIONS(275), - [anon_sym_LBRACE_TILDE] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(277), - [anon_sym_LBRACE_EQ] = ACTIONS(279), - [anon_sym_LBRACE_PLUS] = ACTIONS(281), - [anon_sym_LBRACE_DASH] = ACTIONS(283), - [anon_sym_BSLASH] = ACTIONS(285), - [sym_quotation_marks] = ACTIONS(287), - [sym_ellipsis] = ACTIONS(287), - [sym_em_dash] = ACTIONS(287), - [sym_en_dash] = ACTIONS(289), - [sym_backslash_escape] = ACTIONS(289), - [anon_sym_LT] = ACTIONS(291), - [sym_symbol] = ACTIONS(287), - [anon_sym_LBRACK_CARET] = ACTIONS(293), - [anon_sym_BANG_LBRACK] = ACTIONS(295), - [anon_sym_LBRACK] = ACTIONS(297), - [anon_sym_LBRACE2] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(299), - [anon_sym_TODO] = ACTIONS(301), - [anon_sym_WIP] = ACTIONS(301), - [anon_sym_NOTE] = ACTIONS(303), - [anon_sym_INFO] = ACTIONS(303), - [anon_sym_XXX] = ACTIONS(303), - [sym_fixme] = ACTIONS(287), - [sym__whitespace1] = ACTIONS(305), - [sym__newline] = ACTIONS(307), - [aux_sym__text_token1] = ACTIONS(309), - [sym__verbatim_begin] = ACTIONS(311), + [sym_span] = STATE(13), + [sym__bracketed_text] = STATE(655), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(141), + [sym_raw_inline] = STATE(141), + [sym_math] = STATE(141), + [sym_verbatim] = STATE(141), + [sym__todo_highlights] = STATE(141), + [sym_todo] = STATE(141), + [sym_note] = STATE(141), + [sym__symbol_fallback] = STATE(141), + [aux_sym__text] = STATE(128), + [aux_sym__inline_repeat1] = STATE(13), + [anon_sym_LBRACE_] = ACTIONS(281), + [anon_sym__] = ACTIONS(283), + [anon_sym_LBRACE_STAR] = ACTIONS(285), + [anon_sym_STAR] = ACTIONS(287), + [anon_sym_LBRACE_CARET] = ACTIONS(289), + [anon_sym_CARET] = ACTIONS(289), + [anon_sym_LBRACE_TILDE] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(291), + [anon_sym_LBRACE_EQ] = ACTIONS(293), + [anon_sym_LBRACE_PLUS] = ACTIONS(295), + [anon_sym_LBRACE_DASH] = ACTIONS(297), + [anon_sym_BSLASH] = ACTIONS(299), + [sym_quotation_marks] = ACTIONS(301), + [sym_ellipsis] = ACTIONS(301), + [sym_em_dash] = ACTIONS(301), + [sym_en_dash] = ACTIONS(303), + [sym_backslash_escape] = ACTIONS(303), + [anon_sym_LT] = ACTIONS(305), + [sym_symbol] = ACTIONS(301), + [anon_sym_LBRACK_CARET] = ACTIONS(307), + [anon_sym_BANG_LBRACK] = ACTIONS(309), + [anon_sym_LBRACK] = ACTIONS(311), + [anon_sym_DOLLAR] = ACTIONS(313), + [anon_sym_TODO] = ACTIONS(315), + [anon_sym_WIP] = ACTIONS(315), + [anon_sym_NOTE] = ACTIONS(317), + [anon_sym_INFO] = ACTIONS(317), + [anon_sym_XXX] = ACTIONS(317), + [sym_fixme] = ACTIONS(301), + [sym__whitespace1] = ACTIONS(319), + [sym__newline] = ACTIONS(321), + [aux_sym__text_token1] = ACTIONS(323), + [sym__verbatim_begin] = ACTIONS(325), }, [90] = { - [sym__inline] = STATE(915), - [sym__element] = STATE(115), - [sym_emphasis] = STATE(192), - [sym_emphasis_begin] = STATE(1095), - [sym_strong] = STATE(192), - [sym_strong_begin] = STATE(1096), - [sym_superscript] = STATE(192), - [sym_superscript_begin] = STATE(1097), - [sym_subscript] = STATE(192), - [sym_subscript_begin] = STATE(1098), - [sym_highlighted] = STATE(192), - [sym_highlighted_begin] = STATE(1099), - [sym_insert] = STATE(192), - [sym_insert_begin] = STATE(1100), - [sym_delete] = STATE(192), - [sym_delete_begin] = STATE(1101), - [sym_hard_line_break] = STATE(192), - [sym__smart_punctuation] = STATE(192), - [sym_autolink] = STATE(192), - [sym_footnote_reference] = STATE(192), - [sym__image] = STATE(192), - [sym_full_reference_image] = STATE(192), - [sym_collapsed_reference_image] = STATE(192), - [sym_inline_image] = STATE(192), - [sym__image_description] = STATE(684), - [sym__link] = STATE(192), - [sym_full_reference_link] = STATE(192), - [sym_collapsed_reference_link] = STATE(192), - [sym_inline_link] = STATE(192), - [sym_link_text] = STATE(683), - [sym__comment_with_spaces] = STATE(192), - [sym_span] = STATE(192), - [sym_raw_inline] = STATE(192), - [sym_math] = STATE(192), - [sym_verbatim] = STATE(192), - [sym__todo_highlights] = STATE(192), - [sym_todo] = STATE(192), - [sym_note] = STATE(192), - [sym__symbol_fallback] = STATE(192), - [aux_sym__text] = STATE(141), - [aux_sym__inline_repeat1] = STATE(115), - [anon_sym_LBRACE_] = ACTIONS(129), - [anon_sym__] = ACTIONS(131), - [anon_sym_LBRACE_STAR] = ACTIONS(133), - [anon_sym_STAR] = ACTIONS(135), - [anon_sym_LBRACE_CARET] = ACTIONS(137), - [anon_sym_CARET] = ACTIONS(137), - [anon_sym_LBRACE_TILDE] = ACTIONS(139), - [anon_sym_TILDE] = ACTIONS(139), - [anon_sym_LBRACE_EQ] = ACTIONS(141), - [anon_sym_LBRACE_PLUS] = ACTIONS(143), - [anon_sym_LBRACE_DASH] = ACTIONS(145), - [anon_sym_BSLASH] = ACTIONS(147), - [sym_quotation_marks] = ACTIONS(149), - [sym_ellipsis] = ACTIONS(149), - [sym_em_dash] = ACTIONS(149), - [sym_en_dash] = ACTIONS(151), - [sym_backslash_escape] = ACTIONS(151), - [anon_sym_LT] = ACTIONS(153), - [sym_symbol] = ACTIONS(149), - [anon_sym_LBRACK_CARET] = ACTIONS(155), - [anon_sym_BANG_LBRACK] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LBRACE2] = ACTIONS(151), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_TODO] = ACTIONS(163), - [anon_sym_WIP] = ACTIONS(163), - [anon_sym_NOTE] = ACTIONS(165), - [anon_sym_INFO] = ACTIONS(165), - [anon_sym_XXX] = ACTIONS(165), - [sym_fixme] = ACTIONS(149), - [sym__whitespace1] = ACTIONS(167), - [sym__newline] = ACTIONS(169), - [aux_sym__text_token1] = ACTIONS(171), - [sym__verbatim_begin] = ACTIONS(173), + [sym__inline] = STATE(951), + [sym__element] = STATE(70), + [sym_emphasis] = STATE(136), + [sym_emphasis_begin] = STATE(1161), + [sym_strong] = STATE(136), + [sym_strong_begin] = STATE(1162), + [sym_superscript] = STATE(136), + [sym_superscript_begin] = STATE(1163), + [sym_subscript] = STATE(136), + [sym_subscript_begin] = STATE(1164), + [sym_highlighted] = STATE(136), + [sym_highlighted_begin] = STATE(1165), + [sym_insert] = STATE(136), + [sym_insert_begin] = STATE(1166), + [sym_delete] = STATE(136), + [sym_delete_begin] = STATE(1167), + [sym_hard_line_break] = STATE(136), + [sym__smart_punctuation] = STATE(136), + [sym_autolink] = STATE(136), + [sym_footnote_reference] = STATE(136), + [sym__image] = STATE(136), + [sym_full_reference_image] = STATE(136), + [sym_collapsed_reference_image] = STATE(136), + [sym_inline_image] = STATE(136), + [sym__image_description] = STATE(690), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(136), + [sym_full_reference_link] = STATE(136), + [sym_collapsed_reference_link] = STATE(136), + [sym_inline_link] = STATE(136), + [sym_link_text] = STATE(691), + [sym_span] = STATE(70), + [sym__bracketed_text] = STATE(653), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(136), + [sym_raw_inline] = STATE(136), + [sym_math] = STATE(136), + [sym_verbatim] = STATE(136), + [sym__todo_highlights] = STATE(136), + [sym_todo] = STATE(136), + [sym_note] = STATE(136), + [sym__symbol_fallback] = STATE(136), + [aux_sym__text] = STATE(125), + [aux_sym__inline_repeat1] = STATE(70), + [anon_sym_LBRACE_] = ACTIONS(97), + [anon_sym__] = ACTIONS(99), + [anon_sym_LBRACE_STAR] = ACTIONS(101), + [anon_sym_STAR] = ACTIONS(103), + [anon_sym_LBRACE_CARET] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [anon_sym_LBRACE_TILDE] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(107), + [anon_sym_LBRACE_EQ] = ACTIONS(109), + [anon_sym_LBRACE_PLUS] = ACTIONS(111), + [anon_sym_LBRACE_DASH] = ACTIONS(113), + [anon_sym_BSLASH] = ACTIONS(115), + [sym_quotation_marks] = ACTIONS(117), + [sym_ellipsis] = ACTIONS(117), + [sym_em_dash] = ACTIONS(117), + [sym_en_dash] = ACTIONS(119), + [sym_backslash_escape] = ACTIONS(119), + [anon_sym_LT] = ACTIONS(121), + [sym_symbol] = ACTIONS(117), + [anon_sym_LBRACK_CARET] = ACTIONS(123), + [anon_sym_BANG_LBRACK] = ACTIONS(125), + [anon_sym_LBRACK] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_TODO] = ACTIONS(131), + [anon_sym_WIP] = ACTIONS(131), + [anon_sym_NOTE] = ACTIONS(133), + [anon_sym_INFO] = ACTIONS(133), + [anon_sym_XXX] = ACTIONS(133), + [sym_fixme] = ACTIONS(117), + [sym__whitespace1] = ACTIONS(135), + [sym__newline] = ACTIONS(137), + [aux_sym__text_token1] = ACTIONS(139), + [sym__verbatim_begin] = ACTIONS(141), }, [91] = { - [sym__inline] = STATE(916), - [sym__element] = STATE(93), - [sym_emphasis] = STATE(197), - [sym_emphasis_begin] = STATE(1088), - [sym_strong] = STATE(197), - [sym_strong_begin] = STATE(1089), - [sym_superscript] = STATE(197), - [sym_superscript_begin] = STATE(1090), - [sym_subscript] = STATE(197), - [sym_subscript_begin] = STATE(1091), - [sym_highlighted] = STATE(197), - [sym_highlighted_begin] = STATE(1092), - [sym_insert] = STATE(197), - [sym_insert_begin] = STATE(1093), - [sym_delete] = STATE(197), - [sym_delete_begin] = STATE(1094), - [sym_hard_line_break] = STATE(197), - [sym__smart_punctuation] = STATE(197), - [sym_autolink] = STATE(197), - [sym_footnote_reference] = STATE(197), - [sym__image] = STATE(197), - [sym_full_reference_image] = STATE(197), - [sym_collapsed_reference_image] = STATE(197), - [sym_inline_image] = STATE(197), - [sym__image_description] = STATE(697), - [sym__link] = STATE(197), - [sym_full_reference_link] = STATE(197), - [sym_collapsed_reference_link] = STATE(197), - [sym_inline_link] = STATE(197), - [sym_link_text] = STATE(682), - [sym__comment_with_spaces] = STATE(197), - [sym_span] = STATE(197), - [sym_raw_inline] = STATE(197), - [sym_math] = STATE(197), - [sym_verbatim] = STATE(197), - [sym__todo_highlights] = STATE(197), - [sym_todo] = STATE(197), - [sym_note] = STATE(197), - [sym__symbol_fallback] = STATE(197), - [aux_sym__text] = STATE(134), - [aux_sym__inline_repeat1] = STATE(93), - [anon_sym_LBRACE_] = ACTIONS(313), - [anon_sym__] = ACTIONS(315), - [anon_sym_LBRACE_STAR] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_LBRACE_CARET] = ACTIONS(321), - [anon_sym_CARET] = ACTIONS(321), - [anon_sym_LBRACE_TILDE] = ACTIONS(323), - [anon_sym_TILDE] = ACTIONS(323), - [anon_sym_LBRACE_EQ] = ACTIONS(325), - [anon_sym_LBRACE_PLUS] = ACTIONS(327), - [anon_sym_LBRACE_DASH] = ACTIONS(329), - [anon_sym_BSLASH] = ACTIONS(331), - [sym_quotation_marks] = ACTIONS(333), - [sym_ellipsis] = ACTIONS(333), - [sym_em_dash] = ACTIONS(333), - [sym_en_dash] = ACTIONS(335), - [sym_backslash_escape] = ACTIONS(335), - [anon_sym_LT] = ACTIONS(337), - [sym_symbol] = ACTIONS(333), - [anon_sym_LBRACK_CARET] = ACTIONS(339), - [anon_sym_BANG_LBRACK] = ACTIONS(341), - [anon_sym_LBRACK] = ACTIONS(343), - [anon_sym_LBRACE2] = ACTIONS(335), - [anon_sym_DOLLAR] = ACTIONS(345), - [anon_sym_TODO] = ACTIONS(347), - [anon_sym_WIP] = ACTIONS(347), - [anon_sym_NOTE] = ACTIONS(349), - [anon_sym_INFO] = ACTIONS(349), - [anon_sym_XXX] = ACTIONS(349), - [sym_fixme] = ACTIONS(333), - [sym__whitespace1] = ACTIONS(351), - [sym__newline] = ACTIONS(353), - [aux_sym__text_token1] = ACTIONS(355), - [sym__verbatim_begin] = ACTIONS(357), + [sym__inline] = STATE(952), + [sym__element] = STATE(105), + [sym_emphasis] = STATE(140), + [sym_emphasis_begin] = STATE(1154), + [sym_strong] = STATE(140), + [sym_strong_begin] = STATE(1155), + [sym_superscript] = STATE(140), + [sym_superscript_begin] = STATE(1156), + [sym_subscript] = STATE(140), + [sym_subscript_begin] = STATE(1157), + [sym_highlighted] = STATE(140), + [sym_highlighted_begin] = STATE(1158), + [sym_insert] = STATE(140), + [sym_insert_begin] = STATE(1159), + [sym_delete] = STATE(140), + [sym_delete_begin] = STATE(1160), + [sym_hard_line_break] = STATE(140), + [sym__smart_punctuation] = STATE(140), + [sym_autolink] = STATE(140), + [sym_footnote_reference] = STATE(140), + [sym__image] = STATE(140), + [sym_full_reference_image] = STATE(140), + [sym_collapsed_reference_image] = STATE(140), + [sym_inline_image] = STATE(140), + [sym__image_description] = STATE(687), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(140), + [sym_full_reference_link] = STATE(140), + [sym_collapsed_reference_link] = STATE(140), + [sym_inline_link] = STATE(140), + [sym_link_text] = STATE(688), + [sym_span] = STATE(105), + [sym__bracketed_text] = STATE(654), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(140), + [sym_raw_inline] = STATE(140), + [sym_math] = STATE(140), + [sym_verbatim] = STATE(140), + [sym__todo_highlights] = STATE(140), + [sym_todo] = STATE(140), + [sym_note] = STATE(140), + [sym__symbol_fallback] = STATE(140), + [aux_sym__text] = STATE(131), + [aux_sym__inline_repeat1] = STATE(105), + [anon_sym_LBRACE_] = ACTIONS(327), + [anon_sym__] = ACTIONS(329), + [anon_sym_LBRACE_STAR] = ACTIONS(331), + [anon_sym_STAR] = ACTIONS(333), + [anon_sym_LBRACE_CARET] = ACTIONS(335), + [anon_sym_CARET] = ACTIONS(335), + [anon_sym_LBRACE_TILDE] = ACTIONS(337), + [anon_sym_TILDE] = ACTIONS(337), + [anon_sym_LBRACE_EQ] = ACTIONS(339), + [anon_sym_LBRACE_PLUS] = ACTIONS(341), + [anon_sym_LBRACE_DASH] = ACTIONS(343), + [anon_sym_BSLASH] = ACTIONS(345), + [sym_quotation_marks] = ACTIONS(347), + [sym_ellipsis] = ACTIONS(347), + [sym_em_dash] = ACTIONS(347), + [sym_en_dash] = ACTIONS(349), + [sym_backslash_escape] = ACTIONS(349), + [anon_sym_LT] = ACTIONS(351), + [sym_symbol] = ACTIONS(347), + [anon_sym_LBRACK_CARET] = ACTIONS(353), + [anon_sym_BANG_LBRACK] = ACTIONS(355), + [anon_sym_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [anon_sym_TODO] = ACTIONS(361), + [anon_sym_WIP] = ACTIONS(361), + [anon_sym_NOTE] = ACTIONS(363), + [anon_sym_INFO] = ACTIONS(363), + [anon_sym_XXX] = ACTIONS(363), + [sym_fixme] = ACTIONS(347), + [sym__whitespace1] = ACTIONS(365), + [sym__newline] = ACTIONS(367), + [aux_sym__text_token1] = ACTIONS(369), + [sym__verbatim_begin] = ACTIONS(371), }, [92] = { - [sym__inline] = STATE(917), - [sym__element] = STATE(79), - [sym_emphasis] = STATE(161), - [sym_emphasis_begin] = STATE(1081), - [sym_strong] = STATE(161), - [sym_strong_begin] = STATE(1082), - [sym_superscript] = STATE(161), - [sym_superscript_begin] = STATE(1083), - [sym_subscript] = STATE(161), - [sym_subscript_begin] = STATE(1084), - [sym_highlighted] = STATE(161), - [sym_highlighted_begin] = STATE(1085), - [sym_insert] = STATE(161), - [sym_insert_begin] = STATE(1086), - [sym_delete] = STATE(161), - [sym_delete_begin] = STATE(1087), - [sym_hard_line_break] = STATE(161), - [sym__smart_punctuation] = STATE(161), - [sym_autolink] = STATE(161), - [sym_footnote_reference] = STATE(161), - [sym__image] = STATE(161), - [sym_full_reference_image] = STATE(161), - [sym_collapsed_reference_image] = STATE(161), - [sym_inline_image] = STATE(161), - [sym__image_description] = STATE(692), - [sym__link] = STATE(161), - [sym_full_reference_link] = STATE(161), - [sym_collapsed_reference_link] = STATE(161), - [sym_inline_link] = STATE(161), - [sym_link_text] = STATE(687), - [sym__comment_with_spaces] = STATE(161), - [sym_span] = STATE(161), - [sym_raw_inline] = STATE(161), - [sym_math] = STATE(161), - [sym_verbatim] = STATE(161), - [sym__todo_highlights] = STATE(161), - [sym_todo] = STATE(161), - [sym_note] = STATE(161), - [sym__symbol_fallback] = STATE(161), - [aux_sym__text] = STATE(149), - [aux_sym__inline_repeat1] = STATE(79), - [anon_sym_LBRACE_] = ACTIONS(359), - [anon_sym__] = ACTIONS(361), - [anon_sym_LBRACE_STAR] = ACTIONS(363), - [anon_sym_STAR] = ACTIONS(365), - [anon_sym_LBRACE_CARET] = ACTIONS(367), - [anon_sym_CARET] = ACTIONS(367), - [anon_sym_LBRACE_TILDE] = ACTIONS(369), - [anon_sym_TILDE] = ACTIONS(369), - [anon_sym_LBRACE_EQ] = ACTIONS(371), - [anon_sym_LBRACE_PLUS] = ACTIONS(373), - [anon_sym_LBRACE_DASH] = ACTIONS(375), - [anon_sym_BSLASH] = ACTIONS(377), - [sym_quotation_marks] = ACTIONS(379), - [sym_ellipsis] = ACTIONS(379), - [sym_em_dash] = ACTIONS(379), - [sym_en_dash] = ACTIONS(381), - [sym_backslash_escape] = ACTIONS(381), - [anon_sym_LT] = ACTIONS(383), - [sym_symbol] = ACTIONS(379), - [anon_sym_LBRACK_CARET] = ACTIONS(385), - [anon_sym_BANG_LBRACK] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(389), - [anon_sym_LBRACE2] = ACTIONS(381), - [anon_sym_DOLLAR] = ACTIONS(391), - [anon_sym_TODO] = ACTIONS(393), - [anon_sym_WIP] = ACTIONS(393), - [anon_sym_NOTE] = ACTIONS(395), - [anon_sym_INFO] = ACTIONS(395), - [anon_sym_XXX] = ACTIONS(395), - [sym_fixme] = ACTIONS(379), - [sym__whitespace1] = ACTIONS(397), - [sym__newline] = ACTIONS(399), - [aux_sym__text_token1] = ACTIONS(401), - [sym__verbatim_begin] = ACTIONS(403), + [sym__inline] = STATE(1114), + [sym__element] = STATE(21), + [sym_emphasis] = STATE(134), + [sym_emphasis_begin] = STATE(1182), + [sym_strong] = STATE(134), + [sym_strong_begin] = STATE(1183), + [sym_superscript] = STATE(134), + [sym_superscript_begin] = STATE(1184), + [sym_subscript] = STATE(134), + [sym_subscript_begin] = STATE(1185), + [sym_highlighted] = STATE(134), + [sym_highlighted_begin] = STATE(1186), + [sym_insert] = STATE(134), + [sym_insert_begin] = STATE(1187), + [sym_delete] = STATE(134), + [sym_delete_begin] = STATE(1188), + [sym_hard_line_break] = STATE(134), + [sym__smart_punctuation] = STATE(134), + [sym_autolink] = STATE(134), + [sym_footnote_reference] = STATE(134), + [sym__image] = STATE(134), + [sym_full_reference_image] = STATE(134), + [sym_collapsed_reference_image] = STATE(134), + [sym_inline_image] = STATE(134), + [sym__image_description] = STATE(677), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(134), + [sym_full_reference_link] = STATE(134), + [sym_collapsed_reference_link] = STATE(134), + [sym_inline_link] = STATE(134), + [sym_link_text] = STATE(675), + [sym_span] = STATE(21), + [sym__bracketed_text] = STATE(660), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(134), + [sym_raw_inline] = STATE(134), + [sym_math] = STATE(134), + [sym_verbatim] = STATE(134), + [sym__todo_highlights] = STATE(134), + [sym_todo] = STATE(134), + [sym_note] = STATE(134), + [sym__symbol_fallback] = STATE(134), + [aux_sym__text] = STATE(127), + [aux_sym__inline_repeat1] = STATE(21), + [anon_sym_LBRACE_] = ACTIONS(189), + [anon_sym__] = ACTIONS(191), + [anon_sym_LBRACE_STAR] = ACTIONS(193), + [anon_sym_STAR] = ACTIONS(195), + [anon_sym_LBRACE_CARET] = ACTIONS(197), + [anon_sym_CARET] = ACTIONS(197), + [anon_sym_LBRACE_TILDE] = ACTIONS(199), + [anon_sym_TILDE] = ACTIONS(199), + [anon_sym_LBRACE_EQ] = ACTIONS(201), + [anon_sym_LBRACE_PLUS] = ACTIONS(203), + [anon_sym_LBRACE_DASH] = ACTIONS(205), + [anon_sym_BSLASH] = ACTIONS(207), + [sym_quotation_marks] = ACTIONS(209), + [sym_ellipsis] = ACTIONS(209), + [sym_em_dash] = ACTIONS(209), + [sym_en_dash] = ACTIONS(211), + [sym_backslash_escape] = ACTIONS(211), + [anon_sym_LT] = ACTIONS(213), + [sym_symbol] = ACTIONS(209), + [anon_sym_LBRACK_CARET] = ACTIONS(215), + [anon_sym_BANG_LBRACK] = ACTIONS(217), + [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_DOLLAR] = ACTIONS(221), + [anon_sym_TODO] = ACTIONS(223), + [anon_sym_WIP] = ACTIONS(223), + [anon_sym_NOTE] = ACTIONS(225), + [anon_sym_INFO] = ACTIONS(225), + [anon_sym_XXX] = ACTIONS(225), + [sym_fixme] = ACTIONS(209), + [sym__whitespace1] = ACTIONS(227), + [sym__newline] = ACTIONS(229), + [aux_sym__text_token1] = ACTIONS(231), + [sym__verbatim_begin] = ACTIONS(233), }, [93] = { - [sym__element] = STATE(123), - [sym_emphasis] = STATE(197), - [sym_emphasis_begin] = STATE(1088), - [sym_strong] = STATE(197), - [sym_strong_begin] = STATE(1089), - [sym_superscript] = STATE(197), - [sym_superscript_begin] = STATE(1090), - [sym_subscript] = STATE(197), - [sym_subscript_begin] = STATE(1091), - [sym_highlighted] = STATE(197), - [sym_highlighted_begin] = STATE(1092), - [sym_insert] = STATE(197), - [sym_insert_begin] = STATE(1093), - [sym_delete] = STATE(197), - [sym_delete_begin] = STATE(1094), - [sym_hard_line_break] = STATE(197), - [sym__smart_punctuation] = STATE(197), - [sym_autolink] = STATE(197), - [sym_footnote_reference] = STATE(197), - [sym__image] = STATE(197), - [sym_full_reference_image] = STATE(197), - [sym_collapsed_reference_image] = STATE(197), - [sym_inline_image] = STATE(197), - [sym__image_description] = STATE(697), - [sym__link] = STATE(197), - [sym_full_reference_link] = STATE(197), - [sym_collapsed_reference_link] = STATE(197), - [sym_inline_link] = STATE(197), - [sym_link_text] = STATE(682), - [sym__comment_with_spaces] = STATE(197), - [sym_span] = STATE(197), - [sym_raw_inline] = STATE(197), - [sym_math] = STATE(197), - [sym_verbatim] = STATE(197), - [sym__todo_highlights] = STATE(197), - [sym_todo] = STATE(197), - [sym_note] = STATE(197), - [sym__symbol_fallback] = STATE(197), - [aux_sym__text] = STATE(134), - [aux_sym__inline_repeat1] = STATE(123), - [anon_sym_LBRACE_] = ACTIONS(313), - [anon_sym__] = ACTIONS(315), - [anon_sym_LBRACE_STAR] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_LBRACE_CARET] = ACTIONS(321), - [anon_sym_CARET] = ACTIONS(321), - [anon_sym_LBRACE_TILDE] = ACTIONS(323), - [anon_sym_TILDE] = ACTIONS(323), - [anon_sym_LBRACE_EQ] = ACTIONS(325), - [anon_sym_LBRACE_PLUS] = ACTIONS(327), - [anon_sym_LBRACE_DASH] = ACTIONS(329), - [anon_sym_BSLASH] = ACTIONS(331), - [sym_quotation_marks] = ACTIONS(333), - [sym_ellipsis] = ACTIONS(333), - [sym_em_dash] = ACTIONS(333), - [sym_en_dash] = ACTIONS(335), - [sym_backslash_escape] = ACTIONS(335), - [anon_sym_LT] = ACTIONS(337), - [sym_symbol] = ACTIONS(333), - [anon_sym_LBRACK_CARET] = ACTIONS(339), - [anon_sym_BANG_LBRACK] = ACTIONS(341), - [anon_sym_LBRACK] = ACTIONS(343), - [anon_sym_LBRACE2] = ACTIONS(335), - [anon_sym_DOLLAR] = ACTIONS(345), - [anon_sym_TODO] = ACTIONS(347), - [anon_sym_WIP] = ACTIONS(347), - [anon_sym_NOTE] = ACTIONS(349), - [anon_sym_INFO] = ACTIONS(349), - [anon_sym_XXX] = ACTIONS(349), - [sym_fixme] = ACTIONS(333), - [sym__whitespace1] = ACTIONS(351), - [sym__newline] = ACTIONS(783), - [aux_sym__text_token1] = ACTIONS(355), - [sym__verbatim_begin] = ACTIONS(357), - [sym_subscript_end] = ACTIONS(497), + [sym__inline_without_trailing_space] = STATE(955), + [sym__element] = STATE(562), + [sym_emphasis] = STATE(142), + [sym_emphasis_begin] = STATE(1147), + [sym_strong] = STATE(142), + [sym_strong_begin] = STATE(1148), + [sym_superscript] = STATE(142), + [sym_superscript_begin] = STATE(1149), + [sym_subscript] = STATE(142), + [sym_subscript_begin] = STATE(1150), + [sym_highlighted] = STATE(142), + [sym_highlighted_begin] = STATE(1151), + [sym_insert] = STATE(142), + [sym_insert_begin] = STATE(1152), + [sym_delete] = STATE(142), + [sym_delete_begin] = STATE(1153), + [sym_hard_line_break] = STATE(142), + [sym__smart_punctuation] = STATE(142), + [sym_autolink] = STATE(142), + [sym_footnote_reference] = STATE(142), + [sym__image] = STATE(142), + [sym_full_reference_image] = STATE(142), + [sym_collapsed_reference_image] = STATE(142), + [sym_inline_image] = STATE(142), + [sym__image_description] = STATE(685), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(142), + [sym_full_reference_link] = STATE(142), + [sym_collapsed_reference_link] = STATE(142), + [sym_inline_link] = STATE(142), + [sym_link_text] = STATE(683), + [sym_span] = STATE(562), + [sym__bracketed_text] = STATE(657), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(142), + [sym_raw_inline] = STATE(142), + [sym_math] = STATE(142), + [sym_verbatim] = STATE(142), + [sym__todo_highlights] = STATE(142), + [sym_todo] = STATE(142), + [sym_note] = STATE(142), + [sym__symbol_fallback] = STATE(142), + [aux_sym__text] = STATE(126), + [aux_sym__inline_repeat1] = STATE(120), + [anon_sym_LBRACE_] = ACTIONS(373), + [anon_sym__] = ACTIONS(375), + [anon_sym_LBRACE_STAR] = ACTIONS(377), + [anon_sym_STAR] = ACTIONS(379), + [anon_sym_LBRACE_CARET] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(381), + [anon_sym_LBRACE_TILDE] = ACTIONS(383), + [anon_sym_TILDE] = ACTIONS(383), + [anon_sym_LBRACE_EQ] = ACTIONS(385), + [anon_sym_LBRACE_PLUS] = ACTIONS(387), + [anon_sym_LBRACE_DASH] = ACTIONS(389), + [anon_sym_BSLASH] = ACTIONS(391), + [sym_quotation_marks] = ACTIONS(393), + [sym_ellipsis] = ACTIONS(393), + [sym_em_dash] = ACTIONS(393), + [sym_en_dash] = ACTIONS(395), + [sym_backslash_escape] = ACTIONS(395), + [anon_sym_LT] = ACTIONS(397), + [sym_symbol] = ACTIONS(393), + [anon_sym_LBRACK_CARET] = ACTIONS(399), + [anon_sym_BANG_LBRACK] = ACTIONS(401), + [anon_sym_LBRACK] = ACTIONS(403), + [anon_sym_DOLLAR] = ACTIONS(405), + [anon_sym_TODO] = ACTIONS(407), + [anon_sym_WIP] = ACTIONS(407), + [anon_sym_NOTE] = ACTIONS(409), + [anon_sym_INFO] = ACTIONS(409), + [anon_sym_XXX] = ACTIONS(409), + [sym_fixme] = ACTIONS(393), + [sym__whitespace1] = ACTIONS(411), + [sym__newline] = ACTIONS(413), + [aux_sym__text_token1] = ACTIONS(415), + [sym__verbatim_begin] = ACTIONS(417), }, [94] = { - [sym__inline_without_trailing_space] = STATE(919), - [sym__element] = STATE(603), - [sym_emphasis] = STATE(177), - [sym_emphasis_begin] = STATE(1067), - [sym_strong] = STATE(177), - [sym_strong_begin] = STATE(1068), - [sym_superscript] = STATE(177), - [sym_superscript_begin] = STATE(1069), - [sym_subscript] = STATE(177), - [sym_subscript_begin] = STATE(1070), - [sym_highlighted] = STATE(177), - [sym_highlighted_begin] = STATE(1071), - [sym_insert] = STATE(177), - [sym_insert_begin] = STATE(1072), - [sym_delete] = STATE(177), - [sym_delete_begin] = STATE(1073), - [sym_hard_line_break] = STATE(177), - [sym__smart_punctuation] = STATE(177), - [sym_autolink] = STATE(177), - [sym_footnote_reference] = STATE(177), - [sym__image] = STATE(177), - [sym_full_reference_image] = STATE(177), - [sym_collapsed_reference_image] = STATE(177), - [sym_inline_image] = STATE(177), - [sym__image_description] = STATE(681), - [sym__link] = STATE(177), - [sym_full_reference_link] = STATE(177), - [sym_collapsed_reference_link] = STATE(177), - [sym_inline_link] = STATE(177), - [sym_link_text] = STATE(668), - [sym__comment_with_spaces] = STATE(177), - [sym_span] = STATE(177), - [sym_raw_inline] = STATE(177), - [sym_math] = STATE(177), - [sym_verbatim] = STATE(177), - [sym__todo_highlights] = STATE(177), - [sym_todo] = STATE(177), - [sym_note] = STATE(177), - [sym__symbol_fallback] = STATE(177), - [aux_sym__text] = STATE(132), - [aux_sym__inline_repeat1] = STATE(128), - [anon_sym_LBRACE_] = ACTIONS(405), - [anon_sym__] = ACTIONS(407), - [anon_sym_LBRACE_STAR] = ACTIONS(409), - [anon_sym_STAR] = ACTIONS(411), - [anon_sym_LBRACE_CARET] = ACTIONS(413), - [anon_sym_CARET] = ACTIONS(413), - [anon_sym_LBRACE_TILDE] = ACTIONS(415), - [anon_sym_TILDE] = ACTIONS(415), - [anon_sym_LBRACE_EQ] = ACTIONS(417), - [anon_sym_LBRACE_PLUS] = ACTIONS(419), - [anon_sym_LBRACE_DASH] = ACTIONS(421), - [anon_sym_BSLASH] = ACTIONS(423), - [sym_quotation_marks] = ACTIONS(425), - [sym_ellipsis] = ACTIONS(425), - [sym_em_dash] = ACTIONS(425), - [sym_en_dash] = ACTIONS(427), - [sym_backslash_escape] = ACTIONS(427), - [anon_sym_LT] = ACTIONS(429), - [sym_symbol] = ACTIONS(425), - [anon_sym_LBRACK_CARET] = ACTIONS(431), - [anon_sym_BANG_LBRACK] = ACTIONS(433), - [anon_sym_LBRACK] = ACTIONS(435), - [anon_sym_LBRACE2] = ACTIONS(427), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_TODO] = ACTIONS(439), - [anon_sym_WIP] = ACTIONS(439), - [anon_sym_NOTE] = ACTIONS(441), - [anon_sym_INFO] = ACTIONS(441), - [anon_sym_XXX] = ACTIONS(441), - [sym_fixme] = ACTIONS(425), - [sym__whitespace1] = ACTIONS(443), - [sym__newline] = ACTIONS(445), - [aux_sym__text_token1] = ACTIONS(447), - [sym__verbatim_begin] = ACTIONS(449), + [sym__inline_without_trailing_space] = STATE(956), + [sym__element] = STATE(604), + [sym_emphasis] = STATE(138), + [sym_emphasis_begin] = STATE(1140), + [sym_strong] = STATE(138), + [sym_strong_begin] = STATE(1141), + [sym_superscript] = STATE(138), + [sym_superscript_begin] = STATE(1142), + [sym_subscript] = STATE(138), + [sym_subscript_begin] = STATE(1143), + [sym_highlighted] = STATE(138), + [sym_highlighted_begin] = STATE(1144), + [sym_insert] = STATE(138), + [sym_insert_begin] = STATE(1145), + [sym_delete] = STATE(138), + [sym_delete_begin] = STATE(1146), + [sym_hard_line_break] = STATE(138), + [sym__smart_punctuation] = STATE(138), + [sym_autolink] = STATE(138), + [sym_footnote_reference] = STATE(138), + [sym__image] = STATE(138), + [sym_full_reference_image] = STATE(138), + [sym_collapsed_reference_image] = STATE(138), + [sym_inline_image] = STATE(138), + [sym__image_description] = STATE(667), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(138), + [sym_full_reference_link] = STATE(138), + [sym_collapsed_reference_link] = STATE(138), + [sym_inline_link] = STATE(138), + [sym_link_text] = STATE(689), + [sym_span] = STATE(604), + [sym__bracketed_text] = STATE(658), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(138), + [sym_raw_inline] = STATE(138), + [sym_math] = STATE(138), + [sym_verbatim] = STATE(138), + [sym__todo_highlights] = STATE(138), + [sym_todo] = STATE(138), + [sym_note] = STATE(138), + [sym__symbol_fallback] = STATE(138), + [aux_sym__text] = STATE(124), + [aux_sym__inline_repeat1] = STATE(118), + [anon_sym_LBRACE_] = ACTIONS(419), + [anon_sym__] = ACTIONS(421), + [anon_sym_LBRACE_STAR] = ACTIONS(423), + [anon_sym_STAR] = ACTIONS(425), + [anon_sym_LBRACE_CARET] = ACTIONS(427), + [anon_sym_CARET] = ACTIONS(427), + [anon_sym_LBRACE_TILDE] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_LBRACE_EQ] = ACTIONS(431), + [anon_sym_LBRACE_PLUS] = ACTIONS(433), + [anon_sym_LBRACE_DASH] = ACTIONS(435), + [anon_sym_BSLASH] = ACTIONS(437), + [sym_quotation_marks] = ACTIONS(439), + [sym_ellipsis] = ACTIONS(439), + [sym_em_dash] = ACTIONS(439), + [sym_en_dash] = ACTIONS(441), + [sym_backslash_escape] = ACTIONS(441), + [anon_sym_LT] = ACTIONS(443), + [sym_symbol] = ACTIONS(439), + [anon_sym_LBRACK_CARET] = ACTIONS(445), + [anon_sym_BANG_LBRACK] = ACTIONS(447), + [anon_sym_LBRACK] = ACTIONS(449), + [anon_sym_DOLLAR] = ACTIONS(451), + [anon_sym_TODO] = ACTIONS(453), + [anon_sym_WIP] = ACTIONS(453), + [anon_sym_NOTE] = ACTIONS(455), + [anon_sym_INFO] = ACTIONS(455), + [anon_sym_XXX] = ACTIONS(455), + [sym_fixme] = ACTIONS(439), + [sym__whitespace1] = ACTIONS(457), + [sym__newline] = ACTIONS(459), + [aux_sym__text_token1] = ACTIONS(461), + [sym__verbatim_begin] = ACTIONS(463), }, [95] = { - [sym__inline] = STATE(938), - [sym__element] = STATE(66), - [sym_emphasis] = STATE(171), - [sym_emphasis_begin] = STATE(1116), - [sym_strong] = STATE(171), - [sym_strong_begin] = STATE(1117), - [sym_superscript] = STATE(171), - [sym_superscript_begin] = STATE(1118), - [sym_subscript] = STATE(171), - [sym_subscript_begin] = STATE(1119), - [sym_highlighted] = STATE(171), - [sym_highlighted_begin] = STATE(1120), - [sym_insert] = STATE(171), - [sym_insert_begin] = STATE(1121), - [sym_delete] = STATE(171), - [sym_delete_begin] = STATE(1122), - [sym_hard_line_break] = STATE(171), - [sym__smart_punctuation] = STATE(171), - [sym_autolink] = STATE(171), - [sym_footnote_reference] = STATE(171), - [sym__image] = STATE(171), - [sym_full_reference_image] = STATE(171), - [sym_collapsed_reference_image] = STATE(171), - [sym_inline_image] = STATE(171), - [sym__image_description] = STATE(674), - [sym__link] = STATE(171), - [sym_full_reference_link] = STATE(171), - [sym_collapsed_reference_link] = STATE(171), - [sym_inline_link] = STATE(171), - [sym_link_text] = STATE(675), - [sym__comment_with_spaces] = STATE(171), - [sym_span] = STATE(171), - [sym_raw_inline] = STATE(171), - [sym_math] = STATE(171), - [sym_verbatim] = STATE(171), - [sym__todo_highlights] = STATE(171), - [sym_todo] = STATE(171), - [sym_note] = STATE(171), - [sym__symbol_fallback] = STATE(171), - [aux_sym__text] = STATE(146), - [aux_sym__inline_repeat1] = STATE(66), - [anon_sym_LBRACE_] = ACTIONS(451), - [anon_sym__] = ACTIONS(453), - [anon_sym_LBRACE_STAR] = ACTIONS(455), - [anon_sym_STAR] = ACTIONS(457), - [anon_sym_LBRACE_CARET] = ACTIONS(459), - [anon_sym_CARET] = ACTIONS(459), - [anon_sym_LBRACE_TILDE] = ACTIONS(461), - [anon_sym_TILDE] = ACTIONS(461), - [anon_sym_LBRACE_EQ] = ACTIONS(463), - [anon_sym_LBRACE_PLUS] = ACTIONS(465), - [anon_sym_LBRACE_DASH] = ACTIONS(467), - [anon_sym_BSLASH] = ACTIONS(469), - [sym_quotation_marks] = ACTIONS(471), - [sym_ellipsis] = ACTIONS(471), - [sym_em_dash] = ACTIONS(471), - [sym_en_dash] = ACTIONS(473), - [sym_backslash_escape] = ACTIONS(473), - [anon_sym_LT] = ACTIONS(475), - [sym_symbol] = ACTIONS(471), - [anon_sym_LBRACK_CARET] = ACTIONS(477), - [anon_sym_BANG_LBRACK] = ACTIONS(479), - [anon_sym_LBRACK] = ACTIONS(481), - [anon_sym_LBRACE2] = ACTIONS(473), - [anon_sym_DOLLAR] = ACTIONS(483), - [anon_sym_TODO] = ACTIONS(485), - [anon_sym_WIP] = ACTIONS(485), - [anon_sym_NOTE] = ACTIONS(487), - [anon_sym_INFO] = ACTIONS(487), - [anon_sym_XXX] = ACTIONS(487), - [sym_fixme] = ACTIONS(471), - [sym__whitespace1] = ACTIONS(489), - [sym__newline] = ACTIONS(491), - [aux_sym__text_token1] = ACTIONS(493), - [sym__verbatim_begin] = ACTIONS(495), + [sym__inline] = STATE(991), + [sym__element] = STATE(65), + [sym_emphasis] = STATE(133), + [sym_emphasis_begin] = STATE(1189), + [sym_strong] = STATE(133), + [sym_strong_begin] = STATE(1190), + [sym_superscript] = STATE(133), + [sym_superscript_begin] = STATE(1191), + [sym_subscript] = STATE(133), + [sym_subscript_begin] = STATE(1192), + [sym_highlighted] = STATE(133), + [sym_highlighted_begin] = STATE(1193), + [sym_insert] = STATE(133), + [sym_insert_begin] = STATE(1194), + [sym_delete] = STATE(133), + [sym_delete_begin] = STATE(1195), + [sym_hard_line_break] = STATE(133), + [sym__smart_punctuation] = STATE(133), + [sym_autolink] = STATE(133), + [sym_footnote_reference] = STATE(133), + [sym__image] = STATE(133), + [sym_full_reference_image] = STATE(133), + [sym_collapsed_reference_image] = STATE(133), + [sym_inline_image] = STATE(133), + [sym__image_description] = STATE(670), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(133), + [sym_full_reference_link] = STATE(133), + [sym_collapsed_reference_link] = STATE(133), + [sym_inline_link] = STATE(133), + [sym_link_text] = STATE(663), + [sym_span] = STATE(65), + [sym__bracketed_text] = STATE(662), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(133), + [sym_raw_inline] = STATE(133), + [sym_math] = STATE(133), + [sym_verbatim] = STATE(133), + [sym__todo_highlights] = STATE(133), + [sym_todo] = STATE(133), + [sym_note] = STATE(133), + [sym__symbol_fallback] = STATE(133), + [aux_sym__text] = STATE(123), + [aux_sym__inline_repeat1] = STATE(65), + [anon_sym_LBRACE_] = ACTIONS(143), + [anon_sym__] = ACTIONS(145), + [anon_sym_LBRACE_STAR] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(149), + [anon_sym_LBRACE_CARET] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(151), + [anon_sym_LBRACE_TILDE] = ACTIONS(153), + [anon_sym_TILDE] = ACTIONS(153), + [anon_sym_LBRACE_EQ] = ACTIONS(155), + [anon_sym_LBRACE_PLUS] = ACTIONS(157), + [anon_sym_LBRACE_DASH] = ACTIONS(159), + [anon_sym_BSLASH] = ACTIONS(161), + [sym_quotation_marks] = ACTIONS(163), + [sym_ellipsis] = ACTIONS(163), + [sym_em_dash] = ACTIONS(163), + [sym_en_dash] = ACTIONS(165), + [sym_backslash_escape] = ACTIONS(165), + [anon_sym_LT] = ACTIONS(167), + [sym_symbol] = ACTIONS(163), + [anon_sym_LBRACK_CARET] = ACTIONS(169), + [anon_sym_BANG_LBRACK] = ACTIONS(171), + [anon_sym_LBRACK] = ACTIONS(173), + [anon_sym_DOLLAR] = ACTIONS(175), + [anon_sym_TODO] = ACTIONS(177), + [anon_sym_WIP] = ACTIONS(177), + [anon_sym_NOTE] = ACTIONS(179), + [anon_sym_INFO] = ACTIONS(179), + [anon_sym_XXX] = ACTIONS(179), + [sym_fixme] = ACTIONS(163), + [sym__whitespace1] = ACTIONS(181), + [sym__newline] = ACTIONS(183), + [aux_sym__text_token1] = ACTIONS(185), + [sym__verbatim_begin] = ACTIONS(187), }, [96] = { - [sym__element] = STATE(96), - [sym_emphasis] = STATE(186), - [sym_emphasis_begin] = STATE(1102), - [sym_strong] = STATE(186), - [sym_strong_begin] = STATE(1103), - [sym_superscript] = STATE(186), - [sym_superscript_begin] = STATE(1104), - [sym_subscript] = STATE(186), - [sym_subscript_begin] = STATE(1105), - [sym_highlighted] = STATE(186), - [sym_highlighted_begin] = STATE(1106), - [sym_insert] = STATE(186), - [sym_insert_begin] = STATE(1107), - [sym_delete] = STATE(186), - [sym_delete_begin] = STATE(1108), - [sym_hard_line_break] = STATE(186), - [sym__smart_punctuation] = STATE(186), - [sym_autolink] = STATE(186), - [sym_footnote_reference] = STATE(186), - [sym__image] = STATE(186), - [sym_full_reference_image] = STATE(186), - [sym_collapsed_reference_image] = STATE(186), - [sym_inline_image] = STATE(186), - [sym__image_description] = STATE(673), - [sym__link] = STATE(186), - [sym_full_reference_link] = STATE(186), - [sym_collapsed_reference_link] = STATE(186), - [sym_inline_link] = STATE(186), - [sym_link_text] = STATE(672), - [sym__comment_with_spaces] = STATE(186), - [sym_span] = STATE(186), - [sym_raw_inline] = STATE(186), - [sym_math] = STATE(186), - [sym_verbatim] = STATE(186), - [sym__todo_highlights] = STATE(186), - [sym_todo] = STATE(186), - [sym_note] = STATE(186), - [sym__symbol_fallback] = STATE(186), - [aux_sym__text] = STATE(155), - [aux_sym__inline_repeat1] = STATE(96), - [anon_sym_LBRACE_] = ACTIONS(785), - [anon_sym__] = ACTIONS(788), - [anon_sym_LBRACE_STAR] = ACTIONS(791), - [anon_sym_STAR] = ACTIONS(794), - [anon_sym_LBRACE_CARET] = ACTIONS(797), - [anon_sym_CARET] = ACTIONS(797), - [anon_sym_LBRACE_TILDE] = ACTIONS(800), - [anon_sym_TILDE] = ACTIONS(800), - [anon_sym_LBRACE_EQ] = ACTIONS(803), - [anon_sym_LBRACE_PLUS] = ACTIONS(806), - [anon_sym_LBRACE_DASH] = ACTIONS(809), - [anon_sym_BSLASH] = ACTIONS(812), - [sym_quotation_marks] = ACTIONS(815), - [sym_ellipsis] = ACTIONS(815), - [sym_em_dash] = ACTIONS(815), - [sym_en_dash] = ACTIONS(818), - [sym_backslash_escape] = ACTIONS(818), - [anon_sym_LT] = ACTIONS(821), - [sym_symbol] = ACTIONS(815), - [anon_sym_LBRACK_CARET] = ACTIONS(824), - [anon_sym_BANG_LBRACK] = ACTIONS(827), - [anon_sym_LBRACK] = ACTIONS(830), - [anon_sym_LBRACE2] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(833), - [anon_sym_TODO] = ACTIONS(836), - [anon_sym_WIP] = ACTIONS(836), - [anon_sym_NOTE] = ACTIONS(839), - [anon_sym_INFO] = ACTIONS(839), - [anon_sym_XXX] = ACTIONS(839), - [sym_fixme] = ACTIONS(815), - [sym__whitespace1] = ACTIONS(842), - [sym__newline] = ACTIONS(845), - [aux_sym__text_token1] = ACTIONS(848), - [sym__verbatim_begin] = ACTIONS(851), - [sym_insert_end] = ACTIONS(549), + [sym__inline] = STATE(1111), + [sym__element] = STATE(65), + [sym_emphasis] = STATE(133), + [sym_emphasis_begin] = STATE(1189), + [sym_strong] = STATE(133), + [sym_strong_begin] = STATE(1190), + [sym_superscript] = STATE(133), + [sym_superscript_begin] = STATE(1191), + [sym_subscript] = STATE(133), + [sym_subscript_begin] = STATE(1192), + [sym_highlighted] = STATE(133), + [sym_highlighted_begin] = STATE(1193), + [sym_insert] = STATE(133), + [sym_insert_begin] = STATE(1194), + [sym_delete] = STATE(133), + [sym_delete_begin] = STATE(1195), + [sym_hard_line_break] = STATE(133), + [sym__smart_punctuation] = STATE(133), + [sym_autolink] = STATE(133), + [sym_footnote_reference] = STATE(133), + [sym__image] = STATE(133), + [sym_full_reference_image] = STATE(133), + [sym_collapsed_reference_image] = STATE(133), + [sym_inline_image] = STATE(133), + [sym__image_description] = STATE(670), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(133), + [sym_full_reference_link] = STATE(133), + [sym_collapsed_reference_link] = STATE(133), + [sym_inline_link] = STATE(133), + [sym_link_text] = STATE(663), + [sym_span] = STATE(65), + [sym__bracketed_text] = STATE(662), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(133), + [sym_raw_inline] = STATE(133), + [sym_math] = STATE(133), + [sym_verbatim] = STATE(133), + [sym__todo_highlights] = STATE(133), + [sym_todo] = STATE(133), + [sym_note] = STATE(133), + [sym__symbol_fallback] = STATE(133), + [aux_sym__text] = STATE(123), + [aux_sym__inline_repeat1] = STATE(65), + [anon_sym_LBRACE_] = ACTIONS(143), + [anon_sym__] = ACTIONS(145), + [anon_sym_LBRACE_STAR] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(149), + [anon_sym_LBRACE_CARET] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(151), + [anon_sym_LBRACE_TILDE] = ACTIONS(153), + [anon_sym_TILDE] = ACTIONS(153), + [anon_sym_LBRACE_EQ] = ACTIONS(155), + [anon_sym_LBRACE_PLUS] = ACTIONS(157), + [anon_sym_LBRACE_DASH] = ACTIONS(159), + [anon_sym_BSLASH] = ACTIONS(161), + [sym_quotation_marks] = ACTIONS(163), + [sym_ellipsis] = ACTIONS(163), + [sym_em_dash] = ACTIONS(163), + [sym_en_dash] = ACTIONS(165), + [sym_backslash_escape] = ACTIONS(165), + [anon_sym_LT] = ACTIONS(167), + [sym_symbol] = ACTIONS(163), + [anon_sym_LBRACK_CARET] = ACTIONS(169), + [anon_sym_BANG_LBRACK] = ACTIONS(171), + [anon_sym_LBRACK] = ACTIONS(173), + [anon_sym_DOLLAR] = ACTIONS(175), + [anon_sym_TODO] = ACTIONS(177), + [anon_sym_WIP] = ACTIONS(177), + [anon_sym_NOTE] = ACTIONS(179), + [anon_sym_INFO] = ACTIONS(179), + [anon_sym_XXX] = ACTIONS(179), + [sym_fixme] = ACTIONS(163), + [sym__whitespace1] = ACTIONS(181), + [sym__newline] = ACTIONS(183), + [aux_sym__text_token1] = ACTIONS(185), + [sym__verbatim_begin] = ACTIONS(187), }, [97] = { - [sym__inline] = STATE(939), - [sym__element] = STATE(103), - [sym_emphasis] = STATE(180), - [sym_emphasis_begin] = STATE(1109), - [sym_strong] = STATE(180), - [sym_strong_begin] = STATE(1110), - [sym_superscript] = STATE(180), - [sym_superscript_begin] = STATE(1111), - [sym_subscript] = STATE(180), - [sym_subscript_begin] = STATE(1112), - [sym_highlighted] = STATE(180), - [sym_highlighted_begin] = STATE(1113), - [sym_insert] = STATE(180), - [sym_insert_begin] = STATE(1114), - [sym_delete] = STATE(180), - [sym_delete_begin] = STATE(1115), - [sym_hard_line_break] = STATE(180), - [sym__smart_punctuation] = STATE(180), - [sym_autolink] = STATE(180), - [sym_footnote_reference] = STATE(180), - [sym__image] = STATE(180), - [sym_full_reference_image] = STATE(180), - [sym_collapsed_reference_image] = STATE(180), - [sym_inline_image] = STATE(180), - [sym__image_description] = STATE(666), - [sym__link] = STATE(180), - [sym_full_reference_link] = STATE(180), - [sym_collapsed_reference_link] = STATE(180), - [sym_inline_link] = STATE(180), - [sym_link_text] = STATE(664), - [sym__comment_with_spaces] = STATE(180), - [sym_span] = STATE(180), - [sym_raw_inline] = STATE(180), - [sym_math] = STATE(180), - [sym_verbatim] = STATE(180), - [sym__todo_highlights] = STATE(180), - [sym_todo] = STATE(180), - [sym_note] = STATE(180), - [sym__symbol_fallback] = STATE(180), - [aux_sym__text] = STATE(159), - [aux_sym__inline_repeat1] = STATE(103), - [anon_sym_LBRACE_] = ACTIONS(221), - [anon_sym__] = ACTIONS(223), - [anon_sym_LBRACE_STAR] = ACTIONS(225), - [anon_sym_STAR] = ACTIONS(227), - [anon_sym_LBRACE_CARET] = ACTIONS(229), - [anon_sym_CARET] = ACTIONS(229), - [anon_sym_LBRACE_TILDE] = ACTIONS(231), - [anon_sym_TILDE] = ACTIONS(231), - [anon_sym_LBRACE_EQ] = ACTIONS(233), - [anon_sym_LBRACE_PLUS] = ACTIONS(235), - [anon_sym_LBRACE_DASH] = ACTIONS(237), - [anon_sym_BSLASH] = ACTIONS(239), - [sym_quotation_marks] = ACTIONS(241), - [sym_ellipsis] = ACTIONS(241), - [sym_em_dash] = ACTIONS(241), - [sym_en_dash] = ACTIONS(243), - [sym_backslash_escape] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(245), - [sym_symbol] = ACTIONS(241), - [anon_sym_LBRACK_CARET] = ACTIONS(247), - [anon_sym_BANG_LBRACK] = ACTIONS(249), - [anon_sym_LBRACK] = ACTIONS(251), - [anon_sym_LBRACE2] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(253), - [anon_sym_TODO] = ACTIONS(255), - [anon_sym_WIP] = ACTIONS(255), - [anon_sym_NOTE] = ACTIONS(257), - [anon_sym_INFO] = ACTIONS(257), - [anon_sym_XXX] = ACTIONS(257), - [sym_fixme] = ACTIONS(241), - [sym__whitespace1] = ACTIONS(259), - [sym__newline] = ACTIONS(261), - [aux_sym__text_token1] = ACTIONS(263), - [sym__verbatim_begin] = ACTIONS(265), + [sym__inline_without_trailing_space] = STATE(1066), + [sym__element] = STATE(604), + [sym_emphasis] = STATE(138), + [sym_emphasis_begin] = STATE(1140), + [sym_strong] = STATE(138), + [sym_strong_begin] = STATE(1141), + [sym_superscript] = STATE(138), + [sym_superscript_begin] = STATE(1142), + [sym_subscript] = STATE(138), + [sym_subscript_begin] = STATE(1143), + [sym_highlighted] = STATE(138), + [sym_highlighted_begin] = STATE(1144), + [sym_insert] = STATE(138), + [sym_insert_begin] = STATE(1145), + [sym_delete] = STATE(138), + [sym_delete_begin] = STATE(1146), + [sym_hard_line_break] = STATE(138), + [sym__smart_punctuation] = STATE(138), + [sym_autolink] = STATE(138), + [sym_footnote_reference] = STATE(138), + [sym__image] = STATE(138), + [sym_full_reference_image] = STATE(138), + [sym_collapsed_reference_image] = STATE(138), + [sym_inline_image] = STATE(138), + [sym__image_description] = STATE(667), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(138), + [sym_full_reference_link] = STATE(138), + [sym_collapsed_reference_link] = STATE(138), + [sym_inline_link] = STATE(138), + [sym_link_text] = STATE(689), + [sym_span] = STATE(604), + [sym__bracketed_text] = STATE(658), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(138), + [sym_raw_inline] = STATE(138), + [sym_math] = STATE(138), + [sym_verbatim] = STATE(138), + [sym__todo_highlights] = STATE(138), + [sym_todo] = STATE(138), + [sym_note] = STATE(138), + [sym__symbol_fallback] = STATE(138), + [aux_sym__text] = STATE(124), + [aux_sym__inline_repeat1] = STATE(118), + [anon_sym_LBRACE_] = ACTIONS(419), + [anon_sym__] = ACTIONS(421), + [anon_sym_LBRACE_STAR] = ACTIONS(423), + [anon_sym_STAR] = ACTIONS(425), + [anon_sym_LBRACE_CARET] = ACTIONS(427), + [anon_sym_CARET] = ACTIONS(427), + [anon_sym_LBRACE_TILDE] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_LBRACE_EQ] = ACTIONS(431), + [anon_sym_LBRACE_PLUS] = ACTIONS(433), + [anon_sym_LBRACE_DASH] = ACTIONS(435), + [anon_sym_BSLASH] = ACTIONS(437), + [sym_quotation_marks] = ACTIONS(439), + [sym_ellipsis] = ACTIONS(439), + [sym_em_dash] = ACTIONS(439), + [sym_en_dash] = ACTIONS(441), + [sym_backslash_escape] = ACTIONS(441), + [anon_sym_LT] = ACTIONS(443), + [sym_symbol] = ACTIONS(439), + [anon_sym_LBRACK_CARET] = ACTIONS(445), + [anon_sym_BANG_LBRACK] = ACTIONS(447), + [anon_sym_LBRACK] = ACTIONS(449), + [anon_sym_DOLLAR] = ACTIONS(451), + [anon_sym_TODO] = ACTIONS(453), + [anon_sym_WIP] = ACTIONS(453), + [anon_sym_NOTE] = ACTIONS(455), + [anon_sym_INFO] = ACTIONS(455), + [anon_sym_XXX] = ACTIONS(455), + [sym_fixme] = ACTIONS(439), + [sym__whitespace1] = ACTIONS(457), + [sym__newline] = ACTIONS(459), + [aux_sym__text_token1] = ACTIONS(461), + [sym__verbatim_begin] = ACTIONS(463), }, [98] = { - [sym__inline] = STATE(940), - [sym__element] = STATE(111), - [sym_emphasis] = STATE(186), - [sym_emphasis_begin] = STATE(1102), - [sym_strong] = STATE(186), - [sym_strong_begin] = STATE(1103), - [sym_superscript] = STATE(186), - [sym_superscript_begin] = STATE(1104), - [sym_subscript] = STATE(186), - [sym_subscript_begin] = STATE(1105), - [sym_highlighted] = STATE(186), - [sym_highlighted_begin] = STATE(1106), - [sym_insert] = STATE(186), - [sym_insert_begin] = STATE(1107), - [sym_delete] = STATE(186), - [sym_delete_begin] = STATE(1108), - [sym_hard_line_break] = STATE(186), - [sym__smart_punctuation] = STATE(186), - [sym_autolink] = STATE(186), - [sym_footnote_reference] = STATE(186), - [sym__image] = STATE(186), - [sym_full_reference_image] = STATE(186), - [sym_collapsed_reference_image] = STATE(186), - [sym_inline_image] = STATE(186), - [sym__image_description] = STATE(673), - [sym__link] = STATE(186), - [sym_full_reference_link] = STATE(186), - [sym_collapsed_reference_link] = STATE(186), - [sym_inline_link] = STATE(186), - [sym_link_text] = STATE(672), - [sym__comment_with_spaces] = STATE(186), - [sym_span] = STATE(186), - [sym_raw_inline] = STATE(186), - [sym_math] = STATE(186), - [sym_verbatim] = STATE(186), - [sym__todo_highlights] = STATE(186), - [sym_todo] = STATE(186), - [sym_note] = STATE(186), - [sym__symbol_fallback] = STATE(186), - [aux_sym__text] = STATE(155), - [aux_sym__inline_repeat1] = STATE(111), - [anon_sym_LBRACE_] = ACTIONS(267), - [anon_sym__] = ACTIONS(269), - [anon_sym_LBRACE_STAR] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_LBRACE_CARET] = ACTIONS(275), - [anon_sym_CARET] = ACTIONS(275), - [anon_sym_LBRACE_TILDE] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(277), - [anon_sym_LBRACE_EQ] = ACTIONS(279), - [anon_sym_LBRACE_PLUS] = ACTIONS(281), - [anon_sym_LBRACE_DASH] = ACTIONS(283), - [anon_sym_BSLASH] = ACTIONS(285), - [sym_quotation_marks] = ACTIONS(287), - [sym_ellipsis] = ACTIONS(287), - [sym_em_dash] = ACTIONS(287), - [sym_en_dash] = ACTIONS(289), - [sym_backslash_escape] = ACTIONS(289), - [anon_sym_LT] = ACTIONS(291), - [sym_symbol] = ACTIONS(287), - [anon_sym_LBRACK_CARET] = ACTIONS(293), - [anon_sym_BANG_LBRACK] = ACTIONS(295), - [anon_sym_LBRACK] = ACTIONS(297), - [anon_sym_LBRACE2] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(299), - [anon_sym_TODO] = ACTIONS(301), - [anon_sym_WIP] = ACTIONS(301), - [anon_sym_NOTE] = ACTIONS(303), - [anon_sym_INFO] = ACTIONS(303), - [anon_sym_XXX] = ACTIONS(303), - [sym_fixme] = ACTIONS(287), - [sym__whitespace1] = ACTIONS(305), - [sym__newline] = ACTIONS(307), - [aux_sym__text_token1] = ACTIONS(309), - [sym__verbatim_begin] = ACTIONS(311), + [sym__inline] = STATE(994), + [sym__element] = STATE(21), + [sym_emphasis] = STATE(134), + [sym_emphasis_begin] = STATE(1182), + [sym_strong] = STATE(134), + [sym_strong_begin] = STATE(1183), + [sym_superscript] = STATE(134), + [sym_superscript_begin] = STATE(1184), + [sym_subscript] = STATE(134), + [sym_subscript_begin] = STATE(1185), + [sym_highlighted] = STATE(134), + [sym_highlighted_begin] = STATE(1186), + [sym_insert] = STATE(134), + [sym_insert_begin] = STATE(1187), + [sym_delete] = STATE(134), + [sym_delete_begin] = STATE(1188), + [sym_hard_line_break] = STATE(134), + [sym__smart_punctuation] = STATE(134), + [sym_autolink] = STATE(134), + [sym_footnote_reference] = STATE(134), + [sym__image] = STATE(134), + [sym_full_reference_image] = STATE(134), + [sym_collapsed_reference_image] = STATE(134), + [sym_inline_image] = STATE(134), + [sym__image_description] = STATE(677), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(134), + [sym_full_reference_link] = STATE(134), + [sym_collapsed_reference_link] = STATE(134), + [sym_inline_link] = STATE(134), + [sym_link_text] = STATE(675), + [sym_span] = STATE(21), + [sym__bracketed_text] = STATE(660), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(134), + [sym_raw_inline] = STATE(134), + [sym_math] = STATE(134), + [sym_verbatim] = STATE(134), + [sym__todo_highlights] = STATE(134), + [sym_todo] = STATE(134), + [sym_note] = STATE(134), + [sym__symbol_fallback] = STATE(134), + [aux_sym__text] = STATE(127), + [aux_sym__inline_repeat1] = STATE(21), + [anon_sym_LBRACE_] = ACTIONS(189), + [anon_sym__] = ACTIONS(191), + [anon_sym_LBRACE_STAR] = ACTIONS(193), + [anon_sym_STAR] = ACTIONS(195), + [anon_sym_LBRACE_CARET] = ACTIONS(197), + [anon_sym_CARET] = ACTIONS(197), + [anon_sym_LBRACE_TILDE] = ACTIONS(199), + [anon_sym_TILDE] = ACTIONS(199), + [anon_sym_LBRACE_EQ] = ACTIONS(201), + [anon_sym_LBRACE_PLUS] = ACTIONS(203), + [anon_sym_LBRACE_DASH] = ACTIONS(205), + [anon_sym_BSLASH] = ACTIONS(207), + [sym_quotation_marks] = ACTIONS(209), + [sym_ellipsis] = ACTIONS(209), + [sym_em_dash] = ACTIONS(209), + [sym_en_dash] = ACTIONS(211), + [sym_backslash_escape] = ACTIONS(211), + [anon_sym_LT] = ACTIONS(213), + [sym_symbol] = ACTIONS(209), + [anon_sym_LBRACK_CARET] = ACTIONS(215), + [anon_sym_BANG_LBRACK] = ACTIONS(217), + [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_DOLLAR] = ACTIONS(221), + [anon_sym_TODO] = ACTIONS(223), + [anon_sym_WIP] = ACTIONS(223), + [anon_sym_NOTE] = ACTIONS(225), + [anon_sym_INFO] = ACTIONS(225), + [anon_sym_XXX] = ACTIONS(225), + [sym_fixme] = ACTIONS(209), + [sym__whitespace1] = ACTIONS(227), + [sym__newline] = ACTIONS(229), + [aux_sym__text_token1] = ACTIONS(231), + [sym__verbatim_begin] = ACTIONS(233), }, [99] = { - [sym__inline] = STATE(941), - [sym__element] = STATE(115), - [sym_emphasis] = STATE(192), - [sym_emphasis_begin] = STATE(1095), - [sym_strong] = STATE(192), - [sym_strong_begin] = STATE(1096), - [sym_superscript] = STATE(192), - [sym_superscript_begin] = STATE(1097), - [sym_subscript] = STATE(192), - [sym_subscript_begin] = STATE(1098), - [sym_highlighted] = STATE(192), - [sym_highlighted_begin] = STATE(1099), - [sym_insert] = STATE(192), - [sym_insert_begin] = STATE(1100), - [sym_delete] = STATE(192), - [sym_delete_begin] = STATE(1101), - [sym_hard_line_break] = STATE(192), - [sym__smart_punctuation] = STATE(192), - [sym_autolink] = STATE(192), - [sym_footnote_reference] = STATE(192), - [sym__image] = STATE(192), - [sym_full_reference_image] = STATE(192), - [sym_collapsed_reference_image] = STATE(192), - [sym_inline_image] = STATE(192), - [sym__image_description] = STATE(684), - [sym__link] = STATE(192), - [sym_full_reference_link] = STATE(192), - [sym_collapsed_reference_link] = STATE(192), - [sym_inline_link] = STATE(192), + [sym__inline_without_trailing_space] = STATE(1054), + [sym__element] = STATE(562), + [sym_emphasis] = STATE(142), + [sym_emphasis_begin] = STATE(1147), + [sym_strong] = STATE(142), + [sym_strong_begin] = STATE(1148), + [sym_superscript] = STATE(142), + [sym_superscript_begin] = STATE(1149), + [sym_subscript] = STATE(142), + [sym_subscript_begin] = STATE(1150), + [sym_highlighted] = STATE(142), + [sym_highlighted_begin] = STATE(1151), + [sym_insert] = STATE(142), + [sym_insert_begin] = STATE(1152), + [sym_delete] = STATE(142), + [sym_delete_begin] = STATE(1153), + [sym_hard_line_break] = STATE(142), + [sym__smart_punctuation] = STATE(142), + [sym_autolink] = STATE(142), + [sym_footnote_reference] = STATE(142), + [sym__image] = STATE(142), + [sym_full_reference_image] = STATE(142), + [sym_collapsed_reference_image] = STATE(142), + [sym_inline_image] = STATE(142), + [sym__image_description] = STATE(685), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(142), + [sym_full_reference_link] = STATE(142), + [sym_collapsed_reference_link] = STATE(142), + [sym_inline_link] = STATE(142), [sym_link_text] = STATE(683), - [sym__comment_with_spaces] = STATE(192), - [sym_span] = STATE(192), - [sym_raw_inline] = STATE(192), - [sym_math] = STATE(192), - [sym_verbatim] = STATE(192), - [sym__todo_highlights] = STATE(192), - [sym_todo] = STATE(192), - [sym_note] = STATE(192), - [sym__symbol_fallback] = STATE(192), - [aux_sym__text] = STATE(141), - [aux_sym__inline_repeat1] = STATE(115), - [anon_sym_LBRACE_] = ACTIONS(129), - [anon_sym__] = ACTIONS(131), - [anon_sym_LBRACE_STAR] = ACTIONS(133), - [anon_sym_STAR] = ACTIONS(135), - [anon_sym_LBRACE_CARET] = ACTIONS(137), - [anon_sym_CARET] = ACTIONS(137), - [anon_sym_LBRACE_TILDE] = ACTIONS(139), - [anon_sym_TILDE] = ACTIONS(139), - [anon_sym_LBRACE_EQ] = ACTIONS(141), - [anon_sym_LBRACE_PLUS] = ACTIONS(143), - [anon_sym_LBRACE_DASH] = ACTIONS(145), - [anon_sym_BSLASH] = ACTIONS(147), - [sym_quotation_marks] = ACTIONS(149), - [sym_ellipsis] = ACTIONS(149), - [sym_em_dash] = ACTIONS(149), - [sym_en_dash] = ACTIONS(151), - [sym_backslash_escape] = ACTIONS(151), - [anon_sym_LT] = ACTIONS(153), - [sym_symbol] = ACTIONS(149), - [anon_sym_LBRACK_CARET] = ACTIONS(155), - [anon_sym_BANG_LBRACK] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LBRACE2] = ACTIONS(151), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_TODO] = ACTIONS(163), - [anon_sym_WIP] = ACTIONS(163), - [anon_sym_NOTE] = ACTIONS(165), - [anon_sym_INFO] = ACTIONS(165), - [anon_sym_XXX] = ACTIONS(165), - [sym_fixme] = ACTIONS(149), - [sym__whitespace1] = ACTIONS(167), - [sym__newline] = ACTIONS(169), - [aux_sym__text_token1] = ACTIONS(171), - [sym__verbatim_begin] = ACTIONS(173), + [sym_span] = STATE(562), + [sym__bracketed_text] = STATE(657), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(142), + [sym_raw_inline] = STATE(142), + [sym_math] = STATE(142), + [sym_verbatim] = STATE(142), + [sym__todo_highlights] = STATE(142), + [sym_todo] = STATE(142), + [sym_note] = STATE(142), + [sym__symbol_fallback] = STATE(142), + [aux_sym__text] = STATE(126), + [aux_sym__inline_repeat1] = STATE(120), + [anon_sym_LBRACE_] = ACTIONS(373), + [anon_sym__] = ACTIONS(375), + [anon_sym_LBRACE_STAR] = ACTIONS(377), + [anon_sym_STAR] = ACTIONS(379), + [anon_sym_LBRACE_CARET] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(381), + [anon_sym_LBRACE_TILDE] = ACTIONS(383), + [anon_sym_TILDE] = ACTIONS(383), + [anon_sym_LBRACE_EQ] = ACTIONS(385), + [anon_sym_LBRACE_PLUS] = ACTIONS(387), + [anon_sym_LBRACE_DASH] = ACTIONS(389), + [anon_sym_BSLASH] = ACTIONS(391), + [sym_quotation_marks] = ACTIONS(393), + [sym_ellipsis] = ACTIONS(393), + [sym_em_dash] = ACTIONS(393), + [sym_en_dash] = ACTIONS(395), + [sym_backslash_escape] = ACTIONS(395), + [anon_sym_LT] = ACTIONS(397), + [sym_symbol] = ACTIONS(393), + [anon_sym_LBRACK_CARET] = ACTIONS(399), + [anon_sym_BANG_LBRACK] = ACTIONS(401), + [anon_sym_LBRACK] = ACTIONS(403), + [anon_sym_DOLLAR] = ACTIONS(405), + [anon_sym_TODO] = ACTIONS(407), + [anon_sym_WIP] = ACTIONS(407), + [anon_sym_NOTE] = ACTIONS(409), + [anon_sym_INFO] = ACTIONS(409), + [anon_sym_XXX] = ACTIONS(409), + [sym_fixme] = ACTIONS(393), + [sym__whitespace1] = ACTIONS(411), + [sym__newline] = ACTIONS(413), + [aux_sym__text_token1] = ACTIONS(415), + [sym__verbatim_begin] = ACTIONS(417), }, [100] = { - [sym__inline] = STATE(943), - [sym__element] = STATE(93), - [sym_emphasis] = STATE(197), - [sym_emphasis_begin] = STATE(1088), - [sym_strong] = STATE(197), - [sym_strong_begin] = STATE(1089), - [sym_superscript] = STATE(197), - [sym_superscript_begin] = STATE(1090), - [sym_subscript] = STATE(197), - [sym_subscript_begin] = STATE(1091), - [sym_highlighted] = STATE(197), - [sym_highlighted_begin] = STATE(1092), - [sym_insert] = STATE(197), - [sym_insert_begin] = STATE(1093), - [sym_delete] = STATE(197), - [sym_delete_begin] = STATE(1094), - [sym_hard_line_break] = STATE(197), - [sym__smart_punctuation] = STATE(197), - [sym_autolink] = STATE(197), - [sym_footnote_reference] = STATE(197), - [sym__image] = STATE(197), - [sym_full_reference_image] = STATE(197), - [sym_collapsed_reference_image] = STATE(197), - [sym_inline_image] = STATE(197), - [sym__image_description] = STATE(697), - [sym__link] = STATE(197), - [sym_full_reference_link] = STATE(197), - [sym_collapsed_reference_link] = STATE(197), - [sym_inline_link] = STATE(197), - [sym_link_text] = STATE(682), - [sym__comment_with_spaces] = STATE(197), - [sym_span] = STATE(197), - [sym_raw_inline] = STATE(197), - [sym_math] = STATE(197), - [sym_verbatim] = STATE(197), - [sym__todo_highlights] = STATE(197), - [sym_todo] = STATE(197), - [sym_note] = STATE(197), - [sym__symbol_fallback] = STATE(197), - [aux_sym__text] = STATE(134), - [aux_sym__inline_repeat1] = STATE(93), - [anon_sym_LBRACE_] = ACTIONS(313), - [anon_sym__] = ACTIONS(315), - [anon_sym_LBRACE_STAR] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_LBRACE_CARET] = ACTIONS(321), - [anon_sym_CARET] = ACTIONS(321), - [anon_sym_LBRACE_TILDE] = ACTIONS(323), - [anon_sym_TILDE] = ACTIONS(323), - [anon_sym_LBRACE_EQ] = ACTIONS(325), - [anon_sym_LBRACE_PLUS] = ACTIONS(327), - [anon_sym_LBRACE_DASH] = ACTIONS(329), - [anon_sym_BSLASH] = ACTIONS(331), - [sym_quotation_marks] = ACTIONS(333), - [sym_ellipsis] = ACTIONS(333), - [sym_em_dash] = ACTIONS(333), - [sym_en_dash] = ACTIONS(335), - [sym_backslash_escape] = ACTIONS(335), - [anon_sym_LT] = ACTIONS(337), - [sym_symbol] = ACTIONS(333), - [anon_sym_LBRACK_CARET] = ACTIONS(339), - [anon_sym_BANG_LBRACK] = ACTIONS(341), - [anon_sym_LBRACK] = ACTIONS(343), - [anon_sym_LBRACE2] = ACTIONS(335), - [anon_sym_DOLLAR] = ACTIONS(345), - [anon_sym_TODO] = ACTIONS(347), - [anon_sym_WIP] = ACTIONS(347), - [anon_sym_NOTE] = ACTIONS(349), - [anon_sym_INFO] = ACTIONS(349), - [anon_sym_XXX] = ACTIONS(349), - [sym_fixme] = ACTIONS(333), - [sym__whitespace1] = ACTIONS(351), - [sym__newline] = ACTIONS(353), - [aux_sym__text_token1] = ACTIONS(355), - [sym__verbatim_begin] = ACTIONS(357), + [sym__inline] = STATE(1006), + [sym__element] = STATE(103), + [sym_emphasis] = STATE(139), + [sym_emphasis_begin] = STATE(1175), + [sym_strong] = STATE(139), + [sym_strong_begin] = STATE(1176), + [sym_superscript] = STATE(139), + [sym_superscript_begin] = STATE(1177), + [sym_subscript] = STATE(139), + [sym_subscript_begin] = STATE(1178), + [sym_highlighted] = STATE(139), + [sym_highlighted_begin] = STATE(1179), + [sym_insert] = STATE(139), + [sym_insert_begin] = STATE(1180), + [sym_delete] = STATE(139), + [sym_delete_begin] = STATE(1181), + [sym_hard_line_break] = STATE(139), + [sym__smart_punctuation] = STATE(139), + [sym_autolink] = STATE(139), + [sym_footnote_reference] = STATE(139), + [sym__image] = STATE(139), + [sym_full_reference_image] = STATE(139), + [sym_collapsed_reference_image] = STATE(139), + [sym_inline_image] = STATE(139), + [sym__image_description] = STATE(682), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(139), + [sym_full_reference_link] = STATE(139), + [sym_collapsed_reference_link] = STATE(139), + [sym_inline_link] = STATE(139), + [sym_link_text] = STATE(681), + [sym_span] = STATE(103), + [sym__bracketed_text] = STATE(656), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(139), + [sym_raw_inline] = STATE(139), + [sym_math] = STATE(139), + [sym_verbatim] = STATE(139), + [sym__todo_highlights] = STATE(139), + [sym_todo] = STATE(139), + [sym_note] = STATE(139), + [sym__symbol_fallback] = STATE(139), + [aux_sym__text] = STATE(129), + [aux_sym__inline_repeat1] = STATE(103), + [anon_sym_LBRACE_] = ACTIONS(235), + [anon_sym__] = ACTIONS(237), + [anon_sym_LBRACE_STAR] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(241), + [anon_sym_LBRACE_CARET] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(243), + [anon_sym_LBRACE_TILDE] = ACTIONS(245), + [anon_sym_TILDE] = ACTIONS(245), + [anon_sym_LBRACE_EQ] = ACTIONS(247), + [anon_sym_LBRACE_PLUS] = ACTIONS(249), + [anon_sym_LBRACE_DASH] = ACTIONS(251), + [anon_sym_BSLASH] = ACTIONS(253), + [sym_quotation_marks] = ACTIONS(255), + [sym_ellipsis] = ACTIONS(255), + [sym_em_dash] = ACTIONS(255), + [sym_en_dash] = ACTIONS(257), + [sym_backslash_escape] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(259), + [sym_symbol] = ACTIONS(255), + [anon_sym_LBRACK_CARET] = ACTIONS(261), + [anon_sym_BANG_LBRACK] = ACTIONS(263), + [anon_sym_LBRACK] = ACTIONS(265), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_TODO] = ACTIONS(269), + [anon_sym_WIP] = ACTIONS(269), + [anon_sym_NOTE] = ACTIONS(271), + [anon_sym_INFO] = ACTIONS(271), + [anon_sym_XXX] = ACTIONS(271), + [sym_fixme] = ACTIONS(255), + [sym__whitespace1] = ACTIONS(273), + [sym__newline] = ACTIONS(275), + [aux_sym__text_token1] = ACTIONS(277), + [sym__verbatim_begin] = ACTIONS(279), }, [101] = { - [sym__inline] = STATE(944), - [sym__element] = STATE(79), - [sym_emphasis] = STATE(161), - [sym_emphasis_begin] = STATE(1081), - [sym_strong] = STATE(161), - [sym_strong_begin] = STATE(1082), - [sym_superscript] = STATE(161), - [sym_superscript_begin] = STATE(1083), - [sym_subscript] = STATE(161), - [sym_subscript_begin] = STATE(1084), - [sym_highlighted] = STATE(161), - [sym_highlighted_begin] = STATE(1085), - [sym_insert] = STATE(161), - [sym_insert_begin] = STATE(1086), - [sym_delete] = STATE(161), - [sym_delete_begin] = STATE(1087), - [sym_hard_line_break] = STATE(161), - [sym__smart_punctuation] = STATE(161), - [sym_autolink] = STATE(161), - [sym_footnote_reference] = STATE(161), - [sym__image] = STATE(161), - [sym_full_reference_image] = STATE(161), - [sym_collapsed_reference_image] = STATE(161), - [sym_inline_image] = STATE(161), - [sym__image_description] = STATE(692), - [sym__link] = STATE(161), - [sym_full_reference_link] = STATE(161), - [sym_collapsed_reference_link] = STATE(161), - [sym_inline_link] = STATE(161), - [sym_link_text] = STATE(687), - [sym__comment_with_spaces] = STATE(161), - [sym_span] = STATE(161), - [sym_raw_inline] = STATE(161), - [sym_math] = STATE(161), - [sym_verbatim] = STATE(161), - [sym__todo_highlights] = STATE(161), - [sym_todo] = STATE(161), - [sym_note] = STATE(161), - [sym__symbol_fallback] = STATE(161), - [aux_sym__text] = STATE(149), - [aux_sym__inline_repeat1] = STATE(79), - [anon_sym_LBRACE_] = ACTIONS(359), - [anon_sym__] = ACTIONS(361), - [anon_sym_LBRACE_STAR] = ACTIONS(363), - [anon_sym_STAR] = ACTIONS(365), - [anon_sym_LBRACE_CARET] = ACTIONS(367), - [anon_sym_CARET] = ACTIONS(367), - [anon_sym_LBRACE_TILDE] = ACTIONS(369), - [anon_sym_TILDE] = ACTIONS(369), - [anon_sym_LBRACE_EQ] = ACTIONS(371), - [anon_sym_LBRACE_PLUS] = ACTIONS(373), - [anon_sym_LBRACE_DASH] = ACTIONS(375), - [anon_sym_BSLASH] = ACTIONS(377), - [sym_quotation_marks] = ACTIONS(379), - [sym_ellipsis] = ACTIONS(379), - [sym_em_dash] = ACTIONS(379), - [sym_en_dash] = ACTIONS(381), - [sym_backslash_escape] = ACTIONS(381), - [anon_sym_LT] = ACTIONS(383), - [sym_symbol] = ACTIONS(379), - [anon_sym_LBRACK_CARET] = ACTIONS(385), - [anon_sym_BANG_LBRACK] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(389), - [anon_sym_LBRACE2] = ACTIONS(381), - [anon_sym_DOLLAR] = ACTIONS(391), - [anon_sym_TODO] = ACTIONS(393), - [anon_sym_WIP] = ACTIONS(393), - [anon_sym_NOTE] = ACTIONS(395), - [anon_sym_INFO] = ACTIONS(395), - [anon_sym_XXX] = ACTIONS(395), - [sym_fixme] = ACTIONS(379), - [sym__whitespace1] = ACTIONS(397), - [sym__newline] = ACTIONS(399), - [aux_sym__text_token1] = ACTIONS(401), - [sym__verbatim_begin] = ACTIONS(403), + [sym__inline] = STATE(1051), + [sym__element] = STATE(105), + [sym_emphasis] = STATE(140), + [sym_emphasis_begin] = STATE(1154), + [sym_strong] = STATE(140), + [sym_strong_begin] = STATE(1155), + [sym_superscript] = STATE(140), + [sym_superscript_begin] = STATE(1156), + [sym_subscript] = STATE(140), + [sym_subscript_begin] = STATE(1157), + [sym_highlighted] = STATE(140), + [sym_highlighted_begin] = STATE(1158), + [sym_insert] = STATE(140), + [sym_insert_begin] = STATE(1159), + [sym_delete] = STATE(140), + [sym_delete_begin] = STATE(1160), + [sym_hard_line_break] = STATE(140), + [sym__smart_punctuation] = STATE(140), + [sym_autolink] = STATE(140), + [sym_footnote_reference] = STATE(140), + [sym__image] = STATE(140), + [sym_full_reference_image] = STATE(140), + [sym_collapsed_reference_image] = STATE(140), + [sym_inline_image] = STATE(140), + [sym__image_description] = STATE(687), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(140), + [sym_full_reference_link] = STATE(140), + [sym_collapsed_reference_link] = STATE(140), + [sym_inline_link] = STATE(140), + [sym_link_text] = STATE(688), + [sym_span] = STATE(105), + [sym__bracketed_text] = STATE(654), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(140), + [sym_raw_inline] = STATE(140), + [sym_math] = STATE(140), + [sym_verbatim] = STATE(140), + [sym__todo_highlights] = STATE(140), + [sym_todo] = STATE(140), + [sym_note] = STATE(140), + [sym__symbol_fallback] = STATE(140), + [aux_sym__text] = STATE(131), + [aux_sym__inline_repeat1] = STATE(105), + [anon_sym_LBRACE_] = ACTIONS(327), + [anon_sym__] = ACTIONS(329), + [anon_sym_LBRACE_STAR] = ACTIONS(331), + [anon_sym_STAR] = ACTIONS(333), + [anon_sym_LBRACE_CARET] = ACTIONS(335), + [anon_sym_CARET] = ACTIONS(335), + [anon_sym_LBRACE_TILDE] = ACTIONS(337), + [anon_sym_TILDE] = ACTIONS(337), + [anon_sym_LBRACE_EQ] = ACTIONS(339), + [anon_sym_LBRACE_PLUS] = ACTIONS(341), + [anon_sym_LBRACE_DASH] = ACTIONS(343), + [anon_sym_BSLASH] = ACTIONS(345), + [sym_quotation_marks] = ACTIONS(347), + [sym_ellipsis] = ACTIONS(347), + [sym_em_dash] = ACTIONS(347), + [sym_en_dash] = ACTIONS(349), + [sym_backslash_escape] = ACTIONS(349), + [anon_sym_LT] = ACTIONS(351), + [sym_symbol] = ACTIONS(347), + [anon_sym_LBRACK_CARET] = ACTIONS(353), + [anon_sym_BANG_LBRACK] = ACTIONS(355), + [anon_sym_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [anon_sym_TODO] = ACTIONS(361), + [anon_sym_WIP] = ACTIONS(361), + [anon_sym_NOTE] = ACTIONS(363), + [anon_sym_INFO] = ACTIONS(363), + [anon_sym_XXX] = ACTIONS(363), + [sym_fixme] = ACTIONS(347), + [sym__whitespace1] = ACTIONS(365), + [sym__newline] = ACTIONS(367), + [aux_sym__text_token1] = ACTIONS(369), + [sym__verbatim_begin] = ACTIONS(371), }, [102] = { - [sym__inline_without_trailing_space] = STATE(945), - [sym__element] = STATE(572), - [sym_emphasis] = STATE(208), - [sym_emphasis_begin] = STATE(1074), - [sym_strong] = STATE(208), - [sym_strong_begin] = STATE(1075), - [sym_superscript] = STATE(208), - [sym_superscript_begin] = STATE(1076), - [sym_subscript] = STATE(208), - [sym_subscript_begin] = STATE(1077), - [sym_highlighted] = STATE(208), - [sym_highlighted_begin] = STATE(1078), - [sym_insert] = STATE(208), - [sym_insert_begin] = STATE(1079), - [sym_delete] = STATE(208), - [sym_delete_begin] = STATE(1080), - [sym_hard_line_break] = STATE(208), - [sym__smart_punctuation] = STATE(208), - [sym_autolink] = STATE(208), - [sym_footnote_reference] = STATE(208), - [sym__image] = STATE(208), - [sym_full_reference_image] = STATE(208), - [sym_collapsed_reference_image] = STATE(208), - [sym_inline_image] = STATE(208), - [sym__image_description] = STATE(680), - [sym__link] = STATE(208), - [sym_full_reference_link] = STATE(208), - [sym_collapsed_reference_link] = STATE(208), - [sym_inline_link] = STATE(208), - [sym_link_text] = STATE(663), - [sym__comment_with_spaces] = STATE(208), - [sym_span] = STATE(208), - [sym_raw_inline] = STATE(208), - [sym_math] = STATE(208), - [sym_verbatim] = STATE(208), - [sym__todo_highlights] = STATE(208), - [sym_todo] = STATE(208), - [sym_note] = STATE(208), - [sym__symbol_fallback] = STATE(208), - [aux_sym__text] = STATE(131), - [aux_sym__inline_repeat1] = STATE(130), - [anon_sym_LBRACE_] = ACTIONS(175), - [anon_sym__] = ACTIONS(177), - [anon_sym_LBRACE_STAR] = ACTIONS(179), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_LBRACE_CARET] = ACTIONS(183), - [anon_sym_CARET] = ACTIONS(183), - [anon_sym_LBRACE_TILDE] = ACTIONS(185), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_LBRACE_EQ] = ACTIONS(187), - [anon_sym_LBRACE_PLUS] = ACTIONS(189), - [anon_sym_LBRACE_DASH] = ACTIONS(191), - [anon_sym_BSLASH] = ACTIONS(193), - [sym_quotation_marks] = ACTIONS(195), - [sym_ellipsis] = ACTIONS(195), - [sym_em_dash] = ACTIONS(195), - [sym_en_dash] = ACTIONS(197), - [sym_backslash_escape] = ACTIONS(197), - [anon_sym_LT] = ACTIONS(199), - [sym_symbol] = ACTIONS(195), - [anon_sym_LBRACK_CARET] = ACTIONS(201), - [anon_sym_BANG_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE2] = ACTIONS(197), - [anon_sym_DOLLAR] = ACTIONS(207), - [anon_sym_TODO] = ACTIONS(209), - [anon_sym_WIP] = ACTIONS(209), - [anon_sym_NOTE] = ACTIONS(211), - [anon_sym_INFO] = ACTIONS(211), - [anon_sym_XXX] = ACTIONS(211), - [sym_fixme] = ACTIONS(195), - [sym__whitespace1] = ACTIONS(213), - [sym__newline] = ACTIONS(215), - [aux_sym__text_token1] = ACTIONS(217), - [sym__verbatim_begin] = ACTIONS(219), + [sym__inline] = STATE(1009), + [sym__element] = STATE(13), + [sym_emphasis] = STATE(141), + [sym_emphasis_begin] = STATE(1168), + [sym_strong] = STATE(141), + [sym_strong_begin] = STATE(1169), + [sym_superscript] = STATE(141), + [sym_superscript_begin] = STATE(1170), + [sym_subscript] = STATE(141), + [sym_subscript_begin] = STATE(1171), + [sym_highlighted] = STATE(141), + [sym_highlighted_begin] = STATE(1172), + [sym_insert] = STATE(141), + [sym_insert_begin] = STATE(1173), + [sym_delete] = STATE(141), + [sym_delete_begin] = STATE(1174), + [sym_hard_line_break] = STATE(141), + [sym__smart_punctuation] = STATE(141), + [sym_autolink] = STATE(141), + [sym_footnote_reference] = STATE(141), + [sym__image] = STATE(141), + [sym_full_reference_image] = STATE(141), + [sym_collapsed_reference_image] = STATE(141), + [sym_inline_image] = STATE(141), + [sym__image_description] = STATE(674), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(141), + [sym_full_reference_link] = STATE(141), + [sym_collapsed_reference_link] = STATE(141), + [sym_inline_link] = STATE(141), + [sym_link_text] = STATE(672), + [sym_span] = STATE(13), + [sym__bracketed_text] = STATE(655), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(141), + [sym_raw_inline] = STATE(141), + [sym_math] = STATE(141), + [sym_verbatim] = STATE(141), + [sym__todo_highlights] = STATE(141), + [sym_todo] = STATE(141), + [sym_note] = STATE(141), + [sym__symbol_fallback] = STATE(141), + [aux_sym__text] = STATE(128), + [aux_sym__inline_repeat1] = STATE(13), + [anon_sym_LBRACE_] = ACTIONS(281), + [anon_sym__] = ACTIONS(283), + [anon_sym_LBRACE_STAR] = ACTIONS(285), + [anon_sym_STAR] = ACTIONS(287), + [anon_sym_LBRACE_CARET] = ACTIONS(289), + [anon_sym_CARET] = ACTIONS(289), + [anon_sym_LBRACE_TILDE] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(291), + [anon_sym_LBRACE_EQ] = ACTIONS(293), + [anon_sym_LBRACE_PLUS] = ACTIONS(295), + [anon_sym_LBRACE_DASH] = ACTIONS(297), + [anon_sym_BSLASH] = ACTIONS(299), + [sym_quotation_marks] = ACTIONS(301), + [sym_ellipsis] = ACTIONS(301), + [sym_em_dash] = ACTIONS(301), + [sym_en_dash] = ACTIONS(303), + [sym_backslash_escape] = ACTIONS(303), + [anon_sym_LT] = ACTIONS(305), + [sym_symbol] = ACTIONS(301), + [anon_sym_LBRACK_CARET] = ACTIONS(307), + [anon_sym_BANG_LBRACK] = ACTIONS(309), + [anon_sym_LBRACK] = ACTIONS(311), + [anon_sym_DOLLAR] = ACTIONS(313), + [anon_sym_TODO] = ACTIONS(315), + [anon_sym_WIP] = ACTIONS(315), + [anon_sym_NOTE] = ACTIONS(317), + [anon_sym_INFO] = ACTIONS(317), + [anon_sym_XXX] = ACTIONS(317), + [sym_fixme] = ACTIONS(301), + [sym__whitespace1] = ACTIONS(319), + [sym__newline] = ACTIONS(321), + [aux_sym__text_token1] = ACTIONS(323), + [sym__verbatim_begin] = ACTIONS(325), }, [103] = { - [sym__element] = STATE(65), - [sym_emphasis] = STATE(180), - [sym_emphasis_begin] = STATE(1109), - [sym_strong] = STATE(180), - [sym_strong_begin] = STATE(1110), - [sym_superscript] = STATE(180), - [sym_superscript_begin] = STATE(1111), - [sym_subscript] = STATE(180), - [sym_subscript_begin] = STATE(1112), - [sym_highlighted] = STATE(180), - [sym_highlighted_begin] = STATE(1113), - [sym_insert] = STATE(180), - [sym_insert_begin] = STATE(1114), - [sym_delete] = STATE(180), - [sym_delete_begin] = STATE(1115), - [sym_hard_line_break] = STATE(180), - [sym__smart_punctuation] = STATE(180), - [sym_autolink] = STATE(180), - [sym_footnote_reference] = STATE(180), - [sym__image] = STATE(180), - [sym_full_reference_image] = STATE(180), - [sym_collapsed_reference_image] = STATE(180), - [sym_inline_image] = STATE(180), - [sym__image_description] = STATE(666), - [sym__link] = STATE(180), - [sym_full_reference_link] = STATE(180), - [sym_collapsed_reference_link] = STATE(180), - [sym_inline_link] = STATE(180), - [sym_link_text] = STATE(664), - [sym__comment_with_spaces] = STATE(180), - [sym_span] = STATE(180), - [sym_raw_inline] = STATE(180), - [sym_math] = STATE(180), - [sym_verbatim] = STATE(180), - [sym__todo_highlights] = STATE(180), - [sym_todo] = STATE(180), - [sym_note] = STATE(180), - [sym__symbol_fallback] = STATE(180), - [aux_sym__text] = STATE(159), - [aux_sym__inline_repeat1] = STATE(65), - [anon_sym_LBRACE_] = ACTIONS(221), - [anon_sym__] = ACTIONS(223), - [anon_sym_LBRACE_STAR] = ACTIONS(225), - [anon_sym_STAR] = ACTIONS(227), - [anon_sym_LBRACE_CARET] = ACTIONS(229), - [anon_sym_CARET] = ACTIONS(229), - [anon_sym_LBRACE_TILDE] = ACTIONS(231), - [anon_sym_TILDE] = ACTIONS(231), - [anon_sym_LBRACE_EQ] = ACTIONS(233), - [anon_sym_LBRACE_PLUS] = ACTIONS(235), - [anon_sym_LBRACE_DASH] = ACTIONS(237), - [anon_sym_BSLASH] = ACTIONS(239), - [sym_quotation_marks] = ACTIONS(241), - [sym_ellipsis] = ACTIONS(241), - [sym_em_dash] = ACTIONS(241), - [sym_en_dash] = ACTIONS(243), - [sym_backslash_escape] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(245), - [sym_symbol] = ACTIONS(241), - [anon_sym_LBRACK_CARET] = ACTIONS(247), - [anon_sym_BANG_LBRACK] = ACTIONS(249), - [anon_sym_LBRACK] = ACTIONS(251), - [anon_sym_LBRACE2] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(253), - [anon_sym_TODO] = ACTIONS(255), - [anon_sym_WIP] = ACTIONS(255), - [anon_sym_NOTE] = ACTIONS(257), - [anon_sym_INFO] = ACTIONS(257), - [anon_sym_XXX] = ACTIONS(257), - [sym_fixme] = ACTIONS(241), - [sym__whitespace1] = ACTIONS(259), - [sym__newline] = ACTIONS(854), - [aux_sym__text_token1] = ACTIONS(263), - [sym__verbatim_begin] = ACTIONS(265), - [sym_delete_end] = ACTIONS(497), + [sym__element] = STATE(36), + [sym_emphasis] = STATE(139), + [sym_emphasis_begin] = STATE(1175), + [sym_strong] = STATE(139), + [sym_strong_begin] = STATE(1176), + [sym_superscript] = STATE(139), + [sym_superscript_begin] = STATE(1177), + [sym_subscript] = STATE(139), + [sym_subscript_begin] = STATE(1178), + [sym_highlighted] = STATE(139), + [sym_highlighted_begin] = STATE(1179), + [sym_insert] = STATE(139), + [sym_insert_begin] = STATE(1180), + [sym_delete] = STATE(139), + [sym_delete_begin] = STATE(1181), + [sym_hard_line_break] = STATE(139), + [sym__smart_punctuation] = STATE(139), + [sym_autolink] = STATE(139), + [sym_footnote_reference] = STATE(139), + [sym__image] = STATE(139), + [sym_full_reference_image] = STATE(139), + [sym_collapsed_reference_image] = STATE(139), + [sym_inline_image] = STATE(139), + [sym__image_description] = STATE(682), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(139), + [sym_full_reference_link] = STATE(139), + [sym_collapsed_reference_link] = STATE(139), + [sym_inline_link] = STATE(139), + [sym_link_text] = STATE(681), + [sym_span] = STATE(36), + [sym__bracketed_text] = STATE(656), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(139), + [sym_raw_inline] = STATE(139), + [sym_math] = STATE(139), + [sym_verbatim] = STATE(139), + [sym__todo_highlights] = STATE(139), + [sym_todo] = STATE(139), + [sym_note] = STATE(139), + [sym__symbol_fallback] = STATE(139), + [aux_sym__text] = STATE(129), + [aux_sym__inline_repeat1] = STATE(36), + [anon_sym_LBRACE_] = ACTIONS(235), + [anon_sym__] = ACTIONS(237), + [anon_sym_LBRACE_STAR] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(241), + [anon_sym_LBRACE_CARET] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(243), + [anon_sym_LBRACE_TILDE] = ACTIONS(245), + [anon_sym_TILDE] = ACTIONS(245), + [anon_sym_LBRACE_EQ] = ACTIONS(247), + [anon_sym_LBRACE_PLUS] = ACTIONS(249), + [anon_sym_LBRACE_DASH] = ACTIONS(251), + [anon_sym_BSLASH] = ACTIONS(253), + [sym_quotation_marks] = ACTIONS(255), + [sym_ellipsis] = ACTIONS(255), + [sym_em_dash] = ACTIONS(255), + [sym_en_dash] = ACTIONS(257), + [sym_backslash_escape] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(259), + [sym_symbol] = ACTIONS(255), + [anon_sym_LBRACK_CARET] = ACTIONS(261), + [anon_sym_BANG_LBRACK] = ACTIONS(263), + [anon_sym_LBRACK] = ACTIONS(265), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_TODO] = ACTIONS(269), + [anon_sym_WIP] = ACTIONS(269), + [anon_sym_NOTE] = ACTIONS(271), + [anon_sym_INFO] = ACTIONS(271), + [anon_sym_XXX] = ACTIONS(271), + [sym_fixme] = ACTIONS(255), + [sym__whitespace1] = ACTIONS(273), + [sym__newline] = ACTIONS(941), + [aux_sym__text_token1] = ACTIONS(277), + [sym__verbatim_begin] = ACTIONS(279), + [sym_insert_end] = ACTIONS(467), }, [104] = { - [sym__element] = STATE(104), - [sym_emphasis] = STATE(161), - [sym_emphasis_begin] = STATE(1081), - [sym_strong] = STATE(161), - [sym_strong_begin] = STATE(1082), - [sym_superscript] = STATE(161), - [sym_superscript_begin] = STATE(1083), - [sym_subscript] = STATE(161), - [sym_subscript_begin] = STATE(1084), - [sym_highlighted] = STATE(161), - [sym_highlighted_begin] = STATE(1085), - [sym_insert] = STATE(161), - [sym_insert_begin] = STATE(1086), - [sym_delete] = STATE(161), - [sym_delete_begin] = STATE(1087), - [sym_hard_line_break] = STATE(161), - [sym__smart_punctuation] = STATE(161), - [sym_autolink] = STATE(161), - [sym_footnote_reference] = STATE(161), - [sym__image] = STATE(161), - [sym_full_reference_image] = STATE(161), - [sym_collapsed_reference_image] = STATE(161), - [sym_inline_image] = STATE(161), - [sym__image_description] = STATE(692), - [sym__link] = STATE(161), - [sym_full_reference_link] = STATE(161), - [sym_collapsed_reference_link] = STATE(161), - [sym_inline_link] = STATE(161), - [sym_link_text] = STATE(687), - [sym__comment_with_spaces] = STATE(161), - [sym_span] = STATE(161), - [sym_raw_inline] = STATE(161), - [sym_math] = STATE(161), - [sym_verbatim] = STATE(161), - [sym__todo_highlights] = STATE(161), - [sym_todo] = STATE(161), - [sym_note] = STATE(161), - [sym__symbol_fallback] = STATE(161), - [aux_sym__text] = STATE(149), - [aux_sym__inline_repeat1] = STATE(104), - [anon_sym_LBRACE_] = ACTIONS(856), - [anon_sym__] = ACTIONS(859), - [anon_sym_LBRACE_STAR] = ACTIONS(862), - [anon_sym_STAR] = ACTIONS(865), - [anon_sym_LBRACE_CARET] = ACTIONS(868), - [anon_sym_CARET] = ACTIONS(868), - [anon_sym_LBRACE_TILDE] = ACTIONS(871), - [anon_sym_TILDE] = ACTIONS(871), - [anon_sym_LBRACE_EQ] = ACTIONS(874), - [anon_sym_LBRACE_PLUS] = ACTIONS(877), - [anon_sym_LBRACE_DASH] = ACTIONS(880), - [anon_sym_BSLASH] = ACTIONS(883), - [sym_quotation_marks] = ACTIONS(886), - [sym_ellipsis] = ACTIONS(886), - [sym_em_dash] = ACTIONS(886), - [sym_en_dash] = ACTIONS(889), - [sym_backslash_escape] = ACTIONS(889), - [anon_sym_LT] = ACTIONS(892), - [sym_symbol] = ACTIONS(886), - [anon_sym_LBRACK_CARET] = ACTIONS(895), - [anon_sym_BANG_LBRACK] = ACTIONS(898), - [anon_sym_LBRACK] = ACTIONS(901), - [anon_sym_LBRACE2] = ACTIONS(889), - [anon_sym_DOLLAR] = ACTIONS(904), - [anon_sym_TODO] = ACTIONS(907), - [anon_sym_WIP] = ACTIONS(907), - [anon_sym_NOTE] = ACTIONS(910), - [anon_sym_INFO] = ACTIONS(910), - [anon_sym_XXX] = ACTIONS(910), - [sym_fixme] = ACTIONS(886), - [sym__whitespace1] = ACTIONS(913), - [sym__newline] = ACTIONS(916), - [aux_sym__text_token1] = ACTIONS(919), - [sym__verbatim_begin] = ACTIONS(922), - [sym_superscript_end] = ACTIONS(549), + [sym__inline] = STATE(1041), + [sym__element] = STATE(13), + [sym_emphasis] = STATE(141), + [sym_emphasis_begin] = STATE(1168), + [sym_strong] = STATE(141), + [sym_strong_begin] = STATE(1169), + [sym_superscript] = STATE(141), + [sym_superscript_begin] = STATE(1170), + [sym_subscript] = STATE(141), + [sym_subscript_begin] = STATE(1171), + [sym_highlighted] = STATE(141), + [sym_highlighted_begin] = STATE(1172), + [sym_insert] = STATE(141), + [sym_insert_begin] = STATE(1173), + [sym_delete] = STATE(141), + [sym_delete_begin] = STATE(1174), + [sym_hard_line_break] = STATE(141), + [sym__smart_punctuation] = STATE(141), + [sym_autolink] = STATE(141), + [sym_footnote_reference] = STATE(141), + [sym__image] = STATE(141), + [sym_full_reference_image] = STATE(141), + [sym_collapsed_reference_image] = STATE(141), + [sym_inline_image] = STATE(141), + [sym__image_description] = STATE(674), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(141), + [sym_full_reference_link] = STATE(141), + [sym_collapsed_reference_link] = STATE(141), + [sym_inline_link] = STATE(141), + [sym_link_text] = STATE(672), + [sym_span] = STATE(13), + [sym__bracketed_text] = STATE(655), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(141), + [sym_raw_inline] = STATE(141), + [sym_math] = STATE(141), + [sym_verbatim] = STATE(141), + [sym__todo_highlights] = STATE(141), + [sym_todo] = STATE(141), + [sym_note] = STATE(141), + [sym__symbol_fallback] = STATE(141), + [aux_sym__text] = STATE(128), + [aux_sym__inline_repeat1] = STATE(13), + [anon_sym_LBRACE_] = ACTIONS(281), + [anon_sym__] = ACTIONS(283), + [anon_sym_LBRACE_STAR] = ACTIONS(285), + [anon_sym_STAR] = ACTIONS(287), + [anon_sym_LBRACE_CARET] = ACTIONS(289), + [anon_sym_CARET] = ACTIONS(289), + [anon_sym_LBRACE_TILDE] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(291), + [anon_sym_LBRACE_EQ] = ACTIONS(293), + [anon_sym_LBRACE_PLUS] = ACTIONS(295), + [anon_sym_LBRACE_DASH] = ACTIONS(297), + [anon_sym_BSLASH] = ACTIONS(299), + [sym_quotation_marks] = ACTIONS(301), + [sym_ellipsis] = ACTIONS(301), + [sym_em_dash] = ACTIONS(301), + [sym_en_dash] = ACTIONS(303), + [sym_backslash_escape] = ACTIONS(303), + [anon_sym_LT] = ACTIONS(305), + [sym_symbol] = ACTIONS(301), + [anon_sym_LBRACK_CARET] = ACTIONS(307), + [anon_sym_BANG_LBRACK] = ACTIONS(309), + [anon_sym_LBRACK] = ACTIONS(311), + [anon_sym_DOLLAR] = ACTIONS(313), + [anon_sym_TODO] = ACTIONS(315), + [anon_sym_WIP] = ACTIONS(315), + [anon_sym_NOTE] = ACTIONS(317), + [anon_sym_INFO] = ACTIONS(317), + [anon_sym_XXX] = ACTIONS(317), + [sym_fixme] = ACTIONS(301), + [sym__whitespace1] = ACTIONS(319), + [sym__newline] = ACTIONS(321), + [aux_sym__text_token1] = ACTIONS(323), + [sym__verbatim_begin] = ACTIONS(325), }, [105] = { - [sym__inline] = STATE(895), - [sym__element] = STATE(66), - [sym_emphasis] = STATE(171), - [sym_emphasis_begin] = STATE(1116), - [sym_strong] = STATE(171), - [sym_strong_begin] = STATE(1117), - [sym_superscript] = STATE(171), - [sym_superscript_begin] = STATE(1118), - [sym_subscript] = STATE(171), - [sym_subscript_begin] = STATE(1119), - [sym_highlighted] = STATE(171), - [sym_highlighted_begin] = STATE(1120), - [sym_insert] = STATE(171), - [sym_insert_begin] = STATE(1121), - [sym_delete] = STATE(171), - [sym_delete_begin] = STATE(1122), - [sym_hard_line_break] = STATE(171), - [sym__smart_punctuation] = STATE(171), - [sym_autolink] = STATE(171), - [sym_footnote_reference] = STATE(171), - [sym__image] = STATE(171), - [sym_full_reference_image] = STATE(171), - [sym_collapsed_reference_image] = STATE(171), - [sym_inline_image] = STATE(171), - [sym__image_description] = STATE(674), - [sym__link] = STATE(171), - [sym_full_reference_link] = STATE(171), - [sym_collapsed_reference_link] = STATE(171), - [sym_inline_link] = STATE(171), - [sym_link_text] = STATE(675), - [sym__comment_with_spaces] = STATE(171), - [sym_span] = STATE(171), - [sym_raw_inline] = STATE(171), - [sym_math] = STATE(171), - [sym_verbatim] = STATE(171), - [sym__todo_highlights] = STATE(171), - [sym_todo] = STATE(171), - [sym_note] = STATE(171), - [sym__symbol_fallback] = STATE(171), - [aux_sym__text] = STATE(146), - [aux_sym__inline_repeat1] = STATE(66), - [anon_sym_LBRACE_] = ACTIONS(451), - [anon_sym__] = ACTIONS(453), - [anon_sym_LBRACE_STAR] = ACTIONS(455), - [anon_sym_STAR] = ACTIONS(457), - [anon_sym_LBRACE_CARET] = ACTIONS(459), - [anon_sym_CARET] = ACTIONS(459), - [anon_sym_LBRACE_TILDE] = ACTIONS(461), - [anon_sym_TILDE] = ACTIONS(461), - [anon_sym_LBRACE_EQ] = ACTIONS(463), - [anon_sym_LBRACE_PLUS] = ACTIONS(465), - [anon_sym_LBRACE_DASH] = ACTIONS(467), - [anon_sym_BSLASH] = ACTIONS(469), - [sym_quotation_marks] = ACTIONS(471), - [sym_ellipsis] = ACTIONS(471), - [sym_em_dash] = ACTIONS(471), - [sym_en_dash] = ACTIONS(473), - [sym_backslash_escape] = ACTIONS(473), - [anon_sym_LT] = ACTIONS(475), - [sym_symbol] = ACTIONS(471), - [anon_sym_LBRACK_CARET] = ACTIONS(477), - [anon_sym_BANG_LBRACK] = ACTIONS(479), - [anon_sym_LBRACK] = ACTIONS(481), - [anon_sym_LBRACE2] = ACTIONS(473), - [anon_sym_DOLLAR] = ACTIONS(483), - [anon_sym_TODO] = ACTIONS(485), - [anon_sym_WIP] = ACTIONS(485), - [anon_sym_NOTE] = ACTIONS(487), - [anon_sym_INFO] = ACTIONS(487), - [anon_sym_XXX] = ACTIONS(487), - [sym_fixme] = ACTIONS(471), - [sym__whitespace1] = ACTIONS(489), - [sym__newline] = ACTIONS(491), - [aux_sym__text_token1] = ACTIONS(493), - [sym__verbatim_begin] = ACTIONS(495), + [sym__element] = STATE(14), + [sym_emphasis] = STATE(140), + [sym_emphasis_begin] = STATE(1154), + [sym_strong] = STATE(140), + [sym_strong_begin] = STATE(1155), + [sym_superscript] = STATE(140), + [sym_superscript_begin] = STATE(1156), + [sym_subscript] = STATE(140), + [sym_subscript_begin] = STATE(1157), + [sym_highlighted] = STATE(140), + [sym_highlighted_begin] = STATE(1158), + [sym_insert] = STATE(140), + [sym_insert_begin] = STATE(1159), + [sym_delete] = STATE(140), + [sym_delete_begin] = STATE(1160), + [sym_hard_line_break] = STATE(140), + [sym__smart_punctuation] = STATE(140), + [sym_autolink] = STATE(140), + [sym_footnote_reference] = STATE(140), + [sym__image] = STATE(140), + [sym_full_reference_image] = STATE(140), + [sym_collapsed_reference_image] = STATE(140), + [sym_inline_image] = STATE(140), + [sym__image_description] = STATE(687), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(140), + [sym_full_reference_link] = STATE(140), + [sym_collapsed_reference_link] = STATE(140), + [sym_inline_link] = STATE(140), + [sym_link_text] = STATE(688), + [sym_span] = STATE(14), + [sym__bracketed_text] = STATE(654), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(140), + [sym_raw_inline] = STATE(140), + [sym_math] = STATE(140), + [sym_verbatim] = STATE(140), + [sym__todo_highlights] = STATE(140), + [sym_todo] = STATE(140), + [sym_note] = STATE(140), + [sym__symbol_fallback] = STATE(140), + [aux_sym__text] = STATE(131), + [aux_sym__inline_repeat1] = STATE(14), + [anon_sym_LBRACE_] = ACTIONS(327), + [anon_sym__] = ACTIONS(329), + [anon_sym_LBRACE_STAR] = ACTIONS(331), + [anon_sym_STAR] = ACTIONS(333), + [anon_sym_LBRACE_CARET] = ACTIONS(335), + [anon_sym_CARET] = ACTIONS(335), + [anon_sym_LBRACE_TILDE] = ACTIONS(337), + [anon_sym_TILDE] = ACTIONS(337), + [anon_sym_LBRACE_EQ] = ACTIONS(339), + [anon_sym_LBRACE_PLUS] = ACTIONS(341), + [anon_sym_LBRACE_DASH] = ACTIONS(343), + [anon_sym_BSLASH] = ACTIONS(345), + [sym_quotation_marks] = ACTIONS(347), + [sym_ellipsis] = ACTIONS(347), + [sym_em_dash] = ACTIONS(347), + [sym_en_dash] = ACTIONS(349), + [sym_backslash_escape] = ACTIONS(349), + [anon_sym_LT] = ACTIONS(351), + [sym_symbol] = ACTIONS(347), + [anon_sym_LBRACK_CARET] = ACTIONS(353), + [anon_sym_BANG_LBRACK] = ACTIONS(355), + [anon_sym_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [anon_sym_TODO] = ACTIONS(361), + [anon_sym_WIP] = ACTIONS(361), + [anon_sym_NOTE] = ACTIONS(363), + [anon_sym_INFO] = ACTIONS(363), + [anon_sym_XXX] = ACTIONS(363), + [sym_fixme] = ACTIONS(347), + [sym__whitespace1] = ACTIONS(365), + [sym__newline] = ACTIONS(943), + [aux_sym__text_token1] = ACTIONS(369), + [sym__verbatim_begin] = ACTIONS(371), + [sym_superscript_end] = ACTIONS(467), }, [106] = { - [sym__element] = STATE(78), - [sym_emphasis] = STATE(211), - [sym_emphasis_begin] = STATE(1060), - [sym_strong] = STATE(211), - [sym_strong_begin] = STATE(1061), - [sym_superscript] = STATE(211), - [sym_superscript_begin] = STATE(1062), - [sym_subscript] = STATE(211), - [sym_subscript_begin] = STATE(1063), - [sym_highlighted] = STATE(211), - [sym_highlighted_begin] = STATE(1064), - [sym_insert] = STATE(211), - [sym_insert_begin] = STATE(1065), - [sym_delete] = STATE(211), - [sym_delete_begin] = STATE(1066), - [sym_hard_line_break] = STATE(211), - [sym__smart_punctuation] = STATE(211), - [sym_autolink] = STATE(211), - [sym_footnote_reference] = STATE(211), - [sym__image] = STATE(211), - [sym_full_reference_image] = STATE(211), - [sym_collapsed_reference_image] = STATE(211), - [sym_inline_image] = STATE(211), - [sym__image_description] = STATE(671), - [sym__link] = STATE(211), - [sym_full_reference_link] = STATE(211), - [sym_collapsed_reference_link] = STATE(211), - [sym_inline_link] = STATE(211), - [sym_link_text] = STATE(676), - [sym__comment_with_spaces] = STATE(211), - [sym_span] = STATE(211), - [sym_raw_inline] = STATE(211), - [sym_math] = STATE(211), - [sym_verbatim] = STATE(211), - [sym__todo_highlights] = STATE(211), - [sym_todo] = STATE(211), - [sym_note] = STATE(211), - [sym__symbol_fallback] = STATE(211), - [aux_sym__text] = STATE(139), - [aux_sym__inline_repeat1] = STATE(78), - [anon_sym_LBRACE_] = ACTIONS(925), - [anon_sym__] = ACTIONS(927), - [anon_sym_LBRACE_STAR] = ACTIONS(929), - [anon_sym_STAR] = ACTIONS(931), - [anon_sym_LBRACE_CARET] = ACTIONS(933), - [anon_sym_CARET] = ACTIONS(933), - [anon_sym_LBRACE_TILDE] = ACTIONS(935), - [anon_sym_TILDE] = ACTIONS(935), - [anon_sym_LBRACE_EQ] = ACTIONS(937), - [anon_sym_LBRACE_PLUS] = ACTIONS(939), - [anon_sym_LBRACE_DASH] = ACTIONS(941), - [anon_sym_BSLASH] = ACTIONS(943), - [sym_quotation_marks] = ACTIONS(945), - [sym_ellipsis] = ACTIONS(945), - [sym_em_dash] = ACTIONS(945), - [sym_en_dash] = ACTIONS(947), - [sym_backslash_escape] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(949), - [sym_symbol] = ACTIONS(945), - [anon_sym_LBRACK_CARET] = ACTIONS(951), - [anon_sym_RBRACK] = ACTIONS(497), - [anon_sym_BANG_LBRACK] = ACTIONS(953), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_LBRACE2] = ACTIONS(947), - [anon_sym_DOLLAR] = ACTIONS(957), - [anon_sym_TODO] = ACTIONS(959), - [anon_sym_WIP] = ACTIONS(959), - [anon_sym_NOTE] = ACTIONS(961), - [anon_sym_INFO] = ACTIONS(961), - [anon_sym_XXX] = ACTIONS(961), - [sym_fixme] = ACTIONS(945), - [sym__whitespace1] = ACTIONS(963), - [sym__newline] = ACTIONS(965), - [aux_sym__text_token1] = ACTIONS(967), - [sym__verbatim_begin] = ACTIONS(969), + [sym__inline] = STATE(970), + [sym__element] = STATE(65), + [sym_emphasis] = STATE(133), + [sym_emphasis_begin] = STATE(1189), + [sym_strong] = STATE(133), + [sym_strong_begin] = STATE(1190), + [sym_superscript] = STATE(133), + [sym_superscript_begin] = STATE(1191), + [sym_subscript] = STATE(133), + [sym_subscript_begin] = STATE(1192), + [sym_highlighted] = STATE(133), + [sym_highlighted_begin] = STATE(1193), + [sym_insert] = STATE(133), + [sym_insert_begin] = STATE(1194), + [sym_delete] = STATE(133), + [sym_delete_begin] = STATE(1195), + [sym_hard_line_break] = STATE(133), + [sym__smart_punctuation] = STATE(133), + [sym_autolink] = STATE(133), + [sym_footnote_reference] = STATE(133), + [sym__image] = STATE(133), + [sym_full_reference_image] = STATE(133), + [sym_collapsed_reference_image] = STATE(133), + [sym_inline_image] = STATE(133), + [sym__image_description] = STATE(670), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(133), + [sym_full_reference_link] = STATE(133), + [sym_collapsed_reference_link] = STATE(133), + [sym_inline_link] = STATE(133), + [sym_link_text] = STATE(663), + [sym_span] = STATE(65), + [sym__bracketed_text] = STATE(662), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(133), + [sym_raw_inline] = STATE(133), + [sym_math] = STATE(133), + [sym_verbatim] = STATE(133), + [sym__todo_highlights] = STATE(133), + [sym_todo] = STATE(133), + [sym_note] = STATE(133), + [sym__symbol_fallback] = STATE(133), + [aux_sym__text] = STATE(123), + [aux_sym__inline_repeat1] = STATE(65), + [anon_sym_LBRACE_] = ACTIONS(143), + [anon_sym__] = ACTIONS(145), + [anon_sym_LBRACE_STAR] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(149), + [anon_sym_LBRACE_CARET] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(151), + [anon_sym_LBRACE_TILDE] = ACTIONS(153), + [anon_sym_TILDE] = ACTIONS(153), + [anon_sym_LBRACE_EQ] = ACTIONS(155), + [anon_sym_LBRACE_PLUS] = ACTIONS(157), + [anon_sym_LBRACE_DASH] = ACTIONS(159), + [anon_sym_BSLASH] = ACTIONS(161), + [sym_quotation_marks] = ACTIONS(163), + [sym_ellipsis] = ACTIONS(163), + [sym_em_dash] = ACTIONS(163), + [sym_en_dash] = ACTIONS(165), + [sym_backslash_escape] = ACTIONS(165), + [anon_sym_LT] = ACTIONS(167), + [sym_symbol] = ACTIONS(163), + [anon_sym_LBRACK_CARET] = ACTIONS(169), + [anon_sym_BANG_LBRACK] = ACTIONS(171), + [anon_sym_LBRACK] = ACTIONS(173), + [anon_sym_DOLLAR] = ACTIONS(175), + [anon_sym_TODO] = ACTIONS(177), + [anon_sym_WIP] = ACTIONS(177), + [anon_sym_NOTE] = ACTIONS(179), + [anon_sym_INFO] = ACTIONS(179), + [anon_sym_XXX] = ACTIONS(179), + [sym_fixme] = ACTIONS(163), + [sym__whitespace1] = ACTIONS(181), + [sym__newline] = ACTIONS(183), + [aux_sym__text_token1] = ACTIONS(185), + [sym__verbatim_begin] = ACTIONS(187), }, [107] = { - [sym__inline_without_trailing_space] = STATE(951), - [sym__element] = STATE(603), - [sym_emphasis] = STATE(177), - [sym_emphasis_begin] = STATE(1067), - [sym_strong] = STATE(177), - [sym_strong_begin] = STATE(1068), - [sym_superscript] = STATE(177), - [sym_superscript_begin] = STATE(1069), - [sym_subscript] = STATE(177), - [sym_subscript_begin] = STATE(1070), - [sym_highlighted] = STATE(177), - [sym_highlighted_begin] = STATE(1071), - [sym_insert] = STATE(177), - [sym_insert_begin] = STATE(1072), - [sym_delete] = STATE(177), - [sym_delete_begin] = STATE(1073), - [sym_hard_line_break] = STATE(177), - [sym__smart_punctuation] = STATE(177), - [sym_autolink] = STATE(177), - [sym_footnote_reference] = STATE(177), - [sym__image] = STATE(177), - [sym_full_reference_image] = STATE(177), - [sym_collapsed_reference_image] = STATE(177), - [sym_inline_image] = STATE(177), - [sym__image_description] = STATE(681), - [sym__link] = STATE(177), - [sym_full_reference_link] = STATE(177), - [sym_collapsed_reference_link] = STATE(177), - [sym_inline_link] = STATE(177), - [sym_link_text] = STATE(668), - [sym__comment_with_spaces] = STATE(177), - [sym_span] = STATE(177), - [sym_raw_inline] = STATE(177), - [sym_math] = STATE(177), - [sym_verbatim] = STATE(177), - [sym__todo_highlights] = STATE(177), - [sym_todo] = STATE(177), - [sym_note] = STATE(177), - [sym__symbol_fallback] = STATE(177), - [aux_sym__text] = STATE(132), - [aux_sym__inline_repeat1] = STATE(128), - [anon_sym_LBRACE_] = ACTIONS(405), - [anon_sym__] = ACTIONS(407), - [anon_sym_LBRACE_STAR] = ACTIONS(409), - [anon_sym_STAR] = ACTIONS(411), - [anon_sym_LBRACE_CARET] = ACTIONS(413), - [anon_sym_CARET] = ACTIONS(413), - [anon_sym_LBRACE_TILDE] = ACTIONS(415), - [anon_sym_TILDE] = ACTIONS(415), - [anon_sym_LBRACE_EQ] = ACTIONS(417), - [anon_sym_LBRACE_PLUS] = ACTIONS(419), - [anon_sym_LBRACE_DASH] = ACTIONS(421), - [anon_sym_BSLASH] = ACTIONS(423), - [sym_quotation_marks] = ACTIONS(425), - [sym_ellipsis] = ACTIONS(425), - [sym_em_dash] = ACTIONS(425), - [sym_en_dash] = ACTIONS(427), - [sym_backslash_escape] = ACTIONS(427), - [anon_sym_LT] = ACTIONS(429), - [sym_symbol] = ACTIONS(425), - [anon_sym_LBRACK_CARET] = ACTIONS(431), - [anon_sym_BANG_LBRACK] = ACTIONS(433), - [anon_sym_LBRACK] = ACTIONS(435), - [anon_sym_LBRACE2] = ACTIONS(427), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_TODO] = ACTIONS(439), - [anon_sym_WIP] = ACTIONS(439), - [anon_sym_NOTE] = ACTIONS(441), - [anon_sym_INFO] = ACTIONS(441), - [anon_sym_XXX] = ACTIONS(441), - [sym_fixme] = ACTIONS(425), - [sym__whitespace1] = ACTIONS(443), - [sym__newline] = ACTIONS(445), - [aux_sym__text_token1] = ACTIONS(447), - [sym__verbatim_begin] = ACTIONS(449), + [sym__inline] = STATE(1036), + [sym__element] = STATE(21), + [sym_emphasis] = STATE(134), + [sym_emphasis_begin] = STATE(1182), + [sym_strong] = STATE(134), + [sym_strong_begin] = STATE(1183), + [sym_superscript] = STATE(134), + [sym_superscript_begin] = STATE(1184), + [sym_subscript] = STATE(134), + [sym_subscript_begin] = STATE(1185), + [sym_highlighted] = STATE(134), + [sym_highlighted_begin] = STATE(1186), + [sym_insert] = STATE(134), + [sym_insert_begin] = STATE(1187), + [sym_delete] = STATE(134), + [sym_delete_begin] = STATE(1188), + [sym_hard_line_break] = STATE(134), + [sym__smart_punctuation] = STATE(134), + [sym_autolink] = STATE(134), + [sym_footnote_reference] = STATE(134), + [sym__image] = STATE(134), + [sym_full_reference_image] = STATE(134), + [sym_collapsed_reference_image] = STATE(134), + [sym_inline_image] = STATE(134), + [sym__image_description] = STATE(677), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(134), + [sym_full_reference_link] = STATE(134), + [sym_collapsed_reference_link] = STATE(134), + [sym_inline_link] = STATE(134), + [sym_link_text] = STATE(675), + [sym_span] = STATE(21), + [sym__bracketed_text] = STATE(660), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(134), + [sym_raw_inline] = STATE(134), + [sym_math] = STATE(134), + [sym_verbatim] = STATE(134), + [sym__todo_highlights] = STATE(134), + [sym_todo] = STATE(134), + [sym_note] = STATE(134), + [sym__symbol_fallback] = STATE(134), + [aux_sym__text] = STATE(127), + [aux_sym__inline_repeat1] = STATE(21), + [anon_sym_LBRACE_] = ACTIONS(189), + [anon_sym__] = ACTIONS(191), + [anon_sym_LBRACE_STAR] = ACTIONS(193), + [anon_sym_STAR] = ACTIONS(195), + [anon_sym_LBRACE_CARET] = ACTIONS(197), + [anon_sym_CARET] = ACTIONS(197), + [anon_sym_LBRACE_TILDE] = ACTIONS(199), + [anon_sym_TILDE] = ACTIONS(199), + [anon_sym_LBRACE_EQ] = ACTIONS(201), + [anon_sym_LBRACE_PLUS] = ACTIONS(203), + [anon_sym_LBRACE_DASH] = ACTIONS(205), + [anon_sym_BSLASH] = ACTIONS(207), + [sym_quotation_marks] = ACTIONS(209), + [sym_ellipsis] = ACTIONS(209), + [sym_em_dash] = ACTIONS(209), + [sym_en_dash] = ACTIONS(211), + [sym_backslash_escape] = ACTIONS(211), + [anon_sym_LT] = ACTIONS(213), + [sym_symbol] = ACTIONS(209), + [anon_sym_LBRACK_CARET] = ACTIONS(215), + [anon_sym_BANG_LBRACK] = ACTIONS(217), + [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_DOLLAR] = ACTIONS(221), + [anon_sym_TODO] = ACTIONS(223), + [anon_sym_WIP] = ACTIONS(223), + [anon_sym_NOTE] = ACTIONS(225), + [anon_sym_INFO] = ACTIONS(225), + [anon_sym_XXX] = ACTIONS(225), + [sym_fixme] = ACTIONS(209), + [sym__whitespace1] = ACTIONS(227), + [sym__newline] = ACTIONS(229), + [aux_sym__text_token1] = ACTIONS(231), + [sym__verbatim_begin] = ACTIONS(233), }, [108] = { - [sym__inline] = STATE(891), - [sym__element] = STATE(93), - [sym_emphasis] = STATE(197), - [sym_emphasis_begin] = STATE(1088), - [sym_strong] = STATE(197), - [sym_strong_begin] = STATE(1089), - [sym_superscript] = STATE(197), - [sym_superscript_begin] = STATE(1090), - [sym_subscript] = STATE(197), - [sym_subscript_begin] = STATE(1091), - [sym_highlighted] = STATE(197), - [sym_highlighted_begin] = STATE(1092), - [sym_insert] = STATE(197), - [sym_insert_begin] = STATE(1093), - [sym_delete] = STATE(197), - [sym_delete_begin] = STATE(1094), - [sym_hard_line_break] = STATE(197), - [sym__smart_punctuation] = STATE(197), - [sym_autolink] = STATE(197), - [sym_footnote_reference] = STATE(197), - [sym__image] = STATE(197), - [sym_full_reference_image] = STATE(197), - [sym_collapsed_reference_image] = STATE(197), - [sym_inline_image] = STATE(197), - [sym__image_description] = STATE(697), - [sym__link] = STATE(197), - [sym_full_reference_link] = STATE(197), - [sym_collapsed_reference_link] = STATE(197), - [sym_inline_link] = STATE(197), - [sym_link_text] = STATE(682), - [sym__comment_with_spaces] = STATE(197), - [sym_span] = STATE(197), - [sym_raw_inline] = STATE(197), - [sym_math] = STATE(197), - [sym_verbatim] = STATE(197), - [sym__todo_highlights] = STATE(197), - [sym_todo] = STATE(197), - [sym_note] = STATE(197), - [sym__symbol_fallback] = STATE(197), - [aux_sym__text] = STATE(134), - [aux_sym__inline_repeat1] = STATE(93), - [anon_sym_LBRACE_] = ACTIONS(313), - [anon_sym__] = ACTIONS(315), - [anon_sym_LBRACE_STAR] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_LBRACE_CARET] = ACTIONS(321), - [anon_sym_CARET] = ACTIONS(321), - [anon_sym_LBRACE_TILDE] = ACTIONS(323), - [anon_sym_TILDE] = ACTIONS(323), - [anon_sym_LBRACE_EQ] = ACTIONS(325), - [anon_sym_LBRACE_PLUS] = ACTIONS(327), - [anon_sym_LBRACE_DASH] = ACTIONS(329), - [anon_sym_BSLASH] = ACTIONS(331), - [sym_quotation_marks] = ACTIONS(333), - [sym_ellipsis] = ACTIONS(333), - [sym_em_dash] = ACTIONS(333), - [sym_en_dash] = ACTIONS(335), - [sym_backslash_escape] = ACTIONS(335), - [anon_sym_LT] = ACTIONS(337), - [sym_symbol] = ACTIONS(333), - [anon_sym_LBRACK_CARET] = ACTIONS(339), - [anon_sym_BANG_LBRACK] = ACTIONS(341), - [anon_sym_LBRACK] = ACTIONS(343), - [anon_sym_LBRACE2] = ACTIONS(335), - [anon_sym_DOLLAR] = ACTIONS(345), - [anon_sym_TODO] = ACTIONS(347), - [anon_sym_WIP] = ACTIONS(347), - [anon_sym_NOTE] = ACTIONS(349), - [anon_sym_INFO] = ACTIONS(349), - [anon_sym_XXX] = ACTIONS(349), - [sym_fixme] = ACTIONS(333), - [sym__whitespace1] = ACTIONS(351), - [sym__newline] = ACTIONS(353), - [aux_sym__text_token1] = ACTIONS(355), - [sym__verbatim_begin] = ACTIONS(357), + [sym__element] = STATE(108), + [sym_emphasis] = STATE(141), + [sym_emphasis_begin] = STATE(1168), + [sym_strong] = STATE(141), + [sym_strong_begin] = STATE(1169), + [sym_superscript] = STATE(141), + [sym_superscript_begin] = STATE(1170), + [sym_subscript] = STATE(141), + [sym_subscript_begin] = STATE(1171), + [sym_highlighted] = STATE(141), + [sym_highlighted_begin] = STATE(1172), + [sym_insert] = STATE(141), + [sym_insert_begin] = STATE(1173), + [sym_delete] = STATE(141), + [sym_delete_begin] = STATE(1174), + [sym_hard_line_break] = STATE(141), + [sym__smart_punctuation] = STATE(141), + [sym_autolink] = STATE(141), + [sym_footnote_reference] = STATE(141), + [sym__image] = STATE(141), + [sym_full_reference_image] = STATE(141), + [sym_collapsed_reference_image] = STATE(141), + [sym_inline_image] = STATE(141), + [sym__image_description] = STATE(674), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(141), + [sym_full_reference_link] = STATE(141), + [sym_collapsed_reference_link] = STATE(141), + [sym_inline_link] = STATE(141), + [sym_link_text] = STATE(672), + [sym_span] = STATE(108), + [sym__bracketed_text] = STATE(655), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(141), + [sym_raw_inline] = STATE(141), + [sym_math] = STATE(141), + [sym_verbatim] = STATE(141), + [sym__todo_highlights] = STATE(141), + [sym_todo] = STATE(141), + [sym_note] = STATE(141), + [sym__symbol_fallback] = STATE(141), + [aux_sym__text] = STATE(128), + [aux_sym__inline_repeat1] = STATE(108), + [anon_sym_LBRACE_] = ACTIONS(945), + [anon_sym__] = ACTIONS(948), + [anon_sym_LBRACE_STAR] = ACTIONS(951), + [anon_sym_STAR] = ACTIONS(954), + [anon_sym_LBRACE_CARET] = ACTIONS(957), + [anon_sym_CARET] = ACTIONS(957), + [anon_sym_LBRACE_TILDE] = ACTIONS(960), + [anon_sym_TILDE] = ACTIONS(960), + [anon_sym_LBRACE_EQ] = ACTIONS(963), + [anon_sym_LBRACE_PLUS] = ACTIONS(966), + [anon_sym_LBRACE_DASH] = ACTIONS(969), + [anon_sym_BSLASH] = ACTIONS(972), + [sym_quotation_marks] = ACTIONS(975), + [sym_ellipsis] = ACTIONS(975), + [sym_em_dash] = ACTIONS(975), + [sym_en_dash] = ACTIONS(978), + [sym_backslash_escape] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(981), + [sym_symbol] = ACTIONS(975), + [anon_sym_LBRACK_CARET] = ACTIONS(984), + [anon_sym_BANG_LBRACK] = ACTIONS(987), + [anon_sym_LBRACK] = ACTIONS(990), + [anon_sym_DOLLAR] = ACTIONS(993), + [anon_sym_TODO] = ACTIONS(996), + [anon_sym_WIP] = ACTIONS(996), + [anon_sym_NOTE] = ACTIONS(999), + [anon_sym_INFO] = ACTIONS(999), + [anon_sym_XXX] = ACTIONS(999), + [sym_fixme] = ACTIONS(975), + [sym__whitespace1] = ACTIONS(1002), + [sym__newline] = ACTIONS(1005), + [aux_sym__text_token1] = ACTIONS(1008), + [sym__verbatim_begin] = ACTIONS(1011), + [sym_highlighted_end] = ACTIONS(538), }, [109] = { - [sym__inline] = STATE(890), - [sym__element] = STATE(79), - [sym_emphasis] = STATE(161), - [sym_emphasis_begin] = STATE(1081), - [sym_strong] = STATE(161), - [sym_strong_begin] = STATE(1082), - [sym_superscript] = STATE(161), - [sym_superscript_begin] = STATE(1083), - [sym_subscript] = STATE(161), - [sym_subscript_begin] = STATE(1084), - [sym_highlighted] = STATE(161), - [sym_highlighted_begin] = STATE(1085), - [sym_insert] = STATE(161), - [sym_insert_begin] = STATE(1086), - [sym_delete] = STATE(161), - [sym_delete_begin] = STATE(1087), - [sym_hard_line_break] = STATE(161), - [sym__smart_punctuation] = STATE(161), - [sym_autolink] = STATE(161), - [sym_footnote_reference] = STATE(161), - [sym__image] = STATE(161), - [sym_full_reference_image] = STATE(161), - [sym_collapsed_reference_image] = STATE(161), - [sym_inline_image] = STATE(161), - [sym__image_description] = STATE(692), - [sym__link] = STATE(161), - [sym_full_reference_link] = STATE(161), - [sym_collapsed_reference_link] = STATE(161), - [sym_inline_link] = STATE(161), - [sym_link_text] = STATE(687), - [sym__comment_with_spaces] = STATE(161), - [sym_span] = STATE(161), - [sym_raw_inline] = STATE(161), - [sym_math] = STATE(161), - [sym_verbatim] = STATE(161), - [sym__todo_highlights] = STATE(161), - [sym_todo] = STATE(161), - [sym_note] = STATE(161), - [sym__symbol_fallback] = STATE(161), - [aux_sym__text] = STATE(149), - [aux_sym__inline_repeat1] = STATE(79), - [anon_sym_LBRACE_] = ACTIONS(359), - [anon_sym__] = ACTIONS(361), - [anon_sym_LBRACE_STAR] = ACTIONS(363), - [anon_sym_STAR] = ACTIONS(365), - [anon_sym_LBRACE_CARET] = ACTIONS(367), - [anon_sym_CARET] = ACTIONS(367), - [anon_sym_LBRACE_TILDE] = ACTIONS(369), - [anon_sym_TILDE] = ACTIONS(369), - [anon_sym_LBRACE_EQ] = ACTIONS(371), - [anon_sym_LBRACE_PLUS] = ACTIONS(373), - [anon_sym_LBRACE_DASH] = ACTIONS(375), - [anon_sym_BSLASH] = ACTIONS(377), - [sym_quotation_marks] = ACTIONS(379), - [sym_ellipsis] = ACTIONS(379), - [sym_em_dash] = ACTIONS(379), - [sym_en_dash] = ACTIONS(381), - [sym_backslash_escape] = ACTIONS(381), - [anon_sym_LT] = ACTIONS(383), - [sym_symbol] = ACTIONS(379), - [anon_sym_LBRACK_CARET] = ACTIONS(385), - [anon_sym_BANG_LBRACK] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(389), - [anon_sym_LBRACE2] = ACTIONS(381), - [anon_sym_DOLLAR] = ACTIONS(391), - [anon_sym_TODO] = ACTIONS(393), - [anon_sym_WIP] = ACTIONS(393), - [anon_sym_NOTE] = ACTIONS(395), - [anon_sym_INFO] = ACTIONS(395), - [anon_sym_XXX] = ACTIONS(395), - [sym_fixme] = ACTIONS(379), - [sym__whitespace1] = ACTIONS(397), - [sym__newline] = ACTIONS(399), - [aux_sym__text_token1] = ACTIONS(401), - [sym__verbatim_begin] = ACTIONS(403), + [sym__inline] = STATE(1039), + [sym__element] = STATE(103), + [sym_emphasis] = STATE(139), + [sym_emphasis_begin] = STATE(1175), + [sym_strong] = STATE(139), + [sym_strong_begin] = STATE(1176), + [sym_superscript] = STATE(139), + [sym_superscript_begin] = STATE(1177), + [sym_subscript] = STATE(139), + [sym_subscript_begin] = STATE(1178), + [sym_highlighted] = STATE(139), + [sym_highlighted_begin] = STATE(1179), + [sym_insert] = STATE(139), + [sym_insert_begin] = STATE(1180), + [sym_delete] = STATE(139), + [sym_delete_begin] = STATE(1181), + [sym_hard_line_break] = STATE(139), + [sym__smart_punctuation] = STATE(139), + [sym_autolink] = STATE(139), + [sym_footnote_reference] = STATE(139), + [sym__image] = STATE(139), + [sym_full_reference_image] = STATE(139), + [sym_collapsed_reference_image] = STATE(139), + [sym_inline_image] = STATE(139), + [sym__image_description] = STATE(682), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(139), + [sym_full_reference_link] = STATE(139), + [sym_collapsed_reference_link] = STATE(139), + [sym_inline_link] = STATE(139), + [sym_link_text] = STATE(681), + [sym_span] = STATE(103), + [sym__bracketed_text] = STATE(656), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(139), + [sym_raw_inline] = STATE(139), + [sym_math] = STATE(139), + [sym_verbatim] = STATE(139), + [sym__todo_highlights] = STATE(139), + [sym_todo] = STATE(139), + [sym_note] = STATE(139), + [sym__symbol_fallback] = STATE(139), + [aux_sym__text] = STATE(129), + [aux_sym__inline_repeat1] = STATE(103), + [anon_sym_LBRACE_] = ACTIONS(235), + [anon_sym__] = ACTIONS(237), + [anon_sym_LBRACE_STAR] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(241), + [anon_sym_LBRACE_CARET] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(243), + [anon_sym_LBRACE_TILDE] = ACTIONS(245), + [anon_sym_TILDE] = ACTIONS(245), + [anon_sym_LBRACE_EQ] = ACTIONS(247), + [anon_sym_LBRACE_PLUS] = ACTIONS(249), + [anon_sym_LBRACE_DASH] = ACTIONS(251), + [anon_sym_BSLASH] = ACTIONS(253), + [sym_quotation_marks] = ACTIONS(255), + [sym_ellipsis] = ACTIONS(255), + [sym_em_dash] = ACTIONS(255), + [sym_en_dash] = ACTIONS(257), + [sym_backslash_escape] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(259), + [sym_symbol] = ACTIONS(255), + [anon_sym_LBRACK_CARET] = ACTIONS(261), + [anon_sym_BANG_LBRACK] = ACTIONS(263), + [anon_sym_LBRACK] = ACTIONS(265), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_TODO] = ACTIONS(269), + [anon_sym_WIP] = ACTIONS(269), + [anon_sym_NOTE] = ACTIONS(271), + [anon_sym_INFO] = ACTIONS(271), + [anon_sym_XXX] = ACTIONS(271), + [sym_fixme] = ACTIONS(255), + [sym__whitespace1] = ACTIONS(273), + [sym__newline] = ACTIONS(275), + [aux_sym__text_token1] = ACTIONS(277), + [sym__verbatim_begin] = ACTIONS(279), }, [110] = { - [sym__element] = STATE(110), - [sym_emphasis] = STATE(192), - [sym_emphasis_begin] = STATE(1095), - [sym_strong] = STATE(192), - [sym_strong_begin] = STATE(1096), - [sym_superscript] = STATE(192), - [sym_superscript_begin] = STATE(1097), - [sym_subscript] = STATE(192), - [sym_subscript_begin] = STATE(1098), - [sym_highlighted] = STATE(192), - [sym_highlighted_begin] = STATE(1099), - [sym_insert] = STATE(192), - [sym_insert_begin] = STATE(1100), - [sym_delete] = STATE(192), - [sym_delete_begin] = STATE(1101), - [sym_hard_line_break] = STATE(192), - [sym__smart_punctuation] = STATE(192), - [sym_autolink] = STATE(192), - [sym_footnote_reference] = STATE(192), - [sym__image] = STATE(192), - [sym_full_reference_image] = STATE(192), - [sym_collapsed_reference_image] = STATE(192), - [sym_inline_image] = STATE(192), - [sym__image_description] = STATE(684), - [sym__link] = STATE(192), - [sym_full_reference_link] = STATE(192), - [sym_collapsed_reference_link] = STATE(192), - [sym_inline_link] = STATE(192), - [sym_link_text] = STATE(683), - [sym__comment_with_spaces] = STATE(192), - [sym_span] = STATE(192), - [sym_raw_inline] = STATE(192), - [sym_math] = STATE(192), - [sym_verbatim] = STATE(192), - [sym__todo_highlights] = STATE(192), - [sym_todo] = STATE(192), - [sym_note] = STATE(192), - [sym__symbol_fallback] = STATE(192), - [aux_sym__text] = STATE(141), - [aux_sym__inline_repeat1] = STATE(110), - [anon_sym_LBRACE_] = ACTIONS(971), - [anon_sym__] = ACTIONS(974), - [anon_sym_LBRACE_STAR] = ACTIONS(977), - [anon_sym_STAR] = ACTIONS(980), - [anon_sym_LBRACE_CARET] = ACTIONS(983), - [anon_sym_CARET] = ACTIONS(983), - [anon_sym_LBRACE_TILDE] = ACTIONS(986), - [anon_sym_TILDE] = ACTIONS(986), - [anon_sym_LBRACE_EQ] = ACTIONS(989), - [anon_sym_LBRACE_PLUS] = ACTIONS(992), - [anon_sym_LBRACE_DASH] = ACTIONS(995), - [anon_sym_BSLASH] = ACTIONS(998), - [sym_quotation_marks] = ACTIONS(1001), - [sym_ellipsis] = ACTIONS(1001), - [sym_em_dash] = ACTIONS(1001), - [sym_en_dash] = ACTIONS(1004), - [sym_backslash_escape] = ACTIONS(1004), - [anon_sym_LT] = ACTIONS(1007), - [sym_symbol] = ACTIONS(1001), - [anon_sym_LBRACK_CARET] = ACTIONS(1010), - [anon_sym_BANG_LBRACK] = ACTIONS(1013), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_LBRACE2] = ACTIONS(1004), - [anon_sym_DOLLAR] = ACTIONS(1019), - [anon_sym_TODO] = ACTIONS(1022), - [anon_sym_WIP] = ACTIONS(1022), - [anon_sym_NOTE] = ACTIONS(1025), - [anon_sym_INFO] = ACTIONS(1025), - [anon_sym_XXX] = ACTIONS(1025), - [sym_fixme] = ACTIONS(1001), - [sym__whitespace1] = ACTIONS(1028), - [sym__newline] = ACTIONS(1031), - [aux_sym__text_token1] = ACTIONS(1034), - [sym__verbatim_begin] = ACTIONS(1037), - [sym_highlighted_end] = ACTIONS(549), + [sym__element] = STATE(112), + [sym_emphasis] = STATE(135), + [sym_emphasis_begin] = STATE(1203), + [sym_strong] = STATE(135), + [sym_strong_begin] = STATE(1204), + [sym_superscript] = STATE(135), + [sym_superscript_begin] = STATE(1205), + [sym_subscript] = STATE(135), + [sym_subscript_begin] = STATE(1206), + [sym_highlighted] = STATE(135), + [sym_highlighted_begin] = STATE(1207), + [sym_insert] = STATE(135), + [sym_insert_begin] = STATE(1208), + [sym_delete] = STATE(135), + [sym_delete_begin] = STATE(1209), + [sym_hard_line_break] = STATE(135), + [sym__smart_punctuation] = STATE(135), + [sym_autolink] = STATE(135), + [sym_footnote_reference] = STATE(135), + [sym__image] = STATE(135), + [sym_full_reference_image] = STATE(135), + [sym_collapsed_reference_image] = STATE(135), + [sym_inline_image] = STATE(135), + [sym__image_description] = STATE(679), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(135), + [sym_full_reference_link] = STATE(135), + [sym_collapsed_reference_link] = STATE(135), + [sym_inline_link] = STATE(135), + [sym_link_text] = STATE(664), + [sym_span] = STATE(112), + [sym__bracketed_text] = STATE(659), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(135), + [sym_raw_inline] = STATE(135), + [sym_math] = STATE(135), + [sym_verbatim] = STATE(135), + [sym__todo_highlights] = STATE(135), + [sym_todo] = STATE(135), + [sym_note] = STATE(135), + [sym__symbol_fallback] = STATE(135), + [aux_sym__text] = STATE(122), + [aux_sym__inline_repeat1] = STATE(112), + [anon_sym_LBRACE_] = ACTIONS(753), + [anon_sym__] = ACTIONS(755), + [anon_sym_LBRACE_STAR] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_LBRACE_CARET] = ACTIONS(761), + [anon_sym_CARET] = ACTIONS(761), + [anon_sym_LBRACE_TILDE] = ACTIONS(763), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_LBRACE_EQ] = ACTIONS(765), + [anon_sym_LBRACE_PLUS] = ACTIONS(767), + [anon_sym_LBRACE_DASH] = ACTIONS(769), + [anon_sym_BSLASH] = ACTIONS(771), + [sym_quotation_marks] = ACTIONS(773), + [sym_ellipsis] = ACTIONS(773), + [sym_em_dash] = ACTIONS(773), + [sym_en_dash] = ACTIONS(775), + [sym_backslash_escape] = ACTIONS(775), + [anon_sym_LT] = ACTIONS(777), + [sym_symbol] = ACTIONS(773), + [anon_sym_LBRACK_CARET] = ACTIONS(779), + [anon_sym_BANG_LBRACK] = ACTIONS(781), + [anon_sym_LBRACK] = ACTIONS(783), + [anon_sym_DOLLAR] = ACTIONS(785), + [anon_sym_TODO] = ACTIONS(787), + [anon_sym_WIP] = ACTIONS(787), + [anon_sym_NOTE] = ACTIONS(789), + [anon_sym_INFO] = ACTIONS(789), + [anon_sym_XXX] = ACTIONS(789), + [sym_fixme] = ACTIONS(773), + [sym__whitespace1] = ACTIONS(791), + [sym__newline] = ACTIONS(1014), + [aux_sym__text_token1] = ACTIONS(795), + [sym__verbatim_begin] = ACTIONS(797), + [sym__bracketed_text_end] = ACTIONS(467), }, [111] = { - [sym__element] = STATE(96), - [sym_emphasis] = STATE(186), - [sym_emphasis_begin] = STATE(1102), - [sym_strong] = STATE(186), - [sym_strong_begin] = STATE(1103), - [sym_superscript] = STATE(186), - [sym_superscript_begin] = STATE(1104), - [sym_subscript] = STATE(186), - [sym_subscript_begin] = STATE(1105), - [sym_highlighted] = STATE(186), - [sym_highlighted_begin] = STATE(1106), - [sym_insert] = STATE(186), - [sym_insert_begin] = STATE(1107), - [sym_delete] = STATE(186), - [sym_delete_begin] = STATE(1108), - [sym_hard_line_break] = STATE(186), - [sym__smart_punctuation] = STATE(186), - [sym_autolink] = STATE(186), - [sym_footnote_reference] = STATE(186), - [sym__image] = STATE(186), - [sym_full_reference_image] = STATE(186), - [sym_collapsed_reference_image] = STATE(186), - [sym_inline_image] = STATE(186), - [sym__image_description] = STATE(673), - [sym__link] = STATE(186), - [sym_full_reference_link] = STATE(186), - [sym_collapsed_reference_link] = STATE(186), - [sym_inline_link] = STATE(186), - [sym_link_text] = STATE(672), - [sym__comment_with_spaces] = STATE(186), - [sym_span] = STATE(186), - [sym_raw_inline] = STATE(186), - [sym_math] = STATE(186), - [sym_verbatim] = STATE(186), - [sym__todo_highlights] = STATE(186), - [sym_todo] = STATE(186), - [sym_note] = STATE(186), - [sym__symbol_fallback] = STATE(186), - [aux_sym__text] = STATE(155), - [aux_sym__inline_repeat1] = STATE(96), - [anon_sym_LBRACE_] = ACTIONS(267), - [anon_sym__] = ACTIONS(269), - [anon_sym_LBRACE_STAR] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_LBRACE_CARET] = ACTIONS(275), - [anon_sym_CARET] = ACTIONS(275), - [anon_sym_LBRACE_TILDE] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(277), - [anon_sym_LBRACE_EQ] = ACTIONS(279), - [anon_sym_LBRACE_PLUS] = ACTIONS(281), - [anon_sym_LBRACE_DASH] = ACTIONS(283), - [anon_sym_BSLASH] = ACTIONS(285), - [sym_quotation_marks] = ACTIONS(287), - [sym_ellipsis] = ACTIONS(287), - [sym_em_dash] = ACTIONS(287), - [sym_en_dash] = ACTIONS(289), - [sym_backslash_escape] = ACTIONS(289), - [anon_sym_LT] = ACTIONS(291), - [sym_symbol] = ACTIONS(287), - [anon_sym_LBRACK_CARET] = ACTIONS(293), - [anon_sym_BANG_LBRACK] = ACTIONS(295), - [anon_sym_LBRACK] = ACTIONS(297), - [anon_sym_LBRACE2] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(299), - [anon_sym_TODO] = ACTIONS(301), - [anon_sym_WIP] = ACTIONS(301), - [anon_sym_NOTE] = ACTIONS(303), - [anon_sym_INFO] = ACTIONS(303), - [anon_sym_XXX] = ACTIONS(303), - [sym_fixme] = ACTIONS(287), - [sym__whitespace1] = ACTIONS(305), - [sym__newline] = ACTIONS(1040), - [aux_sym__text_token1] = ACTIONS(309), - [sym__verbatim_begin] = ACTIONS(311), - [sym_insert_end] = ACTIONS(497), + [sym__inline] = STATE(1010), + [sym__element] = STATE(70), + [sym_emphasis] = STATE(136), + [sym_emphasis_begin] = STATE(1161), + [sym_strong] = STATE(136), + [sym_strong_begin] = STATE(1162), + [sym_superscript] = STATE(136), + [sym_superscript_begin] = STATE(1163), + [sym_subscript] = STATE(136), + [sym_subscript_begin] = STATE(1164), + [sym_highlighted] = STATE(136), + [sym_highlighted_begin] = STATE(1165), + [sym_insert] = STATE(136), + [sym_insert_begin] = STATE(1166), + [sym_delete] = STATE(136), + [sym_delete_begin] = STATE(1167), + [sym_hard_line_break] = STATE(136), + [sym__smart_punctuation] = STATE(136), + [sym_autolink] = STATE(136), + [sym_footnote_reference] = STATE(136), + [sym__image] = STATE(136), + [sym_full_reference_image] = STATE(136), + [sym_collapsed_reference_image] = STATE(136), + [sym_inline_image] = STATE(136), + [sym__image_description] = STATE(690), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(136), + [sym_full_reference_link] = STATE(136), + [sym_collapsed_reference_link] = STATE(136), + [sym_inline_link] = STATE(136), + [sym_link_text] = STATE(691), + [sym_span] = STATE(70), + [sym__bracketed_text] = STATE(653), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(136), + [sym_raw_inline] = STATE(136), + [sym_math] = STATE(136), + [sym_verbatim] = STATE(136), + [sym__todo_highlights] = STATE(136), + [sym_todo] = STATE(136), + [sym_note] = STATE(136), + [sym__symbol_fallback] = STATE(136), + [aux_sym__text] = STATE(125), + [aux_sym__inline_repeat1] = STATE(70), + [anon_sym_LBRACE_] = ACTIONS(97), + [anon_sym__] = ACTIONS(99), + [anon_sym_LBRACE_STAR] = ACTIONS(101), + [anon_sym_STAR] = ACTIONS(103), + [anon_sym_LBRACE_CARET] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [anon_sym_LBRACE_TILDE] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(107), + [anon_sym_LBRACE_EQ] = ACTIONS(109), + [anon_sym_LBRACE_PLUS] = ACTIONS(111), + [anon_sym_LBRACE_DASH] = ACTIONS(113), + [anon_sym_BSLASH] = ACTIONS(115), + [sym_quotation_marks] = ACTIONS(117), + [sym_ellipsis] = ACTIONS(117), + [sym_em_dash] = ACTIONS(117), + [sym_en_dash] = ACTIONS(119), + [sym_backslash_escape] = ACTIONS(119), + [anon_sym_LT] = ACTIONS(121), + [sym_symbol] = ACTIONS(117), + [anon_sym_LBRACK_CARET] = ACTIONS(123), + [anon_sym_BANG_LBRACK] = ACTIONS(125), + [anon_sym_LBRACK] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_TODO] = ACTIONS(131), + [anon_sym_WIP] = ACTIONS(131), + [anon_sym_NOTE] = ACTIONS(133), + [anon_sym_INFO] = ACTIONS(133), + [anon_sym_XXX] = ACTIONS(133), + [sym_fixme] = ACTIONS(117), + [sym__whitespace1] = ACTIONS(135), + [sym__newline] = ACTIONS(137), + [aux_sym__text_token1] = ACTIONS(139), + [sym__verbatim_begin] = ACTIONS(141), }, [112] = { - [sym__inline_without_trailing_space] = STATE(889), - [sym__element] = STATE(572), - [sym_emphasis] = STATE(208), - [sym_emphasis_begin] = STATE(1074), - [sym_strong] = STATE(208), - [sym_strong_begin] = STATE(1075), - [sym_superscript] = STATE(208), - [sym_superscript_begin] = STATE(1076), - [sym_subscript] = STATE(208), - [sym_subscript_begin] = STATE(1077), - [sym_highlighted] = STATE(208), - [sym_highlighted_begin] = STATE(1078), - [sym_insert] = STATE(208), - [sym_insert_begin] = STATE(1079), - [sym_delete] = STATE(208), - [sym_delete_begin] = STATE(1080), - [sym_hard_line_break] = STATE(208), - [sym__smart_punctuation] = STATE(208), - [sym_autolink] = STATE(208), - [sym_footnote_reference] = STATE(208), - [sym__image] = STATE(208), - [sym_full_reference_image] = STATE(208), - [sym_collapsed_reference_image] = STATE(208), - [sym_inline_image] = STATE(208), - [sym__image_description] = STATE(680), - [sym__link] = STATE(208), - [sym_full_reference_link] = STATE(208), - [sym_collapsed_reference_link] = STATE(208), - [sym_inline_link] = STATE(208), - [sym_link_text] = STATE(663), - [sym__comment_with_spaces] = STATE(208), - [sym_span] = STATE(208), - [sym_raw_inline] = STATE(208), - [sym_math] = STATE(208), - [sym_verbatim] = STATE(208), - [sym__todo_highlights] = STATE(208), - [sym_todo] = STATE(208), - [sym_note] = STATE(208), - [sym__symbol_fallback] = STATE(208), - [aux_sym__text] = STATE(131), - [aux_sym__inline_repeat1] = STATE(130), - [anon_sym_LBRACE_] = ACTIONS(175), - [anon_sym__] = ACTIONS(177), - [anon_sym_LBRACE_STAR] = ACTIONS(179), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_LBRACE_CARET] = ACTIONS(183), - [anon_sym_CARET] = ACTIONS(183), - [anon_sym_LBRACE_TILDE] = ACTIONS(185), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_LBRACE_EQ] = ACTIONS(187), - [anon_sym_LBRACE_PLUS] = ACTIONS(189), - [anon_sym_LBRACE_DASH] = ACTIONS(191), - [anon_sym_BSLASH] = ACTIONS(193), - [sym_quotation_marks] = ACTIONS(195), - [sym_ellipsis] = ACTIONS(195), - [sym_em_dash] = ACTIONS(195), - [sym_en_dash] = ACTIONS(197), - [sym_backslash_escape] = ACTIONS(197), - [anon_sym_LT] = ACTIONS(199), - [sym_symbol] = ACTIONS(195), - [anon_sym_LBRACK_CARET] = ACTIONS(201), - [anon_sym_BANG_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE2] = ACTIONS(197), - [anon_sym_DOLLAR] = ACTIONS(207), - [anon_sym_TODO] = ACTIONS(209), - [anon_sym_WIP] = ACTIONS(209), - [anon_sym_NOTE] = ACTIONS(211), - [anon_sym_INFO] = ACTIONS(211), - [anon_sym_XXX] = ACTIONS(211), - [sym_fixme] = ACTIONS(195), - [sym__whitespace1] = ACTIONS(213), - [sym__newline] = ACTIONS(215), - [aux_sym__text_token1] = ACTIONS(217), - [sym__verbatim_begin] = ACTIONS(219), + [sym__element] = STATE(112), + [sym_emphasis] = STATE(135), + [sym_emphasis_begin] = STATE(1203), + [sym_strong] = STATE(135), + [sym_strong_begin] = STATE(1204), + [sym_superscript] = STATE(135), + [sym_superscript_begin] = STATE(1205), + [sym_subscript] = STATE(135), + [sym_subscript_begin] = STATE(1206), + [sym_highlighted] = STATE(135), + [sym_highlighted_begin] = STATE(1207), + [sym_insert] = STATE(135), + [sym_insert_begin] = STATE(1208), + [sym_delete] = STATE(135), + [sym_delete_begin] = STATE(1209), + [sym_hard_line_break] = STATE(135), + [sym__smart_punctuation] = STATE(135), + [sym_autolink] = STATE(135), + [sym_footnote_reference] = STATE(135), + [sym__image] = STATE(135), + [sym_full_reference_image] = STATE(135), + [sym_collapsed_reference_image] = STATE(135), + [sym_inline_image] = STATE(135), + [sym__image_description] = STATE(679), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(135), + [sym_full_reference_link] = STATE(135), + [sym_collapsed_reference_link] = STATE(135), + [sym_inline_link] = STATE(135), + [sym_link_text] = STATE(664), + [sym_span] = STATE(112), + [sym__bracketed_text] = STATE(659), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(135), + [sym_raw_inline] = STATE(135), + [sym_math] = STATE(135), + [sym_verbatim] = STATE(135), + [sym__todo_highlights] = STATE(135), + [sym_todo] = STATE(135), + [sym_note] = STATE(135), + [sym__symbol_fallback] = STATE(135), + [aux_sym__text] = STATE(122), + [aux_sym__inline_repeat1] = STATE(112), + [anon_sym_LBRACE_] = ACTIONS(1016), + [anon_sym__] = ACTIONS(1019), + [anon_sym_LBRACE_STAR] = ACTIONS(1022), + [anon_sym_STAR] = ACTIONS(1025), + [anon_sym_LBRACE_CARET] = ACTIONS(1028), + [anon_sym_CARET] = ACTIONS(1028), + [anon_sym_LBRACE_TILDE] = ACTIONS(1031), + [anon_sym_TILDE] = ACTIONS(1031), + [anon_sym_LBRACE_EQ] = ACTIONS(1034), + [anon_sym_LBRACE_PLUS] = ACTIONS(1037), + [anon_sym_LBRACE_DASH] = ACTIONS(1040), + [anon_sym_BSLASH] = ACTIONS(1043), + [sym_quotation_marks] = ACTIONS(1046), + [sym_ellipsis] = ACTIONS(1046), + [sym_em_dash] = ACTIONS(1046), + [sym_en_dash] = ACTIONS(1049), + [sym_backslash_escape] = ACTIONS(1049), + [anon_sym_LT] = ACTIONS(1052), + [sym_symbol] = ACTIONS(1046), + [anon_sym_LBRACK_CARET] = ACTIONS(1055), + [anon_sym_BANG_LBRACK] = ACTIONS(1058), + [anon_sym_LBRACK] = ACTIONS(1061), + [anon_sym_DOLLAR] = ACTIONS(1064), + [anon_sym_TODO] = ACTIONS(1067), + [anon_sym_WIP] = ACTIONS(1067), + [anon_sym_NOTE] = ACTIONS(1070), + [anon_sym_INFO] = ACTIONS(1070), + [anon_sym_XXX] = ACTIONS(1070), + [sym_fixme] = ACTIONS(1046), + [sym__whitespace1] = ACTIONS(1073), + [sym__newline] = ACTIONS(1076), + [aux_sym__text_token1] = ACTIONS(1079), + [sym__verbatim_begin] = ACTIONS(1082), + [sym__bracketed_text_end] = ACTIONS(538), }, [113] = { - [sym__inline_without_trailing_space] = STATE(888), - [sym__element] = STATE(603), - [sym_emphasis] = STATE(177), - [sym_emphasis_begin] = STATE(1067), - [sym_strong] = STATE(177), - [sym_strong_begin] = STATE(1068), - [sym_superscript] = STATE(177), - [sym_superscript_begin] = STATE(1069), - [sym_subscript] = STATE(177), - [sym_subscript_begin] = STATE(1070), - [sym_highlighted] = STATE(177), - [sym_highlighted_begin] = STATE(1071), - [sym_insert] = STATE(177), - [sym_insert_begin] = STATE(1072), - [sym_delete] = STATE(177), - [sym_delete_begin] = STATE(1073), - [sym_hard_line_break] = STATE(177), - [sym__smart_punctuation] = STATE(177), - [sym_autolink] = STATE(177), - [sym_footnote_reference] = STATE(177), - [sym__image] = STATE(177), - [sym_full_reference_image] = STATE(177), - [sym_collapsed_reference_image] = STATE(177), - [sym_inline_image] = STATE(177), - [sym__image_description] = STATE(681), - [sym__link] = STATE(177), - [sym_full_reference_link] = STATE(177), - [sym_collapsed_reference_link] = STATE(177), - [sym_inline_link] = STATE(177), - [sym_link_text] = STATE(668), - [sym__comment_with_spaces] = STATE(177), - [sym_span] = STATE(177), - [sym_raw_inline] = STATE(177), - [sym_math] = STATE(177), - [sym_verbatim] = STATE(177), - [sym__todo_highlights] = STATE(177), - [sym_todo] = STATE(177), - [sym_note] = STATE(177), - [sym__symbol_fallback] = STATE(177), - [aux_sym__text] = STATE(132), - [aux_sym__inline_repeat1] = STATE(128), - [anon_sym_LBRACE_] = ACTIONS(405), - [anon_sym__] = ACTIONS(407), - [anon_sym_LBRACE_STAR] = ACTIONS(409), - [anon_sym_STAR] = ACTIONS(411), - [anon_sym_LBRACE_CARET] = ACTIONS(413), - [anon_sym_CARET] = ACTIONS(413), - [anon_sym_LBRACE_TILDE] = ACTIONS(415), - [anon_sym_TILDE] = ACTIONS(415), - [anon_sym_LBRACE_EQ] = ACTIONS(417), - [anon_sym_LBRACE_PLUS] = ACTIONS(419), - [anon_sym_LBRACE_DASH] = ACTIONS(421), - [anon_sym_BSLASH] = ACTIONS(423), - [sym_quotation_marks] = ACTIONS(425), - [sym_ellipsis] = ACTIONS(425), - [sym_em_dash] = ACTIONS(425), - [sym_en_dash] = ACTIONS(427), - [sym_backslash_escape] = ACTIONS(427), - [anon_sym_LT] = ACTIONS(429), - [sym_symbol] = ACTIONS(425), - [anon_sym_LBRACK_CARET] = ACTIONS(431), - [anon_sym_BANG_LBRACK] = ACTIONS(433), - [anon_sym_LBRACK] = ACTIONS(435), - [anon_sym_LBRACE2] = ACTIONS(427), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_TODO] = ACTIONS(439), - [anon_sym_WIP] = ACTIONS(439), - [anon_sym_NOTE] = ACTIONS(441), - [anon_sym_INFO] = ACTIONS(441), - [anon_sym_XXX] = ACTIONS(441), - [sym_fixme] = ACTIONS(425), - [sym__whitespace1] = ACTIONS(443), - [sym__newline] = ACTIONS(445), - [aux_sym__text_token1] = ACTIONS(447), - [sym__verbatim_begin] = ACTIONS(449), + [sym__inline] = STATE(1031), + [sym__element] = STATE(65), + [sym_emphasis] = STATE(133), + [sym_emphasis_begin] = STATE(1189), + [sym_strong] = STATE(133), + [sym_strong_begin] = STATE(1190), + [sym_superscript] = STATE(133), + [sym_superscript_begin] = STATE(1191), + [sym_subscript] = STATE(133), + [sym_subscript_begin] = STATE(1192), + [sym_highlighted] = STATE(133), + [sym_highlighted_begin] = STATE(1193), + [sym_insert] = STATE(133), + [sym_insert_begin] = STATE(1194), + [sym_delete] = STATE(133), + [sym_delete_begin] = STATE(1195), + [sym_hard_line_break] = STATE(133), + [sym__smart_punctuation] = STATE(133), + [sym_autolink] = STATE(133), + [sym_footnote_reference] = STATE(133), + [sym__image] = STATE(133), + [sym_full_reference_image] = STATE(133), + [sym_collapsed_reference_image] = STATE(133), + [sym_inline_image] = STATE(133), + [sym__image_description] = STATE(670), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(133), + [sym_full_reference_link] = STATE(133), + [sym_collapsed_reference_link] = STATE(133), + [sym_inline_link] = STATE(133), + [sym_link_text] = STATE(663), + [sym_span] = STATE(65), + [sym__bracketed_text] = STATE(662), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(133), + [sym_raw_inline] = STATE(133), + [sym_math] = STATE(133), + [sym_verbatim] = STATE(133), + [sym__todo_highlights] = STATE(133), + [sym_todo] = STATE(133), + [sym_note] = STATE(133), + [sym__symbol_fallback] = STATE(133), + [aux_sym__text] = STATE(123), + [aux_sym__inline_repeat1] = STATE(65), + [anon_sym_LBRACE_] = ACTIONS(143), + [anon_sym__] = ACTIONS(145), + [anon_sym_LBRACE_STAR] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(149), + [anon_sym_LBRACE_CARET] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(151), + [anon_sym_LBRACE_TILDE] = ACTIONS(153), + [anon_sym_TILDE] = ACTIONS(153), + [anon_sym_LBRACE_EQ] = ACTIONS(155), + [anon_sym_LBRACE_PLUS] = ACTIONS(157), + [anon_sym_LBRACE_DASH] = ACTIONS(159), + [anon_sym_BSLASH] = ACTIONS(161), + [sym_quotation_marks] = ACTIONS(163), + [sym_ellipsis] = ACTIONS(163), + [sym_em_dash] = ACTIONS(163), + [sym_en_dash] = ACTIONS(165), + [sym_backslash_escape] = ACTIONS(165), + [anon_sym_LT] = ACTIONS(167), + [sym_symbol] = ACTIONS(163), + [anon_sym_LBRACK_CARET] = ACTIONS(169), + [anon_sym_BANG_LBRACK] = ACTIONS(171), + [anon_sym_LBRACK] = ACTIONS(173), + [anon_sym_DOLLAR] = ACTIONS(175), + [anon_sym_TODO] = ACTIONS(177), + [anon_sym_WIP] = ACTIONS(177), + [anon_sym_NOTE] = ACTIONS(179), + [anon_sym_INFO] = ACTIONS(179), + [anon_sym_XXX] = ACTIONS(179), + [sym_fixme] = ACTIONS(163), + [sym__whitespace1] = ACTIONS(181), + [sym__newline] = ACTIONS(183), + [aux_sym__text_token1] = ACTIONS(185), + [sym__verbatim_begin] = ACTIONS(187), }, [114] = { - [sym__inline] = STATE(865), - [sym__element] = STATE(66), - [sym_emphasis] = STATE(171), - [sym_emphasis_begin] = STATE(1116), - [sym_strong] = STATE(171), - [sym_strong_begin] = STATE(1117), - [sym_superscript] = STATE(171), - [sym_superscript_begin] = STATE(1118), - [sym_subscript] = STATE(171), - [sym_subscript_begin] = STATE(1119), - [sym_highlighted] = STATE(171), - [sym_highlighted_begin] = STATE(1120), - [sym_insert] = STATE(171), - [sym_insert_begin] = STATE(1121), - [sym_delete] = STATE(171), - [sym_delete_begin] = STATE(1122), - [sym_hard_line_break] = STATE(171), - [sym__smart_punctuation] = STATE(171), - [sym_autolink] = STATE(171), - [sym_footnote_reference] = STATE(171), - [sym__image] = STATE(171), - [sym_full_reference_image] = STATE(171), - [sym_collapsed_reference_image] = STATE(171), - [sym_inline_image] = STATE(171), - [sym__image_description] = STATE(674), - [sym__link] = STATE(171), - [sym_full_reference_link] = STATE(171), - [sym_collapsed_reference_link] = STATE(171), - [sym_inline_link] = STATE(171), - [sym_link_text] = STATE(675), - [sym__comment_with_spaces] = STATE(171), - [sym_span] = STATE(171), - [sym_raw_inline] = STATE(171), - [sym_math] = STATE(171), - [sym_verbatim] = STATE(171), - [sym__todo_highlights] = STATE(171), - [sym_todo] = STATE(171), - [sym_note] = STATE(171), - [sym__symbol_fallback] = STATE(171), - [aux_sym__text] = STATE(146), - [aux_sym__inline_repeat1] = STATE(66), - [anon_sym_LBRACE_] = ACTIONS(451), - [anon_sym__] = ACTIONS(453), - [anon_sym_LBRACE_STAR] = ACTIONS(455), - [anon_sym_STAR] = ACTIONS(457), - [anon_sym_LBRACE_CARET] = ACTIONS(459), - [anon_sym_CARET] = ACTIONS(459), - [anon_sym_LBRACE_TILDE] = ACTIONS(461), - [anon_sym_TILDE] = ACTIONS(461), - [anon_sym_LBRACE_EQ] = ACTIONS(463), - [anon_sym_LBRACE_PLUS] = ACTIONS(465), - [anon_sym_LBRACE_DASH] = ACTIONS(467), - [anon_sym_BSLASH] = ACTIONS(469), - [sym_quotation_marks] = ACTIONS(471), - [sym_ellipsis] = ACTIONS(471), - [sym_em_dash] = ACTIONS(471), - [sym_en_dash] = ACTIONS(473), - [sym_backslash_escape] = ACTIONS(473), - [anon_sym_LT] = ACTIONS(475), - [sym_symbol] = ACTIONS(471), - [anon_sym_LBRACK_CARET] = ACTIONS(477), - [anon_sym_BANG_LBRACK] = ACTIONS(479), - [anon_sym_LBRACK] = ACTIONS(481), - [anon_sym_LBRACE2] = ACTIONS(473), - [anon_sym_DOLLAR] = ACTIONS(483), - [anon_sym_TODO] = ACTIONS(485), - [anon_sym_WIP] = ACTIONS(485), - [anon_sym_NOTE] = ACTIONS(487), - [anon_sym_INFO] = ACTIONS(487), - [anon_sym_XXX] = ACTIONS(487), - [sym_fixme] = ACTIONS(471), - [sym__whitespace1] = ACTIONS(489), - [sym__newline] = ACTIONS(491), - [aux_sym__text_token1] = ACTIONS(493), - [sym__verbatim_begin] = ACTIONS(495), + [sym__inline] = STATE(1013), + [sym__element] = STATE(105), + [sym_emphasis] = STATE(140), + [sym_emphasis_begin] = STATE(1154), + [sym_strong] = STATE(140), + [sym_strong_begin] = STATE(1155), + [sym_superscript] = STATE(140), + [sym_superscript_begin] = STATE(1156), + [sym_subscript] = STATE(140), + [sym_subscript_begin] = STATE(1157), + [sym_highlighted] = STATE(140), + [sym_highlighted_begin] = STATE(1158), + [sym_insert] = STATE(140), + [sym_insert_begin] = STATE(1159), + [sym_delete] = STATE(140), + [sym_delete_begin] = STATE(1160), + [sym_hard_line_break] = STATE(140), + [sym__smart_punctuation] = STATE(140), + [sym_autolink] = STATE(140), + [sym_footnote_reference] = STATE(140), + [sym__image] = STATE(140), + [sym_full_reference_image] = STATE(140), + [sym_collapsed_reference_image] = STATE(140), + [sym_inline_image] = STATE(140), + [sym__image_description] = STATE(687), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(140), + [sym_full_reference_link] = STATE(140), + [sym_collapsed_reference_link] = STATE(140), + [sym_inline_link] = STATE(140), + [sym_link_text] = STATE(688), + [sym_span] = STATE(105), + [sym__bracketed_text] = STATE(654), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(140), + [sym_raw_inline] = STATE(140), + [sym_math] = STATE(140), + [sym_verbatim] = STATE(140), + [sym__todo_highlights] = STATE(140), + [sym_todo] = STATE(140), + [sym_note] = STATE(140), + [sym__symbol_fallback] = STATE(140), + [aux_sym__text] = STATE(131), + [aux_sym__inline_repeat1] = STATE(105), + [anon_sym_LBRACE_] = ACTIONS(327), + [anon_sym__] = ACTIONS(329), + [anon_sym_LBRACE_STAR] = ACTIONS(331), + [anon_sym_STAR] = ACTIONS(333), + [anon_sym_LBRACE_CARET] = ACTIONS(335), + [anon_sym_CARET] = ACTIONS(335), + [anon_sym_LBRACE_TILDE] = ACTIONS(337), + [anon_sym_TILDE] = ACTIONS(337), + [anon_sym_LBRACE_EQ] = ACTIONS(339), + [anon_sym_LBRACE_PLUS] = ACTIONS(341), + [anon_sym_LBRACE_DASH] = ACTIONS(343), + [anon_sym_BSLASH] = ACTIONS(345), + [sym_quotation_marks] = ACTIONS(347), + [sym_ellipsis] = ACTIONS(347), + [sym_em_dash] = ACTIONS(347), + [sym_en_dash] = ACTIONS(349), + [sym_backslash_escape] = ACTIONS(349), + [anon_sym_LT] = ACTIONS(351), + [sym_symbol] = ACTIONS(347), + [anon_sym_LBRACK_CARET] = ACTIONS(353), + [anon_sym_BANG_LBRACK] = ACTIONS(355), + [anon_sym_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [anon_sym_TODO] = ACTIONS(361), + [anon_sym_WIP] = ACTIONS(361), + [anon_sym_NOTE] = ACTIONS(363), + [anon_sym_INFO] = ACTIONS(363), + [anon_sym_XXX] = ACTIONS(363), + [sym_fixme] = ACTIONS(347), + [sym__whitespace1] = ACTIONS(365), + [sym__newline] = ACTIONS(367), + [aux_sym__text_token1] = ACTIONS(369), + [sym__verbatim_begin] = ACTIONS(371), }, [115] = { - [sym__element] = STATE(110), - [sym_emphasis] = STATE(192), - [sym_emphasis_begin] = STATE(1095), - [sym_strong] = STATE(192), - [sym_strong_begin] = STATE(1096), - [sym_superscript] = STATE(192), - [sym_superscript_begin] = STATE(1097), - [sym_subscript] = STATE(192), - [sym_subscript_begin] = STATE(1098), - [sym_highlighted] = STATE(192), - [sym_highlighted_begin] = STATE(1099), - [sym_insert] = STATE(192), - [sym_insert_begin] = STATE(1100), - [sym_delete] = STATE(192), - [sym_delete_begin] = STATE(1101), - [sym_hard_line_break] = STATE(192), - [sym__smart_punctuation] = STATE(192), - [sym_autolink] = STATE(192), - [sym_footnote_reference] = STATE(192), - [sym__image] = STATE(192), - [sym_full_reference_image] = STATE(192), - [sym_collapsed_reference_image] = STATE(192), - [sym_inline_image] = STATE(192), - [sym__image_description] = STATE(684), - [sym__link] = STATE(192), - [sym_full_reference_link] = STATE(192), - [sym_collapsed_reference_link] = STATE(192), - [sym_inline_link] = STATE(192), + [sym__inline_without_trailing_space] = STATE(1014), + [sym__element] = STATE(562), + [sym_emphasis] = STATE(142), + [sym_emphasis_begin] = STATE(1147), + [sym_strong] = STATE(142), + [sym_strong_begin] = STATE(1148), + [sym_superscript] = STATE(142), + [sym_superscript_begin] = STATE(1149), + [sym_subscript] = STATE(142), + [sym_subscript_begin] = STATE(1150), + [sym_highlighted] = STATE(142), + [sym_highlighted_begin] = STATE(1151), + [sym_insert] = STATE(142), + [sym_insert_begin] = STATE(1152), + [sym_delete] = STATE(142), + [sym_delete_begin] = STATE(1153), + [sym_hard_line_break] = STATE(142), + [sym__smart_punctuation] = STATE(142), + [sym_autolink] = STATE(142), + [sym_footnote_reference] = STATE(142), + [sym__image] = STATE(142), + [sym_full_reference_image] = STATE(142), + [sym_collapsed_reference_image] = STATE(142), + [sym_inline_image] = STATE(142), + [sym__image_description] = STATE(685), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(142), + [sym_full_reference_link] = STATE(142), + [sym_collapsed_reference_link] = STATE(142), + [sym_inline_link] = STATE(142), [sym_link_text] = STATE(683), - [sym__comment_with_spaces] = STATE(192), - [sym_span] = STATE(192), - [sym_raw_inline] = STATE(192), - [sym_math] = STATE(192), - [sym_verbatim] = STATE(192), - [sym__todo_highlights] = STATE(192), - [sym_todo] = STATE(192), - [sym_note] = STATE(192), - [sym__symbol_fallback] = STATE(192), - [aux_sym__text] = STATE(141), - [aux_sym__inline_repeat1] = STATE(110), - [anon_sym_LBRACE_] = ACTIONS(129), - [anon_sym__] = ACTIONS(131), - [anon_sym_LBRACE_STAR] = ACTIONS(133), - [anon_sym_STAR] = ACTIONS(135), - [anon_sym_LBRACE_CARET] = ACTIONS(137), - [anon_sym_CARET] = ACTIONS(137), - [anon_sym_LBRACE_TILDE] = ACTIONS(139), - [anon_sym_TILDE] = ACTIONS(139), - [anon_sym_LBRACE_EQ] = ACTIONS(141), - [anon_sym_LBRACE_PLUS] = ACTIONS(143), - [anon_sym_LBRACE_DASH] = ACTIONS(145), - [anon_sym_BSLASH] = ACTIONS(147), - [sym_quotation_marks] = ACTIONS(149), - [sym_ellipsis] = ACTIONS(149), - [sym_em_dash] = ACTIONS(149), - [sym_en_dash] = ACTIONS(151), - [sym_backslash_escape] = ACTIONS(151), - [anon_sym_LT] = ACTIONS(153), - [sym_symbol] = ACTIONS(149), - [anon_sym_LBRACK_CARET] = ACTIONS(155), - [anon_sym_BANG_LBRACK] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LBRACE2] = ACTIONS(151), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_TODO] = ACTIONS(163), - [anon_sym_WIP] = ACTIONS(163), - [anon_sym_NOTE] = ACTIONS(165), - [anon_sym_INFO] = ACTIONS(165), - [anon_sym_XXX] = ACTIONS(165), - [sym_fixme] = ACTIONS(149), - [sym__whitespace1] = ACTIONS(167), - [sym__newline] = ACTIONS(1042), - [aux_sym__text_token1] = ACTIONS(171), - [sym__verbatim_begin] = ACTIONS(173), - [sym_highlighted_end] = ACTIONS(497), + [sym_span] = STATE(562), + [sym__bracketed_text] = STATE(657), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(142), + [sym_raw_inline] = STATE(142), + [sym_math] = STATE(142), + [sym_verbatim] = STATE(142), + [sym__todo_highlights] = STATE(142), + [sym_todo] = STATE(142), + [sym_note] = STATE(142), + [sym__symbol_fallback] = STATE(142), + [aux_sym__text] = STATE(126), + [aux_sym__inline_repeat1] = STATE(120), + [anon_sym_LBRACE_] = ACTIONS(373), + [anon_sym__] = ACTIONS(375), + [anon_sym_LBRACE_STAR] = ACTIONS(377), + [anon_sym_STAR] = ACTIONS(379), + [anon_sym_LBRACE_CARET] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(381), + [anon_sym_LBRACE_TILDE] = ACTIONS(383), + [anon_sym_TILDE] = ACTIONS(383), + [anon_sym_LBRACE_EQ] = ACTIONS(385), + [anon_sym_LBRACE_PLUS] = ACTIONS(387), + [anon_sym_LBRACE_DASH] = ACTIONS(389), + [anon_sym_BSLASH] = ACTIONS(391), + [sym_quotation_marks] = ACTIONS(393), + [sym_ellipsis] = ACTIONS(393), + [sym_em_dash] = ACTIONS(393), + [sym_en_dash] = ACTIONS(395), + [sym_backslash_escape] = ACTIONS(395), + [anon_sym_LT] = ACTIONS(397), + [sym_symbol] = ACTIONS(393), + [anon_sym_LBRACK_CARET] = ACTIONS(399), + [anon_sym_BANG_LBRACK] = ACTIONS(401), + [anon_sym_LBRACK] = ACTIONS(403), + [anon_sym_DOLLAR] = ACTIONS(405), + [anon_sym_TODO] = ACTIONS(407), + [anon_sym_WIP] = ACTIONS(407), + [anon_sym_NOTE] = ACTIONS(409), + [anon_sym_INFO] = ACTIONS(409), + [anon_sym_XXX] = ACTIONS(409), + [sym_fixme] = ACTIONS(393), + [sym__whitespace1] = ACTIONS(411), + [sym__newline] = ACTIONS(413), + [aux_sym__text_token1] = ACTIONS(415), + [sym__verbatim_begin] = ACTIONS(417), }, [116] = { - [sym__inline] = STATE(979), - [sym__element] = STATE(66), - [sym_emphasis] = STATE(171), - [sym_emphasis_begin] = STATE(1116), - [sym_strong] = STATE(171), - [sym_strong_begin] = STATE(1117), - [sym_superscript] = STATE(171), - [sym_superscript_begin] = STATE(1118), - [sym_subscript] = STATE(171), - [sym_subscript_begin] = STATE(1119), - [sym_highlighted] = STATE(171), - [sym_highlighted_begin] = STATE(1120), - [sym_insert] = STATE(171), - [sym_insert_begin] = STATE(1121), - [sym_delete] = STATE(171), - [sym_delete_begin] = STATE(1122), - [sym_hard_line_break] = STATE(171), - [sym__smart_punctuation] = STATE(171), - [sym_autolink] = STATE(171), - [sym_footnote_reference] = STATE(171), - [sym__image] = STATE(171), - [sym_full_reference_image] = STATE(171), - [sym_collapsed_reference_image] = STATE(171), - [sym_inline_image] = STATE(171), - [sym__image_description] = STATE(674), - [sym__link] = STATE(171), - [sym_full_reference_link] = STATE(171), - [sym_collapsed_reference_link] = STATE(171), - [sym_inline_link] = STATE(171), - [sym_link_text] = STATE(675), - [sym__comment_with_spaces] = STATE(171), - [sym_span] = STATE(171), - [sym_raw_inline] = STATE(171), - [sym_math] = STATE(171), - [sym_verbatim] = STATE(171), - [sym__todo_highlights] = STATE(171), - [sym_todo] = STATE(171), - [sym_note] = STATE(171), - [sym__symbol_fallback] = STATE(171), - [aux_sym__text] = STATE(146), - [aux_sym__inline_repeat1] = STATE(66), - [anon_sym_LBRACE_] = ACTIONS(451), - [anon_sym__] = ACTIONS(453), - [anon_sym_LBRACE_STAR] = ACTIONS(455), - [anon_sym_STAR] = ACTIONS(457), - [anon_sym_LBRACE_CARET] = ACTIONS(459), - [anon_sym_CARET] = ACTIONS(459), - [anon_sym_LBRACE_TILDE] = ACTIONS(461), - [anon_sym_TILDE] = ACTIONS(461), - [anon_sym_LBRACE_EQ] = ACTIONS(463), - [anon_sym_LBRACE_PLUS] = ACTIONS(465), - [anon_sym_LBRACE_DASH] = ACTIONS(467), - [anon_sym_BSLASH] = ACTIONS(469), - [sym_quotation_marks] = ACTIONS(471), - [sym_ellipsis] = ACTIONS(471), - [sym_em_dash] = ACTIONS(471), - [sym_en_dash] = ACTIONS(473), - [sym_backslash_escape] = ACTIONS(473), - [anon_sym_LT] = ACTIONS(475), - [sym_symbol] = ACTIONS(471), - [anon_sym_LBRACK_CARET] = ACTIONS(477), - [anon_sym_BANG_LBRACK] = ACTIONS(479), - [anon_sym_LBRACK] = ACTIONS(481), - [anon_sym_LBRACE2] = ACTIONS(473), - [anon_sym_DOLLAR] = ACTIONS(483), - [anon_sym_TODO] = ACTIONS(485), - [anon_sym_WIP] = ACTIONS(485), - [anon_sym_NOTE] = ACTIONS(487), - [anon_sym_INFO] = ACTIONS(487), - [anon_sym_XXX] = ACTIONS(487), - [sym_fixme] = ACTIONS(471), - [sym__whitespace1] = ACTIONS(489), - [sym__newline] = ACTIONS(491), - [aux_sym__text_token1] = ACTIONS(493), - [sym__verbatim_begin] = ACTIONS(495), + [sym__element] = STATE(116), + [sym_emphasis] = STATE(137), + [sym_emphasis_begin] = STATE(1196), + [sym_strong] = STATE(137), + [sym_strong_begin] = STATE(1197), + [sym_superscript] = STATE(137), + [sym_superscript_begin] = STATE(1198), + [sym_subscript] = STATE(137), + [sym_subscript_begin] = STATE(1199), + [sym_highlighted] = STATE(137), + [sym_highlighted_begin] = STATE(1200), + [sym_insert] = STATE(137), + [sym_insert_begin] = STATE(1201), + [sym_delete] = STATE(137), + [sym_delete_begin] = STATE(1202), + [sym_hard_line_break] = STATE(137), + [sym__smart_punctuation] = STATE(137), + [sym_autolink] = STATE(137), + [sym_footnote_reference] = STATE(137), + [sym__image] = STATE(137), + [sym_full_reference_image] = STATE(137), + [sym_collapsed_reference_image] = STATE(137), + [sym_inline_image] = STATE(137), + [sym__image_description] = STATE(666), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(137), + [sym_full_reference_link] = STATE(137), + [sym_collapsed_reference_link] = STATE(137), + [sym_inline_link] = STATE(137), + [sym_link_text] = STATE(665), + [sym_span] = STATE(116), + [sym__bracketed_text] = STATE(651), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(137), + [sym_raw_inline] = STATE(137), + [sym_math] = STATE(137), + [sym_verbatim] = STATE(137), + [sym__todo_highlights] = STATE(137), + [sym_todo] = STATE(137), + [sym_note] = STATE(137), + [sym__symbol_fallback] = STATE(137), + [aux_sym__text] = STATE(121), + [aux_sym__inline_repeat1] = STATE(116), + [anon_sym_LBRACE_] = ACTIONS(1085), + [anon_sym__] = ACTIONS(1088), + [anon_sym_LBRACE_STAR] = ACTIONS(1091), + [anon_sym_STAR] = ACTIONS(1094), + [anon_sym_LBRACE_CARET] = ACTIONS(1097), + [anon_sym_CARET] = ACTIONS(1097), + [anon_sym_LBRACE_TILDE] = ACTIONS(1100), + [anon_sym_TILDE] = ACTIONS(1100), + [anon_sym_LBRACE_EQ] = ACTIONS(1103), + [anon_sym_LBRACE_PLUS] = ACTIONS(1106), + [anon_sym_LBRACE_DASH] = ACTIONS(1109), + [anon_sym_BSLASH] = ACTIONS(1112), + [sym_quotation_marks] = ACTIONS(1115), + [sym_ellipsis] = ACTIONS(1115), + [sym_em_dash] = ACTIONS(1115), + [sym_en_dash] = ACTIONS(1118), + [sym_backslash_escape] = ACTIONS(1118), + [anon_sym_LT] = ACTIONS(1121), + [sym_symbol] = ACTIONS(1115), + [anon_sym_LBRACK_CARET] = ACTIONS(1124), + [anon_sym_BANG_LBRACK] = ACTIONS(1127), + [anon_sym_LBRACK] = ACTIONS(1130), + [anon_sym_DOLLAR] = ACTIONS(1133), + [anon_sym_TODO] = ACTIONS(1136), + [anon_sym_WIP] = ACTIONS(1136), + [anon_sym_NOTE] = ACTIONS(1139), + [anon_sym_INFO] = ACTIONS(1139), + [anon_sym_XXX] = ACTIONS(1139), + [sym_fixme] = ACTIONS(1115), + [sym__whitespace1] = ACTIONS(1142), + [sym__newline] = ACTIONS(1145), + [aux_sym__text_token1] = ACTIONS(1148), + [sym__verbatim_begin] = ACTIONS(1151), + [sym__image_description_end] = ACTIONS(538), }, [117] = { - [sym__inline] = STATE(981), - [sym__element] = STATE(103), - [sym_emphasis] = STATE(180), - [sym_emphasis_begin] = STATE(1109), - [sym_strong] = STATE(180), - [sym_strong_begin] = STATE(1110), - [sym_superscript] = STATE(180), - [sym_superscript_begin] = STATE(1111), - [sym_subscript] = STATE(180), - [sym_subscript_begin] = STATE(1112), - [sym_highlighted] = STATE(180), - [sym_highlighted_begin] = STATE(1113), - [sym_insert] = STATE(180), - [sym_insert_begin] = STATE(1114), - [sym_delete] = STATE(180), - [sym_delete_begin] = STATE(1115), - [sym_hard_line_break] = STATE(180), - [sym__smart_punctuation] = STATE(180), - [sym_autolink] = STATE(180), - [sym_footnote_reference] = STATE(180), - [sym__image] = STATE(180), - [sym_full_reference_image] = STATE(180), - [sym_collapsed_reference_image] = STATE(180), - [sym_inline_image] = STATE(180), - [sym__image_description] = STATE(666), - [sym__link] = STATE(180), - [sym_full_reference_link] = STATE(180), - [sym_collapsed_reference_link] = STATE(180), - [sym_inline_link] = STATE(180), - [sym_link_text] = STATE(664), - [sym__comment_with_spaces] = STATE(180), - [sym_span] = STATE(180), - [sym_raw_inline] = STATE(180), - [sym_math] = STATE(180), - [sym_verbatim] = STATE(180), - [sym__todo_highlights] = STATE(180), - [sym_todo] = STATE(180), - [sym_note] = STATE(180), - [sym__symbol_fallback] = STATE(180), - [aux_sym__text] = STATE(159), - [aux_sym__inline_repeat1] = STATE(103), - [anon_sym_LBRACE_] = ACTIONS(221), - [anon_sym__] = ACTIONS(223), - [anon_sym_LBRACE_STAR] = ACTIONS(225), - [anon_sym_STAR] = ACTIONS(227), - [anon_sym_LBRACE_CARET] = ACTIONS(229), - [anon_sym_CARET] = ACTIONS(229), - [anon_sym_LBRACE_TILDE] = ACTIONS(231), - [anon_sym_TILDE] = ACTIONS(231), - [anon_sym_LBRACE_EQ] = ACTIONS(233), - [anon_sym_LBRACE_PLUS] = ACTIONS(235), - [anon_sym_LBRACE_DASH] = ACTIONS(237), - [anon_sym_BSLASH] = ACTIONS(239), - [sym_quotation_marks] = ACTIONS(241), - [sym_ellipsis] = ACTIONS(241), - [sym_em_dash] = ACTIONS(241), - [sym_en_dash] = ACTIONS(243), - [sym_backslash_escape] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(245), - [sym_symbol] = ACTIONS(241), - [anon_sym_LBRACK_CARET] = ACTIONS(247), - [anon_sym_BANG_LBRACK] = ACTIONS(249), - [anon_sym_LBRACK] = ACTIONS(251), - [anon_sym_LBRACE2] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(253), - [anon_sym_TODO] = ACTIONS(255), - [anon_sym_WIP] = ACTIONS(255), - [anon_sym_NOTE] = ACTIONS(257), - [anon_sym_INFO] = ACTIONS(257), - [anon_sym_XXX] = ACTIONS(257), - [sym_fixme] = ACTIONS(241), - [sym__whitespace1] = ACTIONS(259), - [sym__newline] = ACTIONS(261), - [aux_sym__text_token1] = ACTIONS(263), - [sym__verbatim_begin] = ACTIONS(265), + [sym__inline_without_trailing_space] = STATE(1015), + [sym__element] = STATE(604), + [sym_emphasis] = STATE(138), + [sym_emphasis_begin] = STATE(1140), + [sym_strong] = STATE(138), + [sym_strong_begin] = STATE(1141), + [sym_superscript] = STATE(138), + [sym_superscript_begin] = STATE(1142), + [sym_subscript] = STATE(138), + [sym_subscript_begin] = STATE(1143), + [sym_highlighted] = STATE(138), + [sym_highlighted_begin] = STATE(1144), + [sym_insert] = STATE(138), + [sym_insert_begin] = STATE(1145), + [sym_delete] = STATE(138), + [sym_delete_begin] = STATE(1146), + [sym_hard_line_break] = STATE(138), + [sym__smart_punctuation] = STATE(138), + [sym_autolink] = STATE(138), + [sym_footnote_reference] = STATE(138), + [sym__image] = STATE(138), + [sym_full_reference_image] = STATE(138), + [sym_collapsed_reference_image] = STATE(138), + [sym_inline_image] = STATE(138), + [sym__image_description] = STATE(667), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(138), + [sym_full_reference_link] = STATE(138), + [sym_collapsed_reference_link] = STATE(138), + [sym_inline_link] = STATE(138), + [sym_link_text] = STATE(689), + [sym_span] = STATE(604), + [sym__bracketed_text] = STATE(658), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(138), + [sym_raw_inline] = STATE(138), + [sym_math] = STATE(138), + [sym_verbatim] = STATE(138), + [sym__todo_highlights] = STATE(138), + [sym_todo] = STATE(138), + [sym_note] = STATE(138), + [sym__symbol_fallback] = STATE(138), + [aux_sym__text] = STATE(124), + [aux_sym__inline_repeat1] = STATE(118), + [anon_sym_LBRACE_] = ACTIONS(419), + [anon_sym__] = ACTIONS(421), + [anon_sym_LBRACE_STAR] = ACTIONS(423), + [anon_sym_STAR] = ACTIONS(425), + [anon_sym_LBRACE_CARET] = ACTIONS(427), + [anon_sym_CARET] = ACTIONS(427), + [anon_sym_LBRACE_TILDE] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_LBRACE_EQ] = ACTIONS(431), + [anon_sym_LBRACE_PLUS] = ACTIONS(433), + [anon_sym_LBRACE_DASH] = ACTIONS(435), + [anon_sym_BSLASH] = ACTIONS(437), + [sym_quotation_marks] = ACTIONS(439), + [sym_ellipsis] = ACTIONS(439), + [sym_em_dash] = ACTIONS(439), + [sym_en_dash] = ACTIONS(441), + [sym_backslash_escape] = ACTIONS(441), + [anon_sym_LT] = ACTIONS(443), + [sym_symbol] = ACTIONS(439), + [anon_sym_LBRACK_CARET] = ACTIONS(445), + [anon_sym_BANG_LBRACK] = ACTIONS(447), + [anon_sym_LBRACK] = ACTIONS(449), + [anon_sym_DOLLAR] = ACTIONS(451), + [anon_sym_TODO] = ACTIONS(453), + [anon_sym_WIP] = ACTIONS(453), + [anon_sym_NOTE] = ACTIONS(455), + [anon_sym_INFO] = ACTIONS(455), + [anon_sym_XXX] = ACTIONS(455), + [sym_fixme] = ACTIONS(439), + [sym__whitespace1] = ACTIONS(457), + [sym__newline] = ACTIONS(459), + [aux_sym__text_token1] = ACTIONS(461), + [sym__verbatim_begin] = ACTIONS(463), }, [118] = { - [sym__inline] = STATE(985), - [sym__element] = STATE(111), - [sym_emphasis] = STATE(186), - [sym_emphasis_begin] = STATE(1102), - [sym_strong] = STATE(186), - [sym_strong_begin] = STATE(1103), - [sym_superscript] = STATE(186), - [sym_superscript_begin] = STATE(1104), - [sym_subscript] = STATE(186), - [sym_subscript_begin] = STATE(1105), - [sym_highlighted] = STATE(186), - [sym_highlighted_begin] = STATE(1106), - [sym_insert] = STATE(186), - [sym_insert_begin] = STATE(1107), - [sym_delete] = STATE(186), - [sym_delete_begin] = STATE(1108), - [sym_hard_line_break] = STATE(186), - [sym__smart_punctuation] = STATE(186), - [sym_autolink] = STATE(186), - [sym_footnote_reference] = STATE(186), - [sym__image] = STATE(186), - [sym_full_reference_image] = STATE(186), - [sym_collapsed_reference_image] = STATE(186), - [sym_inline_image] = STATE(186), - [sym__image_description] = STATE(673), - [sym__link] = STATE(186), - [sym_full_reference_link] = STATE(186), - [sym_collapsed_reference_link] = STATE(186), - [sym_inline_link] = STATE(186), - [sym_link_text] = STATE(672), - [sym__comment_with_spaces] = STATE(186), - [sym_span] = STATE(186), - [sym_raw_inline] = STATE(186), - [sym_math] = STATE(186), - [sym_verbatim] = STATE(186), - [sym__todo_highlights] = STATE(186), - [sym_todo] = STATE(186), - [sym_note] = STATE(186), - [sym__symbol_fallback] = STATE(186), - [aux_sym__text] = STATE(155), - [aux_sym__inline_repeat1] = STATE(111), - [anon_sym_LBRACE_] = ACTIONS(267), - [anon_sym__] = ACTIONS(269), - [anon_sym_LBRACE_STAR] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_LBRACE_CARET] = ACTIONS(275), - [anon_sym_CARET] = ACTIONS(275), - [anon_sym_LBRACE_TILDE] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(277), - [anon_sym_LBRACE_EQ] = ACTIONS(279), - [anon_sym_LBRACE_PLUS] = ACTIONS(281), - [anon_sym_LBRACE_DASH] = ACTIONS(283), - [anon_sym_BSLASH] = ACTIONS(285), - [sym_quotation_marks] = ACTIONS(287), - [sym_ellipsis] = ACTIONS(287), - [sym_em_dash] = ACTIONS(287), - [sym_en_dash] = ACTIONS(289), - [sym_backslash_escape] = ACTIONS(289), - [anon_sym_LT] = ACTIONS(291), - [sym_symbol] = ACTIONS(287), - [anon_sym_LBRACK_CARET] = ACTIONS(293), - [anon_sym_BANG_LBRACK] = ACTIONS(295), - [anon_sym_LBRACK] = ACTIONS(297), - [anon_sym_LBRACE2] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(299), - [anon_sym_TODO] = ACTIONS(301), - [anon_sym_WIP] = ACTIONS(301), - [anon_sym_NOTE] = ACTIONS(303), - [anon_sym_INFO] = ACTIONS(303), - [anon_sym_XXX] = ACTIONS(303), - [sym_fixme] = ACTIONS(287), - [sym__whitespace1] = ACTIONS(305), - [sym__newline] = ACTIONS(307), - [aux_sym__text_token1] = ACTIONS(309), - [sym__verbatim_begin] = ACTIONS(311), + [sym__element] = STATE(606), + [sym_emphasis] = STATE(138), + [sym_emphasis_begin] = STATE(1140), + [sym_strong] = STATE(138), + [sym_strong_begin] = STATE(1141), + [sym_superscript] = STATE(138), + [sym_superscript_begin] = STATE(1142), + [sym_subscript] = STATE(138), + [sym_subscript_begin] = STATE(1143), + [sym_highlighted] = STATE(138), + [sym_highlighted_begin] = STATE(1144), + [sym_insert] = STATE(138), + [sym_insert_begin] = STATE(1145), + [sym_delete] = STATE(138), + [sym_delete_begin] = STATE(1146), + [sym_hard_line_break] = STATE(138), + [sym__smart_punctuation] = STATE(138), + [sym_autolink] = STATE(138), + [sym_footnote_reference] = STATE(138), + [sym__image] = STATE(138), + [sym_full_reference_image] = STATE(138), + [sym_collapsed_reference_image] = STATE(138), + [sym_inline_image] = STATE(138), + [sym__image_description] = STATE(667), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(138), + [sym_full_reference_link] = STATE(138), + [sym_collapsed_reference_link] = STATE(138), + [sym_inline_link] = STATE(138), + [sym_link_text] = STATE(689), + [sym_span] = STATE(606), + [sym__bracketed_text] = STATE(658), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(138), + [sym_raw_inline] = STATE(138), + [sym_math] = STATE(138), + [sym_verbatim] = STATE(138), + [sym__todo_highlights] = STATE(138), + [sym_todo] = STATE(138), + [sym_note] = STATE(138), + [sym__symbol_fallback] = STATE(138), + [aux_sym__text] = STATE(124), + [aux_sym__inline_repeat1] = STATE(119), + [anon_sym_LBRACE_] = ACTIONS(419), + [anon_sym__] = ACTIONS(421), + [anon_sym_LBRACE_STAR] = ACTIONS(423), + [anon_sym_STAR] = ACTIONS(425), + [anon_sym_LBRACE_CARET] = ACTIONS(427), + [anon_sym_CARET] = ACTIONS(427), + [anon_sym_LBRACE_TILDE] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_LBRACE_EQ] = ACTIONS(431), + [anon_sym_LBRACE_PLUS] = ACTIONS(433), + [anon_sym_LBRACE_DASH] = ACTIONS(435), + [anon_sym_BSLASH] = ACTIONS(437), + [sym_quotation_marks] = ACTIONS(439), + [sym_ellipsis] = ACTIONS(439), + [sym_em_dash] = ACTIONS(439), + [sym_en_dash] = ACTIONS(441), + [sym_backslash_escape] = ACTIONS(441), + [anon_sym_LT] = ACTIONS(443), + [sym_symbol] = ACTIONS(439), + [anon_sym_LBRACK_CARET] = ACTIONS(445), + [anon_sym_BANG_LBRACK] = ACTIONS(447), + [anon_sym_LBRACK] = ACTIONS(449), + [anon_sym_DOLLAR] = ACTIONS(451), + [anon_sym_TODO] = ACTIONS(453), + [anon_sym_WIP] = ACTIONS(453), + [anon_sym_NOTE] = ACTIONS(455), + [anon_sym_INFO] = ACTIONS(455), + [anon_sym_XXX] = ACTIONS(455), + [sym_fixme] = ACTIONS(439), + [sym__whitespace1] = ACTIONS(457), + [sym__newline] = ACTIONS(1154), + [aux_sym__text_token1] = ACTIONS(461), + [sym__verbatim_begin] = ACTIONS(463), }, [119] = { - [sym__inline] = STATE(986), - [sym__element] = STATE(115), - [sym_emphasis] = STATE(192), - [sym_emphasis_begin] = STATE(1095), - [sym_strong] = STATE(192), - [sym_strong_begin] = STATE(1096), - [sym_superscript] = STATE(192), - [sym_superscript_begin] = STATE(1097), - [sym_subscript] = STATE(192), - [sym_subscript_begin] = STATE(1098), - [sym_highlighted] = STATE(192), - [sym_highlighted_begin] = STATE(1099), - [sym_insert] = STATE(192), - [sym_insert_begin] = STATE(1100), - [sym_delete] = STATE(192), - [sym_delete_begin] = STATE(1101), - [sym_hard_line_break] = STATE(192), - [sym__smart_punctuation] = STATE(192), - [sym_autolink] = STATE(192), - [sym_footnote_reference] = STATE(192), - [sym__image] = STATE(192), - [sym_full_reference_image] = STATE(192), - [sym_collapsed_reference_image] = STATE(192), - [sym_inline_image] = STATE(192), - [sym__image_description] = STATE(684), - [sym__link] = STATE(192), - [sym_full_reference_link] = STATE(192), - [sym_collapsed_reference_link] = STATE(192), - [sym_inline_link] = STATE(192), - [sym_link_text] = STATE(683), - [sym__comment_with_spaces] = STATE(192), - [sym_span] = STATE(192), - [sym_raw_inline] = STATE(192), - [sym_math] = STATE(192), - [sym_verbatim] = STATE(192), - [sym__todo_highlights] = STATE(192), - [sym_todo] = STATE(192), - [sym_note] = STATE(192), - [sym__symbol_fallback] = STATE(192), - [aux_sym__text] = STATE(141), - [aux_sym__inline_repeat1] = STATE(115), - [anon_sym_LBRACE_] = ACTIONS(129), - [anon_sym__] = ACTIONS(131), - [anon_sym_LBRACE_STAR] = ACTIONS(133), - [anon_sym_STAR] = ACTIONS(135), - [anon_sym_LBRACE_CARET] = ACTIONS(137), - [anon_sym_CARET] = ACTIONS(137), - [anon_sym_LBRACE_TILDE] = ACTIONS(139), - [anon_sym_TILDE] = ACTIONS(139), - [anon_sym_LBRACE_EQ] = ACTIONS(141), - [anon_sym_LBRACE_PLUS] = ACTIONS(143), - [anon_sym_LBRACE_DASH] = ACTIONS(145), - [anon_sym_BSLASH] = ACTIONS(147), - [sym_quotation_marks] = ACTIONS(149), - [sym_ellipsis] = ACTIONS(149), - [sym_em_dash] = ACTIONS(149), - [sym_en_dash] = ACTIONS(151), - [sym_backslash_escape] = ACTIONS(151), - [anon_sym_LT] = ACTIONS(153), - [sym_symbol] = ACTIONS(149), - [anon_sym_LBRACK_CARET] = ACTIONS(155), - [anon_sym_BANG_LBRACK] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LBRACE2] = ACTIONS(151), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_TODO] = ACTIONS(163), - [anon_sym_WIP] = ACTIONS(163), - [anon_sym_NOTE] = ACTIONS(165), - [anon_sym_INFO] = ACTIONS(165), - [anon_sym_XXX] = ACTIONS(165), - [sym_fixme] = ACTIONS(149), - [sym__whitespace1] = ACTIONS(167), - [sym__newline] = ACTIONS(169), - [aux_sym__text_token1] = ACTIONS(171), - [sym__verbatim_begin] = ACTIONS(173), - }, - [120] = { - [sym__inline] = STATE(987), - [sym__element] = STATE(93), - [sym_emphasis] = STATE(197), - [sym_emphasis_begin] = STATE(1088), - [sym_strong] = STATE(197), - [sym_strong_begin] = STATE(1089), - [sym_superscript] = STATE(197), - [sym_superscript_begin] = STATE(1090), - [sym_subscript] = STATE(197), - [sym_subscript_begin] = STATE(1091), - [sym_highlighted] = STATE(197), - [sym_highlighted_begin] = STATE(1092), - [sym_insert] = STATE(197), - [sym_insert_begin] = STATE(1093), - [sym_delete] = STATE(197), - [sym_delete_begin] = STATE(1094), - [sym_hard_line_break] = STATE(197), - [sym__smart_punctuation] = STATE(197), - [sym_autolink] = STATE(197), - [sym_footnote_reference] = STATE(197), - [sym__image] = STATE(197), - [sym_full_reference_image] = STATE(197), - [sym_collapsed_reference_image] = STATE(197), - [sym_inline_image] = STATE(197), - [sym__image_description] = STATE(697), - [sym__link] = STATE(197), - [sym_full_reference_link] = STATE(197), - [sym_collapsed_reference_link] = STATE(197), - [sym_inline_link] = STATE(197), - [sym_link_text] = STATE(682), - [sym__comment_with_spaces] = STATE(197), - [sym_span] = STATE(197), - [sym_raw_inline] = STATE(197), - [sym_math] = STATE(197), - [sym_verbatim] = STATE(197), - [sym__todo_highlights] = STATE(197), - [sym_todo] = STATE(197), - [sym_note] = STATE(197), - [sym__symbol_fallback] = STATE(197), - [aux_sym__text] = STATE(134), - [aux_sym__inline_repeat1] = STATE(93), - [anon_sym_LBRACE_] = ACTIONS(313), - [anon_sym__] = ACTIONS(315), - [anon_sym_LBRACE_STAR] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_LBRACE_CARET] = ACTIONS(321), - [anon_sym_CARET] = ACTIONS(321), - [anon_sym_LBRACE_TILDE] = ACTIONS(323), - [anon_sym_TILDE] = ACTIONS(323), - [anon_sym_LBRACE_EQ] = ACTIONS(325), - [anon_sym_LBRACE_PLUS] = ACTIONS(327), - [anon_sym_LBRACE_DASH] = ACTIONS(329), - [anon_sym_BSLASH] = ACTIONS(331), - [sym_quotation_marks] = ACTIONS(333), - [sym_ellipsis] = ACTIONS(333), - [sym_em_dash] = ACTIONS(333), - [sym_en_dash] = ACTIONS(335), - [sym_backslash_escape] = ACTIONS(335), - [anon_sym_LT] = ACTIONS(337), - [sym_symbol] = ACTIONS(333), - [anon_sym_LBRACK_CARET] = ACTIONS(339), - [anon_sym_BANG_LBRACK] = ACTIONS(341), - [anon_sym_LBRACK] = ACTIONS(343), - [anon_sym_LBRACE2] = ACTIONS(335), - [anon_sym_DOLLAR] = ACTIONS(345), - [anon_sym_TODO] = ACTIONS(347), - [anon_sym_WIP] = ACTIONS(347), - [anon_sym_NOTE] = ACTIONS(349), - [anon_sym_INFO] = ACTIONS(349), - [anon_sym_XXX] = ACTIONS(349), - [sym_fixme] = ACTIONS(333), - [sym__whitespace1] = ACTIONS(351), - [sym__newline] = ACTIONS(353), - [aux_sym__text_token1] = ACTIONS(355), - [sym__verbatim_begin] = ACTIONS(357), - }, - [121] = { - [sym__inline] = STATE(993), - [sym__element] = STATE(79), - [sym_emphasis] = STATE(161), - [sym_emphasis_begin] = STATE(1081), - [sym_strong] = STATE(161), - [sym_strong_begin] = STATE(1082), - [sym_superscript] = STATE(161), - [sym_superscript_begin] = STATE(1083), - [sym_subscript] = STATE(161), - [sym_subscript_begin] = STATE(1084), - [sym_highlighted] = STATE(161), - [sym_highlighted_begin] = STATE(1085), - [sym_insert] = STATE(161), - [sym_insert_begin] = STATE(1086), - [sym_delete] = STATE(161), - [sym_delete_begin] = STATE(1087), - [sym_hard_line_break] = STATE(161), - [sym__smart_punctuation] = STATE(161), - [sym_autolink] = STATE(161), - [sym_footnote_reference] = STATE(161), - [sym__image] = STATE(161), - [sym_full_reference_image] = STATE(161), - [sym_collapsed_reference_image] = STATE(161), - [sym_inline_image] = STATE(161), - [sym__image_description] = STATE(692), - [sym__link] = STATE(161), - [sym_full_reference_link] = STATE(161), - [sym_collapsed_reference_link] = STATE(161), - [sym_inline_link] = STATE(161), - [sym_link_text] = STATE(687), - [sym__comment_with_spaces] = STATE(161), - [sym_span] = STATE(161), - [sym_raw_inline] = STATE(161), - [sym_math] = STATE(161), - [sym_verbatim] = STATE(161), - [sym__todo_highlights] = STATE(161), - [sym_todo] = STATE(161), - [sym_note] = STATE(161), - [sym__symbol_fallback] = STATE(161), - [aux_sym__text] = STATE(149), - [aux_sym__inline_repeat1] = STATE(79), - [anon_sym_LBRACE_] = ACTIONS(359), - [anon_sym__] = ACTIONS(361), - [anon_sym_LBRACE_STAR] = ACTIONS(363), - [anon_sym_STAR] = ACTIONS(365), - [anon_sym_LBRACE_CARET] = ACTIONS(367), - [anon_sym_CARET] = ACTIONS(367), - [anon_sym_LBRACE_TILDE] = ACTIONS(369), - [anon_sym_TILDE] = ACTIONS(369), - [anon_sym_LBRACE_EQ] = ACTIONS(371), - [anon_sym_LBRACE_PLUS] = ACTIONS(373), - [anon_sym_LBRACE_DASH] = ACTIONS(375), - [anon_sym_BSLASH] = ACTIONS(377), - [sym_quotation_marks] = ACTIONS(379), - [sym_ellipsis] = ACTIONS(379), - [sym_em_dash] = ACTIONS(379), - [sym_en_dash] = ACTIONS(381), - [sym_backslash_escape] = ACTIONS(381), - [anon_sym_LT] = ACTIONS(383), - [sym_symbol] = ACTIONS(379), - [anon_sym_LBRACK_CARET] = ACTIONS(385), - [anon_sym_BANG_LBRACK] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(389), - [anon_sym_LBRACE2] = ACTIONS(381), - [anon_sym_DOLLAR] = ACTIONS(391), - [anon_sym_TODO] = ACTIONS(393), - [anon_sym_WIP] = ACTIONS(393), - [anon_sym_NOTE] = ACTIONS(395), - [anon_sym_INFO] = ACTIONS(395), - [anon_sym_XXX] = ACTIONS(395), - [sym_fixme] = ACTIONS(379), - [sym__whitespace1] = ACTIONS(397), - [sym__newline] = ACTIONS(399), - [aux_sym__text_token1] = ACTIONS(401), - [sym__verbatim_begin] = ACTIONS(403), - }, - [122] = { - [sym__inline_without_trailing_space] = STATE(995), - [sym__element] = STATE(572), - [sym_emphasis] = STATE(208), - [sym_emphasis_begin] = STATE(1074), - [sym_strong] = STATE(208), - [sym_strong_begin] = STATE(1075), - [sym_superscript] = STATE(208), - [sym_superscript_begin] = STATE(1076), - [sym_subscript] = STATE(208), - [sym_subscript_begin] = STATE(1077), - [sym_highlighted] = STATE(208), - [sym_highlighted_begin] = STATE(1078), - [sym_insert] = STATE(208), - [sym_insert_begin] = STATE(1079), - [sym_delete] = STATE(208), - [sym_delete_begin] = STATE(1080), - [sym_hard_line_break] = STATE(208), - [sym__smart_punctuation] = STATE(208), - [sym_autolink] = STATE(208), - [sym_footnote_reference] = STATE(208), - [sym__image] = STATE(208), - [sym_full_reference_image] = STATE(208), - [sym_collapsed_reference_image] = STATE(208), - [sym_inline_image] = STATE(208), - [sym__image_description] = STATE(680), - [sym__link] = STATE(208), - [sym_full_reference_link] = STATE(208), - [sym_collapsed_reference_link] = STATE(208), - [sym_inline_link] = STATE(208), - [sym_link_text] = STATE(663), - [sym__comment_with_spaces] = STATE(208), - [sym_span] = STATE(208), - [sym_raw_inline] = STATE(208), - [sym_math] = STATE(208), - [sym_verbatim] = STATE(208), - [sym__todo_highlights] = STATE(208), - [sym_todo] = STATE(208), - [sym_note] = STATE(208), - [sym__symbol_fallback] = STATE(208), - [aux_sym__text] = STATE(131), - [aux_sym__inline_repeat1] = STATE(130), - [anon_sym_LBRACE_] = ACTIONS(175), - [anon_sym__] = ACTIONS(177), - [anon_sym_LBRACE_STAR] = ACTIONS(179), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_LBRACE_CARET] = ACTIONS(183), - [anon_sym_CARET] = ACTIONS(183), - [anon_sym_LBRACE_TILDE] = ACTIONS(185), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_LBRACE_EQ] = ACTIONS(187), - [anon_sym_LBRACE_PLUS] = ACTIONS(189), - [anon_sym_LBRACE_DASH] = ACTIONS(191), - [anon_sym_BSLASH] = ACTIONS(193), - [sym_quotation_marks] = ACTIONS(195), - [sym_ellipsis] = ACTIONS(195), - [sym_em_dash] = ACTIONS(195), - [sym_en_dash] = ACTIONS(197), - [sym_backslash_escape] = ACTIONS(197), - [anon_sym_LT] = ACTIONS(199), - [sym_symbol] = ACTIONS(195), - [anon_sym_LBRACK_CARET] = ACTIONS(201), - [anon_sym_BANG_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE2] = ACTIONS(197), - [anon_sym_DOLLAR] = ACTIONS(207), - [anon_sym_TODO] = ACTIONS(209), - [anon_sym_WIP] = ACTIONS(209), - [anon_sym_NOTE] = ACTIONS(211), - [anon_sym_INFO] = ACTIONS(211), - [anon_sym_XXX] = ACTIONS(211), - [sym_fixme] = ACTIONS(195), - [sym__whitespace1] = ACTIONS(213), - [sym__newline] = ACTIONS(215), - [aux_sym__text_token1] = ACTIONS(217), - [sym__verbatim_begin] = ACTIONS(219), - }, - [123] = { - [sym__element] = STATE(123), - [sym_emphasis] = STATE(197), - [sym_emphasis_begin] = STATE(1088), - [sym_strong] = STATE(197), - [sym_strong_begin] = STATE(1089), - [sym_superscript] = STATE(197), - [sym_superscript_begin] = STATE(1090), - [sym_subscript] = STATE(197), - [sym_subscript_begin] = STATE(1091), - [sym_highlighted] = STATE(197), - [sym_highlighted_begin] = STATE(1092), - [sym_insert] = STATE(197), - [sym_insert_begin] = STATE(1093), - [sym_delete] = STATE(197), - [sym_delete_begin] = STATE(1094), - [sym_hard_line_break] = STATE(197), - [sym__smart_punctuation] = STATE(197), - [sym_autolink] = STATE(197), - [sym_footnote_reference] = STATE(197), - [sym__image] = STATE(197), - [sym_full_reference_image] = STATE(197), - [sym_collapsed_reference_image] = STATE(197), - [sym_inline_image] = STATE(197), - [sym__image_description] = STATE(697), - [sym__link] = STATE(197), - [sym_full_reference_link] = STATE(197), - [sym_collapsed_reference_link] = STATE(197), - [sym_inline_link] = STATE(197), - [sym_link_text] = STATE(682), - [sym__comment_with_spaces] = STATE(197), - [sym_span] = STATE(197), - [sym_raw_inline] = STATE(197), - [sym_math] = STATE(197), - [sym_verbatim] = STATE(197), - [sym__todo_highlights] = STATE(197), - [sym_todo] = STATE(197), - [sym_note] = STATE(197), - [sym__symbol_fallback] = STATE(197), - [aux_sym__text] = STATE(134), - [aux_sym__inline_repeat1] = STATE(123), - [anon_sym_LBRACE_] = ACTIONS(1044), - [anon_sym__] = ACTIONS(1047), - [anon_sym_LBRACE_STAR] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(1053), - [anon_sym_LBRACE_CARET] = ACTIONS(1056), - [anon_sym_CARET] = ACTIONS(1056), - [anon_sym_LBRACE_TILDE] = ACTIONS(1059), - [anon_sym_TILDE] = ACTIONS(1059), - [anon_sym_LBRACE_EQ] = ACTIONS(1062), - [anon_sym_LBRACE_PLUS] = ACTIONS(1065), - [anon_sym_LBRACE_DASH] = ACTIONS(1068), - [anon_sym_BSLASH] = ACTIONS(1071), - [sym_quotation_marks] = ACTIONS(1074), - [sym_ellipsis] = ACTIONS(1074), - [sym_em_dash] = ACTIONS(1074), - [sym_en_dash] = ACTIONS(1077), - [sym_backslash_escape] = ACTIONS(1077), - [anon_sym_LT] = ACTIONS(1080), - [sym_symbol] = ACTIONS(1074), - [anon_sym_LBRACK_CARET] = ACTIONS(1083), - [anon_sym_BANG_LBRACK] = ACTIONS(1086), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_LBRACE2] = ACTIONS(1077), - [anon_sym_DOLLAR] = ACTIONS(1092), - [anon_sym_TODO] = ACTIONS(1095), - [anon_sym_WIP] = ACTIONS(1095), - [anon_sym_NOTE] = ACTIONS(1098), - [anon_sym_INFO] = ACTIONS(1098), - [anon_sym_XXX] = ACTIONS(1098), - [sym_fixme] = ACTIONS(1074), - [sym__whitespace1] = ACTIONS(1101), - [sym__newline] = ACTIONS(1104), - [aux_sym__text_token1] = ACTIONS(1107), - [sym__verbatim_begin] = ACTIONS(1110), - [sym_subscript_end] = ACTIONS(549), - }, - [124] = { - [sym__inline_without_trailing_space] = STATE(996), - [sym__element] = STATE(603), - [sym_emphasis] = STATE(177), - [sym_emphasis_begin] = STATE(1067), - [sym_strong] = STATE(177), - [sym_strong_begin] = STATE(1068), - [sym_superscript] = STATE(177), - [sym_superscript_begin] = STATE(1069), - [sym_subscript] = STATE(177), - [sym_subscript_begin] = STATE(1070), - [sym_highlighted] = STATE(177), - [sym_highlighted_begin] = STATE(1071), - [sym_insert] = STATE(177), - [sym_insert_begin] = STATE(1072), - [sym_delete] = STATE(177), - [sym_delete_begin] = STATE(1073), - [sym_hard_line_break] = STATE(177), - [sym__smart_punctuation] = STATE(177), - [sym_autolink] = STATE(177), - [sym_footnote_reference] = STATE(177), - [sym__image] = STATE(177), - [sym_full_reference_image] = STATE(177), - [sym_collapsed_reference_image] = STATE(177), - [sym_inline_image] = STATE(177), - [sym__image_description] = STATE(681), - [sym__link] = STATE(177), - [sym_full_reference_link] = STATE(177), - [sym_collapsed_reference_link] = STATE(177), - [sym_inline_link] = STATE(177), - [sym_link_text] = STATE(668), - [sym__comment_with_spaces] = STATE(177), - [sym_span] = STATE(177), - [sym_raw_inline] = STATE(177), - [sym_math] = STATE(177), - [sym_verbatim] = STATE(177), - [sym__todo_highlights] = STATE(177), - [sym_todo] = STATE(177), - [sym_note] = STATE(177), - [sym__symbol_fallback] = STATE(177), - [aux_sym__text] = STATE(132), - [aux_sym__inline_repeat1] = STATE(128), - [anon_sym_LBRACE_] = ACTIONS(405), - [anon_sym__] = ACTIONS(407), - [anon_sym_LBRACE_STAR] = ACTIONS(409), - [anon_sym_STAR] = ACTIONS(411), - [anon_sym_LBRACE_CARET] = ACTIONS(413), - [anon_sym_CARET] = ACTIONS(413), - [anon_sym_LBRACE_TILDE] = ACTIONS(415), - [anon_sym_TILDE] = ACTIONS(415), - [anon_sym_LBRACE_EQ] = ACTIONS(417), - [anon_sym_LBRACE_PLUS] = ACTIONS(419), - [anon_sym_LBRACE_DASH] = ACTIONS(421), - [anon_sym_BSLASH] = ACTIONS(423), - [sym_quotation_marks] = ACTIONS(425), - [sym_ellipsis] = ACTIONS(425), - [sym_em_dash] = ACTIONS(425), - [sym_en_dash] = ACTIONS(427), - [sym_backslash_escape] = ACTIONS(427), - [anon_sym_LT] = ACTIONS(429), - [sym_symbol] = ACTIONS(425), - [anon_sym_LBRACK_CARET] = ACTIONS(431), - [anon_sym_BANG_LBRACK] = ACTIONS(433), - [anon_sym_LBRACK] = ACTIONS(435), - [anon_sym_LBRACE2] = ACTIONS(427), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_TODO] = ACTIONS(439), - [anon_sym_WIP] = ACTIONS(439), - [anon_sym_NOTE] = ACTIONS(441), - [anon_sym_INFO] = ACTIONS(441), - [anon_sym_XXX] = ACTIONS(441), - [sym_fixme] = ACTIONS(425), - [sym__whitespace1] = ACTIONS(443), - [sym__newline] = ACTIONS(445), - [aux_sym__text_token1] = ACTIONS(447), - [sym__verbatim_begin] = ACTIONS(449), - }, - [125] = { - [sym__inline] = STATE(1024), - [sym__element] = STATE(66), - [sym_emphasis] = STATE(171), - [sym_emphasis_begin] = STATE(1116), - [sym_strong] = STATE(171), - [sym_strong_begin] = STATE(1117), - [sym_superscript] = STATE(171), - [sym_superscript_begin] = STATE(1118), - [sym_subscript] = STATE(171), - [sym_subscript_begin] = STATE(1119), - [sym_highlighted] = STATE(171), - [sym_highlighted_begin] = STATE(1120), - [sym_insert] = STATE(171), - [sym_insert_begin] = STATE(1121), - [sym_delete] = STATE(171), - [sym_delete_begin] = STATE(1122), - [sym_hard_line_break] = STATE(171), - [sym__smart_punctuation] = STATE(171), - [sym_autolink] = STATE(171), - [sym_footnote_reference] = STATE(171), - [sym__image] = STATE(171), - [sym_full_reference_image] = STATE(171), - [sym_collapsed_reference_image] = STATE(171), - [sym_inline_image] = STATE(171), - [sym__image_description] = STATE(674), - [sym__link] = STATE(171), - [sym_full_reference_link] = STATE(171), - [sym_collapsed_reference_link] = STATE(171), - [sym_inline_link] = STATE(171), - [sym_link_text] = STATE(675), - [sym__comment_with_spaces] = STATE(171), - [sym_span] = STATE(171), - [sym_raw_inline] = STATE(171), - [sym_math] = STATE(171), - [sym_verbatim] = STATE(171), - [sym__todo_highlights] = STATE(171), - [sym_todo] = STATE(171), - [sym_note] = STATE(171), - [sym__symbol_fallback] = STATE(171), - [aux_sym__text] = STATE(146), - [aux_sym__inline_repeat1] = STATE(66), - [anon_sym_LBRACE_] = ACTIONS(451), - [anon_sym__] = ACTIONS(453), - [anon_sym_LBRACE_STAR] = ACTIONS(455), - [anon_sym_STAR] = ACTIONS(457), - [anon_sym_LBRACE_CARET] = ACTIONS(459), - [anon_sym_CARET] = ACTIONS(459), - [anon_sym_LBRACE_TILDE] = ACTIONS(461), - [anon_sym_TILDE] = ACTIONS(461), - [anon_sym_LBRACE_EQ] = ACTIONS(463), - [anon_sym_LBRACE_PLUS] = ACTIONS(465), - [anon_sym_LBRACE_DASH] = ACTIONS(467), - [anon_sym_BSLASH] = ACTIONS(469), - [sym_quotation_marks] = ACTIONS(471), - [sym_ellipsis] = ACTIONS(471), - [sym_em_dash] = ACTIONS(471), - [sym_en_dash] = ACTIONS(473), - [sym_backslash_escape] = ACTIONS(473), - [anon_sym_LT] = ACTIONS(475), - [sym_symbol] = ACTIONS(471), - [anon_sym_LBRACK_CARET] = ACTIONS(477), - [anon_sym_BANG_LBRACK] = ACTIONS(479), - [anon_sym_LBRACK] = ACTIONS(481), - [anon_sym_LBRACE2] = ACTIONS(473), - [anon_sym_DOLLAR] = ACTIONS(483), - [anon_sym_TODO] = ACTIONS(485), - [anon_sym_WIP] = ACTIONS(485), - [anon_sym_NOTE] = ACTIONS(487), - [anon_sym_INFO] = ACTIONS(487), - [anon_sym_XXX] = ACTIONS(487), - [sym_fixme] = ACTIONS(471), - [sym__whitespace1] = ACTIONS(489), - [sym__newline] = ACTIONS(491), - [aux_sym__text_token1] = ACTIONS(493), - [sym__verbatim_begin] = ACTIONS(495), - }, - [126] = { - [sym__inline] = STATE(1025), - [sym__element] = STATE(103), - [sym_emphasis] = STATE(180), - [sym_emphasis_begin] = STATE(1109), - [sym_strong] = STATE(180), - [sym_strong_begin] = STATE(1110), - [sym_superscript] = STATE(180), - [sym_superscript_begin] = STATE(1111), - [sym_subscript] = STATE(180), - [sym_subscript_begin] = STATE(1112), - [sym_highlighted] = STATE(180), - [sym_highlighted_begin] = STATE(1113), - [sym_insert] = STATE(180), - [sym_insert_begin] = STATE(1114), - [sym_delete] = STATE(180), - [sym_delete_begin] = STATE(1115), - [sym_hard_line_break] = STATE(180), - [sym__smart_punctuation] = STATE(180), - [sym_autolink] = STATE(180), - [sym_footnote_reference] = STATE(180), - [sym__image] = STATE(180), - [sym_full_reference_image] = STATE(180), - [sym_collapsed_reference_image] = STATE(180), - [sym_inline_image] = STATE(180), - [sym__image_description] = STATE(666), - [sym__link] = STATE(180), - [sym_full_reference_link] = STATE(180), - [sym_collapsed_reference_link] = STATE(180), - [sym_inline_link] = STATE(180), - [sym_link_text] = STATE(664), - [sym__comment_with_spaces] = STATE(180), - [sym_span] = STATE(180), - [sym_raw_inline] = STATE(180), - [sym_math] = STATE(180), - [sym_verbatim] = STATE(180), - [sym__todo_highlights] = STATE(180), - [sym_todo] = STATE(180), - [sym_note] = STATE(180), - [sym__symbol_fallback] = STATE(180), - [aux_sym__text] = STATE(159), - [aux_sym__inline_repeat1] = STATE(103), - [anon_sym_LBRACE_] = ACTIONS(221), - [anon_sym__] = ACTIONS(223), - [anon_sym_LBRACE_STAR] = ACTIONS(225), - [anon_sym_STAR] = ACTIONS(227), - [anon_sym_LBRACE_CARET] = ACTIONS(229), - [anon_sym_CARET] = ACTIONS(229), - [anon_sym_LBRACE_TILDE] = ACTIONS(231), - [anon_sym_TILDE] = ACTIONS(231), - [anon_sym_LBRACE_EQ] = ACTIONS(233), - [anon_sym_LBRACE_PLUS] = ACTIONS(235), - [anon_sym_LBRACE_DASH] = ACTIONS(237), - [anon_sym_BSLASH] = ACTIONS(239), - [sym_quotation_marks] = ACTIONS(241), - [sym_ellipsis] = ACTIONS(241), - [sym_em_dash] = ACTIONS(241), - [sym_en_dash] = ACTIONS(243), - [sym_backslash_escape] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(245), - [sym_symbol] = ACTIONS(241), - [anon_sym_LBRACK_CARET] = ACTIONS(247), - [anon_sym_BANG_LBRACK] = ACTIONS(249), - [anon_sym_LBRACK] = ACTIONS(251), - [anon_sym_LBRACE2] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(253), - [anon_sym_TODO] = ACTIONS(255), - [anon_sym_WIP] = ACTIONS(255), - [anon_sym_NOTE] = ACTIONS(257), - [anon_sym_INFO] = ACTIONS(257), - [anon_sym_XXX] = ACTIONS(257), - [sym_fixme] = ACTIONS(241), - [sym__whitespace1] = ACTIONS(259), - [sym__newline] = ACTIONS(261), - [aux_sym__text_token1] = ACTIONS(263), - [sym__verbatim_begin] = ACTIONS(265), - }, - [127] = { - [sym__inline] = STATE(1027), - [sym__element] = STATE(111), - [sym_emphasis] = STATE(186), - [sym_emphasis_begin] = STATE(1102), - [sym_strong] = STATE(186), - [sym_strong_begin] = STATE(1103), - [sym_superscript] = STATE(186), - [sym_superscript_begin] = STATE(1104), - [sym_subscript] = STATE(186), - [sym_subscript_begin] = STATE(1105), - [sym_highlighted] = STATE(186), - [sym_highlighted_begin] = STATE(1106), - [sym_insert] = STATE(186), - [sym_insert_begin] = STATE(1107), - [sym_delete] = STATE(186), - [sym_delete_begin] = STATE(1108), - [sym_hard_line_break] = STATE(186), - [sym__smart_punctuation] = STATE(186), - [sym_autolink] = STATE(186), - [sym_footnote_reference] = STATE(186), - [sym__image] = STATE(186), - [sym_full_reference_image] = STATE(186), - [sym_collapsed_reference_image] = STATE(186), - [sym_inline_image] = STATE(186), - [sym__image_description] = STATE(673), - [sym__link] = STATE(186), - [sym_full_reference_link] = STATE(186), - [sym_collapsed_reference_link] = STATE(186), - [sym_inline_link] = STATE(186), - [sym_link_text] = STATE(672), - [sym__comment_with_spaces] = STATE(186), - [sym_span] = STATE(186), - [sym_raw_inline] = STATE(186), - [sym_math] = STATE(186), - [sym_verbatim] = STATE(186), - [sym__todo_highlights] = STATE(186), - [sym_todo] = STATE(186), - [sym_note] = STATE(186), - [sym__symbol_fallback] = STATE(186), - [aux_sym__text] = STATE(155), - [aux_sym__inline_repeat1] = STATE(111), - [anon_sym_LBRACE_] = ACTIONS(267), - [anon_sym__] = ACTIONS(269), - [anon_sym_LBRACE_STAR] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_LBRACE_CARET] = ACTIONS(275), - [anon_sym_CARET] = ACTIONS(275), - [anon_sym_LBRACE_TILDE] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(277), - [anon_sym_LBRACE_EQ] = ACTIONS(279), - [anon_sym_LBRACE_PLUS] = ACTIONS(281), - [anon_sym_LBRACE_DASH] = ACTIONS(283), - [anon_sym_BSLASH] = ACTIONS(285), - [sym_quotation_marks] = ACTIONS(287), - [sym_ellipsis] = ACTIONS(287), - [sym_em_dash] = ACTIONS(287), - [sym_en_dash] = ACTIONS(289), - [sym_backslash_escape] = ACTIONS(289), - [anon_sym_LT] = ACTIONS(291), - [sym_symbol] = ACTIONS(287), - [anon_sym_LBRACK_CARET] = ACTIONS(293), - [anon_sym_BANG_LBRACK] = ACTIONS(295), - [anon_sym_LBRACK] = ACTIONS(297), - [anon_sym_LBRACE2] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(299), - [anon_sym_TODO] = ACTIONS(301), - [anon_sym_WIP] = ACTIONS(301), - [anon_sym_NOTE] = ACTIONS(303), - [anon_sym_INFO] = ACTIONS(303), - [anon_sym_XXX] = ACTIONS(303), - [sym_fixme] = ACTIONS(287), - [sym__whitespace1] = ACTIONS(305), - [sym__newline] = ACTIONS(307), - [aux_sym__text_token1] = ACTIONS(309), - [sym__verbatim_begin] = ACTIONS(311), - }, - [128] = { - [sym__element] = STATE(601), - [sym_emphasis] = STATE(177), - [sym_emphasis_begin] = STATE(1067), - [sym_strong] = STATE(177), - [sym_strong_begin] = STATE(1068), - [sym_superscript] = STATE(177), - [sym_superscript_begin] = STATE(1069), - [sym_subscript] = STATE(177), - [sym_subscript_begin] = STATE(1070), - [sym_highlighted] = STATE(177), - [sym_highlighted_begin] = STATE(1071), - [sym_insert] = STATE(177), - [sym_insert_begin] = STATE(1072), - [sym_delete] = STATE(177), - [sym_delete_begin] = STATE(1073), - [sym_hard_line_break] = STATE(177), - [sym__smart_punctuation] = STATE(177), - [sym_autolink] = STATE(177), - [sym_footnote_reference] = STATE(177), - [sym__image] = STATE(177), - [sym_full_reference_image] = STATE(177), - [sym_collapsed_reference_image] = STATE(177), - [sym_inline_image] = STATE(177), - [sym__image_description] = STATE(681), - [sym__link] = STATE(177), - [sym_full_reference_link] = STATE(177), - [sym_collapsed_reference_link] = STATE(177), - [sym_inline_link] = STATE(177), + [sym__element] = STATE(119), + [sym_emphasis] = STATE(145), + [sym_emphasis_begin] = STATE(1210), + [sym_strong] = STATE(145), + [sym_strong_begin] = STATE(1211), + [sym_superscript] = STATE(145), + [sym_superscript_begin] = STATE(1212), + [sym_subscript] = STATE(145), + [sym_subscript_begin] = STATE(1213), + [sym_highlighted] = STATE(145), + [sym_highlighted_begin] = STATE(1214), + [sym_insert] = STATE(145), + [sym_insert_begin] = STATE(1215), + [sym_delete] = STATE(145), + [sym_delete_begin] = STATE(1216), + [sym_hard_line_break] = STATE(145), + [sym__smart_punctuation] = STATE(145), + [sym_autolink] = STATE(145), + [sym_footnote_reference] = STATE(145), + [sym__image] = STATE(145), + [sym_full_reference_image] = STATE(145), + [sym_collapsed_reference_image] = STATE(145), + [sym_inline_image] = STATE(145), + [sym__image_description] = STATE(686), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(145), + [sym_full_reference_link] = STATE(145), + [sym_collapsed_reference_link] = STATE(145), + [sym_inline_link] = STATE(145), [sym_link_text] = STATE(668), - [sym__comment_with_spaces] = STATE(177), - [sym_span] = STATE(177), - [sym_raw_inline] = STATE(177), - [sym_math] = STATE(177), - [sym_verbatim] = STATE(177), - [sym__todo_highlights] = STATE(177), - [sym_todo] = STATE(177), - [sym_note] = STATE(177), - [sym__symbol_fallback] = STATE(177), + [sym_span] = STATE(119), + [sym__bracketed_text] = STATE(652), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(145), + [sym_raw_inline] = STATE(145), + [sym_math] = STATE(145), + [sym_verbatim] = STATE(145), + [sym__todo_highlights] = STATE(145), + [sym_todo] = STATE(145), + [sym_note] = STATE(145), + [sym__symbol_fallback] = STATE(145), [aux_sym__text] = STATE(132), - [aux_sym__inline_repeat1] = STATE(129), - [anon_sym_LBRACE_] = ACTIONS(405), - [anon_sym__] = ACTIONS(407), - [anon_sym_LBRACE_STAR] = ACTIONS(409), - [anon_sym_STAR] = ACTIONS(411), - [anon_sym_LBRACE_CARET] = ACTIONS(413), - [anon_sym_CARET] = ACTIONS(413), - [anon_sym_LBRACE_TILDE] = ACTIONS(415), - [anon_sym_TILDE] = ACTIONS(415), - [anon_sym_LBRACE_EQ] = ACTIONS(417), - [anon_sym_LBRACE_PLUS] = ACTIONS(419), - [anon_sym_LBRACE_DASH] = ACTIONS(421), - [anon_sym_BSLASH] = ACTIONS(423), - [sym_quotation_marks] = ACTIONS(425), - [sym_ellipsis] = ACTIONS(425), - [sym_em_dash] = ACTIONS(425), - [sym_en_dash] = ACTIONS(427), - [sym_backslash_escape] = ACTIONS(427), - [anon_sym_LT] = ACTIONS(429), - [sym_symbol] = ACTIONS(425), - [anon_sym_LBRACK_CARET] = ACTIONS(431), - [anon_sym_BANG_LBRACK] = ACTIONS(433), - [anon_sym_LBRACK] = ACTIONS(435), - [anon_sym_LBRACE2] = ACTIONS(427), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_TODO] = ACTIONS(439), - [anon_sym_WIP] = ACTIONS(439), - [anon_sym_NOTE] = ACTIONS(441), - [anon_sym_INFO] = ACTIONS(441), - [anon_sym_XXX] = ACTIONS(441), - [sym_fixme] = ACTIONS(425), - [sym__whitespace1] = ACTIONS(443), - [sym__newline] = ACTIONS(1113), - [aux_sym__text_token1] = ACTIONS(447), - [sym__verbatim_begin] = ACTIONS(449), - }, - [129] = { - [sym__element] = STATE(129), - [sym_emphasis] = STATE(533), - [sym_emphasis_begin] = STATE(1123), - [sym_strong] = STATE(533), - [sym_strong_begin] = STATE(1124), - [sym_superscript] = STATE(533), - [sym_superscript_begin] = STATE(1125), - [sym_subscript] = STATE(533), - [sym_subscript_begin] = STATE(1126), - [sym_highlighted] = STATE(533), - [sym_highlighted_begin] = STATE(1127), - [sym_insert] = STATE(533), - [sym_insert_begin] = STATE(1128), - [sym_delete] = STATE(533), - [sym_delete_begin] = STATE(1129), - [sym_hard_line_break] = STATE(533), - [sym__smart_punctuation] = STATE(533), - [sym_autolink] = STATE(533), - [sym_footnote_reference] = STATE(533), - [sym__image] = STATE(533), - [sym_full_reference_image] = STATE(533), - [sym_collapsed_reference_image] = STATE(533), - [sym_inline_image] = STATE(533), - [sym__image_description] = STATE(679), - [sym__link] = STATE(533), - [sym_full_reference_link] = STATE(533), - [sym_collapsed_reference_link] = STATE(533), - [sym_inline_link] = STATE(533), - [sym_link_text] = STATE(686), - [sym__comment_with_spaces] = STATE(533), - [sym_span] = STATE(533), - [sym_raw_inline] = STATE(533), - [sym_math] = STATE(533), - [sym_verbatim] = STATE(533), - [sym__todo_highlights] = STATE(533), - [sym_todo] = STATE(533), - [sym_note] = STATE(533), - [sym__symbol_fallback] = STATE(533), - [aux_sym__text] = STATE(165), - [aux_sym__inline_repeat1] = STATE(129), - [anon_sym_LBRACE_] = ACTIONS(1115), - [anon_sym__] = ACTIONS(1118), - [anon_sym_LBRACE_STAR] = ACTIONS(1121), - [anon_sym_STAR] = ACTIONS(1124), - [anon_sym_LBRACE_CARET] = ACTIONS(1127), - [anon_sym_CARET] = ACTIONS(1127), - [anon_sym_LBRACE_TILDE] = ACTIONS(1130), - [anon_sym_TILDE] = ACTIONS(1130), - [anon_sym_LBRACE_EQ] = ACTIONS(1133), - [anon_sym_LBRACE_PLUS] = ACTIONS(1136), - [anon_sym_LBRACE_DASH] = ACTIONS(1139), - [anon_sym_BSLASH] = ACTIONS(1142), - [sym_quotation_marks] = ACTIONS(1145), - [sym_ellipsis] = ACTIONS(1145), - [sym_em_dash] = ACTIONS(1145), - [sym_en_dash] = ACTIONS(1148), - [sym_backslash_escape] = ACTIONS(1148), - [anon_sym_LT] = ACTIONS(1151), - [sym_symbol] = ACTIONS(1145), - [anon_sym_LBRACK_CARET] = ACTIONS(1154), - [anon_sym_BANG_LBRACK] = ACTIONS(1157), - [anon_sym_LBRACK] = ACTIONS(1160), - [anon_sym_LBRACE2] = ACTIONS(1148), - [anon_sym_DOLLAR] = ACTIONS(1163), - [anon_sym_TODO] = ACTIONS(1166), - [anon_sym_WIP] = ACTIONS(1166), - [anon_sym_NOTE] = ACTIONS(1169), - [anon_sym_INFO] = ACTIONS(1169), - [anon_sym_XXX] = ACTIONS(1169), - [sym_fixme] = ACTIONS(1145), - [sym__whitespace1] = ACTIONS(1172), - [sym__newline] = ACTIONS(1175), - [aux_sym__text_token1] = ACTIONS(1178), - [sym__verbatim_begin] = ACTIONS(1181), - }, - [130] = { - [sym__element] = STATE(597), - [sym_emphasis] = STATE(208), - [sym_emphasis_begin] = STATE(1074), - [sym_strong] = STATE(208), - [sym_strong_begin] = STATE(1075), - [sym_superscript] = STATE(208), - [sym_superscript_begin] = STATE(1076), - [sym_subscript] = STATE(208), - [sym_subscript_begin] = STATE(1077), - [sym_highlighted] = STATE(208), - [sym_highlighted_begin] = STATE(1078), - [sym_insert] = STATE(208), - [sym_insert_begin] = STATE(1079), - [sym_delete] = STATE(208), - [sym_delete_begin] = STATE(1080), - [sym_hard_line_break] = STATE(208), - [sym__smart_punctuation] = STATE(208), - [sym_autolink] = STATE(208), - [sym_footnote_reference] = STATE(208), - [sym__image] = STATE(208), - [sym_full_reference_image] = STATE(208), - [sym_collapsed_reference_image] = STATE(208), - [sym_inline_image] = STATE(208), - [sym__image_description] = STATE(680), - [sym__link] = STATE(208), - [sym_full_reference_link] = STATE(208), - [sym_collapsed_reference_link] = STATE(208), - [sym_inline_link] = STATE(208), - [sym_link_text] = STATE(663), - [sym__comment_with_spaces] = STATE(208), - [sym_span] = STATE(208), - [sym_raw_inline] = STATE(208), - [sym_math] = STATE(208), - [sym_verbatim] = STATE(208), - [sym__todo_highlights] = STATE(208), - [sym_todo] = STATE(208), - [sym_note] = STATE(208), - [sym__symbol_fallback] = STATE(208), - [aux_sym__text] = STATE(131), - [aux_sym__inline_repeat1] = STATE(129), - [anon_sym_LBRACE_] = ACTIONS(175), - [anon_sym__] = ACTIONS(177), - [anon_sym_LBRACE_STAR] = ACTIONS(179), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_LBRACE_CARET] = ACTIONS(183), - [anon_sym_CARET] = ACTIONS(183), - [anon_sym_LBRACE_TILDE] = ACTIONS(185), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_LBRACE_EQ] = ACTIONS(187), - [anon_sym_LBRACE_PLUS] = ACTIONS(189), - [anon_sym_LBRACE_DASH] = ACTIONS(191), - [anon_sym_BSLASH] = ACTIONS(193), - [sym_quotation_marks] = ACTIONS(195), - [sym_ellipsis] = ACTIONS(195), - [sym_em_dash] = ACTIONS(195), - [sym_en_dash] = ACTIONS(197), - [sym_backslash_escape] = ACTIONS(197), - [anon_sym_LT] = ACTIONS(199), - [sym_symbol] = ACTIONS(195), - [anon_sym_LBRACK_CARET] = ACTIONS(201), - [anon_sym_BANG_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACE2] = ACTIONS(197), - [anon_sym_DOLLAR] = ACTIONS(207), - [anon_sym_TODO] = ACTIONS(209), - [anon_sym_WIP] = ACTIONS(209), - [anon_sym_NOTE] = ACTIONS(211), - [anon_sym_INFO] = ACTIONS(211), - [anon_sym_XXX] = ACTIONS(211), - [sym_fixme] = ACTIONS(195), - [sym__whitespace1] = ACTIONS(213), - [sym__newline] = ACTIONS(1113), - [aux_sym__text_token1] = ACTIONS(217), - [sym__verbatim_begin] = ACTIONS(219), + [aux_sym__inline_repeat1] = STATE(119), + [anon_sym_LBRACE_] = ACTIONS(1156), + [anon_sym__] = ACTIONS(1159), + [anon_sym_LBRACE_STAR] = ACTIONS(1162), + [anon_sym_STAR] = ACTIONS(1165), + [anon_sym_LBRACE_CARET] = ACTIONS(1168), + [anon_sym_CARET] = ACTIONS(1168), + [anon_sym_LBRACE_TILDE] = ACTIONS(1171), + [anon_sym_TILDE] = ACTIONS(1171), + [anon_sym_LBRACE_EQ] = ACTIONS(1174), + [anon_sym_LBRACE_PLUS] = ACTIONS(1177), + [anon_sym_LBRACE_DASH] = ACTIONS(1180), + [anon_sym_BSLASH] = ACTIONS(1183), + [sym_quotation_marks] = ACTIONS(1186), + [sym_ellipsis] = ACTIONS(1186), + [sym_em_dash] = ACTIONS(1186), + [sym_en_dash] = ACTIONS(1189), + [sym_backslash_escape] = ACTIONS(1189), + [anon_sym_LT] = ACTIONS(1192), + [sym_symbol] = ACTIONS(1186), + [anon_sym_LBRACK_CARET] = ACTIONS(1195), + [anon_sym_BANG_LBRACK] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1201), + [anon_sym_DOLLAR] = ACTIONS(1204), + [anon_sym_TODO] = ACTIONS(1207), + [anon_sym_WIP] = ACTIONS(1207), + [anon_sym_NOTE] = ACTIONS(1210), + [anon_sym_INFO] = ACTIONS(1210), + [anon_sym_XXX] = ACTIONS(1210), + [sym_fixme] = ACTIONS(1186), + [sym__whitespace1] = ACTIONS(1213), + [sym__newline] = ACTIONS(1216), + [aux_sym__text_token1] = ACTIONS(1219), + [sym__verbatim_begin] = ACTIONS(1222), + }, + [120] = { + [sym__element] = STATE(567), + [sym_emphasis] = STATE(142), + [sym_emphasis_begin] = STATE(1147), + [sym_strong] = STATE(142), + [sym_strong_begin] = STATE(1148), + [sym_superscript] = STATE(142), + [sym_superscript_begin] = STATE(1149), + [sym_subscript] = STATE(142), + [sym_subscript_begin] = STATE(1150), + [sym_highlighted] = STATE(142), + [sym_highlighted_begin] = STATE(1151), + [sym_insert] = STATE(142), + [sym_insert_begin] = STATE(1152), + [sym_delete] = STATE(142), + [sym_delete_begin] = STATE(1153), + [sym_hard_line_break] = STATE(142), + [sym__smart_punctuation] = STATE(142), + [sym_autolink] = STATE(142), + [sym_footnote_reference] = STATE(142), + [sym__image] = STATE(142), + [sym_full_reference_image] = STATE(142), + [sym_collapsed_reference_image] = STATE(142), + [sym_inline_image] = STATE(142), + [sym__image_description] = STATE(685), + [sym__image_description_begin] = STATE(1103), + [sym__link] = STATE(142), + [sym_full_reference_link] = STATE(142), + [sym_collapsed_reference_link] = STATE(142), + [sym_inline_link] = STATE(142), + [sym_link_text] = STATE(683), + [sym_span] = STATE(567), + [sym__bracketed_text] = STATE(657), + [sym__bracketed_text_begin] = STATE(1102), + [sym__comment_with_spaces] = STATE(142), + [sym_raw_inline] = STATE(142), + [sym_math] = STATE(142), + [sym_verbatim] = STATE(142), + [sym__todo_highlights] = STATE(142), + [sym_todo] = STATE(142), + [sym_note] = STATE(142), + [sym__symbol_fallback] = STATE(142), + [aux_sym__text] = STATE(126), + [aux_sym__inline_repeat1] = STATE(119), + [anon_sym_LBRACE_] = ACTIONS(373), + [anon_sym__] = ACTIONS(375), + [anon_sym_LBRACE_STAR] = ACTIONS(377), + [anon_sym_STAR] = ACTIONS(379), + [anon_sym_LBRACE_CARET] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(381), + [anon_sym_LBRACE_TILDE] = ACTIONS(383), + [anon_sym_TILDE] = ACTIONS(383), + [anon_sym_LBRACE_EQ] = ACTIONS(385), + [anon_sym_LBRACE_PLUS] = ACTIONS(387), + [anon_sym_LBRACE_DASH] = ACTIONS(389), + [anon_sym_BSLASH] = ACTIONS(391), + [sym_quotation_marks] = ACTIONS(393), + [sym_ellipsis] = ACTIONS(393), + [sym_em_dash] = ACTIONS(393), + [sym_en_dash] = ACTIONS(395), + [sym_backslash_escape] = ACTIONS(395), + [anon_sym_LT] = ACTIONS(397), + [sym_symbol] = ACTIONS(393), + [anon_sym_LBRACK_CARET] = ACTIONS(399), + [anon_sym_BANG_LBRACK] = ACTIONS(401), + [anon_sym_LBRACK] = ACTIONS(403), + [anon_sym_DOLLAR] = ACTIONS(405), + [anon_sym_TODO] = ACTIONS(407), + [anon_sym_WIP] = ACTIONS(407), + [anon_sym_NOTE] = ACTIONS(409), + [anon_sym_INFO] = ACTIONS(409), + [anon_sym_XXX] = ACTIONS(409), + [sym_fixme] = ACTIONS(393), + [sym__whitespace1] = ACTIONS(411), + [sym__newline] = ACTIONS(1154), + [aux_sym__text_token1] = ACTIONS(415), + [sym__verbatim_begin] = ACTIONS(417), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 5, - ACTIONS(1184), 1, + [0] = 6, + ACTIONS(1229), 1, anon_sym_LBRACE, - STATE(205), 1, + STATE(185), 1, aux_sym__text, - STATE(592), 1, + STATE(1097), 1, + sym__inline_attribute_begin, + STATE(533), 2, sym_inline_attribute, - ACTIONS(1188), 6, + sym__inline_attribute_fallback, + ACTIONS(1227), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1186), 29, + ACTIONS(1225), 29, sym__verbatim_begin, - sym_strong_end, + sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15584,23 +14606,25 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [49] = 5, - ACTIONS(1190), 1, + [52] = 6, + ACTIONS(1231), 1, anon_sym_LBRACE, - STATE(198), 1, + STATE(201), 1, aux_sym__text, - STATE(577), 1, + STATE(1112), 1, + sym__inline_attribute_begin, + STATE(536), 2, sym_inline_attribute, - ACTIONS(1188), 6, + sym__inline_attribute_fallback, + ACTIONS(1227), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1186), 29, + ACTIONS(1225), 29, sym__verbatim_begin, - sym_emphasis_end, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15628,31 +14652,26 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [98] = 4, - ACTIONS(1192), 1, - sym__id, - STATE(1013), 1, - sym_reference_label, - ACTIONS(49), 15, + [104] = 6, + ACTIONS(1233), 1, anon_sym_LBRACE, - anon_sym__, + STATE(159), 1, + aux_sym__text, + STATE(1082), 1, + sym__inline_attribute_begin, + STATE(549), 2, + sym_inline_attribute, + sym__inline_attribute_fallback, + ACTIONS(1227), 5, anon_sym_BSLASH, - sym_em_dash, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, aux_sym__text_token1, - ACTIONS(101), 21, + ACTIONS(1225), 29, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, anon_sym_LBRACE_CARET, @@ -15664,30 +14683,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, + sym_em_dash, anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, sym__whitespace1, sym__newline, - [145] = 5, - ACTIONS(1194), 1, + [156] = 6, + ACTIONS(1235), 1, anon_sym_LBRACE, - STATE(195), 1, + STATE(163), 1, aux_sym__text, - STATE(586), 1, + STATE(976), 1, + sym__inline_attribute_begin, + STATE(551), 2, sym_inline_attribute, - ACTIONS(1188), 6, + sym__inline_attribute_fallback, + ACTIONS(1227), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1186), 29, + ACTIONS(1225), 29, sym__verbatim_begin, - sym_subscript_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15715,21 +14744,23 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [194] = 4, - ACTIONS(1200), 1, - anon_sym_LBRACE_EQ2, - STATE(340), 1, - sym_raw_inline_attribute, - ACTIONS(1196), 8, + [208] = 6, + ACTIONS(1237), 1, anon_sym_LBRACE, - anon_sym_LBRACE_EQ, + STATE(188), 1, + aux_sym__text, + STATE(1022), 1, + sym__inline_attribute_begin, + STATE(569), 2, + sym_inline_attribute, + sym__inline_attribute_fallback, + ACTIONS(1227), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1198), 28, + ACTIONS(1225), 29, sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, @@ -15740,6 +14771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, + anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -15758,31 +14790,27 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [241] = 4, - ACTIONS(1192), 1, - sym__id, - STATE(925), 1, - sym_reference_label, - ACTIONS(49), 15, + [260] = 6, + ACTIONS(1239), 1, anon_sym_LBRACE, - anon_sym__, + STATE(204), 1, + aux_sym__text, + STATE(992), 1, + sym__inline_attribute_begin, + STATE(545), 2, + sym_inline_attribute, + sym__inline_attribute_fallback, + ACTIONS(1227), 5, anon_sym_BSLASH, - sym_em_dash, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, aux_sym__text_token1, - ACTIONS(101), 21, + ACTIONS(1225), 29, sym__verbatim_begin, - sym_superscript_end, + sym_strong_end, anon_sym_LBRACE_, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, anon_sym_LBRACE_CARET, @@ -15794,38 +14822,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, + sym_em_dash, anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, sym__whitespace1, sym__newline, - [288] = 4, - ACTIONS(1192), 1, - sym__id, - STATE(874), 1, - sym_reference_label, - ACTIONS(49), 15, + [312] = 6, + ACTIONS(1241), 1, anon_sym_LBRACE, - anon_sym__, + STATE(158), 1, + aux_sym__text, + STATE(1067), 1, + sym__inline_attribute_begin, + STATE(557), 2, + sym_inline_attribute, + sym__inline_attribute_fallback, + ACTIONS(1227), 5, anon_sym_BSLASH, - sym_em_dash, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, aux_sym__text_token1, - ACTIONS(101), 21, + ACTIONS(1225), 29, sym__verbatim_begin, - sym_highlighted_end, + sym_delete_end, anon_sym_LBRACE_, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, anon_sym_LBRACE_CARET, @@ -15837,30 +14868,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, + sym_em_dash, anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, sym__whitespace1, sym__newline, - [335] = 4, - ACTIONS(1202), 1, - anon_sym_LBRACE_EQ2, - STATE(259), 1, - sym_raw_inline_attribute, - ACTIONS(1196), 8, + [364] = 6, + ACTIONS(1243), 1, anon_sym_LBRACE, - anon_sym_LBRACE_EQ, + STATE(173), 1, + aux_sym__text, + STATE(1037), 1, + sym__inline_attribute_begin, + STATE(607), 2, + sym_inline_attribute, + sym__inline_attribute_fallback, + ACTIONS(1227), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1198), 28, + ACTIONS(1225), 29, sym__verbatim_begin, - sym_strong_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15869,6 +14909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, + anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -15887,22 +14928,25 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [382] = 5, - ACTIONS(1204), 1, + [416] = 6, + ACTIONS(1245), 1, anon_sym_LBRACE, - STATE(187), 1, + STATE(167), 1, aux_sym__text, - STATE(596), 1, + STATE(1052), 1, + sym__inline_attribute_begin, + STATE(565), 2, sym_inline_attribute, - ACTIONS(1188), 6, + sym__inline_attribute_fallback, + ACTIONS(1227), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1186), 29, + ACTIONS(1225), 29, sym__verbatim_begin, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15920,7 +14964,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -15931,30 +14974,27 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [431] = 4, - ACTIONS(1192), 1, - sym__id, - STATE(853), 1, - sym_reference_label, - ACTIONS(49), 15, + [468] = 6, + ACTIONS(1247), 1, anon_sym_LBRACE, - anon_sym__, + STATE(200), 1, + aux_sym__text, + STATE(1090), 1, + sym__inline_attribute_begin, + STATE(537), 2, + sym_inline_attribute, + sym__inline_attribute_fallback, + ACTIONS(1227), 5, anon_sym_BSLASH, - sym_em_dash, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, aux_sym__text_token1, - ACTIONS(101), 21, + ACTIONS(1225), 29, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, anon_sym_LBRACE_CARET, @@ -15966,31 +15006,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, + sym_em_dash, anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, sym__whitespace1, sym__newline, - [478] = 5, - ACTIONS(1206), 1, + [520] = 6, + ACTIONS(1249), 1, anon_sym_LBRACE, - STATE(190), 1, + STATE(199), 1, aux_sym__text, - STATE(583), 1, + STATE(1007), 1, + sym__inline_attribute_begin, + STATE(535), 2, sym_inline_attribute, - ACTIONS(1188), 6, + sym__inline_attribute_fallback, + ACTIONS(1227), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1186), 29, + ACTIONS(1225), 29, sym__verbatim_begin, - sym_highlighted_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16018,23 +15066,24 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [527] = 4, - ACTIONS(1208), 1, - anon_sym_LBRACE_EQ2, - STATE(474), 1, - sym_raw_inline_attribute, - ACTIONS(1196), 8, + [572] = 6, + ACTIONS(1251), 1, anon_sym_LBRACE, - anon_sym_LBRACE_EQ, + STATE(337), 1, + aux_sym__text, + STATE(1127), 1, + sym__inline_attribute_begin, + STATE(613), 2, + sym_inline_attribute, + sym__inline_attribute_fallback, + ACTIONS(1227), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1198), 28, + ACTIONS(1225), 28, sym__verbatim_begin, - sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16043,6 +15092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, + anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -16061,31 +15111,24 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [574] = 4, - ACTIONS(1192), 1, - sym__id, - STATE(906), 1, - sym_reference_label, - ACTIONS(49), 15, + [623] = 5, + ACTIONS(1233), 1, anon_sym_LBRACE, - anon_sym__, + STATE(1082), 1, + sym__inline_attribute_begin, + STATE(549), 2, + sym_inline_attribute, + sym__inline_attribute_fallback, + ACTIONS(1227), 5, anon_sym_BSLASH, - sym_em_dash, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, aux_sym__text_token1, - ACTIONS(101), 21, + ACTIONS(1225), 29, sym__verbatim_begin, - sym_subscript_end, anon_sym_LBRACE_, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, anon_sym_LBRACE_CARET, @@ -16097,30 +15140,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, + sym_em_dash, anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, sym__whitespace1, sym__newline, - [621] = 4, - ACTIONS(1210), 1, - anon_sym_LBRACE_EQ2, - STATE(295), 1, - sym_raw_inline_attribute, - ACTIONS(1196), 8, + [672] = 5, + ACTIONS(1241), 1, anon_sym_LBRACE, - anon_sym_LBRACE_EQ, + STATE(1067), 1, + sym__inline_attribute_begin, + STATE(557), 2, + sym_inline_attribute, + sym__inline_attribute_fallback, + ACTIONS(1227), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1198), 28, + ACTIONS(1225), 29, sym__verbatim_begin, - sym_superscript_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16129,6 +15180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, + anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -16147,30 +15199,25 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [668] = 4, - ACTIONS(1192), 1, - sym__id, - STATE(1055), 1, - sym_reference_label, - ACTIONS(49), 15, + [721] = 5, + ACTIONS(1231), 1, anon_sym_LBRACE, - anon_sym__, + STATE(1112), 1, + sym__inline_attribute_begin, + STATE(536), 2, + sym_inline_attribute, + sym__inline_attribute_fallback, + ACTIONS(1227), 5, anon_sym_BSLASH, - sym_em_dash, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, aux_sym__text_token1, - ACTIONS(101), 21, + ACTIONS(1225), 29, sym__verbatim_begin, + sym__bracketed_text_end, anon_sym_LBRACE_, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, anon_sym_LBRACE_CARET, @@ -16182,30 +15229,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, + sym_em_dash, anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, sym__whitespace1, sym__newline, - [715] = 5, - ACTIONS(1212), 1, + [770] = 5, + ACTIONS(1237), 1, anon_sym_LBRACE, - STATE(167), 1, - aux_sym__text, - STATE(564), 1, + STATE(1022), 1, + sym__inline_attribute_begin, + STATE(569), 2, sym_inline_attribute, - ACTIONS(1188), 6, + sym__inline_attribute_fallback, + ACTIONS(1227), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1186), 29, + ACTIONS(1225), 29, sym__verbatim_begin, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16224,7 +15278,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -16234,22 +15287,23 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [764] = 4, - ACTIONS(1214), 1, - anon_sym_LBRACE_EQ2, - STATE(448), 1, - sym_raw_inline_attribute, - ACTIONS(1196), 8, + [819] = 5, + ACTIONS(1229), 1, anon_sym_LBRACE, - anon_sym_LBRACE_EQ, + STATE(1097), 1, + sym__inline_attribute_begin, + STATE(533), 2, + sym_inline_attribute, + sym__inline_attribute_fallback, + ACTIONS(1227), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1198), 28, + ACTIONS(1225), 29, sym__verbatim_begin, + sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16258,6 +15312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, + anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -16266,7 +15321,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -16277,21 +15331,21 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [811] = 4, - ACTIONS(1216), 1, - anon_sym_LBRACE_EQ2, - STATE(219), 1, - sym_raw_inline_attribute, - ACTIONS(1196), 8, + [868] = 5, + ACTIONS(1235), 1, anon_sym_LBRACE, - anon_sym_LBRACE_EQ, + STATE(976), 1, + sym__inline_attribute_begin, + STATE(551), 2, + sym_inline_attribute, + sym__inline_attribute_fallback, + ACTIONS(1227), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1198), 28, + ACTIONS(1225), 29, sym__verbatim_begin, sym_emphasis_end, anon_sym_LBRACE_, @@ -16302,6 +15356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, + anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -16320,23 +15375,23 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [858] = 5, - ACTIONS(1218), 1, + [917] = 5, + ACTIONS(1245), 1, anon_sym_LBRACE, - STATE(201), 1, - aux_sym__text, - STATE(581), 1, + STATE(1052), 1, + sym__inline_attribute_begin, + STATE(565), 2, sym_inline_attribute, - ACTIONS(1188), 6, + sym__inline_attribute_fallback, + ACTIONS(1227), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1186), 29, + ACTIONS(1225), 29, sym__verbatim_begin, - sym_superscript_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16364,23 +15419,23 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [907] = 4, - ACTIONS(1220), 1, - anon_sym_LBRACE_EQ2, - STATE(385), 1, - sym_raw_inline_attribute, - ACTIONS(1196), 8, + [966] = 5, + ACTIONS(1249), 1, anon_sym_LBRACE, - anon_sym_LBRACE_EQ, + STATE(1007), 1, + sym__inline_attribute_begin, + STATE(535), 2, + sym_inline_attribute, + sym__inline_attribute_fallback, + ACTIONS(1227), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1198), 28, + ACTIONS(1225), 29, sym__verbatim_begin, - sym_highlighted_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16389,6 +15444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, + anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -16407,22 +15463,23 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [954] = 4, - ACTIONS(1222), 1, - anon_sym_LBRACE_EQ2, - STATE(516), 1, - sym_raw_inline_attribute, - ACTIONS(1196), 8, + [1015] = 5, + ACTIONS(1243), 1, anon_sym_LBRACE, - anon_sym_LBRACE_EQ, + STATE(1037), 1, + sym__inline_attribute_begin, + STATE(607), 2, + sym_inline_attribute, + sym__inline_attribute_fallback, + ACTIONS(1227), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1198), 28, + ACTIONS(1225), 29, sym__verbatim_begin, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16431,6 +15488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, + anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -16440,7 +15498,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -16450,31 +15507,25 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [1001] = 4, - ACTIONS(1192), 1, - sym__id, - STATE(842), 1, - sym_reference_label, - ACTIONS(49), 15, + [1064] = 5, + ACTIONS(1239), 1, anon_sym_LBRACE, - anon_sym__, + STATE(992), 1, + sym__inline_attribute_begin, + STATE(545), 2, + sym_inline_attribute, + sym__inline_attribute_fallback, + ACTIONS(1227), 5, anon_sym_BSLASH, - sym_em_dash, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, aux_sym__text_token1, - ACTIONS(101), 21, + ACTIONS(1225), 29, sym__verbatim_begin, - sym_insert_end, + sym_strong_end, anon_sym_LBRACE_, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, anon_sym_LBRACE_CARET, @@ -16486,38 +15537,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, + sym_em_dash, anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, sym__whitespace1, sym__newline, - [1048] = 4, - ACTIONS(1192), 1, - sym__id, - STATE(955), 1, - sym_reference_label, - ACTIONS(49), 15, + [1113] = 5, + ACTIONS(1247), 1, anon_sym_LBRACE, - anon_sym__, + STATE(1090), 1, + sym__inline_attribute_begin, + STATE(537), 2, + sym_inline_attribute, + sym__inline_attribute_fallback, + ACTIONS(1227), 5, anon_sym_BSLASH, - sym_em_dash, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, aux_sym__text_token1, - ACTIONS(101), 21, + ACTIONS(1225), 29, sym__verbatim_begin, - sym_strong_end, + ts_builtin_sym_end, anon_sym_LBRACE_, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, anon_sym_LBRACE_CARET, @@ -16529,30 +15581,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, + sym_em_dash, anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, sym__whitespace1, sym__newline, - [1095] = 4, - ACTIONS(1224), 1, + [1162] = 4, + ACTIONS(1257), 1, anon_sym_LBRACE_EQ2, - STATE(380), 1, + STATE(340), 1, sym_raw_inline_attribute, - ACTIONS(1196), 8, - anon_sym_LBRACE, + ACTIONS(1255), 7, anon_sym_LBRACE_EQ, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1198), 28, + ACTIONS(1253), 28, sym__verbatim_begin, - ts_builtin_sym_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16579,23 +15637,22 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [1142] = 5, - ACTIONS(1226), 1, + [1208] = 5, + ACTIONS(1251), 1, anon_sym_LBRACE, - STATE(183), 1, - aux_sym__text, - STATE(580), 1, + STATE(1127), 1, + sym__inline_attribute_begin, + STATE(613), 2, sym_inline_attribute, - ACTIONS(1188), 6, + sym__inline_attribute_fallback, + ACTIONS(1227), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1186), 29, + ACTIONS(1225), 28, sym__verbatim_begin, - sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16623,23 +15680,22 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [1191] = 4, - ACTIONS(1228), 1, + [1256] = 4, + ACTIONS(1259), 1, anon_sym_LBRACE_EQ2, - STATE(430), 1, + STATE(297), 1, sym_raw_inline_attribute, - ACTIONS(1196), 8, - anon_sym_LBRACE, + ACTIONS(1255), 7, anon_sym_LBRACE_EQ, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1198), 28, + ACTIONS(1253), 28, sym__verbatim_begin, - sym_insert_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16666,109 +15722,105 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [1238] = 4, - ACTIONS(1192), 1, - sym__id, - STATE(823), 1, - sym_reference_label, - ACTIONS(49), 15, - anon_sym_LBRACE, - anon_sym__, + [1302] = 4, + ACTIONS(1261), 1, + anon_sym_LBRACE_EQ2, + STATE(310), 1, + sym_raw_inline_attribute, + ACTIONS(1255), 7, + anon_sym_LBRACE_EQ, anon_sym_BSLASH, - sym_em_dash, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, aux_sym__text_token1, - ACTIONS(101), 21, + ACTIONS(1253), 28, sym__verbatim_begin, - sym_delete_end, + ts_builtin_sym_end, anon_sym_LBRACE_, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, - anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, + sym_em_dash, anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, - sym__whitespace1, - sym__newline, - [1285] = 4, - ACTIONS(1192), 1, - sym__id, - STATE(1007), 1, - sym_reference_label, - ACTIONS(49), 15, - anon_sym_LBRACE, - anon_sym__, - anon_sym_BSLASH, - sym_em_dash, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE2, anon_sym_TODO, anon_sym_WIP, anon_sym_NOTE, anon_sym_INFO, anon_sym_XXX, sym_fixme, + sym__whitespace1, + sym__newline, + [1348] = 4, + ACTIONS(1263), 1, + anon_sym_LBRACE_EQ2, + STATE(426), 1, + sym_raw_inline_attribute, + ACTIONS(1255), 7, + anon_sym_LBRACE_EQ, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACE, + anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(101), 21, + ACTIONS(1253), 28, sym__verbatim_begin, - sym_emphasis_end, + sym_delete_end, anon_sym_LBRACE_, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, - anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, + sym_em_dash, anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, sym__whitespace1, sym__newline, - [1332] = 5, - ACTIONS(1230), 1, - anon_sym_LBRACE, - STATE(174), 1, - aux_sym__text, - STATE(575), 1, - sym_inline_attribute, - ACTIONS(1188), 6, + [1394] = 4, + ACTIONS(1265), 1, + anon_sym_LBRACE_EQ2, + STATE(469), 1, + sym_raw_inline_attribute, + ACTIONS(1255), 7, + anon_sym_LBRACE_EQ, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1186), 29, + ACTIONS(1253), 28, sym__verbatim_begin, - sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16777,7 +15829,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, - anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -16787,6 +15838,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -16796,23 +15848,22 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [1381] = 5, - ACTIONS(1232), 1, - anon_sym_LBRACE, - STATE(203), 1, - aux_sym__text, - STATE(604), 1, - sym_inline_attribute, - ACTIONS(1188), 6, + [1440] = 4, + ACTIONS(1267), 1, + anon_sym_LBRACE_EQ2, + STATE(258), 1, + sym_raw_inline_attribute, + ACTIONS(1255), 7, + anon_sym_LBRACE_EQ, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1186), 29, + ACTIONS(1253), 28, sym__verbatim_begin, - ts_builtin_sym_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16821,7 +15872,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, - anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -16840,21 +15890,22 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [1430] = 4, - ACTIONS(1218), 1, - anon_sym_LBRACE, - STATE(581), 1, - sym_inline_attribute, - ACTIONS(1188), 6, + [1486] = 4, + ACTIONS(1269), 1, + anon_sym_LBRACE_EQ2, + STATE(364), 1, + sym_raw_inline_attribute, + ACTIONS(1255), 7, + anon_sym_LBRACE_EQ, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1186), 29, + ACTIONS(1253), 28, sym__verbatim_begin, - sym_superscript_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16863,7 +15914,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, - anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -16882,20 +15932,22 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [1476] = 3, - ACTIONS(1234), 1, - sym__non_whitespace_check, - ACTIONS(49), 7, - anon_sym_LBRACE, + [1532] = 4, + ACTIONS(1271), 1, + anon_sym_LBRACE_EQ2, + STATE(225), 1, + sym_raw_inline_attribute, + ACTIONS(1255), 7, + anon_sym_LBRACE_EQ, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(101), 29, + ACTIONS(1253), 28, sym__verbatim_begin, - sym_superscript_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16904,7 +15956,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, - anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -16923,20 +15974,22 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [1520] = 3, - ACTIONS(1236), 1, - sym__non_whitespace_check, - ACTIONS(49), 7, - anon_sym_LBRACE, + [1578] = 4, + ACTIONS(1273), 1, + anon_sym_LBRACE_EQ2, + STATE(441), 1, + sym_raw_inline_attribute, + ACTIONS(1255), 7, + anon_sym_LBRACE_EQ, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(101), 29, + ACTIONS(1253), 28, sym__verbatim_begin, - ts_builtin_sym_end, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16945,7 +15998,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, - anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -16964,64 +16016,64 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [1564] = 4, - ACTIONS(1192), 1, - sym__id, - STATE(883), 1, - sym_reference_label, - ACTIONS(49), 15, - anon_sym_LBRACE, - anon_sym__, + [1624] = 4, + ACTIONS(1275), 1, + anon_sym_LBRACE_EQ2, + STATE(383), 1, + sym_raw_inline_attribute, + ACTIONS(1255), 7, + anon_sym_LBRACE_EQ, anon_sym_BSLASH, - sym_em_dash, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, aux_sym__text_token1, - ACTIONS(101), 20, + ACTIONS(1253), 28, sym__verbatim_begin, + sym_insert_end, anon_sym_LBRACE_, + anon_sym__, anon_sym_LBRACE_STAR, anon_sym_STAR, anon_sym_LBRACE_CARET, anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, - anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, sym_ellipsis, + sym_em_dash, anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, - sym__whitespace1, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + sym__whitespace1, sym__newline, - [1610] = 5, - ACTIONS(1238), 1, - anon_sym_LBRACE, - STATE(513), 1, - aux_sym__text, - STATE(607), 1, - sym_inline_attribute, - ACTIONS(1188), 6, + [1670] = 4, + ACTIONS(1277), 1, + anon_sym_LBRACE_EQ2, + STATE(511), 1, + sym_raw_inline_attribute, + ACTIONS(1255), 7, + anon_sym_LBRACE_EQ, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1186), 28, + ACTIONS(1253), 28, sym__verbatim_begin, + sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17030,7 +16082,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, - anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -17049,21 +16100,59 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [1658] = 4, - ACTIONS(1232), 1, + [1716] = 3, + ACTIONS(1281), 1, + aux_sym_autolink_token1, + ACTIONS(1283), 4, + sym__verbatim_begin, + sym__image_description_end, + sym__whitespace1, + sym__newline, + ACTIONS(1279), 31, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + anon_sym_BSLASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + sym_en_dash, + sym_backslash_escape, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, anon_sym_LBRACE, - STATE(604), 1, - sym_inline_attribute, - ACTIONS(1188), 6, + anon_sym_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + aux_sym__text_token1, + [1759] = 3, + ACTIONS(1285), 1, + sym__non_whitespace_check, + ACTIONS(1279), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1186), 29, + ACTIONS(1283), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17091,20 +16180,20 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [1704] = 4, - ACTIONS(1244), 1, + [1802] = 4, + ACTIONS(1291), 1, aux_sym__text_token1, - STATE(167), 1, + STATE(158), 1, aux_sym__text, - ACTIONS(1240), 6, - anon_sym_LBRACE, + ACTIONS(1289), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, - ACTIONS(1242), 29, + ACTIONS(1287), 29, sym__verbatim_begin, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17123,7 +16212,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -17133,21 +16221,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [1750] = 4, - ACTIONS(1247), 1, - anon_sym_LBRACE_EQ2, - STATE(558), 1, - sym_raw_inline_attribute, - ACTIONS(1196), 8, - anon_sym_LBRACE, - anon_sym_LBRACE_EQ, + [1847] = 4, + ACTIONS(1294), 1, + aux_sym__text_token1, + STATE(159), 1, + aux_sym__text, + ACTIONS(1289), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(1198), 27, + ACTIONS(1287), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -17157,6 +16242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, + anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -17166,6 +16252,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -17175,16 +16262,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [1796] = 3, - ACTIONS(1249), 1, - aux_sym_autolink_token1, - ACTIONS(101), 4, - sym__verbatim_begin, - ts_builtin_sym_end, - sym__whitespace1, - sym__newline, - ACTIONS(49), 32, + [1892] = 4, + ACTIONS(1301), 1, anon_sym_LBRACE, + STATE(211), 1, + sym_comment, + ACTIONS(1299), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1297), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17196,18 +16286,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, - sym_en_dash, - sym_backslash_escape, anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LBRACK, - anon_sym_LBRACE2, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -17215,16 +16301,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - aux_sym__text_token1, - [1840] = 3, - ACTIONS(1251), 1, + sym__whitespace1, + sym__newline, + [1937] = 3, + ACTIONS(1303), 1, aux_sym_autolink_token1, - ACTIONS(101), 3, + ACTIONS(1283), 4, sym__verbatim_begin, + sym_delete_end, sym__whitespace1, sym__newline, - ACTIONS(49), 33, - anon_sym_LBRACE, + ACTIONS(1279), 31, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17246,9 +16333,8 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK2, - anon_sym_LBRACE2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -17257,20 +16343,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, aux_sym__text_token1, - [1884] = 4, - ACTIONS(1212), 1, - anon_sym_LBRACE, - STATE(564), 1, - sym_inline_attribute, - ACTIONS(1188), 6, + [1980] = 3, + ACTIONS(1305), 1, + sym__non_whitespace_check, + ACTIONS(1279), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1186), 29, + ACTIONS(1283), 29, sym__verbatim_begin, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17289,7 +16374,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -17299,19 +16383,20 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [1930] = 3, - ACTIONS(1253), 1, - sym__non_whitespace_check, - ACTIONS(49), 7, - anon_sym_LBRACE, + [2023] = 4, + ACTIONS(1307), 1, + aux_sym__text_token1, + STATE(163), 1, + aux_sym__text, + ACTIONS(1289), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(101), 29, + ACTIONS(1287), 29, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17330,7 +16415,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -17340,19 +16424,59 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [1974] = 3, - ACTIONS(1255), 1, - sym__non_whitespace_check, - ACTIONS(49), 7, + [2068] = 3, + ACTIONS(1310), 1, + aux_sym_autolink_token1, + ACTIONS(1283), 4, + sym__verbatim_begin, + sym__bracketed_text_end, + sym__whitespace1, + sym__newline, + ACTIONS(1279), 31, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + anon_sym_BSLASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + sym_en_dash, + sym_backslash_escape, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + aux_sym__text_token1, + [2111] = 3, + ACTIONS(1312), 1, + sym__non_whitespace_check, + ACTIONS(1279), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(101), 29, + ACTIONS(1283), 29, sym__verbatim_begin, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17371,7 +16495,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -17381,21 +16504,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [2018] = 4, - ACTIONS(1257), 1, - aux_sym__text_token1, - STATE(174), 1, - aux_sym__text, - ACTIONS(1240), 6, - anon_sym_LBRACE, + [2154] = 3, + ACTIONS(1314), 1, + sym__non_whitespace_check, + ACTIONS(1279), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, - ACTIONS(1242), 29, + aux_sym__text_token1, + ACTIONS(1283), 29, sym__verbatim_begin, - sym_delete_end, + sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17423,20 +16544,20 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [2064] = 3, - ACTIONS(1260), 1, - sym__non_whitespace_check, - ACTIONS(49), 7, - anon_sym_LBRACE, + [2197] = 4, + ACTIONS(1316), 1, + aux_sym__text_token1, + STATE(167), 1, + aux_sym__text, + ACTIONS(1289), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(101), 29, + ACTIONS(1287), 29, sym__verbatim_begin, - sym_emphasis_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17464,20 +16585,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [2108] = 3, - ACTIONS(1262), 1, + [2242] = 3, + ACTIONS(1319), 1, sym__non_whitespace_check, - ACTIONS(49), 7, - anon_sym_LBRACE, + ACTIONS(1279), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(101), 29, + ACTIONS(1283), 29, sym__verbatim_begin, - sym_emphasis_end, + sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17505,21 +16625,20 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [2152] = 4, - ACTIONS(1190), 1, + [2285] = 4, + ACTIONS(1321), 1, anon_sym_LBRACE, - STATE(577), 1, - sym_inline_attribute, - ACTIONS(1188), 6, + STATE(411), 1, + sym_comment, + ACTIONS(1299), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1186), 29, + ACTIONS(1297), 29, sym__verbatim_begin, - sym_emphasis_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17547,16 +16666,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [2198] = 3, - ACTIONS(1264), 1, + [2330] = 3, + ACTIONS(1323), 1, aux_sym_autolink_token1, - ACTIONS(101), 4, + ACTIONS(1283), 4, sym__verbatim_begin, - sym_emphasis_end, + sym_insert_end, sym__whitespace1, sym__newline, - ACTIONS(49), 32, - anon_sym_LBRACE, + ACTIONS(1279), 31, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17578,8 +16696,8 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -17588,16 +16706,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, aux_sym__text_token1, - [2242] = 3, - ACTIONS(1266), 1, - aux_sym_autolink_token1, - ACTIONS(101), 4, - sym__verbatim_begin, - sym_delete_end, - sym__whitespace1, - sym__newline, - ACTIONS(49), 32, + [2373] = 3, + ACTIONS(1325), 1, + sym__non_whitespace_check, + ACTIONS(1279), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, anon_sym_LBRACE, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1283), 29, + sym__verbatim_begin, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17609,18 +16730,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, - sym_en_dash, - sym_backslash_escape, anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LBRACK, - anon_sym_LBRACE2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -17628,22 +16744,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - aux_sym__text_token1, - [2286] = 4, - ACTIONS(1230), 1, - anon_sym_LBRACE, - STATE(575), 1, - sym_inline_attribute, - ACTIONS(1188), 6, + sym__whitespace1, + sym__newline, + [2416] = 3, + ACTIONS(1327), 1, + sym__non_whitespace_check, + ACTIONS(1279), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1186), 29, + ACTIONS(1283), 29, sym__verbatim_begin, - sym_delete_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17671,20 +16786,20 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [2332] = 3, - ACTIONS(1268), 1, - sym__non_whitespace_check, - ACTIONS(49), 7, - anon_sym_LBRACE, + [2459] = 4, + ACTIONS(1329), 1, + aux_sym__text_token1, + STATE(173), 1, + aux_sym__text, + ACTIONS(1289), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(101), 29, + ACTIONS(1287), 29, sym__verbatim_begin, - sym_delete_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17712,20 +16827,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [2376] = 3, - ACTIONS(1270), 1, + [2504] = 3, + ACTIONS(1332), 1, sym__non_whitespace_check, - ACTIONS(49), 7, - anon_sym_LBRACE, + ACTIONS(1279), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(101), 29, + ACTIONS(1283), 29, sym__verbatim_begin, - sym_delete_end, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17753,21 +16867,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [2420] = 4, - ACTIONS(1272), 1, - aux_sym__text_token1, - STATE(183), 1, - aux_sym__text, - ACTIONS(1240), 6, - anon_sym_LBRACE, + [2547] = 3, + ACTIONS(1334), 1, + sym__non_whitespace_check, + ACTIONS(1279), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, - ACTIONS(1242), 29, + aux_sym__text_token1, + ACTIONS(1283), 29, sym__verbatim_begin, - sym_insert_end, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17795,20 +16907,20 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [2466] = 3, - ACTIONS(1275), 1, - sym__non_whitespace_check, - ACTIONS(49), 7, + [2590] = 4, + ACTIONS(1336), 1, anon_sym_LBRACE, + STATE(368), 1, + sym_comment, + ACTIONS(1299), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(101), 29, + ACTIONS(1297), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17836,16 +16948,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [2510] = 3, - ACTIONS(1277), 1, + [2635] = 3, + ACTIONS(1338), 1, aux_sym_autolink_token1, - ACTIONS(101), 4, + ACTIONS(1283), 4, sym__verbatim_begin, - sym_insert_end, + sym_highlighted_end, sym__whitespace1, sym__newline, - ACTIONS(49), 32, - anon_sym_LBRACE, + ACTIONS(1279), 31, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17867,8 +16978,8 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -17877,21 +16988,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, aux_sym__text_token1, - [2554] = 4, - ACTIONS(1226), 1, - anon_sym_LBRACE, - STATE(580), 1, - sym_inline_attribute, - ACTIONS(1188), 6, + [2678] = 3, + ACTIONS(1340), 1, + sym__non_whitespace_check, + ACTIONS(1279), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1186), 29, + ACTIONS(1283), 29, sym__verbatim_begin, - sym_insert_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17919,20 +17028,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [2600] = 4, - ACTIONS(1279), 1, - aux_sym__text_token1, - STATE(187), 1, - aux_sym__text, - ACTIONS(1240), 6, - anon_sym_LBRACE, + [2721] = 3, + ACTIONS(1342), 1, + sym__non_whitespace_check, + ACTIONS(1279), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, - ACTIONS(1242), 29, + aux_sym__text_token1, + ACTIONS(1283), 29, sym__verbatim_begin, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17950,7 +17058,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -17961,20 +17068,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [2646] = 3, - ACTIONS(1282), 1, + [2764] = 3, + ACTIONS(1344), 1, sym__non_whitespace_check, - ACTIONS(49), 7, - anon_sym_LBRACE, + ACTIONS(1279), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(101), 29, + ACTIONS(1283), 29, sym__verbatim_begin, - sym_insert_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18002,62 +17108,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [2690] = 3, - ACTIONS(1284), 1, + [2807] = 3, + ACTIONS(1346), 1, sym__non_whitespace_check, - ACTIONS(49), 7, - anon_sym_LBRACE, + ACTIONS(1279), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(101), 29, - sym__verbatim_begin, - sym_insert_end, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - sym_symbol, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - sym__whitespace1, - sym__newline, - [2734] = 4, - ACTIONS(1286), 1, - aux_sym__text_token1, - STATE(190), 1, - aux_sym__text, - ACTIONS(1240), 6, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, - ACTIONS(1242), 29, + aux_sym__text_token1, + ACTIONS(1283), 29, sym__verbatim_begin, - sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18076,6 +17138,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -18085,62 +17148,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [2780] = 3, - ACTIONS(1289), 1, - aux_sym_autolink_token1, - ACTIONS(101), 4, - sym__verbatim_begin, - sym_highlighted_end, - sym__whitespace1, - sym__newline, - ACTIONS(49), 32, - anon_sym_LBRACE, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, + [2850] = 3, + ACTIONS(1348), 1, + sym__non_whitespace_check, + ACTIONS(1279), 6, anon_sym_BSLASH, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, sym_en_dash, sym_backslash_escape, - anon_sym_LT, - sym_symbol, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_LBRACK, - anon_sym_LBRACE2, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - aux_sym__text_token1, - [2824] = 4, - ACTIONS(1206), 1, anon_sym_LBRACE, - STATE(583), 1, - sym_inline_attribute, - ACTIONS(1188), 6, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1186), 29, + ACTIONS(1283), 29, sym__verbatim_begin, - sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18159,6 +17178,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -18168,20 +17188,20 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [2870] = 3, - ACTIONS(1291), 1, - sym__non_whitespace_check, - ACTIONS(49), 7, + [2893] = 4, + ACTIONS(1350), 1, anon_sym_LBRACE, + STATE(487), 1, + sym_comment, + ACTIONS(1299), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(101), 29, + ACTIONS(1297), 29, sym__verbatim_begin, - sym_highlighted_end, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18209,20 +17229,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [2914] = 3, - ACTIONS(1293), 1, + [2938] = 3, + ACTIONS(1352), 1, sym__non_whitespace_check, - ACTIONS(49), 7, - anon_sym_LBRACE, + ACTIONS(1279), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(101), 29, + ACTIONS(1283), 29, sym__verbatim_begin, - sym_highlighted_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18250,21 +17269,20 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [2958] = 4, - ACTIONS(1295), 1, + [2981] = 4, + ACTIONS(1354), 1, aux_sym__text_token1, - STATE(195), 1, + STATE(185), 1, aux_sym__text, - ACTIONS(1240), 6, - anon_sym_LBRACE, + ACTIONS(1289), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, - ACTIONS(1242), 29, + ACTIONS(1287), 29, sym__verbatim_begin, - sym_subscript_end, + sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18292,16 +17310,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [3004] = 3, - ACTIONS(1298), 1, + [3026] = 3, + ACTIONS(1357), 1, aux_sym_autolink_token1, - ACTIONS(101), 4, + ACTIONS(1283), 4, sym__verbatim_begin, - sym_subscript_end, + sym_strong_end, sym__whitespace1, sym__newline, - ACTIONS(49), 32, - anon_sym_LBRACE, + ACTIONS(1279), 31, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18323,8 +17340,8 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -18333,21 +17350,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, aux_sym__text_token1, - [3048] = 4, - ACTIONS(1194), 1, - anon_sym_LBRACE, - STATE(586), 1, - sym_inline_attribute, - ACTIONS(1188), 6, + [3069] = 4, + ACTIONS(1359), 1, + anon_sym_LBRACE_EQ2, + STATE(591), 1, + sym_raw_inline_attribute, + ACTIONS(1255), 7, + anon_sym_LBRACE_EQ, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1186), 29, + ACTIONS(1253), 27, sym__verbatim_begin, - sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18356,7 +17373,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, - anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -18375,21 +17391,20 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [3094] = 4, - ACTIONS(1300), 1, + [3114] = 4, + ACTIONS(1361), 1, aux_sym__text_token1, - STATE(198), 1, + STATE(188), 1, aux_sym__text, - ACTIONS(1240), 6, - anon_sym_LBRACE, + ACTIONS(1289), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, - ACTIONS(1242), 29, + ACTIONS(1287), 29, sym__verbatim_begin, - sym_emphasis_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18417,20 +17432,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [3140] = 3, - ACTIONS(1303), 1, - sym__non_whitespace_check, - ACTIONS(49), 7, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(101), 29, + [3159] = 3, + ACTIONS(1364), 1, + aux_sym_autolink_token1, + ACTIONS(1283), 4, sym__verbatim_begin, sym_subscript_end, + sym__whitespace1, + sym__newline, + ACTIONS(1279), 31, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18442,13 +17452,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, + sym_en_dash, + sym_backslash_escape, anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -18456,22 +17471,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - sym__whitespace1, - sym__newline, - [3184] = 3, - ACTIONS(1305), 1, - sym__non_whitespace_check, - ACTIONS(49), 7, + aux_sym__text_token1, + [3202] = 4, + ACTIONS(1366), 1, anon_sym_LBRACE, + STATE(246), 1, + sym_comment, + ACTIONS(1299), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(101), 29, + ACTIONS(1297), 29, sym__verbatim_begin, - sym_subscript_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18499,21 +17513,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [3228] = 4, - ACTIONS(1307), 1, - aux_sym__text_token1, - STATE(201), 1, - aux_sym__text, - ACTIONS(1240), 6, - anon_sym_LBRACE, + [3247] = 3, + ACTIONS(1368), 1, + sym__non_whitespace_check, + ACTIONS(1279), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, - ACTIONS(1242), 29, + aux_sym__text_token1, + ACTIONS(1283), 29, sym__verbatim_begin, - sym_superscript_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18541,16 +17553,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [3274] = 3, - ACTIONS(1310), 1, + [3290] = 3, + ACTIONS(1370), 1, aux_sym_autolink_token1, - ACTIONS(101), 4, + ACTIONS(1283), 3, sym__verbatim_begin, - sym_superscript_end, sym__whitespace1, sym__newline, - ACTIONS(49), 32, - anon_sym_LBRACE, + ACTIONS(1279), 32, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18572,8 +17582,9 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -18582,21 +17593,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, aux_sym__text_token1, - [3318] = 4, - ACTIONS(1312), 1, - aux_sym__text_token1, - STATE(203), 1, - aux_sym__text, - ACTIONS(1240), 6, + [3333] = 4, + ACTIONS(1372), 1, anon_sym_LBRACE, + STATE(325), 1, + sym_comment, + ACTIONS(1299), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, - ACTIONS(1242), 29, + aux_sym__text_token1, + ACTIONS(1297), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18624,62 +17634,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [3364] = 3, - ACTIONS(1315), 1, - aux_sym_autolink_token1, - ACTIONS(101), 3, - sym__verbatim_begin, - sym__whitespace1, - sym__newline, - ACTIONS(49), 33, - anon_sym_LBRACE, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, + [3378] = 3, + ACTIONS(1374), 1, + sym__non_whitespace_check, + ACTIONS(1279), 6, anon_sym_BSLASH, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, sym_en_dash, sym_backslash_escape, - anon_sym_LT, - sym_symbol, - anon_sym_LBRACK_CARET, - anon_sym_RBRACK, - anon_sym_BANG_LBRACK, - anon_sym_LBRACK, - anon_sym_LBRACE2, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - aux_sym__text_token1, - [3408] = 4, - ACTIONS(1317), 1, - aux_sym__text_token1, - STATE(205), 1, - aux_sym__text, - ACTIONS(1240), 6, anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, - ACTIONS(1242), 29, + aux_sym__text_token1, + ACTIONS(1283), 29, sym__verbatim_begin, - sym_strong_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18707,20 +17674,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [3454] = 3, - ACTIONS(1320), 1, + [3421] = 3, + ACTIONS(1376), 1, sym__non_whitespace_check, - ACTIONS(49), 7, - anon_sym_LBRACE, + ACTIONS(1279), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(101), 29, + ACTIONS(1283), 29, sym__verbatim_begin, - sym_strong_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18748,20 +17714,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [3498] = 3, - ACTIONS(1322), 1, + [3464] = 3, + ACTIONS(1378), 1, sym__non_whitespace_check, - ACTIONS(49), 7, - anon_sym_LBRACE, + ACTIONS(1279), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(101), 29, + ACTIONS(1283), 29, sym__verbatim_begin, - sym_strong_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18789,21 +17754,20 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [3542] = 4, - ACTIONS(1184), 1, + [3507] = 4, + ACTIONS(1380), 1, anon_sym_LBRACE, - STATE(592), 1, - sym_inline_attribute, - ACTIONS(1188), 6, + STATE(496), 1, + sym_comment, + ACTIONS(1299), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1186), 29, + ACTIONS(1297), 29, sym__verbatim_begin, - sym_strong_end, + sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18831,16 +17795,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [3588] = 3, - ACTIONS(1324), 1, + [3552] = 3, + ACTIONS(1382), 1, aux_sym_autolink_token1, - ACTIONS(101), 4, + ACTIONS(1283), 4, sym__verbatim_begin, - sym_strong_end, + sym_superscript_end, sym__whitespace1, sym__newline, - ACTIONS(49), 32, - anon_sym_LBRACE, + ACTIONS(1279), 31, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18862,8 +17825,8 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -18872,19 +17835,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, aux_sym__text_token1, - [3632] = 3, - ACTIONS(1326), 1, - sym__non_whitespace_check, - ACTIONS(49), 7, - anon_sym_LBRACE, + [3595] = 4, + ACTIONS(1384), 1, + aux_sym__text_token1, + STATE(199), 1, + aux_sym__text, + ACTIONS(1289), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(101), 29, + ACTIONS(1287), 29, sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18902,7 +17866,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -18913,20 +17876,20 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [3676] = 4, - ACTIONS(1204), 1, - anon_sym_LBRACE, - STATE(596), 1, - sym_inline_attribute, - ACTIONS(1188), 6, + [3640] = 4, + ACTIONS(1387), 1, + aux_sym__text_token1, + STATE(200), 1, + aux_sym__text, + ACTIONS(1289), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(1186), 29, + ACTIONS(1287), 29, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18944,7 +17907,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -18955,19 +17917,20 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [3722] = 3, - ACTIONS(1328), 1, - sym__non_whitespace_check, - ACTIONS(49), 7, - anon_sym_LBRACE, + [3685] = 4, + ACTIONS(1390), 1, + aux_sym__text_token1, + STATE(201), 1, + aux_sym__text, + ACTIONS(1289), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(101), 29, + ACTIONS(1287), 29, sym__verbatim_begin, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18985,7 +17948,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -18996,20 +17958,20 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [3766] = 3, - ACTIONS(1330), 1, - sym__non_whitespace_check, - ACTIONS(49), 7, + [3730] = 4, + ACTIONS(1393), 1, anon_sym_LBRACE, + STATE(282), 1, + sym_comment, + ACTIONS(1299), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(101), 29, + ACTIONS(1297), 29, sym__verbatim_begin, - sym_superscript_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19037,18 +17999,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [3810] = 2, - ACTIONS(1332), 7, - anon_sym_LBRACE, + [3775] = 3, + ACTIONS(1395), 1, + sym__non_whitespace_check, + ACTIONS(1279), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1334), 29, + ACTIONS(1283), 29, sym__verbatim_begin, - sym_subscript_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19076,18 +18039,20 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [3851] = 2, - ACTIONS(1336), 7, - anon_sym_LBRACE, + [3818] = 4, + ACTIONS(1397), 1, + aux_sym__text_token1, + STATE(204), 1, + aux_sym__text, + ACTIONS(1289), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(1338), 29, + ACTIONS(1287), 29, sym__verbatim_begin, - sym_highlighted_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19115,16 +18080,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [3892] = 2, - ACTIONS(1342), 7, + [3863] = 4, + ACTIONS(1400), 1, anon_sym_LBRACE, + STATE(253), 1, + sym_comment, + ACTIONS(1299), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1340), 29, + ACTIONS(1297), 29, sym__verbatim_begin, ts_builtin_sym_end, anon_sym_LBRACE_, @@ -19154,18 +18121,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [3933] = 2, - ACTIONS(1344), 7, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(1346), 29, + [3908] = 3, + ACTIONS(1402), 1, + aux_sym_autolink_token1, + ACTIONS(1283), 4, sym__verbatim_begin, sym_emphasis_end, + sym__whitespace1, + sym__newline, + ACTIONS(1279), 31, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19177,13 +18141,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, + sym_en_dash, + sym_backslash_escape, anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -19191,20 +18160,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - sym__whitespace1, - sym__newline, - [3974] = 2, - ACTIONS(1348), 7, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1350), 29, + [3951] = 3, + ACTIONS(1404), 1, + aux_sym_autolink_token1, + ACTIONS(1283), 4, sym__verbatim_begin, - sym_emphasis_end, + ts_builtin_sym_end, + sym__whitespace1, + sym__newline, + ACTIONS(1279), 31, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19216,13 +18181,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, + sym_en_dash, + sym_backslash_escape, anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -19230,20 +18200,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - sym__whitespace1, - sym__newline, - [4015] = 2, - ACTIONS(1352), 7, - anon_sym_LBRACE, + aux_sym__text_token1, + [3994] = 3, + ACTIONS(1406), 1, + sym__non_whitespace_check, + ACTIONS(1279), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1354), 29, + ACTIONS(1283), 29, sym__verbatim_begin, - sym_emphasis_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19271,18 +18241,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4056] = 2, - ACTIONS(1358), 7, - anon_sym_LBRACE, + [4037] = 3, + ACTIONS(1408), 1, + sym__non_whitespace_check, + ACTIONS(1279), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1356), 29, + ACTIONS(1283), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19310,18 +18281,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4097] = 2, - ACTIONS(1360), 7, - anon_sym_LBRACE, + [4080] = 2, + ACTIONS(1412), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1362), 29, + ACTIONS(1410), 29, sym__verbatim_begin, - sym_emphasis_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19349,18 +18319,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4138] = 2, - ACTIONS(1364), 7, - anon_sym_LBRACE, + [4120] = 2, + ACTIONS(1416), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1366), 29, + ACTIONS(1414), 29, sym__verbatim_begin, - sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19379,6 +18347,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -19388,18 +18357,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4179] = 2, - ACTIONS(1368), 7, + [4160] = 4, + ACTIONS(1418), 1, anon_sym_LBRACE, + STATE(577), 1, + sym_comment, + ACTIONS(1299), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1370), 29, + ACTIONS(1297), 28, sym__verbatim_begin, - sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19427,18 +18397,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4220] = 2, - ACTIONS(1372), 7, - anon_sym_LBRACE, + [4204] = 2, + ACTIONS(1416), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1374), 29, + ACTIONS(1414), 29, sym__verbatim_begin, - sym_emphasis_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19466,18 +18435,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4261] = 2, - ACTIONS(1376), 7, - anon_sym_LBRACE, + [4244] = 2, + ACTIONS(1422), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1378), 29, + ACTIONS(1420), 29, sym__verbatim_begin, - sym_emphasis_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19505,18 +18473,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4302] = 2, - ACTIONS(1380), 7, - anon_sym_LBRACE, + [4284] = 2, + ACTIONS(1426), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1382), 29, + ACTIONS(1424), 29, sym__verbatim_begin, - sym_emphasis_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19544,18 +18511,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4343] = 2, - ACTIONS(1332), 7, - anon_sym_LBRACE, + [4324] = 2, + ACTIONS(1430), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1334), 29, + ACTIONS(1428), 29, sym__verbatim_begin, - sym_emphasis_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19583,18 +18549,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4384] = 2, - ACTIONS(1384), 7, - anon_sym_LBRACE, + [4364] = 2, + ACTIONS(1434), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1386), 29, + ACTIONS(1432), 29, sym__verbatim_begin, - sym_emphasis_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19622,18 +18587,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4425] = 2, - ACTIONS(1388), 7, - anon_sym_LBRACE, + [4404] = 2, + ACTIONS(1438), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1390), 29, + ACTIONS(1436), 29, sym__verbatim_begin, - sym_emphasis_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19661,18 +18625,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4466] = 2, - ACTIONS(1392), 7, - anon_sym_LBRACE, + [4444] = 2, + ACTIONS(1442), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1394), 29, + ACTIONS(1440), 29, sym__verbatim_begin, - sym_emphasis_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19700,18 +18663,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4507] = 2, - ACTIONS(1396), 7, - anon_sym_LBRACE, + [4484] = 2, + ACTIONS(1446), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1398), 29, + ACTIONS(1444), 29, sym__verbatim_begin, - sym_emphasis_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19739,18 +18701,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4548] = 2, - ACTIONS(1400), 7, - anon_sym_LBRACE, + [4524] = 2, + ACTIONS(1450), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1402), 29, + ACTIONS(1448), 29, sym__verbatim_begin, - sym_emphasis_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19778,18 +18739,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4589] = 2, - ACTIONS(1404), 7, - anon_sym_LBRACE, + [4564] = 2, + ACTIONS(1454), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1406), 29, + ACTIONS(1452), 29, sym__verbatim_begin, - sym_emphasis_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19817,17 +18777,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4630] = 2, - ACTIONS(1336), 7, - anon_sym_LBRACE, + [4604] = 2, + ACTIONS(1458), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1338), 29, + ACTIONS(1456), 29, sym__verbatim_begin, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19845,7 +18805,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -19856,17 +18815,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4671] = 2, - ACTIONS(1408), 7, - anon_sym_LBRACE, + [4644] = 2, + ACTIONS(1462), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1410), 29, + ACTIONS(1460), 29, sym__verbatim_begin, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19884,7 +18843,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -19895,17 +18853,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4712] = 2, - ACTIONS(1412), 7, - anon_sym_LBRACE, + [4684] = 2, + ACTIONS(1466), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1414), 29, + ACTIONS(1464), 29, sym__verbatim_begin, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19923,7 +18881,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -19934,19 +18891,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4753] = 3, - ACTIONS(1416), 1, - sym__verbatim_begin, - ACTIONS(49), 7, + [4724] = 4, + ACTIONS(1468), 1, anon_sym_LBRACE, + STATE(213), 1, + sym_comment, + ACTIONS(1299), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(101), 28, - sym_strong_end, + ACTIONS(1297), 28, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19974,16 +18931,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4796] = 2, - ACTIONS(1419), 7, - anon_sym_LBRACE, + [4768] = 2, + ACTIONS(1472), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1421), 29, + ACTIONS(1470), 29, sym__verbatim_begin, sym_strong_end, anon_sym_LBRACE_, @@ -20013,16 +18969,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4837] = 2, - ACTIONS(1423), 7, - anon_sym_LBRACE, + [4808] = 2, + ACTIONS(1476), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1425), 29, + ACTIONS(1474), 29, sym__verbatim_begin, sym_strong_end, anon_sym_LBRACE_, @@ -20052,20 +19007,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4878] = 4, - ACTIONS(1431), 1, - anon_sym_LBRACE2, - STATE(284), 1, - sym_comment, - ACTIONS(1429), 5, + [4848] = 2, + ACTIONS(1480), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1427), 29, + ACTIONS(1478), 29, sym__verbatim_begin, - sym_superscript_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20093,17 +19045,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4923] = 2, - ACTIONS(1434), 7, - anon_sym_LBRACE, + [4888] = 2, + ACTIONS(1484), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1436), 29, + ACTIONS(1482), 29, sym__verbatim_begin, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20121,7 +19073,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -20132,17 +19083,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4964] = 2, - ACTIONS(1438), 7, - anon_sym_LBRACE, + [4928] = 2, + ACTIONS(1488), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1440), 29, + ACTIONS(1486), 29, sym__verbatim_begin, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20160,7 +19111,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -20171,16 +19121,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5005] = 2, - ACTIONS(1442), 7, - anon_sym_LBRACE, + [4968] = 2, + ACTIONS(1492), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1444), 29, + ACTIONS(1490), 29, sym__verbatim_begin, sym_strong_end, anon_sym_LBRACE_, @@ -20210,16 +19159,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5046] = 2, - ACTIONS(1446), 7, - anon_sym_LBRACE, + [5008] = 2, + ACTIONS(1412), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1448), 29, + ACTIONS(1410), 29, sym__verbatim_begin, sym_strong_end, anon_sym_LBRACE_, @@ -20249,17 +19197,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5087] = 2, - ACTIONS(1342), 7, - anon_sym_LBRACE, + [5048] = 2, + ACTIONS(1496), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1340), 29, + ACTIONS(1494), 29, sym__verbatim_begin, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20278,7 +19226,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -20288,16 +19235,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5128] = 2, - ACTIONS(1438), 7, - anon_sym_LBRACE, + [5088] = 2, + ACTIONS(1500), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1440), 29, + ACTIONS(1498), 29, sym__verbatim_begin, sym_strong_end, anon_sym_LBRACE_, @@ -20327,16 +19273,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5169] = 2, - ACTIONS(1434), 7, - anon_sym_LBRACE, + [5128] = 2, + ACTIONS(1504), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1436), 29, + ACTIONS(1502), 29, sym__verbatim_begin, sym_strong_end, anon_sym_LBRACE_, @@ -20366,16 +19311,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5210] = 2, - ACTIONS(1412), 7, - anon_sym_LBRACE, + [5168] = 2, + ACTIONS(1508), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1414), 29, + ACTIONS(1506), 29, sym__verbatim_begin, sym_strong_end, anon_sym_LBRACE_, @@ -20405,18 +19349,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5251] = 2, - ACTIONS(1408), 7, - anon_sym_LBRACE, + [5208] = 2, + ACTIONS(1512), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1410), 29, + ACTIONS(1510), 29, sym__verbatim_begin, - sym_strong_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20444,16 +19387,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5292] = 2, - ACTIONS(1336), 7, - anon_sym_LBRACE, + [5248] = 2, + ACTIONS(1516), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1338), 29, + ACTIONS(1514), 29, sym__verbatim_begin, sym_strong_end, anon_sym_LBRACE_, @@ -20483,18 +19425,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5333] = 2, - ACTIONS(1450), 7, - anon_sym_LBRACE, + [5288] = 3, + ACTIONS(1518), 1, + sym__verbatim_begin, + ACTIONS(1279), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1452), 29, - sym__verbatim_begin, - sym_strong_end, + ACTIONS(1283), 28, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20522,18 +19464,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5374] = 2, - ACTIONS(1454), 7, - anon_sym_LBRACE, + [5330] = 2, + ACTIONS(1446), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1456), 29, + ACTIONS(1444), 29, sym__verbatim_begin, - sym_strong_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20561,17 +19502,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5415] = 2, - ACTIONS(1446), 7, - anon_sym_LBRACE, + [5370] = 2, + ACTIONS(1454), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1448), 29, + ACTIONS(1452), 29, sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20589,7 +19530,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -20600,17 +19540,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5456] = 2, - ACTIONS(1442), 7, - anon_sym_LBRACE, + [5410] = 2, + ACTIONS(1512), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1444), 29, + ACTIONS(1510), 29, sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20628,7 +19568,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -20639,18 +19578,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5497] = 2, - ACTIONS(1458), 7, - anon_sym_LBRACE, + [5450] = 2, + ACTIONS(1523), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1460), 29, + ACTIONS(1521), 29, sym__verbatim_begin, - sym_strong_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20678,18 +19616,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5538] = 2, - ACTIONS(1358), 7, - anon_sym_LBRACE, + [5490] = 2, + ACTIONS(1523), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1356), 29, + ACTIONS(1521), 29, sym__verbatim_begin, - sym_delete_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20717,18 +19654,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5579] = 2, - ACTIONS(1344), 7, - anon_sym_LBRACE, + [5530] = 2, + ACTIONS(1416), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1346), 29, + ACTIONS(1414), 29, sym__verbatim_begin, - sym_strong_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20756,18 +19692,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5620] = 2, - ACTIONS(1348), 7, - anon_sym_LBRACE, + [5570] = 2, + ACTIONS(1422), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1350), 29, + ACTIONS(1420), 29, sym__verbatim_begin, - sym_strong_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20795,18 +19730,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5661] = 2, - ACTIONS(1352), 7, - anon_sym_LBRACE, + [5610] = 2, + ACTIONS(1426), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1354), 29, + ACTIONS(1424), 29, sym__verbatim_begin, - sym_strong_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20834,18 +19768,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5702] = 2, - ACTIONS(1342), 7, - anon_sym_LBRACE, + [5650] = 2, + ACTIONS(1430), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1340), 29, + ACTIONS(1428), 29, sym__verbatim_begin, - sym_delete_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20873,18 +19806,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5743] = 2, - ACTIONS(1360), 7, - anon_sym_LBRACE, + [5690] = 2, + ACTIONS(1434), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1362), 29, + ACTIONS(1432), 29, sym__verbatim_begin, - sym_strong_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20912,18 +19844,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5784] = 2, - ACTIONS(1364), 7, - anon_sym_LBRACE, + [5730] = 2, + ACTIONS(1438), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1366), 29, + ACTIONS(1436), 29, sym__verbatim_begin, - sym_strong_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20951,18 +19882,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5825] = 2, - ACTIONS(1368), 7, - anon_sym_LBRACE, + [5770] = 2, + ACTIONS(1442), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1370), 29, + ACTIONS(1440), 29, sym__verbatim_begin, - sym_strong_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20990,18 +19920,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5866] = 2, - ACTIONS(1372), 7, - anon_sym_LBRACE, + [5810] = 2, + ACTIONS(1416), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1374), 29, + ACTIONS(1414), 29, sym__verbatim_begin, - sym_strong_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21029,18 +19958,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5907] = 2, - ACTIONS(1376), 7, - anon_sym_LBRACE, + [5850] = 2, + ACTIONS(1450), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1378), 29, + ACTIONS(1448), 29, sym__verbatim_begin, - sym_strong_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21068,18 +19996,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5948] = 2, - ACTIONS(1380), 7, - anon_sym_LBRACE, + [5890] = 2, + ACTIONS(1422), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1382), 29, + ACTIONS(1420), 29, sym__verbatim_begin, - sym_strong_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21107,18 +20034,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5989] = 2, - ACTIONS(1332), 7, - anon_sym_LBRACE, + [5930] = 2, + ACTIONS(1458), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1334), 29, + ACTIONS(1456), 29, sym__verbatim_begin, - sym_strong_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21146,18 +20072,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6030] = 2, - ACTIONS(1384), 7, - anon_sym_LBRACE, + [5970] = 2, + ACTIONS(1462), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1386), 29, + ACTIONS(1460), 29, sym__verbatim_begin, - sym_strong_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21185,18 +20110,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6071] = 2, - ACTIONS(1388), 7, - anon_sym_LBRACE, + [6010] = 2, + ACTIONS(1466), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1390), 29, + ACTIONS(1464), 29, sym__verbatim_begin, - sym_strong_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21224,18 +20148,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6112] = 2, - ACTIONS(1392), 7, - anon_sym_LBRACE, + [6050] = 2, + ACTIONS(1426), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1394), 29, + ACTIONS(1424), 29, sym__verbatim_begin, - sym_strong_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21263,18 +20186,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6153] = 2, - ACTIONS(1396), 7, - anon_sym_LBRACE, + [6090] = 2, + ACTIONS(1472), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1398), 29, + ACTIONS(1470), 29, sym__verbatim_begin, - sym_strong_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21302,18 +20224,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6194] = 2, - ACTIONS(1400), 7, - anon_sym_LBRACE, + [6130] = 2, + ACTIONS(1476), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1402), 29, + ACTIONS(1474), 29, sym__verbatim_begin, - sym_strong_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21341,18 +20262,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6235] = 2, - ACTIONS(1404), 7, - anon_sym_LBRACE, + [6170] = 2, + ACTIONS(1480), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1406), 29, + ACTIONS(1478), 29, sym__verbatim_begin, - sym_strong_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21380,19 +20300,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6276] = 4, - ACTIONS(1462), 1, - anon_sym_LBRACE2, - STATE(242), 1, - sym_comment, - ACTIONS(1429), 5, + [6210] = 2, + ACTIONS(1484), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1427), 29, + ACTIONS(1482), 29, sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21410,7 +20328,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -21421,17 +20338,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6321] = 2, - ACTIONS(1423), 7, - anon_sym_LBRACE, + [6250] = 2, + ACTIONS(1488), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1425), 29, + ACTIONS(1486), 29, sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21449,7 +20366,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -21460,17 +20376,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6362] = 2, - ACTIONS(1419), 7, - anon_sym_LBRACE, + [6290] = 2, + ACTIONS(1492), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1421), 29, + ACTIONS(1490), 29, sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21488,7 +20404,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -21499,18 +20414,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6403] = 3, - ACTIONS(1465), 1, - sym__verbatim_begin, - ACTIONS(49), 7, - anon_sym_LBRACE, + [6330] = 2, + ACTIONS(1412), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(101), 28, + ACTIONS(1410), 29, + sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, anon_sym__, @@ -21539,16 +20452,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6446] = 2, - ACTIONS(1419), 7, - anon_sym_LBRACE, + [6370] = 2, + ACTIONS(1496), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1421), 29, + ACTIONS(1494), 29, sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, @@ -21578,16 +20490,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6487] = 2, - ACTIONS(1423), 7, - anon_sym_LBRACE, + [6410] = 2, + ACTIONS(1500), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1425), 29, + ACTIONS(1498), 29, sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, @@ -21617,20 +20528,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6528] = 4, - ACTIONS(1468), 1, - anon_sym_LBRACE2, - STATE(326), 1, - sym_comment, - ACTIONS(1429), 5, + [6450] = 2, + ACTIONS(1504), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1427), 29, + ACTIONS(1502), 29, sym__verbatim_begin, - sym_subscript_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21658,16 +20566,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6573] = 2, - ACTIONS(1442), 7, - anon_sym_LBRACE, + [6490] = 2, + ACTIONS(1508), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1444), 29, + ACTIONS(1506), 29, sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, @@ -21697,18 +20604,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6614] = 2, - ACTIONS(1446), 7, - anon_sym_LBRACE, + [6530] = 2, + ACTIONS(1430), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1448), 29, + ACTIONS(1428), 29, sym__verbatim_begin, - sym_superscript_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21736,18 +20642,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6655] = 2, - ACTIONS(1358), 7, - anon_sym_LBRACE, + [6570] = 2, + ACTIONS(1516), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1356), 29, + ACTIONS(1514), 29, sym__verbatim_begin, - sym_insert_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21775,18 +20680,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6696] = 2, - ACTIONS(1438), 7, - anon_sym_LBRACE, + [6610] = 3, + ACTIONS(1525), 1, + sym__verbatim_begin, + ACTIONS(1279), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1440), 29, - sym__verbatim_begin, - sym_superscript_end, + ACTIONS(1283), 28, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21814,18 +20719,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6737] = 2, - ACTIONS(1434), 7, - anon_sym_LBRACE, + [6652] = 2, + ACTIONS(1446), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1436), 29, + ACTIONS(1444), 29, sym__verbatim_begin, - sym_superscript_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21853,18 +20757,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6778] = 2, - ACTIONS(1412), 7, - anon_sym_LBRACE, + [6692] = 2, + ACTIONS(1454), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1414), 29, + ACTIONS(1452), 29, sym__verbatim_begin, - sym_superscript_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21892,18 +20795,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6819] = 2, - ACTIONS(1408), 7, - anon_sym_LBRACE, + [6732] = 2, + ACTIONS(1434), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1410), 29, + ACTIONS(1432), 29, sym__verbatim_begin, - sym_superscript_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21931,18 +20833,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6860] = 2, - ACTIONS(1336), 7, - anon_sym_LBRACE, + [6772] = 2, + ACTIONS(1512), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1338), 29, + ACTIONS(1510), 29, sym__verbatim_begin, - sym_superscript_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21970,18 +20871,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6901] = 2, - ACTIONS(1450), 7, - anon_sym_LBRACE, + [6812] = 2, + ACTIONS(1454), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, ACTIONS(1452), 29, sym__verbatim_begin, - sym_superscript_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22009,18 +20909,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6942] = 2, - ACTIONS(1454), 7, - anon_sym_LBRACE, + [6852] = 2, + ACTIONS(1512), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1456), 29, + ACTIONS(1510), 29, sym__verbatim_begin, - sym_superscript_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22048,18 +20947,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6983] = 2, - ACTIONS(1458), 7, - anon_sym_LBRACE, + [6892] = 2, + ACTIONS(1523), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1460), 29, + ACTIONS(1521), 29, sym__verbatim_begin, - sym_superscript_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22087,18 +20985,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7024] = 2, - ACTIONS(1342), 7, - anon_sym_LBRACE, + [6932] = 2, + ACTIONS(1438), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1340), 29, + ACTIONS(1436), 29, sym__verbatim_begin, - sym_insert_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22126,18 +21023,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7065] = 2, - ACTIONS(1344), 7, - anon_sym_LBRACE, + [6972] = 2, + ACTIONS(1416), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1346), 29, + ACTIONS(1414), 29, sym__verbatim_begin, - sym_superscript_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22165,18 +21061,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7106] = 2, - ACTIONS(1348), 7, - anon_sym_LBRACE, + [7012] = 2, + ACTIONS(1422), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1350), 29, + ACTIONS(1420), 29, sym__verbatim_begin, - sym_superscript_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22204,18 +21099,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7147] = 2, - ACTIONS(1352), 7, - anon_sym_LBRACE, + [7052] = 2, + ACTIONS(1426), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1354), 29, + ACTIONS(1424), 29, sym__verbatim_begin, - sym_superscript_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22243,18 +21137,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7188] = 2, - ACTIONS(1358), 7, - anon_sym_LBRACE, + [7092] = 2, + ACTIONS(1430), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1356), 29, + ACTIONS(1428), 29, sym__verbatim_begin, - sym_highlighted_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22282,18 +21175,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7229] = 2, - ACTIONS(1360), 7, - anon_sym_LBRACE, + [7132] = 2, + ACTIONS(1434), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1362), 29, + ACTIONS(1432), 29, sym__verbatim_begin, - sym_superscript_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22321,18 +21213,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7270] = 2, - ACTIONS(1364), 7, - anon_sym_LBRACE, + [7172] = 2, + ACTIONS(1438), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1366), 29, + ACTIONS(1436), 29, sym__verbatim_begin, - sym_superscript_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22360,18 +21251,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7311] = 2, - ACTIONS(1368), 7, - anon_sym_LBRACE, + [7212] = 2, + ACTIONS(1442), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1370), 29, + ACTIONS(1440), 29, sym__verbatim_begin, - sym_superscript_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22399,18 +21289,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7352] = 2, - ACTIONS(1372), 7, - anon_sym_LBRACE, + [7252] = 2, + ACTIONS(1442), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1374), 29, + ACTIONS(1440), 29, sym__verbatim_begin, - sym_superscript_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22438,18 +21327,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7393] = 2, - ACTIONS(1376), 7, - anon_sym_LBRACE, + [7292] = 2, + ACTIONS(1446), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1378), 29, + ACTIONS(1444), 29, sym__verbatim_begin, - sym_superscript_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22477,18 +21365,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7434] = 2, - ACTIONS(1380), 7, - anon_sym_LBRACE, + [7332] = 3, + ACTIONS(1528), 1, + sym__verbatim_begin, + ACTIONS(1279), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1382), 29, - sym__verbatim_begin, - sym_superscript_end, + ACTIONS(1283), 28, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22516,18 +21404,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7475] = 2, - ACTIONS(1332), 7, - anon_sym_LBRACE, + [7374] = 2, + ACTIONS(1450), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1334), 29, + ACTIONS(1448), 29, sym__verbatim_begin, - sym_superscript_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22555,18 +21442,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7516] = 2, - ACTIONS(1384), 7, - anon_sym_LBRACE, + [7414] = 2, + ACTIONS(1450), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1386), 29, + ACTIONS(1448), 29, sym__verbatim_begin, - sym_superscript_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22594,18 +21480,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7557] = 2, - ACTIONS(1388), 7, - anon_sym_LBRACE, + [7454] = 2, + ACTIONS(1458), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1390), 29, + ACTIONS(1456), 29, sym__verbatim_begin, - sym_superscript_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22633,18 +21518,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7598] = 2, - ACTIONS(1392), 7, - anon_sym_LBRACE, + [7494] = 2, + ACTIONS(1458), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1394), 29, + ACTIONS(1456), 29, sym__verbatim_begin, - sym_superscript_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22672,18 +21556,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7639] = 2, - ACTIONS(1396), 7, - anon_sym_LBRACE, + [7534] = 2, + ACTIONS(1462), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1398), 29, + ACTIONS(1460), 29, sym__verbatim_begin, - sym_superscript_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22711,18 +21594,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7680] = 2, - ACTIONS(1400), 7, - anon_sym_LBRACE, + [7574] = 2, + ACTIONS(1466), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1402), 29, + ACTIONS(1464), 29, sym__verbatim_begin, - sym_superscript_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22750,18 +21632,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7721] = 2, - ACTIONS(1404), 7, - anon_sym_LBRACE, + [7614] = 2, + ACTIONS(1462), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1406), 29, + ACTIONS(1460), 29, sym__verbatim_begin, - sym_superscript_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22789,17 +21670,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7762] = 2, - ACTIONS(1360), 7, - anon_sym_LBRACE, + [7654] = 2, + ACTIONS(1472), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1362), 29, + ACTIONS(1470), 29, sym__verbatim_begin, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22817,7 +21698,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -22828,17 +21708,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7803] = 2, - ACTIONS(1450), 7, - anon_sym_LBRACE, + [7694] = 2, + ACTIONS(1476), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1452), 29, + ACTIONS(1474), 29, sym__verbatim_begin, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22856,7 +21736,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -22867,17 +21746,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7844] = 2, - ACTIONS(1454), 7, - anon_sym_LBRACE, + [7734] = 2, + ACTIONS(1480), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1456), 29, + ACTIONS(1478), 29, sym__verbatim_begin, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22895,7 +21774,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -22906,18 +21784,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7885] = 2, - ACTIONS(1454), 7, - anon_sym_LBRACE, + [7774] = 2, + ACTIONS(1484), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1456), 29, + ACTIONS(1482), 29, sym__verbatim_begin, - sym_emphasis_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22945,18 +21822,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7926] = 2, - ACTIONS(1404), 7, - anon_sym_LBRACE, + [7814] = 2, + ACTIONS(1488), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1406), 29, + ACTIONS(1486), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22984,18 +21860,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7967] = 2, - ACTIONS(1400), 7, - anon_sym_LBRACE, + [7854] = 2, + ACTIONS(1492), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1402), 29, + ACTIONS(1490), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23023,18 +21898,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8008] = 2, - ACTIONS(1396), 7, - anon_sym_LBRACE, + [7894] = 2, + ACTIONS(1412), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1398), 29, + ACTIONS(1410), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23062,18 +21936,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8049] = 3, - ACTIONS(1471), 1, - sym__verbatim_begin, - ACTIONS(49), 7, - anon_sym_LBRACE, + [7934] = 2, + ACTIONS(1496), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(101), 28, + ACTIONS(1494), 29, + sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, anon_sym__, @@ -23102,16 +21974,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8092] = 2, - ACTIONS(1419), 7, - anon_sym_LBRACE, + [7974] = 2, + ACTIONS(1500), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1421), 29, + ACTIONS(1498), 29, sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, @@ -23141,16 +22012,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8133] = 2, - ACTIONS(1423), 7, - anon_sym_LBRACE, + [8014] = 2, + ACTIONS(1504), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1425), 29, + ACTIONS(1502), 29, sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, @@ -23180,20 +22050,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8174] = 4, - ACTIONS(1474), 1, - anon_sym_LBRACE2, - STATE(371), 1, - sym_comment, - ACTIONS(1429), 5, + [8054] = 2, + ACTIONS(1508), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1427), 29, + ACTIONS(1506), 29, sym__verbatim_begin, - sym_highlighted_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23221,16 +22088,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8219] = 2, - ACTIONS(1392), 7, - anon_sym_LBRACE, + [8094] = 2, + ACTIONS(1466), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1394), 29, + ACTIONS(1464), 29, sym__verbatim_begin, ts_builtin_sym_end, anon_sym_LBRACE_, @@ -23260,18 +22126,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8260] = 2, - ACTIONS(1388), 7, - anon_sym_LBRACE, + [8134] = 2, + ACTIONS(1516), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1390), 29, + ACTIONS(1514), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23299,18 +22164,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8301] = 2, - ACTIONS(1442), 7, - anon_sym_LBRACE, + [8174] = 2, + ACTIONS(1516), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1444), 29, + ACTIONS(1514), 29, sym__verbatim_begin, - sym_subscript_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23338,18 +22202,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8342] = 2, - ACTIONS(1446), 7, - anon_sym_LBRACE, + [8214] = 2, + ACTIONS(1472), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1448), 29, + ACTIONS(1470), 29, sym__verbatim_begin, - sym_subscript_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23377,18 +22240,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8383] = 2, - ACTIONS(1342), 7, - anon_sym_LBRACE, + [8254] = 2, + ACTIONS(1476), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1340), 29, + ACTIONS(1474), 29, sym__verbatim_begin, - sym_highlighted_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23416,18 +22278,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8424] = 2, - ACTIONS(1438), 7, - anon_sym_LBRACE, + [8294] = 2, + ACTIONS(1508), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1440), 29, + ACTIONS(1506), 29, sym__verbatim_begin, - sym_subscript_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23455,18 +22316,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8465] = 2, - ACTIONS(1434), 7, - anon_sym_LBRACE, + [8334] = 3, + ACTIONS(1531), 1, + sym__verbatim_begin, + ACTIONS(1279), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1436), 29, - sym__verbatim_begin, - sym_subscript_end, + ACTIONS(1283), 28, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23494,18 +22355,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8506] = 2, - ACTIONS(1412), 7, - anon_sym_LBRACE, + [8376] = 2, + ACTIONS(1446), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1414), 29, + ACTIONS(1444), 29, sym__verbatim_begin, - sym_subscript_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23533,18 +22393,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8547] = 2, - ACTIONS(1408), 7, - anon_sym_LBRACE, + [8416] = 2, + ACTIONS(1454), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1410), 29, + ACTIONS(1452), 29, sym__verbatim_begin, - sym_subscript_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23572,18 +22431,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8588] = 2, - ACTIONS(1336), 7, - anon_sym_LBRACE, + [8456] = 2, + ACTIONS(1504), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1338), 29, + ACTIONS(1502), 29, sym__verbatim_begin, - sym_subscript_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23611,18 +22469,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8629] = 2, - ACTIONS(1450), 7, - anon_sym_LBRACE, + [8496] = 2, + ACTIONS(1500), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1452), 29, + ACTIONS(1498), 29, sym__verbatim_begin, - sym_subscript_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23650,18 +22507,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8670] = 2, - ACTIONS(1454), 7, - anon_sym_LBRACE, + [8536] = 2, + ACTIONS(1496), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1456), 29, + ACTIONS(1494), 29, sym__verbatim_begin, - sym_subscript_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23689,18 +22545,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8711] = 2, - ACTIONS(1450), 7, - anon_sym_LBRACE, + [8576] = 2, + ACTIONS(1512), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1452), 29, + ACTIONS(1510), 29, sym__verbatim_begin, - sym_emphasis_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23728,18 +22583,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8752] = 2, - ACTIONS(1384), 7, - anon_sym_LBRACE, + [8616] = 2, + ACTIONS(1523), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1386), 29, + ACTIONS(1521), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23767,16 +22621,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8793] = 2, - ACTIONS(1332), 7, - anon_sym_LBRACE, + [8656] = 2, + ACTIONS(1480), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1334), 29, + ACTIONS(1478), 29, sym__verbatim_begin, ts_builtin_sym_end, anon_sym_LBRACE_, @@ -23806,18 +22659,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8834] = 2, - ACTIONS(1458), 7, - anon_sym_LBRACE, + [8696] = 2, + ACTIONS(1416), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1460), 29, + ACTIONS(1414), 29, sym__verbatim_begin, - sym_subscript_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23845,18 +22697,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8875] = 2, - ACTIONS(1358), 7, - anon_sym_LBRACE, + [8736] = 2, + ACTIONS(1422), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1356), 29, + ACTIONS(1420), 29, sym__verbatim_begin, - sym_subscript_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23884,18 +22735,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8916] = 2, - ACTIONS(1344), 7, - anon_sym_LBRACE, + [8776] = 2, + ACTIONS(1426), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1346), 29, + ACTIONS(1424), 29, sym__verbatim_begin, - sym_subscript_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23923,18 +22773,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8957] = 2, - ACTIONS(1348), 7, - anon_sym_LBRACE, + [8816] = 2, + ACTIONS(1430), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1350), 29, + ACTIONS(1428), 29, sym__verbatim_begin, - sym_subscript_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23962,18 +22811,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8998] = 2, - ACTIONS(1352), 7, - anon_sym_LBRACE, + [8856] = 2, + ACTIONS(1434), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1354), 29, + ACTIONS(1432), 29, sym__verbatim_begin, - sym_subscript_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24001,18 +22849,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9039] = 2, - ACTIONS(1342), 7, - anon_sym_LBRACE, + [8896] = 2, + ACTIONS(1438), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1340), 29, + ACTIONS(1436), 29, sym__verbatim_begin, - sym_subscript_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24040,18 +22887,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9080] = 2, - ACTIONS(1360), 7, - anon_sym_LBRACE, + [8936] = 2, + ACTIONS(1442), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1362), 29, + ACTIONS(1440), 29, sym__verbatim_begin, - sym_subscript_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24079,18 +22925,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9121] = 2, - ACTIONS(1364), 7, - anon_sym_LBRACE, + [8976] = 2, + ACTIONS(1484), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1366), 29, + ACTIONS(1482), 29, sym__verbatim_begin, - sym_subscript_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24118,18 +22963,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9162] = 2, - ACTIONS(1368), 7, - anon_sym_LBRACE, + [9016] = 2, + ACTIONS(1412), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1370), 29, + ACTIONS(1410), 29, sym__verbatim_begin, - sym_subscript_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24157,18 +23001,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9203] = 2, - ACTIONS(1372), 7, - anon_sym_LBRACE, + [9056] = 2, + ACTIONS(1492), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1374), 29, + ACTIONS(1490), 29, sym__verbatim_begin, - sym_subscript_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24196,18 +23039,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9244] = 2, - ACTIONS(1376), 7, - anon_sym_LBRACE, + [9096] = 2, + ACTIONS(1488), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1378), 29, + ACTIONS(1486), 29, sym__verbatim_begin, - sym_subscript_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24235,18 +23077,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9285] = 2, - ACTIONS(1380), 7, - anon_sym_LBRACE, + [9136] = 2, + ACTIONS(1450), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1382), 29, + ACTIONS(1448), 29, sym__verbatim_begin, - sym_subscript_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24274,16 +23115,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9326] = 2, - ACTIONS(1364), 7, - anon_sym_LBRACE, + [9176] = 4, + ACTIONS(1534), 1, + aux_sym__text_token1, + STATE(337), 1, + aux_sym__text, + ACTIONS(1289), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(1366), 29, + ACTIONS(1287), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -24302,7 +23145,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -24313,18 +23155,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9367] = 2, - ACTIONS(1384), 7, - anon_sym_LBRACE, + [9220] = 2, + ACTIONS(1458), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1386), 29, + ACTIONS(1456), 29, sym__verbatim_begin, - sym_subscript_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24352,18 +23193,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9408] = 2, - ACTIONS(1388), 7, - anon_sym_LBRACE, + [9260] = 2, + ACTIONS(1462), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1390), 29, + ACTIONS(1460), 29, sym__verbatim_begin, - sym_subscript_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24391,18 +23231,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9449] = 2, - ACTIONS(1392), 7, - anon_sym_LBRACE, + [9300] = 2, + ACTIONS(1466), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1394), 29, + ACTIONS(1464), 29, sym__verbatim_begin, - sym_subscript_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24430,18 +23269,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9490] = 2, - ACTIONS(1396), 7, - anon_sym_LBRACE, + [9340] = 2, + ACTIONS(1488), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1398), 29, + ACTIONS(1486), 29, sym__verbatim_begin, - sym_subscript_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24469,18 +23307,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9531] = 2, - ACTIONS(1400), 7, - anon_sym_LBRACE, + [9380] = 2, + ACTIONS(1472), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1402), 29, + ACTIONS(1470), 29, sym__verbatim_begin, - sym_subscript_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24508,18 +23345,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9572] = 2, - ACTIONS(1404), 7, - anon_sym_LBRACE, + [9420] = 2, + ACTIONS(1476), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1406), 29, + ACTIONS(1474), 29, sym__verbatim_begin, - sym_subscript_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24547,18 +23383,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9613] = 2, - ACTIONS(1336), 7, - anon_sym_LBRACE, + [9460] = 2, + ACTIONS(1480), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1338), 29, + ACTIONS(1478), 29, sym__verbatim_begin, - sym_emphasis_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24586,18 +23421,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9654] = 2, - ACTIONS(1408), 7, - anon_sym_LBRACE, + [9500] = 2, + ACTIONS(1484), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1410), 29, + ACTIONS(1482), 29, sym__verbatim_begin, - sym_emphasis_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24625,18 +23459,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9695] = 2, - ACTIONS(1412), 7, - anon_sym_LBRACE, + [9540] = 2, + ACTIONS(1488), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1414), 29, + ACTIONS(1486), 29, sym__verbatim_begin, - sym_emphasis_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24664,18 +23497,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9736] = 2, - ACTIONS(1434), 7, - anon_sym_LBRACE, + [9580] = 2, + ACTIONS(1492), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1436), 29, + ACTIONS(1490), 29, sym__verbatim_begin, - sym_emphasis_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24703,18 +23535,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9777] = 2, - ACTIONS(1380), 7, - anon_sym_LBRACE, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE2, - aux_sym__text_token1, - ACTIONS(1382), 29, + [9620] = 3, + ACTIONS(1537), 1, + aux_sym_autolink_token1, + ACTIONS(1283), 3, sym__verbatim_begin, - ts_builtin_sym_end, + sym__whitespace1, + sym__newline, + ACTIONS(1279), 31, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24726,13 +23554,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, + sym_en_dash, + sym_backslash_escape, anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -24740,20 +23573,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - sym__whitespace1, - sym__newline, - [9818] = 2, - ACTIONS(1376), 7, - anon_sym_LBRACE, + aux_sym__text_token1, + [9662] = 2, + ACTIONS(1496), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1378), 29, + ACTIONS(1494), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24781,18 +23612,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9859] = 2, - ACTIONS(1372), 7, - anon_sym_LBRACE, + [9702] = 2, + ACTIONS(1500), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1374), 29, + ACTIONS(1498), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24820,18 +23650,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9900] = 3, - ACTIONS(1477), 1, - sym__verbatim_begin, - ACTIONS(49), 7, - anon_sym_LBRACE, + [9742] = 2, + ACTIONS(1504), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(101), 28, + ACTIONS(1502), 29, + sym__verbatim_begin, sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, @@ -24860,16 +23688,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9943] = 2, - ACTIONS(1419), 7, - anon_sym_LBRACE, + [9782] = 2, + ACTIONS(1508), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1421), 29, + ACTIONS(1506), 29, sym__verbatim_begin, sym_highlighted_end, anon_sym_LBRACE_, @@ -24899,18 +23726,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9984] = 2, - ACTIONS(1423), 7, - anon_sym_LBRACE, + [9822] = 2, + ACTIONS(1492), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1425), 29, + ACTIONS(1490), 29, sym__verbatim_begin, - sym_highlighted_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24938,20 +23764,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10025] = 4, - ACTIONS(1480), 1, - anon_sym_LBRACE2, - STATE(416), 1, - sym_comment, - ACTIONS(1429), 5, + [9862] = 2, + ACTIONS(1516), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1427), 29, + ACTIONS(1514), 29, sym__verbatim_begin, - sym_insert_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24979,18 +23802,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10070] = 2, - ACTIONS(1368), 7, - anon_sym_LBRACE, + [9902] = 2, + ACTIONS(1484), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1370), 29, + ACTIONS(1482), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25018,18 +23840,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10111] = 2, - ACTIONS(1364), 7, - anon_sym_LBRACE, + [9942] = 3, + ACTIONS(1539), 1, + sym__non_whitespace_check, + ACTIONS(1279), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1366), 29, + ACTIONS(1283), 28, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25057,18 +23879,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10152] = 2, - ACTIONS(1442), 7, - anon_sym_LBRACE, + [9984] = 2, + ACTIONS(1480), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1444), 29, + ACTIONS(1478), 29, sym__verbatim_begin, - sym_highlighted_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25096,18 +23917,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10193] = 2, - ACTIONS(1446), 7, - anon_sym_LBRACE, + [10024] = 2, + ACTIONS(1476), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1448), 29, + ACTIONS(1474), 29, sym__verbatim_begin, - sym_highlighted_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25135,18 +23955,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10234] = 2, - ACTIONS(1358), 7, - anon_sym_LBRACE, + [10064] = 3, + ACTIONS(1541), 1, + sym__verbatim_begin, + ACTIONS(1279), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1356), 29, - sym__verbatim_begin, - sym_superscript_end, + ACTIONS(1283), 28, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25174,18 +23994,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10275] = 2, - ACTIONS(1438), 7, - anon_sym_LBRACE, + [10106] = 2, + ACTIONS(1446), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1440), 29, + ACTIONS(1444), 29, sym__verbatim_begin, - sym_highlighted_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25213,18 +24032,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10316] = 2, - ACTIONS(1434), 7, - anon_sym_LBRACE, + [10146] = 2, + ACTIONS(1454), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1436), 29, + ACTIONS(1452), 29, sym__verbatim_begin, - sym_highlighted_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25252,18 +24070,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10357] = 2, - ACTIONS(1412), 7, - anon_sym_LBRACE, + [10186] = 2, + ACTIONS(1472), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1414), 29, + ACTIONS(1470), 29, sym__verbatim_begin, - sym_highlighted_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25291,18 +24108,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10398] = 2, - ACTIONS(1408), 7, - anon_sym_LBRACE, + [10226] = 3, + ACTIONS(1544), 1, + sym__non_whitespace_check, + ACTIONS(1279), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1410), 29, + ACTIONS(1283), 28, sym__verbatim_begin, - sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25330,16 +24147,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10439] = 2, - ACTIONS(1458), 7, - anon_sym_LBRACE, + [10268] = 2, + ACTIONS(1466), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1460), 29, + ACTIONS(1464), 29, sym__verbatim_begin, sym_emphasis_end, anon_sym_LBRACE_, @@ -25369,18 +24185,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10480] = 2, - ACTIONS(1450), 7, - anon_sym_LBRACE, + [10308] = 2, + ACTIONS(1512), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1452), 29, + ACTIONS(1510), 29, sym__verbatim_begin, - sym_highlighted_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25408,18 +24223,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10521] = 2, - ACTIONS(1454), 7, - anon_sym_LBRACE, + [10348] = 2, + ACTIONS(1523), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1456), 29, + ACTIONS(1521), 29, sym__verbatim_begin, - sym_highlighted_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25447,18 +24261,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10562] = 2, - ACTIONS(1438), 7, - anon_sym_LBRACE, + [10388] = 2, + ACTIONS(1516), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1440), 29, + ACTIONS(1514), 29, sym__verbatim_begin, - sym_emphasis_end, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25486,18 +24299,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10603] = 2, - ACTIONS(1360), 7, - anon_sym_LBRACE, + [10428] = 2, + ACTIONS(1416), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1362), 29, + ACTIONS(1414), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25525,18 +24337,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10644] = 2, - ACTIONS(1352), 7, - anon_sym_LBRACE, + [10468] = 2, + ACTIONS(1422), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1354), 29, + ACTIONS(1420), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25564,18 +24375,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10685] = 2, - ACTIONS(1458), 7, - anon_sym_LBRACE, + [10508] = 2, + ACTIONS(1426), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1460), 29, + ACTIONS(1424), 29, sym__verbatim_begin, - sym_highlighted_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25603,18 +24413,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10726] = 2, - ACTIONS(1342), 7, - anon_sym_LBRACE, + [10548] = 2, + ACTIONS(1430), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1340), 29, + ACTIONS(1428), 29, sym__verbatim_begin, - sym_superscript_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25642,18 +24451,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10767] = 2, - ACTIONS(1344), 7, - anon_sym_LBRACE, + [10588] = 2, + ACTIONS(1434), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1346), 29, + ACTIONS(1432), 29, sym__verbatim_begin, - sym_highlighted_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25681,18 +24489,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10808] = 2, - ACTIONS(1348), 7, - anon_sym_LBRACE, + [10628] = 2, + ACTIONS(1438), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1350), 29, + ACTIONS(1436), 29, sym__verbatim_begin, - sym_highlighted_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25720,18 +24527,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10849] = 2, - ACTIONS(1352), 7, - anon_sym_LBRACE, + [10668] = 2, + ACTIONS(1442), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1354), 29, + ACTIONS(1440), 29, sym__verbatim_begin, - sym_highlighted_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25759,18 +24565,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10890] = 2, - ACTIONS(1358), 7, - anon_sym_LBRACE, + [10708] = 2, + ACTIONS(1508), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1356), 29, + ACTIONS(1506), 29, sym__verbatim_begin, - sym_strong_end, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25798,18 +24603,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10931] = 2, - ACTIONS(1360), 7, - anon_sym_LBRACE, + [10748] = 2, + ACTIONS(1504), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1362), 29, + ACTIONS(1502), 29, sym__verbatim_begin, - sym_highlighted_end, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25837,18 +24641,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10972] = 2, - ACTIONS(1364), 7, - anon_sym_LBRACE, + [10788] = 2, + ACTIONS(1462), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1366), 29, + ACTIONS(1460), 29, sym__verbatim_begin, - sym_highlighted_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25876,18 +24679,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11013] = 2, - ACTIONS(1368), 7, - anon_sym_LBRACE, + [10828] = 2, + ACTIONS(1458), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1370), 29, + ACTIONS(1456), 29, sym__verbatim_begin, - sym_highlighted_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25915,18 +24717,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11054] = 2, - ACTIONS(1372), 7, - anon_sym_LBRACE, + [10868] = 2, + ACTIONS(1450), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1374), 29, + ACTIONS(1448), 29, sym__verbatim_begin, - sym_highlighted_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25954,18 +24755,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11095] = 2, - ACTIONS(1376), 7, - anon_sym_LBRACE, + [10908] = 2, + ACTIONS(1500), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1378), 29, + ACTIONS(1498), 29, sym__verbatim_begin, - sym_highlighted_end, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25993,18 +24793,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11136] = 2, - ACTIONS(1380), 7, - anon_sym_LBRACE, + [10948] = 2, + ACTIONS(1458), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1382), 29, + ACTIONS(1456), 29, sym__verbatim_begin, - sym_highlighted_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26032,18 +24831,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11177] = 2, - ACTIONS(1332), 7, - anon_sym_LBRACE, + [10988] = 2, + ACTIONS(1462), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1334), 29, + ACTIONS(1460), 29, sym__verbatim_begin, - sym_highlighted_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26071,18 +24869,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11218] = 2, - ACTIONS(1384), 7, - anon_sym_LBRACE, + [11028] = 2, + ACTIONS(1466), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1386), 29, + ACTIONS(1464), 29, sym__verbatim_begin, - sym_highlighted_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26110,18 +24907,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11259] = 2, - ACTIONS(1388), 7, - anon_sym_LBRACE, + [11068] = 2, + ACTIONS(1496), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1390), 29, + ACTIONS(1494), 29, sym__verbatim_begin, - sym_highlighted_end, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26149,18 +24945,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11300] = 2, - ACTIONS(1392), 7, - anon_sym_LBRACE, + [11108] = 2, + ACTIONS(1472), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1394), 29, + ACTIONS(1470), 29, sym__verbatim_begin, - sym_highlighted_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26188,18 +24983,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11341] = 2, - ACTIONS(1396), 7, - anon_sym_LBRACE, + [11148] = 2, + ACTIONS(1476), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1398), 29, + ACTIONS(1474), 29, sym__verbatim_begin, - sym_highlighted_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26227,18 +25021,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11382] = 2, - ACTIONS(1400), 7, - anon_sym_LBRACE, + [11188] = 2, + ACTIONS(1480), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1402), 29, + ACTIONS(1478), 29, sym__verbatim_begin, - sym_highlighted_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26266,18 +25059,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11423] = 2, - ACTIONS(1404), 7, - anon_sym_LBRACE, + [11228] = 2, + ACTIONS(1484), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1406), 29, + ACTIONS(1482), 29, sym__verbatim_begin, - sym_highlighted_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26305,17 +25097,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11464] = 2, - ACTIONS(1358), 7, - anon_sym_LBRACE, + [11268] = 2, + ACTIONS(1488), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1356), 29, + ACTIONS(1486), 29, sym__verbatim_begin, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26334,7 +25126,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -26344,18 +25135,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11505] = 2, - ACTIONS(1446), 7, - anon_sym_LBRACE, + [11308] = 2, + ACTIONS(1492), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1448), 29, + ACTIONS(1490), 29, sym__verbatim_begin, - sym_emphasis_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26383,18 +25173,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11546] = 2, - ACTIONS(1442), 7, - anon_sym_LBRACE, + [11348] = 2, + ACTIONS(1412), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1444), 29, + ACTIONS(1410), 29, sym__verbatim_begin, - sym_emphasis_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26422,18 +25211,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11587] = 3, - ACTIONS(1483), 1, - sym__verbatim_begin, - ACTIONS(49), 7, - anon_sym_LBRACE, + [11388] = 2, + ACTIONS(1496), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(101), 28, + ACTIONS(1494), 29, + sym__verbatim_begin, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26451,7 +25239,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -26462,18 +25249,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11630] = 2, - ACTIONS(1348), 7, - anon_sym_LBRACE, + [11428] = 2, + ACTIONS(1500), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1350), 29, + ACTIONS(1498), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26501,18 +25287,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11671] = 2, - ACTIONS(1344), 7, - anon_sym_LBRACE, + [11468] = 2, + ACTIONS(1504), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1346), 29, + ACTIONS(1502), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26540,18 +25325,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11712] = 2, - ACTIONS(1458), 7, - anon_sym_LBRACE, + [11508] = 2, + ACTIONS(1508), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1460), 29, + ACTIONS(1506), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26579,19 +25363,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11753] = 3, - ACTIONS(1486), 1, - sym__verbatim_begin, - ACTIONS(49), 7, - anon_sym_LBRACE, + [11548] = 2, + ACTIONS(1412), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(101), 28, - sym_insert_end, + ACTIONS(1410), 29, + sym__verbatim_begin, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26619,16 +25401,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11796] = 2, - ACTIONS(1419), 7, - anon_sym_LBRACE, + [11588] = 2, + ACTIONS(1516), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1421), 29, + ACTIONS(1514), 29, sym__verbatim_begin, sym_insert_end, anon_sym_LBRACE_, @@ -26658,18 +25439,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11837] = 2, - ACTIONS(1423), 7, - anon_sym_LBRACE, + [11628] = 2, + ACTIONS(1512), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1425), 29, + ACTIONS(1510), 29, sym__verbatim_begin, - sym_insert_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26697,20 +25477,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11878] = 4, - ACTIONS(1489), 1, - anon_sym_LBRACE2, - STATE(460), 1, - sym_comment, - ACTIONS(1429), 5, + [11668] = 2, + ACTIONS(1450), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1427), 29, + ACTIONS(1448), 29, sym__verbatim_begin, - sym_delete_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26738,17 +25515,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11923] = 2, - ACTIONS(1368), 7, - anon_sym_LBRACE, + [11708] = 2, + ACTIONS(1492), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1370), 29, + ACTIONS(1490), 29, sym__verbatim_begin, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26766,7 +25543,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -26777,18 +25553,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11964] = 2, - ACTIONS(1454), 7, - anon_sym_LBRACE, + [11748] = 2, + ACTIONS(1442), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1456), 29, + ACTIONS(1440), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26816,18 +25591,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12005] = 2, - ACTIONS(1442), 7, - anon_sym_LBRACE, + [11788] = 3, + ACTIONS(1546), 1, + sym__verbatim_begin, + ACTIONS(1279), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1444), 29, - sym__verbatim_begin, - sym_insert_end, + ACTIONS(1283), 28, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26855,18 +25630,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12046] = 2, - ACTIONS(1446), 7, - anon_sym_LBRACE, + [11830] = 2, + ACTIONS(1446), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1448), 29, + ACTIONS(1444), 29, sym__verbatim_begin, - sym_insert_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26894,18 +25668,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12087] = 2, - ACTIONS(1342), 7, - anon_sym_LBRACE, + [11870] = 2, + ACTIONS(1454), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1340), 29, + ACTIONS(1452), 29, sym__verbatim_begin, - sym_strong_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26933,18 +25706,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12128] = 2, - ACTIONS(1438), 7, - anon_sym_LBRACE, + [11910] = 2, + ACTIONS(1438), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1440), 29, + ACTIONS(1436), 29, sym__verbatim_begin, - sym_insert_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26972,18 +25744,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12169] = 2, - ACTIONS(1434), 7, - anon_sym_LBRACE, + [11950] = 2, + ACTIONS(1434), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1436), 29, + ACTIONS(1432), 29, sym__verbatim_begin, - sym_insert_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27011,18 +25782,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12210] = 2, - ACTIONS(1412), 7, - anon_sym_LBRACE, + [11990] = 2, + ACTIONS(1430), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1414), 29, + ACTIONS(1428), 29, sym__verbatim_begin, - sym_insert_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27050,18 +25820,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12251] = 2, - ACTIONS(1408), 7, - anon_sym_LBRACE, + [12030] = 2, + ACTIONS(1512), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1410), 29, + ACTIONS(1510), 29, sym__verbatim_begin, - sym_insert_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27089,18 +25858,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12292] = 2, - ACTIONS(1336), 7, - anon_sym_LBRACE, + [12070] = 2, + ACTIONS(1523), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1338), 29, + ACTIONS(1521), 29, sym__verbatim_begin, - sym_insert_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27128,18 +25896,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12333] = 2, - ACTIONS(1450), 7, - anon_sym_LBRACE, + [12110] = 2, + ACTIONS(1488), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1452), 29, + ACTIONS(1486), 29, sym__verbatim_begin, - sym_insert_end, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27167,18 +25934,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12374] = 2, - ACTIONS(1454), 7, - anon_sym_LBRACE, + [12150] = 2, + ACTIONS(1416), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1456), 29, + ACTIONS(1414), 29, sym__verbatim_begin, - sym_insert_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27206,18 +25972,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12415] = 2, - ACTIONS(1423), 7, - anon_sym_LBRACE, + [12190] = 2, + ACTIONS(1422), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1425), 29, + ACTIONS(1420), 29, sym__verbatim_begin, - sym_emphasis_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27245,18 +26010,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12456] = 2, - ACTIONS(1450), 7, - anon_sym_LBRACE, + [12230] = 2, + ACTIONS(1426), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1452), 29, + ACTIONS(1424), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27284,18 +26048,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12497] = 2, - ACTIONS(1336), 7, - anon_sym_LBRACE, + [12270] = 2, + ACTIONS(1430), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1338), 29, + ACTIONS(1428), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27323,18 +26086,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12538] = 2, - ACTIONS(1458), 7, - anon_sym_LBRACE, + [12310] = 2, + ACTIONS(1434), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1460), 29, + ACTIONS(1432), 29, sym__verbatim_begin, - sym_insert_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27362,18 +26124,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12579] = 2, - ACTIONS(1358), 7, - anon_sym_LBRACE, + [12350] = 2, + ACTIONS(1438), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1356), 29, + ACTIONS(1436), 29, sym__verbatim_begin, - sym_emphasis_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27401,18 +26162,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12620] = 2, - ACTIONS(1344), 7, - anon_sym_LBRACE, + [12390] = 2, + ACTIONS(1442), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1346), 29, + ACTIONS(1440), 29, sym__verbatim_begin, - sym_insert_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27440,18 +26200,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12661] = 2, - ACTIONS(1348), 7, - anon_sym_LBRACE, + [12430] = 2, + ACTIONS(1484), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1350), 29, + ACTIONS(1482), 29, sym__verbatim_begin, - sym_insert_end, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27479,18 +26238,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12702] = 2, - ACTIONS(1352), 7, - anon_sym_LBRACE, + [12470] = 2, + ACTIONS(1426), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1354), 29, + ACTIONS(1424), 29, sym__verbatim_begin, - sym_insert_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27518,16 +26276,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12743] = 2, - ACTIONS(1342), 7, - anon_sym_LBRACE, + [12510] = 2, + ACTIONS(1422), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1340), 29, + ACTIONS(1420), 29, sym__verbatim_begin, sym_emphasis_end, anon_sym_LBRACE_, @@ -27557,18 +26314,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12784] = 2, - ACTIONS(1360), 7, - anon_sym_LBRACE, + [12550] = 2, + ACTIONS(1416), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1362), 29, + ACTIONS(1414), 29, sym__verbatim_begin, - sym_insert_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27596,18 +26352,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12825] = 2, - ACTIONS(1364), 7, - anon_sym_LBRACE, + [12590] = 2, + ACTIONS(1450), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1366), 29, + ACTIONS(1448), 29, sym__verbatim_begin, - sym_insert_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27635,18 +26390,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12866] = 2, - ACTIONS(1368), 7, - anon_sym_LBRACE, + [12630] = 2, + ACTIONS(1480), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1370), 29, + ACTIONS(1478), 29, sym__verbatim_begin, - sym_insert_end, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27674,18 +26428,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12907] = 2, - ACTIONS(1372), 7, - anon_sym_LBRACE, + [12670] = 2, + ACTIONS(1458), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1374), 29, + ACTIONS(1456), 29, sym__verbatim_begin, - sym_insert_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27713,18 +26466,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12948] = 2, - ACTIONS(1376), 7, - anon_sym_LBRACE, + [12710] = 2, + ACTIONS(1462), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1378), 29, + ACTIONS(1460), 29, sym__verbatim_begin, - sym_insert_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27752,18 +26504,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12989] = 2, - ACTIONS(1380), 7, - anon_sym_LBRACE, + [12750] = 2, + ACTIONS(1466), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1382), 29, + ACTIONS(1464), 29, sym__verbatim_begin, - sym_insert_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27791,18 +26542,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13030] = 2, - ACTIONS(1332), 7, - anon_sym_LBRACE, + [12790] = 2, + ACTIONS(1476), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1334), 29, + ACTIONS(1474), 29, sym__verbatim_begin, - sym_insert_end, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27830,18 +26580,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13071] = 2, - ACTIONS(1384), 7, - anon_sym_LBRACE, + [12830] = 2, + ACTIONS(1472), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1386), 29, + ACTIONS(1470), 29, sym__verbatim_begin, - sym_insert_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27869,18 +26618,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13112] = 2, - ACTIONS(1388), 7, - anon_sym_LBRACE, + [12870] = 2, + ACTIONS(1476), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1390), 29, + ACTIONS(1474), 29, sym__verbatim_begin, - sym_insert_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27908,18 +26656,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13153] = 2, - ACTIONS(1392), 7, - anon_sym_LBRACE, + [12910] = 2, + ACTIONS(1480), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1394), 29, + ACTIONS(1478), 29, sym__verbatim_begin, - sym_insert_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27947,18 +26694,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13194] = 2, - ACTIONS(1396), 7, - anon_sym_LBRACE, + [12950] = 2, + ACTIONS(1484), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1398), 29, + ACTIONS(1482), 29, sym__verbatim_begin, - sym_insert_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27986,18 +26732,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13235] = 2, - ACTIONS(1400), 7, - anon_sym_LBRACE, + [12990] = 2, + ACTIONS(1488), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1402), 29, + ACTIONS(1486), 29, sym__verbatim_begin, - sym_insert_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28025,18 +26770,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13276] = 2, - ACTIONS(1404), 7, - anon_sym_LBRACE, + [13030] = 2, + ACTIONS(1492), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1406), 29, + ACTIONS(1490), 29, sym__verbatim_begin, - sym_insert_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28064,18 +26808,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13317] = 2, - ACTIONS(1419), 7, - anon_sym_LBRACE, + [13070] = 2, + ACTIONS(1412), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1421), 29, + ACTIONS(1410), 29, sym__verbatim_begin, - sym_emphasis_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28103,19 +26846,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13358] = 3, - ACTIONS(1492), 1, - sym__verbatim_begin, - ACTIONS(49), 7, - anon_sym_LBRACE, + [13110] = 2, + ACTIONS(1496), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(101), 28, - sym_emphasis_end, + ACTIONS(1494), 29, + sym__verbatim_begin, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28143,17 +26884,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13401] = 2, - ACTIONS(1344), 7, - anon_sym_LBRACE, + [13150] = 2, + ACTIONS(1500), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1346), 29, + ACTIONS(1498), 29, sym__verbatim_begin, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28171,7 +26912,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -28182,17 +26922,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13442] = 2, - ACTIONS(1352), 7, - anon_sym_LBRACE, + [13190] = 2, + ACTIONS(1504), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1354), 29, + ACTIONS(1502), 29, sym__verbatim_begin, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28210,7 +26950,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -28221,18 +26960,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13483] = 2, - ACTIONS(1408), 7, - anon_sym_LBRACE, + [13230] = 2, + ACTIONS(1508), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1410), 29, + ACTIONS(1506), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28260,18 +26998,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13524] = 2, - ACTIONS(1412), 7, - anon_sym_LBRACE, + [13270] = 2, + ACTIONS(1472), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1414), 29, + ACTIONS(1470), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28299,18 +27036,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13565] = 2, - ACTIONS(1434), 7, - anon_sym_LBRACE, + [13310] = 2, + ACTIONS(1516), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1436), 29, + ACTIONS(1514), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28338,19 +27074,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13606] = 3, - ACTIONS(1495), 1, - sym__verbatim_begin, - ACTIONS(49), 7, - anon_sym_LBRACE, + [13350] = 2, + ACTIONS(1466), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(101), 28, - sym_delete_end, + ACTIONS(1464), 29, + sym__verbatim_begin, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28378,18 +27112,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13649] = 2, - ACTIONS(1419), 7, - anon_sym_LBRACE, + [13390] = 2, + ACTIONS(1523), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1421), 29, + ACTIONS(1521), 29, sym__verbatim_begin, - sym_delete_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28417,18 +27150,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13690] = 2, - ACTIONS(1423), 7, - anon_sym_LBRACE, + [13430] = 2, + ACTIONS(1462), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1425), 29, + ACTIONS(1460), 29, sym__verbatim_begin, - sym_delete_end, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28456,18 +27188,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13731] = 4, - ACTIONS(1498), 1, - anon_sym_LBRACE2, - STATE(503), 1, + [13470] = 4, + ACTIONS(1549), 1, + anon_sym_LBRACE, + STATE(421), 1, sym_comment, - ACTIONS(1429), 5, + ACTIONS(1299), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1427), 29, + ACTIONS(1297), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -28487,7 +27219,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -28497,18 +27228,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13776] = 2, - ACTIONS(1438), 7, - anon_sym_LBRACE, + [13514] = 3, + ACTIONS(1551), 1, + sym__verbatim_begin, + ACTIONS(1279), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1440), 29, - sym__verbatim_begin, - ts_builtin_sym_end, + ACTIONS(1283), 28, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28527,6 +27257,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -28536,18 +27267,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13817] = 2, - ACTIONS(1442), 7, - anon_sym_LBRACE, + [13556] = 2, + ACTIONS(1446), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, ACTIONS(1444), 29, sym__verbatim_begin, - sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28566,6 +27295,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -28575,18 +27305,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13858] = 2, - ACTIONS(1446), 7, - anon_sym_LBRACE, + [13596] = 2, + ACTIONS(1454), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1448), 29, + ACTIONS(1452), 29, sym__verbatim_begin, - sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28605,6 +27333,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -28614,17 +27343,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13899] = 2, - ACTIONS(1358), 7, - anon_sym_LBRACE, + [13636] = 2, + ACTIONS(1454), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1356), 29, + ACTIONS(1452), 29, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28642,7 +27371,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -28653,18 +27381,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13940] = 2, - ACTIONS(1438), 7, - anon_sym_LBRACE, + [13676] = 2, + ACTIONS(1446), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1440), 29, + ACTIONS(1444), 29, sym__verbatim_begin, - sym_delete_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28692,18 +27419,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13981] = 2, - ACTIONS(1434), 7, - anon_sym_LBRACE, + [13716] = 3, + ACTIONS(1554), 1, + sym__verbatim_begin, + ACTIONS(1279), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1436), 29, - sym__verbatim_begin, - sym_delete_end, + ACTIONS(1283), 28, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28731,18 +27458,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14022] = 2, - ACTIONS(1412), 7, - anon_sym_LBRACE, + [13758] = 2, + ACTIONS(1512), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1414), 29, + ACTIONS(1510), 29, sym__verbatim_begin, - sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28761,6 +27486,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -28770,18 +27496,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14063] = 2, - ACTIONS(1408), 7, - anon_sym_LBRACE, + [13798] = 2, + ACTIONS(1523), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1410), 29, + ACTIONS(1521), 29, sym__verbatim_begin, - sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28800,6 +27524,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -28809,18 +27534,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14104] = 2, - ACTIONS(1336), 7, - anon_sym_LBRACE, + [13838] = 2, + ACTIONS(1458), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1338), 29, + ACTIONS(1456), 29, sym__verbatim_begin, - sym_delete_end, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28848,18 +27572,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14145] = 2, - ACTIONS(1450), 7, - anon_sym_LBRACE, + [13878] = 2, + ACTIONS(1523), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1452), 29, + ACTIONS(1521), 29, sym__verbatim_begin, - sym_delete_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28887,18 +27610,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14186] = 2, - ACTIONS(1454), 7, - anon_sym_LBRACE, + [13918] = 2, + ACTIONS(1422), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1456), 29, + ACTIONS(1420), 29, sym__verbatim_begin, - sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28917,6 +27638,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -28926,16 +27648,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14227] = 2, - ACTIONS(1458), 7, - anon_sym_LBRACE, + [13958] = 2, + ACTIONS(1426), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1460), 29, + ACTIONS(1424), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -28954,8 +27675,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -28965,18 +27686,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14268] = 2, - ACTIONS(1446), 7, - anon_sym_LBRACE, + [13998] = 2, + ACTIONS(1430), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1448), 29, + ACTIONS(1428), 29, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28995,6 +27714,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -29004,18 +27724,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14309] = 2, - ACTIONS(1442), 7, - anon_sym_LBRACE, + [14038] = 2, + ACTIONS(1434), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1444), 29, + ACTIONS(1432), 29, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29034,6 +27752,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -29043,18 +27762,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14350] = 2, - ACTIONS(1458), 7, - anon_sym_LBRACE, + [14078] = 2, + ACTIONS(1438), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1460), 29, + ACTIONS(1436), 29, sym__verbatim_begin, - sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29073,6 +27790,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -29082,16 +27800,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14391] = 2, - ACTIONS(1342), 7, - anon_sym_LBRACE, + [14118] = 2, + ACTIONS(1442), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1340), 29, + ACTIONS(1440), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -29110,8 +27827,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -29121,18 +27838,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14432] = 2, - ACTIONS(1344), 7, - anon_sym_LBRACE, + [14158] = 2, + ACTIONS(1450), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1346), 29, + ACTIONS(1448), 29, sym__verbatim_begin, - sym_delete_end, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29160,18 +27876,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14473] = 2, - ACTIONS(1348), 7, - anon_sym_LBRACE, + [14198] = 2, + ACTIONS(1412), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1350), 29, + ACTIONS(1410), 29, sym__verbatim_begin, - sym_delete_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29199,18 +27914,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14514] = 2, - ACTIONS(1352), 7, - anon_sym_LBRACE, + [14238] = 2, + ACTIONS(1496), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1354), 29, + ACTIONS(1494), 29, sym__verbatim_begin, - sym_delete_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29238,20 +27952,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14555] = 4, - ACTIONS(1501), 1, - anon_sym_LBRACE2, - STATE(456), 1, - sym_comment, - ACTIONS(1429), 5, + [14278] = 2, + ACTIONS(1442), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1427), 29, + ACTIONS(1440), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29279,18 +27990,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14600] = 2, - ACTIONS(1360), 7, - anon_sym_LBRACE, + [14318] = 2, + ACTIONS(1450), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1362), 29, + ACTIONS(1448), 29, sym__verbatim_begin, - sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29309,6 +28018,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -29318,18 +28028,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14641] = 2, - ACTIONS(1364), 7, - anon_sym_LBRACE, + [14358] = 2, + ACTIONS(1438), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1366), 29, + ACTIONS(1436), 29, sym__verbatim_begin, - sym_delete_end, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29357,18 +28066,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14682] = 2, - ACTIONS(1368), 7, - anon_sym_LBRACE, + [14398] = 2, + ACTIONS(1458), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1370), 29, + ACTIONS(1456), 29, sym__verbatim_begin, - sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29387,6 +28094,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -29396,18 +28104,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14723] = 2, - ACTIONS(1372), 7, - anon_sym_LBRACE, + [14438] = 2, + ACTIONS(1462), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1374), 29, + ACTIONS(1460), 29, sym__verbatim_begin, - sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29426,6 +28132,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -29435,18 +28142,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14764] = 2, - ACTIONS(1376), 7, - anon_sym_LBRACE, + [14478] = 2, + ACTIONS(1466), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1378), 29, + ACTIONS(1464), 29, sym__verbatim_begin, - sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29465,6 +28170,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -29474,18 +28180,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14805] = 2, - ACTIONS(1380), 7, - anon_sym_LBRACE, + [14518] = 2, + ACTIONS(1434), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1382), 29, + ACTIONS(1432), 29, sym__verbatim_begin, - sym_delete_end, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29513,18 +28218,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14846] = 2, - ACTIONS(1332), 7, - anon_sym_LBRACE, + [14558] = 2, + ACTIONS(1472), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1334), 29, + ACTIONS(1470), 29, sym__verbatim_begin, - sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29543,6 +28246,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -29552,18 +28256,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14887] = 2, - ACTIONS(1384), 7, - anon_sym_LBRACE, + [14598] = 2, + ACTIONS(1476), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1386), 29, + ACTIONS(1474), 29, sym__verbatim_begin, - sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29582,6 +28284,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -29591,18 +28294,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14928] = 2, - ACTIONS(1388), 7, - anon_sym_LBRACE, + [14638] = 2, + ACTIONS(1480), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1390), 29, + ACTIONS(1478), 29, sym__verbatim_begin, - sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29621,6 +28322,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -29630,18 +28332,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14969] = 2, - ACTIONS(1392), 7, - anon_sym_LBRACE, + [14678] = 2, + ACTIONS(1484), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1394), 29, + ACTIONS(1482), 29, sym__verbatim_begin, - sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29660,6 +28360,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -29669,18 +28370,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15010] = 2, - ACTIONS(1396), 7, - anon_sym_LBRACE, + [14718] = 2, + ACTIONS(1488), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1398), 29, + ACTIONS(1486), 29, sym__verbatim_begin, - sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29699,6 +28398,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -29708,18 +28408,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15051] = 2, - ACTIONS(1400), 7, - anon_sym_LBRACE, + [14758] = 2, + ACTIONS(1492), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1402), 29, + ACTIONS(1490), 29, sym__verbatim_begin, - sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29738,6 +28436,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -29747,18 +28446,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15092] = 2, - ACTIONS(1404), 7, - anon_sym_LBRACE, + [14798] = 2, + ACTIONS(1412), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1406), 29, + ACTIONS(1410), 29, sym__verbatim_begin, - sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29777,6 +28474,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -29786,16 +28484,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15133] = 2, - ACTIONS(1404), 7, - anon_sym_LBRACE, + [14838] = 2, + ACTIONS(1496), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1406), 29, + ACTIONS(1494), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -29814,8 +28511,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -29825,16 +28522,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15174] = 2, - ACTIONS(1400), 7, - anon_sym_LBRACE, + [14878] = 2, + ACTIONS(1500), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1402), 29, + ACTIONS(1498), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -29853,8 +28549,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -29864,16 +28560,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15215] = 2, - ACTIONS(1396), 7, - anon_sym_LBRACE, + [14918] = 2, + ACTIONS(1504), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1398), 29, + ACTIONS(1502), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -29892,8 +28587,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -29903,16 +28598,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15256] = 2, - ACTIONS(1392), 7, - anon_sym_LBRACE, + [14958] = 2, + ACTIONS(1508), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1394), 29, + ACTIONS(1506), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -29931,8 +28625,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -29942,18 +28636,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15297] = 2, - ACTIONS(1423), 7, - anon_sym_LBRACE, + [14998] = 2, + ACTIONS(1430), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1425), 29, + ACTIONS(1428), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29981,18 +28674,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15338] = 2, - ACTIONS(1419), 7, - anon_sym_LBRACE, + [15038] = 2, + ACTIONS(1516), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1421), 29, + ACTIONS(1514), 29, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30011,6 +28702,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -30020,19 +28712,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15379] = 3, - ACTIONS(1504), 1, - sym__verbatim_begin, - ACTIONS(49), 7, - anon_sym_LBRACE, + [15078] = 2, + ACTIONS(1426), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(101), 28, - ts_builtin_sym_end, + ACTIONS(1424), 29, + sym__verbatim_begin, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30060,18 +28750,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15422] = 3, - ACTIONS(1507), 1, - sym__verbatim_begin, - ACTIONS(49), 7, - anon_sym_LBRACE, + [15118] = 2, + ACTIONS(1516), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(101), 28, + ACTIONS(1514), 29, + sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30090,7 +28779,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -30100,17 +28788,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15465] = 2, - ACTIONS(1419), 7, - anon_sym_LBRACE, + [15158] = 2, + ACTIONS(1422), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1421), 29, + ACTIONS(1420), 29, sym__verbatim_begin, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30129,7 +28817,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -30139,17 +28826,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15506] = 2, - ACTIONS(1423), 7, - anon_sym_LBRACE, + [15198] = 2, + ACTIONS(1416), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1425), 29, + ACTIONS(1414), 29, sym__verbatim_begin, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30168,7 +28855,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -30178,17 +28864,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15547] = 2, - ACTIONS(1388), 7, - anon_sym_LBRACE, + [15238] = 3, + ACTIONS(1557), 1, + sym__verbatim_begin, + ACTIONS(1279), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1390), 29, - sym__verbatim_begin, + ACTIONS(1283), 28, + sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30206,7 +28893,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -30217,17 +28903,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15588] = 2, - ACTIONS(1442), 7, - anon_sym_LBRACE, + [15280] = 2, + ACTIONS(1446), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, ACTIONS(1444), 29, sym__verbatim_begin, + sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30246,7 +28932,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -30256,17 +28941,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15629] = 2, - ACTIONS(1446), 7, - anon_sym_LBRACE, + [15320] = 2, + ACTIONS(1454), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1448), 29, + ACTIONS(1452), 29, sym__verbatim_begin, + sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30285,7 +28970,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -30295,17 +28979,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15670] = 2, - ACTIONS(1384), 7, - anon_sym_LBRACE, + [15360] = 2, + ACTIONS(1523), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1386), 29, + ACTIONS(1521), 29, sym__verbatim_begin, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30323,7 +29007,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -30334,17 +29017,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15711] = 2, - ACTIONS(1438), 7, - anon_sym_LBRACE, + [15400] = 2, + ACTIONS(1512), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1440), 29, + ACTIONS(1510), 29, sym__verbatim_begin, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30363,7 +29046,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -30373,17 +29055,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15752] = 2, - ACTIONS(1434), 7, - anon_sym_LBRACE, + [15440] = 2, + ACTIONS(1512), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1436), 29, + ACTIONS(1510), 29, sym__verbatim_begin, + sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30402,7 +29084,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -30412,17 +29093,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15793] = 2, - ACTIONS(1412), 7, - anon_sym_LBRACE, + [15480] = 2, + ACTIONS(1523), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1414), 29, + ACTIONS(1521), 29, sym__verbatim_begin, + sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30441,7 +29122,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -30451,17 +29131,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15834] = 2, - ACTIONS(1408), 7, - anon_sym_LBRACE, + [15520] = 2, + ACTIONS(1500), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1410), 29, + ACTIONS(1498), 29, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30480,7 +29160,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -30490,17 +29169,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15875] = 2, - ACTIONS(1336), 7, - anon_sym_LBRACE, + [15560] = 2, + ACTIONS(1416), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1338), 29, + ACTIONS(1414), 29, sym__verbatim_begin, + sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30519,7 +29198,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -30529,17 +29207,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15916] = 2, - ACTIONS(1450), 7, - anon_sym_LBRACE, + [15600] = 2, + ACTIONS(1422), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1452), 29, + ACTIONS(1420), 29, sym__verbatim_begin, + sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30558,7 +29236,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -30568,17 +29245,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15957] = 2, - ACTIONS(1454), 7, - anon_sym_LBRACE, + [15640] = 2, + ACTIONS(1426), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1456), 29, + ACTIONS(1424), 29, sym__verbatim_begin, + sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30597,7 +29274,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -30607,17 +29283,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15998] = 2, - ACTIONS(1332), 7, - anon_sym_LBRACE, + [15680] = 2, + ACTIONS(1430), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1334), 29, + ACTIONS(1428), 29, sym__verbatim_begin, + sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30635,7 +29311,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -30646,17 +29321,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16039] = 2, - ACTIONS(1380), 7, - anon_sym_LBRACE, + [15720] = 2, + ACTIONS(1434), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1382), 29, + ACTIONS(1432), 29, sym__verbatim_begin, + sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30674,7 +29349,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -30685,17 +29359,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16080] = 2, - ACTIONS(1458), 7, - anon_sym_LBRACE, + [15760] = 2, + ACTIONS(1438), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1460), 29, + ACTIONS(1436), 29, sym__verbatim_begin, + sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30714,7 +29388,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -30724,20 +29397,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16121] = 4, - ACTIONS(1510), 1, - aux_sym__text_token1, - STATE(513), 1, - aux_sym__text, - ACTIONS(1240), 6, - anon_sym_LBRACE, + [15800] = 2, + ACTIONS(1442), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, - ACTIONS(1242), 28, + aux_sym__text_token1, + ACTIONS(1440), 29, sym__verbatim_begin, + sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30765,17 +29435,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16166] = 2, - ACTIONS(1344), 7, - anon_sym_LBRACE, + [15840] = 2, + ACTIONS(1454), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1346), 29, + ACTIONS(1452), 29, sym__verbatim_begin, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30794,7 +29464,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -30804,17 +29473,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16207] = 2, - ACTIONS(1348), 7, - anon_sym_LBRACE, + [15880] = 2, + ACTIONS(1446), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1350), 29, + ACTIONS(1444), 29, sym__verbatim_begin, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30833,7 +29502,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -30843,17 +29511,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16248] = 2, - ACTIONS(1352), 7, - anon_sym_LBRACE, + [15920] = 3, + ACTIONS(1560), 1, + sym__verbatim_begin, + ACTIONS(1279), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1354), 29, - sym__verbatim_begin, + ACTIONS(1283), 28, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30872,7 +29541,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -30882,17 +29550,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16289] = 2, - ACTIONS(1376), 7, - anon_sym_LBRACE, + [15962] = 2, + ACTIONS(1504), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1378), 29, + ACTIONS(1502), 29, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30910,7 +29578,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -30921,17 +29588,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16330] = 2, - ACTIONS(1360), 7, - anon_sym_LBRACE, + [16002] = 2, + ACTIONS(1450), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1362), 29, + ACTIONS(1448), 29, sym__verbatim_begin, + sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30950,7 +29617,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -30960,17 +29626,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16371] = 2, - ACTIONS(1364), 7, - anon_sym_LBRACE, + [16042] = 2, + ACTIONS(1508), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1366), 29, + ACTIONS(1506), 29, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30989,7 +29655,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -30999,17 +29664,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16412] = 2, - ACTIONS(1368), 7, - anon_sym_LBRACE, + [16082] = 2, + ACTIONS(1458), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1370), 29, + ACTIONS(1456), 29, sym__verbatim_begin, + sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31028,7 +29693,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -31038,17 +29702,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16453] = 2, - ACTIONS(1372), 7, - anon_sym_LBRACE, + [16122] = 2, + ACTIONS(1462), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1374), 29, + ACTIONS(1460), 29, sym__verbatim_begin, + sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31067,7 +29731,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -31077,17 +29740,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16494] = 2, - ACTIONS(1376), 7, - anon_sym_LBRACE, + [16162] = 2, + ACTIONS(1466), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1378), 29, + ACTIONS(1464), 29, sym__verbatim_begin, + sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31106,7 +29769,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -31116,17 +29778,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16535] = 2, - ACTIONS(1380), 7, - anon_sym_LBRACE, + [16202] = 3, + ACTIONS(1563), 1, + sym__verbatim_begin, + ACTIONS(1279), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1382), 29, - sym__verbatim_begin, + ACTIONS(1283), 28, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31145,7 +29808,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -31155,17 +29817,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16576] = 2, - ACTIONS(1332), 7, - anon_sym_LBRACE, + [16244] = 2, + ACTIONS(1472), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1334), 29, + ACTIONS(1470), 29, sym__verbatim_begin, + sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31184,7 +29846,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -31194,17 +29855,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16617] = 2, - ACTIONS(1384), 7, - anon_sym_LBRACE, + [16284] = 2, + ACTIONS(1476), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1386), 29, + ACTIONS(1474), 29, sym__verbatim_begin, + sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31223,7 +29884,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -31233,17 +29893,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16658] = 2, - ACTIONS(1388), 7, - anon_sym_LBRACE, + [16324] = 2, + ACTIONS(1480), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1390), 29, + ACTIONS(1478), 29, sym__verbatim_begin, + sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31262,7 +29922,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -31272,17 +29931,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16699] = 2, - ACTIONS(1392), 7, - anon_sym_LBRACE, + [16364] = 2, + ACTIONS(1484), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1394), 29, + ACTIONS(1482), 29, sym__verbatim_begin, + sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31301,7 +29960,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -31311,17 +29969,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16740] = 2, - ACTIONS(1396), 7, - anon_sym_LBRACE, + [16404] = 2, + ACTIONS(1488), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1398), 29, + ACTIONS(1486), 29, sym__verbatim_begin, + sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31340,7 +29998,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -31350,17 +30007,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16781] = 2, - ACTIONS(1400), 7, - anon_sym_LBRACE, + [16444] = 2, + ACTIONS(1492), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1402), 29, + ACTIONS(1490), 29, sym__verbatim_begin, + sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31379,7 +30036,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -31389,17 +30045,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16822] = 2, - ACTIONS(1404), 7, - anon_sym_LBRACE, + [16484] = 2, + ACTIONS(1412), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1406), 29, + ACTIONS(1410), 29, sym__verbatim_begin, + sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31418,7 +30074,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -31428,19 +30083,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16863] = 3, - ACTIONS(1513), 1, - sym__non_whitespace_check, - ACTIONS(49), 7, - anon_sym_LBRACE, + [16524] = 2, + ACTIONS(1496), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(101), 28, + ACTIONS(1494), 29, sym__verbatim_begin, + sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31468,19 +30121,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16906] = 3, - ACTIONS(1515), 1, - sym__non_whitespace_check, - ACTIONS(49), 7, - anon_sym_LBRACE, + [16564] = 2, + ACTIONS(1500), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(101), 28, + ACTIONS(1498), 29, sym__verbatim_begin, + sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31508,20 +30159,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16949] = 4, - ACTIONS(1238), 1, - anon_sym_LBRACE, - STATE(607), 1, - sym_inline_attribute, - ACTIONS(1188), 6, + [16604] = 2, + ACTIONS(1504), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1186), 28, + ACTIONS(1502), 29, sym__verbatim_begin, + sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31549,15 +30197,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16994] = 3, - ACTIONS(1517), 1, - aux_sym_autolink_token1, - ACTIONS(101), 3, - sym__verbatim_begin, - sym__whitespace1, - sym__newline, - ACTIONS(49), 32, + [16644] = 2, + ACTIONS(1508), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, anon_sym_LBRACE, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1506), 29, + sym__verbatim_begin, + sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31569,18 +30219,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, - sym_en_dash, - sym_backslash_escape, anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LBRACK, - anon_sym_LBRACE2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -31588,18 +30233,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - aux_sym__text_token1, - [17037] = 2, - ACTIONS(1348), 7, - anon_sym_LBRACE, + sym__whitespace1, + sym__newline, + [16684] = 2, + ACTIONS(1516), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1350), 29, + ACTIONS(1514), 29, sym__verbatim_begin, + sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31617,7 +30263,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -31628,16 +30273,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17078] = 2, - ACTIONS(1372), 7, - anon_sym_LBRACE, + [16724] = 2, + ACTIONS(1442), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1374), 29, + ACTIONS(1440), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -31656,7 +30300,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -31667,17 +30310,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17119] = 2, - ACTIONS(1376), 7, - anon_sym_LBRACE, + [16763] = 2, + ACTIONS(1568), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1378), 28, + ACTIONS(1566), 29, sym__verbatim_begin, + sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31705,17 +30347,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17159] = 2, - ACTIONS(1404), 7, - anon_sym_LBRACE, + [16802] = 2, + ACTIONS(1572), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1406), 28, + ACTIONS(1570), 29, sym__verbatim_begin, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31743,17 +30384,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17199] = 2, - ACTIONS(1419), 7, - anon_sym_LBRACE, + [16841] = 2, + ACTIONS(1576), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1421), 28, + ACTIONS(1574), 29, sym__verbatim_begin, + sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31781,17 +30421,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17239] = 2, - ACTIONS(1423), 7, - anon_sym_LBRACE, + [16880] = 2, + ACTIONS(1576), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1425), 28, + ACTIONS(1574), 29, sym__verbatim_begin, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31819,17 +30458,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17279] = 2, - ACTIONS(1358), 6, + [16919] = 2, + ACTIONS(1580), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1356), 29, + ACTIONS(1578), 29, sym__verbatim_begin, - sym_delete_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31857,17 +30495,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17319] = 2, - ACTIONS(1442), 7, - anon_sym_LBRACE, + [16958] = 2, + ACTIONS(1568), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1444), 28, + ACTIONS(1566), 29, sym__verbatim_begin, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31895,17 +30532,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17359] = 2, - ACTIONS(1446), 7, - anon_sym_LBRACE, + [16997] = 2, + ACTIONS(1572), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1448), 28, + ACTIONS(1570), 29, sym__verbatim_begin, + sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31933,17 +30569,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17399] = 2, - ACTIONS(1438), 7, - anon_sym_LBRACE, + [17036] = 2, + ACTIONS(1584), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1440), 28, + ACTIONS(1582), 29, sym__verbatim_begin, + sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31971,17 +30606,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17439] = 2, - ACTIONS(1434), 7, - anon_sym_LBRACE, + [17075] = 2, + ACTIONS(1568), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1436), 28, + ACTIONS(1566), 29, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32009,17 +30643,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17479] = 2, - ACTIONS(1412), 7, - anon_sym_LBRACE, + [17114] = 2, + ACTIONS(1584), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1414), 28, + ACTIONS(1582), 29, sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32047,17 +30680,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17519] = 2, - ACTIONS(1408), 7, - anon_sym_LBRACE, + [17153] = 2, + ACTIONS(1584), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1410), 28, + ACTIONS(1582), 29, sym__verbatim_begin, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32085,17 +30717,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17559] = 2, - ACTIONS(1336), 7, - anon_sym_LBRACE, + [17192] = 2, + ACTIONS(1584), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1338), 28, + ACTIONS(1582), 29, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32123,19 +30754,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17599] = 4, - ACTIONS(1519), 1, - anon_sym_LBRACE2, - STATE(246), 1, - sym_comment, - ACTIONS(1429), 5, + [17231] = 2, + ACTIONS(1572), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1427), 28, + ACTIONS(1570), 29, sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32163,17 +30791,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17643] = 2, - ACTIONS(1450), 7, - anon_sym_LBRACE, + [17270] = 2, + ACTIONS(1576), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1452), 28, + ACTIONS(1574), 29, sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32201,16 +30828,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17683] = 2, - ACTIONS(1454), 7, - anon_sym_LBRACE, + [17309] = 2, + ACTIONS(1568), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1456), 28, + ACTIONS(1566), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32230,6 +30855,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -32239,17 +30865,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17723] = 2, - ACTIONS(1358), 6, + [17348] = 2, + ACTIONS(1580), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1356), 29, + ACTIONS(1578), 29, sym__verbatim_begin, - sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32268,6 +30892,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -32277,17 +30902,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17763] = 2, - ACTIONS(1342), 6, + [17387] = 2, + ACTIONS(1576), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1340), 29, + ACTIONS(1574), 29, sym__verbatim_begin, - sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32306,6 +30929,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -32315,17 +30939,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17803] = 2, - ACTIONS(1458), 7, - anon_sym_LBRACE, + [17426] = 2, + ACTIONS(1580), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1460), 28, + ACTIONS(1578), 29, sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32353,16 +30976,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17843] = 2, - ACTIONS(1342), 6, + [17465] = 2, + ACTIONS(1572), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1340), 29, + ACTIONS(1570), 29, sym__verbatim_begin, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32381,7 +31004,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -32391,17 +31013,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17883] = 2, - ACTIONS(1344), 7, - anon_sym_LBRACE, + [17504] = 2, + ACTIONS(1584), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1346), 28, + ACTIONS(1582), 29, sym__verbatim_begin, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32429,17 +31050,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17923] = 2, - ACTIONS(1348), 7, - anon_sym_LBRACE, + [17543] = 2, + ACTIONS(1568), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1350), 28, + ACTIONS(1566), 29, sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32467,16 +31087,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17963] = 2, - ACTIONS(1352), 7, - anon_sym_LBRACE, + [17582] = 2, + ACTIONS(1572), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1354), 28, + ACTIONS(1570), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32496,6 +31114,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -32505,16 +31124,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18003] = 2, - ACTIONS(1358), 6, + [17621] = 2, + ACTIONS(1576), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1356), 29, + ACTIONS(1574), 29, sym__verbatim_begin, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32533,7 +31152,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -32543,16 +31161,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18043] = 2, - ACTIONS(1360), 7, - anon_sym_LBRACE, + [17660] = 2, + ACTIONS(1584), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1362), 28, + ACTIONS(1582), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32572,6 +31188,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -32581,17 +31198,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18083] = 2, - ACTIONS(1364), 7, - anon_sym_LBRACE, + [17699] = 2, + ACTIONS(1576), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1366), 28, + ACTIONS(1574), 29, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32619,17 +31235,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18123] = 2, - ACTIONS(1368), 7, - anon_sym_LBRACE, + [17738] = 2, + ACTIONS(1584), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1370), 28, + ACTIONS(1582), 29, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32657,17 +31272,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18163] = 2, - ACTIONS(1372), 7, - anon_sym_LBRACE, + [17777] = 2, + ACTIONS(1580), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1374), 28, + ACTIONS(1578), 29, sym__verbatim_begin, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32695,16 +31309,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18203] = 2, - ACTIONS(1524), 6, + [17816] = 2, + ACTIONS(1568), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1522), 29, + ACTIONS(1566), 29, sym__verbatim_begin, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32723,7 +31337,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -32733,17 +31346,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18243] = 2, - ACTIONS(1380), 7, - anon_sym_LBRACE, + [17855] = 2, + ACTIONS(1580), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1382), 28, + ACTIONS(1578), 29, sym__verbatim_begin, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32771,17 +31383,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18283] = 2, - ACTIONS(1332), 7, - anon_sym_LBRACE, + [17894] = 2, + ACTIONS(1576), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1334), 28, + ACTIONS(1574), 29, sym__verbatim_begin, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32809,17 +31420,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18323] = 2, - ACTIONS(1384), 7, - anon_sym_LBRACE, + [17933] = 2, + ACTIONS(1572), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1386), 28, + ACTIONS(1570), 29, sym__verbatim_begin, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32847,17 +31457,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18363] = 2, - ACTIONS(1388), 7, - anon_sym_LBRACE, + [17972] = 2, + ACTIONS(1584), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1390), 28, + ACTIONS(1582), 29, sym__verbatim_begin, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32885,17 +31494,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18403] = 2, - ACTIONS(1392), 7, - anon_sym_LBRACE, + [18011] = 2, + ACTIONS(1572), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1394), 28, + ACTIONS(1570), 29, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32923,17 +31531,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18443] = 2, - ACTIONS(1396), 7, - anon_sym_LBRACE, + [18050] = 2, + ACTIONS(1568), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1398), 28, + ACTIONS(1566), 29, sym__verbatim_begin, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32961,17 +31568,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18483] = 2, - ACTIONS(1400), 7, - anon_sym_LBRACE, + [18089] = 2, + ACTIONS(1580), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1402), 28, + ACTIONS(1578), 29, sym__verbatim_begin, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32999,18 +31605,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18523] = 3, - ACTIONS(1526), 1, - sym_strong_end, - ACTIONS(1429), 6, + [18128] = 2, + ACTIONS(1576), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1427), 28, + ACTIONS(1574), 29, sym__verbatim_begin, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33038,17 +31642,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18565] = 2, - ACTIONS(1358), 6, + [18167] = 3, + ACTIONS(1586), 1, + sym_strong_end, + ACTIONS(1299), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1356), 29, + ACTIONS(1297), 28, sym__verbatim_begin, - sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33076,15 +31680,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18605] = 2, - ACTIONS(1342), 6, + [18208] = 2, + ACTIONS(1572), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1340), 29, + ACTIONS(1570), 29, sym__verbatim_begin, sym_insert_end, anon_sym_LBRACE_, @@ -33114,17 +31717,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18645] = 2, - ACTIONS(1524), 6, + [18247] = 2, + ACTIONS(1568), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1522), 29, + ACTIONS(1566), 29, sym__verbatim_begin, - sym_delete_end, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33152,17 +31754,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18685] = 2, - ACTIONS(1358), 6, + [18286] = 2, + ACTIONS(1584), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1356), 29, + ACTIONS(1582), 29, sym__verbatim_begin, - sym_highlighted_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33190,15 +31791,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18725] = 2, - ACTIONS(1524), 6, + [18325] = 2, + ACTIONS(1580), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1522), 29, + ACTIONS(1578), 29, sym__verbatim_begin, sym_emphasis_end, anon_sym_LBRACE_, @@ -33228,15 +31828,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18765] = 2, - ACTIONS(1342), 6, + [18364] = 3, + ACTIONS(1588), 1, + sym_strong_end, + ACTIONS(1299), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1340), 29, + ACTIONS(1297), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -33255,7 +31856,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -33266,15 +31866,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18805] = 2, - ACTIONS(1342), 6, + [18405] = 2, + ACTIONS(1568), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1340), 29, + ACTIONS(1566), 29, sym__verbatim_begin, sym_highlighted_end, anon_sym_LBRACE_, @@ -33304,17 +31903,54 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18845] = 2, - ACTIONS(1524), 6, + [18444] = 2, + ACTIONS(1584), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1522), 29, + ACTIONS(1582), 29, sym__verbatim_begin, - sym_insert_end, + sym_subscript_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + sym__whitespace1, + sym__newline, + [18483] = 3, + ACTIONS(1590), 1, + sym__verbatim_begin, + ACTIONS(1279), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACE, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1283), 27, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33342,17 +31978,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18885] = 2, - ACTIONS(1524), 6, + [18524] = 2, + ACTIONS(1446), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1522), 29, + ACTIONS(1444), 28, sym__verbatim_begin, - sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33380,17 +32015,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18925] = 2, - ACTIONS(1342), 6, + [18563] = 2, + ACTIONS(1454), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1340), 29, + ACTIONS(1452), 28, sym__verbatim_begin, - sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33418,15 +32052,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18965] = 2, - ACTIONS(1524), 6, + [18602] = 2, + ACTIONS(1580), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1522), 29, + ACTIONS(1578), 29, sym__verbatim_begin, sym_highlighted_end, anon_sym_LBRACE_, @@ -33456,17 +32089,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19005] = 2, - ACTIONS(1358), 6, + [18641] = 2, + ACTIONS(1512), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1356), 29, + ACTIONS(1510), 28, sym__verbatim_begin, - sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33494,17 +32126,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19045] = 2, - ACTIONS(1342), 6, + [18680] = 2, + ACTIONS(1523), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1340), 29, + ACTIONS(1521), 28, sym__verbatim_begin, - sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33532,15 +32163,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19085] = 2, - ACTIONS(1524), 6, + [18719] = 2, + ACTIONS(1572), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1522), 29, + ACTIONS(1570), 29, sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, @@ -33570,17 +32200,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19125] = 2, - ACTIONS(1358), 6, + [18758] = 2, + ACTIONS(1416), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1356), 29, + ACTIONS(1414), 28, sym__verbatim_begin, - sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33608,17 +32237,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19165] = 2, - ACTIONS(1342), 6, + [18797] = 2, + ACTIONS(1422), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1340), 29, + ACTIONS(1420), 28, sym__verbatim_begin, - sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33646,18 +32274,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19205] = 4, - ACTIONS(1528), 1, - anon_sym_LBRACE2, - STATE(378), 1, - sym_comment, - ACTIONS(1429), 5, + [18836] = 2, + ACTIONS(1426), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1427), 28, + ACTIONS(1424), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -33686,17 +32311,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19249] = 2, - ACTIONS(1358), 6, + [18875] = 2, + ACTIONS(1430), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1356), 29, + ACTIONS(1428), 28, sym__verbatim_begin, - sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33724,17 +32348,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19289] = 2, - ACTIONS(1342), 6, + [18914] = 2, + ACTIONS(1434), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1340), 29, + ACTIONS(1432), 28, sym__verbatim_begin, - sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33762,17 +32385,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19329] = 2, - ACTIONS(1524), 6, + [18953] = 2, + ACTIONS(1438), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1522), 29, + ACTIONS(1436), 28, sym__verbatim_begin, - sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33800,17 +32422,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19369] = 2, - ACTIONS(1342), 7, - anon_sym_LBRACE, + [18992] = 2, + ACTIONS(1580), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1340), 28, + ACTIONS(1578), 29, sym__verbatim_begin, + sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33838,17 +32459,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19409] = 2, - ACTIONS(1358), 7, - anon_sym_LBRACE, + [19031] = 2, + ACTIONS(1572), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1356), 28, + ACTIONS(1570), 29, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33876,18 +32496,53 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19449] = 3, - ACTIONS(1531), 1, + [19070] = 2, + ACTIONS(1576), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1574), 29, sym__verbatim_begin, - ACTIONS(49), 7, - anon_sym_LBRACE, + ts_builtin_sym_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + sym__whitespace1, + sym__newline, + [19109] = 2, + ACTIONS(1572), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(101), 27, + ACTIONS(1570), 29, + sym__verbatim_begin, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33915,15 +32570,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19491] = 2, - ACTIONS(1524), 6, + [19148] = 2, + ACTIONS(1450), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1522), 29, + ACTIONS(1448), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -33942,7 +32597,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -33953,18 +32607,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19531] = 3, - ACTIONS(1534), 1, - sym_strong_end, - ACTIONS(1429), 6, + [19187] = 2, + ACTIONS(1576), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1427), 28, + ACTIONS(1574), 29, sym__verbatim_begin, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33992,15 +32644,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19573] = 2, - ACTIONS(1358), 6, + [19226] = 2, + ACTIONS(1458), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1356), 29, + ACTIONS(1456), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -34019,7 +32671,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, - anon_sym_RBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, @@ -34030,17 +32681,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19613] = 2, - ACTIONS(1342), 6, + [19265] = 2, + ACTIONS(1462), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1340), 29, + ACTIONS(1460), 28, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -34068,17 +32718,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19653] = 2, - ACTIONS(1358), 6, + [19304] = 2, + ACTIONS(1466), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1356), 29, + ACTIONS(1464), 28, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -34106,18 +32755,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19693] = 3, - ACTIONS(1534), 1, - sym_emphasis_end, - ACTIONS(1429), 6, + [19343] = 2, + ACTIONS(1580), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1427), 28, + ACTIONS(1578), 29, sym__verbatim_begin, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -34145,18 +32792,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19735] = 4, - ACTIONS(1536), 1, - anon_sym_LBRACE2, - STATE(544), 1, - sym_comment, - ACTIONS(1429), 5, + [19382] = 2, + ACTIONS(1472), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1427), 28, + ACTIONS(1470), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -34185,17 +32829,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19779] = 3, - ACTIONS(1526), 1, - sym_emphasis_end, - ACTIONS(1429), 6, + [19421] = 2, + ACTIONS(1476), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1427), 28, + ACTIONS(1474), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -34224,17 +32866,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19821] = 2, - ACTIONS(1524), 6, + [19460] = 2, + ACTIONS(1480), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1522), 29, + ACTIONS(1478), 28, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -34262,15 +32903,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19861] = 2, - ACTIONS(1358), 6, + [19499] = 2, + ACTIONS(1484), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1356), 28, + ACTIONS(1482), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -34299,15 +32940,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19900] = 2, - ACTIONS(1342), 6, + [19538] = 2, + ACTIONS(1488), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1340), 28, + ACTIONS(1486), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -34336,15 +32977,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19939] = 2, - ACTIONS(1524), 6, + [19577] = 2, + ACTIONS(1492), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LBRACE2, aux_sym__text_token1, - ACTIONS(1522), 28, + ACTIONS(1490), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -34373,5200 +33014,6107 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19978] = 9, - ACTIONS(1539), 1, - anon_sym_RBRACE, - ACTIONS(1541), 1, - sym__id, - ACTIONS(1543), 1, - anon_sym_PERCENT, - ACTIONS(1547), 1, - anon_sym_DOT, - STATE(622), 1, - aux_sym_inline_attribute_repeat1, - STATE(653), 1, - sym__comment_with_newline, - STATE(994), 1, - sym_key, - STATE(655), 2, - sym_class, - sym_key_value, - ACTIONS(1545), 3, + [19616] = 2, + ACTIONS(1412), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACE, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1410), 28, + sym__verbatim_begin, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, sym__whitespace1, sym__newline, - sym_identifier, - [20009] = 9, - ACTIONS(1541), 1, - sym__id, - ACTIONS(1543), 1, - anon_sym_PERCENT, - ACTIONS(1547), 1, - anon_sym_DOT, - ACTIONS(1549), 1, - anon_sym_RBRACE, - STATE(650), 1, - aux_sym_inline_attribute_repeat1, - STATE(653), 1, - sym__comment_with_newline, - STATE(994), 1, - sym_key, - STATE(655), 2, - sym_class, - sym_key_value, - ACTIONS(1545), 3, + [19655] = 2, + ACTIONS(1496), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACE, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1494), 28, + sym__verbatim_begin, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, sym__whitespace1, sym__newline, - sym_identifier, - [20040] = 9, - ACTIONS(1541), 1, - sym__id, - ACTIONS(1543), 1, - anon_sym_PERCENT, - ACTIONS(1547), 1, - anon_sym_DOT, - ACTIONS(1551), 1, - anon_sym_RBRACE, - STATE(650), 1, - aux_sym_inline_attribute_repeat1, - STATE(653), 1, - sym__comment_with_newline, - STATE(994), 1, - sym_key, - STATE(655), 2, - sym_class, - sym_key_value, - ACTIONS(1545), 3, + [19694] = 2, + ACTIONS(1500), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACE, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1498), 28, + sym__verbatim_begin, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, sym__whitespace1, sym__newline, - sym_identifier, - [20071] = 9, - ACTIONS(1541), 1, - sym__id, - ACTIONS(1543), 1, - anon_sym_PERCENT, - ACTIONS(1547), 1, - anon_sym_DOT, - ACTIONS(1553), 1, - anon_sym_RBRACE, - STATE(610), 1, - aux_sym_inline_attribute_repeat1, - STATE(653), 1, - sym__comment_with_newline, - STATE(994), 1, - sym_key, - STATE(655), 2, - sym_class, - sym_key_value, - ACTIONS(1545), 3, + [19733] = 2, + ACTIONS(1504), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACE, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1502), 28, + sym__verbatim_begin, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, sym__whitespace1, sym__newline, - sym_identifier, - [20102] = 9, - ACTIONS(1541), 1, - sym__id, - ACTIONS(1543), 1, - anon_sym_PERCENT, - ACTIONS(1547), 1, - anon_sym_DOT, - ACTIONS(1555), 1, - anon_sym_RBRACE, - STATE(613), 1, - aux_sym_inline_attribute_repeat1, - STATE(653), 1, - sym__comment_with_newline, - STATE(994), 1, - sym_key, - STATE(655), 2, - sym_class, - sym_key_value, - ACTIONS(1545), 3, + [19772] = 2, + ACTIONS(1508), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACE, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1506), 28, + sym__verbatim_begin, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, sym__whitespace1, sym__newline, - sym_identifier, - [20133] = 9, - ACTIONS(1541), 1, - sym__id, - ACTIONS(1543), 1, - anon_sym_PERCENT, - ACTIONS(1547), 1, - anon_sym_DOT, - ACTIONS(1557), 1, - anon_sym_RBRACE, - STATE(650), 1, - aux_sym_inline_attribute_repeat1, - STATE(653), 1, - sym__comment_with_newline, - STATE(994), 1, - sym_key, - STATE(655), 2, - sym_class, - sym_key_value, - ACTIONS(1545), 3, + [19811] = 3, + ACTIONS(1586), 1, + sym_emphasis_end, + ACTIONS(1299), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1297), 28, + sym__verbatim_begin, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, sym__whitespace1, sym__newline, - sym_identifier, - [20164] = 9, - ACTIONS(1541), 1, - sym__id, - ACTIONS(1543), 1, - anon_sym_PERCENT, - ACTIONS(1547), 1, - anon_sym_DOT, - ACTIONS(1559), 1, - anon_sym_RBRACE, - STATE(650), 1, - aux_sym_inline_attribute_repeat1, - STATE(653), 1, - sym__comment_with_newline, - STATE(994), 1, - sym_key, - STATE(655), 2, - sym_class, - sym_key_value, - ACTIONS(1545), 3, + [19852] = 2, + ACTIONS(1516), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACE, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1514), 28, + sym__verbatim_begin, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, sym__whitespace1, sym__newline, - sym_identifier, - [20195] = 9, - ACTIONS(1541), 1, - sym__id, - ACTIONS(1543), 1, - anon_sym_PERCENT, - ACTIONS(1547), 1, - anon_sym_DOT, - ACTIONS(1561), 1, - anon_sym_RBRACE, - STATE(650), 1, - aux_sym_inline_attribute_repeat1, - STATE(653), 1, - sym__comment_with_newline, - STATE(994), 1, - sym_key, - STATE(655), 2, - sym_class, - sym_key_value, - ACTIONS(1545), 3, + [19891] = 3, + ACTIONS(1588), 1, + sym_emphasis_end, + ACTIONS(1299), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1297), 28, + sym__verbatim_begin, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, sym__whitespace1, sym__newline, - sym_identifier, - [20226] = 9, - ACTIONS(1541), 1, - sym__id, - ACTIONS(1543), 1, - anon_sym_PERCENT, - ACTIONS(1547), 1, - anon_sym_DOT, - ACTIONS(1563), 1, - anon_sym_RBRACE, - STATE(615), 1, - aux_sym_inline_attribute_repeat1, - STATE(653), 1, - sym__comment_with_newline, - STATE(994), 1, - sym_key, - STATE(655), 2, - sym_class, - sym_key_value, - ACTIONS(1545), 3, + [19932] = 2, + ACTIONS(1584), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1582), 29, + sym__verbatim_begin, + sym_highlighted_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, sym__whitespace1, sym__newline, - sym_identifier, - [20257] = 9, - ACTIONS(1541), 1, - sym__id, - ACTIONS(1543), 1, - anon_sym_PERCENT, - ACTIONS(1547), 1, - anon_sym_DOT, - ACTIONS(1565), 1, - anon_sym_RBRACE, - STATE(619), 1, - aux_sym_inline_attribute_repeat1, - STATE(653), 1, - sym__comment_with_newline, - STATE(994), 1, - sym_key, - STATE(655), 2, - sym_class, - sym_key_value, - ACTIONS(1545), 3, + [19971] = 2, + ACTIONS(1568), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1566), 29, + sym__verbatim_begin, + sym_emphasis_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, sym__whitespace1, sym__newline, - sym_identifier, - [20288] = 9, - ACTIONS(1541), 1, - sym__id, - ACTIONS(1543), 1, - anon_sym_PERCENT, - ACTIONS(1547), 1, - anon_sym_DOT, - ACTIONS(1567), 1, - anon_sym_RBRACE, - STATE(621), 1, - aux_sym_inline_attribute_repeat1, - STATE(653), 1, - sym__comment_with_newline, - STATE(994), 1, - sym_key, - STATE(655), 2, - sym_class, - sym_key_value, - ACTIONS(1545), 3, + [20010] = 2, + ACTIONS(1568), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1566), 29, + sym__verbatim_begin, + sym_subscript_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, sym__whitespace1, sym__newline, - sym_identifier, - [20319] = 9, - ACTIONS(1541), 1, - sym__id, - ACTIONS(1543), 1, - anon_sym_PERCENT, - ACTIONS(1547), 1, - anon_sym_DOT, - ACTIONS(1569), 1, - anon_sym_RBRACE, - STATE(650), 1, - aux_sym_inline_attribute_repeat1, - STATE(653), 1, - sym__comment_with_newline, - STATE(994), 1, - sym_key, - STATE(655), 2, - sym_class, - sym_key_value, - ACTIONS(1545), 3, + [20049] = 2, + ACTIONS(1576), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1574), 29, + sym__verbatim_begin, + sym_highlighted_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, sym__whitespace1, sym__newline, - sym_identifier, - [20350] = 9, - ACTIONS(1541), 1, - sym__id, - ACTIONS(1543), 1, - anon_sym_PERCENT, - ACTIONS(1547), 1, - anon_sym_DOT, - ACTIONS(1571), 1, - anon_sym_RBRACE, - STATE(635), 1, - aux_sym_inline_attribute_repeat1, - STATE(653), 1, - sym__comment_with_newline, - STATE(994), 1, - sym_key, - STATE(655), 2, - sym_class, - sym_key_value, - ACTIONS(1545), 3, + [20088] = 2, + ACTIONS(1580), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1578), 29, + sym__verbatim_begin, + ts_builtin_sym_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, sym__whitespace1, sym__newline, - sym_identifier, - [20381] = 9, - ACTIONS(1541), 1, - sym__id, - ACTIONS(1543), 1, - anon_sym_PERCENT, - ACTIONS(1547), 1, - anon_sym_DOT, - ACTIONS(1573), 1, - anon_sym_RBRACE, - STATE(650), 1, - aux_sym_inline_attribute_repeat1, - STATE(653), 1, - sym__comment_with_newline, - STATE(994), 1, - sym_key, - STATE(655), 2, - sym_class, - sym_key_value, - ACTIONS(1545), 3, + [20127] = 2, + ACTIONS(1568), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1566), 28, + sym__verbatim_begin, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, sym__whitespace1, sym__newline, - sym_identifier, - [20412] = 9, - ACTIONS(1541), 1, - sym__id, - ACTIONS(1543), 1, - anon_sym_PERCENT, - ACTIONS(1547), 1, - anon_sym_DOT, - ACTIONS(1575), 1, - anon_sym_RBRACE, - STATE(650), 1, - aux_sym_inline_attribute_repeat1, - STATE(653), 1, - sym__comment_with_newline, - STATE(994), 1, - sym_key, - STATE(655), 2, - sym_class, - sym_key_value, - ACTIONS(1545), 3, + [20165] = 2, + ACTIONS(1584), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1582), 28, + sym__verbatim_begin, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, sym__whitespace1, sym__newline, - sym_identifier, - [20443] = 9, - ACTIONS(1541), 1, - sym__id, - ACTIONS(1543), 1, - anon_sym_PERCENT, - ACTIONS(1547), 1, - anon_sym_DOT, - ACTIONS(1577), 1, - anon_sym_RBRACE, - STATE(624), 1, - aux_sym_inline_attribute_repeat1, - STATE(653), 1, - sym__comment_with_newline, - STATE(994), 1, - sym_key, - STATE(655), 2, - sym_class, - sym_key_value, - ACTIONS(1545), 3, + [20203] = 2, + ACTIONS(1572), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1570), 28, + sym__verbatim_begin, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, sym__whitespace1, sym__newline, - sym_identifier, - [20474] = 9, - ACTIONS(1541), 1, - sym__id, - ACTIONS(1543), 1, - anon_sym_PERCENT, - ACTIONS(1547), 1, - anon_sym_DOT, - ACTIONS(1579), 1, - anon_sym_RBRACE, - STATE(650), 1, - aux_sym_inline_attribute_repeat1, - STATE(653), 1, - sym__comment_with_newline, - STATE(994), 1, - sym_key, - STATE(655), 2, - sym_class, - sym_key_value, - ACTIONS(1545), 3, + [20241] = 2, + ACTIONS(1580), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1578), 28, + sym__verbatim_begin, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, sym__whitespace1, sym__newline, - sym_identifier, - [20505] = 9, - ACTIONS(1541), 1, - sym__id, - ACTIONS(1543), 1, - anon_sym_PERCENT, - ACTIONS(1547), 1, - anon_sym_DOT, - ACTIONS(1581), 1, - anon_sym_RBRACE, - STATE(626), 1, - aux_sym_inline_attribute_repeat1, - STATE(653), 1, - sym__comment_with_newline, - STATE(994), 1, - sym_key, - STATE(655), 2, - sym_class, - sym_key_value, - ACTIONS(1545), 3, + [20279] = 2, + ACTIONS(1576), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1574), 28, + sym__verbatim_begin, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, sym__whitespace1, sym__newline, - sym_identifier, - [20536] = 9, - ACTIONS(1541), 1, + [20317] = 9, + ACTIONS(1593), 1, sym__id, - ACTIONS(1543), 1, + ACTIONS(1595), 1, anon_sym_PERCENT, - ACTIONS(1547), 1, + ACTIONS(1599), 1, anon_sym_DOT, - ACTIONS(1583), 1, - anon_sym_RBRACE, - STATE(650), 1, + ACTIONS(1601), 1, + sym__inline_attribute_end, + STATE(627), 1, aux_sym_inline_attribute_repeat1, - STATE(653), 1, + STATE(645), 1, sym__comment_with_newline, - STATE(994), 1, + STATE(1045), 1, sym_key, - STATE(655), 2, + STATE(646), 2, sym_class, sym_key_value, - ACTIONS(1545), 3, + ACTIONS(1597), 3, sym__whitespace1, sym__newline, sym_identifier, - [20567] = 9, - ACTIONS(1541), 1, + [20348] = 9, + ACTIONS(1593), 1, sym__id, - ACTIONS(1543), 1, + ACTIONS(1595), 1, anon_sym_PERCENT, - ACTIONS(1547), 1, + ACTIONS(1599), 1, anon_sym_DOT, - ACTIONS(1585), 1, - anon_sym_RBRACE, - STATE(629), 1, + ACTIONS(1603), 1, + sym__inline_attribute_end, + STATE(617), 1, aux_sym_inline_attribute_repeat1, - STATE(653), 1, + STATE(645), 1, sym__comment_with_newline, - STATE(994), 1, + STATE(1045), 1, sym_key, - STATE(655), 2, + STATE(646), 2, sym_class, sym_key_value, - ACTIONS(1545), 3, + ACTIONS(1597), 3, sym__whitespace1, sym__newline, sym_identifier, - [20598] = 9, - ACTIONS(1541), 1, + [20379] = 9, + ACTIONS(1593), 1, sym__id, - ACTIONS(1543), 1, + ACTIONS(1595), 1, anon_sym_PERCENT, - ACTIONS(1547), 1, + ACTIONS(1599), 1, anon_sym_DOT, - ACTIONS(1587), 1, - anon_sym_RBRACE, - STATE(650), 1, + ACTIONS(1605), 1, + sym__inline_attribute_end, + STATE(631), 1, aux_sym_inline_attribute_repeat1, - STATE(653), 1, + STATE(645), 1, sym__comment_with_newline, - STATE(994), 1, + STATE(1045), 1, sym_key, - STATE(655), 2, + STATE(646), 2, sym_class, sym_key_value, - ACTIONS(1545), 3, + ACTIONS(1597), 3, sym__whitespace1, sym__newline, sym_identifier, - [20629] = 9, - ACTIONS(1541), 1, + [20410] = 9, + ACTIONS(1593), 1, sym__id, - ACTIONS(1543), 1, + ACTIONS(1595), 1, anon_sym_PERCENT, - ACTIONS(1547), 1, + ACTIONS(1599), 1, anon_sym_DOT, - ACTIONS(1589), 1, - anon_sym_RBRACE, - STATE(650), 1, + ACTIONS(1607), 1, + sym__inline_attribute_end, + STATE(625), 1, aux_sym_inline_attribute_repeat1, - STATE(653), 1, + STATE(645), 1, sym__comment_with_newline, - STATE(994), 1, + STATE(1045), 1, sym_key, - STATE(655), 2, + STATE(646), 2, sym_class, sym_key_value, - ACTIONS(1545), 3, + ACTIONS(1597), 3, sym__whitespace1, sym__newline, sym_identifier, - [20660] = 9, - ACTIONS(1541), 1, + [20441] = 9, + ACTIONS(1593), 1, sym__id, - ACTIONS(1543), 1, + ACTIONS(1595), 1, anon_sym_PERCENT, - ACTIONS(1547), 1, + ACTIONS(1599), 1, anon_sym_DOT, - ACTIONS(1591), 1, - anon_sym_RBRACE, - STATE(633), 1, + ACTIONS(1609), 1, + sym__inline_attribute_end, + STATE(630), 1, aux_sym_inline_attribute_repeat1, - STATE(653), 1, + STATE(645), 1, sym__comment_with_newline, - STATE(994), 1, + STATE(1045), 1, sym_key, - STATE(655), 2, + STATE(646), 2, sym_class, sym_key_value, - ACTIONS(1545), 3, + ACTIONS(1597), 3, sym__whitespace1, sym__newline, sym_identifier, - [20691] = 9, - ACTIONS(1541), 1, - sym__id, - ACTIONS(1543), 1, - anon_sym_PERCENT, - ACTIONS(1547), 1, - anon_sym_DOT, + [20472] = 9, ACTIONS(1593), 1, - anon_sym_RBRACE, - STATE(628), 1, - aux_sym_inline_attribute_repeat1, - STATE(653), 1, - sym__comment_with_newline, - STATE(994), 1, - sym_key, - STATE(655), 2, - sym_class, - sym_key_value, - ACTIONS(1545), 3, - sym__whitespace1, - sym__newline, - sym_identifier, - [20722] = 9, - ACTIONS(1541), 1, sym__id, - ACTIONS(1543), 1, - anon_sym_PERCENT, - ACTIONS(1547), 1, - anon_sym_DOT, ACTIONS(1595), 1, - anon_sym_RBRACE, - STATE(651), 1, - aux_sym_inline_attribute_repeat1, - STATE(653), 1, - sym__comment_with_newline, - STATE(994), 1, - sym_key, - STATE(655), 2, - sym_class, - sym_key_value, - ACTIONS(1545), 3, - sym__whitespace1, - sym__newline, - sym_identifier, - [20753] = 9, - ACTIONS(1541), 1, - sym__id, - ACTIONS(1543), 1, anon_sym_PERCENT, - ACTIONS(1547), 1, + ACTIONS(1599), 1, anon_sym_DOT, - ACTIONS(1597), 1, - anon_sym_RBRACE, - STATE(650), 1, + ACTIONS(1611), 1, + sym__inline_attribute_end, + STATE(627), 1, aux_sym_inline_attribute_repeat1, - STATE(653), 1, + STATE(645), 1, sym__comment_with_newline, - STATE(994), 1, + STATE(1045), 1, sym_key, - STATE(655), 2, + STATE(646), 2, sym_class, sym_key_value, - ACTIONS(1545), 3, + ACTIONS(1597), 3, sym__whitespace1, sym__newline, sym_identifier, - [20784] = 9, - ACTIONS(1541), 1, + [20503] = 9, + ACTIONS(1593), 1, sym__id, - ACTIONS(1543), 1, + ACTIONS(1595), 1, anon_sym_PERCENT, - ACTIONS(1547), 1, - anon_sym_DOT, ACTIONS(1599), 1, - anon_sym_RBRACE, - STATE(609), 1, + anon_sym_DOT, + ACTIONS(1613), 1, + sym__inline_attribute_end, + STATE(622), 1, aux_sym_inline_attribute_repeat1, - STATE(653), 1, + STATE(645), 1, sym__comment_with_newline, - STATE(994), 1, + STATE(1045), 1, sym_key, - STATE(655), 2, + STATE(646), 2, sym_class, sym_key_value, - ACTIONS(1545), 3, + ACTIONS(1597), 3, sym__whitespace1, sym__newline, sym_identifier, - [20815] = 9, - ACTIONS(1541), 1, + [20534] = 9, + ACTIONS(1593), 1, sym__id, - ACTIONS(1543), 1, + ACTIONS(1595), 1, anon_sym_PERCENT, - ACTIONS(1547), 1, - anon_sym_DOT, - ACTIONS(1601), 1, - anon_sym_RBRACE, - STATE(650), 1, + ACTIONS(1599), 1, + anon_sym_DOT, + ACTIONS(1615), 1, + sym__inline_attribute_end, + STATE(627), 1, aux_sym_inline_attribute_repeat1, - STATE(653), 1, + STATE(645), 1, sym__comment_with_newline, - STATE(994), 1, + STATE(1045), 1, sym_key, - STATE(655), 2, + STATE(646), 2, sym_class, sym_key_value, - ACTIONS(1545), 3, + ACTIONS(1597), 3, sym__whitespace1, sym__newline, sym_identifier, - [20846] = 9, - ACTIONS(1541), 1, + [20565] = 9, + ACTIONS(1593), 1, sym__id, - ACTIONS(1543), 1, + ACTIONS(1595), 1, anon_sym_PERCENT, - ACTIONS(1547), 1, + ACTIONS(1599), 1, anon_sym_DOT, - ACTIONS(1603), 1, - anon_sym_RBRACE, - STATE(637), 1, + ACTIONS(1617), 1, + sym__inline_attribute_end, + STATE(627), 1, aux_sym_inline_attribute_repeat1, - STATE(653), 1, + STATE(645), 1, sym__comment_with_newline, - STATE(994), 1, + STATE(1045), 1, sym_key, - STATE(655), 2, + STATE(646), 2, sym_class, sym_key_value, - ACTIONS(1545), 3, + ACTIONS(1597), 3, sym__whitespace1, sym__newline, sym_identifier, - [20877] = 9, - ACTIONS(1541), 1, + [20596] = 9, + ACTIONS(1593), 1, sym__id, - ACTIONS(1543), 1, + ACTIONS(1595), 1, anon_sym_PERCENT, - ACTIONS(1547), 1, + ACTIONS(1599), 1, anon_sym_DOT, - ACTIONS(1605), 1, - anon_sym_RBRACE, - STATE(650), 1, + ACTIONS(1619), 1, + sym__inline_attribute_end, + STATE(627), 1, aux_sym_inline_attribute_repeat1, - STATE(653), 1, + STATE(645), 1, sym__comment_with_newline, - STATE(994), 1, + STATE(1045), 1, sym_key, - STATE(655), 2, + STATE(646), 2, sym_class, sym_key_value, - ACTIONS(1545), 3, + ACTIONS(1597), 3, sym__whitespace1, sym__newline, sym_identifier, - [20908] = 9, - ACTIONS(1541), 1, + [20627] = 9, + ACTIONS(1621), 1, sym__id, - ACTIONS(1543), 1, + ACTIONS(1624), 1, anon_sym_PERCENT, - ACTIONS(1547), 1, + ACTIONS(1630), 1, anon_sym_DOT, - ACTIONS(1607), 1, - anon_sym_RBRACE, - STATE(639), 1, + ACTIONS(1633), 1, + sym__inline_attribute_end, + STATE(627), 1, aux_sym_inline_attribute_repeat1, - STATE(653), 1, + STATE(645), 1, sym__comment_with_newline, - STATE(994), 1, + STATE(1045), 1, sym_key, - STATE(655), 2, + STATE(646), 2, sym_class, sym_key_value, - ACTIONS(1545), 3, + ACTIONS(1627), 3, sym__whitespace1, sym__newline, sym_identifier, - [20939] = 9, - ACTIONS(1541), 1, + [20658] = 9, + ACTIONS(1593), 1, sym__id, - ACTIONS(1543), 1, + ACTIONS(1595), 1, anon_sym_PERCENT, - ACTIONS(1547), 1, + ACTIONS(1599), 1, anon_sym_DOT, - ACTIONS(1609), 1, - anon_sym_RBRACE, - STATE(650), 1, + ACTIONS(1635), 1, + sym__inline_attribute_end, + STATE(627), 1, aux_sym_inline_attribute_repeat1, - STATE(653), 1, + STATE(645), 1, sym__comment_with_newline, - STATE(994), 1, + STATE(1045), 1, sym_key, - STATE(655), 2, + STATE(646), 2, sym_class, sym_key_value, - ACTIONS(1545), 3, + ACTIONS(1597), 3, sym__whitespace1, sym__newline, sym_identifier, - [20970] = 9, - ACTIONS(1541), 1, + [20689] = 9, + ACTIONS(1593), 1, sym__id, - ACTIONS(1543), 1, + ACTIONS(1595), 1, anon_sym_PERCENT, - ACTIONS(1547), 1, + ACTIONS(1599), 1, anon_sym_DOT, - ACTIONS(1611), 1, - anon_sym_RBRACE, - STATE(641), 1, + ACTIONS(1637), 1, + sym__inline_attribute_end, + STATE(626), 1, aux_sym_inline_attribute_repeat1, - STATE(653), 1, + STATE(645), 1, sym__comment_with_newline, - STATE(994), 1, + STATE(1045), 1, sym_key, - STATE(655), 2, + STATE(646), 2, sym_class, sym_key_value, - ACTIONS(1545), 3, + ACTIONS(1597), 3, sym__whitespace1, sym__newline, sym_identifier, - [21001] = 9, - ACTIONS(1541), 1, + [20720] = 9, + ACTIONS(1593), 1, sym__id, - ACTIONS(1543), 1, + ACTIONS(1595), 1, anon_sym_PERCENT, - ACTIONS(1547), 1, + ACTIONS(1599), 1, anon_sym_DOT, - ACTIONS(1613), 1, - anon_sym_RBRACE, - STATE(650), 1, + ACTIONS(1639), 1, + sym__inline_attribute_end, + STATE(627), 1, aux_sym_inline_attribute_repeat1, - STATE(653), 1, + STATE(645), 1, sym__comment_with_newline, - STATE(994), 1, + STATE(1045), 1, sym_key, - STATE(655), 2, + STATE(646), 2, sym_class, sym_key_value, - ACTIONS(1545), 3, + ACTIONS(1597), 3, sym__whitespace1, sym__newline, sym_identifier, - [21032] = 9, - ACTIONS(1541), 1, + [20751] = 9, + ACTIONS(1593), 1, sym__id, - ACTIONS(1543), 1, + ACTIONS(1595), 1, anon_sym_PERCENT, - ACTIONS(1547), 1, + ACTIONS(1599), 1, anon_sym_DOT, - ACTIONS(1615), 1, - anon_sym_RBRACE, - STATE(643), 1, + ACTIONS(1641), 1, + sym__inline_attribute_end, + STATE(627), 1, aux_sym_inline_attribute_repeat1, - STATE(653), 1, + STATE(645), 1, sym__comment_with_newline, - STATE(994), 1, + STATE(1045), 1, sym_key, - STATE(655), 2, + STATE(646), 2, sym_class, sym_key_value, - ACTIONS(1545), 3, + ACTIONS(1597), 3, sym__whitespace1, sym__newline, sym_identifier, - [21063] = 9, - ACTIONS(1541), 1, + [20782] = 9, + ACTIONS(1593), 1, sym__id, - ACTIONS(1543), 1, + ACTIONS(1595), 1, anon_sym_PERCENT, - ACTIONS(1547), 1, + ACTIONS(1599), 1, anon_sym_DOT, - ACTIONS(1617), 1, - anon_sym_RBRACE, - STATE(650), 1, + ACTIONS(1643), 1, + sym__inline_attribute_end, + STATE(633), 1, aux_sym_inline_attribute_repeat1, - STATE(653), 1, + STATE(645), 1, sym__comment_with_newline, - STATE(994), 1, + STATE(1045), 1, sym_key, - STATE(655), 2, + STATE(646), 2, sym_class, sym_key_value, - ACTIONS(1545), 3, + ACTIONS(1597), 3, sym__whitespace1, sym__newline, sym_identifier, - [21094] = 9, - ACTIONS(1541), 1, + [20813] = 9, + ACTIONS(1593), 1, sym__id, - ACTIONS(1543), 1, + ACTIONS(1595), 1, anon_sym_PERCENT, - ACTIONS(1547), 1, + ACTIONS(1599), 1, anon_sym_DOT, - ACTIONS(1619), 1, - anon_sym_RBRACE, - STATE(645), 1, + ACTIONS(1645), 1, + sym__inline_attribute_end, + STATE(627), 1, aux_sym_inline_attribute_repeat1, - STATE(653), 1, + STATE(645), 1, sym__comment_with_newline, - STATE(994), 1, + STATE(1045), 1, sym_key, - STATE(655), 2, + STATE(646), 2, sym_class, sym_key_value, - ACTIONS(1545), 3, + ACTIONS(1597), 3, sym__whitespace1, sym__newline, sym_identifier, - [21125] = 9, - ACTIONS(1541), 1, + [20844] = 9, + ACTIONS(1593), 1, sym__id, - ACTIONS(1543), 1, + ACTIONS(1595), 1, anon_sym_PERCENT, - ACTIONS(1547), 1, + ACTIONS(1599), 1, anon_sym_DOT, - ACTIONS(1621), 1, - anon_sym_RBRACE, - STATE(650), 1, + ACTIONS(1647), 1, + sym__inline_attribute_end, + STATE(628), 1, aux_sym_inline_attribute_repeat1, - STATE(653), 1, + STATE(645), 1, sym__comment_with_newline, - STATE(994), 1, + STATE(1045), 1, sym_key, - STATE(655), 2, + STATE(646), 2, sym_class, sym_key_value, - ACTIONS(1545), 3, + ACTIONS(1597), 3, sym__whitespace1, sym__newline, sym_identifier, - [21156] = 9, - ACTIONS(1541), 1, + [20875] = 9, + ACTIONS(1593), 1, sym__id, - ACTIONS(1543), 1, + ACTIONS(1595), 1, anon_sym_PERCENT, - ACTIONS(1547), 1, + ACTIONS(1599), 1, anon_sym_DOT, - ACTIONS(1623), 1, - anon_sym_RBRACE, - STATE(614), 1, + ACTIONS(1649), 1, + sym__inline_attribute_end, + STATE(627), 1, aux_sym_inline_attribute_repeat1, - STATE(653), 1, + STATE(645), 1, sym__comment_with_newline, - STATE(994), 1, + STATE(1045), 1, sym_key, - STATE(655), 2, + STATE(646), 2, sym_class, sym_key_value, - ACTIONS(1545), 3, + ACTIONS(1597), 3, sym__whitespace1, sym__newline, sym_identifier, - [21187] = 9, - ACTIONS(1541), 1, + [20906] = 9, + ACTIONS(1593), 1, sym__id, - ACTIONS(1543), 1, + ACTIONS(1595), 1, anon_sym_PERCENT, - ACTIONS(1547), 1, + ACTIONS(1599), 1, anon_sym_DOT, - ACTIONS(1625), 1, - anon_sym_RBRACE, - STATE(649), 1, + ACTIONS(1651), 1, + sym__inline_attribute_end, + STATE(635), 1, aux_sym_inline_attribute_repeat1, - STATE(653), 1, + STATE(645), 1, sym__comment_with_newline, - STATE(994), 1, + STATE(1045), 1, sym_key, - STATE(655), 2, + STATE(646), 2, sym_class, sym_key_value, - ACTIONS(1545), 3, + ACTIONS(1597), 3, sym__whitespace1, sym__newline, sym_identifier, - [21218] = 9, - ACTIONS(1541), 1, + [20937] = 9, + ACTIONS(1593), 1, sym__id, - ACTIONS(1543), 1, + ACTIONS(1595), 1, anon_sym_PERCENT, - ACTIONS(1547), 1, + ACTIONS(1599), 1, anon_sym_DOT, - ACTIONS(1627), 1, - anon_sym_RBRACE, - STATE(652), 1, + ACTIONS(1653), 1, + sym__inline_attribute_end, + STATE(627), 1, aux_sym_inline_attribute_repeat1, - STATE(653), 1, + STATE(645), 1, sym__comment_with_newline, - STATE(994), 1, + STATE(1045), 1, sym_key, - STATE(655), 2, + STATE(646), 2, sym_class, sym_key_value, - ACTIONS(1545), 3, + ACTIONS(1597), 3, sym__whitespace1, sym__newline, sym_identifier, - [21249] = 9, - ACTIONS(1541), 1, + [20968] = 9, + ACTIONS(1593), 1, sym__id, - ACTIONS(1543), 1, + ACTIONS(1595), 1, anon_sym_PERCENT, - ACTIONS(1547), 1, + ACTIONS(1599), 1, anon_sym_DOT, - ACTIONS(1629), 1, - anon_sym_RBRACE, - STATE(650), 1, + ACTIONS(1655), 1, + sym__inline_attribute_end, + STATE(637), 1, aux_sym_inline_attribute_repeat1, - STATE(653), 1, + STATE(645), 1, sym__comment_with_newline, - STATE(994), 1, + STATE(1045), 1, sym_key, - STATE(655), 2, + STATE(646), 2, sym_class, sym_key_value, - ACTIONS(1545), 3, + ACTIONS(1597), 3, sym__whitespace1, sym__newline, sym_identifier, - [21280] = 9, - ACTIONS(1631), 1, - anon_sym_RBRACE, - ACTIONS(1633), 1, + [20999] = 9, + ACTIONS(1593), 1, sym__id, - ACTIONS(1636), 1, + ACTIONS(1595), 1, anon_sym_PERCENT, - ACTIONS(1642), 1, + ACTIONS(1599), 1, anon_sym_DOT, - STATE(650), 1, + ACTIONS(1657), 1, + sym__inline_attribute_end, + STATE(627), 1, aux_sym_inline_attribute_repeat1, - STATE(653), 1, + STATE(645), 1, sym__comment_with_newline, - STATE(994), 1, + STATE(1045), 1, sym_key, - STATE(655), 2, + STATE(646), 2, sym_class, sym_key_value, - ACTIONS(1639), 3, + ACTIONS(1597), 3, sym__whitespace1, sym__newline, sym_identifier, - [21311] = 9, - ACTIONS(1541), 1, + [21030] = 9, + ACTIONS(1593), 1, sym__id, - ACTIONS(1543), 1, + ACTIONS(1595), 1, anon_sym_PERCENT, - ACTIONS(1547), 1, + ACTIONS(1599), 1, anon_sym_DOT, - ACTIONS(1645), 1, - anon_sym_RBRACE, - STATE(650), 1, + ACTIONS(1659), 1, + sym__inline_attribute_end, + STATE(639), 1, aux_sym_inline_attribute_repeat1, - STATE(653), 1, + STATE(645), 1, sym__comment_with_newline, - STATE(994), 1, + STATE(1045), 1, sym_key, - STATE(655), 2, + STATE(646), 2, sym_class, sym_key_value, - ACTIONS(1545), 3, + ACTIONS(1597), 3, sym__whitespace1, sym__newline, sym_identifier, - [21342] = 9, - ACTIONS(1541), 1, + [21061] = 9, + ACTIONS(1593), 1, sym__id, - ACTIONS(1543), 1, + ACTIONS(1595), 1, anon_sym_PERCENT, - ACTIONS(1547), 1, + ACTIONS(1599), 1, anon_sym_DOT, - ACTIONS(1647), 1, - anon_sym_RBRACE, - STATE(650), 1, + ACTIONS(1661), 1, + sym__inline_attribute_end, + STATE(624), 1, aux_sym_inline_attribute_repeat1, - STATE(653), 1, + STATE(645), 1, sym__comment_with_newline, - STATE(994), 1, + STATE(1045), 1, sym_key, - STATE(655), 2, + STATE(646), 2, sym_class, sym_key_value, - ACTIONS(1545), 3, + ACTIONS(1597), 3, sym__whitespace1, sym__newline, sym_identifier, - [21373] = 1, - ACTIONS(1649), 7, - anon_sym_RBRACE, + [21092] = 1, + ACTIONS(1663), 7, + sym__inline_attribute_end, sym__id, anon_sym_PERCENT, sym__whitespace1, sym__newline, anon_sym_DOT, sym_identifier, - [21383] = 1, - ACTIONS(1651), 7, - anon_sym_RBRACE, + [21102] = 1, + ACTIONS(1665), 7, + sym__inline_attribute_end, sym__id, anon_sym_PERCENT, sym__whitespace1, sym__newline, anon_sym_DOT, sym_identifier, - [21393] = 1, - ACTIONS(1653), 7, - anon_sym_RBRACE, + [21112] = 1, + ACTIONS(1667), 7, + sym__inline_attribute_end, sym__id, anon_sym_PERCENT, sym__whitespace1, sym__newline, anon_sym_DOT, sym_identifier, - [21403] = 1, - ACTIONS(1655), 7, - anon_sym_RBRACE, + [21122] = 1, + ACTIONS(1669), 7, + sym__inline_attribute_end, sym__id, anon_sym_PERCENT, sym__whitespace1, sym__newline, anon_sym_DOT, sym_identifier, - [21413] = 1, - ACTIONS(1657), 7, - anon_sym_RBRACE, + [21132] = 1, + ACTIONS(1671), 7, + sym__inline_attribute_end, sym__id, anon_sym_PERCENT, sym__whitespace1, sym__newline, anon_sym_DOT, sym_identifier, - [21423] = 1, - ACTIONS(1659), 7, - anon_sym_RBRACE, + [21142] = 1, + ACTIONS(1673), 7, + sym__inline_attribute_end, sym__id, anon_sym_PERCENT, sym__whitespace1, sym__newline, anon_sym_DOT, sym_identifier, - [21433] = 1, - ACTIONS(1661), 7, - anon_sym_RBRACE, + [21152] = 1, + ACTIONS(1675), 7, + sym__inline_attribute_end, sym__id, anon_sym_PERCENT, sym__whitespace1, sym__newline, anon_sym_DOT, sym_identifier, - [21443] = 1, - ACTIONS(1663), 7, - anon_sym_RBRACE, + [21162] = 1, + ACTIONS(1677), 7, + sym__inline_attribute_end, sym__id, anon_sym_PERCENT, sym__whitespace1, sym__newline, anon_sym_DOT, sym_identifier, - [21453] = 1, - ACTIONS(1665), 7, - anon_sym_RBRACE, + [21172] = 1, + ACTIONS(1679), 7, + sym__inline_attribute_end, sym__id, anon_sym_PERCENT, sym__whitespace1, sym__newline, anon_sym_DOT, sym_identifier, - [21463] = 3, - ACTIONS(1669), 1, - anon_sym_PERCENT, - STATE(688), 1, - aux_sym__comment_with_newline_repeat1, - ACTIONS(1667), 3, - sym_backslash_escape, - aux_sym__comment_with_newline_token1, - sym__newline, - [21475] = 5, - ACTIONS(1671), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(1673), 1, - anon_sym_LBRACK, - ACTIONS(1675), 1, - anon_sym_LPAREN, - STATE(251), 1, - sym__link_label, - STATE(252), 1, - sym_inline_link_destination, - [21491] = 5, - ACTIONS(1677), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(1679), 1, - anon_sym_LBRACK, - ACTIONS(1681), 1, - anon_sym_LPAREN, - STATE(465), 1, - sym__link_label, - STATE(466), 1, - sym_inline_link_destination, - [21507] = 4, + [21182] = 5, ACTIONS(1683), 1, anon_sym_LBRACE, - ACTIONS(1687), 1, + ACTIONS(1685), 1, anon_sym_LBRACK, - STATE(221), 1, + STATE(532), 1, sym_inline_attribute, - ACTIONS(1685), 2, + STATE(1097), 1, + sym__inline_attribute_begin, + ACTIONS(1681), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - [21521] = 5, - ACTIONS(1679), 1, + [21199] = 5, + ACTIONS(1685), 1, anon_sym_LBRACK, - ACTIONS(1681), 1, + ACTIONS(1687), 1, + anon_sym_LBRACE, + STATE(614), 1, + sym_inline_attribute, + STATE(1127), 1, + sym__inline_attribute_begin, + ACTIONS(1681), 2, + anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, + [21216] = 5, + ACTIONS(1685), 1, + anon_sym_LBRACK, ACTIONS(1689), 1, + anon_sym_LBRACE, + STATE(576), 1, + sym_inline_attribute, + STATE(1022), 1, + sym__inline_attribute_begin, + ACTIONS(1681), 2, anon_sym_LBRACK_RBRACK, - STATE(462), 1, - sym__link_label, - STATE(463), 1, - sym_inline_link_destination, - [21537] = 4, - ACTIONS(1687), 1, + anon_sym_LPAREN, + [21233] = 5, + ACTIONS(1685), 1, anon_sym_LBRACK, ACTIONS(1691), 1, anon_sym_LBRACE, - STATE(476), 1, + STATE(538), 1, sym_inline_attribute, - ACTIONS(1685), 2, + STATE(1007), 1, + sym__inline_attribute_begin, + ACTIONS(1681), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - [21551] = 5, + [21250] = 5, + ACTIONS(1685), 1, + anon_sym_LBRACK, ACTIONS(1693), 1, + anon_sym_LBRACE, + STATE(586), 1, + sym_inline_attribute, + STATE(1037), 1, + sym__inline_attribute_begin, + ACTIONS(1681), 2, anon_sym_LBRACK_RBRACK, + anon_sym_LPAREN, + [21267] = 5, + ACTIONS(1685), 1, + anon_sym_LBRACK, ACTIONS(1695), 1, + anon_sym_LBRACE, + STATE(563), 1, + sym_inline_attribute, + STATE(1052), 1, + sym__inline_attribute_begin, + ACTIONS(1681), 2, + anon_sym_LBRACK_RBRACK, + anon_sym_LPAREN, + [21284] = 5, + ACTIONS(1685), 1, anon_sym_LBRACK, ACTIONS(1697), 1, + anon_sym_LBRACE, + STATE(527), 1, + sym_inline_attribute, + STATE(992), 1, + sym__inline_attribute_begin, + ACTIONS(1681), 2, + anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - STATE(313), 1, - sym_inline_link_destination, - STATE(333), 1, - sym__link_label, - [21567] = 4, - ACTIONS(1687), 1, + [21301] = 5, + ACTIONS(1685), 1, anon_sym_LBRACK, ACTIONS(1699), 1, anon_sym_LBRACE, - STATE(379), 1, + STATE(558), 1, sym_inline_attribute, - ACTIONS(1685), 2, + STATE(976), 1, + sym__inline_attribute_begin, + ACTIONS(1681), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - [21581] = 4, - ACTIONS(1687), 1, + [21318] = 5, + ACTIONS(1685), 1, anon_sym_LBRACK, ACTIONS(1701), 1, anon_sym_LBRACE, - STATE(432), 1, + STATE(544), 1, sym_inline_attribute, - ACTIONS(1685), 2, + STATE(1112), 1, + sym__inline_attribute_begin, + ACTIONS(1681), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - [21595] = 5, + [21335] = 5, + ACTIONS(1685), 1, + anon_sym_LBRACK, ACTIONS(1703), 1, + anon_sym_LBRACE, + STATE(556), 1, + sym_inline_attribute, + STATE(1067), 1, + sym__inline_attribute_begin, + ACTIONS(1681), 2, anon_sym_LBRACK_RBRACK, + anon_sym_LPAREN, + [21352] = 5, + ACTIONS(1685), 1, + anon_sym_LBRACK, ACTIONS(1705), 1, + anon_sym_LBRACE, + STATE(584), 1, + sym_inline_attribute, + STATE(1090), 1, + sym__inline_attribute_begin, + ACTIONS(1681), 2, + anon_sym_LBRACK_RBRACK, + anon_sym_LPAREN, + [21369] = 5, + ACTIONS(1685), 1, anon_sym_LBRACK, ACTIONS(1707), 1, + anon_sym_LBRACE, + STATE(547), 1, + sym_inline_attribute, + STATE(1082), 1, + sym__inline_attribute_begin, + ACTIONS(1681), 2, + anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - STATE(235), 1, - sym_inline_link_destination, - STATE(236), 1, - sym__link_label, - [21611] = 5, + [21386] = 5, ACTIONS(1709), 1, anon_sym_LBRACK_RBRACK, ACTIONS(1711), 1, anon_sym_LBRACK, ACTIONS(1713), 1, anon_sym_LPAREN, - STATE(421), 1, + STATE(459), 1, sym__link_label, - STATE(422), 1, + STATE(460), 1, sym_inline_link_destination, - [21627] = 5, - ACTIONS(1711), 1, - anon_sym_LBRACK, - ACTIONS(1713), 1, - anon_sym_LPAREN, + [21402] = 5, ACTIONS(1715), 1, anon_sym_LBRACK_RBRACK, - STATE(418), 1, - sym__link_label, - STATE(419), 1, - sym_inline_link_destination, - [21643] = 5, ACTIONS(1717), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1721), 1, - anon_sym_LPAREN, - STATE(505), 1, - sym__link_label, - STATE(506), 1, - sym_inline_link_destination, - [21659] = 5, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1721), 1, - anon_sym_LPAREN, - ACTIONS(1723), 1, - anon_sym_LBRACK_RBRACK, - STATE(508), 1, - sym__link_label, - STATE(509), 1, - sym_inline_link_destination, - [21675] = 5, - ACTIONS(1705), 1, - anon_sym_LBRACK, - ACTIONS(1707), 1, - anon_sym_LPAREN, - ACTIONS(1725), 1, - anon_sym_LBRACK_RBRACK, - STATE(311), 1, - sym__link_label, - STATE(312), 1, - sym_inline_link_destination, - [21691] = 4, - ACTIONS(1687), 1, - anon_sym_LBRACK, - ACTIONS(1727), 1, - anon_sym_LBRACE, - STATE(518), 1, - sym_inline_attribute, - ACTIONS(1685), 2, - anon_sym_LBRACK_RBRACK, - anon_sym_LPAREN, - [21705] = 4, - ACTIONS(1687), 1, - anon_sym_LBRACK, - ACTIONS(1729), 1, - anon_sym_LBRACE, - STATE(387), 1, - sym_inline_attribute, - ACTIONS(1685), 2, - anon_sym_LBRACK_RBRACK, + anon_sym_LBRACK, + ACTIONS(1719), 1, anon_sym_LPAREN, - [21719] = 5, - ACTIONS(1731), 1, + STATE(464), 1, + sym_inline_link_destination, + STATE(466), 1, + sym__link_label, + [21418] = 5, + ACTIONS(1721), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(1733), 1, + ACTIONS(1723), 1, anon_sym_LBRACK, - ACTIONS(1735), 1, + ACTIONS(1725), 1, anon_sym_LPAREN, - STATE(546), 1, + STATE(501), 1, sym__link_label, - STATE(547), 1, + STATE(502), 1, sym_inline_link_destination, - [21735] = 5, - ACTIONS(1673), 1, + [21434] = 5, + ACTIONS(1723), 1, anon_sym_LBRACK, - ACTIONS(1675), 1, + ACTIONS(1725), 1, anon_sym_LPAREN, - ACTIONS(1737), 1, + ACTIONS(1727), 1, anon_sym_LBRACK_RBRACK, - STATE(248), 1, + STATE(498), 1, sym__link_label, - STATE(249), 1, + STATE(499), 1, sym_inline_link_destination, - [21751] = 5, - ACTIONS(1695), 1, + [21450] = 5, + ACTIONS(1729), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(1731), 1, anon_sym_LBRACK, - ACTIONS(1697), 1, + ACTIONS(1733), 1, anon_sym_LPAREN, - ACTIONS(1739), 1, + STATE(407), 1, + sym_inline_link_destination, + STATE(419), 1, + sym__link_label, + [21466] = 5, + ACTIONS(1735), 1, anon_sym_LBRACK_RBRACK, - STATE(356), 1, + ACTIONS(1737), 1, + anon_sym_LBRACK, + ACTIONS(1739), 1, + anon_sym_LPAREN, + STATE(525), 1, sym_inline_link_destination, - STATE(357), 1, + STATE(582), 1, sym__link_label, - [21767] = 5, + [21482] = 5, ACTIONS(1741), 1, anon_sym_LBRACK_RBRACK, ACTIONS(1743), 1, anon_sym_LBRACK, ACTIONS(1745), 1, anon_sym_LPAREN, - STATE(331), 1, + STATE(281), 1, sym__link_label, - STATE(332), 1, + STATE(289), 1, sym_inline_link_destination, - [21783] = 5, + [21498] = 5, + ACTIONS(1711), 1, + anon_sym_LBRACK, + ACTIONS(1713), 1, + anon_sym_LPAREN, ACTIONS(1747), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(1749), 1, - anon_sym_LBRACK, + STATE(456), 1, + sym__link_label, + STATE(457), 1, + sym_inline_link_destination, + [21514] = 3, ACTIONS(1751), 1, + anon_sym_PERCENT, + STATE(684), 1, + aux_sym__comment_with_newline_repeat1, + ACTIONS(1749), 3, + sym_backslash_escape, + aux_sym__comment_with_newline_token1, + sym__newline, + [21526] = 5, + ACTIONS(1753), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(1755), 1, + anon_sym_LBRACK, + ACTIONS(1757), 1, anon_sym_LPAREN, - STATE(376), 1, + STATE(330), 1, sym__link_label, - STATE(377), 1, + STATE(331), 1, sym_inline_link_destination, - [21799] = 5, - ACTIONS(1749), 1, + [21542] = 5, + ACTIONS(1743), 1, anon_sym_LBRACK, - ACTIONS(1751), 1, + ACTIONS(1745), 1, anon_sym_LPAREN, - ACTIONS(1753), 1, + ACTIONS(1759), 1, anon_sym_LBRACK_RBRACK, - STATE(373), 1, + STATE(259), 1, sym__link_label, - STATE(374), 1, + STATE(271), 1, sym_inline_link_destination, - [21815] = 4, - ACTIONS(1687), 1, - anon_sym_LBRACK, + [21558] = 5, ACTIONS(1755), 1, - anon_sym_LBRACE, - STATE(261), 1, - sym_inline_attribute, - ACTIONS(1685), 2, - anon_sym_LBRACK_RBRACK, - anon_sym_LPAREN, - [21829] = 5, - ACTIONS(1733), 1, anon_sym_LBRACK, - ACTIONS(1735), 1, - anon_sym_LPAREN, ACTIONS(1757), 1, + anon_sym_LPAREN, + ACTIONS(1761), 1, anon_sym_LBRACK_RBRACK, - STATE(550), 1, + STATE(327), 1, sym__link_label, - STATE(551), 1, + STATE(328), 1, sym_inline_link_destination, - [21845] = 5, - ACTIONS(1759), 1, + [21574] = 5, + ACTIONS(1763), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(1761), 1, + ACTIONS(1765), 1, anon_sym_LBRACK, - ACTIONS(1763), 1, + ACTIONS(1767), 1, anon_sym_LPAREN, - STATE(289), 1, + STATE(416), 1, sym__link_label, - STATE(290), 1, + STATE(417), 1, sym_inline_link_destination, - [21861] = 3, - ACTIONS(1765), 1, + [21590] = 3, + ACTIONS(1769), 1, anon_sym_PERCENT, - STATE(689), 1, + STATE(680), 1, aux_sym__comment_with_newline_repeat1, - ACTIONS(1667), 3, + ACTIONS(1749), 3, sym_backslash_escape, aux_sym__comment_with_newline_token1, sym__newline, - [21873] = 3, - ACTIONS(1770), 1, + [21602] = 5, + ACTIONS(1765), 1, + anon_sym_LBRACK, + ACTIONS(1767), 1, + anon_sym_LPAREN, + ACTIONS(1771), 1, + anon_sym_LBRACK_RBRACK, + STATE(413), 1, + sym__link_label, + STATE(414), 1, + sym_inline_link_destination, + [21618] = 3, + ACTIONS(1776), 1, anon_sym_PERCENT, - STATE(689), 1, + STATE(678), 1, aux_sym__comment_with_newline_repeat1, - ACTIONS(1767), 3, + ACTIONS(1773), 3, sym_backslash_escape, aux_sym__comment_with_newline_token1, sym__newline, - [21885] = 4, - ACTIONS(1687), 1, + [21630] = 5, + ACTIONS(1717), 1, anon_sym_LBRACK, - ACTIONS(1772), 1, - anon_sym_LBRACE, - STATE(560), 1, - sym_inline_attribute, - ACTIONS(1685), 2, - anon_sym_LBRACK_RBRACK, + ACTIONS(1719), 1, anon_sym_LPAREN, - [21899] = 4, - ACTIONS(1687), 1, - anon_sym_LBRACK, - ACTIONS(1774), 1, - anon_sym_LBRACE, - STATE(310), 1, - sym_inline_attribute, - ACTIONS(1685), 2, + ACTIONS(1778), 1, + anon_sym_LBRACK_RBRACK, + STATE(482), 1, + sym_inline_link_destination, + STATE(484), 1, + sym__link_label, + [21646] = 3, + ACTIONS(1780), 1, + anon_sym_PERCENT, + STATE(678), 1, + aux_sym__comment_with_newline_repeat1, + ACTIONS(1749), 3, + sym_backslash_escape, + aux_sym__comment_with_newline_token1, + sym__newline, + [21658] = 5, + ACTIONS(1782), 1, anon_sym_LBRACK_RBRACK, + ACTIONS(1784), 1, + anon_sym_LBRACK, + ACTIONS(1786), 1, anon_sym_LPAREN, - [21913] = 5, - ACTIONS(1761), 1, + STATE(373), 1, + sym__link_label, + STATE(374), 1, + sym_inline_link_destination, + [21674] = 5, + ACTIONS(1784), 1, anon_sym_LBRACK, - ACTIONS(1763), 1, + ACTIONS(1786), 1, anon_sym_LPAREN, - ACTIONS(1776), 1, + ACTIONS(1788), 1, anon_sym_LBRACK_RBRACK, - STATE(286), 1, + STATE(370), 1, sym__link_label, - STATE(287), 1, + STATE(371), 1, sym_inline_link_destination, - [21929] = 5, - ACTIONS(1778), 1, + [21690] = 5, + ACTIONS(1790), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(1780), 1, + ACTIONS(1792), 1, anon_sym_LBRACK, - ACTIONS(1782), 1, + ACTIONS(1794), 1, anon_sym_LPAREN, - STATE(412), 1, + STATE(218), 1, + sym__link_label, + STATE(219), 1, sym_inline_link_destination, - STATE(424), 1, + [21706] = 3, + ACTIONS(1796), 1, + anon_sym_PERCENT, + STATE(678), 1, + aux_sym__comment_with_newline_repeat1, + ACTIONS(1749), 3, + sym_backslash_escape, + aux_sym__comment_with_newline_token1, + sym__newline, + [21718] = 5, + ACTIONS(1792), 1, + anon_sym_LBRACK, + ACTIONS(1794), 1, + anon_sym_LPAREN, + ACTIONS(1798), 1, + anon_sym_LBRACK_RBRACK, + STATE(215), 1, sym__link_label, - [21945] = 4, - ACTIONS(1687), 1, + STATE(216), 1, + sym_inline_link_destination, + [21734] = 5, + ACTIONS(1737), 1, anon_sym_LBRACK, - ACTIONS(1784), 1, - anon_sym_LBRACE, - STATE(297), 1, - sym_inline_attribute, - ACTIONS(1685), 2, + ACTIONS(1739), 1, + anon_sym_LPAREN, + ACTIONS(1800), 1, anon_sym_LBRACK_RBRACK, + STATE(579), 1, + sym__link_label, + STATE(580), 1, + sym_inline_link_destination, + [21750] = 5, + ACTIONS(1802), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(1804), 1, + anon_sym_LBRACK, + ACTIONS(1806), 1, anon_sym_LPAREN, - [21959] = 4, - ACTIONS(1687), 1, + STATE(248), 1, + sym__link_label, + STATE(249), 1, + sym_inline_link_destination, + [21766] = 5, + ACTIONS(1804), 1, anon_sym_LBRACK, - ACTIONS(1786), 1, - anon_sym_LBRACE, - STATE(342), 1, - sym_inline_attribute, - ACTIONS(1685), 2, - anon_sym_LBRACK_RBRACK, + ACTIONS(1806), 1, anon_sym_LPAREN, - [21973] = 5, - ACTIONS(1780), 1, + ACTIONS(1808), 1, + anon_sym_LBRACK_RBRACK, + STATE(251), 1, + sym__link_label, + STATE(252), 1, + sym_inline_link_destination, + [21782] = 5, + ACTIONS(1731), 1, anon_sym_LBRACK, - ACTIONS(1782), 1, + ACTIONS(1733), 1, anon_sym_LPAREN, - ACTIONS(1788), 1, + ACTIONS(1810), 1, anon_sym_LBRACK_RBRACK, - STATE(449), 1, + STATE(401), 1, sym_inline_link_destination, - STATE(450), 1, + STATE(405), 1, sym__link_label, - [21989] = 5, - ACTIONS(1743), 1, + [21798] = 5, + ACTIONS(1812), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(1814), 1, anon_sym_LBRACK, - ACTIONS(1745), 1, + ACTIONS(1816), 1, anon_sym_LPAREN, - ACTIONS(1790), 1, + STATE(284), 1, + sym__link_label, + STATE(285), 1, + sym_inline_link_destination, + [21814] = 5, + ACTIONS(1814), 1, + anon_sym_LBRACK, + ACTIONS(1816), 1, + anon_sym_LPAREN, + ACTIONS(1818), 1, anon_sym_LBRACK_RBRACK, - STATE(328), 1, + STATE(287), 1, sym__link_label, - STATE(329), 1, + STATE(288), 1, sym_inline_link_destination, - [22005] = 1, - ACTIONS(1792), 4, + [21830] = 1, + ACTIONS(1820), 4, sym_backslash_escape, anon_sym_PERCENT, aux_sym__comment_with_newline_token1, sym__newline, - [22012] = 2, - ACTIONS(1796), 1, + [21837] = 2, + ACTIONS(1824), 1, anon_sym_LBRACK, - ACTIONS(1794), 2, + ACTIONS(1822), 3, anon_sym_LBRACK_RBRACK, + anon_sym_LBRACE, anon_sym_LPAREN, - [22020] = 3, - ACTIONS(1798), 1, + [21846] = 3, + ACTIONS(1826), 1, anon_sym_DQUOTE, - ACTIONS(1800), 1, + ACTIONS(1828), 1, aux_sym_value_token2, - STATE(656), 1, + STATE(649), 1, sym_value, - [22030] = 2, - ACTIONS(1804), 1, + [21856] = 2, + ACTIONS(1832), 1, + anon_sym_LBRACK, + ACTIONS(1830), 2, + anon_sym_LBRACK_RBRACK, + anon_sym_LPAREN, + [21864] = 2, + ACTIONS(1836), 1, anon_sym_LBRACK, - ACTIONS(1802), 2, + ACTIONS(1834), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - [22038] = 2, - ACTIONS(1543), 1, + [21872] = 2, + ACTIONS(1838), 1, + sym__superscript_mark_begin, + ACTIONS(1841), 1, + sym__in_fallback, + [21879] = 2, + ACTIONS(1843), 1, + anon_sym_PERCENT, + STATE(1074), 1, + sym__comment_with_newline, + [21886] = 2, + ACTIONS(1845), 1, + sym__image_description_mark_begin, + ACTIONS(1848), 1, + sym__in_fallback, + [21893] = 2, + ACTIONS(1848), 1, + sym__in_fallback, + ACTIONS(1850), 1, + sym__bracketed_text_mark_begin, + [21900] = 2, + ACTIONS(1853), 1, + sym__strong_mark_begin, + ACTIONS(1856), 1, + sym__in_fallback, + [21907] = 2, + ACTIONS(1858), 1, + sym__emphasis_mark_begin, + ACTIONS(1861), 1, + sym__in_fallback, + [21914] = 2, + ACTIONS(1861), 1, + sym__in_fallback, + ACTIONS(1863), 1, + sym__strong_mark_begin, + [21921] = 2, + ACTIONS(1866), 1, + sym__inline_attribute_mark_begin, + ACTIONS(1869), 1, + sym__in_fallback, + [21928] = 2, + ACTIONS(1856), 1, + sym__in_fallback, + ACTIONS(1871), 1, + sym__superscript_mark_begin, + [21935] = 2, + ACTIONS(1856), 1, + sym__in_fallback, + ACTIONS(1874), 1, + sym__subscript_mark_begin, + [21942] = 2, + ACTIONS(1856), 1, + sym__in_fallback, + ACTIONS(1877), 1, + sym__highlighted_mark_begin, + [21949] = 2, + ACTIONS(1856), 1, + sym__in_fallback, + ACTIONS(1880), 1, + sym__insert_mark_begin, + [21956] = 2, + ACTIONS(1856), 1, + sym__in_fallback, + ACTIONS(1883), 1, + sym__delete_mark_begin, + [21963] = 2, + ACTIONS(1843), 1, + anon_sym_PERCENT, + STATE(962), 1, + sym__comment_with_newline, + [21970] = 2, + ACTIONS(1886), 1, + sym__id, + STATE(959), 1, + sym_reference_label, + [21977] = 2, + ACTIONS(1886), 1, + sym__id, + STATE(1087), 1, + sym_reference_label, + [21984] = 2, + ACTIONS(1856), 1, + sym__in_fallback, + ACTIONS(1888), 1, + sym__image_description_mark_begin, + [21991] = 2, + ACTIONS(1856), 1, + sym__in_fallback, + ACTIONS(1891), 1, + sym__bracketed_text_mark_begin, + [21998] = 2, + ACTIONS(1843), 1, + anon_sym_PERCENT, + STATE(929), 1, + sym__comment_with_newline, + [22005] = 2, + ACTIONS(1886), 1, + sym__id, + STATE(926), 1, + sym_reference_label, + [22012] = 2, + ACTIONS(1894), 1, + sym__emphasis_mark_begin, + ACTIONS(1897), 1, + sym__in_fallback, + [22019] = 2, + ACTIONS(1843), 1, anon_sym_PERCENT, - STATE(857), 1, + STATE(896), 1, sym__comment_with_newline, - [22045] = 2, - ACTIONS(1806), 1, + [22026] = 2, + ACTIONS(1899), 1, + sym__emphasis_mark_begin, + ACTIONS(1902), 1, + sym__in_fallback, + [22033] = 2, + ACTIONS(1902), 1, + sym__in_fallback, + ACTIONS(1904), 1, sym__strong_mark_begin, - ACTIONS(1809), 1, + [22040] = 2, + ACTIONS(1902), 1, sym__in_fallback, - [22052] = 2, - ACTIONS(1811), 1, + ACTIONS(1907), 1, sym__superscript_mark_begin, - ACTIONS(1814), 1, - sym__in_fallback, - [22059] = 2, - ACTIONS(1814), 1, + [22047] = 2, + ACTIONS(1902), 1, sym__in_fallback, - ACTIONS(1816), 1, + ACTIONS(1910), 1, sym__subscript_mark_begin, - [22066] = 2, - ACTIONS(1814), 1, + [22054] = 2, + ACTIONS(1902), 1, sym__in_fallback, - ACTIONS(1819), 1, + ACTIONS(1913), 1, sym__highlighted_mark_begin, - [22073] = 2, - ACTIONS(1814), 1, + [22061] = 2, + ACTIONS(1902), 1, sym__in_fallback, - ACTIONS(1822), 1, + ACTIONS(1916), 1, sym__insert_mark_begin, - [22080] = 2, - ACTIONS(1814), 1, + [22068] = 2, + ACTIONS(1902), 1, sym__in_fallback, - ACTIONS(1825), 1, + ACTIONS(1919), 1, sym__delete_mark_begin, - [22087] = 2, - ACTIONS(1828), 1, - sym__emphasis_mark_begin, - ACTIONS(1831), 1, + [22075] = 2, + ACTIONS(1886), 1, + sym__id, + STATE(893), 1, + sym_reference_label, + [22082] = 2, + ACTIONS(1902), 1, sym__in_fallback, - [22094] = 2, - ACTIONS(1833), 1, + ACTIONS(1922), 1, + sym__image_description_mark_begin, + [22089] = 2, + ACTIONS(1902), 1, + sym__in_fallback, + ACTIONS(1925), 1, + sym__bracketed_text_mark_begin, + [22096] = 2, + ACTIONS(1897), 1, + sym__in_fallback, + ACTIONS(1928), 1, + sym__strong_mark_begin, + [22103] = 2, + ACTIONS(1931), 1, sym__emphasis_mark_begin, - ACTIONS(1836), 1, + ACTIONS(1934), 1, sym__in_fallback, - [22101] = 2, - ACTIONS(1836), 1, + [22110] = 2, + ACTIONS(1934), 1, sym__in_fallback, - ACTIONS(1838), 1, + ACTIONS(1936), 1, sym__strong_mark_begin, - [22108] = 2, - ACTIONS(1831), 1, + [22117] = 2, + ACTIONS(1939), 1, + sym__inline_attribute_mark_begin, + ACTIONS(1942), 1, sym__in_fallback, - ACTIONS(1841), 1, - sym__subscript_mark_begin, - [22115] = 2, - ACTIONS(1831), 1, + [22124] = 2, + ACTIONS(1944), 1, + sym__inline_attribute_mark_begin, + ACTIONS(1947), 1, sym__in_fallback, - ACTIONS(1844), 1, - sym__superscript_mark_begin, - [22122] = 2, - ACTIONS(1543), 1, + [22131] = 2, + ACTIONS(1843), 1, + anon_sym_PERCENT, + STATE(877), 1, + sym__comment_with_newline, + [22138] = 2, + ACTIONS(1886), 1, + sym__id, + STATE(880), 1, + sym_reference_label, + [22145] = 2, + ACTIONS(1843), 1, + anon_sym_PERCENT, + STATE(920), 1, + sym__comment_with_newline, + [22152] = 2, + ACTIONS(1886), 1, + sym__id, + STATE(924), 1, + sym_reference_label, + [22159] = 2, + ACTIONS(1843), 1, anon_sym_PERCENT, - STATE(1053), 1, + STATE(957), 1, sym__comment_with_newline, - [22129] = 2, - ACTIONS(1831), 1, + [22166] = 2, + ACTIONS(1886), 1, + sym__id, + STATE(972), 1, + sym_reference_label, + [22173] = 2, + ACTIONS(1949), 1, + sym__id, + STATE(647), 1, + sym_class_name, + [22180] = 2, + ACTIONS(1856), 1, sym__in_fallback, - ACTIONS(1847), 1, - sym__insert_mark_begin, - [22136] = 2, - ACTIONS(1850), 1, + ACTIONS(1951), 1, sym__emphasis_mark_begin, - ACTIONS(1853), 1, - sym__in_fallback, - [22143] = 2, - ACTIONS(1543), 1, + [22187] = 2, + ACTIONS(1843), 1, anon_sym_PERCENT, - STATE(983), 1, + STATE(1017), 1, sym__comment_with_newline, - [22150] = 2, - ACTIONS(1855), 1, - sym__delete_mark_begin, - ACTIONS(1858), 1, - sym__in_fallback, - [22157] = 2, - ACTIONS(1858), 1, - sym__in_fallback, - ACTIONS(1860), 1, - sym__insert_mark_begin, - [22164] = 2, - ACTIONS(1858), 1, + [22194] = 2, + ACTIONS(1886), 1, + sym__id, + STATE(1024), 1, + sym_reference_label, + [22201] = 2, + ACTIONS(1841), 1, sym__in_fallback, - ACTIONS(1863), 1, - sym__highlighted_mark_begin, - [22171] = 2, - ACTIONS(1858), 1, + ACTIONS(1954), 1, + sym__strong_mark_begin, + [22208] = 2, + ACTIONS(1841), 1, sym__in_fallback, - ACTIONS(1866), 1, + ACTIONS(1957), 1, sym__subscript_mark_begin, - [22178] = 2, - ACTIONS(1858), 1, + [22215] = 2, + ACTIONS(1841), 1, sym__in_fallback, - ACTIONS(1869), 1, - sym__superscript_mark_begin, - [22185] = 2, - ACTIONS(1872), 1, + ACTIONS(1960), 1, + sym__highlighted_mark_begin, + [22222] = 2, + ACTIONS(1963), 1, sym__emphasis_mark_begin, - ACTIONS(1875), 1, + ACTIONS(1966), 1, sym__in_fallback, - [22192] = 2, - ACTIONS(1875), 1, + [22229] = 2, + ACTIONS(1966), 1, sym__in_fallback, - ACTIONS(1877), 1, + ACTIONS(1968), 1, sym__strong_mark_begin, - [22199] = 2, - ACTIONS(1875), 1, + [22236] = 2, + ACTIONS(1966), 1, sym__in_fallback, - ACTIONS(1880), 1, + ACTIONS(1971), 1, sym__superscript_mark_begin, - [22206] = 2, - ACTIONS(1875), 1, + [22243] = 2, + ACTIONS(1966), 1, sym__in_fallback, - ACTIONS(1883), 1, + ACTIONS(1974), 1, sym__subscript_mark_begin, - [22213] = 2, - ACTIONS(1875), 1, + [22250] = 2, + ACTIONS(1966), 1, sym__in_fallback, - ACTIONS(1886), 1, + ACTIONS(1977), 1, sym__highlighted_mark_begin, - [22220] = 2, - ACTIONS(1875), 1, + [22257] = 2, + ACTIONS(1966), 1, sym__in_fallback, - ACTIONS(1889), 1, + ACTIONS(1980), 1, sym__insert_mark_begin, - [22227] = 2, - ACTIONS(1875), 1, + [22264] = 2, + ACTIONS(1966), 1, sym__in_fallback, - ACTIONS(1892), 1, + ACTIONS(1983), 1, sym__delete_mark_begin, - [22234] = 2, - ACTIONS(1858), 1, + [22271] = 2, + ACTIONS(1841), 1, sym__in_fallback, - ACTIONS(1895), 1, - sym__strong_mark_begin, - [22241] = 2, - ACTIONS(1858), 1, + ACTIONS(1986), 1, + sym__insert_mark_begin, + [22278] = 2, + ACTIONS(1966), 1, sym__in_fallback, - ACTIONS(1898), 1, - sym__emphasis_mark_begin, - [22248] = 2, - ACTIONS(1901), 1, + ACTIONS(1989), 1, + sym__image_description_mark_begin, + [22285] = 2, + ACTIONS(1966), 1, + sym__in_fallback, + ACTIONS(1992), 1, + sym__bracketed_text_mark_begin, + [22292] = 2, + ACTIONS(1841), 1, + sym__in_fallback, + ACTIONS(1995), 1, + sym__delete_mark_begin, + [22299] = 2, + ACTIONS(1998), 1, sym__emphasis_mark_begin, - ACTIONS(1904), 1, + ACTIONS(2001), 1, sym__in_fallback, - [22255] = 2, - ACTIONS(1904), 1, + [22306] = 2, + ACTIONS(2001), 1, sym__in_fallback, - ACTIONS(1906), 1, + ACTIONS(2003), 1, sym__strong_mark_begin, - [22262] = 2, - ACTIONS(1543), 1, + [22313] = 2, + ACTIONS(2006), 1, + sym__inline_attribute_mark_begin, + ACTIONS(2009), 1, + sym__in_fallback, + [22320] = 2, + ACTIONS(1841), 1, + sym__in_fallback, + ACTIONS(2011), 1, + sym__image_description_mark_begin, + [22327] = 2, + ACTIONS(1843), 1, anon_sym_PERCENT, - STATE(827), 1, + STATE(1069), 1, sym__comment_with_newline, - [22269] = 2, - ACTIONS(1909), 1, - sym__strong_mark_begin, - ACTIONS(1912), 1, - sym__in_fallback, - [22276] = 2, - ACTIONS(1912), 1, + [22334] = 2, + ACTIONS(1886), 1, + sym__id, + STATE(1084), 1, + sym_reference_label, + [22341] = 2, + ACTIONS(1841), 1, sym__in_fallback, - ACTIONS(1914), 1, + ACTIONS(2014), 1, + sym__bracketed_text_mark_begin, + [22348] = 2, + ACTIONS(2017), 1, sym__emphasis_mark_begin, - [22283] = 2, - ACTIONS(1853), 1, + ACTIONS(2020), 1, + sym__in_fallback, + [22355] = 2, + ACTIONS(2020), 1, sym__in_fallback, - ACTIONS(1917), 1, + ACTIONS(2022), 1, sym__strong_mark_begin, - [22290] = 2, - ACTIONS(1543), 1, + [22362] = 2, + ACTIONS(2025), 1, + sym__inline_attribute_mark_begin, + ACTIONS(2028), 1, + sym__in_fallback, + [22369] = 2, + ACTIONS(1841), 1, + sym__in_fallback, + ACTIONS(2030), 1, + sym__emphasis_mark_begin, + [22376] = 2, + ACTIONS(1843), 1, + anon_sym_PERCENT, + STATE(1132), 1, + sym__comment_with_newline, + [22383] = 2, + ACTIONS(1886), 1, + sym__id, + STATE(1134), 1, + sym_reference_label, + [22390] = 2, + ACTIONS(1843), 1, anon_sym_PERCENT, STATE(887), 1, sym__comment_with_newline, - [22297] = 2, - ACTIONS(1920), 1, + [22397] = 2, + ACTIONS(1886), 1, + sym__id, + STATE(906), 1, + sym_reference_label, + [22404] = 2, + ACTIONS(2033), 1, + sym__emphasis_mark_begin, + ACTIONS(2036), 1, + sym__in_fallback, + [22411] = 2, + ACTIONS(2036), 1, + sym__in_fallback, + ACTIONS(2038), 1, + sym__superscript_mark_begin, + [22418] = 2, + ACTIONS(2036), 1, + sym__in_fallback, + ACTIONS(2041), 1, + sym__subscript_mark_begin, + [22425] = 2, + ACTIONS(2044), 1, + sym__emphasis_mark_begin, + ACTIONS(2047), 1, + sym__in_fallback, + [22432] = 2, + ACTIONS(2047), 1, + sym__in_fallback, + ACTIONS(2049), 1, + sym__strong_mark_begin, + [22439] = 2, + ACTIONS(2047), 1, + sym__in_fallback, + ACTIONS(2052), 1, + sym__superscript_mark_begin, + [22446] = 2, + ACTIONS(2047), 1, + sym__in_fallback, + ACTIONS(2055), 1, + sym__subscript_mark_begin, + [22453] = 2, + ACTIONS(2047), 1, + sym__in_fallback, + ACTIONS(2058), 1, + sym__highlighted_mark_begin, + [22460] = 2, + ACTIONS(2047), 1, + sym__in_fallback, + ACTIONS(2061), 1, + sym__insert_mark_begin, + [22467] = 2, + ACTIONS(2047), 1, + sym__in_fallback, + ACTIONS(2064), 1, sym__delete_mark_begin, - ACTIONS(1923), 1, + [22474] = 2, + ACTIONS(2036), 1, sym__in_fallback, - [22304] = 2, - ACTIONS(1923), 1, + ACTIONS(2067), 1, + sym__highlighted_mark_begin, + [22481] = 2, + ACTIONS(2047), 1, sym__in_fallback, - ACTIONS(1925), 1, + ACTIONS(2070), 1, + sym__image_description_mark_begin, + [22488] = 2, + ACTIONS(2047), 1, + sym__in_fallback, + ACTIONS(2073), 1, + sym__bracketed_text_mark_begin, + [22495] = 2, + ACTIONS(1848), 1, + sym__in_fallback, + ACTIONS(2076), 1, + sym__delete_mark_begin, + [22502] = 2, + ACTIONS(1848), 1, + sym__in_fallback, + ACTIONS(2079), 1, sym__insert_mark_begin, - [22311] = 2, - ACTIONS(1923), 1, + [22509] = 2, + ACTIONS(1848), 1, sym__in_fallback, - ACTIONS(1928), 1, + ACTIONS(2082), 1, sym__highlighted_mark_begin, - [22318] = 2, - ACTIONS(1543), 1, + [22516] = 2, + ACTIONS(1843), 1, anon_sym_PERCENT, - STATE(840), 1, + STATE(1002), 1, sym__comment_with_newline, - [22325] = 2, - ACTIONS(1814), 1, - sym__in_fallback, - ACTIONS(1931), 1, + [22523] = 2, + ACTIONS(2085), 1, sym__emphasis_mark_begin, - [22332] = 2, - ACTIONS(1923), 1, + ACTIONS(2088), 1, sym__in_fallback, - ACTIONS(1934), 1, + [22530] = 2, + ACTIONS(2088), 1, + sym__in_fallback, + ACTIONS(2090), 1, + sym__strong_mark_begin, + [22537] = 2, + ACTIONS(2093), 1, + sym__inline_attribute_mark_begin, + ACTIONS(2096), 1, + sym__in_fallback, + [22544] = 2, + ACTIONS(1886), 1, + sym__id, + STATE(1011), 1, + sym_reference_label, + [22551] = 2, + ACTIONS(2036), 1, + sym__in_fallback, + ACTIONS(2098), 1, + sym__insert_mark_begin, + [22558] = 2, + ACTIONS(1848), 1, + sym__in_fallback, + ACTIONS(2101), 1, sym__subscript_mark_begin, - [22339] = 2, - ACTIONS(1923), 1, + [22565] = 2, + ACTIONS(2036), 1, sym__in_fallback, - ACTIONS(1937), 1, - sym__superscript_mark_begin, - [22346] = 2, - ACTIONS(1940), 1, + ACTIONS(2104), 1, + sym__delete_mark_begin, + [22572] = 2, + ACTIONS(2107), 1, + sym__inline_attribute_mark_begin, + ACTIONS(2110), 1, + sym__in_fallback, + [22579] = 2, + ACTIONS(2112), 1, sym__strong_mark_begin, - ACTIONS(1943), 1, + ACTIONS(2115), 1, sym__in_fallback, - [22353] = 2, - ACTIONS(1943), 1, + [22586] = 2, + ACTIONS(2115), 1, sym__in_fallback, - ACTIONS(1945), 1, + ACTIONS(2117), 1, sym__emphasis_mark_begin, - [22360] = 2, - ACTIONS(1948), 1, + [22593] = 2, + ACTIONS(2036), 1, + sym__in_fallback, + ACTIONS(2120), 1, + sym__image_description_mark_begin, + [22600] = 2, + ACTIONS(2036), 1, + sym__in_fallback, + ACTIONS(2123), 1, + sym__bracketed_text_mark_begin, + [22607] = 2, + ACTIONS(2126), 1, + sym__bracketed_text_mark_begin, + ACTIONS(2129), 1, + sym__in_fallback, + [22614] = 2, + ACTIONS(2129), 1, + sym__in_fallback, + ACTIONS(2131), 1, + sym__image_description_mark_begin, + [22621] = 2, + ACTIONS(2129), 1, + sym__in_fallback, + ACTIONS(2134), 1, + sym__delete_mark_begin, + [22628] = 2, + ACTIONS(2129), 1, + sym__in_fallback, + ACTIONS(2137), 1, + sym__insert_mark_begin, + [22635] = 2, + ACTIONS(2129), 1, + sym__in_fallback, + ACTIONS(2140), 1, + sym__highlighted_mark_begin, + [22642] = 2, + ACTIONS(1848), 1, + sym__in_fallback, + ACTIONS(2143), 1, + sym__superscript_mark_begin, + [22649] = 2, + ACTIONS(2129), 1, + sym__in_fallback, + ACTIONS(2146), 1, + sym__subscript_mark_begin, + [22656] = 2, + ACTIONS(2149), 1, sym__emphasis_mark_begin, - ACTIONS(1951), 1, + ACTIONS(2152), 1, sym__in_fallback, - [22367] = 2, - ACTIONS(1951), 1, + [22663] = 2, + ACTIONS(2152), 1, sym__in_fallback, - ACTIONS(1953), 1, + ACTIONS(2154), 1, sym__strong_mark_begin, - [22374] = 2, - ACTIONS(1951), 1, + [22670] = 2, + ACTIONS(2152), 1, sym__in_fallback, - ACTIONS(1956), 1, + ACTIONS(2157), 1, sym__superscript_mark_begin, - [22381] = 2, - ACTIONS(1951), 1, + [22677] = 2, + ACTIONS(2152), 1, sym__in_fallback, - ACTIONS(1959), 1, + ACTIONS(2160), 1, sym__subscript_mark_begin, - [22388] = 2, - ACTIONS(1951), 1, + [22684] = 2, + ACTIONS(2152), 1, sym__in_fallback, - ACTIONS(1962), 1, + ACTIONS(2163), 1, sym__highlighted_mark_begin, - [22395] = 2, - ACTIONS(1951), 1, + [22691] = 2, + ACTIONS(2152), 1, sym__in_fallback, - ACTIONS(1965), 1, + ACTIONS(2166), 1, sym__insert_mark_begin, - [22402] = 2, - ACTIONS(1951), 1, + [22698] = 2, + ACTIONS(2152), 1, sym__in_fallback, - ACTIONS(1968), 1, + ACTIONS(2169), 1, sym__delete_mark_begin, - [22409] = 2, - ACTIONS(1543), 1, - anon_sym_PERCENT, - STATE(997), 1, - sym__comment_with_newline, - [22416] = 2, - ACTIONS(1543), 1, - anon_sym_PERCENT, - STATE(953), 1, - sym__comment_with_newline, - [22423] = 2, - ACTIONS(1814), 1, + [22705] = 2, + ACTIONS(2129), 1, sym__in_fallback, - ACTIONS(1971), 1, + ACTIONS(2172), 1, + sym__superscript_mark_begin, + [22712] = 2, + ACTIONS(2152), 1, + sym__in_fallback, + ACTIONS(2175), 1, + sym__image_description_mark_begin, + [22719] = 2, + ACTIONS(2152), 1, + sym__in_fallback, + ACTIONS(2178), 1, + sym__bracketed_text_mark_begin, + [22726] = 2, + ACTIONS(1848), 1, + sym__in_fallback, + ACTIONS(2181), 1, sym__strong_mark_begin, - [22430] = 2, - ACTIONS(1809), 1, + [22733] = 2, + ACTIONS(1848), 1, sym__in_fallback, - ACTIONS(1974), 1, + ACTIONS(2184), 1, sym__emphasis_mark_begin, - [22437] = 2, - ACTIONS(1977), 1, + [22740] = 2, + ACTIONS(2129), 1, + sym__in_fallback, + ACTIONS(2187), 1, + sym__strong_mark_begin, + [22747] = 2, + ACTIONS(2129), 1, + sym__in_fallback, + ACTIONS(2190), 1, sym__emphasis_mark_begin, - ACTIONS(1980), 1, + [22754] = 2, + ACTIONS(2193), 1, + sym__emphasis_mark_begin, + ACTIONS(2196), 1, + sym__in_fallback, + [22761] = 2, + ACTIONS(2196), 1, + sym__in_fallback, + ACTIONS(2198), 1, + sym__strong_mark_begin, + [22768] = 2, + ACTIONS(2201), 1, + sym__inline_attribute_mark_begin, + ACTIONS(2204), 1, + sym__in_fallback, + [22775] = 2, + ACTIONS(2206), 1, + sym__emphasis_mark_begin, + ACTIONS(2209), 1, + sym__in_fallback, + [22782] = 2, + ACTIONS(2211), 1, + sym__inline_attribute_mark_begin, + ACTIONS(2214), 1, + sym__in_fallback, + [22789] = 2, + ACTIONS(2216), 1, + sym__strong_mark_begin, + ACTIONS(2219), 1, sym__in_fallback, - [22444] = 2, - ACTIONS(1980), 1, + [22796] = 2, + ACTIONS(2219), 1, sym__in_fallback, - ACTIONS(1982), 1, - sym__strong_mark_begin, - [22451] = 2, - ACTIONS(1985), 1, + ACTIONS(2221), 1, + sym__emphasis_mark_begin, + [22803] = 2, + ACTIONS(2209), 1, + sym__in_fallback, + ACTIONS(2224), 1, sym__strong_mark_begin, - ACTIONS(1988), 1, + [22810] = 2, + ACTIONS(2227), 1, + sym__inline_attribute_mark_begin, + ACTIONS(2230), 1, sym__in_fallback, - [22458] = 2, - ACTIONS(1990), 1, - sym__delete_mark_begin, - ACTIONS(1993), 1, + [22817] = 2, + ACTIONS(2232), 1, + sym__bracketed_text_mark_begin, + ACTIONS(2235), 1, sym__in_fallback, - [22465] = 2, - ACTIONS(1993), 1, + [22824] = 2, + ACTIONS(2235), 1, sym__in_fallback, - ACTIONS(1995), 1, - sym__insert_mark_begin, - [22472] = 2, - ACTIONS(1988), 1, + ACTIONS(2237), 1, + sym__image_description_mark_begin, + [22831] = 2, + ACTIONS(2235), 1, sym__in_fallback, - ACTIONS(1998), 1, - sym__emphasis_mark_begin, - [22479] = 2, - ACTIONS(2001), 1, + ACTIONS(2240), 1, sym__delete_mark_begin, - ACTIONS(2004), 1, + [22838] = 2, + ACTIONS(2235), 1, sym__in_fallback, - [22486] = 2, - ACTIONS(1993), 1, + ACTIONS(2243), 1, + sym__insert_mark_begin, + [22845] = 2, + ACTIONS(2235), 1, sym__in_fallback, - ACTIONS(2006), 1, + ACTIONS(2246), 1, sym__highlighted_mark_begin, - [22493] = 2, - ACTIONS(1993), 1, + [22852] = 2, + ACTIONS(2235), 1, sym__in_fallback, - ACTIONS(2009), 1, + ACTIONS(2249), 1, sym__subscript_mark_begin, - [22500] = 2, - ACTIONS(1993), 1, + [22859] = 2, + ACTIONS(2235), 1, sym__in_fallback, - ACTIONS(2012), 1, + ACTIONS(2252), 1, sym__superscript_mark_begin, - [22507] = 2, - ACTIONS(1993), 1, - sym__in_fallback, - ACTIONS(2015), 1, - sym__strong_mark_begin, - [22514] = 2, - ACTIONS(1993), 1, - sym__in_fallback, - ACTIONS(2018), 1, - sym__emphasis_mark_begin, - [22521] = 2, - ACTIONS(2004), 1, - sym__in_fallback, - ACTIONS(2021), 1, - sym__insert_mark_begin, - [22528] = 2, - ACTIONS(1923), 1, - sym__in_fallback, - ACTIONS(2024), 1, - sym__strong_mark_begin, - [22535] = 2, - ACTIONS(2004), 1, + [22866] = 2, + ACTIONS(2235), 1, sym__in_fallback, - ACTIONS(2027), 1, - sym__highlighted_mark_begin, - [22542] = 2, - ACTIONS(2030), 1, + ACTIONS(2255), 1, sym__strong_mark_begin, - ACTIONS(2033), 1, - sym__in_fallback, - [22549] = 2, - ACTIONS(2033), 1, + [22873] = 2, + ACTIONS(2235), 1, sym__in_fallback, - ACTIONS(2035), 1, + ACTIONS(2258), 1, sym__emphasis_mark_begin, - [22556] = 2, - ACTIONS(2004), 1, - sym__in_fallback, - ACTIONS(2038), 1, - sym__subscript_mark_begin, - [22563] = 2, - ACTIONS(2004), 1, + [22880] = 2, + ACTIONS(2261), 1, + sym__inline_attribute_mark_begin, + ACTIONS(2264), 1, sym__in_fallback, - ACTIONS(2041), 1, - sym__superscript_mark_begin, - [22570] = 2, - ACTIONS(2044), 1, + [22887] = 2, + ACTIONS(2266), 1, sym__emphasis_mark_begin, - ACTIONS(2047), 1, + ACTIONS(2269), 1, sym__in_fallback, - [22577] = 2, - ACTIONS(2047), 1, + [22894] = 2, + ACTIONS(2269), 1, sym__in_fallback, - ACTIONS(2049), 1, + ACTIONS(2271), 1, sym__strong_mark_begin, - [22584] = 2, - ACTIONS(2047), 1, + [22901] = 2, + ACTIONS(2269), 1, sym__in_fallback, - ACTIONS(2052), 1, + ACTIONS(2274), 1, sym__superscript_mark_begin, - [22591] = 2, - ACTIONS(2047), 1, + [22908] = 2, + ACTIONS(2269), 1, sym__in_fallback, - ACTIONS(2055), 1, + ACTIONS(2277), 1, sym__subscript_mark_begin, - [22598] = 2, - ACTIONS(2047), 1, + [22915] = 2, + ACTIONS(2269), 1, sym__in_fallback, - ACTIONS(2058), 1, + ACTIONS(2280), 1, sym__highlighted_mark_begin, - [22605] = 2, - ACTIONS(2047), 1, + [22922] = 2, + ACTIONS(2269), 1, sym__in_fallback, - ACTIONS(2061), 1, + ACTIONS(2283), 1, sym__insert_mark_begin, - [22612] = 2, - ACTIONS(2047), 1, + [22929] = 2, + ACTIONS(2269), 1, sym__in_fallback, - ACTIONS(2064), 1, - sym__delete_mark_begin, - [22619] = 2, - ACTIONS(2067), 1, + ACTIONS(2286), 1, sym__delete_mark_begin, - ACTIONS(2070), 1, + [22936] = 2, + ACTIONS(2289), 1, + sym__strong_mark_begin, + ACTIONS(2292), 1, sym__in_fallback, - [22626] = 2, - ACTIONS(2004), 1, + [22943] = 2, + ACTIONS(2269), 1, sym__in_fallback, - ACTIONS(2072), 1, - sym__strong_mark_begin, - [22633] = 2, - ACTIONS(2004), 1, + ACTIONS(2294), 1, + sym__image_description_mark_begin, + [22950] = 2, + ACTIONS(2269), 1, sym__in_fallback, - ACTIONS(2075), 1, - sym__emphasis_mark_begin, - [22640] = 2, - ACTIONS(2070), 1, + ACTIONS(2297), 1, + sym__bracketed_text_mark_begin, + [22957] = 2, + ACTIONS(2292), 1, sym__in_fallback, - ACTIONS(2078), 1, - sym__insert_mark_begin, - [22647] = 2, - ACTIONS(2081), 1, + ACTIONS(2300), 1, sym__emphasis_mark_begin, - ACTIONS(2084), 1, - sym__in_fallback, - [22654] = 2, - ACTIONS(2084), 1, + [22964] = 2, + ACTIONS(2036), 1, sym__in_fallback, - ACTIONS(2086), 1, + ACTIONS(2303), 1, sym__strong_mark_begin, - [22661] = 2, - ACTIONS(1831), 1, - sym__in_fallback, - ACTIONS(2089), 1, - sym__highlighted_mark_begin, - [22668] = 2, - ACTIONS(2070), 1, - sym__in_fallback, - ACTIONS(2092), 1, - sym__highlighted_mark_begin, - [22675] = 2, - ACTIONS(2070), 1, + [22971] = 2, + ACTIONS(2306), 1, + sym__bracketed_text_mark_begin, + ACTIONS(2309), 1, sym__in_fallback, - ACTIONS(2095), 1, - sym__subscript_mark_begin, - [22682] = 2, - ACTIONS(1923), 1, + [22978] = 2, + ACTIONS(2309), 1, sym__in_fallback, - ACTIONS(2098), 1, + ACTIONS(2311), 1, + sym__image_description_mark_begin, + [22985] = 2, + ACTIONS(2314), 1, sym__emphasis_mark_begin, - [22689] = 2, - ACTIONS(1543), 1, - anon_sym_PERCENT, - STATE(923), 1, - sym__comment_with_newline, - [22696] = 2, - ACTIONS(2070), 1, + ACTIONS(2317), 1, sym__in_fallback, - ACTIONS(2101), 1, - sym__superscript_mark_begin, - [22703] = 2, - ACTIONS(2070), 1, + [22992] = 2, + ACTIONS(2317), 1, sym__in_fallback, - ACTIONS(2104), 1, + ACTIONS(2319), 1, sym__strong_mark_begin, - [22710] = 2, - ACTIONS(2070), 1, - sym__in_fallback, - ACTIONS(2107), 1, - sym__emphasis_mark_begin, - [22717] = 2, - ACTIONS(1831), 1, + [22999] = 2, + ACTIONS(2322), 1, + sym__inline_attribute_mark_begin, + ACTIONS(2325), 1, sym__in_fallback, - ACTIONS(2110), 1, - sym__strong_mark_begin, - [22724] = 2, - ACTIONS(1543), 1, - anon_sym_PERCENT, - STATE(904), 1, - sym__comment_with_newline, - [22731] = 2, - ACTIONS(1831), 1, + [23006] = 2, + ACTIONS(2309), 1, sym__in_fallback, - ACTIONS(2113), 1, + ACTIONS(2327), 1, sym__delete_mark_begin, - [22738] = 2, - ACTIONS(2116), 1, - sym__emphasis_mark_begin, - ACTIONS(2119), 1, - sym__in_fallback, - [22745] = 2, - ACTIONS(2119), 1, + [23013] = 2, + ACTIONS(2309), 1, sym__in_fallback, - ACTIONS(2121), 1, - sym__strong_mark_begin, - [22752] = 2, - ACTIONS(2119), 1, + ACTIONS(2330), 1, + sym__insert_mark_begin, + [23020] = 2, + ACTIONS(2309), 1, sym__in_fallback, - ACTIONS(2124), 1, - sym__superscript_mark_begin, - [22759] = 2, - ACTIONS(2119), 1, + ACTIONS(2333), 1, + sym__highlighted_mark_begin, + [23027] = 2, + ACTIONS(2309), 1, sym__in_fallback, - ACTIONS(2127), 1, + ACTIONS(2336), 1, sym__subscript_mark_begin, - [22766] = 2, - ACTIONS(2119), 1, + [23034] = 2, + ACTIONS(2309), 1, sym__in_fallback, - ACTIONS(2130), 1, - sym__highlighted_mark_begin, - [22773] = 2, - ACTIONS(2119), 1, + ACTIONS(2339), 1, + sym__superscript_mark_begin, + [23041] = 2, + ACTIONS(2309), 1, sym__in_fallback, - ACTIONS(2133), 1, - sym__insert_mark_begin, - [22780] = 2, - ACTIONS(2119), 1, + ACTIONS(2342), 1, + sym__strong_mark_begin, + [23048] = 2, + ACTIONS(2309), 1, sym__in_fallback, - ACTIONS(2136), 1, - sym__delete_mark_begin, - [22787] = 2, - ACTIONS(1543), 1, - anon_sym_PERCENT, - STATE(872), 1, - sym__comment_with_newline, - [22794] = 2, - ACTIONS(2139), 1, - sym__id, - STATE(657), 1, - sym_class_name, - [22801] = 2, - ACTIONS(2141), 1, + ACTIONS(2345), 1, sym__emphasis_mark_begin, - ACTIONS(2144), 1, - sym__in_fallback, - [22808] = 2, - ACTIONS(2144), 1, - sym__in_fallback, - ACTIONS(2146), 1, - sym__strong_mark_begin, - [22815] = 1, - ACTIONS(2149), 1, - sym_delete_end, - [22819] = 1, - ACTIONS(2151), 1, + [23055] = 1, + ACTIONS(2348), 1, + sym_superscript_end, + [23059] = 1, + ACTIONS(2350), 1, sym_subscript_end, - [22823] = 1, - ACTIONS(2153), 1, - sym__newline, - [22827] = 1, - ACTIONS(2155), 1, + [23063] = 1, + ACTIONS(2352), 1, + sym_highlighted_end, + [23067] = 1, + ACTIONS(2354), 1, sym_insert_end, - [22831] = 1, - ACTIONS(2157), 1, + [23071] = 1, + ACTIONS(2356), 1, sym_delete_end, - [22835] = 1, - ACTIONS(2159), 1, - sym__verbatim_end, - [22839] = 1, - ACTIONS(2161), 1, + [23075] = 1, + ACTIONS(2358), 1, anon_sym_RBRACK2, - [22843] = 1, - ACTIONS(2163), 1, + [23079] = 1, + ACTIONS(2360), 1, anon_sym_RPAREN, - [22847] = 1, - ACTIONS(2165), 1, + [23083] = 1, + ACTIONS(2362), 1, + sym_superscript_end, + [23087] = 1, + ACTIONS(2364), 1, anon_sym_RBRACE, - [22851] = 1, - ACTIONS(2167), 1, - anon_sym_GT, - [22855] = 1, - ACTIONS(2169), 1, + [23091] = 1, + ACTIONS(2366), 1, + sym_strong_end, + [23095] = 1, + ACTIONS(2368), 1, + sym_emphasis_end, + [23099] = 1, + ACTIONS(2370), 1, + anon_sym_RBRACE, + [23103] = 1, + ACTIONS(2372), 1, + sym__verbatim_end, + [23107] = 1, + ACTIONS(2374), 1, + sym_subscript_end, + [23111] = 1, + ACTIONS(2376), 1, anon_sym_RBRACK, - [22859] = 1, - ACTIONS(2171), 1, + [23115] = 1, + ACTIONS(2378), 1, anon_sym_GT, - [22863] = 1, - ACTIONS(2173), 1, - sym_subscript_end, - [22867] = 1, - ACTIONS(2175), 1, + [23119] = 1, + ACTIONS(2380), 1, + sym__newline, + [23123] = 1, + ACTIONS(2382), 1, + sym__verbatim_end, + [23127] = 1, + ACTIONS(2384), 1, + sym_highlighted_end, + [23131] = 1, + ACTIONS(2386), 1, + sym_insert_end, + [23135] = 1, + ACTIONS(2388), 1, + sym_emphasis_end, + [23139] = 1, + ACTIONS(2390), 1, + anon_sym_RBRACE, + [23143] = 1, + ACTIONS(2392), 1, + sym__verbatim_end, + [23147] = 1, + ACTIONS(2394), 1, + sym_delete_end, + [23151] = 1, + ACTIONS(2396), 1, + sym__newline, + [23155] = 1, + ACTIONS(2398), 1, + anon_sym_RBRACE, + [23159] = 1, + ACTIONS(2400), 1, + anon_sym_GT, + [23163] = 1, + ACTIONS(2402), 1, + anon_sym_RBRACK, + [23167] = 1, + ACTIONS(2404), 1, + sym__verbatim_end, + [23171] = 1, + ACTIONS(2406), 1, sym__verbatim_end, - [22871] = 1, - ACTIONS(2177), 1, + [23175] = 1, + ACTIONS(2408), 1, anon_sym_RBRACE, - [22875] = 1, - ACTIONS(2179), 1, + [23179] = 1, + ACTIONS(2410), 1, sym_emphasis_end, - [22879] = 1, - ACTIONS(2181), 1, + [23183] = 1, + ACTIONS(2412), 1, sym_strong_end, - [22883] = 1, - ACTIONS(2183), 1, + [23187] = 1, + ACTIONS(2414), 1, sym_superscript_end, - [22887] = 1, - ACTIONS(2185), 1, + [23191] = 1, + ACTIONS(2416), 1, sym_subscript_end, - [22891] = 1, - ACTIONS(2187), 1, + [23195] = 1, + ACTIONS(2418), 1, sym_highlighted_end, - [22895] = 1, - ACTIONS(2189), 1, + [23199] = 1, + ACTIONS(2420), 1, sym_insert_end, - [22899] = 1, - ACTIONS(2191), 1, - sym_superscript_end, - [22903] = 1, - ACTIONS(2193), 1, + [23203] = 1, + ACTIONS(2422), 1, + sym_delete_end, + [23207] = 1, + ACTIONS(2424), 1, anon_sym_RBRACK2, - [22907] = 1, - ACTIONS(2195), 1, + [23211] = 1, + ACTIONS(2426), 1, anon_sym_RPAREN, - [22911] = 1, - ACTIONS(2197), 1, + [23215] = 1, + ACTIONS(2428), 1, + anon_sym_RBRACK, + [23219] = 1, + ACTIONS(2430), 1, anon_sym_RBRACE, - [22915] = 1, - ACTIONS(2199), 1, + [23223] = 1, + ACTIONS(2432), 1, + anon_sym_RBRACK2, + [23227] = 1, + ACTIONS(2434), 1, + anon_sym_RPAREN, + [23231] = 1, + ACTIONS(2436), 1, + anon_sym_RBRACK2, + [23235] = 1, + ACTIONS(2438), 1, + sym_delete_end, + [23239] = 1, + ACTIONS(2440), 1, + sym_insert_end, + [23243] = 1, + ACTIONS(2442), 1, + sym_highlighted_end, + [23247] = 1, + ACTIONS(2444), 1, + sym_subscript_end, + [23251] = 1, + ACTIONS(2446), 1, + sym__newline, + [23255] = 1, + ACTIONS(2448), 1, + sym_superscript_end, + [23259] = 1, + ACTIONS(2450), 1, sym_strong_end, - [22919] = 1, - ACTIONS(2201), 1, - sym_emphasis_end, - [22923] = 1, - ACTIONS(2203), 1, - anon_sym_RBRACE, - [22927] = 1, - ACTIONS(2205), 1, - sym__verbatim_end, - [22931] = 1, - ACTIONS(2207), 1, - anon_sym_RBRACK, - [22935] = 1, - ACTIONS(2209), 1, + [23263] = 1, + ACTIONS(2452), 1, anon_sym_GT, - [22939] = 1, - ACTIONS(2211), 1, - sym__verbatim_end, - [22943] = 1, - ACTIONS(2213), 1, - sym__newline, - [22947] = 1, - ACTIONS(2215), 1, - sym__newline, - [22951] = 1, - ACTIONS(2217), 1, + [23267] = 1, + ACTIONS(2454), 1, + sym_emphasis_end, + [23271] = 1, + ACTIONS(2456), 1, anon_sym_RBRACE, - [22955] = 1, - ACTIONS(2219), 1, + [23275] = 1, + ACTIONS(2458), 1, sym__verbatim_end, - [22959] = 1, - ACTIONS(2221), 1, + [23279] = 1, + ACTIONS(2460), 1, + sym__verbatim_end, + [23283] = 1, + ACTIONS(2462), 1, anon_sym_RPAREN, - [22963] = 1, - ACTIONS(2223), 1, - anon_sym_RBRACK2, - [22967] = 1, - ACTIONS(2225), 1, - sym_delete_end, - [22971] = 1, - ACTIONS(2227), 1, + [23287] = 1, + ACTIONS(2464), 1, + anon_sym_RBRACK, + [23291] = 1, + ACTIONS(2466), 1, anon_sym_GT, - [22975] = 1, - ACTIONS(2229), 1, + [23295] = 1, + ACTIONS(2468), 1, anon_sym_RBRACK, - [22979] = 1, - ACTIONS(2231), 1, - sym_insert_end, - [22983] = 1, - ACTIONS(2233), 1, - sym_highlighted_end, - [22987] = 1, - ACTIONS(2235), 1, + [23299] = 1, + ACTIONS(2470), 1, + anon_sym_GT, + [23303] = 1, + ACTIONS(2472), 1, sym__verbatim_end, - [22991] = 1, - ACTIONS(2237), 1, + [23307] = 1, + ACTIONS(2474), 1, anon_sym_RBRACE, - [22995] = 1, - ACTIONS(2239), 1, + [23311] = 1, + ACTIONS(2476), 1, sym_emphasis_end, - [22999] = 1, - ACTIONS(2241), 1, + [23315] = 1, + ACTIONS(2478), 1, sym_strong_end, - [23003] = 1, - ACTIONS(2243), 1, + [23319] = 1, + ACTIONS(2480), 1, sym_superscript_end, - [23007] = 1, - ACTIONS(2245), 1, + [23323] = 1, + ACTIONS(2482), 1, sym_subscript_end, - [23011] = 1, - ACTIONS(2247), 1, + [23327] = 1, + ACTIONS(2484), 1, sym_highlighted_end, - [23015] = 1, - ACTIONS(2249), 1, + [23331] = 1, + ACTIONS(2486), 1, sym_insert_end, - [23019] = 1, - ACTIONS(2251), 1, + [23335] = 1, + ACTIONS(2488), 1, sym_delete_end, - [23023] = 1, - ACTIONS(2253), 1, + [23339] = 1, + ACTIONS(2490), 1, anon_sym_RBRACK2, - [23027] = 1, - ACTIONS(2255), 1, + [23343] = 1, + ACTIONS(2492), 1, anon_sym_RPAREN, - [23031] = 1, - ACTIONS(2257), 1, + [23347] = 1, + ACTIONS(2494), 1, + sym__verbatim_end, + [23351] = 1, + ACTIONS(2496), 1, + anon_sym_RBRACE, + [23355] = 1, + ACTIONS(2498), 1, + sym__verbatim_end, + [23359] = 1, + ACTIONS(2500), 1, + anon_sym_RBRACE, + [23363] = 1, + ACTIONS(2502), 1, + sym__newline, + [23367] = 1, + ACTIONS(2504), 1, anon_sym_RBRACE, - [23035] = 1, - ACTIONS(2259), 1, + [23371] = 1, + ACTIONS(2506), 1, + anon_sym_RPAREN, + [23375] = 1, + ACTIONS(2508), 1, + anon_sym_RBRACK2, + [23379] = 1, + ACTIONS(2510), 1, + sym_delete_end, + [23383] = 1, + ACTIONS(2512), 1, + sym__newline, + [23387] = 1, + ACTIONS(2514), 1, + sym_insert_end, + [23391] = 1, + ACTIONS(2516), 1, + sym_highlighted_end, + [23395] = 1, + ACTIONS(2518), 1, sym_subscript_end, - [23039] = 1, - ACTIONS(2261), 1, + [23399] = 1, + ACTIONS(2520), 1, sym_superscript_end, - [23043] = 1, - ACTIONS(2263), 1, - sym_strong_end, - [23047] = 1, - ACTIONS(2265), 1, - sym_emphasis_end, - [23051] = 1, - ACTIONS(2267), 1, - anon_sym_RBRACE, - [23055] = 1, - ACTIONS(2269), 1, - sym__verbatim_end, - [23059] = 1, - ACTIONS(2271), 1, - anon_sym_RBRACK, - [23063] = 1, - ACTIONS(2273), 1, + [23403] = 1, + ACTIONS(2522), 1, sym__newline, - [23067] = 1, - ACTIONS(2275), 1, - anon_sym_GT, - [23071] = 1, - ACTIONS(2277), 1, - sym__verbatim_end, - [23075] = 1, - ACTIONS(2279), 1, + [23407] = 1, + ACTIONS(2524), 1, sym__verbatim_end, - [23079] = 1, - ACTIONS(2281), 1, - sym__newline, - [23083] = 1, - ACTIONS(2283), 1, + [23411] = 1, + ACTIONS(2526), 1, + sym_strong_end, + [23415] = 1, + ACTIONS(2528), 1, + sym_emphasis_end, + [23419] = 1, + ACTIONS(2530), 1, anon_sym_RBRACE, - [23087] = 1, - ACTIONS(2285), 1, - anon_sym_RPAREN, - [23091] = 1, - ACTIONS(2287), 1, + [23423] = 1, + ACTIONS(2532), 1, anon_sym_GT, - [23095] = 1, - ACTIONS(2289), 1, + [23427] = 1, + ACTIONS(2534), 1, anon_sym_RBRACK, - [23099] = 1, - ACTIONS(2291), 1, - anon_sym_RBRACK2, - [23103] = 1, - ACTIONS(2293), 1, - sym_delete_end, - [23107] = 1, - ACTIONS(2295), 1, + [23431] = 1, + ACTIONS(2536), 1, sym__verbatim_end, - [23111] = 1, - ACTIONS(2297), 1, + [23435] = 1, + ACTIONS(2538), 1, + sym__verbatim_end, + [23439] = 1, + ACTIONS(2540), 1, anon_sym_RBRACE, - [23115] = 1, - ACTIONS(2299), 1, + [23443] = 1, + ACTIONS(2542), 1, sym_emphasis_end, - [23119] = 1, - ACTIONS(2301), 1, + [23447] = 1, + ACTIONS(2544), 1, sym_strong_end, - [23123] = 1, - ACTIONS(2303), 1, + [23451] = 1, + ACTIONS(2546), 1, sym_superscript_end, - [23127] = 1, - ACTIONS(2305), 1, + [23455] = 1, + ACTIONS(2548), 1, sym_subscript_end, - [23131] = 1, - ACTIONS(2307), 1, + [23459] = 1, + ACTIONS(2550), 1, sym_highlighted_end, - [23135] = 1, - ACTIONS(2309), 1, + [23463] = 1, + ACTIONS(2552), 1, sym_insert_end, - [23139] = 1, - ACTIONS(2311), 1, + [23467] = 1, + ACTIONS(2554), 1, sym_delete_end, - [23143] = 1, - ACTIONS(2313), 1, + [23471] = 1, + ACTIONS(2556), 1, anon_sym_RBRACK2, - [23147] = 1, - ACTIONS(2315), 1, + [23475] = 1, + ACTIONS(2558), 1, anon_sym_RPAREN, - [23151] = 1, - ACTIONS(2317), 1, + [23479] = 1, + ACTIONS(2560), 1, + anon_sym_RBRACK, + [23483] = 1, + ACTIONS(2562), 1, anon_sym_RBRACE, - [23155] = 1, - ACTIONS(2319), 1, - sym_insert_end, - [23159] = 1, - ACTIONS(2321), 1, - sym_highlighted_end, - [23163] = 1, - ACTIONS(2323), 1, - sym_subscript_end, - [23167] = 1, - ACTIONS(2325), 1, - sym_superscript_end, - [23171] = 1, - ACTIONS(2327), 1, - sym_strong_end, - [23175] = 1, - ACTIONS(2329), 1, - sym_emphasis_end, - [23179] = 1, - ACTIONS(2331), 1, + [23487] = 1, + ACTIONS(2564), 1, + sym__verbatim_content, + [23491] = 1, + ACTIONS(2566), 1, + anon_sym_GT, + [23495] = 1, + ACTIONS(2568), 1, + sym__inline_attribute_mark_begin, + [23499] = 1, + ACTIONS(2570), 1, + sym__verbatim_content, + [23503] = 1, + ACTIONS(2572), 1, + sym__verbatim_end, + [23507] = 1, + ACTIONS(2574), 1, + sym__newline, + [23511] = 1, + ACTIONS(2576), 1, anon_sym_RBRACE, - [23183] = 1, - ACTIONS(2333), 1, + [23515] = 1, + ACTIONS(2578), 1, + sym_strong_end, + [23519] = 1, + ACTIONS(2580), 1, sym__verbatim_end, - [23187] = 1, - ACTIONS(2335), 1, - anon_sym_RBRACK, - [23191] = 1, - ACTIONS(2337), 1, + [23523] = 1, + ACTIONS(2582), 1, anon_sym_RPAREN, - [23195] = 1, - ACTIONS(2339), 1, - sym__verbatim_end, - [23199] = 1, - ACTIONS(2341), 1, - sym__newline, - [23203] = 1, - ACTIONS(2343), 1, + [23527] = 1, + ACTIONS(2584), 1, anon_sym_RBRACE, - [23207] = 1, - ACTIONS(2345), 1, + [23531] = 1, + ACTIONS(2586), 1, anon_sym_RPAREN, - [23211] = 1, - ACTIONS(2347), 1, + [23535] = 1, + ACTIONS(2588), 1, anon_sym_RBRACK2, - [23215] = 1, - ACTIONS(2349), 1, + [23539] = 1, + ACTIONS(2590), 1, + aux_sym_inline_link_destination_token1, + [23543] = 1, + ACTIONS(2592), 1, + sym__whitespace, + [23547] = 1, + ACTIONS(2594), 1, + sym_language, + [23551] = 1, + ACTIONS(2596), 1, + sym__verbatim_content, + [23555] = 1, + ACTIONS(2598), 1, + anon_sym_RBRACK2, + [23559] = 1, + ACTIONS(2600), 1, + sym__inline_attribute_mark_begin, + [23563] = 1, + ACTIONS(2602), 1, + sym__verbatim_content, + [23567] = 1, + ACTIONS(2604), 1, sym_delete_end, - [23219] = 1, - ACTIONS(2351), 1, + [23571] = 1, + ACTIONS(2606), 1, + sym_delete_end, + [23575] = 1, + ACTIONS(2608), 1, sym_insert_end, - [23223] = 1, - ACTIONS(2353), 1, + [23579] = 1, + ACTIONS(2610), 1, sym_highlighted_end, - [23227] = 1, - ACTIONS(2355), 1, + [23583] = 1, + ACTIONS(2612), 1, sym_subscript_end, - [23231] = 1, - ACTIONS(2357), 1, + [23587] = 1, + ACTIONS(2614), 1, sym_superscript_end, - [23235] = 1, - ACTIONS(2359), 1, + [23591] = 1, + ACTIONS(2616), 1, sym_strong_end, - [23239] = 1, - ACTIONS(2361), 1, + [23595] = 1, + ACTIONS(2618), 1, sym_emphasis_end, - [23243] = 1, - ACTIONS(2363), 1, - sym__verbatim_content, - [23247] = 1, - ACTIONS(2365), 1, - anon_sym_RBRACK, - [23251] = 1, - ACTIONS(2367), 1, - sym__verbatim_content, - [23255] = 1, - ACTIONS(2369), 1, - anon_sym_RBRACE, - [23259] = 1, - ACTIONS(2371), 1, - sym__verbatim_end, - [23263] = 1, - ACTIONS(2373), 1, - anon_sym_RBRACK, - [23267] = 1, - ACTIONS(2375), 1, - anon_sym_GT, - [23271] = 1, - ACTIONS(2377), 1, - sym__verbatim_end, - [23275] = 1, - ACTIONS(2379), 1, - sym__newline, - [23279] = 1, - ACTIONS(2381), 1, + [23599] = 1, + ACTIONS(2620), 1, anon_sym_RBRACE, - [23283] = 1, - ACTIONS(2383), 1, - sym__verbatim_content, - [23287] = 1, - ACTIONS(2385), 1, - anon_sym_DQUOTE, - [23291] = 1, - ACTIONS(2387), 1, + [23603] = 1, + ACTIONS(2622), 1, aux_sym_inline_link_destination_token1, - [23295] = 1, - ACTIONS(2389), 1, + [23607] = 1, + ACTIONS(2624), 1, sym_language, - [23299] = 1, - ACTIONS(2391), 1, - sym__verbatim_content, - [23303] = 1, - ACTIONS(2393), 1, - anon_sym_RBRACK, - [23307] = 1, - ACTIONS(2395), 1, + [23611] = 1, + ACTIONS(2626), 1, sym__verbatim_content, - [23311] = 1, - ACTIONS(2397), 1, - sym__newline, - [23315] = 1, - ACTIONS(2399), 1, - anon_sym_RBRACK2, - [23319] = 1, - ACTIONS(2401), 1, - sym_delete_end, - [23323] = 1, - ACTIONS(2403), 1, + [23615] = 1, + ACTIONS(2628), 1, sym_insert_end, - [23327] = 1, - ACTIONS(2405), 1, + [23619] = 1, + ACTIONS(2630), 1, + sym__inline_attribute_mark_begin, + [23623] = 1, + ACTIONS(2632), 1, + sym__verbatim_content, + [23627] = 1, + ACTIONS(2634), 1, sym_highlighted_end, - [23331] = 1, - ACTIONS(2407), 1, - aux_sym_value_token1, - [23335] = 1, - ACTIONS(2409), 1, + [23631] = 1, + ACTIONS(2636), 1, sym_subscript_end, - [23339] = 1, - ACTIONS(2411), 1, + [23635] = 1, + ACTIONS(2638), 1, + anon_sym_RBRACK, + [23639] = 1, + ACTIONS(2640), 1, + anon_sym_GT, + [23643] = 1, + ACTIONS(2642), 1, sym_superscript_end, - [23343] = 1, - ACTIONS(2413), 1, + [23647] = 1, + ACTIONS(2644), 1, sym_strong_end, - [23347] = 1, - ACTIONS(2415), 1, + [23651] = 1, + ACTIONS(2646), 1, + sym_emphasis_end, + [23655] = 1, + ACTIONS(2648), 1, + sym__verbatim_end, + [23659] = 1, + ACTIONS(2650), 1, + anon_sym_RBRACE, + [23663] = 1, + ACTIONS(2652), 1, aux_sym_inline_link_destination_token1, - [23351] = 1, - ACTIONS(2417), 1, + [23667] = 1, + ACTIONS(2654), 1, sym_language, - [23355] = 1, - ACTIONS(2419), 1, - sym__verbatim_content, - [23359] = 1, - ACTIONS(2421), 1, - anon_sym_RBRACK, - [23363] = 1, - ACTIONS(2423), 1, + [23671] = 1, + ACTIONS(2656), 1, sym__verbatim_content, - [23367] = 1, - ACTIONS(2425), 1, - sym_emphasis_end, - [23371] = 1, - ACTIONS(2427), 1, - anon_sym_RBRACE, - [23375] = 1, - ACTIONS(2429), 1, - anon_sym_RBRACE, - [23379] = 1, - ACTIONS(2431), 1, + [23675] = 1, + ACTIONS(2658), 1, sym__verbatim_end, - [23383] = 1, - ACTIONS(2433), 1, + [23679] = 1, + ACTIONS(2660), 1, + sym__inline_attribute_mark_begin, + [23683] = 1, + ACTIONS(2662), 1, + sym__verbatim_content, + [23687] = 1, + ACTIONS(2664), 1, anon_sym_RBRACK, - [23387] = 1, - ACTIONS(2435), 1, + [23691] = 1, + ACTIONS(2666), 1, anon_sym_GT, - [23391] = 1, - ACTIONS(2437), 1, + [23695] = 1, + ACTIONS(2668), 1, + sym__newline, + [23699] = 1, + ACTIONS(2670), 1, sym__verbatim_end, - [23395] = 1, - ACTIONS(2439), 1, + [23703] = 1, + ACTIONS(2672), 1, sym__newline, - [23399] = 1, - ACTIONS(2441), 1, + [23707] = 1, + ACTIONS(2674), 1, anon_sym_RBRACE, - [23403] = 1, - ACTIONS(2443), 1, + [23711] = 1, + ACTIONS(2676), 1, + anon_sym_RPAREN, + [23715] = 1, + ACTIONS(2678), 1, + anon_sym_RBRACK2, + [23719] = 1, + ACTIONS(1667), 1, + anon_sym_RBRACE, + [23723] = 1, + ACTIONS(2680), 1, aux_sym_inline_link_destination_token1, - [23407] = 1, - ACTIONS(2445), 1, + [23727] = 1, + ACTIONS(2682), 1, sym_language, - [23411] = 1, - ACTIONS(2447), 1, - sym__verbatim_content, - [23415] = 1, - ACTIONS(2449), 1, - anon_sym_RBRACK, - [23419] = 1, - ACTIONS(2451), 1, + [23731] = 1, + ACTIONS(2684), 1, sym__verbatim_content, - [23423] = 1, - ACTIONS(2453), 1, - anon_sym_RPAREN, - [23427] = 1, - ACTIONS(2455), 1, - sym_language, - [23431] = 1, - ACTIONS(2457), 1, - anon_sym_RPAREN, - [23435] = 1, - ACTIONS(2459), 1, - anon_sym_RBRACK2, - [23439] = 1, - ACTIONS(2461), 1, + [23735] = 1, + ACTIONS(2686), 1, sym_delete_end, - [23443] = 1, - ACTIONS(2463), 1, + [23739] = 1, + ACTIONS(2688), 1, + sym__inline_attribute_mark_begin, + [23743] = 1, + ACTIONS(2690), 1, + sym__verbatim_content, + [23747] = 1, + ACTIONS(2692), 1, sym_insert_end, - [23447] = 1, - ACTIONS(2465), 1, - sym_highlighted_end, - [23451] = 1, - ACTIONS(2467), 1, + [23751] = 1, + ACTIONS(2694), 1, + anon_sym_DQUOTE, + [23755] = 1, + ACTIONS(2696), 1, sym_highlighted_end, - [23455] = 1, - ACTIONS(2469), 1, - sym_superscript_end, - [23459] = 1, - ACTIONS(2471), 1, + [23759] = 1, + ACTIONS(2698), 1, + aux_sym_value_token1, + [23763] = 1, + ACTIONS(1663), 1, + anon_sym_RBRACE, + [23767] = 1, + ACTIONS(2700), 1, + anon_sym_RBRACE, + [23771] = 1, + ACTIONS(2702), 1, + anon_sym_EQ, + [23775] = 1, + ACTIONS(2704), 1, + sym_subscript_end, + [23779] = 1, + ACTIONS(2706), 1, + anon_sym_EQ, + [23783] = 1, + ACTIONS(2708), 1, aux_sym_inline_link_destination_token1, - [23463] = 1, - ACTIONS(2473), 1, + [23787] = 1, + ACTIONS(2710), 1, sym_language, - [23467] = 1, - ACTIONS(2475), 1, + [23791] = 1, + ACTIONS(2712), 1, sym__verbatim_content, - [23471] = 1, - ACTIONS(2477), 1, - anon_sym_RBRACK, - [23475] = 1, - ACTIONS(2479), 1, + [23795] = 1, + ACTIONS(2714), 1, + sym_superscript_end, + [23799] = 1, + ACTIONS(2716), 1, + sym__inline_attribute_mark_begin, + [23803] = 1, + ACTIONS(2718), 1, sym__verbatim_content, - [23479] = 1, - ACTIONS(2481), 1, - anon_sym_RBRACK2, - [23483] = 1, - ACTIONS(2483), 1, + [23807] = 1, + ACTIONS(2720), 1, sym_strong_end, - [23487] = 1, - ACTIONS(2485), 1, + [23811] = 1, + ACTIONS(2722), 1, + sym_language, + [23815] = 1, + ACTIONS(2724), 1, + sym__bracketed_text_end, + [23819] = 1, + ACTIONS(2726), 1, + sym__image_description_end, + [23823] = 1, + ACTIONS(2728), 1, + anon_sym_RPAREN, + [23827] = 1, + ACTIONS(2730), 1, + anon_sym_RBRACK2, + [23831] = 1, + ACTIONS(2732), 1, sym_delete_end, - [23491] = 1, - ACTIONS(2487), 1, - sym_emphasis_end, - [23495] = 1, - ACTIONS(2489), 1, - anon_sym_RBRACE, - [23499] = 1, - ACTIONS(2491), 1, - sym__verbatim_end, - [23503] = 1, - ACTIONS(2493), 1, + [23835] = 1, + ACTIONS(2734), 1, sym_insert_end, - [23507] = 1, - ACTIONS(2495), 1, + [23839] = 1, + ACTIONS(2736), 1, sym_highlighted_end, - [23511] = 1, - ACTIONS(2497), 1, - sym_subscript_end, - [23515] = 1, - ACTIONS(2499), 1, + [23843] = 1, + ACTIONS(2738), 1, aux_sym_inline_link_destination_token1, - [23519] = 1, - ACTIONS(2501), 1, + [23847] = 1, + ACTIONS(2740), 1, sym_language, - [23523] = 1, - ACTIONS(2503), 1, + [23851] = 1, + ACTIONS(2742), 1, sym__verbatim_content, - [23527] = 1, - ACTIONS(2505), 1, - anon_sym_RBRACK, - [23531] = 1, - ACTIONS(2507), 1, + [23855] = 1, + ACTIONS(2744), 1, + sym_emphasis_end, + [23859] = 1, + ACTIONS(2746), 1, + sym__inline_attribute_mark_begin, + [23863] = 1, + ACTIONS(2748), 1, sym__verbatim_content, - [23535] = 1, - ACTIONS(2509), 1, + [23867] = 1, + ACTIONS(2750), 1, + anon_sym_RBRACE, + [23871] = 1, + ACTIONS(2752), 1, + sym_subscript_end, + [23875] = 1, + ACTIONS(2754), 1, sym_superscript_end, - [23539] = 1, - ACTIONS(2511), 1, - anon_sym_EQ, - [23543] = 1, - ACTIONS(2513), 1, + [23879] = 1, + ACTIONS(2756), 1, sym_strong_end, - [23547] = 1, - ACTIONS(2515), 1, + [23883] = 1, + ACTIONS(2758), 1, sym_emphasis_end, - [23551] = 1, - ACTIONS(2517), 1, + [23887] = 1, + ACTIONS(2760), 1, anon_sym_RBRACE, - [23555] = 1, - ACTIONS(2519), 1, + [23891] = 1, + ACTIONS(2762), 1, sym__whitespace, - [23559] = 1, - ACTIONS(2521), 1, - anon_sym_EQ, - [23563] = 1, - ACTIONS(2523), 1, + [23895] = 1, + ACTIONS(2764), 1, sym__verbatim_end, - [23567] = 1, - ACTIONS(2525), 1, + [23899] = 1, + ACTIONS(2766), 1, aux_sym_inline_link_destination_token1, - [23571] = 1, - ACTIONS(2527), 1, + [23903] = 1, + ACTIONS(2768), 1, aux_sym_inline_link_destination_token1, - [23575] = 1, - ACTIONS(2529), 1, + [23907] = 1, + ACTIONS(2770), 1, sym_language, - [23579] = 1, - ACTIONS(2531), 1, + [23911] = 1, + ACTIONS(2772), 1, sym__verbatim_content, - [23583] = 1, - ACTIONS(2533), 1, - anon_sym_RBRACK, - [23587] = 1, - ACTIONS(2535), 1, + [23915] = 1, + ACTIONS(2774), 1, + sym__verbatim_end, + [23919] = 1, + ACTIONS(2776), 1, + sym__inline_attribute_mark_begin, + [23923] = 1, + ACTIONS(2778), 1, sym__verbatim_content, - [23591] = 1, - ACTIONS(2537), 1, + [23927] = 1, + ACTIONS(2780), 1, anon_sym_RBRACK, - [23595] = 1, - ACTIONS(2539), 1, - anon_sym_GT, - [23599] = 1, - ACTIONS(2541), 1, + [23931] = 1, + ACTIONS(2782), 1, + sym__newline, + [23935] = 1, + ACTIONS(2784), 1, sym__verbatim_content, - [23603] = 1, - ACTIONS(2543), 1, - anon_sym_RBRACK, - [23607] = 1, - ACTIONS(2545), 1, - anon_sym_RBRACK, - [23611] = 1, - ACTIONS(2547), 1, - sym__verbatim_end, - [23615] = 1, - ACTIONS(2549), 1, + [23939] = 1, + ACTIONS(2786), 1, anon_sym_RBRACK, - [23619] = 1, - ACTIONS(2551), 1, + [23943] = 1, + ACTIONS(2788), 1, anon_sym_RBRACK, - [23623] = 1, - ACTIONS(2553), 1, + [23947] = 1, + ACTIONS(2790), 1, anon_sym_GT, - [23627] = 1, - ACTIONS(2555), 1, + [23951] = 1, + ACTIONS(2792), 1, + sym__inline_attribute_mark_begin, + [23955] = 1, + ACTIONS(2794), 1, + anon_sym_GT, + [23959] = 1, + ACTIONS(2796), 1, + sym__verbatim_end, + [23963] = 1, + ACTIONS(2798), 1, aux_sym_inline_link_destination_token1, - [23631] = 1, - ACTIONS(2557), 1, + [23967] = 1, + ACTIONS(2800), 1, sym_language, - [23635] = 1, - ACTIONS(2559), 1, - sym__verbatim_content, - [23639] = 1, - ACTIONS(2561), 1, - anon_sym_RBRACK, - [23643] = 1, - ACTIONS(2563), 1, + [23971] = 1, + ACTIONS(2802), 1, sym__verbatim_content, - [23647] = 1, - ACTIONS(2565), 1, + [23975] = 1, + ACTIONS(2804), 1, sym__newline, - [23651] = 1, - ACTIONS(2567), 1, + [23979] = 1, + ACTIONS(2806), 1, + sym__inline_attribute_mark_begin, + [23983] = 1, + ACTIONS(2808), 1, + sym__verbatim_content, + [23987] = 1, + ACTIONS(2810), 1, anon_sym_RBRACE, - [23655] = 1, - ACTIONS(2569), 1, + [23991] = 1, + ACTIONS(2812), 1, anon_sym_RPAREN, - [23659] = 1, - ACTIONS(2571), 1, - anon_sym_RBRACK2, - [23663] = 1, - ACTIONS(2573), 1, - sym_delete_end, - [23667] = 1, - ACTIONS(2575), 1, + [23995] = 1, + ACTIONS(2814), 1, sym__verbatim_end, - [23671] = 1, - ACTIONS(2577), 1, - sym_insert_end, - [23675] = 1, - ACTIONS(2579), 1, - sym_highlighted_end, - [23679] = 1, - ACTIONS(2581), 1, + [23999] = 1, + ACTIONS(2816), 1, + sym__bracketed_text_mark_begin, + [24003] = 1, + ACTIONS(2818), 1, + sym__image_description_mark_begin, + [24007] = 1, + ACTIONS(2820), 1, sym__delete_mark_begin, - [23683] = 1, - ACTIONS(2583), 1, + [24011] = 1, + ACTIONS(2822), 1, + sym__insert_mark_begin, + [24015] = 1, + ACTIONS(2824), 1, + sym__highlighted_mark_begin, + [24019] = 1, + ACTIONS(2826), 1, + sym__subscript_mark_begin, + [24023] = 1, + ACTIONS(2828), 1, aux_sym_inline_link_destination_token1, - [23687] = 1, - ACTIONS(2585), 1, + [24027] = 1, + ACTIONS(2830), 1, sym_language, - [23691] = 1, - ACTIONS(2587), 1, + [24031] = 1, + ACTIONS(2832), 1, sym__verbatim_content, - [23695] = 1, - ACTIONS(2589), 1, - anon_sym_RBRACK, - [23699] = 1, - ACTIONS(2591), 1, + [24035] = 1, + ACTIONS(2834), 1, + anon_sym_RBRACK2, + [24039] = 1, + ACTIONS(2836), 1, + sym__inline_attribute_mark_begin, + [24043] = 1, + ACTIONS(2838), 1, sym__verbatim_content, - [23703] = 1, - ACTIONS(2593), 1, - sym_subscript_end, - [23707] = 1, - ACTIONS(2595), 1, - sym__insert_mark_begin, - [23711] = 1, - ACTIONS(2597), 1, - sym__highlighted_mark_begin, - [23715] = 1, - ACTIONS(2599), 1, - sym__subscript_mark_begin, - [23719] = 1, - ACTIONS(2601), 1, + [24047] = 1, + ACTIONS(2840), 1, + sym_delete_end, + [24051] = 1, + ACTIONS(2842), 1, sym__superscript_mark_begin, - [23723] = 1, - ACTIONS(2603), 1, + [24055] = 1, + ACTIONS(2844), 1, sym__strong_mark_begin, - [23727] = 1, - ACTIONS(2605), 1, + [24059] = 1, + ACTIONS(2846), 1, sym__emphasis_mark_begin, - [23731] = 1, - ACTIONS(2607), 1, + [24063] = 1, + ACTIONS(2848), 1, ts_builtin_sym_end, - [23735] = 1, - ACTIONS(2609), 1, + [24067] = 1, + ACTIONS(2850), 1, ts_builtin_sym_end, - [23739] = 1, - ACTIONS(2611), 1, + [24071] = 1, + ACTIONS(2852), 1, + sym_insert_end, + [24075] = 1, + ACTIONS(2854), 1, + sym_highlighted_end, + [24079] = 1, + ACTIONS(2856), 1, + sym_subscript_end, + [24083] = 1, + ACTIONS(2858), 1, aux_sym_inline_link_destination_token1, - [23743] = 1, - ACTIONS(2613), 1, + [24087] = 1, + ACTIONS(2860), 1, sym_language, - [23747] = 1, - ACTIONS(2615), 1, - sym__verbatim_content, - [23751] = 1, - ACTIONS(2617), 1, - anon_sym_RBRACK, - [23755] = 1, - ACTIONS(2619), 1, + [24091] = 1, + ACTIONS(2862), 1, sym__verbatim_content, - [23759] = 1, - ACTIONS(2621), 1, + [24095] = 1, + ACTIONS(2864), 1, sym_superscript_end, - [23763] = 1, - ACTIONS(2623), 1, - sym__newline, - [23767] = 1, - ACTIONS(2625), 1, + [24099] = 1, + ACTIONS(2866), 1, + sym__inline_attribute_mark_begin, + [24103] = 1, + ACTIONS(2868), 1, + sym__verbatim_content, + [24107] = 1, + ACTIONS(2870), 1, sym_strong_end, - [23771] = 1, - ACTIONS(2627), 1, + [24111] = 1, + ACTIONS(2872), 1, + sym__newline, + [24115] = 1, + ACTIONS(2874), 1, sym_emphasis_end, - [23775] = 1, - ACTIONS(2629), 1, + [24119] = 1, + ACTIONS(2876), 1, anon_sym_RBRACE, - [23779] = 1, - ACTIONS(2631), 1, + [24123] = 1, + ACTIONS(2878), 1, sym__verbatim_end, - [23783] = 1, - ACTIONS(2633), 1, + [24127] = 1, + ACTIONS(2880), 1, anon_sym_RBRACK, - [23787] = 1, - ACTIONS(2635), 1, + [24131] = 1, + ACTIONS(2882), 1, + sym__verbatim_content, + [24135] = 1, + ACTIONS(2884), 1, anon_sym_GT, - [23791] = 1, - ACTIONS(2637), 1, + [24139] = 1, + ACTIONS(2886), 1, sym__verbatim_end, - [23795] = 1, - ACTIONS(2639), 1, + [24143] = 1, + ACTIONS(2888), 1, aux_sym_inline_link_destination_token1, - [23799] = 1, - ACTIONS(2641), 1, + [24147] = 1, + ACTIONS(2890), 1, sym_language, - [23803] = 1, - ACTIONS(2643), 1, + [24151] = 1, + ACTIONS(2892), 1, sym__emphasis_mark_begin, - [23807] = 1, - ACTIONS(2645), 1, + [24155] = 1, + ACTIONS(2894), 1, sym__strong_mark_begin, - [23811] = 1, - ACTIONS(2647), 1, + [24159] = 1, + ACTIONS(2896), 1, sym__superscript_mark_begin, - [23815] = 1, - ACTIONS(2649), 1, + [24163] = 1, + ACTIONS(2898), 1, sym__subscript_mark_begin, - [23819] = 1, - ACTIONS(2651), 1, + [24167] = 1, + ACTIONS(2900), 1, sym__highlighted_mark_begin, - [23823] = 1, - ACTIONS(2653), 1, + [24171] = 1, + ACTIONS(2902), 1, sym__insert_mark_begin, - [23827] = 1, - ACTIONS(2655), 1, + [24175] = 1, + ACTIONS(2904), 1, sym__delete_mark_begin, - [23831] = 1, - ACTIONS(2657), 1, + [24179] = 1, + ACTIONS(2906), 1, sym__emphasis_mark_begin, - [23835] = 1, - ACTIONS(2659), 1, + [24183] = 1, + ACTIONS(2908), 1, sym__strong_mark_begin, - [23839] = 1, - ACTIONS(2661), 1, + [24187] = 1, + ACTIONS(2910), 1, sym__superscript_mark_begin, - [23843] = 1, - ACTIONS(2663), 1, + [24191] = 1, + ACTIONS(2912), 1, sym__subscript_mark_begin, - [23847] = 1, - ACTIONS(2665), 1, + [24195] = 1, + ACTIONS(2914), 1, sym__highlighted_mark_begin, - [23851] = 1, - ACTIONS(2667), 1, + [24199] = 1, + ACTIONS(2916), 1, sym__insert_mark_begin, - [23855] = 1, - ACTIONS(2669), 1, + [24203] = 1, + ACTIONS(2918), 1, sym__delete_mark_begin, - [23859] = 1, - ACTIONS(2671), 1, + [24207] = 1, + ACTIONS(2920), 1, sym__emphasis_mark_begin, - [23863] = 1, - ACTIONS(2673), 1, + [24211] = 1, + ACTIONS(2922), 1, sym__strong_mark_begin, - [23867] = 1, - ACTIONS(2675), 1, + [24215] = 1, + ACTIONS(2924), 1, sym__superscript_mark_begin, - [23871] = 1, - ACTIONS(2677), 1, + [24219] = 1, + ACTIONS(2926), 1, sym__subscript_mark_begin, - [23875] = 1, - ACTIONS(2679), 1, + [24223] = 1, + ACTIONS(2928), 1, sym__highlighted_mark_begin, - [23879] = 1, - ACTIONS(2681), 1, + [24227] = 1, + ACTIONS(2930), 1, sym__insert_mark_begin, - [23883] = 1, - ACTIONS(2683), 1, + [24231] = 1, + ACTIONS(2932), 1, sym__delete_mark_begin, - [23887] = 1, - ACTIONS(2685), 1, + [24235] = 1, + ACTIONS(2934), 1, sym__emphasis_mark_begin, - [23891] = 1, - ACTIONS(2687), 1, + [24239] = 1, + ACTIONS(2936), 1, sym__strong_mark_begin, - [23895] = 1, - ACTIONS(2689), 1, + [24243] = 1, + ACTIONS(2938), 1, sym__superscript_mark_begin, - [23899] = 1, - ACTIONS(2691), 1, + [24247] = 1, + ACTIONS(2940), 1, sym__subscript_mark_begin, - [23903] = 1, - ACTIONS(2693), 1, + [24251] = 1, + ACTIONS(2942), 1, sym__highlighted_mark_begin, - [23907] = 1, - ACTIONS(2695), 1, + [24255] = 1, + ACTIONS(2944), 1, sym__insert_mark_begin, - [23911] = 1, - ACTIONS(2697), 1, + [24259] = 1, + ACTIONS(2946), 1, sym__delete_mark_begin, - [23915] = 1, - ACTIONS(2699), 1, + [24263] = 1, + ACTIONS(2948), 1, sym__emphasis_mark_begin, - [23919] = 1, - ACTIONS(2701), 1, + [24267] = 1, + ACTIONS(2950), 1, sym__strong_mark_begin, - [23923] = 1, - ACTIONS(2703), 1, + [24271] = 1, + ACTIONS(2952), 1, sym__superscript_mark_begin, - [23927] = 1, - ACTIONS(2705), 1, + [24275] = 1, + ACTIONS(2954), 1, sym__subscript_mark_begin, - [23931] = 1, - ACTIONS(2707), 1, + [24279] = 1, + ACTIONS(2956), 1, sym__highlighted_mark_begin, - [23935] = 1, - ACTIONS(2709), 1, + [24283] = 1, + ACTIONS(2958), 1, sym__insert_mark_begin, - [23939] = 1, - ACTIONS(2711), 1, + [24287] = 1, + ACTIONS(2960), 1, sym__delete_mark_begin, - [23943] = 1, - ACTIONS(2713), 1, + [24291] = 1, + ACTIONS(2962), 1, sym__emphasis_mark_begin, - [23947] = 1, - ACTIONS(2715), 1, + [24295] = 1, + ACTIONS(2964), 1, sym__strong_mark_begin, - [23951] = 1, - ACTIONS(2717), 1, + [24299] = 1, + ACTIONS(2966), 1, sym__superscript_mark_begin, - [23955] = 1, - ACTIONS(2719), 1, + [24303] = 1, + ACTIONS(2968), 1, sym__subscript_mark_begin, - [23959] = 1, - ACTIONS(2721), 1, + [24307] = 1, + ACTIONS(2970), 1, sym__highlighted_mark_begin, - [23963] = 1, - ACTIONS(2723), 1, + [24311] = 1, + ACTIONS(2972), 1, sym__insert_mark_begin, - [23967] = 1, - ACTIONS(2725), 1, + [24315] = 1, + ACTIONS(2974), 1, sym__delete_mark_begin, - [23971] = 1, - ACTIONS(2727), 1, + [24319] = 1, + ACTIONS(2976), 1, sym__emphasis_mark_begin, - [23975] = 1, - ACTIONS(2729), 1, + [24323] = 1, + ACTIONS(2978), 1, sym__strong_mark_begin, - [23979] = 1, - ACTIONS(2731), 1, + [24327] = 1, + ACTIONS(2980), 1, sym__superscript_mark_begin, - [23983] = 1, - ACTIONS(2733), 1, + [24331] = 1, + ACTIONS(2982), 1, sym__subscript_mark_begin, - [23987] = 1, - ACTIONS(2735), 1, + [24335] = 1, + ACTIONS(2984), 1, sym__highlighted_mark_begin, - [23991] = 1, - ACTIONS(2737), 1, + [24339] = 1, + ACTIONS(2986), 1, sym__insert_mark_begin, - [23995] = 1, - ACTIONS(2739), 1, + [24343] = 1, + ACTIONS(2988), 1, sym__delete_mark_begin, - [23999] = 1, - ACTIONS(2741), 1, + [24347] = 1, + ACTIONS(2990), 1, sym__emphasis_mark_begin, - [24003] = 1, - ACTIONS(2743), 1, + [24351] = 1, + ACTIONS(2992), 1, sym__strong_mark_begin, - [24007] = 1, - ACTIONS(2745), 1, + [24355] = 1, + ACTIONS(2994), 1, sym__superscript_mark_begin, - [24011] = 1, - ACTIONS(2747), 1, + [24359] = 1, + ACTIONS(2996), 1, sym__subscript_mark_begin, - [24015] = 1, - ACTIONS(2749), 1, + [24363] = 1, + ACTIONS(2998), 1, sym__highlighted_mark_begin, - [24019] = 1, - ACTIONS(2751), 1, + [24367] = 1, + ACTIONS(3000), 1, sym__insert_mark_begin, - [24023] = 1, - ACTIONS(2753), 1, + [24371] = 1, + ACTIONS(3002), 1, sym__delete_mark_begin, - [24027] = 1, - ACTIONS(2755), 1, + [24375] = 1, + ACTIONS(3004), 1, sym__emphasis_mark_begin, - [24031] = 1, - ACTIONS(2757), 1, + [24379] = 1, + ACTIONS(3006), 1, sym__strong_mark_begin, - [24035] = 1, - ACTIONS(2759), 1, + [24383] = 1, + ACTIONS(3008), 1, sym__superscript_mark_begin, - [24039] = 1, - ACTIONS(2761), 1, + [24387] = 1, + ACTIONS(3010), 1, sym__subscript_mark_begin, - [24043] = 1, - ACTIONS(2763), 1, + [24391] = 1, + ACTIONS(3012), 1, sym__highlighted_mark_begin, - [24047] = 1, - ACTIONS(2765), 1, + [24395] = 1, + ACTIONS(3014), 1, sym__insert_mark_begin, - [24051] = 1, - ACTIONS(2767), 1, + [24399] = 1, + ACTIONS(3016), 1, sym__delete_mark_begin, - [24055] = 1, - ACTIONS(2769), 1, + [24403] = 1, + ACTIONS(3018), 1, sym__emphasis_mark_begin, - [24059] = 1, - ACTIONS(2771), 1, + [24407] = 1, + ACTIONS(3020), 1, sym__strong_mark_begin, - [24063] = 1, - ACTIONS(2773), 1, + [24411] = 1, + ACTIONS(3022), 1, sym__superscript_mark_begin, - [24067] = 1, - ACTIONS(2775), 1, + [24415] = 1, + ACTIONS(3024), 1, sym__subscript_mark_begin, - [24071] = 1, - ACTIONS(2777), 1, + [24419] = 1, + ACTIONS(3026), 1, sym__highlighted_mark_begin, - [24075] = 1, - ACTIONS(2779), 1, + [24423] = 1, + ACTIONS(3028), 1, sym__insert_mark_begin, - [24079] = 1, - ACTIONS(2781), 1, + [24427] = 1, + ACTIONS(3030), 1, + sym__delete_mark_begin, + [24431] = 1, + ACTIONS(3032), 1, + sym__emphasis_mark_begin, + [24435] = 1, + ACTIONS(3034), 1, + sym__strong_mark_begin, + [24439] = 1, + ACTIONS(3036), 1, + sym__superscript_mark_begin, + [24443] = 1, + ACTIONS(3038), 1, + sym__subscript_mark_begin, + [24447] = 1, + ACTIONS(3040), 1, + sym__highlighted_mark_begin, + [24451] = 1, + ACTIONS(3042), 1, + sym__insert_mark_begin, + [24455] = 1, + ACTIONS(3044), 1, sym__delete_mark_begin, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(131)] = 0, - [SMALL_STATE(132)] = 49, - [SMALL_STATE(133)] = 98, - [SMALL_STATE(134)] = 145, - [SMALL_STATE(135)] = 194, - [SMALL_STATE(136)] = 241, - [SMALL_STATE(137)] = 288, - [SMALL_STATE(138)] = 335, - [SMALL_STATE(139)] = 382, - [SMALL_STATE(140)] = 431, - [SMALL_STATE(141)] = 478, - [SMALL_STATE(142)] = 527, - [SMALL_STATE(143)] = 574, - [SMALL_STATE(144)] = 621, - [SMALL_STATE(145)] = 668, - [SMALL_STATE(146)] = 715, - [SMALL_STATE(147)] = 764, - [SMALL_STATE(148)] = 811, - [SMALL_STATE(149)] = 858, - [SMALL_STATE(150)] = 907, - [SMALL_STATE(151)] = 954, - [SMALL_STATE(152)] = 1001, - [SMALL_STATE(153)] = 1048, - [SMALL_STATE(154)] = 1095, - [SMALL_STATE(155)] = 1142, - [SMALL_STATE(156)] = 1191, - [SMALL_STATE(157)] = 1238, - [SMALL_STATE(158)] = 1285, - [SMALL_STATE(159)] = 1332, - [SMALL_STATE(160)] = 1381, - [SMALL_STATE(161)] = 1430, - [SMALL_STATE(162)] = 1476, - [SMALL_STATE(163)] = 1520, - [SMALL_STATE(164)] = 1564, - [SMALL_STATE(165)] = 1610, - [SMALL_STATE(166)] = 1658, - [SMALL_STATE(167)] = 1704, - [SMALL_STATE(168)] = 1750, - [SMALL_STATE(169)] = 1796, - [SMALL_STATE(170)] = 1840, - [SMALL_STATE(171)] = 1884, - [SMALL_STATE(172)] = 1930, - [SMALL_STATE(173)] = 1974, - [SMALL_STATE(174)] = 2018, - [SMALL_STATE(175)] = 2064, - [SMALL_STATE(176)] = 2108, - [SMALL_STATE(177)] = 2152, - [SMALL_STATE(178)] = 2198, - [SMALL_STATE(179)] = 2242, - [SMALL_STATE(180)] = 2286, - [SMALL_STATE(181)] = 2332, - [SMALL_STATE(182)] = 2376, - [SMALL_STATE(183)] = 2420, - [SMALL_STATE(184)] = 2466, - [SMALL_STATE(185)] = 2510, - [SMALL_STATE(186)] = 2554, - [SMALL_STATE(187)] = 2600, - [SMALL_STATE(188)] = 2646, - [SMALL_STATE(189)] = 2690, - [SMALL_STATE(190)] = 2734, - [SMALL_STATE(191)] = 2780, - [SMALL_STATE(192)] = 2824, - [SMALL_STATE(193)] = 2870, - [SMALL_STATE(194)] = 2914, - [SMALL_STATE(195)] = 2958, - [SMALL_STATE(196)] = 3004, - [SMALL_STATE(197)] = 3048, - [SMALL_STATE(198)] = 3094, - [SMALL_STATE(199)] = 3140, - [SMALL_STATE(200)] = 3184, - [SMALL_STATE(201)] = 3228, - [SMALL_STATE(202)] = 3274, - [SMALL_STATE(203)] = 3318, - [SMALL_STATE(204)] = 3364, - [SMALL_STATE(205)] = 3408, - [SMALL_STATE(206)] = 3454, - [SMALL_STATE(207)] = 3498, - [SMALL_STATE(208)] = 3542, - [SMALL_STATE(209)] = 3588, - [SMALL_STATE(210)] = 3632, - [SMALL_STATE(211)] = 3676, - [SMALL_STATE(212)] = 3722, - [SMALL_STATE(213)] = 3766, - [SMALL_STATE(214)] = 3810, - [SMALL_STATE(215)] = 3851, - [SMALL_STATE(216)] = 3892, - [SMALL_STATE(217)] = 3933, - [SMALL_STATE(218)] = 3974, - [SMALL_STATE(219)] = 4015, - [SMALL_STATE(220)] = 4056, - [SMALL_STATE(221)] = 4097, - [SMALL_STATE(222)] = 4138, - [SMALL_STATE(223)] = 4179, - [SMALL_STATE(224)] = 4220, - [SMALL_STATE(225)] = 4261, - [SMALL_STATE(226)] = 4302, - [SMALL_STATE(227)] = 4343, - [SMALL_STATE(228)] = 4384, - [SMALL_STATE(229)] = 4425, - [SMALL_STATE(230)] = 4466, - [SMALL_STATE(231)] = 4507, - [SMALL_STATE(232)] = 4548, - [SMALL_STATE(233)] = 4589, - [SMALL_STATE(234)] = 4630, - [SMALL_STATE(235)] = 4671, - [SMALL_STATE(236)] = 4712, - [SMALL_STATE(237)] = 4753, - [SMALL_STATE(238)] = 4796, - [SMALL_STATE(239)] = 4837, - [SMALL_STATE(240)] = 4878, - [SMALL_STATE(241)] = 4923, - [SMALL_STATE(242)] = 4964, - [SMALL_STATE(243)] = 5005, - [SMALL_STATE(244)] = 5046, - [SMALL_STATE(245)] = 5087, - [SMALL_STATE(246)] = 5128, - [SMALL_STATE(247)] = 5169, - [SMALL_STATE(248)] = 5210, - [SMALL_STATE(249)] = 5251, - [SMALL_STATE(250)] = 5292, - [SMALL_STATE(251)] = 5333, - [SMALL_STATE(252)] = 5374, - [SMALL_STATE(253)] = 5415, - [SMALL_STATE(254)] = 5456, - [SMALL_STATE(255)] = 5497, - [SMALL_STATE(256)] = 5538, - [SMALL_STATE(257)] = 5579, - [SMALL_STATE(258)] = 5620, - [SMALL_STATE(259)] = 5661, - [SMALL_STATE(260)] = 5702, - [SMALL_STATE(261)] = 5743, - [SMALL_STATE(262)] = 5784, - [SMALL_STATE(263)] = 5825, - [SMALL_STATE(264)] = 5866, - [SMALL_STATE(265)] = 5907, - [SMALL_STATE(266)] = 5948, - [SMALL_STATE(267)] = 5989, - [SMALL_STATE(268)] = 6030, - [SMALL_STATE(269)] = 6071, - [SMALL_STATE(270)] = 6112, - [SMALL_STATE(271)] = 6153, - [SMALL_STATE(272)] = 6194, - [SMALL_STATE(273)] = 6235, - [SMALL_STATE(274)] = 6276, - [SMALL_STATE(275)] = 6321, - [SMALL_STATE(276)] = 6362, - [SMALL_STATE(277)] = 6403, - [SMALL_STATE(278)] = 6446, - [SMALL_STATE(279)] = 6487, - [SMALL_STATE(280)] = 6528, - [SMALL_STATE(281)] = 6573, - [SMALL_STATE(282)] = 6614, - [SMALL_STATE(283)] = 6655, - [SMALL_STATE(284)] = 6696, - [SMALL_STATE(285)] = 6737, - [SMALL_STATE(286)] = 6778, - [SMALL_STATE(287)] = 6819, - [SMALL_STATE(288)] = 6860, - [SMALL_STATE(289)] = 6901, - [SMALL_STATE(290)] = 6942, - [SMALL_STATE(291)] = 6983, - [SMALL_STATE(292)] = 7024, - [SMALL_STATE(293)] = 7065, - [SMALL_STATE(294)] = 7106, - [SMALL_STATE(295)] = 7147, - [SMALL_STATE(296)] = 7188, - [SMALL_STATE(297)] = 7229, - [SMALL_STATE(298)] = 7270, - [SMALL_STATE(299)] = 7311, - [SMALL_STATE(300)] = 7352, - [SMALL_STATE(301)] = 7393, - [SMALL_STATE(302)] = 7434, - [SMALL_STATE(303)] = 7475, - [SMALL_STATE(304)] = 7516, - [SMALL_STATE(305)] = 7557, - [SMALL_STATE(306)] = 7598, - [SMALL_STATE(307)] = 7639, - [SMALL_STATE(308)] = 7680, - [SMALL_STATE(309)] = 7721, - [SMALL_STATE(310)] = 7762, - [SMALL_STATE(311)] = 7803, - [SMALL_STATE(312)] = 7844, - [SMALL_STATE(313)] = 7885, - [SMALL_STATE(314)] = 7926, - [SMALL_STATE(315)] = 7967, - [SMALL_STATE(316)] = 8008, - [SMALL_STATE(317)] = 8049, - [SMALL_STATE(318)] = 8092, - [SMALL_STATE(319)] = 8133, - [SMALL_STATE(320)] = 8174, - [SMALL_STATE(321)] = 8219, - [SMALL_STATE(322)] = 8260, - [SMALL_STATE(323)] = 8301, - [SMALL_STATE(324)] = 8342, - [SMALL_STATE(325)] = 8383, - [SMALL_STATE(326)] = 8424, - [SMALL_STATE(327)] = 8465, - [SMALL_STATE(328)] = 8506, - [SMALL_STATE(329)] = 8547, - [SMALL_STATE(330)] = 8588, - [SMALL_STATE(331)] = 8629, - [SMALL_STATE(332)] = 8670, - [SMALL_STATE(333)] = 8711, - [SMALL_STATE(334)] = 8752, - [SMALL_STATE(335)] = 8793, - [SMALL_STATE(336)] = 8834, - [SMALL_STATE(337)] = 8875, - [SMALL_STATE(338)] = 8916, - [SMALL_STATE(339)] = 8957, - [SMALL_STATE(340)] = 8998, - [SMALL_STATE(341)] = 9039, - [SMALL_STATE(342)] = 9080, - [SMALL_STATE(343)] = 9121, - [SMALL_STATE(344)] = 9162, - [SMALL_STATE(345)] = 9203, - [SMALL_STATE(346)] = 9244, - [SMALL_STATE(347)] = 9285, - [SMALL_STATE(348)] = 9326, - [SMALL_STATE(349)] = 9367, - [SMALL_STATE(350)] = 9408, - [SMALL_STATE(351)] = 9449, - [SMALL_STATE(352)] = 9490, - [SMALL_STATE(353)] = 9531, - [SMALL_STATE(354)] = 9572, - [SMALL_STATE(355)] = 9613, - [SMALL_STATE(356)] = 9654, - [SMALL_STATE(357)] = 9695, - [SMALL_STATE(358)] = 9736, - [SMALL_STATE(359)] = 9777, - [SMALL_STATE(360)] = 9818, - [SMALL_STATE(361)] = 9859, - [SMALL_STATE(362)] = 9900, - [SMALL_STATE(363)] = 9943, - [SMALL_STATE(364)] = 9984, - [SMALL_STATE(365)] = 10025, - [SMALL_STATE(366)] = 10070, - [SMALL_STATE(367)] = 10111, - [SMALL_STATE(368)] = 10152, - [SMALL_STATE(369)] = 10193, - [SMALL_STATE(370)] = 10234, - [SMALL_STATE(371)] = 10275, - [SMALL_STATE(372)] = 10316, - [SMALL_STATE(373)] = 10357, - [SMALL_STATE(374)] = 10398, - [SMALL_STATE(375)] = 10439, - [SMALL_STATE(376)] = 10480, - [SMALL_STATE(377)] = 10521, - [SMALL_STATE(378)] = 10562, - [SMALL_STATE(379)] = 10603, - [SMALL_STATE(380)] = 10644, - [SMALL_STATE(381)] = 10685, - [SMALL_STATE(382)] = 10726, - [SMALL_STATE(383)] = 10767, - [SMALL_STATE(384)] = 10808, - [SMALL_STATE(385)] = 10849, - [SMALL_STATE(386)] = 10890, - [SMALL_STATE(387)] = 10931, - [SMALL_STATE(388)] = 10972, - [SMALL_STATE(389)] = 11013, - [SMALL_STATE(390)] = 11054, - [SMALL_STATE(391)] = 11095, - [SMALL_STATE(392)] = 11136, - [SMALL_STATE(393)] = 11177, - [SMALL_STATE(394)] = 11218, - [SMALL_STATE(395)] = 11259, - [SMALL_STATE(396)] = 11300, - [SMALL_STATE(397)] = 11341, - [SMALL_STATE(398)] = 11382, - [SMALL_STATE(399)] = 11423, - [SMALL_STATE(400)] = 11464, - [SMALL_STATE(401)] = 11505, - [SMALL_STATE(402)] = 11546, - [SMALL_STATE(403)] = 11587, - [SMALL_STATE(404)] = 11630, - [SMALL_STATE(405)] = 11671, - [SMALL_STATE(406)] = 11712, - [SMALL_STATE(407)] = 11753, - [SMALL_STATE(408)] = 11796, - [SMALL_STATE(409)] = 11837, - [SMALL_STATE(410)] = 11878, - [SMALL_STATE(411)] = 11923, - [SMALL_STATE(412)] = 11964, - [SMALL_STATE(413)] = 12005, - [SMALL_STATE(414)] = 12046, - [SMALL_STATE(415)] = 12087, - [SMALL_STATE(416)] = 12128, - [SMALL_STATE(417)] = 12169, - [SMALL_STATE(418)] = 12210, - [SMALL_STATE(419)] = 12251, - [SMALL_STATE(420)] = 12292, - [SMALL_STATE(421)] = 12333, - [SMALL_STATE(422)] = 12374, - [SMALL_STATE(423)] = 12415, - [SMALL_STATE(424)] = 12456, - [SMALL_STATE(425)] = 12497, - [SMALL_STATE(426)] = 12538, - [SMALL_STATE(427)] = 12579, - [SMALL_STATE(428)] = 12620, - [SMALL_STATE(429)] = 12661, - [SMALL_STATE(430)] = 12702, - [SMALL_STATE(431)] = 12743, - [SMALL_STATE(432)] = 12784, - [SMALL_STATE(433)] = 12825, - [SMALL_STATE(434)] = 12866, - [SMALL_STATE(435)] = 12907, - [SMALL_STATE(436)] = 12948, - [SMALL_STATE(437)] = 12989, - [SMALL_STATE(438)] = 13030, - [SMALL_STATE(439)] = 13071, - [SMALL_STATE(440)] = 13112, - [SMALL_STATE(441)] = 13153, - [SMALL_STATE(442)] = 13194, - [SMALL_STATE(443)] = 13235, - [SMALL_STATE(444)] = 13276, - [SMALL_STATE(445)] = 13317, - [SMALL_STATE(446)] = 13358, - [SMALL_STATE(447)] = 13401, - [SMALL_STATE(448)] = 13442, - [SMALL_STATE(449)] = 13483, - [SMALL_STATE(450)] = 13524, - [SMALL_STATE(451)] = 13565, - [SMALL_STATE(452)] = 13606, - [SMALL_STATE(453)] = 13649, - [SMALL_STATE(454)] = 13690, - [SMALL_STATE(455)] = 13731, - [SMALL_STATE(456)] = 13776, - [SMALL_STATE(457)] = 13817, - [SMALL_STATE(458)] = 13858, - [SMALL_STATE(459)] = 13899, - [SMALL_STATE(460)] = 13940, - [SMALL_STATE(461)] = 13981, - [SMALL_STATE(462)] = 14022, - [SMALL_STATE(463)] = 14063, - [SMALL_STATE(464)] = 14104, - [SMALL_STATE(465)] = 14145, - [SMALL_STATE(466)] = 14186, - [SMALL_STATE(467)] = 14227, - [SMALL_STATE(468)] = 14268, - [SMALL_STATE(469)] = 14309, - [SMALL_STATE(470)] = 14350, - [SMALL_STATE(471)] = 14391, - [SMALL_STATE(472)] = 14432, - [SMALL_STATE(473)] = 14473, - [SMALL_STATE(474)] = 14514, - [SMALL_STATE(475)] = 14555, - [SMALL_STATE(476)] = 14600, - [SMALL_STATE(477)] = 14641, - [SMALL_STATE(478)] = 14682, - [SMALL_STATE(479)] = 14723, - [SMALL_STATE(480)] = 14764, - [SMALL_STATE(481)] = 14805, - [SMALL_STATE(482)] = 14846, - [SMALL_STATE(483)] = 14887, - [SMALL_STATE(484)] = 14928, - [SMALL_STATE(485)] = 14969, - [SMALL_STATE(486)] = 15010, - [SMALL_STATE(487)] = 15051, - [SMALL_STATE(488)] = 15092, - [SMALL_STATE(489)] = 15133, - [SMALL_STATE(490)] = 15174, - [SMALL_STATE(491)] = 15215, - [SMALL_STATE(492)] = 15256, - [SMALL_STATE(493)] = 15297, - [SMALL_STATE(494)] = 15338, - [SMALL_STATE(495)] = 15379, - [SMALL_STATE(496)] = 15422, - [SMALL_STATE(497)] = 15465, - [SMALL_STATE(498)] = 15506, - [SMALL_STATE(499)] = 15547, - [SMALL_STATE(500)] = 15588, - [SMALL_STATE(501)] = 15629, - [SMALL_STATE(502)] = 15670, - [SMALL_STATE(503)] = 15711, - [SMALL_STATE(504)] = 15752, - [SMALL_STATE(505)] = 15793, - [SMALL_STATE(506)] = 15834, - [SMALL_STATE(507)] = 15875, - [SMALL_STATE(508)] = 15916, - [SMALL_STATE(509)] = 15957, - [SMALL_STATE(510)] = 15998, - [SMALL_STATE(511)] = 16039, - [SMALL_STATE(512)] = 16080, - [SMALL_STATE(513)] = 16121, - [SMALL_STATE(514)] = 16166, - [SMALL_STATE(515)] = 16207, - [SMALL_STATE(516)] = 16248, - [SMALL_STATE(517)] = 16289, - [SMALL_STATE(518)] = 16330, - [SMALL_STATE(519)] = 16371, - [SMALL_STATE(520)] = 16412, - [SMALL_STATE(521)] = 16453, - [SMALL_STATE(522)] = 16494, - [SMALL_STATE(523)] = 16535, - [SMALL_STATE(524)] = 16576, - [SMALL_STATE(525)] = 16617, - [SMALL_STATE(526)] = 16658, - [SMALL_STATE(527)] = 16699, - [SMALL_STATE(528)] = 16740, - [SMALL_STATE(529)] = 16781, - [SMALL_STATE(530)] = 16822, - [SMALL_STATE(531)] = 16863, - [SMALL_STATE(532)] = 16906, - [SMALL_STATE(533)] = 16949, - [SMALL_STATE(534)] = 16994, - [SMALL_STATE(535)] = 17037, - [SMALL_STATE(536)] = 17078, - [SMALL_STATE(537)] = 17119, - [SMALL_STATE(538)] = 17159, - [SMALL_STATE(539)] = 17199, - [SMALL_STATE(540)] = 17239, - [SMALL_STATE(541)] = 17279, - [SMALL_STATE(542)] = 17319, - [SMALL_STATE(543)] = 17359, - [SMALL_STATE(544)] = 17399, - [SMALL_STATE(545)] = 17439, - [SMALL_STATE(546)] = 17479, - [SMALL_STATE(547)] = 17519, - [SMALL_STATE(548)] = 17559, - [SMALL_STATE(549)] = 17599, - [SMALL_STATE(550)] = 17643, - [SMALL_STATE(551)] = 17683, - [SMALL_STATE(552)] = 17723, - [SMALL_STATE(553)] = 17763, - [SMALL_STATE(554)] = 17803, - [SMALL_STATE(555)] = 17843, - [SMALL_STATE(556)] = 17883, - [SMALL_STATE(557)] = 17923, - [SMALL_STATE(558)] = 17963, - [SMALL_STATE(559)] = 18003, - [SMALL_STATE(560)] = 18043, - [SMALL_STATE(561)] = 18083, - [SMALL_STATE(562)] = 18123, - [SMALL_STATE(563)] = 18163, - [SMALL_STATE(564)] = 18203, - [SMALL_STATE(565)] = 18243, - [SMALL_STATE(566)] = 18283, - [SMALL_STATE(567)] = 18323, - [SMALL_STATE(568)] = 18363, - [SMALL_STATE(569)] = 18403, - [SMALL_STATE(570)] = 18443, - [SMALL_STATE(571)] = 18483, - [SMALL_STATE(572)] = 18523, - [SMALL_STATE(573)] = 18565, - [SMALL_STATE(574)] = 18605, - [SMALL_STATE(575)] = 18645, - [SMALL_STATE(576)] = 18685, - [SMALL_STATE(577)] = 18725, - [SMALL_STATE(578)] = 18765, - [SMALL_STATE(579)] = 18805, - [SMALL_STATE(580)] = 18845, - [SMALL_STATE(581)] = 18885, - [SMALL_STATE(582)] = 18925, - [SMALL_STATE(583)] = 18965, - [SMALL_STATE(584)] = 19005, - [SMALL_STATE(585)] = 19045, - [SMALL_STATE(586)] = 19085, - [SMALL_STATE(587)] = 19125, - [SMALL_STATE(588)] = 19165, - [SMALL_STATE(589)] = 19205, - [SMALL_STATE(590)] = 19249, - [SMALL_STATE(591)] = 19289, - [SMALL_STATE(592)] = 19329, - [SMALL_STATE(593)] = 19369, - [SMALL_STATE(594)] = 19409, - [SMALL_STATE(595)] = 19449, - [SMALL_STATE(596)] = 19491, - [SMALL_STATE(597)] = 19531, - [SMALL_STATE(598)] = 19573, - [SMALL_STATE(599)] = 19613, - [SMALL_STATE(600)] = 19653, - [SMALL_STATE(601)] = 19693, - [SMALL_STATE(602)] = 19735, - [SMALL_STATE(603)] = 19779, - [SMALL_STATE(604)] = 19821, - [SMALL_STATE(605)] = 19861, - [SMALL_STATE(606)] = 19900, - [SMALL_STATE(607)] = 19939, - [SMALL_STATE(608)] = 19978, - [SMALL_STATE(609)] = 20009, - [SMALL_STATE(610)] = 20040, - [SMALL_STATE(611)] = 20071, - [SMALL_STATE(612)] = 20102, - [SMALL_STATE(613)] = 20133, - [SMALL_STATE(614)] = 20164, - [SMALL_STATE(615)] = 20195, - [SMALL_STATE(616)] = 20226, - [SMALL_STATE(617)] = 20257, - [SMALL_STATE(618)] = 20288, - [SMALL_STATE(619)] = 20319, - [SMALL_STATE(620)] = 20350, - [SMALL_STATE(621)] = 20381, - [SMALL_STATE(622)] = 20412, - [SMALL_STATE(623)] = 20443, - [SMALL_STATE(624)] = 20474, - [SMALL_STATE(625)] = 20505, - [SMALL_STATE(626)] = 20536, - [SMALL_STATE(627)] = 20567, - [SMALL_STATE(628)] = 20598, - [SMALL_STATE(629)] = 20629, - [SMALL_STATE(630)] = 20660, - [SMALL_STATE(631)] = 20691, - [SMALL_STATE(632)] = 20722, - [SMALL_STATE(633)] = 20753, - [SMALL_STATE(634)] = 20784, - [SMALL_STATE(635)] = 20815, - [SMALL_STATE(636)] = 20846, - [SMALL_STATE(637)] = 20877, - [SMALL_STATE(638)] = 20908, - [SMALL_STATE(639)] = 20939, - [SMALL_STATE(640)] = 20970, - [SMALL_STATE(641)] = 21001, - [SMALL_STATE(642)] = 21032, - [SMALL_STATE(643)] = 21063, - [SMALL_STATE(644)] = 21094, - [SMALL_STATE(645)] = 21125, - [SMALL_STATE(646)] = 21156, - [SMALL_STATE(647)] = 21187, - [SMALL_STATE(648)] = 21218, - [SMALL_STATE(649)] = 21249, - [SMALL_STATE(650)] = 21280, - [SMALL_STATE(651)] = 21311, - [SMALL_STATE(652)] = 21342, - [SMALL_STATE(653)] = 21373, - [SMALL_STATE(654)] = 21383, - [SMALL_STATE(655)] = 21393, - [SMALL_STATE(656)] = 21403, - [SMALL_STATE(657)] = 21413, - [SMALL_STATE(658)] = 21423, - [SMALL_STATE(659)] = 21433, - [SMALL_STATE(660)] = 21443, - [SMALL_STATE(661)] = 21453, - [SMALL_STATE(662)] = 21463, - [SMALL_STATE(663)] = 21475, - [SMALL_STATE(664)] = 21491, - [SMALL_STATE(665)] = 21507, - [SMALL_STATE(666)] = 21521, - [SMALL_STATE(667)] = 21537, - [SMALL_STATE(668)] = 21551, - [SMALL_STATE(669)] = 21567, - [SMALL_STATE(670)] = 21581, - [SMALL_STATE(671)] = 21595, - [SMALL_STATE(672)] = 21611, - [SMALL_STATE(673)] = 21627, - [SMALL_STATE(674)] = 21643, - [SMALL_STATE(675)] = 21659, - [SMALL_STATE(676)] = 21675, - [SMALL_STATE(677)] = 21691, - [SMALL_STATE(678)] = 21705, - [SMALL_STATE(679)] = 21719, - [SMALL_STATE(680)] = 21735, - [SMALL_STATE(681)] = 21751, - [SMALL_STATE(682)] = 21767, - [SMALL_STATE(683)] = 21783, - [SMALL_STATE(684)] = 21799, - [SMALL_STATE(685)] = 21815, - [SMALL_STATE(686)] = 21829, - [SMALL_STATE(687)] = 21845, - [SMALL_STATE(688)] = 21861, - [SMALL_STATE(689)] = 21873, - [SMALL_STATE(690)] = 21885, - [SMALL_STATE(691)] = 21899, - [SMALL_STATE(692)] = 21913, - [SMALL_STATE(693)] = 21929, - [SMALL_STATE(694)] = 21945, - [SMALL_STATE(695)] = 21959, - [SMALL_STATE(696)] = 21973, - [SMALL_STATE(697)] = 21989, - [SMALL_STATE(698)] = 22005, - [SMALL_STATE(699)] = 22012, - [SMALL_STATE(700)] = 22020, - [SMALL_STATE(701)] = 22030, - [SMALL_STATE(702)] = 22038, - [SMALL_STATE(703)] = 22045, - [SMALL_STATE(704)] = 22052, - [SMALL_STATE(705)] = 22059, - [SMALL_STATE(706)] = 22066, - [SMALL_STATE(707)] = 22073, - [SMALL_STATE(708)] = 22080, - [SMALL_STATE(709)] = 22087, - [SMALL_STATE(710)] = 22094, - [SMALL_STATE(711)] = 22101, - [SMALL_STATE(712)] = 22108, - [SMALL_STATE(713)] = 22115, - [SMALL_STATE(714)] = 22122, - [SMALL_STATE(715)] = 22129, - [SMALL_STATE(716)] = 22136, - [SMALL_STATE(717)] = 22143, - [SMALL_STATE(718)] = 22150, - [SMALL_STATE(719)] = 22157, - [SMALL_STATE(720)] = 22164, - [SMALL_STATE(721)] = 22171, - [SMALL_STATE(722)] = 22178, - [SMALL_STATE(723)] = 22185, - [SMALL_STATE(724)] = 22192, - [SMALL_STATE(725)] = 22199, - [SMALL_STATE(726)] = 22206, - [SMALL_STATE(727)] = 22213, - [SMALL_STATE(728)] = 22220, - [SMALL_STATE(729)] = 22227, - [SMALL_STATE(730)] = 22234, - [SMALL_STATE(731)] = 22241, - [SMALL_STATE(732)] = 22248, - [SMALL_STATE(733)] = 22255, - [SMALL_STATE(734)] = 22262, - [SMALL_STATE(735)] = 22269, - [SMALL_STATE(736)] = 22276, - [SMALL_STATE(737)] = 22283, - [SMALL_STATE(738)] = 22290, - [SMALL_STATE(739)] = 22297, - [SMALL_STATE(740)] = 22304, - [SMALL_STATE(741)] = 22311, - [SMALL_STATE(742)] = 22318, - [SMALL_STATE(743)] = 22325, - [SMALL_STATE(744)] = 22332, - [SMALL_STATE(745)] = 22339, - [SMALL_STATE(746)] = 22346, - [SMALL_STATE(747)] = 22353, - [SMALL_STATE(748)] = 22360, - [SMALL_STATE(749)] = 22367, - [SMALL_STATE(750)] = 22374, - [SMALL_STATE(751)] = 22381, - [SMALL_STATE(752)] = 22388, - [SMALL_STATE(753)] = 22395, - [SMALL_STATE(754)] = 22402, - [SMALL_STATE(755)] = 22409, - [SMALL_STATE(756)] = 22416, - [SMALL_STATE(757)] = 22423, - [SMALL_STATE(758)] = 22430, - [SMALL_STATE(759)] = 22437, - [SMALL_STATE(760)] = 22444, - [SMALL_STATE(761)] = 22451, - [SMALL_STATE(762)] = 22458, - [SMALL_STATE(763)] = 22465, - [SMALL_STATE(764)] = 22472, - [SMALL_STATE(765)] = 22479, - [SMALL_STATE(766)] = 22486, - [SMALL_STATE(767)] = 22493, - [SMALL_STATE(768)] = 22500, - [SMALL_STATE(769)] = 22507, - [SMALL_STATE(770)] = 22514, - [SMALL_STATE(771)] = 22521, - [SMALL_STATE(772)] = 22528, - [SMALL_STATE(773)] = 22535, - [SMALL_STATE(774)] = 22542, - [SMALL_STATE(775)] = 22549, - [SMALL_STATE(776)] = 22556, - [SMALL_STATE(777)] = 22563, - [SMALL_STATE(778)] = 22570, - [SMALL_STATE(779)] = 22577, - [SMALL_STATE(780)] = 22584, - [SMALL_STATE(781)] = 22591, - [SMALL_STATE(782)] = 22598, - [SMALL_STATE(783)] = 22605, - [SMALL_STATE(784)] = 22612, - [SMALL_STATE(785)] = 22619, - [SMALL_STATE(786)] = 22626, - [SMALL_STATE(787)] = 22633, - [SMALL_STATE(788)] = 22640, - [SMALL_STATE(789)] = 22647, - [SMALL_STATE(790)] = 22654, - [SMALL_STATE(791)] = 22661, - [SMALL_STATE(792)] = 22668, - [SMALL_STATE(793)] = 22675, - [SMALL_STATE(794)] = 22682, - [SMALL_STATE(795)] = 22689, - [SMALL_STATE(796)] = 22696, - [SMALL_STATE(797)] = 22703, - [SMALL_STATE(798)] = 22710, - [SMALL_STATE(799)] = 22717, - [SMALL_STATE(800)] = 22724, - [SMALL_STATE(801)] = 22731, - [SMALL_STATE(802)] = 22738, - [SMALL_STATE(803)] = 22745, - [SMALL_STATE(804)] = 22752, - [SMALL_STATE(805)] = 22759, - [SMALL_STATE(806)] = 22766, - [SMALL_STATE(807)] = 22773, - [SMALL_STATE(808)] = 22780, - [SMALL_STATE(809)] = 22787, - [SMALL_STATE(810)] = 22794, - [SMALL_STATE(811)] = 22801, - [SMALL_STATE(812)] = 22808, - [SMALL_STATE(813)] = 22815, - [SMALL_STATE(814)] = 22819, - [SMALL_STATE(815)] = 22823, - [SMALL_STATE(816)] = 22827, - [SMALL_STATE(817)] = 22831, - [SMALL_STATE(818)] = 22835, - [SMALL_STATE(819)] = 22839, - [SMALL_STATE(820)] = 22843, - [SMALL_STATE(821)] = 22847, - [SMALL_STATE(822)] = 22851, - [SMALL_STATE(823)] = 22855, - [SMALL_STATE(824)] = 22859, - [SMALL_STATE(825)] = 22863, - [SMALL_STATE(826)] = 22867, - [SMALL_STATE(827)] = 22871, - [SMALL_STATE(828)] = 22875, - [SMALL_STATE(829)] = 22879, - [SMALL_STATE(830)] = 22883, - [SMALL_STATE(831)] = 22887, - [SMALL_STATE(832)] = 22891, - [SMALL_STATE(833)] = 22895, - [SMALL_STATE(834)] = 22899, - [SMALL_STATE(835)] = 22903, - [SMALL_STATE(836)] = 22907, - [SMALL_STATE(837)] = 22911, - [SMALL_STATE(838)] = 22915, - [SMALL_STATE(839)] = 22919, - [SMALL_STATE(840)] = 22923, - [SMALL_STATE(841)] = 22927, - [SMALL_STATE(842)] = 22931, - [SMALL_STATE(843)] = 22935, - [SMALL_STATE(844)] = 22939, - [SMALL_STATE(845)] = 22943, - [SMALL_STATE(846)] = 22947, - [SMALL_STATE(847)] = 22951, - [SMALL_STATE(848)] = 22955, - [SMALL_STATE(849)] = 22959, - [SMALL_STATE(850)] = 22963, - [SMALL_STATE(851)] = 22967, - [SMALL_STATE(852)] = 22971, - [SMALL_STATE(853)] = 22975, - [SMALL_STATE(854)] = 22979, - [SMALL_STATE(855)] = 22983, - [SMALL_STATE(856)] = 22987, - [SMALL_STATE(857)] = 22991, - [SMALL_STATE(858)] = 22995, - [SMALL_STATE(859)] = 22999, - [SMALL_STATE(860)] = 23003, - [SMALL_STATE(861)] = 23007, - [SMALL_STATE(862)] = 23011, - [SMALL_STATE(863)] = 23015, - [SMALL_STATE(864)] = 23019, - [SMALL_STATE(865)] = 23023, - [SMALL_STATE(866)] = 23027, - [SMALL_STATE(867)] = 23031, - [SMALL_STATE(868)] = 23035, - [SMALL_STATE(869)] = 23039, - [SMALL_STATE(870)] = 23043, - [SMALL_STATE(871)] = 23047, - [SMALL_STATE(872)] = 23051, - [SMALL_STATE(873)] = 23055, - [SMALL_STATE(874)] = 23059, - [SMALL_STATE(875)] = 23063, - [SMALL_STATE(876)] = 23067, - [SMALL_STATE(877)] = 23071, - [SMALL_STATE(878)] = 23075, - [SMALL_STATE(879)] = 23079, - [SMALL_STATE(880)] = 23083, - [SMALL_STATE(881)] = 23087, - [SMALL_STATE(882)] = 23091, - [SMALL_STATE(883)] = 23095, - [SMALL_STATE(884)] = 23099, - [SMALL_STATE(885)] = 23103, - [SMALL_STATE(886)] = 23107, - [SMALL_STATE(887)] = 23111, - [SMALL_STATE(888)] = 23115, - [SMALL_STATE(889)] = 23119, - [SMALL_STATE(890)] = 23123, - [SMALL_STATE(891)] = 23127, - [SMALL_STATE(892)] = 23131, - [SMALL_STATE(893)] = 23135, - [SMALL_STATE(894)] = 23139, - [SMALL_STATE(895)] = 23143, - [SMALL_STATE(896)] = 23147, - [SMALL_STATE(897)] = 23151, - [SMALL_STATE(898)] = 23155, - [SMALL_STATE(899)] = 23159, - [SMALL_STATE(900)] = 23163, - [SMALL_STATE(901)] = 23167, - [SMALL_STATE(902)] = 23171, - [SMALL_STATE(903)] = 23175, - [SMALL_STATE(904)] = 23179, - [SMALL_STATE(905)] = 23183, - [SMALL_STATE(906)] = 23187, - [SMALL_STATE(907)] = 23191, - [SMALL_STATE(908)] = 23195, - [SMALL_STATE(909)] = 23199, - [SMALL_STATE(910)] = 23203, - [SMALL_STATE(911)] = 23207, - [SMALL_STATE(912)] = 23211, - [SMALL_STATE(913)] = 23215, - [SMALL_STATE(914)] = 23219, - [SMALL_STATE(915)] = 23223, - [SMALL_STATE(916)] = 23227, - [SMALL_STATE(917)] = 23231, - [SMALL_STATE(918)] = 23235, - [SMALL_STATE(919)] = 23239, - [SMALL_STATE(920)] = 23243, - [SMALL_STATE(921)] = 23247, - [SMALL_STATE(922)] = 23251, - [SMALL_STATE(923)] = 23255, - [SMALL_STATE(924)] = 23259, - [SMALL_STATE(925)] = 23263, - [SMALL_STATE(926)] = 23267, - [SMALL_STATE(927)] = 23271, - [SMALL_STATE(928)] = 23275, - [SMALL_STATE(929)] = 23279, - [SMALL_STATE(930)] = 23283, - [SMALL_STATE(931)] = 23287, - [SMALL_STATE(932)] = 23291, - [SMALL_STATE(933)] = 23295, - [SMALL_STATE(934)] = 23299, - [SMALL_STATE(935)] = 23303, - [SMALL_STATE(936)] = 23307, - [SMALL_STATE(937)] = 23311, - [SMALL_STATE(938)] = 23315, - [SMALL_STATE(939)] = 23319, - [SMALL_STATE(940)] = 23323, - [SMALL_STATE(941)] = 23327, - [SMALL_STATE(942)] = 23331, - [SMALL_STATE(943)] = 23335, - [SMALL_STATE(944)] = 23339, - [SMALL_STATE(945)] = 23343, - [SMALL_STATE(946)] = 23347, - [SMALL_STATE(947)] = 23351, - [SMALL_STATE(948)] = 23355, - [SMALL_STATE(949)] = 23359, - [SMALL_STATE(950)] = 23363, - [SMALL_STATE(951)] = 23367, - [SMALL_STATE(952)] = 23371, - [SMALL_STATE(953)] = 23375, - [SMALL_STATE(954)] = 23379, - [SMALL_STATE(955)] = 23383, - [SMALL_STATE(956)] = 23387, - [SMALL_STATE(957)] = 23391, - [SMALL_STATE(958)] = 23395, - [SMALL_STATE(959)] = 23399, - [SMALL_STATE(960)] = 23403, - [SMALL_STATE(961)] = 23407, - [SMALL_STATE(962)] = 23411, - [SMALL_STATE(963)] = 23415, - [SMALL_STATE(964)] = 23419, - [SMALL_STATE(965)] = 23423, - [SMALL_STATE(966)] = 23427, - [SMALL_STATE(967)] = 23431, - [SMALL_STATE(968)] = 23435, - [SMALL_STATE(969)] = 23439, - [SMALL_STATE(970)] = 23443, - [SMALL_STATE(971)] = 23447, - [SMALL_STATE(972)] = 23451, - [SMALL_STATE(973)] = 23455, - [SMALL_STATE(974)] = 23459, - [SMALL_STATE(975)] = 23463, - [SMALL_STATE(976)] = 23467, - [SMALL_STATE(977)] = 23471, - [SMALL_STATE(978)] = 23475, - [SMALL_STATE(979)] = 23479, - [SMALL_STATE(980)] = 23483, - [SMALL_STATE(981)] = 23487, - [SMALL_STATE(982)] = 23491, - [SMALL_STATE(983)] = 23495, - [SMALL_STATE(984)] = 23499, - [SMALL_STATE(985)] = 23503, - [SMALL_STATE(986)] = 23507, - [SMALL_STATE(987)] = 23511, - [SMALL_STATE(988)] = 23515, - [SMALL_STATE(989)] = 23519, - [SMALL_STATE(990)] = 23523, - [SMALL_STATE(991)] = 23527, - [SMALL_STATE(992)] = 23531, - [SMALL_STATE(993)] = 23535, - [SMALL_STATE(994)] = 23539, - [SMALL_STATE(995)] = 23543, - [SMALL_STATE(996)] = 23547, - [SMALL_STATE(997)] = 23551, - [SMALL_STATE(998)] = 23555, - [SMALL_STATE(999)] = 23559, - [SMALL_STATE(1000)] = 23563, - [SMALL_STATE(1001)] = 23567, - [SMALL_STATE(1002)] = 23571, - [SMALL_STATE(1003)] = 23575, - [SMALL_STATE(1004)] = 23579, - [SMALL_STATE(1005)] = 23583, - [SMALL_STATE(1006)] = 23587, - [SMALL_STATE(1007)] = 23591, - [SMALL_STATE(1008)] = 23595, - [SMALL_STATE(1009)] = 23599, - [SMALL_STATE(1010)] = 23603, - [SMALL_STATE(1011)] = 23607, - [SMALL_STATE(1012)] = 23611, - [SMALL_STATE(1013)] = 23615, - [SMALL_STATE(1014)] = 23619, - [SMALL_STATE(1015)] = 23623, - [SMALL_STATE(1016)] = 23627, - [SMALL_STATE(1017)] = 23631, - [SMALL_STATE(1018)] = 23635, - [SMALL_STATE(1019)] = 23639, - [SMALL_STATE(1020)] = 23643, - [SMALL_STATE(1021)] = 23647, - [SMALL_STATE(1022)] = 23651, - [SMALL_STATE(1023)] = 23655, - [SMALL_STATE(1024)] = 23659, - [SMALL_STATE(1025)] = 23663, - [SMALL_STATE(1026)] = 23667, - [SMALL_STATE(1027)] = 23671, - [SMALL_STATE(1028)] = 23675, - [SMALL_STATE(1029)] = 23679, - [SMALL_STATE(1030)] = 23683, - [SMALL_STATE(1031)] = 23687, - [SMALL_STATE(1032)] = 23691, - [SMALL_STATE(1033)] = 23695, - [SMALL_STATE(1034)] = 23699, - [SMALL_STATE(1035)] = 23703, - [SMALL_STATE(1036)] = 23707, - [SMALL_STATE(1037)] = 23711, - [SMALL_STATE(1038)] = 23715, - [SMALL_STATE(1039)] = 23719, - [SMALL_STATE(1040)] = 23723, - [SMALL_STATE(1041)] = 23727, - [SMALL_STATE(1042)] = 23731, - [SMALL_STATE(1043)] = 23735, - [SMALL_STATE(1044)] = 23739, - [SMALL_STATE(1045)] = 23743, - [SMALL_STATE(1046)] = 23747, - [SMALL_STATE(1047)] = 23751, - [SMALL_STATE(1048)] = 23755, - [SMALL_STATE(1049)] = 23759, - [SMALL_STATE(1050)] = 23763, - [SMALL_STATE(1051)] = 23767, - [SMALL_STATE(1052)] = 23771, - [SMALL_STATE(1053)] = 23775, - [SMALL_STATE(1054)] = 23779, - [SMALL_STATE(1055)] = 23783, - [SMALL_STATE(1056)] = 23787, - [SMALL_STATE(1057)] = 23791, - [SMALL_STATE(1058)] = 23795, - [SMALL_STATE(1059)] = 23799, - [SMALL_STATE(1060)] = 23803, - [SMALL_STATE(1061)] = 23807, - [SMALL_STATE(1062)] = 23811, - [SMALL_STATE(1063)] = 23815, - [SMALL_STATE(1064)] = 23819, - [SMALL_STATE(1065)] = 23823, - [SMALL_STATE(1066)] = 23827, - [SMALL_STATE(1067)] = 23831, - [SMALL_STATE(1068)] = 23835, - [SMALL_STATE(1069)] = 23839, - [SMALL_STATE(1070)] = 23843, - [SMALL_STATE(1071)] = 23847, - [SMALL_STATE(1072)] = 23851, - [SMALL_STATE(1073)] = 23855, - [SMALL_STATE(1074)] = 23859, - [SMALL_STATE(1075)] = 23863, - [SMALL_STATE(1076)] = 23867, - [SMALL_STATE(1077)] = 23871, - [SMALL_STATE(1078)] = 23875, - [SMALL_STATE(1079)] = 23879, - [SMALL_STATE(1080)] = 23883, - [SMALL_STATE(1081)] = 23887, - [SMALL_STATE(1082)] = 23891, - [SMALL_STATE(1083)] = 23895, - [SMALL_STATE(1084)] = 23899, - [SMALL_STATE(1085)] = 23903, - [SMALL_STATE(1086)] = 23907, - [SMALL_STATE(1087)] = 23911, - [SMALL_STATE(1088)] = 23915, - [SMALL_STATE(1089)] = 23919, - [SMALL_STATE(1090)] = 23923, - [SMALL_STATE(1091)] = 23927, - [SMALL_STATE(1092)] = 23931, - [SMALL_STATE(1093)] = 23935, - [SMALL_STATE(1094)] = 23939, - [SMALL_STATE(1095)] = 23943, - [SMALL_STATE(1096)] = 23947, - [SMALL_STATE(1097)] = 23951, - [SMALL_STATE(1098)] = 23955, - [SMALL_STATE(1099)] = 23959, - [SMALL_STATE(1100)] = 23963, - [SMALL_STATE(1101)] = 23967, - [SMALL_STATE(1102)] = 23971, - [SMALL_STATE(1103)] = 23975, - [SMALL_STATE(1104)] = 23979, - [SMALL_STATE(1105)] = 23983, - [SMALL_STATE(1106)] = 23987, - [SMALL_STATE(1107)] = 23991, - [SMALL_STATE(1108)] = 23995, - [SMALL_STATE(1109)] = 23999, - [SMALL_STATE(1110)] = 24003, - [SMALL_STATE(1111)] = 24007, - [SMALL_STATE(1112)] = 24011, - [SMALL_STATE(1113)] = 24015, - [SMALL_STATE(1114)] = 24019, - [SMALL_STATE(1115)] = 24023, - [SMALL_STATE(1116)] = 24027, - [SMALL_STATE(1117)] = 24031, - [SMALL_STATE(1118)] = 24035, - [SMALL_STATE(1119)] = 24039, - [SMALL_STATE(1120)] = 24043, - [SMALL_STATE(1121)] = 24047, - [SMALL_STATE(1122)] = 24051, - [SMALL_STATE(1123)] = 24055, - [SMALL_STATE(1124)] = 24059, - [SMALL_STATE(1125)] = 24063, - [SMALL_STATE(1126)] = 24067, - [SMALL_STATE(1127)] = 24071, - [SMALL_STATE(1128)] = 24075, - [SMALL_STATE(1129)] = 24079, + [SMALL_STATE(121)] = 0, + [SMALL_STATE(122)] = 52, + [SMALL_STATE(123)] = 104, + [SMALL_STATE(124)] = 156, + [SMALL_STATE(125)] = 208, + [SMALL_STATE(126)] = 260, + [SMALL_STATE(127)] = 312, + [SMALL_STATE(128)] = 364, + [SMALL_STATE(129)] = 416, + [SMALL_STATE(130)] = 468, + [SMALL_STATE(131)] = 520, + [SMALL_STATE(132)] = 572, + [SMALL_STATE(133)] = 623, + [SMALL_STATE(134)] = 672, + [SMALL_STATE(135)] = 721, + [SMALL_STATE(136)] = 770, + [SMALL_STATE(137)] = 819, + [SMALL_STATE(138)] = 868, + [SMALL_STATE(139)] = 917, + [SMALL_STATE(140)] = 966, + [SMALL_STATE(141)] = 1015, + [SMALL_STATE(142)] = 1064, + [SMALL_STATE(143)] = 1113, + [SMALL_STATE(144)] = 1162, + [SMALL_STATE(145)] = 1208, + [SMALL_STATE(146)] = 1256, + [SMALL_STATE(147)] = 1302, + [SMALL_STATE(148)] = 1348, + [SMALL_STATE(149)] = 1394, + [SMALL_STATE(150)] = 1440, + [SMALL_STATE(151)] = 1486, + [SMALL_STATE(152)] = 1532, + [SMALL_STATE(153)] = 1578, + [SMALL_STATE(154)] = 1624, + [SMALL_STATE(155)] = 1670, + [SMALL_STATE(156)] = 1716, + [SMALL_STATE(157)] = 1759, + [SMALL_STATE(158)] = 1802, + [SMALL_STATE(159)] = 1847, + [SMALL_STATE(160)] = 1892, + [SMALL_STATE(161)] = 1937, + [SMALL_STATE(162)] = 1980, + [SMALL_STATE(163)] = 2023, + [SMALL_STATE(164)] = 2068, + [SMALL_STATE(165)] = 2111, + [SMALL_STATE(166)] = 2154, + [SMALL_STATE(167)] = 2197, + [SMALL_STATE(168)] = 2242, + [SMALL_STATE(169)] = 2285, + [SMALL_STATE(170)] = 2330, + [SMALL_STATE(171)] = 2373, + [SMALL_STATE(172)] = 2416, + [SMALL_STATE(173)] = 2459, + [SMALL_STATE(174)] = 2504, + [SMALL_STATE(175)] = 2547, + [SMALL_STATE(176)] = 2590, + [SMALL_STATE(177)] = 2635, + [SMALL_STATE(178)] = 2678, + [SMALL_STATE(179)] = 2721, + [SMALL_STATE(180)] = 2764, + [SMALL_STATE(181)] = 2807, + [SMALL_STATE(182)] = 2850, + [SMALL_STATE(183)] = 2893, + [SMALL_STATE(184)] = 2938, + [SMALL_STATE(185)] = 2981, + [SMALL_STATE(186)] = 3026, + [SMALL_STATE(187)] = 3069, + [SMALL_STATE(188)] = 3114, + [SMALL_STATE(189)] = 3159, + [SMALL_STATE(190)] = 3202, + [SMALL_STATE(191)] = 3247, + [SMALL_STATE(192)] = 3290, + [SMALL_STATE(193)] = 3333, + [SMALL_STATE(194)] = 3378, + [SMALL_STATE(195)] = 3421, + [SMALL_STATE(196)] = 3464, + [SMALL_STATE(197)] = 3507, + [SMALL_STATE(198)] = 3552, + [SMALL_STATE(199)] = 3595, + [SMALL_STATE(200)] = 3640, + [SMALL_STATE(201)] = 3685, + [SMALL_STATE(202)] = 3730, + [SMALL_STATE(203)] = 3775, + [SMALL_STATE(204)] = 3818, + [SMALL_STATE(205)] = 3863, + [SMALL_STATE(206)] = 3908, + [SMALL_STATE(207)] = 3951, + [SMALL_STATE(208)] = 3994, + [SMALL_STATE(209)] = 4037, + [SMALL_STATE(210)] = 4080, + [SMALL_STATE(211)] = 4120, + [SMALL_STATE(212)] = 4160, + [SMALL_STATE(213)] = 4204, + [SMALL_STATE(214)] = 4244, + [SMALL_STATE(215)] = 4284, + [SMALL_STATE(216)] = 4324, + [SMALL_STATE(217)] = 4364, + [SMALL_STATE(218)] = 4404, + [SMALL_STATE(219)] = 4444, + [SMALL_STATE(220)] = 4484, + [SMALL_STATE(221)] = 4524, + [SMALL_STATE(222)] = 4564, + [SMALL_STATE(223)] = 4604, + [SMALL_STATE(224)] = 4644, + [SMALL_STATE(225)] = 4684, + [SMALL_STATE(226)] = 4724, + [SMALL_STATE(227)] = 4768, + [SMALL_STATE(228)] = 4808, + [SMALL_STATE(229)] = 4848, + [SMALL_STATE(230)] = 4888, + [SMALL_STATE(231)] = 4928, + [SMALL_STATE(232)] = 4968, + [SMALL_STATE(233)] = 5008, + [SMALL_STATE(234)] = 5048, + [SMALL_STATE(235)] = 5088, + [SMALL_STATE(236)] = 5128, + [SMALL_STATE(237)] = 5168, + [SMALL_STATE(238)] = 5208, + [SMALL_STATE(239)] = 5248, + [SMALL_STATE(240)] = 5288, + [SMALL_STATE(241)] = 5330, + [SMALL_STATE(242)] = 5370, + [SMALL_STATE(243)] = 5410, + [SMALL_STATE(244)] = 5450, + [SMALL_STATE(245)] = 5490, + [SMALL_STATE(246)] = 5530, + [SMALL_STATE(247)] = 5570, + [SMALL_STATE(248)] = 5610, + [SMALL_STATE(249)] = 5650, + [SMALL_STATE(250)] = 5690, + [SMALL_STATE(251)] = 5730, + [SMALL_STATE(252)] = 5770, + [SMALL_STATE(253)] = 5810, + [SMALL_STATE(254)] = 5850, + [SMALL_STATE(255)] = 5890, + [SMALL_STATE(256)] = 5930, + [SMALL_STATE(257)] = 5970, + [SMALL_STATE(258)] = 6010, + [SMALL_STATE(259)] = 6050, + [SMALL_STATE(260)] = 6090, + [SMALL_STATE(261)] = 6130, + [SMALL_STATE(262)] = 6170, + [SMALL_STATE(263)] = 6210, + [SMALL_STATE(264)] = 6250, + [SMALL_STATE(265)] = 6290, + [SMALL_STATE(266)] = 6330, + [SMALL_STATE(267)] = 6370, + [SMALL_STATE(268)] = 6410, + [SMALL_STATE(269)] = 6450, + [SMALL_STATE(270)] = 6490, + [SMALL_STATE(271)] = 6530, + [SMALL_STATE(272)] = 6570, + [SMALL_STATE(273)] = 6610, + [SMALL_STATE(274)] = 6652, + [SMALL_STATE(275)] = 6692, + [SMALL_STATE(276)] = 6732, + [SMALL_STATE(277)] = 6772, + [SMALL_STATE(278)] = 6812, + [SMALL_STATE(279)] = 6852, + [SMALL_STATE(280)] = 6892, + [SMALL_STATE(281)] = 6932, + [SMALL_STATE(282)] = 6972, + [SMALL_STATE(283)] = 7012, + [SMALL_STATE(284)] = 7052, + [SMALL_STATE(285)] = 7092, + [SMALL_STATE(286)] = 7132, + [SMALL_STATE(287)] = 7172, + [SMALL_STATE(288)] = 7212, + [SMALL_STATE(289)] = 7252, + [SMALL_STATE(290)] = 7292, + [SMALL_STATE(291)] = 7332, + [SMALL_STATE(292)] = 7374, + [SMALL_STATE(293)] = 7414, + [SMALL_STATE(294)] = 7454, + [SMALL_STATE(295)] = 7494, + [SMALL_STATE(296)] = 7534, + [SMALL_STATE(297)] = 7574, + [SMALL_STATE(298)] = 7614, + [SMALL_STATE(299)] = 7654, + [SMALL_STATE(300)] = 7694, + [SMALL_STATE(301)] = 7734, + [SMALL_STATE(302)] = 7774, + [SMALL_STATE(303)] = 7814, + [SMALL_STATE(304)] = 7854, + [SMALL_STATE(305)] = 7894, + [SMALL_STATE(306)] = 7934, + [SMALL_STATE(307)] = 7974, + [SMALL_STATE(308)] = 8014, + [SMALL_STATE(309)] = 8054, + [SMALL_STATE(310)] = 8094, + [SMALL_STATE(311)] = 8134, + [SMALL_STATE(312)] = 8174, + [SMALL_STATE(313)] = 8214, + [SMALL_STATE(314)] = 8254, + [SMALL_STATE(315)] = 8294, + [SMALL_STATE(316)] = 8334, + [SMALL_STATE(317)] = 8376, + [SMALL_STATE(318)] = 8416, + [SMALL_STATE(319)] = 8456, + [SMALL_STATE(320)] = 8496, + [SMALL_STATE(321)] = 8536, + [SMALL_STATE(322)] = 8576, + [SMALL_STATE(323)] = 8616, + [SMALL_STATE(324)] = 8656, + [SMALL_STATE(325)] = 8696, + [SMALL_STATE(326)] = 8736, + [SMALL_STATE(327)] = 8776, + [SMALL_STATE(328)] = 8816, + [SMALL_STATE(329)] = 8856, + [SMALL_STATE(330)] = 8896, + [SMALL_STATE(331)] = 8936, + [SMALL_STATE(332)] = 8976, + [SMALL_STATE(333)] = 9016, + [SMALL_STATE(334)] = 9056, + [SMALL_STATE(335)] = 9096, + [SMALL_STATE(336)] = 9136, + [SMALL_STATE(337)] = 9176, + [SMALL_STATE(338)] = 9220, + [SMALL_STATE(339)] = 9260, + [SMALL_STATE(340)] = 9300, + [SMALL_STATE(341)] = 9340, + [SMALL_STATE(342)] = 9380, + [SMALL_STATE(343)] = 9420, + [SMALL_STATE(344)] = 9460, + [SMALL_STATE(345)] = 9500, + [SMALL_STATE(346)] = 9540, + [SMALL_STATE(347)] = 9580, + [SMALL_STATE(348)] = 9620, + [SMALL_STATE(349)] = 9662, + [SMALL_STATE(350)] = 9702, + [SMALL_STATE(351)] = 9742, + [SMALL_STATE(352)] = 9782, + [SMALL_STATE(353)] = 9822, + [SMALL_STATE(354)] = 9862, + [SMALL_STATE(355)] = 9902, + [SMALL_STATE(356)] = 9942, + [SMALL_STATE(357)] = 9984, + [SMALL_STATE(358)] = 10024, + [SMALL_STATE(359)] = 10064, + [SMALL_STATE(360)] = 10106, + [SMALL_STATE(361)] = 10146, + [SMALL_STATE(362)] = 10186, + [SMALL_STATE(363)] = 10226, + [SMALL_STATE(364)] = 10268, + [SMALL_STATE(365)] = 10308, + [SMALL_STATE(366)] = 10348, + [SMALL_STATE(367)] = 10388, + [SMALL_STATE(368)] = 10428, + [SMALL_STATE(369)] = 10468, + [SMALL_STATE(370)] = 10508, + [SMALL_STATE(371)] = 10548, + [SMALL_STATE(372)] = 10588, + [SMALL_STATE(373)] = 10628, + [SMALL_STATE(374)] = 10668, + [SMALL_STATE(375)] = 10708, + [SMALL_STATE(376)] = 10748, + [SMALL_STATE(377)] = 10788, + [SMALL_STATE(378)] = 10828, + [SMALL_STATE(379)] = 10868, + [SMALL_STATE(380)] = 10908, + [SMALL_STATE(381)] = 10948, + [SMALL_STATE(382)] = 10988, + [SMALL_STATE(383)] = 11028, + [SMALL_STATE(384)] = 11068, + [SMALL_STATE(385)] = 11108, + [SMALL_STATE(386)] = 11148, + [SMALL_STATE(387)] = 11188, + [SMALL_STATE(388)] = 11228, + [SMALL_STATE(389)] = 11268, + [SMALL_STATE(390)] = 11308, + [SMALL_STATE(391)] = 11348, + [SMALL_STATE(392)] = 11388, + [SMALL_STATE(393)] = 11428, + [SMALL_STATE(394)] = 11468, + [SMALL_STATE(395)] = 11508, + [SMALL_STATE(396)] = 11548, + [SMALL_STATE(397)] = 11588, + [SMALL_STATE(398)] = 11628, + [SMALL_STATE(399)] = 11668, + [SMALL_STATE(400)] = 11708, + [SMALL_STATE(401)] = 11748, + [SMALL_STATE(402)] = 11788, + [SMALL_STATE(403)] = 11830, + [SMALL_STATE(404)] = 11870, + [SMALL_STATE(405)] = 11910, + [SMALL_STATE(406)] = 11950, + [SMALL_STATE(407)] = 11990, + [SMALL_STATE(408)] = 12030, + [SMALL_STATE(409)] = 12070, + [SMALL_STATE(410)] = 12110, + [SMALL_STATE(411)] = 12150, + [SMALL_STATE(412)] = 12190, + [SMALL_STATE(413)] = 12230, + [SMALL_STATE(414)] = 12270, + [SMALL_STATE(415)] = 12310, + [SMALL_STATE(416)] = 12350, + [SMALL_STATE(417)] = 12390, + [SMALL_STATE(418)] = 12430, + [SMALL_STATE(419)] = 12470, + [SMALL_STATE(420)] = 12510, + [SMALL_STATE(421)] = 12550, + [SMALL_STATE(422)] = 12590, + [SMALL_STATE(423)] = 12630, + [SMALL_STATE(424)] = 12670, + [SMALL_STATE(425)] = 12710, + [SMALL_STATE(426)] = 12750, + [SMALL_STATE(427)] = 12790, + [SMALL_STATE(428)] = 12830, + [SMALL_STATE(429)] = 12870, + [SMALL_STATE(430)] = 12910, + [SMALL_STATE(431)] = 12950, + [SMALL_STATE(432)] = 12990, + [SMALL_STATE(433)] = 13030, + [SMALL_STATE(434)] = 13070, + [SMALL_STATE(435)] = 13110, + [SMALL_STATE(436)] = 13150, + [SMALL_STATE(437)] = 13190, + [SMALL_STATE(438)] = 13230, + [SMALL_STATE(439)] = 13270, + [SMALL_STATE(440)] = 13310, + [SMALL_STATE(441)] = 13350, + [SMALL_STATE(442)] = 13390, + [SMALL_STATE(443)] = 13430, + [SMALL_STATE(444)] = 13470, + [SMALL_STATE(445)] = 13514, + [SMALL_STATE(446)] = 13556, + [SMALL_STATE(447)] = 13596, + [SMALL_STATE(448)] = 13636, + [SMALL_STATE(449)] = 13676, + [SMALL_STATE(450)] = 13716, + [SMALL_STATE(451)] = 13758, + [SMALL_STATE(452)] = 13798, + [SMALL_STATE(453)] = 13838, + [SMALL_STATE(454)] = 13878, + [SMALL_STATE(455)] = 13918, + [SMALL_STATE(456)] = 13958, + [SMALL_STATE(457)] = 13998, + [SMALL_STATE(458)] = 14038, + [SMALL_STATE(459)] = 14078, + [SMALL_STATE(460)] = 14118, + [SMALL_STATE(461)] = 14158, + [SMALL_STATE(462)] = 14198, + [SMALL_STATE(463)] = 14238, + [SMALL_STATE(464)] = 14278, + [SMALL_STATE(465)] = 14318, + [SMALL_STATE(466)] = 14358, + [SMALL_STATE(467)] = 14398, + [SMALL_STATE(468)] = 14438, + [SMALL_STATE(469)] = 14478, + [SMALL_STATE(470)] = 14518, + [SMALL_STATE(471)] = 14558, + [SMALL_STATE(472)] = 14598, + [SMALL_STATE(473)] = 14638, + [SMALL_STATE(474)] = 14678, + [SMALL_STATE(475)] = 14718, + [SMALL_STATE(476)] = 14758, + [SMALL_STATE(477)] = 14798, + [SMALL_STATE(478)] = 14838, + [SMALL_STATE(479)] = 14878, + [SMALL_STATE(480)] = 14918, + [SMALL_STATE(481)] = 14958, + [SMALL_STATE(482)] = 14998, + [SMALL_STATE(483)] = 15038, + [SMALL_STATE(484)] = 15078, + [SMALL_STATE(485)] = 15118, + [SMALL_STATE(486)] = 15158, + [SMALL_STATE(487)] = 15198, + [SMALL_STATE(488)] = 15238, + [SMALL_STATE(489)] = 15280, + [SMALL_STATE(490)] = 15320, + [SMALL_STATE(491)] = 15360, + [SMALL_STATE(492)] = 15400, + [SMALL_STATE(493)] = 15440, + [SMALL_STATE(494)] = 15480, + [SMALL_STATE(495)] = 15520, + [SMALL_STATE(496)] = 15560, + [SMALL_STATE(497)] = 15600, + [SMALL_STATE(498)] = 15640, + [SMALL_STATE(499)] = 15680, + [SMALL_STATE(500)] = 15720, + [SMALL_STATE(501)] = 15760, + [SMALL_STATE(502)] = 15800, + [SMALL_STATE(503)] = 15840, + [SMALL_STATE(504)] = 15880, + [SMALL_STATE(505)] = 15920, + [SMALL_STATE(506)] = 15962, + [SMALL_STATE(507)] = 16002, + [SMALL_STATE(508)] = 16042, + [SMALL_STATE(509)] = 16082, + [SMALL_STATE(510)] = 16122, + [SMALL_STATE(511)] = 16162, + [SMALL_STATE(512)] = 16202, + [SMALL_STATE(513)] = 16244, + [SMALL_STATE(514)] = 16284, + [SMALL_STATE(515)] = 16324, + [SMALL_STATE(516)] = 16364, + [SMALL_STATE(517)] = 16404, + [SMALL_STATE(518)] = 16444, + [SMALL_STATE(519)] = 16484, + [SMALL_STATE(520)] = 16524, + [SMALL_STATE(521)] = 16564, + [SMALL_STATE(522)] = 16604, + [SMALL_STATE(523)] = 16644, + [SMALL_STATE(524)] = 16684, + [SMALL_STATE(525)] = 16724, + [SMALL_STATE(526)] = 16763, + [SMALL_STATE(527)] = 16802, + [SMALL_STATE(528)] = 16841, + [SMALL_STATE(529)] = 16880, + [SMALL_STATE(530)] = 16919, + [SMALL_STATE(531)] = 16958, + [SMALL_STATE(532)] = 16997, + [SMALL_STATE(533)] = 17036, + [SMALL_STATE(534)] = 17075, + [SMALL_STATE(535)] = 17114, + [SMALL_STATE(536)] = 17153, + [SMALL_STATE(537)] = 17192, + [SMALL_STATE(538)] = 17231, + [SMALL_STATE(539)] = 17270, + [SMALL_STATE(540)] = 17309, + [SMALL_STATE(541)] = 17348, + [SMALL_STATE(542)] = 17387, + [SMALL_STATE(543)] = 17426, + [SMALL_STATE(544)] = 17465, + [SMALL_STATE(545)] = 17504, + [SMALL_STATE(546)] = 17543, + [SMALL_STATE(547)] = 17582, + [SMALL_STATE(548)] = 17621, + [SMALL_STATE(549)] = 17660, + [SMALL_STATE(550)] = 17699, + [SMALL_STATE(551)] = 17738, + [SMALL_STATE(552)] = 17777, + [SMALL_STATE(553)] = 17816, + [SMALL_STATE(554)] = 17855, + [SMALL_STATE(555)] = 17894, + [SMALL_STATE(556)] = 17933, + [SMALL_STATE(557)] = 17972, + [SMALL_STATE(558)] = 18011, + [SMALL_STATE(559)] = 18050, + [SMALL_STATE(560)] = 18089, + [SMALL_STATE(561)] = 18128, + [SMALL_STATE(562)] = 18167, + [SMALL_STATE(563)] = 18208, + [SMALL_STATE(564)] = 18247, + [SMALL_STATE(565)] = 18286, + [SMALL_STATE(566)] = 18325, + [SMALL_STATE(567)] = 18364, + [SMALL_STATE(568)] = 18405, + [SMALL_STATE(569)] = 18444, + [SMALL_STATE(570)] = 18483, + [SMALL_STATE(571)] = 18524, + [SMALL_STATE(572)] = 18563, + [SMALL_STATE(573)] = 18602, + [SMALL_STATE(574)] = 18641, + [SMALL_STATE(575)] = 18680, + [SMALL_STATE(576)] = 18719, + [SMALL_STATE(577)] = 18758, + [SMALL_STATE(578)] = 18797, + [SMALL_STATE(579)] = 18836, + [SMALL_STATE(580)] = 18875, + [SMALL_STATE(581)] = 18914, + [SMALL_STATE(582)] = 18953, + [SMALL_STATE(583)] = 18992, + [SMALL_STATE(584)] = 19031, + [SMALL_STATE(585)] = 19070, + [SMALL_STATE(586)] = 19109, + [SMALL_STATE(587)] = 19148, + [SMALL_STATE(588)] = 19187, + [SMALL_STATE(589)] = 19226, + [SMALL_STATE(590)] = 19265, + [SMALL_STATE(591)] = 19304, + [SMALL_STATE(592)] = 19343, + [SMALL_STATE(593)] = 19382, + [SMALL_STATE(594)] = 19421, + [SMALL_STATE(595)] = 19460, + [SMALL_STATE(596)] = 19499, + [SMALL_STATE(597)] = 19538, + [SMALL_STATE(598)] = 19577, + [SMALL_STATE(599)] = 19616, + [SMALL_STATE(600)] = 19655, + [SMALL_STATE(601)] = 19694, + [SMALL_STATE(602)] = 19733, + [SMALL_STATE(603)] = 19772, + [SMALL_STATE(604)] = 19811, + [SMALL_STATE(605)] = 19852, + [SMALL_STATE(606)] = 19891, + [SMALL_STATE(607)] = 19932, + [SMALL_STATE(608)] = 19971, + [SMALL_STATE(609)] = 20010, + [SMALL_STATE(610)] = 20049, + [SMALL_STATE(611)] = 20088, + [SMALL_STATE(612)] = 20127, + [SMALL_STATE(613)] = 20165, + [SMALL_STATE(614)] = 20203, + [SMALL_STATE(615)] = 20241, + [SMALL_STATE(616)] = 20279, + [SMALL_STATE(617)] = 20317, + [SMALL_STATE(618)] = 20348, + [SMALL_STATE(619)] = 20379, + [SMALL_STATE(620)] = 20410, + [SMALL_STATE(621)] = 20441, + [SMALL_STATE(622)] = 20472, + [SMALL_STATE(623)] = 20503, + [SMALL_STATE(624)] = 20534, + [SMALL_STATE(625)] = 20565, + [SMALL_STATE(626)] = 20596, + [SMALL_STATE(627)] = 20627, + [SMALL_STATE(628)] = 20658, + [SMALL_STATE(629)] = 20689, + [SMALL_STATE(630)] = 20720, + [SMALL_STATE(631)] = 20751, + [SMALL_STATE(632)] = 20782, + [SMALL_STATE(633)] = 20813, + [SMALL_STATE(634)] = 20844, + [SMALL_STATE(635)] = 20875, + [SMALL_STATE(636)] = 20906, + [SMALL_STATE(637)] = 20937, + [SMALL_STATE(638)] = 20968, + [SMALL_STATE(639)] = 20999, + [SMALL_STATE(640)] = 21030, + [SMALL_STATE(641)] = 21061, + [SMALL_STATE(642)] = 21092, + [SMALL_STATE(643)] = 21102, + [SMALL_STATE(644)] = 21112, + [SMALL_STATE(645)] = 21122, + [SMALL_STATE(646)] = 21132, + [SMALL_STATE(647)] = 21142, + [SMALL_STATE(648)] = 21152, + [SMALL_STATE(649)] = 21162, + [SMALL_STATE(650)] = 21172, + [SMALL_STATE(651)] = 21182, + [SMALL_STATE(652)] = 21199, + [SMALL_STATE(653)] = 21216, + [SMALL_STATE(654)] = 21233, + [SMALL_STATE(655)] = 21250, + [SMALL_STATE(656)] = 21267, + [SMALL_STATE(657)] = 21284, + [SMALL_STATE(658)] = 21301, + [SMALL_STATE(659)] = 21318, + [SMALL_STATE(660)] = 21335, + [SMALL_STATE(661)] = 21352, + [SMALL_STATE(662)] = 21369, + [SMALL_STATE(663)] = 21386, + [SMALL_STATE(664)] = 21402, + [SMALL_STATE(665)] = 21418, + [SMALL_STATE(666)] = 21434, + [SMALL_STATE(667)] = 21450, + [SMALL_STATE(668)] = 21466, + [SMALL_STATE(669)] = 21482, + [SMALL_STATE(670)] = 21498, + [SMALL_STATE(671)] = 21514, + [SMALL_STATE(672)] = 21526, + [SMALL_STATE(673)] = 21542, + [SMALL_STATE(674)] = 21558, + [SMALL_STATE(675)] = 21574, + [SMALL_STATE(676)] = 21590, + [SMALL_STATE(677)] = 21602, + [SMALL_STATE(678)] = 21618, + [SMALL_STATE(679)] = 21630, + [SMALL_STATE(680)] = 21646, + [SMALL_STATE(681)] = 21658, + [SMALL_STATE(682)] = 21674, + [SMALL_STATE(683)] = 21690, + [SMALL_STATE(684)] = 21706, + [SMALL_STATE(685)] = 21718, + [SMALL_STATE(686)] = 21734, + [SMALL_STATE(687)] = 21750, + [SMALL_STATE(688)] = 21766, + [SMALL_STATE(689)] = 21782, + [SMALL_STATE(690)] = 21798, + [SMALL_STATE(691)] = 21814, + [SMALL_STATE(692)] = 21830, + [SMALL_STATE(693)] = 21837, + [SMALL_STATE(694)] = 21846, + [SMALL_STATE(695)] = 21856, + [SMALL_STATE(696)] = 21864, + [SMALL_STATE(697)] = 21872, + [SMALL_STATE(698)] = 21879, + [SMALL_STATE(699)] = 21886, + [SMALL_STATE(700)] = 21893, + [SMALL_STATE(701)] = 21900, + [SMALL_STATE(702)] = 21907, + [SMALL_STATE(703)] = 21914, + [SMALL_STATE(704)] = 21921, + [SMALL_STATE(705)] = 21928, + [SMALL_STATE(706)] = 21935, + [SMALL_STATE(707)] = 21942, + [SMALL_STATE(708)] = 21949, + [SMALL_STATE(709)] = 21956, + [SMALL_STATE(710)] = 21963, + [SMALL_STATE(711)] = 21970, + [SMALL_STATE(712)] = 21977, + [SMALL_STATE(713)] = 21984, + [SMALL_STATE(714)] = 21991, + [SMALL_STATE(715)] = 21998, + [SMALL_STATE(716)] = 22005, + [SMALL_STATE(717)] = 22012, + [SMALL_STATE(718)] = 22019, + [SMALL_STATE(719)] = 22026, + [SMALL_STATE(720)] = 22033, + [SMALL_STATE(721)] = 22040, + [SMALL_STATE(722)] = 22047, + [SMALL_STATE(723)] = 22054, + [SMALL_STATE(724)] = 22061, + [SMALL_STATE(725)] = 22068, + [SMALL_STATE(726)] = 22075, + [SMALL_STATE(727)] = 22082, + [SMALL_STATE(728)] = 22089, + [SMALL_STATE(729)] = 22096, + [SMALL_STATE(730)] = 22103, + [SMALL_STATE(731)] = 22110, + [SMALL_STATE(732)] = 22117, + [SMALL_STATE(733)] = 22124, + [SMALL_STATE(734)] = 22131, + [SMALL_STATE(735)] = 22138, + [SMALL_STATE(736)] = 22145, + [SMALL_STATE(737)] = 22152, + [SMALL_STATE(738)] = 22159, + [SMALL_STATE(739)] = 22166, + [SMALL_STATE(740)] = 22173, + [SMALL_STATE(741)] = 22180, + [SMALL_STATE(742)] = 22187, + [SMALL_STATE(743)] = 22194, + [SMALL_STATE(744)] = 22201, + [SMALL_STATE(745)] = 22208, + [SMALL_STATE(746)] = 22215, + [SMALL_STATE(747)] = 22222, + [SMALL_STATE(748)] = 22229, + [SMALL_STATE(749)] = 22236, + [SMALL_STATE(750)] = 22243, + [SMALL_STATE(751)] = 22250, + [SMALL_STATE(752)] = 22257, + [SMALL_STATE(753)] = 22264, + [SMALL_STATE(754)] = 22271, + [SMALL_STATE(755)] = 22278, + [SMALL_STATE(756)] = 22285, + [SMALL_STATE(757)] = 22292, + [SMALL_STATE(758)] = 22299, + [SMALL_STATE(759)] = 22306, + [SMALL_STATE(760)] = 22313, + [SMALL_STATE(761)] = 22320, + [SMALL_STATE(762)] = 22327, + [SMALL_STATE(763)] = 22334, + [SMALL_STATE(764)] = 22341, + [SMALL_STATE(765)] = 22348, + [SMALL_STATE(766)] = 22355, + [SMALL_STATE(767)] = 22362, + [SMALL_STATE(768)] = 22369, + [SMALL_STATE(769)] = 22376, + [SMALL_STATE(770)] = 22383, + [SMALL_STATE(771)] = 22390, + [SMALL_STATE(772)] = 22397, + [SMALL_STATE(773)] = 22404, + [SMALL_STATE(774)] = 22411, + [SMALL_STATE(775)] = 22418, + [SMALL_STATE(776)] = 22425, + [SMALL_STATE(777)] = 22432, + [SMALL_STATE(778)] = 22439, + [SMALL_STATE(779)] = 22446, + [SMALL_STATE(780)] = 22453, + [SMALL_STATE(781)] = 22460, + [SMALL_STATE(782)] = 22467, + [SMALL_STATE(783)] = 22474, + [SMALL_STATE(784)] = 22481, + [SMALL_STATE(785)] = 22488, + [SMALL_STATE(786)] = 22495, + [SMALL_STATE(787)] = 22502, + [SMALL_STATE(788)] = 22509, + [SMALL_STATE(789)] = 22516, + [SMALL_STATE(790)] = 22523, + [SMALL_STATE(791)] = 22530, + [SMALL_STATE(792)] = 22537, + [SMALL_STATE(793)] = 22544, + [SMALL_STATE(794)] = 22551, + [SMALL_STATE(795)] = 22558, + [SMALL_STATE(796)] = 22565, + [SMALL_STATE(797)] = 22572, + [SMALL_STATE(798)] = 22579, + [SMALL_STATE(799)] = 22586, + [SMALL_STATE(800)] = 22593, + [SMALL_STATE(801)] = 22600, + [SMALL_STATE(802)] = 22607, + [SMALL_STATE(803)] = 22614, + [SMALL_STATE(804)] = 22621, + [SMALL_STATE(805)] = 22628, + [SMALL_STATE(806)] = 22635, + [SMALL_STATE(807)] = 22642, + [SMALL_STATE(808)] = 22649, + [SMALL_STATE(809)] = 22656, + [SMALL_STATE(810)] = 22663, + [SMALL_STATE(811)] = 22670, + [SMALL_STATE(812)] = 22677, + [SMALL_STATE(813)] = 22684, + [SMALL_STATE(814)] = 22691, + [SMALL_STATE(815)] = 22698, + [SMALL_STATE(816)] = 22705, + [SMALL_STATE(817)] = 22712, + [SMALL_STATE(818)] = 22719, + [SMALL_STATE(819)] = 22726, + [SMALL_STATE(820)] = 22733, + [SMALL_STATE(821)] = 22740, + [SMALL_STATE(822)] = 22747, + [SMALL_STATE(823)] = 22754, + [SMALL_STATE(824)] = 22761, + [SMALL_STATE(825)] = 22768, + [SMALL_STATE(826)] = 22775, + [SMALL_STATE(827)] = 22782, + [SMALL_STATE(828)] = 22789, + [SMALL_STATE(829)] = 22796, + [SMALL_STATE(830)] = 22803, + [SMALL_STATE(831)] = 22810, + [SMALL_STATE(832)] = 22817, + [SMALL_STATE(833)] = 22824, + [SMALL_STATE(834)] = 22831, + [SMALL_STATE(835)] = 22838, + [SMALL_STATE(836)] = 22845, + [SMALL_STATE(837)] = 22852, + [SMALL_STATE(838)] = 22859, + [SMALL_STATE(839)] = 22866, + [SMALL_STATE(840)] = 22873, + [SMALL_STATE(841)] = 22880, + [SMALL_STATE(842)] = 22887, + [SMALL_STATE(843)] = 22894, + [SMALL_STATE(844)] = 22901, + [SMALL_STATE(845)] = 22908, + [SMALL_STATE(846)] = 22915, + [SMALL_STATE(847)] = 22922, + [SMALL_STATE(848)] = 22929, + [SMALL_STATE(849)] = 22936, + [SMALL_STATE(850)] = 22943, + [SMALL_STATE(851)] = 22950, + [SMALL_STATE(852)] = 22957, + [SMALL_STATE(853)] = 22964, + [SMALL_STATE(854)] = 22971, + [SMALL_STATE(855)] = 22978, + [SMALL_STATE(856)] = 22985, + [SMALL_STATE(857)] = 22992, + [SMALL_STATE(858)] = 22999, + [SMALL_STATE(859)] = 23006, + [SMALL_STATE(860)] = 23013, + [SMALL_STATE(861)] = 23020, + [SMALL_STATE(862)] = 23027, + [SMALL_STATE(863)] = 23034, + [SMALL_STATE(864)] = 23041, + [SMALL_STATE(865)] = 23048, + [SMALL_STATE(866)] = 23055, + [SMALL_STATE(867)] = 23059, + [SMALL_STATE(868)] = 23063, + [SMALL_STATE(869)] = 23067, + [SMALL_STATE(870)] = 23071, + [SMALL_STATE(871)] = 23075, + [SMALL_STATE(872)] = 23079, + [SMALL_STATE(873)] = 23083, + [SMALL_STATE(874)] = 23087, + [SMALL_STATE(875)] = 23091, + [SMALL_STATE(876)] = 23095, + [SMALL_STATE(877)] = 23099, + [SMALL_STATE(878)] = 23103, + [SMALL_STATE(879)] = 23107, + [SMALL_STATE(880)] = 23111, + [SMALL_STATE(881)] = 23115, + [SMALL_STATE(882)] = 23119, + [SMALL_STATE(883)] = 23123, + [SMALL_STATE(884)] = 23127, + [SMALL_STATE(885)] = 23131, + [SMALL_STATE(886)] = 23135, + [SMALL_STATE(887)] = 23139, + [SMALL_STATE(888)] = 23143, + [SMALL_STATE(889)] = 23147, + [SMALL_STATE(890)] = 23151, + [SMALL_STATE(891)] = 23155, + [SMALL_STATE(892)] = 23159, + [SMALL_STATE(893)] = 23163, + [SMALL_STATE(894)] = 23167, + [SMALL_STATE(895)] = 23171, + [SMALL_STATE(896)] = 23175, + [SMALL_STATE(897)] = 23179, + [SMALL_STATE(898)] = 23183, + [SMALL_STATE(899)] = 23187, + [SMALL_STATE(900)] = 23191, + [SMALL_STATE(901)] = 23195, + [SMALL_STATE(902)] = 23199, + [SMALL_STATE(903)] = 23203, + [SMALL_STATE(904)] = 23207, + [SMALL_STATE(905)] = 23211, + [SMALL_STATE(906)] = 23215, + [SMALL_STATE(907)] = 23219, + [SMALL_STATE(908)] = 23223, + [SMALL_STATE(909)] = 23227, + [SMALL_STATE(910)] = 23231, + [SMALL_STATE(911)] = 23235, + [SMALL_STATE(912)] = 23239, + [SMALL_STATE(913)] = 23243, + [SMALL_STATE(914)] = 23247, + [SMALL_STATE(915)] = 23251, + [SMALL_STATE(916)] = 23255, + [SMALL_STATE(917)] = 23259, + [SMALL_STATE(918)] = 23263, + [SMALL_STATE(919)] = 23267, + [SMALL_STATE(920)] = 23271, + [SMALL_STATE(921)] = 23275, + [SMALL_STATE(922)] = 23279, + [SMALL_STATE(923)] = 23283, + [SMALL_STATE(924)] = 23287, + [SMALL_STATE(925)] = 23291, + [SMALL_STATE(926)] = 23295, + [SMALL_STATE(927)] = 23299, + [SMALL_STATE(928)] = 23303, + [SMALL_STATE(929)] = 23307, + [SMALL_STATE(930)] = 23311, + [SMALL_STATE(931)] = 23315, + [SMALL_STATE(932)] = 23319, + [SMALL_STATE(933)] = 23323, + [SMALL_STATE(934)] = 23327, + [SMALL_STATE(935)] = 23331, + [SMALL_STATE(936)] = 23335, + [SMALL_STATE(937)] = 23339, + [SMALL_STATE(938)] = 23343, + [SMALL_STATE(939)] = 23347, + [SMALL_STATE(940)] = 23351, + [SMALL_STATE(941)] = 23355, + [SMALL_STATE(942)] = 23359, + [SMALL_STATE(943)] = 23363, + [SMALL_STATE(944)] = 23367, + [SMALL_STATE(945)] = 23371, + [SMALL_STATE(946)] = 23375, + [SMALL_STATE(947)] = 23379, + [SMALL_STATE(948)] = 23383, + [SMALL_STATE(949)] = 23387, + [SMALL_STATE(950)] = 23391, + [SMALL_STATE(951)] = 23395, + [SMALL_STATE(952)] = 23399, + [SMALL_STATE(953)] = 23403, + [SMALL_STATE(954)] = 23407, + [SMALL_STATE(955)] = 23411, + [SMALL_STATE(956)] = 23415, + [SMALL_STATE(957)] = 23419, + [SMALL_STATE(958)] = 23423, + [SMALL_STATE(959)] = 23427, + [SMALL_STATE(960)] = 23431, + [SMALL_STATE(961)] = 23435, + [SMALL_STATE(962)] = 23439, + [SMALL_STATE(963)] = 23443, + [SMALL_STATE(964)] = 23447, + [SMALL_STATE(965)] = 23451, + [SMALL_STATE(966)] = 23455, + [SMALL_STATE(967)] = 23459, + [SMALL_STATE(968)] = 23463, + [SMALL_STATE(969)] = 23467, + [SMALL_STATE(970)] = 23471, + [SMALL_STATE(971)] = 23475, + [SMALL_STATE(972)] = 23479, + [SMALL_STATE(973)] = 23483, + [SMALL_STATE(974)] = 23487, + [SMALL_STATE(975)] = 23491, + [SMALL_STATE(976)] = 23495, + [SMALL_STATE(977)] = 23499, + [SMALL_STATE(978)] = 23503, + [SMALL_STATE(979)] = 23507, + [SMALL_STATE(980)] = 23511, + [SMALL_STATE(981)] = 23515, + [SMALL_STATE(982)] = 23519, + [SMALL_STATE(983)] = 23523, + [SMALL_STATE(984)] = 23527, + [SMALL_STATE(985)] = 23531, + [SMALL_STATE(986)] = 23535, + [SMALL_STATE(987)] = 23539, + [SMALL_STATE(988)] = 23543, + [SMALL_STATE(989)] = 23547, + [SMALL_STATE(990)] = 23551, + [SMALL_STATE(991)] = 23555, + [SMALL_STATE(992)] = 23559, + [SMALL_STATE(993)] = 23563, + [SMALL_STATE(994)] = 23567, + [SMALL_STATE(995)] = 23571, + [SMALL_STATE(996)] = 23575, + [SMALL_STATE(997)] = 23579, + [SMALL_STATE(998)] = 23583, + [SMALL_STATE(999)] = 23587, + [SMALL_STATE(1000)] = 23591, + [SMALL_STATE(1001)] = 23595, + [SMALL_STATE(1002)] = 23599, + [SMALL_STATE(1003)] = 23603, + [SMALL_STATE(1004)] = 23607, + [SMALL_STATE(1005)] = 23611, + [SMALL_STATE(1006)] = 23615, + [SMALL_STATE(1007)] = 23619, + [SMALL_STATE(1008)] = 23623, + [SMALL_STATE(1009)] = 23627, + [SMALL_STATE(1010)] = 23631, + [SMALL_STATE(1011)] = 23635, + [SMALL_STATE(1012)] = 23639, + [SMALL_STATE(1013)] = 23643, + [SMALL_STATE(1014)] = 23647, + [SMALL_STATE(1015)] = 23651, + [SMALL_STATE(1016)] = 23655, + [SMALL_STATE(1017)] = 23659, + [SMALL_STATE(1018)] = 23663, + [SMALL_STATE(1019)] = 23667, + [SMALL_STATE(1020)] = 23671, + [SMALL_STATE(1021)] = 23675, + [SMALL_STATE(1022)] = 23679, + [SMALL_STATE(1023)] = 23683, + [SMALL_STATE(1024)] = 23687, + [SMALL_STATE(1025)] = 23691, + [SMALL_STATE(1026)] = 23695, + [SMALL_STATE(1027)] = 23699, + [SMALL_STATE(1028)] = 23703, + [SMALL_STATE(1029)] = 23707, + [SMALL_STATE(1030)] = 23711, + [SMALL_STATE(1031)] = 23715, + [SMALL_STATE(1032)] = 23719, + [SMALL_STATE(1033)] = 23723, + [SMALL_STATE(1034)] = 23727, + [SMALL_STATE(1035)] = 23731, + [SMALL_STATE(1036)] = 23735, + [SMALL_STATE(1037)] = 23739, + [SMALL_STATE(1038)] = 23743, + [SMALL_STATE(1039)] = 23747, + [SMALL_STATE(1040)] = 23751, + [SMALL_STATE(1041)] = 23755, + [SMALL_STATE(1042)] = 23759, + [SMALL_STATE(1043)] = 23763, + [SMALL_STATE(1044)] = 23767, + [SMALL_STATE(1045)] = 23771, + [SMALL_STATE(1046)] = 23775, + [SMALL_STATE(1047)] = 23779, + [SMALL_STATE(1048)] = 23783, + [SMALL_STATE(1049)] = 23787, + [SMALL_STATE(1050)] = 23791, + [SMALL_STATE(1051)] = 23795, + [SMALL_STATE(1052)] = 23799, + [SMALL_STATE(1053)] = 23803, + [SMALL_STATE(1054)] = 23807, + [SMALL_STATE(1055)] = 23811, + [SMALL_STATE(1056)] = 23815, + [SMALL_STATE(1057)] = 23819, + [SMALL_STATE(1058)] = 23823, + [SMALL_STATE(1059)] = 23827, + [SMALL_STATE(1060)] = 23831, + [SMALL_STATE(1061)] = 23835, + [SMALL_STATE(1062)] = 23839, + [SMALL_STATE(1063)] = 23843, + [SMALL_STATE(1064)] = 23847, + [SMALL_STATE(1065)] = 23851, + [SMALL_STATE(1066)] = 23855, + [SMALL_STATE(1067)] = 23859, + [SMALL_STATE(1068)] = 23863, + [SMALL_STATE(1069)] = 23867, + [SMALL_STATE(1070)] = 23871, + [SMALL_STATE(1071)] = 23875, + [SMALL_STATE(1072)] = 23879, + [SMALL_STATE(1073)] = 23883, + [SMALL_STATE(1074)] = 23887, + [SMALL_STATE(1075)] = 23891, + [SMALL_STATE(1076)] = 23895, + [SMALL_STATE(1077)] = 23899, + [SMALL_STATE(1078)] = 23903, + [SMALL_STATE(1079)] = 23907, + [SMALL_STATE(1080)] = 23911, + [SMALL_STATE(1081)] = 23915, + [SMALL_STATE(1082)] = 23919, + [SMALL_STATE(1083)] = 23923, + [SMALL_STATE(1084)] = 23927, + [SMALL_STATE(1085)] = 23931, + [SMALL_STATE(1086)] = 23935, + [SMALL_STATE(1087)] = 23939, + [SMALL_STATE(1088)] = 23943, + [SMALL_STATE(1089)] = 23947, + [SMALL_STATE(1090)] = 23951, + [SMALL_STATE(1091)] = 23955, + [SMALL_STATE(1092)] = 23959, + [SMALL_STATE(1093)] = 23963, + [SMALL_STATE(1094)] = 23967, + [SMALL_STATE(1095)] = 23971, + [SMALL_STATE(1096)] = 23975, + [SMALL_STATE(1097)] = 23979, + [SMALL_STATE(1098)] = 23983, + [SMALL_STATE(1099)] = 23987, + [SMALL_STATE(1100)] = 23991, + [SMALL_STATE(1101)] = 23995, + [SMALL_STATE(1102)] = 23999, + [SMALL_STATE(1103)] = 24003, + [SMALL_STATE(1104)] = 24007, + [SMALL_STATE(1105)] = 24011, + [SMALL_STATE(1106)] = 24015, + [SMALL_STATE(1107)] = 24019, + [SMALL_STATE(1108)] = 24023, + [SMALL_STATE(1109)] = 24027, + [SMALL_STATE(1110)] = 24031, + [SMALL_STATE(1111)] = 24035, + [SMALL_STATE(1112)] = 24039, + [SMALL_STATE(1113)] = 24043, + [SMALL_STATE(1114)] = 24047, + [SMALL_STATE(1115)] = 24051, + [SMALL_STATE(1116)] = 24055, + [SMALL_STATE(1117)] = 24059, + [SMALL_STATE(1118)] = 24063, + [SMALL_STATE(1119)] = 24067, + [SMALL_STATE(1120)] = 24071, + [SMALL_STATE(1121)] = 24075, + [SMALL_STATE(1122)] = 24079, + [SMALL_STATE(1123)] = 24083, + [SMALL_STATE(1124)] = 24087, + [SMALL_STATE(1125)] = 24091, + [SMALL_STATE(1126)] = 24095, + [SMALL_STATE(1127)] = 24099, + [SMALL_STATE(1128)] = 24103, + [SMALL_STATE(1129)] = 24107, + [SMALL_STATE(1130)] = 24111, + [SMALL_STATE(1131)] = 24115, + [SMALL_STATE(1132)] = 24119, + [SMALL_STATE(1133)] = 24123, + [SMALL_STATE(1134)] = 24127, + [SMALL_STATE(1135)] = 24131, + [SMALL_STATE(1136)] = 24135, + [SMALL_STATE(1137)] = 24139, + [SMALL_STATE(1138)] = 24143, + [SMALL_STATE(1139)] = 24147, + [SMALL_STATE(1140)] = 24151, + [SMALL_STATE(1141)] = 24155, + [SMALL_STATE(1142)] = 24159, + [SMALL_STATE(1143)] = 24163, + [SMALL_STATE(1144)] = 24167, + [SMALL_STATE(1145)] = 24171, + [SMALL_STATE(1146)] = 24175, + [SMALL_STATE(1147)] = 24179, + [SMALL_STATE(1148)] = 24183, + [SMALL_STATE(1149)] = 24187, + [SMALL_STATE(1150)] = 24191, + [SMALL_STATE(1151)] = 24195, + [SMALL_STATE(1152)] = 24199, + [SMALL_STATE(1153)] = 24203, + [SMALL_STATE(1154)] = 24207, + [SMALL_STATE(1155)] = 24211, + [SMALL_STATE(1156)] = 24215, + [SMALL_STATE(1157)] = 24219, + [SMALL_STATE(1158)] = 24223, + [SMALL_STATE(1159)] = 24227, + [SMALL_STATE(1160)] = 24231, + [SMALL_STATE(1161)] = 24235, + [SMALL_STATE(1162)] = 24239, + [SMALL_STATE(1163)] = 24243, + [SMALL_STATE(1164)] = 24247, + [SMALL_STATE(1165)] = 24251, + [SMALL_STATE(1166)] = 24255, + [SMALL_STATE(1167)] = 24259, + [SMALL_STATE(1168)] = 24263, + [SMALL_STATE(1169)] = 24267, + [SMALL_STATE(1170)] = 24271, + [SMALL_STATE(1171)] = 24275, + [SMALL_STATE(1172)] = 24279, + [SMALL_STATE(1173)] = 24283, + [SMALL_STATE(1174)] = 24287, + [SMALL_STATE(1175)] = 24291, + [SMALL_STATE(1176)] = 24295, + [SMALL_STATE(1177)] = 24299, + [SMALL_STATE(1178)] = 24303, + [SMALL_STATE(1179)] = 24307, + [SMALL_STATE(1180)] = 24311, + [SMALL_STATE(1181)] = 24315, + [SMALL_STATE(1182)] = 24319, + [SMALL_STATE(1183)] = 24323, + [SMALL_STATE(1184)] = 24327, + [SMALL_STATE(1185)] = 24331, + [SMALL_STATE(1186)] = 24335, + [SMALL_STATE(1187)] = 24339, + [SMALL_STATE(1188)] = 24343, + [SMALL_STATE(1189)] = 24347, + [SMALL_STATE(1190)] = 24351, + [SMALL_STATE(1191)] = 24355, + [SMALL_STATE(1192)] = 24359, + [SMALL_STATE(1193)] = 24363, + [SMALL_STATE(1194)] = 24367, + [SMALL_STATE(1195)] = 24371, + [SMALL_STATE(1196)] = 24375, + [SMALL_STATE(1197)] = 24379, + [SMALL_STATE(1198)] = 24383, + [SMALL_STATE(1199)] = 24387, + [SMALL_STATE(1200)] = 24391, + [SMALL_STATE(1201)] = 24395, + [SMALL_STATE(1202)] = 24399, + [SMALL_STATE(1203)] = 24403, + [SMALL_STATE(1204)] = 24407, + [SMALL_STATE(1205)] = 24411, + [SMALL_STATE(1206)] = 24415, + [SMALL_STATE(1207)] = 24419, + [SMALL_STATE(1208)] = 24423, + [SMALL_STATE(1209)] = 24427, + [SMALL_STATE(1210)] = 24431, + [SMALL_STATE(1211)] = 24435, + [SMALL_STATE(1212)] = 24439, + [SMALL_STATE(1213)] = 24443, + [SMALL_STATE(1214)] = 24447, + [SMALL_STATE(1215)] = 24451, + [SMALL_STATE(1216)] = 24455, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [49] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), - [51] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(709), - [54] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(212), - [57] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(799), - [60] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(210), - [63] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(713), - [66] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(712), - [69] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(791), - [72] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(715), - [75] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(801), - [78] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(937), - [81] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(211), - [84] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(211), - [87] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(204), - [90] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(145), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), - [95] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(12), - [98] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(15), - [101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), - [103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(403), - [106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(276), - [109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(275), - [112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(274), - [115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(106), - [118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), SHIFT(139), - [121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(920), - [124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(699), - [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), - [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), - [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), - [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17), - [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), - [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), - [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), - [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), - [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), - [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), - [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), - [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14), - [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), - [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline, 1), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(798), - [504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(173), - [507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(797), - [510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(172), - [513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(796), - [516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(793), - [519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(792), - [522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(788), - [525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(785), - [528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(845), - [531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(171), - [534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(171), - [537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(170), - [540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(140), - [543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(2), - [546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(11), - [549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), - [551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(496), - [554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(497), - [557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(498), - [560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(455), - [563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(40), - [566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(146), - [569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1032), - [572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(802), - [575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(182), - [578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(803), - [581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(181), - [584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(804), - [587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(805), - [590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(806), - [593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(807), - [596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(808), - [599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(815), - [602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(180), - [605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(180), - [608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(179), - [611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(157), - [614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(3), - [617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(21), - [620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(452), - [623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(453), - [626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(454), - [629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(410), - [632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(65), - [635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(159), - [638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1018), - [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(794), - [646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(184), - [649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(772), - [652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(163), - [655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(745), - [658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(744), - [661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(741), - [664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(740), - [667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(739), - [670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1050), - [673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(166), - [676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(166), - [679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(169), - [682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(133), - [685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(7), - [688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(16), - [691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(495), - [694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(494), - [697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(493), - [700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(475), - [703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(68), - [706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(160), - [709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(930), - [712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(709), - [715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(212), - [718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(799), - [721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(210), - [724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(713), - [727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(712), - [730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(791), - [733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(715), - [736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(801), - [739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(937), - [742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(211), - [745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(211), - [748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(204), - [751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(145), - [754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(12), - [757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(15), - [760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(403), - [763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(276), - [766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(275), - [769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(274), - [772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(78), - [775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(139), - [778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(920), - [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(778), - [788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(189), - [791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(779), - [794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(188), - [797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(780), - [800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(781), - [803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(782), - [806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(783), - [809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(784), - [812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(846), - [815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(186), - [818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(186), - [821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(185), - [824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(152), - [827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(4), - [830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(22), - [833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(407), - [836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(408), - [839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(409), - [842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(365), - [845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(96), - [848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(155), - [851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1004), - [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(743), - [859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(213), - [862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(757), - [865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(162), - [868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(704), - [871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(705), - [874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(706), - [877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(707), - [880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(708), - [883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(928), - [886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(161), - [889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(161), - [892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(202), - [895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(136), - [898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(8), - [901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(14), - [904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(277), - [907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(278), - [910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(279), - [913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(240), - [916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(104), - [919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(149), - [922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(962), - [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), - [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), - [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15), - [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(748), - [974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(194), - [977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(749), - [980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(193), - [983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(750), - [986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(751), - [989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(752), - [992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(753), - [995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(754), - [998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(879), - [1001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(192), - [1004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(192), - [1007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(191), - [1010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(137), - [1013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(9), - [1016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(18), - [1019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(362), - [1022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(363), - [1025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(364), - [1028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(320), - [1031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(110), - [1034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(141), - [1037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(990), - [1040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [1042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [1044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(723), - [1047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(200), - [1050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(724), - [1053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(199), - [1056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(725), - [1059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(726), - [1062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(727), - [1065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(728), - [1068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(729), - [1071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(909), - [1074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(197), - [1077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(197), - [1080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(196), - [1083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(143), - [1086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(6), - [1089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(13), - [1092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(317), - [1095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(318), - [1098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(319), - [1101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(280), - [1104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(123), - [1107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(134), - [1110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(976), - [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [1115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(770), - [1118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(531), - [1121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(769), - [1124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(532), - [1127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(768), - [1130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(767), - [1133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(766), - [1136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(763), - [1139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(762), - [1142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(875), - [1145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(533), - [1148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(533), - [1151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(534), - [1154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(164), - [1157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(20), - [1160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(23), - [1163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(595), - [1166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(539), - [1169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(540), - [1172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(602), - [1175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(129), - [1178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(165), - [1181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1046), - [1184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), - [1186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element, 1), - [1188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__element, 1), - [1190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), - [1192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), - [1194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), - [1196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verbatim, 3, .production_id = 1), - [1198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verbatim, 3, .production_id = 1), - [1200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [1202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [1204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), - [1206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), - [1208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [1212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), - [1214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [1216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [1218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [1220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [1222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [1224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [1226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), - [1228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [1230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), - [1232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), - [1234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [1240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__text, 2), - [1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__text, 2), - [1244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(167), - [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), - [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), - [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [1257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(174), - [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [1264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), - [1266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), - [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [1272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(183), - [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), - [1279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(187), - [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [1286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(190), - [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), - [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [1295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(195), - [1298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), - [1300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(198), - [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [1307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(201), - [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), - [1312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(203), - [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), - [1317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(205), - [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [1324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), - [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [1332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, .dynamic_precedence = 1000, .production_id = 7), - [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, .dynamic_precedence = 1000, .production_id = 7), - [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collapsed_reference_link, 2), - [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collapsed_reference_link, 2), - [1340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_attribute, 2), - [1342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_attribute, 2), - [1344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_autolink, 3), - [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_autolink, 3), - [1348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_footnote_reference, 3, .production_id = 3), - [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_footnote_reference, 3, .production_id = 3), - [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_inline, 4), - [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_inline, 4), - [1356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_attribute, 3, .production_id = 5), - [1358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_attribute, 3, .production_id = 5), - [1360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_span, 4), - [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_span, 4), - [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math, 4, .production_id = 6), - [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math, 4, .production_id = 6), - [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comment, 3), - [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 3), - [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_emphasis, 4, .dynamic_precedence = 1000), - [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emphasis, 4, .dynamic_precedence = 1000), - [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strong, 4, .dynamic_precedence = 1000), - [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strong, 4, .dynamic_precedence = 1000), - [1380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_superscript, 4, .dynamic_precedence = 1000, .production_id = 7), - [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_superscript, 4, .dynamic_precedence = 1000, .production_id = 7), - [1384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_highlighted, 4, .dynamic_precedence = 1000, .production_id = 7), - [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlighted, 4, .dynamic_precedence = 1000, .production_id = 7), - [1388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 4, .dynamic_precedence = 1000, .production_id = 7), - [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 4, .dynamic_precedence = 1000, .production_id = 7), - [1392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete, 4, .dynamic_precedence = 1000, .production_id = 7), - [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete, 4, .dynamic_precedence = 1000, .production_id = 7), - [1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_label, 3, .production_id = 8), - [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_label, 3, .production_id = 8), - [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link_destination, 3), - [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link_destination, 3), - [1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_inline_attribute, 3), - [1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_inline_attribute, 3), - [1408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_image, 2), - [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_image, 2), - [1412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_reference_image, 2), - [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_reference_image, 2), - [1416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(950), - [1419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_todo, 1), - [1421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_todo, 1), - [1423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_note, 1), - [1425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note, 1), - [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 1), - [1429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), - [1431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(795), - [1434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collapsed_reference_image, 2), - [1436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collapsed_reference_image, 2), - [1438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__comment_with_spaces, 2), - [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_with_spaces, 2), - [1442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 2), - [1444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 2), - [1446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hard_line_break, 2), - [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hard_line_break, 2), - [1450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_reference_link, 2), - [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_reference_link, 2), - [1454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 2), - [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 2), - [1458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 3), - [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 3), - [1462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(714), - [1465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(964), - [1468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(800), - [1471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(978), - [1474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(809), - [1477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(992), - [1480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(742), - [1483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(922), - [1486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1006), - [1489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(734), - [1492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(936), - [1495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1020), - [1498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(702), - [1501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(717), - [1504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1009), - [1507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1034), - [1510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(513), - [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), - [1519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(756), - [1522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element, 2), - [1524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__element, 2), - [1526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_without_trailing_space, 1), - [1528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(755), - [1531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1048), - [1534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_without_trailing_space, 2), - [1536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), SHIFT(738), - [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [1631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), - [1633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(999), - [1636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(998), - [1639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(655), - [1642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(810), - [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [1649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 1, .production_id = 2), - [1651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_with_newline, 4, .production_id = 7), - [1653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 1), - [1655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value, 3), - [1657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2), - [1659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1), - [1661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_with_newline, 3), - [1663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 3), + [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), + [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), + [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), + [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), + [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), + [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), + [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), + [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), + [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), + [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), + [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline, 1), + [469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(820), + [472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(195), + [475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(819), + [478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(196), + [481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(807), + [484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(795), + [487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(788), + [490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(787), + [493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(786), + [496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1085), + [499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(140), + [502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(140), + [505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(198), + [508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(770), + [511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(699), + [514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(700), + [517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(240), + [520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(241), + [523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(242), + [526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(190), + [529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(14), + [532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(131), + [535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1005), + [538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), + [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(776), + [545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(172), + [548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(777), + [551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(171), + [554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(778), + [557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(779), + [560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(780), + [563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(781), + [566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(782), + [569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(979), + [572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(139), + [575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(139), + [578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(170), + [581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(739), + [584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(784), + [587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(785), + [590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(359), + [593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(360), + [596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(361), + [599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(176), + [602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(36), + [605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(129), + [608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1050), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(719), + [616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(194), + [619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(720), + [622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(208), + [625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(721), + [628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(722), + [631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(723), + [634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(724), + [637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(725), + [640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1096), + [643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(136), + [646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(136), + [649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(189), + [652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(763), + [655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(727), + [658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(728), + [661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(273), + [664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(274), + [667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(275), + [670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(202), + [673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(64), + [676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(125), + [679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1020), + [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(809), + [687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(165), + [690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(810), + [693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(162), + [696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(811), + [699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(812), + [702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(813), + [705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(814), + [708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(815), + [711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(943), + [714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(134), + [717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(134), + [720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(161), + [723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(737), + [726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(817), + [729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(818), + [732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(402), + [735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(403), + [738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(404), + [741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(169), + [744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(68), + [747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(127), + [750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1065), + [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), + [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), + [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), + [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(741), + [804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(203), + [807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(701), + [810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(191), + [813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(705), + [816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(706), + [819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(707), + [822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(708), + [825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(709), + [828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1130), + [831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(143), + [834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(143), + [837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(207), + [840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(712), + [843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(713), + [846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(714), + [849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(512), + [852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(220), + [855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(222), + [858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(205), + [861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(71), + [864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(130), + [867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1135), + [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(842), + [875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(181), + [878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(843), + [881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(182), + [884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(844), + [887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(845), + [890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(846), + [893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(847), + [896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(848), + [899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(890), + [902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(133), + [905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(133), + [908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(192), + [911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(735), + [914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(850), + [917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(851), + [920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(445), + [923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(446), + [926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(447), + [929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(160), + [932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(83), + [935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(123), + [938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1080), + [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(747), + [948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(180), + [951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(748), + [954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(179), + [957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(749), + [960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(750), + [963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(751), + [966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(752), + [969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(753), + [972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1028), + [975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(141), + [978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(141), + [981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(177), + [984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(743), + [987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(755), + [990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(756), + [993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(316), + [996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(317), + [999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(318), + [1002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(193), + [1005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(108), + [1008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(128), + [1011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1035), + [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [1016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(840), + [1019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(175), + [1022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(839), + [1025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(174), + [1028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(838), + [1031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(837), + [1034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(836), + [1037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(835), + [1040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(834), + [1043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(915), + [1046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(135), + [1049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(135), + [1052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(164), + [1055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(716), + [1058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(833), + [1061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(832), + [1064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(505), + [1067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(504), + [1070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(503), + [1073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(183), + [1076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(112), + [1079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(122), + [1082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1110), + [1085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(865), + [1088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(168), + [1091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(864), + [1094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(166), + [1097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(863), + [1100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(862), + [1103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(861), + [1106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(860), + [1109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(859), + [1112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(882), + [1115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(137), + [1118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(137), + [1121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(156), + [1124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(726), + [1127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(855), + [1130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(854), + [1133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(488), + [1136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(489), + [1139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(490), + [1142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(197), + [1145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(116), + [1148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(121), + [1151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1095), + [1154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [1156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(822), + [1159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(363), + [1162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(821), + [1165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(356), + [1168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(816), + [1171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(808), + [1174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(806), + [1177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(805), + [1180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(804), + [1183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(948), + [1186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(145), + [1189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(145), + [1192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(348), + [1195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(711), + [1198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(803), + [1201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(802), + [1204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(570), + [1207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(571), + [1210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(572), + [1213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(212), + [1216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(119), + [1219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(132), + [1222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1125), + [1225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element, 1), + [1227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__element, 1), + [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), + [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), + [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), + [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), + [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), + [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), + [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), + [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), + [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), + [1253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verbatim, 3, .production_id = 1), + [1255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verbatim, 3, .production_id = 1), + [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [1279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), + [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), + [1283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), + [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [1287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__text, 2), + [1289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__text, 2), + [1291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(158), + [1294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(159), + [1297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 1), + [1299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), + [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), + [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), + [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [1307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(163), + [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), + [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [1316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(167), + [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), + [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), + [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [1329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(173), + [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [1336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), + [1338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), + [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [1350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), + [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [1354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(185), + [1357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), + [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [1361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(188), + [1364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), + [1366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), + [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [1370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), + [1372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), + [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [1382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), + [1384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(199), + [1387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(200), + [1390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(201), + [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [1397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(204), + [1400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), + [1402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), + [1404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), + [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [1408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlighted, 4, .dynamic_precedence = 1000, .production_id = 4), + [1412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_highlighted, 4, .dynamic_precedence = 1000, .production_id = 4), + [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_with_spaces, 2), + [1416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__comment_with_spaces, 2), + [1418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), + [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collapsed_reference_image, 2), + [1422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collapsed_reference_image, 2), + [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_reference_image, 2), + [1426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_reference_image, 2), + [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_image, 2), + [1430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_image, 2), + [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collapsed_reference_link, 2), + [1434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collapsed_reference_link, 2), + [1436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_reference_link, 2), + [1438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_reference_link, 2), + [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 2), + [1442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 2), + [1444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_todo, 1), + [1446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_todo, 1), + [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 3), + [1450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 3), + [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note, 1), + [1454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_note, 1), + [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_autolink, 3), + [1458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_autolink, 3), + [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_footnote_reference, 3), + [1462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_footnote_reference, 3), + [1464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_inline, 4), + [1466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_inline, 4), + [1468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), + [1470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math, 4, .production_id = 3), + [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math, 4, .production_id = 3), + [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 3), + [1476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comment, 3), + [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emphasis, 4, .dynamic_precedence = 1000), + [1480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_emphasis, 4, .dynamic_precedence = 1000), + [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strong, 4, .dynamic_precedence = 1000), + [1484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strong, 4, .dynamic_precedence = 1000), + [1486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_superscript, 4, .dynamic_precedence = 1000, .production_id = 4), + [1488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_superscript, 4, .dynamic_precedence = 1000, .production_id = 4), + [1490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, .dynamic_precedence = 1000, .production_id = 4), + [1492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, .dynamic_precedence = 1000, .production_id = 4), + [1494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 4, .dynamic_precedence = 1000, .production_id = 4), + [1496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 4, .dynamic_precedence = 1000, .production_id = 4), + [1498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete, 4, .dynamic_precedence = 1000, .production_id = 4), + [1500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete, 4, .dynamic_precedence = 1000, .production_id = 4), + [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_label, 3, .production_id = 5), + [1504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_label, 3, .production_id = 5), + [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link_destination, 3), + [1508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link_destination, 3), + [1510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 2), + [1512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 2), + [1514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_inline_attribute, 3), + [1516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_inline_attribute, 3), + [1518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1008), + [1521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hard_line_break, 2), + [1523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hard_line_break, 2), + [1525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1023), + [1528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(993), + [1531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1038), + [1534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(337), + [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), + [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [1541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1053), + [1544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [1546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1068), + [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), + [1551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1083), + [1554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(977), + [1557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1098), + [1560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1113), + [1563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1086), + [1566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_attribute, 4, .dynamic_precedence = 1000, .production_id = 7), + [1568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_attribute, 4, .dynamic_precedence = 1000, .production_id = 7), + [1570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_span, 2, .dynamic_precedence = -1000), + [1572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_span, 2, .dynamic_precedence = -1000), + [1574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_attribute_fallback, 2), + [1576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_attribute_fallback, 2), + [1578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_attribute, 3, .dynamic_precedence = 1000), + [1580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_attribute, 3, .dynamic_precedence = 1000), + [1582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element, 2), + [1584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__element, 2), + [1586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_without_trailing_space, 1), + [1588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_without_trailing_space, 2), + [1590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1128), + [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [1621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(1047), + [1624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(988), + [1627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(646), + [1630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(740), + [1633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), + [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [1663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_with_newline, 3), [1665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_name, 1), - [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), - [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), - [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), - [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), - [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [1685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_text, 3), - [1687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_text, 3), - [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), - [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [1705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), - [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [1711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), - [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), - [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), - [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), - [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), - [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), - [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), - [1767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__comment_with_newline_repeat1, 2), SHIFT_REPEAT(698), - [1770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_with_newline_repeat1, 2), - [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [1780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), - [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [1792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_with_newline_repeat1, 1), - [1794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_description, 2), - [1796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_description, 2), - [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_description, 3, .production_id = 4), - [1804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_description, 3, .production_id = 4), - [1806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(255), - [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [1811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(281), - [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [1816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(281), - [1819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(281), - [1822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(281), - [1825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(281), - [1828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(254), - [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [1833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(291), - [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [1838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(291), - [1841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(254), - [1844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(254), - [1847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(254), - [1850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(375), - [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [1855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(402), - [1858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [1860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(402), - [1863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(402), - [1866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(402), - [1869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(402), - [1872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(323), - [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [1877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(323), - [1880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(323), - [1883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(323), - [1886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(323), - [1889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(323), - [1892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(323), - [1895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(402), - [1898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(402), - [1901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(336), - [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [1906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(336), - [1909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(406), - [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [1914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(406), - [1917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(375), - [1920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(469), - [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [1925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(469), - [1928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(469), - [1931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(281), - [1934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(469), - [1937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(469), - [1940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(554), - [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [1945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(554), - [1948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(368), - [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [1953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(368), - [1956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(368), - [1959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(368), - [1962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(368), - [1965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(368), - [1968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(368), - [1971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(281), - [1974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(255), - [1977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(381), - [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [1982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(381), - [1985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(467), - [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [1990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(542), - [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [1995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(542), - [1998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(467), - [2001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(243), - [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [2006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(542), - [2009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(542), - [2012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(542), - [2015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(542), - [2018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(542), - [2021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(243), - [2024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(469), - [2027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(243), - [2030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(512), - [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [2035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(512), - [2038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(243), - [2041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(243), - [2044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(413), - [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [2049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(413), - [2052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(413), - [2055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(413), - [2058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(413), - [2061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(413), - [2064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(413), - [2067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(500), - [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [2072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(243), - [2075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(243), - [2078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(500), - [2081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(426), - [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [2086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(426), - [2089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(254), - [2092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(500), - [2095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(500), - [2098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(469), - [2101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(500), - [2104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(500), - [2107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(500), - [2110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(254), - [2113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(254), - [2116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(457), - [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [2121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(457), - [2124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(457), - [2127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(457), - [2130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(457), - [2133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(457), - [2136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(457), - [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [2141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(470), - [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [2146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(470), - [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [2521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key, 1), - [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [2551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_label, 1), - [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [2607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline, 1), - [2609] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [1667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_with_newline, 4, .production_id = 4), + [1669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 1, .production_id = 2), + [1671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 1), + [1673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2), + [1675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1), + [1677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value, 3), + [1679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 3), + [1681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_text, 1), + [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [1685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_text, 1), + [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [1711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), + [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), + [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), + [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), + [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [1737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), + [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), + [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [1755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), + [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), + [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), + [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [1773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__comment_with_newline_repeat1, 2), SHIFT_REPEAT(692), + [1776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_with_newline_repeat1, 2), + [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [1780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), + [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [1784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), + [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [1792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), + [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [1796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), + [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [1804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), + [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [1814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), + [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [1820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_with_newline_repeat1, 1), + [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bracketed_text, 4, .dynamic_precedence = 1000), + [1824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bracketed_text, 4, .dynamic_precedence = 1000), + [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [1830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_description, 4, .dynamic_precedence = 1000, .production_id = 6), + [1832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_description, 4, .dynamic_precedence = 1000, .production_id = 6), + [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_description, 3, .dynamic_precedence = 1000), + [1836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_description, 3, .dynamic_precedence = 1000), + [1838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(398), + [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [1845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(243), + [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [1850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(243), + [1853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(238), + [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [1858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(254), + [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [1863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(254), + [1866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_attribute_begin, 1), SHIFT(539), + [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [1871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(238), + [1874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(238), + [1877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(238), + [1880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(238), + [1883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(238), + [1886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [1888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(238), + [1891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(238), + [1894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(292), + [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [1899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(279), + [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [1904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(279), + [1907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(279), + [1910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(279), + [1913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(279), + [1916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(279), + [1919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(279), + [1922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(279), + [1925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(279), + [1928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(292), + [1931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(293), + [1934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [1936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(293), + [1939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_attribute_begin, 1), SHIFT(588), + [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [1944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_attribute_begin, 1), SHIFT(585), + [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [1951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(238), + [1954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(398), + [1957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(398), + [1960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(398), + [1963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(322), + [1966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [1968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(322), + [1971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(322), + [1974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(322), + [1977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(322), + [1980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(322), + [1983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(322), + [1986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(398), + [1989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(322), + [1992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(322), + [1995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(398), + [1998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(336), + [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [2003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(336), + [2006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_attribute_begin, 1), SHIFT(610), + [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [2011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(398), + [2014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(398), + [2017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(399), + [2020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [2022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(399), + [2025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_attribute_begin, 1), SHIFT(550), + [2028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [2030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(398), + [2033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(277), + [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [2038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(277), + [2041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(277), + [2044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(365), + [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [2049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(365), + [2052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(365), + [2055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(365), + [2058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(365), + [2061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(365), + [2064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(365), + [2067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(277), + [2070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(365), + [2073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(365), + [2076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(243), + [2079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(243), + [2082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(243), + [2085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(379), + [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [2090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(379), + [2093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_attribute_begin, 1), SHIFT(561), + [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [2098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(277), + [2101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(243), + [2104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(277), + [2107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_attribute_begin, 1), SHIFT(616), + [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [2112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(587), + [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [2117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(587), + [2120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(277), + [2123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(277), + [2126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(574), + [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [2131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(574), + [2134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(574), + [2137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(574), + [2140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(574), + [2143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(243), + [2146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(574), + [2149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(408), + [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [2154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(408), + [2157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(408), + [2160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(408), + [2163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(408), + [2166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(408), + [2169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(408), + [2172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(574), + [2175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(408), + [2178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(408), + [2181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(243), + [2184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(243), + [2187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(574), + [2190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(574), + [2193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(422), + [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [2198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(422), + [2201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_attribute_begin, 1), SHIFT(555), + [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [2206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(221), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [2211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_attribute_begin, 1), SHIFT(548), + [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [2216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(461), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [2221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(461), + [2224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(221), + [2227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_attribute_begin, 1), SHIFT(529), + [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [2232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(492), + [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [2237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(492), + [2240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(492), + [2243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(492), + [2246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(492), + [2249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(492), + [2252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(492), + [2255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(492), + [2258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(492), + [2261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_attribute_begin, 1), SHIFT(528), + [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [2266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(451), + [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [2271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(451), + [2274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(451), + [2277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(451), + [2280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(451), + [2283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(451), + [2286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(451), + [2289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(507), + [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [2294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(451), + [2297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(451), + [2300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(507), + [2303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(277), + [2306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(493), + [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [2311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(493), + [2314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(465), + [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [2319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(465), + [2322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_attribute_begin, 1), SHIFT(542), + [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [2327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(493), + [2330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(493), + [2333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(493), + [2336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(493), + [2339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(493), + [2342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(493), + [2345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(493), + [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [2706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key, 1), + [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [2788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_label, 1), + [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [2848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline, 1), + [2850] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), }; enum ts_external_scanner_symbol_identifiers { @@ -39588,9 +39136,15 @@ enum ts_external_scanner_symbol_identifiers { ts_external_token_insert_end = 15, ts_external_token__delete_mark_begin = 16, ts_external_token_delete_end = 17, - ts_external_token__in_fallback = 18, - ts_external_token__non_whitespace_check = 19, - ts_external_token__error = 20, + ts_external_token__bracketed_text_mark_begin = 18, + ts_external_token__bracketed_text_end = 19, + ts_external_token__image_description_mark_begin = 20, + ts_external_token__image_description_end = 21, + ts_external_token__inline_attribute_mark_begin = 22, + ts_external_token__inline_attribute_end = 23, + ts_external_token__in_fallback = 24, + ts_external_token__non_whitespace_check = 25, + ts_external_token__error = 26, }; static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { @@ -39612,12 +39166,18 @@ static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { [ts_external_token_insert_end] = sym_insert_end, [ts_external_token__delete_mark_begin] = sym__delete_mark_begin, [ts_external_token_delete_end] = sym_delete_end, + [ts_external_token__bracketed_text_mark_begin] = sym__bracketed_text_mark_begin, + [ts_external_token__bracketed_text_end] = sym__bracketed_text_end, + [ts_external_token__image_description_mark_begin] = sym__image_description_mark_begin, + [ts_external_token__image_description_end] = sym__image_description_end, + [ts_external_token__inline_attribute_mark_begin] = sym__inline_attribute_mark_begin, + [ts_external_token__inline_attribute_end] = sym__inline_attribute_end, [ts_external_token__in_fallback] = sym__in_fallback, [ts_external_token__non_whitespace_check] = sym__non_whitespace_check, [ts_external_token__error] = sym__error, }; -static const bool ts_external_scanner_states[41][EXTERNAL_TOKEN_COUNT] = { +static const bool ts_external_scanner_states[54][EXTERNAL_TOKEN_COUNT] = { [1] = { [ts_external_token__ignored] = true, [ts_external_token__verbatim_begin] = true, @@ -39637,6 +39197,12 @@ static const bool ts_external_scanner_states[41][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_insert_end] = true, [ts_external_token__delete_mark_begin] = true, [ts_external_token_delete_end] = true, + [ts_external_token__bracketed_text_mark_begin] = true, + [ts_external_token__bracketed_text_end] = true, + [ts_external_token__image_description_mark_begin] = true, + [ts_external_token__image_description_end] = true, + [ts_external_token__inline_attribute_mark_begin] = true, + [ts_external_token__inline_attribute_end] = true, [ts_external_token__in_fallback] = true, [ts_external_token__non_whitespace_check] = true, [ts_external_token__error] = true, @@ -39646,44 +39212,43 @@ static const bool ts_external_scanner_states[41][EXTERNAL_TOKEN_COUNT] = { }, [3] = { [ts_external_token__verbatim_begin] = true, - [ts_external_token_delete_end] = true, + [ts_external_token__image_description_end] = true, }, [4] = { [ts_external_token__verbatim_begin] = true, - [ts_external_token_insert_end] = true, + [ts_external_token_highlighted_end] = true, }, [5] = { [ts_external_token__verbatim_begin] = true, - [ts_external_token_strong_end] = true, + [ts_external_token_superscript_end] = true, }, [6] = { [ts_external_token__verbatim_begin] = true, - [ts_external_token_subscript_end] = true, + [ts_external_token_delete_end] = true, }, [7] = { [ts_external_token__verbatim_begin] = true, - [ts_external_token_superscript_end] = true, + [ts_external_token_insert_end] = true, }, [8] = { [ts_external_token__verbatim_begin] = true, - [ts_external_token_highlighted_end] = true, + [ts_external_token_subscript_end] = true, }, [9] = { [ts_external_token__verbatim_begin] = true, - [ts_external_token_emphasis_end] = true, + [ts_external_token__bracketed_text_end] = true, }, [10] = { [ts_external_token__verbatim_begin] = true, - [ts_external_token_superscript_end] = true, - [ts_external_token__non_whitespace_check] = true, + [ts_external_token_emphasis_end] = true, }, [11] = { [ts_external_token__verbatim_begin] = true, - [ts_external_token__non_whitespace_check] = true, + [ts_external_token_strong_end] = true, }, [12] = { [ts_external_token__verbatim_begin] = true, - [ts_external_token_emphasis_end] = true, + [ts_external_token_strong_end] = true, [ts_external_token__non_whitespace_check] = true, }, [13] = { @@ -39693,98 +39258,147 @@ static const bool ts_external_scanner_states[41][EXTERNAL_TOKEN_COUNT] = { }, [14] = { [ts_external_token__verbatim_begin] = true, - [ts_external_token_insert_end] = true, + [ts_external_token__image_description_end] = true, [ts_external_token__non_whitespace_check] = true, }, [15] = { [ts_external_token__verbatim_begin] = true, - [ts_external_token_highlighted_end] = true, + [ts_external_token_insert_end] = true, [ts_external_token__non_whitespace_check] = true, }, [16] = { [ts_external_token__verbatim_begin] = true, - [ts_external_token_subscript_end] = true, + [ts_external_token__bracketed_text_end] = true, [ts_external_token__non_whitespace_check] = true, }, [17] = { [ts_external_token__verbatim_begin] = true, - [ts_external_token_strong_end] = true, + [ts_external_token_emphasis_end] = true, [ts_external_token__non_whitespace_check] = true, }, [18] = { - [ts_external_token__strong_mark_begin] = true, - [ts_external_token__in_fallback] = true, + [ts_external_token__verbatim_begin] = true, + [ts_external_token_highlighted_end] = true, + [ts_external_token__non_whitespace_check] = true, }, [19] = { - [ts_external_token__superscript_mark_begin] = true, - [ts_external_token__in_fallback] = true, + [ts_external_token__verbatim_begin] = true, + [ts_external_token__non_whitespace_check] = true, }, [20] = { - [ts_external_token__subscript_mark_begin] = true, - [ts_external_token__in_fallback] = true, + [ts_external_token__verbatim_begin] = true, + [ts_external_token_subscript_end] = true, + [ts_external_token__non_whitespace_check] = true, }, [21] = { - [ts_external_token__highlighted_mark_begin] = true, - [ts_external_token__in_fallback] = true, + [ts_external_token__verbatim_begin] = true, + [ts_external_token_superscript_end] = true, + [ts_external_token__non_whitespace_check] = true, }, [22] = { - [ts_external_token__insert_mark_begin] = true, - [ts_external_token__in_fallback] = true, + [ts_external_token__inline_attribute_end] = true, }, [23] = { - [ts_external_token__delete_mark_begin] = true, + [ts_external_token__superscript_mark_begin] = true, [ts_external_token__in_fallback] = true, }, [24] = { - [ts_external_token__emphasis_mark_begin] = true, + [ts_external_token__image_description_mark_begin] = true, [ts_external_token__in_fallback] = true, }, [25] = { - [ts_external_token_delete_end] = true, + [ts_external_token__bracketed_text_mark_begin] = true, + [ts_external_token__in_fallback] = true, }, [26] = { - [ts_external_token_subscript_end] = true, + [ts_external_token__strong_mark_begin] = true, + [ts_external_token__in_fallback] = true, }, [27] = { - [ts_external_token_insert_end] = true, + [ts_external_token__emphasis_mark_begin] = true, + [ts_external_token__in_fallback] = true, }, [28] = { - [ts_external_token__verbatim_end] = true, + [ts_external_token__inline_attribute_mark_begin] = true, + [ts_external_token__in_fallback] = true, }, [29] = { - [ts_external_token_emphasis_end] = true, + [ts_external_token__subscript_mark_begin] = true, + [ts_external_token__in_fallback] = true, }, [30] = { - [ts_external_token_strong_end] = true, + [ts_external_token__highlighted_mark_begin] = true, + [ts_external_token__in_fallback] = true, }, [31] = { - [ts_external_token_superscript_end] = true, + [ts_external_token__insert_mark_begin] = true, + [ts_external_token__in_fallback] = true, }, [32] = { - [ts_external_token_highlighted_end] = true, + [ts_external_token__delete_mark_begin] = true, + [ts_external_token__in_fallback] = true, }, [33] = { - [ts_external_token__verbatim_content] = true, + [ts_external_token_superscript_end] = true, }, [34] = { - [ts_external_token__delete_mark_begin] = true, + [ts_external_token_subscript_end] = true, }, [35] = { - [ts_external_token__insert_mark_begin] = true, + [ts_external_token_highlighted_end] = true, }, [36] = { - [ts_external_token__highlighted_mark_begin] = true, + [ts_external_token_insert_end] = true, }, [37] = { - [ts_external_token__subscript_mark_begin] = true, + [ts_external_token_delete_end] = true, }, [38] = { - [ts_external_token__superscript_mark_begin] = true, + [ts_external_token_strong_end] = true, }, [39] = { - [ts_external_token__strong_mark_begin] = true, + [ts_external_token_emphasis_end] = true, }, [40] = { + [ts_external_token__verbatim_end] = true, + }, + [41] = { + [ts_external_token__verbatim_content] = true, + }, + [42] = { + [ts_external_token__inline_attribute_mark_begin] = true, + }, + [43] = { + [ts_external_token__bracketed_text_end] = true, + }, + [44] = { + [ts_external_token__image_description_end] = true, + }, + [45] = { + [ts_external_token__bracketed_text_mark_begin] = true, + }, + [46] = { + [ts_external_token__image_description_mark_begin] = true, + }, + [47] = { + [ts_external_token__delete_mark_begin] = true, + }, + [48] = { + [ts_external_token__insert_mark_begin] = true, + }, + [49] = { + [ts_external_token__highlighted_mark_begin] = true, + }, + [50] = { + [ts_external_token__subscript_mark_begin] = true, + }, + [51] = { + [ts_external_token__superscript_mark_begin] = true, + }, + [52] = { + [ts_external_token__strong_mark_begin] = true, + }, + [53] = { [ts_external_token__emphasis_mark_begin] = true, }, }; diff --git a/tree-sitter-djot-inline/src/scanner.c b/tree-sitter-djot-inline/src/scanner.c index f36ceff..d6727ca 100644 --- a/tree-sitter-djot-inline/src/scanner.c +++ b/tree-sitter-djot-inline/src/scanner.c @@ -5,6 +5,10 @@ // #define DEBUG +// TODO elements we need to handle in the scanner +// (precedence problems where the first closing element should get priority) +// footnote_reference + // The different tokens the external scanner support // See `externals` in `grammar.js` for a description of most of them. typedef enum { @@ -34,6 +38,13 @@ typedef enum { DELETE_MARK_BEGIN, DELETE_END, + IMAGE_DESCRIPTION_MARK_BEGIN, + IMAGE_DESCRIPTION_END, + BRACKETED_TEXT_MARK_BEGIN, + BRACKETED_TEXT_END, + INLINE_ATTRIBUTE_MARK_BEGIN, + INLINE_ATTRIBUTE_END, + // If we're scanning a fallback token then we should accept the beginning // markers, but not push anything on the stack. IN_FALLBACK, @@ -52,6 +63,11 @@ typedef enum { HIGHLIGHTED, INSERT, DELETE, + // Covers the `![text]` part in images. + IMAGE_DESCRIPTION, + // Covers the initial `[text]` part in spans and links. + BRACKETED_TEXT, + INLINE_ATTRIBUTE, } ElementType; typedef struct { @@ -219,6 +235,21 @@ static Element *find_element(Scanner *s, ElementType type) { return NULL; } +typedef enum { + SpanSingle, + SpanBracketed, + SpanBracketedAndSingle, + SpanBracketedAndSingleNoWhitespace, +} SpanType; + +static bool scan_single_span_end(TSLexer *lexer, char marker) { + if (lexer->lookahead != marker) { + return false; + } + advance(lexer); + return true; +} + // Match a `_}` style token. static bool scan_bracketed_span_end(TSLexer *lexer, char marker) { if (lexer->lookahead != marker) { @@ -300,8 +331,7 @@ static bool mark_span_begin(Scanner *s, TSLexer *lexer, // Parse a span ending token, either `_` or `_}`. static bool parse_span_end(Scanner *s, TSLexer *lexer, ElementType element, - TokenType token, char marker, - bool whitespace_sensitive, bool bracketed_only) { + TokenType token, char marker, SpanType span_type) { // Only close the topmost element, so in: // // _a *b_ @@ -318,14 +348,27 @@ static bool parse_span_end(Scanner *s, TSLexer *lexer, ElementType element, return false; } - if (bracketed_only) { + switch (span_type) { + case SpanSingle: + if (!scan_single_span_end(lexer, marker)) { + return false; + } + break; + case SpanBracketed: if (!scan_bracketed_span_end(lexer, marker)) { return false; } - } else { - if (!scan_span_end(lexer, marker, whitespace_sensitive)) { + break; + case SpanBracketedAndSingle: + if (!scan_span_end(lexer, marker, false)) { + return false; + } + break; + case SpanBracketedAndSingleNoWhitespace: + if (!scan_span_end(lexer, marker, true)) { return false; } + break; } lexer->mark_end(lexer); @@ -338,11 +381,9 @@ static bool parse_span_end(Scanner *s, TSLexer *lexer, ElementType element, // delimiters. static bool parse_span(Scanner *s, TSLexer *lexer, const bool *valid_symbols, ElementType element, TokenType begin_token, - TokenType end_token, char marker, - bool whitespace_sensitive, bool bracketed_only) { + TokenType end_token, char marker, SpanType span_type) { if (valid_symbols[end_token] && - parse_span_end(s, lexer, element, end_token, marker, whitespace_sensitive, - bracketed_only)) { + parse_span_end(s, lexer, element, end_token, marker, span_type)) { return true; } if (valid_symbols[begin_token] && @@ -355,37 +396,57 @@ static bool parse_span(Scanner *s, TSLexer *lexer, const bool *valid_symbols, static bool parse_emphasis(Scanner *s, TSLexer *lexer, const bool *valid_symbols) { return parse_span(s, lexer, valid_symbols, EMPHASIS, EMPHASIS_MARK_BEGIN, - EMPHASIS_END, '_', true, false); + EMPHASIS_END, '_', SpanBracketedAndSingleNoWhitespace); } static bool parse_strong(Scanner *s, TSLexer *lexer, const bool *valid_symbols) { return parse_span(s, lexer, valid_symbols, STRONG, STRONG_MARK_BEGIN, - STRONG_END, '*', true, false); + STRONG_END, '*', SpanBracketedAndSingleNoWhitespace); } static bool parse_superscript(Scanner *s, TSLexer *lexer, const bool *valid_symbols) { return parse_span(s, lexer, valid_symbols, SUPERSCRIPT, - SUPERSCRIPT_MARK_BEGIN, SUPERSCRIPT_END, '^', false, false); + SUPERSCRIPT_MARK_BEGIN, SUPERSCRIPT_END, '^', + SpanBracketedAndSingle); } static bool parse_subscript(Scanner *s, TSLexer *lexer, const bool *valid_symbols) { return parse_span(s, lexer, valid_symbols, SUBSCRIPT, SUBSCRIPT_MARK_BEGIN, - SUBSCRIPT_END, '~', false, false); + SUBSCRIPT_END, '~', SpanBracketedAndSingle); } static bool parse_highlighted(Scanner *s, TSLexer *lexer, const bool *valid_symbols) { return parse_span(s, lexer, valid_symbols, HIGHLIGHTED, - HIGHLIGHTED_MARK_BEGIN, HIGHLIGHTED_END, '=', false, true); + HIGHLIGHTED_MARK_BEGIN, HIGHLIGHTED_END, '=', + SpanBracketed); } static bool parse_insert(Scanner *s, TSLexer *lexer, const bool *valid_symbols) { return parse_span(s, lexer, valid_symbols, INSERT, INSERT_MARK_BEGIN, - INSERT_END, '+', false, true); + INSERT_END, '+', SpanBracketed); } static bool parse_delete(Scanner *s, TSLexer *lexer, const bool *valid_symbols) { return parse_span(s, lexer, valid_symbols, DELETE, DELETE_MARK_BEGIN, - DELETE_END, '-', false, true); + DELETE_END, '-', SpanBracketed); +} +static bool parse_image_description(Scanner *s, TSLexer *lexer, + const bool *valid_symbols) { + return parse_span(s, lexer, valid_symbols, IMAGE_DESCRIPTION, + IMAGE_DESCRIPTION_MARK_BEGIN, IMAGE_DESCRIPTION_END, ']', + SpanSingle); +} +static bool parse_bracketed_text(Scanner *s, TSLexer *lexer, + const bool *valid_symbols) { + return parse_span(s, lexer, valid_symbols, BRACKETED_TEXT, + BRACKETED_TEXT_MARK_BEGIN, BRACKETED_TEXT_END, ']', + SpanSingle); +} +static bool parse_inline_attribute(Scanner *s, TSLexer *lexer, + const bool *valid_symbols) { + return parse_span(s, lexer, valid_symbols, INLINE_ATTRIBUTE, + INLINE_ATTRIBUTE_MARK_BEGIN, INLINE_ATTRIBUTE_END, '}', + SpanSingle); } static bool check_non_whitespace(Scanner *s, TSLexer *lexer) { @@ -457,6 +518,15 @@ bool tree_sitter_djot_inline_external_scanner_scan(void *payload, if (parse_delete(s, lexer, valid_symbols)) { return true; } + if (parse_image_description(s, lexer, valid_symbols)) { + return true; + } + if (parse_bracketed_text(s, lexer, valid_symbols)) { + return true; + } + if (parse_inline_attribute(s, lexer, valid_symbols)) { + return true; + } switch (lexer->lookahead) { case '`': @@ -557,6 +627,18 @@ static char *token_type_s(TokenType t) { return "DELETE_MARK_BEGIN"; case DELETE_END: return "DELETE_END"; + case IMAGE_DESCRIPTION_MARK_BEGIN: + return "IMAGE_DESCRIPTION_MARK_BEGIN"; + case IMAGE_DESCRIPTION_END: + return "IMAGE_DESCRIPTION_END"; + case BRACKETED_TEXT_MARK_BEGIN: + return "BRACKETED_TEXT_MARK_BEGIN"; + case BRACKETED_TEXT_END: + return "BRACKETED_TEXT_END"; + case INLINE_ATTRIBUTE_MARK_BEGIN: + return "INLINE_ATTRIBUTE_MARK_BEGIN"; + case INLINE_ATTRIBUTE_END: + return "INLINE_ATTRIBUTE_END"; case IN_FALLBACK: return "IN_FALLBACK"; @@ -588,6 +670,12 @@ static char *element_type_s(ElementType t) { return "INSERT"; case DELETE: return "DELETE"; + case IMAGE_DESCRIPTION: + return "IMAGE_DESCRIPTION"; + case BRACKETED_TEXT: + return "BRACKETED_TEXT"; + case INLINE_ATTRIBUTE: + return "INLINE_ATTRIBUTE"; } } diff --git a/tree-sitter-djot-inline/test/corpus/syntax.txt b/tree-sitter-djot-inline/test/corpus/syntax.txt index 4d78b7d..55e286f 100644 --- a/tree-sitter-djot-inline/test/corpus/syntax.txt +++ b/tree-sitter-djot-inline/test/corpus/syntax.txt @@ -1,16 +1,3 @@ -=============================================================================== -Emphasis -=============================================================================== -With _em_ - -------------------------------------------------------------------------------- - -(inline - (emphasis - (emphasis_begin) - (content) - (emphasis_end))) - =============================================================================== Verbatim: single =============================================================================== @@ -225,15 +212,57 @@ Image: full reference (image_description) (link_label))) +=============================================================================== +Image: precedance +=============================================================================== +![x *](y)* + +![x *][y]* + +![x *][]* + +*![*](y) + +*![*][y] + +*![*][] + +------------------------------------------------------------------------------- + +(inline + (inline_image + (image_description) + (inline_link_destination)) + (full_reference_image + (image_description) + (link_label)) + (collapsed_reference_image + (image_description)) + (strong + (strong_begin) + (content) + (strong_end)) + (strong + (strong_begin) + (content) + (strong_end)) + (strong + (strong_begin) + (content) + (strong_end))) + =============================================================================== Emphasis =============================================================================== -With _emphasis_ here +With _em_ ------------------------------------------------------------------------------- (inline - (emphasis (emphasis_begin) (content) (emphasis_end))) + (emphasis + (emphasis_begin) + (content) + (emphasis_end))) =============================================================================== Strong @@ -246,7 +275,7 @@ With *strong* here (strong (strong_begin) (content) (strong_end))) =============================================================================== -Emphasis and strong +Mixed emphasis and strong =============================================================================== With _*strong* emphasis_ here With *_emphasis_ strong* here @@ -859,15 +888,24 @@ break (hard_line_break)) =============================================================================== -Symbol +Symbol: Allowed characters =============================================================================== -With :wink: here +With :wi_nk-12: here ------------------------------------------------------------------------------- (inline (symbol)) +=============================================================================== +Symbol: No symbol characters +=============================================================================== +With :win.k: here + +------------------------------------------------------------------------------- + +(inline) + =============================================================================== Link: inline =============================================================================== @@ -888,6 +926,20 @@ newline](/url) ------------------------------------------------------------------------------- +(inline + (inline_link + (link_text) + (inline_link_destination))) + +=============================================================================== +Link: with url newline +=============================================================================== +[text](url +here +go) + +------------------------------------------------------------------------------- + (inline (inline_link (link_text) @@ -940,6 +992,45 @@ With [a reference][ref] (link_text) (link_label))) +=============================================================================== +Link: precedance +=============================================================================== +[x *](y)* + +[x *][y]* + +[x *][]* + +*[*](y) + +*[*][y] + +*[*][] + +------------------------------------------------------------------------------- + +(inline + (inline_link + (link_text) + (inline_link_destination)) + (full_reference_link + (link_text) + (link_label)) + (collapsed_reference_link + (link_text)) + (strong + (strong_begin) + (content) + (strong_end)) + (strong + (strong_begin) + (content) + (strong_end)) + (strong + (strong_begin) + (content) + (strong_end))) + =============================================================================== Inline attribute: mixed =============================================================================== @@ -1084,7 +1175,7 @@ Before{#id % escape \% %} (backslash_escape)))))) =============================================================================== -Span +Span: With inline attributes =============================================================================== One [two three]{.class #id} @@ -1098,6 +1189,40 @@ One [two three]{.class (class) (identifier))))) +=============================================================================== +Span: Precedence +=============================================================================== +*[*]{.c} Generates string then an inline attribute + +[*]{.c*} The Djot playground doesn't handle this case properly + +[*]{.c}* Should be a span + +------------------------------------------------------------------------------- + +(inline + (strong + (strong_begin) + (content) + (strong_end)) + (inline_attribute (args (class))) + (strong + (strong_begin) + (content) + (strong_end)) + (span + (inline_attribute + (args + (class))))) + +=============================================================================== +Span: Broken inline attribute +=============================================================================== +[x]{.c +------------------------------------------------------------------------------- + +(inline) + =============================================================================== Autolink =============================================================================== diff --git a/tree-sitter-djot/binding.gyp b/tree-sitter-djot/binding.gyp index 6b5ce8a..5935bf7 100644 --- a/tree-sitter-djot/binding.gyp +++ b/tree-sitter-djot/binding.gyp @@ -11,7 +11,7 @@ "sources": [ "bindings/node/binding.cc", "src/parser.c", - # NOTE: if your language has an external scanner, add it here. + "src/scanner.c", ], "cflags_c": [ "-std=c11", diff --git a/tree-sitter-djot/package.json b/tree-sitter-djot/package.json index 390d966..66a79c6 100644 --- a/tree-sitter-djot/package.json +++ b/tree-sitter-djot/package.json @@ -32,13 +32,16 @@ }, "tree-sitter": [ { - "scope": "source.djot", + "scope": "text.djot", "file-types": [ "dj" ], "injection-regex": "djot", "highlights": [ "queries/highlights.scm" + ], + "injections": [ + "queries/injections.scm" ] } ], From d33cce92b89fa5d289ca04d69e171e2ed7945d5b Mon Sep 17 00:00:00 2001 From: Jonas Hietala Date: Thu, 29 Aug 2024 10:50:44 +0200 Subject: [PATCH 16/46] Move footnote markers to external scanner --- tree-sitter-djot-inline/grammar.js | 22 +- tree-sitter-djot-inline/src/grammar.json | 79 +- tree-sitter-djot-inline/src/node-types.json | 13 +- tree-sitter-djot-inline/src/parser.c | 36304 ++++++++-------- tree-sitter-djot-inline/src/scanner.c | 22 +- .../test/corpus/syntax.txt | 79 +- 6 files changed, 18787 insertions(+), 17732 deletions(-) diff --git a/tree-sitter-djot-inline/grammar.js b/tree-sitter-djot-inline/grammar.js index 5f764e9..b605db6 100644 --- a/tree-sitter-djot-inline/grammar.js +++ b/tree-sitter-djot-inline/grammar.js @@ -13,9 +13,10 @@ module.exports = grammar({ [$.delete_begin, $._symbol_fallback], [$._bracketed_text_begin, $._symbol_fallback], [$._image_description_begin, $._symbol_fallback], - [$._inline_attribute_begin, $._inline_attribute_fallback], - + [$.footnote_marker_begin, $._symbol_fallback], [$.math, $._symbol_fallback], + + [$._inline_attribute_begin, $._inline_attribute_fallback], ], rules: { @@ -156,10 +157,12 @@ module.exports = grammar({ footnote_reference: ($) => seq( - alias("[^", $.footnote_marker_begin), + $.footnote_marker_begin, + $._footnote_marker_mark_begin, $.reference_label, - alias("]", $.footnote_marker_end), + prec.dynamic(1000, $.footnote_marker_end), ), + footnote_marker_begin: (_) => "[^", reference_label: ($) => $._id, _id: (_) => /[\w_-]+/, @@ -315,13 +318,18 @@ module.exports = grammar({ seq("{+", choice($._insert_mark_begin, $._in_fallback)), seq("{-", choice($._delete_mark_begin, $._in_fallback)), + // Footnotes + seq("[^", choice($._footnote_marker_mark_begin, $._in_fallback)), + // Fallbacks for spans, links and images seq("![", choice($._image_description_mark_begin, $._in_fallback)), seq("[", choice($._bracketed_text_mark_begin, $._in_fallback)), - // "[^", - // "{", + // Autolink "<", + seq("<", /[^>\s]+/), + + // Math "$", ), @@ -377,6 +385,8 @@ module.exports = grammar({ $._image_description_end, $._inline_attribute_mark_begin, $._inline_attribute_end, + $._footnote_marker_mark_begin, + $.footnote_marker_end, $._in_fallback, $._non_whitespace_check, diff --git a/tree-sitter-djot-inline/src/grammar.json b/tree-sitter-djot-inline/src/grammar.json index 8140580..bff1965 100644 --- a/tree-sitter-djot-inline/src/grammar.json +++ b/tree-sitter-djot-inline/src/grammar.json @@ -609,29 +609,31 @@ "type": "SEQ", "members": [ { - "type": "ALIAS", - "content": { - "type": "STRING", - "value": "[^" - }, - "named": true, - "value": "footnote_marker_begin" + "type": "SYMBOL", + "name": "footnote_marker_begin" + }, + { + "type": "SYMBOL", + "name": "_footnote_marker_mark_begin" }, { "type": "SYMBOL", "name": "reference_label" }, { - "type": "ALIAS", + "type": "PREC_DYNAMIC", + "value": 1000, "content": { - "type": "STRING", - "value": "]" - }, - "named": true, - "value": "footnote_marker_end" + "type": "SYMBOL", + "name": "footnote_marker_end" + } } ] }, + "footnote_marker_begin": { + "type": "STRING", + "value": "[^" + }, "reference_label": { "type": "SYMBOL", "name": "_id" @@ -1464,6 +1466,28 @@ } ] }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "[^" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_footnote_marker_mark_begin" + }, + { + "type": "SYMBOL", + "name": "_in_fallback" + } + ] + } + ] + }, { "type": "SEQ", "members": [ @@ -1512,6 +1536,19 @@ "type": "STRING", "value": "<" }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "<" + }, + { + "type": "PATTERN", + "value": "[^>\\s]+" + } + ] + }, { "type": "STRING", "value": "$" @@ -1702,12 +1739,16 @@ "_symbol_fallback" ], [ - "_inline_attribute_begin", - "_inline_attribute_fallback" + "footnote_marker_begin", + "_symbol_fallback" ], [ "math", "_symbol_fallback" + ], + [ + "_inline_attribute_begin", + "_inline_attribute_fallback" ] ], "precedences": [], @@ -1808,6 +1849,14 @@ "type": "SYMBOL", "name": "_inline_attribute_end" }, + { + "type": "SYMBOL", + "name": "_footnote_marker_mark_begin" + }, + { + "type": "SYMBOL", + "name": "footnote_marker_end" + }, { "type": "SYMBOL", "name": "_in_fallback" diff --git a/tree-sitter-djot-inline/src/node-types.json b/tree-sitter-djot-inline/src/node-types.json index baa5266..1adef57 100644 --- a/tree-sitter-djot-inline/src/node-types.json +++ b/tree-sitter-djot-inline/src/node-types.json @@ -272,6 +272,11 @@ "named": true, "fields": {} }, + { + "type": "footnote_marker_begin", + "named": true, + "fields": {} + }, { "type": "footnote_reference", "named": true, @@ -1419,6 +1424,10 @@ "type": "[]", "named": false }, + { + "type": "[^", + "named": false + }, { "type": "\\", "named": false @@ -1463,10 +1472,6 @@ "type": "fixme", "named": true }, - { - "type": "footnote_marker_begin", - "named": true - }, { "type": "footnote_marker_end", "named": true diff --git a/tree-sitter-djot-inline/src/parser.c b/tree-sitter-djot-inline/src/parser.c index 4d1ff81..84ef100 100644 --- a/tree-sitter-djot-inline/src/parser.c +++ b/tree-sitter-djot-inline/src/parser.c @@ -5,12 +5,12 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 1217 +#define STATE_COUNT 1241 #define LARGE_STATE_COUNT 121 -#define SYMBOL_COUNT 144 +#define SYMBOL_COUNT 146 #define ALIAS_COUNT 8 -#define TOKEN_COUNT 82 -#define EXTERNAL_TOKEN_COUNT 27 +#define TOKEN_COUNT 83 +#define EXTERNAL_TOKEN_COUNT 29 #define FIELD_COUNT 0 #define MAX_ALIAS_SEQUENCE_LENGTH 4 #define PRODUCTION_ID_COUNT 8 @@ -38,135 +38,137 @@ enum ts_symbol_identifiers { anon_sym_GT = 20, sym_symbol = 21, anon_sym_LBRACK_CARET = 22, - anon_sym_RBRACK = 23, - sym__id = 24, - anon_sym_LBRACK_RBRACK = 25, - anon_sym_BANG_LBRACK = 26, - anon_sym_LBRACE = 27, - anon_sym_LBRACK = 28, - anon_sym_RBRACK2 = 29, - anon_sym_LPAREN = 30, - aux_sym_inline_link_destination_token1 = 31, - anon_sym_RPAREN = 32, - anon_sym_RBRACE = 33, - anon_sym_PERCENT = 34, - aux_sym__comment_with_newline_token1 = 35, - anon_sym_LBRACE_EQ2 = 36, - anon_sym_DOLLAR = 37, - anon_sym_TODO = 38, - anon_sym_WIP = 39, - anon_sym_NOTE = 40, - anon_sym_INFO = 41, - anon_sym_XXX = 42, - sym_fixme = 43, - sym_language = 44, - sym__whitespace = 45, - sym__whitespace1 = 46, - sym__newline = 47, - aux_sym__text_token1 = 48, - anon_sym_DOT = 49, - sym_identifier = 50, - anon_sym_EQ = 51, - anon_sym_DQUOTE = 52, - aux_sym_value_token1 = 53, - aux_sym_value_token2 = 54, - sym__ignored = 55, - sym__verbatim_begin = 56, - sym__verbatim_end = 57, - sym__verbatim_content = 58, - sym__emphasis_mark_begin = 59, - sym_emphasis_end = 60, - sym__strong_mark_begin = 61, - sym_strong_end = 62, - sym__superscript_mark_begin = 63, - sym_superscript_end = 64, - sym__subscript_mark_begin = 65, - sym_subscript_end = 66, - sym__highlighted_mark_begin = 67, - sym_highlighted_end = 68, - sym__insert_mark_begin = 69, - sym_insert_end = 70, - sym__delete_mark_begin = 71, - sym_delete_end = 72, - sym__bracketed_text_mark_begin = 73, - sym__bracketed_text_end = 74, - sym__image_description_mark_begin = 75, - sym__image_description_end = 76, - sym__inline_attribute_mark_begin = 77, - sym__inline_attribute_end = 78, - sym__in_fallback = 79, - sym__non_whitespace_check = 80, - sym__error = 81, - sym_inline = 82, - sym__inline = 83, - sym__inline_without_trailing_space = 84, - sym__element = 85, - sym_emphasis = 86, - sym_emphasis_begin = 87, - sym_strong = 88, - sym_strong_begin = 89, - sym_superscript = 90, - sym_superscript_begin = 91, - sym_subscript = 92, - sym_subscript_begin = 93, - sym_highlighted = 94, - sym_highlighted_begin = 95, - sym_insert = 96, - sym_insert_begin = 97, - sym_delete = 98, - sym_delete_begin = 99, - sym_hard_line_break = 100, - sym__smart_punctuation = 101, - sym_autolink = 102, - sym_footnote_reference = 103, - sym_reference_label = 104, - sym__image = 105, - sym_full_reference_image = 106, - sym_collapsed_reference_image = 107, - sym_inline_image = 108, - sym__image_description = 109, - sym__image_description_begin = 110, - sym__link = 111, - sym_full_reference_link = 112, - sym_collapsed_reference_link = 113, - sym_inline_link = 114, - sym_link_text = 115, - sym_span = 116, - sym_inline_attribute = 117, - sym__inline_attribute_begin = 118, - sym__bracketed_text = 119, - sym__bracketed_text_begin = 120, - sym__link_label = 121, - sym_inline_link_destination = 122, - sym_comment = 123, - sym__comment_with_spaces = 124, - sym__comment_with_newline = 125, - sym_raw_inline = 126, - sym_raw_inline_attribute = 127, - sym_math = 128, - sym_verbatim = 129, - sym__todo_highlights = 130, - sym_todo = 131, - sym_note = 132, - sym__symbol_fallback = 133, - sym__inline_attribute_fallback = 134, - aux_sym__text = 135, - sym_class_name = 136, - sym_class = 137, - sym_key_value = 138, - sym_key = 139, - sym_value = 140, - aux_sym__inline_repeat1 = 141, - aux_sym_inline_attribute_repeat1 = 142, - aux_sym__comment_with_newline_repeat1 = 143, - alias_sym_args = 144, - alias_sym_image_description = 145, - alias_sym_link_label = 146, - alias_sym_math_marker = 147, - alias_sym_math_marker_begin = 148, - alias_sym_math_marker_end = 149, - alias_sym_verbatim_marker_begin = 150, - alias_sym_verbatim_marker_end = 151, + sym__id = 23, + anon_sym_LBRACK_RBRACK = 24, + anon_sym_BANG_LBRACK = 25, + anon_sym_LBRACE = 26, + anon_sym_LBRACK = 27, + anon_sym_RBRACK = 28, + anon_sym_LPAREN = 29, + aux_sym_inline_link_destination_token1 = 30, + anon_sym_RPAREN = 31, + anon_sym_RBRACE = 32, + anon_sym_PERCENT = 33, + aux_sym__comment_with_newline_token1 = 34, + anon_sym_LBRACE_EQ2 = 35, + anon_sym_DOLLAR = 36, + anon_sym_TODO = 37, + anon_sym_WIP = 38, + anon_sym_NOTE = 39, + anon_sym_INFO = 40, + anon_sym_XXX = 41, + sym_fixme = 42, + sym_language = 43, + sym__whitespace = 44, + sym__whitespace1 = 45, + sym__newline = 46, + aux_sym__text_token1 = 47, + anon_sym_DOT = 48, + sym_identifier = 49, + anon_sym_EQ = 50, + anon_sym_DQUOTE = 51, + aux_sym_value_token1 = 52, + aux_sym_value_token2 = 53, + sym__ignored = 54, + sym__verbatim_begin = 55, + sym__verbatim_end = 56, + sym__verbatim_content = 57, + sym__emphasis_mark_begin = 58, + sym_emphasis_end = 59, + sym__strong_mark_begin = 60, + sym_strong_end = 61, + sym__superscript_mark_begin = 62, + sym_superscript_end = 63, + sym__subscript_mark_begin = 64, + sym_subscript_end = 65, + sym__highlighted_mark_begin = 66, + sym_highlighted_end = 67, + sym__insert_mark_begin = 68, + sym_insert_end = 69, + sym__delete_mark_begin = 70, + sym_delete_end = 71, + sym__bracketed_text_mark_begin = 72, + sym__bracketed_text_end = 73, + sym__image_description_mark_begin = 74, + sym__image_description_end = 75, + sym__inline_attribute_mark_begin = 76, + sym__inline_attribute_end = 77, + sym__footnote_marker_mark_begin = 78, + sym_footnote_marker_end = 79, + sym__in_fallback = 80, + sym__non_whitespace_check = 81, + sym__error = 82, + sym_inline = 83, + sym__inline = 84, + sym__inline_without_trailing_space = 85, + sym__element = 86, + sym_emphasis = 87, + sym_emphasis_begin = 88, + sym_strong = 89, + sym_strong_begin = 90, + sym_superscript = 91, + sym_superscript_begin = 92, + sym_subscript = 93, + sym_subscript_begin = 94, + sym_highlighted = 95, + sym_highlighted_begin = 96, + sym_insert = 97, + sym_insert_begin = 98, + sym_delete = 99, + sym_delete_begin = 100, + sym_hard_line_break = 101, + sym__smart_punctuation = 102, + sym_autolink = 103, + sym_footnote_reference = 104, + sym_footnote_marker_begin = 105, + sym_reference_label = 106, + sym__image = 107, + sym_full_reference_image = 108, + sym_collapsed_reference_image = 109, + sym_inline_image = 110, + sym__image_description = 111, + sym__image_description_begin = 112, + sym__link = 113, + sym_full_reference_link = 114, + sym_collapsed_reference_link = 115, + sym_inline_link = 116, + sym_link_text = 117, + sym_span = 118, + sym_inline_attribute = 119, + sym__inline_attribute_begin = 120, + sym__bracketed_text = 121, + sym__bracketed_text_begin = 122, + sym__link_label = 123, + sym_inline_link_destination = 124, + sym_comment = 125, + sym__comment_with_spaces = 126, + sym__comment_with_newline = 127, + sym_raw_inline = 128, + sym_raw_inline_attribute = 129, + sym_math = 130, + sym_verbatim = 131, + sym__todo_highlights = 132, + sym_todo = 133, + sym_note = 134, + sym__symbol_fallback = 135, + sym__inline_attribute_fallback = 136, + aux_sym__text = 137, + sym_class_name = 138, + sym_class = 139, + sym_key_value = 140, + sym_key = 141, + sym_value = 142, + aux_sym__inline_repeat1 = 143, + aux_sym_inline_attribute_repeat1 = 144, + aux_sym__comment_with_newline_repeat1 = 145, + alias_sym_args = 146, + alias_sym_image_description = 147, + alias_sym_link_label = 148, + alias_sym_math_marker = 149, + alias_sym_math_marker_begin = 150, + alias_sym_math_marker_end = 151, + alias_sym_verbatim_marker_begin = 152, + alias_sym_verbatim_marker_end = 153, }; static const char * const ts_symbol_names[] = { @@ -192,14 +194,13 @@ static const char * const ts_symbol_names[] = { [aux_sym_autolink_token1] = "autolink_token1", [anon_sym_GT] = ">", [sym_symbol] = "symbol", - [anon_sym_LBRACK_CARET] = "footnote_marker_begin", - [anon_sym_RBRACK] = "footnote_marker_end", + [anon_sym_LBRACK_CARET] = "[^", [sym__id] = "_id", [anon_sym_LBRACK_RBRACK] = "[]", [anon_sym_BANG_LBRACK] = "![", [anon_sym_LBRACE] = "{", [anon_sym_LBRACK] = "[", - [anon_sym_RBRACK2] = "]", + [anon_sym_RBRACK] = "]", [anon_sym_LPAREN] = "(", [aux_sym_inline_link_destination_token1] = "inline_link_destination_token1", [anon_sym_RPAREN] = ")", @@ -249,6 +250,8 @@ static const char * const ts_symbol_names[] = { [sym__image_description_end] = "_image_description_end", [sym__inline_attribute_mark_begin] = "_inline_attribute_mark_begin", [sym__inline_attribute_end] = "_inline_attribute_end", + [sym__footnote_marker_mark_begin] = "_footnote_marker_mark_begin", + [sym_footnote_marker_end] = "footnote_marker_end", [sym__in_fallback] = "_in_fallback", [sym__non_whitespace_check] = "_non_whitespace_check", [sym__error] = "_error", @@ -274,6 +277,7 @@ static const char * const ts_symbol_names[] = { [sym__smart_punctuation] = "_smart_punctuation", [sym_autolink] = "autolink", [sym_footnote_reference] = "footnote_reference", + [sym_footnote_marker_begin] = "footnote_marker_begin", [sym_reference_label] = "reference_label", [sym__image] = "_image", [sym_full_reference_image] = "full_reference_image", @@ -348,13 +352,12 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_GT] = anon_sym_GT, [sym_symbol] = sym_symbol, [anon_sym_LBRACK_CARET] = anon_sym_LBRACK_CARET, - [anon_sym_RBRACK] = anon_sym_RBRACK, [sym__id] = sym__id, [anon_sym_LBRACK_RBRACK] = anon_sym_LBRACK_RBRACK, [anon_sym_BANG_LBRACK] = anon_sym_BANG_LBRACK, [anon_sym_LBRACE] = anon_sym_LBRACE, [anon_sym_LBRACK] = anon_sym_LBRACK, - [anon_sym_RBRACK2] = anon_sym_RBRACK, + [anon_sym_RBRACK] = anon_sym_RBRACK, [anon_sym_LPAREN] = anon_sym_LPAREN, [aux_sym_inline_link_destination_token1] = aux_sym_inline_link_destination_token1, [anon_sym_RPAREN] = anon_sym_RPAREN, @@ -404,6 +407,8 @@ static const TSSymbol ts_symbol_map[] = { [sym__image_description_end] = sym__image_description_end, [sym__inline_attribute_mark_begin] = sym__inline_attribute_mark_begin, [sym__inline_attribute_end] = sym__inline_attribute_end, + [sym__footnote_marker_mark_begin] = sym__footnote_marker_mark_begin, + [sym_footnote_marker_end] = sym_footnote_marker_end, [sym__in_fallback] = sym__in_fallback, [sym__non_whitespace_check] = sym__non_whitespace_check, [sym__error] = sym__error, @@ -429,6 +434,7 @@ static const TSSymbol ts_symbol_map[] = { [sym__smart_punctuation] = sym__smart_punctuation, [sym_autolink] = sym_autolink, [sym_footnote_reference] = sym_footnote_reference, + [sym_footnote_marker_begin] = sym_footnote_marker_begin, [sym_reference_label] = sym_reference_label, [sym__image] = sym__image, [sym_full_reference_image] = sym_full_reference_image, @@ -570,11 +576,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { }, [anon_sym_LBRACK_CARET] = { .visible = true, - .named = true, - }, - [anon_sym_RBRACK] = { - .visible = true, - .named = true, + .named = false, }, [sym__id] = { .visible = false, @@ -596,7 +598,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_RBRACK2] = { + [anon_sym_RBRACK] = { .visible = true, .named = false, }, @@ -796,6 +798,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, + [sym__footnote_marker_mark_begin] = { + .visible = false, + .named = true, + }, + [sym_footnote_marker_end] = { + .visible = true, + .named = true, + }, [sym__in_fallback] = { .visible = false, .named = true, @@ -896,6 +906,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_footnote_marker_begin] = { + .visible = true, + .named = true, + }, [sym_reference_label] = { .visible = true, .named = true, @@ -1143,121 +1157,121 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3] = 3, [4] = 4, [5] = 5, - [6] = 6, + [6] = 4, [7] = 7, - [8] = 3, + [8] = 8, [9] = 9, [10] = 10, - [11] = 11, - [12] = 4, - [13] = 13, - [14] = 14, - [15] = 5, - [16] = 6, + [11] = 5, + [12] = 12, + [13] = 10, + [14] = 3, + [15] = 15, + [16] = 4, [17] = 7, - [18] = 11, + [18] = 5, [19] = 10, [20] = 9, - [21] = 13, - [22] = 3, + [21] = 21, + [22] = 8, [23] = 9, [24] = 10, - [25] = 11, - [26] = 4, - [27] = 5, - [28] = 6, + [25] = 5, + [26] = 12, + [27] = 15, + [28] = 4, [29] = 7, - [30] = 3, - [31] = 3, - [32] = 9, - [33] = 7, - [34] = 6, - [35] = 10, - [36] = 14, - [37] = 13, - [38] = 11, - [39] = 5, - [40] = 4, - [41] = 5, + [30] = 8, + [31] = 9, + [32] = 8, + [33] = 10, + [34] = 7, + [35] = 4, + [36] = 5, + [37] = 21, + [38] = 3, + [39] = 12, + [40] = 15, + [41] = 15, [42] = 4, - [43] = 6, - [44] = 11, - [45] = 7, - [46] = 3, - [47] = 9, - [48] = 10, - [49] = 11, - [50] = 4, - [51] = 10, - [52] = 11, - [53] = 10, - [54] = 9, - [55] = 3, - [56] = 7, - [57] = 6, + [43] = 12, + [44] = 7, + [45] = 5, + [46] = 8, + [47] = 3, + [48] = 9, + [49] = 10, + [50] = 10, + [51] = 5, + [52] = 10, + [53] = 9, + [54] = 8, + [55] = 7, + [56] = 4, + [57] = 15, [58] = 5, [59] = 9, - [60] = 4, - [61] = 5, - [62] = 3, + [60] = 12, + [61] = 12, + [62] = 8, [63] = 7, - [64] = 14, - [65] = 13, - [66] = 6, - [67] = 5, - [68] = 14, + [64] = 21, + [65] = 21, + [66] = 4, + [67] = 15, + [68] = 12, [69] = 69, - [70] = 13, - [71] = 14, - [72] = 13, - [73] = 11, - [74] = 10, - [75] = 9, - [76] = 3, - [77] = 7, - [78] = 6, + [70] = 3, + [71] = 21, + [72] = 3, + [73] = 15, + [74] = 21, + [75] = 12, + [76] = 8, + [77] = 15, + [78] = 4, [79] = 7, - [80] = 3, - [81] = 9, - [82] = 6, - [83] = 14, + [80] = 8, + [81] = 7, + [82] = 3, + [83] = 9, [84] = 10, - [85] = 11, - [86] = 4, - [87] = 5, - [88] = 6, + [85] = 5, + [86] = 12, + [87] = 15, + [88] = 4, [89] = 7, - [90] = 3, + [90] = 8, [91] = 9, - [92] = 5, - [93] = 10, - [94] = 11, - [95] = 4, - [96] = 4, - [97] = 11, - [98] = 5, - [99] = 10, - [100] = 6, - [101] = 9, - [102] = 7, - [103] = 13, - [104] = 7, - [105] = 13, - [106] = 4, - [107] = 5, - [108] = 14, - [109] = 6, - [110] = 13, - [111] = 3, - [112] = 14, - [113] = 4, + [92] = 10, + [93] = 9, + [94] = 5, + [95] = 12, + [96] = 15, + [97] = 15, + [98] = 12, + [99] = 4, + [100] = 5, + [101] = 7, + [102] = 10, + [103] = 8, + [104] = 9, + [105] = 8, + [106] = 7, + [107] = 3, + [108] = 4, + [109] = 21, + [110] = 3, + [111] = 15, + [112] = 21, + [113] = 12, [114] = 9, - [115] = 10, - [116] = 14, - [117] = 11, - [118] = 118, - [119] = 14, - [120] = 118, + [115] = 21, + [116] = 5, + [117] = 10, + [118] = 21, + [119] = 119, + [120] = 119, [121] = 121, [122] = 121, [123] = 121, @@ -1281,96 +1295,96 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [141] = 133, [142] = 133, [143] = 133, - [144] = 144, - [145] = 133, - [146] = 144, - [147] = 144, - [148] = 144, - [149] = 144, - [150] = 144, - [151] = 144, - [152] = 144, - [153] = 144, - [154] = 144, - [155] = 144, + [144] = 133, + [145] = 145, + [146] = 145, + [147] = 145, + [148] = 145, + [149] = 145, + [150] = 145, + [151] = 145, + [152] = 145, + [153] = 145, + [154] = 145, + [155] = 145, [156] = 156, [157] = 157, [158] = 158, - [159] = 158, + [159] = 159, [160] = 160, [161] = 156, - [162] = 162, - [163] = 158, - [164] = 156, - [165] = 157, - [166] = 162, - [167] = 158, + [162] = 158, + [163] = 160, + [164] = 159, + [165] = 165, + [166] = 156, + [167] = 159, [168] = 157, [169] = 160, - [170] = 156, - [171] = 162, - [172] = 157, + [170] = 159, + [171] = 156, + [172] = 158, [173] = 158, - [174] = 162, + [174] = 165, [175] = 157, - [176] = 160, - [177] = 156, - [178] = 157, - [179] = 162, - [180] = 157, - [181] = 157, - [182] = 162, - [183] = 160, - [184] = 162, - [185] = 158, - [186] = 156, - [187] = 144, - [188] = 158, - [189] = 156, - [190] = 160, - [191] = 162, - [192] = 156, - [193] = 160, - [194] = 157, + [176] = 156, + [177] = 160, + [178] = 159, + [179] = 159, + [180] = 156, + [181] = 158, + [182] = 160, + [183] = 165, + [184] = 165, + [185] = 157, + [186] = 159, + [187] = 160, + [188] = 157, + [189] = 160, + [190] = 158, + [191] = 160, + [192] = 159, + [193] = 165, + [194] = 158, [195] = 157, - [196] = 162, - [197] = 160, + [196] = 165, + [197] = 159, [198] = 156, [199] = 158, [200] = 158, - [201] = 158, - [202] = 160, - [203] = 157, - [204] = 158, - [205] = 160, - [206] = 156, - [207] = 156, - [208] = 162, - [209] = 162, - [210] = 210, - [211] = 211, - [212] = 160, - [213] = 211, - [214] = 214, - [215] = 215, - [216] = 216, - [217] = 217, - [218] = 218, - [219] = 219, - [220] = 220, + [201] = 145, + [202] = 156, + [203] = 165, + [204] = 157, + [205] = 156, + [206] = 160, + [207] = 159, + [208] = 156, + [209] = 158, + [210] = 157, + [211] = 157, + [212] = 157, + [213] = 156, + [214] = 158, + [215] = 165, + [216] = 165, + [217] = 157, + [218] = 160, + [219] = 159, + [220] = 160, [221] = 221, [222] = 222, - [223] = 223, + [223] = 165, [224] = 224, [225] = 225, - [226] = 160, + [226] = 226, [227] = 227, [228] = 228, [229] = 229, [230] = 230, [231] = 231, [232] = 232, - [233] = 210, + [233] = 221, [234] = 234, [235] = 235, [236] = 236, @@ -1378,982 +1392,1006 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [238] = 238, [239] = 239, [240] = 240, - [241] = 220, - [242] = 222, - [243] = 238, + [241] = 241, + [242] = 226, + [243] = 239, [244] = 244, - [245] = 244, - [246] = 211, - [247] = 214, - [248] = 215, - [249] = 216, - [250] = 217, - [251] = 218, - [252] = 219, - [253] = 211, - [254] = 221, - [255] = 214, - [256] = 223, + [245] = 245, + [246] = 165, + [247] = 222, + [248] = 248, + [249] = 249, + [250] = 250, + [251] = 251, + [252] = 252, + [253] = 253, + [254] = 244, + [255] = 255, + [256] = 245, [257] = 224, [258] = 225, - [259] = 215, + [259] = 222, [260] = 227, [261] = 228, [262] = 229, [263] = 230, [264] = 231, [265] = 232, - [266] = 210, + [266] = 221, [267] = 234, [268] = 235, [269] = 236, [270] = 237, - [271] = 216, - [272] = 239, + [271] = 238, + [272] = 248, [273] = 240, - [274] = 220, - [275] = 222, - [276] = 217, - [277] = 238, - [278] = 222, - [279] = 238, - [280] = 244, - [281] = 218, - [282] = 211, - [283] = 214, - [284] = 215, - [285] = 216, - [286] = 217, - [287] = 218, - [288] = 219, - [289] = 219, - [290] = 220, - [291] = 240, - [292] = 221, - [293] = 221, - [294] = 223, - [295] = 223, - [296] = 224, - [297] = 225, - [298] = 224, - [299] = 227, - [300] = 228, - [301] = 229, - [302] = 230, - [303] = 231, - [304] = 232, - [305] = 210, - [306] = 234, - [307] = 235, - [308] = 236, - [309] = 237, - [310] = 225, - [311] = 239, - [312] = 239, - [313] = 227, - [314] = 228, - [315] = 237, - [316] = 240, - [317] = 220, - [318] = 222, - [319] = 236, - [320] = 235, - [321] = 234, - [322] = 238, - [323] = 244, - [324] = 229, - [325] = 211, - [326] = 214, - [327] = 215, - [328] = 216, - [329] = 217, - [330] = 218, - [331] = 219, - [332] = 230, - [333] = 210, - [334] = 232, - [335] = 231, - [336] = 221, - [337] = 158, - [338] = 223, - [339] = 224, - [340] = 225, - [341] = 231, - [342] = 227, - [343] = 228, - [344] = 229, - [345] = 230, - [346] = 231, - [347] = 232, - [348] = 156, - [349] = 234, - [350] = 235, - [351] = 236, - [352] = 237, + [274] = 249, + [275] = 225, + [276] = 253, + [277] = 252, + [278] = 241, + [279] = 226, + [280] = 239, + [281] = 251, + [282] = 250, + [283] = 249, + [284] = 244, + [285] = 245, + [286] = 250, + [287] = 248, + [288] = 222, + [289] = 248, + [290] = 249, + [291] = 250, + [292] = 251, + [293] = 252, + [294] = 253, + [295] = 251, + [296] = 222, + [297] = 252, + [298] = 245, + [299] = 255, + [300] = 253, + [301] = 224, + [302] = 225, + [303] = 255, + [304] = 227, + [305] = 228, + [306] = 229, + [307] = 230, + [308] = 231, + [309] = 232, + [310] = 221, + [311] = 234, + [312] = 235, + [313] = 236, + [314] = 237, + [315] = 238, + [316] = 224, + [317] = 240, + [318] = 244, + [319] = 239, + [320] = 226, + [321] = 241, + [322] = 241, + [323] = 226, + [324] = 239, + [325] = 225, + [326] = 240, + [327] = 227, + [328] = 244, + [329] = 245, + [330] = 228, + [331] = 229, + [332] = 222, + [333] = 248, + [334] = 249, + [335] = 250, + [336] = 251, + [337] = 252, + [338] = 253, + [339] = 230, + [340] = 238, + [341] = 237, + [342] = 236, + [343] = 255, + [344] = 156, + [345] = 224, + [346] = 225, + [347] = 158, + [348] = 227, + [349] = 228, + [350] = 229, + [351] = 230, + [352] = 231, [353] = 232, - [354] = 239, - [355] = 230, - [356] = 162, - [357] = 229, - [358] = 228, - [359] = 240, - [360] = 220, - [361] = 222, - [362] = 227, - [363] = 157, - [364] = 225, - [365] = 238, - [366] = 244, - [367] = 239, - [368] = 211, - [369] = 214, - [370] = 215, - [371] = 216, - [372] = 217, - [373] = 218, - [374] = 219, - [375] = 237, - [376] = 236, - [377] = 224, - [378] = 223, - [379] = 221, - [380] = 235, - [381] = 223, - [382] = 224, - [383] = 225, - [384] = 234, + [354] = 231, + [355] = 234, + [356] = 235, + [357] = 236, + [358] = 237, + [359] = 238, + [360] = 157, + [361] = 240, + [362] = 235, + [363] = 234, + [364] = 221, + [365] = 232, + [366] = 241, + [367] = 226, + [368] = 239, + [369] = 231, + [370] = 230, + [371] = 232, + [372] = 244, + [373] = 245, + [374] = 160, + [375] = 229, + [376] = 222, + [377] = 248, + [378] = 249, + [379] = 250, + [380] = 251, + [381] = 252, + [382] = 253, + [383] = 159, + [384] = 228, [385] = 227, - [386] = 228, - [387] = 229, - [388] = 230, - [389] = 231, - [390] = 232, - [391] = 210, - [392] = 234, - [393] = 235, - [394] = 236, - [395] = 237, - [396] = 210, - [397] = 239, - [398] = 238, - [399] = 221, - [400] = 232, - [401] = 219, - [402] = 240, - [403] = 220, - [404] = 222, - [405] = 218, - [406] = 217, - [407] = 216, - [408] = 238, - [409] = 244, - [410] = 231, - [411] = 211, - [412] = 214, - [413] = 215, - [414] = 216, - [415] = 217, - [416] = 218, - [417] = 219, - [418] = 230, - [419] = 215, - [420] = 214, - [421] = 211, - [422] = 221, - [423] = 229, - [424] = 223, - [425] = 224, - [426] = 225, - [427] = 228, - [428] = 227, - [429] = 228, - [430] = 229, - [431] = 230, - [432] = 231, - [433] = 232, - [434] = 210, - [435] = 234, - [436] = 235, - [437] = 236, - [438] = 237, - [439] = 227, - [440] = 239, - [441] = 225, - [442] = 244, - [443] = 224, - [444] = 160, - [445] = 240, - [446] = 220, - [447] = 222, - [448] = 222, - [449] = 220, - [450] = 240, - [451] = 238, - [452] = 244, - [453] = 223, - [454] = 244, - [455] = 214, - [456] = 215, - [457] = 216, - [458] = 217, - [459] = 218, - [460] = 219, - [461] = 221, - [462] = 210, - [463] = 234, - [464] = 219, - [465] = 221, - [466] = 218, - [467] = 223, - [468] = 224, - [469] = 225, - [470] = 217, - [471] = 227, - [472] = 228, - [473] = 229, - [474] = 230, - [475] = 231, - [476] = 232, - [477] = 210, - [478] = 234, - [479] = 235, - [480] = 236, - [481] = 237, - [482] = 216, - [483] = 239, - [484] = 215, - [485] = 239, - [486] = 214, - [487] = 211, - [488] = 240, - [489] = 220, - [490] = 222, - [491] = 244, - [492] = 238, - [493] = 238, - [494] = 244, - [495] = 235, - [496] = 211, - [497] = 214, - [498] = 215, - [499] = 216, - [500] = 217, - [501] = 218, - [502] = 219, - [503] = 222, - [504] = 220, - [505] = 240, - [506] = 236, - [507] = 221, - [508] = 237, - [509] = 223, - [510] = 224, - [511] = 225, - [512] = 240, - [513] = 227, - [514] = 228, - [515] = 229, - [516] = 230, - [517] = 231, - [518] = 232, - [519] = 210, - [520] = 234, - [521] = 235, - [522] = 236, - [523] = 237, - [524] = 239, - [525] = 219, - [526] = 526, - [527] = 527, - [528] = 528, - [529] = 528, - [530] = 530, - [531] = 526, - [532] = 527, - [533] = 533, - [534] = 526, - [535] = 533, - [536] = 533, - [537] = 533, - [538] = 527, - [539] = 528, - [540] = 526, - [541] = 530, - [542] = 528, - [543] = 530, - [544] = 527, - [545] = 533, - [546] = 526, - [547] = 527, - [548] = 528, - [549] = 533, - [550] = 528, - [551] = 533, - [552] = 530, - [553] = 526, - [554] = 530, - [555] = 528, - [556] = 527, - [557] = 533, - [558] = 527, - [559] = 526, - [560] = 530, - [561] = 528, - [562] = 562, - [563] = 527, - [564] = 526, - [565] = 533, - [566] = 530, - [567] = 567, - [568] = 526, - [569] = 533, - [570] = 240, - [571] = 220, - [572] = 222, - [573] = 530, - [574] = 238, - [575] = 244, - [576] = 527, - [577] = 211, - [578] = 214, - [579] = 215, - [580] = 216, - [581] = 217, - [582] = 218, - [583] = 530, - [584] = 527, - [585] = 528, - [586] = 527, - [587] = 221, - [588] = 528, - [589] = 223, - [590] = 224, - [591] = 225, - [592] = 530, - [593] = 227, - [594] = 228, - [595] = 229, - [596] = 230, - [597] = 231, - [598] = 232, - [599] = 210, - [600] = 234, - [601] = 235, - [602] = 236, - [603] = 237, - [604] = 562, - [605] = 239, - [606] = 567, - [607] = 533, - [608] = 526, - [609] = 526, - [610] = 528, - [611] = 530, - [612] = 526, - [613] = 533, - [614] = 527, - [615] = 530, - [616] = 528, - [617] = 617, - [618] = 618, - [619] = 618, - [620] = 618, - [621] = 618, - [622] = 617, - [623] = 618, - [624] = 617, - [625] = 617, - [626] = 617, - [627] = 627, - [628] = 617, - [629] = 618, - [630] = 617, - [631] = 617, - [632] = 618, - [633] = 617, - [634] = 618, - [635] = 617, - [636] = 618, - [637] = 617, - [638] = 618, - [639] = 617, - [640] = 618, - [641] = 618, - [642] = 642, - [643] = 643, - [644] = 644, - [645] = 645, - [646] = 646, - [647] = 647, - [648] = 648, - [649] = 649, - [650] = 650, - [651] = 651, - [652] = 651, - [653] = 651, - [654] = 651, - [655] = 651, - [656] = 651, - [657] = 651, - [658] = 651, - [659] = 651, - [660] = 651, - [661] = 651, - [662] = 651, + [386] = 240, + [387] = 255, + [388] = 238, + [389] = 224, + [390] = 225, + [391] = 237, + [392] = 227, + [393] = 228, + [394] = 229, + [395] = 230, + [396] = 231, + [397] = 232, + [398] = 221, + [399] = 234, + [400] = 235, + [401] = 236, + [402] = 237, + [403] = 238, + [404] = 236, + [405] = 240, + [406] = 244, + [407] = 235, + [408] = 224, + [409] = 234, + [410] = 241, + [411] = 226, + [412] = 239, + [413] = 255, + [414] = 221, + [415] = 253, + [416] = 244, + [417] = 245, + [418] = 232, + [419] = 252, + [420] = 222, + [421] = 248, + [422] = 249, + [423] = 250, + [424] = 251, + [425] = 252, + [426] = 253, + [427] = 231, + [428] = 251, + [429] = 250, + [430] = 249, + [431] = 255, + [432] = 230, + [433] = 224, + [434] = 225, + [435] = 229, + [436] = 227, + [437] = 228, + [438] = 229, + [439] = 230, + [440] = 231, + [441] = 232, + [442] = 221, + [443] = 234, + [444] = 235, + [445] = 236, + [446] = 237, + [447] = 238, + [448] = 228, + [449] = 240, + [450] = 248, + [451] = 222, + [452] = 227, + [453] = 245, + [454] = 241, + [455] = 226, + [456] = 239, + [457] = 225, + [458] = 165, + [459] = 239, + [460] = 244, + [461] = 245, + [462] = 224, + [463] = 226, + [464] = 255, + [465] = 248, + [466] = 249, + [467] = 250, + [468] = 251, + [469] = 252, + [470] = 253, + [471] = 255, + [472] = 241, + [473] = 221, + [474] = 234, + [475] = 255, + [476] = 253, + [477] = 224, + [478] = 225, + [479] = 252, + [480] = 227, + [481] = 228, + [482] = 229, + [483] = 230, + [484] = 231, + [485] = 232, + [486] = 221, + [487] = 234, + [488] = 235, + [489] = 236, + [490] = 237, + [491] = 238, + [492] = 251, + [493] = 240, + [494] = 250, + [495] = 249, + [496] = 240, + [497] = 248, + [498] = 241, + [499] = 226, + [500] = 239, + [501] = 222, + [502] = 235, + [503] = 244, + [504] = 245, + [505] = 245, + [506] = 244, + [507] = 222, + [508] = 248, + [509] = 249, + [510] = 250, + [511] = 251, + [512] = 252, + [513] = 253, + [514] = 236, + [515] = 239, + [516] = 226, + [517] = 241, + [518] = 255, + [519] = 237, + [520] = 224, + [521] = 225, + [522] = 238, + [523] = 227, + [524] = 228, + [525] = 229, + [526] = 230, + [527] = 231, + [528] = 232, + [529] = 221, + [530] = 234, + [531] = 235, + [532] = 236, + [533] = 237, + [534] = 238, + [535] = 241, + [536] = 240, + [537] = 252, + [538] = 538, + [539] = 539, + [540] = 540, + [541] = 539, + [542] = 542, + [543] = 543, + [544] = 544, + [545] = 542, + [546] = 543, + [547] = 543, + [548] = 544, + [549] = 540, + [550] = 543, + [551] = 539, + [552] = 542, + [553] = 542, + [554] = 539, + [555] = 540, + [556] = 544, + [557] = 540, + [558] = 544, + [559] = 544, + [560] = 540, + [561] = 543, + [562] = 543, + [563] = 539, + [564] = 543, + [565] = 542, + [566] = 539, + [567] = 540, + [568] = 544, + [569] = 543, + [570] = 544, + [571] = 540, + [572] = 538, + [573] = 542, + [574] = 539, + [575] = 540, + [576] = 542, + [577] = 539, + [578] = 544, + [579] = 543, + [580] = 580, + [581] = 542, + [582] = 241, + [583] = 226, + [584] = 239, + [585] = 544, + [586] = 244, + [587] = 245, + [588] = 543, + [589] = 539, + [590] = 222, + [591] = 248, + [592] = 249, + [593] = 250, + [594] = 251, + [595] = 540, + [596] = 238, + [597] = 544, + [598] = 540, + [599] = 544, + [600] = 255, + [601] = 539, + [602] = 224, + [603] = 225, + [604] = 540, + [605] = 227, + [606] = 228, + [607] = 229, + [608] = 230, + [609] = 231, + [610] = 232, + [611] = 221, + [612] = 234, + [613] = 235, + [614] = 236, + [615] = 237, + [616] = 253, + [617] = 542, + [618] = 240, + [619] = 580, + [620] = 542, + [621] = 543, + [622] = 539, + [623] = 542, + [624] = 539, + [625] = 544, + [626] = 543, + [627] = 542, + [628] = 540, + [629] = 629, + [630] = 630, + [631] = 631, + [632] = 629, + [633] = 629, + [634] = 629, + [635] = 631, + [636] = 629, + [637] = 631, + [638] = 631, + [639] = 629, + [640] = 631, + [641] = 631, + [642] = 629, + [643] = 631, + [644] = 631, + [645] = 631, + [646] = 629, + [647] = 631, + [648] = 629, + [649] = 631, + [650] = 629, + [651] = 631, + [652] = 629, + [653] = 629, + [654] = 654, + [655] = 655, + [656] = 656, + [657] = 657, + [658] = 658, + [659] = 659, + [660] = 660, + [661] = 661, + [662] = 662, [663] = 663, [664] = 663, [665] = 663, - [666] = 666, - [667] = 666, + [666] = 663, + [667] = 663, [668] = 663, [669] = 663, - [670] = 666, - [671] = 671, + [670] = 663, + [671] = 663, [672] = 663, - [673] = 666, - [674] = 666, - [675] = 663, - [676] = 671, - [677] = 666, - [678] = 678, - [679] = 666, - [680] = 680, - [681] = 663, - [682] = 666, - [683] = 663, - [684] = 680, - [685] = 666, - [686] = 666, - [687] = 666, - [688] = 663, - [689] = 663, - [690] = 666, - [691] = 663, - [692] = 692, - [693] = 693, - [694] = 694, - [695] = 695, - [696] = 696, - [697] = 697, - [698] = 698, - [699] = 699, - [700] = 700, - [701] = 701, - [702] = 702, - [703] = 703, + [673] = 663, + [674] = 663, + [675] = 675, + [676] = 676, + [677] = 675, + [678] = 676, + [679] = 679, + [680] = 675, + [681] = 676, + [682] = 676, + [683] = 683, + [684] = 675, + [685] = 676, + [686] = 675, + [687] = 676, + [688] = 676, + [689] = 683, + [690] = 690, + [691] = 675, + [692] = 675, + [693] = 675, + [694] = 676, + [695] = 675, + [696] = 679, + [697] = 675, + [698] = 676, + [699] = 675, + [700] = 676, + [701] = 676, + [702] = 675, + [703] = 676, [704] = 704, - [705] = 697, + [705] = 705, [706] = 706, [707] = 707, [708] = 708, [709] = 709, - [710] = 698, + [710] = 710, [711] = 711, - [712] = 711, - [713] = 699, - [714] = 700, - [715] = 698, - [716] = 711, - [717] = 702, - [718] = 698, + [712] = 712, + [713] = 713, + [714] = 714, + [715] = 709, + [716] = 716, + [717] = 717, + [718] = 710, [719] = 719, - [720] = 701, - [721] = 697, - [722] = 706, - [723] = 707, - [724] = 708, - [725] = 709, + [720] = 720, + [721] = 721, + [722] = 722, + [723] = 723, + [724] = 724, + [725] = 716, [726] = 711, - [727] = 699, - [728] = 700, - [729] = 703, - [730] = 702, - [731] = 703, - [732] = 704, - [733] = 704, - [734] = 698, - [735] = 711, - [736] = 698, - [737] = 711, - [738] = 698, - [739] = 711, - [740] = 740, - [741] = 719, - [742] = 698, - [743] = 711, - [744] = 701, - [745] = 706, - [746] = 707, - [747] = 719, - [748] = 701, - [749] = 697, - [750] = 706, - [751] = 707, - [752] = 708, - [753] = 709, - [754] = 708, - [755] = 699, - [756] = 700, - [757] = 709, - [758] = 702, - [759] = 703, - [760] = 704, - [761] = 699, - [762] = 698, - [763] = 711, - [764] = 700, - [765] = 702, - [766] = 703, - [767] = 704, - [768] = 719, - [769] = 698, - [770] = 711, - [771] = 698, - [772] = 711, - [773] = 719, - [774] = 697, - [775] = 706, - [776] = 719, - [777] = 701, - [778] = 697, - [779] = 706, - [780] = 707, - [781] = 708, - [782] = 709, - [783] = 707, - [784] = 699, - [785] = 700, - [786] = 709, - [787] = 708, - [788] = 707, - [789] = 698, - [790] = 702, - [791] = 703, - [792] = 704, - [793] = 711, - [794] = 708, - [795] = 706, - [796] = 709, - [797] = 704, - [798] = 703, - [799] = 702, - [800] = 699, - [801] = 700, - [802] = 700, - [803] = 699, - [804] = 709, - [805] = 708, - [806] = 707, - [807] = 697, - [808] = 706, - [809] = 719, - [810] = 701, - [811] = 697, - [812] = 706, - [813] = 707, - [814] = 708, - [815] = 709, - [816] = 697, - [817] = 699, - [818] = 700, - [819] = 701, - [820] = 719, - [821] = 701, - [822] = 719, - [823] = 702, - [824] = 703, - [825] = 704, - [826] = 702, - [827] = 704, - [828] = 703, - [829] = 702, - [830] = 703, - [831] = 704, - [832] = 700, - [833] = 699, - [834] = 709, - [835] = 708, - [836] = 707, - [837] = 706, - [838] = 697, - [839] = 701, - [840] = 719, - [841] = 704, - [842] = 719, - [843] = 701, - [844] = 697, - [845] = 706, - [846] = 707, - [847] = 708, - [848] = 709, - [849] = 703, - [850] = 699, - [851] = 700, - [852] = 702, - [853] = 701, - [854] = 700, - [855] = 699, - [856] = 702, - [857] = 703, - [858] = 704, - [859] = 709, - [860] = 708, - [861] = 707, - [862] = 706, - [863] = 697, - [864] = 701, - [865] = 719, - [866] = 866, - [867] = 867, - [868] = 868, - [869] = 869, - [870] = 870, - [871] = 871, - [872] = 872, - [873] = 866, - [874] = 874, - [875] = 875, - [876] = 876, - [877] = 877, - [878] = 878, - [879] = 867, - [880] = 880, - [881] = 881, - [882] = 882, - [883] = 883, - [884] = 868, - [885] = 869, - [886] = 876, - [887] = 877, - [888] = 883, - [889] = 870, - [890] = 882, - [891] = 874, - [892] = 881, - [893] = 880, - [894] = 878, - [895] = 878, - [896] = 877, - [897] = 876, - [898] = 875, - [899] = 866, - [900] = 867, - [901] = 868, - [902] = 869, - [903] = 870, - [904] = 871, - [905] = 872, - [906] = 880, - [907] = 874, - [908] = 871, - [909] = 872, - [910] = 871, - [911] = 870, - [912] = 869, - [913] = 868, - [914] = 867, - [915] = 882, - [916] = 866, - [917] = 875, - [918] = 881, - [919] = 876, - [920] = 877, - [921] = 883, - [922] = 878, - [923] = 872, - [924] = 880, - [925] = 881, - [926] = 880, - [927] = 881, - [928] = 878, - [929] = 877, - [930] = 876, - [931] = 875, - [932] = 866, - [933] = 867, - [934] = 868, - [935] = 869, - [936] = 870, - [937] = 871, - [938] = 872, - [939] = 883, - [940] = 874, - [941] = 883, - [942] = 874, - [943] = 882, - [944] = 874, - [945] = 872, - [946] = 871, - [947] = 870, - [948] = 882, - [949] = 869, - [950] = 868, - [951] = 867, - [952] = 866, - [953] = 882, - [954] = 883, - [955] = 875, - [956] = 876, - [957] = 877, - [958] = 881, - [959] = 880, - [960] = 878, - [961] = 878, - [962] = 877, - [963] = 876, - [964] = 875, - [965] = 866, - [966] = 867, - [967] = 868, - [968] = 869, - [969] = 870, - [970] = 871, - [971] = 872, - [972] = 880, - [973] = 874, - [974] = 974, - [975] = 881, - [976] = 976, - [977] = 977, - [978] = 883, - [979] = 882, - [980] = 874, - [981] = 875, - [982] = 878, - [983] = 872, - [984] = 874, - [985] = 872, - [986] = 871, + [727] = 712, + [728] = 723, + [729] = 716, + [730] = 723, + [731] = 731, + [732] = 709, + [733] = 710, + [734] = 719, + [735] = 720, + [736] = 721, + [737] = 722, + [738] = 713, + [739] = 724, + [740] = 711, + [741] = 712, + [742] = 716, + [743] = 713, + [744] = 714, + [745] = 717, + [746] = 714, + [747] = 717, + [748] = 723, + [749] = 716, + [750] = 723, + [751] = 716, + [752] = 723, + [753] = 716, + [754] = 723, + [755] = 716, + [756] = 756, + [757] = 731, + [758] = 723, + [759] = 731, + [760] = 709, + [761] = 710, + [762] = 719, + [763] = 720, + [764] = 721, + [765] = 722, + [766] = 716, + [767] = 724, + [768] = 711, + [769] = 712, + [770] = 710, + [771] = 713, + [772] = 714, + [773] = 717, + [774] = 719, + [775] = 720, + [776] = 721, + [777] = 722, + [778] = 723, + [779] = 724, + [780] = 716, + [781] = 711, + [782] = 712, + [783] = 713, + [784] = 714, + [785] = 731, + [786] = 723, + [787] = 722, + [788] = 716, + [789] = 731, + [790] = 709, + [791] = 710, + [792] = 719, + [793] = 720, + [794] = 721, + [795] = 722, + [796] = 717, + [797] = 724, + [798] = 711, + [799] = 712, + [800] = 721, + [801] = 720, + [802] = 719, + [803] = 723, + [804] = 713, + [805] = 714, + [806] = 717, + [807] = 710, + [808] = 716, + [809] = 731, + [810] = 709, + [811] = 710, + [812] = 719, + [813] = 723, + [814] = 720, + [815] = 724, + [816] = 721, + [817] = 717, + [818] = 714, + [819] = 713, + [820] = 709, + [821] = 722, + [822] = 731, + [823] = 709, + [824] = 710, + [825] = 719, + [826] = 720, + [827] = 721, + [828] = 722, + [829] = 724, + [830] = 724, + [831] = 711, + [832] = 712, + [833] = 731, + [834] = 712, + [835] = 711, + [836] = 724, + [837] = 713, + [838] = 714, + [839] = 717, + [840] = 722, + [841] = 721, + [842] = 720, + [843] = 719, + [844] = 710, + [845] = 709, + [846] = 731, + [847] = 711, + [848] = 712, + [849] = 717, + [850] = 714, + [851] = 713, + [852] = 713, + [853] = 714, + [854] = 712, + [855] = 731, + [856] = 709, + [857] = 710, + [858] = 719, + [859] = 720, + [860] = 721, + [861] = 722, + [862] = 711, + [863] = 724, + [864] = 711, + [865] = 712, + [866] = 724, + [867] = 722, + [868] = 721, + [869] = 720, + [870] = 713, + [871] = 714, + [872] = 717, + [873] = 719, + [874] = 710, + [875] = 709, + [876] = 731, + [877] = 717, + [878] = 717, + [879] = 714, + [880] = 713, + [881] = 712, + [882] = 711, + [883] = 724, + [884] = 719, + [885] = 720, + [886] = 721, + [887] = 722, + [888] = 731, + [889] = 709, + [890] = 890, + [891] = 891, + [892] = 892, + [893] = 893, + [894] = 894, + [895] = 895, + [896] = 896, + [897] = 897, + [898] = 898, + [899] = 899, + [900] = 896, + [901] = 890, + [902] = 902, + [903] = 903, + [904] = 904, + [905] = 899, + [906] = 906, + [907] = 906, + [908] = 890, + [909] = 896, + [910] = 910, + [911] = 893, + [912] = 899, + [913] = 904, + [914] = 903, + [915] = 898, + [916] = 897, + [917] = 917, + [918] = 892, + [919] = 893, + [920] = 894, + [921] = 910, + [922] = 896, + [923] = 890, + [924] = 906, + [925] = 899, + [926] = 902, + [927] = 904, + [928] = 895, + [929] = 903, + [930] = 898, + [931] = 895, + [932] = 894, + [933] = 897, + [934] = 902, + [935] = 902, + [936] = 892, + [937] = 917, + [938] = 897, + [939] = 898, + [940] = 906, + [941] = 890, + [942] = 896, + [943] = 910, + [944] = 893, + [945] = 899, + [946] = 904, + [947] = 903, + [948] = 898, + [949] = 897, + [950] = 917, + [951] = 892, + [952] = 903, + [953] = 894, + [954] = 904, + [955] = 899, + [956] = 893, + [957] = 910, + [958] = 892, + [959] = 890, + [960] = 906, + [961] = 895, + [962] = 917, + [963] = 902, + [964] = 892, + [965] = 894, + [966] = 895, + [967] = 895, + [968] = 902, + [969] = 894, + [970] = 892, + [971] = 917, + [972] = 897, + [973] = 906, + [974] = 898, + [975] = 896, + [976] = 910, + [977] = 893, + [978] = 899, + [979] = 904, + [980] = 903, + [981] = 898, + [982] = 897, + [983] = 917, + [984] = 892, + [985] = 903, + [986] = 894, [987] = 987, [988] = 988, - [989] = 989, - [990] = 974, - [991] = 871, - [992] = 976, - [993] = 977, - [994] = 870, - [995] = 870, - [996] = 869, - [997] = 868, - [998] = 867, - [999] = 866, - [1000] = 875, - [1001] = 876, - [1002] = 877, + [989] = 891, + [990] = 904, + [991] = 899, + [992] = 893, + [993] = 910, + [994] = 896, + [995] = 894, + [996] = 892, + [997] = 917, + [998] = 890, + [999] = 897, + [1000] = 1000, + [1001] = 1001, + [1002] = 1002, [1003] = 987, - [1004] = 989, - [1005] = 974, - [1006] = 869, - [1007] = 976, - [1008] = 977, - [1009] = 868, - [1010] = 867, - [1011] = 880, - [1012] = 881, - [1013] = 866, - [1014] = 875, - [1015] = 876, - [1016] = 883, - [1017] = 877, + [1004] = 988, + [1005] = 891, + [1006] = 906, + [1007] = 898, + [1008] = 903, + [1009] = 904, + [1010] = 902, + [1011] = 893, + [1012] = 910, + [1013] = 896, + [1014] = 895, + [1015] = 890, + [1016] = 1000, + [1017] = 1002, [1018] = 987, - [1019] = 989, - [1020] = 974, - [1021] = 878, - [1022] = 976, - [1023] = 977, - [1024] = 880, - [1025] = 881, - [1026] = 882, - [1027] = 883, - [1028] = 882, - [1029] = 874, - [1030] = 872, - [1031] = 871, - [1032] = 644, + [1019] = 988, + [1020] = 891, + [1021] = 894, + [1022] = 906, + [1023] = 895, + [1024] = 917, + [1025] = 897, + [1026] = 902, + [1027] = 898, + [1028] = 903, + [1029] = 904, + [1030] = 899, + [1031] = 1000, + [1032] = 1002, [1033] = 987, - [1034] = 989, - [1035] = 974, - [1036] = 870, - [1037] = 976, - [1038] = 977, - [1039] = 869, - [1040] = 1040, - [1041] = 868, - [1042] = 1042, - [1043] = 642, - [1044] = 874, + [1034] = 988, + [1035] = 891, + [1036] = 893, + [1037] = 895, + [1038] = 910, + [1039] = 896, + [1040] = 890, + [1041] = 906, + [1042] = 910, + [1043] = 659, + [1044] = 902, [1045] = 1045, - [1046] = 867, - [1047] = 1047, + [1046] = 1000, + [1047] = 1002, [1048] = 987, - [1049] = 989, - [1050] = 974, - [1051] = 866, - [1052] = 976, - [1053] = 977, - [1054] = 875, - [1055] = 989, + [1049] = 988, + [1050] = 891, + [1051] = 895, + [1052] = 894, + [1053] = 1053, + [1054] = 654, + [1055] = 894, [1056] = 1056, - [1057] = 1057, - [1058] = 872, - [1059] = 871, - [1060] = 870, - [1061] = 869, - [1062] = 868, + [1057] = 892, + [1058] = 1058, + [1059] = 917, + [1060] = 1002, + [1061] = 1000, + [1062] = 1002, [1063] = 987, - [1064] = 989, - [1065] = 974, - [1066] = 876, - [1067] = 976, - [1068] = 977, - [1069] = 877, - [1070] = 867, - [1071] = 866, - [1072] = 875, - [1073] = 876, - [1074] = 877, - [1075] = 988, - [1076] = 878, - [1077] = 987, + [1064] = 988, + [1065] = 917, + [1066] = 897, + [1067] = 1067, + [1068] = 1068, + [1069] = 892, + [1070] = 917, + [1071] = 897, + [1072] = 1072, + [1073] = 898, + [1074] = 898, + [1075] = 903, + [1076] = 1000, + [1077] = 1002, [1078] = 987, - [1079] = 989, - [1080] = 974, - [1081] = 878, - [1082] = 976, - [1083] = 977, - [1084] = 880, - [1085] = 882, - [1086] = 977, - [1087] = 880, - [1088] = 1088, - [1089] = 881, - [1090] = 976, - [1091] = 881, - [1092] = 883, + [1079] = 988, + [1080] = 891, + [1081] = 903, + [1082] = 904, + [1083] = 899, + [1084] = 893, + [1085] = 910, + [1086] = 896, + [1087] = 890, + [1088] = 1001, + [1089] = 904, + [1090] = 906, + [1091] = 1000, + [1092] = 1002, [1093] = 987, - [1094] = 989, - [1095] = 974, - [1096] = 882, - [1097] = 976, - [1098] = 977, - [1099] = 874, - [1100] = 872, - [1101] = 883, - [1102] = 1102, - [1103] = 1103, - [1104] = 1104, - [1105] = 1105, - [1106] = 1106, - [1107] = 1107, + [1094] = 988, + [1095] = 891, + [1096] = 899, + [1097] = 1000, + [1098] = 893, + [1099] = 910, + [1100] = 891, + [1101] = 988, + [1102] = 896, + [1103] = 890, + [1104] = 906, + [1105] = 902, + [1106] = 1000, + [1107] = 1002, [1108] = 987, - [1109] = 989, - [1110] = 974, - [1111] = 871, - [1112] = 976, - [1113] = 977, - [1114] = 870, + [1109] = 988, + [1110] = 891, + [1111] = 895, + [1112] = 902, + [1113] = 1113, + [1114] = 1114, [1115] = 1115, [1116] = 1116, [1117] = 1117, [1118] = 1118, - [1119] = 1119, - [1120] = 869, - [1121] = 868, - [1122] = 867, + [1119] = 894, + [1120] = 1120, + [1121] = 1000, + [1122] = 1002, [1123] = 987, - [1124] = 989, - [1125] = 974, - [1126] = 866, - [1127] = 976, - [1128] = 977, - [1129] = 875, - [1130] = 882, - [1131] = 876, - [1132] = 877, - [1133] = 878, - [1134] = 880, - [1135] = 974, - [1136] = 881, - [1137] = 883, + [1124] = 988, + [1125] = 891, + [1126] = 892, + [1127] = 1127, + [1128] = 1128, + [1129] = 1129, + [1130] = 1130, + [1131] = 1131, + [1132] = 917, + [1133] = 897, + [1134] = 898, + [1135] = 903, + [1136] = 1000, + [1137] = 1002, [1138] = 987, - [1139] = 989, - [1140] = 1117, - [1141] = 1116, - [1142] = 1115, - [1143] = 1107, - [1144] = 1106, - [1145] = 1105, - [1146] = 1104, - [1147] = 1117, - [1148] = 1116, - [1149] = 1115, - [1150] = 1107, - [1151] = 1106, - [1152] = 1105, - [1153] = 1104, - [1154] = 1117, - [1155] = 1116, - [1156] = 1115, - [1157] = 1107, - [1158] = 1106, - [1159] = 1105, - [1160] = 1104, - [1161] = 1117, - [1162] = 1116, - [1163] = 1115, - [1164] = 1107, - [1165] = 1106, - [1166] = 1105, - [1167] = 1104, - [1168] = 1117, - [1169] = 1116, - [1170] = 1115, - [1171] = 1107, - [1172] = 1106, - [1173] = 1105, - [1174] = 1104, - [1175] = 1117, - [1176] = 1116, - [1177] = 1115, - [1178] = 1107, - [1179] = 1106, - [1180] = 1105, - [1181] = 1104, + [1139] = 988, + [1140] = 891, + [1141] = 904, + [1142] = 895, + [1143] = 899, + [1144] = 893, + [1145] = 910, + [1146] = 896, + [1147] = 987, + [1148] = 890, + [1149] = 906, + [1150] = 902, + [1151] = 1000, + [1152] = 1002, + [1153] = 1129, + [1154] = 1128, + [1155] = 1127, + [1156] = 1120, + [1157] = 1118, + [1158] = 1117, + [1159] = 1116, + [1160] = 1115, + [1161] = 1129, + [1162] = 1128, + [1163] = 1127, + [1164] = 1120, + [1165] = 1118, + [1166] = 1117, + [1167] = 1116, + [1168] = 1115, + [1169] = 1129, + [1170] = 1128, + [1171] = 1127, + [1172] = 1120, + [1173] = 1118, + [1174] = 1117, + [1175] = 1116, + [1176] = 1115, + [1177] = 1129, + [1178] = 1128, + [1179] = 1127, + [1180] = 1120, + [1181] = 1118, [1182] = 1117, [1183] = 1116, [1184] = 1115, - [1185] = 1107, - [1186] = 1106, - [1187] = 1105, - [1188] = 1104, - [1189] = 1117, - [1190] = 1116, - [1191] = 1115, - [1192] = 1107, - [1193] = 1106, - [1194] = 1105, - [1195] = 1104, - [1196] = 1117, - [1197] = 1116, - [1198] = 1115, - [1199] = 1107, - [1200] = 1106, - [1201] = 1105, - [1202] = 1104, - [1203] = 1117, - [1204] = 1116, - [1205] = 1115, - [1206] = 1107, - [1207] = 1106, - [1208] = 1105, - [1209] = 1104, - [1210] = 1117, - [1211] = 1116, - [1212] = 1115, - [1213] = 1107, - [1214] = 1106, - [1215] = 1105, - [1216] = 1104, + [1185] = 1129, + [1186] = 1128, + [1187] = 1127, + [1188] = 1120, + [1189] = 1118, + [1190] = 1117, + [1191] = 1116, + [1192] = 1115, + [1193] = 1129, + [1194] = 1128, + [1195] = 1127, + [1196] = 1120, + [1197] = 1118, + [1198] = 1117, + [1199] = 1116, + [1200] = 1115, + [1201] = 1129, + [1202] = 1128, + [1203] = 1127, + [1204] = 1120, + [1205] = 1118, + [1206] = 1117, + [1207] = 1116, + [1208] = 1115, + [1209] = 1129, + [1210] = 1128, + [1211] = 1127, + [1212] = 1120, + [1213] = 1118, + [1214] = 1117, + [1215] = 1116, + [1216] = 1115, + [1217] = 1129, + [1218] = 1128, + [1219] = 1127, + [1220] = 1120, + [1221] = 1118, + [1222] = 1117, + [1223] = 1116, + [1224] = 1115, + [1225] = 1129, + [1226] = 1128, + [1227] = 1127, + [1228] = 1120, + [1229] = 1118, + [1230] = 1117, + [1231] = 1116, + [1232] = 1115, + [1233] = 1129, + [1234] = 1128, + [1235] = 1127, + [1236] = 1120, + [1237] = 1118, + [1238] = 1117, + [1239] = 1116, + [1240] = 1115, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -2361,1300 +2399,1415 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(37); - if (lookahead == '\n') ADVANCE(149); - if (lookahead == '\r') SKIP(29) - if (lookahead == '!') ADVANCE(159); - if (lookahead == '"') ADVANCE(167); - if (lookahead == '$') ADVANCE(131); - if (lookahead == '%') ADVANCE(126); - if (lookahead == '(') ADVANCE(121); - if (lookahead == ')') ADVANCE(124); - if (lookahead == '*') ADVANCE(44); - if (lookahead == '-') ADVANCE(151); - if (lookahead == '.') ADVANCE(164); - if (lookahead == ':') ADVANCE(162); - if (lookahead == '<') ADVANCE(73); - if (lookahead == '=') ADVANCE(166); - if (lookahead == '>') ADVANCE(100); - if (lookahead == 'F') ADVANCE(153); - if (lookahead == 'I') ADVANCE(155); - if (lookahead == 'N') ADVANCE(156); - if (lookahead == 'T') ADVANCE(157); - if (lookahead == 'W') ADVANCE(154); - if (lookahead == 'X') ADVANCE(158); - if (lookahead == '[') ADVANCE(117); - if (lookahead == '\\') ADVANCE(62); - if (lookahead == ']') ADVANCE(104); - if (lookahead == '^') ADVANCE(48); - if (lookahead == '_') ADVANCE(40); - if (lookahead == '{') ADVANCE(110); - if (lookahead == '}') ADVANCE(125); - if (lookahead == '~') ADVANCE(52); + if (eof) ADVANCE(41); + if (lookahead == '\n') ADVANCE(152); + if (lookahead == '\r') SKIP(31) + if (lookahead == '!') ADVANCE(162); + if (lookahead == '"') ADVANCE(170); + if (lookahead == '$') ADVANCE(134); + if (lookahead == '%') ADVANCE(129); + if (lookahead == '(') ADVANCE(124); + if (lookahead == ')') ADVANCE(127); + if (lookahead == '*') ADVANCE(48); + if (lookahead == '-') ADVANCE(154); + if (lookahead == '.') ADVANCE(167); + if (lookahead == ':') ADVANCE(165); + if (lookahead == '<') ADVANCE(77); + if (lookahead == '=') ADVANCE(169); + if (lookahead == '>') ADVANCE(104); + if (lookahead == 'F') ADVANCE(156); + if (lookahead == 'I') ADVANCE(158); + if (lookahead == 'N') ADVANCE(159); + if (lookahead == 'T') ADVANCE(160); + if (lookahead == 'W') ADVANCE(157); + if (lookahead == 'X') ADVANCE(161); + if (lookahead == '[') ADVANCE(120); + if (lookahead == '\\') ADVANCE(66); + if (lookahead == ']') ADVANCE(122); + if (lookahead == '^') ADVANCE(52); + if (lookahead == '_') ADVANCE(44); + if (lookahead == '{') ADVANCE(113); + if (lookahead == '}') ADVANCE(128); + if (lookahead == '~') ADVANCE(56); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(148); + lookahead == ' ') ADVANCE(151); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(150); + lookahead != '\f') ADVANCE(153); END_STATE(); case 1: - if (lookahead == '\n') ADVANCE(149); + if (lookahead == '\n') ADVANCE(152); if (lookahead == '\r') SKIP(2) - if (lookahead == '!') ADVANCE(159); - if (lookahead == '"') ADVANCE(160); - if (lookahead == '$') ADVANCE(131); - if (lookahead == '\'') ADVANCE(160); - if (lookahead == '*') ADVANCE(44); - if (lookahead == '-') ADVANCE(151); - if (lookahead == '.') ADVANCE(152); - if (lookahead == ':') ADVANCE(162); - if (lookahead == '<') ADVANCE(73); - if (lookahead == 'F') ADVANCE(153); - if (lookahead == 'I') ADVANCE(155); - if (lookahead == 'N') ADVANCE(156); - if (lookahead == 'T') ADVANCE(157); - if (lookahead == 'W') ADVANCE(154); - if (lookahead == 'X') ADVANCE(158); - if (lookahead == '[') ADVANCE(117); - if (lookahead == '\\') ADVANCE(60); - if (lookahead == ']') ADVANCE(119); - if (lookahead == '^') ADVANCE(48); - if (lookahead == '_') ADVANCE(40); - if (lookahead == '{') ADVANCE(161); - if (lookahead == '~') ADVANCE(52); + if (lookahead == '!') ADVANCE(162); + if (lookahead == '"') ADVANCE(163); + if (lookahead == '$') ADVANCE(134); + if (lookahead == '\'') ADVANCE(163); + if (lookahead == '*') ADVANCE(48); + if (lookahead == '-') ADVANCE(154); + if (lookahead == '.') ADVANCE(155); + if (lookahead == ':') ADVANCE(165); + if (lookahead == '<') ADVANCE(77); + if (lookahead == 'F') ADVANCE(156); + if (lookahead == 'I') ADVANCE(158); + if (lookahead == 'N') ADVANCE(159); + if (lookahead == 'T') ADVANCE(160); + if (lookahead == 'W') ADVANCE(157); + if (lookahead == 'X') ADVANCE(161); + if (lookahead == '[') ADVANCE(120); + if (lookahead == '\\') ADVANCE(64); + if (lookahead == ']') ADVANCE(122); + if (lookahead == '^') ADVANCE(52); + if (lookahead == '_') ADVANCE(44); + if (lookahead == '{') ADVANCE(164); + if (lookahead == '~') ADVANCE(56); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(148); + lookahead == ' ') ADVANCE(151); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(150); + lookahead != '\f') ADVANCE(153); END_STATE(); case 2: - if (lookahead == '\n') ADVANCE(149); + if (lookahead == '\n') ADVANCE(152); if (lookahead == '\r') SKIP(2) - if (lookahead == '!') ADVANCE(159); - if (lookahead == '"') ADVANCE(160); - if (lookahead == '$') ADVANCE(131); - if (lookahead == '\'') ADVANCE(160); - if (lookahead == '*') ADVANCE(44); - if (lookahead == '-') ADVANCE(151); - if (lookahead == '.') ADVANCE(152); - if (lookahead == ':') ADVANCE(162); - if (lookahead == '<') ADVANCE(73); - if (lookahead == 'F') ADVANCE(153); - if (lookahead == 'I') ADVANCE(155); - if (lookahead == 'N') ADVANCE(156); - if (lookahead == 'T') ADVANCE(157); - if (lookahead == 'W') ADVANCE(154); - if (lookahead == 'X') ADVANCE(158); - if (lookahead == '[') ADVANCE(117); - if (lookahead == '\\') ADVANCE(60); - if (lookahead == '^') ADVANCE(48); - if (lookahead == '_') ADVANCE(40); - if (lookahead == '{') ADVANCE(161); - if (lookahead == '~') ADVANCE(52); + if (lookahead == '!') ADVANCE(162); + if (lookahead == '"') ADVANCE(163); + if (lookahead == '$') ADVANCE(134); + if (lookahead == '\'') ADVANCE(163); + if (lookahead == '*') ADVANCE(48); + if (lookahead == '-') ADVANCE(154); + if (lookahead == '.') ADVANCE(155); + if (lookahead == ':') ADVANCE(165); + if (lookahead == '<') ADVANCE(77); + if (lookahead == 'F') ADVANCE(156); + if (lookahead == 'I') ADVANCE(158); + if (lookahead == 'N') ADVANCE(159); + if (lookahead == 'T') ADVANCE(160); + if (lookahead == 'W') ADVANCE(157); + if (lookahead == 'X') ADVANCE(161); + if (lookahead == '[') ADVANCE(120); + if (lookahead == '\\') ADVANCE(64); + if (lookahead == '^') ADVANCE(52); + if (lookahead == '_') ADVANCE(44); + if (lookahead == '{') ADVANCE(164); + if (lookahead == '~') ADVANCE(56); if (lookahead != 0 && (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(150); + lookahead != ' ') ADVANCE(153); END_STATE(); case 3: - if (lookahead == '\n') ADVANCE(149); + if (lookahead == '\n') ADVANCE(152); if (lookahead == '\r') SKIP(4) - if (lookahead == '!') ADVANCE(96); - if (lookahead == '"') ADVANCE(97); - if (lookahead == '$') ADVANCE(132); - if (lookahead == '\'') ADVANCE(97); - if (lookahead == '*') ADVANCE(45); - if (lookahead == '-') ADVANCE(75); - if (lookahead == '.') ADVANCE(77); - if (lookahead == ':') ADVANCE(98); - if (lookahead == '<') ADVANCE(74); - if (lookahead == '>') ADVANCE(150); - if (lookahead == 'F') ADVANCE(84); - if (lookahead == 'I') ADVANCE(86); - if (lookahead == 'N') ADVANCE(87); - if (lookahead == 'T') ADVANCE(88); - if (lookahead == 'W') ADVANCE(83); - if (lookahead == 'X') ADVANCE(95); - if (lookahead == '[') ADVANCE(118); - if (lookahead == '\\') ADVANCE(61); - if (lookahead == ']') ADVANCE(120); - if (lookahead == '^') ADVANCE(49); - if (lookahead == '_') ADVANCE(41); - if (lookahead == '{') ADVANCE(114); - if (lookahead == '~') ADVANCE(53); + if (lookahead == '!') ADVANCE(162); + if (lookahead == '"') ADVANCE(163); + if (lookahead == '$') ADVANCE(134); + if (lookahead == '\'') ADVANCE(163); + if (lookahead == '*') ADVANCE(48); + if (lookahead == '-') ADVANCE(154); + if (lookahead == '.') ADVANCE(155); + if (lookahead == ':') ADVANCE(165); + if (lookahead == '<') ADVANCE(77); + if (lookahead == '>') ADVANCE(104); + if (lookahead == 'F') ADVANCE(156); + if (lookahead == 'I') ADVANCE(158); + if (lookahead == 'N') ADVANCE(159); + if (lookahead == 'T') ADVANCE(160); + if (lookahead == 'W') ADVANCE(157); + if (lookahead == 'X') ADVANCE(161); + if (lookahead == '[') ADVANCE(120); + if (lookahead == '\\') ADVANCE(64); + if (lookahead == ']') ADVANCE(122); + if (lookahead == '^') ADVANCE(52); + if (lookahead == '_') ADVANCE(44); + if (lookahead == '{') ADVANCE(116); + if (lookahead == '~') ADVANCE(56); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(148); + lookahead == ' ') ADVANCE(151); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(99); + lookahead != '\f') ADVANCE(153); END_STATE(); case 4: - if (lookahead == '\n') ADVANCE(149); + if (lookahead == '\n') ADVANCE(152); if (lookahead == '\r') SKIP(4) - if (lookahead == '!') ADVANCE(96); - if (lookahead == '"') ADVANCE(97); - if (lookahead == '$') ADVANCE(132); - if (lookahead == '\'') ADVANCE(97); - if (lookahead == '*') ADVANCE(45); - if (lookahead == '-') ADVANCE(75); - if (lookahead == '.') ADVANCE(77); - if (lookahead == ':') ADVANCE(98); - if (lookahead == '<') ADVANCE(74); - if (lookahead == '>') ADVANCE(150); - if (lookahead == 'F') ADVANCE(84); - if (lookahead == 'I') ADVANCE(86); - if (lookahead == 'N') ADVANCE(87); - if (lookahead == 'T') ADVANCE(88); - if (lookahead == 'W') ADVANCE(83); - if (lookahead == 'X') ADVANCE(95); - if (lookahead == '[') ADVANCE(118); - if (lookahead == '\\') ADVANCE(61); - if (lookahead == '^') ADVANCE(49); - if (lookahead == '_') ADVANCE(41); - if (lookahead == '{') ADVANCE(114); - if (lookahead == '~') ADVANCE(53); + if (lookahead == '!') ADVANCE(162); + if (lookahead == '"') ADVANCE(163); + if (lookahead == '$') ADVANCE(134); + if (lookahead == '\'') ADVANCE(163); + if (lookahead == '*') ADVANCE(48); + if (lookahead == '-') ADVANCE(154); + if (lookahead == '.') ADVANCE(155); + if (lookahead == ':') ADVANCE(165); + if (lookahead == '<') ADVANCE(77); + if (lookahead == '>') ADVANCE(104); + if (lookahead == 'F') ADVANCE(156); + if (lookahead == 'I') ADVANCE(158); + if (lookahead == 'N') ADVANCE(159); + if (lookahead == 'T') ADVANCE(160); + if (lookahead == 'W') ADVANCE(157); + if (lookahead == 'X') ADVANCE(161); + if (lookahead == '[') ADVANCE(120); + if (lookahead == '\\') ADVANCE(64); + if (lookahead == '^') ADVANCE(52); + if (lookahead == '_') ADVANCE(44); + if (lookahead == '{') ADVANCE(116); + if (lookahead == '~') ADVANCE(56); if (lookahead != 0 && (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(99); + lookahead != ' ') ADVANCE(153); END_STATE(); case 5: - if (lookahead == '\n') ADVANCE(149); + if (lookahead == '\n') ADVANCE(152); if (lookahead == '\r') SKIP(6) - if (lookahead == '"') ADVANCE(167); - if (lookahead == '#') ADVANCE(28); - if (lookahead == '%') ADVANCE(126); - if (lookahead == '(') ADVANCE(121); - if (lookahead == ')') ADVANCE(124); - if (lookahead == '.') ADVANCE(163); - if (lookahead == '=') ADVANCE(166); - if (lookahead == '>') ADVANCE(100); - if (lookahead == '[') ADVANCE(116); - if (lookahead == ']') ADVANCE(104); - if (lookahead == '{') ADVANCE(109); - if (lookahead == '}') ADVANCE(125); + if (lookahead == '"') ADVANCE(170); + if (lookahead == '#') ADVANCE(30); + if (lookahead == '%') ADVANCE(129); + if (lookahead == '(') ADVANCE(124); + if (lookahead == ')') ADVANCE(127); + if (lookahead == '.') ADVANCE(166); + if (lookahead == '=') ADVANCE(169); + if (lookahead == '[') ADVANCE(119); + if (lookahead == '{') ADVANCE(112); + if (lookahead == '}') ADVANCE(128); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(148); + lookahead == ' ') ADVANCE(151); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(105); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(108); END_STATE(); case 6: - if (lookahead == '\n') ADVANCE(149); + if (lookahead == '\n') ADVANCE(152); if (lookahead == '\r') SKIP(6) - if (lookahead == '"') ADVANCE(167); - if (lookahead == '#') ADVANCE(28); - if (lookahead == '%') ADVANCE(126); - if (lookahead == '(') ADVANCE(121); - if (lookahead == ')') ADVANCE(124); - if (lookahead == '.') ADVANCE(163); - if (lookahead == '=') ADVANCE(166); - if (lookahead == '>') ADVANCE(100); - if (lookahead == '[') ADVANCE(115); - if (lookahead == ']') ADVANCE(104); - if (lookahead == '{') ADVANCE(109); - if (lookahead == '}') ADVANCE(125); + if (lookahead == '"') ADVANCE(170); + if (lookahead == '#') ADVANCE(30); + if (lookahead == '%') ADVANCE(129); + if (lookahead == '(') ADVANCE(124); + if (lookahead == ')') ADVANCE(127); + if (lookahead == '.') ADVANCE(166); + if (lookahead == '=') ADVANCE(169); + if (lookahead == '[') ADVANCE(118); + if (lookahead == '{') ADVANCE(112); + if (lookahead == '}') ADVANCE(128); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(105); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(108); END_STATE(); case 7: - if (lookahead == '\n') ADVANCE(149); - if (lookahead == '\r') ADVANCE(128); - if (lookahead == '%') ADVANCE(126); - if (lookahead == '\\') ADVANCE(129); - if (lookahead != 0) ADVANCE(127); + if (lookahead == '\n') ADVANCE(152); + if (lookahead == '\r') ADVANCE(131); + if (lookahead == '%') ADVANCE(129); + if (lookahead == '\\') ADVANCE(132); + if (lookahead != 0) ADVANCE(130); END_STATE(); case 8: - if (lookahead == '\n') ADVANCE(149); + if (lookahead == '\n') ADVANCE(152); if (lookahead == '\r') SKIP(10) - if (lookahead == '!') ADVANCE(159); - if (lookahead == '"') ADVANCE(160); - if (lookahead == '$') ADVANCE(131); - if (lookahead == '\'') ADVANCE(160); - if (lookahead == '*') ADVANCE(44); - if (lookahead == '-') ADVANCE(151); - if (lookahead == '.') ADVANCE(152); - if (lookahead == ':') ADVANCE(162); - if (lookahead == '<') ADVANCE(73); - if (lookahead == 'F') ADVANCE(153); - if (lookahead == 'I') ADVANCE(155); - if (lookahead == 'N') ADVANCE(156); - if (lookahead == 'T') ADVANCE(157); - if (lookahead == 'W') ADVANCE(154); - if (lookahead == 'X') ADVANCE(158); - if (lookahead == '[') ADVANCE(117); - if (lookahead == '\\') ADVANCE(60); - if (lookahead == ']') ADVANCE(119); - if (lookahead == '^') ADVANCE(48); - if (lookahead == '_') ADVANCE(40); - if (lookahead == '{') ADVANCE(113); - if (lookahead == '~') ADVANCE(52); + if (lookahead == '!') ADVANCE(162); + if (lookahead == '"') ADVANCE(163); + if (lookahead == '$') ADVANCE(134); + if (lookahead == '\'') ADVANCE(163); + if (lookahead == '*') ADVANCE(48); + if (lookahead == '-') ADVANCE(154); + if (lookahead == '.') ADVANCE(155); + if (lookahead == ':') ADVANCE(165); + if (lookahead == '<') ADVANCE(77); + if (lookahead == 'F') ADVANCE(156); + if (lookahead == 'I') ADVANCE(158); + if (lookahead == 'N') ADVANCE(159); + if (lookahead == 'T') ADVANCE(160); + if (lookahead == 'W') ADVANCE(157); + if (lookahead == 'X') ADVANCE(161); + if (lookahead == '[') ADVANCE(120); + if (lookahead == '\\') ADVANCE(64); + if (lookahead == ']') ADVANCE(122); + if (lookahead == '^') ADVANCE(52); + if (lookahead == '_') ADVANCE(44); + if (lookahead == '{') ADVANCE(116); + if (lookahead == '~') ADVANCE(56); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(148); + lookahead == ' ') ADVANCE(151); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(150); + lookahead != '\f') ADVANCE(153); END_STATE(); case 9: - if (lookahead == '\n') ADVANCE(149); + if (lookahead == '\n') ADVANCE(152); if (lookahead == '\r') SKIP(10) - if (lookahead == '!') ADVANCE(159); - if (lookahead == '"') ADVANCE(160); - if (lookahead == '$') ADVANCE(131); - if (lookahead == '\'') ADVANCE(160); - if (lookahead == '*') ADVANCE(44); - if (lookahead == '-') ADVANCE(151); - if (lookahead == '.') ADVANCE(152); - if (lookahead == ':') ADVANCE(162); - if (lookahead == '<') ADVANCE(73); - if (lookahead == 'F') ADVANCE(153); - if (lookahead == 'I') ADVANCE(155); - if (lookahead == 'N') ADVANCE(156); - if (lookahead == 'T') ADVANCE(157); - if (lookahead == 'W') ADVANCE(154); - if (lookahead == 'X') ADVANCE(158); - if (lookahead == '[') ADVANCE(117); - if (lookahead == '\\') ADVANCE(60); - if (lookahead == ']') ADVANCE(119); - if (lookahead == '^') ADVANCE(48); - if (lookahead == '_') ADVANCE(40); - if (lookahead == '{') ADVANCE(112); - if (lookahead == '~') ADVANCE(52); + if (lookahead == '!') ADVANCE(162); + if (lookahead == '"') ADVANCE(163); + if (lookahead == '$') ADVANCE(134); + if (lookahead == '\'') ADVANCE(163); + if (lookahead == '*') ADVANCE(48); + if (lookahead == '-') ADVANCE(154); + if (lookahead == '.') ADVANCE(155); + if (lookahead == ':') ADVANCE(165); + if (lookahead == '<') ADVANCE(77); + if (lookahead == 'F') ADVANCE(156); + if (lookahead == 'I') ADVANCE(158); + if (lookahead == 'N') ADVANCE(159); + if (lookahead == 'T') ADVANCE(160); + if (lookahead == 'W') ADVANCE(157); + if (lookahead == 'X') ADVANCE(161); + if (lookahead == '[') ADVANCE(120); + if (lookahead == '\\') ADVANCE(64); + if (lookahead == ']') ADVANCE(122); + if (lookahead == '^') ADVANCE(52); + if (lookahead == '_') ADVANCE(44); + if (lookahead == '{') ADVANCE(115); + if (lookahead == '~') ADVANCE(56); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(148); + lookahead == ' ') ADVANCE(151); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(150); + lookahead != '\f') ADVANCE(153); END_STATE(); case 10: - if (lookahead == '\n') ADVANCE(149); + if (lookahead == '\n') ADVANCE(152); if (lookahead == '\r') SKIP(10) - if (lookahead == '!') ADVANCE(159); - if (lookahead == '"') ADVANCE(160); - if (lookahead == '$') ADVANCE(131); - if (lookahead == '\'') ADVANCE(160); - if (lookahead == '*') ADVANCE(44); - if (lookahead == '-') ADVANCE(151); - if (lookahead == '.') ADVANCE(152); - if (lookahead == ':') ADVANCE(162); - if (lookahead == '<') ADVANCE(73); - if (lookahead == 'F') ADVANCE(153); - if (lookahead == 'I') ADVANCE(155); - if (lookahead == 'N') ADVANCE(156); - if (lookahead == 'T') ADVANCE(157); - if (lookahead == 'W') ADVANCE(154); - if (lookahead == 'X') ADVANCE(158); - if (lookahead == '[') ADVANCE(117); - if (lookahead == '\\') ADVANCE(60); - if (lookahead == '^') ADVANCE(48); - if (lookahead == '_') ADVANCE(40); - if (lookahead == '{') ADVANCE(113); - if (lookahead == '~') ADVANCE(52); + if (lookahead == '!') ADVANCE(162); + if (lookahead == '"') ADVANCE(163); + if (lookahead == '$') ADVANCE(134); + if (lookahead == '\'') ADVANCE(163); + if (lookahead == '*') ADVANCE(48); + if (lookahead == '-') ADVANCE(154); + if (lookahead == '.') ADVANCE(155); + if (lookahead == ':') ADVANCE(165); + if (lookahead == '<') ADVANCE(77); + if (lookahead == 'F') ADVANCE(156); + if (lookahead == 'I') ADVANCE(158); + if (lookahead == 'N') ADVANCE(159); + if (lookahead == 'T') ADVANCE(160); + if (lookahead == 'W') ADVANCE(157); + if (lookahead == 'X') ADVANCE(161); + if (lookahead == '[') ADVANCE(120); + if (lookahead == '\\') ADVANCE(64); + if (lookahead == '^') ADVANCE(52); + if (lookahead == '_') ADVANCE(44); + if (lookahead == '{') ADVANCE(116); + if (lookahead == '~') ADVANCE(56); if (lookahead != 0 && (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(150); + lookahead != ' ') ADVANCE(153); END_STATE(); case 11: - if (lookahead == '\r') SKIP(11) - if (lookahead == '"') ADVANCE(167); + if (lookahead == '\n') ADVANCE(152); + if (lookahead == '\r') SKIP(12) + if (lookahead == '!') ADVANCE(100); + if (lookahead == '"') ADVANCE(101); + if (lookahead == '$') ADVANCE(135); + if (lookahead == '\'') ADVANCE(101); + if (lookahead == '*') ADVANCE(49); + if (lookahead == '-') ADVANCE(79); + if (lookahead == '.') ADVANCE(81); + if (lookahead == ':') ADVANCE(102); + if (lookahead == '<') ADVANCE(78); + if (lookahead == '>') ADVANCE(153); + if (lookahead == 'F') ADVANCE(88); + if (lookahead == 'I') ADVANCE(90); + if (lookahead == 'N') ADVANCE(91); + if (lookahead == 'T') ADVANCE(92); + if (lookahead == 'W') ADVANCE(87); + if (lookahead == 'X') ADVANCE(99); + if (lookahead == '[') ADVANCE(121); + if (lookahead == '\\') ADVANCE(65); + if (lookahead == ']') ADVANCE(123); + if (lookahead == '^') ADVANCE(53); + if (lookahead == '_') ADVANCE(45); + if (lookahead == '{') ADVANCE(117); + if (lookahead == '~') ADVANCE(57); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(151); + if (lookahead != 0 && + lookahead != 11 && + lookahead != '\f') ADVANCE(103); + END_STATE(); + case 12: + if (lookahead == '\n') ADVANCE(152); + if (lookahead == '\r') SKIP(12) + if (lookahead == '!') ADVANCE(100); + if (lookahead == '"') ADVANCE(101); + if (lookahead == '$') ADVANCE(135); + if (lookahead == '\'') ADVANCE(101); + if (lookahead == '*') ADVANCE(49); + if (lookahead == '-') ADVANCE(79); + if (lookahead == '.') ADVANCE(81); + if (lookahead == ':') ADVANCE(102); + if (lookahead == '<') ADVANCE(78); + if (lookahead == '>') ADVANCE(153); + if (lookahead == 'F') ADVANCE(88); + if (lookahead == 'I') ADVANCE(90); + if (lookahead == 'N') ADVANCE(91); + if (lookahead == 'T') ADVANCE(92); + if (lookahead == 'W') ADVANCE(87); + if (lookahead == 'X') ADVANCE(99); + if (lookahead == '[') ADVANCE(121); + if (lookahead == '\\') ADVANCE(65); + if (lookahead == '^') ADVANCE(53); + if (lookahead == '_') ADVANCE(45); + if (lookahead == '{') ADVANCE(117); + if (lookahead == '~') ADVANCE(57); + if (lookahead != 0 && + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(103); + END_STATE(); + case 13: + if (lookahead == '\r') SKIP(13) + if (lookahead == '"') ADVANCE(170); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(173); END_STATE(); - case 12: - if (lookahead == '\r') ADVANCE(122); + case 14: + if (lookahead == '\r') ADVANCE(125); if (lookahead != 0 && - lookahead != ')') ADVANCE(123); + lookahead != ')') ADVANCE(126); END_STATE(); - case 13: - if (lookahead == '\r') ADVANCE(145); + case 15: + if (lookahead == '\r') ADVANCE(148); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && lookahead != '=' && lookahead != '{' && - lookahead != '}') ADVANCE(146); + lookahead != '}') ADVANCE(149); END_STATE(); - case 14: - if (lookahead == '\r') ADVANCE(168); + case 16: + if (lookahead == '\r') ADVANCE(171); if (lookahead != 0 && lookahead != '\n' && - lookahead != '"') ADVANCE(169); + lookahead != '"') ADVANCE(172); END_STATE(); - case 15: - if (lookahead == '.') ADVANCE(65); + case 17: + if (lookahead == '.') ADVANCE(69); END_STATE(); - case 16: - if (lookahead == ':') ADVANCE(101); + case 18: + if (lookahead == ':') ADVANCE(105); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(16); - END_STATE(); - case 17: - if (lookahead == 'D') ADVANCE(23); - END_STATE(); - case 18: - if (lookahead == 'E') ADVANCE(137); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(18); END_STATE(); case 19: - if (lookahead == 'E') ADVANCE(143); + if (lookahead == 'D') ADVANCE(25); END_STATE(); case 20: - if (lookahead == 'F') ADVANCE(22); + if (lookahead == 'E') ADVANCE(140); END_STATE(); case 21: - if (lookahead == 'M') ADVANCE(19); + if (lookahead == 'E') ADVANCE(146); END_STATE(); case 22: - if (lookahead == 'O') ADVANCE(139); + if (lookahead == 'F') ADVANCE(24); END_STATE(); case 23: - if (lookahead == 'O') ADVANCE(133); + if (lookahead == 'M') ADVANCE(21); END_STATE(); case 24: - if (lookahead == 'P') ADVANCE(135); + if (lookahead == 'O') ADVANCE(142); END_STATE(); case 25: - if (lookahead == 'T') ADVANCE(18); + if (lookahead == 'O') ADVANCE(136); END_STATE(); case 26: - if (lookahead == 'X') ADVANCE(21); + if (lookahead == 'P') ADVANCE(138); END_STATE(); case 27: - if (lookahead == 'X') ADVANCE(141); + if (lookahead == 'T') ADVANCE(20); END_STATE(); case 28: - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '}') ADVANCE(165); + if (lookahead == 'X') ADVANCE(23); END_STATE(); case 29: - if (eof) ADVANCE(37); - if (lookahead == '\n') ADVANCE(149); - if (lookahead == '\r') SKIP(29) - if (lookahead == '!') ADVANCE(159); - if (lookahead == '"') ADVANCE(167); - if (lookahead == '$') ADVANCE(131); - if (lookahead == '%') ADVANCE(126); - if (lookahead == '(') ADVANCE(121); - if (lookahead == ')') ADVANCE(124); - if (lookahead == '*') ADVANCE(44); - if (lookahead == '-') ADVANCE(151); - if (lookahead == '.') ADVANCE(164); - if (lookahead == ':') ADVANCE(162); - if (lookahead == '<') ADVANCE(73); - if (lookahead == '=') ADVANCE(166); - if (lookahead == '>') ADVANCE(100); - if (lookahead == 'F') ADVANCE(153); - if (lookahead == 'I') ADVANCE(155); - if (lookahead == 'N') ADVANCE(156); - if (lookahead == 'T') ADVANCE(157); - if (lookahead == 'W') ADVANCE(154); - if (lookahead == 'X') ADVANCE(158); - if (lookahead == '[') ADVANCE(117); - if (lookahead == '\\') ADVANCE(62); - if (lookahead == ']') ADVANCE(104); - if (lookahead == '^') ADVANCE(48); - if (lookahead == '_') ADVANCE(40); - if (lookahead == '{') ADVANCE(111); - if (lookahead == '}') ADVANCE(125); - if (lookahead == '~') ADVANCE(52); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(150); + if (lookahead == 'X') ADVANCE(144); END_STATE(); case 30: - if (eof) ADVANCE(37); - if (lookahead == '\n') ADVANCE(149); - if (lookahead == '\r') SKIP(31) - if (lookahead == '!') ADVANCE(159); - if (lookahead == '"') ADVANCE(160); - if (lookahead == '$') ADVANCE(131); - if (lookahead == '\'') ADVANCE(160); - if (lookahead == '*') ADVANCE(44); - if (lookahead == '-') ADVANCE(151); - if (lookahead == '.') ADVANCE(152); - if (lookahead == ':') ADVANCE(162); - if (lookahead == '<') ADVANCE(73); - if (lookahead == 'F') ADVANCE(153); - if (lookahead == 'I') ADVANCE(155); - if (lookahead == 'N') ADVANCE(156); - if (lookahead == 'T') ADVANCE(157); - if (lookahead == 'W') ADVANCE(154); - if (lookahead == 'X') ADVANCE(158); - if (lookahead == '[') ADVANCE(117); - if (lookahead == '\\') ADVANCE(60); - if (lookahead == '^') ADVANCE(48); - if (lookahead == '_') ADVANCE(40); - if (lookahead == '{') ADVANCE(161); - if (lookahead == '~') ADVANCE(52); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(148); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(150); + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '}') ADVANCE(168); END_STATE(); case 31: - if (eof) ADVANCE(37); - if (lookahead == '\n') ADVANCE(149); + if (eof) ADVANCE(41); + if (lookahead == '\n') ADVANCE(152); if (lookahead == '\r') SKIP(31) - if (lookahead == '!') ADVANCE(159); - if (lookahead == '"') ADVANCE(160); - if (lookahead == '$') ADVANCE(131); - if (lookahead == '\'') ADVANCE(160); - if (lookahead == '*') ADVANCE(44); - if (lookahead == '-') ADVANCE(151); - if (lookahead == '.') ADVANCE(152); - if (lookahead == ':') ADVANCE(162); - if (lookahead == '<') ADVANCE(73); - if (lookahead == 'F') ADVANCE(153); - if (lookahead == 'I') ADVANCE(155); - if (lookahead == 'N') ADVANCE(156); - if (lookahead == 'T') ADVANCE(157); - if (lookahead == 'W') ADVANCE(154); - if (lookahead == 'X') ADVANCE(158); - if (lookahead == '[') ADVANCE(117); - if (lookahead == '\\') ADVANCE(60); - if (lookahead == '^') ADVANCE(48); - if (lookahead == '_') ADVANCE(40); - if (lookahead == '{') ADVANCE(161); - if (lookahead == '~') ADVANCE(52); + if (lookahead == '!') ADVANCE(162); + if (lookahead == '"') ADVANCE(170); + if (lookahead == '$') ADVANCE(134); + if (lookahead == '%') ADVANCE(129); + if (lookahead == '(') ADVANCE(124); + if (lookahead == ')') ADVANCE(127); + if (lookahead == '*') ADVANCE(48); + if (lookahead == '-') ADVANCE(154); + if (lookahead == '.') ADVANCE(167); + if (lookahead == ':') ADVANCE(165); + if (lookahead == '<') ADVANCE(77); + if (lookahead == '=') ADVANCE(169); + if (lookahead == '>') ADVANCE(104); + if (lookahead == 'F') ADVANCE(156); + if (lookahead == 'I') ADVANCE(158); + if (lookahead == 'N') ADVANCE(159); + if (lookahead == 'T') ADVANCE(160); + if (lookahead == 'W') ADVANCE(157); + if (lookahead == 'X') ADVANCE(161); + if (lookahead == '[') ADVANCE(120); + if (lookahead == '\\') ADVANCE(66); + if (lookahead == '^') ADVANCE(52); + if (lookahead == '_') ADVANCE(44); + if (lookahead == '{') ADVANCE(114); + if (lookahead == '}') ADVANCE(128); + if (lookahead == '~') ADVANCE(56); if (lookahead != 0 && (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(150); + lookahead != ' ') ADVANCE(153); END_STATE(); case 32: - if (eof) ADVANCE(37); - if (lookahead == '\n') ADVANCE(149); + if (eof) ADVANCE(41); + if (lookahead == '\n') ADVANCE(152); if (lookahead == '\r') SKIP(33) - if (lookahead == '!') ADVANCE(96); - if (lookahead == '"') ADVANCE(97); - if (lookahead == '$') ADVANCE(132); - if (lookahead == '\'') ADVANCE(97); - if (lookahead == '*') ADVANCE(45); - if (lookahead == '-') ADVANCE(75); - if (lookahead == '.') ADVANCE(77); - if (lookahead == ':') ADVANCE(98); - if (lookahead == '<') ADVANCE(74); - if (lookahead == '>') ADVANCE(150); - if (lookahead == 'F') ADVANCE(84); - if (lookahead == 'I') ADVANCE(86); - if (lookahead == 'N') ADVANCE(87); - if (lookahead == 'T') ADVANCE(88); - if (lookahead == 'W') ADVANCE(83); - if (lookahead == 'X') ADVANCE(95); - if (lookahead == '[') ADVANCE(118); - if (lookahead == '\\') ADVANCE(61); - if (lookahead == '^') ADVANCE(49); - if (lookahead == '_') ADVANCE(41); - if (lookahead == '{') ADVANCE(114); - if (lookahead == '~') ADVANCE(53); + if (lookahead == '!') ADVANCE(162); + if (lookahead == '"') ADVANCE(163); + if (lookahead == '$') ADVANCE(134); + if (lookahead == '\'') ADVANCE(163); + if (lookahead == '*') ADVANCE(48); + if (lookahead == '-') ADVANCE(154); + if (lookahead == '.') ADVANCE(155); + if (lookahead == ':') ADVANCE(165); + if (lookahead == '<') ADVANCE(77); + if (lookahead == 'F') ADVANCE(156); + if (lookahead == 'I') ADVANCE(158); + if (lookahead == 'N') ADVANCE(159); + if (lookahead == 'T') ADVANCE(160); + if (lookahead == 'W') ADVANCE(157); + if (lookahead == 'X') ADVANCE(161); + if (lookahead == '[') ADVANCE(120); + if (lookahead == '\\') ADVANCE(64); + if (lookahead == '^') ADVANCE(52); + if (lookahead == '_') ADVANCE(44); + if (lookahead == '{') ADVANCE(164); + if (lookahead == '~') ADVANCE(56); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(148); + lookahead == ' ') ADVANCE(151); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(99); + lookahead != '\f') ADVANCE(153); END_STATE(); case 33: - if (eof) ADVANCE(37); - if (lookahead == '\n') ADVANCE(149); + if (eof) ADVANCE(41); + if (lookahead == '\n') ADVANCE(152); if (lookahead == '\r') SKIP(33) - if (lookahead == '!') ADVANCE(96); - if (lookahead == '"') ADVANCE(97); - if (lookahead == '$') ADVANCE(132); - if (lookahead == '\'') ADVANCE(97); - if (lookahead == '*') ADVANCE(45); - if (lookahead == '-') ADVANCE(75); - if (lookahead == '.') ADVANCE(77); - if (lookahead == ':') ADVANCE(98); - if (lookahead == '<') ADVANCE(74); - if (lookahead == '>') ADVANCE(150); - if (lookahead == 'F') ADVANCE(84); - if (lookahead == 'I') ADVANCE(86); - if (lookahead == 'N') ADVANCE(87); - if (lookahead == 'T') ADVANCE(88); - if (lookahead == 'W') ADVANCE(83); - if (lookahead == 'X') ADVANCE(95); - if (lookahead == '[') ADVANCE(118); - if (lookahead == '\\') ADVANCE(61); - if (lookahead == '^') ADVANCE(49); - if (lookahead == '_') ADVANCE(41); - if (lookahead == '{') ADVANCE(114); - if (lookahead == '~') ADVANCE(53); + if (lookahead == '!') ADVANCE(162); + if (lookahead == '"') ADVANCE(163); + if (lookahead == '$') ADVANCE(134); + if (lookahead == '\'') ADVANCE(163); + if (lookahead == '*') ADVANCE(48); + if (lookahead == '-') ADVANCE(154); + if (lookahead == '.') ADVANCE(155); + if (lookahead == ':') ADVANCE(165); + if (lookahead == '<') ADVANCE(77); + if (lookahead == 'F') ADVANCE(156); + if (lookahead == 'I') ADVANCE(158); + if (lookahead == 'N') ADVANCE(159); + if (lookahead == 'T') ADVANCE(160); + if (lookahead == 'W') ADVANCE(157); + if (lookahead == 'X') ADVANCE(161); + if (lookahead == '[') ADVANCE(120); + if (lookahead == '\\') ADVANCE(64); + if (lookahead == '^') ADVANCE(52); + if (lookahead == '_') ADVANCE(44); + if (lookahead == '{') ADVANCE(164); + if (lookahead == '~') ADVANCE(56); if (lookahead != 0 && (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(99); + lookahead != ' ') ADVANCE(153); END_STATE(); case 34: - if (eof) ADVANCE(37); - if (lookahead == '\n') ADVANCE(149); + if (eof) ADVANCE(41); + if (lookahead == '\n') ADVANCE(152); if (lookahead == '\r') SKIP(35) - if (lookahead == '!') ADVANCE(159); - if (lookahead == '"') ADVANCE(160); - if (lookahead == '$') ADVANCE(131); - if (lookahead == '\'') ADVANCE(160); - if (lookahead == '*') ADVANCE(44); - if (lookahead == '-') ADVANCE(151); - if (lookahead == '.') ADVANCE(152); - if (lookahead == ':') ADVANCE(162); - if (lookahead == '<') ADVANCE(73); - if (lookahead == 'F') ADVANCE(153); - if (lookahead == 'I') ADVANCE(155); - if (lookahead == 'N') ADVANCE(156); - if (lookahead == 'T') ADVANCE(157); - if (lookahead == 'W') ADVANCE(154); - if (lookahead == 'X') ADVANCE(158); - if (lookahead == '[') ADVANCE(117); - if (lookahead == '\\') ADVANCE(60); - if (lookahead == '^') ADVANCE(48); - if (lookahead == '_') ADVANCE(40); - if (lookahead == '{') ADVANCE(113); - if (lookahead == '~') ADVANCE(52); + if (lookahead == '!') ADVANCE(100); + if (lookahead == '"') ADVANCE(101); + if (lookahead == '$') ADVANCE(135); + if (lookahead == '\'') ADVANCE(101); + if (lookahead == '*') ADVANCE(49); + if (lookahead == '-') ADVANCE(79); + if (lookahead == '.') ADVANCE(81); + if (lookahead == ':') ADVANCE(102); + if (lookahead == '<') ADVANCE(78); + if (lookahead == '>') ADVANCE(153); + if (lookahead == 'F') ADVANCE(88); + if (lookahead == 'I') ADVANCE(90); + if (lookahead == 'N') ADVANCE(91); + if (lookahead == 'T') ADVANCE(92); + if (lookahead == 'W') ADVANCE(87); + if (lookahead == 'X') ADVANCE(99); + if (lookahead == '[') ADVANCE(121); + if (lookahead == '\\') ADVANCE(65); + if (lookahead == '^') ADVANCE(53); + if (lookahead == '_') ADVANCE(45); + if (lookahead == '{') ADVANCE(117); + if (lookahead == '~') ADVANCE(57); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(148); + lookahead == ' ') ADVANCE(151); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(150); + lookahead != '\f') ADVANCE(103); END_STATE(); case 35: - if (eof) ADVANCE(37); - if (lookahead == '\n') ADVANCE(149); + if (eof) ADVANCE(41); + if (lookahead == '\n') ADVANCE(152); if (lookahead == '\r') SKIP(35) - if (lookahead == '!') ADVANCE(159); - if (lookahead == '"') ADVANCE(160); - if (lookahead == '$') ADVANCE(131); - if (lookahead == '\'') ADVANCE(160); - if (lookahead == '*') ADVANCE(44); - if (lookahead == '-') ADVANCE(151); - if (lookahead == '.') ADVANCE(152); - if (lookahead == ':') ADVANCE(162); - if (lookahead == '<') ADVANCE(73); - if (lookahead == 'F') ADVANCE(153); - if (lookahead == 'I') ADVANCE(155); - if (lookahead == 'N') ADVANCE(156); - if (lookahead == 'T') ADVANCE(157); - if (lookahead == 'W') ADVANCE(154); - if (lookahead == 'X') ADVANCE(158); - if (lookahead == '[') ADVANCE(117); - if (lookahead == '\\') ADVANCE(60); - if (lookahead == '^') ADVANCE(48); - if (lookahead == '_') ADVANCE(40); - if (lookahead == '{') ADVANCE(113); - if (lookahead == '~') ADVANCE(52); + if (lookahead == '!') ADVANCE(100); + if (lookahead == '"') ADVANCE(101); + if (lookahead == '$') ADVANCE(135); + if (lookahead == '\'') ADVANCE(101); + if (lookahead == '*') ADVANCE(49); + if (lookahead == '-') ADVANCE(79); + if (lookahead == '.') ADVANCE(81); + if (lookahead == ':') ADVANCE(102); + if (lookahead == '<') ADVANCE(78); + if (lookahead == '>') ADVANCE(153); + if (lookahead == 'F') ADVANCE(88); + if (lookahead == 'I') ADVANCE(90); + if (lookahead == 'N') ADVANCE(91); + if (lookahead == 'T') ADVANCE(92); + if (lookahead == 'W') ADVANCE(87); + if (lookahead == 'X') ADVANCE(99); + if (lookahead == '[') ADVANCE(121); + if (lookahead == '\\') ADVANCE(65); + if (lookahead == '^') ADVANCE(53); + if (lookahead == '_') ADVANCE(45); + if (lookahead == '{') ADVANCE(117); + if (lookahead == '~') ADVANCE(57); if (lookahead != 0 && (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(150); + lookahead != ' ') ADVANCE(103); END_STATE(); case 36: - if (eof) ADVANCE(37); - if (lookahead == '\n') ADVANCE(149); - if (lookahead == '\r') SKIP(35) - if (lookahead == '!') ADVANCE(159); - if (lookahead == '"') ADVANCE(160); - if (lookahead == '$') ADVANCE(131); - if (lookahead == '\'') ADVANCE(160); - if (lookahead == '*') ADVANCE(44); - if (lookahead == '-') ADVANCE(151); - if (lookahead == '.') ADVANCE(152); - if (lookahead == ':') ADVANCE(162); - if (lookahead == '<') ADVANCE(73); - if (lookahead == 'F') ADVANCE(153); - if (lookahead == 'I') ADVANCE(155); - if (lookahead == 'N') ADVANCE(156); - if (lookahead == 'T') ADVANCE(157); - if (lookahead == 'W') ADVANCE(154); - if (lookahead == 'X') ADVANCE(158); - if (lookahead == '[') ADVANCE(117); - if (lookahead == '\\') ADVANCE(60); - if (lookahead == '^') ADVANCE(48); - if (lookahead == '_') ADVANCE(40); - if (lookahead == '{') ADVANCE(112); - if (lookahead == '~') ADVANCE(52); + if (eof) ADVANCE(41); + if (lookahead == '\n') ADVANCE(152); + if (lookahead == '\r') SKIP(37) + if (lookahead == '!') ADVANCE(162); + if (lookahead == '"') ADVANCE(163); + if (lookahead == '$') ADVANCE(134); + if (lookahead == '\'') ADVANCE(163); + if (lookahead == '*') ADVANCE(48); + if (lookahead == '-') ADVANCE(154); + if (lookahead == '.') ADVANCE(155); + if (lookahead == ':') ADVANCE(165); + if (lookahead == '<') ADVANCE(77); + if (lookahead == 'F') ADVANCE(156); + if (lookahead == 'I') ADVANCE(158); + if (lookahead == 'N') ADVANCE(159); + if (lookahead == 'T') ADVANCE(160); + if (lookahead == 'W') ADVANCE(157); + if (lookahead == 'X') ADVANCE(161); + if (lookahead == '[') ADVANCE(120); + if (lookahead == '\\') ADVANCE(64); + if (lookahead == '^') ADVANCE(52); + if (lookahead == '_') ADVANCE(44); + if (lookahead == '{') ADVANCE(116); + if (lookahead == '~') ADVANCE(56); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(148); + lookahead == ' ') ADVANCE(151); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(150); + lookahead != '\f') ADVANCE(153); END_STATE(); case 37: - ACCEPT_TOKEN(ts_builtin_sym_end); + if (eof) ADVANCE(41); + if (lookahead == '\n') ADVANCE(152); + if (lookahead == '\r') SKIP(37) + if (lookahead == '!') ADVANCE(162); + if (lookahead == '"') ADVANCE(163); + if (lookahead == '$') ADVANCE(134); + if (lookahead == '\'') ADVANCE(163); + if (lookahead == '*') ADVANCE(48); + if (lookahead == '-') ADVANCE(154); + if (lookahead == '.') ADVANCE(155); + if (lookahead == ':') ADVANCE(165); + if (lookahead == '<') ADVANCE(77); + if (lookahead == 'F') ADVANCE(156); + if (lookahead == 'I') ADVANCE(158); + if (lookahead == 'N') ADVANCE(159); + if (lookahead == 'T') ADVANCE(160); + if (lookahead == 'W') ADVANCE(157); + if (lookahead == 'X') ADVANCE(161); + if (lookahead == '[') ADVANCE(120); + if (lookahead == '\\') ADVANCE(64); + if (lookahead == '^') ADVANCE(52); + if (lookahead == '_') ADVANCE(44); + if (lookahead == '{') ADVANCE(116); + if (lookahead == '~') ADVANCE(56); + if (lookahead != 0 && + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(153); END_STATE(); case 38: - ACCEPT_TOKEN(anon_sym_LBRACE_); + if (eof) ADVANCE(41); + if (lookahead == '\n') ADVANCE(152); + if (lookahead == '\r') SKIP(37) + if (lookahead == '!') ADVANCE(162); + if (lookahead == '"') ADVANCE(163); + if (lookahead == '$') ADVANCE(134); + if (lookahead == '\'') ADVANCE(163); + if (lookahead == '*') ADVANCE(48); + if (lookahead == '-') ADVANCE(154); + if (lookahead == '.') ADVANCE(155); + if (lookahead == ':') ADVANCE(165); + if (lookahead == '<') ADVANCE(77); + if (lookahead == 'F') ADVANCE(156); + if (lookahead == 'I') ADVANCE(158); + if (lookahead == 'N') ADVANCE(159); + if (lookahead == 'T') ADVANCE(160); + if (lookahead == 'W') ADVANCE(157); + if (lookahead == 'X') ADVANCE(161); + if (lookahead == '[') ADVANCE(120); + if (lookahead == '\\') ADVANCE(64); + if (lookahead == '^') ADVANCE(52); + if (lookahead == '_') ADVANCE(44); + if (lookahead == '{') ADVANCE(115); + if (lookahead == '~') ADVANCE(56); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(151); + if (lookahead != 0 && + lookahead != 11 && + lookahead != '\f') ADVANCE(153); END_STATE(); case 39: + if (eof) ADVANCE(41); + if (lookahead == '\n') ADVANCE(152); + if (lookahead == '\r') SKIP(40) + if (lookahead == '!') ADVANCE(162); + if (lookahead == '"') ADVANCE(163); + if (lookahead == '$') ADVANCE(134); + if (lookahead == '\'') ADVANCE(163); + if (lookahead == '*') ADVANCE(48); + if (lookahead == '-') ADVANCE(154); + if (lookahead == '.') ADVANCE(155); + if (lookahead == ':') ADVANCE(165); + if (lookahead == '<') ADVANCE(77); + if (lookahead == '>') ADVANCE(104); + if (lookahead == 'F') ADVANCE(156); + if (lookahead == 'I') ADVANCE(158); + if (lookahead == 'N') ADVANCE(159); + if (lookahead == 'T') ADVANCE(160); + if (lookahead == 'W') ADVANCE(157); + if (lookahead == 'X') ADVANCE(161); + if (lookahead == '[') ADVANCE(120); + if (lookahead == '\\') ADVANCE(64); + if (lookahead == '^') ADVANCE(52); + if (lookahead == '_') ADVANCE(44); + if (lookahead == '{') ADVANCE(116); + if (lookahead == '~') ADVANCE(56); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(151); + if (lookahead != 0 && + lookahead != 11 && + lookahead != '\f') ADVANCE(153); + END_STATE(); + case 40: + if (eof) ADVANCE(41); + if (lookahead == '\n') ADVANCE(152); + if (lookahead == '\r') SKIP(40) + if (lookahead == '!') ADVANCE(162); + if (lookahead == '"') ADVANCE(163); + if (lookahead == '$') ADVANCE(134); + if (lookahead == '\'') ADVANCE(163); + if (lookahead == '*') ADVANCE(48); + if (lookahead == '-') ADVANCE(154); + if (lookahead == '.') ADVANCE(155); + if (lookahead == ':') ADVANCE(165); + if (lookahead == '<') ADVANCE(77); + if (lookahead == '>') ADVANCE(104); + if (lookahead == 'F') ADVANCE(156); + if (lookahead == 'I') ADVANCE(158); + if (lookahead == 'N') ADVANCE(159); + if (lookahead == 'T') ADVANCE(160); + if (lookahead == 'W') ADVANCE(157); + if (lookahead == 'X') ADVANCE(161); + if (lookahead == '[') ADVANCE(120); + if (lookahead == '\\') ADVANCE(64); + if (lookahead == '^') ADVANCE(52); + if (lookahead == '_') ADVANCE(44); + if (lookahead == '{') ADVANCE(116); + if (lookahead == '~') ADVANCE(56); + if (lookahead != 0 && + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(153); + END_STATE(); + case 41: + ACCEPT_TOKEN(ts_builtin_sym_end); + END_STATE(); + case 42: + ACCEPT_TOKEN(anon_sym_LBRACE_); + END_STATE(); + case 43: ACCEPT_TOKEN(anon_sym_LBRACE_); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(99); + lookahead != '>') ADVANCE(103); END_STATE(); - case 40: + case 44: ACCEPT_TOKEN(anon_sym__); END_STATE(); - case 41: + case 45: ACCEPT_TOKEN(anon_sym__); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(99); + lookahead != '>') ADVANCE(103); END_STATE(); - case 42: + case 46: ACCEPT_TOKEN(anon_sym_LBRACE_STAR); END_STATE(); - case 43: + case 47: ACCEPT_TOKEN(anon_sym_LBRACE_STAR); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(99); + lookahead != '>') ADVANCE(103); END_STATE(); - case 44: + case 48: ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); - case 45: + case 49: ACCEPT_TOKEN(anon_sym_STAR); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(99); + lookahead != '>') ADVANCE(103); END_STATE(); - case 46: + case 50: ACCEPT_TOKEN(anon_sym_LBRACE_CARET); END_STATE(); - case 47: + case 51: ACCEPT_TOKEN(anon_sym_LBRACE_CARET); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(99); + lookahead != '>') ADVANCE(103); END_STATE(); - case 48: + case 52: ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); - case 49: + case 53: ACCEPT_TOKEN(anon_sym_CARET); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(99); + lookahead != '>') ADVANCE(103); END_STATE(); - case 50: + case 54: ACCEPT_TOKEN(anon_sym_LBRACE_TILDE); END_STATE(); - case 51: + case 55: ACCEPT_TOKEN(anon_sym_LBRACE_TILDE); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(99); + lookahead != '>') ADVANCE(103); END_STATE(); - case 52: + case 56: ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); - case 53: + case 57: ACCEPT_TOKEN(anon_sym_TILDE); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(99); + lookahead != '>') ADVANCE(103); END_STATE(); - case 54: + case 58: ACCEPT_TOKEN(anon_sym_LBRACE_EQ); END_STATE(); - case 55: + case 59: ACCEPT_TOKEN(anon_sym_LBRACE_EQ); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(99); + lookahead != '>') ADVANCE(103); END_STATE(); - case 56: + case 60: ACCEPT_TOKEN(anon_sym_LBRACE_PLUS); END_STATE(); - case 57: + case 61: ACCEPT_TOKEN(anon_sym_LBRACE_PLUS); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(99); + lookahead != '>') ADVANCE(103); END_STATE(); - case 58: + case 62: ACCEPT_TOKEN(anon_sym_LBRACE_DASH); END_STATE(); - case 59: + case 63: ACCEPT_TOKEN(anon_sym_LBRACE_DASH); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(99); + lookahead != '>') ADVANCE(103); END_STATE(); - case 60: + case 64: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '"' || - lookahead == '\'') ADVANCE(63); + lookahead == '\'') ADVANCE(67); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && - lookahead != '\\') ADVANCE(71); + lookahead != '\\') ADVANCE(75); END_STATE(); - case 61: + case 65: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '"' || - lookahead == '\'') ADVANCE(64); - if (lookahead == '\\') ADVANCE(99); + lookahead == '\'') ADVANCE(68); + if (lookahead == '\\') ADVANCE(103); if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || lookahead == ' ' || - lookahead == '>') ADVANCE(71); + lookahead == '>') ADVANCE(75); if (lookahead != 0 && - (lookahead < '\n' || '\r' < lookahead)) ADVANCE(72); + (lookahead < '\n' || '\r' < lookahead)) ADVANCE(76); END_STATE(); - case 62: + case 66: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && - lookahead != '\\') ADVANCE(71); + lookahead != '\\') ADVANCE(75); END_STATE(); - case 63: + case 67: ACCEPT_TOKEN(sym_quotation_marks); END_STATE(); - case 64: + case 68: ACCEPT_TOKEN(sym_quotation_marks); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(99); + lookahead != '>') ADVANCE(103); END_STATE(); - case 65: + case 69: ACCEPT_TOKEN(sym_ellipsis); END_STATE(); - case 66: + case 70: ACCEPT_TOKEN(sym_ellipsis); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(99); + lookahead != '>') ADVANCE(103); END_STATE(); - case 67: + case 71: ACCEPT_TOKEN(sym_em_dash); END_STATE(); - case 68: + case 72: ACCEPT_TOKEN(sym_em_dash); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(99); + lookahead != '>') ADVANCE(103); END_STATE(); - case 69: + case 73: ACCEPT_TOKEN(sym_en_dash); - if (lookahead == '-') ADVANCE(67); + if (lookahead == '-') ADVANCE(71); END_STATE(); - case 70: + case 74: ACCEPT_TOKEN(sym_en_dash); - if (lookahead == '-') ADVANCE(68); + if (lookahead == '-') ADVANCE(72); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(99); + lookahead != '>') ADVANCE(103); END_STATE(); - case 71: + case 75: ACCEPT_TOKEN(sym_backslash_escape); END_STATE(); - case 72: + case 76: ACCEPT_TOKEN(sym_backslash_escape); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(99); + lookahead != '>') ADVANCE(103); END_STATE(); - case 73: + case 77: ACCEPT_TOKEN(anon_sym_LT); END_STATE(); - case 74: + case 78: ACCEPT_TOKEN(anon_sym_LT); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(99); + lookahead != '>') ADVANCE(103); END_STATE(); - case 75: + case 79: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == '-') ADVANCE(70); + if (lookahead == '-') ADVANCE(74); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(99); + lookahead != '>') ADVANCE(103); END_STATE(); - case 76: + case 80: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == '.') ADVANCE(66); + if (lookahead == '.') ADVANCE(70); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(99); + lookahead != '>') ADVANCE(103); END_STATE(); - case 77: + case 81: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == '.') ADVANCE(76); + if (lookahead == '.') ADVANCE(80); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(99); + lookahead != '>') ADVANCE(103); END_STATE(); - case 78: + case 82: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == ':') ADVANCE(99); + if (lookahead == ':') ADVANCE(103); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(78); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(82); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(99); + lookahead != '>') ADVANCE(103); END_STATE(); - case 79: + case 83: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'D') ADVANCE(90); + if (lookahead == 'D') ADVANCE(94); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(99); + lookahead != '>') ADVANCE(103); END_STATE(); - case 80: + case 84: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'E') ADVANCE(138); + if (lookahead == 'E') ADVANCE(141); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(99); + lookahead != '>') ADVANCE(103); END_STATE(); - case 81: + case 85: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'E') ADVANCE(144); + if (lookahead == 'E') ADVANCE(147); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(99); + lookahead != '>') ADVANCE(103); END_STATE(); - case 82: + case 86: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'F') ADVANCE(89); + if (lookahead == 'F') ADVANCE(93); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(99); + lookahead != '>') ADVANCE(103); END_STATE(); - case 83: + case 87: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'I') ADVANCE(91); + if (lookahead == 'I') ADVANCE(95); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(99); + lookahead != '>') ADVANCE(103); END_STATE(); - case 84: + case 88: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'I') ADVANCE(93); + if (lookahead == 'I') ADVANCE(97); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(99); + lookahead != '>') ADVANCE(103); END_STATE(); - case 85: + case 89: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'M') ADVANCE(81); + if (lookahead == 'M') ADVANCE(85); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(99); + lookahead != '>') ADVANCE(103); END_STATE(); - case 86: + case 90: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'N') ADVANCE(82); + if (lookahead == 'N') ADVANCE(86); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(99); + lookahead != '>') ADVANCE(103); END_STATE(); - case 87: + case 91: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'O') ADVANCE(92); + if (lookahead == 'O') ADVANCE(96); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(99); + lookahead != '>') ADVANCE(103); END_STATE(); - case 88: + case 92: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'O') ADVANCE(79); + if (lookahead == 'O') ADVANCE(83); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(99); + lookahead != '>') ADVANCE(103); END_STATE(); - case 89: + case 93: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'O') ADVANCE(140); + if (lookahead == 'O') ADVANCE(143); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(99); + lookahead != '>') ADVANCE(103); END_STATE(); - case 90: + case 94: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'O') ADVANCE(134); + if (lookahead == 'O') ADVANCE(137); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(99); + lookahead != '>') ADVANCE(103); END_STATE(); - case 91: + case 95: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'P') ADVANCE(136); + if (lookahead == 'P') ADVANCE(139); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(99); + lookahead != '>') ADVANCE(103); END_STATE(); - case 92: + case 96: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'T') ADVANCE(80); + if (lookahead == 'T') ADVANCE(84); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(99); + lookahead != '>') ADVANCE(103); END_STATE(); - case 93: + case 97: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'X') ADVANCE(85); + if (lookahead == 'X') ADVANCE(89); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(99); + lookahead != '>') ADVANCE(103); END_STATE(); - case 94: + case 98: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'X') ADVANCE(142); + if (lookahead == 'X') ADVANCE(145); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(99); + lookahead != '>') ADVANCE(103); END_STATE(); - case 95: + case 99: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'X') ADVANCE(94); + if (lookahead == 'X') ADVANCE(98); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(99); + lookahead != '>') ADVANCE(103); END_STATE(); - case 96: + case 100: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == '[') ADVANCE(108); + if (lookahead == '[') ADVANCE(111); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(99); + lookahead != '>') ADVANCE(103); END_STATE(); - case 97: + case 101: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == '}') ADVANCE(64); + if (lookahead == '}') ADVANCE(68); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(99); + lookahead != '>') ADVANCE(103); END_STATE(); - case 98: + case 102: ACCEPT_TOKEN(aux_sym_autolink_token1); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(78); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(82); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(99); + lookahead != '>') ADVANCE(103); END_STATE(); - case 99: + case 103: ACCEPT_TOKEN(aux_sym_autolink_token1); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(99); + lookahead != '>') ADVANCE(103); END_STATE(); - case 100: + case 104: ACCEPT_TOKEN(anon_sym_GT); END_STATE(); - case 101: + case 105: ACCEPT_TOKEN(sym_symbol); END_STATE(); - case 102: + case 106: ACCEPT_TOKEN(anon_sym_LBRACK_CARET); END_STATE(); - case 103: + case 107: ACCEPT_TOKEN(anon_sym_LBRACK_CARET); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(99); - END_STATE(); - case 104: - ACCEPT_TOKEN(anon_sym_RBRACK); + lookahead != '>') ADVANCE(103); END_STATE(); - case 105: + case 108: ACCEPT_TOKEN(sym__id); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(105); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(108); END_STATE(); - case 106: + case 109: ACCEPT_TOKEN(anon_sym_LBRACK_RBRACK); END_STATE(); - case 107: + case 110: ACCEPT_TOKEN(anon_sym_BANG_LBRACK); END_STATE(); - case 108: + case 111: ACCEPT_TOKEN(anon_sym_BANG_LBRACK); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(99); + lookahead != '>') ADVANCE(103); END_STATE(); - case 109: + case 112: ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 110: + case 113: ACCEPT_TOKEN(anon_sym_LBRACE); - if (lookahead == '*') ADVANCE(42); - if (lookahead == '+') ADVANCE(56); - if (lookahead == '-') ADVANCE(58); - if (lookahead == '=') ADVANCE(130); - if (lookahead == '^') ADVANCE(46); - if (lookahead == '_') ADVANCE(38); - if (lookahead == '~') ADVANCE(50); + if (lookahead == '*') ADVANCE(46); + if (lookahead == '+') ADVANCE(60); + if (lookahead == '-') ADVANCE(62); + if (lookahead == '=') ADVANCE(133); + if (lookahead == '^') ADVANCE(50); + if (lookahead == '_') ADVANCE(42); + if (lookahead == '~') ADVANCE(54); END_STATE(); - case 111: + case 114: ACCEPT_TOKEN(anon_sym_LBRACE); - if (lookahead == '*') ADVANCE(42); - if (lookahead == '+') ADVANCE(56); - if (lookahead == '-') ADVANCE(58); - if (lookahead == '=') ADVANCE(54); - if (lookahead == '^') ADVANCE(46); - if (lookahead == '_') ADVANCE(38); - if (lookahead == '~') ADVANCE(50); + if (lookahead == '*') ADVANCE(46); + if (lookahead == '+') ADVANCE(60); + if (lookahead == '-') ADVANCE(62); + if (lookahead == '=') ADVANCE(58); + if (lookahead == '^') ADVANCE(50); + if (lookahead == '_') ADVANCE(42); + if (lookahead == '~') ADVANCE(54); END_STATE(); - case 112: + case 115: ACCEPT_TOKEN(anon_sym_LBRACE); if (lookahead == '"' || - lookahead == '\'') ADVANCE(63); - if (lookahead == '*') ADVANCE(42); - if (lookahead == '+') ADVANCE(56); - if (lookahead == '-') ADVANCE(58); - if (lookahead == '=') ADVANCE(130); - if (lookahead == '^') ADVANCE(46); - if (lookahead == '_') ADVANCE(38); - if (lookahead == '~') ADVANCE(50); + lookahead == '\'') ADVANCE(67); + if (lookahead == '*') ADVANCE(46); + if (lookahead == '+') ADVANCE(60); + if (lookahead == '-') ADVANCE(62); + if (lookahead == '=') ADVANCE(133); + if (lookahead == '^') ADVANCE(50); + if (lookahead == '_') ADVANCE(42); + if (lookahead == '~') ADVANCE(54); END_STATE(); - case 113: + case 116: ACCEPT_TOKEN(anon_sym_LBRACE); if (lookahead == '"' || - lookahead == '\'') ADVANCE(63); - if (lookahead == '*') ADVANCE(42); - if (lookahead == '+') ADVANCE(56); - if (lookahead == '-') ADVANCE(58); - if (lookahead == '=') ADVANCE(54); - if (lookahead == '^') ADVANCE(46); - if (lookahead == '_') ADVANCE(38); - if (lookahead == '~') ADVANCE(50); + lookahead == '\'') ADVANCE(67); + if (lookahead == '*') ADVANCE(46); + if (lookahead == '+') ADVANCE(60); + if (lookahead == '-') ADVANCE(62); + if (lookahead == '=') ADVANCE(58); + if (lookahead == '^') ADVANCE(50); + if (lookahead == '_') ADVANCE(42); + if (lookahead == '~') ADVANCE(54); END_STATE(); - case 114: + case 117: ACCEPT_TOKEN(anon_sym_LBRACE); if (lookahead == '"' || - lookahead == '\'') ADVANCE(64); - if (lookahead == '*') ADVANCE(43); - if (lookahead == '+') ADVANCE(57); - if (lookahead == '-') ADVANCE(59); - if (lookahead == '=') ADVANCE(55); - if (lookahead == '^') ADVANCE(47); - if (lookahead == '_') ADVANCE(39); - if (lookahead == '~') ADVANCE(51); + lookahead == '\'') ADVANCE(68); + if (lookahead == '*') ADVANCE(47); + if (lookahead == '+') ADVANCE(61); + if (lookahead == '-') ADVANCE(63); + if (lookahead == '=') ADVANCE(59); + if (lookahead == '^') ADVANCE(51); + if (lookahead == '_') ADVANCE(43); + if (lookahead == '~') ADVANCE(55); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(99); + lookahead != '>') ADVANCE(103); END_STATE(); - case 115: + case 118: ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); - case 116: + case 119: ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == ']') ADVANCE(106); + if (lookahead == ']') ADVANCE(109); END_STATE(); - case 117: + case 120: ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '^') ADVANCE(102); + if (lookahead == '^') ADVANCE(106); END_STATE(); - case 118: + case 121: ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '^') ADVANCE(103); + if (lookahead == '^') ADVANCE(107); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(99); + lookahead != '>') ADVANCE(103); END_STATE(); - case 119: - ACCEPT_TOKEN(anon_sym_RBRACK2); + case 122: + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); - case 120: - ACCEPT_TOKEN(anon_sym_RBRACK2); + case 123: + ACCEPT_TOKEN(anon_sym_RBRACK); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(99); + lookahead != '>') ADVANCE(103); END_STATE(); - case 121: + case 124: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 122: + case 125: ACCEPT_TOKEN(aux_sym_inline_link_destination_token1); - if (lookahead == '\r') ADVANCE(122); + if (lookahead == '\r') ADVANCE(125); if (lookahead != 0 && - lookahead != ')') ADVANCE(123); + lookahead != ')') ADVANCE(126); END_STATE(); - case 123: + case 126: ACCEPT_TOKEN(aux_sym_inline_link_destination_token1); if (lookahead != 0 && - lookahead != ')') ADVANCE(123); + lookahead != ')') ADVANCE(126); END_STATE(); - case 124: + case 127: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 125: + case 128: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 126: + case 129: ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); - case 127: + case 130: ACCEPT_TOKEN(aux_sym__comment_with_newline_token1); END_STATE(); - case 128: + case 131: ACCEPT_TOKEN(aux_sym__comment_with_newline_token1); - if (lookahead == '\r') ADVANCE(128); - if (lookahead == '\\') ADVANCE(129); + if (lookahead == '\r') ADVANCE(131); + if (lookahead == '\\') ADVANCE(132); if (lookahead != 0 && lookahead != '\n' && - lookahead != '%') ADVANCE(127); + lookahead != '%') ADVANCE(130); END_STATE(); - case 129: + case 132: ACCEPT_TOKEN(aux_sym__comment_with_newline_token1); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && - lookahead != '\\') ADVANCE(71); + lookahead != '\\') ADVANCE(75); END_STATE(); - case 130: + case 133: ACCEPT_TOKEN(anon_sym_LBRACE_EQ2); END_STATE(); - case 131: + case 134: ACCEPT_TOKEN(anon_sym_DOLLAR); END_STATE(); - case 132: + case 135: ACCEPT_TOKEN(anon_sym_DOLLAR); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(99); + lookahead != '>') ADVANCE(103); END_STATE(); - case 133: + case 136: ACCEPT_TOKEN(anon_sym_TODO); END_STATE(); - case 134: + case 137: ACCEPT_TOKEN(anon_sym_TODO); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(99); + lookahead != '>') ADVANCE(103); END_STATE(); - case 135: + case 138: ACCEPT_TOKEN(anon_sym_WIP); END_STATE(); - case 136: + case 139: ACCEPT_TOKEN(anon_sym_WIP); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(99); + lookahead != '>') ADVANCE(103); END_STATE(); - case 137: + case 140: ACCEPT_TOKEN(anon_sym_NOTE); END_STATE(); - case 138: + case 141: ACCEPT_TOKEN(anon_sym_NOTE); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(99); + lookahead != '>') ADVANCE(103); END_STATE(); - case 139: + case 142: ACCEPT_TOKEN(anon_sym_INFO); END_STATE(); - case 140: + case 143: ACCEPT_TOKEN(anon_sym_INFO); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(99); + lookahead != '>') ADVANCE(103); END_STATE(); - case 141: + case 144: ACCEPT_TOKEN(anon_sym_XXX); END_STATE(); - case 142: + case 145: ACCEPT_TOKEN(anon_sym_XXX); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(99); + lookahead != '>') ADVANCE(103); END_STATE(); - case 143: + case 146: ACCEPT_TOKEN(sym_fixme); END_STATE(); - case 144: + case 147: ACCEPT_TOKEN(sym_fixme); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(99); + lookahead != '>') ADVANCE(103); END_STATE(); - case 145: + case 148: ACCEPT_TOKEN(sym_language); - if (lookahead == '\r') ADVANCE(145); + if (lookahead == '\r') ADVANCE(148); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && lookahead != '=' && lookahead != '{' && - lookahead != '}') ADVANCE(146); + lookahead != '}') ADVANCE(149); END_STATE(); - case 146: + case 149: ACCEPT_TOKEN(sym_language); if (lookahead != 0 && lookahead != '\t' && @@ -3662,123 +3815,123 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ' && lookahead != '=' && lookahead != '{' && - lookahead != '}') ADVANCE(146); + lookahead != '}') ADVANCE(149); END_STATE(); - case 147: + case 150: ACCEPT_TOKEN(sym__whitespace); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(147); + lookahead == ' ') ADVANCE(150); END_STATE(); - case 148: + case 151: ACCEPT_TOKEN(sym__whitespace1); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(148); - END_STATE(); - case 149: - ACCEPT_TOKEN(sym__newline); - END_STATE(); - case 150: - ACCEPT_TOKEN(aux_sym__text_token1); - END_STATE(); - case 151: - ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == '-') ADVANCE(69); + lookahead == ' ') ADVANCE(151); END_STATE(); case 152: - ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == '.') ADVANCE(15); + ACCEPT_TOKEN(sym__newline); END_STATE(); case 153: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'I') ADVANCE(26); END_STATE(); case 154: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'I') ADVANCE(24); + if (lookahead == '-') ADVANCE(73); END_STATE(); case 155: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'N') ADVANCE(20); + if (lookahead == '.') ADVANCE(17); END_STATE(); case 156: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'O') ADVANCE(25); + if (lookahead == 'I') ADVANCE(28); END_STATE(); case 157: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'O') ADVANCE(17); + if (lookahead == 'I') ADVANCE(26); END_STATE(); case 158: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'X') ADVANCE(27); + if (lookahead == 'N') ADVANCE(22); END_STATE(); case 159: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == '[') ADVANCE(107); + if (lookahead == 'O') ADVANCE(27); END_STATE(); case 160: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == '}') ADVANCE(63); + if (lookahead == 'O') ADVANCE(19); END_STATE(); case 161: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == '"' || - lookahead == '\'') ADVANCE(63); - if (lookahead == '*') ADVANCE(42); - if (lookahead == '+') ADVANCE(56); - if (lookahead == '-') ADVANCE(58); - if (lookahead == '=') ADVANCE(54); - if (lookahead == '^') ADVANCE(46); - if (lookahead == '_') ADVANCE(38); - if (lookahead == '~') ADVANCE(50); + if (lookahead == 'X') ADVANCE(29); END_STATE(); case 162: + ACCEPT_TOKEN(aux_sym__text_token1); + if (lookahead == '[') ADVANCE(110); + END_STATE(); + case 163: + ACCEPT_TOKEN(aux_sym__text_token1); + if (lookahead == '}') ADVANCE(67); + END_STATE(); + case 164: + ACCEPT_TOKEN(aux_sym__text_token1); + if (lookahead == '"' || + lookahead == '\'') ADVANCE(67); + if (lookahead == '*') ADVANCE(46); + if (lookahead == '+') ADVANCE(60); + if (lookahead == '-') ADVANCE(62); + if (lookahead == '=') ADVANCE(58); + if (lookahead == '^') ADVANCE(50); + if (lookahead == '_') ADVANCE(42); + if (lookahead == '~') ADVANCE(54); + END_STATE(); + case 165: ACCEPT_TOKEN(aux_sym__text_token1); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(16); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(18); END_STATE(); - case 163: + case 166: ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); - case 164: + case 167: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(15); + if (lookahead == '.') ADVANCE(17); END_STATE(); - case 165: + case 168: ACCEPT_TOKEN(sym_identifier); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '}') ADVANCE(165); + lookahead != '}') ADVANCE(168); END_STATE(); - case 166: + case 169: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 167: + case 170: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 168: + case 171: ACCEPT_TOKEN(aux_sym_value_token1); - if (lookahead == '\r') ADVANCE(168); + if (lookahead == '\r') ADVANCE(171); if (lookahead != 0 && lookahead != '\n' && - lookahead != '"') ADVANCE(169); + lookahead != '"') ADVANCE(172); END_STATE(); - case 169: + case 172: ACCEPT_TOKEN(aux_sym_value_token1); if (lookahead != 0 && lookahead != '\n' && - lookahead != '"') ADVANCE(169); + lookahead != '"') ADVANCE(172); END_STATE(); - case 170: + case 173: ACCEPT_TOKEN(aux_sym_value_token2); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(173); END_STATE(); default: return false; @@ -3787,634 +3940,634 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 30, .external_lex_state = 2}, - [2] = {.lex_state = 30, .external_lex_state = 3}, - [3] = {.lex_state = 30, .external_lex_state = 2}, - [4] = {.lex_state = 30, .external_lex_state = 2}, - [5] = {.lex_state = 30, .external_lex_state = 2}, - [6] = {.lex_state = 30, .external_lex_state = 2}, - [7] = {.lex_state = 30, .external_lex_state = 2}, - [8] = {.lex_state = 30, .external_lex_state = 2}, - [9] = {.lex_state = 30, .external_lex_state = 2}, - [10] = {.lex_state = 30, .external_lex_state = 2}, - [11] = {.lex_state = 30, .external_lex_state = 2}, - [12] = {.lex_state = 30, .external_lex_state = 2}, - [13] = {.lex_state = 30, .external_lex_state = 4}, - [14] = {.lex_state = 30, .external_lex_state = 5}, - [15] = {.lex_state = 30, .external_lex_state = 2}, - [16] = {.lex_state = 30, .external_lex_state = 2}, - [17] = {.lex_state = 30, .external_lex_state = 2}, - [18] = {.lex_state = 30, .external_lex_state = 2}, - [19] = {.lex_state = 30, .external_lex_state = 2}, - [20] = {.lex_state = 30, .external_lex_state = 2}, - [21] = {.lex_state = 30, .external_lex_state = 6}, - [22] = {.lex_state = 30, .external_lex_state = 2}, - [23] = {.lex_state = 30, .external_lex_state = 2}, - [24] = {.lex_state = 30, .external_lex_state = 2}, - [25] = {.lex_state = 30, .external_lex_state = 2}, - [26] = {.lex_state = 30, .external_lex_state = 2}, - [27] = {.lex_state = 30, .external_lex_state = 2}, - [28] = {.lex_state = 30, .external_lex_state = 2}, - [29] = {.lex_state = 30, .external_lex_state = 2}, - [30] = {.lex_state = 30, .external_lex_state = 2}, - [31] = {.lex_state = 30, .external_lex_state = 2}, - [32] = {.lex_state = 30, .external_lex_state = 2}, - [33] = {.lex_state = 30, .external_lex_state = 2}, - [34] = {.lex_state = 30, .external_lex_state = 2}, - [35] = {.lex_state = 30, .external_lex_state = 2}, - [36] = {.lex_state = 30, .external_lex_state = 7}, - [37] = {.lex_state = 30, .external_lex_state = 2}, - [38] = {.lex_state = 30, .external_lex_state = 2}, - [39] = {.lex_state = 30, .external_lex_state = 2}, - [40] = {.lex_state = 30, .external_lex_state = 2}, - [41] = {.lex_state = 30, .external_lex_state = 2}, - [42] = {.lex_state = 30, .external_lex_state = 2}, - [43] = {.lex_state = 30, .external_lex_state = 2}, - [44] = {.lex_state = 30, .external_lex_state = 2}, - [45] = {.lex_state = 30, .external_lex_state = 2}, - [46] = {.lex_state = 30, .external_lex_state = 2}, - [47] = {.lex_state = 30, .external_lex_state = 2}, - [48] = {.lex_state = 30, .external_lex_state = 2}, - [49] = {.lex_state = 30, .external_lex_state = 2}, - [50] = {.lex_state = 30, .external_lex_state = 2}, - [51] = {.lex_state = 30, .external_lex_state = 2}, - [52] = {.lex_state = 30, .external_lex_state = 2}, - [53] = {.lex_state = 30, .external_lex_state = 2}, - [54] = {.lex_state = 30, .external_lex_state = 2}, - [55] = {.lex_state = 30, .external_lex_state = 2}, - [56] = {.lex_state = 30, .external_lex_state = 2}, - [57] = {.lex_state = 30, .external_lex_state = 2}, - [58] = {.lex_state = 30, .external_lex_state = 2}, - [59] = {.lex_state = 30, .external_lex_state = 2}, - [60] = {.lex_state = 30, .external_lex_state = 2}, - [61] = {.lex_state = 30, .external_lex_state = 2}, - [62] = {.lex_state = 30, .external_lex_state = 2}, - [63] = {.lex_state = 30, .external_lex_state = 2}, - [64] = {.lex_state = 30, .external_lex_state = 8}, - [65] = {.lex_state = 1, .external_lex_state = 2}, - [66] = {.lex_state = 30, .external_lex_state = 2}, - [67] = {.lex_state = 30, .external_lex_state = 2}, - [68] = {.lex_state = 30, .external_lex_state = 6}, - [69] = {.lex_state = 30, .external_lex_state = 2}, - [70] = {.lex_state = 30, .external_lex_state = 8}, - [71] = {.lex_state = 30, .external_lex_state = 2}, - [72] = {.lex_state = 30, .external_lex_state = 3}, - [73] = {.lex_state = 30, .external_lex_state = 2}, - [74] = {.lex_state = 30, .external_lex_state = 2}, - [75] = {.lex_state = 30, .external_lex_state = 2}, - [76] = {.lex_state = 30, .external_lex_state = 2}, - [77] = {.lex_state = 30, .external_lex_state = 2}, - [78] = {.lex_state = 30, .external_lex_state = 2}, - [79] = {.lex_state = 30, .external_lex_state = 2}, - [80] = {.lex_state = 30, .external_lex_state = 2}, - [81] = {.lex_state = 30, .external_lex_state = 2}, - [82] = {.lex_state = 30, .external_lex_state = 2}, - [83] = {.lex_state = 1, .external_lex_state = 2}, - [84] = {.lex_state = 30, .external_lex_state = 2}, - [85] = {.lex_state = 30, .external_lex_state = 2}, - [86] = {.lex_state = 30, .external_lex_state = 2}, - [87] = {.lex_state = 30, .external_lex_state = 2}, - [88] = {.lex_state = 30, .external_lex_state = 2}, - [89] = {.lex_state = 30, .external_lex_state = 2}, - [90] = {.lex_state = 30, .external_lex_state = 2}, - [91] = {.lex_state = 30, .external_lex_state = 2}, - [92] = {.lex_state = 30, .external_lex_state = 2}, - [93] = {.lex_state = 30, .external_lex_state = 2}, - [94] = {.lex_state = 30, .external_lex_state = 2}, - [95] = {.lex_state = 30, .external_lex_state = 2}, - [96] = {.lex_state = 30, .external_lex_state = 2}, - [97] = {.lex_state = 30, .external_lex_state = 2}, - [98] = {.lex_state = 30, .external_lex_state = 2}, - [99] = {.lex_state = 30, .external_lex_state = 2}, - [100] = {.lex_state = 30, .external_lex_state = 2}, - [101] = {.lex_state = 30, .external_lex_state = 2}, - [102] = {.lex_state = 30, .external_lex_state = 2}, - [103] = {.lex_state = 30, .external_lex_state = 7}, - [104] = {.lex_state = 30, .external_lex_state = 2}, - [105] = {.lex_state = 30, .external_lex_state = 5}, - [106] = {.lex_state = 30, .external_lex_state = 2}, - [107] = {.lex_state = 30, .external_lex_state = 2}, - [108] = {.lex_state = 30, .external_lex_state = 4}, - [109] = {.lex_state = 30, .external_lex_state = 2}, - [110] = {.lex_state = 30, .external_lex_state = 9}, - [111] = {.lex_state = 30, .external_lex_state = 2}, - [112] = {.lex_state = 30, .external_lex_state = 9}, - [113] = {.lex_state = 30, .external_lex_state = 2}, - [114] = {.lex_state = 30, .external_lex_state = 2}, - [115] = {.lex_state = 30, .external_lex_state = 2}, - [116] = {.lex_state = 30, .external_lex_state = 3}, - [117] = {.lex_state = 30, .external_lex_state = 2}, - [118] = {.lex_state = 30, .external_lex_state = 2}, - [119] = {.lex_state = 30, .external_lex_state = 2}, - [120] = {.lex_state = 30, .external_lex_state = 2}, - [121] = {.lex_state = 34, .external_lex_state = 3}, - [122] = {.lex_state = 34, .external_lex_state = 9}, - [123] = {.lex_state = 8, .external_lex_state = 2}, - [124] = {.lex_state = 34, .external_lex_state = 10}, - [125] = {.lex_state = 34, .external_lex_state = 8}, - [126] = {.lex_state = 34, .external_lex_state = 11}, - [127] = {.lex_state = 34, .external_lex_state = 6}, - [128] = {.lex_state = 34, .external_lex_state = 4}, - [129] = {.lex_state = 34, .external_lex_state = 7}, - [130] = {.lex_state = 34, .external_lex_state = 2}, - [131] = {.lex_state = 34, .external_lex_state = 5}, - [132] = {.lex_state = 34, .external_lex_state = 2}, - [133] = {.lex_state = 8, .external_lex_state = 2}, - [134] = {.lex_state = 34, .external_lex_state = 6}, - [135] = {.lex_state = 34, .external_lex_state = 9}, - [136] = {.lex_state = 34, .external_lex_state = 8}, - [137] = {.lex_state = 34, .external_lex_state = 3}, - [138] = {.lex_state = 34, .external_lex_state = 10}, - [139] = {.lex_state = 34, .external_lex_state = 7}, - [140] = {.lex_state = 34, .external_lex_state = 5}, - [141] = {.lex_state = 34, .external_lex_state = 4}, - [142] = {.lex_state = 34, .external_lex_state = 11}, - [143] = {.lex_state = 34, .external_lex_state = 2}, - [144] = {.lex_state = 36, .external_lex_state = 4}, - [145] = {.lex_state = 34, .external_lex_state = 2}, - [146] = {.lex_state = 36, .external_lex_state = 8}, - [147] = {.lex_state = 36, .external_lex_state = 2}, - [148] = {.lex_state = 36, .external_lex_state = 6}, - [149] = {.lex_state = 9, .external_lex_state = 2}, - [150] = {.lex_state = 36, .external_lex_state = 5}, - [151] = {.lex_state = 36, .external_lex_state = 10}, - [152] = {.lex_state = 36, .external_lex_state = 11}, - [153] = {.lex_state = 36, .external_lex_state = 9}, - [154] = {.lex_state = 36, .external_lex_state = 7}, - [155] = {.lex_state = 36, .external_lex_state = 3}, - [156] = {.lex_state = 32, .external_lex_state = 3}, - [157] = {.lex_state = 34, .external_lex_state = 12}, - [158] = {.lex_state = 34, .external_lex_state = 6}, - [159] = {.lex_state = 8, .external_lex_state = 2}, - [160] = {.lex_state = 8, .external_lex_state = 2}, - [161] = {.lex_state = 32, .external_lex_state = 6}, - [162] = {.lex_state = 34, .external_lex_state = 13}, - [163] = {.lex_state = 34, .external_lex_state = 10}, - [164] = {.lex_state = 32, .external_lex_state = 9}, - [165] = {.lex_state = 34, .external_lex_state = 13}, - [166] = {.lex_state = 34, .external_lex_state = 14}, - [167] = {.lex_state = 34, .external_lex_state = 7}, - [168] = {.lex_state = 34, .external_lex_state = 14}, - [169] = {.lex_state = 34, .external_lex_state = 6}, - [170] = {.lex_state = 32, .external_lex_state = 7}, - [171] = {.lex_state = 34, .external_lex_state = 15}, - [172] = {.lex_state = 34, .external_lex_state = 15}, - [173] = {.lex_state = 34, .external_lex_state = 4}, - [174] = {.lex_state = 34, .external_lex_state = 16}, - [175] = {.lex_state = 34, .external_lex_state = 16}, - [176] = {.lex_state = 34, .external_lex_state = 7}, - [177] = {.lex_state = 32, .external_lex_state = 4}, - [178] = {.lex_state = 34, .external_lex_state = 17}, - [179] = {.lex_state = 34, .external_lex_state = 18}, - [180] = {.lex_state = 34, .external_lex_state = 18}, - [181] = {.lex_state = 8, .external_lex_state = 19}, - [182] = {.lex_state = 8, .external_lex_state = 19}, - [183] = {.lex_state = 34, .external_lex_state = 9}, - [184] = {.lex_state = 34, .external_lex_state = 12}, - [185] = {.lex_state = 34, .external_lex_state = 3}, - [186] = {.lex_state = 32, .external_lex_state = 11}, - [187] = {.lex_state = 36, .external_lex_state = 2}, - [188] = {.lex_state = 34, .external_lex_state = 8}, - [189] = {.lex_state = 32, .external_lex_state = 8}, - [190] = {.lex_state = 34, .external_lex_state = 5}, - [191] = {.lex_state = 34, .external_lex_state = 19}, - [192] = {.lex_state = 3, .external_lex_state = 2}, - [193] = {.lex_state = 34, .external_lex_state = 4}, - [194] = {.lex_state = 34, .external_lex_state = 20}, - [195] = {.lex_state = 34, .external_lex_state = 21}, - [196] = {.lex_state = 34, .external_lex_state = 21}, - [197] = {.lex_state = 34, .external_lex_state = 3}, - [198] = {.lex_state = 32, .external_lex_state = 5}, - [199] = {.lex_state = 34, .external_lex_state = 5}, - [200] = {.lex_state = 34, .external_lex_state = 2}, - [201] = {.lex_state = 34, .external_lex_state = 9}, - [202] = {.lex_state = 34, .external_lex_state = 8}, - [203] = {.lex_state = 34, .external_lex_state = 19}, - [204] = {.lex_state = 34, .external_lex_state = 11}, - [205] = {.lex_state = 34, .external_lex_state = 2}, - [206] = {.lex_state = 32, .external_lex_state = 10}, - [207] = {.lex_state = 32, .external_lex_state = 2}, - [208] = {.lex_state = 34, .external_lex_state = 20}, - [209] = {.lex_state = 34, .external_lex_state = 17}, - [210] = {.lex_state = 34, .external_lex_state = 4}, - [211] = {.lex_state = 8, .external_lex_state = 2}, - [212] = {.lex_state = 34, .external_lex_state = 2}, - [213] = {.lex_state = 34, .external_lex_state = 11}, - [214] = {.lex_state = 34, .external_lex_state = 11}, - [215] = {.lex_state = 34, .external_lex_state = 11}, - [216] = {.lex_state = 34, .external_lex_state = 11}, - [217] = {.lex_state = 34, .external_lex_state = 11}, - [218] = {.lex_state = 34, .external_lex_state = 11}, - [219] = {.lex_state = 34, .external_lex_state = 11}, - [220] = {.lex_state = 34, .external_lex_state = 2}, - [221] = {.lex_state = 34, .external_lex_state = 11}, - [222] = {.lex_state = 34, .external_lex_state = 2}, - [223] = {.lex_state = 34, .external_lex_state = 11}, - [224] = {.lex_state = 34, .external_lex_state = 11}, - [225] = {.lex_state = 34, .external_lex_state = 11}, - [226] = {.lex_state = 34, .external_lex_state = 2}, - [227] = {.lex_state = 34, .external_lex_state = 11}, - [228] = {.lex_state = 34, .external_lex_state = 11}, - [229] = {.lex_state = 34, .external_lex_state = 11}, - [230] = {.lex_state = 34, .external_lex_state = 11}, - [231] = {.lex_state = 34, .external_lex_state = 11}, - [232] = {.lex_state = 34, .external_lex_state = 11}, - [233] = {.lex_state = 34, .external_lex_state = 11}, - [234] = {.lex_state = 34, .external_lex_state = 11}, - [235] = {.lex_state = 34, .external_lex_state = 11}, - [236] = {.lex_state = 34, .external_lex_state = 11}, - [237] = {.lex_state = 34, .external_lex_state = 11}, - [238] = {.lex_state = 34, .external_lex_state = 2}, - [239] = {.lex_state = 34, .external_lex_state = 11}, - [240] = {.lex_state = 34, .external_lex_state = 5}, - [241] = {.lex_state = 34, .external_lex_state = 5}, - [242] = {.lex_state = 34, .external_lex_state = 5}, - [243] = {.lex_state = 34, .external_lex_state = 5}, - [244] = {.lex_state = 34, .external_lex_state = 5}, - [245] = {.lex_state = 34, .external_lex_state = 2}, - [246] = {.lex_state = 34, .external_lex_state = 5}, - [247] = {.lex_state = 34, .external_lex_state = 5}, - [248] = {.lex_state = 34, .external_lex_state = 5}, - [249] = {.lex_state = 34, .external_lex_state = 5}, - [250] = {.lex_state = 34, .external_lex_state = 5}, - [251] = {.lex_state = 34, .external_lex_state = 5}, - [252] = {.lex_state = 34, .external_lex_state = 5}, - [253] = {.lex_state = 34, .external_lex_state = 2}, - [254] = {.lex_state = 34, .external_lex_state = 5}, - [255] = {.lex_state = 34, .external_lex_state = 2}, - [256] = {.lex_state = 34, .external_lex_state = 5}, - [257] = {.lex_state = 34, .external_lex_state = 5}, - [258] = {.lex_state = 34, .external_lex_state = 5}, - [259] = {.lex_state = 34, .external_lex_state = 2}, - [260] = {.lex_state = 34, .external_lex_state = 5}, - [261] = {.lex_state = 34, .external_lex_state = 5}, - [262] = {.lex_state = 34, .external_lex_state = 5}, - [263] = {.lex_state = 34, .external_lex_state = 5}, - [264] = {.lex_state = 34, .external_lex_state = 5}, - [265] = {.lex_state = 34, .external_lex_state = 5}, - [266] = {.lex_state = 34, .external_lex_state = 5}, - [267] = {.lex_state = 34, .external_lex_state = 5}, - [268] = {.lex_state = 34, .external_lex_state = 5}, - [269] = {.lex_state = 34, .external_lex_state = 5}, - [270] = {.lex_state = 34, .external_lex_state = 5}, - [271] = {.lex_state = 34, .external_lex_state = 2}, - [272] = {.lex_state = 34, .external_lex_state = 5}, - [273] = {.lex_state = 34, .external_lex_state = 8}, - [274] = {.lex_state = 34, .external_lex_state = 8}, - [275] = {.lex_state = 34, .external_lex_state = 8}, - [276] = {.lex_state = 34, .external_lex_state = 2}, - [277] = {.lex_state = 34, .external_lex_state = 11}, - [278] = {.lex_state = 34, .external_lex_state = 11}, - [279] = {.lex_state = 34, .external_lex_state = 8}, - [280] = {.lex_state = 34, .external_lex_state = 8}, - [281] = {.lex_state = 34, .external_lex_state = 2}, - [282] = {.lex_state = 34, .external_lex_state = 8}, - [283] = {.lex_state = 34, .external_lex_state = 8}, - [284] = {.lex_state = 34, .external_lex_state = 8}, - [285] = {.lex_state = 34, .external_lex_state = 8}, - [286] = {.lex_state = 34, .external_lex_state = 8}, - [287] = {.lex_state = 34, .external_lex_state = 8}, - [288] = {.lex_state = 34, .external_lex_state = 8}, - [289] = {.lex_state = 34, .external_lex_state = 2}, - [290] = {.lex_state = 34, .external_lex_state = 11}, - [291] = {.lex_state = 34, .external_lex_state = 11}, - [292] = {.lex_state = 34, .external_lex_state = 2}, - [293] = {.lex_state = 34, .external_lex_state = 8}, - [294] = {.lex_state = 34, .external_lex_state = 2}, - [295] = {.lex_state = 34, .external_lex_state = 8}, - [296] = {.lex_state = 34, .external_lex_state = 8}, - [297] = {.lex_state = 34, .external_lex_state = 8}, - [298] = {.lex_state = 34, .external_lex_state = 2}, - [299] = {.lex_state = 34, .external_lex_state = 8}, - [300] = {.lex_state = 34, .external_lex_state = 8}, - [301] = {.lex_state = 34, .external_lex_state = 8}, - [302] = {.lex_state = 34, .external_lex_state = 8}, - [303] = {.lex_state = 34, .external_lex_state = 8}, - [304] = {.lex_state = 34, .external_lex_state = 8}, - [305] = {.lex_state = 34, .external_lex_state = 8}, - [306] = {.lex_state = 34, .external_lex_state = 8}, - [307] = {.lex_state = 34, .external_lex_state = 8}, - [308] = {.lex_state = 34, .external_lex_state = 8}, - [309] = {.lex_state = 34, .external_lex_state = 8}, - [310] = {.lex_state = 34, .external_lex_state = 2}, - [311] = {.lex_state = 34, .external_lex_state = 8}, - [312] = {.lex_state = 34, .external_lex_state = 10}, - [313] = {.lex_state = 34, .external_lex_state = 2}, - [314] = {.lex_state = 34, .external_lex_state = 2}, - [315] = {.lex_state = 34, .external_lex_state = 10}, - [316] = {.lex_state = 34, .external_lex_state = 4}, - [317] = {.lex_state = 34, .external_lex_state = 4}, - [318] = {.lex_state = 34, .external_lex_state = 4}, - [319] = {.lex_state = 34, .external_lex_state = 10}, - [320] = {.lex_state = 34, .external_lex_state = 10}, - [321] = {.lex_state = 34, .external_lex_state = 10}, - [322] = {.lex_state = 34, .external_lex_state = 4}, - [323] = {.lex_state = 34, .external_lex_state = 4}, - [324] = {.lex_state = 34, .external_lex_state = 2}, - [325] = {.lex_state = 34, .external_lex_state = 4}, - [326] = {.lex_state = 34, .external_lex_state = 4}, - [327] = {.lex_state = 34, .external_lex_state = 4}, - [328] = {.lex_state = 34, .external_lex_state = 4}, - [329] = {.lex_state = 34, .external_lex_state = 4}, - [330] = {.lex_state = 34, .external_lex_state = 4}, - [331] = {.lex_state = 34, .external_lex_state = 4}, - [332] = {.lex_state = 34, .external_lex_state = 2}, - [333] = {.lex_state = 34, .external_lex_state = 10}, - [334] = {.lex_state = 34, .external_lex_state = 10}, - [335] = {.lex_state = 34, .external_lex_state = 10}, - [336] = {.lex_state = 34, .external_lex_state = 4}, - [337] = {.lex_state = 34, .external_lex_state = 2}, - [338] = {.lex_state = 34, .external_lex_state = 4}, - [339] = {.lex_state = 34, .external_lex_state = 4}, - [340] = {.lex_state = 34, .external_lex_state = 4}, - [341] = {.lex_state = 34, .external_lex_state = 2}, - [342] = {.lex_state = 34, .external_lex_state = 4}, - [343] = {.lex_state = 34, .external_lex_state = 4}, - [344] = {.lex_state = 34, .external_lex_state = 4}, - [345] = {.lex_state = 34, .external_lex_state = 4}, - [346] = {.lex_state = 34, .external_lex_state = 4}, - [347] = {.lex_state = 34, .external_lex_state = 4}, - [348] = {.lex_state = 32, .external_lex_state = 2}, - [349] = {.lex_state = 34, .external_lex_state = 4}, - [350] = {.lex_state = 34, .external_lex_state = 4}, - [351] = {.lex_state = 34, .external_lex_state = 4}, - [352] = {.lex_state = 34, .external_lex_state = 4}, - [353] = {.lex_state = 34, .external_lex_state = 2}, - [354] = {.lex_state = 34, .external_lex_state = 4}, - [355] = {.lex_state = 34, .external_lex_state = 10}, - [356] = {.lex_state = 34, .external_lex_state = 19}, - [357] = {.lex_state = 34, .external_lex_state = 10}, - [358] = {.lex_state = 34, .external_lex_state = 10}, - [359] = {.lex_state = 34, .external_lex_state = 7}, - [360] = {.lex_state = 34, .external_lex_state = 7}, - [361] = {.lex_state = 34, .external_lex_state = 7}, - [362] = {.lex_state = 34, .external_lex_state = 10}, - [363] = {.lex_state = 34, .external_lex_state = 19}, - [364] = {.lex_state = 34, .external_lex_state = 10}, - [365] = {.lex_state = 34, .external_lex_state = 7}, - [366] = {.lex_state = 34, .external_lex_state = 7}, - [367] = {.lex_state = 34, .external_lex_state = 9}, - [368] = {.lex_state = 34, .external_lex_state = 7}, - [369] = {.lex_state = 34, .external_lex_state = 7}, - [370] = {.lex_state = 34, .external_lex_state = 7}, - [371] = {.lex_state = 34, .external_lex_state = 7}, - [372] = {.lex_state = 34, .external_lex_state = 7}, - [373] = {.lex_state = 34, .external_lex_state = 7}, - [374] = {.lex_state = 34, .external_lex_state = 7}, - [375] = {.lex_state = 34, .external_lex_state = 9}, - [376] = {.lex_state = 34, .external_lex_state = 9}, - [377] = {.lex_state = 34, .external_lex_state = 10}, - [378] = {.lex_state = 34, .external_lex_state = 10}, - [379] = {.lex_state = 34, .external_lex_state = 7}, - [380] = {.lex_state = 34, .external_lex_state = 9}, - [381] = {.lex_state = 34, .external_lex_state = 7}, - [382] = {.lex_state = 34, .external_lex_state = 7}, - [383] = {.lex_state = 34, .external_lex_state = 7}, - [384] = {.lex_state = 34, .external_lex_state = 9}, - [385] = {.lex_state = 34, .external_lex_state = 7}, - [386] = {.lex_state = 34, .external_lex_state = 7}, - [387] = {.lex_state = 34, .external_lex_state = 7}, - [388] = {.lex_state = 34, .external_lex_state = 7}, - [389] = {.lex_state = 34, .external_lex_state = 7}, - [390] = {.lex_state = 34, .external_lex_state = 7}, - [391] = {.lex_state = 34, .external_lex_state = 7}, - [392] = {.lex_state = 34, .external_lex_state = 7}, - [393] = {.lex_state = 34, .external_lex_state = 7}, - [394] = {.lex_state = 34, .external_lex_state = 7}, - [395] = {.lex_state = 34, .external_lex_state = 7}, - [396] = {.lex_state = 34, .external_lex_state = 9}, - [397] = {.lex_state = 34, .external_lex_state = 7}, - [398] = {.lex_state = 34, .external_lex_state = 10}, - [399] = {.lex_state = 34, .external_lex_state = 10}, - [400] = {.lex_state = 34, .external_lex_state = 9}, - [401] = {.lex_state = 34, .external_lex_state = 10}, - [402] = {.lex_state = 34, .external_lex_state = 6}, - [403] = {.lex_state = 34, .external_lex_state = 6}, - [404] = {.lex_state = 34, .external_lex_state = 6}, - [405] = {.lex_state = 34, .external_lex_state = 10}, - [406] = {.lex_state = 34, .external_lex_state = 10}, - [407] = {.lex_state = 34, .external_lex_state = 10}, - [408] = {.lex_state = 34, .external_lex_state = 6}, - [409] = {.lex_state = 34, .external_lex_state = 6}, - [410] = {.lex_state = 34, .external_lex_state = 9}, - [411] = {.lex_state = 34, .external_lex_state = 6}, - [412] = {.lex_state = 34, .external_lex_state = 6}, - [413] = {.lex_state = 34, .external_lex_state = 6}, - [414] = {.lex_state = 34, .external_lex_state = 6}, - [415] = {.lex_state = 34, .external_lex_state = 6}, - [416] = {.lex_state = 34, .external_lex_state = 6}, - [417] = {.lex_state = 34, .external_lex_state = 6}, - [418] = {.lex_state = 34, .external_lex_state = 9}, - [419] = {.lex_state = 34, .external_lex_state = 10}, - [420] = {.lex_state = 34, .external_lex_state = 10}, - [421] = {.lex_state = 34, .external_lex_state = 10}, - [422] = {.lex_state = 34, .external_lex_state = 6}, - [423] = {.lex_state = 34, .external_lex_state = 9}, - [424] = {.lex_state = 34, .external_lex_state = 6}, - [425] = {.lex_state = 34, .external_lex_state = 6}, - [426] = {.lex_state = 34, .external_lex_state = 6}, - [427] = {.lex_state = 34, .external_lex_state = 9}, - [428] = {.lex_state = 34, .external_lex_state = 6}, - [429] = {.lex_state = 34, .external_lex_state = 6}, - [430] = {.lex_state = 34, .external_lex_state = 6}, - [431] = {.lex_state = 34, .external_lex_state = 6}, - [432] = {.lex_state = 34, .external_lex_state = 6}, - [433] = {.lex_state = 34, .external_lex_state = 6}, - [434] = {.lex_state = 34, .external_lex_state = 6}, - [435] = {.lex_state = 34, .external_lex_state = 6}, - [436] = {.lex_state = 34, .external_lex_state = 6}, - [437] = {.lex_state = 34, .external_lex_state = 6}, - [438] = {.lex_state = 34, .external_lex_state = 6}, - [439] = {.lex_state = 34, .external_lex_state = 9}, - [440] = {.lex_state = 34, .external_lex_state = 6}, - [441] = {.lex_state = 34, .external_lex_state = 9}, - [442] = {.lex_state = 34, .external_lex_state = 10}, - [443] = {.lex_state = 34, .external_lex_state = 9}, - [444] = {.lex_state = 34, .external_lex_state = 2}, - [445] = {.lex_state = 8, .external_lex_state = 2}, - [446] = {.lex_state = 8, .external_lex_state = 2}, - [447] = {.lex_state = 8, .external_lex_state = 2}, - [448] = {.lex_state = 34, .external_lex_state = 10}, - [449] = {.lex_state = 34, .external_lex_state = 10}, - [450] = {.lex_state = 34, .external_lex_state = 10}, - [451] = {.lex_state = 8, .external_lex_state = 2}, - [452] = {.lex_state = 8, .external_lex_state = 2}, - [453] = {.lex_state = 34, .external_lex_state = 9}, - [454] = {.lex_state = 34, .external_lex_state = 11}, + [1] = {.lex_state = 32, .external_lex_state = 2}, + [2] = {.lex_state = 32, .external_lex_state = 3}, + [3] = {.lex_state = 32, .external_lex_state = 4}, + [4] = {.lex_state = 32, .external_lex_state = 2}, + [5] = {.lex_state = 32, .external_lex_state = 2}, + [6] = {.lex_state = 32, .external_lex_state = 2}, + [7] = {.lex_state = 32, .external_lex_state = 2}, + [8] = {.lex_state = 32, .external_lex_state = 2}, + [9] = {.lex_state = 32, .external_lex_state = 2}, + [10] = {.lex_state = 32, .external_lex_state = 2}, + [11] = {.lex_state = 32, .external_lex_state = 2}, + [12] = {.lex_state = 32, .external_lex_state = 2}, + [13] = {.lex_state = 32, .external_lex_state = 2}, + [14] = {.lex_state = 32, .external_lex_state = 5}, + [15] = {.lex_state = 32, .external_lex_state = 2}, + [16] = {.lex_state = 32, .external_lex_state = 2}, + [17] = {.lex_state = 32, .external_lex_state = 2}, + [18] = {.lex_state = 32, .external_lex_state = 2}, + [19] = {.lex_state = 32, .external_lex_state = 2}, + [20] = {.lex_state = 32, .external_lex_state = 2}, + [21] = {.lex_state = 32, .external_lex_state = 6}, + [22] = {.lex_state = 32, .external_lex_state = 2}, + [23] = {.lex_state = 32, .external_lex_state = 2}, + [24] = {.lex_state = 32, .external_lex_state = 2}, + [25] = {.lex_state = 32, .external_lex_state = 2}, + [26] = {.lex_state = 32, .external_lex_state = 2}, + [27] = {.lex_state = 32, .external_lex_state = 2}, + [28] = {.lex_state = 32, .external_lex_state = 2}, + [29] = {.lex_state = 32, .external_lex_state = 2}, + [30] = {.lex_state = 32, .external_lex_state = 2}, + [31] = {.lex_state = 32, .external_lex_state = 2}, + [32] = {.lex_state = 32, .external_lex_state = 2}, + [33] = {.lex_state = 32, .external_lex_state = 2}, + [34] = {.lex_state = 32, .external_lex_state = 2}, + [35] = {.lex_state = 32, .external_lex_state = 2}, + [36] = {.lex_state = 32, .external_lex_state = 2}, + [37] = {.lex_state = 32, .external_lex_state = 4}, + [38] = {.lex_state = 32, .external_lex_state = 2}, + [39] = {.lex_state = 32, .external_lex_state = 2}, + [40] = {.lex_state = 32, .external_lex_state = 2}, + [41] = {.lex_state = 32, .external_lex_state = 2}, + [42] = {.lex_state = 32, .external_lex_state = 2}, + [43] = {.lex_state = 32, .external_lex_state = 2}, + [44] = {.lex_state = 32, .external_lex_state = 2}, + [45] = {.lex_state = 32, .external_lex_state = 2}, + [46] = {.lex_state = 32, .external_lex_state = 2}, + [47] = {.lex_state = 1, .external_lex_state = 2}, + [48] = {.lex_state = 32, .external_lex_state = 2}, + [49] = {.lex_state = 32, .external_lex_state = 2}, + [50] = {.lex_state = 32, .external_lex_state = 2}, + [51] = {.lex_state = 32, .external_lex_state = 2}, + [52] = {.lex_state = 32, .external_lex_state = 2}, + [53] = {.lex_state = 32, .external_lex_state = 2}, + [54] = {.lex_state = 32, .external_lex_state = 2}, + [55] = {.lex_state = 32, .external_lex_state = 2}, + [56] = {.lex_state = 32, .external_lex_state = 2}, + [57] = {.lex_state = 32, .external_lex_state = 2}, + [58] = {.lex_state = 32, .external_lex_state = 2}, + [59] = {.lex_state = 32, .external_lex_state = 2}, + [60] = {.lex_state = 32, .external_lex_state = 2}, + [61] = {.lex_state = 32, .external_lex_state = 2}, + [62] = {.lex_state = 32, .external_lex_state = 2}, + [63] = {.lex_state = 32, .external_lex_state = 2}, + [64] = {.lex_state = 32, .external_lex_state = 7}, + [65] = {.lex_state = 32, .external_lex_state = 5}, + [66] = {.lex_state = 32, .external_lex_state = 2}, + [67] = {.lex_state = 32, .external_lex_state = 2}, + [68] = {.lex_state = 32, .external_lex_state = 2}, + [69] = {.lex_state = 32, .external_lex_state = 2}, + [70] = {.lex_state = 32, .external_lex_state = 3}, + [71] = {.lex_state = 32, .external_lex_state = 2}, + [72] = {.lex_state = 32, .external_lex_state = 7}, + [73] = {.lex_state = 32, .external_lex_state = 2}, + [74] = {.lex_state = 1, .external_lex_state = 2}, + [75] = {.lex_state = 32, .external_lex_state = 2}, + [76] = {.lex_state = 32, .external_lex_state = 2}, + [77] = {.lex_state = 32, .external_lex_state = 2}, + [78] = {.lex_state = 32, .external_lex_state = 2}, + [79] = {.lex_state = 32, .external_lex_state = 2}, + [80] = {.lex_state = 32, .external_lex_state = 2}, + [81] = {.lex_state = 32, .external_lex_state = 2}, + [82] = {.lex_state = 32, .external_lex_state = 6}, + [83] = {.lex_state = 32, .external_lex_state = 2}, + [84] = {.lex_state = 32, .external_lex_state = 2}, + [85] = {.lex_state = 32, .external_lex_state = 2}, + [86] = {.lex_state = 32, .external_lex_state = 2}, + [87] = {.lex_state = 32, .external_lex_state = 2}, + [88] = {.lex_state = 32, .external_lex_state = 2}, + [89] = {.lex_state = 32, .external_lex_state = 2}, + [90] = {.lex_state = 32, .external_lex_state = 2}, + [91] = {.lex_state = 32, .external_lex_state = 2}, + [92] = {.lex_state = 32, .external_lex_state = 2}, + [93] = {.lex_state = 32, .external_lex_state = 2}, + [94] = {.lex_state = 32, .external_lex_state = 2}, + [95] = {.lex_state = 32, .external_lex_state = 2}, + [96] = {.lex_state = 32, .external_lex_state = 2}, + [97] = {.lex_state = 32, .external_lex_state = 2}, + [98] = {.lex_state = 32, .external_lex_state = 2}, + [99] = {.lex_state = 32, .external_lex_state = 2}, + [100] = {.lex_state = 32, .external_lex_state = 2}, + [101] = {.lex_state = 32, .external_lex_state = 2}, + [102] = {.lex_state = 32, .external_lex_state = 2}, + [103] = {.lex_state = 32, .external_lex_state = 2}, + [104] = {.lex_state = 32, .external_lex_state = 2}, + [105] = {.lex_state = 32, .external_lex_state = 2}, + [106] = {.lex_state = 32, .external_lex_state = 2}, + [107] = {.lex_state = 32, .external_lex_state = 8}, + [108] = {.lex_state = 32, .external_lex_state = 2}, + [109] = {.lex_state = 32, .external_lex_state = 8}, + [110] = {.lex_state = 32, .external_lex_state = 9}, + [111] = {.lex_state = 32, .external_lex_state = 2}, + [112] = {.lex_state = 32, .external_lex_state = 3}, + [113] = {.lex_state = 32, .external_lex_state = 2}, + [114] = {.lex_state = 32, .external_lex_state = 2}, + [115] = {.lex_state = 32, .external_lex_state = 9}, + [116] = {.lex_state = 32, .external_lex_state = 2}, + [117] = {.lex_state = 32, .external_lex_state = 2}, + [118] = {.lex_state = 32, .external_lex_state = 2}, + [119] = {.lex_state = 32, .external_lex_state = 2}, + [120] = {.lex_state = 32, .external_lex_state = 2}, + [121] = {.lex_state = 36, .external_lex_state = 3}, + [122] = {.lex_state = 36, .external_lex_state = 10}, + [123] = {.lex_state = 36, .external_lex_state = 9}, + [124] = {.lex_state = 36, .external_lex_state = 7}, + [125] = {.lex_state = 36, .external_lex_state = 8}, + [126] = {.lex_state = 36, .external_lex_state = 6}, + [127] = {.lex_state = 8, .external_lex_state = 2}, + [128] = {.lex_state = 36, .external_lex_state = 11}, + [129] = {.lex_state = 36, .external_lex_state = 5}, + [130] = {.lex_state = 36, .external_lex_state = 2}, + [131] = {.lex_state = 36, .external_lex_state = 4}, + [132] = {.lex_state = 36, .external_lex_state = 2}, + [133] = {.lex_state = 36, .external_lex_state = 5}, + [134] = {.lex_state = 36, .external_lex_state = 9}, + [135] = {.lex_state = 36, .external_lex_state = 7}, + [136] = {.lex_state = 8, .external_lex_state = 2}, + [137] = {.lex_state = 36, .external_lex_state = 4}, + [138] = {.lex_state = 36, .external_lex_state = 10}, + [139] = {.lex_state = 36, .external_lex_state = 3}, + [140] = {.lex_state = 36, .external_lex_state = 8}, + [141] = {.lex_state = 36, .external_lex_state = 11}, + [142] = {.lex_state = 36, .external_lex_state = 2}, + [143] = {.lex_state = 36, .external_lex_state = 6}, + [144] = {.lex_state = 36, .external_lex_state = 2}, + [145] = {.lex_state = 38, .external_lex_state = 11}, + [146] = {.lex_state = 38, .external_lex_state = 6}, + [147] = {.lex_state = 38, .external_lex_state = 10}, + [148] = {.lex_state = 38, .external_lex_state = 2}, + [149] = {.lex_state = 38, .external_lex_state = 7}, + [150] = {.lex_state = 38, .external_lex_state = 3}, + [151] = {.lex_state = 9, .external_lex_state = 2}, + [152] = {.lex_state = 38, .external_lex_state = 8}, + [153] = {.lex_state = 38, .external_lex_state = 5}, + [154] = {.lex_state = 38, .external_lex_state = 9}, + [155] = {.lex_state = 38, .external_lex_state = 4}, + [156] = {.lex_state = 36, .external_lex_state = 3}, + [157] = {.lex_state = 34, .external_lex_state = 10}, + [158] = {.lex_state = 39, .external_lex_state = 11}, + [159] = {.lex_state = 8, .external_lex_state = 12}, + [160] = {.lex_state = 36, .external_lex_state = 13}, + [161] = {.lex_state = 36, .external_lex_state = 5}, + [162] = {.lex_state = 39, .external_lex_state = 5}, + [163] = {.lex_state = 36, .external_lex_state = 14}, + [164] = {.lex_state = 36, .external_lex_state = 13}, + [165] = {.lex_state = 8, .external_lex_state = 2}, + [166] = {.lex_state = 36, .external_lex_state = 11}, + [167] = {.lex_state = 36, .external_lex_state = 14}, + [168] = {.lex_state = 34, .external_lex_state = 5}, + [169] = {.lex_state = 36, .external_lex_state = 15}, + [170] = {.lex_state = 36, .external_lex_state = 15}, + [171] = {.lex_state = 36, .external_lex_state = 4}, + [172] = {.lex_state = 39, .external_lex_state = 4}, + [173] = {.lex_state = 39, .external_lex_state = 9}, + [174] = {.lex_state = 36, .external_lex_state = 5}, + [175] = {.lex_state = 34, .external_lex_state = 4}, + [176] = {.lex_state = 8, .external_lex_state = 2}, + [177] = {.lex_state = 36, .external_lex_state = 16}, + [178] = {.lex_state = 36, .external_lex_state = 16}, + [179] = {.lex_state = 36, .external_lex_state = 17}, + [180] = {.lex_state = 36, .external_lex_state = 8}, + [181] = {.lex_state = 39, .external_lex_state = 8}, + [182] = {.lex_state = 36, .external_lex_state = 17}, + [183] = {.lex_state = 36, .external_lex_state = 3}, + [184] = {.lex_state = 36, .external_lex_state = 4}, + [185] = {.lex_state = 34, .external_lex_state = 8}, + [186] = {.lex_state = 36, .external_lex_state = 18}, + [187] = {.lex_state = 36, .external_lex_state = 18}, + [188] = {.lex_state = 34, .external_lex_state = 11}, + [189] = {.lex_state = 8, .external_lex_state = 12}, + [190] = {.lex_state = 3, .external_lex_state = 2}, + [191] = {.lex_state = 36, .external_lex_state = 19}, + [192] = {.lex_state = 36, .external_lex_state = 19}, + [193] = {.lex_state = 36, .external_lex_state = 6}, + [194] = {.lex_state = 39, .external_lex_state = 3}, + [195] = {.lex_state = 34, .external_lex_state = 9}, + [196] = {.lex_state = 36, .external_lex_state = 9}, + [197] = {.lex_state = 36, .external_lex_state = 12}, + [198] = {.lex_state = 36, .external_lex_state = 7}, + [199] = {.lex_state = 39, .external_lex_state = 10}, + [200] = {.lex_state = 39, .external_lex_state = 7}, + [201] = {.lex_state = 38, .external_lex_state = 2}, + [202] = {.lex_state = 36, .external_lex_state = 9}, + [203] = {.lex_state = 36, .external_lex_state = 8}, + [204] = {.lex_state = 34, .external_lex_state = 7}, + [205] = {.lex_state = 36, .external_lex_state = 2}, + [206] = {.lex_state = 36, .external_lex_state = 20}, + [207] = {.lex_state = 36, .external_lex_state = 20}, + [208] = {.lex_state = 36, .external_lex_state = 10}, + [209] = {.lex_state = 39, .external_lex_state = 2}, + [210] = {.lex_state = 11, .external_lex_state = 2}, + [211] = {.lex_state = 34, .external_lex_state = 6}, + [212] = {.lex_state = 34, .external_lex_state = 3}, + [213] = {.lex_state = 36, .external_lex_state = 6}, + [214] = {.lex_state = 39, .external_lex_state = 6}, + [215] = {.lex_state = 36, .external_lex_state = 7}, + [216] = {.lex_state = 36, .external_lex_state = 2}, + [217] = {.lex_state = 34, .external_lex_state = 2}, + [218] = {.lex_state = 36, .external_lex_state = 12}, + [219] = {.lex_state = 36, .external_lex_state = 21}, + [220] = {.lex_state = 36, .external_lex_state = 21}, + [221] = {.lex_state = 36, .external_lex_state = 8}, + [222] = {.lex_state = 8, .external_lex_state = 2}, + [223] = {.lex_state = 36, .external_lex_state = 2}, + [224] = {.lex_state = 36, .external_lex_state = 10}, + [225] = {.lex_state = 36, .external_lex_state = 10}, + [226] = {.lex_state = 36, .external_lex_state = 2}, + [227] = {.lex_state = 36, .external_lex_state = 10}, + [228] = {.lex_state = 36, .external_lex_state = 10}, + [229] = {.lex_state = 36, .external_lex_state = 10}, + [230] = {.lex_state = 36, .external_lex_state = 10}, + [231] = {.lex_state = 36, .external_lex_state = 10}, + [232] = {.lex_state = 36, .external_lex_state = 10}, + [233] = {.lex_state = 36, .external_lex_state = 10}, + [234] = {.lex_state = 36, .external_lex_state = 10}, + [235] = {.lex_state = 36, .external_lex_state = 10}, + [236] = {.lex_state = 36, .external_lex_state = 10}, + [237] = {.lex_state = 36, .external_lex_state = 10}, + [238] = {.lex_state = 36, .external_lex_state = 10}, + [239] = {.lex_state = 36, .external_lex_state = 2}, + [240] = {.lex_state = 36, .external_lex_state = 10}, + [241] = {.lex_state = 36, .external_lex_state = 6}, + [242] = {.lex_state = 36, .external_lex_state = 6}, + [243] = {.lex_state = 36, .external_lex_state = 6}, + [244] = {.lex_state = 36, .external_lex_state = 6}, + [245] = {.lex_state = 36, .external_lex_state = 6}, + [246] = {.lex_state = 36, .external_lex_state = 2}, + [247] = {.lex_state = 36, .external_lex_state = 6}, + [248] = {.lex_state = 36, .external_lex_state = 6}, + [249] = {.lex_state = 36, .external_lex_state = 6}, + [250] = {.lex_state = 36, .external_lex_state = 6}, + [251] = {.lex_state = 36, .external_lex_state = 6}, + [252] = {.lex_state = 36, .external_lex_state = 6}, + [253] = {.lex_state = 36, .external_lex_state = 6}, + [254] = {.lex_state = 36, .external_lex_state = 2}, + [255] = {.lex_state = 36, .external_lex_state = 6}, + [256] = {.lex_state = 36, .external_lex_state = 2}, + [257] = {.lex_state = 36, .external_lex_state = 6}, + [258] = {.lex_state = 36, .external_lex_state = 6}, + [259] = {.lex_state = 36, .external_lex_state = 2}, + [260] = {.lex_state = 36, .external_lex_state = 6}, + [261] = {.lex_state = 36, .external_lex_state = 6}, + [262] = {.lex_state = 36, .external_lex_state = 6}, + [263] = {.lex_state = 36, .external_lex_state = 6}, + [264] = {.lex_state = 36, .external_lex_state = 6}, + [265] = {.lex_state = 36, .external_lex_state = 6}, + [266] = {.lex_state = 36, .external_lex_state = 6}, + [267] = {.lex_state = 36, .external_lex_state = 6}, + [268] = {.lex_state = 36, .external_lex_state = 6}, + [269] = {.lex_state = 36, .external_lex_state = 6}, + [270] = {.lex_state = 36, .external_lex_state = 6}, + [271] = {.lex_state = 36, .external_lex_state = 6}, + [272] = {.lex_state = 36, .external_lex_state = 2}, + [273] = {.lex_state = 36, .external_lex_state = 6}, + [274] = {.lex_state = 36, .external_lex_state = 2}, + [275] = {.lex_state = 36, .external_lex_state = 11}, + [276] = {.lex_state = 36, .external_lex_state = 10}, + [277] = {.lex_state = 36, .external_lex_state = 10}, + [278] = {.lex_state = 36, .external_lex_state = 7}, + [279] = {.lex_state = 36, .external_lex_state = 7}, + [280] = {.lex_state = 36, .external_lex_state = 7}, + [281] = {.lex_state = 36, .external_lex_state = 10}, + [282] = {.lex_state = 36, .external_lex_state = 10}, + [283] = {.lex_state = 36, .external_lex_state = 10}, + [284] = {.lex_state = 36, .external_lex_state = 7}, + [285] = {.lex_state = 36, .external_lex_state = 7}, + [286] = {.lex_state = 36, .external_lex_state = 2}, + [287] = {.lex_state = 36, .external_lex_state = 10}, + [288] = {.lex_state = 36, .external_lex_state = 7}, + [289] = {.lex_state = 36, .external_lex_state = 7}, + [290] = {.lex_state = 36, .external_lex_state = 7}, + [291] = {.lex_state = 36, .external_lex_state = 7}, + [292] = {.lex_state = 36, .external_lex_state = 7}, + [293] = {.lex_state = 36, .external_lex_state = 7}, + [294] = {.lex_state = 36, .external_lex_state = 7}, + [295] = {.lex_state = 36, .external_lex_state = 2}, + [296] = {.lex_state = 36, .external_lex_state = 10}, + [297] = {.lex_state = 36, .external_lex_state = 2}, + [298] = {.lex_state = 36, .external_lex_state = 10}, + [299] = {.lex_state = 36, .external_lex_state = 7}, + [300] = {.lex_state = 36, .external_lex_state = 2}, + [301] = {.lex_state = 36, .external_lex_state = 7}, + [302] = {.lex_state = 36, .external_lex_state = 7}, + [303] = {.lex_state = 36, .external_lex_state = 2}, + [304] = {.lex_state = 36, .external_lex_state = 7}, + [305] = {.lex_state = 36, .external_lex_state = 7}, + [306] = {.lex_state = 36, .external_lex_state = 7}, + [307] = {.lex_state = 36, .external_lex_state = 7}, + [308] = {.lex_state = 36, .external_lex_state = 7}, + [309] = {.lex_state = 36, .external_lex_state = 7}, + [310] = {.lex_state = 36, .external_lex_state = 7}, + [311] = {.lex_state = 36, .external_lex_state = 7}, + [312] = {.lex_state = 36, .external_lex_state = 7}, + [313] = {.lex_state = 36, .external_lex_state = 7}, + [314] = {.lex_state = 36, .external_lex_state = 7}, + [315] = {.lex_state = 36, .external_lex_state = 7}, + [316] = {.lex_state = 36, .external_lex_state = 2}, + [317] = {.lex_state = 36, .external_lex_state = 7}, + [318] = {.lex_state = 36, .external_lex_state = 10}, + [319] = {.lex_state = 36, .external_lex_state = 10}, + [320] = {.lex_state = 36, .external_lex_state = 10}, + [321] = {.lex_state = 36, .external_lex_state = 10}, + [322] = {.lex_state = 36, .external_lex_state = 8}, + [323] = {.lex_state = 36, .external_lex_state = 8}, + [324] = {.lex_state = 36, .external_lex_state = 8}, + [325] = {.lex_state = 36, .external_lex_state = 2}, + [326] = {.lex_state = 36, .external_lex_state = 11}, + [327] = {.lex_state = 36, .external_lex_state = 2}, + [328] = {.lex_state = 36, .external_lex_state = 8}, + [329] = {.lex_state = 36, .external_lex_state = 8}, + [330] = {.lex_state = 36, .external_lex_state = 2}, + [331] = {.lex_state = 36, .external_lex_state = 2}, + [332] = {.lex_state = 36, .external_lex_state = 8}, + [333] = {.lex_state = 36, .external_lex_state = 8}, + [334] = {.lex_state = 36, .external_lex_state = 8}, + [335] = {.lex_state = 36, .external_lex_state = 8}, + [336] = {.lex_state = 36, .external_lex_state = 8}, + [337] = {.lex_state = 36, .external_lex_state = 8}, + [338] = {.lex_state = 36, .external_lex_state = 8}, + [339] = {.lex_state = 36, .external_lex_state = 2}, + [340] = {.lex_state = 36, .external_lex_state = 11}, + [341] = {.lex_state = 36, .external_lex_state = 11}, + [342] = {.lex_state = 36, .external_lex_state = 11}, + [343] = {.lex_state = 36, .external_lex_state = 8}, + [344] = {.lex_state = 36, .external_lex_state = 2}, + [345] = {.lex_state = 36, .external_lex_state = 8}, + [346] = {.lex_state = 36, .external_lex_state = 8}, + [347] = {.lex_state = 39, .external_lex_state = 2}, + [348] = {.lex_state = 36, .external_lex_state = 8}, + [349] = {.lex_state = 36, .external_lex_state = 8}, + [350] = {.lex_state = 36, .external_lex_state = 8}, + [351] = {.lex_state = 36, .external_lex_state = 8}, + [352] = {.lex_state = 36, .external_lex_state = 8}, + [353] = {.lex_state = 36, .external_lex_state = 8}, + [354] = {.lex_state = 36, .external_lex_state = 2}, + [355] = {.lex_state = 36, .external_lex_state = 8}, + [356] = {.lex_state = 36, .external_lex_state = 8}, + [357] = {.lex_state = 36, .external_lex_state = 8}, + [358] = {.lex_state = 36, .external_lex_state = 8}, + [359] = {.lex_state = 36, .external_lex_state = 8}, + [360] = {.lex_state = 34, .external_lex_state = 2}, + [361] = {.lex_state = 36, .external_lex_state = 8}, + [362] = {.lex_state = 36, .external_lex_state = 11}, + [363] = {.lex_state = 36, .external_lex_state = 11}, + [364] = {.lex_state = 36, .external_lex_state = 11}, + [365] = {.lex_state = 36, .external_lex_state = 11}, + [366] = {.lex_state = 36, .external_lex_state = 4}, + [367] = {.lex_state = 36, .external_lex_state = 4}, + [368] = {.lex_state = 36, .external_lex_state = 4}, + [369] = {.lex_state = 36, .external_lex_state = 11}, + [370] = {.lex_state = 36, .external_lex_state = 11}, + [371] = {.lex_state = 36, .external_lex_state = 2}, + [372] = {.lex_state = 36, .external_lex_state = 4}, + [373] = {.lex_state = 36, .external_lex_state = 4}, + [374] = {.lex_state = 36, .external_lex_state = 12}, + [375] = {.lex_state = 36, .external_lex_state = 11}, + [376] = {.lex_state = 36, .external_lex_state = 4}, + [377] = {.lex_state = 36, .external_lex_state = 4}, + [378] = {.lex_state = 36, .external_lex_state = 4}, + [379] = {.lex_state = 36, .external_lex_state = 4}, + [380] = {.lex_state = 36, .external_lex_state = 4}, + [381] = {.lex_state = 36, .external_lex_state = 4}, + [382] = {.lex_state = 36, .external_lex_state = 4}, + [383] = {.lex_state = 36, .external_lex_state = 12}, + [384] = {.lex_state = 36, .external_lex_state = 11}, + [385] = {.lex_state = 36, .external_lex_state = 11}, + [386] = {.lex_state = 36, .external_lex_state = 9}, + [387] = {.lex_state = 36, .external_lex_state = 4}, + [388] = {.lex_state = 36, .external_lex_state = 9}, + [389] = {.lex_state = 36, .external_lex_state = 4}, + [390] = {.lex_state = 36, .external_lex_state = 4}, + [391] = {.lex_state = 36, .external_lex_state = 9}, + [392] = {.lex_state = 36, .external_lex_state = 4}, + [393] = {.lex_state = 36, .external_lex_state = 4}, + [394] = {.lex_state = 36, .external_lex_state = 4}, + [395] = {.lex_state = 36, .external_lex_state = 4}, + [396] = {.lex_state = 36, .external_lex_state = 4}, + [397] = {.lex_state = 36, .external_lex_state = 4}, + [398] = {.lex_state = 36, .external_lex_state = 4}, + [399] = {.lex_state = 36, .external_lex_state = 4}, + [400] = {.lex_state = 36, .external_lex_state = 4}, + [401] = {.lex_state = 36, .external_lex_state = 4}, + [402] = {.lex_state = 36, .external_lex_state = 4}, + [403] = {.lex_state = 36, .external_lex_state = 4}, + [404] = {.lex_state = 36, .external_lex_state = 9}, + [405] = {.lex_state = 36, .external_lex_state = 4}, + [406] = {.lex_state = 36, .external_lex_state = 11}, + [407] = {.lex_state = 36, .external_lex_state = 9}, + [408] = {.lex_state = 36, .external_lex_state = 11}, + [409] = {.lex_state = 36, .external_lex_state = 9}, + [410] = {.lex_state = 36, .external_lex_state = 5}, + [411] = {.lex_state = 36, .external_lex_state = 5}, + [412] = {.lex_state = 36, .external_lex_state = 5}, + [413] = {.lex_state = 36, .external_lex_state = 11}, + [414] = {.lex_state = 36, .external_lex_state = 9}, + [415] = {.lex_state = 36, .external_lex_state = 11}, + [416] = {.lex_state = 36, .external_lex_state = 5}, + [417] = {.lex_state = 36, .external_lex_state = 5}, + [418] = {.lex_state = 36, .external_lex_state = 9}, + [419] = {.lex_state = 36, .external_lex_state = 11}, + [420] = {.lex_state = 36, .external_lex_state = 5}, + [421] = {.lex_state = 36, .external_lex_state = 5}, + [422] = {.lex_state = 36, .external_lex_state = 5}, + [423] = {.lex_state = 36, .external_lex_state = 5}, + [424] = {.lex_state = 36, .external_lex_state = 5}, + [425] = {.lex_state = 36, .external_lex_state = 5}, + [426] = {.lex_state = 36, .external_lex_state = 5}, + [427] = {.lex_state = 36, .external_lex_state = 9}, + [428] = {.lex_state = 36, .external_lex_state = 11}, + [429] = {.lex_state = 36, .external_lex_state = 11}, + [430] = {.lex_state = 36, .external_lex_state = 11}, + [431] = {.lex_state = 36, .external_lex_state = 5}, + [432] = {.lex_state = 36, .external_lex_state = 9}, + [433] = {.lex_state = 36, .external_lex_state = 5}, + [434] = {.lex_state = 36, .external_lex_state = 5}, + [435] = {.lex_state = 36, .external_lex_state = 9}, + [436] = {.lex_state = 36, .external_lex_state = 5}, + [437] = {.lex_state = 36, .external_lex_state = 5}, + [438] = {.lex_state = 36, .external_lex_state = 5}, + [439] = {.lex_state = 36, .external_lex_state = 5}, + [440] = {.lex_state = 36, .external_lex_state = 5}, + [441] = {.lex_state = 36, .external_lex_state = 5}, + [442] = {.lex_state = 36, .external_lex_state = 5}, + [443] = {.lex_state = 36, .external_lex_state = 5}, + [444] = {.lex_state = 36, .external_lex_state = 5}, + [445] = {.lex_state = 36, .external_lex_state = 5}, + [446] = {.lex_state = 36, .external_lex_state = 5}, + [447] = {.lex_state = 36, .external_lex_state = 5}, + [448] = {.lex_state = 36, .external_lex_state = 9}, + [449] = {.lex_state = 36, .external_lex_state = 5}, + [450] = {.lex_state = 36, .external_lex_state = 11}, + [451] = {.lex_state = 36, .external_lex_state = 11}, + [452] = {.lex_state = 36, .external_lex_state = 9}, + [453] = {.lex_state = 36, .external_lex_state = 11}, + [454] = {.lex_state = 8, .external_lex_state = 2}, [455] = {.lex_state = 8, .external_lex_state = 2}, [456] = {.lex_state = 8, .external_lex_state = 2}, - [457] = {.lex_state = 8, .external_lex_state = 2}, - [458] = {.lex_state = 8, .external_lex_state = 2}, - [459] = {.lex_state = 8, .external_lex_state = 2}, + [457] = {.lex_state = 36, .external_lex_state = 9}, + [458] = {.lex_state = 36, .external_lex_state = 2}, + [459] = {.lex_state = 36, .external_lex_state = 11}, [460] = {.lex_state = 8, .external_lex_state = 2}, - [461] = {.lex_state = 34, .external_lex_state = 9}, - [462] = {.lex_state = 34, .external_lex_state = 2}, - [463] = {.lex_state = 34, .external_lex_state = 2}, - [464] = {.lex_state = 34, .external_lex_state = 9}, + [461] = {.lex_state = 8, .external_lex_state = 2}, + [462] = {.lex_state = 36, .external_lex_state = 9}, + [463] = {.lex_state = 36, .external_lex_state = 11}, + [464] = {.lex_state = 36, .external_lex_state = 10}, [465] = {.lex_state = 8, .external_lex_state = 2}, - [466] = {.lex_state = 34, .external_lex_state = 9}, + [466] = {.lex_state = 8, .external_lex_state = 2}, [467] = {.lex_state = 8, .external_lex_state = 2}, [468] = {.lex_state = 8, .external_lex_state = 2}, [469] = {.lex_state = 8, .external_lex_state = 2}, - [470] = {.lex_state = 34, .external_lex_state = 9}, - [471] = {.lex_state = 8, .external_lex_state = 2}, - [472] = {.lex_state = 8, .external_lex_state = 2}, - [473] = {.lex_state = 8, .external_lex_state = 2}, - [474] = {.lex_state = 8, .external_lex_state = 2}, + [470] = {.lex_state = 8, .external_lex_state = 2}, + [471] = {.lex_state = 36, .external_lex_state = 9}, + [472] = {.lex_state = 36, .external_lex_state = 11}, + [473] = {.lex_state = 36, .external_lex_state = 2}, + [474] = {.lex_state = 36, .external_lex_state = 2}, [475] = {.lex_state = 8, .external_lex_state = 2}, - [476] = {.lex_state = 8, .external_lex_state = 2}, + [476] = {.lex_state = 36, .external_lex_state = 9}, [477] = {.lex_state = 8, .external_lex_state = 2}, [478] = {.lex_state = 8, .external_lex_state = 2}, - [479] = {.lex_state = 8, .external_lex_state = 2}, + [479] = {.lex_state = 36, .external_lex_state = 9}, [480] = {.lex_state = 8, .external_lex_state = 2}, [481] = {.lex_state = 8, .external_lex_state = 2}, - [482] = {.lex_state = 34, .external_lex_state = 9}, + [482] = {.lex_state = 8, .external_lex_state = 2}, [483] = {.lex_state = 8, .external_lex_state = 2}, - [484] = {.lex_state = 34, .external_lex_state = 9}, - [485] = {.lex_state = 34, .external_lex_state = 2}, - [486] = {.lex_state = 34, .external_lex_state = 9}, - [487] = {.lex_state = 34, .external_lex_state = 9}, - [488] = {.lex_state = 34, .external_lex_state = 3}, - [489] = {.lex_state = 34, .external_lex_state = 3}, - [490] = {.lex_state = 34, .external_lex_state = 3}, - [491] = {.lex_state = 34, .external_lex_state = 9}, - [492] = {.lex_state = 34, .external_lex_state = 9}, - [493] = {.lex_state = 34, .external_lex_state = 3}, - [494] = {.lex_state = 34, .external_lex_state = 3}, - [495] = {.lex_state = 34, .external_lex_state = 2}, - [496] = {.lex_state = 34, .external_lex_state = 3}, - [497] = {.lex_state = 34, .external_lex_state = 3}, - [498] = {.lex_state = 34, .external_lex_state = 3}, - [499] = {.lex_state = 34, .external_lex_state = 3}, - [500] = {.lex_state = 34, .external_lex_state = 3}, - [501] = {.lex_state = 34, .external_lex_state = 3}, - [502] = {.lex_state = 34, .external_lex_state = 3}, - [503] = {.lex_state = 34, .external_lex_state = 9}, - [504] = {.lex_state = 34, .external_lex_state = 9}, - [505] = {.lex_state = 34, .external_lex_state = 9}, - [506] = {.lex_state = 34, .external_lex_state = 2}, - [507] = {.lex_state = 34, .external_lex_state = 3}, - [508] = {.lex_state = 34, .external_lex_state = 2}, - [509] = {.lex_state = 34, .external_lex_state = 3}, - [510] = {.lex_state = 34, .external_lex_state = 3}, - [511] = {.lex_state = 34, .external_lex_state = 3}, - [512] = {.lex_state = 34, .external_lex_state = 2}, - [513] = {.lex_state = 34, .external_lex_state = 3}, - [514] = {.lex_state = 34, .external_lex_state = 3}, - [515] = {.lex_state = 34, .external_lex_state = 3}, - [516] = {.lex_state = 34, .external_lex_state = 3}, - [517] = {.lex_state = 34, .external_lex_state = 3}, - [518] = {.lex_state = 34, .external_lex_state = 3}, - [519] = {.lex_state = 34, .external_lex_state = 3}, - [520] = {.lex_state = 34, .external_lex_state = 3}, - [521] = {.lex_state = 34, .external_lex_state = 3}, - [522] = {.lex_state = 34, .external_lex_state = 3}, - [523] = {.lex_state = 34, .external_lex_state = 3}, - [524] = {.lex_state = 34, .external_lex_state = 3}, - [525] = {.lex_state = 34, .external_lex_state = 2}, - [526] = {.lex_state = 30, .external_lex_state = 3}, - [527] = {.lex_state = 30, .external_lex_state = 11}, - [528] = {.lex_state = 30, .external_lex_state = 3}, - [529] = {.lex_state = 30, .external_lex_state = 11}, - [530] = {.lex_state = 30, .external_lex_state = 11}, - [531] = {.lex_state = 30, .external_lex_state = 11}, - [532] = {.lex_state = 30, .external_lex_state = 3}, - [533] = {.lex_state = 30, .external_lex_state = 3}, - [534] = {.lex_state = 30, .external_lex_state = 2}, - [535] = {.lex_state = 30, .external_lex_state = 5}, - [536] = {.lex_state = 30, .external_lex_state = 9}, - [537] = {.lex_state = 30, .external_lex_state = 2}, - [538] = {.lex_state = 30, .external_lex_state = 5}, - [539] = {.lex_state = 30, .external_lex_state = 5}, - [540] = {.lex_state = 1, .external_lex_state = 2}, - [541] = {.lex_state = 1, .external_lex_state = 2}, - [542] = {.lex_state = 1, .external_lex_state = 2}, - [543] = {.lex_state = 30, .external_lex_state = 5}, - [544] = {.lex_state = 30, .external_lex_state = 9}, - [545] = {.lex_state = 30, .external_lex_state = 11}, - [546] = {.lex_state = 30, .external_lex_state = 5}, - [547] = {.lex_state = 1, .external_lex_state = 2}, - [548] = {.lex_state = 30, .external_lex_state = 9}, - [549] = {.lex_state = 1, .external_lex_state = 2}, - [550] = {.lex_state = 30, .external_lex_state = 10}, - [551] = {.lex_state = 30, .external_lex_state = 10}, - [552] = {.lex_state = 30, .external_lex_state = 9}, - [553] = {.lex_state = 30, .external_lex_state = 6}, - [554] = {.lex_state = 30, .external_lex_state = 6}, - [555] = {.lex_state = 30, .external_lex_state = 6}, - [556] = {.lex_state = 30, .external_lex_state = 6}, - [557] = {.lex_state = 30, .external_lex_state = 6}, - [558] = {.lex_state = 30, .external_lex_state = 10}, - [559] = {.lex_state = 30, .external_lex_state = 7}, - [560] = {.lex_state = 30, .external_lex_state = 7}, - [561] = {.lex_state = 30, .external_lex_state = 7}, - [562] = {.lex_state = 30, .external_lex_state = 11}, - [563] = {.lex_state = 30, .external_lex_state = 7}, - [564] = {.lex_state = 30, .external_lex_state = 9}, - [565] = {.lex_state = 30, .external_lex_state = 7}, - [566] = {.lex_state = 30, .external_lex_state = 10}, - [567] = {.lex_state = 30, .external_lex_state = 11}, - [568] = {.lex_state = 30, .external_lex_state = 4}, - [569] = {.lex_state = 30, .external_lex_state = 8}, - [570] = {.lex_state = 34, .external_lex_state = 2}, - [571] = {.lex_state = 34, .external_lex_state = 2}, - [572] = {.lex_state = 34, .external_lex_state = 2}, - [573] = {.lex_state = 30, .external_lex_state = 4}, - [574] = {.lex_state = 34, .external_lex_state = 2}, - [575] = {.lex_state = 34, .external_lex_state = 2}, - [576] = {.lex_state = 30, .external_lex_state = 8}, - [577] = {.lex_state = 34, .external_lex_state = 2}, - [578] = {.lex_state = 34, .external_lex_state = 2}, - [579] = {.lex_state = 34, .external_lex_state = 2}, - [580] = {.lex_state = 34, .external_lex_state = 2}, - [581] = {.lex_state = 34, .external_lex_state = 2}, - [582] = {.lex_state = 34, .external_lex_state = 2}, - [583] = {.lex_state = 30, .external_lex_state = 3}, - [584] = {.lex_state = 30, .external_lex_state = 2}, - [585] = {.lex_state = 30, .external_lex_state = 2}, - [586] = {.lex_state = 30, .external_lex_state = 4}, - [587] = {.lex_state = 34, .external_lex_state = 2}, - [588] = {.lex_state = 30, .external_lex_state = 8}, - [589] = {.lex_state = 34, .external_lex_state = 2}, - [590] = {.lex_state = 34, .external_lex_state = 2}, - [591] = {.lex_state = 34, .external_lex_state = 2}, - [592] = {.lex_state = 30, .external_lex_state = 8}, - [593] = {.lex_state = 34, .external_lex_state = 2}, - [594] = {.lex_state = 34, .external_lex_state = 2}, - [595] = {.lex_state = 34, .external_lex_state = 2}, - [596] = {.lex_state = 34, .external_lex_state = 2}, - [597] = {.lex_state = 34, .external_lex_state = 2}, - [598] = {.lex_state = 34, .external_lex_state = 2}, - [599] = {.lex_state = 34, .external_lex_state = 2}, - [600] = {.lex_state = 34, .external_lex_state = 2}, - [601] = {.lex_state = 34, .external_lex_state = 2}, - [602] = {.lex_state = 34, .external_lex_state = 2}, - [603] = {.lex_state = 34, .external_lex_state = 2}, - [604] = {.lex_state = 30, .external_lex_state = 10}, - [605] = {.lex_state = 34, .external_lex_state = 2}, - [606] = {.lex_state = 30, .external_lex_state = 10}, - [607] = {.lex_state = 30, .external_lex_state = 4}, - [608] = {.lex_state = 30, .external_lex_state = 10}, - [609] = {.lex_state = 30, .external_lex_state = 8}, - [610] = {.lex_state = 30, .external_lex_state = 4}, - [611] = {.lex_state = 30, .external_lex_state = 2}, - [612] = {.lex_state = 30, .external_lex_state = 2}, - [613] = {.lex_state = 30, .external_lex_state = 2}, - [614] = {.lex_state = 30, .external_lex_state = 2}, - [615] = {.lex_state = 30, .external_lex_state = 2}, - [616] = {.lex_state = 30, .external_lex_state = 2}, - [617] = {.lex_state = 5, .external_lex_state = 22}, - [618] = {.lex_state = 5, .external_lex_state = 22}, - [619] = {.lex_state = 5, .external_lex_state = 22}, - [620] = {.lex_state = 5, .external_lex_state = 22}, - [621] = {.lex_state = 5, .external_lex_state = 22}, - [622] = {.lex_state = 5, .external_lex_state = 22}, - [623] = {.lex_state = 5, .external_lex_state = 22}, - [624] = {.lex_state = 5, .external_lex_state = 22}, - [625] = {.lex_state = 5, .external_lex_state = 22}, - [626] = {.lex_state = 5, .external_lex_state = 22}, - [627] = {.lex_state = 5, .external_lex_state = 22}, - [628] = {.lex_state = 5, .external_lex_state = 22}, + [484] = {.lex_state = 8, .external_lex_state = 2}, + [485] = {.lex_state = 8, .external_lex_state = 2}, + [486] = {.lex_state = 8, .external_lex_state = 2}, + [487] = {.lex_state = 8, .external_lex_state = 2}, + [488] = {.lex_state = 8, .external_lex_state = 2}, + [489] = {.lex_state = 8, .external_lex_state = 2}, + [490] = {.lex_state = 8, .external_lex_state = 2}, + [491] = {.lex_state = 8, .external_lex_state = 2}, + [492] = {.lex_state = 36, .external_lex_state = 9}, + [493] = {.lex_state = 8, .external_lex_state = 2}, + [494] = {.lex_state = 36, .external_lex_state = 9}, + [495] = {.lex_state = 36, .external_lex_state = 9}, + [496] = {.lex_state = 36, .external_lex_state = 2}, + [497] = {.lex_state = 36, .external_lex_state = 9}, + [498] = {.lex_state = 36, .external_lex_state = 3}, + [499] = {.lex_state = 36, .external_lex_state = 3}, + [500] = {.lex_state = 36, .external_lex_state = 3}, + [501] = {.lex_state = 36, .external_lex_state = 9}, + [502] = {.lex_state = 36, .external_lex_state = 2}, + [503] = {.lex_state = 36, .external_lex_state = 3}, + [504] = {.lex_state = 36, .external_lex_state = 3}, + [505] = {.lex_state = 36, .external_lex_state = 9}, + [506] = {.lex_state = 36, .external_lex_state = 9}, + [507] = {.lex_state = 36, .external_lex_state = 3}, + [508] = {.lex_state = 36, .external_lex_state = 3}, + [509] = {.lex_state = 36, .external_lex_state = 3}, + [510] = {.lex_state = 36, .external_lex_state = 3}, + [511] = {.lex_state = 36, .external_lex_state = 3}, + [512] = {.lex_state = 36, .external_lex_state = 3}, + [513] = {.lex_state = 36, .external_lex_state = 3}, + [514] = {.lex_state = 36, .external_lex_state = 2}, + [515] = {.lex_state = 36, .external_lex_state = 9}, + [516] = {.lex_state = 36, .external_lex_state = 9}, + [517] = {.lex_state = 36, .external_lex_state = 9}, + [518] = {.lex_state = 36, .external_lex_state = 3}, + [519] = {.lex_state = 36, .external_lex_state = 2}, + [520] = {.lex_state = 36, .external_lex_state = 3}, + [521] = {.lex_state = 36, .external_lex_state = 3}, + [522] = {.lex_state = 36, .external_lex_state = 2}, + [523] = {.lex_state = 36, .external_lex_state = 3}, + [524] = {.lex_state = 36, .external_lex_state = 3}, + [525] = {.lex_state = 36, .external_lex_state = 3}, + [526] = {.lex_state = 36, .external_lex_state = 3}, + [527] = {.lex_state = 36, .external_lex_state = 3}, + [528] = {.lex_state = 36, .external_lex_state = 3}, + [529] = {.lex_state = 36, .external_lex_state = 3}, + [530] = {.lex_state = 36, .external_lex_state = 3}, + [531] = {.lex_state = 36, .external_lex_state = 3}, + [532] = {.lex_state = 36, .external_lex_state = 3}, + [533] = {.lex_state = 36, .external_lex_state = 3}, + [534] = {.lex_state = 36, .external_lex_state = 3}, + [535] = {.lex_state = 36, .external_lex_state = 2}, + [536] = {.lex_state = 36, .external_lex_state = 3}, + [537] = {.lex_state = 36, .external_lex_state = 2}, + [538] = {.lex_state = 32, .external_lex_state = 11}, + [539] = {.lex_state = 32, .external_lex_state = 3}, + [540] = {.lex_state = 32, .external_lex_state = 3}, + [541] = {.lex_state = 32, .external_lex_state = 10}, + [542] = {.lex_state = 32, .external_lex_state = 10}, + [543] = {.lex_state = 32, .external_lex_state = 6}, + [544] = {.lex_state = 32, .external_lex_state = 3}, + [545] = {.lex_state = 32, .external_lex_state = 2}, + [546] = {.lex_state = 32, .external_lex_state = 3}, + [547] = {.lex_state = 32, .external_lex_state = 9}, + [548] = {.lex_state = 32, .external_lex_state = 6}, + [549] = {.lex_state = 32, .external_lex_state = 6}, + [550] = {.lex_state = 32, .external_lex_state = 2}, + [551] = {.lex_state = 32, .external_lex_state = 6}, + [552] = {.lex_state = 32, .external_lex_state = 6}, + [553] = {.lex_state = 1, .external_lex_state = 2}, + [554] = {.lex_state = 1, .external_lex_state = 2}, + [555] = {.lex_state = 1, .external_lex_state = 2}, + [556] = {.lex_state = 32, .external_lex_state = 9}, + [557] = {.lex_state = 32, .external_lex_state = 10}, + [558] = {.lex_state = 32, .external_lex_state = 10}, + [559] = {.lex_state = 1, .external_lex_state = 2}, + [560] = {.lex_state = 32, .external_lex_state = 9}, + [561] = {.lex_state = 1, .external_lex_state = 2}, + [562] = {.lex_state = 32, .external_lex_state = 7}, + [563] = {.lex_state = 32, .external_lex_state = 9}, + [564] = {.lex_state = 32, .external_lex_state = 11}, + [565] = {.lex_state = 32, .external_lex_state = 5}, + [566] = {.lex_state = 32, .external_lex_state = 5}, + [567] = {.lex_state = 32, .external_lex_state = 5}, + [568] = {.lex_state = 32, .external_lex_state = 5}, + [569] = {.lex_state = 32, .external_lex_state = 5}, + [570] = {.lex_state = 32, .external_lex_state = 11}, + [571] = {.lex_state = 32, .external_lex_state = 11}, + [572] = {.lex_state = 32, .external_lex_state = 10}, + [573] = {.lex_state = 32, .external_lex_state = 4}, + [574] = {.lex_state = 32, .external_lex_state = 4}, + [575] = {.lex_state = 32, .external_lex_state = 4}, + [576] = {.lex_state = 32, .external_lex_state = 9}, + [577] = {.lex_state = 32, .external_lex_state = 11}, + [578] = {.lex_state = 32, .external_lex_state = 4}, + [579] = {.lex_state = 32, .external_lex_state = 4}, + [580] = {.lex_state = 32, .external_lex_state = 10}, + [581] = {.lex_state = 32, .external_lex_state = 8}, + [582] = {.lex_state = 36, .external_lex_state = 2}, + [583] = {.lex_state = 36, .external_lex_state = 2}, + [584] = {.lex_state = 36, .external_lex_state = 2}, + [585] = {.lex_state = 32, .external_lex_state = 7}, + [586] = {.lex_state = 36, .external_lex_state = 2}, + [587] = {.lex_state = 36, .external_lex_state = 2}, + [588] = {.lex_state = 32, .external_lex_state = 10}, + [589] = {.lex_state = 32, .external_lex_state = 8}, + [590] = {.lex_state = 36, .external_lex_state = 2}, + [591] = {.lex_state = 36, .external_lex_state = 2}, + [592] = {.lex_state = 36, .external_lex_state = 2}, + [593] = {.lex_state = 36, .external_lex_state = 2}, + [594] = {.lex_state = 36, .external_lex_state = 2}, + [595] = {.lex_state = 32, .external_lex_state = 7}, + [596] = {.lex_state = 36, .external_lex_state = 2}, + [597] = {.lex_state = 32, .external_lex_state = 2}, + [598] = {.lex_state = 32, .external_lex_state = 8}, + [599] = {.lex_state = 32, .external_lex_state = 8}, + [600] = {.lex_state = 36, .external_lex_state = 2}, + [601] = {.lex_state = 32, .external_lex_state = 7}, + [602] = {.lex_state = 36, .external_lex_state = 2}, + [603] = {.lex_state = 36, .external_lex_state = 2}, + [604] = {.lex_state = 32, .external_lex_state = 2}, + [605] = {.lex_state = 36, .external_lex_state = 2}, + [606] = {.lex_state = 36, .external_lex_state = 2}, + [607] = {.lex_state = 36, .external_lex_state = 2}, + [608] = {.lex_state = 36, .external_lex_state = 2}, + [609] = {.lex_state = 36, .external_lex_state = 2}, + [610] = {.lex_state = 36, .external_lex_state = 2}, + [611] = {.lex_state = 36, .external_lex_state = 2}, + [612] = {.lex_state = 36, .external_lex_state = 2}, + [613] = {.lex_state = 36, .external_lex_state = 2}, + [614] = {.lex_state = 36, .external_lex_state = 2}, + [615] = {.lex_state = 36, .external_lex_state = 2}, + [616] = {.lex_state = 36, .external_lex_state = 2}, + [617] = {.lex_state = 32, .external_lex_state = 7}, + [618] = {.lex_state = 36, .external_lex_state = 2}, + [619] = {.lex_state = 32, .external_lex_state = 11}, + [620] = {.lex_state = 32, .external_lex_state = 11}, + [621] = {.lex_state = 32, .external_lex_state = 8}, + [622] = {.lex_state = 32, .external_lex_state = 2}, + [623] = {.lex_state = 32, .external_lex_state = 3}, + [624] = {.lex_state = 32, .external_lex_state = 2}, + [625] = {.lex_state = 32, .external_lex_state = 2}, + [626] = {.lex_state = 32, .external_lex_state = 2}, + [627] = {.lex_state = 32, .external_lex_state = 2}, + [628] = {.lex_state = 32, .external_lex_state = 2}, [629] = {.lex_state = 5, .external_lex_state = 22}, [630] = {.lex_state = 5, .external_lex_state = 22}, [631] = {.lex_state = 5, .external_lex_state = 22}, @@ -4437,18 +4590,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [648] = {.lex_state = 5, .external_lex_state = 22}, [649] = {.lex_state = 5, .external_lex_state = 22}, [650] = {.lex_state = 5, .external_lex_state = 22}, - [651] = {.lex_state = 5}, - [652] = {.lex_state = 5}, - [653] = {.lex_state = 5}, - [654] = {.lex_state = 5}, - [655] = {.lex_state = 5}, - [656] = {.lex_state = 5}, - [657] = {.lex_state = 5}, - [658] = {.lex_state = 5}, - [659] = {.lex_state = 5}, - [660] = {.lex_state = 5}, - [661] = {.lex_state = 5}, - [662] = {.lex_state = 5}, + [651] = {.lex_state = 5, .external_lex_state = 22}, + [652] = {.lex_state = 5, .external_lex_state = 22}, + [653] = {.lex_state = 5, .external_lex_state = 22}, + [654] = {.lex_state = 5, .external_lex_state = 22}, + [655] = {.lex_state = 5, .external_lex_state = 22}, + [656] = {.lex_state = 5, .external_lex_state = 22}, + [657] = {.lex_state = 5, .external_lex_state = 22}, + [658] = {.lex_state = 5, .external_lex_state = 22}, + [659] = {.lex_state = 5, .external_lex_state = 22}, + [660] = {.lex_state = 5, .external_lex_state = 22}, + [661] = {.lex_state = 5, .external_lex_state = 22}, + [662] = {.lex_state = 5, .external_lex_state = 22}, [663] = {.lex_state = 5}, [664] = {.lex_state = 5}, [665] = {.lex_state = 5}, @@ -4457,552 +4610,576 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [668] = {.lex_state = 5}, [669] = {.lex_state = 5}, [670] = {.lex_state = 5}, - [671] = {.lex_state = 7}, + [671] = {.lex_state = 5}, [672] = {.lex_state = 5}, [673] = {.lex_state = 5}, [674] = {.lex_state = 5}, [675] = {.lex_state = 5}, - [676] = {.lex_state = 7}, + [676] = {.lex_state = 5}, [677] = {.lex_state = 5}, - [678] = {.lex_state = 7}, - [679] = {.lex_state = 5}, - [680] = {.lex_state = 7}, + [678] = {.lex_state = 5}, + [679] = {.lex_state = 7}, + [680] = {.lex_state = 5}, [681] = {.lex_state = 5}, [682] = {.lex_state = 5}, - [683] = {.lex_state = 5}, - [684] = {.lex_state = 7}, + [683] = {.lex_state = 7}, + [684] = {.lex_state = 5}, [685] = {.lex_state = 5}, [686] = {.lex_state = 5}, [687] = {.lex_state = 5}, [688] = {.lex_state = 5}, - [689] = {.lex_state = 5}, - [690] = {.lex_state = 5}, + [689] = {.lex_state = 7}, + [690] = {.lex_state = 7}, [691] = {.lex_state = 5}, - [692] = {.lex_state = 7}, + [692] = {.lex_state = 5}, [693] = {.lex_state = 5}, - [694] = {.lex_state = 11}, + [694] = {.lex_state = 5}, [695] = {.lex_state = 5}, - [696] = {.lex_state = 5}, - [697] = {.lex_state = 0, .external_lex_state = 23}, + [696] = {.lex_state = 7}, + [697] = {.lex_state = 5}, [698] = {.lex_state = 5}, - [699] = {.lex_state = 0, .external_lex_state = 24}, - [700] = {.lex_state = 0, .external_lex_state = 25}, - [701] = {.lex_state = 0, .external_lex_state = 26}, - [702] = {.lex_state = 0, .external_lex_state = 27}, - [703] = {.lex_state = 0, .external_lex_state = 26}, - [704] = {.lex_state = 0, .external_lex_state = 28}, - [705] = {.lex_state = 0, .external_lex_state = 23}, - [706] = {.lex_state = 0, .external_lex_state = 29}, - [707] = {.lex_state = 0, .external_lex_state = 30}, - [708] = {.lex_state = 0, .external_lex_state = 31}, - [709] = {.lex_state = 0, .external_lex_state = 32}, - [710] = {.lex_state = 5}, - [711] = {.lex_state = 5}, - [712] = {.lex_state = 5}, - [713] = {.lex_state = 0, .external_lex_state = 24}, - [714] = {.lex_state = 0, .external_lex_state = 25}, - [715] = {.lex_state = 5}, + [699] = {.lex_state = 5}, + [700] = {.lex_state = 5}, + [701] = {.lex_state = 5}, + [702] = {.lex_state = 5}, + [703] = {.lex_state = 5}, + [704] = {.lex_state = 7}, + [705] = {.lex_state = 5}, + [706] = {.lex_state = 13}, + [707] = {.lex_state = 5}, + [708] = {.lex_state = 5}, + [709] = {.lex_state = 0, .external_lex_state = 23}, + [710] = {.lex_state = 0, .external_lex_state = 24}, + [711] = {.lex_state = 0, .external_lex_state = 25}, + [712] = {.lex_state = 0, .external_lex_state = 26}, + [713] = {.lex_state = 0, .external_lex_state = 27}, + [714] = {.lex_state = 0, .external_lex_state = 23}, + [715] = {.lex_state = 0, .external_lex_state = 23}, [716] = {.lex_state = 5}, - [717] = {.lex_state = 0, .external_lex_state = 27}, - [718] = {.lex_state = 5}, - [719] = {.lex_state = 0, .external_lex_state = 27}, - [720] = {.lex_state = 0, .external_lex_state = 26}, - [721] = {.lex_state = 0, .external_lex_state = 23}, - [722] = {.lex_state = 0, .external_lex_state = 29}, - [723] = {.lex_state = 0, .external_lex_state = 30}, - [724] = {.lex_state = 0, .external_lex_state = 31}, - [725] = {.lex_state = 0, .external_lex_state = 32}, - [726] = {.lex_state = 5}, - [727] = {.lex_state = 0, .external_lex_state = 24}, - [728] = {.lex_state = 0, .external_lex_state = 25}, - [729] = {.lex_state = 0, .external_lex_state = 26}, - [730] = {.lex_state = 0, .external_lex_state = 27}, - [731] = {.lex_state = 0, .external_lex_state = 26}, - [732] = {.lex_state = 0, .external_lex_state = 28}, - [733] = {.lex_state = 0, .external_lex_state = 28}, - [734] = {.lex_state = 5}, - [735] = {.lex_state = 5}, - [736] = {.lex_state = 5}, - [737] = {.lex_state = 5}, - [738] = {.lex_state = 5}, - [739] = {.lex_state = 5}, - [740] = {.lex_state = 5}, - [741] = {.lex_state = 0, .external_lex_state = 27}, + [717] = {.lex_state = 0, .external_lex_state = 28}, + [718] = {.lex_state = 0, .external_lex_state = 24}, + [719] = {.lex_state = 0, .external_lex_state = 29}, + [720] = {.lex_state = 0, .external_lex_state = 30}, + [721] = {.lex_state = 0, .external_lex_state = 31}, + [722] = {.lex_state = 0, .external_lex_state = 32}, + [723] = {.lex_state = 5}, + [724] = {.lex_state = 0, .external_lex_state = 33}, + [725] = {.lex_state = 5}, + [726] = {.lex_state = 0, .external_lex_state = 25}, + [727] = {.lex_state = 0, .external_lex_state = 26}, + [728] = {.lex_state = 5}, + [729] = {.lex_state = 5}, + [730] = {.lex_state = 5}, + [731] = {.lex_state = 0, .external_lex_state = 27}, + [732] = {.lex_state = 0, .external_lex_state = 23}, + [733] = {.lex_state = 0, .external_lex_state = 24}, + [734] = {.lex_state = 0, .external_lex_state = 29}, + [735] = {.lex_state = 0, .external_lex_state = 30}, + [736] = {.lex_state = 0, .external_lex_state = 31}, + [737] = {.lex_state = 0, .external_lex_state = 32}, + [738] = {.lex_state = 0, .external_lex_state = 27}, + [739] = {.lex_state = 0, .external_lex_state = 33}, + [740] = {.lex_state = 0, .external_lex_state = 25}, + [741] = {.lex_state = 0, .external_lex_state = 26}, [742] = {.lex_state = 5}, - [743] = {.lex_state = 5}, - [744] = {.lex_state = 0, .external_lex_state = 26}, - [745] = {.lex_state = 0, .external_lex_state = 29}, - [746] = {.lex_state = 0, .external_lex_state = 30}, - [747] = {.lex_state = 0, .external_lex_state = 27}, - [748] = {.lex_state = 0, .external_lex_state = 26}, - [749] = {.lex_state = 0, .external_lex_state = 23}, - [750] = {.lex_state = 0, .external_lex_state = 29}, - [751] = {.lex_state = 0, .external_lex_state = 30}, - [752] = {.lex_state = 0, .external_lex_state = 31}, - [753] = {.lex_state = 0, .external_lex_state = 32}, - [754] = {.lex_state = 0, .external_lex_state = 31}, - [755] = {.lex_state = 0, .external_lex_state = 24}, - [756] = {.lex_state = 0, .external_lex_state = 25}, - [757] = {.lex_state = 0, .external_lex_state = 32}, - [758] = {.lex_state = 0, .external_lex_state = 27}, - [759] = {.lex_state = 0, .external_lex_state = 26}, - [760] = {.lex_state = 0, .external_lex_state = 28}, + [743] = {.lex_state = 0, .external_lex_state = 27}, + [744] = {.lex_state = 0, .external_lex_state = 23}, + [745] = {.lex_state = 0, .external_lex_state = 28}, + [746] = {.lex_state = 0, .external_lex_state = 23}, + [747] = {.lex_state = 0, .external_lex_state = 28}, + [748] = {.lex_state = 5}, + [749] = {.lex_state = 5}, + [750] = {.lex_state = 5}, + [751] = {.lex_state = 5}, + [752] = {.lex_state = 5}, + [753] = {.lex_state = 5}, + [754] = {.lex_state = 5}, + [755] = {.lex_state = 5}, + [756] = {.lex_state = 5}, + [757] = {.lex_state = 0, .external_lex_state = 27}, + [758] = {.lex_state = 5}, + [759] = {.lex_state = 0, .external_lex_state = 27}, + [760] = {.lex_state = 0, .external_lex_state = 23}, [761] = {.lex_state = 0, .external_lex_state = 24}, - [762] = {.lex_state = 5}, - [763] = {.lex_state = 5}, - [764] = {.lex_state = 0, .external_lex_state = 25}, - [765] = {.lex_state = 0, .external_lex_state = 27}, - [766] = {.lex_state = 0, .external_lex_state = 26}, - [767] = {.lex_state = 0, .external_lex_state = 28}, - [768] = {.lex_state = 0, .external_lex_state = 27}, - [769] = {.lex_state = 5}, - [770] = {.lex_state = 5}, - [771] = {.lex_state = 5}, - [772] = {.lex_state = 5}, - [773] = {.lex_state = 0, .external_lex_state = 27}, - [774] = {.lex_state = 0, .external_lex_state = 23}, - [775] = {.lex_state = 0, .external_lex_state = 29}, - [776] = {.lex_state = 0, .external_lex_state = 27}, - [777] = {.lex_state = 0, .external_lex_state = 26}, - [778] = {.lex_state = 0, .external_lex_state = 23}, - [779] = {.lex_state = 0, .external_lex_state = 29}, - [780] = {.lex_state = 0, .external_lex_state = 30}, - [781] = {.lex_state = 0, .external_lex_state = 31}, - [782] = {.lex_state = 0, .external_lex_state = 32}, - [783] = {.lex_state = 0, .external_lex_state = 30}, - [784] = {.lex_state = 0, .external_lex_state = 24}, - [785] = {.lex_state = 0, .external_lex_state = 25}, - [786] = {.lex_state = 0, .external_lex_state = 32}, - [787] = {.lex_state = 0, .external_lex_state = 31}, - [788] = {.lex_state = 0, .external_lex_state = 30}, - [789] = {.lex_state = 5}, - [790] = {.lex_state = 0, .external_lex_state = 27}, - [791] = {.lex_state = 0, .external_lex_state = 26}, - [792] = {.lex_state = 0, .external_lex_state = 28}, - [793] = {.lex_state = 5}, + [762] = {.lex_state = 0, .external_lex_state = 29}, + [763] = {.lex_state = 0, .external_lex_state = 30}, + [764] = {.lex_state = 0, .external_lex_state = 31}, + [765] = {.lex_state = 0, .external_lex_state = 32}, + [766] = {.lex_state = 5}, + [767] = {.lex_state = 0, .external_lex_state = 33}, + [768] = {.lex_state = 0, .external_lex_state = 25}, + [769] = {.lex_state = 0, .external_lex_state = 26}, + [770] = {.lex_state = 0, .external_lex_state = 24}, + [771] = {.lex_state = 0, .external_lex_state = 27}, + [772] = {.lex_state = 0, .external_lex_state = 23}, + [773] = {.lex_state = 0, .external_lex_state = 28}, + [774] = {.lex_state = 0, .external_lex_state = 29}, + [775] = {.lex_state = 0, .external_lex_state = 30}, + [776] = {.lex_state = 0, .external_lex_state = 31}, + [777] = {.lex_state = 0, .external_lex_state = 32}, + [778] = {.lex_state = 5}, + [779] = {.lex_state = 0, .external_lex_state = 33}, + [780] = {.lex_state = 5}, + [781] = {.lex_state = 0, .external_lex_state = 25}, + [782] = {.lex_state = 0, .external_lex_state = 26}, + [783] = {.lex_state = 0, .external_lex_state = 27}, + [784] = {.lex_state = 0, .external_lex_state = 23}, + [785] = {.lex_state = 0, .external_lex_state = 27}, + [786] = {.lex_state = 5}, + [787] = {.lex_state = 0, .external_lex_state = 32}, + [788] = {.lex_state = 5}, + [789] = {.lex_state = 0, .external_lex_state = 27}, + [790] = {.lex_state = 0, .external_lex_state = 23}, + [791] = {.lex_state = 0, .external_lex_state = 24}, + [792] = {.lex_state = 0, .external_lex_state = 29}, + [793] = {.lex_state = 0, .external_lex_state = 30}, [794] = {.lex_state = 0, .external_lex_state = 31}, - [795] = {.lex_state = 0, .external_lex_state = 29}, - [796] = {.lex_state = 0, .external_lex_state = 32}, - [797] = {.lex_state = 0, .external_lex_state = 28}, - [798] = {.lex_state = 0, .external_lex_state = 26}, - [799] = {.lex_state = 0, .external_lex_state = 27}, - [800] = {.lex_state = 0, .external_lex_state = 24}, - [801] = {.lex_state = 0, .external_lex_state = 25}, - [802] = {.lex_state = 0, .external_lex_state = 25}, - [803] = {.lex_state = 0, .external_lex_state = 24}, - [804] = {.lex_state = 0, .external_lex_state = 32}, - [805] = {.lex_state = 0, .external_lex_state = 31}, - [806] = {.lex_state = 0, .external_lex_state = 30}, - [807] = {.lex_state = 0, .external_lex_state = 23}, - [808] = {.lex_state = 0, .external_lex_state = 29}, + [795] = {.lex_state = 0, .external_lex_state = 32}, + [796] = {.lex_state = 0, .external_lex_state = 28}, + [797] = {.lex_state = 0, .external_lex_state = 33}, + [798] = {.lex_state = 0, .external_lex_state = 25}, + [799] = {.lex_state = 0, .external_lex_state = 26}, + [800] = {.lex_state = 0, .external_lex_state = 31}, + [801] = {.lex_state = 0, .external_lex_state = 30}, + [802] = {.lex_state = 0, .external_lex_state = 29}, + [803] = {.lex_state = 5}, + [804] = {.lex_state = 0, .external_lex_state = 27}, + [805] = {.lex_state = 0, .external_lex_state = 23}, + [806] = {.lex_state = 0, .external_lex_state = 28}, + [807] = {.lex_state = 0, .external_lex_state = 24}, + [808] = {.lex_state = 5}, [809] = {.lex_state = 0, .external_lex_state = 27}, - [810] = {.lex_state = 0, .external_lex_state = 26}, - [811] = {.lex_state = 0, .external_lex_state = 23}, + [810] = {.lex_state = 0, .external_lex_state = 23}, + [811] = {.lex_state = 0, .external_lex_state = 24}, [812] = {.lex_state = 0, .external_lex_state = 29}, - [813] = {.lex_state = 0, .external_lex_state = 30}, - [814] = {.lex_state = 0, .external_lex_state = 31}, - [815] = {.lex_state = 0, .external_lex_state = 32}, - [816] = {.lex_state = 0, .external_lex_state = 23}, - [817] = {.lex_state = 0, .external_lex_state = 24}, - [818] = {.lex_state = 0, .external_lex_state = 25}, - [819] = {.lex_state = 0, .external_lex_state = 26}, - [820] = {.lex_state = 0, .external_lex_state = 27}, - [821] = {.lex_state = 0, .external_lex_state = 26}, + [813] = {.lex_state = 5}, + [814] = {.lex_state = 0, .external_lex_state = 30}, + [815] = {.lex_state = 0, .external_lex_state = 33}, + [816] = {.lex_state = 0, .external_lex_state = 31}, + [817] = {.lex_state = 0, .external_lex_state = 28}, + [818] = {.lex_state = 0, .external_lex_state = 23}, + [819] = {.lex_state = 0, .external_lex_state = 27}, + [820] = {.lex_state = 0, .external_lex_state = 23}, + [821] = {.lex_state = 0, .external_lex_state = 32}, [822] = {.lex_state = 0, .external_lex_state = 27}, - [823] = {.lex_state = 0, .external_lex_state = 27}, - [824] = {.lex_state = 0, .external_lex_state = 26}, - [825] = {.lex_state = 0, .external_lex_state = 28}, - [826] = {.lex_state = 0, .external_lex_state = 27}, - [827] = {.lex_state = 0, .external_lex_state = 28}, - [828] = {.lex_state = 0, .external_lex_state = 26}, - [829] = {.lex_state = 0, .external_lex_state = 27}, - [830] = {.lex_state = 0, .external_lex_state = 26}, - [831] = {.lex_state = 0, .external_lex_state = 28}, - [832] = {.lex_state = 0, .external_lex_state = 25}, - [833] = {.lex_state = 0, .external_lex_state = 24}, - [834] = {.lex_state = 0, .external_lex_state = 32}, - [835] = {.lex_state = 0, .external_lex_state = 31}, - [836] = {.lex_state = 0, .external_lex_state = 30}, - [837] = {.lex_state = 0, .external_lex_state = 29}, + [823] = {.lex_state = 0, .external_lex_state = 23}, + [824] = {.lex_state = 0, .external_lex_state = 24}, + [825] = {.lex_state = 0, .external_lex_state = 29}, + [826] = {.lex_state = 0, .external_lex_state = 30}, + [827] = {.lex_state = 0, .external_lex_state = 31}, + [828] = {.lex_state = 0, .external_lex_state = 32}, + [829] = {.lex_state = 0, .external_lex_state = 33}, + [830] = {.lex_state = 0, .external_lex_state = 33}, + [831] = {.lex_state = 0, .external_lex_state = 25}, + [832] = {.lex_state = 0, .external_lex_state = 26}, + [833] = {.lex_state = 0, .external_lex_state = 27}, + [834] = {.lex_state = 0, .external_lex_state = 26}, + [835] = {.lex_state = 0, .external_lex_state = 25}, + [836] = {.lex_state = 0, .external_lex_state = 33}, + [837] = {.lex_state = 0, .external_lex_state = 27}, [838] = {.lex_state = 0, .external_lex_state = 23}, - [839] = {.lex_state = 0, .external_lex_state = 26}, - [840] = {.lex_state = 0, .external_lex_state = 27}, - [841] = {.lex_state = 0, .external_lex_state = 28}, - [842] = {.lex_state = 0, .external_lex_state = 27}, - [843] = {.lex_state = 0, .external_lex_state = 26}, - [844] = {.lex_state = 0, .external_lex_state = 23}, - [845] = {.lex_state = 0, .external_lex_state = 29}, - [846] = {.lex_state = 0, .external_lex_state = 30}, - [847] = {.lex_state = 0, .external_lex_state = 31}, - [848] = {.lex_state = 0, .external_lex_state = 32}, - [849] = {.lex_state = 0, .external_lex_state = 26}, - [850] = {.lex_state = 0, .external_lex_state = 24}, - [851] = {.lex_state = 0, .external_lex_state = 25}, + [839] = {.lex_state = 0, .external_lex_state = 28}, + [840] = {.lex_state = 0, .external_lex_state = 32}, + [841] = {.lex_state = 0, .external_lex_state = 31}, + [842] = {.lex_state = 0, .external_lex_state = 30}, + [843] = {.lex_state = 0, .external_lex_state = 29}, + [844] = {.lex_state = 0, .external_lex_state = 24}, + [845] = {.lex_state = 0, .external_lex_state = 23}, + [846] = {.lex_state = 0, .external_lex_state = 27}, + [847] = {.lex_state = 0, .external_lex_state = 25}, + [848] = {.lex_state = 0, .external_lex_state = 26}, + [849] = {.lex_state = 0, .external_lex_state = 28}, + [850] = {.lex_state = 0, .external_lex_state = 23}, + [851] = {.lex_state = 0, .external_lex_state = 27}, [852] = {.lex_state = 0, .external_lex_state = 27}, - [853] = {.lex_state = 0, .external_lex_state = 26}, - [854] = {.lex_state = 0, .external_lex_state = 25}, - [855] = {.lex_state = 0, .external_lex_state = 24}, - [856] = {.lex_state = 0, .external_lex_state = 27}, - [857] = {.lex_state = 0, .external_lex_state = 26}, - [858] = {.lex_state = 0, .external_lex_state = 28}, - [859] = {.lex_state = 0, .external_lex_state = 32}, + [853] = {.lex_state = 0, .external_lex_state = 23}, + [854] = {.lex_state = 0, .external_lex_state = 26}, + [855] = {.lex_state = 0, .external_lex_state = 27}, + [856] = {.lex_state = 0, .external_lex_state = 23}, + [857] = {.lex_state = 0, .external_lex_state = 24}, + [858] = {.lex_state = 0, .external_lex_state = 29}, + [859] = {.lex_state = 0, .external_lex_state = 30}, [860] = {.lex_state = 0, .external_lex_state = 31}, - [861] = {.lex_state = 0, .external_lex_state = 30}, - [862] = {.lex_state = 0, .external_lex_state = 29}, - [863] = {.lex_state = 0, .external_lex_state = 23}, - [864] = {.lex_state = 0, .external_lex_state = 26}, - [865] = {.lex_state = 0, .external_lex_state = 27}, + [861] = {.lex_state = 0, .external_lex_state = 32}, + [862] = {.lex_state = 0, .external_lex_state = 25}, + [863] = {.lex_state = 0, .external_lex_state = 33}, + [864] = {.lex_state = 0, .external_lex_state = 25}, + [865] = {.lex_state = 0, .external_lex_state = 26}, [866] = {.lex_state = 0, .external_lex_state = 33}, - [867] = {.lex_state = 0, .external_lex_state = 34}, - [868] = {.lex_state = 0, .external_lex_state = 35}, - [869] = {.lex_state = 0, .external_lex_state = 36}, - [870] = {.lex_state = 0, .external_lex_state = 37}, - [871] = {.lex_state = 1}, - [872] = {.lex_state = 5}, - [873] = {.lex_state = 0, .external_lex_state = 33}, - [874] = {.lex_state = 5}, - [875] = {.lex_state = 0, .external_lex_state = 38}, - [876] = {.lex_state = 0, .external_lex_state = 39}, - [877] = {.lex_state = 5}, - [878] = {.lex_state = 0, .external_lex_state = 40}, - [879] = {.lex_state = 0, .external_lex_state = 34}, - [880] = {.lex_state = 5}, - [881] = {.lex_state = 5}, - [882] = {.lex_state = 0}, - [883] = {.lex_state = 0, .external_lex_state = 40}, - [884] = {.lex_state = 0, .external_lex_state = 35}, - [885] = {.lex_state = 0, .external_lex_state = 36}, - [886] = {.lex_state = 0, .external_lex_state = 39}, - [887] = {.lex_state = 5}, - [888] = {.lex_state = 0, .external_lex_state = 40}, - [889] = {.lex_state = 0, .external_lex_state = 37}, - [890] = {.lex_state = 0}, - [891] = {.lex_state = 5}, + [867] = {.lex_state = 0, .external_lex_state = 32}, + [868] = {.lex_state = 0, .external_lex_state = 31}, + [869] = {.lex_state = 0, .external_lex_state = 30}, + [870] = {.lex_state = 0, .external_lex_state = 27}, + [871] = {.lex_state = 0, .external_lex_state = 23}, + [872] = {.lex_state = 0, .external_lex_state = 28}, + [873] = {.lex_state = 0, .external_lex_state = 29}, + [874] = {.lex_state = 0, .external_lex_state = 24}, + [875] = {.lex_state = 0, .external_lex_state = 23}, + [876] = {.lex_state = 0, .external_lex_state = 27}, + [877] = {.lex_state = 0, .external_lex_state = 28}, + [878] = {.lex_state = 0, .external_lex_state = 28}, + [879] = {.lex_state = 0, .external_lex_state = 23}, + [880] = {.lex_state = 0, .external_lex_state = 27}, + [881] = {.lex_state = 0, .external_lex_state = 26}, + [882] = {.lex_state = 0, .external_lex_state = 25}, + [883] = {.lex_state = 0, .external_lex_state = 33}, + [884] = {.lex_state = 0, .external_lex_state = 29}, + [885] = {.lex_state = 0, .external_lex_state = 30}, + [886] = {.lex_state = 0, .external_lex_state = 31}, + [887] = {.lex_state = 0, .external_lex_state = 32}, + [888] = {.lex_state = 0, .external_lex_state = 27}, + [889] = {.lex_state = 0, .external_lex_state = 23}, + [890] = {.lex_state = 5}, + [891] = {.lex_state = 0, .external_lex_state = 34}, [892] = {.lex_state = 5}, - [893] = {.lex_state = 5}, - [894] = {.lex_state = 0, .external_lex_state = 40}, - [895] = {.lex_state = 0, .external_lex_state = 40}, - [896] = {.lex_state = 5}, - [897] = {.lex_state = 0, .external_lex_state = 39}, + [893] = {.lex_state = 0, .external_lex_state = 35}, + [894] = {.lex_state = 5}, + [895] = {.lex_state = 0}, + [896] = {.lex_state = 0, .external_lex_state = 36}, + [897] = {.lex_state = 0, .external_lex_state = 37}, [898] = {.lex_state = 0, .external_lex_state = 38}, - [899] = {.lex_state = 0, .external_lex_state = 33}, - [900] = {.lex_state = 0, .external_lex_state = 34}, - [901] = {.lex_state = 0, .external_lex_state = 35}, - [902] = {.lex_state = 0, .external_lex_state = 36}, - [903] = {.lex_state = 0, .external_lex_state = 37}, - [904] = {.lex_state = 1}, - [905] = {.lex_state = 5}, - [906] = {.lex_state = 5}, - [907] = {.lex_state = 5}, - [908] = {.lex_state = 1}, - [909] = {.lex_state = 5}, - [910] = {.lex_state = 1}, - [911] = {.lex_state = 0, .external_lex_state = 37}, - [912] = {.lex_state = 0, .external_lex_state = 36}, - [913] = {.lex_state = 0, .external_lex_state = 35}, - [914] = {.lex_state = 0, .external_lex_state = 34}, - [915] = {.lex_state = 0}, - [916] = {.lex_state = 0, .external_lex_state = 33}, - [917] = {.lex_state = 0, .external_lex_state = 38}, + [899] = {.lex_state = 0, .external_lex_state = 39}, + [900] = {.lex_state = 0, .external_lex_state = 36}, + [901] = {.lex_state = 5}, + [902] = {.lex_state = 0, .external_lex_state = 40}, + [903] = {.lex_state = 0, .external_lex_state = 41}, + [904] = {.lex_state = 0, .external_lex_state = 42}, + [905] = {.lex_state = 0, .external_lex_state = 39}, + [906] = {.lex_state = 0, .external_lex_state = 40}, + [907] = {.lex_state = 0, .external_lex_state = 40}, + [908] = {.lex_state = 5}, + [909] = {.lex_state = 0, .external_lex_state = 36}, + [910] = {.lex_state = 0, .external_lex_state = 43}, + [911] = {.lex_state = 0, .external_lex_state = 35}, + [912] = {.lex_state = 0, .external_lex_state = 39}, + [913] = {.lex_state = 0, .external_lex_state = 42}, + [914] = {.lex_state = 0, .external_lex_state = 41}, + [915] = {.lex_state = 0, .external_lex_state = 38}, + [916] = {.lex_state = 0, .external_lex_state = 37}, + [917] = {.lex_state = 0}, [918] = {.lex_state = 5}, - [919] = {.lex_state = 0, .external_lex_state = 39}, + [919] = {.lex_state = 0, .external_lex_state = 35}, [920] = {.lex_state = 5}, - [921] = {.lex_state = 0, .external_lex_state = 40}, - [922] = {.lex_state = 0, .external_lex_state = 40}, + [921] = {.lex_state = 0, .external_lex_state = 43}, + [922] = {.lex_state = 0, .external_lex_state = 36}, [923] = {.lex_state = 5}, - [924] = {.lex_state = 5}, - [925] = {.lex_state = 5}, - [926] = {.lex_state = 5}, - [927] = {.lex_state = 5}, - [928] = {.lex_state = 0, .external_lex_state = 40}, - [929] = {.lex_state = 5}, - [930] = {.lex_state = 0, .external_lex_state = 39}, - [931] = {.lex_state = 0, .external_lex_state = 38}, - [932] = {.lex_state = 0, .external_lex_state = 33}, - [933] = {.lex_state = 0, .external_lex_state = 34}, - [934] = {.lex_state = 0, .external_lex_state = 35}, - [935] = {.lex_state = 0, .external_lex_state = 36}, - [936] = {.lex_state = 0, .external_lex_state = 37}, - [937] = {.lex_state = 1}, - [938] = {.lex_state = 5}, - [939] = {.lex_state = 0, .external_lex_state = 40}, - [940] = {.lex_state = 5}, - [941] = {.lex_state = 0, .external_lex_state = 40}, - [942] = {.lex_state = 5}, - [943] = {.lex_state = 0}, - [944] = {.lex_state = 5}, - [945] = {.lex_state = 5}, - [946] = {.lex_state = 1}, - [947] = {.lex_state = 0, .external_lex_state = 37}, - [948] = {.lex_state = 0}, - [949] = {.lex_state = 0, .external_lex_state = 36}, - [950] = {.lex_state = 0, .external_lex_state = 35}, - [951] = {.lex_state = 0, .external_lex_state = 34}, - [952] = {.lex_state = 0, .external_lex_state = 33}, - [953] = {.lex_state = 0}, - [954] = {.lex_state = 0, .external_lex_state = 40}, - [955] = {.lex_state = 0, .external_lex_state = 38}, - [956] = {.lex_state = 0, .external_lex_state = 39}, - [957] = {.lex_state = 5}, + [924] = {.lex_state = 0, .external_lex_state = 40}, + [925] = {.lex_state = 0, .external_lex_state = 39}, + [926] = {.lex_state = 0, .external_lex_state = 40}, + [927] = {.lex_state = 0, .external_lex_state = 42}, + [928] = {.lex_state = 0}, + [929] = {.lex_state = 0, .external_lex_state = 41}, + [930] = {.lex_state = 0, .external_lex_state = 38}, + [931] = {.lex_state = 0}, + [932] = {.lex_state = 5}, + [933] = {.lex_state = 0, .external_lex_state = 37}, + [934] = {.lex_state = 0, .external_lex_state = 40}, + [935] = {.lex_state = 0, .external_lex_state = 40}, + [936] = {.lex_state = 5}, + [937] = {.lex_state = 0}, + [938] = {.lex_state = 0, .external_lex_state = 37}, + [939] = {.lex_state = 0, .external_lex_state = 38}, + [940] = {.lex_state = 0, .external_lex_state = 40}, + [941] = {.lex_state = 5}, + [942] = {.lex_state = 0, .external_lex_state = 36}, + [943] = {.lex_state = 0, .external_lex_state = 43}, + [944] = {.lex_state = 0, .external_lex_state = 35}, + [945] = {.lex_state = 0, .external_lex_state = 39}, + [946] = {.lex_state = 0, .external_lex_state = 42}, + [947] = {.lex_state = 0, .external_lex_state = 41}, + [948] = {.lex_state = 0, .external_lex_state = 38}, + [949] = {.lex_state = 0, .external_lex_state = 37}, + [950] = {.lex_state = 0}, + [951] = {.lex_state = 5}, + [952] = {.lex_state = 0, .external_lex_state = 41}, + [953] = {.lex_state = 5}, + [954] = {.lex_state = 0, .external_lex_state = 42}, + [955] = {.lex_state = 0, .external_lex_state = 39}, + [956] = {.lex_state = 0, .external_lex_state = 35}, + [957] = {.lex_state = 0, .external_lex_state = 43}, [958] = {.lex_state = 5}, [959] = {.lex_state = 5}, [960] = {.lex_state = 0, .external_lex_state = 40}, - [961] = {.lex_state = 0, .external_lex_state = 40}, - [962] = {.lex_state = 5}, - [963] = {.lex_state = 0, .external_lex_state = 39}, - [964] = {.lex_state = 0, .external_lex_state = 38}, - [965] = {.lex_state = 0, .external_lex_state = 33}, - [966] = {.lex_state = 0, .external_lex_state = 34}, - [967] = {.lex_state = 0, .external_lex_state = 35}, - [968] = {.lex_state = 0, .external_lex_state = 36}, - [969] = {.lex_state = 0, .external_lex_state = 37}, - [970] = {.lex_state = 1}, - [971] = {.lex_state = 5}, - [972] = {.lex_state = 5}, - [973] = {.lex_state = 5}, - [974] = {.lex_state = 0, .external_lex_state = 41}, - [975] = {.lex_state = 5}, - [976] = {.lex_state = 0, .external_lex_state = 42}, - [977] = {.lex_state = 0, .external_lex_state = 41}, - [978] = {.lex_state = 0, .external_lex_state = 40}, - [979] = {.lex_state = 0}, - [980] = {.lex_state = 5}, + [961] = {.lex_state = 0}, + [962] = {.lex_state = 0}, + [963] = {.lex_state = 0, .external_lex_state = 40}, + [964] = {.lex_state = 5}, + [965] = {.lex_state = 5}, + [966] = {.lex_state = 0}, + [967] = {.lex_state = 0}, + [968] = {.lex_state = 0, .external_lex_state = 40}, + [969] = {.lex_state = 5}, + [970] = {.lex_state = 5}, + [971] = {.lex_state = 0}, + [972] = {.lex_state = 0, .external_lex_state = 37}, + [973] = {.lex_state = 0, .external_lex_state = 40}, + [974] = {.lex_state = 0, .external_lex_state = 38}, + [975] = {.lex_state = 0, .external_lex_state = 36}, + [976] = {.lex_state = 0, .external_lex_state = 43}, + [977] = {.lex_state = 0, .external_lex_state = 35}, + [978] = {.lex_state = 0, .external_lex_state = 39}, + [979] = {.lex_state = 0, .external_lex_state = 42}, + [980] = {.lex_state = 0, .external_lex_state = 41}, [981] = {.lex_state = 0, .external_lex_state = 38}, - [982] = {.lex_state = 0, .external_lex_state = 40}, - [983] = {.lex_state = 5}, + [982] = {.lex_state = 0, .external_lex_state = 37}, + [983] = {.lex_state = 0}, [984] = {.lex_state = 5}, - [985] = {.lex_state = 5}, - [986] = {.lex_state = 1}, - [987] = {.lex_state = 12}, - [988] = {.lex_state = 147}, - [989] = {.lex_state = 13}, - [990] = {.lex_state = 0, .external_lex_state = 41}, - [991] = {.lex_state = 1}, - [992] = {.lex_state = 0, .external_lex_state = 42}, - [993] = {.lex_state = 0, .external_lex_state = 41}, - [994] = {.lex_state = 0, .external_lex_state = 37}, - [995] = {.lex_state = 0, .external_lex_state = 37}, - [996] = {.lex_state = 0, .external_lex_state = 36}, - [997] = {.lex_state = 0, .external_lex_state = 35}, - [998] = {.lex_state = 0, .external_lex_state = 34}, - [999] = {.lex_state = 0, .external_lex_state = 33}, - [1000] = {.lex_state = 0, .external_lex_state = 38}, - [1001] = {.lex_state = 0, .external_lex_state = 39}, - [1002] = {.lex_state = 5}, - [1003] = {.lex_state = 12}, - [1004] = {.lex_state = 13}, - [1005] = {.lex_state = 0, .external_lex_state = 41}, - [1006] = {.lex_state = 0, .external_lex_state = 36}, - [1007] = {.lex_state = 0, .external_lex_state = 42}, + [985] = {.lex_state = 0, .external_lex_state = 41}, + [986] = {.lex_state = 5}, + [987] = {.lex_state = 0, .external_lex_state = 34}, + [988] = {.lex_state = 0, .external_lex_state = 44}, + [989] = {.lex_state = 0, .external_lex_state = 34}, + [990] = {.lex_state = 0, .external_lex_state = 42}, + [991] = {.lex_state = 0, .external_lex_state = 39}, + [992] = {.lex_state = 0, .external_lex_state = 35}, + [993] = {.lex_state = 0, .external_lex_state = 43}, + [994] = {.lex_state = 0, .external_lex_state = 36}, + [995] = {.lex_state = 5}, + [996] = {.lex_state = 5}, + [997] = {.lex_state = 0}, + [998] = {.lex_state = 5}, + [999] = {.lex_state = 0, .external_lex_state = 37}, + [1000] = {.lex_state = 14}, + [1001] = {.lex_state = 150}, + [1002] = {.lex_state = 15}, + [1003] = {.lex_state = 0, .external_lex_state = 34}, + [1004] = {.lex_state = 0, .external_lex_state = 44}, + [1005] = {.lex_state = 0, .external_lex_state = 34}, + [1006] = {.lex_state = 0, .external_lex_state = 40}, + [1007] = {.lex_state = 0, .external_lex_state = 38}, [1008] = {.lex_state = 0, .external_lex_state = 41}, - [1009] = {.lex_state = 0, .external_lex_state = 35}, - [1010] = {.lex_state = 0, .external_lex_state = 34}, - [1011] = {.lex_state = 5}, - [1012] = {.lex_state = 5}, - [1013] = {.lex_state = 0, .external_lex_state = 33}, - [1014] = {.lex_state = 0, .external_lex_state = 38}, - [1015] = {.lex_state = 0, .external_lex_state = 39}, - [1016] = {.lex_state = 0, .external_lex_state = 40}, - [1017] = {.lex_state = 5}, - [1018] = {.lex_state = 12}, - [1019] = {.lex_state = 13}, - [1020] = {.lex_state = 0, .external_lex_state = 41}, - [1021] = {.lex_state = 0, .external_lex_state = 40}, - [1022] = {.lex_state = 0, .external_lex_state = 42}, - [1023] = {.lex_state = 0, .external_lex_state = 41}, - [1024] = {.lex_state = 5}, - [1025] = {.lex_state = 5}, - [1026] = {.lex_state = 0}, - [1027] = {.lex_state = 0, .external_lex_state = 40}, - [1028] = {.lex_state = 0}, - [1029] = {.lex_state = 5}, - [1030] = {.lex_state = 5}, - [1031] = {.lex_state = 1}, - [1032] = {.lex_state = 5}, - [1033] = {.lex_state = 12}, - [1034] = {.lex_state = 13}, - [1035] = {.lex_state = 0, .external_lex_state = 41}, - [1036] = {.lex_state = 0, .external_lex_state = 37}, - [1037] = {.lex_state = 0, .external_lex_state = 42}, - [1038] = {.lex_state = 0, .external_lex_state = 41}, + [1009] = {.lex_state = 0, .external_lex_state = 42}, + [1010] = {.lex_state = 0, .external_lex_state = 40}, + [1011] = {.lex_state = 0, .external_lex_state = 35}, + [1012] = {.lex_state = 0, .external_lex_state = 43}, + [1013] = {.lex_state = 0, .external_lex_state = 36}, + [1014] = {.lex_state = 0}, + [1015] = {.lex_state = 5}, + [1016] = {.lex_state = 14}, + [1017] = {.lex_state = 15}, + [1018] = {.lex_state = 0, .external_lex_state = 34}, + [1019] = {.lex_state = 0, .external_lex_state = 44}, + [1020] = {.lex_state = 0, .external_lex_state = 34}, + [1021] = {.lex_state = 5}, + [1022] = {.lex_state = 0, .external_lex_state = 40}, + [1023] = {.lex_state = 0}, + [1024] = {.lex_state = 0}, + [1025] = {.lex_state = 0, .external_lex_state = 37}, + [1026] = {.lex_state = 0, .external_lex_state = 40}, + [1027] = {.lex_state = 0, .external_lex_state = 38}, + [1028] = {.lex_state = 0, .external_lex_state = 41}, + [1029] = {.lex_state = 0, .external_lex_state = 42}, + [1030] = {.lex_state = 0, .external_lex_state = 39}, + [1031] = {.lex_state = 14}, + [1032] = {.lex_state = 15}, + [1033] = {.lex_state = 0, .external_lex_state = 34}, + [1034] = {.lex_state = 0, .external_lex_state = 44}, + [1035] = {.lex_state = 0, .external_lex_state = 34}, + [1036] = {.lex_state = 0, .external_lex_state = 35}, + [1037] = {.lex_state = 0}, + [1038] = {.lex_state = 0, .external_lex_state = 43}, [1039] = {.lex_state = 0, .external_lex_state = 36}, [1040] = {.lex_state = 5}, - [1041] = {.lex_state = 0, .external_lex_state = 35}, - [1042] = {.lex_state = 14}, + [1041] = {.lex_state = 0, .external_lex_state = 40}, + [1042] = {.lex_state = 0, .external_lex_state = 43}, [1043] = {.lex_state = 5}, - [1044] = {.lex_state = 5}, + [1044] = {.lex_state = 0, .external_lex_state = 40}, [1045] = {.lex_state = 5}, - [1046] = {.lex_state = 0, .external_lex_state = 34}, - [1047] = {.lex_state = 5}, - [1048] = {.lex_state = 12}, - [1049] = {.lex_state = 13}, - [1050] = {.lex_state = 0, .external_lex_state = 41}, - [1051] = {.lex_state = 0, .external_lex_state = 33}, - [1052] = {.lex_state = 0, .external_lex_state = 42}, - [1053] = {.lex_state = 0, .external_lex_state = 41}, - [1054] = {.lex_state = 0, .external_lex_state = 38}, - [1055] = {.lex_state = 13}, - [1056] = {.lex_state = 0, .external_lex_state = 43}, - [1057] = {.lex_state = 0, .external_lex_state = 44}, + [1046] = {.lex_state = 14}, + [1047] = {.lex_state = 15}, + [1048] = {.lex_state = 0, .external_lex_state = 34}, + [1049] = {.lex_state = 0, .external_lex_state = 44}, + [1050] = {.lex_state = 0, .external_lex_state = 34}, + [1051] = {.lex_state = 0}, + [1052] = {.lex_state = 5}, + [1053] = {.lex_state = 16}, + [1054] = {.lex_state = 5}, + [1055] = {.lex_state = 5}, + [1056] = {.lex_state = 5}, + [1057] = {.lex_state = 5}, [1058] = {.lex_state = 5}, - [1059] = {.lex_state = 1}, - [1060] = {.lex_state = 0, .external_lex_state = 37}, - [1061] = {.lex_state = 0, .external_lex_state = 36}, - [1062] = {.lex_state = 0, .external_lex_state = 35}, - [1063] = {.lex_state = 12}, - [1064] = {.lex_state = 13}, - [1065] = {.lex_state = 0, .external_lex_state = 41}, - [1066] = {.lex_state = 0, .external_lex_state = 39}, - [1067] = {.lex_state = 0, .external_lex_state = 42}, - [1068] = {.lex_state = 0, .external_lex_state = 41}, + [1059] = {.lex_state = 0}, + [1060] = {.lex_state = 15}, + [1061] = {.lex_state = 14}, + [1062] = {.lex_state = 15}, + [1063] = {.lex_state = 0, .external_lex_state = 34}, + [1064] = {.lex_state = 0, .external_lex_state = 44}, + [1065] = {.lex_state = 0}, + [1066] = {.lex_state = 0, .external_lex_state = 37}, + [1067] = {.lex_state = 0, .external_lex_state = 45}, + [1068] = {.lex_state = 0, .external_lex_state = 46}, [1069] = {.lex_state = 5}, - [1070] = {.lex_state = 0, .external_lex_state = 34}, - [1071] = {.lex_state = 0, .external_lex_state = 33}, - [1072] = {.lex_state = 0, .external_lex_state = 38}, - [1073] = {.lex_state = 0, .external_lex_state = 39}, - [1074] = {.lex_state = 5}, - [1075] = {.lex_state = 147}, - [1076] = {.lex_state = 0, .external_lex_state = 40}, - [1077] = {.lex_state = 12}, - [1078] = {.lex_state = 12}, - [1079] = {.lex_state = 13}, - [1080] = {.lex_state = 0, .external_lex_state = 41}, - [1081] = {.lex_state = 0, .external_lex_state = 40}, + [1070] = {.lex_state = 0}, + [1071] = {.lex_state = 0, .external_lex_state = 37}, + [1072] = {.lex_state = 0, .external_lex_state = 37}, + [1073] = {.lex_state = 0, .external_lex_state = 38}, + [1074] = {.lex_state = 0, .external_lex_state = 38}, + [1075] = {.lex_state = 0, .external_lex_state = 41}, + [1076] = {.lex_state = 14}, + [1077] = {.lex_state = 15}, + [1078] = {.lex_state = 0, .external_lex_state = 34}, + [1079] = {.lex_state = 0, .external_lex_state = 44}, + [1080] = {.lex_state = 0, .external_lex_state = 34}, + [1081] = {.lex_state = 0, .external_lex_state = 41}, [1082] = {.lex_state = 0, .external_lex_state = 42}, - [1083] = {.lex_state = 0, .external_lex_state = 41}, - [1084] = {.lex_state = 5}, - [1085] = {.lex_state = 0}, - [1086] = {.lex_state = 0, .external_lex_state = 41}, + [1083] = {.lex_state = 0, .external_lex_state = 39}, + [1084] = {.lex_state = 0, .external_lex_state = 35}, + [1085] = {.lex_state = 0, .external_lex_state = 43}, + [1086] = {.lex_state = 0, .external_lex_state = 36}, [1087] = {.lex_state = 5}, - [1088] = {.lex_state = 5}, - [1089] = {.lex_state = 5}, - [1090] = {.lex_state = 0, .external_lex_state = 42}, - [1091] = {.lex_state = 5}, - [1092] = {.lex_state = 0, .external_lex_state = 40}, - [1093] = {.lex_state = 12}, - [1094] = {.lex_state = 13}, - [1095] = {.lex_state = 0, .external_lex_state = 41}, - [1096] = {.lex_state = 0}, - [1097] = {.lex_state = 0, .external_lex_state = 42}, - [1098] = {.lex_state = 0, .external_lex_state = 41}, - [1099] = {.lex_state = 5}, - [1100] = {.lex_state = 5}, - [1101] = {.lex_state = 0, .external_lex_state = 40}, - [1102] = {.lex_state = 0, .external_lex_state = 45}, - [1103] = {.lex_state = 0, .external_lex_state = 46}, - [1104] = {.lex_state = 0, .external_lex_state = 47}, - [1105] = {.lex_state = 0, .external_lex_state = 48}, - [1106] = {.lex_state = 0, .external_lex_state = 49}, - [1107] = {.lex_state = 0, .external_lex_state = 50}, - [1108] = {.lex_state = 12}, - [1109] = {.lex_state = 13}, - [1110] = {.lex_state = 0, .external_lex_state = 41}, - [1111] = {.lex_state = 1}, - [1112] = {.lex_state = 0, .external_lex_state = 42}, - [1113] = {.lex_state = 0, .external_lex_state = 41}, - [1114] = {.lex_state = 0, .external_lex_state = 37}, - [1115] = {.lex_state = 0, .external_lex_state = 51}, - [1116] = {.lex_state = 0, .external_lex_state = 52}, - [1117] = {.lex_state = 0, .external_lex_state = 53}, - [1118] = {.lex_state = 0}, - [1119] = {.lex_state = 0}, - [1120] = {.lex_state = 0, .external_lex_state = 36}, - [1121] = {.lex_state = 0, .external_lex_state = 35}, - [1122] = {.lex_state = 0, .external_lex_state = 34}, - [1123] = {.lex_state = 12}, - [1124] = {.lex_state = 13}, - [1125] = {.lex_state = 0, .external_lex_state = 41}, - [1126] = {.lex_state = 0, .external_lex_state = 33}, - [1127] = {.lex_state = 0, .external_lex_state = 42}, - [1128] = {.lex_state = 0, .external_lex_state = 41}, - [1129] = {.lex_state = 0, .external_lex_state = 38}, + [1088] = {.lex_state = 150}, + [1089] = {.lex_state = 0, .external_lex_state = 42}, + [1090] = {.lex_state = 0, .external_lex_state = 40}, + [1091] = {.lex_state = 14}, + [1092] = {.lex_state = 15}, + [1093] = {.lex_state = 0, .external_lex_state = 34}, + [1094] = {.lex_state = 0, .external_lex_state = 44}, + [1095] = {.lex_state = 0, .external_lex_state = 34}, + [1096] = {.lex_state = 0, .external_lex_state = 39}, + [1097] = {.lex_state = 14}, + [1098] = {.lex_state = 0, .external_lex_state = 35}, + [1099] = {.lex_state = 0, .external_lex_state = 43}, + [1100] = {.lex_state = 0, .external_lex_state = 34}, + [1101] = {.lex_state = 0, .external_lex_state = 44}, + [1102] = {.lex_state = 0, .external_lex_state = 36}, + [1103] = {.lex_state = 5}, + [1104] = {.lex_state = 0, .external_lex_state = 40}, + [1105] = {.lex_state = 0, .external_lex_state = 40}, + [1106] = {.lex_state = 14}, + [1107] = {.lex_state = 15}, + [1108] = {.lex_state = 0, .external_lex_state = 34}, + [1109] = {.lex_state = 0, .external_lex_state = 44}, + [1110] = {.lex_state = 0, .external_lex_state = 34}, + [1111] = {.lex_state = 0}, + [1112] = {.lex_state = 0, .external_lex_state = 40}, + [1113] = {.lex_state = 0, .external_lex_state = 47}, + [1114] = {.lex_state = 0, .external_lex_state = 48}, + [1115] = {.lex_state = 0, .external_lex_state = 49}, + [1116] = {.lex_state = 0, .external_lex_state = 50}, + [1117] = {.lex_state = 0, .external_lex_state = 51}, + [1118] = {.lex_state = 0, .external_lex_state = 52}, + [1119] = {.lex_state = 5}, + [1120] = {.lex_state = 0, .external_lex_state = 53}, + [1121] = {.lex_state = 14}, + [1122] = {.lex_state = 15}, + [1123] = {.lex_state = 0, .external_lex_state = 34}, + [1124] = {.lex_state = 0, .external_lex_state = 44}, + [1125] = {.lex_state = 0, .external_lex_state = 34}, + [1126] = {.lex_state = 5}, + [1127] = {.lex_state = 0, .external_lex_state = 54}, + [1128] = {.lex_state = 0, .external_lex_state = 55}, + [1129] = {.lex_state = 0, .external_lex_state = 56}, [1130] = {.lex_state = 0}, - [1131] = {.lex_state = 0, .external_lex_state = 39}, - [1132] = {.lex_state = 5}, - [1133] = {.lex_state = 0, .external_lex_state = 40}, - [1134] = {.lex_state = 5}, + [1131] = {.lex_state = 0}, + [1132] = {.lex_state = 0}, + [1133] = {.lex_state = 0, .external_lex_state = 37}, + [1134] = {.lex_state = 0, .external_lex_state = 38}, [1135] = {.lex_state = 0, .external_lex_state = 41}, - [1136] = {.lex_state = 5}, - [1137] = {.lex_state = 0, .external_lex_state = 40}, - [1138] = {.lex_state = 12}, - [1139] = {.lex_state = 13}, - [1140] = {.lex_state = 0, .external_lex_state = 53}, - [1141] = {.lex_state = 0, .external_lex_state = 52}, - [1142] = {.lex_state = 0, .external_lex_state = 51}, - [1143] = {.lex_state = 0, .external_lex_state = 50}, - [1144] = {.lex_state = 0, .external_lex_state = 49}, - [1145] = {.lex_state = 0, .external_lex_state = 48}, - [1146] = {.lex_state = 0, .external_lex_state = 47}, - [1147] = {.lex_state = 0, .external_lex_state = 53}, - [1148] = {.lex_state = 0, .external_lex_state = 52}, - [1149] = {.lex_state = 0, .external_lex_state = 51}, - [1150] = {.lex_state = 0, .external_lex_state = 50}, - [1151] = {.lex_state = 0, .external_lex_state = 49}, - [1152] = {.lex_state = 0, .external_lex_state = 48}, - [1153] = {.lex_state = 0, .external_lex_state = 47}, - [1154] = {.lex_state = 0, .external_lex_state = 53}, - [1155] = {.lex_state = 0, .external_lex_state = 52}, - [1156] = {.lex_state = 0, .external_lex_state = 51}, - [1157] = {.lex_state = 0, .external_lex_state = 50}, - [1158] = {.lex_state = 0, .external_lex_state = 49}, - [1159] = {.lex_state = 0, .external_lex_state = 48}, - [1160] = {.lex_state = 0, .external_lex_state = 47}, - [1161] = {.lex_state = 0, .external_lex_state = 53}, - [1162] = {.lex_state = 0, .external_lex_state = 52}, - [1163] = {.lex_state = 0, .external_lex_state = 51}, - [1164] = {.lex_state = 0, .external_lex_state = 50}, - [1165] = {.lex_state = 0, .external_lex_state = 49}, - [1166] = {.lex_state = 0, .external_lex_state = 48}, - [1167] = {.lex_state = 0, .external_lex_state = 47}, - [1168] = {.lex_state = 0, .external_lex_state = 53}, - [1169] = {.lex_state = 0, .external_lex_state = 52}, - [1170] = {.lex_state = 0, .external_lex_state = 51}, - [1171] = {.lex_state = 0, .external_lex_state = 50}, - [1172] = {.lex_state = 0, .external_lex_state = 49}, - [1173] = {.lex_state = 0, .external_lex_state = 48}, - [1174] = {.lex_state = 0, .external_lex_state = 47}, - [1175] = {.lex_state = 0, .external_lex_state = 53}, - [1176] = {.lex_state = 0, .external_lex_state = 52}, - [1177] = {.lex_state = 0, .external_lex_state = 51}, - [1178] = {.lex_state = 0, .external_lex_state = 50}, - [1179] = {.lex_state = 0, .external_lex_state = 49}, - [1180] = {.lex_state = 0, .external_lex_state = 48}, - [1181] = {.lex_state = 0, .external_lex_state = 47}, - [1182] = {.lex_state = 0, .external_lex_state = 53}, - [1183] = {.lex_state = 0, .external_lex_state = 52}, - [1184] = {.lex_state = 0, .external_lex_state = 51}, - [1185] = {.lex_state = 0, .external_lex_state = 50}, - [1186] = {.lex_state = 0, .external_lex_state = 49}, - [1187] = {.lex_state = 0, .external_lex_state = 48}, - [1188] = {.lex_state = 0, .external_lex_state = 47}, - [1189] = {.lex_state = 0, .external_lex_state = 53}, - [1190] = {.lex_state = 0, .external_lex_state = 52}, - [1191] = {.lex_state = 0, .external_lex_state = 51}, - [1192] = {.lex_state = 0, .external_lex_state = 50}, - [1193] = {.lex_state = 0, .external_lex_state = 49}, - [1194] = {.lex_state = 0, .external_lex_state = 48}, - [1195] = {.lex_state = 0, .external_lex_state = 47}, + [1136] = {.lex_state = 14}, + [1137] = {.lex_state = 15}, + [1138] = {.lex_state = 0, .external_lex_state = 34}, + [1139] = {.lex_state = 0, .external_lex_state = 44}, + [1140] = {.lex_state = 0, .external_lex_state = 34}, + [1141] = {.lex_state = 0, .external_lex_state = 42}, + [1142] = {.lex_state = 0}, + [1143] = {.lex_state = 0, .external_lex_state = 39}, + [1144] = {.lex_state = 0, .external_lex_state = 35}, + [1145] = {.lex_state = 0, .external_lex_state = 43}, + [1146] = {.lex_state = 0, .external_lex_state = 36}, + [1147] = {.lex_state = 0, .external_lex_state = 34}, + [1148] = {.lex_state = 5}, + [1149] = {.lex_state = 0, .external_lex_state = 40}, + [1150] = {.lex_state = 0, .external_lex_state = 40}, + [1151] = {.lex_state = 14}, + [1152] = {.lex_state = 15}, + [1153] = {.lex_state = 0, .external_lex_state = 56}, + [1154] = {.lex_state = 0, .external_lex_state = 55}, + [1155] = {.lex_state = 0, .external_lex_state = 54}, + [1156] = {.lex_state = 0, .external_lex_state = 53}, + [1157] = {.lex_state = 0, .external_lex_state = 52}, + [1158] = {.lex_state = 0, .external_lex_state = 51}, + [1159] = {.lex_state = 0, .external_lex_state = 50}, + [1160] = {.lex_state = 0, .external_lex_state = 49}, + [1161] = {.lex_state = 0, .external_lex_state = 56}, + [1162] = {.lex_state = 0, .external_lex_state = 55}, + [1163] = {.lex_state = 0, .external_lex_state = 54}, + [1164] = {.lex_state = 0, .external_lex_state = 53}, + [1165] = {.lex_state = 0, .external_lex_state = 52}, + [1166] = {.lex_state = 0, .external_lex_state = 51}, + [1167] = {.lex_state = 0, .external_lex_state = 50}, + [1168] = {.lex_state = 0, .external_lex_state = 49}, + [1169] = {.lex_state = 0, .external_lex_state = 56}, + [1170] = {.lex_state = 0, .external_lex_state = 55}, + [1171] = {.lex_state = 0, .external_lex_state = 54}, + [1172] = {.lex_state = 0, .external_lex_state = 53}, + [1173] = {.lex_state = 0, .external_lex_state = 52}, + [1174] = {.lex_state = 0, .external_lex_state = 51}, + [1175] = {.lex_state = 0, .external_lex_state = 50}, + [1176] = {.lex_state = 0, .external_lex_state = 49}, + [1177] = {.lex_state = 0, .external_lex_state = 56}, + [1178] = {.lex_state = 0, .external_lex_state = 55}, + [1179] = {.lex_state = 0, .external_lex_state = 54}, + [1180] = {.lex_state = 0, .external_lex_state = 53}, + [1181] = {.lex_state = 0, .external_lex_state = 52}, + [1182] = {.lex_state = 0, .external_lex_state = 51}, + [1183] = {.lex_state = 0, .external_lex_state = 50}, + [1184] = {.lex_state = 0, .external_lex_state = 49}, + [1185] = {.lex_state = 0, .external_lex_state = 56}, + [1186] = {.lex_state = 0, .external_lex_state = 55}, + [1187] = {.lex_state = 0, .external_lex_state = 54}, + [1188] = {.lex_state = 0, .external_lex_state = 53}, + [1189] = {.lex_state = 0, .external_lex_state = 52}, + [1190] = {.lex_state = 0, .external_lex_state = 51}, + [1191] = {.lex_state = 0, .external_lex_state = 50}, + [1192] = {.lex_state = 0, .external_lex_state = 49}, + [1193] = {.lex_state = 0, .external_lex_state = 56}, + [1194] = {.lex_state = 0, .external_lex_state = 55}, + [1195] = {.lex_state = 0, .external_lex_state = 54}, [1196] = {.lex_state = 0, .external_lex_state = 53}, [1197] = {.lex_state = 0, .external_lex_state = 52}, [1198] = {.lex_state = 0, .external_lex_state = 51}, [1199] = {.lex_state = 0, .external_lex_state = 50}, [1200] = {.lex_state = 0, .external_lex_state = 49}, - [1201] = {.lex_state = 0, .external_lex_state = 48}, - [1202] = {.lex_state = 0, .external_lex_state = 47}, - [1203] = {.lex_state = 0, .external_lex_state = 53}, - [1204] = {.lex_state = 0, .external_lex_state = 52}, - [1205] = {.lex_state = 0, .external_lex_state = 51}, - [1206] = {.lex_state = 0, .external_lex_state = 50}, - [1207] = {.lex_state = 0, .external_lex_state = 49}, - [1208] = {.lex_state = 0, .external_lex_state = 48}, - [1209] = {.lex_state = 0, .external_lex_state = 47}, - [1210] = {.lex_state = 0, .external_lex_state = 53}, - [1211] = {.lex_state = 0, .external_lex_state = 52}, - [1212] = {.lex_state = 0, .external_lex_state = 51}, - [1213] = {.lex_state = 0, .external_lex_state = 50}, - [1214] = {.lex_state = 0, .external_lex_state = 49}, - [1215] = {.lex_state = 0, .external_lex_state = 48}, - [1216] = {.lex_state = 0, .external_lex_state = 47}, + [1201] = {.lex_state = 0, .external_lex_state = 56}, + [1202] = {.lex_state = 0, .external_lex_state = 55}, + [1203] = {.lex_state = 0, .external_lex_state = 54}, + [1204] = {.lex_state = 0, .external_lex_state = 53}, + [1205] = {.lex_state = 0, .external_lex_state = 52}, + [1206] = {.lex_state = 0, .external_lex_state = 51}, + [1207] = {.lex_state = 0, .external_lex_state = 50}, + [1208] = {.lex_state = 0, .external_lex_state = 49}, + [1209] = {.lex_state = 0, .external_lex_state = 56}, + [1210] = {.lex_state = 0, .external_lex_state = 55}, + [1211] = {.lex_state = 0, .external_lex_state = 54}, + [1212] = {.lex_state = 0, .external_lex_state = 53}, + [1213] = {.lex_state = 0, .external_lex_state = 52}, + [1214] = {.lex_state = 0, .external_lex_state = 51}, + [1215] = {.lex_state = 0, .external_lex_state = 50}, + [1216] = {.lex_state = 0, .external_lex_state = 49}, + [1217] = {.lex_state = 0, .external_lex_state = 56}, + [1218] = {.lex_state = 0, .external_lex_state = 55}, + [1219] = {.lex_state = 0, .external_lex_state = 54}, + [1220] = {.lex_state = 0, .external_lex_state = 53}, + [1221] = {.lex_state = 0, .external_lex_state = 52}, + [1222] = {.lex_state = 0, .external_lex_state = 51}, + [1223] = {.lex_state = 0, .external_lex_state = 50}, + [1224] = {.lex_state = 0, .external_lex_state = 49}, + [1225] = {.lex_state = 0, .external_lex_state = 56}, + [1226] = {.lex_state = 0, .external_lex_state = 55}, + [1227] = {.lex_state = 0, .external_lex_state = 54}, + [1228] = {.lex_state = 0, .external_lex_state = 53}, + [1229] = {.lex_state = 0, .external_lex_state = 52}, + [1230] = {.lex_state = 0, .external_lex_state = 51}, + [1231] = {.lex_state = 0, .external_lex_state = 50}, + [1232] = {.lex_state = 0, .external_lex_state = 49}, + [1233] = {.lex_state = 0, .external_lex_state = 56}, + [1234] = {.lex_state = 0, .external_lex_state = 55}, + [1235] = {.lex_state = 0, .external_lex_state = 54}, + [1236] = {.lex_state = 0, .external_lex_state = 53}, + [1237] = {.lex_state = 0, .external_lex_state = 52}, + [1238] = {.lex_state = 0, .external_lex_state = 51}, + [1239] = {.lex_state = 0, .external_lex_state = 50}, + [1240] = {.lex_state = 0, .external_lex_state = 49}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -5028,10 +5205,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(1), [sym_symbol] = ACTIONS(1), [anon_sym_LBRACK_CARET] = ACTIONS(1), - [anon_sym_RBRACK] = ACTIONS(1), [anon_sym_BANG_LBRACK] = ACTIONS(1), [anon_sym_LBRACE] = ACTIONS(1), [anon_sym_LBRACK] = ACTIONS(1), + [anon_sym_RBRACK] = ACTIONS(1), [anon_sym_LPAREN] = ACTIONS(1), [anon_sym_RPAREN] = ACTIONS(1), [anon_sym_RBRACE] = ACTIONS(1), @@ -5074,56 +5251,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__image_description_end] = ACTIONS(1), [sym__inline_attribute_mark_begin] = ACTIONS(1), [sym__inline_attribute_end] = ACTIONS(1), + [sym__footnote_marker_mark_begin] = ACTIONS(1), + [sym_footnote_marker_end] = ACTIONS(1), [sym__in_fallback] = ACTIONS(1), [sym__non_whitespace_check] = ACTIONS(1), [sym__error] = ACTIONS(1), }, [1] = { - [sym_inline] = STATE(1119), - [sym__inline] = STATE(1118), - [sym__element] = STATE(37), - [sym_emphasis] = STATE(143), - [sym_emphasis_begin] = STATE(1117), - [sym_strong] = STATE(143), - [sym_strong_begin] = STATE(1116), - [sym_superscript] = STATE(143), - [sym_superscript_begin] = STATE(1115), - [sym_subscript] = STATE(143), - [sym_subscript_begin] = STATE(1107), - [sym_highlighted] = STATE(143), - [sym_highlighted_begin] = STATE(1106), - [sym_insert] = STATE(143), - [sym_insert_begin] = STATE(1105), - [sym_delete] = STATE(143), - [sym_delete_begin] = STATE(1104), - [sym_hard_line_break] = STATE(143), - [sym__smart_punctuation] = STATE(143), - [sym_autolink] = STATE(143), - [sym_footnote_reference] = STATE(143), - [sym__image] = STATE(143), - [sym_full_reference_image] = STATE(143), - [sym_collapsed_reference_image] = STATE(143), - [sym_inline_image] = STATE(143), - [sym__image_description] = STATE(673), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(143), - [sym_full_reference_link] = STATE(143), - [sym_collapsed_reference_link] = STATE(143), - [sym_inline_link] = STATE(143), - [sym_link_text] = STATE(669), - [sym_span] = STATE(37), - [sym__bracketed_text] = STATE(661), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(143), - [sym_raw_inline] = STATE(143), - [sym_math] = STATE(143), - [sym_verbatim] = STATE(143), - [sym__todo_highlights] = STATE(143), - [sym_todo] = STATE(143), - [sym_note] = STATE(143), - [sym__symbol_fallback] = STATE(143), + [sym_inline] = STATE(1131), + [sym__inline] = STATE(1130), + [sym__element] = STATE(38), + [sym_emphasis] = STATE(142), + [sym_emphasis_begin] = STATE(1129), + [sym_strong] = STATE(142), + [sym_strong_begin] = STATE(1128), + [sym_superscript] = STATE(142), + [sym_superscript_begin] = STATE(1127), + [sym_subscript] = STATE(142), + [sym_subscript_begin] = STATE(1120), + [sym_highlighted] = STATE(142), + [sym_highlighted_begin] = STATE(1118), + [sym_insert] = STATE(142), + [sym_insert_begin] = STATE(1117), + [sym_delete] = STATE(142), + [sym_delete_begin] = STATE(1116), + [sym_hard_line_break] = STATE(142), + [sym__smart_punctuation] = STATE(142), + [sym_autolink] = STATE(142), + [sym_footnote_reference] = STATE(142), + [sym_footnote_marker_begin] = STATE(1115), + [sym__image] = STATE(142), + [sym_full_reference_image] = STATE(142), + [sym_collapsed_reference_image] = STATE(142), + [sym_inline_image] = STATE(142), + [sym__image_description] = STATE(685), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(142), + [sym_full_reference_link] = STATE(142), + [sym_collapsed_reference_link] = STATE(142), + [sym_inline_link] = STATE(142), + [sym_link_text] = STATE(692), + [sym_span] = STATE(38), + [sym__bracketed_text] = STATE(668), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(142), + [sym_raw_inline] = STATE(142), + [sym_math] = STATE(142), + [sym_verbatim] = STATE(142), + [sym__todo_highlights] = STATE(142), + [sym_todo] = STATE(142), + [sym_note] = STATE(142), + [sym__symbol_fallback] = STATE(142), [aux_sym__text] = STATE(130), - [aux_sym__inline_repeat1] = STATE(37), + [aux_sym__inline_repeat1] = STATE(38), [anon_sym_LBRACE_] = ACTIONS(3), [anon_sym__] = ACTIONS(5), [anon_sym_LBRACE_STAR] = ACTIONS(7), @@ -5159,50 +5339,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(47), }, [2] = { - [sym__inline] = STATE(1057), - [sym__element] = STATE(72), - [sym_emphasis] = STATE(137), - [sym_emphasis_begin] = STATE(1196), - [sym_strong] = STATE(137), - [sym_strong_begin] = STATE(1197), - [sym_superscript] = STATE(137), - [sym_superscript_begin] = STATE(1198), - [sym_subscript] = STATE(137), - [sym_subscript_begin] = STATE(1199), - [sym_highlighted] = STATE(137), - [sym_highlighted_begin] = STATE(1200), - [sym_insert] = STATE(137), - [sym_insert_begin] = STATE(1201), - [sym_delete] = STATE(137), - [sym_delete_begin] = STATE(1202), - [sym_hard_line_break] = STATE(137), - [sym__smart_punctuation] = STATE(137), - [sym_autolink] = STATE(137), - [sym_footnote_reference] = STATE(137), - [sym__image] = STATE(137), - [sym_full_reference_image] = STATE(137), - [sym_collapsed_reference_image] = STATE(137), - [sym_inline_image] = STATE(137), - [sym__image_description] = STATE(666), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(137), - [sym_full_reference_link] = STATE(137), - [sym_collapsed_reference_link] = STATE(137), - [sym_inline_link] = STATE(137), - [sym_link_text] = STATE(665), - [sym_span] = STATE(72), - [sym__bracketed_text] = STATE(651), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(137), - [sym_raw_inline] = STATE(137), - [sym_math] = STATE(137), - [sym_verbatim] = STATE(137), - [sym__todo_highlights] = STATE(137), - [sym_todo] = STATE(137), - [sym_note] = STATE(137), - [sym__symbol_fallback] = STATE(137), + [sym__inline] = STATE(1068), + [sym__element] = STATE(70), + [sym_emphasis] = STATE(139), + [sym_emphasis_begin] = STATE(1217), + [sym_strong] = STATE(139), + [sym_strong_begin] = STATE(1218), + [sym_superscript] = STATE(139), + [sym_superscript_begin] = STATE(1219), + [sym_subscript] = STATE(139), + [sym_subscript_begin] = STATE(1220), + [sym_highlighted] = STATE(139), + [sym_highlighted_begin] = STATE(1221), + [sym_insert] = STATE(139), + [sym_insert_begin] = STATE(1222), + [sym_delete] = STATE(139), + [sym_delete_begin] = STATE(1223), + [sym_hard_line_break] = STATE(139), + [sym__smart_punctuation] = STATE(139), + [sym_autolink] = STATE(139), + [sym_footnote_reference] = STATE(139), + [sym_footnote_marker_begin] = STATE(1224), + [sym__image] = STATE(139), + [sym_full_reference_image] = STATE(139), + [sym_collapsed_reference_image] = STATE(139), + [sym_inline_image] = STATE(139), + [sym__image_description] = STATE(678), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(139), + [sym_full_reference_link] = STATE(139), + [sym_collapsed_reference_link] = STATE(139), + [sym_inline_link] = STATE(139), + [sym_link_text] = STATE(677), + [sym_span] = STATE(70), + [sym__bracketed_text] = STATE(663), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(139), + [sym_raw_inline] = STATE(139), + [sym_math] = STATE(139), + [sym_verbatim] = STATE(139), + [sym__todo_highlights] = STATE(139), + [sym_todo] = STATE(139), + [sym_note] = STATE(139), + [sym__symbol_fallback] = STATE(139), [aux_sym__text] = STATE(121), - [aux_sym__inline_repeat1] = STATE(72), + [aux_sym__inline_repeat1] = STATE(70), [anon_sym_LBRACE_] = ACTIONS(49), [anon_sym__] = ACTIONS(51), [anon_sym_LBRACE_STAR] = ACTIONS(53), @@ -5239,51 +5420,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__image_description_end] = ACTIONS(95), }, [3] = { - [sym__inline] = STATE(1046), - [sym__element] = STATE(70), - [sym_emphasis] = STATE(136), - [sym_emphasis_begin] = STATE(1161), - [sym_strong] = STATE(136), - [sym_strong_begin] = STATE(1162), - [sym_superscript] = STATE(136), - [sym_superscript_begin] = STATE(1163), - [sym_subscript] = STATE(136), - [sym_subscript_begin] = STATE(1164), - [sym_highlighted] = STATE(136), - [sym_highlighted_begin] = STATE(1165), - [sym_insert] = STATE(136), - [sym_insert_begin] = STATE(1166), - [sym_delete] = STATE(136), - [sym_delete_begin] = STATE(1167), - [sym_hard_line_break] = STATE(136), - [sym__smart_punctuation] = STATE(136), - [sym_autolink] = STATE(136), - [sym_footnote_reference] = STATE(136), - [sym__image] = STATE(136), - [sym_full_reference_image] = STATE(136), - [sym_collapsed_reference_image] = STATE(136), - [sym_inline_image] = STATE(136), - [sym__image_description] = STATE(690), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(136), - [sym_full_reference_link] = STATE(136), - [sym_collapsed_reference_link] = STATE(136), - [sym_inline_link] = STATE(136), - [sym_link_text] = STATE(691), - [sym_span] = STATE(70), - [sym__bracketed_text] = STATE(653), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(136), - [sym_raw_inline] = STATE(136), - [sym_math] = STATE(136), - [sym_verbatim] = STATE(136), - [sym__todo_highlights] = STATE(136), - [sym_todo] = STATE(136), - [sym_note] = STATE(136), - [sym__symbol_fallback] = STATE(136), - [aux_sym__text] = STATE(125), - [aux_sym__inline_repeat1] = STATE(70), - [anon_sym_LBRACE_] = ACTIONS(97), + [sym__element] = STATE(37), + [sym_emphasis] = STATE(137), + [sym_emphasis_begin] = STATE(1193), + [sym_strong] = STATE(137), + [sym_strong_begin] = STATE(1194), + [sym_superscript] = STATE(137), + [sym_superscript_begin] = STATE(1195), + [sym_subscript] = STATE(137), + [sym_subscript_begin] = STATE(1196), + [sym_highlighted] = STATE(137), + [sym_highlighted_begin] = STATE(1197), + [sym_insert] = STATE(137), + [sym_insert_begin] = STATE(1198), + [sym_delete] = STATE(137), + [sym_delete_begin] = STATE(1199), + [sym_hard_line_break] = STATE(137), + [sym__smart_punctuation] = STATE(137), + [sym_autolink] = STATE(137), + [sym_footnote_reference] = STATE(137), + [sym_footnote_marker_begin] = STATE(1200), + [sym__image] = STATE(137), + [sym_full_reference_image] = STATE(137), + [sym_collapsed_reference_image] = STATE(137), + [sym_inline_image] = STATE(137), + [sym__image_description] = STATE(694), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(137), + [sym_full_reference_link] = STATE(137), + [sym_collapsed_reference_link] = STATE(137), + [sym_inline_link] = STATE(137), + [sym_link_text] = STATE(693), + [sym_span] = STATE(37), + [sym__bracketed_text] = STATE(672), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(137), + [sym_raw_inline] = STATE(137), + [sym_math] = STATE(137), + [sym_verbatim] = STATE(137), + [sym__todo_highlights] = STATE(137), + [sym_todo] = STATE(137), + [sym_note] = STATE(137), + [sym__symbol_fallback] = STATE(137), + [aux_sym__text] = STATE(131), + [aux_sym__inline_repeat1] = STATE(37), + [anon_sym_LBRACE_] = ACTIONS(97), [anon_sym__] = ACTIONS(99), [anon_sym_LBRACE_STAR] = ACTIONS(101), [anon_sym_STAR] = ACTIONS(103), @@ -5316,368 +5497,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(137), [aux_sym__text_token1] = ACTIONS(139), [sym__verbatim_begin] = ACTIONS(141), + [sym_insert_end] = ACTIONS(143), }, [4] = { - [sym__inline] = STATE(908), - [sym__element] = STATE(65), - [sym_emphasis] = STATE(133), - [sym_emphasis_begin] = STATE(1189), - [sym_strong] = STATE(133), - [sym_strong_begin] = STATE(1190), - [sym_superscript] = STATE(133), - [sym_superscript_begin] = STATE(1191), - [sym_subscript] = STATE(133), - [sym_subscript_begin] = STATE(1192), - [sym_highlighted] = STATE(133), - [sym_highlighted_begin] = STATE(1193), - [sym_insert] = STATE(133), - [sym_insert_begin] = STATE(1194), - [sym_delete] = STATE(133), - [sym_delete_begin] = STATE(1195), - [sym_hard_line_break] = STATE(133), - [sym__smart_punctuation] = STATE(133), - [sym_autolink] = STATE(133), - [sym_footnote_reference] = STATE(133), - [sym__image] = STATE(133), - [sym_full_reference_image] = STATE(133), - [sym_collapsed_reference_image] = STATE(133), - [sym_inline_image] = STATE(133), - [sym__image_description] = STATE(670), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(133), - [sym_full_reference_link] = STATE(133), - [sym_collapsed_reference_link] = STATE(133), - [sym_inline_link] = STATE(133), - [sym_link_text] = STATE(663), - [sym_span] = STATE(65), - [sym__bracketed_text] = STATE(662), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(133), - [sym_raw_inline] = STATE(133), - [sym_math] = STATE(133), - [sym_verbatim] = STATE(133), - [sym__todo_highlights] = STATE(133), - [sym_todo] = STATE(133), - [sym_note] = STATE(133), - [sym__symbol_fallback] = STATE(133), - [aux_sym__text] = STATE(123), - [aux_sym__inline_repeat1] = STATE(65), - [anon_sym_LBRACE_] = ACTIONS(143), - [anon_sym__] = ACTIONS(145), - [anon_sym_LBRACE_STAR] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_LBRACE_CARET] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(151), - [anon_sym_LBRACE_TILDE] = ACTIONS(153), - [anon_sym_TILDE] = ACTIONS(153), - [anon_sym_LBRACE_EQ] = ACTIONS(155), - [anon_sym_LBRACE_PLUS] = ACTIONS(157), - [anon_sym_LBRACE_DASH] = ACTIONS(159), - [anon_sym_BSLASH] = ACTIONS(161), - [sym_quotation_marks] = ACTIONS(163), - [sym_ellipsis] = ACTIONS(163), - [sym_em_dash] = ACTIONS(163), - [sym_en_dash] = ACTIONS(165), - [sym_backslash_escape] = ACTIONS(165), - [anon_sym_LT] = ACTIONS(167), - [sym_symbol] = ACTIONS(163), - [anon_sym_LBRACK_CARET] = ACTIONS(169), - [anon_sym_BANG_LBRACK] = ACTIONS(171), - [anon_sym_LBRACK] = ACTIONS(173), - [anon_sym_DOLLAR] = ACTIONS(175), - [anon_sym_TODO] = ACTIONS(177), - [anon_sym_WIP] = ACTIONS(177), - [anon_sym_NOTE] = ACTIONS(179), - [anon_sym_INFO] = ACTIONS(179), - [anon_sym_XXX] = ACTIONS(179), - [sym_fixme] = ACTIONS(163), - [sym__whitespace1] = ACTIONS(181), - [sym__newline] = ACTIONS(183), - [aux_sym__text_token1] = ACTIONS(185), - [sym__verbatim_begin] = ACTIONS(187), - }, - [5] = { - [sym__inline] = STATE(969), - [sym__element] = STATE(21), - [sym_emphasis] = STATE(134), - [sym_emphasis_begin] = STATE(1182), - [sym_strong] = STATE(134), - [sym_strong_begin] = STATE(1183), - [sym_superscript] = STATE(134), - [sym_superscript_begin] = STATE(1184), - [sym_subscript] = STATE(134), - [sym_subscript_begin] = STATE(1185), - [sym_highlighted] = STATE(134), - [sym_highlighted_begin] = STATE(1186), - [sym_insert] = STATE(134), - [sym_insert_begin] = STATE(1187), - [sym_delete] = STATE(134), - [sym_delete_begin] = STATE(1188), - [sym_hard_line_break] = STATE(134), - [sym__smart_punctuation] = STATE(134), - [sym_autolink] = STATE(134), - [sym_footnote_reference] = STATE(134), - [sym__image] = STATE(134), - [sym_full_reference_image] = STATE(134), - [sym_collapsed_reference_image] = STATE(134), - [sym_inline_image] = STATE(134), - [sym__image_description] = STATE(677), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(134), - [sym_full_reference_link] = STATE(134), - [sym_collapsed_reference_link] = STATE(134), - [sym_inline_link] = STATE(134), - [sym_link_text] = STATE(675), - [sym_span] = STATE(21), - [sym__bracketed_text] = STATE(660), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(134), - [sym_raw_inline] = STATE(134), - [sym_math] = STATE(134), - [sym_verbatim] = STATE(134), - [sym__todo_highlights] = STATE(134), - [sym_todo] = STATE(134), - [sym_note] = STATE(134), - [sym__symbol_fallback] = STATE(134), - [aux_sym__text] = STATE(127), - [aux_sym__inline_repeat1] = STATE(21), - [anon_sym_LBRACE_] = ACTIONS(189), - [anon_sym__] = ACTIONS(191), - [anon_sym_LBRACE_STAR] = ACTIONS(193), - [anon_sym_STAR] = ACTIONS(195), - [anon_sym_LBRACE_CARET] = ACTIONS(197), - [anon_sym_CARET] = ACTIONS(197), - [anon_sym_LBRACE_TILDE] = ACTIONS(199), - [anon_sym_TILDE] = ACTIONS(199), - [anon_sym_LBRACE_EQ] = ACTIONS(201), - [anon_sym_LBRACE_PLUS] = ACTIONS(203), - [anon_sym_LBRACE_DASH] = ACTIONS(205), - [anon_sym_BSLASH] = ACTIONS(207), - [sym_quotation_marks] = ACTIONS(209), - [sym_ellipsis] = ACTIONS(209), - [sym_em_dash] = ACTIONS(209), - [sym_en_dash] = ACTIONS(211), - [sym_backslash_escape] = ACTIONS(211), - [anon_sym_LT] = ACTIONS(213), - [sym_symbol] = ACTIONS(209), - [anon_sym_LBRACK_CARET] = ACTIONS(215), - [anon_sym_BANG_LBRACK] = ACTIONS(217), - [anon_sym_LBRACK] = ACTIONS(219), - [anon_sym_DOLLAR] = ACTIONS(221), - [anon_sym_TODO] = ACTIONS(223), - [anon_sym_WIP] = ACTIONS(223), - [anon_sym_NOTE] = ACTIONS(225), - [anon_sym_INFO] = ACTIONS(225), - [anon_sym_XXX] = ACTIONS(225), - [sym_fixme] = ACTIONS(209), - [sym__whitespace1] = ACTIONS(227), - [sym__newline] = ACTIONS(229), - [aux_sym__text_token1] = ACTIONS(231), - [sym__verbatim_begin] = ACTIONS(233), - }, - [6] = { - [sym__inline] = STATE(968), - [sym__element] = STATE(103), - [sym_emphasis] = STATE(139), - [sym_emphasis_begin] = STATE(1175), - [sym_strong] = STATE(139), - [sym_strong_begin] = STATE(1176), - [sym_superscript] = STATE(139), - [sym_superscript_begin] = STATE(1177), - [sym_subscript] = STATE(139), - [sym_subscript_begin] = STATE(1178), - [sym_highlighted] = STATE(139), - [sym_highlighted_begin] = STATE(1179), - [sym_insert] = STATE(139), - [sym_insert_begin] = STATE(1180), - [sym_delete] = STATE(139), - [sym_delete_begin] = STATE(1181), - [sym_hard_line_break] = STATE(139), - [sym__smart_punctuation] = STATE(139), - [sym_autolink] = STATE(139), - [sym_footnote_reference] = STATE(139), - [sym__image] = STATE(139), - [sym_full_reference_image] = STATE(139), - [sym_collapsed_reference_image] = STATE(139), - [sym_inline_image] = STATE(139), - [sym__image_description] = STATE(682), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(139), - [sym_full_reference_link] = STATE(139), - [sym_collapsed_reference_link] = STATE(139), - [sym_inline_link] = STATE(139), - [sym_link_text] = STATE(681), - [sym_span] = STATE(103), - [sym__bracketed_text] = STATE(656), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(139), - [sym_raw_inline] = STATE(139), - [sym_math] = STATE(139), - [sym_verbatim] = STATE(139), - [sym__todo_highlights] = STATE(139), - [sym_todo] = STATE(139), - [sym_note] = STATE(139), - [sym__symbol_fallback] = STATE(139), - [aux_sym__text] = STATE(129), - [aux_sym__inline_repeat1] = STATE(103), - [anon_sym_LBRACE_] = ACTIONS(235), - [anon_sym__] = ACTIONS(237), - [anon_sym_LBRACE_STAR] = ACTIONS(239), - [anon_sym_STAR] = ACTIONS(241), - [anon_sym_LBRACE_CARET] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(243), - [anon_sym_LBRACE_TILDE] = ACTIONS(245), - [anon_sym_TILDE] = ACTIONS(245), - [anon_sym_LBRACE_EQ] = ACTIONS(247), - [anon_sym_LBRACE_PLUS] = ACTIONS(249), - [anon_sym_LBRACE_DASH] = ACTIONS(251), - [anon_sym_BSLASH] = ACTIONS(253), - [sym_quotation_marks] = ACTIONS(255), - [sym_ellipsis] = ACTIONS(255), - [sym_em_dash] = ACTIONS(255), - [sym_en_dash] = ACTIONS(257), - [sym_backslash_escape] = ACTIONS(257), - [anon_sym_LT] = ACTIONS(259), - [sym_symbol] = ACTIONS(255), - [anon_sym_LBRACK_CARET] = ACTIONS(261), - [anon_sym_BANG_LBRACK] = ACTIONS(263), - [anon_sym_LBRACK] = ACTIONS(265), - [anon_sym_DOLLAR] = ACTIONS(267), - [anon_sym_TODO] = ACTIONS(269), - [anon_sym_WIP] = ACTIONS(269), - [anon_sym_NOTE] = ACTIONS(271), - [anon_sym_INFO] = ACTIONS(271), - [anon_sym_XXX] = ACTIONS(271), - [sym_fixme] = ACTIONS(255), - [sym__whitespace1] = ACTIONS(273), - [sym__newline] = ACTIONS(275), - [aux_sym__text_token1] = ACTIONS(277), - [sym__verbatim_begin] = ACTIONS(279), - }, - [7] = { - [sym__inline] = STATE(967), - [sym__element] = STATE(13), - [sym_emphasis] = STATE(141), - [sym_emphasis_begin] = STATE(1168), - [sym_strong] = STATE(141), - [sym_strong_begin] = STATE(1169), - [sym_superscript] = STATE(141), - [sym_superscript_begin] = STATE(1170), - [sym_subscript] = STATE(141), - [sym_subscript_begin] = STATE(1171), - [sym_highlighted] = STATE(141), - [sym_highlighted_begin] = STATE(1172), - [sym_insert] = STATE(141), - [sym_insert_begin] = STATE(1173), - [sym_delete] = STATE(141), - [sym_delete_begin] = STATE(1174), - [sym_hard_line_break] = STATE(141), - [sym__smart_punctuation] = STATE(141), - [sym_autolink] = STATE(141), - [sym_footnote_reference] = STATE(141), - [sym__image] = STATE(141), - [sym_full_reference_image] = STATE(141), - [sym_collapsed_reference_image] = STATE(141), - [sym_inline_image] = STATE(141), - [sym__image_description] = STATE(674), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(141), - [sym_full_reference_link] = STATE(141), - [sym_collapsed_reference_link] = STATE(141), - [sym_inline_link] = STATE(141), - [sym_link_text] = STATE(672), - [sym_span] = STATE(13), - [sym__bracketed_text] = STATE(655), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(141), - [sym_raw_inline] = STATE(141), - [sym_math] = STATE(141), - [sym_verbatim] = STATE(141), - [sym__todo_highlights] = STATE(141), - [sym_todo] = STATE(141), - [sym_note] = STATE(141), - [sym__symbol_fallback] = STATE(141), - [aux_sym__text] = STATE(128), - [aux_sym__inline_repeat1] = STATE(13), - [anon_sym_LBRACE_] = ACTIONS(281), - [anon_sym__] = ACTIONS(283), - [anon_sym_LBRACE_STAR] = ACTIONS(285), - [anon_sym_STAR] = ACTIONS(287), - [anon_sym_LBRACE_CARET] = ACTIONS(289), - [anon_sym_CARET] = ACTIONS(289), - [anon_sym_LBRACE_TILDE] = ACTIONS(291), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_LBRACE_EQ] = ACTIONS(293), - [anon_sym_LBRACE_PLUS] = ACTIONS(295), - [anon_sym_LBRACE_DASH] = ACTIONS(297), - [anon_sym_BSLASH] = ACTIONS(299), - [sym_quotation_marks] = ACTIONS(301), - [sym_ellipsis] = ACTIONS(301), - [sym_em_dash] = ACTIONS(301), - [sym_en_dash] = ACTIONS(303), - [sym_backslash_escape] = ACTIONS(303), - [anon_sym_LT] = ACTIONS(305), - [sym_symbol] = ACTIONS(301), - [anon_sym_LBRACK_CARET] = ACTIONS(307), - [anon_sym_BANG_LBRACK] = ACTIONS(309), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_DOLLAR] = ACTIONS(313), - [anon_sym_TODO] = ACTIONS(315), - [anon_sym_WIP] = ACTIONS(315), - [anon_sym_NOTE] = ACTIONS(317), - [anon_sym_INFO] = ACTIONS(317), - [anon_sym_XXX] = ACTIONS(317), - [sym_fixme] = ACTIONS(301), - [sym__whitespace1] = ACTIONS(319), - [sym__newline] = ACTIONS(321), - [aux_sym__text_token1] = ACTIONS(323), - [sym__verbatim_begin] = ACTIONS(325), - }, - [8] = { - [sym__inline] = STATE(966), - [sym__element] = STATE(70), - [sym_emphasis] = STATE(136), - [sym_emphasis_begin] = STATE(1161), - [sym_strong] = STATE(136), - [sym_strong_begin] = STATE(1162), - [sym_superscript] = STATE(136), - [sym_superscript_begin] = STATE(1163), - [sym_subscript] = STATE(136), - [sym_subscript_begin] = STATE(1164), - [sym_highlighted] = STATE(136), - [sym_highlighted_begin] = STATE(1165), - [sym_insert] = STATE(136), - [sym_insert_begin] = STATE(1166), - [sym_delete] = STATE(136), - [sym_delete_begin] = STATE(1167), - [sym_hard_line_break] = STATE(136), - [sym__smart_punctuation] = STATE(136), - [sym_autolink] = STATE(136), - [sym_footnote_reference] = STATE(136), - [sym__image] = STATE(136), - [sym_full_reference_image] = STATE(136), - [sym_collapsed_reference_image] = STATE(136), - [sym_inline_image] = STATE(136), - [sym__image_description] = STATE(690), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(136), - [sym_full_reference_link] = STATE(136), - [sym_collapsed_reference_link] = STATE(136), - [sym_inline_link] = STATE(136), - [sym_link_text] = STATE(691), - [sym_span] = STATE(70), - [sym__bracketed_text] = STATE(653), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(136), - [sym_raw_inline] = STATE(136), - [sym_math] = STATE(136), - [sym_verbatim] = STATE(136), - [sym__todo_highlights] = STATE(136), - [sym_todo] = STATE(136), - [sym_note] = STATE(136), - [sym__symbol_fallback] = STATE(136), - [aux_sym__text] = STATE(125), - [aux_sym__inline_repeat1] = STATE(70), + [sym__inline] = STATE(1135), + [sym__element] = STATE(3), + [sym_emphasis] = STATE(137), + [sym_emphasis_begin] = STATE(1193), + [sym_strong] = STATE(137), + [sym_strong_begin] = STATE(1194), + [sym_superscript] = STATE(137), + [sym_superscript_begin] = STATE(1195), + [sym_subscript] = STATE(137), + [sym_subscript_begin] = STATE(1196), + [sym_highlighted] = STATE(137), + [sym_highlighted_begin] = STATE(1197), + [sym_insert] = STATE(137), + [sym_insert_begin] = STATE(1198), + [sym_delete] = STATE(137), + [sym_delete_begin] = STATE(1199), + [sym_hard_line_break] = STATE(137), + [sym__smart_punctuation] = STATE(137), + [sym_autolink] = STATE(137), + [sym_footnote_reference] = STATE(137), + [sym_footnote_marker_begin] = STATE(1200), + [sym__image] = STATE(137), + [sym_full_reference_image] = STATE(137), + [sym_collapsed_reference_image] = STATE(137), + [sym_inline_image] = STATE(137), + [sym__image_description] = STATE(694), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(137), + [sym_full_reference_link] = STATE(137), + [sym_collapsed_reference_link] = STATE(137), + [sym_inline_link] = STATE(137), + [sym_link_text] = STATE(693), + [sym_span] = STATE(3), + [sym__bracketed_text] = STATE(672), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(137), + [sym_raw_inline] = STATE(137), + [sym_math] = STATE(137), + [sym_verbatim] = STATE(137), + [sym__todo_highlights] = STATE(137), + [sym_todo] = STATE(137), + [sym_note] = STATE(137), + [sym__symbol_fallback] = STATE(137), + [aux_sym__text] = STATE(131), + [aux_sym__inline_repeat1] = STATE(3), [anon_sym_LBRACE_] = ACTIONS(97), [anon_sym__] = ACTIONS(99), [anon_sym_LBRACE_STAR] = ACTIONS(101), @@ -5708,360 +5575,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_XXX] = ACTIONS(133), [sym_fixme] = ACTIONS(117), [sym__whitespace1] = ACTIONS(135), - [sym__newline] = ACTIONS(137), + [sym__newline] = ACTIONS(145), [aux_sym__text_token1] = ACTIONS(139), [sym__verbatim_begin] = ACTIONS(141), }, - [9] = { - [sym__inline] = STATE(965), - [sym__element] = STATE(105), - [sym_emphasis] = STATE(140), - [sym_emphasis_begin] = STATE(1154), - [sym_strong] = STATE(140), - [sym_strong_begin] = STATE(1155), - [sym_superscript] = STATE(140), - [sym_superscript_begin] = STATE(1156), - [sym_subscript] = STATE(140), - [sym_subscript_begin] = STATE(1157), - [sym_highlighted] = STATE(140), - [sym_highlighted_begin] = STATE(1158), - [sym_insert] = STATE(140), - [sym_insert_begin] = STATE(1159), - [sym_delete] = STATE(140), - [sym_delete_begin] = STATE(1160), - [sym_hard_line_break] = STATE(140), - [sym__smart_punctuation] = STATE(140), - [sym_autolink] = STATE(140), - [sym_footnote_reference] = STATE(140), - [sym__image] = STATE(140), - [sym_full_reference_image] = STATE(140), - [sym_collapsed_reference_image] = STATE(140), - [sym_inline_image] = STATE(140), - [sym__image_description] = STATE(687), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(140), - [sym_full_reference_link] = STATE(140), - [sym_collapsed_reference_link] = STATE(140), - [sym_inline_link] = STATE(140), - [sym_link_text] = STATE(688), - [sym_span] = STATE(105), - [sym__bracketed_text] = STATE(654), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(140), - [sym_raw_inline] = STATE(140), - [sym_math] = STATE(140), - [sym_verbatim] = STATE(140), - [sym__todo_highlights] = STATE(140), - [sym_todo] = STATE(140), - [sym_note] = STATE(140), - [sym__symbol_fallback] = STATE(140), - [aux_sym__text] = STATE(131), - [aux_sym__inline_repeat1] = STATE(105), - [anon_sym_LBRACE_] = ACTIONS(327), - [anon_sym__] = ACTIONS(329), - [anon_sym_LBRACE_STAR] = ACTIONS(331), - [anon_sym_STAR] = ACTIONS(333), - [anon_sym_LBRACE_CARET] = ACTIONS(335), - [anon_sym_CARET] = ACTIONS(335), - [anon_sym_LBRACE_TILDE] = ACTIONS(337), - [anon_sym_TILDE] = ACTIONS(337), - [anon_sym_LBRACE_EQ] = ACTIONS(339), - [anon_sym_LBRACE_PLUS] = ACTIONS(341), - [anon_sym_LBRACE_DASH] = ACTIONS(343), - [anon_sym_BSLASH] = ACTIONS(345), - [sym_quotation_marks] = ACTIONS(347), - [sym_ellipsis] = ACTIONS(347), - [sym_em_dash] = ACTIONS(347), - [sym_en_dash] = ACTIONS(349), - [sym_backslash_escape] = ACTIONS(349), - [anon_sym_LT] = ACTIONS(351), - [sym_symbol] = ACTIONS(347), - [anon_sym_LBRACK_CARET] = ACTIONS(353), - [anon_sym_BANG_LBRACK] = ACTIONS(355), - [anon_sym_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [anon_sym_TODO] = ACTIONS(361), - [anon_sym_WIP] = ACTIONS(361), - [anon_sym_NOTE] = ACTIONS(363), - [anon_sym_INFO] = ACTIONS(363), - [anon_sym_XXX] = ACTIONS(363), - [sym_fixme] = ACTIONS(347), - [sym__whitespace1] = ACTIONS(365), - [sym__newline] = ACTIONS(367), - [aux_sym__text_token1] = ACTIONS(369), - [sym__verbatim_begin] = ACTIONS(371), - }, - [10] = { - [sym__inline_without_trailing_space] = STATE(964), - [sym__element] = STATE(562), - [sym_emphasis] = STATE(142), - [sym_emphasis_begin] = STATE(1147), - [sym_strong] = STATE(142), - [sym_strong_begin] = STATE(1148), - [sym_superscript] = STATE(142), - [sym_superscript_begin] = STATE(1149), - [sym_subscript] = STATE(142), - [sym_subscript_begin] = STATE(1150), - [sym_highlighted] = STATE(142), - [sym_highlighted_begin] = STATE(1151), - [sym_insert] = STATE(142), - [sym_insert_begin] = STATE(1152), - [sym_delete] = STATE(142), - [sym_delete_begin] = STATE(1153), - [sym_hard_line_break] = STATE(142), - [sym__smart_punctuation] = STATE(142), - [sym_autolink] = STATE(142), - [sym_footnote_reference] = STATE(142), - [sym__image] = STATE(142), - [sym_full_reference_image] = STATE(142), - [sym_collapsed_reference_image] = STATE(142), - [sym_inline_image] = STATE(142), - [sym__image_description] = STATE(685), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(142), - [sym_full_reference_link] = STATE(142), - [sym_collapsed_reference_link] = STATE(142), - [sym_inline_link] = STATE(142), - [sym_link_text] = STATE(683), - [sym_span] = STATE(562), - [sym__bracketed_text] = STATE(657), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(142), - [sym_raw_inline] = STATE(142), - [sym_math] = STATE(142), - [sym_verbatim] = STATE(142), - [sym__todo_highlights] = STATE(142), - [sym_todo] = STATE(142), - [sym_note] = STATE(142), - [sym__symbol_fallback] = STATE(142), - [aux_sym__text] = STATE(126), - [aux_sym__inline_repeat1] = STATE(120), - [anon_sym_LBRACE_] = ACTIONS(373), - [anon_sym__] = ACTIONS(375), - [anon_sym_LBRACE_STAR] = ACTIONS(377), - [anon_sym_STAR] = ACTIONS(379), - [anon_sym_LBRACE_CARET] = ACTIONS(381), - [anon_sym_CARET] = ACTIONS(381), - [anon_sym_LBRACE_TILDE] = ACTIONS(383), - [anon_sym_TILDE] = ACTIONS(383), - [anon_sym_LBRACE_EQ] = ACTIONS(385), - [anon_sym_LBRACE_PLUS] = ACTIONS(387), - [anon_sym_LBRACE_DASH] = ACTIONS(389), - [anon_sym_BSLASH] = ACTIONS(391), - [sym_quotation_marks] = ACTIONS(393), - [sym_ellipsis] = ACTIONS(393), - [sym_em_dash] = ACTIONS(393), - [sym_en_dash] = ACTIONS(395), - [sym_backslash_escape] = ACTIONS(395), - [anon_sym_LT] = ACTIONS(397), - [sym_symbol] = ACTIONS(393), - [anon_sym_LBRACK_CARET] = ACTIONS(399), - [anon_sym_BANG_LBRACK] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_DOLLAR] = ACTIONS(405), - [anon_sym_TODO] = ACTIONS(407), - [anon_sym_WIP] = ACTIONS(407), - [anon_sym_NOTE] = ACTIONS(409), - [anon_sym_INFO] = ACTIONS(409), - [anon_sym_XXX] = ACTIONS(409), - [sym_fixme] = ACTIONS(393), - [sym__whitespace1] = ACTIONS(411), - [sym__newline] = ACTIONS(413), - [aux_sym__text_token1] = ACTIONS(415), - [sym__verbatim_begin] = ACTIONS(417), - }, - [11] = { - [sym__inline_without_trailing_space] = STATE(963), - [sym__element] = STATE(604), - [sym_emphasis] = STATE(138), - [sym_emphasis_begin] = STATE(1140), - [sym_strong] = STATE(138), - [sym_strong_begin] = STATE(1141), - [sym_superscript] = STATE(138), - [sym_superscript_begin] = STATE(1142), - [sym_subscript] = STATE(138), - [sym_subscript_begin] = STATE(1143), - [sym_highlighted] = STATE(138), - [sym_highlighted_begin] = STATE(1144), - [sym_insert] = STATE(138), - [sym_insert_begin] = STATE(1145), - [sym_delete] = STATE(138), - [sym_delete_begin] = STATE(1146), - [sym_hard_line_break] = STATE(138), - [sym__smart_punctuation] = STATE(138), - [sym_autolink] = STATE(138), - [sym_footnote_reference] = STATE(138), - [sym__image] = STATE(138), - [sym_full_reference_image] = STATE(138), - [sym_collapsed_reference_image] = STATE(138), - [sym_inline_image] = STATE(138), - [sym__image_description] = STATE(667), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(138), - [sym_full_reference_link] = STATE(138), - [sym_collapsed_reference_link] = STATE(138), - [sym_inline_link] = STATE(138), - [sym_link_text] = STATE(689), - [sym_span] = STATE(604), - [sym__bracketed_text] = STATE(658), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(138), - [sym_raw_inline] = STATE(138), - [sym_math] = STATE(138), - [sym_verbatim] = STATE(138), - [sym__todo_highlights] = STATE(138), - [sym_todo] = STATE(138), - [sym_note] = STATE(138), - [sym__symbol_fallback] = STATE(138), - [aux_sym__text] = STATE(124), - [aux_sym__inline_repeat1] = STATE(118), - [anon_sym_LBRACE_] = ACTIONS(419), - [anon_sym__] = ACTIONS(421), - [anon_sym_LBRACE_STAR] = ACTIONS(423), - [anon_sym_STAR] = ACTIONS(425), - [anon_sym_LBRACE_CARET] = ACTIONS(427), - [anon_sym_CARET] = ACTIONS(427), - [anon_sym_LBRACE_TILDE] = ACTIONS(429), - [anon_sym_TILDE] = ACTIONS(429), - [anon_sym_LBRACE_EQ] = ACTIONS(431), - [anon_sym_LBRACE_PLUS] = ACTIONS(433), - [anon_sym_LBRACE_DASH] = ACTIONS(435), - [anon_sym_BSLASH] = ACTIONS(437), - [sym_quotation_marks] = ACTIONS(439), - [sym_ellipsis] = ACTIONS(439), - [sym_em_dash] = ACTIONS(439), - [sym_en_dash] = ACTIONS(441), - [sym_backslash_escape] = ACTIONS(441), - [anon_sym_LT] = ACTIONS(443), - [sym_symbol] = ACTIONS(439), - [anon_sym_LBRACK_CARET] = ACTIONS(445), - [anon_sym_BANG_LBRACK] = ACTIONS(447), - [anon_sym_LBRACK] = ACTIONS(449), - [anon_sym_DOLLAR] = ACTIONS(451), - [anon_sym_TODO] = ACTIONS(453), - [anon_sym_WIP] = ACTIONS(453), - [anon_sym_NOTE] = ACTIONS(455), - [anon_sym_INFO] = ACTIONS(455), - [anon_sym_XXX] = ACTIONS(455), - [sym_fixme] = ACTIONS(439), - [sym__whitespace1] = ACTIONS(457), - [sym__newline] = ACTIONS(459), - [aux_sym__text_token1] = ACTIONS(461), - [sym__verbatim_begin] = ACTIONS(463), - }, - [12] = { - [sym__inline] = STATE(937), - [sym__element] = STATE(65), - [sym_emphasis] = STATE(133), - [sym_emphasis_begin] = STATE(1189), - [sym_strong] = STATE(133), - [sym_strong_begin] = STATE(1190), - [sym_superscript] = STATE(133), - [sym_superscript_begin] = STATE(1191), - [sym_subscript] = STATE(133), - [sym_subscript_begin] = STATE(1192), - [sym_highlighted] = STATE(133), - [sym_highlighted_begin] = STATE(1193), - [sym_insert] = STATE(133), - [sym_insert_begin] = STATE(1194), - [sym_delete] = STATE(133), - [sym_delete_begin] = STATE(1195), - [sym_hard_line_break] = STATE(133), - [sym__smart_punctuation] = STATE(133), - [sym_autolink] = STATE(133), - [sym_footnote_reference] = STATE(133), - [sym__image] = STATE(133), - [sym_full_reference_image] = STATE(133), - [sym_collapsed_reference_image] = STATE(133), - [sym_inline_image] = STATE(133), - [sym__image_description] = STATE(670), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(133), - [sym_full_reference_link] = STATE(133), - [sym_collapsed_reference_link] = STATE(133), - [sym_inline_link] = STATE(133), - [sym_link_text] = STATE(663), - [sym_span] = STATE(65), - [sym__bracketed_text] = STATE(662), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(133), - [sym_raw_inline] = STATE(133), - [sym_math] = STATE(133), - [sym_verbatim] = STATE(133), - [sym__todo_highlights] = STATE(133), - [sym_todo] = STATE(133), - [sym_note] = STATE(133), - [sym__symbol_fallback] = STATE(133), - [aux_sym__text] = STATE(123), - [aux_sym__inline_repeat1] = STATE(65), - [anon_sym_LBRACE_] = ACTIONS(143), - [anon_sym__] = ACTIONS(145), - [anon_sym_LBRACE_STAR] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_LBRACE_CARET] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(151), - [anon_sym_LBRACE_TILDE] = ACTIONS(153), - [anon_sym_TILDE] = ACTIONS(153), - [anon_sym_LBRACE_EQ] = ACTIONS(155), - [anon_sym_LBRACE_PLUS] = ACTIONS(157), - [anon_sym_LBRACE_DASH] = ACTIONS(159), - [anon_sym_BSLASH] = ACTIONS(161), - [sym_quotation_marks] = ACTIONS(163), - [sym_ellipsis] = ACTIONS(163), - [sym_em_dash] = ACTIONS(163), - [sym_en_dash] = ACTIONS(165), - [sym_backslash_escape] = ACTIONS(165), - [anon_sym_LT] = ACTIONS(167), - [sym_symbol] = ACTIONS(163), - [anon_sym_LBRACK_CARET] = ACTIONS(169), - [anon_sym_BANG_LBRACK] = ACTIONS(171), - [anon_sym_LBRACK] = ACTIONS(173), - [anon_sym_DOLLAR] = ACTIONS(175), - [anon_sym_TODO] = ACTIONS(177), - [anon_sym_WIP] = ACTIONS(177), - [anon_sym_NOTE] = ACTIONS(179), - [anon_sym_INFO] = ACTIONS(179), - [anon_sym_XXX] = ACTIONS(179), - [sym_fixme] = ACTIONS(163), - [sym__whitespace1] = ACTIONS(181), - [sym__newline] = ACTIONS(183), - [aux_sym__text_token1] = ACTIONS(185), - [sym__verbatim_begin] = ACTIONS(187), - }, - [13] = { - [sym__element] = STATE(108), + [5] = { + [sym__inline_without_trailing_space] = STATE(1146), + [sym__element] = STATE(538), [sym_emphasis] = STATE(141), - [sym_emphasis_begin] = STATE(1168), + [sym_emphasis_begin] = STATE(1153), [sym_strong] = STATE(141), - [sym_strong_begin] = STATE(1169), + [sym_strong_begin] = STATE(1154), [sym_superscript] = STATE(141), - [sym_superscript_begin] = STATE(1170), + [sym_superscript_begin] = STATE(1155), [sym_subscript] = STATE(141), - [sym_subscript_begin] = STATE(1171), + [sym_subscript_begin] = STATE(1156), [sym_highlighted] = STATE(141), - [sym_highlighted_begin] = STATE(1172), + [sym_highlighted_begin] = STATE(1157), [sym_insert] = STATE(141), - [sym_insert_begin] = STATE(1173), + [sym_insert_begin] = STATE(1158), [sym_delete] = STATE(141), - [sym_delete_begin] = STATE(1174), + [sym_delete_begin] = STATE(1159), [sym_hard_line_break] = STATE(141), [sym__smart_punctuation] = STATE(141), [sym_autolink] = STATE(141), [sym_footnote_reference] = STATE(141), + [sym_footnote_marker_begin] = STATE(1160), [sym__image] = STATE(141), [sym_full_reference_image] = STATE(141), [sym_collapsed_reference_image] = STATE(141), [sym_inline_image] = STATE(141), - [sym__image_description] = STATE(674), - [sym__image_description_begin] = STATE(1103), + [sym__image_description] = STATE(681), + [sym__image_description_begin] = STATE(1114), [sym__link] = STATE(141), [sym_full_reference_link] = STATE(141), [sym_collapsed_reference_link] = STATE(141), [sym_inline_link] = STATE(141), - [sym_link_text] = STATE(672), - [sym_span] = STATE(108), - [sym__bracketed_text] = STATE(655), - [sym__bracketed_text_begin] = STATE(1102), + [sym_link_text] = STATE(680), + [sym_span] = STATE(538), + [sym__bracketed_text] = STATE(664), + [sym__bracketed_text_begin] = STATE(1113), [sym__comment_with_spaces] = STATE(141), [sym_raw_inline] = STATE(141), [sym_math] = STATE(141), @@ -6071,76 +5624,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_note] = STATE(141), [sym__symbol_fallback] = STATE(141), [aux_sym__text] = STATE(128), - [aux_sym__inline_repeat1] = STATE(108), - [anon_sym_LBRACE_] = ACTIONS(281), - [anon_sym__] = ACTIONS(283), - [anon_sym_LBRACE_STAR] = ACTIONS(285), - [anon_sym_STAR] = ACTIONS(287), - [anon_sym_LBRACE_CARET] = ACTIONS(289), - [anon_sym_CARET] = ACTIONS(289), - [anon_sym_LBRACE_TILDE] = ACTIONS(291), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_LBRACE_EQ] = ACTIONS(293), - [anon_sym_LBRACE_PLUS] = ACTIONS(295), - [anon_sym_LBRACE_DASH] = ACTIONS(297), - [anon_sym_BSLASH] = ACTIONS(299), - [sym_quotation_marks] = ACTIONS(301), - [sym_ellipsis] = ACTIONS(301), - [sym_em_dash] = ACTIONS(301), - [sym_en_dash] = ACTIONS(303), - [sym_backslash_escape] = ACTIONS(303), - [anon_sym_LT] = ACTIONS(305), - [sym_symbol] = ACTIONS(301), - [anon_sym_LBRACK_CARET] = ACTIONS(307), - [anon_sym_BANG_LBRACK] = ACTIONS(309), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_DOLLAR] = ACTIONS(313), - [anon_sym_TODO] = ACTIONS(315), - [anon_sym_WIP] = ACTIONS(315), - [anon_sym_NOTE] = ACTIONS(317), - [anon_sym_INFO] = ACTIONS(317), - [anon_sym_XXX] = ACTIONS(317), - [sym_fixme] = ACTIONS(301), - [sym__whitespace1] = ACTIONS(319), - [sym__newline] = ACTIONS(465), - [aux_sym__text_token1] = ACTIONS(323), - [sym__verbatim_begin] = ACTIONS(325), - [sym_highlighted_end] = ACTIONS(467), + [aux_sym__inline_repeat1] = STATE(119), + [anon_sym_LBRACE_] = ACTIONS(147), + [anon_sym__] = ACTIONS(149), + [anon_sym_LBRACE_STAR] = ACTIONS(151), + [anon_sym_STAR] = ACTIONS(153), + [anon_sym_LBRACE_CARET] = ACTIONS(155), + [anon_sym_CARET] = ACTIONS(155), + [anon_sym_LBRACE_TILDE] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_LBRACE_EQ] = ACTIONS(159), + [anon_sym_LBRACE_PLUS] = ACTIONS(161), + [anon_sym_LBRACE_DASH] = ACTIONS(163), + [anon_sym_BSLASH] = ACTIONS(165), + [sym_quotation_marks] = ACTIONS(167), + [sym_ellipsis] = ACTIONS(167), + [sym_em_dash] = ACTIONS(167), + [sym_en_dash] = ACTIONS(169), + [sym_backslash_escape] = ACTIONS(169), + [anon_sym_LT] = ACTIONS(171), + [sym_symbol] = ACTIONS(167), + [anon_sym_LBRACK_CARET] = ACTIONS(173), + [anon_sym_BANG_LBRACK] = ACTIONS(175), + [anon_sym_LBRACK] = ACTIONS(177), + [anon_sym_DOLLAR] = ACTIONS(179), + [anon_sym_TODO] = ACTIONS(181), + [anon_sym_WIP] = ACTIONS(181), + [anon_sym_NOTE] = ACTIONS(183), + [anon_sym_INFO] = ACTIONS(183), + [anon_sym_XXX] = ACTIONS(183), + [sym_fixme] = ACTIONS(167), + [sym__whitespace1] = ACTIONS(185), + [sym__newline] = ACTIONS(187), + [aux_sym__text_token1] = ACTIONS(189), + [sym__verbatim_begin] = ACTIONS(191), }, - [14] = { - [sym__element] = STATE(14), + [6] = { + [sym__inline] = STATE(980), + [sym__element] = STATE(3), + [sym_emphasis] = STATE(137), + [sym_emphasis_begin] = STATE(1193), + [sym_strong] = STATE(137), + [sym_strong_begin] = STATE(1194), + [sym_superscript] = STATE(137), + [sym_superscript_begin] = STATE(1195), + [sym_subscript] = STATE(137), + [sym_subscript_begin] = STATE(1196), + [sym_highlighted] = STATE(137), + [sym_highlighted_begin] = STATE(1197), + [sym_insert] = STATE(137), + [sym_insert_begin] = STATE(1198), + [sym_delete] = STATE(137), + [sym_delete_begin] = STATE(1199), + [sym_hard_line_break] = STATE(137), + [sym__smart_punctuation] = STATE(137), + [sym_autolink] = STATE(137), + [sym_footnote_reference] = STATE(137), + [sym_footnote_marker_begin] = STATE(1200), + [sym__image] = STATE(137), + [sym_full_reference_image] = STATE(137), + [sym_collapsed_reference_image] = STATE(137), + [sym_inline_image] = STATE(137), + [sym__image_description] = STATE(694), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(137), + [sym_full_reference_link] = STATE(137), + [sym_collapsed_reference_link] = STATE(137), + [sym_inline_link] = STATE(137), + [sym_link_text] = STATE(693), + [sym_span] = STATE(3), + [sym__bracketed_text] = STATE(672), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(137), + [sym_raw_inline] = STATE(137), + [sym_math] = STATE(137), + [sym_verbatim] = STATE(137), + [sym__todo_highlights] = STATE(137), + [sym_todo] = STATE(137), + [sym_note] = STATE(137), + [sym__symbol_fallback] = STATE(137), + [aux_sym__text] = STATE(131), + [aux_sym__inline_repeat1] = STATE(3), + [anon_sym_LBRACE_] = ACTIONS(97), + [anon_sym__] = ACTIONS(99), + [anon_sym_LBRACE_STAR] = ACTIONS(101), + [anon_sym_STAR] = ACTIONS(103), + [anon_sym_LBRACE_CARET] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [anon_sym_LBRACE_TILDE] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(107), + [anon_sym_LBRACE_EQ] = ACTIONS(109), + [anon_sym_LBRACE_PLUS] = ACTIONS(111), + [anon_sym_LBRACE_DASH] = ACTIONS(113), + [anon_sym_BSLASH] = ACTIONS(115), + [sym_quotation_marks] = ACTIONS(117), + [sym_ellipsis] = ACTIONS(117), + [sym_em_dash] = ACTIONS(117), + [sym_en_dash] = ACTIONS(119), + [sym_backslash_escape] = ACTIONS(119), + [anon_sym_LT] = ACTIONS(121), + [sym_symbol] = ACTIONS(117), + [anon_sym_LBRACK_CARET] = ACTIONS(123), + [anon_sym_BANG_LBRACK] = ACTIONS(125), + [anon_sym_LBRACK] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_TODO] = ACTIONS(131), + [anon_sym_WIP] = ACTIONS(131), + [anon_sym_NOTE] = ACTIONS(133), + [anon_sym_INFO] = ACTIONS(133), + [anon_sym_XXX] = ACTIONS(133), + [sym_fixme] = ACTIONS(117), + [sym__whitespace1] = ACTIONS(135), + [sym__newline] = ACTIONS(145), + [aux_sym__text_token1] = ACTIONS(139), + [sym__verbatim_begin] = ACTIONS(141), + }, + [7] = { + [sym__inline] = STATE(979), + [sym__element] = STATE(107), [sym_emphasis] = STATE(140), - [sym_emphasis_begin] = STATE(1154), + [sym_emphasis_begin] = STATE(1185), [sym_strong] = STATE(140), - [sym_strong_begin] = STATE(1155), + [sym_strong_begin] = STATE(1186), [sym_superscript] = STATE(140), - [sym_superscript_begin] = STATE(1156), + [sym_superscript_begin] = STATE(1187), [sym_subscript] = STATE(140), - [sym_subscript_begin] = STATE(1157), + [sym_subscript_begin] = STATE(1188), [sym_highlighted] = STATE(140), - [sym_highlighted_begin] = STATE(1158), + [sym_highlighted_begin] = STATE(1189), [sym_insert] = STATE(140), - [sym_insert_begin] = STATE(1159), + [sym_insert_begin] = STATE(1190), [sym_delete] = STATE(140), - [sym_delete_begin] = STATE(1160), + [sym_delete_begin] = STATE(1191), [sym_hard_line_break] = STATE(140), [sym__smart_punctuation] = STATE(140), [sym_autolink] = STATE(140), [sym_footnote_reference] = STATE(140), + [sym_footnote_marker_begin] = STATE(1192), [sym__image] = STATE(140), [sym_full_reference_image] = STATE(140), [sym_collapsed_reference_image] = STATE(140), [sym_inline_image] = STATE(140), - [sym__image_description] = STATE(687), - [sym__image_description_begin] = STATE(1103), + [sym__image_description] = STATE(700), + [sym__image_description_begin] = STATE(1114), [sym__link] = STATE(140), [sym_full_reference_link] = STATE(140), [sym_collapsed_reference_link] = STATE(140), [sym_inline_link] = STATE(140), - [sym_link_text] = STATE(688), - [sym_span] = STATE(14), - [sym__bracketed_text] = STATE(654), - [sym__bracketed_text_begin] = STATE(1102), + [sym_link_text] = STATE(699), + [sym_span] = STATE(107), + [sym__bracketed_text] = STATE(666), + [sym__bracketed_text_begin] = STATE(1113), [sym__comment_with_spaces] = STATE(140), [sym_raw_inline] = STATE(140), [sym_math] = STATE(140), @@ -6149,236 +5783,318 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(140), [sym_note] = STATE(140), [sym__symbol_fallback] = STATE(140), - [aux_sym__text] = STATE(131), - [aux_sym__inline_repeat1] = STATE(14), - [anon_sym_LBRACE_] = ACTIONS(469), - [anon_sym__] = ACTIONS(472), - [anon_sym_LBRACE_STAR] = ACTIONS(475), - [anon_sym_STAR] = ACTIONS(478), - [anon_sym_LBRACE_CARET] = ACTIONS(481), - [anon_sym_CARET] = ACTIONS(481), - [anon_sym_LBRACE_TILDE] = ACTIONS(484), - [anon_sym_TILDE] = ACTIONS(484), - [anon_sym_LBRACE_EQ] = ACTIONS(487), - [anon_sym_LBRACE_PLUS] = ACTIONS(490), - [anon_sym_LBRACE_DASH] = ACTIONS(493), - [anon_sym_BSLASH] = ACTIONS(496), - [sym_quotation_marks] = ACTIONS(499), - [sym_ellipsis] = ACTIONS(499), - [sym_em_dash] = ACTIONS(499), - [sym_en_dash] = ACTIONS(502), - [sym_backslash_escape] = ACTIONS(502), - [anon_sym_LT] = ACTIONS(505), - [sym_symbol] = ACTIONS(499), - [anon_sym_LBRACK_CARET] = ACTIONS(508), - [anon_sym_BANG_LBRACK] = ACTIONS(511), - [anon_sym_LBRACK] = ACTIONS(514), - [anon_sym_DOLLAR] = ACTIONS(517), - [anon_sym_TODO] = ACTIONS(520), - [anon_sym_WIP] = ACTIONS(520), - [anon_sym_NOTE] = ACTIONS(523), - [anon_sym_INFO] = ACTIONS(523), - [anon_sym_XXX] = ACTIONS(523), - [sym_fixme] = ACTIONS(499), - [sym__whitespace1] = ACTIONS(526), - [sym__newline] = ACTIONS(529), - [aux_sym__text_token1] = ACTIONS(532), - [sym__verbatim_begin] = ACTIONS(535), - [sym_superscript_end] = ACTIONS(538), + [aux_sym__text] = STATE(125), + [aux_sym__inline_repeat1] = STATE(107), + [anon_sym_LBRACE_] = ACTIONS(193), + [anon_sym__] = ACTIONS(195), + [anon_sym_LBRACE_STAR] = ACTIONS(197), + [anon_sym_STAR] = ACTIONS(199), + [anon_sym_LBRACE_CARET] = ACTIONS(201), + [anon_sym_CARET] = ACTIONS(201), + [anon_sym_LBRACE_TILDE] = ACTIONS(203), + [anon_sym_TILDE] = ACTIONS(203), + [anon_sym_LBRACE_EQ] = ACTIONS(205), + [anon_sym_LBRACE_PLUS] = ACTIONS(207), + [anon_sym_LBRACE_DASH] = ACTIONS(209), + [anon_sym_BSLASH] = ACTIONS(211), + [sym_quotation_marks] = ACTIONS(213), + [sym_ellipsis] = ACTIONS(213), + [sym_em_dash] = ACTIONS(213), + [sym_en_dash] = ACTIONS(215), + [sym_backslash_escape] = ACTIONS(215), + [anon_sym_LT] = ACTIONS(217), + [sym_symbol] = ACTIONS(213), + [anon_sym_LBRACK_CARET] = ACTIONS(219), + [anon_sym_BANG_LBRACK] = ACTIONS(221), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_DOLLAR] = ACTIONS(225), + [anon_sym_TODO] = ACTIONS(227), + [anon_sym_WIP] = ACTIONS(227), + [anon_sym_NOTE] = ACTIONS(229), + [anon_sym_INFO] = ACTIONS(229), + [anon_sym_XXX] = ACTIONS(229), + [sym_fixme] = ACTIONS(213), + [sym__whitespace1] = ACTIONS(231), + [sym__newline] = ACTIONS(233), + [aux_sym__text_token1] = ACTIONS(235), + [sym__verbatim_begin] = ACTIONS(237), }, - [15] = { - [sym__inline] = STATE(936), - [sym__element] = STATE(21), - [sym_emphasis] = STATE(134), - [sym_emphasis_begin] = STATE(1182), - [sym_strong] = STATE(134), - [sym_strong_begin] = STATE(1183), - [sym_superscript] = STATE(134), - [sym_superscript_begin] = STATE(1184), - [sym_subscript] = STATE(134), - [sym_subscript_begin] = STATE(1185), - [sym_highlighted] = STATE(134), - [sym_highlighted_begin] = STATE(1186), - [sym_insert] = STATE(134), - [sym_insert_begin] = STATE(1187), - [sym_delete] = STATE(134), - [sym_delete_begin] = STATE(1188), - [sym_hard_line_break] = STATE(134), - [sym__smart_punctuation] = STATE(134), - [sym_autolink] = STATE(134), - [sym_footnote_reference] = STATE(134), - [sym__image] = STATE(134), - [sym_full_reference_image] = STATE(134), - [sym_collapsed_reference_image] = STATE(134), - [sym_inline_image] = STATE(134), - [sym__image_description] = STATE(677), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(134), - [sym_full_reference_link] = STATE(134), - [sym_collapsed_reference_link] = STATE(134), - [sym_inline_link] = STATE(134), - [sym_link_text] = STATE(675), - [sym_span] = STATE(21), - [sym__bracketed_text] = STATE(660), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(134), - [sym_raw_inline] = STATE(134), - [sym_math] = STATE(134), - [sym_verbatim] = STATE(134), - [sym__todo_highlights] = STATE(134), - [sym_todo] = STATE(134), - [sym_note] = STATE(134), - [sym__symbol_fallback] = STATE(134), - [aux_sym__text] = STATE(127), - [aux_sym__inline_repeat1] = STATE(21), - [anon_sym_LBRACE_] = ACTIONS(189), - [anon_sym__] = ACTIONS(191), - [anon_sym_LBRACE_STAR] = ACTIONS(193), - [anon_sym_STAR] = ACTIONS(195), - [anon_sym_LBRACE_CARET] = ACTIONS(197), - [anon_sym_CARET] = ACTIONS(197), - [anon_sym_LBRACE_TILDE] = ACTIONS(199), - [anon_sym_TILDE] = ACTIONS(199), - [anon_sym_LBRACE_EQ] = ACTIONS(201), - [anon_sym_LBRACE_PLUS] = ACTIONS(203), - [anon_sym_LBRACE_DASH] = ACTIONS(205), - [anon_sym_BSLASH] = ACTIONS(207), - [sym_quotation_marks] = ACTIONS(209), - [sym_ellipsis] = ACTIONS(209), - [sym_em_dash] = ACTIONS(209), - [sym_en_dash] = ACTIONS(211), - [sym_backslash_escape] = ACTIONS(211), - [anon_sym_LT] = ACTIONS(213), - [sym_symbol] = ACTIONS(209), - [anon_sym_LBRACK_CARET] = ACTIONS(215), - [anon_sym_BANG_LBRACK] = ACTIONS(217), - [anon_sym_LBRACK] = ACTIONS(219), - [anon_sym_DOLLAR] = ACTIONS(221), - [anon_sym_TODO] = ACTIONS(223), - [anon_sym_WIP] = ACTIONS(223), - [anon_sym_NOTE] = ACTIONS(225), - [anon_sym_INFO] = ACTIONS(225), - [anon_sym_XXX] = ACTIONS(225), - [sym_fixme] = ACTIONS(209), - [sym__whitespace1] = ACTIONS(227), - [sym__newline] = ACTIONS(229), - [aux_sym__text_token1] = ACTIONS(231), - [sym__verbatim_begin] = ACTIONS(233), + [8] = { + [sym__inline] = STATE(978), + [sym__element] = STATE(72), + [sym_emphasis] = STATE(135), + [sym_emphasis_begin] = STATE(1177), + [sym_strong] = STATE(135), + [sym_strong_begin] = STATE(1178), + [sym_superscript] = STATE(135), + [sym_superscript_begin] = STATE(1179), + [sym_subscript] = STATE(135), + [sym_subscript_begin] = STATE(1180), + [sym_highlighted] = STATE(135), + [sym_highlighted_begin] = STATE(1181), + [sym_insert] = STATE(135), + [sym_insert_begin] = STATE(1182), + [sym_delete] = STATE(135), + [sym_delete_begin] = STATE(1183), + [sym_hard_line_break] = STATE(135), + [sym__smart_punctuation] = STATE(135), + [sym_autolink] = STATE(135), + [sym_footnote_reference] = STATE(135), + [sym_footnote_marker_begin] = STATE(1184), + [sym__image] = STATE(135), + [sym_full_reference_image] = STATE(135), + [sym_collapsed_reference_image] = STATE(135), + [sym_inline_image] = STATE(135), + [sym__image_description] = STATE(687), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(135), + [sym_full_reference_link] = STATE(135), + [sym_collapsed_reference_link] = STATE(135), + [sym_inline_link] = STATE(135), + [sym_link_text] = STATE(684), + [sym_span] = STATE(72), + [sym__bracketed_text] = STATE(670), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(135), + [sym_raw_inline] = STATE(135), + [sym_math] = STATE(135), + [sym_verbatim] = STATE(135), + [sym__todo_highlights] = STATE(135), + [sym_todo] = STATE(135), + [sym_note] = STATE(135), + [sym__symbol_fallback] = STATE(135), + [aux_sym__text] = STATE(124), + [aux_sym__inline_repeat1] = STATE(72), + [anon_sym_LBRACE_] = ACTIONS(239), + [anon_sym__] = ACTIONS(241), + [anon_sym_LBRACE_STAR] = ACTIONS(243), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_LBRACE_CARET] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_LBRACE_TILDE] = ACTIONS(249), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_LBRACE_EQ] = ACTIONS(251), + [anon_sym_LBRACE_PLUS] = ACTIONS(253), + [anon_sym_LBRACE_DASH] = ACTIONS(255), + [anon_sym_BSLASH] = ACTIONS(257), + [sym_quotation_marks] = ACTIONS(259), + [sym_ellipsis] = ACTIONS(259), + [sym_em_dash] = ACTIONS(259), + [sym_en_dash] = ACTIONS(261), + [sym_backslash_escape] = ACTIONS(261), + [anon_sym_LT] = ACTIONS(263), + [sym_symbol] = ACTIONS(259), + [anon_sym_LBRACK_CARET] = ACTIONS(265), + [anon_sym_BANG_LBRACK] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_TODO] = ACTIONS(273), + [anon_sym_WIP] = ACTIONS(273), + [anon_sym_NOTE] = ACTIONS(275), + [anon_sym_INFO] = ACTIONS(275), + [anon_sym_XXX] = ACTIONS(275), + [sym_fixme] = ACTIONS(259), + [sym__whitespace1] = ACTIONS(277), + [sym__newline] = ACTIONS(279), + [aux_sym__text_token1] = ACTIONS(281), + [sym__verbatim_begin] = ACTIONS(283), }, - [16] = { - [sym__inline] = STATE(935), - [sym__element] = STATE(103), - [sym_emphasis] = STATE(139), - [sym_emphasis_begin] = STATE(1175), - [sym_strong] = STATE(139), - [sym_strong_begin] = STATE(1176), - [sym_superscript] = STATE(139), - [sym_superscript_begin] = STATE(1177), - [sym_subscript] = STATE(139), - [sym_subscript_begin] = STATE(1178), - [sym_highlighted] = STATE(139), - [sym_highlighted_begin] = STATE(1179), - [sym_insert] = STATE(139), - [sym_insert_begin] = STATE(1180), - [sym_delete] = STATE(139), - [sym_delete_begin] = STATE(1181), - [sym_hard_line_break] = STATE(139), - [sym__smart_punctuation] = STATE(139), - [sym_autolink] = STATE(139), - [sym_footnote_reference] = STATE(139), - [sym__image] = STATE(139), - [sym_full_reference_image] = STATE(139), - [sym_collapsed_reference_image] = STATE(139), - [sym_inline_image] = STATE(139), - [sym__image_description] = STATE(682), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(139), - [sym_full_reference_link] = STATE(139), - [sym_collapsed_reference_link] = STATE(139), - [sym_inline_link] = STATE(139), - [sym_link_text] = STATE(681), - [sym_span] = STATE(103), - [sym__bracketed_text] = STATE(656), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(139), - [sym_raw_inline] = STATE(139), - [sym_math] = STATE(139), - [sym_verbatim] = STATE(139), - [sym__todo_highlights] = STATE(139), - [sym_todo] = STATE(139), - [sym_note] = STATE(139), - [sym__symbol_fallback] = STATE(139), - [aux_sym__text] = STATE(129), - [aux_sym__inline_repeat1] = STATE(103), - [anon_sym_LBRACE_] = ACTIONS(235), - [anon_sym__] = ACTIONS(237), - [anon_sym_LBRACE_STAR] = ACTIONS(239), - [anon_sym_STAR] = ACTIONS(241), - [anon_sym_LBRACE_CARET] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(243), - [anon_sym_LBRACE_TILDE] = ACTIONS(245), - [anon_sym_TILDE] = ACTIONS(245), - [anon_sym_LBRACE_EQ] = ACTIONS(247), - [anon_sym_LBRACE_PLUS] = ACTIONS(249), - [anon_sym_LBRACE_DASH] = ACTIONS(251), - [anon_sym_BSLASH] = ACTIONS(253), - [sym_quotation_marks] = ACTIONS(255), - [sym_ellipsis] = ACTIONS(255), - [sym_em_dash] = ACTIONS(255), - [sym_en_dash] = ACTIONS(257), - [sym_backslash_escape] = ACTIONS(257), - [anon_sym_LT] = ACTIONS(259), - [sym_symbol] = ACTIONS(255), - [anon_sym_LBRACK_CARET] = ACTIONS(261), - [anon_sym_BANG_LBRACK] = ACTIONS(263), - [anon_sym_LBRACK] = ACTIONS(265), - [anon_sym_DOLLAR] = ACTIONS(267), - [anon_sym_TODO] = ACTIONS(269), - [anon_sym_WIP] = ACTIONS(269), - [anon_sym_NOTE] = ACTIONS(271), - [anon_sym_INFO] = ACTIONS(271), - [anon_sym_XXX] = ACTIONS(271), - [sym_fixme] = ACTIONS(255), - [sym__whitespace1] = ACTIONS(273), - [sym__newline] = ACTIONS(275), - [aux_sym__text_token1] = ACTIONS(277), - [sym__verbatim_begin] = ACTIONS(279), + [9] = { + [sym__inline] = STATE(977), + [sym__element] = STATE(82), + [sym_emphasis] = STATE(143), + [sym_emphasis_begin] = STATE(1169), + [sym_strong] = STATE(143), + [sym_strong_begin] = STATE(1170), + [sym_superscript] = STATE(143), + [sym_superscript_begin] = STATE(1171), + [sym_subscript] = STATE(143), + [sym_subscript_begin] = STATE(1172), + [sym_highlighted] = STATE(143), + [sym_highlighted_begin] = STATE(1173), + [sym_insert] = STATE(143), + [sym_insert_begin] = STATE(1174), + [sym_delete] = STATE(143), + [sym_delete_begin] = STATE(1175), + [sym_hard_line_break] = STATE(143), + [sym__smart_punctuation] = STATE(143), + [sym_autolink] = STATE(143), + [sym_footnote_reference] = STATE(143), + [sym_footnote_marker_begin] = STATE(1176), + [sym__image] = STATE(143), + [sym_full_reference_image] = STATE(143), + [sym_collapsed_reference_image] = STATE(143), + [sym_inline_image] = STATE(143), + [sym__image_description] = STATE(701), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(143), + [sym_full_reference_link] = STATE(143), + [sym_collapsed_reference_link] = STATE(143), + [sym_inline_link] = STATE(143), + [sym_link_text] = STATE(702), + [sym_span] = STATE(82), + [sym__bracketed_text] = STATE(667), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(143), + [sym_raw_inline] = STATE(143), + [sym_math] = STATE(143), + [sym_verbatim] = STATE(143), + [sym__todo_highlights] = STATE(143), + [sym_todo] = STATE(143), + [sym_note] = STATE(143), + [sym__symbol_fallback] = STATE(143), + [aux_sym__text] = STATE(126), + [aux_sym__inline_repeat1] = STATE(82), + [anon_sym_LBRACE_] = ACTIONS(285), + [anon_sym__] = ACTIONS(287), + [anon_sym_LBRACE_STAR] = ACTIONS(289), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_LBRACE_CARET] = ACTIONS(293), + [anon_sym_CARET] = ACTIONS(293), + [anon_sym_LBRACE_TILDE] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_LBRACE_EQ] = ACTIONS(297), + [anon_sym_LBRACE_PLUS] = ACTIONS(299), + [anon_sym_LBRACE_DASH] = ACTIONS(301), + [anon_sym_BSLASH] = ACTIONS(303), + [sym_quotation_marks] = ACTIONS(305), + [sym_ellipsis] = ACTIONS(305), + [sym_em_dash] = ACTIONS(305), + [sym_en_dash] = ACTIONS(307), + [sym_backslash_escape] = ACTIONS(307), + [anon_sym_LT] = ACTIONS(309), + [sym_symbol] = ACTIONS(305), + [anon_sym_LBRACK_CARET] = ACTIONS(311), + [anon_sym_BANG_LBRACK] = ACTIONS(313), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_DOLLAR] = ACTIONS(317), + [anon_sym_TODO] = ACTIONS(319), + [anon_sym_WIP] = ACTIONS(319), + [anon_sym_NOTE] = ACTIONS(321), + [anon_sym_INFO] = ACTIONS(321), + [anon_sym_XXX] = ACTIONS(321), + [sym_fixme] = ACTIONS(305), + [sym__whitespace1] = ACTIONS(323), + [sym__newline] = ACTIONS(325), + [aux_sym__text_token1] = ACTIONS(327), + [sym__verbatim_begin] = ACTIONS(329), }, - [17] = { - [sym__inline] = STATE(934), - [sym__element] = STATE(13), + [10] = { + [sym__inline_without_trailing_space] = STATE(976), + [sym__element] = STATE(572), + [sym_emphasis] = STATE(138), + [sym_emphasis_begin] = STATE(1161), + [sym_strong] = STATE(138), + [sym_strong_begin] = STATE(1162), + [sym_superscript] = STATE(138), + [sym_superscript_begin] = STATE(1163), + [sym_subscript] = STATE(138), + [sym_subscript_begin] = STATE(1164), + [sym_highlighted] = STATE(138), + [sym_highlighted_begin] = STATE(1165), + [sym_insert] = STATE(138), + [sym_insert_begin] = STATE(1166), + [sym_delete] = STATE(138), + [sym_delete_begin] = STATE(1167), + [sym_hard_line_break] = STATE(138), + [sym__smart_punctuation] = STATE(138), + [sym_autolink] = STATE(138), + [sym_footnote_reference] = STATE(138), + [sym_footnote_marker_begin] = STATE(1168), + [sym__image] = STATE(138), + [sym_full_reference_image] = STATE(138), + [sym_collapsed_reference_image] = STATE(138), + [sym_inline_image] = STATE(138), + [sym__image_description] = STATE(703), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(138), + [sym_full_reference_link] = STATE(138), + [sym_collapsed_reference_link] = STATE(138), + [sym_inline_link] = STATE(138), + [sym_link_text] = STATE(697), + [sym_span] = STATE(572), + [sym__bracketed_text] = STATE(671), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(138), + [sym_raw_inline] = STATE(138), + [sym_math] = STATE(138), + [sym_verbatim] = STATE(138), + [sym__todo_highlights] = STATE(138), + [sym_todo] = STATE(138), + [sym_note] = STATE(138), + [sym__symbol_fallback] = STATE(138), + [aux_sym__text] = STATE(122), + [aux_sym__inline_repeat1] = STATE(120), + [anon_sym_LBRACE_] = ACTIONS(331), + [anon_sym__] = ACTIONS(333), + [anon_sym_LBRACE_STAR] = ACTIONS(335), + [anon_sym_STAR] = ACTIONS(337), + [anon_sym_LBRACE_CARET] = ACTIONS(339), + [anon_sym_CARET] = ACTIONS(339), + [anon_sym_LBRACE_TILDE] = ACTIONS(341), + [anon_sym_TILDE] = ACTIONS(341), + [anon_sym_LBRACE_EQ] = ACTIONS(343), + [anon_sym_LBRACE_PLUS] = ACTIONS(345), + [anon_sym_LBRACE_DASH] = ACTIONS(347), + [anon_sym_BSLASH] = ACTIONS(349), + [sym_quotation_marks] = ACTIONS(351), + [sym_ellipsis] = ACTIONS(351), + [sym_em_dash] = ACTIONS(351), + [sym_en_dash] = ACTIONS(353), + [sym_backslash_escape] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [sym_symbol] = ACTIONS(351), + [anon_sym_LBRACK_CARET] = ACTIONS(357), + [anon_sym_BANG_LBRACK] = ACTIONS(359), + [anon_sym_LBRACK] = ACTIONS(361), + [anon_sym_DOLLAR] = ACTIONS(363), + [anon_sym_TODO] = ACTIONS(365), + [anon_sym_WIP] = ACTIONS(365), + [anon_sym_NOTE] = ACTIONS(367), + [anon_sym_INFO] = ACTIONS(367), + [anon_sym_XXX] = ACTIONS(367), + [sym_fixme] = ACTIONS(351), + [sym__whitespace1] = ACTIONS(369), + [sym__newline] = ACTIONS(371), + [aux_sym__text_token1] = ACTIONS(373), + [sym__verbatim_begin] = ACTIONS(375), + }, + [11] = { + [sym__inline_without_trailing_space] = STATE(975), + [sym__element] = STATE(538), [sym_emphasis] = STATE(141), - [sym_emphasis_begin] = STATE(1168), + [sym_emphasis_begin] = STATE(1153), [sym_strong] = STATE(141), - [sym_strong_begin] = STATE(1169), + [sym_strong_begin] = STATE(1154), [sym_superscript] = STATE(141), - [sym_superscript_begin] = STATE(1170), + [sym_superscript_begin] = STATE(1155), [sym_subscript] = STATE(141), - [sym_subscript_begin] = STATE(1171), + [sym_subscript_begin] = STATE(1156), [sym_highlighted] = STATE(141), - [sym_highlighted_begin] = STATE(1172), + [sym_highlighted_begin] = STATE(1157), [sym_insert] = STATE(141), - [sym_insert_begin] = STATE(1173), + [sym_insert_begin] = STATE(1158), [sym_delete] = STATE(141), - [sym_delete_begin] = STATE(1174), + [sym_delete_begin] = STATE(1159), [sym_hard_line_break] = STATE(141), [sym__smart_punctuation] = STATE(141), [sym_autolink] = STATE(141), [sym_footnote_reference] = STATE(141), + [sym_footnote_marker_begin] = STATE(1160), [sym__image] = STATE(141), [sym_full_reference_image] = STATE(141), [sym_collapsed_reference_image] = STATE(141), [sym_inline_image] = STATE(141), - [sym__image_description] = STATE(674), - [sym__image_description_begin] = STATE(1103), + [sym__image_description] = STATE(681), + [sym__image_description_begin] = STATE(1114), [sym__link] = STATE(141), [sym_full_reference_link] = STATE(141), [sym_collapsed_reference_link] = STATE(141), [sym_inline_link] = STATE(141), - [sym_link_text] = STATE(672), - [sym_span] = STATE(13), - [sym__bracketed_text] = STATE(655), - [sym__bracketed_text_begin] = STATE(1102), + [sym_link_text] = STATE(680), + [sym_span] = STATE(538), + [sym__bracketed_text] = STATE(664), + [sym__bracketed_text_begin] = STATE(1113), [sym__comment_with_spaces] = STATE(141), [sym_raw_inline] = STATE(141), [sym_math] = STATE(141), @@ -6388,76 +6104,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_note] = STATE(141), [sym__symbol_fallback] = STATE(141), [aux_sym__text] = STATE(128), - [aux_sym__inline_repeat1] = STATE(13), - [anon_sym_LBRACE_] = ACTIONS(281), - [anon_sym__] = ACTIONS(283), - [anon_sym_LBRACE_STAR] = ACTIONS(285), - [anon_sym_STAR] = ACTIONS(287), - [anon_sym_LBRACE_CARET] = ACTIONS(289), - [anon_sym_CARET] = ACTIONS(289), - [anon_sym_LBRACE_TILDE] = ACTIONS(291), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_LBRACE_EQ] = ACTIONS(293), - [anon_sym_LBRACE_PLUS] = ACTIONS(295), - [anon_sym_LBRACE_DASH] = ACTIONS(297), - [anon_sym_BSLASH] = ACTIONS(299), - [sym_quotation_marks] = ACTIONS(301), - [sym_ellipsis] = ACTIONS(301), - [sym_em_dash] = ACTIONS(301), - [sym_en_dash] = ACTIONS(303), - [sym_backslash_escape] = ACTIONS(303), - [anon_sym_LT] = ACTIONS(305), - [sym_symbol] = ACTIONS(301), - [anon_sym_LBRACK_CARET] = ACTIONS(307), - [anon_sym_BANG_LBRACK] = ACTIONS(309), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_DOLLAR] = ACTIONS(313), - [anon_sym_TODO] = ACTIONS(315), - [anon_sym_WIP] = ACTIONS(315), - [anon_sym_NOTE] = ACTIONS(317), - [anon_sym_INFO] = ACTIONS(317), - [anon_sym_XXX] = ACTIONS(317), - [sym_fixme] = ACTIONS(301), - [sym__whitespace1] = ACTIONS(319), - [sym__newline] = ACTIONS(321), - [aux_sym__text_token1] = ACTIONS(323), - [sym__verbatim_begin] = ACTIONS(325), + [aux_sym__inline_repeat1] = STATE(119), + [anon_sym_LBRACE_] = ACTIONS(147), + [anon_sym__] = ACTIONS(149), + [anon_sym_LBRACE_STAR] = ACTIONS(151), + [anon_sym_STAR] = ACTIONS(153), + [anon_sym_LBRACE_CARET] = ACTIONS(155), + [anon_sym_CARET] = ACTIONS(155), + [anon_sym_LBRACE_TILDE] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_LBRACE_EQ] = ACTIONS(159), + [anon_sym_LBRACE_PLUS] = ACTIONS(161), + [anon_sym_LBRACE_DASH] = ACTIONS(163), + [anon_sym_BSLASH] = ACTIONS(165), + [sym_quotation_marks] = ACTIONS(167), + [sym_ellipsis] = ACTIONS(167), + [sym_em_dash] = ACTIONS(167), + [sym_en_dash] = ACTIONS(169), + [sym_backslash_escape] = ACTIONS(169), + [anon_sym_LT] = ACTIONS(171), + [sym_symbol] = ACTIONS(167), + [anon_sym_LBRACK_CARET] = ACTIONS(173), + [anon_sym_BANG_LBRACK] = ACTIONS(175), + [anon_sym_LBRACK] = ACTIONS(177), + [anon_sym_DOLLAR] = ACTIONS(179), + [anon_sym_TODO] = ACTIONS(181), + [anon_sym_WIP] = ACTIONS(181), + [anon_sym_NOTE] = ACTIONS(183), + [anon_sym_INFO] = ACTIONS(183), + [anon_sym_XXX] = ACTIONS(183), + [sym_fixme] = ACTIONS(167), + [sym__whitespace1] = ACTIONS(185), + [sym__newline] = ACTIONS(187), + [aux_sym__text_token1] = ACTIONS(189), + [sym__verbatim_begin] = ACTIONS(191), }, - [18] = { - [sym__inline_without_trailing_space] = STATE(1001), - [sym__element] = STATE(604), + [12] = { + [sym__inline] = STATE(950), + [sym__element] = STATE(47), + [sym_emphasis] = STATE(136), + [sym_emphasis_begin] = STATE(1209), + [sym_strong] = STATE(136), + [sym_strong_begin] = STATE(1210), + [sym_superscript] = STATE(136), + [sym_superscript_begin] = STATE(1211), + [sym_subscript] = STATE(136), + [sym_subscript_begin] = STATE(1212), + [sym_highlighted] = STATE(136), + [sym_highlighted_begin] = STATE(1213), + [sym_insert] = STATE(136), + [sym_insert_begin] = STATE(1214), + [sym_delete] = STATE(136), + [sym_delete_begin] = STATE(1215), + [sym_hard_line_break] = STATE(136), + [sym__smart_punctuation] = STATE(136), + [sym_autolink] = STATE(136), + [sym_footnote_reference] = STATE(136), + [sym_footnote_marker_begin] = STATE(1216), + [sym__image] = STATE(136), + [sym_full_reference_image] = STATE(136), + [sym_collapsed_reference_image] = STATE(136), + [sym_inline_image] = STATE(136), + [sym__image_description] = STATE(682), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(136), + [sym_full_reference_link] = STATE(136), + [sym_collapsed_reference_link] = STATE(136), + [sym_inline_link] = STATE(136), + [sym_link_text] = STATE(675), + [sym_span] = STATE(47), + [sym__bracketed_text] = STATE(674), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(136), + [sym_raw_inline] = STATE(136), + [sym_math] = STATE(136), + [sym_verbatim] = STATE(136), + [sym__todo_highlights] = STATE(136), + [sym_todo] = STATE(136), + [sym_note] = STATE(136), + [sym__symbol_fallback] = STATE(136), + [aux_sym__text] = STATE(127), + [aux_sym__inline_repeat1] = STATE(47), + [anon_sym_LBRACE_] = ACTIONS(377), + [anon_sym__] = ACTIONS(379), + [anon_sym_LBRACE_STAR] = ACTIONS(381), + [anon_sym_STAR] = ACTIONS(383), + [anon_sym_LBRACE_CARET] = ACTIONS(385), + [anon_sym_CARET] = ACTIONS(385), + [anon_sym_LBRACE_TILDE] = ACTIONS(387), + [anon_sym_TILDE] = ACTIONS(387), + [anon_sym_LBRACE_EQ] = ACTIONS(389), + [anon_sym_LBRACE_PLUS] = ACTIONS(391), + [anon_sym_LBRACE_DASH] = ACTIONS(393), + [anon_sym_BSLASH] = ACTIONS(395), + [sym_quotation_marks] = ACTIONS(397), + [sym_ellipsis] = ACTIONS(397), + [sym_em_dash] = ACTIONS(397), + [sym_en_dash] = ACTIONS(399), + [sym_backslash_escape] = ACTIONS(399), + [anon_sym_LT] = ACTIONS(401), + [sym_symbol] = ACTIONS(397), + [anon_sym_LBRACK_CARET] = ACTIONS(403), + [anon_sym_BANG_LBRACK] = ACTIONS(405), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_DOLLAR] = ACTIONS(409), + [anon_sym_TODO] = ACTIONS(411), + [anon_sym_WIP] = ACTIONS(411), + [anon_sym_NOTE] = ACTIONS(413), + [anon_sym_INFO] = ACTIONS(413), + [anon_sym_XXX] = ACTIONS(413), + [sym_fixme] = ACTIONS(397), + [sym__whitespace1] = ACTIONS(415), + [sym__newline] = ACTIONS(417), + [aux_sym__text_token1] = ACTIONS(419), + [sym__verbatim_begin] = ACTIONS(421), + }, + [13] = { + [sym__inline_without_trailing_space] = STATE(1145), + [sym__element] = STATE(572), [sym_emphasis] = STATE(138), - [sym_emphasis_begin] = STATE(1140), + [sym_emphasis_begin] = STATE(1161), [sym_strong] = STATE(138), - [sym_strong_begin] = STATE(1141), + [sym_strong_begin] = STATE(1162), [sym_superscript] = STATE(138), - [sym_superscript_begin] = STATE(1142), + [sym_superscript_begin] = STATE(1163), [sym_subscript] = STATE(138), - [sym_subscript_begin] = STATE(1143), + [sym_subscript_begin] = STATE(1164), [sym_highlighted] = STATE(138), - [sym_highlighted_begin] = STATE(1144), + [sym_highlighted_begin] = STATE(1165), [sym_insert] = STATE(138), - [sym_insert_begin] = STATE(1145), + [sym_insert_begin] = STATE(1166), [sym_delete] = STATE(138), - [sym_delete_begin] = STATE(1146), + [sym_delete_begin] = STATE(1167), [sym_hard_line_break] = STATE(138), [sym__smart_punctuation] = STATE(138), [sym_autolink] = STATE(138), [sym_footnote_reference] = STATE(138), + [sym_footnote_marker_begin] = STATE(1168), [sym__image] = STATE(138), [sym_full_reference_image] = STATE(138), [sym_collapsed_reference_image] = STATE(138), [sym_inline_image] = STATE(138), - [sym__image_description] = STATE(667), - [sym__image_description_begin] = STATE(1103), + [sym__image_description] = STATE(703), + [sym__image_description_begin] = STATE(1114), [sym__link] = STATE(138), [sym_full_reference_link] = STATE(138), [sym_collapsed_reference_link] = STATE(138), [sym_inline_link] = STATE(138), - [sym_link_text] = STATE(689), - [sym_span] = STATE(604), - [sym__bracketed_text] = STATE(658), - [sym__bracketed_text_begin] = STATE(1102), + [sym_link_text] = STATE(697), + [sym_span] = STATE(572), + [sym__bracketed_text] = STATE(671), + [sym__bracketed_text_begin] = STATE(1113), [sym__comment_with_spaces] = STATE(138), [sym_raw_inline] = STATE(138), [sym_math] = STATE(138), @@ -6466,324 +6263,248 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(138), [sym_note] = STATE(138), [sym__symbol_fallback] = STATE(138), - [aux_sym__text] = STATE(124), - [aux_sym__inline_repeat1] = STATE(118), - [anon_sym_LBRACE_] = ACTIONS(419), - [anon_sym__] = ACTIONS(421), - [anon_sym_LBRACE_STAR] = ACTIONS(423), - [anon_sym_STAR] = ACTIONS(425), - [anon_sym_LBRACE_CARET] = ACTIONS(427), - [anon_sym_CARET] = ACTIONS(427), - [anon_sym_LBRACE_TILDE] = ACTIONS(429), - [anon_sym_TILDE] = ACTIONS(429), - [anon_sym_LBRACE_EQ] = ACTIONS(431), - [anon_sym_LBRACE_PLUS] = ACTIONS(433), - [anon_sym_LBRACE_DASH] = ACTIONS(435), - [anon_sym_BSLASH] = ACTIONS(437), - [sym_quotation_marks] = ACTIONS(439), - [sym_ellipsis] = ACTIONS(439), - [sym_em_dash] = ACTIONS(439), - [sym_en_dash] = ACTIONS(441), - [sym_backslash_escape] = ACTIONS(441), - [anon_sym_LT] = ACTIONS(443), - [sym_symbol] = ACTIONS(439), - [anon_sym_LBRACK_CARET] = ACTIONS(445), - [anon_sym_BANG_LBRACK] = ACTIONS(447), - [anon_sym_LBRACK] = ACTIONS(449), - [anon_sym_DOLLAR] = ACTIONS(451), - [anon_sym_TODO] = ACTIONS(453), - [anon_sym_WIP] = ACTIONS(453), - [anon_sym_NOTE] = ACTIONS(455), - [anon_sym_INFO] = ACTIONS(455), - [anon_sym_XXX] = ACTIONS(455), - [sym_fixme] = ACTIONS(439), - [sym__whitespace1] = ACTIONS(457), - [sym__newline] = ACTIONS(459), - [aux_sym__text_token1] = ACTIONS(461), - [sym__verbatim_begin] = ACTIONS(463), - }, - [19] = { - [sym__inline_without_trailing_space] = STATE(1000), - [sym__element] = STATE(562), - [sym_emphasis] = STATE(142), - [sym_emphasis_begin] = STATE(1147), - [sym_strong] = STATE(142), - [sym_strong_begin] = STATE(1148), - [sym_superscript] = STATE(142), - [sym_superscript_begin] = STATE(1149), - [sym_subscript] = STATE(142), - [sym_subscript_begin] = STATE(1150), - [sym_highlighted] = STATE(142), - [sym_highlighted_begin] = STATE(1151), - [sym_insert] = STATE(142), - [sym_insert_begin] = STATE(1152), - [sym_delete] = STATE(142), - [sym_delete_begin] = STATE(1153), - [sym_hard_line_break] = STATE(142), - [sym__smart_punctuation] = STATE(142), - [sym_autolink] = STATE(142), - [sym_footnote_reference] = STATE(142), - [sym__image] = STATE(142), - [sym_full_reference_image] = STATE(142), - [sym_collapsed_reference_image] = STATE(142), - [sym_inline_image] = STATE(142), - [sym__image_description] = STATE(685), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(142), - [sym_full_reference_link] = STATE(142), - [sym_collapsed_reference_link] = STATE(142), - [sym_inline_link] = STATE(142), - [sym_link_text] = STATE(683), - [sym_span] = STATE(562), - [sym__bracketed_text] = STATE(657), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(142), - [sym_raw_inline] = STATE(142), - [sym_math] = STATE(142), - [sym_verbatim] = STATE(142), - [sym__todo_highlights] = STATE(142), - [sym_todo] = STATE(142), - [sym_note] = STATE(142), - [sym__symbol_fallback] = STATE(142), - [aux_sym__text] = STATE(126), + [aux_sym__text] = STATE(122), [aux_sym__inline_repeat1] = STATE(120), - [anon_sym_LBRACE_] = ACTIONS(373), - [anon_sym__] = ACTIONS(375), - [anon_sym_LBRACE_STAR] = ACTIONS(377), - [anon_sym_STAR] = ACTIONS(379), - [anon_sym_LBRACE_CARET] = ACTIONS(381), - [anon_sym_CARET] = ACTIONS(381), - [anon_sym_LBRACE_TILDE] = ACTIONS(383), - [anon_sym_TILDE] = ACTIONS(383), - [anon_sym_LBRACE_EQ] = ACTIONS(385), - [anon_sym_LBRACE_PLUS] = ACTIONS(387), - [anon_sym_LBRACE_DASH] = ACTIONS(389), - [anon_sym_BSLASH] = ACTIONS(391), - [sym_quotation_marks] = ACTIONS(393), - [sym_ellipsis] = ACTIONS(393), - [sym_em_dash] = ACTIONS(393), - [sym_en_dash] = ACTIONS(395), - [sym_backslash_escape] = ACTIONS(395), - [anon_sym_LT] = ACTIONS(397), - [sym_symbol] = ACTIONS(393), - [anon_sym_LBRACK_CARET] = ACTIONS(399), - [anon_sym_BANG_LBRACK] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_DOLLAR] = ACTIONS(405), - [anon_sym_TODO] = ACTIONS(407), - [anon_sym_WIP] = ACTIONS(407), - [anon_sym_NOTE] = ACTIONS(409), - [anon_sym_INFO] = ACTIONS(409), - [anon_sym_XXX] = ACTIONS(409), - [sym_fixme] = ACTIONS(393), - [sym__whitespace1] = ACTIONS(411), - [sym__newline] = ACTIONS(413), - [aux_sym__text_token1] = ACTIONS(415), - [sym__verbatim_begin] = ACTIONS(417), - }, - [20] = { - [sym__inline] = STATE(999), - [sym__element] = STATE(105), - [sym_emphasis] = STATE(140), - [sym_emphasis_begin] = STATE(1154), - [sym_strong] = STATE(140), - [sym_strong_begin] = STATE(1155), - [sym_superscript] = STATE(140), - [sym_superscript_begin] = STATE(1156), - [sym_subscript] = STATE(140), - [sym_subscript_begin] = STATE(1157), - [sym_highlighted] = STATE(140), - [sym_highlighted_begin] = STATE(1158), - [sym_insert] = STATE(140), - [sym_insert_begin] = STATE(1159), - [sym_delete] = STATE(140), - [sym_delete_begin] = STATE(1160), - [sym_hard_line_break] = STATE(140), - [sym__smart_punctuation] = STATE(140), - [sym_autolink] = STATE(140), - [sym_footnote_reference] = STATE(140), - [sym__image] = STATE(140), - [sym_full_reference_image] = STATE(140), - [sym_collapsed_reference_image] = STATE(140), - [sym_inline_image] = STATE(140), - [sym__image_description] = STATE(687), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(140), - [sym_full_reference_link] = STATE(140), - [sym_collapsed_reference_link] = STATE(140), - [sym_inline_link] = STATE(140), - [sym_link_text] = STATE(688), - [sym_span] = STATE(105), - [sym__bracketed_text] = STATE(654), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(140), - [sym_raw_inline] = STATE(140), - [sym_math] = STATE(140), - [sym_verbatim] = STATE(140), - [sym__todo_highlights] = STATE(140), - [sym_todo] = STATE(140), - [sym_note] = STATE(140), - [sym__symbol_fallback] = STATE(140), - [aux_sym__text] = STATE(131), - [aux_sym__inline_repeat1] = STATE(105), - [anon_sym_LBRACE_] = ACTIONS(327), - [anon_sym__] = ACTIONS(329), - [anon_sym_LBRACE_STAR] = ACTIONS(331), - [anon_sym_STAR] = ACTIONS(333), - [anon_sym_LBRACE_CARET] = ACTIONS(335), - [anon_sym_CARET] = ACTIONS(335), - [anon_sym_LBRACE_TILDE] = ACTIONS(337), - [anon_sym_TILDE] = ACTIONS(337), - [anon_sym_LBRACE_EQ] = ACTIONS(339), - [anon_sym_LBRACE_PLUS] = ACTIONS(341), - [anon_sym_LBRACE_DASH] = ACTIONS(343), - [anon_sym_BSLASH] = ACTIONS(345), - [sym_quotation_marks] = ACTIONS(347), - [sym_ellipsis] = ACTIONS(347), - [sym_em_dash] = ACTIONS(347), - [sym_en_dash] = ACTIONS(349), - [sym_backslash_escape] = ACTIONS(349), - [anon_sym_LT] = ACTIONS(351), - [sym_symbol] = ACTIONS(347), - [anon_sym_LBRACK_CARET] = ACTIONS(353), - [anon_sym_BANG_LBRACK] = ACTIONS(355), - [anon_sym_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [anon_sym_TODO] = ACTIONS(361), - [anon_sym_WIP] = ACTIONS(361), - [anon_sym_NOTE] = ACTIONS(363), - [anon_sym_INFO] = ACTIONS(363), - [anon_sym_XXX] = ACTIONS(363), - [sym_fixme] = ACTIONS(347), - [sym__whitespace1] = ACTIONS(365), - [sym__newline] = ACTIONS(367), - [aux_sym__text_token1] = ACTIONS(369), - [sym__verbatim_begin] = ACTIONS(371), + [anon_sym_LBRACE_] = ACTIONS(331), + [anon_sym__] = ACTIONS(333), + [anon_sym_LBRACE_STAR] = ACTIONS(335), + [anon_sym_STAR] = ACTIONS(337), + [anon_sym_LBRACE_CARET] = ACTIONS(339), + [anon_sym_CARET] = ACTIONS(339), + [anon_sym_LBRACE_TILDE] = ACTIONS(341), + [anon_sym_TILDE] = ACTIONS(341), + [anon_sym_LBRACE_EQ] = ACTIONS(343), + [anon_sym_LBRACE_PLUS] = ACTIONS(345), + [anon_sym_LBRACE_DASH] = ACTIONS(347), + [anon_sym_BSLASH] = ACTIONS(349), + [sym_quotation_marks] = ACTIONS(351), + [sym_ellipsis] = ACTIONS(351), + [sym_em_dash] = ACTIONS(351), + [sym_en_dash] = ACTIONS(353), + [sym_backslash_escape] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [sym_symbol] = ACTIONS(351), + [anon_sym_LBRACK_CARET] = ACTIONS(357), + [anon_sym_BANG_LBRACK] = ACTIONS(359), + [anon_sym_LBRACK] = ACTIONS(361), + [anon_sym_DOLLAR] = ACTIONS(363), + [anon_sym_TODO] = ACTIONS(365), + [anon_sym_WIP] = ACTIONS(365), + [anon_sym_NOTE] = ACTIONS(367), + [anon_sym_INFO] = ACTIONS(367), + [anon_sym_XXX] = ACTIONS(367), + [sym_fixme] = ACTIONS(351), + [sym__whitespace1] = ACTIONS(369), + [sym__newline] = ACTIONS(371), + [aux_sym__text_token1] = ACTIONS(373), + [sym__verbatim_begin] = ACTIONS(375), }, - [21] = { - [sym__element] = STATE(68), - [sym_emphasis] = STATE(134), - [sym_emphasis_begin] = STATE(1182), - [sym_strong] = STATE(134), - [sym_strong_begin] = STATE(1183), - [sym_superscript] = STATE(134), - [sym_superscript_begin] = STATE(1184), - [sym_subscript] = STATE(134), - [sym_subscript_begin] = STATE(1185), - [sym_highlighted] = STATE(134), - [sym_highlighted_begin] = STATE(1186), - [sym_insert] = STATE(134), - [sym_insert_begin] = STATE(1187), - [sym_delete] = STATE(134), - [sym_delete_begin] = STATE(1188), - [sym_hard_line_break] = STATE(134), - [sym__smart_punctuation] = STATE(134), - [sym_autolink] = STATE(134), - [sym_footnote_reference] = STATE(134), - [sym__image] = STATE(134), - [sym_full_reference_image] = STATE(134), - [sym_collapsed_reference_image] = STATE(134), - [sym_inline_image] = STATE(134), - [sym__image_description] = STATE(677), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(134), - [sym_full_reference_link] = STATE(134), - [sym_collapsed_reference_link] = STATE(134), - [sym_inline_link] = STATE(134), - [sym_link_text] = STATE(675), - [sym_span] = STATE(68), - [sym__bracketed_text] = STATE(660), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(134), - [sym_raw_inline] = STATE(134), - [sym_math] = STATE(134), - [sym_verbatim] = STATE(134), - [sym__todo_highlights] = STATE(134), - [sym_todo] = STATE(134), - [sym_note] = STATE(134), - [sym__symbol_fallback] = STATE(134), - [aux_sym__text] = STATE(127), - [aux_sym__inline_repeat1] = STATE(68), - [anon_sym_LBRACE_] = ACTIONS(189), - [anon_sym__] = ACTIONS(191), - [anon_sym_LBRACE_STAR] = ACTIONS(193), - [anon_sym_STAR] = ACTIONS(195), - [anon_sym_LBRACE_CARET] = ACTIONS(197), - [anon_sym_CARET] = ACTIONS(197), - [anon_sym_LBRACE_TILDE] = ACTIONS(199), - [anon_sym_TILDE] = ACTIONS(199), - [anon_sym_LBRACE_EQ] = ACTIONS(201), - [anon_sym_LBRACE_PLUS] = ACTIONS(203), - [anon_sym_LBRACE_DASH] = ACTIONS(205), - [anon_sym_BSLASH] = ACTIONS(207), - [sym_quotation_marks] = ACTIONS(209), - [sym_ellipsis] = ACTIONS(209), - [sym_em_dash] = ACTIONS(209), - [sym_en_dash] = ACTIONS(211), - [sym_backslash_escape] = ACTIONS(211), - [anon_sym_LT] = ACTIONS(213), - [sym_symbol] = ACTIONS(209), - [anon_sym_LBRACK_CARET] = ACTIONS(215), - [anon_sym_BANG_LBRACK] = ACTIONS(217), - [anon_sym_LBRACK] = ACTIONS(219), - [anon_sym_DOLLAR] = ACTIONS(221), - [anon_sym_TODO] = ACTIONS(223), - [anon_sym_WIP] = ACTIONS(223), - [anon_sym_NOTE] = ACTIONS(225), - [anon_sym_INFO] = ACTIONS(225), - [anon_sym_XXX] = ACTIONS(225), - [sym_fixme] = ACTIONS(209), - [sym__whitespace1] = ACTIONS(227), - [sym__newline] = ACTIONS(540), - [aux_sym__text_token1] = ACTIONS(231), - [sym__verbatim_begin] = ACTIONS(233), - [sym_delete_end] = ACTIONS(467), + [14] = { + [sym__element] = STATE(65), + [sym_emphasis] = STATE(133), + [sym_emphasis_begin] = STATE(1201), + [sym_strong] = STATE(133), + [sym_strong_begin] = STATE(1202), + [sym_superscript] = STATE(133), + [sym_superscript_begin] = STATE(1203), + [sym_subscript] = STATE(133), + [sym_subscript_begin] = STATE(1204), + [sym_highlighted] = STATE(133), + [sym_highlighted_begin] = STATE(1205), + [sym_insert] = STATE(133), + [sym_insert_begin] = STATE(1206), + [sym_delete] = STATE(133), + [sym_delete_begin] = STATE(1207), + [sym_hard_line_break] = STATE(133), + [sym__smart_punctuation] = STATE(133), + [sym_autolink] = STATE(133), + [sym_footnote_reference] = STATE(133), + [sym_footnote_marker_begin] = STATE(1208), + [sym__image] = STATE(133), + [sym_full_reference_image] = STATE(133), + [sym_collapsed_reference_image] = STATE(133), + [sym_inline_image] = STATE(133), + [sym__image_description] = STATE(688), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(133), + [sym_full_reference_link] = STATE(133), + [sym_collapsed_reference_link] = STATE(133), + [sym_inline_link] = STATE(133), + [sym_link_text] = STATE(686), + [sym_span] = STATE(65), + [sym__bracketed_text] = STATE(673), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(133), + [sym_raw_inline] = STATE(133), + [sym_math] = STATE(133), + [sym_verbatim] = STATE(133), + [sym__todo_highlights] = STATE(133), + [sym_todo] = STATE(133), + [sym_note] = STATE(133), + [sym__symbol_fallback] = STATE(133), + [aux_sym__text] = STATE(129), + [aux_sym__inline_repeat1] = STATE(65), + [anon_sym_LBRACE_] = ACTIONS(423), + [anon_sym__] = ACTIONS(425), + [anon_sym_LBRACE_STAR] = ACTIONS(427), + [anon_sym_STAR] = ACTIONS(429), + [anon_sym_LBRACE_CARET] = ACTIONS(431), + [anon_sym_CARET] = ACTIONS(431), + [anon_sym_LBRACE_TILDE] = ACTIONS(433), + [anon_sym_TILDE] = ACTIONS(433), + [anon_sym_LBRACE_EQ] = ACTIONS(435), + [anon_sym_LBRACE_PLUS] = ACTIONS(437), + [anon_sym_LBRACE_DASH] = ACTIONS(439), + [anon_sym_BSLASH] = ACTIONS(441), + [sym_quotation_marks] = ACTIONS(443), + [sym_ellipsis] = ACTIONS(443), + [sym_em_dash] = ACTIONS(443), + [sym_en_dash] = ACTIONS(445), + [sym_backslash_escape] = ACTIONS(445), + [anon_sym_LT] = ACTIONS(447), + [sym_symbol] = ACTIONS(443), + [anon_sym_LBRACK_CARET] = ACTIONS(449), + [anon_sym_BANG_LBRACK] = ACTIONS(451), + [anon_sym_LBRACK] = ACTIONS(453), + [anon_sym_DOLLAR] = ACTIONS(455), + [anon_sym_TODO] = ACTIONS(457), + [anon_sym_WIP] = ACTIONS(457), + [anon_sym_NOTE] = ACTIONS(459), + [anon_sym_INFO] = ACTIONS(459), + [anon_sym_XXX] = ACTIONS(459), + [sym_fixme] = ACTIONS(443), + [sym__whitespace1] = ACTIONS(461), + [sym__newline] = ACTIONS(463), + [aux_sym__text_token1] = ACTIONS(465), + [sym__verbatim_begin] = ACTIONS(467), + [sym_delete_end] = ACTIONS(143), }, - [22] = { - [sym__inline] = STATE(933), - [sym__element] = STATE(70), - [sym_emphasis] = STATE(136), - [sym_emphasis_begin] = STATE(1161), - [sym_strong] = STATE(136), - [sym_strong_begin] = STATE(1162), - [sym_superscript] = STATE(136), - [sym_superscript_begin] = STATE(1163), - [sym_subscript] = STATE(136), - [sym_subscript_begin] = STATE(1164), - [sym_highlighted] = STATE(136), - [sym_highlighted_begin] = STATE(1165), - [sym_insert] = STATE(136), - [sym_insert_begin] = STATE(1166), - [sym_delete] = STATE(136), - [sym_delete_begin] = STATE(1167), - [sym_hard_line_break] = STATE(136), - [sym__smart_punctuation] = STATE(136), - [sym_autolink] = STATE(136), - [sym_footnote_reference] = STATE(136), - [sym__image] = STATE(136), - [sym_full_reference_image] = STATE(136), - [sym_collapsed_reference_image] = STATE(136), - [sym_inline_image] = STATE(136), - [sym__image_description] = STATE(690), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(136), - [sym_full_reference_link] = STATE(136), - [sym_collapsed_reference_link] = STATE(136), - [sym_inline_link] = STATE(136), - [sym_link_text] = STATE(691), - [sym_span] = STATE(70), - [sym__bracketed_text] = STATE(653), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(136), - [sym_raw_inline] = STATE(136), - [sym_math] = STATE(136), - [sym_verbatim] = STATE(136), - [sym__todo_highlights] = STATE(136), - [sym_todo] = STATE(136), - [sym_note] = STATE(136), - [sym__symbol_fallback] = STATE(136), - [aux_sym__text] = STATE(125), - [aux_sym__inline_repeat1] = STATE(70), + [15] = { + [sym__inline] = STATE(948), + [sym__element] = STATE(14), + [sym_emphasis] = STATE(133), + [sym_emphasis_begin] = STATE(1201), + [sym_strong] = STATE(133), + [sym_strong_begin] = STATE(1202), + [sym_superscript] = STATE(133), + [sym_superscript_begin] = STATE(1203), + [sym_subscript] = STATE(133), + [sym_subscript_begin] = STATE(1204), + [sym_highlighted] = STATE(133), + [sym_highlighted_begin] = STATE(1205), + [sym_insert] = STATE(133), + [sym_insert_begin] = STATE(1206), + [sym_delete] = STATE(133), + [sym_delete_begin] = STATE(1207), + [sym_hard_line_break] = STATE(133), + [sym__smart_punctuation] = STATE(133), + [sym_autolink] = STATE(133), + [sym_footnote_reference] = STATE(133), + [sym_footnote_marker_begin] = STATE(1208), + [sym__image] = STATE(133), + [sym_full_reference_image] = STATE(133), + [sym_collapsed_reference_image] = STATE(133), + [sym_inline_image] = STATE(133), + [sym__image_description] = STATE(688), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(133), + [sym_full_reference_link] = STATE(133), + [sym_collapsed_reference_link] = STATE(133), + [sym_inline_link] = STATE(133), + [sym_link_text] = STATE(686), + [sym_span] = STATE(14), + [sym__bracketed_text] = STATE(673), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(133), + [sym_raw_inline] = STATE(133), + [sym_math] = STATE(133), + [sym_verbatim] = STATE(133), + [sym__todo_highlights] = STATE(133), + [sym_todo] = STATE(133), + [sym_note] = STATE(133), + [sym__symbol_fallback] = STATE(133), + [aux_sym__text] = STATE(129), + [aux_sym__inline_repeat1] = STATE(14), + [anon_sym_LBRACE_] = ACTIONS(423), + [anon_sym__] = ACTIONS(425), + [anon_sym_LBRACE_STAR] = ACTIONS(427), + [anon_sym_STAR] = ACTIONS(429), + [anon_sym_LBRACE_CARET] = ACTIONS(431), + [anon_sym_CARET] = ACTIONS(431), + [anon_sym_LBRACE_TILDE] = ACTIONS(433), + [anon_sym_TILDE] = ACTIONS(433), + [anon_sym_LBRACE_EQ] = ACTIONS(435), + [anon_sym_LBRACE_PLUS] = ACTIONS(437), + [anon_sym_LBRACE_DASH] = ACTIONS(439), + [anon_sym_BSLASH] = ACTIONS(441), + [sym_quotation_marks] = ACTIONS(443), + [sym_ellipsis] = ACTIONS(443), + [sym_em_dash] = ACTIONS(443), + [sym_en_dash] = ACTIONS(445), + [sym_backslash_escape] = ACTIONS(445), + [anon_sym_LT] = ACTIONS(447), + [sym_symbol] = ACTIONS(443), + [anon_sym_LBRACK_CARET] = ACTIONS(449), + [anon_sym_BANG_LBRACK] = ACTIONS(451), + [anon_sym_LBRACK] = ACTIONS(453), + [anon_sym_DOLLAR] = ACTIONS(455), + [anon_sym_TODO] = ACTIONS(457), + [anon_sym_WIP] = ACTIONS(457), + [anon_sym_NOTE] = ACTIONS(459), + [anon_sym_INFO] = ACTIONS(459), + [anon_sym_XXX] = ACTIONS(459), + [sym_fixme] = ACTIONS(443), + [sym__whitespace1] = ACTIONS(461), + [sym__newline] = ACTIONS(469), + [aux_sym__text_token1] = ACTIONS(465), + [sym__verbatim_begin] = ACTIONS(467), + }, + [16] = { + [sym__inline] = STATE(947), + [sym__element] = STATE(3), + [sym_emphasis] = STATE(137), + [sym_emphasis_begin] = STATE(1193), + [sym_strong] = STATE(137), + [sym_strong_begin] = STATE(1194), + [sym_superscript] = STATE(137), + [sym_superscript_begin] = STATE(1195), + [sym_subscript] = STATE(137), + [sym_subscript_begin] = STATE(1196), + [sym_highlighted] = STATE(137), + [sym_highlighted_begin] = STATE(1197), + [sym_insert] = STATE(137), + [sym_insert_begin] = STATE(1198), + [sym_delete] = STATE(137), + [sym_delete_begin] = STATE(1199), + [sym_hard_line_break] = STATE(137), + [sym__smart_punctuation] = STATE(137), + [sym_autolink] = STATE(137), + [sym_footnote_reference] = STATE(137), + [sym_footnote_marker_begin] = STATE(1200), + [sym__image] = STATE(137), + [sym_full_reference_image] = STATE(137), + [sym_collapsed_reference_image] = STATE(137), + [sym_inline_image] = STATE(137), + [sym__image_description] = STATE(694), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(137), + [sym_full_reference_link] = STATE(137), + [sym_collapsed_reference_link] = STATE(137), + [sym_inline_link] = STATE(137), + [sym_link_text] = STATE(693), + [sym_span] = STATE(3), + [sym__bracketed_text] = STATE(672), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(137), + [sym_raw_inline] = STATE(137), + [sym_math] = STATE(137), + [sym_verbatim] = STATE(137), + [sym__todo_highlights] = STATE(137), + [sym_todo] = STATE(137), + [sym_note] = STATE(137), + [sym__symbol_fallback] = STATE(137), + [aux_sym__text] = STATE(131), + [aux_sym__inline_repeat1] = STATE(3), [anon_sym_LBRACE_] = ACTIONS(97), [anon_sym__] = ACTIONS(99), [anon_sym_LBRACE_STAR] = ACTIONS(101), @@ -6814,45 +6535,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_XXX] = ACTIONS(133), [sym_fixme] = ACTIONS(117), [sym__whitespace1] = ACTIONS(135), - [sym__newline] = ACTIONS(137), + [sym__newline] = ACTIONS(145), [aux_sym__text_token1] = ACTIONS(139), [sym__verbatim_begin] = ACTIONS(141), }, - [23] = { - [sym__inline] = STATE(932), - [sym__element] = STATE(105), + [17] = { + [sym__inline] = STATE(946), + [sym__element] = STATE(107), [sym_emphasis] = STATE(140), - [sym_emphasis_begin] = STATE(1154), + [sym_emphasis_begin] = STATE(1185), [sym_strong] = STATE(140), - [sym_strong_begin] = STATE(1155), + [sym_strong_begin] = STATE(1186), [sym_superscript] = STATE(140), - [sym_superscript_begin] = STATE(1156), + [sym_superscript_begin] = STATE(1187), [sym_subscript] = STATE(140), - [sym_subscript_begin] = STATE(1157), + [sym_subscript_begin] = STATE(1188), [sym_highlighted] = STATE(140), - [sym_highlighted_begin] = STATE(1158), + [sym_highlighted_begin] = STATE(1189), [sym_insert] = STATE(140), - [sym_insert_begin] = STATE(1159), + [sym_insert_begin] = STATE(1190), [sym_delete] = STATE(140), - [sym_delete_begin] = STATE(1160), + [sym_delete_begin] = STATE(1191), [sym_hard_line_break] = STATE(140), [sym__smart_punctuation] = STATE(140), [sym_autolink] = STATE(140), [sym_footnote_reference] = STATE(140), + [sym_footnote_marker_begin] = STATE(1192), [sym__image] = STATE(140), [sym_full_reference_image] = STATE(140), [sym_collapsed_reference_image] = STATE(140), [sym_inline_image] = STATE(140), - [sym__image_description] = STATE(687), - [sym__image_description_begin] = STATE(1103), + [sym__image_description] = STATE(700), + [sym__image_description_begin] = STATE(1114), [sym__link] = STATE(140), [sym_full_reference_link] = STATE(140), [sym_collapsed_reference_link] = STATE(140), [sym_inline_link] = STATE(140), - [sym_link_text] = STATE(688), - [sym_span] = STATE(105), - [sym__bracketed_text] = STATE(654), - [sym__bracketed_text_begin] = STATE(1102), + [sym_link_text] = STATE(699), + [sym_span] = STATE(107), + [sym__bracketed_text] = STATE(666), + [sym__bracketed_text_begin] = STATE(1113), [sym__comment_with_spaces] = STATE(140), [sym_raw_inline] = STATE(140), [sym_math] = STATE(140), @@ -6861,156 +6583,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(140), [sym_note] = STATE(140), [sym__symbol_fallback] = STATE(140), - [aux_sym__text] = STATE(131), - [aux_sym__inline_repeat1] = STATE(105), - [anon_sym_LBRACE_] = ACTIONS(327), - [anon_sym__] = ACTIONS(329), - [anon_sym_LBRACE_STAR] = ACTIONS(331), - [anon_sym_STAR] = ACTIONS(333), - [anon_sym_LBRACE_CARET] = ACTIONS(335), - [anon_sym_CARET] = ACTIONS(335), - [anon_sym_LBRACE_TILDE] = ACTIONS(337), - [anon_sym_TILDE] = ACTIONS(337), - [anon_sym_LBRACE_EQ] = ACTIONS(339), - [anon_sym_LBRACE_PLUS] = ACTIONS(341), - [anon_sym_LBRACE_DASH] = ACTIONS(343), - [anon_sym_BSLASH] = ACTIONS(345), - [sym_quotation_marks] = ACTIONS(347), - [sym_ellipsis] = ACTIONS(347), - [sym_em_dash] = ACTIONS(347), - [sym_en_dash] = ACTIONS(349), - [sym_backslash_escape] = ACTIONS(349), - [anon_sym_LT] = ACTIONS(351), - [sym_symbol] = ACTIONS(347), - [anon_sym_LBRACK_CARET] = ACTIONS(353), - [anon_sym_BANG_LBRACK] = ACTIONS(355), - [anon_sym_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [anon_sym_TODO] = ACTIONS(361), - [anon_sym_WIP] = ACTIONS(361), - [anon_sym_NOTE] = ACTIONS(363), - [anon_sym_INFO] = ACTIONS(363), - [anon_sym_XXX] = ACTIONS(363), - [sym_fixme] = ACTIONS(347), - [sym__whitespace1] = ACTIONS(365), - [sym__newline] = ACTIONS(367), - [aux_sym__text_token1] = ACTIONS(369), - [sym__verbatim_begin] = ACTIONS(371), + [aux_sym__text] = STATE(125), + [aux_sym__inline_repeat1] = STATE(107), + [anon_sym_LBRACE_] = ACTIONS(193), + [anon_sym__] = ACTIONS(195), + [anon_sym_LBRACE_STAR] = ACTIONS(197), + [anon_sym_STAR] = ACTIONS(199), + [anon_sym_LBRACE_CARET] = ACTIONS(201), + [anon_sym_CARET] = ACTIONS(201), + [anon_sym_LBRACE_TILDE] = ACTIONS(203), + [anon_sym_TILDE] = ACTIONS(203), + [anon_sym_LBRACE_EQ] = ACTIONS(205), + [anon_sym_LBRACE_PLUS] = ACTIONS(207), + [anon_sym_LBRACE_DASH] = ACTIONS(209), + [anon_sym_BSLASH] = ACTIONS(211), + [sym_quotation_marks] = ACTIONS(213), + [sym_ellipsis] = ACTIONS(213), + [sym_em_dash] = ACTIONS(213), + [sym_en_dash] = ACTIONS(215), + [sym_backslash_escape] = ACTIONS(215), + [anon_sym_LT] = ACTIONS(217), + [sym_symbol] = ACTIONS(213), + [anon_sym_LBRACK_CARET] = ACTIONS(219), + [anon_sym_BANG_LBRACK] = ACTIONS(221), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_DOLLAR] = ACTIONS(225), + [anon_sym_TODO] = ACTIONS(227), + [anon_sym_WIP] = ACTIONS(227), + [anon_sym_NOTE] = ACTIONS(229), + [anon_sym_INFO] = ACTIONS(229), + [anon_sym_XXX] = ACTIONS(229), + [sym_fixme] = ACTIONS(213), + [sym__whitespace1] = ACTIONS(231), + [sym__newline] = ACTIONS(233), + [aux_sym__text_token1] = ACTIONS(235), + [sym__verbatim_begin] = ACTIONS(237), }, - [24] = { - [sym__inline_without_trailing_space] = STATE(931), - [sym__element] = STATE(562), - [sym_emphasis] = STATE(142), - [sym_emphasis_begin] = STATE(1147), - [sym_strong] = STATE(142), - [sym_strong_begin] = STATE(1148), - [sym_superscript] = STATE(142), - [sym_superscript_begin] = STATE(1149), - [sym_subscript] = STATE(142), - [sym_subscript_begin] = STATE(1150), - [sym_highlighted] = STATE(142), - [sym_highlighted_begin] = STATE(1151), - [sym_insert] = STATE(142), - [sym_insert_begin] = STATE(1152), - [sym_delete] = STATE(142), - [sym_delete_begin] = STATE(1153), - [sym_hard_line_break] = STATE(142), - [sym__smart_punctuation] = STATE(142), - [sym_autolink] = STATE(142), - [sym_footnote_reference] = STATE(142), - [sym__image] = STATE(142), - [sym_full_reference_image] = STATE(142), - [sym_collapsed_reference_image] = STATE(142), - [sym_inline_image] = STATE(142), - [sym__image_description] = STATE(685), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(142), - [sym_full_reference_link] = STATE(142), - [sym_collapsed_reference_link] = STATE(142), - [sym_inline_link] = STATE(142), - [sym_link_text] = STATE(683), - [sym_span] = STATE(562), - [sym__bracketed_text] = STATE(657), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(142), - [sym_raw_inline] = STATE(142), - [sym_math] = STATE(142), - [sym_verbatim] = STATE(142), - [sym__todo_highlights] = STATE(142), - [sym_todo] = STATE(142), - [sym_note] = STATE(142), - [sym__symbol_fallback] = STATE(142), - [aux_sym__text] = STATE(126), - [aux_sym__inline_repeat1] = STATE(120), - [anon_sym_LBRACE_] = ACTIONS(373), - [anon_sym__] = ACTIONS(375), - [anon_sym_LBRACE_STAR] = ACTIONS(377), - [anon_sym_STAR] = ACTIONS(379), - [anon_sym_LBRACE_CARET] = ACTIONS(381), - [anon_sym_CARET] = ACTIONS(381), - [anon_sym_LBRACE_TILDE] = ACTIONS(383), - [anon_sym_TILDE] = ACTIONS(383), - [anon_sym_LBRACE_EQ] = ACTIONS(385), - [anon_sym_LBRACE_PLUS] = ACTIONS(387), - [anon_sym_LBRACE_DASH] = ACTIONS(389), - [anon_sym_BSLASH] = ACTIONS(391), - [sym_quotation_marks] = ACTIONS(393), - [sym_ellipsis] = ACTIONS(393), - [sym_em_dash] = ACTIONS(393), - [sym_en_dash] = ACTIONS(395), - [sym_backslash_escape] = ACTIONS(395), - [anon_sym_LT] = ACTIONS(397), - [sym_symbol] = ACTIONS(393), - [anon_sym_LBRACK_CARET] = ACTIONS(399), - [anon_sym_BANG_LBRACK] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_DOLLAR] = ACTIONS(405), - [anon_sym_TODO] = ACTIONS(407), - [anon_sym_WIP] = ACTIONS(407), - [anon_sym_NOTE] = ACTIONS(409), - [anon_sym_INFO] = ACTIONS(409), - [anon_sym_XXX] = ACTIONS(409), - [sym_fixme] = ACTIONS(393), - [sym__whitespace1] = ACTIONS(411), - [sym__newline] = ACTIONS(413), - [aux_sym__text_token1] = ACTIONS(415), - [sym__verbatim_begin] = ACTIONS(417), + [18] = { + [sym__inline_without_trailing_space] = STATE(1013), + [sym__element] = STATE(538), + [sym_emphasis] = STATE(141), + [sym_emphasis_begin] = STATE(1153), + [sym_strong] = STATE(141), + [sym_strong_begin] = STATE(1154), + [sym_superscript] = STATE(141), + [sym_superscript_begin] = STATE(1155), + [sym_subscript] = STATE(141), + [sym_subscript_begin] = STATE(1156), + [sym_highlighted] = STATE(141), + [sym_highlighted_begin] = STATE(1157), + [sym_insert] = STATE(141), + [sym_insert_begin] = STATE(1158), + [sym_delete] = STATE(141), + [sym_delete_begin] = STATE(1159), + [sym_hard_line_break] = STATE(141), + [sym__smart_punctuation] = STATE(141), + [sym_autolink] = STATE(141), + [sym_footnote_reference] = STATE(141), + [sym_footnote_marker_begin] = STATE(1160), + [sym__image] = STATE(141), + [sym_full_reference_image] = STATE(141), + [sym_collapsed_reference_image] = STATE(141), + [sym_inline_image] = STATE(141), + [sym__image_description] = STATE(681), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(141), + [sym_full_reference_link] = STATE(141), + [sym_collapsed_reference_link] = STATE(141), + [sym_inline_link] = STATE(141), + [sym_link_text] = STATE(680), + [sym_span] = STATE(538), + [sym__bracketed_text] = STATE(664), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(141), + [sym_raw_inline] = STATE(141), + [sym_math] = STATE(141), + [sym_verbatim] = STATE(141), + [sym__todo_highlights] = STATE(141), + [sym_todo] = STATE(141), + [sym_note] = STATE(141), + [sym__symbol_fallback] = STATE(141), + [aux_sym__text] = STATE(128), + [aux_sym__inline_repeat1] = STATE(119), + [anon_sym_LBRACE_] = ACTIONS(147), + [anon_sym__] = ACTIONS(149), + [anon_sym_LBRACE_STAR] = ACTIONS(151), + [anon_sym_STAR] = ACTIONS(153), + [anon_sym_LBRACE_CARET] = ACTIONS(155), + [anon_sym_CARET] = ACTIONS(155), + [anon_sym_LBRACE_TILDE] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_LBRACE_EQ] = ACTIONS(159), + [anon_sym_LBRACE_PLUS] = ACTIONS(161), + [anon_sym_LBRACE_DASH] = ACTIONS(163), + [anon_sym_BSLASH] = ACTIONS(165), + [sym_quotation_marks] = ACTIONS(167), + [sym_ellipsis] = ACTIONS(167), + [sym_em_dash] = ACTIONS(167), + [sym_en_dash] = ACTIONS(169), + [sym_backslash_escape] = ACTIONS(169), + [anon_sym_LT] = ACTIONS(171), + [sym_symbol] = ACTIONS(167), + [anon_sym_LBRACK_CARET] = ACTIONS(173), + [anon_sym_BANG_LBRACK] = ACTIONS(175), + [anon_sym_LBRACK] = ACTIONS(177), + [anon_sym_DOLLAR] = ACTIONS(179), + [anon_sym_TODO] = ACTIONS(181), + [anon_sym_WIP] = ACTIONS(181), + [anon_sym_NOTE] = ACTIONS(183), + [anon_sym_INFO] = ACTIONS(183), + [anon_sym_XXX] = ACTIONS(183), + [sym_fixme] = ACTIONS(167), + [sym__whitespace1] = ACTIONS(185), + [sym__newline] = ACTIONS(187), + [aux_sym__text_token1] = ACTIONS(189), + [sym__verbatim_begin] = ACTIONS(191), }, - [25] = { - [sym__inline_without_trailing_space] = STATE(930), - [sym__element] = STATE(604), + [19] = { + [sym__inline_without_trailing_space] = STATE(1012), + [sym__element] = STATE(572), [sym_emphasis] = STATE(138), - [sym_emphasis_begin] = STATE(1140), + [sym_emphasis_begin] = STATE(1161), [sym_strong] = STATE(138), - [sym_strong_begin] = STATE(1141), + [sym_strong_begin] = STATE(1162), [sym_superscript] = STATE(138), - [sym_superscript_begin] = STATE(1142), + [sym_superscript_begin] = STATE(1163), [sym_subscript] = STATE(138), - [sym_subscript_begin] = STATE(1143), + [sym_subscript_begin] = STATE(1164), [sym_highlighted] = STATE(138), - [sym_highlighted_begin] = STATE(1144), + [sym_highlighted_begin] = STATE(1165), [sym_insert] = STATE(138), - [sym_insert_begin] = STATE(1145), + [sym_insert_begin] = STATE(1166), [sym_delete] = STATE(138), - [sym_delete_begin] = STATE(1146), + [sym_delete_begin] = STATE(1167), [sym_hard_line_break] = STATE(138), [sym__smart_punctuation] = STATE(138), [sym_autolink] = STATE(138), [sym_footnote_reference] = STATE(138), + [sym_footnote_marker_begin] = STATE(1168), [sym__image] = STATE(138), [sym_full_reference_image] = STATE(138), [sym_collapsed_reference_image] = STATE(138), [sym_inline_image] = STATE(138), - [sym__image_description] = STATE(667), - [sym__image_description_begin] = STATE(1103), + [sym__image_description] = STATE(703), + [sym__image_description_begin] = STATE(1114), [sym__link] = STATE(138), [sym_full_reference_link] = STATE(138), [sym_collapsed_reference_link] = STATE(138), [sym_inline_link] = STATE(138), - [sym_link_text] = STATE(689), - [sym_span] = STATE(604), - [sym__bracketed_text] = STATE(658), - [sym__bracketed_text_begin] = STATE(1102), + [sym_link_text] = STATE(697), + [sym_span] = STATE(572), + [sym__bracketed_text] = STATE(671), + [sym__bracketed_text_begin] = STATE(1113), [sym__comment_with_spaces] = STATE(138), [sym_raw_inline] = STATE(138), [sym_math] = STATE(138), @@ -7019,314 +6743,478 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(138), [sym_note] = STATE(138), [sym__symbol_fallback] = STATE(138), - [aux_sym__text] = STATE(124), - [aux_sym__inline_repeat1] = STATE(118), - [anon_sym_LBRACE_] = ACTIONS(419), - [anon_sym__] = ACTIONS(421), - [anon_sym_LBRACE_STAR] = ACTIONS(423), - [anon_sym_STAR] = ACTIONS(425), - [anon_sym_LBRACE_CARET] = ACTIONS(427), - [anon_sym_CARET] = ACTIONS(427), - [anon_sym_LBRACE_TILDE] = ACTIONS(429), - [anon_sym_TILDE] = ACTIONS(429), - [anon_sym_LBRACE_EQ] = ACTIONS(431), - [anon_sym_LBRACE_PLUS] = ACTIONS(433), - [anon_sym_LBRACE_DASH] = ACTIONS(435), - [anon_sym_BSLASH] = ACTIONS(437), - [sym_quotation_marks] = ACTIONS(439), - [sym_ellipsis] = ACTIONS(439), - [sym_em_dash] = ACTIONS(439), - [sym_en_dash] = ACTIONS(441), - [sym_backslash_escape] = ACTIONS(441), - [anon_sym_LT] = ACTIONS(443), - [sym_symbol] = ACTIONS(439), - [anon_sym_LBRACK_CARET] = ACTIONS(445), - [anon_sym_BANG_LBRACK] = ACTIONS(447), - [anon_sym_LBRACK] = ACTIONS(449), - [anon_sym_DOLLAR] = ACTIONS(451), - [anon_sym_TODO] = ACTIONS(453), - [anon_sym_WIP] = ACTIONS(453), - [anon_sym_NOTE] = ACTIONS(455), - [anon_sym_INFO] = ACTIONS(455), - [anon_sym_XXX] = ACTIONS(455), - [sym_fixme] = ACTIONS(439), - [sym__whitespace1] = ACTIONS(457), - [sym__newline] = ACTIONS(459), - [aux_sym__text_token1] = ACTIONS(461), - [sym__verbatim_begin] = ACTIONS(463), + [aux_sym__text] = STATE(122), + [aux_sym__inline_repeat1] = STATE(120), + [anon_sym_LBRACE_] = ACTIONS(331), + [anon_sym__] = ACTIONS(333), + [anon_sym_LBRACE_STAR] = ACTIONS(335), + [anon_sym_STAR] = ACTIONS(337), + [anon_sym_LBRACE_CARET] = ACTIONS(339), + [anon_sym_CARET] = ACTIONS(339), + [anon_sym_LBRACE_TILDE] = ACTIONS(341), + [anon_sym_TILDE] = ACTIONS(341), + [anon_sym_LBRACE_EQ] = ACTIONS(343), + [anon_sym_LBRACE_PLUS] = ACTIONS(345), + [anon_sym_LBRACE_DASH] = ACTIONS(347), + [anon_sym_BSLASH] = ACTIONS(349), + [sym_quotation_marks] = ACTIONS(351), + [sym_ellipsis] = ACTIONS(351), + [sym_em_dash] = ACTIONS(351), + [sym_en_dash] = ACTIONS(353), + [sym_backslash_escape] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [sym_symbol] = ACTIONS(351), + [anon_sym_LBRACK_CARET] = ACTIONS(357), + [anon_sym_BANG_LBRACK] = ACTIONS(359), + [anon_sym_LBRACK] = ACTIONS(361), + [anon_sym_DOLLAR] = ACTIONS(363), + [anon_sym_TODO] = ACTIONS(365), + [anon_sym_WIP] = ACTIONS(365), + [anon_sym_NOTE] = ACTIONS(367), + [anon_sym_INFO] = ACTIONS(367), + [anon_sym_XXX] = ACTIONS(367), + [sym_fixme] = ACTIONS(351), + [sym__whitespace1] = ACTIONS(369), + [sym__newline] = ACTIONS(371), + [aux_sym__text_token1] = ACTIONS(373), + [sym__verbatim_begin] = ACTIONS(375), }, - [26] = { - [sym__inline] = STATE(904), - [sym__element] = STATE(65), - [sym_emphasis] = STATE(133), - [sym_emphasis_begin] = STATE(1189), - [sym_strong] = STATE(133), - [sym_strong_begin] = STATE(1190), - [sym_superscript] = STATE(133), - [sym_superscript_begin] = STATE(1191), - [sym_subscript] = STATE(133), - [sym_subscript_begin] = STATE(1192), - [sym_highlighted] = STATE(133), - [sym_highlighted_begin] = STATE(1193), - [sym_insert] = STATE(133), - [sym_insert_begin] = STATE(1194), - [sym_delete] = STATE(133), - [sym_delete_begin] = STATE(1195), - [sym_hard_line_break] = STATE(133), - [sym__smart_punctuation] = STATE(133), - [sym_autolink] = STATE(133), - [sym_footnote_reference] = STATE(133), - [sym__image] = STATE(133), - [sym_full_reference_image] = STATE(133), - [sym_collapsed_reference_image] = STATE(133), - [sym_inline_image] = STATE(133), - [sym__image_description] = STATE(670), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(133), - [sym_full_reference_link] = STATE(133), - [sym_collapsed_reference_link] = STATE(133), - [sym_inline_link] = STATE(133), - [sym_link_text] = STATE(663), - [sym_span] = STATE(65), - [sym__bracketed_text] = STATE(662), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(133), - [sym_raw_inline] = STATE(133), - [sym_math] = STATE(133), - [sym_verbatim] = STATE(133), - [sym__todo_highlights] = STATE(133), - [sym_todo] = STATE(133), - [sym_note] = STATE(133), - [sym__symbol_fallback] = STATE(133), - [aux_sym__text] = STATE(123), - [aux_sym__inline_repeat1] = STATE(65), - [anon_sym_LBRACE_] = ACTIONS(143), - [anon_sym__] = ACTIONS(145), - [anon_sym_LBRACE_STAR] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_LBRACE_CARET] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(151), - [anon_sym_LBRACE_TILDE] = ACTIONS(153), - [anon_sym_TILDE] = ACTIONS(153), - [anon_sym_LBRACE_EQ] = ACTIONS(155), - [anon_sym_LBRACE_PLUS] = ACTIONS(157), - [anon_sym_LBRACE_DASH] = ACTIONS(159), - [anon_sym_BSLASH] = ACTIONS(161), - [sym_quotation_marks] = ACTIONS(163), - [sym_ellipsis] = ACTIONS(163), - [sym_em_dash] = ACTIONS(163), - [sym_en_dash] = ACTIONS(165), - [sym_backslash_escape] = ACTIONS(165), - [anon_sym_LT] = ACTIONS(167), - [sym_symbol] = ACTIONS(163), - [anon_sym_LBRACK_CARET] = ACTIONS(169), - [anon_sym_BANG_LBRACK] = ACTIONS(171), - [anon_sym_LBRACK] = ACTIONS(173), - [anon_sym_DOLLAR] = ACTIONS(175), - [anon_sym_TODO] = ACTIONS(177), - [anon_sym_WIP] = ACTIONS(177), - [anon_sym_NOTE] = ACTIONS(179), - [anon_sym_INFO] = ACTIONS(179), - [anon_sym_XXX] = ACTIONS(179), - [sym_fixme] = ACTIONS(163), - [sym__whitespace1] = ACTIONS(181), - [sym__newline] = ACTIONS(183), - [aux_sym__text_token1] = ACTIONS(185), - [sym__verbatim_begin] = ACTIONS(187), + [20] = { + [sym__inline] = STATE(1011), + [sym__element] = STATE(82), + [sym_emphasis] = STATE(143), + [sym_emphasis_begin] = STATE(1169), + [sym_strong] = STATE(143), + [sym_strong_begin] = STATE(1170), + [sym_superscript] = STATE(143), + [sym_superscript_begin] = STATE(1171), + [sym_subscript] = STATE(143), + [sym_subscript_begin] = STATE(1172), + [sym_highlighted] = STATE(143), + [sym_highlighted_begin] = STATE(1173), + [sym_insert] = STATE(143), + [sym_insert_begin] = STATE(1174), + [sym_delete] = STATE(143), + [sym_delete_begin] = STATE(1175), + [sym_hard_line_break] = STATE(143), + [sym__smart_punctuation] = STATE(143), + [sym_autolink] = STATE(143), + [sym_footnote_reference] = STATE(143), + [sym_footnote_marker_begin] = STATE(1176), + [sym__image] = STATE(143), + [sym_full_reference_image] = STATE(143), + [sym_collapsed_reference_image] = STATE(143), + [sym_inline_image] = STATE(143), + [sym__image_description] = STATE(701), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(143), + [sym_full_reference_link] = STATE(143), + [sym_collapsed_reference_link] = STATE(143), + [sym_inline_link] = STATE(143), + [sym_link_text] = STATE(702), + [sym_span] = STATE(82), + [sym__bracketed_text] = STATE(667), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(143), + [sym_raw_inline] = STATE(143), + [sym_math] = STATE(143), + [sym_verbatim] = STATE(143), + [sym__todo_highlights] = STATE(143), + [sym_todo] = STATE(143), + [sym_note] = STATE(143), + [sym__symbol_fallback] = STATE(143), + [aux_sym__text] = STATE(126), + [aux_sym__inline_repeat1] = STATE(82), + [anon_sym_LBRACE_] = ACTIONS(285), + [anon_sym__] = ACTIONS(287), + [anon_sym_LBRACE_STAR] = ACTIONS(289), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_LBRACE_CARET] = ACTIONS(293), + [anon_sym_CARET] = ACTIONS(293), + [anon_sym_LBRACE_TILDE] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_LBRACE_EQ] = ACTIONS(297), + [anon_sym_LBRACE_PLUS] = ACTIONS(299), + [anon_sym_LBRACE_DASH] = ACTIONS(301), + [anon_sym_BSLASH] = ACTIONS(303), + [sym_quotation_marks] = ACTIONS(305), + [sym_ellipsis] = ACTIONS(305), + [sym_em_dash] = ACTIONS(305), + [sym_en_dash] = ACTIONS(307), + [sym_backslash_escape] = ACTIONS(307), + [anon_sym_LT] = ACTIONS(309), + [sym_symbol] = ACTIONS(305), + [anon_sym_LBRACK_CARET] = ACTIONS(311), + [anon_sym_BANG_LBRACK] = ACTIONS(313), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_DOLLAR] = ACTIONS(317), + [anon_sym_TODO] = ACTIONS(319), + [anon_sym_WIP] = ACTIONS(319), + [anon_sym_NOTE] = ACTIONS(321), + [anon_sym_INFO] = ACTIONS(321), + [anon_sym_XXX] = ACTIONS(321), + [sym_fixme] = ACTIONS(305), + [sym__whitespace1] = ACTIONS(323), + [sym__newline] = ACTIONS(325), + [aux_sym__text_token1] = ACTIONS(327), + [sym__verbatim_begin] = ACTIONS(329), }, - [27] = { - [sym__inline] = STATE(903), + [21] = { [sym__element] = STATE(21), - [sym_emphasis] = STATE(134), - [sym_emphasis_begin] = STATE(1182), - [sym_strong] = STATE(134), - [sym_strong_begin] = STATE(1183), - [sym_superscript] = STATE(134), - [sym_superscript_begin] = STATE(1184), - [sym_subscript] = STATE(134), - [sym_subscript_begin] = STATE(1185), - [sym_highlighted] = STATE(134), - [sym_highlighted_begin] = STATE(1186), - [sym_insert] = STATE(134), - [sym_insert_begin] = STATE(1187), - [sym_delete] = STATE(134), - [sym_delete_begin] = STATE(1188), - [sym_hard_line_break] = STATE(134), - [sym__smart_punctuation] = STATE(134), - [sym_autolink] = STATE(134), - [sym_footnote_reference] = STATE(134), - [sym__image] = STATE(134), - [sym_full_reference_image] = STATE(134), - [sym_collapsed_reference_image] = STATE(134), - [sym_inline_image] = STATE(134), - [sym__image_description] = STATE(677), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(134), - [sym_full_reference_link] = STATE(134), - [sym_collapsed_reference_link] = STATE(134), - [sym_inline_link] = STATE(134), - [sym_link_text] = STATE(675), + [sym_emphasis] = STATE(143), + [sym_emphasis_begin] = STATE(1169), + [sym_strong] = STATE(143), + [sym_strong_begin] = STATE(1170), + [sym_superscript] = STATE(143), + [sym_superscript_begin] = STATE(1171), + [sym_subscript] = STATE(143), + [sym_subscript_begin] = STATE(1172), + [sym_highlighted] = STATE(143), + [sym_highlighted_begin] = STATE(1173), + [sym_insert] = STATE(143), + [sym_insert_begin] = STATE(1174), + [sym_delete] = STATE(143), + [sym_delete_begin] = STATE(1175), + [sym_hard_line_break] = STATE(143), + [sym__smart_punctuation] = STATE(143), + [sym_autolink] = STATE(143), + [sym_footnote_reference] = STATE(143), + [sym_footnote_marker_begin] = STATE(1176), + [sym__image] = STATE(143), + [sym_full_reference_image] = STATE(143), + [sym_collapsed_reference_image] = STATE(143), + [sym_inline_image] = STATE(143), + [sym__image_description] = STATE(701), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(143), + [sym_full_reference_link] = STATE(143), + [sym_collapsed_reference_link] = STATE(143), + [sym_inline_link] = STATE(143), + [sym_link_text] = STATE(702), [sym_span] = STATE(21), - [sym__bracketed_text] = STATE(660), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(134), - [sym_raw_inline] = STATE(134), - [sym_math] = STATE(134), - [sym_verbatim] = STATE(134), - [sym__todo_highlights] = STATE(134), - [sym_todo] = STATE(134), - [sym_note] = STATE(134), - [sym__symbol_fallback] = STATE(134), - [aux_sym__text] = STATE(127), + [sym__bracketed_text] = STATE(667), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(143), + [sym_raw_inline] = STATE(143), + [sym_math] = STATE(143), + [sym_verbatim] = STATE(143), + [sym__todo_highlights] = STATE(143), + [sym_todo] = STATE(143), + [sym_note] = STATE(143), + [sym__symbol_fallback] = STATE(143), + [aux_sym__text] = STATE(126), [aux_sym__inline_repeat1] = STATE(21), - [anon_sym_LBRACE_] = ACTIONS(189), - [anon_sym__] = ACTIONS(191), - [anon_sym_LBRACE_STAR] = ACTIONS(193), - [anon_sym_STAR] = ACTIONS(195), - [anon_sym_LBRACE_CARET] = ACTIONS(197), - [anon_sym_CARET] = ACTIONS(197), - [anon_sym_LBRACE_TILDE] = ACTIONS(199), - [anon_sym_TILDE] = ACTIONS(199), - [anon_sym_LBRACE_EQ] = ACTIONS(201), - [anon_sym_LBRACE_PLUS] = ACTIONS(203), - [anon_sym_LBRACE_DASH] = ACTIONS(205), - [anon_sym_BSLASH] = ACTIONS(207), - [sym_quotation_marks] = ACTIONS(209), - [sym_ellipsis] = ACTIONS(209), - [sym_em_dash] = ACTIONS(209), - [sym_en_dash] = ACTIONS(211), - [sym_backslash_escape] = ACTIONS(211), - [anon_sym_LT] = ACTIONS(213), - [sym_symbol] = ACTIONS(209), - [anon_sym_LBRACK_CARET] = ACTIONS(215), - [anon_sym_BANG_LBRACK] = ACTIONS(217), - [anon_sym_LBRACK] = ACTIONS(219), - [anon_sym_DOLLAR] = ACTIONS(221), - [anon_sym_TODO] = ACTIONS(223), - [anon_sym_WIP] = ACTIONS(223), - [anon_sym_NOTE] = ACTIONS(225), - [anon_sym_INFO] = ACTIONS(225), - [anon_sym_XXX] = ACTIONS(225), - [sym_fixme] = ACTIONS(209), - [sym__whitespace1] = ACTIONS(227), - [sym__newline] = ACTIONS(229), - [aux_sym__text_token1] = ACTIONS(231), - [sym__verbatim_begin] = ACTIONS(233), + [anon_sym_LBRACE_] = ACTIONS(471), + [anon_sym__] = ACTIONS(474), + [anon_sym_LBRACE_STAR] = ACTIONS(477), + [anon_sym_STAR] = ACTIONS(480), + [anon_sym_LBRACE_CARET] = ACTIONS(483), + [anon_sym_CARET] = ACTIONS(483), + [anon_sym_LBRACE_TILDE] = ACTIONS(486), + [anon_sym_TILDE] = ACTIONS(486), + [anon_sym_LBRACE_EQ] = ACTIONS(489), + [anon_sym_LBRACE_PLUS] = ACTIONS(492), + [anon_sym_LBRACE_DASH] = ACTIONS(495), + [anon_sym_BSLASH] = ACTIONS(498), + [sym_quotation_marks] = ACTIONS(501), + [sym_ellipsis] = ACTIONS(501), + [sym_em_dash] = ACTIONS(501), + [sym_en_dash] = ACTIONS(504), + [sym_backslash_escape] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(507), + [sym_symbol] = ACTIONS(501), + [anon_sym_LBRACK_CARET] = ACTIONS(510), + [anon_sym_BANG_LBRACK] = ACTIONS(513), + [anon_sym_LBRACK] = ACTIONS(516), + [anon_sym_DOLLAR] = ACTIONS(519), + [anon_sym_TODO] = ACTIONS(522), + [anon_sym_WIP] = ACTIONS(522), + [anon_sym_NOTE] = ACTIONS(525), + [anon_sym_INFO] = ACTIONS(525), + [anon_sym_XXX] = ACTIONS(525), + [sym_fixme] = ACTIONS(501), + [sym__whitespace1] = ACTIONS(528), + [sym__newline] = ACTIONS(531), + [aux_sym__text_token1] = ACTIONS(534), + [sym__verbatim_begin] = ACTIONS(537), + [sym_superscript_end] = ACTIONS(540), }, - [28] = { - [sym__inline] = STATE(902), - [sym__element] = STATE(103), - [sym_emphasis] = STATE(139), - [sym_emphasis_begin] = STATE(1175), - [sym_strong] = STATE(139), - [sym_strong_begin] = STATE(1176), - [sym_superscript] = STATE(139), - [sym_superscript_begin] = STATE(1177), - [sym_subscript] = STATE(139), - [sym_subscript_begin] = STATE(1178), - [sym_highlighted] = STATE(139), - [sym_highlighted_begin] = STATE(1179), - [sym_insert] = STATE(139), - [sym_insert_begin] = STATE(1180), - [sym_delete] = STATE(139), - [sym_delete_begin] = STATE(1181), - [sym_hard_line_break] = STATE(139), - [sym__smart_punctuation] = STATE(139), - [sym_autolink] = STATE(139), - [sym_footnote_reference] = STATE(139), - [sym__image] = STATE(139), - [sym_full_reference_image] = STATE(139), - [sym_collapsed_reference_image] = STATE(139), - [sym_inline_image] = STATE(139), - [sym__image_description] = STATE(682), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(139), - [sym_full_reference_link] = STATE(139), - [sym_collapsed_reference_link] = STATE(139), - [sym_inline_link] = STATE(139), - [sym_link_text] = STATE(681), - [sym_span] = STATE(103), - [sym__bracketed_text] = STATE(656), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(139), - [sym_raw_inline] = STATE(139), - [sym_math] = STATE(139), - [sym_verbatim] = STATE(139), - [sym__todo_highlights] = STATE(139), - [sym_todo] = STATE(139), - [sym_note] = STATE(139), - [sym__symbol_fallback] = STATE(139), - [aux_sym__text] = STATE(129), - [aux_sym__inline_repeat1] = STATE(103), - [anon_sym_LBRACE_] = ACTIONS(235), - [anon_sym__] = ACTIONS(237), - [anon_sym_LBRACE_STAR] = ACTIONS(239), - [anon_sym_STAR] = ACTIONS(241), - [anon_sym_LBRACE_CARET] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(243), - [anon_sym_LBRACE_TILDE] = ACTIONS(245), - [anon_sym_TILDE] = ACTIONS(245), - [anon_sym_LBRACE_EQ] = ACTIONS(247), - [anon_sym_LBRACE_PLUS] = ACTIONS(249), - [anon_sym_LBRACE_DASH] = ACTIONS(251), - [anon_sym_BSLASH] = ACTIONS(253), - [sym_quotation_marks] = ACTIONS(255), - [sym_ellipsis] = ACTIONS(255), - [sym_em_dash] = ACTIONS(255), - [sym_en_dash] = ACTIONS(257), - [sym_backslash_escape] = ACTIONS(257), - [anon_sym_LT] = ACTIONS(259), - [sym_symbol] = ACTIONS(255), - [anon_sym_LBRACK_CARET] = ACTIONS(261), - [anon_sym_BANG_LBRACK] = ACTIONS(263), - [anon_sym_LBRACK] = ACTIONS(265), - [anon_sym_DOLLAR] = ACTIONS(267), - [anon_sym_TODO] = ACTIONS(269), - [anon_sym_WIP] = ACTIONS(269), - [anon_sym_NOTE] = ACTIONS(271), - [anon_sym_INFO] = ACTIONS(271), - [anon_sym_XXX] = ACTIONS(271), - [sym_fixme] = ACTIONS(255), - [sym__whitespace1] = ACTIONS(273), - [sym__newline] = ACTIONS(275), - [aux_sym__text_token1] = ACTIONS(277), - [sym__verbatim_begin] = ACTIONS(279), + [22] = { + [sym__inline] = STATE(945), + [sym__element] = STATE(72), + [sym_emphasis] = STATE(135), + [sym_emphasis_begin] = STATE(1177), + [sym_strong] = STATE(135), + [sym_strong_begin] = STATE(1178), + [sym_superscript] = STATE(135), + [sym_superscript_begin] = STATE(1179), + [sym_subscript] = STATE(135), + [sym_subscript_begin] = STATE(1180), + [sym_highlighted] = STATE(135), + [sym_highlighted_begin] = STATE(1181), + [sym_insert] = STATE(135), + [sym_insert_begin] = STATE(1182), + [sym_delete] = STATE(135), + [sym_delete_begin] = STATE(1183), + [sym_hard_line_break] = STATE(135), + [sym__smart_punctuation] = STATE(135), + [sym_autolink] = STATE(135), + [sym_footnote_reference] = STATE(135), + [sym_footnote_marker_begin] = STATE(1184), + [sym__image] = STATE(135), + [sym_full_reference_image] = STATE(135), + [sym_collapsed_reference_image] = STATE(135), + [sym_inline_image] = STATE(135), + [sym__image_description] = STATE(687), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(135), + [sym_full_reference_link] = STATE(135), + [sym_collapsed_reference_link] = STATE(135), + [sym_inline_link] = STATE(135), + [sym_link_text] = STATE(684), + [sym_span] = STATE(72), + [sym__bracketed_text] = STATE(670), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(135), + [sym_raw_inline] = STATE(135), + [sym_math] = STATE(135), + [sym_verbatim] = STATE(135), + [sym__todo_highlights] = STATE(135), + [sym_todo] = STATE(135), + [sym_note] = STATE(135), + [sym__symbol_fallback] = STATE(135), + [aux_sym__text] = STATE(124), + [aux_sym__inline_repeat1] = STATE(72), + [anon_sym_LBRACE_] = ACTIONS(239), + [anon_sym__] = ACTIONS(241), + [anon_sym_LBRACE_STAR] = ACTIONS(243), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_LBRACE_CARET] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_LBRACE_TILDE] = ACTIONS(249), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_LBRACE_EQ] = ACTIONS(251), + [anon_sym_LBRACE_PLUS] = ACTIONS(253), + [anon_sym_LBRACE_DASH] = ACTIONS(255), + [anon_sym_BSLASH] = ACTIONS(257), + [sym_quotation_marks] = ACTIONS(259), + [sym_ellipsis] = ACTIONS(259), + [sym_em_dash] = ACTIONS(259), + [sym_en_dash] = ACTIONS(261), + [sym_backslash_escape] = ACTIONS(261), + [anon_sym_LT] = ACTIONS(263), + [sym_symbol] = ACTIONS(259), + [anon_sym_LBRACK_CARET] = ACTIONS(265), + [anon_sym_BANG_LBRACK] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_TODO] = ACTIONS(273), + [anon_sym_WIP] = ACTIONS(273), + [anon_sym_NOTE] = ACTIONS(275), + [anon_sym_INFO] = ACTIONS(275), + [anon_sym_XXX] = ACTIONS(275), + [sym_fixme] = ACTIONS(259), + [sym__whitespace1] = ACTIONS(277), + [sym__newline] = ACTIONS(279), + [aux_sym__text_token1] = ACTIONS(281), + [sym__verbatim_begin] = ACTIONS(283), }, - [29] = { - [sym__inline] = STATE(901), - [sym__element] = STATE(13), + [23] = { + [sym__inline] = STATE(944), + [sym__element] = STATE(82), + [sym_emphasis] = STATE(143), + [sym_emphasis_begin] = STATE(1169), + [sym_strong] = STATE(143), + [sym_strong_begin] = STATE(1170), + [sym_superscript] = STATE(143), + [sym_superscript_begin] = STATE(1171), + [sym_subscript] = STATE(143), + [sym_subscript_begin] = STATE(1172), + [sym_highlighted] = STATE(143), + [sym_highlighted_begin] = STATE(1173), + [sym_insert] = STATE(143), + [sym_insert_begin] = STATE(1174), + [sym_delete] = STATE(143), + [sym_delete_begin] = STATE(1175), + [sym_hard_line_break] = STATE(143), + [sym__smart_punctuation] = STATE(143), + [sym_autolink] = STATE(143), + [sym_footnote_reference] = STATE(143), + [sym_footnote_marker_begin] = STATE(1176), + [sym__image] = STATE(143), + [sym_full_reference_image] = STATE(143), + [sym_collapsed_reference_image] = STATE(143), + [sym_inline_image] = STATE(143), + [sym__image_description] = STATE(701), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(143), + [sym_full_reference_link] = STATE(143), + [sym_collapsed_reference_link] = STATE(143), + [sym_inline_link] = STATE(143), + [sym_link_text] = STATE(702), + [sym_span] = STATE(82), + [sym__bracketed_text] = STATE(667), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(143), + [sym_raw_inline] = STATE(143), + [sym_math] = STATE(143), + [sym_verbatim] = STATE(143), + [sym__todo_highlights] = STATE(143), + [sym_todo] = STATE(143), + [sym_note] = STATE(143), + [sym__symbol_fallback] = STATE(143), + [aux_sym__text] = STATE(126), + [aux_sym__inline_repeat1] = STATE(82), + [anon_sym_LBRACE_] = ACTIONS(285), + [anon_sym__] = ACTIONS(287), + [anon_sym_LBRACE_STAR] = ACTIONS(289), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_LBRACE_CARET] = ACTIONS(293), + [anon_sym_CARET] = ACTIONS(293), + [anon_sym_LBRACE_TILDE] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_LBRACE_EQ] = ACTIONS(297), + [anon_sym_LBRACE_PLUS] = ACTIONS(299), + [anon_sym_LBRACE_DASH] = ACTIONS(301), + [anon_sym_BSLASH] = ACTIONS(303), + [sym_quotation_marks] = ACTIONS(305), + [sym_ellipsis] = ACTIONS(305), + [sym_em_dash] = ACTIONS(305), + [sym_en_dash] = ACTIONS(307), + [sym_backslash_escape] = ACTIONS(307), + [anon_sym_LT] = ACTIONS(309), + [sym_symbol] = ACTIONS(305), + [anon_sym_LBRACK_CARET] = ACTIONS(311), + [anon_sym_BANG_LBRACK] = ACTIONS(313), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_DOLLAR] = ACTIONS(317), + [anon_sym_TODO] = ACTIONS(319), + [anon_sym_WIP] = ACTIONS(319), + [anon_sym_NOTE] = ACTIONS(321), + [anon_sym_INFO] = ACTIONS(321), + [anon_sym_XXX] = ACTIONS(321), + [sym_fixme] = ACTIONS(305), + [sym__whitespace1] = ACTIONS(323), + [sym__newline] = ACTIONS(325), + [aux_sym__text_token1] = ACTIONS(327), + [sym__verbatim_begin] = ACTIONS(329), + }, + [24] = { + [sym__inline_without_trailing_space] = STATE(943), + [sym__element] = STATE(572), + [sym_emphasis] = STATE(138), + [sym_emphasis_begin] = STATE(1161), + [sym_strong] = STATE(138), + [sym_strong_begin] = STATE(1162), + [sym_superscript] = STATE(138), + [sym_superscript_begin] = STATE(1163), + [sym_subscript] = STATE(138), + [sym_subscript_begin] = STATE(1164), + [sym_highlighted] = STATE(138), + [sym_highlighted_begin] = STATE(1165), + [sym_insert] = STATE(138), + [sym_insert_begin] = STATE(1166), + [sym_delete] = STATE(138), + [sym_delete_begin] = STATE(1167), + [sym_hard_line_break] = STATE(138), + [sym__smart_punctuation] = STATE(138), + [sym_autolink] = STATE(138), + [sym_footnote_reference] = STATE(138), + [sym_footnote_marker_begin] = STATE(1168), + [sym__image] = STATE(138), + [sym_full_reference_image] = STATE(138), + [sym_collapsed_reference_image] = STATE(138), + [sym_inline_image] = STATE(138), + [sym__image_description] = STATE(703), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(138), + [sym_full_reference_link] = STATE(138), + [sym_collapsed_reference_link] = STATE(138), + [sym_inline_link] = STATE(138), + [sym_link_text] = STATE(697), + [sym_span] = STATE(572), + [sym__bracketed_text] = STATE(671), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(138), + [sym_raw_inline] = STATE(138), + [sym_math] = STATE(138), + [sym_verbatim] = STATE(138), + [sym__todo_highlights] = STATE(138), + [sym_todo] = STATE(138), + [sym_note] = STATE(138), + [sym__symbol_fallback] = STATE(138), + [aux_sym__text] = STATE(122), + [aux_sym__inline_repeat1] = STATE(120), + [anon_sym_LBRACE_] = ACTIONS(331), + [anon_sym__] = ACTIONS(333), + [anon_sym_LBRACE_STAR] = ACTIONS(335), + [anon_sym_STAR] = ACTIONS(337), + [anon_sym_LBRACE_CARET] = ACTIONS(339), + [anon_sym_CARET] = ACTIONS(339), + [anon_sym_LBRACE_TILDE] = ACTIONS(341), + [anon_sym_TILDE] = ACTIONS(341), + [anon_sym_LBRACE_EQ] = ACTIONS(343), + [anon_sym_LBRACE_PLUS] = ACTIONS(345), + [anon_sym_LBRACE_DASH] = ACTIONS(347), + [anon_sym_BSLASH] = ACTIONS(349), + [sym_quotation_marks] = ACTIONS(351), + [sym_ellipsis] = ACTIONS(351), + [sym_em_dash] = ACTIONS(351), + [sym_en_dash] = ACTIONS(353), + [sym_backslash_escape] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [sym_symbol] = ACTIONS(351), + [anon_sym_LBRACK_CARET] = ACTIONS(357), + [anon_sym_BANG_LBRACK] = ACTIONS(359), + [anon_sym_LBRACK] = ACTIONS(361), + [anon_sym_DOLLAR] = ACTIONS(363), + [anon_sym_TODO] = ACTIONS(365), + [anon_sym_WIP] = ACTIONS(365), + [anon_sym_NOTE] = ACTIONS(367), + [anon_sym_INFO] = ACTIONS(367), + [anon_sym_XXX] = ACTIONS(367), + [sym_fixme] = ACTIONS(351), + [sym__whitespace1] = ACTIONS(369), + [sym__newline] = ACTIONS(371), + [aux_sym__text_token1] = ACTIONS(373), + [sym__verbatim_begin] = ACTIONS(375), + }, + [25] = { + [sym__inline_without_trailing_space] = STATE(942), + [sym__element] = STATE(538), [sym_emphasis] = STATE(141), - [sym_emphasis_begin] = STATE(1168), + [sym_emphasis_begin] = STATE(1153), [sym_strong] = STATE(141), - [sym_strong_begin] = STATE(1169), + [sym_strong_begin] = STATE(1154), [sym_superscript] = STATE(141), - [sym_superscript_begin] = STATE(1170), + [sym_superscript_begin] = STATE(1155), [sym_subscript] = STATE(141), - [sym_subscript_begin] = STATE(1171), + [sym_subscript_begin] = STATE(1156), [sym_highlighted] = STATE(141), - [sym_highlighted_begin] = STATE(1172), + [sym_highlighted_begin] = STATE(1157), [sym_insert] = STATE(141), - [sym_insert_begin] = STATE(1173), + [sym_insert_begin] = STATE(1158), [sym_delete] = STATE(141), - [sym_delete_begin] = STATE(1174), + [sym_delete_begin] = STATE(1159), [sym_hard_line_break] = STATE(141), [sym__smart_punctuation] = STATE(141), [sym_autolink] = STATE(141), [sym_footnote_reference] = STATE(141), + [sym_footnote_marker_begin] = STATE(1160), [sym__image] = STATE(141), [sym_full_reference_image] = STATE(141), [sym_collapsed_reference_image] = STATE(141), [sym_inline_image] = STATE(141), - [sym__image_description] = STATE(674), - [sym__image_description_begin] = STATE(1103), + [sym__image_description] = STATE(681), + [sym__image_description_begin] = STATE(1114), [sym__link] = STATE(141), [sym_full_reference_link] = STATE(141), [sym_collapsed_reference_link] = STATE(141), [sym_inline_link] = STATE(141), - [sym_link_text] = STATE(672), - [sym_span] = STATE(13), - [sym__bracketed_text] = STATE(655), - [sym__bracketed_text_begin] = STATE(1102), + [sym_link_text] = STATE(680), + [sym_span] = STATE(538), + [sym__bracketed_text] = STATE(664), + [sym__bracketed_text_begin] = STATE(1113), [sym__comment_with_spaces] = STATE(141), [sym_raw_inline] = STATE(141), [sym_math] = STATE(141), @@ -7336,76 +7224,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_note] = STATE(141), [sym__symbol_fallback] = STATE(141), [aux_sym__text] = STATE(128), - [aux_sym__inline_repeat1] = STATE(13), - [anon_sym_LBRACE_] = ACTIONS(281), - [anon_sym__] = ACTIONS(283), - [anon_sym_LBRACE_STAR] = ACTIONS(285), - [anon_sym_STAR] = ACTIONS(287), - [anon_sym_LBRACE_CARET] = ACTIONS(289), - [anon_sym_CARET] = ACTIONS(289), - [anon_sym_LBRACE_TILDE] = ACTIONS(291), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_LBRACE_EQ] = ACTIONS(293), - [anon_sym_LBRACE_PLUS] = ACTIONS(295), - [anon_sym_LBRACE_DASH] = ACTIONS(297), - [anon_sym_BSLASH] = ACTIONS(299), - [sym_quotation_marks] = ACTIONS(301), - [sym_ellipsis] = ACTIONS(301), - [sym_em_dash] = ACTIONS(301), - [sym_en_dash] = ACTIONS(303), - [sym_backslash_escape] = ACTIONS(303), - [anon_sym_LT] = ACTIONS(305), - [sym_symbol] = ACTIONS(301), - [anon_sym_LBRACK_CARET] = ACTIONS(307), - [anon_sym_BANG_LBRACK] = ACTIONS(309), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_DOLLAR] = ACTIONS(313), - [anon_sym_TODO] = ACTIONS(315), - [anon_sym_WIP] = ACTIONS(315), - [anon_sym_NOTE] = ACTIONS(317), - [anon_sym_INFO] = ACTIONS(317), - [anon_sym_XXX] = ACTIONS(317), - [sym_fixme] = ACTIONS(301), - [sym__whitespace1] = ACTIONS(319), - [sym__newline] = ACTIONS(321), - [aux_sym__text_token1] = ACTIONS(323), - [sym__verbatim_begin] = ACTIONS(325), + [aux_sym__inline_repeat1] = STATE(119), + [anon_sym_LBRACE_] = ACTIONS(147), + [anon_sym__] = ACTIONS(149), + [anon_sym_LBRACE_STAR] = ACTIONS(151), + [anon_sym_STAR] = ACTIONS(153), + [anon_sym_LBRACE_CARET] = ACTIONS(155), + [anon_sym_CARET] = ACTIONS(155), + [anon_sym_LBRACE_TILDE] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_LBRACE_EQ] = ACTIONS(159), + [anon_sym_LBRACE_PLUS] = ACTIONS(161), + [anon_sym_LBRACE_DASH] = ACTIONS(163), + [anon_sym_BSLASH] = ACTIONS(165), + [sym_quotation_marks] = ACTIONS(167), + [sym_ellipsis] = ACTIONS(167), + [sym_em_dash] = ACTIONS(167), + [sym_en_dash] = ACTIONS(169), + [sym_backslash_escape] = ACTIONS(169), + [anon_sym_LT] = ACTIONS(171), + [sym_symbol] = ACTIONS(167), + [anon_sym_LBRACK_CARET] = ACTIONS(173), + [anon_sym_BANG_LBRACK] = ACTIONS(175), + [anon_sym_LBRACK] = ACTIONS(177), + [anon_sym_DOLLAR] = ACTIONS(179), + [anon_sym_TODO] = ACTIONS(181), + [anon_sym_WIP] = ACTIONS(181), + [anon_sym_NOTE] = ACTIONS(183), + [anon_sym_INFO] = ACTIONS(183), + [anon_sym_XXX] = ACTIONS(183), + [sym_fixme] = ACTIONS(167), + [sym__whitespace1] = ACTIONS(185), + [sym__newline] = ACTIONS(187), + [aux_sym__text_token1] = ACTIONS(189), + [sym__verbatim_begin] = ACTIONS(191), }, - [30] = { - [sym__inline] = STATE(900), - [sym__element] = STATE(70), + [26] = { + [sym__inline] = STATE(917), + [sym__element] = STATE(47), [sym_emphasis] = STATE(136), - [sym_emphasis_begin] = STATE(1161), + [sym_emphasis_begin] = STATE(1209), [sym_strong] = STATE(136), - [sym_strong_begin] = STATE(1162), + [sym_strong_begin] = STATE(1210), [sym_superscript] = STATE(136), - [sym_superscript_begin] = STATE(1163), + [sym_superscript_begin] = STATE(1211), [sym_subscript] = STATE(136), - [sym_subscript_begin] = STATE(1164), + [sym_subscript_begin] = STATE(1212), [sym_highlighted] = STATE(136), - [sym_highlighted_begin] = STATE(1165), + [sym_highlighted_begin] = STATE(1213), [sym_insert] = STATE(136), - [sym_insert_begin] = STATE(1166), + [sym_insert_begin] = STATE(1214), [sym_delete] = STATE(136), - [sym_delete_begin] = STATE(1167), + [sym_delete_begin] = STATE(1215), [sym_hard_line_break] = STATE(136), [sym__smart_punctuation] = STATE(136), [sym_autolink] = STATE(136), [sym_footnote_reference] = STATE(136), + [sym_footnote_marker_begin] = STATE(1216), [sym__image] = STATE(136), [sym_full_reference_image] = STATE(136), [sym_collapsed_reference_image] = STATE(136), [sym_inline_image] = STATE(136), - [sym__image_description] = STATE(690), - [sym__image_description_begin] = STATE(1103), + [sym__image_description] = STATE(682), + [sym__image_description_begin] = STATE(1114), [sym__link] = STATE(136), [sym_full_reference_link] = STATE(136), [sym_collapsed_reference_link] = STATE(136), [sym_inline_link] = STATE(136), - [sym_link_text] = STATE(691), - [sym_span] = STATE(70), - [sym__bracketed_text] = STATE(653), - [sym__bracketed_text_begin] = STATE(1102), + [sym_link_text] = STATE(675), + [sym_span] = STATE(47), + [sym__bracketed_text] = STATE(674), + [sym__bracketed_text_begin] = STATE(1113), [sym__comment_with_spaces] = STATE(136), [sym_raw_inline] = STATE(136), [sym_math] = STATE(136), @@ -7414,87 +7303,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(136), [sym_note] = STATE(136), [sym__symbol_fallback] = STATE(136), - [aux_sym__text] = STATE(125), - [aux_sym__inline_repeat1] = STATE(70), - [anon_sym_LBRACE_] = ACTIONS(97), - [anon_sym__] = ACTIONS(99), - [anon_sym_LBRACE_STAR] = ACTIONS(101), - [anon_sym_STAR] = ACTIONS(103), - [anon_sym_LBRACE_CARET] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [anon_sym_LBRACE_TILDE] = ACTIONS(107), - [anon_sym_TILDE] = ACTIONS(107), - [anon_sym_LBRACE_EQ] = ACTIONS(109), - [anon_sym_LBRACE_PLUS] = ACTIONS(111), - [anon_sym_LBRACE_DASH] = ACTIONS(113), - [anon_sym_BSLASH] = ACTIONS(115), - [sym_quotation_marks] = ACTIONS(117), - [sym_ellipsis] = ACTIONS(117), - [sym_em_dash] = ACTIONS(117), - [sym_en_dash] = ACTIONS(119), - [sym_backslash_escape] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [sym_symbol] = ACTIONS(117), - [anon_sym_LBRACK_CARET] = ACTIONS(123), - [anon_sym_BANG_LBRACK] = ACTIONS(125), - [anon_sym_LBRACK] = ACTIONS(127), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_TODO] = ACTIONS(131), - [anon_sym_WIP] = ACTIONS(131), - [anon_sym_NOTE] = ACTIONS(133), - [anon_sym_INFO] = ACTIONS(133), - [anon_sym_XXX] = ACTIONS(133), - [sym_fixme] = ACTIONS(117), - [sym__whitespace1] = ACTIONS(135), - [sym__newline] = ACTIONS(137), - [aux_sym__text_token1] = ACTIONS(139), - [sym__verbatim_begin] = ACTIONS(141), + [aux_sym__text] = STATE(127), + [aux_sym__inline_repeat1] = STATE(47), + [anon_sym_LBRACE_] = ACTIONS(377), + [anon_sym__] = ACTIONS(379), + [anon_sym_LBRACE_STAR] = ACTIONS(381), + [anon_sym_STAR] = ACTIONS(383), + [anon_sym_LBRACE_CARET] = ACTIONS(385), + [anon_sym_CARET] = ACTIONS(385), + [anon_sym_LBRACE_TILDE] = ACTIONS(387), + [anon_sym_TILDE] = ACTIONS(387), + [anon_sym_LBRACE_EQ] = ACTIONS(389), + [anon_sym_LBRACE_PLUS] = ACTIONS(391), + [anon_sym_LBRACE_DASH] = ACTIONS(393), + [anon_sym_BSLASH] = ACTIONS(395), + [sym_quotation_marks] = ACTIONS(397), + [sym_ellipsis] = ACTIONS(397), + [sym_em_dash] = ACTIONS(397), + [sym_en_dash] = ACTIONS(399), + [sym_backslash_escape] = ACTIONS(399), + [anon_sym_LT] = ACTIONS(401), + [sym_symbol] = ACTIONS(397), + [anon_sym_LBRACK_CARET] = ACTIONS(403), + [anon_sym_BANG_LBRACK] = ACTIONS(405), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_DOLLAR] = ACTIONS(409), + [anon_sym_TODO] = ACTIONS(411), + [anon_sym_WIP] = ACTIONS(411), + [anon_sym_NOTE] = ACTIONS(413), + [anon_sym_INFO] = ACTIONS(413), + [anon_sym_XXX] = ACTIONS(413), + [sym_fixme] = ACTIONS(397), + [sym__whitespace1] = ACTIONS(415), + [sym__newline] = ACTIONS(417), + [aux_sym__text_token1] = ACTIONS(419), + [sym__verbatim_begin] = ACTIONS(421), }, - [31] = { - [sym__inline] = STATE(998), - [sym__element] = STATE(70), - [sym_emphasis] = STATE(136), - [sym_emphasis_begin] = STATE(1161), - [sym_strong] = STATE(136), - [sym_strong_begin] = STATE(1162), - [sym_superscript] = STATE(136), - [sym_superscript_begin] = STATE(1163), - [sym_subscript] = STATE(136), - [sym_subscript_begin] = STATE(1164), - [sym_highlighted] = STATE(136), - [sym_highlighted_begin] = STATE(1165), - [sym_insert] = STATE(136), - [sym_insert_begin] = STATE(1166), - [sym_delete] = STATE(136), - [sym_delete_begin] = STATE(1167), - [sym_hard_line_break] = STATE(136), - [sym__smart_punctuation] = STATE(136), - [sym_autolink] = STATE(136), - [sym_footnote_reference] = STATE(136), - [sym__image] = STATE(136), - [sym_full_reference_image] = STATE(136), - [sym_collapsed_reference_image] = STATE(136), - [sym_inline_image] = STATE(136), - [sym__image_description] = STATE(690), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(136), - [sym_full_reference_link] = STATE(136), - [sym_collapsed_reference_link] = STATE(136), - [sym_inline_link] = STATE(136), - [sym_link_text] = STATE(691), - [sym_span] = STATE(70), - [sym__bracketed_text] = STATE(653), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(136), - [sym_raw_inline] = STATE(136), - [sym_math] = STATE(136), - [sym_verbatim] = STATE(136), - [sym__todo_highlights] = STATE(136), - [sym_todo] = STATE(136), - [sym_note] = STATE(136), - [sym__symbol_fallback] = STATE(136), - [aux_sym__text] = STATE(125), - [aux_sym__inline_repeat1] = STATE(70), + [27] = { + [sym__inline] = STATE(915), + [sym__element] = STATE(14), + [sym_emphasis] = STATE(133), + [sym_emphasis_begin] = STATE(1201), + [sym_strong] = STATE(133), + [sym_strong_begin] = STATE(1202), + [sym_superscript] = STATE(133), + [sym_superscript_begin] = STATE(1203), + [sym_subscript] = STATE(133), + [sym_subscript_begin] = STATE(1204), + [sym_highlighted] = STATE(133), + [sym_highlighted_begin] = STATE(1205), + [sym_insert] = STATE(133), + [sym_insert_begin] = STATE(1206), + [sym_delete] = STATE(133), + [sym_delete_begin] = STATE(1207), + [sym_hard_line_break] = STATE(133), + [sym__smart_punctuation] = STATE(133), + [sym_autolink] = STATE(133), + [sym_footnote_reference] = STATE(133), + [sym_footnote_marker_begin] = STATE(1208), + [sym__image] = STATE(133), + [sym_full_reference_image] = STATE(133), + [sym_collapsed_reference_image] = STATE(133), + [sym_inline_image] = STATE(133), + [sym__image_description] = STATE(688), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(133), + [sym_full_reference_link] = STATE(133), + [sym_collapsed_reference_link] = STATE(133), + [sym_inline_link] = STATE(133), + [sym_link_text] = STATE(686), + [sym_span] = STATE(14), + [sym__bracketed_text] = STATE(673), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(133), + [sym_raw_inline] = STATE(133), + [sym_math] = STATE(133), + [sym_verbatim] = STATE(133), + [sym__todo_highlights] = STATE(133), + [sym_todo] = STATE(133), + [sym_note] = STATE(133), + [sym__symbol_fallback] = STATE(133), + [aux_sym__text] = STATE(129), + [aux_sym__inline_repeat1] = STATE(14), + [anon_sym_LBRACE_] = ACTIONS(423), + [anon_sym__] = ACTIONS(425), + [anon_sym_LBRACE_STAR] = ACTIONS(427), + [anon_sym_STAR] = ACTIONS(429), + [anon_sym_LBRACE_CARET] = ACTIONS(431), + [anon_sym_CARET] = ACTIONS(431), + [anon_sym_LBRACE_TILDE] = ACTIONS(433), + [anon_sym_TILDE] = ACTIONS(433), + [anon_sym_LBRACE_EQ] = ACTIONS(435), + [anon_sym_LBRACE_PLUS] = ACTIONS(437), + [anon_sym_LBRACE_DASH] = ACTIONS(439), + [anon_sym_BSLASH] = ACTIONS(441), + [sym_quotation_marks] = ACTIONS(443), + [sym_ellipsis] = ACTIONS(443), + [sym_em_dash] = ACTIONS(443), + [sym_en_dash] = ACTIONS(445), + [sym_backslash_escape] = ACTIONS(445), + [anon_sym_LT] = ACTIONS(447), + [sym_symbol] = ACTIONS(443), + [anon_sym_LBRACK_CARET] = ACTIONS(449), + [anon_sym_BANG_LBRACK] = ACTIONS(451), + [anon_sym_LBRACK] = ACTIONS(453), + [anon_sym_DOLLAR] = ACTIONS(455), + [anon_sym_TODO] = ACTIONS(457), + [anon_sym_WIP] = ACTIONS(457), + [anon_sym_NOTE] = ACTIONS(459), + [anon_sym_INFO] = ACTIONS(459), + [anon_sym_XXX] = ACTIONS(459), + [sym_fixme] = ACTIONS(443), + [sym__whitespace1] = ACTIONS(461), + [sym__newline] = ACTIONS(469), + [aux_sym__text_token1] = ACTIONS(465), + [sym__verbatim_begin] = ACTIONS(467), + }, + [28] = { + [sym__inline] = STATE(914), + [sym__element] = STATE(3), + [sym_emphasis] = STATE(137), + [sym_emphasis_begin] = STATE(1193), + [sym_strong] = STATE(137), + [sym_strong_begin] = STATE(1194), + [sym_superscript] = STATE(137), + [sym_superscript_begin] = STATE(1195), + [sym_subscript] = STATE(137), + [sym_subscript_begin] = STATE(1196), + [sym_highlighted] = STATE(137), + [sym_highlighted_begin] = STATE(1197), + [sym_insert] = STATE(137), + [sym_insert_begin] = STATE(1198), + [sym_delete] = STATE(137), + [sym_delete_begin] = STATE(1199), + [sym_hard_line_break] = STATE(137), + [sym__smart_punctuation] = STATE(137), + [sym_autolink] = STATE(137), + [sym_footnote_reference] = STATE(137), + [sym_footnote_marker_begin] = STATE(1200), + [sym__image] = STATE(137), + [sym_full_reference_image] = STATE(137), + [sym_collapsed_reference_image] = STATE(137), + [sym_inline_image] = STATE(137), + [sym__image_description] = STATE(694), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(137), + [sym_full_reference_link] = STATE(137), + [sym_collapsed_reference_link] = STATE(137), + [sym_inline_link] = STATE(137), + [sym_link_text] = STATE(693), + [sym_span] = STATE(3), + [sym__bracketed_text] = STATE(672), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(137), + [sym_raw_inline] = STATE(137), + [sym_math] = STATE(137), + [sym_verbatim] = STATE(137), + [sym__todo_highlights] = STATE(137), + [sym_todo] = STATE(137), + [sym_note] = STATE(137), + [sym__symbol_fallback] = STATE(137), + [aux_sym__text] = STATE(131), + [aux_sym__inline_repeat1] = STATE(3), [anon_sym_LBRACE_] = ACTIONS(97), [anon_sym__] = ACTIONS(99), [anon_sym_LBRACE_STAR] = ACTIONS(101), @@ -7525,45 +7495,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_XXX] = ACTIONS(133), [sym_fixme] = ACTIONS(117), [sym__whitespace1] = ACTIONS(135), - [sym__newline] = ACTIONS(137), + [sym__newline] = ACTIONS(145), [aux_sym__text_token1] = ACTIONS(139), [sym__verbatim_begin] = ACTIONS(141), }, - [32] = { - [sym__inline] = STATE(899), - [sym__element] = STATE(105), + [29] = { + [sym__inline] = STATE(913), + [sym__element] = STATE(107), [sym_emphasis] = STATE(140), - [sym_emphasis_begin] = STATE(1154), + [sym_emphasis_begin] = STATE(1185), [sym_strong] = STATE(140), - [sym_strong_begin] = STATE(1155), + [sym_strong_begin] = STATE(1186), [sym_superscript] = STATE(140), - [sym_superscript_begin] = STATE(1156), + [sym_superscript_begin] = STATE(1187), [sym_subscript] = STATE(140), - [sym_subscript_begin] = STATE(1157), + [sym_subscript_begin] = STATE(1188), [sym_highlighted] = STATE(140), - [sym_highlighted_begin] = STATE(1158), + [sym_highlighted_begin] = STATE(1189), [sym_insert] = STATE(140), - [sym_insert_begin] = STATE(1159), + [sym_insert_begin] = STATE(1190), [sym_delete] = STATE(140), - [sym_delete_begin] = STATE(1160), + [sym_delete_begin] = STATE(1191), [sym_hard_line_break] = STATE(140), [sym__smart_punctuation] = STATE(140), [sym_autolink] = STATE(140), [sym_footnote_reference] = STATE(140), + [sym_footnote_marker_begin] = STATE(1192), [sym__image] = STATE(140), [sym_full_reference_image] = STATE(140), [sym_collapsed_reference_image] = STATE(140), [sym_inline_image] = STATE(140), - [sym__image_description] = STATE(687), - [sym__image_description_begin] = STATE(1103), + [sym__image_description] = STATE(700), + [sym__image_description_begin] = STATE(1114), [sym__link] = STATE(140), [sym_full_reference_link] = STATE(140), [sym_collapsed_reference_link] = STATE(140), [sym_inline_link] = STATE(140), - [sym_link_text] = STATE(688), - [sym_span] = STATE(105), - [sym__bracketed_text] = STATE(654), - [sym__bracketed_text_begin] = STATE(1102), + [sym_link_text] = STATE(699), + [sym_span] = STATE(107), + [sym__bracketed_text] = STATE(666), + [sym__bracketed_text_begin] = STATE(1113), [sym__comment_with_spaces] = STATE(140), [sym_raw_inline] = STATE(140), [sym_math] = STATE(140), @@ -7572,323 +7543,647 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(140), [sym_note] = STATE(140), [sym__symbol_fallback] = STATE(140), - [aux_sym__text] = STATE(131), - [aux_sym__inline_repeat1] = STATE(105), - [anon_sym_LBRACE_] = ACTIONS(327), - [anon_sym__] = ACTIONS(329), - [anon_sym_LBRACE_STAR] = ACTIONS(331), - [anon_sym_STAR] = ACTIONS(333), - [anon_sym_LBRACE_CARET] = ACTIONS(335), - [anon_sym_CARET] = ACTIONS(335), - [anon_sym_LBRACE_TILDE] = ACTIONS(337), - [anon_sym_TILDE] = ACTIONS(337), - [anon_sym_LBRACE_EQ] = ACTIONS(339), - [anon_sym_LBRACE_PLUS] = ACTIONS(341), - [anon_sym_LBRACE_DASH] = ACTIONS(343), - [anon_sym_BSLASH] = ACTIONS(345), - [sym_quotation_marks] = ACTIONS(347), - [sym_ellipsis] = ACTIONS(347), - [sym_em_dash] = ACTIONS(347), - [sym_en_dash] = ACTIONS(349), - [sym_backslash_escape] = ACTIONS(349), - [anon_sym_LT] = ACTIONS(351), - [sym_symbol] = ACTIONS(347), - [anon_sym_LBRACK_CARET] = ACTIONS(353), - [anon_sym_BANG_LBRACK] = ACTIONS(355), - [anon_sym_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [anon_sym_TODO] = ACTIONS(361), - [anon_sym_WIP] = ACTIONS(361), - [anon_sym_NOTE] = ACTIONS(363), - [anon_sym_INFO] = ACTIONS(363), - [anon_sym_XXX] = ACTIONS(363), - [sym_fixme] = ACTIONS(347), - [sym__whitespace1] = ACTIONS(365), - [sym__newline] = ACTIONS(367), - [aux_sym__text_token1] = ACTIONS(369), - [sym__verbatim_begin] = ACTIONS(371), - }, - [33] = { - [sym__inline] = STATE(997), - [sym__element] = STATE(13), - [sym_emphasis] = STATE(141), - [sym_emphasis_begin] = STATE(1168), - [sym_strong] = STATE(141), - [sym_strong_begin] = STATE(1169), - [sym_superscript] = STATE(141), - [sym_superscript_begin] = STATE(1170), - [sym_subscript] = STATE(141), - [sym_subscript_begin] = STATE(1171), - [sym_highlighted] = STATE(141), - [sym_highlighted_begin] = STATE(1172), - [sym_insert] = STATE(141), - [sym_insert_begin] = STATE(1173), - [sym_delete] = STATE(141), - [sym_delete_begin] = STATE(1174), - [sym_hard_line_break] = STATE(141), - [sym__smart_punctuation] = STATE(141), - [sym_autolink] = STATE(141), - [sym_footnote_reference] = STATE(141), - [sym__image] = STATE(141), - [sym_full_reference_image] = STATE(141), - [sym_collapsed_reference_image] = STATE(141), - [sym_inline_image] = STATE(141), - [sym__image_description] = STATE(674), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(141), - [sym_full_reference_link] = STATE(141), - [sym_collapsed_reference_link] = STATE(141), - [sym_inline_link] = STATE(141), - [sym_link_text] = STATE(672), - [sym_span] = STATE(13), - [sym__bracketed_text] = STATE(655), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(141), - [sym_raw_inline] = STATE(141), - [sym_math] = STATE(141), - [sym_verbatim] = STATE(141), - [sym__todo_highlights] = STATE(141), - [sym_todo] = STATE(141), - [sym_note] = STATE(141), - [sym__symbol_fallback] = STATE(141), - [aux_sym__text] = STATE(128), - [aux_sym__inline_repeat1] = STATE(13), - [anon_sym_LBRACE_] = ACTIONS(281), - [anon_sym__] = ACTIONS(283), - [anon_sym_LBRACE_STAR] = ACTIONS(285), - [anon_sym_STAR] = ACTIONS(287), - [anon_sym_LBRACE_CARET] = ACTIONS(289), - [anon_sym_CARET] = ACTIONS(289), - [anon_sym_LBRACE_TILDE] = ACTIONS(291), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_LBRACE_EQ] = ACTIONS(293), - [anon_sym_LBRACE_PLUS] = ACTIONS(295), - [anon_sym_LBRACE_DASH] = ACTIONS(297), - [anon_sym_BSLASH] = ACTIONS(299), - [sym_quotation_marks] = ACTIONS(301), - [sym_ellipsis] = ACTIONS(301), - [sym_em_dash] = ACTIONS(301), - [sym_en_dash] = ACTIONS(303), - [sym_backslash_escape] = ACTIONS(303), - [anon_sym_LT] = ACTIONS(305), - [sym_symbol] = ACTIONS(301), - [anon_sym_LBRACK_CARET] = ACTIONS(307), - [anon_sym_BANG_LBRACK] = ACTIONS(309), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_DOLLAR] = ACTIONS(313), - [anon_sym_TODO] = ACTIONS(315), - [anon_sym_WIP] = ACTIONS(315), - [anon_sym_NOTE] = ACTIONS(317), - [anon_sym_INFO] = ACTIONS(317), - [anon_sym_XXX] = ACTIONS(317), - [sym_fixme] = ACTIONS(301), - [sym__whitespace1] = ACTIONS(319), - [sym__newline] = ACTIONS(321), - [aux_sym__text_token1] = ACTIONS(323), - [sym__verbatim_begin] = ACTIONS(325), + [aux_sym__text] = STATE(125), + [aux_sym__inline_repeat1] = STATE(107), + [anon_sym_LBRACE_] = ACTIONS(193), + [anon_sym__] = ACTIONS(195), + [anon_sym_LBRACE_STAR] = ACTIONS(197), + [anon_sym_STAR] = ACTIONS(199), + [anon_sym_LBRACE_CARET] = ACTIONS(201), + [anon_sym_CARET] = ACTIONS(201), + [anon_sym_LBRACE_TILDE] = ACTIONS(203), + [anon_sym_TILDE] = ACTIONS(203), + [anon_sym_LBRACE_EQ] = ACTIONS(205), + [anon_sym_LBRACE_PLUS] = ACTIONS(207), + [anon_sym_LBRACE_DASH] = ACTIONS(209), + [anon_sym_BSLASH] = ACTIONS(211), + [sym_quotation_marks] = ACTIONS(213), + [sym_ellipsis] = ACTIONS(213), + [sym_em_dash] = ACTIONS(213), + [sym_en_dash] = ACTIONS(215), + [sym_backslash_escape] = ACTIONS(215), + [anon_sym_LT] = ACTIONS(217), + [sym_symbol] = ACTIONS(213), + [anon_sym_LBRACK_CARET] = ACTIONS(219), + [anon_sym_BANG_LBRACK] = ACTIONS(221), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_DOLLAR] = ACTIONS(225), + [anon_sym_TODO] = ACTIONS(227), + [anon_sym_WIP] = ACTIONS(227), + [anon_sym_NOTE] = ACTIONS(229), + [anon_sym_INFO] = ACTIONS(229), + [anon_sym_XXX] = ACTIONS(229), + [sym_fixme] = ACTIONS(213), + [sym__whitespace1] = ACTIONS(231), + [sym__newline] = ACTIONS(233), + [aux_sym__text_token1] = ACTIONS(235), + [sym__verbatim_begin] = ACTIONS(237), }, - [34] = { - [sym__inline] = STATE(996), - [sym__element] = STATE(103), - [sym_emphasis] = STATE(139), - [sym_emphasis_begin] = STATE(1175), - [sym_strong] = STATE(139), - [sym_strong_begin] = STATE(1176), - [sym_superscript] = STATE(139), - [sym_superscript_begin] = STATE(1177), - [sym_subscript] = STATE(139), - [sym_subscript_begin] = STATE(1178), - [sym_highlighted] = STATE(139), - [sym_highlighted_begin] = STATE(1179), - [sym_insert] = STATE(139), - [sym_insert_begin] = STATE(1180), - [sym_delete] = STATE(139), - [sym_delete_begin] = STATE(1181), - [sym_hard_line_break] = STATE(139), - [sym__smart_punctuation] = STATE(139), - [sym_autolink] = STATE(139), - [sym_footnote_reference] = STATE(139), - [sym__image] = STATE(139), - [sym_full_reference_image] = STATE(139), - [sym_collapsed_reference_image] = STATE(139), - [sym_inline_image] = STATE(139), - [sym__image_description] = STATE(682), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(139), - [sym_full_reference_link] = STATE(139), - [sym_collapsed_reference_link] = STATE(139), - [sym_inline_link] = STATE(139), - [sym_link_text] = STATE(681), - [sym_span] = STATE(103), - [sym__bracketed_text] = STATE(656), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(139), - [sym_raw_inline] = STATE(139), - [sym_math] = STATE(139), - [sym_verbatim] = STATE(139), - [sym__todo_highlights] = STATE(139), - [sym_todo] = STATE(139), - [sym_note] = STATE(139), - [sym__symbol_fallback] = STATE(139), - [aux_sym__text] = STATE(129), - [aux_sym__inline_repeat1] = STATE(103), - [anon_sym_LBRACE_] = ACTIONS(235), - [anon_sym__] = ACTIONS(237), - [anon_sym_LBRACE_STAR] = ACTIONS(239), - [anon_sym_STAR] = ACTIONS(241), - [anon_sym_LBRACE_CARET] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(243), - [anon_sym_LBRACE_TILDE] = ACTIONS(245), - [anon_sym_TILDE] = ACTIONS(245), - [anon_sym_LBRACE_EQ] = ACTIONS(247), - [anon_sym_LBRACE_PLUS] = ACTIONS(249), - [anon_sym_LBRACE_DASH] = ACTIONS(251), - [anon_sym_BSLASH] = ACTIONS(253), - [sym_quotation_marks] = ACTIONS(255), - [sym_ellipsis] = ACTIONS(255), - [sym_em_dash] = ACTIONS(255), - [sym_en_dash] = ACTIONS(257), - [sym_backslash_escape] = ACTIONS(257), - [anon_sym_LT] = ACTIONS(259), - [sym_symbol] = ACTIONS(255), - [anon_sym_LBRACK_CARET] = ACTIONS(261), - [anon_sym_BANG_LBRACK] = ACTIONS(263), - [anon_sym_LBRACK] = ACTIONS(265), - [anon_sym_DOLLAR] = ACTIONS(267), - [anon_sym_TODO] = ACTIONS(269), - [anon_sym_WIP] = ACTIONS(269), - [anon_sym_NOTE] = ACTIONS(271), - [anon_sym_INFO] = ACTIONS(271), - [anon_sym_XXX] = ACTIONS(271), - [sym_fixme] = ACTIONS(255), - [sym__whitespace1] = ACTIONS(273), - [sym__newline] = ACTIONS(275), - [aux_sym__text_token1] = ACTIONS(277), - [sym__verbatim_begin] = ACTIONS(279), + [30] = { + [sym__inline] = STATE(912), + [sym__element] = STATE(72), + [sym_emphasis] = STATE(135), + [sym_emphasis_begin] = STATE(1177), + [sym_strong] = STATE(135), + [sym_strong_begin] = STATE(1178), + [sym_superscript] = STATE(135), + [sym_superscript_begin] = STATE(1179), + [sym_subscript] = STATE(135), + [sym_subscript_begin] = STATE(1180), + [sym_highlighted] = STATE(135), + [sym_highlighted_begin] = STATE(1181), + [sym_insert] = STATE(135), + [sym_insert_begin] = STATE(1182), + [sym_delete] = STATE(135), + [sym_delete_begin] = STATE(1183), + [sym_hard_line_break] = STATE(135), + [sym__smart_punctuation] = STATE(135), + [sym_autolink] = STATE(135), + [sym_footnote_reference] = STATE(135), + [sym_footnote_marker_begin] = STATE(1184), + [sym__image] = STATE(135), + [sym_full_reference_image] = STATE(135), + [sym_collapsed_reference_image] = STATE(135), + [sym_inline_image] = STATE(135), + [sym__image_description] = STATE(687), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(135), + [sym_full_reference_link] = STATE(135), + [sym_collapsed_reference_link] = STATE(135), + [sym_inline_link] = STATE(135), + [sym_link_text] = STATE(684), + [sym_span] = STATE(72), + [sym__bracketed_text] = STATE(670), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(135), + [sym_raw_inline] = STATE(135), + [sym_math] = STATE(135), + [sym_verbatim] = STATE(135), + [sym__todo_highlights] = STATE(135), + [sym_todo] = STATE(135), + [sym_note] = STATE(135), + [sym__symbol_fallback] = STATE(135), + [aux_sym__text] = STATE(124), + [aux_sym__inline_repeat1] = STATE(72), + [anon_sym_LBRACE_] = ACTIONS(239), + [anon_sym__] = ACTIONS(241), + [anon_sym_LBRACE_STAR] = ACTIONS(243), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_LBRACE_CARET] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_LBRACE_TILDE] = ACTIONS(249), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_LBRACE_EQ] = ACTIONS(251), + [anon_sym_LBRACE_PLUS] = ACTIONS(253), + [anon_sym_LBRACE_DASH] = ACTIONS(255), + [anon_sym_BSLASH] = ACTIONS(257), + [sym_quotation_marks] = ACTIONS(259), + [sym_ellipsis] = ACTIONS(259), + [sym_em_dash] = ACTIONS(259), + [sym_en_dash] = ACTIONS(261), + [sym_backslash_escape] = ACTIONS(261), + [anon_sym_LT] = ACTIONS(263), + [sym_symbol] = ACTIONS(259), + [anon_sym_LBRACK_CARET] = ACTIONS(265), + [anon_sym_BANG_LBRACK] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_TODO] = ACTIONS(273), + [anon_sym_WIP] = ACTIONS(273), + [anon_sym_NOTE] = ACTIONS(275), + [anon_sym_INFO] = ACTIONS(275), + [anon_sym_XXX] = ACTIONS(275), + [sym_fixme] = ACTIONS(259), + [sym__whitespace1] = ACTIONS(277), + [sym__newline] = ACTIONS(279), + [aux_sym__text_token1] = ACTIONS(281), + [sym__verbatim_begin] = ACTIONS(283), }, - [35] = { - [sym__inline_without_trailing_space] = STATE(898), - [sym__element] = STATE(562), - [sym_emphasis] = STATE(142), - [sym_emphasis_begin] = STATE(1147), - [sym_strong] = STATE(142), - [sym_strong_begin] = STATE(1148), - [sym_superscript] = STATE(142), - [sym_superscript_begin] = STATE(1149), - [sym_subscript] = STATE(142), - [sym_subscript_begin] = STATE(1150), - [sym_highlighted] = STATE(142), - [sym_highlighted_begin] = STATE(1151), - [sym_insert] = STATE(142), - [sym_insert_begin] = STATE(1152), - [sym_delete] = STATE(142), - [sym_delete_begin] = STATE(1153), - [sym_hard_line_break] = STATE(142), - [sym__smart_punctuation] = STATE(142), - [sym_autolink] = STATE(142), - [sym_footnote_reference] = STATE(142), - [sym__image] = STATE(142), - [sym_full_reference_image] = STATE(142), - [sym_collapsed_reference_image] = STATE(142), - [sym_inline_image] = STATE(142), - [sym__image_description] = STATE(685), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(142), - [sym_full_reference_link] = STATE(142), - [sym_collapsed_reference_link] = STATE(142), - [sym_inline_link] = STATE(142), - [sym_link_text] = STATE(683), - [sym_span] = STATE(562), - [sym__bracketed_text] = STATE(657), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(142), - [sym_raw_inline] = STATE(142), - [sym_math] = STATE(142), - [sym_verbatim] = STATE(142), - [sym__todo_highlights] = STATE(142), - [sym_todo] = STATE(142), - [sym_note] = STATE(142), - [sym__symbol_fallback] = STATE(142), + [31] = { + [sym__inline] = STATE(911), + [sym__element] = STATE(82), + [sym_emphasis] = STATE(143), + [sym_emphasis_begin] = STATE(1169), + [sym_strong] = STATE(143), + [sym_strong_begin] = STATE(1170), + [sym_superscript] = STATE(143), + [sym_superscript_begin] = STATE(1171), + [sym_subscript] = STATE(143), + [sym_subscript_begin] = STATE(1172), + [sym_highlighted] = STATE(143), + [sym_highlighted_begin] = STATE(1173), + [sym_insert] = STATE(143), + [sym_insert_begin] = STATE(1174), + [sym_delete] = STATE(143), + [sym_delete_begin] = STATE(1175), + [sym_hard_line_break] = STATE(143), + [sym__smart_punctuation] = STATE(143), + [sym_autolink] = STATE(143), + [sym_footnote_reference] = STATE(143), + [sym_footnote_marker_begin] = STATE(1176), + [sym__image] = STATE(143), + [sym_full_reference_image] = STATE(143), + [sym_collapsed_reference_image] = STATE(143), + [sym_inline_image] = STATE(143), + [sym__image_description] = STATE(701), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(143), + [sym_full_reference_link] = STATE(143), + [sym_collapsed_reference_link] = STATE(143), + [sym_inline_link] = STATE(143), + [sym_link_text] = STATE(702), + [sym_span] = STATE(82), + [sym__bracketed_text] = STATE(667), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(143), + [sym_raw_inline] = STATE(143), + [sym_math] = STATE(143), + [sym_verbatim] = STATE(143), + [sym__todo_highlights] = STATE(143), + [sym_todo] = STATE(143), + [sym_note] = STATE(143), + [sym__symbol_fallback] = STATE(143), [aux_sym__text] = STATE(126), - [aux_sym__inline_repeat1] = STATE(120), - [anon_sym_LBRACE_] = ACTIONS(373), - [anon_sym__] = ACTIONS(375), - [anon_sym_LBRACE_STAR] = ACTIONS(377), - [anon_sym_STAR] = ACTIONS(379), - [anon_sym_LBRACE_CARET] = ACTIONS(381), - [anon_sym_CARET] = ACTIONS(381), - [anon_sym_LBRACE_TILDE] = ACTIONS(383), - [anon_sym_TILDE] = ACTIONS(383), - [anon_sym_LBRACE_EQ] = ACTIONS(385), - [anon_sym_LBRACE_PLUS] = ACTIONS(387), - [anon_sym_LBRACE_DASH] = ACTIONS(389), - [anon_sym_BSLASH] = ACTIONS(391), - [sym_quotation_marks] = ACTIONS(393), - [sym_ellipsis] = ACTIONS(393), - [sym_em_dash] = ACTIONS(393), - [sym_en_dash] = ACTIONS(395), - [sym_backslash_escape] = ACTIONS(395), - [anon_sym_LT] = ACTIONS(397), - [sym_symbol] = ACTIONS(393), - [anon_sym_LBRACK_CARET] = ACTIONS(399), - [anon_sym_BANG_LBRACK] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_DOLLAR] = ACTIONS(405), - [anon_sym_TODO] = ACTIONS(407), - [anon_sym_WIP] = ACTIONS(407), - [anon_sym_NOTE] = ACTIONS(409), - [anon_sym_INFO] = ACTIONS(409), - [anon_sym_XXX] = ACTIONS(409), - [sym_fixme] = ACTIONS(393), - [sym__whitespace1] = ACTIONS(411), - [sym__newline] = ACTIONS(413), - [aux_sym__text_token1] = ACTIONS(415), - [sym__verbatim_begin] = ACTIONS(417), + [aux_sym__inline_repeat1] = STATE(82), + [anon_sym_LBRACE_] = ACTIONS(285), + [anon_sym__] = ACTIONS(287), + [anon_sym_LBRACE_STAR] = ACTIONS(289), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_LBRACE_CARET] = ACTIONS(293), + [anon_sym_CARET] = ACTIONS(293), + [anon_sym_LBRACE_TILDE] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_LBRACE_EQ] = ACTIONS(297), + [anon_sym_LBRACE_PLUS] = ACTIONS(299), + [anon_sym_LBRACE_DASH] = ACTIONS(301), + [anon_sym_BSLASH] = ACTIONS(303), + [sym_quotation_marks] = ACTIONS(305), + [sym_ellipsis] = ACTIONS(305), + [sym_em_dash] = ACTIONS(305), + [sym_en_dash] = ACTIONS(307), + [sym_backslash_escape] = ACTIONS(307), + [anon_sym_LT] = ACTIONS(309), + [sym_symbol] = ACTIONS(305), + [anon_sym_LBRACK_CARET] = ACTIONS(311), + [anon_sym_BANG_LBRACK] = ACTIONS(313), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_DOLLAR] = ACTIONS(317), + [anon_sym_TODO] = ACTIONS(319), + [anon_sym_WIP] = ACTIONS(319), + [anon_sym_NOTE] = ACTIONS(321), + [anon_sym_INFO] = ACTIONS(321), + [anon_sym_XXX] = ACTIONS(321), + [sym_fixme] = ACTIONS(305), + [sym__whitespace1] = ACTIONS(323), + [sym__newline] = ACTIONS(325), + [aux_sym__text_token1] = ACTIONS(327), + [sym__verbatim_begin] = ACTIONS(329), }, - [36] = { - [sym__element] = STATE(36), - [sym_emphasis] = STATE(139), - [sym_emphasis_begin] = STATE(1175), - [sym_strong] = STATE(139), - [sym_strong_begin] = STATE(1176), - [sym_superscript] = STATE(139), - [sym_superscript_begin] = STATE(1177), - [sym_subscript] = STATE(139), - [sym_subscript_begin] = STATE(1178), - [sym_highlighted] = STATE(139), - [sym_highlighted_begin] = STATE(1179), - [sym_insert] = STATE(139), - [sym_insert_begin] = STATE(1180), - [sym_delete] = STATE(139), - [sym_delete_begin] = STATE(1181), - [sym_hard_line_break] = STATE(139), - [sym__smart_punctuation] = STATE(139), - [sym_autolink] = STATE(139), - [sym_footnote_reference] = STATE(139), - [sym__image] = STATE(139), - [sym_full_reference_image] = STATE(139), - [sym_collapsed_reference_image] = STATE(139), - [sym_inline_image] = STATE(139), - [sym__image_description] = STATE(682), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(139), - [sym_full_reference_link] = STATE(139), - [sym_collapsed_reference_link] = STATE(139), - [sym_inline_link] = STATE(139), - [sym_link_text] = STATE(681), - [sym_span] = STATE(36), - [sym__bracketed_text] = STATE(656), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(139), - [sym_raw_inline] = STATE(139), - [sym_math] = STATE(139), - [sym_verbatim] = STATE(139), - [sym__todo_highlights] = STATE(139), - [sym_todo] = STATE(139), - [sym_note] = STATE(139), - [sym__symbol_fallback] = STATE(139), - [aux_sym__text] = STATE(129), - [aux_sym__inline_repeat1] = STATE(36), + [32] = { + [sym__inline] = STATE(899), + [sym__element] = STATE(72), + [sym_emphasis] = STATE(135), + [sym_emphasis_begin] = STATE(1177), + [sym_strong] = STATE(135), + [sym_strong_begin] = STATE(1178), + [sym_superscript] = STATE(135), + [sym_superscript_begin] = STATE(1179), + [sym_subscript] = STATE(135), + [sym_subscript_begin] = STATE(1180), + [sym_highlighted] = STATE(135), + [sym_highlighted_begin] = STATE(1181), + [sym_insert] = STATE(135), + [sym_insert_begin] = STATE(1182), + [sym_delete] = STATE(135), + [sym_delete_begin] = STATE(1183), + [sym_hard_line_break] = STATE(135), + [sym__smart_punctuation] = STATE(135), + [sym_autolink] = STATE(135), + [sym_footnote_reference] = STATE(135), + [sym_footnote_marker_begin] = STATE(1184), + [sym__image] = STATE(135), + [sym_full_reference_image] = STATE(135), + [sym_collapsed_reference_image] = STATE(135), + [sym_inline_image] = STATE(135), + [sym__image_description] = STATE(687), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(135), + [sym_full_reference_link] = STATE(135), + [sym_collapsed_reference_link] = STATE(135), + [sym_inline_link] = STATE(135), + [sym_link_text] = STATE(684), + [sym_span] = STATE(72), + [sym__bracketed_text] = STATE(670), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(135), + [sym_raw_inline] = STATE(135), + [sym_math] = STATE(135), + [sym_verbatim] = STATE(135), + [sym__todo_highlights] = STATE(135), + [sym_todo] = STATE(135), + [sym_note] = STATE(135), + [sym__symbol_fallback] = STATE(135), + [aux_sym__text] = STATE(124), + [aux_sym__inline_repeat1] = STATE(72), + [anon_sym_LBRACE_] = ACTIONS(239), + [anon_sym__] = ACTIONS(241), + [anon_sym_LBRACE_STAR] = ACTIONS(243), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_LBRACE_CARET] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_LBRACE_TILDE] = ACTIONS(249), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_LBRACE_EQ] = ACTIONS(251), + [anon_sym_LBRACE_PLUS] = ACTIONS(253), + [anon_sym_LBRACE_DASH] = ACTIONS(255), + [anon_sym_BSLASH] = ACTIONS(257), + [sym_quotation_marks] = ACTIONS(259), + [sym_ellipsis] = ACTIONS(259), + [sym_em_dash] = ACTIONS(259), + [sym_en_dash] = ACTIONS(261), + [sym_backslash_escape] = ACTIONS(261), + [anon_sym_LT] = ACTIONS(263), + [sym_symbol] = ACTIONS(259), + [anon_sym_LBRACK_CARET] = ACTIONS(265), + [anon_sym_BANG_LBRACK] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_TODO] = ACTIONS(273), + [anon_sym_WIP] = ACTIONS(273), + [anon_sym_NOTE] = ACTIONS(275), + [anon_sym_INFO] = ACTIONS(275), + [anon_sym_XXX] = ACTIONS(275), + [sym_fixme] = ACTIONS(259), + [sym__whitespace1] = ACTIONS(277), + [sym__newline] = ACTIONS(279), + [aux_sym__text_token1] = ACTIONS(281), + [sym__verbatim_begin] = ACTIONS(283), + }, + [33] = { + [sym__inline_without_trailing_space] = STATE(910), + [sym__element] = STATE(572), + [sym_emphasis] = STATE(138), + [sym_emphasis_begin] = STATE(1161), + [sym_strong] = STATE(138), + [sym_strong_begin] = STATE(1162), + [sym_superscript] = STATE(138), + [sym_superscript_begin] = STATE(1163), + [sym_subscript] = STATE(138), + [sym_subscript_begin] = STATE(1164), + [sym_highlighted] = STATE(138), + [sym_highlighted_begin] = STATE(1165), + [sym_insert] = STATE(138), + [sym_insert_begin] = STATE(1166), + [sym_delete] = STATE(138), + [sym_delete_begin] = STATE(1167), + [sym_hard_line_break] = STATE(138), + [sym__smart_punctuation] = STATE(138), + [sym_autolink] = STATE(138), + [sym_footnote_reference] = STATE(138), + [sym_footnote_marker_begin] = STATE(1168), + [sym__image] = STATE(138), + [sym_full_reference_image] = STATE(138), + [sym_collapsed_reference_image] = STATE(138), + [sym_inline_image] = STATE(138), + [sym__image_description] = STATE(703), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(138), + [sym_full_reference_link] = STATE(138), + [sym_collapsed_reference_link] = STATE(138), + [sym_inline_link] = STATE(138), + [sym_link_text] = STATE(697), + [sym_span] = STATE(572), + [sym__bracketed_text] = STATE(671), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(138), + [sym_raw_inline] = STATE(138), + [sym_math] = STATE(138), + [sym_verbatim] = STATE(138), + [sym__todo_highlights] = STATE(138), + [sym_todo] = STATE(138), + [sym_note] = STATE(138), + [sym__symbol_fallback] = STATE(138), + [aux_sym__text] = STATE(122), + [aux_sym__inline_repeat1] = STATE(120), + [anon_sym_LBRACE_] = ACTIONS(331), + [anon_sym__] = ACTIONS(333), + [anon_sym_LBRACE_STAR] = ACTIONS(335), + [anon_sym_STAR] = ACTIONS(337), + [anon_sym_LBRACE_CARET] = ACTIONS(339), + [anon_sym_CARET] = ACTIONS(339), + [anon_sym_LBRACE_TILDE] = ACTIONS(341), + [anon_sym_TILDE] = ACTIONS(341), + [anon_sym_LBRACE_EQ] = ACTIONS(343), + [anon_sym_LBRACE_PLUS] = ACTIONS(345), + [anon_sym_LBRACE_DASH] = ACTIONS(347), + [anon_sym_BSLASH] = ACTIONS(349), + [sym_quotation_marks] = ACTIONS(351), + [sym_ellipsis] = ACTIONS(351), + [sym_em_dash] = ACTIONS(351), + [sym_en_dash] = ACTIONS(353), + [sym_backslash_escape] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [sym_symbol] = ACTIONS(351), + [anon_sym_LBRACK_CARET] = ACTIONS(357), + [anon_sym_BANG_LBRACK] = ACTIONS(359), + [anon_sym_LBRACK] = ACTIONS(361), + [anon_sym_DOLLAR] = ACTIONS(363), + [anon_sym_TODO] = ACTIONS(365), + [anon_sym_WIP] = ACTIONS(365), + [anon_sym_NOTE] = ACTIONS(367), + [anon_sym_INFO] = ACTIONS(367), + [anon_sym_XXX] = ACTIONS(367), + [sym_fixme] = ACTIONS(351), + [sym__whitespace1] = ACTIONS(369), + [sym__newline] = ACTIONS(371), + [aux_sym__text_token1] = ACTIONS(373), + [sym__verbatim_begin] = ACTIONS(375), + }, + [34] = { + [sym__inline] = STATE(1009), + [sym__element] = STATE(107), + [sym_emphasis] = STATE(140), + [sym_emphasis_begin] = STATE(1185), + [sym_strong] = STATE(140), + [sym_strong_begin] = STATE(1186), + [sym_superscript] = STATE(140), + [sym_superscript_begin] = STATE(1187), + [sym_subscript] = STATE(140), + [sym_subscript_begin] = STATE(1188), + [sym_highlighted] = STATE(140), + [sym_highlighted_begin] = STATE(1189), + [sym_insert] = STATE(140), + [sym_insert_begin] = STATE(1190), + [sym_delete] = STATE(140), + [sym_delete_begin] = STATE(1191), + [sym_hard_line_break] = STATE(140), + [sym__smart_punctuation] = STATE(140), + [sym_autolink] = STATE(140), + [sym_footnote_reference] = STATE(140), + [sym_footnote_marker_begin] = STATE(1192), + [sym__image] = STATE(140), + [sym_full_reference_image] = STATE(140), + [sym_collapsed_reference_image] = STATE(140), + [sym_inline_image] = STATE(140), + [sym__image_description] = STATE(700), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(140), + [sym_full_reference_link] = STATE(140), + [sym_collapsed_reference_link] = STATE(140), + [sym_inline_link] = STATE(140), + [sym_link_text] = STATE(699), + [sym_span] = STATE(107), + [sym__bracketed_text] = STATE(666), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(140), + [sym_raw_inline] = STATE(140), + [sym_math] = STATE(140), + [sym_verbatim] = STATE(140), + [sym__todo_highlights] = STATE(140), + [sym_todo] = STATE(140), + [sym_note] = STATE(140), + [sym__symbol_fallback] = STATE(140), + [aux_sym__text] = STATE(125), + [aux_sym__inline_repeat1] = STATE(107), + [anon_sym_LBRACE_] = ACTIONS(193), + [anon_sym__] = ACTIONS(195), + [anon_sym_LBRACE_STAR] = ACTIONS(197), + [anon_sym_STAR] = ACTIONS(199), + [anon_sym_LBRACE_CARET] = ACTIONS(201), + [anon_sym_CARET] = ACTIONS(201), + [anon_sym_LBRACE_TILDE] = ACTIONS(203), + [anon_sym_TILDE] = ACTIONS(203), + [anon_sym_LBRACE_EQ] = ACTIONS(205), + [anon_sym_LBRACE_PLUS] = ACTIONS(207), + [anon_sym_LBRACE_DASH] = ACTIONS(209), + [anon_sym_BSLASH] = ACTIONS(211), + [sym_quotation_marks] = ACTIONS(213), + [sym_ellipsis] = ACTIONS(213), + [sym_em_dash] = ACTIONS(213), + [sym_en_dash] = ACTIONS(215), + [sym_backslash_escape] = ACTIONS(215), + [anon_sym_LT] = ACTIONS(217), + [sym_symbol] = ACTIONS(213), + [anon_sym_LBRACK_CARET] = ACTIONS(219), + [anon_sym_BANG_LBRACK] = ACTIONS(221), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_DOLLAR] = ACTIONS(225), + [anon_sym_TODO] = ACTIONS(227), + [anon_sym_WIP] = ACTIONS(227), + [anon_sym_NOTE] = ACTIONS(229), + [anon_sym_INFO] = ACTIONS(229), + [anon_sym_XXX] = ACTIONS(229), + [sym_fixme] = ACTIONS(213), + [sym__whitespace1] = ACTIONS(231), + [sym__newline] = ACTIONS(233), + [aux_sym__text_token1] = ACTIONS(235), + [sym__verbatim_begin] = ACTIONS(237), + }, + [35] = { + [sym__inline] = STATE(1008), + [sym__element] = STATE(3), + [sym_emphasis] = STATE(137), + [sym_emphasis_begin] = STATE(1193), + [sym_strong] = STATE(137), + [sym_strong_begin] = STATE(1194), + [sym_superscript] = STATE(137), + [sym_superscript_begin] = STATE(1195), + [sym_subscript] = STATE(137), + [sym_subscript_begin] = STATE(1196), + [sym_highlighted] = STATE(137), + [sym_highlighted_begin] = STATE(1197), + [sym_insert] = STATE(137), + [sym_insert_begin] = STATE(1198), + [sym_delete] = STATE(137), + [sym_delete_begin] = STATE(1199), + [sym_hard_line_break] = STATE(137), + [sym__smart_punctuation] = STATE(137), + [sym_autolink] = STATE(137), + [sym_footnote_reference] = STATE(137), + [sym_footnote_marker_begin] = STATE(1200), + [sym__image] = STATE(137), + [sym_full_reference_image] = STATE(137), + [sym_collapsed_reference_image] = STATE(137), + [sym_inline_image] = STATE(137), + [sym__image_description] = STATE(694), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(137), + [sym_full_reference_link] = STATE(137), + [sym_collapsed_reference_link] = STATE(137), + [sym_inline_link] = STATE(137), + [sym_link_text] = STATE(693), + [sym_span] = STATE(3), + [sym__bracketed_text] = STATE(672), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(137), + [sym_raw_inline] = STATE(137), + [sym_math] = STATE(137), + [sym_verbatim] = STATE(137), + [sym__todo_highlights] = STATE(137), + [sym_todo] = STATE(137), + [sym_note] = STATE(137), + [sym__symbol_fallback] = STATE(137), + [aux_sym__text] = STATE(131), + [aux_sym__inline_repeat1] = STATE(3), + [anon_sym_LBRACE_] = ACTIONS(97), + [anon_sym__] = ACTIONS(99), + [anon_sym_LBRACE_STAR] = ACTIONS(101), + [anon_sym_STAR] = ACTIONS(103), + [anon_sym_LBRACE_CARET] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [anon_sym_LBRACE_TILDE] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(107), + [anon_sym_LBRACE_EQ] = ACTIONS(109), + [anon_sym_LBRACE_PLUS] = ACTIONS(111), + [anon_sym_LBRACE_DASH] = ACTIONS(113), + [anon_sym_BSLASH] = ACTIONS(115), + [sym_quotation_marks] = ACTIONS(117), + [sym_ellipsis] = ACTIONS(117), + [sym_em_dash] = ACTIONS(117), + [sym_en_dash] = ACTIONS(119), + [sym_backslash_escape] = ACTIONS(119), + [anon_sym_LT] = ACTIONS(121), + [sym_symbol] = ACTIONS(117), + [anon_sym_LBRACK_CARET] = ACTIONS(123), + [anon_sym_BANG_LBRACK] = ACTIONS(125), + [anon_sym_LBRACK] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_TODO] = ACTIONS(131), + [anon_sym_WIP] = ACTIONS(131), + [anon_sym_NOTE] = ACTIONS(133), + [anon_sym_INFO] = ACTIONS(133), + [anon_sym_XXX] = ACTIONS(133), + [sym_fixme] = ACTIONS(117), + [sym__whitespace1] = ACTIONS(135), + [sym__newline] = ACTIONS(145), + [aux_sym__text_token1] = ACTIONS(139), + [sym__verbatim_begin] = ACTIONS(141), + }, + [36] = { + [sym__inline_without_trailing_space] = STATE(909), + [sym__element] = STATE(538), + [sym_emphasis] = STATE(141), + [sym_emphasis_begin] = STATE(1153), + [sym_strong] = STATE(141), + [sym_strong_begin] = STATE(1154), + [sym_superscript] = STATE(141), + [sym_superscript_begin] = STATE(1155), + [sym_subscript] = STATE(141), + [sym_subscript_begin] = STATE(1156), + [sym_highlighted] = STATE(141), + [sym_highlighted_begin] = STATE(1157), + [sym_insert] = STATE(141), + [sym_insert_begin] = STATE(1158), + [sym_delete] = STATE(141), + [sym_delete_begin] = STATE(1159), + [sym_hard_line_break] = STATE(141), + [sym__smart_punctuation] = STATE(141), + [sym_autolink] = STATE(141), + [sym_footnote_reference] = STATE(141), + [sym_footnote_marker_begin] = STATE(1160), + [sym__image] = STATE(141), + [sym_full_reference_image] = STATE(141), + [sym_collapsed_reference_image] = STATE(141), + [sym_inline_image] = STATE(141), + [sym__image_description] = STATE(681), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(141), + [sym_full_reference_link] = STATE(141), + [sym_collapsed_reference_link] = STATE(141), + [sym_inline_link] = STATE(141), + [sym_link_text] = STATE(680), + [sym_span] = STATE(538), + [sym__bracketed_text] = STATE(664), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(141), + [sym_raw_inline] = STATE(141), + [sym_math] = STATE(141), + [sym_verbatim] = STATE(141), + [sym__todo_highlights] = STATE(141), + [sym_todo] = STATE(141), + [sym_note] = STATE(141), + [sym__symbol_fallback] = STATE(141), + [aux_sym__text] = STATE(128), + [aux_sym__inline_repeat1] = STATE(119), + [anon_sym_LBRACE_] = ACTIONS(147), + [anon_sym__] = ACTIONS(149), + [anon_sym_LBRACE_STAR] = ACTIONS(151), + [anon_sym_STAR] = ACTIONS(153), + [anon_sym_LBRACE_CARET] = ACTIONS(155), + [anon_sym_CARET] = ACTIONS(155), + [anon_sym_LBRACE_TILDE] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_LBRACE_EQ] = ACTIONS(159), + [anon_sym_LBRACE_PLUS] = ACTIONS(161), + [anon_sym_LBRACE_DASH] = ACTIONS(163), + [anon_sym_BSLASH] = ACTIONS(165), + [sym_quotation_marks] = ACTIONS(167), + [sym_ellipsis] = ACTIONS(167), + [sym_em_dash] = ACTIONS(167), + [sym_en_dash] = ACTIONS(169), + [sym_backslash_escape] = ACTIONS(169), + [anon_sym_LT] = ACTIONS(171), + [sym_symbol] = ACTIONS(167), + [anon_sym_LBRACK_CARET] = ACTIONS(173), + [anon_sym_BANG_LBRACK] = ACTIONS(175), + [anon_sym_LBRACK] = ACTIONS(177), + [anon_sym_DOLLAR] = ACTIONS(179), + [anon_sym_TODO] = ACTIONS(181), + [anon_sym_WIP] = ACTIONS(181), + [anon_sym_NOTE] = ACTIONS(183), + [anon_sym_INFO] = ACTIONS(183), + [anon_sym_XXX] = ACTIONS(183), + [sym_fixme] = ACTIONS(167), + [sym__whitespace1] = ACTIONS(185), + [sym__newline] = ACTIONS(187), + [aux_sym__text_token1] = ACTIONS(189), + [sym__verbatim_begin] = ACTIONS(191), + }, + [37] = { + [sym__element] = STATE(37), + [sym_emphasis] = STATE(137), + [sym_emphasis_begin] = STATE(1193), + [sym_strong] = STATE(137), + [sym_strong_begin] = STATE(1194), + [sym_superscript] = STATE(137), + [sym_superscript_begin] = STATE(1195), + [sym_subscript] = STATE(137), + [sym_subscript_begin] = STATE(1196), + [sym_highlighted] = STATE(137), + [sym_highlighted_begin] = STATE(1197), + [sym_insert] = STATE(137), + [sym_insert_begin] = STATE(1198), + [sym_delete] = STATE(137), + [sym_delete_begin] = STATE(1199), + [sym_hard_line_break] = STATE(137), + [sym__smart_punctuation] = STATE(137), + [sym_autolink] = STATE(137), + [sym_footnote_reference] = STATE(137), + [sym_footnote_marker_begin] = STATE(1200), + [sym__image] = STATE(137), + [sym_full_reference_image] = STATE(137), + [sym_collapsed_reference_image] = STATE(137), + [sym_inline_image] = STATE(137), + [sym__image_description] = STATE(694), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(137), + [sym_full_reference_link] = STATE(137), + [sym_collapsed_reference_link] = STATE(137), + [sym_inline_link] = STATE(137), + [sym_link_text] = STATE(693), + [sym_span] = STATE(37), + [sym__bracketed_text] = STATE(672), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(137), + [sym_raw_inline] = STATE(137), + [sym_math] = STATE(137), + [sym_verbatim] = STATE(137), + [sym__todo_highlights] = STATE(137), + [sym_todo] = STATE(137), + [sym_note] = STATE(137), + [sym__symbol_fallback] = STATE(137), + [aux_sym__text] = STATE(131), + [aux_sym__inline_repeat1] = STATE(37), [anon_sym_LBRACE_] = ACTIONS(542), [anon_sym__] = ACTIONS(545), [anon_sym_LBRACE_STAR] = ACTIONS(548), @@ -7922,53 +8217,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(602), [aux_sym__text_token1] = ACTIONS(605), [sym__verbatim_begin] = ACTIONS(608), - [sym_insert_end] = ACTIONS(538), + [sym_insert_end] = ACTIONS(540), }, - [37] = { + [38] = { [sym__element] = STATE(71), - [sym_emphasis] = STATE(143), - [sym_emphasis_begin] = STATE(1117), - [sym_strong] = STATE(143), - [sym_strong_begin] = STATE(1116), - [sym_superscript] = STATE(143), - [sym_superscript_begin] = STATE(1115), - [sym_subscript] = STATE(143), - [sym_subscript_begin] = STATE(1107), - [sym_highlighted] = STATE(143), - [sym_highlighted_begin] = STATE(1106), - [sym_insert] = STATE(143), - [sym_insert_begin] = STATE(1105), - [sym_delete] = STATE(143), - [sym_delete_begin] = STATE(1104), - [sym_hard_line_break] = STATE(143), - [sym__smart_punctuation] = STATE(143), - [sym_autolink] = STATE(143), - [sym_footnote_reference] = STATE(143), - [sym__image] = STATE(143), - [sym_full_reference_image] = STATE(143), - [sym_collapsed_reference_image] = STATE(143), - [sym_inline_image] = STATE(143), - [sym__image_description] = STATE(673), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(143), - [sym_full_reference_link] = STATE(143), - [sym_collapsed_reference_link] = STATE(143), - [sym_inline_link] = STATE(143), - [sym_link_text] = STATE(669), + [sym_emphasis] = STATE(142), + [sym_emphasis_begin] = STATE(1129), + [sym_strong] = STATE(142), + [sym_strong_begin] = STATE(1128), + [sym_superscript] = STATE(142), + [sym_superscript_begin] = STATE(1127), + [sym_subscript] = STATE(142), + [sym_subscript_begin] = STATE(1120), + [sym_highlighted] = STATE(142), + [sym_highlighted_begin] = STATE(1118), + [sym_insert] = STATE(142), + [sym_insert_begin] = STATE(1117), + [sym_delete] = STATE(142), + [sym_delete_begin] = STATE(1116), + [sym_hard_line_break] = STATE(142), + [sym__smart_punctuation] = STATE(142), + [sym_autolink] = STATE(142), + [sym_footnote_reference] = STATE(142), + [sym_footnote_marker_begin] = STATE(1115), + [sym__image] = STATE(142), + [sym_full_reference_image] = STATE(142), + [sym_collapsed_reference_image] = STATE(142), + [sym_inline_image] = STATE(142), + [sym__image_description] = STATE(685), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(142), + [sym_full_reference_link] = STATE(142), + [sym_collapsed_reference_link] = STATE(142), + [sym_inline_link] = STATE(142), + [sym_link_text] = STATE(692), [sym_span] = STATE(71), - [sym__bracketed_text] = STATE(661), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(143), - [sym_raw_inline] = STATE(143), - [sym_math] = STATE(143), - [sym_verbatim] = STATE(143), - [sym__todo_highlights] = STATE(143), - [sym_todo] = STATE(143), - [sym_note] = STATE(143), - [sym__symbol_fallback] = STATE(143), + [sym__bracketed_text] = STATE(668), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(142), + [sym_raw_inline] = STATE(142), + [sym_math] = STATE(142), + [sym_verbatim] = STATE(142), + [sym__todo_highlights] = STATE(142), + [sym_todo] = STATE(142), + [sym_note] = STATE(142), + [sym__symbol_fallback] = STATE(142), [aux_sym__text] = STATE(130), [aux_sym__inline_repeat1] = STATE(71), - [ts_builtin_sym_end] = ACTIONS(467), + [ts_builtin_sym_end] = ACTIONS(143), [anon_sym_LBRACE_] = ACTIONS(3), [anon_sym__] = ACTIONS(5), [anon_sym_LBRACE_STAR] = ACTIONS(7), @@ -8003,199 +8299,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token1] = ACTIONS(45), [sym__verbatim_begin] = ACTIONS(47), }, - [38] = { - [sym__inline_without_trailing_space] = STATE(897), - [sym__element] = STATE(604), - [sym_emphasis] = STATE(138), - [sym_emphasis_begin] = STATE(1140), - [sym_strong] = STATE(138), - [sym_strong_begin] = STATE(1141), - [sym_superscript] = STATE(138), - [sym_superscript_begin] = STATE(1142), - [sym_subscript] = STATE(138), - [sym_subscript_begin] = STATE(1143), - [sym_highlighted] = STATE(138), - [sym_highlighted_begin] = STATE(1144), - [sym_insert] = STATE(138), - [sym_insert_begin] = STATE(1145), - [sym_delete] = STATE(138), - [sym_delete_begin] = STATE(1146), - [sym_hard_line_break] = STATE(138), - [sym__smart_punctuation] = STATE(138), - [sym_autolink] = STATE(138), - [sym_footnote_reference] = STATE(138), - [sym__image] = STATE(138), - [sym_full_reference_image] = STATE(138), - [sym_collapsed_reference_image] = STATE(138), - [sym_inline_image] = STATE(138), - [sym__image_description] = STATE(667), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(138), - [sym_full_reference_link] = STATE(138), - [sym_collapsed_reference_link] = STATE(138), - [sym_inline_link] = STATE(138), - [sym_link_text] = STATE(689), - [sym_span] = STATE(604), - [sym__bracketed_text] = STATE(658), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(138), - [sym_raw_inline] = STATE(138), - [sym_math] = STATE(138), - [sym_verbatim] = STATE(138), - [sym__todo_highlights] = STATE(138), - [sym_todo] = STATE(138), - [sym_note] = STATE(138), - [sym__symbol_fallback] = STATE(138), - [aux_sym__text] = STATE(124), - [aux_sym__inline_repeat1] = STATE(118), - [anon_sym_LBRACE_] = ACTIONS(419), - [anon_sym__] = ACTIONS(421), - [anon_sym_LBRACE_STAR] = ACTIONS(423), - [anon_sym_STAR] = ACTIONS(425), - [anon_sym_LBRACE_CARET] = ACTIONS(427), - [anon_sym_CARET] = ACTIONS(427), - [anon_sym_LBRACE_TILDE] = ACTIONS(429), - [anon_sym_TILDE] = ACTIONS(429), - [anon_sym_LBRACE_EQ] = ACTIONS(431), - [anon_sym_LBRACE_PLUS] = ACTIONS(433), - [anon_sym_LBRACE_DASH] = ACTIONS(435), - [anon_sym_BSLASH] = ACTIONS(437), - [sym_quotation_marks] = ACTIONS(439), - [sym_ellipsis] = ACTIONS(439), - [sym_em_dash] = ACTIONS(439), - [sym_en_dash] = ACTIONS(441), - [sym_backslash_escape] = ACTIONS(441), - [anon_sym_LT] = ACTIONS(443), - [sym_symbol] = ACTIONS(439), - [anon_sym_LBRACK_CARET] = ACTIONS(445), - [anon_sym_BANG_LBRACK] = ACTIONS(447), - [anon_sym_LBRACK] = ACTIONS(449), - [anon_sym_DOLLAR] = ACTIONS(451), - [anon_sym_TODO] = ACTIONS(453), - [anon_sym_WIP] = ACTIONS(453), - [anon_sym_NOTE] = ACTIONS(455), - [anon_sym_INFO] = ACTIONS(455), - [anon_sym_XXX] = ACTIONS(455), - [sym_fixme] = ACTIONS(439), - [sym__whitespace1] = ACTIONS(457), - [sym__newline] = ACTIONS(459), - [aux_sym__text_token1] = ACTIONS(461), - [sym__verbatim_begin] = ACTIONS(463), - }, [39] = { - [sym__inline] = STATE(995), - [sym__element] = STATE(21), - [sym_emphasis] = STATE(134), - [sym_emphasis_begin] = STATE(1182), - [sym_strong] = STATE(134), - [sym_strong_begin] = STATE(1183), - [sym_superscript] = STATE(134), - [sym_superscript_begin] = STATE(1184), - [sym_subscript] = STATE(134), - [sym_subscript_begin] = STATE(1185), - [sym_highlighted] = STATE(134), - [sym_highlighted_begin] = STATE(1186), - [sym_insert] = STATE(134), - [sym_insert_begin] = STATE(1187), - [sym_delete] = STATE(134), - [sym_delete_begin] = STATE(1188), - [sym_hard_line_break] = STATE(134), - [sym__smart_punctuation] = STATE(134), - [sym_autolink] = STATE(134), - [sym_footnote_reference] = STATE(134), - [sym__image] = STATE(134), - [sym_full_reference_image] = STATE(134), - [sym_collapsed_reference_image] = STATE(134), - [sym_inline_image] = STATE(134), - [sym__image_description] = STATE(677), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(134), - [sym_full_reference_link] = STATE(134), - [sym_collapsed_reference_link] = STATE(134), - [sym_inline_link] = STATE(134), + [sym__inline] = STATE(1065), + [sym__element] = STATE(47), + [sym_emphasis] = STATE(136), + [sym_emphasis_begin] = STATE(1209), + [sym_strong] = STATE(136), + [sym_strong_begin] = STATE(1210), + [sym_superscript] = STATE(136), + [sym_superscript_begin] = STATE(1211), + [sym_subscript] = STATE(136), + [sym_subscript_begin] = STATE(1212), + [sym_highlighted] = STATE(136), + [sym_highlighted_begin] = STATE(1213), + [sym_insert] = STATE(136), + [sym_insert_begin] = STATE(1214), + [sym_delete] = STATE(136), + [sym_delete_begin] = STATE(1215), + [sym_hard_line_break] = STATE(136), + [sym__smart_punctuation] = STATE(136), + [sym_autolink] = STATE(136), + [sym_footnote_reference] = STATE(136), + [sym_footnote_marker_begin] = STATE(1216), + [sym__image] = STATE(136), + [sym_full_reference_image] = STATE(136), + [sym_collapsed_reference_image] = STATE(136), + [sym_inline_image] = STATE(136), + [sym__image_description] = STATE(682), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(136), + [sym_full_reference_link] = STATE(136), + [sym_collapsed_reference_link] = STATE(136), + [sym_inline_link] = STATE(136), [sym_link_text] = STATE(675), - [sym_span] = STATE(21), - [sym__bracketed_text] = STATE(660), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(134), - [sym_raw_inline] = STATE(134), - [sym_math] = STATE(134), - [sym_verbatim] = STATE(134), - [sym__todo_highlights] = STATE(134), - [sym_todo] = STATE(134), - [sym_note] = STATE(134), - [sym__symbol_fallback] = STATE(134), + [sym_span] = STATE(47), + [sym__bracketed_text] = STATE(674), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(136), + [sym_raw_inline] = STATE(136), + [sym_math] = STATE(136), + [sym_verbatim] = STATE(136), + [sym__todo_highlights] = STATE(136), + [sym_todo] = STATE(136), + [sym_note] = STATE(136), + [sym__symbol_fallback] = STATE(136), [aux_sym__text] = STATE(127), - [aux_sym__inline_repeat1] = STATE(21), - [anon_sym_LBRACE_] = ACTIONS(189), - [anon_sym__] = ACTIONS(191), - [anon_sym_LBRACE_STAR] = ACTIONS(193), - [anon_sym_STAR] = ACTIONS(195), - [anon_sym_LBRACE_CARET] = ACTIONS(197), - [anon_sym_CARET] = ACTIONS(197), - [anon_sym_LBRACE_TILDE] = ACTIONS(199), - [anon_sym_TILDE] = ACTIONS(199), - [anon_sym_LBRACE_EQ] = ACTIONS(201), - [anon_sym_LBRACE_PLUS] = ACTIONS(203), - [anon_sym_LBRACE_DASH] = ACTIONS(205), - [anon_sym_BSLASH] = ACTIONS(207), - [sym_quotation_marks] = ACTIONS(209), - [sym_ellipsis] = ACTIONS(209), - [sym_em_dash] = ACTIONS(209), - [sym_en_dash] = ACTIONS(211), - [sym_backslash_escape] = ACTIONS(211), - [anon_sym_LT] = ACTIONS(213), - [sym_symbol] = ACTIONS(209), - [anon_sym_LBRACK_CARET] = ACTIONS(215), - [anon_sym_BANG_LBRACK] = ACTIONS(217), - [anon_sym_LBRACK] = ACTIONS(219), - [anon_sym_DOLLAR] = ACTIONS(221), - [anon_sym_TODO] = ACTIONS(223), - [anon_sym_WIP] = ACTIONS(223), - [anon_sym_NOTE] = ACTIONS(225), - [anon_sym_INFO] = ACTIONS(225), - [anon_sym_XXX] = ACTIONS(225), - [sym_fixme] = ACTIONS(209), - [sym__whitespace1] = ACTIONS(227), - [sym__newline] = ACTIONS(229), - [aux_sym__text_token1] = ACTIONS(231), - [sym__verbatim_begin] = ACTIONS(233), + [aux_sym__inline_repeat1] = STATE(47), + [anon_sym_LBRACE_] = ACTIONS(377), + [anon_sym__] = ACTIONS(379), + [anon_sym_LBRACE_STAR] = ACTIONS(381), + [anon_sym_STAR] = ACTIONS(383), + [anon_sym_LBRACE_CARET] = ACTIONS(385), + [anon_sym_CARET] = ACTIONS(385), + [anon_sym_LBRACE_TILDE] = ACTIONS(387), + [anon_sym_TILDE] = ACTIONS(387), + [anon_sym_LBRACE_EQ] = ACTIONS(389), + [anon_sym_LBRACE_PLUS] = ACTIONS(391), + [anon_sym_LBRACE_DASH] = ACTIONS(393), + [anon_sym_BSLASH] = ACTIONS(395), + [sym_quotation_marks] = ACTIONS(397), + [sym_ellipsis] = ACTIONS(397), + [sym_em_dash] = ACTIONS(397), + [sym_en_dash] = ACTIONS(399), + [sym_backslash_escape] = ACTIONS(399), + [anon_sym_LT] = ACTIONS(401), + [sym_symbol] = ACTIONS(397), + [anon_sym_LBRACK_CARET] = ACTIONS(403), + [anon_sym_BANG_LBRACK] = ACTIONS(405), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_DOLLAR] = ACTIONS(409), + [anon_sym_TODO] = ACTIONS(411), + [anon_sym_WIP] = ACTIONS(411), + [anon_sym_NOTE] = ACTIONS(413), + [anon_sym_INFO] = ACTIONS(413), + [anon_sym_XXX] = ACTIONS(413), + [sym_fixme] = ACTIONS(397), + [sym__whitespace1] = ACTIONS(415), + [sym__newline] = ACTIONS(417), + [aux_sym__text_token1] = ACTIONS(419), + [sym__verbatim_begin] = ACTIONS(421), }, [40] = { - [sym__inline] = STATE(871), - [sym__element] = STATE(65), + [sym__inline] = STATE(1007), + [sym__element] = STATE(14), [sym_emphasis] = STATE(133), - [sym_emphasis_begin] = STATE(1189), + [sym_emphasis_begin] = STATE(1201), [sym_strong] = STATE(133), - [sym_strong_begin] = STATE(1190), + [sym_strong_begin] = STATE(1202), [sym_superscript] = STATE(133), - [sym_superscript_begin] = STATE(1191), + [sym_superscript_begin] = STATE(1203), [sym_subscript] = STATE(133), - [sym_subscript_begin] = STATE(1192), + [sym_subscript_begin] = STATE(1204), [sym_highlighted] = STATE(133), - [sym_highlighted_begin] = STATE(1193), + [sym_highlighted_begin] = STATE(1205), [sym_insert] = STATE(133), - [sym_insert_begin] = STATE(1194), + [sym_insert_begin] = STATE(1206), [sym_delete] = STATE(133), - [sym_delete_begin] = STATE(1195), + [sym_delete_begin] = STATE(1207), [sym_hard_line_break] = STATE(133), [sym__smart_punctuation] = STATE(133), [sym_autolink] = STATE(133), [sym_footnote_reference] = STATE(133), + [sym_footnote_marker_begin] = STATE(1208), [sym__image] = STATE(133), [sym_full_reference_image] = STATE(133), [sym_collapsed_reference_image] = STATE(133), [sym_inline_image] = STATE(133), - [sym__image_description] = STATE(670), - [sym__image_description_begin] = STATE(1103), + [sym__image_description] = STATE(688), + [sym__image_description_begin] = STATE(1114), [sym__link] = STATE(133), [sym_full_reference_link] = STATE(133), [sym_collapsed_reference_link] = STATE(133), [sym_inline_link] = STATE(133), - [sym_link_text] = STATE(663), - [sym_span] = STATE(65), - [sym__bracketed_text] = STATE(662), - [sym__bracketed_text_begin] = STATE(1102), + [sym_link_text] = STATE(686), + [sym_span] = STATE(14), + [sym__bracketed_text] = STATE(673), + [sym__bracketed_text_begin] = STATE(1113), [sym__comment_with_spaces] = STATE(133), [sym_raw_inline] = STATE(133), [sym_math] = STATE(133), @@ -8204,156 +8423,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(133), [sym_note] = STATE(133), [sym__symbol_fallback] = STATE(133), - [aux_sym__text] = STATE(123), - [aux_sym__inline_repeat1] = STATE(65), - [anon_sym_LBRACE_] = ACTIONS(143), - [anon_sym__] = ACTIONS(145), - [anon_sym_LBRACE_STAR] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_LBRACE_CARET] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(151), - [anon_sym_LBRACE_TILDE] = ACTIONS(153), - [anon_sym_TILDE] = ACTIONS(153), - [anon_sym_LBRACE_EQ] = ACTIONS(155), - [anon_sym_LBRACE_PLUS] = ACTIONS(157), - [anon_sym_LBRACE_DASH] = ACTIONS(159), - [anon_sym_BSLASH] = ACTIONS(161), - [sym_quotation_marks] = ACTIONS(163), - [sym_ellipsis] = ACTIONS(163), - [sym_em_dash] = ACTIONS(163), - [sym_en_dash] = ACTIONS(165), - [sym_backslash_escape] = ACTIONS(165), - [anon_sym_LT] = ACTIONS(167), - [sym_symbol] = ACTIONS(163), - [anon_sym_LBRACK_CARET] = ACTIONS(169), - [anon_sym_BANG_LBRACK] = ACTIONS(171), - [anon_sym_LBRACK] = ACTIONS(173), - [anon_sym_DOLLAR] = ACTIONS(175), - [anon_sym_TODO] = ACTIONS(177), - [anon_sym_WIP] = ACTIONS(177), - [anon_sym_NOTE] = ACTIONS(179), - [anon_sym_INFO] = ACTIONS(179), - [anon_sym_XXX] = ACTIONS(179), - [sym_fixme] = ACTIONS(163), - [sym__whitespace1] = ACTIONS(181), - [sym__newline] = ACTIONS(183), - [aux_sym__text_token1] = ACTIONS(185), - [sym__verbatim_begin] = ACTIONS(187), + [aux_sym__text] = STATE(129), + [aux_sym__inline_repeat1] = STATE(14), + [anon_sym_LBRACE_] = ACTIONS(423), + [anon_sym__] = ACTIONS(425), + [anon_sym_LBRACE_STAR] = ACTIONS(427), + [anon_sym_STAR] = ACTIONS(429), + [anon_sym_LBRACE_CARET] = ACTIONS(431), + [anon_sym_CARET] = ACTIONS(431), + [anon_sym_LBRACE_TILDE] = ACTIONS(433), + [anon_sym_TILDE] = ACTIONS(433), + [anon_sym_LBRACE_EQ] = ACTIONS(435), + [anon_sym_LBRACE_PLUS] = ACTIONS(437), + [anon_sym_LBRACE_DASH] = ACTIONS(439), + [anon_sym_BSLASH] = ACTIONS(441), + [sym_quotation_marks] = ACTIONS(443), + [sym_ellipsis] = ACTIONS(443), + [sym_em_dash] = ACTIONS(443), + [sym_en_dash] = ACTIONS(445), + [sym_backslash_escape] = ACTIONS(445), + [anon_sym_LT] = ACTIONS(447), + [sym_symbol] = ACTIONS(443), + [anon_sym_LBRACK_CARET] = ACTIONS(449), + [anon_sym_BANG_LBRACK] = ACTIONS(451), + [anon_sym_LBRACK] = ACTIONS(453), + [anon_sym_DOLLAR] = ACTIONS(455), + [anon_sym_TODO] = ACTIONS(457), + [anon_sym_WIP] = ACTIONS(457), + [anon_sym_NOTE] = ACTIONS(459), + [anon_sym_INFO] = ACTIONS(459), + [anon_sym_XXX] = ACTIONS(459), + [sym_fixme] = ACTIONS(443), + [sym__whitespace1] = ACTIONS(461), + [sym__newline] = ACTIONS(469), + [aux_sym__text_token1] = ACTIONS(465), + [sym__verbatim_begin] = ACTIONS(467), }, [41] = { - [sym__inline] = STATE(870), - [sym__element] = STATE(21), - [sym_emphasis] = STATE(134), - [sym_emphasis_begin] = STATE(1182), - [sym_strong] = STATE(134), - [sym_strong_begin] = STATE(1183), - [sym_superscript] = STATE(134), - [sym_superscript_begin] = STATE(1184), - [sym_subscript] = STATE(134), - [sym_subscript_begin] = STATE(1185), - [sym_highlighted] = STATE(134), - [sym_highlighted_begin] = STATE(1186), - [sym_insert] = STATE(134), - [sym_insert_begin] = STATE(1187), - [sym_delete] = STATE(134), - [sym_delete_begin] = STATE(1188), - [sym_hard_line_break] = STATE(134), - [sym__smart_punctuation] = STATE(134), - [sym_autolink] = STATE(134), - [sym_footnote_reference] = STATE(134), - [sym__image] = STATE(134), - [sym_full_reference_image] = STATE(134), - [sym_collapsed_reference_image] = STATE(134), - [sym_inline_image] = STATE(134), - [sym__image_description] = STATE(677), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(134), - [sym_full_reference_link] = STATE(134), - [sym_collapsed_reference_link] = STATE(134), - [sym_inline_link] = STATE(134), - [sym_link_text] = STATE(675), - [sym_span] = STATE(21), - [sym__bracketed_text] = STATE(660), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(134), - [sym_raw_inline] = STATE(134), - [sym_math] = STATE(134), - [sym_verbatim] = STATE(134), - [sym__todo_highlights] = STATE(134), - [sym_todo] = STATE(134), - [sym_note] = STATE(134), - [sym__symbol_fallback] = STATE(134), - [aux_sym__text] = STATE(127), - [aux_sym__inline_repeat1] = STATE(21), - [anon_sym_LBRACE_] = ACTIONS(189), - [anon_sym__] = ACTIONS(191), - [anon_sym_LBRACE_STAR] = ACTIONS(193), - [anon_sym_STAR] = ACTIONS(195), - [anon_sym_LBRACE_CARET] = ACTIONS(197), - [anon_sym_CARET] = ACTIONS(197), - [anon_sym_LBRACE_TILDE] = ACTIONS(199), - [anon_sym_TILDE] = ACTIONS(199), - [anon_sym_LBRACE_EQ] = ACTIONS(201), - [anon_sym_LBRACE_PLUS] = ACTIONS(203), - [anon_sym_LBRACE_DASH] = ACTIONS(205), - [anon_sym_BSLASH] = ACTIONS(207), - [sym_quotation_marks] = ACTIONS(209), - [sym_ellipsis] = ACTIONS(209), - [sym_em_dash] = ACTIONS(209), - [sym_en_dash] = ACTIONS(211), - [sym_backslash_escape] = ACTIONS(211), - [anon_sym_LT] = ACTIONS(213), - [sym_symbol] = ACTIONS(209), - [anon_sym_LBRACK_CARET] = ACTIONS(215), - [anon_sym_BANG_LBRACK] = ACTIONS(217), - [anon_sym_LBRACK] = ACTIONS(219), - [anon_sym_DOLLAR] = ACTIONS(221), - [anon_sym_TODO] = ACTIONS(223), - [anon_sym_WIP] = ACTIONS(223), - [anon_sym_NOTE] = ACTIONS(225), - [anon_sym_INFO] = ACTIONS(225), - [anon_sym_XXX] = ACTIONS(225), - [sym_fixme] = ACTIONS(209), - [sym__whitespace1] = ACTIONS(227), - [sym__newline] = ACTIONS(229), - [aux_sym__text_token1] = ACTIONS(231), - [sym__verbatim_begin] = ACTIONS(233), - }, - [42] = { - [sym__inline] = STATE(986), - [sym__element] = STATE(65), + [sym__inline] = STATE(898), + [sym__element] = STATE(14), [sym_emphasis] = STATE(133), - [sym_emphasis_begin] = STATE(1189), + [sym_emphasis_begin] = STATE(1201), [sym_strong] = STATE(133), - [sym_strong_begin] = STATE(1190), + [sym_strong_begin] = STATE(1202), [sym_superscript] = STATE(133), - [sym_superscript_begin] = STATE(1191), + [sym_superscript_begin] = STATE(1203), [sym_subscript] = STATE(133), - [sym_subscript_begin] = STATE(1192), + [sym_subscript_begin] = STATE(1204), [sym_highlighted] = STATE(133), - [sym_highlighted_begin] = STATE(1193), + [sym_highlighted_begin] = STATE(1205), [sym_insert] = STATE(133), - [sym_insert_begin] = STATE(1194), + [sym_insert_begin] = STATE(1206), [sym_delete] = STATE(133), - [sym_delete_begin] = STATE(1195), + [sym_delete_begin] = STATE(1207), [sym_hard_line_break] = STATE(133), [sym__smart_punctuation] = STATE(133), [sym_autolink] = STATE(133), [sym_footnote_reference] = STATE(133), + [sym_footnote_marker_begin] = STATE(1208), [sym__image] = STATE(133), [sym_full_reference_image] = STATE(133), [sym_collapsed_reference_image] = STATE(133), [sym_inline_image] = STATE(133), - [sym__image_description] = STATE(670), - [sym__image_description_begin] = STATE(1103), + [sym__image_description] = STATE(688), + [sym__image_description_begin] = STATE(1114), [sym__link] = STATE(133), [sym_full_reference_link] = STATE(133), [sym_collapsed_reference_link] = STATE(133), [sym_inline_link] = STATE(133), - [sym_link_text] = STATE(663), - [sym_span] = STATE(65), - [sym__bracketed_text] = STATE(662), - [sym__bracketed_text_begin] = STATE(1102), + [sym_link_text] = STATE(686), + [sym_span] = STATE(14), + [sym__bracketed_text] = STATE(673), + [sym__bracketed_text_begin] = STATE(1113), [sym__comment_with_spaces] = STATE(133), [sym_raw_inline] = STATE(133), [sym_math] = STATE(133), @@ -8362,324 +8503,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(133), [sym_note] = STATE(133), [sym__symbol_fallback] = STATE(133), - [aux_sym__text] = STATE(123), - [aux_sym__inline_repeat1] = STATE(65), - [anon_sym_LBRACE_] = ACTIONS(143), - [anon_sym__] = ACTIONS(145), - [anon_sym_LBRACE_STAR] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_LBRACE_CARET] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(151), - [anon_sym_LBRACE_TILDE] = ACTIONS(153), - [anon_sym_TILDE] = ACTIONS(153), - [anon_sym_LBRACE_EQ] = ACTIONS(155), - [anon_sym_LBRACE_PLUS] = ACTIONS(157), - [anon_sym_LBRACE_DASH] = ACTIONS(159), - [anon_sym_BSLASH] = ACTIONS(161), - [sym_quotation_marks] = ACTIONS(163), - [sym_ellipsis] = ACTIONS(163), - [sym_em_dash] = ACTIONS(163), - [sym_en_dash] = ACTIONS(165), - [sym_backslash_escape] = ACTIONS(165), - [anon_sym_LT] = ACTIONS(167), - [sym_symbol] = ACTIONS(163), - [anon_sym_LBRACK_CARET] = ACTIONS(169), - [anon_sym_BANG_LBRACK] = ACTIONS(171), - [anon_sym_LBRACK] = ACTIONS(173), - [anon_sym_DOLLAR] = ACTIONS(175), - [anon_sym_TODO] = ACTIONS(177), - [anon_sym_WIP] = ACTIONS(177), - [anon_sym_NOTE] = ACTIONS(179), - [anon_sym_INFO] = ACTIONS(179), - [anon_sym_XXX] = ACTIONS(179), - [sym_fixme] = ACTIONS(163), - [sym__whitespace1] = ACTIONS(181), - [sym__newline] = ACTIONS(183), - [aux_sym__text_token1] = ACTIONS(185), - [sym__verbatim_begin] = ACTIONS(187), - }, - [43] = { - [sym__inline] = STATE(869), - [sym__element] = STATE(103), - [sym_emphasis] = STATE(139), - [sym_emphasis_begin] = STATE(1175), - [sym_strong] = STATE(139), - [sym_strong_begin] = STATE(1176), - [sym_superscript] = STATE(139), - [sym_superscript_begin] = STATE(1177), - [sym_subscript] = STATE(139), - [sym_subscript_begin] = STATE(1178), - [sym_highlighted] = STATE(139), - [sym_highlighted_begin] = STATE(1179), - [sym_insert] = STATE(139), - [sym_insert_begin] = STATE(1180), - [sym_delete] = STATE(139), - [sym_delete_begin] = STATE(1181), - [sym_hard_line_break] = STATE(139), - [sym__smart_punctuation] = STATE(139), - [sym_autolink] = STATE(139), - [sym_footnote_reference] = STATE(139), - [sym__image] = STATE(139), - [sym_full_reference_image] = STATE(139), - [sym_collapsed_reference_image] = STATE(139), - [sym_inline_image] = STATE(139), - [sym__image_description] = STATE(682), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(139), - [sym_full_reference_link] = STATE(139), - [sym_collapsed_reference_link] = STATE(139), - [sym_inline_link] = STATE(139), - [sym_link_text] = STATE(681), - [sym_span] = STATE(103), - [sym__bracketed_text] = STATE(656), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(139), - [sym_raw_inline] = STATE(139), - [sym_math] = STATE(139), - [sym_verbatim] = STATE(139), - [sym__todo_highlights] = STATE(139), - [sym_todo] = STATE(139), - [sym_note] = STATE(139), - [sym__symbol_fallback] = STATE(139), [aux_sym__text] = STATE(129), - [aux_sym__inline_repeat1] = STATE(103), - [anon_sym_LBRACE_] = ACTIONS(235), - [anon_sym__] = ACTIONS(237), - [anon_sym_LBRACE_STAR] = ACTIONS(239), - [anon_sym_STAR] = ACTIONS(241), - [anon_sym_LBRACE_CARET] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(243), - [anon_sym_LBRACE_TILDE] = ACTIONS(245), - [anon_sym_TILDE] = ACTIONS(245), - [anon_sym_LBRACE_EQ] = ACTIONS(247), - [anon_sym_LBRACE_PLUS] = ACTIONS(249), - [anon_sym_LBRACE_DASH] = ACTIONS(251), - [anon_sym_BSLASH] = ACTIONS(253), - [sym_quotation_marks] = ACTIONS(255), - [sym_ellipsis] = ACTIONS(255), - [sym_em_dash] = ACTIONS(255), - [sym_en_dash] = ACTIONS(257), - [sym_backslash_escape] = ACTIONS(257), - [anon_sym_LT] = ACTIONS(259), - [sym_symbol] = ACTIONS(255), - [anon_sym_LBRACK_CARET] = ACTIONS(261), - [anon_sym_BANG_LBRACK] = ACTIONS(263), - [anon_sym_LBRACK] = ACTIONS(265), - [anon_sym_DOLLAR] = ACTIONS(267), - [anon_sym_TODO] = ACTIONS(269), - [anon_sym_WIP] = ACTIONS(269), - [anon_sym_NOTE] = ACTIONS(271), - [anon_sym_INFO] = ACTIONS(271), - [anon_sym_XXX] = ACTIONS(271), - [sym_fixme] = ACTIONS(255), - [sym__whitespace1] = ACTIONS(273), - [sym__newline] = ACTIONS(275), - [aux_sym__text_token1] = ACTIONS(277), - [sym__verbatim_begin] = ACTIONS(279), - }, - [44] = { - [sym__inline_without_trailing_space] = STATE(886), - [sym__element] = STATE(604), - [sym_emphasis] = STATE(138), - [sym_emphasis_begin] = STATE(1140), - [sym_strong] = STATE(138), - [sym_strong_begin] = STATE(1141), - [sym_superscript] = STATE(138), - [sym_superscript_begin] = STATE(1142), - [sym_subscript] = STATE(138), - [sym_subscript_begin] = STATE(1143), - [sym_highlighted] = STATE(138), - [sym_highlighted_begin] = STATE(1144), - [sym_insert] = STATE(138), - [sym_insert_begin] = STATE(1145), - [sym_delete] = STATE(138), - [sym_delete_begin] = STATE(1146), - [sym_hard_line_break] = STATE(138), - [sym__smart_punctuation] = STATE(138), - [sym_autolink] = STATE(138), - [sym_footnote_reference] = STATE(138), - [sym__image] = STATE(138), - [sym_full_reference_image] = STATE(138), - [sym_collapsed_reference_image] = STATE(138), - [sym_inline_image] = STATE(138), - [sym__image_description] = STATE(667), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(138), - [sym_full_reference_link] = STATE(138), - [sym_collapsed_reference_link] = STATE(138), - [sym_inline_link] = STATE(138), - [sym_link_text] = STATE(689), - [sym_span] = STATE(604), - [sym__bracketed_text] = STATE(658), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(138), - [sym_raw_inline] = STATE(138), - [sym_math] = STATE(138), - [sym_verbatim] = STATE(138), - [sym__todo_highlights] = STATE(138), - [sym_todo] = STATE(138), - [sym_note] = STATE(138), - [sym__symbol_fallback] = STATE(138), - [aux_sym__text] = STATE(124), - [aux_sym__inline_repeat1] = STATE(118), - [anon_sym_LBRACE_] = ACTIONS(419), - [anon_sym__] = ACTIONS(421), - [anon_sym_LBRACE_STAR] = ACTIONS(423), - [anon_sym_STAR] = ACTIONS(425), - [anon_sym_LBRACE_CARET] = ACTIONS(427), - [anon_sym_CARET] = ACTIONS(427), - [anon_sym_LBRACE_TILDE] = ACTIONS(429), - [anon_sym_TILDE] = ACTIONS(429), - [anon_sym_LBRACE_EQ] = ACTIONS(431), - [anon_sym_LBRACE_PLUS] = ACTIONS(433), - [anon_sym_LBRACE_DASH] = ACTIONS(435), - [anon_sym_BSLASH] = ACTIONS(437), - [sym_quotation_marks] = ACTIONS(439), - [sym_ellipsis] = ACTIONS(439), - [sym_em_dash] = ACTIONS(439), - [sym_en_dash] = ACTIONS(441), - [sym_backslash_escape] = ACTIONS(441), - [anon_sym_LT] = ACTIONS(443), - [sym_symbol] = ACTIONS(439), - [anon_sym_LBRACK_CARET] = ACTIONS(445), - [anon_sym_BANG_LBRACK] = ACTIONS(447), - [anon_sym_LBRACK] = ACTIONS(449), - [anon_sym_DOLLAR] = ACTIONS(451), - [anon_sym_TODO] = ACTIONS(453), - [anon_sym_WIP] = ACTIONS(453), - [anon_sym_NOTE] = ACTIONS(455), - [anon_sym_INFO] = ACTIONS(455), - [anon_sym_XXX] = ACTIONS(455), - [sym_fixme] = ACTIONS(439), - [sym__whitespace1] = ACTIONS(457), - [sym__newline] = ACTIONS(459), - [aux_sym__text_token1] = ACTIONS(461), - [sym__verbatim_begin] = ACTIONS(463), + [aux_sym__inline_repeat1] = STATE(14), + [anon_sym_LBRACE_] = ACTIONS(423), + [anon_sym__] = ACTIONS(425), + [anon_sym_LBRACE_STAR] = ACTIONS(427), + [anon_sym_STAR] = ACTIONS(429), + [anon_sym_LBRACE_CARET] = ACTIONS(431), + [anon_sym_CARET] = ACTIONS(431), + [anon_sym_LBRACE_TILDE] = ACTIONS(433), + [anon_sym_TILDE] = ACTIONS(433), + [anon_sym_LBRACE_EQ] = ACTIONS(435), + [anon_sym_LBRACE_PLUS] = ACTIONS(437), + [anon_sym_LBRACE_DASH] = ACTIONS(439), + [anon_sym_BSLASH] = ACTIONS(441), + [sym_quotation_marks] = ACTIONS(443), + [sym_ellipsis] = ACTIONS(443), + [sym_em_dash] = ACTIONS(443), + [sym_en_dash] = ACTIONS(445), + [sym_backslash_escape] = ACTIONS(445), + [anon_sym_LT] = ACTIONS(447), + [sym_symbol] = ACTIONS(443), + [anon_sym_LBRACK_CARET] = ACTIONS(449), + [anon_sym_BANG_LBRACK] = ACTIONS(451), + [anon_sym_LBRACK] = ACTIONS(453), + [anon_sym_DOLLAR] = ACTIONS(455), + [anon_sym_TODO] = ACTIONS(457), + [anon_sym_WIP] = ACTIONS(457), + [anon_sym_NOTE] = ACTIONS(459), + [anon_sym_INFO] = ACTIONS(459), + [anon_sym_XXX] = ACTIONS(459), + [sym_fixme] = ACTIONS(443), + [sym__whitespace1] = ACTIONS(461), + [sym__newline] = ACTIONS(469), + [aux_sym__text_token1] = ACTIONS(465), + [sym__verbatim_begin] = ACTIONS(467), }, - [45] = { - [sym__inline] = STATE(868), - [sym__element] = STATE(13), - [sym_emphasis] = STATE(141), - [sym_emphasis_begin] = STATE(1168), - [sym_strong] = STATE(141), - [sym_strong_begin] = STATE(1169), - [sym_superscript] = STATE(141), - [sym_superscript_begin] = STATE(1170), - [sym_subscript] = STATE(141), - [sym_subscript_begin] = STATE(1171), - [sym_highlighted] = STATE(141), - [sym_highlighted_begin] = STATE(1172), - [sym_insert] = STATE(141), - [sym_insert_begin] = STATE(1173), - [sym_delete] = STATE(141), - [sym_delete_begin] = STATE(1174), - [sym_hard_line_break] = STATE(141), - [sym__smart_punctuation] = STATE(141), - [sym_autolink] = STATE(141), - [sym_footnote_reference] = STATE(141), - [sym__image] = STATE(141), - [sym_full_reference_image] = STATE(141), - [sym_collapsed_reference_image] = STATE(141), - [sym_inline_image] = STATE(141), - [sym__image_description] = STATE(674), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(141), - [sym_full_reference_link] = STATE(141), - [sym_collapsed_reference_link] = STATE(141), - [sym_inline_link] = STATE(141), - [sym_link_text] = STATE(672), - [sym_span] = STATE(13), - [sym__bracketed_text] = STATE(655), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(141), - [sym_raw_inline] = STATE(141), - [sym_math] = STATE(141), - [sym_verbatim] = STATE(141), - [sym__todo_highlights] = STATE(141), - [sym_todo] = STATE(141), - [sym_note] = STATE(141), - [sym__symbol_fallback] = STATE(141), - [aux_sym__text] = STATE(128), - [aux_sym__inline_repeat1] = STATE(13), - [anon_sym_LBRACE_] = ACTIONS(281), - [anon_sym__] = ACTIONS(283), - [anon_sym_LBRACE_STAR] = ACTIONS(285), - [anon_sym_STAR] = ACTIONS(287), - [anon_sym_LBRACE_CARET] = ACTIONS(289), - [anon_sym_CARET] = ACTIONS(289), - [anon_sym_LBRACE_TILDE] = ACTIONS(291), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_LBRACE_EQ] = ACTIONS(293), - [anon_sym_LBRACE_PLUS] = ACTIONS(295), - [anon_sym_LBRACE_DASH] = ACTIONS(297), - [anon_sym_BSLASH] = ACTIONS(299), - [sym_quotation_marks] = ACTIONS(301), - [sym_ellipsis] = ACTIONS(301), - [sym_em_dash] = ACTIONS(301), - [sym_en_dash] = ACTIONS(303), - [sym_backslash_escape] = ACTIONS(303), - [anon_sym_LT] = ACTIONS(305), - [sym_symbol] = ACTIONS(301), - [anon_sym_LBRACK_CARET] = ACTIONS(307), - [anon_sym_BANG_LBRACK] = ACTIONS(309), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_DOLLAR] = ACTIONS(313), - [anon_sym_TODO] = ACTIONS(315), - [anon_sym_WIP] = ACTIONS(315), - [anon_sym_NOTE] = ACTIONS(317), - [anon_sym_INFO] = ACTIONS(317), - [anon_sym_XXX] = ACTIONS(317), - [sym_fixme] = ACTIONS(301), - [sym__whitespace1] = ACTIONS(319), - [sym__newline] = ACTIONS(321), - [aux_sym__text_token1] = ACTIONS(323), - [sym__verbatim_begin] = ACTIONS(325), - }, - [46] = { - [sym__inline] = STATE(867), - [sym__element] = STATE(70), - [sym_emphasis] = STATE(136), - [sym_emphasis_begin] = STATE(1161), - [sym_strong] = STATE(136), - [sym_strong_begin] = STATE(1162), - [sym_superscript] = STATE(136), - [sym_superscript_begin] = STATE(1163), - [sym_subscript] = STATE(136), - [sym_subscript_begin] = STATE(1164), - [sym_highlighted] = STATE(136), - [sym_highlighted_begin] = STATE(1165), - [sym_insert] = STATE(136), - [sym_insert_begin] = STATE(1166), - [sym_delete] = STATE(136), - [sym_delete_begin] = STATE(1167), - [sym_hard_line_break] = STATE(136), - [sym__smart_punctuation] = STATE(136), - [sym_autolink] = STATE(136), - [sym_footnote_reference] = STATE(136), - [sym__image] = STATE(136), - [sym_full_reference_image] = STATE(136), - [sym_collapsed_reference_image] = STATE(136), - [sym_inline_image] = STATE(136), - [sym__image_description] = STATE(690), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(136), - [sym_full_reference_link] = STATE(136), - [sym_collapsed_reference_link] = STATE(136), - [sym_inline_link] = STATE(136), - [sym_link_text] = STATE(691), - [sym_span] = STATE(70), - [sym__bracketed_text] = STATE(653), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(136), - [sym_raw_inline] = STATE(136), - [sym_math] = STATE(136), - [sym_verbatim] = STATE(136), - [sym__todo_highlights] = STATE(136), - [sym_todo] = STATE(136), - [sym_note] = STATE(136), - [sym__symbol_fallback] = STATE(136), - [aux_sym__text] = STATE(125), - [aux_sym__inline_repeat1] = STATE(70), + [42] = { + [sym__inline] = STATE(903), + [sym__element] = STATE(3), + [sym_emphasis] = STATE(137), + [sym_emphasis_begin] = STATE(1193), + [sym_strong] = STATE(137), + [sym_strong_begin] = STATE(1194), + [sym_superscript] = STATE(137), + [sym_superscript_begin] = STATE(1195), + [sym_subscript] = STATE(137), + [sym_subscript_begin] = STATE(1196), + [sym_highlighted] = STATE(137), + [sym_highlighted_begin] = STATE(1197), + [sym_insert] = STATE(137), + [sym_insert_begin] = STATE(1198), + [sym_delete] = STATE(137), + [sym_delete_begin] = STATE(1199), + [sym_hard_line_break] = STATE(137), + [sym__smart_punctuation] = STATE(137), + [sym_autolink] = STATE(137), + [sym_footnote_reference] = STATE(137), + [sym_footnote_marker_begin] = STATE(1200), + [sym__image] = STATE(137), + [sym_full_reference_image] = STATE(137), + [sym_collapsed_reference_image] = STATE(137), + [sym_inline_image] = STATE(137), + [sym__image_description] = STATE(694), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(137), + [sym_full_reference_link] = STATE(137), + [sym_collapsed_reference_link] = STATE(137), + [sym_inline_link] = STATE(137), + [sym_link_text] = STATE(693), + [sym_span] = STATE(3), + [sym__bracketed_text] = STATE(672), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(137), + [sym_raw_inline] = STATE(137), + [sym_math] = STATE(137), + [sym_verbatim] = STATE(137), + [sym__todo_highlights] = STATE(137), + [sym_todo] = STATE(137), + [sym_note] = STATE(137), + [sym__symbol_fallback] = STATE(137), + [aux_sym__text] = STATE(131), + [aux_sym__inline_repeat1] = STATE(3), [anon_sym_LBRACE_] = ACTIONS(97), [anon_sym__] = ACTIONS(99), [anon_sym_LBRACE_STAR] = ACTIONS(101), @@ -8710,45 +8615,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_XXX] = ACTIONS(133), [sym_fixme] = ACTIONS(117), [sym__whitespace1] = ACTIONS(135), - [sym__newline] = ACTIONS(137), + [sym__newline] = ACTIONS(145), [aux_sym__text_token1] = ACTIONS(139), [sym__verbatim_begin] = ACTIONS(141), }, - [47] = { - [sym__inline] = STATE(866), - [sym__element] = STATE(105), + [43] = { + [sym__inline] = STATE(997), + [sym__element] = STATE(47), + [sym_emphasis] = STATE(136), + [sym_emphasis_begin] = STATE(1209), + [sym_strong] = STATE(136), + [sym_strong_begin] = STATE(1210), + [sym_superscript] = STATE(136), + [sym_superscript_begin] = STATE(1211), + [sym_subscript] = STATE(136), + [sym_subscript_begin] = STATE(1212), + [sym_highlighted] = STATE(136), + [sym_highlighted_begin] = STATE(1213), + [sym_insert] = STATE(136), + [sym_insert_begin] = STATE(1214), + [sym_delete] = STATE(136), + [sym_delete_begin] = STATE(1215), + [sym_hard_line_break] = STATE(136), + [sym__smart_punctuation] = STATE(136), + [sym_autolink] = STATE(136), + [sym_footnote_reference] = STATE(136), + [sym_footnote_marker_begin] = STATE(1216), + [sym__image] = STATE(136), + [sym_full_reference_image] = STATE(136), + [sym_collapsed_reference_image] = STATE(136), + [sym_inline_image] = STATE(136), + [sym__image_description] = STATE(682), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(136), + [sym_full_reference_link] = STATE(136), + [sym_collapsed_reference_link] = STATE(136), + [sym_inline_link] = STATE(136), + [sym_link_text] = STATE(675), + [sym_span] = STATE(47), + [sym__bracketed_text] = STATE(674), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(136), + [sym_raw_inline] = STATE(136), + [sym_math] = STATE(136), + [sym_verbatim] = STATE(136), + [sym__todo_highlights] = STATE(136), + [sym_todo] = STATE(136), + [sym_note] = STATE(136), + [sym__symbol_fallback] = STATE(136), + [aux_sym__text] = STATE(127), + [aux_sym__inline_repeat1] = STATE(47), + [anon_sym_LBRACE_] = ACTIONS(377), + [anon_sym__] = ACTIONS(379), + [anon_sym_LBRACE_STAR] = ACTIONS(381), + [anon_sym_STAR] = ACTIONS(383), + [anon_sym_LBRACE_CARET] = ACTIONS(385), + [anon_sym_CARET] = ACTIONS(385), + [anon_sym_LBRACE_TILDE] = ACTIONS(387), + [anon_sym_TILDE] = ACTIONS(387), + [anon_sym_LBRACE_EQ] = ACTIONS(389), + [anon_sym_LBRACE_PLUS] = ACTIONS(391), + [anon_sym_LBRACE_DASH] = ACTIONS(393), + [anon_sym_BSLASH] = ACTIONS(395), + [sym_quotation_marks] = ACTIONS(397), + [sym_ellipsis] = ACTIONS(397), + [sym_em_dash] = ACTIONS(397), + [sym_en_dash] = ACTIONS(399), + [sym_backslash_escape] = ACTIONS(399), + [anon_sym_LT] = ACTIONS(401), + [sym_symbol] = ACTIONS(397), + [anon_sym_LBRACK_CARET] = ACTIONS(403), + [anon_sym_BANG_LBRACK] = ACTIONS(405), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_DOLLAR] = ACTIONS(409), + [anon_sym_TODO] = ACTIONS(411), + [anon_sym_WIP] = ACTIONS(411), + [anon_sym_NOTE] = ACTIONS(413), + [anon_sym_INFO] = ACTIONS(413), + [anon_sym_XXX] = ACTIONS(413), + [sym_fixme] = ACTIONS(397), + [sym__whitespace1] = ACTIONS(415), + [sym__newline] = ACTIONS(417), + [aux_sym__text_token1] = ACTIONS(419), + [sym__verbatim_begin] = ACTIONS(421), + }, + [44] = { + [sym__inline] = STATE(904), + [sym__element] = STATE(107), [sym_emphasis] = STATE(140), - [sym_emphasis_begin] = STATE(1154), + [sym_emphasis_begin] = STATE(1185), [sym_strong] = STATE(140), - [sym_strong_begin] = STATE(1155), + [sym_strong_begin] = STATE(1186), [sym_superscript] = STATE(140), - [sym_superscript_begin] = STATE(1156), + [sym_superscript_begin] = STATE(1187), [sym_subscript] = STATE(140), - [sym_subscript_begin] = STATE(1157), + [sym_subscript_begin] = STATE(1188), [sym_highlighted] = STATE(140), - [sym_highlighted_begin] = STATE(1158), + [sym_highlighted_begin] = STATE(1189), [sym_insert] = STATE(140), - [sym_insert_begin] = STATE(1159), + [sym_insert_begin] = STATE(1190), [sym_delete] = STATE(140), - [sym_delete_begin] = STATE(1160), + [sym_delete_begin] = STATE(1191), [sym_hard_line_break] = STATE(140), [sym__smart_punctuation] = STATE(140), [sym_autolink] = STATE(140), [sym_footnote_reference] = STATE(140), + [sym_footnote_marker_begin] = STATE(1192), [sym__image] = STATE(140), [sym_full_reference_image] = STATE(140), [sym_collapsed_reference_image] = STATE(140), [sym_inline_image] = STATE(140), - [sym__image_description] = STATE(687), - [sym__image_description_begin] = STATE(1103), + [sym__image_description] = STATE(700), + [sym__image_description_begin] = STATE(1114), [sym__link] = STATE(140), [sym_full_reference_link] = STATE(140), [sym_collapsed_reference_link] = STATE(140), [sym_inline_link] = STATE(140), - [sym_link_text] = STATE(688), - [sym_span] = STATE(105), - [sym__bracketed_text] = STATE(654), - [sym__bracketed_text_begin] = STATE(1102), + [sym_link_text] = STATE(699), + [sym_span] = STATE(107), + [sym__bracketed_text] = STATE(666), + [sym__bracketed_text_begin] = STATE(1113), [sym__comment_with_spaces] = STATE(140), [sym_raw_inline] = STATE(140), [sym_math] = STATE(140), @@ -8757,393 +8743,398 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(140), [sym_note] = STATE(140), [sym__symbol_fallback] = STATE(140), - [aux_sym__text] = STATE(131), - [aux_sym__inline_repeat1] = STATE(105), - [anon_sym_LBRACE_] = ACTIONS(327), - [anon_sym__] = ACTIONS(329), - [anon_sym_LBRACE_STAR] = ACTIONS(331), - [anon_sym_STAR] = ACTIONS(333), - [anon_sym_LBRACE_CARET] = ACTIONS(335), - [anon_sym_CARET] = ACTIONS(335), - [anon_sym_LBRACE_TILDE] = ACTIONS(337), - [anon_sym_TILDE] = ACTIONS(337), - [anon_sym_LBRACE_EQ] = ACTIONS(339), - [anon_sym_LBRACE_PLUS] = ACTIONS(341), - [anon_sym_LBRACE_DASH] = ACTIONS(343), - [anon_sym_BSLASH] = ACTIONS(345), - [sym_quotation_marks] = ACTIONS(347), - [sym_ellipsis] = ACTIONS(347), - [sym_em_dash] = ACTIONS(347), - [sym_en_dash] = ACTIONS(349), - [sym_backslash_escape] = ACTIONS(349), - [anon_sym_LT] = ACTIONS(351), - [sym_symbol] = ACTIONS(347), - [anon_sym_LBRACK_CARET] = ACTIONS(353), - [anon_sym_BANG_LBRACK] = ACTIONS(355), - [anon_sym_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [anon_sym_TODO] = ACTIONS(361), - [anon_sym_WIP] = ACTIONS(361), - [anon_sym_NOTE] = ACTIONS(363), - [anon_sym_INFO] = ACTIONS(363), - [anon_sym_XXX] = ACTIONS(363), - [sym_fixme] = ACTIONS(347), - [sym__whitespace1] = ACTIONS(365), - [sym__newline] = ACTIONS(367), - [aux_sym__text_token1] = ACTIONS(369), - [sym__verbatim_begin] = ACTIONS(371), + [aux_sym__text] = STATE(125), + [aux_sym__inline_repeat1] = STATE(107), + [anon_sym_LBRACE_] = ACTIONS(193), + [anon_sym__] = ACTIONS(195), + [anon_sym_LBRACE_STAR] = ACTIONS(197), + [anon_sym_STAR] = ACTIONS(199), + [anon_sym_LBRACE_CARET] = ACTIONS(201), + [anon_sym_CARET] = ACTIONS(201), + [anon_sym_LBRACE_TILDE] = ACTIONS(203), + [anon_sym_TILDE] = ACTIONS(203), + [anon_sym_LBRACE_EQ] = ACTIONS(205), + [anon_sym_LBRACE_PLUS] = ACTIONS(207), + [anon_sym_LBRACE_DASH] = ACTIONS(209), + [anon_sym_BSLASH] = ACTIONS(211), + [sym_quotation_marks] = ACTIONS(213), + [sym_ellipsis] = ACTIONS(213), + [sym_em_dash] = ACTIONS(213), + [sym_en_dash] = ACTIONS(215), + [sym_backslash_escape] = ACTIONS(215), + [anon_sym_LT] = ACTIONS(217), + [sym_symbol] = ACTIONS(213), + [anon_sym_LBRACK_CARET] = ACTIONS(219), + [anon_sym_BANG_LBRACK] = ACTIONS(221), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_DOLLAR] = ACTIONS(225), + [anon_sym_TODO] = ACTIONS(227), + [anon_sym_WIP] = ACTIONS(227), + [anon_sym_NOTE] = ACTIONS(229), + [anon_sym_INFO] = ACTIONS(229), + [anon_sym_XXX] = ACTIONS(229), + [sym_fixme] = ACTIONS(213), + [sym__whitespace1] = ACTIONS(231), + [sym__newline] = ACTIONS(233), + [aux_sym__text_token1] = ACTIONS(235), + [sym__verbatim_begin] = ACTIONS(237), }, - [48] = { - [sym__inline_without_trailing_space] = STATE(875), - [sym__element] = STATE(562), - [sym_emphasis] = STATE(142), - [sym_emphasis_begin] = STATE(1147), - [sym_strong] = STATE(142), - [sym_strong_begin] = STATE(1148), - [sym_superscript] = STATE(142), - [sym_superscript_begin] = STATE(1149), - [sym_subscript] = STATE(142), - [sym_subscript_begin] = STATE(1150), - [sym_highlighted] = STATE(142), - [sym_highlighted_begin] = STATE(1151), - [sym_insert] = STATE(142), - [sym_insert_begin] = STATE(1152), - [sym_delete] = STATE(142), - [sym_delete_begin] = STATE(1153), - [sym_hard_line_break] = STATE(142), - [sym__smart_punctuation] = STATE(142), - [sym_autolink] = STATE(142), - [sym_footnote_reference] = STATE(142), - [sym__image] = STATE(142), - [sym_full_reference_image] = STATE(142), - [sym_collapsed_reference_image] = STATE(142), - [sym_inline_image] = STATE(142), - [sym__image_description] = STATE(685), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(142), - [sym_full_reference_link] = STATE(142), - [sym_collapsed_reference_link] = STATE(142), - [sym_inline_link] = STATE(142), - [sym_link_text] = STATE(683), - [sym_span] = STATE(562), - [sym__bracketed_text] = STATE(657), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(142), - [sym_raw_inline] = STATE(142), - [sym_math] = STATE(142), - [sym_verbatim] = STATE(142), - [sym__todo_highlights] = STATE(142), - [sym_todo] = STATE(142), - [sym_note] = STATE(142), - [sym__symbol_fallback] = STATE(142), - [aux_sym__text] = STATE(126), - [aux_sym__inline_repeat1] = STATE(120), - [anon_sym_LBRACE_] = ACTIONS(373), - [anon_sym__] = ACTIONS(375), - [anon_sym_LBRACE_STAR] = ACTIONS(377), - [anon_sym_STAR] = ACTIONS(379), - [anon_sym_LBRACE_CARET] = ACTIONS(381), - [anon_sym_CARET] = ACTIONS(381), - [anon_sym_LBRACE_TILDE] = ACTIONS(383), - [anon_sym_TILDE] = ACTIONS(383), - [anon_sym_LBRACE_EQ] = ACTIONS(385), - [anon_sym_LBRACE_PLUS] = ACTIONS(387), - [anon_sym_LBRACE_DASH] = ACTIONS(389), - [anon_sym_BSLASH] = ACTIONS(391), - [sym_quotation_marks] = ACTIONS(393), - [sym_ellipsis] = ACTIONS(393), - [sym_em_dash] = ACTIONS(393), - [sym_en_dash] = ACTIONS(395), - [sym_backslash_escape] = ACTIONS(395), - [anon_sym_LT] = ACTIONS(397), - [sym_symbol] = ACTIONS(393), - [anon_sym_LBRACK_CARET] = ACTIONS(399), - [anon_sym_BANG_LBRACK] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_DOLLAR] = ACTIONS(405), - [anon_sym_TODO] = ACTIONS(407), - [anon_sym_WIP] = ACTIONS(407), - [anon_sym_NOTE] = ACTIONS(409), - [anon_sym_INFO] = ACTIONS(409), - [anon_sym_XXX] = ACTIONS(409), - [sym_fixme] = ACTIONS(393), - [sym__whitespace1] = ACTIONS(411), - [sym__newline] = ACTIONS(413), - [aux_sym__text_token1] = ACTIONS(415), - [sym__verbatim_begin] = ACTIONS(417), + [45] = { + [sym__inline_without_trailing_space] = STATE(900), + [sym__element] = STATE(538), + [sym_emphasis] = STATE(141), + [sym_emphasis_begin] = STATE(1153), + [sym_strong] = STATE(141), + [sym_strong_begin] = STATE(1154), + [sym_superscript] = STATE(141), + [sym_superscript_begin] = STATE(1155), + [sym_subscript] = STATE(141), + [sym_subscript_begin] = STATE(1156), + [sym_highlighted] = STATE(141), + [sym_highlighted_begin] = STATE(1157), + [sym_insert] = STATE(141), + [sym_insert_begin] = STATE(1158), + [sym_delete] = STATE(141), + [sym_delete_begin] = STATE(1159), + [sym_hard_line_break] = STATE(141), + [sym__smart_punctuation] = STATE(141), + [sym_autolink] = STATE(141), + [sym_footnote_reference] = STATE(141), + [sym_footnote_marker_begin] = STATE(1160), + [sym__image] = STATE(141), + [sym_full_reference_image] = STATE(141), + [sym_collapsed_reference_image] = STATE(141), + [sym_inline_image] = STATE(141), + [sym__image_description] = STATE(681), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(141), + [sym_full_reference_link] = STATE(141), + [sym_collapsed_reference_link] = STATE(141), + [sym_inline_link] = STATE(141), + [sym_link_text] = STATE(680), + [sym_span] = STATE(538), + [sym__bracketed_text] = STATE(664), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(141), + [sym_raw_inline] = STATE(141), + [sym_math] = STATE(141), + [sym_verbatim] = STATE(141), + [sym__todo_highlights] = STATE(141), + [sym_todo] = STATE(141), + [sym_note] = STATE(141), + [sym__symbol_fallback] = STATE(141), + [aux_sym__text] = STATE(128), + [aux_sym__inline_repeat1] = STATE(119), + [anon_sym_LBRACE_] = ACTIONS(147), + [anon_sym__] = ACTIONS(149), + [anon_sym_LBRACE_STAR] = ACTIONS(151), + [anon_sym_STAR] = ACTIONS(153), + [anon_sym_LBRACE_CARET] = ACTIONS(155), + [anon_sym_CARET] = ACTIONS(155), + [anon_sym_LBRACE_TILDE] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_LBRACE_EQ] = ACTIONS(159), + [anon_sym_LBRACE_PLUS] = ACTIONS(161), + [anon_sym_LBRACE_DASH] = ACTIONS(163), + [anon_sym_BSLASH] = ACTIONS(165), + [sym_quotation_marks] = ACTIONS(167), + [sym_ellipsis] = ACTIONS(167), + [sym_em_dash] = ACTIONS(167), + [sym_en_dash] = ACTIONS(169), + [sym_backslash_escape] = ACTIONS(169), + [anon_sym_LT] = ACTIONS(171), + [sym_symbol] = ACTIONS(167), + [anon_sym_LBRACK_CARET] = ACTIONS(173), + [anon_sym_BANG_LBRACK] = ACTIONS(175), + [anon_sym_LBRACK] = ACTIONS(177), + [anon_sym_DOLLAR] = ACTIONS(179), + [anon_sym_TODO] = ACTIONS(181), + [anon_sym_WIP] = ACTIONS(181), + [anon_sym_NOTE] = ACTIONS(183), + [anon_sym_INFO] = ACTIONS(183), + [anon_sym_XXX] = ACTIONS(183), + [sym_fixme] = ACTIONS(167), + [sym__whitespace1] = ACTIONS(185), + [sym__newline] = ACTIONS(187), + [aux_sym__text_token1] = ACTIONS(189), + [sym__verbatim_begin] = ACTIONS(191), }, - [49] = { - [sym__inline_without_trailing_space] = STATE(876), - [sym__element] = STATE(604), - [sym_emphasis] = STATE(138), - [sym_emphasis_begin] = STATE(1140), - [sym_strong] = STATE(138), - [sym_strong_begin] = STATE(1141), - [sym_superscript] = STATE(138), - [sym_superscript_begin] = STATE(1142), - [sym_subscript] = STATE(138), - [sym_subscript_begin] = STATE(1143), - [sym_highlighted] = STATE(138), - [sym_highlighted_begin] = STATE(1144), - [sym_insert] = STATE(138), - [sym_insert_begin] = STATE(1145), - [sym_delete] = STATE(138), - [sym_delete_begin] = STATE(1146), - [sym_hard_line_break] = STATE(138), - [sym__smart_punctuation] = STATE(138), - [sym_autolink] = STATE(138), - [sym_footnote_reference] = STATE(138), - [sym__image] = STATE(138), - [sym_full_reference_image] = STATE(138), - [sym_collapsed_reference_image] = STATE(138), - [sym_inline_image] = STATE(138), - [sym__image_description] = STATE(667), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(138), - [sym_full_reference_link] = STATE(138), - [sym_collapsed_reference_link] = STATE(138), - [sym_inline_link] = STATE(138), - [sym_link_text] = STATE(689), - [sym_span] = STATE(604), - [sym__bracketed_text] = STATE(658), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(138), - [sym_raw_inline] = STATE(138), - [sym_math] = STATE(138), - [sym_verbatim] = STATE(138), - [sym__todo_highlights] = STATE(138), - [sym_todo] = STATE(138), - [sym_note] = STATE(138), - [sym__symbol_fallback] = STATE(138), + [46] = { + [sym__inline] = STATE(905), + [sym__element] = STATE(72), + [sym_emphasis] = STATE(135), + [sym_emphasis_begin] = STATE(1177), + [sym_strong] = STATE(135), + [sym_strong_begin] = STATE(1178), + [sym_superscript] = STATE(135), + [sym_superscript_begin] = STATE(1179), + [sym_subscript] = STATE(135), + [sym_subscript_begin] = STATE(1180), + [sym_highlighted] = STATE(135), + [sym_highlighted_begin] = STATE(1181), + [sym_insert] = STATE(135), + [sym_insert_begin] = STATE(1182), + [sym_delete] = STATE(135), + [sym_delete_begin] = STATE(1183), + [sym_hard_line_break] = STATE(135), + [sym__smart_punctuation] = STATE(135), + [sym_autolink] = STATE(135), + [sym_footnote_reference] = STATE(135), + [sym_footnote_marker_begin] = STATE(1184), + [sym__image] = STATE(135), + [sym_full_reference_image] = STATE(135), + [sym_collapsed_reference_image] = STATE(135), + [sym_inline_image] = STATE(135), + [sym__image_description] = STATE(687), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(135), + [sym_full_reference_link] = STATE(135), + [sym_collapsed_reference_link] = STATE(135), + [sym_inline_link] = STATE(135), + [sym_link_text] = STATE(684), + [sym_span] = STATE(72), + [sym__bracketed_text] = STATE(670), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(135), + [sym_raw_inline] = STATE(135), + [sym_math] = STATE(135), + [sym_verbatim] = STATE(135), + [sym__todo_highlights] = STATE(135), + [sym_todo] = STATE(135), + [sym_note] = STATE(135), + [sym__symbol_fallback] = STATE(135), [aux_sym__text] = STATE(124), - [aux_sym__inline_repeat1] = STATE(118), - [anon_sym_LBRACE_] = ACTIONS(419), - [anon_sym__] = ACTIONS(421), - [anon_sym_LBRACE_STAR] = ACTIONS(423), - [anon_sym_STAR] = ACTIONS(425), - [anon_sym_LBRACE_CARET] = ACTIONS(427), - [anon_sym_CARET] = ACTIONS(427), - [anon_sym_LBRACE_TILDE] = ACTIONS(429), - [anon_sym_TILDE] = ACTIONS(429), - [anon_sym_LBRACE_EQ] = ACTIONS(431), - [anon_sym_LBRACE_PLUS] = ACTIONS(433), - [anon_sym_LBRACE_DASH] = ACTIONS(435), - [anon_sym_BSLASH] = ACTIONS(437), - [sym_quotation_marks] = ACTIONS(439), - [sym_ellipsis] = ACTIONS(439), - [sym_em_dash] = ACTIONS(439), - [sym_en_dash] = ACTIONS(441), - [sym_backslash_escape] = ACTIONS(441), - [anon_sym_LT] = ACTIONS(443), - [sym_symbol] = ACTIONS(439), - [anon_sym_LBRACK_CARET] = ACTIONS(445), - [anon_sym_BANG_LBRACK] = ACTIONS(447), - [anon_sym_LBRACK] = ACTIONS(449), - [anon_sym_DOLLAR] = ACTIONS(451), - [anon_sym_TODO] = ACTIONS(453), - [anon_sym_WIP] = ACTIONS(453), - [anon_sym_NOTE] = ACTIONS(455), - [anon_sym_INFO] = ACTIONS(455), - [anon_sym_XXX] = ACTIONS(455), - [sym_fixme] = ACTIONS(439), - [sym__whitespace1] = ACTIONS(457), - [sym__newline] = ACTIONS(459), - [aux_sym__text_token1] = ACTIONS(461), - [sym__verbatim_begin] = ACTIONS(463), + [aux_sym__inline_repeat1] = STATE(72), + [anon_sym_LBRACE_] = ACTIONS(239), + [anon_sym__] = ACTIONS(241), + [anon_sym_LBRACE_STAR] = ACTIONS(243), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_LBRACE_CARET] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_LBRACE_TILDE] = ACTIONS(249), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_LBRACE_EQ] = ACTIONS(251), + [anon_sym_LBRACE_PLUS] = ACTIONS(253), + [anon_sym_LBRACE_DASH] = ACTIONS(255), + [anon_sym_BSLASH] = ACTIONS(257), + [sym_quotation_marks] = ACTIONS(259), + [sym_ellipsis] = ACTIONS(259), + [sym_em_dash] = ACTIONS(259), + [sym_en_dash] = ACTIONS(261), + [sym_backslash_escape] = ACTIONS(261), + [anon_sym_LT] = ACTIONS(263), + [sym_symbol] = ACTIONS(259), + [anon_sym_LBRACK_CARET] = ACTIONS(265), + [anon_sym_BANG_LBRACK] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_TODO] = ACTIONS(273), + [anon_sym_WIP] = ACTIONS(273), + [anon_sym_NOTE] = ACTIONS(275), + [anon_sym_INFO] = ACTIONS(275), + [anon_sym_XXX] = ACTIONS(275), + [sym_fixme] = ACTIONS(259), + [sym__whitespace1] = ACTIONS(277), + [sym__newline] = ACTIONS(279), + [aux_sym__text_token1] = ACTIONS(281), + [sym__verbatim_begin] = ACTIONS(283), }, - [50] = { - [sym__inline] = STATE(910), - [sym__element] = STATE(65), - [sym_emphasis] = STATE(133), - [sym_emphasis_begin] = STATE(1189), - [sym_strong] = STATE(133), - [sym_strong_begin] = STATE(1190), - [sym_superscript] = STATE(133), - [sym_superscript_begin] = STATE(1191), - [sym_subscript] = STATE(133), - [sym_subscript_begin] = STATE(1192), - [sym_highlighted] = STATE(133), - [sym_highlighted_begin] = STATE(1193), - [sym_insert] = STATE(133), - [sym_insert_begin] = STATE(1194), - [sym_delete] = STATE(133), - [sym_delete_begin] = STATE(1195), - [sym_hard_line_break] = STATE(133), - [sym__smart_punctuation] = STATE(133), - [sym_autolink] = STATE(133), - [sym_footnote_reference] = STATE(133), - [sym__image] = STATE(133), - [sym_full_reference_image] = STATE(133), - [sym_collapsed_reference_image] = STATE(133), - [sym_inline_image] = STATE(133), - [sym__image_description] = STATE(670), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(133), - [sym_full_reference_link] = STATE(133), - [sym_collapsed_reference_link] = STATE(133), - [sym_inline_link] = STATE(133), - [sym_link_text] = STATE(663), - [sym_span] = STATE(65), - [sym__bracketed_text] = STATE(662), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(133), - [sym_raw_inline] = STATE(133), - [sym_math] = STATE(133), - [sym_verbatim] = STATE(133), - [sym__todo_highlights] = STATE(133), - [sym_todo] = STATE(133), - [sym_note] = STATE(133), - [sym__symbol_fallback] = STATE(133), - [aux_sym__text] = STATE(123), - [aux_sym__inline_repeat1] = STATE(65), - [anon_sym_LBRACE_] = ACTIONS(143), - [anon_sym__] = ACTIONS(145), - [anon_sym_LBRACE_STAR] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_LBRACE_CARET] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(151), - [anon_sym_LBRACE_TILDE] = ACTIONS(153), - [anon_sym_TILDE] = ACTIONS(153), - [anon_sym_LBRACE_EQ] = ACTIONS(155), - [anon_sym_LBRACE_PLUS] = ACTIONS(157), - [anon_sym_LBRACE_DASH] = ACTIONS(159), - [anon_sym_BSLASH] = ACTIONS(161), - [sym_quotation_marks] = ACTIONS(163), - [sym_ellipsis] = ACTIONS(163), - [sym_em_dash] = ACTIONS(163), - [sym_en_dash] = ACTIONS(165), - [sym_backslash_escape] = ACTIONS(165), - [anon_sym_LT] = ACTIONS(167), - [sym_symbol] = ACTIONS(163), - [anon_sym_LBRACK_CARET] = ACTIONS(169), - [anon_sym_BANG_LBRACK] = ACTIONS(171), - [anon_sym_LBRACK] = ACTIONS(173), - [anon_sym_DOLLAR] = ACTIONS(175), - [anon_sym_TODO] = ACTIONS(177), - [anon_sym_WIP] = ACTIONS(177), - [anon_sym_NOTE] = ACTIONS(179), - [anon_sym_INFO] = ACTIONS(179), - [anon_sym_XXX] = ACTIONS(179), - [sym_fixme] = ACTIONS(163), - [sym__whitespace1] = ACTIONS(181), - [sym__newline] = ACTIONS(183), - [aux_sym__text_token1] = ACTIONS(185), - [sym__verbatim_begin] = ACTIONS(187), + [47] = { + [sym__element] = STATE(74), + [sym_emphasis] = STATE(136), + [sym_emphasis_begin] = STATE(1209), + [sym_strong] = STATE(136), + [sym_strong_begin] = STATE(1210), + [sym_superscript] = STATE(136), + [sym_superscript_begin] = STATE(1211), + [sym_subscript] = STATE(136), + [sym_subscript_begin] = STATE(1212), + [sym_highlighted] = STATE(136), + [sym_highlighted_begin] = STATE(1213), + [sym_insert] = STATE(136), + [sym_insert_begin] = STATE(1214), + [sym_delete] = STATE(136), + [sym_delete_begin] = STATE(1215), + [sym_hard_line_break] = STATE(136), + [sym__smart_punctuation] = STATE(136), + [sym_autolink] = STATE(136), + [sym_footnote_reference] = STATE(136), + [sym_footnote_marker_begin] = STATE(1216), + [sym__image] = STATE(136), + [sym_full_reference_image] = STATE(136), + [sym_collapsed_reference_image] = STATE(136), + [sym_inline_image] = STATE(136), + [sym__image_description] = STATE(682), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(136), + [sym_full_reference_link] = STATE(136), + [sym_collapsed_reference_link] = STATE(136), + [sym_inline_link] = STATE(136), + [sym_link_text] = STATE(675), + [sym_span] = STATE(74), + [sym__bracketed_text] = STATE(674), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(136), + [sym_raw_inline] = STATE(136), + [sym_math] = STATE(136), + [sym_verbatim] = STATE(136), + [sym__todo_highlights] = STATE(136), + [sym_todo] = STATE(136), + [sym_note] = STATE(136), + [sym__symbol_fallback] = STATE(136), + [aux_sym__text] = STATE(127), + [aux_sym__inline_repeat1] = STATE(74), + [anon_sym_LBRACE_] = ACTIONS(377), + [anon_sym__] = ACTIONS(379), + [anon_sym_LBRACE_STAR] = ACTIONS(381), + [anon_sym_STAR] = ACTIONS(383), + [anon_sym_LBRACE_CARET] = ACTIONS(385), + [anon_sym_CARET] = ACTIONS(385), + [anon_sym_LBRACE_TILDE] = ACTIONS(387), + [anon_sym_TILDE] = ACTIONS(387), + [anon_sym_LBRACE_EQ] = ACTIONS(389), + [anon_sym_LBRACE_PLUS] = ACTIONS(391), + [anon_sym_LBRACE_DASH] = ACTIONS(393), + [anon_sym_BSLASH] = ACTIONS(395), + [sym_quotation_marks] = ACTIONS(397), + [sym_ellipsis] = ACTIONS(397), + [sym_em_dash] = ACTIONS(397), + [sym_en_dash] = ACTIONS(399), + [sym_backslash_escape] = ACTIONS(399), + [anon_sym_LT] = ACTIONS(401), + [sym_symbol] = ACTIONS(397), + [anon_sym_LBRACK_CARET] = ACTIONS(403), + [anon_sym_BANG_LBRACK] = ACTIONS(405), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_RBRACK] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(409), + [anon_sym_TODO] = ACTIONS(411), + [anon_sym_WIP] = ACTIONS(411), + [anon_sym_NOTE] = ACTIONS(413), + [anon_sym_INFO] = ACTIONS(413), + [anon_sym_XXX] = ACTIONS(413), + [sym_fixme] = ACTIONS(397), + [sym__whitespace1] = ACTIONS(415), + [sym__newline] = ACTIONS(613), + [aux_sym__text_token1] = ACTIONS(419), + [sym__verbatim_begin] = ACTIONS(421), }, - [51] = { - [sym__inline_without_trailing_space] = STATE(981), - [sym__element] = STATE(562), - [sym_emphasis] = STATE(142), - [sym_emphasis_begin] = STATE(1147), - [sym_strong] = STATE(142), - [sym_strong_begin] = STATE(1148), - [sym_superscript] = STATE(142), - [sym_superscript_begin] = STATE(1149), - [sym_subscript] = STATE(142), - [sym_subscript_begin] = STATE(1150), - [sym_highlighted] = STATE(142), - [sym_highlighted_begin] = STATE(1151), - [sym_insert] = STATE(142), - [sym_insert_begin] = STATE(1152), - [sym_delete] = STATE(142), - [sym_delete_begin] = STATE(1153), - [sym_hard_line_break] = STATE(142), - [sym__smart_punctuation] = STATE(142), - [sym_autolink] = STATE(142), - [sym_footnote_reference] = STATE(142), - [sym__image] = STATE(142), - [sym_full_reference_image] = STATE(142), - [sym_collapsed_reference_image] = STATE(142), - [sym_inline_image] = STATE(142), - [sym__image_description] = STATE(685), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(142), - [sym_full_reference_link] = STATE(142), - [sym_collapsed_reference_link] = STATE(142), - [sym_inline_link] = STATE(142), - [sym_link_text] = STATE(683), - [sym_span] = STATE(562), - [sym__bracketed_text] = STATE(657), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(142), - [sym_raw_inline] = STATE(142), - [sym_math] = STATE(142), - [sym_verbatim] = STATE(142), - [sym__todo_highlights] = STATE(142), - [sym_todo] = STATE(142), - [sym_note] = STATE(142), - [sym__symbol_fallback] = STATE(142), + [48] = { + [sym__inline] = STATE(919), + [sym__element] = STATE(82), + [sym_emphasis] = STATE(143), + [sym_emphasis_begin] = STATE(1169), + [sym_strong] = STATE(143), + [sym_strong_begin] = STATE(1170), + [sym_superscript] = STATE(143), + [sym_superscript_begin] = STATE(1171), + [sym_subscript] = STATE(143), + [sym_subscript_begin] = STATE(1172), + [sym_highlighted] = STATE(143), + [sym_highlighted_begin] = STATE(1173), + [sym_insert] = STATE(143), + [sym_insert_begin] = STATE(1174), + [sym_delete] = STATE(143), + [sym_delete_begin] = STATE(1175), + [sym_hard_line_break] = STATE(143), + [sym__smart_punctuation] = STATE(143), + [sym_autolink] = STATE(143), + [sym_footnote_reference] = STATE(143), + [sym_footnote_marker_begin] = STATE(1176), + [sym__image] = STATE(143), + [sym_full_reference_image] = STATE(143), + [sym_collapsed_reference_image] = STATE(143), + [sym_inline_image] = STATE(143), + [sym__image_description] = STATE(701), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(143), + [sym_full_reference_link] = STATE(143), + [sym_collapsed_reference_link] = STATE(143), + [sym_inline_link] = STATE(143), + [sym_link_text] = STATE(702), + [sym_span] = STATE(82), + [sym__bracketed_text] = STATE(667), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(143), + [sym_raw_inline] = STATE(143), + [sym_math] = STATE(143), + [sym_verbatim] = STATE(143), + [sym__todo_highlights] = STATE(143), + [sym_todo] = STATE(143), + [sym_note] = STATE(143), + [sym__symbol_fallback] = STATE(143), [aux_sym__text] = STATE(126), - [aux_sym__inline_repeat1] = STATE(120), - [anon_sym_LBRACE_] = ACTIONS(373), - [anon_sym__] = ACTIONS(375), - [anon_sym_LBRACE_STAR] = ACTIONS(377), - [anon_sym_STAR] = ACTIONS(379), - [anon_sym_LBRACE_CARET] = ACTIONS(381), - [anon_sym_CARET] = ACTIONS(381), - [anon_sym_LBRACE_TILDE] = ACTIONS(383), - [anon_sym_TILDE] = ACTIONS(383), - [anon_sym_LBRACE_EQ] = ACTIONS(385), - [anon_sym_LBRACE_PLUS] = ACTIONS(387), - [anon_sym_LBRACE_DASH] = ACTIONS(389), - [anon_sym_BSLASH] = ACTIONS(391), - [sym_quotation_marks] = ACTIONS(393), - [sym_ellipsis] = ACTIONS(393), - [sym_em_dash] = ACTIONS(393), - [sym_en_dash] = ACTIONS(395), - [sym_backslash_escape] = ACTIONS(395), - [anon_sym_LT] = ACTIONS(397), - [sym_symbol] = ACTIONS(393), - [anon_sym_LBRACK_CARET] = ACTIONS(399), - [anon_sym_BANG_LBRACK] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_DOLLAR] = ACTIONS(405), - [anon_sym_TODO] = ACTIONS(407), - [anon_sym_WIP] = ACTIONS(407), - [anon_sym_NOTE] = ACTIONS(409), - [anon_sym_INFO] = ACTIONS(409), - [anon_sym_XXX] = ACTIONS(409), - [sym_fixme] = ACTIONS(393), - [sym__whitespace1] = ACTIONS(411), - [sym__newline] = ACTIONS(413), - [aux_sym__text_token1] = ACTIONS(415), - [sym__verbatim_begin] = ACTIONS(417), + [aux_sym__inline_repeat1] = STATE(82), + [anon_sym_LBRACE_] = ACTIONS(285), + [anon_sym__] = ACTIONS(287), + [anon_sym_LBRACE_STAR] = ACTIONS(289), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_LBRACE_CARET] = ACTIONS(293), + [anon_sym_CARET] = ACTIONS(293), + [anon_sym_LBRACE_TILDE] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_LBRACE_EQ] = ACTIONS(297), + [anon_sym_LBRACE_PLUS] = ACTIONS(299), + [anon_sym_LBRACE_DASH] = ACTIONS(301), + [anon_sym_BSLASH] = ACTIONS(303), + [sym_quotation_marks] = ACTIONS(305), + [sym_ellipsis] = ACTIONS(305), + [sym_em_dash] = ACTIONS(305), + [sym_en_dash] = ACTIONS(307), + [sym_backslash_escape] = ACTIONS(307), + [anon_sym_LT] = ACTIONS(309), + [sym_symbol] = ACTIONS(305), + [anon_sym_LBRACK_CARET] = ACTIONS(311), + [anon_sym_BANG_LBRACK] = ACTIONS(313), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_DOLLAR] = ACTIONS(317), + [anon_sym_TODO] = ACTIONS(319), + [anon_sym_WIP] = ACTIONS(319), + [anon_sym_NOTE] = ACTIONS(321), + [anon_sym_INFO] = ACTIONS(321), + [anon_sym_XXX] = ACTIONS(321), + [sym_fixme] = ACTIONS(305), + [sym__whitespace1] = ACTIONS(323), + [sym__newline] = ACTIONS(325), + [aux_sym__text_token1] = ACTIONS(327), + [sym__verbatim_begin] = ACTIONS(329), }, - [52] = { - [sym__inline_without_trailing_space] = STATE(1073), - [sym__element] = STATE(604), + [49] = { + [sym__inline_without_trailing_space] = STATE(921), + [sym__element] = STATE(572), [sym_emphasis] = STATE(138), - [sym_emphasis_begin] = STATE(1140), + [sym_emphasis_begin] = STATE(1161), [sym_strong] = STATE(138), - [sym_strong_begin] = STATE(1141), + [sym_strong_begin] = STATE(1162), [sym_superscript] = STATE(138), - [sym_superscript_begin] = STATE(1142), + [sym_superscript_begin] = STATE(1163), [sym_subscript] = STATE(138), - [sym_subscript_begin] = STATE(1143), + [sym_subscript_begin] = STATE(1164), [sym_highlighted] = STATE(138), - [sym_highlighted_begin] = STATE(1144), + [sym_highlighted_begin] = STATE(1165), [sym_insert] = STATE(138), - [sym_insert_begin] = STATE(1145), + [sym_insert_begin] = STATE(1166), [sym_delete] = STATE(138), - [sym_delete_begin] = STATE(1146), + [sym_delete_begin] = STATE(1167), [sym_hard_line_break] = STATE(138), [sym__smart_punctuation] = STATE(138), [sym_autolink] = STATE(138), [sym_footnote_reference] = STATE(138), + [sym_footnote_marker_begin] = STATE(1168), [sym__image] = STATE(138), [sym_full_reference_image] = STATE(138), [sym_collapsed_reference_image] = STATE(138), [sym_inline_image] = STATE(138), - [sym__image_description] = STATE(667), - [sym__image_description_begin] = STATE(1103), + [sym__image_description] = STATE(703), + [sym__image_description_begin] = STATE(1114), [sym__link] = STATE(138), [sym_full_reference_link] = STATE(138), [sym_collapsed_reference_link] = STATE(138), [sym_inline_link] = STATE(138), - [sym_link_text] = STATE(689), - [sym_span] = STATE(604), - [sym__bracketed_text] = STATE(658), - [sym__bracketed_text_begin] = STATE(1102), + [sym_link_text] = STATE(697), + [sym_span] = STATE(572), + [sym__bracketed_text] = STATE(671), + [sym__bracketed_text_begin] = STATE(1113), [sym__comment_with_spaces] = STATE(138), [sym_raw_inline] = STATE(138), [sym_math] = STATE(138), @@ -9152,314 +9143,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(138), [sym_note] = STATE(138), [sym__symbol_fallback] = STATE(138), - [aux_sym__text] = STATE(124), - [aux_sym__inline_repeat1] = STATE(118), - [anon_sym_LBRACE_] = ACTIONS(419), - [anon_sym__] = ACTIONS(421), - [anon_sym_LBRACE_STAR] = ACTIONS(423), - [anon_sym_STAR] = ACTIONS(425), - [anon_sym_LBRACE_CARET] = ACTIONS(427), - [anon_sym_CARET] = ACTIONS(427), - [anon_sym_LBRACE_TILDE] = ACTIONS(429), - [anon_sym_TILDE] = ACTIONS(429), - [anon_sym_LBRACE_EQ] = ACTIONS(431), - [anon_sym_LBRACE_PLUS] = ACTIONS(433), - [anon_sym_LBRACE_DASH] = ACTIONS(435), - [anon_sym_BSLASH] = ACTIONS(437), - [sym_quotation_marks] = ACTIONS(439), - [sym_ellipsis] = ACTIONS(439), - [sym_em_dash] = ACTIONS(439), - [sym_en_dash] = ACTIONS(441), - [sym_backslash_escape] = ACTIONS(441), - [anon_sym_LT] = ACTIONS(443), - [sym_symbol] = ACTIONS(439), - [anon_sym_LBRACK_CARET] = ACTIONS(445), - [anon_sym_BANG_LBRACK] = ACTIONS(447), - [anon_sym_LBRACK] = ACTIONS(449), - [anon_sym_DOLLAR] = ACTIONS(451), - [anon_sym_TODO] = ACTIONS(453), - [anon_sym_WIP] = ACTIONS(453), - [anon_sym_NOTE] = ACTIONS(455), - [anon_sym_INFO] = ACTIONS(455), - [anon_sym_XXX] = ACTIONS(455), - [sym_fixme] = ACTIONS(439), - [sym__whitespace1] = ACTIONS(457), - [sym__newline] = ACTIONS(459), - [aux_sym__text_token1] = ACTIONS(461), - [sym__verbatim_begin] = ACTIONS(463), - }, - [53] = { - [sym__inline_without_trailing_space] = STATE(1072), - [sym__element] = STATE(562), - [sym_emphasis] = STATE(142), - [sym_emphasis_begin] = STATE(1147), - [sym_strong] = STATE(142), - [sym_strong_begin] = STATE(1148), - [sym_superscript] = STATE(142), - [sym_superscript_begin] = STATE(1149), - [sym_subscript] = STATE(142), - [sym_subscript_begin] = STATE(1150), - [sym_highlighted] = STATE(142), - [sym_highlighted_begin] = STATE(1151), - [sym_insert] = STATE(142), - [sym_insert_begin] = STATE(1152), - [sym_delete] = STATE(142), - [sym_delete_begin] = STATE(1153), - [sym_hard_line_break] = STATE(142), - [sym__smart_punctuation] = STATE(142), - [sym_autolink] = STATE(142), - [sym_footnote_reference] = STATE(142), - [sym__image] = STATE(142), - [sym_full_reference_image] = STATE(142), - [sym_collapsed_reference_image] = STATE(142), - [sym_inline_image] = STATE(142), - [sym__image_description] = STATE(685), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(142), - [sym_full_reference_link] = STATE(142), - [sym_collapsed_reference_link] = STATE(142), - [sym_inline_link] = STATE(142), - [sym_link_text] = STATE(683), - [sym_span] = STATE(562), - [sym__bracketed_text] = STATE(657), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(142), - [sym_raw_inline] = STATE(142), - [sym_math] = STATE(142), - [sym_verbatim] = STATE(142), - [sym__todo_highlights] = STATE(142), - [sym_todo] = STATE(142), - [sym_note] = STATE(142), - [sym__symbol_fallback] = STATE(142), - [aux_sym__text] = STATE(126), + [aux_sym__text] = STATE(122), [aux_sym__inline_repeat1] = STATE(120), - [anon_sym_LBRACE_] = ACTIONS(373), - [anon_sym__] = ACTIONS(375), - [anon_sym_LBRACE_STAR] = ACTIONS(377), - [anon_sym_STAR] = ACTIONS(379), - [anon_sym_LBRACE_CARET] = ACTIONS(381), - [anon_sym_CARET] = ACTIONS(381), - [anon_sym_LBRACE_TILDE] = ACTIONS(383), - [anon_sym_TILDE] = ACTIONS(383), - [anon_sym_LBRACE_EQ] = ACTIONS(385), - [anon_sym_LBRACE_PLUS] = ACTIONS(387), - [anon_sym_LBRACE_DASH] = ACTIONS(389), - [anon_sym_BSLASH] = ACTIONS(391), - [sym_quotation_marks] = ACTIONS(393), - [sym_ellipsis] = ACTIONS(393), - [sym_em_dash] = ACTIONS(393), - [sym_en_dash] = ACTIONS(395), - [sym_backslash_escape] = ACTIONS(395), - [anon_sym_LT] = ACTIONS(397), - [sym_symbol] = ACTIONS(393), - [anon_sym_LBRACK_CARET] = ACTIONS(399), - [anon_sym_BANG_LBRACK] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_DOLLAR] = ACTIONS(405), - [anon_sym_TODO] = ACTIONS(407), - [anon_sym_WIP] = ACTIONS(407), - [anon_sym_NOTE] = ACTIONS(409), - [anon_sym_INFO] = ACTIONS(409), - [anon_sym_XXX] = ACTIONS(409), - [sym_fixme] = ACTIONS(393), - [sym__whitespace1] = ACTIONS(411), - [sym__newline] = ACTIONS(413), - [aux_sym__text_token1] = ACTIONS(415), - [sym__verbatim_begin] = ACTIONS(417), - }, - [54] = { - [sym__inline] = STATE(1071), - [sym__element] = STATE(105), - [sym_emphasis] = STATE(140), - [sym_emphasis_begin] = STATE(1154), - [sym_strong] = STATE(140), - [sym_strong_begin] = STATE(1155), - [sym_superscript] = STATE(140), - [sym_superscript_begin] = STATE(1156), - [sym_subscript] = STATE(140), - [sym_subscript_begin] = STATE(1157), - [sym_highlighted] = STATE(140), - [sym_highlighted_begin] = STATE(1158), - [sym_insert] = STATE(140), - [sym_insert_begin] = STATE(1159), - [sym_delete] = STATE(140), - [sym_delete_begin] = STATE(1160), - [sym_hard_line_break] = STATE(140), - [sym__smart_punctuation] = STATE(140), - [sym_autolink] = STATE(140), - [sym_footnote_reference] = STATE(140), - [sym__image] = STATE(140), - [sym_full_reference_image] = STATE(140), - [sym_collapsed_reference_image] = STATE(140), - [sym_inline_image] = STATE(140), - [sym__image_description] = STATE(687), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(140), - [sym_full_reference_link] = STATE(140), - [sym_collapsed_reference_link] = STATE(140), - [sym_inline_link] = STATE(140), - [sym_link_text] = STATE(688), - [sym_span] = STATE(105), - [sym__bracketed_text] = STATE(654), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(140), - [sym_raw_inline] = STATE(140), - [sym_math] = STATE(140), - [sym_verbatim] = STATE(140), - [sym__todo_highlights] = STATE(140), - [sym_todo] = STATE(140), - [sym_note] = STATE(140), - [sym__symbol_fallback] = STATE(140), - [aux_sym__text] = STATE(131), - [aux_sym__inline_repeat1] = STATE(105), - [anon_sym_LBRACE_] = ACTIONS(327), - [anon_sym__] = ACTIONS(329), - [anon_sym_LBRACE_STAR] = ACTIONS(331), - [anon_sym_STAR] = ACTIONS(333), - [anon_sym_LBRACE_CARET] = ACTIONS(335), - [anon_sym_CARET] = ACTIONS(335), - [anon_sym_LBRACE_TILDE] = ACTIONS(337), - [anon_sym_TILDE] = ACTIONS(337), - [anon_sym_LBRACE_EQ] = ACTIONS(339), - [anon_sym_LBRACE_PLUS] = ACTIONS(341), - [anon_sym_LBRACE_DASH] = ACTIONS(343), - [anon_sym_BSLASH] = ACTIONS(345), - [sym_quotation_marks] = ACTIONS(347), - [sym_ellipsis] = ACTIONS(347), - [sym_em_dash] = ACTIONS(347), - [sym_en_dash] = ACTIONS(349), - [sym_backslash_escape] = ACTIONS(349), - [anon_sym_LT] = ACTIONS(351), - [sym_symbol] = ACTIONS(347), - [anon_sym_LBRACK_CARET] = ACTIONS(353), - [anon_sym_BANG_LBRACK] = ACTIONS(355), - [anon_sym_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [anon_sym_TODO] = ACTIONS(361), - [anon_sym_WIP] = ACTIONS(361), - [anon_sym_NOTE] = ACTIONS(363), - [anon_sym_INFO] = ACTIONS(363), - [anon_sym_XXX] = ACTIONS(363), - [sym_fixme] = ACTIONS(347), - [sym__whitespace1] = ACTIONS(365), - [sym__newline] = ACTIONS(367), - [aux_sym__text_token1] = ACTIONS(369), - [sym__verbatim_begin] = ACTIONS(371), + [anon_sym_LBRACE_] = ACTIONS(331), + [anon_sym__] = ACTIONS(333), + [anon_sym_LBRACE_STAR] = ACTIONS(335), + [anon_sym_STAR] = ACTIONS(337), + [anon_sym_LBRACE_CARET] = ACTIONS(339), + [anon_sym_CARET] = ACTIONS(339), + [anon_sym_LBRACE_TILDE] = ACTIONS(341), + [anon_sym_TILDE] = ACTIONS(341), + [anon_sym_LBRACE_EQ] = ACTIONS(343), + [anon_sym_LBRACE_PLUS] = ACTIONS(345), + [anon_sym_LBRACE_DASH] = ACTIONS(347), + [anon_sym_BSLASH] = ACTIONS(349), + [sym_quotation_marks] = ACTIONS(351), + [sym_ellipsis] = ACTIONS(351), + [sym_em_dash] = ACTIONS(351), + [sym_en_dash] = ACTIONS(353), + [sym_backslash_escape] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [sym_symbol] = ACTIONS(351), + [anon_sym_LBRACK_CARET] = ACTIONS(357), + [anon_sym_BANG_LBRACK] = ACTIONS(359), + [anon_sym_LBRACK] = ACTIONS(361), + [anon_sym_DOLLAR] = ACTIONS(363), + [anon_sym_TODO] = ACTIONS(365), + [anon_sym_WIP] = ACTIONS(365), + [anon_sym_NOTE] = ACTIONS(367), + [anon_sym_INFO] = ACTIONS(367), + [anon_sym_XXX] = ACTIONS(367), + [sym_fixme] = ACTIONS(351), + [sym__whitespace1] = ACTIONS(369), + [sym__newline] = ACTIONS(371), + [aux_sym__text_token1] = ACTIONS(373), + [sym__verbatim_begin] = ACTIONS(375), }, - [55] = { - [sym__inline] = STATE(1070), - [sym__element] = STATE(70), - [sym_emphasis] = STATE(136), + [50] = { + [sym__inline_without_trailing_space] = STATE(1042), + [sym__element] = STATE(572), + [sym_emphasis] = STATE(138), [sym_emphasis_begin] = STATE(1161), - [sym_strong] = STATE(136), + [sym_strong] = STATE(138), [sym_strong_begin] = STATE(1162), - [sym_superscript] = STATE(136), + [sym_superscript] = STATE(138), [sym_superscript_begin] = STATE(1163), - [sym_subscript] = STATE(136), + [sym_subscript] = STATE(138), [sym_subscript_begin] = STATE(1164), - [sym_highlighted] = STATE(136), + [sym_highlighted] = STATE(138), [sym_highlighted_begin] = STATE(1165), - [sym_insert] = STATE(136), + [sym_insert] = STATE(138), [sym_insert_begin] = STATE(1166), - [sym_delete] = STATE(136), + [sym_delete] = STATE(138), [sym_delete_begin] = STATE(1167), - [sym_hard_line_break] = STATE(136), - [sym__smart_punctuation] = STATE(136), - [sym_autolink] = STATE(136), - [sym_footnote_reference] = STATE(136), - [sym__image] = STATE(136), - [sym_full_reference_image] = STATE(136), - [sym_collapsed_reference_image] = STATE(136), - [sym_inline_image] = STATE(136), - [sym__image_description] = STATE(690), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(136), - [sym_full_reference_link] = STATE(136), - [sym_collapsed_reference_link] = STATE(136), - [sym_inline_link] = STATE(136), - [sym_link_text] = STATE(691), - [sym_span] = STATE(70), - [sym__bracketed_text] = STATE(653), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(136), - [sym_raw_inline] = STATE(136), - [sym_math] = STATE(136), - [sym_verbatim] = STATE(136), - [sym__todo_highlights] = STATE(136), - [sym_todo] = STATE(136), - [sym_note] = STATE(136), - [sym__symbol_fallback] = STATE(136), - [aux_sym__text] = STATE(125), - [aux_sym__inline_repeat1] = STATE(70), - [anon_sym_LBRACE_] = ACTIONS(97), - [anon_sym__] = ACTIONS(99), - [anon_sym_LBRACE_STAR] = ACTIONS(101), - [anon_sym_STAR] = ACTIONS(103), - [anon_sym_LBRACE_CARET] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [anon_sym_LBRACE_TILDE] = ACTIONS(107), - [anon_sym_TILDE] = ACTIONS(107), - [anon_sym_LBRACE_EQ] = ACTIONS(109), - [anon_sym_LBRACE_PLUS] = ACTIONS(111), - [anon_sym_LBRACE_DASH] = ACTIONS(113), - [anon_sym_BSLASH] = ACTIONS(115), - [sym_quotation_marks] = ACTIONS(117), - [sym_ellipsis] = ACTIONS(117), - [sym_em_dash] = ACTIONS(117), - [sym_en_dash] = ACTIONS(119), - [sym_backslash_escape] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [sym_symbol] = ACTIONS(117), - [anon_sym_LBRACK_CARET] = ACTIONS(123), - [anon_sym_BANG_LBRACK] = ACTIONS(125), - [anon_sym_LBRACK] = ACTIONS(127), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_TODO] = ACTIONS(131), - [anon_sym_WIP] = ACTIONS(131), - [anon_sym_NOTE] = ACTIONS(133), - [anon_sym_INFO] = ACTIONS(133), - [anon_sym_XXX] = ACTIONS(133), - [sym_fixme] = ACTIONS(117), - [sym__whitespace1] = ACTIONS(135), - [sym__newline] = ACTIONS(137), - [aux_sym__text_token1] = ACTIONS(139), - [sym__verbatim_begin] = ACTIONS(141), + [sym_hard_line_break] = STATE(138), + [sym__smart_punctuation] = STATE(138), + [sym_autolink] = STATE(138), + [sym_footnote_reference] = STATE(138), + [sym_footnote_marker_begin] = STATE(1168), + [sym__image] = STATE(138), + [sym_full_reference_image] = STATE(138), + [sym_collapsed_reference_image] = STATE(138), + [sym_inline_image] = STATE(138), + [sym__image_description] = STATE(703), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(138), + [sym_full_reference_link] = STATE(138), + [sym_collapsed_reference_link] = STATE(138), + [sym_inline_link] = STATE(138), + [sym_link_text] = STATE(697), + [sym_span] = STATE(572), + [sym__bracketed_text] = STATE(671), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(138), + [sym_raw_inline] = STATE(138), + [sym_math] = STATE(138), + [sym_verbatim] = STATE(138), + [sym__todo_highlights] = STATE(138), + [sym_todo] = STATE(138), + [sym_note] = STATE(138), + [sym__symbol_fallback] = STATE(138), + [aux_sym__text] = STATE(122), + [aux_sym__inline_repeat1] = STATE(120), + [anon_sym_LBRACE_] = ACTIONS(331), + [anon_sym__] = ACTIONS(333), + [anon_sym_LBRACE_STAR] = ACTIONS(335), + [anon_sym_STAR] = ACTIONS(337), + [anon_sym_LBRACE_CARET] = ACTIONS(339), + [anon_sym_CARET] = ACTIONS(339), + [anon_sym_LBRACE_TILDE] = ACTIONS(341), + [anon_sym_TILDE] = ACTIONS(341), + [anon_sym_LBRACE_EQ] = ACTIONS(343), + [anon_sym_LBRACE_PLUS] = ACTIONS(345), + [anon_sym_LBRACE_DASH] = ACTIONS(347), + [anon_sym_BSLASH] = ACTIONS(349), + [sym_quotation_marks] = ACTIONS(351), + [sym_ellipsis] = ACTIONS(351), + [sym_em_dash] = ACTIONS(351), + [sym_en_dash] = ACTIONS(353), + [sym_backslash_escape] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [sym_symbol] = ACTIONS(351), + [anon_sym_LBRACK_CARET] = ACTIONS(357), + [anon_sym_BANG_LBRACK] = ACTIONS(359), + [anon_sym_LBRACK] = ACTIONS(361), + [anon_sym_DOLLAR] = ACTIONS(363), + [anon_sym_TODO] = ACTIONS(365), + [anon_sym_WIP] = ACTIONS(365), + [anon_sym_NOTE] = ACTIONS(367), + [anon_sym_INFO] = ACTIONS(367), + [anon_sym_XXX] = ACTIONS(367), + [sym_fixme] = ACTIONS(351), + [sym__whitespace1] = ACTIONS(369), + [sym__newline] = ACTIONS(371), + [aux_sym__text_token1] = ACTIONS(373), + [sym__verbatim_begin] = ACTIONS(375), }, - [56] = { - [sym__inline] = STATE(1062), - [sym__element] = STATE(13), + [51] = { + [sym__inline_without_trailing_space] = STATE(1086), + [sym__element] = STATE(538), [sym_emphasis] = STATE(141), - [sym_emphasis_begin] = STATE(1168), + [sym_emphasis_begin] = STATE(1153), [sym_strong] = STATE(141), - [sym_strong_begin] = STATE(1169), + [sym_strong_begin] = STATE(1154), [sym_superscript] = STATE(141), - [sym_superscript_begin] = STATE(1170), + [sym_superscript_begin] = STATE(1155), [sym_subscript] = STATE(141), - [sym_subscript_begin] = STATE(1171), + [sym_subscript_begin] = STATE(1156), [sym_highlighted] = STATE(141), - [sym_highlighted_begin] = STATE(1172), + [sym_highlighted_begin] = STATE(1157), [sym_insert] = STATE(141), - [sym_insert_begin] = STATE(1173), + [sym_insert_begin] = STATE(1158), [sym_delete] = STATE(141), - [sym_delete_begin] = STATE(1174), + [sym_delete_begin] = STATE(1159), [sym_hard_line_break] = STATE(141), [sym__smart_punctuation] = STATE(141), [sym_autolink] = STATE(141), [sym_footnote_reference] = STATE(141), + [sym_footnote_marker_begin] = STATE(1160), [sym__image] = STATE(141), [sym_full_reference_image] = STATE(141), [sym_collapsed_reference_image] = STATE(141), [sym_inline_image] = STATE(141), - [sym__image_description] = STATE(674), - [sym__image_description_begin] = STATE(1103), + [sym__image_description] = STATE(681), + [sym__image_description_begin] = STATE(1114), [sym__link] = STATE(141), [sym_full_reference_link] = STATE(141), [sym_collapsed_reference_link] = STATE(141), [sym_inline_link] = STATE(141), - [sym_link_text] = STATE(672), - [sym_span] = STATE(13), - [sym__bracketed_text] = STATE(655), - [sym__bracketed_text_begin] = STATE(1102), + [sym_link_text] = STATE(680), + [sym_span] = STATE(538), + [sym__bracketed_text] = STATE(664), + [sym__bracketed_text_begin] = STATE(1113), [sym__comment_with_spaces] = STATE(141), [sym_raw_inline] = STATE(141), [sym_math] = STATE(141), @@ -9469,234 +9304,317 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_note] = STATE(141), [sym__symbol_fallback] = STATE(141), [aux_sym__text] = STATE(128), - [aux_sym__inline_repeat1] = STATE(13), - [anon_sym_LBRACE_] = ACTIONS(281), - [anon_sym__] = ACTIONS(283), - [anon_sym_LBRACE_STAR] = ACTIONS(285), - [anon_sym_STAR] = ACTIONS(287), - [anon_sym_LBRACE_CARET] = ACTIONS(289), - [anon_sym_CARET] = ACTIONS(289), - [anon_sym_LBRACE_TILDE] = ACTIONS(291), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_LBRACE_EQ] = ACTIONS(293), - [anon_sym_LBRACE_PLUS] = ACTIONS(295), - [anon_sym_LBRACE_DASH] = ACTIONS(297), - [anon_sym_BSLASH] = ACTIONS(299), - [sym_quotation_marks] = ACTIONS(301), - [sym_ellipsis] = ACTIONS(301), - [sym_em_dash] = ACTIONS(301), - [sym_en_dash] = ACTIONS(303), - [sym_backslash_escape] = ACTIONS(303), - [anon_sym_LT] = ACTIONS(305), - [sym_symbol] = ACTIONS(301), - [anon_sym_LBRACK_CARET] = ACTIONS(307), - [anon_sym_BANG_LBRACK] = ACTIONS(309), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_DOLLAR] = ACTIONS(313), - [anon_sym_TODO] = ACTIONS(315), - [anon_sym_WIP] = ACTIONS(315), - [anon_sym_NOTE] = ACTIONS(317), - [anon_sym_INFO] = ACTIONS(317), - [anon_sym_XXX] = ACTIONS(317), - [sym_fixme] = ACTIONS(301), - [sym__whitespace1] = ACTIONS(319), - [sym__newline] = ACTIONS(321), - [aux_sym__text_token1] = ACTIONS(323), - [sym__verbatim_begin] = ACTIONS(325), + [aux_sym__inline_repeat1] = STATE(119), + [anon_sym_LBRACE_] = ACTIONS(147), + [anon_sym__] = ACTIONS(149), + [anon_sym_LBRACE_STAR] = ACTIONS(151), + [anon_sym_STAR] = ACTIONS(153), + [anon_sym_LBRACE_CARET] = ACTIONS(155), + [anon_sym_CARET] = ACTIONS(155), + [anon_sym_LBRACE_TILDE] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_LBRACE_EQ] = ACTIONS(159), + [anon_sym_LBRACE_PLUS] = ACTIONS(161), + [anon_sym_LBRACE_DASH] = ACTIONS(163), + [anon_sym_BSLASH] = ACTIONS(165), + [sym_quotation_marks] = ACTIONS(167), + [sym_ellipsis] = ACTIONS(167), + [sym_em_dash] = ACTIONS(167), + [sym_en_dash] = ACTIONS(169), + [sym_backslash_escape] = ACTIONS(169), + [anon_sym_LT] = ACTIONS(171), + [sym_symbol] = ACTIONS(167), + [anon_sym_LBRACK_CARET] = ACTIONS(173), + [anon_sym_BANG_LBRACK] = ACTIONS(175), + [anon_sym_LBRACK] = ACTIONS(177), + [anon_sym_DOLLAR] = ACTIONS(179), + [anon_sym_TODO] = ACTIONS(181), + [anon_sym_WIP] = ACTIONS(181), + [anon_sym_NOTE] = ACTIONS(183), + [anon_sym_INFO] = ACTIONS(183), + [anon_sym_XXX] = ACTIONS(183), + [sym_fixme] = ACTIONS(167), + [sym__whitespace1] = ACTIONS(185), + [sym__newline] = ACTIONS(187), + [aux_sym__text_token1] = ACTIONS(189), + [sym__verbatim_begin] = ACTIONS(191), }, - [57] = { - [sym__inline] = STATE(1061), - [sym__element] = STATE(103), - [sym_emphasis] = STATE(139), - [sym_emphasis_begin] = STATE(1175), - [sym_strong] = STATE(139), - [sym_strong_begin] = STATE(1176), - [sym_superscript] = STATE(139), - [sym_superscript_begin] = STATE(1177), - [sym_subscript] = STATE(139), - [sym_subscript_begin] = STATE(1178), - [sym_highlighted] = STATE(139), - [sym_highlighted_begin] = STATE(1179), - [sym_insert] = STATE(139), - [sym_insert_begin] = STATE(1180), - [sym_delete] = STATE(139), - [sym_delete_begin] = STATE(1181), - [sym_hard_line_break] = STATE(139), - [sym__smart_punctuation] = STATE(139), - [sym_autolink] = STATE(139), - [sym_footnote_reference] = STATE(139), - [sym__image] = STATE(139), - [sym_full_reference_image] = STATE(139), - [sym_collapsed_reference_image] = STATE(139), - [sym_inline_image] = STATE(139), - [sym__image_description] = STATE(682), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(139), - [sym_full_reference_link] = STATE(139), - [sym_collapsed_reference_link] = STATE(139), - [sym_inline_link] = STATE(139), - [sym_link_text] = STATE(681), - [sym_span] = STATE(103), - [sym__bracketed_text] = STATE(656), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(139), - [sym_raw_inline] = STATE(139), - [sym_math] = STATE(139), - [sym_verbatim] = STATE(139), - [sym__todo_highlights] = STATE(139), - [sym_todo] = STATE(139), - [sym_note] = STATE(139), - [sym__symbol_fallback] = STATE(139), - [aux_sym__text] = STATE(129), - [aux_sym__inline_repeat1] = STATE(103), - [anon_sym_LBRACE_] = ACTIONS(235), - [anon_sym__] = ACTIONS(237), - [anon_sym_LBRACE_STAR] = ACTIONS(239), - [anon_sym_STAR] = ACTIONS(241), - [anon_sym_LBRACE_CARET] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(243), - [anon_sym_LBRACE_TILDE] = ACTIONS(245), - [anon_sym_TILDE] = ACTIONS(245), - [anon_sym_LBRACE_EQ] = ACTIONS(247), - [anon_sym_LBRACE_PLUS] = ACTIONS(249), - [anon_sym_LBRACE_DASH] = ACTIONS(251), - [anon_sym_BSLASH] = ACTIONS(253), - [sym_quotation_marks] = ACTIONS(255), - [sym_ellipsis] = ACTIONS(255), - [sym_em_dash] = ACTIONS(255), - [sym_en_dash] = ACTIONS(257), - [sym_backslash_escape] = ACTIONS(257), - [anon_sym_LT] = ACTIONS(259), - [sym_symbol] = ACTIONS(255), - [anon_sym_LBRACK_CARET] = ACTIONS(261), - [anon_sym_BANG_LBRACK] = ACTIONS(263), - [anon_sym_LBRACK] = ACTIONS(265), - [anon_sym_DOLLAR] = ACTIONS(267), - [anon_sym_TODO] = ACTIONS(269), - [anon_sym_WIP] = ACTIONS(269), - [anon_sym_NOTE] = ACTIONS(271), - [anon_sym_INFO] = ACTIONS(271), - [anon_sym_XXX] = ACTIONS(271), - [sym_fixme] = ACTIONS(255), - [sym__whitespace1] = ACTIONS(273), - [sym__newline] = ACTIONS(275), - [aux_sym__text_token1] = ACTIONS(277), - [sym__verbatim_begin] = ACTIONS(279), + [52] = { + [sym__inline_without_trailing_space] = STATE(1085), + [sym__element] = STATE(572), + [sym_emphasis] = STATE(138), + [sym_emphasis_begin] = STATE(1161), + [sym_strong] = STATE(138), + [sym_strong_begin] = STATE(1162), + [sym_superscript] = STATE(138), + [sym_superscript_begin] = STATE(1163), + [sym_subscript] = STATE(138), + [sym_subscript_begin] = STATE(1164), + [sym_highlighted] = STATE(138), + [sym_highlighted_begin] = STATE(1165), + [sym_insert] = STATE(138), + [sym_insert_begin] = STATE(1166), + [sym_delete] = STATE(138), + [sym_delete_begin] = STATE(1167), + [sym_hard_line_break] = STATE(138), + [sym__smart_punctuation] = STATE(138), + [sym_autolink] = STATE(138), + [sym_footnote_reference] = STATE(138), + [sym_footnote_marker_begin] = STATE(1168), + [sym__image] = STATE(138), + [sym_full_reference_image] = STATE(138), + [sym_collapsed_reference_image] = STATE(138), + [sym_inline_image] = STATE(138), + [sym__image_description] = STATE(703), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(138), + [sym_full_reference_link] = STATE(138), + [sym_collapsed_reference_link] = STATE(138), + [sym_inline_link] = STATE(138), + [sym_link_text] = STATE(697), + [sym_span] = STATE(572), + [sym__bracketed_text] = STATE(671), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(138), + [sym_raw_inline] = STATE(138), + [sym_math] = STATE(138), + [sym_verbatim] = STATE(138), + [sym__todo_highlights] = STATE(138), + [sym_todo] = STATE(138), + [sym_note] = STATE(138), + [sym__symbol_fallback] = STATE(138), + [aux_sym__text] = STATE(122), + [aux_sym__inline_repeat1] = STATE(120), + [anon_sym_LBRACE_] = ACTIONS(331), + [anon_sym__] = ACTIONS(333), + [anon_sym_LBRACE_STAR] = ACTIONS(335), + [anon_sym_STAR] = ACTIONS(337), + [anon_sym_LBRACE_CARET] = ACTIONS(339), + [anon_sym_CARET] = ACTIONS(339), + [anon_sym_LBRACE_TILDE] = ACTIONS(341), + [anon_sym_TILDE] = ACTIONS(341), + [anon_sym_LBRACE_EQ] = ACTIONS(343), + [anon_sym_LBRACE_PLUS] = ACTIONS(345), + [anon_sym_LBRACE_DASH] = ACTIONS(347), + [anon_sym_BSLASH] = ACTIONS(349), + [sym_quotation_marks] = ACTIONS(351), + [sym_ellipsis] = ACTIONS(351), + [sym_em_dash] = ACTIONS(351), + [sym_en_dash] = ACTIONS(353), + [sym_backslash_escape] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [sym_symbol] = ACTIONS(351), + [anon_sym_LBRACK_CARET] = ACTIONS(357), + [anon_sym_BANG_LBRACK] = ACTIONS(359), + [anon_sym_LBRACK] = ACTIONS(361), + [anon_sym_DOLLAR] = ACTIONS(363), + [anon_sym_TODO] = ACTIONS(365), + [anon_sym_WIP] = ACTIONS(365), + [anon_sym_NOTE] = ACTIONS(367), + [anon_sym_INFO] = ACTIONS(367), + [anon_sym_XXX] = ACTIONS(367), + [sym_fixme] = ACTIONS(351), + [sym__whitespace1] = ACTIONS(369), + [sym__newline] = ACTIONS(371), + [aux_sym__text_token1] = ACTIONS(373), + [sym__verbatim_begin] = ACTIONS(375), }, - [58] = { - [sym__inline] = STATE(1060), - [sym__element] = STATE(21), - [sym_emphasis] = STATE(134), - [sym_emphasis_begin] = STATE(1182), - [sym_strong] = STATE(134), - [sym_strong_begin] = STATE(1183), - [sym_superscript] = STATE(134), - [sym_superscript_begin] = STATE(1184), - [sym_subscript] = STATE(134), - [sym_subscript_begin] = STATE(1185), - [sym_highlighted] = STATE(134), - [sym_highlighted_begin] = STATE(1186), - [sym_insert] = STATE(134), - [sym_insert_begin] = STATE(1187), - [sym_delete] = STATE(134), - [sym_delete_begin] = STATE(1188), - [sym_hard_line_break] = STATE(134), - [sym__smart_punctuation] = STATE(134), - [sym_autolink] = STATE(134), - [sym_footnote_reference] = STATE(134), - [sym__image] = STATE(134), - [sym_full_reference_image] = STATE(134), - [sym_collapsed_reference_image] = STATE(134), - [sym_inline_image] = STATE(134), - [sym__image_description] = STATE(677), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(134), - [sym_full_reference_link] = STATE(134), - [sym_collapsed_reference_link] = STATE(134), - [sym_inline_link] = STATE(134), - [sym_link_text] = STATE(675), - [sym_span] = STATE(21), - [sym__bracketed_text] = STATE(660), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(134), - [sym_raw_inline] = STATE(134), - [sym_math] = STATE(134), - [sym_verbatim] = STATE(134), - [sym__todo_highlights] = STATE(134), - [sym_todo] = STATE(134), - [sym_note] = STATE(134), - [sym__symbol_fallback] = STATE(134), - [aux_sym__text] = STATE(127), - [aux_sym__inline_repeat1] = STATE(21), - [anon_sym_LBRACE_] = ACTIONS(189), - [anon_sym__] = ACTIONS(191), - [anon_sym_LBRACE_STAR] = ACTIONS(193), - [anon_sym_STAR] = ACTIONS(195), - [anon_sym_LBRACE_CARET] = ACTIONS(197), - [anon_sym_CARET] = ACTIONS(197), - [anon_sym_LBRACE_TILDE] = ACTIONS(199), - [anon_sym_TILDE] = ACTIONS(199), - [anon_sym_LBRACE_EQ] = ACTIONS(201), - [anon_sym_LBRACE_PLUS] = ACTIONS(203), - [anon_sym_LBRACE_DASH] = ACTIONS(205), - [anon_sym_BSLASH] = ACTIONS(207), - [sym_quotation_marks] = ACTIONS(209), - [sym_ellipsis] = ACTIONS(209), - [sym_em_dash] = ACTIONS(209), - [sym_en_dash] = ACTIONS(211), - [sym_backslash_escape] = ACTIONS(211), - [anon_sym_LT] = ACTIONS(213), - [sym_symbol] = ACTIONS(209), - [anon_sym_LBRACK_CARET] = ACTIONS(215), - [anon_sym_BANG_LBRACK] = ACTIONS(217), - [anon_sym_LBRACK] = ACTIONS(219), - [anon_sym_DOLLAR] = ACTIONS(221), - [anon_sym_TODO] = ACTIONS(223), - [anon_sym_WIP] = ACTIONS(223), - [anon_sym_NOTE] = ACTIONS(225), - [anon_sym_INFO] = ACTIONS(225), - [anon_sym_XXX] = ACTIONS(225), - [sym_fixme] = ACTIONS(209), - [sym__whitespace1] = ACTIONS(227), - [sym__newline] = ACTIONS(229), - [aux_sym__text_token1] = ACTIONS(231), - [sym__verbatim_begin] = ACTIONS(233), + [53] = { + [sym__inline] = STATE(1084), + [sym__element] = STATE(82), + [sym_emphasis] = STATE(143), + [sym_emphasis_begin] = STATE(1169), + [sym_strong] = STATE(143), + [sym_strong_begin] = STATE(1170), + [sym_superscript] = STATE(143), + [sym_superscript_begin] = STATE(1171), + [sym_subscript] = STATE(143), + [sym_subscript_begin] = STATE(1172), + [sym_highlighted] = STATE(143), + [sym_highlighted_begin] = STATE(1173), + [sym_insert] = STATE(143), + [sym_insert_begin] = STATE(1174), + [sym_delete] = STATE(143), + [sym_delete_begin] = STATE(1175), + [sym_hard_line_break] = STATE(143), + [sym__smart_punctuation] = STATE(143), + [sym_autolink] = STATE(143), + [sym_footnote_reference] = STATE(143), + [sym_footnote_marker_begin] = STATE(1176), + [sym__image] = STATE(143), + [sym_full_reference_image] = STATE(143), + [sym_collapsed_reference_image] = STATE(143), + [sym_inline_image] = STATE(143), + [sym__image_description] = STATE(701), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(143), + [sym_full_reference_link] = STATE(143), + [sym_collapsed_reference_link] = STATE(143), + [sym_inline_link] = STATE(143), + [sym_link_text] = STATE(702), + [sym_span] = STATE(82), + [sym__bracketed_text] = STATE(667), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(143), + [sym_raw_inline] = STATE(143), + [sym_math] = STATE(143), + [sym_verbatim] = STATE(143), + [sym__todo_highlights] = STATE(143), + [sym_todo] = STATE(143), + [sym_note] = STATE(143), + [sym__symbol_fallback] = STATE(143), + [aux_sym__text] = STATE(126), + [aux_sym__inline_repeat1] = STATE(82), + [anon_sym_LBRACE_] = ACTIONS(285), + [anon_sym__] = ACTIONS(287), + [anon_sym_LBRACE_STAR] = ACTIONS(289), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_LBRACE_CARET] = ACTIONS(293), + [anon_sym_CARET] = ACTIONS(293), + [anon_sym_LBRACE_TILDE] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_LBRACE_EQ] = ACTIONS(297), + [anon_sym_LBRACE_PLUS] = ACTIONS(299), + [anon_sym_LBRACE_DASH] = ACTIONS(301), + [anon_sym_BSLASH] = ACTIONS(303), + [sym_quotation_marks] = ACTIONS(305), + [sym_ellipsis] = ACTIONS(305), + [sym_em_dash] = ACTIONS(305), + [sym_en_dash] = ACTIONS(307), + [sym_backslash_escape] = ACTIONS(307), + [anon_sym_LT] = ACTIONS(309), + [sym_symbol] = ACTIONS(305), + [anon_sym_LBRACK_CARET] = ACTIONS(311), + [anon_sym_BANG_LBRACK] = ACTIONS(313), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_DOLLAR] = ACTIONS(317), + [anon_sym_TODO] = ACTIONS(319), + [anon_sym_WIP] = ACTIONS(319), + [anon_sym_NOTE] = ACTIONS(321), + [anon_sym_INFO] = ACTIONS(321), + [anon_sym_XXX] = ACTIONS(321), + [sym_fixme] = ACTIONS(305), + [sym__whitespace1] = ACTIONS(323), + [sym__newline] = ACTIONS(325), + [aux_sym__text_token1] = ACTIONS(327), + [sym__verbatim_begin] = ACTIONS(329), }, - [59] = { - [sym__inline] = STATE(873), - [sym__element] = STATE(105), + [54] = { + [sym__inline] = STATE(1083), + [sym__element] = STATE(72), + [sym_emphasis] = STATE(135), + [sym_emphasis_begin] = STATE(1177), + [sym_strong] = STATE(135), + [sym_strong_begin] = STATE(1178), + [sym_superscript] = STATE(135), + [sym_superscript_begin] = STATE(1179), + [sym_subscript] = STATE(135), + [sym_subscript_begin] = STATE(1180), + [sym_highlighted] = STATE(135), + [sym_highlighted_begin] = STATE(1181), + [sym_insert] = STATE(135), + [sym_insert_begin] = STATE(1182), + [sym_delete] = STATE(135), + [sym_delete_begin] = STATE(1183), + [sym_hard_line_break] = STATE(135), + [sym__smart_punctuation] = STATE(135), + [sym_autolink] = STATE(135), + [sym_footnote_reference] = STATE(135), + [sym_footnote_marker_begin] = STATE(1184), + [sym__image] = STATE(135), + [sym_full_reference_image] = STATE(135), + [sym_collapsed_reference_image] = STATE(135), + [sym_inline_image] = STATE(135), + [sym__image_description] = STATE(687), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(135), + [sym_full_reference_link] = STATE(135), + [sym_collapsed_reference_link] = STATE(135), + [sym_inline_link] = STATE(135), + [sym_link_text] = STATE(684), + [sym_span] = STATE(72), + [sym__bracketed_text] = STATE(670), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(135), + [sym_raw_inline] = STATE(135), + [sym_math] = STATE(135), + [sym_verbatim] = STATE(135), + [sym__todo_highlights] = STATE(135), + [sym_todo] = STATE(135), + [sym_note] = STATE(135), + [sym__symbol_fallback] = STATE(135), + [aux_sym__text] = STATE(124), + [aux_sym__inline_repeat1] = STATE(72), + [anon_sym_LBRACE_] = ACTIONS(239), + [anon_sym__] = ACTIONS(241), + [anon_sym_LBRACE_STAR] = ACTIONS(243), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_LBRACE_CARET] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_LBRACE_TILDE] = ACTIONS(249), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_LBRACE_EQ] = ACTIONS(251), + [anon_sym_LBRACE_PLUS] = ACTIONS(253), + [anon_sym_LBRACE_DASH] = ACTIONS(255), + [anon_sym_BSLASH] = ACTIONS(257), + [sym_quotation_marks] = ACTIONS(259), + [sym_ellipsis] = ACTIONS(259), + [sym_em_dash] = ACTIONS(259), + [sym_en_dash] = ACTIONS(261), + [sym_backslash_escape] = ACTIONS(261), + [anon_sym_LT] = ACTIONS(263), + [sym_symbol] = ACTIONS(259), + [anon_sym_LBRACK_CARET] = ACTIONS(265), + [anon_sym_BANG_LBRACK] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_TODO] = ACTIONS(273), + [anon_sym_WIP] = ACTIONS(273), + [anon_sym_NOTE] = ACTIONS(275), + [anon_sym_INFO] = ACTIONS(275), + [anon_sym_XXX] = ACTIONS(275), + [sym_fixme] = ACTIONS(259), + [sym__whitespace1] = ACTIONS(277), + [sym__newline] = ACTIONS(279), + [aux_sym__text_token1] = ACTIONS(281), + [sym__verbatim_begin] = ACTIONS(283), + }, + [55] = { + [sym__inline] = STATE(1082), + [sym__element] = STATE(107), [sym_emphasis] = STATE(140), - [sym_emphasis_begin] = STATE(1154), + [sym_emphasis_begin] = STATE(1185), [sym_strong] = STATE(140), - [sym_strong_begin] = STATE(1155), + [sym_strong_begin] = STATE(1186), [sym_superscript] = STATE(140), - [sym_superscript_begin] = STATE(1156), + [sym_superscript_begin] = STATE(1187), [sym_subscript] = STATE(140), - [sym_subscript_begin] = STATE(1157), + [sym_subscript_begin] = STATE(1188), [sym_highlighted] = STATE(140), - [sym_highlighted_begin] = STATE(1158), + [sym_highlighted_begin] = STATE(1189), [sym_insert] = STATE(140), - [sym_insert_begin] = STATE(1159), + [sym_insert_begin] = STATE(1190), [sym_delete] = STATE(140), - [sym_delete_begin] = STATE(1160), + [sym_delete_begin] = STATE(1191), [sym_hard_line_break] = STATE(140), [sym__smart_punctuation] = STATE(140), [sym_autolink] = STATE(140), [sym_footnote_reference] = STATE(140), + [sym_footnote_marker_begin] = STATE(1192), [sym__image] = STATE(140), [sym_full_reference_image] = STATE(140), [sym_collapsed_reference_image] = STATE(140), [sym_inline_image] = STATE(140), - [sym__image_description] = STATE(687), - [sym__image_description_begin] = STATE(1103), + [sym__image_description] = STATE(700), + [sym__image_description_begin] = STATE(1114), [sym__link] = STATE(140), [sym_full_reference_link] = STATE(140), [sym_collapsed_reference_link] = STATE(140), [sym_inline_link] = STATE(140), - [sym_link_text] = STATE(688), - [sym_span] = STATE(105), - [sym__bracketed_text] = STATE(654), - [sym__bracketed_text_begin] = STATE(1102), + [sym_link_text] = STATE(699), + [sym_span] = STATE(107), + [sym__bracketed_text] = STATE(666), + [sym__bracketed_text_begin] = STATE(1113), [sym__comment_with_spaces] = STATE(140), [sym_raw_inline] = STATE(140), [sym_math] = STATE(140), @@ -9705,245 +9623,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(140), [sym_note] = STATE(140), [sym__symbol_fallback] = STATE(140), - [aux_sym__text] = STATE(131), - [aux_sym__inline_repeat1] = STATE(105), - [anon_sym_LBRACE_] = ACTIONS(327), - [anon_sym__] = ACTIONS(329), - [anon_sym_LBRACE_STAR] = ACTIONS(331), - [anon_sym_STAR] = ACTIONS(333), - [anon_sym_LBRACE_CARET] = ACTIONS(335), - [anon_sym_CARET] = ACTIONS(335), - [anon_sym_LBRACE_TILDE] = ACTIONS(337), - [anon_sym_TILDE] = ACTIONS(337), - [anon_sym_LBRACE_EQ] = ACTIONS(339), - [anon_sym_LBRACE_PLUS] = ACTIONS(341), - [anon_sym_LBRACE_DASH] = ACTIONS(343), - [anon_sym_BSLASH] = ACTIONS(345), - [sym_quotation_marks] = ACTIONS(347), - [sym_ellipsis] = ACTIONS(347), - [sym_em_dash] = ACTIONS(347), - [sym_en_dash] = ACTIONS(349), - [sym_backslash_escape] = ACTIONS(349), - [anon_sym_LT] = ACTIONS(351), - [sym_symbol] = ACTIONS(347), - [anon_sym_LBRACK_CARET] = ACTIONS(353), - [anon_sym_BANG_LBRACK] = ACTIONS(355), - [anon_sym_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [anon_sym_TODO] = ACTIONS(361), - [anon_sym_WIP] = ACTIONS(361), - [anon_sym_NOTE] = ACTIONS(363), - [anon_sym_INFO] = ACTIONS(363), - [anon_sym_XXX] = ACTIONS(363), - [sym_fixme] = ACTIONS(347), - [sym__whitespace1] = ACTIONS(365), - [sym__newline] = ACTIONS(367), - [aux_sym__text_token1] = ACTIONS(369), - [sym__verbatim_begin] = ACTIONS(371), - }, - [60] = { - [sym__inline] = STATE(1059), - [sym__element] = STATE(65), - [sym_emphasis] = STATE(133), - [sym_emphasis_begin] = STATE(1189), - [sym_strong] = STATE(133), - [sym_strong_begin] = STATE(1190), - [sym_superscript] = STATE(133), - [sym_superscript_begin] = STATE(1191), - [sym_subscript] = STATE(133), - [sym_subscript_begin] = STATE(1192), - [sym_highlighted] = STATE(133), - [sym_highlighted_begin] = STATE(1193), - [sym_insert] = STATE(133), - [sym_insert_begin] = STATE(1194), - [sym_delete] = STATE(133), - [sym_delete_begin] = STATE(1195), - [sym_hard_line_break] = STATE(133), - [sym__smart_punctuation] = STATE(133), - [sym_autolink] = STATE(133), - [sym_footnote_reference] = STATE(133), - [sym__image] = STATE(133), - [sym_full_reference_image] = STATE(133), - [sym_collapsed_reference_image] = STATE(133), - [sym_inline_image] = STATE(133), - [sym__image_description] = STATE(670), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(133), - [sym_full_reference_link] = STATE(133), - [sym_collapsed_reference_link] = STATE(133), - [sym_inline_link] = STATE(133), - [sym_link_text] = STATE(663), - [sym_span] = STATE(65), - [sym__bracketed_text] = STATE(662), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(133), - [sym_raw_inline] = STATE(133), - [sym_math] = STATE(133), - [sym_verbatim] = STATE(133), - [sym__todo_highlights] = STATE(133), - [sym_todo] = STATE(133), - [sym_note] = STATE(133), - [sym__symbol_fallback] = STATE(133), - [aux_sym__text] = STATE(123), - [aux_sym__inline_repeat1] = STATE(65), - [anon_sym_LBRACE_] = ACTIONS(143), - [anon_sym__] = ACTIONS(145), - [anon_sym_LBRACE_STAR] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_LBRACE_CARET] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(151), - [anon_sym_LBRACE_TILDE] = ACTIONS(153), - [anon_sym_TILDE] = ACTIONS(153), - [anon_sym_LBRACE_EQ] = ACTIONS(155), - [anon_sym_LBRACE_PLUS] = ACTIONS(157), - [anon_sym_LBRACE_DASH] = ACTIONS(159), - [anon_sym_BSLASH] = ACTIONS(161), - [sym_quotation_marks] = ACTIONS(163), - [sym_ellipsis] = ACTIONS(163), - [sym_em_dash] = ACTIONS(163), - [sym_en_dash] = ACTIONS(165), - [sym_backslash_escape] = ACTIONS(165), - [anon_sym_LT] = ACTIONS(167), - [sym_symbol] = ACTIONS(163), - [anon_sym_LBRACK_CARET] = ACTIONS(169), - [anon_sym_BANG_LBRACK] = ACTIONS(171), - [anon_sym_LBRACK] = ACTIONS(173), - [anon_sym_DOLLAR] = ACTIONS(175), - [anon_sym_TODO] = ACTIONS(177), - [anon_sym_WIP] = ACTIONS(177), - [anon_sym_NOTE] = ACTIONS(179), - [anon_sym_INFO] = ACTIONS(179), - [anon_sym_XXX] = ACTIONS(179), - [sym_fixme] = ACTIONS(163), - [sym__whitespace1] = ACTIONS(181), - [sym__newline] = ACTIONS(183), - [aux_sym__text_token1] = ACTIONS(185), - [sym__verbatim_begin] = ACTIONS(187), + [aux_sym__text] = STATE(125), + [aux_sym__inline_repeat1] = STATE(107), + [anon_sym_LBRACE_] = ACTIONS(193), + [anon_sym__] = ACTIONS(195), + [anon_sym_LBRACE_STAR] = ACTIONS(197), + [anon_sym_STAR] = ACTIONS(199), + [anon_sym_LBRACE_CARET] = ACTIONS(201), + [anon_sym_CARET] = ACTIONS(201), + [anon_sym_LBRACE_TILDE] = ACTIONS(203), + [anon_sym_TILDE] = ACTIONS(203), + [anon_sym_LBRACE_EQ] = ACTIONS(205), + [anon_sym_LBRACE_PLUS] = ACTIONS(207), + [anon_sym_LBRACE_DASH] = ACTIONS(209), + [anon_sym_BSLASH] = ACTIONS(211), + [sym_quotation_marks] = ACTIONS(213), + [sym_ellipsis] = ACTIONS(213), + [sym_em_dash] = ACTIONS(213), + [sym_en_dash] = ACTIONS(215), + [sym_backslash_escape] = ACTIONS(215), + [anon_sym_LT] = ACTIONS(217), + [sym_symbol] = ACTIONS(213), + [anon_sym_LBRACK_CARET] = ACTIONS(219), + [anon_sym_BANG_LBRACK] = ACTIONS(221), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_DOLLAR] = ACTIONS(225), + [anon_sym_TODO] = ACTIONS(227), + [anon_sym_WIP] = ACTIONS(227), + [anon_sym_NOTE] = ACTIONS(229), + [anon_sym_INFO] = ACTIONS(229), + [anon_sym_XXX] = ACTIONS(229), + [sym_fixme] = ACTIONS(213), + [sym__whitespace1] = ACTIONS(231), + [sym__newline] = ACTIONS(233), + [aux_sym__text_token1] = ACTIONS(235), + [sym__verbatim_begin] = ACTIONS(237), }, - [61] = { - [sym__inline] = STATE(911), - [sym__element] = STATE(21), - [sym_emphasis] = STATE(134), - [sym_emphasis_begin] = STATE(1182), - [sym_strong] = STATE(134), - [sym_strong_begin] = STATE(1183), - [sym_superscript] = STATE(134), - [sym_superscript_begin] = STATE(1184), - [sym_subscript] = STATE(134), - [sym_subscript_begin] = STATE(1185), - [sym_highlighted] = STATE(134), - [sym_highlighted_begin] = STATE(1186), - [sym_insert] = STATE(134), - [sym_insert_begin] = STATE(1187), - [sym_delete] = STATE(134), - [sym_delete_begin] = STATE(1188), - [sym_hard_line_break] = STATE(134), - [sym__smart_punctuation] = STATE(134), - [sym_autolink] = STATE(134), - [sym_footnote_reference] = STATE(134), - [sym__image] = STATE(134), - [sym_full_reference_image] = STATE(134), - [sym_collapsed_reference_image] = STATE(134), - [sym_inline_image] = STATE(134), - [sym__image_description] = STATE(677), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(134), - [sym_full_reference_link] = STATE(134), - [sym_collapsed_reference_link] = STATE(134), - [sym_inline_link] = STATE(134), - [sym_link_text] = STATE(675), - [sym_span] = STATE(21), - [sym__bracketed_text] = STATE(660), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(134), - [sym_raw_inline] = STATE(134), - [sym_math] = STATE(134), - [sym_verbatim] = STATE(134), - [sym__todo_highlights] = STATE(134), - [sym_todo] = STATE(134), - [sym_note] = STATE(134), - [sym__symbol_fallback] = STATE(134), - [aux_sym__text] = STATE(127), - [aux_sym__inline_repeat1] = STATE(21), - [anon_sym_LBRACE_] = ACTIONS(189), - [anon_sym__] = ACTIONS(191), - [anon_sym_LBRACE_STAR] = ACTIONS(193), - [anon_sym_STAR] = ACTIONS(195), - [anon_sym_LBRACE_CARET] = ACTIONS(197), - [anon_sym_CARET] = ACTIONS(197), - [anon_sym_LBRACE_TILDE] = ACTIONS(199), - [anon_sym_TILDE] = ACTIONS(199), - [anon_sym_LBRACE_EQ] = ACTIONS(201), - [anon_sym_LBRACE_PLUS] = ACTIONS(203), - [anon_sym_LBRACE_DASH] = ACTIONS(205), - [anon_sym_BSLASH] = ACTIONS(207), - [sym_quotation_marks] = ACTIONS(209), - [sym_ellipsis] = ACTIONS(209), - [sym_em_dash] = ACTIONS(209), - [sym_en_dash] = ACTIONS(211), - [sym_backslash_escape] = ACTIONS(211), - [anon_sym_LT] = ACTIONS(213), - [sym_symbol] = ACTIONS(209), - [anon_sym_LBRACK_CARET] = ACTIONS(215), - [anon_sym_BANG_LBRACK] = ACTIONS(217), - [anon_sym_LBRACK] = ACTIONS(219), - [anon_sym_DOLLAR] = ACTIONS(221), - [anon_sym_TODO] = ACTIONS(223), - [anon_sym_WIP] = ACTIONS(223), - [anon_sym_NOTE] = ACTIONS(225), - [anon_sym_INFO] = ACTIONS(225), - [anon_sym_XXX] = ACTIONS(225), - [sym_fixme] = ACTIONS(209), - [sym__whitespace1] = ACTIONS(227), - [sym__newline] = ACTIONS(229), - [aux_sym__text_token1] = ACTIONS(231), - [sym__verbatim_begin] = ACTIONS(233), - }, - [62] = { - [sym__inline] = STATE(879), - [sym__element] = STATE(70), - [sym_emphasis] = STATE(136), - [sym_emphasis_begin] = STATE(1161), - [sym_strong] = STATE(136), - [sym_strong_begin] = STATE(1162), - [sym_superscript] = STATE(136), - [sym_superscript_begin] = STATE(1163), - [sym_subscript] = STATE(136), - [sym_subscript_begin] = STATE(1164), - [sym_highlighted] = STATE(136), - [sym_highlighted_begin] = STATE(1165), - [sym_insert] = STATE(136), - [sym_insert_begin] = STATE(1166), - [sym_delete] = STATE(136), - [sym_delete_begin] = STATE(1167), - [sym_hard_line_break] = STATE(136), - [sym__smart_punctuation] = STATE(136), - [sym_autolink] = STATE(136), - [sym_footnote_reference] = STATE(136), - [sym__image] = STATE(136), - [sym_full_reference_image] = STATE(136), - [sym_collapsed_reference_image] = STATE(136), - [sym_inline_image] = STATE(136), - [sym__image_description] = STATE(690), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(136), - [sym_full_reference_link] = STATE(136), - [sym_collapsed_reference_link] = STATE(136), - [sym_inline_link] = STATE(136), - [sym_link_text] = STATE(691), - [sym_span] = STATE(70), - [sym__bracketed_text] = STATE(653), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(136), - [sym_raw_inline] = STATE(136), - [sym_math] = STATE(136), - [sym_verbatim] = STATE(136), - [sym__todo_highlights] = STATE(136), - [sym_todo] = STATE(136), - [sym_note] = STATE(136), - [sym__symbol_fallback] = STATE(136), - [aux_sym__text] = STATE(125), - [aux_sym__inline_repeat1] = STATE(70), + [56] = { + [sym__inline] = STATE(1075), + [sym__element] = STATE(3), + [sym_emphasis] = STATE(137), + [sym_emphasis_begin] = STATE(1193), + [sym_strong] = STATE(137), + [sym_strong_begin] = STATE(1194), + [sym_superscript] = STATE(137), + [sym_superscript_begin] = STATE(1195), + [sym_subscript] = STATE(137), + [sym_subscript_begin] = STATE(1196), + [sym_highlighted] = STATE(137), + [sym_highlighted_begin] = STATE(1197), + [sym_insert] = STATE(137), + [sym_insert_begin] = STATE(1198), + [sym_delete] = STATE(137), + [sym_delete_begin] = STATE(1199), + [sym_hard_line_break] = STATE(137), + [sym__smart_punctuation] = STATE(137), + [sym_autolink] = STATE(137), + [sym_footnote_reference] = STATE(137), + [sym_footnote_marker_begin] = STATE(1200), + [sym__image] = STATE(137), + [sym_full_reference_image] = STATE(137), + [sym_collapsed_reference_image] = STATE(137), + [sym_inline_image] = STATE(137), + [sym__image_description] = STATE(694), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(137), + [sym_full_reference_link] = STATE(137), + [sym_collapsed_reference_link] = STATE(137), + [sym_inline_link] = STATE(137), + [sym_link_text] = STATE(693), + [sym_span] = STATE(3), + [sym__bracketed_text] = STATE(672), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(137), + [sym_raw_inline] = STATE(137), + [sym_math] = STATE(137), + [sym_verbatim] = STATE(137), + [sym__todo_highlights] = STATE(137), + [sym_todo] = STATE(137), + [sym_note] = STATE(137), + [sym__symbol_fallback] = STATE(137), + [aux_sym__text] = STATE(131), + [aux_sym__inline_repeat1] = STATE(3), [anon_sym_LBRACE_] = ACTIONS(97), [anon_sym__] = ACTIONS(99), [anon_sym_LBRACE_STAR] = ACTIONS(101), @@ -9974,45 +9735,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_XXX] = ACTIONS(133), [sym_fixme] = ACTIONS(117), [sym__whitespace1] = ACTIONS(135), - [sym__newline] = ACTIONS(137), + [sym__newline] = ACTIONS(145), [aux_sym__text_token1] = ACTIONS(139), [sym__verbatim_begin] = ACTIONS(141), }, - [63] = { - [sym__inline] = STATE(884), - [sym__element] = STATE(13), + [57] = { + [sym__inline] = STATE(1073), + [sym__element] = STATE(14), + [sym_emphasis] = STATE(133), + [sym_emphasis_begin] = STATE(1201), + [sym_strong] = STATE(133), + [sym_strong_begin] = STATE(1202), + [sym_superscript] = STATE(133), + [sym_superscript_begin] = STATE(1203), + [sym_subscript] = STATE(133), + [sym_subscript_begin] = STATE(1204), + [sym_highlighted] = STATE(133), + [sym_highlighted_begin] = STATE(1205), + [sym_insert] = STATE(133), + [sym_insert_begin] = STATE(1206), + [sym_delete] = STATE(133), + [sym_delete_begin] = STATE(1207), + [sym_hard_line_break] = STATE(133), + [sym__smart_punctuation] = STATE(133), + [sym_autolink] = STATE(133), + [sym_footnote_reference] = STATE(133), + [sym_footnote_marker_begin] = STATE(1208), + [sym__image] = STATE(133), + [sym_full_reference_image] = STATE(133), + [sym_collapsed_reference_image] = STATE(133), + [sym_inline_image] = STATE(133), + [sym__image_description] = STATE(688), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(133), + [sym_full_reference_link] = STATE(133), + [sym_collapsed_reference_link] = STATE(133), + [sym_inline_link] = STATE(133), + [sym_link_text] = STATE(686), + [sym_span] = STATE(14), + [sym__bracketed_text] = STATE(673), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(133), + [sym_raw_inline] = STATE(133), + [sym_math] = STATE(133), + [sym_verbatim] = STATE(133), + [sym__todo_highlights] = STATE(133), + [sym_todo] = STATE(133), + [sym_note] = STATE(133), + [sym__symbol_fallback] = STATE(133), + [aux_sym__text] = STATE(129), + [aux_sym__inline_repeat1] = STATE(14), + [anon_sym_LBRACE_] = ACTIONS(423), + [anon_sym__] = ACTIONS(425), + [anon_sym_LBRACE_STAR] = ACTIONS(427), + [anon_sym_STAR] = ACTIONS(429), + [anon_sym_LBRACE_CARET] = ACTIONS(431), + [anon_sym_CARET] = ACTIONS(431), + [anon_sym_LBRACE_TILDE] = ACTIONS(433), + [anon_sym_TILDE] = ACTIONS(433), + [anon_sym_LBRACE_EQ] = ACTIONS(435), + [anon_sym_LBRACE_PLUS] = ACTIONS(437), + [anon_sym_LBRACE_DASH] = ACTIONS(439), + [anon_sym_BSLASH] = ACTIONS(441), + [sym_quotation_marks] = ACTIONS(443), + [sym_ellipsis] = ACTIONS(443), + [sym_em_dash] = ACTIONS(443), + [sym_en_dash] = ACTIONS(445), + [sym_backslash_escape] = ACTIONS(445), + [anon_sym_LT] = ACTIONS(447), + [sym_symbol] = ACTIONS(443), + [anon_sym_LBRACK_CARET] = ACTIONS(449), + [anon_sym_BANG_LBRACK] = ACTIONS(451), + [anon_sym_LBRACK] = ACTIONS(453), + [anon_sym_DOLLAR] = ACTIONS(455), + [anon_sym_TODO] = ACTIONS(457), + [anon_sym_WIP] = ACTIONS(457), + [anon_sym_NOTE] = ACTIONS(459), + [anon_sym_INFO] = ACTIONS(459), + [anon_sym_XXX] = ACTIONS(459), + [sym_fixme] = ACTIONS(443), + [sym__whitespace1] = ACTIONS(461), + [sym__newline] = ACTIONS(469), + [aux_sym__text_token1] = ACTIONS(465), + [sym__verbatim_begin] = ACTIONS(467), + }, + [58] = { + [sym__inline_without_trailing_space] = STATE(922), + [sym__element] = STATE(538), [sym_emphasis] = STATE(141), - [sym_emphasis_begin] = STATE(1168), + [sym_emphasis_begin] = STATE(1153), [sym_strong] = STATE(141), - [sym_strong_begin] = STATE(1169), + [sym_strong_begin] = STATE(1154), [sym_superscript] = STATE(141), - [sym_superscript_begin] = STATE(1170), + [sym_superscript_begin] = STATE(1155), [sym_subscript] = STATE(141), - [sym_subscript_begin] = STATE(1171), + [sym_subscript_begin] = STATE(1156), [sym_highlighted] = STATE(141), - [sym_highlighted_begin] = STATE(1172), + [sym_highlighted_begin] = STATE(1157), [sym_insert] = STATE(141), - [sym_insert_begin] = STATE(1173), + [sym_insert_begin] = STATE(1158), [sym_delete] = STATE(141), - [sym_delete_begin] = STATE(1174), + [sym_delete_begin] = STATE(1159), [sym_hard_line_break] = STATE(141), [sym__smart_punctuation] = STATE(141), [sym_autolink] = STATE(141), [sym_footnote_reference] = STATE(141), + [sym_footnote_marker_begin] = STATE(1160), [sym__image] = STATE(141), [sym_full_reference_image] = STATE(141), [sym_collapsed_reference_image] = STATE(141), [sym_inline_image] = STATE(141), - [sym__image_description] = STATE(674), - [sym__image_description_begin] = STATE(1103), + [sym__image_description] = STATE(681), + [sym__image_description_begin] = STATE(1114), [sym__link] = STATE(141), [sym_full_reference_link] = STATE(141), [sym_collapsed_reference_link] = STATE(141), [sym_inline_link] = STATE(141), - [sym_link_text] = STATE(672), - [sym_span] = STATE(13), - [sym__bracketed_text] = STATE(655), - [sym__bracketed_text_begin] = STATE(1102), + [sym_link_text] = STATE(680), + [sym_span] = STATE(538), + [sym__bracketed_text] = STATE(664), + [sym__bracketed_text_begin] = STATE(1113), [sym__comment_with_spaces] = STATE(141), [sym_raw_inline] = STATE(141), [sym_math] = STATE(141), @@ -10022,75 +9864,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_note] = STATE(141), [sym__symbol_fallback] = STATE(141), [aux_sym__text] = STATE(128), - [aux_sym__inline_repeat1] = STATE(13), - [anon_sym_LBRACE_] = ACTIONS(281), - [anon_sym__] = ACTIONS(283), - [anon_sym_LBRACE_STAR] = ACTIONS(285), - [anon_sym_STAR] = ACTIONS(287), - [anon_sym_LBRACE_CARET] = ACTIONS(289), - [anon_sym_CARET] = ACTIONS(289), - [anon_sym_LBRACE_TILDE] = ACTIONS(291), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_LBRACE_EQ] = ACTIONS(293), - [anon_sym_LBRACE_PLUS] = ACTIONS(295), - [anon_sym_LBRACE_DASH] = ACTIONS(297), - [anon_sym_BSLASH] = ACTIONS(299), - [sym_quotation_marks] = ACTIONS(301), - [sym_ellipsis] = ACTIONS(301), - [sym_em_dash] = ACTIONS(301), - [sym_en_dash] = ACTIONS(303), - [sym_backslash_escape] = ACTIONS(303), - [anon_sym_LT] = ACTIONS(305), - [sym_symbol] = ACTIONS(301), - [anon_sym_LBRACK_CARET] = ACTIONS(307), - [anon_sym_BANG_LBRACK] = ACTIONS(309), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_DOLLAR] = ACTIONS(313), - [anon_sym_TODO] = ACTIONS(315), - [anon_sym_WIP] = ACTIONS(315), - [anon_sym_NOTE] = ACTIONS(317), - [anon_sym_INFO] = ACTIONS(317), - [anon_sym_XXX] = ACTIONS(317), - [sym_fixme] = ACTIONS(301), - [sym__whitespace1] = ACTIONS(319), - [sym__newline] = ACTIONS(321), - [aux_sym__text_token1] = ACTIONS(323), - [sym__verbatim_begin] = ACTIONS(325), + [aux_sym__inline_repeat1] = STATE(119), + [anon_sym_LBRACE_] = ACTIONS(147), + [anon_sym__] = ACTIONS(149), + [anon_sym_LBRACE_STAR] = ACTIONS(151), + [anon_sym_STAR] = ACTIONS(153), + [anon_sym_LBRACE_CARET] = ACTIONS(155), + [anon_sym_CARET] = ACTIONS(155), + [anon_sym_LBRACE_TILDE] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_LBRACE_EQ] = ACTIONS(159), + [anon_sym_LBRACE_PLUS] = ACTIONS(161), + [anon_sym_LBRACE_DASH] = ACTIONS(163), + [anon_sym_BSLASH] = ACTIONS(165), + [sym_quotation_marks] = ACTIONS(167), + [sym_ellipsis] = ACTIONS(167), + [sym_em_dash] = ACTIONS(167), + [sym_en_dash] = ACTIONS(169), + [sym_backslash_escape] = ACTIONS(169), + [anon_sym_LT] = ACTIONS(171), + [sym_symbol] = ACTIONS(167), + [anon_sym_LBRACK_CARET] = ACTIONS(173), + [anon_sym_BANG_LBRACK] = ACTIONS(175), + [anon_sym_LBRACK] = ACTIONS(177), + [anon_sym_DOLLAR] = ACTIONS(179), + [anon_sym_TODO] = ACTIONS(181), + [anon_sym_WIP] = ACTIONS(181), + [anon_sym_NOTE] = ACTIONS(183), + [anon_sym_INFO] = ACTIONS(183), + [anon_sym_XXX] = ACTIONS(183), + [sym_fixme] = ACTIONS(167), + [sym__whitespace1] = ACTIONS(185), + [sym__newline] = ACTIONS(187), + [aux_sym__text_token1] = ACTIONS(189), + [sym__verbatim_begin] = ACTIONS(191), }, - [64] = { - [sym__element] = STATE(64), + [59] = { + [sym__inline] = STATE(893), + [sym__element] = STATE(82), + [sym_emphasis] = STATE(143), + [sym_emphasis_begin] = STATE(1169), + [sym_strong] = STATE(143), + [sym_strong_begin] = STATE(1170), + [sym_superscript] = STATE(143), + [sym_superscript_begin] = STATE(1171), + [sym_subscript] = STATE(143), + [sym_subscript_begin] = STATE(1172), + [sym_highlighted] = STATE(143), + [sym_highlighted_begin] = STATE(1173), + [sym_insert] = STATE(143), + [sym_insert_begin] = STATE(1174), + [sym_delete] = STATE(143), + [sym_delete_begin] = STATE(1175), + [sym_hard_line_break] = STATE(143), + [sym__smart_punctuation] = STATE(143), + [sym_autolink] = STATE(143), + [sym_footnote_reference] = STATE(143), + [sym_footnote_marker_begin] = STATE(1176), + [sym__image] = STATE(143), + [sym_full_reference_image] = STATE(143), + [sym_collapsed_reference_image] = STATE(143), + [sym_inline_image] = STATE(143), + [sym__image_description] = STATE(701), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(143), + [sym_full_reference_link] = STATE(143), + [sym_collapsed_reference_link] = STATE(143), + [sym_inline_link] = STATE(143), + [sym_link_text] = STATE(702), + [sym_span] = STATE(82), + [sym__bracketed_text] = STATE(667), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(143), + [sym_raw_inline] = STATE(143), + [sym_math] = STATE(143), + [sym_verbatim] = STATE(143), + [sym__todo_highlights] = STATE(143), + [sym_todo] = STATE(143), + [sym_note] = STATE(143), + [sym__symbol_fallback] = STATE(143), + [aux_sym__text] = STATE(126), + [aux_sym__inline_repeat1] = STATE(82), + [anon_sym_LBRACE_] = ACTIONS(285), + [anon_sym__] = ACTIONS(287), + [anon_sym_LBRACE_STAR] = ACTIONS(289), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_LBRACE_CARET] = ACTIONS(293), + [anon_sym_CARET] = ACTIONS(293), + [anon_sym_LBRACE_TILDE] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_LBRACE_EQ] = ACTIONS(297), + [anon_sym_LBRACE_PLUS] = ACTIONS(299), + [anon_sym_LBRACE_DASH] = ACTIONS(301), + [anon_sym_BSLASH] = ACTIONS(303), + [sym_quotation_marks] = ACTIONS(305), + [sym_ellipsis] = ACTIONS(305), + [sym_em_dash] = ACTIONS(305), + [sym_en_dash] = ACTIONS(307), + [sym_backslash_escape] = ACTIONS(307), + [anon_sym_LT] = ACTIONS(309), + [sym_symbol] = ACTIONS(305), + [anon_sym_LBRACK_CARET] = ACTIONS(311), + [anon_sym_BANG_LBRACK] = ACTIONS(313), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_DOLLAR] = ACTIONS(317), + [anon_sym_TODO] = ACTIONS(319), + [anon_sym_WIP] = ACTIONS(319), + [anon_sym_NOTE] = ACTIONS(321), + [anon_sym_INFO] = ACTIONS(321), + [anon_sym_XXX] = ACTIONS(321), + [sym_fixme] = ACTIONS(305), + [sym__whitespace1] = ACTIONS(323), + [sym__newline] = ACTIONS(325), + [aux_sym__text_token1] = ACTIONS(327), + [sym__verbatim_begin] = ACTIONS(329), + }, + [60] = { + [sym__inline] = STATE(1070), + [sym__element] = STATE(47), [sym_emphasis] = STATE(136), - [sym_emphasis_begin] = STATE(1161), + [sym_emphasis_begin] = STATE(1209), [sym_strong] = STATE(136), - [sym_strong_begin] = STATE(1162), + [sym_strong_begin] = STATE(1210), [sym_superscript] = STATE(136), - [sym_superscript_begin] = STATE(1163), + [sym_superscript_begin] = STATE(1211), [sym_subscript] = STATE(136), - [sym_subscript_begin] = STATE(1164), + [sym_subscript_begin] = STATE(1212), [sym_highlighted] = STATE(136), - [sym_highlighted_begin] = STATE(1165), + [sym_highlighted_begin] = STATE(1213), [sym_insert] = STATE(136), - [sym_insert_begin] = STATE(1166), + [sym_insert_begin] = STATE(1214), [sym_delete] = STATE(136), - [sym_delete_begin] = STATE(1167), + [sym_delete_begin] = STATE(1215), [sym_hard_line_break] = STATE(136), [sym__smart_punctuation] = STATE(136), [sym_autolink] = STATE(136), [sym_footnote_reference] = STATE(136), + [sym_footnote_marker_begin] = STATE(1216), [sym__image] = STATE(136), [sym_full_reference_image] = STATE(136), [sym_collapsed_reference_image] = STATE(136), [sym_inline_image] = STATE(136), - [sym__image_description] = STATE(690), - [sym__image_description_begin] = STATE(1103), + [sym__image_description] = STATE(682), + [sym__image_description_begin] = STATE(1114), [sym__link] = STATE(136), [sym_full_reference_link] = STATE(136), [sym_collapsed_reference_link] = STATE(136), [sym_inline_link] = STATE(136), - [sym_link_text] = STATE(691), - [sym_span] = STATE(64), - [sym__bracketed_text] = STATE(653), - [sym__bracketed_text_begin] = STATE(1102), + [sym_link_text] = STATE(675), + [sym_span] = STATE(47), + [sym__bracketed_text] = STATE(674), + [sym__bracketed_text_begin] = STATE(1113), [sym__comment_with_spaces] = STATE(136), [sym_raw_inline] = STATE(136), [sym_math] = STATE(136), @@ -10099,324 +10023,407 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(136), [sym_note] = STATE(136), [sym__symbol_fallback] = STATE(136), - [aux_sym__text] = STATE(125), - [aux_sym__inline_repeat1] = STATE(64), - [anon_sym_LBRACE_] = ACTIONS(613), - [anon_sym__] = ACTIONS(616), - [anon_sym_LBRACE_STAR] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(622), - [anon_sym_LBRACE_CARET] = ACTIONS(625), - [anon_sym_CARET] = ACTIONS(625), - [anon_sym_LBRACE_TILDE] = ACTIONS(628), - [anon_sym_TILDE] = ACTIONS(628), - [anon_sym_LBRACE_EQ] = ACTIONS(631), - [anon_sym_LBRACE_PLUS] = ACTIONS(634), - [anon_sym_LBRACE_DASH] = ACTIONS(637), - [anon_sym_BSLASH] = ACTIONS(640), - [sym_quotation_marks] = ACTIONS(643), - [sym_ellipsis] = ACTIONS(643), - [sym_em_dash] = ACTIONS(643), - [sym_en_dash] = ACTIONS(646), - [sym_backslash_escape] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(649), - [sym_symbol] = ACTIONS(643), - [anon_sym_LBRACK_CARET] = ACTIONS(652), - [anon_sym_BANG_LBRACK] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_DOLLAR] = ACTIONS(661), - [anon_sym_TODO] = ACTIONS(664), - [anon_sym_WIP] = ACTIONS(664), - [anon_sym_NOTE] = ACTIONS(667), - [anon_sym_INFO] = ACTIONS(667), - [anon_sym_XXX] = ACTIONS(667), - [sym_fixme] = ACTIONS(643), - [sym__whitespace1] = ACTIONS(670), - [sym__newline] = ACTIONS(673), - [aux_sym__text_token1] = ACTIONS(676), - [sym__verbatim_begin] = ACTIONS(679), - [sym_subscript_end] = ACTIONS(538), - }, - [65] = { - [sym__element] = STATE(83), - [sym_emphasis] = STATE(133), - [sym_emphasis_begin] = STATE(1189), - [sym_strong] = STATE(133), - [sym_strong_begin] = STATE(1190), - [sym_superscript] = STATE(133), - [sym_superscript_begin] = STATE(1191), - [sym_subscript] = STATE(133), - [sym_subscript_begin] = STATE(1192), - [sym_highlighted] = STATE(133), - [sym_highlighted_begin] = STATE(1193), - [sym_insert] = STATE(133), - [sym_insert_begin] = STATE(1194), - [sym_delete] = STATE(133), - [sym_delete_begin] = STATE(1195), - [sym_hard_line_break] = STATE(133), - [sym__smart_punctuation] = STATE(133), - [sym_autolink] = STATE(133), - [sym_footnote_reference] = STATE(133), - [sym__image] = STATE(133), - [sym_full_reference_image] = STATE(133), - [sym_collapsed_reference_image] = STATE(133), - [sym_inline_image] = STATE(133), - [sym__image_description] = STATE(670), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(133), - [sym_full_reference_link] = STATE(133), - [sym_collapsed_reference_link] = STATE(133), - [sym_inline_link] = STATE(133), - [sym_link_text] = STATE(663), - [sym_span] = STATE(83), - [sym__bracketed_text] = STATE(662), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(133), - [sym_raw_inline] = STATE(133), - [sym_math] = STATE(133), - [sym_verbatim] = STATE(133), - [sym__todo_highlights] = STATE(133), - [sym_todo] = STATE(133), - [sym_note] = STATE(133), - [sym__symbol_fallback] = STATE(133), - [aux_sym__text] = STATE(123), - [aux_sym__inline_repeat1] = STATE(83), - [anon_sym_LBRACE_] = ACTIONS(143), - [anon_sym__] = ACTIONS(145), - [anon_sym_LBRACE_STAR] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_LBRACE_CARET] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(151), - [anon_sym_LBRACE_TILDE] = ACTIONS(153), - [anon_sym_TILDE] = ACTIONS(153), - [anon_sym_LBRACE_EQ] = ACTIONS(155), - [anon_sym_LBRACE_PLUS] = ACTIONS(157), - [anon_sym_LBRACE_DASH] = ACTIONS(159), - [anon_sym_BSLASH] = ACTIONS(161), - [sym_quotation_marks] = ACTIONS(163), - [sym_ellipsis] = ACTIONS(163), - [sym_em_dash] = ACTIONS(163), - [sym_en_dash] = ACTIONS(165), - [sym_backslash_escape] = ACTIONS(165), - [anon_sym_LT] = ACTIONS(167), - [sym_symbol] = ACTIONS(163), - [anon_sym_LBRACK_CARET] = ACTIONS(169), - [anon_sym_BANG_LBRACK] = ACTIONS(171), - [anon_sym_LBRACK] = ACTIONS(173), - [anon_sym_RBRACK2] = ACTIONS(467), - [anon_sym_DOLLAR] = ACTIONS(175), - [anon_sym_TODO] = ACTIONS(177), - [anon_sym_WIP] = ACTIONS(177), - [anon_sym_NOTE] = ACTIONS(179), - [anon_sym_INFO] = ACTIONS(179), - [anon_sym_XXX] = ACTIONS(179), - [sym_fixme] = ACTIONS(163), - [sym__whitespace1] = ACTIONS(181), - [sym__newline] = ACTIONS(682), - [aux_sym__text_token1] = ACTIONS(185), - [sym__verbatim_begin] = ACTIONS(187), + [aux_sym__text] = STATE(127), + [aux_sym__inline_repeat1] = STATE(47), + [anon_sym_LBRACE_] = ACTIONS(377), + [anon_sym__] = ACTIONS(379), + [anon_sym_LBRACE_STAR] = ACTIONS(381), + [anon_sym_STAR] = ACTIONS(383), + [anon_sym_LBRACE_CARET] = ACTIONS(385), + [anon_sym_CARET] = ACTIONS(385), + [anon_sym_LBRACE_TILDE] = ACTIONS(387), + [anon_sym_TILDE] = ACTIONS(387), + [anon_sym_LBRACE_EQ] = ACTIONS(389), + [anon_sym_LBRACE_PLUS] = ACTIONS(391), + [anon_sym_LBRACE_DASH] = ACTIONS(393), + [anon_sym_BSLASH] = ACTIONS(395), + [sym_quotation_marks] = ACTIONS(397), + [sym_ellipsis] = ACTIONS(397), + [sym_em_dash] = ACTIONS(397), + [sym_en_dash] = ACTIONS(399), + [sym_backslash_escape] = ACTIONS(399), + [anon_sym_LT] = ACTIONS(401), + [sym_symbol] = ACTIONS(397), + [anon_sym_LBRACK_CARET] = ACTIONS(403), + [anon_sym_BANG_LBRACK] = ACTIONS(405), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_DOLLAR] = ACTIONS(409), + [anon_sym_TODO] = ACTIONS(411), + [anon_sym_WIP] = ACTIONS(411), + [anon_sym_NOTE] = ACTIONS(413), + [anon_sym_INFO] = ACTIONS(413), + [anon_sym_XXX] = ACTIONS(413), + [sym_fixme] = ACTIONS(397), + [sym__whitespace1] = ACTIONS(415), + [sym__newline] = ACTIONS(417), + [aux_sym__text_token1] = ACTIONS(419), + [sym__verbatim_begin] = ACTIONS(421), }, - [66] = { - [sym__inline] = STATE(885), - [sym__element] = STATE(103), - [sym_emphasis] = STATE(139), - [sym_emphasis_begin] = STATE(1175), - [sym_strong] = STATE(139), - [sym_strong_begin] = STATE(1176), - [sym_superscript] = STATE(139), - [sym_superscript_begin] = STATE(1177), - [sym_subscript] = STATE(139), - [sym_subscript_begin] = STATE(1178), - [sym_highlighted] = STATE(139), - [sym_highlighted_begin] = STATE(1179), - [sym_insert] = STATE(139), - [sym_insert_begin] = STATE(1180), - [sym_delete] = STATE(139), - [sym_delete_begin] = STATE(1181), - [sym_hard_line_break] = STATE(139), - [sym__smart_punctuation] = STATE(139), - [sym_autolink] = STATE(139), - [sym_footnote_reference] = STATE(139), - [sym__image] = STATE(139), - [sym_full_reference_image] = STATE(139), - [sym_collapsed_reference_image] = STATE(139), - [sym_inline_image] = STATE(139), + [61] = { + [sym__inline] = STATE(937), + [sym__element] = STATE(47), + [sym_emphasis] = STATE(136), + [sym_emphasis_begin] = STATE(1209), + [sym_strong] = STATE(136), + [sym_strong_begin] = STATE(1210), + [sym_superscript] = STATE(136), + [sym_superscript_begin] = STATE(1211), + [sym_subscript] = STATE(136), + [sym_subscript_begin] = STATE(1212), + [sym_highlighted] = STATE(136), + [sym_highlighted_begin] = STATE(1213), + [sym_insert] = STATE(136), + [sym_insert_begin] = STATE(1214), + [sym_delete] = STATE(136), + [sym_delete_begin] = STATE(1215), + [sym_hard_line_break] = STATE(136), + [sym__smart_punctuation] = STATE(136), + [sym_autolink] = STATE(136), + [sym_footnote_reference] = STATE(136), + [sym_footnote_marker_begin] = STATE(1216), + [sym__image] = STATE(136), + [sym_full_reference_image] = STATE(136), + [sym_collapsed_reference_image] = STATE(136), + [sym_inline_image] = STATE(136), [sym__image_description] = STATE(682), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(139), - [sym_full_reference_link] = STATE(139), - [sym_collapsed_reference_link] = STATE(139), - [sym_inline_link] = STATE(139), - [sym_link_text] = STATE(681), - [sym_span] = STATE(103), - [sym__bracketed_text] = STATE(656), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(139), - [sym_raw_inline] = STATE(139), - [sym_math] = STATE(139), - [sym_verbatim] = STATE(139), - [sym__todo_highlights] = STATE(139), - [sym_todo] = STATE(139), - [sym_note] = STATE(139), - [sym__symbol_fallback] = STATE(139), - [aux_sym__text] = STATE(129), - [aux_sym__inline_repeat1] = STATE(103), - [anon_sym_LBRACE_] = ACTIONS(235), - [anon_sym__] = ACTIONS(237), - [anon_sym_LBRACE_STAR] = ACTIONS(239), - [anon_sym_STAR] = ACTIONS(241), - [anon_sym_LBRACE_CARET] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(243), - [anon_sym_LBRACE_TILDE] = ACTIONS(245), - [anon_sym_TILDE] = ACTIONS(245), - [anon_sym_LBRACE_EQ] = ACTIONS(247), - [anon_sym_LBRACE_PLUS] = ACTIONS(249), - [anon_sym_LBRACE_DASH] = ACTIONS(251), - [anon_sym_BSLASH] = ACTIONS(253), - [sym_quotation_marks] = ACTIONS(255), - [sym_ellipsis] = ACTIONS(255), - [sym_em_dash] = ACTIONS(255), - [sym_en_dash] = ACTIONS(257), - [sym_backslash_escape] = ACTIONS(257), - [anon_sym_LT] = ACTIONS(259), - [sym_symbol] = ACTIONS(255), - [anon_sym_LBRACK_CARET] = ACTIONS(261), - [anon_sym_BANG_LBRACK] = ACTIONS(263), - [anon_sym_LBRACK] = ACTIONS(265), - [anon_sym_DOLLAR] = ACTIONS(267), - [anon_sym_TODO] = ACTIONS(269), - [anon_sym_WIP] = ACTIONS(269), - [anon_sym_NOTE] = ACTIONS(271), - [anon_sym_INFO] = ACTIONS(271), - [anon_sym_XXX] = ACTIONS(271), - [sym_fixme] = ACTIONS(255), - [sym__whitespace1] = ACTIONS(273), - [sym__newline] = ACTIONS(275), - [aux_sym__text_token1] = ACTIONS(277), - [sym__verbatim_begin] = ACTIONS(279), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(136), + [sym_full_reference_link] = STATE(136), + [sym_collapsed_reference_link] = STATE(136), + [sym_inline_link] = STATE(136), + [sym_link_text] = STATE(675), + [sym_span] = STATE(47), + [sym__bracketed_text] = STATE(674), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(136), + [sym_raw_inline] = STATE(136), + [sym_math] = STATE(136), + [sym_verbatim] = STATE(136), + [sym__todo_highlights] = STATE(136), + [sym_todo] = STATE(136), + [sym_note] = STATE(136), + [sym__symbol_fallback] = STATE(136), + [aux_sym__text] = STATE(127), + [aux_sym__inline_repeat1] = STATE(47), + [anon_sym_LBRACE_] = ACTIONS(377), + [anon_sym__] = ACTIONS(379), + [anon_sym_LBRACE_STAR] = ACTIONS(381), + [anon_sym_STAR] = ACTIONS(383), + [anon_sym_LBRACE_CARET] = ACTIONS(385), + [anon_sym_CARET] = ACTIONS(385), + [anon_sym_LBRACE_TILDE] = ACTIONS(387), + [anon_sym_TILDE] = ACTIONS(387), + [anon_sym_LBRACE_EQ] = ACTIONS(389), + [anon_sym_LBRACE_PLUS] = ACTIONS(391), + [anon_sym_LBRACE_DASH] = ACTIONS(393), + [anon_sym_BSLASH] = ACTIONS(395), + [sym_quotation_marks] = ACTIONS(397), + [sym_ellipsis] = ACTIONS(397), + [sym_em_dash] = ACTIONS(397), + [sym_en_dash] = ACTIONS(399), + [sym_backslash_escape] = ACTIONS(399), + [anon_sym_LT] = ACTIONS(401), + [sym_symbol] = ACTIONS(397), + [anon_sym_LBRACK_CARET] = ACTIONS(403), + [anon_sym_BANG_LBRACK] = ACTIONS(405), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_DOLLAR] = ACTIONS(409), + [anon_sym_TODO] = ACTIONS(411), + [anon_sym_WIP] = ACTIONS(411), + [anon_sym_NOTE] = ACTIONS(413), + [anon_sym_INFO] = ACTIONS(413), + [anon_sym_XXX] = ACTIONS(413), + [sym_fixme] = ACTIONS(397), + [sym__whitespace1] = ACTIONS(415), + [sym__newline] = ACTIONS(417), + [aux_sym__text_token1] = ACTIONS(419), + [sym__verbatim_begin] = ACTIONS(421), }, - [67] = { - [sym__inline] = STATE(889), - [sym__element] = STATE(21), - [sym_emphasis] = STATE(134), - [sym_emphasis_begin] = STATE(1182), - [sym_strong] = STATE(134), - [sym_strong_begin] = STATE(1183), - [sym_superscript] = STATE(134), - [sym_superscript_begin] = STATE(1184), - [sym_subscript] = STATE(134), - [sym_subscript_begin] = STATE(1185), - [sym_highlighted] = STATE(134), - [sym_highlighted_begin] = STATE(1186), - [sym_insert] = STATE(134), - [sym_insert_begin] = STATE(1187), - [sym_delete] = STATE(134), - [sym_delete_begin] = STATE(1188), - [sym_hard_line_break] = STATE(134), - [sym__smart_punctuation] = STATE(134), - [sym_autolink] = STATE(134), - [sym_footnote_reference] = STATE(134), - [sym__image] = STATE(134), - [sym_full_reference_image] = STATE(134), - [sym_collapsed_reference_image] = STATE(134), - [sym_inline_image] = STATE(134), - [sym__image_description] = STATE(677), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(134), - [sym_full_reference_link] = STATE(134), - [sym_collapsed_reference_link] = STATE(134), - [sym_inline_link] = STATE(134), - [sym_link_text] = STATE(675), - [sym_span] = STATE(21), - [sym__bracketed_text] = STATE(660), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(134), - [sym_raw_inline] = STATE(134), - [sym_math] = STATE(134), - [sym_verbatim] = STATE(134), - [sym__todo_highlights] = STATE(134), - [sym_todo] = STATE(134), - [sym_note] = STATE(134), - [sym__symbol_fallback] = STATE(134), - [aux_sym__text] = STATE(127), - [aux_sym__inline_repeat1] = STATE(21), - [anon_sym_LBRACE_] = ACTIONS(189), - [anon_sym__] = ACTIONS(191), - [anon_sym_LBRACE_STAR] = ACTIONS(193), - [anon_sym_STAR] = ACTIONS(195), - [anon_sym_LBRACE_CARET] = ACTIONS(197), - [anon_sym_CARET] = ACTIONS(197), - [anon_sym_LBRACE_TILDE] = ACTIONS(199), - [anon_sym_TILDE] = ACTIONS(199), - [anon_sym_LBRACE_EQ] = ACTIONS(201), - [anon_sym_LBRACE_PLUS] = ACTIONS(203), - [anon_sym_LBRACE_DASH] = ACTIONS(205), - [anon_sym_BSLASH] = ACTIONS(207), - [sym_quotation_marks] = ACTIONS(209), - [sym_ellipsis] = ACTIONS(209), - [sym_em_dash] = ACTIONS(209), - [sym_en_dash] = ACTIONS(211), - [sym_backslash_escape] = ACTIONS(211), - [anon_sym_LT] = ACTIONS(213), - [sym_symbol] = ACTIONS(209), - [anon_sym_LBRACK_CARET] = ACTIONS(215), - [anon_sym_BANG_LBRACK] = ACTIONS(217), - [anon_sym_LBRACK] = ACTIONS(219), - [anon_sym_DOLLAR] = ACTIONS(221), - [anon_sym_TODO] = ACTIONS(223), - [anon_sym_WIP] = ACTIONS(223), - [anon_sym_NOTE] = ACTIONS(225), - [anon_sym_INFO] = ACTIONS(225), - [anon_sym_XXX] = ACTIONS(225), - [sym_fixme] = ACTIONS(209), - [sym__whitespace1] = ACTIONS(227), - [sym__newline] = ACTIONS(229), - [aux_sym__text_token1] = ACTIONS(231), - [sym__verbatim_begin] = ACTIONS(233), + [62] = { + [sym__inline] = STATE(925), + [sym__element] = STATE(72), + [sym_emphasis] = STATE(135), + [sym_emphasis_begin] = STATE(1177), + [sym_strong] = STATE(135), + [sym_strong_begin] = STATE(1178), + [sym_superscript] = STATE(135), + [sym_superscript_begin] = STATE(1179), + [sym_subscript] = STATE(135), + [sym_subscript_begin] = STATE(1180), + [sym_highlighted] = STATE(135), + [sym_highlighted_begin] = STATE(1181), + [sym_insert] = STATE(135), + [sym_insert_begin] = STATE(1182), + [sym_delete] = STATE(135), + [sym_delete_begin] = STATE(1183), + [sym_hard_line_break] = STATE(135), + [sym__smart_punctuation] = STATE(135), + [sym_autolink] = STATE(135), + [sym_footnote_reference] = STATE(135), + [sym_footnote_marker_begin] = STATE(1184), + [sym__image] = STATE(135), + [sym_full_reference_image] = STATE(135), + [sym_collapsed_reference_image] = STATE(135), + [sym_inline_image] = STATE(135), + [sym__image_description] = STATE(687), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(135), + [sym_full_reference_link] = STATE(135), + [sym_collapsed_reference_link] = STATE(135), + [sym_inline_link] = STATE(135), + [sym_link_text] = STATE(684), + [sym_span] = STATE(72), + [sym__bracketed_text] = STATE(670), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(135), + [sym_raw_inline] = STATE(135), + [sym_math] = STATE(135), + [sym_verbatim] = STATE(135), + [sym__todo_highlights] = STATE(135), + [sym_todo] = STATE(135), + [sym_note] = STATE(135), + [sym__symbol_fallback] = STATE(135), + [aux_sym__text] = STATE(124), + [aux_sym__inline_repeat1] = STATE(72), + [anon_sym_LBRACE_] = ACTIONS(239), + [anon_sym__] = ACTIONS(241), + [anon_sym_LBRACE_STAR] = ACTIONS(243), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_LBRACE_CARET] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_LBRACE_TILDE] = ACTIONS(249), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_LBRACE_EQ] = ACTIONS(251), + [anon_sym_LBRACE_PLUS] = ACTIONS(253), + [anon_sym_LBRACE_DASH] = ACTIONS(255), + [anon_sym_BSLASH] = ACTIONS(257), + [sym_quotation_marks] = ACTIONS(259), + [sym_ellipsis] = ACTIONS(259), + [sym_em_dash] = ACTIONS(259), + [sym_en_dash] = ACTIONS(261), + [sym_backslash_escape] = ACTIONS(261), + [anon_sym_LT] = ACTIONS(263), + [sym_symbol] = ACTIONS(259), + [anon_sym_LBRACK_CARET] = ACTIONS(265), + [anon_sym_BANG_LBRACK] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_TODO] = ACTIONS(273), + [anon_sym_WIP] = ACTIONS(273), + [anon_sym_NOTE] = ACTIONS(275), + [anon_sym_INFO] = ACTIONS(275), + [anon_sym_XXX] = ACTIONS(275), + [sym_fixme] = ACTIONS(259), + [sym__whitespace1] = ACTIONS(277), + [sym__newline] = ACTIONS(279), + [aux_sym__text_token1] = ACTIONS(281), + [sym__verbatim_begin] = ACTIONS(283), }, - [68] = { - [sym__element] = STATE(68), - [sym_emphasis] = STATE(134), - [sym_emphasis_begin] = STATE(1182), - [sym_strong] = STATE(134), - [sym_strong_begin] = STATE(1183), - [sym_superscript] = STATE(134), - [sym_superscript_begin] = STATE(1184), - [sym_subscript] = STATE(134), - [sym_subscript_begin] = STATE(1185), - [sym_highlighted] = STATE(134), - [sym_highlighted_begin] = STATE(1186), - [sym_insert] = STATE(134), - [sym_insert_begin] = STATE(1187), - [sym_delete] = STATE(134), - [sym_delete_begin] = STATE(1188), - [sym_hard_line_break] = STATE(134), - [sym__smart_punctuation] = STATE(134), - [sym_autolink] = STATE(134), - [sym_footnote_reference] = STATE(134), - [sym__image] = STATE(134), - [sym_full_reference_image] = STATE(134), - [sym_collapsed_reference_image] = STATE(134), - [sym_inline_image] = STATE(134), - [sym__image_description] = STATE(677), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(134), - [sym_full_reference_link] = STATE(134), - [sym_collapsed_reference_link] = STATE(134), - [sym_inline_link] = STATE(134), - [sym_link_text] = STATE(675), - [sym_span] = STATE(68), - [sym__bracketed_text] = STATE(660), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(134), - [sym_raw_inline] = STATE(134), - [sym_math] = STATE(134), - [sym_verbatim] = STATE(134), - [sym__todo_highlights] = STATE(134), - [sym_todo] = STATE(134), - [sym_note] = STATE(134), - [sym__symbol_fallback] = STATE(134), - [aux_sym__text] = STATE(127), - [aux_sym__inline_repeat1] = STATE(68), + [63] = { + [sym__inline] = STATE(927), + [sym__element] = STATE(107), + [sym_emphasis] = STATE(140), + [sym_emphasis_begin] = STATE(1185), + [sym_strong] = STATE(140), + [sym_strong_begin] = STATE(1186), + [sym_superscript] = STATE(140), + [sym_superscript_begin] = STATE(1187), + [sym_subscript] = STATE(140), + [sym_subscript_begin] = STATE(1188), + [sym_highlighted] = STATE(140), + [sym_highlighted_begin] = STATE(1189), + [sym_insert] = STATE(140), + [sym_insert_begin] = STATE(1190), + [sym_delete] = STATE(140), + [sym_delete_begin] = STATE(1191), + [sym_hard_line_break] = STATE(140), + [sym__smart_punctuation] = STATE(140), + [sym_autolink] = STATE(140), + [sym_footnote_reference] = STATE(140), + [sym_footnote_marker_begin] = STATE(1192), + [sym__image] = STATE(140), + [sym_full_reference_image] = STATE(140), + [sym_collapsed_reference_image] = STATE(140), + [sym_inline_image] = STATE(140), + [sym__image_description] = STATE(700), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(140), + [sym_full_reference_link] = STATE(140), + [sym_collapsed_reference_link] = STATE(140), + [sym_inline_link] = STATE(140), + [sym_link_text] = STATE(699), + [sym_span] = STATE(107), + [sym__bracketed_text] = STATE(666), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(140), + [sym_raw_inline] = STATE(140), + [sym_math] = STATE(140), + [sym_verbatim] = STATE(140), + [sym__todo_highlights] = STATE(140), + [sym_todo] = STATE(140), + [sym_note] = STATE(140), + [sym__symbol_fallback] = STATE(140), + [aux_sym__text] = STATE(125), + [aux_sym__inline_repeat1] = STATE(107), + [anon_sym_LBRACE_] = ACTIONS(193), + [anon_sym__] = ACTIONS(195), + [anon_sym_LBRACE_STAR] = ACTIONS(197), + [anon_sym_STAR] = ACTIONS(199), + [anon_sym_LBRACE_CARET] = ACTIONS(201), + [anon_sym_CARET] = ACTIONS(201), + [anon_sym_LBRACE_TILDE] = ACTIONS(203), + [anon_sym_TILDE] = ACTIONS(203), + [anon_sym_LBRACE_EQ] = ACTIONS(205), + [anon_sym_LBRACE_PLUS] = ACTIONS(207), + [anon_sym_LBRACE_DASH] = ACTIONS(209), + [anon_sym_BSLASH] = ACTIONS(211), + [sym_quotation_marks] = ACTIONS(213), + [sym_ellipsis] = ACTIONS(213), + [sym_em_dash] = ACTIONS(213), + [sym_en_dash] = ACTIONS(215), + [sym_backslash_escape] = ACTIONS(215), + [anon_sym_LT] = ACTIONS(217), + [sym_symbol] = ACTIONS(213), + [anon_sym_LBRACK_CARET] = ACTIONS(219), + [anon_sym_BANG_LBRACK] = ACTIONS(221), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_DOLLAR] = ACTIONS(225), + [anon_sym_TODO] = ACTIONS(227), + [anon_sym_WIP] = ACTIONS(227), + [anon_sym_NOTE] = ACTIONS(229), + [anon_sym_INFO] = ACTIONS(229), + [anon_sym_XXX] = ACTIONS(229), + [sym_fixme] = ACTIONS(213), + [sym__whitespace1] = ACTIONS(231), + [sym__newline] = ACTIONS(233), + [aux_sym__text_token1] = ACTIONS(235), + [sym__verbatim_begin] = ACTIONS(237), + }, + [64] = { + [sym__element] = STATE(64), + [sym_emphasis] = STATE(135), + [sym_emphasis_begin] = STATE(1177), + [sym_strong] = STATE(135), + [sym_strong_begin] = STATE(1178), + [sym_superscript] = STATE(135), + [sym_superscript_begin] = STATE(1179), + [sym_subscript] = STATE(135), + [sym_subscript_begin] = STATE(1180), + [sym_highlighted] = STATE(135), + [sym_highlighted_begin] = STATE(1181), + [sym_insert] = STATE(135), + [sym_insert_begin] = STATE(1182), + [sym_delete] = STATE(135), + [sym_delete_begin] = STATE(1183), + [sym_hard_line_break] = STATE(135), + [sym__smart_punctuation] = STATE(135), + [sym_autolink] = STATE(135), + [sym_footnote_reference] = STATE(135), + [sym_footnote_marker_begin] = STATE(1184), + [sym__image] = STATE(135), + [sym_full_reference_image] = STATE(135), + [sym_collapsed_reference_image] = STATE(135), + [sym_inline_image] = STATE(135), + [sym__image_description] = STATE(687), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(135), + [sym_full_reference_link] = STATE(135), + [sym_collapsed_reference_link] = STATE(135), + [sym_inline_link] = STATE(135), + [sym_link_text] = STATE(684), + [sym_span] = STATE(64), + [sym__bracketed_text] = STATE(670), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(135), + [sym_raw_inline] = STATE(135), + [sym_math] = STATE(135), + [sym_verbatim] = STATE(135), + [sym__todo_highlights] = STATE(135), + [sym_todo] = STATE(135), + [sym_note] = STATE(135), + [sym__symbol_fallback] = STATE(135), + [aux_sym__text] = STATE(124), + [aux_sym__inline_repeat1] = STATE(64), + [anon_sym_LBRACE_] = ACTIONS(615), + [anon_sym__] = ACTIONS(618), + [anon_sym_LBRACE_STAR] = ACTIONS(621), + [anon_sym_STAR] = ACTIONS(624), + [anon_sym_LBRACE_CARET] = ACTIONS(627), + [anon_sym_CARET] = ACTIONS(627), + [anon_sym_LBRACE_TILDE] = ACTIONS(630), + [anon_sym_TILDE] = ACTIONS(630), + [anon_sym_LBRACE_EQ] = ACTIONS(633), + [anon_sym_LBRACE_PLUS] = ACTIONS(636), + [anon_sym_LBRACE_DASH] = ACTIONS(639), + [anon_sym_BSLASH] = ACTIONS(642), + [sym_quotation_marks] = ACTIONS(645), + [sym_ellipsis] = ACTIONS(645), + [sym_em_dash] = ACTIONS(645), + [sym_en_dash] = ACTIONS(648), + [sym_backslash_escape] = ACTIONS(648), + [anon_sym_LT] = ACTIONS(651), + [sym_symbol] = ACTIONS(645), + [anon_sym_LBRACK_CARET] = ACTIONS(654), + [anon_sym_BANG_LBRACK] = ACTIONS(657), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_DOLLAR] = ACTIONS(663), + [anon_sym_TODO] = ACTIONS(666), + [anon_sym_WIP] = ACTIONS(666), + [anon_sym_NOTE] = ACTIONS(669), + [anon_sym_INFO] = ACTIONS(669), + [anon_sym_XXX] = ACTIONS(669), + [sym_fixme] = ACTIONS(645), + [sym__whitespace1] = ACTIONS(672), + [sym__newline] = ACTIONS(675), + [aux_sym__text_token1] = ACTIONS(678), + [sym__verbatim_begin] = ACTIONS(681), + [sym_subscript_end] = ACTIONS(540), + }, + [65] = { + [sym__element] = STATE(65), + [sym_emphasis] = STATE(133), + [sym_emphasis_begin] = STATE(1201), + [sym_strong] = STATE(133), + [sym_strong_begin] = STATE(1202), + [sym_superscript] = STATE(133), + [sym_superscript_begin] = STATE(1203), + [sym_subscript] = STATE(133), + [sym_subscript_begin] = STATE(1204), + [sym_highlighted] = STATE(133), + [sym_highlighted_begin] = STATE(1205), + [sym_insert] = STATE(133), + [sym_insert_begin] = STATE(1206), + [sym_delete] = STATE(133), + [sym_delete_begin] = STATE(1207), + [sym_hard_line_break] = STATE(133), + [sym__smart_punctuation] = STATE(133), + [sym_autolink] = STATE(133), + [sym_footnote_reference] = STATE(133), + [sym_footnote_marker_begin] = STATE(1208), + [sym__image] = STATE(133), + [sym_full_reference_image] = STATE(133), + [sym_collapsed_reference_image] = STATE(133), + [sym_inline_image] = STATE(133), + [sym__image_description] = STATE(688), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(133), + [sym_full_reference_link] = STATE(133), + [sym_collapsed_reference_link] = STATE(133), + [sym_inline_link] = STATE(133), + [sym_link_text] = STATE(686), + [sym_span] = STATE(65), + [sym__bracketed_text] = STATE(673), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(133), + [sym_raw_inline] = STATE(133), + [sym_math] = STATE(133), + [sym_verbatim] = STATE(133), + [sym__todo_highlights] = STATE(133), + [sym_todo] = STATE(133), + [sym_note] = STATE(133), + [sym__symbol_fallback] = STATE(133), + [aux_sym__text] = STATE(129), + [aux_sym__inline_repeat1] = STATE(65), [anon_sym_LBRACE_] = ACTIONS(684), [anon_sym__] = ACTIONS(687), [anon_sym_LBRACE_STAR] = ACTIONS(690), @@ -10450,131 +10457,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(744), [aux_sym__text_token1] = ACTIONS(747), [sym__verbatim_begin] = ACTIONS(750), - [sym_delete_end] = ACTIONS(538), + [sym_delete_end] = ACTIONS(540), }, - [69] = { - [sym__inline] = STATE(1056), - [sym__element] = STATE(110), - [sym_emphasis] = STATE(135), - [sym_emphasis_begin] = STATE(1203), - [sym_strong] = STATE(135), - [sym_strong_begin] = STATE(1204), - [sym_superscript] = STATE(135), - [sym_superscript_begin] = STATE(1205), - [sym_subscript] = STATE(135), - [sym_subscript_begin] = STATE(1206), - [sym_highlighted] = STATE(135), - [sym_highlighted_begin] = STATE(1207), - [sym_insert] = STATE(135), - [sym_insert_begin] = STATE(1208), - [sym_delete] = STATE(135), - [sym_delete_begin] = STATE(1209), - [sym_hard_line_break] = STATE(135), - [sym__smart_punctuation] = STATE(135), - [sym_autolink] = STATE(135), - [sym_footnote_reference] = STATE(135), - [sym__image] = STATE(135), - [sym_full_reference_image] = STATE(135), - [sym_collapsed_reference_image] = STATE(135), - [sym_inline_image] = STATE(135), - [sym__image_description] = STATE(679), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(135), - [sym_full_reference_link] = STATE(135), - [sym_collapsed_reference_link] = STATE(135), - [sym_inline_link] = STATE(135), - [sym_link_text] = STATE(664), - [sym_span] = STATE(110), - [sym__bracketed_text] = STATE(659), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(135), - [sym_raw_inline] = STATE(135), - [sym_math] = STATE(135), - [sym_verbatim] = STATE(135), - [sym__todo_highlights] = STATE(135), - [sym_todo] = STATE(135), - [sym_note] = STATE(135), - [sym__symbol_fallback] = STATE(135), - [aux_sym__text] = STATE(122), - [aux_sym__inline_repeat1] = STATE(110), - [anon_sym_LBRACE_] = ACTIONS(753), - [anon_sym__] = ACTIONS(755), - [anon_sym_LBRACE_STAR] = ACTIONS(757), - [anon_sym_STAR] = ACTIONS(759), - [anon_sym_LBRACE_CARET] = ACTIONS(761), - [anon_sym_CARET] = ACTIONS(761), - [anon_sym_LBRACE_TILDE] = ACTIONS(763), - [anon_sym_TILDE] = ACTIONS(763), - [anon_sym_LBRACE_EQ] = ACTIONS(765), - [anon_sym_LBRACE_PLUS] = ACTIONS(767), - [anon_sym_LBRACE_DASH] = ACTIONS(769), - [anon_sym_BSLASH] = ACTIONS(771), - [sym_quotation_marks] = ACTIONS(773), - [sym_ellipsis] = ACTIONS(773), - [sym_em_dash] = ACTIONS(773), - [sym_en_dash] = ACTIONS(775), - [sym_backslash_escape] = ACTIONS(775), - [anon_sym_LT] = ACTIONS(777), - [sym_symbol] = ACTIONS(773), - [anon_sym_LBRACK_CARET] = ACTIONS(779), - [anon_sym_BANG_LBRACK] = ACTIONS(781), - [anon_sym_LBRACK] = ACTIONS(783), - [anon_sym_DOLLAR] = ACTIONS(785), - [anon_sym_TODO] = ACTIONS(787), - [anon_sym_WIP] = ACTIONS(787), - [anon_sym_NOTE] = ACTIONS(789), - [anon_sym_INFO] = ACTIONS(789), - [anon_sym_XXX] = ACTIONS(789), - [sym_fixme] = ACTIONS(773), - [sym__whitespace1] = ACTIONS(791), - [sym__newline] = ACTIONS(793), - [aux_sym__text_token1] = ACTIONS(795), - [sym__verbatim_begin] = ACTIONS(797), - }, - [70] = { - [sym__element] = STATE(64), - [sym_emphasis] = STATE(136), - [sym_emphasis_begin] = STATE(1161), - [sym_strong] = STATE(136), - [sym_strong_begin] = STATE(1162), - [sym_superscript] = STATE(136), - [sym_superscript_begin] = STATE(1163), - [sym_subscript] = STATE(136), - [sym_subscript_begin] = STATE(1164), - [sym_highlighted] = STATE(136), - [sym_highlighted_begin] = STATE(1165), - [sym_insert] = STATE(136), - [sym_insert_begin] = STATE(1166), - [sym_delete] = STATE(136), - [sym_delete_begin] = STATE(1167), - [sym_hard_line_break] = STATE(136), - [sym__smart_punctuation] = STATE(136), - [sym_autolink] = STATE(136), - [sym_footnote_reference] = STATE(136), - [sym__image] = STATE(136), - [sym_full_reference_image] = STATE(136), - [sym_collapsed_reference_image] = STATE(136), - [sym_inline_image] = STATE(136), - [sym__image_description] = STATE(690), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(136), - [sym_full_reference_link] = STATE(136), - [sym_collapsed_reference_link] = STATE(136), - [sym_inline_link] = STATE(136), - [sym_link_text] = STATE(691), - [sym_span] = STATE(64), - [sym__bracketed_text] = STATE(653), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(136), - [sym_raw_inline] = STATE(136), - [sym_math] = STATE(136), - [sym_verbatim] = STATE(136), - [sym__todo_highlights] = STATE(136), - [sym_todo] = STATE(136), - [sym_note] = STATE(136), - [sym__symbol_fallback] = STATE(136), - [aux_sym__text] = STATE(125), - [aux_sym__inline_repeat1] = STATE(64), + [66] = { + [sym__inline] = STATE(929), + [sym__element] = STATE(3), + [sym_emphasis] = STATE(137), + [sym_emphasis_begin] = STATE(1193), + [sym_strong] = STATE(137), + [sym_strong_begin] = STATE(1194), + [sym_superscript] = STATE(137), + [sym_superscript_begin] = STATE(1195), + [sym_subscript] = STATE(137), + [sym_subscript_begin] = STATE(1196), + [sym_highlighted] = STATE(137), + [sym_highlighted_begin] = STATE(1197), + [sym_insert] = STATE(137), + [sym_insert_begin] = STATE(1198), + [sym_delete] = STATE(137), + [sym_delete_begin] = STATE(1199), + [sym_hard_line_break] = STATE(137), + [sym__smart_punctuation] = STATE(137), + [sym_autolink] = STATE(137), + [sym_footnote_reference] = STATE(137), + [sym_footnote_marker_begin] = STATE(1200), + [sym__image] = STATE(137), + [sym_full_reference_image] = STATE(137), + [sym_collapsed_reference_image] = STATE(137), + [sym_inline_image] = STATE(137), + [sym__image_description] = STATE(694), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(137), + [sym_full_reference_link] = STATE(137), + [sym_collapsed_reference_link] = STATE(137), + [sym_inline_link] = STATE(137), + [sym_link_text] = STATE(693), + [sym_span] = STATE(3), + [sym__bracketed_text] = STATE(672), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(137), + [sym_raw_inline] = STATE(137), + [sym_math] = STATE(137), + [sym_verbatim] = STATE(137), + [sym__todo_highlights] = STATE(137), + [sym_todo] = STATE(137), + [sym_note] = STATE(137), + [sym__symbol_fallback] = STATE(137), + [aux_sym__text] = STATE(131), + [aux_sym__inline_repeat1] = STATE(3), [anon_sym_LBRACE_] = ACTIONS(97), [anon_sym__] = ACTIONS(99), [anon_sym_LBRACE_STAR] = ACTIONS(101), @@ -10605,441 +10535,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_XXX] = ACTIONS(133), [sym_fixme] = ACTIONS(117), [sym__whitespace1] = ACTIONS(135), - [sym__newline] = ACTIONS(799), + [sym__newline] = ACTIONS(145), [aux_sym__text_token1] = ACTIONS(139), [sym__verbatim_begin] = ACTIONS(141), - [sym_subscript_end] = ACTIONS(467), - }, - [71] = { - [sym__element] = STATE(71), - [sym_emphasis] = STATE(143), - [sym_emphasis_begin] = STATE(1117), - [sym_strong] = STATE(143), - [sym_strong_begin] = STATE(1116), - [sym_superscript] = STATE(143), - [sym_superscript_begin] = STATE(1115), - [sym_subscript] = STATE(143), - [sym_subscript_begin] = STATE(1107), - [sym_highlighted] = STATE(143), - [sym_highlighted_begin] = STATE(1106), - [sym_insert] = STATE(143), - [sym_insert_begin] = STATE(1105), - [sym_delete] = STATE(143), - [sym_delete_begin] = STATE(1104), - [sym_hard_line_break] = STATE(143), - [sym__smart_punctuation] = STATE(143), - [sym_autolink] = STATE(143), - [sym_footnote_reference] = STATE(143), - [sym__image] = STATE(143), - [sym_full_reference_image] = STATE(143), - [sym_collapsed_reference_image] = STATE(143), - [sym_inline_image] = STATE(143), - [sym__image_description] = STATE(673), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(143), - [sym_full_reference_link] = STATE(143), - [sym_collapsed_reference_link] = STATE(143), - [sym_inline_link] = STATE(143), - [sym_link_text] = STATE(669), - [sym_span] = STATE(71), - [sym__bracketed_text] = STATE(661), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(143), - [sym_raw_inline] = STATE(143), - [sym_math] = STATE(143), - [sym_verbatim] = STATE(143), - [sym__todo_highlights] = STATE(143), - [sym_todo] = STATE(143), - [sym_note] = STATE(143), - [sym__symbol_fallback] = STATE(143), - [aux_sym__text] = STATE(130), - [aux_sym__inline_repeat1] = STATE(71), - [ts_builtin_sym_end] = ACTIONS(538), - [anon_sym_LBRACE_] = ACTIONS(801), - [anon_sym__] = ACTIONS(804), - [anon_sym_LBRACE_STAR] = ACTIONS(807), - [anon_sym_STAR] = ACTIONS(810), - [anon_sym_LBRACE_CARET] = ACTIONS(813), - [anon_sym_CARET] = ACTIONS(813), - [anon_sym_LBRACE_TILDE] = ACTIONS(816), - [anon_sym_TILDE] = ACTIONS(816), - [anon_sym_LBRACE_EQ] = ACTIONS(819), - [anon_sym_LBRACE_PLUS] = ACTIONS(822), - [anon_sym_LBRACE_DASH] = ACTIONS(825), - [anon_sym_BSLASH] = ACTIONS(828), - [sym_quotation_marks] = ACTIONS(831), - [sym_ellipsis] = ACTIONS(831), - [sym_em_dash] = ACTIONS(831), - [sym_en_dash] = ACTIONS(834), - [sym_backslash_escape] = ACTIONS(834), - [anon_sym_LT] = ACTIONS(837), - [sym_symbol] = ACTIONS(831), - [anon_sym_LBRACK_CARET] = ACTIONS(840), - [anon_sym_BANG_LBRACK] = ACTIONS(843), - [anon_sym_LBRACK] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(849), - [anon_sym_TODO] = ACTIONS(852), - [anon_sym_WIP] = ACTIONS(852), - [anon_sym_NOTE] = ACTIONS(855), - [anon_sym_INFO] = ACTIONS(855), - [anon_sym_XXX] = ACTIONS(855), - [sym_fixme] = ACTIONS(831), - [sym__whitespace1] = ACTIONS(858), - [sym__newline] = ACTIONS(861), - [aux_sym__text_token1] = ACTIONS(864), - [sym__verbatim_begin] = ACTIONS(867), }, - [72] = { - [sym__element] = STATE(116), - [sym_emphasis] = STATE(137), - [sym_emphasis_begin] = STATE(1196), - [sym_strong] = STATE(137), - [sym_strong_begin] = STATE(1197), - [sym_superscript] = STATE(137), - [sym_superscript_begin] = STATE(1198), - [sym_subscript] = STATE(137), - [sym_subscript_begin] = STATE(1199), - [sym_highlighted] = STATE(137), - [sym_highlighted_begin] = STATE(1200), - [sym_insert] = STATE(137), - [sym_insert_begin] = STATE(1201), - [sym_delete] = STATE(137), - [sym_delete_begin] = STATE(1202), - [sym_hard_line_break] = STATE(137), - [sym__smart_punctuation] = STATE(137), - [sym_autolink] = STATE(137), - [sym_footnote_reference] = STATE(137), - [sym__image] = STATE(137), - [sym_full_reference_image] = STATE(137), - [sym_collapsed_reference_image] = STATE(137), - [sym_inline_image] = STATE(137), - [sym__image_description] = STATE(666), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(137), - [sym_full_reference_link] = STATE(137), - [sym_collapsed_reference_link] = STATE(137), - [sym_inline_link] = STATE(137), - [sym_link_text] = STATE(665), - [sym_span] = STATE(116), - [sym__bracketed_text] = STATE(651), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(137), - [sym_raw_inline] = STATE(137), - [sym_math] = STATE(137), - [sym_verbatim] = STATE(137), - [sym__todo_highlights] = STATE(137), - [sym_todo] = STATE(137), - [sym_note] = STATE(137), - [sym__symbol_fallback] = STATE(137), - [aux_sym__text] = STATE(121), - [aux_sym__inline_repeat1] = STATE(116), - [anon_sym_LBRACE_] = ACTIONS(49), - [anon_sym__] = ACTIONS(51), - [anon_sym_LBRACE_STAR] = ACTIONS(53), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_LBRACE_CARET] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(57), - [anon_sym_LBRACE_TILDE] = ACTIONS(59), - [anon_sym_TILDE] = ACTIONS(59), - [anon_sym_LBRACE_EQ] = ACTIONS(61), - [anon_sym_LBRACE_PLUS] = ACTIONS(63), - [anon_sym_LBRACE_DASH] = ACTIONS(65), - [anon_sym_BSLASH] = ACTIONS(67), - [sym_quotation_marks] = ACTIONS(69), - [sym_ellipsis] = ACTIONS(69), - [sym_em_dash] = ACTIONS(69), - [sym_en_dash] = ACTIONS(71), - [sym_backslash_escape] = ACTIONS(71), - [anon_sym_LT] = ACTIONS(73), - [sym_symbol] = ACTIONS(69), - [anon_sym_LBRACK_CARET] = ACTIONS(75), - [anon_sym_BANG_LBRACK] = ACTIONS(77), - [anon_sym_LBRACK] = ACTIONS(79), - [anon_sym_DOLLAR] = ACTIONS(81), - [anon_sym_TODO] = ACTIONS(83), - [anon_sym_WIP] = ACTIONS(83), - [anon_sym_NOTE] = ACTIONS(85), - [anon_sym_INFO] = ACTIONS(85), - [anon_sym_XXX] = ACTIONS(85), - [sym_fixme] = ACTIONS(69), - [sym__whitespace1] = ACTIONS(87), - [sym__newline] = ACTIONS(870), - [aux_sym__text_token1] = ACTIONS(91), - [sym__verbatim_begin] = ACTIONS(93), - [sym__image_description_end] = ACTIONS(467), + [67] = { + [sym__inline] = STATE(930), + [sym__element] = STATE(14), + [sym_emphasis] = STATE(133), + [sym_emphasis_begin] = STATE(1201), + [sym_strong] = STATE(133), + [sym_strong_begin] = STATE(1202), + [sym_superscript] = STATE(133), + [sym_superscript_begin] = STATE(1203), + [sym_subscript] = STATE(133), + [sym_subscript_begin] = STATE(1204), + [sym_highlighted] = STATE(133), + [sym_highlighted_begin] = STATE(1205), + [sym_insert] = STATE(133), + [sym_insert_begin] = STATE(1206), + [sym_delete] = STATE(133), + [sym_delete_begin] = STATE(1207), + [sym_hard_line_break] = STATE(133), + [sym__smart_punctuation] = STATE(133), + [sym_autolink] = STATE(133), + [sym_footnote_reference] = STATE(133), + [sym_footnote_marker_begin] = STATE(1208), + [sym__image] = STATE(133), + [sym_full_reference_image] = STATE(133), + [sym_collapsed_reference_image] = STATE(133), + [sym_inline_image] = STATE(133), + [sym__image_description] = STATE(688), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(133), + [sym_full_reference_link] = STATE(133), + [sym_collapsed_reference_link] = STATE(133), + [sym_inline_link] = STATE(133), + [sym_link_text] = STATE(686), + [sym_span] = STATE(14), + [sym__bracketed_text] = STATE(673), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(133), + [sym_raw_inline] = STATE(133), + [sym_math] = STATE(133), + [sym_verbatim] = STATE(133), + [sym__todo_highlights] = STATE(133), + [sym_todo] = STATE(133), + [sym_note] = STATE(133), + [sym__symbol_fallback] = STATE(133), + [aux_sym__text] = STATE(129), + [aux_sym__inline_repeat1] = STATE(14), + [anon_sym_LBRACE_] = ACTIONS(423), + [anon_sym__] = ACTIONS(425), + [anon_sym_LBRACE_STAR] = ACTIONS(427), + [anon_sym_STAR] = ACTIONS(429), + [anon_sym_LBRACE_CARET] = ACTIONS(431), + [anon_sym_CARET] = ACTIONS(431), + [anon_sym_LBRACE_TILDE] = ACTIONS(433), + [anon_sym_TILDE] = ACTIONS(433), + [anon_sym_LBRACE_EQ] = ACTIONS(435), + [anon_sym_LBRACE_PLUS] = ACTIONS(437), + [anon_sym_LBRACE_DASH] = ACTIONS(439), + [anon_sym_BSLASH] = ACTIONS(441), + [sym_quotation_marks] = ACTIONS(443), + [sym_ellipsis] = ACTIONS(443), + [sym_em_dash] = ACTIONS(443), + [sym_en_dash] = ACTIONS(445), + [sym_backslash_escape] = ACTIONS(445), + [anon_sym_LT] = ACTIONS(447), + [sym_symbol] = ACTIONS(443), + [anon_sym_LBRACK_CARET] = ACTIONS(449), + [anon_sym_BANG_LBRACK] = ACTIONS(451), + [anon_sym_LBRACK] = ACTIONS(453), + [anon_sym_DOLLAR] = ACTIONS(455), + [anon_sym_TODO] = ACTIONS(457), + [anon_sym_WIP] = ACTIONS(457), + [anon_sym_NOTE] = ACTIONS(459), + [anon_sym_INFO] = ACTIONS(459), + [anon_sym_XXX] = ACTIONS(459), + [sym_fixme] = ACTIONS(443), + [sym__whitespace1] = ACTIONS(461), + [sym__newline] = ACTIONS(469), + [aux_sym__text_token1] = ACTIONS(465), + [sym__verbatim_begin] = ACTIONS(467), }, - [73] = { - [sym__inline_without_trailing_space] = STATE(1131), - [sym__element] = STATE(604), - [sym_emphasis] = STATE(138), - [sym_emphasis_begin] = STATE(1140), - [sym_strong] = STATE(138), - [sym_strong_begin] = STATE(1141), - [sym_superscript] = STATE(138), - [sym_superscript_begin] = STATE(1142), - [sym_subscript] = STATE(138), - [sym_subscript_begin] = STATE(1143), - [sym_highlighted] = STATE(138), - [sym_highlighted_begin] = STATE(1144), - [sym_insert] = STATE(138), - [sym_insert_begin] = STATE(1145), - [sym_delete] = STATE(138), - [sym_delete_begin] = STATE(1146), - [sym_hard_line_break] = STATE(138), - [sym__smart_punctuation] = STATE(138), - [sym_autolink] = STATE(138), - [sym_footnote_reference] = STATE(138), - [sym__image] = STATE(138), - [sym_full_reference_image] = STATE(138), - [sym_collapsed_reference_image] = STATE(138), - [sym_inline_image] = STATE(138), - [sym__image_description] = STATE(667), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(138), - [sym_full_reference_link] = STATE(138), - [sym_collapsed_reference_link] = STATE(138), - [sym_inline_link] = STATE(138), - [sym_link_text] = STATE(689), - [sym_span] = STATE(604), - [sym__bracketed_text] = STATE(658), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(138), - [sym_raw_inline] = STATE(138), - [sym_math] = STATE(138), - [sym_verbatim] = STATE(138), - [sym__todo_highlights] = STATE(138), - [sym_todo] = STATE(138), - [sym_note] = STATE(138), - [sym__symbol_fallback] = STATE(138), - [aux_sym__text] = STATE(124), - [aux_sym__inline_repeat1] = STATE(118), - [anon_sym_LBRACE_] = ACTIONS(419), - [anon_sym__] = ACTIONS(421), - [anon_sym_LBRACE_STAR] = ACTIONS(423), - [anon_sym_STAR] = ACTIONS(425), - [anon_sym_LBRACE_CARET] = ACTIONS(427), - [anon_sym_CARET] = ACTIONS(427), - [anon_sym_LBRACE_TILDE] = ACTIONS(429), - [anon_sym_TILDE] = ACTIONS(429), - [anon_sym_LBRACE_EQ] = ACTIONS(431), - [anon_sym_LBRACE_PLUS] = ACTIONS(433), - [anon_sym_LBRACE_DASH] = ACTIONS(435), - [anon_sym_BSLASH] = ACTIONS(437), - [sym_quotation_marks] = ACTIONS(439), - [sym_ellipsis] = ACTIONS(439), - [sym_em_dash] = ACTIONS(439), - [sym_en_dash] = ACTIONS(441), - [sym_backslash_escape] = ACTIONS(441), - [anon_sym_LT] = ACTIONS(443), - [sym_symbol] = ACTIONS(439), - [anon_sym_LBRACK_CARET] = ACTIONS(445), - [anon_sym_BANG_LBRACK] = ACTIONS(447), - [anon_sym_LBRACK] = ACTIONS(449), - [anon_sym_DOLLAR] = ACTIONS(451), - [anon_sym_TODO] = ACTIONS(453), - [anon_sym_WIP] = ACTIONS(453), - [anon_sym_NOTE] = ACTIONS(455), - [anon_sym_INFO] = ACTIONS(455), - [anon_sym_XXX] = ACTIONS(455), - [sym_fixme] = ACTIONS(439), - [sym__whitespace1] = ACTIONS(457), - [sym__newline] = ACTIONS(459), - [aux_sym__text_token1] = ACTIONS(461), - [sym__verbatim_begin] = ACTIONS(463), - }, - [74] = { - [sym__inline_without_trailing_space] = STATE(1129), - [sym__element] = STATE(562), - [sym_emphasis] = STATE(142), - [sym_emphasis_begin] = STATE(1147), - [sym_strong] = STATE(142), - [sym_strong_begin] = STATE(1148), - [sym_superscript] = STATE(142), - [sym_superscript_begin] = STATE(1149), - [sym_subscript] = STATE(142), - [sym_subscript_begin] = STATE(1150), - [sym_highlighted] = STATE(142), - [sym_highlighted_begin] = STATE(1151), - [sym_insert] = STATE(142), - [sym_insert_begin] = STATE(1152), - [sym_delete] = STATE(142), - [sym_delete_begin] = STATE(1153), - [sym_hard_line_break] = STATE(142), - [sym__smart_punctuation] = STATE(142), - [sym_autolink] = STATE(142), - [sym_footnote_reference] = STATE(142), - [sym__image] = STATE(142), - [sym_full_reference_image] = STATE(142), - [sym_collapsed_reference_image] = STATE(142), - [sym_inline_image] = STATE(142), - [sym__image_description] = STATE(685), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(142), - [sym_full_reference_link] = STATE(142), - [sym_collapsed_reference_link] = STATE(142), - [sym_inline_link] = STATE(142), - [sym_link_text] = STATE(683), - [sym_span] = STATE(562), - [sym__bracketed_text] = STATE(657), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(142), - [sym_raw_inline] = STATE(142), - [sym_math] = STATE(142), - [sym_verbatim] = STATE(142), - [sym__todo_highlights] = STATE(142), - [sym_todo] = STATE(142), - [sym_note] = STATE(142), - [sym__symbol_fallback] = STATE(142), - [aux_sym__text] = STATE(126), - [aux_sym__inline_repeat1] = STATE(120), - [anon_sym_LBRACE_] = ACTIONS(373), - [anon_sym__] = ACTIONS(375), - [anon_sym_LBRACE_STAR] = ACTIONS(377), - [anon_sym_STAR] = ACTIONS(379), - [anon_sym_LBRACE_CARET] = ACTIONS(381), - [anon_sym_CARET] = ACTIONS(381), - [anon_sym_LBRACE_TILDE] = ACTIONS(383), - [anon_sym_TILDE] = ACTIONS(383), - [anon_sym_LBRACE_EQ] = ACTIONS(385), - [anon_sym_LBRACE_PLUS] = ACTIONS(387), - [anon_sym_LBRACE_DASH] = ACTIONS(389), - [anon_sym_BSLASH] = ACTIONS(391), - [sym_quotation_marks] = ACTIONS(393), - [sym_ellipsis] = ACTIONS(393), - [sym_em_dash] = ACTIONS(393), - [sym_en_dash] = ACTIONS(395), - [sym_backslash_escape] = ACTIONS(395), - [anon_sym_LT] = ACTIONS(397), - [sym_symbol] = ACTIONS(393), - [anon_sym_LBRACK_CARET] = ACTIONS(399), - [anon_sym_BANG_LBRACK] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_DOLLAR] = ACTIONS(405), - [anon_sym_TODO] = ACTIONS(407), - [anon_sym_WIP] = ACTIONS(407), - [anon_sym_NOTE] = ACTIONS(409), - [anon_sym_INFO] = ACTIONS(409), - [anon_sym_XXX] = ACTIONS(409), - [sym_fixme] = ACTIONS(393), - [sym__whitespace1] = ACTIONS(411), - [sym__newline] = ACTIONS(413), - [aux_sym__text_token1] = ACTIONS(415), - [sym__verbatim_begin] = ACTIONS(417), - }, - [75] = { - [sym__inline] = STATE(1126), - [sym__element] = STATE(105), - [sym_emphasis] = STATE(140), - [sym_emphasis_begin] = STATE(1154), - [sym_strong] = STATE(140), - [sym_strong_begin] = STATE(1155), - [sym_superscript] = STATE(140), - [sym_superscript_begin] = STATE(1156), - [sym_subscript] = STATE(140), - [sym_subscript_begin] = STATE(1157), - [sym_highlighted] = STATE(140), - [sym_highlighted_begin] = STATE(1158), - [sym_insert] = STATE(140), - [sym_insert_begin] = STATE(1159), - [sym_delete] = STATE(140), - [sym_delete_begin] = STATE(1160), - [sym_hard_line_break] = STATE(140), - [sym__smart_punctuation] = STATE(140), - [sym_autolink] = STATE(140), - [sym_footnote_reference] = STATE(140), - [sym__image] = STATE(140), - [sym_full_reference_image] = STATE(140), - [sym_collapsed_reference_image] = STATE(140), - [sym_inline_image] = STATE(140), - [sym__image_description] = STATE(687), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(140), - [sym_full_reference_link] = STATE(140), - [sym_collapsed_reference_link] = STATE(140), - [sym_inline_link] = STATE(140), - [sym_link_text] = STATE(688), - [sym_span] = STATE(105), - [sym__bracketed_text] = STATE(654), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(140), - [sym_raw_inline] = STATE(140), - [sym_math] = STATE(140), - [sym_verbatim] = STATE(140), - [sym__todo_highlights] = STATE(140), - [sym_todo] = STATE(140), - [sym_note] = STATE(140), - [sym__symbol_fallback] = STATE(140), - [aux_sym__text] = STATE(131), - [aux_sym__inline_repeat1] = STATE(105), - [anon_sym_LBRACE_] = ACTIONS(327), - [anon_sym__] = ACTIONS(329), - [anon_sym_LBRACE_STAR] = ACTIONS(331), - [anon_sym_STAR] = ACTIONS(333), - [anon_sym_LBRACE_CARET] = ACTIONS(335), - [anon_sym_CARET] = ACTIONS(335), - [anon_sym_LBRACE_TILDE] = ACTIONS(337), - [anon_sym_TILDE] = ACTIONS(337), - [anon_sym_LBRACE_EQ] = ACTIONS(339), - [anon_sym_LBRACE_PLUS] = ACTIONS(341), - [anon_sym_LBRACE_DASH] = ACTIONS(343), - [anon_sym_BSLASH] = ACTIONS(345), - [sym_quotation_marks] = ACTIONS(347), - [sym_ellipsis] = ACTIONS(347), - [sym_em_dash] = ACTIONS(347), - [sym_en_dash] = ACTIONS(349), - [sym_backslash_escape] = ACTIONS(349), - [anon_sym_LT] = ACTIONS(351), - [sym_symbol] = ACTIONS(347), - [anon_sym_LBRACK_CARET] = ACTIONS(353), - [anon_sym_BANG_LBRACK] = ACTIONS(355), - [anon_sym_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [anon_sym_TODO] = ACTIONS(361), - [anon_sym_WIP] = ACTIONS(361), - [anon_sym_NOTE] = ACTIONS(363), - [anon_sym_INFO] = ACTIONS(363), - [anon_sym_XXX] = ACTIONS(363), - [sym_fixme] = ACTIONS(347), - [sym__whitespace1] = ACTIONS(365), - [sym__newline] = ACTIONS(367), - [aux_sym__text_token1] = ACTIONS(369), - [sym__verbatim_begin] = ACTIONS(371), - }, - [76] = { - [sym__inline] = STATE(1122), - [sym__element] = STATE(70), + [68] = { + [sym__inline] = STATE(962), + [sym__element] = STATE(47), [sym_emphasis] = STATE(136), - [sym_emphasis_begin] = STATE(1161), + [sym_emphasis_begin] = STATE(1209), [sym_strong] = STATE(136), - [sym_strong_begin] = STATE(1162), + [sym_strong_begin] = STATE(1210), [sym_superscript] = STATE(136), - [sym_superscript_begin] = STATE(1163), + [sym_superscript_begin] = STATE(1211), [sym_subscript] = STATE(136), - [sym_subscript_begin] = STATE(1164), + [sym_subscript_begin] = STATE(1212), [sym_highlighted] = STATE(136), - [sym_highlighted_begin] = STATE(1165), + [sym_highlighted_begin] = STATE(1213), [sym_insert] = STATE(136), - [sym_insert_begin] = STATE(1166), + [sym_insert_begin] = STATE(1214), [sym_delete] = STATE(136), - [sym_delete_begin] = STATE(1167), + [sym_delete_begin] = STATE(1215), [sym_hard_line_break] = STATE(136), [sym__smart_punctuation] = STATE(136), [sym_autolink] = STATE(136), [sym_footnote_reference] = STATE(136), + [sym_footnote_marker_begin] = STATE(1216), [sym__image] = STATE(136), [sym_full_reference_image] = STATE(136), [sym_collapsed_reference_image] = STATE(136), [sym_inline_image] = STATE(136), - [sym__image_description] = STATE(690), - [sym__image_description_begin] = STATE(1103), + [sym__image_description] = STATE(682), + [sym__image_description_begin] = STATE(1114), [sym__link] = STATE(136), [sym_full_reference_link] = STATE(136), [sym_collapsed_reference_link] = STATE(136), [sym_inline_link] = STATE(136), - [sym_link_text] = STATE(691), - [sym_span] = STATE(70), - [sym__bracketed_text] = STATE(653), - [sym__bracketed_text_begin] = STATE(1102), + [sym_link_text] = STATE(675), + [sym_span] = STATE(47), + [sym__bracketed_text] = STATE(674), + [sym__bracketed_text_begin] = STATE(1113), [sym__comment_with_spaces] = STATE(136), [sym_raw_inline] = STATE(136), [sym_math] = STATE(136), @@ -11048,156 +10663,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(136), [sym_note] = STATE(136), [sym__symbol_fallback] = STATE(136), - [aux_sym__text] = STATE(125), - [aux_sym__inline_repeat1] = STATE(70), - [anon_sym_LBRACE_] = ACTIONS(97), - [anon_sym__] = ACTIONS(99), - [anon_sym_LBRACE_STAR] = ACTIONS(101), - [anon_sym_STAR] = ACTIONS(103), - [anon_sym_LBRACE_CARET] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [anon_sym_LBRACE_TILDE] = ACTIONS(107), - [anon_sym_TILDE] = ACTIONS(107), - [anon_sym_LBRACE_EQ] = ACTIONS(109), - [anon_sym_LBRACE_PLUS] = ACTIONS(111), - [anon_sym_LBRACE_DASH] = ACTIONS(113), - [anon_sym_BSLASH] = ACTIONS(115), - [sym_quotation_marks] = ACTIONS(117), - [sym_ellipsis] = ACTIONS(117), - [sym_em_dash] = ACTIONS(117), - [sym_en_dash] = ACTIONS(119), - [sym_backslash_escape] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [sym_symbol] = ACTIONS(117), - [anon_sym_LBRACK_CARET] = ACTIONS(123), - [anon_sym_BANG_LBRACK] = ACTIONS(125), - [anon_sym_LBRACK] = ACTIONS(127), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_TODO] = ACTIONS(131), - [anon_sym_WIP] = ACTIONS(131), - [anon_sym_NOTE] = ACTIONS(133), - [anon_sym_INFO] = ACTIONS(133), - [anon_sym_XXX] = ACTIONS(133), - [sym_fixme] = ACTIONS(117), - [sym__whitespace1] = ACTIONS(135), - [sym__newline] = ACTIONS(137), - [aux_sym__text_token1] = ACTIONS(139), - [sym__verbatim_begin] = ACTIONS(141), + [aux_sym__text] = STATE(127), + [aux_sym__inline_repeat1] = STATE(47), + [anon_sym_LBRACE_] = ACTIONS(377), + [anon_sym__] = ACTIONS(379), + [anon_sym_LBRACE_STAR] = ACTIONS(381), + [anon_sym_STAR] = ACTIONS(383), + [anon_sym_LBRACE_CARET] = ACTIONS(385), + [anon_sym_CARET] = ACTIONS(385), + [anon_sym_LBRACE_TILDE] = ACTIONS(387), + [anon_sym_TILDE] = ACTIONS(387), + [anon_sym_LBRACE_EQ] = ACTIONS(389), + [anon_sym_LBRACE_PLUS] = ACTIONS(391), + [anon_sym_LBRACE_DASH] = ACTIONS(393), + [anon_sym_BSLASH] = ACTIONS(395), + [sym_quotation_marks] = ACTIONS(397), + [sym_ellipsis] = ACTIONS(397), + [sym_em_dash] = ACTIONS(397), + [sym_en_dash] = ACTIONS(399), + [sym_backslash_escape] = ACTIONS(399), + [anon_sym_LT] = ACTIONS(401), + [sym_symbol] = ACTIONS(397), + [anon_sym_LBRACK_CARET] = ACTIONS(403), + [anon_sym_BANG_LBRACK] = ACTIONS(405), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_DOLLAR] = ACTIONS(409), + [anon_sym_TODO] = ACTIONS(411), + [anon_sym_WIP] = ACTIONS(411), + [anon_sym_NOTE] = ACTIONS(413), + [anon_sym_INFO] = ACTIONS(413), + [anon_sym_XXX] = ACTIONS(413), + [sym_fixme] = ACTIONS(397), + [sym__whitespace1] = ACTIONS(415), + [sym__newline] = ACTIONS(417), + [aux_sym__text_token1] = ACTIONS(419), + [sym__verbatim_begin] = ACTIONS(421), }, - [77] = { - [sym__inline] = STATE(1121), - [sym__element] = STATE(13), - [sym_emphasis] = STATE(141), - [sym_emphasis_begin] = STATE(1168), - [sym_strong] = STATE(141), - [sym_strong_begin] = STATE(1169), - [sym_superscript] = STATE(141), - [sym_superscript_begin] = STATE(1170), - [sym_subscript] = STATE(141), - [sym_subscript_begin] = STATE(1171), - [sym_highlighted] = STATE(141), - [sym_highlighted_begin] = STATE(1172), - [sym_insert] = STATE(141), - [sym_insert_begin] = STATE(1173), - [sym_delete] = STATE(141), - [sym_delete_begin] = STATE(1174), - [sym_hard_line_break] = STATE(141), - [sym__smart_punctuation] = STATE(141), - [sym_autolink] = STATE(141), - [sym_footnote_reference] = STATE(141), - [sym__image] = STATE(141), - [sym_full_reference_image] = STATE(141), - [sym_collapsed_reference_image] = STATE(141), - [sym_inline_image] = STATE(141), - [sym__image_description] = STATE(674), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(141), - [sym_full_reference_link] = STATE(141), - [sym_collapsed_reference_link] = STATE(141), - [sym_inline_link] = STATE(141), - [sym_link_text] = STATE(672), - [sym_span] = STATE(13), - [sym__bracketed_text] = STATE(655), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(141), - [sym_raw_inline] = STATE(141), - [sym_math] = STATE(141), - [sym_verbatim] = STATE(141), - [sym__todo_highlights] = STATE(141), - [sym_todo] = STATE(141), - [sym_note] = STATE(141), - [sym__symbol_fallback] = STATE(141), - [aux_sym__text] = STATE(128), - [aux_sym__inline_repeat1] = STATE(13), - [anon_sym_LBRACE_] = ACTIONS(281), - [anon_sym__] = ACTIONS(283), - [anon_sym_LBRACE_STAR] = ACTIONS(285), - [anon_sym_STAR] = ACTIONS(287), - [anon_sym_LBRACE_CARET] = ACTIONS(289), - [anon_sym_CARET] = ACTIONS(289), - [anon_sym_LBRACE_TILDE] = ACTIONS(291), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_LBRACE_EQ] = ACTIONS(293), - [anon_sym_LBRACE_PLUS] = ACTIONS(295), - [anon_sym_LBRACE_DASH] = ACTIONS(297), - [anon_sym_BSLASH] = ACTIONS(299), - [sym_quotation_marks] = ACTIONS(301), - [sym_ellipsis] = ACTIONS(301), - [sym_em_dash] = ACTIONS(301), - [sym_en_dash] = ACTIONS(303), - [sym_backslash_escape] = ACTIONS(303), - [anon_sym_LT] = ACTIONS(305), - [sym_symbol] = ACTIONS(301), - [anon_sym_LBRACK_CARET] = ACTIONS(307), - [anon_sym_BANG_LBRACK] = ACTIONS(309), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_DOLLAR] = ACTIONS(313), - [anon_sym_TODO] = ACTIONS(315), - [anon_sym_WIP] = ACTIONS(315), - [anon_sym_NOTE] = ACTIONS(317), - [anon_sym_INFO] = ACTIONS(317), - [anon_sym_XXX] = ACTIONS(317), - [sym_fixme] = ACTIONS(301), - [sym__whitespace1] = ACTIONS(319), - [sym__newline] = ACTIONS(321), - [aux_sym__text_token1] = ACTIONS(323), - [sym__verbatim_begin] = ACTIONS(325), + [69] = { + [sym__inline] = STATE(1067), + [sym__element] = STATE(110), + [sym_emphasis] = STATE(134), + [sym_emphasis_begin] = STATE(1225), + [sym_strong] = STATE(134), + [sym_strong_begin] = STATE(1226), + [sym_superscript] = STATE(134), + [sym_superscript_begin] = STATE(1227), + [sym_subscript] = STATE(134), + [sym_subscript_begin] = STATE(1228), + [sym_highlighted] = STATE(134), + [sym_highlighted_begin] = STATE(1229), + [sym_insert] = STATE(134), + [sym_insert_begin] = STATE(1230), + [sym_delete] = STATE(134), + [sym_delete_begin] = STATE(1231), + [sym_hard_line_break] = STATE(134), + [sym__smart_punctuation] = STATE(134), + [sym_autolink] = STATE(134), + [sym_footnote_reference] = STATE(134), + [sym_footnote_marker_begin] = STATE(1232), + [sym__image] = STATE(134), + [sym_full_reference_image] = STATE(134), + [sym_collapsed_reference_image] = STATE(134), + [sym_inline_image] = STATE(134), + [sym__image_description] = STATE(676), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(134), + [sym_full_reference_link] = STATE(134), + [sym_collapsed_reference_link] = STATE(134), + [sym_inline_link] = STATE(134), + [sym_link_text] = STATE(695), + [sym_span] = STATE(110), + [sym__bracketed_text] = STATE(669), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(134), + [sym_raw_inline] = STATE(134), + [sym_math] = STATE(134), + [sym_verbatim] = STATE(134), + [sym__todo_highlights] = STATE(134), + [sym_todo] = STATE(134), + [sym_note] = STATE(134), + [sym__symbol_fallback] = STATE(134), + [aux_sym__text] = STATE(123), + [aux_sym__inline_repeat1] = STATE(110), + [anon_sym_LBRACE_] = ACTIONS(753), + [anon_sym__] = ACTIONS(755), + [anon_sym_LBRACE_STAR] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_LBRACE_CARET] = ACTIONS(761), + [anon_sym_CARET] = ACTIONS(761), + [anon_sym_LBRACE_TILDE] = ACTIONS(763), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_LBRACE_EQ] = ACTIONS(765), + [anon_sym_LBRACE_PLUS] = ACTIONS(767), + [anon_sym_LBRACE_DASH] = ACTIONS(769), + [anon_sym_BSLASH] = ACTIONS(771), + [sym_quotation_marks] = ACTIONS(773), + [sym_ellipsis] = ACTIONS(773), + [sym_em_dash] = ACTIONS(773), + [sym_en_dash] = ACTIONS(775), + [sym_backslash_escape] = ACTIONS(775), + [anon_sym_LT] = ACTIONS(777), + [sym_symbol] = ACTIONS(773), + [anon_sym_LBRACK_CARET] = ACTIONS(779), + [anon_sym_BANG_LBRACK] = ACTIONS(781), + [anon_sym_LBRACK] = ACTIONS(783), + [anon_sym_DOLLAR] = ACTIONS(785), + [anon_sym_TODO] = ACTIONS(787), + [anon_sym_WIP] = ACTIONS(787), + [anon_sym_NOTE] = ACTIONS(789), + [anon_sym_INFO] = ACTIONS(789), + [anon_sym_XXX] = ACTIONS(789), + [sym_fixme] = ACTIONS(773), + [sym__whitespace1] = ACTIONS(791), + [sym__newline] = ACTIONS(793), + [aux_sym__text_token1] = ACTIONS(795), + [sym__verbatim_begin] = ACTIONS(797), }, - [78] = { - [sym__inline] = STATE(912), - [sym__element] = STATE(103), + [70] = { + [sym__element] = STATE(112), [sym_emphasis] = STATE(139), - [sym_emphasis_begin] = STATE(1175), + [sym_emphasis_begin] = STATE(1217), [sym_strong] = STATE(139), - [sym_strong_begin] = STATE(1176), + [sym_strong_begin] = STATE(1218), [sym_superscript] = STATE(139), - [sym_superscript_begin] = STATE(1177), + [sym_superscript_begin] = STATE(1219), [sym_subscript] = STATE(139), - [sym_subscript_begin] = STATE(1178), + [sym_subscript_begin] = STATE(1220), [sym_highlighted] = STATE(139), - [sym_highlighted_begin] = STATE(1179), + [sym_highlighted_begin] = STATE(1221), [sym_insert] = STATE(139), - [sym_insert_begin] = STATE(1180), + [sym_insert_begin] = STATE(1222), [sym_delete] = STATE(139), - [sym_delete_begin] = STATE(1181), + [sym_delete_begin] = STATE(1223), [sym_hard_line_break] = STATE(139), [sym__smart_punctuation] = STATE(139), [sym_autolink] = STATE(139), [sym_footnote_reference] = STATE(139), + [sym_footnote_marker_begin] = STATE(1224), [sym__image] = STATE(139), [sym_full_reference_image] = STATE(139), [sym_collapsed_reference_image] = STATE(139), [sym_inline_image] = STATE(139), - [sym__image_description] = STATE(682), - [sym__image_description_begin] = STATE(1103), + [sym__image_description] = STATE(678), + [sym__image_description_begin] = STATE(1114), [sym__link] = STATE(139), [sym_full_reference_link] = STATE(139), [sym_collapsed_reference_link] = STATE(139), [sym_inline_link] = STATE(139), - [sym_link_text] = STATE(681), - [sym_span] = STATE(103), - [sym__bracketed_text] = STATE(656), - [sym__bracketed_text_begin] = STATE(1102), + [sym_link_text] = STATE(677), + [sym_span] = STATE(112), + [sym__bracketed_text] = STATE(663), + [sym__bracketed_text_begin] = STATE(1113), [sym__comment_with_spaces] = STATE(139), [sym_raw_inline] = STATE(139), [sym_math] = STATE(139), @@ -11206,156 +10822,318 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(139), [sym_note] = STATE(139), [sym__symbol_fallback] = STATE(139), - [aux_sym__text] = STATE(129), - [aux_sym__inline_repeat1] = STATE(103), - [anon_sym_LBRACE_] = ACTIONS(235), - [anon_sym__] = ACTIONS(237), - [anon_sym_LBRACE_STAR] = ACTIONS(239), - [anon_sym_STAR] = ACTIONS(241), - [anon_sym_LBRACE_CARET] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(243), - [anon_sym_LBRACE_TILDE] = ACTIONS(245), - [anon_sym_TILDE] = ACTIONS(245), - [anon_sym_LBRACE_EQ] = ACTIONS(247), - [anon_sym_LBRACE_PLUS] = ACTIONS(249), - [anon_sym_LBRACE_DASH] = ACTIONS(251), - [anon_sym_BSLASH] = ACTIONS(253), - [sym_quotation_marks] = ACTIONS(255), - [sym_ellipsis] = ACTIONS(255), - [sym_em_dash] = ACTIONS(255), - [sym_en_dash] = ACTIONS(257), - [sym_backslash_escape] = ACTIONS(257), - [anon_sym_LT] = ACTIONS(259), - [sym_symbol] = ACTIONS(255), - [anon_sym_LBRACK_CARET] = ACTIONS(261), - [anon_sym_BANG_LBRACK] = ACTIONS(263), - [anon_sym_LBRACK] = ACTIONS(265), - [anon_sym_DOLLAR] = ACTIONS(267), - [anon_sym_TODO] = ACTIONS(269), - [anon_sym_WIP] = ACTIONS(269), - [anon_sym_NOTE] = ACTIONS(271), - [anon_sym_INFO] = ACTIONS(271), - [anon_sym_XXX] = ACTIONS(271), - [sym_fixme] = ACTIONS(255), - [sym__whitespace1] = ACTIONS(273), - [sym__newline] = ACTIONS(275), - [aux_sym__text_token1] = ACTIONS(277), - [sym__verbatim_begin] = ACTIONS(279), + [aux_sym__text] = STATE(121), + [aux_sym__inline_repeat1] = STATE(112), + [anon_sym_LBRACE_] = ACTIONS(49), + [anon_sym__] = ACTIONS(51), + [anon_sym_LBRACE_STAR] = ACTIONS(53), + [anon_sym_STAR] = ACTIONS(55), + [anon_sym_LBRACE_CARET] = ACTIONS(57), + [anon_sym_CARET] = ACTIONS(57), + [anon_sym_LBRACE_TILDE] = ACTIONS(59), + [anon_sym_TILDE] = ACTIONS(59), + [anon_sym_LBRACE_EQ] = ACTIONS(61), + [anon_sym_LBRACE_PLUS] = ACTIONS(63), + [anon_sym_LBRACE_DASH] = ACTIONS(65), + [anon_sym_BSLASH] = ACTIONS(67), + [sym_quotation_marks] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(69), + [sym_em_dash] = ACTIONS(69), + [sym_en_dash] = ACTIONS(71), + [sym_backslash_escape] = ACTIONS(71), + [anon_sym_LT] = ACTIONS(73), + [sym_symbol] = ACTIONS(69), + [anon_sym_LBRACK_CARET] = ACTIONS(75), + [anon_sym_BANG_LBRACK] = ACTIONS(77), + [anon_sym_LBRACK] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(81), + [anon_sym_TODO] = ACTIONS(83), + [anon_sym_WIP] = ACTIONS(83), + [anon_sym_NOTE] = ACTIONS(85), + [anon_sym_INFO] = ACTIONS(85), + [anon_sym_XXX] = ACTIONS(85), + [sym_fixme] = ACTIONS(69), + [sym__whitespace1] = ACTIONS(87), + [sym__newline] = ACTIONS(799), + [aux_sym__text_token1] = ACTIONS(91), + [sym__verbatim_begin] = ACTIONS(93), + [sym__image_description_end] = ACTIONS(143), }, - [79] = { - [sym__inline] = STATE(913), - [sym__element] = STATE(13), - [sym_emphasis] = STATE(141), - [sym_emphasis_begin] = STATE(1168), - [sym_strong] = STATE(141), - [sym_strong_begin] = STATE(1169), - [sym_superscript] = STATE(141), - [sym_superscript_begin] = STATE(1170), - [sym_subscript] = STATE(141), - [sym_subscript_begin] = STATE(1171), - [sym_highlighted] = STATE(141), - [sym_highlighted_begin] = STATE(1172), - [sym_insert] = STATE(141), - [sym_insert_begin] = STATE(1173), - [sym_delete] = STATE(141), - [sym_delete_begin] = STATE(1174), - [sym_hard_line_break] = STATE(141), - [sym__smart_punctuation] = STATE(141), - [sym_autolink] = STATE(141), - [sym_footnote_reference] = STATE(141), - [sym__image] = STATE(141), - [sym_full_reference_image] = STATE(141), - [sym_collapsed_reference_image] = STATE(141), - [sym_inline_image] = STATE(141), - [sym__image_description] = STATE(674), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(141), - [sym_full_reference_link] = STATE(141), - [sym_collapsed_reference_link] = STATE(141), - [sym_inline_link] = STATE(141), - [sym_link_text] = STATE(672), - [sym_span] = STATE(13), - [sym__bracketed_text] = STATE(655), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(141), - [sym_raw_inline] = STATE(141), - [sym_math] = STATE(141), - [sym_verbatim] = STATE(141), - [sym__todo_highlights] = STATE(141), - [sym_todo] = STATE(141), - [sym_note] = STATE(141), - [sym__symbol_fallback] = STATE(141), - [aux_sym__text] = STATE(128), - [aux_sym__inline_repeat1] = STATE(13), - [anon_sym_LBRACE_] = ACTIONS(281), - [anon_sym__] = ACTIONS(283), - [anon_sym_LBRACE_STAR] = ACTIONS(285), - [anon_sym_STAR] = ACTIONS(287), - [anon_sym_LBRACE_CARET] = ACTIONS(289), - [anon_sym_CARET] = ACTIONS(289), - [anon_sym_LBRACE_TILDE] = ACTIONS(291), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_LBRACE_EQ] = ACTIONS(293), - [anon_sym_LBRACE_PLUS] = ACTIONS(295), - [anon_sym_LBRACE_DASH] = ACTIONS(297), - [anon_sym_BSLASH] = ACTIONS(299), - [sym_quotation_marks] = ACTIONS(301), - [sym_ellipsis] = ACTIONS(301), - [sym_em_dash] = ACTIONS(301), - [sym_en_dash] = ACTIONS(303), - [sym_backslash_escape] = ACTIONS(303), - [anon_sym_LT] = ACTIONS(305), - [sym_symbol] = ACTIONS(301), - [anon_sym_LBRACK_CARET] = ACTIONS(307), - [anon_sym_BANG_LBRACK] = ACTIONS(309), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_DOLLAR] = ACTIONS(313), - [anon_sym_TODO] = ACTIONS(315), - [anon_sym_WIP] = ACTIONS(315), - [anon_sym_NOTE] = ACTIONS(317), - [anon_sym_INFO] = ACTIONS(317), - [anon_sym_XXX] = ACTIONS(317), - [sym_fixme] = ACTIONS(301), - [sym__whitespace1] = ACTIONS(319), - [sym__newline] = ACTIONS(321), - [aux_sym__text_token1] = ACTIONS(323), - [sym__verbatim_begin] = ACTIONS(325), + [71] = { + [sym__element] = STATE(71), + [sym_emphasis] = STATE(142), + [sym_emphasis_begin] = STATE(1129), + [sym_strong] = STATE(142), + [sym_strong_begin] = STATE(1128), + [sym_superscript] = STATE(142), + [sym_superscript_begin] = STATE(1127), + [sym_subscript] = STATE(142), + [sym_subscript_begin] = STATE(1120), + [sym_highlighted] = STATE(142), + [sym_highlighted_begin] = STATE(1118), + [sym_insert] = STATE(142), + [sym_insert_begin] = STATE(1117), + [sym_delete] = STATE(142), + [sym_delete_begin] = STATE(1116), + [sym_hard_line_break] = STATE(142), + [sym__smart_punctuation] = STATE(142), + [sym_autolink] = STATE(142), + [sym_footnote_reference] = STATE(142), + [sym_footnote_marker_begin] = STATE(1115), + [sym__image] = STATE(142), + [sym_full_reference_image] = STATE(142), + [sym_collapsed_reference_image] = STATE(142), + [sym_inline_image] = STATE(142), + [sym__image_description] = STATE(685), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(142), + [sym_full_reference_link] = STATE(142), + [sym_collapsed_reference_link] = STATE(142), + [sym_inline_link] = STATE(142), + [sym_link_text] = STATE(692), + [sym_span] = STATE(71), + [sym__bracketed_text] = STATE(668), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(142), + [sym_raw_inline] = STATE(142), + [sym_math] = STATE(142), + [sym_verbatim] = STATE(142), + [sym__todo_highlights] = STATE(142), + [sym_todo] = STATE(142), + [sym_note] = STATE(142), + [sym__symbol_fallback] = STATE(142), + [aux_sym__text] = STATE(130), + [aux_sym__inline_repeat1] = STATE(71), + [ts_builtin_sym_end] = ACTIONS(540), + [anon_sym_LBRACE_] = ACTIONS(801), + [anon_sym__] = ACTIONS(804), + [anon_sym_LBRACE_STAR] = ACTIONS(807), + [anon_sym_STAR] = ACTIONS(810), + [anon_sym_LBRACE_CARET] = ACTIONS(813), + [anon_sym_CARET] = ACTIONS(813), + [anon_sym_LBRACE_TILDE] = ACTIONS(816), + [anon_sym_TILDE] = ACTIONS(816), + [anon_sym_LBRACE_EQ] = ACTIONS(819), + [anon_sym_LBRACE_PLUS] = ACTIONS(822), + [anon_sym_LBRACE_DASH] = ACTIONS(825), + [anon_sym_BSLASH] = ACTIONS(828), + [sym_quotation_marks] = ACTIONS(831), + [sym_ellipsis] = ACTIONS(831), + [sym_em_dash] = ACTIONS(831), + [sym_en_dash] = ACTIONS(834), + [sym_backslash_escape] = ACTIONS(834), + [anon_sym_LT] = ACTIONS(837), + [sym_symbol] = ACTIONS(831), + [anon_sym_LBRACK_CARET] = ACTIONS(840), + [anon_sym_BANG_LBRACK] = ACTIONS(843), + [anon_sym_LBRACK] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(849), + [anon_sym_TODO] = ACTIONS(852), + [anon_sym_WIP] = ACTIONS(852), + [anon_sym_NOTE] = ACTIONS(855), + [anon_sym_INFO] = ACTIONS(855), + [anon_sym_XXX] = ACTIONS(855), + [sym_fixme] = ACTIONS(831), + [sym__whitespace1] = ACTIONS(858), + [sym__newline] = ACTIONS(861), + [aux_sym__text_token1] = ACTIONS(864), + [sym__verbatim_begin] = ACTIONS(867), }, - [80] = { - [sym__inline] = STATE(914), - [sym__element] = STATE(70), + [72] = { + [sym__element] = STATE(64), + [sym_emphasis] = STATE(135), + [sym_emphasis_begin] = STATE(1177), + [sym_strong] = STATE(135), + [sym_strong_begin] = STATE(1178), + [sym_superscript] = STATE(135), + [sym_superscript_begin] = STATE(1179), + [sym_subscript] = STATE(135), + [sym_subscript_begin] = STATE(1180), + [sym_highlighted] = STATE(135), + [sym_highlighted_begin] = STATE(1181), + [sym_insert] = STATE(135), + [sym_insert_begin] = STATE(1182), + [sym_delete] = STATE(135), + [sym_delete_begin] = STATE(1183), + [sym_hard_line_break] = STATE(135), + [sym__smart_punctuation] = STATE(135), + [sym_autolink] = STATE(135), + [sym_footnote_reference] = STATE(135), + [sym_footnote_marker_begin] = STATE(1184), + [sym__image] = STATE(135), + [sym_full_reference_image] = STATE(135), + [sym_collapsed_reference_image] = STATE(135), + [sym_inline_image] = STATE(135), + [sym__image_description] = STATE(687), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(135), + [sym_full_reference_link] = STATE(135), + [sym_collapsed_reference_link] = STATE(135), + [sym_inline_link] = STATE(135), + [sym_link_text] = STATE(684), + [sym_span] = STATE(64), + [sym__bracketed_text] = STATE(670), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(135), + [sym_raw_inline] = STATE(135), + [sym_math] = STATE(135), + [sym_verbatim] = STATE(135), + [sym__todo_highlights] = STATE(135), + [sym_todo] = STATE(135), + [sym_note] = STATE(135), + [sym__symbol_fallback] = STATE(135), + [aux_sym__text] = STATE(124), + [aux_sym__inline_repeat1] = STATE(64), + [anon_sym_LBRACE_] = ACTIONS(239), + [anon_sym__] = ACTIONS(241), + [anon_sym_LBRACE_STAR] = ACTIONS(243), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_LBRACE_CARET] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_LBRACE_TILDE] = ACTIONS(249), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_LBRACE_EQ] = ACTIONS(251), + [anon_sym_LBRACE_PLUS] = ACTIONS(253), + [anon_sym_LBRACE_DASH] = ACTIONS(255), + [anon_sym_BSLASH] = ACTIONS(257), + [sym_quotation_marks] = ACTIONS(259), + [sym_ellipsis] = ACTIONS(259), + [sym_em_dash] = ACTIONS(259), + [sym_en_dash] = ACTIONS(261), + [sym_backslash_escape] = ACTIONS(261), + [anon_sym_LT] = ACTIONS(263), + [sym_symbol] = ACTIONS(259), + [anon_sym_LBRACK_CARET] = ACTIONS(265), + [anon_sym_BANG_LBRACK] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_TODO] = ACTIONS(273), + [anon_sym_WIP] = ACTIONS(273), + [anon_sym_NOTE] = ACTIONS(275), + [anon_sym_INFO] = ACTIONS(275), + [anon_sym_XXX] = ACTIONS(275), + [sym_fixme] = ACTIONS(259), + [sym__whitespace1] = ACTIONS(277), + [sym__newline] = ACTIONS(870), + [aux_sym__text_token1] = ACTIONS(281), + [sym__verbatim_begin] = ACTIONS(283), + [sym_subscript_end] = ACTIONS(143), + }, + [73] = { + [sym__inline] = STATE(981), + [sym__element] = STATE(14), + [sym_emphasis] = STATE(133), + [sym_emphasis_begin] = STATE(1201), + [sym_strong] = STATE(133), + [sym_strong_begin] = STATE(1202), + [sym_superscript] = STATE(133), + [sym_superscript_begin] = STATE(1203), + [sym_subscript] = STATE(133), + [sym_subscript_begin] = STATE(1204), + [sym_highlighted] = STATE(133), + [sym_highlighted_begin] = STATE(1205), + [sym_insert] = STATE(133), + [sym_insert_begin] = STATE(1206), + [sym_delete] = STATE(133), + [sym_delete_begin] = STATE(1207), + [sym_hard_line_break] = STATE(133), + [sym__smart_punctuation] = STATE(133), + [sym_autolink] = STATE(133), + [sym_footnote_reference] = STATE(133), + [sym_footnote_marker_begin] = STATE(1208), + [sym__image] = STATE(133), + [sym_full_reference_image] = STATE(133), + [sym_collapsed_reference_image] = STATE(133), + [sym_inline_image] = STATE(133), + [sym__image_description] = STATE(688), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(133), + [sym_full_reference_link] = STATE(133), + [sym_collapsed_reference_link] = STATE(133), + [sym_inline_link] = STATE(133), + [sym_link_text] = STATE(686), + [sym_span] = STATE(14), + [sym__bracketed_text] = STATE(673), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(133), + [sym_raw_inline] = STATE(133), + [sym_math] = STATE(133), + [sym_verbatim] = STATE(133), + [sym__todo_highlights] = STATE(133), + [sym_todo] = STATE(133), + [sym_note] = STATE(133), + [sym__symbol_fallback] = STATE(133), + [aux_sym__text] = STATE(129), + [aux_sym__inline_repeat1] = STATE(14), + [anon_sym_LBRACE_] = ACTIONS(423), + [anon_sym__] = ACTIONS(425), + [anon_sym_LBRACE_STAR] = ACTIONS(427), + [anon_sym_STAR] = ACTIONS(429), + [anon_sym_LBRACE_CARET] = ACTIONS(431), + [anon_sym_CARET] = ACTIONS(431), + [anon_sym_LBRACE_TILDE] = ACTIONS(433), + [anon_sym_TILDE] = ACTIONS(433), + [anon_sym_LBRACE_EQ] = ACTIONS(435), + [anon_sym_LBRACE_PLUS] = ACTIONS(437), + [anon_sym_LBRACE_DASH] = ACTIONS(439), + [anon_sym_BSLASH] = ACTIONS(441), + [sym_quotation_marks] = ACTIONS(443), + [sym_ellipsis] = ACTIONS(443), + [sym_em_dash] = ACTIONS(443), + [sym_en_dash] = ACTIONS(445), + [sym_backslash_escape] = ACTIONS(445), + [anon_sym_LT] = ACTIONS(447), + [sym_symbol] = ACTIONS(443), + [anon_sym_LBRACK_CARET] = ACTIONS(449), + [anon_sym_BANG_LBRACK] = ACTIONS(451), + [anon_sym_LBRACK] = ACTIONS(453), + [anon_sym_DOLLAR] = ACTIONS(455), + [anon_sym_TODO] = ACTIONS(457), + [anon_sym_WIP] = ACTIONS(457), + [anon_sym_NOTE] = ACTIONS(459), + [anon_sym_INFO] = ACTIONS(459), + [anon_sym_XXX] = ACTIONS(459), + [sym_fixme] = ACTIONS(443), + [sym__whitespace1] = ACTIONS(461), + [sym__newline] = ACTIONS(469), + [aux_sym__text_token1] = ACTIONS(465), + [sym__verbatim_begin] = ACTIONS(467), + }, + [74] = { + [sym__element] = STATE(74), [sym_emphasis] = STATE(136), - [sym_emphasis_begin] = STATE(1161), + [sym_emphasis_begin] = STATE(1209), [sym_strong] = STATE(136), - [sym_strong_begin] = STATE(1162), + [sym_strong_begin] = STATE(1210), [sym_superscript] = STATE(136), - [sym_superscript_begin] = STATE(1163), + [sym_superscript_begin] = STATE(1211), [sym_subscript] = STATE(136), - [sym_subscript_begin] = STATE(1164), + [sym_subscript_begin] = STATE(1212), [sym_highlighted] = STATE(136), - [sym_highlighted_begin] = STATE(1165), + [sym_highlighted_begin] = STATE(1213), [sym_insert] = STATE(136), - [sym_insert_begin] = STATE(1166), + [sym_insert_begin] = STATE(1214), [sym_delete] = STATE(136), - [sym_delete_begin] = STATE(1167), + [sym_delete_begin] = STATE(1215), [sym_hard_line_break] = STATE(136), [sym__smart_punctuation] = STATE(136), [sym_autolink] = STATE(136), [sym_footnote_reference] = STATE(136), + [sym_footnote_marker_begin] = STATE(1216), [sym__image] = STATE(136), [sym_full_reference_image] = STATE(136), [sym_collapsed_reference_image] = STATE(136), [sym_inline_image] = STATE(136), - [sym__image_description] = STATE(690), - [sym__image_description_begin] = STATE(1103), + [sym__image_description] = STATE(682), + [sym__image_description_begin] = STATE(1114), [sym__link] = STATE(136), [sym_full_reference_link] = STATE(136), [sym_collapsed_reference_link] = STATE(136), [sym_inline_link] = STATE(136), - [sym_link_text] = STATE(691), - [sym_span] = STATE(70), - [sym__bracketed_text] = STATE(653), - [sym__bracketed_text_begin] = STATE(1102), + [sym_link_text] = STATE(675), + [sym_span] = STATE(74), + [sym__bracketed_text] = STATE(674), + [sym__bracketed_text_begin] = STATE(1113), [sym__comment_with_spaces] = STATE(136), [sym_raw_inline] = STATE(136), [sym_math] = STATE(136), @@ -11364,472 +11142,239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(136), [sym_note] = STATE(136), [sym__symbol_fallback] = STATE(136), - [aux_sym__text] = STATE(125), - [aux_sym__inline_repeat1] = STATE(70), - [anon_sym_LBRACE_] = ACTIONS(97), - [anon_sym__] = ACTIONS(99), - [anon_sym_LBRACE_STAR] = ACTIONS(101), - [anon_sym_STAR] = ACTIONS(103), - [anon_sym_LBRACE_CARET] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [anon_sym_LBRACE_TILDE] = ACTIONS(107), - [anon_sym_TILDE] = ACTIONS(107), - [anon_sym_LBRACE_EQ] = ACTIONS(109), - [anon_sym_LBRACE_PLUS] = ACTIONS(111), - [anon_sym_LBRACE_DASH] = ACTIONS(113), - [anon_sym_BSLASH] = ACTIONS(115), - [sym_quotation_marks] = ACTIONS(117), - [sym_ellipsis] = ACTIONS(117), - [sym_em_dash] = ACTIONS(117), - [sym_en_dash] = ACTIONS(119), - [sym_backslash_escape] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [sym_symbol] = ACTIONS(117), - [anon_sym_LBRACK_CARET] = ACTIONS(123), - [anon_sym_BANG_LBRACK] = ACTIONS(125), - [anon_sym_LBRACK] = ACTIONS(127), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_TODO] = ACTIONS(131), - [anon_sym_WIP] = ACTIONS(131), - [anon_sym_NOTE] = ACTIONS(133), - [anon_sym_INFO] = ACTIONS(133), - [anon_sym_XXX] = ACTIONS(133), - [sym_fixme] = ACTIONS(117), - [sym__whitespace1] = ACTIONS(135), - [sym__newline] = ACTIONS(137), - [aux_sym__text_token1] = ACTIONS(139), - [sym__verbatim_begin] = ACTIONS(141), + [aux_sym__text] = STATE(127), + [aux_sym__inline_repeat1] = STATE(74), + [anon_sym_LBRACE_] = ACTIONS(872), + [anon_sym__] = ACTIONS(875), + [anon_sym_LBRACE_STAR] = ACTIONS(878), + [anon_sym_STAR] = ACTIONS(881), + [anon_sym_LBRACE_CARET] = ACTIONS(884), + [anon_sym_CARET] = ACTIONS(884), + [anon_sym_LBRACE_TILDE] = ACTIONS(887), + [anon_sym_TILDE] = ACTIONS(887), + [anon_sym_LBRACE_EQ] = ACTIONS(890), + [anon_sym_LBRACE_PLUS] = ACTIONS(893), + [anon_sym_LBRACE_DASH] = ACTIONS(896), + [anon_sym_BSLASH] = ACTIONS(899), + [sym_quotation_marks] = ACTIONS(902), + [sym_ellipsis] = ACTIONS(902), + [sym_em_dash] = ACTIONS(902), + [sym_en_dash] = ACTIONS(905), + [sym_backslash_escape] = ACTIONS(905), + [anon_sym_LT] = ACTIONS(908), + [sym_symbol] = ACTIONS(902), + [anon_sym_LBRACK_CARET] = ACTIONS(911), + [anon_sym_BANG_LBRACK] = ACTIONS(914), + [anon_sym_LBRACK] = ACTIONS(917), + [anon_sym_RBRACK] = ACTIONS(540), + [anon_sym_DOLLAR] = ACTIONS(920), + [anon_sym_TODO] = ACTIONS(923), + [anon_sym_WIP] = ACTIONS(923), + [anon_sym_NOTE] = ACTIONS(926), + [anon_sym_INFO] = ACTIONS(926), + [anon_sym_XXX] = ACTIONS(926), + [sym_fixme] = ACTIONS(902), + [sym__whitespace1] = ACTIONS(929), + [sym__newline] = ACTIONS(932), + [aux_sym__text_token1] = ACTIONS(935), + [sym__verbatim_begin] = ACTIONS(938), }, - [81] = { - [sym__inline] = STATE(916), - [sym__element] = STATE(105), - [sym_emphasis] = STATE(140), - [sym_emphasis_begin] = STATE(1154), - [sym_strong] = STATE(140), - [sym_strong_begin] = STATE(1155), - [sym_superscript] = STATE(140), - [sym_superscript_begin] = STATE(1156), - [sym_subscript] = STATE(140), - [sym_subscript_begin] = STATE(1157), - [sym_highlighted] = STATE(140), - [sym_highlighted_begin] = STATE(1158), - [sym_insert] = STATE(140), - [sym_insert_begin] = STATE(1159), - [sym_delete] = STATE(140), - [sym_delete_begin] = STATE(1160), - [sym_hard_line_break] = STATE(140), - [sym__smart_punctuation] = STATE(140), - [sym_autolink] = STATE(140), - [sym_footnote_reference] = STATE(140), - [sym__image] = STATE(140), - [sym_full_reference_image] = STATE(140), - [sym_collapsed_reference_image] = STATE(140), - [sym_inline_image] = STATE(140), - [sym__image_description] = STATE(687), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(140), - [sym_full_reference_link] = STATE(140), - [sym_collapsed_reference_link] = STATE(140), - [sym_inline_link] = STATE(140), - [sym_link_text] = STATE(688), - [sym_span] = STATE(105), - [sym__bracketed_text] = STATE(654), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(140), - [sym_raw_inline] = STATE(140), - [sym_math] = STATE(140), - [sym_verbatim] = STATE(140), - [sym__todo_highlights] = STATE(140), - [sym_todo] = STATE(140), - [sym_note] = STATE(140), - [sym__symbol_fallback] = STATE(140), - [aux_sym__text] = STATE(131), - [aux_sym__inline_repeat1] = STATE(105), - [anon_sym_LBRACE_] = ACTIONS(327), - [anon_sym__] = ACTIONS(329), - [anon_sym_LBRACE_STAR] = ACTIONS(331), - [anon_sym_STAR] = ACTIONS(333), - [anon_sym_LBRACE_CARET] = ACTIONS(335), - [anon_sym_CARET] = ACTIONS(335), - [anon_sym_LBRACE_TILDE] = ACTIONS(337), - [anon_sym_TILDE] = ACTIONS(337), - [anon_sym_LBRACE_EQ] = ACTIONS(339), - [anon_sym_LBRACE_PLUS] = ACTIONS(341), - [anon_sym_LBRACE_DASH] = ACTIONS(343), - [anon_sym_BSLASH] = ACTIONS(345), - [sym_quotation_marks] = ACTIONS(347), - [sym_ellipsis] = ACTIONS(347), - [sym_em_dash] = ACTIONS(347), - [sym_en_dash] = ACTIONS(349), - [sym_backslash_escape] = ACTIONS(349), - [anon_sym_LT] = ACTIONS(351), - [sym_symbol] = ACTIONS(347), - [anon_sym_LBRACK_CARET] = ACTIONS(353), - [anon_sym_BANG_LBRACK] = ACTIONS(355), - [anon_sym_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [anon_sym_TODO] = ACTIONS(361), - [anon_sym_WIP] = ACTIONS(361), - [anon_sym_NOTE] = ACTIONS(363), - [anon_sym_INFO] = ACTIONS(363), - [anon_sym_XXX] = ACTIONS(363), - [sym_fixme] = ACTIONS(347), - [sym__whitespace1] = ACTIONS(365), - [sym__newline] = ACTIONS(367), - [aux_sym__text_token1] = ACTIONS(369), - [sym__verbatim_begin] = ACTIONS(371), - }, - [82] = { - [sym__inline] = STATE(1120), - [sym__element] = STATE(103), - [sym_emphasis] = STATE(139), - [sym_emphasis_begin] = STATE(1175), - [sym_strong] = STATE(139), - [sym_strong_begin] = STATE(1176), - [sym_superscript] = STATE(139), - [sym_superscript_begin] = STATE(1177), - [sym_subscript] = STATE(139), - [sym_subscript_begin] = STATE(1178), - [sym_highlighted] = STATE(139), - [sym_highlighted_begin] = STATE(1179), - [sym_insert] = STATE(139), - [sym_insert_begin] = STATE(1180), - [sym_delete] = STATE(139), - [sym_delete_begin] = STATE(1181), - [sym_hard_line_break] = STATE(139), - [sym__smart_punctuation] = STATE(139), - [sym_autolink] = STATE(139), - [sym_footnote_reference] = STATE(139), - [sym__image] = STATE(139), - [sym_full_reference_image] = STATE(139), - [sym_collapsed_reference_image] = STATE(139), - [sym_inline_image] = STATE(139), + [75] = { + [sym__inline] = STATE(983), + [sym__element] = STATE(47), + [sym_emphasis] = STATE(136), + [sym_emphasis_begin] = STATE(1209), + [sym_strong] = STATE(136), + [sym_strong_begin] = STATE(1210), + [sym_superscript] = STATE(136), + [sym_superscript_begin] = STATE(1211), + [sym_subscript] = STATE(136), + [sym_subscript_begin] = STATE(1212), + [sym_highlighted] = STATE(136), + [sym_highlighted_begin] = STATE(1213), + [sym_insert] = STATE(136), + [sym_insert_begin] = STATE(1214), + [sym_delete] = STATE(136), + [sym_delete_begin] = STATE(1215), + [sym_hard_line_break] = STATE(136), + [sym__smart_punctuation] = STATE(136), + [sym_autolink] = STATE(136), + [sym_footnote_reference] = STATE(136), + [sym_footnote_marker_begin] = STATE(1216), + [sym__image] = STATE(136), + [sym_full_reference_image] = STATE(136), + [sym_collapsed_reference_image] = STATE(136), + [sym_inline_image] = STATE(136), [sym__image_description] = STATE(682), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(139), - [sym_full_reference_link] = STATE(139), - [sym_collapsed_reference_link] = STATE(139), - [sym_inline_link] = STATE(139), - [sym_link_text] = STATE(681), - [sym_span] = STATE(103), - [sym__bracketed_text] = STATE(656), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(139), - [sym_raw_inline] = STATE(139), - [sym_math] = STATE(139), - [sym_verbatim] = STATE(139), - [sym__todo_highlights] = STATE(139), - [sym_todo] = STATE(139), - [sym_note] = STATE(139), - [sym__symbol_fallback] = STATE(139), - [aux_sym__text] = STATE(129), - [aux_sym__inline_repeat1] = STATE(103), - [anon_sym_LBRACE_] = ACTIONS(235), - [anon_sym__] = ACTIONS(237), - [anon_sym_LBRACE_STAR] = ACTIONS(239), - [anon_sym_STAR] = ACTIONS(241), - [anon_sym_LBRACE_CARET] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(243), - [anon_sym_LBRACE_TILDE] = ACTIONS(245), - [anon_sym_TILDE] = ACTIONS(245), - [anon_sym_LBRACE_EQ] = ACTIONS(247), - [anon_sym_LBRACE_PLUS] = ACTIONS(249), - [anon_sym_LBRACE_DASH] = ACTIONS(251), - [anon_sym_BSLASH] = ACTIONS(253), - [sym_quotation_marks] = ACTIONS(255), - [sym_ellipsis] = ACTIONS(255), - [sym_em_dash] = ACTIONS(255), - [sym_en_dash] = ACTIONS(257), - [sym_backslash_escape] = ACTIONS(257), - [anon_sym_LT] = ACTIONS(259), - [sym_symbol] = ACTIONS(255), - [anon_sym_LBRACK_CARET] = ACTIONS(261), - [anon_sym_BANG_LBRACK] = ACTIONS(263), - [anon_sym_LBRACK] = ACTIONS(265), - [anon_sym_DOLLAR] = ACTIONS(267), - [anon_sym_TODO] = ACTIONS(269), - [anon_sym_WIP] = ACTIONS(269), - [anon_sym_NOTE] = ACTIONS(271), - [anon_sym_INFO] = ACTIONS(271), - [anon_sym_XXX] = ACTIONS(271), - [sym_fixme] = ACTIONS(255), - [sym__whitespace1] = ACTIONS(273), - [sym__newline] = ACTIONS(275), - [aux_sym__text_token1] = ACTIONS(277), - [sym__verbatim_begin] = ACTIONS(279), - }, - [83] = { - [sym__element] = STATE(83), - [sym_emphasis] = STATE(133), - [sym_emphasis_begin] = STATE(1189), - [sym_strong] = STATE(133), - [sym_strong_begin] = STATE(1190), - [sym_superscript] = STATE(133), - [sym_superscript_begin] = STATE(1191), - [sym_subscript] = STATE(133), - [sym_subscript_begin] = STATE(1192), - [sym_highlighted] = STATE(133), - [sym_highlighted_begin] = STATE(1193), - [sym_insert] = STATE(133), - [sym_insert_begin] = STATE(1194), - [sym_delete] = STATE(133), - [sym_delete_begin] = STATE(1195), - [sym_hard_line_break] = STATE(133), - [sym__smart_punctuation] = STATE(133), - [sym_autolink] = STATE(133), - [sym_footnote_reference] = STATE(133), - [sym__image] = STATE(133), - [sym_full_reference_image] = STATE(133), - [sym_collapsed_reference_image] = STATE(133), - [sym_inline_image] = STATE(133), - [sym__image_description] = STATE(670), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(133), - [sym_full_reference_link] = STATE(133), - [sym_collapsed_reference_link] = STATE(133), - [sym_inline_link] = STATE(133), - [sym_link_text] = STATE(663), - [sym_span] = STATE(83), - [sym__bracketed_text] = STATE(662), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(133), - [sym_raw_inline] = STATE(133), - [sym_math] = STATE(133), - [sym_verbatim] = STATE(133), - [sym__todo_highlights] = STATE(133), - [sym_todo] = STATE(133), - [sym_note] = STATE(133), - [sym__symbol_fallback] = STATE(133), - [aux_sym__text] = STATE(123), - [aux_sym__inline_repeat1] = STATE(83), - [anon_sym_LBRACE_] = ACTIONS(872), - [anon_sym__] = ACTIONS(875), - [anon_sym_LBRACE_STAR] = ACTIONS(878), - [anon_sym_STAR] = ACTIONS(881), - [anon_sym_LBRACE_CARET] = ACTIONS(884), - [anon_sym_CARET] = ACTIONS(884), - [anon_sym_LBRACE_TILDE] = ACTIONS(887), - [anon_sym_TILDE] = ACTIONS(887), - [anon_sym_LBRACE_EQ] = ACTIONS(890), - [anon_sym_LBRACE_PLUS] = ACTIONS(893), - [anon_sym_LBRACE_DASH] = ACTIONS(896), - [anon_sym_BSLASH] = ACTIONS(899), - [sym_quotation_marks] = ACTIONS(902), - [sym_ellipsis] = ACTIONS(902), - [sym_em_dash] = ACTIONS(902), - [sym_en_dash] = ACTIONS(905), - [sym_backslash_escape] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(908), - [sym_symbol] = ACTIONS(902), - [anon_sym_LBRACK_CARET] = ACTIONS(911), - [anon_sym_BANG_LBRACK] = ACTIONS(914), - [anon_sym_LBRACK] = ACTIONS(917), - [anon_sym_RBRACK2] = ACTIONS(538), - [anon_sym_DOLLAR] = ACTIONS(920), - [anon_sym_TODO] = ACTIONS(923), - [anon_sym_WIP] = ACTIONS(923), - [anon_sym_NOTE] = ACTIONS(926), - [anon_sym_INFO] = ACTIONS(926), - [anon_sym_XXX] = ACTIONS(926), - [sym_fixme] = ACTIONS(902), - [sym__whitespace1] = ACTIONS(929), - [sym__newline] = ACTIONS(932), - [aux_sym__text_token1] = ACTIONS(935), - [sym__verbatim_begin] = ACTIONS(938), - }, - [84] = { - [sym__inline_without_trailing_space] = STATE(917), - [sym__element] = STATE(562), - [sym_emphasis] = STATE(142), - [sym_emphasis_begin] = STATE(1147), - [sym_strong] = STATE(142), - [sym_strong_begin] = STATE(1148), - [sym_superscript] = STATE(142), - [sym_superscript_begin] = STATE(1149), - [sym_subscript] = STATE(142), - [sym_subscript_begin] = STATE(1150), - [sym_highlighted] = STATE(142), - [sym_highlighted_begin] = STATE(1151), - [sym_insert] = STATE(142), - [sym_insert_begin] = STATE(1152), - [sym_delete] = STATE(142), - [sym_delete_begin] = STATE(1153), - [sym_hard_line_break] = STATE(142), - [sym__smart_punctuation] = STATE(142), - [sym_autolink] = STATE(142), - [sym_footnote_reference] = STATE(142), - [sym__image] = STATE(142), - [sym_full_reference_image] = STATE(142), - [sym_collapsed_reference_image] = STATE(142), - [sym_inline_image] = STATE(142), - [sym__image_description] = STATE(685), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(142), - [sym_full_reference_link] = STATE(142), - [sym_collapsed_reference_link] = STATE(142), - [sym_inline_link] = STATE(142), - [sym_link_text] = STATE(683), - [sym_span] = STATE(562), - [sym__bracketed_text] = STATE(657), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(142), - [sym_raw_inline] = STATE(142), - [sym_math] = STATE(142), - [sym_verbatim] = STATE(142), - [sym__todo_highlights] = STATE(142), - [sym_todo] = STATE(142), - [sym_note] = STATE(142), - [sym__symbol_fallback] = STATE(142), - [aux_sym__text] = STATE(126), - [aux_sym__inline_repeat1] = STATE(120), - [anon_sym_LBRACE_] = ACTIONS(373), - [anon_sym__] = ACTIONS(375), - [anon_sym_LBRACE_STAR] = ACTIONS(377), - [anon_sym_STAR] = ACTIONS(379), - [anon_sym_LBRACE_CARET] = ACTIONS(381), - [anon_sym_CARET] = ACTIONS(381), - [anon_sym_LBRACE_TILDE] = ACTIONS(383), - [anon_sym_TILDE] = ACTIONS(383), - [anon_sym_LBRACE_EQ] = ACTIONS(385), - [anon_sym_LBRACE_PLUS] = ACTIONS(387), - [anon_sym_LBRACE_DASH] = ACTIONS(389), - [anon_sym_BSLASH] = ACTIONS(391), - [sym_quotation_marks] = ACTIONS(393), - [sym_ellipsis] = ACTIONS(393), - [sym_em_dash] = ACTIONS(393), - [sym_en_dash] = ACTIONS(395), - [sym_backslash_escape] = ACTIONS(395), - [anon_sym_LT] = ACTIONS(397), - [sym_symbol] = ACTIONS(393), - [anon_sym_LBRACK_CARET] = ACTIONS(399), - [anon_sym_BANG_LBRACK] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_DOLLAR] = ACTIONS(405), - [anon_sym_TODO] = ACTIONS(407), - [anon_sym_WIP] = ACTIONS(407), - [anon_sym_NOTE] = ACTIONS(409), - [anon_sym_INFO] = ACTIONS(409), - [anon_sym_XXX] = ACTIONS(409), - [sym_fixme] = ACTIONS(393), - [sym__whitespace1] = ACTIONS(411), - [sym__newline] = ACTIONS(413), - [aux_sym__text_token1] = ACTIONS(415), - [sym__verbatim_begin] = ACTIONS(417), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(136), + [sym_full_reference_link] = STATE(136), + [sym_collapsed_reference_link] = STATE(136), + [sym_inline_link] = STATE(136), + [sym_link_text] = STATE(675), + [sym_span] = STATE(47), + [sym__bracketed_text] = STATE(674), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(136), + [sym_raw_inline] = STATE(136), + [sym_math] = STATE(136), + [sym_verbatim] = STATE(136), + [sym__todo_highlights] = STATE(136), + [sym_todo] = STATE(136), + [sym_note] = STATE(136), + [sym__symbol_fallback] = STATE(136), + [aux_sym__text] = STATE(127), + [aux_sym__inline_repeat1] = STATE(47), + [anon_sym_LBRACE_] = ACTIONS(377), + [anon_sym__] = ACTIONS(379), + [anon_sym_LBRACE_STAR] = ACTIONS(381), + [anon_sym_STAR] = ACTIONS(383), + [anon_sym_LBRACE_CARET] = ACTIONS(385), + [anon_sym_CARET] = ACTIONS(385), + [anon_sym_LBRACE_TILDE] = ACTIONS(387), + [anon_sym_TILDE] = ACTIONS(387), + [anon_sym_LBRACE_EQ] = ACTIONS(389), + [anon_sym_LBRACE_PLUS] = ACTIONS(391), + [anon_sym_LBRACE_DASH] = ACTIONS(393), + [anon_sym_BSLASH] = ACTIONS(395), + [sym_quotation_marks] = ACTIONS(397), + [sym_ellipsis] = ACTIONS(397), + [sym_em_dash] = ACTIONS(397), + [sym_en_dash] = ACTIONS(399), + [sym_backslash_escape] = ACTIONS(399), + [anon_sym_LT] = ACTIONS(401), + [sym_symbol] = ACTIONS(397), + [anon_sym_LBRACK_CARET] = ACTIONS(403), + [anon_sym_BANG_LBRACK] = ACTIONS(405), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_DOLLAR] = ACTIONS(409), + [anon_sym_TODO] = ACTIONS(411), + [anon_sym_WIP] = ACTIONS(411), + [anon_sym_NOTE] = ACTIONS(413), + [anon_sym_INFO] = ACTIONS(413), + [anon_sym_XXX] = ACTIONS(413), + [sym_fixme] = ACTIONS(397), + [sym__whitespace1] = ACTIONS(415), + [sym__newline] = ACTIONS(417), + [aux_sym__text_token1] = ACTIONS(419), + [sym__verbatim_begin] = ACTIONS(421), }, - [85] = { - [sym__inline_without_trailing_space] = STATE(919), - [sym__element] = STATE(604), - [sym_emphasis] = STATE(138), - [sym_emphasis_begin] = STATE(1140), - [sym_strong] = STATE(138), - [sym_strong_begin] = STATE(1141), - [sym_superscript] = STATE(138), - [sym_superscript_begin] = STATE(1142), - [sym_subscript] = STATE(138), - [sym_subscript_begin] = STATE(1143), - [sym_highlighted] = STATE(138), - [sym_highlighted_begin] = STATE(1144), - [sym_insert] = STATE(138), - [sym_insert_begin] = STATE(1145), - [sym_delete] = STATE(138), - [sym_delete_begin] = STATE(1146), - [sym_hard_line_break] = STATE(138), - [sym__smart_punctuation] = STATE(138), - [sym_autolink] = STATE(138), - [sym_footnote_reference] = STATE(138), - [sym__image] = STATE(138), - [sym_full_reference_image] = STATE(138), - [sym_collapsed_reference_image] = STATE(138), - [sym_inline_image] = STATE(138), - [sym__image_description] = STATE(667), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(138), - [sym_full_reference_link] = STATE(138), - [sym_collapsed_reference_link] = STATE(138), - [sym_inline_link] = STATE(138), - [sym_link_text] = STATE(689), - [sym_span] = STATE(604), - [sym__bracketed_text] = STATE(658), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(138), - [sym_raw_inline] = STATE(138), - [sym_math] = STATE(138), - [sym_verbatim] = STATE(138), - [sym__todo_highlights] = STATE(138), - [sym_todo] = STATE(138), - [sym_note] = STATE(138), - [sym__symbol_fallback] = STATE(138), + [76] = { + [sym__inline] = STATE(1143), + [sym__element] = STATE(72), + [sym_emphasis] = STATE(135), + [sym_emphasis_begin] = STATE(1177), + [sym_strong] = STATE(135), + [sym_strong_begin] = STATE(1178), + [sym_superscript] = STATE(135), + [sym_superscript_begin] = STATE(1179), + [sym_subscript] = STATE(135), + [sym_subscript_begin] = STATE(1180), + [sym_highlighted] = STATE(135), + [sym_highlighted_begin] = STATE(1181), + [sym_insert] = STATE(135), + [sym_insert_begin] = STATE(1182), + [sym_delete] = STATE(135), + [sym_delete_begin] = STATE(1183), + [sym_hard_line_break] = STATE(135), + [sym__smart_punctuation] = STATE(135), + [sym_autolink] = STATE(135), + [sym_footnote_reference] = STATE(135), + [sym_footnote_marker_begin] = STATE(1184), + [sym__image] = STATE(135), + [sym_full_reference_image] = STATE(135), + [sym_collapsed_reference_image] = STATE(135), + [sym_inline_image] = STATE(135), + [sym__image_description] = STATE(687), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(135), + [sym_full_reference_link] = STATE(135), + [sym_collapsed_reference_link] = STATE(135), + [sym_inline_link] = STATE(135), + [sym_link_text] = STATE(684), + [sym_span] = STATE(72), + [sym__bracketed_text] = STATE(670), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(135), + [sym_raw_inline] = STATE(135), + [sym_math] = STATE(135), + [sym_verbatim] = STATE(135), + [sym__todo_highlights] = STATE(135), + [sym_todo] = STATE(135), + [sym_note] = STATE(135), + [sym__symbol_fallback] = STATE(135), [aux_sym__text] = STATE(124), - [aux_sym__inline_repeat1] = STATE(118), - [anon_sym_LBRACE_] = ACTIONS(419), - [anon_sym__] = ACTIONS(421), - [anon_sym_LBRACE_STAR] = ACTIONS(423), - [anon_sym_STAR] = ACTIONS(425), - [anon_sym_LBRACE_CARET] = ACTIONS(427), - [anon_sym_CARET] = ACTIONS(427), - [anon_sym_LBRACE_TILDE] = ACTIONS(429), - [anon_sym_TILDE] = ACTIONS(429), - [anon_sym_LBRACE_EQ] = ACTIONS(431), - [anon_sym_LBRACE_PLUS] = ACTIONS(433), - [anon_sym_LBRACE_DASH] = ACTIONS(435), - [anon_sym_BSLASH] = ACTIONS(437), - [sym_quotation_marks] = ACTIONS(439), - [sym_ellipsis] = ACTIONS(439), - [sym_em_dash] = ACTIONS(439), - [sym_en_dash] = ACTIONS(441), - [sym_backslash_escape] = ACTIONS(441), - [anon_sym_LT] = ACTIONS(443), - [sym_symbol] = ACTIONS(439), - [anon_sym_LBRACK_CARET] = ACTIONS(445), - [anon_sym_BANG_LBRACK] = ACTIONS(447), - [anon_sym_LBRACK] = ACTIONS(449), - [anon_sym_DOLLAR] = ACTIONS(451), - [anon_sym_TODO] = ACTIONS(453), - [anon_sym_WIP] = ACTIONS(453), - [anon_sym_NOTE] = ACTIONS(455), - [anon_sym_INFO] = ACTIONS(455), - [anon_sym_XXX] = ACTIONS(455), - [sym_fixme] = ACTIONS(439), - [sym__whitespace1] = ACTIONS(457), - [sym__newline] = ACTIONS(459), - [aux_sym__text_token1] = ACTIONS(461), - [sym__verbatim_begin] = ACTIONS(463), + [aux_sym__inline_repeat1] = STATE(72), + [anon_sym_LBRACE_] = ACTIONS(239), + [anon_sym__] = ACTIONS(241), + [anon_sym_LBRACE_STAR] = ACTIONS(243), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_LBRACE_CARET] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_LBRACE_TILDE] = ACTIONS(249), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_LBRACE_EQ] = ACTIONS(251), + [anon_sym_LBRACE_PLUS] = ACTIONS(253), + [anon_sym_LBRACE_DASH] = ACTIONS(255), + [anon_sym_BSLASH] = ACTIONS(257), + [sym_quotation_marks] = ACTIONS(259), + [sym_ellipsis] = ACTIONS(259), + [sym_em_dash] = ACTIONS(259), + [sym_en_dash] = ACTIONS(261), + [sym_backslash_escape] = ACTIONS(261), + [anon_sym_LT] = ACTIONS(263), + [sym_symbol] = ACTIONS(259), + [anon_sym_LBRACK_CARET] = ACTIONS(265), + [anon_sym_BANG_LBRACK] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_TODO] = ACTIONS(273), + [anon_sym_WIP] = ACTIONS(273), + [anon_sym_NOTE] = ACTIONS(275), + [anon_sym_INFO] = ACTIONS(275), + [anon_sym_XXX] = ACTIONS(275), + [sym_fixme] = ACTIONS(259), + [sym__whitespace1] = ACTIONS(277), + [sym__newline] = ACTIONS(279), + [aux_sym__text_token1] = ACTIONS(281), + [sym__verbatim_begin] = ACTIONS(283), }, - [86] = { - [sym__inline] = STATE(946), - [sym__element] = STATE(65), + [77] = { + [sym__inline] = STATE(939), + [sym__element] = STATE(14), [sym_emphasis] = STATE(133), - [sym_emphasis_begin] = STATE(1189), + [sym_emphasis_begin] = STATE(1201), [sym_strong] = STATE(133), - [sym_strong_begin] = STATE(1190), + [sym_strong_begin] = STATE(1202), [sym_superscript] = STATE(133), - [sym_superscript_begin] = STATE(1191), + [sym_superscript_begin] = STATE(1203), [sym_subscript] = STATE(133), - [sym_subscript_begin] = STATE(1192), + [sym_subscript_begin] = STATE(1204), [sym_highlighted] = STATE(133), - [sym_highlighted_begin] = STATE(1193), + [sym_highlighted_begin] = STATE(1205), [sym_insert] = STATE(133), - [sym_insert_begin] = STATE(1194), + [sym_insert_begin] = STATE(1206), [sym_delete] = STATE(133), - [sym_delete_begin] = STATE(1195), + [sym_delete_begin] = STATE(1207), [sym_hard_line_break] = STATE(133), [sym__smart_punctuation] = STATE(133), [sym_autolink] = STATE(133), [sym_footnote_reference] = STATE(133), + [sym_footnote_marker_begin] = STATE(1208), [sym__image] = STATE(133), [sym_full_reference_image] = STATE(133), [sym_collapsed_reference_image] = STATE(133), [sym_inline_image] = STATE(133), - [sym__image_description] = STATE(670), - [sym__image_description_begin] = STATE(1103), + [sym__image_description] = STATE(688), + [sym__image_description_begin] = STATE(1114), [sym__link] = STATE(133), [sym_full_reference_link] = STATE(133), [sym_collapsed_reference_link] = STATE(133), [sym_inline_link] = STATE(133), - [sym_link_text] = STATE(663), - [sym_span] = STATE(65), - [sym__bracketed_text] = STATE(662), - [sym__bracketed_text_begin] = STATE(1102), + [sym_link_text] = STATE(686), + [sym_span] = STATE(14), + [sym__bracketed_text] = STATE(673), + [sym__bracketed_text_begin] = STATE(1113), [sym__comment_with_spaces] = STATE(133), [sym_raw_inline] = STATE(133), [sym_math] = STATE(133), @@ -11838,324 +11383,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(133), [sym_note] = STATE(133), [sym__symbol_fallback] = STATE(133), - [aux_sym__text] = STATE(123), - [aux_sym__inline_repeat1] = STATE(65), - [anon_sym_LBRACE_] = ACTIONS(143), - [anon_sym__] = ACTIONS(145), - [anon_sym_LBRACE_STAR] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_LBRACE_CARET] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(151), - [anon_sym_LBRACE_TILDE] = ACTIONS(153), - [anon_sym_TILDE] = ACTIONS(153), - [anon_sym_LBRACE_EQ] = ACTIONS(155), - [anon_sym_LBRACE_PLUS] = ACTIONS(157), - [anon_sym_LBRACE_DASH] = ACTIONS(159), - [anon_sym_BSLASH] = ACTIONS(161), - [sym_quotation_marks] = ACTIONS(163), - [sym_ellipsis] = ACTIONS(163), - [sym_em_dash] = ACTIONS(163), - [sym_en_dash] = ACTIONS(165), - [sym_backslash_escape] = ACTIONS(165), - [anon_sym_LT] = ACTIONS(167), - [sym_symbol] = ACTIONS(163), - [anon_sym_LBRACK_CARET] = ACTIONS(169), - [anon_sym_BANG_LBRACK] = ACTIONS(171), - [anon_sym_LBRACK] = ACTIONS(173), - [anon_sym_DOLLAR] = ACTIONS(175), - [anon_sym_TODO] = ACTIONS(177), - [anon_sym_WIP] = ACTIONS(177), - [anon_sym_NOTE] = ACTIONS(179), - [anon_sym_INFO] = ACTIONS(179), - [anon_sym_XXX] = ACTIONS(179), - [sym_fixme] = ACTIONS(163), - [sym__whitespace1] = ACTIONS(181), - [sym__newline] = ACTIONS(183), - [aux_sym__text_token1] = ACTIONS(185), - [sym__verbatim_begin] = ACTIONS(187), + [aux_sym__text] = STATE(129), + [aux_sym__inline_repeat1] = STATE(14), + [anon_sym_LBRACE_] = ACTIONS(423), + [anon_sym__] = ACTIONS(425), + [anon_sym_LBRACE_STAR] = ACTIONS(427), + [anon_sym_STAR] = ACTIONS(429), + [anon_sym_LBRACE_CARET] = ACTIONS(431), + [anon_sym_CARET] = ACTIONS(431), + [anon_sym_LBRACE_TILDE] = ACTIONS(433), + [anon_sym_TILDE] = ACTIONS(433), + [anon_sym_LBRACE_EQ] = ACTIONS(435), + [anon_sym_LBRACE_PLUS] = ACTIONS(437), + [anon_sym_LBRACE_DASH] = ACTIONS(439), + [anon_sym_BSLASH] = ACTIONS(441), + [sym_quotation_marks] = ACTIONS(443), + [sym_ellipsis] = ACTIONS(443), + [sym_em_dash] = ACTIONS(443), + [sym_en_dash] = ACTIONS(445), + [sym_backslash_escape] = ACTIONS(445), + [anon_sym_LT] = ACTIONS(447), + [sym_symbol] = ACTIONS(443), + [anon_sym_LBRACK_CARET] = ACTIONS(449), + [anon_sym_BANG_LBRACK] = ACTIONS(451), + [anon_sym_LBRACK] = ACTIONS(453), + [anon_sym_DOLLAR] = ACTIONS(455), + [anon_sym_TODO] = ACTIONS(457), + [anon_sym_WIP] = ACTIONS(457), + [anon_sym_NOTE] = ACTIONS(459), + [anon_sym_INFO] = ACTIONS(459), + [anon_sym_XXX] = ACTIONS(459), + [sym_fixme] = ACTIONS(443), + [sym__whitespace1] = ACTIONS(461), + [sym__newline] = ACTIONS(469), + [aux_sym__text_token1] = ACTIONS(465), + [sym__verbatim_begin] = ACTIONS(467), }, - [87] = { - [sym__inline] = STATE(947), - [sym__element] = STATE(21), - [sym_emphasis] = STATE(134), - [sym_emphasis_begin] = STATE(1182), - [sym_strong] = STATE(134), - [sym_strong_begin] = STATE(1183), - [sym_superscript] = STATE(134), - [sym_superscript_begin] = STATE(1184), - [sym_subscript] = STATE(134), - [sym_subscript_begin] = STATE(1185), - [sym_highlighted] = STATE(134), - [sym_highlighted_begin] = STATE(1186), - [sym_insert] = STATE(134), - [sym_insert_begin] = STATE(1187), - [sym_delete] = STATE(134), - [sym_delete_begin] = STATE(1188), - [sym_hard_line_break] = STATE(134), - [sym__smart_punctuation] = STATE(134), - [sym_autolink] = STATE(134), - [sym_footnote_reference] = STATE(134), - [sym__image] = STATE(134), - [sym_full_reference_image] = STATE(134), - [sym_collapsed_reference_image] = STATE(134), - [sym_inline_image] = STATE(134), - [sym__image_description] = STATE(677), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(134), - [sym_full_reference_link] = STATE(134), - [sym_collapsed_reference_link] = STATE(134), - [sym_inline_link] = STATE(134), - [sym_link_text] = STATE(675), - [sym_span] = STATE(21), - [sym__bracketed_text] = STATE(660), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(134), - [sym_raw_inline] = STATE(134), - [sym_math] = STATE(134), - [sym_verbatim] = STATE(134), - [sym__todo_highlights] = STATE(134), - [sym_todo] = STATE(134), - [sym_note] = STATE(134), - [sym__symbol_fallback] = STATE(134), - [aux_sym__text] = STATE(127), - [aux_sym__inline_repeat1] = STATE(21), - [anon_sym_LBRACE_] = ACTIONS(189), - [anon_sym__] = ACTIONS(191), - [anon_sym_LBRACE_STAR] = ACTIONS(193), - [anon_sym_STAR] = ACTIONS(195), - [anon_sym_LBRACE_CARET] = ACTIONS(197), - [anon_sym_CARET] = ACTIONS(197), - [anon_sym_LBRACE_TILDE] = ACTIONS(199), - [anon_sym_TILDE] = ACTIONS(199), - [anon_sym_LBRACE_EQ] = ACTIONS(201), - [anon_sym_LBRACE_PLUS] = ACTIONS(203), - [anon_sym_LBRACE_DASH] = ACTIONS(205), - [anon_sym_BSLASH] = ACTIONS(207), - [sym_quotation_marks] = ACTIONS(209), - [sym_ellipsis] = ACTIONS(209), - [sym_em_dash] = ACTIONS(209), - [sym_en_dash] = ACTIONS(211), - [sym_backslash_escape] = ACTIONS(211), - [anon_sym_LT] = ACTIONS(213), - [sym_symbol] = ACTIONS(209), - [anon_sym_LBRACK_CARET] = ACTIONS(215), - [anon_sym_BANG_LBRACK] = ACTIONS(217), - [anon_sym_LBRACK] = ACTIONS(219), - [anon_sym_DOLLAR] = ACTIONS(221), - [anon_sym_TODO] = ACTIONS(223), - [anon_sym_WIP] = ACTIONS(223), - [anon_sym_NOTE] = ACTIONS(225), - [anon_sym_INFO] = ACTIONS(225), - [anon_sym_XXX] = ACTIONS(225), - [sym_fixme] = ACTIONS(209), - [sym__whitespace1] = ACTIONS(227), - [sym__newline] = ACTIONS(229), - [aux_sym__text_token1] = ACTIONS(231), - [sym__verbatim_begin] = ACTIONS(233), - }, - [88] = { - [sym__inline] = STATE(949), - [sym__element] = STATE(103), - [sym_emphasis] = STATE(139), - [sym_emphasis_begin] = STATE(1175), - [sym_strong] = STATE(139), - [sym_strong_begin] = STATE(1176), - [sym_superscript] = STATE(139), - [sym_superscript_begin] = STATE(1177), - [sym_subscript] = STATE(139), - [sym_subscript_begin] = STATE(1178), - [sym_highlighted] = STATE(139), - [sym_highlighted_begin] = STATE(1179), - [sym_insert] = STATE(139), - [sym_insert_begin] = STATE(1180), - [sym_delete] = STATE(139), - [sym_delete_begin] = STATE(1181), - [sym_hard_line_break] = STATE(139), - [sym__smart_punctuation] = STATE(139), - [sym_autolink] = STATE(139), - [sym_footnote_reference] = STATE(139), - [sym__image] = STATE(139), - [sym_full_reference_image] = STATE(139), - [sym_collapsed_reference_image] = STATE(139), - [sym_inline_image] = STATE(139), - [sym__image_description] = STATE(682), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(139), - [sym_full_reference_link] = STATE(139), - [sym_collapsed_reference_link] = STATE(139), - [sym_inline_link] = STATE(139), - [sym_link_text] = STATE(681), - [sym_span] = STATE(103), - [sym__bracketed_text] = STATE(656), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(139), - [sym_raw_inline] = STATE(139), - [sym_math] = STATE(139), - [sym_verbatim] = STATE(139), - [sym__todo_highlights] = STATE(139), - [sym_todo] = STATE(139), - [sym_note] = STATE(139), - [sym__symbol_fallback] = STATE(139), - [aux_sym__text] = STATE(129), - [aux_sym__inline_repeat1] = STATE(103), - [anon_sym_LBRACE_] = ACTIONS(235), - [anon_sym__] = ACTIONS(237), - [anon_sym_LBRACE_STAR] = ACTIONS(239), - [anon_sym_STAR] = ACTIONS(241), - [anon_sym_LBRACE_CARET] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(243), - [anon_sym_LBRACE_TILDE] = ACTIONS(245), - [anon_sym_TILDE] = ACTIONS(245), - [anon_sym_LBRACE_EQ] = ACTIONS(247), - [anon_sym_LBRACE_PLUS] = ACTIONS(249), - [anon_sym_LBRACE_DASH] = ACTIONS(251), - [anon_sym_BSLASH] = ACTIONS(253), - [sym_quotation_marks] = ACTIONS(255), - [sym_ellipsis] = ACTIONS(255), - [sym_em_dash] = ACTIONS(255), - [sym_en_dash] = ACTIONS(257), - [sym_backslash_escape] = ACTIONS(257), - [anon_sym_LT] = ACTIONS(259), - [sym_symbol] = ACTIONS(255), - [anon_sym_LBRACK_CARET] = ACTIONS(261), - [anon_sym_BANG_LBRACK] = ACTIONS(263), - [anon_sym_LBRACK] = ACTIONS(265), - [anon_sym_DOLLAR] = ACTIONS(267), - [anon_sym_TODO] = ACTIONS(269), - [anon_sym_WIP] = ACTIONS(269), - [anon_sym_NOTE] = ACTIONS(271), - [anon_sym_INFO] = ACTIONS(271), - [anon_sym_XXX] = ACTIONS(271), - [sym_fixme] = ACTIONS(255), - [sym__whitespace1] = ACTIONS(273), - [sym__newline] = ACTIONS(275), - [aux_sym__text_token1] = ACTIONS(277), - [sym__verbatim_begin] = ACTIONS(279), - }, - [89] = { - [sym__inline] = STATE(950), - [sym__element] = STATE(13), - [sym_emphasis] = STATE(141), - [sym_emphasis_begin] = STATE(1168), - [sym_strong] = STATE(141), - [sym_strong_begin] = STATE(1169), - [sym_superscript] = STATE(141), - [sym_superscript_begin] = STATE(1170), - [sym_subscript] = STATE(141), - [sym_subscript_begin] = STATE(1171), - [sym_highlighted] = STATE(141), - [sym_highlighted_begin] = STATE(1172), - [sym_insert] = STATE(141), - [sym_insert_begin] = STATE(1173), - [sym_delete] = STATE(141), - [sym_delete_begin] = STATE(1174), - [sym_hard_line_break] = STATE(141), - [sym__smart_punctuation] = STATE(141), - [sym_autolink] = STATE(141), - [sym_footnote_reference] = STATE(141), - [sym__image] = STATE(141), - [sym_full_reference_image] = STATE(141), - [sym_collapsed_reference_image] = STATE(141), - [sym_inline_image] = STATE(141), - [sym__image_description] = STATE(674), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(141), - [sym_full_reference_link] = STATE(141), - [sym_collapsed_reference_link] = STATE(141), - [sym_inline_link] = STATE(141), - [sym_link_text] = STATE(672), - [sym_span] = STATE(13), - [sym__bracketed_text] = STATE(655), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(141), - [sym_raw_inline] = STATE(141), - [sym_math] = STATE(141), - [sym_verbatim] = STATE(141), - [sym__todo_highlights] = STATE(141), - [sym_todo] = STATE(141), - [sym_note] = STATE(141), - [sym__symbol_fallback] = STATE(141), - [aux_sym__text] = STATE(128), - [aux_sym__inline_repeat1] = STATE(13), - [anon_sym_LBRACE_] = ACTIONS(281), - [anon_sym__] = ACTIONS(283), - [anon_sym_LBRACE_STAR] = ACTIONS(285), - [anon_sym_STAR] = ACTIONS(287), - [anon_sym_LBRACE_CARET] = ACTIONS(289), - [anon_sym_CARET] = ACTIONS(289), - [anon_sym_LBRACE_TILDE] = ACTIONS(291), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_LBRACE_EQ] = ACTIONS(293), - [anon_sym_LBRACE_PLUS] = ACTIONS(295), - [anon_sym_LBRACE_DASH] = ACTIONS(297), - [anon_sym_BSLASH] = ACTIONS(299), - [sym_quotation_marks] = ACTIONS(301), - [sym_ellipsis] = ACTIONS(301), - [sym_em_dash] = ACTIONS(301), - [sym_en_dash] = ACTIONS(303), - [sym_backslash_escape] = ACTIONS(303), - [anon_sym_LT] = ACTIONS(305), - [sym_symbol] = ACTIONS(301), - [anon_sym_LBRACK_CARET] = ACTIONS(307), - [anon_sym_BANG_LBRACK] = ACTIONS(309), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_DOLLAR] = ACTIONS(313), - [anon_sym_TODO] = ACTIONS(315), - [anon_sym_WIP] = ACTIONS(315), - [anon_sym_NOTE] = ACTIONS(317), - [anon_sym_INFO] = ACTIONS(317), - [anon_sym_XXX] = ACTIONS(317), - [sym_fixme] = ACTIONS(301), - [sym__whitespace1] = ACTIONS(319), - [sym__newline] = ACTIONS(321), - [aux_sym__text_token1] = ACTIONS(323), - [sym__verbatim_begin] = ACTIONS(325), - }, - [90] = { - [sym__inline] = STATE(951), - [sym__element] = STATE(70), - [sym_emphasis] = STATE(136), - [sym_emphasis_begin] = STATE(1161), - [sym_strong] = STATE(136), - [sym_strong_begin] = STATE(1162), - [sym_superscript] = STATE(136), - [sym_superscript_begin] = STATE(1163), - [sym_subscript] = STATE(136), - [sym_subscript_begin] = STATE(1164), - [sym_highlighted] = STATE(136), - [sym_highlighted_begin] = STATE(1165), - [sym_insert] = STATE(136), - [sym_insert_begin] = STATE(1166), - [sym_delete] = STATE(136), - [sym_delete_begin] = STATE(1167), - [sym_hard_line_break] = STATE(136), - [sym__smart_punctuation] = STATE(136), - [sym_autolink] = STATE(136), - [sym_footnote_reference] = STATE(136), - [sym__image] = STATE(136), - [sym_full_reference_image] = STATE(136), - [sym_collapsed_reference_image] = STATE(136), - [sym_inline_image] = STATE(136), - [sym__image_description] = STATE(690), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(136), - [sym_full_reference_link] = STATE(136), - [sym_collapsed_reference_link] = STATE(136), - [sym_inline_link] = STATE(136), - [sym_link_text] = STATE(691), - [sym_span] = STATE(70), - [sym__bracketed_text] = STATE(653), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(136), - [sym_raw_inline] = STATE(136), - [sym_math] = STATE(136), - [sym_verbatim] = STATE(136), - [sym__todo_highlights] = STATE(136), - [sym_todo] = STATE(136), - [sym_note] = STATE(136), - [sym__symbol_fallback] = STATE(136), - [aux_sym__text] = STATE(125), - [aux_sym__inline_repeat1] = STATE(70), + [78] = { + [sym__inline] = STATE(952), + [sym__element] = STATE(3), + [sym_emphasis] = STATE(137), + [sym_emphasis_begin] = STATE(1193), + [sym_strong] = STATE(137), + [sym_strong_begin] = STATE(1194), + [sym_superscript] = STATE(137), + [sym_superscript_begin] = STATE(1195), + [sym_subscript] = STATE(137), + [sym_subscript_begin] = STATE(1196), + [sym_highlighted] = STATE(137), + [sym_highlighted_begin] = STATE(1197), + [sym_insert] = STATE(137), + [sym_insert_begin] = STATE(1198), + [sym_delete] = STATE(137), + [sym_delete_begin] = STATE(1199), + [sym_hard_line_break] = STATE(137), + [sym__smart_punctuation] = STATE(137), + [sym_autolink] = STATE(137), + [sym_footnote_reference] = STATE(137), + [sym_footnote_marker_begin] = STATE(1200), + [sym__image] = STATE(137), + [sym_full_reference_image] = STATE(137), + [sym_collapsed_reference_image] = STATE(137), + [sym_inline_image] = STATE(137), + [sym__image_description] = STATE(694), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(137), + [sym_full_reference_link] = STATE(137), + [sym_collapsed_reference_link] = STATE(137), + [sym_inline_link] = STATE(137), + [sym_link_text] = STATE(693), + [sym_span] = STATE(3), + [sym__bracketed_text] = STATE(672), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(137), + [sym_raw_inline] = STATE(137), + [sym_math] = STATE(137), + [sym_verbatim] = STATE(137), + [sym__todo_highlights] = STATE(137), + [sym_todo] = STATE(137), + [sym_note] = STATE(137), + [sym__symbol_fallback] = STATE(137), + [aux_sym__text] = STATE(131), + [aux_sym__inline_repeat1] = STATE(3), [anon_sym_LBRACE_] = ACTIONS(97), [anon_sym__] = ACTIONS(99), [anon_sym_LBRACE_STAR] = ACTIONS(101), @@ -12186,45 +11495,206 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_XXX] = ACTIONS(133), [sym_fixme] = ACTIONS(117), [sym__whitespace1] = ACTIONS(135), - [sym__newline] = ACTIONS(137), + [sym__newline] = ACTIONS(145), [aux_sym__text_token1] = ACTIONS(139), [sym__verbatim_begin] = ACTIONS(141), }, - [91] = { - [sym__inline] = STATE(952), - [sym__element] = STATE(105), + [79] = { + [sym__inline] = STATE(954), + [sym__element] = STATE(107), [sym_emphasis] = STATE(140), - [sym_emphasis_begin] = STATE(1154), + [sym_emphasis_begin] = STATE(1185), [sym_strong] = STATE(140), - [sym_strong_begin] = STATE(1155), + [sym_strong_begin] = STATE(1186), [sym_superscript] = STATE(140), - [sym_superscript_begin] = STATE(1156), + [sym_superscript_begin] = STATE(1187), [sym_subscript] = STATE(140), - [sym_subscript_begin] = STATE(1157), + [sym_subscript_begin] = STATE(1188), [sym_highlighted] = STATE(140), - [sym_highlighted_begin] = STATE(1158), + [sym_highlighted_begin] = STATE(1189), [sym_insert] = STATE(140), - [sym_insert_begin] = STATE(1159), + [sym_insert_begin] = STATE(1190), [sym_delete] = STATE(140), - [sym_delete_begin] = STATE(1160), + [sym_delete_begin] = STATE(1191), [sym_hard_line_break] = STATE(140), [sym__smart_punctuation] = STATE(140), [sym_autolink] = STATE(140), [sym_footnote_reference] = STATE(140), + [sym_footnote_marker_begin] = STATE(1192), [sym__image] = STATE(140), [sym_full_reference_image] = STATE(140), [sym_collapsed_reference_image] = STATE(140), [sym_inline_image] = STATE(140), + [sym__image_description] = STATE(700), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(140), + [sym_full_reference_link] = STATE(140), + [sym_collapsed_reference_link] = STATE(140), + [sym_inline_link] = STATE(140), + [sym_link_text] = STATE(699), + [sym_span] = STATE(107), + [sym__bracketed_text] = STATE(666), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(140), + [sym_raw_inline] = STATE(140), + [sym_math] = STATE(140), + [sym_verbatim] = STATE(140), + [sym__todo_highlights] = STATE(140), + [sym_todo] = STATE(140), + [sym_note] = STATE(140), + [sym__symbol_fallback] = STATE(140), + [aux_sym__text] = STATE(125), + [aux_sym__inline_repeat1] = STATE(107), + [anon_sym_LBRACE_] = ACTIONS(193), + [anon_sym__] = ACTIONS(195), + [anon_sym_LBRACE_STAR] = ACTIONS(197), + [anon_sym_STAR] = ACTIONS(199), + [anon_sym_LBRACE_CARET] = ACTIONS(201), + [anon_sym_CARET] = ACTIONS(201), + [anon_sym_LBRACE_TILDE] = ACTIONS(203), + [anon_sym_TILDE] = ACTIONS(203), + [anon_sym_LBRACE_EQ] = ACTIONS(205), + [anon_sym_LBRACE_PLUS] = ACTIONS(207), + [anon_sym_LBRACE_DASH] = ACTIONS(209), + [anon_sym_BSLASH] = ACTIONS(211), + [sym_quotation_marks] = ACTIONS(213), + [sym_ellipsis] = ACTIONS(213), + [sym_em_dash] = ACTIONS(213), + [sym_en_dash] = ACTIONS(215), + [sym_backslash_escape] = ACTIONS(215), + [anon_sym_LT] = ACTIONS(217), + [sym_symbol] = ACTIONS(213), + [anon_sym_LBRACK_CARET] = ACTIONS(219), + [anon_sym_BANG_LBRACK] = ACTIONS(221), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_DOLLAR] = ACTIONS(225), + [anon_sym_TODO] = ACTIONS(227), + [anon_sym_WIP] = ACTIONS(227), + [anon_sym_NOTE] = ACTIONS(229), + [anon_sym_INFO] = ACTIONS(229), + [anon_sym_XXX] = ACTIONS(229), + [sym_fixme] = ACTIONS(213), + [sym__whitespace1] = ACTIONS(231), + [sym__newline] = ACTIONS(233), + [aux_sym__text_token1] = ACTIONS(235), + [sym__verbatim_begin] = ACTIONS(237), + }, + [80] = { + [sym__inline] = STATE(955), + [sym__element] = STATE(72), + [sym_emphasis] = STATE(135), + [sym_emphasis_begin] = STATE(1177), + [sym_strong] = STATE(135), + [sym_strong_begin] = STATE(1178), + [sym_superscript] = STATE(135), + [sym_superscript_begin] = STATE(1179), + [sym_subscript] = STATE(135), + [sym_subscript_begin] = STATE(1180), + [sym_highlighted] = STATE(135), + [sym_highlighted_begin] = STATE(1181), + [sym_insert] = STATE(135), + [sym_insert_begin] = STATE(1182), + [sym_delete] = STATE(135), + [sym_delete_begin] = STATE(1183), + [sym_hard_line_break] = STATE(135), + [sym__smart_punctuation] = STATE(135), + [sym_autolink] = STATE(135), + [sym_footnote_reference] = STATE(135), + [sym_footnote_marker_begin] = STATE(1184), + [sym__image] = STATE(135), + [sym_full_reference_image] = STATE(135), + [sym_collapsed_reference_image] = STATE(135), + [sym_inline_image] = STATE(135), [sym__image_description] = STATE(687), - [sym__image_description_begin] = STATE(1103), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(135), + [sym_full_reference_link] = STATE(135), + [sym_collapsed_reference_link] = STATE(135), + [sym_inline_link] = STATE(135), + [sym_link_text] = STATE(684), + [sym_span] = STATE(72), + [sym__bracketed_text] = STATE(670), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(135), + [sym_raw_inline] = STATE(135), + [sym_math] = STATE(135), + [sym_verbatim] = STATE(135), + [sym__todo_highlights] = STATE(135), + [sym_todo] = STATE(135), + [sym_note] = STATE(135), + [sym__symbol_fallback] = STATE(135), + [aux_sym__text] = STATE(124), + [aux_sym__inline_repeat1] = STATE(72), + [anon_sym_LBRACE_] = ACTIONS(239), + [anon_sym__] = ACTIONS(241), + [anon_sym_LBRACE_STAR] = ACTIONS(243), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_LBRACE_CARET] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_LBRACE_TILDE] = ACTIONS(249), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_LBRACE_EQ] = ACTIONS(251), + [anon_sym_LBRACE_PLUS] = ACTIONS(253), + [anon_sym_LBRACE_DASH] = ACTIONS(255), + [anon_sym_BSLASH] = ACTIONS(257), + [sym_quotation_marks] = ACTIONS(259), + [sym_ellipsis] = ACTIONS(259), + [sym_em_dash] = ACTIONS(259), + [sym_en_dash] = ACTIONS(261), + [sym_backslash_escape] = ACTIONS(261), + [anon_sym_LT] = ACTIONS(263), + [sym_symbol] = ACTIONS(259), + [anon_sym_LBRACK_CARET] = ACTIONS(265), + [anon_sym_BANG_LBRACK] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_TODO] = ACTIONS(273), + [anon_sym_WIP] = ACTIONS(273), + [anon_sym_NOTE] = ACTIONS(275), + [anon_sym_INFO] = ACTIONS(275), + [anon_sym_XXX] = ACTIONS(275), + [sym_fixme] = ACTIONS(259), + [sym__whitespace1] = ACTIONS(277), + [sym__newline] = ACTIONS(279), + [aux_sym__text_token1] = ACTIONS(281), + [sym__verbatim_begin] = ACTIONS(283), + }, + [81] = { + [sym__inline] = STATE(1141), + [sym__element] = STATE(107), + [sym_emphasis] = STATE(140), + [sym_emphasis_begin] = STATE(1185), + [sym_strong] = STATE(140), + [sym_strong_begin] = STATE(1186), + [sym_superscript] = STATE(140), + [sym_superscript_begin] = STATE(1187), + [sym_subscript] = STATE(140), + [sym_subscript_begin] = STATE(1188), + [sym_highlighted] = STATE(140), + [sym_highlighted_begin] = STATE(1189), + [sym_insert] = STATE(140), + [sym_insert_begin] = STATE(1190), + [sym_delete] = STATE(140), + [sym_delete_begin] = STATE(1191), + [sym_hard_line_break] = STATE(140), + [sym__smart_punctuation] = STATE(140), + [sym_autolink] = STATE(140), + [sym_footnote_reference] = STATE(140), + [sym_footnote_marker_begin] = STATE(1192), + [sym__image] = STATE(140), + [sym_full_reference_image] = STATE(140), + [sym_collapsed_reference_image] = STATE(140), + [sym_inline_image] = STATE(140), + [sym__image_description] = STATE(700), + [sym__image_description_begin] = STATE(1114), [sym__link] = STATE(140), [sym_full_reference_link] = STATE(140), [sym_collapsed_reference_link] = STATE(140), [sym_inline_link] = STATE(140), - [sym_link_text] = STATE(688), - [sym_span] = STATE(105), - [sym__bracketed_text] = STATE(654), - [sym__bracketed_text_begin] = STATE(1102), + [sym_link_text] = STATE(699), + [sym_span] = STATE(107), + [sym__bracketed_text] = STATE(666), + [sym__bracketed_text_begin] = STATE(1113), [sym__comment_with_spaces] = STATE(140), [sym_raw_inline] = STATE(140), [sym_math] = STATE(140), @@ -12233,235 +11703,238 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(140), [sym_note] = STATE(140), [sym__symbol_fallback] = STATE(140), - [aux_sym__text] = STATE(131), - [aux_sym__inline_repeat1] = STATE(105), - [anon_sym_LBRACE_] = ACTIONS(327), - [anon_sym__] = ACTIONS(329), - [anon_sym_LBRACE_STAR] = ACTIONS(331), - [anon_sym_STAR] = ACTIONS(333), - [anon_sym_LBRACE_CARET] = ACTIONS(335), - [anon_sym_CARET] = ACTIONS(335), - [anon_sym_LBRACE_TILDE] = ACTIONS(337), - [anon_sym_TILDE] = ACTIONS(337), - [anon_sym_LBRACE_EQ] = ACTIONS(339), - [anon_sym_LBRACE_PLUS] = ACTIONS(341), - [anon_sym_LBRACE_DASH] = ACTIONS(343), - [anon_sym_BSLASH] = ACTIONS(345), - [sym_quotation_marks] = ACTIONS(347), - [sym_ellipsis] = ACTIONS(347), - [sym_em_dash] = ACTIONS(347), - [sym_en_dash] = ACTIONS(349), - [sym_backslash_escape] = ACTIONS(349), - [anon_sym_LT] = ACTIONS(351), - [sym_symbol] = ACTIONS(347), - [anon_sym_LBRACK_CARET] = ACTIONS(353), - [anon_sym_BANG_LBRACK] = ACTIONS(355), - [anon_sym_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [anon_sym_TODO] = ACTIONS(361), - [anon_sym_WIP] = ACTIONS(361), - [anon_sym_NOTE] = ACTIONS(363), - [anon_sym_INFO] = ACTIONS(363), - [anon_sym_XXX] = ACTIONS(363), - [sym_fixme] = ACTIONS(347), - [sym__whitespace1] = ACTIONS(365), - [sym__newline] = ACTIONS(367), - [aux_sym__text_token1] = ACTIONS(369), - [sym__verbatim_begin] = ACTIONS(371), + [aux_sym__text] = STATE(125), + [aux_sym__inline_repeat1] = STATE(107), + [anon_sym_LBRACE_] = ACTIONS(193), + [anon_sym__] = ACTIONS(195), + [anon_sym_LBRACE_STAR] = ACTIONS(197), + [anon_sym_STAR] = ACTIONS(199), + [anon_sym_LBRACE_CARET] = ACTIONS(201), + [anon_sym_CARET] = ACTIONS(201), + [anon_sym_LBRACE_TILDE] = ACTIONS(203), + [anon_sym_TILDE] = ACTIONS(203), + [anon_sym_LBRACE_EQ] = ACTIONS(205), + [anon_sym_LBRACE_PLUS] = ACTIONS(207), + [anon_sym_LBRACE_DASH] = ACTIONS(209), + [anon_sym_BSLASH] = ACTIONS(211), + [sym_quotation_marks] = ACTIONS(213), + [sym_ellipsis] = ACTIONS(213), + [sym_em_dash] = ACTIONS(213), + [sym_en_dash] = ACTIONS(215), + [sym_backslash_escape] = ACTIONS(215), + [anon_sym_LT] = ACTIONS(217), + [sym_symbol] = ACTIONS(213), + [anon_sym_LBRACK_CARET] = ACTIONS(219), + [anon_sym_BANG_LBRACK] = ACTIONS(221), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_DOLLAR] = ACTIONS(225), + [anon_sym_TODO] = ACTIONS(227), + [anon_sym_WIP] = ACTIONS(227), + [anon_sym_NOTE] = ACTIONS(229), + [anon_sym_INFO] = ACTIONS(229), + [anon_sym_XXX] = ACTIONS(229), + [sym_fixme] = ACTIONS(213), + [sym__whitespace1] = ACTIONS(231), + [sym__newline] = ACTIONS(233), + [aux_sym__text_token1] = ACTIONS(235), + [sym__verbatim_begin] = ACTIONS(237), }, - [92] = { - [sym__inline] = STATE(1114), + [82] = { [sym__element] = STATE(21), - [sym_emphasis] = STATE(134), - [sym_emphasis_begin] = STATE(1182), - [sym_strong] = STATE(134), - [sym_strong_begin] = STATE(1183), - [sym_superscript] = STATE(134), - [sym_superscript_begin] = STATE(1184), - [sym_subscript] = STATE(134), - [sym_subscript_begin] = STATE(1185), - [sym_highlighted] = STATE(134), - [sym_highlighted_begin] = STATE(1186), - [sym_insert] = STATE(134), - [sym_insert_begin] = STATE(1187), - [sym_delete] = STATE(134), - [sym_delete_begin] = STATE(1188), - [sym_hard_line_break] = STATE(134), - [sym__smart_punctuation] = STATE(134), - [sym_autolink] = STATE(134), - [sym_footnote_reference] = STATE(134), - [sym__image] = STATE(134), - [sym_full_reference_image] = STATE(134), - [sym_collapsed_reference_image] = STATE(134), - [sym_inline_image] = STATE(134), - [sym__image_description] = STATE(677), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(134), - [sym_full_reference_link] = STATE(134), - [sym_collapsed_reference_link] = STATE(134), - [sym_inline_link] = STATE(134), - [sym_link_text] = STATE(675), - [sym_span] = STATE(21), - [sym__bracketed_text] = STATE(660), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(134), - [sym_raw_inline] = STATE(134), - [sym_math] = STATE(134), - [sym_verbatim] = STATE(134), - [sym__todo_highlights] = STATE(134), - [sym_todo] = STATE(134), - [sym_note] = STATE(134), - [sym__symbol_fallback] = STATE(134), - [aux_sym__text] = STATE(127), + [sym_emphasis] = STATE(143), + [sym_emphasis_begin] = STATE(1169), + [sym_strong] = STATE(143), + [sym_strong_begin] = STATE(1170), + [sym_superscript] = STATE(143), + [sym_superscript_begin] = STATE(1171), + [sym_subscript] = STATE(143), + [sym_subscript_begin] = STATE(1172), + [sym_highlighted] = STATE(143), + [sym_highlighted_begin] = STATE(1173), + [sym_insert] = STATE(143), + [sym_insert_begin] = STATE(1174), + [sym_delete] = STATE(143), + [sym_delete_begin] = STATE(1175), + [sym_hard_line_break] = STATE(143), + [sym__smart_punctuation] = STATE(143), + [sym_autolink] = STATE(143), + [sym_footnote_reference] = STATE(143), + [sym_footnote_marker_begin] = STATE(1176), + [sym__image] = STATE(143), + [sym_full_reference_image] = STATE(143), + [sym_collapsed_reference_image] = STATE(143), + [sym_inline_image] = STATE(143), + [sym__image_description] = STATE(701), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(143), + [sym_full_reference_link] = STATE(143), + [sym_collapsed_reference_link] = STATE(143), + [sym_inline_link] = STATE(143), + [sym_link_text] = STATE(702), + [sym_span] = STATE(21), + [sym__bracketed_text] = STATE(667), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(143), + [sym_raw_inline] = STATE(143), + [sym_math] = STATE(143), + [sym_verbatim] = STATE(143), + [sym__todo_highlights] = STATE(143), + [sym_todo] = STATE(143), + [sym_note] = STATE(143), + [sym__symbol_fallback] = STATE(143), + [aux_sym__text] = STATE(126), [aux_sym__inline_repeat1] = STATE(21), - [anon_sym_LBRACE_] = ACTIONS(189), - [anon_sym__] = ACTIONS(191), - [anon_sym_LBRACE_STAR] = ACTIONS(193), - [anon_sym_STAR] = ACTIONS(195), - [anon_sym_LBRACE_CARET] = ACTIONS(197), - [anon_sym_CARET] = ACTIONS(197), - [anon_sym_LBRACE_TILDE] = ACTIONS(199), - [anon_sym_TILDE] = ACTIONS(199), - [anon_sym_LBRACE_EQ] = ACTIONS(201), - [anon_sym_LBRACE_PLUS] = ACTIONS(203), - [anon_sym_LBRACE_DASH] = ACTIONS(205), - [anon_sym_BSLASH] = ACTIONS(207), - [sym_quotation_marks] = ACTIONS(209), - [sym_ellipsis] = ACTIONS(209), - [sym_em_dash] = ACTIONS(209), - [sym_en_dash] = ACTIONS(211), - [sym_backslash_escape] = ACTIONS(211), - [anon_sym_LT] = ACTIONS(213), - [sym_symbol] = ACTIONS(209), - [anon_sym_LBRACK_CARET] = ACTIONS(215), - [anon_sym_BANG_LBRACK] = ACTIONS(217), - [anon_sym_LBRACK] = ACTIONS(219), - [anon_sym_DOLLAR] = ACTIONS(221), - [anon_sym_TODO] = ACTIONS(223), - [anon_sym_WIP] = ACTIONS(223), - [anon_sym_NOTE] = ACTIONS(225), - [anon_sym_INFO] = ACTIONS(225), - [anon_sym_XXX] = ACTIONS(225), - [sym_fixme] = ACTIONS(209), - [sym__whitespace1] = ACTIONS(227), - [sym__newline] = ACTIONS(229), - [aux_sym__text_token1] = ACTIONS(231), - [sym__verbatim_begin] = ACTIONS(233), + [anon_sym_LBRACE_] = ACTIONS(285), + [anon_sym__] = ACTIONS(287), + [anon_sym_LBRACE_STAR] = ACTIONS(289), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_LBRACE_CARET] = ACTIONS(293), + [anon_sym_CARET] = ACTIONS(293), + [anon_sym_LBRACE_TILDE] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_LBRACE_EQ] = ACTIONS(297), + [anon_sym_LBRACE_PLUS] = ACTIONS(299), + [anon_sym_LBRACE_DASH] = ACTIONS(301), + [anon_sym_BSLASH] = ACTIONS(303), + [sym_quotation_marks] = ACTIONS(305), + [sym_ellipsis] = ACTIONS(305), + [sym_em_dash] = ACTIONS(305), + [sym_en_dash] = ACTIONS(307), + [sym_backslash_escape] = ACTIONS(307), + [anon_sym_LT] = ACTIONS(309), + [sym_symbol] = ACTIONS(305), + [anon_sym_LBRACK_CARET] = ACTIONS(311), + [anon_sym_BANG_LBRACK] = ACTIONS(313), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_DOLLAR] = ACTIONS(317), + [anon_sym_TODO] = ACTIONS(319), + [anon_sym_WIP] = ACTIONS(319), + [anon_sym_NOTE] = ACTIONS(321), + [anon_sym_INFO] = ACTIONS(321), + [anon_sym_XXX] = ACTIONS(321), + [sym_fixme] = ACTIONS(305), + [sym__whitespace1] = ACTIONS(323), + [sym__newline] = ACTIONS(941), + [aux_sym__text_token1] = ACTIONS(327), + [sym__verbatim_begin] = ACTIONS(329), + [sym_superscript_end] = ACTIONS(143), }, - [93] = { - [sym__inline_without_trailing_space] = STATE(955), - [sym__element] = STATE(562), - [sym_emphasis] = STATE(142), - [sym_emphasis_begin] = STATE(1147), - [sym_strong] = STATE(142), - [sym_strong_begin] = STATE(1148), - [sym_superscript] = STATE(142), - [sym_superscript_begin] = STATE(1149), - [sym_subscript] = STATE(142), - [sym_subscript_begin] = STATE(1150), - [sym_highlighted] = STATE(142), - [sym_highlighted_begin] = STATE(1151), - [sym_insert] = STATE(142), - [sym_insert_begin] = STATE(1152), - [sym_delete] = STATE(142), - [sym_delete_begin] = STATE(1153), - [sym_hard_line_break] = STATE(142), - [sym__smart_punctuation] = STATE(142), - [sym_autolink] = STATE(142), - [sym_footnote_reference] = STATE(142), - [sym__image] = STATE(142), - [sym_full_reference_image] = STATE(142), - [sym_collapsed_reference_image] = STATE(142), - [sym_inline_image] = STATE(142), - [sym__image_description] = STATE(685), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(142), - [sym_full_reference_link] = STATE(142), - [sym_collapsed_reference_link] = STATE(142), - [sym_inline_link] = STATE(142), - [sym_link_text] = STATE(683), - [sym_span] = STATE(562), - [sym__bracketed_text] = STATE(657), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(142), - [sym_raw_inline] = STATE(142), - [sym_math] = STATE(142), - [sym_verbatim] = STATE(142), - [sym__todo_highlights] = STATE(142), - [sym_todo] = STATE(142), - [sym_note] = STATE(142), - [sym__symbol_fallback] = STATE(142), + [83] = { + [sym__inline] = STATE(956), + [sym__element] = STATE(82), + [sym_emphasis] = STATE(143), + [sym_emphasis_begin] = STATE(1169), + [sym_strong] = STATE(143), + [sym_strong_begin] = STATE(1170), + [sym_superscript] = STATE(143), + [sym_superscript_begin] = STATE(1171), + [sym_subscript] = STATE(143), + [sym_subscript_begin] = STATE(1172), + [sym_highlighted] = STATE(143), + [sym_highlighted_begin] = STATE(1173), + [sym_insert] = STATE(143), + [sym_insert_begin] = STATE(1174), + [sym_delete] = STATE(143), + [sym_delete_begin] = STATE(1175), + [sym_hard_line_break] = STATE(143), + [sym__smart_punctuation] = STATE(143), + [sym_autolink] = STATE(143), + [sym_footnote_reference] = STATE(143), + [sym_footnote_marker_begin] = STATE(1176), + [sym__image] = STATE(143), + [sym_full_reference_image] = STATE(143), + [sym_collapsed_reference_image] = STATE(143), + [sym_inline_image] = STATE(143), + [sym__image_description] = STATE(701), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(143), + [sym_full_reference_link] = STATE(143), + [sym_collapsed_reference_link] = STATE(143), + [sym_inline_link] = STATE(143), + [sym_link_text] = STATE(702), + [sym_span] = STATE(82), + [sym__bracketed_text] = STATE(667), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(143), + [sym_raw_inline] = STATE(143), + [sym_math] = STATE(143), + [sym_verbatim] = STATE(143), + [sym__todo_highlights] = STATE(143), + [sym_todo] = STATE(143), + [sym_note] = STATE(143), + [sym__symbol_fallback] = STATE(143), [aux_sym__text] = STATE(126), - [aux_sym__inline_repeat1] = STATE(120), - [anon_sym_LBRACE_] = ACTIONS(373), - [anon_sym__] = ACTIONS(375), - [anon_sym_LBRACE_STAR] = ACTIONS(377), - [anon_sym_STAR] = ACTIONS(379), - [anon_sym_LBRACE_CARET] = ACTIONS(381), - [anon_sym_CARET] = ACTIONS(381), - [anon_sym_LBRACE_TILDE] = ACTIONS(383), - [anon_sym_TILDE] = ACTIONS(383), - [anon_sym_LBRACE_EQ] = ACTIONS(385), - [anon_sym_LBRACE_PLUS] = ACTIONS(387), - [anon_sym_LBRACE_DASH] = ACTIONS(389), - [anon_sym_BSLASH] = ACTIONS(391), - [sym_quotation_marks] = ACTIONS(393), - [sym_ellipsis] = ACTIONS(393), - [sym_em_dash] = ACTIONS(393), - [sym_en_dash] = ACTIONS(395), - [sym_backslash_escape] = ACTIONS(395), - [anon_sym_LT] = ACTIONS(397), - [sym_symbol] = ACTIONS(393), - [anon_sym_LBRACK_CARET] = ACTIONS(399), - [anon_sym_BANG_LBRACK] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_DOLLAR] = ACTIONS(405), - [anon_sym_TODO] = ACTIONS(407), - [anon_sym_WIP] = ACTIONS(407), - [anon_sym_NOTE] = ACTIONS(409), - [anon_sym_INFO] = ACTIONS(409), - [anon_sym_XXX] = ACTIONS(409), - [sym_fixme] = ACTIONS(393), - [sym__whitespace1] = ACTIONS(411), - [sym__newline] = ACTIONS(413), - [aux_sym__text_token1] = ACTIONS(415), - [sym__verbatim_begin] = ACTIONS(417), + [aux_sym__inline_repeat1] = STATE(82), + [anon_sym_LBRACE_] = ACTIONS(285), + [anon_sym__] = ACTIONS(287), + [anon_sym_LBRACE_STAR] = ACTIONS(289), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_LBRACE_CARET] = ACTIONS(293), + [anon_sym_CARET] = ACTIONS(293), + [anon_sym_LBRACE_TILDE] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_LBRACE_EQ] = ACTIONS(297), + [anon_sym_LBRACE_PLUS] = ACTIONS(299), + [anon_sym_LBRACE_DASH] = ACTIONS(301), + [anon_sym_BSLASH] = ACTIONS(303), + [sym_quotation_marks] = ACTIONS(305), + [sym_ellipsis] = ACTIONS(305), + [sym_em_dash] = ACTIONS(305), + [sym_en_dash] = ACTIONS(307), + [sym_backslash_escape] = ACTIONS(307), + [anon_sym_LT] = ACTIONS(309), + [sym_symbol] = ACTIONS(305), + [anon_sym_LBRACK_CARET] = ACTIONS(311), + [anon_sym_BANG_LBRACK] = ACTIONS(313), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_DOLLAR] = ACTIONS(317), + [anon_sym_TODO] = ACTIONS(319), + [anon_sym_WIP] = ACTIONS(319), + [anon_sym_NOTE] = ACTIONS(321), + [anon_sym_INFO] = ACTIONS(321), + [anon_sym_XXX] = ACTIONS(321), + [sym_fixme] = ACTIONS(305), + [sym__whitespace1] = ACTIONS(323), + [sym__newline] = ACTIONS(325), + [aux_sym__text_token1] = ACTIONS(327), + [sym__verbatim_begin] = ACTIONS(329), }, - [94] = { - [sym__inline_without_trailing_space] = STATE(956), - [sym__element] = STATE(604), + [84] = { + [sym__inline_without_trailing_space] = STATE(957), + [sym__element] = STATE(572), [sym_emphasis] = STATE(138), - [sym_emphasis_begin] = STATE(1140), + [sym_emphasis_begin] = STATE(1161), [sym_strong] = STATE(138), - [sym_strong_begin] = STATE(1141), + [sym_strong_begin] = STATE(1162), [sym_superscript] = STATE(138), - [sym_superscript_begin] = STATE(1142), + [sym_superscript_begin] = STATE(1163), [sym_subscript] = STATE(138), - [sym_subscript_begin] = STATE(1143), + [sym_subscript_begin] = STATE(1164), [sym_highlighted] = STATE(138), - [sym_highlighted_begin] = STATE(1144), + [sym_highlighted_begin] = STATE(1165), [sym_insert] = STATE(138), - [sym_insert_begin] = STATE(1145), + [sym_insert_begin] = STATE(1166), [sym_delete] = STATE(138), - [sym_delete_begin] = STATE(1146), + [sym_delete_begin] = STATE(1167), [sym_hard_line_break] = STATE(138), [sym__smart_punctuation] = STATE(138), [sym_autolink] = STATE(138), [sym_footnote_reference] = STATE(138), + [sym_footnote_marker_begin] = STATE(1168), [sym__image] = STATE(138), [sym_full_reference_image] = STATE(138), [sym_collapsed_reference_image] = STATE(138), [sym_inline_image] = STATE(138), - [sym__image_description] = STATE(667), - [sym__image_description_begin] = STATE(1103), + [sym__image_description] = STATE(703), + [sym__image_description_begin] = STATE(1114), [sym__link] = STATE(138), [sym_full_reference_link] = STATE(138), [sym_collapsed_reference_link] = STATE(138), [sym_inline_link] = STATE(138), - [sym_link_text] = STATE(689), - [sym_span] = STATE(604), - [sym__bracketed_text] = STATE(658), - [sym__bracketed_text_begin] = STATE(1102), + [sym_link_text] = STATE(697), + [sym_span] = STATE(572), + [sym__bracketed_text] = STATE(671), + [sym__bracketed_text_begin] = STATE(1113), [sym__comment_with_spaces] = STATE(138), [sym_raw_inline] = STATE(138), [sym_math] = STATE(138), @@ -12470,156 +11943,238 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(138), [sym_note] = STATE(138), [sym__symbol_fallback] = STATE(138), - [aux_sym__text] = STATE(124), - [aux_sym__inline_repeat1] = STATE(118), - [anon_sym_LBRACE_] = ACTIONS(419), - [anon_sym__] = ACTIONS(421), - [anon_sym_LBRACE_STAR] = ACTIONS(423), - [anon_sym_STAR] = ACTIONS(425), - [anon_sym_LBRACE_CARET] = ACTIONS(427), - [anon_sym_CARET] = ACTIONS(427), - [anon_sym_LBRACE_TILDE] = ACTIONS(429), - [anon_sym_TILDE] = ACTIONS(429), - [anon_sym_LBRACE_EQ] = ACTIONS(431), - [anon_sym_LBRACE_PLUS] = ACTIONS(433), - [anon_sym_LBRACE_DASH] = ACTIONS(435), - [anon_sym_BSLASH] = ACTIONS(437), - [sym_quotation_marks] = ACTIONS(439), - [sym_ellipsis] = ACTIONS(439), - [sym_em_dash] = ACTIONS(439), - [sym_en_dash] = ACTIONS(441), - [sym_backslash_escape] = ACTIONS(441), - [anon_sym_LT] = ACTIONS(443), - [sym_symbol] = ACTIONS(439), - [anon_sym_LBRACK_CARET] = ACTIONS(445), - [anon_sym_BANG_LBRACK] = ACTIONS(447), - [anon_sym_LBRACK] = ACTIONS(449), - [anon_sym_DOLLAR] = ACTIONS(451), - [anon_sym_TODO] = ACTIONS(453), - [anon_sym_WIP] = ACTIONS(453), - [anon_sym_NOTE] = ACTIONS(455), - [anon_sym_INFO] = ACTIONS(455), - [anon_sym_XXX] = ACTIONS(455), - [sym_fixme] = ACTIONS(439), - [sym__whitespace1] = ACTIONS(457), - [sym__newline] = ACTIONS(459), - [aux_sym__text_token1] = ACTIONS(461), - [sym__verbatim_begin] = ACTIONS(463), + [aux_sym__text] = STATE(122), + [aux_sym__inline_repeat1] = STATE(120), + [anon_sym_LBRACE_] = ACTIONS(331), + [anon_sym__] = ACTIONS(333), + [anon_sym_LBRACE_STAR] = ACTIONS(335), + [anon_sym_STAR] = ACTIONS(337), + [anon_sym_LBRACE_CARET] = ACTIONS(339), + [anon_sym_CARET] = ACTIONS(339), + [anon_sym_LBRACE_TILDE] = ACTIONS(341), + [anon_sym_TILDE] = ACTIONS(341), + [anon_sym_LBRACE_EQ] = ACTIONS(343), + [anon_sym_LBRACE_PLUS] = ACTIONS(345), + [anon_sym_LBRACE_DASH] = ACTIONS(347), + [anon_sym_BSLASH] = ACTIONS(349), + [sym_quotation_marks] = ACTIONS(351), + [sym_ellipsis] = ACTIONS(351), + [sym_em_dash] = ACTIONS(351), + [sym_en_dash] = ACTIONS(353), + [sym_backslash_escape] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [sym_symbol] = ACTIONS(351), + [anon_sym_LBRACK_CARET] = ACTIONS(357), + [anon_sym_BANG_LBRACK] = ACTIONS(359), + [anon_sym_LBRACK] = ACTIONS(361), + [anon_sym_DOLLAR] = ACTIONS(363), + [anon_sym_TODO] = ACTIONS(365), + [anon_sym_WIP] = ACTIONS(365), + [anon_sym_NOTE] = ACTIONS(367), + [anon_sym_INFO] = ACTIONS(367), + [anon_sym_XXX] = ACTIONS(367), + [sym_fixme] = ACTIONS(351), + [sym__whitespace1] = ACTIONS(369), + [sym__newline] = ACTIONS(371), + [aux_sym__text_token1] = ACTIONS(373), + [sym__verbatim_begin] = ACTIONS(375), }, - [95] = { - [sym__inline] = STATE(991), - [sym__element] = STATE(65), - [sym_emphasis] = STATE(133), - [sym_emphasis_begin] = STATE(1189), - [sym_strong] = STATE(133), - [sym_strong_begin] = STATE(1190), - [sym_superscript] = STATE(133), - [sym_superscript_begin] = STATE(1191), - [sym_subscript] = STATE(133), - [sym_subscript_begin] = STATE(1192), - [sym_highlighted] = STATE(133), - [sym_highlighted_begin] = STATE(1193), - [sym_insert] = STATE(133), - [sym_insert_begin] = STATE(1194), - [sym_delete] = STATE(133), - [sym_delete_begin] = STATE(1195), - [sym_hard_line_break] = STATE(133), - [sym__smart_punctuation] = STATE(133), - [sym_autolink] = STATE(133), - [sym_footnote_reference] = STATE(133), - [sym__image] = STATE(133), - [sym_full_reference_image] = STATE(133), - [sym_collapsed_reference_image] = STATE(133), - [sym_inline_image] = STATE(133), - [sym__image_description] = STATE(670), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(133), - [sym_full_reference_link] = STATE(133), - [sym_collapsed_reference_link] = STATE(133), - [sym_inline_link] = STATE(133), - [sym_link_text] = STATE(663), - [sym_span] = STATE(65), - [sym__bracketed_text] = STATE(662), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(133), - [sym_raw_inline] = STATE(133), - [sym_math] = STATE(133), - [sym_verbatim] = STATE(133), - [sym__todo_highlights] = STATE(133), - [sym_todo] = STATE(133), - [sym_note] = STATE(133), - [sym__symbol_fallback] = STATE(133), - [aux_sym__text] = STATE(123), - [aux_sym__inline_repeat1] = STATE(65), - [anon_sym_LBRACE_] = ACTIONS(143), - [anon_sym__] = ACTIONS(145), - [anon_sym_LBRACE_STAR] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_LBRACE_CARET] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(151), - [anon_sym_LBRACE_TILDE] = ACTIONS(153), - [anon_sym_TILDE] = ACTIONS(153), - [anon_sym_LBRACE_EQ] = ACTIONS(155), - [anon_sym_LBRACE_PLUS] = ACTIONS(157), - [anon_sym_LBRACE_DASH] = ACTIONS(159), - [anon_sym_BSLASH] = ACTIONS(161), - [sym_quotation_marks] = ACTIONS(163), - [sym_ellipsis] = ACTIONS(163), - [sym_em_dash] = ACTIONS(163), - [sym_en_dash] = ACTIONS(165), - [sym_backslash_escape] = ACTIONS(165), - [anon_sym_LT] = ACTIONS(167), - [sym_symbol] = ACTIONS(163), - [anon_sym_LBRACK_CARET] = ACTIONS(169), - [anon_sym_BANG_LBRACK] = ACTIONS(171), - [anon_sym_LBRACK] = ACTIONS(173), - [anon_sym_DOLLAR] = ACTIONS(175), - [anon_sym_TODO] = ACTIONS(177), - [anon_sym_WIP] = ACTIONS(177), - [anon_sym_NOTE] = ACTIONS(179), - [anon_sym_INFO] = ACTIONS(179), - [anon_sym_XXX] = ACTIONS(179), - [sym_fixme] = ACTIONS(163), - [sym__whitespace1] = ACTIONS(181), - [sym__newline] = ACTIONS(183), - [aux_sym__text_token1] = ACTIONS(185), - [sym__verbatim_begin] = ACTIONS(187), + [85] = { + [sym__inline_without_trailing_space] = STATE(896), + [sym__element] = STATE(538), + [sym_emphasis] = STATE(141), + [sym_emphasis_begin] = STATE(1153), + [sym_strong] = STATE(141), + [sym_strong_begin] = STATE(1154), + [sym_superscript] = STATE(141), + [sym_superscript_begin] = STATE(1155), + [sym_subscript] = STATE(141), + [sym_subscript_begin] = STATE(1156), + [sym_highlighted] = STATE(141), + [sym_highlighted_begin] = STATE(1157), + [sym_insert] = STATE(141), + [sym_insert_begin] = STATE(1158), + [sym_delete] = STATE(141), + [sym_delete_begin] = STATE(1159), + [sym_hard_line_break] = STATE(141), + [sym__smart_punctuation] = STATE(141), + [sym_autolink] = STATE(141), + [sym_footnote_reference] = STATE(141), + [sym_footnote_marker_begin] = STATE(1160), + [sym__image] = STATE(141), + [sym_full_reference_image] = STATE(141), + [sym_collapsed_reference_image] = STATE(141), + [sym_inline_image] = STATE(141), + [sym__image_description] = STATE(681), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(141), + [sym_full_reference_link] = STATE(141), + [sym_collapsed_reference_link] = STATE(141), + [sym_inline_link] = STATE(141), + [sym_link_text] = STATE(680), + [sym_span] = STATE(538), + [sym__bracketed_text] = STATE(664), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(141), + [sym_raw_inline] = STATE(141), + [sym_math] = STATE(141), + [sym_verbatim] = STATE(141), + [sym__todo_highlights] = STATE(141), + [sym_todo] = STATE(141), + [sym_note] = STATE(141), + [sym__symbol_fallback] = STATE(141), + [aux_sym__text] = STATE(128), + [aux_sym__inline_repeat1] = STATE(119), + [anon_sym_LBRACE_] = ACTIONS(147), + [anon_sym__] = ACTIONS(149), + [anon_sym_LBRACE_STAR] = ACTIONS(151), + [anon_sym_STAR] = ACTIONS(153), + [anon_sym_LBRACE_CARET] = ACTIONS(155), + [anon_sym_CARET] = ACTIONS(155), + [anon_sym_LBRACE_TILDE] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_LBRACE_EQ] = ACTIONS(159), + [anon_sym_LBRACE_PLUS] = ACTIONS(161), + [anon_sym_LBRACE_DASH] = ACTIONS(163), + [anon_sym_BSLASH] = ACTIONS(165), + [sym_quotation_marks] = ACTIONS(167), + [sym_ellipsis] = ACTIONS(167), + [sym_em_dash] = ACTIONS(167), + [sym_en_dash] = ACTIONS(169), + [sym_backslash_escape] = ACTIONS(169), + [anon_sym_LT] = ACTIONS(171), + [sym_symbol] = ACTIONS(167), + [anon_sym_LBRACK_CARET] = ACTIONS(173), + [anon_sym_BANG_LBRACK] = ACTIONS(175), + [anon_sym_LBRACK] = ACTIONS(177), + [anon_sym_DOLLAR] = ACTIONS(179), + [anon_sym_TODO] = ACTIONS(181), + [anon_sym_WIP] = ACTIONS(181), + [anon_sym_NOTE] = ACTIONS(183), + [anon_sym_INFO] = ACTIONS(183), + [anon_sym_XXX] = ACTIONS(183), + [sym_fixme] = ACTIONS(167), + [sym__whitespace1] = ACTIONS(185), + [sym__newline] = ACTIONS(187), + [aux_sym__text_token1] = ACTIONS(189), + [sym__verbatim_begin] = ACTIONS(191), }, - [96] = { - [sym__inline] = STATE(1111), - [sym__element] = STATE(65), + [86] = { + [sym__inline] = STATE(971), + [sym__element] = STATE(47), + [sym_emphasis] = STATE(136), + [sym_emphasis_begin] = STATE(1209), + [sym_strong] = STATE(136), + [sym_strong_begin] = STATE(1210), + [sym_superscript] = STATE(136), + [sym_superscript_begin] = STATE(1211), + [sym_subscript] = STATE(136), + [sym_subscript_begin] = STATE(1212), + [sym_highlighted] = STATE(136), + [sym_highlighted_begin] = STATE(1213), + [sym_insert] = STATE(136), + [sym_insert_begin] = STATE(1214), + [sym_delete] = STATE(136), + [sym_delete_begin] = STATE(1215), + [sym_hard_line_break] = STATE(136), + [sym__smart_punctuation] = STATE(136), + [sym_autolink] = STATE(136), + [sym_footnote_reference] = STATE(136), + [sym_footnote_marker_begin] = STATE(1216), + [sym__image] = STATE(136), + [sym_full_reference_image] = STATE(136), + [sym_collapsed_reference_image] = STATE(136), + [sym_inline_image] = STATE(136), + [sym__image_description] = STATE(682), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(136), + [sym_full_reference_link] = STATE(136), + [sym_collapsed_reference_link] = STATE(136), + [sym_inline_link] = STATE(136), + [sym_link_text] = STATE(675), + [sym_span] = STATE(47), + [sym__bracketed_text] = STATE(674), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(136), + [sym_raw_inline] = STATE(136), + [sym_math] = STATE(136), + [sym_verbatim] = STATE(136), + [sym__todo_highlights] = STATE(136), + [sym_todo] = STATE(136), + [sym_note] = STATE(136), + [sym__symbol_fallback] = STATE(136), + [aux_sym__text] = STATE(127), + [aux_sym__inline_repeat1] = STATE(47), + [anon_sym_LBRACE_] = ACTIONS(377), + [anon_sym__] = ACTIONS(379), + [anon_sym_LBRACE_STAR] = ACTIONS(381), + [anon_sym_STAR] = ACTIONS(383), + [anon_sym_LBRACE_CARET] = ACTIONS(385), + [anon_sym_CARET] = ACTIONS(385), + [anon_sym_LBRACE_TILDE] = ACTIONS(387), + [anon_sym_TILDE] = ACTIONS(387), + [anon_sym_LBRACE_EQ] = ACTIONS(389), + [anon_sym_LBRACE_PLUS] = ACTIONS(391), + [anon_sym_LBRACE_DASH] = ACTIONS(393), + [anon_sym_BSLASH] = ACTIONS(395), + [sym_quotation_marks] = ACTIONS(397), + [sym_ellipsis] = ACTIONS(397), + [sym_em_dash] = ACTIONS(397), + [sym_en_dash] = ACTIONS(399), + [sym_backslash_escape] = ACTIONS(399), + [anon_sym_LT] = ACTIONS(401), + [sym_symbol] = ACTIONS(397), + [anon_sym_LBRACK_CARET] = ACTIONS(403), + [anon_sym_BANG_LBRACK] = ACTIONS(405), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_DOLLAR] = ACTIONS(409), + [anon_sym_TODO] = ACTIONS(411), + [anon_sym_WIP] = ACTIONS(411), + [anon_sym_NOTE] = ACTIONS(413), + [anon_sym_INFO] = ACTIONS(413), + [anon_sym_XXX] = ACTIONS(413), + [sym_fixme] = ACTIONS(397), + [sym__whitespace1] = ACTIONS(415), + [sym__newline] = ACTIONS(417), + [aux_sym__text_token1] = ACTIONS(419), + [sym__verbatim_begin] = ACTIONS(421), + }, + [87] = { + [sym__inline] = STATE(974), + [sym__element] = STATE(14), [sym_emphasis] = STATE(133), - [sym_emphasis_begin] = STATE(1189), + [sym_emphasis_begin] = STATE(1201), [sym_strong] = STATE(133), - [sym_strong_begin] = STATE(1190), + [sym_strong_begin] = STATE(1202), [sym_superscript] = STATE(133), - [sym_superscript_begin] = STATE(1191), + [sym_superscript_begin] = STATE(1203), [sym_subscript] = STATE(133), - [sym_subscript_begin] = STATE(1192), + [sym_subscript_begin] = STATE(1204), [sym_highlighted] = STATE(133), - [sym_highlighted_begin] = STATE(1193), + [sym_highlighted_begin] = STATE(1205), [sym_insert] = STATE(133), - [sym_insert_begin] = STATE(1194), + [sym_insert_begin] = STATE(1206), [sym_delete] = STATE(133), - [sym_delete_begin] = STATE(1195), + [sym_delete_begin] = STATE(1207), [sym_hard_line_break] = STATE(133), [sym__smart_punctuation] = STATE(133), [sym_autolink] = STATE(133), [sym_footnote_reference] = STATE(133), + [sym_footnote_marker_begin] = STATE(1208), [sym__image] = STATE(133), [sym_full_reference_image] = STATE(133), [sym_collapsed_reference_image] = STATE(133), [sym_inline_image] = STATE(133), - [sym__image_description] = STATE(670), - [sym__image_description_begin] = STATE(1103), + [sym__image_description] = STATE(688), + [sym__image_description_begin] = STATE(1114), [sym__link] = STATE(133), [sym_full_reference_link] = STATE(133), [sym_collapsed_reference_link] = STATE(133), [sym_inline_link] = STATE(133), - [sym_link_text] = STATE(663), - [sym_span] = STATE(65), - [sym__bracketed_text] = STATE(662), - [sym__bracketed_text_begin] = STATE(1102), + [sym_link_text] = STATE(686), + [sym_span] = STATE(14), + [sym__bracketed_text] = STATE(673), + [sym__bracketed_text_begin] = STATE(1113), [sym__comment_with_spaces] = STATE(133), [sym_raw_inline] = STATE(133), [sym_math] = STATE(133), @@ -12628,393 +12183,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(133), [sym_note] = STATE(133), [sym__symbol_fallback] = STATE(133), - [aux_sym__text] = STATE(123), - [aux_sym__inline_repeat1] = STATE(65), - [anon_sym_LBRACE_] = ACTIONS(143), - [anon_sym__] = ACTIONS(145), - [anon_sym_LBRACE_STAR] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_LBRACE_CARET] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(151), - [anon_sym_LBRACE_TILDE] = ACTIONS(153), - [anon_sym_TILDE] = ACTIONS(153), - [anon_sym_LBRACE_EQ] = ACTIONS(155), - [anon_sym_LBRACE_PLUS] = ACTIONS(157), - [anon_sym_LBRACE_DASH] = ACTIONS(159), - [anon_sym_BSLASH] = ACTIONS(161), - [sym_quotation_marks] = ACTIONS(163), - [sym_ellipsis] = ACTIONS(163), - [sym_em_dash] = ACTIONS(163), - [sym_en_dash] = ACTIONS(165), - [sym_backslash_escape] = ACTIONS(165), - [anon_sym_LT] = ACTIONS(167), - [sym_symbol] = ACTIONS(163), - [anon_sym_LBRACK_CARET] = ACTIONS(169), - [anon_sym_BANG_LBRACK] = ACTIONS(171), - [anon_sym_LBRACK] = ACTIONS(173), - [anon_sym_DOLLAR] = ACTIONS(175), - [anon_sym_TODO] = ACTIONS(177), - [anon_sym_WIP] = ACTIONS(177), - [anon_sym_NOTE] = ACTIONS(179), - [anon_sym_INFO] = ACTIONS(179), - [anon_sym_XXX] = ACTIONS(179), - [sym_fixme] = ACTIONS(163), - [sym__whitespace1] = ACTIONS(181), - [sym__newline] = ACTIONS(183), - [aux_sym__text_token1] = ACTIONS(185), - [sym__verbatim_begin] = ACTIONS(187), - }, - [97] = { - [sym__inline_without_trailing_space] = STATE(1066), - [sym__element] = STATE(604), - [sym_emphasis] = STATE(138), - [sym_emphasis_begin] = STATE(1140), - [sym_strong] = STATE(138), - [sym_strong_begin] = STATE(1141), - [sym_superscript] = STATE(138), - [sym_superscript_begin] = STATE(1142), - [sym_subscript] = STATE(138), - [sym_subscript_begin] = STATE(1143), - [sym_highlighted] = STATE(138), - [sym_highlighted_begin] = STATE(1144), - [sym_insert] = STATE(138), - [sym_insert_begin] = STATE(1145), - [sym_delete] = STATE(138), - [sym_delete_begin] = STATE(1146), - [sym_hard_line_break] = STATE(138), - [sym__smart_punctuation] = STATE(138), - [sym_autolink] = STATE(138), - [sym_footnote_reference] = STATE(138), - [sym__image] = STATE(138), - [sym_full_reference_image] = STATE(138), - [sym_collapsed_reference_image] = STATE(138), - [sym_inline_image] = STATE(138), - [sym__image_description] = STATE(667), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(138), - [sym_full_reference_link] = STATE(138), - [sym_collapsed_reference_link] = STATE(138), - [sym_inline_link] = STATE(138), - [sym_link_text] = STATE(689), - [sym_span] = STATE(604), - [sym__bracketed_text] = STATE(658), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(138), - [sym_raw_inline] = STATE(138), - [sym_math] = STATE(138), - [sym_verbatim] = STATE(138), - [sym__todo_highlights] = STATE(138), - [sym_todo] = STATE(138), - [sym_note] = STATE(138), - [sym__symbol_fallback] = STATE(138), - [aux_sym__text] = STATE(124), - [aux_sym__inline_repeat1] = STATE(118), - [anon_sym_LBRACE_] = ACTIONS(419), - [anon_sym__] = ACTIONS(421), - [anon_sym_LBRACE_STAR] = ACTIONS(423), - [anon_sym_STAR] = ACTIONS(425), - [anon_sym_LBRACE_CARET] = ACTIONS(427), - [anon_sym_CARET] = ACTIONS(427), - [anon_sym_LBRACE_TILDE] = ACTIONS(429), - [anon_sym_TILDE] = ACTIONS(429), - [anon_sym_LBRACE_EQ] = ACTIONS(431), - [anon_sym_LBRACE_PLUS] = ACTIONS(433), - [anon_sym_LBRACE_DASH] = ACTIONS(435), - [anon_sym_BSLASH] = ACTIONS(437), - [sym_quotation_marks] = ACTIONS(439), - [sym_ellipsis] = ACTIONS(439), - [sym_em_dash] = ACTIONS(439), - [sym_en_dash] = ACTIONS(441), - [sym_backslash_escape] = ACTIONS(441), - [anon_sym_LT] = ACTIONS(443), - [sym_symbol] = ACTIONS(439), - [anon_sym_LBRACK_CARET] = ACTIONS(445), - [anon_sym_BANG_LBRACK] = ACTIONS(447), - [anon_sym_LBRACK] = ACTIONS(449), - [anon_sym_DOLLAR] = ACTIONS(451), - [anon_sym_TODO] = ACTIONS(453), - [anon_sym_WIP] = ACTIONS(453), - [anon_sym_NOTE] = ACTIONS(455), - [anon_sym_INFO] = ACTIONS(455), - [anon_sym_XXX] = ACTIONS(455), - [sym_fixme] = ACTIONS(439), - [sym__whitespace1] = ACTIONS(457), - [sym__newline] = ACTIONS(459), - [aux_sym__text_token1] = ACTIONS(461), - [sym__verbatim_begin] = ACTIONS(463), + [aux_sym__text] = STATE(129), + [aux_sym__inline_repeat1] = STATE(14), + [anon_sym_LBRACE_] = ACTIONS(423), + [anon_sym__] = ACTIONS(425), + [anon_sym_LBRACE_STAR] = ACTIONS(427), + [anon_sym_STAR] = ACTIONS(429), + [anon_sym_LBRACE_CARET] = ACTIONS(431), + [anon_sym_CARET] = ACTIONS(431), + [anon_sym_LBRACE_TILDE] = ACTIONS(433), + [anon_sym_TILDE] = ACTIONS(433), + [anon_sym_LBRACE_EQ] = ACTIONS(435), + [anon_sym_LBRACE_PLUS] = ACTIONS(437), + [anon_sym_LBRACE_DASH] = ACTIONS(439), + [anon_sym_BSLASH] = ACTIONS(441), + [sym_quotation_marks] = ACTIONS(443), + [sym_ellipsis] = ACTIONS(443), + [sym_em_dash] = ACTIONS(443), + [sym_en_dash] = ACTIONS(445), + [sym_backslash_escape] = ACTIONS(445), + [anon_sym_LT] = ACTIONS(447), + [sym_symbol] = ACTIONS(443), + [anon_sym_LBRACK_CARET] = ACTIONS(449), + [anon_sym_BANG_LBRACK] = ACTIONS(451), + [anon_sym_LBRACK] = ACTIONS(453), + [anon_sym_DOLLAR] = ACTIONS(455), + [anon_sym_TODO] = ACTIONS(457), + [anon_sym_WIP] = ACTIONS(457), + [anon_sym_NOTE] = ACTIONS(459), + [anon_sym_INFO] = ACTIONS(459), + [anon_sym_XXX] = ACTIONS(459), + [sym_fixme] = ACTIONS(443), + [sym__whitespace1] = ACTIONS(461), + [sym__newline] = ACTIONS(469), + [aux_sym__text_token1] = ACTIONS(465), + [sym__verbatim_begin] = ACTIONS(467), }, - [98] = { - [sym__inline] = STATE(994), - [sym__element] = STATE(21), - [sym_emphasis] = STATE(134), - [sym_emphasis_begin] = STATE(1182), - [sym_strong] = STATE(134), - [sym_strong_begin] = STATE(1183), - [sym_superscript] = STATE(134), - [sym_superscript_begin] = STATE(1184), - [sym_subscript] = STATE(134), - [sym_subscript_begin] = STATE(1185), - [sym_highlighted] = STATE(134), - [sym_highlighted_begin] = STATE(1186), - [sym_insert] = STATE(134), - [sym_insert_begin] = STATE(1187), - [sym_delete] = STATE(134), - [sym_delete_begin] = STATE(1188), - [sym_hard_line_break] = STATE(134), - [sym__smart_punctuation] = STATE(134), - [sym_autolink] = STATE(134), - [sym_footnote_reference] = STATE(134), - [sym__image] = STATE(134), - [sym_full_reference_image] = STATE(134), - [sym_collapsed_reference_image] = STATE(134), - [sym_inline_image] = STATE(134), - [sym__image_description] = STATE(677), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(134), - [sym_full_reference_link] = STATE(134), - [sym_collapsed_reference_link] = STATE(134), - [sym_inline_link] = STATE(134), - [sym_link_text] = STATE(675), - [sym_span] = STATE(21), - [sym__bracketed_text] = STATE(660), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(134), - [sym_raw_inline] = STATE(134), - [sym_math] = STATE(134), - [sym_verbatim] = STATE(134), - [sym__todo_highlights] = STATE(134), - [sym_todo] = STATE(134), - [sym_note] = STATE(134), - [sym__symbol_fallback] = STATE(134), - [aux_sym__text] = STATE(127), - [aux_sym__inline_repeat1] = STATE(21), - [anon_sym_LBRACE_] = ACTIONS(189), - [anon_sym__] = ACTIONS(191), - [anon_sym_LBRACE_STAR] = ACTIONS(193), - [anon_sym_STAR] = ACTIONS(195), - [anon_sym_LBRACE_CARET] = ACTIONS(197), - [anon_sym_CARET] = ACTIONS(197), - [anon_sym_LBRACE_TILDE] = ACTIONS(199), - [anon_sym_TILDE] = ACTIONS(199), - [anon_sym_LBRACE_EQ] = ACTIONS(201), - [anon_sym_LBRACE_PLUS] = ACTIONS(203), - [anon_sym_LBRACE_DASH] = ACTIONS(205), - [anon_sym_BSLASH] = ACTIONS(207), - [sym_quotation_marks] = ACTIONS(209), - [sym_ellipsis] = ACTIONS(209), - [sym_em_dash] = ACTIONS(209), - [sym_en_dash] = ACTIONS(211), - [sym_backslash_escape] = ACTIONS(211), - [anon_sym_LT] = ACTIONS(213), - [sym_symbol] = ACTIONS(209), - [anon_sym_LBRACK_CARET] = ACTIONS(215), - [anon_sym_BANG_LBRACK] = ACTIONS(217), - [anon_sym_LBRACK] = ACTIONS(219), - [anon_sym_DOLLAR] = ACTIONS(221), - [anon_sym_TODO] = ACTIONS(223), - [anon_sym_WIP] = ACTIONS(223), - [anon_sym_NOTE] = ACTIONS(225), - [anon_sym_INFO] = ACTIONS(225), - [anon_sym_XXX] = ACTIONS(225), - [sym_fixme] = ACTIONS(209), - [sym__whitespace1] = ACTIONS(227), - [sym__newline] = ACTIONS(229), - [aux_sym__text_token1] = ACTIONS(231), - [sym__verbatim_begin] = ACTIONS(233), - }, - [99] = { - [sym__inline_without_trailing_space] = STATE(1054), - [sym__element] = STATE(562), - [sym_emphasis] = STATE(142), - [sym_emphasis_begin] = STATE(1147), - [sym_strong] = STATE(142), - [sym_strong_begin] = STATE(1148), - [sym_superscript] = STATE(142), - [sym_superscript_begin] = STATE(1149), - [sym_subscript] = STATE(142), - [sym_subscript_begin] = STATE(1150), - [sym_highlighted] = STATE(142), - [sym_highlighted_begin] = STATE(1151), - [sym_insert] = STATE(142), - [sym_insert_begin] = STATE(1152), - [sym_delete] = STATE(142), - [sym_delete_begin] = STATE(1153), - [sym_hard_line_break] = STATE(142), - [sym__smart_punctuation] = STATE(142), - [sym_autolink] = STATE(142), - [sym_footnote_reference] = STATE(142), - [sym__image] = STATE(142), - [sym_full_reference_image] = STATE(142), - [sym_collapsed_reference_image] = STATE(142), - [sym_inline_image] = STATE(142), - [sym__image_description] = STATE(685), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(142), - [sym_full_reference_link] = STATE(142), - [sym_collapsed_reference_link] = STATE(142), - [sym_inline_link] = STATE(142), - [sym_link_text] = STATE(683), - [sym_span] = STATE(562), - [sym__bracketed_text] = STATE(657), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(142), - [sym_raw_inline] = STATE(142), - [sym_math] = STATE(142), - [sym_verbatim] = STATE(142), - [sym__todo_highlights] = STATE(142), - [sym_todo] = STATE(142), - [sym_note] = STATE(142), - [sym__symbol_fallback] = STATE(142), - [aux_sym__text] = STATE(126), - [aux_sym__inline_repeat1] = STATE(120), - [anon_sym_LBRACE_] = ACTIONS(373), - [anon_sym__] = ACTIONS(375), - [anon_sym_LBRACE_STAR] = ACTIONS(377), - [anon_sym_STAR] = ACTIONS(379), - [anon_sym_LBRACE_CARET] = ACTIONS(381), - [anon_sym_CARET] = ACTIONS(381), - [anon_sym_LBRACE_TILDE] = ACTIONS(383), - [anon_sym_TILDE] = ACTIONS(383), - [anon_sym_LBRACE_EQ] = ACTIONS(385), - [anon_sym_LBRACE_PLUS] = ACTIONS(387), - [anon_sym_LBRACE_DASH] = ACTIONS(389), - [anon_sym_BSLASH] = ACTIONS(391), - [sym_quotation_marks] = ACTIONS(393), - [sym_ellipsis] = ACTIONS(393), - [sym_em_dash] = ACTIONS(393), - [sym_en_dash] = ACTIONS(395), - [sym_backslash_escape] = ACTIONS(395), - [anon_sym_LT] = ACTIONS(397), - [sym_symbol] = ACTIONS(393), - [anon_sym_LBRACK_CARET] = ACTIONS(399), - [anon_sym_BANG_LBRACK] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_DOLLAR] = ACTIONS(405), - [anon_sym_TODO] = ACTIONS(407), - [anon_sym_WIP] = ACTIONS(407), - [anon_sym_NOTE] = ACTIONS(409), - [anon_sym_INFO] = ACTIONS(409), - [anon_sym_XXX] = ACTIONS(409), - [sym_fixme] = ACTIONS(393), - [sym__whitespace1] = ACTIONS(411), - [sym__newline] = ACTIONS(413), - [aux_sym__text_token1] = ACTIONS(415), - [sym__verbatim_begin] = ACTIONS(417), - }, - [100] = { - [sym__inline] = STATE(1006), - [sym__element] = STATE(103), - [sym_emphasis] = STATE(139), - [sym_emphasis_begin] = STATE(1175), - [sym_strong] = STATE(139), - [sym_strong_begin] = STATE(1176), - [sym_superscript] = STATE(139), - [sym_superscript_begin] = STATE(1177), - [sym_subscript] = STATE(139), - [sym_subscript_begin] = STATE(1178), - [sym_highlighted] = STATE(139), - [sym_highlighted_begin] = STATE(1179), - [sym_insert] = STATE(139), - [sym_insert_begin] = STATE(1180), - [sym_delete] = STATE(139), - [sym_delete_begin] = STATE(1181), - [sym_hard_line_break] = STATE(139), - [sym__smart_punctuation] = STATE(139), - [sym_autolink] = STATE(139), - [sym_footnote_reference] = STATE(139), - [sym__image] = STATE(139), - [sym_full_reference_image] = STATE(139), - [sym_collapsed_reference_image] = STATE(139), - [sym_inline_image] = STATE(139), - [sym__image_description] = STATE(682), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(139), - [sym_full_reference_link] = STATE(139), - [sym_collapsed_reference_link] = STATE(139), - [sym_inline_link] = STATE(139), - [sym_link_text] = STATE(681), - [sym_span] = STATE(103), - [sym__bracketed_text] = STATE(656), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(139), - [sym_raw_inline] = STATE(139), - [sym_math] = STATE(139), - [sym_verbatim] = STATE(139), - [sym__todo_highlights] = STATE(139), - [sym_todo] = STATE(139), - [sym_note] = STATE(139), - [sym__symbol_fallback] = STATE(139), - [aux_sym__text] = STATE(129), - [aux_sym__inline_repeat1] = STATE(103), - [anon_sym_LBRACE_] = ACTIONS(235), - [anon_sym__] = ACTIONS(237), - [anon_sym_LBRACE_STAR] = ACTIONS(239), - [anon_sym_STAR] = ACTIONS(241), - [anon_sym_LBRACE_CARET] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(243), - [anon_sym_LBRACE_TILDE] = ACTIONS(245), - [anon_sym_TILDE] = ACTIONS(245), - [anon_sym_LBRACE_EQ] = ACTIONS(247), - [anon_sym_LBRACE_PLUS] = ACTIONS(249), - [anon_sym_LBRACE_DASH] = ACTIONS(251), - [anon_sym_BSLASH] = ACTIONS(253), - [sym_quotation_marks] = ACTIONS(255), - [sym_ellipsis] = ACTIONS(255), - [sym_em_dash] = ACTIONS(255), - [sym_en_dash] = ACTIONS(257), - [sym_backslash_escape] = ACTIONS(257), - [anon_sym_LT] = ACTIONS(259), - [sym_symbol] = ACTIONS(255), - [anon_sym_LBRACK_CARET] = ACTIONS(261), - [anon_sym_BANG_LBRACK] = ACTIONS(263), - [anon_sym_LBRACK] = ACTIONS(265), - [anon_sym_DOLLAR] = ACTIONS(267), - [anon_sym_TODO] = ACTIONS(269), - [anon_sym_WIP] = ACTIONS(269), - [anon_sym_NOTE] = ACTIONS(271), - [anon_sym_INFO] = ACTIONS(271), - [anon_sym_XXX] = ACTIONS(271), - [sym_fixme] = ACTIONS(255), - [sym__whitespace1] = ACTIONS(273), - [sym__newline] = ACTIONS(275), - [aux_sym__text_token1] = ACTIONS(277), - [sym__verbatim_begin] = ACTIONS(279), + [88] = { + [sym__inline] = STATE(985), + [sym__element] = STATE(3), + [sym_emphasis] = STATE(137), + [sym_emphasis_begin] = STATE(1193), + [sym_strong] = STATE(137), + [sym_strong_begin] = STATE(1194), + [sym_superscript] = STATE(137), + [sym_superscript_begin] = STATE(1195), + [sym_subscript] = STATE(137), + [sym_subscript_begin] = STATE(1196), + [sym_highlighted] = STATE(137), + [sym_highlighted_begin] = STATE(1197), + [sym_insert] = STATE(137), + [sym_insert_begin] = STATE(1198), + [sym_delete] = STATE(137), + [sym_delete_begin] = STATE(1199), + [sym_hard_line_break] = STATE(137), + [sym__smart_punctuation] = STATE(137), + [sym_autolink] = STATE(137), + [sym_footnote_reference] = STATE(137), + [sym_footnote_marker_begin] = STATE(1200), + [sym__image] = STATE(137), + [sym_full_reference_image] = STATE(137), + [sym_collapsed_reference_image] = STATE(137), + [sym_inline_image] = STATE(137), + [sym__image_description] = STATE(694), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(137), + [sym_full_reference_link] = STATE(137), + [sym_collapsed_reference_link] = STATE(137), + [sym_inline_link] = STATE(137), + [sym_link_text] = STATE(693), + [sym_span] = STATE(3), + [sym__bracketed_text] = STATE(672), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(137), + [sym_raw_inline] = STATE(137), + [sym_math] = STATE(137), + [sym_verbatim] = STATE(137), + [sym__todo_highlights] = STATE(137), + [sym_todo] = STATE(137), + [sym_note] = STATE(137), + [sym__symbol_fallback] = STATE(137), + [aux_sym__text] = STATE(131), + [aux_sym__inline_repeat1] = STATE(3), + [anon_sym_LBRACE_] = ACTIONS(97), + [anon_sym__] = ACTIONS(99), + [anon_sym_LBRACE_STAR] = ACTIONS(101), + [anon_sym_STAR] = ACTIONS(103), + [anon_sym_LBRACE_CARET] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [anon_sym_LBRACE_TILDE] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(107), + [anon_sym_LBRACE_EQ] = ACTIONS(109), + [anon_sym_LBRACE_PLUS] = ACTIONS(111), + [anon_sym_LBRACE_DASH] = ACTIONS(113), + [anon_sym_BSLASH] = ACTIONS(115), + [sym_quotation_marks] = ACTIONS(117), + [sym_ellipsis] = ACTIONS(117), + [sym_em_dash] = ACTIONS(117), + [sym_en_dash] = ACTIONS(119), + [sym_backslash_escape] = ACTIONS(119), + [anon_sym_LT] = ACTIONS(121), + [sym_symbol] = ACTIONS(117), + [anon_sym_LBRACK_CARET] = ACTIONS(123), + [anon_sym_BANG_LBRACK] = ACTIONS(125), + [anon_sym_LBRACK] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_TODO] = ACTIONS(131), + [anon_sym_WIP] = ACTIONS(131), + [anon_sym_NOTE] = ACTIONS(133), + [anon_sym_INFO] = ACTIONS(133), + [anon_sym_XXX] = ACTIONS(133), + [sym_fixme] = ACTIONS(117), + [sym__whitespace1] = ACTIONS(135), + [sym__newline] = ACTIONS(145), + [aux_sym__text_token1] = ACTIONS(139), + [sym__verbatim_begin] = ACTIONS(141), }, - [101] = { - [sym__inline] = STATE(1051), - [sym__element] = STATE(105), + [89] = { + [sym__inline] = STATE(990), + [sym__element] = STATE(107), [sym_emphasis] = STATE(140), - [sym_emphasis_begin] = STATE(1154), + [sym_emphasis_begin] = STATE(1185), [sym_strong] = STATE(140), - [sym_strong_begin] = STATE(1155), + [sym_strong_begin] = STATE(1186), [sym_superscript] = STATE(140), - [sym_superscript_begin] = STATE(1156), + [sym_superscript_begin] = STATE(1187), [sym_subscript] = STATE(140), - [sym_subscript_begin] = STATE(1157), + [sym_subscript_begin] = STATE(1188), [sym_highlighted] = STATE(140), - [sym_highlighted_begin] = STATE(1158), + [sym_highlighted_begin] = STATE(1189), [sym_insert] = STATE(140), - [sym_insert_begin] = STATE(1159), + [sym_insert_begin] = STATE(1190), [sym_delete] = STATE(140), - [sym_delete_begin] = STATE(1160), + [sym_delete_begin] = STATE(1191), [sym_hard_line_break] = STATE(140), [sym__smart_punctuation] = STATE(140), [sym_autolink] = STATE(140), [sym_footnote_reference] = STATE(140), + [sym_footnote_marker_begin] = STATE(1192), [sym__image] = STATE(140), [sym_full_reference_image] = STATE(140), [sym_collapsed_reference_image] = STATE(140), [sym_inline_image] = STATE(140), - [sym__image_description] = STATE(687), - [sym__image_description_begin] = STATE(1103), + [sym__image_description] = STATE(700), + [sym__image_description_begin] = STATE(1114), [sym__link] = STATE(140), [sym_full_reference_link] = STATE(140), [sym_collapsed_reference_link] = STATE(140), [sym_inline_link] = STATE(140), - [sym_link_text] = STATE(688), - [sym_span] = STATE(105), - [sym__bracketed_text] = STATE(654), - [sym__bracketed_text_begin] = STATE(1102), + [sym_link_text] = STATE(699), + [sym_span] = STATE(107), + [sym__bracketed_text] = STATE(666), + [sym__bracketed_text_begin] = STATE(1113), [sym__comment_with_spaces] = STATE(140), [sym_raw_inline] = STATE(140), [sym_math] = STATE(140), @@ -13023,235 +12343,398 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(140), [sym_note] = STATE(140), [sym__symbol_fallback] = STATE(140), - [aux_sym__text] = STATE(131), - [aux_sym__inline_repeat1] = STATE(105), - [anon_sym_LBRACE_] = ACTIONS(327), - [anon_sym__] = ACTIONS(329), - [anon_sym_LBRACE_STAR] = ACTIONS(331), - [anon_sym_STAR] = ACTIONS(333), - [anon_sym_LBRACE_CARET] = ACTIONS(335), - [anon_sym_CARET] = ACTIONS(335), - [anon_sym_LBRACE_TILDE] = ACTIONS(337), - [anon_sym_TILDE] = ACTIONS(337), - [anon_sym_LBRACE_EQ] = ACTIONS(339), - [anon_sym_LBRACE_PLUS] = ACTIONS(341), - [anon_sym_LBRACE_DASH] = ACTIONS(343), - [anon_sym_BSLASH] = ACTIONS(345), - [sym_quotation_marks] = ACTIONS(347), - [sym_ellipsis] = ACTIONS(347), - [sym_em_dash] = ACTIONS(347), - [sym_en_dash] = ACTIONS(349), - [sym_backslash_escape] = ACTIONS(349), - [anon_sym_LT] = ACTIONS(351), - [sym_symbol] = ACTIONS(347), - [anon_sym_LBRACK_CARET] = ACTIONS(353), - [anon_sym_BANG_LBRACK] = ACTIONS(355), - [anon_sym_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [anon_sym_TODO] = ACTIONS(361), - [anon_sym_WIP] = ACTIONS(361), - [anon_sym_NOTE] = ACTIONS(363), - [anon_sym_INFO] = ACTIONS(363), - [anon_sym_XXX] = ACTIONS(363), - [sym_fixme] = ACTIONS(347), - [sym__whitespace1] = ACTIONS(365), - [sym__newline] = ACTIONS(367), - [aux_sym__text_token1] = ACTIONS(369), - [sym__verbatim_begin] = ACTIONS(371), - }, - [102] = { - [sym__inline] = STATE(1009), - [sym__element] = STATE(13), - [sym_emphasis] = STATE(141), - [sym_emphasis_begin] = STATE(1168), - [sym_strong] = STATE(141), - [sym_strong_begin] = STATE(1169), - [sym_superscript] = STATE(141), - [sym_superscript_begin] = STATE(1170), - [sym_subscript] = STATE(141), - [sym_subscript_begin] = STATE(1171), - [sym_highlighted] = STATE(141), - [sym_highlighted_begin] = STATE(1172), - [sym_insert] = STATE(141), - [sym_insert_begin] = STATE(1173), - [sym_delete] = STATE(141), - [sym_delete_begin] = STATE(1174), - [sym_hard_line_break] = STATE(141), - [sym__smart_punctuation] = STATE(141), - [sym_autolink] = STATE(141), - [sym_footnote_reference] = STATE(141), - [sym__image] = STATE(141), - [sym_full_reference_image] = STATE(141), - [sym_collapsed_reference_image] = STATE(141), - [sym_inline_image] = STATE(141), - [sym__image_description] = STATE(674), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(141), - [sym_full_reference_link] = STATE(141), - [sym_collapsed_reference_link] = STATE(141), - [sym_inline_link] = STATE(141), - [sym_link_text] = STATE(672), - [sym_span] = STATE(13), - [sym__bracketed_text] = STATE(655), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(141), - [sym_raw_inline] = STATE(141), - [sym_math] = STATE(141), - [sym_verbatim] = STATE(141), - [sym__todo_highlights] = STATE(141), - [sym_todo] = STATE(141), - [sym_note] = STATE(141), - [sym__symbol_fallback] = STATE(141), - [aux_sym__text] = STATE(128), - [aux_sym__inline_repeat1] = STATE(13), - [anon_sym_LBRACE_] = ACTIONS(281), - [anon_sym__] = ACTIONS(283), - [anon_sym_LBRACE_STAR] = ACTIONS(285), - [anon_sym_STAR] = ACTIONS(287), - [anon_sym_LBRACE_CARET] = ACTIONS(289), - [anon_sym_CARET] = ACTIONS(289), - [anon_sym_LBRACE_TILDE] = ACTIONS(291), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_LBRACE_EQ] = ACTIONS(293), - [anon_sym_LBRACE_PLUS] = ACTIONS(295), - [anon_sym_LBRACE_DASH] = ACTIONS(297), - [anon_sym_BSLASH] = ACTIONS(299), - [sym_quotation_marks] = ACTIONS(301), - [sym_ellipsis] = ACTIONS(301), - [sym_em_dash] = ACTIONS(301), - [sym_en_dash] = ACTIONS(303), - [sym_backslash_escape] = ACTIONS(303), - [anon_sym_LT] = ACTIONS(305), - [sym_symbol] = ACTIONS(301), - [anon_sym_LBRACK_CARET] = ACTIONS(307), - [anon_sym_BANG_LBRACK] = ACTIONS(309), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_DOLLAR] = ACTIONS(313), - [anon_sym_TODO] = ACTIONS(315), - [anon_sym_WIP] = ACTIONS(315), - [anon_sym_NOTE] = ACTIONS(317), - [anon_sym_INFO] = ACTIONS(317), - [anon_sym_XXX] = ACTIONS(317), - [sym_fixme] = ACTIONS(301), - [sym__whitespace1] = ACTIONS(319), - [sym__newline] = ACTIONS(321), - [aux_sym__text_token1] = ACTIONS(323), - [sym__verbatim_begin] = ACTIONS(325), + [aux_sym__text] = STATE(125), + [aux_sym__inline_repeat1] = STATE(107), + [anon_sym_LBRACE_] = ACTIONS(193), + [anon_sym__] = ACTIONS(195), + [anon_sym_LBRACE_STAR] = ACTIONS(197), + [anon_sym_STAR] = ACTIONS(199), + [anon_sym_LBRACE_CARET] = ACTIONS(201), + [anon_sym_CARET] = ACTIONS(201), + [anon_sym_LBRACE_TILDE] = ACTIONS(203), + [anon_sym_TILDE] = ACTIONS(203), + [anon_sym_LBRACE_EQ] = ACTIONS(205), + [anon_sym_LBRACE_PLUS] = ACTIONS(207), + [anon_sym_LBRACE_DASH] = ACTIONS(209), + [anon_sym_BSLASH] = ACTIONS(211), + [sym_quotation_marks] = ACTIONS(213), + [sym_ellipsis] = ACTIONS(213), + [sym_em_dash] = ACTIONS(213), + [sym_en_dash] = ACTIONS(215), + [sym_backslash_escape] = ACTIONS(215), + [anon_sym_LT] = ACTIONS(217), + [sym_symbol] = ACTIONS(213), + [anon_sym_LBRACK_CARET] = ACTIONS(219), + [anon_sym_BANG_LBRACK] = ACTIONS(221), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_DOLLAR] = ACTIONS(225), + [anon_sym_TODO] = ACTIONS(227), + [anon_sym_WIP] = ACTIONS(227), + [anon_sym_NOTE] = ACTIONS(229), + [anon_sym_INFO] = ACTIONS(229), + [anon_sym_XXX] = ACTIONS(229), + [sym_fixme] = ACTIONS(213), + [sym__whitespace1] = ACTIONS(231), + [sym__newline] = ACTIONS(233), + [aux_sym__text_token1] = ACTIONS(235), + [sym__verbatim_begin] = ACTIONS(237), }, - [103] = { - [sym__element] = STATE(36), - [sym_emphasis] = STATE(139), - [sym_emphasis_begin] = STATE(1175), - [sym_strong] = STATE(139), - [sym_strong_begin] = STATE(1176), - [sym_superscript] = STATE(139), - [sym_superscript_begin] = STATE(1177), - [sym_subscript] = STATE(139), - [sym_subscript_begin] = STATE(1178), - [sym_highlighted] = STATE(139), - [sym_highlighted_begin] = STATE(1179), - [sym_insert] = STATE(139), - [sym_insert_begin] = STATE(1180), - [sym_delete] = STATE(139), - [sym_delete_begin] = STATE(1181), - [sym_hard_line_break] = STATE(139), - [sym__smart_punctuation] = STATE(139), - [sym_autolink] = STATE(139), - [sym_footnote_reference] = STATE(139), - [sym__image] = STATE(139), - [sym_full_reference_image] = STATE(139), - [sym_collapsed_reference_image] = STATE(139), - [sym_inline_image] = STATE(139), - [sym__image_description] = STATE(682), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(139), - [sym_full_reference_link] = STATE(139), - [sym_collapsed_reference_link] = STATE(139), - [sym_inline_link] = STATE(139), - [sym_link_text] = STATE(681), - [sym_span] = STATE(36), - [sym__bracketed_text] = STATE(656), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(139), - [sym_raw_inline] = STATE(139), - [sym_math] = STATE(139), - [sym_verbatim] = STATE(139), - [sym__todo_highlights] = STATE(139), - [sym_todo] = STATE(139), - [sym_note] = STATE(139), - [sym__symbol_fallback] = STATE(139), - [aux_sym__text] = STATE(129), - [aux_sym__inline_repeat1] = STATE(36), - [anon_sym_LBRACE_] = ACTIONS(235), - [anon_sym__] = ACTIONS(237), - [anon_sym_LBRACE_STAR] = ACTIONS(239), - [anon_sym_STAR] = ACTIONS(241), - [anon_sym_LBRACE_CARET] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(243), - [anon_sym_LBRACE_TILDE] = ACTIONS(245), - [anon_sym_TILDE] = ACTIONS(245), - [anon_sym_LBRACE_EQ] = ACTIONS(247), - [anon_sym_LBRACE_PLUS] = ACTIONS(249), - [anon_sym_LBRACE_DASH] = ACTIONS(251), - [anon_sym_BSLASH] = ACTIONS(253), - [sym_quotation_marks] = ACTIONS(255), - [sym_ellipsis] = ACTIONS(255), - [sym_em_dash] = ACTIONS(255), - [sym_en_dash] = ACTIONS(257), - [sym_backslash_escape] = ACTIONS(257), - [anon_sym_LT] = ACTIONS(259), - [sym_symbol] = ACTIONS(255), - [anon_sym_LBRACK_CARET] = ACTIONS(261), - [anon_sym_BANG_LBRACK] = ACTIONS(263), - [anon_sym_LBRACK] = ACTIONS(265), - [anon_sym_DOLLAR] = ACTIONS(267), - [anon_sym_TODO] = ACTIONS(269), - [anon_sym_WIP] = ACTIONS(269), - [anon_sym_NOTE] = ACTIONS(271), - [anon_sym_INFO] = ACTIONS(271), - [anon_sym_XXX] = ACTIONS(271), - [sym_fixme] = ACTIONS(255), - [sym__whitespace1] = ACTIONS(273), - [sym__newline] = ACTIONS(941), - [aux_sym__text_token1] = ACTIONS(277), - [sym__verbatim_begin] = ACTIONS(279), - [sym_insert_end] = ACTIONS(467), + [90] = { + [sym__inline] = STATE(991), + [sym__element] = STATE(72), + [sym_emphasis] = STATE(135), + [sym_emphasis_begin] = STATE(1177), + [sym_strong] = STATE(135), + [sym_strong_begin] = STATE(1178), + [sym_superscript] = STATE(135), + [sym_superscript_begin] = STATE(1179), + [sym_subscript] = STATE(135), + [sym_subscript_begin] = STATE(1180), + [sym_highlighted] = STATE(135), + [sym_highlighted_begin] = STATE(1181), + [sym_insert] = STATE(135), + [sym_insert_begin] = STATE(1182), + [sym_delete] = STATE(135), + [sym_delete_begin] = STATE(1183), + [sym_hard_line_break] = STATE(135), + [sym__smart_punctuation] = STATE(135), + [sym_autolink] = STATE(135), + [sym_footnote_reference] = STATE(135), + [sym_footnote_marker_begin] = STATE(1184), + [sym__image] = STATE(135), + [sym_full_reference_image] = STATE(135), + [sym_collapsed_reference_image] = STATE(135), + [sym_inline_image] = STATE(135), + [sym__image_description] = STATE(687), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(135), + [sym_full_reference_link] = STATE(135), + [sym_collapsed_reference_link] = STATE(135), + [sym_inline_link] = STATE(135), + [sym_link_text] = STATE(684), + [sym_span] = STATE(72), + [sym__bracketed_text] = STATE(670), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(135), + [sym_raw_inline] = STATE(135), + [sym_math] = STATE(135), + [sym_verbatim] = STATE(135), + [sym__todo_highlights] = STATE(135), + [sym_todo] = STATE(135), + [sym_note] = STATE(135), + [sym__symbol_fallback] = STATE(135), + [aux_sym__text] = STATE(124), + [aux_sym__inline_repeat1] = STATE(72), + [anon_sym_LBRACE_] = ACTIONS(239), + [anon_sym__] = ACTIONS(241), + [anon_sym_LBRACE_STAR] = ACTIONS(243), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_LBRACE_CARET] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_LBRACE_TILDE] = ACTIONS(249), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_LBRACE_EQ] = ACTIONS(251), + [anon_sym_LBRACE_PLUS] = ACTIONS(253), + [anon_sym_LBRACE_DASH] = ACTIONS(255), + [anon_sym_BSLASH] = ACTIONS(257), + [sym_quotation_marks] = ACTIONS(259), + [sym_ellipsis] = ACTIONS(259), + [sym_em_dash] = ACTIONS(259), + [sym_en_dash] = ACTIONS(261), + [sym_backslash_escape] = ACTIONS(261), + [anon_sym_LT] = ACTIONS(263), + [sym_symbol] = ACTIONS(259), + [anon_sym_LBRACK_CARET] = ACTIONS(265), + [anon_sym_BANG_LBRACK] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_TODO] = ACTIONS(273), + [anon_sym_WIP] = ACTIONS(273), + [anon_sym_NOTE] = ACTIONS(275), + [anon_sym_INFO] = ACTIONS(275), + [anon_sym_XXX] = ACTIONS(275), + [sym_fixme] = ACTIONS(259), + [sym__whitespace1] = ACTIONS(277), + [sym__newline] = ACTIONS(279), + [aux_sym__text_token1] = ACTIONS(281), + [sym__verbatim_begin] = ACTIONS(283), }, - [104] = { - [sym__inline] = STATE(1041), - [sym__element] = STATE(13), - [sym_emphasis] = STATE(141), - [sym_emphasis_begin] = STATE(1168), - [sym_strong] = STATE(141), - [sym_strong_begin] = STATE(1169), - [sym_superscript] = STATE(141), - [sym_superscript_begin] = STATE(1170), - [sym_subscript] = STATE(141), - [sym_subscript_begin] = STATE(1171), - [sym_highlighted] = STATE(141), - [sym_highlighted_begin] = STATE(1172), - [sym_insert] = STATE(141), - [sym_insert_begin] = STATE(1173), - [sym_delete] = STATE(141), - [sym_delete_begin] = STATE(1174), - [sym_hard_line_break] = STATE(141), - [sym__smart_punctuation] = STATE(141), - [sym_autolink] = STATE(141), - [sym_footnote_reference] = STATE(141), + [91] = { + [sym__inline] = STATE(992), + [sym__element] = STATE(82), + [sym_emphasis] = STATE(143), + [sym_emphasis_begin] = STATE(1169), + [sym_strong] = STATE(143), + [sym_strong_begin] = STATE(1170), + [sym_superscript] = STATE(143), + [sym_superscript_begin] = STATE(1171), + [sym_subscript] = STATE(143), + [sym_subscript_begin] = STATE(1172), + [sym_highlighted] = STATE(143), + [sym_highlighted_begin] = STATE(1173), + [sym_insert] = STATE(143), + [sym_insert_begin] = STATE(1174), + [sym_delete] = STATE(143), + [sym_delete_begin] = STATE(1175), + [sym_hard_line_break] = STATE(143), + [sym__smart_punctuation] = STATE(143), + [sym_autolink] = STATE(143), + [sym_footnote_reference] = STATE(143), + [sym_footnote_marker_begin] = STATE(1176), + [sym__image] = STATE(143), + [sym_full_reference_image] = STATE(143), + [sym_collapsed_reference_image] = STATE(143), + [sym_inline_image] = STATE(143), + [sym__image_description] = STATE(701), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(143), + [sym_full_reference_link] = STATE(143), + [sym_collapsed_reference_link] = STATE(143), + [sym_inline_link] = STATE(143), + [sym_link_text] = STATE(702), + [sym_span] = STATE(82), + [sym__bracketed_text] = STATE(667), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(143), + [sym_raw_inline] = STATE(143), + [sym_math] = STATE(143), + [sym_verbatim] = STATE(143), + [sym__todo_highlights] = STATE(143), + [sym_todo] = STATE(143), + [sym_note] = STATE(143), + [sym__symbol_fallback] = STATE(143), + [aux_sym__text] = STATE(126), + [aux_sym__inline_repeat1] = STATE(82), + [anon_sym_LBRACE_] = ACTIONS(285), + [anon_sym__] = ACTIONS(287), + [anon_sym_LBRACE_STAR] = ACTIONS(289), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_LBRACE_CARET] = ACTIONS(293), + [anon_sym_CARET] = ACTIONS(293), + [anon_sym_LBRACE_TILDE] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_LBRACE_EQ] = ACTIONS(297), + [anon_sym_LBRACE_PLUS] = ACTIONS(299), + [anon_sym_LBRACE_DASH] = ACTIONS(301), + [anon_sym_BSLASH] = ACTIONS(303), + [sym_quotation_marks] = ACTIONS(305), + [sym_ellipsis] = ACTIONS(305), + [sym_em_dash] = ACTIONS(305), + [sym_en_dash] = ACTIONS(307), + [sym_backslash_escape] = ACTIONS(307), + [anon_sym_LT] = ACTIONS(309), + [sym_symbol] = ACTIONS(305), + [anon_sym_LBRACK_CARET] = ACTIONS(311), + [anon_sym_BANG_LBRACK] = ACTIONS(313), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_DOLLAR] = ACTIONS(317), + [anon_sym_TODO] = ACTIONS(319), + [anon_sym_WIP] = ACTIONS(319), + [anon_sym_NOTE] = ACTIONS(321), + [anon_sym_INFO] = ACTIONS(321), + [anon_sym_XXX] = ACTIONS(321), + [sym_fixme] = ACTIONS(305), + [sym__whitespace1] = ACTIONS(323), + [sym__newline] = ACTIONS(325), + [aux_sym__text_token1] = ACTIONS(327), + [sym__verbatim_begin] = ACTIONS(329), + }, + [92] = { + [sym__inline_without_trailing_space] = STATE(993), + [sym__element] = STATE(572), + [sym_emphasis] = STATE(138), + [sym_emphasis_begin] = STATE(1161), + [sym_strong] = STATE(138), + [sym_strong_begin] = STATE(1162), + [sym_superscript] = STATE(138), + [sym_superscript_begin] = STATE(1163), + [sym_subscript] = STATE(138), + [sym_subscript_begin] = STATE(1164), + [sym_highlighted] = STATE(138), + [sym_highlighted_begin] = STATE(1165), + [sym_insert] = STATE(138), + [sym_insert_begin] = STATE(1166), + [sym_delete] = STATE(138), + [sym_delete_begin] = STATE(1167), + [sym_hard_line_break] = STATE(138), + [sym__smart_punctuation] = STATE(138), + [sym_autolink] = STATE(138), + [sym_footnote_reference] = STATE(138), + [sym_footnote_marker_begin] = STATE(1168), + [sym__image] = STATE(138), + [sym_full_reference_image] = STATE(138), + [sym_collapsed_reference_image] = STATE(138), + [sym_inline_image] = STATE(138), + [sym__image_description] = STATE(703), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(138), + [sym_full_reference_link] = STATE(138), + [sym_collapsed_reference_link] = STATE(138), + [sym_inline_link] = STATE(138), + [sym_link_text] = STATE(697), + [sym_span] = STATE(572), + [sym__bracketed_text] = STATE(671), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(138), + [sym_raw_inline] = STATE(138), + [sym_math] = STATE(138), + [sym_verbatim] = STATE(138), + [sym__todo_highlights] = STATE(138), + [sym_todo] = STATE(138), + [sym_note] = STATE(138), + [sym__symbol_fallback] = STATE(138), + [aux_sym__text] = STATE(122), + [aux_sym__inline_repeat1] = STATE(120), + [anon_sym_LBRACE_] = ACTIONS(331), + [anon_sym__] = ACTIONS(333), + [anon_sym_LBRACE_STAR] = ACTIONS(335), + [anon_sym_STAR] = ACTIONS(337), + [anon_sym_LBRACE_CARET] = ACTIONS(339), + [anon_sym_CARET] = ACTIONS(339), + [anon_sym_LBRACE_TILDE] = ACTIONS(341), + [anon_sym_TILDE] = ACTIONS(341), + [anon_sym_LBRACE_EQ] = ACTIONS(343), + [anon_sym_LBRACE_PLUS] = ACTIONS(345), + [anon_sym_LBRACE_DASH] = ACTIONS(347), + [anon_sym_BSLASH] = ACTIONS(349), + [sym_quotation_marks] = ACTIONS(351), + [sym_ellipsis] = ACTIONS(351), + [sym_em_dash] = ACTIONS(351), + [sym_en_dash] = ACTIONS(353), + [sym_backslash_escape] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [sym_symbol] = ACTIONS(351), + [anon_sym_LBRACK_CARET] = ACTIONS(357), + [anon_sym_BANG_LBRACK] = ACTIONS(359), + [anon_sym_LBRACK] = ACTIONS(361), + [anon_sym_DOLLAR] = ACTIONS(363), + [anon_sym_TODO] = ACTIONS(365), + [anon_sym_WIP] = ACTIONS(365), + [anon_sym_NOTE] = ACTIONS(367), + [anon_sym_INFO] = ACTIONS(367), + [anon_sym_XXX] = ACTIONS(367), + [sym_fixme] = ACTIONS(351), + [sym__whitespace1] = ACTIONS(369), + [sym__newline] = ACTIONS(371), + [aux_sym__text_token1] = ACTIONS(373), + [sym__verbatim_begin] = ACTIONS(375), + }, + [93] = { + [sym__inline] = STATE(1144), + [sym__element] = STATE(82), + [sym_emphasis] = STATE(143), + [sym_emphasis_begin] = STATE(1169), + [sym_strong] = STATE(143), + [sym_strong_begin] = STATE(1170), + [sym_superscript] = STATE(143), + [sym_superscript_begin] = STATE(1171), + [sym_subscript] = STATE(143), + [sym_subscript_begin] = STATE(1172), + [sym_highlighted] = STATE(143), + [sym_highlighted_begin] = STATE(1173), + [sym_insert] = STATE(143), + [sym_insert_begin] = STATE(1174), + [sym_delete] = STATE(143), + [sym_delete_begin] = STATE(1175), + [sym_hard_line_break] = STATE(143), + [sym__smart_punctuation] = STATE(143), + [sym_autolink] = STATE(143), + [sym_footnote_reference] = STATE(143), + [sym_footnote_marker_begin] = STATE(1176), + [sym__image] = STATE(143), + [sym_full_reference_image] = STATE(143), + [sym_collapsed_reference_image] = STATE(143), + [sym_inline_image] = STATE(143), + [sym__image_description] = STATE(701), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(143), + [sym_full_reference_link] = STATE(143), + [sym_collapsed_reference_link] = STATE(143), + [sym_inline_link] = STATE(143), + [sym_link_text] = STATE(702), + [sym_span] = STATE(82), + [sym__bracketed_text] = STATE(667), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(143), + [sym_raw_inline] = STATE(143), + [sym_math] = STATE(143), + [sym_verbatim] = STATE(143), + [sym__todo_highlights] = STATE(143), + [sym_todo] = STATE(143), + [sym_note] = STATE(143), + [sym__symbol_fallback] = STATE(143), + [aux_sym__text] = STATE(126), + [aux_sym__inline_repeat1] = STATE(82), + [anon_sym_LBRACE_] = ACTIONS(285), + [anon_sym__] = ACTIONS(287), + [anon_sym_LBRACE_STAR] = ACTIONS(289), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_LBRACE_CARET] = ACTIONS(293), + [anon_sym_CARET] = ACTIONS(293), + [anon_sym_LBRACE_TILDE] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_LBRACE_EQ] = ACTIONS(297), + [anon_sym_LBRACE_PLUS] = ACTIONS(299), + [anon_sym_LBRACE_DASH] = ACTIONS(301), + [anon_sym_BSLASH] = ACTIONS(303), + [sym_quotation_marks] = ACTIONS(305), + [sym_ellipsis] = ACTIONS(305), + [sym_em_dash] = ACTIONS(305), + [sym_en_dash] = ACTIONS(307), + [sym_backslash_escape] = ACTIONS(307), + [anon_sym_LT] = ACTIONS(309), + [sym_symbol] = ACTIONS(305), + [anon_sym_LBRACK_CARET] = ACTIONS(311), + [anon_sym_BANG_LBRACK] = ACTIONS(313), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_DOLLAR] = ACTIONS(317), + [anon_sym_TODO] = ACTIONS(319), + [anon_sym_WIP] = ACTIONS(319), + [anon_sym_NOTE] = ACTIONS(321), + [anon_sym_INFO] = ACTIONS(321), + [anon_sym_XXX] = ACTIONS(321), + [sym_fixme] = ACTIONS(305), + [sym__whitespace1] = ACTIONS(323), + [sym__newline] = ACTIONS(325), + [aux_sym__text_token1] = ACTIONS(327), + [sym__verbatim_begin] = ACTIONS(329), + }, + [94] = { + [sym__inline_without_trailing_space] = STATE(994), + [sym__element] = STATE(538), + [sym_emphasis] = STATE(141), + [sym_emphasis_begin] = STATE(1153), + [sym_strong] = STATE(141), + [sym_strong_begin] = STATE(1154), + [sym_superscript] = STATE(141), + [sym_superscript_begin] = STATE(1155), + [sym_subscript] = STATE(141), + [sym_subscript_begin] = STATE(1156), + [sym_highlighted] = STATE(141), + [sym_highlighted_begin] = STATE(1157), + [sym_insert] = STATE(141), + [sym_insert_begin] = STATE(1158), + [sym_delete] = STATE(141), + [sym_delete_begin] = STATE(1159), + [sym_hard_line_break] = STATE(141), + [sym__smart_punctuation] = STATE(141), + [sym_autolink] = STATE(141), + [sym_footnote_reference] = STATE(141), + [sym_footnote_marker_begin] = STATE(1160), [sym__image] = STATE(141), [sym_full_reference_image] = STATE(141), [sym_collapsed_reference_image] = STATE(141), [sym_inline_image] = STATE(141), - [sym__image_description] = STATE(674), - [sym__image_description_begin] = STATE(1103), + [sym__image_description] = STATE(681), + [sym__image_description_begin] = STATE(1114), [sym__link] = STATE(141), [sym_full_reference_link] = STATE(141), [sym_collapsed_reference_link] = STATE(141), [sym_inline_link] = STATE(141), - [sym_link_text] = STATE(672), - [sym_span] = STATE(13), - [sym__bracketed_text] = STATE(655), - [sym__bracketed_text_begin] = STATE(1102), + [sym_link_text] = STATE(680), + [sym_span] = STATE(538), + [sym__bracketed_text] = STATE(664), + [sym__bracketed_text_begin] = STATE(1113), [sym__comment_with_spaces] = STATE(141), [sym_raw_inline] = STATE(141), [sym_math] = STATE(141), @@ -13261,155 +12744,237 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_note] = STATE(141), [sym__symbol_fallback] = STATE(141), [aux_sym__text] = STATE(128), - [aux_sym__inline_repeat1] = STATE(13), - [anon_sym_LBRACE_] = ACTIONS(281), - [anon_sym__] = ACTIONS(283), - [anon_sym_LBRACE_STAR] = ACTIONS(285), - [anon_sym_STAR] = ACTIONS(287), - [anon_sym_LBRACE_CARET] = ACTIONS(289), - [anon_sym_CARET] = ACTIONS(289), - [anon_sym_LBRACE_TILDE] = ACTIONS(291), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_LBRACE_EQ] = ACTIONS(293), - [anon_sym_LBRACE_PLUS] = ACTIONS(295), - [anon_sym_LBRACE_DASH] = ACTIONS(297), - [anon_sym_BSLASH] = ACTIONS(299), - [sym_quotation_marks] = ACTIONS(301), - [sym_ellipsis] = ACTIONS(301), - [sym_em_dash] = ACTIONS(301), - [sym_en_dash] = ACTIONS(303), - [sym_backslash_escape] = ACTIONS(303), - [anon_sym_LT] = ACTIONS(305), - [sym_symbol] = ACTIONS(301), - [anon_sym_LBRACK_CARET] = ACTIONS(307), - [anon_sym_BANG_LBRACK] = ACTIONS(309), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_DOLLAR] = ACTIONS(313), - [anon_sym_TODO] = ACTIONS(315), - [anon_sym_WIP] = ACTIONS(315), - [anon_sym_NOTE] = ACTIONS(317), - [anon_sym_INFO] = ACTIONS(317), - [anon_sym_XXX] = ACTIONS(317), - [sym_fixme] = ACTIONS(301), - [sym__whitespace1] = ACTIONS(319), - [sym__newline] = ACTIONS(321), - [aux_sym__text_token1] = ACTIONS(323), - [sym__verbatim_begin] = ACTIONS(325), + [aux_sym__inline_repeat1] = STATE(119), + [anon_sym_LBRACE_] = ACTIONS(147), + [anon_sym__] = ACTIONS(149), + [anon_sym_LBRACE_STAR] = ACTIONS(151), + [anon_sym_STAR] = ACTIONS(153), + [anon_sym_LBRACE_CARET] = ACTIONS(155), + [anon_sym_CARET] = ACTIONS(155), + [anon_sym_LBRACE_TILDE] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_LBRACE_EQ] = ACTIONS(159), + [anon_sym_LBRACE_PLUS] = ACTIONS(161), + [anon_sym_LBRACE_DASH] = ACTIONS(163), + [anon_sym_BSLASH] = ACTIONS(165), + [sym_quotation_marks] = ACTIONS(167), + [sym_ellipsis] = ACTIONS(167), + [sym_em_dash] = ACTIONS(167), + [sym_en_dash] = ACTIONS(169), + [sym_backslash_escape] = ACTIONS(169), + [anon_sym_LT] = ACTIONS(171), + [sym_symbol] = ACTIONS(167), + [anon_sym_LBRACK_CARET] = ACTIONS(173), + [anon_sym_BANG_LBRACK] = ACTIONS(175), + [anon_sym_LBRACK] = ACTIONS(177), + [anon_sym_DOLLAR] = ACTIONS(179), + [anon_sym_TODO] = ACTIONS(181), + [anon_sym_WIP] = ACTIONS(181), + [anon_sym_NOTE] = ACTIONS(183), + [anon_sym_INFO] = ACTIONS(183), + [anon_sym_XXX] = ACTIONS(183), + [sym_fixme] = ACTIONS(167), + [sym__whitespace1] = ACTIONS(185), + [sym__newline] = ACTIONS(187), + [aux_sym__text_token1] = ACTIONS(189), + [sym__verbatim_begin] = ACTIONS(191), }, - [105] = { + [95] = { + [sym__inline] = STATE(1024), + [sym__element] = STATE(47), + [sym_emphasis] = STATE(136), + [sym_emphasis_begin] = STATE(1209), + [sym_strong] = STATE(136), + [sym_strong_begin] = STATE(1210), + [sym_superscript] = STATE(136), + [sym_superscript_begin] = STATE(1211), + [sym_subscript] = STATE(136), + [sym_subscript_begin] = STATE(1212), + [sym_highlighted] = STATE(136), + [sym_highlighted_begin] = STATE(1213), + [sym_insert] = STATE(136), + [sym_insert_begin] = STATE(1214), + [sym_delete] = STATE(136), + [sym_delete_begin] = STATE(1215), + [sym_hard_line_break] = STATE(136), + [sym__smart_punctuation] = STATE(136), + [sym_autolink] = STATE(136), + [sym_footnote_reference] = STATE(136), + [sym_footnote_marker_begin] = STATE(1216), + [sym__image] = STATE(136), + [sym_full_reference_image] = STATE(136), + [sym_collapsed_reference_image] = STATE(136), + [sym_inline_image] = STATE(136), + [sym__image_description] = STATE(682), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(136), + [sym_full_reference_link] = STATE(136), + [sym_collapsed_reference_link] = STATE(136), + [sym_inline_link] = STATE(136), + [sym_link_text] = STATE(675), + [sym_span] = STATE(47), + [sym__bracketed_text] = STATE(674), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(136), + [sym_raw_inline] = STATE(136), + [sym_math] = STATE(136), + [sym_verbatim] = STATE(136), + [sym__todo_highlights] = STATE(136), + [sym_todo] = STATE(136), + [sym_note] = STATE(136), + [sym__symbol_fallback] = STATE(136), + [aux_sym__text] = STATE(127), + [aux_sym__inline_repeat1] = STATE(47), + [anon_sym_LBRACE_] = ACTIONS(377), + [anon_sym__] = ACTIONS(379), + [anon_sym_LBRACE_STAR] = ACTIONS(381), + [anon_sym_STAR] = ACTIONS(383), + [anon_sym_LBRACE_CARET] = ACTIONS(385), + [anon_sym_CARET] = ACTIONS(385), + [anon_sym_LBRACE_TILDE] = ACTIONS(387), + [anon_sym_TILDE] = ACTIONS(387), + [anon_sym_LBRACE_EQ] = ACTIONS(389), + [anon_sym_LBRACE_PLUS] = ACTIONS(391), + [anon_sym_LBRACE_DASH] = ACTIONS(393), + [anon_sym_BSLASH] = ACTIONS(395), + [sym_quotation_marks] = ACTIONS(397), + [sym_ellipsis] = ACTIONS(397), + [sym_em_dash] = ACTIONS(397), + [sym_en_dash] = ACTIONS(399), + [sym_backslash_escape] = ACTIONS(399), + [anon_sym_LT] = ACTIONS(401), + [sym_symbol] = ACTIONS(397), + [anon_sym_LBRACK_CARET] = ACTIONS(403), + [anon_sym_BANG_LBRACK] = ACTIONS(405), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_DOLLAR] = ACTIONS(409), + [anon_sym_TODO] = ACTIONS(411), + [anon_sym_WIP] = ACTIONS(411), + [anon_sym_NOTE] = ACTIONS(413), + [anon_sym_INFO] = ACTIONS(413), + [anon_sym_XXX] = ACTIONS(413), + [sym_fixme] = ACTIONS(397), + [sym__whitespace1] = ACTIONS(415), + [sym__newline] = ACTIONS(417), + [aux_sym__text_token1] = ACTIONS(419), + [sym__verbatim_begin] = ACTIONS(421), + }, + [96] = { + [sym__inline] = STATE(1027), [sym__element] = STATE(14), - [sym_emphasis] = STATE(140), - [sym_emphasis_begin] = STATE(1154), - [sym_strong] = STATE(140), - [sym_strong_begin] = STATE(1155), - [sym_superscript] = STATE(140), - [sym_superscript_begin] = STATE(1156), - [sym_subscript] = STATE(140), - [sym_subscript_begin] = STATE(1157), - [sym_highlighted] = STATE(140), - [sym_highlighted_begin] = STATE(1158), - [sym_insert] = STATE(140), - [sym_insert_begin] = STATE(1159), - [sym_delete] = STATE(140), - [sym_delete_begin] = STATE(1160), - [sym_hard_line_break] = STATE(140), - [sym__smart_punctuation] = STATE(140), - [sym_autolink] = STATE(140), - [sym_footnote_reference] = STATE(140), - [sym__image] = STATE(140), - [sym_full_reference_image] = STATE(140), - [sym_collapsed_reference_image] = STATE(140), - [sym_inline_image] = STATE(140), - [sym__image_description] = STATE(687), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(140), - [sym_full_reference_link] = STATE(140), - [sym_collapsed_reference_link] = STATE(140), - [sym_inline_link] = STATE(140), - [sym_link_text] = STATE(688), + [sym_emphasis] = STATE(133), + [sym_emphasis_begin] = STATE(1201), + [sym_strong] = STATE(133), + [sym_strong_begin] = STATE(1202), + [sym_superscript] = STATE(133), + [sym_superscript_begin] = STATE(1203), + [sym_subscript] = STATE(133), + [sym_subscript_begin] = STATE(1204), + [sym_highlighted] = STATE(133), + [sym_highlighted_begin] = STATE(1205), + [sym_insert] = STATE(133), + [sym_insert_begin] = STATE(1206), + [sym_delete] = STATE(133), + [sym_delete_begin] = STATE(1207), + [sym_hard_line_break] = STATE(133), + [sym__smart_punctuation] = STATE(133), + [sym_autolink] = STATE(133), + [sym_footnote_reference] = STATE(133), + [sym_footnote_marker_begin] = STATE(1208), + [sym__image] = STATE(133), + [sym_full_reference_image] = STATE(133), + [sym_collapsed_reference_image] = STATE(133), + [sym_inline_image] = STATE(133), + [sym__image_description] = STATE(688), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(133), + [sym_full_reference_link] = STATE(133), + [sym_collapsed_reference_link] = STATE(133), + [sym_inline_link] = STATE(133), + [sym_link_text] = STATE(686), [sym_span] = STATE(14), - [sym__bracketed_text] = STATE(654), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(140), - [sym_raw_inline] = STATE(140), - [sym_math] = STATE(140), - [sym_verbatim] = STATE(140), - [sym__todo_highlights] = STATE(140), - [sym_todo] = STATE(140), - [sym_note] = STATE(140), - [sym__symbol_fallback] = STATE(140), - [aux_sym__text] = STATE(131), + [sym__bracketed_text] = STATE(673), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(133), + [sym_raw_inline] = STATE(133), + [sym_math] = STATE(133), + [sym_verbatim] = STATE(133), + [sym__todo_highlights] = STATE(133), + [sym_todo] = STATE(133), + [sym_note] = STATE(133), + [sym__symbol_fallback] = STATE(133), + [aux_sym__text] = STATE(129), [aux_sym__inline_repeat1] = STATE(14), - [anon_sym_LBRACE_] = ACTIONS(327), - [anon_sym__] = ACTIONS(329), - [anon_sym_LBRACE_STAR] = ACTIONS(331), - [anon_sym_STAR] = ACTIONS(333), - [anon_sym_LBRACE_CARET] = ACTIONS(335), - [anon_sym_CARET] = ACTIONS(335), - [anon_sym_LBRACE_TILDE] = ACTIONS(337), - [anon_sym_TILDE] = ACTIONS(337), - [anon_sym_LBRACE_EQ] = ACTIONS(339), - [anon_sym_LBRACE_PLUS] = ACTIONS(341), - [anon_sym_LBRACE_DASH] = ACTIONS(343), - [anon_sym_BSLASH] = ACTIONS(345), - [sym_quotation_marks] = ACTIONS(347), - [sym_ellipsis] = ACTIONS(347), - [sym_em_dash] = ACTIONS(347), - [sym_en_dash] = ACTIONS(349), - [sym_backslash_escape] = ACTIONS(349), - [anon_sym_LT] = ACTIONS(351), - [sym_symbol] = ACTIONS(347), - [anon_sym_LBRACK_CARET] = ACTIONS(353), - [anon_sym_BANG_LBRACK] = ACTIONS(355), - [anon_sym_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [anon_sym_TODO] = ACTIONS(361), - [anon_sym_WIP] = ACTIONS(361), - [anon_sym_NOTE] = ACTIONS(363), - [anon_sym_INFO] = ACTIONS(363), - [anon_sym_XXX] = ACTIONS(363), - [sym_fixme] = ACTIONS(347), - [sym__whitespace1] = ACTIONS(365), - [sym__newline] = ACTIONS(943), - [aux_sym__text_token1] = ACTIONS(369), - [sym__verbatim_begin] = ACTIONS(371), - [sym_superscript_end] = ACTIONS(467), + [anon_sym_LBRACE_] = ACTIONS(423), + [anon_sym__] = ACTIONS(425), + [anon_sym_LBRACE_STAR] = ACTIONS(427), + [anon_sym_STAR] = ACTIONS(429), + [anon_sym_LBRACE_CARET] = ACTIONS(431), + [anon_sym_CARET] = ACTIONS(431), + [anon_sym_LBRACE_TILDE] = ACTIONS(433), + [anon_sym_TILDE] = ACTIONS(433), + [anon_sym_LBRACE_EQ] = ACTIONS(435), + [anon_sym_LBRACE_PLUS] = ACTIONS(437), + [anon_sym_LBRACE_DASH] = ACTIONS(439), + [anon_sym_BSLASH] = ACTIONS(441), + [sym_quotation_marks] = ACTIONS(443), + [sym_ellipsis] = ACTIONS(443), + [sym_em_dash] = ACTIONS(443), + [sym_en_dash] = ACTIONS(445), + [sym_backslash_escape] = ACTIONS(445), + [anon_sym_LT] = ACTIONS(447), + [sym_symbol] = ACTIONS(443), + [anon_sym_LBRACK_CARET] = ACTIONS(449), + [anon_sym_BANG_LBRACK] = ACTIONS(451), + [anon_sym_LBRACK] = ACTIONS(453), + [anon_sym_DOLLAR] = ACTIONS(455), + [anon_sym_TODO] = ACTIONS(457), + [anon_sym_WIP] = ACTIONS(457), + [anon_sym_NOTE] = ACTIONS(459), + [anon_sym_INFO] = ACTIONS(459), + [anon_sym_XXX] = ACTIONS(459), + [sym_fixme] = ACTIONS(443), + [sym__whitespace1] = ACTIONS(461), + [sym__newline] = ACTIONS(469), + [aux_sym__text_token1] = ACTIONS(465), + [sym__verbatim_begin] = ACTIONS(467), }, - [106] = { - [sym__inline] = STATE(970), - [sym__element] = STATE(65), + [97] = { + [sym__inline] = STATE(1134), + [sym__element] = STATE(14), [sym_emphasis] = STATE(133), - [sym_emphasis_begin] = STATE(1189), + [sym_emphasis_begin] = STATE(1201), [sym_strong] = STATE(133), - [sym_strong_begin] = STATE(1190), + [sym_strong_begin] = STATE(1202), [sym_superscript] = STATE(133), - [sym_superscript_begin] = STATE(1191), + [sym_superscript_begin] = STATE(1203), [sym_subscript] = STATE(133), - [sym_subscript_begin] = STATE(1192), + [sym_subscript_begin] = STATE(1204), [sym_highlighted] = STATE(133), - [sym_highlighted_begin] = STATE(1193), + [sym_highlighted_begin] = STATE(1205), [sym_insert] = STATE(133), - [sym_insert_begin] = STATE(1194), + [sym_insert_begin] = STATE(1206), [sym_delete] = STATE(133), - [sym_delete_begin] = STATE(1195), + [sym_delete_begin] = STATE(1207), [sym_hard_line_break] = STATE(133), [sym__smart_punctuation] = STATE(133), [sym_autolink] = STATE(133), [sym_footnote_reference] = STATE(133), + [sym_footnote_marker_begin] = STATE(1208), [sym__image] = STATE(133), [sym_full_reference_image] = STATE(133), [sym_collapsed_reference_image] = STATE(133), [sym_inline_image] = STATE(133), - [sym__image_description] = STATE(670), - [sym__image_description_begin] = STATE(1103), + [sym__image_description] = STATE(688), + [sym__image_description_begin] = STATE(1114), [sym__link] = STATE(133), [sym_full_reference_link] = STATE(133), [sym_collapsed_reference_link] = STATE(133), [sym_inline_link] = STATE(133), - [sym_link_text] = STATE(663), - [sym_span] = STATE(65), - [sym__bracketed_text] = STATE(662), - [sym__bracketed_text_begin] = STATE(1102), + [sym_link_text] = STATE(686), + [sym_span] = STATE(14), + [sym__bracketed_text] = STATE(673), + [sym__bracketed_text_begin] = STATE(1113), [sym__comment_with_spaces] = STATE(133), [sym_raw_inline] = STATE(133), [sym_math] = STATE(133), @@ -13418,155 +12983,238 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(133), [sym_note] = STATE(133), [sym__symbol_fallback] = STATE(133), - [aux_sym__text] = STATE(123), - [aux_sym__inline_repeat1] = STATE(65), - [anon_sym_LBRACE_] = ACTIONS(143), - [anon_sym__] = ACTIONS(145), - [anon_sym_LBRACE_STAR] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_LBRACE_CARET] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(151), - [anon_sym_LBRACE_TILDE] = ACTIONS(153), - [anon_sym_TILDE] = ACTIONS(153), - [anon_sym_LBRACE_EQ] = ACTIONS(155), - [anon_sym_LBRACE_PLUS] = ACTIONS(157), - [anon_sym_LBRACE_DASH] = ACTIONS(159), - [anon_sym_BSLASH] = ACTIONS(161), - [sym_quotation_marks] = ACTIONS(163), - [sym_ellipsis] = ACTIONS(163), - [sym_em_dash] = ACTIONS(163), - [sym_en_dash] = ACTIONS(165), - [sym_backslash_escape] = ACTIONS(165), - [anon_sym_LT] = ACTIONS(167), - [sym_symbol] = ACTIONS(163), - [anon_sym_LBRACK_CARET] = ACTIONS(169), - [anon_sym_BANG_LBRACK] = ACTIONS(171), - [anon_sym_LBRACK] = ACTIONS(173), - [anon_sym_DOLLAR] = ACTIONS(175), - [anon_sym_TODO] = ACTIONS(177), - [anon_sym_WIP] = ACTIONS(177), - [anon_sym_NOTE] = ACTIONS(179), - [anon_sym_INFO] = ACTIONS(179), - [anon_sym_XXX] = ACTIONS(179), - [sym_fixme] = ACTIONS(163), - [sym__whitespace1] = ACTIONS(181), - [sym__newline] = ACTIONS(183), - [aux_sym__text_token1] = ACTIONS(185), - [sym__verbatim_begin] = ACTIONS(187), + [aux_sym__text] = STATE(129), + [aux_sym__inline_repeat1] = STATE(14), + [anon_sym_LBRACE_] = ACTIONS(423), + [anon_sym__] = ACTIONS(425), + [anon_sym_LBRACE_STAR] = ACTIONS(427), + [anon_sym_STAR] = ACTIONS(429), + [anon_sym_LBRACE_CARET] = ACTIONS(431), + [anon_sym_CARET] = ACTIONS(431), + [anon_sym_LBRACE_TILDE] = ACTIONS(433), + [anon_sym_TILDE] = ACTIONS(433), + [anon_sym_LBRACE_EQ] = ACTIONS(435), + [anon_sym_LBRACE_PLUS] = ACTIONS(437), + [anon_sym_LBRACE_DASH] = ACTIONS(439), + [anon_sym_BSLASH] = ACTIONS(441), + [sym_quotation_marks] = ACTIONS(443), + [sym_ellipsis] = ACTIONS(443), + [sym_em_dash] = ACTIONS(443), + [sym_en_dash] = ACTIONS(445), + [sym_backslash_escape] = ACTIONS(445), + [anon_sym_LT] = ACTIONS(447), + [sym_symbol] = ACTIONS(443), + [anon_sym_LBRACK_CARET] = ACTIONS(449), + [anon_sym_BANG_LBRACK] = ACTIONS(451), + [anon_sym_LBRACK] = ACTIONS(453), + [anon_sym_DOLLAR] = ACTIONS(455), + [anon_sym_TODO] = ACTIONS(457), + [anon_sym_WIP] = ACTIONS(457), + [anon_sym_NOTE] = ACTIONS(459), + [anon_sym_INFO] = ACTIONS(459), + [anon_sym_XXX] = ACTIONS(459), + [sym_fixme] = ACTIONS(443), + [sym__whitespace1] = ACTIONS(461), + [sym__newline] = ACTIONS(469), + [aux_sym__text_token1] = ACTIONS(465), + [sym__verbatim_begin] = ACTIONS(467), }, - [107] = { - [sym__inline] = STATE(1036), - [sym__element] = STATE(21), - [sym_emphasis] = STATE(134), - [sym_emphasis_begin] = STATE(1182), - [sym_strong] = STATE(134), - [sym_strong_begin] = STATE(1183), - [sym_superscript] = STATE(134), - [sym_superscript_begin] = STATE(1184), - [sym_subscript] = STATE(134), - [sym_subscript_begin] = STATE(1185), - [sym_highlighted] = STATE(134), - [sym_highlighted_begin] = STATE(1186), - [sym_insert] = STATE(134), - [sym_insert_begin] = STATE(1187), - [sym_delete] = STATE(134), - [sym_delete_begin] = STATE(1188), - [sym_hard_line_break] = STATE(134), - [sym__smart_punctuation] = STATE(134), - [sym_autolink] = STATE(134), - [sym_footnote_reference] = STATE(134), - [sym__image] = STATE(134), - [sym_full_reference_image] = STATE(134), - [sym_collapsed_reference_image] = STATE(134), - [sym_inline_image] = STATE(134), - [sym__image_description] = STATE(677), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(134), - [sym_full_reference_link] = STATE(134), - [sym_collapsed_reference_link] = STATE(134), - [sym_inline_link] = STATE(134), + [98] = { + [sym__inline] = STATE(1132), + [sym__element] = STATE(47), + [sym_emphasis] = STATE(136), + [sym_emphasis_begin] = STATE(1209), + [sym_strong] = STATE(136), + [sym_strong_begin] = STATE(1210), + [sym_superscript] = STATE(136), + [sym_superscript_begin] = STATE(1211), + [sym_subscript] = STATE(136), + [sym_subscript_begin] = STATE(1212), + [sym_highlighted] = STATE(136), + [sym_highlighted_begin] = STATE(1213), + [sym_insert] = STATE(136), + [sym_insert_begin] = STATE(1214), + [sym_delete] = STATE(136), + [sym_delete_begin] = STATE(1215), + [sym_hard_line_break] = STATE(136), + [sym__smart_punctuation] = STATE(136), + [sym_autolink] = STATE(136), + [sym_footnote_reference] = STATE(136), + [sym_footnote_marker_begin] = STATE(1216), + [sym__image] = STATE(136), + [sym_full_reference_image] = STATE(136), + [sym_collapsed_reference_image] = STATE(136), + [sym_inline_image] = STATE(136), + [sym__image_description] = STATE(682), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(136), + [sym_full_reference_link] = STATE(136), + [sym_collapsed_reference_link] = STATE(136), + [sym_inline_link] = STATE(136), [sym_link_text] = STATE(675), - [sym_span] = STATE(21), - [sym__bracketed_text] = STATE(660), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(134), - [sym_raw_inline] = STATE(134), - [sym_math] = STATE(134), - [sym_verbatim] = STATE(134), - [sym__todo_highlights] = STATE(134), - [sym_todo] = STATE(134), - [sym_note] = STATE(134), - [sym__symbol_fallback] = STATE(134), + [sym_span] = STATE(47), + [sym__bracketed_text] = STATE(674), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(136), + [sym_raw_inline] = STATE(136), + [sym_math] = STATE(136), + [sym_verbatim] = STATE(136), + [sym__todo_highlights] = STATE(136), + [sym_todo] = STATE(136), + [sym_note] = STATE(136), + [sym__symbol_fallback] = STATE(136), [aux_sym__text] = STATE(127), - [aux_sym__inline_repeat1] = STATE(21), - [anon_sym_LBRACE_] = ACTIONS(189), - [anon_sym__] = ACTIONS(191), - [anon_sym_LBRACE_STAR] = ACTIONS(193), - [anon_sym_STAR] = ACTIONS(195), - [anon_sym_LBRACE_CARET] = ACTIONS(197), - [anon_sym_CARET] = ACTIONS(197), - [anon_sym_LBRACE_TILDE] = ACTIONS(199), - [anon_sym_TILDE] = ACTIONS(199), - [anon_sym_LBRACE_EQ] = ACTIONS(201), - [anon_sym_LBRACE_PLUS] = ACTIONS(203), - [anon_sym_LBRACE_DASH] = ACTIONS(205), - [anon_sym_BSLASH] = ACTIONS(207), - [sym_quotation_marks] = ACTIONS(209), - [sym_ellipsis] = ACTIONS(209), - [sym_em_dash] = ACTIONS(209), - [sym_en_dash] = ACTIONS(211), - [sym_backslash_escape] = ACTIONS(211), - [anon_sym_LT] = ACTIONS(213), - [sym_symbol] = ACTIONS(209), - [anon_sym_LBRACK_CARET] = ACTIONS(215), - [anon_sym_BANG_LBRACK] = ACTIONS(217), - [anon_sym_LBRACK] = ACTIONS(219), - [anon_sym_DOLLAR] = ACTIONS(221), - [anon_sym_TODO] = ACTIONS(223), - [anon_sym_WIP] = ACTIONS(223), - [anon_sym_NOTE] = ACTIONS(225), - [anon_sym_INFO] = ACTIONS(225), - [anon_sym_XXX] = ACTIONS(225), - [sym_fixme] = ACTIONS(209), - [sym__whitespace1] = ACTIONS(227), - [sym__newline] = ACTIONS(229), - [aux_sym__text_token1] = ACTIONS(231), - [sym__verbatim_begin] = ACTIONS(233), + [aux_sym__inline_repeat1] = STATE(47), + [anon_sym_LBRACE_] = ACTIONS(377), + [anon_sym__] = ACTIONS(379), + [anon_sym_LBRACE_STAR] = ACTIONS(381), + [anon_sym_STAR] = ACTIONS(383), + [anon_sym_LBRACE_CARET] = ACTIONS(385), + [anon_sym_CARET] = ACTIONS(385), + [anon_sym_LBRACE_TILDE] = ACTIONS(387), + [anon_sym_TILDE] = ACTIONS(387), + [anon_sym_LBRACE_EQ] = ACTIONS(389), + [anon_sym_LBRACE_PLUS] = ACTIONS(391), + [anon_sym_LBRACE_DASH] = ACTIONS(393), + [anon_sym_BSLASH] = ACTIONS(395), + [sym_quotation_marks] = ACTIONS(397), + [sym_ellipsis] = ACTIONS(397), + [sym_em_dash] = ACTIONS(397), + [sym_en_dash] = ACTIONS(399), + [sym_backslash_escape] = ACTIONS(399), + [anon_sym_LT] = ACTIONS(401), + [sym_symbol] = ACTIONS(397), + [anon_sym_LBRACK_CARET] = ACTIONS(403), + [anon_sym_BANG_LBRACK] = ACTIONS(405), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_DOLLAR] = ACTIONS(409), + [anon_sym_TODO] = ACTIONS(411), + [anon_sym_WIP] = ACTIONS(411), + [anon_sym_NOTE] = ACTIONS(413), + [anon_sym_INFO] = ACTIONS(413), + [anon_sym_XXX] = ACTIONS(413), + [sym_fixme] = ACTIONS(397), + [sym__whitespace1] = ACTIONS(415), + [sym__newline] = ACTIONS(417), + [aux_sym__text_token1] = ACTIONS(419), + [sym__verbatim_begin] = ACTIONS(421), }, - [108] = { - [sym__element] = STATE(108), + [99] = { + [sym__inline] = STATE(1028), + [sym__element] = STATE(3), + [sym_emphasis] = STATE(137), + [sym_emphasis_begin] = STATE(1193), + [sym_strong] = STATE(137), + [sym_strong_begin] = STATE(1194), + [sym_superscript] = STATE(137), + [sym_superscript_begin] = STATE(1195), + [sym_subscript] = STATE(137), + [sym_subscript_begin] = STATE(1196), + [sym_highlighted] = STATE(137), + [sym_highlighted_begin] = STATE(1197), + [sym_insert] = STATE(137), + [sym_insert_begin] = STATE(1198), + [sym_delete] = STATE(137), + [sym_delete_begin] = STATE(1199), + [sym_hard_line_break] = STATE(137), + [sym__smart_punctuation] = STATE(137), + [sym_autolink] = STATE(137), + [sym_footnote_reference] = STATE(137), + [sym_footnote_marker_begin] = STATE(1200), + [sym__image] = STATE(137), + [sym_full_reference_image] = STATE(137), + [sym_collapsed_reference_image] = STATE(137), + [sym_inline_image] = STATE(137), + [sym__image_description] = STATE(694), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(137), + [sym_full_reference_link] = STATE(137), + [sym_collapsed_reference_link] = STATE(137), + [sym_inline_link] = STATE(137), + [sym_link_text] = STATE(693), + [sym_span] = STATE(3), + [sym__bracketed_text] = STATE(672), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(137), + [sym_raw_inline] = STATE(137), + [sym_math] = STATE(137), + [sym_verbatim] = STATE(137), + [sym__todo_highlights] = STATE(137), + [sym_todo] = STATE(137), + [sym_note] = STATE(137), + [sym__symbol_fallback] = STATE(137), + [aux_sym__text] = STATE(131), + [aux_sym__inline_repeat1] = STATE(3), + [anon_sym_LBRACE_] = ACTIONS(97), + [anon_sym__] = ACTIONS(99), + [anon_sym_LBRACE_STAR] = ACTIONS(101), + [anon_sym_STAR] = ACTIONS(103), + [anon_sym_LBRACE_CARET] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [anon_sym_LBRACE_TILDE] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(107), + [anon_sym_LBRACE_EQ] = ACTIONS(109), + [anon_sym_LBRACE_PLUS] = ACTIONS(111), + [anon_sym_LBRACE_DASH] = ACTIONS(113), + [anon_sym_BSLASH] = ACTIONS(115), + [sym_quotation_marks] = ACTIONS(117), + [sym_ellipsis] = ACTIONS(117), + [sym_em_dash] = ACTIONS(117), + [sym_en_dash] = ACTIONS(119), + [sym_backslash_escape] = ACTIONS(119), + [anon_sym_LT] = ACTIONS(121), + [sym_symbol] = ACTIONS(117), + [anon_sym_LBRACK_CARET] = ACTIONS(123), + [anon_sym_BANG_LBRACK] = ACTIONS(125), + [anon_sym_LBRACK] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_TODO] = ACTIONS(131), + [anon_sym_WIP] = ACTIONS(131), + [anon_sym_NOTE] = ACTIONS(133), + [anon_sym_INFO] = ACTIONS(133), + [anon_sym_XXX] = ACTIONS(133), + [sym_fixme] = ACTIONS(117), + [sym__whitespace1] = ACTIONS(135), + [sym__newline] = ACTIONS(145), + [aux_sym__text_token1] = ACTIONS(139), + [sym__verbatim_begin] = ACTIONS(141), + }, + [100] = { + [sym__inline_without_trailing_space] = STATE(1102), + [sym__element] = STATE(538), [sym_emphasis] = STATE(141), - [sym_emphasis_begin] = STATE(1168), + [sym_emphasis_begin] = STATE(1153), [sym_strong] = STATE(141), - [sym_strong_begin] = STATE(1169), + [sym_strong_begin] = STATE(1154), [sym_superscript] = STATE(141), - [sym_superscript_begin] = STATE(1170), + [sym_superscript_begin] = STATE(1155), [sym_subscript] = STATE(141), - [sym_subscript_begin] = STATE(1171), + [sym_subscript_begin] = STATE(1156), [sym_highlighted] = STATE(141), - [sym_highlighted_begin] = STATE(1172), + [sym_highlighted_begin] = STATE(1157), [sym_insert] = STATE(141), - [sym_insert_begin] = STATE(1173), + [sym_insert_begin] = STATE(1158), [sym_delete] = STATE(141), - [sym_delete_begin] = STATE(1174), + [sym_delete_begin] = STATE(1159), [sym_hard_line_break] = STATE(141), [sym__smart_punctuation] = STATE(141), [sym_autolink] = STATE(141), [sym_footnote_reference] = STATE(141), + [sym_footnote_marker_begin] = STATE(1160), [sym__image] = STATE(141), [sym_full_reference_image] = STATE(141), [sym_collapsed_reference_image] = STATE(141), [sym_inline_image] = STATE(141), - [sym__image_description] = STATE(674), - [sym__image_description_begin] = STATE(1103), + [sym__image_description] = STATE(681), + [sym__image_description_begin] = STATE(1114), [sym__link] = STATE(141), [sym_full_reference_link] = STATE(141), [sym_collapsed_reference_link] = STATE(141), [sym_inline_link] = STATE(141), - [sym_link_text] = STATE(672), - [sym_span] = STATE(108), - [sym__bracketed_text] = STATE(655), - [sym__bracketed_text_begin] = STATE(1102), + [sym_link_text] = STATE(680), + [sym_span] = STATE(538), + [sym__bracketed_text] = STATE(664), + [sym__bracketed_text_begin] = STATE(1113), [sym__comment_with_spaces] = STATE(141), [sym_raw_inline] = STATE(141), [sym_math] = STATE(141), @@ -13576,155 +13224,237 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_note] = STATE(141), [sym__symbol_fallback] = STATE(141), [aux_sym__text] = STATE(128), - [aux_sym__inline_repeat1] = STATE(108), - [anon_sym_LBRACE_] = ACTIONS(945), - [anon_sym__] = ACTIONS(948), - [anon_sym_LBRACE_STAR] = ACTIONS(951), - [anon_sym_STAR] = ACTIONS(954), - [anon_sym_LBRACE_CARET] = ACTIONS(957), - [anon_sym_CARET] = ACTIONS(957), - [anon_sym_LBRACE_TILDE] = ACTIONS(960), - [anon_sym_TILDE] = ACTIONS(960), - [anon_sym_LBRACE_EQ] = ACTIONS(963), - [anon_sym_LBRACE_PLUS] = ACTIONS(966), - [anon_sym_LBRACE_DASH] = ACTIONS(969), - [anon_sym_BSLASH] = ACTIONS(972), - [sym_quotation_marks] = ACTIONS(975), - [sym_ellipsis] = ACTIONS(975), - [sym_em_dash] = ACTIONS(975), - [sym_en_dash] = ACTIONS(978), - [sym_backslash_escape] = ACTIONS(978), - [anon_sym_LT] = ACTIONS(981), - [sym_symbol] = ACTIONS(975), - [anon_sym_LBRACK_CARET] = ACTIONS(984), - [anon_sym_BANG_LBRACK] = ACTIONS(987), - [anon_sym_LBRACK] = ACTIONS(990), - [anon_sym_DOLLAR] = ACTIONS(993), - [anon_sym_TODO] = ACTIONS(996), - [anon_sym_WIP] = ACTIONS(996), - [anon_sym_NOTE] = ACTIONS(999), - [anon_sym_INFO] = ACTIONS(999), - [anon_sym_XXX] = ACTIONS(999), - [sym_fixme] = ACTIONS(975), - [sym__whitespace1] = ACTIONS(1002), - [sym__newline] = ACTIONS(1005), - [aux_sym__text_token1] = ACTIONS(1008), - [sym__verbatim_begin] = ACTIONS(1011), - [sym_highlighted_end] = ACTIONS(538), + [aux_sym__inline_repeat1] = STATE(119), + [anon_sym_LBRACE_] = ACTIONS(147), + [anon_sym__] = ACTIONS(149), + [anon_sym_LBRACE_STAR] = ACTIONS(151), + [anon_sym_STAR] = ACTIONS(153), + [anon_sym_LBRACE_CARET] = ACTIONS(155), + [anon_sym_CARET] = ACTIONS(155), + [anon_sym_LBRACE_TILDE] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_LBRACE_EQ] = ACTIONS(159), + [anon_sym_LBRACE_PLUS] = ACTIONS(161), + [anon_sym_LBRACE_DASH] = ACTIONS(163), + [anon_sym_BSLASH] = ACTIONS(165), + [sym_quotation_marks] = ACTIONS(167), + [sym_ellipsis] = ACTIONS(167), + [sym_em_dash] = ACTIONS(167), + [sym_en_dash] = ACTIONS(169), + [sym_backslash_escape] = ACTIONS(169), + [anon_sym_LT] = ACTIONS(171), + [sym_symbol] = ACTIONS(167), + [anon_sym_LBRACK_CARET] = ACTIONS(173), + [anon_sym_BANG_LBRACK] = ACTIONS(175), + [anon_sym_LBRACK] = ACTIONS(177), + [anon_sym_DOLLAR] = ACTIONS(179), + [anon_sym_TODO] = ACTIONS(181), + [anon_sym_WIP] = ACTIONS(181), + [anon_sym_NOTE] = ACTIONS(183), + [anon_sym_INFO] = ACTIONS(183), + [anon_sym_XXX] = ACTIONS(183), + [sym_fixme] = ACTIONS(167), + [sym__whitespace1] = ACTIONS(185), + [sym__newline] = ACTIONS(187), + [aux_sym__text_token1] = ACTIONS(189), + [sym__verbatim_begin] = ACTIONS(191), }, - [109] = { - [sym__inline] = STATE(1039), - [sym__element] = STATE(103), - [sym_emphasis] = STATE(139), - [sym_emphasis_begin] = STATE(1175), - [sym_strong] = STATE(139), - [sym_strong_begin] = STATE(1176), - [sym_superscript] = STATE(139), - [sym_superscript_begin] = STATE(1177), - [sym_subscript] = STATE(139), - [sym_subscript_begin] = STATE(1178), - [sym_highlighted] = STATE(139), - [sym_highlighted_begin] = STATE(1179), - [sym_insert] = STATE(139), - [sym_insert_begin] = STATE(1180), - [sym_delete] = STATE(139), - [sym_delete_begin] = STATE(1181), - [sym_hard_line_break] = STATE(139), - [sym__smart_punctuation] = STATE(139), - [sym_autolink] = STATE(139), - [sym_footnote_reference] = STATE(139), - [sym__image] = STATE(139), - [sym_full_reference_image] = STATE(139), - [sym_collapsed_reference_image] = STATE(139), - [sym_inline_image] = STATE(139), - [sym__image_description] = STATE(682), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(139), - [sym_full_reference_link] = STATE(139), - [sym_collapsed_reference_link] = STATE(139), - [sym_inline_link] = STATE(139), - [sym_link_text] = STATE(681), - [sym_span] = STATE(103), - [sym__bracketed_text] = STATE(656), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(139), - [sym_raw_inline] = STATE(139), - [sym_math] = STATE(139), - [sym_verbatim] = STATE(139), - [sym__todo_highlights] = STATE(139), - [sym_todo] = STATE(139), - [sym_note] = STATE(139), - [sym__symbol_fallback] = STATE(139), - [aux_sym__text] = STATE(129), - [aux_sym__inline_repeat1] = STATE(103), - [anon_sym_LBRACE_] = ACTIONS(235), - [anon_sym__] = ACTIONS(237), - [anon_sym_LBRACE_STAR] = ACTIONS(239), - [anon_sym_STAR] = ACTIONS(241), - [anon_sym_LBRACE_CARET] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(243), - [anon_sym_LBRACE_TILDE] = ACTIONS(245), - [anon_sym_TILDE] = ACTIONS(245), - [anon_sym_LBRACE_EQ] = ACTIONS(247), - [anon_sym_LBRACE_PLUS] = ACTIONS(249), - [anon_sym_LBRACE_DASH] = ACTIONS(251), - [anon_sym_BSLASH] = ACTIONS(253), - [sym_quotation_marks] = ACTIONS(255), - [sym_ellipsis] = ACTIONS(255), - [sym_em_dash] = ACTIONS(255), - [sym_en_dash] = ACTIONS(257), - [sym_backslash_escape] = ACTIONS(257), - [anon_sym_LT] = ACTIONS(259), - [sym_symbol] = ACTIONS(255), - [anon_sym_LBRACK_CARET] = ACTIONS(261), - [anon_sym_BANG_LBRACK] = ACTIONS(263), - [anon_sym_LBRACK] = ACTIONS(265), - [anon_sym_DOLLAR] = ACTIONS(267), - [anon_sym_TODO] = ACTIONS(269), - [anon_sym_WIP] = ACTIONS(269), - [anon_sym_NOTE] = ACTIONS(271), - [anon_sym_INFO] = ACTIONS(271), - [anon_sym_XXX] = ACTIONS(271), - [sym_fixme] = ACTIONS(255), - [sym__whitespace1] = ACTIONS(273), - [sym__newline] = ACTIONS(275), - [aux_sym__text_token1] = ACTIONS(277), - [sym__verbatim_begin] = ACTIONS(279), + [101] = { + [sym__inline] = STATE(1029), + [sym__element] = STATE(107), + [sym_emphasis] = STATE(140), + [sym_emphasis_begin] = STATE(1185), + [sym_strong] = STATE(140), + [sym_strong_begin] = STATE(1186), + [sym_superscript] = STATE(140), + [sym_superscript_begin] = STATE(1187), + [sym_subscript] = STATE(140), + [sym_subscript_begin] = STATE(1188), + [sym_highlighted] = STATE(140), + [sym_highlighted_begin] = STATE(1189), + [sym_insert] = STATE(140), + [sym_insert_begin] = STATE(1190), + [sym_delete] = STATE(140), + [sym_delete_begin] = STATE(1191), + [sym_hard_line_break] = STATE(140), + [sym__smart_punctuation] = STATE(140), + [sym_autolink] = STATE(140), + [sym_footnote_reference] = STATE(140), + [sym_footnote_marker_begin] = STATE(1192), + [sym__image] = STATE(140), + [sym_full_reference_image] = STATE(140), + [sym_collapsed_reference_image] = STATE(140), + [sym_inline_image] = STATE(140), + [sym__image_description] = STATE(700), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(140), + [sym_full_reference_link] = STATE(140), + [sym_collapsed_reference_link] = STATE(140), + [sym_inline_link] = STATE(140), + [sym_link_text] = STATE(699), + [sym_span] = STATE(107), + [sym__bracketed_text] = STATE(666), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(140), + [sym_raw_inline] = STATE(140), + [sym_math] = STATE(140), + [sym_verbatim] = STATE(140), + [sym__todo_highlights] = STATE(140), + [sym_todo] = STATE(140), + [sym_note] = STATE(140), + [sym__symbol_fallback] = STATE(140), + [aux_sym__text] = STATE(125), + [aux_sym__inline_repeat1] = STATE(107), + [anon_sym_LBRACE_] = ACTIONS(193), + [anon_sym__] = ACTIONS(195), + [anon_sym_LBRACE_STAR] = ACTIONS(197), + [anon_sym_STAR] = ACTIONS(199), + [anon_sym_LBRACE_CARET] = ACTIONS(201), + [anon_sym_CARET] = ACTIONS(201), + [anon_sym_LBRACE_TILDE] = ACTIONS(203), + [anon_sym_TILDE] = ACTIONS(203), + [anon_sym_LBRACE_EQ] = ACTIONS(205), + [anon_sym_LBRACE_PLUS] = ACTIONS(207), + [anon_sym_LBRACE_DASH] = ACTIONS(209), + [anon_sym_BSLASH] = ACTIONS(211), + [sym_quotation_marks] = ACTIONS(213), + [sym_ellipsis] = ACTIONS(213), + [sym_em_dash] = ACTIONS(213), + [sym_en_dash] = ACTIONS(215), + [sym_backslash_escape] = ACTIONS(215), + [anon_sym_LT] = ACTIONS(217), + [sym_symbol] = ACTIONS(213), + [anon_sym_LBRACK_CARET] = ACTIONS(219), + [anon_sym_BANG_LBRACK] = ACTIONS(221), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_DOLLAR] = ACTIONS(225), + [anon_sym_TODO] = ACTIONS(227), + [anon_sym_WIP] = ACTIONS(227), + [anon_sym_NOTE] = ACTIONS(229), + [anon_sym_INFO] = ACTIONS(229), + [anon_sym_XXX] = ACTIONS(229), + [sym_fixme] = ACTIONS(213), + [sym__whitespace1] = ACTIONS(231), + [sym__newline] = ACTIONS(233), + [aux_sym__text_token1] = ACTIONS(235), + [sym__verbatim_begin] = ACTIONS(237), }, - [110] = { - [sym__element] = STATE(112), + [102] = { + [sym__inline_without_trailing_space] = STATE(1099), + [sym__element] = STATE(572), + [sym_emphasis] = STATE(138), + [sym_emphasis_begin] = STATE(1161), + [sym_strong] = STATE(138), + [sym_strong_begin] = STATE(1162), + [sym_superscript] = STATE(138), + [sym_superscript_begin] = STATE(1163), + [sym_subscript] = STATE(138), + [sym_subscript_begin] = STATE(1164), + [sym_highlighted] = STATE(138), + [sym_highlighted_begin] = STATE(1165), + [sym_insert] = STATE(138), + [sym_insert_begin] = STATE(1166), + [sym_delete] = STATE(138), + [sym_delete_begin] = STATE(1167), + [sym_hard_line_break] = STATE(138), + [sym__smart_punctuation] = STATE(138), + [sym_autolink] = STATE(138), + [sym_footnote_reference] = STATE(138), + [sym_footnote_marker_begin] = STATE(1168), + [sym__image] = STATE(138), + [sym_full_reference_image] = STATE(138), + [sym_collapsed_reference_image] = STATE(138), + [sym_inline_image] = STATE(138), + [sym__image_description] = STATE(703), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(138), + [sym_full_reference_link] = STATE(138), + [sym_collapsed_reference_link] = STATE(138), + [sym_inline_link] = STATE(138), + [sym_link_text] = STATE(697), + [sym_span] = STATE(572), + [sym__bracketed_text] = STATE(671), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(138), + [sym_raw_inline] = STATE(138), + [sym_math] = STATE(138), + [sym_verbatim] = STATE(138), + [sym__todo_highlights] = STATE(138), + [sym_todo] = STATE(138), + [sym_note] = STATE(138), + [sym__symbol_fallback] = STATE(138), + [aux_sym__text] = STATE(122), + [aux_sym__inline_repeat1] = STATE(120), + [anon_sym_LBRACE_] = ACTIONS(331), + [anon_sym__] = ACTIONS(333), + [anon_sym_LBRACE_STAR] = ACTIONS(335), + [anon_sym_STAR] = ACTIONS(337), + [anon_sym_LBRACE_CARET] = ACTIONS(339), + [anon_sym_CARET] = ACTIONS(339), + [anon_sym_LBRACE_TILDE] = ACTIONS(341), + [anon_sym_TILDE] = ACTIONS(341), + [anon_sym_LBRACE_EQ] = ACTIONS(343), + [anon_sym_LBRACE_PLUS] = ACTIONS(345), + [anon_sym_LBRACE_DASH] = ACTIONS(347), + [anon_sym_BSLASH] = ACTIONS(349), + [sym_quotation_marks] = ACTIONS(351), + [sym_ellipsis] = ACTIONS(351), + [sym_em_dash] = ACTIONS(351), + [sym_en_dash] = ACTIONS(353), + [sym_backslash_escape] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [sym_symbol] = ACTIONS(351), + [anon_sym_LBRACK_CARET] = ACTIONS(357), + [anon_sym_BANG_LBRACK] = ACTIONS(359), + [anon_sym_LBRACK] = ACTIONS(361), + [anon_sym_DOLLAR] = ACTIONS(363), + [anon_sym_TODO] = ACTIONS(365), + [anon_sym_WIP] = ACTIONS(365), + [anon_sym_NOTE] = ACTIONS(367), + [anon_sym_INFO] = ACTIONS(367), + [anon_sym_XXX] = ACTIONS(367), + [sym_fixme] = ACTIONS(351), + [sym__whitespace1] = ACTIONS(369), + [sym__newline] = ACTIONS(371), + [aux_sym__text_token1] = ACTIONS(373), + [sym__verbatim_begin] = ACTIONS(375), + }, + [103] = { + [sym__inline] = STATE(1030), + [sym__element] = STATE(72), [sym_emphasis] = STATE(135), - [sym_emphasis_begin] = STATE(1203), + [sym_emphasis_begin] = STATE(1177), [sym_strong] = STATE(135), - [sym_strong_begin] = STATE(1204), + [sym_strong_begin] = STATE(1178), [sym_superscript] = STATE(135), - [sym_superscript_begin] = STATE(1205), + [sym_superscript_begin] = STATE(1179), [sym_subscript] = STATE(135), - [sym_subscript_begin] = STATE(1206), + [sym_subscript_begin] = STATE(1180), [sym_highlighted] = STATE(135), - [sym_highlighted_begin] = STATE(1207), + [sym_highlighted_begin] = STATE(1181), [sym_insert] = STATE(135), - [sym_insert_begin] = STATE(1208), + [sym_insert_begin] = STATE(1182), [sym_delete] = STATE(135), - [sym_delete_begin] = STATE(1209), + [sym_delete_begin] = STATE(1183), [sym_hard_line_break] = STATE(135), [sym__smart_punctuation] = STATE(135), [sym_autolink] = STATE(135), [sym_footnote_reference] = STATE(135), + [sym_footnote_marker_begin] = STATE(1184), [sym__image] = STATE(135), [sym_full_reference_image] = STATE(135), [sym_collapsed_reference_image] = STATE(135), [sym_inline_image] = STATE(135), - [sym__image_description] = STATE(679), - [sym__image_description_begin] = STATE(1103), + [sym__image_description] = STATE(687), + [sym__image_description_begin] = STATE(1114), [sym__link] = STATE(135), [sym_full_reference_link] = STATE(135), [sym_collapsed_reference_link] = STATE(135), [sym_inline_link] = STATE(135), - [sym_link_text] = STATE(664), - [sym_span] = STATE(112), - [sym__bracketed_text] = STATE(659), - [sym__bracketed_text_begin] = STATE(1102), + [sym_link_text] = STATE(684), + [sym_span] = STATE(72), + [sym__bracketed_text] = STATE(670), + [sym__bracketed_text_begin] = STATE(1113), [sym__comment_with_spaces] = STATE(135), [sym_raw_inline] = STATE(135), [sym_math] = STATE(135), @@ -13733,156 +13463,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(135), [sym_note] = STATE(135), [sym__symbol_fallback] = STATE(135), - [aux_sym__text] = STATE(122), - [aux_sym__inline_repeat1] = STATE(112), - [anon_sym_LBRACE_] = ACTIONS(753), - [anon_sym__] = ACTIONS(755), - [anon_sym_LBRACE_STAR] = ACTIONS(757), - [anon_sym_STAR] = ACTIONS(759), - [anon_sym_LBRACE_CARET] = ACTIONS(761), - [anon_sym_CARET] = ACTIONS(761), - [anon_sym_LBRACE_TILDE] = ACTIONS(763), - [anon_sym_TILDE] = ACTIONS(763), - [anon_sym_LBRACE_EQ] = ACTIONS(765), - [anon_sym_LBRACE_PLUS] = ACTIONS(767), - [anon_sym_LBRACE_DASH] = ACTIONS(769), - [anon_sym_BSLASH] = ACTIONS(771), - [sym_quotation_marks] = ACTIONS(773), - [sym_ellipsis] = ACTIONS(773), - [sym_em_dash] = ACTIONS(773), - [sym_en_dash] = ACTIONS(775), - [sym_backslash_escape] = ACTIONS(775), - [anon_sym_LT] = ACTIONS(777), - [sym_symbol] = ACTIONS(773), - [anon_sym_LBRACK_CARET] = ACTIONS(779), - [anon_sym_BANG_LBRACK] = ACTIONS(781), - [anon_sym_LBRACK] = ACTIONS(783), - [anon_sym_DOLLAR] = ACTIONS(785), - [anon_sym_TODO] = ACTIONS(787), - [anon_sym_WIP] = ACTIONS(787), - [anon_sym_NOTE] = ACTIONS(789), - [anon_sym_INFO] = ACTIONS(789), - [anon_sym_XXX] = ACTIONS(789), - [sym_fixme] = ACTIONS(773), - [sym__whitespace1] = ACTIONS(791), - [sym__newline] = ACTIONS(1014), - [aux_sym__text_token1] = ACTIONS(795), - [sym__verbatim_begin] = ACTIONS(797), - [sym__bracketed_text_end] = ACTIONS(467), - }, - [111] = { - [sym__inline] = STATE(1010), - [sym__element] = STATE(70), - [sym_emphasis] = STATE(136), - [sym_emphasis_begin] = STATE(1161), - [sym_strong] = STATE(136), - [sym_strong_begin] = STATE(1162), - [sym_superscript] = STATE(136), - [sym_superscript_begin] = STATE(1163), - [sym_subscript] = STATE(136), - [sym_subscript_begin] = STATE(1164), - [sym_highlighted] = STATE(136), - [sym_highlighted_begin] = STATE(1165), - [sym_insert] = STATE(136), - [sym_insert_begin] = STATE(1166), - [sym_delete] = STATE(136), - [sym_delete_begin] = STATE(1167), - [sym_hard_line_break] = STATE(136), - [sym__smart_punctuation] = STATE(136), - [sym_autolink] = STATE(136), - [sym_footnote_reference] = STATE(136), - [sym__image] = STATE(136), - [sym_full_reference_image] = STATE(136), - [sym_collapsed_reference_image] = STATE(136), - [sym_inline_image] = STATE(136), - [sym__image_description] = STATE(690), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(136), - [sym_full_reference_link] = STATE(136), - [sym_collapsed_reference_link] = STATE(136), - [sym_inline_link] = STATE(136), - [sym_link_text] = STATE(691), - [sym_span] = STATE(70), - [sym__bracketed_text] = STATE(653), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(136), - [sym_raw_inline] = STATE(136), - [sym_math] = STATE(136), - [sym_verbatim] = STATE(136), - [sym__todo_highlights] = STATE(136), - [sym_todo] = STATE(136), - [sym_note] = STATE(136), - [sym__symbol_fallback] = STATE(136), - [aux_sym__text] = STATE(125), - [aux_sym__inline_repeat1] = STATE(70), - [anon_sym_LBRACE_] = ACTIONS(97), - [anon_sym__] = ACTIONS(99), - [anon_sym_LBRACE_STAR] = ACTIONS(101), - [anon_sym_STAR] = ACTIONS(103), - [anon_sym_LBRACE_CARET] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [anon_sym_LBRACE_TILDE] = ACTIONS(107), - [anon_sym_TILDE] = ACTIONS(107), - [anon_sym_LBRACE_EQ] = ACTIONS(109), - [anon_sym_LBRACE_PLUS] = ACTIONS(111), - [anon_sym_LBRACE_DASH] = ACTIONS(113), - [anon_sym_BSLASH] = ACTIONS(115), - [sym_quotation_marks] = ACTIONS(117), - [sym_ellipsis] = ACTIONS(117), - [sym_em_dash] = ACTIONS(117), - [sym_en_dash] = ACTIONS(119), - [sym_backslash_escape] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [sym_symbol] = ACTIONS(117), - [anon_sym_LBRACK_CARET] = ACTIONS(123), - [anon_sym_BANG_LBRACK] = ACTIONS(125), - [anon_sym_LBRACK] = ACTIONS(127), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_TODO] = ACTIONS(131), - [anon_sym_WIP] = ACTIONS(131), - [anon_sym_NOTE] = ACTIONS(133), - [anon_sym_INFO] = ACTIONS(133), - [anon_sym_XXX] = ACTIONS(133), - [sym_fixme] = ACTIONS(117), - [sym__whitespace1] = ACTIONS(135), - [sym__newline] = ACTIONS(137), - [aux_sym__text_token1] = ACTIONS(139), - [sym__verbatim_begin] = ACTIONS(141), + [aux_sym__text] = STATE(124), + [aux_sym__inline_repeat1] = STATE(72), + [anon_sym_LBRACE_] = ACTIONS(239), + [anon_sym__] = ACTIONS(241), + [anon_sym_LBRACE_STAR] = ACTIONS(243), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_LBRACE_CARET] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_LBRACE_TILDE] = ACTIONS(249), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_LBRACE_EQ] = ACTIONS(251), + [anon_sym_LBRACE_PLUS] = ACTIONS(253), + [anon_sym_LBRACE_DASH] = ACTIONS(255), + [anon_sym_BSLASH] = ACTIONS(257), + [sym_quotation_marks] = ACTIONS(259), + [sym_ellipsis] = ACTIONS(259), + [sym_em_dash] = ACTIONS(259), + [sym_en_dash] = ACTIONS(261), + [sym_backslash_escape] = ACTIONS(261), + [anon_sym_LT] = ACTIONS(263), + [sym_symbol] = ACTIONS(259), + [anon_sym_LBRACK_CARET] = ACTIONS(265), + [anon_sym_BANG_LBRACK] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_TODO] = ACTIONS(273), + [anon_sym_WIP] = ACTIONS(273), + [anon_sym_NOTE] = ACTIONS(275), + [anon_sym_INFO] = ACTIONS(275), + [anon_sym_XXX] = ACTIONS(275), + [sym_fixme] = ACTIONS(259), + [sym__whitespace1] = ACTIONS(277), + [sym__newline] = ACTIONS(279), + [aux_sym__text_token1] = ACTIONS(281), + [sym__verbatim_begin] = ACTIONS(283), }, - [112] = { - [sym__element] = STATE(112), + [104] = { + [sym__inline] = STATE(1098), + [sym__element] = STATE(82), + [sym_emphasis] = STATE(143), + [sym_emphasis_begin] = STATE(1169), + [sym_strong] = STATE(143), + [sym_strong_begin] = STATE(1170), + [sym_superscript] = STATE(143), + [sym_superscript_begin] = STATE(1171), + [sym_subscript] = STATE(143), + [sym_subscript_begin] = STATE(1172), + [sym_highlighted] = STATE(143), + [sym_highlighted_begin] = STATE(1173), + [sym_insert] = STATE(143), + [sym_insert_begin] = STATE(1174), + [sym_delete] = STATE(143), + [sym_delete_begin] = STATE(1175), + [sym_hard_line_break] = STATE(143), + [sym__smart_punctuation] = STATE(143), + [sym_autolink] = STATE(143), + [sym_footnote_reference] = STATE(143), + [sym_footnote_marker_begin] = STATE(1176), + [sym__image] = STATE(143), + [sym_full_reference_image] = STATE(143), + [sym_collapsed_reference_image] = STATE(143), + [sym_inline_image] = STATE(143), + [sym__image_description] = STATE(701), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(143), + [sym_full_reference_link] = STATE(143), + [sym_collapsed_reference_link] = STATE(143), + [sym_inline_link] = STATE(143), + [sym_link_text] = STATE(702), + [sym_span] = STATE(82), + [sym__bracketed_text] = STATE(667), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(143), + [sym_raw_inline] = STATE(143), + [sym_math] = STATE(143), + [sym_verbatim] = STATE(143), + [sym__todo_highlights] = STATE(143), + [sym_todo] = STATE(143), + [sym_note] = STATE(143), + [sym__symbol_fallback] = STATE(143), + [aux_sym__text] = STATE(126), + [aux_sym__inline_repeat1] = STATE(82), + [anon_sym_LBRACE_] = ACTIONS(285), + [anon_sym__] = ACTIONS(287), + [anon_sym_LBRACE_STAR] = ACTIONS(289), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_LBRACE_CARET] = ACTIONS(293), + [anon_sym_CARET] = ACTIONS(293), + [anon_sym_LBRACE_TILDE] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_LBRACE_EQ] = ACTIONS(297), + [anon_sym_LBRACE_PLUS] = ACTIONS(299), + [anon_sym_LBRACE_DASH] = ACTIONS(301), + [anon_sym_BSLASH] = ACTIONS(303), + [sym_quotation_marks] = ACTIONS(305), + [sym_ellipsis] = ACTIONS(305), + [sym_em_dash] = ACTIONS(305), + [sym_en_dash] = ACTIONS(307), + [sym_backslash_escape] = ACTIONS(307), + [anon_sym_LT] = ACTIONS(309), + [sym_symbol] = ACTIONS(305), + [anon_sym_LBRACK_CARET] = ACTIONS(311), + [anon_sym_BANG_LBRACK] = ACTIONS(313), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_DOLLAR] = ACTIONS(317), + [anon_sym_TODO] = ACTIONS(319), + [anon_sym_WIP] = ACTIONS(319), + [anon_sym_NOTE] = ACTIONS(321), + [anon_sym_INFO] = ACTIONS(321), + [anon_sym_XXX] = ACTIONS(321), + [sym_fixme] = ACTIONS(305), + [sym__whitespace1] = ACTIONS(323), + [sym__newline] = ACTIONS(325), + [aux_sym__text_token1] = ACTIONS(327), + [sym__verbatim_begin] = ACTIONS(329), + }, + [105] = { + [sym__inline] = STATE(1096), + [sym__element] = STATE(72), [sym_emphasis] = STATE(135), - [sym_emphasis_begin] = STATE(1203), + [sym_emphasis_begin] = STATE(1177), [sym_strong] = STATE(135), - [sym_strong_begin] = STATE(1204), + [sym_strong_begin] = STATE(1178), [sym_superscript] = STATE(135), - [sym_superscript_begin] = STATE(1205), + [sym_superscript_begin] = STATE(1179), [sym_subscript] = STATE(135), - [sym_subscript_begin] = STATE(1206), + [sym_subscript_begin] = STATE(1180), [sym_highlighted] = STATE(135), - [sym_highlighted_begin] = STATE(1207), + [sym_highlighted_begin] = STATE(1181), [sym_insert] = STATE(135), - [sym_insert_begin] = STATE(1208), + [sym_insert_begin] = STATE(1182), [sym_delete] = STATE(135), - [sym_delete_begin] = STATE(1209), + [sym_delete_begin] = STATE(1183), [sym_hard_line_break] = STATE(135), [sym__smart_punctuation] = STATE(135), [sym_autolink] = STATE(135), [sym_footnote_reference] = STATE(135), + [sym_footnote_marker_begin] = STATE(1184), [sym__image] = STATE(135), [sym_full_reference_image] = STATE(135), [sym_collapsed_reference_image] = STATE(135), [sym_inline_image] = STATE(135), - [sym__image_description] = STATE(679), - [sym__image_description_begin] = STATE(1103), + [sym__image_description] = STATE(687), + [sym__image_description_begin] = STATE(1114), [sym__link] = STATE(135), [sym_full_reference_link] = STATE(135), [sym_collapsed_reference_link] = STATE(135), [sym_inline_link] = STATE(135), - [sym_link_text] = STATE(664), - [sym_span] = STATE(112), - [sym__bracketed_text] = STATE(659), - [sym__bracketed_text_begin] = STATE(1102), + [sym_link_text] = STATE(684), + [sym_span] = STATE(72), + [sym__bracketed_text] = STATE(670), + [sym__bracketed_text_begin] = STATE(1113), [sym__comment_with_spaces] = STATE(135), [sym_raw_inline] = STATE(135), [sym_math] = STATE(135), @@ -13891,157 +13623,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(135), [sym_note] = STATE(135), [sym__symbol_fallback] = STATE(135), - [aux_sym__text] = STATE(122), - [aux_sym__inline_repeat1] = STATE(112), - [anon_sym_LBRACE_] = ACTIONS(1016), - [anon_sym__] = ACTIONS(1019), - [anon_sym_LBRACE_STAR] = ACTIONS(1022), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_LBRACE_CARET] = ACTIONS(1028), - [anon_sym_CARET] = ACTIONS(1028), - [anon_sym_LBRACE_TILDE] = ACTIONS(1031), - [anon_sym_TILDE] = ACTIONS(1031), - [anon_sym_LBRACE_EQ] = ACTIONS(1034), - [anon_sym_LBRACE_PLUS] = ACTIONS(1037), - [anon_sym_LBRACE_DASH] = ACTIONS(1040), - [anon_sym_BSLASH] = ACTIONS(1043), - [sym_quotation_marks] = ACTIONS(1046), - [sym_ellipsis] = ACTIONS(1046), - [sym_em_dash] = ACTIONS(1046), - [sym_en_dash] = ACTIONS(1049), - [sym_backslash_escape] = ACTIONS(1049), - [anon_sym_LT] = ACTIONS(1052), - [sym_symbol] = ACTIONS(1046), - [anon_sym_LBRACK_CARET] = ACTIONS(1055), - [anon_sym_BANG_LBRACK] = ACTIONS(1058), - [anon_sym_LBRACK] = ACTIONS(1061), - [anon_sym_DOLLAR] = ACTIONS(1064), - [anon_sym_TODO] = ACTIONS(1067), - [anon_sym_WIP] = ACTIONS(1067), - [anon_sym_NOTE] = ACTIONS(1070), - [anon_sym_INFO] = ACTIONS(1070), - [anon_sym_XXX] = ACTIONS(1070), - [sym_fixme] = ACTIONS(1046), - [sym__whitespace1] = ACTIONS(1073), - [sym__newline] = ACTIONS(1076), - [aux_sym__text_token1] = ACTIONS(1079), - [sym__verbatim_begin] = ACTIONS(1082), - [sym__bracketed_text_end] = ACTIONS(538), - }, - [113] = { - [sym__inline] = STATE(1031), - [sym__element] = STATE(65), - [sym_emphasis] = STATE(133), - [sym_emphasis_begin] = STATE(1189), - [sym_strong] = STATE(133), - [sym_strong_begin] = STATE(1190), - [sym_superscript] = STATE(133), - [sym_superscript_begin] = STATE(1191), - [sym_subscript] = STATE(133), - [sym_subscript_begin] = STATE(1192), - [sym_highlighted] = STATE(133), - [sym_highlighted_begin] = STATE(1193), - [sym_insert] = STATE(133), - [sym_insert_begin] = STATE(1194), - [sym_delete] = STATE(133), - [sym_delete_begin] = STATE(1195), - [sym_hard_line_break] = STATE(133), - [sym__smart_punctuation] = STATE(133), - [sym_autolink] = STATE(133), - [sym_footnote_reference] = STATE(133), - [sym__image] = STATE(133), - [sym_full_reference_image] = STATE(133), - [sym_collapsed_reference_image] = STATE(133), - [sym_inline_image] = STATE(133), - [sym__image_description] = STATE(670), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(133), - [sym_full_reference_link] = STATE(133), - [sym_collapsed_reference_link] = STATE(133), - [sym_inline_link] = STATE(133), - [sym_link_text] = STATE(663), - [sym_span] = STATE(65), - [sym__bracketed_text] = STATE(662), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(133), - [sym_raw_inline] = STATE(133), - [sym_math] = STATE(133), - [sym_verbatim] = STATE(133), - [sym__todo_highlights] = STATE(133), - [sym_todo] = STATE(133), - [sym_note] = STATE(133), - [sym__symbol_fallback] = STATE(133), - [aux_sym__text] = STATE(123), - [aux_sym__inline_repeat1] = STATE(65), - [anon_sym_LBRACE_] = ACTIONS(143), - [anon_sym__] = ACTIONS(145), - [anon_sym_LBRACE_STAR] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_LBRACE_CARET] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(151), - [anon_sym_LBRACE_TILDE] = ACTIONS(153), - [anon_sym_TILDE] = ACTIONS(153), - [anon_sym_LBRACE_EQ] = ACTIONS(155), - [anon_sym_LBRACE_PLUS] = ACTIONS(157), - [anon_sym_LBRACE_DASH] = ACTIONS(159), - [anon_sym_BSLASH] = ACTIONS(161), - [sym_quotation_marks] = ACTIONS(163), - [sym_ellipsis] = ACTIONS(163), - [sym_em_dash] = ACTIONS(163), - [sym_en_dash] = ACTIONS(165), - [sym_backslash_escape] = ACTIONS(165), - [anon_sym_LT] = ACTIONS(167), - [sym_symbol] = ACTIONS(163), - [anon_sym_LBRACK_CARET] = ACTIONS(169), - [anon_sym_BANG_LBRACK] = ACTIONS(171), - [anon_sym_LBRACK] = ACTIONS(173), - [anon_sym_DOLLAR] = ACTIONS(175), - [anon_sym_TODO] = ACTIONS(177), - [anon_sym_WIP] = ACTIONS(177), - [anon_sym_NOTE] = ACTIONS(179), - [anon_sym_INFO] = ACTIONS(179), - [anon_sym_XXX] = ACTIONS(179), - [sym_fixme] = ACTIONS(163), - [sym__whitespace1] = ACTIONS(181), - [sym__newline] = ACTIONS(183), - [aux_sym__text_token1] = ACTIONS(185), - [sym__verbatim_begin] = ACTIONS(187), + [aux_sym__text] = STATE(124), + [aux_sym__inline_repeat1] = STATE(72), + [anon_sym_LBRACE_] = ACTIONS(239), + [anon_sym__] = ACTIONS(241), + [anon_sym_LBRACE_STAR] = ACTIONS(243), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_LBRACE_CARET] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_LBRACE_TILDE] = ACTIONS(249), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_LBRACE_EQ] = ACTIONS(251), + [anon_sym_LBRACE_PLUS] = ACTIONS(253), + [anon_sym_LBRACE_DASH] = ACTIONS(255), + [anon_sym_BSLASH] = ACTIONS(257), + [sym_quotation_marks] = ACTIONS(259), + [sym_ellipsis] = ACTIONS(259), + [sym_em_dash] = ACTIONS(259), + [sym_en_dash] = ACTIONS(261), + [sym_backslash_escape] = ACTIONS(261), + [anon_sym_LT] = ACTIONS(263), + [sym_symbol] = ACTIONS(259), + [anon_sym_LBRACK_CARET] = ACTIONS(265), + [anon_sym_BANG_LBRACK] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_TODO] = ACTIONS(273), + [anon_sym_WIP] = ACTIONS(273), + [anon_sym_NOTE] = ACTIONS(275), + [anon_sym_INFO] = ACTIONS(275), + [anon_sym_XXX] = ACTIONS(275), + [sym_fixme] = ACTIONS(259), + [sym__whitespace1] = ACTIONS(277), + [sym__newline] = ACTIONS(279), + [aux_sym__text_token1] = ACTIONS(281), + [sym__verbatim_begin] = ACTIONS(283), }, - [114] = { - [sym__inline] = STATE(1013), - [sym__element] = STATE(105), + [106] = { + [sym__inline] = STATE(1089), + [sym__element] = STATE(107), [sym_emphasis] = STATE(140), - [sym_emphasis_begin] = STATE(1154), + [sym_emphasis_begin] = STATE(1185), [sym_strong] = STATE(140), - [sym_strong_begin] = STATE(1155), + [sym_strong_begin] = STATE(1186), [sym_superscript] = STATE(140), - [sym_superscript_begin] = STATE(1156), + [sym_superscript_begin] = STATE(1187), [sym_subscript] = STATE(140), - [sym_subscript_begin] = STATE(1157), + [sym_subscript_begin] = STATE(1188), [sym_highlighted] = STATE(140), - [sym_highlighted_begin] = STATE(1158), + [sym_highlighted_begin] = STATE(1189), [sym_insert] = STATE(140), - [sym_insert_begin] = STATE(1159), + [sym_insert_begin] = STATE(1190), [sym_delete] = STATE(140), - [sym_delete_begin] = STATE(1160), + [sym_delete_begin] = STATE(1191), [sym_hard_line_break] = STATE(140), [sym__smart_punctuation] = STATE(140), [sym_autolink] = STATE(140), [sym_footnote_reference] = STATE(140), + [sym_footnote_marker_begin] = STATE(1192), [sym__image] = STATE(140), [sym_full_reference_image] = STATE(140), [sym_collapsed_reference_image] = STATE(140), [sym_inline_image] = STATE(140), - [sym__image_description] = STATE(687), - [sym__image_description_begin] = STATE(1103), + [sym__image_description] = STATE(700), + [sym__image_description_begin] = STATE(1114), [sym__link] = STATE(140), [sym_full_reference_link] = STATE(140), [sym_collapsed_reference_link] = STATE(140), [sym_inline_link] = STATE(140), - [sym_link_text] = STATE(688), - [sym_span] = STATE(105), - [sym__bracketed_text] = STATE(654), - [sym__bracketed_text_begin] = STATE(1102), + [sym_link_text] = STATE(699), + [sym_span] = STATE(107), + [sym__bracketed_text] = STATE(666), + [sym__bracketed_text_begin] = STATE(1113), [sym__comment_with_spaces] = STATE(140), [sym_raw_inline] = STATE(140), [sym_math] = STATE(140), @@ -14050,155 +13703,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(140), [sym_note] = STATE(140), [sym__symbol_fallback] = STATE(140), - [aux_sym__text] = STATE(131), - [aux_sym__inline_repeat1] = STATE(105), - [anon_sym_LBRACE_] = ACTIONS(327), - [anon_sym__] = ACTIONS(329), - [anon_sym_LBRACE_STAR] = ACTIONS(331), - [anon_sym_STAR] = ACTIONS(333), - [anon_sym_LBRACE_CARET] = ACTIONS(335), - [anon_sym_CARET] = ACTIONS(335), - [anon_sym_LBRACE_TILDE] = ACTIONS(337), - [anon_sym_TILDE] = ACTIONS(337), - [anon_sym_LBRACE_EQ] = ACTIONS(339), - [anon_sym_LBRACE_PLUS] = ACTIONS(341), - [anon_sym_LBRACE_DASH] = ACTIONS(343), - [anon_sym_BSLASH] = ACTIONS(345), - [sym_quotation_marks] = ACTIONS(347), - [sym_ellipsis] = ACTIONS(347), - [sym_em_dash] = ACTIONS(347), - [sym_en_dash] = ACTIONS(349), - [sym_backslash_escape] = ACTIONS(349), - [anon_sym_LT] = ACTIONS(351), - [sym_symbol] = ACTIONS(347), - [anon_sym_LBRACK_CARET] = ACTIONS(353), - [anon_sym_BANG_LBRACK] = ACTIONS(355), - [anon_sym_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [anon_sym_TODO] = ACTIONS(361), - [anon_sym_WIP] = ACTIONS(361), - [anon_sym_NOTE] = ACTIONS(363), - [anon_sym_INFO] = ACTIONS(363), - [anon_sym_XXX] = ACTIONS(363), - [sym_fixme] = ACTIONS(347), - [sym__whitespace1] = ACTIONS(365), - [sym__newline] = ACTIONS(367), - [aux_sym__text_token1] = ACTIONS(369), - [sym__verbatim_begin] = ACTIONS(371), + [aux_sym__text] = STATE(125), + [aux_sym__inline_repeat1] = STATE(107), + [anon_sym_LBRACE_] = ACTIONS(193), + [anon_sym__] = ACTIONS(195), + [anon_sym_LBRACE_STAR] = ACTIONS(197), + [anon_sym_STAR] = ACTIONS(199), + [anon_sym_LBRACE_CARET] = ACTIONS(201), + [anon_sym_CARET] = ACTIONS(201), + [anon_sym_LBRACE_TILDE] = ACTIONS(203), + [anon_sym_TILDE] = ACTIONS(203), + [anon_sym_LBRACE_EQ] = ACTIONS(205), + [anon_sym_LBRACE_PLUS] = ACTIONS(207), + [anon_sym_LBRACE_DASH] = ACTIONS(209), + [anon_sym_BSLASH] = ACTIONS(211), + [sym_quotation_marks] = ACTIONS(213), + [sym_ellipsis] = ACTIONS(213), + [sym_em_dash] = ACTIONS(213), + [sym_en_dash] = ACTIONS(215), + [sym_backslash_escape] = ACTIONS(215), + [anon_sym_LT] = ACTIONS(217), + [sym_symbol] = ACTIONS(213), + [anon_sym_LBRACK_CARET] = ACTIONS(219), + [anon_sym_BANG_LBRACK] = ACTIONS(221), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_DOLLAR] = ACTIONS(225), + [anon_sym_TODO] = ACTIONS(227), + [anon_sym_WIP] = ACTIONS(227), + [anon_sym_NOTE] = ACTIONS(229), + [anon_sym_INFO] = ACTIONS(229), + [anon_sym_XXX] = ACTIONS(229), + [sym_fixme] = ACTIONS(213), + [sym__whitespace1] = ACTIONS(231), + [sym__newline] = ACTIONS(233), + [aux_sym__text_token1] = ACTIONS(235), + [sym__verbatim_begin] = ACTIONS(237), }, - [115] = { - [sym__inline_without_trailing_space] = STATE(1014), - [sym__element] = STATE(562), - [sym_emphasis] = STATE(142), - [sym_emphasis_begin] = STATE(1147), - [sym_strong] = STATE(142), - [sym_strong_begin] = STATE(1148), - [sym_superscript] = STATE(142), - [sym_superscript_begin] = STATE(1149), - [sym_subscript] = STATE(142), - [sym_subscript_begin] = STATE(1150), - [sym_highlighted] = STATE(142), - [sym_highlighted_begin] = STATE(1151), - [sym_insert] = STATE(142), - [sym_insert_begin] = STATE(1152), - [sym_delete] = STATE(142), - [sym_delete_begin] = STATE(1153), - [sym_hard_line_break] = STATE(142), - [sym__smart_punctuation] = STATE(142), - [sym_autolink] = STATE(142), - [sym_footnote_reference] = STATE(142), - [sym__image] = STATE(142), - [sym_full_reference_image] = STATE(142), - [sym_collapsed_reference_image] = STATE(142), - [sym_inline_image] = STATE(142), - [sym__image_description] = STATE(685), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(142), - [sym_full_reference_link] = STATE(142), - [sym_collapsed_reference_link] = STATE(142), - [sym_inline_link] = STATE(142), - [sym_link_text] = STATE(683), - [sym_span] = STATE(562), - [sym__bracketed_text] = STATE(657), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(142), - [sym_raw_inline] = STATE(142), - [sym_math] = STATE(142), - [sym_verbatim] = STATE(142), - [sym__todo_highlights] = STATE(142), - [sym_todo] = STATE(142), - [sym_note] = STATE(142), - [sym__symbol_fallback] = STATE(142), - [aux_sym__text] = STATE(126), - [aux_sym__inline_repeat1] = STATE(120), - [anon_sym_LBRACE_] = ACTIONS(373), - [anon_sym__] = ACTIONS(375), - [anon_sym_LBRACE_STAR] = ACTIONS(377), - [anon_sym_STAR] = ACTIONS(379), - [anon_sym_LBRACE_CARET] = ACTIONS(381), - [anon_sym_CARET] = ACTIONS(381), - [anon_sym_LBRACE_TILDE] = ACTIONS(383), - [anon_sym_TILDE] = ACTIONS(383), - [anon_sym_LBRACE_EQ] = ACTIONS(385), - [anon_sym_LBRACE_PLUS] = ACTIONS(387), - [anon_sym_LBRACE_DASH] = ACTIONS(389), - [anon_sym_BSLASH] = ACTIONS(391), - [sym_quotation_marks] = ACTIONS(393), - [sym_ellipsis] = ACTIONS(393), - [sym_em_dash] = ACTIONS(393), - [sym_en_dash] = ACTIONS(395), - [sym_backslash_escape] = ACTIONS(395), - [anon_sym_LT] = ACTIONS(397), - [sym_symbol] = ACTIONS(393), - [anon_sym_LBRACK_CARET] = ACTIONS(399), - [anon_sym_BANG_LBRACK] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_DOLLAR] = ACTIONS(405), - [anon_sym_TODO] = ACTIONS(407), - [anon_sym_WIP] = ACTIONS(407), - [anon_sym_NOTE] = ACTIONS(409), - [anon_sym_INFO] = ACTIONS(409), - [anon_sym_XXX] = ACTIONS(409), - [sym_fixme] = ACTIONS(393), - [sym__whitespace1] = ACTIONS(411), - [sym__newline] = ACTIONS(413), - [aux_sym__text_token1] = ACTIONS(415), - [sym__verbatim_begin] = ACTIONS(417), + [107] = { + [sym__element] = STATE(109), + [sym_emphasis] = STATE(140), + [sym_emphasis_begin] = STATE(1185), + [sym_strong] = STATE(140), + [sym_strong_begin] = STATE(1186), + [sym_superscript] = STATE(140), + [sym_superscript_begin] = STATE(1187), + [sym_subscript] = STATE(140), + [sym_subscript_begin] = STATE(1188), + [sym_highlighted] = STATE(140), + [sym_highlighted_begin] = STATE(1189), + [sym_insert] = STATE(140), + [sym_insert_begin] = STATE(1190), + [sym_delete] = STATE(140), + [sym_delete_begin] = STATE(1191), + [sym_hard_line_break] = STATE(140), + [sym__smart_punctuation] = STATE(140), + [sym_autolink] = STATE(140), + [sym_footnote_reference] = STATE(140), + [sym_footnote_marker_begin] = STATE(1192), + [sym__image] = STATE(140), + [sym_full_reference_image] = STATE(140), + [sym_collapsed_reference_image] = STATE(140), + [sym_inline_image] = STATE(140), + [sym__image_description] = STATE(700), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(140), + [sym_full_reference_link] = STATE(140), + [sym_collapsed_reference_link] = STATE(140), + [sym_inline_link] = STATE(140), + [sym_link_text] = STATE(699), + [sym_span] = STATE(109), + [sym__bracketed_text] = STATE(666), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(140), + [sym_raw_inline] = STATE(140), + [sym_math] = STATE(140), + [sym_verbatim] = STATE(140), + [sym__todo_highlights] = STATE(140), + [sym_todo] = STATE(140), + [sym_note] = STATE(140), + [sym__symbol_fallback] = STATE(140), + [aux_sym__text] = STATE(125), + [aux_sym__inline_repeat1] = STATE(109), + [anon_sym_LBRACE_] = ACTIONS(193), + [anon_sym__] = ACTIONS(195), + [anon_sym_LBRACE_STAR] = ACTIONS(197), + [anon_sym_STAR] = ACTIONS(199), + [anon_sym_LBRACE_CARET] = ACTIONS(201), + [anon_sym_CARET] = ACTIONS(201), + [anon_sym_LBRACE_TILDE] = ACTIONS(203), + [anon_sym_TILDE] = ACTIONS(203), + [anon_sym_LBRACE_EQ] = ACTIONS(205), + [anon_sym_LBRACE_PLUS] = ACTIONS(207), + [anon_sym_LBRACE_DASH] = ACTIONS(209), + [anon_sym_BSLASH] = ACTIONS(211), + [sym_quotation_marks] = ACTIONS(213), + [sym_ellipsis] = ACTIONS(213), + [sym_em_dash] = ACTIONS(213), + [sym_en_dash] = ACTIONS(215), + [sym_backslash_escape] = ACTIONS(215), + [anon_sym_LT] = ACTIONS(217), + [sym_symbol] = ACTIONS(213), + [anon_sym_LBRACK_CARET] = ACTIONS(219), + [anon_sym_BANG_LBRACK] = ACTIONS(221), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_DOLLAR] = ACTIONS(225), + [anon_sym_TODO] = ACTIONS(227), + [anon_sym_WIP] = ACTIONS(227), + [anon_sym_NOTE] = ACTIONS(229), + [anon_sym_INFO] = ACTIONS(229), + [anon_sym_XXX] = ACTIONS(229), + [sym_fixme] = ACTIONS(213), + [sym__whitespace1] = ACTIONS(231), + [sym__newline] = ACTIONS(943), + [aux_sym__text_token1] = ACTIONS(235), + [sym__verbatim_begin] = ACTIONS(237), + [sym_highlighted_end] = ACTIONS(143), }, - [116] = { - [sym__element] = STATE(116), + [108] = { + [sym__inline] = STATE(1081), + [sym__element] = STATE(3), [sym_emphasis] = STATE(137), - [sym_emphasis_begin] = STATE(1196), + [sym_emphasis_begin] = STATE(1193), [sym_strong] = STATE(137), - [sym_strong_begin] = STATE(1197), + [sym_strong_begin] = STATE(1194), [sym_superscript] = STATE(137), - [sym_superscript_begin] = STATE(1198), + [sym_superscript_begin] = STATE(1195), [sym_subscript] = STATE(137), - [sym_subscript_begin] = STATE(1199), + [sym_subscript_begin] = STATE(1196), [sym_highlighted] = STATE(137), - [sym_highlighted_begin] = STATE(1200), + [sym_highlighted_begin] = STATE(1197), [sym_insert] = STATE(137), - [sym_insert_begin] = STATE(1201), + [sym_insert_begin] = STATE(1198), [sym_delete] = STATE(137), - [sym_delete_begin] = STATE(1202), + [sym_delete_begin] = STATE(1199), [sym_hard_line_break] = STATE(137), [sym__smart_punctuation] = STATE(137), [sym_autolink] = STATE(137), [sym_footnote_reference] = STATE(137), + [sym_footnote_marker_begin] = STATE(1200), [sym__image] = STATE(137), [sym_full_reference_image] = STATE(137), [sym_collapsed_reference_image] = STATE(137), [sym_inline_image] = STATE(137), - [sym__image_description] = STATE(666), - [sym__image_description_begin] = STATE(1103), + [sym__image_description] = STATE(694), + [sym__image_description_begin] = STATE(1114), [sym__link] = STATE(137), [sym_full_reference_link] = STATE(137), [sym_collapsed_reference_link] = STATE(137), [sym_inline_link] = STATE(137), - [sym_link_text] = STATE(665), - [sym_span] = STATE(116), - [sym__bracketed_text] = STATE(651), - [sym__bracketed_text_begin] = STATE(1102), + [sym_link_text] = STATE(693), + [sym_span] = STATE(3), + [sym__bracketed_text] = STATE(672), + [sym__bracketed_text_begin] = STATE(1113), [sym__comment_with_spaces] = STATE(137), [sym_raw_inline] = STATE(137), [sym_math] = STATE(137), @@ -14207,367 +13863,1332 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(137), [sym_note] = STATE(137), [sym__symbol_fallback] = STATE(137), - [aux_sym__text] = STATE(121), - [aux_sym__inline_repeat1] = STATE(116), - [anon_sym_LBRACE_] = ACTIONS(1085), - [anon_sym__] = ACTIONS(1088), - [anon_sym_LBRACE_STAR] = ACTIONS(1091), - [anon_sym_STAR] = ACTIONS(1094), - [anon_sym_LBRACE_CARET] = ACTIONS(1097), - [anon_sym_CARET] = ACTIONS(1097), - [anon_sym_LBRACE_TILDE] = ACTIONS(1100), - [anon_sym_TILDE] = ACTIONS(1100), - [anon_sym_LBRACE_EQ] = ACTIONS(1103), - [anon_sym_LBRACE_PLUS] = ACTIONS(1106), - [anon_sym_LBRACE_DASH] = ACTIONS(1109), - [anon_sym_BSLASH] = ACTIONS(1112), - [sym_quotation_marks] = ACTIONS(1115), - [sym_ellipsis] = ACTIONS(1115), - [sym_em_dash] = ACTIONS(1115), - [sym_en_dash] = ACTIONS(1118), - [sym_backslash_escape] = ACTIONS(1118), - [anon_sym_LT] = ACTIONS(1121), - [sym_symbol] = ACTIONS(1115), - [anon_sym_LBRACK_CARET] = ACTIONS(1124), - [anon_sym_BANG_LBRACK] = ACTIONS(1127), - [anon_sym_LBRACK] = ACTIONS(1130), - [anon_sym_DOLLAR] = ACTIONS(1133), - [anon_sym_TODO] = ACTIONS(1136), - [anon_sym_WIP] = ACTIONS(1136), - [anon_sym_NOTE] = ACTIONS(1139), - [anon_sym_INFO] = ACTIONS(1139), - [anon_sym_XXX] = ACTIONS(1139), - [sym_fixme] = ACTIONS(1115), - [sym__whitespace1] = ACTIONS(1142), - [sym__newline] = ACTIONS(1145), - [aux_sym__text_token1] = ACTIONS(1148), - [sym__verbatim_begin] = ACTIONS(1151), - [sym__image_description_end] = ACTIONS(538), - }, - [117] = { - [sym__inline_without_trailing_space] = STATE(1015), - [sym__element] = STATE(604), - [sym_emphasis] = STATE(138), - [sym_emphasis_begin] = STATE(1140), - [sym_strong] = STATE(138), - [sym_strong_begin] = STATE(1141), - [sym_superscript] = STATE(138), - [sym_superscript_begin] = STATE(1142), - [sym_subscript] = STATE(138), - [sym_subscript_begin] = STATE(1143), - [sym_highlighted] = STATE(138), - [sym_highlighted_begin] = STATE(1144), - [sym_insert] = STATE(138), - [sym_insert_begin] = STATE(1145), - [sym_delete] = STATE(138), - [sym_delete_begin] = STATE(1146), - [sym_hard_line_break] = STATE(138), - [sym__smart_punctuation] = STATE(138), - [sym_autolink] = STATE(138), - [sym_footnote_reference] = STATE(138), - [sym__image] = STATE(138), - [sym_full_reference_image] = STATE(138), - [sym_collapsed_reference_image] = STATE(138), - [sym_inline_image] = STATE(138), - [sym__image_description] = STATE(667), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(138), - [sym_full_reference_link] = STATE(138), - [sym_collapsed_reference_link] = STATE(138), - [sym_inline_link] = STATE(138), - [sym_link_text] = STATE(689), - [sym_span] = STATE(604), - [sym__bracketed_text] = STATE(658), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(138), - [sym_raw_inline] = STATE(138), - [sym_math] = STATE(138), - [sym_verbatim] = STATE(138), - [sym__todo_highlights] = STATE(138), - [sym_todo] = STATE(138), - [sym_note] = STATE(138), - [sym__symbol_fallback] = STATE(138), - [aux_sym__text] = STATE(124), - [aux_sym__inline_repeat1] = STATE(118), - [anon_sym_LBRACE_] = ACTIONS(419), - [anon_sym__] = ACTIONS(421), - [anon_sym_LBRACE_STAR] = ACTIONS(423), - [anon_sym_STAR] = ACTIONS(425), - [anon_sym_LBRACE_CARET] = ACTIONS(427), - [anon_sym_CARET] = ACTIONS(427), - [anon_sym_LBRACE_TILDE] = ACTIONS(429), - [anon_sym_TILDE] = ACTIONS(429), - [anon_sym_LBRACE_EQ] = ACTIONS(431), - [anon_sym_LBRACE_PLUS] = ACTIONS(433), - [anon_sym_LBRACE_DASH] = ACTIONS(435), - [anon_sym_BSLASH] = ACTIONS(437), - [sym_quotation_marks] = ACTIONS(439), - [sym_ellipsis] = ACTIONS(439), - [sym_em_dash] = ACTIONS(439), - [sym_en_dash] = ACTIONS(441), - [sym_backslash_escape] = ACTIONS(441), - [anon_sym_LT] = ACTIONS(443), - [sym_symbol] = ACTIONS(439), - [anon_sym_LBRACK_CARET] = ACTIONS(445), - [anon_sym_BANG_LBRACK] = ACTIONS(447), - [anon_sym_LBRACK] = ACTIONS(449), - [anon_sym_DOLLAR] = ACTIONS(451), - [anon_sym_TODO] = ACTIONS(453), - [anon_sym_WIP] = ACTIONS(453), - [anon_sym_NOTE] = ACTIONS(455), - [anon_sym_INFO] = ACTIONS(455), - [anon_sym_XXX] = ACTIONS(455), - [sym_fixme] = ACTIONS(439), - [sym__whitespace1] = ACTIONS(457), - [sym__newline] = ACTIONS(459), - [aux_sym__text_token1] = ACTIONS(461), - [sym__verbatim_begin] = ACTIONS(463), + [aux_sym__text] = STATE(131), + [aux_sym__inline_repeat1] = STATE(3), + [anon_sym_LBRACE_] = ACTIONS(97), + [anon_sym__] = ACTIONS(99), + [anon_sym_LBRACE_STAR] = ACTIONS(101), + [anon_sym_STAR] = ACTIONS(103), + [anon_sym_LBRACE_CARET] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [anon_sym_LBRACE_TILDE] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(107), + [anon_sym_LBRACE_EQ] = ACTIONS(109), + [anon_sym_LBRACE_PLUS] = ACTIONS(111), + [anon_sym_LBRACE_DASH] = ACTIONS(113), + [anon_sym_BSLASH] = ACTIONS(115), + [sym_quotation_marks] = ACTIONS(117), + [sym_ellipsis] = ACTIONS(117), + [sym_em_dash] = ACTIONS(117), + [sym_en_dash] = ACTIONS(119), + [sym_backslash_escape] = ACTIONS(119), + [anon_sym_LT] = ACTIONS(121), + [sym_symbol] = ACTIONS(117), + [anon_sym_LBRACK_CARET] = ACTIONS(123), + [anon_sym_BANG_LBRACK] = ACTIONS(125), + [anon_sym_LBRACK] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_TODO] = ACTIONS(131), + [anon_sym_WIP] = ACTIONS(131), + [anon_sym_NOTE] = ACTIONS(133), + [anon_sym_INFO] = ACTIONS(133), + [anon_sym_XXX] = ACTIONS(133), + [sym_fixme] = ACTIONS(117), + [sym__whitespace1] = ACTIONS(135), + [sym__newline] = ACTIONS(145), + [aux_sym__text_token1] = ACTIONS(139), + [sym__verbatim_begin] = ACTIONS(141), }, - [118] = { - [sym__element] = STATE(606), - [sym_emphasis] = STATE(138), - [sym_emphasis_begin] = STATE(1140), - [sym_strong] = STATE(138), - [sym_strong_begin] = STATE(1141), - [sym_superscript] = STATE(138), - [sym_superscript_begin] = STATE(1142), - [sym_subscript] = STATE(138), - [sym_subscript_begin] = STATE(1143), - [sym_highlighted] = STATE(138), - [sym_highlighted_begin] = STATE(1144), - [sym_insert] = STATE(138), - [sym_insert_begin] = STATE(1145), - [sym_delete] = STATE(138), - [sym_delete_begin] = STATE(1146), - [sym_hard_line_break] = STATE(138), - [sym__smart_punctuation] = STATE(138), - [sym_autolink] = STATE(138), - [sym_footnote_reference] = STATE(138), - [sym__image] = STATE(138), - [sym_full_reference_image] = STATE(138), - [sym_collapsed_reference_image] = STATE(138), - [sym_inline_image] = STATE(138), - [sym__image_description] = STATE(667), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(138), - [sym_full_reference_link] = STATE(138), - [sym_collapsed_reference_link] = STATE(138), - [sym_inline_link] = STATE(138), - [sym_link_text] = STATE(689), - [sym_span] = STATE(606), - [sym__bracketed_text] = STATE(658), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(138), - [sym_raw_inline] = STATE(138), - [sym_math] = STATE(138), - [sym_verbatim] = STATE(138), - [sym__todo_highlights] = STATE(138), - [sym_todo] = STATE(138), - [sym_note] = STATE(138), - [sym__symbol_fallback] = STATE(138), - [aux_sym__text] = STATE(124), - [aux_sym__inline_repeat1] = STATE(119), - [anon_sym_LBRACE_] = ACTIONS(419), - [anon_sym__] = ACTIONS(421), - [anon_sym_LBRACE_STAR] = ACTIONS(423), - [anon_sym_STAR] = ACTIONS(425), - [anon_sym_LBRACE_CARET] = ACTIONS(427), - [anon_sym_CARET] = ACTIONS(427), - [anon_sym_LBRACE_TILDE] = ACTIONS(429), - [anon_sym_TILDE] = ACTIONS(429), - [anon_sym_LBRACE_EQ] = ACTIONS(431), - [anon_sym_LBRACE_PLUS] = ACTIONS(433), - [anon_sym_LBRACE_DASH] = ACTIONS(435), - [anon_sym_BSLASH] = ACTIONS(437), - [sym_quotation_marks] = ACTIONS(439), - [sym_ellipsis] = ACTIONS(439), - [sym_em_dash] = ACTIONS(439), - [sym_en_dash] = ACTIONS(441), - [sym_backslash_escape] = ACTIONS(441), - [anon_sym_LT] = ACTIONS(443), - [sym_symbol] = ACTIONS(439), - [anon_sym_LBRACK_CARET] = ACTIONS(445), - [anon_sym_BANG_LBRACK] = ACTIONS(447), - [anon_sym_LBRACK] = ACTIONS(449), - [anon_sym_DOLLAR] = ACTIONS(451), - [anon_sym_TODO] = ACTIONS(453), - [anon_sym_WIP] = ACTIONS(453), - [anon_sym_NOTE] = ACTIONS(455), - [anon_sym_INFO] = ACTIONS(455), - [anon_sym_XXX] = ACTIONS(455), - [sym_fixme] = ACTIONS(439), - [sym__whitespace1] = ACTIONS(457), - [sym__newline] = ACTIONS(1154), - [aux_sym__text_token1] = ACTIONS(461), - [sym__verbatim_begin] = ACTIONS(463), + [109] = { + [sym__element] = STATE(109), + [sym_emphasis] = STATE(140), + [sym_emphasis_begin] = STATE(1185), + [sym_strong] = STATE(140), + [sym_strong_begin] = STATE(1186), + [sym_superscript] = STATE(140), + [sym_superscript_begin] = STATE(1187), + [sym_subscript] = STATE(140), + [sym_subscript_begin] = STATE(1188), + [sym_highlighted] = STATE(140), + [sym_highlighted_begin] = STATE(1189), + [sym_insert] = STATE(140), + [sym_insert_begin] = STATE(1190), + [sym_delete] = STATE(140), + [sym_delete_begin] = STATE(1191), + [sym_hard_line_break] = STATE(140), + [sym__smart_punctuation] = STATE(140), + [sym_autolink] = STATE(140), + [sym_footnote_reference] = STATE(140), + [sym_footnote_marker_begin] = STATE(1192), + [sym__image] = STATE(140), + [sym_full_reference_image] = STATE(140), + [sym_collapsed_reference_image] = STATE(140), + [sym_inline_image] = STATE(140), + [sym__image_description] = STATE(700), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(140), + [sym_full_reference_link] = STATE(140), + [sym_collapsed_reference_link] = STATE(140), + [sym_inline_link] = STATE(140), + [sym_link_text] = STATE(699), + [sym_span] = STATE(109), + [sym__bracketed_text] = STATE(666), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(140), + [sym_raw_inline] = STATE(140), + [sym_math] = STATE(140), + [sym_verbatim] = STATE(140), + [sym__todo_highlights] = STATE(140), + [sym_todo] = STATE(140), + [sym_note] = STATE(140), + [sym__symbol_fallback] = STATE(140), + [aux_sym__text] = STATE(125), + [aux_sym__inline_repeat1] = STATE(109), + [anon_sym_LBRACE_] = ACTIONS(945), + [anon_sym__] = ACTIONS(948), + [anon_sym_LBRACE_STAR] = ACTIONS(951), + [anon_sym_STAR] = ACTIONS(954), + [anon_sym_LBRACE_CARET] = ACTIONS(957), + [anon_sym_CARET] = ACTIONS(957), + [anon_sym_LBRACE_TILDE] = ACTIONS(960), + [anon_sym_TILDE] = ACTIONS(960), + [anon_sym_LBRACE_EQ] = ACTIONS(963), + [anon_sym_LBRACE_PLUS] = ACTIONS(966), + [anon_sym_LBRACE_DASH] = ACTIONS(969), + [anon_sym_BSLASH] = ACTIONS(972), + [sym_quotation_marks] = ACTIONS(975), + [sym_ellipsis] = ACTIONS(975), + [sym_em_dash] = ACTIONS(975), + [sym_en_dash] = ACTIONS(978), + [sym_backslash_escape] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(981), + [sym_symbol] = ACTIONS(975), + [anon_sym_LBRACK_CARET] = ACTIONS(984), + [anon_sym_BANG_LBRACK] = ACTIONS(987), + [anon_sym_LBRACK] = ACTIONS(990), + [anon_sym_DOLLAR] = ACTIONS(993), + [anon_sym_TODO] = ACTIONS(996), + [anon_sym_WIP] = ACTIONS(996), + [anon_sym_NOTE] = ACTIONS(999), + [anon_sym_INFO] = ACTIONS(999), + [anon_sym_XXX] = ACTIONS(999), + [sym_fixme] = ACTIONS(975), + [sym__whitespace1] = ACTIONS(1002), + [sym__newline] = ACTIONS(1005), + [aux_sym__text_token1] = ACTIONS(1008), + [sym__verbatim_begin] = ACTIONS(1011), + [sym_highlighted_end] = ACTIONS(540), }, - [119] = { - [sym__element] = STATE(119), - [sym_emphasis] = STATE(145), - [sym_emphasis_begin] = STATE(1210), - [sym_strong] = STATE(145), - [sym_strong_begin] = STATE(1211), - [sym_superscript] = STATE(145), - [sym_superscript_begin] = STATE(1212), - [sym_subscript] = STATE(145), - [sym_subscript_begin] = STATE(1213), - [sym_highlighted] = STATE(145), - [sym_highlighted_begin] = STATE(1214), - [sym_insert] = STATE(145), - [sym_insert_begin] = STATE(1215), - [sym_delete] = STATE(145), - [sym_delete_begin] = STATE(1216), - [sym_hard_line_break] = STATE(145), - [sym__smart_punctuation] = STATE(145), - [sym_autolink] = STATE(145), - [sym_footnote_reference] = STATE(145), - [sym__image] = STATE(145), - [sym_full_reference_image] = STATE(145), - [sym_collapsed_reference_image] = STATE(145), - [sym_inline_image] = STATE(145), - [sym__image_description] = STATE(686), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(145), - [sym_full_reference_link] = STATE(145), - [sym_collapsed_reference_link] = STATE(145), - [sym_inline_link] = STATE(145), - [sym_link_text] = STATE(668), - [sym_span] = STATE(119), - [sym__bracketed_text] = STATE(652), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(145), - [sym_raw_inline] = STATE(145), - [sym_math] = STATE(145), - [sym_verbatim] = STATE(145), - [sym__todo_highlights] = STATE(145), - [sym_todo] = STATE(145), - [sym_note] = STATE(145), - [sym__symbol_fallback] = STATE(145), - [aux_sym__text] = STATE(132), - [aux_sym__inline_repeat1] = STATE(119), - [anon_sym_LBRACE_] = ACTIONS(1156), - [anon_sym__] = ACTIONS(1159), - [anon_sym_LBRACE_STAR] = ACTIONS(1162), - [anon_sym_STAR] = ACTIONS(1165), - [anon_sym_LBRACE_CARET] = ACTIONS(1168), - [anon_sym_CARET] = ACTIONS(1168), - [anon_sym_LBRACE_TILDE] = ACTIONS(1171), - [anon_sym_TILDE] = ACTIONS(1171), - [anon_sym_LBRACE_EQ] = ACTIONS(1174), - [anon_sym_LBRACE_PLUS] = ACTIONS(1177), - [anon_sym_LBRACE_DASH] = ACTIONS(1180), - [anon_sym_BSLASH] = ACTIONS(1183), - [sym_quotation_marks] = ACTIONS(1186), - [sym_ellipsis] = ACTIONS(1186), - [sym_em_dash] = ACTIONS(1186), - [sym_en_dash] = ACTIONS(1189), - [sym_backslash_escape] = ACTIONS(1189), - [anon_sym_LT] = ACTIONS(1192), - [sym_symbol] = ACTIONS(1186), - [anon_sym_LBRACK_CARET] = ACTIONS(1195), - [anon_sym_BANG_LBRACK] = ACTIONS(1198), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_DOLLAR] = ACTIONS(1204), - [anon_sym_TODO] = ACTIONS(1207), - [anon_sym_WIP] = ACTIONS(1207), - [anon_sym_NOTE] = ACTIONS(1210), - [anon_sym_INFO] = ACTIONS(1210), - [anon_sym_XXX] = ACTIONS(1210), - [sym_fixme] = ACTIONS(1186), - [sym__whitespace1] = ACTIONS(1213), - [sym__newline] = ACTIONS(1216), - [aux_sym__text_token1] = ACTIONS(1219), - [sym__verbatim_begin] = ACTIONS(1222), + [110] = { + [sym__element] = STATE(115), + [sym_emphasis] = STATE(134), + [sym_emphasis_begin] = STATE(1225), + [sym_strong] = STATE(134), + [sym_strong_begin] = STATE(1226), + [sym_superscript] = STATE(134), + [sym_superscript_begin] = STATE(1227), + [sym_subscript] = STATE(134), + [sym_subscript_begin] = STATE(1228), + [sym_highlighted] = STATE(134), + [sym_highlighted_begin] = STATE(1229), + [sym_insert] = STATE(134), + [sym_insert_begin] = STATE(1230), + [sym_delete] = STATE(134), + [sym_delete_begin] = STATE(1231), + [sym_hard_line_break] = STATE(134), + [sym__smart_punctuation] = STATE(134), + [sym_autolink] = STATE(134), + [sym_footnote_reference] = STATE(134), + [sym_footnote_marker_begin] = STATE(1232), + [sym__image] = STATE(134), + [sym_full_reference_image] = STATE(134), + [sym_collapsed_reference_image] = STATE(134), + [sym_inline_image] = STATE(134), + [sym__image_description] = STATE(676), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(134), + [sym_full_reference_link] = STATE(134), + [sym_collapsed_reference_link] = STATE(134), + [sym_inline_link] = STATE(134), + [sym_link_text] = STATE(695), + [sym_span] = STATE(115), + [sym__bracketed_text] = STATE(669), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(134), + [sym_raw_inline] = STATE(134), + [sym_math] = STATE(134), + [sym_verbatim] = STATE(134), + [sym__todo_highlights] = STATE(134), + [sym_todo] = STATE(134), + [sym_note] = STATE(134), + [sym__symbol_fallback] = STATE(134), + [aux_sym__text] = STATE(123), + [aux_sym__inline_repeat1] = STATE(115), + [anon_sym_LBRACE_] = ACTIONS(753), + [anon_sym__] = ACTIONS(755), + [anon_sym_LBRACE_STAR] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_LBRACE_CARET] = ACTIONS(761), + [anon_sym_CARET] = ACTIONS(761), + [anon_sym_LBRACE_TILDE] = ACTIONS(763), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_LBRACE_EQ] = ACTIONS(765), + [anon_sym_LBRACE_PLUS] = ACTIONS(767), + [anon_sym_LBRACE_DASH] = ACTIONS(769), + [anon_sym_BSLASH] = ACTIONS(771), + [sym_quotation_marks] = ACTIONS(773), + [sym_ellipsis] = ACTIONS(773), + [sym_em_dash] = ACTIONS(773), + [sym_en_dash] = ACTIONS(775), + [sym_backslash_escape] = ACTIONS(775), + [anon_sym_LT] = ACTIONS(777), + [sym_symbol] = ACTIONS(773), + [anon_sym_LBRACK_CARET] = ACTIONS(779), + [anon_sym_BANG_LBRACK] = ACTIONS(781), + [anon_sym_LBRACK] = ACTIONS(783), + [anon_sym_DOLLAR] = ACTIONS(785), + [anon_sym_TODO] = ACTIONS(787), + [anon_sym_WIP] = ACTIONS(787), + [anon_sym_NOTE] = ACTIONS(789), + [anon_sym_INFO] = ACTIONS(789), + [anon_sym_XXX] = ACTIONS(789), + [sym_fixme] = ACTIONS(773), + [sym__whitespace1] = ACTIONS(791), + [sym__newline] = ACTIONS(1014), + [aux_sym__text_token1] = ACTIONS(795), + [sym__verbatim_begin] = ACTIONS(797), + [sym__bracketed_text_end] = ACTIONS(143), }, - [120] = { - [sym__element] = STATE(567), - [sym_emphasis] = STATE(142), - [sym_emphasis_begin] = STATE(1147), - [sym_strong] = STATE(142), - [sym_strong_begin] = STATE(1148), - [sym_superscript] = STATE(142), - [sym_superscript_begin] = STATE(1149), - [sym_subscript] = STATE(142), - [sym_subscript_begin] = STATE(1150), - [sym_highlighted] = STATE(142), - [sym_highlighted_begin] = STATE(1151), - [sym_insert] = STATE(142), - [sym_insert_begin] = STATE(1152), - [sym_delete] = STATE(142), - [sym_delete_begin] = STATE(1153), - [sym_hard_line_break] = STATE(142), - [sym__smart_punctuation] = STATE(142), - [sym_autolink] = STATE(142), - [sym_footnote_reference] = STATE(142), - [sym__image] = STATE(142), - [sym_full_reference_image] = STATE(142), - [sym_collapsed_reference_image] = STATE(142), - [sym_inline_image] = STATE(142), - [sym__image_description] = STATE(685), - [sym__image_description_begin] = STATE(1103), - [sym__link] = STATE(142), - [sym_full_reference_link] = STATE(142), - [sym_collapsed_reference_link] = STATE(142), - [sym_inline_link] = STATE(142), - [sym_link_text] = STATE(683), - [sym_span] = STATE(567), - [sym__bracketed_text] = STATE(657), - [sym__bracketed_text_begin] = STATE(1102), - [sym__comment_with_spaces] = STATE(142), - [sym_raw_inline] = STATE(142), - [sym_math] = STATE(142), - [sym_verbatim] = STATE(142), - [sym__todo_highlights] = STATE(142), - [sym_todo] = STATE(142), - [sym_note] = STATE(142), - [sym__symbol_fallback] = STATE(142), + [111] = { + [sym__inline] = STATE(1074), + [sym__element] = STATE(14), + [sym_emphasis] = STATE(133), + [sym_emphasis_begin] = STATE(1201), + [sym_strong] = STATE(133), + [sym_strong_begin] = STATE(1202), + [sym_superscript] = STATE(133), + [sym_superscript_begin] = STATE(1203), + [sym_subscript] = STATE(133), + [sym_subscript_begin] = STATE(1204), + [sym_highlighted] = STATE(133), + [sym_highlighted_begin] = STATE(1205), + [sym_insert] = STATE(133), + [sym_insert_begin] = STATE(1206), + [sym_delete] = STATE(133), + [sym_delete_begin] = STATE(1207), + [sym_hard_line_break] = STATE(133), + [sym__smart_punctuation] = STATE(133), + [sym_autolink] = STATE(133), + [sym_footnote_reference] = STATE(133), + [sym_footnote_marker_begin] = STATE(1208), + [sym__image] = STATE(133), + [sym_full_reference_image] = STATE(133), + [sym_collapsed_reference_image] = STATE(133), + [sym_inline_image] = STATE(133), + [sym__image_description] = STATE(688), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(133), + [sym_full_reference_link] = STATE(133), + [sym_collapsed_reference_link] = STATE(133), + [sym_inline_link] = STATE(133), + [sym_link_text] = STATE(686), + [sym_span] = STATE(14), + [sym__bracketed_text] = STATE(673), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(133), + [sym_raw_inline] = STATE(133), + [sym_math] = STATE(133), + [sym_verbatim] = STATE(133), + [sym__todo_highlights] = STATE(133), + [sym_todo] = STATE(133), + [sym_note] = STATE(133), + [sym__symbol_fallback] = STATE(133), + [aux_sym__text] = STATE(129), + [aux_sym__inline_repeat1] = STATE(14), + [anon_sym_LBRACE_] = ACTIONS(423), + [anon_sym__] = ACTIONS(425), + [anon_sym_LBRACE_STAR] = ACTIONS(427), + [anon_sym_STAR] = ACTIONS(429), + [anon_sym_LBRACE_CARET] = ACTIONS(431), + [anon_sym_CARET] = ACTIONS(431), + [anon_sym_LBRACE_TILDE] = ACTIONS(433), + [anon_sym_TILDE] = ACTIONS(433), + [anon_sym_LBRACE_EQ] = ACTIONS(435), + [anon_sym_LBRACE_PLUS] = ACTIONS(437), + [anon_sym_LBRACE_DASH] = ACTIONS(439), + [anon_sym_BSLASH] = ACTIONS(441), + [sym_quotation_marks] = ACTIONS(443), + [sym_ellipsis] = ACTIONS(443), + [sym_em_dash] = ACTIONS(443), + [sym_en_dash] = ACTIONS(445), + [sym_backslash_escape] = ACTIONS(445), + [anon_sym_LT] = ACTIONS(447), + [sym_symbol] = ACTIONS(443), + [anon_sym_LBRACK_CARET] = ACTIONS(449), + [anon_sym_BANG_LBRACK] = ACTIONS(451), + [anon_sym_LBRACK] = ACTIONS(453), + [anon_sym_DOLLAR] = ACTIONS(455), + [anon_sym_TODO] = ACTIONS(457), + [anon_sym_WIP] = ACTIONS(457), + [anon_sym_NOTE] = ACTIONS(459), + [anon_sym_INFO] = ACTIONS(459), + [anon_sym_XXX] = ACTIONS(459), + [sym_fixme] = ACTIONS(443), + [sym__whitespace1] = ACTIONS(461), + [sym__newline] = ACTIONS(469), + [aux_sym__text_token1] = ACTIONS(465), + [sym__verbatim_begin] = ACTIONS(467), + }, + [112] = { + [sym__element] = STATE(112), + [sym_emphasis] = STATE(139), + [sym_emphasis_begin] = STATE(1217), + [sym_strong] = STATE(139), + [sym_strong_begin] = STATE(1218), + [sym_superscript] = STATE(139), + [sym_superscript_begin] = STATE(1219), + [sym_subscript] = STATE(139), + [sym_subscript_begin] = STATE(1220), + [sym_highlighted] = STATE(139), + [sym_highlighted_begin] = STATE(1221), + [sym_insert] = STATE(139), + [sym_insert_begin] = STATE(1222), + [sym_delete] = STATE(139), + [sym_delete_begin] = STATE(1223), + [sym_hard_line_break] = STATE(139), + [sym__smart_punctuation] = STATE(139), + [sym_autolink] = STATE(139), + [sym_footnote_reference] = STATE(139), + [sym_footnote_marker_begin] = STATE(1224), + [sym__image] = STATE(139), + [sym_full_reference_image] = STATE(139), + [sym_collapsed_reference_image] = STATE(139), + [sym_inline_image] = STATE(139), + [sym__image_description] = STATE(678), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(139), + [sym_full_reference_link] = STATE(139), + [sym_collapsed_reference_link] = STATE(139), + [sym_inline_link] = STATE(139), + [sym_link_text] = STATE(677), + [sym_span] = STATE(112), + [sym__bracketed_text] = STATE(663), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(139), + [sym_raw_inline] = STATE(139), + [sym_math] = STATE(139), + [sym_verbatim] = STATE(139), + [sym__todo_highlights] = STATE(139), + [sym_todo] = STATE(139), + [sym_note] = STATE(139), + [sym__symbol_fallback] = STATE(139), + [aux_sym__text] = STATE(121), + [aux_sym__inline_repeat1] = STATE(112), + [anon_sym_LBRACE_] = ACTIONS(1016), + [anon_sym__] = ACTIONS(1019), + [anon_sym_LBRACE_STAR] = ACTIONS(1022), + [anon_sym_STAR] = ACTIONS(1025), + [anon_sym_LBRACE_CARET] = ACTIONS(1028), + [anon_sym_CARET] = ACTIONS(1028), + [anon_sym_LBRACE_TILDE] = ACTIONS(1031), + [anon_sym_TILDE] = ACTIONS(1031), + [anon_sym_LBRACE_EQ] = ACTIONS(1034), + [anon_sym_LBRACE_PLUS] = ACTIONS(1037), + [anon_sym_LBRACE_DASH] = ACTIONS(1040), + [anon_sym_BSLASH] = ACTIONS(1043), + [sym_quotation_marks] = ACTIONS(1046), + [sym_ellipsis] = ACTIONS(1046), + [sym_em_dash] = ACTIONS(1046), + [sym_en_dash] = ACTIONS(1049), + [sym_backslash_escape] = ACTIONS(1049), + [anon_sym_LT] = ACTIONS(1052), + [sym_symbol] = ACTIONS(1046), + [anon_sym_LBRACK_CARET] = ACTIONS(1055), + [anon_sym_BANG_LBRACK] = ACTIONS(1058), + [anon_sym_LBRACK] = ACTIONS(1061), + [anon_sym_DOLLAR] = ACTIONS(1064), + [anon_sym_TODO] = ACTIONS(1067), + [anon_sym_WIP] = ACTIONS(1067), + [anon_sym_NOTE] = ACTIONS(1070), + [anon_sym_INFO] = ACTIONS(1070), + [anon_sym_XXX] = ACTIONS(1070), + [sym_fixme] = ACTIONS(1046), + [sym__whitespace1] = ACTIONS(1073), + [sym__newline] = ACTIONS(1076), + [aux_sym__text_token1] = ACTIONS(1079), + [sym__verbatim_begin] = ACTIONS(1082), + [sym__image_description_end] = ACTIONS(540), + }, + [113] = { + [sym__inline] = STATE(1059), + [sym__element] = STATE(47), + [sym_emphasis] = STATE(136), + [sym_emphasis_begin] = STATE(1209), + [sym_strong] = STATE(136), + [sym_strong_begin] = STATE(1210), + [sym_superscript] = STATE(136), + [sym_superscript_begin] = STATE(1211), + [sym_subscript] = STATE(136), + [sym_subscript_begin] = STATE(1212), + [sym_highlighted] = STATE(136), + [sym_highlighted_begin] = STATE(1213), + [sym_insert] = STATE(136), + [sym_insert_begin] = STATE(1214), + [sym_delete] = STATE(136), + [sym_delete_begin] = STATE(1215), + [sym_hard_line_break] = STATE(136), + [sym__smart_punctuation] = STATE(136), + [sym_autolink] = STATE(136), + [sym_footnote_reference] = STATE(136), + [sym_footnote_marker_begin] = STATE(1216), + [sym__image] = STATE(136), + [sym_full_reference_image] = STATE(136), + [sym_collapsed_reference_image] = STATE(136), + [sym_inline_image] = STATE(136), + [sym__image_description] = STATE(682), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(136), + [sym_full_reference_link] = STATE(136), + [sym_collapsed_reference_link] = STATE(136), + [sym_inline_link] = STATE(136), + [sym_link_text] = STATE(675), + [sym_span] = STATE(47), + [sym__bracketed_text] = STATE(674), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(136), + [sym_raw_inline] = STATE(136), + [sym_math] = STATE(136), + [sym_verbatim] = STATE(136), + [sym__todo_highlights] = STATE(136), + [sym_todo] = STATE(136), + [sym_note] = STATE(136), + [sym__symbol_fallback] = STATE(136), + [aux_sym__text] = STATE(127), + [aux_sym__inline_repeat1] = STATE(47), + [anon_sym_LBRACE_] = ACTIONS(377), + [anon_sym__] = ACTIONS(379), + [anon_sym_LBRACE_STAR] = ACTIONS(381), + [anon_sym_STAR] = ACTIONS(383), + [anon_sym_LBRACE_CARET] = ACTIONS(385), + [anon_sym_CARET] = ACTIONS(385), + [anon_sym_LBRACE_TILDE] = ACTIONS(387), + [anon_sym_TILDE] = ACTIONS(387), + [anon_sym_LBRACE_EQ] = ACTIONS(389), + [anon_sym_LBRACE_PLUS] = ACTIONS(391), + [anon_sym_LBRACE_DASH] = ACTIONS(393), + [anon_sym_BSLASH] = ACTIONS(395), + [sym_quotation_marks] = ACTIONS(397), + [sym_ellipsis] = ACTIONS(397), + [sym_em_dash] = ACTIONS(397), + [sym_en_dash] = ACTIONS(399), + [sym_backslash_escape] = ACTIONS(399), + [anon_sym_LT] = ACTIONS(401), + [sym_symbol] = ACTIONS(397), + [anon_sym_LBRACK_CARET] = ACTIONS(403), + [anon_sym_BANG_LBRACK] = ACTIONS(405), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_DOLLAR] = ACTIONS(409), + [anon_sym_TODO] = ACTIONS(411), + [anon_sym_WIP] = ACTIONS(411), + [anon_sym_NOTE] = ACTIONS(413), + [anon_sym_INFO] = ACTIONS(413), + [anon_sym_XXX] = ACTIONS(413), + [sym_fixme] = ACTIONS(397), + [sym__whitespace1] = ACTIONS(415), + [sym__newline] = ACTIONS(417), + [aux_sym__text_token1] = ACTIONS(419), + [sym__verbatim_begin] = ACTIONS(421), + }, + [114] = { + [sym__inline] = STATE(1036), + [sym__element] = STATE(82), + [sym_emphasis] = STATE(143), + [sym_emphasis_begin] = STATE(1169), + [sym_strong] = STATE(143), + [sym_strong_begin] = STATE(1170), + [sym_superscript] = STATE(143), + [sym_superscript_begin] = STATE(1171), + [sym_subscript] = STATE(143), + [sym_subscript_begin] = STATE(1172), + [sym_highlighted] = STATE(143), + [sym_highlighted_begin] = STATE(1173), + [sym_insert] = STATE(143), + [sym_insert_begin] = STATE(1174), + [sym_delete] = STATE(143), + [sym_delete_begin] = STATE(1175), + [sym_hard_line_break] = STATE(143), + [sym__smart_punctuation] = STATE(143), + [sym_autolink] = STATE(143), + [sym_footnote_reference] = STATE(143), + [sym_footnote_marker_begin] = STATE(1176), + [sym__image] = STATE(143), + [sym_full_reference_image] = STATE(143), + [sym_collapsed_reference_image] = STATE(143), + [sym_inline_image] = STATE(143), + [sym__image_description] = STATE(701), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(143), + [sym_full_reference_link] = STATE(143), + [sym_collapsed_reference_link] = STATE(143), + [sym_inline_link] = STATE(143), + [sym_link_text] = STATE(702), + [sym_span] = STATE(82), + [sym__bracketed_text] = STATE(667), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(143), + [sym_raw_inline] = STATE(143), + [sym_math] = STATE(143), + [sym_verbatim] = STATE(143), + [sym__todo_highlights] = STATE(143), + [sym_todo] = STATE(143), + [sym_note] = STATE(143), + [sym__symbol_fallback] = STATE(143), [aux_sym__text] = STATE(126), - [aux_sym__inline_repeat1] = STATE(119), - [anon_sym_LBRACE_] = ACTIONS(373), - [anon_sym__] = ACTIONS(375), - [anon_sym_LBRACE_STAR] = ACTIONS(377), - [anon_sym_STAR] = ACTIONS(379), - [anon_sym_LBRACE_CARET] = ACTIONS(381), - [anon_sym_CARET] = ACTIONS(381), - [anon_sym_LBRACE_TILDE] = ACTIONS(383), - [anon_sym_TILDE] = ACTIONS(383), - [anon_sym_LBRACE_EQ] = ACTIONS(385), - [anon_sym_LBRACE_PLUS] = ACTIONS(387), - [anon_sym_LBRACE_DASH] = ACTIONS(389), - [anon_sym_BSLASH] = ACTIONS(391), - [sym_quotation_marks] = ACTIONS(393), - [sym_ellipsis] = ACTIONS(393), - [sym_em_dash] = ACTIONS(393), - [sym_en_dash] = ACTIONS(395), - [sym_backslash_escape] = ACTIONS(395), - [anon_sym_LT] = ACTIONS(397), - [sym_symbol] = ACTIONS(393), - [anon_sym_LBRACK_CARET] = ACTIONS(399), - [anon_sym_BANG_LBRACK] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_DOLLAR] = ACTIONS(405), - [anon_sym_TODO] = ACTIONS(407), - [anon_sym_WIP] = ACTIONS(407), - [anon_sym_NOTE] = ACTIONS(409), - [anon_sym_INFO] = ACTIONS(409), - [anon_sym_XXX] = ACTIONS(409), - [sym_fixme] = ACTIONS(393), - [sym__whitespace1] = ACTIONS(411), - [sym__newline] = ACTIONS(1154), - [aux_sym__text_token1] = ACTIONS(415), - [sym__verbatim_begin] = ACTIONS(417), + [aux_sym__inline_repeat1] = STATE(82), + [anon_sym_LBRACE_] = ACTIONS(285), + [anon_sym__] = ACTIONS(287), + [anon_sym_LBRACE_STAR] = ACTIONS(289), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_LBRACE_CARET] = ACTIONS(293), + [anon_sym_CARET] = ACTIONS(293), + [anon_sym_LBRACE_TILDE] = ACTIONS(295), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_LBRACE_EQ] = ACTIONS(297), + [anon_sym_LBRACE_PLUS] = ACTIONS(299), + [anon_sym_LBRACE_DASH] = ACTIONS(301), + [anon_sym_BSLASH] = ACTIONS(303), + [sym_quotation_marks] = ACTIONS(305), + [sym_ellipsis] = ACTIONS(305), + [sym_em_dash] = ACTIONS(305), + [sym_en_dash] = ACTIONS(307), + [sym_backslash_escape] = ACTIONS(307), + [anon_sym_LT] = ACTIONS(309), + [sym_symbol] = ACTIONS(305), + [anon_sym_LBRACK_CARET] = ACTIONS(311), + [anon_sym_BANG_LBRACK] = ACTIONS(313), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_DOLLAR] = ACTIONS(317), + [anon_sym_TODO] = ACTIONS(319), + [anon_sym_WIP] = ACTIONS(319), + [anon_sym_NOTE] = ACTIONS(321), + [anon_sym_INFO] = ACTIONS(321), + [anon_sym_XXX] = ACTIONS(321), + [sym_fixme] = ACTIONS(305), + [sym__whitespace1] = ACTIONS(323), + [sym__newline] = ACTIONS(325), + [aux_sym__text_token1] = ACTIONS(327), + [sym__verbatim_begin] = ACTIONS(329), }, -}; - -static const uint16_t ts_small_parse_table[] = { - [0] = 6, - ACTIONS(1229), 1, + [115] = { + [sym__element] = STATE(115), + [sym_emphasis] = STATE(134), + [sym_emphasis_begin] = STATE(1225), + [sym_strong] = STATE(134), + [sym_strong_begin] = STATE(1226), + [sym_superscript] = STATE(134), + [sym_superscript_begin] = STATE(1227), + [sym_subscript] = STATE(134), + [sym_subscript_begin] = STATE(1228), + [sym_highlighted] = STATE(134), + [sym_highlighted_begin] = STATE(1229), + [sym_insert] = STATE(134), + [sym_insert_begin] = STATE(1230), + [sym_delete] = STATE(134), + [sym_delete_begin] = STATE(1231), + [sym_hard_line_break] = STATE(134), + [sym__smart_punctuation] = STATE(134), + [sym_autolink] = STATE(134), + [sym_footnote_reference] = STATE(134), + [sym_footnote_marker_begin] = STATE(1232), + [sym__image] = STATE(134), + [sym_full_reference_image] = STATE(134), + [sym_collapsed_reference_image] = STATE(134), + [sym_inline_image] = STATE(134), + [sym__image_description] = STATE(676), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(134), + [sym_full_reference_link] = STATE(134), + [sym_collapsed_reference_link] = STATE(134), + [sym_inline_link] = STATE(134), + [sym_link_text] = STATE(695), + [sym_span] = STATE(115), + [sym__bracketed_text] = STATE(669), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(134), + [sym_raw_inline] = STATE(134), + [sym_math] = STATE(134), + [sym_verbatim] = STATE(134), + [sym__todo_highlights] = STATE(134), + [sym_todo] = STATE(134), + [sym_note] = STATE(134), + [sym__symbol_fallback] = STATE(134), + [aux_sym__text] = STATE(123), + [aux_sym__inline_repeat1] = STATE(115), + [anon_sym_LBRACE_] = ACTIONS(1085), + [anon_sym__] = ACTIONS(1088), + [anon_sym_LBRACE_STAR] = ACTIONS(1091), + [anon_sym_STAR] = ACTIONS(1094), + [anon_sym_LBRACE_CARET] = ACTIONS(1097), + [anon_sym_CARET] = ACTIONS(1097), + [anon_sym_LBRACE_TILDE] = ACTIONS(1100), + [anon_sym_TILDE] = ACTIONS(1100), + [anon_sym_LBRACE_EQ] = ACTIONS(1103), + [anon_sym_LBRACE_PLUS] = ACTIONS(1106), + [anon_sym_LBRACE_DASH] = ACTIONS(1109), + [anon_sym_BSLASH] = ACTIONS(1112), + [sym_quotation_marks] = ACTIONS(1115), + [sym_ellipsis] = ACTIONS(1115), + [sym_em_dash] = ACTIONS(1115), + [sym_en_dash] = ACTIONS(1118), + [sym_backslash_escape] = ACTIONS(1118), + [anon_sym_LT] = ACTIONS(1121), + [sym_symbol] = ACTIONS(1115), + [anon_sym_LBRACK_CARET] = ACTIONS(1124), + [anon_sym_BANG_LBRACK] = ACTIONS(1127), + [anon_sym_LBRACK] = ACTIONS(1130), + [anon_sym_DOLLAR] = ACTIONS(1133), + [anon_sym_TODO] = ACTIONS(1136), + [anon_sym_WIP] = ACTIONS(1136), + [anon_sym_NOTE] = ACTIONS(1139), + [anon_sym_INFO] = ACTIONS(1139), + [anon_sym_XXX] = ACTIONS(1139), + [sym_fixme] = ACTIONS(1115), + [sym__whitespace1] = ACTIONS(1142), + [sym__newline] = ACTIONS(1145), + [aux_sym__text_token1] = ACTIONS(1148), + [sym__verbatim_begin] = ACTIONS(1151), + [sym__bracketed_text_end] = ACTIONS(540), + }, + [116] = { + [sym__inline_without_trailing_space] = STATE(1039), + [sym__element] = STATE(538), + [sym_emphasis] = STATE(141), + [sym_emphasis_begin] = STATE(1153), + [sym_strong] = STATE(141), + [sym_strong_begin] = STATE(1154), + [sym_superscript] = STATE(141), + [sym_superscript_begin] = STATE(1155), + [sym_subscript] = STATE(141), + [sym_subscript_begin] = STATE(1156), + [sym_highlighted] = STATE(141), + [sym_highlighted_begin] = STATE(1157), + [sym_insert] = STATE(141), + [sym_insert_begin] = STATE(1158), + [sym_delete] = STATE(141), + [sym_delete_begin] = STATE(1159), + [sym_hard_line_break] = STATE(141), + [sym__smart_punctuation] = STATE(141), + [sym_autolink] = STATE(141), + [sym_footnote_reference] = STATE(141), + [sym_footnote_marker_begin] = STATE(1160), + [sym__image] = STATE(141), + [sym_full_reference_image] = STATE(141), + [sym_collapsed_reference_image] = STATE(141), + [sym_inline_image] = STATE(141), + [sym__image_description] = STATE(681), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(141), + [sym_full_reference_link] = STATE(141), + [sym_collapsed_reference_link] = STATE(141), + [sym_inline_link] = STATE(141), + [sym_link_text] = STATE(680), + [sym_span] = STATE(538), + [sym__bracketed_text] = STATE(664), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(141), + [sym_raw_inline] = STATE(141), + [sym_math] = STATE(141), + [sym_verbatim] = STATE(141), + [sym__todo_highlights] = STATE(141), + [sym_todo] = STATE(141), + [sym_note] = STATE(141), + [sym__symbol_fallback] = STATE(141), + [aux_sym__text] = STATE(128), + [aux_sym__inline_repeat1] = STATE(119), + [anon_sym_LBRACE_] = ACTIONS(147), + [anon_sym__] = ACTIONS(149), + [anon_sym_LBRACE_STAR] = ACTIONS(151), + [anon_sym_STAR] = ACTIONS(153), + [anon_sym_LBRACE_CARET] = ACTIONS(155), + [anon_sym_CARET] = ACTIONS(155), + [anon_sym_LBRACE_TILDE] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_LBRACE_EQ] = ACTIONS(159), + [anon_sym_LBRACE_PLUS] = ACTIONS(161), + [anon_sym_LBRACE_DASH] = ACTIONS(163), + [anon_sym_BSLASH] = ACTIONS(165), + [sym_quotation_marks] = ACTIONS(167), + [sym_ellipsis] = ACTIONS(167), + [sym_em_dash] = ACTIONS(167), + [sym_en_dash] = ACTIONS(169), + [sym_backslash_escape] = ACTIONS(169), + [anon_sym_LT] = ACTIONS(171), + [sym_symbol] = ACTIONS(167), + [anon_sym_LBRACK_CARET] = ACTIONS(173), + [anon_sym_BANG_LBRACK] = ACTIONS(175), + [anon_sym_LBRACK] = ACTIONS(177), + [anon_sym_DOLLAR] = ACTIONS(179), + [anon_sym_TODO] = ACTIONS(181), + [anon_sym_WIP] = ACTIONS(181), + [anon_sym_NOTE] = ACTIONS(183), + [anon_sym_INFO] = ACTIONS(183), + [anon_sym_XXX] = ACTIONS(183), + [sym_fixme] = ACTIONS(167), + [sym__whitespace1] = ACTIONS(185), + [sym__newline] = ACTIONS(187), + [aux_sym__text_token1] = ACTIONS(189), + [sym__verbatim_begin] = ACTIONS(191), + }, + [117] = { + [sym__inline_without_trailing_space] = STATE(1038), + [sym__element] = STATE(572), + [sym_emphasis] = STATE(138), + [sym_emphasis_begin] = STATE(1161), + [sym_strong] = STATE(138), + [sym_strong_begin] = STATE(1162), + [sym_superscript] = STATE(138), + [sym_superscript_begin] = STATE(1163), + [sym_subscript] = STATE(138), + [sym_subscript_begin] = STATE(1164), + [sym_highlighted] = STATE(138), + [sym_highlighted_begin] = STATE(1165), + [sym_insert] = STATE(138), + [sym_insert_begin] = STATE(1166), + [sym_delete] = STATE(138), + [sym_delete_begin] = STATE(1167), + [sym_hard_line_break] = STATE(138), + [sym__smart_punctuation] = STATE(138), + [sym_autolink] = STATE(138), + [sym_footnote_reference] = STATE(138), + [sym_footnote_marker_begin] = STATE(1168), + [sym__image] = STATE(138), + [sym_full_reference_image] = STATE(138), + [sym_collapsed_reference_image] = STATE(138), + [sym_inline_image] = STATE(138), + [sym__image_description] = STATE(703), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(138), + [sym_full_reference_link] = STATE(138), + [sym_collapsed_reference_link] = STATE(138), + [sym_inline_link] = STATE(138), + [sym_link_text] = STATE(697), + [sym_span] = STATE(572), + [sym__bracketed_text] = STATE(671), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(138), + [sym_raw_inline] = STATE(138), + [sym_math] = STATE(138), + [sym_verbatim] = STATE(138), + [sym__todo_highlights] = STATE(138), + [sym_todo] = STATE(138), + [sym_note] = STATE(138), + [sym__symbol_fallback] = STATE(138), + [aux_sym__text] = STATE(122), + [aux_sym__inline_repeat1] = STATE(120), + [anon_sym_LBRACE_] = ACTIONS(331), + [anon_sym__] = ACTIONS(333), + [anon_sym_LBRACE_STAR] = ACTIONS(335), + [anon_sym_STAR] = ACTIONS(337), + [anon_sym_LBRACE_CARET] = ACTIONS(339), + [anon_sym_CARET] = ACTIONS(339), + [anon_sym_LBRACE_TILDE] = ACTIONS(341), + [anon_sym_TILDE] = ACTIONS(341), + [anon_sym_LBRACE_EQ] = ACTIONS(343), + [anon_sym_LBRACE_PLUS] = ACTIONS(345), + [anon_sym_LBRACE_DASH] = ACTIONS(347), + [anon_sym_BSLASH] = ACTIONS(349), + [sym_quotation_marks] = ACTIONS(351), + [sym_ellipsis] = ACTIONS(351), + [sym_em_dash] = ACTIONS(351), + [sym_en_dash] = ACTIONS(353), + [sym_backslash_escape] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [sym_symbol] = ACTIONS(351), + [anon_sym_LBRACK_CARET] = ACTIONS(357), + [anon_sym_BANG_LBRACK] = ACTIONS(359), + [anon_sym_LBRACK] = ACTIONS(361), + [anon_sym_DOLLAR] = ACTIONS(363), + [anon_sym_TODO] = ACTIONS(365), + [anon_sym_WIP] = ACTIONS(365), + [anon_sym_NOTE] = ACTIONS(367), + [anon_sym_INFO] = ACTIONS(367), + [anon_sym_XXX] = ACTIONS(367), + [sym_fixme] = ACTIONS(351), + [sym__whitespace1] = ACTIONS(369), + [sym__newline] = ACTIONS(371), + [aux_sym__text_token1] = ACTIONS(373), + [sym__verbatim_begin] = ACTIONS(375), + }, + [118] = { + [sym__element] = STATE(118), + [sym_emphasis] = STATE(144), + [sym_emphasis_begin] = STATE(1233), + [sym_strong] = STATE(144), + [sym_strong_begin] = STATE(1234), + [sym_superscript] = STATE(144), + [sym_superscript_begin] = STATE(1235), + [sym_subscript] = STATE(144), + [sym_subscript_begin] = STATE(1236), + [sym_highlighted] = STATE(144), + [sym_highlighted_begin] = STATE(1237), + [sym_insert] = STATE(144), + [sym_insert_begin] = STATE(1238), + [sym_delete] = STATE(144), + [sym_delete_begin] = STATE(1239), + [sym_hard_line_break] = STATE(144), + [sym__smart_punctuation] = STATE(144), + [sym_autolink] = STATE(144), + [sym_footnote_reference] = STATE(144), + [sym_footnote_marker_begin] = STATE(1240), + [sym__image] = STATE(144), + [sym_full_reference_image] = STATE(144), + [sym_collapsed_reference_image] = STATE(144), + [sym_inline_image] = STATE(144), + [sym__image_description] = STATE(698), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(144), + [sym_full_reference_link] = STATE(144), + [sym_collapsed_reference_link] = STATE(144), + [sym_inline_link] = STATE(144), + [sym_link_text] = STATE(691), + [sym_span] = STATE(118), + [sym__bracketed_text] = STATE(665), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(144), + [sym_raw_inline] = STATE(144), + [sym_math] = STATE(144), + [sym_verbatim] = STATE(144), + [sym__todo_highlights] = STATE(144), + [sym_todo] = STATE(144), + [sym_note] = STATE(144), + [sym__symbol_fallback] = STATE(144), + [aux_sym__text] = STATE(132), + [aux_sym__inline_repeat1] = STATE(118), + [anon_sym_LBRACE_] = ACTIONS(1154), + [anon_sym__] = ACTIONS(1157), + [anon_sym_LBRACE_STAR] = ACTIONS(1160), + [anon_sym_STAR] = ACTIONS(1163), + [anon_sym_LBRACE_CARET] = ACTIONS(1166), + [anon_sym_CARET] = ACTIONS(1166), + [anon_sym_LBRACE_TILDE] = ACTIONS(1169), + [anon_sym_TILDE] = ACTIONS(1169), + [anon_sym_LBRACE_EQ] = ACTIONS(1172), + [anon_sym_LBRACE_PLUS] = ACTIONS(1175), + [anon_sym_LBRACE_DASH] = ACTIONS(1178), + [anon_sym_BSLASH] = ACTIONS(1181), + [sym_quotation_marks] = ACTIONS(1184), + [sym_ellipsis] = ACTIONS(1184), + [sym_em_dash] = ACTIONS(1184), + [sym_en_dash] = ACTIONS(1187), + [sym_backslash_escape] = ACTIONS(1187), + [anon_sym_LT] = ACTIONS(1190), + [sym_symbol] = ACTIONS(1184), + [anon_sym_LBRACK_CARET] = ACTIONS(1193), + [anon_sym_BANG_LBRACK] = ACTIONS(1196), + [anon_sym_LBRACK] = ACTIONS(1199), + [anon_sym_DOLLAR] = ACTIONS(1202), + [anon_sym_TODO] = ACTIONS(1205), + [anon_sym_WIP] = ACTIONS(1205), + [anon_sym_NOTE] = ACTIONS(1208), + [anon_sym_INFO] = ACTIONS(1208), + [anon_sym_XXX] = ACTIONS(1208), + [sym_fixme] = ACTIONS(1184), + [sym__whitespace1] = ACTIONS(1211), + [sym__newline] = ACTIONS(1214), + [aux_sym__text_token1] = ACTIONS(1217), + [sym__verbatim_begin] = ACTIONS(1220), + }, + [119] = { + [sym__element] = STATE(619), + [sym_emphasis] = STATE(141), + [sym_emphasis_begin] = STATE(1153), + [sym_strong] = STATE(141), + [sym_strong_begin] = STATE(1154), + [sym_superscript] = STATE(141), + [sym_superscript_begin] = STATE(1155), + [sym_subscript] = STATE(141), + [sym_subscript_begin] = STATE(1156), + [sym_highlighted] = STATE(141), + [sym_highlighted_begin] = STATE(1157), + [sym_insert] = STATE(141), + [sym_insert_begin] = STATE(1158), + [sym_delete] = STATE(141), + [sym_delete_begin] = STATE(1159), + [sym_hard_line_break] = STATE(141), + [sym__smart_punctuation] = STATE(141), + [sym_autolink] = STATE(141), + [sym_footnote_reference] = STATE(141), + [sym_footnote_marker_begin] = STATE(1160), + [sym__image] = STATE(141), + [sym_full_reference_image] = STATE(141), + [sym_collapsed_reference_image] = STATE(141), + [sym_inline_image] = STATE(141), + [sym__image_description] = STATE(681), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(141), + [sym_full_reference_link] = STATE(141), + [sym_collapsed_reference_link] = STATE(141), + [sym_inline_link] = STATE(141), + [sym_link_text] = STATE(680), + [sym_span] = STATE(619), + [sym__bracketed_text] = STATE(664), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(141), + [sym_raw_inline] = STATE(141), + [sym_math] = STATE(141), + [sym_verbatim] = STATE(141), + [sym__todo_highlights] = STATE(141), + [sym_todo] = STATE(141), + [sym_note] = STATE(141), + [sym__symbol_fallback] = STATE(141), + [aux_sym__text] = STATE(128), + [aux_sym__inline_repeat1] = STATE(118), + [anon_sym_LBRACE_] = ACTIONS(147), + [anon_sym__] = ACTIONS(149), + [anon_sym_LBRACE_STAR] = ACTIONS(151), + [anon_sym_STAR] = ACTIONS(153), + [anon_sym_LBRACE_CARET] = ACTIONS(155), + [anon_sym_CARET] = ACTIONS(155), + [anon_sym_LBRACE_TILDE] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_LBRACE_EQ] = ACTIONS(159), + [anon_sym_LBRACE_PLUS] = ACTIONS(161), + [anon_sym_LBRACE_DASH] = ACTIONS(163), + [anon_sym_BSLASH] = ACTIONS(165), + [sym_quotation_marks] = ACTIONS(167), + [sym_ellipsis] = ACTIONS(167), + [sym_em_dash] = ACTIONS(167), + [sym_en_dash] = ACTIONS(169), + [sym_backslash_escape] = ACTIONS(169), + [anon_sym_LT] = ACTIONS(171), + [sym_symbol] = ACTIONS(167), + [anon_sym_LBRACK_CARET] = ACTIONS(173), + [anon_sym_BANG_LBRACK] = ACTIONS(175), + [anon_sym_LBRACK] = ACTIONS(177), + [anon_sym_DOLLAR] = ACTIONS(179), + [anon_sym_TODO] = ACTIONS(181), + [anon_sym_WIP] = ACTIONS(181), + [anon_sym_NOTE] = ACTIONS(183), + [anon_sym_INFO] = ACTIONS(183), + [anon_sym_XXX] = ACTIONS(183), + [sym_fixme] = ACTIONS(167), + [sym__whitespace1] = ACTIONS(185), + [sym__newline] = ACTIONS(1223), + [aux_sym__text_token1] = ACTIONS(189), + [sym__verbatim_begin] = ACTIONS(191), + }, + [120] = { + [sym__element] = STATE(580), + [sym_emphasis] = STATE(138), + [sym_emphasis_begin] = STATE(1161), + [sym_strong] = STATE(138), + [sym_strong_begin] = STATE(1162), + [sym_superscript] = STATE(138), + [sym_superscript_begin] = STATE(1163), + [sym_subscript] = STATE(138), + [sym_subscript_begin] = STATE(1164), + [sym_highlighted] = STATE(138), + [sym_highlighted_begin] = STATE(1165), + [sym_insert] = STATE(138), + [sym_insert_begin] = STATE(1166), + [sym_delete] = STATE(138), + [sym_delete_begin] = STATE(1167), + [sym_hard_line_break] = STATE(138), + [sym__smart_punctuation] = STATE(138), + [sym_autolink] = STATE(138), + [sym_footnote_reference] = STATE(138), + [sym_footnote_marker_begin] = STATE(1168), + [sym__image] = STATE(138), + [sym_full_reference_image] = STATE(138), + [sym_collapsed_reference_image] = STATE(138), + [sym_inline_image] = STATE(138), + [sym__image_description] = STATE(703), + [sym__image_description_begin] = STATE(1114), + [sym__link] = STATE(138), + [sym_full_reference_link] = STATE(138), + [sym_collapsed_reference_link] = STATE(138), + [sym_inline_link] = STATE(138), + [sym_link_text] = STATE(697), + [sym_span] = STATE(580), + [sym__bracketed_text] = STATE(671), + [sym__bracketed_text_begin] = STATE(1113), + [sym__comment_with_spaces] = STATE(138), + [sym_raw_inline] = STATE(138), + [sym_math] = STATE(138), + [sym_verbatim] = STATE(138), + [sym__todo_highlights] = STATE(138), + [sym_todo] = STATE(138), + [sym_note] = STATE(138), + [sym__symbol_fallback] = STATE(138), + [aux_sym__text] = STATE(122), + [aux_sym__inline_repeat1] = STATE(118), + [anon_sym_LBRACE_] = ACTIONS(331), + [anon_sym__] = ACTIONS(333), + [anon_sym_LBRACE_STAR] = ACTIONS(335), + [anon_sym_STAR] = ACTIONS(337), + [anon_sym_LBRACE_CARET] = ACTIONS(339), + [anon_sym_CARET] = ACTIONS(339), + [anon_sym_LBRACE_TILDE] = ACTIONS(341), + [anon_sym_TILDE] = ACTIONS(341), + [anon_sym_LBRACE_EQ] = ACTIONS(343), + [anon_sym_LBRACE_PLUS] = ACTIONS(345), + [anon_sym_LBRACE_DASH] = ACTIONS(347), + [anon_sym_BSLASH] = ACTIONS(349), + [sym_quotation_marks] = ACTIONS(351), + [sym_ellipsis] = ACTIONS(351), + [sym_em_dash] = ACTIONS(351), + [sym_en_dash] = ACTIONS(353), + [sym_backslash_escape] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [sym_symbol] = ACTIONS(351), + [anon_sym_LBRACK_CARET] = ACTIONS(357), + [anon_sym_BANG_LBRACK] = ACTIONS(359), + [anon_sym_LBRACK] = ACTIONS(361), + [anon_sym_DOLLAR] = ACTIONS(363), + [anon_sym_TODO] = ACTIONS(365), + [anon_sym_WIP] = ACTIONS(365), + [anon_sym_NOTE] = ACTIONS(367), + [anon_sym_INFO] = ACTIONS(367), + [anon_sym_XXX] = ACTIONS(367), + [sym_fixme] = ACTIONS(351), + [sym__whitespace1] = ACTIONS(369), + [sym__newline] = ACTIONS(1223), + [aux_sym__text_token1] = ACTIONS(373), + [sym__verbatim_begin] = ACTIONS(375), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 6, + ACTIONS(1229), 1, + anon_sym_LBRACE, + STATE(156), 1, + aux_sym__text, + STATE(1109), 1, + sym__inline_attribute_begin, + STATE(546), 2, + sym_inline_attribute, + sym__inline_attribute_fallback, + ACTIONS(1227), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1225), 29, + sym__verbatim_begin, + sym__image_description_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + sym__whitespace1, + sym__newline, + [52] = 6, + ACTIONS(1231), 1, + anon_sym_LBRACE, + STATE(208), 1, + aux_sym__text, + STATE(1004), 1, + sym__inline_attribute_begin, + STATE(588), 2, + sym_inline_attribute, + sym__inline_attribute_fallback, + ACTIONS(1227), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1225), 29, + sym__verbatim_begin, + sym_strong_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + sym__whitespace1, + sym__newline, + [104] = 6, + ACTIONS(1233), 1, + anon_sym_LBRACE, + STATE(202), 1, + aux_sym__text, + STATE(1124), 1, + sym__inline_attribute_begin, + STATE(547), 2, + sym_inline_attribute, + sym__inline_attribute_fallback, + ACTIONS(1227), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1225), 29, + sym__verbatim_begin, + sym__bracketed_text_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + sym__whitespace1, + sym__newline, + [156] = 6, + ACTIONS(1235), 1, + anon_sym_LBRACE, + STATE(198), 1, + aux_sym__text, + STATE(1034), 1, + sym__inline_attribute_begin, + STATE(562), 2, + sym_inline_attribute, + sym__inline_attribute_fallback, + ACTIONS(1227), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1225), 29, + sym__verbatim_begin, + sym_subscript_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + sym__whitespace1, + sym__newline, + [208] = 6, + ACTIONS(1237), 1, + anon_sym_LBRACE, + STATE(180), 1, + aux_sym__text, + STATE(1049), 1, + sym__inline_attribute_begin, + STATE(621), 2, + sym_inline_attribute, + sym__inline_attribute_fallback, + ACTIONS(1227), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1225), 29, + sym__verbatim_begin, + sym_highlighted_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + sym__whitespace1, + sym__newline, + [260] = 6, + ACTIONS(1239), 1, + anon_sym_LBRACE, + STATE(213), 1, + aux_sym__text, + STATE(1019), 1, + sym__inline_attribute_begin, + STATE(543), 2, + sym_inline_attribute, + sym__inline_attribute_fallback, + ACTIONS(1227), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1225), 29, + sym__verbatim_begin, + sym_superscript_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + sym__whitespace1, + sym__newline, + [312] = 6, + ACTIONS(1241), 1, + anon_sym_LBRACE, + STATE(176), 1, + aux_sym__text, + STATE(1094), 1, + sym__inline_attribute_begin, + STATE(561), 2, + sym_inline_attribute, + sym__inline_attribute_fallback, + ACTIONS(1227), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1225), 29, + sym__verbatim_begin, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_RBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + sym__whitespace1, + sym__newline, + [364] = 6, + ACTIONS(1243), 1, anon_sym_LBRACE, - STATE(185), 1, + STATE(166), 1, aux_sym__text, - STATE(1097), 1, + STATE(988), 1, sym__inline_attribute_begin, - STATE(533), 2, + STATE(564), 2, sym_inline_attribute, sym__inline_attribute_fallback, ACTIONS(1227), 5, @@ -14578,7 +15199,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__text_token1, ACTIONS(1225), 29, sym__verbatim_begin, - sym__image_description_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -14606,14 +15227,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [52] = 6, - ACTIONS(1231), 1, + [416] = 6, + ACTIONS(1245), 1, anon_sym_LBRACE, - STATE(201), 1, + STATE(161), 1, aux_sym__text, - STATE(1112), 1, + STATE(1079), 1, sym__inline_attribute_begin, - STATE(536), 2, + STATE(569), 2, sym_inline_attribute, sym__inline_attribute_fallback, ACTIONS(1227), 5, @@ -14624,7 +15245,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__text_token1, ACTIONS(1225), 29, sym__verbatim_begin, - sym__bracketed_text_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -14652,14 +15273,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [104] = 6, - ACTIONS(1233), 1, + [468] = 6, + ACTIONS(1247), 1, anon_sym_LBRACE, - STATE(159), 1, + STATE(205), 1, aux_sym__text, - STATE(1082), 1, + STATE(1101), 1, sym__inline_attribute_begin, - STATE(549), 2, + STATE(550), 2, sym_inline_attribute, sym__inline_attribute_fallback, ACTIONS(1227), 5, @@ -14670,6 +15291,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__text_token1, ACTIONS(1225), 29, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -14688,7 +15310,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -14698,14 +15319,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [156] = 6, - ACTIONS(1235), 1, + [520] = 6, + ACTIONS(1249), 1, anon_sym_LBRACE, - STATE(163), 1, + STATE(171), 1, aux_sym__text, - STATE(976), 1, + STATE(1064), 1, sym__inline_attribute_begin, - STATE(551), 2, + STATE(579), 2, sym_inline_attribute, sym__inline_attribute_fallback, ACTIONS(1227), 5, @@ -14716,7 +15337,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__text_token1, ACTIONS(1225), 29, sym__verbatim_begin, - sym_emphasis_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -14744,12 +15365,55 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [208] = 6, - ACTIONS(1237), 1, + [572] = 6, + ACTIONS(1251), 1, anon_sym_LBRACE, - STATE(188), 1, + STATE(344), 1, aux_sym__text, - STATE(1022), 1, + STATE(1139), 1, + sym__inline_attribute_begin, + STATE(626), 2, + sym_inline_attribute, + sym__inline_attribute_fallback, + ACTIONS(1227), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1225), 28, + sym__verbatim_begin, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + sym__whitespace1, + sym__newline, + [623] = 5, + ACTIONS(1245), 1, + anon_sym_LBRACE, + STATE(1079), 1, sym__inline_attribute_begin, STATE(569), 2, sym_inline_attribute, @@ -14760,6 +15424,94 @@ static const uint16_t ts_small_parse_table[] = { sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, + ACTIONS(1225), 29, + sym__verbatim_begin, + sym_delete_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + sym__whitespace1, + sym__newline, + [672] = 5, + ACTIONS(1233), 1, + anon_sym_LBRACE, + STATE(1124), 1, + sym__inline_attribute_begin, + STATE(547), 2, + sym_inline_attribute, + sym__inline_attribute_fallback, + ACTIONS(1227), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1225), 29, + sym__verbatim_begin, + sym__bracketed_text_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + sym__whitespace1, + sym__newline, + [721] = 5, + ACTIONS(1235), 1, + anon_sym_LBRACE, + STATE(1034), 1, + sym__inline_attribute_begin, + STATE(562), 2, + sym_inline_attribute, + sym__inline_attribute_fallback, + ACTIONS(1227), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, ACTIONS(1225), 29, sym__verbatim_begin, sym_subscript_end, @@ -14790,14 +15542,100 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [260] = 6, - ACTIONS(1239), 1, + [770] = 5, + ACTIONS(1241), 1, anon_sym_LBRACE, - STATE(204), 1, - aux_sym__text, - STATE(992), 1, + STATE(1094), 1, + sym__inline_attribute_begin, + STATE(561), 2, + sym_inline_attribute, + sym__inline_attribute_fallback, + ACTIONS(1227), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1225), 29, + sym__verbatim_begin, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_RBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + sym__whitespace1, + sym__newline, + [819] = 5, + ACTIONS(1249), 1, + anon_sym_LBRACE, + STATE(1064), 1, + sym__inline_attribute_begin, + STATE(579), 2, + sym_inline_attribute, + sym__inline_attribute_fallback, + ACTIONS(1227), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1225), 29, + sym__verbatim_begin, + sym_insert_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + sym__whitespace1, + sym__newline, + [868] = 5, + ACTIONS(1231), 1, + anon_sym_LBRACE, + STATE(1004), 1, sym__inline_attribute_begin, - STATE(545), 2, + STATE(588), 2, sym_inline_attribute, sym__inline_attribute_fallback, ACTIONS(1227), 5, @@ -14836,14 +15674,12 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [312] = 6, - ACTIONS(1241), 1, + [917] = 5, + ACTIONS(1229), 1, anon_sym_LBRACE, - STATE(158), 1, - aux_sym__text, - STATE(1067), 1, + STATE(1109), 1, sym__inline_attribute_begin, - STATE(557), 2, + STATE(546), 2, sym_inline_attribute, sym__inline_attribute_fallback, ACTIONS(1227), 5, @@ -14854,7 +15690,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__text_token1, ACTIONS(1225), 29, sym__verbatim_begin, - sym_delete_end, + sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -14882,14 +15718,12 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [364] = 6, - ACTIONS(1243), 1, + [966] = 5, + ACTIONS(1237), 1, anon_sym_LBRACE, - STATE(173), 1, - aux_sym__text, - STATE(1037), 1, + STATE(1049), 1, sym__inline_attribute_begin, - STATE(607), 2, + STATE(621), 2, sym_inline_attribute, sym__inline_attribute_fallback, ACTIONS(1227), 5, @@ -14928,14 +15762,12 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [416] = 6, - ACTIONS(1245), 1, + [1015] = 5, + ACTIONS(1243), 1, anon_sym_LBRACE, - STATE(167), 1, - aux_sym__text, - STATE(1052), 1, + STATE(988), 1, sym__inline_attribute_begin, - STATE(565), 2, + STATE(564), 2, sym_inline_attribute, sym__inline_attribute_fallback, ACTIONS(1227), 5, @@ -14946,7 +15778,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__text_token1, ACTIONS(1225), 29, sym__verbatim_begin, - sym_insert_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -14974,14 +15806,12 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [468] = 6, + [1064] = 5, ACTIONS(1247), 1, anon_sym_LBRACE, - STATE(200), 1, - aux_sym__text, - STATE(1090), 1, + STATE(1101), 1, sym__inline_attribute_begin, - STATE(537), 2, + STATE(550), 2, sym_inline_attribute, sym__inline_attribute_fallback, ACTIONS(1227), 5, @@ -15020,14 +15850,12 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [520] = 6, - ACTIONS(1249), 1, + [1113] = 5, + ACTIONS(1239), 1, anon_sym_LBRACE, - STATE(199), 1, - aux_sym__text, - STATE(1007), 1, + STATE(1019), 1, sym__inline_attribute_begin, - STATE(535), 2, + STATE(543), 2, sym_inline_attribute, sym__inline_attribute_fallback, ACTIONS(1227), 5, @@ -15066,14 +15894,12 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [572] = 6, + [1162] = 5, ACTIONS(1251), 1, anon_sym_LBRACE, - STATE(337), 1, - aux_sym__text, - STATE(1127), 1, + STATE(1139), 1, sym__inline_attribute_begin, - STATE(613), 2, + STATE(626), 2, sym_inline_attribute, sym__inline_attribute_fallback, ACTIONS(1227), 5, @@ -15111,22 +15937,22 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [623] = 5, - ACTIONS(1233), 1, - anon_sym_LBRACE, - STATE(1082), 1, - sym__inline_attribute_begin, - STATE(549), 2, - sym_inline_attribute, - sym__inline_attribute_fallback, - ACTIONS(1227), 5, + [1210] = 4, + ACTIONS(1257), 1, + anon_sym_LBRACE_EQ2, + STATE(275), 1, + sym_raw_inline_attribute, + ACTIONS(1255), 7, + anon_sym_LBRACE_EQ, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1225), 29, + ACTIONS(1253), 28, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15135,7 +15961,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, - anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -15145,7 +15970,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -15155,23 +15979,22 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [672] = 5, - ACTIONS(1241), 1, - anon_sym_LBRACE, - STATE(1067), 1, - sym__inline_attribute_begin, - STATE(557), 2, - sym_inline_attribute, - sym__inline_attribute_fallback, - ACTIONS(1227), 5, + [1256] = 4, + ACTIONS(1259), 1, + anon_sym_LBRACE_EQ2, + STATE(258), 1, + sym_raw_inline_attribute, + ACTIONS(1255), 7, + anon_sym_LBRACE_EQ, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1225), 29, + ACTIONS(1253), 28, sym__verbatim_begin, - sym_delete_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15180,7 +16003,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, - anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -15199,23 +16021,22 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [721] = 5, - ACTIONS(1231), 1, - anon_sym_LBRACE, - STATE(1112), 1, - sym__inline_attribute_begin, - STATE(536), 2, - sym_inline_attribute, - sym__inline_attribute_fallback, - ACTIONS(1227), 5, + [1302] = 4, + ACTIONS(1261), 1, + anon_sym_LBRACE_EQ2, + STATE(225), 1, + sym_raw_inline_attribute, + ACTIONS(1255), 7, + anon_sym_LBRACE_EQ, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1225), 29, + ACTIONS(1253), 28, sym__verbatim_begin, - sym__bracketed_text_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15224,7 +16045,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, - anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -15243,23 +16063,22 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [770] = 5, - ACTIONS(1237), 1, - anon_sym_LBRACE, - STATE(1022), 1, - sym__inline_attribute_begin, - STATE(569), 2, - sym_inline_attribute, - sym__inline_attribute_fallback, - ACTIONS(1227), 5, + [1348] = 4, + ACTIONS(1263), 1, + anon_sym_LBRACE_EQ2, + STATE(325), 1, + sym_raw_inline_attribute, + ACTIONS(1255), 7, + anon_sym_LBRACE_EQ, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1225), 29, + ACTIONS(1253), 28, sym__verbatim_begin, - sym_subscript_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15268,7 +16087,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, - anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -15287,23 +16105,22 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [819] = 5, - ACTIONS(1229), 1, - anon_sym_LBRACE, - STATE(1097), 1, - sym__inline_attribute_begin, - STATE(533), 2, - sym_inline_attribute, - sym__inline_attribute_fallback, - ACTIONS(1227), 5, + [1394] = 4, + ACTIONS(1265), 1, + anon_sym_LBRACE_EQ2, + STATE(302), 1, + sym_raw_inline_attribute, + ACTIONS(1255), 7, + anon_sym_LBRACE_EQ, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1225), 29, + ACTIONS(1253), 28, sym__verbatim_begin, - sym__image_description_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15312,7 +16129,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, - anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -15331,23 +16147,22 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [868] = 5, - ACTIONS(1235), 1, - anon_sym_LBRACE, - STATE(976), 1, - sym__inline_attribute_begin, - STATE(551), 2, - sym_inline_attribute, - sym__inline_attribute_fallback, - ACTIONS(1227), 5, + [1440] = 4, + ACTIONS(1267), 1, + anon_sym_LBRACE_EQ2, + STATE(521), 1, + sym_raw_inline_attribute, + ACTIONS(1255), 7, + anon_sym_LBRACE_EQ, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1225), 29, + ACTIONS(1253), 28, sym__verbatim_begin, - sym_emphasis_end, + sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15356,7 +16171,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, - anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -15375,23 +16189,21 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [917] = 5, - ACTIONS(1245), 1, - anon_sym_LBRACE, - STATE(1052), 1, - sym__inline_attribute_begin, - STATE(565), 2, - sym_inline_attribute, - sym__inline_attribute_fallback, - ACTIONS(1227), 5, + [1486] = 4, + ACTIONS(1269), 1, + anon_sym_LBRACE_EQ2, + STATE(478), 1, + sym_raw_inline_attribute, + ACTIONS(1255), 7, + anon_sym_LBRACE_EQ, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1225), 29, + ACTIONS(1253), 28, sym__verbatim_begin, - sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15400,7 +16212,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, - anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -15410,6 +16221,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -15419,23 +16231,22 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [966] = 5, - ACTIONS(1249), 1, - anon_sym_LBRACE, - STATE(1007), 1, - sym__inline_attribute_begin, - STATE(535), 2, - sym_inline_attribute, - sym__inline_attribute_fallback, - ACTIONS(1227), 5, + [1532] = 4, + ACTIONS(1271), 1, + anon_sym_LBRACE_EQ2, + STATE(346), 1, + sym_raw_inline_attribute, + ACTIONS(1255), 7, + anon_sym_LBRACE_EQ, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1225), 29, + ACTIONS(1253), 28, sym__verbatim_begin, - sym_superscript_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15444,7 +16255,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, - anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -15463,23 +16273,22 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [1015] = 5, - ACTIONS(1243), 1, - anon_sym_LBRACE, - STATE(1037), 1, - sym__inline_attribute_begin, - STATE(607), 2, - sym_inline_attribute, - sym__inline_attribute_fallback, - ACTIONS(1227), 5, + [1578] = 4, + ACTIONS(1273), 1, + anon_sym_LBRACE_EQ2, + STATE(434), 1, + sym_raw_inline_attribute, + ACTIONS(1255), 7, + anon_sym_LBRACE_EQ, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1225), 29, + ACTIONS(1253), 28, sym__verbatim_begin, - sym_highlighted_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15488,7 +16297,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, - anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -15507,23 +16315,22 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [1064] = 5, - ACTIONS(1239), 1, - anon_sym_LBRACE, - STATE(992), 1, - sym__inline_attribute_begin, - STATE(545), 2, - sym_inline_attribute, - sym__inline_attribute_fallback, - ACTIONS(1227), 5, + [1624] = 4, + ACTIONS(1275), 1, + anon_sym_LBRACE_EQ2, + STATE(457), 1, + sym_raw_inline_attribute, + ACTIONS(1255), 7, + anon_sym_LBRACE_EQ, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1225), 29, + ACTIONS(1253), 28, sym__verbatim_begin, - sym_strong_end, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15532,7 +16339,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, - anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -15551,23 +16357,22 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [1113] = 5, - ACTIONS(1247), 1, - anon_sym_LBRACE, - STATE(1090), 1, - sym__inline_attribute_begin, - STATE(537), 2, - sym_inline_attribute, - sym__inline_attribute_fallback, - ACTIONS(1227), 5, + [1670] = 4, + ACTIONS(1277), 1, + anon_sym_LBRACE_EQ2, + STATE(390), 1, + sym_raw_inline_attribute, + ACTIONS(1255), 7, + anon_sym_LBRACE_EQ, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1225), 29, + ACTIONS(1253), 28, sym__verbatim_begin, - ts_builtin_sym_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15576,7 +16381,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, - anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -15595,22 +16399,20 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [1162] = 4, - ACTIONS(1257), 1, - anon_sym_LBRACE_EQ2, - STATE(340), 1, - sym_raw_inline_attribute, - ACTIONS(1255), 7, - anon_sym_LBRACE_EQ, + [1716] = 4, + ACTIONS(1283), 1, + aux_sym__text_token1, + STATE(156), 1, + aux_sym__text, + ACTIONS(1281), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, - aux_sym__text_token1, - ACTIONS(1253), 28, + ACTIONS(1279), 29, sym__verbatim_begin, - sym_highlighted_end, + sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15619,6 +16421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, + anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -15637,22 +16440,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [1208] = 5, - ACTIONS(1251), 1, - anon_sym_LBRACE, - STATE(1127), 1, - sym__inline_attribute_begin, - STATE(613), 2, - sym_inline_attribute, - sym__inline_attribute_fallback, - ACTIONS(1227), 5, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - aux_sym__text_token1, - ACTIONS(1225), 28, + [1761] = 3, + ACTIONS(1288), 1, + aux_sym_autolink_token1, + ACTIONS(1290), 4, sym__verbatim_begin, + sym_strong_end, + sym__whitespace1, + sym__newline, + ACTIONS(1286), 31, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15664,13 +16460,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, + sym_en_dash, + sym_backslash_escape, anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -15678,24 +16479,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - sym__whitespace1, - sym__newline, - [1256] = 4, - ACTIONS(1259), 1, - anon_sym_LBRACE_EQ2, - STATE(297), 1, - sym_raw_inline_attribute, - ACTIONS(1255), 7, - anon_sym_LBRACE_EQ, + aux_sym__text_token1, + [1804] = 3, + ACTIONS(1296), 1, + anon_sym_GT, + ACTIONS(1294), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1253), 28, + ACTIONS(1292), 29, sym__verbatim_begin, - sym_subscript_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15704,6 +16501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, + anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -15722,22 +16520,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [1302] = 4, - ACTIONS(1261), 1, - anon_sym_LBRACE_EQ2, - STATE(310), 1, - sym_raw_inline_attribute, - ACTIONS(1255), 7, - anon_sym_LBRACE_EQ, + [1847] = 3, + ACTIONS(1298), 1, + sym__non_whitespace_check, + ACTIONS(1286), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1253), 28, + ACTIONS(1290), 29, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15746,6 +16540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, + anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -15755,6 +16550,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -15764,22 +16560,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [1348] = 4, - ACTIONS(1263), 1, - anon_sym_LBRACE_EQ2, - STATE(426), 1, - sym_raw_inline_attribute, - ACTIONS(1255), 7, - anon_sym_LBRACE_EQ, + [1890] = 3, + ACTIONS(1300), 1, + sym__non_whitespace_check, + ACTIONS(1286), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1253), 28, + ACTIONS(1290), 29, sym__verbatim_begin, - sym_delete_end, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15788,6 +16581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, + anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -15806,21 +16600,20 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [1394] = 4, - ACTIONS(1265), 1, - anon_sym_LBRACE_EQ2, - STATE(469), 1, - sym_raw_inline_attribute, - ACTIONS(1255), 7, - anon_sym_LBRACE_EQ, + [1933] = 4, + ACTIONS(1302), 1, + aux_sym__text_token1, + STATE(161), 1, + aux_sym__text, + ACTIONS(1281), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, - aux_sym__text_token1, - ACTIONS(1253), 28, + ACTIONS(1279), 29, sym__verbatim_begin, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15829,6 +16622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, + anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -15838,7 +16632,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -15848,22 +16641,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [1440] = 4, - ACTIONS(1267), 1, - anon_sym_LBRACE_EQ2, - STATE(258), 1, - sym_raw_inline_attribute, - ACTIONS(1255), 7, - anon_sym_LBRACE_EQ, + [1978] = 3, + ACTIONS(1305), 1, + anon_sym_GT, + ACTIONS(1294), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1253), 28, + ACTIONS(1292), 29, sym__verbatim_begin, - sym_superscript_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15872,6 +16662,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, + anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -15890,22 +16681,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [1486] = 4, - ACTIONS(1269), 1, - anon_sym_LBRACE_EQ2, - STATE(364), 1, - sym_raw_inline_attribute, - ACTIONS(1255), 7, - anon_sym_LBRACE_EQ, + [2021] = 3, + ACTIONS(1307), 1, + sym__non_whitespace_check, + ACTIONS(1286), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1253), 28, + ACTIONS(1290), 29, sym__verbatim_begin, - sym_emphasis_end, + sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15914,6 +16702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, + anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -15932,22 +16721,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [1532] = 4, - ACTIONS(1271), 1, - anon_sym_LBRACE_EQ2, - STATE(225), 1, - sym_raw_inline_attribute, - ACTIONS(1255), 7, - anon_sym_LBRACE_EQ, + [2064] = 3, + ACTIONS(1309), 1, + sym__non_whitespace_check, + ACTIONS(1286), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1253), 28, + ACTIONS(1290), 29, sym__verbatim_begin, - sym_strong_end, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15956,6 +16742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, + anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -15974,22 +16761,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [1578] = 4, - ACTIONS(1273), 1, - anon_sym_LBRACE_EQ2, - STATE(441), 1, - sym_raw_inline_attribute, - ACTIONS(1255), 7, - anon_sym_LBRACE_EQ, + [2107] = 4, + ACTIONS(1315), 1, + anon_sym_LBRACE, + STATE(222), 1, + sym_comment, + ACTIONS(1313), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1253), 28, + ACTIONS(1311), 29, sym__verbatim_begin, - sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15998,6 +16782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, + anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -16007,6 +16792,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -16016,22 +16802,20 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [1624] = 4, - ACTIONS(1275), 1, - anon_sym_LBRACE_EQ2, - STATE(383), 1, - sym_raw_inline_attribute, - ACTIONS(1255), 7, - anon_sym_LBRACE_EQ, + [2152] = 4, + ACTIONS(1317), 1, + aux_sym__text_token1, + STATE(166), 1, + aux_sym__text, + ACTIONS(1281), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, - aux_sym__text_token1, - ACTIONS(1253), 28, + ACTIONS(1279), 29, sym__verbatim_begin, - sym_insert_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16040,6 +16824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, + anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -16058,20 +16843,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [1670] = 4, - ACTIONS(1277), 1, - anon_sym_LBRACE_EQ2, - STATE(511), 1, - sym_raw_inline_attribute, - ACTIONS(1255), 7, - anon_sym_LBRACE_EQ, + [2197] = 3, + ACTIONS(1320), 1, + sym__non_whitespace_check, + ACTIONS(1286), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1253), 28, + ACTIONS(1290), 29, sym__verbatim_begin, sym__image_description_end, anon_sym_LBRACE_, @@ -16082,6 +16864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, + anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -16100,15 +16883,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [1716] = 3, - ACTIONS(1281), 1, + [2240] = 3, + ACTIONS(1322), 1, aux_sym_autolink_token1, - ACTIONS(1283), 4, + ACTIONS(1290), 4, sym__verbatim_begin, - sym__image_description_end, + sym_delete_end, sym__whitespace1, sym__newline, - ACTIONS(1279), 31, + ACTIONS(1286), 31, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16140,19 +16923,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, aux_sym__text_token1, - [1759] = 3, - ACTIONS(1285), 1, + [2283] = 3, + ACTIONS(1324), 1, sym__non_whitespace_check, - ACTIONS(1279), 6, + ACTIONS(1286), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1283), 29, + ACTIONS(1290), 29, sym__verbatim_begin, - sym_strong_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16180,18 +16963,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [1802] = 4, - ACTIONS(1291), 1, - aux_sym__text_token1, - STATE(158), 1, - aux_sym__text, - ACTIONS(1289), 5, + [2326] = 3, + ACTIONS(1326), 1, + sym__non_whitespace_check, + ACTIONS(1286), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(1287), 29, + aux_sym__text_token1, + ACTIONS(1290), 29, sym__verbatim_begin, sym_delete_end, anon_sym_LBRACE_, @@ -16221,19 +17003,20 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [1847] = 4, - ACTIONS(1294), 1, + [2369] = 4, + ACTIONS(1328), 1, aux_sym__text_token1, - STATE(159), 1, + STATE(171), 1, aux_sym__text, - ACTIONS(1289), 5, + ACTIONS(1281), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(1287), 29, + ACTIONS(1279), 29, sym__verbatim_begin, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16252,7 +17035,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -16262,19 +17044,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [1892] = 4, - ACTIONS(1301), 1, - anon_sym_LBRACE, - STATE(211), 1, - sym_comment, - ACTIONS(1299), 5, + [2414] = 3, + ACTIONS(1331), 1, + anon_sym_GT, + ACTIONS(1294), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1297), 29, + ACTIONS(1292), 29, sym__verbatim_begin, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16293,7 +17075,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -16303,59 +17084,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [1937] = 3, - ACTIONS(1303), 1, - aux_sym_autolink_token1, - ACTIONS(1283), 4, - sym__verbatim_begin, - sym_delete_end, - sym__whitespace1, - sym__newline, - ACTIONS(1279), 31, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - anon_sym_BSLASH, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - sym_en_dash, - sym_backslash_escape, - anon_sym_LT, - sym_symbol, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - aux_sym__text_token1, - [1980] = 3, - ACTIONS(1305), 1, - sym__non_whitespace_check, - ACTIONS(1279), 6, + [2457] = 3, + ACTIONS(1333), 1, + anon_sym_GT, + ACTIONS(1294), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1283), 29, + ACTIONS(1292), 29, sym__verbatim_begin, - sym_delete_end, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16383,20 +17124,20 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [2023] = 4, - ACTIONS(1307), 1, - aux_sym__text_token1, - STATE(163), 1, - aux_sym__text, - ACTIONS(1289), 5, + [2500] = 4, + ACTIONS(1335), 1, + anon_sym_LBRACE, + STATE(420), 1, + sym_comment, + ACTIONS(1313), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(1287), 29, + aux_sym__text_token1, + ACTIONS(1311), 29, sym__verbatim_begin, - sym_emphasis_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16424,15 +17165,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [2068] = 3, - ACTIONS(1310), 1, + [2545] = 3, + ACTIONS(1337), 1, aux_sym_autolink_token1, - ACTIONS(1283), 4, + ACTIONS(1290), 4, sym__verbatim_begin, - sym__bracketed_text_end, + sym_insert_end, sym__whitespace1, sym__newline, - ACTIONS(1279), 31, + ACTIONS(1286), 31, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16464,19 +17205,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, aux_sym__text_token1, - [2111] = 3, - ACTIONS(1312), 1, - sym__non_whitespace_check, - ACTIONS(1279), 6, + [2588] = 4, + ACTIONS(1339), 1, + aux_sym__text_token1, + STATE(176), 1, + aux_sym__text, + ACTIONS(1281), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, - aux_sym__text_token1, - ACTIONS(1283), 29, + ACTIONS(1279), 29, sym__verbatim_begin, - sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16495,6 +17236,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -16504,19 +17246,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [2154] = 3, - ACTIONS(1314), 1, + [2633] = 3, + ACTIONS(1342), 1, sym__non_whitespace_check, - ACTIONS(1279), 6, + ACTIONS(1286), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1283), 29, + ACTIONS(1290), 29, sym__verbatim_begin, - sym__image_description_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16544,18 +17286,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [2197] = 4, - ACTIONS(1316), 1, - aux_sym__text_token1, - STATE(167), 1, - aux_sym__text, - ACTIONS(1289), 5, + [2676] = 3, + ACTIONS(1344), 1, + sym__non_whitespace_check, + ACTIONS(1286), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(1287), 29, + aux_sym__text_token1, + ACTIONS(1290), 29, sym__verbatim_begin, sym_insert_end, anon_sym_LBRACE_, @@ -16585,19 +17326,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [2242] = 3, - ACTIONS(1319), 1, + [2719] = 3, + ACTIONS(1346), 1, sym__non_whitespace_check, - ACTIONS(1279), 6, + ACTIONS(1286), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1283), 29, + ACTIONS(1290), 29, sym__verbatim_begin, - sym__image_description_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16625,20 +17366,20 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [2285] = 4, - ACTIONS(1321), 1, - anon_sym_LBRACE, - STATE(411), 1, - sym_comment, - ACTIONS(1299), 5, + [2762] = 4, + ACTIONS(1348), 1, + aux_sym__text_token1, + STATE(180), 1, + aux_sym__text, + ACTIONS(1281), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - aux_sym__text_token1, - ACTIONS(1297), 29, + ACTIONS(1279), 29, sym__verbatim_begin, - sym_delete_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16666,15 +17407,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [2330] = 3, - ACTIONS(1323), 1, - aux_sym_autolink_token1, - ACTIONS(1283), 4, + [2807] = 3, + ACTIONS(1351), 1, + anon_sym_GT, + ACTIONS(1294), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACE, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1292), 29, sym__verbatim_begin, - sym_insert_end, - sym__whitespace1, - sym__newline, - ACTIONS(1279), 31, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16686,18 +17431,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, - sym_en_dash, - sym_backslash_escape, anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -16705,20 +17445,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - aux_sym__text_token1, - [2373] = 3, - ACTIONS(1325), 1, + sym__whitespace1, + sym__newline, + [2850] = 3, + ACTIONS(1353), 1, sym__non_whitespace_check, - ACTIONS(1279), 6, + ACTIONS(1286), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1283), 29, + ACTIONS(1290), 29, sym__verbatim_begin, - sym_insert_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16746,19 +17487,20 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [2416] = 3, - ACTIONS(1327), 1, - sym__non_whitespace_check, - ACTIONS(1279), 6, + [2893] = 4, + ACTIONS(1355), 1, + anon_sym_LBRACE, + STATE(507), 1, + sym_comment, + ACTIONS(1313), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1283), 29, + ACTIONS(1311), 29, sym__verbatim_begin, - sym_insert_end, + sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16786,20 +17528,20 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [2459] = 4, - ACTIONS(1329), 1, - aux_sym__text_token1, - STATE(173), 1, - aux_sym__text, - ACTIONS(1289), 5, + [2938] = 4, + ACTIONS(1357), 1, + anon_sym_LBRACE, + STATE(376), 1, + sym_comment, + ACTIONS(1313), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(1287), 29, + aux_sym__text_token1, + ACTIONS(1311), 29, sym__verbatim_begin, - sym_highlighted_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16827,19 +17569,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [2504] = 3, - ACTIONS(1332), 1, - sym__non_whitespace_check, - ACTIONS(1279), 6, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE, - anon_sym_LBRACK, - aux_sym__text_token1, - ACTIONS(1283), 29, + [2983] = 3, + ACTIONS(1359), 1, + aux_sym_autolink_token1, + ACTIONS(1290), 4, sym__verbatim_begin, - sym__bracketed_text_end, + sym_highlighted_end, + sym__whitespace1, + sym__newline, + ACTIONS(1286), 31, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16851,13 +17589,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, + sym_en_dash, + sym_backslash_escape, anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -16865,21 +17608,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - sym__whitespace1, - sym__newline, - [2547] = 3, - ACTIONS(1334), 1, + aux_sym__text_token1, + [3026] = 3, + ACTIONS(1361), 1, sym__non_whitespace_check, - ACTIONS(1279), 6, + ACTIONS(1286), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1283), 29, + ACTIONS(1290), 29, sym__verbatim_begin, - sym__bracketed_text_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16907,20 +17649,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [2590] = 4, - ACTIONS(1336), 1, - anon_sym_LBRACE, - STATE(368), 1, - sym_comment, - ACTIONS(1299), 5, + [3069] = 3, + ACTIONS(1363), 1, + sym__non_whitespace_check, + ACTIONS(1286), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1297), 29, + ACTIONS(1290), 29, sym__verbatim_begin, - sym_insert_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16948,15 +17689,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [2635] = 3, - ACTIONS(1338), 1, + [3112] = 3, + ACTIONS(1365), 1, aux_sym_autolink_token1, - ACTIONS(1283), 4, + ACTIONS(1290), 4, sym__verbatim_begin, - sym_highlighted_end, + sym_emphasis_end, sym__whitespace1, sym__newline, - ACTIONS(1279), 31, + ACTIONS(1286), 31, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16988,19 +17729,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, aux_sym__text_token1, - [2678] = 3, - ACTIONS(1340), 1, + [3155] = 3, + ACTIONS(1367), 1, sym__non_whitespace_check, - ACTIONS(1279), 6, + ACTIONS(1286), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1283), 29, + ACTIONS(1290), 29, sym__verbatim_begin, - sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17019,6 +17759,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -17028,19 +17769,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [2721] = 3, - ACTIONS(1342), 1, - sym__non_whitespace_check, - ACTIONS(1279), 6, + [3198] = 3, + ACTIONS(1369), 1, + anon_sym_GT, + ACTIONS(1294), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1283), 29, + ACTIONS(1292), 29, sym__verbatim_begin, - sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17059,6 +17799,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -17068,17 +17809,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [2764] = 3, - ACTIONS(1344), 1, + [3241] = 3, + ACTIONS(1371), 1, sym__non_whitespace_check, - ACTIONS(1279), 6, + ACTIONS(1286), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1283), 29, + ACTIONS(1290), 29, sym__verbatim_begin, sym_highlighted_end, anon_sym_LBRACE_, @@ -17108,18 +17849,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [2807] = 3, - ACTIONS(1346), 1, + [3284] = 3, + ACTIONS(1373), 1, sym__non_whitespace_check, - ACTIONS(1279), 6, + ACTIONS(1286), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1283), 29, + ACTIONS(1290), 29, sym__verbatim_begin, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17138,7 +17880,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -17148,18 +17889,20 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [2850] = 3, - ACTIONS(1348), 1, - sym__non_whitespace_check, - ACTIONS(1279), 6, + [3327] = 4, + ACTIONS(1375), 1, + anon_sym_LBRACE, + STATE(247), 1, + sym_comment, + ACTIONS(1313), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1283), 29, + ACTIONS(1311), 29, sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17178,7 +17921,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -17188,20 +17930,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [2893] = 4, - ACTIONS(1350), 1, - anon_sym_LBRACE, - STATE(487), 1, - sym_comment, - ACTIONS(1299), 5, + [3372] = 3, + ACTIONS(1377), 1, + anon_sym_GT, + ACTIONS(1294), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1297), 29, + ACTIONS(1292), 29, sym__verbatim_begin, - sym__bracketed_text_end, + sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17229,19 +17970,60 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [2938] = 3, - ACTIONS(1352), 1, - sym__non_whitespace_check, - ACTIONS(1279), 6, + [3415] = 3, + ACTIONS(1379), 1, + aux_sym_autolink_token1, + ACTIONS(1290), 4, + sym__verbatim_begin, + sym__bracketed_text_end, + sym__whitespace1, + sym__newline, + ACTIONS(1286), 31, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, anon_sym_BSLASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, sym_en_dash, sym_backslash_escape, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + aux_sym__text_token1, + [3458] = 4, + ACTIONS(1381), 1, anon_sym_LBRACE, + STATE(501), 1, + sym_comment, + ACTIONS(1313), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1283), 29, + ACTIONS(1311), 29, sym__verbatim_begin, - sym_strong_end, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17269,20 +18051,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [2981] = 4, - ACTIONS(1354), 1, - aux_sym__text_token1, - STATE(185), 1, - aux_sym__text, - ACTIONS(1289), 5, + [3503] = 3, + ACTIONS(1383), 1, + sym__non_whitespace_check, + ACTIONS(1286), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(1287), 29, + aux_sym__text_token1, + ACTIONS(1290), 29, sym__verbatim_begin, - sym__image_description_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17310,15 +18091,20 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [3026] = 3, - ACTIONS(1357), 1, - aux_sym_autolink_token1, - ACTIONS(1283), 4, + [3546] = 4, + ACTIONS(1385), 1, + aux_sym__text_token1, + STATE(198), 1, + aux_sym__text, + ACTIONS(1281), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACE, + anon_sym_LBRACK, + ACTIONS(1279), 29, sym__verbatim_begin, - sym_strong_end, - sym__whitespace1, - sym__newline, - ACTIONS(1279), 31, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17330,18 +18116,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, - sym_en_dash, - sym_backslash_escape, anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -17349,22 +18130,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - aux_sym__text_token1, - [3069] = 4, - ACTIONS(1359), 1, - anon_sym_LBRACE_EQ2, - STATE(591), 1, - sym_raw_inline_attribute, - ACTIONS(1255), 7, - anon_sym_LBRACE_EQ, + sym__whitespace1, + sym__newline, + [3591] = 3, + ACTIONS(1388), 1, + anon_sym_GT, + ACTIONS(1294), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1253), 27, + ACTIONS(1292), 29, sym__verbatim_begin, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17373,6 +18153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, + anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -17391,18 +18172,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [3114] = 4, - ACTIONS(1361), 1, - aux_sym__text_token1, - STATE(188), 1, - aux_sym__text, - ACTIONS(1289), 5, + [3634] = 3, + ACTIONS(1390), 1, + anon_sym_GT, + ACTIONS(1294), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(1287), 29, + aux_sym__text_token1, + ACTIONS(1292), 29, sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, @@ -17432,15 +18212,21 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [3159] = 3, - ACTIONS(1364), 1, - aux_sym_autolink_token1, - ACTIONS(1283), 4, + [3677] = 4, + ACTIONS(1392), 1, + anon_sym_LBRACE_EQ2, + STATE(603), 1, + sym_raw_inline_attribute, + ACTIONS(1255), 7, + anon_sym_LBRACE_EQ, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACE, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1253), 27, sym__verbatim_begin, - sym_subscript_end, - sym__whitespace1, - sym__newline, - ACTIONS(1279), 31, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17449,21 +18235,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, - anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, - sym_en_dash, - sym_backslash_escape, anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -17471,21 +18251,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, + sym__whitespace1, + sym__newline, + [3722] = 4, + ACTIONS(1394), 1, aux_sym__text_token1, - [3202] = 4, - ACTIONS(1366), 1, - anon_sym_LBRACE, - STATE(246), 1, - sym_comment, - ACTIONS(1299), 5, + STATE(202), 1, + aux_sym__text, + ACTIONS(1281), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - aux_sym__text_token1, - ACTIONS(1297), 29, + ACTIONS(1279), 29, sym__verbatim_begin, - sym_superscript_end, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17513,19 +18294,20 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [3247] = 3, - ACTIONS(1368), 1, - sym__non_whitespace_check, - ACTIONS(1279), 6, + [3767] = 4, + ACTIONS(1397), 1, + anon_sym_LBRACE, + STATE(332), 1, + sym_comment, + ACTIONS(1313), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1283), 29, + ACTIONS(1311), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17553,14 +18335,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [3290] = 3, - ACTIONS(1370), 1, + [3812] = 3, + ACTIONS(1399), 1, aux_sym_autolink_token1, - ACTIONS(1283), 3, + ACTIONS(1290), 4, sym__verbatim_begin, + sym_subscript_end, sym__whitespace1, sym__newline, - ACTIONS(1279), 32, + ACTIONS(1286), 31, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17584,7 +18367,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -17593,20 +18375,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, aux_sym__text_token1, - [3333] = 4, - ACTIONS(1372), 1, - anon_sym_LBRACE, - STATE(325), 1, - sym_comment, - ACTIONS(1299), 5, + [3855] = 4, + ACTIONS(1401), 1, + aux_sym__text_token1, + STATE(205), 1, + aux_sym__text, + ACTIONS(1281), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - aux_sym__text_token1, - ACTIONS(1297), 29, + ACTIONS(1279), 29, sym__verbatim_begin, - sym_highlighted_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17634,17 +18416,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [3378] = 3, - ACTIONS(1374), 1, + [3900] = 3, + ACTIONS(1404), 1, sym__non_whitespace_check, - ACTIONS(1279), 6, + ACTIONS(1286), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1283), 29, + ACTIONS(1290), 29, sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, @@ -17674,19 +18456,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [3421] = 3, - ACTIONS(1376), 1, + [3943] = 3, + ACTIONS(1406), 1, sym__non_whitespace_check, - ACTIONS(1279), 6, + ACTIONS(1286), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1283), 29, + ACTIONS(1290), 29, sym__verbatim_begin, - sym_superscript_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17714,19 +18496,20 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [3464] = 3, - ACTIONS(1378), 1, - sym__non_whitespace_check, - ACTIONS(1279), 6, + [3986] = 4, + ACTIONS(1408), 1, + aux_sym__text_token1, + STATE(208), 1, + aux_sym__text, + ACTIONS(1281), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, - aux_sym__text_token1, - ACTIONS(1283), 29, + ACTIONS(1279), 29, sym__verbatim_begin, - sym_superscript_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17754,20 +18537,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [3507] = 4, - ACTIONS(1380), 1, - anon_sym_LBRACE, - STATE(496), 1, - sym_comment, - ACTIONS(1299), 5, + [4031] = 3, + ACTIONS(1411), 1, + anon_sym_GT, + ACTIONS(1294), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1297), 29, + ACTIONS(1292), 29, sym__verbatim_begin, - sym__image_description_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17795,15 +18577,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [3552] = 3, - ACTIONS(1382), 1, + [4074] = 3, + ACTIONS(1413), 1, aux_sym_autolink_token1, - ACTIONS(1283), 4, + ACTIONS(1290), 3, sym__verbatim_begin, - sym_superscript_end, sym__whitespace1, sym__newline, - ACTIONS(1279), 31, + ACTIONS(1286), 32, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17827,6 +18608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -17834,62 +18616,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - aux_sym__text_token1, - [3595] = 4, - ACTIONS(1384), 1, - aux_sym__text_token1, - STATE(199), 1, - aux_sym__text, - ACTIONS(1289), 5, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE, - anon_sym_LBRACK, - ACTIONS(1287), 29, - sym__verbatim_begin, - sym_superscript_end, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - sym_symbol, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - sym__whitespace1, - sym__newline, - [3640] = 4, - ACTIONS(1387), 1, - aux_sym__text_token1, - STATE(200), 1, - aux_sym__text, - ACTIONS(1289), 5, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE, - anon_sym_LBRACK, - ACTIONS(1287), 29, + aux_sym__text_token1, + [4117] = 3, + ACTIONS(1415), 1, + aux_sym_autolink_token1, + ACTIONS(1290), 4, sym__verbatim_begin, - ts_builtin_sym_end, + sym_superscript_end, + sym__whitespace1, + sym__newline, + ACTIONS(1286), 31, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17901,13 +18637,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, + sym_en_dash, + sym_backslash_escape, anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -17915,22 +18656,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - sym__whitespace1, - sym__newline, - [3685] = 4, - ACTIONS(1390), 1, aux_sym__text_token1, - STATE(201), 1, - aux_sym__text, - ACTIONS(1289), 5, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE, - anon_sym_LBRACK, - ACTIONS(1287), 29, + [4160] = 3, + ACTIONS(1417), 1, + aux_sym_autolink_token1, + ACTIONS(1290), 4, sym__verbatim_begin, - sym__bracketed_text_end, + sym__image_description_end, + sym__whitespace1, + sym__newline, + ACTIONS(1286), 31, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17942,13 +18677,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, + sym_en_dash, + sym_backslash_escape, anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -17956,22 +18696,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - sym__whitespace1, - sym__newline, - [3730] = 4, - ACTIONS(1393), 1, - anon_sym_LBRACE, - STATE(282), 1, - sym_comment, - ACTIONS(1299), 5, + aux_sym__text_token1, + [4203] = 4, + ACTIONS(1419), 1, + aux_sym__text_token1, + STATE(213), 1, + aux_sym__text, + ACTIONS(1281), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, - aux_sym__text_token1, - ACTIONS(1297), 29, + ACTIONS(1279), 29, sym__verbatim_begin, - sym_subscript_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17999,19 +18738,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [3775] = 3, - ACTIONS(1395), 1, - sym__non_whitespace_check, - ACTIONS(1279), 6, + [4248] = 3, + ACTIONS(1422), 1, + anon_sym_GT, + ACTIONS(1294), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1283), 29, + ACTIONS(1292), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18039,20 +18778,20 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [3818] = 4, - ACTIONS(1397), 1, - aux_sym__text_token1, - STATE(204), 1, - aux_sym__text, - ACTIONS(1289), 5, + [4291] = 4, + ACTIONS(1424), 1, + anon_sym_LBRACE, + STATE(288), 1, + sym_comment, + ACTIONS(1313), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(1287), 29, + aux_sym__text_token1, + ACTIONS(1311), 29, sym__verbatim_begin, - sym_strong_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18080,18 +18819,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [3863] = 4, - ACTIONS(1400), 1, + [4336] = 4, + ACTIONS(1426), 1, anon_sym_LBRACE, - STATE(253), 1, + STATE(259), 1, sym_comment, - ACTIONS(1299), 5, + ACTIONS(1313), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1297), 29, + ACTIONS(1311), 29, sym__verbatim_begin, ts_builtin_sym_end, anon_sym_LBRACE_, @@ -18121,15 +18860,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [3908] = 3, - ACTIONS(1402), 1, + [4381] = 3, + ACTIONS(1428), 1, aux_sym_autolink_token1, - ACTIONS(1283), 4, + ACTIONS(1290), 4, sym__verbatim_begin, - sym_emphasis_end, + ts_builtin_sym_end, sym__whitespace1, sym__newline, - ACTIONS(1279), 31, + ACTIONS(1286), 31, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18161,15 +18900,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, aux_sym__text_token1, - [3951] = 3, - ACTIONS(1404), 1, - aux_sym_autolink_token1, - ACTIONS(1283), 4, + [4424] = 3, + ACTIONS(1430), 1, + sym__non_whitespace_check, + ACTIONS(1286), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACE, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1290), 29, sym__verbatim_begin, ts_builtin_sym_end, - sym__whitespace1, - sym__newline, - ACTIONS(1279), 31, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18181,18 +18924,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, - sym_en_dash, - sym_backslash_escape, anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -18200,20 +18938,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - aux_sym__text_token1, - [3994] = 3, - ACTIONS(1406), 1, + sym__whitespace1, + sym__newline, + [4467] = 3, + ACTIONS(1432), 1, sym__non_whitespace_check, - ACTIONS(1279), 6, + ACTIONS(1286), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1283), 29, + ACTIONS(1290), 29, sym__verbatim_begin, - sym_subscript_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18241,19 +18980,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4037] = 3, - ACTIONS(1408), 1, + [4510] = 3, + ACTIONS(1434), 1, sym__non_whitespace_check, - ACTIONS(1279), 6, + ACTIONS(1286), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1283), 29, + ACTIONS(1290), 29, sym__verbatim_begin, - sym_emphasis_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18281,15 +19020,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4080] = 2, - ACTIONS(1412), 6, + [4553] = 2, + ACTIONS(1438), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1410), 29, + ACTIONS(1436), 29, sym__verbatim_begin, sym_highlighted_end, anon_sym_LBRACE_, @@ -18319,15 +19058,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4120] = 2, - ACTIONS(1416), 6, + [4593] = 2, + ACTIONS(1442), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1414), 29, + ACTIONS(1440), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -18347,7 +19086,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, + anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -18357,18 +19096,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4160] = 4, - ACTIONS(1418), 1, + [4633] = 4, + ACTIONS(1444), 1, anon_sym_LBRACE, - STATE(577), 1, + STATE(590), 1, sym_comment, - ACTIONS(1299), 5, + ACTIONS(1313), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1297), 28, + ACTIONS(1311), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -18397,15 +19136,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4204] = 2, - ACTIONS(1416), 6, + [4677] = 2, + ACTIONS(1448), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1414), 29, + ACTIONS(1446), 29, sym__verbatim_begin, sym_strong_end, anon_sym_LBRACE_, @@ -18435,15 +19174,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4244] = 2, - ACTIONS(1422), 6, + [4717] = 2, + ACTIONS(1452), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1420), 29, + ACTIONS(1450), 29, sym__verbatim_begin, sym_strong_end, anon_sym_LBRACE_, @@ -18473,17 +19212,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4284] = 2, - ACTIONS(1426), 6, + [4757] = 2, + ACTIONS(1456), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1424), 29, + ACTIONS(1454), 29, sym__verbatim_begin, - sym_strong_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18511,15 +19250,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4324] = 2, - ACTIONS(1430), 6, + [4797] = 2, + ACTIONS(1460), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1428), 29, + ACTIONS(1458), 29, sym__verbatim_begin, sym_strong_end, anon_sym_LBRACE_, @@ -18549,15 +19288,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4364] = 2, - ACTIONS(1434), 6, + [4837] = 2, + ACTIONS(1464), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1432), 29, + ACTIONS(1462), 29, sym__verbatim_begin, sym_strong_end, anon_sym_LBRACE_, @@ -18587,15 +19326,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4404] = 2, - ACTIONS(1438), 6, + [4877] = 2, + ACTIONS(1468), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1436), 29, + ACTIONS(1466), 29, sym__verbatim_begin, sym_strong_end, anon_sym_LBRACE_, @@ -18625,15 +19364,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4444] = 2, - ACTIONS(1442), 6, + [4917] = 2, + ACTIONS(1472), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1440), 29, + ACTIONS(1470), 29, sym__verbatim_begin, sym_strong_end, anon_sym_LBRACE_, @@ -18663,17 +19402,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4484] = 2, - ACTIONS(1446), 6, + [4957] = 2, + ACTIONS(1476), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1444), 29, + ACTIONS(1474), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18701,15 +19440,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4524] = 2, - ACTIONS(1450), 6, + [4997] = 2, + ACTIONS(1480), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1448), 29, + ACTIONS(1478), 29, sym__verbatim_begin, sym_strong_end, anon_sym_LBRACE_, @@ -18739,17 +19478,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4564] = 2, - ACTIONS(1454), 6, + [5037] = 2, + ACTIONS(1438), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1452), 29, + ACTIONS(1436), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18777,15 +19516,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4604] = 2, - ACTIONS(1458), 6, + [5077] = 2, + ACTIONS(1484), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1456), 29, + ACTIONS(1482), 29, sym__verbatim_begin, sym_strong_end, anon_sym_LBRACE_, @@ -18815,15 +19554,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4644] = 2, - ACTIONS(1462), 6, + [5117] = 2, + ACTIONS(1488), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1460), 29, + ACTIONS(1486), 29, sym__verbatim_begin, sym_strong_end, anon_sym_LBRACE_, @@ -18853,15 +19592,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4684] = 2, - ACTIONS(1466), 6, + [5157] = 2, + ACTIONS(1492), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1464), 29, + ACTIONS(1490), 29, sym__verbatim_begin, sym_strong_end, anon_sym_LBRACE_, @@ -18891,19 +19630,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4724] = 4, - ACTIONS(1468), 1, - anon_sym_LBRACE, - STATE(213), 1, - sym_comment, - ACTIONS(1299), 5, + [5197] = 2, + ACTIONS(1496), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1297), 28, + ACTIONS(1494), 29, sym__verbatim_begin, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18931,15 +19668,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4768] = 2, - ACTIONS(1472), 6, + [5237] = 2, + ACTIONS(1500), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1470), 29, + ACTIONS(1498), 29, sym__verbatim_begin, sym_strong_end, anon_sym_LBRACE_, @@ -18969,17 +19706,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4808] = 2, - ACTIONS(1476), 6, + [5277] = 2, + ACTIONS(1504), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1474), 29, + ACTIONS(1502), 29, sym__verbatim_begin, - sym_strong_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19007,15 +19744,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4848] = 2, - ACTIONS(1480), 6, + [5317] = 2, + ACTIONS(1508), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1478), 29, + ACTIONS(1506), 29, sym__verbatim_begin, sym_strong_end, anon_sym_LBRACE_, @@ -19045,17 +19782,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4888] = 2, - ACTIONS(1484), 6, + [5357] = 3, + ACTIONS(1510), 1, + sym__verbatim_begin, + ACTIONS(1286), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1482), 29, - sym__verbatim_begin, - sym_strong_end, + ACTIONS(1290), 28, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19083,17 +19821,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4928] = 2, - ACTIONS(1488), 6, + [5399] = 2, + ACTIONS(1456), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1486), 29, + ACTIONS(1454), 29, sym__verbatim_begin, - sym_strong_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19121,17 +19859,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4968] = 2, - ACTIONS(1492), 6, + [5439] = 2, + ACTIONS(1504), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1490), 29, + ACTIONS(1502), 29, sym__verbatim_begin, - sym_strong_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19159,17 +19897,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5008] = 2, - ACTIONS(1412), 6, + [5479] = 2, + ACTIONS(1294), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1410), 29, + ACTIONS(1292), 29, sym__verbatim_begin, - sym_strong_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19197,17 +19935,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5048] = 2, - ACTIONS(1496), 6, + [5519] = 2, + ACTIONS(1515), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1494), 29, + ACTIONS(1513), 29, sym__verbatim_begin, - sym_strong_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19235,17 +19973,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5088] = 2, - ACTIONS(1500), 6, + [5559] = 4, + ACTIONS(1517), 1, + anon_sym_LBRACE, + STATE(296), 1, + sym_comment, + ACTIONS(1313), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1498), 29, + ACTIONS(1311), 28, sym__verbatim_begin, - sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19273,17 +20013,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5128] = 2, - ACTIONS(1504), 6, + [5603] = 2, + ACTIONS(1442), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1502), 29, + ACTIONS(1440), 29, sym__verbatim_begin, - sym_strong_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19311,17 +20051,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5168] = 2, - ACTIONS(1508), 6, + [5643] = 2, + ACTIONS(1521), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1506), 29, + ACTIONS(1519), 29, sym__verbatim_begin, - sym_strong_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19349,17 +20089,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5208] = 2, - ACTIONS(1512), 6, + [5683] = 2, + ACTIONS(1525), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1510), 29, + ACTIONS(1523), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19387,17 +20127,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5248] = 2, - ACTIONS(1516), 6, + [5723] = 2, + ACTIONS(1529), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1514), 29, + ACTIONS(1527), 29, sym__verbatim_begin, - sym_strong_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19425,17 +20165,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5288] = 3, - ACTIONS(1518), 1, - sym__verbatim_begin, - ACTIONS(1279), 6, + [5763] = 2, + ACTIONS(1533), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1283), 28, + ACTIONS(1531), 29, + sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, anon_sym__, @@ -19464,15 +20203,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5330] = 2, - ACTIONS(1446), 6, + [5803] = 2, + ACTIONS(1537), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1444), 29, + ACTIONS(1535), 29, sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, @@ -19502,15 +20241,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5370] = 2, - ACTIONS(1454), 6, + [5843] = 2, + ACTIONS(1541), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1452), 29, + ACTIONS(1539), 29, sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, @@ -19540,17 +20279,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5410] = 2, - ACTIONS(1512), 6, + [5883] = 2, + ACTIONS(1294), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1510), 29, + ACTIONS(1292), 29, sym__verbatim_begin, - sym_superscript_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19578,15 +20317,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5450] = 2, - ACTIONS(1523), 6, + [5923] = 2, + ACTIONS(1545), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1521), 29, + ACTIONS(1543), 29, sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, @@ -19616,15 +20355,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5490] = 2, - ACTIONS(1523), 6, + [5963] = 2, + ACTIONS(1515), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1521), 29, + ACTIONS(1513), 29, sym__verbatim_begin, ts_builtin_sym_end, anon_sym_LBRACE_, @@ -19654,15 +20393,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5530] = 2, - ACTIONS(1416), 6, + [6003] = 2, + ACTIONS(1448), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1414), 29, + ACTIONS(1446), 29, sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, @@ -19692,15 +20431,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5570] = 2, - ACTIONS(1422), 6, + [6043] = 2, + ACTIONS(1452), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1420), 29, + ACTIONS(1450), 29, sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, @@ -19730,17 +20469,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5610] = 2, - ACTIONS(1426), 6, + [6083] = 2, + ACTIONS(1442), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1424), 29, + ACTIONS(1440), 29, sym__verbatim_begin, - sym_superscript_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19768,15 +20507,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5650] = 2, - ACTIONS(1430), 6, + [6123] = 2, + ACTIONS(1460), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1428), 29, + ACTIONS(1458), 29, sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, @@ -19806,15 +20545,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5690] = 2, - ACTIONS(1434), 6, + [6163] = 2, + ACTIONS(1464), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1432), 29, + ACTIONS(1462), 29, sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, @@ -19844,15 +20583,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5730] = 2, - ACTIONS(1438), 6, + [6203] = 2, + ACTIONS(1468), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1436), 29, + ACTIONS(1466), 29, sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, @@ -19882,15 +20621,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5770] = 2, - ACTIONS(1442), 6, + [6243] = 2, + ACTIONS(1472), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1440), 29, + ACTIONS(1470), 29, sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, @@ -19920,17 +20659,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5810] = 2, - ACTIONS(1416), 6, + [6283] = 2, + ACTIONS(1476), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1414), 29, + ACTIONS(1474), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19958,15 +20697,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5850] = 2, - ACTIONS(1450), 6, + [6323] = 2, + ACTIONS(1480), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1448), 29, + ACTIONS(1478), 29, sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, @@ -19996,17 +20735,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5890] = 2, - ACTIONS(1422), 6, + [6363] = 2, + ACTIONS(1438), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1420), 29, + ACTIONS(1436), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20034,15 +20773,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5930] = 2, - ACTIONS(1458), 6, + [6403] = 2, + ACTIONS(1484), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1456), 29, + ACTIONS(1482), 29, sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, @@ -20072,15 +20811,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5970] = 2, - ACTIONS(1462), 6, + [6443] = 2, + ACTIONS(1488), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1460), 29, + ACTIONS(1486), 29, sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, @@ -20110,15 +20849,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6010] = 2, - ACTIONS(1466), 6, + [6483] = 2, + ACTIONS(1492), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1464), 29, + ACTIONS(1490), 29, sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, @@ -20148,17 +20887,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6050] = 2, - ACTIONS(1426), 6, + [6523] = 2, + ACTIONS(1496), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1424), 29, + ACTIONS(1494), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20186,15 +20925,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6090] = 2, - ACTIONS(1472), 6, + [6563] = 2, + ACTIONS(1500), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1470), 29, + ACTIONS(1498), 29, sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, @@ -20224,17 +20963,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6130] = 2, - ACTIONS(1476), 6, + [6603] = 2, + ACTIONS(1521), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1474), 29, + ACTIONS(1519), 29, sym__verbatim_begin, - sym_superscript_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20262,15 +21001,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6170] = 2, - ACTIONS(1480), 6, + [6643] = 2, + ACTIONS(1508), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1478), 29, + ACTIONS(1506), 29, sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, @@ -20300,17 +21039,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6210] = 2, - ACTIONS(1484), 6, + [6683] = 2, + ACTIONS(1525), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1482), 29, + ACTIONS(1523), 29, sym__verbatim_begin, - sym_superscript_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20338,17 +21077,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6250] = 2, - ACTIONS(1488), 6, + [6723] = 2, + ACTIONS(1452), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1486), 29, + ACTIONS(1450), 29, sym__verbatim_begin, - sym_superscript_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20376,17 +21115,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6290] = 2, - ACTIONS(1492), 6, + [6763] = 2, + ACTIONS(1541), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1490), 29, + ACTIONS(1539), 29, sym__verbatim_begin, - sym_superscript_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20414,17 +21153,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6330] = 2, - ACTIONS(1412), 6, + [6803] = 2, + ACTIONS(1537), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1410), 29, + ACTIONS(1535), 29, sym__verbatim_begin, - sym_superscript_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20452,17 +21191,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6370] = 2, - ACTIONS(1496), 6, + [6843] = 3, + ACTIONS(1547), 1, + sym__verbatim_begin, + ACTIONS(1286), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1494), 29, - sym__verbatim_begin, - sym_superscript_end, + ACTIONS(1290), 28, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20490,17 +21230,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6410] = 2, - ACTIONS(1500), 6, + [6885] = 2, + ACTIONS(1456), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1498), 29, + ACTIONS(1454), 29, sym__verbatim_begin, - sym_superscript_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20528,7 +21268,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6450] = 2, + [6925] = 2, ACTIONS(1504), 6, anon_sym_BSLASH, sym_en_dash, @@ -20538,7 +21278,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__text_token1, ACTIONS(1502), 29, sym__verbatim_begin, - sym_superscript_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20566,17 +21306,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6490] = 2, - ACTIONS(1508), 6, + [6965] = 2, + ACTIONS(1533), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1506), 29, + ACTIONS(1531), 29, sym__verbatim_begin, - sym_superscript_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20604,17 +21344,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6530] = 2, - ACTIONS(1430), 6, + [7005] = 2, + ACTIONS(1529), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1428), 29, + ACTIONS(1527), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20642,17 +21382,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6570] = 2, - ACTIONS(1516), 6, + [7045] = 2, + ACTIONS(1525), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1514), 29, + ACTIONS(1523), 29, sym__verbatim_begin, - sym_superscript_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20680,17 +21420,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6610] = 3, - ACTIONS(1525), 1, - sym__verbatim_begin, - ACTIONS(1279), 6, + [7085] = 2, + ACTIONS(1294), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1283), 28, + ACTIONS(1292), 29, + sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, anon_sym__, @@ -20719,15 +21458,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6652] = 2, - ACTIONS(1446), 6, + [7125] = 2, + ACTIONS(1515), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1444), 29, + ACTIONS(1513), 29, sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, @@ -20757,17 +21496,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6692] = 2, - ACTIONS(1454), 6, + [7165] = 2, + ACTIONS(1529), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1452), 29, + ACTIONS(1527), 29, sym__verbatim_begin, - sym_subscript_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20795,17 +21534,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6732] = 2, - ACTIONS(1434), 6, + [7205] = 2, + ACTIONS(1521), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1432), 29, + ACTIONS(1519), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20833,17 +21572,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6772] = 2, - ACTIONS(1512), 6, + [7245] = 2, + ACTIONS(1442), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1510), 29, + ACTIONS(1440), 29, sym__verbatim_begin, - sym_strong_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20871,17 +21610,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6812] = 2, - ACTIONS(1454), 6, + [7285] = 2, + ACTIONS(1521), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1452), 29, + ACTIONS(1519), 29, sym__verbatim_begin, - sym_strong_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20909,15 +21648,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6852] = 2, - ACTIONS(1512), 6, + [7325] = 2, + ACTIONS(1525), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1510), 29, + ACTIONS(1523), 29, sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, @@ -20947,15 +21686,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6892] = 2, - ACTIONS(1523), 6, + [7365] = 2, + ACTIONS(1529), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1521), 29, + ACTIONS(1527), 29, sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, @@ -20985,17 +21724,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6932] = 2, - ACTIONS(1438), 6, + [7405] = 2, + ACTIONS(1533), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1436), 29, + ACTIONS(1531), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21023,15 +21762,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6972] = 2, - ACTIONS(1416), 6, + [7445] = 2, + ACTIONS(1537), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1414), 29, + ACTIONS(1535), 29, sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, @@ -21061,15 +21800,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7012] = 2, - ACTIONS(1422), 6, + [7485] = 2, + ACTIONS(1541), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1420), 29, + ACTIONS(1539), 29, sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, @@ -21099,17 +21838,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7052] = 2, - ACTIONS(1426), 6, + [7525] = 2, + ACTIONS(1533), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1424), 29, + ACTIONS(1531), 29, sym__verbatim_begin, - sym_subscript_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21137,17 +21876,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7092] = 2, - ACTIONS(1430), 6, + [7565] = 2, + ACTIONS(1442), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1428), 29, + ACTIONS(1440), 29, sym__verbatim_begin, - sym_subscript_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21175,17 +21914,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7132] = 2, - ACTIONS(1434), 6, + [7605] = 2, + ACTIONS(1537), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1432), 29, + ACTIONS(1535), 29, sym__verbatim_begin, - sym_subscript_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21213,17 +21952,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7172] = 2, - ACTIONS(1438), 6, + [7645] = 2, + ACTIONS(1515), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1436), 29, + ACTIONS(1513), 29, sym__verbatim_begin, - sym_subscript_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21251,15 +21990,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7212] = 2, - ACTIONS(1442), 6, + [7685] = 2, + ACTIONS(1545), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1440), 29, + ACTIONS(1543), 29, sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, @@ -21289,15 +22028,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7252] = 2, - ACTIONS(1442), 6, + [7725] = 2, + ACTIONS(1541), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1440), 29, + ACTIONS(1539), 29, sym__verbatim_begin, ts_builtin_sym_end, anon_sym_LBRACE_, @@ -21327,17 +22066,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7292] = 2, - ACTIONS(1446), 6, + [7765] = 2, + ACTIONS(1448), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1444), 29, + ACTIONS(1446), 29, sym__verbatim_begin, - sym_strong_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21365,18 +22104,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7332] = 3, - ACTIONS(1528), 1, - sym__verbatim_begin, - ACTIONS(1279), 6, + [7805] = 2, + ACTIONS(1452), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1283), 28, - sym_strong_end, + ACTIONS(1450), 29, + sym__verbatim_begin, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21404,15 +22142,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7374] = 2, - ACTIONS(1450), 6, + [7845] = 2, + ACTIONS(1545), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1448), 29, + ACTIONS(1543), 29, sym__verbatim_begin, ts_builtin_sym_end, anon_sym_LBRACE_, @@ -21442,15 +22180,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7414] = 2, - ACTIONS(1450), 6, + [7885] = 2, + ACTIONS(1460), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1448), 29, + ACTIONS(1458), 29, sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, @@ -21480,17 +22218,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7454] = 2, - ACTIONS(1458), 6, + [7925] = 2, + ACTIONS(1464), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1456), 29, + ACTIONS(1462), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21518,15 +22256,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7494] = 2, - ACTIONS(1458), 6, + [7965] = 2, + ACTIONS(1468), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1456), 29, + ACTIONS(1466), 29, sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, @@ -21556,15 +22294,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7534] = 2, - ACTIONS(1462), 6, + [8005] = 2, + ACTIONS(1472), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1460), 29, + ACTIONS(1470), 29, sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, @@ -21594,15 +22332,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7574] = 2, - ACTIONS(1466), 6, + [8045] = 2, + ACTIONS(1476), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1464), 29, + ACTIONS(1474), 29, sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, @@ -21632,17 +22370,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7614] = 2, - ACTIONS(1462), 6, + [8085] = 2, + ACTIONS(1480), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1460), 29, + ACTIONS(1478), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21670,15 +22408,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7654] = 2, - ACTIONS(1472), 6, + [8125] = 2, + ACTIONS(1438), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1470), 29, + ACTIONS(1436), 29, sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, @@ -21708,15 +22446,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7694] = 2, - ACTIONS(1476), 6, + [8165] = 2, + ACTIONS(1484), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1474), 29, + ACTIONS(1482), 29, sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, @@ -21746,15 +22484,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7734] = 2, - ACTIONS(1480), 6, + [8205] = 2, + ACTIONS(1488), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1478), 29, + ACTIONS(1486), 29, sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, @@ -21784,15 +22522,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7774] = 2, - ACTIONS(1484), 6, + [8245] = 2, + ACTIONS(1492), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1482), 29, + ACTIONS(1490), 29, sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, @@ -21822,15 +22560,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7814] = 2, - ACTIONS(1488), 6, + [8285] = 2, + ACTIONS(1496), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1486), 29, + ACTIONS(1494), 29, sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, @@ -21860,15 +22598,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7854] = 2, - ACTIONS(1492), 6, + [8325] = 2, + ACTIONS(1500), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1490), 29, + ACTIONS(1498), 29, sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, @@ -21898,17 +22636,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7894] = 2, - ACTIONS(1412), 6, + [8365] = 2, + ACTIONS(1448), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1410), 29, + ACTIONS(1446), 29, sym__verbatim_begin, - sym_subscript_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21936,15 +22674,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7934] = 2, - ACTIONS(1496), 6, + [8405] = 2, + ACTIONS(1508), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1494), 29, + ACTIONS(1506), 29, sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, @@ -21974,17 +22712,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7974] = 2, - ACTIONS(1500), 6, + [8445] = 2, + ACTIONS(1294), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1498), 29, + ACTIONS(1292), 29, sym__verbatim_begin, - sym_subscript_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22012,7 +22750,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8014] = 2, + [8485] = 2, ACTIONS(1504), 6, anon_sym_BSLASH, sym_en_dash, @@ -22022,7 +22760,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__text_token1, ACTIONS(1502), 29, sym__verbatim_begin, - sym_subscript_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22050,17 +22788,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8054] = 2, - ACTIONS(1508), 6, + [8525] = 2, + ACTIONS(1456), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1506), 29, + ACTIONS(1454), 29, sym__verbatim_begin, - sym_subscript_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22088,17 +22826,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8094] = 2, - ACTIONS(1466), 6, + [8565] = 3, + ACTIONS(1550), 1, + sym__verbatim_begin, + ACTIONS(1286), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1464), 29, - sym__verbatim_begin, - ts_builtin_sym_end, + ACTIONS(1290), 28, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22126,17 +22865,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8134] = 2, - ACTIONS(1516), 6, + [8607] = 3, + ACTIONS(1553), 1, + sym__verbatim_begin, + ACTIONS(1286), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1514), 29, - sym__verbatim_begin, - sym_subscript_end, + ACTIONS(1290), 28, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22164,17 +22904,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8174] = 2, - ACTIONS(1516), 6, + [8649] = 2, + ACTIONS(1456), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1514), 29, + ACTIONS(1454), 29, sym__verbatim_begin, - sym_emphasis_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22202,17 +22942,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8214] = 2, - ACTIONS(1472), 6, + [8689] = 2, + ACTIONS(1504), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1470), 29, + ACTIONS(1502), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22240,15 +22980,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8254] = 2, - ACTIONS(1476), 6, + [8729] = 2, + ACTIONS(1452), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1474), 29, + ACTIONS(1450), 29, sym__verbatim_begin, ts_builtin_sym_end, anon_sym_LBRACE_, @@ -22278,7 +23018,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8294] = 2, + [8769] = 2, ACTIONS(1508), 6, anon_sym_BSLASH, sym_en_dash, @@ -22316,18 +23056,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8334] = 3, - ACTIONS(1531), 1, - sym__verbatim_begin, - ACTIONS(1279), 6, + [8809] = 2, + ACTIONS(1460), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1283), 28, - sym_highlighted_end, + ACTIONS(1458), 29, + sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22355,15 +23094,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8376] = 2, - ACTIONS(1446), 6, + [8849] = 2, + ACTIONS(1294), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1444), 29, + ACTIONS(1292), 29, sym__verbatim_begin, sym_highlighted_end, anon_sym_LBRACE_, @@ -22393,15 +23132,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8416] = 2, - ACTIONS(1454), 6, + [8889] = 2, + ACTIONS(1515), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1452), 29, + ACTIONS(1513), 29, sym__verbatim_begin, sym_highlighted_end, anon_sym_LBRACE_, @@ -22431,17 +23170,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8456] = 2, - ACTIONS(1504), 6, + [8929] = 2, + ACTIONS(1464), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1502), 29, + ACTIONS(1462), 29, sym__verbatim_begin, - sym_emphasis_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22469,17 +23208,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8496] = 2, - ACTIONS(1500), 6, + [8969] = 2, + ACTIONS(1468), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1498), 29, + ACTIONS(1466), 29, sym__verbatim_begin, - sym_emphasis_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22507,17 +23246,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8536] = 2, - ACTIONS(1496), 6, + [9009] = 2, + ACTIONS(1442), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1494), 29, + ACTIONS(1440), 29, sym__verbatim_begin, - sym_emphasis_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22545,15 +23284,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8576] = 2, - ACTIONS(1512), 6, + [9049] = 2, + ACTIONS(1521), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1510), 29, + ACTIONS(1519), 29, sym__verbatim_begin, sym_highlighted_end, anon_sym_LBRACE_, @@ -22583,15 +23322,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8616] = 2, - ACTIONS(1523), 6, + [9089] = 2, + ACTIONS(1525), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1521), 29, + ACTIONS(1523), 29, sym__verbatim_begin, sym_highlighted_end, anon_sym_LBRACE_, @@ -22621,17 +23360,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8656] = 2, - ACTIONS(1480), 6, + [9129] = 2, + ACTIONS(1529), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1478), 29, + ACTIONS(1527), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22659,15 +23398,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8696] = 2, - ACTIONS(1416), 6, + [9169] = 2, + ACTIONS(1533), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1414), 29, + ACTIONS(1531), 29, sym__verbatim_begin, sym_highlighted_end, anon_sym_LBRACE_, @@ -22697,15 +23436,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8736] = 2, - ACTIONS(1422), 6, + [9209] = 2, + ACTIONS(1537), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1420), 29, + ACTIONS(1535), 29, sym__verbatim_begin, sym_highlighted_end, anon_sym_LBRACE_, @@ -22735,15 +23474,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8776] = 2, - ACTIONS(1426), 6, + [9249] = 2, + ACTIONS(1541), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1424), 29, + ACTIONS(1539), 29, sym__verbatim_begin, sym_highlighted_end, anon_sym_LBRACE_, @@ -22773,17 +23512,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8816] = 2, - ACTIONS(1430), 6, + [9289] = 2, + ACTIONS(1472), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1428), 29, + ACTIONS(1470), 29, sym__verbatim_begin, - sym_highlighted_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22811,17 +23550,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8856] = 2, - ACTIONS(1434), 6, + [9329] = 2, + ACTIONS(1500), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1432), 29, + ACTIONS(1498), 29, sym__verbatim_begin, - sym_highlighted_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22849,17 +23588,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8896] = 2, - ACTIONS(1438), 6, + [9369] = 2, + ACTIONS(1496), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1436), 29, + ACTIONS(1494), 29, sym__verbatim_begin, - sym_highlighted_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22887,17 +23626,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8936] = 2, - ACTIONS(1442), 6, + [9409] = 2, + ACTIONS(1492), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1440), 29, + ACTIONS(1490), 29, sym__verbatim_begin, - sym_highlighted_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22925,17 +23664,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8976] = 2, - ACTIONS(1484), 6, + [9449] = 2, + ACTIONS(1545), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1482), 29, + ACTIONS(1543), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22963,17 +23702,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9016] = 2, - ACTIONS(1412), 6, + [9489] = 4, + ACTIONS(1556), 1, + aux_sym__text_token1, + STATE(344), 1, + aux_sym__text, + ACTIONS(1281), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, - aux_sym__text_token1, - ACTIONS(1410), 29, + ACTIONS(1279), 28, sym__verbatim_begin, - sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23001,17 +23742,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9056] = 2, - ACTIONS(1492), 6, + [9533] = 2, + ACTIONS(1448), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1490), 29, + ACTIONS(1446), 29, sym__verbatim_begin, - sym_emphasis_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23039,17 +23780,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9096] = 2, - ACTIONS(1488), 6, + [9573] = 2, + ACTIONS(1452), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1486), 29, + ACTIONS(1450), 29, sym__verbatim_begin, - sym_emphasis_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23077,17 +23818,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9136] = 2, - ACTIONS(1450), 6, + [9613] = 3, + ACTIONS(1559), 1, + anon_sym_GT, + ACTIONS(1294), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1448), 29, + ACTIONS(1292), 28, sym__verbatim_begin, - sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23115,19 +23857,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9176] = 4, - ACTIONS(1534), 1, - aux_sym__text_token1, - STATE(337), 1, - aux_sym__text, - ACTIONS(1289), 5, + [9655] = 2, + ACTIONS(1460), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(1287), 28, + aux_sym__text_token1, + ACTIONS(1458), 29, sym__verbatim_begin, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23155,15 +23895,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9220] = 2, - ACTIONS(1458), 6, + [9695] = 2, + ACTIONS(1464), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1456), 29, + ACTIONS(1462), 29, sym__verbatim_begin, sym_highlighted_end, anon_sym_LBRACE_, @@ -23193,15 +23933,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9260] = 2, - ACTIONS(1462), 6, + [9735] = 2, + ACTIONS(1468), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1460), 29, + ACTIONS(1466), 29, sym__verbatim_begin, sym_highlighted_end, anon_sym_LBRACE_, @@ -23231,15 +23971,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9300] = 2, - ACTIONS(1466), 6, + [9775] = 2, + ACTIONS(1472), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1464), 29, + ACTIONS(1470), 29, sym__verbatim_begin, sym_highlighted_end, anon_sym_LBRACE_, @@ -23269,17 +24009,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9340] = 2, - ACTIONS(1488), 6, + [9815] = 2, + ACTIONS(1476), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1486), 29, + ACTIONS(1474), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23307,15 +24047,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9380] = 2, - ACTIONS(1472), 6, + [9855] = 2, + ACTIONS(1480), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1470), 29, + ACTIONS(1478), 29, sym__verbatim_begin, sym_highlighted_end, anon_sym_LBRACE_, @@ -23345,7 +24085,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9420] = 2, + [9895] = 2, ACTIONS(1476), 6, anon_sym_BSLASH, sym_en_dash, @@ -23355,7 +24095,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__text_token1, ACTIONS(1474), 29, sym__verbatim_begin, - sym_highlighted_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23383,15 +24123,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9460] = 2, - ACTIONS(1480), 6, + [9935] = 2, + ACTIONS(1484), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1478), 29, + ACTIONS(1482), 29, sym__verbatim_begin, sym_highlighted_end, anon_sym_LBRACE_, @@ -23421,15 +24161,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9500] = 2, - ACTIONS(1484), 6, + [9975] = 2, + ACTIONS(1488), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1482), 29, + ACTIONS(1486), 29, sym__verbatim_begin, sym_highlighted_end, anon_sym_LBRACE_, @@ -23459,15 +24199,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9540] = 2, - ACTIONS(1488), 6, + [10015] = 2, + ACTIONS(1492), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1486), 29, + ACTIONS(1490), 29, sym__verbatim_begin, sym_highlighted_end, anon_sym_LBRACE_, @@ -23497,15 +24237,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9580] = 2, - ACTIONS(1492), 6, + [10055] = 2, + ACTIONS(1496), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1490), 29, + ACTIONS(1494), 29, sym__verbatim_begin, sym_highlighted_end, anon_sym_LBRACE_, @@ -23535,14 +24275,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9620] = 3, - ACTIONS(1537), 1, - aux_sym_autolink_token1, - ACTIONS(1283), 3, + [10095] = 2, + ACTIONS(1500), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACE, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1498), 29, sym__verbatim_begin, - sym__whitespace1, - sym__newline, - ACTIONS(1279), 31, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23554,18 +24297,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, - sym_en_dash, - sym_backslash_escape, anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -23573,18 +24311,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - aux_sym__text_token1, - [9662] = 2, - ACTIONS(1496), 6, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE, - anon_sym_LBRACK, - aux_sym__text_token1, - ACTIONS(1494), 29, + sym__whitespace1, + sym__newline, + [10135] = 3, + ACTIONS(1561), 1, + aux_sym_autolink_token1, + ACTIONS(1290), 3, sym__verbatim_begin, - sym_highlighted_end, + sym__whitespace1, + sym__newline, + ACTIONS(1286), 31, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23596,13 +24332,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, + sym_en_dash, + sym_backslash_escape, anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -23610,17 +24351,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - sym__whitespace1, - sym__newline, - [9702] = 2, - ACTIONS(1500), 6, + aux_sym__text_token1, + [10177] = 2, + ACTIONS(1508), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1498), 29, + ACTIONS(1506), 29, sym__verbatim_begin, sym_highlighted_end, anon_sym_LBRACE_, @@ -23650,17 +24390,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9742] = 2, - ACTIONS(1504), 6, + [10217] = 2, + ACTIONS(1488), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1502), 29, + ACTIONS(1486), 29, sym__verbatim_begin, - sym_highlighted_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23688,17 +24428,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9782] = 2, - ACTIONS(1508), 6, + [10257] = 2, + ACTIONS(1484), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1506), 29, + ACTIONS(1482), 29, sym__verbatim_begin, - sym_highlighted_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23726,17 +24466,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9822] = 2, - ACTIONS(1492), 6, + [10297] = 2, + ACTIONS(1438), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1490), 29, + ACTIONS(1436), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23764,17 +24504,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9862] = 2, - ACTIONS(1516), 6, + [10337] = 2, + ACTIONS(1480), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1514), 29, + ACTIONS(1478), 29, sym__verbatim_begin, - sym_highlighted_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23802,17 +24542,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9902] = 2, - ACTIONS(1484), 6, + [10377] = 3, + ACTIONS(1563), 1, + sym__verbatim_begin, + ACTIONS(1286), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1482), 29, - sym__verbatim_begin, - sym_emphasis_end, + ACTIONS(1290), 28, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23840,18 +24581,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9942] = 3, - ACTIONS(1539), 1, - sym__non_whitespace_check, - ACTIONS(1279), 6, + [10419] = 2, + ACTIONS(1456), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1283), 28, + ACTIONS(1454), 29, sym__verbatim_begin, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23879,17 +24619,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9984] = 2, - ACTIONS(1480), 6, + [10459] = 2, + ACTIONS(1504), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1478), 29, + ACTIONS(1502), 29, sym__verbatim_begin, - sym_emphasis_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23917,7 +24657,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10024] = 2, + [10499] = 2, ACTIONS(1476), 6, anon_sym_BSLASH, sym_en_dash, @@ -23955,18 +24695,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10064] = 3, - ACTIONS(1541), 1, - sym__verbatim_begin, - ACTIONS(1279), 6, + [10539] = 2, + ACTIONS(1472), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1283), 28, - sym_insert_end, + ACTIONS(1470), 29, + sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23994,17 +24733,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10106] = 2, - ACTIONS(1446), 6, + [10579] = 2, + ACTIONS(1480), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1444), 29, + ACTIONS(1478), 29, sym__verbatim_begin, - sym_insert_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24032,15 +24771,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10146] = 2, - ACTIONS(1454), 6, + [10619] = 2, + ACTIONS(1294), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1452), 29, + ACTIONS(1292), 29, sym__verbatim_begin, sym_insert_end, anon_sym_LBRACE_, @@ -24070,17 +24809,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10186] = 2, - ACTIONS(1472), 6, + [10659] = 2, + ACTIONS(1515), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1470), 29, + ACTIONS(1513), 29, sym__verbatim_begin, - sym_emphasis_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24108,17 +24847,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10226] = 3, - ACTIONS(1544), 1, + [10699] = 3, + ACTIONS(1566), 1, sym__non_whitespace_check, - ACTIONS(1279), 6, + ACTIONS(1286), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1283), 28, + ACTIONS(1290), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -24147,15 +24886,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10268] = 2, - ACTIONS(1466), 6, + [10741] = 2, + ACTIONS(1468), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1464), 29, + ACTIONS(1466), 29, sym__verbatim_begin, sym_emphasis_end, anon_sym_LBRACE_, @@ -24185,15 +24924,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10308] = 2, - ACTIONS(1512), 6, + [10781] = 2, + ACTIONS(1442), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1510), 29, + ACTIONS(1440), 29, sym__verbatim_begin, sym_insert_end, anon_sym_LBRACE_, @@ -24223,15 +24962,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10348] = 2, - ACTIONS(1523), 6, + [10821] = 2, + ACTIONS(1521), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1521), 29, + ACTIONS(1519), 29, sym__verbatim_begin, sym_insert_end, anon_sym_LBRACE_, @@ -24261,17 +25000,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10388] = 2, - ACTIONS(1516), 6, + [10861] = 2, + ACTIONS(1525), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1514), 29, + ACTIONS(1523), 29, sym__verbatim_begin, - sym__bracketed_text_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24299,15 +25038,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10428] = 2, - ACTIONS(1416), 6, + [10901] = 2, + ACTIONS(1529), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1414), 29, + ACTIONS(1527), 29, sym__verbatim_begin, sym_insert_end, anon_sym_LBRACE_, @@ -24337,15 +25076,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10468] = 2, - ACTIONS(1422), 6, + [10941] = 2, + ACTIONS(1533), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1420), 29, + ACTIONS(1531), 29, sym__verbatim_begin, sym_insert_end, anon_sym_LBRACE_, @@ -24375,15 +25114,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10508] = 2, - ACTIONS(1426), 6, + [10981] = 2, + ACTIONS(1537), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1424), 29, + ACTIONS(1535), 29, sym__verbatim_begin, sym_insert_end, anon_sym_LBRACE_, @@ -24413,15 +25152,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10548] = 2, - ACTIONS(1430), 6, + [11021] = 2, + ACTIONS(1541), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1428), 29, + ACTIONS(1539), 29, sym__verbatim_begin, sym_insert_end, anon_sym_LBRACE_, @@ -24451,17 +25190,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10588] = 2, - ACTIONS(1434), 6, + [11061] = 3, + ACTIONS(1568), 1, + sym__non_whitespace_check, + ACTIONS(1286), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1432), 29, + ACTIONS(1290), 28, sym__verbatim_begin, - sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24489,17 +25229,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10628] = 2, - ACTIONS(1438), 6, + [11103] = 2, + ACTIONS(1464), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1436), 29, + ACTIONS(1462), 29, sym__verbatim_begin, - sym_insert_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24527,17 +25267,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10668] = 2, - ACTIONS(1442), 6, + [11143] = 2, + ACTIONS(1460), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1440), 29, + ACTIONS(1458), 29, sym__verbatim_begin, - sym_insert_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24565,7 +25305,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10708] = 2, + [11183] = 2, ACTIONS(1508), 6, anon_sym_BSLASH, sym_en_dash, @@ -24603,17 +25343,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10748] = 2, - ACTIONS(1504), 6, + [11223] = 2, + ACTIONS(1545), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1502), 29, + ACTIONS(1543), 29, sym__verbatim_begin, - sym__bracketed_text_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24641,17 +25381,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10788] = 2, - ACTIONS(1462), 6, + [11263] = 2, + ACTIONS(1500), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1460), 29, + ACTIONS(1498), 29, sym__verbatim_begin, - sym_emphasis_end, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24679,17 +25419,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10828] = 2, - ACTIONS(1458), 6, + [11303] = 2, + ACTIONS(1448), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1456), 29, + ACTIONS(1446), 29, sym__verbatim_begin, - sym_emphasis_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24717,15 +25457,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10868] = 2, - ACTIONS(1450), 6, + [11343] = 2, + ACTIONS(1452), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1448), 29, + ACTIONS(1450), 29, sym__verbatim_begin, sym_insert_end, anon_sym_LBRACE_, @@ -24755,15 +25495,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10908] = 2, - ACTIONS(1500), 6, + [11383] = 2, + ACTIONS(1496), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1498), 29, + ACTIONS(1494), 29, sym__verbatim_begin, sym__bracketed_text_end, anon_sym_LBRACE_, @@ -24793,15 +25533,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10948] = 2, - ACTIONS(1458), 6, + [11423] = 2, + ACTIONS(1460), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1456), 29, + ACTIONS(1458), 29, sym__verbatim_begin, sym_insert_end, anon_sym_LBRACE_, @@ -24831,15 +25571,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10988] = 2, - ACTIONS(1462), 6, + [11463] = 2, + ACTIONS(1464), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1460), 29, + ACTIONS(1462), 29, sym__verbatim_begin, sym_insert_end, anon_sym_LBRACE_, @@ -24869,15 +25609,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11028] = 2, - ACTIONS(1466), 6, + [11503] = 2, + ACTIONS(1468), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1464), 29, + ACTIONS(1466), 29, sym__verbatim_begin, sym_insert_end, anon_sym_LBRACE_, @@ -24907,17 +25647,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11068] = 2, - ACTIONS(1496), 6, + [11543] = 2, + ACTIONS(1472), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1494), 29, + ACTIONS(1470), 29, sym__verbatim_begin, - sym__bracketed_text_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24945,15 +25685,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11108] = 2, - ACTIONS(1472), 6, + [11583] = 2, + ACTIONS(1476), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1470), 29, + ACTIONS(1474), 29, sym__verbatim_begin, sym_insert_end, anon_sym_LBRACE_, @@ -24983,15 +25723,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11148] = 2, - ACTIONS(1476), 6, + [11623] = 2, + ACTIONS(1480), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1474), 29, + ACTIONS(1478), 29, sym__verbatim_begin, sym_insert_end, anon_sym_LBRACE_, @@ -25021,15 +25761,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11188] = 2, - ACTIONS(1480), 6, + [11663] = 2, + ACTIONS(1438), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1478), 29, + ACTIONS(1436), 29, sym__verbatim_begin, sym_insert_end, anon_sym_LBRACE_, @@ -25059,7 +25799,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11228] = 2, + [11703] = 2, ACTIONS(1484), 6, anon_sym_BSLASH, sym_en_dash, @@ -25097,7 +25837,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11268] = 2, + [11743] = 2, ACTIONS(1488), 6, anon_sym_BSLASH, sym_en_dash, @@ -25135,7 +25875,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11308] = 2, + [11783] = 2, ACTIONS(1492), 6, anon_sym_BSLASH, sym_en_dash, @@ -25173,15 +25913,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11348] = 2, - ACTIONS(1412), 6, + [11823] = 2, + ACTIONS(1496), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1410), 29, + ACTIONS(1494), 29, sym__verbatim_begin, sym_insert_end, anon_sym_LBRACE_, @@ -25211,15 +25951,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11388] = 2, - ACTIONS(1496), 6, + [11863] = 2, + ACTIONS(1500), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1494), 29, + ACTIONS(1498), 29, sym__verbatim_begin, sym_insert_end, anon_sym_LBRACE_, @@ -25249,17 +25989,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11428] = 2, - ACTIONS(1500), 6, + [11903] = 2, + ACTIONS(1492), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1498), 29, + ACTIONS(1490), 29, sym__verbatim_begin, - sym_insert_end, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25287,15 +26027,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11468] = 2, - ACTIONS(1504), 6, + [11943] = 2, + ACTIONS(1508), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1502), 29, + ACTIONS(1506), 29, sym__verbatim_begin, sym_insert_end, anon_sym_LBRACE_, @@ -25325,17 +26065,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11508] = 2, - ACTIONS(1508), 6, + [11983] = 2, + ACTIONS(1294), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1506), 29, + ACTIONS(1292), 29, sym__verbatim_begin, - sym_insert_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25363,15 +26103,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11548] = 2, - ACTIONS(1412), 6, + [12023] = 2, + ACTIONS(1488), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1410), 29, + ACTIONS(1486), 29, sym__verbatim_begin, sym__bracketed_text_end, anon_sym_LBRACE_, @@ -25401,17 +26141,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11588] = 2, - ACTIONS(1516), 6, + [12063] = 2, + ACTIONS(1448), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1514), 29, + ACTIONS(1446), 29, sym__verbatim_begin, - sym_insert_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25439,17 +26179,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11628] = 2, - ACTIONS(1512), 6, + [12103] = 2, + ACTIONS(1484), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1510), 29, + ACTIONS(1482), 29, sym__verbatim_begin, - sym_emphasis_end, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25477,17 +26217,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11668] = 2, - ACTIONS(1450), 6, + [12143] = 3, + ACTIONS(1570), 1, + sym__verbatim_begin, + ACTIONS(1286), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1448), 29, - sym__verbatim_begin, - sym_emphasis_end, + ACTIONS(1290), 28, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25515,17 +26256,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11708] = 2, - ACTIONS(1492), 6, + [12185] = 2, + ACTIONS(1456), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1490), 29, + ACTIONS(1454), 29, sym__verbatim_begin, - sym__bracketed_text_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25553,17 +26294,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11748] = 2, - ACTIONS(1442), 6, + [12225] = 2, + ACTIONS(1504), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1440), 29, + ACTIONS(1502), 29, sym__verbatim_begin, - sym_emphasis_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25591,18 +26332,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11788] = 3, - ACTIONS(1546), 1, - sym__verbatim_begin, - ACTIONS(1279), 6, + [12265] = 2, + ACTIONS(1545), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1283), 28, - sym_delete_end, + ACTIONS(1543), 29, + sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25630,17 +26370,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11830] = 2, - ACTIONS(1446), 6, + [12305] = 2, + ACTIONS(1438), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1444), 29, + ACTIONS(1436), 29, sym__verbatim_begin, - sym_delete_end, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25668,17 +26408,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11870] = 2, - ACTIONS(1454), 6, + [12345] = 2, + ACTIONS(1541), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1452), 29, + ACTIONS(1539), 29, sym__verbatim_begin, - sym_delete_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25706,17 +26446,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11910] = 2, - ACTIONS(1438), 6, + [12385] = 2, + ACTIONS(1294), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1436), 29, + ACTIONS(1292), 29, sym__verbatim_begin, - sym_emphasis_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25744,17 +26484,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11950] = 2, - ACTIONS(1434), 6, + [12425] = 2, + ACTIONS(1515), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1432), 29, + ACTIONS(1513), 29, sym__verbatim_begin, - sym_emphasis_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25782,17 +26522,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11990] = 2, - ACTIONS(1430), 6, + [12465] = 2, + ACTIONS(1480), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1428), 29, + ACTIONS(1478), 29, sym__verbatim_begin, - sym_emphasis_end, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25820,17 +26560,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12030] = 2, - ACTIONS(1512), 6, + [12505] = 2, + ACTIONS(1537), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1510), 29, + ACTIONS(1535), 29, sym__verbatim_begin, - sym_delete_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25858,15 +26598,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12070] = 2, - ACTIONS(1523), 6, + [12545] = 2, + ACTIONS(1442), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1521), 29, + ACTIONS(1440), 29, sym__verbatim_begin, sym_delete_end, anon_sym_LBRACE_, @@ -25896,17 +26636,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12110] = 2, - ACTIONS(1488), 6, + [12585] = 2, + ACTIONS(1521), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1486), 29, + ACTIONS(1519), 29, sym__verbatim_begin, - sym__bracketed_text_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25934,15 +26674,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12150] = 2, - ACTIONS(1416), 6, + [12625] = 2, + ACTIONS(1525), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1414), 29, + ACTIONS(1523), 29, sym__verbatim_begin, sym_delete_end, anon_sym_LBRACE_, @@ -25972,15 +26712,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12190] = 2, - ACTIONS(1422), 6, + [12665] = 2, + ACTIONS(1529), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1420), 29, + ACTIONS(1527), 29, sym__verbatim_begin, sym_delete_end, anon_sym_LBRACE_, @@ -26010,15 +26750,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12230] = 2, - ACTIONS(1426), 6, + [12705] = 2, + ACTIONS(1533), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1424), 29, + ACTIONS(1531), 29, sym__verbatim_begin, sym_delete_end, anon_sym_LBRACE_, @@ -26048,15 +26788,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12270] = 2, - ACTIONS(1430), 6, + [12745] = 2, + ACTIONS(1537), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1428), 29, + ACTIONS(1535), 29, sym__verbatim_begin, sym_delete_end, anon_sym_LBRACE_, @@ -26086,15 +26826,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12310] = 2, - ACTIONS(1434), 6, + [12785] = 2, + ACTIONS(1541), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1432), 29, + ACTIONS(1539), 29, sym__verbatim_begin, sym_delete_end, anon_sym_LBRACE_, @@ -26124,17 +26864,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12350] = 2, - ACTIONS(1438), 6, + [12825] = 2, + ACTIONS(1476), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1436), 29, + ACTIONS(1474), 29, sym__verbatim_begin, - sym_delete_end, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26162,17 +26902,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12390] = 2, - ACTIONS(1442), 6, + [12865] = 2, + ACTIONS(1533), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1440), 29, + ACTIONS(1531), 29, sym__verbatim_begin, - sym_delete_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26200,17 +26940,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12430] = 2, - ACTIONS(1484), 6, + [12905] = 2, + ACTIONS(1529), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1482), 29, + ACTIONS(1527), 29, sym__verbatim_begin, - sym__bracketed_text_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26238,15 +26978,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12470] = 2, - ACTIONS(1426), 6, + [12945] = 2, + ACTIONS(1525), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1424), 29, + ACTIONS(1523), 29, sym__verbatim_begin, sym_emphasis_end, anon_sym_LBRACE_, @@ -26276,17 +27016,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12510] = 2, - ACTIONS(1422), 6, + [12985] = 2, + ACTIONS(1545), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1420), 29, + ACTIONS(1543), 29, sym__verbatim_begin, - sym_emphasis_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26314,17 +27054,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12550] = 2, - ACTIONS(1416), 6, + [13025] = 2, + ACTIONS(1472), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1414), 29, + ACTIONS(1470), 29, sym__verbatim_begin, - sym_emphasis_end, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26352,15 +27092,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12590] = 2, - ACTIONS(1450), 6, + [13065] = 2, + ACTIONS(1448), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1448), 29, + ACTIONS(1446), 29, sym__verbatim_begin, sym_delete_end, anon_sym_LBRACE_, @@ -26390,17 +27130,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12630] = 2, - ACTIONS(1480), 6, + [13105] = 2, + ACTIONS(1452), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1478), 29, + ACTIONS(1450), 29, sym__verbatim_begin, - sym__bracketed_text_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26428,17 +27168,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12670] = 2, - ACTIONS(1458), 6, + [13145] = 2, + ACTIONS(1468), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1456), 29, + ACTIONS(1466), 29, sym__verbatim_begin, - sym_delete_end, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26466,15 +27206,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12710] = 2, - ACTIONS(1462), 6, + [13185] = 2, + ACTIONS(1460), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1460), 29, + ACTIONS(1458), 29, sym__verbatim_begin, sym_delete_end, anon_sym_LBRACE_, @@ -26504,15 +27244,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12750] = 2, - ACTIONS(1466), 6, + [13225] = 2, + ACTIONS(1464), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1464), 29, + ACTIONS(1462), 29, sym__verbatim_begin, sym_delete_end, anon_sym_LBRACE_, @@ -26542,17 +27282,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12790] = 2, - ACTIONS(1476), 6, + [13265] = 2, + ACTIONS(1468), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1474), 29, + ACTIONS(1466), 29, sym__verbatim_begin, - sym__bracketed_text_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26580,7 +27320,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12830] = 2, + [13305] = 2, ACTIONS(1472), 6, anon_sym_BSLASH, sym_en_dash, @@ -26618,7 +27358,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12870] = 2, + [13345] = 2, ACTIONS(1476), 6, anon_sym_BSLASH, sym_en_dash, @@ -26656,7 +27396,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12910] = 2, + [13385] = 2, ACTIONS(1480), 6, anon_sym_BSLASH, sym_en_dash, @@ -26694,15 +27434,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12950] = 2, - ACTIONS(1484), 6, + [13425] = 2, + ACTIONS(1438), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1482), 29, + ACTIONS(1436), 29, sym__verbatim_begin, sym_delete_end, anon_sym_LBRACE_, @@ -26732,15 +27472,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12990] = 2, - ACTIONS(1488), 6, + [13465] = 2, + ACTIONS(1484), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1486), 29, + ACTIONS(1482), 29, sym__verbatim_begin, sym_delete_end, anon_sym_LBRACE_, @@ -26770,15 +27510,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13030] = 2, - ACTIONS(1492), 6, + [13505] = 2, + ACTIONS(1488), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1490), 29, + ACTIONS(1486), 29, sym__verbatim_begin, sym_delete_end, anon_sym_LBRACE_, @@ -26808,15 +27548,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13070] = 2, - ACTIONS(1412), 6, + [13545] = 2, + ACTIONS(1492), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1410), 29, + ACTIONS(1490), 29, sym__verbatim_begin, sym_delete_end, anon_sym_LBRACE_, @@ -26846,7 +27586,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13110] = 2, + [13585] = 2, ACTIONS(1496), 6, anon_sym_BSLASH, sym_en_dash, @@ -26884,7 +27624,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13150] = 2, + [13625] = 2, ACTIONS(1500), 6, anon_sym_BSLASH, sym_en_dash, @@ -26922,17 +27662,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13190] = 2, - ACTIONS(1504), 6, + [13665] = 2, + ACTIONS(1464), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1502), 29, + ACTIONS(1462), 29, sym__verbatim_begin, - sym_delete_end, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26960,7 +27700,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13230] = 2, + [13705] = 2, ACTIONS(1508), 6, anon_sym_BSLASH, sym_en_dash, @@ -26998,17 +27738,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13270] = 2, - ACTIONS(1472), 6, + [13745] = 2, + ACTIONS(1521), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1470), 29, + ACTIONS(1519), 29, sym__verbatim_begin, - sym__bracketed_text_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27036,17 +27776,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13310] = 2, - ACTIONS(1516), 6, + [13785] = 2, + ACTIONS(1442), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1514), 29, + ACTIONS(1440), 29, sym__verbatim_begin, - sym_delete_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27074,15 +27814,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13350] = 2, - ACTIONS(1466), 6, + [13825] = 2, + ACTIONS(1460), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1464), 29, + ACTIONS(1458), 29, sym__verbatim_begin, sym__bracketed_text_end, anon_sym_LBRACE_, @@ -27112,15 +27852,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13390] = 2, - ACTIONS(1523), 6, + [13865] = 2, + ACTIONS(1515), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1521), 29, + ACTIONS(1513), 29, sym__verbatim_begin, sym_emphasis_end, anon_sym_LBRACE_, @@ -27150,17 +27890,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13430] = 2, - ACTIONS(1462), 6, + [13905] = 3, + ACTIONS(1573), 1, + sym__verbatim_begin, + ACTIONS(1286), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1460), 29, - sym__verbatim_begin, - sym__bracketed_text_end, + ACTIONS(1290), 28, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27179,6 +27919,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -27188,18 +27929,53 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13470] = 4, - ACTIONS(1549), 1, + [13947] = 2, + ACTIONS(1456), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, anon_sym_LBRACE, - STATE(421), 1, - sym_comment, - ACTIONS(1299), 5, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1454), 29, + sym__verbatim_begin, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_RBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + sym__whitespace1, + sym__newline, + [13987] = 2, + ACTIONS(1504), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1297), 28, + ACTIONS(1502), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -27219,6 +27995,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -27228,17 +28005,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13514] = 3, - ACTIONS(1551), 1, - sym__verbatim_begin, - ACTIONS(1279), 6, + [14027] = 2, + ACTIONS(1452), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1283), 28, + ACTIONS(1450), 29, + sym__verbatim_begin, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27257,7 +28034,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -27267,15 +28043,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13556] = 2, - ACTIONS(1446), 6, + [14067] = 4, + ACTIONS(1576), 1, + anon_sym_LBRACE, + STATE(451), 1, + sym_comment, + ACTIONS(1313), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1444), 29, + ACTIONS(1311), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -27295,7 +28074,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -27305,16 +28083,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13596] = 2, - ACTIONS(1454), 6, + [14111] = 2, + ACTIONS(1504), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1452), 29, + ACTIONS(1502), 29, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27333,7 +28112,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -27343,17 +28121,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13636] = 2, - ACTIONS(1454), 6, + [14151] = 2, + ACTIONS(1294), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1452), 29, + ACTIONS(1292), 29, sym__verbatim_begin, - sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27372,6 +28149,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -27381,17 +28159,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13676] = 2, - ACTIONS(1446), 6, + [14191] = 2, + ACTIONS(1515), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1444), 29, + ACTIONS(1513), 29, sym__verbatim_begin, - sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27410,6 +28187,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -27419,18 +28197,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13716] = 3, - ACTIONS(1554), 1, - sym__verbatim_begin, - ACTIONS(1279), 6, + [14231] = 2, + ACTIONS(1448), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1283), 28, - sym_emphasis_end, + ACTIONS(1446), 29, + sym__verbatim_begin, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27458,16 +28235,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13758] = 2, - ACTIONS(1512), 6, + [14271] = 2, + ACTIONS(1456), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1510), 29, + ACTIONS(1454), 29, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27486,7 +28264,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -27496,16 +28273,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13798] = 2, - ACTIONS(1523), 6, + [14311] = 2, + ACTIONS(1545), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1521), 29, + ACTIONS(1543), 29, sym__verbatim_begin, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27524,7 +28302,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -27534,17 +28311,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13838] = 2, - ACTIONS(1458), 6, + [14351] = 2, + ACTIONS(1521), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1456), 29, + ACTIONS(1519), 29, sym__verbatim_begin, - sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27563,6 +28339,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -27572,17 +28349,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13878] = 2, - ACTIONS(1523), 6, + [14391] = 2, + ACTIONS(1525), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1521), 29, + ACTIONS(1523), 29, sym__verbatim_begin, - sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27601,6 +28377,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -27610,15 +28387,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13918] = 2, - ACTIONS(1422), 6, + [14431] = 2, + ACTIONS(1529), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1420), 29, + ACTIONS(1527), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -27638,7 +28415,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, + anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -27648,15 +28425,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13958] = 2, - ACTIONS(1426), 6, + [14471] = 2, + ACTIONS(1533), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1424), 29, + ACTIONS(1531), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -27676,7 +28453,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, + anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -27686,15 +28463,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13998] = 2, - ACTIONS(1430), 6, + [14511] = 2, + ACTIONS(1537), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1428), 29, + ACTIONS(1535), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -27714,7 +28491,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, + anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -27724,15 +28501,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14038] = 2, - ACTIONS(1434), 6, + [14551] = 2, + ACTIONS(1541), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1432), 29, + ACTIONS(1539), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -27752,7 +28529,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, + anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -27762,16 +28539,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14078] = 2, - ACTIONS(1438), 6, + [14591] = 2, + ACTIONS(1545), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1436), 29, + ACTIONS(1543), 29, sym__verbatim_begin, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27790,7 +28568,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -27800,16 +28577,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14118] = 2, - ACTIONS(1442), 6, + [14631] = 3, + ACTIONS(1578), 1, + sym__verbatim_begin, + ACTIONS(1286), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1440), 29, - sym__verbatim_begin, + ACTIONS(1290), 28, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27828,7 +28607,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -27838,17 +28616,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14158] = 2, - ACTIONS(1450), 6, + [14673] = 2, + ACTIONS(1438), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1448), 29, + ACTIONS(1436), 29, sym__verbatim_begin, - sym__bracketed_text_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27876,15 +28654,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14198] = 2, - ACTIONS(1412), 6, + [14713] = 2, + ACTIONS(1484), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1410), 29, + ACTIONS(1482), 29, sym__verbatim_begin, ts_builtin_sym_end, anon_sym_LBRACE_, @@ -27914,17 +28692,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14238] = 2, - ACTIONS(1496), 6, + [14753] = 2, + ACTIONS(1545), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1494), 29, + ACTIONS(1543), 29, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27943,6 +28720,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -27952,15 +28730,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14278] = 2, - ACTIONS(1442), 6, + [14793] = 2, + ACTIONS(1541), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1440), 29, + ACTIONS(1539), 29, sym__verbatim_begin, sym__bracketed_text_end, anon_sym_LBRACE_, @@ -27990,15 +28768,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14318] = 2, - ACTIONS(1450), 6, + [14833] = 2, + ACTIONS(1448), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1448), 29, + ACTIONS(1446), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -28018,7 +28796,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, + anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -28028,17 +28806,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14358] = 2, - ACTIONS(1438), 6, + [14873] = 2, + ACTIONS(1452), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1436), 29, + ACTIONS(1450), 29, sym__verbatim_begin, - sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28057,6 +28834,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -28066,16 +28844,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14398] = 2, - ACTIONS(1458), 6, + [14913] = 2, + ACTIONS(1537), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1456), 29, + ACTIONS(1535), 29, sym__verbatim_begin, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28094,7 +28873,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -28104,15 +28882,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14438] = 2, - ACTIONS(1462), 6, + [14953] = 2, + ACTIONS(1460), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1460), 29, + ACTIONS(1458), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -28132,7 +28910,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, + anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -28142,15 +28920,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14478] = 2, - ACTIONS(1466), 6, + [14993] = 2, + ACTIONS(1464), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1464), 29, + ACTIONS(1462), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -28170,7 +28948,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, + anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -28180,17 +28958,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14518] = 2, - ACTIONS(1434), 6, + [15033] = 2, + ACTIONS(1468), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1432), 29, + ACTIONS(1466), 29, sym__verbatim_begin, - sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28209,6 +28986,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -28218,7 +28996,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14558] = 2, + [15073] = 2, ACTIONS(1472), 6, anon_sym_BSLASH, sym_en_dash, @@ -28246,7 +29024,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, + anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -28256,7 +29034,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14598] = 2, + [15113] = 2, ACTIONS(1476), 6, anon_sym_BSLASH, sym_en_dash, @@ -28284,7 +29062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, + anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -28294,7 +29072,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14638] = 2, + [15153] = 2, ACTIONS(1480), 6, anon_sym_BSLASH, sym_en_dash, @@ -28322,7 +29100,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, + anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -28332,15 +29110,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14678] = 2, - ACTIONS(1484), 6, + [15193] = 2, + ACTIONS(1438), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1482), 29, + ACTIONS(1436), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -28360,7 +29138,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, + anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -28370,15 +29148,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14718] = 2, - ACTIONS(1488), 6, + [15233] = 2, + ACTIONS(1484), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1486), 29, + ACTIONS(1482), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -28398,7 +29176,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, + anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -28408,15 +29186,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14758] = 2, - ACTIONS(1492), 6, + [15273] = 2, + ACTIONS(1488), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1490), 29, + ACTIONS(1486), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -28436,7 +29214,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, + anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -28446,15 +29224,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14798] = 2, - ACTIONS(1412), 6, + [15313] = 2, + ACTIONS(1492), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1410), 29, + ACTIONS(1490), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -28474,7 +29252,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, + anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -28484,7 +29262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14838] = 2, + [15353] = 2, ACTIONS(1496), 6, anon_sym_BSLASH, sym_en_dash, @@ -28512,7 +29290,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, + anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -28522,7 +29300,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14878] = 2, + [15393] = 2, ACTIONS(1500), 6, anon_sym_BSLASH, sym_en_dash, @@ -28550,7 +29328,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, + anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -28560,16 +29338,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14918] = 2, - ACTIONS(1504), 6, + [15433] = 2, + ACTIONS(1533), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1502), 29, + ACTIONS(1531), 29, sym__verbatim_begin, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28588,7 +29367,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -28598,7 +29376,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14958] = 2, + [15473] = 2, ACTIONS(1508), 6, anon_sym_BSLASH, sym_en_dash, @@ -28626,7 +29404,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, + anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -28636,15 +29414,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14998] = 2, - ACTIONS(1430), 6, + [15513] = 2, + ACTIONS(1529), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1428), 29, + ACTIONS(1527), 29, sym__verbatim_begin, sym__bracketed_text_end, anon_sym_LBRACE_, @@ -28674,16 +29452,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15038] = 2, - ACTIONS(1516), 6, + [15553] = 2, + ACTIONS(1525), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1514), 29, + ACTIONS(1523), 29, sym__verbatim_begin, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28702,7 +29481,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -28712,17 +29490,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15078] = 2, - ACTIONS(1426), 6, + [15593] = 2, + ACTIONS(1508), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1424), 29, + ACTIONS(1506), 29, sym__verbatim_begin, - sym__bracketed_text_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28750,17 +29528,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15118] = 2, - ACTIONS(1516), 6, + [15633] = 2, + ACTIONS(1521), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1514), 29, + ACTIONS(1519), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28788,17 +29566,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15158] = 2, - ACTIONS(1422), 6, + [15673] = 3, + ACTIONS(1581), 1, + sym__verbatim_begin, + ACTIONS(1286), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1420), 29, - sym__verbatim_begin, - sym__bracketed_text_end, + ACTIONS(1290), 28, + sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28826,17 +29605,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15198] = 2, - ACTIONS(1416), 6, + [15715] = 2, + ACTIONS(1456), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1414), 29, + ACTIONS(1454), 29, sym__verbatim_begin, - sym__bracketed_text_end, + sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28864,17 +29643,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15238] = 3, - ACTIONS(1557), 1, - sym__verbatim_begin, - ACTIONS(1279), 6, + [15755] = 2, + ACTIONS(1504), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1283), 28, + ACTIONS(1502), 29, + sym__verbatim_begin, sym__image_description_end, anon_sym_LBRACE_, anon_sym__, @@ -28903,17 +29681,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15280] = 2, - ACTIONS(1446), 6, + [15795] = 2, + ACTIONS(1442), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1444), 29, + ACTIONS(1440), 29, sym__verbatim_begin, - sym__image_description_end, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28941,17 +29719,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15320] = 2, - ACTIONS(1454), 6, + [15835] = 2, + ACTIONS(1488), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1452), 29, + ACTIONS(1486), 29, sym__verbatim_begin, - sym__image_description_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28979,17 +29757,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15360] = 2, - ACTIONS(1523), 6, + [15875] = 2, + ACTIONS(1294), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1521), 29, + ACTIONS(1292), 29, sym__verbatim_begin, - sym__bracketed_text_end, + sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29017,17 +29795,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15400] = 2, - ACTIONS(1512), 6, + [15915] = 2, + ACTIONS(1515), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1510), 29, + ACTIONS(1513), 29, sym__verbatim_begin, - sym__bracketed_text_end, + sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29055,17 +29833,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15440] = 2, - ACTIONS(1512), 6, + [15955] = 2, + ACTIONS(1515), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1510), 29, + ACTIONS(1513), 29, sym__verbatim_begin, - sym__image_description_end, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29093,17 +29871,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15480] = 2, - ACTIONS(1523), 6, + [15995] = 2, + ACTIONS(1294), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1521), 29, + ACTIONS(1292), 29, sym__verbatim_begin, - sym__image_description_end, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29131,17 +29909,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15520] = 2, - ACTIONS(1500), 6, + [16035] = 2, + ACTIONS(1442), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1498), 29, + ACTIONS(1440), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29169,15 +29947,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15560] = 2, - ACTIONS(1416), 6, + [16075] = 2, + ACTIONS(1521), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1414), 29, + ACTIONS(1519), 29, sym__verbatim_begin, sym__image_description_end, anon_sym_LBRACE_, @@ -29207,15 +29985,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15600] = 2, - ACTIONS(1422), 6, + [16115] = 2, + ACTIONS(1525), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1420), 29, + ACTIONS(1523), 29, sym__verbatim_begin, sym__image_description_end, anon_sym_LBRACE_, @@ -29245,15 +30023,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15640] = 2, - ACTIONS(1426), 6, + [16155] = 2, + ACTIONS(1529), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1424), 29, + ACTIONS(1527), 29, sym__verbatim_begin, sym__image_description_end, anon_sym_LBRACE_, @@ -29283,15 +30061,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15680] = 2, - ACTIONS(1430), 6, + [16195] = 2, + ACTIONS(1533), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1428), 29, + ACTIONS(1531), 29, sym__verbatim_begin, sym__image_description_end, anon_sym_LBRACE_, @@ -29321,15 +30099,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15720] = 2, - ACTIONS(1434), 6, + [16235] = 2, + ACTIONS(1537), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1432), 29, + ACTIONS(1535), 29, sym__verbatim_begin, sym__image_description_end, anon_sym_LBRACE_, @@ -29359,15 +30137,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15760] = 2, - ACTIONS(1438), 6, + [16275] = 2, + ACTIONS(1541), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1436), 29, + ACTIONS(1539), 29, sym__verbatim_begin, sym__image_description_end, anon_sym_LBRACE_, @@ -29397,17 +30175,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15800] = 2, - ACTIONS(1442), 6, + [16315] = 2, + ACTIONS(1492), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1440), 29, + ACTIONS(1490), 29, sym__verbatim_begin, - sym__image_description_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29435,15 +30213,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15840] = 2, - ACTIONS(1454), 6, + [16355] = 2, + ACTIONS(1504), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1452), 29, + ACTIONS(1502), 29, sym__verbatim_begin, sym__bracketed_text_end, anon_sym_LBRACE_, @@ -29473,15 +30251,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15880] = 2, - ACTIONS(1446), 6, + [16395] = 2, + ACTIONS(1456), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1444), 29, + ACTIONS(1454), 29, sym__verbatim_begin, sym__bracketed_text_end, anon_sym_LBRACE_, @@ -29511,17 +30289,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15920] = 3, - ACTIONS(1560), 1, + [16435] = 3, + ACTIONS(1584), 1, sym__verbatim_begin, - ACTIONS(1279), 6, + ACTIONS(1286), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1283), 28, + ACTIONS(1290), 28, sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, @@ -29550,17 +30328,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15962] = 2, - ACTIONS(1504), 6, + [16477] = 2, + ACTIONS(1545), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1502), 29, + ACTIONS(1543), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29588,17 +30366,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16002] = 2, - ACTIONS(1450), 6, + [16517] = 2, + ACTIONS(1496), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1448), 29, + ACTIONS(1494), 29, sym__verbatim_begin, - sym__image_description_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29626,17 +30404,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16042] = 2, - ACTIONS(1508), 6, + [16557] = 2, + ACTIONS(1448), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1506), 29, + ACTIONS(1446), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29664,15 +30442,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16082] = 2, - ACTIONS(1458), 6, + [16597] = 2, + ACTIONS(1452), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1456), 29, + ACTIONS(1450), 29, sym__verbatim_begin, sym__image_description_end, anon_sym_LBRACE_, @@ -29702,17 +30480,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16122] = 2, - ACTIONS(1462), 6, + [16637] = 2, + ACTIONS(1500), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1460), 29, + ACTIONS(1498), 29, sym__verbatim_begin, - sym__image_description_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29740,15 +30518,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16162] = 2, - ACTIONS(1466), 6, + [16677] = 2, + ACTIONS(1460), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1464), 29, + ACTIONS(1458), 29, sym__verbatim_begin, sym__image_description_end, anon_sym_LBRACE_, @@ -29778,18 +30556,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16202] = 3, - ACTIONS(1563), 1, - sym__verbatim_begin, - ACTIONS(1279), 6, + [16717] = 2, + ACTIONS(1464), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1283), 28, - ts_builtin_sym_end, + ACTIONS(1462), 29, + sym__verbatim_begin, + sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29817,15 +30594,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16244] = 2, - ACTIONS(1472), 6, + [16757] = 2, + ACTIONS(1468), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1470), 29, + ACTIONS(1466), 29, sym__verbatim_begin, sym__image_description_end, anon_sym_LBRACE_, @@ -29855,15 +30632,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16284] = 2, - ACTIONS(1476), 6, + [16797] = 2, + ACTIONS(1472), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1474), 29, + ACTIONS(1470), 29, sym__verbatim_begin, sym__image_description_end, anon_sym_LBRACE_, @@ -29893,15 +30670,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16324] = 2, - ACTIONS(1480), 6, + [16837] = 2, + ACTIONS(1476), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1478), 29, + ACTIONS(1474), 29, sym__verbatim_begin, sym__image_description_end, anon_sym_LBRACE_, @@ -29931,15 +30708,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16364] = 2, - ACTIONS(1484), 6, + [16877] = 2, + ACTIONS(1480), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1482), 29, + ACTIONS(1478), 29, sym__verbatim_begin, sym__image_description_end, anon_sym_LBRACE_, @@ -29969,15 +30746,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16404] = 2, - ACTIONS(1488), 6, + [16917] = 2, + ACTIONS(1438), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1486), 29, + ACTIONS(1436), 29, sym__verbatim_begin, sym__image_description_end, anon_sym_LBRACE_, @@ -30007,15 +30784,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16444] = 2, - ACTIONS(1492), 6, + [16957] = 2, + ACTIONS(1484), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1490), 29, + ACTIONS(1482), 29, sym__verbatim_begin, sym__image_description_end, anon_sym_LBRACE_, @@ -30045,15 +30822,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16484] = 2, - ACTIONS(1412), 6, + [16997] = 2, + ACTIONS(1488), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1410), 29, + ACTIONS(1486), 29, sym__verbatim_begin, sym__image_description_end, anon_sym_LBRACE_, @@ -30083,15 +30860,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16524] = 2, - ACTIONS(1496), 6, + [17037] = 2, + ACTIONS(1492), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1494), 29, + ACTIONS(1490), 29, sym__verbatim_begin, sym__image_description_end, anon_sym_LBRACE_, @@ -30121,15 +30898,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16564] = 2, - ACTIONS(1500), 6, + [17077] = 2, + ACTIONS(1496), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1498), 29, + ACTIONS(1494), 29, sym__verbatim_begin, sym__image_description_end, anon_sym_LBRACE_, @@ -30159,15 +30936,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16604] = 2, - ACTIONS(1504), 6, + [17117] = 2, + ACTIONS(1500), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1502), 29, + ACTIONS(1498), 29, sym__verbatim_begin, sym__image_description_end, anon_sym_LBRACE_, @@ -30197,17 +30974,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16644] = 2, - ACTIONS(1508), 6, + [17157] = 3, + ACTIONS(1587), 1, + sym__verbatim_begin, + ACTIONS(1286), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1506), 29, - sym__verbatim_begin, - sym__image_description_end, + ACTIONS(1290), 28, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30235,15 +31013,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16684] = 2, - ACTIONS(1516), 6, + [17199] = 2, + ACTIONS(1508), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1514), 29, + ACTIONS(1506), 29, sym__verbatim_begin, sym__image_description_end, anon_sym_LBRACE_, @@ -30273,15 +31051,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16724] = 2, - ACTIONS(1442), 6, + [17239] = 2, + ACTIONS(1537), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1440), 28, + ACTIONS(1535), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -30310,16 +31088,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16763] = 2, - ACTIONS(1568), 5, + [17278] = 3, + ACTIONS(1590), 1, + sym_emphasis_end, + ACTIONS(1313), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1566), 29, + ACTIONS(1311), 28, sym__verbatim_begin, - sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30347,16 +31126,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16802] = 2, - ACTIONS(1572), 5, + [17319] = 2, + ACTIONS(1594), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1570), 29, + ACTIONS(1592), 29, sym__verbatim_begin, - sym_strong_end, + sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30384,14 +31163,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16841] = 2, - ACTIONS(1576), 5, + [17358] = 2, + ACTIONS(1598), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1574), 29, + ACTIONS(1596), 29, sym__verbatim_begin, sym__image_description_end, anon_sym_LBRACE_, @@ -30421,14 +31200,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16880] = 2, - ACTIONS(1576), 5, + [17397] = 2, + ACTIONS(1594), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1574), 29, + ACTIONS(1592), 29, sym__verbatim_begin, sym_strong_end, anon_sym_LBRACE_, @@ -30458,14 +31237,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16919] = 2, - ACTIONS(1580), 5, + [17436] = 2, + ACTIONS(1602), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1578), 29, + ACTIONS(1600), 29, sym__verbatim_begin, sym_strong_end, anon_sym_LBRACE_, @@ -30495,16 +31274,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16958] = 2, - ACTIONS(1568), 5, + [17475] = 2, + ACTIONS(1606), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1566), 29, + ACTIONS(1604), 29, sym__verbatim_begin, - sym_strong_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30532,14 +31311,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16997] = 2, - ACTIONS(1572), 5, + [17514] = 2, + ACTIONS(1610), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1570), 29, + ACTIONS(1608), 29, sym__verbatim_begin, sym__image_description_end, anon_sym_LBRACE_, @@ -30569,16 +31348,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17036] = 2, - ACTIONS(1584), 5, + [17553] = 2, + ACTIONS(1602), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1582), 29, + ACTIONS(1600), 29, sym__verbatim_begin, - sym__image_description_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30606,16 +31385,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17075] = 2, - ACTIONS(1568), 5, + [17592] = 2, + ACTIONS(1606), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1566), 29, + ACTIONS(1604), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30643,16 +31422,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17114] = 2, - ACTIONS(1584), 5, + [17631] = 2, + ACTIONS(1606), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1582), 29, + ACTIONS(1604), 29, sym__verbatim_begin, - sym_superscript_end, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30680,16 +31459,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17153] = 2, - ACTIONS(1584), 5, + [17670] = 2, + ACTIONS(1610), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1582), 29, + ACTIONS(1608), 29, sym__verbatim_begin, - sym__bracketed_text_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30717,16 +31496,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17192] = 2, - ACTIONS(1584), 5, + [17709] = 2, + ACTIONS(1598), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1582), 29, + ACTIONS(1596), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30754,16 +31533,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17231] = 2, - ACTIONS(1572), 5, + [17748] = 2, + ACTIONS(1606), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1570), 29, + ACTIONS(1604), 29, sym__verbatim_begin, - sym_superscript_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30791,14 +31570,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17270] = 2, - ACTIONS(1576), 5, + [17787] = 2, + ACTIONS(1594), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1574), 29, + ACTIONS(1592), 29, sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, @@ -30828,15 +31607,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17309] = 2, - ACTIONS(1568), 5, + [17826] = 2, + ACTIONS(1602), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1566), 29, + ACTIONS(1600), 29, sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30855,7 +31635,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -30865,14 +31644,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17348] = 2, - ACTIONS(1580), 5, + [17865] = 2, + ACTIONS(1602), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1578), 29, + ACTIONS(1600), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -30892,7 +31671,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, + anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -30902,14 +31681,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17387] = 2, - ACTIONS(1576), 5, + [17904] = 2, + ACTIONS(1594), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1574), 29, + ACTIONS(1592), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -30929,7 +31708,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, + anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -30939,16 +31718,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17426] = 2, - ACTIONS(1580), 5, + [17943] = 2, + ACTIONS(1598), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1578), 29, + ACTIONS(1596), 29, sym__verbatim_begin, - sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30967,6 +31745,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -30976,14 +31755,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17465] = 2, - ACTIONS(1572), 5, + [17982] = 2, + ACTIONS(1610), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1570), 29, + ACTIONS(1608), 29, sym__verbatim_begin, sym__bracketed_text_end, anon_sym_LBRACE_, @@ -31013,14 +31792,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17504] = 2, - ACTIONS(1584), 5, + [18021] = 2, + ACTIONS(1598), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1582), 29, + ACTIONS(1596), 29, sym__verbatim_begin, sym_strong_end, anon_sym_LBRACE_, @@ -31050,16 +31829,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17543] = 2, - ACTIONS(1568), 5, + [18060] = 2, + ACTIONS(1610), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1566), 29, + ACTIONS(1608), 29, sym__verbatim_begin, - sym_superscript_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31087,14 +31866,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17582] = 2, - ACTIONS(1572), 5, + [18099] = 2, + ACTIONS(1610), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1570), 29, + ACTIONS(1608), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -31114,7 +31893,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, + anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -31124,14 +31903,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17621] = 2, - ACTIONS(1576), 5, + [18138] = 2, + ACTIONS(1598), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1574), 29, + ACTIONS(1596), 29, sym__verbatim_begin, sym__bracketed_text_end, anon_sym_LBRACE_, @@ -31161,14 +31940,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17660] = 2, - ACTIONS(1584), 5, + [18177] = 2, + ACTIONS(1606), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1582), 29, + ACTIONS(1604), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -31188,7 +31967,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK2, + anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -31198,16 +31977,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17699] = 2, - ACTIONS(1576), 5, + [18216] = 2, + ACTIONS(1606), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1574), 29, + ACTIONS(1604), 29, sym__verbatim_begin, - sym_emphasis_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31235,16 +32014,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17738] = 2, - ACTIONS(1584), 5, + [18255] = 2, + ACTIONS(1594), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1582), 29, + ACTIONS(1592), 29, sym__verbatim_begin, - sym_emphasis_end, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31272,16 +32051,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17777] = 2, - ACTIONS(1580), 5, + [18294] = 2, + ACTIONS(1606), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1578), 29, + ACTIONS(1604), 29, sym__verbatim_begin, - sym__bracketed_text_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31309,14 +32088,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17816] = 2, - ACTIONS(1568), 5, + [18333] = 2, + ACTIONS(1602), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1566), 29, + ACTIONS(1600), 29, sym__verbatim_begin, sym_delete_end, anon_sym_LBRACE_, @@ -31346,14 +32125,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17855] = 2, - ACTIONS(1580), 5, + [18372] = 2, + ACTIONS(1594), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1578), 29, + ACTIONS(1592), 29, sym__verbatim_begin, sym_delete_end, anon_sym_LBRACE_, @@ -31383,14 +32162,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17894] = 2, - ACTIONS(1576), 5, + [18411] = 2, + ACTIONS(1598), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1574), 29, + ACTIONS(1596), 29, sym__verbatim_begin, sym_delete_end, anon_sym_LBRACE_, @@ -31420,14 +32199,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17933] = 2, - ACTIONS(1572), 5, + [18450] = 2, + ACTIONS(1610), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1570), 29, + ACTIONS(1608), 29, sym__verbatim_begin, sym_delete_end, anon_sym_LBRACE_, @@ -31457,14 +32236,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17972] = 2, - ACTIONS(1584), 5, + [18489] = 2, + ACTIONS(1606), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1582), 29, + ACTIONS(1604), 29, sym__verbatim_begin, sym_delete_end, anon_sym_LBRACE_, @@ -31494,14 +32273,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18011] = 2, - ACTIONS(1572), 5, + [18528] = 2, + ACTIONS(1610), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1570), 29, + ACTIONS(1608), 29, sym__verbatim_begin, sym_emphasis_end, anon_sym_LBRACE_, @@ -31531,16 +32310,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18050] = 2, - ACTIONS(1568), 5, + [18567] = 2, + ACTIONS(1598), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1566), 29, + ACTIONS(1596), 29, sym__verbatim_begin, - sym_insert_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31568,16 +32347,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18089] = 2, - ACTIONS(1580), 5, + [18606] = 3, + ACTIONS(1590), 1, + sym_strong_end, + ACTIONS(1313), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1578), 29, + ACTIONS(1311), 28, sym__verbatim_begin, - sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31605,14 +32385,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18128] = 2, - ACTIONS(1576), 5, + [18647] = 2, + ACTIONS(1602), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1574), 29, + ACTIONS(1600), 29, sym__verbatim_begin, sym_insert_end, anon_sym_LBRACE_, @@ -31642,17 +32422,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18167] = 3, - ACTIONS(1586), 1, - sym_strong_end, - ACTIONS(1299), 5, + [18686] = 2, + ACTIONS(1594), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1297), 28, + ACTIONS(1592), 29, sym__verbatim_begin, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31680,14 +32459,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18208] = 2, - ACTIONS(1572), 5, + [18725] = 2, + ACTIONS(1598), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1570), 29, + ACTIONS(1596), 29, sym__verbatim_begin, sym_insert_end, anon_sym_LBRACE_, @@ -31717,14 +32496,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18247] = 2, - ACTIONS(1568), 5, + [18764] = 2, + ACTIONS(1602), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1566), 29, + ACTIONS(1600), 29, sym__verbatim_begin, sym__bracketed_text_end, anon_sym_LBRACE_, @@ -31754,16 +32533,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18286] = 2, - ACTIONS(1584), 5, + [18803] = 2, + ACTIONS(1594), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1582), 29, + ACTIONS(1592), 29, sym__verbatim_begin, - sym_insert_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31791,16 +32570,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18325] = 2, - ACTIONS(1580), 5, + [18842] = 2, + ACTIONS(1610), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1578), 29, + ACTIONS(1608), 29, sym__verbatim_begin, - sym_emphasis_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31828,17 +32607,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18364] = 3, - ACTIONS(1588), 1, - sym_strong_end, - ACTIONS(1299), 5, + [18881] = 2, + ACTIONS(1606), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1297), 28, + ACTIONS(1604), 29, sym__verbatim_begin, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31866,16 +32644,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18405] = 2, - ACTIONS(1568), 5, + [18920] = 3, + ACTIONS(1612), 1, + sym_strong_end, + ACTIONS(1313), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1566), 29, + ACTIONS(1311), 28, sym__verbatim_begin, - sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31903,16 +32682,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18444] = 2, - ACTIONS(1584), 5, + [18961] = 2, + ACTIONS(1602), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1582), 29, + ACTIONS(1600), 29, sym__verbatim_begin, - sym_subscript_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31940,17 +32719,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18483] = 3, - ACTIONS(1590), 1, + [19000] = 3, + ACTIONS(1614), 1, sym__verbatim_begin, - ACTIONS(1279), 6, + ACTIONS(1286), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1283), 27, + ACTIONS(1290), 27, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31978,15 +32757,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18524] = 2, - ACTIONS(1446), 6, + [19041] = 2, + ACTIONS(1456), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1444), 28, + ACTIONS(1454), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32015,15 +32794,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18563] = 2, - ACTIONS(1454), 6, + [19080] = 2, + ACTIONS(1504), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1452), 28, + ACTIONS(1502), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32052,16 +32831,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18602] = 2, - ACTIONS(1580), 5, + [19119] = 2, + ACTIONS(1610), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1578), 29, + ACTIONS(1608), 29, sym__verbatim_begin, - sym_highlighted_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32089,15 +32868,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18641] = 2, - ACTIONS(1512), 6, + [19158] = 2, + ACTIONS(1294), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1510), 28, + ACTIONS(1292), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32126,15 +32905,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18680] = 2, - ACTIONS(1523), 6, + [19197] = 2, + ACTIONS(1515), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1521), 28, + ACTIONS(1513), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32163,16 +32942,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18719] = 2, - ACTIONS(1572), 5, + [19236] = 2, + ACTIONS(1606), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1570), 29, + ACTIONS(1604), 29, sym__verbatim_begin, - sym_subscript_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32200,16 +32979,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18758] = 2, - ACTIONS(1416), 6, + [19275] = 2, + ACTIONS(1594), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1414), 28, + ACTIONS(1592), 29, sym__verbatim_begin, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32237,15 +33016,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18797] = 2, - ACTIONS(1422), 6, + [19314] = 2, + ACTIONS(1442), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1420), 28, + ACTIONS(1440), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32274,15 +33053,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18836] = 2, - ACTIONS(1426), 6, + [19353] = 2, + ACTIONS(1521), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1424), 28, + ACTIONS(1519), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32311,15 +33090,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18875] = 2, - ACTIONS(1430), 6, + [19392] = 2, + ACTIONS(1525), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1428), 28, + ACTIONS(1523), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32348,15 +33127,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18914] = 2, - ACTIONS(1434), 6, + [19431] = 2, + ACTIONS(1529), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1432), 28, + ACTIONS(1527), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32385,15 +33164,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18953] = 2, - ACTIONS(1438), 6, + [19470] = 2, + ACTIONS(1533), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1436), 28, + ACTIONS(1531), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32422,16 +33201,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18992] = 2, - ACTIONS(1580), 5, + [19509] = 2, + ACTIONS(1598), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1578), 29, + ACTIONS(1596), 29, sym__verbatim_begin, - sym__image_description_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32459,16 +33238,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19031] = 2, - ACTIONS(1572), 5, + [19548] = 2, + ACTIONS(1500), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1570), 29, + ACTIONS(1498), 28, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32496,14 +33275,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19070] = 2, - ACTIONS(1576), 5, + [19587] = 2, + ACTIONS(1610), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1574), 29, + ACTIONS(1608), 29, sym__verbatim_begin, ts_builtin_sym_end, anon_sym_LBRACE_, @@ -32533,14 +33312,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19109] = 2, - ACTIONS(1572), 5, + [19626] = 2, + ACTIONS(1598), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1570), 29, + ACTIONS(1596), 29, sym__verbatim_begin, sym_highlighted_end, anon_sym_LBRACE_, @@ -32570,16 +33349,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19148] = 2, - ACTIONS(1450), 6, + [19665] = 2, + ACTIONS(1610), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1448), 28, + ACTIONS(1608), 29, sym__verbatim_begin, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32607,16 +33386,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19187] = 2, - ACTIONS(1576), 5, + [19704] = 2, + ACTIONS(1545), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1574), 29, + ACTIONS(1543), 28, sym__verbatim_begin, - sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32644,16 +33423,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19226] = 2, - ACTIONS(1458), 6, + [19743] = 2, + ACTIONS(1594), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1456), 28, + ACTIONS(1592), 29, sym__verbatim_begin, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32681,15 +33460,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19265] = 2, - ACTIONS(1462), 6, + [19782] = 2, + ACTIONS(1448), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1460), 28, + ACTIONS(1446), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32718,15 +33497,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19304] = 2, - ACTIONS(1466), 6, + [19821] = 2, + ACTIONS(1452), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1464), 28, + ACTIONS(1450), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32755,16 +33534,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19343] = 2, - ACTIONS(1580), 5, + [19860] = 2, + ACTIONS(1598), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1578), 29, + ACTIONS(1596), 29, sym__verbatim_begin, - sym_subscript_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32792,15 +33571,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19382] = 2, - ACTIONS(1472), 6, + [19899] = 2, + ACTIONS(1460), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1470), 28, + ACTIONS(1458), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32829,15 +33608,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19421] = 2, - ACTIONS(1476), 6, + [19938] = 2, + ACTIONS(1464), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1474), 28, + ACTIONS(1462), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32866,15 +33645,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19460] = 2, - ACTIONS(1480), 6, + [19977] = 2, + ACTIONS(1468), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1478), 28, + ACTIONS(1466), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32903,15 +33682,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19499] = 2, - ACTIONS(1484), 6, + [20016] = 2, + ACTIONS(1472), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1482), 28, + ACTIONS(1470), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32940,15 +33719,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19538] = 2, - ACTIONS(1488), 6, + [20055] = 2, + ACTIONS(1476), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1486), 28, + ACTIONS(1474), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32977,15 +33756,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19577] = 2, - ACTIONS(1492), 6, + [20094] = 2, + ACTIONS(1480), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1490), 28, + ACTIONS(1478), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -33014,15 +33793,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19616] = 2, - ACTIONS(1412), 6, + [20133] = 2, + ACTIONS(1438), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1410), 28, + ACTIONS(1436), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -33051,15 +33830,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19655] = 2, - ACTIONS(1496), 6, + [20172] = 2, + ACTIONS(1484), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1494), 28, + ACTIONS(1482), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -33088,15 +33867,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19694] = 2, - ACTIONS(1500), 6, + [20211] = 2, + ACTIONS(1488), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1498), 28, + ACTIONS(1486), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -33125,15 +33904,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19733] = 2, - ACTIONS(1504), 6, + [20250] = 2, + ACTIONS(1492), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1502), 28, + ACTIONS(1490), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -33162,15 +33941,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19772] = 2, - ACTIONS(1508), 6, + [20289] = 2, + ACTIONS(1496), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1506), 28, + ACTIONS(1494), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -33199,16 +33978,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19811] = 3, - ACTIONS(1586), 1, - sym_emphasis_end, - ACTIONS(1299), 5, + [20328] = 2, + ACTIONS(1541), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1297), 28, + ACTIONS(1539), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -33237,16 +34015,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19852] = 2, - ACTIONS(1516), 6, + [20367] = 2, + ACTIONS(1602), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1514), 28, + ACTIONS(1600), 29, sym__verbatim_begin, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33274,16 +34052,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19891] = 3, - ACTIONS(1588), 1, - sym_emphasis_end, - ACTIONS(1299), 5, + [20406] = 2, + ACTIONS(1508), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, + anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1297), 28, + ACTIONS(1506), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -33312,16 +34089,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19932] = 2, - ACTIONS(1584), 5, + [20445] = 3, + ACTIONS(1612), 1, + sym_emphasis_end, + ACTIONS(1313), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1582), 29, + ACTIONS(1311), 28, sym__verbatim_begin, - sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33349,14 +34127,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19971] = 2, - ACTIONS(1568), 5, + [20486] = 2, + ACTIONS(1602), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1566), 29, + ACTIONS(1600), 29, sym__verbatim_begin, sym_emphasis_end, anon_sym_LBRACE_, @@ -33386,16 +34164,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [20010] = 2, - ACTIONS(1568), 5, + [20525] = 2, + ACTIONS(1606), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1566), 29, + ACTIONS(1604), 29, sym__verbatim_begin, - sym_subscript_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33423,16 +34201,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [20049] = 2, - ACTIONS(1576), 5, + [20564] = 2, + ACTIONS(1594), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1574), 29, + ACTIONS(1592), 29, sym__verbatim_begin, - sym_highlighted_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33460,16 +34238,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [20088] = 2, - ACTIONS(1580), 5, + [20603] = 2, + ACTIONS(1602), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1578), 29, + ACTIONS(1600), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33497,14 +34275,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [20127] = 2, - ACTIONS(1568), 5, + [20642] = 2, + ACTIONS(1594), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1566), 28, + ACTIONS(1592), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -33533,14 +34311,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [20165] = 2, - ACTIONS(1584), 5, + [20680] = 2, + ACTIONS(1610), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1582), 28, + ACTIONS(1608), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -33569,14 +34347,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [20203] = 2, - ACTIONS(1572), 5, + [20718] = 2, + ACTIONS(1606), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1570), 28, + ACTIONS(1604), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -33605,14 +34383,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [20241] = 2, - ACTIONS(1580), 5, + [20756] = 2, + ACTIONS(1602), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1578), 28, + ACTIONS(1600), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -33641,14 +34419,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [20279] = 2, - ACTIONS(1576), 5, + [20794] = 2, + ACTIONS(1598), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1574), 28, + ACTIONS(1596), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -33677,558 +34455,558 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [20317] = 9, - ACTIONS(1593), 1, + [20832] = 9, + ACTIONS(1617), 1, sym__id, - ACTIONS(1595), 1, + ACTIONS(1619), 1, anon_sym_PERCENT, - ACTIONS(1599), 1, + ACTIONS(1623), 1, anon_sym_DOT, - ACTIONS(1601), 1, + ACTIONS(1625), 1, sym__inline_attribute_end, - STATE(627), 1, + STATE(641), 1, aux_sym_inline_attribute_repeat1, - STATE(645), 1, + STATE(658), 1, sym__comment_with_newline, - STATE(1045), 1, + STATE(1056), 1, sym_key, - STATE(646), 2, + STATE(657), 2, sym_class, sym_key_value, - ACTIONS(1597), 3, + ACTIONS(1621), 3, sym__whitespace1, sym__newline, sym_identifier, - [20348] = 9, - ACTIONS(1593), 1, + [20863] = 9, + ACTIONS(1627), 1, sym__id, - ACTIONS(1595), 1, + ACTIONS(1630), 1, anon_sym_PERCENT, - ACTIONS(1599), 1, + ACTIONS(1636), 1, anon_sym_DOT, - ACTIONS(1603), 1, + ACTIONS(1639), 1, sym__inline_attribute_end, - STATE(617), 1, + STATE(630), 1, aux_sym_inline_attribute_repeat1, - STATE(645), 1, + STATE(658), 1, sym__comment_with_newline, - STATE(1045), 1, + STATE(1056), 1, sym_key, - STATE(646), 2, + STATE(657), 2, sym_class, sym_key_value, - ACTIONS(1597), 3, + ACTIONS(1633), 3, sym__whitespace1, sym__newline, sym_identifier, - [20379] = 9, - ACTIONS(1593), 1, + [20894] = 9, + ACTIONS(1617), 1, sym__id, - ACTIONS(1595), 1, + ACTIONS(1619), 1, anon_sym_PERCENT, - ACTIONS(1599), 1, + ACTIONS(1623), 1, anon_sym_DOT, - ACTIONS(1605), 1, + ACTIONS(1641), 1, sym__inline_attribute_end, - STATE(631), 1, + STATE(630), 1, aux_sym_inline_attribute_repeat1, - STATE(645), 1, + STATE(658), 1, sym__comment_with_newline, - STATE(1045), 1, + STATE(1056), 1, sym_key, - STATE(646), 2, + STATE(657), 2, sym_class, sym_key_value, - ACTIONS(1597), 3, + ACTIONS(1621), 3, sym__whitespace1, sym__newline, sym_identifier, - [20410] = 9, - ACTIONS(1593), 1, + [20925] = 9, + ACTIONS(1617), 1, sym__id, - ACTIONS(1595), 1, + ACTIONS(1619), 1, anon_sym_PERCENT, - ACTIONS(1599), 1, + ACTIONS(1623), 1, anon_sym_DOT, - ACTIONS(1607), 1, + ACTIONS(1643), 1, sym__inline_attribute_end, - STATE(625), 1, + STATE(631), 1, aux_sym_inline_attribute_repeat1, - STATE(645), 1, + STATE(658), 1, sym__comment_with_newline, - STATE(1045), 1, + STATE(1056), 1, sym_key, - STATE(646), 2, + STATE(657), 2, sym_class, sym_key_value, - ACTIONS(1597), 3, + ACTIONS(1621), 3, sym__whitespace1, sym__newline, sym_identifier, - [20441] = 9, - ACTIONS(1593), 1, + [20956] = 9, + ACTIONS(1617), 1, sym__id, - ACTIONS(1595), 1, + ACTIONS(1619), 1, anon_sym_PERCENT, - ACTIONS(1599), 1, + ACTIONS(1623), 1, anon_sym_DOT, - ACTIONS(1609), 1, + ACTIONS(1645), 1, sym__inline_attribute_end, - STATE(630), 1, - aux_sym_inline_attribute_repeat1, STATE(645), 1, + aux_sym_inline_attribute_repeat1, + STATE(658), 1, sym__comment_with_newline, - STATE(1045), 1, + STATE(1056), 1, sym_key, - STATE(646), 2, + STATE(657), 2, sym_class, sym_key_value, - ACTIONS(1597), 3, + ACTIONS(1621), 3, sym__whitespace1, sym__newline, sym_identifier, - [20472] = 9, - ACTIONS(1593), 1, + [20987] = 9, + ACTIONS(1617), 1, sym__id, - ACTIONS(1595), 1, + ACTIONS(1619), 1, anon_sym_PERCENT, - ACTIONS(1599), 1, + ACTIONS(1623), 1, anon_sym_DOT, - ACTIONS(1611), 1, + ACTIONS(1647), 1, sym__inline_attribute_end, - STATE(627), 1, + STATE(637), 1, aux_sym_inline_attribute_repeat1, - STATE(645), 1, + STATE(658), 1, sym__comment_with_newline, - STATE(1045), 1, + STATE(1056), 1, sym_key, - STATE(646), 2, + STATE(657), 2, sym_class, sym_key_value, - ACTIONS(1597), 3, + ACTIONS(1621), 3, sym__whitespace1, sym__newline, sym_identifier, - [20503] = 9, - ACTIONS(1593), 1, + [21018] = 9, + ACTIONS(1617), 1, sym__id, - ACTIONS(1595), 1, + ACTIONS(1619), 1, anon_sym_PERCENT, - ACTIONS(1599), 1, + ACTIONS(1623), 1, anon_sym_DOT, - ACTIONS(1613), 1, + ACTIONS(1649), 1, sym__inline_attribute_end, - STATE(622), 1, + STATE(630), 1, aux_sym_inline_attribute_repeat1, - STATE(645), 1, + STATE(658), 1, sym__comment_with_newline, - STATE(1045), 1, + STATE(1056), 1, sym_key, - STATE(646), 2, + STATE(657), 2, sym_class, sym_key_value, - ACTIONS(1597), 3, + ACTIONS(1621), 3, sym__whitespace1, sym__newline, sym_identifier, - [20534] = 9, - ACTIONS(1593), 1, + [21049] = 9, + ACTIONS(1617), 1, sym__id, - ACTIONS(1595), 1, + ACTIONS(1619), 1, anon_sym_PERCENT, - ACTIONS(1599), 1, + ACTIONS(1623), 1, anon_sym_DOT, - ACTIONS(1615), 1, + ACTIONS(1651), 1, sym__inline_attribute_end, - STATE(627), 1, + STATE(635), 1, aux_sym_inline_attribute_repeat1, - STATE(645), 1, + STATE(658), 1, sym__comment_with_newline, - STATE(1045), 1, + STATE(1056), 1, sym_key, - STATE(646), 2, + STATE(657), 2, sym_class, sym_key_value, - ACTIONS(1597), 3, + ACTIONS(1621), 3, sym__whitespace1, sym__newline, sym_identifier, - [20565] = 9, - ACTIONS(1593), 1, + [21080] = 9, + ACTIONS(1617), 1, sym__id, - ACTIONS(1595), 1, + ACTIONS(1619), 1, anon_sym_PERCENT, - ACTIONS(1599), 1, + ACTIONS(1623), 1, anon_sym_DOT, - ACTIONS(1617), 1, + ACTIONS(1653), 1, sym__inline_attribute_end, - STATE(627), 1, + STATE(630), 1, aux_sym_inline_attribute_repeat1, - STATE(645), 1, + STATE(658), 1, sym__comment_with_newline, - STATE(1045), 1, + STATE(1056), 1, sym_key, - STATE(646), 2, + STATE(657), 2, sym_class, sym_key_value, - ACTIONS(1597), 3, + ACTIONS(1621), 3, sym__whitespace1, sym__newline, sym_identifier, - [20596] = 9, - ACTIONS(1593), 1, + [21111] = 9, + ACTIONS(1617), 1, sym__id, - ACTIONS(1595), 1, + ACTIONS(1619), 1, anon_sym_PERCENT, - ACTIONS(1599), 1, + ACTIONS(1623), 1, anon_sym_DOT, - ACTIONS(1619), 1, + ACTIONS(1655), 1, sym__inline_attribute_end, - STATE(627), 1, + STATE(630), 1, aux_sym_inline_attribute_repeat1, - STATE(645), 1, + STATE(658), 1, sym__comment_with_newline, - STATE(1045), 1, + STATE(1056), 1, sym_key, - STATE(646), 2, + STATE(657), 2, sym_class, sym_key_value, - ACTIONS(1597), 3, + ACTIONS(1621), 3, sym__whitespace1, sym__newline, sym_identifier, - [20627] = 9, - ACTIONS(1621), 1, + [21142] = 9, + ACTIONS(1617), 1, sym__id, - ACTIONS(1624), 1, + ACTIONS(1619), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, + ACTIONS(1623), 1, anon_sym_DOT, - ACTIONS(1633), 1, + ACTIONS(1657), 1, sym__inline_attribute_end, - STATE(627), 1, + STATE(640), 1, aux_sym_inline_attribute_repeat1, - STATE(645), 1, + STATE(658), 1, sym__comment_with_newline, - STATE(1045), 1, + STATE(1056), 1, sym_key, - STATE(646), 2, + STATE(657), 2, sym_class, sym_key_value, - ACTIONS(1627), 3, + ACTIONS(1621), 3, sym__whitespace1, sym__newline, sym_identifier, - [20658] = 9, - ACTIONS(1593), 1, + [21173] = 9, + ACTIONS(1617), 1, sym__id, - ACTIONS(1595), 1, + ACTIONS(1619), 1, anon_sym_PERCENT, - ACTIONS(1599), 1, + ACTIONS(1623), 1, anon_sym_DOT, - ACTIONS(1635), 1, + ACTIONS(1659), 1, sym__inline_attribute_end, - STATE(627), 1, + STATE(630), 1, aux_sym_inline_attribute_repeat1, - STATE(645), 1, + STATE(658), 1, sym__comment_with_newline, - STATE(1045), 1, + STATE(1056), 1, sym_key, - STATE(646), 2, + STATE(657), 2, sym_class, sym_key_value, - ACTIONS(1597), 3, + ACTIONS(1621), 3, sym__whitespace1, sym__newline, sym_identifier, - [20689] = 9, - ACTIONS(1593), 1, + [21204] = 9, + ACTIONS(1617), 1, sym__id, - ACTIONS(1595), 1, + ACTIONS(1619), 1, anon_sym_PERCENT, - ACTIONS(1599), 1, + ACTIONS(1623), 1, anon_sym_DOT, - ACTIONS(1637), 1, + ACTIONS(1661), 1, sym__inline_attribute_end, - STATE(626), 1, + STATE(630), 1, aux_sym_inline_attribute_repeat1, - STATE(645), 1, + STATE(658), 1, sym__comment_with_newline, - STATE(1045), 1, + STATE(1056), 1, sym_key, - STATE(646), 2, + STATE(657), 2, sym_class, sym_key_value, - ACTIONS(1597), 3, + ACTIONS(1621), 3, sym__whitespace1, sym__newline, sym_identifier, - [20720] = 9, - ACTIONS(1593), 1, + [21235] = 9, + ACTIONS(1617), 1, sym__id, - ACTIONS(1595), 1, + ACTIONS(1619), 1, anon_sym_PERCENT, - ACTIONS(1599), 1, + ACTIONS(1623), 1, anon_sym_DOT, - ACTIONS(1639), 1, + ACTIONS(1663), 1, sym__inline_attribute_end, - STATE(627), 1, + STATE(643), 1, aux_sym_inline_attribute_repeat1, - STATE(645), 1, + STATE(658), 1, sym__comment_with_newline, - STATE(1045), 1, + STATE(1056), 1, sym_key, - STATE(646), 2, + STATE(657), 2, sym_class, sym_key_value, - ACTIONS(1597), 3, + ACTIONS(1621), 3, sym__whitespace1, sym__newline, sym_identifier, - [20751] = 9, - ACTIONS(1593), 1, + [21266] = 9, + ACTIONS(1617), 1, sym__id, - ACTIONS(1595), 1, + ACTIONS(1619), 1, anon_sym_PERCENT, - ACTIONS(1599), 1, + ACTIONS(1623), 1, anon_sym_DOT, - ACTIONS(1641), 1, + ACTIONS(1665), 1, sym__inline_attribute_end, - STATE(627), 1, + STATE(630), 1, aux_sym_inline_attribute_repeat1, - STATE(645), 1, + STATE(658), 1, sym__comment_with_newline, - STATE(1045), 1, + STATE(1056), 1, sym_key, - STATE(646), 2, + STATE(657), 2, sym_class, sym_key_value, - ACTIONS(1597), 3, + ACTIONS(1621), 3, sym__whitespace1, sym__newline, sym_identifier, - [20782] = 9, - ACTIONS(1593), 1, + [21297] = 9, + ACTIONS(1617), 1, sym__id, - ACTIONS(1595), 1, + ACTIONS(1619), 1, anon_sym_PERCENT, - ACTIONS(1599), 1, + ACTIONS(1623), 1, anon_sym_DOT, - ACTIONS(1643), 1, + ACTIONS(1667), 1, sym__inline_attribute_end, - STATE(633), 1, + STATE(630), 1, aux_sym_inline_attribute_repeat1, - STATE(645), 1, + STATE(658), 1, sym__comment_with_newline, - STATE(1045), 1, + STATE(1056), 1, sym_key, - STATE(646), 2, + STATE(657), 2, sym_class, sym_key_value, - ACTIONS(1597), 3, + ACTIONS(1621), 3, sym__whitespace1, sym__newline, sym_identifier, - [20813] = 9, - ACTIONS(1593), 1, + [21328] = 9, + ACTIONS(1617), 1, sym__id, - ACTIONS(1595), 1, + ACTIONS(1619), 1, anon_sym_PERCENT, - ACTIONS(1599), 1, + ACTIONS(1623), 1, anon_sym_DOT, - ACTIONS(1645), 1, + ACTIONS(1669), 1, sym__inline_attribute_end, - STATE(627), 1, + STATE(630), 1, aux_sym_inline_attribute_repeat1, - STATE(645), 1, + STATE(658), 1, sym__comment_with_newline, - STATE(1045), 1, + STATE(1056), 1, sym_key, - STATE(646), 2, + STATE(657), 2, sym_class, sym_key_value, - ACTIONS(1597), 3, + ACTIONS(1621), 3, sym__whitespace1, sym__newline, sym_identifier, - [20844] = 9, - ACTIONS(1593), 1, + [21359] = 9, + ACTIONS(1617), 1, sym__id, - ACTIONS(1595), 1, + ACTIONS(1619), 1, anon_sym_PERCENT, - ACTIONS(1599), 1, + ACTIONS(1623), 1, anon_sym_DOT, - ACTIONS(1647), 1, + ACTIONS(1671), 1, sym__inline_attribute_end, - STATE(628), 1, + STATE(644), 1, aux_sym_inline_attribute_repeat1, - STATE(645), 1, + STATE(658), 1, sym__comment_with_newline, - STATE(1045), 1, + STATE(1056), 1, sym_key, - STATE(646), 2, + STATE(657), 2, sym_class, sym_key_value, - ACTIONS(1597), 3, + ACTIONS(1621), 3, sym__whitespace1, sym__newline, sym_identifier, - [20875] = 9, - ACTIONS(1593), 1, + [21390] = 9, + ACTIONS(1617), 1, sym__id, - ACTIONS(1595), 1, + ACTIONS(1619), 1, anon_sym_PERCENT, - ACTIONS(1599), 1, + ACTIONS(1623), 1, anon_sym_DOT, - ACTIONS(1649), 1, + ACTIONS(1673), 1, sym__inline_attribute_end, - STATE(627), 1, + STATE(630), 1, aux_sym_inline_attribute_repeat1, - STATE(645), 1, + STATE(658), 1, sym__comment_with_newline, - STATE(1045), 1, + STATE(1056), 1, sym_key, - STATE(646), 2, + STATE(657), 2, sym_class, sym_key_value, - ACTIONS(1597), 3, + ACTIONS(1621), 3, sym__whitespace1, sym__newline, sym_identifier, - [20906] = 9, - ACTIONS(1593), 1, + [21421] = 9, + ACTIONS(1617), 1, sym__id, - ACTIONS(1595), 1, + ACTIONS(1619), 1, anon_sym_PERCENT, - ACTIONS(1599), 1, + ACTIONS(1623), 1, anon_sym_DOT, - ACTIONS(1651), 1, + ACTIONS(1675), 1, sym__inline_attribute_end, - STATE(635), 1, + STATE(647), 1, aux_sym_inline_attribute_repeat1, - STATE(645), 1, + STATE(658), 1, sym__comment_with_newline, - STATE(1045), 1, + STATE(1056), 1, sym_key, - STATE(646), 2, + STATE(657), 2, sym_class, sym_key_value, - ACTIONS(1597), 3, + ACTIONS(1621), 3, sym__whitespace1, sym__newline, sym_identifier, - [20937] = 9, - ACTIONS(1593), 1, + [21452] = 9, + ACTIONS(1617), 1, sym__id, - ACTIONS(1595), 1, + ACTIONS(1619), 1, anon_sym_PERCENT, - ACTIONS(1599), 1, + ACTIONS(1623), 1, anon_sym_DOT, - ACTIONS(1653), 1, + ACTIONS(1677), 1, sym__inline_attribute_end, - STATE(627), 1, + STATE(630), 1, aux_sym_inline_attribute_repeat1, - STATE(645), 1, + STATE(658), 1, sym__comment_with_newline, - STATE(1045), 1, + STATE(1056), 1, sym_key, - STATE(646), 2, + STATE(657), 2, sym_class, sym_key_value, - ACTIONS(1597), 3, + ACTIONS(1621), 3, sym__whitespace1, sym__newline, sym_identifier, - [20968] = 9, - ACTIONS(1593), 1, + [21483] = 9, + ACTIONS(1617), 1, sym__id, - ACTIONS(1595), 1, + ACTIONS(1619), 1, anon_sym_PERCENT, - ACTIONS(1599), 1, + ACTIONS(1623), 1, anon_sym_DOT, - ACTIONS(1655), 1, + ACTIONS(1679), 1, sym__inline_attribute_end, - STATE(637), 1, + STATE(649), 1, aux_sym_inline_attribute_repeat1, - STATE(645), 1, + STATE(658), 1, sym__comment_with_newline, - STATE(1045), 1, + STATE(1056), 1, sym_key, - STATE(646), 2, + STATE(657), 2, sym_class, sym_key_value, - ACTIONS(1597), 3, + ACTIONS(1621), 3, sym__whitespace1, sym__newline, sym_identifier, - [20999] = 9, - ACTIONS(1593), 1, + [21514] = 9, + ACTIONS(1617), 1, sym__id, - ACTIONS(1595), 1, + ACTIONS(1619), 1, anon_sym_PERCENT, - ACTIONS(1599), 1, + ACTIONS(1623), 1, anon_sym_DOT, - ACTIONS(1657), 1, + ACTIONS(1681), 1, sym__inline_attribute_end, - STATE(627), 1, + STATE(630), 1, aux_sym_inline_attribute_repeat1, - STATE(645), 1, + STATE(658), 1, sym__comment_with_newline, - STATE(1045), 1, + STATE(1056), 1, sym_key, - STATE(646), 2, + STATE(657), 2, sym_class, sym_key_value, - ACTIONS(1597), 3, + ACTIONS(1621), 3, sym__whitespace1, sym__newline, sym_identifier, - [21030] = 9, - ACTIONS(1593), 1, + [21545] = 9, + ACTIONS(1617), 1, sym__id, - ACTIONS(1595), 1, + ACTIONS(1619), 1, anon_sym_PERCENT, - ACTIONS(1599), 1, + ACTIONS(1623), 1, anon_sym_DOT, - ACTIONS(1659), 1, + ACTIONS(1683), 1, sym__inline_attribute_end, - STATE(639), 1, + STATE(651), 1, aux_sym_inline_attribute_repeat1, - STATE(645), 1, + STATE(658), 1, sym__comment_with_newline, - STATE(1045), 1, + STATE(1056), 1, sym_key, - STATE(646), 2, + STATE(657), 2, sym_class, sym_key_value, - ACTIONS(1597), 3, + ACTIONS(1621), 3, sym__whitespace1, sym__newline, sym_identifier, - [21061] = 9, - ACTIONS(1593), 1, + [21576] = 9, + ACTIONS(1617), 1, sym__id, - ACTIONS(1595), 1, + ACTIONS(1619), 1, anon_sym_PERCENT, - ACTIONS(1599), 1, + ACTIONS(1623), 1, anon_sym_DOT, - ACTIONS(1661), 1, + ACTIONS(1685), 1, sym__inline_attribute_end, - STATE(624), 1, + STATE(638), 1, aux_sym_inline_attribute_repeat1, - STATE(645), 1, + STATE(658), 1, sym__comment_with_newline, - STATE(1045), 1, + STATE(1056), 1, sym_key, - STATE(646), 2, + STATE(657), 2, sym_class, sym_key_value, - ACTIONS(1597), 3, + ACTIONS(1621), 3, sym__whitespace1, sym__newline, sym_identifier, - [21092] = 1, - ACTIONS(1663), 7, + [21607] = 1, + ACTIONS(1687), 7, sym__inline_attribute_end, sym__id, anon_sym_PERCENT, @@ -34236,8 +35014,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_DOT, sym_identifier, - [21102] = 1, - ACTIONS(1665), 7, + [21617] = 1, + ACTIONS(1689), 7, sym__inline_attribute_end, sym__id, anon_sym_PERCENT, @@ -34245,8 +35023,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_DOT, sym_identifier, - [21112] = 1, - ACTIONS(1667), 7, + [21627] = 1, + ACTIONS(1691), 7, sym__inline_attribute_end, sym__id, anon_sym_PERCENT, @@ -34254,8 +35032,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_DOT, sym_identifier, - [21122] = 1, - ACTIONS(1669), 7, + [21637] = 1, + ACTIONS(1693), 7, sym__inline_attribute_end, sym__id, anon_sym_PERCENT, @@ -34263,8 +35041,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_DOT, sym_identifier, - [21132] = 1, - ACTIONS(1671), 7, + [21647] = 1, + ACTIONS(1695), 7, sym__inline_attribute_end, sym__id, anon_sym_PERCENT, @@ -34272,8 +35050,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_DOT, sym_identifier, - [21142] = 1, - ACTIONS(1673), 7, + [21657] = 1, + ACTIONS(1697), 7, sym__inline_attribute_end, sym__id, anon_sym_PERCENT, @@ -34281,8 +35059,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_DOT, sym_identifier, - [21152] = 1, - ACTIONS(1675), 7, + [21667] = 1, + ACTIONS(1699), 7, sym__inline_attribute_end, sym__id, anon_sym_PERCENT, @@ -34290,8 +35068,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_DOT, sym_identifier, - [21162] = 1, - ACTIONS(1677), 7, + [21677] = 1, + ACTIONS(1701), 7, sym__inline_attribute_end, sym__id, anon_sym_PERCENT, @@ -34299,8 +35077,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_DOT, sym_identifier, - [21172] = 1, - ACTIONS(1679), 7, + [21687] = 1, + ACTIONS(1703), 7, sym__inline_attribute_end, sym__id, anon_sym_PERCENT, @@ -34308,2389 +35086,2449 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_DOT, sym_identifier, - [21182] = 5, - ACTIONS(1683), 1, + [21697] = 5, + ACTIONS(1707), 1, anon_sym_LBRACE, - ACTIONS(1685), 1, + ACTIONS(1709), 1, anon_sym_LBRACK, - STATE(532), 1, + STATE(544), 1, sym_inline_attribute, - STATE(1097), 1, + STATE(1109), 1, sym__inline_attribute_begin, - ACTIONS(1681), 2, + ACTIONS(1705), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - [21199] = 5, - ACTIONS(1685), 1, + [21714] = 5, + ACTIONS(1709), 1, anon_sym_LBRACK, - ACTIONS(1687), 1, + ACTIONS(1711), 1, anon_sym_LBRACE, - STATE(614), 1, + STATE(570), 1, sym_inline_attribute, - STATE(1127), 1, + STATE(988), 1, sym__inline_attribute_begin, - ACTIONS(1681), 2, + ACTIONS(1705), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - [21216] = 5, - ACTIONS(1685), 1, + [21731] = 5, + ACTIONS(1709), 1, anon_sym_LBRACK, - ACTIONS(1689), 1, + ACTIONS(1713), 1, anon_sym_LBRACE, - STATE(576), 1, + STATE(625), 1, sym_inline_attribute, - STATE(1022), 1, + STATE(1139), 1, sym__inline_attribute_begin, - ACTIONS(1681), 2, + ACTIONS(1705), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - [21233] = 5, - ACTIONS(1685), 1, + [21748] = 5, + ACTIONS(1709), 1, anon_sym_LBRACK, - ACTIONS(1691), 1, + ACTIONS(1715), 1, anon_sym_LBRACE, - STATE(538), 1, + STATE(599), 1, sym_inline_attribute, - STATE(1007), 1, + STATE(1049), 1, sym__inline_attribute_begin, - ACTIONS(1681), 2, + ACTIONS(1705), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - [21250] = 5, - ACTIONS(1685), 1, + [21765] = 5, + ACTIONS(1709), 1, anon_sym_LBRACK, - ACTIONS(1693), 1, + ACTIONS(1717), 1, anon_sym_LBRACE, - STATE(586), 1, + STATE(548), 1, sym_inline_attribute, - STATE(1037), 1, + STATE(1019), 1, sym__inline_attribute_begin, - ACTIONS(1681), 2, + ACTIONS(1705), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - [21267] = 5, - ACTIONS(1685), 1, + [21782] = 5, + ACTIONS(1709), 1, anon_sym_LBRACK, - ACTIONS(1695), 1, + ACTIONS(1719), 1, anon_sym_LBRACE, - STATE(563), 1, + STATE(597), 1, sym_inline_attribute, - STATE(1052), 1, + STATE(1101), 1, sym__inline_attribute_begin, - ACTIONS(1681), 2, + ACTIONS(1705), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - [21284] = 5, - ACTIONS(1685), 1, + [21799] = 5, + ACTIONS(1709), 1, anon_sym_LBRACK, - ACTIONS(1697), 1, + ACTIONS(1721), 1, anon_sym_LBRACE, - STATE(527), 1, + STATE(556), 1, sym_inline_attribute, - STATE(992), 1, + STATE(1124), 1, sym__inline_attribute_begin, - ACTIONS(1681), 2, + ACTIONS(1705), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - [21301] = 5, - ACTIONS(1685), 1, + [21816] = 5, + ACTIONS(1709), 1, anon_sym_LBRACK, - ACTIONS(1699), 1, + ACTIONS(1723), 1, anon_sym_LBRACE, - STATE(558), 1, + STATE(585), 1, sym_inline_attribute, - STATE(976), 1, + STATE(1034), 1, sym__inline_attribute_begin, - ACTIONS(1681), 2, + ACTIONS(1705), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - [21318] = 5, - ACTIONS(1685), 1, + [21833] = 5, + ACTIONS(1709), 1, anon_sym_LBRACK, - ACTIONS(1701), 1, + ACTIONS(1725), 1, anon_sym_LBRACE, - STATE(544), 1, + STATE(558), 1, sym_inline_attribute, - STATE(1112), 1, + STATE(1004), 1, sym__inline_attribute_begin, - ACTIONS(1681), 2, + ACTIONS(1705), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - [21335] = 5, - ACTIONS(1685), 1, + [21850] = 5, + ACTIONS(1709), 1, anon_sym_LBRACK, - ACTIONS(1703), 1, + ACTIONS(1727), 1, anon_sym_LBRACE, - STATE(556), 1, + STATE(578), 1, sym_inline_attribute, - STATE(1067), 1, + STATE(1064), 1, sym__inline_attribute_begin, - ACTIONS(1681), 2, + ACTIONS(1705), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - [21352] = 5, - ACTIONS(1685), 1, + [21867] = 5, + ACTIONS(1709), 1, anon_sym_LBRACK, - ACTIONS(1705), 1, + ACTIONS(1729), 1, anon_sym_LBRACE, - STATE(584), 1, + STATE(568), 1, sym_inline_attribute, - STATE(1090), 1, + STATE(1079), 1, sym__inline_attribute_begin, - ACTIONS(1681), 2, + ACTIONS(1705), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - [21369] = 5, - ACTIONS(1685), 1, + [21884] = 5, + ACTIONS(1709), 1, anon_sym_LBRACK, - ACTIONS(1707), 1, + ACTIONS(1731), 1, anon_sym_LBRACE, - STATE(547), 1, + STATE(559), 1, sym_inline_attribute, - STATE(1082), 1, + STATE(1094), 1, sym__inline_attribute_begin, - ACTIONS(1681), 2, + ACTIONS(1705), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - [21386] = 5, - ACTIONS(1709), 1, + [21901] = 5, + ACTIONS(1733), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(1711), 1, + ACTIONS(1735), 1, anon_sym_LBRACK, - ACTIONS(1713), 1, + ACTIONS(1737), 1, anon_sym_LPAREN, - STATE(459), 1, + STATE(469), 1, sym__link_label, - STATE(460), 1, + STATE(470), 1, sym_inline_link_destination, - [21402] = 5, - ACTIONS(1715), 1, + [21917] = 5, + ACTIONS(1739), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(1717), 1, + ACTIONS(1741), 1, anon_sym_LBRACK, - ACTIONS(1719), 1, + ACTIONS(1743), 1, anon_sym_LPAREN, - STATE(464), 1, + STATE(494), 1, sym_inline_link_destination, - STATE(466), 1, + STATE(495), 1, sym__link_label, - [21418] = 5, - ACTIONS(1721), 1, + [21933] = 5, + ACTIONS(1745), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(1723), 1, + ACTIONS(1747), 1, anon_sym_LBRACK, - ACTIONS(1725), 1, + ACTIONS(1749), 1, anon_sym_LPAREN, - STATE(501), 1, + STATE(512), 1, sym__link_label, - STATE(502), 1, + STATE(513), 1, sym_inline_link_destination, - [21434] = 5, - ACTIONS(1723), 1, + [21949] = 5, + ACTIONS(1747), 1, anon_sym_LBRACK, - ACTIONS(1725), 1, + ACTIONS(1749), 1, anon_sym_LPAREN, - ACTIONS(1727), 1, + ACTIONS(1751), 1, anon_sym_LBRACK_RBRACK, - STATE(498), 1, + STATE(509), 1, sym__link_label, - STATE(499), 1, + STATE(510), 1, sym_inline_link_destination, - [21450] = 5, - ACTIONS(1729), 1, + [21965] = 3, + ACTIONS(1755), 1, + anon_sym_PERCENT, + STATE(690), 1, + aux_sym__comment_with_newline_repeat1, + ACTIONS(1753), 3, + sym_backslash_escape, + aux_sym__comment_with_newline_token1, + sym__newline, + [21977] = 5, + ACTIONS(1757), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(1731), 1, + ACTIONS(1759), 1, anon_sym_LBRACK, - ACTIONS(1733), 1, + ACTIONS(1761), 1, anon_sym_LPAREN, - STATE(407), 1, + STATE(415), 1, sym_inline_link_destination, STATE(419), 1, sym__link_label, - [21466] = 5, - ACTIONS(1735), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(1737), 1, + [21993] = 5, + ACTIONS(1759), 1, anon_sym_LBRACK, - ACTIONS(1739), 1, + ACTIONS(1761), 1, anon_sym_LPAREN, - STATE(525), 1, - sym_inline_link_destination, - STATE(582), 1, - sym__link_label, - [21482] = 5, - ACTIONS(1741), 1, + ACTIONS(1763), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(1743), 1, - anon_sym_LBRACK, - ACTIONS(1745), 1, - anon_sym_LPAREN, - STATE(281), 1, - sym__link_label, - STATE(289), 1, + STATE(429), 1, sym_inline_link_destination, - [21498] = 5, - ACTIONS(1711), 1, + STATE(430), 1, + sym__link_label, + [22009] = 5, + ACTIONS(1735), 1, anon_sym_LBRACK, - ACTIONS(1713), 1, + ACTIONS(1737), 1, anon_sym_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1765), 1, anon_sym_LBRACK_RBRACK, - STATE(456), 1, + STATE(466), 1, sym__link_label, - STATE(457), 1, + STATE(467), 1, sym_inline_link_destination, - [21514] = 3, - ACTIONS(1751), 1, + [22025] = 3, + ACTIONS(1767), 1, anon_sym_PERCENT, - STATE(684), 1, + STATE(696), 1, aux_sym__comment_with_newline_repeat1, - ACTIONS(1749), 3, + ACTIONS(1753), 3, sym_backslash_escape, aux_sym__comment_with_newline_token1, sym__newline, - [21526] = 5, - ACTIONS(1753), 1, + [22037] = 5, + ACTIONS(1769), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(1755), 1, + ACTIONS(1771), 1, anon_sym_LBRACK, - ACTIONS(1757), 1, + ACTIONS(1773), 1, anon_sym_LPAREN, - STATE(330), 1, + STATE(293), 1, sym__link_label, - STATE(331), 1, + STATE(294), 1, sym_inline_link_destination, - [21542] = 5, - ACTIONS(1743), 1, + [22053] = 5, + ACTIONS(1775), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(1777), 1, anon_sym_LBRACK, - ACTIONS(1745), 1, + ACTIONS(1779), 1, anon_sym_LPAREN, - ACTIONS(1759), 1, - anon_sym_LBRACK_RBRACK, - STATE(259), 1, + STATE(274), 1, sym__link_label, - STATE(271), 1, + STATE(286), 1, sym_inline_link_destination, - [21558] = 5, - ACTIONS(1755), 1, + [22069] = 5, + ACTIONS(1781), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1757), 1, + ACTIONS(1785), 1, anon_sym_LPAREN, - ACTIONS(1761), 1, - anon_sym_LBRACK_RBRACK, - STATE(327), 1, + STATE(425), 1, sym__link_label, - STATE(328), 1, + STATE(426), 1, sym_inline_link_destination, - [21574] = 5, - ACTIONS(1763), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(1765), 1, + [22085] = 5, + ACTIONS(1771), 1, anon_sym_LBRACK, - ACTIONS(1767), 1, + ACTIONS(1773), 1, anon_sym_LPAREN, - STATE(416), 1, + ACTIONS(1787), 1, + anon_sym_LBRACK_RBRACK, + STATE(290), 1, sym__link_label, - STATE(417), 1, + STATE(291), 1, sym_inline_link_destination, - [21590] = 3, - ACTIONS(1769), 1, - anon_sym_PERCENT, - STATE(680), 1, - aux_sym__comment_with_newline_repeat1, - ACTIONS(1749), 3, - sym_backslash_escape, - aux_sym__comment_with_newline_token1, - sym__newline, - [21602] = 5, - ACTIONS(1765), 1, + [22101] = 5, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1767), 1, + ACTIONS(1785), 1, anon_sym_LPAREN, - ACTIONS(1771), 1, + ACTIONS(1789), 1, anon_sym_LBRACK_RBRACK, - STATE(413), 1, + STATE(422), 1, sym__link_label, - STATE(414), 1, + STATE(423), 1, sym_inline_link_destination, - [21618] = 3, - ACTIONS(1776), 1, + [22117] = 3, + ACTIONS(1791), 1, anon_sym_PERCENT, - STATE(678), 1, + STATE(679), 1, aux_sym__comment_with_newline_repeat1, - ACTIONS(1773), 3, + ACTIONS(1753), 3, sym_backslash_escape, aux_sym__comment_with_newline_token1, sym__newline, - [21630] = 5, - ACTIONS(1717), 1, - anon_sym_LBRACK, - ACTIONS(1719), 1, - anon_sym_LPAREN, - ACTIONS(1778), 1, - anon_sym_LBRACK_RBRACK, - STATE(482), 1, - sym_inline_link_destination, - STATE(484), 1, - sym__link_label, - [21646] = 3, - ACTIONS(1780), 1, + [22129] = 3, + ACTIONS(1796), 1, anon_sym_PERCENT, - STATE(678), 1, + STATE(690), 1, aux_sym__comment_with_newline_repeat1, - ACTIONS(1749), 3, + ACTIONS(1793), 3, sym_backslash_escape, aux_sym__comment_with_newline_token1, sym__newline, - [21658] = 5, - ACTIONS(1782), 1, + [22141] = 5, + ACTIONS(1798), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(1784), 1, + ACTIONS(1800), 1, anon_sym_LBRACK, - ACTIONS(1786), 1, + ACTIONS(1802), 1, anon_sym_LPAREN, - STATE(373), 1, + STATE(537), 1, sym__link_label, - STATE(374), 1, + STATE(616), 1, sym_inline_link_destination, - [21674] = 5, - ACTIONS(1784), 1, + [22157] = 5, + ACTIONS(1777), 1, anon_sym_LBRACK, - ACTIONS(1786), 1, + ACTIONS(1779), 1, anon_sym_LPAREN, - ACTIONS(1788), 1, + ACTIONS(1804), 1, anon_sym_LBRACK_RBRACK, - STATE(370), 1, + STATE(297), 1, sym__link_label, - STATE(371), 1, + STATE(300), 1, sym_inline_link_destination, - [21690] = 5, - ACTIONS(1790), 1, + [22173] = 5, + ACTIONS(1806), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(1792), 1, + ACTIONS(1808), 1, anon_sym_LBRACK, - ACTIONS(1794), 1, + ACTIONS(1810), 1, anon_sym_LPAREN, - STATE(218), 1, + STATE(381), 1, sym__link_label, - STATE(219), 1, + STATE(382), 1, sym_inline_link_destination, - [21706] = 3, - ACTIONS(1796), 1, + [22189] = 5, + ACTIONS(1808), 1, + anon_sym_LBRACK, + ACTIONS(1810), 1, + anon_sym_LPAREN, + ACTIONS(1812), 1, + anon_sym_LBRACK_RBRACK, + STATE(378), 1, + sym__link_label, + STATE(379), 1, + sym_inline_link_destination, + [22205] = 5, + ACTIONS(1741), 1, + anon_sym_LBRACK, + ACTIONS(1743), 1, + anon_sym_LPAREN, + ACTIONS(1814), 1, + anon_sym_LBRACK_RBRACK, + STATE(476), 1, + sym_inline_link_destination, + STATE(479), 1, + sym__link_label, + [22221] = 3, + ACTIONS(1816), 1, anon_sym_PERCENT, - STATE(678), 1, + STATE(690), 1, aux_sym__comment_with_newline_repeat1, - ACTIONS(1749), 3, + ACTIONS(1753), 3, sym_backslash_escape, aux_sym__comment_with_newline_token1, sym__newline, - [21718] = 5, - ACTIONS(1792), 1, + [22233] = 5, + ACTIONS(1818), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(1820), 1, anon_sym_LBRACK, - ACTIONS(1794), 1, + ACTIONS(1822), 1, anon_sym_LPAREN, - ACTIONS(1798), 1, - anon_sym_LBRACK_RBRACK, - STATE(215), 1, - sym__link_label, - STATE(216), 1, + STATE(276), 1, sym_inline_link_destination, - [21734] = 5, - ACTIONS(1737), 1, + STATE(277), 1, + sym__link_label, + [22249] = 5, + ACTIONS(1800), 1, anon_sym_LBRACK, - ACTIONS(1739), 1, + ACTIONS(1802), 1, anon_sym_LPAREN, - ACTIONS(1800), 1, + ACTIONS(1824), 1, anon_sym_LBRACK_RBRACK, - STATE(579), 1, + STATE(592), 1, sym__link_label, - STATE(580), 1, + STATE(593), 1, sym_inline_link_destination, - [21750] = 5, - ACTIONS(1802), 1, + [22265] = 5, + ACTIONS(1826), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(1804), 1, + ACTIONS(1828), 1, anon_sym_LBRACK, - ACTIONS(1806), 1, + ACTIONS(1830), 1, anon_sym_LPAREN, - STATE(248), 1, + STATE(337), 1, sym__link_label, - STATE(249), 1, + STATE(338), 1, sym_inline_link_destination, - [21766] = 5, - ACTIONS(1804), 1, + [22281] = 5, + ACTIONS(1828), 1, anon_sym_LBRACK, - ACTIONS(1806), 1, + ACTIONS(1830), 1, anon_sym_LPAREN, - ACTIONS(1808), 1, + ACTIONS(1832), 1, anon_sym_LBRACK_RBRACK, - STATE(251), 1, + STATE(334), 1, sym__link_label, - STATE(252), 1, + STATE(335), 1, sym_inline_link_destination, - [21782] = 5, - ACTIONS(1731), 1, + [22297] = 5, + ACTIONS(1834), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(1836), 1, anon_sym_LBRACK, - ACTIONS(1733), 1, + ACTIONS(1838), 1, anon_sym_LPAREN, - ACTIONS(1810), 1, - anon_sym_LBRACK_RBRACK, - STATE(401), 1, - sym_inline_link_destination, - STATE(405), 1, + STATE(249), 1, sym__link_label, - [21798] = 5, - ACTIONS(1812), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(1814), 1, + STATE(250), 1, + sym_inline_link_destination, + [22313] = 5, + ACTIONS(1836), 1, anon_sym_LBRACK, - ACTIONS(1816), 1, + ACTIONS(1838), 1, anon_sym_LPAREN, - STATE(284), 1, + ACTIONS(1840), 1, + anon_sym_LBRACK_RBRACK, + STATE(252), 1, sym__link_label, - STATE(285), 1, + STATE(253), 1, sym_inline_link_destination, - [21814] = 5, - ACTIONS(1814), 1, + [22329] = 5, + ACTIONS(1820), 1, anon_sym_LBRACK, - ACTIONS(1816), 1, + ACTIONS(1822), 1, anon_sym_LPAREN, - ACTIONS(1818), 1, + ACTIONS(1842), 1, anon_sym_LBRACK_RBRACK, - STATE(287), 1, - sym__link_label, - STATE(288), 1, + STATE(282), 1, sym_inline_link_destination, - [21830] = 1, - ACTIONS(1820), 4, + STATE(283), 1, + sym__link_label, + [22345] = 1, + ACTIONS(1844), 4, sym_backslash_escape, anon_sym_PERCENT, aux_sym__comment_with_newline_token1, sym__newline, - [21837] = 2, - ACTIONS(1824), 1, + [22352] = 2, + ACTIONS(1848), 1, anon_sym_LBRACK, - ACTIONS(1822), 3, + ACTIONS(1846), 3, anon_sym_LBRACK_RBRACK, anon_sym_LBRACE, anon_sym_LPAREN, - [21846] = 3, - ACTIONS(1826), 1, + [22361] = 3, + ACTIONS(1850), 1, anon_sym_DQUOTE, - ACTIONS(1828), 1, + ACTIONS(1852), 1, aux_sym_value_token2, - STATE(649), 1, + STATE(661), 1, sym_value, - [21856] = 2, - ACTIONS(1832), 1, + [22371] = 2, + ACTIONS(1856), 1, anon_sym_LBRACK, - ACTIONS(1830), 2, + ACTIONS(1854), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - [21864] = 2, - ACTIONS(1836), 1, + [22379] = 2, + ACTIONS(1860), 1, anon_sym_LBRACK, - ACTIONS(1834), 2, + ACTIONS(1858), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - [21872] = 2, - ACTIONS(1838), 1, + [22387] = 2, + ACTIONS(1862), 1, + sym__strong_mark_begin, + ACTIONS(1865), 1, + sym__in_fallback, + [22394] = 2, + ACTIONS(1867), 1, sym__superscript_mark_begin, - ACTIONS(1841), 1, + ACTIONS(1870), 1, sym__in_fallback, - [21879] = 2, - ACTIONS(1843), 1, - anon_sym_PERCENT, - STATE(1074), 1, - sym__comment_with_newline, - [21886] = 2, - ACTIONS(1845), 1, + [22401] = 2, + ACTIONS(1872), 1, sym__image_description_mark_begin, - ACTIONS(1848), 1, + ACTIONS(1875), 1, sym__in_fallback, - [21893] = 2, - ACTIONS(1848), 1, + [22408] = 2, + ACTIONS(1875), 1, sym__in_fallback, - ACTIONS(1850), 1, + ACTIONS(1877), 1, sym__bracketed_text_mark_begin, - [21900] = 2, - ACTIONS(1853), 1, - sym__strong_mark_begin, - ACTIONS(1856), 1, - sym__in_fallback, - [21907] = 2, - ACTIONS(1858), 1, + [22415] = 2, + ACTIONS(1880), 1, sym__emphasis_mark_begin, - ACTIONS(1861), 1, + ACTIONS(1883), 1, sym__in_fallback, - [21914] = 2, - ACTIONS(1861), 1, + [22422] = 2, + ACTIONS(1883), 1, sym__in_fallback, - ACTIONS(1863), 1, + ACTIONS(1885), 1, + sym__strong_mark_begin, + [22429] = 2, + ACTIONS(1888), 1, sym__strong_mark_begin, - [21921] = 2, - ACTIONS(1866), 1, + ACTIONS(1891), 1, + sym__in_fallback, + [22436] = 2, + ACTIONS(1893), 1, + sym__id, + STATE(982), 1, + sym_reference_label, + [22443] = 2, + ACTIONS(1895), 1, sym__inline_attribute_mark_begin, - ACTIONS(1869), 1, + ACTIONS(1898), 1, sym__in_fallback, - [21928] = 2, - ACTIONS(1856), 1, + [22450] = 2, + ACTIONS(1891), 1, sym__in_fallback, - ACTIONS(1871), 1, + ACTIONS(1900), 1, sym__superscript_mark_begin, - [21935] = 2, - ACTIONS(1856), 1, + [22457] = 2, + ACTIONS(1891), 1, sym__in_fallback, - ACTIONS(1874), 1, + ACTIONS(1903), 1, sym__subscript_mark_begin, - [21942] = 2, - ACTIONS(1856), 1, + [22464] = 2, + ACTIONS(1891), 1, sym__in_fallback, - ACTIONS(1877), 1, + ACTIONS(1906), 1, sym__highlighted_mark_begin, - [21949] = 2, - ACTIONS(1856), 1, + [22471] = 2, + ACTIONS(1891), 1, sym__in_fallback, - ACTIONS(1880), 1, + ACTIONS(1909), 1, sym__insert_mark_begin, - [21956] = 2, - ACTIONS(1856), 1, + [22478] = 2, + ACTIONS(1891), 1, sym__in_fallback, - ACTIONS(1883), 1, + ACTIONS(1912), 1, sym__delete_mark_begin, - [21963] = 2, - ACTIONS(1843), 1, + [22485] = 2, + ACTIONS(1915), 1, anon_sym_PERCENT, - STATE(962), 1, + STATE(890), 1, sym__comment_with_newline, - [21970] = 2, - ACTIONS(1886), 1, - sym__id, - STATE(959), 1, - sym_reference_label, - [21977] = 2, - ACTIONS(1886), 1, + [22492] = 2, + ACTIONS(1891), 1, + sym__in_fallback, + ACTIONS(1917), 1, + sym__footnote_marker_mark_begin, + [22499] = 2, + ACTIONS(1893), 1, sym__id, - STATE(1087), 1, + STATE(949), 1, sym_reference_label, - [21984] = 2, - ACTIONS(1856), 1, + [22506] = 2, + ACTIONS(1891), 1, sym__in_fallback, - ACTIONS(1888), 1, + ACTIONS(1920), 1, sym__image_description_mark_begin, - [21991] = 2, - ACTIONS(1856), 1, - sym__in_fallback, + [22513] = 2, ACTIONS(1891), 1, + sym__in_fallback, + ACTIONS(1923), 1, sym__bracketed_text_mark_begin, - [21998] = 2, - ACTIONS(1843), 1, + [22520] = 2, + ACTIONS(1915), 1, anon_sym_PERCENT, - STATE(929), 1, + STATE(941), 1, sym__comment_with_newline, - [22005] = 2, - ACTIONS(1886), 1, + [22527] = 2, + ACTIONS(1893), 1, sym__id, - STATE(926), 1, + STATE(916), 1, sym_reference_label, - [22012] = 2, - ACTIONS(1894), 1, - sym__emphasis_mark_begin, - ACTIONS(1897), 1, - sym__in_fallback, - [22019] = 2, - ACTIONS(1843), 1, + [22534] = 2, + ACTIONS(1915), 1, anon_sym_PERCENT, - STATE(896), 1, + STATE(908), 1, sym__comment_with_newline, - [22026] = 2, - ACTIONS(1899), 1, + [22541] = 2, + ACTIONS(1926), 1, sym__emphasis_mark_begin, - ACTIONS(1902), 1, + ACTIONS(1929), 1, sym__in_fallback, - [22033] = 2, - ACTIONS(1902), 1, + [22548] = 2, + ACTIONS(1929), 1, sym__in_fallback, - ACTIONS(1904), 1, + ACTIONS(1931), 1, sym__strong_mark_begin, - [22040] = 2, - ACTIONS(1902), 1, + [22555] = 2, + ACTIONS(1929), 1, sym__in_fallback, - ACTIONS(1907), 1, + ACTIONS(1934), 1, sym__superscript_mark_begin, - [22047] = 2, - ACTIONS(1902), 1, + [22562] = 2, + ACTIONS(1929), 1, sym__in_fallback, - ACTIONS(1910), 1, + ACTIONS(1937), 1, sym__subscript_mark_begin, - [22054] = 2, - ACTIONS(1902), 1, + [22569] = 2, + ACTIONS(1929), 1, sym__in_fallback, - ACTIONS(1913), 1, + ACTIONS(1940), 1, sym__highlighted_mark_begin, - [22061] = 2, - ACTIONS(1902), 1, + [22576] = 2, + ACTIONS(1929), 1, sym__in_fallback, - ACTIONS(1916), 1, + ACTIONS(1943), 1, sym__insert_mark_begin, - [22068] = 2, - ACTIONS(1902), 1, + [22583] = 2, + ACTIONS(1929), 1, sym__in_fallback, - ACTIONS(1919), 1, + ACTIONS(1946), 1, sym__delete_mark_begin, - [22075] = 2, - ACTIONS(1886), 1, - sym__id, - STATE(893), 1, - sym_reference_label, - [22082] = 2, - ACTIONS(1902), 1, + [22590] = 2, + ACTIONS(1949), 1, + sym__emphasis_mark_begin, + ACTIONS(1952), 1, + sym__in_fallback, + [22597] = 2, + ACTIONS(1929), 1, + sym__in_fallback, + ACTIONS(1954), 1, + sym__footnote_marker_mark_begin, + [22604] = 2, + ACTIONS(1929), 1, sym__in_fallback, - ACTIONS(1922), 1, + ACTIONS(1957), 1, sym__image_description_mark_begin, - [22089] = 2, - ACTIONS(1902), 1, + [22611] = 2, + ACTIONS(1929), 1, sym__in_fallback, - ACTIONS(1925), 1, + ACTIONS(1960), 1, sym__bracketed_text_mark_begin, - [22096] = 2, - ACTIONS(1897), 1, - sym__in_fallback, - ACTIONS(1928), 1, - sym__strong_mark_begin, - [22103] = 2, - ACTIONS(1931), 1, + [22618] = 2, + ACTIONS(1893), 1, + sym__id, + STATE(897), 1, + sym_reference_label, + [22625] = 2, + ACTIONS(1963), 1, sym__emphasis_mark_begin, - ACTIONS(1934), 1, + ACTIONS(1966), 1, sym__in_fallback, - [22110] = 2, - ACTIONS(1934), 1, + [22632] = 2, + ACTIONS(1966), 1, sym__in_fallback, - ACTIONS(1936), 1, + ACTIONS(1968), 1, sym__strong_mark_begin, - [22117] = 2, - ACTIONS(1939), 1, + [22639] = 2, + ACTIONS(1971), 1, sym__inline_attribute_mark_begin, - ACTIONS(1942), 1, + ACTIONS(1974), 1, + sym__in_fallback, + [22646] = 2, + ACTIONS(1952), 1, sym__in_fallback, - [22124] = 2, - ACTIONS(1944), 1, + ACTIONS(1976), 1, + sym__strong_mark_begin, + [22653] = 2, + ACTIONS(1979), 1, sym__inline_attribute_mark_begin, - ACTIONS(1947), 1, + ACTIONS(1982), 1, sym__in_fallback, - [22131] = 2, - ACTIONS(1843), 1, + [22660] = 2, + ACTIONS(1915), 1, anon_sym_PERCENT, - STATE(877), 1, + STATE(1087), 1, sym__comment_with_newline, - [22138] = 2, - ACTIONS(1886), 1, + [22667] = 2, + ACTIONS(1893), 1, sym__id, - STATE(880), 1, + STATE(1071), 1, sym_reference_label, - [22145] = 2, - ACTIONS(1843), 1, + [22674] = 2, + ACTIONS(1915), 1, anon_sym_PERCENT, - STATE(920), 1, + STATE(923), 1, sym__comment_with_newline, - [22152] = 2, - ACTIONS(1886), 1, + [22681] = 2, + ACTIONS(1893), 1, sym__id, - STATE(924), 1, + STATE(938), 1, sym_reference_label, - [22159] = 2, - ACTIONS(1843), 1, + [22688] = 2, + ACTIONS(1915), 1, anon_sym_PERCENT, - STATE(957), 1, + STATE(959), 1, sym__comment_with_newline, - [22166] = 2, - ACTIONS(1886), 1, + [22695] = 2, + ACTIONS(1893), 1, sym__id, STATE(972), 1, sym_reference_label, - [22173] = 2, - ACTIONS(1949), 1, + [22702] = 2, + ACTIONS(1915), 1, + anon_sym_PERCENT, + STATE(998), 1, + sym__comment_with_newline, + [22709] = 2, + ACTIONS(1893), 1, sym__id, - STATE(647), 1, + STATE(1025), 1, + sym_reference_label, + [22716] = 2, + ACTIONS(1984), 1, + sym__id, + STATE(656), 1, sym_class_name, - [22180] = 2, - ACTIONS(1856), 1, + [22723] = 2, + ACTIONS(1891), 1, sym__in_fallback, - ACTIONS(1951), 1, + ACTIONS(1986), 1, sym__emphasis_mark_begin, - [22187] = 2, - ACTIONS(1843), 1, + [22730] = 2, + ACTIONS(1915), 1, anon_sym_PERCENT, - STATE(1017), 1, + STATE(1040), 1, sym__comment_with_newline, - [22194] = 2, - ACTIONS(1886), 1, - sym__id, - STATE(1024), 1, - sym_reference_label, - [22201] = 2, - ACTIONS(1841), 1, - sym__in_fallback, - ACTIONS(1954), 1, - sym__strong_mark_begin, - [22208] = 2, - ACTIONS(1841), 1, - sym__in_fallback, - ACTIONS(1957), 1, - sym__subscript_mark_begin, - [22215] = 2, - ACTIONS(1841), 1, - sym__in_fallback, - ACTIONS(1960), 1, - sym__highlighted_mark_begin, - [22222] = 2, - ACTIONS(1963), 1, + [22737] = 2, + ACTIONS(1989), 1, sym__emphasis_mark_begin, - ACTIONS(1966), 1, + ACTIONS(1992), 1, sym__in_fallback, - [22229] = 2, - ACTIONS(1966), 1, + [22744] = 2, + ACTIONS(1992), 1, sym__in_fallback, - ACTIONS(1968), 1, + ACTIONS(1994), 1, sym__strong_mark_begin, - [22236] = 2, - ACTIONS(1966), 1, + [22751] = 2, + ACTIONS(1992), 1, sym__in_fallback, - ACTIONS(1971), 1, + ACTIONS(1997), 1, sym__superscript_mark_begin, - [22243] = 2, - ACTIONS(1966), 1, + [22758] = 2, + ACTIONS(1992), 1, sym__in_fallback, - ACTIONS(1974), 1, + ACTIONS(2000), 1, sym__subscript_mark_begin, - [22250] = 2, - ACTIONS(1966), 1, + [22765] = 2, + ACTIONS(1992), 1, sym__in_fallback, - ACTIONS(1977), 1, + ACTIONS(2003), 1, sym__highlighted_mark_begin, - [22257] = 2, - ACTIONS(1966), 1, + [22772] = 2, + ACTIONS(1992), 1, sym__in_fallback, - ACTIONS(1980), 1, + ACTIONS(2006), 1, sym__insert_mark_begin, - [22264] = 2, - ACTIONS(1966), 1, + [22779] = 2, + ACTIONS(1992), 1, sym__in_fallback, - ACTIONS(1983), 1, + ACTIONS(2009), 1, sym__delete_mark_begin, - [22271] = 2, - ACTIONS(1841), 1, + [22786] = 2, + ACTIONS(1893), 1, + sym__id, + STATE(1066), 1, + sym_reference_label, + [22793] = 2, + ACTIONS(1992), 1, sym__in_fallback, - ACTIONS(1986), 1, - sym__insert_mark_begin, - [22278] = 2, - ACTIONS(1966), 1, + ACTIONS(2012), 1, + sym__footnote_marker_mark_begin, + [22800] = 2, + ACTIONS(1992), 1, sym__in_fallback, - ACTIONS(1989), 1, + ACTIONS(2015), 1, sym__image_description_mark_begin, - [22285] = 2, - ACTIONS(1966), 1, - sym__in_fallback, + [22807] = 2, ACTIONS(1992), 1, + sym__in_fallback, + ACTIONS(2018), 1, sym__bracketed_text_mark_begin, - [22292] = 2, - ACTIONS(1841), 1, + [22814] = 2, + ACTIONS(1865), 1, sym__in_fallback, - ACTIONS(1995), 1, - sym__delete_mark_begin, - [22299] = 2, - ACTIONS(1998), 1, + ACTIONS(2021), 1, + sym__superscript_mark_begin, + [22821] = 2, + ACTIONS(2024), 1, sym__emphasis_mark_begin, - ACTIONS(2001), 1, + ACTIONS(2027), 1, sym__in_fallback, - [22306] = 2, - ACTIONS(2001), 1, + [22828] = 2, + ACTIONS(2027), 1, sym__in_fallback, - ACTIONS(2003), 1, + ACTIONS(2029), 1, sym__strong_mark_begin, - [22313] = 2, - ACTIONS(2006), 1, + [22835] = 2, + ACTIONS(2032), 1, sym__inline_attribute_mark_begin, - ACTIONS(2009), 1, + ACTIONS(2035), 1, sym__in_fallback, - [22320] = 2, - ACTIONS(1841), 1, + [22842] = 2, + ACTIONS(1865), 1, sym__in_fallback, - ACTIONS(2011), 1, - sym__image_description_mark_begin, - [22327] = 2, - ACTIONS(1843), 1, + ACTIONS(2037), 1, + sym__subscript_mark_begin, + [22849] = 2, + ACTIONS(1865), 1, + sym__in_fallback, + ACTIONS(2040), 1, + sym__highlighted_mark_begin, + [22856] = 2, + ACTIONS(1865), 1, + sym__in_fallback, + ACTIONS(2043), 1, + sym__insert_mark_begin, + [22863] = 2, + ACTIONS(1865), 1, + sym__in_fallback, + ACTIONS(2046), 1, + sym__delete_mark_begin, + [22870] = 2, + ACTIONS(1915), 1, anon_sym_PERCENT, - STATE(1069), 1, + STATE(1103), 1, sym__comment_with_newline, - [22334] = 2, - ACTIONS(1886), 1, + [22877] = 2, + ACTIONS(1865), 1, + sym__in_fallback, + ACTIONS(2049), 1, + sym__footnote_marker_mark_begin, + [22884] = 2, + ACTIONS(1893), 1, sym__id, - STATE(1084), 1, + STATE(1133), 1, sym_reference_label, - [22341] = 2, - ACTIONS(1841), 1, + [22891] = 2, + ACTIONS(1865), 1, + sym__in_fallback, + ACTIONS(2052), 1, + sym__image_description_mark_begin, + [22898] = 2, + ACTIONS(1865), 1, sym__in_fallback, - ACTIONS(2014), 1, + ACTIONS(2055), 1, sym__bracketed_text_mark_begin, - [22348] = 2, - ACTIONS(2017), 1, + [22905] = 2, + ACTIONS(2058), 1, sym__emphasis_mark_begin, - ACTIONS(2020), 1, + ACTIONS(2061), 1, sym__in_fallback, - [22355] = 2, - ACTIONS(2020), 1, + [22912] = 2, + ACTIONS(2061), 1, sym__in_fallback, - ACTIONS(2022), 1, + ACTIONS(2063), 1, sym__strong_mark_begin, - [22362] = 2, - ACTIONS(2025), 1, - sym__inline_attribute_mark_begin, - ACTIONS(2028), 1, - sym__in_fallback, - [22369] = 2, - ACTIONS(1841), 1, + [22919] = 2, + ACTIONS(1865), 1, sym__in_fallback, - ACTIONS(2030), 1, + ACTIONS(2066), 1, sym__emphasis_mark_begin, - [22376] = 2, - ACTIONS(1843), 1, - anon_sym_PERCENT, - STATE(1132), 1, - sym__comment_with_newline, - [22383] = 2, - ACTIONS(1886), 1, - sym__id, - STATE(1134), 1, - sym_reference_label, - [22390] = 2, - ACTIONS(1843), 1, + [22926] = 2, + ACTIONS(1915), 1, anon_sym_PERCENT, - STATE(887), 1, + STATE(1148), 1, sym__comment_with_newline, - [22397] = 2, - ACTIONS(1886), 1, + [22933] = 2, + ACTIONS(1875), 1, + sym__in_fallback, + ACTIONS(2069), 1, + sym__delete_mark_begin, + [22940] = 2, + ACTIONS(1893), 1, sym__id, - STATE(906), 1, + STATE(933), 1, sym_reference_label, - [22404] = 2, - ACTIONS(2033), 1, - sym__emphasis_mark_begin, - ACTIONS(2036), 1, - sym__in_fallback, - [22411] = 2, - ACTIONS(2036), 1, - sym__in_fallback, - ACTIONS(2038), 1, - sym__superscript_mark_begin, - [22418] = 2, - ACTIONS(2036), 1, - sym__in_fallback, - ACTIONS(2041), 1, - sym__subscript_mark_begin, - [22425] = 2, - ACTIONS(2044), 1, + [22947] = 2, + ACTIONS(2072), 1, sym__emphasis_mark_begin, - ACTIONS(2047), 1, + ACTIONS(2075), 1, sym__in_fallback, - [22432] = 2, - ACTIONS(2047), 1, + [22954] = 2, + ACTIONS(2075), 1, sym__in_fallback, - ACTIONS(2049), 1, + ACTIONS(2077), 1, sym__strong_mark_begin, - [22439] = 2, - ACTIONS(2047), 1, + [22961] = 2, + ACTIONS(2075), 1, sym__in_fallback, - ACTIONS(2052), 1, + ACTIONS(2080), 1, sym__superscript_mark_begin, - [22446] = 2, - ACTIONS(2047), 1, + [22968] = 2, + ACTIONS(2075), 1, sym__in_fallback, - ACTIONS(2055), 1, + ACTIONS(2083), 1, sym__subscript_mark_begin, - [22453] = 2, - ACTIONS(2047), 1, + [22975] = 2, + ACTIONS(2075), 1, sym__in_fallback, - ACTIONS(2058), 1, + ACTIONS(2086), 1, sym__highlighted_mark_begin, - [22460] = 2, - ACTIONS(2047), 1, + [22982] = 2, + ACTIONS(2075), 1, sym__in_fallback, - ACTIONS(2061), 1, + ACTIONS(2089), 1, sym__insert_mark_begin, - [22467] = 2, - ACTIONS(2047), 1, + [22989] = 2, + ACTIONS(2075), 1, sym__in_fallback, - ACTIONS(2064), 1, + ACTIONS(2092), 1, sym__delete_mark_begin, - [22474] = 2, - ACTIONS(2036), 1, + [22996] = 2, + ACTIONS(2095), 1, + sym__inline_attribute_mark_begin, + ACTIONS(2098), 1, sym__in_fallback, - ACTIONS(2067), 1, - sym__highlighted_mark_begin, - [22481] = 2, - ACTIONS(2047), 1, + [23003] = 2, + ACTIONS(2075), 1, sym__in_fallback, - ACTIONS(2070), 1, + ACTIONS(2100), 1, + sym__footnote_marker_mark_begin, + [23010] = 2, + ACTIONS(2075), 1, + sym__in_fallback, + ACTIONS(2103), 1, sym__image_description_mark_begin, - [22488] = 2, - ACTIONS(2047), 1, + [23017] = 2, + ACTIONS(2075), 1, sym__in_fallback, - ACTIONS(2073), 1, + ACTIONS(2106), 1, sym__bracketed_text_mark_begin, - [22495] = 2, - ACTIONS(1848), 1, - sym__in_fallback, - ACTIONS(2076), 1, - sym__delete_mark_begin, - [22502] = 2, - ACTIONS(1848), 1, - sym__in_fallback, - ACTIONS(2079), 1, - sym__insert_mark_begin, - [22509] = 2, - ACTIONS(1848), 1, + [23024] = 2, + ACTIONS(1875), 1, sym__in_fallback, - ACTIONS(2082), 1, - sym__highlighted_mark_begin, - [22516] = 2, - ACTIONS(1843), 1, - anon_sym_PERCENT, - STATE(1002), 1, - sym__comment_with_newline, - [22523] = 2, - ACTIONS(2085), 1, - sym__emphasis_mark_begin, - ACTIONS(2088), 1, - sym__in_fallback, - [22530] = 2, - ACTIONS(2088), 1, - sym__in_fallback, - ACTIONS(2090), 1, - sym__strong_mark_begin, - [22537] = 2, - ACTIONS(2093), 1, - sym__inline_attribute_mark_begin, - ACTIONS(2096), 1, - sym__in_fallback, - [22544] = 2, - ACTIONS(1886), 1, - sym__id, - STATE(1011), 1, - sym_reference_label, - [22551] = 2, - ACTIONS(2036), 1, - sym__in_fallback, - ACTIONS(2098), 1, + ACTIONS(2109), 1, sym__insert_mark_begin, - [22558] = 2, - ACTIONS(1848), 1, - sym__in_fallback, - ACTIONS(2101), 1, - sym__subscript_mark_begin, - [22565] = 2, - ACTIONS(2036), 1, + [23031] = 2, + ACTIONS(1875), 1, sym__in_fallback, - ACTIONS(2104), 1, - sym__delete_mark_begin, - [22572] = 2, - ACTIONS(2107), 1, - sym__inline_attribute_mark_begin, - ACTIONS(2110), 1, - sym__in_fallback, - [22579] = 2, ACTIONS(2112), 1, - sym__strong_mark_begin, - ACTIONS(2115), 1, + sym__highlighted_mark_begin, + [23038] = 2, + ACTIONS(1875), 1, sym__in_fallback, - [22586] = 2, ACTIONS(2115), 1, - sym__in_fallback, - ACTIONS(2117), 1, + sym__subscript_mark_begin, + [23045] = 2, + ACTIONS(1915), 1, + anon_sym_PERCENT, + STATE(901), 1, + sym__comment_with_newline, + [23052] = 2, + ACTIONS(2118), 1, sym__emphasis_mark_begin, - [22593] = 2, - ACTIONS(2036), 1, + ACTIONS(2121), 1, sym__in_fallback, - ACTIONS(2120), 1, - sym__image_description_mark_begin, - [22600] = 2, - ACTIONS(2036), 1, + [23059] = 2, + ACTIONS(2121), 1, sym__in_fallback, ACTIONS(2123), 1, - sym__bracketed_text_mark_begin, - [22607] = 2, + sym__strong_mark_begin, + [23066] = 2, ACTIONS(2126), 1, - sym__bracketed_text_mark_begin, + sym__inline_attribute_mark_begin, ACTIONS(2129), 1, sym__in_fallback, - [22614] = 2, - ACTIONS(2129), 1, + [23073] = 2, + ACTIONS(1875), 1, sym__in_fallback, ACTIONS(2131), 1, - sym__image_description_mark_begin, - [22621] = 2, - ACTIONS(2129), 1, - sym__in_fallback, + sym__superscript_mark_begin, + [23080] = 2, + ACTIONS(1893), 1, + sym__id, + STATE(999), 1, + sym_reference_label, + [23087] = 2, ACTIONS(2134), 1, - sym__delete_mark_begin, - [22628] = 2, - ACTIONS(2129), 1, + sym__emphasis_mark_begin, + ACTIONS(2137), 1, sym__in_fallback, + [23094] = 2, ACTIONS(2137), 1, - sym__insert_mark_begin, - [22635] = 2, - ACTIONS(2129), 1, sym__in_fallback, - ACTIONS(2140), 1, - sym__highlighted_mark_begin, - [22642] = 2, - ACTIONS(1848), 1, + ACTIONS(2139), 1, + sym__strong_mark_begin, + [23101] = 2, + ACTIONS(2137), 1, sym__in_fallback, - ACTIONS(2143), 1, + ACTIONS(2142), 1, sym__superscript_mark_begin, - [22649] = 2, - ACTIONS(2129), 1, + [23108] = 2, + ACTIONS(2137), 1, sym__in_fallback, - ACTIONS(2146), 1, + ACTIONS(2145), 1, sym__subscript_mark_begin, - [22656] = 2, - ACTIONS(2149), 1, - sym__emphasis_mark_begin, - ACTIONS(2152), 1, + [23115] = 2, + ACTIONS(1915), 1, + anon_sym_PERCENT, + STATE(1015), 1, + sym__comment_with_newline, + [23122] = 2, + ACTIONS(2137), 1, sym__in_fallback, - [22663] = 2, - ACTIONS(2152), 1, + ACTIONS(2148), 1, + sym__highlighted_mark_begin, + [23129] = 2, + ACTIONS(1875), 1, sym__in_fallback, - ACTIONS(2154), 1, - sym__strong_mark_begin, - [22670] = 2, - ACTIONS(2152), 1, + ACTIONS(2151), 1, + sym__footnote_marker_mark_begin, + [23136] = 2, + ACTIONS(2137), 1, sym__in_fallback, + ACTIONS(2154), 1, + sym__insert_mark_begin, + [23143] = 2, ACTIONS(2157), 1, - sym__superscript_mark_begin, - [22677] = 2, - ACTIONS(2152), 1, - sym__in_fallback, + sym__inline_attribute_mark_begin, ACTIONS(2160), 1, - sym__subscript_mark_begin, - [22684] = 2, - ACTIONS(2152), 1, sym__in_fallback, - ACTIONS(2163), 1, - sym__highlighted_mark_begin, - [22691] = 2, - ACTIONS(2152), 1, + [23150] = 2, + ACTIONS(2162), 1, + sym__strong_mark_begin, + ACTIONS(2165), 1, sym__in_fallback, - ACTIONS(2166), 1, - sym__insert_mark_begin, - [22698] = 2, - ACTIONS(2152), 1, + [23157] = 2, + ACTIONS(2165), 1, sym__in_fallback, - ACTIONS(2169), 1, - sym__delete_mark_begin, - [22705] = 2, - ACTIONS(2129), 1, + ACTIONS(2167), 1, + sym__emphasis_mark_begin, + [23164] = 2, + ACTIONS(1875), 1, sym__in_fallback, - ACTIONS(2172), 1, - sym__superscript_mark_begin, - [22712] = 2, - ACTIONS(2152), 1, + ACTIONS(2170), 1, + sym__strong_mark_begin, + [23171] = 2, + ACTIONS(2137), 1, sym__in_fallback, - ACTIONS(2175), 1, - sym__image_description_mark_begin, - [22719] = 2, - ACTIONS(2152), 1, + ACTIONS(2173), 1, + sym__delete_mark_begin, + [23178] = 2, + ACTIONS(2176), 1, + sym__emphasis_mark_begin, + ACTIONS(2179), 1, sym__in_fallback, - ACTIONS(2178), 1, - sym__bracketed_text_mark_begin, - [22726] = 2, - ACTIONS(1848), 1, + [23185] = 2, + ACTIONS(2179), 1, sym__in_fallback, ACTIONS(2181), 1, sym__strong_mark_begin, - [22733] = 2, - ACTIONS(1848), 1, + [23192] = 2, + ACTIONS(2179), 1, sym__in_fallback, ACTIONS(2184), 1, - sym__emphasis_mark_begin, - [22740] = 2, - ACTIONS(2129), 1, + sym__superscript_mark_begin, + [23199] = 2, + ACTIONS(2179), 1, sym__in_fallback, ACTIONS(2187), 1, - sym__strong_mark_begin, - [22747] = 2, - ACTIONS(2129), 1, + sym__subscript_mark_begin, + [23206] = 2, + ACTIONS(2179), 1, sym__in_fallback, ACTIONS(2190), 1, - sym__emphasis_mark_begin, - [22754] = 2, + sym__highlighted_mark_begin, + [23213] = 2, + ACTIONS(2179), 1, + sym__in_fallback, ACTIONS(2193), 1, - sym__emphasis_mark_begin, - ACTIONS(2196), 1, + sym__insert_mark_begin, + [23220] = 2, + ACTIONS(2179), 1, sym__in_fallback, - [22761] = 2, ACTIONS(2196), 1, + sym__delete_mark_begin, + [23227] = 2, + ACTIONS(2137), 1, sym__in_fallback, - ACTIONS(2198), 1, - sym__strong_mark_begin, - [22768] = 2, - ACTIONS(2201), 1, - sym__inline_attribute_mark_begin, - ACTIONS(2204), 1, + ACTIONS(2199), 1, + sym__footnote_marker_mark_begin, + [23234] = 2, + ACTIONS(2179), 1, sym__in_fallback, - [22775] = 2, - ACTIONS(2206), 1, - sym__emphasis_mark_begin, - ACTIONS(2209), 1, + ACTIONS(2202), 1, + sym__footnote_marker_mark_begin, + [23241] = 2, + ACTIONS(2179), 1, + sym__in_fallback, + ACTIONS(2205), 1, + sym__image_description_mark_begin, + [23248] = 2, + ACTIONS(2179), 1, + sym__in_fallback, + ACTIONS(2208), 1, + sym__bracketed_text_mark_begin, + [23255] = 2, + ACTIONS(1875), 1, sym__in_fallback, - [22782] = 2, ACTIONS(2211), 1, - sym__inline_attribute_mark_begin, + sym__emphasis_mark_begin, + [23262] = 2, ACTIONS(2214), 1, + sym__bracketed_text_mark_begin, + ACTIONS(2217), 1, sym__in_fallback, - [22789] = 2, - ACTIONS(2216), 1, - sym__strong_mark_begin, - ACTIONS(2219), 1, + [23269] = 2, + ACTIONS(2217), 1, sym__in_fallback, - [22796] = 2, ACTIONS(2219), 1, + sym__image_description_mark_begin, + [23276] = 2, + ACTIONS(2217), 1, sym__in_fallback, - ACTIONS(2221), 1, + ACTIONS(2222), 1, + sym__footnote_marker_mark_begin, + [23283] = 2, + ACTIONS(2225), 1, sym__emphasis_mark_begin, - [22803] = 2, - ACTIONS(2209), 1, + ACTIONS(2228), 1, sym__in_fallback, - ACTIONS(2224), 1, + [23290] = 2, + ACTIONS(2228), 1, + sym__in_fallback, + ACTIONS(2230), 1, sym__strong_mark_begin, - [22810] = 2, - ACTIONS(2227), 1, + [23297] = 2, + ACTIONS(2233), 1, sym__inline_attribute_mark_begin, - ACTIONS(2230), 1, - sym__in_fallback, - [22817] = 2, - ACTIONS(2232), 1, - sym__bracketed_text_mark_begin, - ACTIONS(2235), 1, - sym__in_fallback, - [22824] = 2, - ACTIONS(2235), 1, + ACTIONS(2236), 1, sym__in_fallback, - ACTIONS(2237), 1, - sym__image_description_mark_begin, - [22831] = 2, - ACTIONS(2235), 1, + [23304] = 2, + ACTIONS(2217), 1, sym__in_fallback, - ACTIONS(2240), 1, + ACTIONS(2238), 1, sym__delete_mark_begin, - [22838] = 2, - ACTIONS(2235), 1, + [23311] = 2, + ACTIONS(2217), 1, sym__in_fallback, - ACTIONS(2243), 1, + ACTIONS(2241), 1, sym__insert_mark_begin, - [22845] = 2, - ACTIONS(2235), 1, + [23318] = 2, + ACTIONS(2217), 1, sym__in_fallback, - ACTIONS(2246), 1, + ACTIONS(2244), 1, sym__highlighted_mark_begin, - [22852] = 2, - ACTIONS(2235), 1, + [23325] = 2, + ACTIONS(2217), 1, sym__in_fallback, - ACTIONS(2249), 1, + ACTIONS(2247), 1, sym__subscript_mark_begin, - [22859] = 2, - ACTIONS(2235), 1, + [23332] = 2, + ACTIONS(2217), 1, sym__in_fallback, - ACTIONS(2252), 1, + ACTIONS(2250), 1, sym__superscript_mark_begin, - [22866] = 2, - ACTIONS(2235), 1, + [23339] = 2, + ACTIONS(2217), 1, sym__in_fallback, - ACTIONS(2255), 1, + ACTIONS(2253), 1, sym__strong_mark_begin, - [22873] = 2, - ACTIONS(2235), 1, + [23346] = 2, + ACTIONS(2217), 1, sym__in_fallback, - ACTIONS(2258), 1, + ACTIONS(2256), 1, sym__emphasis_mark_begin, - [22880] = 2, - ACTIONS(2261), 1, + [23353] = 2, + ACTIONS(2137), 1, + sym__in_fallback, + ACTIONS(2259), 1, + sym__image_description_mark_begin, + [23360] = 2, + ACTIONS(2137), 1, + sym__in_fallback, + ACTIONS(2262), 1, + sym__bracketed_text_mark_begin, + [23367] = 2, + ACTIONS(2265), 1, sym__inline_attribute_mark_begin, - ACTIONS(2264), 1, + ACTIONS(2268), 1, + sym__in_fallback, + [23374] = 2, + ACTIONS(2270), 1, + sym__strong_mark_begin, + ACTIONS(2273), 1, + sym__in_fallback, + [23381] = 2, + ACTIONS(2273), 1, + sym__in_fallback, + ACTIONS(2275), 1, + sym__emphasis_mark_begin, + [23388] = 2, + ACTIONS(2278), 1, + sym__emphasis_mark_begin, + ACTIONS(2281), 1, + sym__in_fallback, + [23395] = 2, + ACTIONS(2281), 1, + sym__in_fallback, + ACTIONS(2283), 1, + sym__strong_mark_begin, + [23402] = 2, + ACTIONS(2286), 1, + sym__bracketed_text_mark_begin, + ACTIONS(2289), 1, sym__in_fallback, - [22887] = 2, - ACTIONS(2266), 1, + [23409] = 2, + ACTIONS(2291), 1, sym__emphasis_mark_begin, - ACTIONS(2269), 1, + ACTIONS(2294), 1, sym__in_fallback, - [22894] = 2, - ACTIONS(2269), 1, + [23416] = 2, + ACTIONS(2294), 1, sym__in_fallback, - ACTIONS(2271), 1, + ACTIONS(2296), 1, sym__strong_mark_begin, - [22901] = 2, - ACTIONS(2269), 1, + [23423] = 2, + ACTIONS(2294), 1, sym__in_fallback, - ACTIONS(2274), 1, + ACTIONS(2299), 1, sym__superscript_mark_begin, - [22908] = 2, - ACTIONS(2269), 1, + [23430] = 2, + ACTIONS(2294), 1, sym__in_fallback, - ACTIONS(2277), 1, + ACTIONS(2302), 1, sym__subscript_mark_begin, - [22915] = 2, - ACTIONS(2269), 1, + [23437] = 2, + ACTIONS(2294), 1, sym__in_fallback, - ACTIONS(2280), 1, + ACTIONS(2305), 1, sym__highlighted_mark_begin, - [22922] = 2, - ACTIONS(2269), 1, + [23444] = 2, + ACTIONS(2294), 1, sym__in_fallback, - ACTIONS(2283), 1, + ACTIONS(2308), 1, sym__insert_mark_begin, - [22929] = 2, - ACTIONS(2269), 1, + [23451] = 2, + ACTIONS(2294), 1, sym__in_fallback, - ACTIONS(2286), 1, + ACTIONS(2311), 1, sym__delete_mark_begin, - [22936] = 2, + [23458] = 2, ACTIONS(2289), 1, - sym__strong_mark_begin, - ACTIONS(2292), 1, sym__in_fallback, - [22943] = 2, - ACTIONS(2269), 1, + ACTIONS(2314), 1, + sym__image_description_mark_begin, + [23465] = 2, + ACTIONS(2294), 1, sym__in_fallback, + ACTIONS(2317), 1, + sym__footnote_marker_mark_begin, + [23472] = 2, ACTIONS(2294), 1, + sym__in_fallback, + ACTIONS(2320), 1, sym__image_description_mark_begin, - [22950] = 2, - ACTIONS(2269), 1, + [23479] = 2, + ACTIONS(2294), 1, sym__in_fallback, - ACTIONS(2297), 1, + ACTIONS(2323), 1, sym__bracketed_text_mark_begin, - [22957] = 2, - ACTIONS(2292), 1, + [23486] = 2, + ACTIONS(2289), 1, sym__in_fallback, - ACTIONS(2300), 1, - sym__emphasis_mark_begin, - [22964] = 2, - ACTIONS(2036), 1, + ACTIONS(2326), 1, + sym__footnote_marker_mark_begin, + [23493] = 2, + ACTIONS(2289), 1, sym__in_fallback, - ACTIONS(2303), 1, - sym__strong_mark_begin, - [22971] = 2, - ACTIONS(2306), 1, - sym__bracketed_text_mark_begin, - ACTIONS(2309), 1, + ACTIONS(2329), 1, + sym__delete_mark_begin, + [23500] = 2, + ACTIONS(2289), 1, sym__in_fallback, - [22978] = 2, - ACTIONS(2309), 1, + ACTIONS(2332), 1, + sym__insert_mark_begin, + [23507] = 2, + ACTIONS(2289), 1, sym__in_fallback, - ACTIONS(2311), 1, - sym__image_description_mark_begin, - [22985] = 2, - ACTIONS(2314), 1, + ACTIONS(2335), 1, + sym__highlighted_mark_begin, + [23514] = 2, + ACTIONS(2338), 1, sym__emphasis_mark_begin, - ACTIONS(2317), 1, + ACTIONS(2341), 1, sym__in_fallback, - [22992] = 2, - ACTIONS(2317), 1, + [23521] = 2, + ACTIONS(2341), 1, sym__in_fallback, - ACTIONS(2319), 1, + ACTIONS(2343), 1, sym__strong_mark_begin, - [22999] = 2, - ACTIONS(2322), 1, + [23528] = 2, + ACTIONS(2346), 1, sym__inline_attribute_mark_begin, - ACTIONS(2325), 1, - sym__in_fallback, - [23006] = 2, - ACTIONS(2309), 1, - sym__in_fallback, - ACTIONS(2327), 1, - sym__delete_mark_begin, - [23013] = 2, - ACTIONS(2309), 1, - sym__in_fallback, - ACTIONS(2330), 1, - sym__insert_mark_begin, - [23020] = 2, - ACTIONS(2309), 1, + ACTIONS(2349), 1, sym__in_fallback, - ACTIONS(2333), 1, - sym__highlighted_mark_begin, - [23027] = 2, - ACTIONS(2309), 1, + [23535] = 2, + ACTIONS(2289), 1, sym__in_fallback, - ACTIONS(2336), 1, + ACTIONS(2351), 1, sym__subscript_mark_begin, - [23034] = 2, - ACTIONS(2309), 1, + [23542] = 2, + ACTIONS(2289), 1, sym__in_fallback, - ACTIONS(2339), 1, + ACTIONS(2354), 1, sym__superscript_mark_begin, - [23041] = 2, - ACTIONS(2309), 1, + [23549] = 2, + ACTIONS(2289), 1, sym__in_fallback, - ACTIONS(2342), 1, + ACTIONS(2357), 1, sym__strong_mark_begin, - [23048] = 2, - ACTIONS(2309), 1, + [23556] = 2, + ACTIONS(2289), 1, sym__in_fallback, - ACTIONS(2345), 1, - sym__emphasis_mark_begin, - [23055] = 1, - ACTIONS(2348), 1, - sym_superscript_end, - [23059] = 1, - ACTIONS(2350), 1, - sym_subscript_end, - [23063] = 1, - ACTIONS(2352), 1, - sym_highlighted_end, - [23067] = 1, - ACTIONS(2354), 1, - sym_insert_end, - [23071] = 1, - ACTIONS(2356), 1, - sym_delete_end, - [23075] = 1, - ACTIONS(2358), 1, - anon_sym_RBRACK2, - [23079] = 1, ACTIONS(2360), 1, - anon_sym_RPAREN, - [23083] = 1, - ACTIONS(2362), 1, - sym_superscript_end, - [23087] = 1, - ACTIONS(2364), 1, - anon_sym_RBRACE, - [23091] = 1, + sym__emphasis_mark_begin, + [23563] = 2, + ACTIONS(2363), 1, + sym__inline_attribute_mark_begin, ACTIONS(2366), 1, - sym_strong_end, - [23095] = 1, + sym__in_fallback, + [23570] = 2, ACTIONS(2368), 1, - sym_emphasis_end, - [23099] = 1, - ACTIONS(2370), 1, - anon_sym_RBRACE, - [23103] = 1, - ACTIONS(2372), 1, - sym__verbatim_end, - [23107] = 1, - ACTIONS(2374), 1, - sym_subscript_end, - [23111] = 1, + sym__inline_attribute_mark_begin, + ACTIONS(2371), 1, + sym__in_fallback, + [23577] = 2, + ACTIONS(2373), 1, + sym__strong_mark_begin, ACTIONS(2376), 1, - anon_sym_RBRACK, - [23115] = 1, + sym__in_fallback, + [23584] = 2, + ACTIONS(2376), 1, + sym__in_fallback, ACTIONS(2378), 1, - anon_sym_GT, - [23119] = 1, - ACTIONS(2380), 1, - sym__newline, - [23123] = 1, - ACTIONS(2382), 1, - sym__verbatim_end, - [23127] = 1, + sym__emphasis_mark_begin, + [23591] = 2, + ACTIONS(1870), 1, + sym__in_fallback, + ACTIONS(2381), 1, + sym__bracketed_text_mark_begin, + [23598] = 2, + ACTIONS(1870), 1, + sym__in_fallback, ACTIONS(2384), 1, - sym_highlighted_end, - [23131] = 1, - ACTIONS(2386), 1, - sym_insert_end, - [23135] = 1, - ACTIONS(2388), 1, - sym_emphasis_end, - [23139] = 1, + sym__image_description_mark_begin, + [23605] = 2, + ACTIONS(1870), 1, + sym__in_fallback, + ACTIONS(2387), 1, + sym__footnote_marker_mark_begin, + [23612] = 2, + ACTIONS(1870), 1, + sym__in_fallback, ACTIONS(2390), 1, - anon_sym_RBRACE, - [23143] = 1, - ACTIONS(2392), 1, - sym__verbatim_end, - [23147] = 1, - ACTIONS(2394), 1, - sym_delete_end, - [23151] = 1, + sym__subscript_mark_begin, + [23619] = 2, + ACTIONS(1870), 1, + sym__in_fallback, + ACTIONS(2393), 1, + sym__highlighted_mark_begin, + [23626] = 2, + ACTIONS(1870), 1, + sym__in_fallback, ACTIONS(2396), 1, - sym__newline, - [23155] = 1, - ACTIONS(2398), 1, - anon_sym_RBRACE, - [23159] = 1, - ACTIONS(2400), 1, - anon_sym_GT, - [23163] = 1, + sym__insert_mark_begin, + [23633] = 2, + ACTIONS(1870), 1, + sym__in_fallback, + ACTIONS(2399), 1, + sym__delete_mark_begin, + [23640] = 2, + ACTIONS(1870), 1, + sym__in_fallback, ACTIONS(2402), 1, - anon_sym_RBRACK, - [23167] = 1, - ACTIONS(2404), 1, - sym__verbatim_end, - [23171] = 1, - ACTIONS(2406), 1, - sym__verbatim_end, - [23175] = 1, + sym__emphasis_mark_begin, + [23647] = 2, + ACTIONS(1870), 1, + sym__in_fallback, + ACTIONS(2405), 1, + sym__strong_mark_begin, + [23654] = 1, ACTIONS(2408), 1, anon_sym_RBRACE, - [23179] = 1, + [23658] = 1, ACTIONS(2410), 1, - sym_emphasis_end, - [23183] = 1, + sym__verbatim_content, + [23662] = 1, ACTIONS(2412), 1, - sym_strong_end, - [23187] = 1, + anon_sym_RPAREN, + [23666] = 1, ACTIONS(2414), 1, sym_superscript_end, - [23191] = 1, + [23670] = 1, ACTIONS(2416), 1, - sym_subscript_end, - [23195] = 1, + anon_sym_RBRACE, + [23674] = 1, ACTIONS(2418), 1, - sym_highlighted_end, - [23199] = 1, + sym__newline, + [23678] = 1, ACTIONS(2420), 1, - sym_insert_end, - [23203] = 1, + sym_emphasis_end, + [23682] = 1, ACTIONS(2422), 1, - sym_delete_end, - [23207] = 1, + sym_footnote_marker_end, + [23686] = 1, ACTIONS(2424), 1, - anon_sym_RBRACK2, - [23211] = 1, + sym_delete_end, + [23690] = 1, ACTIONS(2426), 1, - anon_sym_RPAREN, - [23215] = 1, + sym_subscript_end, + [23694] = 1, ACTIONS(2428), 1, - anon_sym_RBRACK, - [23219] = 1, + sym_emphasis_end, + [23698] = 1, ACTIONS(2430), 1, anon_sym_RBRACE, - [23223] = 1, + [23702] = 1, ACTIONS(2432), 1, - anon_sym_RBRACK2, - [23227] = 1, + sym__verbatim_end, + [23706] = 1, ACTIONS(2434), 1, - anon_sym_RPAREN, - [23231] = 1, + sym_insert_end, + [23710] = 1, ACTIONS(2436), 1, - anon_sym_RBRACK2, - [23235] = 1, + sym_highlighted_end, + [23714] = 1, ACTIONS(2438), 1, - sym_delete_end, - [23239] = 1, + sym_subscript_end, + [23718] = 1, ACTIONS(2440), 1, - sym_insert_end, - [23243] = 1, + sym__verbatim_end, + [23722] = 1, ACTIONS(2442), 1, - sym_highlighted_end, - [23247] = 1, + sym__verbatim_end, + [23726] = 1, ACTIONS(2444), 1, - sym_subscript_end, - [23251] = 1, + anon_sym_RBRACE, + [23730] = 1, ACTIONS(2446), 1, - sym__newline, - [23255] = 1, + sym_emphasis_end, + [23734] = 1, ACTIONS(2448), 1, - sym_superscript_end, - [23259] = 1, - ACTIONS(2450), 1, sym_strong_end, - [23263] = 1, + [23738] = 1, + ACTIONS(2450), 1, + sym_superscript_end, + [23742] = 1, ACTIONS(2452), 1, - anon_sym_GT, - [23267] = 1, + sym_subscript_end, + [23746] = 1, ACTIONS(2454), 1, - sym_emphasis_end, - [23271] = 1, + sym_highlighted_end, + [23750] = 1, ACTIONS(2456), 1, - anon_sym_RBRACE, - [23275] = 1, + sym_insert_end, + [23754] = 1, ACTIONS(2458), 1, - sym__verbatim_end, - [23279] = 1, + sym_delete_end, + [23758] = 1, ACTIONS(2460), 1, - sym__verbatim_end, - [23283] = 1, + sym_footnote_marker_end, + [23762] = 1, ACTIONS(2462), 1, - anon_sym_RPAREN, - [23287] = 1, - ACTIONS(2464), 1, anon_sym_RBRACK, - [23291] = 1, + [23766] = 1, + ACTIONS(2464), 1, + anon_sym_RPAREN, + [23770] = 1, ACTIONS(2466), 1, - anon_sym_GT, - [23295] = 1, + sym_superscript_end, + [23774] = 1, ACTIONS(2468), 1, - anon_sym_RBRACK, - [23299] = 1, + anon_sym_RBRACE, + [23778] = 1, ACTIONS(2470), 1, - anon_sym_GT, - [23303] = 1, + sym_strong_end, + [23782] = 1, ACTIONS(2472), 1, - sym__verbatim_end, - [23307] = 1, + sym_emphasis_end, + [23786] = 1, ACTIONS(2474), 1, anon_sym_RBRACE, - [23311] = 1, + [23790] = 1, ACTIONS(2476), 1, - sym_emphasis_end, - [23315] = 1, + sym__verbatim_end, + [23794] = 1, ACTIONS(2478), 1, - sym_strong_end, - [23319] = 1, + sym_subscript_end, + [23798] = 1, ACTIONS(2480), 1, - sym_superscript_end, - [23323] = 1, + sym__verbatim_end, + [23802] = 1, ACTIONS(2482), 1, - sym_subscript_end, - [23327] = 1, - ACTIONS(2484), 1, sym_highlighted_end, - [23331] = 1, + [23806] = 1, + ACTIONS(2484), 1, + sym__newline, + [23810] = 1, ACTIONS(2486), 1, sym_insert_end, - [23335] = 1, + [23814] = 1, ACTIONS(2488), 1, sym_delete_end, - [23339] = 1, + [23818] = 1, ACTIONS(2490), 1, - anon_sym_RBRACK2, - [23343] = 1, + sym__newline, + [23822] = 1, ACTIONS(2492), 1, - anon_sym_RPAREN, - [23347] = 1, + anon_sym_RBRACE, + [23826] = 1, ACTIONS(2494), 1, - sym__verbatim_end, - [23351] = 1, + sym_footnote_marker_end, + [23830] = 1, ACTIONS(2496), 1, - anon_sym_RBRACE, - [23355] = 1, + sym__verbatim_end, + [23834] = 1, ACTIONS(2498), 1, sym__verbatim_end, - [23359] = 1, + [23838] = 1, ACTIONS(2500), 1, - anon_sym_RBRACE, - [23363] = 1, + anon_sym_RPAREN, + [23842] = 1, ACTIONS(2502), 1, - sym__newline, - [23367] = 1, + anon_sym_RBRACK, + [23846] = 1, ACTIONS(2504), 1, - anon_sym_RBRACE, - [23371] = 1, + sym_footnote_marker_end, + [23850] = 1, ACTIONS(2506), 1, - anon_sym_RPAREN, - [23375] = 1, + sym_delete_end, + [23854] = 1, ACTIONS(2508), 1, - anon_sym_RBRACK2, - [23379] = 1, + sym__verbatim_end, + [23858] = 1, ACTIONS(2510), 1, - sym_delete_end, - [23383] = 1, + anon_sym_RBRACE, + [23862] = 1, ACTIONS(2512), 1, - sym__newline, - [23387] = 1, + sym_emphasis_end, + [23866] = 1, ACTIONS(2514), 1, - sym_insert_end, - [23391] = 1, + sym_strong_end, + [23870] = 1, ACTIONS(2516), 1, - sym_highlighted_end, - [23395] = 1, + sym_superscript_end, + [23874] = 1, ACTIONS(2518), 1, sym_subscript_end, - [23399] = 1, + [23878] = 1, ACTIONS(2520), 1, - sym_superscript_end, - [23403] = 1, + sym_highlighted_end, + [23882] = 1, ACTIONS(2522), 1, - sym__newline, - [23407] = 1, + sym_insert_end, + [23886] = 1, ACTIONS(2524), 1, - sym__verbatim_end, - [23411] = 1, + sym_delete_end, + [23890] = 1, ACTIONS(2526), 1, - sym_strong_end, - [23415] = 1, + sym_footnote_marker_end, + [23894] = 1, ACTIONS(2528), 1, - sym_emphasis_end, - [23419] = 1, + anon_sym_RBRACK, + [23898] = 1, ACTIONS(2530), 1, - anon_sym_RBRACE, - [23423] = 1, + anon_sym_RPAREN, + [23902] = 1, ACTIONS(2532), 1, - anon_sym_GT, - [23427] = 1, + sym_insert_end, + [23906] = 1, ACTIONS(2534), 1, - anon_sym_RBRACK, - [23431] = 1, + anon_sym_RBRACE, + [23910] = 1, ACTIONS(2536), 1, - sym__verbatim_end, - [23435] = 1, + sym_highlighted_end, + [23914] = 1, ACTIONS(2538), 1, - sym__verbatim_end, - [23439] = 1, + sym_subscript_end, + [23918] = 1, ACTIONS(2540), 1, - anon_sym_RBRACE, - [23443] = 1, + sym_superscript_end, + [23922] = 1, ACTIONS(2542), 1, - sym_emphasis_end, - [23447] = 1, - ACTIONS(2544), 1, sym_strong_end, - [23451] = 1, + [23926] = 1, + ACTIONS(2544), 1, + anon_sym_RPAREN, + [23930] = 1, ACTIONS(2546), 1, - sym_superscript_end, - [23455] = 1, + anon_sym_RBRACE, + [23934] = 1, ACTIONS(2548), 1, - sym_subscript_end, - [23459] = 1, + sym__verbatim_end, + [23938] = 1, ACTIONS(2550), 1, - sym_highlighted_end, - [23463] = 1, + sym__newline, + [23942] = 1, ACTIONS(2552), 1, - sym_insert_end, - [23467] = 1, + anon_sym_RBRACK, + [23946] = 1, ACTIONS(2554), 1, - sym_delete_end, - [23471] = 1, + sym__verbatim_end, + [23950] = 1, ACTIONS(2556), 1, - anon_sym_RBRACK2, - [23475] = 1, - ACTIONS(2558), 1, anon_sym_RPAREN, - [23479] = 1, + [23954] = 1, + ACTIONS(2558), 1, + anon_sym_RBRACE, + [23958] = 1, ACTIONS(2560), 1, - anon_sym_RBRACK, - [23483] = 1, + sym__newline, + [23962] = 1, ACTIONS(2562), 1, - anon_sym_RBRACE, - [23487] = 1, + sym__newline, + [23966] = 1, ACTIONS(2564), 1, - sym__verbatim_content, - [23491] = 1, + sym__verbatim_end, + [23970] = 1, ACTIONS(2566), 1, - anon_sym_GT, - [23495] = 1, + anon_sym_RBRACE, + [23974] = 1, ACTIONS(2568), 1, - sym__inline_attribute_mark_begin, - [23499] = 1, + anon_sym_RPAREN, + [23978] = 1, ACTIONS(2570), 1, - sym__verbatim_content, - [23503] = 1, + anon_sym_RBRACK, + [23982] = 1, ACTIONS(2572), 1, - sym__verbatim_end, - [23507] = 1, + sym_footnote_marker_end, + [23986] = 1, ACTIONS(2574), 1, - sym__newline, - [23511] = 1, + sym__verbatim_end, + [23990] = 1, ACTIONS(2576), 1, - anon_sym_RBRACE, - [23515] = 1, + sym_delete_end, + [23994] = 1, ACTIONS(2578), 1, - sym_strong_end, - [23519] = 1, + sym_emphasis_end, + [23998] = 1, ACTIONS(2580), 1, - sym__verbatim_end, - [23523] = 1, + sym_strong_end, + [24002] = 1, ACTIONS(2582), 1, - anon_sym_RPAREN, - [23527] = 1, + sym_superscript_end, + [24006] = 1, ACTIONS(2584), 1, - anon_sym_RBRACE, - [23531] = 1, + sym_subscript_end, + [24010] = 1, ACTIONS(2586), 1, - anon_sym_RPAREN, - [23535] = 1, + sym_highlighted_end, + [24014] = 1, ACTIONS(2588), 1, - anon_sym_RBRACK2, - [23539] = 1, + sym_insert_end, + [24018] = 1, ACTIONS(2590), 1, - aux_sym_inline_link_destination_token1, - [23543] = 1, + sym_delete_end, + [24022] = 1, ACTIONS(2592), 1, - sym__whitespace, - [23547] = 1, + sym_footnote_marker_end, + [24026] = 1, ACTIONS(2594), 1, - sym_language, - [23551] = 1, + anon_sym_RBRACK, + [24030] = 1, ACTIONS(2596), 1, - sym__verbatim_content, - [23555] = 1, + anon_sym_RPAREN, + [24034] = 1, ACTIONS(2598), 1, - anon_sym_RBRACK2, - [23559] = 1, + sym_insert_end, + [24038] = 1, ACTIONS(2600), 1, - sym__inline_attribute_mark_begin, - [23563] = 1, + anon_sym_RBRACE, + [24042] = 1, ACTIONS(2602), 1, sym__verbatim_content, - [23567] = 1, + [24046] = 1, ACTIONS(2604), 1, - sym_delete_end, - [23571] = 1, + sym__inline_attribute_mark_begin, + [24050] = 1, ACTIONS(2606), 1, - sym_delete_end, - [23575] = 1, + sym__verbatim_content, + [24054] = 1, ACTIONS(2608), 1, - sym_insert_end, - [23579] = 1, - ACTIONS(2610), 1, sym_highlighted_end, - [23583] = 1, - ACTIONS(2612), 1, + [24058] = 1, + ACTIONS(2610), 1, sym_subscript_end, - [23587] = 1, - ACTIONS(2614), 1, + [24062] = 1, + ACTIONS(2612), 1, sym_superscript_end, - [23591] = 1, - ACTIONS(2616), 1, + [24066] = 1, + ACTIONS(2614), 1, sym_strong_end, - [23595] = 1, - ACTIONS(2618), 1, + [24070] = 1, + ACTIONS(2616), 1, sym_emphasis_end, - [23599] = 1, - ACTIONS(2620), 1, + [24074] = 1, + ACTIONS(2618), 1, anon_sym_RBRACE, - [23603] = 1, + [24078] = 1, + ACTIONS(2620), 1, + anon_sym_RPAREN, + [24082] = 1, ACTIONS(2622), 1, - aux_sym_inline_link_destination_token1, - [23607] = 1, + anon_sym_RBRACK, + [24086] = 1, ACTIONS(2624), 1, - sym_language, - [23611] = 1, + anon_sym_RBRACE, + [24090] = 1, ACTIONS(2626), 1, - sym__verbatim_content, - [23615] = 1, + sym_footnote_marker_end, + [24094] = 1, ACTIONS(2628), 1, - sym_insert_end, - [23619] = 1, + aux_sym_inline_link_destination_token1, + [24098] = 1, ACTIONS(2630), 1, - sym__inline_attribute_mark_begin, - [23623] = 1, + sym__whitespace, + [24102] = 1, ACTIONS(2632), 1, - sym__verbatim_content, - [23627] = 1, + sym_language, + [24106] = 1, ACTIONS(2634), 1, - sym_highlighted_end, - [23631] = 1, + sym__verbatim_content, + [24110] = 1, ACTIONS(2636), 1, - sym_subscript_end, - [23635] = 1, + sym__inline_attribute_mark_begin, + [24114] = 1, ACTIONS(2638), 1, - anon_sym_RBRACK, - [23639] = 1, + sym__verbatim_content, + [24118] = 1, ACTIONS(2640), 1, - anon_sym_GT, - [23643] = 1, + sym__verbatim_end, + [24122] = 1, ACTIONS(2642), 1, - sym_superscript_end, - [23647] = 1, + sym_delete_end, + [24126] = 1, ACTIONS(2644), 1, - sym_strong_end, - [23651] = 1, + sym_insert_end, + [24130] = 1, ACTIONS(2646), 1, - sym_emphasis_end, - [23655] = 1, + sym_highlighted_end, + [24134] = 1, ACTIONS(2648), 1, sym__verbatim_end, - [23659] = 1, + [24138] = 1, ACTIONS(2650), 1, - anon_sym_RBRACE, - [23663] = 1, + sym_superscript_end, + [24142] = 1, ACTIONS(2652), 1, - aux_sym_inline_link_destination_token1, - [23667] = 1, + sym_strong_end, + [24146] = 1, ACTIONS(2654), 1, - sym_language, - [23671] = 1, + sym_emphasis_end, + [24150] = 1, ACTIONS(2656), 1, - sym__verbatim_content, - [23675] = 1, + sym__newline, + [24154] = 1, ACTIONS(2658), 1, - sym__verbatim_end, - [23679] = 1, + anon_sym_RBRACE, + [24158] = 1, ACTIONS(2660), 1, - sym__inline_attribute_mark_begin, - [23683] = 1, + aux_sym_inline_link_destination_token1, + [24162] = 1, ACTIONS(2662), 1, - sym__verbatim_content, - [23687] = 1, + sym_language, + [24166] = 1, ACTIONS(2664), 1, - anon_sym_RBRACK, - [23691] = 1, + sym__verbatim_content, + [24170] = 1, ACTIONS(2666), 1, - anon_sym_GT, - [23695] = 1, + sym__inline_attribute_mark_begin, + [24174] = 1, ACTIONS(2668), 1, - sym__newline, - [23699] = 1, + sym__verbatim_content, + [24178] = 1, ACTIONS(2670), 1, - sym__verbatim_end, - [23703] = 1, + anon_sym_RBRACE, + [24182] = 1, ACTIONS(2672), 1, - sym__newline, - [23707] = 1, + sym__verbatim_end, + [24186] = 1, ACTIONS(2674), 1, - anon_sym_RBRACE, - [23711] = 1, + sym__newline, + [24190] = 1, ACTIONS(2676), 1, - anon_sym_RPAREN, - [23715] = 1, + anon_sym_RBRACK, + [24194] = 1, ACTIONS(2678), 1, - anon_sym_RBRACK2, - [23719] = 1, - ACTIONS(1667), 1, - anon_sym_RBRACE, - [23723] = 1, + sym_footnote_marker_end, + [24198] = 1, ACTIONS(2680), 1, - aux_sym_inline_link_destination_token1, - [23727] = 1, + sym__verbatim_end, + [24202] = 1, ACTIONS(2682), 1, - sym_language, - [23731] = 1, + sym_delete_end, + [24206] = 1, ACTIONS(2684), 1, - sym__verbatim_content, - [23735] = 1, + sym_insert_end, + [24210] = 1, ACTIONS(2686), 1, - sym_delete_end, - [23739] = 1, + sym_highlighted_end, + [24214] = 1, ACTIONS(2688), 1, - sym__inline_attribute_mark_begin, - [23743] = 1, + sym_subscript_end, + [24218] = 1, ACTIONS(2690), 1, - sym__verbatim_content, - [23747] = 1, + aux_sym_inline_link_destination_token1, + [24222] = 1, ACTIONS(2692), 1, - sym_insert_end, - [23751] = 1, + sym_language, + [24226] = 1, ACTIONS(2694), 1, - anon_sym_DQUOTE, - [23755] = 1, + sym__verbatim_content, + [24230] = 1, ACTIONS(2696), 1, - sym_highlighted_end, - [23759] = 1, + sym__inline_attribute_mark_begin, + [24234] = 1, ACTIONS(2698), 1, - aux_sym_value_token1, - [23763] = 1, - ACTIONS(1663), 1, - anon_sym_RBRACE, - [23767] = 1, + sym__verbatim_content, + [24238] = 1, ACTIONS(2700), 1, - anon_sym_RBRACE, - [23771] = 1, + sym_superscript_end, + [24242] = 1, ACTIONS(2702), 1, - anon_sym_EQ, - [23775] = 1, + sym__newline, + [24246] = 1, ACTIONS(2704), 1, - sym_subscript_end, - [23779] = 1, + sym_strong_end, + [24250] = 1, ACTIONS(2706), 1, - anon_sym_EQ, - [23783] = 1, + sym_emphasis_end, + [24254] = 1, ACTIONS(2708), 1, - aux_sym_inline_link_destination_token1, - [23787] = 1, + anon_sym_RBRACE, + [24258] = 1, ACTIONS(2710), 1, - sym_language, - [23791] = 1, + sym__verbatim_end, + [24262] = 1, ACTIONS(2712), 1, - sym__verbatim_content, - [23795] = 1, + sym_strong_end, + [24266] = 1, + ACTIONS(1697), 1, + anon_sym_RBRACE, + [24270] = 1, ACTIONS(2714), 1, - sym_superscript_end, - [23799] = 1, + sym__verbatim_end, + [24274] = 1, ACTIONS(2716), 1, - sym__inline_attribute_mark_begin, - [23803] = 1, + anon_sym_DQUOTE, + [24278] = 1, ACTIONS(2718), 1, - sym__verbatim_content, - [23807] = 1, + aux_sym_inline_link_destination_token1, + [24282] = 1, ACTIONS(2720), 1, - sym_strong_end, - [23811] = 1, - ACTIONS(2722), 1, sym_language, - [23815] = 1, + [24286] = 1, + ACTIONS(2722), 1, + sym__verbatim_content, + [24290] = 1, ACTIONS(2724), 1, - sym__bracketed_text_end, - [23819] = 1, + sym__inline_attribute_mark_begin, + [24294] = 1, ACTIONS(2726), 1, - sym__image_description_end, - [23823] = 1, + sym__verbatim_content, + [24298] = 1, ACTIONS(2728), 1, - anon_sym_RPAREN, - [23827] = 1, + sym__newline, + [24302] = 1, ACTIONS(2730), 1, - anon_sym_RBRACK2, - [23831] = 1, + anon_sym_RBRACE, + [24306] = 1, ACTIONS(2732), 1, - sym_delete_end, - [23835] = 1, + aux_sym_value_token1, + [24310] = 1, + ACTIONS(1687), 1, + anon_sym_RBRACE, + [24314] = 1, ACTIONS(2734), 1, - sym_insert_end, - [23839] = 1, + anon_sym_RBRACE, + [24318] = 1, ACTIONS(2736), 1, - sym_highlighted_end, - [23843] = 1, + anon_sym_EQ, + [24322] = 1, ACTIONS(2738), 1, - aux_sym_inline_link_destination_token1, - [23847] = 1, + anon_sym_RPAREN, + [24326] = 1, ACTIONS(2740), 1, - sym_language, - [23851] = 1, + anon_sym_EQ, + [24330] = 1, ACTIONS(2742), 1, - sym__verbatim_content, - [23855] = 1, + anon_sym_RBRACK, + [24334] = 1, ACTIONS(2744), 1, - sym_emphasis_end, - [23859] = 1, + sym_language, + [24338] = 1, ACTIONS(2746), 1, - sym__inline_attribute_mark_begin, - [23863] = 1, + aux_sym_inline_link_destination_token1, + [24342] = 1, ACTIONS(2748), 1, - sym__verbatim_content, - [23867] = 1, + sym_language, + [24346] = 1, ACTIONS(2750), 1, - anon_sym_RBRACE, - [23871] = 1, + sym__verbatim_content, + [24350] = 1, ACTIONS(2752), 1, - sym_subscript_end, - [23875] = 1, + sym__inline_attribute_mark_begin, + [24354] = 1, ACTIONS(2754), 1, - sym_superscript_end, - [23879] = 1, + anon_sym_RBRACK, + [24358] = 1, ACTIONS(2756), 1, - sym_strong_end, - [23883] = 1, + sym_footnote_marker_end, + [24362] = 1, ACTIONS(2758), 1, - sym_emphasis_end, - [23887] = 1, + sym__bracketed_text_end, + [24366] = 1, ACTIONS(2760), 1, - anon_sym_RBRACE, - [23891] = 1, + sym__image_description_end, + [24370] = 1, ACTIONS(2762), 1, - sym__whitespace, - [23895] = 1, + anon_sym_RPAREN, + [24374] = 1, ACTIONS(2764), 1, - sym__verbatim_end, - [23899] = 1, + anon_sym_RBRACK, + [24378] = 1, ACTIONS(2766), 1, - aux_sym_inline_link_destination_token1, - [23903] = 1, + sym_footnote_marker_end, + [24382] = 1, ACTIONS(2768), 1, - aux_sym_inline_link_destination_token1, - [23907] = 1, + sym_footnote_marker_end, + [24386] = 1, ACTIONS(2770), 1, - sym_language, - [23911] = 1, + sym_delete_end, + [24390] = 1, ACTIONS(2772), 1, - sym__verbatim_content, - [23915] = 1, + sym_delete_end, + [24394] = 1, ACTIONS(2774), 1, - sym__verbatim_end, - [23919] = 1, + sym_insert_end, + [24398] = 1, ACTIONS(2776), 1, - sym__inline_attribute_mark_begin, - [23923] = 1, + aux_sym_inline_link_destination_token1, + [24402] = 1, ACTIONS(2778), 1, - sym__verbatim_content, - [23927] = 1, + sym_language, + [24406] = 1, ACTIONS(2780), 1, - anon_sym_RBRACK, - [23931] = 1, + sym__verbatim_content, + [24410] = 1, ACTIONS(2782), 1, - sym__newline, - [23935] = 1, + sym__inline_attribute_mark_begin, + [24414] = 1, ACTIONS(2784), 1, sym__verbatim_content, - [23939] = 1, + [24418] = 1, ACTIONS(2786), 1, - anon_sym_RBRACK, - [23943] = 1, + sym_insert_end, + [24422] = 1, ACTIONS(2788), 1, - anon_sym_RBRACK, - [23947] = 1, + sym_highlighted_end, + [24426] = 1, ACTIONS(2790), 1, - anon_sym_GT, - [23951] = 1, + sym_subscript_end, + [24430] = 1, ACTIONS(2792), 1, - sym__inline_attribute_mark_begin, - [23955] = 1, + sym_superscript_end, + [24434] = 1, ACTIONS(2794), 1, - anon_sym_GT, - [23959] = 1, + sym_strong_end, + [24438] = 1, ACTIONS(2796), 1, - sym__verbatim_end, - [23963] = 1, + sym_emphasis_end, + [24442] = 1, ACTIONS(2798), 1, - aux_sym_inline_link_destination_token1, - [23967] = 1, + anon_sym_RBRACE, + [24446] = 1, ACTIONS(2800), 1, - sym_language, - [23971] = 1, + sym__whitespace, + [24450] = 1, ACTIONS(2802), 1, - sym__verbatim_content, - [23975] = 1, + sym_highlighted_end, + [24454] = 1, ACTIONS(2804), 1, - sym__newline, - [23979] = 1, + sym__verbatim_end, + [24458] = 1, ACTIONS(2806), 1, - sym__inline_attribute_mark_begin, - [23983] = 1, + aux_sym_inline_link_destination_token1, + [24462] = 1, ACTIONS(2808), 1, - sym__verbatim_content, - [23987] = 1, + sym_language, + [24466] = 1, ACTIONS(2810), 1, - anon_sym_RBRACE, - [23991] = 1, + sym__verbatim_content, + [24470] = 1, ACTIONS(2812), 1, - anon_sym_RPAREN, - [23995] = 1, + sym__inline_attribute_mark_begin, + [24474] = 1, ACTIONS(2814), 1, - sym__verbatim_end, - [23999] = 1, + sym__verbatim_content, + [24478] = 1, ACTIONS(2816), 1, - sym__bracketed_text_mark_begin, - [24003] = 1, + sym_subscript_end, + [24482] = 1, ACTIONS(2818), 1, - sym__image_description_mark_begin, - [24007] = 1, + aux_sym_inline_link_destination_token1, + [24486] = 1, ACTIONS(2820), 1, - sym__delete_mark_begin, - [24011] = 1, + sym_superscript_end, + [24490] = 1, ACTIONS(2822), 1, - sym__insert_mark_begin, - [24015] = 1, + sym_strong_end, + [24494] = 1, ACTIONS(2824), 1, - sym__highlighted_mark_begin, - [24019] = 1, + sym__verbatim_content, + [24498] = 1, ACTIONS(2826), 1, - sym__subscript_mark_begin, - [24023] = 1, + sym__inline_attribute_mark_begin, + [24502] = 1, ACTIONS(2828), 1, - aux_sym_inline_link_destination_token1, - [24027] = 1, + sym_emphasis_end, + [24506] = 1, ACTIONS(2830), 1, - sym_language, - [24031] = 1, + anon_sym_RBRACE, + [24510] = 1, ACTIONS(2832), 1, - sym__verbatim_content, - [24035] = 1, + sym__verbatim_end, + [24514] = 1, ACTIONS(2834), 1, - anon_sym_RBRACK2, - [24039] = 1, + sym__verbatim_end, + [24518] = 1, ACTIONS(2836), 1, - sym__inline_attribute_mark_begin, - [24043] = 1, + aux_sym_inline_link_destination_token1, + [24522] = 1, ACTIONS(2838), 1, - sym__verbatim_content, - [24047] = 1, + sym_language, + [24526] = 1, ACTIONS(2840), 1, - sym_delete_end, - [24051] = 1, + sym__verbatim_content, + [24530] = 1, ACTIONS(2842), 1, - sym__superscript_mark_begin, - [24055] = 1, + sym__inline_attribute_mark_begin, + [24534] = 1, ACTIONS(2844), 1, - sym__strong_mark_begin, - [24059] = 1, + sym__verbatim_content, + [24538] = 1, ACTIONS(2846), 1, - sym__emphasis_mark_begin, - [24063] = 1, + sym__newline, + [24542] = 1, ACTIONS(2848), 1, - ts_builtin_sym_end, - [24067] = 1, + sym__verbatim_end, + [24546] = 1, ACTIONS(2850), 1, - ts_builtin_sym_end, - [24071] = 1, + sym__bracketed_text_mark_begin, + [24550] = 1, ACTIONS(2852), 1, - sym_insert_end, - [24075] = 1, + sym__image_description_mark_begin, + [24554] = 1, ACTIONS(2854), 1, - sym_highlighted_end, - [24079] = 1, + sym__footnote_marker_mark_begin, + [24558] = 1, ACTIONS(2856), 1, - sym_subscript_end, - [24083] = 1, + sym__delete_mark_begin, + [24562] = 1, ACTIONS(2858), 1, - aux_sym_inline_link_destination_token1, - [24087] = 1, + sym__insert_mark_begin, + [24566] = 1, ACTIONS(2860), 1, - sym_language, - [24091] = 1, + sym__highlighted_mark_begin, + [24570] = 1, ACTIONS(2862), 1, - sym__verbatim_content, - [24095] = 1, + anon_sym_RBRACE, + [24574] = 1, ACTIONS(2864), 1, - sym_superscript_end, - [24099] = 1, + sym__subscript_mark_begin, + [24578] = 1, ACTIONS(2866), 1, - sym__inline_attribute_mark_begin, - [24103] = 1, + aux_sym_inline_link_destination_token1, + [24582] = 1, ACTIONS(2868), 1, - sym__verbatim_content, - [24107] = 1, + sym_language, + [24586] = 1, ACTIONS(2870), 1, - sym_strong_end, - [24111] = 1, + sym__verbatim_content, + [24590] = 1, ACTIONS(2872), 1, - sym__newline, - [24115] = 1, + sym__inline_attribute_mark_begin, + [24594] = 1, ACTIONS(2874), 1, - sym_emphasis_end, - [24119] = 1, + sym__verbatim_content, + [24598] = 1, ACTIONS(2876), 1, - anon_sym_RBRACE, - [24123] = 1, + anon_sym_RPAREN, + [24602] = 1, ACTIONS(2878), 1, - sym__verbatim_end, - [24127] = 1, + sym__superscript_mark_begin, + [24606] = 1, ACTIONS(2880), 1, - anon_sym_RBRACK, - [24131] = 1, + sym__strong_mark_begin, + [24610] = 1, ACTIONS(2882), 1, - sym__verbatim_content, - [24135] = 1, + sym__emphasis_mark_begin, + [24614] = 1, ACTIONS(2884), 1, - anon_sym_GT, - [24139] = 1, + ts_builtin_sym_end, + [24618] = 1, ACTIONS(2886), 1, - sym__verbatim_end, - [24143] = 1, + ts_builtin_sym_end, + [24622] = 1, ACTIONS(2888), 1, - aux_sym_inline_link_destination_token1, - [24147] = 1, + anon_sym_RBRACK, + [24626] = 1, ACTIONS(2890), 1, - sym_language, - [24151] = 1, + sym_footnote_marker_end, + [24630] = 1, ACTIONS(2892), 1, - sym__emphasis_mark_begin, - [24155] = 1, + sym_delete_end, + [24634] = 1, ACTIONS(2894), 1, - sym__strong_mark_begin, - [24159] = 1, + sym_insert_end, + [24638] = 1, ACTIONS(2896), 1, - sym__superscript_mark_begin, - [24163] = 1, + aux_sym_inline_link_destination_token1, + [24642] = 1, ACTIONS(2898), 1, - sym__subscript_mark_begin, - [24167] = 1, + sym_language, + [24646] = 1, ACTIONS(2900), 1, - sym__highlighted_mark_begin, - [24171] = 1, + sym__verbatim_content, + [24650] = 1, ACTIONS(2902), 1, - sym__insert_mark_begin, - [24175] = 1, + sym__inline_attribute_mark_begin, + [24654] = 1, ACTIONS(2904), 1, - sym__delete_mark_begin, - [24179] = 1, + sym__verbatim_content, + [24658] = 1, ACTIONS(2906), 1, - sym__emphasis_mark_begin, - [24183] = 1, + sym_highlighted_end, + [24662] = 1, ACTIONS(2908), 1, - sym__strong_mark_begin, - [24187] = 1, + sym__newline, + [24666] = 1, ACTIONS(2910), 1, - sym__superscript_mark_begin, - [24191] = 1, + sym_subscript_end, + [24670] = 1, ACTIONS(2912), 1, - sym__subscript_mark_begin, - [24195] = 1, + sym_superscript_end, + [24674] = 1, ACTIONS(2914), 1, - sym__highlighted_mark_begin, - [24199] = 1, + sym_strong_end, + [24678] = 1, ACTIONS(2916), 1, - sym__insert_mark_begin, - [24203] = 1, + sym_emphasis_end, + [24682] = 1, ACTIONS(2918), 1, - sym__delete_mark_begin, - [24207] = 1, + sym__verbatim_content, + [24686] = 1, ACTIONS(2920), 1, - sym__emphasis_mark_begin, - [24211] = 1, + anon_sym_RBRACE, + [24690] = 1, ACTIONS(2922), 1, - sym__strong_mark_begin, - [24215] = 1, + sym__verbatim_end, + [24694] = 1, ACTIONS(2924), 1, - sym__superscript_mark_begin, - [24219] = 1, + sym__verbatim_end, + [24698] = 1, ACTIONS(2926), 1, - sym__subscript_mark_begin, - [24223] = 1, + aux_sym_inline_link_destination_token1, + [24702] = 1, ACTIONS(2928), 1, - sym__highlighted_mark_begin, - [24227] = 1, + sym_language, + [24706] = 1, ACTIONS(2930), 1, - sym__insert_mark_begin, - [24231] = 1, + sym__emphasis_mark_begin, + [24710] = 1, ACTIONS(2932), 1, - sym__delete_mark_begin, - [24235] = 1, + sym__strong_mark_begin, + [24714] = 1, ACTIONS(2934), 1, - sym__emphasis_mark_begin, - [24239] = 1, + sym__superscript_mark_begin, + [24718] = 1, ACTIONS(2936), 1, - sym__strong_mark_begin, - [24243] = 1, + sym__subscript_mark_begin, + [24722] = 1, ACTIONS(2938), 1, - sym__superscript_mark_begin, - [24247] = 1, + sym__highlighted_mark_begin, + [24726] = 1, ACTIONS(2940), 1, - sym__subscript_mark_begin, - [24251] = 1, + sym__insert_mark_begin, + [24730] = 1, ACTIONS(2942), 1, - sym__highlighted_mark_begin, - [24255] = 1, + sym__delete_mark_begin, + [24734] = 1, ACTIONS(2944), 1, - sym__insert_mark_begin, - [24259] = 1, + sym__footnote_marker_mark_begin, + [24738] = 1, ACTIONS(2946), 1, - sym__delete_mark_begin, - [24263] = 1, - ACTIONS(2948), 1, sym__emphasis_mark_begin, - [24267] = 1, - ACTIONS(2950), 1, + [24742] = 1, + ACTIONS(2948), 1, sym__strong_mark_begin, - [24271] = 1, - ACTIONS(2952), 1, + [24746] = 1, + ACTIONS(2950), 1, sym__superscript_mark_begin, - [24275] = 1, - ACTIONS(2954), 1, + [24750] = 1, + ACTIONS(2952), 1, sym__subscript_mark_begin, - [24279] = 1, - ACTIONS(2956), 1, + [24754] = 1, + ACTIONS(2954), 1, sym__highlighted_mark_begin, - [24283] = 1, - ACTIONS(2958), 1, + [24758] = 1, + ACTIONS(2956), 1, sym__insert_mark_begin, - [24287] = 1, - ACTIONS(2960), 1, + [24762] = 1, + ACTIONS(2958), 1, sym__delete_mark_begin, - [24291] = 1, + [24766] = 1, + ACTIONS(2960), 1, + sym__footnote_marker_mark_begin, + [24770] = 1, ACTIONS(2962), 1, sym__emphasis_mark_begin, - [24295] = 1, + [24774] = 1, ACTIONS(2964), 1, sym__strong_mark_begin, - [24299] = 1, + [24778] = 1, ACTIONS(2966), 1, sym__superscript_mark_begin, - [24303] = 1, + [24782] = 1, ACTIONS(2968), 1, sym__subscript_mark_begin, - [24307] = 1, + [24786] = 1, ACTIONS(2970), 1, sym__highlighted_mark_begin, - [24311] = 1, + [24790] = 1, ACTIONS(2972), 1, sym__insert_mark_begin, - [24315] = 1, + [24794] = 1, ACTIONS(2974), 1, sym__delete_mark_begin, - [24319] = 1, + [24798] = 1, ACTIONS(2976), 1, - sym__emphasis_mark_begin, - [24323] = 1, + sym__footnote_marker_mark_begin, + [24802] = 1, ACTIONS(2978), 1, - sym__strong_mark_begin, - [24327] = 1, + sym__emphasis_mark_begin, + [24806] = 1, ACTIONS(2980), 1, - sym__superscript_mark_begin, - [24331] = 1, + sym__strong_mark_begin, + [24810] = 1, ACTIONS(2982), 1, - sym__subscript_mark_begin, - [24335] = 1, + sym__superscript_mark_begin, + [24814] = 1, ACTIONS(2984), 1, - sym__highlighted_mark_begin, - [24339] = 1, + sym__subscript_mark_begin, + [24818] = 1, ACTIONS(2986), 1, - sym__insert_mark_begin, - [24343] = 1, + sym__highlighted_mark_begin, + [24822] = 1, ACTIONS(2988), 1, - sym__delete_mark_begin, - [24347] = 1, + sym__insert_mark_begin, + [24826] = 1, ACTIONS(2990), 1, - sym__emphasis_mark_begin, - [24351] = 1, + sym__delete_mark_begin, + [24830] = 1, ACTIONS(2992), 1, - sym__strong_mark_begin, - [24355] = 1, + sym__footnote_marker_mark_begin, + [24834] = 1, ACTIONS(2994), 1, - sym__superscript_mark_begin, - [24359] = 1, + sym__emphasis_mark_begin, + [24838] = 1, ACTIONS(2996), 1, - sym__subscript_mark_begin, - [24363] = 1, + sym__strong_mark_begin, + [24842] = 1, ACTIONS(2998), 1, - sym__highlighted_mark_begin, - [24367] = 1, + sym__superscript_mark_begin, + [24846] = 1, ACTIONS(3000), 1, - sym__insert_mark_begin, - [24371] = 1, + sym__subscript_mark_begin, + [24850] = 1, ACTIONS(3002), 1, - sym__delete_mark_begin, - [24375] = 1, + sym__highlighted_mark_begin, + [24854] = 1, ACTIONS(3004), 1, - sym__emphasis_mark_begin, - [24379] = 1, + sym__insert_mark_begin, + [24858] = 1, ACTIONS(3006), 1, - sym__strong_mark_begin, - [24383] = 1, + sym__delete_mark_begin, + [24862] = 1, ACTIONS(3008), 1, - sym__superscript_mark_begin, - [24387] = 1, + sym__footnote_marker_mark_begin, + [24866] = 1, ACTIONS(3010), 1, - sym__subscript_mark_begin, - [24391] = 1, + sym__emphasis_mark_begin, + [24870] = 1, ACTIONS(3012), 1, - sym__highlighted_mark_begin, - [24395] = 1, + sym__strong_mark_begin, + [24874] = 1, ACTIONS(3014), 1, - sym__insert_mark_begin, - [24399] = 1, + sym__superscript_mark_begin, + [24878] = 1, ACTIONS(3016), 1, - sym__delete_mark_begin, - [24403] = 1, + sym__subscript_mark_begin, + [24882] = 1, ACTIONS(3018), 1, - sym__emphasis_mark_begin, - [24407] = 1, + sym__highlighted_mark_begin, + [24886] = 1, ACTIONS(3020), 1, - sym__strong_mark_begin, - [24411] = 1, + sym__insert_mark_begin, + [24890] = 1, ACTIONS(3022), 1, - sym__superscript_mark_begin, - [24415] = 1, + sym__delete_mark_begin, + [24894] = 1, ACTIONS(3024), 1, - sym__subscript_mark_begin, - [24419] = 1, + sym__footnote_marker_mark_begin, + [24898] = 1, ACTIONS(3026), 1, - sym__highlighted_mark_begin, - [24423] = 1, + sym__emphasis_mark_begin, + [24902] = 1, ACTIONS(3028), 1, - sym__insert_mark_begin, - [24427] = 1, + sym__strong_mark_begin, + [24906] = 1, ACTIONS(3030), 1, - sym__delete_mark_begin, - [24431] = 1, + sym__superscript_mark_begin, + [24910] = 1, ACTIONS(3032), 1, - sym__emphasis_mark_begin, - [24435] = 1, + sym__subscript_mark_begin, + [24914] = 1, ACTIONS(3034), 1, - sym__strong_mark_begin, - [24439] = 1, + sym__highlighted_mark_begin, + [24918] = 1, ACTIONS(3036), 1, - sym__superscript_mark_begin, - [24443] = 1, + sym__insert_mark_begin, + [24922] = 1, ACTIONS(3038), 1, - sym__subscript_mark_begin, - [24447] = 1, + sym__delete_mark_begin, + [24926] = 1, ACTIONS(3040), 1, - sym__highlighted_mark_begin, - [24451] = 1, + sym__footnote_marker_mark_begin, + [24930] = 1, ACTIONS(3042), 1, - sym__insert_mark_begin, - [24455] = 1, + sym__emphasis_mark_begin, + [24934] = 1, ACTIONS(3044), 1, + sym__strong_mark_begin, + [24938] = 1, + ACTIONS(3046), 1, + sym__superscript_mark_begin, + [24942] = 1, + ACTIONS(3048), 1, + sym__subscript_mark_begin, + [24946] = 1, + ACTIONS(3050), 1, + sym__highlighted_mark_begin, + [24950] = 1, + ACTIONS(3052), 1, + sym__insert_mark_begin, + [24954] = 1, + ACTIONS(3054), 1, + sym__delete_mark_begin, + [24958] = 1, + ACTIONS(3056), 1, + sym__footnote_marker_mark_begin, + [24962] = 1, + ACTIONS(3058), 1, + sym__emphasis_mark_begin, + [24966] = 1, + ACTIONS(3060), 1, + sym__strong_mark_begin, + [24970] = 1, + ACTIONS(3062), 1, + sym__superscript_mark_begin, + [24974] = 1, + ACTIONS(3064), 1, + sym__subscript_mark_begin, + [24978] = 1, + ACTIONS(3066), 1, + sym__highlighted_mark_begin, + [24982] = 1, + ACTIONS(3068), 1, + sym__insert_mark_begin, + [24986] = 1, + ACTIONS(3070), 1, + sym__delete_mark_begin, + [24990] = 1, + ACTIONS(3072), 1, + sym__footnote_marker_mark_begin, + [24994] = 1, + ACTIONS(3074), 1, + sym__emphasis_mark_begin, + [24998] = 1, + ACTIONS(3076), 1, + sym__strong_mark_begin, + [25002] = 1, + ACTIONS(3078), 1, + sym__superscript_mark_begin, + [25006] = 1, + ACTIONS(3080), 1, + sym__subscript_mark_begin, + [25010] = 1, + ACTIONS(3082), 1, + sym__highlighted_mark_begin, + [25014] = 1, + ACTIONS(3084), 1, + sym__insert_mark_begin, + [25018] = 1, + ACTIONS(3086), 1, + sym__delete_mark_begin, + [25022] = 1, + ACTIONS(3088), 1, + sym__footnote_marker_mark_begin, + [25026] = 1, + ACTIONS(3090), 1, + sym__emphasis_mark_begin, + [25030] = 1, + ACTIONS(3092), 1, + sym__strong_mark_begin, + [25034] = 1, + ACTIONS(3094), 1, + sym__superscript_mark_begin, + [25038] = 1, + ACTIONS(3096), 1, + sym__subscript_mark_begin, + [25042] = 1, + ACTIONS(3098), 1, + sym__highlighted_mark_begin, + [25046] = 1, + ACTIONS(3100), 1, + sym__insert_mark_begin, + [25050] = 1, + ACTIONS(3102), 1, sym__delete_mark_begin, + [25054] = 1, + ACTIONS(3104), 1, + sym__footnote_marker_mark_begin, }; static const uint32_t ts_small_parse_table_map[] = { @@ -36718,7 +37556,7 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(142)] = 1064, [SMALL_STATE(143)] = 1113, [SMALL_STATE(144)] = 1162, - [SMALL_STATE(145)] = 1208, + [SMALL_STATE(145)] = 1210, [SMALL_STATE(146)] = 1256, [SMALL_STATE(147)] = 1302, [SMALL_STATE(148)] = 1348, @@ -36730,2391 +37568,2439 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(154)] = 1624, [SMALL_STATE(155)] = 1670, [SMALL_STATE(156)] = 1716, - [SMALL_STATE(157)] = 1759, - [SMALL_STATE(158)] = 1802, + [SMALL_STATE(157)] = 1761, + [SMALL_STATE(158)] = 1804, [SMALL_STATE(159)] = 1847, - [SMALL_STATE(160)] = 1892, - [SMALL_STATE(161)] = 1937, - [SMALL_STATE(162)] = 1980, - [SMALL_STATE(163)] = 2023, - [SMALL_STATE(164)] = 2068, - [SMALL_STATE(165)] = 2111, - [SMALL_STATE(166)] = 2154, + [SMALL_STATE(160)] = 1890, + [SMALL_STATE(161)] = 1933, + [SMALL_STATE(162)] = 1978, + [SMALL_STATE(163)] = 2021, + [SMALL_STATE(164)] = 2064, + [SMALL_STATE(165)] = 2107, + [SMALL_STATE(166)] = 2152, [SMALL_STATE(167)] = 2197, - [SMALL_STATE(168)] = 2242, - [SMALL_STATE(169)] = 2285, - [SMALL_STATE(170)] = 2330, - [SMALL_STATE(171)] = 2373, - [SMALL_STATE(172)] = 2416, - [SMALL_STATE(173)] = 2459, - [SMALL_STATE(174)] = 2504, - [SMALL_STATE(175)] = 2547, - [SMALL_STATE(176)] = 2590, - [SMALL_STATE(177)] = 2635, - [SMALL_STATE(178)] = 2678, - [SMALL_STATE(179)] = 2721, - [SMALL_STATE(180)] = 2764, + [SMALL_STATE(168)] = 2240, + [SMALL_STATE(169)] = 2283, + [SMALL_STATE(170)] = 2326, + [SMALL_STATE(171)] = 2369, + [SMALL_STATE(172)] = 2414, + [SMALL_STATE(173)] = 2457, + [SMALL_STATE(174)] = 2500, + [SMALL_STATE(175)] = 2545, + [SMALL_STATE(176)] = 2588, + [SMALL_STATE(177)] = 2633, + [SMALL_STATE(178)] = 2676, + [SMALL_STATE(179)] = 2719, + [SMALL_STATE(180)] = 2762, [SMALL_STATE(181)] = 2807, [SMALL_STATE(182)] = 2850, [SMALL_STATE(183)] = 2893, [SMALL_STATE(184)] = 2938, - [SMALL_STATE(185)] = 2981, + [SMALL_STATE(185)] = 2983, [SMALL_STATE(186)] = 3026, [SMALL_STATE(187)] = 3069, - [SMALL_STATE(188)] = 3114, - [SMALL_STATE(189)] = 3159, - [SMALL_STATE(190)] = 3202, - [SMALL_STATE(191)] = 3247, - [SMALL_STATE(192)] = 3290, - [SMALL_STATE(193)] = 3333, - [SMALL_STATE(194)] = 3378, - [SMALL_STATE(195)] = 3421, - [SMALL_STATE(196)] = 3464, - [SMALL_STATE(197)] = 3507, - [SMALL_STATE(198)] = 3552, - [SMALL_STATE(199)] = 3595, - [SMALL_STATE(200)] = 3640, - [SMALL_STATE(201)] = 3685, - [SMALL_STATE(202)] = 3730, - [SMALL_STATE(203)] = 3775, - [SMALL_STATE(204)] = 3818, - [SMALL_STATE(205)] = 3863, - [SMALL_STATE(206)] = 3908, - [SMALL_STATE(207)] = 3951, - [SMALL_STATE(208)] = 3994, - [SMALL_STATE(209)] = 4037, - [SMALL_STATE(210)] = 4080, - [SMALL_STATE(211)] = 4120, + [SMALL_STATE(188)] = 3112, + [SMALL_STATE(189)] = 3155, + [SMALL_STATE(190)] = 3198, + [SMALL_STATE(191)] = 3241, + [SMALL_STATE(192)] = 3284, + [SMALL_STATE(193)] = 3327, + [SMALL_STATE(194)] = 3372, + [SMALL_STATE(195)] = 3415, + [SMALL_STATE(196)] = 3458, + [SMALL_STATE(197)] = 3503, + [SMALL_STATE(198)] = 3546, + [SMALL_STATE(199)] = 3591, + [SMALL_STATE(200)] = 3634, + [SMALL_STATE(201)] = 3677, + [SMALL_STATE(202)] = 3722, + [SMALL_STATE(203)] = 3767, + [SMALL_STATE(204)] = 3812, + [SMALL_STATE(205)] = 3855, + [SMALL_STATE(206)] = 3900, + [SMALL_STATE(207)] = 3943, + [SMALL_STATE(208)] = 3986, + [SMALL_STATE(209)] = 4031, + [SMALL_STATE(210)] = 4074, + [SMALL_STATE(211)] = 4117, [SMALL_STATE(212)] = 4160, - [SMALL_STATE(213)] = 4204, - [SMALL_STATE(214)] = 4244, - [SMALL_STATE(215)] = 4284, - [SMALL_STATE(216)] = 4324, - [SMALL_STATE(217)] = 4364, - [SMALL_STATE(218)] = 4404, - [SMALL_STATE(219)] = 4444, - [SMALL_STATE(220)] = 4484, - [SMALL_STATE(221)] = 4524, - [SMALL_STATE(222)] = 4564, - [SMALL_STATE(223)] = 4604, - [SMALL_STATE(224)] = 4644, - [SMALL_STATE(225)] = 4684, - [SMALL_STATE(226)] = 4724, - [SMALL_STATE(227)] = 4768, - [SMALL_STATE(228)] = 4808, - [SMALL_STATE(229)] = 4848, - [SMALL_STATE(230)] = 4888, - [SMALL_STATE(231)] = 4928, - [SMALL_STATE(232)] = 4968, - [SMALL_STATE(233)] = 5008, - [SMALL_STATE(234)] = 5048, - [SMALL_STATE(235)] = 5088, - [SMALL_STATE(236)] = 5128, - [SMALL_STATE(237)] = 5168, - [SMALL_STATE(238)] = 5208, - [SMALL_STATE(239)] = 5248, - [SMALL_STATE(240)] = 5288, - [SMALL_STATE(241)] = 5330, - [SMALL_STATE(242)] = 5370, - [SMALL_STATE(243)] = 5410, - [SMALL_STATE(244)] = 5450, - [SMALL_STATE(245)] = 5490, - [SMALL_STATE(246)] = 5530, - [SMALL_STATE(247)] = 5570, - [SMALL_STATE(248)] = 5610, - [SMALL_STATE(249)] = 5650, - [SMALL_STATE(250)] = 5690, - [SMALL_STATE(251)] = 5730, - [SMALL_STATE(252)] = 5770, - [SMALL_STATE(253)] = 5810, - [SMALL_STATE(254)] = 5850, - [SMALL_STATE(255)] = 5890, - [SMALL_STATE(256)] = 5930, - [SMALL_STATE(257)] = 5970, - [SMALL_STATE(258)] = 6010, - [SMALL_STATE(259)] = 6050, - [SMALL_STATE(260)] = 6090, - [SMALL_STATE(261)] = 6130, - [SMALL_STATE(262)] = 6170, - [SMALL_STATE(263)] = 6210, - [SMALL_STATE(264)] = 6250, - [SMALL_STATE(265)] = 6290, - [SMALL_STATE(266)] = 6330, - [SMALL_STATE(267)] = 6370, - [SMALL_STATE(268)] = 6410, - [SMALL_STATE(269)] = 6450, - [SMALL_STATE(270)] = 6490, - [SMALL_STATE(271)] = 6530, - [SMALL_STATE(272)] = 6570, - [SMALL_STATE(273)] = 6610, - [SMALL_STATE(274)] = 6652, - [SMALL_STATE(275)] = 6692, - [SMALL_STATE(276)] = 6732, - [SMALL_STATE(277)] = 6772, - [SMALL_STATE(278)] = 6812, - [SMALL_STATE(279)] = 6852, - [SMALL_STATE(280)] = 6892, - [SMALL_STATE(281)] = 6932, - [SMALL_STATE(282)] = 6972, - [SMALL_STATE(283)] = 7012, - [SMALL_STATE(284)] = 7052, - [SMALL_STATE(285)] = 7092, - [SMALL_STATE(286)] = 7132, - [SMALL_STATE(287)] = 7172, - [SMALL_STATE(288)] = 7212, - [SMALL_STATE(289)] = 7252, - [SMALL_STATE(290)] = 7292, - [SMALL_STATE(291)] = 7332, - [SMALL_STATE(292)] = 7374, - [SMALL_STATE(293)] = 7414, - [SMALL_STATE(294)] = 7454, - [SMALL_STATE(295)] = 7494, - [SMALL_STATE(296)] = 7534, - [SMALL_STATE(297)] = 7574, - [SMALL_STATE(298)] = 7614, - [SMALL_STATE(299)] = 7654, - [SMALL_STATE(300)] = 7694, - [SMALL_STATE(301)] = 7734, - [SMALL_STATE(302)] = 7774, - [SMALL_STATE(303)] = 7814, - [SMALL_STATE(304)] = 7854, - [SMALL_STATE(305)] = 7894, - [SMALL_STATE(306)] = 7934, - [SMALL_STATE(307)] = 7974, - [SMALL_STATE(308)] = 8014, - [SMALL_STATE(309)] = 8054, - [SMALL_STATE(310)] = 8094, - [SMALL_STATE(311)] = 8134, - [SMALL_STATE(312)] = 8174, - [SMALL_STATE(313)] = 8214, - [SMALL_STATE(314)] = 8254, - [SMALL_STATE(315)] = 8294, - [SMALL_STATE(316)] = 8334, - [SMALL_STATE(317)] = 8376, - [SMALL_STATE(318)] = 8416, - [SMALL_STATE(319)] = 8456, - [SMALL_STATE(320)] = 8496, - [SMALL_STATE(321)] = 8536, - [SMALL_STATE(322)] = 8576, - [SMALL_STATE(323)] = 8616, - [SMALL_STATE(324)] = 8656, - [SMALL_STATE(325)] = 8696, - [SMALL_STATE(326)] = 8736, - [SMALL_STATE(327)] = 8776, - [SMALL_STATE(328)] = 8816, - [SMALL_STATE(329)] = 8856, - [SMALL_STATE(330)] = 8896, - [SMALL_STATE(331)] = 8936, - [SMALL_STATE(332)] = 8976, - [SMALL_STATE(333)] = 9016, - [SMALL_STATE(334)] = 9056, - [SMALL_STATE(335)] = 9096, - [SMALL_STATE(336)] = 9136, - [SMALL_STATE(337)] = 9176, - [SMALL_STATE(338)] = 9220, - [SMALL_STATE(339)] = 9260, - [SMALL_STATE(340)] = 9300, - [SMALL_STATE(341)] = 9340, - [SMALL_STATE(342)] = 9380, - [SMALL_STATE(343)] = 9420, - [SMALL_STATE(344)] = 9460, - [SMALL_STATE(345)] = 9500, - [SMALL_STATE(346)] = 9540, - [SMALL_STATE(347)] = 9580, - [SMALL_STATE(348)] = 9620, - [SMALL_STATE(349)] = 9662, - [SMALL_STATE(350)] = 9702, - [SMALL_STATE(351)] = 9742, - [SMALL_STATE(352)] = 9782, - [SMALL_STATE(353)] = 9822, - [SMALL_STATE(354)] = 9862, - [SMALL_STATE(355)] = 9902, - [SMALL_STATE(356)] = 9942, - [SMALL_STATE(357)] = 9984, - [SMALL_STATE(358)] = 10024, - [SMALL_STATE(359)] = 10064, - [SMALL_STATE(360)] = 10106, - [SMALL_STATE(361)] = 10146, - [SMALL_STATE(362)] = 10186, - [SMALL_STATE(363)] = 10226, - [SMALL_STATE(364)] = 10268, - [SMALL_STATE(365)] = 10308, - [SMALL_STATE(366)] = 10348, - [SMALL_STATE(367)] = 10388, - [SMALL_STATE(368)] = 10428, - [SMALL_STATE(369)] = 10468, - [SMALL_STATE(370)] = 10508, - [SMALL_STATE(371)] = 10548, - [SMALL_STATE(372)] = 10588, - [SMALL_STATE(373)] = 10628, - [SMALL_STATE(374)] = 10668, - [SMALL_STATE(375)] = 10708, - [SMALL_STATE(376)] = 10748, - [SMALL_STATE(377)] = 10788, - [SMALL_STATE(378)] = 10828, - [SMALL_STATE(379)] = 10868, - [SMALL_STATE(380)] = 10908, - [SMALL_STATE(381)] = 10948, - [SMALL_STATE(382)] = 10988, - [SMALL_STATE(383)] = 11028, - [SMALL_STATE(384)] = 11068, - [SMALL_STATE(385)] = 11108, - [SMALL_STATE(386)] = 11148, - [SMALL_STATE(387)] = 11188, - [SMALL_STATE(388)] = 11228, - [SMALL_STATE(389)] = 11268, - [SMALL_STATE(390)] = 11308, - [SMALL_STATE(391)] = 11348, - [SMALL_STATE(392)] = 11388, - [SMALL_STATE(393)] = 11428, - [SMALL_STATE(394)] = 11468, - [SMALL_STATE(395)] = 11508, - [SMALL_STATE(396)] = 11548, - [SMALL_STATE(397)] = 11588, - [SMALL_STATE(398)] = 11628, - [SMALL_STATE(399)] = 11668, - [SMALL_STATE(400)] = 11708, - [SMALL_STATE(401)] = 11748, - [SMALL_STATE(402)] = 11788, - [SMALL_STATE(403)] = 11830, - [SMALL_STATE(404)] = 11870, - [SMALL_STATE(405)] = 11910, - [SMALL_STATE(406)] = 11950, - [SMALL_STATE(407)] = 11990, - [SMALL_STATE(408)] = 12030, - [SMALL_STATE(409)] = 12070, - [SMALL_STATE(410)] = 12110, - [SMALL_STATE(411)] = 12150, - [SMALL_STATE(412)] = 12190, - [SMALL_STATE(413)] = 12230, - [SMALL_STATE(414)] = 12270, - [SMALL_STATE(415)] = 12310, - [SMALL_STATE(416)] = 12350, - [SMALL_STATE(417)] = 12390, - [SMALL_STATE(418)] = 12430, - [SMALL_STATE(419)] = 12470, - [SMALL_STATE(420)] = 12510, - [SMALL_STATE(421)] = 12550, - [SMALL_STATE(422)] = 12590, - [SMALL_STATE(423)] = 12630, - [SMALL_STATE(424)] = 12670, - [SMALL_STATE(425)] = 12710, - [SMALL_STATE(426)] = 12750, - [SMALL_STATE(427)] = 12790, - [SMALL_STATE(428)] = 12830, - [SMALL_STATE(429)] = 12870, - [SMALL_STATE(430)] = 12910, - [SMALL_STATE(431)] = 12950, - [SMALL_STATE(432)] = 12990, - [SMALL_STATE(433)] = 13030, - [SMALL_STATE(434)] = 13070, - [SMALL_STATE(435)] = 13110, - [SMALL_STATE(436)] = 13150, - [SMALL_STATE(437)] = 13190, - [SMALL_STATE(438)] = 13230, - [SMALL_STATE(439)] = 13270, - [SMALL_STATE(440)] = 13310, - [SMALL_STATE(441)] = 13350, - [SMALL_STATE(442)] = 13390, - [SMALL_STATE(443)] = 13430, - [SMALL_STATE(444)] = 13470, - [SMALL_STATE(445)] = 13514, - [SMALL_STATE(446)] = 13556, - [SMALL_STATE(447)] = 13596, - [SMALL_STATE(448)] = 13636, - [SMALL_STATE(449)] = 13676, - [SMALL_STATE(450)] = 13716, - [SMALL_STATE(451)] = 13758, - [SMALL_STATE(452)] = 13798, - [SMALL_STATE(453)] = 13838, - [SMALL_STATE(454)] = 13878, - [SMALL_STATE(455)] = 13918, - [SMALL_STATE(456)] = 13958, - [SMALL_STATE(457)] = 13998, - [SMALL_STATE(458)] = 14038, - [SMALL_STATE(459)] = 14078, - [SMALL_STATE(460)] = 14118, - [SMALL_STATE(461)] = 14158, - [SMALL_STATE(462)] = 14198, - [SMALL_STATE(463)] = 14238, - [SMALL_STATE(464)] = 14278, - [SMALL_STATE(465)] = 14318, - [SMALL_STATE(466)] = 14358, - [SMALL_STATE(467)] = 14398, - [SMALL_STATE(468)] = 14438, - [SMALL_STATE(469)] = 14478, - [SMALL_STATE(470)] = 14518, - [SMALL_STATE(471)] = 14558, - [SMALL_STATE(472)] = 14598, - [SMALL_STATE(473)] = 14638, - [SMALL_STATE(474)] = 14678, - [SMALL_STATE(475)] = 14718, - [SMALL_STATE(476)] = 14758, - [SMALL_STATE(477)] = 14798, - [SMALL_STATE(478)] = 14838, - [SMALL_STATE(479)] = 14878, - [SMALL_STATE(480)] = 14918, - [SMALL_STATE(481)] = 14958, - [SMALL_STATE(482)] = 14998, - [SMALL_STATE(483)] = 15038, - [SMALL_STATE(484)] = 15078, - [SMALL_STATE(485)] = 15118, - [SMALL_STATE(486)] = 15158, - [SMALL_STATE(487)] = 15198, - [SMALL_STATE(488)] = 15238, - [SMALL_STATE(489)] = 15280, - [SMALL_STATE(490)] = 15320, - [SMALL_STATE(491)] = 15360, - [SMALL_STATE(492)] = 15400, - [SMALL_STATE(493)] = 15440, - [SMALL_STATE(494)] = 15480, - [SMALL_STATE(495)] = 15520, - [SMALL_STATE(496)] = 15560, - [SMALL_STATE(497)] = 15600, - [SMALL_STATE(498)] = 15640, - [SMALL_STATE(499)] = 15680, - [SMALL_STATE(500)] = 15720, - [SMALL_STATE(501)] = 15760, - [SMALL_STATE(502)] = 15800, - [SMALL_STATE(503)] = 15840, - [SMALL_STATE(504)] = 15880, - [SMALL_STATE(505)] = 15920, - [SMALL_STATE(506)] = 15962, - [SMALL_STATE(507)] = 16002, - [SMALL_STATE(508)] = 16042, - [SMALL_STATE(509)] = 16082, - [SMALL_STATE(510)] = 16122, - [SMALL_STATE(511)] = 16162, - [SMALL_STATE(512)] = 16202, - [SMALL_STATE(513)] = 16244, - [SMALL_STATE(514)] = 16284, - [SMALL_STATE(515)] = 16324, - [SMALL_STATE(516)] = 16364, - [SMALL_STATE(517)] = 16404, - [SMALL_STATE(518)] = 16444, - [SMALL_STATE(519)] = 16484, - [SMALL_STATE(520)] = 16524, - [SMALL_STATE(521)] = 16564, - [SMALL_STATE(522)] = 16604, - [SMALL_STATE(523)] = 16644, - [SMALL_STATE(524)] = 16684, - [SMALL_STATE(525)] = 16724, - [SMALL_STATE(526)] = 16763, - [SMALL_STATE(527)] = 16802, - [SMALL_STATE(528)] = 16841, - [SMALL_STATE(529)] = 16880, - [SMALL_STATE(530)] = 16919, - [SMALL_STATE(531)] = 16958, - [SMALL_STATE(532)] = 16997, - [SMALL_STATE(533)] = 17036, - [SMALL_STATE(534)] = 17075, - [SMALL_STATE(535)] = 17114, - [SMALL_STATE(536)] = 17153, - [SMALL_STATE(537)] = 17192, - [SMALL_STATE(538)] = 17231, - [SMALL_STATE(539)] = 17270, - [SMALL_STATE(540)] = 17309, - [SMALL_STATE(541)] = 17348, - [SMALL_STATE(542)] = 17387, - [SMALL_STATE(543)] = 17426, - [SMALL_STATE(544)] = 17465, - [SMALL_STATE(545)] = 17504, - [SMALL_STATE(546)] = 17543, - [SMALL_STATE(547)] = 17582, - [SMALL_STATE(548)] = 17621, - [SMALL_STATE(549)] = 17660, - [SMALL_STATE(550)] = 17699, - [SMALL_STATE(551)] = 17738, - [SMALL_STATE(552)] = 17777, - [SMALL_STATE(553)] = 17816, - [SMALL_STATE(554)] = 17855, - [SMALL_STATE(555)] = 17894, - [SMALL_STATE(556)] = 17933, - [SMALL_STATE(557)] = 17972, - [SMALL_STATE(558)] = 18011, - [SMALL_STATE(559)] = 18050, - [SMALL_STATE(560)] = 18089, - [SMALL_STATE(561)] = 18128, - [SMALL_STATE(562)] = 18167, - [SMALL_STATE(563)] = 18208, - [SMALL_STATE(564)] = 18247, - [SMALL_STATE(565)] = 18286, - [SMALL_STATE(566)] = 18325, - [SMALL_STATE(567)] = 18364, - [SMALL_STATE(568)] = 18405, - [SMALL_STATE(569)] = 18444, - [SMALL_STATE(570)] = 18483, - [SMALL_STATE(571)] = 18524, - [SMALL_STATE(572)] = 18563, - [SMALL_STATE(573)] = 18602, - [SMALL_STATE(574)] = 18641, - [SMALL_STATE(575)] = 18680, - [SMALL_STATE(576)] = 18719, - [SMALL_STATE(577)] = 18758, - [SMALL_STATE(578)] = 18797, - [SMALL_STATE(579)] = 18836, - [SMALL_STATE(580)] = 18875, - [SMALL_STATE(581)] = 18914, - [SMALL_STATE(582)] = 18953, - [SMALL_STATE(583)] = 18992, - [SMALL_STATE(584)] = 19031, - [SMALL_STATE(585)] = 19070, - [SMALL_STATE(586)] = 19109, - [SMALL_STATE(587)] = 19148, - [SMALL_STATE(588)] = 19187, - [SMALL_STATE(589)] = 19226, - [SMALL_STATE(590)] = 19265, - [SMALL_STATE(591)] = 19304, - [SMALL_STATE(592)] = 19343, - [SMALL_STATE(593)] = 19382, - [SMALL_STATE(594)] = 19421, - [SMALL_STATE(595)] = 19460, - [SMALL_STATE(596)] = 19499, - [SMALL_STATE(597)] = 19538, - [SMALL_STATE(598)] = 19577, - [SMALL_STATE(599)] = 19616, - [SMALL_STATE(600)] = 19655, - [SMALL_STATE(601)] = 19694, - [SMALL_STATE(602)] = 19733, - [SMALL_STATE(603)] = 19772, - [SMALL_STATE(604)] = 19811, - [SMALL_STATE(605)] = 19852, - [SMALL_STATE(606)] = 19891, - [SMALL_STATE(607)] = 19932, - [SMALL_STATE(608)] = 19971, - [SMALL_STATE(609)] = 20010, - [SMALL_STATE(610)] = 20049, - [SMALL_STATE(611)] = 20088, - [SMALL_STATE(612)] = 20127, - [SMALL_STATE(613)] = 20165, - [SMALL_STATE(614)] = 20203, - [SMALL_STATE(615)] = 20241, - [SMALL_STATE(616)] = 20279, - [SMALL_STATE(617)] = 20317, - [SMALL_STATE(618)] = 20348, - [SMALL_STATE(619)] = 20379, - [SMALL_STATE(620)] = 20410, - [SMALL_STATE(621)] = 20441, - [SMALL_STATE(622)] = 20472, - [SMALL_STATE(623)] = 20503, - [SMALL_STATE(624)] = 20534, - [SMALL_STATE(625)] = 20565, - [SMALL_STATE(626)] = 20596, - [SMALL_STATE(627)] = 20627, - [SMALL_STATE(628)] = 20658, - [SMALL_STATE(629)] = 20689, - [SMALL_STATE(630)] = 20720, - [SMALL_STATE(631)] = 20751, - [SMALL_STATE(632)] = 20782, - [SMALL_STATE(633)] = 20813, - [SMALL_STATE(634)] = 20844, - [SMALL_STATE(635)] = 20875, - [SMALL_STATE(636)] = 20906, - [SMALL_STATE(637)] = 20937, - [SMALL_STATE(638)] = 20968, - [SMALL_STATE(639)] = 20999, - [SMALL_STATE(640)] = 21030, - [SMALL_STATE(641)] = 21061, - [SMALL_STATE(642)] = 21092, - [SMALL_STATE(643)] = 21102, - [SMALL_STATE(644)] = 21112, - [SMALL_STATE(645)] = 21122, - [SMALL_STATE(646)] = 21132, - [SMALL_STATE(647)] = 21142, - [SMALL_STATE(648)] = 21152, - [SMALL_STATE(649)] = 21162, - [SMALL_STATE(650)] = 21172, - [SMALL_STATE(651)] = 21182, - [SMALL_STATE(652)] = 21199, - [SMALL_STATE(653)] = 21216, - [SMALL_STATE(654)] = 21233, - [SMALL_STATE(655)] = 21250, - [SMALL_STATE(656)] = 21267, - [SMALL_STATE(657)] = 21284, - [SMALL_STATE(658)] = 21301, - [SMALL_STATE(659)] = 21318, - [SMALL_STATE(660)] = 21335, - [SMALL_STATE(661)] = 21352, - [SMALL_STATE(662)] = 21369, - [SMALL_STATE(663)] = 21386, - [SMALL_STATE(664)] = 21402, - [SMALL_STATE(665)] = 21418, - [SMALL_STATE(666)] = 21434, - [SMALL_STATE(667)] = 21450, - [SMALL_STATE(668)] = 21466, - [SMALL_STATE(669)] = 21482, - [SMALL_STATE(670)] = 21498, - [SMALL_STATE(671)] = 21514, - [SMALL_STATE(672)] = 21526, - [SMALL_STATE(673)] = 21542, - [SMALL_STATE(674)] = 21558, - [SMALL_STATE(675)] = 21574, - [SMALL_STATE(676)] = 21590, - [SMALL_STATE(677)] = 21602, - [SMALL_STATE(678)] = 21618, - [SMALL_STATE(679)] = 21630, - [SMALL_STATE(680)] = 21646, - [SMALL_STATE(681)] = 21658, - [SMALL_STATE(682)] = 21674, - [SMALL_STATE(683)] = 21690, - [SMALL_STATE(684)] = 21706, - [SMALL_STATE(685)] = 21718, - [SMALL_STATE(686)] = 21734, - [SMALL_STATE(687)] = 21750, - [SMALL_STATE(688)] = 21766, - [SMALL_STATE(689)] = 21782, - [SMALL_STATE(690)] = 21798, - [SMALL_STATE(691)] = 21814, - [SMALL_STATE(692)] = 21830, - [SMALL_STATE(693)] = 21837, - [SMALL_STATE(694)] = 21846, - [SMALL_STATE(695)] = 21856, - [SMALL_STATE(696)] = 21864, - [SMALL_STATE(697)] = 21872, - [SMALL_STATE(698)] = 21879, - [SMALL_STATE(699)] = 21886, - [SMALL_STATE(700)] = 21893, - [SMALL_STATE(701)] = 21900, - [SMALL_STATE(702)] = 21907, - [SMALL_STATE(703)] = 21914, - [SMALL_STATE(704)] = 21921, - [SMALL_STATE(705)] = 21928, - [SMALL_STATE(706)] = 21935, - [SMALL_STATE(707)] = 21942, - [SMALL_STATE(708)] = 21949, - [SMALL_STATE(709)] = 21956, - [SMALL_STATE(710)] = 21963, - [SMALL_STATE(711)] = 21970, - [SMALL_STATE(712)] = 21977, - [SMALL_STATE(713)] = 21984, - [SMALL_STATE(714)] = 21991, - [SMALL_STATE(715)] = 21998, - [SMALL_STATE(716)] = 22005, - [SMALL_STATE(717)] = 22012, - [SMALL_STATE(718)] = 22019, - [SMALL_STATE(719)] = 22026, - [SMALL_STATE(720)] = 22033, - [SMALL_STATE(721)] = 22040, - [SMALL_STATE(722)] = 22047, - [SMALL_STATE(723)] = 22054, - [SMALL_STATE(724)] = 22061, - [SMALL_STATE(725)] = 22068, - [SMALL_STATE(726)] = 22075, - [SMALL_STATE(727)] = 22082, - [SMALL_STATE(728)] = 22089, - [SMALL_STATE(729)] = 22096, - [SMALL_STATE(730)] = 22103, - [SMALL_STATE(731)] = 22110, - [SMALL_STATE(732)] = 22117, - [SMALL_STATE(733)] = 22124, - [SMALL_STATE(734)] = 22131, - [SMALL_STATE(735)] = 22138, - [SMALL_STATE(736)] = 22145, - [SMALL_STATE(737)] = 22152, - [SMALL_STATE(738)] = 22159, - [SMALL_STATE(739)] = 22166, - [SMALL_STATE(740)] = 22173, - [SMALL_STATE(741)] = 22180, - [SMALL_STATE(742)] = 22187, - [SMALL_STATE(743)] = 22194, - [SMALL_STATE(744)] = 22201, - [SMALL_STATE(745)] = 22208, - [SMALL_STATE(746)] = 22215, - [SMALL_STATE(747)] = 22222, - [SMALL_STATE(748)] = 22229, - [SMALL_STATE(749)] = 22236, - [SMALL_STATE(750)] = 22243, - [SMALL_STATE(751)] = 22250, - [SMALL_STATE(752)] = 22257, - [SMALL_STATE(753)] = 22264, - [SMALL_STATE(754)] = 22271, - [SMALL_STATE(755)] = 22278, - [SMALL_STATE(756)] = 22285, - [SMALL_STATE(757)] = 22292, - [SMALL_STATE(758)] = 22299, - [SMALL_STATE(759)] = 22306, - [SMALL_STATE(760)] = 22313, - [SMALL_STATE(761)] = 22320, - [SMALL_STATE(762)] = 22327, - [SMALL_STATE(763)] = 22334, - [SMALL_STATE(764)] = 22341, - [SMALL_STATE(765)] = 22348, - [SMALL_STATE(766)] = 22355, - [SMALL_STATE(767)] = 22362, - [SMALL_STATE(768)] = 22369, - [SMALL_STATE(769)] = 22376, - [SMALL_STATE(770)] = 22383, - [SMALL_STATE(771)] = 22390, - [SMALL_STATE(772)] = 22397, - [SMALL_STATE(773)] = 22404, - [SMALL_STATE(774)] = 22411, - [SMALL_STATE(775)] = 22418, - [SMALL_STATE(776)] = 22425, - [SMALL_STATE(777)] = 22432, - [SMALL_STATE(778)] = 22439, - [SMALL_STATE(779)] = 22446, - [SMALL_STATE(780)] = 22453, - [SMALL_STATE(781)] = 22460, - [SMALL_STATE(782)] = 22467, - [SMALL_STATE(783)] = 22474, - [SMALL_STATE(784)] = 22481, - [SMALL_STATE(785)] = 22488, - [SMALL_STATE(786)] = 22495, - [SMALL_STATE(787)] = 22502, - [SMALL_STATE(788)] = 22509, - [SMALL_STATE(789)] = 22516, - [SMALL_STATE(790)] = 22523, - [SMALL_STATE(791)] = 22530, - [SMALL_STATE(792)] = 22537, - [SMALL_STATE(793)] = 22544, - [SMALL_STATE(794)] = 22551, - [SMALL_STATE(795)] = 22558, - [SMALL_STATE(796)] = 22565, - [SMALL_STATE(797)] = 22572, - [SMALL_STATE(798)] = 22579, - [SMALL_STATE(799)] = 22586, - [SMALL_STATE(800)] = 22593, - [SMALL_STATE(801)] = 22600, - [SMALL_STATE(802)] = 22607, - [SMALL_STATE(803)] = 22614, - [SMALL_STATE(804)] = 22621, - [SMALL_STATE(805)] = 22628, - [SMALL_STATE(806)] = 22635, - [SMALL_STATE(807)] = 22642, - [SMALL_STATE(808)] = 22649, - [SMALL_STATE(809)] = 22656, - [SMALL_STATE(810)] = 22663, - [SMALL_STATE(811)] = 22670, - [SMALL_STATE(812)] = 22677, - [SMALL_STATE(813)] = 22684, - [SMALL_STATE(814)] = 22691, - [SMALL_STATE(815)] = 22698, - [SMALL_STATE(816)] = 22705, - [SMALL_STATE(817)] = 22712, - [SMALL_STATE(818)] = 22719, - [SMALL_STATE(819)] = 22726, - [SMALL_STATE(820)] = 22733, - [SMALL_STATE(821)] = 22740, - [SMALL_STATE(822)] = 22747, - [SMALL_STATE(823)] = 22754, - [SMALL_STATE(824)] = 22761, - [SMALL_STATE(825)] = 22768, - [SMALL_STATE(826)] = 22775, - [SMALL_STATE(827)] = 22782, - [SMALL_STATE(828)] = 22789, - [SMALL_STATE(829)] = 22796, - [SMALL_STATE(830)] = 22803, - [SMALL_STATE(831)] = 22810, - [SMALL_STATE(832)] = 22817, - [SMALL_STATE(833)] = 22824, - [SMALL_STATE(834)] = 22831, - [SMALL_STATE(835)] = 22838, - [SMALL_STATE(836)] = 22845, - [SMALL_STATE(837)] = 22852, - [SMALL_STATE(838)] = 22859, - [SMALL_STATE(839)] = 22866, - [SMALL_STATE(840)] = 22873, - [SMALL_STATE(841)] = 22880, - [SMALL_STATE(842)] = 22887, - [SMALL_STATE(843)] = 22894, - [SMALL_STATE(844)] = 22901, - [SMALL_STATE(845)] = 22908, - [SMALL_STATE(846)] = 22915, - [SMALL_STATE(847)] = 22922, - [SMALL_STATE(848)] = 22929, - [SMALL_STATE(849)] = 22936, - [SMALL_STATE(850)] = 22943, - [SMALL_STATE(851)] = 22950, - [SMALL_STATE(852)] = 22957, - [SMALL_STATE(853)] = 22964, - [SMALL_STATE(854)] = 22971, - [SMALL_STATE(855)] = 22978, - [SMALL_STATE(856)] = 22985, - [SMALL_STATE(857)] = 22992, - [SMALL_STATE(858)] = 22999, - [SMALL_STATE(859)] = 23006, - [SMALL_STATE(860)] = 23013, - [SMALL_STATE(861)] = 23020, - [SMALL_STATE(862)] = 23027, - [SMALL_STATE(863)] = 23034, - [SMALL_STATE(864)] = 23041, - [SMALL_STATE(865)] = 23048, - [SMALL_STATE(866)] = 23055, - [SMALL_STATE(867)] = 23059, - [SMALL_STATE(868)] = 23063, - [SMALL_STATE(869)] = 23067, - [SMALL_STATE(870)] = 23071, - [SMALL_STATE(871)] = 23075, - [SMALL_STATE(872)] = 23079, - [SMALL_STATE(873)] = 23083, - [SMALL_STATE(874)] = 23087, - [SMALL_STATE(875)] = 23091, - [SMALL_STATE(876)] = 23095, - [SMALL_STATE(877)] = 23099, - [SMALL_STATE(878)] = 23103, - [SMALL_STATE(879)] = 23107, - [SMALL_STATE(880)] = 23111, - [SMALL_STATE(881)] = 23115, - [SMALL_STATE(882)] = 23119, - [SMALL_STATE(883)] = 23123, - [SMALL_STATE(884)] = 23127, - [SMALL_STATE(885)] = 23131, - [SMALL_STATE(886)] = 23135, - [SMALL_STATE(887)] = 23139, - [SMALL_STATE(888)] = 23143, - [SMALL_STATE(889)] = 23147, - [SMALL_STATE(890)] = 23151, - [SMALL_STATE(891)] = 23155, - [SMALL_STATE(892)] = 23159, - [SMALL_STATE(893)] = 23163, - [SMALL_STATE(894)] = 23167, - [SMALL_STATE(895)] = 23171, - [SMALL_STATE(896)] = 23175, - [SMALL_STATE(897)] = 23179, - [SMALL_STATE(898)] = 23183, - [SMALL_STATE(899)] = 23187, - [SMALL_STATE(900)] = 23191, - [SMALL_STATE(901)] = 23195, - [SMALL_STATE(902)] = 23199, - [SMALL_STATE(903)] = 23203, - [SMALL_STATE(904)] = 23207, - [SMALL_STATE(905)] = 23211, - [SMALL_STATE(906)] = 23215, - [SMALL_STATE(907)] = 23219, - [SMALL_STATE(908)] = 23223, - [SMALL_STATE(909)] = 23227, - [SMALL_STATE(910)] = 23231, - [SMALL_STATE(911)] = 23235, - [SMALL_STATE(912)] = 23239, - [SMALL_STATE(913)] = 23243, - [SMALL_STATE(914)] = 23247, - [SMALL_STATE(915)] = 23251, - [SMALL_STATE(916)] = 23255, - [SMALL_STATE(917)] = 23259, - [SMALL_STATE(918)] = 23263, - [SMALL_STATE(919)] = 23267, - [SMALL_STATE(920)] = 23271, - [SMALL_STATE(921)] = 23275, - [SMALL_STATE(922)] = 23279, - [SMALL_STATE(923)] = 23283, - [SMALL_STATE(924)] = 23287, - [SMALL_STATE(925)] = 23291, - [SMALL_STATE(926)] = 23295, - [SMALL_STATE(927)] = 23299, - [SMALL_STATE(928)] = 23303, - [SMALL_STATE(929)] = 23307, - [SMALL_STATE(930)] = 23311, - [SMALL_STATE(931)] = 23315, - [SMALL_STATE(932)] = 23319, - [SMALL_STATE(933)] = 23323, - [SMALL_STATE(934)] = 23327, - [SMALL_STATE(935)] = 23331, - [SMALL_STATE(936)] = 23335, - [SMALL_STATE(937)] = 23339, - [SMALL_STATE(938)] = 23343, - [SMALL_STATE(939)] = 23347, - [SMALL_STATE(940)] = 23351, - [SMALL_STATE(941)] = 23355, - [SMALL_STATE(942)] = 23359, - [SMALL_STATE(943)] = 23363, - [SMALL_STATE(944)] = 23367, - [SMALL_STATE(945)] = 23371, - [SMALL_STATE(946)] = 23375, - [SMALL_STATE(947)] = 23379, - [SMALL_STATE(948)] = 23383, - [SMALL_STATE(949)] = 23387, - [SMALL_STATE(950)] = 23391, - [SMALL_STATE(951)] = 23395, - [SMALL_STATE(952)] = 23399, - [SMALL_STATE(953)] = 23403, - [SMALL_STATE(954)] = 23407, - [SMALL_STATE(955)] = 23411, - [SMALL_STATE(956)] = 23415, - [SMALL_STATE(957)] = 23419, - [SMALL_STATE(958)] = 23423, - [SMALL_STATE(959)] = 23427, - [SMALL_STATE(960)] = 23431, - [SMALL_STATE(961)] = 23435, - [SMALL_STATE(962)] = 23439, - [SMALL_STATE(963)] = 23443, - [SMALL_STATE(964)] = 23447, - [SMALL_STATE(965)] = 23451, - [SMALL_STATE(966)] = 23455, - [SMALL_STATE(967)] = 23459, - [SMALL_STATE(968)] = 23463, - [SMALL_STATE(969)] = 23467, - [SMALL_STATE(970)] = 23471, - [SMALL_STATE(971)] = 23475, - [SMALL_STATE(972)] = 23479, - [SMALL_STATE(973)] = 23483, - [SMALL_STATE(974)] = 23487, - [SMALL_STATE(975)] = 23491, - [SMALL_STATE(976)] = 23495, - [SMALL_STATE(977)] = 23499, - [SMALL_STATE(978)] = 23503, - [SMALL_STATE(979)] = 23507, - [SMALL_STATE(980)] = 23511, - [SMALL_STATE(981)] = 23515, - [SMALL_STATE(982)] = 23519, - [SMALL_STATE(983)] = 23523, - [SMALL_STATE(984)] = 23527, - [SMALL_STATE(985)] = 23531, - [SMALL_STATE(986)] = 23535, - [SMALL_STATE(987)] = 23539, - [SMALL_STATE(988)] = 23543, - [SMALL_STATE(989)] = 23547, - [SMALL_STATE(990)] = 23551, - [SMALL_STATE(991)] = 23555, - [SMALL_STATE(992)] = 23559, - [SMALL_STATE(993)] = 23563, - [SMALL_STATE(994)] = 23567, - [SMALL_STATE(995)] = 23571, - [SMALL_STATE(996)] = 23575, - [SMALL_STATE(997)] = 23579, - [SMALL_STATE(998)] = 23583, - [SMALL_STATE(999)] = 23587, - [SMALL_STATE(1000)] = 23591, - [SMALL_STATE(1001)] = 23595, - [SMALL_STATE(1002)] = 23599, - [SMALL_STATE(1003)] = 23603, - [SMALL_STATE(1004)] = 23607, - [SMALL_STATE(1005)] = 23611, - [SMALL_STATE(1006)] = 23615, - [SMALL_STATE(1007)] = 23619, - [SMALL_STATE(1008)] = 23623, - [SMALL_STATE(1009)] = 23627, - [SMALL_STATE(1010)] = 23631, - [SMALL_STATE(1011)] = 23635, - [SMALL_STATE(1012)] = 23639, - [SMALL_STATE(1013)] = 23643, - [SMALL_STATE(1014)] = 23647, - [SMALL_STATE(1015)] = 23651, - [SMALL_STATE(1016)] = 23655, - [SMALL_STATE(1017)] = 23659, - [SMALL_STATE(1018)] = 23663, - [SMALL_STATE(1019)] = 23667, - [SMALL_STATE(1020)] = 23671, - [SMALL_STATE(1021)] = 23675, - [SMALL_STATE(1022)] = 23679, - [SMALL_STATE(1023)] = 23683, - [SMALL_STATE(1024)] = 23687, - [SMALL_STATE(1025)] = 23691, - [SMALL_STATE(1026)] = 23695, - [SMALL_STATE(1027)] = 23699, - [SMALL_STATE(1028)] = 23703, - [SMALL_STATE(1029)] = 23707, - [SMALL_STATE(1030)] = 23711, - [SMALL_STATE(1031)] = 23715, - [SMALL_STATE(1032)] = 23719, - [SMALL_STATE(1033)] = 23723, - [SMALL_STATE(1034)] = 23727, - [SMALL_STATE(1035)] = 23731, - [SMALL_STATE(1036)] = 23735, - [SMALL_STATE(1037)] = 23739, - [SMALL_STATE(1038)] = 23743, - [SMALL_STATE(1039)] = 23747, - [SMALL_STATE(1040)] = 23751, - [SMALL_STATE(1041)] = 23755, - [SMALL_STATE(1042)] = 23759, - [SMALL_STATE(1043)] = 23763, - [SMALL_STATE(1044)] = 23767, - [SMALL_STATE(1045)] = 23771, - [SMALL_STATE(1046)] = 23775, - [SMALL_STATE(1047)] = 23779, - [SMALL_STATE(1048)] = 23783, - [SMALL_STATE(1049)] = 23787, - [SMALL_STATE(1050)] = 23791, - [SMALL_STATE(1051)] = 23795, - [SMALL_STATE(1052)] = 23799, - [SMALL_STATE(1053)] = 23803, - [SMALL_STATE(1054)] = 23807, - [SMALL_STATE(1055)] = 23811, - [SMALL_STATE(1056)] = 23815, - [SMALL_STATE(1057)] = 23819, - [SMALL_STATE(1058)] = 23823, - [SMALL_STATE(1059)] = 23827, - [SMALL_STATE(1060)] = 23831, - [SMALL_STATE(1061)] = 23835, - [SMALL_STATE(1062)] = 23839, - [SMALL_STATE(1063)] = 23843, - [SMALL_STATE(1064)] = 23847, - [SMALL_STATE(1065)] = 23851, - [SMALL_STATE(1066)] = 23855, - [SMALL_STATE(1067)] = 23859, - [SMALL_STATE(1068)] = 23863, - [SMALL_STATE(1069)] = 23867, - [SMALL_STATE(1070)] = 23871, - [SMALL_STATE(1071)] = 23875, - [SMALL_STATE(1072)] = 23879, - [SMALL_STATE(1073)] = 23883, - [SMALL_STATE(1074)] = 23887, - [SMALL_STATE(1075)] = 23891, - [SMALL_STATE(1076)] = 23895, - [SMALL_STATE(1077)] = 23899, - [SMALL_STATE(1078)] = 23903, - [SMALL_STATE(1079)] = 23907, - [SMALL_STATE(1080)] = 23911, - [SMALL_STATE(1081)] = 23915, - [SMALL_STATE(1082)] = 23919, - [SMALL_STATE(1083)] = 23923, - [SMALL_STATE(1084)] = 23927, - [SMALL_STATE(1085)] = 23931, - [SMALL_STATE(1086)] = 23935, - [SMALL_STATE(1087)] = 23939, - [SMALL_STATE(1088)] = 23943, - [SMALL_STATE(1089)] = 23947, - [SMALL_STATE(1090)] = 23951, - [SMALL_STATE(1091)] = 23955, - [SMALL_STATE(1092)] = 23959, - [SMALL_STATE(1093)] = 23963, - [SMALL_STATE(1094)] = 23967, - [SMALL_STATE(1095)] = 23971, - [SMALL_STATE(1096)] = 23975, - [SMALL_STATE(1097)] = 23979, - [SMALL_STATE(1098)] = 23983, - [SMALL_STATE(1099)] = 23987, - [SMALL_STATE(1100)] = 23991, - [SMALL_STATE(1101)] = 23995, - [SMALL_STATE(1102)] = 23999, - [SMALL_STATE(1103)] = 24003, - [SMALL_STATE(1104)] = 24007, - [SMALL_STATE(1105)] = 24011, - [SMALL_STATE(1106)] = 24015, - [SMALL_STATE(1107)] = 24019, - [SMALL_STATE(1108)] = 24023, - [SMALL_STATE(1109)] = 24027, - [SMALL_STATE(1110)] = 24031, - [SMALL_STATE(1111)] = 24035, - [SMALL_STATE(1112)] = 24039, - [SMALL_STATE(1113)] = 24043, - [SMALL_STATE(1114)] = 24047, - [SMALL_STATE(1115)] = 24051, - [SMALL_STATE(1116)] = 24055, - [SMALL_STATE(1117)] = 24059, - [SMALL_STATE(1118)] = 24063, - [SMALL_STATE(1119)] = 24067, - [SMALL_STATE(1120)] = 24071, - [SMALL_STATE(1121)] = 24075, - [SMALL_STATE(1122)] = 24079, - [SMALL_STATE(1123)] = 24083, - [SMALL_STATE(1124)] = 24087, - [SMALL_STATE(1125)] = 24091, - [SMALL_STATE(1126)] = 24095, - [SMALL_STATE(1127)] = 24099, - [SMALL_STATE(1128)] = 24103, - [SMALL_STATE(1129)] = 24107, - [SMALL_STATE(1130)] = 24111, - [SMALL_STATE(1131)] = 24115, - [SMALL_STATE(1132)] = 24119, - [SMALL_STATE(1133)] = 24123, - [SMALL_STATE(1134)] = 24127, - [SMALL_STATE(1135)] = 24131, - [SMALL_STATE(1136)] = 24135, - [SMALL_STATE(1137)] = 24139, - [SMALL_STATE(1138)] = 24143, - [SMALL_STATE(1139)] = 24147, - [SMALL_STATE(1140)] = 24151, - [SMALL_STATE(1141)] = 24155, - [SMALL_STATE(1142)] = 24159, - [SMALL_STATE(1143)] = 24163, - [SMALL_STATE(1144)] = 24167, - [SMALL_STATE(1145)] = 24171, - [SMALL_STATE(1146)] = 24175, - [SMALL_STATE(1147)] = 24179, - [SMALL_STATE(1148)] = 24183, - [SMALL_STATE(1149)] = 24187, - [SMALL_STATE(1150)] = 24191, - [SMALL_STATE(1151)] = 24195, - [SMALL_STATE(1152)] = 24199, - [SMALL_STATE(1153)] = 24203, - [SMALL_STATE(1154)] = 24207, - [SMALL_STATE(1155)] = 24211, - [SMALL_STATE(1156)] = 24215, - [SMALL_STATE(1157)] = 24219, - [SMALL_STATE(1158)] = 24223, - [SMALL_STATE(1159)] = 24227, - [SMALL_STATE(1160)] = 24231, - [SMALL_STATE(1161)] = 24235, - [SMALL_STATE(1162)] = 24239, - [SMALL_STATE(1163)] = 24243, - [SMALL_STATE(1164)] = 24247, - [SMALL_STATE(1165)] = 24251, - [SMALL_STATE(1166)] = 24255, - [SMALL_STATE(1167)] = 24259, - [SMALL_STATE(1168)] = 24263, - [SMALL_STATE(1169)] = 24267, - [SMALL_STATE(1170)] = 24271, - [SMALL_STATE(1171)] = 24275, - [SMALL_STATE(1172)] = 24279, - [SMALL_STATE(1173)] = 24283, - [SMALL_STATE(1174)] = 24287, - [SMALL_STATE(1175)] = 24291, - [SMALL_STATE(1176)] = 24295, - [SMALL_STATE(1177)] = 24299, - [SMALL_STATE(1178)] = 24303, - [SMALL_STATE(1179)] = 24307, - [SMALL_STATE(1180)] = 24311, - [SMALL_STATE(1181)] = 24315, - [SMALL_STATE(1182)] = 24319, - [SMALL_STATE(1183)] = 24323, - [SMALL_STATE(1184)] = 24327, - [SMALL_STATE(1185)] = 24331, - [SMALL_STATE(1186)] = 24335, - [SMALL_STATE(1187)] = 24339, - [SMALL_STATE(1188)] = 24343, - [SMALL_STATE(1189)] = 24347, - [SMALL_STATE(1190)] = 24351, - [SMALL_STATE(1191)] = 24355, - [SMALL_STATE(1192)] = 24359, - [SMALL_STATE(1193)] = 24363, - [SMALL_STATE(1194)] = 24367, - [SMALL_STATE(1195)] = 24371, - [SMALL_STATE(1196)] = 24375, - [SMALL_STATE(1197)] = 24379, - [SMALL_STATE(1198)] = 24383, - [SMALL_STATE(1199)] = 24387, - [SMALL_STATE(1200)] = 24391, - [SMALL_STATE(1201)] = 24395, - [SMALL_STATE(1202)] = 24399, - [SMALL_STATE(1203)] = 24403, - [SMALL_STATE(1204)] = 24407, - [SMALL_STATE(1205)] = 24411, - [SMALL_STATE(1206)] = 24415, - [SMALL_STATE(1207)] = 24419, - [SMALL_STATE(1208)] = 24423, - [SMALL_STATE(1209)] = 24427, - [SMALL_STATE(1210)] = 24431, - [SMALL_STATE(1211)] = 24435, - [SMALL_STATE(1212)] = 24439, - [SMALL_STATE(1213)] = 24443, - [SMALL_STATE(1214)] = 24447, - [SMALL_STATE(1215)] = 24451, - [SMALL_STATE(1216)] = 24455, + [SMALL_STATE(213)] = 4203, + [SMALL_STATE(214)] = 4248, + [SMALL_STATE(215)] = 4291, + [SMALL_STATE(216)] = 4336, + [SMALL_STATE(217)] = 4381, + [SMALL_STATE(218)] = 4424, + [SMALL_STATE(219)] = 4467, + [SMALL_STATE(220)] = 4510, + [SMALL_STATE(221)] = 4553, + [SMALL_STATE(222)] = 4593, + [SMALL_STATE(223)] = 4633, + [SMALL_STATE(224)] = 4677, + [SMALL_STATE(225)] = 4717, + [SMALL_STATE(226)] = 4757, + [SMALL_STATE(227)] = 4797, + [SMALL_STATE(228)] = 4837, + [SMALL_STATE(229)] = 4877, + [SMALL_STATE(230)] = 4917, + [SMALL_STATE(231)] = 4957, + [SMALL_STATE(232)] = 4997, + [SMALL_STATE(233)] = 5037, + [SMALL_STATE(234)] = 5077, + [SMALL_STATE(235)] = 5117, + [SMALL_STATE(236)] = 5157, + [SMALL_STATE(237)] = 5197, + [SMALL_STATE(238)] = 5237, + [SMALL_STATE(239)] = 5277, + [SMALL_STATE(240)] = 5317, + [SMALL_STATE(241)] = 5357, + [SMALL_STATE(242)] = 5399, + [SMALL_STATE(243)] = 5439, + [SMALL_STATE(244)] = 5479, + [SMALL_STATE(245)] = 5519, + [SMALL_STATE(246)] = 5559, + [SMALL_STATE(247)] = 5603, + [SMALL_STATE(248)] = 5643, + [SMALL_STATE(249)] = 5683, + [SMALL_STATE(250)] = 5723, + [SMALL_STATE(251)] = 5763, + [SMALL_STATE(252)] = 5803, + [SMALL_STATE(253)] = 5843, + [SMALL_STATE(254)] = 5883, + [SMALL_STATE(255)] = 5923, + [SMALL_STATE(256)] = 5963, + [SMALL_STATE(257)] = 6003, + [SMALL_STATE(258)] = 6043, + [SMALL_STATE(259)] = 6083, + [SMALL_STATE(260)] = 6123, + [SMALL_STATE(261)] = 6163, + [SMALL_STATE(262)] = 6203, + [SMALL_STATE(263)] = 6243, + [SMALL_STATE(264)] = 6283, + [SMALL_STATE(265)] = 6323, + [SMALL_STATE(266)] = 6363, + [SMALL_STATE(267)] = 6403, + [SMALL_STATE(268)] = 6443, + [SMALL_STATE(269)] = 6483, + [SMALL_STATE(270)] = 6523, + [SMALL_STATE(271)] = 6563, + [SMALL_STATE(272)] = 6603, + [SMALL_STATE(273)] = 6643, + [SMALL_STATE(274)] = 6683, + [SMALL_STATE(275)] = 6723, + [SMALL_STATE(276)] = 6763, + [SMALL_STATE(277)] = 6803, + [SMALL_STATE(278)] = 6843, + [SMALL_STATE(279)] = 6885, + [SMALL_STATE(280)] = 6925, + [SMALL_STATE(281)] = 6965, + [SMALL_STATE(282)] = 7005, + [SMALL_STATE(283)] = 7045, + [SMALL_STATE(284)] = 7085, + [SMALL_STATE(285)] = 7125, + [SMALL_STATE(286)] = 7165, + [SMALL_STATE(287)] = 7205, + [SMALL_STATE(288)] = 7245, + [SMALL_STATE(289)] = 7285, + [SMALL_STATE(290)] = 7325, + [SMALL_STATE(291)] = 7365, + [SMALL_STATE(292)] = 7405, + [SMALL_STATE(293)] = 7445, + [SMALL_STATE(294)] = 7485, + [SMALL_STATE(295)] = 7525, + [SMALL_STATE(296)] = 7565, + [SMALL_STATE(297)] = 7605, + [SMALL_STATE(298)] = 7645, + [SMALL_STATE(299)] = 7685, + [SMALL_STATE(300)] = 7725, + [SMALL_STATE(301)] = 7765, + [SMALL_STATE(302)] = 7805, + [SMALL_STATE(303)] = 7845, + [SMALL_STATE(304)] = 7885, + [SMALL_STATE(305)] = 7925, + [SMALL_STATE(306)] = 7965, + [SMALL_STATE(307)] = 8005, + [SMALL_STATE(308)] = 8045, + [SMALL_STATE(309)] = 8085, + [SMALL_STATE(310)] = 8125, + [SMALL_STATE(311)] = 8165, + [SMALL_STATE(312)] = 8205, + [SMALL_STATE(313)] = 8245, + [SMALL_STATE(314)] = 8285, + [SMALL_STATE(315)] = 8325, + [SMALL_STATE(316)] = 8365, + [SMALL_STATE(317)] = 8405, + [SMALL_STATE(318)] = 8445, + [SMALL_STATE(319)] = 8485, + [SMALL_STATE(320)] = 8525, + [SMALL_STATE(321)] = 8565, + [SMALL_STATE(322)] = 8607, + [SMALL_STATE(323)] = 8649, + [SMALL_STATE(324)] = 8689, + [SMALL_STATE(325)] = 8729, + [SMALL_STATE(326)] = 8769, + [SMALL_STATE(327)] = 8809, + [SMALL_STATE(328)] = 8849, + [SMALL_STATE(329)] = 8889, + [SMALL_STATE(330)] = 8929, + [SMALL_STATE(331)] = 8969, + [SMALL_STATE(332)] = 9009, + [SMALL_STATE(333)] = 9049, + [SMALL_STATE(334)] = 9089, + [SMALL_STATE(335)] = 9129, + [SMALL_STATE(336)] = 9169, + [SMALL_STATE(337)] = 9209, + [SMALL_STATE(338)] = 9249, + [SMALL_STATE(339)] = 9289, + [SMALL_STATE(340)] = 9329, + [SMALL_STATE(341)] = 9369, + [SMALL_STATE(342)] = 9409, + [SMALL_STATE(343)] = 9449, + [SMALL_STATE(344)] = 9489, + [SMALL_STATE(345)] = 9533, + [SMALL_STATE(346)] = 9573, + [SMALL_STATE(347)] = 9613, + [SMALL_STATE(348)] = 9655, + [SMALL_STATE(349)] = 9695, + [SMALL_STATE(350)] = 9735, + [SMALL_STATE(351)] = 9775, + [SMALL_STATE(352)] = 9815, + [SMALL_STATE(353)] = 9855, + [SMALL_STATE(354)] = 9895, + [SMALL_STATE(355)] = 9935, + [SMALL_STATE(356)] = 9975, + [SMALL_STATE(357)] = 10015, + [SMALL_STATE(358)] = 10055, + [SMALL_STATE(359)] = 10095, + [SMALL_STATE(360)] = 10135, + [SMALL_STATE(361)] = 10177, + [SMALL_STATE(362)] = 10217, + [SMALL_STATE(363)] = 10257, + [SMALL_STATE(364)] = 10297, + [SMALL_STATE(365)] = 10337, + [SMALL_STATE(366)] = 10377, + [SMALL_STATE(367)] = 10419, + [SMALL_STATE(368)] = 10459, + [SMALL_STATE(369)] = 10499, + [SMALL_STATE(370)] = 10539, + [SMALL_STATE(371)] = 10579, + [SMALL_STATE(372)] = 10619, + [SMALL_STATE(373)] = 10659, + [SMALL_STATE(374)] = 10699, + [SMALL_STATE(375)] = 10741, + [SMALL_STATE(376)] = 10781, + [SMALL_STATE(377)] = 10821, + [SMALL_STATE(378)] = 10861, + [SMALL_STATE(379)] = 10901, + [SMALL_STATE(380)] = 10941, + [SMALL_STATE(381)] = 10981, + [SMALL_STATE(382)] = 11021, + [SMALL_STATE(383)] = 11061, + [SMALL_STATE(384)] = 11103, + [SMALL_STATE(385)] = 11143, + [SMALL_STATE(386)] = 11183, + [SMALL_STATE(387)] = 11223, + [SMALL_STATE(388)] = 11263, + [SMALL_STATE(389)] = 11303, + [SMALL_STATE(390)] = 11343, + [SMALL_STATE(391)] = 11383, + [SMALL_STATE(392)] = 11423, + [SMALL_STATE(393)] = 11463, + [SMALL_STATE(394)] = 11503, + [SMALL_STATE(395)] = 11543, + [SMALL_STATE(396)] = 11583, + [SMALL_STATE(397)] = 11623, + [SMALL_STATE(398)] = 11663, + [SMALL_STATE(399)] = 11703, + [SMALL_STATE(400)] = 11743, + [SMALL_STATE(401)] = 11783, + [SMALL_STATE(402)] = 11823, + [SMALL_STATE(403)] = 11863, + [SMALL_STATE(404)] = 11903, + [SMALL_STATE(405)] = 11943, + [SMALL_STATE(406)] = 11983, + [SMALL_STATE(407)] = 12023, + [SMALL_STATE(408)] = 12063, + [SMALL_STATE(409)] = 12103, + [SMALL_STATE(410)] = 12143, + [SMALL_STATE(411)] = 12185, + [SMALL_STATE(412)] = 12225, + [SMALL_STATE(413)] = 12265, + [SMALL_STATE(414)] = 12305, + [SMALL_STATE(415)] = 12345, + [SMALL_STATE(416)] = 12385, + [SMALL_STATE(417)] = 12425, + [SMALL_STATE(418)] = 12465, + [SMALL_STATE(419)] = 12505, + [SMALL_STATE(420)] = 12545, + [SMALL_STATE(421)] = 12585, + [SMALL_STATE(422)] = 12625, + [SMALL_STATE(423)] = 12665, + [SMALL_STATE(424)] = 12705, + [SMALL_STATE(425)] = 12745, + [SMALL_STATE(426)] = 12785, + [SMALL_STATE(427)] = 12825, + [SMALL_STATE(428)] = 12865, + [SMALL_STATE(429)] = 12905, + [SMALL_STATE(430)] = 12945, + [SMALL_STATE(431)] = 12985, + [SMALL_STATE(432)] = 13025, + [SMALL_STATE(433)] = 13065, + [SMALL_STATE(434)] = 13105, + [SMALL_STATE(435)] = 13145, + [SMALL_STATE(436)] = 13185, + [SMALL_STATE(437)] = 13225, + [SMALL_STATE(438)] = 13265, + [SMALL_STATE(439)] = 13305, + [SMALL_STATE(440)] = 13345, + [SMALL_STATE(441)] = 13385, + [SMALL_STATE(442)] = 13425, + [SMALL_STATE(443)] = 13465, + [SMALL_STATE(444)] = 13505, + [SMALL_STATE(445)] = 13545, + [SMALL_STATE(446)] = 13585, + [SMALL_STATE(447)] = 13625, + [SMALL_STATE(448)] = 13665, + [SMALL_STATE(449)] = 13705, + [SMALL_STATE(450)] = 13745, + [SMALL_STATE(451)] = 13785, + [SMALL_STATE(452)] = 13825, + [SMALL_STATE(453)] = 13865, + [SMALL_STATE(454)] = 13905, + [SMALL_STATE(455)] = 13947, + [SMALL_STATE(456)] = 13987, + [SMALL_STATE(457)] = 14027, + [SMALL_STATE(458)] = 14067, + [SMALL_STATE(459)] = 14111, + [SMALL_STATE(460)] = 14151, + [SMALL_STATE(461)] = 14191, + [SMALL_STATE(462)] = 14231, + [SMALL_STATE(463)] = 14271, + [SMALL_STATE(464)] = 14311, + [SMALL_STATE(465)] = 14351, + [SMALL_STATE(466)] = 14391, + [SMALL_STATE(467)] = 14431, + [SMALL_STATE(468)] = 14471, + [SMALL_STATE(469)] = 14511, + [SMALL_STATE(470)] = 14551, + [SMALL_STATE(471)] = 14591, + [SMALL_STATE(472)] = 14631, + [SMALL_STATE(473)] = 14673, + [SMALL_STATE(474)] = 14713, + [SMALL_STATE(475)] = 14753, + [SMALL_STATE(476)] = 14793, + [SMALL_STATE(477)] = 14833, + [SMALL_STATE(478)] = 14873, + [SMALL_STATE(479)] = 14913, + [SMALL_STATE(480)] = 14953, + [SMALL_STATE(481)] = 14993, + [SMALL_STATE(482)] = 15033, + [SMALL_STATE(483)] = 15073, + [SMALL_STATE(484)] = 15113, + [SMALL_STATE(485)] = 15153, + [SMALL_STATE(486)] = 15193, + [SMALL_STATE(487)] = 15233, + [SMALL_STATE(488)] = 15273, + [SMALL_STATE(489)] = 15313, + [SMALL_STATE(490)] = 15353, + [SMALL_STATE(491)] = 15393, + [SMALL_STATE(492)] = 15433, + [SMALL_STATE(493)] = 15473, + [SMALL_STATE(494)] = 15513, + [SMALL_STATE(495)] = 15553, + [SMALL_STATE(496)] = 15593, + [SMALL_STATE(497)] = 15633, + [SMALL_STATE(498)] = 15673, + [SMALL_STATE(499)] = 15715, + [SMALL_STATE(500)] = 15755, + [SMALL_STATE(501)] = 15795, + [SMALL_STATE(502)] = 15835, + [SMALL_STATE(503)] = 15875, + [SMALL_STATE(504)] = 15915, + [SMALL_STATE(505)] = 15955, + [SMALL_STATE(506)] = 15995, + [SMALL_STATE(507)] = 16035, + [SMALL_STATE(508)] = 16075, + [SMALL_STATE(509)] = 16115, + [SMALL_STATE(510)] = 16155, + [SMALL_STATE(511)] = 16195, + [SMALL_STATE(512)] = 16235, + [SMALL_STATE(513)] = 16275, + [SMALL_STATE(514)] = 16315, + [SMALL_STATE(515)] = 16355, + [SMALL_STATE(516)] = 16395, + [SMALL_STATE(517)] = 16435, + [SMALL_STATE(518)] = 16477, + [SMALL_STATE(519)] = 16517, + [SMALL_STATE(520)] = 16557, + [SMALL_STATE(521)] = 16597, + [SMALL_STATE(522)] = 16637, + [SMALL_STATE(523)] = 16677, + [SMALL_STATE(524)] = 16717, + [SMALL_STATE(525)] = 16757, + [SMALL_STATE(526)] = 16797, + [SMALL_STATE(527)] = 16837, + [SMALL_STATE(528)] = 16877, + [SMALL_STATE(529)] = 16917, + [SMALL_STATE(530)] = 16957, + [SMALL_STATE(531)] = 16997, + [SMALL_STATE(532)] = 17037, + [SMALL_STATE(533)] = 17077, + [SMALL_STATE(534)] = 17117, + [SMALL_STATE(535)] = 17157, + [SMALL_STATE(536)] = 17199, + [SMALL_STATE(537)] = 17239, + [SMALL_STATE(538)] = 17278, + [SMALL_STATE(539)] = 17319, + [SMALL_STATE(540)] = 17358, + [SMALL_STATE(541)] = 17397, + [SMALL_STATE(542)] = 17436, + [SMALL_STATE(543)] = 17475, + [SMALL_STATE(544)] = 17514, + [SMALL_STATE(545)] = 17553, + [SMALL_STATE(546)] = 17592, + [SMALL_STATE(547)] = 17631, + [SMALL_STATE(548)] = 17670, + [SMALL_STATE(549)] = 17709, + [SMALL_STATE(550)] = 17748, + [SMALL_STATE(551)] = 17787, + [SMALL_STATE(552)] = 17826, + [SMALL_STATE(553)] = 17865, + [SMALL_STATE(554)] = 17904, + [SMALL_STATE(555)] = 17943, + [SMALL_STATE(556)] = 17982, + [SMALL_STATE(557)] = 18021, + [SMALL_STATE(558)] = 18060, + [SMALL_STATE(559)] = 18099, + [SMALL_STATE(560)] = 18138, + [SMALL_STATE(561)] = 18177, + [SMALL_STATE(562)] = 18216, + [SMALL_STATE(563)] = 18255, + [SMALL_STATE(564)] = 18294, + [SMALL_STATE(565)] = 18333, + [SMALL_STATE(566)] = 18372, + [SMALL_STATE(567)] = 18411, + [SMALL_STATE(568)] = 18450, + [SMALL_STATE(569)] = 18489, + [SMALL_STATE(570)] = 18528, + [SMALL_STATE(571)] = 18567, + [SMALL_STATE(572)] = 18606, + [SMALL_STATE(573)] = 18647, + [SMALL_STATE(574)] = 18686, + [SMALL_STATE(575)] = 18725, + [SMALL_STATE(576)] = 18764, + [SMALL_STATE(577)] = 18803, + [SMALL_STATE(578)] = 18842, + [SMALL_STATE(579)] = 18881, + [SMALL_STATE(580)] = 18920, + [SMALL_STATE(581)] = 18961, + [SMALL_STATE(582)] = 19000, + [SMALL_STATE(583)] = 19041, + [SMALL_STATE(584)] = 19080, + [SMALL_STATE(585)] = 19119, + [SMALL_STATE(586)] = 19158, + [SMALL_STATE(587)] = 19197, + [SMALL_STATE(588)] = 19236, + [SMALL_STATE(589)] = 19275, + [SMALL_STATE(590)] = 19314, + [SMALL_STATE(591)] = 19353, + [SMALL_STATE(592)] = 19392, + [SMALL_STATE(593)] = 19431, + [SMALL_STATE(594)] = 19470, + [SMALL_STATE(595)] = 19509, + [SMALL_STATE(596)] = 19548, + [SMALL_STATE(597)] = 19587, + [SMALL_STATE(598)] = 19626, + [SMALL_STATE(599)] = 19665, + [SMALL_STATE(600)] = 19704, + [SMALL_STATE(601)] = 19743, + [SMALL_STATE(602)] = 19782, + [SMALL_STATE(603)] = 19821, + [SMALL_STATE(604)] = 19860, + [SMALL_STATE(605)] = 19899, + [SMALL_STATE(606)] = 19938, + [SMALL_STATE(607)] = 19977, + [SMALL_STATE(608)] = 20016, + [SMALL_STATE(609)] = 20055, + [SMALL_STATE(610)] = 20094, + [SMALL_STATE(611)] = 20133, + [SMALL_STATE(612)] = 20172, + [SMALL_STATE(613)] = 20211, + [SMALL_STATE(614)] = 20250, + [SMALL_STATE(615)] = 20289, + [SMALL_STATE(616)] = 20328, + [SMALL_STATE(617)] = 20367, + [SMALL_STATE(618)] = 20406, + [SMALL_STATE(619)] = 20445, + [SMALL_STATE(620)] = 20486, + [SMALL_STATE(621)] = 20525, + [SMALL_STATE(622)] = 20564, + [SMALL_STATE(623)] = 20603, + [SMALL_STATE(624)] = 20642, + [SMALL_STATE(625)] = 20680, + [SMALL_STATE(626)] = 20718, + [SMALL_STATE(627)] = 20756, + [SMALL_STATE(628)] = 20794, + [SMALL_STATE(629)] = 20832, + [SMALL_STATE(630)] = 20863, + [SMALL_STATE(631)] = 20894, + [SMALL_STATE(632)] = 20925, + [SMALL_STATE(633)] = 20956, + [SMALL_STATE(634)] = 20987, + [SMALL_STATE(635)] = 21018, + [SMALL_STATE(636)] = 21049, + [SMALL_STATE(637)] = 21080, + [SMALL_STATE(638)] = 21111, + [SMALL_STATE(639)] = 21142, + [SMALL_STATE(640)] = 21173, + [SMALL_STATE(641)] = 21204, + [SMALL_STATE(642)] = 21235, + [SMALL_STATE(643)] = 21266, + [SMALL_STATE(644)] = 21297, + [SMALL_STATE(645)] = 21328, + [SMALL_STATE(646)] = 21359, + [SMALL_STATE(647)] = 21390, + [SMALL_STATE(648)] = 21421, + [SMALL_STATE(649)] = 21452, + [SMALL_STATE(650)] = 21483, + [SMALL_STATE(651)] = 21514, + [SMALL_STATE(652)] = 21545, + [SMALL_STATE(653)] = 21576, + [SMALL_STATE(654)] = 21607, + [SMALL_STATE(655)] = 21617, + [SMALL_STATE(656)] = 21627, + [SMALL_STATE(657)] = 21637, + [SMALL_STATE(658)] = 21647, + [SMALL_STATE(659)] = 21657, + [SMALL_STATE(660)] = 21667, + [SMALL_STATE(661)] = 21677, + [SMALL_STATE(662)] = 21687, + [SMALL_STATE(663)] = 21697, + [SMALL_STATE(664)] = 21714, + [SMALL_STATE(665)] = 21731, + [SMALL_STATE(666)] = 21748, + [SMALL_STATE(667)] = 21765, + [SMALL_STATE(668)] = 21782, + [SMALL_STATE(669)] = 21799, + [SMALL_STATE(670)] = 21816, + [SMALL_STATE(671)] = 21833, + [SMALL_STATE(672)] = 21850, + [SMALL_STATE(673)] = 21867, + [SMALL_STATE(674)] = 21884, + [SMALL_STATE(675)] = 21901, + [SMALL_STATE(676)] = 21917, + [SMALL_STATE(677)] = 21933, + [SMALL_STATE(678)] = 21949, + [SMALL_STATE(679)] = 21965, + [SMALL_STATE(680)] = 21977, + [SMALL_STATE(681)] = 21993, + [SMALL_STATE(682)] = 22009, + [SMALL_STATE(683)] = 22025, + [SMALL_STATE(684)] = 22037, + [SMALL_STATE(685)] = 22053, + [SMALL_STATE(686)] = 22069, + [SMALL_STATE(687)] = 22085, + [SMALL_STATE(688)] = 22101, + [SMALL_STATE(689)] = 22117, + [SMALL_STATE(690)] = 22129, + [SMALL_STATE(691)] = 22141, + [SMALL_STATE(692)] = 22157, + [SMALL_STATE(693)] = 22173, + [SMALL_STATE(694)] = 22189, + [SMALL_STATE(695)] = 22205, + [SMALL_STATE(696)] = 22221, + [SMALL_STATE(697)] = 22233, + [SMALL_STATE(698)] = 22249, + [SMALL_STATE(699)] = 22265, + [SMALL_STATE(700)] = 22281, + [SMALL_STATE(701)] = 22297, + [SMALL_STATE(702)] = 22313, + [SMALL_STATE(703)] = 22329, + [SMALL_STATE(704)] = 22345, + [SMALL_STATE(705)] = 22352, + [SMALL_STATE(706)] = 22361, + [SMALL_STATE(707)] = 22371, + [SMALL_STATE(708)] = 22379, + [SMALL_STATE(709)] = 22387, + [SMALL_STATE(710)] = 22394, + [SMALL_STATE(711)] = 22401, + [SMALL_STATE(712)] = 22408, + [SMALL_STATE(713)] = 22415, + [SMALL_STATE(714)] = 22422, + [SMALL_STATE(715)] = 22429, + [SMALL_STATE(716)] = 22436, + [SMALL_STATE(717)] = 22443, + [SMALL_STATE(718)] = 22450, + [SMALL_STATE(719)] = 22457, + [SMALL_STATE(720)] = 22464, + [SMALL_STATE(721)] = 22471, + [SMALL_STATE(722)] = 22478, + [SMALL_STATE(723)] = 22485, + [SMALL_STATE(724)] = 22492, + [SMALL_STATE(725)] = 22499, + [SMALL_STATE(726)] = 22506, + [SMALL_STATE(727)] = 22513, + [SMALL_STATE(728)] = 22520, + [SMALL_STATE(729)] = 22527, + [SMALL_STATE(730)] = 22534, + [SMALL_STATE(731)] = 22541, + [SMALL_STATE(732)] = 22548, + [SMALL_STATE(733)] = 22555, + [SMALL_STATE(734)] = 22562, + [SMALL_STATE(735)] = 22569, + [SMALL_STATE(736)] = 22576, + [SMALL_STATE(737)] = 22583, + [SMALL_STATE(738)] = 22590, + [SMALL_STATE(739)] = 22597, + [SMALL_STATE(740)] = 22604, + [SMALL_STATE(741)] = 22611, + [SMALL_STATE(742)] = 22618, + [SMALL_STATE(743)] = 22625, + [SMALL_STATE(744)] = 22632, + [SMALL_STATE(745)] = 22639, + [SMALL_STATE(746)] = 22646, + [SMALL_STATE(747)] = 22653, + [SMALL_STATE(748)] = 22660, + [SMALL_STATE(749)] = 22667, + [SMALL_STATE(750)] = 22674, + [SMALL_STATE(751)] = 22681, + [SMALL_STATE(752)] = 22688, + [SMALL_STATE(753)] = 22695, + [SMALL_STATE(754)] = 22702, + [SMALL_STATE(755)] = 22709, + [SMALL_STATE(756)] = 22716, + [SMALL_STATE(757)] = 22723, + [SMALL_STATE(758)] = 22730, + [SMALL_STATE(759)] = 22737, + [SMALL_STATE(760)] = 22744, + [SMALL_STATE(761)] = 22751, + [SMALL_STATE(762)] = 22758, + [SMALL_STATE(763)] = 22765, + [SMALL_STATE(764)] = 22772, + [SMALL_STATE(765)] = 22779, + [SMALL_STATE(766)] = 22786, + [SMALL_STATE(767)] = 22793, + [SMALL_STATE(768)] = 22800, + [SMALL_STATE(769)] = 22807, + [SMALL_STATE(770)] = 22814, + [SMALL_STATE(771)] = 22821, + [SMALL_STATE(772)] = 22828, + [SMALL_STATE(773)] = 22835, + [SMALL_STATE(774)] = 22842, + [SMALL_STATE(775)] = 22849, + [SMALL_STATE(776)] = 22856, + [SMALL_STATE(777)] = 22863, + [SMALL_STATE(778)] = 22870, + [SMALL_STATE(779)] = 22877, + [SMALL_STATE(780)] = 22884, + [SMALL_STATE(781)] = 22891, + [SMALL_STATE(782)] = 22898, + [SMALL_STATE(783)] = 22905, + [SMALL_STATE(784)] = 22912, + [SMALL_STATE(785)] = 22919, + [SMALL_STATE(786)] = 22926, + [SMALL_STATE(787)] = 22933, + [SMALL_STATE(788)] = 22940, + [SMALL_STATE(789)] = 22947, + [SMALL_STATE(790)] = 22954, + [SMALL_STATE(791)] = 22961, + [SMALL_STATE(792)] = 22968, + [SMALL_STATE(793)] = 22975, + [SMALL_STATE(794)] = 22982, + [SMALL_STATE(795)] = 22989, + [SMALL_STATE(796)] = 22996, + [SMALL_STATE(797)] = 23003, + [SMALL_STATE(798)] = 23010, + [SMALL_STATE(799)] = 23017, + [SMALL_STATE(800)] = 23024, + [SMALL_STATE(801)] = 23031, + [SMALL_STATE(802)] = 23038, + [SMALL_STATE(803)] = 23045, + [SMALL_STATE(804)] = 23052, + [SMALL_STATE(805)] = 23059, + [SMALL_STATE(806)] = 23066, + [SMALL_STATE(807)] = 23073, + [SMALL_STATE(808)] = 23080, + [SMALL_STATE(809)] = 23087, + [SMALL_STATE(810)] = 23094, + [SMALL_STATE(811)] = 23101, + [SMALL_STATE(812)] = 23108, + [SMALL_STATE(813)] = 23115, + [SMALL_STATE(814)] = 23122, + [SMALL_STATE(815)] = 23129, + [SMALL_STATE(816)] = 23136, + [SMALL_STATE(817)] = 23143, + [SMALL_STATE(818)] = 23150, + [SMALL_STATE(819)] = 23157, + [SMALL_STATE(820)] = 23164, + [SMALL_STATE(821)] = 23171, + [SMALL_STATE(822)] = 23178, + [SMALL_STATE(823)] = 23185, + [SMALL_STATE(824)] = 23192, + [SMALL_STATE(825)] = 23199, + [SMALL_STATE(826)] = 23206, + [SMALL_STATE(827)] = 23213, + [SMALL_STATE(828)] = 23220, + [SMALL_STATE(829)] = 23227, + [SMALL_STATE(830)] = 23234, + [SMALL_STATE(831)] = 23241, + [SMALL_STATE(832)] = 23248, + [SMALL_STATE(833)] = 23255, + [SMALL_STATE(834)] = 23262, + [SMALL_STATE(835)] = 23269, + [SMALL_STATE(836)] = 23276, + [SMALL_STATE(837)] = 23283, + [SMALL_STATE(838)] = 23290, + [SMALL_STATE(839)] = 23297, + [SMALL_STATE(840)] = 23304, + [SMALL_STATE(841)] = 23311, + [SMALL_STATE(842)] = 23318, + [SMALL_STATE(843)] = 23325, + [SMALL_STATE(844)] = 23332, + [SMALL_STATE(845)] = 23339, + [SMALL_STATE(846)] = 23346, + [SMALL_STATE(847)] = 23353, + [SMALL_STATE(848)] = 23360, + [SMALL_STATE(849)] = 23367, + [SMALL_STATE(850)] = 23374, + [SMALL_STATE(851)] = 23381, + [SMALL_STATE(852)] = 23388, + [SMALL_STATE(853)] = 23395, + [SMALL_STATE(854)] = 23402, + [SMALL_STATE(855)] = 23409, + [SMALL_STATE(856)] = 23416, + [SMALL_STATE(857)] = 23423, + [SMALL_STATE(858)] = 23430, + [SMALL_STATE(859)] = 23437, + [SMALL_STATE(860)] = 23444, + [SMALL_STATE(861)] = 23451, + [SMALL_STATE(862)] = 23458, + [SMALL_STATE(863)] = 23465, + [SMALL_STATE(864)] = 23472, + [SMALL_STATE(865)] = 23479, + [SMALL_STATE(866)] = 23486, + [SMALL_STATE(867)] = 23493, + [SMALL_STATE(868)] = 23500, + [SMALL_STATE(869)] = 23507, + [SMALL_STATE(870)] = 23514, + [SMALL_STATE(871)] = 23521, + [SMALL_STATE(872)] = 23528, + [SMALL_STATE(873)] = 23535, + [SMALL_STATE(874)] = 23542, + [SMALL_STATE(875)] = 23549, + [SMALL_STATE(876)] = 23556, + [SMALL_STATE(877)] = 23563, + [SMALL_STATE(878)] = 23570, + [SMALL_STATE(879)] = 23577, + [SMALL_STATE(880)] = 23584, + [SMALL_STATE(881)] = 23591, + [SMALL_STATE(882)] = 23598, + [SMALL_STATE(883)] = 23605, + [SMALL_STATE(884)] = 23612, + [SMALL_STATE(885)] = 23619, + [SMALL_STATE(886)] = 23626, + [SMALL_STATE(887)] = 23633, + [SMALL_STATE(888)] = 23640, + [SMALL_STATE(889)] = 23647, + [SMALL_STATE(890)] = 23654, + [SMALL_STATE(891)] = 23658, + [SMALL_STATE(892)] = 23662, + [SMALL_STATE(893)] = 23666, + [SMALL_STATE(894)] = 23670, + [SMALL_STATE(895)] = 23674, + [SMALL_STATE(896)] = 23678, + [SMALL_STATE(897)] = 23682, + [SMALL_STATE(898)] = 23686, + [SMALL_STATE(899)] = 23690, + [SMALL_STATE(900)] = 23694, + [SMALL_STATE(901)] = 23698, + [SMALL_STATE(902)] = 23702, + [SMALL_STATE(903)] = 23706, + [SMALL_STATE(904)] = 23710, + [SMALL_STATE(905)] = 23714, + [SMALL_STATE(906)] = 23718, + [SMALL_STATE(907)] = 23722, + [SMALL_STATE(908)] = 23726, + [SMALL_STATE(909)] = 23730, + [SMALL_STATE(910)] = 23734, + [SMALL_STATE(911)] = 23738, + [SMALL_STATE(912)] = 23742, + [SMALL_STATE(913)] = 23746, + [SMALL_STATE(914)] = 23750, + [SMALL_STATE(915)] = 23754, + [SMALL_STATE(916)] = 23758, + [SMALL_STATE(917)] = 23762, + [SMALL_STATE(918)] = 23766, + [SMALL_STATE(919)] = 23770, + [SMALL_STATE(920)] = 23774, + [SMALL_STATE(921)] = 23778, + [SMALL_STATE(922)] = 23782, + [SMALL_STATE(923)] = 23786, + [SMALL_STATE(924)] = 23790, + [SMALL_STATE(925)] = 23794, + [SMALL_STATE(926)] = 23798, + [SMALL_STATE(927)] = 23802, + [SMALL_STATE(928)] = 23806, + [SMALL_STATE(929)] = 23810, + [SMALL_STATE(930)] = 23814, + [SMALL_STATE(931)] = 23818, + [SMALL_STATE(932)] = 23822, + [SMALL_STATE(933)] = 23826, + [SMALL_STATE(934)] = 23830, + [SMALL_STATE(935)] = 23834, + [SMALL_STATE(936)] = 23838, + [SMALL_STATE(937)] = 23842, + [SMALL_STATE(938)] = 23846, + [SMALL_STATE(939)] = 23850, + [SMALL_STATE(940)] = 23854, + [SMALL_STATE(941)] = 23858, + [SMALL_STATE(942)] = 23862, + [SMALL_STATE(943)] = 23866, + [SMALL_STATE(944)] = 23870, + [SMALL_STATE(945)] = 23874, + [SMALL_STATE(946)] = 23878, + [SMALL_STATE(947)] = 23882, + [SMALL_STATE(948)] = 23886, + [SMALL_STATE(949)] = 23890, + [SMALL_STATE(950)] = 23894, + [SMALL_STATE(951)] = 23898, + [SMALL_STATE(952)] = 23902, + [SMALL_STATE(953)] = 23906, + [SMALL_STATE(954)] = 23910, + [SMALL_STATE(955)] = 23914, + [SMALL_STATE(956)] = 23918, + [SMALL_STATE(957)] = 23922, + [SMALL_STATE(958)] = 23926, + [SMALL_STATE(959)] = 23930, + [SMALL_STATE(960)] = 23934, + [SMALL_STATE(961)] = 23938, + [SMALL_STATE(962)] = 23942, + [SMALL_STATE(963)] = 23946, + [SMALL_STATE(964)] = 23950, + [SMALL_STATE(965)] = 23954, + [SMALL_STATE(966)] = 23958, + [SMALL_STATE(967)] = 23962, + [SMALL_STATE(968)] = 23966, + [SMALL_STATE(969)] = 23970, + [SMALL_STATE(970)] = 23974, + [SMALL_STATE(971)] = 23978, + [SMALL_STATE(972)] = 23982, + [SMALL_STATE(973)] = 23986, + [SMALL_STATE(974)] = 23990, + [SMALL_STATE(975)] = 23994, + [SMALL_STATE(976)] = 23998, + [SMALL_STATE(977)] = 24002, + [SMALL_STATE(978)] = 24006, + [SMALL_STATE(979)] = 24010, + [SMALL_STATE(980)] = 24014, + [SMALL_STATE(981)] = 24018, + [SMALL_STATE(982)] = 24022, + [SMALL_STATE(983)] = 24026, + [SMALL_STATE(984)] = 24030, + [SMALL_STATE(985)] = 24034, + [SMALL_STATE(986)] = 24038, + [SMALL_STATE(987)] = 24042, + [SMALL_STATE(988)] = 24046, + [SMALL_STATE(989)] = 24050, + [SMALL_STATE(990)] = 24054, + [SMALL_STATE(991)] = 24058, + [SMALL_STATE(992)] = 24062, + [SMALL_STATE(993)] = 24066, + [SMALL_STATE(994)] = 24070, + [SMALL_STATE(995)] = 24074, + [SMALL_STATE(996)] = 24078, + [SMALL_STATE(997)] = 24082, + [SMALL_STATE(998)] = 24086, + [SMALL_STATE(999)] = 24090, + [SMALL_STATE(1000)] = 24094, + [SMALL_STATE(1001)] = 24098, + [SMALL_STATE(1002)] = 24102, + [SMALL_STATE(1003)] = 24106, + [SMALL_STATE(1004)] = 24110, + [SMALL_STATE(1005)] = 24114, + [SMALL_STATE(1006)] = 24118, + [SMALL_STATE(1007)] = 24122, + [SMALL_STATE(1008)] = 24126, + [SMALL_STATE(1009)] = 24130, + [SMALL_STATE(1010)] = 24134, + [SMALL_STATE(1011)] = 24138, + [SMALL_STATE(1012)] = 24142, + [SMALL_STATE(1013)] = 24146, + [SMALL_STATE(1014)] = 24150, + [SMALL_STATE(1015)] = 24154, + [SMALL_STATE(1016)] = 24158, + [SMALL_STATE(1017)] = 24162, + [SMALL_STATE(1018)] = 24166, + [SMALL_STATE(1019)] = 24170, + [SMALL_STATE(1020)] = 24174, + [SMALL_STATE(1021)] = 24178, + [SMALL_STATE(1022)] = 24182, + [SMALL_STATE(1023)] = 24186, + [SMALL_STATE(1024)] = 24190, + [SMALL_STATE(1025)] = 24194, + [SMALL_STATE(1026)] = 24198, + [SMALL_STATE(1027)] = 24202, + [SMALL_STATE(1028)] = 24206, + [SMALL_STATE(1029)] = 24210, + [SMALL_STATE(1030)] = 24214, + [SMALL_STATE(1031)] = 24218, + [SMALL_STATE(1032)] = 24222, + [SMALL_STATE(1033)] = 24226, + [SMALL_STATE(1034)] = 24230, + [SMALL_STATE(1035)] = 24234, + [SMALL_STATE(1036)] = 24238, + [SMALL_STATE(1037)] = 24242, + [SMALL_STATE(1038)] = 24246, + [SMALL_STATE(1039)] = 24250, + [SMALL_STATE(1040)] = 24254, + [SMALL_STATE(1041)] = 24258, + [SMALL_STATE(1042)] = 24262, + [SMALL_STATE(1043)] = 24266, + [SMALL_STATE(1044)] = 24270, + [SMALL_STATE(1045)] = 24274, + [SMALL_STATE(1046)] = 24278, + [SMALL_STATE(1047)] = 24282, + [SMALL_STATE(1048)] = 24286, + [SMALL_STATE(1049)] = 24290, + [SMALL_STATE(1050)] = 24294, + [SMALL_STATE(1051)] = 24298, + [SMALL_STATE(1052)] = 24302, + [SMALL_STATE(1053)] = 24306, + [SMALL_STATE(1054)] = 24310, + [SMALL_STATE(1055)] = 24314, + [SMALL_STATE(1056)] = 24318, + [SMALL_STATE(1057)] = 24322, + [SMALL_STATE(1058)] = 24326, + [SMALL_STATE(1059)] = 24330, + [SMALL_STATE(1060)] = 24334, + [SMALL_STATE(1061)] = 24338, + [SMALL_STATE(1062)] = 24342, + [SMALL_STATE(1063)] = 24346, + [SMALL_STATE(1064)] = 24350, + [SMALL_STATE(1065)] = 24354, + [SMALL_STATE(1066)] = 24358, + [SMALL_STATE(1067)] = 24362, + [SMALL_STATE(1068)] = 24366, + [SMALL_STATE(1069)] = 24370, + [SMALL_STATE(1070)] = 24374, + [SMALL_STATE(1071)] = 24378, + [SMALL_STATE(1072)] = 24382, + [SMALL_STATE(1073)] = 24386, + [SMALL_STATE(1074)] = 24390, + [SMALL_STATE(1075)] = 24394, + [SMALL_STATE(1076)] = 24398, + [SMALL_STATE(1077)] = 24402, + [SMALL_STATE(1078)] = 24406, + [SMALL_STATE(1079)] = 24410, + [SMALL_STATE(1080)] = 24414, + [SMALL_STATE(1081)] = 24418, + [SMALL_STATE(1082)] = 24422, + [SMALL_STATE(1083)] = 24426, + [SMALL_STATE(1084)] = 24430, + [SMALL_STATE(1085)] = 24434, + [SMALL_STATE(1086)] = 24438, + [SMALL_STATE(1087)] = 24442, + [SMALL_STATE(1088)] = 24446, + [SMALL_STATE(1089)] = 24450, + [SMALL_STATE(1090)] = 24454, + [SMALL_STATE(1091)] = 24458, + [SMALL_STATE(1092)] = 24462, + [SMALL_STATE(1093)] = 24466, + [SMALL_STATE(1094)] = 24470, + [SMALL_STATE(1095)] = 24474, + [SMALL_STATE(1096)] = 24478, + [SMALL_STATE(1097)] = 24482, + [SMALL_STATE(1098)] = 24486, + [SMALL_STATE(1099)] = 24490, + [SMALL_STATE(1100)] = 24494, + [SMALL_STATE(1101)] = 24498, + [SMALL_STATE(1102)] = 24502, + [SMALL_STATE(1103)] = 24506, + [SMALL_STATE(1104)] = 24510, + [SMALL_STATE(1105)] = 24514, + [SMALL_STATE(1106)] = 24518, + [SMALL_STATE(1107)] = 24522, + [SMALL_STATE(1108)] = 24526, + [SMALL_STATE(1109)] = 24530, + [SMALL_STATE(1110)] = 24534, + [SMALL_STATE(1111)] = 24538, + [SMALL_STATE(1112)] = 24542, + [SMALL_STATE(1113)] = 24546, + [SMALL_STATE(1114)] = 24550, + [SMALL_STATE(1115)] = 24554, + [SMALL_STATE(1116)] = 24558, + [SMALL_STATE(1117)] = 24562, + [SMALL_STATE(1118)] = 24566, + [SMALL_STATE(1119)] = 24570, + [SMALL_STATE(1120)] = 24574, + [SMALL_STATE(1121)] = 24578, + [SMALL_STATE(1122)] = 24582, + [SMALL_STATE(1123)] = 24586, + [SMALL_STATE(1124)] = 24590, + [SMALL_STATE(1125)] = 24594, + [SMALL_STATE(1126)] = 24598, + [SMALL_STATE(1127)] = 24602, + [SMALL_STATE(1128)] = 24606, + [SMALL_STATE(1129)] = 24610, + [SMALL_STATE(1130)] = 24614, + [SMALL_STATE(1131)] = 24618, + [SMALL_STATE(1132)] = 24622, + [SMALL_STATE(1133)] = 24626, + [SMALL_STATE(1134)] = 24630, + [SMALL_STATE(1135)] = 24634, + [SMALL_STATE(1136)] = 24638, + [SMALL_STATE(1137)] = 24642, + [SMALL_STATE(1138)] = 24646, + [SMALL_STATE(1139)] = 24650, + [SMALL_STATE(1140)] = 24654, + [SMALL_STATE(1141)] = 24658, + [SMALL_STATE(1142)] = 24662, + [SMALL_STATE(1143)] = 24666, + [SMALL_STATE(1144)] = 24670, + [SMALL_STATE(1145)] = 24674, + [SMALL_STATE(1146)] = 24678, + [SMALL_STATE(1147)] = 24682, + [SMALL_STATE(1148)] = 24686, + [SMALL_STATE(1149)] = 24690, + [SMALL_STATE(1150)] = 24694, + [SMALL_STATE(1151)] = 24698, + [SMALL_STATE(1152)] = 24702, + [SMALL_STATE(1153)] = 24706, + [SMALL_STATE(1154)] = 24710, + [SMALL_STATE(1155)] = 24714, + [SMALL_STATE(1156)] = 24718, + [SMALL_STATE(1157)] = 24722, + [SMALL_STATE(1158)] = 24726, + [SMALL_STATE(1159)] = 24730, + [SMALL_STATE(1160)] = 24734, + [SMALL_STATE(1161)] = 24738, + [SMALL_STATE(1162)] = 24742, + [SMALL_STATE(1163)] = 24746, + [SMALL_STATE(1164)] = 24750, + [SMALL_STATE(1165)] = 24754, + [SMALL_STATE(1166)] = 24758, + [SMALL_STATE(1167)] = 24762, + [SMALL_STATE(1168)] = 24766, + [SMALL_STATE(1169)] = 24770, + [SMALL_STATE(1170)] = 24774, + [SMALL_STATE(1171)] = 24778, + [SMALL_STATE(1172)] = 24782, + [SMALL_STATE(1173)] = 24786, + [SMALL_STATE(1174)] = 24790, + [SMALL_STATE(1175)] = 24794, + [SMALL_STATE(1176)] = 24798, + [SMALL_STATE(1177)] = 24802, + [SMALL_STATE(1178)] = 24806, + [SMALL_STATE(1179)] = 24810, + [SMALL_STATE(1180)] = 24814, + [SMALL_STATE(1181)] = 24818, + [SMALL_STATE(1182)] = 24822, + [SMALL_STATE(1183)] = 24826, + [SMALL_STATE(1184)] = 24830, + [SMALL_STATE(1185)] = 24834, + [SMALL_STATE(1186)] = 24838, + [SMALL_STATE(1187)] = 24842, + [SMALL_STATE(1188)] = 24846, + [SMALL_STATE(1189)] = 24850, + [SMALL_STATE(1190)] = 24854, + [SMALL_STATE(1191)] = 24858, + [SMALL_STATE(1192)] = 24862, + [SMALL_STATE(1193)] = 24866, + [SMALL_STATE(1194)] = 24870, + [SMALL_STATE(1195)] = 24874, + [SMALL_STATE(1196)] = 24878, + [SMALL_STATE(1197)] = 24882, + [SMALL_STATE(1198)] = 24886, + [SMALL_STATE(1199)] = 24890, + [SMALL_STATE(1200)] = 24894, + [SMALL_STATE(1201)] = 24898, + [SMALL_STATE(1202)] = 24902, + [SMALL_STATE(1203)] = 24906, + [SMALL_STATE(1204)] = 24910, + [SMALL_STATE(1205)] = 24914, + [SMALL_STATE(1206)] = 24918, + [SMALL_STATE(1207)] = 24922, + [SMALL_STATE(1208)] = 24926, + [SMALL_STATE(1209)] = 24930, + [SMALL_STATE(1210)] = 24934, + [SMALL_STATE(1211)] = 24938, + [SMALL_STATE(1212)] = 24942, + [SMALL_STATE(1213)] = 24946, + [SMALL_STATE(1214)] = 24950, + [SMALL_STATE(1215)] = 24954, + [SMALL_STATE(1216)] = 24958, + [SMALL_STATE(1217)] = 24962, + [SMALL_STATE(1218)] = 24966, + [SMALL_STATE(1219)] = 24970, + [SMALL_STATE(1220)] = 24974, + [SMALL_STATE(1221)] = 24978, + [SMALL_STATE(1222)] = 24982, + [SMALL_STATE(1223)] = 24986, + [SMALL_STATE(1224)] = 24990, + [SMALL_STATE(1225)] = 24994, + [SMALL_STATE(1226)] = 24998, + [SMALL_STATE(1227)] = 25002, + [SMALL_STATE(1228)] = 25006, + [SMALL_STATE(1229)] = 25010, + [SMALL_STATE(1230)] = 25014, + [SMALL_STATE(1231)] = 25018, + [SMALL_STATE(1232)] = 25022, + [SMALL_STATE(1233)] = 25026, + [SMALL_STATE(1234)] = 25030, + [SMALL_STATE(1235)] = 25034, + [SMALL_STATE(1236)] = 25038, + [SMALL_STATE(1237)] = 25042, + [SMALL_STATE(1238)] = 25046, + [SMALL_STATE(1239)] = 25050, + [SMALL_STATE(1240)] = 25054, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), - [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), - [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), - [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), - [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), - [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), - [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), - [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), - [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), - [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), - [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), - [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), - [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), - [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), - [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), - [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), - [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline, 1), - [469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(820), - [472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(195), - [475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(819), - [478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(196), - [481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(807), - [484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(795), - [487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(788), - [490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(787), - [493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(786), - [496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1085), - [499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(140), - [502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(140), - [505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(198), - [508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(770), - [511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(699), - [514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(700), - [517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(240), - [520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(241), - [523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(242), - [526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(190), - [529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(14), - [532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(131), - [535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1005), - [538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), - [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(776), - [545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(172), - [548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(777), - [551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(171), - [554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(778), - [557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(779), - [560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(780), - [563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(781), - [566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(782), - [569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(979), - [572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(139), - [575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(139), - [578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(170), - [581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(739), - [584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(784), - [587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(785), - [590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(359), - [593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(360), - [596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(361), - [599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(176), - [602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(36), - [605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(129), - [608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1050), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline, 1), + [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), + [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), + [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), + [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), + [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), + [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), + [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), + [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), + [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), + [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), + [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), + [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), + [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(833), + [474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(219), + [477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(820), + [480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(220), + [483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(807), + [486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(802), + [489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(801), + [492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(800), + [495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(787), + [498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1023), + [501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(143), + [504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(143), + [507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(211), + [510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(815), + [513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(711), + [516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(712), + [519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(241), + [522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(242), + [525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(243), + [528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(193), + [531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(21), + [534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(126), + [537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1018), + [540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), + [542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(789), + [545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(178), + [548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(790), + [551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(177), + [554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(791), + [557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(792), + [560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(793), + [563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(794), + [566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(795), + [569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1014), + [572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(137), + [575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(137), + [578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(175), + [581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(797), + [584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(798), + [587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(799), + [590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(366), + [593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(367), + [596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(368), + [599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(184), + [602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(37), + [605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(131), + [608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1063), [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(719), - [616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(194), - [619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(720), - [622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(208), - [625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(721), - [628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(722), - [631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(723), - [634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(724), - [637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(725), - [640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1096), - [643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(136), - [646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(136), - [649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(189), - [652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(763), - [655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(727), - [658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(728), - [661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(273), - [664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(274), - [667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(275), - [670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(202), - [673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(64), - [676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(125), - [679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1020), - [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(809), - [687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(165), - [690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(810), - [693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(162), - [696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(811), - [699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(812), - [702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(813), - [705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(814), - [708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(815), - [711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(943), - [714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(134), - [717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(134), - [720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(161), - [723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(737), - [726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(817), - [729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(818), - [732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(402), - [735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(403), - [738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(404), - [741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(169), - [744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(68), - [747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(127), - [750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1065), - [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), - [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), - [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(731), + [618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(207), + [621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(732), + [624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(206), + [627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(733), + [630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(734), + [633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(735), + [636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(736), + [639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(737), + [642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1111), + [645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(135), + [648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(135), + [651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(204), + [654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(739), + [657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(740), + [660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(741), + [663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(278), + [666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(279), + [669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(280), + [672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(215), + [675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(64), + [678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(124), + [681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1033), + [684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(822), + [687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(170), + [690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(823), + [693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(169), + [696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(824), + [699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(825), + [702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(826), + [705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(827), + [708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(828), + [711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(967), + [714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(133), + [717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(133), + [720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(168), + [723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(830), + [726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(831), + [729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(832), + [732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(410), + [735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(411), + [738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(412), + [741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(174), + [744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(65), + [747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(129), + [750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1078), + [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), + [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), + [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), - [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(741), - [804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(203), - [807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(701), - [810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(191), - [813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(705), - [816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(706), - [819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(707), - [822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(708), - [825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(709), - [828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1130), - [831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(143), - [834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(143), - [837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(207), - [840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(712), - [843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(713), - [846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(714), - [849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(512), - [852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(220), - [855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(222), - [858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(205), + [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(757), + [804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(197), + [807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(715), + [810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(218), + [813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(718), + [816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(719), + [819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(720), + [822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(721), + [825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(722), + [828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1142), + [831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(142), + [834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(142), + [837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(217), + [840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(724), + [843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(726), + [846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(727), + [849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(535), + [852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(226), + [855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(239), + [858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(216), [861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(71), [864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(130), - [867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1135), - [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(842), - [875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(181), - [878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(843), - [881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(182), - [884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(844), - [887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(845), - [890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(846), - [893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(847), - [896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(848), - [899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(890), - [902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(133), - [905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(133), - [908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(192), - [911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(735), - [914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(850), - [917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(851), - [920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(445), - [923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(446), - [926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(447), - [929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(160), - [932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(83), - [935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(123), - [938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1080), - [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(747), - [948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(180), - [951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(748), - [954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(179), - [957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(749), - [960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(750), - [963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(751), - [966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(752), - [969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(753), - [972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1028), - [975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(141), - [978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(141), - [981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(177), - [984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(743), - [987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(755), - [990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(756), - [993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(316), - [996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(317), - [999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(318), - [1002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(193), - [1005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(108), - [1008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(128), - [1011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1035), - [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [1016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(840), - [1019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(175), - [1022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(839), - [1025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(174), - [1028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(838), - [1031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(837), - [1034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(836), - [1037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(835), - [1040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(834), - [1043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(915), - [1046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(135), - [1049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(135), - [1052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(164), - [1055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(716), - [1058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(833), - [1061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(832), - [1064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(505), - [1067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(504), - [1070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(503), + [867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1147), + [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(855), + [875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(159), + [878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(856), + [881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(189), + [884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(857), + [887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(858), + [890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(859), + [893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(860), + [896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(861), + [899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(931), + [902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(136), + [905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(136), + [908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(210), + [911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(863), + [914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(864), + [917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(865), + [920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(454), + [923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(455), + [926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(456), + [929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(165), + [932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(74), + [935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(127), + [938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1093), + [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(759), + [948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(192), + [951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(760), + [954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(191), + [957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(761), + [960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(762), + [963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(763), + [966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(764), + [969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(765), + [972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1051), + [975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(140), + [978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(140), + [981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(185), + [984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(767), + [987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(768), + [990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(769), + [993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(322), + [996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(323), + [999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(324), + [1002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(203), + [1005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(109), + [1008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(125), + [1011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1048), + [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [1016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(888), + [1019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(167), + [1022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(889), + [1025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(163), + [1028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(710), + [1031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(884), + [1034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(885), + [1037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(886), + [1040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(887), + [1043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(895), + [1046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(139), + [1049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(139), + [1052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(212), + [1055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(883), + [1058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(882), + [1061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(881), + [1064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(498), + [1067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(499), + [1070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(500), [1073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(183), [1076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(112), - [1079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(122), - [1082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1110), - [1085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(865), - [1088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(168), - [1091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(864), - [1094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(166), - [1097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(863), - [1100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(862), - [1103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(861), - [1106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(860), - [1109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(859), - [1112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(882), - [1115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(137), - [1118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(137), - [1121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(156), - [1124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(726), - [1127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(855), + [1079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(121), + [1082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1108), + [1085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(876), + [1088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(164), + [1091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(875), + [1094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(160), + [1097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(874), + [1100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(873), + [1103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(869), + [1106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(868), + [1109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(867), + [1112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(928), + [1115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(134), + [1118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(134), + [1121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(195), + [1124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(866), + [1127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(862), [1130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(854), - [1133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(488), - [1136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(489), - [1139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(490), - [1142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(197), - [1145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(116), - [1148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(121), - [1151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1095), - [1154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [1156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(822), - [1159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(363), - [1162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(821), - [1165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(356), - [1168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(816), - [1171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(808), - [1174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(806), - [1177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(805), - [1180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(804), - [1183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(948), - [1186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(145), - [1189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(145), - [1192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(348), - [1195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(711), - [1198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(803), - [1201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(802), - [1204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(570), - [1207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(571), - [1210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(572), - [1213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(212), - [1216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(119), - [1219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(132), - [1222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1125), + [1133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(517), + [1136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(516), + [1139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(515), + [1142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(196), + [1145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(115), + [1148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(123), + [1151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1123), + [1154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(846), + [1157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(383), + [1160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(845), + [1163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(374), + [1166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(844), + [1169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(843), + [1172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(842), + [1175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(841), + [1178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(840), + [1181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(961), + [1184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(144), + [1187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(144), + [1190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(360), + [1193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(836), + [1196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(835), + [1199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(834), + [1202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(582), + [1205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(583), + [1208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(584), + [1211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(223), + [1214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(118), + [1217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(132), + [1220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1138), + [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), [1225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element, 1), [1227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__element, 1), - [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), - [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), - [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), - [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), - [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), - [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), - [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), - [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), - [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), - [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), - [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), + [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), + [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), + [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), + [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), + [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), + [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), + [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), + [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), + [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), + [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), + [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), [1253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verbatim, 3, .production_id = 1), [1255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verbatim, 3, .production_id = 1), - [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [1279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), - [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), - [1283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), - [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [1287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__text, 2), - [1289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__text, 2), - [1291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(158), - [1294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(159), - [1297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 1), - [1299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), - [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), - [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), - [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [1307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(163), - [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), - [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [1316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(167), - [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), - [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), - [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [1329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(173), - [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [1336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), - [1338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), - [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [1350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), - [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [1354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(185), - [1357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), - [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [1361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(188), - [1364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), - [1366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), - [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [1370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), - [1372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), - [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), - [1382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), - [1384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(199), - [1387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(200), - [1390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(201), - [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), - [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [1397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(204), - [1400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), - [1402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), - [1404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), - [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [1408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlighted, 4, .dynamic_precedence = 1000, .production_id = 4), - [1412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_highlighted, 4, .dynamic_precedence = 1000, .production_id = 4), - [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_with_spaces, 2), - [1416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__comment_with_spaces, 2), - [1418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), - [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collapsed_reference_image, 2), - [1422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collapsed_reference_image, 2), - [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_reference_image, 2), - [1426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_reference_image, 2), - [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_image, 2), - [1430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_image, 2), - [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collapsed_reference_link, 2), - [1434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collapsed_reference_link, 2), - [1436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_reference_link, 2), - [1438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_reference_link, 2), - [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 2), - [1442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 2), - [1444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_todo, 1), - [1446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_todo, 1), - [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 3), - [1450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 3), - [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note, 1), - [1454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_note, 1), - [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_autolink, 3), - [1458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_autolink, 3), - [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_footnote_reference, 3), - [1462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_footnote_reference, 3), - [1464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_inline, 4), - [1466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_inline, 4), - [1468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), - [1470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math, 4, .production_id = 3), - [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math, 4, .production_id = 3), - [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 3), - [1476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comment, 3), - [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emphasis, 4, .dynamic_precedence = 1000), - [1480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_emphasis, 4, .dynamic_precedence = 1000), - [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strong, 4, .dynamic_precedence = 1000), - [1484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strong, 4, .dynamic_precedence = 1000), - [1486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_superscript, 4, .dynamic_precedence = 1000, .production_id = 4), - [1488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_superscript, 4, .dynamic_precedence = 1000, .production_id = 4), - [1490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, .dynamic_precedence = 1000, .production_id = 4), - [1492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, .dynamic_precedence = 1000, .production_id = 4), - [1494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 4, .dynamic_precedence = 1000, .production_id = 4), - [1496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 4, .dynamic_precedence = 1000, .production_id = 4), - [1498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete, 4, .dynamic_precedence = 1000, .production_id = 4), - [1500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete, 4, .dynamic_precedence = 1000, .production_id = 4), - [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_label, 3, .production_id = 5), - [1504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_label, 3, .production_id = 5), - [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link_destination, 3), - [1508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link_destination, 3), - [1510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 2), - [1512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 2), - [1514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_inline_attribute, 3), - [1516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_inline_attribute, 3), - [1518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1008), - [1521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hard_line_break, 2), - [1523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hard_line_break, 2), - [1525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1023), - [1528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(993), - [1531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1038), - [1534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(337), - [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), - [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [1541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1053), - [1544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [1546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1068), - [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), - [1551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1083), - [1554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(977), - [1557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1098), - [1560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1113), - [1563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1086), - [1566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_attribute, 4, .dynamic_precedence = 1000, .production_id = 7), - [1568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_attribute, 4, .dynamic_precedence = 1000, .production_id = 7), - [1570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_span, 2, .dynamic_precedence = -1000), - [1572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_span, 2, .dynamic_precedence = -1000), - [1574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_attribute_fallback, 2), - [1576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_attribute_fallback, 2), - [1578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_attribute, 3, .dynamic_precedence = 1000), - [1580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_attribute, 3, .dynamic_precedence = 1000), - [1582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element, 2), - [1584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__element, 2), - [1586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_without_trailing_space, 1), - [1588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_without_trailing_space, 2), - [1590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1128), - [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [1621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(1047), - [1624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(988), - [1627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(646), - [1630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(740), - [1633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), - [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [1663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_with_newline, 3), - [1665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_name, 1), - [1667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_with_newline, 4, .production_id = 4), - [1669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 1, .production_id = 2), - [1671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 1), - [1673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2), - [1675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1), - [1677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value, 3), - [1679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 3), - [1681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_text, 1), - [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [1685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_text, 1), - [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [1711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), - [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), - [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), - [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), - [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [1737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), - [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), - [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), - [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), - [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [1755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), - [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), - [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [1773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__comment_with_newline_repeat1, 2), SHIFT_REPEAT(692), - [1776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_with_newline_repeat1, 2), - [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [1780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), - [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [1784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), - [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [1792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), - [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [1796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), - [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [1804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), - [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [1814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), - [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [1820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_with_newline_repeat1, 1), - [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bracketed_text, 4, .dynamic_precedence = 1000), - [1824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bracketed_text, 4, .dynamic_precedence = 1000), - [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [1830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_description, 4, .dynamic_precedence = 1000, .production_id = 6), - [1832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_description, 4, .dynamic_precedence = 1000, .production_id = 6), - [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_description, 3, .dynamic_precedence = 1000), - [1836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_description, 3, .dynamic_precedence = 1000), - [1838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(398), - [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [1845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(243), - [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [1850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(243), - [1853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(238), - [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [1858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(254), - [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [1863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(254), - [1866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_attribute_begin, 1), SHIFT(539), - [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [1871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(238), - [1874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(238), - [1877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(238), - [1880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(238), - [1883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(238), - [1886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [1888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(238), - [1891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(238), - [1894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(292), - [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [1899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(279), - [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [1904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(279), - [1907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(279), - [1910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(279), - [1913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(279), - [1916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(279), - [1919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(279), - [1922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(279), - [1925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(279), - [1928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(292), - [1931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(293), - [1934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [1936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(293), - [1939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_attribute_begin, 1), SHIFT(588), - [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [1944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_attribute_begin, 1), SHIFT(585), - [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [1951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(238), - [1954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(398), - [1957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(398), - [1960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(398), - [1963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(322), - [1966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [1968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(322), - [1971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(322), - [1974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(322), - [1977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(322), - [1980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(322), - [1983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(322), - [1986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(398), - [1989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(322), - [1992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(322), - [1995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(398), - [1998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(336), - [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [2003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(336), - [2006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_attribute_begin, 1), SHIFT(610), - [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [2011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(398), - [2014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(398), - [2017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(399), - [2020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [2022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(399), - [2025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_attribute_begin, 1), SHIFT(550), - [2028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [2030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(398), - [2033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(277), - [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [2038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(277), - [2041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(277), - [2044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(365), - [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [2049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(365), - [2052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(365), - [2055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(365), - [2058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(365), - [2061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(365), - [2064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(365), - [2067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(277), - [2070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(365), - [2073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(365), - [2076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(243), - [2079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(243), - [2082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(243), - [2085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(379), - [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [2090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(379), - [2093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_attribute_begin, 1), SHIFT(561), - [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [2098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(277), - [2101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(243), - [2104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(277), - [2107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_attribute_begin, 1), SHIFT(616), - [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [2112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(587), - [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [2117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(587), - [2120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(277), - [2123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(277), - [2126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(574), - [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [2131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(574), - [2134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(574), - [2137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(574), - [2140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(574), - [2143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(243), - [2146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(574), - [2149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(408), - [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [2154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(408), - [2157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(408), - [2160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(408), - [2163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(408), - [2166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(408), - [2169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(408), - [2172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(574), - [2175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(408), - [2178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(408), - [2181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(243), - [2184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(243), - [2187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(574), - [2190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(574), - [2193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(422), - [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [2198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(422), - [2201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_attribute_begin, 1), SHIFT(555), - [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [2206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(221), - [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [2211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_attribute_begin, 1), SHIFT(548), - [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [2216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(461), - [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [2221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(461), - [2224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(221), - [2227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_attribute_begin, 1), SHIFT(529), - [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [2232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(492), - [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [2237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(492), - [2240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(492), - [2243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(492), - [2246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(492), - [2249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(492), - [2252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(492), - [2255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(492), - [2258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(492), - [2261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_attribute_begin, 1), SHIFT(528), - [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [2266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(451), - [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [2271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(451), - [2274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(451), - [2277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(451), - [2280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(451), - [2283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(451), - [2286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(451), - [2289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(507), - [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [2294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(451), - [2297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(451), - [2300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(507), - [2303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(277), - [2306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(493), - [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [2311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(493), - [2314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(465), - [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [2319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(465), - [2322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_attribute_begin, 1), SHIFT(542), - [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [2327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(493), - [2330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(493), - [2333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(493), - [2336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(493), - [2339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(493), - [2342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(493), - [2345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(493), - [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [2706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key, 1), - [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [1279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__text, 2), + [1281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__text, 2), + [1283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(156), + [1286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), + [1288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), + [1292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 2), + [1294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 2), + [1296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [1302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(161), + [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [1311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 1), + [1313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), + [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), + [1317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(166), + [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [1328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(171), + [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), + [1337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [1339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(176), + [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [1348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(180), + [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), + [1357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [1365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), + [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [1381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), + [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [1385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(198), + [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [1394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(202), + [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), + [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [1401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(205), + [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [1408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(208), + [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [1415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), + [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [1419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(213), + [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), + [1426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), + [1428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [1436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlighted, 4, .dynamic_precedence = 1000, .production_id = 4), + [1438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_highlighted, 4, .dynamic_precedence = 1000, .production_id = 4), + [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_with_spaces, 2), + [1442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__comment_with_spaces, 2), + [1444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), + [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_autolink, 3), + [1448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_autolink, 3), + [1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_inline, 4), + [1452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_inline, 4), + [1454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_todo, 1), + [1456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_todo, 1), + [1458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math, 4, .production_id = 3), + [1460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math, 4, .production_id = 3), + [1462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 3), + [1464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comment, 3), + [1466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emphasis, 4, .dynamic_precedence = 1000), + [1468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_emphasis, 4, .dynamic_precedence = 1000), + [1470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strong, 4, .dynamic_precedence = 1000), + [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strong, 4, .dynamic_precedence = 1000), + [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_superscript, 4, .dynamic_precedence = 1000, .production_id = 4), + [1476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_superscript, 4, .dynamic_precedence = 1000, .production_id = 4), + [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, .dynamic_precedence = 1000, .production_id = 4), + [1480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, .dynamic_precedence = 1000, .production_id = 4), + [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 4, .dynamic_precedence = 1000, .production_id = 4), + [1484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 4, .dynamic_precedence = 1000, .production_id = 4), + [1486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete, 4, .dynamic_precedence = 1000, .production_id = 4), + [1488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete, 4, .dynamic_precedence = 1000, .production_id = 4), + [1490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_footnote_reference, 4, .dynamic_precedence = 1000), + [1492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_footnote_reference, 4, .dynamic_precedence = 1000), + [1494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_label, 3, .production_id = 5), + [1496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_label, 3, .production_id = 5), + [1498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link_destination, 3), + [1500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link_destination, 3), + [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note, 1), + [1504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_note, 1), + [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_inline_attribute, 3), + [1508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_inline_attribute, 3), + [1510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1020), + [1513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hard_line_break, 2), + [1515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hard_line_break, 2), + [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), + [1519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collapsed_reference_image, 2), + [1521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collapsed_reference_image, 2), + [1523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_reference_image, 2), + [1525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_reference_image, 2), + [1527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_image, 2), + [1529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_image, 2), + [1531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collapsed_reference_link, 2), + [1533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collapsed_reference_link, 2), + [1535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_reference_link, 2), + [1537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_reference_link, 2), + [1539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 2), + [1541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 2), + [1543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 3), + [1545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 3), + [1547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1035), + [1550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1005), + [1553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1050), + [1556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(344), + [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [1563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(891), + [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [1570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1080), + [1573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1095), + [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), + [1578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(989), + [1581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1110), + [1584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1125), + [1587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1100), + [1590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_without_trailing_space, 1), + [1592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_attribute, 3, .dynamic_precedence = 1000), + [1594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_attribute, 3, .dynamic_precedence = 1000), + [1596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_attribute_fallback, 2), + [1598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_attribute_fallback, 2), + [1600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_attribute, 4, .dynamic_precedence = 1000, .production_id = 7), + [1602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_attribute, 4, .dynamic_precedence = 1000, .production_id = 7), + [1604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element, 2), + [1606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__element, 2), + [1608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_span, 2, .dynamic_precedence = -1000), + [1610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_span, 2, .dynamic_precedence = -1000), + [1612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_without_trailing_space, 2), + [1614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1140), + [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [1627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(1058), + [1630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(1001), + [1633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(657), + [1636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(756), + [1639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), + [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [1687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_with_newline, 3), + [1689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_name, 1), + [1691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2), + [1693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 1), + [1695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 1, .production_id = 2), + [1697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_with_newline, 4, .production_id = 4), + [1699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1), + [1701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value, 3), + [1703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 3), + [1705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_text, 1), + [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [1709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_text, 1), + [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), + [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), + [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), + [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [1753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), + [1755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), + [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), + [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), + [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), + [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [1791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), + [1793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__comment_with_newline_repeat1, 2), SHIFT_REPEAT(704), + [1796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_with_newline_repeat1, 2), + [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [1800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), + [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [1808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), + [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [1816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), + [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [1820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), + [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [1828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), + [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [1836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), + [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_with_newline_repeat1, 1), + [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bracketed_text, 4, .dynamic_precedence = 1000), + [1848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bracketed_text, 4, .dynamic_precedence = 1000), + [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [1852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_description, 3, .dynamic_precedence = 1000), + [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_description, 3, .dynamic_precedence = 1000), + [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_description, 4, .dynamic_precedence = 1000, .production_id = 6), + [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_description, 4, .dynamic_precedence = 1000, .production_id = 6), + [1862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(406), + [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [1867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(503), + [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [1872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(244), + [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [1877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(244), + [1880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(255), + [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [1885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(255), + [1888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(254), + [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [1895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_attribute_begin, 1), SHIFT(549), + [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [1900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(254), + [1903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(254), + [1906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(254), + [1909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(254), + [1912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(254), + [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [1917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(254), + [1920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(254), + [1923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(254), + [1926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(284), + [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [1931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(284), + [1934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(284), + [1937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(284), + [1940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(284), + [1943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(284), + [1946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(284), + [1949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(303), + [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [1954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(284), + [1957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(284), + [1960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(284), + [1963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(299), + [1966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [1968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(299), + [1971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_attribute_begin, 1), SHIFT(595), + [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [1976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(303), + [1979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_attribute_begin, 1), SHIFT(604), + [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [1986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(254), + [1989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(328), + [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [1994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(328), + [1997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(328), + [2000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(328), + [2003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(328), + [2006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(328), + [2009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(328), + [2012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(328), + [2015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(328), + [2018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(328), + [2021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(406), + [2024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(343), + [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [2029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(343), + [2032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_attribute_begin, 1), SHIFT(598), + [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [2037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(406), + [2040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(406), + [2043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(406), + [2046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(406), + [2049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(406), + [2052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(406), + [2055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(406), + [2058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(413), + [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [2063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(413), + [2066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(406), + [2069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(244), + [2072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(372), + [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [2077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(372), + [2080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(372), + [2083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(372), + [2086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(372), + [2089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(372), + [2092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(372), + [2095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_attribute_begin, 1), SHIFT(571), + [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [2100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(372), + [2103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(372), + [2106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(372), + [2109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(244), + [2112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(244), + [2115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(244), + [2118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(387), + [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [2123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(387), + [2126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_attribute_begin, 1), SHIFT(575), + [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [2131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(244), + [2134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(318), + [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [2139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(318), + [2142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(318), + [2145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(318), + [2148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(318), + [2151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(244), + [2154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(318), + [2157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_attribute_begin, 1), SHIFT(628), + [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [2162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(600), + [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [2167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(600), + [2170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(244), + [2173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(318), + [2176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(416), + [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [2181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(416), + [2184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(416), + [2187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(416), + [2190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(416), + [2193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(416), + [2196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(416), + [2199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(318), + [2202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(416), + [2205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(416), + [2208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(416), + [2211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(244), + [2214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(586), + [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [2219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(586), + [2222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(586), + [2225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(431), + [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [2230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(431), + [2233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_attribute_begin, 1), SHIFT(567), + [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [2238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(586), + [2241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(586), + [2244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(586), + [2247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(586), + [2250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(586), + [2253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(586), + [2256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(586), + [2259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(318), + [2262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(318), + [2265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_attribute_begin, 1), SHIFT(560), + [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [2270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(471), + [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [2275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(471), + [2278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(464), + [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [2283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(464), + [2286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(506), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [2291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(460), + [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [2296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(460), + [2299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(460), + [2302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(460), + [2305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(460), + [2308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(460), + [2311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(460), + [2314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(506), + [2317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(460), + [2320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(460), + [2323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(460), + [2326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(506), + [2329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(506), + [2332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(506), + [2335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(506), + [2338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(475), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [2343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(475), + [2346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_attribute_begin, 1), SHIFT(555), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [2351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(506), + [2354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(506), + [2357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(506), + [2360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(506), + [2363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_attribute_begin, 1), SHIFT(557), + [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [2368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_attribute_begin, 1), SHIFT(540), + [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [2373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(518), + [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [2378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(518), + [2381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(503), + [2384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(503), + [2387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(503), + [2390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(503), + [2393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(503), + [2396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(503), + [2399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(503), + [2402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(503), + [2405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(503), + [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [2788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_label, 1), - [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [2848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline, 1), - [2850] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [2740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key, 1), + [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [2768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_label, 1), + [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [2884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline, 1), + [2886] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), }; enum ts_external_scanner_symbol_identifiers { @@ -39142,9 +40028,11 @@ enum ts_external_scanner_symbol_identifiers { ts_external_token__image_description_end = 21, ts_external_token__inline_attribute_mark_begin = 22, ts_external_token__inline_attribute_end = 23, - ts_external_token__in_fallback = 24, - ts_external_token__non_whitespace_check = 25, - ts_external_token__error = 26, + ts_external_token__footnote_marker_mark_begin = 24, + ts_external_token_footnote_marker_end = 25, + ts_external_token__in_fallback = 26, + ts_external_token__non_whitespace_check = 27, + ts_external_token__error = 28, }; static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { @@ -39172,12 +40060,14 @@ static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { [ts_external_token__image_description_end] = sym__image_description_end, [ts_external_token__inline_attribute_mark_begin] = sym__inline_attribute_mark_begin, [ts_external_token__inline_attribute_end] = sym__inline_attribute_end, + [ts_external_token__footnote_marker_mark_begin] = sym__footnote_marker_mark_begin, + [ts_external_token_footnote_marker_end] = sym_footnote_marker_end, [ts_external_token__in_fallback] = sym__in_fallback, [ts_external_token__non_whitespace_check] = sym__non_whitespace_check, [ts_external_token__error] = sym__error, }; -static const bool ts_external_scanner_states[54][EXTERNAL_TOKEN_COUNT] = { +static const bool ts_external_scanner_states[57][EXTERNAL_TOKEN_COUNT] = { [1] = { [ts_external_token__ignored] = true, [ts_external_token__verbatim_begin] = true, @@ -39203,6 +40093,8 @@ static const bool ts_external_scanner_states[54][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__image_description_end] = true, [ts_external_token__inline_attribute_mark_begin] = true, [ts_external_token__inline_attribute_end] = true, + [ts_external_token__footnote_marker_mark_begin] = true, + [ts_external_token_footnote_marker_end] = true, [ts_external_token__in_fallback] = true, [ts_external_token__non_whitespace_check] = true, [ts_external_token__error] = true, @@ -39216,23 +40108,23 @@ static const bool ts_external_scanner_states[54][EXTERNAL_TOKEN_COUNT] = { }, [4] = { [ts_external_token__verbatim_begin] = true, - [ts_external_token_highlighted_end] = true, + [ts_external_token_insert_end] = true, }, [5] = { [ts_external_token__verbatim_begin] = true, - [ts_external_token_superscript_end] = true, + [ts_external_token_delete_end] = true, }, [6] = { [ts_external_token__verbatim_begin] = true, - [ts_external_token_delete_end] = true, + [ts_external_token_superscript_end] = true, }, [7] = { [ts_external_token__verbatim_begin] = true, - [ts_external_token_insert_end] = true, + [ts_external_token_subscript_end] = true, }, [8] = { [ts_external_token__verbatim_begin] = true, - [ts_external_token_subscript_end] = true, + [ts_external_token_highlighted_end] = true, }, [9] = { [ts_external_token__verbatim_begin] = true, @@ -39240,20 +40132,19 @@ static const bool ts_external_scanner_states[54][EXTERNAL_TOKEN_COUNT] = { }, [10] = { [ts_external_token__verbatim_begin] = true, - [ts_external_token_emphasis_end] = true, + [ts_external_token_strong_end] = true, }, [11] = { [ts_external_token__verbatim_begin] = true, - [ts_external_token_strong_end] = true, + [ts_external_token_emphasis_end] = true, }, [12] = { [ts_external_token__verbatim_begin] = true, - [ts_external_token_strong_end] = true, [ts_external_token__non_whitespace_check] = true, }, [13] = { [ts_external_token__verbatim_begin] = true, - [ts_external_token_delete_end] = true, + [ts_external_token__bracketed_text_end] = true, [ts_external_token__non_whitespace_check] = true, }, [14] = { @@ -39263,12 +40154,12 @@ static const bool ts_external_scanner_states[54][EXTERNAL_TOKEN_COUNT] = { }, [15] = { [ts_external_token__verbatim_begin] = true, - [ts_external_token_insert_end] = true, + [ts_external_token_delete_end] = true, [ts_external_token__non_whitespace_check] = true, }, [16] = { [ts_external_token__verbatim_begin] = true, - [ts_external_token__bracketed_text_end] = true, + [ts_external_token_insert_end] = true, [ts_external_token__non_whitespace_check] = true, }, [17] = { @@ -39278,11 +40169,12 @@ static const bool ts_external_scanner_states[54][EXTERNAL_TOKEN_COUNT] = { }, [18] = { [ts_external_token__verbatim_begin] = true, - [ts_external_token_highlighted_end] = true, + [ts_external_token_strong_end] = true, [ts_external_token__non_whitespace_check] = true, }, [19] = { [ts_external_token__verbatim_begin] = true, + [ts_external_token_highlighted_end] = true, [ts_external_token__non_whitespace_check] = true, }, [20] = { @@ -39299,19 +40191,19 @@ static const bool ts_external_scanner_states[54][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__inline_attribute_end] = true, }, [23] = { - [ts_external_token__superscript_mark_begin] = true, + [ts_external_token__strong_mark_begin] = true, [ts_external_token__in_fallback] = true, }, [24] = { - [ts_external_token__image_description_mark_begin] = true, + [ts_external_token__superscript_mark_begin] = true, [ts_external_token__in_fallback] = true, }, [25] = { - [ts_external_token__bracketed_text_mark_begin] = true, + [ts_external_token__image_description_mark_begin] = true, [ts_external_token__in_fallback] = true, }, [26] = { - [ts_external_token__strong_mark_begin] = true, + [ts_external_token__bracketed_text_mark_begin] = true, [ts_external_token__in_fallback] = true, }, [27] = { @@ -39339,66 +40231,76 @@ static const bool ts_external_scanner_states[54][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__in_fallback] = true, }, [33] = { - [ts_external_token_superscript_end] = true, + [ts_external_token__footnote_marker_mark_begin] = true, + [ts_external_token__in_fallback] = true, }, [34] = { - [ts_external_token_subscript_end] = true, + [ts_external_token__verbatim_content] = true, }, [35] = { - [ts_external_token_highlighted_end] = true, + [ts_external_token_superscript_end] = true, }, [36] = { - [ts_external_token_insert_end] = true, + [ts_external_token_emphasis_end] = true, }, [37] = { - [ts_external_token_delete_end] = true, + [ts_external_token_footnote_marker_end] = true, }, [38] = { - [ts_external_token_strong_end] = true, + [ts_external_token_delete_end] = true, }, [39] = { - [ts_external_token_emphasis_end] = true, + [ts_external_token_subscript_end] = true, }, [40] = { [ts_external_token__verbatim_end] = true, }, [41] = { - [ts_external_token__verbatim_content] = true, + [ts_external_token_insert_end] = true, }, [42] = { - [ts_external_token__inline_attribute_mark_begin] = true, + [ts_external_token_highlighted_end] = true, }, [43] = { - [ts_external_token__bracketed_text_end] = true, + [ts_external_token_strong_end] = true, }, [44] = { - [ts_external_token__image_description_end] = true, + [ts_external_token__inline_attribute_mark_begin] = true, }, [45] = { - [ts_external_token__bracketed_text_mark_begin] = true, + [ts_external_token__bracketed_text_end] = true, }, [46] = { - [ts_external_token__image_description_mark_begin] = true, + [ts_external_token__image_description_end] = true, }, [47] = { - [ts_external_token__delete_mark_begin] = true, + [ts_external_token__bracketed_text_mark_begin] = true, }, [48] = { - [ts_external_token__insert_mark_begin] = true, + [ts_external_token__image_description_mark_begin] = true, }, [49] = { - [ts_external_token__highlighted_mark_begin] = true, + [ts_external_token__footnote_marker_mark_begin] = true, }, [50] = { - [ts_external_token__subscript_mark_begin] = true, + [ts_external_token__delete_mark_begin] = true, }, [51] = { - [ts_external_token__superscript_mark_begin] = true, + [ts_external_token__insert_mark_begin] = true, }, [52] = { - [ts_external_token__strong_mark_begin] = true, + [ts_external_token__highlighted_mark_begin] = true, }, [53] = { + [ts_external_token__subscript_mark_begin] = true, + }, + [54] = { + [ts_external_token__superscript_mark_begin] = true, + }, + [55] = { + [ts_external_token__strong_mark_begin] = true, + }, + [56] = { [ts_external_token__emphasis_mark_begin] = true, }, }; diff --git a/tree-sitter-djot-inline/src/scanner.c b/tree-sitter-djot-inline/src/scanner.c index d6727ca..84ec31d 100644 --- a/tree-sitter-djot-inline/src/scanner.c +++ b/tree-sitter-djot-inline/src/scanner.c @@ -5,10 +5,6 @@ // #define DEBUG -// TODO elements we need to handle in the scanner -// (precedence problems where the first closing element should get priority) -// footnote_reference - // The different tokens the external scanner support // See `externals` in `grammar.js` for a description of most of them. typedef enum { @@ -44,6 +40,8 @@ typedef enum { BRACKETED_TEXT_END, INLINE_ATTRIBUTE_MARK_BEGIN, INLINE_ATTRIBUTE_END, + FOOTNOTE_MARKER_MARK_BEGIN, + FOOTNOTE_MARKER_END, // If we're scanning a fallback token then we should accept the beginning // markers, but not push anything on the stack. @@ -68,6 +66,7 @@ typedef enum { // Covers the initial `[text]` part in spans and links. BRACKETED_TEXT, INLINE_ATTRIBUTE, + FOOTNOTE_MARKER, } ElementType; typedef struct { @@ -448,6 +447,12 @@ static bool parse_inline_attribute(Scanner *s, TSLexer *lexer, INLINE_ATTRIBUTE_MARK_BEGIN, INLINE_ATTRIBUTE_END, '}', SpanSingle); } +static bool parse_footnote_marker(Scanner *s, TSLexer *lexer, + const bool *valid_symbols) { + return parse_span(s, lexer, valid_symbols, FOOTNOTE_MARKER, + FOOTNOTE_MARKER_MARK_BEGIN, FOOTNOTE_MARKER_END, ']', + SpanSingle); +} static bool check_non_whitespace(Scanner *s, TSLexer *lexer) { switch (lexer->lookahead) { @@ -527,6 +532,9 @@ bool tree_sitter_djot_inline_external_scanner_scan(void *payload, if (parse_inline_attribute(s, lexer, valid_symbols)) { return true; } + if (parse_footnote_marker(s, lexer, valid_symbols)) { + return true; + } switch (lexer->lookahead) { case '`': @@ -639,6 +647,10 @@ static char *token_type_s(TokenType t) { return "INLINE_ATTRIBUTE_MARK_BEGIN"; case INLINE_ATTRIBUTE_END: return "INLINE_ATTRIBUTE_END"; + case FOOTNOTE_MARKER_MARK_BEGIN: + return "FOOTNOTE_MARKER_MARK_BEGIN"; + case FOOTNOTE_MARKER_END: + return "FOOTNOTE_MARKER_END"; case IN_FALLBACK: return "IN_FALLBACK"; @@ -676,6 +688,8 @@ static char *element_type_s(ElementType t) { return "BRACKETED_TEXT"; case INLINE_ATTRIBUTE: return "INLINE_ATTRIBUTE"; + case FOOTNOTE_MARKER: + return "FOOTNOTE_MARKER"; } } diff --git a/tree-sitter-djot-inline/test/corpus/syntax.txt b/tree-sitter-djot-inline/test/corpus/syntax.txt index 55e286f..043b6b7 100644 --- a/tree-sitter-djot-inline/test/corpus/syntax.txt +++ b/tree-sitter-djot-inline/test/corpus/syntax.txt @@ -1174,6 +1174,19 @@ Before{#id % escape \% %} (content (backslash_escape)))))) +=============================================================================== +Inline attribute: comment fallback +=============================================================================== +Before{% + +Before{% Some comment% + +{% + +------------------------------------------------------------------------------- + +(inline) + =============================================================================== Span: With inline attributes =============================================================================== @@ -1224,7 +1237,7 @@ Span: Broken inline attribute (inline) =============================================================================== -Autolink +Autolink: simple =============================================================================== With link @@ -1233,6 +1246,17 @@ With link (inline (autolink)) +=============================================================================== +Autolink: fallback +=============================================================================== +< + +With Date: Thu, 29 Aug 2024 11:05:31 +0200 Subject: [PATCH 17/46] Update comments and refactor a little --- tree-sitter-djot-inline/grammar.js | 11 ++++- tree-sitter-djot-inline/src/scanner.c | 68 ++++++++++++++++----------- 2 files changed, 50 insertions(+), 29 deletions(-) diff --git a/tree-sitter-djot-inline/grammar.js b/tree-sitter-djot-inline/grammar.js index b605db6..46ba5d9 100644 --- a/tree-sitter-djot-inline/grammar.js +++ b/tree-sitter-djot-inline/grammar.js @@ -333,6 +333,7 @@ module.exports = grammar({ "$", ), + // Used to branch on inline attributes that may follow any element. _inline_attribute_fallback: ($) => seq("{", choice($._inline_attribute_mark_begin, $._in_fallback)), @@ -379,8 +380,10 @@ module.exports = grammar({ $.insert_end, $._delete_mark_begin, $.delete_end, + // The bracketed text covers the first `[text]` portion of spans and links. $._bracketed_text_mark_begin, $._bracketed_text_end, + // The image description is the first `![text]` part of the image. $._image_description_mark_begin, $._image_description_end, $._inline_attribute_mark_begin, @@ -388,10 +391,16 @@ module.exports = grammar({ $._footnote_marker_mark_begin, $.footnote_marker_end, + // A signaling token that's used to signal that a fallback token should be scanned, + // and should never be output. + // It's used to notify the external scanner if we're in the fallback branch or in + // if we're scanning a span. This so the scanner knows if the current element should + // be stored on the stack or not. $._in_fallback, + // A zero-width whitespace check token. $._non_whitespace_check, - // Never valid and is only used to signal an internal scanner error. + // Should never be used in the grammar and is output when a branch should be pruned. $._error, ], }); diff --git a/tree-sitter-djot-inline/src/scanner.c b/tree-sitter-djot-inline/src/scanner.c index 84ec31d..4e14839 100644 --- a/tree-sitter-djot-inline/src/scanner.c +++ b/tree-sitter-djot-inline/src/scanner.c @@ -69,6 +69,19 @@ typedef enum { FOOTNOTE_MARKER, } ElementType; +// What kind of span we should parse. +typedef enum { + // Only delimited by a single character, for example `[text]`. + SpanSingle, + // Only delimited by a curly bracketed tags, for example `{= highlight =}`. + SpanBracketed, + // Either single or bracketed, for example `^superscript^}`. + SpanBracketedAndSingle, + // Either single or bracketed, but no whitespace next to the single tags. + // For example `_emphasis_}` (but not `_ emphasis _`). + SpanBracketedAndSingleNoWhitespace, +} SpanType; + typedef struct { ElementType type; // Different types may use `data` differently. @@ -219,6 +232,28 @@ static bool parse_verbatim_start(Scanner *s, TSLexer *lexer) { return true; } +static bool parse_verbatim(Scanner *s, TSLexer *lexer, + const bool *valid_symbols) { + if (valid_symbols[VERBATIM_CONTENT] && parse_verbatim_content(s, lexer)) { + return true; + } + if (lexer->eof(lexer)) { + if (valid_symbols[VERBATIM_END] && parse_verbatim_end(s, lexer)) { + return true; + } + } + + if (lexer->lookahead == '`') { + if (valid_symbols[VERBATIM_BEGIN] && parse_verbatim_start(s, lexer)) { + return true; + } + if (valid_symbols[VERBATIM_END] && parse_verbatim_end(s, lexer)) { + return true; + } + } + return false; +} + static bool element_on_top(Scanner *s, ElementType type) { return s->open_elements->size > 0 && (*array_back(s->open_elements))->type == type; @@ -234,13 +269,6 @@ static Element *find_element(Scanner *s, ElementType type) { return NULL; } -typedef enum { - SpanSingle, - SpanBracketed, - SpanBracketedAndSingle, - SpanBracketedAndSingleNoWhitespace, -} SpanType; - static bool scan_single_span_end(TSLexer *lexer, char marker) { if (lexer->lookahead != marker) { return false; @@ -489,19 +517,16 @@ bool tree_sitter_djot_inline_external_scanner_scan(void *payload, return true; } - if (valid_symbols[VERBATIM_CONTENT] && parse_verbatim_content(s, lexer)) { + if (valid_symbols[NON_WHITESPACE_CHECK] && check_non_whitespace(s, lexer)) { return true; } - if (lexer->eof(lexer)) { - if (valid_symbols[VERBATIM_END] && parse_verbatim_end(s, lexer)) { - return true; - } - } - if (valid_symbols[NON_WHITESPACE_CHECK] && check_non_whitespace(s, lexer)) { + // There's no overlap of leading characters that the scanner needs to manage, + // so we can hide all individual character checks inside these parse + // functions. + if (parse_verbatim(s, lexer, valid_symbols)) { return true; } - if (parse_emphasis(s, lexer, valid_symbols)) { return true; } @@ -536,19 +561,6 @@ bool tree_sitter_djot_inline_external_scanner_scan(void *payload, return true; } - switch (lexer->lookahead) { - case '`': - if (valid_symbols[VERBATIM_BEGIN] && parse_verbatim_start(s, lexer)) { - return true; - } - if (valid_symbols[VERBATIM_END] && parse_verbatim_end(s, lexer)) { - return true; - } - break; - default: - break; - } - return false; } From 970079566c00466ca453fcfd2135e6f0e1a06fed Mon Sep 17 00:00:00 2001 From: Jonas Hietala Date: Sat, 7 Sep 2024 20:46:23 +0200 Subject: [PATCH 18/46] Fix concealment and highlight of delimiters --- .../bindings/rust/build.rs | 3 + tree-sitter-djot-inline/grammar.js | 35 +- .../queries/highlights.scm | 54 +- tree-sitter-djot-inline/src/grammar.json | 106 +- tree-sitter-djot-inline/src/node-types.json | 124 +- tree-sitter-djot-inline/src/parser.c | 36352 ++++++++-------- tree-sitter-djot/src/parser.c | 921 +- tree-sitter-djot/src/tree_sitter/array.h | 9 +- tree-sitter-djot/src/tree_sitter/parser.h | 51 +- 9 files changed, 19279 insertions(+), 18376 deletions(-) diff --git a/tree-sitter-djot-inline/bindings/rust/build.rs b/tree-sitter-djot-inline/bindings/rust/build.rs index 5ab5a12..421dd65 100644 --- a/tree-sitter-djot-inline/bindings/rust/build.rs +++ b/tree-sitter-djot-inline/bindings/rust/build.rs @@ -4,6 +4,9 @@ fn main() { let mut c_config = cc::Build::new(); c_config.std("c11").include(src_dir); + #[cfg(target_env = "msvc")] + c_config.flag("-utf-8"); + let parser_path = src_dir.join("parser.c"); c_config.file(&parser_path); println!("cargo:rerun-if-changed={}", parser_path.to_str().unwrap()); diff --git a/tree-sitter-djot-inline/grammar.js b/tree-sitter-djot-inline/grammar.js index 46ba5d9..6388125 100644 --- a/tree-sitter-djot-inline/grammar.js +++ b/tree-sitter-djot-inline/grammar.js @@ -173,17 +173,17 @@ module.exports = grammar({ $.collapsed_reference_image, $.inline_image, ), - full_reference_image: ($) => seq($._image_description, $._link_label), + full_reference_image: ($) => seq($.image_description, $._link_label), collapsed_reference_image: ($) => - seq($._image_description, token.immediate("[]")), - inline_image: ($) => seq($._image_description, $.inline_link_destination), + seq($.image_description, token.immediate("[]")), + inline_image: ($) => seq($.image_description, $.inline_link_destination), - _image_description: ($) => + image_description: ($) => seq( $._image_description_begin, $._image_description_mark_begin, optional(alias($._inline, $.image_description)), - prec.dynamic(1000, $._image_description_end), + prec.dynamic(1000, alias($._image_description_end, "]")), ), _image_description_begin: (_) => "![", @@ -193,13 +193,31 @@ module.exports = grammar({ collapsed_reference_link: ($) => seq($.link_text, token.immediate("[]")), inline_link: ($) => seq($.link_text, $.inline_link_destination), - link_text: ($) => $._bracketed_text, + link_text: ($) => + seq( + $._bracketed_text_begin, + $._bracketed_text_mark_begin, + $._inline, + // Alias to "]" to allow us to highlight it in Neovim. + // Maybe some bug, or some undocumented behavior? + prec.dynamic(1000, alias($._bracketed_text_end, "]")), + ), span: ($) => // Both bracketed_text and inline_attribute contributes +1000 each, // so we pull it back to 1000 so it's the same as other spans, // making precedence work properly. - prec.dynamic(-1000, seq($._bracketed_text, $.inline_attribute)), + // prec.dynamic(-1000, seq($._bracketed_text, + + seq( + $._bracketed_text_begin, + $._bracketed_text_mark_begin, + alias($._inline, $.content), + alias($._bracketed_text_end, "]"), + $.inline_attribute, + ), + + _bracketed_text_begin: (_) => "[", inline_attribute: ($) => seq( @@ -218,7 +236,7 @@ module.exports = grammar({ ), $.args, ), - prec.dynamic(1000, $._inline_attribute_end), + prec.dynamic(1000, alias($._inline_attribute_end, "}")), ), _inline_attribute_begin: (_) => "{", @@ -229,7 +247,6 @@ module.exports = grammar({ $._inline, prec.dynamic(1000, $._bracketed_text_end), ), - _bracketed_text_begin: (_) => "[", _link_label: ($) => seq("[", alias($._inline, $.link_label), token.immediate("]")), diff --git a/tree-sitter-djot-inline/queries/highlights.scm b/tree-sitter-djot-inline/queries/highlights.scm index efd1908..d1dfb25 100644 --- a/tree-sitter-djot-inline/queries/highlights.scm +++ b/tree-sitter-djot-inline/queries/highlights.scm @@ -147,27 +147,29 @@ (key_value (value) @string) -(link_text +(autolink [ - "[" - "]" + "<" + ">" ] @punctuation.bracket (#set! conceal "")) -(autolink +(link_text [ - "<" - ">" + "[" + "]" ] @punctuation.bracket (#set! conceal "")) +(link_text) @markup.link.label + +; Should we use markup.link instead of label? +; (collapsed_reference_link +; (link_text) @markup.link) (inline_link (inline_link_destination) @markup.link.url (#set! conceal "")) -(full_reference_link - (link_text) @markup.link) - (full_reference_link (link_label) @markup.link.label (#set! conceal "")) @@ -183,44 +185,25 @@ ] @punctuation.bracket (#set! conceal "")) -(collapsed_reference_link - (link_text) @markup.link) - -(collapsed_reference_link - (link_text) @markup.link.label) +(image_description + [ + "![" + "]" + ] @punctuation.bracket) -(inline_link - (link_text) @markup.link) +(image_description) @markup.link.label (full_reference_image (link_label) @markup.link.label) (full_reference_image [ - "![" "[" "]" ] @punctuation.bracket) (collapsed_reference_image - [ - "![" - "]" - ] @punctuation.bracket) - -(inline_image - [ - "![" - "]" - ] @punctuation.bracket) - -(image_description) @markup.italic - -(image_description - [ - "[" - "]" - ] @punctuation.bracket) + "[]" @punctuation.bracket) (inline_link_destination [ @@ -241,7 +224,6 @@ (footnote_marker_end) ] @punctuation.bracket - (todo) @comment.todo (note) @comment.note diff --git a/tree-sitter-djot-inline/src/grammar.json b/tree-sitter-djot-inline/src/grammar.json index bff1965..6dec2a0 100644 --- a/tree-sitter-djot-inline/src/grammar.json +++ b/tree-sitter-djot-inline/src/grammar.json @@ -664,7 +664,7 @@ "members": [ { "type": "SYMBOL", - "name": "_image_description" + "name": "image_description" }, { "type": "SYMBOL", @@ -677,7 +677,7 @@ "members": [ { "type": "SYMBOL", - "name": "_image_description" + "name": "image_description" }, { "type": "IMMEDIATE_TOKEN", @@ -693,7 +693,7 @@ "members": [ { "type": "SYMBOL", - "name": "_image_description" + "name": "image_description" }, { "type": "SYMBOL", @@ -701,7 +701,7 @@ } ] }, - "_image_description": { + "image_description": { "type": "SEQ", "members": [ { @@ -733,8 +733,13 @@ "type": "PREC_DYNAMIC", "value": 1000, "content": { - "type": "SYMBOL", - "name": "_image_description_end" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_image_description_end" + }, + "named": false, + "value": "]" } } ] @@ -803,25 +808,73 @@ ] }, "link_text": { - "type": "SYMBOL", - "name": "_bracketed_text" + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_bracketed_text_begin" + }, + { + "type": "SYMBOL", + "name": "_bracketed_text_mark_begin" + }, + { + "type": "SYMBOL", + "name": "_inline" + }, + { + "type": "PREC_DYNAMIC", + "value": 1000, + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_bracketed_text_end" + }, + "named": false, + "value": "]" + } + } + ] }, "span": { - "type": "PREC_DYNAMIC", - "value": -1000, - "content": { - "type": "SEQ", - "members": [ - { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_bracketed_text_begin" + }, + { + "type": "SYMBOL", + "name": "_bracketed_text_mark_begin" + }, + { + "type": "ALIAS", + "content": { "type": "SYMBOL", - "name": "_bracketed_text" + "name": "_inline" }, - { + "named": true, + "value": "content" + }, + { + "type": "ALIAS", + "content": { "type": "SYMBOL", - "name": "inline_attribute" - } - ] - } + "name": "_bracketed_text_end" + }, + "named": false, + "value": "]" + }, + { + "type": "SYMBOL", + "name": "inline_attribute" + } + ] + }, + "_bracketed_text_begin": { + "type": "STRING", + "value": "[" }, "inline_attribute": { "type": "SEQ", @@ -880,8 +933,13 @@ "type": "PREC_DYNAMIC", "value": 1000, "content": { - "type": "SYMBOL", - "name": "_inline_attribute_end" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_inline_attribute_end" + }, + "named": false, + "value": "}" } } ] @@ -915,10 +973,6 @@ } ] }, - "_bracketed_text_begin": { - "type": "STRING", - "value": "[" - }, "_link_label": { "type": "SEQ", "members": [ diff --git a/tree-sitter-djot-inline/src/node-types.json b/tree-sitter-djot-inline/src/node-types.json index 1adef57..190f5b2 100644 --- a/tree-sitter-djot-inline/src/node-types.json +++ b/tree-sitter-djot-inline/src/node-types.json @@ -42,7 +42,7 @@ "fields": {}, "children": { "multiple": false, - "required": false, + "required": true, "types": [ { "type": "image_description", @@ -443,6 +443,10 @@ "type": "highlighted", "named": true }, + { + "type": "image_description", + "named": true + }, { "type": "inline_attribute", "named": true @@ -1109,128 +1113,12 @@ "required": true, "types": [ { - "type": "autolink", - "named": true - }, - { - "type": "backslash_escape", - "named": true - }, - { - "type": "collapsed_reference_image", - "named": true - }, - { - "type": "collapsed_reference_link", - "named": true - }, - { - "type": "comment", - "named": true - }, - { - "type": "delete", - "named": true - }, - { - "type": "ellipsis", - "named": true - }, - { - "type": "em_dash", - "named": true - }, - { - "type": "emphasis", - "named": true - }, - { - "type": "en_dash", - "named": true - }, - { - "type": "fixme", - "named": true - }, - { - "type": "footnote_reference", - "named": true - }, - { - "type": "full_reference_image", - "named": true - }, - { - "type": "full_reference_link", - "named": true - }, - { - "type": "hard_line_break", - "named": true - }, - { - "type": "highlighted", + "type": "content", "named": true }, { "type": "inline_attribute", "named": true - }, - { - "type": "inline_image", - "named": true - }, - { - "type": "inline_link", - "named": true - }, - { - "type": "insert", - "named": true - }, - { - "type": "math", - "named": true - }, - { - "type": "note", - "named": true - }, - { - "type": "quotation_marks", - "named": true - }, - { - "type": "raw_inline", - "named": true - }, - { - "type": "span", - "named": true - }, - { - "type": "strong", - "named": true - }, - { - "type": "subscript", - "named": true - }, - { - "type": "superscript", - "named": true - }, - { - "type": "symbol", - "named": true - }, - { - "type": "todo", - "named": true - }, - { - "type": "verbatim", - "named": true } ] } diff --git a/tree-sitter-djot-inline/src/parser.c b/tree-sitter-djot-inline/src/parser.c index 84ef100..730f2bb 100644 --- a/tree-sitter-djot-inline/src/parser.c +++ b/tree-sitter-djot-inline/src/parser.c @@ -5,15 +5,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 1241 -#define LARGE_STATE_COUNT 121 -#define SYMBOL_COUNT 146 -#define ALIAS_COUNT 8 +#define STATE_COUNT 1273 +#define LARGE_STATE_COUNT 132 +#define SYMBOL_COUNT 145 +#define ALIAS_COUNT 7 #define TOKEN_COUNT 83 #define EXTERNAL_TOKEN_COUNT 29 #define FIELD_COUNT 0 -#define MAX_ALIAS_SEQUENCE_LENGTH 4 -#define PRODUCTION_ID_COUNT 8 +#define MAX_ALIAS_SEQUENCE_LENGTH 5 +#define PRODUCTION_ID_COUNT 10 enum ts_symbol_identifiers { anon_sym_LBRACE_ = 1, @@ -41,8 +41,8 @@ enum ts_symbol_identifiers { sym__id = 23, anon_sym_LBRACK_RBRACK = 24, anon_sym_BANG_LBRACK = 25, - anon_sym_LBRACE = 26, - anon_sym_LBRACK = 27, + anon_sym_LBRACK = 26, + anon_sym_LBRACE = 27, anon_sym_RBRACK = 28, anon_sym_LPAREN = 29, aux_sym_inline_link_destination_token1 = 30, @@ -126,7 +126,7 @@ enum ts_symbol_identifiers { sym_full_reference_image = 108, sym_collapsed_reference_image = 109, sym_inline_image = 110, - sym__image_description = 111, + sym_image_description = 111, sym__image_description_begin = 112, sym__link = 113, sym_full_reference_link = 114, @@ -134,41 +134,39 @@ enum ts_symbol_identifiers { sym_inline_link = 116, sym_link_text = 117, sym_span = 118, - sym_inline_attribute = 119, - sym__inline_attribute_begin = 120, - sym__bracketed_text = 121, - sym__bracketed_text_begin = 122, - sym__link_label = 123, - sym_inline_link_destination = 124, - sym_comment = 125, - sym__comment_with_spaces = 126, - sym__comment_with_newline = 127, - sym_raw_inline = 128, - sym_raw_inline_attribute = 129, - sym_math = 130, - sym_verbatim = 131, - sym__todo_highlights = 132, - sym_todo = 133, - sym_note = 134, - sym__symbol_fallback = 135, - sym__inline_attribute_fallback = 136, - aux_sym__text = 137, - sym_class_name = 138, - sym_class = 139, - sym_key_value = 140, - sym_key = 141, - sym_value = 142, - aux_sym__inline_repeat1 = 143, - aux_sym_inline_attribute_repeat1 = 144, - aux_sym__comment_with_newline_repeat1 = 145, - alias_sym_args = 146, - alias_sym_image_description = 147, - alias_sym_link_label = 148, - alias_sym_math_marker = 149, - alias_sym_math_marker_begin = 150, - alias_sym_math_marker_end = 151, - alias_sym_verbatim_marker_begin = 152, - alias_sym_verbatim_marker_end = 153, + sym__bracketed_text_begin = 119, + sym_inline_attribute = 120, + sym__inline_attribute_begin = 121, + sym__link_label = 122, + sym_inline_link_destination = 123, + sym_comment = 124, + sym__comment_with_spaces = 125, + sym__comment_with_newline = 126, + sym_raw_inline = 127, + sym_raw_inline_attribute = 128, + sym_math = 129, + sym_verbatim = 130, + sym__todo_highlights = 131, + sym_todo = 132, + sym_note = 133, + sym__symbol_fallback = 134, + sym__inline_attribute_fallback = 135, + aux_sym__text = 136, + sym_class_name = 137, + sym_class = 138, + sym_key_value = 139, + sym_key = 140, + sym_value = 141, + aux_sym__inline_repeat1 = 142, + aux_sym_inline_attribute_repeat1 = 143, + aux_sym__comment_with_newline_repeat1 = 144, + alias_sym_args = 145, + alias_sym_link_label = 146, + alias_sym_math_marker = 147, + alias_sym_math_marker_begin = 148, + alias_sym_math_marker_end = 149, + alias_sym_verbatim_marker_begin = 150, + alias_sym_verbatim_marker_end = 151, }; static const char * const ts_symbol_names[] = { @@ -198,8 +196,8 @@ static const char * const ts_symbol_names[] = { [sym__id] = "_id", [anon_sym_LBRACK_RBRACK] = "[]", [anon_sym_BANG_LBRACK] = "![", - [anon_sym_LBRACE] = "{", [anon_sym_LBRACK] = "[", + [anon_sym_LBRACE] = "{", [anon_sym_RBRACK] = "]", [anon_sym_LPAREN] = "(", [aux_sym_inline_link_destination_token1] = "inline_link_destination_token1", @@ -247,9 +245,9 @@ static const char * const ts_symbol_names[] = { [sym__bracketed_text_mark_begin] = "_bracketed_text_mark_begin", [sym__bracketed_text_end] = "_bracketed_text_end", [sym__image_description_mark_begin] = "_image_description_mark_begin", - [sym__image_description_end] = "_image_description_end", + [sym__image_description_end] = "]", [sym__inline_attribute_mark_begin] = "_inline_attribute_mark_begin", - [sym__inline_attribute_end] = "_inline_attribute_end", + [sym__inline_attribute_end] = "}", [sym__footnote_marker_mark_begin] = "_footnote_marker_mark_begin", [sym_footnote_marker_end] = "footnote_marker_end", [sym__in_fallback] = "_in_fallback", @@ -283,7 +281,7 @@ static const char * const ts_symbol_names[] = { [sym_full_reference_image] = "full_reference_image", [sym_collapsed_reference_image] = "collapsed_reference_image", [sym_inline_image] = "inline_image", - [sym__image_description] = "_image_description", + [sym_image_description] = "image_description", [sym__image_description_begin] = "_image_description_begin", [sym__link] = "_link", [sym_full_reference_link] = "full_reference_link", @@ -291,10 +289,9 @@ static const char * const ts_symbol_names[] = { [sym_inline_link] = "inline_link", [sym_link_text] = "link_text", [sym_span] = "span", + [sym__bracketed_text_begin] = "_bracketed_text_begin", [sym_inline_attribute] = "inline_attribute", [sym__inline_attribute_begin] = "_inline_attribute_begin", - [sym__bracketed_text] = "_bracketed_text", - [sym__bracketed_text_begin] = "_bracketed_text_begin", [sym__link_label] = "_link_label", [sym_inline_link_destination] = "inline_link_destination", [sym_comment] = "comment", @@ -319,7 +316,6 @@ static const char * const ts_symbol_names[] = { [aux_sym_inline_attribute_repeat1] = "inline_attribute_repeat1", [aux_sym__comment_with_newline_repeat1] = "_comment_with_newline_repeat1", [alias_sym_args] = "args", - [alias_sym_image_description] = "image_description", [alias_sym_link_label] = "link_label", [alias_sym_math_marker] = "math_marker", [alias_sym_math_marker_begin] = "math_marker_begin", @@ -355,8 +351,8 @@ static const TSSymbol ts_symbol_map[] = { [sym__id] = sym__id, [anon_sym_LBRACK_RBRACK] = anon_sym_LBRACK_RBRACK, [anon_sym_BANG_LBRACK] = anon_sym_BANG_LBRACK, - [anon_sym_LBRACE] = anon_sym_LBRACE, [anon_sym_LBRACK] = anon_sym_LBRACK, + [anon_sym_LBRACE] = anon_sym_LBRACE, [anon_sym_RBRACK] = anon_sym_RBRACK, [anon_sym_LPAREN] = anon_sym_LPAREN, [aux_sym_inline_link_destination_token1] = aux_sym_inline_link_destination_token1, @@ -404,9 +400,9 @@ static const TSSymbol ts_symbol_map[] = { [sym__bracketed_text_mark_begin] = sym__bracketed_text_mark_begin, [sym__bracketed_text_end] = sym__bracketed_text_end, [sym__image_description_mark_begin] = sym__image_description_mark_begin, - [sym__image_description_end] = sym__image_description_end, + [sym__image_description_end] = anon_sym_RBRACK, [sym__inline_attribute_mark_begin] = sym__inline_attribute_mark_begin, - [sym__inline_attribute_end] = sym__inline_attribute_end, + [sym__inline_attribute_end] = anon_sym_RBRACE, [sym__footnote_marker_mark_begin] = sym__footnote_marker_mark_begin, [sym_footnote_marker_end] = sym_footnote_marker_end, [sym__in_fallback] = sym__in_fallback, @@ -440,7 +436,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_full_reference_image] = sym_full_reference_image, [sym_collapsed_reference_image] = sym_collapsed_reference_image, [sym_inline_image] = sym_inline_image, - [sym__image_description] = sym__image_description, + [sym_image_description] = sym_image_description, [sym__image_description_begin] = sym__image_description_begin, [sym__link] = sym__link, [sym_full_reference_link] = sym_full_reference_link, @@ -448,10 +444,9 @@ static const TSSymbol ts_symbol_map[] = { [sym_inline_link] = sym_inline_link, [sym_link_text] = sym_link_text, [sym_span] = sym_span, + [sym__bracketed_text_begin] = sym__bracketed_text_begin, [sym_inline_attribute] = sym_inline_attribute, [sym__inline_attribute_begin] = sym__inline_attribute_begin, - [sym__bracketed_text] = sym__bracketed_text, - [sym__bracketed_text_begin] = sym__bracketed_text_begin, [sym__link_label] = sym__link_label, [sym_inline_link_destination] = sym_inline_link_destination, [sym_comment] = sym_comment, @@ -476,7 +471,6 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_inline_attribute_repeat1] = aux_sym_inline_attribute_repeat1, [aux_sym__comment_with_newline_repeat1] = aux_sym__comment_with_newline_repeat1, [alias_sym_args] = alias_sym_args, - [alias_sym_image_description] = alias_sym_image_description, [alias_sym_link_label] = alias_sym_link_label, [alias_sym_math_marker] = alias_sym_math_marker, [alias_sym_math_marker_begin] = alias_sym_math_marker_begin, @@ -590,11 +584,11 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_LBRACE] = { + [anon_sym_LBRACK] = { .visible = true, .named = false, }, - [anon_sym_LBRACK] = { + [anon_sym_LBRACE] = { .visible = true, .named = false, }, @@ -787,16 +781,16 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .named = true, }, [sym__image_description_end] = { - .visible = false, - .named = true, + .visible = true, + .named = false, }, [sym__inline_attribute_mark_begin] = { .visible = false, .named = true, }, [sym__inline_attribute_end] = { - .visible = false, - .named = true, + .visible = true, + .named = false, }, [sym__footnote_marker_mark_begin] = { .visible = false, @@ -930,8 +924,8 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym__image_description] = { - .visible = false, + [sym_image_description] = { + .visible = true, .named = true, }, [sym__image_description_begin] = { @@ -962,19 +956,15 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_inline_attribute] = { - .visible = true, - .named = true, - }, - [sym__inline_attribute_begin] = { + [sym__bracketed_text_begin] = { .visible = false, .named = true, }, - [sym__bracketed_text] = { - .visible = false, + [sym_inline_attribute] = { + .visible = true, .named = true, }, - [sym__bracketed_text_begin] = { + [sym__inline_attribute_begin] = { .visible = false, .named = true, }, @@ -1074,10 +1064,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [alias_sym_image_description] = { - .visible = true, - .named = true, - }, [alias_sym_link_label] = { .visible = true, .named = true, @@ -1125,19 +1111,26 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [1] = alias_sym_link_label, }, [6] = { - [2] = alias_sym_image_description, + [2] = sym_image_description, }, [7] = { + [3] = anon_sym_RBRACK, + }, + [8] = { [2] = alias_sym_args, }, + [9] = { + [2] = sym__verbatim_content, + [3] = anon_sym_RBRACK, + }, }; static const uint16_t ts_non_terminal_alias_map[] = { sym__inline, 4, sym__inline, - alias_sym_image_description, alias_sym_link_label, sym__verbatim_content, + sym_image_description, sym__comment_with_newline, 2, sym__comment_with_newline, sym_comment, @@ -1157,1241 +1150,1273 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3] = 3, [4] = 4, [5] = 5, - [6] = 4, + [6] = 6, [7] = 7, - [8] = 8, - [9] = 9, - [10] = 10, - [11] = 5, - [12] = 12, - [13] = 10, - [14] = 3, - [15] = 15, - [16] = 4, - [17] = 7, - [18] = 5, - [19] = 10, - [20] = 9, - [21] = 21, - [22] = 8, - [23] = 9, - [24] = 10, - [25] = 5, - [26] = 12, - [27] = 15, - [28] = 4, - [29] = 7, - [30] = 8, - [31] = 9, - [32] = 8, - [33] = 10, - [34] = 7, - [35] = 4, - [36] = 5, - [37] = 21, - [38] = 3, - [39] = 12, - [40] = 15, - [41] = 15, - [42] = 4, - [43] = 12, - [44] = 7, + [8] = 6, + [9] = 6, + [10] = 6, + [11] = 6, + [12] = 6, + [13] = 6, + [14] = 14, + [15] = 3, + [16] = 6, + [17] = 6, + [18] = 18, + [19] = 19, + [20] = 20, + [21] = 7, + [22] = 5, + [23] = 3, + [24] = 24, + [25] = 25, + [26] = 4, + [27] = 20, + [28] = 19, + [29] = 18, + [30] = 5, + [31] = 3, + [32] = 4, + [33] = 24, + [34] = 25, + [35] = 25, + [36] = 14, + [37] = 7, + [38] = 4, + [39] = 24, + [40] = 20, + [41] = 19, + [42] = 3, + [43] = 18, + [44] = 5, [45] = 5, - [46] = 8, + [46] = 7, [47] = 3, - [48] = 9, - [49] = 10, - [50] = 10, - [51] = 5, - [52] = 10, - [53] = 9, - [54] = 8, - [55] = 7, - [56] = 4, - [57] = 15, - [58] = 5, - [59] = 9, - [60] = 12, - [61] = 12, - [62] = 8, - [63] = 7, - [64] = 21, - [65] = 21, - [66] = 4, - [67] = 15, - [68] = 12, - [69] = 69, - [70] = 3, - [71] = 21, - [72] = 3, - [73] = 15, - [74] = 21, - [75] = 12, - [76] = 8, - [77] = 15, - [78] = 4, - [79] = 7, - [80] = 8, - [81] = 7, - [82] = 3, - [83] = 9, - [84] = 10, - [85] = 5, - [86] = 12, - [87] = 15, - [88] = 4, - [89] = 7, - [90] = 8, - [91] = 9, - [92] = 10, - [93] = 9, - [94] = 5, - [95] = 12, - [96] = 15, - [97] = 15, - [98] = 12, - [99] = 4, - [100] = 5, - [101] = 7, - [102] = 10, - [103] = 8, - [104] = 9, - [105] = 8, - [106] = 7, - [107] = 3, - [108] = 4, - [109] = 21, - [110] = 3, - [111] = 15, - [112] = 21, - [113] = 12, - [114] = 9, - [115] = 21, - [116] = 5, - [117] = 10, - [118] = 21, - [119] = 119, - [120] = 119, - [121] = 121, - [122] = 121, - [123] = 121, - [124] = 121, - [125] = 121, - [126] = 121, - [127] = 121, - [128] = 121, - [129] = 121, - [130] = 121, - [131] = 121, - [132] = 121, - [133] = 133, - [134] = 133, - [135] = 133, - [136] = 133, - [137] = 133, - [138] = 133, - [139] = 133, - [140] = 133, - [141] = 133, - [142] = 133, - [143] = 133, - [144] = 133, - [145] = 145, - [146] = 145, - [147] = 145, - [148] = 145, - [149] = 145, - [150] = 145, - [151] = 145, - [152] = 145, - [153] = 145, - [154] = 145, - [155] = 145, + [48] = 24, + [49] = 18, + [50] = 19, + [51] = 20, + [52] = 4, + [53] = 25, + [54] = 24, + [55] = 3, + [56] = 5, + [57] = 25, + [58] = 19, + [59] = 18, + [60] = 4, + [61] = 20, + [62] = 4, + [63] = 6, + [64] = 25, + [65] = 24, + [66] = 3, + [67] = 6, + [68] = 14, + [69] = 14, + [70] = 14, + [71] = 5, + [72] = 18, + [73] = 19, + [74] = 20, + [75] = 20, + [76] = 19, + [77] = 18, + [78] = 5, + [79] = 4, + [80] = 7, + [81] = 3, + [82] = 24, + [83] = 25, + [84] = 7, + [85] = 20, + [86] = 19, + [87] = 18, + [88] = 5, + [89] = 3, + [90] = 24, + [91] = 25, + [92] = 25, + [93] = 4, + [94] = 20, + [95] = 24, + [96] = 3, + [97] = 19, + [98] = 5, + [99] = 18, + [100] = 14, + [101] = 5, + [102] = 18, + [103] = 19, + [104] = 20, + [105] = 4, + [106] = 25, + [107] = 24, + [108] = 3, + [109] = 5, + [110] = 18, + [111] = 19, + [112] = 20, + [113] = 4, + [114] = 25, + [115] = 24, + [116] = 7, + [117] = 18, + [118] = 6, + [119] = 19, + [120] = 14, + [121] = 7, + [122] = 14, + [123] = 24, + [124] = 7, + [125] = 25, + [126] = 14, + [127] = 4, + [128] = 20, + [129] = 129, + [130] = 129, + [131] = 14, + [132] = 132, + [133] = 132, + [134] = 132, + [135] = 132, + [136] = 132, + [137] = 132, + [138] = 132, + [139] = 132, + [140] = 132, + [141] = 132, + [142] = 132, + [143] = 143, + [144] = 132, + [145] = 143, + [146] = 143, + [147] = 143, + [148] = 143, + [149] = 143, + [150] = 143, + [151] = 143, + [152] = 143, + [153] = 143, + [154] = 143, + [155] = 143, [156] = 156, - [157] = 157, - [158] = 158, - [159] = 159, - [160] = 160, + [157] = 156, + [158] = 156, + [159] = 156, + [160] = 156, [161] = 156, - [162] = 158, - [163] = 160, - [164] = 159, - [165] = 165, + [162] = 156, + [163] = 156, + [164] = 156, + [165] = 156, [166] = 156, - [167] = 159, - [168] = 157, - [169] = 160, - [170] = 159, - [171] = 156, - [172] = 158, - [173] = 158, - [174] = 165, - [175] = 157, - [176] = 156, - [177] = 160, - [178] = 159, - [179] = 159, - [180] = 156, - [181] = 158, - [182] = 160, - [183] = 165, - [184] = 165, - [185] = 157, - [186] = 159, - [187] = 160, - [188] = 157, - [189] = 160, - [190] = 158, - [191] = 160, - [192] = 159, - [193] = 165, - [194] = 158, - [195] = 157, - [196] = 165, - [197] = 159, - [198] = 156, - [199] = 158, - [200] = 158, - [201] = 145, - [202] = 156, - [203] = 165, - [204] = 157, - [205] = 156, - [206] = 160, - [207] = 159, - [208] = 156, - [209] = 158, - [210] = 157, - [211] = 157, - [212] = 157, - [213] = 156, - [214] = 158, - [215] = 165, - [216] = 165, - [217] = 157, - [218] = 160, - [219] = 159, - [220] = 160, - [221] = 221, - [222] = 222, - [223] = 165, - [224] = 224, - [225] = 225, - [226] = 226, - [227] = 227, - [228] = 228, - [229] = 229, - [230] = 230, - [231] = 231, + [167] = 167, + [168] = 168, + [169] = 169, + [170] = 170, + [171] = 170, + [172] = 172, + [173] = 173, + [174] = 167, + [175] = 173, + [176] = 168, + [177] = 172, + [178] = 167, + [179] = 168, + [180] = 169, + [181] = 170, + [182] = 170, + [183] = 168, + [184] = 173, + [185] = 172, + [186] = 168, + [187] = 172, + [188] = 167, + [189] = 167, + [190] = 167, + [191] = 168, + [192] = 173, + [193] = 172, + [194] = 169, + [195] = 172, + [196] = 170, + [197] = 168, + [198] = 170, + [199] = 169, + [200] = 170, + [201] = 169, + [202] = 169, + [203] = 173, + [204] = 167, + [205] = 167, + [206] = 169, + [207] = 156, + [208] = 173, + [209] = 167, + [210] = 172, + [211] = 169, + [212] = 168, + [213] = 169, + [214] = 170, + [215] = 172, + [216] = 170, + [217] = 173, + [218] = 168, + [219] = 172, + [220] = 168, + [221] = 169, + [222] = 170, + [223] = 167, + [224] = 173, + [225] = 169, + [226] = 170, + [227] = 173, + [228] = 172, + [229] = 172, + [230] = 168, + [231] = 167, [232] = 232, - [233] = 221, + [233] = 233, [234] = 234, [235] = 235, [236] = 236, - [237] = 237, - [238] = 238, + [237] = 232, + [238] = 173, [239] = 239, [240] = 240, [241] = 241, - [242] = 226, - [243] = 239, + [242] = 239, + [243] = 243, [244] = 244, [245] = 245, - [246] = 165, - [247] = 222, + [246] = 243, + [247] = 247, [248] = 248, [249] = 249, [250] = 250, [251] = 251, [252] = 252, [253] = 253, - [254] = 244, - [255] = 255, - [256] = 245, - [257] = 224, - [258] = 225, - [259] = 222, - [260] = 227, - [261] = 228, - [262] = 229, - [263] = 230, - [264] = 231, - [265] = 232, - [266] = 221, + [254] = 254, + [255] = 244, + [256] = 256, + [257] = 233, + [258] = 245, + [259] = 259, + [260] = 260, + [261] = 261, + [262] = 262, + [263] = 263, + [264] = 264, + [265] = 265, + [266] = 266, [267] = 234, [268] = 235, [269] = 236, - [270] = 237, - [271] = 238, + [270] = 232, + [271] = 247, [272] = 248, [273] = 240, - [274] = 249, - [275] = 225, - [276] = 253, - [277] = 252, - [278] = 241, - [279] = 226, - [280] = 239, - [281] = 251, - [282] = 250, - [283] = 249, - [284] = 244, - [285] = 245, - [286] = 250, - [287] = 248, - [288] = 222, - [289] = 248, - [290] = 249, - [291] = 250, - [292] = 251, - [293] = 252, - [294] = 253, + [274] = 259, + [275] = 265, + [276] = 264, + [277] = 241, + [278] = 239, + [279] = 243, + [280] = 263, + [281] = 262, + [282] = 261, + [283] = 244, + [284] = 245, + [285] = 249, + [286] = 260, + [287] = 247, + [288] = 248, + [289] = 249, + [290] = 250, + [291] = 251, + [292] = 252, + [293] = 253, + [294] = 250, [295] = 251, - [296] = 222, - [297] = 252, - [298] = 245, - [299] = 255, - [300] = 253, - [301] = 224, - [302] = 225, - [303] = 255, - [304] = 227, - [305] = 228, - [306] = 229, - [307] = 230, - [308] = 231, - [309] = 232, - [310] = 221, - [311] = 234, - [312] = 235, - [313] = 236, - [314] = 237, - [315] = 238, - [316] = 224, - [317] = 240, - [318] = 244, - [319] = 239, - [320] = 226, + [296] = 233, + [297] = 254, + [298] = 252, + [299] = 256, + [300] = 233, + [301] = 253, + [302] = 259, + [303] = 260, + [304] = 261, + [305] = 262, + [306] = 263, + [307] = 264, + [308] = 265, + [309] = 266, + [310] = 234, + [311] = 235, + [312] = 236, + [313] = 232, + [314] = 173, + [315] = 254, + [316] = 240, + [317] = 256, + [318] = 256, + [319] = 254, + [320] = 253, [321] = 241, - [322] = 241, - [323] = 226, - [324] = 239, - [325] = 225, - [326] = 240, - [327] = 227, - [328] = 244, - [329] = 245, - [330] = 228, - [331] = 229, - [332] = 222, - [333] = 248, - [334] = 249, - [335] = 250, - [336] = 251, - [337] = 252, - [338] = 253, - [339] = 230, - [340] = 238, - [341] = 237, - [342] = 236, - [343] = 255, - [344] = 156, - [345] = 224, - [346] = 225, - [347] = 158, - [348] = 227, - [349] = 228, - [350] = 229, - [351] = 230, - [352] = 231, - [353] = 232, - [354] = 231, - [355] = 234, - [356] = 235, - [357] = 236, - [358] = 237, - [359] = 238, - [360] = 157, - [361] = 240, - [362] = 235, - [363] = 234, - [364] = 221, - [365] = 232, - [366] = 241, - [367] = 226, - [368] = 239, - [369] = 231, - [370] = 230, - [371] = 232, - [372] = 244, - [373] = 245, - [374] = 160, - [375] = 229, - [376] = 222, - [377] = 248, - [378] = 249, - [379] = 250, - [380] = 251, - [381] = 252, - [382] = 253, - [383] = 159, - [384] = 228, - [385] = 227, - [386] = 240, - [387] = 255, - [388] = 238, - [389] = 224, - [390] = 225, - [391] = 237, - [392] = 227, - [393] = 228, - [394] = 229, - [395] = 230, - [396] = 231, - [397] = 232, - [398] = 221, - [399] = 234, - [400] = 235, - [401] = 236, - [402] = 237, - [403] = 238, - [404] = 236, - [405] = 240, - [406] = 244, - [407] = 235, - [408] = 224, - [409] = 234, - [410] = 241, - [411] = 226, - [412] = 239, - [413] = 255, - [414] = 221, - [415] = 253, - [416] = 244, - [417] = 245, - [418] = 232, - [419] = 252, - [420] = 222, - [421] = 248, - [422] = 249, - [423] = 250, - [424] = 251, - [425] = 252, - [426] = 253, - [427] = 231, - [428] = 251, - [429] = 250, - [430] = 249, - [431] = 255, - [432] = 230, - [433] = 224, - [434] = 225, - [435] = 229, - [436] = 227, - [437] = 228, - [438] = 229, - [439] = 230, - [440] = 231, - [441] = 232, - [442] = 221, - [443] = 234, - [444] = 235, - [445] = 236, - [446] = 237, - [447] = 238, - [448] = 228, - [449] = 240, - [450] = 248, - [451] = 222, - [452] = 227, - [453] = 245, - [454] = 241, - [455] = 226, - [456] = 239, - [457] = 225, - [458] = 165, - [459] = 239, - [460] = 244, - [461] = 245, - [462] = 224, - [463] = 226, - [464] = 255, - [465] = 248, - [466] = 249, - [467] = 250, - [468] = 251, - [469] = 252, - [470] = 253, - [471] = 255, - [472] = 241, - [473] = 221, - [474] = 234, - [475] = 255, - [476] = 253, - [477] = 224, - [478] = 225, - [479] = 252, - [480] = 227, - [481] = 228, - [482] = 229, - [483] = 230, - [484] = 231, - [485] = 232, - [486] = 221, - [487] = 234, - [488] = 235, - [489] = 236, - [490] = 237, - [491] = 238, - [492] = 251, - [493] = 240, - [494] = 250, - [495] = 249, - [496] = 240, - [497] = 248, - [498] = 241, - [499] = 226, - [500] = 239, - [501] = 222, - [502] = 235, - [503] = 244, - [504] = 245, - [505] = 245, - [506] = 244, - [507] = 222, - [508] = 248, - [509] = 249, - [510] = 250, - [511] = 251, - [512] = 252, - [513] = 253, - [514] = 236, - [515] = 239, - [516] = 226, - [517] = 241, - [518] = 255, - [519] = 237, - [520] = 224, - [521] = 225, - [522] = 238, - [523] = 227, - [524] = 228, - [525] = 229, - [526] = 230, - [527] = 231, - [528] = 232, - [529] = 221, - [530] = 234, - [531] = 235, - [532] = 236, - [533] = 237, - [534] = 238, - [535] = 241, - [536] = 240, - [537] = 252, - [538] = 538, - [539] = 539, - [540] = 540, - [541] = 539, - [542] = 542, - [543] = 543, - [544] = 544, - [545] = 542, - [546] = 543, - [547] = 543, - [548] = 544, - [549] = 540, - [550] = 543, - [551] = 539, - [552] = 542, - [553] = 542, - [554] = 539, - [555] = 540, - [556] = 544, - [557] = 540, - [558] = 544, - [559] = 544, - [560] = 540, - [561] = 543, - [562] = 543, - [563] = 539, - [564] = 543, - [565] = 542, - [566] = 539, - [567] = 540, - [568] = 544, - [569] = 543, - [570] = 544, - [571] = 540, - [572] = 538, - [573] = 542, - [574] = 539, - [575] = 540, - [576] = 542, - [577] = 539, - [578] = 544, - [579] = 543, - [580] = 580, - [581] = 542, - [582] = 241, - [583] = 226, - [584] = 239, - [585] = 544, - [586] = 244, - [587] = 245, - [588] = 543, - [589] = 539, - [590] = 222, - [591] = 248, - [592] = 249, - [593] = 250, - [594] = 251, - [595] = 540, - [596] = 238, - [597] = 544, - [598] = 540, - [599] = 544, - [600] = 255, - [601] = 539, - [602] = 224, - [603] = 225, - [604] = 540, - [605] = 227, - [606] = 228, - [607] = 229, - [608] = 230, - [609] = 231, - [610] = 232, - [611] = 221, - [612] = 234, - [613] = 235, - [614] = 236, - [615] = 237, - [616] = 253, - [617] = 542, - [618] = 240, - [619] = 580, - [620] = 542, - [621] = 543, - [622] = 539, - [623] = 542, - [624] = 539, - [625] = 544, - [626] = 543, - [627] = 542, - [628] = 540, - [629] = 629, - [630] = 630, - [631] = 631, - [632] = 629, - [633] = 629, - [634] = 629, - [635] = 631, - [636] = 629, - [637] = 631, - [638] = 631, - [639] = 629, - [640] = 631, - [641] = 631, - [642] = 629, - [643] = 631, - [644] = 631, - [645] = 631, - [646] = 629, - [647] = 631, - [648] = 629, - [649] = 631, - [650] = 629, - [651] = 631, - [652] = 629, - [653] = 629, - [654] = 654, - [655] = 655, - [656] = 656, - [657] = 657, - [658] = 658, - [659] = 659, - [660] = 660, + [322] = 239, + [323] = 243, + [324] = 252, + [325] = 251, + [326] = 250, + [327] = 244, + [328] = 245, + [329] = 233, + [330] = 249, + [331] = 247, + [332] = 248, + [333] = 249, + [334] = 250, + [335] = 251, + [336] = 252, + [337] = 253, + [338] = 248, + [339] = 247, + [340] = 259, + [341] = 254, + [342] = 260, + [343] = 256, + [344] = 233, + [345] = 261, + [346] = 259, + [347] = 260, + [348] = 261, + [349] = 262, + [350] = 263, + [351] = 264, + [352] = 265, + [353] = 266, + [354] = 234, + [355] = 235, + [356] = 236, + [357] = 232, + [358] = 262, + [359] = 263, + [360] = 240, + [361] = 245, + [362] = 244, + [363] = 243, + [364] = 239, + [365] = 241, + [366] = 239, + [367] = 243, + [368] = 241, + [369] = 264, + [370] = 240, + [371] = 244, + [372] = 245, + [373] = 265, + [374] = 266, + [375] = 247, + [376] = 248, + [377] = 249, + [378] = 250, + [379] = 251, + [380] = 252, + [381] = 253, + [382] = 234, + [383] = 235, + [384] = 236, + [385] = 254, + [386] = 232, + [387] = 256, + [388] = 233, + [389] = 169, + [390] = 259, + [391] = 260, + [392] = 261, + [393] = 262, + [394] = 263, + [395] = 264, + [396] = 265, + [397] = 266, + [398] = 234, + [399] = 235, + [400] = 236, + [401] = 232, + [402] = 170, + [403] = 167, + [404] = 240, + [405] = 236, + [406] = 235, + [407] = 234, + [408] = 266, + [409] = 241, + [410] = 239, + [411] = 243, + [412] = 265, + [413] = 264, + [414] = 263, + [415] = 244, + [416] = 245, + [417] = 168, + [418] = 262, + [419] = 247, + [420] = 248, + [421] = 249, + [422] = 250, + [423] = 251, + [424] = 252, + [425] = 253, + [426] = 244, + [427] = 261, + [428] = 260, + [429] = 254, + [430] = 172, + [431] = 256, + [432] = 233, + [433] = 240, + [434] = 259, + [435] = 260, + [436] = 261, + [437] = 262, + [438] = 263, + [439] = 264, + [440] = 265, + [441] = 266, + [442] = 234, + [443] = 235, + [444] = 236, + [445] = 232, + [446] = 232, + [447] = 236, + [448] = 240, + [449] = 259, + [450] = 235, + [451] = 233, + [452] = 234, + [453] = 241, + [454] = 239, + [455] = 243, + [456] = 256, + [457] = 266, + [458] = 254, + [459] = 244, + [460] = 245, + [461] = 265, + [462] = 253, + [463] = 247, + [464] = 248, + [465] = 249, + [466] = 250, + [467] = 251, + [468] = 252, + [469] = 253, + [470] = 252, + [471] = 251, + [472] = 250, + [473] = 254, + [474] = 264, + [475] = 256, + [476] = 266, + [477] = 263, + [478] = 259, + [479] = 260, + [480] = 261, + [481] = 262, + [482] = 263, + [483] = 264, + [484] = 265, + [485] = 266, + [486] = 234, + [487] = 235, + [488] = 236, + [489] = 232, + [490] = 262, + [491] = 261, + [492] = 240, + [493] = 249, + [494] = 248, + [495] = 247, + [496] = 260, + [497] = 241, + [498] = 239, + [499] = 243, + [500] = 245, + [501] = 259, + [502] = 244, + [503] = 245, + [504] = 233, + [505] = 173, + [506] = 247, + [507] = 248, + [508] = 249, + [509] = 250, + [510] = 251, + [511] = 252, + [512] = 253, + [513] = 243, + [514] = 239, + [515] = 241, + [516] = 254, + [517] = 256, + [518] = 256, + [519] = 233, + [520] = 254, + [521] = 259, + [522] = 260, + [523] = 261, + [524] = 262, + [525] = 263, + [526] = 264, + [527] = 265, + [528] = 266, + [529] = 234, + [530] = 235, + [531] = 236, + [532] = 232, + [533] = 241, + [534] = 253, + [535] = 240, + [536] = 252, + [537] = 251, + [538] = 250, + [539] = 249, + [540] = 241, + [541] = 239, + [542] = 243, + [543] = 240, + [544] = 244, + [545] = 245, + [546] = 248, + [547] = 247, + [548] = 548, + [549] = 235, + [550] = 548, + [551] = 551, + [552] = 552, + [553] = 553, + [554] = 551, + [555] = 548, + [556] = 556, + [557] = 556, + [558] = 553, + [559] = 553, + [560] = 552, + [561] = 556, + [562] = 552, + [563] = 552, + [564] = 551, + [565] = 548, + [566] = 556, + [567] = 553, + [568] = 552, + [569] = 553, + [570] = 570, + [571] = 556, + [572] = 551, + [573] = 548, + [574] = 548, + [575] = 551, + [576] = 556, + [577] = 553, + [578] = 552, + [579] = 548, + [580] = 551, + [581] = 241, + [582] = 239, + [583] = 243, + [584] = 548, + [585] = 244, + [586] = 245, + [587] = 551, + [588] = 548, + [589] = 247, + [590] = 248, + [591] = 249, + [592] = 551, + [593] = 251, + [594] = 252, + [595] = 253, + [596] = 556, + [597] = 552, + [598] = 254, + [599] = 599, + [600] = 256, + [601] = 233, + [602] = 556, + [603] = 259, + [604] = 260, + [605] = 261, + [606] = 262, + [607] = 263, + [608] = 264, + [609] = 265, + [610] = 266, + [611] = 234, + [612] = 599, + [613] = 236, + [614] = 232, + [615] = 553, + [616] = 556, + [617] = 240, + [618] = 548, + [619] = 551, + [620] = 553, + [621] = 553, + [622] = 556, + [623] = 570, + [624] = 548, + [625] = 552, + [626] = 551, + [627] = 552, + [628] = 556, + [629] = 552, + [630] = 553, + [631] = 551, + [632] = 250, + [633] = 552, + [634] = 553, + [635] = 551, + [636] = 552, + [637] = 553, + [638] = 556, + [639] = 548, + [640] = 640, + [641] = 640, + [642] = 642, + [643] = 642, + [644] = 640, + [645] = 640, + [646] = 642, + [647] = 642, + [648] = 642, + [649] = 640, + [650] = 640, + [651] = 642, + [652] = 640, + [653] = 642, + [654] = 642, + [655] = 642, + [656] = 640, + [657] = 640, + [658] = 642, + [659] = 642, + [660] = 640, [661] = 661, - [662] = 662, - [663] = 663, - [664] = 663, - [665] = 663, - [666] = 663, - [667] = 663, - [668] = 663, - [669] = 663, - [670] = 663, - [671] = 663, - [672] = 663, - [673] = 663, - [674] = 663, - [675] = 675, - [676] = 676, - [677] = 675, - [678] = 676, - [679] = 679, - [680] = 675, - [681] = 676, - [682] = 676, - [683] = 683, - [684] = 675, - [685] = 676, - [686] = 675, - [687] = 676, - [688] = 676, - [689] = 683, - [690] = 690, - [691] = 675, - [692] = 675, - [693] = 675, - [694] = 676, - [695] = 675, - [696] = 679, - [697] = 675, - [698] = 676, - [699] = 675, - [700] = 676, - [701] = 676, - [702] = 675, - [703] = 676, - [704] = 704, - [705] = 705, - [706] = 706, - [707] = 707, - [708] = 708, - [709] = 709, - [710] = 710, - [711] = 711, - [712] = 712, - [713] = 713, - [714] = 714, - [715] = 709, + [662] = 640, + [663] = 642, + [664] = 640, + [665] = 665, + [666] = 666, + [667] = 667, + [668] = 668, + [669] = 669, + [670] = 670, + [671] = 671, + [672] = 672, + [673] = 673, + [674] = 674, + [675] = 674, + [676] = 674, + [677] = 674, + [678] = 674, + [679] = 674, + [680] = 674, + [681] = 674, + [682] = 674, + [683] = 674, + [684] = 674, + [685] = 674, + [686] = 686, + [687] = 687, + [688] = 687, + [689] = 686, + [690] = 686, + [691] = 687, + [692] = 692, + [693] = 687, + [694] = 686, + [695] = 695, + [696] = 686, + [697] = 692, + [698] = 687, + [699] = 686, + [700] = 686, + [701] = 687, + [702] = 687, + [703] = 703, + [704] = 686, + [705] = 687, + [706] = 687, + [707] = 686, + [708] = 686, + [709] = 703, + [710] = 687, + [711] = 687, + [712] = 686, + [713] = 687, + [714] = 686, + [715] = 715, [716] = 716, [717] = 717, - [718] = 710, + [718] = 718, [719] = 719, [720] = 720, [721] = 721, - [722] = 722, + [722] = 719, [723] = 723, [724] = 724, - [725] = 716, - [726] = 711, - [727] = 712, - [728] = 723, - [729] = 716, - [730] = 723, - [731] = 731, - [732] = 709, - [733] = 710, - [734] = 719, - [735] = 720, - [736] = 721, - [737] = 722, - [738] = 713, - [739] = 724, - [740] = 711, - [741] = 712, - [742] = 716, - [743] = 713, - [744] = 714, - [745] = 717, - [746] = 714, - [747] = 717, - [748] = 723, - [749] = 716, - [750] = 723, - [751] = 716, - [752] = 723, - [753] = 716, - [754] = 723, - [755] = 716, - [756] = 756, - [757] = 731, - [758] = 723, - [759] = 731, - [760] = 709, - [761] = 710, - [762] = 719, - [763] = 720, - [764] = 721, - [765] = 722, - [766] = 716, - [767] = 724, - [768] = 711, - [769] = 712, - [770] = 710, - [771] = 713, - [772] = 714, - [773] = 717, - [774] = 719, - [775] = 720, - [776] = 721, - [777] = 722, - [778] = 723, + [725] = 725, + [726] = 726, + [727] = 727, + [728] = 728, + [729] = 721, + [730] = 719, + [731] = 723, + [732] = 724, + [733] = 725, + [734] = 726, + [735] = 727, + [736] = 736, + [737] = 728, + [738] = 736, + [739] = 739, + [740] = 739, + [741] = 741, + [742] = 742, + [743] = 743, + [744] = 720, + [745] = 745, + [746] = 720, + [747] = 741, + [748] = 742, + [749] = 745, + [750] = 720, + [751] = 745, + [752] = 720, + [753] = 745, + [754] = 720, + [755] = 745, + [756] = 720, + [757] = 721, + [758] = 719, + [759] = 723, + [760] = 724, + [761] = 725, + [762] = 726, + [763] = 727, + [764] = 764, + [765] = 728, + [766] = 736, + [767] = 739, + [768] = 745, + [769] = 741, + [770] = 742, + [771] = 743, + [772] = 724, + [773] = 720, + [774] = 743, + [775] = 719, + [776] = 745, + [777] = 723, + [778] = 720, [779] = 724, - [780] = 716, - [781] = 711, - [782] = 712, - [783] = 713, - [784] = 714, - [785] = 731, - [786] = 723, - [787] = 722, - [788] = 716, - [789] = 731, - [790] = 709, - [791] = 710, - [792] = 719, - [793] = 720, - [794] = 721, - [795] = 722, - [796] = 717, - [797] = 724, - [798] = 711, - [799] = 712, - [800] = 721, - [801] = 720, - [802] = 719, - [803] = 723, - [804] = 713, - [805] = 714, - [806] = 717, - [807] = 710, - [808] = 716, - [809] = 731, - [810] = 709, - [811] = 710, - [812] = 719, - [813] = 723, - [814] = 720, - [815] = 724, - [816] = 721, - [817] = 717, - [818] = 714, - [819] = 713, - [820] = 709, - [821] = 722, - [822] = 731, - [823] = 709, - [824] = 710, - [825] = 719, - [826] = 720, - [827] = 721, - [828] = 722, - [829] = 724, - [830] = 724, - [831] = 711, - [832] = 712, - [833] = 731, - [834] = 712, - [835] = 711, - [836] = 724, - [837] = 713, - [838] = 714, - [839] = 717, - [840] = 722, - [841] = 721, - [842] = 720, - [843] = 719, - [844] = 710, - [845] = 709, - [846] = 731, - [847] = 711, - [848] = 712, - [849] = 717, - [850] = 714, - [851] = 713, - [852] = 713, - [853] = 714, - [854] = 712, - [855] = 731, - [856] = 709, - [857] = 710, - [858] = 719, - [859] = 720, - [860] = 721, - [861] = 722, - [862] = 711, - [863] = 724, - [864] = 711, - [865] = 712, - [866] = 724, - [867] = 722, - [868] = 721, - [869] = 720, - [870] = 713, - [871] = 714, - [872] = 717, - [873] = 719, - [874] = 710, - [875] = 709, - [876] = 731, - [877] = 717, - [878] = 717, - [879] = 714, - [880] = 713, - [881] = 712, - [882] = 711, - [883] = 724, - [884] = 719, - [885] = 720, - [886] = 721, - [887] = 722, - [888] = 731, - [889] = 709, - [890] = 890, - [891] = 891, - [892] = 892, - [893] = 893, - [894] = 894, - [895] = 895, - [896] = 896, - [897] = 897, - [898] = 898, - [899] = 899, - [900] = 896, - [901] = 890, + [780] = 725, + [781] = 726, + [782] = 727, + [783] = 728, + [784] = 736, + [785] = 745, + [786] = 739, + [787] = 720, + [788] = 721, + [789] = 719, + [790] = 723, + [791] = 724, + [792] = 725, + [793] = 726, + [794] = 727, + [795] = 741, + [796] = 728, + [797] = 736, + [798] = 739, + [799] = 742, + [800] = 743, + [801] = 745, + [802] = 741, + [803] = 742, + [804] = 743, + [805] = 743, + [806] = 720, + [807] = 721, + [808] = 745, + [809] = 720, + [810] = 721, + [811] = 719, + [812] = 723, + [813] = 724, + [814] = 725, + [815] = 745, + [816] = 727, + [817] = 728, + [818] = 742, + [819] = 741, + [820] = 736, + [821] = 721, + [822] = 719, + [823] = 723, + [824] = 724, + [825] = 725, + [826] = 726, + [827] = 727, + [828] = 739, + [829] = 728, + [830] = 736, + [831] = 739, + [832] = 741, + [833] = 739, + [834] = 742, + [835] = 741, + [836] = 742, + [837] = 743, + [838] = 736, + [839] = 745, + [840] = 743, + [841] = 743, + [842] = 742, + [843] = 741, + [844] = 739, + [845] = 736, + [846] = 728, + [847] = 727, + [848] = 726, + [849] = 725, + [850] = 724, + [851] = 728, + [852] = 723, + [853] = 721, + [854] = 721, + [855] = 719, + [856] = 723, + [857] = 724, + [858] = 725, + [859] = 726, + [860] = 727, + [861] = 743, + [862] = 728, + [863] = 736, + [864] = 739, + [865] = 727, + [866] = 726, + [867] = 742, + [868] = 741, + [869] = 742, + [870] = 743, + [871] = 725, + [872] = 741, + [873] = 739, + [874] = 736, + [875] = 728, + [876] = 727, + [877] = 726, + [878] = 725, + [879] = 724, + [880] = 723, + [881] = 719, + [882] = 721, + [883] = 743, + [884] = 726, + [885] = 723, + [886] = 742, + [887] = 721, + [888] = 719, + [889] = 723, + [890] = 724, + [891] = 725, + [892] = 726, + [893] = 727, + [894] = 741, + [895] = 728, + [896] = 736, + [897] = 739, + [898] = 719, + [899] = 721, + [900] = 900, + [901] = 901, [902] = 902, [903] = 903, - [904] = 904, - [905] = 899, + [904] = 902, + [905] = 905, [906] = 906, - [907] = 906, - [908] = 890, - [909] = 896, + [907] = 907, + [908] = 908, + [909] = 909, [910] = 910, - [911] = 893, - [912] = 899, - [913] = 904, - [914] = 903, - [915] = 898, - [916] = 897, - [917] = 917, - [918] = 892, - [919] = 893, - [920] = 894, - [921] = 910, - [922] = 896, - [923] = 890, - [924] = 906, - [925] = 899, - [926] = 902, - [927] = 904, - [928] = 895, - [929] = 903, - [930] = 898, - [931] = 895, - [932] = 894, - [933] = 897, - [934] = 902, - [935] = 902, - [936] = 892, - [937] = 917, - [938] = 897, - [939] = 898, - [940] = 906, - [941] = 890, - [942] = 896, + [911] = 911, + [912] = 912, + [913] = 913, + [914] = 914, + [915] = 915, + [916] = 903, + [917] = 903, + [918] = 915, + [919] = 902, + [920] = 915, + [921] = 914, + [922] = 913, + [923] = 912, + [924] = 911, + [925] = 910, + [926] = 909, + [927] = 901, + [928] = 908, + [929] = 907, + [930] = 906, + [931] = 914, + [932] = 913, + [933] = 900, + [934] = 905, + [935] = 900, + [936] = 901, + [937] = 912, + [938] = 905, + [939] = 906, + [940] = 907, + [941] = 908, + [942] = 909, [943] = 910, - [944] = 893, - [945] = 899, - [946] = 904, - [947] = 903, - [948] = 898, - [949] = 897, - [950] = 917, - [951] = 892, - [952] = 903, - [953] = 894, - [954] = 904, - [955] = 899, - [956] = 893, - [957] = 910, - [958] = 892, - [959] = 890, - [960] = 906, - [961] = 895, - [962] = 917, - [963] = 902, - [964] = 892, - [965] = 894, - [966] = 895, - [967] = 895, - [968] = 902, - [969] = 894, - [970] = 892, - [971] = 917, - [972] = 897, - [973] = 906, - [974] = 898, - [975] = 896, + [944] = 911, + [945] = 912, + [946] = 913, + [947] = 914, + [948] = 915, + [949] = 903, + [950] = 911, + [951] = 910, + [952] = 902, + [953] = 902, + [954] = 909, + [955] = 901, + [956] = 903, + [957] = 915, + [958] = 914, + [959] = 913, + [960] = 901, + [961] = 912, + [962] = 911, + [963] = 910, + [964] = 908, + [965] = 907, + [966] = 900, + [967] = 909, + [968] = 908, + [969] = 907, + [970] = 906, + [971] = 905, + [972] = 906, + [973] = 907, + [974] = 908, + [975] = 909, [976] = 910, - [977] = 893, - [978] = 899, - [979] = 904, - [980] = 903, - [981] = 898, - [982] = 897, - [983] = 917, - [984] = 892, - [985] = 903, - [986] = 894, + [977] = 911, + [978] = 912, + [979] = 913, + [980] = 914, + [981] = 915, + [982] = 903, + [983] = 905, + [984] = 906, + [985] = 902, + [986] = 986, [987] = 987, [988] = 988, - [989] = 891, - [990] = 904, - [991] = 899, - [992] = 893, - [993] = 910, - [994] = 896, - [995] = 894, - [996] = 892, - [997] = 917, - [998] = 890, - [999] = 897, + [989] = 905, + [990] = 900, + [991] = 900, + [992] = 900, + [993] = 901, + [994] = 902, + [995] = 903, + [996] = 901, + [997] = 909, + [998] = 915, + [999] = 999, [1000] = 1000, [1001] = 1001, [1002] = 1002, - [1003] = 987, - [1004] = 988, - [1005] = 891, - [1006] = 906, - [1007] = 898, - [1008] = 903, - [1009] = 904, - [1010] = 902, - [1011] = 893, - [1012] = 910, - [1013] = 896, - [1014] = 895, - [1015] = 890, - [1016] = 1000, - [1017] = 1002, - [1018] = 987, - [1019] = 988, - [1020] = 891, - [1021] = 894, - [1022] = 906, - [1023] = 895, - [1024] = 917, - [1025] = 897, - [1026] = 902, - [1027] = 898, - [1028] = 903, - [1029] = 904, - [1030] = 899, - [1031] = 1000, - [1032] = 1002, - [1033] = 987, - [1034] = 988, - [1035] = 891, - [1036] = 893, - [1037] = 895, - [1038] = 910, - [1039] = 896, - [1040] = 890, - [1041] = 906, - [1042] = 910, - [1043] = 659, - [1044] = 902, - [1045] = 1045, - [1046] = 1000, - [1047] = 1002, - [1048] = 987, - [1049] = 988, - [1050] = 891, - [1051] = 895, - [1052] = 894, - [1053] = 1053, - [1054] = 654, - [1055] = 894, - [1056] = 1056, - [1057] = 892, - [1058] = 1058, - [1059] = 917, - [1060] = 1002, - [1061] = 1000, - [1062] = 1002, - [1063] = 987, - [1064] = 988, - [1065] = 917, - [1066] = 897, - [1067] = 1067, - [1068] = 1068, - [1069] = 892, - [1070] = 917, - [1071] = 897, + [1003] = 986, + [1004] = 987, + [1005] = 988, + [1006] = 914, + [1007] = 910, + [1008] = 913, + [1009] = 912, + [1010] = 911, + [1011] = 910, + [1012] = 909, + [1013] = 902, + [1014] = 908, + [1015] = 903, + [1016] = 999, + [1017] = 1001, + [1018] = 1002, + [1019] = 986, + [1020] = 987, + [1021] = 988, + [1022] = 907, + [1023] = 915, + [1024] = 914, + [1025] = 913, + [1026] = 912, + [1027] = 911, + [1028] = 906, + [1029] = 909, + [1030] = 905, + [1031] = 908, + [1032] = 999, + [1033] = 1001, + [1034] = 1002, + [1035] = 986, + [1036] = 987, + [1037] = 988, + [1038] = 900, + [1039] = 907, + [1040] = 906, + [1041] = 905, + [1042] = 905, + [1043] = 906, + [1044] = 901, + [1045] = 900, + [1046] = 902, + [1047] = 907, + [1048] = 999, + [1049] = 1001, + [1050] = 1002, + [1051] = 986, + [1052] = 987, + [1053] = 988, + [1054] = 908, + [1055] = 903, + [1056] = 915, + [1057] = 901, + [1058] = 914, + [1059] = 913, + [1060] = 912, + [1061] = 911, + [1062] = 910, + [1063] = 909, + [1064] = 999, + [1065] = 1001, + [1066] = 1002, + [1067] = 986, + [1068] = 987, + [1069] = 988, + [1070] = 908, + [1071] = 907, [1072] = 1072, - [1073] = 898, - [1074] = 898, - [1075] = 903, - [1076] = 1000, - [1077] = 1002, - [1078] = 987, - [1079] = 988, - [1080] = 891, - [1081] = 903, - [1082] = 904, - [1083] = 899, - [1084] = 893, - [1085] = 910, - [1086] = 896, - [1087] = 890, - [1088] = 1001, - [1089] = 904, - [1090] = 906, - [1091] = 1000, - [1092] = 1002, - [1093] = 987, - [1094] = 988, - [1095] = 891, - [1096] = 899, - [1097] = 1000, - [1098] = 893, - [1099] = 910, - [1100] = 891, + [1073] = 1073, + [1074] = 673, + [1075] = 906, + [1076] = 672, + [1077] = 902, + [1078] = 905, + [1079] = 1079, + [1080] = 999, + [1081] = 1001, + [1082] = 1002, + [1083] = 986, + [1084] = 987, + [1085] = 988, + [1086] = 900, + [1087] = 901, + [1088] = 1088, + [1089] = 1002, + [1090] = 1001, + [1091] = 1091, + [1092] = 903, + [1093] = 915, + [1094] = 902, + [1095] = 914, + [1096] = 999, + [1097] = 1001, + [1098] = 1002, + [1099] = 986, + [1100] = 987, [1101] = 988, - [1102] = 896, - [1103] = 890, - [1104] = 906, - [1105] = 902, - [1106] = 1000, - [1107] = 1002, - [1108] = 987, - [1109] = 988, - [1110] = 891, - [1111] = 895, - [1112] = 902, - [1113] = 1113, - [1114] = 1114, - [1115] = 1115, - [1116] = 1116, - [1117] = 1117, - [1118] = 1118, - [1119] = 894, - [1120] = 1120, - [1121] = 1000, - [1122] = 1002, - [1123] = 987, - [1124] = 988, - [1125] = 891, - [1126] = 892, - [1127] = 1127, - [1128] = 1128, - [1129] = 1129, - [1130] = 1130, - [1131] = 1131, - [1132] = 917, - [1133] = 897, - [1134] = 898, - [1135] = 903, - [1136] = 1000, - [1137] = 1002, - [1138] = 987, - [1139] = 988, - [1140] = 891, - [1141] = 904, - [1142] = 895, - [1143] = 899, - [1144] = 893, - [1145] = 910, - [1146] = 896, - [1147] = 987, - [1148] = 890, - [1149] = 906, - [1150] = 902, - [1151] = 1000, - [1152] = 1002, - [1153] = 1129, - [1154] = 1128, - [1155] = 1127, - [1156] = 1120, - [1157] = 1118, - [1158] = 1117, - [1159] = 1116, - [1160] = 1115, - [1161] = 1129, - [1162] = 1128, - [1163] = 1127, - [1164] = 1120, - [1165] = 1118, - [1166] = 1117, - [1167] = 1116, - [1168] = 1115, - [1169] = 1129, - [1170] = 1128, - [1171] = 1127, - [1172] = 1120, - [1173] = 1118, - [1174] = 1117, - [1175] = 1116, - [1176] = 1115, - [1177] = 1129, - [1178] = 1128, - [1179] = 1127, - [1180] = 1120, - [1181] = 1118, - [1182] = 1117, - [1183] = 1116, - [1184] = 1115, - [1185] = 1129, - [1186] = 1128, - [1187] = 1127, - [1188] = 1120, - [1189] = 1118, - [1190] = 1117, - [1191] = 1116, - [1192] = 1115, - [1193] = 1129, - [1194] = 1128, - [1195] = 1127, - [1196] = 1120, - [1197] = 1118, - [1198] = 1117, - [1199] = 1116, - [1200] = 1115, - [1201] = 1129, - [1202] = 1128, - [1203] = 1127, - [1204] = 1120, - [1205] = 1118, - [1206] = 1117, - [1207] = 1116, - [1208] = 1115, - [1209] = 1129, - [1210] = 1128, - [1211] = 1127, - [1212] = 1120, - [1213] = 1118, - [1214] = 1117, - [1215] = 1116, - [1216] = 1115, - [1217] = 1129, - [1218] = 1128, - [1219] = 1127, - [1220] = 1120, - [1221] = 1118, - [1222] = 1117, - [1223] = 1116, - [1224] = 1115, - [1225] = 1129, - [1226] = 1128, - [1227] = 1127, - [1228] = 1120, - [1229] = 1118, - [1230] = 1117, - [1231] = 1116, - [1232] = 1115, - [1233] = 1129, - [1234] = 1128, - [1235] = 1127, - [1236] = 1120, - [1237] = 1118, - [1238] = 1117, - [1239] = 1116, - [1240] = 1115, + [1102] = 903, + [1103] = 1103, + [1104] = 913, + [1105] = 912, + [1106] = 911, + [1107] = 910, + [1108] = 909, + [1109] = 908, + [1110] = 915, + [1111] = 907, + [1112] = 999, + [1113] = 1001, + [1114] = 1002, + [1115] = 986, + [1116] = 987, + [1117] = 988, + [1118] = 914, + [1119] = 906, + [1120] = 1000, + [1121] = 905, + [1122] = 999, + [1123] = 913, + [1124] = 912, + [1125] = 988, + [1126] = 911, + [1127] = 987, + [1128] = 999, + [1129] = 1001, + [1130] = 1002, + [1131] = 986, + [1132] = 987, + [1133] = 988, + [1134] = 910, + [1135] = 986, + [1136] = 909, + [1137] = 908, + [1138] = 900, + [1139] = 1139, + [1140] = 1140, + [1141] = 1141, + [1142] = 907, + [1143] = 1143, + [1144] = 999, + [1145] = 1001, + [1146] = 1002, + [1147] = 986, + [1148] = 987, + [1149] = 988, + [1150] = 906, + [1151] = 1151, + [1152] = 1152, + [1153] = 1153, + [1154] = 1154, + [1155] = 1155, + [1156] = 1156, + [1157] = 1157, + [1158] = 905, + [1159] = 1159, + [1160] = 999, + [1161] = 1001, + [1162] = 1002, + [1163] = 1156, + [1164] = 1155, + [1165] = 1154, + [1166] = 1153, + [1167] = 1152, + [1168] = 1151, + [1169] = 1143, + [1170] = 1141, + [1171] = 900, + [1172] = 1156, + [1173] = 1155, + [1174] = 1154, + [1175] = 1153, + [1176] = 1152, + [1177] = 1151, + [1178] = 1143, + [1179] = 1141, + [1180] = 901, + [1181] = 1156, + [1182] = 1155, + [1183] = 1154, + [1184] = 1153, + [1185] = 1152, + [1186] = 1151, + [1187] = 1143, + [1188] = 1141, + [1189] = 902, + [1190] = 1156, + [1191] = 1155, + [1192] = 1154, + [1193] = 1153, + [1194] = 1152, + [1195] = 1151, + [1196] = 1143, + [1197] = 1141, + [1198] = 901, + [1199] = 1156, + [1200] = 1155, + [1201] = 1154, + [1202] = 1153, + [1203] = 1152, + [1204] = 1151, + [1205] = 1143, + [1206] = 1141, + [1207] = 903, + [1208] = 1156, + [1209] = 1155, + [1210] = 1154, + [1211] = 1153, + [1212] = 1152, + [1213] = 1151, + [1214] = 1143, + [1215] = 1141, + [1216] = 915, + [1217] = 1156, + [1218] = 1155, + [1219] = 1154, + [1220] = 1153, + [1221] = 1152, + [1222] = 1151, + [1223] = 1143, + [1224] = 1141, + [1225] = 914, + [1226] = 1156, + [1227] = 1155, + [1228] = 1154, + [1229] = 1153, + [1230] = 1152, + [1231] = 1151, + [1232] = 1143, + [1233] = 1141, + [1234] = 913, + [1235] = 1156, + [1236] = 1155, + [1237] = 1154, + [1238] = 1153, + [1239] = 1152, + [1240] = 1151, + [1241] = 1143, + [1242] = 1141, + [1243] = 912, + [1244] = 1156, + [1245] = 1155, + [1246] = 1154, + [1247] = 1153, + [1248] = 1152, + [1249] = 1151, + [1250] = 1143, + [1251] = 1141, + [1252] = 911, + [1253] = 1156, + [1254] = 1155, + [1255] = 1154, + [1256] = 1153, + [1257] = 1152, + [1258] = 1151, + [1259] = 1143, + [1260] = 1141, + [1261] = 910, + [1262] = 1139, + [1263] = 1139, + [1264] = 1139, + [1265] = 1139, + [1266] = 1139, + [1267] = 1139, + [1268] = 1139, + [1269] = 1139, + [1270] = 1139, + [1271] = 1139, + [1272] = 1139, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -2421,12 +2446,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'T') ADVANCE(160); if (lookahead == 'W') ADVANCE(157); if (lookahead == 'X') ADVANCE(161); - if (lookahead == '[') ADVANCE(120); + if (lookahead == '[') ADVANCE(114); if (lookahead == '\\') ADVANCE(66); if (lookahead == ']') ADVANCE(122); if (lookahead == '^') ADVANCE(52); if (lookahead == '_') ADVANCE(44); - if (lookahead == '{') ADVANCE(113); + if (lookahead == '{') ADVANCE(117); if (lookahead == '}') ADVANCE(128); if (lookahead == '~') ADVANCE(56); if (lookahead == '\t' || @@ -2453,7 +2478,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'T') ADVANCE(160); if (lookahead == 'W') ADVANCE(157); if (lookahead == 'X') ADVANCE(161); - if (lookahead == '[') ADVANCE(120); + if (lookahead == '[') ADVANCE(114); if (lookahead == '\\') ADVANCE(64); if (lookahead == ']') ADVANCE(122); if (lookahead == '^') ADVANCE(52); @@ -2484,7 +2509,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'T') ADVANCE(160); if (lookahead == 'W') ADVANCE(157); if (lookahead == 'X') ADVANCE(161); - if (lookahead == '[') ADVANCE(120); + if (lookahead == '[') ADVANCE(114); if (lookahead == '\\') ADVANCE(64); if (lookahead == '^') ADVANCE(52); if (lookahead == '_') ADVANCE(44); @@ -2513,12 +2538,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'T') ADVANCE(160); if (lookahead == 'W') ADVANCE(157); if (lookahead == 'X') ADVANCE(161); - if (lookahead == '[') ADVANCE(120); + if (lookahead == '[') ADVANCE(114); if (lookahead == '\\') ADVANCE(64); if (lookahead == ']') ADVANCE(122); if (lookahead == '^') ADVANCE(52); if (lookahead == '_') ADVANCE(44); - if (lookahead == '{') ADVANCE(116); + if (lookahead == '{') ADVANCE(120); if (lookahead == '~') ADVANCE(56); if (lookahead == '\t' || lookahead == ' ') ADVANCE(151); @@ -2545,11 +2570,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'T') ADVANCE(160); if (lookahead == 'W') ADVANCE(157); if (lookahead == 'X') ADVANCE(161); - if (lookahead == '[') ADVANCE(120); + if (lookahead == '[') ADVANCE(114); if (lookahead == '\\') ADVANCE(64); if (lookahead == '^') ADVANCE(52); if (lookahead == '_') ADVANCE(44); - if (lookahead == '{') ADVANCE(116); + if (lookahead == '{') ADVANCE(120); if (lookahead == '~') ADVANCE(56); if (lookahead != 0 && (lookahead < '\t' || '\f' < lookahead) && @@ -2565,8 +2590,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ')') ADVANCE(127); if (lookahead == '.') ADVANCE(166); if (lookahead == '=') ADVANCE(169); - if (lookahead == '[') ADVANCE(119); - if (lookahead == '{') ADVANCE(112); + if (lookahead == '[') ADVANCE(113); + if (lookahead == '{') ADVANCE(116); if (lookahead == '}') ADVANCE(128); if (lookahead == '\t' || lookahead == ' ') ADVANCE(151); @@ -2586,8 +2611,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ')') ADVANCE(127); if (lookahead == '.') ADVANCE(166); if (lookahead == '=') ADVANCE(169); - if (lookahead == '[') ADVANCE(118); - if (lookahead == '{') ADVANCE(112); + if (lookahead == '[') ADVANCE(112); + if (lookahead == '{') ADVANCE(116); if (lookahead == '}') ADVANCE(128); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || @@ -2620,12 +2645,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'T') ADVANCE(160); if (lookahead == 'W') ADVANCE(157); if (lookahead == 'X') ADVANCE(161); - if (lookahead == '[') ADVANCE(120); + if (lookahead == '[') ADVANCE(114); if (lookahead == '\\') ADVANCE(64); if (lookahead == ']') ADVANCE(122); if (lookahead == '^') ADVANCE(52); if (lookahead == '_') ADVANCE(44); - if (lookahead == '{') ADVANCE(116); + if (lookahead == '{') ADVANCE(120); if (lookahead == '~') ADVANCE(56); if (lookahead == '\t' || lookahead == ' ') ADVANCE(151); @@ -2651,12 +2676,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'T') ADVANCE(160); if (lookahead == 'W') ADVANCE(157); if (lookahead == 'X') ADVANCE(161); - if (lookahead == '[') ADVANCE(120); + if (lookahead == '[') ADVANCE(114); if (lookahead == '\\') ADVANCE(64); if (lookahead == ']') ADVANCE(122); if (lookahead == '^') ADVANCE(52); if (lookahead == '_') ADVANCE(44); - if (lookahead == '{') ADVANCE(115); + if (lookahead == '{') ADVANCE(119); if (lookahead == '~') ADVANCE(56); if (lookahead == '\t' || lookahead == ' ') ADVANCE(151); @@ -2682,11 +2707,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'T') ADVANCE(160); if (lookahead == 'W') ADVANCE(157); if (lookahead == 'X') ADVANCE(161); - if (lookahead == '[') ADVANCE(120); + if (lookahead == '[') ADVANCE(114); if (lookahead == '\\') ADVANCE(64); if (lookahead == '^') ADVANCE(52); if (lookahead == '_') ADVANCE(44); - if (lookahead == '{') ADVANCE(116); + if (lookahead == '{') ADVANCE(120); if (lookahead == '~') ADVANCE(56); if (lookahead != 0 && (lookahead < '\t' || '\f' < lookahead) && @@ -2711,12 +2736,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'T') ADVANCE(92); if (lookahead == 'W') ADVANCE(87); if (lookahead == 'X') ADVANCE(99); - if (lookahead == '[') ADVANCE(121); + if (lookahead == '[') ADVANCE(115); if (lookahead == '\\') ADVANCE(65); if (lookahead == ']') ADVANCE(123); if (lookahead == '^') ADVANCE(53); if (lookahead == '_') ADVANCE(45); - if (lookahead == '{') ADVANCE(117); + if (lookahead == '{') ADVANCE(121); if (lookahead == '~') ADVANCE(57); if (lookahead == '\t' || lookahead == ' ') ADVANCE(151); @@ -2743,11 +2768,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'T') ADVANCE(92); if (lookahead == 'W') ADVANCE(87); if (lookahead == 'X') ADVANCE(99); - if (lookahead == '[') ADVANCE(121); + if (lookahead == '[') ADVANCE(115); if (lookahead == '\\') ADVANCE(65); if (lookahead == '^') ADVANCE(53); if (lookahead == '_') ADVANCE(45); - if (lookahead == '{') ADVANCE(117); + if (lookahead == '{') ADVANCE(121); if (lookahead == '~') ADVANCE(57); if (lookahead != 0 && (lookahead < '\t' || '\f' < lookahead) && @@ -2855,11 +2880,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'T') ADVANCE(160); if (lookahead == 'W') ADVANCE(157); if (lookahead == 'X') ADVANCE(161); - if (lookahead == '[') ADVANCE(120); + if (lookahead == '[') ADVANCE(114); if (lookahead == '\\') ADVANCE(66); if (lookahead == '^') ADVANCE(52); if (lookahead == '_') ADVANCE(44); - if (lookahead == '{') ADVANCE(114); + if (lookahead == '{') ADVANCE(118); if (lookahead == '}') ADVANCE(128); if (lookahead == '~') ADVANCE(56); if (lookahead != 0 && @@ -2885,7 +2910,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'T') ADVANCE(160); if (lookahead == 'W') ADVANCE(157); if (lookahead == 'X') ADVANCE(161); - if (lookahead == '[') ADVANCE(120); + if (lookahead == '[') ADVANCE(114); if (lookahead == '\\') ADVANCE(64); if (lookahead == '^') ADVANCE(52); if (lookahead == '_') ADVANCE(44); @@ -2916,7 +2941,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'T') ADVANCE(160); if (lookahead == 'W') ADVANCE(157); if (lookahead == 'X') ADVANCE(161); - if (lookahead == '[') ADVANCE(120); + if (lookahead == '[') ADVANCE(114); if (lookahead == '\\') ADVANCE(64); if (lookahead == '^') ADVANCE(52); if (lookahead == '_') ADVANCE(44); @@ -2946,11 +2971,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'T') ADVANCE(92); if (lookahead == 'W') ADVANCE(87); if (lookahead == 'X') ADVANCE(99); - if (lookahead == '[') ADVANCE(121); + if (lookahead == '[') ADVANCE(115); if (lookahead == '\\') ADVANCE(65); if (lookahead == '^') ADVANCE(53); if (lookahead == '_') ADVANCE(45); - if (lookahead == '{') ADVANCE(117); + if (lookahead == '{') ADVANCE(121); if (lookahead == '~') ADVANCE(57); if (lookahead == '\t' || lookahead == ' ') ADVANCE(151); @@ -2978,11 +3003,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'T') ADVANCE(92); if (lookahead == 'W') ADVANCE(87); if (lookahead == 'X') ADVANCE(99); - if (lookahead == '[') ADVANCE(121); + if (lookahead == '[') ADVANCE(115); if (lookahead == '\\') ADVANCE(65); if (lookahead == '^') ADVANCE(53); if (lookahead == '_') ADVANCE(45); - if (lookahead == '{') ADVANCE(117); + if (lookahead == '{') ADVANCE(121); if (lookahead == '~') ADVANCE(57); if (lookahead != 0 && (lookahead < '\t' || '\f' < lookahead) && @@ -3007,11 +3032,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'T') ADVANCE(160); if (lookahead == 'W') ADVANCE(157); if (lookahead == 'X') ADVANCE(161); - if (lookahead == '[') ADVANCE(120); + if (lookahead == '[') ADVANCE(114); if (lookahead == '\\') ADVANCE(64); if (lookahead == '^') ADVANCE(52); if (lookahead == '_') ADVANCE(44); - if (lookahead == '{') ADVANCE(116); + if (lookahead == '{') ADVANCE(120); if (lookahead == '~') ADVANCE(56); if (lookahead == '\t' || lookahead == ' ') ADVANCE(151); @@ -3038,11 +3063,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'T') ADVANCE(160); if (lookahead == 'W') ADVANCE(157); if (lookahead == 'X') ADVANCE(161); - if (lookahead == '[') ADVANCE(120); + if (lookahead == '[') ADVANCE(114); if (lookahead == '\\') ADVANCE(64); if (lookahead == '^') ADVANCE(52); if (lookahead == '_') ADVANCE(44); - if (lookahead == '{') ADVANCE(116); + if (lookahead == '{') ADVANCE(120); if (lookahead == '~') ADVANCE(56); if (lookahead != 0 && (lookahead < '\t' || '\f' < lookahead) && @@ -3067,11 +3092,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'T') ADVANCE(160); if (lookahead == 'W') ADVANCE(157); if (lookahead == 'X') ADVANCE(161); - if (lookahead == '[') ADVANCE(120); + if (lookahead == '[') ADVANCE(114); if (lookahead == '\\') ADVANCE(64); if (lookahead == '^') ADVANCE(52); if (lookahead == '_') ADVANCE(44); - if (lookahead == '{') ADVANCE(115); + if (lookahead == '{') ADVANCE(119); if (lookahead == '~') ADVANCE(56); if (lookahead == '\t' || lookahead == ' ') ADVANCE(151); @@ -3099,11 +3124,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'T') ADVANCE(160); if (lookahead == 'W') ADVANCE(157); if (lookahead == 'X') ADVANCE(161); - if (lookahead == '[') ADVANCE(120); + if (lookahead == '[') ADVANCE(114); if (lookahead == '\\') ADVANCE(64); if (lookahead == '^') ADVANCE(52); if (lookahead == '_') ADVANCE(44); - if (lookahead == '{') ADVANCE(116); + if (lookahead == '{') ADVANCE(120); if (lookahead == '~') ADVANCE(56); if (lookahead == '\t' || lookahead == ' ') ADVANCE(151); @@ -3131,11 +3156,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'T') ADVANCE(160); if (lookahead == 'W') ADVANCE(157); if (lookahead == 'X') ADVANCE(161); - if (lookahead == '[') ADVANCE(120); + if (lookahead == '[') ADVANCE(114); if (lookahead == '\\') ADVANCE(64); if (lookahead == '^') ADVANCE(52); if (lookahead == '_') ADVANCE(44); - if (lookahead == '{') ADVANCE(116); + if (lookahead == '{') ADVANCE(120); if (lookahead == '~') ADVANCE(56); if (lookahead != 0 && (lookahead < '\t' || '\f' < lookahead) && @@ -3591,9 +3616,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>') ADVANCE(103); END_STATE(); case 112: - ACCEPT_TOKEN(anon_sym_LBRACE); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 113: + ACCEPT_TOKEN(anon_sym_LBRACK); + if (lookahead == ']') ADVANCE(109); + END_STATE(); + case 114: + ACCEPT_TOKEN(anon_sym_LBRACK); + if (lookahead == '^') ADVANCE(106); + END_STATE(); + case 115: + ACCEPT_TOKEN(anon_sym_LBRACK); + if (lookahead == '^') ADVANCE(107); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(103); + END_STATE(); + case 116: + ACCEPT_TOKEN(anon_sym_LBRACE); + END_STATE(); + case 117: ACCEPT_TOKEN(anon_sym_LBRACE); if (lookahead == '*') ADVANCE(46); if (lookahead == '+') ADVANCE(60); @@ -3603,7 +3647,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(42); if (lookahead == '~') ADVANCE(54); END_STATE(); - case 114: + case 118: ACCEPT_TOKEN(anon_sym_LBRACE); if (lookahead == '*') ADVANCE(46); if (lookahead == '+') ADVANCE(60); @@ -3613,7 +3657,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(42); if (lookahead == '~') ADVANCE(54); END_STATE(); - case 115: + case 119: ACCEPT_TOKEN(anon_sym_LBRACE); if (lookahead == '"' || lookahead == '\'') ADVANCE(67); @@ -3625,7 +3669,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(42); if (lookahead == '~') ADVANCE(54); END_STATE(); - case 116: + case 120: ACCEPT_TOKEN(anon_sym_LBRACE); if (lookahead == '"' || lookahead == '\'') ADVANCE(67); @@ -3637,7 +3681,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(42); if (lookahead == '~') ADVANCE(54); END_STATE(); - case 117: + case 121: ACCEPT_TOKEN(anon_sym_LBRACE); if (lookahead == '"' || lookahead == '\'') ADVANCE(68); @@ -3653,25 +3697,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ' && lookahead != '>') ADVANCE(103); END_STATE(); - case 118: - ACCEPT_TOKEN(anon_sym_LBRACK); - END_STATE(); - case 119: - ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == ']') ADVANCE(109); - END_STATE(); - case 120: - ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '^') ADVANCE(106); - END_STATE(); - case 121: - ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '^') ADVANCE(107); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(103); - END_STATE(); case 122: ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); @@ -3942,11 +3967,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, [1] = {.lex_state = 32, .external_lex_state = 2}, [2] = {.lex_state = 32, .external_lex_state = 3}, - [3] = {.lex_state = 32, .external_lex_state = 4}, + [3] = {.lex_state = 32, .external_lex_state = 2}, [4] = {.lex_state = 32, .external_lex_state = 2}, [5] = {.lex_state = 32, .external_lex_state = 2}, [6] = {.lex_state = 32, .external_lex_state = 2}, - [7] = {.lex_state = 32, .external_lex_state = 2}, + [7] = {.lex_state = 32, .external_lex_state = 4}, [8] = {.lex_state = 32, .external_lex_state = 2}, [9] = {.lex_state = 32, .external_lex_state = 2}, [10] = {.lex_state = 32, .external_lex_state = 2}, @@ -3960,7 +3985,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [18] = {.lex_state = 32, .external_lex_state = 2}, [19] = {.lex_state = 32, .external_lex_state = 2}, [20] = {.lex_state = 32, .external_lex_state = 2}, - [21] = {.lex_state = 32, .external_lex_state = 6}, + [21] = {.lex_state = 32, .external_lex_state = 5}, [22] = {.lex_state = 32, .external_lex_state = 2}, [23] = {.lex_state = 32, .external_lex_state = 2}, [24] = {.lex_state = 32, .external_lex_state = 2}, @@ -3975,8 +4000,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [33] = {.lex_state = 32, .external_lex_state = 2}, [34] = {.lex_state = 32, .external_lex_state = 2}, [35] = {.lex_state = 32, .external_lex_state = 2}, - [36] = {.lex_state = 32, .external_lex_state = 2}, - [37] = {.lex_state = 32, .external_lex_state = 4}, + [36] = {.lex_state = 32, .external_lex_state = 6}, + [37] = {.lex_state = 32, .external_lex_state = 2}, [38] = {.lex_state = 32, .external_lex_state = 2}, [39] = {.lex_state = 32, .external_lex_state = 2}, [40] = {.lex_state = 32, .external_lex_state = 2}, @@ -3985,8 +4010,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [43] = {.lex_state = 32, .external_lex_state = 2}, [44] = {.lex_state = 32, .external_lex_state = 2}, [45] = {.lex_state = 32, .external_lex_state = 2}, - [46] = {.lex_state = 32, .external_lex_state = 2}, - [47] = {.lex_state = 1, .external_lex_state = 2}, + [46] = {.lex_state = 32, .external_lex_state = 7}, + [47] = {.lex_state = 32, .external_lex_state = 2}, [48] = {.lex_state = 32, .external_lex_state = 2}, [49] = {.lex_state = 32, .external_lex_state = 2}, [50] = {.lex_state = 32, .external_lex_state = 2}, @@ -4003,27 +4028,27 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [61] = {.lex_state = 32, .external_lex_state = 2}, [62] = {.lex_state = 32, .external_lex_state = 2}, [63] = {.lex_state = 32, .external_lex_state = 2}, - [64] = {.lex_state = 32, .external_lex_state = 7}, - [65] = {.lex_state = 32, .external_lex_state = 5}, + [64] = {.lex_state = 32, .external_lex_state = 2}, + [65] = {.lex_state = 32, .external_lex_state = 2}, [66] = {.lex_state = 32, .external_lex_state = 2}, [67] = {.lex_state = 32, .external_lex_state = 2}, - [68] = {.lex_state = 32, .external_lex_state = 2}, + [68] = {.lex_state = 32, .external_lex_state = 8}, [69] = {.lex_state = 32, .external_lex_state = 2}, - [70] = {.lex_state = 32, .external_lex_state = 3}, + [70] = {.lex_state = 32, .external_lex_state = 4}, [71] = {.lex_state = 32, .external_lex_state = 2}, - [72] = {.lex_state = 32, .external_lex_state = 7}, + [72] = {.lex_state = 32, .external_lex_state = 2}, [73] = {.lex_state = 32, .external_lex_state = 2}, - [74] = {.lex_state = 1, .external_lex_state = 2}, + [74] = {.lex_state = 32, .external_lex_state = 2}, [75] = {.lex_state = 32, .external_lex_state = 2}, [76] = {.lex_state = 32, .external_lex_state = 2}, [77] = {.lex_state = 32, .external_lex_state = 2}, [78] = {.lex_state = 32, .external_lex_state = 2}, [79] = {.lex_state = 32, .external_lex_state = 2}, - [80] = {.lex_state = 32, .external_lex_state = 2}, + [80] = {.lex_state = 32, .external_lex_state = 8}, [81] = {.lex_state = 32, .external_lex_state = 2}, - [82] = {.lex_state = 32, .external_lex_state = 6}, + [82] = {.lex_state = 32, .external_lex_state = 2}, [83] = {.lex_state = 32, .external_lex_state = 2}, - [84] = {.lex_state = 32, .external_lex_state = 2}, + [84] = {.lex_state = 1, .external_lex_state = 2}, [85] = {.lex_state = 32, .external_lex_state = 2}, [86] = {.lex_state = 32, .external_lex_state = 2}, [87] = {.lex_state = 32, .external_lex_state = 2}, @@ -4039,145 +4064,145 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [97] = {.lex_state = 32, .external_lex_state = 2}, [98] = {.lex_state = 32, .external_lex_state = 2}, [99] = {.lex_state = 32, .external_lex_state = 2}, - [100] = {.lex_state = 32, .external_lex_state = 2}, + [100] = {.lex_state = 32, .external_lex_state = 7}, [101] = {.lex_state = 32, .external_lex_state = 2}, [102] = {.lex_state = 32, .external_lex_state = 2}, [103] = {.lex_state = 32, .external_lex_state = 2}, [104] = {.lex_state = 32, .external_lex_state = 2}, [105] = {.lex_state = 32, .external_lex_state = 2}, [106] = {.lex_state = 32, .external_lex_state = 2}, - [107] = {.lex_state = 32, .external_lex_state = 8}, + [107] = {.lex_state = 32, .external_lex_state = 2}, [108] = {.lex_state = 32, .external_lex_state = 2}, - [109] = {.lex_state = 32, .external_lex_state = 8}, - [110] = {.lex_state = 32, .external_lex_state = 9}, + [109] = {.lex_state = 32, .external_lex_state = 2}, + [110] = {.lex_state = 32, .external_lex_state = 2}, [111] = {.lex_state = 32, .external_lex_state = 2}, - [112] = {.lex_state = 32, .external_lex_state = 3}, + [112] = {.lex_state = 32, .external_lex_state = 2}, [113] = {.lex_state = 32, .external_lex_state = 2}, [114] = {.lex_state = 32, .external_lex_state = 2}, - [115] = {.lex_state = 32, .external_lex_state = 9}, - [116] = {.lex_state = 32, .external_lex_state = 2}, + [115] = {.lex_state = 32, .external_lex_state = 2}, + [116] = {.lex_state = 32, .external_lex_state = 3}, [117] = {.lex_state = 32, .external_lex_state = 2}, [118] = {.lex_state = 32, .external_lex_state = 2}, [119] = {.lex_state = 32, .external_lex_state = 2}, - [120] = {.lex_state = 32, .external_lex_state = 2}, - [121] = {.lex_state = 36, .external_lex_state = 3}, - [122] = {.lex_state = 36, .external_lex_state = 10}, - [123] = {.lex_state = 36, .external_lex_state = 9}, - [124] = {.lex_state = 36, .external_lex_state = 7}, - [125] = {.lex_state = 36, .external_lex_state = 8}, - [126] = {.lex_state = 36, .external_lex_state = 6}, - [127] = {.lex_state = 8, .external_lex_state = 2}, - [128] = {.lex_state = 36, .external_lex_state = 11}, - [129] = {.lex_state = 36, .external_lex_state = 5}, - [130] = {.lex_state = 36, .external_lex_state = 2}, - [131] = {.lex_state = 36, .external_lex_state = 4}, - [132] = {.lex_state = 36, .external_lex_state = 2}, - [133] = {.lex_state = 36, .external_lex_state = 5}, - [134] = {.lex_state = 36, .external_lex_state = 9}, - [135] = {.lex_state = 36, .external_lex_state = 7}, - [136] = {.lex_state = 8, .external_lex_state = 2}, - [137] = {.lex_state = 36, .external_lex_state = 4}, - [138] = {.lex_state = 36, .external_lex_state = 10}, - [139] = {.lex_state = 36, .external_lex_state = 3}, - [140] = {.lex_state = 36, .external_lex_state = 8}, - [141] = {.lex_state = 36, .external_lex_state = 11}, - [142] = {.lex_state = 36, .external_lex_state = 2}, - [143] = {.lex_state = 36, .external_lex_state = 6}, + [120] = {.lex_state = 1, .external_lex_state = 2}, + [121] = {.lex_state = 32, .external_lex_state = 9}, + [122] = {.lex_state = 32, .external_lex_state = 3}, + [123] = {.lex_state = 32, .external_lex_state = 2}, + [124] = {.lex_state = 32, .external_lex_state = 6}, + [125] = {.lex_state = 32, .external_lex_state = 2}, + [126] = {.lex_state = 32, .external_lex_state = 9}, + [127] = {.lex_state = 32, .external_lex_state = 2}, + [128] = {.lex_state = 32, .external_lex_state = 2}, + [129] = {.lex_state = 32, .external_lex_state = 2}, + [130] = {.lex_state = 32, .external_lex_state = 2}, + [131] = {.lex_state = 32, .external_lex_state = 2}, + [132] = {.lex_state = 36, .external_lex_state = 7}, + [133] = {.lex_state = 36, .external_lex_state = 10}, + [134] = {.lex_state = 36, .external_lex_state = 4}, + [135] = {.lex_state = 36, .external_lex_state = 3}, + [136] = {.lex_state = 36, .external_lex_state = 11}, + [137] = {.lex_state = 36, .external_lex_state = 9}, + [138] = {.lex_state = 36, .external_lex_state = 8}, + [139] = {.lex_state = 36, .external_lex_state = 2}, + [140] = {.lex_state = 36, .external_lex_state = 6}, + [141] = {.lex_state = 8, .external_lex_state = 2}, + [142] = {.lex_state = 36, .external_lex_state = 5}, + [143] = {.lex_state = 36, .external_lex_state = 3}, [144] = {.lex_state = 36, .external_lex_state = 2}, - [145] = {.lex_state = 38, .external_lex_state = 11}, - [146] = {.lex_state = 38, .external_lex_state = 6}, - [147] = {.lex_state = 38, .external_lex_state = 10}, - [148] = {.lex_state = 38, .external_lex_state = 2}, - [149] = {.lex_state = 38, .external_lex_state = 7}, - [150] = {.lex_state = 38, .external_lex_state = 3}, - [151] = {.lex_state = 9, .external_lex_state = 2}, - [152] = {.lex_state = 38, .external_lex_state = 8}, - [153] = {.lex_state = 38, .external_lex_state = 5}, - [154] = {.lex_state = 38, .external_lex_state = 9}, - [155] = {.lex_state = 38, .external_lex_state = 4}, - [156] = {.lex_state = 36, .external_lex_state = 3}, - [157] = {.lex_state = 34, .external_lex_state = 10}, - [158] = {.lex_state = 39, .external_lex_state = 11}, - [159] = {.lex_state = 8, .external_lex_state = 12}, - [160] = {.lex_state = 36, .external_lex_state = 13}, - [161] = {.lex_state = 36, .external_lex_state = 5}, - [162] = {.lex_state = 39, .external_lex_state = 5}, - [163] = {.lex_state = 36, .external_lex_state = 14}, - [164] = {.lex_state = 36, .external_lex_state = 13}, - [165] = {.lex_state = 8, .external_lex_state = 2}, - [166] = {.lex_state = 36, .external_lex_state = 11}, - [167] = {.lex_state = 36, .external_lex_state = 14}, - [168] = {.lex_state = 34, .external_lex_state = 5}, - [169] = {.lex_state = 36, .external_lex_state = 15}, - [170] = {.lex_state = 36, .external_lex_state = 15}, - [171] = {.lex_state = 36, .external_lex_state = 4}, - [172] = {.lex_state = 39, .external_lex_state = 4}, - [173] = {.lex_state = 39, .external_lex_state = 9}, - [174] = {.lex_state = 36, .external_lex_state = 5}, - [175] = {.lex_state = 34, .external_lex_state = 4}, - [176] = {.lex_state = 8, .external_lex_state = 2}, - [177] = {.lex_state = 36, .external_lex_state = 16}, - [178] = {.lex_state = 36, .external_lex_state = 16}, - [179] = {.lex_state = 36, .external_lex_state = 17}, - [180] = {.lex_state = 36, .external_lex_state = 8}, - [181] = {.lex_state = 39, .external_lex_state = 8}, - [182] = {.lex_state = 36, .external_lex_state = 17}, - [183] = {.lex_state = 36, .external_lex_state = 3}, - [184] = {.lex_state = 36, .external_lex_state = 4}, - [185] = {.lex_state = 34, .external_lex_state = 8}, - [186] = {.lex_state = 36, .external_lex_state = 18}, - [187] = {.lex_state = 36, .external_lex_state = 18}, - [188] = {.lex_state = 34, .external_lex_state = 11}, - [189] = {.lex_state = 8, .external_lex_state = 12}, - [190] = {.lex_state = 3, .external_lex_state = 2}, - [191] = {.lex_state = 36, .external_lex_state = 19}, - [192] = {.lex_state = 36, .external_lex_state = 19}, - [193] = {.lex_state = 36, .external_lex_state = 6}, - [194] = {.lex_state = 39, .external_lex_state = 3}, - [195] = {.lex_state = 34, .external_lex_state = 9}, - [196] = {.lex_state = 36, .external_lex_state = 9}, - [197] = {.lex_state = 36, .external_lex_state = 12}, - [198] = {.lex_state = 36, .external_lex_state = 7}, - [199] = {.lex_state = 39, .external_lex_state = 10}, - [200] = {.lex_state = 39, .external_lex_state = 7}, - [201] = {.lex_state = 38, .external_lex_state = 2}, + [145] = {.lex_state = 36, .external_lex_state = 8}, + [146] = {.lex_state = 8, .external_lex_state = 2}, + [147] = {.lex_state = 36, .external_lex_state = 7}, + [148] = {.lex_state = 36, .external_lex_state = 11}, + [149] = {.lex_state = 36, .external_lex_state = 5}, + [150] = {.lex_state = 36, .external_lex_state = 2}, + [151] = {.lex_state = 36, .external_lex_state = 6}, + [152] = {.lex_state = 36, .external_lex_state = 10}, + [153] = {.lex_state = 36, .external_lex_state = 4}, + [154] = {.lex_state = 36, .external_lex_state = 9}, + [155] = {.lex_state = 36, .external_lex_state = 2}, + [156] = {.lex_state = 38, .external_lex_state = 5}, + [157] = {.lex_state = 38, .external_lex_state = 2}, + [158] = {.lex_state = 9, .external_lex_state = 2}, + [159] = {.lex_state = 38, .external_lex_state = 4}, + [160] = {.lex_state = 38, .external_lex_state = 7}, + [161] = {.lex_state = 38, .external_lex_state = 11}, + [162] = {.lex_state = 38, .external_lex_state = 10}, + [163] = {.lex_state = 38, .external_lex_state = 6}, + [164] = {.lex_state = 38, .external_lex_state = 8}, + [165] = {.lex_state = 38, .external_lex_state = 3}, + [166] = {.lex_state = 38, .external_lex_state = 9}, + [167] = {.lex_state = 34, .external_lex_state = 8}, + [168] = {.lex_state = 36, .external_lex_state = 12}, + [169] = {.lex_state = 36, .external_lex_state = 7}, + [170] = {.lex_state = 39, .external_lex_state = 7}, + [171] = {.lex_state = 39, .external_lex_state = 9}, + [172] = {.lex_state = 36, .external_lex_state = 12}, + [173] = {.lex_state = 8, .external_lex_state = 2}, + [174] = {.lex_state = 34, .external_lex_state = 7}, + [175] = {.lex_state = 36, .external_lex_state = 9}, + [176] = {.lex_state = 36, .external_lex_state = 13}, + [177] = {.lex_state = 36, .external_lex_state = 13}, + [178] = {.lex_state = 34, .external_lex_state = 3}, + [179] = {.lex_state = 36, .external_lex_state = 14}, + [180] = {.lex_state = 36, .external_lex_state = 4}, + [181] = {.lex_state = 39, .external_lex_state = 4}, + [182] = {.lex_state = 39, .external_lex_state = 11}, + [183] = {.lex_state = 36, .external_lex_state = 15}, + [184] = {.lex_state = 36, .external_lex_state = 7}, + [185] = {.lex_state = 36, .external_lex_state = 16}, + [186] = {.lex_state = 36, .external_lex_state = 16}, + [187] = {.lex_state = 36, .external_lex_state = 15}, + [188] = {.lex_state = 34, .external_lex_state = 10}, + [189] = {.lex_state = 34, .external_lex_state = 4}, + [190] = {.lex_state = 34, .external_lex_state = 9}, + [191] = {.lex_state = 36, .external_lex_state = 17}, + [192] = {.lex_state = 36, .external_lex_state = 6}, + [193] = {.lex_state = 36, .external_lex_state = 18}, + [194] = {.lex_state = 8, .external_lex_state = 2}, + [195] = {.lex_state = 36, .external_lex_state = 17}, + [196] = {.lex_state = 3, .external_lex_state = 2}, + [197] = {.lex_state = 36, .external_lex_state = 18}, + [198] = {.lex_state = 39, .external_lex_state = 10}, + [199] = {.lex_state = 36, .external_lex_state = 5}, + [200] = {.lex_state = 39, .external_lex_state = 5}, + [201] = {.lex_state = 36, .external_lex_state = 11}, [202] = {.lex_state = 36, .external_lex_state = 9}, - [203] = {.lex_state = 36, .external_lex_state = 8}, - [204] = {.lex_state = 34, .external_lex_state = 7}, - [205] = {.lex_state = 36, .external_lex_state = 2}, - [206] = {.lex_state = 36, .external_lex_state = 20}, - [207] = {.lex_state = 36, .external_lex_state = 20}, - [208] = {.lex_state = 36, .external_lex_state = 10}, - [209] = {.lex_state = 39, .external_lex_state = 2}, - [210] = {.lex_state = 11, .external_lex_state = 2}, - [211] = {.lex_state = 34, .external_lex_state = 6}, - [212] = {.lex_state = 34, .external_lex_state = 3}, - [213] = {.lex_state = 36, .external_lex_state = 6}, - [214] = {.lex_state = 39, .external_lex_state = 6}, - [215] = {.lex_state = 36, .external_lex_state = 7}, - [216] = {.lex_state = 36, .external_lex_state = 2}, - [217] = {.lex_state = 34, .external_lex_state = 2}, - [218] = {.lex_state = 36, .external_lex_state = 12}, - [219] = {.lex_state = 36, .external_lex_state = 21}, - [220] = {.lex_state = 36, .external_lex_state = 21}, - [221] = {.lex_state = 36, .external_lex_state = 8}, - [222] = {.lex_state = 8, .external_lex_state = 2}, - [223] = {.lex_state = 36, .external_lex_state = 2}, - [224] = {.lex_state = 36, .external_lex_state = 10}, - [225] = {.lex_state = 36, .external_lex_state = 10}, - [226] = {.lex_state = 36, .external_lex_state = 2}, - [227] = {.lex_state = 36, .external_lex_state = 10}, - [228] = {.lex_state = 36, .external_lex_state = 10}, - [229] = {.lex_state = 36, .external_lex_state = 10}, - [230] = {.lex_state = 36, .external_lex_state = 10}, - [231] = {.lex_state = 36, .external_lex_state = 10}, - [232] = {.lex_state = 36, .external_lex_state = 10}, - [233] = {.lex_state = 36, .external_lex_state = 10}, + [203] = {.lex_state = 36, .external_lex_state = 4}, + [204] = {.lex_state = 34, .external_lex_state = 5}, + [205] = {.lex_state = 34, .external_lex_state = 11}, + [206] = {.lex_state = 36, .external_lex_state = 10}, + [207] = {.lex_state = 38, .external_lex_state = 2}, + [208] = {.lex_state = 36, .external_lex_state = 3}, + [209] = {.lex_state = 11, .external_lex_state = 2}, + [210] = {.lex_state = 36, .external_lex_state = 14}, + [211] = {.lex_state = 36, .external_lex_state = 3}, + [212] = {.lex_state = 8, .external_lex_state = 19}, + [213] = {.lex_state = 36, .external_lex_state = 8}, + [214] = {.lex_state = 39, .external_lex_state = 8}, + [215] = {.lex_state = 8, .external_lex_state = 19}, + [216] = {.lex_state = 39, .external_lex_state = 3}, + [217] = {.lex_state = 36, .external_lex_state = 5}, + [218] = {.lex_state = 36, .external_lex_state = 19}, + [219] = {.lex_state = 36, .external_lex_state = 19}, + [220] = {.lex_state = 36, .external_lex_state = 20}, + [221] = {.lex_state = 36, .external_lex_state = 6}, + [222] = {.lex_state = 39, .external_lex_state = 6}, + [223] = {.lex_state = 34, .external_lex_state = 6}, + [224] = {.lex_state = 36, .external_lex_state = 8}, + [225] = {.lex_state = 36, .external_lex_state = 2}, + [226] = {.lex_state = 39, .external_lex_state = 2}, + [227] = {.lex_state = 36, .external_lex_state = 2}, + [228] = {.lex_state = 36, .external_lex_state = 20}, + [229] = {.lex_state = 36, .external_lex_state = 21}, + [230] = {.lex_state = 36, .external_lex_state = 21}, + [231] = {.lex_state = 34, .external_lex_state = 2}, + [232] = {.lex_state = 36, .external_lex_state = 11}, + [233] = {.lex_state = 8, .external_lex_state = 2}, [234] = {.lex_state = 36, .external_lex_state = 10}, [235] = {.lex_state = 36, .external_lex_state = 10}, [236] = {.lex_state = 36, .external_lex_state = 10}, [237] = {.lex_state = 36, .external_lex_state = 10}, - [238] = {.lex_state = 36, .external_lex_state = 10}, + [238] = {.lex_state = 36, .external_lex_state = 2}, [239] = {.lex_state = 36, .external_lex_state = 2}, [240] = {.lex_state = 36, .external_lex_state = 10}, [241] = {.lex_state = 36, .external_lex_state = 6}, @@ -4193,12 +4218,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [251] = {.lex_state = 36, .external_lex_state = 6}, [252] = {.lex_state = 36, .external_lex_state = 6}, [253] = {.lex_state = 36, .external_lex_state = 6}, - [254] = {.lex_state = 36, .external_lex_state = 2}, - [255] = {.lex_state = 36, .external_lex_state = 6}, - [256] = {.lex_state = 36, .external_lex_state = 2}, + [254] = {.lex_state = 36, .external_lex_state = 6}, + [255] = {.lex_state = 36, .external_lex_state = 2}, + [256] = {.lex_state = 36, .external_lex_state = 6}, [257] = {.lex_state = 36, .external_lex_state = 6}, - [258] = {.lex_state = 36, .external_lex_state = 6}, - [259] = {.lex_state = 36, .external_lex_state = 2}, + [258] = {.lex_state = 36, .external_lex_state = 2}, + [259] = {.lex_state = 36, .external_lex_state = 6}, [260] = {.lex_state = 36, .external_lex_state = 6}, [261] = {.lex_state = 36, .external_lex_state = 6}, [262] = {.lex_state = 36, .external_lex_state = 6}, @@ -4210,127 +4235,127 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [268] = {.lex_state = 36, .external_lex_state = 6}, [269] = {.lex_state = 36, .external_lex_state = 6}, [270] = {.lex_state = 36, .external_lex_state = 6}, - [271] = {.lex_state = 36, .external_lex_state = 6}, + [271] = {.lex_state = 36, .external_lex_state = 2}, [272] = {.lex_state = 36, .external_lex_state = 2}, [273] = {.lex_state = 36, .external_lex_state = 6}, - [274] = {.lex_state = 36, .external_lex_state = 2}, - [275] = {.lex_state = 36, .external_lex_state = 11}, + [274] = {.lex_state = 36, .external_lex_state = 10}, + [275] = {.lex_state = 36, .external_lex_state = 10}, [276] = {.lex_state = 36, .external_lex_state = 10}, - [277] = {.lex_state = 36, .external_lex_state = 10}, - [278] = {.lex_state = 36, .external_lex_state = 7}, - [279] = {.lex_state = 36, .external_lex_state = 7}, - [280] = {.lex_state = 36, .external_lex_state = 7}, + [277] = {.lex_state = 36, .external_lex_state = 8}, + [278] = {.lex_state = 36, .external_lex_state = 8}, + [279] = {.lex_state = 36, .external_lex_state = 8}, + [280] = {.lex_state = 36, .external_lex_state = 10}, [281] = {.lex_state = 36, .external_lex_state = 10}, [282] = {.lex_state = 36, .external_lex_state = 10}, - [283] = {.lex_state = 36, .external_lex_state = 10}, - [284] = {.lex_state = 36, .external_lex_state = 7}, - [285] = {.lex_state = 36, .external_lex_state = 7}, - [286] = {.lex_state = 36, .external_lex_state = 2}, - [287] = {.lex_state = 36, .external_lex_state = 10}, - [288] = {.lex_state = 36, .external_lex_state = 7}, - [289] = {.lex_state = 36, .external_lex_state = 7}, - [290] = {.lex_state = 36, .external_lex_state = 7}, - [291] = {.lex_state = 36, .external_lex_state = 7}, - [292] = {.lex_state = 36, .external_lex_state = 7}, - [293] = {.lex_state = 36, .external_lex_state = 7}, - [294] = {.lex_state = 36, .external_lex_state = 7}, + [283] = {.lex_state = 36, .external_lex_state = 8}, + [284] = {.lex_state = 36, .external_lex_state = 8}, + [285] = {.lex_state = 36, .external_lex_state = 2}, + [286] = {.lex_state = 36, .external_lex_state = 10}, + [287] = {.lex_state = 36, .external_lex_state = 8}, + [288] = {.lex_state = 36, .external_lex_state = 8}, + [289] = {.lex_state = 36, .external_lex_state = 8}, + [290] = {.lex_state = 36, .external_lex_state = 8}, + [291] = {.lex_state = 36, .external_lex_state = 8}, + [292] = {.lex_state = 36, .external_lex_state = 8}, + [293] = {.lex_state = 36, .external_lex_state = 8}, + [294] = {.lex_state = 36, .external_lex_state = 2}, [295] = {.lex_state = 36, .external_lex_state = 2}, [296] = {.lex_state = 36, .external_lex_state = 10}, - [297] = {.lex_state = 36, .external_lex_state = 2}, - [298] = {.lex_state = 36, .external_lex_state = 10}, - [299] = {.lex_state = 36, .external_lex_state = 7}, - [300] = {.lex_state = 36, .external_lex_state = 2}, - [301] = {.lex_state = 36, .external_lex_state = 7}, - [302] = {.lex_state = 36, .external_lex_state = 7}, - [303] = {.lex_state = 36, .external_lex_state = 2}, - [304] = {.lex_state = 36, .external_lex_state = 7}, - [305] = {.lex_state = 36, .external_lex_state = 7}, - [306] = {.lex_state = 36, .external_lex_state = 7}, - [307] = {.lex_state = 36, .external_lex_state = 7}, - [308] = {.lex_state = 36, .external_lex_state = 7}, - [309] = {.lex_state = 36, .external_lex_state = 7}, - [310] = {.lex_state = 36, .external_lex_state = 7}, - [311] = {.lex_state = 36, .external_lex_state = 7}, - [312] = {.lex_state = 36, .external_lex_state = 7}, - [313] = {.lex_state = 36, .external_lex_state = 7}, - [314] = {.lex_state = 36, .external_lex_state = 7}, - [315] = {.lex_state = 36, .external_lex_state = 7}, - [316] = {.lex_state = 36, .external_lex_state = 2}, - [317] = {.lex_state = 36, .external_lex_state = 7}, - [318] = {.lex_state = 36, .external_lex_state = 10}, + [297] = {.lex_state = 36, .external_lex_state = 8}, + [298] = {.lex_state = 36, .external_lex_state = 2}, + [299] = {.lex_state = 36, .external_lex_state = 8}, + [300] = {.lex_state = 36, .external_lex_state = 8}, + [301] = {.lex_state = 36, .external_lex_state = 2}, + [302] = {.lex_state = 36, .external_lex_state = 8}, + [303] = {.lex_state = 36, .external_lex_state = 8}, + [304] = {.lex_state = 36, .external_lex_state = 8}, + [305] = {.lex_state = 36, .external_lex_state = 8}, + [306] = {.lex_state = 36, .external_lex_state = 8}, + [307] = {.lex_state = 36, .external_lex_state = 8}, + [308] = {.lex_state = 36, .external_lex_state = 8}, + [309] = {.lex_state = 36, .external_lex_state = 8}, + [310] = {.lex_state = 36, .external_lex_state = 8}, + [311] = {.lex_state = 36, .external_lex_state = 8}, + [312] = {.lex_state = 36, .external_lex_state = 8}, + [313] = {.lex_state = 36, .external_lex_state = 8}, + [314] = {.lex_state = 36, .external_lex_state = 2}, + [315] = {.lex_state = 36, .external_lex_state = 2}, + [316] = {.lex_state = 36, .external_lex_state = 8}, + [317] = {.lex_state = 36, .external_lex_state = 10}, + [318] = {.lex_state = 36, .external_lex_state = 2}, [319] = {.lex_state = 36, .external_lex_state = 10}, [320] = {.lex_state = 36, .external_lex_state = 10}, - [321] = {.lex_state = 36, .external_lex_state = 10}, - [322] = {.lex_state = 36, .external_lex_state = 8}, - [323] = {.lex_state = 36, .external_lex_state = 8}, - [324] = {.lex_state = 36, .external_lex_state = 8}, - [325] = {.lex_state = 36, .external_lex_state = 2}, - [326] = {.lex_state = 36, .external_lex_state = 11}, - [327] = {.lex_state = 36, .external_lex_state = 2}, - [328] = {.lex_state = 36, .external_lex_state = 8}, - [329] = {.lex_state = 36, .external_lex_state = 8}, - [330] = {.lex_state = 36, .external_lex_state = 2}, - [331] = {.lex_state = 36, .external_lex_state = 2}, - [332] = {.lex_state = 36, .external_lex_state = 8}, - [333] = {.lex_state = 36, .external_lex_state = 8}, - [334] = {.lex_state = 36, .external_lex_state = 8}, - [335] = {.lex_state = 36, .external_lex_state = 8}, - [336] = {.lex_state = 36, .external_lex_state = 8}, - [337] = {.lex_state = 36, .external_lex_state = 8}, - [338] = {.lex_state = 36, .external_lex_state = 8}, - [339] = {.lex_state = 36, .external_lex_state = 2}, - [340] = {.lex_state = 36, .external_lex_state = 11}, - [341] = {.lex_state = 36, .external_lex_state = 11}, - [342] = {.lex_state = 36, .external_lex_state = 11}, - [343] = {.lex_state = 36, .external_lex_state = 8}, - [344] = {.lex_state = 36, .external_lex_state = 2}, - [345] = {.lex_state = 36, .external_lex_state = 8}, - [346] = {.lex_state = 36, .external_lex_state = 8}, - [347] = {.lex_state = 39, .external_lex_state = 2}, - [348] = {.lex_state = 36, .external_lex_state = 8}, - [349] = {.lex_state = 36, .external_lex_state = 8}, - [350] = {.lex_state = 36, .external_lex_state = 8}, - [351] = {.lex_state = 36, .external_lex_state = 8}, - [352] = {.lex_state = 36, .external_lex_state = 8}, - [353] = {.lex_state = 36, .external_lex_state = 8}, - [354] = {.lex_state = 36, .external_lex_state = 2}, - [355] = {.lex_state = 36, .external_lex_state = 8}, - [356] = {.lex_state = 36, .external_lex_state = 8}, - [357] = {.lex_state = 36, .external_lex_state = 8}, - [358] = {.lex_state = 36, .external_lex_state = 8}, - [359] = {.lex_state = 36, .external_lex_state = 8}, - [360] = {.lex_state = 34, .external_lex_state = 2}, - [361] = {.lex_state = 36, .external_lex_state = 8}, - [362] = {.lex_state = 36, .external_lex_state = 11}, - [363] = {.lex_state = 36, .external_lex_state = 11}, - [364] = {.lex_state = 36, .external_lex_state = 11}, - [365] = {.lex_state = 36, .external_lex_state = 11}, + [321] = {.lex_state = 36, .external_lex_state = 5}, + [322] = {.lex_state = 36, .external_lex_state = 5}, + [323] = {.lex_state = 36, .external_lex_state = 5}, + [324] = {.lex_state = 36, .external_lex_state = 10}, + [325] = {.lex_state = 36, .external_lex_state = 10}, + [326] = {.lex_state = 36, .external_lex_state = 10}, + [327] = {.lex_state = 36, .external_lex_state = 5}, + [328] = {.lex_state = 36, .external_lex_state = 5}, + [329] = {.lex_state = 36, .external_lex_state = 2}, + [330] = {.lex_state = 36, .external_lex_state = 10}, + [331] = {.lex_state = 36, .external_lex_state = 5}, + [332] = {.lex_state = 36, .external_lex_state = 5}, + [333] = {.lex_state = 36, .external_lex_state = 5}, + [334] = {.lex_state = 36, .external_lex_state = 5}, + [335] = {.lex_state = 36, .external_lex_state = 5}, + [336] = {.lex_state = 36, .external_lex_state = 5}, + [337] = {.lex_state = 36, .external_lex_state = 5}, + [338] = {.lex_state = 36, .external_lex_state = 10}, + [339] = {.lex_state = 36, .external_lex_state = 10}, + [340] = {.lex_state = 36, .external_lex_state = 2}, + [341] = {.lex_state = 36, .external_lex_state = 5}, + [342] = {.lex_state = 36, .external_lex_state = 2}, + [343] = {.lex_state = 36, .external_lex_state = 5}, + [344] = {.lex_state = 36, .external_lex_state = 5}, + [345] = {.lex_state = 36, .external_lex_state = 2}, + [346] = {.lex_state = 36, .external_lex_state = 5}, + [347] = {.lex_state = 36, .external_lex_state = 5}, + [348] = {.lex_state = 36, .external_lex_state = 5}, + [349] = {.lex_state = 36, .external_lex_state = 5}, + [350] = {.lex_state = 36, .external_lex_state = 5}, + [351] = {.lex_state = 36, .external_lex_state = 5}, + [352] = {.lex_state = 36, .external_lex_state = 5}, + [353] = {.lex_state = 36, .external_lex_state = 5}, + [354] = {.lex_state = 36, .external_lex_state = 5}, + [355] = {.lex_state = 36, .external_lex_state = 5}, + [356] = {.lex_state = 36, .external_lex_state = 5}, + [357] = {.lex_state = 36, .external_lex_state = 5}, + [358] = {.lex_state = 36, .external_lex_state = 2}, + [359] = {.lex_state = 36, .external_lex_state = 2}, + [360] = {.lex_state = 36, .external_lex_state = 5}, + [361] = {.lex_state = 36, .external_lex_state = 10}, + [362] = {.lex_state = 36, .external_lex_state = 10}, + [363] = {.lex_state = 36, .external_lex_state = 10}, + [364] = {.lex_state = 36, .external_lex_state = 10}, + [365] = {.lex_state = 36, .external_lex_state = 4}, [366] = {.lex_state = 36, .external_lex_state = 4}, [367] = {.lex_state = 36, .external_lex_state = 4}, - [368] = {.lex_state = 36, .external_lex_state = 4}, - [369] = {.lex_state = 36, .external_lex_state = 11}, + [368] = {.lex_state = 36, .external_lex_state = 10}, + [369] = {.lex_state = 36, .external_lex_state = 2}, [370] = {.lex_state = 36, .external_lex_state = 11}, - [371] = {.lex_state = 36, .external_lex_state = 2}, + [371] = {.lex_state = 36, .external_lex_state = 4}, [372] = {.lex_state = 36, .external_lex_state = 4}, - [373] = {.lex_state = 36, .external_lex_state = 4}, - [374] = {.lex_state = 36, .external_lex_state = 12}, - [375] = {.lex_state = 36, .external_lex_state = 11}, + [373] = {.lex_state = 36, .external_lex_state = 2}, + [374] = {.lex_state = 36, .external_lex_state = 2}, + [375] = {.lex_state = 36, .external_lex_state = 4}, [376] = {.lex_state = 36, .external_lex_state = 4}, [377] = {.lex_state = 36, .external_lex_state = 4}, [378] = {.lex_state = 36, .external_lex_state = 4}, [379] = {.lex_state = 36, .external_lex_state = 4}, [380] = {.lex_state = 36, .external_lex_state = 4}, [381] = {.lex_state = 36, .external_lex_state = 4}, - [382] = {.lex_state = 36, .external_lex_state = 4}, - [383] = {.lex_state = 36, .external_lex_state = 12}, - [384] = {.lex_state = 36, .external_lex_state = 11}, - [385] = {.lex_state = 36, .external_lex_state = 11}, - [386] = {.lex_state = 36, .external_lex_state = 9}, + [382] = {.lex_state = 36, .external_lex_state = 2}, + [383] = {.lex_state = 36, .external_lex_state = 2}, + [384] = {.lex_state = 36, .external_lex_state = 2}, + [385] = {.lex_state = 36, .external_lex_state = 4}, + [386] = {.lex_state = 36, .external_lex_state = 2}, [387] = {.lex_state = 36, .external_lex_state = 4}, - [388] = {.lex_state = 36, .external_lex_state = 9}, - [389] = {.lex_state = 36, .external_lex_state = 4}, + [388] = {.lex_state = 36, .external_lex_state = 4}, + [389] = {.lex_state = 36, .external_lex_state = 2}, [390] = {.lex_state = 36, .external_lex_state = 4}, - [391] = {.lex_state = 36, .external_lex_state = 9}, + [391] = {.lex_state = 36, .external_lex_state = 4}, [392] = {.lex_state = 36, .external_lex_state = 4}, [393] = {.lex_state = 36, .external_lex_state = 4}, [394] = {.lex_state = 36, .external_lex_state = 4}, @@ -4341,84 +4366,84 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [399] = {.lex_state = 36, .external_lex_state = 4}, [400] = {.lex_state = 36, .external_lex_state = 4}, [401] = {.lex_state = 36, .external_lex_state = 4}, - [402] = {.lex_state = 36, .external_lex_state = 4}, - [403] = {.lex_state = 36, .external_lex_state = 4}, - [404] = {.lex_state = 36, .external_lex_state = 9}, - [405] = {.lex_state = 36, .external_lex_state = 4}, + [402] = {.lex_state = 39, .external_lex_state = 2}, + [403] = {.lex_state = 34, .external_lex_state = 2}, + [404] = {.lex_state = 36, .external_lex_state = 4}, + [405] = {.lex_state = 36, .external_lex_state = 11}, [406] = {.lex_state = 36, .external_lex_state = 11}, - [407] = {.lex_state = 36, .external_lex_state = 9}, + [407] = {.lex_state = 36, .external_lex_state = 11}, [408] = {.lex_state = 36, .external_lex_state = 11}, - [409] = {.lex_state = 36, .external_lex_state = 9}, - [410] = {.lex_state = 36, .external_lex_state = 5}, - [411] = {.lex_state = 36, .external_lex_state = 5}, - [412] = {.lex_state = 36, .external_lex_state = 5}, + [409] = {.lex_state = 36, .external_lex_state = 7}, + [410] = {.lex_state = 36, .external_lex_state = 7}, + [411] = {.lex_state = 36, .external_lex_state = 7}, + [412] = {.lex_state = 36, .external_lex_state = 11}, [413] = {.lex_state = 36, .external_lex_state = 11}, - [414] = {.lex_state = 36, .external_lex_state = 9}, - [415] = {.lex_state = 36, .external_lex_state = 11}, - [416] = {.lex_state = 36, .external_lex_state = 5}, - [417] = {.lex_state = 36, .external_lex_state = 5}, - [418] = {.lex_state = 36, .external_lex_state = 9}, - [419] = {.lex_state = 36, .external_lex_state = 11}, - [420] = {.lex_state = 36, .external_lex_state = 5}, - [421] = {.lex_state = 36, .external_lex_state = 5}, - [422] = {.lex_state = 36, .external_lex_state = 5}, - [423] = {.lex_state = 36, .external_lex_state = 5}, - [424] = {.lex_state = 36, .external_lex_state = 5}, - [425] = {.lex_state = 36, .external_lex_state = 5}, - [426] = {.lex_state = 36, .external_lex_state = 5}, - [427] = {.lex_state = 36, .external_lex_state = 9}, + [414] = {.lex_state = 36, .external_lex_state = 11}, + [415] = {.lex_state = 36, .external_lex_state = 7}, + [416] = {.lex_state = 36, .external_lex_state = 7}, + [417] = {.lex_state = 36, .external_lex_state = 19}, + [418] = {.lex_state = 36, .external_lex_state = 11}, + [419] = {.lex_state = 36, .external_lex_state = 7}, + [420] = {.lex_state = 36, .external_lex_state = 7}, + [421] = {.lex_state = 36, .external_lex_state = 7}, + [422] = {.lex_state = 36, .external_lex_state = 7}, + [423] = {.lex_state = 36, .external_lex_state = 7}, + [424] = {.lex_state = 36, .external_lex_state = 7}, + [425] = {.lex_state = 36, .external_lex_state = 7}, + [426] = {.lex_state = 36, .external_lex_state = 11}, + [427] = {.lex_state = 36, .external_lex_state = 11}, [428] = {.lex_state = 36, .external_lex_state = 11}, - [429] = {.lex_state = 36, .external_lex_state = 11}, - [430] = {.lex_state = 36, .external_lex_state = 11}, - [431] = {.lex_state = 36, .external_lex_state = 5}, - [432] = {.lex_state = 36, .external_lex_state = 9}, - [433] = {.lex_state = 36, .external_lex_state = 5}, - [434] = {.lex_state = 36, .external_lex_state = 5}, - [435] = {.lex_state = 36, .external_lex_state = 9}, - [436] = {.lex_state = 36, .external_lex_state = 5}, - [437] = {.lex_state = 36, .external_lex_state = 5}, - [438] = {.lex_state = 36, .external_lex_state = 5}, - [439] = {.lex_state = 36, .external_lex_state = 5}, - [440] = {.lex_state = 36, .external_lex_state = 5}, - [441] = {.lex_state = 36, .external_lex_state = 5}, - [442] = {.lex_state = 36, .external_lex_state = 5}, - [443] = {.lex_state = 36, .external_lex_state = 5}, - [444] = {.lex_state = 36, .external_lex_state = 5}, - [445] = {.lex_state = 36, .external_lex_state = 5}, - [446] = {.lex_state = 36, .external_lex_state = 5}, - [447] = {.lex_state = 36, .external_lex_state = 5}, - [448] = {.lex_state = 36, .external_lex_state = 9}, - [449] = {.lex_state = 36, .external_lex_state = 5}, - [450] = {.lex_state = 36, .external_lex_state = 11}, + [429] = {.lex_state = 36, .external_lex_state = 7}, + [430] = {.lex_state = 36, .external_lex_state = 19}, + [431] = {.lex_state = 36, .external_lex_state = 7}, + [432] = {.lex_state = 36, .external_lex_state = 7}, + [433] = {.lex_state = 36, .external_lex_state = 9}, + [434] = {.lex_state = 36, .external_lex_state = 7}, + [435] = {.lex_state = 36, .external_lex_state = 7}, + [436] = {.lex_state = 36, .external_lex_state = 7}, + [437] = {.lex_state = 36, .external_lex_state = 7}, + [438] = {.lex_state = 36, .external_lex_state = 7}, + [439] = {.lex_state = 36, .external_lex_state = 7}, + [440] = {.lex_state = 36, .external_lex_state = 7}, + [441] = {.lex_state = 36, .external_lex_state = 7}, + [442] = {.lex_state = 36, .external_lex_state = 7}, + [443] = {.lex_state = 36, .external_lex_state = 7}, + [444] = {.lex_state = 36, .external_lex_state = 7}, + [445] = {.lex_state = 36, .external_lex_state = 7}, + [446] = {.lex_state = 36, .external_lex_state = 9}, + [447] = {.lex_state = 36, .external_lex_state = 9}, + [448] = {.lex_state = 36, .external_lex_state = 7}, + [449] = {.lex_state = 36, .external_lex_state = 11}, + [450] = {.lex_state = 36, .external_lex_state = 9}, [451] = {.lex_state = 36, .external_lex_state = 11}, [452] = {.lex_state = 36, .external_lex_state = 9}, - [453] = {.lex_state = 36, .external_lex_state = 11}, + [453] = {.lex_state = 8, .external_lex_state = 2}, [454] = {.lex_state = 8, .external_lex_state = 2}, [455] = {.lex_state = 8, .external_lex_state = 2}, - [456] = {.lex_state = 8, .external_lex_state = 2}, + [456] = {.lex_state = 36, .external_lex_state = 11}, [457] = {.lex_state = 36, .external_lex_state = 9}, - [458] = {.lex_state = 36, .external_lex_state = 2}, - [459] = {.lex_state = 36, .external_lex_state = 11}, + [458] = {.lex_state = 36, .external_lex_state = 11}, + [459] = {.lex_state = 8, .external_lex_state = 2}, [460] = {.lex_state = 8, .external_lex_state = 2}, - [461] = {.lex_state = 8, .external_lex_state = 2}, - [462] = {.lex_state = 36, .external_lex_state = 9}, - [463] = {.lex_state = 36, .external_lex_state = 11}, - [464] = {.lex_state = 36, .external_lex_state = 10}, + [461] = {.lex_state = 36, .external_lex_state = 9}, + [462] = {.lex_state = 36, .external_lex_state = 11}, + [463] = {.lex_state = 8, .external_lex_state = 2}, + [464] = {.lex_state = 8, .external_lex_state = 2}, [465] = {.lex_state = 8, .external_lex_state = 2}, [466] = {.lex_state = 8, .external_lex_state = 2}, [467] = {.lex_state = 8, .external_lex_state = 2}, [468] = {.lex_state = 8, .external_lex_state = 2}, [469] = {.lex_state = 8, .external_lex_state = 2}, - [470] = {.lex_state = 8, .external_lex_state = 2}, - [471] = {.lex_state = 36, .external_lex_state = 9}, + [470] = {.lex_state = 36, .external_lex_state = 11}, + [471] = {.lex_state = 36, .external_lex_state = 11}, [472] = {.lex_state = 36, .external_lex_state = 11}, - [473] = {.lex_state = 36, .external_lex_state = 2}, - [474] = {.lex_state = 36, .external_lex_state = 2}, + [473] = {.lex_state = 8, .external_lex_state = 2}, + [474] = {.lex_state = 36, .external_lex_state = 9}, [475] = {.lex_state = 8, .external_lex_state = 2}, - [476] = {.lex_state = 36, .external_lex_state = 9}, - [477] = {.lex_state = 8, .external_lex_state = 2}, + [476] = {.lex_state = 36, .external_lex_state = 10}, + [477] = {.lex_state = 36, .external_lex_state = 9}, [478] = {.lex_state = 8, .external_lex_state = 2}, - [479] = {.lex_state = 36, .external_lex_state = 9}, + [479] = {.lex_state = 8, .external_lex_state = 2}, [480] = {.lex_state = 8, .external_lex_state = 2}, [481] = {.lex_state = 8, .external_lex_state = 2}, [482] = {.lex_state = 8, .external_lex_state = 2}, @@ -4429,39 +4454,39 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [487] = {.lex_state = 8, .external_lex_state = 2}, [488] = {.lex_state = 8, .external_lex_state = 2}, [489] = {.lex_state = 8, .external_lex_state = 2}, - [490] = {.lex_state = 8, .external_lex_state = 2}, - [491] = {.lex_state = 8, .external_lex_state = 2}, - [492] = {.lex_state = 36, .external_lex_state = 9}, - [493] = {.lex_state = 8, .external_lex_state = 2}, - [494] = {.lex_state = 36, .external_lex_state = 9}, - [495] = {.lex_state = 36, .external_lex_state = 9}, - [496] = {.lex_state = 36, .external_lex_state = 2}, - [497] = {.lex_state = 36, .external_lex_state = 9}, + [490] = {.lex_state = 36, .external_lex_state = 9}, + [491] = {.lex_state = 36, .external_lex_state = 9}, + [492] = {.lex_state = 8, .external_lex_state = 2}, + [493] = {.lex_state = 36, .external_lex_state = 11}, + [494] = {.lex_state = 36, .external_lex_state = 11}, + [495] = {.lex_state = 36, .external_lex_state = 11}, + [496] = {.lex_state = 36, .external_lex_state = 9}, + [497] = {.lex_state = 36, .external_lex_state = 3}, [498] = {.lex_state = 36, .external_lex_state = 3}, [499] = {.lex_state = 36, .external_lex_state = 3}, - [500] = {.lex_state = 36, .external_lex_state = 3}, + [500] = {.lex_state = 36, .external_lex_state = 11}, [501] = {.lex_state = 36, .external_lex_state = 9}, - [502] = {.lex_state = 36, .external_lex_state = 2}, + [502] = {.lex_state = 36, .external_lex_state = 3}, [503] = {.lex_state = 36, .external_lex_state = 3}, - [504] = {.lex_state = 36, .external_lex_state = 3}, - [505] = {.lex_state = 36, .external_lex_state = 9}, - [506] = {.lex_state = 36, .external_lex_state = 9}, + [504] = {.lex_state = 36, .external_lex_state = 9}, + [505] = {.lex_state = 36, .external_lex_state = 2}, + [506] = {.lex_state = 36, .external_lex_state = 3}, [507] = {.lex_state = 36, .external_lex_state = 3}, [508] = {.lex_state = 36, .external_lex_state = 3}, [509] = {.lex_state = 36, .external_lex_state = 3}, [510] = {.lex_state = 36, .external_lex_state = 3}, [511] = {.lex_state = 36, .external_lex_state = 3}, [512] = {.lex_state = 36, .external_lex_state = 3}, - [513] = {.lex_state = 36, .external_lex_state = 3}, - [514] = {.lex_state = 36, .external_lex_state = 2}, - [515] = {.lex_state = 36, .external_lex_state = 9}, - [516] = {.lex_state = 36, .external_lex_state = 9}, + [513] = {.lex_state = 36, .external_lex_state = 11}, + [514] = {.lex_state = 36, .external_lex_state = 11}, + [515] = {.lex_state = 36, .external_lex_state = 11}, + [516] = {.lex_state = 36, .external_lex_state = 3}, [517] = {.lex_state = 36, .external_lex_state = 9}, [518] = {.lex_state = 36, .external_lex_state = 3}, - [519] = {.lex_state = 36, .external_lex_state = 2}, - [520] = {.lex_state = 36, .external_lex_state = 3}, + [519] = {.lex_state = 36, .external_lex_state = 3}, + [520] = {.lex_state = 36, .external_lex_state = 9}, [521] = {.lex_state = 36, .external_lex_state = 3}, - [522] = {.lex_state = 36, .external_lex_state = 2}, + [522] = {.lex_state = 36, .external_lex_state = 3}, [523] = {.lex_state = 36, .external_lex_state = 3}, [524] = {.lex_state = 36, .external_lex_state = 3}, [525] = {.lex_state = 36, .external_lex_state = 3}, @@ -4472,78 +4497,78 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [530] = {.lex_state = 36, .external_lex_state = 3}, [531] = {.lex_state = 36, .external_lex_state = 3}, [532] = {.lex_state = 36, .external_lex_state = 3}, - [533] = {.lex_state = 36, .external_lex_state = 3}, - [534] = {.lex_state = 36, .external_lex_state = 3}, - [535] = {.lex_state = 36, .external_lex_state = 2}, - [536] = {.lex_state = 36, .external_lex_state = 3}, - [537] = {.lex_state = 36, .external_lex_state = 2}, - [538] = {.lex_state = 32, .external_lex_state = 11}, - [539] = {.lex_state = 32, .external_lex_state = 3}, - [540] = {.lex_state = 32, .external_lex_state = 3}, - [541] = {.lex_state = 32, .external_lex_state = 10}, - [542] = {.lex_state = 32, .external_lex_state = 10}, - [543] = {.lex_state = 32, .external_lex_state = 6}, - [544] = {.lex_state = 32, .external_lex_state = 3}, - [545] = {.lex_state = 32, .external_lex_state = 2}, - [546] = {.lex_state = 32, .external_lex_state = 3}, - [547] = {.lex_state = 32, .external_lex_state = 9}, - [548] = {.lex_state = 32, .external_lex_state = 6}, - [549] = {.lex_state = 32, .external_lex_state = 6}, - [550] = {.lex_state = 32, .external_lex_state = 2}, - [551] = {.lex_state = 32, .external_lex_state = 6}, + [533] = {.lex_state = 36, .external_lex_state = 2}, + [534] = {.lex_state = 36, .external_lex_state = 9}, + [535] = {.lex_state = 36, .external_lex_state = 3}, + [536] = {.lex_state = 36, .external_lex_state = 9}, + [537] = {.lex_state = 36, .external_lex_state = 9}, + [538] = {.lex_state = 36, .external_lex_state = 9}, + [539] = {.lex_state = 36, .external_lex_state = 9}, + [540] = {.lex_state = 36, .external_lex_state = 9}, + [541] = {.lex_state = 36, .external_lex_state = 9}, + [542] = {.lex_state = 36, .external_lex_state = 9}, + [543] = {.lex_state = 36, .external_lex_state = 2}, + [544] = {.lex_state = 36, .external_lex_state = 9}, + [545] = {.lex_state = 36, .external_lex_state = 9}, + [546] = {.lex_state = 36, .external_lex_state = 9}, + [547] = {.lex_state = 36, .external_lex_state = 9}, + [548] = {.lex_state = 32, .external_lex_state = 5}, + [549] = {.lex_state = 36, .external_lex_state = 2}, + [550] = {.lex_state = 32, .external_lex_state = 10}, + [551] = {.lex_state = 32, .external_lex_state = 10}, [552] = {.lex_state = 32, .external_lex_state = 6}, - [553] = {.lex_state = 1, .external_lex_state = 2}, - [554] = {.lex_state = 1, .external_lex_state = 2}, - [555] = {.lex_state = 1, .external_lex_state = 2}, - [556] = {.lex_state = 32, .external_lex_state = 9}, - [557] = {.lex_state = 32, .external_lex_state = 10}, - [558] = {.lex_state = 32, .external_lex_state = 10}, - [559] = {.lex_state = 1, .external_lex_state = 2}, - [560] = {.lex_state = 32, .external_lex_state = 9}, - [561] = {.lex_state = 1, .external_lex_state = 2}, - [562] = {.lex_state = 32, .external_lex_state = 7}, - [563] = {.lex_state = 32, .external_lex_state = 9}, - [564] = {.lex_state = 32, .external_lex_state = 11}, - [565] = {.lex_state = 32, .external_lex_state = 5}, - [566] = {.lex_state = 32, .external_lex_state = 5}, - [567] = {.lex_state = 32, .external_lex_state = 5}, - [568] = {.lex_state = 32, .external_lex_state = 5}, - [569] = {.lex_state = 32, .external_lex_state = 5}, - [570] = {.lex_state = 32, .external_lex_state = 11}, + [553] = {.lex_state = 32, .external_lex_state = 6}, + [554] = {.lex_state = 32, .external_lex_state = 3}, + [555] = {.lex_state = 32, .external_lex_state = 3}, + [556] = {.lex_state = 32, .external_lex_state = 6}, + [557] = {.lex_state = 32, .external_lex_state = 3}, + [558] = {.lex_state = 32, .external_lex_state = 9}, + [559] = {.lex_state = 32, .external_lex_state = 3}, + [560] = {.lex_state = 32, .external_lex_state = 3}, + [561] = {.lex_state = 32, .external_lex_state = 9}, + [562] = {.lex_state = 32, .external_lex_state = 2}, + [563] = {.lex_state = 32, .external_lex_state = 11}, + [564] = {.lex_state = 1, .external_lex_state = 2}, + [565] = {.lex_state = 1, .external_lex_state = 2}, + [566] = {.lex_state = 1, .external_lex_state = 2}, + [567] = {.lex_state = 1, .external_lex_state = 2}, + [568] = {.lex_state = 1, .external_lex_state = 2}, + [569] = {.lex_state = 32, .external_lex_state = 11}, + [570] = {.lex_state = 32, .external_lex_state = 10}, [571] = {.lex_state = 32, .external_lex_state = 11}, - [572] = {.lex_state = 32, .external_lex_state = 10}, - [573] = {.lex_state = 32, .external_lex_state = 4}, - [574] = {.lex_state = 32, .external_lex_state = 4}, - [575] = {.lex_state = 32, .external_lex_state = 4}, - [576] = {.lex_state = 32, .external_lex_state = 9}, - [577] = {.lex_state = 32, .external_lex_state = 11}, - [578] = {.lex_state = 32, .external_lex_state = 4}, - [579] = {.lex_state = 32, .external_lex_state = 4}, - [580] = {.lex_state = 32, .external_lex_state = 10}, - [581] = {.lex_state = 32, .external_lex_state = 8}, + [572] = {.lex_state = 32, .external_lex_state = 7}, + [573] = {.lex_state = 32, .external_lex_state = 7}, + [574] = {.lex_state = 32, .external_lex_state = 9}, + [575] = {.lex_state = 32, .external_lex_state = 9}, + [576] = {.lex_state = 32, .external_lex_state = 7}, + [577] = {.lex_state = 32, .external_lex_state = 7}, + [578] = {.lex_state = 32, .external_lex_state = 7}, + [579] = {.lex_state = 32, .external_lex_state = 6}, + [580] = {.lex_state = 32, .external_lex_state = 4}, + [581] = {.lex_state = 36, .external_lex_state = 2}, [582] = {.lex_state = 36, .external_lex_state = 2}, [583] = {.lex_state = 36, .external_lex_state = 2}, - [584] = {.lex_state = 36, .external_lex_state = 2}, - [585] = {.lex_state = 32, .external_lex_state = 7}, + [584] = {.lex_state = 32, .external_lex_state = 2}, + [585] = {.lex_state = 36, .external_lex_state = 2}, [586] = {.lex_state = 36, .external_lex_state = 2}, - [587] = {.lex_state = 36, .external_lex_state = 2}, - [588] = {.lex_state = 32, .external_lex_state = 10}, - [589] = {.lex_state = 32, .external_lex_state = 8}, + [587] = {.lex_state = 32, .external_lex_state = 6}, + [588] = {.lex_state = 32, .external_lex_state = 4}, + [589] = {.lex_state = 36, .external_lex_state = 2}, [590] = {.lex_state = 36, .external_lex_state = 2}, [591] = {.lex_state = 36, .external_lex_state = 2}, - [592] = {.lex_state = 36, .external_lex_state = 2}, + [592] = {.lex_state = 32, .external_lex_state = 2}, [593] = {.lex_state = 36, .external_lex_state = 2}, [594] = {.lex_state = 36, .external_lex_state = 2}, - [595] = {.lex_state = 32, .external_lex_state = 7}, - [596] = {.lex_state = 36, .external_lex_state = 2}, - [597] = {.lex_state = 32, .external_lex_state = 2}, - [598] = {.lex_state = 32, .external_lex_state = 8}, - [599] = {.lex_state = 32, .external_lex_state = 8}, + [595] = {.lex_state = 36, .external_lex_state = 2}, + [596] = {.lex_state = 32, .external_lex_state = 4}, + [597] = {.lex_state = 32, .external_lex_state = 8}, + [598] = {.lex_state = 36, .external_lex_state = 2}, + [599] = {.lex_state = 32, .external_lex_state = 10}, [600] = {.lex_state = 36, .external_lex_state = 2}, - [601] = {.lex_state = 32, .external_lex_state = 7}, - [602] = {.lex_state = 36, .external_lex_state = 2}, + [601] = {.lex_state = 36, .external_lex_state = 2}, + [602] = {.lex_state = 32, .external_lex_state = 10}, [603] = {.lex_state = 36, .external_lex_state = 2}, - [604] = {.lex_state = 32, .external_lex_state = 2}, + [604] = {.lex_state = 36, .external_lex_state = 2}, [605] = {.lex_state = 36, .external_lex_state = 2}, [606] = {.lex_state = 36, .external_lex_state = 2}, [607] = {.lex_state = 36, .external_lex_state = 2}, @@ -4551,34 +4576,34 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [609] = {.lex_state = 36, .external_lex_state = 2}, [610] = {.lex_state = 36, .external_lex_state = 2}, [611] = {.lex_state = 36, .external_lex_state = 2}, - [612] = {.lex_state = 36, .external_lex_state = 2}, + [612] = {.lex_state = 32, .external_lex_state = 11}, [613] = {.lex_state = 36, .external_lex_state = 2}, [614] = {.lex_state = 36, .external_lex_state = 2}, - [615] = {.lex_state = 36, .external_lex_state = 2}, - [616] = {.lex_state = 36, .external_lex_state = 2}, - [617] = {.lex_state = 32, .external_lex_state = 7}, - [618] = {.lex_state = 36, .external_lex_state = 2}, - [619] = {.lex_state = 32, .external_lex_state = 11}, - [620] = {.lex_state = 32, .external_lex_state = 11}, - [621] = {.lex_state = 32, .external_lex_state = 8}, - [622] = {.lex_state = 32, .external_lex_state = 2}, - [623] = {.lex_state = 32, .external_lex_state = 3}, - [624] = {.lex_state = 32, .external_lex_state = 2}, - [625] = {.lex_state = 32, .external_lex_state = 2}, - [626] = {.lex_state = 32, .external_lex_state = 2}, - [627] = {.lex_state = 32, .external_lex_state = 2}, + [615] = {.lex_state = 32, .external_lex_state = 8}, + [616] = {.lex_state = 32, .external_lex_state = 8}, + [617] = {.lex_state = 36, .external_lex_state = 2}, + [618] = {.lex_state = 32, .external_lex_state = 8}, + [619] = {.lex_state = 32, .external_lex_state = 8}, + [620] = {.lex_state = 32, .external_lex_state = 2}, + [621] = {.lex_state = 32, .external_lex_state = 10}, + [622] = {.lex_state = 32, .external_lex_state = 5}, + [623] = {.lex_state = 32, .external_lex_state = 11}, + [624] = {.lex_state = 32, .external_lex_state = 11}, + [625] = {.lex_state = 32, .external_lex_state = 5}, + [626] = {.lex_state = 32, .external_lex_state = 11}, + [627] = {.lex_state = 32, .external_lex_state = 4}, [628] = {.lex_state = 32, .external_lex_state = 2}, - [629] = {.lex_state = 5, .external_lex_state = 22}, - [630] = {.lex_state = 5, .external_lex_state = 22}, - [631] = {.lex_state = 5, .external_lex_state = 22}, - [632] = {.lex_state = 5, .external_lex_state = 22}, - [633] = {.lex_state = 5, .external_lex_state = 22}, - [634] = {.lex_state = 5, .external_lex_state = 22}, - [635] = {.lex_state = 5, .external_lex_state = 22}, - [636] = {.lex_state = 5, .external_lex_state = 22}, - [637] = {.lex_state = 5, .external_lex_state = 22}, - [638] = {.lex_state = 5, .external_lex_state = 22}, - [639] = {.lex_state = 5, .external_lex_state = 22}, + [629] = {.lex_state = 32, .external_lex_state = 10}, + [630] = {.lex_state = 32, .external_lex_state = 5}, + [631] = {.lex_state = 32, .external_lex_state = 5}, + [632] = {.lex_state = 36, .external_lex_state = 2}, + [633] = {.lex_state = 32, .external_lex_state = 9}, + [634] = {.lex_state = 32, .external_lex_state = 4}, + [635] = {.lex_state = 32, .external_lex_state = 2}, + [636] = {.lex_state = 32, .external_lex_state = 2}, + [637] = {.lex_state = 32, .external_lex_state = 2}, + [638] = {.lex_state = 32, .external_lex_state = 2}, + [639] = {.lex_state = 32, .external_lex_state = 2}, [640] = {.lex_state = 5, .external_lex_state = 22}, [641] = {.lex_state = 5, .external_lex_state = 22}, [642] = {.lex_state = 5, .external_lex_state = 22}, @@ -4602,92 +4627,92 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [660] = {.lex_state = 5, .external_lex_state = 22}, [661] = {.lex_state = 5, .external_lex_state = 22}, [662] = {.lex_state = 5, .external_lex_state = 22}, - [663] = {.lex_state = 5}, - [664] = {.lex_state = 5}, - [665] = {.lex_state = 5}, - [666] = {.lex_state = 5}, - [667] = {.lex_state = 5}, - [668] = {.lex_state = 5}, - [669] = {.lex_state = 5}, - [670] = {.lex_state = 5}, - [671] = {.lex_state = 5}, - [672] = {.lex_state = 5}, - [673] = {.lex_state = 5}, + [663] = {.lex_state = 5, .external_lex_state = 22}, + [664] = {.lex_state = 5, .external_lex_state = 22}, + [665] = {.lex_state = 5, .external_lex_state = 22}, + [666] = {.lex_state = 5, .external_lex_state = 22}, + [667] = {.lex_state = 5, .external_lex_state = 22}, + [668] = {.lex_state = 5, .external_lex_state = 22}, + [669] = {.lex_state = 5, .external_lex_state = 22}, + [670] = {.lex_state = 5, .external_lex_state = 22}, + [671] = {.lex_state = 5, .external_lex_state = 22}, + [672] = {.lex_state = 5, .external_lex_state = 22}, + [673] = {.lex_state = 5, .external_lex_state = 22}, [674] = {.lex_state = 5}, [675] = {.lex_state = 5}, [676] = {.lex_state = 5}, [677] = {.lex_state = 5}, [678] = {.lex_state = 5}, - [679] = {.lex_state = 7}, + [679] = {.lex_state = 5}, [680] = {.lex_state = 5}, [681] = {.lex_state = 5}, [682] = {.lex_state = 5}, - [683] = {.lex_state = 7}, + [683] = {.lex_state = 5}, [684] = {.lex_state = 5}, [685] = {.lex_state = 5}, [686] = {.lex_state = 5}, [687] = {.lex_state = 5}, [688] = {.lex_state = 5}, - [689] = {.lex_state = 7}, - [690] = {.lex_state = 7}, + [689] = {.lex_state = 5}, + [690] = {.lex_state = 5}, [691] = {.lex_state = 5}, - [692] = {.lex_state = 5}, + [692] = {.lex_state = 7}, [693] = {.lex_state = 5}, [694] = {.lex_state = 5}, - [695] = {.lex_state = 5}, - [696] = {.lex_state = 7}, - [697] = {.lex_state = 5}, + [695] = {.lex_state = 7}, + [696] = {.lex_state = 5}, + [697] = {.lex_state = 7}, [698] = {.lex_state = 5}, [699] = {.lex_state = 5}, [700] = {.lex_state = 5}, [701] = {.lex_state = 5}, [702] = {.lex_state = 5}, - [703] = {.lex_state = 5}, - [704] = {.lex_state = 7}, + [703] = {.lex_state = 7}, + [704] = {.lex_state = 5}, [705] = {.lex_state = 5}, - [706] = {.lex_state = 13}, + [706] = {.lex_state = 5}, [707] = {.lex_state = 5}, [708] = {.lex_state = 5}, - [709] = {.lex_state = 0, .external_lex_state = 23}, - [710] = {.lex_state = 0, .external_lex_state = 24}, - [711] = {.lex_state = 0, .external_lex_state = 25}, - [712] = {.lex_state = 0, .external_lex_state = 26}, - [713] = {.lex_state = 0, .external_lex_state = 27}, - [714] = {.lex_state = 0, .external_lex_state = 23}, - [715] = {.lex_state = 0, .external_lex_state = 23}, + [709] = {.lex_state = 7}, + [710] = {.lex_state = 5}, + [711] = {.lex_state = 5}, + [712] = {.lex_state = 5}, + [713] = {.lex_state = 5}, + [714] = {.lex_state = 5}, + [715] = {.lex_state = 7}, [716] = {.lex_state = 5}, - [717] = {.lex_state = 0, .external_lex_state = 28}, - [718] = {.lex_state = 0, .external_lex_state = 24}, - [719] = {.lex_state = 0, .external_lex_state = 29}, - [720] = {.lex_state = 0, .external_lex_state = 30}, - [721] = {.lex_state = 0, .external_lex_state = 31}, - [722] = {.lex_state = 0, .external_lex_state = 32}, - [723] = {.lex_state = 5}, - [724] = {.lex_state = 0, .external_lex_state = 33}, - [725] = {.lex_state = 5}, - [726] = {.lex_state = 0, .external_lex_state = 25}, - [727] = {.lex_state = 0, .external_lex_state = 26}, - [728] = {.lex_state = 5}, - [729] = {.lex_state = 5}, - [730] = {.lex_state = 5}, - [731] = {.lex_state = 0, .external_lex_state = 27}, - [732] = {.lex_state = 0, .external_lex_state = 23}, - [733] = {.lex_state = 0, .external_lex_state = 24}, - [734] = {.lex_state = 0, .external_lex_state = 29}, - [735] = {.lex_state = 0, .external_lex_state = 30}, + [717] = {.lex_state = 5}, + [718] = {.lex_state = 13}, + [719] = {.lex_state = 0, .external_lex_state = 23}, + [720] = {.lex_state = 5}, + [721] = {.lex_state = 0, .external_lex_state = 24}, + [722] = {.lex_state = 0, .external_lex_state = 23}, + [723] = {.lex_state = 0, .external_lex_state = 25}, + [724] = {.lex_state = 0, .external_lex_state = 26}, + [725] = {.lex_state = 0, .external_lex_state = 27}, + [726] = {.lex_state = 0, .external_lex_state = 28}, + [727] = {.lex_state = 0, .external_lex_state = 29}, + [728] = {.lex_state = 0, .external_lex_state = 30}, + [729] = {.lex_state = 0, .external_lex_state = 24}, + [730] = {.lex_state = 0, .external_lex_state = 23}, + [731] = {.lex_state = 0, .external_lex_state = 25}, + [732] = {.lex_state = 0, .external_lex_state = 26}, + [733] = {.lex_state = 0, .external_lex_state = 27}, + [734] = {.lex_state = 0, .external_lex_state = 28}, + [735] = {.lex_state = 0, .external_lex_state = 29}, [736] = {.lex_state = 0, .external_lex_state = 31}, - [737] = {.lex_state = 0, .external_lex_state = 32}, - [738] = {.lex_state = 0, .external_lex_state = 27}, - [739] = {.lex_state = 0, .external_lex_state = 33}, - [740] = {.lex_state = 0, .external_lex_state = 25}, - [741] = {.lex_state = 0, .external_lex_state = 26}, - [742] = {.lex_state = 5}, - [743] = {.lex_state = 0, .external_lex_state = 27}, - [744] = {.lex_state = 0, .external_lex_state = 23}, - [745] = {.lex_state = 0, .external_lex_state = 28}, - [746] = {.lex_state = 0, .external_lex_state = 23}, - [747] = {.lex_state = 0, .external_lex_state = 28}, - [748] = {.lex_state = 5}, + [737] = {.lex_state = 0, .external_lex_state = 30}, + [738] = {.lex_state = 0, .external_lex_state = 31}, + [739] = {.lex_state = 0, .external_lex_state = 32}, + [740] = {.lex_state = 0, .external_lex_state = 32}, + [741] = {.lex_state = 0, .external_lex_state = 24}, + [742] = {.lex_state = 0, .external_lex_state = 23}, + [743] = {.lex_state = 0, .external_lex_state = 33}, + [744] = {.lex_state = 5}, + [745] = {.lex_state = 5}, + [746] = {.lex_state = 5}, + [747] = {.lex_state = 0, .external_lex_state = 24}, + [748] = {.lex_state = 0, .external_lex_state = 23}, [749] = {.lex_state = 5}, [750] = {.lex_state = 5}, [751] = {.lex_state = 5}, @@ -4696,466 +4721,466 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [754] = {.lex_state = 5}, [755] = {.lex_state = 5}, [756] = {.lex_state = 5}, - [757] = {.lex_state = 0, .external_lex_state = 27}, - [758] = {.lex_state = 5}, - [759] = {.lex_state = 0, .external_lex_state = 27}, - [760] = {.lex_state = 0, .external_lex_state = 23}, - [761] = {.lex_state = 0, .external_lex_state = 24}, - [762] = {.lex_state = 0, .external_lex_state = 29}, - [763] = {.lex_state = 0, .external_lex_state = 30}, - [764] = {.lex_state = 0, .external_lex_state = 31}, - [765] = {.lex_state = 0, .external_lex_state = 32}, - [766] = {.lex_state = 5}, - [767] = {.lex_state = 0, .external_lex_state = 33}, - [768] = {.lex_state = 0, .external_lex_state = 25}, - [769] = {.lex_state = 0, .external_lex_state = 26}, - [770] = {.lex_state = 0, .external_lex_state = 24}, - [771] = {.lex_state = 0, .external_lex_state = 27}, - [772] = {.lex_state = 0, .external_lex_state = 23}, - [773] = {.lex_state = 0, .external_lex_state = 28}, - [774] = {.lex_state = 0, .external_lex_state = 29}, - [775] = {.lex_state = 0, .external_lex_state = 30}, - [776] = {.lex_state = 0, .external_lex_state = 31}, - [777] = {.lex_state = 0, .external_lex_state = 32}, + [757] = {.lex_state = 0, .external_lex_state = 24}, + [758] = {.lex_state = 0, .external_lex_state = 23}, + [759] = {.lex_state = 0, .external_lex_state = 25}, + [760] = {.lex_state = 0, .external_lex_state = 26}, + [761] = {.lex_state = 0, .external_lex_state = 27}, + [762] = {.lex_state = 0, .external_lex_state = 28}, + [763] = {.lex_state = 0, .external_lex_state = 29}, + [764] = {.lex_state = 5}, + [765] = {.lex_state = 0, .external_lex_state = 30}, + [766] = {.lex_state = 0, .external_lex_state = 31}, + [767] = {.lex_state = 0, .external_lex_state = 32}, + [768] = {.lex_state = 5}, + [769] = {.lex_state = 0, .external_lex_state = 24}, + [770] = {.lex_state = 0, .external_lex_state = 23}, + [771] = {.lex_state = 0, .external_lex_state = 33}, + [772] = {.lex_state = 0, .external_lex_state = 26}, + [773] = {.lex_state = 5}, + [774] = {.lex_state = 0, .external_lex_state = 33}, + [775] = {.lex_state = 0, .external_lex_state = 23}, + [776] = {.lex_state = 5}, + [777] = {.lex_state = 0, .external_lex_state = 25}, [778] = {.lex_state = 5}, - [779] = {.lex_state = 0, .external_lex_state = 33}, - [780] = {.lex_state = 5}, - [781] = {.lex_state = 0, .external_lex_state = 25}, - [782] = {.lex_state = 0, .external_lex_state = 26}, - [783] = {.lex_state = 0, .external_lex_state = 27}, - [784] = {.lex_state = 0, .external_lex_state = 23}, - [785] = {.lex_state = 0, .external_lex_state = 27}, - [786] = {.lex_state = 5}, - [787] = {.lex_state = 0, .external_lex_state = 32}, - [788] = {.lex_state = 5}, - [789] = {.lex_state = 0, .external_lex_state = 27}, - [790] = {.lex_state = 0, .external_lex_state = 23}, - [791] = {.lex_state = 0, .external_lex_state = 24}, - [792] = {.lex_state = 0, .external_lex_state = 29}, - [793] = {.lex_state = 0, .external_lex_state = 30}, - [794] = {.lex_state = 0, .external_lex_state = 31}, - [795] = {.lex_state = 0, .external_lex_state = 32}, - [796] = {.lex_state = 0, .external_lex_state = 28}, - [797] = {.lex_state = 0, .external_lex_state = 33}, - [798] = {.lex_state = 0, .external_lex_state = 25}, - [799] = {.lex_state = 0, .external_lex_state = 26}, - [800] = {.lex_state = 0, .external_lex_state = 31}, - [801] = {.lex_state = 0, .external_lex_state = 30}, - [802] = {.lex_state = 0, .external_lex_state = 29}, - [803] = {.lex_state = 5}, - [804] = {.lex_state = 0, .external_lex_state = 27}, - [805] = {.lex_state = 0, .external_lex_state = 23}, - [806] = {.lex_state = 0, .external_lex_state = 28}, + [779] = {.lex_state = 0, .external_lex_state = 26}, + [780] = {.lex_state = 0, .external_lex_state = 27}, + [781] = {.lex_state = 0, .external_lex_state = 28}, + [782] = {.lex_state = 0, .external_lex_state = 29}, + [783] = {.lex_state = 0, .external_lex_state = 30}, + [784] = {.lex_state = 0, .external_lex_state = 31}, + [785] = {.lex_state = 5}, + [786] = {.lex_state = 0, .external_lex_state = 32}, + [787] = {.lex_state = 5}, + [788] = {.lex_state = 0, .external_lex_state = 24}, + [789] = {.lex_state = 0, .external_lex_state = 23}, + [790] = {.lex_state = 0, .external_lex_state = 25}, + [791] = {.lex_state = 0, .external_lex_state = 26}, + [792] = {.lex_state = 0, .external_lex_state = 27}, + [793] = {.lex_state = 0, .external_lex_state = 28}, + [794] = {.lex_state = 0, .external_lex_state = 29}, + [795] = {.lex_state = 0, .external_lex_state = 24}, + [796] = {.lex_state = 0, .external_lex_state = 30}, + [797] = {.lex_state = 0, .external_lex_state = 31}, + [798] = {.lex_state = 0, .external_lex_state = 32}, + [799] = {.lex_state = 0, .external_lex_state = 23}, + [800] = {.lex_state = 0, .external_lex_state = 33}, + [801] = {.lex_state = 5}, + [802] = {.lex_state = 0, .external_lex_state = 24}, + [803] = {.lex_state = 0, .external_lex_state = 23}, + [804] = {.lex_state = 0, .external_lex_state = 33}, + [805] = {.lex_state = 0, .external_lex_state = 33}, + [806] = {.lex_state = 5}, [807] = {.lex_state = 0, .external_lex_state = 24}, [808] = {.lex_state = 5}, - [809] = {.lex_state = 0, .external_lex_state = 27}, - [810] = {.lex_state = 0, .external_lex_state = 23}, - [811] = {.lex_state = 0, .external_lex_state = 24}, - [812] = {.lex_state = 0, .external_lex_state = 29}, - [813] = {.lex_state = 5}, - [814] = {.lex_state = 0, .external_lex_state = 30}, - [815] = {.lex_state = 0, .external_lex_state = 33}, - [816] = {.lex_state = 0, .external_lex_state = 31}, - [817] = {.lex_state = 0, .external_lex_state = 28}, + [809] = {.lex_state = 5}, + [810] = {.lex_state = 0, .external_lex_state = 24}, + [811] = {.lex_state = 0, .external_lex_state = 23}, + [812] = {.lex_state = 0, .external_lex_state = 25}, + [813] = {.lex_state = 0, .external_lex_state = 26}, + [814] = {.lex_state = 0, .external_lex_state = 27}, + [815] = {.lex_state = 5}, + [816] = {.lex_state = 0, .external_lex_state = 29}, + [817] = {.lex_state = 0, .external_lex_state = 30}, [818] = {.lex_state = 0, .external_lex_state = 23}, - [819] = {.lex_state = 0, .external_lex_state = 27}, - [820] = {.lex_state = 0, .external_lex_state = 23}, - [821] = {.lex_state = 0, .external_lex_state = 32}, - [822] = {.lex_state = 0, .external_lex_state = 27}, - [823] = {.lex_state = 0, .external_lex_state = 23}, - [824] = {.lex_state = 0, .external_lex_state = 24}, - [825] = {.lex_state = 0, .external_lex_state = 29}, - [826] = {.lex_state = 0, .external_lex_state = 30}, - [827] = {.lex_state = 0, .external_lex_state = 31}, + [819] = {.lex_state = 0, .external_lex_state = 24}, + [820] = {.lex_state = 0, .external_lex_state = 31}, + [821] = {.lex_state = 0, .external_lex_state = 24}, + [822] = {.lex_state = 0, .external_lex_state = 23}, + [823] = {.lex_state = 0, .external_lex_state = 25}, + [824] = {.lex_state = 0, .external_lex_state = 26}, + [825] = {.lex_state = 0, .external_lex_state = 27}, + [826] = {.lex_state = 0, .external_lex_state = 28}, + [827] = {.lex_state = 0, .external_lex_state = 29}, [828] = {.lex_state = 0, .external_lex_state = 32}, - [829] = {.lex_state = 0, .external_lex_state = 33}, - [830] = {.lex_state = 0, .external_lex_state = 33}, - [831] = {.lex_state = 0, .external_lex_state = 25}, - [832] = {.lex_state = 0, .external_lex_state = 26}, - [833] = {.lex_state = 0, .external_lex_state = 27}, - [834] = {.lex_state = 0, .external_lex_state = 26}, - [835] = {.lex_state = 0, .external_lex_state = 25}, - [836] = {.lex_state = 0, .external_lex_state = 33}, - [837] = {.lex_state = 0, .external_lex_state = 27}, - [838] = {.lex_state = 0, .external_lex_state = 23}, - [839] = {.lex_state = 0, .external_lex_state = 28}, - [840] = {.lex_state = 0, .external_lex_state = 32}, - [841] = {.lex_state = 0, .external_lex_state = 31}, - [842] = {.lex_state = 0, .external_lex_state = 30}, - [843] = {.lex_state = 0, .external_lex_state = 29}, - [844] = {.lex_state = 0, .external_lex_state = 24}, - [845] = {.lex_state = 0, .external_lex_state = 23}, - [846] = {.lex_state = 0, .external_lex_state = 27}, - [847] = {.lex_state = 0, .external_lex_state = 25}, - [848] = {.lex_state = 0, .external_lex_state = 26}, - [849] = {.lex_state = 0, .external_lex_state = 28}, - [850] = {.lex_state = 0, .external_lex_state = 23}, - [851] = {.lex_state = 0, .external_lex_state = 27}, - [852] = {.lex_state = 0, .external_lex_state = 27}, - [853] = {.lex_state = 0, .external_lex_state = 23}, - [854] = {.lex_state = 0, .external_lex_state = 26}, - [855] = {.lex_state = 0, .external_lex_state = 27}, - [856] = {.lex_state = 0, .external_lex_state = 23}, - [857] = {.lex_state = 0, .external_lex_state = 24}, - [858] = {.lex_state = 0, .external_lex_state = 29}, - [859] = {.lex_state = 0, .external_lex_state = 30}, - [860] = {.lex_state = 0, .external_lex_state = 31}, - [861] = {.lex_state = 0, .external_lex_state = 32}, - [862] = {.lex_state = 0, .external_lex_state = 25}, - [863] = {.lex_state = 0, .external_lex_state = 33}, - [864] = {.lex_state = 0, .external_lex_state = 25}, - [865] = {.lex_state = 0, .external_lex_state = 26}, - [866] = {.lex_state = 0, .external_lex_state = 33}, - [867] = {.lex_state = 0, .external_lex_state = 32}, - [868] = {.lex_state = 0, .external_lex_state = 31}, - [869] = {.lex_state = 0, .external_lex_state = 30}, - [870] = {.lex_state = 0, .external_lex_state = 27}, - [871] = {.lex_state = 0, .external_lex_state = 23}, - [872] = {.lex_state = 0, .external_lex_state = 28}, - [873] = {.lex_state = 0, .external_lex_state = 29}, - [874] = {.lex_state = 0, .external_lex_state = 24}, - [875] = {.lex_state = 0, .external_lex_state = 23}, - [876] = {.lex_state = 0, .external_lex_state = 27}, + [829] = {.lex_state = 0, .external_lex_state = 30}, + [830] = {.lex_state = 0, .external_lex_state = 31}, + [831] = {.lex_state = 0, .external_lex_state = 32}, + [832] = {.lex_state = 0, .external_lex_state = 24}, + [833] = {.lex_state = 0, .external_lex_state = 32}, + [834] = {.lex_state = 0, .external_lex_state = 23}, + [835] = {.lex_state = 0, .external_lex_state = 24}, + [836] = {.lex_state = 0, .external_lex_state = 23}, + [837] = {.lex_state = 0, .external_lex_state = 33}, + [838] = {.lex_state = 0, .external_lex_state = 31}, + [839] = {.lex_state = 5}, + [840] = {.lex_state = 0, .external_lex_state = 33}, + [841] = {.lex_state = 0, .external_lex_state = 33}, + [842] = {.lex_state = 0, .external_lex_state = 23}, + [843] = {.lex_state = 0, .external_lex_state = 24}, + [844] = {.lex_state = 0, .external_lex_state = 32}, + [845] = {.lex_state = 0, .external_lex_state = 31}, + [846] = {.lex_state = 0, .external_lex_state = 30}, + [847] = {.lex_state = 0, .external_lex_state = 29}, + [848] = {.lex_state = 0, .external_lex_state = 28}, + [849] = {.lex_state = 0, .external_lex_state = 27}, + [850] = {.lex_state = 0, .external_lex_state = 26}, + [851] = {.lex_state = 0, .external_lex_state = 30}, + [852] = {.lex_state = 0, .external_lex_state = 25}, + [853] = {.lex_state = 0, .external_lex_state = 24}, + [854] = {.lex_state = 0, .external_lex_state = 24}, + [855] = {.lex_state = 0, .external_lex_state = 23}, + [856] = {.lex_state = 0, .external_lex_state = 25}, + [857] = {.lex_state = 0, .external_lex_state = 26}, + [858] = {.lex_state = 0, .external_lex_state = 27}, + [859] = {.lex_state = 0, .external_lex_state = 28}, + [860] = {.lex_state = 0, .external_lex_state = 29}, + [861] = {.lex_state = 0, .external_lex_state = 33}, + [862] = {.lex_state = 0, .external_lex_state = 30}, + [863] = {.lex_state = 0, .external_lex_state = 31}, + [864] = {.lex_state = 0, .external_lex_state = 32}, + [865] = {.lex_state = 0, .external_lex_state = 29}, + [866] = {.lex_state = 0, .external_lex_state = 28}, + [867] = {.lex_state = 0, .external_lex_state = 23}, + [868] = {.lex_state = 0, .external_lex_state = 24}, + [869] = {.lex_state = 0, .external_lex_state = 23}, + [870] = {.lex_state = 0, .external_lex_state = 33}, + [871] = {.lex_state = 0, .external_lex_state = 27}, + [872] = {.lex_state = 0, .external_lex_state = 24}, + [873] = {.lex_state = 0, .external_lex_state = 32}, + [874] = {.lex_state = 0, .external_lex_state = 31}, + [875] = {.lex_state = 0, .external_lex_state = 30}, + [876] = {.lex_state = 0, .external_lex_state = 29}, [877] = {.lex_state = 0, .external_lex_state = 28}, - [878] = {.lex_state = 0, .external_lex_state = 28}, - [879] = {.lex_state = 0, .external_lex_state = 23}, - [880] = {.lex_state = 0, .external_lex_state = 27}, - [881] = {.lex_state = 0, .external_lex_state = 26}, - [882] = {.lex_state = 0, .external_lex_state = 25}, + [878] = {.lex_state = 0, .external_lex_state = 27}, + [879] = {.lex_state = 0, .external_lex_state = 26}, + [880] = {.lex_state = 0, .external_lex_state = 25}, + [881] = {.lex_state = 0, .external_lex_state = 23}, + [882] = {.lex_state = 0, .external_lex_state = 24}, [883] = {.lex_state = 0, .external_lex_state = 33}, - [884] = {.lex_state = 0, .external_lex_state = 29}, - [885] = {.lex_state = 0, .external_lex_state = 30}, - [886] = {.lex_state = 0, .external_lex_state = 31}, - [887] = {.lex_state = 0, .external_lex_state = 32}, - [888] = {.lex_state = 0, .external_lex_state = 27}, - [889] = {.lex_state = 0, .external_lex_state = 23}, - [890] = {.lex_state = 5}, - [891] = {.lex_state = 0, .external_lex_state = 34}, - [892] = {.lex_state = 5}, - [893] = {.lex_state = 0, .external_lex_state = 35}, - [894] = {.lex_state = 5}, - [895] = {.lex_state = 0}, - [896] = {.lex_state = 0, .external_lex_state = 36}, - [897] = {.lex_state = 0, .external_lex_state = 37}, - [898] = {.lex_state = 0, .external_lex_state = 38}, - [899] = {.lex_state = 0, .external_lex_state = 39}, - [900] = {.lex_state = 0, .external_lex_state = 36}, - [901] = {.lex_state = 5}, - [902] = {.lex_state = 0, .external_lex_state = 40}, - [903] = {.lex_state = 0, .external_lex_state = 41}, - [904] = {.lex_state = 0, .external_lex_state = 42}, - [905] = {.lex_state = 0, .external_lex_state = 39}, - [906] = {.lex_state = 0, .external_lex_state = 40}, - [907] = {.lex_state = 0, .external_lex_state = 40}, - [908] = {.lex_state = 5}, - [909] = {.lex_state = 0, .external_lex_state = 36}, - [910] = {.lex_state = 0, .external_lex_state = 43}, - [911] = {.lex_state = 0, .external_lex_state = 35}, - [912] = {.lex_state = 0, .external_lex_state = 39}, - [913] = {.lex_state = 0, .external_lex_state = 42}, - [914] = {.lex_state = 0, .external_lex_state = 41}, - [915] = {.lex_state = 0, .external_lex_state = 38}, - [916] = {.lex_state = 0, .external_lex_state = 37}, - [917] = {.lex_state = 0}, - [918] = {.lex_state = 5}, - [919] = {.lex_state = 0, .external_lex_state = 35}, - [920] = {.lex_state = 5}, - [921] = {.lex_state = 0, .external_lex_state = 43}, - [922] = {.lex_state = 0, .external_lex_state = 36}, - [923] = {.lex_state = 5}, - [924] = {.lex_state = 0, .external_lex_state = 40}, - [925] = {.lex_state = 0, .external_lex_state = 39}, - [926] = {.lex_state = 0, .external_lex_state = 40}, - [927] = {.lex_state = 0, .external_lex_state = 42}, - [928] = {.lex_state = 0}, - [929] = {.lex_state = 0, .external_lex_state = 41}, - [930] = {.lex_state = 0, .external_lex_state = 38}, - [931] = {.lex_state = 0}, - [932] = {.lex_state = 5}, - [933] = {.lex_state = 0, .external_lex_state = 37}, - [934] = {.lex_state = 0, .external_lex_state = 40}, - [935] = {.lex_state = 0, .external_lex_state = 40}, - [936] = {.lex_state = 5}, - [937] = {.lex_state = 0}, - [938] = {.lex_state = 0, .external_lex_state = 37}, - [939] = {.lex_state = 0, .external_lex_state = 38}, - [940] = {.lex_state = 0, .external_lex_state = 40}, - [941] = {.lex_state = 5}, - [942] = {.lex_state = 0, .external_lex_state = 36}, - [943] = {.lex_state = 0, .external_lex_state = 43}, - [944] = {.lex_state = 0, .external_lex_state = 35}, - [945] = {.lex_state = 0, .external_lex_state = 39}, - [946] = {.lex_state = 0, .external_lex_state = 42}, - [947] = {.lex_state = 0, .external_lex_state = 41}, - [948] = {.lex_state = 0, .external_lex_state = 38}, - [949] = {.lex_state = 0, .external_lex_state = 37}, - [950] = {.lex_state = 0}, - [951] = {.lex_state = 5}, - [952] = {.lex_state = 0, .external_lex_state = 41}, + [884] = {.lex_state = 0, .external_lex_state = 28}, + [885] = {.lex_state = 0, .external_lex_state = 25}, + [886] = {.lex_state = 0, .external_lex_state = 23}, + [887] = {.lex_state = 0, .external_lex_state = 24}, + [888] = {.lex_state = 0, .external_lex_state = 23}, + [889] = {.lex_state = 0, .external_lex_state = 25}, + [890] = {.lex_state = 0, .external_lex_state = 26}, + [891] = {.lex_state = 0, .external_lex_state = 27}, + [892] = {.lex_state = 0, .external_lex_state = 28}, + [893] = {.lex_state = 0, .external_lex_state = 29}, + [894] = {.lex_state = 0, .external_lex_state = 24}, + [895] = {.lex_state = 0, .external_lex_state = 30}, + [896] = {.lex_state = 0, .external_lex_state = 31}, + [897] = {.lex_state = 0, .external_lex_state = 32}, + [898] = {.lex_state = 0, .external_lex_state = 23}, + [899] = {.lex_state = 0, .external_lex_state = 24}, + [900] = {.lex_state = 0, .external_lex_state = 34}, + [901] = {.lex_state = 0}, + [902] = {.lex_state = 5}, + [903] = {.lex_state = 5}, + [904] = {.lex_state = 5}, + [905] = {.lex_state = 0, .external_lex_state = 34}, + [906] = {.lex_state = 5}, + [907] = {.lex_state = 0, .external_lex_state = 35}, + [908] = {.lex_state = 0, .external_lex_state = 36}, + [909] = {.lex_state = 0, .external_lex_state = 37}, + [910] = {.lex_state = 0, .external_lex_state = 38}, + [911] = {.lex_state = 0, .external_lex_state = 39}, + [912] = {.lex_state = 0, .external_lex_state = 40}, + [913] = {.lex_state = 0, .external_lex_state = 41}, + [914] = {.lex_state = 0, .external_lex_state = 42}, + [915] = {.lex_state = 0}, + [916] = {.lex_state = 5}, + [917] = {.lex_state = 5}, + [918] = {.lex_state = 0}, + [919] = {.lex_state = 5}, + [920] = {.lex_state = 0}, + [921] = {.lex_state = 0, .external_lex_state = 42}, + [922] = {.lex_state = 0, .external_lex_state = 41}, + [923] = {.lex_state = 0, .external_lex_state = 40}, + [924] = {.lex_state = 0, .external_lex_state = 39}, + [925] = {.lex_state = 0, .external_lex_state = 38}, + [926] = {.lex_state = 0, .external_lex_state = 37}, + [927] = {.lex_state = 0}, + [928] = {.lex_state = 0, .external_lex_state = 36}, + [929] = {.lex_state = 0, .external_lex_state = 35}, + [930] = {.lex_state = 5}, + [931] = {.lex_state = 0, .external_lex_state = 42}, + [932] = {.lex_state = 0, .external_lex_state = 41}, + [933] = {.lex_state = 0, .external_lex_state = 34}, + [934] = {.lex_state = 0, .external_lex_state = 34}, + [935] = {.lex_state = 0, .external_lex_state = 34}, + [936] = {.lex_state = 0}, + [937] = {.lex_state = 0, .external_lex_state = 40}, + [938] = {.lex_state = 0, .external_lex_state = 34}, + [939] = {.lex_state = 5}, + [940] = {.lex_state = 0, .external_lex_state = 35}, + [941] = {.lex_state = 0, .external_lex_state = 36}, + [942] = {.lex_state = 0, .external_lex_state = 37}, + [943] = {.lex_state = 0, .external_lex_state = 38}, + [944] = {.lex_state = 0, .external_lex_state = 39}, + [945] = {.lex_state = 0, .external_lex_state = 40}, + [946] = {.lex_state = 0, .external_lex_state = 41}, + [947] = {.lex_state = 0, .external_lex_state = 42}, + [948] = {.lex_state = 0}, + [949] = {.lex_state = 5}, + [950] = {.lex_state = 0, .external_lex_state = 39}, + [951] = {.lex_state = 0, .external_lex_state = 38}, + [952] = {.lex_state = 5}, [953] = {.lex_state = 5}, - [954] = {.lex_state = 0, .external_lex_state = 42}, - [955] = {.lex_state = 0, .external_lex_state = 39}, - [956] = {.lex_state = 0, .external_lex_state = 35}, - [957] = {.lex_state = 0, .external_lex_state = 43}, - [958] = {.lex_state = 5}, - [959] = {.lex_state = 5}, - [960] = {.lex_state = 0, .external_lex_state = 40}, - [961] = {.lex_state = 0}, - [962] = {.lex_state = 0}, - [963] = {.lex_state = 0, .external_lex_state = 40}, - [964] = {.lex_state = 5}, - [965] = {.lex_state = 5}, - [966] = {.lex_state = 0}, - [967] = {.lex_state = 0}, - [968] = {.lex_state = 0, .external_lex_state = 40}, - [969] = {.lex_state = 5}, + [954] = {.lex_state = 0, .external_lex_state = 37}, + [955] = {.lex_state = 0}, + [956] = {.lex_state = 5}, + [957] = {.lex_state = 0}, + [958] = {.lex_state = 0, .external_lex_state = 42}, + [959] = {.lex_state = 0, .external_lex_state = 41}, + [960] = {.lex_state = 0}, + [961] = {.lex_state = 0, .external_lex_state = 40}, + [962] = {.lex_state = 0, .external_lex_state = 39}, + [963] = {.lex_state = 0, .external_lex_state = 38}, + [964] = {.lex_state = 0, .external_lex_state = 36}, + [965] = {.lex_state = 0, .external_lex_state = 35}, + [966] = {.lex_state = 0, .external_lex_state = 34}, + [967] = {.lex_state = 0, .external_lex_state = 37}, + [968] = {.lex_state = 0, .external_lex_state = 36}, + [969] = {.lex_state = 0, .external_lex_state = 35}, [970] = {.lex_state = 5}, - [971] = {.lex_state = 0}, - [972] = {.lex_state = 0, .external_lex_state = 37}, - [973] = {.lex_state = 0, .external_lex_state = 40}, - [974] = {.lex_state = 0, .external_lex_state = 38}, - [975] = {.lex_state = 0, .external_lex_state = 36}, - [976] = {.lex_state = 0, .external_lex_state = 43}, - [977] = {.lex_state = 0, .external_lex_state = 35}, - [978] = {.lex_state = 0, .external_lex_state = 39}, - [979] = {.lex_state = 0, .external_lex_state = 42}, - [980] = {.lex_state = 0, .external_lex_state = 41}, - [981] = {.lex_state = 0, .external_lex_state = 38}, - [982] = {.lex_state = 0, .external_lex_state = 37}, - [983] = {.lex_state = 0}, + [971] = {.lex_state = 0, .external_lex_state = 34}, + [972] = {.lex_state = 5}, + [973] = {.lex_state = 0, .external_lex_state = 35}, + [974] = {.lex_state = 0, .external_lex_state = 36}, + [975] = {.lex_state = 0, .external_lex_state = 37}, + [976] = {.lex_state = 0, .external_lex_state = 38}, + [977] = {.lex_state = 0, .external_lex_state = 39}, + [978] = {.lex_state = 0, .external_lex_state = 40}, + [979] = {.lex_state = 0, .external_lex_state = 41}, + [980] = {.lex_state = 0, .external_lex_state = 42}, + [981] = {.lex_state = 0}, + [982] = {.lex_state = 5}, + [983] = {.lex_state = 0, .external_lex_state = 34}, [984] = {.lex_state = 5}, - [985] = {.lex_state = 0, .external_lex_state = 41}, - [986] = {.lex_state = 5}, - [987] = {.lex_state = 0, .external_lex_state = 34}, - [988] = {.lex_state = 0, .external_lex_state = 44}, + [985] = {.lex_state = 5}, + [986] = {.lex_state = 0, .external_lex_state = 43}, + [987] = {.lex_state = 0, .external_lex_state = 44}, + [988] = {.lex_state = 0, .external_lex_state = 43}, [989] = {.lex_state = 0, .external_lex_state = 34}, - [990] = {.lex_state = 0, .external_lex_state = 42}, - [991] = {.lex_state = 0, .external_lex_state = 39}, - [992] = {.lex_state = 0, .external_lex_state = 35}, - [993] = {.lex_state = 0, .external_lex_state = 43}, - [994] = {.lex_state = 0, .external_lex_state = 36}, + [990] = {.lex_state = 0, .external_lex_state = 34}, + [991] = {.lex_state = 0, .external_lex_state = 34}, + [992] = {.lex_state = 0, .external_lex_state = 34}, + [993] = {.lex_state = 0}, + [994] = {.lex_state = 5}, [995] = {.lex_state = 5}, - [996] = {.lex_state = 5}, - [997] = {.lex_state = 0}, - [998] = {.lex_state = 5}, - [999] = {.lex_state = 0, .external_lex_state = 37}, - [1000] = {.lex_state = 14}, - [1001] = {.lex_state = 150}, + [996] = {.lex_state = 0}, + [997] = {.lex_state = 0, .external_lex_state = 37}, + [998] = {.lex_state = 0}, + [999] = {.lex_state = 14}, + [1000] = {.lex_state = 150}, + [1001] = {.lex_state = 0, .external_lex_state = 45}, [1002] = {.lex_state = 15}, - [1003] = {.lex_state = 0, .external_lex_state = 34}, + [1003] = {.lex_state = 0, .external_lex_state = 43}, [1004] = {.lex_state = 0, .external_lex_state = 44}, - [1005] = {.lex_state = 0, .external_lex_state = 34}, - [1006] = {.lex_state = 0, .external_lex_state = 40}, + [1005] = {.lex_state = 0, .external_lex_state = 43}, + [1006] = {.lex_state = 0, .external_lex_state = 42}, [1007] = {.lex_state = 0, .external_lex_state = 38}, [1008] = {.lex_state = 0, .external_lex_state = 41}, - [1009] = {.lex_state = 0, .external_lex_state = 42}, - [1010] = {.lex_state = 0, .external_lex_state = 40}, - [1011] = {.lex_state = 0, .external_lex_state = 35}, - [1012] = {.lex_state = 0, .external_lex_state = 43}, - [1013] = {.lex_state = 0, .external_lex_state = 36}, - [1014] = {.lex_state = 0}, + [1009] = {.lex_state = 0, .external_lex_state = 40}, + [1010] = {.lex_state = 0, .external_lex_state = 39}, + [1011] = {.lex_state = 0, .external_lex_state = 38}, + [1012] = {.lex_state = 0, .external_lex_state = 37}, + [1013] = {.lex_state = 5}, + [1014] = {.lex_state = 0, .external_lex_state = 36}, [1015] = {.lex_state = 5}, [1016] = {.lex_state = 14}, - [1017] = {.lex_state = 15}, - [1018] = {.lex_state = 0, .external_lex_state = 34}, - [1019] = {.lex_state = 0, .external_lex_state = 44}, - [1020] = {.lex_state = 0, .external_lex_state = 34}, - [1021] = {.lex_state = 5}, - [1022] = {.lex_state = 0, .external_lex_state = 40}, + [1017] = {.lex_state = 0, .external_lex_state = 45}, + [1018] = {.lex_state = 15}, + [1019] = {.lex_state = 0, .external_lex_state = 43}, + [1020] = {.lex_state = 0, .external_lex_state = 44}, + [1021] = {.lex_state = 0, .external_lex_state = 43}, + [1022] = {.lex_state = 0, .external_lex_state = 35}, [1023] = {.lex_state = 0}, - [1024] = {.lex_state = 0}, - [1025] = {.lex_state = 0, .external_lex_state = 37}, + [1024] = {.lex_state = 0, .external_lex_state = 42}, + [1025] = {.lex_state = 0, .external_lex_state = 41}, [1026] = {.lex_state = 0, .external_lex_state = 40}, - [1027] = {.lex_state = 0, .external_lex_state = 38}, - [1028] = {.lex_state = 0, .external_lex_state = 41}, - [1029] = {.lex_state = 0, .external_lex_state = 42}, - [1030] = {.lex_state = 0, .external_lex_state = 39}, - [1031] = {.lex_state = 14}, - [1032] = {.lex_state = 15}, - [1033] = {.lex_state = 0, .external_lex_state = 34}, - [1034] = {.lex_state = 0, .external_lex_state = 44}, - [1035] = {.lex_state = 0, .external_lex_state = 34}, - [1036] = {.lex_state = 0, .external_lex_state = 35}, - [1037] = {.lex_state = 0}, - [1038] = {.lex_state = 0, .external_lex_state = 43}, - [1039] = {.lex_state = 0, .external_lex_state = 36}, + [1027] = {.lex_state = 0, .external_lex_state = 39}, + [1028] = {.lex_state = 5}, + [1029] = {.lex_state = 0, .external_lex_state = 37}, + [1030] = {.lex_state = 0, .external_lex_state = 34}, + [1031] = {.lex_state = 0, .external_lex_state = 36}, + [1032] = {.lex_state = 14}, + [1033] = {.lex_state = 0, .external_lex_state = 45}, + [1034] = {.lex_state = 15}, + [1035] = {.lex_state = 0, .external_lex_state = 43}, + [1036] = {.lex_state = 0, .external_lex_state = 44}, + [1037] = {.lex_state = 0, .external_lex_state = 43}, + [1038] = {.lex_state = 0, .external_lex_state = 34}, + [1039] = {.lex_state = 0, .external_lex_state = 35}, [1040] = {.lex_state = 5}, - [1041] = {.lex_state = 0, .external_lex_state = 40}, - [1042] = {.lex_state = 0, .external_lex_state = 43}, + [1041] = {.lex_state = 0, .external_lex_state = 34}, + [1042] = {.lex_state = 0, .external_lex_state = 34}, [1043] = {.lex_state = 5}, - [1044] = {.lex_state = 0, .external_lex_state = 40}, - [1045] = {.lex_state = 5}, - [1046] = {.lex_state = 14}, - [1047] = {.lex_state = 15}, - [1048] = {.lex_state = 0, .external_lex_state = 34}, - [1049] = {.lex_state = 0, .external_lex_state = 44}, - [1050] = {.lex_state = 0, .external_lex_state = 34}, - [1051] = {.lex_state = 0}, - [1052] = {.lex_state = 5}, - [1053] = {.lex_state = 16}, - [1054] = {.lex_state = 5}, + [1044] = {.lex_state = 0}, + [1045] = {.lex_state = 0, .external_lex_state = 34}, + [1046] = {.lex_state = 5}, + [1047] = {.lex_state = 0, .external_lex_state = 35}, + [1048] = {.lex_state = 14}, + [1049] = {.lex_state = 0, .external_lex_state = 45}, + [1050] = {.lex_state = 15}, + [1051] = {.lex_state = 0, .external_lex_state = 43}, + [1052] = {.lex_state = 0, .external_lex_state = 44}, + [1053] = {.lex_state = 0, .external_lex_state = 43}, + [1054] = {.lex_state = 0, .external_lex_state = 36}, [1055] = {.lex_state = 5}, - [1056] = {.lex_state = 5}, - [1057] = {.lex_state = 5}, - [1058] = {.lex_state = 5}, - [1059] = {.lex_state = 0}, - [1060] = {.lex_state = 15}, - [1061] = {.lex_state = 14}, - [1062] = {.lex_state = 15}, - [1063] = {.lex_state = 0, .external_lex_state = 34}, - [1064] = {.lex_state = 0, .external_lex_state = 44}, - [1065] = {.lex_state = 0}, - [1066] = {.lex_state = 0, .external_lex_state = 37}, - [1067] = {.lex_state = 0, .external_lex_state = 45}, - [1068] = {.lex_state = 0, .external_lex_state = 46}, - [1069] = {.lex_state = 5}, - [1070] = {.lex_state = 0}, - [1071] = {.lex_state = 0, .external_lex_state = 37}, - [1072] = {.lex_state = 0, .external_lex_state = 37}, - [1073] = {.lex_state = 0, .external_lex_state = 38}, - [1074] = {.lex_state = 0, .external_lex_state = 38}, - [1075] = {.lex_state = 0, .external_lex_state = 41}, - [1076] = {.lex_state = 14}, - [1077] = {.lex_state = 15}, + [1056] = {.lex_state = 0}, + [1057] = {.lex_state = 0}, + [1058] = {.lex_state = 0, .external_lex_state = 42}, + [1059] = {.lex_state = 0, .external_lex_state = 41}, + [1060] = {.lex_state = 0, .external_lex_state = 40}, + [1061] = {.lex_state = 0, .external_lex_state = 39}, + [1062] = {.lex_state = 0, .external_lex_state = 38}, + [1063] = {.lex_state = 0, .external_lex_state = 37}, + [1064] = {.lex_state = 14}, + [1065] = {.lex_state = 0, .external_lex_state = 45}, + [1066] = {.lex_state = 15}, + [1067] = {.lex_state = 0, .external_lex_state = 43}, + [1068] = {.lex_state = 0, .external_lex_state = 44}, + [1069] = {.lex_state = 0, .external_lex_state = 43}, + [1070] = {.lex_state = 0, .external_lex_state = 36}, + [1071] = {.lex_state = 0, .external_lex_state = 35}, + [1072] = {.lex_state = 16}, + [1073] = {.lex_state = 5}, + [1074] = {.lex_state = 5}, + [1075] = {.lex_state = 5}, + [1076] = {.lex_state = 5}, + [1077] = {.lex_state = 5}, [1078] = {.lex_state = 0, .external_lex_state = 34}, - [1079] = {.lex_state = 0, .external_lex_state = 44}, - [1080] = {.lex_state = 0, .external_lex_state = 34}, - [1081] = {.lex_state = 0, .external_lex_state = 41}, - [1082] = {.lex_state = 0, .external_lex_state = 42}, - [1083] = {.lex_state = 0, .external_lex_state = 39}, - [1084] = {.lex_state = 0, .external_lex_state = 35}, + [1079] = {.lex_state = 5}, + [1080] = {.lex_state = 14}, + [1081] = {.lex_state = 0, .external_lex_state = 45}, + [1082] = {.lex_state = 15}, + [1083] = {.lex_state = 0, .external_lex_state = 43}, + [1084] = {.lex_state = 0, .external_lex_state = 44}, [1085] = {.lex_state = 0, .external_lex_state = 43}, - [1086] = {.lex_state = 0, .external_lex_state = 36}, - [1087] = {.lex_state = 5}, - [1088] = {.lex_state = 150}, - [1089] = {.lex_state = 0, .external_lex_state = 42}, - [1090] = {.lex_state = 0, .external_lex_state = 40}, - [1091] = {.lex_state = 14}, - [1092] = {.lex_state = 15}, - [1093] = {.lex_state = 0, .external_lex_state = 34}, - [1094] = {.lex_state = 0, .external_lex_state = 44}, - [1095] = {.lex_state = 0, .external_lex_state = 34}, - [1096] = {.lex_state = 0, .external_lex_state = 39}, - [1097] = {.lex_state = 14}, - [1098] = {.lex_state = 0, .external_lex_state = 35}, + [1086] = {.lex_state = 0, .external_lex_state = 34}, + [1087] = {.lex_state = 0}, + [1088] = {.lex_state = 5}, + [1089] = {.lex_state = 15}, + [1090] = {.lex_state = 0, .external_lex_state = 45}, + [1091] = {.lex_state = 0, .external_lex_state = 46}, + [1092] = {.lex_state = 5}, + [1093] = {.lex_state = 0}, + [1094] = {.lex_state = 5}, + [1095] = {.lex_state = 0, .external_lex_state = 42}, + [1096] = {.lex_state = 14}, + [1097] = {.lex_state = 0, .external_lex_state = 45}, + [1098] = {.lex_state = 15}, [1099] = {.lex_state = 0, .external_lex_state = 43}, - [1100] = {.lex_state = 0, .external_lex_state = 34}, - [1101] = {.lex_state = 0, .external_lex_state = 44}, - [1102] = {.lex_state = 0, .external_lex_state = 36}, - [1103] = {.lex_state = 5}, - [1104] = {.lex_state = 0, .external_lex_state = 40}, + [1100] = {.lex_state = 0, .external_lex_state = 44}, + [1101] = {.lex_state = 0, .external_lex_state = 43}, + [1102] = {.lex_state = 5}, + [1103] = {.lex_state = 0, .external_lex_state = 42}, + [1104] = {.lex_state = 0, .external_lex_state = 41}, [1105] = {.lex_state = 0, .external_lex_state = 40}, - [1106] = {.lex_state = 14}, - [1107] = {.lex_state = 15}, - [1108] = {.lex_state = 0, .external_lex_state = 34}, - [1109] = {.lex_state = 0, .external_lex_state = 44}, - [1110] = {.lex_state = 0, .external_lex_state = 34}, - [1111] = {.lex_state = 0}, - [1112] = {.lex_state = 0, .external_lex_state = 40}, - [1113] = {.lex_state = 0, .external_lex_state = 47}, - [1114] = {.lex_state = 0, .external_lex_state = 48}, - [1115] = {.lex_state = 0, .external_lex_state = 49}, - [1116] = {.lex_state = 0, .external_lex_state = 50}, - [1117] = {.lex_state = 0, .external_lex_state = 51}, - [1118] = {.lex_state = 0, .external_lex_state = 52}, + [1106] = {.lex_state = 0, .external_lex_state = 39}, + [1107] = {.lex_state = 0, .external_lex_state = 38}, + [1108] = {.lex_state = 0, .external_lex_state = 37}, + [1109] = {.lex_state = 0, .external_lex_state = 36}, + [1110] = {.lex_state = 0}, + [1111] = {.lex_state = 0, .external_lex_state = 35}, + [1112] = {.lex_state = 14}, + [1113] = {.lex_state = 0, .external_lex_state = 45}, + [1114] = {.lex_state = 15}, + [1115] = {.lex_state = 0, .external_lex_state = 43}, + [1116] = {.lex_state = 0, .external_lex_state = 44}, + [1117] = {.lex_state = 0, .external_lex_state = 43}, + [1118] = {.lex_state = 0, .external_lex_state = 42}, [1119] = {.lex_state = 5}, - [1120] = {.lex_state = 0, .external_lex_state = 53}, - [1121] = {.lex_state = 14}, - [1122] = {.lex_state = 15}, - [1123] = {.lex_state = 0, .external_lex_state = 34}, - [1124] = {.lex_state = 0, .external_lex_state = 44}, - [1125] = {.lex_state = 0, .external_lex_state = 34}, - [1126] = {.lex_state = 5}, - [1127] = {.lex_state = 0, .external_lex_state = 54}, - [1128] = {.lex_state = 0, .external_lex_state = 55}, - [1129] = {.lex_state = 0, .external_lex_state = 56}, - [1130] = {.lex_state = 0}, - [1131] = {.lex_state = 0}, - [1132] = {.lex_state = 0}, - [1133] = {.lex_state = 0, .external_lex_state = 37}, + [1120] = {.lex_state = 150}, + [1121] = {.lex_state = 0, .external_lex_state = 34}, + [1122] = {.lex_state = 14}, + [1123] = {.lex_state = 0, .external_lex_state = 41}, + [1124] = {.lex_state = 0, .external_lex_state = 40}, + [1125] = {.lex_state = 0, .external_lex_state = 43}, + [1126] = {.lex_state = 0, .external_lex_state = 39}, + [1127] = {.lex_state = 0, .external_lex_state = 44}, + [1128] = {.lex_state = 14}, + [1129] = {.lex_state = 0, .external_lex_state = 45}, + [1130] = {.lex_state = 15}, + [1131] = {.lex_state = 0, .external_lex_state = 43}, + [1132] = {.lex_state = 0, .external_lex_state = 44}, + [1133] = {.lex_state = 0, .external_lex_state = 43}, [1134] = {.lex_state = 0, .external_lex_state = 38}, - [1135] = {.lex_state = 0, .external_lex_state = 41}, - [1136] = {.lex_state = 14}, - [1137] = {.lex_state = 15}, + [1135] = {.lex_state = 0, .external_lex_state = 43}, + [1136] = {.lex_state = 0, .external_lex_state = 37}, + [1137] = {.lex_state = 0, .external_lex_state = 36}, [1138] = {.lex_state = 0, .external_lex_state = 34}, - [1139] = {.lex_state = 0, .external_lex_state = 44}, - [1140] = {.lex_state = 0, .external_lex_state = 34}, - [1141] = {.lex_state = 0, .external_lex_state = 42}, - [1142] = {.lex_state = 0}, - [1143] = {.lex_state = 0, .external_lex_state = 39}, - [1144] = {.lex_state = 0, .external_lex_state = 35}, - [1145] = {.lex_state = 0, .external_lex_state = 43}, - [1146] = {.lex_state = 0, .external_lex_state = 36}, - [1147] = {.lex_state = 0, .external_lex_state = 34}, - [1148] = {.lex_state = 5}, - [1149] = {.lex_state = 0, .external_lex_state = 40}, - [1150] = {.lex_state = 0, .external_lex_state = 40}, - [1151] = {.lex_state = 14}, - [1152] = {.lex_state = 15}, - [1153] = {.lex_state = 0, .external_lex_state = 56}, - [1154] = {.lex_state = 0, .external_lex_state = 55}, - [1155] = {.lex_state = 0, .external_lex_state = 54}, - [1156] = {.lex_state = 0, .external_lex_state = 53}, - [1157] = {.lex_state = 0, .external_lex_state = 52}, - [1158] = {.lex_state = 0, .external_lex_state = 51}, - [1159] = {.lex_state = 0, .external_lex_state = 50}, - [1160] = {.lex_state = 0, .external_lex_state = 49}, - [1161] = {.lex_state = 0, .external_lex_state = 56}, - [1162] = {.lex_state = 0, .external_lex_state = 55}, - [1163] = {.lex_state = 0, .external_lex_state = 54}, - [1164] = {.lex_state = 0, .external_lex_state = 53}, - [1165] = {.lex_state = 0, .external_lex_state = 52}, - [1166] = {.lex_state = 0, .external_lex_state = 51}, - [1167] = {.lex_state = 0, .external_lex_state = 50}, - [1168] = {.lex_state = 0, .external_lex_state = 49}, - [1169] = {.lex_state = 0, .external_lex_state = 56}, - [1170] = {.lex_state = 0, .external_lex_state = 55}, - [1171] = {.lex_state = 0, .external_lex_state = 54}, - [1172] = {.lex_state = 0, .external_lex_state = 53}, - [1173] = {.lex_state = 0, .external_lex_state = 52}, - [1174] = {.lex_state = 0, .external_lex_state = 51}, - [1175] = {.lex_state = 0, .external_lex_state = 50}, - [1176] = {.lex_state = 0, .external_lex_state = 49}, - [1177] = {.lex_state = 0, .external_lex_state = 56}, - [1178] = {.lex_state = 0, .external_lex_state = 55}, - [1179] = {.lex_state = 0, .external_lex_state = 54}, - [1180] = {.lex_state = 0, .external_lex_state = 53}, - [1181] = {.lex_state = 0, .external_lex_state = 52}, - [1182] = {.lex_state = 0, .external_lex_state = 51}, - [1183] = {.lex_state = 0, .external_lex_state = 50}, - [1184] = {.lex_state = 0, .external_lex_state = 49}, - [1185] = {.lex_state = 0, .external_lex_state = 56}, - [1186] = {.lex_state = 0, .external_lex_state = 55}, - [1187] = {.lex_state = 0, .external_lex_state = 54}, - [1188] = {.lex_state = 0, .external_lex_state = 53}, - [1189] = {.lex_state = 0, .external_lex_state = 52}, - [1190] = {.lex_state = 0, .external_lex_state = 51}, - [1191] = {.lex_state = 0, .external_lex_state = 50}, - [1192] = {.lex_state = 0, .external_lex_state = 49}, - [1193] = {.lex_state = 0, .external_lex_state = 56}, - [1194] = {.lex_state = 0, .external_lex_state = 55}, - [1195] = {.lex_state = 0, .external_lex_state = 54}, - [1196] = {.lex_state = 0, .external_lex_state = 53}, - [1197] = {.lex_state = 0, .external_lex_state = 52}, - [1198] = {.lex_state = 0, .external_lex_state = 51}, - [1199] = {.lex_state = 0, .external_lex_state = 50}, - [1200] = {.lex_state = 0, .external_lex_state = 49}, - [1201] = {.lex_state = 0, .external_lex_state = 56}, - [1202] = {.lex_state = 0, .external_lex_state = 55}, - [1203] = {.lex_state = 0, .external_lex_state = 54}, - [1204] = {.lex_state = 0, .external_lex_state = 53}, - [1205] = {.lex_state = 0, .external_lex_state = 52}, - [1206] = {.lex_state = 0, .external_lex_state = 51}, - [1207] = {.lex_state = 0, .external_lex_state = 50}, - [1208] = {.lex_state = 0, .external_lex_state = 49}, - [1209] = {.lex_state = 0, .external_lex_state = 56}, - [1210] = {.lex_state = 0, .external_lex_state = 55}, - [1211] = {.lex_state = 0, .external_lex_state = 54}, - [1212] = {.lex_state = 0, .external_lex_state = 53}, - [1213] = {.lex_state = 0, .external_lex_state = 52}, - [1214] = {.lex_state = 0, .external_lex_state = 51}, - [1215] = {.lex_state = 0, .external_lex_state = 50}, - [1216] = {.lex_state = 0, .external_lex_state = 49}, + [1139] = {.lex_state = 0, .external_lex_state = 47}, + [1140] = {.lex_state = 0, .external_lex_state = 48}, + [1141] = {.lex_state = 0, .external_lex_state = 49}, + [1142] = {.lex_state = 0, .external_lex_state = 35}, + [1143] = {.lex_state = 0, .external_lex_state = 50}, + [1144] = {.lex_state = 14}, + [1145] = {.lex_state = 0, .external_lex_state = 45}, + [1146] = {.lex_state = 15}, + [1147] = {.lex_state = 0, .external_lex_state = 43}, + [1148] = {.lex_state = 0, .external_lex_state = 44}, + [1149] = {.lex_state = 0, .external_lex_state = 43}, + [1150] = {.lex_state = 5}, + [1151] = {.lex_state = 0, .external_lex_state = 51}, + [1152] = {.lex_state = 0, .external_lex_state = 52}, + [1153] = {.lex_state = 0, .external_lex_state = 53}, + [1154] = {.lex_state = 0, .external_lex_state = 54}, + [1155] = {.lex_state = 0, .external_lex_state = 55}, + [1156] = {.lex_state = 0, .external_lex_state = 56}, + [1157] = {.lex_state = 0}, + [1158] = {.lex_state = 0, .external_lex_state = 34}, + [1159] = {.lex_state = 0}, + [1160] = {.lex_state = 14}, + [1161] = {.lex_state = 0, .external_lex_state = 45}, + [1162] = {.lex_state = 15}, + [1163] = {.lex_state = 0, .external_lex_state = 56}, + [1164] = {.lex_state = 0, .external_lex_state = 55}, + [1165] = {.lex_state = 0, .external_lex_state = 54}, + [1166] = {.lex_state = 0, .external_lex_state = 53}, + [1167] = {.lex_state = 0, .external_lex_state = 52}, + [1168] = {.lex_state = 0, .external_lex_state = 51}, + [1169] = {.lex_state = 0, .external_lex_state = 50}, + [1170] = {.lex_state = 0, .external_lex_state = 49}, + [1171] = {.lex_state = 0, .external_lex_state = 34}, + [1172] = {.lex_state = 0, .external_lex_state = 56}, + [1173] = {.lex_state = 0, .external_lex_state = 55}, + [1174] = {.lex_state = 0, .external_lex_state = 54}, + [1175] = {.lex_state = 0, .external_lex_state = 53}, + [1176] = {.lex_state = 0, .external_lex_state = 52}, + [1177] = {.lex_state = 0, .external_lex_state = 51}, + [1178] = {.lex_state = 0, .external_lex_state = 50}, + [1179] = {.lex_state = 0, .external_lex_state = 49}, + [1180] = {.lex_state = 0}, + [1181] = {.lex_state = 0, .external_lex_state = 56}, + [1182] = {.lex_state = 0, .external_lex_state = 55}, + [1183] = {.lex_state = 0, .external_lex_state = 54}, + [1184] = {.lex_state = 0, .external_lex_state = 53}, + [1185] = {.lex_state = 0, .external_lex_state = 52}, + [1186] = {.lex_state = 0, .external_lex_state = 51}, + [1187] = {.lex_state = 0, .external_lex_state = 50}, + [1188] = {.lex_state = 0, .external_lex_state = 49}, + [1189] = {.lex_state = 5}, + [1190] = {.lex_state = 0, .external_lex_state = 56}, + [1191] = {.lex_state = 0, .external_lex_state = 55}, + [1192] = {.lex_state = 0, .external_lex_state = 54}, + [1193] = {.lex_state = 0, .external_lex_state = 53}, + [1194] = {.lex_state = 0, .external_lex_state = 52}, + [1195] = {.lex_state = 0, .external_lex_state = 51}, + [1196] = {.lex_state = 0, .external_lex_state = 50}, + [1197] = {.lex_state = 0, .external_lex_state = 49}, + [1198] = {.lex_state = 0}, + [1199] = {.lex_state = 0, .external_lex_state = 56}, + [1200] = {.lex_state = 0, .external_lex_state = 55}, + [1201] = {.lex_state = 0, .external_lex_state = 54}, + [1202] = {.lex_state = 0, .external_lex_state = 53}, + [1203] = {.lex_state = 0, .external_lex_state = 52}, + [1204] = {.lex_state = 0, .external_lex_state = 51}, + [1205] = {.lex_state = 0, .external_lex_state = 50}, + [1206] = {.lex_state = 0, .external_lex_state = 49}, + [1207] = {.lex_state = 5}, + [1208] = {.lex_state = 0, .external_lex_state = 56}, + [1209] = {.lex_state = 0, .external_lex_state = 55}, + [1210] = {.lex_state = 0, .external_lex_state = 54}, + [1211] = {.lex_state = 0, .external_lex_state = 53}, + [1212] = {.lex_state = 0, .external_lex_state = 52}, + [1213] = {.lex_state = 0, .external_lex_state = 51}, + [1214] = {.lex_state = 0, .external_lex_state = 50}, + [1215] = {.lex_state = 0, .external_lex_state = 49}, + [1216] = {.lex_state = 0}, [1217] = {.lex_state = 0, .external_lex_state = 56}, [1218] = {.lex_state = 0, .external_lex_state = 55}, [1219] = {.lex_state = 0, .external_lex_state = 54}, @@ -5164,22 +5189,54 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1222] = {.lex_state = 0, .external_lex_state = 51}, [1223] = {.lex_state = 0, .external_lex_state = 50}, [1224] = {.lex_state = 0, .external_lex_state = 49}, - [1225] = {.lex_state = 0, .external_lex_state = 56}, - [1226] = {.lex_state = 0, .external_lex_state = 55}, - [1227] = {.lex_state = 0, .external_lex_state = 54}, - [1228] = {.lex_state = 0, .external_lex_state = 53}, - [1229] = {.lex_state = 0, .external_lex_state = 52}, - [1230] = {.lex_state = 0, .external_lex_state = 51}, - [1231] = {.lex_state = 0, .external_lex_state = 50}, - [1232] = {.lex_state = 0, .external_lex_state = 49}, - [1233] = {.lex_state = 0, .external_lex_state = 56}, - [1234] = {.lex_state = 0, .external_lex_state = 55}, - [1235] = {.lex_state = 0, .external_lex_state = 54}, - [1236] = {.lex_state = 0, .external_lex_state = 53}, - [1237] = {.lex_state = 0, .external_lex_state = 52}, - [1238] = {.lex_state = 0, .external_lex_state = 51}, - [1239] = {.lex_state = 0, .external_lex_state = 50}, - [1240] = {.lex_state = 0, .external_lex_state = 49}, + [1225] = {.lex_state = 0, .external_lex_state = 42}, + [1226] = {.lex_state = 0, .external_lex_state = 56}, + [1227] = {.lex_state = 0, .external_lex_state = 55}, + [1228] = {.lex_state = 0, .external_lex_state = 54}, + [1229] = {.lex_state = 0, .external_lex_state = 53}, + [1230] = {.lex_state = 0, .external_lex_state = 52}, + [1231] = {.lex_state = 0, .external_lex_state = 51}, + [1232] = {.lex_state = 0, .external_lex_state = 50}, + [1233] = {.lex_state = 0, .external_lex_state = 49}, + [1234] = {.lex_state = 0, .external_lex_state = 41}, + [1235] = {.lex_state = 0, .external_lex_state = 56}, + [1236] = {.lex_state = 0, .external_lex_state = 55}, + [1237] = {.lex_state = 0, .external_lex_state = 54}, + [1238] = {.lex_state = 0, .external_lex_state = 53}, + [1239] = {.lex_state = 0, .external_lex_state = 52}, + [1240] = {.lex_state = 0, .external_lex_state = 51}, + [1241] = {.lex_state = 0, .external_lex_state = 50}, + [1242] = {.lex_state = 0, .external_lex_state = 49}, + [1243] = {.lex_state = 0, .external_lex_state = 40}, + [1244] = {.lex_state = 0, .external_lex_state = 56}, + [1245] = {.lex_state = 0, .external_lex_state = 55}, + [1246] = {.lex_state = 0, .external_lex_state = 54}, + [1247] = {.lex_state = 0, .external_lex_state = 53}, + [1248] = {.lex_state = 0, .external_lex_state = 52}, + [1249] = {.lex_state = 0, .external_lex_state = 51}, + [1250] = {.lex_state = 0, .external_lex_state = 50}, + [1251] = {.lex_state = 0, .external_lex_state = 49}, + [1252] = {.lex_state = 0, .external_lex_state = 39}, + [1253] = {.lex_state = 0, .external_lex_state = 56}, + [1254] = {.lex_state = 0, .external_lex_state = 55}, + [1255] = {.lex_state = 0, .external_lex_state = 54}, + [1256] = {.lex_state = 0, .external_lex_state = 53}, + [1257] = {.lex_state = 0, .external_lex_state = 52}, + [1258] = {.lex_state = 0, .external_lex_state = 51}, + [1259] = {.lex_state = 0, .external_lex_state = 50}, + [1260] = {.lex_state = 0, .external_lex_state = 49}, + [1261] = {.lex_state = 0, .external_lex_state = 38}, + [1262] = {.lex_state = 0, .external_lex_state = 47}, + [1263] = {.lex_state = 0, .external_lex_state = 47}, + [1264] = {.lex_state = 0, .external_lex_state = 47}, + [1265] = {.lex_state = 0, .external_lex_state = 47}, + [1266] = {.lex_state = 0, .external_lex_state = 47}, + [1267] = {.lex_state = 0, .external_lex_state = 47}, + [1268] = {.lex_state = 0, .external_lex_state = 47}, + [1269] = {.lex_state = 0, .external_lex_state = 47}, + [1270] = {.lex_state = 0, .external_lex_state = 47}, + [1271] = {.lex_state = 0, .external_lex_state = 47}, + [1272] = {.lex_state = 0, .external_lex_state = 47}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -5206,8 +5263,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_symbol] = ACTIONS(1), [anon_sym_LBRACK_CARET] = ACTIONS(1), [anon_sym_BANG_LBRACK] = ACTIONS(1), - [anon_sym_LBRACE] = ACTIONS(1), [anon_sym_LBRACK] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(1), [anon_sym_RBRACK] = ACTIONS(1), [anon_sym_LPAREN] = ACTIONS(1), [anon_sym_RPAREN] = ACTIONS(1), @@ -5258,52 +5315,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__error] = ACTIONS(1), }, [1] = { - [sym_inline] = STATE(1131), - [sym__inline] = STATE(1130), - [sym__element] = STATE(38), - [sym_emphasis] = STATE(142), - [sym_emphasis_begin] = STATE(1129), - [sym_strong] = STATE(142), - [sym_strong_begin] = STATE(1128), - [sym_superscript] = STATE(142), - [sym_superscript_begin] = STATE(1127), - [sym_subscript] = STATE(142), - [sym_subscript_begin] = STATE(1120), - [sym_highlighted] = STATE(142), - [sym_highlighted_begin] = STATE(1118), - [sym_insert] = STATE(142), - [sym_insert_begin] = STATE(1117), - [sym_delete] = STATE(142), - [sym_delete_begin] = STATE(1116), - [sym_hard_line_break] = STATE(142), - [sym__smart_punctuation] = STATE(142), - [sym_autolink] = STATE(142), - [sym_footnote_reference] = STATE(142), - [sym_footnote_marker_begin] = STATE(1115), - [sym__image] = STATE(142), - [sym_full_reference_image] = STATE(142), - [sym_collapsed_reference_image] = STATE(142), - [sym_inline_image] = STATE(142), - [sym__image_description] = STATE(685), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(142), - [sym_full_reference_link] = STATE(142), - [sym_collapsed_reference_link] = STATE(142), - [sym_inline_link] = STATE(142), - [sym_link_text] = STATE(692), - [sym_span] = STATE(38), - [sym__bracketed_text] = STATE(668), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(142), - [sym_raw_inline] = STATE(142), - [sym_math] = STATE(142), - [sym_verbatim] = STATE(142), - [sym__todo_highlights] = STATE(142), - [sym_todo] = STATE(142), - [sym_note] = STATE(142), - [sym__symbol_fallback] = STATE(142), - [aux_sym__text] = STATE(130), - [aux_sym__inline_repeat1] = STATE(38), + [sym_inline] = STATE(1159), + [sym__inline] = STATE(1157), + [sym__element] = STATE(37), + [sym_emphasis] = STATE(150), + [sym_emphasis_begin] = STATE(1156), + [sym_strong] = STATE(150), + [sym_strong_begin] = STATE(1155), + [sym_superscript] = STATE(150), + [sym_superscript_begin] = STATE(1154), + [sym_subscript] = STATE(150), + [sym_subscript_begin] = STATE(1153), + [sym_highlighted] = STATE(150), + [sym_highlighted_begin] = STATE(1152), + [sym_insert] = STATE(150), + [sym_insert_begin] = STATE(1151), + [sym_delete] = STATE(150), + [sym_delete_begin] = STATE(1143), + [sym_hard_line_break] = STATE(150), + [sym__smart_punctuation] = STATE(150), + [sym_autolink] = STATE(150), + [sym_footnote_reference] = STATE(150), + [sym_footnote_marker_begin] = STATE(1141), + [sym__image] = STATE(150), + [sym_full_reference_image] = STATE(150), + [sym_collapsed_reference_image] = STATE(150), + [sym_inline_image] = STATE(150), + [sym_image_description] = STATE(690), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(150), + [sym_full_reference_link] = STATE(150), + [sym_collapsed_reference_link] = STATE(150), + [sym_inline_link] = STATE(150), + [sym_link_text] = STATE(688), + [sym_span] = STATE(37), + [sym__bracketed_text_begin] = STATE(1139), + [sym__comment_with_spaces] = STATE(150), + [sym_raw_inline] = STATE(150), + [sym_math] = STATE(150), + [sym_verbatim] = STATE(150), + [sym__todo_highlights] = STATE(150), + [sym_todo] = STATE(150), + [sym_note] = STATE(150), + [sym__symbol_fallback] = STATE(150), + [aux_sym__text] = STATE(139), + [aux_sym__inline_repeat1] = STATE(37), [anon_sym_LBRACE_] = ACTIONS(3), [anon_sym__] = ACTIONS(5), [anon_sym_LBRACE_STAR] = ACTIONS(7), @@ -5339,51 +5395,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(47), }, [2] = { - [sym__inline] = STATE(1068), - [sym__element] = STATE(70), - [sym_emphasis] = STATE(139), - [sym_emphasis_begin] = STATE(1217), - [sym_strong] = STATE(139), - [sym_strong_begin] = STATE(1218), - [sym_superscript] = STATE(139), - [sym_superscript_begin] = STATE(1219), - [sym_subscript] = STATE(139), - [sym_subscript_begin] = STATE(1220), - [sym_highlighted] = STATE(139), - [sym_highlighted_begin] = STATE(1221), - [sym_insert] = STATE(139), - [sym_insert_begin] = STATE(1222), - [sym_delete] = STATE(139), - [sym_delete_begin] = STATE(1223), - [sym_hard_line_break] = STATE(139), - [sym__smart_punctuation] = STATE(139), - [sym_autolink] = STATE(139), - [sym_footnote_reference] = STATE(139), - [sym_footnote_marker_begin] = STATE(1224), - [sym__image] = STATE(139), - [sym_full_reference_image] = STATE(139), - [sym_collapsed_reference_image] = STATE(139), - [sym_inline_image] = STATE(139), - [sym__image_description] = STATE(678), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(139), - [sym_full_reference_link] = STATE(139), - [sym_collapsed_reference_link] = STATE(139), - [sym_inline_link] = STATE(139), - [sym_link_text] = STATE(677), - [sym_span] = STATE(70), - [sym__bracketed_text] = STATE(663), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(139), - [sym_raw_inline] = STATE(139), - [sym_math] = STATE(139), - [sym_verbatim] = STATE(139), - [sym__todo_highlights] = STATE(139), - [sym_todo] = STATE(139), - [sym_note] = STATE(139), - [sym__symbol_fallback] = STATE(139), - [aux_sym__text] = STATE(121), - [aux_sym__inline_repeat1] = STATE(70), + [sym__inline] = STATE(1091), + [sym__element] = STATE(116), + [sym_emphasis] = STATE(143), + [sym_emphasis_begin] = STATE(1235), + [sym_strong] = STATE(143), + [sym_strong_begin] = STATE(1236), + [sym_superscript] = STATE(143), + [sym_superscript_begin] = STATE(1237), + [sym_subscript] = STATE(143), + [sym_subscript_begin] = STATE(1238), + [sym_highlighted] = STATE(143), + [sym_highlighted_begin] = STATE(1239), + [sym_insert] = STATE(143), + [sym_insert_begin] = STATE(1240), + [sym_delete] = STATE(143), + [sym_delete_begin] = STATE(1241), + [sym_hard_line_break] = STATE(143), + [sym__smart_punctuation] = STATE(143), + [sym_autolink] = STATE(143), + [sym_footnote_reference] = STATE(143), + [sym_footnote_marker_begin] = STATE(1242), + [sym__image] = STATE(143), + [sym_full_reference_image] = STATE(143), + [sym_collapsed_reference_image] = STATE(143), + [sym_inline_image] = STATE(143), + [sym_image_description] = STATE(689), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(143), + [sym_full_reference_link] = STATE(143), + [sym_collapsed_reference_link] = STATE(143), + [sym_inline_link] = STATE(143), + [sym_link_text] = STATE(702), + [sym_span] = STATE(116), + [sym__bracketed_text_begin] = STATE(1270), + [sym__comment_with_spaces] = STATE(143), + [sym_raw_inline] = STATE(143), + [sym_math] = STATE(143), + [sym_verbatim] = STATE(143), + [sym__todo_highlights] = STATE(143), + [sym_todo] = STATE(143), + [sym_note] = STATE(143), + [sym__symbol_fallback] = STATE(143), + [aux_sym__text] = STATE(135), + [aux_sym__inline_repeat1] = STATE(116), [anon_sym_LBRACE_] = ACTIONS(49), [anon_sym__] = ACTIONS(51), [anon_sym_LBRACE_STAR] = ACTIONS(53), @@ -5420,50 +5475,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__image_description_end] = ACTIONS(95), }, [3] = { - [sym__element] = STATE(37), - [sym_emphasis] = STATE(137), - [sym_emphasis_begin] = STATE(1193), - [sym_strong] = STATE(137), - [sym_strong_begin] = STATE(1194), - [sym_superscript] = STATE(137), - [sym_superscript_begin] = STATE(1195), - [sym_subscript] = STATE(137), - [sym_subscript_begin] = STATE(1196), - [sym_highlighted] = STATE(137), - [sym_highlighted_begin] = STATE(1197), - [sym_insert] = STATE(137), - [sym_insert_begin] = STATE(1198), - [sym_delete] = STATE(137), - [sym_delete_begin] = STATE(1199), - [sym_hard_line_break] = STATE(137), - [sym__smart_punctuation] = STATE(137), - [sym_autolink] = STATE(137), - [sym_footnote_reference] = STATE(137), - [sym_footnote_marker_begin] = STATE(1200), - [sym__image] = STATE(137), - [sym_full_reference_image] = STATE(137), - [sym_collapsed_reference_image] = STATE(137), - [sym_inline_image] = STATE(137), - [sym__image_description] = STATE(694), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(137), - [sym_full_reference_link] = STATE(137), - [sym_collapsed_reference_link] = STATE(137), - [sym_inline_link] = STATE(137), - [sym_link_text] = STATE(693), - [sym_span] = STATE(37), - [sym__bracketed_text] = STATE(672), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(137), - [sym_raw_inline] = STATE(137), - [sym_math] = STATE(137), - [sym_verbatim] = STATE(137), - [sym__todo_highlights] = STATE(137), - [sym_todo] = STATE(137), - [sym_note] = STATE(137), - [sym__symbol_fallback] = STATE(137), - [aux_sym__text] = STATE(131), - [aux_sym__inline_repeat1] = STATE(37), + [sym__inline] = STATE(1060), + [sym__element] = STATE(7), + [sym_emphasis] = STATE(153), + [sym_emphasis_begin] = STATE(1208), + [sym_strong] = STATE(153), + [sym_strong_begin] = STATE(1209), + [sym_superscript] = STATE(153), + [sym_superscript_begin] = STATE(1210), + [sym_subscript] = STATE(153), + [sym_subscript_begin] = STATE(1211), + [sym_highlighted] = STATE(153), + [sym_highlighted_begin] = STATE(1212), + [sym_insert] = STATE(153), + [sym_insert_begin] = STATE(1213), + [sym_delete] = STATE(153), + [sym_delete_begin] = STATE(1214), + [sym_hard_line_break] = STATE(153), + [sym__smart_punctuation] = STATE(153), + [sym_autolink] = STATE(153), + [sym_footnote_reference] = STATE(153), + [sym_footnote_marker_begin] = STATE(1215), + [sym__image] = STATE(153), + [sym_full_reference_image] = STATE(153), + [sym_collapsed_reference_image] = STATE(153), + [sym_inline_image] = STATE(153), + [sym_image_description] = STATE(707), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(153), + [sym_full_reference_link] = STATE(153), + [sym_collapsed_reference_link] = STATE(153), + [sym_inline_link] = STATE(153), + [sym_link_text] = STATE(705), + [sym_span] = STATE(7), + [sym__bracketed_text_begin] = STATE(1267), + [sym__comment_with_spaces] = STATE(153), + [sym_raw_inline] = STATE(153), + [sym_math] = STATE(153), + [sym_verbatim] = STATE(153), + [sym__todo_highlights] = STATE(153), + [sym_todo] = STATE(153), + [sym_note] = STATE(153), + [sym__symbol_fallback] = STATE(153), + [aux_sym__text] = STATE(134), + [aux_sym__inline_repeat1] = STATE(7), [anon_sym_LBRACE_] = ACTIONS(97), [anon_sym__] = ACTIONS(99), [anon_sym_LBRACE_STAR] = ACTIONS(101), @@ -5497,214 +5552,288 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(137), [aux_sym__text_token1] = ACTIONS(139), [sym__verbatim_begin] = ACTIONS(141), - [sym_insert_end] = ACTIONS(143), }, [4] = { - [sym__inline] = STATE(1135), - [sym__element] = STATE(3), - [sym_emphasis] = STATE(137), - [sym_emphasis_begin] = STATE(1193), - [sym_strong] = STATE(137), - [sym_strong_begin] = STATE(1194), - [sym_superscript] = STATE(137), - [sym_superscript_begin] = STATE(1195), - [sym_subscript] = STATE(137), - [sym_subscript_begin] = STATE(1196), - [sym_highlighted] = STATE(137), - [sym_highlighted_begin] = STATE(1197), - [sym_insert] = STATE(137), - [sym_insert_begin] = STATE(1198), - [sym_delete] = STATE(137), - [sym_delete_begin] = STATE(1199), - [sym_hard_line_break] = STATE(137), - [sym__smart_punctuation] = STATE(137), - [sym_autolink] = STATE(137), - [sym_footnote_reference] = STATE(137), - [sym_footnote_marker_begin] = STATE(1200), - [sym__image] = STATE(137), - [sym_full_reference_image] = STATE(137), - [sym_collapsed_reference_image] = STATE(137), - [sym_inline_image] = STATE(137), - [sym__image_description] = STATE(694), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(137), - [sym_full_reference_link] = STATE(137), - [sym_collapsed_reference_link] = STATE(137), - [sym_inline_link] = STATE(137), - [sym_link_text] = STATE(693), - [sym_span] = STATE(3), - [sym__bracketed_text] = STATE(672), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(137), - [sym_raw_inline] = STATE(137), - [sym_math] = STATE(137), - [sym_verbatim] = STATE(137), - [sym__todo_highlights] = STATE(137), - [sym_todo] = STATE(137), - [sym_note] = STATE(137), - [sym__symbol_fallback] = STATE(137), - [aux_sym__text] = STATE(131), - [aux_sym__inline_repeat1] = STATE(3), - [anon_sym_LBRACE_] = ACTIONS(97), - [anon_sym__] = ACTIONS(99), - [anon_sym_LBRACE_STAR] = ACTIONS(101), - [anon_sym_STAR] = ACTIONS(103), - [anon_sym_LBRACE_CARET] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [anon_sym_LBRACE_TILDE] = ACTIONS(107), - [anon_sym_TILDE] = ACTIONS(107), - [anon_sym_LBRACE_EQ] = ACTIONS(109), - [anon_sym_LBRACE_PLUS] = ACTIONS(111), - [anon_sym_LBRACE_DASH] = ACTIONS(113), - [anon_sym_BSLASH] = ACTIONS(115), - [sym_quotation_marks] = ACTIONS(117), - [sym_ellipsis] = ACTIONS(117), - [sym_em_dash] = ACTIONS(117), - [sym_en_dash] = ACTIONS(119), - [sym_backslash_escape] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [sym_symbol] = ACTIONS(117), - [anon_sym_LBRACK_CARET] = ACTIONS(123), - [anon_sym_BANG_LBRACK] = ACTIONS(125), - [anon_sym_LBRACK] = ACTIONS(127), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_TODO] = ACTIONS(131), - [anon_sym_WIP] = ACTIONS(131), - [anon_sym_NOTE] = ACTIONS(133), - [anon_sym_INFO] = ACTIONS(133), - [anon_sym_XXX] = ACTIONS(133), - [sym_fixme] = ACTIONS(117), - [sym__whitespace1] = ACTIONS(135), - [sym__newline] = ACTIONS(145), - [aux_sym__text_token1] = ACTIONS(139), - [sym__verbatim_begin] = ACTIONS(141), + [sym__inline] = STATE(926), + [sym__element] = STATE(124), + [sym_emphasis] = STATE(151), + [sym_emphasis_begin] = STATE(1181), + [sym_strong] = STATE(151), + [sym_strong_begin] = STATE(1182), + [sym_superscript] = STATE(151), + [sym_superscript_begin] = STATE(1183), + [sym_subscript] = STATE(151), + [sym_subscript_begin] = STATE(1184), + [sym_highlighted] = STATE(151), + [sym_highlighted_begin] = STATE(1185), + [sym_insert] = STATE(151), + [sym_insert_begin] = STATE(1186), + [sym_delete] = STATE(151), + [sym_delete_begin] = STATE(1187), + [sym_hard_line_break] = STATE(151), + [sym__smart_punctuation] = STATE(151), + [sym_autolink] = STATE(151), + [sym_footnote_reference] = STATE(151), + [sym_footnote_marker_begin] = STATE(1188), + [sym__image] = STATE(151), + [sym_full_reference_image] = STATE(151), + [sym_collapsed_reference_image] = STATE(151), + [sym_inline_image] = STATE(151), + [sym_image_description] = STATE(700), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(151), + [sym_full_reference_link] = STATE(151), + [sym_collapsed_reference_link] = STATE(151), + [sym_inline_link] = STATE(151), + [sym_link_text] = STATE(701), + [sym_span] = STATE(124), + [sym__bracketed_text_begin] = STATE(1264), + [sym__comment_with_spaces] = STATE(151), + [sym_raw_inline] = STATE(151), + [sym_math] = STATE(151), + [sym_verbatim] = STATE(151), + [sym__todo_highlights] = STATE(151), + [sym_todo] = STATE(151), + [sym_note] = STATE(151), + [sym__symbol_fallback] = STATE(151), + [aux_sym__text] = STATE(140), + [aux_sym__inline_repeat1] = STATE(124), + [anon_sym_LBRACE_] = ACTIONS(143), + [anon_sym__] = ACTIONS(145), + [anon_sym_LBRACE_STAR] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(149), + [anon_sym_LBRACE_CARET] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(151), + [anon_sym_LBRACE_TILDE] = ACTIONS(153), + [anon_sym_TILDE] = ACTIONS(153), + [anon_sym_LBRACE_EQ] = ACTIONS(155), + [anon_sym_LBRACE_PLUS] = ACTIONS(157), + [anon_sym_LBRACE_DASH] = ACTIONS(159), + [anon_sym_BSLASH] = ACTIONS(161), + [sym_quotation_marks] = ACTIONS(163), + [sym_ellipsis] = ACTIONS(163), + [sym_em_dash] = ACTIONS(163), + [sym_en_dash] = ACTIONS(165), + [sym_backslash_escape] = ACTIONS(165), + [anon_sym_LT] = ACTIONS(167), + [sym_symbol] = ACTIONS(163), + [anon_sym_LBRACK_CARET] = ACTIONS(169), + [anon_sym_BANG_LBRACK] = ACTIONS(171), + [anon_sym_LBRACK] = ACTIONS(173), + [anon_sym_DOLLAR] = ACTIONS(175), + [anon_sym_TODO] = ACTIONS(177), + [anon_sym_WIP] = ACTIONS(177), + [anon_sym_NOTE] = ACTIONS(179), + [anon_sym_INFO] = ACTIONS(179), + [anon_sym_XXX] = ACTIONS(179), + [sym_fixme] = ACTIONS(163), + [sym__whitespace1] = ACTIONS(181), + [sym__newline] = ACTIONS(183), + [aux_sym__text_token1] = ACTIONS(185), + [sym__verbatim_begin] = ACTIONS(187), }, [5] = { - [sym__inline_without_trailing_space] = STATE(1146), - [sym__element] = STATE(538), - [sym_emphasis] = STATE(141), - [sym_emphasis_begin] = STATE(1153), - [sym_strong] = STATE(141), - [sym_strong_begin] = STATE(1154), - [sym_superscript] = STATE(141), - [sym_superscript_begin] = STATE(1155), - [sym_subscript] = STATE(141), - [sym_subscript_begin] = STATE(1156), - [sym_highlighted] = STATE(141), - [sym_highlighted_begin] = STATE(1157), - [sym_insert] = STATE(141), - [sym_insert_begin] = STATE(1158), - [sym_delete] = STATE(141), - [sym_delete_begin] = STATE(1159), - [sym_hard_line_break] = STATE(141), - [sym__smart_punctuation] = STATE(141), - [sym_autolink] = STATE(141), - [sym_footnote_reference] = STATE(141), - [sym_footnote_marker_begin] = STATE(1160), - [sym__image] = STATE(141), - [sym_full_reference_image] = STATE(141), - [sym_collapsed_reference_image] = STATE(141), - [sym_inline_image] = STATE(141), - [sym__image_description] = STATE(681), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(141), - [sym_full_reference_link] = STATE(141), - [sym_collapsed_reference_link] = STATE(141), - [sym_inline_link] = STATE(141), - [sym_link_text] = STATE(680), - [sym_span] = STATE(538), - [sym__bracketed_text] = STATE(664), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(141), - [sym_raw_inline] = STATE(141), - [sym_math] = STATE(141), - [sym_verbatim] = STATE(141), - [sym__todo_highlights] = STATE(141), - [sym_todo] = STATE(141), - [sym_note] = STATE(141), - [sym__symbol_fallback] = STATE(141), - [aux_sym__text] = STATE(128), - [aux_sym__inline_repeat1] = STATE(119), - [anon_sym_LBRACE_] = ACTIONS(147), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_STAR] = ACTIONS(151), - [anon_sym_STAR] = ACTIONS(153), - [anon_sym_LBRACE_CARET] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_LBRACE_TILDE] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_LBRACE_EQ] = ACTIONS(159), - [anon_sym_LBRACE_PLUS] = ACTIONS(161), - [anon_sym_LBRACE_DASH] = ACTIONS(163), - [anon_sym_BSLASH] = ACTIONS(165), - [sym_quotation_marks] = ACTIONS(167), - [sym_ellipsis] = ACTIONS(167), - [sym_em_dash] = ACTIONS(167), - [sym_en_dash] = ACTIONS(169), - [sym_backslash_escape] = ACTIONS(169), - [anon_sym_LT] = ACTIONS(171), - [sym_symbol] = ACTIONS(167), - [anon_sym_LBRACK_CARET] = ACTIONS(173), - [anon_sym_BANG_LBRACK] = ACTIONS(175), - [anon_sym_LBRACK] = ACTIONS(177), - [anon_sym_DOLLAR] = ACTIONS(179), - [anon_sym_TODO] = ACTIONS(181), - [anon_sym_WIP] = ACTIONS(181), - [anon_sym_NOTE] = ACTIONS(183), - [anon_sym_INFO] = ACTIONS(183), - [anon_sym_XXX] = ACTIONS(183), - [sym_fixme] = ACTIONS(167), - [sym__whitespace1] = ACTIONS(185), - [sym__newline] = ACTIONS(187), - [aux_sym__text_token1] = ACTIONS(189), - [sym__verbatim_begin] = ACTIONS(191), + [sym__inline] = STATE(1059), + [sym__element] = STATE(46), + [sym_emphasis] = STATE(147), + [sym_emphasis_begin] = STATE(1217), + [sym_strong] = STATE(147), + [sym_strong_begin] = STATE(1218), + [sym_superscript] = STATE(147), + [sym_superscript_begin] = STATE(1219), + [sym_subscript] = STATE(147), + [sym_subscript_begin] = STATE(1220), + [sym_highlighted] = STATE(147), + [sym_highlighted_begin] = STATE(1221), + [sym_insert] = STATE(147), + [sym_insert_begin] = STATE(1222), + [sym_delete] = STATE(147), + [sym_delete_begin] = STATE(1223), + [sym_hard_line_break] = STATE(147), + [sym__smart_punctuation] = STATE(147), + [sym_autolink] = STATE(147), + [sym_footnote_reference] = STATE(147), + [sym_footnote_marker_begin] = STATE(1224), + [sym__image] = STATE(147), + [sym_full_reference_image] = STATE(147), + [sym_collapsed_reference_image] = STATE(147), + [sym_inline_image] = STATE(147), + [sym_image_description] = STATE(699), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(147), + [sym_full_reference_link] = STATE(147), + [sym_collapsed_reference_link] = STATE(147), + [sym_inline_link] = STATE(147), + [sym_link_text] = STATE(698), + [sym_span] = STATE(46), + [sym__bracketed_text_begin] = STATE(1268), + [sym__comment_with_spaces] = STATE(147), + [sym_raw_inline] = STATE(147), + [sym_math] = STATE(147), + [sym_verbatim] = STATE(147), + [sym__todo_highlights] = STATE(147), + [sym_todo] = STATE(147), + [sym_note] = STATE(147), + [sym__symbol_fallback] = STATE(147), + [aux_sym__text] = STATE(132), + [aux_sym__inline_repeat1] = STATE(46), + [anon_sym_LBRACE_] = ACTIONS(189), + [anon_sym__] = ACTIONS(191), + [anon_sym_LBRACE_STAR] = ACTIONS(193), + [anon_sym_STAR] = ACTIONS(195), + [anon_sym_LBRACE_CARET] = ACTIONS(197), + [anon_sym_CARET] = ACTIONS(197), + [anon_sym_LBRACE_TILDE] = ACTIONS(199), + [anon_sym_TILDE] = ACTIONS(199), + [anon_sym_LBRACE_EQ] = ACTIONS(201), + [anon_sym_LBRACE_PLUS] = ACTIONS(203), + [anon_sym_LBRACE_DASH] = ACTIONS(205), + [anon_sym_BSLASH] = ACTIONS(207), + [sym_quotation_marks] = ACTIONS(209), + [sym_ellipsis] = ACTIONS(209), + [sym_em_dash] = ACTIONS(209), + [sym_en_dash] = ACTIONS(211), + [sym_backslash_escape] = ACTIONS(211), + [anon_sym_LT] = ACTIONS(213), + [sym_symbol] = ACTIONS(209), + [anon_sym_LBRACK_CARET] = ACTIONS(215), + [anon_sym_BANG_LBRACK] = ACTIONS(217), + [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_DOLLAR] = ACTIONS(221), + [anon_sym_TODO] = ACTIONS(223), + [anon_sym_WIP] = ACTIONS(223), + [anon_sym_NOTE] = ACTIONS(225), + [anon_sym_INFO] = ACTIONS(225), + [anon_sym_XXX] = ACTIONS(225), + [sym_fixme] = ACTIONS(209), + [sym__whitespace1] = ACTIONS(227), + [sym__newline] = ACTIONS(229), + [aux_sym__text_token1] = ACTIONS(231), + [sym__verbatim_begin] = ACTIONS(233), }, [6] = { - [sym__inline] = STATE(980), - [sym__element] = STATE(3), - [sym_emphasis] = STATE(137), - [sym_emphasis_begin] = STATE(1193), - [sym_strong] = STATE(137), - [sym_strong_begin] = STATE(1194), - [sym_superscript] = STATE(137), - [sym_superscript_begin] = STATE(1195), - [sym_subscript] = STATE(137), - [sym_subscript_begin] = STATE(1196), - [sym_highlighted] = STATE(137), - [sym_highlighted_begin] = STATE(1197), - [sym_insert] = STATE(137), - [sym_insert_begin] = STATE(1198), - [sym_delete] = STATE(137), - [sym_delete_begin] = STATE(1199), - [sym_hard_line_break] = STATE(137), - [sym__smart_punctuation] = STATE(137), - [sym_autolink] = STATE(137), - [sym_footnote_reference] = STATE(137), - [sym_footnote_marker_begin] = STATE(1200), - [sym__image] = STATE(137), - [sym_full_reference_image] = STATE(137), - [sym_collapsed_reference_image] = STATE(137), - [sym_inline_image] = STATE(137), - [sym__image_description] = STATE(694), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(137), - [sym_full_reference_link] = STATE(137), - [sym_collapsed_reference_link] = STATE(137), - [sym_inline_link] = STATE(137), - [sym_link_text] = STATE(693), - [sym_span] = STATE(3), - [sym__bracketed_text] = STATE(672), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(137), - [sym_raw_inline] = STATE(137), - [sym_math] = STATE(137), - [sym_verbatim] = STATE(137), - [sym__todo_highlights] = STATE(137), - [sym_todo] = STATE(137), - [sym_note] = STATE(137), - [sym__symbol_fallback] = STATE(137), - [aux_sym__text] = STATE(131), - [aux_sym__inline_repeat1] = STATE(3), + [sym__inline] = STATE(1129), + [sym__element] = STATE(121), + [sym_emphasis] = STATE(154), + [sym_emphasis_begin] = STATE(1244), + [sym_strong] = STATE(154), + [sym_strong_begin] = STATE(1245), + [sym_superscript] = STATE(154), + [sym_superscript_begin] = STATE(1246), + [sym_subscript] = STATE(154), + [sym_subscript_begin] = STATE(1247), + [sym_highlighted] = STATE(154), + [sym_highlighted_begin] = STATE(1248), + [sym_insert] = STATE(154), + [sym_insert_begin] = STATE(1249), + [sym_delete] = STATE(154), + [sym_delete_begin] = STATE(1250), + [sym_hard_line_break] = STATE(154), + [sym__smart_punctuation] = STATE(154), + [sym_autolink] = STATE(154), + [sym_footnote_reference] = STATE(154), + [sym_footnote_marker_begin] = STATE(1251), + [sym__image] = STATE(154), + [sym_full_reference_image] = STATE(154), + [sym_collapsed_reference_image] = STATE(154), + [sym_inline_image] = STATE(154), + [sym_image_description] = STATE(686), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(154), + [sym_full_reference_link] = STATE(154), + [sym_collapsed_reference_link] = STATE(154), + [sym_inline_link] = STATE(154), + [sym_link_text] = STATE(687), + [sym_span] = STATE(121), + [sym__bracketed_text_begin] = STATE(1271), + [sym__comment_with_spaces] = STATE(154), + [sym_raw_inline] = STATE(154), + [sym_math] = STATE(154), + [sym_verbatim] = STATE(154), + [sym__todo_highlights] = STATE(154), + [sym_todo] = STATE(154), + [sym_note] = STATE(154), + [sym__symbol_fallback] = STATE(154), + [aux_sym__text] = STATE(137), + [aux_sym__inline_repeat1] = STATE(121), + [anon_sym_LBRACE_] = ACTIONS(235), + [anon_sym__] = ACTIONS(237), + [anon_sym_LBRACE_STAR] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(241), + [anon_sym_LBRACE_CARET] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(243), + [anon_sym_LBRACE_TILDE] = ACTIONS(245), + [anon_sym_TILDE] = ACTIONS(245), + [anon_sym_LBRACE_EQ] = ACTIONS(247), + [anon_sym_LBRACE_PLUS] = ACTIONS(249), + [anon_sym_LBRACE_DASH] = ACTIONS(251), + [anon_sym_BSLASH] = ACTIONS(253), + [sym_quotation_marks] = ACTIONS(255), + [sym_ellipsis] = ACTIONS(255), + [sym_em_dash] = ACTIONS(255), + [sym_en_dash] = ACTIONS(257), + [sym_backslash_escape] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(259), + [sym_symbol] = ACTIONS(255), + [anon_sym_LBRACK_CARET] = ACTIONS(261), + [anon_sym_BANG_LBRACK] = ACTIONS(263), + [anon_sym_LBRACK] = ACTIONS(265), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_TODO] = ACTIONS(269), + [anon_sym_WIP] = ACTIONS(269), + [anon_sym_NOTE] = ACTIONS(271), + [anon_sym_INFO] = ACTIONS(271), + [anon_sym_XXX] = ACTIONS(271), + [sym_fixme] = ACTIONS(255), + [sym__whitespace1] = ACTIONS(273), + [sym__newline] = ACTIONS(275), + [aux_sym__text_token1] = ACTIONS(277), + [sym__verbatim_begin] = ACTIONS(279), + }, + [7] = { + [sym__element] = STATE(70), + [sym_emphasis] = STATE(153), + [sym_emphasis_begin] = STATE(1208), + [sym_strong] = STATE(153), + [sym_strong_begin] = STATE(1209), + [sym_superscript] = STATE(153), + [sym_superscript_begin] = STATE(1210), + [sym_subscript] = STATE(153), + [sym_subscript_begin] = STATE(1211), + [sym_highlighted] = STATE(153), + [sym_highlighted_begin] = STATE(1212), + [sym_insert] = STATE(153), + [sym_insert_begin] = STATE(1213), + [sym_delete] = STATE(153), + [sym_delete_begin] = STATE(1214), + [sym_hard_line_break] = STATE(153), + [sym__smart_punctuation] = STATE(153), + [sym_autolink] = STATE(153), + [sym_footnote_reference] = STATE(153), + [sym_footnote_marker_begin] = STATE(1215), + [sym__image] = STATE(153), + [sym_full_reference_image] = STATE(153), + [sym_collapsed_reference_image] = STATE(153), + [sym_inline_image] = STATE(153), + [sym_image_description] = STATE(707), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(153), + [sym_full_reference_link] = STATE(153), + [sym_collapsed_reference_link] = STATE(153), + [sym_inline_link] = STATE(153), + [sym_link_text] = STATE(705), + [sym_span] = STATE(70), + [sym__bracketed_text_begin] = STATE(1267), + [sym__comment_with_spaces] = STATE(153), + [sym_raw_inline] = STATE(153), + [sym_math] = STATE(153), + [sym_verbatim] = STATE(153), + [sym__todo_highlights] = STATE(153), + [sym_todo] = STATE(153), + [sym_note] = STATE(153), + [sym__symbol_fallback] = STATE(153), + [aux_sym__text] = STATE(134), + [aux_sym__inline_repeat1] = STATE(70), [anon_sym_LBRACE_] = ACTIONS(97), [anon_sym__] = ACTIONS(99), [anon_sym_LBRACE_STAR] = ACTIONS(101), @@ -5735,776 +5864,609 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_XXX] = ACTIONS(133), [sym_fixme] = ACTIONS(117), [sym__whitespace1] = ACTIONS(135), - [sym__newline] = ACTIONS(145), + [sym__newline] = ACTIONS(281), [aux_sym__text_token1] = ACTIONS(139), [sym__verbatim_begin] = ACTIONS(141), - }, - [7] = { - [sym__inline] = STATE(979), - [sym__element] = STATE(107), - [sym_emphasis] = STATE(140), - [sym_emphasis_begin] = STATE(1185), - [sym_strong] = STATE(140), - [sym_strong_begin] = STATE(1186), - [sym_superscript] = STATE(140), - [sym_superscript_begin] = STATE(1187), - [sym_subscript] = STATE(140), - [sym_subscript_begin] = STATE(1188), - [sym_highlighted] = STATE(140), - [sym_highlighted_begin] = STATE(1189), - [sym_insert] = STATE(140), - [sym_insert_begin] = STATE(1190), - [sym_delete] = STATE(140), - [sym_delete_begin] = STATE(1191), - [sym_hard_line_break] = STATE(140), - [sym__smart_punctuation] = STATE(140), - [sym_autolink] = STATE(140), - [sym_footnote_reference] = STATE(140), - [sym_footnote_marker_begin] = STATE(1192), - [sym__image] = STATE(140), - [sym_full_reference_image] = STATE(140), - [sym_collapsed_reference_image] = STATE(140), - [sym_inline_image] = STATE(140), - [sym__image_description] = STATE(700), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(140), - [sym_full_reference_link] = STATE(140), - [sym_collapsed_reference_link] = STATE(140), - [sym_inline_link] = STATE(140), - [sym_link_text] = STATE(699), - [sym_span] = STATE(107), - [sym__bracketed_text] = STATE(666), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(140), - [sym_raw_inline] = STATE(140), - [sym_math] = STATE(140), - [sym_verbatim] = STATE(140), - [sym__todo_highlights] = STATE(140), - [sym_todo] = STATE(140), - [sym_note] = STATE(140), - [sym__symbol_fallback] = STATE(140), - [aux_sym__text] = STATE(125), - [aux_sym__inline_repeat1] = STATE(107), - [anon_sym_LBRACE_] = ACTIONS(193), - [anon_sym__] = ACTIONS(195), - [anon_sym_LBRACE_STAR] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(199), - [anon_sym_LBRACE_CARET] = ACTIONS(201), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_LBRACE_TILDE] = ACTIONS(203), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_LBRACE_EQ] = ACTIONS(205), - [anon_sym_LBRACE_PLUS] = ACTIONS(207), - [anon_sym_LBRACE_DASH] = ACTIONS(209), - [anon_sym_BSLASH] = ACTIONS(211), - [sym_quotation_marks] = ACTIONS(213), - [sym_ellipsis] = ACTIONS(213), - [sym_em_dash] = ACTIONS(213), - [sym_en_dash] = ACTIONS(215), - [sym_backslash_escape] = ACTIONS(215), - [anon_sym_LT] = ACTIONS(217), - [sym_symbol] = ACTIONS(213), - [anon_sym_LBRACK_CARET] = ACTIONS(219), - [anon_sym_BANG_LBRACK] = ACTIONS(221), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_DOLLAR] = ACTIONS(225), - [anon_sym_TODO] = ACTIONS(227), - [anon_sym_WIP] = ACTIONS(227), - [anon_sym_NOTE] = ACTIONS(229), - [anon_sym_INFO] = ACTIONS(229), - [anon_sym_XXX] = ACTIONS(229), - [sym_fixme] = ACTIONS(213), - [sym__whitespace1] = ACTIONS(231), - [sym__newline] = ACTIONS(233), - [aux_sym__text_token1] = ACTIONS(235), - [sym__verbatim_begin] = ACTIONS(237), + [sym_insert_end] = ACTIONS(283), }, [8] = { - [sym__inline] = STATE(978), - [sym__element] = STATE(72), - [sym_emphasis] = STATE(135), - [sym_emphasis_begin] = STATE(1177), - [sym_strong] = STATE(135), - [sym_strong_begin] = STATE(1178), - [sym_superscript] = STATE(135), - [sym_superscript_begin] = STATE(1179), - [sym_subscript] = STATE(135), - [sym_subscript_begin] = STATE(1180), - [sym_highlighted] = STATE(135), - [sym_highlighted_begin] = STATE(1181), - [sym_insert] = STATE(135), - [sym_insert_begin] = STATE(1182), - [sym_delete] = STATE(135), - [sym_delete_begin] = STATE(1183), - [sym_hard_line_break] = STATE(135), - [sym__smart_punctuation] = STATE(135), - [sym_autolink] = STATE(135), - [sym_footnote_reference] = STATE(135), - [sym_footnote_marker_begin] = STATE(1184), - [sym__image] = STATE(135), - [sym_full_reference_image] = STATE(135), - [sym_collapsed_reference_image] = STATE(135), - [sym_inline_image] = STATE(135), - [sym__image_description] = STATE(687), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(135), - [sym_full_reference_link] = STATE(135), - [sym_collapsed_reference_link] = STATE(135), - [sym_inline_link] = STATE(135), - [sym_link_text] = STATE(684), - [sym_span] = STATE(72), - [sym__bracketed_text] = STATE(670), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(135), - [sym_raw_inline] = STATE(135), - [sym_math] = STATE(135), - [sym_verbatim] = STATE(135), - [sym__todo_highlights] = STATE(135), - [sym_todo] = STATE(135), - [sym_note] = STATE(135), - [sym__symbol_fallback] = STATE(135), - [aux_sym__text] = STATE(124), - [aux_sym__inline_repeat1] = STATE(72), - [anon_sym_LBRACE_] = ACTIONS(239), - [anon_sym__] = ACTIONS(241), - [anon_sym_LBRACE_STAR] = ACTIONS(243), - [anon_sym_STAR] = ACTIONS(245), - [anon_sym_LBRACE_CARET] = ACTIONS(247), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_LBRACE_TILDE] = ACTIONS(249), - [anon_sym_TILDE] = ACTIONS(249), - [anon_sym_LBRACE_EQ] = ACTIONS(251), - [anon_sym_LBRACE_PLUS] = ACTIONS(253), - [anon_sym_LBRACE_DASH] = ACTIONS(255), - [anon_sym_BSLASH] = ACTIONS(257), - [sym_quotation_marks] = ACTIONS(259), - [sym_ellipsis] = ACTIONS(259), - [sym_em_dash] = ACTIONS(259), - [sym_en_dash] = ACTIONS(261), - [sym_backslash_escape] = ACTIONS(261), - [anon_sym_LT] = ACTIONS(263), - [sym_symbol] = ACTIONS(259), - [anon_sym_LBRACK_CARET] = ACTIONS(265), - [anon_sym_BANG_LBRACK] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(269), - [anon_sym_DOLLAR] = ACTIONS(271), - [anon_sym_TODO] = ACTIONS(273), - [anon_sym_WIP] = ACTIONS(273), - [anon_sym_NOTE] = ACTIONS(275), - [anon_sym_INFO] = ACTIONS(275), - [anon_sym_XXX] = ACTIONS(275), - [sym_fixme] = ACTIONS(259), - [sym__whitespace1] = ACTIONS(277), - [sym__newline] = ACTIONS(279), - [aux_sym__text_token1] = ACTIONS(281), - [sym__verbatim_begin] = ACTIONS(283), + [sym__inline] = STATE(1113), + [sym__element] = STATE(121), + [sym_emphasis] = STATE(154), + [sym_emphasis_begin] = STATE(1244), + [sym_strong] = STATE(154), + [sym_strong_begin] = STATE(1245), + [sym_superscript] = STATE(154), + [sym_superscript_begin] = STATE(1246), + [sym_subscript] = STATE(154), + [sym_subscript_begin] = STATE(1247), + [sym_highlighted] = STATE(154), + [sym_highlighted_begin] = STATE(1248), + [sym_insert] = STATE(154), + [sym_insert_begin] = STATE(1249), + [sym_delete] = STATE(154), + [sym_delete_begin] = STATE(1250), + [sym_hard_line_break] = STATE(154), + [sym__smart_punctuation] = STATE(154), + [sym_autolink] = STATE(154), + [sym_footnote_reference] = STATE(154), + [sym_footnote_marker_begin] = STATE(1251), + [sym__image] = STATE(154), + [sym_full_reference_image] = STATE(154), + [sym_collapsed_reference_image] = STATE(154), + [sym_inline_image] = STATE(154), + [sym_image_description] = STATE(686), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(154), + [sym_full_reference_link] = STATE(154), + [sym_collapsed_reference_link] = STATE(154), + [sym_inline_link] = STATE(154), + [sym_link_text] = STATE(687), + [sym_span] = STATE(121), + [sym__bracketed_text_begin] = STATE(1271), + [sym__comment_with_spaces] = STATE(154), + [sym_raw_inline] = STATE(154), + [sym_math] = STATE(154), + [sym_verbatim] = STATE(154), + [sym__todo_highlights] = STATE(154), + [sym_todo] = STATE(154), + [sym_note] = STATE(154), + [sym__symbol_fallback] = STATE(154), + [aux_sym__text] = STATE(137), + [aux_sym__inline_repeat1] = STATE(121), + [anon_sym_LBRACE_] = ACTIONS(235), + [anon_sym__] = ACTIONS(237), + [anon_sym_LBRACE_STAR] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(241), + [anon_sym_LBRACE_CARET] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(243), + [anon_sym_LBRACE_TILDE] = ACTIONS(245), + [anon_sym_TILDE] = ACTIONS(245), + [anon_sym_LBRACE_EQ] = ACTIONS(247), + [anon_sym_LBRACE_PLUS] = ACTIONS(249), + [anon_sym_LBRACE_DASH] = ACTIONS(251), + [anon_sym_BSLASH] = ACTIONS(253), + [sym_quotation_marks] = ACTIONS(255), + [sym_ellipsis] = ACTIONS(255), + [sym_em_dash] = ACTIONS(255), + [sym_en_dash] = ACTIONS(257), + [sym_backslash_escape] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(259), + [sym_symbol] = ACTIONS(255), + [anon_sym_LBRACK_CARET] = ACTIONS(261), + [anon_sym_BANG_LBRACK] = ACTIONS(263), + [anon_sym_LBRACK] = ACTIONS(265), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_TODO] = ACTIONS(269), + [anon_sym_WIP] = ACTIONS(269), + [anon_sym_NOTE] = ACTIONS(271), + [anon_sym_INFO] = ACTIONS(271), + [anon_sym_XXX] = ACTIONS(271), + [sym_fixme] = ACTIONS(255), + [sym__whitespace1] = ACTIONS(273), + [sym__newline] = ACTIONS(275), + [aux_sym__text_token1] = ACTIONS(277), + [sym__verbatim_begin] = ACTIONS(279), }, [9] = { - [sym__inline] = STATE(977), - [sym__element] = STATE(82), - [sym_emphasis] = STATE(143), - [sym_emphasis_begin] = STATE(1169), - [sym_strong] = STATE(143), - [sym_strong_begin] = STATE(1170), - [sym_superscript] = STATE(143), - [sym_superscript_begin] = STATE(1171), - [sym_subscript] = STATE(143), - [sym_subscript_begin] = STATE(1172), - [sym_highlighted] = STATE(143), - [sym_highlighted_begin] = STATE(1173), - [sym_insert] = STATE(143), - [sym_insert_begin] = STATE(1174), - [sym_delete] = STATE(143), - [sym_delete_begin] = STATE(1175), - [sym_hard_line_break] = STATE(143), - [sym__smart_punctuation] = STATE(143), - [sym_autolink] = STATE(143), - [sym_footnote_reference] = STATE(143), - [sym_footnote_marker_begin] = STATE(1176), - [sym__image] = STATE(143), - [sym_full_reference_image] = STATE(143), - [sym_collapsed_reference_image] = STATE(143), - [sym_inline_image] = STATE(143), - [sym__image_description] = STATE(701), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(143), - [sym_full_reference_link] = STATE(143), - [sym_collapsed_reference_link] = STATE(143), - [sym_inline_link] = STATE(143), - [sym_link_text] = STATE(702), - [sym_span] = STATE(82), - [sym__bracketed_text] = STATE(667), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(143), - [sym_raw_inline] = STATE(143), - [sym_math] = STATE(143), - [sym_verbatim] = STATE(143), - [sym__todo_highlights] = STATE(143), - [sym_todo] = STATE(143), - [sym_note] = STATE(143), - [sym__symbol_fallback] = STATE(143), - [aux_sym__text] = STATE(126), - [aux_sym__inline_repeat1] = STATE(82), - [anon_sym_LBRACE_] = ACTIONS(285), - [anon_sym__] = ACTIONS(287), - [anon_sym_LBRACE_STAR] = ACTIONS(289), - [anon_sym_STAR] = ACTIONS(291), - [anon_sym_LBRACE_CARET] = ACTIONS(293), - [anon_sym_CARET] = ACTIONS(293), - [anon_sym_LBRACE_TILDE] = ACTIONS(295), - [anon_sym_TILDE] = ACTIONS(295), - [anon_sym_LBRACE_EQ] = ACTIONS(297), - [anon_sym_LBRACE_PLUS] = ACTIONS(299), - [anon_sym_LBRACE_DASH] = ACTIONS(301), - [anon_sym_BSLASH] = ACTIONS(303), - [sym_quotation_marks] = ACTIONS(305), - [sym_ellipsis] = ACTIONS(305), - [sym_em_dash] = ACTIONS(305), - [sym_en_dash] = ACTIONS(307), - [sym_backslash_escape] = ACTIONS(307), - [anon_sym_LT] = ACTIONS(309), - [sym_symbol] = ACTIONS(305), - [anon_sym_LBRACK_CARET] = ACTIONS(311), - [anon_sym_BANG_LBRACK] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_DOLLAR] = ACTIONS(317), - [anon_sym_TODO] = ACTIONS(319), - [anon_sym_WIP] = ACTIONS(319), - [anon_sym_NOTE] = ACTIONS(321), - [anon_sym_INFO] = ACTIONS(321), - [anon_sym_XXX] = ACTIONS(321), - [sym_fixme] = ACTIONS(305), - [sym__whitespace1] = ACTIONS(323), - [sym__newline] = ACTIONS(325), - [aux_sym__text_token1] = ACTIONS(327), - [sym__verbatim_begin] = ACTIONS(329), + [sym__inline] = STATE(1097), + [sym__element] = STATE(121), + [sym_emphasis] = STATE(154), + [sym_emphasis_begin] = STATE(1244), + [sym_strong] = STATE(154), + [sym_strong_begin] = STATE(1245), + [sym_superscript] = STATE(154), + [sym_superscript_begin] = STATE(1246), + [sym_subscript] = STATE(154), + [sym_subscript_begin] = STATE(1247), + [sym_highlighted] = STATE(154), + [sym_highlighted_begin] = STATE(1248), + [sym_insert] = STATE(154), + [sym_insert_begin] = STATE(1249), + [sym_delete] = STATE(154), + [sym_delete_begin] = STATE(1250), + [sym_hard_line_break] = STATE(154), + [sym__smart_punctuation] = STATE(154), + [sym_autolink] = STATE(154), + [sym_footnote_reference] = STATE(154), + [sym_footnote_marker_begin] = STATE(1251), + [sym__image] = STATE(154), + [sym_full_reference_image] = STATE(154), + [sym_collapsed_reference_image] = STATE(154), + [sym_inline_image] = STATE(154), + [sym_image_description] = STATE(686), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(154), + [sym_full_reference_link] = STATE(154), + [sym_collapsed_reference_link] = STATE(154), + [sym_inline_link] = STATE(154), + [sym_link_text] = STATE(687), + [sym_span] = STATE(121), + [sym__bracketed_text_begin] = STATE(1271), + [sym__comment_with_spaces] = STATE(154), + [sym_raw_inline] = STATE(154), + [sym_math] = STATE(154), + [sym_verbatim] = STATE(154), + [sym__todo_highlights] = STATE(154), + [sym_todo] = STATE(154), + [sym_note] = STATE(154), + [sym__symbol_fallback] = STATE(154), + [aux_sym__text] = STATE(137), + [aux_sym__inline_repeat1] = STATE(121), + [anon_sym_LBRACE_] = ACTIONS(235), + [anon_sym__] = ACTIONS(237), + [anon_sym_LBRACE_STAR] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(241), + [anon_sym_LBRACE_CARET] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(243), + [anon_sym_LBRACE_TILDE] = ACTIONS(245), + [anon_sym_TILDE] = ACTIONS(245), + [anon_sym_LBRACE_EQ] = ACTIONS(247), + [anon_sym_LBRACE_PLUS] = ACTIONS(249), + [anon_sym_LBRACE_DASH] = ACTIONS(251), + [anon_sym_BSLASH] = ACTIONS(253), + [sym_quotation_marks] = ACTIONS(255), + [sym_ellipsis] = ACTIONS(255), + [sym_em_dash] = ACTIONS(255), + [sym_en_dash] = ACTIONS(257), + [sym_backslash_escape] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(259), + [sym_symbol] = ACTIONS(255), + [anon_sym_LBRACK_CARET] = ACTIONS(261), + [anon_sym_BANG_LBRACK] = ACTIONS(263), + [anon_sym_LBRACK] = ACTIONS(265), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_TODO] = ACTIONS(269), + [anon_sym_WIP] = ACTIONS(269), + [anon_sym_NOTE] = ACTIONS(271), + [anon_sym_INFO] = ACTIONS(271), + [anon_sym_XXX] = ACTIONS(271), + [sym_fixme] = ACTIONS(255), + [sym__whitespace1] = ACTIONS(273), + [sym__newline] = ACTIONS(275), + [aux_sym__text_token1] = ACTIONS(277), + [sym__verbatim_begin] = ACTIONS(279), }, [10] = { - [sym__inline_without_trailing_space] = STATE(976), - [sym__element] = STATE(572), - [sym_emphasis] = STATE(138), - [sym_emphasis_begin] = STATE(1161), - [sym_strong] = STATE(138), - [sym_strong_begin] = STATE(1162), - [sym_superscript] = STATE(138), - [sym_superscript_begin] = STATE(1163), - [sym_subscript] = STATE(138), - [sym_subscript_begin] = STATE(1164), - [sym_highlighted] = STATE(138), - [sym_highlighted_begin] = STATE(1165), - [sym_insert] = STATE(138), - [sym_insert_begin] = STATE(1166), - [sym_delete] = STATE(138), - [sym_delete_begin] = STATE(1167), - [sym_hard_line_break] = STATE(138), - [sym__smart_punctuation] = STATE(138), - [sym_autolink] = STATE(138), - [sym_footnote_reference] = STATE(138), - [sym_footnote_marker_begin] = STATE(1168), - [sym__image] = STATE(138), - [sym_full_reference_image] = STATE(138), - [sym_collapsed_reference_image] = STATE(138), - [sym_inline_image] = STATE(138), - [sym__image_description] = STATE(703), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(138), - [sym_full_reference_link] = STATE(138), - [sym_collapsed_reference_link] = STATE(138), - [sym_inline_link] = STATE(138), - [sym_link_text] = STATE(697), - [sym_span] = STATE(572), - [sym__bracketed_text] = STATE(671), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(138), - [sym_raw_inline] = STATE(138), - [sym_math] = STATE(138), - [sym_verbatim] = STATE(138), - [sym__todo_highlights] = STATE(138), - [sym_todo] = STATE(138), - [sym_note] = STATE(138), - [sym__symbol_fallback] = STATE(138), - [aux_sym__text] = STATE(122), - [aux_sym__inline_repeat1] = STATE(120), - [anon_sym_LBRACE_] = ACTIONS(331), - [anon_sym__] = ACTIONS(333), - [anon_sym_LBRACE_STAR] = ACTIONS(335), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_LBRACE_CARET] = ACTIONS(339), - [anon_sym_CARET] = ACTIONS(339), - [anon_sym_LBRACE_TILDE] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_LBRACE_EQ] = ACTIONS(343), - [anon_sym_LBRACE_PLUS] = ACTIONS(345), - [anon_sym_LBRACE_DASH] = ACTIONS(347), - [anon_sym_BSLASH] = ACTIONS(349), - [sym_quotation_marks] = ACTIONS(351), - [sym_ellipsis] = ACTIONS(351), - [sym_em_dash] = ACTIONS(351), - [sym_en_dash] = ACTIONS(353), - [sym_backslash_escape] = ACTIONS(353), - [anon_sym_LT] = ACTIONS(355), - [sym_symbol] = ACTIONS(351), - [anon_sym_LBRACK_CARET] = ACTIONS(357), - [anon_sym_BANG_LBRACK] = ACTIONS(359), - [anon_sym_LBRACK] = ACTIONS(361), - [anon_sym_DOLLAR] = ACTIONS(363), - [anon_sym_TODO] = ACTIONS(365), - [anon_sym_WIP] = ACTIONS(365), - [anon_sym_NOTE] = ACTIONS(367), - [anon_sym_INFO] = ACTIONS(367), - [anon_sym_XXX] = ACTIONS(367), - [sym_fixme] = ACTIONS(351), - [sym__whitespace1] = ACTIONS(369), - [sym__newline] = ACTIONS(371), - [aux_sym__text_token1] = ACTIONS(373), - [sym__verbatim_begin] = ACTIONS(375), + [sym__inline] = STATE(1081), + [sym__element] = STATE(121), + [sym_emphasis] = STATE(154), + [sym_emphasis_begin] = STATE(1244), + [sym_strong] = STATE(154), + [sym_strong_begin] = STATE(1245), + [sym_superscript] = STATE(154), + [sym_superscript_begin] = STATE(1246), + [sym_subscript] = STATE(154), + [sym_subscript_begin] = STATE(1247), + [sym_highlighted] = STATE(154), + [sym_highlighted_begin] = STATE(1248), + [sym_insert] = STATE(154), + [sym_insert_begin] = STATE(1249), + [sym_delete] = STATE(154), + [sym_delete_begin] = STATE(1250), + [sym_hard_line_break] = STATE(154), + [sym__smart_punctuation] = STATE(154), + [sym_autolink] = STATE(154), + [sym_footnote_reference] = STATE(154), + [sym_footnote_marker_begin] = STATE(1251), + [sym__image] = STATE(154), + [sym_full_reference_image] = STATE(154), + [sym_collapsed_reference_image] = STATE(154), + [sym_inline_image] = STATE(154), + [sym_image_description] = STATE(686), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(154), + [sym_full_reference_link] = STATE(154), + [sym_collapsed_reference_link] = STATE(154), + [sym_inline_link] = STATE(154), + [sym_link_text] = STATE(687), + [sym_span] = STATE(121), + [sym__bracketed_text_begin] = STATE(1271), + [sym__comment_with_spaces] = STATE(154), + [sym_raw_inline] = STATE(154), + [sym_math] = STATE(154), + [sym_verbatim] = STATE(154), + [sym__todo_highlights] = STATE(154), + [sym_todo] = STATE(154), + [sym_note] = STATE(154), + [sym__symbol_fallback] = STATE(154), + [aux_sym__text] = STATE(137), + [aux_sym__inline_repeat1] = STATE(121), + [anon_sym_LBRACE_] = ACTIONS(235), + [anon_sym__] = ACTIONS(237), + [anon_sym_LBRACE_STAR] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(241), + [anon_sym_LBRACE_CARET] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(243), + [anon_sym_LBRACE_TILDE] = ACTIONS(245), + [anon_sym_TILDE] = ACTIONS(245), + [anon_sym_LBRACE_EQ] = ACTIONS(247), + [anon_sym_LBRACE_PLUS] = ACTIONS(249), + [anon_sym_LBRACE_DASH] = ACTIONS(251), + [anon_sym_BSLASH] = ACTIONS(253), + [sym_quotation_marks] = ACTIONS(255), + [sym_ellipsis] = ACTIONS(255), + [sym_em_dash] = ACTIONS(255), + [sym_en_dash] = ACTIONS(257), + [sym_backslash_escape] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(259), + [sym_symbol] = ACTIONS(255), + [anon_sym_LBRACK_CARET] = ACTIONS(261), + [anon_sym_BANG_LBRACK] = ACTIONS(263), + [anon_sym_LBRACK] = ACTIONS(265), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_TODO] = ACTIONS(269), + [anon_sym_WIP] = ACTIONS(269), + [anon_sym_NOTE] = ACTIONS(271), + [anon_sym_INFO] = ACTIONS(271), + [anon_sym_XXX] = ACTIONS(271), + [sym_fixme] = ACTIONS(255), + [sym__whitespace1] = ACTIONS(273), + [sym__newline] = ACTIONS(275), + [aux_sym__text_token1] = ACTIONS(277), + [sym__verbatim_begin] = ACTIONS(279), }, [11] = { - [sym__inline_without_trailing_space] = STATE(975), - [sym__element] = STATE(538), - [sym_emphasis] = STATE(141), - [sym_emphasis_begin] = STATE(1153), - [sym_strong] = STATE(141), - [sym_strong_begin] = STATE(1154), - [sym_superscript] = STATE(141), - [sym_superscript_begin] = STATE(1155), - [sym_subscript] = STATE(141), - [sym_subscript_begin] = STATE(1156), - [sym_highlighted] = STATE(141), - [sym_highlighted_begin] = STATE(1157), - [sym_insert] = STATE(141), - [sym_insert_begin] = STATE(1158), - [sym_delete] = STATE(141), - [sym_delete_begin] = STATE(1159), - [sym_hard_line_break] = STATE(141), - [sym__smart_punctuation] = STATE(141), - [sym_autolink] = STATE(141), - [sym_footnote_reference] = STATE(141), - [sym_footnote_marker_begin] = STATE(1160), - [sym__image] = STATE(141), - [sym_full_reference_image] = STATE(141), - [sym_collapsed_reference_image] = STATE(141), - [sym_inline_image] = STATE(141), - [sym__image_description] = STATE(681), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(141), - [sym_full_reference_link] = STATE(141), - [sym_collapsed_reference_link] = STATE(141), - [sym_inline_link] = STATE(141), - [sym_link_text] = STATE(680), - [sym_span] = STATE(538), - [sym__bracketed_text] = STATE(664), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(141), - [sym_raw_inline] = STATE(141), - [sym_math] = STATE(141), - [sym_verbatim] = STATE(141), - [sym__todo_highlights] = STATE(141), - [sym_todo] = STATE(141), - [sym_note] = STATE(141), - [sym__symbol_fallback] = STATE(141), - [aux_sym__text] = STATE(128), - [aux_sym__inline_repeat1] = STATE(119), - [anon_sym_LBRACE_] = ACTIONS(147), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_STAR] = ACTIONS(151), - [anon_sym_STAR] = ACTIONS(153), - [anon_sym_LBRACE_CARET] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_LBRACE_TILDE] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_LBRACE_EQ] = ACTIONS(159), - [anon_sym_LBRACE_PLUS] = ACTIONS(161), - [anon_sym_LBRACE_DASH] = ACTIONS(163), - [anon_sym_BSLASH] = ACTIONS(165), - [sym_quotation_marks] = ACTIONS(167), - [sym_ellipsis] = ACTIONS(167), - [sym_em_dash] = ACTIONS(167), - [sym_en_dash] = ACTIONS(169), - [sym_backslash_escape] = ACTIONS(169), - [anon_sym_LT] = ACTIONS(171), - [sym_symbol] = ACTIONS(167), - [anon_sym_LBRACK_CARET] = ACTIONS(173), - [anon_sym_BANG_LBRACK] = ACTIONS(175), - [anon_sym_LBRACK] = ACTIONS(177), - [anon_sym_DOLLAR] = ACTIONS(179), - [anon_sym_TODO] = ACTIONS(181), - [anon_sym_WIP] = ACTIONS(181), - [anon_sym_NOTE] = ACTIONS(183), - [anon_sym_INFO] = ACTIONS(183), - [anon_sym_XXX] = ACTIONS(183), - [sym_fixme] = ACTIONS(167), - [sym__whitespace1] = ACTIONS(185), - [sym__newline] = ACTIONS(187), - [aux_sym__text_token1] = ACTIONS(189), - [sym__verbatim_begin] = ACTIONS(191), + [sym__inline] = STATE(1065), + [sym__element] = STATE(121), + [sym_emphasis] = STATE(154), + [sym_emphasis_begin] = STATE(1244), + [sym_strong] = STATE(154), + [sym_strong_begin] = STATE(1245), + [sym_superscript] = STATE(154), + [sym_superscript_begin] = STATE(1246), + [sym_subscript] = STATE(154), + [sym_subscript_begin] = STATE(1247), + [sym_highlighted] = STATE(154), + [sym_highlighted_begin] = STATE(1248), + [sym_insert] = STATE(154), + [sym_insert_begin] = STATE(1249), + [sym_delete] = STATE(154), + [sym_delete_begin] = STATE(1250), + [sym_hard_line_break] = STATE(154), + [sym__smart_punctuation] = STATE(154), + [sym_autolink] = STATE(154), + [sym_footnote_reference] = STATE(154), + [sym_footnote_marker_begin] = STATE(1251), + [sym__image] = STATE(154), + [sym_full_reference_image] = STATE(154), + [sym_collapsed_reference_image] = STATE(154), + [sym_inline_image] = STATE(154), + [sym_image_description] = STATE(686), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(154), + [sym_full_reference_link] = STATE(154), + [sym_collapsed_reference_link] = STATE(154), + [sym_inline_link] = STATE(154), + [sym_link_text] = STATE(687), + [sym_span] = STATE(121), + [sym__bracketed_text_begin] = STATE(1271), + [sym__comment_with_spaces] = STATE(154), + [sym_raw_inline] = STATE(154), + [sym_math] = STATE(154), + [sym_verbatim] = STATE(154), + [sym__todo_highlights] = STATE(154), + [sym_todo] = STATE(154), + [sym_note] = STATE(154), + [sym__symbol_fallback] = STATE(154), + [aux_sym__text] = STATE(137), + [aux_sym__inline_repeat1] = STATE(121), + [anon_sym_LBRACE_] = ACTIONS(235), + [anon_sym__] = ACTIONS(237), + [anon_sym_LBRACE_STAR] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(241), + [anon_sym_LBRACE_CARET] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(243), + [anon_sym_LBRACE_TILDE] = ACTIONS(245), + [anon_sym_TILDE] = ACTIONS(245), + [anon_sym_LBRACE_EQ] = ACTIONS(247), + [anon_sym_LBRACE_PLUS] = ACTIONS(249), + [anon_sym_LBRACE_DASH] = ACTIONS(251), + [anon_sym_BSLASH] = ACTIONS(253), + [sym_quotation_marks] = ACTIONS(255), + [sym_ellipsis] = ACTIONS(255), + [sym_em_dash] = ACTIONS(255), + [sym_en_dash] = ACTIONS(257), + [sym_backslash_escape] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(259), + [sym_symbol] = ACTIONS(255), + [anon_sym_LBRACK_CARET] = ACTIONS(261), + [anon_sym_BANG_LBRACK] = ACTIONS(263), + [anon_sym_LBRACK] = ACTIONS(265), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_TODO] = ACTIONS(269), + [anon_sym_WIP] = ACTIONS(269), + [anon_sym_NOTE] = ACTIONS(271), + [anon_sym_INFO] = ACTIONS(271), + [anon_sym_XXX] = ACTIONS(271), + [sym_fixme] = ACTIONS(255), + [sym__whitespace1] = ACTIONS(273), + [sym__newline] = ACTIONS(275), + [aux_sym__text_token1] = ACTIONS(277), + [sym__verbatim_begin] = ACTIONS(279), }, [12] = { - [sym__inline] = STATE(950), - [sym__element] = STATE(47), - [sym_emphasis] = STATE(136), - [sym_emphasis_begin] = STATE(1209), - [sym_strong] = STATE(136), - [sym_strong_begin] = STATE(1210), - [sym_superscript] = STATE(136), - [sym_superscript_begin] = STATE(1211), - [sym_subscript] = STATE(136), - [sym_subscript_begin] = STATE(1212), - [sym_highlighted] = STATE(136), - [sym_highlighted_begin] = STATE(1213), - [sym_insert] = STATE(136), - [sym_insert_begin] = STATE(1214), - [sym_delete] = STATE(136), - [sym_delete_begin] = STATE(1215), - [sym_hard_line_break] = STATE(136), - [sym__smart_punctuation] = STATE(136), - [sym_autolink] = STATE(136), - [sym_footnote_reference] = STATE(136), - [sym_footnote_marker_begin] = STATE(1216), - [sym__image] = STATE(136), - [sym_full_reference_image] = STATE(136), - [sym_collapsed_reference_image] = STATE(136), - [sym_inline_image] = STATE(136), - [sym__image_description] = STATE(682), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(136), - [sym_full_reference_link] = STATE(136), - [sym_collapsed_reference_link] = STATE(136), - [sym_inline_link] = STATE(136), - [sym_link_text] = STATE(675), - [sym_span] = STATE(47), - [sym__bracketed_text] = STATE(674), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(136), - [sym_raw_inline] = STATE(136), - [sym_math] = STATE(136), - [sym_verbatim] = STATE(136), - [sym__todo_highlights] = STATE(136), - [sym_todo] = STATE(136), - [sym_note] = STATE(136), - [sym__symbol_fallback] = STATE(136), - [aux_sym__text] = STATE(127), - [aux_sym__inline_repeat1] = STATE(47), - [anon_sym_LBRACE_] = ACTIONS(377), - [anon_sym__] = ACTIONS(379), - [anon_sym_LBRACE_STAR] = ACTIONS(381), - [anon_sym_STAR] = ACTIONS(383), - [anon_sym_LBRACE_CARET] = ACTIONS(385), - [anon_sym_CARET] = ACTIONS(385), - [anon_sym_LBRACE_TILDE] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_LBRACE_EQ] = ACTIONS(389), - [anon_sym_LBRACE_PLUS] = ACTIONS(391), - [anon_sym_LBRACE_DASH] = ACTIONS(393), - [anon_sym_BSLASH] = ACTIONS(395), - [sym_quotation_marks] = ACTIONS(397), - [sym_ellipsis] = ACTIONS(397), - [sym_em_dash] = ACTIONS(397), - [sym_en_dash] = ACTIONS(399), - [sym_backslash_escape] = ACTIONS(399), - [anon_sym_LT] = ACTIONS(401), - [sym_symbol] = ACTIONS(397), - [anon_sym_LBRACK_CARET] = ACTIONS(403), - [anon_sym_BANG_LBRACK] = ACTIONS(405), - [anon_sym_LBRACK] = ACTIONS(407), - [anon_sym_DOLLAR] = ACTIONS(409), - [anon_sym_TODO] = ACTIONS(411), - [anon_sym_WIP] = ACTIONS(411), - [anon_sym_NOTE] = ACTIONS(413), - [anon_sym_INFO] = ACTIONS(413), - [anon_sym_XXX] = ACTIONS(413), - [sym_fixme] = ACTIONS(397), - [sym__whitespace1] = ACTIONS(415), - [sym__newline] = ACTIONS(417), - [aux_sym__text_token1] = ACTIONS(419), - [sym__verbatim_begin] = ACTIONS(421), + [sym__inline] = STATE(1049), + [sym__element] = STATE(121), + [sym_emphasis] = STATE(154), + [sym_emphasis_begin] = STATE(1244), + [sym_strong] = STATE(154), + [sym_strong_begin] = STATE(1245), + [sym_superscript] = STATE(154), + [sym_superscript_begin] = STATE(1246), + [sym_subscript] = STATE(154), + [sym_subscript_begin] = STATE(1247), + [sym_highlighted] = STATE(154), + [sym_highlighted_begin] = STATE(1248), + [sym_insert] = STATE(154), + [sym_insert_begin] = STATE(1249), + [sym_delete] = STATE(154), + [sym_delete_begin] = STATE(1250), + [sym_hard_line_break] = STATE(154), + [sym__smart_punctuation] = STATE(154), + [sym_autolink] = STATE(154), + [sym_footnote_reference] = STATE(154), + [sym_footnote_marker_begin] = STATE(1251), + [sym__image] = STATE(154), + [sym_full_reference_image] = STATE(154), + [sym_collapsed_reference_image] = STATE(154), + [sym_inline_image] = STATE(154), + [sym_image_description] = STATE(686), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(154), + [sym_full_reference_link] = STATE(154), + [sym_collapsed_reference_link] = STATE(154), + [sym_inline_link] = STATE(154), + [sym_link_text] = STATE(687), + [sym_span] = STATE(121), + [sym__bracketed_text_begin] = STATE(1271), + [sym__comment_with_spaces] = STATE(154), + [sym_raw_inline] = STATE(154), + [sym_math] = STATE(154), + [sym_verbatim] = STATE(154), + [sym__todo_highlights] = STATE(154), + [sym_todo] = STATE(154), + [sym_note] = STATE(154), + [sym__symbol_fallback] = STATE(154), + [aux_sym__text] = STATE(137), + [aux_sym__inline_repeat1] = STATE(121), + [anon_sym_LBRACE_] = ACTIONS(235), + [anon_sym__] = ACTIONS(237), + [anon_sym_LBRACE_STAR] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(241), + [anon_sym_LBRACE_CARET] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(243), + [anon_sym_LBRACE_TILDE] = ACTIONS(245), + [anon_sym_TILDE] = ACTIONS(245), + [anon_sym_LBRACE_EQ] = ACTIONS(247), + [anon_sym_LBRACE_PLUS] = ACTIONS(249), + [anon_sym_LBRACE_DASH] = ACTIONS(251), + [anon_sym_BSLASH] = ACTIONS(253), + [sym_quotation_marks] = ACTIONS(255), + [sym_ellipsis] = ACTIONS(255), + [sym_em_dash] = ACTIONS(255), + [sym_en_dash] = ACTIONS(257), + [sym_backslash_escape] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(259), + [sym_symbol] = ACTIONS(255), + [anon_sym_LBRACK_CARET] = ACTIONS(261), + [anon_sym_BANG_LBRACK] = ACTIONS(263), + [anon_sym_LBRACK] = ACTIONS(265), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_TODO] = ACTIONS(269), + [anon_sym_WIP] = ACTIONS(269), + [anon_sym_NOTE] = ACTIONS(271), + [anon_sym_INFO] = ACTIONS(271), + [anon_sym_XXX] = ACTIONS(271), + [sym_fixme] = ACTIONS(255), + [sym__whitespace1] = ACTIONS(273), + [sym__newline] = ACTIONS(275), + [aux_sym__text_token1] = ACTIONS(277), + [sym__verbatim_begin] = ACTIONS(279), }, [13] = { - [sym__inline_without_trailing_space] = STATE(1145), - [sym__element] = STATE(572), - [sym_emphasis] = STATE(138), - [sym_emphasis_begin] = STATE(1161), - [sym_strong] = STATE(138), - [sym_strong_begin] = STATE(1162), - [sym_superscript] = STATE(138), - [sym_superscript_begin] = STATE(1163), - [sym_subscript] = STATE(138), - [sym_subscript_begin] = STATE(1164), - [sym_highlighted] = STATE(138), - [sym_highlighted_begin] = STATE(1165), - [sym_insert] = STATE(138), - [sym_insert_begin] = STATE(1166), - [sym_delete] = STATE(138), - [sym_delete_begin] = STATE(1167), - [sym_hard_line_break] = STATE(138), - [sym__smart_punctuation] = STATE(138), - [sym_autolink] = STATE(138), - [sym_footnote_reference] = STATE(138), - [sym_footnote_marker_begin] = STATE(1168), - [sym__image] = STATE(138), - [sym_full_reference_image] = STATE(138), - [sym_collapsed_reference_image] = STATE(138), - [sym_inline_image] = STATE(138), - [sym__image_description] = STATE(703), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(138), - [sym_full_reference_link] = STATE(138), - [sym_collapsed_reference_link] = STATE(138), - [sym_inline_link] = STATE(138), - [sym_link_text] = STATE(697), - [sym_span] = STATE(572), - [sym__bracketed_text] = STATE(671), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(138), - [sym_raw_inline] = STATE(138), - [sym_math] = STATE(138), - [sym_verbatim] = STATE(138), - [sym__todo_highlights] = STATE(138), - [sym_todo] = STATE(138), - [sym_note] = STATE(138), - [sym__symbol_fallback] = STATE(138), - [aux_sym__text] = STATE(122), - [aux_sym__inline_repeat1] = STATE(120), - [anon_sym_LBRACE_] = ACTIONS(331), - [anon_sym__] = ACTIONS(333), - [anon_sym_LBRACE_STAR] = ACTIONS(335), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_LBRACE_CARET] = ACTIONS(339), - [anon_sym_CARET] = ACTIONS(339), - [anon_sym_LBRACE_TILDE] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_LBRACE_EQ] = ACTIONS(343), - [anon_sym_LBRACE_PLUS] = ACTIONS(345), - [anon_sym_LBRACE_DASH] = ACTIONS(347), - [anon_sym_BSLASH] = ACTIONS(349), - [sym_quotation_marks] = ACTIONS(351), - [sym_ellipsis] = ACTIONS(351), - [sym_em_dash] = ACTIONS(351), - [sym_en_dash] = ACTIONS(353), - [sym_backslash_escape] = ACTIONS(353), - [anon_sym_LT] = ACTIONS(355), - [sym_symbol] = ACTIONS(351), - [anon_sym_LBRACK_CARET] = ACTIONS(357), - [anon_sym_BANG_LBRACK] = ACTIONS(359), - [anon_sym_LBRACK] = ACTIONS(361), - [anon_sym_DOLLAR] = ACTIONS(363), - [anon_sym_TODO] = ACTIONS(365), - [anon_sym_WIP] = ACTIONS(365), - [anon_sym_NOTE] = ACTIONS(367), - [anon_sym_INFO] = ACTIONS(367), - [anon_sym_XXX] = ACTIONS(367), - [sym_fixme] = ACTIONS(351), - [sym__whitespace1] = ACTIONS(369), - [sym__newline] = ACTIONS(371), - [aux_sym__text_token1] = ACTIONS(373), - [sym__verbatim_begin] = ACTIONS(375), + [sym__inline] = STATE(1033), + [sym__element] = STATE(121), + [sym_emphasis] = STATE(154), + [sym_emphasis_begin] = STATE(1244), + [sym_strong] = STATE(154), + [sym_strong_begin] = STATE(1245), + [sym_superscript] = STATE(154), + [sym_superscript_begin] = STATE(1246), + [sym_subscript] = STATE(154), + [sym_subscript_begin] = STATE(1247), + [sym_highlighted] = STATE(154), + [sym_highlighted_begin] = STATE(1248), + [sym_insert] = STATE(154), + [sym_insert_begin] = STATE(1249), + [sym_delete] = STATE(154), + [sym_delete_begin] = STATE(1250), + [sym_hard_line_break] = STATE(154), + [sym__smart_punctuation] = STATE(154), + [sym_autolink] = STATE(154), + [sym_footnote_reference] = STATE(154), + [sym_footnote_marker_begin] = STATE(1251), + [sym__image] = STATE(154), + [sym_full_reference_image] = STATE(154), + [sym_collapsed_reference_image] = STATE(154), + [sym_inline_image] = STATE(154), + [sym_image_description] = STATE(686), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(154), + [sym_full_reference_link] = STATE(154), + [sym_collapsed_reference_link] = STATE(154), + [sym_inline_link] = STATE(154), + [sym_link_text] = STATE(687), + [sym_span] = STATE(121), + [sym__bracketed_text_begin] = STATE(1271), + [sym__comment_with_spaces] = STATE(154), + [sym_raw_inline] = STATE(154), + [sym_math] = STATE(154), + [sym_verbatim] = STATE(154), + [sym__todo_highlights] = STATE(154), + [sym_todo] = STATE(154), + [sym_note] = STATE(154), + [sym__symbol_fallback] = STATE(154), + [aux_sym__text] = STATE(137), + [aux_sym__inline_repeat1] = STATE(121), + [anon_sym_LBRACE_] = ACTIONS(235), + [anon_sym__] = ACTIONS(237), + [anon_sym_LBRACE_STAR] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(241), + [anon_sym_LBRACE_CARET] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(243), + [anon_sym_LBRACE_TILDE] = ACTIONS(245), + [anon_sym_TILDE] = ACTIONS(245), + [anon_sym_LBRACE_EQ] = ACTIONS(247), + [anon_sym_LBRACE_PLUS] = ACTIONS(249), + [anon_sym_LBRACE_DASH] = ACTIONS(251), + [anon_sym_BSLASH] = ACTIONS(253), + [sym_quotation_marks] = ACTIONS(255), + [sym_ellipsis] = ACTIONS(255), + [sym_em_dash] = ACTIONS(255), + [sym_en_dash] = ACTIONS(257), + [sym_backslash_escape] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(259), + [sym_symbol] = ACTIONS(255), + [anon_sym_LBRACK_CARET] = ACTIONS(261), + [anon_sym_BANG_LBRACK] = ACTIONS(263), + [anon_sym_LBRACK] = ACTIONS(265), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_TODO] = ACTIONS(269), + [anon_sym_WIP] = ACTIONS(269), + [anon_sym_NOTE] = ACTIONS(271), + [anon_sym_INFO] = ACTIONS(271), + [anon_sym_XXX] = ACTIONS(271), + [sym_fixme] = ACTIONS(255), + [sym__whitespace1] = ACTIONS(273), + [sym__newline] = ACTIONS(275), + [aux_sym__text_token1] = ACTIONS(277), + [sym__verbatim_begin] = ACTIONS(279), }, [14] = { - [sym__element] = STATE(65), - [sym_emphasis] = STATE(133), - [sym_emphasis_begin] = STATE(1201), - [sym_strong] = STATE(133), - [sym_strong_begin] = STATE(1202), - [sym_superscript] = STATE(133), - [sym_superscript_begin] = STATE(1203), - [sym_subscript] = STATE(133), - [sym_subscript_begin] = STATE(1204), - [sym_highlighted] = STATE(133), - [sym_highlighted_begin] = STATE(1205), - [sym_insert] = STATE(133), - [sym_insert_begin] = STATE(1206), - [sym_delete] = STATE(133), - [sym_delete_begin] = STATE(1207), - [sym_hard_line_break] = STATE(133), - [sym__smart_punctuation] = STATE(133), - [sym_autolink] = STATE(133), - [sym_footnote_reference] = STATE(133), - [sym_footnote_marker_begin] = STATE(1208), - [sym__image] = STATE(133), - [sym_full_reference_image] = STATE(133), - [sym_collapsed_reference_image] = STATE(133), - [sym_inline_image] = STATE(133), - [sym__image_description] = STATE(688), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(133), - [sym_full_reference_link] = STATE(133), - [sym_collapsed_reference_link] = STATE(133), - [sym_inline_link] = STATE(133), - [sym_link_text] = STATE(686), - [sym_span] = STATE(65), - [sym__bracketed_text] = STATE(673), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(133), - [sym_raw_inline] = STATE(133), - [sym_math] = STATE(133), - [sym_verbatim] = STATE(133), - [sym__todo_highlights] = STATE(133), - [sym_todo] = STATE(133), - [sym_note] = STATE(133), - [sym__symbol_fallback] = STATE(133), - [aux_sym__text] = STATE(129), - [aux_sym__inline_repeat1] = STATE(65), - [anon_sym_LBRACE_] = ACTIONS(423), - [anon_sym__] = ACTIONS(425), - [anon_sym_LBRACE_STAR] = ACTIONS(427), - [anon_sym_STAR] = ACTIONS(429), - [anon_sym_LBRACE_CARET] = ACTIONS(431), - [anon_sym_CARET] = ACTIONS(431), - [anon_sym_LBRACE_TILDE] = ACTIONS(433), - [anon_sym_TILDE] = ACTIONS(433), - [anon_sym_LBRACE_EQ] = ACTIONS(435), - [anon_sym_LBRACE_PLUS] = ACTIONS(437), - [anon_sym_LBRACE_DASH] = ACTIONS(439), - [anon_sym_BSLASH] = ACTIONS(441), - [sym_quotation_marks] = ACTIONS(443), - [sym_ellipsis] = ACTIONS(443), - [sym_em_dash] = ACTIONS(443), - [sym_en_dash] = ACTIONS(445), - [sym_backslash_escape] = ACTIONS(445), - [anon_sym_LT] = ACTIONS(447), - [sym_symbol] = ACTIONS(443), - [anon_sym_LBRACK_CARET] = ACTIONS(449), - [anon_sym_BANG_LBRACK] = ACTIONS(451), - [anon_sym_LBRACK] = ACTIONS(453), - [anon_sym_DOLLAR] = ACTIONS(455), - [anon_sym_TODO] = ACTIONS(457), - [anon_sym_WIP] = ACTIONS(457), - [anon_sym_NOTE] = ACTIONS(459), - [anon_sym_INFO] = ACTIONS(459), - [anon_sym_XXX] = ACTIONS(459), - [sym_fixme] = ACTIONS(443), - [sym__whitespace1] = ACTIONS(461), - [sym__newline] = ACTIONS(463), - [aux_sym__text_token1] = ACTIONS(465), - [sym__verbatim_begin] = ACTIONS(467), - [sym_delete_end] = ACTIONS(143), - }, - [15] = { - [sym__inline] = STATE(948), [sym__element] = STATE(14), - [sym_emphasis] = STATE(133), - [sym_emphasis_begin] = STATE(1201), - [sym_strong] = STATE(133), - [sym_strong_begin] = STATE(1202), - [sym_superscript] = STATE(133), - [sym_superscript_begin] = STATE(1203), - [sym_subscript] = STATE(133), - [sym_subscript_begin] = STATE(1204), - [sym_highlighted] = STATE(133), - [sym_highlighted_begin] = STATE(1205), - [sym_insert] = STATE(133), - [sym_insert_begin] = STATE(1206), - [sym_delete] = STATE(133), - [sym_delete_begin] = STATE(1207), - [sym_hard_line_break] = STATE(133), - [sym__smart_punctuation] = STATE(133), - [sym_autolink] = STATE(133), - [sym_footnote_reference] = STATE(133), - [sym_footnote_marker_begin] = STATE(1208), - [sym__image] = STATE(133), - [sym_full_reference_image] = STATE(133), - [sym_collapsed_reference_image] = STATE(133), - [sym_inline_image] = STATE(133), - [sym__image_description] = STATE(688), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(133), - [sym_full_reference_link] = STATE(133), - [sym_collapsed_reference_link] = STATE(133), - [sym_inline_link] = STATE(133), - [sym_link_text] = STATE(686), + [sym_emphasis] = STATE(149), + [sym_emphasis_begin] = STATE(1199), + [sym_strong] = STATE(149), + [sym_strong_begin] = STATE(1200), + [sym_superscript] = STATE(149), + [sym_superscript_begin] = STATE(1201), + [sym_subscript] = STATE(149), + [sym_subscript_begin] = STATE(1202), + [sym_highlighted] = STATE(149), + [sym_highlighted_begin] = STATE(1203), + [sym_insert] = STATE(149), + [sym_insert_begin] = STATE(1204), + [sym_delete] = STATE(149), + [sym_delete_begin] = STATE(1205), + [sym_hard_line_break] = STATE(149), + [sym__smart_punctuation] = STATE(149), + [sym_autolink] = STATE(149), + [sym_footnote_reference] = STATE(149), + [sym_footnote_marker_begin] = STATE(1206), + [sym__image] = STATE(149), + [sym_full_reference_image] = STATE(149), + [sym_collapsed_reference_image] = STATE(149), + [sym_inline_image] = STATE(149), + [sym_image_description] = STATE(714), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(149), + [sym_full_reference_link] = STATE(149), + [sym_collapsed_reference_link] = STATE(149), + [sym_inline_link] = STATE(149), + [sym_link_text] = STATE(710), [sym_span] = STATE(14), - [sym__bracketed_text] = STATE(673), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(133), - [sym_raw_inline] = STATE(133), - [sym_math] = STATE(133), - [sym_verbatim] = STATE(133), - [sym__todo_highlights] = STATE(133), - [sym_todo] = STATE(133), - [sym_note] = STATE(133), - [sym__symbol_fallback] = STATE(133), - [aux_sym__text] = STATE(129), + [sym__bracketed_text_begin] = STATE(1266), + [sym__comment_with_spaces] = STATE(149), + [sym_raw_inline] = STATE(149), + [sym_math] = STATE(149), + [sym_verbatim] = STATE(149), + [sym__todo_highlights] = STATE(149), + [sym_todo] = STATE(149), + [sym_note] = STATE(149), + [sym__symbol_fallback] = STATE(149), + [aux_sym__text] = STATE(142), [aux_sym__inline_repeat1] = STATE(14), - [anon_sym_LBRACE_] = ACTIONS(423), - [anon_sym__] = ACTIONS(425), - [anon_sym_LBRACE_STAR] = ACTIONS(427), - [anon_sym_STAR] = ACTIONS(429), - [anon_sym_LBRACE_CARET] = ACTIONS(431), - [anon_sym_CARET] = ACTIONS(431), - [anon_sym_LBRACE_TILDE] = ACTIONS(433), - [anon_sym_TILDE] = ACTIONS(433), - [anon_sym_LBRACE_EQ] = ACTIONS(435), - [anon_sym_LBRACE_PLUS] = ACTIONS(437), - [anon_sym_LBRACE_DASH] = ACTIONS(439), - [anon_sym_BSLASH] = ACTIONS(441), - [sym_quotation_marks] = ACTIONS(443), - [sym_ellipsis] = ACTIONS(443), - [sym_em_dash] = ACTIONS(443), - [sym_en_dash] = ACTIONS(445), - [sym_backslash_escape] = ACTIONS(445), - [anon_sym_LT] = ACTIONS(447), - [sym_symbol] = ACTIONS(443), - [anon_sym_LBRACK_CARET] = ACTIONS(449), - [anon_sym_BANG_LBRACK] = ACTIONS(451), - [anon_sym_LBRACK] = ACTIONS(453), - [anon_sym_DOLLAR] = ACTIONS(455), - [anon_sym_TODO] = ACTIONS(457), - [anon_sym_WIP] = ACTIONS(457), - [anon_sym_NOTE] = ACTIONS(459), - [anon_sym_INFO] = ACTIONS(459), - [anon_sym_XXX] = ACTIONS(459), - [sym_fixme] = ACTIONS(443), - [sym__whitespace1] = ACTIONS(461), - [sym__newline] = ACTIONS(469), - [aux_sym__text_token1] = ACTIONS(465), - [sym__verbatim_begin] = ACTIONS(467), + [anon_sym_LBRACE_] = ACTIONS(285), + [anon_sym__] = ACTIONS(288), + [anon_sym_LBRACE_STAR] = ACTIONS(291), + [anon_sym_STAR] = ACTIONS(294), + [anon_sym_LBRACE_CARET] = ACTIONS(297), + [anon_sym_CARET] = ACTIONS(297), + [anon_sym_LBRACE_TILDE] = ACTIONS(300), + [anon_sym_TILDE] = ACTIONS(300), + [anon_sym_LBRACE_EQ] = ACTIONS(303), + [anon_sym_LBRACE_PLUS] = ACTIONS(306), + [anon_sym_LBRACE_DASH] = ACTIONS(309), + [anon_sym_BSLASH] = ACTIONS(312), + [sym_quotation_marks] = ACTIONS(315), + [sym_ellipsis] = ACTIONS(315), + [sym_em_dash] = ACTIONS(315), + [sym_en_dash] = ACTIONS(318), + [sym_backslash_escape] = ACTIONS(318), + [anon_sym_LT] = ACTIONS(321), + [sym_symbol] = ACTIONS(315), + [anon_sym_LBRACK_CARET] = ACTIONS(324), + [anon_sym_BANG_LBRACK] = ACTIONS(327), + [anon_sym_LBRACK] = ACTIONS(330), + [anon_sym_DOLLAR] = ACTIONS(333), + [anon_sym_TODO] = ACTIONS(336), + [anon_sym_WIP] = ACTIONS(336), + [anon_sym_NOTE] = ACTIONS(339), + [anon_sym_INFO] = ACTIONS(339), + [anon_sym_XXX] = ACTIONS(339), + [sym_fixme] = ACTIONS(315), + [sym__whitespace1] = ACTIONS(342), + [sym__newline] = ACTIONS(345), + [aux_sym__text_token1] = ACTIONS(348), + [sym__verbatim_begin] = ACTIONS(351), + [sym_highlighted_end] = ACTIONS(354), }, - [16] = { - [sym__inline] = STATE(947), - [sym__element] = STATE(3), - [sym_emphasis] = STATE(137), - [sym_emphasis_begin] = STATE(1193), - [sym_strong] = STATE(137), - [sym_strong_begin] = STATE(1194), - [sym_superscript] = STATE(137), - [sym_superscript_begin] = STATE(1195), - [sym_subscript] = STATE(137), - [sym_subscript_begin] = STATE(1196), - [sym_highlighted] = STATE(137), - [sym_highlighted_begin] = STATE(1197), - [sym_insert] = STATE(137), - [sym_insert_begin] = STATE(1198), - [sym_delete] = STATE(137), - [sym_delete_begin] = STATE(1199), - [sym_hard_line_break] = STATE(137), - [sym__smart_punctuation] = STATE(137), - [sym_autolink] = STATE(137), - [sym_footnote_reference] = STATE(137), - [sym_footnote_marker_begin] = STATE(1200), - [sym__image] = STATE(137), - [sym_full_reference_image] = STATE(137), - [sym_collapsed_reference_image] = STATE(137), - [sym_inline_image] = STATE(137), - [sym__image_description] = STATE(694), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(137), - [sym_full_reference_link] = STATE(137), - [sym_collapsed_reference_link] = STATE(137), - [sym_inline_link] = STATE(137), - [sym_link_text] = STATE(693), - [sym_span] = STATE(3), - [sym__bracketed_text] = STATE(672), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(137), - [sym_raw_inline] = STATE(137), - [sym_math] = STATE(137), - [sym_verbatim] = STATE(137), - [sym__todo_highlights] = STATE(137), - [sym_todo] = STATE(137), - [sym_note] = STATE(137), - [sym__symbol_fallback] = STATE(137), - [aux_sym__text] = STATE(131), - [aux_sym__inline_repeat1] = STATE(3), + [15] = { + [sym__inline] = STATE(1009), + [sym__element] = STATE(7), + [sym_emphasis] = STATE(153), + [sym_emphasis_begin] = STATE(1208), + [sym_strong] = STATE(153), + [sym_strong_begin] = STATE(1209), + [sym_superscript] = STATE(153), + [sym_superscript_begin] = STATE(1210), + [sym_subscript] = STATE(153), + [sym_subscript_begin] = STATE(1211), + [sym_highlighted] = STATE(153), + [sym_highlighted_begin] = STATE(1212), + [sym_insert] = STATE(153), + [sym_insert_begin] = STATE(1213), + [sym_delete] = STATE(153), + [sym_delete_begin] = STATE(1214), + [sym_hard_line_break] = STATE(153), + [sym__smart_punctuation] = STATE(153), + [sym_autolink] = STATE(153), + [sym_footnote_reference] = STATE(153), + [sym_footnote_marker_begin] = STATE(1215), + [sym__image] = STATE(153), + [sym_full_reference_image] = STATE(153), + [sym_collapsed_reference_image] = STATE(153), + [sym_inline_image] = STATE(153), + [sym_image_description] = STATE(707), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(153), + [sym_full_reference_link] = STATE(153), + [sym_collapsed_reference_link] = STATE(153), + [sym_inline_link] = STATE(153), + [sym_link_text] = STATE(705), + [sym_span] = STATE(7), + [sym__bracketed_text_begin] = STATE(1267), + [sym__comment_with_spaces] = STATE(153), + [sym_raw_inline] = STATE(153), + [sym_math] = STATE(153), + [sym_verbatim] = STATE(153), + [sym__todo_highlights] = STATE(153), + [sym_todo] = STATE(153), + [sym_note] = STATE(153), + [sym__symbol_fallback] = STATE(153), + [aux_sym__text] = STATE(134), + [aux_sym__inline_repeat1] = STATE(7), [anon_sym_LBRACE_] = ACTIONS(97), [anon_sym__] = ACTIONS(99), [anon_sym_LBRACE_STAR] = ACTIONS(101), @@ -6535,936 +6497,608 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_XXX] = ACTIONS(133), [sym_fixme] = ACTIONS(117), [sym__whitespace1] = ACTIONS(135), - [sym__newline] = ACTIONS(145), + [sym__newline] = ACTIONS(137), [aux_sym__text_token1] = ACTIONS(139), [sym__verbatim_begin] = ACTIONS(141), }, + [16] = { + [sym__inline] = STATE(1017), + [sym__element] = STATE(121), + [sym_emphasis] = STATE(154), + [sym_emphasis_begin] = STATE(1244), + [sym_strong] = STATE(154), + [sym_strong_begin] = STATE(1245), + [sym_superscript] = STATE(154), + [sym_superscript_begin] = STATE(1246), + [sym_subscript] = STATE(154), + [sym_subscript_begin] = STATE(1247), + [sym_highlighted] = STATE(154), + [sym_highlighted_begin] = STATE(1248), + [sym_insert] = STATE(154), + [sym_insert_begin] = STATE(1249), + [sym_delete] = STATE(154), + [sym_delete_begin] = STATE(1250), + [sym_hard_line_break] = STATE(154), + [sym__smart_punctuation] = STATE(154), + [sym_autolink] = STATE(154), + [sym_footnote_reference] = STATE(154), + [sym_footnote_marker_begin] = STATE(1251), + [sym__image] = STATE(154), + [sym_full_reference_image] = STATE(154), + [sym_collapsed_reference_image] = STATE(154), + [sym_inline_image] = STATE(154), + [sym_image_description] = STATE(686), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(154), + [sym_full_reference_link] = STATE(154), + [sym_collapsed_reference_link] = STATE(154), + [sym_inline_link] = STATE(154), + [sym_link_text] = STATE(687), + [sym_span] = STATE(121), + [sym__bracketed_text_begin] = STATE(1271), + [sym__comment_with_spaces] = STATE(154), + [sym_raw_inline] = STATE(154), + [sym_math] = STATE(154), + [sym_verbatim] = STATE(154), + [sym__todo_highlights] = STATE(154), + [sym_todo] = STATE(154), + [sym_note] = STATE(154), + [sym__symbol_fallback] = STATE(154), + [aux_sym__text] = STATE(137), + [aux_sym__inline_repeat1] = STATE(121), + [anon_sym_LBRACE_] = ACTIONS(235), + [anon_sym__] = ACTIONS(237), + [anon_sym_LBRACE_STAR] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(241), + [anon_sym_LBRACE_CARET] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(243), + [anon_sym_LBRACE_TILDE] = ACTIONS(245), + [anon_sym_TILDE] = ACTIONS(245), + [anon_sym_LBRACE_EQ] = ACTIONS(247), + [anon_sym_LBRACE_PLUS] = ACTIONS(249), + [anon_sym_LBRACE_DASH] = ACTIONS(251), + [anon_sym_BSLASH] = ACTIONS(253), + [sym_quotation_marks] = ACTIONS(255), + [sym_ellipsis] = ACTIONS(255), + [sym_em_dash] = ACTIONS(255), + [sym_en_dash] = ACTIONS(257), + [sym_backslash_escape] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(259), + [sym_symbol] = ACTIONS(255), + [anon_sym_LBRACK_CARET] = ACTIONS(261), + [anon_sym_BANG_LBRACK] = ACTIONS(263), + [anon_sym_LBRACK] = ACTIONS(265), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_TODO] = ACTIONS(269), + [anon_sym_WIP] = ACTIONS(269), + [anon_sym_NOTE] = ACTIONS(271), + [anon_sym_INFO] = ACTIONS(271), + [anon_sym_XXX] = ACTIONS(271), + [sym_fixme] = ACTIONS(255), + [sym__whitespace1] = ACTIONS(273), + [sym__newline] = ACTIONS(275), + [aux_sym__text_token1] = ACTIONS(277), + [sym__verbatim_begin] = ACTIONS(279), + }, [17] = { - [sym__inline] = STATE(946), - [sym__element] = STATE(107), - [sym_emphasis] = STATE(140), - [sym_emphasis_begin] = STATE(1185), - [sym_strong] = STATE(140), - [sym_strong_begin] = STATE(1186), - [sym_superscript] = STATE(140), - [sym_superscript_begin] = STATE(1187), - [sym_subscript] = STATE(140), - [sym_subscript_begin] = STATE(1188), - [sym_highlighted] = STATE(140), - [sym_highlighted_begin] = STATE(1189), - [sym_insert] = STATE(140), - [sym_insert_begin] = STATE(1190), - [sym_delete] = STATE(140), - [sym_delete_begin] = STATE(1191), - [sym_hard_line_break] = STATE(140), - [sym__smart_punctuation] = STATE(140), - [sym_autolink] = STATE(140), - [sym_footnote_reference] = STATE(140), - [sym_footnote_marker_begin] = STATE(1192), - [sym__image] = STATE(140), - [sym_full_reference_image] = STATE(140), - [sym_collapsed_reference_image] = STATE(140), - [sym_inline_image] = STATE(140), - [sym__image_description] = STATE(700), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(140), - [sym_full_reference_link] = STATE(140), - [sym_collapsed_reference_link] = STATE(140), - [sym_inline_link] = STATE(140), - [sym_link_text] = STATE(699), - [sym_span] = STATE(107), - [sym__bracketed_text] = STATE(666), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(140), - [sym_raw_inline] = STATE(140), - [sym_math] = STATE(140), - [sym_verbatim] = STATE(140), - [sym__todo_highlights] = STATE(140), - [sym_todo] = STATE(140), - [sym_note] = STATE(140), - [sym__symbol_fallback] = STATE(140), - [aux_sym__text] = STATE(125), - [aux_sym__inline_repeat1] = STATE(107), - [anon_sym_LBRACE_] = ACTIONS(193), - [anon_sym__] = ACTIONS(195), - [anon_sym_LBRACE_STAR] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(199), - [anon_sym_LBRACE_CARET] = ACTIONS(201), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_LBRACE_TILDE] = ACTIONS(203), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_LBRACE_EQ] = ACTIONS(205), - [anon_sym_LBRACE_PLUS] = ACTIONS(207), - [anon_sym_LBRACE_DASH] = ACTIONS(209), - [anon_sym_BSLASH] = ACTIONS(211), - [sym_quotation_marks] = ACTIONS(213), - [sym_ellipsis] = ACTIONS(213), - [sym_em_dash] = ACTIONS(213), - [sym_en_dash] = ACTIONS(215), - [sym_backslash_escape] = ACTIONS(215), - [anon_sym_LT] = ACTIONS(217), - [sym_symbol] = ACTIONS(213), - [anon_sym_LBRACK_CARET] = ACTIONS(219), - [anon_sym_BANG_LBRACK] = ACTIONS(221), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_DOLLAR] = ACTIONS(225), - [anon_sym_TODO] = ACTIONS(227), - [anon_sym_WIP] = ACTIONS(227), - [anon_sym_NOTE] = ACTIONS(229), - [anon_sym_INFO] = ACTIONS(229), - [anon_sym_XXX] = ACTIONS(229), - [sym_fixme] = ACTIONS(213), - [sym__whitespace1] = ACTIONS(231), - [sym__newline] = ACTIONS(233), - [aux_sym__text_token1] = ACTIONS(235), - [sym__verbatim_begin] = ACTIONS(237), + [sym__inline] = STATE(1001), + [sym__element] = STATE(121), + [sym_emphasis] = STATE(154), + [sym_emphasis_begin] = STATE(1244), + [sym_strong] = STATE(154), + [sym_strong_begin] = STATE(1245), + [sym_superscript] = STATE(154), + [sym_superscript_begin] = STATE(1246), + [sym_subscript] = STATE(154), + [sym_subscript_begin] = STATE(1247), + [sym_highlighted] = STATE(154), + [sym_highlighted_begin] = STATE(1248), + [sym_insert] = STATE(154), + [sym_insert_begin] = STATE(1249), + [sym_delete] = STATE(154), + [sym_delete_begin] = STATE(1250), + [sym_hard_line_break] = STATE(154), + [sym__smart_punctuation] = STATE(154), + [sym_autolink] = STATE(154), + [sym_footnote_reference] = STATE(154), + [sym_footnote_marker_begin] = STATE(1251), + [sym__image] = STATE(154), + [sym_full_reference_image] = STATE(154), + [sym_collapsed_reference_image] = STATE(154), + [sym_inline_image] = STATE(154), + [sym_image_description] = STATE(686), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(154), + [sym_full_reference_link] = STATE(154), + [sym_collapsed_reference_link] = STATE(154), + [sym_inline_link] = STATE(154), + [sym_link_text] = STATE(687), + [sym_span] = STATE(121), + [sym__bracketed_text_begin] = STATE(1271), + [sym__comment_with_spaces] = STATE(154), + [sym_raw_inline] = STATE(154), + [sym_math] = STATE(154), + [sym_verbatim] = STATE(154), + [sym__todo_highlights] = STATE(154), + [sym_todo] = STATE(154), + [sym_note] = STATE(154), + [sym__symbol_fallback] = STATE(154), + [aux_sym__text] = STATE(137), + [aux_sym__inline_repeat1] = STATE(121), + [anon_sym_LBRACE_] = ACTIONS(235), + [anon_sym__] = ACTIONS(237), + [anon_sym_LBRACE_STAR] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(241), + [anon_sym_LBRACE_CARET] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(243), + [anon_sym_LBRACE_TILDE] = ACTIONS(245), + [anon_sym_TILDE] = ACTIONS(245), + [anon_sym_LBRACE_EQ] = ACTIONS(247), + [anon_sym_LBRACE_PLUS] = ACTIONS(249), + [anon_sym_LBRACE_DASH] = ACTIONS(251), + [anon_sym_BSLASH] = ACTIONS(253), + [sym_quotation_marks] = ACTIONS(255), + [sym_ellipsis] = ACTIONS(255), + [sym_em_dash] = ACTIONS(255), + [sym_en_dash] = ACTIONS(257), + [sym_backslash_escape] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(259), + [sym_symbol] = ACTIONS(255), + [anon_sym_LBRACK_CARET] = ACTIONS(261), + [anon_sym_BANG_LBRACK] = ACTIONS(263), + [anon_sym_LBRACK] = ACTIONS(265), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_TODO] = ACTIONS(269), + [anon_sym_WIP] = ACTIONS(269), + [anon_sym_NOTE] = ACTIONS(271), + [anon_sym_INFO] = ACTIONS(271), + [anon_sym_XXX] = ACTIONS(271), + [sym_fixme] = ACTIONS(255), + [sym__whitespace1] = ACTIONS(273), + [sym__newline] = ACTIONS(275), + [aux_sym__text_token1] = ACTIONS(277), + [sym__verbatim_begin] = ACTIONS(279), }, [18] = { - [sym__inline_without_trailing_space] = STATE(1013), - [sym__element] = STATE(538), - [sym_emphasis] = STATE(141), - [sym_emphasis_begin] = STATE(1153), - [sym_strong] = STATE(141), - [sym_strong_begin] = STATE(1154), - [sym_superscript] = STATE(141), - [sym_superscript_begin] = STATE(1155), - [sym_subscript] = STATE(141), - [sym_subscript_begin] = STATE(1156), - [sym_highlighted] = STATE(141), - [sym_highlighted_begin] = STATE(1157), - [sym_insert] = STATE(141), - [sym_insert_begin] = STATE(1158), - [sym_delete] = STATE(141), - [sym_delete_begin] = STATE(1159), - [sym_hard_line_break] = STATE(141), - [sym__smart_punctuation] = STATE(141), - [sym_autolink] = STATE(141), - [sym_footnote_reference] = STATE(141), - [sym_footnote_marker_begin] = STATE(1160), - [sym__image] = STATE(141), - [sym_full_reference_image] = STATE(141), - [sym_collapsed_reference_image] = STATE(141), - [sym_inline_image] = STATE(141), - [sym__image_description] = STATE(681), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(141), - [sym_full_reference_link] = STATE(141), - [sym_collapsed_reference_link] = STATE(141), - [sym_inline_link] = STATE(141), - [sym_link_text] = STATE(680), - [sym_span] = STATE(538), - [sym__bracketed_text] = STATE(664), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(141), - [sym_raw_inline] = STATE(141), - [sym_math] = STATE(141), - [sym_verbatim] = STATE(141), - [sym__todo_highlights] = STATE(141), - [sym_todo] = STATE(141), - [sym_note] = STATE(141), - [sym__symbol_fallback] = STATE(141), - [aux_sym__text] = STATE(128), - [aux_sym__inline_repeat1] = STATE(119), - [anon_sym_LBRACE_] = ACTIONS(147), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_STAR] = ACTIONS(151), - [anon_sym_STAR] = ACTIONS(153), - [anon_sym_LBRACE_CARET] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_LBRACE_TILDE] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_LBRACE_EQ] = ACTIONS(159), - [anon_sym_LBRACE_PLUS] = ACTIONS(161), - [anon_sym_LBRACE_DASH] = ACTIONS(163), - [anon_sym_BSLASH] = ACTIONS(165), - [sym_quotation_marks] = ACTIONS(167), - [sym_ellipsis] = ACTIONS(167), - [sym_em_dash] = ACTIONS(167), - [sym_en_dash] = ACTIONS(169), - [sym_backslash_escape] = ACTIONS(169), - [anon_sym_LT] = ACTIONS(171), - [sym_symbol] = ACTIONS(167), - [anon_sym_LBRACK_CARET] = ACTIONS(173), - [anon_sym_BANG_LBRACK] = ACTIONS(175), - [anon_sym_LBRACK] = ACTIONS(177), - [anon_sym_DOLLAR] = ACTIONS(179), - [anon_sym_TODO] = ACTIONS(181), - [anon_sym_WIP] = ACTIONS(181), - [anon_sym_NOTE] = ACTIONS(183), - [anon_sym_INFO] = ACTIONS(183), - [anon_sym_XXX] = ACTIONS(183), - [sym_fixme] = ACTIONS(167), - [sym__whitespace1] = ACTIONS(185), - [sym__newline] = ACTIONS(187), - [aux_sym__text_token1] = ACTIONS(189), - [sym__verbatim_begin] = ACTIONS(191), + [sym__inline] = STATE(981), + [sym__element] = STATE(84), + [sym_emphasis] = STATE(146), + [sym_emphasis_begin] = STATE(1226), + [sym_strong] = STATE(146), + [sym_strong_begin] = STATE(1227), + [sym_superscript] = STATE(146), + [sym_superscript_begin] = STATE(1228), + [sym_subscript] = STATE(146), + [sym_subscript_begin] = STATE(1229), + [sym_highlighted] = STATE(146), + [sym_highlighted_begin] = STATE(1230), + [sym_insert] = STATE(146), + [sym_insert_begin] = STATE(1231), + [sym_delete] = STATE(146), + [sym_delete_begin] = STATE(1232), + [sym_hard_line_break] = STATE(146), + [sym__smart_punctuation] = STATE(146), + [sym_autolink] = STATE(146), + [sym_footnote_reference] = STATE(146), + [sym_footnote_marker_begin] = STATE(1233), + [sym__image] = STATE(146), + [sym_full_reference_image] = STATE(146), + [sym_collapsed_reference_image] = STATE(146), + [sym_inline_image] = STATE(146), + [sym_image_description] = STATE(694), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(146), + [sym_full_reference_link] = STATE(146), + [sym_collapsed_reference_link] = STATE(146), + [sym_inline_link] = STATE(146), + [sym_link_text] = STATE(693), + [sym_span] = STATE(84), + [sym__bracketed_text_begin] = STATE(1269), + [sym__comment_with_spaces] = STATE(146), + [sym_raw_inline] = STATE(146), + [sym_math] = STATE(146), + [sym_verbatim] = STATE(146), + [sym__todo_highlights] = STATE(146), + [sym_todo] = STATE(146), + [sym_note] = STATE(146), + [sym__symbol_fallback] = STATE(146), + [aux_sym__text] = STATE(141), + [aux_sym__inline_repeat1] = STATE(84), + [anon_sym_LBRACE_] = ACTIONS(356), + [anon_sym__] = ACTIONS(358), + [anon_sym_LBRACE_STAR] = ACTIONS(360), + [anon_sym_STAR] = ACTIONS(362), + [anon_sym_LBRACE_CARET] = ACTIONS(364), + [anon_sym_CARET] = ACTIONS(364), + [anon_sym_LBRACE_TILDE] = ACTIONS(366), + [anon_sym_TILDE] = ACTIONS(366), + [anon_sym_LBRACE_EQ] = ACTIONS(368), + [anon_sym_LBRACE_PLUS] = ACTIONS(370), + [anon_sym_LBRACE_DASH] = ACTIONS(372), + [anon_sym_BSLASH] = ACTIONS(374), + [sym_quotation_marks] = ACTIONS(376), + [sym_ellipsis] = ACTIONS(376), + [sym_em_dash] = ACTIONS(376), + [sym_en_dash] = ACTIONS(378), + [sym_backslash_escape] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [sym_symbol] = ACTIONS(376), + [anon_sym_LBRACK_CARET] = ACTIONS(382), + [anon_sym_BANG_LBRACK] = ACTIONS(384), + [anon_sym_LBRACK] = ACTIONS(386), + [anon_sym_DOLLAR] = ACTIONS(388), + [anon_sym_TODO] = ACTIONS(390), + [anon_sym_WIP] = ACTIONS(390), + [anon_sym_NOTE] = ACTIONS(392), + [anon_sym_INFO] = ACTIONS(392), + [anon_sym_XXX] = ACTIONS(392), + [sym_fixme] = ACTIONS(376), + [sym__whitespace1] = ACTIONS(394), + [sym__newline] = ACTIONS(396), + [aux_sym__text_token1] = ACTIONS(398), + [sym__verbatim_begin] = ACTIONS(400), }, [19] = { - [sym__inline_without_trailing_space] = STATE(1012), - [sym__element] = STATE(572), - [sym_emphasis] = STATE(138), - [sym_emphasis_begin] = STATE(1161), - [sym_strong] = STATE(138), - [sym_strong_begin] = STATE(1162), - [sym_superscript] = STATE(138), - [sym_superscript_begin] = STATE(1163), - [sym_subscript] = STATE(138), - [sym_subscript_begin] = STATE(1164), - [sym_highlighted] = STATE(138), - [sym_highlighted_begin] = STATE(1165), - [sym_insert] = STATE(138), - [sym_insert_begin] = STATE(1166), - [sym_delete] = STATE(138), - [sym_delete_begin] = STATE(1167), - [sym_hard_line_break] = STATE(138), - [sym__smart_punctuation] = STATE(138), - [sym_autolink] = STATE(138), - [sym_footnote_reference] = STATE(138), - [sym_footnote_marker_begin] = STATE(1168), - [sym__image] = STATE(138), - [sym_full_reference_image] = STATE(138), - [sym_collapsed_reference_image] = STATE(138), - [sym_inline_image] = STATE(138), - [sym__image_description] = STATE(703), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(138), - [sym_full_reference_link] = STATE(138), - [sym_collapsed_reference_link] = STATE(138), - [sym_inline_link] = STATE(138), - [sym_link_text] = STATE(697), - [sym_span] = STATE(572), - [sym__bracketed_text] = STATE(671), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(138), - [sym_raw_inline] = STATE(138), - [sym_math] = STATE(138), - [sym_verbatim] = STATE(138), - [sym__todo_highlights] = STATE(138), - [sym_todo] = STATE(138), - [sym_note] = STATE(138), - [sym__symbol_fallback] = STATE(138), - [aux_sym__text] = STATE(122), - [aux_sym__inline_repeat1] = STATE(120), - [anon_sym_LBRACE_] = ACTIONS(331), - [anon_sym__] = ACTIONS(333), - [anon_sym_LBRACE_STAR] = ACTIONS(335), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_LBRACE_CARET] = ACTIONS(339), - [anon_sym_CARET] = ACTIONS(339), - [anon_sym_LBRACE_TILDE] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_LBRACE_EQ] = ACTIONS(343), - [anon_sym_LBRACE_PLUS] = ACTIONS(345), - [anon_sym_LBRACE_DASH] = ACTIONS(347), - [anon_sym_BSLASH] = ACTIONS(349), - [sym_quotation_marks] = ACTIONS(351), - [sym_ellipsis] = ACTIONS(351), - [sym_em_dash] = ACTIONS(351), - [sym_en_dash] = ACTIONS(353), - [sym_backslash_escape] = ACTIONS(353), - [anon_sym_LT] = ACTIONS(355), - [sym_symbol] = ACTIONS(351), - [anon_sym_LBRACK_CARET] = ACTIONS(357), - [anon_sym_BANG_LBRACK] = ACTIONS(359), - [anon_sym_LBRACK] = ACTIONS(361), - [anon_sym_DOLLAR] = ACTIONS(363), - [anon_sym_TODO] = ACTIONS(365), - [anon_sym_WIP] = ACTIONS(365), - [anon_sym_NOTE] = ACTIONS(367), - [anon_sym_INFO] = ACTIONS(367), - [anon_sym_XXX] = ACTIONS(367), - [sym_fixme] = ACTIONS(351), - [sym__whitespace1] = ACTIONS(369), - [sym__newline] = ACTIONS(371), - [aux_sym__text_token1] = ACTIONS(373), - [sym__verbatim_begin] = ACTIONS(375), + [sym__inline_without_trailing_space] = STATE(1039), + [sym__element] = STATE(623), + [sym_emphasis] = STATE(148), + [sym_emphasis_begin] = STATE(1163), + [sym_strong] = STATE(148), + [sym_strong_begin] = STATE(1164), + [sym_superscript] = STATE(148), + [sym_superscript_begin] = STATE(1165), + [sym_subscript] = STATE(148), + [sym_subscript_begin] = STATE(1166), + [sym_highlighted] = STATE(148), + [sym_highlighted_begin] = STATE(1167), + [sym_insert] = STATE(148), + [sym_insert_begin] = STATE(1168), + [sym_delete] = STATE(148), + [sym_delete_begin] = STATE(1169), + [sym_hard_line_break] = STATE(148), + [sym__smart_punctuation] = STATE(148), + [sym_autolink] = STATE(148), + [sym_footnote_reference] = STATE(148), + [sym_footnote_marker_begin] = STATE(1170), + [sym__image] = STATE(148), + [sym_full_reference_image] = STATE(148), + [sym_collapsed_reference_image] = STATE(148), + [sym_inline_image] = STATE(148), + [sym_image_description] = STATE(712), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(148), + [sym_full_reference_link] = STATE(148), + [sym_collapsed_reference_link] = STATE(148), + [sym_inline_link] = STATE(148), + [sym_link_text] = STATE(713), + [sym_span] = STATE(623), + [sym__bracketed_text_begin] = STATE(1262), + [sym__comment_with_spaces] = STATE(148), + [sym_raw_inline] = STATE(148), + [sym_math] = STATE(148), + [sym_verbatim] = STATE(148), + [sym__todo_highlights] = STATE(148), + [sym_todo] = STATE(148), + [sym_note] = STATE(148), + [sym__symbol_fallback] = STATE(148), + [aux_sym__text] = STATE(136), + [aux_sym__inline_repeat1] = STATE(129), + [anon_sym_LBRACE_] = ACTIONS(402), + [anon_sym__] = ACTIONS(404), + [anon_sym_LBRACE_STAR] = ACTIONS(406), + [anon_sym_STAR] = ACTIONS(408), + [anon_sym_LBRACE_CARET] = ACTIONS(410), + [anon_sym_CARET] = ACTIONS(410), + [anon_sym_LBRACE_TILDE] = ACTIONS(412), + [anon_sym_TILDE] = ACTIONS(412), + [anon_sym_LBRACE_EQ] = ACTIONS(414), + [anon_sym_LBRACE_PLUS] = ACTIONS(416), + [anon_sym_LBRACE_DASH] = ACTIONS(418), + [anon_sym_BSLASH] = ACTIONS(420), + [sym_quotation_marks] = ACTIONS(422), + [sym_ellipsis] = ACTIONS(422), + [sym_em_dash] = ACTIONS(422), + [sym_en_dash] = ACTIONS(424), + [sym_backslash_escape] = ACTIONS(424), + [anon_sym_LT] = ACTIONS(426), + [sym_symbol] = ACTIONS(422), + [anon_sym_LBRACK_CARET] = ACTIONS(428), + [anon_sym_BANG_LBRACK] = ACTIONS(430), + [anon_sym_LBRACK] = ACTIONS(432), + [anon_sym_DOLLAR] = ACTIONS(434), + [anon_sym_TODO] = ACTIONS(436), + [anon_sym_WIP] = ACTIONS(436), + [anon_sym_NOTE] = ACTIONS(438), + [anon_sym_INFO] = ACTIONS(438), + [anon_sym_XXX] = ACTIONS(438), + [sym_fixme] = ACTIONS(422), + [sym__whitespace1] = ACTIONS(440), + [sym__newline] = ACTIONS(442), + [aux_sym__text_token1] = ACTIONS(444), + [sym__verbatim_begin] = ACTIONS(446), }, [20] = { - [sym__inline] = STATE(1011), - [sym__element] = STATE(82), - [sym_emphasis] = STATE(143), - [sym_emphasis_begin] = STATE(1169), - [sym_strong] = STATE(143), - [sym_strong_begin] = STATE(1170), - [sym_superscript] = STATE(143), - [sym_superscript_begin] = STATE(1171), - [sym_subscript] = STATE(143), - [sym_subscript_begin] = STATE(1172), - [sym_highlighted] = STATE(143), - [sym_highlighted_begin] = STATE(1173), - [sym_insert] = STATE(143), - [sym_insert_begin] = STATE(1174), - [sym_delete] = STATE(143), - [sym_delete_begin] = STATE(1175), - [sym_hard_line_break] = STATE(143), - [sym__smart_punctuation] = STATE(143), - [sym_autolink] = STATE(143), - [sym_footnote_reference] = STATE(143), - [sym_footnote_marker_begin] = STATE(1176), - [sym__image] = STATE(143), - [sym_full_reference_image] = STATE(143), - [sym_collapsed_reference_image] = STATE(143), - [sym_inline_image] = STATE(143), - [sym__image_description] = STATE(701), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(143), - [sym_full_reference_link] = STATE(143), - [sym_collapsed_reference_link] = STATE(143), - [sym_inline_link] = STATE(143), - [sym_link_text] = STATE(702), - [sym_span] = STATE(82), - [sym__bracketed_text] = STATE(667), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(143), - [sym_raw_inline] = STATE(143), - [sym_math] = STATE(143), - [sym_verbatim] = STATE(143), - [sym__todo_highlights] = STATE(143), - [sym_todo] = STATE(143), - [sym_note] = STATE(143), - [sym__symbol_fallback] = STATE(143), - [aux_sym__text] = STATE(126), - [aux_sym__inline_repeat1] = STATE(82), - [anon_sym_LBRACE_] = ACTIONS(285), - [anon_sym__] = ACTIONS(287), - [anon_sym_LBRACE_STAR] = ACTIONS(289), - [anon_sym_STAR] = ACTIONS(291), - [anon_sym_LBRACE_CARET] = ACTIONS(293), - [anon_sym_CARET] = ACTIONS(293), - [anon_sym_LBRACE_TILDE] = ACTIONS(295), - [anon_sym_TILDE] = ACTIONS(295), - [anon_sym_LBRACE_EQ] = ACTIONS(297), - [anon_sym_LBRACE_PLUS] = ACTIONS(299), - [anon_sym_LBRACE_DASH] = ACTIONS(301), - [anon_sym_BSLASH] = ACTIONS(303), - [sym_quotation_marks] = ACTIONS(305), - [sym_ellipsis] = ACTIONS(305), - [sym_em_dash] = ACTIONS(305), - [sym_en_dash] = ACTIONS(307), - [sym_backslash_escape] = ACTIONS(307), - [anon_sym_LT] = ACTIONS(309), - [sym_symbol] = ACTIONS(305), - [anon_sym_LBRACK_CARET] = ACTIONS(311), - [anon_sym_BANG_LBRACK] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_DOLLAR] = ACTIONS(317), - [anon_sym_TODO] = ACTIONS(319), - [anon_sym_WIP] = ACTIONS(319), - [anon_sym_NOTE] = ACTIONS(321), - [anon_sym_INFO] = ACTIONS(321), - [anon_sym_XXX] = ACTIONS(321), - [sym_fixme] = ACTIONS(305), - [sym__whitespace1] = ACTIONS(323), - [sym__newline] = ACTIONS(325), - [aux_sym__text_token1] = ACTIONS(327), - [sym__verbatim_begin] = ACTIONS(329), + [sym__inline_without_trailing_space] = STATE(1031), + [sym__element] = STATE(570), + [sym_emphasis] = STATE(152), + [sym_emphasis_begin] = STATE(1172), + [sym_strong] = STATE(152), + [sym_strong_begin] = STATE(1173), + [sym_superscript] = STATE(152), + [sym_superscript_begin] = STATE(1174), + [sym_subscript] = STATE(152), + [sym_subscript_begin] = STATE(1175), + [sym_highlighted] = STATE(152), + [sym_highlighted_begin] = STATE(1176), + [sym_insert] = STATE(152), + [sym_insert_begin] = STATE(1177), + [sym_delete] = STATE(152), + [sym_delete_begin] = STATE(1178), + [sym_hard_line_break] = STATE(152), + [sym__smart_punctuation] = STATE(152), + [sym_autolink] = STATE(152), + [sym_footnote_reference] = STATE(152), + [sym_footnote_marker_begin] = STATE(1179), + [sym__image] = STATE(152), + [sym_full_reference_image] = STATE(152), + [sym_collapsed_reference_image] = STATE(152), + [sym_inline_image] = STATE(152), + [sym_image_description] = STATE(704), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(152), + [sym_full_reference_link] = STATE(152), + [sym_collapsed_reference_link] = STATE(152), + [sym_inline_link] = STATE(152), + [sym_link_text] = STATE(706), + [sym_span] = STATE(570), + [sym__bracketed_text_begin] = STATE(1263), + [sym__comment_with_spaces] = STATE(152), + [sym_raw_inline] = STATE(152), + [sym_math] = STATE(152), + [sym_verbatim] = STATE(152), + [sym__todo_highlights] = STATE(152), + [sym_todo] = STATE(152), + [sym_note] = STATE(152), + [sym__symbol_fallback] = STATE(152), + [aux_sym__text] = STATE(133), + [aux_sym__inline_repeat1] = STATE(130), + [anon_sym_LBRACE_] = ACTIONS(448), + [anon_sym__] = ACTIONS(450), + [anon_sym_LBRACE_STAR] = ACTIONS(452), + [anon_sym_STAR] = ACTIONS(454), + [anon_sym_LBRACE_CARET] = ACTIONS(456), + [anon_sym_CARET] = ACTIONS(456), + [anon_sym_LBRACE_TILDE] = ACTIONS(458), + [anon_sym_TILDE] = ACTIONS(458), + [anon_sym_LBRACE_EQ] = ACTIONS(460), + [anon_sym_LBRACE_PLUS] = ACTIONS(462), + [anon_sym_LBRACE_DASH] = ACTIONS(464), + [anon_sym_BSLASH] = ACTIONS(466), + [sym_quotation_marks] = ACTIONS(468), + [sym_ellipsis] = ACTIONS(468), + [sym_em_dash] = ACTIONS(468), + [sym_en_dash] = ACTIONS(470), + [sym_backslash_escape] = ACTIONS(470), + [anon_sym_LT] = ACTIONS(472), + [sym_symbol] = ACTIONS(468), + [anon_sym_LBRACK_CARET] = ACTIONS(474), + [anon_sym_BANG_LBRACK] = ACTIONS(476), + [anon_sym_LBRACK] = ACTIONS(478), + [anon_sym_DOLLAR] = ACTIONS(480), + [anon_sym_TODO] = ACTIONS(482), + [anon_sym_WIP] = ACTIONS(482), + [anon_sym_NOTE] = ACTIONS(484), + [anon_sym_INFO] = ACTIONS(484), + [anon_sym_XXX] = ACTIONS(484), + [sym_fixme] = ACTIONS(468), + [sym__whitespace1] = ACTIONS(486), + [sym__newline] = ACTIONS(488), + [aux_sym__text_token1] = ACTIONS(490), + [sym__verbatim_begin] = ACTIONS(492), }, [21] = { - [sym__element] = STATE(21), - [sym_emphasis] = STATE(143), - [sym_emphasis_begin] = STATE(1169), - [sym_strong] = STATE(143), - [sym_strong_begin] = STATE(1170), - [sym_superscript] = STATE(143), - [sym_superscript_begin] = STATE(1171), - [sym_subscript] = STATE(143), - [sym_subscript_begin] = STATE(1172), - [sym_highlighted] = STATE(143), - [sym_highlighted_begin] = STATE(1173), - [sym_insert] = STATE(143), - [sym_insert_begin] = STATE(1174), - [sym_delete] = STATE(143), - [sym_delete_begin] = STATE(1175), - [sym_hard_line_break] = STATE(143), - [sym__smart_punctuation] = STATE(143), - [sym_autolink] = STATE(143), - [sym_footnote_reference] = STATE(143), - [sym_footnote_marker_begin] = STATE(1176), - [sym__image] = STATE(143), - [sym_full_reference_image] = STATE(143), - [sym_collapsed_reference_image] = STATE(143), - [sym_inline_image] = STATE(143), - [sym__image_description] = STATE(701), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(143), - [sym_full_reference_link] = STATE(143), - [sym_collapsed_reference_link] = STATE(143), - [sym_inline_link] = STATE(143), - [sym_link_text] = STATE(702), - [sym_span] = STATE(21), - [sym__bracketed_text] = STATE(667), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(143), - [sym_raw_inline] = STATE(143), - [sym_math] = STATE(143), - [sym_verbatim] = STATE(143), - [sym__todo_highlights] = STATE(143), - [sym_todo] = STATE(143), - [sym_note] = STATE(143), - [sym__symbol_fallback] = STATE(143), - [aux_sym__text] = STATE(126), - [aux_sym__inline_repeat1] = STATE(21), - [anon_sym_LBRACE_] = ACTIONS(471), - [anon_sym__] = ACTIONS(474), - [anon_sym_LBRACE_STAR] = ACTIONS(477), - [anon_sym_STAR] = ACTIONS(480), - [anon_sym_LBRACE_CARET] = ACTIONS(483), - [anon_sym_CARET] = ACTIONS(483), - [anon_sym_LBRACE_TILDE] = ACTIONS(486), - [anon_sym_TILDE] = ACTIONS(486), - [anon_sym_LBRACE_EQ] = ACTIONS(489), - [anon_sym_LBRACE_PLUS] = ACTIONS(492), - [anon_sym_LBRACE_DASH] = ACTIONS(495), - [anon_sym_BSLASH] = ACTIONS(498), - [sym_quotation_marks] = ACTIONS(501), - [sym_ellipsis] = ACTIONS(501), - [sym_em_dash] = ACTIONS(501), - [sym_en_dash] = ACTIONS(504), - [sym_backslash_escape] = ACTIONS(504), - [anon_sym_LT] = ACTIONS(507), - [sym_symbol] = ACTIONS(501), - [anon_sym_LBRACK_CARET] = ACTIONS(510), - [anon_sym_BANG_LBRACK] = ACTIONS(513), - [anon_sym_LBRACK] = ACTIONS(516), - [anon_sym_DOLLAR] = ACTIONS(519), - [anon_sym_TODO] = ACTIONS(522), - [anon_sym_WIP] = ACTIONS(522), - [anon_sym_NOTE] = ACTIONS(525), - [anon_sym_INFO] = ACTIONS(525), - [anon_sym_XXX] = ACTIONS(525), - [sym_fixme] = ACTIONS(501), - [sym__whitespace1] = ACTIONS(528), - [sym__newline] = ACTIONS(531), - [aux_sym__text_token1] = ACTIONS(534), - [sym__verbatim_begin] = ACTIONS(537), - [sym_superscript_end] = ACTIONS(540), - }, - [22] = { - [sym__inline] = STATE(945), - [sym__element] = STATE(72), - [sym_emphasis] = STATE(135), - [sym_emphasis_begin] = STATE(1177), - [sym_strong] = STATE(135), - [sym_strong_begin] = STATE(1178), - [sym_superscript] = STATE(135), - [sym_superscript_begin] = STATE(1179), - [sym_subscript] = STATE(135), - [sym_subscript_begin] = STATE(1180), - [sym_highlighted] = STATE(135), - [sym_highlighted_begin] = STATE(1181), - [sym_insert] = STATE(135), - [sym_insert_begin] = STATE(1182), - [sym_delete] = STATE(135), - [sym_delete_begin] = STATE(1183), - [sym_hard_line_break] = STATE(135), - [sym__smart_punctuation] = STATE(135), - [sym_autolink] = STATE(135), - [sym_footnote_reference] = STATE(135), - [sym_footnote_marker_begin] = STATE(1184), - [sym__image] = STATE(135), - [sym_full_reference_image] = STATE(135), - [sym_collapsed_reference_image] = STATE(135), - [sym_inline_image] = STATE(135), - [sym__image_description] = STATE(687), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(135), - [sym_full_reference_link] = STATE(135), - [sym_collapsed_reference_link] = STATE(135), - [sym_inline_link] = STATE(135), - [sym_link_text] = STATE(684), - [sym_span] = STATE(72), - [sym__bracketed_text] = STATE(670), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(135), - [sym_raw_inline] = STATE(135), - [sym_math] = STATE(135), - [sym_verbatim] = STATE(135), - [sym__todo_highlights] = STATE(135), - [sym_todo] = STATE(135), - [sym_note] = STATE(135), - [sym__symbol_fallback] = STATE(135), - [aux_sym__text] = STATE(124), - [aux_sym__inline_repeat1] = STATE(72), - [anon_sym_LBRACE_] = ACTIONS(239), - [anon_sym__] = ACTIONS(241), - [anon_sym_LBRACE_STAR] = ACTIONS(243), - [anon_sym_STAR] = ACTIONS(245), - [anon_sym_LBRACE_CARET] = ACTIONS(247), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_LBRACE_TILDE] = ACTIONS(249), - [anon_sym_TILDE] = ACTIONS(249), - [anon_sym_LBRACE_EQ] = ACTIONS(251), - [anon_sym_LBRACE_PLUS] = ACTIONS(253), - [anon_sym_LBRACE_DASH] = ACTIONS(255), - [anon_sym_BSLASH] = ACTIONS(257), - [sym_quotation_marks] = ACTIONS(259), - [sym_ellipsis] = ACTIONS(259), - [sym_em_dash] = ACTIONS(259), - [sym_en_dash] = ACTIONS(261), - [sym_backslash_escape] = ACTIONS(261), - [anon_sym_LT] = ACTIONS(263), - [sym_symbol] = ACTIONS(259), - [anon_sym_LBRACK_CARET] = ACTIONS(265), - [anon_sym_BANG_LBRACK] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(269), - [anon_sym_DOLLAR] = ACTIONS(271), - [anon_sym_TODO] = ACTIONS(273), - [anon_sym_WIP] = ACTIONS(273), - [anon_sym_NOTE] = ACTIONS(275), - [anon_sym_INFO] = ACTIONS(275), - [anon_sym_XXX] = ACTIONS(275), - [sym_fixme] = ACTIONS(259), - [sym__whitespace1] = ACTIONS(277), - [sym__newline] = ACTIONS(279), - [aux_sym__text_token1] = ACTIONS(281), - [sym__verbatim_begin] = ACTIONS(283), - }, - [23] = { - [sym__inline] = STATE(944), - [sym__element] = STATE(82), - [sym_emphasis] = STATE(143), - [sym_emphasis_begin] = STATE(1169), - [sym_strong] = STATE(143), - [sym_strong_begin] = STATE(1170), - [sym_superscript] = STATE(143), - [sym_superscript_begin] = STATE(1171), - [sym_subscript] = STATE(143), - [sym_subscript_begin] = STATE(1172), - [sym_highlighted] = STATE(143), - [sym_highlighted_begin] = STATE(1173), - [sym_insert] = STATE(143), - [sym_insert_begin] = STATE(1174), - [sym_delete] = STATE(143), - [sym_delete_begin] = STATE(1175), - [sym_hard_line_break] = STATE(143), - [sym__smart_punctuation] = STATE(143), - [sym_autolink] = STATE(143), - [sym_footnote_reference] = STATE(143), - [sym_footnote_marker_begin] = STATE(1176), - [sym__image] = STATE(143), - [sym_full_reference_image] = STATE(143), - [sym_collapsed_reference_image] = STATE(143), - [sym_inline_image] = STATE(143), - [sym__image_description] = STATE(701), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(143), - [sym_full_reference_link] = STATE(143), - [sym_collapsed_reference_link] = STATE(143), - [sym_inline_link] = STATE(143), - [sym_link_text] = STATE(702), - [sym_span] = STATE(82), - [sym__bracketed_text] = STATE(667), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(143), - [sym_raw_inline] = STATE(143), - [sym_math] = STATE(143), - [sym_verbatim] = STATE(143), - [sym__todo_highlights] = STATE(143), - [sym_todo] = STATE(143), - [sym_note] = STATE(143), - [sym__symbol_fallback] = STATE(143), - [aux_sym__text] = STATE(126), - [aux_sym__inline_repeat1] = STATE(82), - [anon_sym_LBRACE_] = ACTIONS(285), - [anon_sym__] = ACTIONS(287), - [anon_sym_LBRACE_STAR] = ACTIONS(289), - [anon_sym_STAR] = ACTIONS(291), - [anon_sym_LBRACE_CARET] = ACTIONS(293), - [anon_sym_CARET] = ACTIONS(293), - [anon_sym_LBRACE_TILDE] = ACTIONS(295), - [anon_sym_TILDE] = ACTIONS(295), - [anon_sym_LBRACE_EQ] = ACTIONS(297), - [anon_sym_LBRACE_PLUS] = ACTIONS(299), - [anon_sym_LBRACE_DASH] = ACTIONS(301), - [anon_sym_BSLASH] = ACTIONS(303), - [sym_quotation_marks] = ACTIONS(305), - [sym_ellipsis] = ACTIONS(305), - [sym_em_dash] = ACTIONS(305), - [sym_en_dash] = ACTIONS(307), - [sym_backslash_escape] = ACTIONS(307), - [anon_sym_LT] = ACTIONS(309), - [sym_symbol] = ACTIONS(305), - [anon_sym_LBRACK_CARET] = ACTIONS(311), - [anon_sym_BANG_LBRACK] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_DOLLAR] = ACTIONS(317), - [anon_sym_TODO] = ACTIONS(319), - [anon_sym_WIP] = ACTIONS(319), - [anon_sym_NOTE] = ACTIONS(321), - [anon_sym_INFO] = ACTIONS(321), - [anon_sym_XXX] = ACTIONS(321), - [sym_fixme] = ACTIONS(305), - [sym__whitespace1] = ACTIONS(323), - [sym__newline] = ACTIONS(325), - [aux_sym__text_token1] = ACTIONS(327), - [sym__verbatim_begin] = ACTIONS(329), - }, - [24] = { - [sym__inline_without_trailing_space] = STATE(943), - [sym__element] = STATE(572), - [sym_emphasis] = STATE(138), - [sym_emphasis_begin] = STATE(1161), - [sym_strong] = STATE(138), - [sym_strong_begin] = STATE(1162), - [sym_superscript] = STATE(138), - [sym_superscript_begin] = STATE(1163), - [sym_subscript] = STATE(138), - [sym_subscript_begin] = STATE(1164), - [sym_highlighted] = STATE(138), - [sym_highlighted_begin] = STATE(1165), - [sym_insert] = STATE(138), - [sym_insert_begin] = STATE(1166), - [sym_delete] = STATE(138), - [sym_delete_begin] = STATE(1167), - [sym_hard_line_break] = STATE(138), - [sym__smart_punctuation] = STATE(138), - [sym_autolink] = STATE(138), - [sym_footnote_reference] = STATE(138), - [sym_footnote_marker_begin] = STATE(1168), - [sym__image] = STATE(138), - [sym_full_reference_image] = STATE(138), - [sym_collapsed_reference_image] = STATE(138), - [sym_inline_image] = STATE(138), - [sym__image_description] = STATE(703), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(138), - [sym_full_reference_link] = STATE(138), - [sym_collapsed_reference_link] = STATE(138), - [sym_inline_link] = STATE(138), - [sym_link_text] = STATE(697), - [sym_span] = STATE(572), - [sym__bracketed_text] = STATE(671), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(138), - [sym_raw_inline] = STATE(138), - [sym_math] = STATE(138), - [sym_verbatim] = STATE(138), - [sym__todo_highlights] = STATE(138), - [sym_todo] = STATE(138), - [sym_note] = STATE(138), - [sym__symbol_fallback] = STATE(138), - [aux_sym__text] = STATE(122), - [aux_sym__inline_repeat1] = STATE(120), - [anon_sym_LBRACE_] = ACTIONS(331), - [anon_sym__] = ACTIONS(333), - [anon_sym_LBRACE_STAR] = ACTIONS(335), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_LBRACE_CARET] = ACTIONS(339), - [anon_sym_CARET] = ACTIONS(339), - [anon_sym_LBRACE_TILDE] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_LBRACE_EQ] = ACTIONS(343), - [anon_sym_LBRACE_PLUS] = ACTIONS(345), - [anon_sym_LBRACE_DASH] = ACTIONS(347), - [anon_sym_BSLASH] = ACTIONS(349), - [sym_quotation_marks] = ACTIONS(351), - [sym_ellipsis] = ACTIONS(351), - [sym_em_dash] = ACTIONS(351), - [sym_en_dash] = ACTIONS(353), - [sym_backslash_escape] = ACTIONS(353), - [anon_sym_LT] = ACTIONS(355), - [sym_symbol] = ACTIONS(351), - [anon_sym_LBRACK_CARET] = ACTIONS(357), - [anon_sym_BANG_LBRACK] = ACTIONS(359), - [anon_sym_LBRACK] = ACTIONS(361), - [anon_sym_DOLLAR] = ACTIONS(363), - [anon_sym_TODO] = ACTIONS(365), - [anon_sym_WIP] = ACTIONS(365), - [anon_sym_NOTE] = ACTIONS(367), - [anon_sym_INFO] = ACTIONS(367), - [anon_sym_XXX] = ACTIONS(367), - [sym_fixme] = ACTIONS(351), - [sym__whitespace1] = ACTIONS(369), - [sym__newline] = ACTIONS(371), - [aux_sym__text_token1] = ACTIONS(373), - [sym__verbatim_begin] = ACTIONS(375), - }, - [25] = { - [sym__inline_without_trailing_space] = STATE(942), - [sym__element] = STATE(538), - [sym_emphasis] = STATE(141), - [sym_emphasis_begin] = STATE(1153), - [sym_strong] = STATE(141), - [sym_strong_begin] = STATE(1154), - [sym_superscript] = STATE(141), - [sym_superscript_begin] = STATE(1155), - [sym_subscript] = STATE(141), - [sym_subscript_begin] = STATE(1156), - [sym_highlighted] = STATE(141), - [sym_highlighted_begin] = STATE(1157), - [sym_insert] = STATE(141), - [sym_insert_begin] = STATE(1158), - [sym_delete] = STATE(141), - [sym_delete_begin] = STATE(1159), - [sym_hard_line_break] = STATE(141), - [sym__smart_punctuation] = STATE(141), - [sym_autolink] = STATE(141), - [sym_footnote_reference] = STATE(141), - [sym_footnote_marker_begin] = STATE(1160), - [sym__image] = STATE(141), - [sym_full_reference_image] = STATE(141), - [sym_collapsed_reference_image] = STATE(141), - [sym_inline_image] = STATE(141), - [sym__image_description] = STATE(681), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(141), - [sym_full_reference_link] = STATE(141), - [sym_collapsed_reference_link] = STATE(141), - [sym_inline_link] = STATE(141), - [sym_link_text] = STATE(680), - [sym_span] = STATE(538), - [sym__bracketed_text] = STATE(664), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(141), - [sym_raw_inline] = STATE(141), - [sym_math] = STATE(141), - [sym_verbatim] = STATE(141), - [sym__todo_highlights] = STATE(141), - [sym_todo] = STATE(141), - [sym_note] = STATE(141), - [sym__symbol_fallback] = STATE(141), - [aux_sym__text] = STATE(128), - [aux_sym__inline_repeat1] = STATE(119), - [anon_sym_LBRACE_] = ACTIONS(147), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_STAR] = ACTIONS(151), - [anon_sym_STAR] = ACTIONS(153), - [anon_sym_LBRACE_CARET] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_LBRACE_TILDE] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_LBRACE_EQ] = ACTIONS(159), - [anon_sym_LBRACE_PLUS] = ACTIONS(161), - [anon_sym_LBRACE_DASH] = ACTIONS(163), - [anon_sym_BSLASH] = ACTIONS(165), - [sym_quotation_marks] = ACTIONS(167), - [sym_ellipsis] = ACTIONS(167), - [sym_em_dash] = ACTIONS(167), - [sym_en_dash] = ACTIONS(169), - [sym_backslash_escape] = ACTIONS(169), - [anon_sym_LT] = ACTIONS(171), - [sym_symbol] = ACTIONS(167), - [anon_sym_LBRACK_CARET] = ACTIONS(173), - [anon_sym_BANG_LBRACK] = ACTIONS(175), - [anon_sym_LBRACK] = ACTIONS(177), - [anon_sym_DOLLAR] = ACTIONS(179), - [anon_sym_TODO] = ACTIONS(181), - [anon_sym_WIP] = ACTIONS(181), - [anon_sym_NOTE] = ACTIONS(183), - [anon_sym_INFO] = ACTIONS(183), - [anon_sym_XXX] = ACTIONS(183), - [sym_fixme] = ACTIONS(167), - [sym__whitespace1] = ACTIONS(185), - [sym__newline] = ACTIONS(187), - [aux_sym__text_token1] = ACTIONS(189), - [sym__verbatim_begin] = ACTIONS(191), - }, - [26] = { - [sym__inline] = STATE(917), - [sym__element] = STATE(47), - [sym_emphasis] = STATE(136), - [sym_emphasis_begin] = STATE(1209), - [sym_strong] = STATE(136), - [sym_strong_begin] = STATE(1210), - [sym_superscript] = STATE(136), - [sym_superscript_begin] = STATE(1211), - [sym_subscript] = STATE(136), - [sym_subscript_begin] = STATE(1212), - [sym_highlighted] = STATE(136), - [sym_highlighted_begin] = STATE(1213), - [sym_insert] = STATE(136), - [sym_insert_begin] = STATE(1214), - [sym_delete] = STATE(136), - [sym_delete_begin] = STATE(1215), - [sym_hard_line_break] = STATE(136), - [sym__smart_punctuation] = STATE(136), - [sym_autolink] = STATE(136), - [sym_footnote_reference] = STATE(136), - [sym_footnote_marker_begin] = STATE(1216), - [sym__image] = STATE(136), - [sym_full_reference_image] = STATE(136), - [sym_collapsed_reference_image] = STATE(136), - [sym_inline_image] = STATE(136), - [sym__image_description] = STATE(682), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(136), - [sym_full_reference_link] = STATE(136), - [sym_collapsed_reference_link] = STATE(136), - [sym_inline_link] = STATE(136), - [sym_link_text] = STATE(675), - [sym_span] = STATE(47), - [sym__bracketed_text] = STATE(674), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(136), - [sym_raw_inline] = STATE(136), - [sym_math] = STATE(136), - [sym_verbatim] = STATE(136), - [sym__todo_highlights] = STATE(136), - [sym_todo] = STATE(136), - [sym_note] = STATE(136), - [sym__symbol_fallback] = STATE(136), - [aux_sym__text] = STATE(127), - [aux_sym__inline_repeat1] = STATE(47), - [anon_sym_LBRACE_] = ACTIONS(377), - [anon_sym__] = ACTIONS(379), - [anon_sym_LBRACE_STAR] = ACTIONS(381), - [anon_sym_STAR] = ACTIONS(383), - [anon_sym_LBRACE_CARET] = ACTIONS(385), - [anon_sym_CARET] = ACTIONS(385), - [anon_sym_LBRACE_TILDE] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_LBRACE_EQ] = ACTIONS(389), - [anon_sym_LBRACE_PLUS] = ACTIONS(391), - [anon_sym_LBRACE_DASH] = ACTIONS(393), - [anon_sym_BSLASH] = ACTIONS(395), - [sym_quotation_marks] = ACTIONS(397), - [sym_ellipsis] = ACTIONS(397), - [sym_em_dash] = ACTIONS(397), - [sym_en_dash] = ACTIONS(399), - [sym_backslash_escape] = ACTIONS(399), - [anon_sym_LT] = ACTIONS(401), - [sym_symbol] = ACTIONS(397), - [anon_sym_LBRACK_CARET] = ACTIONS(403), - [anon_sym_BANG_LBRACK] = ACTIONS(405), - [anon_sym_LBRACK] = ACTIONS(407), - [anon_sym_DOLLAR] = ACTIONS(409), - [anon_sym_TODO] = ACTIONS(411), - [anon_sym_WIP] = ACTIONS(411), - [anon_sym_NOTE] = ACTIONS(413), - [anon_sym_INFO] = ACTIONS(413), - [anon_sym_XXX] = ACTIONS(413), - [sym_fixme] = ACTIONS(397), - [sym__whitespace1] = ACTIONS(415), - [sym__newline] = ACTIONS(417), - [aux_sym__text_token1] = ACTIONS(419), - [sym__verbatim_begin] = ACTIONS(421), - }, - [27] = { - [sym__inline] = STATE(915), [sym__element] = STATE(14), - [sym_emphasis] = STATE(133), - [sym_emphasis_begin] = STATE(1201), - [sym_strong] = STATE(133), - [sym_strong_begin] = STATE(1202), - [sym_superscript] = STATE(133), - [sym_superscript_begin] = STATE(1203), - [sym_subscript] = STATE(133), - [sym_subscript_begin] = STATE(1204), - [sym_highlighted] = STATE(133), - [sym_highlighted_begin] = STATE(1205), - [sym_insert] = STATE(133), - [sym_insert_begin] = STATE(1206), - [sym_delete] = STATE(133), - [sym_delete_begin] = STATE(1207), - [sym_hard_line_break] = STATE(133), - [sym__smart_punctuation] = STATE(133), - [sym_autolink] = STATE(133), - [sym_footnote_reference] = STATE(133), - [sym_footnote_marker_begin] = STATE(1208), - [sym__image] = STATE(133), - [sym_full_reference_image] = STATE(133), - [sym_collapsed_reference_image] = STATE(133), - [sym_inline_image] = STATE(133), - [sym__image_description] = STATE(688), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(133), - [sym_full_reference_link] = STATE(133), - [sym_collapsed_reference_link] = STATE(133), - [sym_inline_link] = STATE(133), - [sym_link_text] = STATE(686), + [sym_emphasis] = STATE(149), + [sym_emphasis_begin] = STATE(1199), + [sym_strong] = STATE(149), + [sym_strong_begin] = STATE(1200), + [sym_superscript] = STATE(149), + [sym_superscript_begin] = STATE(1201), + [sym_subscript] = STATE(149), + [sym_subscript_begin] = STATE(1202), + [sym_highlighted] = STATE(149), + [sym_highlighted_begin] = STATE(1203), + [sym_insert] = STATE(149), + [sym_insert_begin] = STATE(1204), + [sym_delete] = STATE(149), + [sym_delete_begin] = STATE(1205), + [sym_hard_line_break] = STATE(149), + [sym__smart_punctuation] = STATE(149), + [sym_autolink] = STATE(149), + [sym_footnote_reference] = STATE(149), + [sym_footnote_marker_begin] = STATE(1206), + [sym__image] = STATE(149), + [sym_full_reference_image] = STATE(149), + [sym_collapsed_reference_image] = STATE(149), + [sym_inline_image] = STATE(149), + [sym_image_description] = STATE(714), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(149), + [sym_full_reference_link] = STATE(149), + [sym_collapsed_reference_link] = STATE(149), + [sym_inline_link] = STATE(149), + [sym_link_text] = STATE(710), [sym_span] = STATE(14), - [sym__bracketed_text] = STATE(673), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(133), - [sym_raw_inline] = STATE(133), - [sym_math] = STATE(133), - [sym_verbatim] = STATE(133), - [sym__todo_highlights] = STATE(133), - [sym_todo] = STATE(133), - [sym_note] = STATE(133), - [sym__symbol_fallback] = STATE(133), - [aux_sym__text] = STATE(129), + [sym__bracketed_text_begin] = STATE(1266), + [sym__comment_with_spaces] = STATE(149), + [sym_raw_inline] = STATE(149), + [sym_math] = STATE(149), + [sym_verbatim] = STATE(149), + [sym__todo_highlights] = STATE(149), + [sym_todo] = STATE(149), + [sym_note] = STATE(149), + [sym__symbol_fallback] = STATE(149), + [aux_sym__text] = STATE(142), [aux_sym__inline_repeat1] = STATE(14), - [anon_sym_LBRACE_] = ACTIONS(423), - [anon_sym__] = ACTIONS(425), - [anon_sym_LBRACE_STAR] = ACTIONS(427), - [anon_sym_STAR] = ACTIONS(429), - [anon_sym_LBRACE_CARET] = ACTIONS(431), - [anon_sym_CARET] = ACTIONS(431), - [anon_sym_LBRACE_TILDE] = ACTIONS(433), - [anon_sym_TILDE] = ACTIONS(433), - [anon_sym_LBRACE_EQ] = ACTIONS(435), - [anon_sym_LBRACE_PLUS] = ACTIONS(437), - [anon_sym_LBRACE_DASH] = ACTIONS(439), - [anon_sym_BSLASH] = ACTIONS(441), - [sym_quotation_marks] = ACTIONS(443), - [sym_ellipsis] = ACTIONS(443), - [sym_em_dash] = ACTIONS(443), - [sym_en_dash] = ACTIONS(445), - [sym_backslash_escape] = ACTIONS(445), - [anon_sym_LT] = ACTIONS(447), - [sym_symbol] = ACTIONS(443), - [anon_sym_LBRACK_CARET] = ACTIONS(449), - [anon_sym_BANG_LBRACK] = ACTIONS(451), - [anon_sym_LBRACK] = ACTIONS(453), - [anon_sym_DOLLAR] = ACTIONS(455), - [anon_sym_TODO] = ACTIONS(457), - [anon_sym_WIP] = ACTIONS(457), - [anon_sym_NOTE] = ACTIONS(459), - [anon_sym_INFO] = ACTIONS(459), - [anon_sym_XXX] = ACTIONS(459), - [sym_fixme] = ACTIONS(443), - [sym__whitespace1] = ACTIONS(461), - [sym__newline] = ACTIONS(469), - [aux_sym__text_token1] = ACTIONS(465), - [sym__verbatim_begin] = ACTIONS(467), + [anon_sym_LBRACE_] = ACTIONS(494), + [anon_sym__] = ACTIONS(496), + [anon_sym_LBRACE_STAR] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(500), + [anon_sym_LBRACE_CARET] = ACTIONS(502), + [anon_sym_CARET] = ACTIONS(502), + [anon_sym_LBRACE_TILDE] = ACTIONS(504), + [anon_sym_TILDE] = ACTIONS(504), + [anon_sym_LBRACE_EQ] = ACTIONS(506), + [anon_sym_LBRACE_PLUS] = ACTIONS(508), + [anon_sym_LBRACE_DASH] = ACTIONS(510), + [anon_sym_BSLASH] = ACTIONS(512), + [sym_quotation_marks] = ACTIONS(514), + [sym_ellipsis] = ACTIONS(514), + [sym_em_dash] = ACTIONS(514), + [sym_en_dash] = ACTIONS(516), + [sym_backslash_escape] = ACTIONS(516), + [anon_sym_LT] = ACTIONS(518), + [sym_symbol] = ACTIONS(514), + [anon_sym_LBRACK_CARET] = ACTIONS(520), + [anon_sym_BANG_LBRACK] = ACTIONS(522), + [anon_sym_LBRACK] = ACTIONS(524), + [anon_sym_DOLLAR] = ACTIONS(526), + [anon_sym_TODO] = ACTIONS(528), + [anon_sym_WIP] = ACTIONS(528), + [anon_sym_NOTE] = ACTIONS(530), + [anon_sym_INFO] = ACTIONS(530), + [anon_sym_XXX] = ACTIONS(530), + [sym_fixme] = ACTIONS(514), + [sym__whitespace1] = ACTIONS(532), + [sym__newline] = ACTIONS(534), + [aux_sym__text_token1] = ACTIONS(536), + [sym__verbatim_begin] = ACTIONS(538), + [sym_highlighted_end] = ACTIONS(283), }, - [28] = { - [sym__inline] = STATE(914), - [sym__element] = STATE(3), - [sym_emphasis] = STATE(137), - [sym_emphasis_begin] = STATE(1193), - [sym_strong] = STATE(137), - [sym_strong_begin] = STATE(1194), - [sym_superscript] = STATE(137), - [sym_superscript_begin] = STATE(1195), - [sym_subscript] = STATE(137), - [sym_subscript_begin] = STATE(1196), - [sym_highlighted] = STATE(137), - [sym_highlighted_begin] = STATE(1197), - [sym_insert] = STATE(137), - [sym_insert_begin] = STATE(1198), - [sym_delete] = STATE(137), - [sym_delete_begin] = STATE(1199), - [sym_hard_line_break] = STATE(137), - [sym__smart_punctuation] = STATE(137), - [sym_autolink] = STATE(137), - [sym_footnote_reference] = STATE(137), - [sym_footnote_marker_begin] = STATE(1200), - [sym__image] = STATE(137), - [sym_full_reference_image] = STATE(137), - [sym_collapsed_reference_image] = STATE(137), - [sym_inline_image] = STATE(137), - [sym__image_description] = STATE(694), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(137), - [sym_full_reference_link] = STATE(137), - [sym_collapsed_reference_link] = STATE(137), - [sym_inline_link] = STATE(137), - [sym_link_text] = STATE(693), - [sym_span] = STATE(3), - [sym__bracketed_text] = STATE(672), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(137), - [sym_raw_inline] = STATE(137), - [sym_math] = STATE(137), - [sym_verbatim] = STATE(137), - [sym__todo_highlights] = STATE(137), - [sym_todo] = STATE(137), - [sym_note] = STATE(137), - [sym__symbol_fallback] = STATE(137), - [aux_sym__text] = STATE(131), - [aux_sym__inline_repeat1] = STATE(3), + [22] = { + [sym__inline] = STATE(979), + [sym__element] = STATE(46), + [sym_emphasis] = STATE(147), + [sym_emphasis_begin] = STATE(1217), + [sym_strong] = STATE(147), + [sym_strong_begin] = STATE(1218), + [sym_superscript] = STATE(147), + [sym_superscript_begin] = STATE(1219), + [sym_subscript] = STATE(147), + [sym_subscript_begin] = STATE(1220), + [sym_highlighted] = STATE(147), + [sym_highlighted_begin] = STATE(1221), + [sym_insert] = STATE(147), + [sym_insert_begin] = STATE(1222), + [sym_delete] = STATE(147), + [sym_delete_begin] = STATE(1223), + [sym_hard_line_break] = STATE(147), + [sym__smart_punctuation] = STATE(147), + [sym_autolink] = STATE(147), + [sym_footnote_reference] = STATE(147), + [sym_footnote_marker_begin] = STATE(1224), + [sym__image] = STATE(147), + [sym_full_reference_image] = STATE(147), + [sym_collapsed_reference_image] = STATE(147), + [sym_inline_image] = STATE(147), + [sym_image_description] = STATE(699), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(147), + [sym_full_reference_link] = STATE(147), + [sym_collapsed_reference_link] = STATE(147), + [sym_inline_link] = STATE(147), + [sym_link_text] = STATE(698), + [sym_span] = STATE(46), + [sym__bracketed_text_begin] = STATE(1268), + [sym__comment_with_spaces] = STATE(147), + [sym_raw_inline] = STATE(147), + [sym_math] = STATE(147), + [sym_verbatim] = STATE(147), + [sym__todo_highlights] = STATE(147), + [sym_todo] = STATE(147), + [sym_note] = STATE(147), + [sym__symbol_fallback] = STATE(147), + [aux_sym__text] = STATE(132), + [aux_sym__inline_repeat1] = STATE(46), + [anon_sym_LBRACE_] = ACTIONS(189), + [anon_sym__] = ACTIONS(191), + [anon_sym_LBRACE_STAR] = ACTIONS(193), + [anon_sym_STAR] = ACTIONS(195), + [anon_sym_LBRACE_CARET] = ACTIONS(197), + [anon_sym_CARET] = ACTIONS(197), + [anon_sym_LBRACE_TILDE] = ACTIONS(199), + [anon_sym_TILDE] = ACTIONS(199), + [anon_sym_LBRACE_EQ] = ACTIONS(201), + [anon_sym_LBRACE_PLUS] = ACTIONS(203), + [anon_sym_LBRACE_DASH] = ACTIONS(205), + [anon_sym_BSLASH] = ACTIONS(207), + [sym_quotation_marks] = ACTIONS(209), + [sym_ellipsis] = ACTIONS(209), + [sym_em_dash] = ACTIONS(209), + [sym_en_dash] = ACTIONS(211), + [sym_backslash_escape] = ACTIONS(211), + [anon_sym_LT] = ACTIONS(213), + [sym_symbol] = ACTIONS(209), + [anon_sym_LBRACK_CARET] = ACTIONS(215), + [anon_sym_BANG_LBRACK] = ACTIONS(217), + [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_DOLLAR] = ACTIONS(221), + [anon_sym_TODO] = ACTIONS(223), + [anon_sym_WIP] = ACTIONS(223), + [anon_sym_NOTE] = ACTIONS(225), + [anon_sym_INFO] = ACTIONS(225), + [anon_sym_XXX] = ACTIONS(225), + [sym_fixme] = ACTIONS(209), + [sym__whitespace1] = ACTIONS(227), + [sym__newline] = ACTIONS(229), + [aux_sym__text_token1] = ACTIONS(231), + [sym__verbatim_begin] = ACTIONS(233), + }, + [23] = { + [sym__inline] = STATE(978), + [sym__element] = STATE(7), + [sym_emphasis] = STATE(153), + [sym_emphasis_begin] = STATE(1208), + [sym_strong] = STATE(153), + [sym_strong_begin] = STATE(1209), + [sym_superscript] = STATE(153), + [sym_superscript_begin] = STATE(1210), + [sym_subscript] = STATE(153), + [sym_subscript_begin] = STATE(1211), + [sym_highlighted] = STATE(153), + [sym_highlighted_begin] = STATE(1212), + [sym_insert] = STATE(153), + [sym_insert_begin] = STATE(1213), + [sym_delete] = STATE(153), + [sym_delete_begin] = STATE(1214), + [sym_hard_line_break] = STATE(153), + [sym__smart_punctuation] = STATE(153), + [sym_autolink] = STATE(153), + [sym_footnote_reference] = STATE(153), + [sym_footnote_marker_begin] = STATE(1215), + [sym__image] = STATE(153), + [sym_full_reference_image] = STATE(153), + [sym_collapsed_reference_image] = STATE(153), + [sym_inline_image] = STATE(153), + [sym_image_description] = STATE(707), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(153), + [sym_full_reference_link] = STATE(153), + [sym_collapsed_reference_link] = STATE(153), + [sym_inline_link] = STATE(153), + [sym_link_text] = STATE(705), + [sym_span] = STATE(7), + [sym__bracketed_text_begin] = STATE(1267), + [sym__comment_with_spaces] = STATE(153), + [sym_raw_inline] = STATE(153), + [sym_math] = STATE(153), + [sym_verbatim] = STATE(153), + [sym__todo_highlights] = STATE(153), + [sym_todo] = STATE(153), + [sym_note] = STATE(153), + [sym__symbol_fallback] = STATE(153), + [aux_sym__text] = STATE(134), + [aux_sym__inline_repeat1] = STATE(7), [anon_sym_LBRACE_] = ACTIONS(97), [anon_sym__] = ACTIONS(99), [anon_sym_LBRACE_STAR] = ACTIONS(101), @@ -7495,536 +7129,608 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_XXX] = ACTIONS(133), [sym_fixme] = ACTIONS(117), [sym__whitespace1] = ACTIONS(135), - [sym__newline] = ACTIONS(145), + [sym__newline] = ACTIONS(137), [aux_sym__text_token1] = ACTIONS(139), [sym__verbatim_begin] = ACTIONS(141), }, - [29] = { - [sym__inline] = STATE(913), - [sym__element] = STATE(107), - [sym_emphasis] = STATE(140), - [sym_emphasis_begin] = STATE(1185), - [sym_strong] = STATE(140), - [sym_strong_begin] = STATE(1186), - [sym_superscript] = STATE(140), - [sym_superscript_begin] = STATE(1187), - [sym_subscript] = STATE(140), - [sym_subscript_begin] = STATE(1188), - [sym_highlighted] = STATE(140), - [sym_highlighted_begin] = STATE(1189), - [sym_insert] = STATE(140), - [sym_insert_begin] = STATE(1190), - [sym_delete] = STATE(140), - [sym_delete_begin] = STATE(1191), - [sym_hard_line_break] = STATE(140), - [sym__smart_punctuation] = STATE(140), - [sym_autolink] = STATE(140), - [sym_footnote_reference] = STATE(140), - [sym_footnote_marker_begin] = STATE(1192), - [sym__image] = STATE(140), - [sym_full_reference_image] = STATE(140), - [sym_collapsed_reference_image] = STATE(140), - [sym_inline_image] = STATE(140), - [sym__image_description] = STATE(700), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(140), - [sym_full_reference_link] = STATE(140), - [sym_collapsed_reference_link] = STATE(140), - [sym_inline_link] = STATE(140), - [sym_link_text] = STATE(699), - [sym_span] = STATE(107), - [sym__bracketed_text] = STATE(666), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(140), - [sym_raw_inline] = STATE(140), - [sym_math] = STATE(140), - [sym_verbatim] = STATE(140), - [sym__todo_highlights] = STATE(140), - [sym_todo] = STATE(140), - [sym_note] = STATE(140), - [sym__symbol_fallback] = STATE(140), - [aux_sym__text] = STATE(125), - [aux_sym__inline_repeat1] = STATE(107), - [anon_sym_LBRACE_] = ACTIONS(193), - [anon_sym__] = ACTIONS(195), - [anon_sym_LBRACE_STAR] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(199), - [anon_sym_LBRACE_CARET] = ACTIONS(201), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_LBRACE_TILDE] = ACTIONS(203), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_LBRACE_EQ] = ACTIONS(205), - [anon_sym_LBRACE_PLUS] = ACTIONS(207), - [anon_sym_LBRACE_DASH] = ACTIONS(209), - [anon_sym_BSLASH] = ACTIONS(211), - [sym_quotation_marks] = ACTIONS(213), - [sym_ellipsis] = ACTIONS(213), - [sym_em_dash] = ACTIONS(213), - [sym_en_dash] = ACTIONS(215), - [sym_backslash_escape] = ACTIONS(215), - [anon_sym_LT] = ACTIONS(217), - [sym_symbol] = ACTIONS(213), - [anon_sym_LBRACK_CARET] = ACTIONS(219), - [anon_sym_BANG_LBRACK] = ACTIONS(221), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_DOLLAR] = ACTIONS(225), - [anon_sym_TODO] = ACTIONS(227), - [anon_sym_WIP] = ACTIONS(227), - [anon_sym_NOTE] = ACTIONS(229), - [anon_sym_INFO] = ACTIONS(229), - [anon_sym_XXX] = ACTIONS(229), - [sym_fixme] = ACTIONS(213), - [sym__whitespace1] = ACTIONS(231), - [sym__newline] = ACTIONS(233), - [aux_sym__text_token1] = ACTIONS(235), - [sym__verbatim_begin] = ACTIONS(237), - }, - [30] = { - [sym__inline] = STATE(912), - [sym__element] = STATE(72), - [sym_emphasis] = STATE(135), - [sym_emphasis_begin] = STATE(1177), - [sym_strong] = STATE(135), - [sym_strong_begin] = STATE(1178), - [sym_superscript] = STATE(135), - [sym_superscript_begin] = STATE(1179), - [sym_subscript] = STATE(135), - [sym_subscript_begin] = STATE(1180), - [sym_highlighted] = STATE(135), - [sym_highlighted_begin] = STATE(1181), - [sym_insert] = STATE(135), - [sym_insert_begin] = STATE(1182), - [sym_delete] = STATE(135), - [sym_delete_begin] = STATE(1183), - [sym_hard_line_break] = STATE(135), - [sym__smart_punctuation] = STATE(135), - [sym_autolink] = STATE(135), - [sym_footnote_reference] = STATE(135), - [sym_footnote_marker_begin] = STATE(1184), - [sym__image] = STATE(135), - [sym_full_reference_image] = STATE(135), - [sym_collapsed_reference_image] = STATE(135), - [sym_inline_image] = STATE(135), - [sym__image_description] = STATE(687), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(135), - [sym_full_reference_link] = STATE(135), - [sym_collapsed_reference_link] = STATE(135), - [sym_inline_link] = STATE(135), - [sym_link_text] = STATE(684), - [sym_span] = STATE(72), - [sym__bracketed_text] = STATE(670), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(135), - [sym_raw_inline] = STATE(135), - [sym_math] = STATE(135), - [sym_verbatim] = STATE(135), - [sym__todo_highlights] = STATE(135), - [sym_todo] = STATE(135), - [sym_note] = STATE(135), - [sym__symbol_fallback] = STATE(135), - [aux_sym__text] = STATE(124), - [aux_sym__inline_repeat1] = STATE(72), - [anon_sym_LBRACE_] = ACTIONS(239), - [anon_sym__] = ACTIONS(241), - [anon_sym_LBRACE_STAR] = ACTIONS(243), - [anon_sym_STAR] = ACTIONS(245), - [anon_sym_LBRACE_CARET] = ACTIONS(247), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_LBRACE_TILDE] = ACTIONS(249), - [anon_sym_TILDE] = ACTIONS(249), - [anon_sym_LBRACE_EQ] = ACTIONS(251), - [anon_sym_LBRACE_PLUS] = ACTIONS(253), - [anon_sym_LBRACE_DASH] = ACTIONS(255), - [anon_sym_BSLASH] = ACTIONS(257), - [sym_quotation_marks] = ACTIONS(259), - [sym_ellipsis] = ACTIONS(259), - [sym_em_dash] = ACTIONS(259), - [sym_en_dash] = ACTIONS(261), - [sym_backslash_escape] = ACTIONS(261), - [anon_sym_LT] = ACTIONS(263), - [sym_symbol] = ACTIONS(259), - [anon_sym_LBRACK_CARET] = ACTIONS(265), - [anon_sym_BANG_LBRACK] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(269), - [anon_sym_DOLLAR] = ACTIONS(271), - [anon_sym_TODO] = ACTIONS(273), - [anon_sym_WIP] = ACTIONS(273), - [anon_sym_NOTE] = ACTIONS(275), - [anon_sym_INFO] = ACTIONS(275), - [anon_sym_XXX] = ACTIONS(275), - [sym_fixme] = ACTIONS(259), - [sym__whitespace1] = ACTIONS(277), - [sym__newline] = ACTIONS(279), - [aux_sym__text_token1] = ACTIONS(281), - [sym__verbatim_begin] = ACTIONS(283), + [24] = { + [sym__inline] = STATE(977), + [sym__element] = STATE(21), + [sym_emphasis] = STATE(149), + [sym_emphasis_begin] = STATE(1199), + [sym_strong] = STATE(149), + [sym_strong_begin] = STATE(1200), + [sym_superscript] = STATE(149), + [sym_superscript_begin] = STATE(1201), + [sym_subscript] = STATE(149), + [sym_subscript_begin] = STATE(1202), + [sym_highlighted] = STATE(149), + [sym_highlighted_begin] = STATE(1203), + [sym_insert] = STATE(149), + [sym_insert_begin] = STATE(1204), + [sym_delete] = STATE(149), + [sym_delete_begin] = STATE(1205), + [sym_hard_line_break] = STATE(149), + [sym__smart_punctuation] = STATE(149), + [sym_autolink] = STATE(149), + [sym_footnote_reference] = STATE(149), + [sym_footnote_marker_begin] = STATE(1206), + [sym__image] = STATE(149), + [sym_full_reference_image] = STATE(149), + [sym_collapsed_reference_image] = STATE(149), + [sym_inline_image] = STATE(149), + [sym_image_description] = STATE(714), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(149), + [sym_full_reference_link] = STATE(149), + [sym_collapsed_reference_link] = STATE(149), + [sym_inline_link] = STATE(149), + [sym_link_text] = STATE(710), + [sym_span] = STATE(21), + [sym__bracketed_text_begin] = STATE(1266), + [sym__comment_with_spaces] = STATE(149), + [sym_raw_inline] = STATE(149), + [sym_math] = STATE(149), + [sym_verbatim] = STATE(149), + [sym__todo_highlights] = STATE(149), + [sym_todo] = STATE(149), + [sym_note] = STATE(149), + [sym__symbol_fallback] = STATE(149), + [aux_sym__text] = STATE(142), + [aux_sym__inline_repeat1] = STATE(21), + [anon_sym_LBRACE_] = ACTIONS(494), + [anon_sym__] = ACTIONS(496), + [anon_sym_LBRACE_STAR] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(500), + [anon_sym_LBRACE_CARET] = ACTIONS(502), + [anon_sym_CARET] = ACTIONS(502), + [anon_sym_LBRACE_TILDE] = ACTIONS(504), + [anon_sym_TILDE] = ACTIONS(504), + [anon_sym_LBRACE_EQ] = ACTIONS(506), + [anon_sym_LBRACE_PLUS] = ACTIONS(508), + [anon_sym_LBRACE_DASH] = ACTIONS(510), + [anon_sym_BSLASH] = ACTIONS(512), + [sym_quotation_marks] = ACTIONS(514), + [sym_ellipsis] = ACTIONS(514), + [sym_em_dash] = ACTIONS(514), + [sym_en_dash] = ACTIONS(516), + [sym_backslash_escape] = ACTIONS(516), + [anon_sym_LT] = ACTIONS(518), + [sym_symbol] = ACTIONS(514), + [anon_sym_LBRACK_CARET] = ACTIONS(520), + [anon_sym_BANG_LBRACK] = ACTIONS(522), + [anon_sym_LBRACK] = ACTIONS(524), + [anon_sym_DOLLAR] = ACTIONS(526), + [anon_sym_TODO] = ACTIONS(528), + [anon_sym_WIP] = ACTIONS(528), + [anon_sym_NOTE] = ACTIONS(530), + [anon_sym_INFO] = ACTIONS(530), + [anon_sym_XXX] = ACTIONS(530), + [sym_fixme] = ACTIONS(514), + [sym__whitespace1] = ACTIONS(532), + [sym__newline] = ACTIONS(540), + [aux_sym__text_token1] = ACTIONS(536), + [sym__verbatim_begin] = ACTIONS(538), }, - [31] = { - [sym__inline] = STATE(911), - [sym__element] = STATE(82), - [sym_emphasis] = STATE(143), - [sym_emphasis_begin] = STATE(1169), - [sym_strong] = STATE(143), - [sym_strong_begin] = STATE(1170), - [sym_superscript] = STATE(143), - [sym_superscript_begin] = STATE(1171), - [sym_subscript] = STATE(143), - [sym_subscript_begin] = STATE(1172), - [sym_highlighted] = STATE(143), - [sym_highlighted_begin] = STATE(1173), - [sym_insert] = STATE(143), - [sym_insert_begin] = STATE(1174), - [sym_delete] = STATE(143), - [sym_delete_begin] = STATE(1175), - [sym_hard_line_break] = STATE(143), - [sym__smart_punctuation] = STATE(143), - [sym_autolink] = STATE(143), - [sym_footnote_reference] = STATE(143), - [sym_footnote_marker_begin] = STATE(1176), - [sym__image] = STATE(143), - [sym_full_reference_image] = STATE(143), - [sym_collapsed_reference_image] = STATE(143), - [sym_inline_image] = STATE(143), - [sym__image_description] = STATE(701), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(143), - [sym_full_reference_link] = STATE(143), - [sym_collapsed_reference_link] = STATE(143), - [sym_inline_link] = STATE(143), - [sym_link_text] = STATE(702), - [sym_span] = STATE(82), - [sym__bracketed_text] = STATE(667), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(143), - [sym_raw_inline] = STATE(143), - [sym_math] = STATE(143), - [sym_verbatim] = STATE(143), - [sym__todo_highlights] = STATE(143), - [sym_todo] = STATE(143), - [sym_note] = STATE(143), - [sym__symbol_fallback] = STATE(143), - [aux_sym__text] = STATE(126), - [aux_sym__inline_repeat1] = STATE(82), - [anon_sym_LBRACE_] = ACTIONS(285), - [anon_sym__] = ACTIONS(287), - [anon_sym_LBRACE_STAR] = ACTIONS(289), - [anon_sym_STAR] = ACTIONS(291), - [anon_sym_LBRACE_CARET] = ACTIONS(293), - [anon_sym_CARET] = ACTIONS(293), - [anon_sym_LBRACE_TILDE] = ACTIONS(295), - [anon_sym_TILDE] = ACTIONS(295), - [anon_sym_LBRACE_EQ] = ACTIONS(297), - [anon_sym_LBRACE_PLUS] = ACTIONS(299), - [anon_sym_LBRACE_DASH] = ACTIONS(301), - [anon_sym_BSLASH] = ACTIONS(303), - [sym_quotation_marks] = ACTIONS(305), - [sym_ellipsis] = ACTIONS(305), - [sym_em_dash] = ACTIONS(305), - [sym_en_dash] = ACTIONS(307), - [sym_backslash_escape] = ACTIONS(307), - [anon_sym_LT] = ACTIONS(309), - [sym_symbol] = ACTIONS(305), - [anon_sym_LBRACK_CARET] = ACTIONS(311), - [anon_sym_BANG_LBRACK] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_DOLLAR] = ACTIONS(317), - [anon_sym_TODO] = ACTIONS(319), - [anon_sym_WIP] = ACTIONS(319), - [anon_sym_NOTE] = ACTIONS(321), - [anon_sym_INFO] = ACTIONS(321), - [anon_sym_XXX] = ACTIONS(321), - [sym_fixme] = ACTIONS(305), - [sym__whitespace1] = ACTIONS(323), - [sym__newline] = ACTIONS(325), - [aux_sym__text_token1] = ACTIONS(327), - [sym__verbatim_begin] = ACTIONS(329), + [25] = { + [sym__inline] = STATE(976), + [sym__element] = STATE(80), + [sym_emphasis] = STATE(145), + [sym_emphasis_begin] = STATE(1190), + [sym_strong] = STATE(145), + [sym_strong_begin] = STATE(1191), + [sym_superscript] = STATE(145), + [sym_superscript_begin] = STATE(1192), + [sym_subscript] = STATE(145), + [sym_subscript_begin] = STATE(1193), + [sym_highlighted] = STATE(145), + [sym_highlighted_begin] = STATE(1194), + [sym_insert] = STATE(145), + [sym_insert_begin] = STATE(1195), + [sym_delete] = STATE(145), + [sym_delete_begin] = STATE(1196), + [sym_hard_line_break] = STATE(145), + [sym__smart_punctuation] = STATE(145), + [sym_autolink] = STATE(145), + [sym_footnote_reference] = STATE(145), + [sym_footnote_marker_begin] = STATE(1197), + [sym__image] = STATE(145), + [sym_full_reference_image] = STATE(145), + [sym_collapsed_reference_image] = STATE(145), + [sym_inline_image] = STATE(145), + [sym_image_description] = STATE(696), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(145), + [sym_full_reference_link] = STATE(145), + [sym_collapsed_reference_link] = STATE(145), + [sym_inline_link] = STATE(145), + [sym_link_text] = STATE(691), + [sym_span] = STATE(80), + [sym__bracketed_text_begin] = STATE(1265), + [sym__comment_with_spaces] = STATE(145), + [sym_raw_inline] = STATE(145), + [sym_math] = STATE(145), + [sym_verbatim] = STATE(145), + [sym__todo_highlights] = STATE(145), + [sym_todo] = STATE(145), + [sym_note] = STATE(145), + [sym__symbol_fallback] = STATE(145), + [aux_sym__text] = STATE(138), + [aux_sym__inline_repeat1] = STATE(80), + [anon_sym_LBRACE_] = ACTIONS(542), + [anon_sym__] = ACTIONS(544), + [anon_sym_LBRACE_STAR] = ACTIONS(546), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE_CARET] = ACTIONS(550), + [anon_sym_CARET] = ACTIONS(550), + [anon_sym_LBRACE_TILDE] = ACTIONS(552), + [anon_sym_TILDE] = ACTIONS(552), + [anon_sym_LBRACE_EQ] = ACTIONS(554), + [anon_sym_LBRACE_PLUS] = ACTIONS(556), + [anon_sym_LBRACE_DASH] = ACTIONS(558), + [anon_sym_BSLASH] = ACTIONS(560), + [sym_quotation_marks] = ACTIONS(562), + [sym_ellipsis] = ACTIONS(562), + [sym_em_dash] = ACTIONS(562), + [sym_en_dash] = ACTIONS(564), + [sym_backslash_escape] = ACTIONS(564), + [anon_sym_LT] = ACTIONS(566), + [sym_symbol] = ACTIONS(562), + [anon_sym_LBRACK_CARET] = ACTIONS(568), + [anon_sym_BANG_LBRACK] = ACTIONS(570), + [anon_sym_LBRACK] = ACTIONS(572), + [anon_sym_DOLLAR] = ACTIONS(574), + [anon_sym_TODO] = ACTIONS(576), + [anon_sym_WIP] = ACTIONS(576), + [anon_sym_NOTE] = ACTIONS(578), + [anon_sym_INFO] = ACTIONS(578), + [anon_sym_XXX] = ACTIONS(578), + [sym_fixme] = ACTIONS(562), + [sym__whitespace1] = ACTIONS(580), + [sym__newline] = ACTIONS(582), + [aux_sym__text_token1] = ACTIONS(584), + [sym__verbatim_begin] = ACTIONS(586), }, - [32] = { - [sym__inline] = STATE(899), - [sym__element] = STATE(72), - [sym_emphasis] = STATE(135), - [sym_emphasis_begin] = STATE(1177), - [sym_strong] = STATE(135), - [sym_strong_begin] = STATE(1178), - [sym_superscript] = STATE(135), - [sym_superscript_begin] = STATE(1179), - [sym_subscript] = STATE(135), - [sym_subscript_begin] = STATE(1180), - [sym_highlighted] = STATE(135), - [sym_highlighted_begin] = STATE(1181), - [sym_insert] = STATE(135), - [sym_insert_begin] = STATE(1182), - [sym_delete] = STATE(135), - [sym_delete_begin] = STATE(1183), - [sym_hard_line_break] = STATE(135), - [sym__smart_punctuation] = STATE(135), - [sym_autolink] = STATE(135), - [sym_footnote_reference] = STATE(135), - [sym_footnote_marker_begin] = STATE(1184), - [sym__image] = STATE(135), - [sym_full_reference_image] = STATE(135), - [sym_collapsed_reference_image] = STATE(135), - [sym_inline_image] = STATE(135), - [sym__image_description] = STATE(687), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(135), - [sym_full_reference_link] = STATE(135), - [sym_collapsed_reference_link] = STATE(135), - [sym_inline_link] = STATE(135), - [sym_link_text] = STATE(684), - [sym_span] = STATE(72), - [sym__bracketed_text] = STATE(670), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(135), - [sym_raw_inline] = STATE(135), - [sym_math] = STATE(135), - [sym_verbatim] = STATE(135), - [sym__todo_highlights] = STATE(135), - [sym_todo] = STATE(135), - [sym_note] = STATE(135), - [sym__symbol_fallback] = STATE(135), - [aux_sym__text] = STATE(124), - [aux_sym__inline_repeat1] = STATE(72), - [anon_sym_LBRACE_] = ACTIONS(239), - [anon_sym__] = ACTIONS(241), - [anon_sym_LBRACE_STAR] = ACTIONS(243), - [anon_sym_STAR] = ACTIONS(245), - [anon_sym_LBRACE_CARET] = ACTIONS(247), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_LBRACE_TILDE] = ACTIONS(249), - [anon_sym_TILDE] = ACTIONS(249), - [anon_sym_LBRACE_EQ] = ACTIONS(251), - [anon_sym_LBRACE_PLUS] = ACTIONS(253), - [anon_sym_LBRACE_DASH] = ACTIONS(255), - [anon_sym_BSLASH] = ACTIONS(257), - [sym_quotation_marks] = ACTIONS(259), - [sym_ellipsis] = ACTIONS(259), - [sym_em_dash] = ACTIONS(259), - [sym_en_dash] = ACTIONS(261), - [sym_backslash_escape] = ACTIONS(261), - [anon_sym_LT] = ACTIONS(263), - [sym_symbol] = ACTIONS(259), - [anon_sym_LBRACK_CARET] = ACTIONS(265), - [anon_sym_BANG_LBRACK] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(269), - [anon_sym_DOLLAR] = ACTIONS(271), - [anon_sym_TODO] = ACTIONS(273), - [anon_sym_WIP] = ACTIONS(273), - [anon_sym_NOTE] = ACTIONS(275), - [anon_sym_INFO] = ACTIONS(275), - [anon_sym_XXX] = ACTIONS(275), - [sym_fixme] = ACTIONS(259), - [sym__whitespace1] = ACTIONS(277), - [sym__newline] = ACTIONS(279), - [aux_sym__text_token1] = ACTIONS(281), - [sym__verbatim_begin] = ACTIONS(283), + [26] = { + [sym__inline] = STATE(975), + [sym__element] = STATE(124), + [sym_emphasis] = STATE(151), + [sym_emphasis_begin] = STATE(1181), + [sym_strong] = STATE(151), + [sym_strong_begin] = STATE(1182), + [sym_superscript] = STATE(151), + [sym_superscript_begin] = STATE(1183), + [sym_subscript] = STATE(151), + [sym_subscript_begin] = STATE(1184), + [sym_highlighted] = STATE(151), + [sym_highlighted_begin] = STATE(1185), + [sym_insert] = STATE(151), + [sym_insert_begin] = STATE(1186), + [sym_delete] = STATE(151), + [sym_delete_begin] = STATE(1187), + [sym_hard_line_break] = STATE(151), + [sym__smart_punctuation] = STATE(151), + [sym_autolink] = STATE(151), + [sym_footnote_reference] = STATE(151), + [sym_footnote_marker_begin] = STATE(1188), + [sym__image] = STATE(151), + [sym_full_reference_image] = STATE(151), + [sym_collapsed_reference_image] = STATE(151), + [sym_inline_image] = STATE(151), + [sym_image_description] = STATE(700), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(151), + [sym_full_reference_link] = STATE(151), + [sym_collapsed_reference_link] = STATE(151), + [sym_inline_link] = STATE(151), + [sym_link_text] = STATE(701), + [sym_span] = STATE(124), + [sym__bracketed_text_begin] = STATE(1264), + [sym__comment_with_spaces] = STATE(151), + [sym_raw_inline] = STATE(151), + [sym_math] = STATE(151), + [sym_verbatim] = STATE(151), + [sym__todo_highlights] = STATE(151), + [sym_todo] = STATE(151), + [sym_note] = STATE(151), + [sym__symbol_fallback] = STATE(151), + [aux_sym__text] = STATE(140), + [aux_sym__inline_repeat1] = STATE(124), + [anon_sym_LBRACE_] = ACTIONS(143), + [anon_sym__] = ACTIONS(145), + [anon_sym_LBRACE_STAR] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(149), + [anon_sym_LBRACE_CARET] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(151), + [anon_sym_LBRACE_TILDE] = ACTIONS(153), + [anon_sym_TILDE] = ACTIONS(153), + [anon_sym_LBRACE_EQ] = ACTIONS(155), + [anon_sym_LBRACE_PLUS] = ACTIONS(157), + [anon_sym_LBRACE_DASH] = ACTIONS(159), + [anon_sym_BSLASH] = ACTIONS(161), + [sym_quotation_marks] = ACTIONS(163), + [sym_ellipsis] = ACTIONS(163), + [sym_em_dash] = ACTIONS(163), + [sym_en_dash] = ACTIONS(165), + [sym_backslash_escape] = ACTIONS(165), + [anon_sym_LT] = ACTIONS(167), + [sym_symbol] = ACTIONS(163), + [anon_sym_LBRACK_CARET] = ACTIONS(169), + [anon_sym_BANG_LBRACK] = ACTIONS(171), + [anon_sym_LBRACK] = ACTIONS(173), + [anon_sym_DOLLAR] = ACTIONS(175), + [anon_sym_TODO] = ACTIONS(177), + [anon_sym_WIP] = ACTIONS(177), + [anon_sym_NOTE] = ACTIONS(179), + [anon_sym_INFO] = ACTIONS(179), + [anon_sym_XXX] = ACTIONS(179), + [sym_fixme] = ACTIONS(163), + [sym__whitespace1] = ACTIONS(181), + [sym__newline] = ACTIONS(183), + [aux_sym__text_token1] = ACTIONS(185), + [sym__verbatim_begin] = ACTIONS(187), }, - [33] = { - [sym__inline_without_trailing_space] = STATE(910), - [sym__element] = STATE(572), - [sym_emphasis] = STATE(138), - [sym_emphasis_begin] = STATE(1161), - [sym_strong] = STATE(138), - [sym_strong_begin] = STATE(1162), - [sym_superscript] = STATE(138), - [sym_superscript_begin] = STATE(1163), - [sym_subscript] = STATE(138), - [sym_subscript_begin] = STATE(1164), - [sym_highlighted] = STATE(138), - [sym_highlighted_begin] = STATE(1165), - [sym_insert] = STATE(138), - [sym_insert_begin] = STATE(1166), - [sym_delete] = STATE(138), - [sym_delete_begin] = STATE(1167), - [sym_hard_line_break] = STATE(138), - [sym__smart_punctuation] = STATE(138), - [sym_autolink] = STATE(138), - [sym_footnote_reference] = STATE(138), - [sym_footnote_marker_begin] = STATE(1168), - [sym__image] = STATE(138), - [sym_full_reference_image] = STATE(138), - [sym_collapsed_reference_image] = STATE(138), - [sym_inline_image] = STATE(138), - [sym__image_description] = STATE(703), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(138), - [sym_full_reference_link] = STATE(138), - [sym_collapsed_reference_link] = STATE(138), - [sym_inline_link] = STATE(138), - [sym_link_text] = STATE(697), - [sym_span] = STATE(572), - [sym__bracketed_text] = STATE(671), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(138), - [sym_raw_inline] = STATE(138), - [sym_math] = STATE(138), - [sym_verbatim] = STATE(138), - [sym__todo_highlights] = STATE(138), - [sym_todo] = STATE(138), - [sym_note] = STATE(138), - [sym__symbol_fallback] = STATE(138), - [aux_sym__text] = STATE(122), - [aux_sym__inline_repeat1] = STATE(120), - [anon_sym_LBRACE_] = ACTIONS(331), - [anon_sym__] = ACTIONS(333), - [anon_sym_LBRACE_STAR] = ACTIONS(335), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_LBRACE_CARET] = ACTIONS(339), - [anon_sym_CARET] = ACTIONS(339), - [anon_sym_LBRACE_TILDE] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_LBRACE_EQ] = ACTIONS(343), - [anon_sym_LBRACE_PLUS] = ACTIONS(345), - [anon_sym_LBRACE_DASH] = ACTIONS(347), - [anon_sym_BSLASH] = ACTIONS(349), - [sym_quotation_marks] = ACTIONS(351), - [sym_ellipsis] = ACTIONS(351), - [sym_em_dash] = ACTIONS(351), - [sym_en_dash] = ACTIONS(353), - [sym_backslash_escape] = ACTIONS(353), - [anon_sym_LT] = ACTIONS(355), - [sym_symbol] = ACTIONS(351), - [anon_sym_LBRACK_CARET] = ACTIONS(357), - [anon_sym_BANG_LBRACK] = ACTIONS(359), - [anon_sym_LBRACK] = ACTIONS(361), - [anon_sym_DOLLAR] = ACTIONS(363), - [anon_sym_TODO] = ACTIONS(365), - [anon_sym_WIP] = ACTIONS(365), - [anon_sym_NOTE] = ACTIONS(367), - [anon_sym_INFO] = ACTIONS(367), - [anon_sym_XXX] = ACTIONS(367), - [sym_fixme] = ACTIONS(351), - [sym__whitespace1] = ACTIONS(369), - [sym__newline] = ACTIONS(371), - [aux_sym__text_token1] = ACTIONS(373), - [sym__verbatim_begin] = ACTIONS(375), + [27] = { + [sym__inline_without_trailing_space] = STATE(974), + [sym__element] = STATE(570), + [sym_emphasis] = STATE(152), + [sym_emphasis_begin] = STATE(1172), + [sym_strong] = STATE(152), + [sym_strong_begin] = STATE(1173), + [sym_superscript] = STATE(152), + [sym_superscript_begin] = STATE(1174), + [sym_subscript] = STATE(152), + [sym_subscript_begin] = STATE(1175), + [sym_highlighted] = STATE(152), + [sym_highlighted_begin] = STATE(1176), + [sym_insert] = STATE(152), + [sym_insert_begin] = STATE(1177), + [sym_delete] = STATE(152), + [sym_delete_begin] = STATE(1178), + [sym_hard_line_break] = STATE(152), + [sym__smart_punctuation] = STATE(152), + [sym_autolink] = STATE(152), + [sym_footnote_reference] = STATE(152), + [sym_footnote_marker_begin] = STATE(1179), + [sym__image] = STATE(152), + [sym_full_reference_image] = STATE(152), + [sym_collapsed_reference_image] = STATE(152), + [sym_inline_image] = STATE(152), + [sym_image_description] = STATE(704), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(152), + [sym_full_reference_link] = STATE(152), + [sym_collapsed_reference_link] = STATE(152), + [sym_inline_link] = STATE(152), + [sym_link_text] = STATE(706), + [sym_span] = STATE(570), + [sym__bracketed_text_begin] = STATE(1263), + [sym__comment_with_spaces] = STATE(152), + [sym_raw_inline] = STATE(152), + [sym_math] = STATE(152), + [sym_verbatim] = STATE(152), + [sym__todo_highlights] = STATE(152), + [sym_todo] = STATE(152), + [sym_note] = STATE(152), + [sym__symbol_fallback] = STATE(152), + [aux_sym__text] = STATE(133), + [aux_sym__inline_repeat1] = STATE(130), + [anon_sym_LBRACE_] = ACTIONS(448), + [anon_sym__] = ACTIONS(450), + [anon_sym_LBRACE_STAR] = ACTIONS(452), + [anon_sym_STAR] = ACTIONS(454), + [anon_sym_LBRACE_CARET] = ACTIONS(456), + [anon_sym_CARET] = ACTIONS(456), + [anon_sym_LBRACE_TILDE] = ACTIONS(458), + [anon_sym_TILDE] = ACTIONS(458), + [anon_sym_LBRACE_EQ] = ACTIONS(460), + [anon_sym_LBRACE_PLUS] = ACTIONS(462), + [anon_sym_LBRACE_DASH] = ACTIONS(464), + [anon_sym_BSLASH] = ACTIONS(466), + [sym_quotation_marks] = ACTIONS(468), + [sym_ellipsis] = ACTIONS(468), + [sym_em_dash] = ACTIONS(468), + [sym_en_dash] = ACTIONS(470), + [sym_backslash_escape] = ACTIONS(470), + [anon_sym_LT] = ACTIONS(472), + [sym_symbol] = ACTIONS(468), + [anon_sym_LBRACK_CARET] = ACTIONS(474), + [anon_sym_BANG_LBRACK] = ACTIONS(476), + [anon_sym_LBRACK] = ACTIONS(478), + [anon_sym_DOLLAR] = ACTIONS(480), + [anon_sym_TODO] = ACTIONS(482), + [anon_sym_WIP] = ACTIONS(482), + [anon_sym_NOTE] = ACTIONS(484), + [anon_sym_INFO] = ACTIONS(484), + [anon_sym_XXX] = ACTIONS(484), + [sym_fixme] = ACTIONS(468), + [sym__whitespace1] = ACTIONS(486), + [sym__newline] = ACTIONS(488), + [aux_sym__text_token1] = ACTIONS(490), + [sym__verbatim_begin] = ACTIONS(492), }, - [34] = { - [sym__inline] = STATE(1009), - [sym__element] = STATE(107), - [sym_emphasis] = STATE(140), - [sym_emphasis_begin] = STATE(1185), - [sym_strong] = STATE(140), - [sym_strong_begin] = STATE(1186), - [sym_superscript] = STATE(140), - [sym_superscript_begin] = STATE(1187), - [sym_subscript] = STATE(140), - [sym_subscript_begin] = STATE(1188), - [sym_highlighted] = STATE(140), - [sym_highlighted_begin] = STATE(1189), - [sym_insert] = STATE(140), - [sym_insert_begin] = STATE(1190), - [sym_delete] = STATE(140), - [sym_delete_begin] = STATE(1191), - [sym_hard_line_break] = STATE(140), - [sym__smart_punctuation] = STATE(140), - [sym_autolink] = STATE(140), - [sym_footnote_reference] = STATE(140), - [sym_footnote_marker_begin] = STATE(1192), - [sym__image] = STATE(140), - [sym_full_reference_image] = STATE(140), - [sym_collapsed_reference_image] = STATE(140), - [sym_inline_image] = STATE(140), - [sym__image_description] = STATE(700), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(140), - [sym_full_reference_link] = STATE(140), - [sym_collapsed_reference_link] = STATE(140), - [sym_inline_link] = STATE(140), - [sym_link_text] = STATE(699), - [sym_span] = STATE(107), - [sym__bracketed_text] = STATE(666), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(140), - [sym_raw_inline] = STATE(140), - [sym_math] = STATE(140), - [sym_verbatim] = STATE(140), - [sym__todo_highlights] = STATE(140), - [sym_todo] = STATE(140), - [sym_note] = STATE(140), - [sym__symbol_fallback] = STATE(140), - [aux_sym__text] = STATE(125), - [aux_sym__inline_repeat1] = STATE(107), - [anon_sym_LBRACE_] = ACTIONS(193), - [anon_sym__] = ACTIONS(195), - [anon_sym_LBRACE_STAR] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(199), - [anon_sym_LBRACE_CARET] = ACTIONS(201), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_LBRACE_TILDE] = ACTIONS(203), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_LBRACE_EQ] = ACTIONS(205), - [anon_sym_LBRACE_PLUS] = ACTIONS(207), - [anon_sym_LBRACE_DASH] = ACTIONS(209), - [anon_sym_BSLASH] = ACTIONS(211), - [sym_quotation_marks] = ACTIONS(213), - [sym_ellipsis] = ACTIONS(213), - [sym_em_dash] = ACTIONS(213), - [sym_en_dash] = ACTIONS(215), - [sym_backslash_escape] = ACTIONS(215), - [anon_sym_LT] = ACTIONS(217), - [sym_symbol] = ACTIONS(213), - [anon_sym_LBRACK_CARET] = ACTIONS(219), - [anon_sym_BANG_LBRACK] = ACTIONS(221), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_DOLLAR] = ACTIONS(225), - [anon_sym_TODO] = ACTIONS(227), - [anon_sym_WIP] = ACTIONS(227), - [anon_sym_NOTE] = ACTIONS(229), - [anon_sym_INFO] = ACTIONS(229), - [anon_sym_XXX] = ACTIONS(229), - [sym_fixme] = ACTIONS(213), - [sym__whitespace1] = ACTIONS(231), - [sym__newline] = ACTIONS(233), - [aux_sym__text_token1] = ACTIONS(235), - [sym__verbatim_begin] = ACTIONS(237), + [28] = { + [sym__inline_without_trailing_space] = STATE(973), + [sym__element] = STATE(623), + [sym_emphasis] = STATE(148), + [sym_emphasis_begin] = STATE(1163), + [sym_strong] = STATE(148), + [sym_strong_begin] = STATE(1164), + [sym_superscript] = STATE(148), + [sym_superscript_begin] = STATE(1165), + [sym_subscript] = STATE(148), + [sym_subscript_begin] = STATE(1166), + [sym_highlighted] = STATE(148), + [sym_highlighted_begin] = STATE(1167), + [sym_insert] = STATE(148), + [sym_insert_begin] = STATE(1168), + [sym_delete] = STATE(148), + [sym_delete_begin] = STATE(1169), + [sym_hard_line_break] = STATE(148), + [sym__smart_punctuation] = STATE(148), + [sym_autolink] = STATE(148), + [sym_footnote_reference] = STATE(148), + [sym_footnote_marker_begin] = STATE(1170), + [sym__image] = STATE(148), + [sym_full_reference_image] = STATE(148), + [sym_collapsed_reference_image] = STATE(148), + [sym_inline_image] = STATE(148), + [sym_image_description] = STATE(712), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(148), + [sym_full_reference_link] = STATE(148), + [sym_collapsed_reference_link] = STATE(148), + [sym_inline_link] = STATE(148), + [sym_link_text] = STATE(713), + [sym_span] = STATE(623), + [sym__bracketed_text_begin] = STATE(1262), + [sym__comment_with_spaces] = STATE(148), + [sym_raw_inline] = STATE(148), + [sym_math] = STATE(148), + [sym_verbatim] = STATE(148), + [sym__todo_highlights] = STATE(148), + [sym_todo] = STATE(148), + [sym_note] = STATE(148), + [sym__symbol_fallback] = STATE(148), + [aux_sym__text] = STATE(136), + [aux_sym__inline_repeat1] = STATE(129), + [anon_sym_LBRACE_] = ACTIONS(402), + [anon_sym__] = ACTIONS(404), + [anon_sym_LBRACE_STAR] = ACTIONS(406), + [anon_sym_STAR] = ACTIONS(408), + [anon_sym_LBRACE_CARET] = ACTIONS(410), + [anon_sym_CARET] = ACTIONS(410), + [anon_sym_LBRACE_TILDE] = ACTIONS(412), + [anon_sym_TILDE] = ACTIONS(412), + [anon_sym_LBRACE_EQ] = ACTIONS(414), + [anon_sym_LBRACE_PLUS] = ACTIONS(416), + [anon_sym_LBRACE_DASH] = ACTIONS(418), + [anon_sym_BSLASH] = ACTIONS(420), + [sym_quotation_marks] = ACTIONS(422), + [sym_ellipsis] = ACTIONS(422), + [sym_em_dash] = ACTIONS(422), + [sym_en_dash] = ACTIONS(424), + [sym_backslash_escape] = ACTIONS(424), + [anon_sym_LT] = ACTIONS(426), + [sym_symbol] = ACTIONS(422), + [anon_sym_LBRACK_CARET] = ACTIONS(428), + [anon_sym_BANG_LBRACK] = ACTIONS(430), + [anon_sym_LBRACK] = ACTIONS(432), + [anon_sym_DOLLAR] = ACTIONS(434), + [anon_sym_TODO] = ACTIONS(436), + [anon_sym_WIP] = ACTIONS(436), + [anon_sym_NOTE] = ACTIONS(438), + [anon_sym_INFO] = ACTIONS(438), + [anon_sym_XXX] = ACTIONS(438), + [sym_fixme] = ACTIONS(422), + [sym__whitespace1] = ACTIONS(440), + [sym__newline] = ACTIONS(442), + [aux_sym__text_token1] = ACTIONS(444), + [sym__verbatim_begin] = ACTIONS(446), }, - [35] = { - [sym__inline] = STATE(1008), - [sym__element] = STATE(3), - [sym_emphasis] = STATE(137), - [sym_emphasis_begin] = STATE(1193), - [sym_strong] = STATE(137), - [sym_strong_begin] = STATE(1194), - [sym_superscript] = STATE(137), - [sym_superscript_begin] = STATE(1195), - [sym_subscript] = STATE(137), - [sym_subscript_begin] = STATE(1196), - [sym_highlighted] = STATE(137), - [sym_highlighted_begin] = STATE(1197), - [sym_insert] = STATE(137), - [sym_insert_begin] = STATE(1198), - [sym_delete] = STATE(137), - [sym_delete_begin] = STATE(1199), - [sym_hard_line_break] = STATE(137), - [sym__smart_punctuation] = STATE(137), - [sym_autolink] = STATE(137), - [sym_footnote_reference] = STATE(137), - [sym_footnote_marker_begin] = STATE(1200), - [sym__image] = STATE(137), - [sym_full_reference_image] = STATE(137), - [sym_collapsed_reference_image] = STATE(137), - [sym_inline_image] = STATE(137), - [sym__image_description] = STATE(694), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(137), - [sym_full_reference_link] = STATE(137), - [sym_collapsed_reference_link] = STATE(137), - [sym_inline_link] = STATE(137), + [29] = { + [sym__inline] = STATE(948), + [sym__element] = STATE(84), + [sym_emphasis] = STATE(146), + [sym_emphasis_begin] = STATE(1226), + [sym_strong] = STATE(146), + [sym_strong_begin] = STATE(1227), + [sym_superscript] = STATE(146), + [sym_superscript_begin] = STATE(1228), + [sym_subscript] = STATE(146), + [sym_subscript_begin] = STATE(1229), + [sym_highlighted] = STATE(146), + [sym_highlighted_begin] = STATE(1230), + [sym_insert] = STATE(146), + [sym_insert_begin] = STATE(1231), + [sym_delete] = STATE(146), + [sym_delete_begin] = STATE(1232), + [sym_hard_line_break] = STATE(146), + [sym__smart_punctuation] = STATE(146), + [sym_autolink] = STATE(146), + [sym_footnote_reference] = STATE(146), + [sym_footnote_marker_begin] = STATE(1233), + [sym__image] = STATE(146), + [sym_full_reference_image] = STATE(146), + [sym_collapsed_reference_image] = STATE(146), + [sym_inline_image] = STATE(146), + [sym_image_description] = STATE(694), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(146), + [sym_full_reference_link] = STATE(146), + [sym_collapsed_reference_link] = STATE(146), + [sym_inline_link] = STATE(146), [sym_link_text] = STATE(693), - [sym_span] = STATE(3), - [sym__bracketed_text] = STATE(672), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(137), - [sym_raw_inline] = STATE(137), - [sym_math] = STATE(137), - [sym_verbatim] = STATE(137), - [sym__todo_highlights] = STATE(137), - [sym_todo] = STATE(137), - [sym_note] = STATE(137), - [sym__symbol_fallback] = STATE(137), - [aux_sym__text] = STATE(131), - [aux_sym__inline_repeat1] = STATE(3), + [sym_span] = STATE(84), + [sym__bracketed_text_begin] = STATE(1269), + [sym__comment_with_spaces] = STATE(146), + [sym_raw_inline] = STATE(146), + [sym_math] = STATE(146), + [sym_verbatim] = STATE(146), + [sym__todo_highlights] = STATE(146), + [sym_todo] = STATE(146), + [sym_note] = STATE(146), + [sym__symbol_fallback] = STATE(146), + [aux_sym__text] = STATE(141), + [aux_sym__inline_repeat1] = STATE(84), + [anon_sym_LBRACE_] = ACTIONS(356), + [anon_sym__] = ACTIONS(358), + [anon_sym_LBRACE_STAR] = ACTIONS(360), + [anon_sym_STAR] = ACTIONS(362), + [anon_sym_LBRACE_CARET] = ACTIONS(364), + [anon_sym_CARET] = ACTIONS(364), + [anon_sym_LBRACE_TILDE] = ACTIONS(366), + [anon_sym_TILDE] = ACTIONS(366), + [anon_sym_LBRACE_EQ] = ACTIONS(368), + [anon_sym_LBRACE_PLUS] = ACTIONS(370), + [anon_sym_LBRACE_DASH] = ACTIONS(372), + [anon_sym_BSLASH] = ACTIONS(374), + [sym_quotation_marks] = ACTIONS(376), + [sym_ellipsis] = ACTIONS(376), + [sym_em_dash] = ACTIONS(376), + [sym_en_dash] = ACTIONS(378), + [sym_backslash_escape] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [sym_symbol] = ACTIONS(376), + [anon_sym_LBRACK_CARET] = ACTIONS(382), + [anon_sym_BANG_LBRACK] = ACTIONS(384), + [anon_sym_LBRACK] = ACTIONS(386), + [anon_sym_DOLLAR] = ACTIONS(388), + [anon_sym_TODO] = ACTIONS(390), + [anon_sym_WIP] = ACTIONS(390), + [anon_sym_NOTE] = ACTIONS(392), + [anon_sym_INFO] = ACTIONS(392), + [anon_sym_XXX] = ACTIONS(392), + [sym_fixme] = ACTIONS(376), + [sym__whitespace1] = ACTIONS(394), + [sym__newline] = ACTIONS(396), + [aux_sym__text_token1] = ACTIONS(398), + [sym__verbatim_begin] = ACTIONS(400), + }, + [30] = { + [sym__inline] = STATE(946), + [sym__element] = STATE(46), + [sym_emphasis] = STATE(147), + [sym_emphasis_begin] = STATE(1217), + [sym_strong] = STATE(147), + [sym_strong_begin] = STATE(1218), + [sym_superscript] = STATE(147), + [sym_superscript_begin] = STATE(1219), + [sym_subscript] = STATE(147), + [sym_subscript_begin] = STATE(1220), + [sym_highlighted] = STATE(147), + [sym_highlighted_begin] = STATE(1221), + [sym_insert] = STATE(147), + [sym_insert_begin] = STATE(1222), + [sym_delete] = STATE(147), + [sym_delete_begin] = STATE(1223), + [sym_hard_line_break] = STATE(147), + [sym__smart_punctuation] = STATE(147), + [sym_autolink] = STATE(147), + [sym_footnote_reference] = STATE(147), + [sym_footnote_marker_begin] = STATE(1224), + [sym__image] = STATE(147), + [sym_full_reference_image] = STATE(147), + [sym_collapsed_reference_image] = STATE(147), + [sym_inline_image] = STATE(147), + [sym_image_description] = STATE(699), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(147), + [sym_full_reference_link] = STATE(147), + [sym_collapsed_reference_link] = STATE(147), + [sym_inline_link] = STATE(147), + [sym_link_text] = STATE(698), + [sym_span] = STATE(46), + [sym__bracketed_text_begin] = STATE(1268), + [sym__comment_with_spaces] = STATE(147), + [sym_raw_inline] = STATE(147), + [sym_math] = STATE(147), + [sym_verbatim] = STATE(147), + [sym__todo_highlights] = STATE(147), + [sym_todo] = STATE(147), + [sym_note] = STATE(147), + [sym__symbol_fallback] = STATE(147), + [aux_sym__text] = STATE(132), + [aux_sym__inline_repeat1] = STATE(46), + [anon_sym_LBRACE_] = ACTIONS(189), + [anon_sym__] = ACTIONS(191), + [anon_sym_LBRACE_STAR] = ACTIONS(193), + [anon_sym_STAR] = ACTIONS(195), + [anon_sym_LBRACE_CARET] = ACTIONS(197), + [anon_sym_CARET] = ACTIONS(197), + [anon_sym_LBRACE_TILDE] = ACTIONS(199), + [anon_sym_TILDE] = ACTIONS(199), + [anon_sym_LBRACE_EQ] = ACTIONS(201), + [anon_sym_LBRACE_PLUS] = ACTIONS(203), + [anon_sym_LBRACE_DASH] = ACTIONS(205), + [anon_sym_BSLASH] = ACTIONS(207), + [sym_quotation_marks] = ACTIONS(209), + [sym_ellipsis] = ACTIONS(209), + [sym_em_dash] = ACTIONS(209), + [sym_en_dash] = ACTIONS(211), + [sym_backslash_escape] = ACTIONS(211), + [anon_sym_LT] = ACTIONS(213), + [sym_symbol] = ACTIONS(209), + [anon_sym_LBRACK_CARET] = ACTIONS(215), + [anon_sym_BANG_LBRACK] = ACTIONS(217), + [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_DOLLAR] = ACTIONS(221), + [anon_sym_TODO] = ACTIONS(223), + [anon_sym_WIP] = ACTIONS(223), + [anon_sym_NOTE] = ACTIONS(225), + [anon_sym_INFO] = ACTIONS(225), + [anon_sym_XXX] = ACTIONS(225), + [sym_fixme] = ACTIONS(209), + [sym__whitespace1] = ACTIONS(227), + [sym__newline] = ACTIONS(229), + [aux_sym__text_token1] = ACTIONS(231), + [sym__verbatim_begin] = ACTIONS(233), + }, + [31] = { + [sym__inline] = STATE(945), + [sym__element] = STATE(7), + [sym_emphasis] = STATE(153), + [sym_emphasis_begin] = STATE(1208), + [sym_strong] = STATE(153), + [sym_strong_begin] = STATE(1209), + [sym_superscript] = STATE(153), + [sym_superscript_begin] = STATE(1210), + [sym_subscript] = STATE(153), + [sym_subscript_begin] = STATE(1211), + [sym_highlighted] = STATE(153), + [sym_highlighted_begin] = STATE(1212), + [sym_insert] = STATE(153), + [sym_insert_begin] = STATE(1213), + [sym_delete] = STATE(153), + [sym_delete_begin] = STATE(1214), + [sym_hard_line_break] = STATE(153), + [sym__smart_punctuation] = STATE(153), + [sym_autolink] = STATE(153), + [sym_footnote_reference] = STATE(153), + [sym_footnote_marker_begin] = STATE(1215), + [sym__image] = STATE(153), + [sym_full_reference_image] = STATE(153), + [sym_collapsed_reference_image] = STATE(153), + [sym_inline_image] = STATE(153), + [sym_image_description] = STATE(707), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(153), + [sym_full_reference_link] = STATE(153), + [sym_collapsed_reference_link] = STATE(153), + [sym_inline_link] = STATE(153), + [sym_link_text] = STATE(705), + [sym_span] = STATE(7), + [sym__bracketed_text_begin] = STATE(1267), + [sym__comment_with_spaces] = STATE(153), + [sym_raw_inline] = STATE(153), + [sym_math] = STATE(153), + [sym_verbatim] = STATE(153), + [sym__todo_highlights] = STATE(153), + [sym_todo] = STATE(153), + [sym_note] = STATE(153), + [sym__symbol_fallback] = STATE(153), + [aux_sym__text] = STATE(134), + [aux_sym__inline_repeat1] = STATE(7), [anon_sym_LBRACE_] = ACTIONS(97), [anon_sym__] = ACTIONS(99), [anon_sym_LBRACE_STAR] = ACTIONS(101), @@ -8055,216 +7761,450 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_XXX] = ACTIONS(133), [sym_fixme] = ACTIONS(117), [sym__whitespace1] = ACTIONS(135), - [sym__newline] = ACTIONS(145), + [sym__newline] = ACTIONS(137), [aux_sym__text_token1] = ACTIONS(139), [sym__verbatim_begin] = ACTIONS(141), }, - [36] = { - [sym__inline_without_trailing_space] = STATE(909), - [sym__element] = STATE(538), - [sym_emphasis] = STATE(141), - [sym_emphasis_begin] = STATE(1153), - [sym_strong] = STATE(141), - [sym_strong_begin] = STATE(1154), - [sym_superscript] = STATE(141), - [sym_superscript_begin] = STATE(1155), - [sym_subscript] = STATE(141), - [sym_subscript_begin] = STATE(1156), - [sym_highlighted] = STATE(141), - [sym_highlighted_begin] = STATE(1157), - [sym_insert] = STATE(141), - [sym_insert_begin] = STATE(1158), - [sym_delete] = STATE(141), - [sym_delete_begin] = STATE(1159), - [sym_hard_line_break] = STATE(141), - [sym__smart_punctuation] = STATE(141), - [sym_autolink] = STATE(141), - [sym_footnote_reference] = STATE(141), - [sym_footnote_marker_begin] = STATE(1160), - [sym__image] = STATE(141), - [sym_full_reference_image] = STATE(141), - [sym_collapsed_reference_image] = STATE(141), - [sym_inline_image] = STATE(141), - [sym__image_description] = STATE(681), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(141), - [sym_full_reference_link] = STATE(141), - [sym_collapsed_reference_link] = STATE(141), - [sym_inline_link] = STATE(141), - [sym_link_text] = STATE(680), - [sym_span] = STATE(538), - [sym__bracketed_text] = STATE(664), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(141), - [sym_raw_inline] = STATE(141), - [sym_math] = STATE(141), - [sym_verbatim] = STATE(141), - [sym__todo_highlights] = STATE(141), - [sym_todo] = STATE(141), - [sym_note] = STATE(141), - [sym__symbol_fallback] = STATE(141), - [aux_sym__text] = STATE(128), - [aux_sym__inline_repeat1] = STATE(119), - [anon_sym_LBRACE_] = ACTIONS(147), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_STAR] = ACTIONS(151), - [anon_sym_STAR] = ACTIONS(153), - [anon_sym_LBRACE_CARET] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_LBRACE_TILDE] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_LBRACE_EQ] = ACTIONS(159), - [anon_sym_LBRACE_PLUS] = ACTIONS(161), - [anon_sym_LBRACE_DASH] = ACTIONS(163), - [anon_sym_BSLASH] = ACTIONS(165), - [sym_quotation_marks] = ACTIONS(167), - [sym_ellipsis] = ACTIONS(167), - [sym_em_dash] = ACTIONS(167), - [sym_en_dash] = ACTIONS(169), - [sym_backslash_escape] = ACTIONS(169), - [anon_sym_LT] = ACTIONS(171), - [sym_symbol] = ACTIONS(167), - [anon_sym_LBRACK_CARET] = ACTIONS(173), - [anon_sym_BANG_LBRACK] = ACTIONS(175), - [anon_sym_LBRACK] = ACTIONS(177), - [anon_sym_DOLLAR] = ACTIONS(179), - [anon_sym_TODO] = ACTIONS(181), - [anon_sym_WIP] = ACTIONS(181), - [anon_sym_NOTE] = ACTIONS(183), - [anon_sym_INFO] = ACTIONS(183), - [anon_sym_XXX] = ACTIONS(183), - [sym_fixme] = ACTIONS(167), - [sym__whitespace1] = ACTIONS(185), - [sym__newline] = ACTIONS(187), - [aux_sym__text_token1] = ACTIONS(189), - [sym__verbatim_begin] = ACTIONS(191), + [32] = { + [sym__inline] = STATE(1029), + [sym__element] = STATE(124), + [sym_emphasis] = STATE(151), + [sym_emphasis_begin] = STATE(1181), + [sym_strong] = STATE(151), + [sym_strong_begin] = STATE(1182), + [sym_superscript] = STATE(151), + [sym_superscript_begin] = STATE(1183), + [sym_subscript] = STATE(151), + [sym_subscript_begin] = STATE(1184), + [sym_highlighted] = STATE(151), + [sym_highlighted_begin] = STATE(1185), + [sym_insert] = STATE(151), + [sym_insert_begin] = STATE(1186), + [sym_delete] = STATE(151), + [sym_delete_begin] = STATE(1187), + [sym_hard_line_break] = STATE(151), + [sym__smart_punctuation] = STATE(151), + [sym_autolink] = STATE(151), + [sym_footnote_reference] = STATE(151), + [sym_footnote_marker_begin] = STATE(1188), + [sym__image] = STATE(151), + [sym_full_reference_image] = STATE(151), + [sym_collapsed_reference_image] = STATE(151), + [sym_inline_image] = STATE(151), + [sym_image_description] = STATE(700), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(151), + [sym_full_reference_link] = STATE(151), + [sym_collapsed_reference_link] = STATE(151), + [sym_inline_link] = STATE(151), + [sym_link_text] = STATE(701), + [sym_span] = STATE(124), + [sym__bracketed_text_begin] = STATE(1264), + [sym__comment_with_spaces] = STATE(151), + [sym_raw_inline] = STATE(151), + [sym_math] = STATE(151), + [sym_verbatim] = STATE(151), + [sym__todo_highlights] = STATE(151), + [sym_todo] = STATE(151), + [sym_note] = STATE(151), + [sym__symbol_fallback] = STATE(151), + [aux_sym__text] = STATE(140), + [aux_sym__inline_repeat1] = STATE(124), + [anon_sym_LBRACE_] = ACTIONS(143), + [anon_sym__] = ACTIONS(145), + [anon_sym_LBRACE_STAR] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(149), + [anon_sym_LBRACE_CARET] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(151), + [anon_sym_LBRACE_TILDE] = ACTIONS(153), + [anon_sym_TILDE] = ACTIONS(153), + [anon_sym_LBRACE_EQ] = ACTIONS(155), + [anon_sym_LBRACE_PLUS] = ACTIONS(157), + [anon_sym_LBRACE_DASH] = ACTIONS(159), + [anon_sym_BSLASH] = ACTIONS(161), + [sym_quotation_marks] = ACTIONS(163), + [sym_ellipsis] = ACTIONS(163), + [sym_em_dash] = ACTIONS(163), + [sym_en_dash] = ACTIONS(165), + [sym_backslash_escape] = ACTIONS(165), + [anon_sym_LT] = ACTIONS(167), + [sym_symbol] = ACTIONS(163), + [anon_sym_LBRACK_CARET] = ACTIONS(169), + [anon_sym_BANG_LBRACK] = ACTIONS(171), + [anon_sym_LBRACK] = ACTIONS(173), + [anon_sym_DOLLAR] = ACTIONS(175), + [anon_sym_TODO] = ACTIONS(177), + [anon_sym_WIP] = ACTIONS(177), + [anon_sym_NOTE] = ACTIONS(179), + [anon_sym_INFO] = ACTIONS(179), + [anon_sym_XXX] = ACTIONS(179), + [sym_fixme] = ACTIONS(163), + [sym__whitespace1] = ACTIONS(181), + [sym__newline] = ACTIONS(183), + [aux_sym__text_token1] = ACTIONS(185), + [sym__verbatim_begin] = ACTIONS(187), }, - [37] = { - [sym__element] = STATE(37), - [sym_emphasis] = STATE(137), - [sym_emphasis_begin] = STATE(1193), - [sym_strong] = STATE(137), - [sym_strong_begin] = STATE(1194), - [sym_superscript] = STATE(137), - [sym_superscript_begin] = STATE(1195), - [sym_subscript] = STATE(137), - [sym_subscript_begin] = STATE(1196), - [sym_highlighted] = STATE(137), - [sym_highlighted_begin] = STATE(1197), - [sym_insert] = STATE(137), - [sym_insert_begin] = STATE(1198), - [sym_delete] = STATE(137), - [sym_delete_begin] = STATE(1199), - [sym_hard_line_break] = STATE(137), - [sym__smart_punctuation] = STATE(137), - [sym_autolink] = STATE(137), - [sym_footnote_reference] = STATE(137), - [sym_footnote_marker_begin] = STATE(1200), - [sym__image] = STATE(137), - [sym_full_reference_image] = STATE(137), - [sym_collapsed_reference_image] = STATE(137), - [sym_inline_image] = STATE(137), - [sym__image_description] = STATE(694), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(137), - [sym_full_reference_link] = STATE(137), - [sym_collapsed_reference_link] = STATE(137), - [sym_inline_link] = STATE(137), - [sym_link_text] = STATE(693), - [sym_span] = STATE(37), - [sym__bracketed_text] = STATE(672), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(137), - [sym_raw_inline] = STATE(137), - [sym_math] = STATE(137), - [sym_verbatim] = STATE(137), - [sym__todo_highlights] = STATE(137), - [sym_todo] = STATE(137), - [sym_note] = STATE(137), - [sym__symbol_fallback] = STATE(137), - [aux_sym__text] = STATE(131), - [aux_sym__inline_repeat1] = STATE(37), + [33] = { + [sym__inline] = STATE(944), + [sym__element] = STATE(21), + [sym_emphasis] = STATE(149), + [sym_emphasis_begin] = STATE(1199), + [sym_strong] = STATE(149), + [sym_strong_begin] = STATE(1200), + [sym_superscript] = STATE(149), + [sym_superscript_begin] = STATE(1201), + [sym_subscript] = STATE(149), + [sym_subscript_begin] = STATE(1202), + [sym_highlighted] = STATE(149), + [sym_highlighted_begin] = STATE(1203), + [sym_insert] = STATE(149), + [sym_insert_begin] = STATE(1204), + [sym_delete] = STATE(149), + [sym_delete_begin] = STATE(1205), + [sym_hard_line_break] = STATE(149), + [sym__smart_punctuation] = STATE(149), + [sym_autolink] = STATE(149), + [sym_footnote_reference] = STATE(149), + [sym_footnote_marker_begin] = STATE(1206), + [sym__image] = STATE(149), + [sym_full_reference_image] = STATE(149), + [sym_collapsed_reference_image] = STATE(149), + [sym_inline_image] = STATE(149), + [sym_image_description] = STATE(714), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(149), + [sym_full_reference_link] = STATE(149), + [sym_collapsed_reference_link] = STATE(149), + [sym_inline_link] = STATE(149), + [sym_link_text] = STATE(710), + [sym_span] = STATE(21), + [sym__bracketed_text_begin] = STATE(1266), + [sym__comment_with_spaces] = STATE(149), + [sym_raw_inline] = STATE(149), + [sym_math] = STATE(149), + [sym_verbatim] = STATE(149), + [sym__todo_highlights] = STATE(149), + [sym_todo] = STATE(149), + [sym_note] = STATE(149), + [sym__symbol_fallback] = STATE(149), + [aux_sym__text] = STATE(142), + [aux_sym__inline_repeat1] = STATE(21), + [anon_sym_LBRACE_] = ACTIONS(494), + [anon_sym__] = ACTIONS(496), + [anon_sym_LBRACE_STAR] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(500), + [anon_sym_LBRACE_CARET] = ACTIONS(502), + [anon_sym_CARET] = ACTIONS(502), + [anon_sym_LBRACE_TILDE] = ACTIONS(504), + [anon_sym_TILDE] = ACTIONS(504), + [anon_sym_LBRACE_EQ] = ACTIONS(506), + [anon_sym_LBRACE_PLUS] = ACTIONS(508), + [anon_sym_LBRACE_DASH] = ACTIONS(510), + [anon_sym_BSLASH] = ACTIONS(512), + [sym_quotation_marks] = ACTIONS(514), + [sym_ellipsis] = ACTIONS(514), + [sym_em_dash] = ACTIONS(514), + [sym_en_dash] = ACTIONS(516), + [sym_backslash_escape] = ACTIONS(516), + [anon_sym_LT] = ACTIONS(518), + [sym_symbol] = ACTIONS(514), + [anon_sym_LBRACK_CARET] = ACTIONS(520), + [anon_sym_BANG_LBRACK] = ACTIONS(522), + [anon_sym_LBRACK] = ACTIONS(524), + [anon_sym_DOLLAR] = ACTIONS(526), + [anon_sym_TODO] = ACTIONS(528), + [anon_sym_WIP] = ACTIONS(528), + [anon_sym_NOTE] = ACTIONS(530), + [anon_sym_INFO] = ACTIONS(530), + [anon_sym_XXX] = ACTIONS(530), + [sym_fixme] = ACTIONS(514), + [sym__whitespace1] = ACTIONS(532), + [sym__newline] = ACTIONS(540), + [aux_sym__text_token1] = ACTIONS(536), + [sym__verbatim_begin] = ACTIONS(538), + }, + [34] = { + [sym__inline] = STATE(1007), + [sym__element] = STATE(80), + [sym_emphasis] = STATE(145), + [sym_emphasis_begin] = STATE(1190), + [sym_strong] = STATE(145), + [sym_strong_begin] = STATE(1191), + [sym_superscript] = STATE(145), + [sym_superscript_begin] = STATE(1192), + [sym_subscript] = STATE(145), + [sym_subscript_begin] = STATE(1193), + [sym_highlighted] = STATE(145), + [sym_highlighted_begin] = STATE(1194), + [sym_insert] = STATE(145), + [sym_insert_begin] = STATE(1195), + [sym_delete] = STATE(145), + [sym_delete_begin] = STATE(1196), + [sym_hard_line_break] = STATE(145), + [sym__smart_punctuation] = STATE(145), + [sym_autolink] = STATE(145), + [sym_footnote_reference] = STATE(145), + [sym_footnote_marker_begin] = STATE(1197), + [sym__image] = STATE(145), + [sym_full_reference_image] = STATE(145), + [sym_collapsed_reference_image] = STATE(145), + [sym_inline_image] = STATE(145), + [sym_image_description] = STATE(696), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(145), + [sym_full_reference_link] = STATE(145), + [sym_collapsed_reference_link] = STATE(145), + [sym_inline_link] = STATE(145), + [sym_link_text] = STATE(691), + [sym_span] = STATE(80), + [sym__bracketed_text_begin] = STATE(1265), + [sym__comment_with_spaces] = STATE(145), + [sym_raw_inline] = STATE(145), + [sym_math] = STATE(145), + [sym_verbatim] = STATE(145), + [sym__todo_highlights] = STATE(145), + [sym_todo] = STATE(145), + [sym_note] = STATE(145), + [sym__symbol_fallback] = STATE(145), + [aux_sym__text] = STATE(138), + [aux_sym__inline_repeat1] = STATE(80), [anon_sym_LBRACE_] = ACTIONS(542), - [anon_sym__] = ACTIONS(545), - [anon_sym_LBRACE_STAR] = ACTIONS(548), - [anon_sym_STAR] = ACTIONS(551), - [anon_sym_LBRACE_CARET] = ACTIONS(554), - [anon_sym_CARET] = ACTIONS(554), - [anon_sym_LBRACE_TILDE] = ACTIONS(557), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_LBRACE_EQ] = ACTIONS(560), - [anon_sym_LBRACE_PLUS] = ACTIONS(563), - [anon_sym_LBRACE_DASH] = ACTIONS(566), - [anon_sym_BSLASH] = ACTIONS(569), - [sym_quotation_marks] = ACTIONS(572), - [sym_ellipsis] = ACTIONS(572), - [sym_em_dash] = ACTIONS(572), - [sym_en_dash] = ACTIONS(575), - [sym_backslash_escape] = ACTIONS(575), - [anon_sym_LT] = ACTIONS(578), - [sym_symbol] = ACTIONS(572), - [anon_sym_LBRACK_CARET] = ACTIONS(581), - [anon_sym_BANG_LBRACK] = ACTIONS(584), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_DOLLAR] = ACTIONS(590), - [anon_sym_TODO] = ACTIONS(593), - [anon_sym_WIP] = ACTIONS(593), - [anon_sym_NOTE] = ACTIONS(596), - [anon_sym_INFO] = ACTIONS(596), - [anon_sym_XXX] = ACTIONS(596), - [sym_fixme] = ACTIONS(572), - [sym__whitespace1] = ACTIONS(599), - [sym__newline] = ACTIONS(602), - [aux_sym__text_token1] = ACTIONS(605), - [sym__verbatim_begin] = ACTIONS(608), - [sym_insert_end] = ACTIONS(540), + [anon_sym__] = ACTIONS(544), + [anon_sym_LBRACE_STAR] = ACTIONS(546), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE_CARET] = ACTIONS(550), + [anon_sym_CARET] = ACTIONS(550), + [anon_sym_LBRACE_TILDE] = ACTIONS(552), + [anon_sym_TILDE] = ACTIONS(552), + [anon_sym_LBRACE_EQ] = ACTIONS(554), + [anon_sym_LBRACE_PLUS] = ACTIONS(556), + [anon_sym_LBRACE_DASH] = ACTIONS(558), + [anon_sym_BSLASH] = ACTIONS(560), + [sym_quotation_marks] = ACTIONS(562), + [sym_ellipsis] = ACTIONS(562), + [sym_em_dash] = ACTIONS(562), + [sym_en_dash] = ACTIONS(564), + [sym_backslash_escape] = ACTIONS(564), + [anon_sym_LT] = ACTIONS(566), + [sym_symbol] = ACTIONS(562), + [anon_sym_LBRACK_CARET] = ACTIONS(568), + [anon_sym_BANG_LBRACK] = ACTIONS(570), + [anon_sym_LBRACK] = ACTIONS(572), + [anon_sym_DOLLAR] = ACTIONS(574), + [anon_sym_TODO] = ACTIONS(576), + [anon_sym_WIP] = ACTIONS(576), + [anon_sym_NOTE] = ACTIONS(578), + [anon_sym_INFO] = ACTIONS(578), + [anon_sym_XXX] = ACTIONS(578), + [sym_fixme] = ACTIONS(562), + [sym__whitespace1] = ACTIONS(580), + [sym__newline] = ACTIONS(582), + [aux_sym__text_token1] = ACTIONS(584), + [sym__verbatim_begin] = ACTIONS(586), }, - [38] = { - [sym__element] = STATE(71), - [sym_emphasis] = STATE(142), - [sym_emphasis_begin] = STATE(1129), - [sym_strong] = STATE(142), - [sym_strong_begin] = STATE(1128), - [sym_superscript] = STATE(142), - [sym_superscript_begin] = STATE(1127), - [sym_subscript] = STATE(142), - [sym_subscript_begin] = STATE(1120), - [sym_highlighted] = STATE(142), - [sym_highlighted_begin] = STATE(1118), - [sym_insert] = STATE(142), - [sym_insert_begin] = STATE(1117), - [sym_delete] = STATE(142), - [sym_delete_begin] = STATE(1116), - [sym_hard_line_break] = STATE(142), - [sym__smart_punctuation] = STATE(142), - [sym_autolink] = STATE(142), - [sym_footnote_reference] = STATE(142), - [sym_footnote_marker_begin] = STATE(1115), - [sym__image] = STATE(142), - [sym_full_reference_image] = STATE(142), - [sym_collapsed_reference_image] = STATE(142), - [sym_inline_image] = STATE(142), - [sym__image_description] = STATE(685), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(142), - [sym_full_reference_link] = STATE(142), - [sym_collapsed_reference_link] = STATE(142), - [sym_inline_link] = STATE(142), - [sym_link_text] = STATE(692), - [sym_span] = STATE(71), - [sym__bracketed_text] = STATE(668), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(142), - [sym_raw_inline] = STATE(142), - [sym_math] = STATE(142), - [sym_verbatim] = STATE(142), - [sym__todo_highlights] = STATE(142), - [sym_todo] = STATE(142), - [sym_note] = STATE(142), - [sym__symbol_fallback] = STATE(142), - [aux_sym__text] = STATE(130), - [aux_sym__inline_repeat1] = STATE(71), - [ts_builtin_sym_end] = ACTIONS(143), + [35] = { + [sym__inline] = STATE(943), + [sym__element] = STATE(80), + [sym_emphasis] = STATE(145), + [sym_emphasis_begin] = STATE(1190), + [sym_strong] = STATE(145), + [sym_strong_begin] = STATE(1191), + [sym_superscript] = STATE(145), + [sym_superscript_begin] = STATE(1192), + [sym_subscript] = STATE(145), + [sym_subscript_begin] = STATE(1193), + [sym_highlighted] = STATE(145), + [sym_highlighted_begin] = STATE(1194), + [sym_insert] = STATE(145), + [sym_insert_begin] = STATE(1195), + [sym_delete] = STATE(145), + [sym_delete_begin] = STATE(1196), + [sym_hard_line_break] = STATE(145), + [sym__smart_punctuation] = STATE(145), + [sym_autolink] = STATE(145), + [sym_footnote_reference] = STATE(145), + [sym_footnote_marker_begin] = STATE(1197), + [sym__image] = STATE(145), + [sym_full_reference_image] = STATE(145), + [sym_collapsed_reference_image] = STATE(145), + [sym_inline_image] = STATE(145), + [sym_image_description] = STATE(696), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(145), + [sym_full_reference_link] = STATE(145), + [sym_collapsed_reference_link] = STATE(145), + [sym_inline_link] = STATE(145), + [sym_link_text] = STATE(691), + [sym_span] = STATE(80), + [sym__bracketed_text_begin] = STATE(1265), + [sym__comment_with_spaces] = STATE(145), + [sym_raw_inline] = STATE(145), + [sym_math] = STATE(145), + [sym_verbatim] = STATE(145), + [sym__todo_highlights] = STATE(145), + [sym_todo] = STATE(145), + [sym_note] = STATE(145), + [sym__symbol_fallback] = STATE(145), + [aux_sym__text] = STATE(138), + [aux_sym__inline_repeat1] = STATE(80), + [anon_sym_LBRACE_] = ACTIONS(542), + [anon_sym__] = ACTIONS(544), + [anon_sym_LBRACE_STAR] = ACTIONS(546), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE_CARET] = ACTIONS(550), + [anon_sym_CARET] = ACTIONS(550), + [anon_sym_LBRACE_TILDE] = ACTIONS(552), + [anon_sym_TILDE] = ACTIONS(552), + [anon_sym_LBRACE_EQ] = ACTIONS(554), + [anon_sym_LBRACE_PLUS] = ACTIONS(556), + [anon_sym_LBRACE_DASH] = ACTIONS(558), + [anon_sym_BSLASH] = ACTIONS(560), + [sym_quotation_marks] = ACTIONS(562), + [sym_ellipsis] = ACTIONS(562), + [sym_em_dash] = ACTIONS(562), + [sym_en_dash] = ACTIONS(564), + [sym_backslash_escape] = ACTIONS(564), + [anon_sym_LT] = ACTIONS(566), + [sym_symbol] = ACTIONS(562), + [anon_sym_LBRACK_CARET] = ACTIONS(568), + [anon_sym_BANG_LBRACK] = ACTIONS(570), + [anon_sym_LBRACK] = ACTIONS(572), + [anon_sym_DOLLAR] = ACTIONS(574), + [anon_sym_TODO] = ACTIONS(576), + [anon_sym_WIP] = ACTIONS(576), + [anon_sym_NOTE] = ACTIONS(578), + [anon_sym_INFO] = ACTIONS(578), + [anon_sym_XXX] = ACTIONS(578), + [sym_fixme] = ACTIONS(562), + [sym__whitespace1] = ACTIONS(580), + [sym__newline] = ACTIONS(582), + [aux_sym__text_token1] = ACTIONS(584), + [sym__verbatim_begin] = ACTIONS(586), + }, + [36] = { + [sym__element] = STATE(36), + [sym_emphasis] = STATE(151), + [sym_emphasis_begin] = STATE(1181), + [sym_strong] = STATE(151), + [sym_strong_begin] = STATE(1182), + [sym_superscript] = STATE(151), + [sym_superscript_begin] = STATE(1183), + [sym_subscript] = STATE(151), + [sym_subscript_begin] = STATE(1184), + [sym_highlighted] = STATE(151), + [sym_highlighted_begin] = STATE(1185), + [sym_insert] = STATE(151), + [sym_insert_begin] = STATE(1186), + [sym_delete] = STATE(151), + [sym_delete_begin] = STATE(1187), + [sym_hard_line_break] = STATE(151), + [sym__smart_punctuation] = STATE(151), + [sym_autolink] = STATE(151), + [sym_footnote_reference] = STATE(151), + [sym_footnote_marker_begin] = STATE(1188), + [sym__image] = STATE(151), + [sym_full_reference_image] = STATE(151), + [sym_collapsed_reference_image] = STATE(151), + [sym_inline_image] = STATE(151), + [sym_image_description] = STATE(700), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(151), + [sym_full_reference_link] = STATE(151), + [sym_collapsed_reference_link] = STATE(151), + [sym_inline_link] = STATE(151), + [sym_link_text] = STATE(701), + [sym_span] = STATE(36), + [sym__bracketed_text_begin] = STATE(1264), + [sym__comment_with_spaces] = STATE(151), + [sym_raw_inline] = STATE(151), + [sym_math] = STATE(151), + [sym_verbatim] = STATE(151), + [sym__todo_highlights] = STATE(151), + [sym_todo] = STATE(151), + [sym_note] = STATE(151), + [sym__symbol_fallback] = STATE(151), + [aux_sym__text] = STATE(140), + [aux_sym__inline_repeat1] = STATE(36), + [anon_sym_LBRACE_] = ACTIONS(588), + [anon_sym__] = ACTIONS(591), + [anon_sym_LBRACE_STAR] = ACTIONS(594), + [anon_sym_STAR] = ACTIONS(597), + [anon_sym_LBRACE_CARET] = ACTIONS(600), + [anon_sym_CARET] = ACTIONS(600), + [anon_sym_LBRACE_TILDE] = ACTIONS(603), + [anon_sym_TILDE] = ACTIONS(603), + [anon_sym_LBRACE_EQ] = ACTIONS(606), + [anon_sym_LBRACE_PLUS] = ACTIONS(609), + [anon_sym_LBRACE_DASH] = ACTIONS(612), + [anon_sym_BSLASH] = ACTIONS(615), + [sym_quotation_marks] = ACTIONS(618), + [sym_ellipsis] = ACTIONS(618), + [sym_em_dash] = ACTIONS(618), + [sym_en_dash] = ACTIONS(621), + [sym_backslash_escape] = ACTIONS(621), + [anon_sym_LT] = ACTIONS(624), + [sym_symbol] = ACTIONS(618), + [anon_sym_LBRACK_CARET] = ACTIONS(627), + [anon_sym_BANG_LBRACK] = ACTIONS(630), + [anon_sym_LBRACK] = ACTIONS(633), + [anon_sym_DOLLAR] = ACTIONS(636), + [anon_sym_TODO] = ACTIONS(639), + [anon_sym_WIP] = ACTIONS(639), + [anon_sym_NOTE] = ACTIONS(642), + [anon_sym_INFO] = ACTIONS(642), + [anon_sym_XXX] = ACTIONS(642), + [sym_fixme] = ACTIONS(618), + [sym__whitespace1] = ACTIONS(645), + [sym__newline] = ACTIONS(648), + [aux_sym__text_token1] = ACTIONS(651), + [sym__verbatim_begin] = ACTIONS(654), + [sym_superscript_end] = ACTIONS(354), + }, + [37] = { + [sym__element] = STATE(69), + [sym_emphasis] = STATE(150), + [sym_emphasis_begin] = STATE(1156), + [sym_strong] = STATE(150), + [sym_strong_begin] = STATE(1155), + [sym_superscript] = STATE(150), + [sym_superscript_begin] = STATE(1154), + [sym_subscript] = STATE(150), + [sym_subscript_begin] = STATE(1153), + [sym_highlighted] = STATE(150), + [sym_highlighted_begin] = STATE(1152), + [sym_insert] = STATE(150), + [sym_insert_begin] = STATE(1151), + [sym_delete] = STATE(150), + [sym_delete_begin] = STATE(1143), + [sym_hard_line_break] = STATE(150), + [sym__smart_punctuation] = STATE(150), + [sym_autolink] = STATE(150), + [sym_footnote_reference] = STATE(150), + [sym_footnote_marker_begin] = STATE(1141), + [sym__image] = STATE(150), + [sym_full_reference_image] = STATE(150), + [sym_collapsed_reference_image] = STATE(150), + [sym_inline_image] = STATE(150), + [sym_image_description] = STATE(690), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(150), + [sym_full_reference_link] = STATE(150), + [sym_collapsed_reference_link] = STATE(150), + [sym_inline_link] = STATE(150), + [sym_link_text] = STATE(688), + [sym_span] = STATE(69), + [sym__bracketed_text_begin] = STATE(1139), + [sym__comment_with_spaces] = STATE(150), + [sym_raw_inline] = STATE(150), + [sym_math] = STATE(150), + [sym_verbatim] = STATE(150), + [sym__todo_highlights] = STATE(150), + [sym_todo] = STATE(150), + [sym_note] = STATE(150), + [sym__symbol_fallback] = STATE(150), + [aux_sym__text] = STATE(139), + [aux_sym__inline_repeat1] = STATE(69), + [ts_builtin_sym_end] = ACTIONS(283), [anon_sym_LBRACE_] = ACTIONS(3), [anon_sym__] = ACTIONS(5), [anon_sym_LBRACE_STAR] = ACTIONS(7), @@ -8295,296 +8235,371 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_XXX] = ACTIONS(39), [sym_fixme] = ACTIONS(23), [sym__whitespace1] = ACTIONS(41), - [sym__newline] = ACTIONS(611), + [sym__newline] = ACTIONS(657), [aux_sym__text_token1] = ACTIONS(45), [sym__verbatim_begin] = ACTIONS(47), }, + [38] = { + [sym__inline] = STATE(942), + [sym__element] = STATE(124), + [sym_emphasis] = STATE(151), + [sym_emphasis_begin] = STATE(1181), + [sym_strong] = STATE(151), + [sym_strong_begin] = STATE(1182), + [sym_superscript] = STATE(151), + [sym_superscript_begin] = STATE(1183), + [sym_subscript] = STATE(151), + [sym_subscript_begin] = STATE(1184), + [sym_highlighted] = STATE(151), + [sym_highlighted_begin] = STATE(1185), + [sym_insert] = STATE(151), + [sym_insert_begin] = STATE(1186), + [sym_delete] = STATE(151), + [sym_delete_begin] = STATE(1187), + [sym_hard_line_break] = STATE(151), + [sym__smart_punctuation] = STATE(151), + [sym_autolink] = STATE(151), + [sym_footnote_reference] = STATE(151), + [sym_footnote_marker_begin] = STATE(1188), + [sym__image] = STATE(151), + [sym_full_reference_image] = STATE(151), + [sym_collapsed_reference_image] = STATE(151), + [sym_inline_image] = STATE(151), + [sym_image_description] = STATE(700), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(151), + [sym_full_reference_link] = STATE(151), + [sym_collapsed_reference_link] = STATE(151), + [sym_inline_link] = STATE(151), + [sym_link_text] = STATE(701), + [sym_span] = STATE(124), + [sym__bracketed_text_begin] = STATE(1264), + [sym__comment_with_spaces] = STATE(151), + [sym_raw_inline] = STATE(151), + [sym_math] = STATE(151), + [sym_verbatim] = STATE(151), + [sym__todo_highlights] = STATE(151), + [sym_todo] = STATE(151), + [sym_note] = STATE(151), + [sym__symbol_fallback] = STATE(151), + [aux_sym__text] = STATE(140), + [aux_sym__inline_repeat1] = STATE(124), + [anon_sym_LBRACE_] = ACTIONS(143), + [anon_sym__] = ACTIONS(145), + [anon_sym_LBRACE_STAR] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(149), + [anon_sym_LBRACE_CARET] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(151), + [anon_sym_LBRACE_TILDE] = ACTIONS(153), + [anon_sym_TILDE] = ACTIONS(153), + [anon_sym_LBRACE_EQ] = ACTIONS(155), + [anon_sym_LBRACE_PLUS] = ACTIONS(157), + [anon_sym_LBRACE_DASH] = ACTIONS(159), + [anon_sym_BSLASH] = ACTIONS(161), + [sym_quotation_marks] = ACTIONS(163), + [sym_ellipsis] = ACTIONS(163), + [sym_em_dash] = ACTIONS(163), + [sym_en_dash] = ACTIONS(165), + [sym_backslash_escape] = ACTIONS(165), + [anon_sym_LT] = ACTIONS(167), + [sym_symbol] = ACTIONS(163), + [anon_sym_LBRACK_CARET] = ACTIONS(169), + [anon_sym_BANG_LBRACK] = ACTIONS(171), + [anon_sym_LBRACK] = ACTIONS(173), + [anon_sym_DOLLAR] = ACTIONS(175), + [anon_sym_TODO] = ACTIONS(177), + [anon_sym_WIP] = ACTIONS(177), + [anon_sym_NOTE] = ACTIONS(179), + [anon_sym_INFO] = ACTIONS(179), + [anon_sym_XXX] = ACTIONS(179), + [sym_fixme] = ACTIONS(163), + [sym__whitespace1] = ACTIONS(181), + [sym__newline] = ACTIONS(183), + [aux_sym__text_token1] = ACTIONS(185), + [sym__verbatim_begin] = ACTIONS(187), + }, [39] = { - [sym__inline] = STATE(1065), - [sym__element] = STATE(47), - [sym_emphasis] = STATE(136), - [sym_emphasis_begin] = STATE(1209), - [sym_strong] = STATE(136), - [sym_strong_begin] = STATE(1210), - [sym_superscript] = STATE(136), - [sym_superscript_begin] = STATE(1211), - [sym_subscript] = STATE(136), - [sym_subscript_begin] = STATE(1212), - [sym_highlighted] = STATE(136), - [sym_highlighted_begin] = STATE(1213), - [sym_insert] = STATE(136), - [sym_insert_begin] = STATE(1214), - [sym_delete] = STATE(136), - [sym_delete_begin] = STATE(1215), - [sym_hard_line_break] = STATE(136), - [sym__smart_punctuation] = STATE(136), - [sym_autolink] = STATE(136), - [sym_footnote_reference] = STATE(136), - [sym_footnote_marker_begin] = STATE(1216), - [sym__image] = STATE(136), - [sym_full_reference_image] = STATE(136), - [sym_collapsed_reference_image] = STATE(136), - [sym_inline_image] = STATE(136), - [sym__image_description] = STATE(682), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(136), - [sym_full_reference_link] = STATE(136), - [sym_collapsed_reference_link] = STATE(136), - [sym_inline_link] = STATE(136), - [sym_link_text] = STATE(675), - [sym_span] = STATE(47), - [sym__bracketed_text] = STATE(674), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(136), - [sym_raw_inline] = STATE(136), - [sym_math] = STATE(136), - [sym_verbatim] = STATE(136), - [sym__todo_highlights] = STATE(136), - [sym_todo] = STATE(136), - [sym_note] = STATE(136), - [sym__symbol_fallback] = STATE(136), - [aux_sym__text] = STATE(127), - [aux_sym__inline_repeat1] = STATE(47), - [anon_sym_LBRACE_] = ACTIONS(377), - [anon_sym__] = ACTIONS(379), - [anon_sym_LBRACE_STAR] = ACTIONS(381), - [anon_sym_STAR] = ACTIONS(383), - [anon_sym_LBRACE_CARET] = ACTIONS(385), - [anon_sym_CARET] = ACTIONS(385), - [anon_sym_LBRACE_TILDE] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_LBRACE_EQ] = ACTIONS(389), - [anon_sym_LBRACE_PLUS] = ACTIONS(391), - [anon_sym_LBRACE_DASH] = ACTIONS(393), - [anon_sym_BSLASH] = ACTIONS(395), - [sym_quotation_marks] = ACTIONS(397), - [sym_ellipsis] = ACTIONS(397), - [sym_em_dash] = ACTIONS(397), - [sym_en_dash] = ACTIONS(399), - [sym_backslash_escape] = ACTIONS(399), - [anon_sym_LT] = ACTIONS(401), - [sym_symbol] = ACTIONS(397), - [anon_sym_LBRACK_CARET] = ACTIONS(403), - [anon_sym_BANG_LBRACK] = ACTIONS(405), - [anon_sym_LBRACK] = ACTIONS(407), - [anon_sym_DOLLAR] = ACTIONS(409), - [anon_sym_TODO] = ACTIONS(411), - [anon_sym_WIP] = ACTIONS(411), - [anon_sym_NOTE] = ACTIONS(413), - [anon_sym_INFO] = ACTIONS(413), - [anon_sym_XXX] = ACTIONS(413), - [sym_fixme] = ACTIONS(397), - [sym__whitespace1] = ACTIONS(415), - [sym__newline] = ACTIONS(417), - [aux_sym__text_token1] = ACTIONS(419), - [sym__verbatim_begin] = ACTIONS(421), + [sym__inline] = STATE(1027), + [sym__element] = STATE(21), + [sym_emphasis] = STATE(149), + [sym_emphasis_begin] = STATE(1199), + [sym_strong] = STATE(149), + [sym_strong_begin] = STATE(1200), + [sym_superscript] = STATE(149), + [sym_superscript_begin] = STATE(1201), + [sym_subscript] = STATE(149), + [sym_subscript_begin] = STATE(1202), + [sym_highlighted] = STATE(149), + [sym_highlighted_begin] = STATE(1203), + [sym_insert] = STATE(149), + [sym_insert_begin] = STATE(1204), + [sym_delete] = STATE(149), + [sym_delete_begin] = STATE(1205), + [sym_hard_line_break] = STATE(149), + [sym__smart_punctuation] = STATE(149), + [sym_autolink] = STATE(149), + [sym_footnote_reference] = STATE(149), + [sym_footnote_marker_begin] = STATE(1206), + [sym__image] = STATE(149), + [sym_full_reference_image] = STATE(149), + [sym_collapsed_reference_image] = STATE(149), + [sym_inline_image] = STATE(149), + [sym_image_description] = STATE(714), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(149), + [sym_full_reference_link] = STATE(149), + [sym_collapsed_reference_link] = STATE(149), + [sym_inline_link] = STATE(149), + [sym_link_text] = STATE(710), + [sym_span] = STATE(21), + [sym__bracketed_text_begin] = STATE(1266), + [sym__comment_with_spaces] = STATE(149), + [sym_raw_inline] = STATE(149), + [sym_math] = STATE(149), + [sym_verbatim] = STATE(149), + [sym__todo_highlights] = STATE(149), + [sym_todo] = STATE(149), + [sym_note] = STATE(149), + [sym__symbol_fallback] = STATE(149), + [aux_sym__text] = STATE(142), + [aux_sym__inline_repeat1] = STATE(21), + [anon_sym_LBRACE_] = ACTIONS(494), + [anon_sym__] = ACTIONS(496), + [anon_sym_LBRACE_STAR] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(500), + [anon_sym_LBRACE_CARET] = ACTIONS(502), + [anon_sym_CARET] = ACTIONS(502), + [anon_sym_LBRACE_TILDE] = ACTIONS(504), + [anon_sym_TILDE] = ACTIONS(504), + [anon_sym_LBRACE_EQ] = ACTIONS(506), + [anon_sym_LBRACE_PLUS] = ACTIONS(508), + [anon_sym_LBRACE_DASH] = ACTIONS(510), + [anon_sym_BSLASH] = ACTIONS(512), + [sym_quotation_marks] = ACTIONS(514), + [sym_ellipsis] = ACTIONS(514), + [sym_em_dash] = ACTIONS(514), + [sym_en_dash] = ACTIONS(516), + [sym_backslash_escape] = ACTIONS(516), + [anon_sym_LT] = ACTIONS(518), + [sym_symbol] = ACTIONS(514), + [anon_sym_LBRACK_CARET] = ACTIONS(520), + [anon_sym_BANG_LBRACK] = ACTIONS(522), + [anon_sym_LBRACK] = ACTIONS(524), + [anon_sym_DOLLAR] = ACTIONS(526), + [anon_sym_TODO] = ACTIONS(528), + [anon_sym_WIP] = ACTIONS(528), + [anon_sym_NOTE] = ACTIONS(530), + [anon_sym_INFO] = ACTIONS(530), + [anon_sym_XXX] = ACTIONS(530), + [sym_fixme] = ACTIONS(514), + [sym__whitespace1] = ACTIONS(532), + [sym__newline] = ACTIONS(540), + [aux_sym__text_token1] = ACTIONS(536), + [sym__verbatim_begin] = ACTIONS(538), }, [40] = { - [sym__inline] = STATE(1007), - [sym__element] = STATE(14), - [sym_emphasis] = STATE(133), - [sym_emphasis_begin] = STATE(1201), - [sym_strong] = STATE(133), - [sym_strong_begin] = STATE(1202), - [sym_superscript] = STATE(133), - [sym_superscript_begin] = STATE(1203), - [sym_subscript] = STATE(133), - [sym_subscript_begin] = STATE(1204), - [sym_highlighted] = STATE(133), - [sym_highlighted_begin] = STATE(1205), - [sym_insert] = STATE(133), - [sym_insert_begin] = STATE(1206), - [sym_delete] = STATE(133), - [sym_delete_begin] = STATE(1207), - [sym_hard_line_break] = STATE(133), - [sym__smart_punctuation] = STATE(133), - [sym_autolink] = STATE(133), - [sym_footnote_reference] = STATE(133), - [sym_footnote_marker_begin] = STATE(1208), - [sym__image] = STATE(133), - [sym_full_reference_image] = STATE(133), - [sym_collapsed_reference_image] = STATE(133), - [sym_inline_image] = STATE(133), - [sym__image_description] = STATE(688), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(133), - [sym_full_reference_link] = STATE(133), - [sym_collapsed_reference_link] = STATE(133), - [sym_inline_link] = STATE(133), - [sym_link_text] = STATE(686), - [sym_span] = STATE(14), - [sym__bracketed_text] = STATE(673), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(133), - [sym_raw_inline] = STATE(133), - [sym_math] = STATE(133), - [sym_verbatim] = STATE(133), - [sym__todo_highlights] = STATE(133), - [sym_todo] = STATE(133), - [sym_note] = STATE(133), - [sym__symbol_fallback] = STATE(133), - [aux_sym__text] = STATE(129), - [aux_sym__inline_repeat1] = STATE(14), - [anon_sym_LBRACE_] = ACTIONS(423), - [anon_sym__] = ACTIONS(425), - [anon_sym_LBRACE_STAR] = ACTIONS(427), - [anon_sym_STAR] = ACTIONS(429), - [anon_sym_LBRACE_CARET] = ACTIONS(431), - [anon_sym_CARET] = ACTIONS(431), - [anon_sym_LBRACE_TILDE] = ACTIONS(433), - [anon_sym_TILDE] = ACTIONS(433), - [anon_sym_LBRACE_EQ] = ACTIONS(435), - [anon_sym_LBRACE_PLUS] = ACTIONS(437), - [anon_sym_LBRACE_DASH] = ACTIONS(439), - [anon_sym_BSLASH] = ACTIONS(441), - [sym_quotation_marks] = ACTIONS(443), - [sym_ellipsis] = ACTIONS(443), - [sym_em_dash] = ACTIONS(443), - [sym_en_dash] = ACTIONS(445), - [sym_backslash_escape] = ACTIONS(445), - [anon_sym_LT] = ACTIONS(447), - [sym_symbol] = ACTIONS(443), - [anon_sym_LBRACK_CARET] = ACTIONS(449), - [anon_sym_BANG_LBRACK] = ACTIONS(451), - [anon_sym_LBRACK] = ACTIONS(453), - [anon_sym_DOLLAR] = ACTIONS(455), - [anon_sym_TODO] = ACTIONS(457), - [anon_sym_WIP] = ACTIONS(457), - [anon_sym_NOTE] = ACTIONS(459), - [anon_sym_INFO] = ACTIONS(459), - [anon_sym_XXX] = ACTIONS(459), - [sym_fixme] = ACTIONS(443), - [sym__whitespace1] = ACTIONS(461), - [sym__newline] = ACTIONS(469), - [aux_sym__text_token1] = ACTIONS(465), - [sym__verbatim_begin] = ACTIONS(467), + [sym__inline_without_trailing_space] = STATE(941), + [sym__element] = STATE(570), + [sym_emphasis] = STATE(152), + [sym_emphasis_begin] = STATE(1172), + [sym_strong] = STATE(152), + [sym_strong_begin] = STATE(1173), + [sym_superscript] = STATE(152), + [sym_superscript_begin] = STATE(1174), + [sym_subscript] = STATE(152), + [sym_subscript_begin] = STATE(1175), + [sym_highlighted] = STATE(152), + [sym_highlighted_begin] = STATE(1176), + [sym_insert] = STATE(152), + [sym_insert_begin] = STATE(1177), + [sym_delete] = STATE(152), + [sym_delete_begin] = STATE(1178), + [sym_hard_line_break] = STATE(152), + [sym__smart_punctuation] = STATE(152), + [sym_autolink] = STATE(152), + [sym_footnote_reference] = STATE(152), + [sym_footnote_marker_begin] = STATE(1179), + [sym__image] = STATE(152), + [sym_full_reference_image] = STATE(152), + [sym_collapsed_reference_image] = STATE(152), + [sym_inline_image] = STATE(152), + [sym_image_description] = STATE(704), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(152), + [sym_full_reference_link] = STATE(152), + [sym_collapsed_reference_link] = STATE(152), + [sym_inline_link] = STATE(152), + [sym_link_text] = STATE(706), + [sym_span] = STATE(570), + [sym__bracketed_text_begin] = STATE(1263), + [sym__comment_with_spaces] = STATE(152), + [sym_raw_inline] = STATE(152), + [sym_math] = STATE(152), + [sym_verbatim] = STATE(152), + [sym__todo_highlights] = STATE(152), + [sym_todo] = STATE(152), + [sym_note] = STATE(152), + [sym__symbol_fallback] = STATE(152), + [aux_sym__text] = STATE(133), + [aux_sym__inline_repeat1] = STATE(130), + [anon_sym_LBRACE_] = ACTIONS(448), + [anon_sym__] = ACTIONS(450), + [anon_sym_LBRACE_STAR] = ACTIONS(452), + [anon_sym_STAR] = ACTIONS(454), + [anon_sym_LBRACE_CARET] = ACTIONS(456), + [anon_sym_CARET] = ACTIONS(456), + [anon_sym_LBRACE_TILDE] = ACTIONS(458), + [anon_sym_TILDE] = ACTIONS(458), + [anon_sym_LBRACE_EQ] = ACTIONS(460), + [anon_sym_LBRACE_PLUS] = ACTIONS(462), + [anon_sym_LBRACE_DASH] = ACTIONS(464), + [anon_sym_BSLASH] = ACTIONS(466), + [sym_quotation_marks] = ACTIONS(468), + [sym_ellipsis] = ACTIONS(468), + [sym_em_dash] = ACTIONS(468), + [sym_en_dash] = ACTIONS(470), + [sym_backslash_escape] = ACTIONS(470), + [anon_sym_LT] = ACTIONS(472), + [sym_symbol] = ACTIONS(468), + [anon_sym_LBRACK_CARET] = ACTIONS(474), + [anon_sym_BANG_LBRACK] = ACTIONS(476), + [anon_sym_LBRACK] = ACTIONS(478), + [anon_sym_DOLLAR] = ACTIONS(480), + [anon_sym_TODO] = ACTIONS(482), + [anon_sym_WIP] = ACTIONS(482), + [anon_sym_NOTE] = ACTIONS(484), + [anon_sym_INFO] = ACTIONS(484), + [anon_sym_XXX] = ACTIONS(484), + [sym_fixme] = ACTIONS(468), + [sym__whitespace1] = ACTIONS(486), + [sym__newline] = ACTIONS(488), + [aux_sym__text_token1] = ACTIONS(490), + [sym__verbatim_begin] = ACTIONS(492), }, [41] = { - [sym__inline] = STATE(898), - [sym__element] = STATE(14), - [sym_emphasis] = STATE(133), - [sym_emphasis_begin] = STATE(1201), - [sym_strong] = STATE(133), - [sym_strong_begin] = STATE(1202), - [sym_superscript] = STATE(133), - [sym_superscript_begin] = STATE(1203), - [sym_subscript] = STATE(133), - [sym_subscript_begin] = STATE(1204), - [sym_highlighted] = STATE(133), - [sym_highlighted_begin] = STATE(1205), - [sym_insert] = STATE(133), - [sym_insert_begin] = STATE(1206), - [sym_delete] = STATE(133), - [sym_delete_begin] = STATE(1207), - [sym_hard_line_break] = STATE(133), - [sym__smart_punctuation] = STATE(133), - [sym_autolink] = STATE(133), - [sym_footnote_reference] = STATE(133), - [sym_footnote_marker_begin] = STATE(1208), - [sym__image] = STATE(133), - [sym_full_reference_image] = STATE(133), - [sym_collapsed_reference_image] = STATE(133), - [sym_inline_image] = STATE(133), - [sym__image_description] = STATE(688), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(133), - [sym_full_reference_link] = STATE(133), - [sym_collapsed_reference_link] = STATE(133), - [sym_inline_link] = STATE(133), - [sym_link_text] = STATE(686), - [sym_span] = STATE(14), - [sym__bracketed_text] = STATE(673), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(133), - [sym_raw_inline] = STATE(133), - [sym_math] = STATE(133), - [sym_verbatim] = STATE(133), - [sym__todo_highlights] = STATE(133), - [sym_todo] = STATE(133), - [sym_note] = STATE(133), - [sym__symbol_fallback] = STATE(133), - [aux_sym__text] = STATE(129), - [aux_sym__inline_repeat1] = STATE(14), - [anon_sym_LBRACE_] = ACTIONS(423), - [anon_sym__] = ACTIONS(425), - [anon_sym_LBRACE_STAR] = ACTIONS(427), - [anon_sym_STAR] = ACTIONS(429), - [anon_sym_LBRACE_CARET] = ACTIONS(431), - [anon_sym_CARET] = ACTIONS(431), - [anon_sym_LBRACE_TILDE] = ACTIONS(433), - [anon_sym_TILDE] = ACTIONS(433), - [anon_sym_LBRACE_EQ] = ACTIONS(435), - [anon_sym_LBRACE_PLUS] = ACTIONS(437), - [anon_sym_LBRACE_DASH] = ACTIONS(439), - [anon_sym_BSLASH] = ACTIONS(441), - [sym_quotation_marks] = ACTIONS(443), - [sym_ellipsis] = ACTIONS(443), - [sym_em_dash] = ACTIONS(443), - [sym_en_dash] = ACTIONS(445), - [sym_backslash_escape] = ACTIONS(445), - [anon_sym_LT] = ACTIONS(447), - [sym_symbol] = ACTIONS(443), - [anon_sym_LBRACK_CARET] = ACTIONS(449), - [anon_sym_BANG_LBRACK] = ACTIONS(451), - [anon_sym_LBRACK] = ACTIONS(453), - [anon_sym_DOLLAR] = ACTIONS(455), - [anon_sym_TODO] = ACTIONS(457), - [anon_sym_WIP] = ACTIONS(457), - [anon_sym_NOTE] = ACTIONS(459), - [anon_sym_INFO] = ACTIONS(459), - [anon_sym_XXX] = ACTIONS(459), - [sym_fixme] = ACTIONS(443), - [sym__whitespace1] = ACTIONS(461), - [sym__newline] = ACTIONS(469), - [aux_sym__text_token1] = ACTIONS(465), - [sym__verbatim_begin] = ACTIONS(467), + [sym__inline_without_trailing_space] = STATE(940), + [sym__element] = STATE(623), + [sym_emphasis] = STATE(148), + [sym_emphasis_begin] = STATE(1163), + [sym_strong] = STATE(148), + [sym_strong_begin] = STATE(1164), + [sym_superscript] = STATE(148), + [sym_superscript_begin] = STATE(1165), + [sym_subscript] = STATE(148), + [sym_subscript_begin] = STATE(1166), + [sym_highlighted] = STATE(148), + [sym_highlighted_begin] = STATE(1167), + [sym_insert] = STATE(148), + [sym_insert_begin] = STATE(1168), + [sym_delete] = STATE(148), + [sym_delete_begin] = STATE(1169), + [sym_hard_line_break] = STATE(148), + [sym__smart_punctuation] = STATE(148), + [sym_autolink] = STATE(148), + [sym_footnote_reference] = STATE(148), + [sym_footnote_marker_begin] = STATE(1170), + [sym__image] = STATE(148), + [sym_full_reference_image] = STATE(148), + [sym_collapsed_reference_image] = STATE(148), + [sym_inline_image] = STATE(148), + [sym_image_description] = STATE(712), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(148), + [sym_full_reference_link] = STATE(148), + [sym_collapsed_reference_link] = STATE(148), + [sym_inline_link] = STATE(148), + [sym_link_text] = STATE(713), + [sym_span] = STATE(623), + [sym__bracketed_text_begin] = STATE(1262), + [sym__comment_with_spaces] = STATE(148), + [sym_raw_inline] = STATE(148), + [sym_math] = STATE(148), + [sym_verbatim] = STATE(148), + [sym__todo_highlights] = STATE(148), + [sym_todo] = STATE(148), + [sym_note] = STATE(148), + [sym__symbol_fallback] = STATE(148), + [aux_sym__text] = STATE(136), + [aux_sym__inline_repeat1] = STATE(129), + [anon_sym_LBRACE_] = ACTIONS(402), + [anon_sym__] = ACTIONS(404), + [anon_sym_LBRACE_STAR] = ACTIONS(406), + [anon_sym_STAR] = ACTIONS(408), + [anon_sym_LBRACE_CARET] = ACTIONS(410), + [anon_sym_CARET] = ACTIONS(410), + [anon_sym_LBRACE_TILDE] = ACTIONS(412), + [anon_sym_TILDE] = ACTIONS(412), + [anon_sym_LBRACE_EQ] = ACTIONS(414), + [anon_sym_LBRACE_PLUS] = ACTIONS(416), + [anon_sym_LBRACE_DASH] = ACTIONS(418), + [anon_sym_BSLASH] = ACTIONS(420), + [sym_quotation_marks] = ACTIONS(422), + [sym_ellipsis] = ACTIONS(422), + [sym_em_dash] = ACTIONS(422), + [sym_en_dash] = ACTIONS(424), + [sym_backslash_escape] = ACTIONS(424), + [anon_sym_LT] = ACTIONS(426), + [sym_symbol] = ACTIONS(422), + [anon_sym_LBRACK_CARET] = ACTIONS(428), + [anon_sym_BANG_LBRACK] = ACTIONS(430), + [anon_sym_LBRACK] = ACTIONS(432), + [anon_sym_DOLLAR] = ACTIONS(434), + [anon_sym_TODO] = ACTIONS(436), + [anon_sym_WIP] = ACTIONS(436), + [anon_sym_NOTE] = ACTIONS(438), + [anon_sym_INFO] = ACTIONS(438), + [anon_sym_XXX] = ACTIONS(438), + [sym_fixme] = ACTIONS(422), + [sym__whitespace1] = ACTIONS(440), + [sym__newline] = ACTIONS(442), + [aux_sym__text_token1] = ACTIONS(444), + [sym__verbatim_begin] = ACTIONS(446), }, [42] = { - [sym__inline] = STATE(903), - [sym__element] = STATE(3), - [sym_emphasis] = STATE(137), - [sym_emphasis_begin] = STATE(1193), - [sym_strong] = STATE(137), - [sym_strong_begin] = STATE(1194), - [sym_superscript] = STATE(137), - [sym_superscript_begin] = STATE(1195), - [sym_subscript] = STATE(137), - [sym_subscript_begin] = STATE(1196), - [sym_highlighted] = STATE(137), - [sym_highlighted_begin] = STATE(1197), - [sym_insert] = STATE(137), - [sym_insert_begin] = STATE(1198), - [sym_delete] = STATE(137), - [sym_delete_begin] = STATE(1199), - [sym_hard_line_break] = STATE(137), - [sym__smart_punctuation] = STATE(137), - [sym_autolink] = STATE(137), - [sym_footnote_reference] = STATE(137), - [sym_footnote_marker_begin] = STATE(1200), - [sym__image] = STATE(137), - [sym_full_reference_image] = STATE(137), - [sym_collapsed_reference_image] = STATE(137), - [sym_inline_image] = STATE(137), - [sym__image_description] = STATE(694), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(137), - [sym_full_reference_link] = STATE(137), - [sym_collapsed_reference_link] = STATE(137), - [sym_inline_link] = STATE(137), - [sym_link_text] = STATE(693), - [sym_span] = STATE(3), - [sym__bracketed_text] = STATE(672), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(137), - [sym_raw_inline] = STATE(137), - [sym_math] = STATE(137), - [sym_verbatim] = STATE(137), - [sym__todo_highlights] = STATE(137), - [sym_todo] = STATE(137), - [sym_note] = STATE(137), - [sym__symbol_fallback] = STATE(137), - [aux_sym__text] = STATE(131), - [aux_sym__inline_repeat1] = STATE(3), + [sym__inline] = STATE(1026), + [sym__element] = STATE(7), + [sym_emphasis] = STATE(153), + [sym_emphasis_begin] = STATE(1208), + [sym_strong] = STATE(153), + [sym_strong_begin] = STATE(1209), + [sym_superscript] = STATE(153), + [sym_superscript_begin] = STATE(1210), + [sym_subscript] = STATE(153), + [sym_subscript_begin] = STATE(1211), + [sym_highlighted] = STATE(153), + [sym_highlighted_begin] = STATE(1212), + [sym_insert] = STATE(153), + [sym_insert_begin] = STATE(1213), + [sym_delete] = STATE(153), + [sym_delete_begin] = STATE(1214), + [sym_hard_line_break] = STATE(153), + [sym__smart_punctuation] = STATE(153), + [sym_autolink] = STATE(153), + [sym_footnote_reference] = STATE(153), + [sym_footnote_marker_begin] = STATE(1215), + [sym__image] = STATE(153), + [sym_full_reference_image] = STATE(153), + [sym_collapsed_reference_image] = STATE(153), + [sym_inline_image] = STATE(153), + [sym_image_description] = STATE(707), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(153), + [sym_full_reference_link] = STATE(153), + [sym_collapsed_reference_link] = STATE(153), + [sym_inline_link] = STATE(153), + [sym_link_text] = STATE(705), + [sym_span] = STATE(7), + [sym__bracketed_text_begin] = STATE(1267), + [sym__comment_with_spaces] = STATE(153), + [sym_raw_inline] = STATE(153), + [sym_math] = STATE(153), + [sym_verbatim] = STATE(153), + [sym__todo_highlights] = STATE(153), + [sym_todo] = STATE(153), + [sym_note] = STATE(153), + [sym__symbol_fallback] = STATE(153), + [aux_sym__text] = STATE(134), + [aux_sym__inline_repeat1] = STATE(7), [anon_sym_LBRACE_] = ACTIONS(97), [anon_sym__] = ACTIONS(99), [anon_sym_LBRACE_STAR] = ACTIONS(101), @@ -8615,1096 +8630,1003 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_XXX] = ACTIONS(133), [sym_fixme] = ACTIONS(117), [sym__whitespace1] = ACTIONS(135), - [sym__newline] = ACTIONS(145), + [sym__newline] = ACTIONS(137), [aux_sym__text_token1] = ACTIONS(139), [sym__verbatim_begin] = ACTIONS(141), }, [43] = { - [sym__inline] = STATE(997), - [sym__element] = STATE(47), - [sym_emphasis] = STATE(136), - [sym_emphasis_begin] = STATE(1209), - [sym_strong] = STATE(136), - [sym_strong_begin] = STATE(1210), - [sym_superscript] = STATE(136), - [sym_superscript_begin] = STATE(1211), - [sym_subscript] = STATE(136), - [sym_subscript_begin] = STATE(1212), - [sym_highlighted] = STATE(136), - [sym_highlighted_begin] = STATE(1213), - [sym_insert] = STATE(136), - [sym_insert_begin] = STATE(1214), - [sym_delete] = STATE(136), - [sym_delete_begin] = STATE(1215), - [sym_hard_line_break] = STATE(136), - [sym__smart_punctuation] = STATE(136), - [sym_autolink] = STATE(136), - [sym_footnote_reference] = STATE(136), - [sym_footnote_marker_begin] = STATE(1216), - [sym__image] = STATE(136), - [sym_full_reference_image] = STATE(136), - [sym_collapsed_reference_image] = STATE(136), - [sym_inline_image] = STATE(136), - [sym__image_description] = STATE(682), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(136), - [sym_full_reference_link] = STATE(136), - [sym_collapsed_reference_link] = STATE(136), - [sym_inline_link] = STATE(136), - [sym_link_text] = STATE(675), - [sym_span] = STATE(47), - [sym__bracketed_text] = STATE(674), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(136), - [sym_raw_inline] = STATE(136), - [sym_math] = STATE(136), - [sym_verbatim] = STATE(136), - [sym__todo_highlights] = STATE(136), - [sym_todo] = STATE(136), - [sym_note] = STATE(136), - [sym__symbol_fallback] = STATE(136), - [aux_sym__text] = STATE(127), - [aux_sym__inline_repeat1] = STATE(47), - [anon_sym_LBRACE_] = ACTIONS(377), - [anon_sym__] = ACTIONS(379), - [anon_sym_LBRACE_STAR] = ACTIONS(381), - [anon_sym_STAR] = ACTIONS(383), - [anon_sym_LBRACE_CARET] = ACTIONS(385), - [anon_sym_CARET] = ACTIONS(385), - [anon_sym_LBRACE_TILDE] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_LBRACE_EQ] = ACTIONS(389), - [anon_sym_LBRACE_PLUS] = ACTIONS(391), - [anon_sym_LBRACE_DASH] = ACTIONS(393), - [anon_sym_BSLASH] = ACTIONS(395), - [sym_quotation_marks] = ACTIONS(397), - [sym_ellipsis] = ACTIONS(397), - [sym_em_dash] = ACTIONS(397), - [sym_en_dash] = ACTIONS(399), - [sym_backslash_escape] = ACTIONS(399), - [anon_sym_LT] = ACTIONS(401), - [sym_symbol] = ACTIONS(397), - [anon_sym_LBRACK_CARET] = ACTIONS(403), - [anon_sym_BANG_LBRACK] = ACTIONS(405), - [anon_sym_LBRACK] = ACTIONS(407), - [anon_sym_DOLLAR] = ACTIONS(409), - [anon_sym_TODO] = ACTIONS(411), - [anon_sym_WIP] = ACTIONS(411), - [anon_sym_NOTE] = ACTIONS(413), - [anon_sym_INFO] = ACTIONS(413), - [anon_sym_XXX] = ACTIONS(413), - [sym_fixme] = ACTIONS(397), - [sym__whitespace1] = ACTIONS(415), - [sym__newline] = ACTIONS(417), - [aux_sym__text_token1] = ACTIONS(419), - [sym__verbatim_begin] = ACTIONS(421), + [sym__inline] = STATE(915), + [sym__element] = STATE(84), + [sym_emphasis] = STATE(146), + [sym_emphasis_begin] = STATE(1226), + [sym_strong] = STATE(146), + [sym_strong_begin] = STATE(1227), + [sym_superscript] = STATE(146), + [sym_superscript_begin] = STATE(1228), + [sym_subscript] = STATE(146), + [sym_subscript_begin] = STATE(1229), + [sym_highlighted] = STATE(146), + [sym_highlighted_begin] = STATE(1230), + [sym_insert] = STATE(146), + [sym_insert_begin] = STATE(1231), + [sym_delete] = STATE(146), + [sym_delete_begin] = STATE(1232), + [sym_hard_line_break] = STATE(146), + [sym__smart_punctuation] = STATE(146), + [sym_autolink] = STATE(146), + [sym_footnote_reference] = STATE(146), + [sym_footnote_marker_begin] = STATE(1233), + [sym__image] = STATE(146), + [sym_full_reference_image] = STATE(146), + [sym_collapsed_reference_image] = STATE(146), + [sym_inline_image] = STATE(146), + [sym_image_description] = STATE(694), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(146), + [sym_full_reference_link] = STATE(146), + [sym_collapsed_reference_link] = STATE(146), + [sym_inline_link] = STATE(146), + [sym_link_text] = STATE(693), + [sym_span] = STATE(84), + [sym__bracketed_text_begin] = STATE(1269), + [sym__comment_with_spaces] = STATE(146), + [sym_raw_inline] = STATE(146), + [sym_math] = STATE(146), + [sym_verbatim] = STATE(146), + [sym__todo_highlights] = STATE(146), + [sym_todo] = STATE(146), + [sym_note] = STATE(146), + [sym__symbol_fallback] = STATE(146), + [aux_sym__text] = STATE(141), + [aux_sym__inline_repeat1] = STATE(84), + [anon_sym_LBRACE_] = ACTIONS(356), + [anon_sym__] = ACTIONS(358), + [anon_sym_LBRACE_STAR] = ACTIONS(360), + [anon_sym_STAR] = ACTIONS(362), + [anon_sym_LBRACE_CARET] = ACTIONS(364), + [anon_sym_CARET] = ACTIONS(364), + [anon_sym_LBRACE_TILDE] = ACTIONS(366), + [anon_sym_TILDE] = ACTIONS(366), + [anon_sym_LBRACE_EQ] = ACTIONS(368), + [anon_sym_LBRACE_PLUS] = ACTIONS(370), + [anon_sym_LBRACE_DASH] = ACTIONS(372), + [anon_sym_BSLASH] = ACTIONS(374), + [sym_quotation_marks] = ACTIONS(376), + [sym_ellipsis] = ACTIONS(376), + [sym_em_dash] = ACTIONS(376), + [sym_en_dash] = ACTIONS(378), + [sym_backslash_escape] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [sym_symbol] = ACTIONS(376), + [anon_sym_LBRACK_CARET] = ACTIONS(382), + [anon_sym_BANG_LBRACK] = ACTIONS(384), + [anon_sym_LBRACK] = ACTIONS(386), + [anon_sym_DOLLAR] = ACTIONS(388), + [anon_sym_TODO] = ACTIONS(390), + [anon_sym_WIP] = ACTIONS(390), + [anon_sym_NOTE] = ACTIONS(392), + [anon_sym_INFO] = ACTIONS(392), + [anon_sym_XXX] = ACTIONS(392), + [sym_fixme] = ACTIONS(376), + [sym__whitespace1] = ACTIONS(394), + [sym__newline] = ACTIONS(396), + [aux_sym__text_token1] = ACTIONS(398), + [sym__verbatim_begin] = ACTIONS(400), }, [44] = { - [sym__inline] = STATE(904), - [sym__element] = STATE(107), - [sym_emphasis] = STATE(140), - [sym_emphasis_begin] = STATE(1185), - [sym_strong] = STATE(140), - [sym_strong_begin] = STATE(1186), - [sym_superscript] = STATE(140), - [sym_superscript_begin] = STATE(1187), - [sym_subscript] = STATE(140), - [sym_subscript_begin] = STATE(1188), - [sym_highlighted] = STATE(140), - [sym_highlighted_begin] = STATE(1189), - [sym_insert] = STATE(140), - [sym_insert_begin] = STATE(1190), - [sym_delete] = STATE(140), - [sym_delete_begin] = STATE(1191), - [sym_hard_line_break] = STATE(140), - [sym__smart_punctuation] = STATE(140), - [sym_autolink] = STATE(140), - [sym_footnote_reference] = STATE(140), - [sym_footnote_marker_begin] = STATE(1192), - [sym__image] = STATE(140), - [sym_full_reference_image] = STATE(140), - [sym_collapsed_reference_image] = STATE(140), - [sym_inline_image] = STATE(140), - [sym__image_description] = STATE(700), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(140), - [sym_full_reference_link] = STATE(140), - [sym_collapsed_reference_link] = STATE(140), - [sym_inline_link] = STATE(140), - [sym_link_text] = STATE(699), - [sym_span] = STATE(107), - [sym__bracketed_text] = STATE(666), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(140), - [sym_raw_inline] = STATE(140), - [sym_math] = STATE(140), - [sym_verbatim] = STATE(140), - [sym__todo_highlights] = STATE(140), - [sym_todo] = STATE(140), - [sym_note] = STATE(140), - [sym__symbol_fallback] = STATE(140), - [aux_sym__text] = STATE(125), - [aux_sym__inline_repeat1] = STATE(107), - [anon_sym_LBRACE_] = ACTIONS(193), - [anon_sym__] = ACTIONS(195), - [anon_sym_LBRACE_STAR] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(199), - [anon_sym_LBRACE_CARET] = ACTIONS(201), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_LBRACE_TILDE] = ACTIONS(203), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_LBRACE_EQ] = ACTIONS(205), - [anon_sym_LBRACE_PLUS] = ACTIONS(207), - [anon_sym_LBRACE_DASH] = ACTIONS(209), - [anon_sym_BSLASH] = ACTIONS(211), - [sym_quotation_marks] = ACTIONS(213), - [sym_ellipsis] = ACTIONS(213), - [sym_em_dash] = ACTIONS(213), - [sym_en_dash] = ACTIONS(215), - [sym_backslash_escape] = ACTIONS(215), - [anon_sym_LT] = ACTIONS(217), - [sym_symbol] = ACTIONS(213), - [anon_sym_LBRACK_CARET] = ACTIONS(219), - [anon_sym_BANG_LBRACK] = ACTIONS(221), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_DOLLAR] = ACTIONS(225), - [anon_sym_TODO] = ACTIONS(227), - [anon_sym_WIP] = ACTIONS(227), - [anon_sym_NOTE] = ACTIONS(229), - [anon_sym_INFO] = ACTIONS(229), - [anon_sym_XXX] = ACTIONS(229), - [sym_fixme] = ACTIONS(213), - [sym__whitespace1] = ACTIONS(231), - [sym__newline] = ACTIONS(233), - [aux_sym__text_token1] = ACTIONS(235), - [sym__verbatim_begin] = ACTIONS(237), + [sym__inline] = STATE(1025), + [sym__element] = STATE(46), + [sym_emphasis] = STATE(147), + [sym_emphasis_begin] = STATE(1217), + [sym_strong] = STATE(147), + [sym_strong_begin] = STATE(1218), + [sym_superscript] = STATE(147), + [sym_superscript_begin] = STATE(1219), + [sym_subscript] = STATE(147), + [sym_subscript_begin] = STATE(1220), + [sym_highlighted] = STATE(147), + [sym_highlighted_begin] = STATE(1221), + [sym_insert] = STATE(147), + [sym_insert_begin] = STATE(1222), + [sym_delete] = STATE(147), + [sym_delete_begin] = STATE(1223), + [sym_hard_line_break] = STATE(147), + [sym__smart_punctuation] = STATE(147), + [sym_autolink] = STATE(147), + [sym_footnote_reference] = STATE(147), + [sym_footnote_marker_begin] = STATE(1224), + [sym__image] = STATE(147), + [sym_full_reference_image] = STATE(147), + [sym_collapsed_reference_image] = STATE(147), + [sym_inline_image] = STATE(147), + [sym_image_description] = STATE(699), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(147), + [sym_full_reference_link] = STATE(147), + [sym_collapsed_reference_link] = STATE(147), + [sym_inline_link] = STATE(147), + [sym_link_text] = STATE(698), + [sym_span] = STATE(46), + [sym__bracketed_text_begin] = STATE(1268), + [sym__comment_with_spaces] = STATE(147), + [sym_raw_inline] = STATE(147), + [sym_math] = STATE(147), + [sym_verbatim] = STATE(147), + [sym__todo_highlights] = STATE(147), + [sym_todo] = STATE(147), + [sym_note] = STATE(147), + [sym__symbol_fallback] = STATE(147), + [aux_sym__text] = STATE(132), + [aux_sym__inline_repeat1] = STATE(46), + [anon_sym_LBRACE_] = ACTIONS(189), + [anon_sym__] = ACTIONS(191), + [anon_sym_LBRACE_STAR] = ACTIONS(193), + [anon_sym_STAR] = ACTIONS(195), + [anon_sym_LBRACE_CARET] = ACTIONS(197), + [anon_sym_CARET] = ACTIONS(197), + [anon_sym_LBRACE_TILDE] = ACTIONS(199), + [anon_sym_TILDE] = ACTIONS(199), + [anon_sym_LBRACE_EQ] = ACTIONS(201), + [anon_sym_LBRACE_PLUS] = ACTIONS(203), + [anon_sym_LBRACE_DASH] = ACTIONS(205), + [anon_sym_BSLASH] = ACTIONS(207), + [sym_quotation_marks] = ACTIONS(209), + [sym_ellipsis] = ACTIONS(209), + [sym_em_dash] = ACTIONS(209), + [sym_en_dash] = ACTIONS(211), + [sym_backslash_escape] = ACTIONS(211), + [anon_sym_LT] = ACTIONS(213), + [sym_symbol] = ACTIONS(209), + [anon_sym_LBRACK_CARET] = ACTIONS(215), + [anon_sym_BANG_LBRACK] = ACTIONS(217), + [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_DOLLAR] = ACTIONS(221), + [anon_sym_TODO] = ACTIONS(223), + [anon_sym_WIP] = ACTIONS(223), + [anon_sym_NOTE] = ACTIONS(225), + [anon_sym_INFO] = ACTIONS(225), + [anon_sym_XXX] = ACTIONS(225), + [sym_fixme] = ACTIONS(209), + [sym__whitespace1] = ACTIONS(227), + [sym__newline] = ACTIONS(229), + [aux_sym__text_token1] = ACTIONS(231), + [sym__verbatim_begin] = ACTIONS(233), }, [45] = { - [sym__inline_without_trailing_space] = STATE(900), - [sym__element] = STATE(538), - [sym_emphasis] = STATE(141), - [sym_emphasis_begin] = STATE(1153), - [sym_strong] = STATE(141), - [sym_strong_begin] = STATE(1154), - [sym_superscript] = STATE(141), - [sym_superscript_begin] = STATE(1155), - [sym_subscript] = STATE(141), - [sym_subscript_begin] = STATE(1156), - [sym_highlighted] = STATE(141), - [sym_highlighted_begin] = STATE(1157), - [sym_insert] = STATE(141), - [sym_insert_begin] = STATE(1158), - [sym_delete] = STATE(141), - [sym_delete_begin] = STATE(1159), - [sym_hard_line_break] = STATE(141), - [sym__smart_punctuation] = STATE(141), - [sym_autolink] = STATE(141), - [sym_footnote_reference] = STATE(141), - [sym_footnote_marker_begin] = STATE(1160), - [sym__image] = STATE(141), - [sym_full_reference_image] = STATE(141), - [sym_collapsed_reference_image] = STATE(141), - [sym_inline_image] = STATE(141), - [sym__image_description] = STATE(681), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(141), - [sym_full_reference_link] = STATE(141), - [sym_collapsed_reference_link] = STATE(141), - [sym_inline_link] = STATE(141), - [sym_link_text] = STATE(680), - [sym_span] = STATE(538), - [sym__bracketed_text] = STATE(664), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(141), - [sym_raw_inline] = STATE(141), - [sym_math] = STATE(141), - [sym_verbatim] = STATE(141), - [sym__todo_highlights] = STATE(141), - [sym_todo] = STATE(141), - [sym_note] = STATE(141), - [sym__symbol_fallback] = STATE(141), - [aux_sym__text] = STATE(128), - [aux_sym__inline_repeat1] = STATE(119), - [anon_sym_LBRACE_] = ACTIONS(147), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_STAR] = ACTIONS(151), - [anon_sym_STAR] = ACTIONS(153), - [anon_sym_LBRACE_CARET] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_LBRACE_TILDE] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_LBRACE_EQ] = ACTIONS(159), - [anon_sym_LBRACE_PLUS] = ACTIONS(161), - [anon_sym_LBRACE_DASH] = ACTIONS(163), - [anon_sym_BSLASH] = ACTIONS(165), - [sym_quotation_marks] = ACTIONS(167), - [sym_ellipsis] = ACTIONS(167), - [sym_em_dash] = ACTIONS(167), - [sym_en_dash] = ACTIONS(169), - [sym_backslash_escape] = ACTIONS(169), - [anon_sym_LT] = ACTIONS(171), - [sym_symbol] = ACTIONS(167), - [anon_sym_LBRACK_CARET] = ACTIONS(173), - [anon_sym_BANG_LBRACK] = ACTIONS(175), - [anon_sym_LBRACK] = ACTIONS(177), - [anon_sym_DOLLAR] = ACTIONS(179), - [anon_sym_TODO] = ACTIONS(181), - [anon_sym_WIP] = ACTIONS(181), - [anon_sym_NOTE] = ACTIONS(183), - [anon_sym_INFO] = ACTIONS(183), - [anon_sym_XXX] = ACTIONS(183), - [sym_fixme] = ACTIONS(167), - [sym__whitespace1] = ACTIONS(185), - [sym__newline] = ACTIONS(187), - [aux_sym__text_token1] = ACTIONS(189), - [sym__verbatim_begin] = ACTIONS(191), - }, - [46] = { - [sym__inline] = STATE(905), - [sym__element] = STATE(72), - [sym_emphasis] = STATE(135), - [sym_emphasis_begin] = STATE(1177), - [sym_strong] = STATE(135), - [sym_strong_begin] = STATE(1178), - [sym_superscript] = STATE(135), - [sym_superscript_begin] = STATE(1179), - [sym_subscript] = STATE(135), - [sym_subscript_begin] = STATE(1180), - [sym_highlighted] = STATE(135), - [sym_highlighted_begin] = STATE(1181), - [sym_insert] = STATE(135), - [sym_insert_begin] = STATE(1182), - [sym_delete] = STATE(135), - [sym_delete_begin] = STATE(1183), - [sym_hard_line_break] = STATE(135), - [sym__smart_punctuation] = STATE(135), - [sym_autolink] = STATE(135), - [sym_footnote_reference] = STATE(135), - [sym_footnote_marker_begin] = STATE(1184), - [sym__image] = STATE(135), - [sym_full_reference_image] = STATE(135), - [sym_collapsed_reference_image] = STATE(135), - [sym_inline_image] = STATE(135), - [sym__image_description] = STATE(687), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(135), - [sym_full_reference_link] = STATE(135), - [sym_collapsed_reference_link] = STATE(135), - [sym_inline_link] = STATE(135), - [sym_link_text] = STATE(684), - [sym_span] = STATE(72), - [sym__bracketed_text] = STATE(670), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(135), - [sym_raw_inline] = STATE(135), - [sym_math] = STATE(135), - [sym_verbatim] = STATE(135), - [sym__todo_highlights] = STATE(135), - [sym_todo] = STATE(135), - [sym_note] = STATE(135), - [sym__symbol_fallback] = STATE(135), - [aux_sym__text] = STATE(124), - [aux_sym__inline_repeat1] = STATE(72), - [anon_sym_LBRACE_] = ACTIONS(239), - [anon_sym__] = ACTIONS(241), - [anon_sym_LBRACE_STAR] = ACTIONS(243), - [anon_sym_STAR] = ACTIONS(245), - [anon_sym_LBRACE_CARET] = ACTIONS(247), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_LBRACE_TILDE] = ACTIONS(249), - [anon_sym_TILDE] = ACTIONS(249), - [anon_sym_LBRACE_EQ] = ACTIONS(251), - [anon_sym_LBRACE_PLUS] = ACTIONS(253), - [anon_sym_LBRACE_DASH] = ACTIONS(255), - [anon_sym_BSLASH] = ACTIONS(257), - [sym_quotation_marks] = ACTIONS(259), - [sym_ellipsis] = ACTIONS(259), - [sym_em_dash] = ACTIONS(259), - [sym_en_dash] = ACTIONS(261), - [sym_backslash_escape] = ACTIONS(261), - [anon_sym_LT] = ACTIONS(263), - [sym_symbol] = ACTIONS(259), - [anon_sym_LBRACK_CARET] = ACTIONS(265), - [anon_sym_BANG_LBRACK] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(269), - [anon_sym_DOLLAR] = ACTIONS(271), - [anon_sym_TODO] = ACTIONS(273), - [anon_sym_WIP] = ACTIONS(273), - [anon_sym_NOTE] = ACTIONS(275), - [anon_sym_INFO] = ACTIONS(275), - [anon_sym_XXX] = ACTIONS(275), - [sym_fixme] = ACTIONS(259), - [sym__whitespace1] = ACTIONS(277), - [sym__newline] = ACTIONS(279), - [aux_sym__text_token1] = ACTIONS(281), - [sym__verbatim_begin] = ACTIONS(283), - }, - [47] = { - [sym__element] = STATE(74), - [sym_emphasis] = STATE(136), - [sym_emphasis_begin] = STATE(1209), - [sym_strong] = STATE(136), - [sym_strong_begin] = STATE(1210), - [sym_superscript] = STATE(136), - [sym_superscript_begin] = STATE(1211), - [sym_subscript] = STATE(136), - [sym_subscript_begin] = STATE(1212), - [sym_highlighted] = STATE(136), - [sym_highlighted_begin] = STATE(1213), - [sym_insert] = STATE(136), - [sym_insert_begin] = STATE(1214), - [sym_delete] = STATE(136), - [sym_delete_begin] = STATE(1215), - [sym_hard_line_break] = STATE(136), - [sym__smart_punctuation] = STATE(136), - [sym_autolink] = STATE(136), - [sym_footnote_reference] = STATE(136), - [sym_footnote_marker_begin] = STATE(1216), - [sym__image] = STATE(136), - [sym_full_reference_image] = STATE(136), - [sym_collapsed_reference_image] = STATE(136), - [sym_inline_image] = STATE(136), - [sym__image_description] = STATE(682), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(136), - [sym_full_reference_link] = STATE(136), - [sym_collapsed_reference_link] = STATE(136), - [sym_inline_link] = STATE(136), - [sym_link_text] = STATE(675), - [sym_span] = STATE(74), - [sym__bracketed_text] = STATE(674), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(136), - [sym_raw_inline] = STATE(136), - [sym_math] = STATE(136), - [sym_verbatim] = STATE(136), - [sym__todo_highlights] = STATE(136), - [sym_todo] = STATE(136), - [sym_note] = STATE(136), - [sym__symbol_fallback] = STATE(136), - [aux_sym__text] = STATE(127), - [aux_sym__inline_repeat1] = STATE(74), - [anon_sym_LBRACE_] = ACTIONS(377), - [anon_sym__] = ACTIONS(379), - [anon_sym_LBRACE_STAR] = ACTIONS(381), - [anon_sym_STAR] = ACTIONS(383), - [anon_sym_LBRACE_CARET] = ACTIONS(385), - [anon_sym_CARET] = ACTIONS(385), - [anon_sym_LBRACE_TILDE] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_LBRACE_EQ] = ACTIONS(389), - [anon_sym_LBRACE_PLUS] = ACTIONS(391), - [anon_sym_LBRACE_DASH] = ACTIONS(393), - [anon_sym_BSLASH] = ACTIONS(395), - [sym_quotation_marks] = ACTIONS(397), - [sym_ellipsis] = ACTIONS(397), - [sym_em_dash] = ACTIONS(397), - [sym_en_dash] = ACTIONS(399), - [sym_backslash_escape] = ACTIONS(399), - [anon_sym_LT] = ACTIONS(401), - [sym_symbol] = ACTIONS(397), - [anon_sym_LBRACK_CARET] = ACTIONS(403), - [anon_sym_BANG_LBRACK] = ACTIONS(405), - [anon_sym_LBRACK] = ACTIONS(407), - [anon_sym_RBRACK] = ACTIONS(143), - [anon_sym_DOLLAR] = ACTIONS(409), - [anon_sym_TODO] = ACTIONS(411), - [anon_sym_WIP] = ACTIONS(411), - [anon_sym_NOTE] = ACTIONS(413), - [anon_sym_INFO] = ACTIONS(413), - [anon_sym_XXX] = ACTIONS(413), - [sym_fixme] = ACTIONS(397), - [sym__whitespace1] = ACTIONS(415), - [sym__newline] = ACTIONS(613), - [aux_sym__text_token1] = ACTIONS(419), - [sym__verbatim_begin] = ACTIONS(421), - }, - [48] = { - [sym__inline] = STATE(919), - [sym__element] = STATE(82), - [sym_emphasis] = STATE(143), - [sym_emphasis_begin] = STATE(1169), - [sym_strong] = STATE(143), - [sym_strong_begin] = STATE(1170), - [sym_superscript] = STATE(143), - [sym_superscript_begin] = STATE(1171), - [sym_subscript] = STATE(143), - [sym_subscript_begin] = STATE(1172), - [sym_highlighted] = STATE(143), - [sym_highlighted_begin] = STATE(1173), - [sym_insert] = STATE(143), - [sym_insert_begin] = STATE(1174), - [sym_delete] = STATE(143), - [sym_delete_begin] = STATE(1175), - [sym_hard_line_break] = STATE(143), - [sym__smart_punctuation] = STATE(143), - [sym_autolink] = STATE(143), - [sym_footnote_reference] = STATE(143), - [sym_footnote_marker_begin] = STATE(1176), - [sym__image] = STATE(143), - [sym_full_reference_image] = STATE(143), - [sym_collapsed_reference_image] = STATE(143), - [sym_inline_image] = STATE(143), - [sym__image_description] = STATE(701), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(143), - [sym_full_reference_link] = STATE(143), - [sym_collapsed_reference_link] = STATE(143), - [sym_inline_link] = STATE(143), - [sym_link_text] = STATE(702), - [sym_span] = STATE(82), - [sym__bracketed_text] = STATE(667), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(143), - [sym_raw_inline] = STATE(143), - [sym_math] = STATE(143), - [sym_verbatim] = STATE(143), - [sym__todo_highlights] = STATE(143), - [sym_todo] = STATE(143), - [sym_note] = STATE(143), - [sym__symbol_fallback] = STATE(143), - [aux_sym__text] = STATE(126), - [aux_sym__inline_repeat1] = STATE(82), - [anon_sym_LBRACE_] = ACTIONS(285), - [anon_sym__] = ACTIONS(287), - [anon_sym_LBRACE_STAR] = ACTIONS(289), - [anon_sym_STAR] = ACTIONS(291), - [anon_sym_LBRACE_CARET] = ACTIONS(293), - [anon_sym_CARET] = ACTIONS(293), - [anon_sym_LBRACE_TILDE] = ACTIONS(295), - [anon_sym_TILDE] = ACTIONS(295), - [anon_sym_LBRACE_EQ] = ACTIONS(297), - [anon_sym_LBRACE_PLUS] = ACTIONS(299), - [anon_sym_LBRACE_DASH] = ACTIONS(301), - [anon_sym_BSLASH] = ACTIONS(303), - [sym_quotation_marks] = ACTIONS(305), - [sym_ellipsis] = ACTIONS(305), - [sym_em_dash] = ACTIONS(305), - [sym_en_dash] = ACTIONS(307), - [sym_backslash_escape] = ACTIONS(307), - [anon_sym_LT] = ACTIONS(309), - [sym_symbol] = ACTIONS(305), - [anon_sym_LBRACK_CARET] = ACTIONS(311), - [anon_sym_BANG_LBRACK] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_DOLLAR] = ACTIONS(317), - [anon_sym_TODO] = ACTIONS(319), - [anon_sym_WIP] = ACTIONS(319), - [anon_sym_NOTE] = ACTIONS(321), - [anon_sym_INFO] = ACTIONS(321), - [anon_sym_XXX] = ACTIONS(321), - [sym_fixme] = ACTIONS(305), - [sym__whitespace1] = ACTIONS(323), - [sym__newline] = ACTIONS(325), - [aux_sym__text_token1] = ACTIONS(327), - [sym__verbatim_begin] = ACTIONS(329), + [sym__inline] = STATE(913), + [sym__element] = STATE(46), + [sym_emphasis] = STATE(147), + [sym_emphasis_begin] = STATE(1217), + [sym_strong] = STATE(147), + [sym_strong_begin] = STATE(1218), + [sym_superscript] = STATE(147), + [sym_superscript_begin] = STATE(1219), + [sym_subscript] = STATE(147), + [sym_subscript_begin] = STATE(1220), + [sym_highlighted] = STATE(147), + [sym_highlighted_begin] = STATE(1221), + [sym_insert] = STATE(147), + [sym_insert_begin] = STATE(1222), + [sym_delete] = STATE(147), + [sym_delete_begin] = STATE(1223), + [sym_hard_line_break] = STATE(147), + [sym__smart_punctuation] = STATE(147), + [sym_autolink] = STATE(147), + [sym_footnote_reference] = STATE(147), + [sym_footnote_marker_begin] = STATE(1224), + [sym__image] = STATE(147), + [sym_full_reference_image] = STATE(147), + [sym_collapsed_reference_image] = STATE(147), + [sym_inline_image] = STATE(147), + [sym_image_description] = STATE(699), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(147), + [sym_full_reference_link] = STATE(147), + [sym_collapsed_reference_link] = STATE(147), + [sym_inline_link] = STATE(147), + [sym_link_text] = STATE(698), + [sym_span] = STATE(46), + [sym__bracketed_text_begin] = STATE(1268), + [sym__comment_with_spaces] = STATE(147), + [sym_raw_inline] = STATE(147), + [sym_math] = STATE(147), + [sym_verbatim] = STATE(147), + [sym__todo_highlights] = STATE(147), + [sym_todo] = STATE(147), + [sym_note] = STATE(147), + [sym__symbol_fallback] = STATE(147), + [aux_sym__text] = STATE(132), + [aux_sym__inline_repeat1] = STATE(46), + [anon_sym_LBRACE_] = ACTIONS(189), + [anon_sym__] = ACTIONS(191), + [anon_sym_LBRACE_STAR] = ACTIONS(193), + [anon_sym_STAR] = ACTIONS(195), + [anon_sym_LBRACE_CARET] = ACTIONS(197), + [anon_sym_CARET] = ACTIONS(197), + [anon_sym_LBRACE_TILDE] = ACTIONS(199), + [anon_sym_TILDE] = ACTIONS(199), + [anon_sym_LBRACE_EQ] = ACTIONS(201), + [anon_sym_LBRACE_PLUS] = ACTIONS(203), + [anon_sym_LBRACE_DASH] = ACTIONS(205), + [anon_sym_BSLASH] = ACTIONS(207), + [sym_quotation_marks] = ACTIONS(209), + [sym_ellipsis] = ACTIONS(209), + [sym_em_dash] = ACTIONS(209), + [sym_en_dash] = ACTIONS(211), + [sym_backslash_escape] = ACTIONS(211), + [anon_sym_LT] = ACTIONS(213), + [sym_symbol] = ACTIONS(209), + [anon_sym_LBRACK_CARET] = ACTIONS(215), + [anon_sym_BANG_LBRACK] = ACTIONS(217), + [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_DOLLAR] = ACTIONS(221), + [anon_sym_TODO] = ACTIONS(223), + [anon_sym_WIP] = ACTIONS(223), + [anon_sym_NOTE] = ACTIONS(225), + [anon_sym_INFO] = ACTIONS(225), + [anon_sym_XXX] = ACTIONS(225), + [sym_fixme] = ACTIONS(209), + [sym__whitespace1] = ACTIONS(227), + [sym__newline] = ACTIONS(229), + [aux_sym__text_token1] = ACTIONS(231), + [sym__verbatim_begin] = ACTIONS(233), + }, + [46] = { + [sym__element] = STATE(100), + [sym_emphasis] = STATE(147), + [sym_emphasis_begin] = STATE(1217), + [sym_strong] = STATE(147), + [sym_strong_begin] = STATE(1218), + [sym_superscript] = STATE(147), + [sym_superscript_begin] = STATE(1219), + [sym_subscript] = STATE(147), + [sym_subscript_begin] = STATE(1220), + [sym_highlighted] = STATE(147), + [sym_highlighted_begin] = STATE(1221), + [sym_insert] = STATE(147), + [sym_insert_begin] = STATE(1222), + [sym_delete] = STATE(147), + [sym_delete_begin] = STATE(1223), + [sym_hard_line_break] = STATE(147), + [sym__smart_punctuation] = STATE(147), + [sym_autolink] = STATE(147), + [sym_footnote_reference] = STATE(147), + [sym_footnote_marker_begin] = STATE(1224), + [sym__image] = STATE(147), + [sym_full_reference_image] = STATE(147), + [sym_collapsed_reference_image] = STATE(147), + [sym_inline_image] = STATE(147), + [sym_image_description] = STATE(699), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(147), + [sym_full_reference_link] = STATE(147), + [sym_collapsed_reference_link] = STATE(147), + [sym_inline_link] = STATE(147), + [sym_link_text] = STATE(698), + [sym_span] = STATE(100), + [sym__bracketed_text_begin] = STATE(1268), + [sym__comment_with_spaces] = STATE(147), + [sym_raw_inline] = STATE(147), + [sym_math] = STATE(147), + [sym_verbatim] = STATE(147), + [sym__todo_highlights] = STATE(147), + [sym_todo] = STATE(147), + [sym_note] = STATE(147), + [sym__symbol_fallback] = STATE(147), + [aux_sym__text] = STATE(132), + [aux_sym__inline_repeat1] = STATE(100), + [anon_sym_LBRACE_] = ACTIONS(189), + [anon_sym__] = ACTIONS(191), + [anon_sym_LBRACE_STAR] = ACTIONS(193), + [anon_sym_STAR] = ACTIONS(195), + [anon_sym_LBRACE_CARET] = ACTIONS(197), + [anon_sym_CARET] = ACTIONS(197), + [anon_sym_LBRACE_TILDE] = ACTIONS(199), + [anon_sym_TILDE] = ACTIONS(199), + [anon_sym_LBRACE_EQ] = ACTIONS(201), + [anon_sym_LBRACE_PLUS] = ACTIONS(203), + [anon_sym_LBRACE_DASH] = ACTIONS(205), + [anon_sym_BSLASH] = ACTIONS(207), + [sym_quotation_marks] = ACTIONS(209), + [sym_ellipsis] = ACTIONS(209), + [sym_em_dash] = ACTIONS(209), + [sym_en_dash] = ACTIONS(211), + [sym_backslash_escape] = ACTIONS(211), + [anon_sym_LT] = ACTIONS(213), + [sym_symbol] = ACTIONS(209), + [anon_sym_LBRACK_CARET] = ACTIONS(215), + [anon_sym_BANG_LBRACK] = ACTIONS(217), + [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_DOLLAR] = ACTIONS(221), + [anon_sym_TODO] = ACTIONS(223), + [anon_sym_WIP] = ACTIONS(223), + [anon_sym_NOTE] = ACTIONS(225), + [anon_sym_INFO] = ACTIONS(225), + [anon_sym_XXX] = ACTIONS(225), + [sym_fixme] = ACTIONS(209), + [sym__whitespace1] = ACTIONS(227), + [sym__newline] = ACTIONS(659), + [aux_sym__text_token1] = ACTIONS(231), + [sym__verbatim_begin] = ACTIONS(233), + [sym_delete_end] = ACTIONS(283), + }, + [47] = { + [sym__inline] = STATE(912), + [sym__element] = STATE(7), + [sym_emphasis] = STATE(153), + [sym_emphasis_begin] = STATE(1208), + [sym_strong] = STATE(153), + [sym_strong_begin] = STATE(1209), + [sym_superscript] = STATE(153), + [sym_superscript_begin] = STATE(1210), + [sym_subscript] = STATE(153), + [sym_subscript_begin] = STATE(1211), + [sym_highlighted] = STATE(153), + [sym_highlighted_begin] = STATE(1212), + [sym_insert] = STATE(153), + [sym_insert_begin] = STATE(1213), + [sym_delete] = STATE(153), + [sym_delete_begin] = STATE(1214), + [sym_hard_line_break] = STATE(153), + [sym__smart_punctuation] = STATE(153), + [sym_autolink] = STATE(153), + [sym_footnote_reference] = STATE(153), + [sym_footnote_marker_begin] = STATE(1215), + [sym__image] = STATE(153), + [sym_full_reference_image] = STATE(153), + [sym_collapsed_reference_image] = STATE(153), + [sym_inline_image] = STATE(153), + [sym_image_description] = STATE(707), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(153), + [sym_full_reference_link] = STATE(153), + [sym_collapsed_reference_link] = STATE(153), + [sym_inline_link] = STATE(153), + [sym_link_text] = STATE(705), + [sym_span] = STATE(7), + [sym__bracketed_text_begin] = STATE(1267), + [sym__comment_with_spaces] = STATE(153), + [sym_raw_inline] = STATE(153), + [sym_math] = STATE(153), + [sym_verbatim] = STATE(153), + [sym__todo_highlights] = STATE(153), + [sym_todo] = STATE(153), + [sym_note] = STATE(153), + [sym__symbol_fallback] = STATE(153), + [aux_sym__text] = STATE(134), + [aux_sym__inline_repeat1] = STATE(7), + [anon_sym_LBRACE_] = ACTIONS(97), + [anon_sym__] = ACTIONS(99), + [anon_sym_LBRACE_STAR] = ACTIONS(101), + [anon_sym_STAR] = ACTIONS(103), + [anon_sym_LBRACE_CARET] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [anon_sym_LBRACE_TILDE] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(107), + [anon_sym_LBRACE_EQ] = ACTIONS(109), + [anon_sym_LBRACE_PLUS] = ACTIONS(111), + [anon_sym_LBRACE_DASH] = ACTIONS(113), + [anon_sym_BSLASH] = ACTIONS(115), + [sym_quotation_marks] = ACTIONS(117), + [sym_ellipsis] = ACTIONS(117), + [sym_em_dash] = ACTIONS(117), + [sym_en_dash] = ACTIONS(119), + [sym_backslash_escape] = ACTIONS(119), + [anon_sym_LT] = ACTIONS(121), + [sym_symbol] = ACTIONS(117), + [anon_sym_LBRACK_CARET] = ACTIONS(123), + [anon_sym_BANG_LBRACK] = ACTIONS(125), + [anon_sym_LBRACK] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_TODO] = ACTIONS(131), + [anon_sym_WIP] = ACTIONS(131), + [anon_sym_NOTE] = ACTIONS(133), + [anon_sym_INFO] = ACTIONS(133), + [anon_sym_XXX] = ACTIONS(133), + [sym_fixme] = ACTIONS(117), + [sym__whitespace1] = ACTIONS(135), + [sym__newline] = ACTIONS(137), + [aux_sym__text_token1] = ACTIONS(139), + [sym__verbatim_begin] = ACTIONS(141), + }, + [48] = { + [sym__inline] = STATE(911), + [sym__element] = STATE(21), + [sym_emphasis] = STATE(149), + [sym_emphasis_begin] = STATE(1199), + [sym_strong] = STATE(149), + [sym_strong_begin] = STATE(1200), + [sym_superscript] = STATE(149), + [sym_superscript_begin] = STATE(1201), + [sym_subscript] = STATE(149), + [sym_subscript_begin] = STATE(1202), + [sym_highlighted] = STATE(149), + [sym_highlighted_begin] = STATE(1203), + [sym_insert] = STATE(149), + [sym_insert_begin] = STATE(1204), + [sym_delete] = STATE(149), + [sym_delete_begin] = STATE(1205), + [sym_hard_line_break] = STATE(149), + [sym__smart_punctuation] = STATE(149), + [sym_autolink] = STATE(149), + [sym_footnote_reference] = STATE(149), + [sym_footnote_marker_begin] = STATE(1206), + [sym__image] = STATE(149), + [sym_full_reference_image] = STATE(149), + [sym_collapsed_reference_image] = STATE(149), + [sym_inline_image] = STATE(149), + [sym_image_description] = STATE(714), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(149), + [sym_full_reference_link] = STATE(149), + [sym_collapsed_reference_link] = STATE(149), + [sym_inline_link] = STATE(149), + [sym_link_text] = STATE(710), + [sym_span] = STATE(21), + [sym__bracketed_text_begin] = STATE(1266), + [sym__comment_with_spaces] = STATE(149), + [sym_raw_inline] = STATE(149), + [sym_math] = STATE(149), + [sym_verbatim] = STATE(149), + [sym__todo_highlights] = STATE(149), + [sym_todo] = STATE(149), + [sym_note] = STATE(149), + [sym__symbol_fallback] = STATE(149), + [aux_sym__text] = STATE(142), + [aux_sym__inline_repeat1] = STATE(21), + [anon_sym_LBRACE_] = ACTIONS(494), + [anon_sym__] = ACTIONS(496), + [anon_sym_LBRACE_STAR] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(500), + [anon_sym_LBRACE_CARET] = ACTIONS(502), + [anon_sym_CARET] = ACTIONS(502), + [anon_sym_LBRACE_TILDE] = ACTIONS(504), + [anon_sym_TILDE] = ACTIONS(504), + [anon_sym_LBRACE_EQ] = ACTIONS(506), + [anon_sym_LBRACE_PLUS] = ACTIONS(508), + [anon_sym_LBRACE_DASH] = ACTIONS(510), + [anon_sym_BSLASH] = ACTIONS(512), + [sym_quotation_marks] = ACTIONS(514), + [sym_ellipsis] = ACTIONS(514), + [sym_em_dash] = ACTIONS(514), + [sym_en_dash] = ACTIONS(516), + [sym_backslash_escape] = ACTIONS(516), + [anon_sym_LT] = ACTIONS(518), + [sym_symbol] = ACTIONS(514), + [anon_sym_LBRACK_CARET] = ACTIONS(520), + [anon_sym_BANG_LBRACK] = ACTIONS(522), + [anon_sym_LBRACK] = ACTIONS(524), + [anon_sym_DOLLAR] = ACTIONS(526), + [anon_sym_TODO] = ACTIONS(528), + [anon_sym_WIP] = ACTIONS(528), + [anon_sym_NOTE] = ACTIONS(530), + [anon_sym_INFO] = ACTIONS(530), + [anon_sym_XXX] = ACTIONS(530), + [sym_fixme] = ACTIONS(514), + [sym__whitespace1] = ACTIONS(532), + [sym__newline] = ACTIONS(540), + [aux_sym__text_token1] = ACTIONS(536), + [sym__verbatim_begin] = ACTIONS(538), }, [49] = { - [sym__inline_without_trailing_space] = STATE(921), - [sym__element] = STATE(572), - [sym_emphasis] = STATE(138), - [sym_emphasis_begin] = STATE(1161), - [sym_strong] = STATE(138), - [sym_strong_begin] = STATE(1162), - [sym_superscript] = STATE(138), - [sym_superscript_begin] = STATE(1163), - [sym_subscript] = STATE(138), - [sym_subscript_begin] = STATE(1164), - [sym_highlighted] = STATE(138), - [sym_highlighted_begin] = STATE(1165), - [sym_insert] = STATE(138), - [sym_insert_begin] = STATE(1166), - [sym_delete] = STATE(138), - [sym_delete_begin] = STATE(1167), - [sym_hard_line_break] = STATE(138), - [sym__smart_punctuation] = STATE(138), - [sym_autolink] = STATE(138), - [sym_footnote_reference] = STATE(138), - [sym_footnote_marker_begin] = STATE(1168), - [sym__image] = STATE(138), - [sym_full_reference_image] = STATE(138), - [sym_collapsed_reference_image] = STATE(138), - [sym_inline_image] = STATE(138), - [sym__image_description] = STATE(703), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(138), - [sym_full_reference_link] = STATE(138), - [sym_collapsed_reference_link] = STATE(138), - [sym_inline_link] = STATE(138), - [sym_link_text] = STATE(697), - [sym_span] = STATE(572), - [sym__bracketed_text] = STATE(671), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(138), - [sym_raw_inline] = STATE(138), - [sym_math] = STATE(138), - [sym_verbatim] = STATE(138), - [sym__todo_highlights] = STATE(138), - [sym_todo] = STATE(138), - [sym_note] = STATE(138), - [sym__symbol_fallback] = STATE(138), - [aux_sym__text] = STATE(122), - [aux_sym__inline_repeat1] = STATE(120), - [anon_sym_LBRACE_] = ACTIONS(331), - [anon_sym__] = ACTIONS(333), - [anon_sym_LBRACE_STAR] = ACTIONS(335), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_LBRACE_CARET] = ACTIONS(339), - [anon_sym_CARET] = ACTIONS(339), - [anon_sym_LBRACE_TILDE] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_LBRACE_EQ] = ACTIONS(343), - [anon_sym_LBRACE_PLUS] = ACTIONS(345), - [anon_sym_LBRACE_DASH] = ACTIONS(347), - [anon_sym_BSLASH] = ACTIONS(349), - [sym_quotation_marks] = ACTIONS(351), - [sym_ellipsis] = ACTIONS(351), - [sym_em_dash] = ACTIONS(351), - [sym_en_dash] = ACTIONS(353), - [sym_backslash_escape] = ACTIONS(353), - [anon_sym_LT] = ACTIONS(355), - [sym_symbol] = ACTIONS(351), - [anon_sym_LBRACK_CARET] = ACTIONS(357), - [anon_sym_BANG_LBRACK] = ACTIONS(359), - [anon_sym_LBRACK] = ACTIONS(361), - [anon_sym_DOLLAR] = ACTIONS(363), - [anon_sym_TODO] = ACTIONS(365), - [anon_sym_WIP] = ACTIONS(365), - [anon_sym_NOTE] = ACTIONS(367), - [anon_sym_INFO] = ACTIONS(367), - [anon_sym_XXX] = ACTIONS(367), - [sym_fixme] = ACTIONS(351), - [sym__whitespace1] = ACTIONS(369), - [sym__newline] = ACTIONS(371), - [aux_sym__text_token1] = ACTIONS(373), - [sym__verbatim_begin] = ACTIONS(375), + [sym__inline] = STATE(1023), + [sym__element] = STATE(84), + [sym_emphasis] = STATE(146), + [sym_emphasis_begin] = STATE(1226), + [sym_strong] = STATE(146), + [sym_strong_begin] = STATE(1227), + [sym_superscript] = STATE(146), + [sym_superscript_begin] = STATE(1228), + [sym_subscript] = STATE(146), + [sym_subscript_begin] = STATE(1229), + [sym_highlighted] = STATE(146), + [sym_highlighted_begin] = STATE(1230), + [sym_insert] = STATE(146), + [sym_insert_begin] = STATE(1231), + [sym_delete] = STATE(146), + [sym_delete_begin] = STATE(1232), + [sym_hard_line_break] = STATE(146), + [sym__smart_punctuation] = STATE(146), + [sym_autolink] = STATE(146), + [sym_footnote_reference] = STATE(146), + [sym_footnote_marker_begin] = STATE(1233), + [sym__image] = STATE(146), + [sym_full_reference_image] = STATE(146), + [sym_collapsed_reference_image] = STATE(146), + [sym_inline_image] = STATE(146), + [sym_image_description] = STATE(694), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(146), + [sym_full_reference_link] = STATE(146), + [sym_collapsed_reference_link] = STATE(146), + [sym_inline_link] = STATE(146), + [sym_link_text] = STATE(693), + [sym_span] = STATE(84), + [sym__bracketed_text_begin] = STATE(1269), + [sym__comment_with_spaces] = STATE(146), + [sym_raw_inline] = STATE(146), + [sym_math] = STATE(146), + [sym_verbatim] = STATE(146), + [sym__todo_highlights] = STATE(146), + [sym_todo] = STATE(146), + [sym_note] = STATE(146), + [sym__symbol_fallback] = STATE(146), + [aux_sym__text] = STATE(141), + [aux_sym__inline_repeat1] = STATE(84), + [anon_sym_LBRACE_] = ACTIONS(356), + [anon_sym__] = ACTIONS(358), + [anon_sym_LBRACE_STAR] = ACTIONS(360), + [anon_sym_STAR] = ACTIONS(362), + [anon_sym_LBRACE_CARET] = ACTIONS(364), + [anon_sym_CARET] = ACTIONS(364), + [anon_sym_LBRACE_TILDE] = ACTIONS(366), + [anon_sym_TILDE] = ACTIONS(366), + [anon_sym_LBRACE_EQ] = ACTIONS(368), + [anon_sym_LBRACE_PLUS] = ACTIONS(370), + [anon_sym_LBRACE_DASH] = ACTIONS(372), + [anon_sym_BSLASH] = ACTIONS(374), + [sym_quotation_marks] = ACTIONS(376), + [sym_ellipsis] = ACTIONS(376), + [sym_em_dash] = ACTIONS(376), + [sym_en_dash] = ACTIONS(378), + [sym_backslash_escape] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [sym_symbol] = ACTIONS(376), + [anon_sym_LBRACK_CARET] = ACTIONS(382), + [anon_sym_BANG_LBRACK] = ACTIONS(384), + [anon_sym_LBRACK] = ACTIONS(386), + [anon_sym_DOLLAR] = ACTIONS(388), + [anon_sym_TODO] = ACTIONS(390), + [anon_sym_WIP] = ACTIONS(390), + [anon_sym_NOTE] = ACTIONS(392), + [anon_sym_INFO] = ACTIONS(392), + [anon_sym_XXX] = ACTIONS(392), + [sym_fixme] = ACTIONS(376), + [sym__whitespace1] = ACTIONS(394), + [sym__newline] = ACTIONS(396), + [aux_sym__text_token1] = ACTIONS(398), + [sym__verbatim_begin] = ACTIONS(400), }, [50] = { - [sym__inline_without_trailing_space] = STATE(1042), - [sym__element] = STATE(572), - [sym_emphasis] = STATE(138), - [sym_emphasis_begin] = STATE(1161), - [sym_strong] = STATE(138), - [sym_strong_begin] = STATE(1162), - [sym_superscript] = STATE(138), - [sym_superscript_begin] = STATE(1163), - [sym_subscript] = STATE(138), - [sym_subscript_begin] = STATE(1164), - [sym_highlighted] = STATE(138), - [sym_highlighted_begin] = STATE(1165), - [sym_insert] = STATE(138), - [sym_insert_begin] = STATE(1166), - [sym_delete] = STATE(138), - [sym_delete_begin] = STATE(1167), - [sym_hard_line_break] = STATE(138), - [sym__smart_punctuation] = STATE(138), - [sym_autolink] = STATE(138), - [sym_footnote_reference] = STATE(138), - [sym_footnote_marker_begin] = STATE(1168), - [sym__image] = STATE(138), - [sym_full_reference_image] = STATE(138), - [sym_collapsed_reference_image] = STATE(138), - [sym_inline_image] = STATE(138), - [sym__image_description] = STATE(703), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(138), - [sym_full_reference_link] = STATE(138), - [sym_collapsed_reference_link] = STATE(138), - [sym_inline_link] = STATE(138), - [sym_link_text] = STATE(697), - [sym_span] = STATE(572), - [sym__bracketed_text] = STATE(671), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(138), - [sym_raw_inline] = STATE(138), - [sym_math] = STATE(138), - [sym_verbatim] = STATE(138), - [sym__todo_highlights] = STATE(138), - [sym_todo] = STATE(138), - [sym_note] = STATE(138), - [sym__symbol_fallback] = STATE(138), - [aux_sym__text] = STATE(122), - [aux_sym__inline_repeat1] = STATE(120), - [anon_sym_LBRACE_] = ACTIONS(331), - [anon_sym__] = ACTIONS(333), - [anon_sym_LBRACE_STAR] = ACTIONS(335), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_LBRACE_CARET] = ACTIONS(339), - [anon_sym_CARET] = ACTIONS(339), - [anon_sym_LBRACE_TILDE] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_LBRACE_EQ] = ACTIONS(343), - [anon_sym_LBRACE_PLUS] = ACTIONS(345), - [anon_sym_LBRACE_DASH] = ACTIONS(347), - [anon_sym_BSLASH] = ACTIONS(349), - [sym_quotation_marks] = ACTIONS(351), - [sym_ellipsis] = ACTIONS(351), - [sym_em_dash] = ACTIONS(351), - [sym_en_dash] = ACTIONS(353), - [sym_backslash_escape] = ACTIONS(353), - [anon_sym_LT] = ACTIONS(355), - [sym_symbol] = ACTIONS(351), - [anon_sym_LBRACK_CARET] = ACTIONS(357), - [anon_sym_BANG_LBRACK] = ACTIONS(359), - [anon_sym_LBRACK] = ACTIONS(361), - [anon_sym_DOLLAR] = ACTIONS(363), - [anon_sym_TODO] = ACTIONS(365), - [anon_sym_WIP] = ACTIONS(365), - [anon_sym_NOTE] = ACTIONS(367), - [anon_sym_INFO] = ACTIONS(367), - [anon_sym_XXX] = ACTIONS(367), - [sym_fixme] = ACTIONS(351), - [sym__whitespace1] = ACTIONS(369), - [sym__newline] = ACTIONS(371), - [aux_sym__text_token1] = ACTIONS(373), - [sym__verbatim_begin] = ACTIONS(375), + [sym__inline_without_trailing_space] = STATE(1111), + [sym__element] = STATE(623), + [sym_emphasis] = STATE(148), + [sym_emphasis_begin] = STATE(1163), + [sym_strong] = STATE(148), + [sym_strong_begin] = STATE(1164), + [sym_superscript] = STATE(148), + [sym_superscript_begin] = STATE(1165), + [sym_subscript] = STATE(148), + [sym_subscript_begin] = STATE(1166), + [sym_highlighted] = STATE(148), + [sym_highlighted_begin] = STATE(1167), + [sym_insert] = STATE(148), + [sym_insert_begin] = STATE(1168), + [sym_delete] = STATE(148), + [sym_delete_begin] = STATE(1169), + [sym_hard_line_break] = STATE(148), + [sym__smart_punctuation] = STATE(148), + [sym_autolink] = STATE(148), + [sym_footnote_reference] = STATE(148), + [sym_footnote_marker_begin] = STATE(1170), + [sym__image] = STATE(148), + [sym_full_reference_image] = STATE(148), + [sym_collapsed_reference_image] = STATE(148), + [sym_inline_image] = STATE(148), + [sym_image_description] = STATE(712), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(148), + [sym_full_reference_link] = STATE(148), + [sym_collapsed_reference_link] = STATE(148), + [sym_inline_link] = STATE(148), + [sym_link_text] = STATE(713), + [sym_span] = STATE(623), + [sym__bracketed_text_begin] = STATE(1262), + [sym__comment_with_spaces] = STATE(148), + [sym_raw_inline] = STATE(148), + [sym_math] = STATE(148), + [sym_verbatim] = STATE(148), + [sym__todo_highlights] = STATE(148), + [sym_todo] = STATE(148), + [sym_note] = STATE(148), + [sym__symbol_fallback] = STATE(148), + [aux_sym__text] = STATE(136), + [aux_sym__inline_repeat1] = STATE(129), + [anon_sym_LBRACE_] = ACTIONS(402), + [anon_sym__] = ACTIONS(404), + [anon_sym_LBRACE_STAR] = ACTIONS(406), + [anon_sym_STAR] = ACTIONS(408), + [anon_sym_LBRACE_CARET] = ACTIONS(410), + [anon_sym_CARET] = ACTIONS(410), + [anon_sym_LBRACE_TILDE] = ACTIONS(412), + [anon_sym_TILDE] = ACTIONS(412), + [anon_sym_LBRACE_EQ] = ACTIONS(414), + [anon_sym_LBRACE_PLUS] = ACTIONS(416), + [anon_sym_LBRACE_DASH] = ACTIONS(418), + [anon_sym_BSLASH] = ACTIONS(420), + [sym_quotation_marks] = ACTIONS(422), + [sym_ellipsis] = ACTIONS(422), + [sym_em_dash] = ACTIONS(422), + [sym_en_dash] = ACTIONS(424), + [sym_backslash_escape] = ACTIONS(424), + [anon_sym_LT] = ACTIONS(426), + [sym_symbol] = ACTIONS(422), + [anon_sym_LBRACK_CARET] = ACTIONS(428), + [anon_sym_BANG_LBRACK] = ACTIONS(430), + [anon_sym_LBRACK] = ACTIONS(432), + [anon_sym_DOLLAR] = ACTIONS(434), + [anon_sym_TODO] = ACTIONS(436), + [anon_sym_WIP] = ACTIONS(436), + [anon_sym_NOTE] = ACTIONS(438), + [anon_sym_INFO] = ACTIONS(438), + [anon_sym_XXX] = ACTIONS(438), + [sym_fixme] = ACTIONS(422), + [sym__whitespace1] = ACTIONS(440), + [sym__newline] = ACTIONS(442), + [aux_sym__text_token1] = ACTIONS(444), + [sym__verbatim_begin] = ACTIONS(446), }, [51] = { - [sym__inline_without_trailing_space] = STATE(1086), - [sym__element] = STATE(538), - [sym_emphasis] = STATE(141), - [sym_emphasis_begin] = STATE(1153), - [sym_strong] = STATE(141), - [sym_strong_begin] = STATE(1154), - [sym_superscript] = STATE(141), - [sym_superscript_begin] = STATE(1155), - [sym_subscript] = STATE(141), - [sym_subscript_begin] = STATE(1156), - [sym_highlighted] = STATE(141), - [sym_highlighted_begin] = STATE(1157), - [sym_insert] = STATE(141), - [sym_insert_begin] = STATE(1158), - [sym_delete] = STATE(141), - [sym_delete_begin] = STATE(1159), - [sym_hard_line_break] = STATE(141), - [sym__smart_punctuation] = STATE(141), - [sym_autolink] = STATE(141), - [sym_footnote_reference] = STATE(141), - [sym_footnote_marker_begin] = STATE(1160), - [sym__image] = STATE(141), - [sym_full_reference_image] = STATE(141), - [sym_collapsed_reference_image] = STATE(141), - [sym_inline_image] = STATE(141), - [sym__image_description] = STATE(681), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(141), - [sym_full_reference_link] = STATE(141), - [sym_collapsed_reference_link] = STATE(141), - [sym_inline_link] = STATE(141), - [sym_link_text] = STATE(680), - [sym_span] = STATE(538), - [sym__bracketed_text] = STATE(664), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(141), - [sym_raw_inline] = STATE(141), - [sym_math] = STATE(141), - [sym_verbatim] = STATE(141), - [sym__todo_highlights] = STATE(141), - [sym_todo] = STATE(141), - [sym_note] = STATE(141), - [sym__symbol_fallback] = STATE(141), - [aux_sym__text] = STATE(128), - [aux_sym__inline_repeat1] = STATE(119), - [anon_sym_LBRACE_] = ACTIONS(147), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_STAR] = ACTIONS(151), - [anon_sym_STAR] = ACTIONS(153), - [anon_sym_LBRACE_CARET] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_LBRACE_TILDE] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_LBRACE_EQ] = ACTIONS(159), - [anon_sym_LBRACE_PLUS] = ACTIONS(161), - [anon_sym_LBRACE_DASH] = ACTIONS(163), - [anon_sym_BSLASH] = ACTIONS(165), - [sym_quotation_marks] = ACTIONS(167), - [sym_ellipsis] = ACTIONS(167), - [sym_em_dash] = ACTIONS(167), - [sym_en_dash] = ACTIONS(169), - [sym_backslash_escape] = ACTIONS(169), - [anon_sym_LT] = ACTIONS(171), - [sym_symbol] = ACTIONS(167), - [anon_sym_LBRACK_CARET] = ACTIONS(173), - [anon_sym_BANG_LBRACK] = ACTIONS(175), - [anon_sym_LBRACK] = ACTIONS(177), - [anon_sym_DOLLAR] = ACTIONS(179), - [anon_sym_TODO] = ACTIONS(181), - [anon_sym_WIP] = ACTIONS(181), - [anon_sym_NOTE] = ACTIONS(183), - [anon_sym_INFO] = ACTIONS(183), - [anon_sym_XXX] = ACTIONS(183), - [sym_fixme] = ACTIONS(167), - [sym__whitespace1] = ACTIONS(185), - [sym__newline] = ACTIONS(187), - [aux_sym__text_token1] = ACTIONS(189), - [sym__verbatim_begin] = ACTIONS(191), + [sym__inline_without_trailing_space] = STATE(1109), + [sym__element] = STATE(570), + [sym_emphasis] = STATE(152), + [sym_emphasis_begin] = STATE(1172), + [sym_strong] = STATE(152), + [sym_strong_begin] = STATE(1173), + [sym_superscript] = STATE(152), + [sym_superscript_begin] = STATE(1174), + [sym_subscript] = STATE(152), + [sym_subscript_begin] = STATE(1175), + [sym_highlighted] = STATE(152), + [sym_highlighted_begin] = STATE(1176), + [sym_insert] = STATE(152), + [sym_insert_begin] = STATE(1177), + [sym_delete] = STATE(152), + [sym_delete_begin] = STATE(1178), + [sym_hard_line_break] = STATE(152), + [sym__smart_punctuation] = STATE(152), + [sym_autolink] = STATE(152), + [sym_footnote_reference] = STATE(152), + [sym_footnote_marker_begin] = STATE(1179), + [sym__image] = STATE(152), + [sym_full_reference_image] = STATE(152), + [sym_collapsed_reference_image] = STATE(152), + [sym_inline_image] = STATE(152), + [sym_image_description] = STATE(704), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(152), + [sym_full_reference_link] = STATE(152), + [sym_collapsed_reference_link] = STATE(152), + [sym_inline_link] = STATE(152), + [sym_link_text] = STATE(706), + [sym_span] = STATE(570), + [sym__bracketed_text_begin] = STATE(1263), + [sym__comment_with_spaces] = STATE(152), + [sym_raw_inline] = STATE(152), + [sym_math] = STATE(152), + [sym_verbatim] = STATE(152), + [sym__todo_highlights] = STATE(152), + [sym_todo] = STATE(152), + [sym_note] = STATE(152), + [sym__symbol_fallback] = STATE(152), + [aux_sym__text] = STATE(133), + [aux_sym__inline_repeat1] = STATE(130), + [anon_sym_LBRACE_] = ACTIONS(448), + [anon_sym__] = ACTIONS(450), + [anon_sym_LBRACE_STAR] = ACTIONS(452), + [anon_sym_STAR] = ACTIONS(454), + [anon_sym_LBRACE_CARET] = ACTIONS(456), + [anon_sym_CARET] = ACTIONS(456), + [anon_sym_LBRACE_TILDE] = ACTIONS(458), + [anon_sym_TILDE] = ACTIONS(458), + [anon_sym_LBRACE_EQ] = ACTIONS(460), + [anon_sym_LBRACE_PLUS] = ACTIONS(462), + [anon_sym_LBRACE_DASH] = ACTIONS(464), + [anon_sym_BSLASH] = ACTIONS(466), + [sym_quotation_marks] = ACTIONS(468), + [sym_ellipsis] = ACTIONS(468), + [sym_em_dash] = ACTIONS(468), + [sym_en_dash] = ACTIONS(470), + [sym_backslash_escape] = ACTIONS(470), + [anon_sym_LT] = ACTIONS(472), + [sym_symbol] = ACTIONS(468), + [anon_sym_LBRACK_CARET] = ACTIONS(474), + [anon_sym_BANG_LBRACK] = ACTIONS(476), + [anon_sym_LBRACK] = ACTIONS(478), + [anon_sym_DOLLAR] = ACTIONS(480), + [anon_sym_TODO] = ACTIONS(482), + [anon_sym_WIP] = ACTIONS(482), + [anon_sym_NOTE] = ACTIONS(484), + [anon_sym_INFO] = ACTIONS(484), + [anon_sym_XXX] = ACTIONS(484), + [sym_fixme] = ACTIONS(468), + [sym__whitespace1] = ACTIONS(486), + [sym__newline] = ACTIONS(488), + [aux_sym__text_token1] = ACTIONS(490), + [sym__verbatim_begin] = ACTIONS(492), }, [52] = { - [sym__inline_without_trailing_space] = STATE(1085), - [sym__element] = STATE(572), - [sym_emphasis] = STATE(138), - [sym_emphasis_begin] = STATE(1161), - [sym_strong] = STATE(138), - [sym_strong_begin] = STATE(1162), - [sym_superscript] = STATE(138), - [sym_superscript_begin] = STATE(1163), - [sym_subscript] = STATE(138), - [sym_subscript_begin] = STATE(1164), - [sym_highlighted] = STATE(138), - [sym_highlighted_begin] = STATE(1165), - [sym_insert] = STATE(138), - [sym_insert_begin] = STATE(1166), - [sym_delete] = STATE(138), - [sym_delete_begin] = STATE(1167), - [sym_hard_line_break] = STATE(138), - [sym__smart_punctuation] = STATE(138), - [sym_autolink] = STATE(138), - [sym_footnote_reference] = STATE(138), - [sym_footnote_marker_begin] = STATE(1168), - [sym__image] = STATE(138), - [sym_full_reference_image] = STATE(138), - [sym_collapsed_reference_image] = STATE(138), - [sym_inline_image] = STATE(138), - [sym__image_description] = STATE(703), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(138), - [sym_full_reference_link] = STATE(138), - [sym_collapsed_reference_link] = STATE(138), - [sym_inline_link] = STATE(138), - [sym_link_text] = STATE(697), - [sym_span] = STATE(572), - [sym__bracketed_text] = STATE(671), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(138), - [sym_raw_inline] = STATE(138), - [sym_math] = STATE(138), - [sym_verbatim] = STATE(138), - [sym__todo_highlights] = STATE(138), - [sym_todo] = STATE(138), - [sym_note] = STATE(138), - [sym__symbol_fallback] = STATE(138), - [aux_sym__text] = STATE(122), - [aux_sym__inline_repeat1] = STATE(120), - [anon_sym_LBRACE_] = ACTIONS(331), - [anon_sym__] = ACTIONS(333), - [anon_sym_LBRACE_STAR] = ACTIONS(335), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_LBRACE_CARET] = ACTIONS(339), - [anon_sym_CARET] = ACTIONS(339), - [anon_sym_LBRACE_TILDE] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_LBRACE_EQ] = ACTIONS(343), - [anon_sym_LBRACE_PLUS] = ACTIONS(345), - [anon_sym_LBRACE_DASH] = ACTIONS(347), - [anon_sym_BSLASH] = ACTIONS(349), - [sym_quotation_marks] = ACTIONS(351), - [sym_ellipsis] = ACTIONS(351), - [sym_em_dash] = ACTIONS(351), - [sym_en_dash] = ACTIONS(353), - [sym_backslash_escape] = ACTIONS(353), - [anon_sym_LT] = ACTIONS(355), - [sym_symbol] = ACTIONS(351), - [anon_sym_LBRACK_CARET] = ACTIONS(357), - [anon_sym_BANG_LBRACK] = ACTIONS(359), - [anon_sym_LBRACK] = ACTIONS(361), - [anon_sym_DOLLAR] = ACTIONS(363), - [anon_sym_TODO] = ACTIONS(365), - [anon_sym_WIP] = ACTIONS(365), - [anon_sym_NOTE] = ACTIONS(367), - [anon_sym_INFO] = ACTIONS(367), - [anon_sym_XXX] = ACTIONS(367), - [sym_fixme] = ACTIONS(351), - [sym__whitespace1] = ACTIONS(369), - [sym__newline] = ACTIONS(371), - [aux_sym__text_token1] = ACTIONS(373), - [sym__verbatim_begin] = ACTIONS(375), + [sym__inline] = STATE(1108), + [sym__element] = STATE(124), + [sym_emphasis] = STATE(151), + [sym_emphasis_begin] = STATE(1181), + [sym_strong] = STATE(151), + [sym_strong_begin] = STATE(1182), + [sym_superscript] = STATE(151), + [sym_superscript_begin] = STATE(1183), + [sym_subscript] = STATE(151), + [sym_subscript_begin] = STATE(1184), + [sym_highlighted] = STATE(151), + [sym_highlighted_begin] = STATE(1185), + [sym_insert] = STATE(151), + [sym_insert_begin] = STATE(1186), + [sym_delete] = STATE(151), + [sym_delete_begin] = STATE(1187), + [sym_hard_line_break] = STATE(151), + [sym__smart_punctuation] = STATE(151), + [sym_autolink] = STATE(151), + [sym_footnote_reference] = STATE(151), + [sym_footnote_marker_begin] = STATE(1188), + [sym__image] = STATE(151), + [sym_full_reference_image] = STATE(151), + [sym_collapsed_reference_image] = STATE(151), + [sym_inline_image] = STATE(151), + [sym_image_description] = STATE(700), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(151), + [sym_full_reference_link] = STATE(151), + [sym_collapsed_reference_link] = STATE(151), + [sym_inline_link] = STATE(151), + [sym_link_text] = STATE(701), + [sym_span] = STATE(124), + [sym__bracketed_text_begin] = STATE(1264), + [sym__comment_with_spaces] = STATE(151), + [sym_raw_inline] = STATE(151), + [sym_math] = STATE(151), + [sym_verbatim] = STATE(151), + [sym__todo_highlights] = STATE(151), + [sym_todo] = STATE(151), + [sym_note] = STATE(151), + [sym__symbol_fallback] = STATE(151), + [aux_sym__text] = STATE(140), + [aux_sym__inline_repeat1] = STATE(124), + [anon_sym_LBRACE_] = ACTIONS(143), + [anon_sym__] = ACTIONS(145), + [anon_sym_LBRACE_STAR] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(149), + [anon_sym_LBRACE_CARET] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(151), + [anon_sym_LBRACE_TILDE] = ACTIONS(153), + [anon_sym_TILDE] = ACTIONS(153), + [anon_sym_LBRACE_EQ] = ACTIONS(155), + [anon_sym_LBRACE_PLUS] = ACTIONS(157), + [anon_sym_LBRACE_DASH] = ACTIONS(159), + [anon_sym_BSLASH] = ACTIONS(161), + [sym_quotation_marks] = ACTIONS(163), + [sym_ellipsis] = ACTIONS(163), + [sym_em_dash] = ACTIONS(163), + [sym_en_dash] = ACTIONS(165), + [sym_backslash_escape] = ACTIONS(165), + [anon_sym_LT] = ACTIONS(167), + [sym_symbol] = ACTIONS(163), + [anon_sym_LBRACK_CARET] = ACTIONS(169), + [anon_sym_BANG_LBRACK] = ACTIONS(171), + [anon_sym_LBRACK] = ACTIONS(173), + [anon_sym_DOLLAR] = ACTIONS(175), + [anon_sym_TODO] = ACTIONS(177), + [anon_sym_WIP] = ACTIONS(177), + [anon_sym_NOTE] = ACTIONS(179), + [anon_sym_INFO] = ACTIONS(179), + [anon_sym_XXX] = ACTIONS(179), + [sym_fixme] = ACTIONS(163), + [sym__whitespace1] = ACTIONS(181), + [sym__newline] = ACTIONS(183), + [aux_sym__text_token1] = ACTIONS(185), + [sym__verbatim_begin] = ACTIONS(187), }, [53] = { - [sym__inline] = STATE(1084), - [sym__element] = STATE(82), - [sym_emphasis] = STATE(143), - [sym_emphasis_begin] = STATE(1169), - [sym_strong] = STATE(143), - [sym_strong_begin] = STATE(1170), - [sym_superscript] = STATE(143), - [sym_superscript_begin] = STATE(1171), - [sym_subscript] = STATE(143), - [sym_subscript_begin] = STATE(1172), - [sym_highlighted] = STATE(143), - [sym_highlighted_begin] = STATE(1173), - [sym_insert] = STATE(143), - [sym_insert_begin] = STATE(1174), - [sym_delete] = STATE(143), - [sym_delete_begin] = STATE(1175), - [sym_hard_line_break] = STATE(143), - [sym__smart_punctuation] = STATE(143), - [sym_autolink] = STATE(143), - [sym_footnote_reference] = STATE(143), - [sym_footnote_marker_begin] = STATE(1176), - [sym__image] = STATE(143), - [sym_full_reference_image] = STATE(143), - [sym_collapsed_reference_image] = STATE(143), - [sym_inline_image] = STATE(143), - [sym__image_description] = STATE(701), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(143), - [sym_full_reference_link] = STATE(143), - [sym_collapsed_reference_link] = STATE(143), - [sym_inline_link] = STATE(143), - [sym_link_text] = STATE(702), - [sym_span] = STATE(82), - [sym__bracketed_text] = STATE(667), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(143), - [sym_raw_inline] = STATE(143), - [sym_math] = STATE(143), - [sym_verbatim] = STATE(143), - [sym__todo_highlights] = STATE(143), - [sym_todo] = STATE(143), - [sym_note] = STATE(143), - [sym__symbol_fallback] = STATE(143), - [aux_sym__text] = STATE(126), - [aux_sym__inline_repeat1] = STATE(82), - [anon_sym_LBRACE_] = ACTIONS(285), - [anon_sym__] = ACTIONS(287), - [anon_sym_LBRACE_STAR] = ACTIONS(289), - [anon_sym_STAR] = ACTIONS(291), - [anon_sym_LBRACE_CARET] = ACTIONS(293), - [anon_sym_CARET] = ACTIONS(293), - [anon_sym_LBRACE_TILDE] = ACTIONS(295), - [anon_sym_TILDE] = ACTIONS(295), - [anon_sym_LBRACE_EQ] = ACTIONS(297), - [anon_sym_LBRACE_PLUS] = ACTIONS(299), - [anon_sym_LBRACE_DASH] = ACTIONS(301), - [anon_sym_BSLASH] = ACTIONS(303), - [sym_quotation_marks] = ACTIONS(305), - [sym_ellipsis] = ACTIONS(305), - [sym_em_dash] = ACTIONS(305), - [sym_en_dash] = ACTIONS(307), - [sym_backslash_escape] = ACTIONS(307), - [anon_sym_LT] = ACTIONS(309), - [sym_symbol] = ACTIONS(305), - [anon_sym_LBRACK_CARET] = ACTIONS(311), - [anon_sym_BANG_LBRACK] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_DOLLAR] = ACTIONS(317), - [anon_sym_TODO] = ACTIONS(319), - [anon_sym_WIP] = ACTIONS(319), - [anon_sym_NOTE] = ACTIONS(321), - [anon_sym_INFO] = ACTIONS(321), - [anon_sym_XXX] = ACTIONS(321), - [sym_fixme] = ACTIONS(305), - [sym__whitespace1] = ACTIONS(323), - [sym__newline] = ACTIONS(325), - [aux_sym__text_token1] = ACTIONS(327), - [sym__verbatim_begin] = ACTIONS(329), + [sym__inline] = STATE(1107), + [sym__element] = STATE(80), + [sym_emphasis] = STATE(145), + [sym_emphasis_begin] = STATE(1190), + [sym_strong] = STATE(145), + [sym_strong_begin] = STATE(1191), + [sym_superscript] = STATE(145), + [sym_superscript_begin] = STATE(1192), + [sym_subscript] = STATE(145), + [sym_subscript_begin] = STATE(1193), + [sym_highlighted] = STATE(145), + [sym_highlighted_begin] = STATE(1194), + [sym_insert] = STATE(145), + [sym_insert_begin] = STATE(1195), + [sym_delete] = STATE(145), + [sym_delete_begin] = STATE(1196), + [sym_hard_line_break] = STATE(145), + [sym__smart_punctuation] = STATE(145), + [sym_autolink] = STATE(145), + [sym_footnote_reference] = STATE(145), + [sym_footnote_marker_begin] = STATE(1197), + [sym__image] = STATE(145), + [sym_full_reference_image] = STATE(145), + [sym_collapsed_reference_image] = STATE(145), + [sym_inline_image] = STATE(145), + [sym_image_description] = STATE(696), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(145), + [sym_full_reference_link] = STATE(145), + [sym_collapsed_reference_link] = STATE(145), + [sym_inline_link] = STATE(145), + [sym_link_text] = STATE(691), + [sym_span] = STATE(80), + [sym__bracketed_text_begin] = STATE(1265), + [sym__comment_with_spaces] = STATE(145), + [sym_raw_inline] = STATE(145), + [sym_math] = STATE(145), + [sym_verbatim] = STATE(145), + [sym__todo_highlights] = STATE(145), + [sym_todo] = STATE(145), + [sym_note] = STATE(145), + [sym__symbol_fallback] = STATE(145), + [aux_sym__text] = STATE(138), + [aux_sym__inline_repeat1] = STATE(80), + [anon_sym_LBRACE_] = ACTIONS(542), + [anon_sym__] = ACTIONS(544), + [anon_sym_LBRACE_STAR] = ACTIONS(546), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE_CARET] = ACTIONS(550), + [anon_sym_CARET] = ACTIONS(550), + [anon_sym_LBRACE_TILDE] = ACTIONS(552), + [anon_sym_TILDE] = ACTIONS(552), + [anon_sym_LBRACE_EQ] = ACTIONS(554), + [anon_sym_LBRACE_PLUS] = ACTIONS(556), + [anon_sym_LBRACE_DASH] = ACTIONS(558), + [anon_sym_BSLASH] = ACTIONS(560), + [sym_quotation_marks] = ACTIONS(562), + [sym_ellipsis] = ACTIONS(562), + [sym_em_dash] = ACTIONS(562), + [sym_en_dash] = ACTIONS(564), + [sym_backslash_escape] = ACTIONS(564), + [anon_sym_LT] = ACTIONS(566), + [sym_symbol] = ACTIONS(562), + [anon_sym_LBRACK_CARET] = ACTIONS(568), + [anon_sym_BANG_LBRACK] = ACTIONS(570), + [anon_sym_LBRACK] = ACTIONS(572), + [anon_sym_DOLLAR] = ACTIONS(574), + [anon_sym_TODO] = ACTIONS(576), + [anon_sym_WIP] = ACTIONS(576), + [anon_sym_NOTE] = ACTIONS(578), + [anon_sym_INFO] = ACTIONS(578), + [anon_sym_XXX] = ACTIONS(578), + [sym_fixme] = ACTIONS(562), + [sym__whitespace1] = ACTIONS(580), + [sym__newline] = ACTIONS(582), + [aux_sym__text_token1] = ACTIONS(584), + [sym__verbatim_begin] = ACTIONS(586), }, [54] = { - [sym__inline] = STATE(1083), - [sym__element] = STATE(72), - [sym_emphasis] = STATE(135), - [sym_emphasis_begin] = STATE(1177), - [sym_strong] = STATE(135), - [sym_strong_begin] = STATE(1178), - [sym_superscript] = STATE(135), - [sym_superscript_begin] = STATE(1179), - [sym_subscript] = STATE(135), - [sym_subscript_begin] = STATE(1180), - [sym_highlighted] = STATE(135), - [sym_highlighted_begin] = STATE(1181), - [sym_insert] = STATE(135), - [sym_insert_begin] = STATE(1182), - [sym_delete] = STATE(135), - [sym_delete_begin] = STATE(1183), - [sym_hard_line_break] = STATE(135), - [sym__smart_punctuation] = STATE(135), - [sym_autolink] = STATE(135), - [sym_footnote_reference] = STATE(135), - [sym_footnote_marker_begin] = STATE(1184), - [sym__image] = STATE(135), - [sym_full_reference_image] = STATE(135), - [sym_collapsed_reference_image] = STATE(135), - [sym_inline_image] = STATE(135), - [sym__image_description] = STATE(687), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(135), - [sym_full_reference_link] = STATE(135), - [sym_collapsed_reference_link] = STATE(135), - [sym_inline_link] = STATE(135), - [sym_link_text] = STATE(684), - [sym_span] = STATE(72), - [sym__bracketed_text] = STATE(670), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(135), - [sym_raw_inline] = STATE(135), - [sym_math] = STATE(135), - [sym_verbatim] = STATE(135), - [sym__todo_highlights] = STATE(135), - [sym_todo] = STATE(135), - [sym_note] = STATE(135), - [sym__symbol_fallback] = STATE(135), - [aux_sym__text] = STATE(124), - [aux_sym__inline_repeat1] = STATE(72), - [anon_sym_LBRACE_] = ACTIONS(239), - [anon_sym__] = ACTIONS(241), - [anon_sym_LBRACE_STAR] = ACTIONS(243), - [anon_sym_STAR] = ACTIONS(245), - [anon_sym_LBRACE_CARET] = ACTIONS(247), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_LBRACE_TILDE] = ACTIONS(249), - [anon_sym_TILDE] = ACTIONS(249), - [anon_sym_LBRACE_EQ] = ACTIONS(251), - [anon_sym_LBRACE_PLUS] = ACTIONS(253), - [anon_sym_LBRACE_DASH] = ACTIONS(255), - [anon_sym_BSLASH] = ACTIONS(257), - [sym_quotation_marks] = ACTIONS(259), - [sym_ellipsis] = ACTIONS(259), - [sym_em_dash] = ACTIONS(259), - [sym_en_dash] = ACTIONS(261), - [sym_backslash_escape] = ACTIONS(261), - [anon_sym_LT] = ACTIONS(263), - [sym_symbol] = ACTIONS(259), - [anon_sym_LBRACK_CARET] = ACTIONS(265), - [anon_sym_BANG_LBRACK] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(269), - [anon_sym_DOLLAR] = ACTIONS(271), - [anon_sym_TODO] = ACTIONS(273), - [anon_sym_WIP] = ACTIONS(273), - [anon_sym_NOTE] = ACTIONS(275), - [anon_sym_INFO] = ACTIONS(275), - [anon_sym_XXX] = ACTIONS(275), - [sym_fixme] = ACTIONS(259), - [sym__whitespace1] = ACTIONS(277), - [sym__newline] = ACTIONS(279), - [aux_sym__text_token1] = ACTIONS(281), - [sym__verbatim_begin] = ACTIONS(283), + [sym__inline] = STATE(1106), + [sym__element] = STATE(21), + [sym_emphasis] = STATE(149), + [sym_emphasis_begin] = STATE(1199), + [sym_strong] = STATE(149), + [sym_strong_begin] = STATE(1200), + [sym_superscript] = STATE(149), + [sym_superscript_begin] = STATE(1201), + [sym_subscript] = STATE(149), + [sym_subscript_begin] = STATE(1202), + [sym_highlighted] = STATE(149), + [sym_highlighted_begin] = STATE(1203), + [sym_insert] = STATE(149), + [sym_insert_begin] = STATE(1204), + [sym_delete] = STATE(149), + [sym_delete_begin] = STATE(1205), + [sym_hard_line_break] = STATE(149), + [sym__smart_punctuation] = STATE(149), + [sym_autolink] = STATE(149), + [sym_footnote_reference] = STATE(149), + [sym_footnote_marker_begin] = STATE(1206), + [sym__image] = STATE(149), + [sym_full_reference_image] = STATE(149), + [sym_collapsed_reference_image] = STATE(149), + [sym_inline_image] = STATE(149), + [sym_image_description] = STATE(714), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(149), + [sym_full_reference_link] = STATE(149), + [sym_collapsed_reference_link] = STATE(149), + [sym_inline_link] = STATE(149), + [sym_link_text] = STATE(710), + [sym_span] = STATE(21), + [sym__bracketed_text_begin] = STATE(1266), + [sym__comment_with_spaces] = STATE(149), + [sym_raw_inline] = STATE(149), + [sym_math] = STATE(149), + [sym_verbatim] = STATE(149), + [sym__todo_highlights] = STATE(149), + [sym_todo] = STATE(149), + [sym_note] = STATE(149), + [sym__symbol_fallback] = STATE(149), + [aux_sym__text] = STATE(142), + [aux_sym__inline_repeat1] = STATE(21), + [anon_sym_LBRACE_] = ACTIONS(494), + [anon_sym__] = ACTIONS(496), + [anon_sym_LBRACE_STAR] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(500), + [anon_sym_LBRACE_CARET] = ACTIONS(502), + [anon_sym_CARET] = ACTIONS(502), + [anon_sym_LBRACE_TILDE] = ACTIONS(504), + [anon_sym_TILDE] = ACTIONS(504), + [anon_sym_LBRACE_EQ] = ACTIONS(506), + [anon_sym_LBRACE_PLUS] = ACTIONS(508), + [anon_sym_LBRACE_DASH] = ACTIONS(510), + [anon_sym_BSLASH] = ACTIONS(512), + [sym_quotation_marks] = ACTIONS(514), + [sym_ellipsis] = ACTIONS(514), + [sym_em_dash] = ACTIONS(514), + [sym_en_dash] = ACTIONS(516), + [sym_backslash_escape] = ACTIONS(516), + [anon_sym_LT] = ACTIONS(518), + [sym_symbol] = ACTIONS(514), + [anon_sym_LBRACK_CARET] = ACTIONS(520), + [anon_sym_BANG_LBRACK] = ACTIONS(522), + [anon_sym_LBRACK] = ACTIONS(524), + [anon_sym_DOLLAR] = ACTIONS(526), + [anon_sym_TODO] = ACTIONS(528), + [anon_sym_WIP] = ACTIONS(528), + [anon_sym_NOTE] = ACTIONS(530), + [anon_sym_INFO] = ACTIONS(530), + [anon_sym_XXX] = ACTIONS(530), + [sym_fixme] = ACTIONS(514), + [sym__whitespace1] = ACTIONS(532), + [sym__newline] = ACTIONS(540), + [aux_sym__text_token1] = ACTIONS(536), + [sym__verbatim_begin] = ACTIONS(538), }, [55] = { - [sym__inline] = STATE(1082), - [sym__element] = STATE(107), - [sym_emphasis] = STATE(140), - [sym_emphasis_begin] = STATE(1185), - [sym_strong] = STATE(140), - [sym_strong_begin] = STATE(1186), - [sym_superscript] = STATE(140), - [sym_superscript_begin] = STATE(1187), - [sym_subscript] = STATE(140), - [sym_subscript_begin] = STATE(1188), - [sym_highlighted] = STATE(140), - [sym_highlighted_begin] = STATE(1189), - [sym_insert] = STATE(140), - [sym_insert_begin] = STATE(1190), - [sym_delete] = STATE(140), - [sym_delete_begin] = STATE(1191), - [sym_hard_line_break] = STATE(140), - [sym__smart_punctuation] = STATE(140), - [sym_autolink] = STATE(140), - [sym_footnote_reference] = STATE(140), - [sym_footnote_marker_begin] = STATE(1192), - [sym__image] = STATE(140), - [sym_full_reference_image] = STATE(140), - [sym_collapsed_reference_image] = STATE(140), - [sym_inline_image] = STATE(140), - [sym__image_description] = STATE(700), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(140), - [sym_full_reference_link] = STATE(140), - [sym_collapsed_reference_link] = STATE(140), - [sym_inline_link] = STATE(140), - [sym_link_text] = STATE(699), - [sym_span] = STATE(107), - [sym__bracketed_text] = STATE(666), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(140), - [sym_raw_inline] = STATE(140), - [sym_math] = STATE(140), - [sym_verbatim] = STATE(140), - [sym__todo_highlights] = STATE(140), - [sym_todo] = STATE(140), - [sym_note] = STATE(140), - [sym__symbol_fallback] = STATE(140), - [aux_sym__text] = STATE(125), - [aux_sym__inline_repeat1] = STATE(107), - [anon_sym_LBRACE_] = ACTIONS(193), - [anon_sym__] = ACTIONS(195), - [anon_sym_LBRACE_STAR] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(199), - [anon_sym_LBRACE_CARET] = ACTIONS(201), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_LBRACE_TILDE] = ACTIONS(203), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_LBRACE_EQ] = ACTIONS(205), - [anon_sym_LBRACE_PLUS] = ACTIONS(207), - [anon_sym_LBRACE_DASH] = ACTIONS(209), - [anon_sym_BSLASH] = ACTIONS(211), - [sym_quotation_marks] = ACTIONS(213), - [sym_ellipsis] = ACTIONS(213), - [sym_em_dash] = ACTIONS(213), - [sym_en_dash] = ACTIONS(215), - [sym_backslash_escape] = ACTIONS(215), - [anon_sym_LT] = ACTIONS(217), - [sym_symbol] = ACTIONS(213), - [anon_sym_LBRACK_CARET] = ACTIONS(219), - [anon_sym_BANG_LBRACK] = ACTIONS(221), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_DOLLAR] = ACTIONS(225), - [anon_sym_TODO] = ACTIONS(227), - [anon_sym_WIP] = ACTIONS(227), - [anon_sym_NOTE] = ACTIONS(229), - [anon_sym_INFO] = ACTIONS(229), - [anon_sym_XXX] = ACTIONS(229), - [sym_fixme] = ACTIONS(213), - [sym__whitespace1] = ACTIONS(231), - [sym__newline] = ACTIONS(233), - [aux_sym__text_token1] = ACTIONS(235), - [sym__verbatim_begin] = ACTIONS(237), - }, - [56] = { - [sym__inline] = STATE(1075), - [sym__element] = STATE(3), - [sym_emphasis] = STATE(137), - [sym_emphasis_begin] = STATE(1193), - [sym_strong] = STATE(137), - [sym_strong_begin] = STATE(1194), - [sym_superscript] = STATE(137), - [sym_superscript_begin] = STATE(1195), - [sym_subscript] = STATE(137), - [sym_subscript_begin] = STATE(1196), - [sym_highlighted] = STATE(137), - [sym_highlighted_begin] = STATE(1197), - [sym_insert] = STATE(137), - [sym_insert_begin] = STATE(1198), - [sym_delete] = STATE(137), - [sym_delete_begin] = STATE(1199), - [sym_hard_line_break] = STATE(137), - [sym__smart_punctuation] = STATE(137), - [sym_autolink] = STATE(137), - [sym_footnote_reference] = STATE(137), - [sym_footnote_marker_begin] = STATE(1200), - [sym__image] = STATE(137), - [sym_full_reference_image] = STATE(137), - [sym_collapsed_reference_image] = STATE(137), - [sym_inline_image] = STATE(137), - [sym__image_description] = STATE(694), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(137), - [sym_full_reference_link] = STATE(137), - [sym_collapsed_reference_link] = STATE(137), - [sym_inline_link] = STATE(137), - [sym_link_text] = STATE(693), - [sym_span] = STATE(3), - [sym__bracketed_text] = STATE(672), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(137), - [sym_raw_inline] = STATE(137), - [sym_math] = STATE(137), - [sym_verbatim] = STATE(137), - [sym__todo_highlights] = STATE(137), - [sym_todo] = STATE(137), - [sym_note] = STATE(137), - [sym__symbol_fallback] = STATE(137), - [aux_sym__text] = STATE(131), - [aux_sym__inline_repeat1] = STATE(3), + [sym__inline] = STATE(1105), + [sym__element] = STATE(7), + [sym_emphasis] = STATE(153), + [sym_emphasis_begin] = STATE(1208), + [sym_strong] = STATE(153), + [sym_strong_begin] = STATE(1209), + [sym_superscript] = STATE(153), + [sym_superscript_begin] = STATE(1210), + [sym_subscript] = STATE(153), + [sym_subscript_begin] = STATE(1211), + [sym_highlighted] = STATE(153), + [sym_highlighted_begin] = STATE(1212), + [sym_insert] = STATE(153), + [sym_insert_begin] = STATE(1213), + [sym_delete] = STATE(153), + [sym_delete_begin] = STATE(1214), + [sym_hard_line_break] = STATE(153), + [sym__smart_punctuation] = STATE(153), + [sym_autolink] = STATE(153), + [sym_footnote_reference] = STATE(153), + [sym_footnote_marker_begin] = STATE(1215), + [sym__image] = STATE(153), + [sym_full_reference_image] = STATE(153), + [sym_collapsed_reference_image] = STATE(153), + [sym_inline_image] = STATE(153), + [sym_image_description] = STATE(707), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(153), + [sym_full_reference_link] = STATE(153), + [sym_collapsed_reference_link] = STATE(153), + [sym_inline_link] = STATE(153), + [sym_link_text] = STATE(705), + [sym_span] = STATE(7), + [sym__bracketed_text_begin] = STATE(1267), + [sym__comment_with_spaces] = STATE(153), + [sym_raw_inline] = STATE(153), + [sym_math] = STATE(153), + [sym_verbatim] = STATE(153), + [sym__todo_highlights] = STATE(153), + [sym_todo] = STATE(153), + [sym_note] = STATE(153), + [sym__symbol_fallback] = STATE(153), + [aux_sym__text] = STATE(134), + [aux_sym__inline_repeat1] = STATE(7), [anon_sym_LBRACE_] = ACTIONS(97), [anon_sym__] = ACTIONS(99), [anon_sym_LBRACE_STAR] = ACTIONS(101), @@ -9735,776 +9657,845 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_XXX] = ACTIONS(133), [sym_fixme] = ACTIONS(117), [sym__whitespace1] = ACTIONS(135), - [sym__newline] = ACTIONS(145), + [sym__newline] = ACTIONS(137), [aux_sym__text_token1] = ACTIONS(139), [sym__verbatim_begin] = ACTIONS(141), }, + [56] = { + [sym__inline] = STATE(1104), + [sym__element] = STATE(46), + [sym_emphasis] = STATE(147), + [sym_emphasis_begin] = STATE(1217), + [sym_strong] = STATE(147), + [sym_strong_begin] = STATE(1218), + [sym_superscript] = STATE(147), + [sym_superscript_begin] = STATE(1219), + [sym_subscript] = STATE(147), + [sym_subscript_begin] = STATE(1220), + [sym_highlighted] = STATE(147), + [sym_highlighted_begin] = STATE(1221), + [sym_insert] = STATE(147), + [sym_insert_begin] = STATE(1222), + [sym_delete] = STATE(147), + [sym_delete_begin] = STATE(1223), + [sym_hard_line_break] = STATE(147), + [sym__smart_punctuation] = STATE(147), + [sym_autolink] = STATE(147), + [sym_footnote_reference] = STATE(147), + [sym_footnote_marker_begin] = STATE(1224), + [sym__image] = STATE(147), + [sym_full_reference_image] = STATE(147), + [sym_collapsed_reference_image] = STATE(147), + [sym_inline_image] = STATE(147), + [sym_image_description] = STATE(699), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(147), + [sym_full_reference_link] = STATE(147), + [sym_collapsed_reference_link] = STATE(147), + [sym_inline_link] = STATE(147), + [sym_link_text] = STATE(698), + [sym_span] = STATE(46), + [sym__bracketed_text_begin] = STATE(1268), + [sym__comment_with_spaces] = STATE(147), + [sym_raw_inline] = STATE(147), + [sym_math] = STATE(147), + [sym_verbatim] = STATE(147), + [sym__todo_highlights] = STATE(147), + [sym_todo] = STATE(147), + [sym_note] = STATE(147), + [sym__symbol_fallback] = STATE(147), + [aux_sym__text] = STATE(132), + [aux_sym__inline_repeat1] = STATE(46), + [anon_sym_LBRACE_] = ACTIONS(189), + [anon_sym__] = ACTIONS(191), + [anon_sym_LBRACE_STAR] = ACTIONS(193), + [anon_sym_STAR] = ACTIONS(195), + [anon_sym_LBRACE_CARET] = ACTIONS(197), + [anon_sym_CARET] = ACTIONS(197), + [anon_sym_LBRACE_TILDE] = ACTIONS(199), + [anon_sym_TILDE] = ACTIONS(199), + [anon_sym_LBRACE_EQ] = ACTIONS(201), + [anon_sym_LBRACE_PLUS] = ACTIONS(203), + [anon_sym_LBRACE_DASH] = ACTIONS(205), + [anon_sym_BSLASH] = ACTIONS(207), + [sym_quotation_marks] = ACTIONS(209), + [sym_ellipsis] = ACTIONS(209), + [sym_em_dash] = ACTIONS(209), + [sym_en_dash] = ACTIONS(211), + [sym_backslash_escape] = ACTIONS(211), + [anon_sym_LT] = ACTIONS(213), + [sym_symbol] = ACTIONS(209), + [anon_sym_LBRACK_CARET] = ACTIONS(215), + [anon_sym_BANG_LBRACK] = ACTIONS(217), + [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_DOLLAR] = ACTIONS(221), + [anon_sym_TODO] = ACTIONS(223), + [anon_sym_WIP] = ACTIONS(223), + [anon_sym_NOTE] = ACTIONS(225), + [anon_sym_INFO] = ACTIONS(225), + [anon_sym_XXX] = ACTIONS(225), + [sym_fixme] = ACTIONS(209), + [sym__whitespace1] = ACTIONS(227), + [sym__newline] = ACTIONS(229), + [aux_sym__text_token1] = ACTIONS(231), + [sym__verbatim_begin] = ACTIONS(233), + }, [57] = { - [sym__inline] = STATE(1073), - [sym__element] = STATE(14), - [sym_emphasis] = STATE(133), - [sym_emphasis_begin] = STATE(1201), - [sym_strong] = STATE(133), - [sym_strong_begin] = STATE(1202), - [sym_superscript] = STATE(133), - [sym_superscript_begin] = STATE(1203), - [sym_subscript] = STATE(133), - [sym_subscript_begin] = STATE(1204), - [sym_highlighted] = STATE(133), - [sym_highlighted_begin] = STATE(1205), - [sym_insert] = STATE(133), - [sym_insert_begin] = STATE(1206), - [sym_delete] = STATE(133), - [sym_delete_begin] = STATE(1207), - [sym_hard_line_break] = STATE(133), - [sym__smart_punctuation] = STATE(133), - [sym_autolink] = STATE(133), - [sym_footnote_reference] = STATE(133), - [sym_footnote_marker_begin] = STATE(1208), - [sym__image] = STATE(133), - [sym_full_reference_image] = STATE(133), - [sym_collapsed_reference_image] = STATE(133), - [sym_inline_image] = STATE(133), - [sym__image_description] = STATE(688), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(133), - [sym_full_reference_link] = STATE(133), - [sym_collapsed_reference_link] = STATE(133), - [sym_inline_link] = STATE(133), - [sym_link_text] = STATE(686), - [sym_span] = STATE(14), - [sym__bracketed_text] = STATE(673), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(133), - [sym_raw_inline] = STATE(133), - [sym_math] = STATE(133), - [sym_verbatim] = STATE(133), - [sym__todo_highlights] = STATE(133), - [sym_todo] = STATE(133), - [sym_note] = STATE(133), - [sym__symbol_fallback] = STATE(133), - [aux_sym__text] = STATE(129), - [aux_sym__inline_repeat1] = STATE(14), - [anon_sym_LBRACE_] = ACTIONS(423), - [anon_sym__] = ACTIONS(425), - [anon_sym_LBRACE_STAR] = ACTIONS(427), - [anon_sym_STAR] = ACTIONS(429), - [anon_sym_LBRACE_CARET] = ACTIONS(431), - [anon_sym_CARET] = ACTIONS(431), - [anon_sym_LBRACE_TILDE] = ACTIONS(433), - [anon_sym_TILDE] = ACTIONS(433), - [anon_sym_LBRACE_EQ] = ACTIONS(435), - [anon_sym_LBRACE_PLUS] = ACTIONS(437), - [anon_sym_LBRACE_DASH] = ACTIONS(439), - [anon_sym_BSLASH] = ACTIONS(441), - [sym_quotation_marks] = ACTIONS(443), - [sym_ellipsis] = ACTIONS(443), - [sym_em_dash] = ACTIONS(443), - [sym_en_dash] = ACTIONS(445), - [sym_backslash_escape] = ACTIONS(445), - [anon_sym_LT] = ACTIONS(447), - [sym_symbol] = ACTIONS(443), - [anon_sym_LBRACK_CARET] = ACTIONS(449), - [anon_sym_BANG_LBRACK] = ACTIONS(451), - [anon_sym_LBRACK] = ACTIONS(453), - [anon_sym_DOLLAR] = ACTIONS(455), - [anon_sym_TODO] = ACTIONS(457), - [anon_sym_WIP] = ACTIONS(457), - [anon_sym_NOTE] = ACTIONS(459), - [anon_sym_INFO] = ACTIONS(459), - [anon_sym_XXX] = ACTIONS(459), - [sym_fixme] = ACTIONS(443), - [sym__whitespace1] = ACTIONS(461), - [sym__newline] = ACTIONS(469), - [aux_sym__text_token1] = ACTIONS(465), - [sym__verbatim_begin] = ACTIONS(467), + [sym__inline] = STATE(910), + [sym__element] = STATE(80), + [sym_emphasis] = STATE(145), + [sym_emphasis_begin] = STATE(1190), + [sym_strong] = STATE(145), + [sym_strong_begin] = STATE(1191), + [sym_superscript] = STATE(145), + [sym_superscript_begin] = STATE(1192), + [sym_subscript] = STATE(145), + [sym_subscript_begin] = STATE(1193), + [sym_highlighted] = STATE(145), + [sym_highlighted_begin] = STATE(1194), + [sym_insert] = STATE(145), + [sym_insert_begin] = STATE(1195), + [sym_delete] = STATE(145), + [sym_delete_begin] = STATE(1196), + [sym_hard_line_break] = STATE(145), + [sym__smart_punctuation] = STATE(145), + [sym_autolink] = STATE(145), + [sym_footnote_reference] = STATE(145), + [sym_footnote_marker_begin] = STATE(1197), + [sym__image] = STATE(145), + [sym_full_reference_image] = STATE(145), + [sym_collapsed_reference_image] = STATE(145), + [sym_inline_image] = STATE(145), + [sym_image_description] = STATE(696), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(145), + [sym_full_reference_link] = STATE(145), + [sym_collapsed_reference_link] = STATE(145), + [sym_inline_link] = STATE(145), + [sym_link_text] = STATE(691), + [sym_span] = STATE(80), + [sym__bracketed_text_begin] = STATE(1265), + [sym__comment_with_spaces] = STATE(145), + [sym_raw_inline] = STATE(145), + [sym_math] = STATE(145), + [sym_verbatim] = STATE(145), + [sym__todo_highlights] = STATE(145), + [sym_todo] = STATE(145), + [sym_note] = STATE(145), + [sym__symbol_fallback] = STATE(145), + [aux_sym__text] = STATE(138), + [aux_sym__inline_repeat1] = STATE(80), + [anon_sym_LBRACE_] = ACTIONS(542), + [anon_sym__] = ACTIONS(544), + [anon_sym_LBRACE_STAR] = ACTIONS(546), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE_CARET] = ACTIONS(550), + [anon_sym_CARET] = ACTIONS(550), + [anon_sym_LBRACE_TILDE] = ACTIONS(552), + [anon_sym_TILDE] = ACTIONS(552), + [anon_sym_LBRACE_EQ] = ACTIONS(554), + [anon_sym_LBRACE_PLUS] = ACTIONS(556), + [anon_sym_LBRACE_DASH] = ACTIONS(558), + [anon_sym_BSLASH] = ACTIONS(560), + [sym_quotation_marks] = ACTIONS(562), + [sym_ellipsis] = ACTIONS(562), + [sym_em_dash] = ACTIONS(562), + [sym_en_dash] = ACTIONS(564), + [sym_backslash_escape] = ACTIONS(564), + [anon_sym_LT] = ACTIONS(566), + [sym_symbol] = ACTIONS(562), + [anon_sym_LBRACK_CARET] = ACTIONS(568), + [anon_sym_BANG_LBRACK] = ACTIONS(570), + [anon_sym_LBRACK] = ACTIONS(572), + [anon_sym_DOLLAR] = ACTIONS(574), + [anon_sym_TODO] = ACTIONS(576), + [anon_sym_WIP] = ACTIONS(576), + [anon_sym_NOTE] = ACTIONS(578), + [anon_sym_INFO] = ACTIONS(578), + [anon_sym_XXX] = ACTIONS(578), + [sym_fixme] = ACTIONS(562), + [sym__whitespace1] = ACTIONS(580), + [sym__newline] = ACTIONS(582), + [aux_sym__text_token1] = ACTIONS(584), + [sym__verbatim_begin] = ACTIONS(586), }, [58] = { - [sym__inline_without_trailing_space] = STATE(922), - [sym__element] = STATE(538), - [sym_emphasis] = STATE(141), - [sym_emphasis_begin] = STATE(1153), - [sym_strong] = STATE(141), - [sym_strong_begin] = STATE(1154), - [sym_superscript] = STATE(141), - [sym_superscript_begin] = STATE(1155), - [sym_subscript] = STATE(141), - [sym_subscript_begin] = STATE(1156), - [sym_highlighted] = STATE(141), - [sym_highlighted_begin] = STATE(1157), - [sym_insert] = STATE(141), - [sym_insert_begin] = STATE(1158), - [sym_delete] = STATE(141), - [sym_delete_begin] = STATE(1159), - [sym_hard_line_break] = STATE(141), - [sym__smart_punctuation] = STATE(141), - [sym_autolink] = STATE(141), - [sym_footnote_reference] = STATE(141), - [sym_footnote_marker_begin] = STATE(1160), - [sym__image] = STATE(141), - [sym_full_reference_image] = STATE(141), - [sym_collapsed_reference_image] = STATE(141), - [sym_inline_image] = STATE(141), - [sym__image_description] = STATE(681), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(141), - [sym_full_reference_link] = STATE(141), - [sym_collapsed_reference_link] = STATE(141), - [sym_inline_link] = STATE(141), - [sym_link_text] = STATE(680), - [sym_span] = STATE(538), - [sym__bracketed_text] = STATE(664), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(141), - [sym_raw_inline] = STATE(141), - [sym_math] = STATE(141), - [sym_verbatim] = STATE(141), - [sym__todo_highlights] = STATE(141), - [sym_todo] = STATE(141), - [sym_note] = STATE(141), - [sym__symbol_fallback] = STATE(141), - [aux_sym__text] = STATE(128), - [aux_sym__inline_repeat1] = STATE(119), - [anon_sym_LBRACE_] = ACTIONS(147), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_STAR] = ACTIONS(151), - [anon_sym_STAR] = ACTIONS(153), - [anon_sym_LBRACE_CARET] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_LBRACE_TILDE] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_LBRACE_EQ] = ACTIONS(159), - [anon_sym_LBRACE_PLUS] = ACTIONS(161), - [anon_sym_LBRACE_DASH] = ACTIONS(163), - [anon_sym_BSLASH] = ACTIONS(165), - [sym_quotation_marks] = ACTIONS(167), - [sym_ellipsis] = ACTIONS(167), - [sym_em_dash] = ACTIONS(167), - [sym_en_dash] = ACTIONS(169), - [sym_backslash_escape] = ACTIONS(169), - [anon_sym_LT] = ACTIONS(171), - [sym_symbol] = ACTIONS(167), - [anon_sym_LBRACK_CARET] = ACTIONS(173), - [anon_sym_BANG_LBRACK] = ACTIONS(175), - [anon_sym_LBRACK] = ACTIONS(177), - [anon_sym_DOLLAR] = ACTIONS(179), - [anon_sym_TODO] = ACTIONS(181), - [anon_sym_WIP] = ACTIONS(181), - [anon_sym_NOTE] = ACTIONS(183), - [anon_sym_INFO] = ACTIONS(183), - [anon_sym_XXX] = ACTIONS(183), - [sym_fixme] = ACTIONS(167), - [sym__whitespace1] = ACTIONS(185), - [sym__newline] = ACTIONS(187), - [aux_sym__text_token1] = ACTIONS(189), - [sym__verbatim_begin] = ACTIONS(191), + [sym__inline_without_trailing_space] = STATE(965), + [sym__element] = STATE(623), + [sym_emphasis] = STATE(148), + [sym_emphasis_begin] = STATE(1163), + [sym_strong] = STATE(148), + [sym_strong_begin] = STATE(1164), + [sym_superscript] = STATE(148), + [sym_superscript_begin] = STATE(1165), + [sym_subscript] = STATE(148), + [sym_subscript_begin] = STATE(1166), + [sym_highlighted] = STATE(148), + [sym_highlighted_begin] = STATE(1167), + [sym_insert] = STATE(148), + [sym_insert_begin] = STATE(1168), + [sym_delete] = STATE(148), + [sym_delete_begin] = STATE(1169), + [sym_hard_line_break] = STATE(148), + [sym__smart_punctuation] = STATE(148), + [sym_autolink] = STATE(148), + [sym_footnote_reference] = STATE(148), + [sym_footnote_marker_begin] = STATE(1170), + [sym__image] = STATE(148), + [sym_full_reference_image] = STATE(148), + [sym_collapsed_reference_image] = STATE(148), + [sym_inline_image] = STATE(148), + [sym_image_description] = STATE(712), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(148), + [sym_full_reference_link] = STATE(148), + [sym_collapsed_reference_link] = STATE(148), + [sym_inline_link] = STATE(148), + [sym_link_text] = STATE(713), + [sym_span] = STATE(623), + [sym__bracketed_text_begin] = STATE(1262), + [sym__comment_with_spaces] = STATE(148), + [sym_raw_inline] = STATE(148), + [sym_math] = STATE(148), + [sym_verbatim] = STATE(148), + [sym__todo_highlights] = STATE(148), + [sym_todo] = STATE(148), + [sym_note] = STATE(148), + [sym__symbol_fallback] = STATE(148), + [aux_sym__text] = STATE(136), + [aux_sym__inline_repeat1] = STATE(129), + [anon_sym_LBRACE_] = ACTIONS(402), + [anon_sym__] = ACTIONS(404), + [anon_sym_LBRACE_STAR] = ACTIONS(406), + [anon_sym_STAR] = ACTIONS(408), + [anon_sym_LBRACE_CARET] = ACTIONS(410), + [anon_sym_CARET] = ACTIONS(410), + [anon_sym_LBRACE_TILDE] = ACTIONS(412), + [anon_sym_TILDE] = ACTIONS(412), + [anon_sym_LBRACE_EQ] = ACTIONS(414), + [anon_sym_LBRACE_PLUS] = ACTIONS(416), + [anon_sym_LBRACE_DASH] = ACTIONS(418), + [anon_sym_BSLASH] = ACTIONS(420), + [sym_quotation_marks] = ACTIONS(422), + [sym_ellipsis] = ACTIONS(422), + [sym_em_dash] = ACTIONS(422), + [sym_en_dash] = ACTIONS(424), + [sym_backslash_escape] = ACTIONS(424), + [anon_sym_LT] = ACTIONS(426), + [sym_symbol] = ACTIONS(422), + [anon_sym_LBRACK_CARET] = ACTIONS(428), + [anon_sym_BANG_LBRACK] = ACTIONS(430), + [anon_sym_LBRACK] = ACTIONS(432), + [anon_sym_DOLLAR] = ACTIONS(434), + [anon_sym_TODO] = ACTIONS(436), + [anon_sym_WIP] = ACTIONS(436), + [anon_sym_NOTE] = ACTIONS(438), + [anon_sym_INFO] = ACTIONS(438), + [anon_sym_XXX] = ACTIONS(438), + [sym_fixme] = ACTIONS(422), + [sym__whitespace1] = ACTIONS(440), + [sym__newline] = ACTIONS(442), + [aux_sym__text_token1] = ACTIONS(444), + [sym__verbatim_begin] = ACTIONS(446), }, [59] = { - [sym__inline] = STATE(893), - [sym__element] = STATE(82), - [sym_emphasis] = STATE(143), - [sym_emphasis_begin] = STATE(1169), - [sym_strong] = STATE(143), - [sym_strong_begin] = STATE(1170), - [sym_superscript] = STATE(143), - [sym_superscript_begin] = STATE(1171), - [sym_subscript] = STATE(143), - [sym_subscript_begin] = STATE(1172), - [sym_highlighted] = STATE(143), - [sym_highlighted_begin] = STATE(1173), - [sym_insert] = STATE(143), - [sym_insert_begin] = STATE(1174), - [sym_delete] = STATE(143), - [sym_delete_begin] = STATE(1175), - [sym_hard_line_break] = STATE(143), - [sym__smart_punctuation] = STATE(143), - [sym_autolink] = STATE(143), - [sym_footnote_reference] = STATE(143), - [sym_footnote_marker_begin] = STATE(1176), - [sym__image] = STATE(143), - [sym_full_reference_image] = STATE(143), - [sym_collapsed_reference_image] = STATE(143), - [sym_inline_image] = STATE(143), - [sym__image_description] = STATE(701), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(143), - [sym_full_reference_link] = STATE(143), - [sym_collapsed_reference_link] = STATE(143), - [sym_inline_link] = STATE(143), - [sym_link_text] = STATE(702), - [sym_span] = STATE(82), - [sym__bracketed_text] = STATE(667), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(143), - [sym_raw_inline] = STATE(143), - [sym_math] = STATE(143), - [sym_verbatim] = STATE(143), - [sym__todo_highlights] = STATE(143), - [sym_todo] = STATE(143), - [sym_note] = STATE(143), - [sym__symbol_fallback] = STATE(143), - [aux_sym__text] = STATE(126), - [aux_sym__inline_repeat1] = STATE(82), - [anon_sym_LBRACE_] = ACTIONS(285), - [anon_sym__] = ACTIONS(287), - [anon_sym_LBRACE_STAR] = ACTIONS(289), - [anon_sym_STAR] = ACTIONS(291), - [anon_sym_LBRACE_CARET] = ACTIONS(293), - [anon_sym_CARET] = ACTIONS(293), - [anon_sym_LBRACE_TILDE] = ACTIONS(295), - [anon_sym_TILDE] = ACTIONS(295), - [anon_sym_LBRACE_EQ] = ACTIONS(297), - [anon_sym_LBRACE_PLUS] = ACTIONS(299), - [anon_sym_LBRACE_DASH] = ACTIONS(301), - [anon_sym_BSLASH] = ACTIONS(303), - [sym_quotation_marks] = ACTIONS(305), - [sym_ellipsis] = ACTIONS(305), - [sym_em_dash] = ACTIONS(305), - [sym_en_dash] = ACTIONS(307), - [sym_backslash_escape] = ACTIONS(307), - [anon_sym_LT] = ACTIONS(309), - [sym_symbol] = ACTIONS(305), - [anon_sym_LBRACK_CARET] = ACTIONS(311), - [anon_sym_BANG_LBRACK] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_DOLLAR] = ACTIONS(317), - [anon_sym_TODO] = ACTIONS(319), - [anon_sym_WIP] = ACTIONS(319), - [anon_sym_NOTE] = ACTIONS(321), - [anon_sym_INFO] = ACTIONS(321), - [anon_sym_XXX] = ACTIONS(321), - [sym_fixme] = ACTIONS(305), - [sym__whitespace1] = ACTIONS(323), - [sym__newline] = ACTIONS(325), - [aux_sym__text_token1] = ACTIONS(327), - [sym__verbatim_begin] = ACTIONS(329), + [sym__inline] = STATE(1093), + [sym__element] = STATE(84), + [sym_emphasis] = STATE(146), + [sym_emphasis_begin] = STATE(1226), + [sym_strong] = STATE(146), + [sym_strong_begin] = STATE(1227), + [sym_superscript] = STATE(146), + [sym_superscript_begin] = STATE(1228), + [sym_subscript] = STATE(146), + [sym_subscript_begin] = STATE(1229), + [sym_highlighted] = STATE(146), + [sym_highlighted_begin] = STATE(1230), + [sym_insert] = STATE(146), + [sym_insert_begin] = STATE(1231), + [sym_delete] = STATE(146), + [sym_delete_begin] = STATE(1232), + [sym_hard_line_break] = STATE(146), + [sym__smart_punctuation] = STATE(146), + [sym_autolink] = STATE(146), + [sym_footnote_reference] = STATE(146), + [sym_footnote_marker_begin] = STATE(1233), + [sym__image] = STATE(146), + [sym_full_reference_image] = STATE(146), + [sym_collapsed_reference_image] = STATE(146), + [sym_inline_image] = STATE(146), + [sym_image_description] = STATE(694), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(146), + [sym_full_reference_link] = STATE(146), + [sym_collapsed_reference_link] = STATE(146), + [sym_inline_link] = STATE(146), + [sym_link_text] = STATE(693), + [sym_span] = STATE(84), + [sym__bracketed_text_begin] = STATE(1269), + [sym__comment_with_spaces] = STATE(146), + [sym_raw_inline] = STATE(146), + [sym_math] = STATE(146), + [sym_verbatim] = STATE(146), + [sym__todo_highlights] = STATE(146), + [sym_todo] = STATE(146), + [sym_note] = STATE(146), + [sym__symbol_fallback] = STATE(146), + [aux_sym__text] = STATE(141), + [aux_sym__inline_repeat1] = STATE(84), + [anon_sym_LBRACE_] = ACTIONS(356), + [anon_sym__] = ACTIONS(358), + [anon_sym_LBRACE_STAR] = ACTIONS(360), + [anon_sym_STAR] = ACTIONS(362), + [anon_sym_LBRACE_CARET] = ACTIONS(364), + [anon_sym_CARET] = ACTIONS(364), + [anon_sym_LBRACE_TILDE] = ACTIONS(366), + [anon_sym_TILDE] = ACTIONS(366), + [anon_sym_LBRACE_EQ] = ACTIONS(368), + [anon_sym_LBRACE_PLUS] = ACTIONS(370), + [anon_sym_LBRACE_DASH] = ACTIONS(372), + [anon_sym_BSLASH] = ACTIONS(374), + [sym_quotation_marks] = ACTIONS(376), + [sym_ellipsis] = ACTIONS(376), + [sym_em_dash] = ACTIONS(376), + [sym_en_dash] = ACTIONS(378), + [sym_backslash_escape] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [sym_symbol] = ACTIONS(376), + [anon_sym_LBRACK_CARET] = ACTIONS(382), + [anon_sym_BANG_LBRACK] = ACTIONS(384), + [anon_sym_LBRACK] = ACTIONS(386), + [anon_sym_DOLLAR] = ACTIONS(388), + [anon_sym_TODO] = ACTIONS(390), + [anon_sym_WIP] = ACTIONS(390), + [anon_sym_NOTE] = ACTIONS(392), + [anon_sym_INFO] = ACTIONS(392), + [anon_sym_XXX] = ACTIONS(392), + [sym_fixme] = ACTIONS(376), + [sym__whitespace1] = ACTIONS(394), + [sym__newline] = ACTIONS(396), + [aux_sym__text_token1] = ACTIONS(398), + [sym__verbatim_begin] = ACTIONS(400), }, [60] = { - [sym__inline] = STATE(1070), - [sym__element] = STATE(47), - [sym_emphasis] = STATE(136), - [sym_emphasis_begin] = STATE(1209), - [sym_strong] = STATE(136), - [sym_strong_begin] = STATE(1210), - [sym_superscript] = STATE(136), - [sym_superscript_begin] = STATE(1211), - [sym_subscript] = STATE(136), - [sym_subscript_begin] = STATE(1212), - [sym_highlighted] = STATE(136), - [sym_highlighted_begin] = STATE(1213), - [sym_insert] = STATE(136), - [sym_insert_begin] = STATE(1214), - [sym_delete] = STATE(136), - [sym_delete_begin] = STATE(1215), - [sym_hard_line_break] = STATE(136), - [sym__smart_punctuation] = STATE(136), - [sym_autolink] = STATE(136), - [sym_footnote_reference] = STATE(136), - [sym_footnote_marker_begin] = STATE(1216), - [sym__image] = STATE(136), - [sym_full_reference_image] = STATE(136), - [sym_collapsed_reference_image] = STATE(136), - [sym_inline_image] = STATE(136), - [sym__image_description] = STATE(682), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(136), - [sym_full_reference_link] = STATE(136), - [sym_collapsed_reference_link] = STATE(136), - [sym_inline_link] = STATE(136), - [sym_link_text] = STATE(675), - [sym_span] = STATE(47), - [sym__bracketed_text] = STATE(674), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(136), - [sym_raw_inline] = STATE(136), - [sym_math] = STATE(136), - [sym_verbatim] = STATE(136), - [sym__todo_highlights] = STATE(136), - [sym_todo] = STATE(136), - [sym_note] = STATE(136), - [sym__symbol_fallback] = STATE(136), - [aux_sym__text] = STATE(127), - [aux_sym__inline_repeat1] = STATE(47), - [anon_sym_LBRACE_] = ACTIONS(377), - [anon_sym__] = ACTIONS(379), - [anon_sym_LBRACE_STAR] = ACTIONS(381), - [anon_sym_STAR] = ACTIONS(383), - [anon_sym_LBRACE_CARET] = ACTIONS(385), - [anon_sym_CARET] = ACTIONS(385), - [anon_sym_LBRACE_TILDE] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_LBRACE_EQ] = ACTIONS(389), - [anon_sym_LBRACE_PLUS] = ACTIONS(391), - [anon_sym_LBRACE_DASH] = ACTIONS(393), - [anon_sym_BSLASH] = ACTIONS(395), - [sym_quotation_marks] = ACTIONS(397), - [sym_ellipsis] = ACTIONS(397), - [sym_em_dash] = ACTIONS(397), - [sym_en_dash] = ACTIONS(399), - [sym_backslash_escape] = ACTIONS(399), - [anon_sym_LT] = ACTIONS(401), - [sym_symbol] = ACTIONS(397), - [anon_sym_LBRACK_CARET] = ACTIONS(403), - [anon_sym_BANG_LBRACK] = ACTIONS(405), - [anon_sym_LBRACK] = ACTIONS(407), - [anon_sym_DOLLAR] = ACTIONS(409), - [anon_sym_TODO] = ACTIONS(411), - [anon_sym_WIP] = ACTIONS(411), - [anon_sym_NOTE] = ACTIONS(413), - [anon_sym_INFO] = ACTIONS(413), - [anon_sym_XXX] = ACTIONS(413), - [sym_fixme] = ACTIONS(397), - [sym__whitespace1] = ACTIONS(415), - [sym__newline] = ACTIONS(417), - [aux_sym__text_token1] = ACTIONS(419), - [sym__verbatim_begin] = ACTIONS(421), + [sym__inline] = STATE(909), + [sym__element] = STATE(124), + [sym_emphasis] = STATE(151), + [sym_emphasis_begin] = STATE(1181), + [sym_strong] = STATE(151), + [sym_strong_begin] = STATE(1182), + [sym_superscript] = STATE(151), + [sym_superscript_begin] = STATE(1183), + [sym_subscript] = STATE(151), + [sym_subscript_begin] = STATE(1184), + [sym_highlighted] = STATE(151), + [sym_highlighted_begin] = STATE(1185), + [sym_insert] = STATE(151), + [sym_insert_begin] = STATE(1186), + [sym_delete] = STATE(151), + [sym_delete_begin] = STATE(1187), + [sym_hard_line_break] = STATE(151), + [sym__smart_punctuation] = STATE(151), + [sym_autolink] = STATE(151), + [sym_footnote_reference] = STATE(151), + [sym_footnote_marker_begin] = STATE(1188), + [sym__image] = STATE(151), + [sym_full_reference_image] = STATE(151), + [sym_collapsed_reference_image] = STATE(151), + [sym_inline_image] = STATE(151), + [sym_image_description] = STATE(700), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(151), + [sym_full_reference_link] = STATE(151), + [sym_collapsed_reference_link] = STATE(151), + [sym_inline_link] = STATE(151), + [sym_link_text] = STATE(701), + [sym_span] = STATE(124), + [sym__bracketed_text_begin] = STATE(1264), + [sym__comment_with_spaces] = STATE(151), + [sym_raw_inline] = STATE(151), + [sym_math] = STATE(151), + [sym_verbatim] = STATE(151), + [sym__todo_highlights] = STATE(151), + [sym_todo] = STATE(151), + [sym_note] = STATE(151), + [sym__symbol_fallback] = STATE(151), + [aux_sym__text] = STATE(140), + [aux_sym__inline_repeat1] = STATE(124), + [anon_sym_LBRACE_] = ACTIONS(143), + [anon_sym__] = ACTIONS(145), + [anon_sym_LBRACE_STAR] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(149), + [anon_sym_LBRACE_CARET] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(151), + [anon_sym_LBRACE_TILDE] = ACTIONS(153), + [anon_sym_TILDE] = ACTIONS(153), + [anon_sym_LBRACE_EQ] = ACTIONS(155), + [anon_sym_LBRACE_PLUS] = ACTIONS(157), + [anon_sym_LBRACE_DASH] = ACTIONS(159), + [anon_sym_BSLASH] = ACTIONS(161), + [sym_quotation_marks] = ACTIONS(163), + [sym_ellipsis] = ACTIONS(163), + [sym_em_dash] = ACTIONS(163), + [sym_en_dash] = ACTIONS(165), + [sym_backslash_escape] = ACTIONS(165), + [anon_sym_LT] = ACTIONS(167), + [sym_symbol] = ACTIONS(163), + [anon_sym_LBRACK_CARET] = ACTIONS(169), + [anon_sym_BANG_LBRACK] = ACTIONS(171), + [anon_sym_LBRACK] = ACTIONS(173), + [anon_sym_DOLLAR] = ACTIONS(175), + [anon_sym_TODO] = ACTIONS(177), + [anon_sym_WIP] = ACTIONS(177), + [anon_sym_NOTE] = ACTIONS(179), + [anon_sym_INFO] = ACTIONS(179), + [anon_sym_XXX] = ACTIONS(179), + [sym_fixme] = ACTIONS(163), + [sym__whitespace1] = ACTIONS(181), + [sym__newline] = ACTIONS(183), + [aux_sym__text_token1] = ACTIONS(185), + [sym__verbatim_begin] = ACTIONS(187), }, [61] = { - [sym__inline] = STATE(937), - [sym__element] = STATE(47), - [sym_emphasis] = STATE(136), - [sym_emphasis_begin] = STATE(1209), - [sym_strong] = STATE(136), - [sym_strong_begin] = STATE(1210), - [sym_superscript] = STATE(136), - [sym_superscript_begin] = STATE(1211), - [sym_subscript] = STATE(136), - [sym_subscript_begin] = STATE(1212), - [sym_highlighted] = STATE(136), - [sym_highlighted_begin] = STATE(1213), - [sym_insert] = STATE(136), - [sym_insert_begin] = STATE(1214), - [sym_delete] = STATE(136), - [sym_delete_begin] = STATE(1215), - [sym_hard_line_break] = STATE(136), - [sym__smart_punctuation] = STATE(136), - [sym_autolink] = STATE(136), - [sym_footnote_reference] = STATE(136), - [sym_footnote_marker_begin] = STATE(1216), - [sym__image] = STATE(136), - [sym_full_reference_image] = STATE(136), - [sym_collapsed_reference_image] = STATE(136), - [sym_inline_image] = STATE(136), - [sym__image_description] = STATE(682), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(136), - [sym_full_reference_link] = STATE(136), - [sym_collapsed_reference_link] = STATE(136), - [sym_inline_link] = STATE(136), - [sym_link_text] = STATE(675), - [sym_span] = STATE(47), - [sym__bracketed_text] = STATE(674), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(136), - [sym_raw_inline] = STATE(136), - [sym_math] = STATE(136), - [sym_verbatim] = STATE(136), - [sym__todo_highlights] = STATE(136), - [sym_todo] = STATE(136), - [sym_note] = STATE(136), - [sym__symbol_fallback] = STATE(136), - [aux_sym__text] = STATE(127), - [aux_sym__inline_repeat1] = STATE(47), - [anon_sym_LBRACE_] = ACTIONS(377), - [anon_sym__] = ACTIONS(379), - [anon_sym_LBRACE_STAR] = ACTIONS(381), - [anon_sym_STAR] = ACTIONS(383), - [anon_sym_LBRACE_CARET] = ACTIONS(385), - [anon_sym_CARET] = ACTIONS(385), - [anon_sym_LBRACE_TILDE] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_LBRACE_EQ] = ACTIONS(389), - [anon_sym_LBRACE_PLUS] = ACTIONS(391), - [anon_sym_LBRACE_DASH] = ACTIONS(393), - [anon_sym_BSLASH] = ACTIONS(395), - [sym_quotation_marks] = ACTIONS(397), - [sym_ellipsis] = ACTIONS(397), - [sym_em_dash] = ACTIONS(397), - [sym_en_dash] = ACTIONS(399), - [sym_backslash_escape] = ACTIONS(399), - [anon_sym_LT] = ACTIONS(401), - [sym_symbol] = ACTIONS(397), - [anon_sym_LBRACK_CARET] = ACTIONS(403), - [anon_sym_BANG_LBRACK] = ACTIONS(405), - [anon_sym_LBRACK] = ACTIONS(407), - [anon_sym_DOLLAR] = ACTIONS(409), - [anon_sym_TODO] = ACTIONS(411), - [anon_sym_WIP] = ACTIONS(411), - [anon_sym_NOTE] = ACTIONS(413), - [anon_sym_INFO] = ACTIONS(413), - [anon_sym_XXX] = ACTIONS(413), - [sym_fixme] = ACTIONS(397), - [sym__whitespace1] = ACTIONS(415), - [sym__newline] = ACTIONS(417), - [aux_sym__text_token1] = ACTIONS(419), - [sym__verbatim_begin] = ACTIONS(421), + [sym__inline_without_trailing_space] = STATE(964), + [sym__element] = STATE(570), + [sym_emphasis] = STATE(152), + [sym_emphasis_begin] = STATE(1172), + [sym_strong] = STATE(152), + [sym_strong_begin] = STATE(1173), + [sym_superscript] = STATE(152), + [sym_superscript_begin] = STATE(1174), + [sym_subscript] = STATE(152), + [sym_subscript_begin] = STATE(1175), + [sym_highlighted] = STATE(152), + [sym_highlighted_begin] = STATE(1176), + [sym_insert] = STATE(152), + [sym_insert_begin] = STATE(1177), + [sym_delete] = STATE(152), + [sym_delete_begin] = STATE(1178), + [sym_hard_line_break] = STATE(152), + [sym__smart_punctuation] = STATE(152), + [sym_autolink] = STATE(152), + [sym_footnote_reference] = STATE(152), + [sym_footnote_marker_begin] = STATE(1179), + [sym__image] = STATE(152), + [sym_full_reference_image] = STATE(152), + [sym_collapsed_reference_image] = STATE(152), + [sym_inline_image] = STATE(152), + [sym_image_description] = STATE(704), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(152), + [sym_full_reference_link] = STATE(152), + [sym_collapsed_reference_link] = STATE(152), + [sym_inline_link] = STATE(152), + [sym_link_text] = STATE(706), + [sym_span] = STATE(570), + [sym__bracketed_text_begin] = STATE(1263), + [sym__comment_with_spaces] = STATE(152), + [sym_raw_inline] = STATE(152), + [sym_math] = STATE(152), + [sym_verbatim] = STATE(152), + [sym__todo_highlights] = STATE(152), + [sym_todo] = STATE(152), + [sym_note] = STATE(152), + [sym__symbol_fallback] = STATE(152), + [aux_sym__text] = STATE(133), + [aux_sym__inline_repeat1] = STATE(130), + [anon_sym_LBRACE_] = ACTIONS(448), + [anon_sym__] = ACTIONS(450), + [anon_sym_LBRACE_STAR] = ACTIONS(452), + [anon_sym_STAR] = ACTIONS(454), + [anon_sym_LBRACE_CARET] = ACTIONS(456), + [anon_sym_CARET] = ACTIONS(456), + [anon_sym_LBRACE_TILDE] = ACTIONS(458), + [anon_sym_TILDE] = ACTIONS(458), + [anon_sym_LBRACE_EQ] = ACTIONS(460), + [anon_sym_LBRACE_PLUS] = ACTIONS(462), + [anon_sym_LBRACE_DASH] = ACTIONS(464), + [anon_sym_BSLASH] = ACTIONS(466), + [sym_quotation_marks] = ACTIONS(468), + [sym_ellipsis] = ACTIONS(468), + [sym_em_dash] = ACTIONS(468), + [sym_en_dash] = ACTIONS(470), + [sym_backslash_escape] = ACTIONS(470), + [anon_sym_LT] = ACTIONS(472), + [sym_symbol] = ACTIONS(468), + [anon_sym_LBRACK_CARET] = ACTIONS(474), + [anon_sym_BANG_LBRACK] = ACTIONS(476), + [anon_sym_LBRACK] = ACTIONS(478), + [anon_sym_DOLLAR] = ACTIONS(480), + [anon_sym_TODO] = ACTIONS(482), + [anon_sym_WIP] = ACTIONS(482), + [anon_sym_NOTE] = ACTIONS(484), + [anon_sym_INFO] = ACTIONS(484), + [anon_sym_XXX] = ACTIONS(484), + [sym_fixme] = ACTIONS(468), + [sym__whitespace1] = ACTIONS(486), + [sym__newline] = ACTIONS(488), + [aux_sym__text_token1] = ACTIONS(490), + [sym__verbatim_begin] = ACTIONS(492), }, [62] = { - [sym__inline] = STATE(925), - [sym__element] = STATE(72), - [sym_emphasis] = STATE(135), - [sym_emphasis_begin] = STATE(1177), - [sym_strong] = STATE(135), - [sym_strong_begin] = STATE(1178), - [sym_superscript] = STATE(135), - [sym_superscript_begin] = STATE(1179), - [sym_subscript] = STATE(135), - [sym_subscript_begin] = STATE(1180), - [sym_highlighted] = STATE(135), - [sym_highlighted_begin] = STATE(1181), - [sym_insert] = STATE(135), - [sym_insert_begin] = STATE(1182), - [sym_delete] = STATE(135), - [sym_delete_begin] = STATE(1183), - [sym_hard_line_break] = STATE(135), - [sym__smart_punctuation] = STATE(135), - [sym_autolink] = STATE(135), - [sym_footnote_reference] = STATE(135), - [sym_footnote_marker_begin] = STATE(1184), - [sym__image] = STATE(135), - [sym_full_reference_image] = STATE(135), - [sym_collapsed_reference_image] = STATE(135), - [sym_inline_image] = STATE(135), - [sym__image_description] = STATE(687), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(135), - [sym_full_reference_link] = STATE(135), - [sym_collapsed_reference_link] = STATE(135), - [sym_inline_link] = STATE(135), - [sym_link_text] = STATE(684), - [sym_span] = STATE(72), - [sym__bracketed_text] = STATE(670), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(135), - [sym_raw_inline] = STATE(135), - [sym_math] = STATE(135), - [sym_verbatim] = STATE(135), - [sym__todo_highlights] = STATE(135), - [sym_todo] = STATE(135), - [sym_note] = STATE(135), - [sym__symbol_fallback] = STATE(135), - [aux_sym__text] = STATE(124), - [aux_sym__inline_repeat1] = STATE(72), - [anon_sym_LBRACE_] = ACTIONS(239), - [anon_sym__] = ACTIONS(241), - [anon_sym_LBRACE_STAR] = ACTIONS(243), - [anon_sym_STAR] = ACTIONS(245), - [anon_sym_LBRACE_CARET] = ACTIONS(247), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_LBRACE_TILDE] = ACTIONS(249), - [anon_sym_TILDE] = ACTIONS(249), - [anon_sym_LBRACE_EQ] = ACTIONS(251), - [anon_sym_LBRACE_PLUS] = ACTIONS(253), - [anon_sym_LBRACE_DASH] = ACTIONS(255), - [anon_sym_BSLASH] = ACTIONS(257), - [sym_quotation_marks] = ACTIONS(259), - [sym_ellipsis] = ACTIONS(259), - [sym_em_dash] = ACTIONS(259), - [sym_en_dash] = ACTIONS(261), - [sym_backslash_escape] = ACTIONS(261), - [anon_sym_LT] = ACTIONS(263), - [sym_symbol] = ACTIONS(259), - [anon_sym_LBRACK_CARET] = ACTIONS(265), - [anon_sym_BANG_LBRACK] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(269), - [anon_sym_DOLLAR] = ACTIONS(271), - [anon_sym_TODO] = ACTIONS(273), - [anon_sym_WIP] = ACTIONS(273), - [anon_sym_NOTE] = ACTIONS(275), - [anon_sym_INFO] = ACTIONS(275), - [anon_sym_XXX] = ACTIONS(275), - [sym_fixme] = ACTIONS(259), - [sym__whitespace1] = ACTIONS(277), - [sym__newline] = ACTIONS(279), - [aux_sym__text_token1] = ACTIONS(281), - [sym__verbatim_begin] = ACTIONS(283), + [sym__inline] = STATE(954), + [sym__element] = STATE(124), + [sym_emphasis] = STATE(151), + [sym_emphasis_begin] = STATE(1181), + [sym_strong] = STATE(151), + [sym_strong_begin] = STATE(1182), + [sym_superscript] = STATE(151), + [sym_superscript_begin] = STATE(1183), + [sym_subscript] = STATE(151), + [sym_subscript_begin] = STATE(1184), + [sym_highlighted] = STATE(151), + [sym_highlighted_begin] = STATE(1185), + [sym_insert] = STATE(151), + [sym_insert_begin] = STATE(1186), + [sym_delete] = STATE(151), + [sym_delete_begin] = STATE(1187), + [sym_hard_line_break] = STATE(151), + [sym__smart_punctuation] = STATE(151), + [sym_autolink] = STATE(151), + [sym_footnote_reference] = STATE(151), + [sym_footnote_marker_begin] = STATE(1188), + [sym__image] = STATE(151), + [sym_full_reference_image] = STATE(151), + [sym_collapsed_reference_image] = STATE(151), + [sym_inline_image] = STATE(151), + [sym_image_description] = STATE(700), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(151), + [sym_full_reference_link] = STATE(151), + [sym_collapsed_reference_link] = STATE(151), + [sym_inline_link] = STATE(151), + [sym_link_text] = STATE(701), + [sym_span] = STATE(124), + [sym__bracketed_text_begin] = STATE(1264), + [sym__comment_with_spaces] = STATE(151), + [sym_raw_inline] = STATE(151), + [sym_math] = STATE(151), + [sym_verbatim] = STATE(151), + [sym__todo_highlights] = STATE(151), + [sym_todo] = STATE(151), + [sym_note] = STATE(151), + [sym__symbol_fallback] = STATE(151), + [aux_sym__text] = STATE(140), + [aux_sym__inline_repeat1] = STATE(124), + [anon_sym_LBRACE_] = ACTIONS(143), + [anon_sym__] = ACTIONS(145), + [anon_sym_LBRACE_STAR] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(149), + [anon_sym_LBRACE_CARET] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(151), + [anon_sym_LBRACE_TILDE] = ACTIONS(153), + [anon_sym_TILDE] = ACTIONS(153), + [anon_sym_LBRACE_EQ] = ACTIONS(155), + [anon_sym_LBRACE_PLUS] = ACTIONS(157), + [anon_sym_LBRACE_DASH] = ACTIONS(159), + [anon_sym_BSLASH] = ACTIONS(161), + [sym_quotation_marks] = ACTIONS(163), + [sym_ellipsis] = ACTIONS(163), + [sym_em_dash] = ACTIONS(163), + [sym_en_dash] = ACTIONS(165), + [sym_backslash_escape] = ACTIONS(165), + [anon_sym_LT] = ACTIONS(167), + [sym_symbol] = ACTIONS(163), + [anon_sym_LBRACK_CARET] = ACTIONS(169), + [anon_sym_BANG_LBRACK] = ACTIONS(171), + [anon_sym_LBRACK] = ACTIONS(173), + [anon_sym_DOLLAR] = ACTIONS(175), + [anon_sym_TODO] = ACTIONS(177), + [anon_sym_WIP] = ACTIONS(177), + [anon_sym_NOTE] = ACTIONS(179), + [anon_sym_INFO] = ACTIONS(179), + [anon_sym_XXX] = ACTIONS(179), + [sym_fixme] = ACTIONS(163), + [sym__whitespace1] = ACTIONS(181), + [sym__newline] = ACTIONS(183), + [aux_sym__text_token1] = ACTIONS(185), + [sym__verbatim_begin] = ACTIONS(187), }, [63] = { - [sym__inline] = STATE(927), - [sym__element] = STATE(107), - [sym_emphasis] = STATE(140), - [sym_emphasis_begin] = STATE(1185), - [sym_strong] = STATE(140), - [sym_strong_begin] = STATE(1186), - [sym_superscript] = STATE(140), - [sym_superscript_begin] = STATE(1187), - [sym_subscript] = STATE(140), - [sym_subscript_begin] = STATE(1188), - [sym_highlighted] = STATE(140), - [sym_highlighted_begin] = STATE(1189), - [sym_insert] = STATE(140), - [sym_insert_begin] = STATE(1190), - [sym_delete] = STATE(140), - [sym_delete_begin] = STATE(1191), - [sym_hard_line_break] = STATE(140), - [sym__smart_punctuation] = STATE(140), - [sym_autolink] = STATE(140), - [sym_footnote_reference] = STATE(140), - [sym_footnote_marker_begin] = STATE(1192), - [sym__image] = STATE(140), - [sym_full_reference_image] = STATE(140), - [sym_collapsed_reference_image] = STATE(140), - [sym_inline_image] = STATE(140), - [sym__image_description] = STATE(700), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(140), - [sym_full_reference_link] = STATE(140), - [sym_collapsed_reference_link] = STATE(140), - [sym_inline_link] = STATE(140), - [sym_link_text] = STATE(699), - [sym_span] = STATE(107), - [sym__bracketed_text] = STATE(666), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(140), - [sym_raw_inline] = STATE(140), - [sym_math] = STATE(140), - [sym_verbatim] = STATE(140), - [sym__todo_highlights] = STATE(140), - [sym_todo] = STATE(140), - [sym_note] = STATE(140), - [sym__symbol_fallback] = STATE(140), - [aux_sym__text] = STATE(125), - [aux_sym__inline_repeat1] = STATE(107), - [anon_sym_LBRACE_] = ACTIONS(193), - [anon_sym__] = ACTIONS(195), - [anon_sym_LBRACE_STAR] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(199), - [anon_sym_LBRACE_CARET] = ACTIONS(201), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_LBRACE_TILDE] = ACTIONS(203), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_LBRACE_EQ] = ACTIONS(205), - [anon_sym_LBRACE_PLUS] = ACTIONS(207), - [anon_sym_LBRACE_DASH] = ACTIONS(209), - [anon_sym_BSLASH] = ACTIONS(211), - [sym_quotation_marks] = ACTIONS(213), - [sym_ellipsis] = ACTIONS(213), - [sym_em_dash] = ACTIONS(213), - [sym_en_dash] = ACTIONS(215), - [sym_backslash_escape] = ACTIONS(215), - [anon_sym_LT] = ACTIONS(217), - [sym_symbol] = ACTIONS(213), - [anon_sym_LBRACK_CARET] = ACTIONS(219), - [anon_sym_BANG_LBRACK] = ACTIONS(221), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_DOLLAR] = ACTIONS(225), - [anon_sym_TODO] = ACTIONS(227), - [anon_sym_WIP] = ACTIONS(227), - [anon_sym_NOTE] = ACTIONS(229), - [anon_sym_INFO] = ACTIONS(229), - [anon_sym_XXX] = ACTIONS(229), - [sym_fixme] = ACTIONS(213), - [sym__whitespace1] = ACTIONS(231), - [sym__newline] = ACTIONS(233), - [aux_sym__text_token1] = ACTIONS(235), - [sym__verbatim_begin] = ACTIONS(237), + [sym__inline] = STATE(1161), + [sym__element] = STATE(121), + [sym_emphasis] = STATE(154), + [sym_emphasis_begin] = STATE(1244), + [sym_strong] = STATE(154), + [sym_strong_begin] = STATE(1245), + [sym_superscript] = STATE(154), + [sym_superscript_begin] = STATE(1246), + [sym_subscript] = STATE(154), + [sym_subscript_begin] = STATE(1247), + [sym_highlighted] = STATE(154), + [sym_highlighted_begin] = STATE(1248), + [sym_insert] = STATE(154), + [sym_insert_begin] = STATE(1249), + [sym_delete] = STATE(154), + [sym_delete_begin] = STATE(1250), + [sym_hard_line_break] = STATE(154), + [sym__smart_punctuation] = STATE(154), + [sym_autolink] = STATE(154), + [sym_footnote_reference] = STATE(154), + [sym_footnote_marker_begin] = STATE(1251), + [sym__image] = STATE(154), + [sym_full_reference_image] = STATE(154), + [sym_collapsed_reference_image] = STATE(154), + [sym_inline_image] = STATE(154), + [sym_image_description] = STATE(686), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(154), + [sym_full_reference_link] = STATE(154), + [sym_collapsed_reference_link] = STATE(154), + [sym_inline_link] = STATE(154), + [sym_link_text] = STATE(687), + [sym_span] = STATE(121), + [sym__bracketed_text_begin] = STATE(1271), + [sym__comment_with_spaces] = STATE(154), + [sym_raw_inline] = STATE(154), + [sym_math] = STATE(154), + [sym_verbatim] = STATE(154), + [sym__todo_highlights] = STATE(154), + [sym_todo] = STATE(154), + [sym_note] = STATE(154), + [sym__symbol_fallback] = STATE(154), + [aux_sym__text] = STATE(137), + [aux_sym__inline_repeat1] = STATE(121), + [anon_sym_LBRACE_] = ACTIONS(235), + [anon_sym__] = ACTIONS(237), + [anon_sym_LBRACE_STAR] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(241), + [anon_sym_LBRACE_CARET] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(243), + [anon_sym_LBRACE_TILDE] = ACTIONS(245), + [anon_sym_TILDE] = ACTIONS(245), + [anon_sym_LBRACE_EQ] = ACTIONS(247), + [anon_sym_LBRACE_PLUS] = ACTIONS(249), + [anon_sym_LBRACE_DASH] = ACTIONS(251), + [anon_sym_BSLASH] = ACTIONS(253), + [sym_quotation_marks] = ACTIONS(255), + [sym_ellipsis] = ACTIONS(255), + [sym_em_dash] = ACTIONS(255), + [sym_en_dash] = ACTIONS(257), + [sym_backslash_escape] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(259), + [sym_symbol] = ACTIONS(255), + [anon_sym_LBRACK_CARET] = ACTIONS(261), + [anon_sym_BANG_LBRACK] = ACTIONS(263), + [anon_sym_LBRACK] = ACTIONS(265), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_TODO] = ACTIONS(269), + [anon_sym_WIP] = ACTIONS(269), + [anon_sym_NOTE] = ACTIONS(271), + [anon_sym_INFO] = ACTIONS(271), + [anon_sym_XXX] = ACTIONS(271), + [sym_fixme] = ACTIONS(255), + [sym__whitespace1] = ACTIONS(273), + [sym__newline] = ACTIONS(275), + [aux_sym__text_token1] = ACTIONS(277), + [sym__verbatim_begin] = ACTIONS(279), }, [64] = { - [sym__element] = STATE(64), - [sym_emphasis] = STATE(135), - [sym_emphasis_begin] = STATE(1177), - [sym_strong] = STATE(135), - [sym_strong_begin] = STATE(1178), - [sym_superscript] = STATE(135), - [sym_superscript_begin] = STATE(1179), - [sym_subscript] = STATE(135), - [sym_subscript_begin] = STATE(1180), - [sym_highlighted] = STATE(135), - [sym_highlighted_begin] = STATE(1181), - [sym_insert] = STATE(135), - [sym_insert_begin] = STATE(1182), - [sym_delete] = STATE(135), - [sym_delete_begin] = STATE(1183), - [sym_hard_line_break] = STATE(135), - [sym__smart_punctuation] = STATE(135), - [sym_autolink] = STATE(135), - [sym_footnote_reference] = STATE(135), - [sym_footnote_marker_begin] = STATE(1184), - [sym__image] = STATE(135), - [sym_full_reference_image] = STATE(135), - [sym_collapsed_reference_image] = STATE(135), - [sym_inline_image] = STATE(135), - [sym__image_description] = STATE(687), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(135), - [sym_full_reference_link] = STATE(135), - [sym_collapsed_reference_link] = STATE(135), - [sym_inline_link] = STATE(135), - [sym_link_text] = STATE(684), - [sym_span] = STATE(64), - [sym__bracketed_text] = STATE(670), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(135), - [sym_raw_inline] = STATE(135), - [sym_math] = STATE(135), - [sym_verbatim] = STATE(135), - [sym__todo_highlights] = STATE(135), - [sym_todo] = STATE(135), - [sym_note] = STATE(135), - [sym__symbol_fallback] = STATE(135), - [aux_sym__text] = STATE(124), - [aux_sym__inline_repeat1] = STATE(64), - [anon_sym_LBRACE_] = ACTIONS(615), - [anon_sym__] = ACTIONS(618), - [anon_sym_LBRACE_STAR] = ACTIONS(621), - [anon_sym_STAR] = ACTIONS(624), - [anon_sym_LBRACE_CARET] = ACTIONS(627), - [anon_sym_CARET] = ACTIONS(627), - [anon_sym_LBRACE_TILDE] = ACTIONS(630), - [anon_sym_TILDE] = ACTIONS(630), - [anon_sym_LBRACE_EQ] = ACTIONS(633), - [anon_sym_LBRACE_PLUS] = ACTIONS(636), - [anon_sym_LBRACE_DASH] = ACTIONS(639), - [anon_sym_BSLASH] = ACTIONS(642), - [sym_quotation_marks] = ACTIONS(645), - [sym_ellipsis] = ACTIONS(645), - [sym_em_dash] = ACTIONS(645), - [sym_en_dash] = ACTIONS(648), - [sym_backslash_escape] = ACTIONS(648), - [anon_sym_LT] = ACTIONS(651), - [sym_symbol] = ACTIONS(645), - [anon_sym_LBRACK_CARET] = ACTIONS(654), - [anon_sym_BANG_LBRACK] = ACTIONS(657), - [anon_sym_LBRACK] = ACTIONS(660), - [anon_sym_DOLLAR] = ACTIONS(663), - [anon_sym_TODO] = ACTIONS(666), - [anon_sym_WIP] = ACTIONS(666), - [anon_sym_NOTE] = ACTIONS(669), - [anon_sym_INFO] = ACTIONS(669), - [anon_sym_XXX] = ACTIONS(669), - [sym_fixme] = ACTIONS(645), - [sym__whitespace1] = ACTIONS(672), - [sym__newline] = ACTIONS(675), - [aux_sym__text_token1] = ACTIONS(678), - [sym__verbatim_begin] = ACTIONS(681), - [sym_subscript_end] = ACTIONS(540), + [sym__inline] = STATE(951), + [sym__element] = STATE(80), + [sym_emphasis] = STATE(145), + [sym_emphasis_begin] = STATE(1190), + [sym_strong] = STATE(145), + [sym_strong_begin] = STATE(1191), + [sym_superscript] = STATE(145), + [sym_superscript_begin] = STATE(1192), + [sym_subscript] = STATE(145), + [sym_subscript_begin] = STATE(1193), + [sym_highlighted] = STATE(145), + [sym_highlighted_begin] = STATE(1194), + [sym_insert] = STATE(145), + [sym_insert_begin] = STATE(1195), + [sym_delete] = STATE(145), + [sym_delete_begin] = STATE(1196), + [sym_hard_line_break] = STATE(145), + [sym__smart_punctuation] = STATE(145), + [sym_autolink] = STATE(145), + [sym_footnote_reference] = STATE(145), + [sym_footnote_marker_begin] = STATE(1197), + [sym__image] = STATE(145), + [sym_full_reference_image] = STATE(145), + [sym_collapsed_reference_image] = STATE(145), + [sym_inline_image] = STATE(145), + [sym_image_description] = STATE(696), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(145), + [sym_full_reference_link] = STATE(145), + [sym_collapsed_reference_link] = STATE(145), + [sym_inline_link] = STATE(145), + [sym_link_text] = STATE(691), + [sym_span] = STATE(80), + [sym__bracketed_text_begin] = STATE(1265), + [sym__comment_with_spaces] = STATE(145), + [sym_raw_inline] = STATE(145), + [sym_math] = STATE(145), + [sym_verbatim] = STATE(145), + [sym__todo_highlights] = STATE(145), + [sym_todo] = STATE(145), + [sym_note] = STATE(145), + [sym__symbol_fallback] = STATE(145), + [aux_sym__text] = STATE(138), + [aux_sym__inline_repeat1] = STATE(80), + [anon_sym_LBRACE_] = ACTIONS(542), + [anon_sym__] = ACTIONS(544), + [anon_sym_LBRACE_STAR] = ACTIONS(546), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE_CARET] = ACTIONS(550), + [anon_sym_CARET] = ACTIONS(550), + [anon_sym_LBRACE_TILDE] = ACTIONS(552), + [anon_sym_TILDE] = ACTIONS(552), + [anon_sym_LBRACE_EQ] = ACTIONS(554), + [anon_sym_LBRACE_PLUS] = ACTIONS(556), + [anon_sym_LBRACE_DASH] = ACTIONS(558), + [anon_sym_BSLASH] = ACTIONS(560), + [sym_quotation_marks] = ACTIONS(562), + [sym_ellipsis] = ACTIONS(562), + [sym_em_dash] = ACTIONS(562), + [sym_en_dash] = ACTIONS(564), + [sym_backslash_escape] = ACTIONS(564), + [anon_sym_LT] = ACTIONS(566), + [sym_symbol] = ACTIONS(562), + [anon_sym_LBRACK_CARET] = ACTIONS(568), + [anon_sym_BANG_LBRACK] = ACTIONS(570), + [anon_sym_LBRACK] = ACTIONS(572), + [anon_sym_DOLLAR] = ACTIONS(574), + [anon_sym_TODO] = ACTIONS(576), + [anon_sym_WIP] = ACTIONS(576), + [anon_sym_NOTE] = ACTIONS(578), + [anon_sym_INFO] = ACTIONS(578), + [anon_sym_XXX] = ACTIONS(578), + [sym_fixme] = ACTIONS(562), + [sym__whitespace1] = ACTIONS(580), + [sym__newline] = ACTIONS(582), + [aux_sym__text_token1] = ACTIONS(584), + [sym__verbatim_begin] = ACTIONS(586), }, [65] = { - [sym__element] = STATE(65), - [sym_emphasis] = STATE(133), - [sym_emphasis_begin] = STATE(1201), - [sym_strong] = STATE(133), - [sym_strong_begin] = STATE(1202), - [sym_superscript] = STATE(133), - [sym_superscript_begin] = STATE(1203), - [sym_subscript] = STATE(133), - [sym_subscript_begin] = STATE(1204), - [sym_highlighted] = STATE(133), - [sym_highlighted_begin] = STATE(1205), - [sym_insert] = STATE(133), - [sym_insert_begin] = STATE(1206), - [sym_delete] = STATE(133), - [sym_delete_begin] = STATE(1207), - [sym_hard_line_break] = STATE(133), - [sym__smart_punctuation] = STATE(133), - [sym_autolink] = STATE(133), - [sym_footnote_reference] = STATE(133), - [sym_footnote_marker_begin] = STATE(1208), - [sym__image] = STATE(133), - [sym_full_reference_image] = STATE(133), - [sym_collapsed_reference_image] = STATE(133), - [sym_inline_image] = STATE(133), - [sym__image_description] = STATE(688), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(133), - [sym_full_reference_link] = STATE(133), - [sym_collapsed_reference_link] = STATE(133), - [sym_inline_link] = STATE(133), - [sym_link_text] = STATE(686), - [sym_span] = STATE(65), - [sym__bracketed_text] = STATE(673), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(133), - [sym_raw_inline] = STATE(133), - [sym_math] = STATE(133), - [sym_verbatim] = STATE(133), - [sym__todo_highlights] = STATE(133), - [sym_todo] = STATE(133), - [sym_note] = STATE(133), - [sym__symbol_fallback] = STATE(133), - [aux_sym__text] = STATE(129), - [aux_sym__inline_repeat1] = STATE(65), - [anon_sym_LBRACE_] = ACTIONS(684), - [anon_sym__] = ACTIONS(687), - [anon_sym_LBRACE_STAR] = ACTIONS(690), - [anon_sym_STAR] = ACTIONS(693), - [anon_sym_LBRACE_CARET] = ACTIONS(696), - [anon_sym_CARET] = ACTIONS(696), - [anon_sym_LBRACE_TILDE] = ACTIONS(699), - [anon_sym_TILDE] = ACTIONS(699), - [anon_sym_LBRACE_EQ] = ACTIONS(702), - [anon_sym_LBRACE_PLUS] = ACTIONS(705), - [anon_sym_LBRACE_DASH] = ACTIONS(708), - [anon_sym_BSLASH] = ACTIONS(711), - [sym_quotation_marks] = ACTIONS(714), - [sym_ellipsis] = ACTIONS(714), - [sym_em_dash] = ACTIONS(714), - [sym_en_dash] = ACTIONS(717), - [sym_backslash_escape] = ACTIONS(717), - [anon_sym_LT] = ACTIONS(720), - [sym_symbol] = ACTIONS(714), - [anon_sym_LBRACK_CARET] = ACTIONS(723), - [anon_sym_BANG_LBRACK] = ACTIONS(726), - [anon_sym_LBRACK] = ACTIONS(729), - [anon_sym_DOLLAR] = ACTIONS(732), - [anon_sym_TODO] = ACTIONS(735), - [anon_sym_WIP] = ACTIONS(735), - [anon_sym_NOTE] = ACTIONS(738), - [anon_sym_INFO] = ACTIONS(738), - [anon_sym_XXX] = ACTIONS(738), - [sym_fixme] = ACTIONS(714), - [sym__whitespace1] = ACTIONS(741), - [sym__newline] = ACTIONS(744), - [aux_sym__text_token1] = ACTIONS(747), - [sym__verbatim_begin] = ACTIONS(750), - [sym_delete_end] = ACTIONS(540), + [sym__inline] = STATE(950), + [sym__element] = STATE(21), + [sym_emphasis] = STATE(149), + [sym_emphasis_begin] = STATE(1199), + [sym_strong] = STATE(149), + [sym_strong_begin] = STATE(1200), + [sym_superscript] = STATE(149), + [sym_superscript_begin] = STATE(1201), + [sym_subscript] = STATE(149), + [sym_subscript_begin] = STATE(1202), + [sym_highlighted] = STATE(149), + [sym_highlighted_begin] = STATE(1203), + [sym_insert] = STATE(149), + [sym_insert_begin] = STATE(1204), + [sym_delete] = STATE(149), + [sym_delete_begin] = STATE(1205), + [sym_hard_line_break] = STATE(149), + [sym__smart_punctuation] = STATE(149), + [sym_autolink] = STATE(149), + [sym_footnote_reference] = STATE(149), + [sym_footnote_marker_begin] = STATE(1206), + [sym__image] = STATE(149), + [sym_full_reference_image] = STATE(149), + [sym_collapsed_reference_image] = STATE(149), + [sym_inline_image] = STATE(149), + [sym_image_description] = STATE(714), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(149), + [sym_full_reference_link] = STATE(149), + [sym_collapsed_reference_link] = STATE(149), + [sym_inline_link] = STATE(149), + [sym_link_text] = STATE(710), + [sym_span] = STATE(21), + [sym__bracketed_text_begin] = STATE(1266), + [sym__comment_with_spaces] = STATE(149), + [sym_raw_inline] = STATE(149), + [sym_math] = STATE(149), + [sym_verbatim] = STATE(149), + [sym__todo_highlights] = STATE(149), + [sym_todo] = STATE(149), + [sym_note] = STATE(149), + [sym__symbol_fallback] = STATE(149), + [aux_sym__text] = STATE(142), + [aux_sym__inline_repeat1] = STATE(21), + [anon_sym_LBRACE_] = ACTIONS(494), + [anon_sym__] = ACTIONS(496), + [anon_sym_LBRACE_STAR] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(500), + [anon_sym_LBRACE_CARET] = ACTIONS(502), + [anon_sym_CARET] = ACTIONS(502), + [anon_sym_LBRACE_TILDE] = ACTIONS(504), + [anon_sym_TILDE] = ACTIONS(504), + [anon_sym_LBRACE_EQ] = ACTIONS(506), + [anon_sym_LBRACE_PLUS] = ACTIONS(508), + [anon_sym_LBRACE_DASH] = ACTIONS(510), + [anon_sym_BSLASH] = ACTIONS(512), + [sym_quotation_marks] = ACTIONS(514), + [sym_ellipsis] = ACTIONS(514), + [sym_em_dash] = ACTIONS(514), + [sym_en_dash] = ACTIONS(516), + [sym_backslash_escape] = ACTIONS(516), + [anon_sym_LT] = ACTIONS(518), + [sym_symbol] = ACTIONS(514), + [anon_sym_LBRACK_CARET] = ACTIONS(520), + [anon_sym_BANG_LBRACK] = ACTIONS(522), + [anon_sym_LBRACK] = ACTIONS(524), + [anon_sym_DOLLAR] = ACTIONS(526), + [anon_sym_TODO] = ACTIONS(528), + [anon_sym_WIP] = ACTIONS(528), + [anon_sym_NOTE] = ACTIONS(530), + [anon_sym_INFO] = ACTIONS(530), + [anon_sym_XXX] = ACTIONS(530), + [sym_fixme] = ACTIONS(514), + [sym__whitespace1] = ACTIONS(532), + [sym__newline] = ACTIONS(540), + [aux_sym__text_token1] = ACTIONS(536), + [sym__verbatim_begin] = ACTIONS(538), }, [66] = { - [sym__inline] = STATE(929), - [sym__element] = STATE(3), - [sym_emphasis] = STATE(137), - [sym_emphasis_begin] = STATE(1193), - [sym_strong] = STATE(137), - [sym_strong_begin] = STATE(1194), - [sym_superscript] = STATE(137), - [sym_superscript_begin] = STATE(1195), - [sym_subscript] = STATE(137), - [sym_subscript_begin] = STATE(1196), - [sym_highlighted] = STATE(137), - [sym_highlighted_begin] = STATE(1197), - [sym_insert] = STATE(137), - [sym_insert_begin] = STATE(1198), - [sym_delete] = STATE(137), - [sym_delete_begin] = STATE(1199), - [sym_hard_line_break] = STATE(137), - [sym__smart_punctuation] = STATE(137), - [sym_autolink] = STATE(137), - [sym_footnote_reference] = STATE(137), - [sym_footnote_marker_begin] = STATE(1200), - [sym__image] = STATE(137), - [sym_full_reference_image] = STATE(137), - [sym_collapsed_reference_image] = STATE(137), - [sym_inline_image] = STATE(137), - [sym__image_description] = STATE(694), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(137), - [sym_full_reference_link] = STATE(137), - [sym_collapsed_reference_link] = STATE(137), - [sym_inline_link] = STATE(137), - [sym_link_text] = STATE(693), - [sym_span] = STATE(3), - [sym__bracketed_text] = STATE(672), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(137), - [sym_raw_inline] = STATE(137), - [sym_math] = STATE(137), - [sym_verbatim] = STATE(137), - [sym__todo_highlights] = STATE(137), - [sym_todo] = STATE(137), - [sym_note] = STATE(137), - [sym__symbol_fallback] = STATE(137), - [aux_sym__text] = STATE(131), - [aux_sym__inline_repeat1] = STATE(3), + [sym__inline] = STATE(937), + [sym__element] = STATE(7), + [sym_emphasis] = STATE(153), + [sym_emphasis_begin] = STATE(1208), + [sym_strong] = STATE(153), + [sym_strong_begin] = STATE(1209), + [sym_superscript] = STATE(153), + [sym_superscript_begin] = STATE(1210), + [sym_subscript] = STATE(153), + [sym_subscript_begin] = STATE(1211), + [sym_highlighted] = STATE(153), + [sym_highlighted_begin] = STATE(1212), + [sym_insert] = STATE(153), + [sym_insert_begin] = STATE(1213), + [sym_delete] = STATE(153), + [sym_delete_begin] = STATE(1214), + [sym_hard_line_break] = STATE(153), + [sym__smart_punctuation] = STATE(153), + [sym_autolink] = STATE(153), + [sym_footnote_reference] = STATE(153), + [sym_footnote_marker_begin] = STATE(1215), + [sym__image] = STATE(153), + [sym_full_reference_image] = STATE(153), + [sym_collapsed_reference_image] = STATE(153), + [sym_inline_image] = STATE(153), + [sym_image_description] = STATE(707), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(153), + [sym_full_reference_link] = STATE(153), + [sym_collapsed_reference_link] = STATE(153), + [sym_inline_link] = STATE(153), + [sym_link_text] = STATE(705), + [sym_span] = STATE(7), + [sym__bracketed_text_begin] = STATE(1267), + [sym__comment_with_spaces] = STATE(153), + [sym_raw_inline] = STATE(153), + [sym_math] = STATE(153), + [sym_verbatim] = STATE(153), + [sym__todo_highlights] = STATE(153), + [sym_todo] = STATE(153), + [sym_note] = STATE(153), + [sym__symbol_fallback] = STATE(153), + [aux_sym__text] = STATE(134), + [aux_sym__inline_repeat1] = STATE(7), [anon_sym_LBRACE_] = ACTIONS(97), [anon_sym__] = ACTIONS(99), [anon_sym_LBRACE_STAR] = ACTIONS(101), @@ -10535,936 +10526,1161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_XXX] = ACTIONS(133), [sym_fixme] = ACTIONS(117), [sym__whitespace1] = ACTIONS(135), - [sym__newline] = ACTIONS(145), + [sym__newline] = ACTIONS(137), [aux_sym__text_token1] = ACTIONS(139), [sym__verbatim_begin] = ACTIONS(141), }, [67] = { - [sym__inline] = STATE(930), - [sym__element] = STATE(14), - [sym_emphasis] = STATE(133), - [sym_emphasis_begin] = STATE(1201), - [sym_strong] = STATE(133), - [sym_strong_begin] = STATE(1202), - [sym_superscript] = STATE(133), - [sym_superscript_begin] = STATE(1203), - [sym_subscript] = STATE(133), - [sym_subscript_begin] = STATE(1204), - [sym_highlighted] = STATE(133), - [sym_highlighted_begin] = STATE(1205), - [sym_insert] = STATE(133), - [sym_insert_begin] = STATE(1206), - [sym_delete] = STATE(133), - [sym_delete_begin] = STATE(1207), - [sym_hard_line_break] = STATE(133), - [sym__smart_punctuation] = STATE(133), - [sym_autolink] = STATE(133), - [sym_footnote_reference] = STATE(133), - [sym_footnote_marker_begin] = STATE(1208), - [sym__image] = STATE(133), - [sym_full_reference_image] = STATE(133), - [sym_collapsed_reference_image] = STATE(133), - [sym_inline_image] = STATE(133), - [sym__image_description] = STATE(688), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(133), - [sym_full_reference_link] = STATE(133), - [sym_collapsed_reference_link] = STATE(133), - [sym_inline_link] = STATE(133), - [sym_link_text] = STATE(686), - [sym_span] = STATE(14), - [sym__bracketed_text] = STATE(673), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(133), - [sym_raw_inline] = STATE(133), - [sym_math] = STATE(133), - [sym_verbatim] = STATE(133), - [sym__todo_highlights] = STATE(133), - [sym_todo] = STATE(133), - [sym_note] = STATE(133), - [sym__symbol_fallback] = STATE(133), - [aux_sym__text] = STATE(129), - [aux_sym__inline_repeat1] = STATE(14), - [anon_sym_LBRACE_] = ACTIONS(423), - [anon_sym__] = ACTIONS(425), - [anon_sym_LBRACE_STAR] = ACTIONS(427), - [anon_sym_STAR] = ACTIONS(429), - [anon_sym_LBRACE_CARET] = ACTIONS(431), - [anon_sym_CARET] = ACTIONS(431), - [anon_sym_LBRACE_TILDE] = ACTIONS(433), - [anon_sym_TILDE] = ACTIONS(433), - [anon_sym_LBRACE_EQ] = ACTIONS(435), - [anon_sym_LBRACE_PLUS] = ACTIONS(437), - [anon_sym_LBRACE_DASH] = ACTIONS(439), - [anon_sym_BSLASH] = ACTIONS(441), - [sym_quotation_marks] = ACTIONS(443), - [sym_ellipsis] = ACTIONS(443), - [sym_em_dash] = ACTIONS(443), - [sym_en_dash] = ACTIONS(445), - [sym_backslash_escape] = ACTIONS(445), - [anon_sym_LT] = ACTIONS(447), - [sym_symbol] = ACTIONS(443), - [anon_sym_LBRACK_CARET] = ACTIONS(449), - [anon_sym_BANG_LBRACK] = ACTIONS(451), - [anon_sym_LBRACK] = ACTIONS(453), - [anon_sym_DOLLAR] = ACTIONS(455), - [anon_sym_TODO] = ACTIONS(457), - [anon_sym_WIP] = ACTIONS(457), - [anon_sym_NOTE] = ACTIONS(459), - [anon_sym_INFO] = ACTIONS(459), - [anon_sym_XXX] = ACTIONS(459), - [sym_fixme] = ACTIONS(443), - [sym__whitespace1] = ACTIONS(461), - [sym__newline] = ACTIONS(469), - [aux_sym__text_token1] = ACTIONS(465), - [sym__verbatim_begin] = ACTIONS(467), + [sym__inline] = STATE(1090), + [sym__element] = STATE(121), + [sym_emphasis] = STATE(154), + [sym_emphasis_begin] = STATE(1244), + [sym_strong] = STATE(154), + [sym_strong_begin] = STATE(1245), + [sym_superscript] = STATE(154), + [sym_superscript_begin] = STATE(1246), + [sym_subscript] = STATE(154), + [sym_subscript_begin] = STATE(1247), + [sym_highlighted] = STATE(154), + [sym_highlighted_begin] = STATE(1248), + [sym_insert] = STATE(154), + [sym_insert_begin] = STATE(1249), + [sym_delete] = STATE(154), + [sym_delete_begin] = STATE(1250), + [sym_hard_line_break] = STATE(154), + [sym__smart_punctuation] = STATE(154), + [sym_autolink] = STATE(154), + [sym_footnote_reference] = STATE(154), + [sym_footnote_marker_begin] = STATE(1251), + [sym__image] = STATE(154), + [sym_full_reference_image] = STATE(154), + [sym_collapsed_reference_image] = STATE(154), + [sym_inline_image] = STATE(154), + [sym_image_description] = STATE(686), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(154), + [sym_full_reference_link] = STATE(154), + [sym_collapsed_reference_link] = STATE(154), + [sym_inline_link] = STATE(154), + [sym_link_text] = STATE(687), + [sym_span] = STATE(121), + [sym__bracketed_text_begin] = STATE(1271), + [sym__comment_with_spaces] = STATE(154), + [sym_raw_inline] = STATE(154), + [sym_math] = STATE(154), + [sym_verbatim] = STATE(154), + [sym__todo_highlights] = STATE(154), + [sym_todo] = STATE(154), + [sym_note] = STATE(154), + [sym__symbol_fallback] = STATE(154), + [aux_sym__text] = STATE(137), + [aux_sym__inline_repeat1] = STATE(121), + [anon_sym_LBRACE_] = ACTIONS(235), + [anon_sym__] = ACTIONS(237), + [anon_sym_LBRACE_STAR] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(241), + [anon_sym_LBRACE_CARET] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(243), + [anon_sym_LBRACE_TILDE] = ACTIONS(245), + [anon_sym_TILDE] = ACTIONS(245), + [anon_sym_LBRACE_EQ] = ACTIONS(247), + [anon_sym_LBRACE_PLUS] = ACTIONS(249), + [anon_sym_LBRACE_DASH] = ACTIONS(251), + [anon_sym_BSLASH] = ACTIONS(253), + [sym_quotation_marks] = ACTIONS(255), + [sym_ellipsis] = ACTIONS(255), + [sym_em_dash] = ACTIONS(255), + [sym_en_dash] = ACTIONS(257), + [sym_backslash_escape] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(259), + [sym_symbol] = ACTIONS(255), + [anon_sym_LBRACK_CARET] = ACTIONS(261), + [anon_sym_BANG_LBRACK] = ACTIONS(263), + [anon_sym_LBRACK] = ACTIONS(265), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_TODO] = ACTIONS(269), + [anon_sym_WIP] = ACTIONS(269), + [anon_sym_NOTE] = ACTIONS(271), + [anon_sym_INFO] = ACTIONS(271), + [anon_sym_XXX] = ACTIONS(271), + [sym_fixme] = ACTIONS(255), + [sym__whitespace1] = ACTIONS(273), + [sym__newline] = ACTIONS(275), + [aux_sym__text_token1] = ACTIONS(277), + [sym__verbatim_begin] = ACTIONS(279), }, [68] = { - [sym__inline] = STATE(962), - [sym__element] = STATE(47), - [sym_emphasis] = STATE(136), - [sym_emphasis_begin] = STATE(1209), - [sym_strong] = STATE(136), - [sym_strong_begin] = STATE(1210), - [sym_superscript] = STATE(136), - [sym_superscript_begin] = STATE(1211), - [sym_subscript] = STATE(136), - [sym_subscript_begin] = STATE(1212), - [sym_highlighted] = STATE(136), - [sym_highlighted_begin] = STATE(1213), - [sym_insert] = STATE(136), - [sym_insert_begin] = STATE(1214), - [sym_delete] = STATE(136), - [sym_delete_begin] = STATE(1215), - [sym_hard_line_break] = STATE(136), - [sym__smart_punctuation] = STATE(136), - [sym_autolink] = STATE(136), - [sym_footnote_reference] = STATE(136), - [sym_footnote_marker_begin] = STATE(1216), - [sym__image] = STATE(136), - [sym_full_reference_image] = STATE(136), - [sym_collapsed_reference_image] = STATE(136), - [sym_inline_image] = STATE(136), - [sym__image_description] = STATE(682), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(136), - [sym_full_reference_link] = STATE(136), - [sym_collapsed_reference_link] = STATE(136), - [sym_inline_link] = STATE(136), - [sym_link_text] = STATE(675), - [sym_span] = STATE(47), - [sym__bracketed_text] = STATE(674), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(136), - [sym_raw_inline] = STATE(136), - [sym_math] = STATE(136), - [sym_verbatim] = STATE(136), - [sym__todo_highlights] = STATE(136), - [sym_todo] = STATE(136), - [sym_note] = STATE(136), - [sym__symbol_fallback] = STATE(136), - [aux_sym__text] = STATE(127), - [aux_sym__inline_repeat1] = STATE(47), - [anon_sym_LBRACE_] = ACTIONS(377), - [anon_sym__] = ACTIONS(379), - [anon_sym_LBRACE_STAR] = ACTIONS(381), - [anon_sym_STAR] = ACTIONS(383), - [anon_sym_LBRACE_CARET] = ACTIONS(385), - [anon_sym_CARET] = ACTIONS(385), - [anon_sym_LBRACE_TILDE] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_LBRACE_EQ] = ACTIONS(389), - [anon_sym_LBRACE_PLUS] = ACTIONS(391), - [anon_sym_LBRACE_DASH] = ACTIONS(393), - [anon_sym_BSLASH] = ACTIONS(395), - [sym_quotation_marks] = ACTIONS(397), - [sym_ellipsis] = ACTIONS(397), - [sym_em_dash] = ACTIONS(397), - [sym_en_dash] = ACTIONS(399), - [sym_backslash_escape] = ACTIONS(399), - [anon_sym_LT] = ACTIONS(401), - [sym_symbol] = ACTIONS(397), - [anon_sym_LBRACK_CARET] = ACTIONS(403), - [anon_sym_BANG_LBRACK] = ACTIONS(405), - [anon_sym_LBRACK] = ACTIONS(407), - [anon_sym_DOLLAR] = ACTIONS(409), - [anon_sym_TODO] = ACTIONS(411), - [anon_sym_WIP] = ACTIONS(411), - [anon_sym_NOTE] = ACTIONS(413), - [anon_sym_INFO] = ACTIONS(413), - [anon_sym_XXX] = ACTIONS(413), - [sym_fixme] = ACTIONS(397), - [sym__whitespace1] = ACTIONS(415), - [sym__newline] = ACTIONS(417), - [aux_sym__text_token1] = ACTIONS(419), - [sym__verbatim_begin] = ACTIONS(421), + [sym__element] = STATE(68), + [sym_emphasis] = STATE(145), + [sym_emphasis_begin] = STATE(1190), + [sym_strong] = STATE(145), + [sym_strong_begin] = STATE(1191), + [sym_superscript] = STATE(145), + [sym_superscript_begin] = STATE(1192), + [sym_subscript] = STATE(145), + [sym_subscript_begin] = STATE(1193), + [sym_highlighted] = STATE(145), + [sym_highlighted_begin] = STATE(1194), + [sym_insert] = STATE(145), + [sym_insert_begin] = STATE(1195), + [sym_delete] = STATE(145), + [sym_delete_begin] = STATE(1196), + [sym_hard_line_break] = STATE(145), + [sym__smart_punctuation] = STATE(145), + [sym_autolink] = STATE(145), + [sym_footnote_reference] = STATE(145), + [sym_footnote_marker_begin] = STATE(1197), + [sym__image] = STATE(145), + [sym_full_reference_image] = STATE(145), + [sym_collapsed_reference_image] = STATE(145), + [sym_inline_image] = STATE(145), + [sym_image_description] = STATE(696), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(145), + [sym_full_reference_link] = STATE(145), + [sym_collapsed_reference_link] = STATE(145), + [sym_inline_link] = STATE(145), + [sym_link_text] = STATE(691), + [sym_span] = STATE(68), + [sym__bracketed_text_begin] = STATE(1265), + [sym__comment_with_spaces] = STATE(145), + [sym_raw_inline] = STATE(145), + [sym_math] = STATE(145), + [sym_verbatim] = STATE(145), + [sym__todo_highlights] = STATE(145), + [sym_todo] = STATE(145), + [sym_note] = STATE(145), + [sym__symbol_fallback] = STATE(145), + [aux_sym__text] = STATE(138), + [aux_sym__inline_repeat1] = STATE(68), + [anon_sym_LBRACE_] = ACTIONS(661), + [anon_sym__] = ACTIONS(664), + [anon_sym_LBRACE_STAR] = ACTIONS(667), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_LBRACE_CARET] = ACTIONS(673), + [anon_sym_CARET] = ACTIONS(673), + [anon_sym_LBRACE_TILDE] = ACTIONS(676), + [anon_sym_TILDE] = ACTIONS(676), + [anon_sym_LBRACE_EQ] = ACTIONS(679), + [anon_sym_LBRACE_PLUS] = ACTIONS(682), + [anon_sym_LBRACE_DASH] = ACTIONS(685), + [anon_sym_BSLASH] = ACTIONS(688), + [sym_quotation_marks] = ACTIONS(691), + [sym_ellipsis] = ACTIONS(691), + [sym_em_dash] = ACTIONS(691), + [sym_en_dash] = ACTIONS(694), + [sym_backslash_escape] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(697), + [sym_symbol] = ACTIONS(691), + [anon_sym_LBRACK_CARET] = ACTIONS(700), + [anon_sym_BANG_LBRACK] = ACTIONS(703), + [anon_sym_LBRACK] = ACTIONS(706), + [anon_sym_DOLLAR] = ACTIONS(709), + [anon_sym_TODO] = ACTIONS(712), + [anon_sym_WIP] = ACTIONS(712), + [anon_sym_NOTE] = ACTIONS(715), + [anon_sym_INFO] = ACTIONS(715), + [anon_sym_XXX] = ACTIONS(715), + [sym_fixme] = ACTIONS(691), + [sym__whitespace1] = ACTIONS(718), + [sym__newline] = ACTIONS(721), + [aux_sym__text_token1] = ACTIONS(724), + [sym__verbatim_begin] = ACTIONS(727), + [sym_subscript_end] = ACTIONS(354), }, [69] = { - [sym__inline] = STATE(1067), - [sym__element] = STATE(110), - [sym_emphasis] = STATE(134), - [sym_emphasis_begin] = STATE(1225), - [sym_strong] = STATE(134), - [sym_strong_begin] = STATE(1226), - [sym_superscript] = STATE(134), - [sym_superscript_begin] = STATE(1227), - [sym_subscript] = STATE(134), - [sym_subscript_begin] = STATE(1228), - [sym_highlighted] = STATE(134), - [sym_highlighted_begin] = STATE(1229), - [sym_insert] = STATE(134), - [sym_insert_begin] = STATE(1230), - [sym_delete] = STATE(134), - [sym_delete_begin] = STATE(1231), - [sym_hard_line_break] = STATE(134), - [sym__smart_punctuation] = STATE(134), - [sym_autolink] = STATE(134), - [sym_footnote_reference] = STATE(134), - [sym_footnote_marker_begin] = STATE(1232), - [sym__image] = STATE(134), - [sym_full_reference_image] = STATE(134), - [sym_collapsed_reference_image] = STATE(134), - [sym_inline_image] = STATE(134), - [sym__image_description] = STATE(676), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(134), - [sym_full_reference_link] = STATE(134), - [sym_collapsed_reference_link] = STATE(134), - [sym_inline_link] = STATE(134), - [sym_link_text] = STATE(695), - [sym_span] = STATE(110), - [sym__bracketed_text] = STATE(669), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(134), - [sym_raw_inline] = STATE(134), - [sym_math] = STATE(134), - [sym_verbatim] = STATE(134), - [sym__todo_highlights] = STATE(134), - [sym_todo] = STATE(134), - [sym_note] = STATE(134), - [sym__symbol_fallback] = STATE(134), - [aux_sym__text] = STATE(123), - [aux_sym__inline_repeat1] = STATE(110), - [anon_sym_LBRACE_] = ACTIONS(753), - [anon_sym__] = ACTIONS(755), - [anon_sym_LBRACE_STAR] = ACTIONS(757), - [anon_sym_STAR] = ACTIONS(759), - [anon_sym_LBRACE_CARET] = ACTIONS(761), - [anon_sym_CARET] = ACTIONS(761), - [anon_sym_LBRACE_TILDE] = ACTIONS(763), - [anon_sym_TILDE] = ACTIONS(763), - [anon_sym_LBRACE_EQ] = ACTIONS(765), - [anon_sym_LBRACE_PLUS] = ACTIONS(767), - [anon_sym_LBRACE_DASH] = ACTIONS(769), - [anon_sym_BSLASH] = ACTIONS(771), - [sym_quotation_marks] = ACTIONS(773), - [sym_ellipsis] = ACTIONS(773), - [sym_em_dash] = ACTIONS(773), - [sym_en_dash] = ACTIONS(775), - [sym_backslash_escape] = ACTIONS(775), - [anon_sym_LT] = ACTIONS(777), - [sym_symbol] = ACTIONS(773), - [anon_sym_LBRACK_CARET] = ACTIONS(779), - [anon_sym_BANG_LBRACK] = ACTIONS(781), - [anon_sym_LBRACK] = ACTIONS(783), - [anon_sym_DOLLAR] = ACTIONS(785), - [anon_sym_TODO] = ACTIONS(787), - [anon_sym_WIP] = ACTIONS(787), - [anon_sym_NOTE] = ACTIONS(789), - [anon_sym_INFO] = ACTIONS(789), - [anon_sym_XXX] = ACTIONS(789), - [sym_fixme] = ACTIONS(773), - [sym__whitespace1] = ACTIONS(791), - [sym__newline] = ACTIONS(793), - [aux_sym__text_token1] = ACTIONS(795), - [sym__verbatim_begin] = ACTIONS(797), + [sym__element] = STATE(69), + [sym_emphasis] = STATE(150), + [sym_emphasis_begin] = STATE(1156), + [sym_strong] = STATE(150), + [sym_strong_begin] = STATE(1155), + [sym_superscript] = STATE(150), + [sym_superscript_begin] = STATE(1154), + [sym_subscript] = STATE(150), + [sym_subscript_begin] = STATE(1153), + [sym_highlighted] = STATE(150), + [sym_highlighted_begin] = STATE(1152), + [sym_insert] = STATE(150), + [sym_insert_begin] = STATE(1151), + [sym_delete] = STATE(150), + [sym_delete_begin] = STATE(1143), + [sym_hard_line_break] = STATE(150), + [sym__smart_punctuation] = STATE(150), + [sym_autolink] = STATE(150), + [sym_footnote_reference] = STATE(150), + [sym_footnote_marker_begin] = STATE(1141), + [sym__image] = STATE(150), + [sym_full_reference_image] = STATE(150), + [sym_collapsed_reference_image] = STATE(150), + [sym_inline_image] = STATE(150), + [sym_image_description] = STATE(690), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(150), + [sym_full_reference_link] = STATE(150), + [sym_collapsed_reference_link] = STATE(150), + [sym_inline_link] = STATE(150), + [sym_link_text] = STATE(688), + [sym_span] = STATE(69), + [sym__bracketed_text_begin] = STATE(1139), + [sym__comment_with_spaces] = STATE(150), + [sym_raw_inline] = STATE(150), + [sym_math] = STATE(150), + [sym_verbatim] = STATE(150), + [sym__todo_highlights] = STATE(150), + [sym_todo] = STATE(150), + [sym_note] = STATE(150), + [sym__symbol_fallback] = STATE(150), + [aux_sym__text] = STATE(139), + [aux_sym__inline_repeat1] = STATE(69), + [ts_builtin_sym_end] = ACTIONS(354), + [anon_sym_LBRACE_] = ACTIONS(730), + [anon_sym__] = ACTIONS(733), + [anon_sym_LBRACE_STAR] = ACTIONS(736), + [anon_sym_STAR] = ACTIONS(739), + [anon_sym_LBRACE_CARET] = ACTIONS(742), + [anon_sym_CARET] = ACTIONS(742), + [anon_sym_LBRACE_TILDE] = ACTIONS(745), + [anon_sym_TILDE] = ACTIONS(745), + [anon_sym_LBRACE_EQ] = ACTIONS(748), + [anon_sym_LBRACE_PLUS] = ACTIONS(751), + [anon_sym_LBRACE_DASH] = ACTIONS(754), + [anon_sym_BSLASH] = ACTIONS(757), + [sym_quotation_marks] = ACTIONS(760), + [sym_ellipsis] = ACTIONS(760), + [sym_em_dash] = ACTIONS(760), + [sym_en_dash] = ACTIONS(763), + [sym_backslash_escape] = ACTIONS(763), + [anon_sym_LT] = ACTIONS(766), + [sym_symbol] = ACTIONS(760), + [anon_sym_LBRACK_CARET] = ACTIONS(769), + [anon_sym_BANG_LBRACK] = ACTIONS(772), + [anon_sym_LBRACK] = ACTIONS(775), + [anon_sym_DOLLAR] = ACTIONS(778), + [anon_sym_TODO] = ACTIONS(781), + [anon_sym_WIP] = ACTIONS(781), + [anon_sym_NOTE] = ACTIONS(784), + [anon_sym_INFO] = ACTIONS(784), + [anon_sym_XXX] = ACTIONS(784), + [sym_fixme] = ACTIONS(760), + [sym__whitespace1] = ACTIONS(787), + [sym__newline] = ACTIONS(790), + [aux_sym__text_token1] = ACTIONS(793), + [sym__verbatim_begin] = ACTIONS(796), }, [70] = { - [sym__element] = STATE(112), - [sym_emphasis] = STATE(139), + [sym__element] = STATE(70), + [sym_emphasis] = STATE(153), + [sym_emphasis_begin] = STATE(1208), + [sym_strong] = STATE(153), + [sym_strong_begin] = STATE(1209), + [sym_superscript] = STATE(153), + [sym_superscript_begin] = STATE(1210), + [sym_subscript] = STATE(153), + [sym_subscript_begin] = STATE(1211), + [sym_highlighted] = STATE(153), + [sym_highlighted_begin] = STATE(1212), + [sym_insert] = STATE(153), + [sym_insert_begin] = STATE(1213), + [sym_delete] = STATE(153), + [sym_delete_begin] = STATE(1214), + [sym_hard_line_break] = STATE(153), + [sym__smart_punctuation] = STATE(153), + [sym_autolink] = STATE(153), + [sym_footnote_reference] = STATE(153), + [sym_footnote_marker_begin] = STATE(1215), + [sym__image] = STATE(153), + [sym_full_reference_image] = STATE(153), + [sym_collapsed_reference_image] = STATE(153), + [sym_inline_image] = STATE(153), + [sym_image_description] = STATE(707), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(153), + [sym_full_reference_link] = STATE(153), + [sym_collapsed_reference_link] = STATE(153), + [sym_inline_link] = STATE(153), + [sym_link_text] = STATE(705), + [sym_span] = STATE(70), + [sym__bracketed_text_begin] = STATE(1267), + [sym__comment_with_spaces] = STATE(153), + [sym_raw_inline] = STATE(153), + [sym_math] = STATE(153), + [sym_verbatim] = STATE(153), + [sym__todo_highlights] = STATE(153), + [sym_todo] = STATE(153), + [sym_note] = STATE(153), + [sym__symbol_fallback] = STATE(153), + [aux_sym__text] = STATE(134), + [aux_sym__inline_repeat1] = STATE(70), + [anon_sym_LBRACE_] = ACTIONS(799), + [anon_sym__] = ACTIONS(802), + [anon_sym_LBRACE_STAR] = ACTIONS(805), + [anon_sym_STAR] = ACTIONS(808), + [anon_sym_LBRACE_CARET] = ACTIONS(811), + [anon_sym_CARET] = ACTIONS(811), + [anon_sym_LBRACE_TILDE] = ACTIONS(814), + [anon_sym_TILDE] = ACTIONS(814), + [anon_sym_LBRACE_EQ] = ACTIONS(817), + [anon_sym_LBRACE_PLUS] = ACTIONS(820), + [anon_sym_LBRACE_DASH] = ACTIONS(823), + [anon_sym_BSLASH] = ACTIONS(826), + [sym_quotation_marks] = ACTIONS(829), + [sym_ellipsis] = ACTIONS(829), + [sym_em_dash] = ACTIONS(829), + [sym_en_dash] = ACTIONS(832), + [sym_backslash_escape] = ACTIONS(832), + [anon_sym_LT] = ACTIONS(835), + [sym_symbol] = ACTIONS(829), + [anon_sym_LBRACK_CARET] = ACTIONS(838), + [anon_sym_BANG_LBRACK] = ACTIONS(841), + [anon_sym_LBRACK] = ACTIONS(844), + [anon_sym_DOLLAR] = ACTIONS(847), + [anon_sym_TODO] = ACTIONS(850), + [anon_sym_WIP] = ACTIONS(850), + [anon_sym_NOTE] = ACTIONS(853), + [anon_sym_INFO] = ACTIONS(853), + [anon_sym_XXX] = ACTIONS(853), + [sym_fixme] = ACTIONS(829), + [sym__whitespace1] = ACTIONS(856), + [sym__newline] = ACTIONS(859), + [aux_sym__text_token1] = ACTIONS(862), + [sym__verbatim_begin] = ACTIONS(865), + [sym_insert_end] = ACTIONS(354), + }, + [71] = { + [sym__inline] = STATE(932), + [sym__element] = STATE(46), + [sym_emphasis] = STATE(147), [sym_emphasis_begin] = STATE(1217), - [sym_strong] = STATE(139), + [sym_strong] = STATE(147), [sym_strong_begin] = STATE(1218), - [sym_superscript] = STATE(139), + [sym_superscript] = STATE(147), [sym_superscript_begin] = STATE(1219), - [sym_subscript] = STATE(139), + [sym_subscript] = STATE(147), [sym_subscript_begin] = STATE(1220), - [sym_highlighted] = STATE(139), + [sym_highlighted] = STATE(147), [sym_highlighted_begin] = STATE(1221), - [sym_insert] = STATE(139), + [sym_insert] = STATE(147), [sym_insert_begin] = STATE(1222), - [sym_delete] = STATE(139), + [sym_delete] = STATE(147), [sym_delete_begin] = STATE(1223), - [sym_hard_line_break] = STATE(139), - [sym__smart_punctuation] = STATE(139), - [sym_autolink] = STATE(139), - [sym_footnote_reference] = STATE(139), + [sym_hard_line_break] = STATE(147), + [sym__smart_punctuation] = STATE(147), + [sym_autolink] = STATE(147), + [sym_footnote_reference] = STATE(147), [sym_footnote_marker_begin] = STATE(1224), - [sym__image] = STATE(139), - [sym_full_reference_image] = STATE(139), - [sym_collapsed_reference_image] = STATE(139), - [sym_inline_image] = STATE(139), - [sym__image_description] = STATE(678), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(139), - [sym_full_reference_link] = STATE(139), - [sym_collapsed_reference_link] = STATE(139), - [sym_inline_link] = STATE(139), - [sym_link_text] = STATE(677), - [sym_span] = STATE(112), - [sym__bracketed_text] = STATE(663), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(139), - [sym_raw_inline] = STATE(139), - [sym_math] = STATE(139), - [sym_verbatim] = STATE(139), - [sym__todo_highlights] = STATE(139), - [sym_todo] = STATE(139), - [sym_note] = STATE(139), - [sym__symbol_fallback] = STATE(139), - [aux_sym__text] = STATE(121), - [aux_sym__inline_repeat1] = STATE(112), - [anon_sym_LBRACE_] = ACTIONS(49), - [anon_sym__] = ACTIONS(51), - [anon_sym_LBRACE_STAR] = ACTIONS(53), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_LBRACE_CARET] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(57), - [anon_sym_LBRACE_TILDE] = ACTIONS(59), - [anon_sym_TILDE] = ACTIONS(59), - [anon_sym_LBRACE_EQ] = ACTIONS(61), - [anon_sym_LBRACE_PLUS] = ACTIONS(63), - [anon_sym_LBRACE_DASH] = ACTIONS(65), - [anon_sym_BSLASH] = ACTIONS(67), - [sym_quotation_marks] = ACTIONS(69), - [sym_ellipsis] = ACTIONS(69), - [sym_em_dash] = ACTIONS(69), - [sym_en_dash] = ACTIONS(71), - [sym_backslash_escape] = ACTIONS(71), - [anon_sym_LT] = ACTIONS(73), - [sym_symbol] = ACTIONS(69), - [anon_sym_LBRACK_CARET] = ACTIONS(75), - [anon_sym_BANG_LBRACK] = ACTIONS(77), - [anon_sym_LBRACK] = ACTIONS(79), - [anon_sym_DOLLAR] = ACTIONS(81), - [anon_sym_TODO] = ACTIONS(83), - [anon_sym_WIP] = ACTIONS(83), - [anon_sym_NOTE] = ACTIONS(85), - [anon_sym_INFO] = ACTIONS(85), - [anon_sym_XXX] = ACTIONS(85), - [sym_fixme] = ACTIONS(69), - [sym__whitespace1] = ACTIONS(87), - [sym__newline] = ACTIONS(799), - [aux_sym__text_token1] = ACTIONS(91), - [sym__verbatim_begin] = ACTIONS(93), - [sym__image_description_end] = ACTIONS(143), - }, - [71] = { - [sym__element] = STATE(71), - [sym_emphasis] = STATE(142), - [sym_emphasis_begin] = STATE(1129), - [sym_strong] = STATE(142), - [sym_strong_begin] = STATE(1128), - [sym_superscript] = STATE(142), - [sym_superscript_begin] = STATE(1127), - [sym_subscript] = STATE(142), - [sym_subscript_begin] = STATE(1120), - [sym_highlighted] = STATE(142), - [sym_highlighted_begin] = STATE(1118), - [sym_insert] = STATE(142), - [sym_insert_begin] = STATE(1117), - [sym_delete] = STATE(142), - [sym_delete_begin] = STATE(1116), - [sym_hard_line_break] = STATE(142), - [sym__smart_punctuation] = STATE(142), - [sym_autolink] = STATE(142), - [sym_footnote_reference] = STATE(142), - [sym_footnote_marker_begin] = STATE(1115), - [sym__image] = STATE(142), - [sym_full_reference_image] = STATE(142), - [sym_collapsed_reference_image] = STATE(142), - [sym_inline_image] = STATE(142), - [sym__image_description] = STATE(685), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(142), - [sym_full_reference_link] = STATE(142), - [sym_collapsed_reference_link] = STATE(142), - [sym_inline_link] = STATE(142), - [sym_link_text] = STATE(692), - [sym_span] = STATE(71), - [sym__bracketed_text] = STATE(668), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(142), - [sym_raw_inline] = STATE(142), - [sym_math] = STATE(142), - [sym_verbatim] = STATE(142), - [sym__todo_highlights] = STATE(142), - [sym_todo] = STATE(142), - [sym_note] = STATE(142), - [sym__symbol_fallback] = STATE(142), - [aux_sym__text] = STATE(130), - [aux_sym__inline_repeat1] = STATE(71), - [ts_builtin_sym_end] = ACTIONS(540), - [anon_sym_LBRACE_] = ACTIONS(801), - [anon_sym__] = ACTIONS(804), - [anon_sym_LBRACE_STAR] = ACTIONS(807), - [anon_sym_STAR] = ACTIONS(810), - [anon_sym_LBRACE_CARET] = ACTIONS(813), - [anon_sym_CARET] = ACTIONS(813), - [anon_sym_LBRACE_TILDE] = ACTIONS(816), - [anon_sym_TILDE] = ACTIONS(816), - [anon_sym_LBRACE_EQ] = ACTIONS(819), - [anon_sym_LBRACE_PLUS] = ACTIONS(822), - [anon_sym_LBRACE_DASH] = ACTIONS(825), - [anon_sym_BSLASH] = ACTIONS(828), - [sym_quotation_marks] = ACTIONS(831), - [sym_ellipsis] = ACTIONS(831), - [sym_em_dash] = ACTIONS(831), - [sym_en_dash] = ACTIONS(834), - [sym_backslash_escape] = ACTIONS(834), - [anon_sym_LT] = ACTIONS(837), - [sym_symbol] = ACTIONS(831), - [anon_sym_LBRACK_CARET] = ACTIONS(840), - [anon_sym_BANG_LBRACK] = ACTIONS(843), - [anon_sym_LBRACK] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(849), - [anon_sym_TODO] = ACTIONS(852), - [anon_sym_WIP] = ACTIONS(852), - [anon_sym_NOTE] = ACTIONS(855), - [anon_sym_INFO] = ACTIONS(855), - [anon_sym_XXX] = ACTIONS(855), - [sym_fixme] = ACTIONS(831), - [sym__whitespace1] = ACTIONS(858), - [sym__newline] = ACTIONS(861), - [aux_sym__text_token1] = ACTIONS(864), - [sym__verbatim_begin] = ACTIONS(867), + [sym__image] = STATE(147), + [sym_full_reference_image] = STATE(147), + [sym_collapsed_reference_image] = STATE(147), + [sym_inline_image] = STATE(147), + [sym_image_description] = STATE(699), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(147), + [sym_full_reference_link] = STATE(147), + [sym_collapsed_reference_link] = STATE(147), + [sym_inline_link] = STATE(147), + [sym_link_text] = STATE(698), + [sym_span] = STATE(46), + [sym__bracketed_text_begin] = STATE(1268), + [sym__comment_with_spaces] = STATE(147), + [sym_raw_inline] = STATE(147), + [sym_math] = STATE(147), + [sym_verbatim] = STATE(147), + [sym__todo_highlights] = STATE(147), + [sym_todo] = STATE(147), + [sym_note] = STATE(147), + [sym__symbol_fallback] = STATE(147), + [aux_sym__text] = STATE(132), + [aux_sym__inline_repeat1] = STATE(46), + [anon_sym_LBRACE_] = ACTIONS(189), + [anon_sym__] = ACTIONS(191), + [anon_sym_LBRACE_STAR] = ACTIONS(193), + [anon_sym_STAR] = ACTIONS(195), + [anon_sym_LBRACE_CARET] = ACTIONS(197), + [anon_sym_CARET] = ACTIONS(197), + [anon_sym_LBRACE_TILDE] = ACTIONS(199), + [anon_sym_TILDE] = ACTIONS(199), + [anon_sym_LBRACE_EQ] = ACTIONS(201), + [anon_sym_LBRACE_PLUS] = ACTIONS(203), + [anon_sym_LBRACE_DASH] = ACTIONS(205), + [anon_sym_BSLASH] = ACTIONS(207), + [sym_quotation_marks] = ACTIONS(209), + [sym_ellipsis] = ACTIONS(209), + [sym_em_dash] = ACTIONS(209), + [sym_en_dash] = ACTIONS(211), + [sym_backslash_escape] = ACTIONS(211), + [anon_sym_LT] = ACTIONS(213), + [sym_symbol] = ACTIONS(209), + [anon_sym_LBRACK_CARET] = ACTIONS(215), + [anon_sym_BANG_LBRACK] = ACTIONS(217), + [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_DOLLAR] = ACTIONS(221), + [anon_sym_TODO] = ACTIONS(223), + [anon_sym_WIP] = ACTIONS(223), + [anon_sym_NOTE] = ACTIONS(225), + [anon_sym_INFO] = ACTIONS(225), + [anon_sym_XXX] = ACTIONS(225), + [sym_fixme] = ACTIONS(209), + [sym__whitespace1] = ACTIONS(227), + [sym__newline] = ACTIONS(229), + [aux_sym__text_token1] = ACTIONS(231), + [sym__verbatim_begin] = ACTIONS(233), }, [72] = { - [sym__element] = STATE(64), - [sym_emphasis] = STATE(135), - [sym_emphasis_begin] = STATE(1177), - [sym_strong] = STATE(135), - [sym_strong_begin] = STATE(1178), - [sym_superscript] = STATE(135), - [sym_superscript_begin] = STATE(1179), - [sym_subscript] = STATE(135), - [sym_subscript_begin] = STATE(1180), - [sym_highlighted] = STATE(135), - [sym_highlighted_begin] = STATE(1181), - [sym_insert] = STATE(135), - [sym_insert_begin] = STATE(1182), - [sym_delete] = STATE(135), - [sym_delete_begin] = STATE(1183), - [sym_hard_line_break] = STATE(135), - [sym__smart_punctuation] = STATE(135), - [sym_autolink] = STATE(135), - [sym_footnote_reference] = STATE(135), - [sym_footnote_marker_begin] = STATE(1184), - [sym__image] = STATE(135), - [sym_full_reference_image] = STATE(135), - [sym_collapsed_reference_image] = STATE(135), - [sym_inline_image] = STATE(135), - [sym__image_description] = STATE(687), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(135), - [sym_full_reference_link] = STATE(135), - [sym_collapsed_reference_link] = STATE(135), - [sym_inline_link] = STATE(135), - [sym_link_text] = STATE(684), - [sym_span] = STATE(64), - [sym__bracketed_text] = STATE(670), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(135), - [sym_raw_inline] = STATE(135), - [sym_math] = STATE(135), - [sym_verbatim] = STATE(135), - [sym__todo_highlights] = STATE(135), - [sym_todo] = STATE(135), - [sym_note] = STATE(135), - [sym__symbol_fallback] = STATE(135), - [aux_sym__text] = STATE(124), - [aux_sym__inline_repeat1] = STATE(64), - [anon_sym_LBRACE_] = ACTIONS(239), - [anon_sym__] = ACTIONS(241), - [anon_sym_LBRACE_STAR] = ACTIONS(243), - [anon_sym_STAR] = ACTIONS(245), - [anon_sym_LBRACE_CARET] = ACTIONS(247), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_LBRACE_TILDE] = ACTIONS(249), - [anon_sym_TILDE] = ACTIONS(249), - [anon_sym_LBRACE_EQ] = ACTIONS(251), - [anon_sym_LBRACE_PLUS] = ACTIONS(253), - [anon_sym_LBRACE_DASH] = ACTIONS(255), - [anon_sym_BSLASH] = ACTIONS(257), - [sym_quotation_marks] = ACTIONS(259), - [sym_ellipsis] = ACTIONS(259), - [sym_em_dash] = ACTIONS(259), - [sym_en_dash] = ACTIONS(261), - [sym_backslash_escape] = ACTIONS(261), - [anon_sym_LT] = ACTIONS(263), - [sym_symbol] = ACTIONS(259), - [anon_sym_LBRACK_CARET] = ACTIONS(265), - [anon_sym_BANG_LBRACK] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(269), - [anon_sym_DOLLAR] = ACTIONS(271), - [anon_sym_TODO] = ACTIONS(273), - [anon_sym_WIP] = ACTIONS(273), - [anon_sym_NOTE] = ACTIONS(275), - [anon_sym_INFO] = ACTIONS(275), - [anon_sym_XXX] = ACTIONS(275), - [sym_fixme] = ACTIONS(259), - [sym__whitespace1] = ACTIONS(277), - [sym__newline] = ACTIONS(870), - [aux_sym__text_token1] = ACTIONS(281), - [sym__verbatim_begin] = ACTIONS(283), - [sym_subscript_end] = ACTIONS(143), + [sym__inline] = STATE(918), + [sym__element] = STATE(84), + [sym_emphasis] = STATE(146), + [sym_emphasis_begin] = STATE(1226), + [sym_strong] = STATE(146), + [sym_strong_begin] = STATE(1227), + [sym_superscript] = STATE(146), + [sym_superscript_begin] = STATE(1228), + [sym_subscript] = STATE(146), + [sym_subscript_begin] = STATE(1229), + [sym_highlighted] = STATE(146), + [sym_highlighted_begin] = STATE(1230), + [sym_insert] = STATE(146), + [sym_insert_begin] = STATE(1231), + [sym_delete] = STATE(146), + [sym_delete_begin] = STATE(1232), + [sym_hard_line_break] = STATE(146), + [sym__smart_punctuation] = STATE(146), + [sym_autolink] = STATE(146), + [sym_footnote_reference] = STATE(146), + [sym_footnote_marker_begin] = STATE(1233), + [sym__image] = STATE(146), + [sym_full_reference_image] = STATE(146), + [sym_collapsed_reference_image] = STATE(146), + [sym_inline_image] = STATE(146), + [sym_image_description] = STATE(694), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(146), + [sym_full_reference_link] = STATE(146), + [sym_collapsed_reference_link] = STATE(146), + [sym_inline_link] = STATE(146), + [sym_link_text] = STATE(693), + [sym_span] = STATE(84), + [sym__bracketed_text_begin] = STATE(1269), + [sym__comment_with_spaces] = STATE(146), + [sym_raw_inline] = STATE(146), + [sym_math] = STATE(146), + [sym_verbatim] = STATE(146), + [sym__todo_highlights] = STATE(146), + [sym_todo] = STATE(146), + [sym_note] = STATE(146), + [sym__symbol_fallback] = STATE(146), + [aux_sym__text] = STATE(141), + [aux_sym__inline_repeat1] = STATE(84), + [anon_sym_LBRACE_] = ACTIONS(356), + [anon_sym__] = ACTIONS(358), + [anon_sym_LBRACE_STAR] = ACTIONS(360), + [anon_sym_STAR] = ACTIONS(362), + [anon_sym_LBRACE_CARET] = ACTIONS(364), + [anon_sym_CARET] = ACTIONS(364), + [anon_sym_LBRACE_TILDE] = ACTIONS(366), + [anon_sym_TILDE] = ACTIONS(366), + [anon_sym_LBRACE_EQ] = ACTIONS(368), + [anon_sym_LBRACE_PLUS] = ACTIONS(370), + [anon_sym_LBRACE_DASH] = ACTIONS(372), + [anon_sym_BSLASH] = ACTIONS(374), + [sym_quotation_marks] = ACTIONS(376), + [sym_ellipsis] = ACTIONS(376), + [sym_em_dash] = ACTIONS(376), + [sym_en_dash] = ACTIONS(378), + [sym_backslash_escape] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [sym_symbol] = ACTIONS(376), + [anon_sym_LBRACK_CARET] = ACTIONS(382), + [anon_sym_BANG_LBRACK] = ACTIONS(384), + [anon_sym_LBRACK] = ACTIONS(386), + [anon_sym_DOLLAR] = ACTIONS(388), + [anon_sym_TODO] = ACTIONS(390), + [anon_sym_WIP] = ACTIONS(390), + [anon_sym_NOTE] = ACTIONS(392), + [anon_sym_INFO] = ACTIONS(392), + [anon_sym_XXX] = ACTIONS(392), + [sym_fixme] = ACTIONS(376), + [sym__whitespace1] = ACTIONS(394), + [sym__newline] = ACTIONS(396), + [aux_sym__text_token1] = ACTIONS(398), + [sym__verbatim_begin] = ACTIONS(400), }, [73] = { - [sym__inline] = STATE(981), - [sym__element] = STATE(14), - [sym_emphasis] = STATE(133), - [sym_emphasis_begin] = STATE(1201), - [sym_strong] = STATE(133), - [sym_strong_begin] = STATE(1202), - [sym_superscript] = STATE(133), - [sym_superscript_begin] = STATE(1203), - [sym_subscript] = STATE(133), - [sym_subscript_begin] = STATE(1204), - [sym_highlighted] = STATE(133), - [sym_highlighted_begin] = STATE(1205), - [sym_insert] = STATE(133), - [sym_insert_begin] = STATE(1206), - [sym_delete] = STATE(133), - [sym_delete_begin] = STATE(1207), - [sym_hard_line_break] = STATE(133), - [sym__smart_punctuation] = STATE(133), - [sym_autolink] = STATE(133), - [sym_footnote_reference] = STATE(133), - [sym_footnote_marker_begin] = STATE(1208), - [sym__image] = STATE(133), - [sym_full_reference_image] = STATE(133), - [sym_collapsed_reference_image] = STATE(133), - [sym_inline_image] = STATE(133), - [sym__image_description] = STATE(688), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(133), - [sym_full_reference_link] = STATE(133), - [sym_collapsed_reference_link] = STATE(133), - [sym_inline_link] = STATE(133), - [sym_link_text] = STATE(686), - [sym_span] = STATE(14), - [sym__bracketed_text] = STATE(673), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(133), - [sym_raw_inline] = STATE(133), - [sym_math] = STATE(133), - [sym_verbatim] = STATE(133), - [sym__todo_highlights] = STATE(133), - [sym_todo] = STATE(133), - [sym_note] = STATE(133), - [sym__symbol_fallback] = STATE(133), - [aux_sym__text] = STATE(129), - [aux_sym__inline_repeat1] = STATE(14), - [anon_sym_LBRACE_] = ACTIONS(423), - [anon_sym__] = ACTIONS(425), - [anon_sym_LBRACE_STAR] = ACTIONS(427), - [anon_sym_STAR] = ACTIONS(429), - [anon_sym_LBRACE_CARET] = ACTIONS(431), - [anon_sym_CARET] = ACTIONS(431), - [anon_sym_LBRACE_TILDE] = ACTIONS(433), - [anon_sym_TILDE] = ACTIONS(433), - [anon_sym_LBRACE_EQ] = ACTIONS(435), - [anon_sym_LBRACE_PLUS] = ACTIONS(437), - [anon_sym_LBRACE_DASH] = ACTIONS(439), - [anon_sym_BSLASH] = ACTIONS(441), - [sym_quotation_marks] = ACTIONS(443), - [sym_ellipsis] = ACTIONS(443), - [sym_em_dash] = ACTIONS(443), - [sym_en_dash] = ACTIONS(445), - [sym_backslash_escape] = ACTIONS(445), - [anon_sym_LT] = ACTIONS(447), - [sym_symbol] = ACTIONS(443), - [anon_sym_LBRACK_CARET] = ACTIONS(449), - [anon_sym_BANG_LBRACK] = ACTIONS(451), - [anon_sym_LBRACK] = ACTIONS(453), - [anon_sym_DOLLAR] = ACTIONS(455), - [anon_sym_TODO] = ACTIONS(457), - [anon_sym_WIP] = ACTIONS(457), - [anon_sym_NOTE] = ACTIONS(459), - [anon_sym_INFO] = ACTIONS(459), - [anon_sym_XXX] = ACTIONS(459), - [sym_fixme] = ACTIONS(443), - [sym__whitespace1] = ACTIONS(461), - [sym__newline] = ACTIONS(469), - [aux_sym__text_token1] = ACTIONS(465), - [sym__verbatim_begin] = ACTIONS(467), + [sym__inline_without_trailing_space] = STATE(1047), + [sym__element] = STATE(623), + [sym_emphasis] = STATE(148), + [sym_emphasis_begin] = STATE(1163), + [sym_strong] = STATE(148), + [sym_strong_begin] = STATE(1164), + [sym_superscript] = STATE(148), + [sym_superscript_begin] = STATE(1165), + [sym_subscript] = STATE(148), + [sym_subscript_begin] = STATE(1166), + [sym_highlighted] = STATE(148), + [sym_highlighted_begin] = STATE(1167), + [sym_insert] = STATE(148), + [sym_insert_begin] = STATE(1168), + [sym_delete] = STATE(148), + [sym_delete_begin] = STATE(1169), + [sym_hard_line_break] = STATE(148), + [sym__smart_punctuation] = STATE(148), + [sym_autolink] = STATE(148), + [sym_footnote_reference] = STATE(148), + [sym_footnote_marker_begin] = STATE(1170), + [sym__image] = STATE(148), + [sym_full_reference_image] = STATE(148), + [sym_collapsed_reference_image] = STATE(148), + [sym_inline_image] = STATE(148), + [sym_image_description] = STATE(712), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(148), + [sym_full_reference_link] = STATE(148), + [sym_collapsed_reference_link] = STATE(148), + [sym_inline_link] = STATE(148), + [sym_link_text] = STATE(713), + [sym_span] = STATE(623), + [sym__bracketed_text_begin] = STATE(1262), + [sym__comment_with_spaces] = STATE(148), + [sym_raw_inline] = STATE(148), + [sym_math] = STATE(148), + [sym_verbatim] = STATE(148), + [sym__todo_highlights] = STATE(148), + [sym_todo] = STATE(148), + [sym_note] = STATE(148), + [sym__symbol_fallback] = STATE(148), + [aux_sym__text] = STATE(136), + [aux_sym__inline_repeat1] = STATE(129), + [anon_sym_LBRACE_] = ACTIONS(402), + [anon_sym__] = ACTIONS(404), + [anon_sym_LBRACE_STAR] = ACTIONS(406), + [anon_sym_STAR] = ACTIONS(408), + [anon_sym_LBRACE_CARET] = ACTIONS(410), + [anon_sym_CARET] = ACTIONS(410), + [anon_sym_LBRACE_TILDE] = ACTIONS(412), + [anon_sym_TILDE] = ACTIONS(412), + [anon_sym_LBRACE_EQ] = ACTIONS(414), + [anon_sym_LBRACE_PLUS] = ACTIONS(416), + [anon_sym_LBRACE_DASH] = ACTIONS(418), + [anon_sym_BSLASH] = ACTIONS(420), + [sym_quotation_marks] = ACTIONS(422), + [sym_ellipsis] = ACTIONS(422), + [sym_em_dash] = ACTIONS(422), + [sym_en_dash] = ACTIONS(424), + [sym_backslash_escape] = ACTIONS(424), + [anon_sym_LT] = ACTIONS(426), + [sym_symbol] = ACTIONS(422), + [anon_sym_LBRACK_CARET] = ACTIONS(428), + [anon_sym_BANG_LBRACK] = ACTIONS(430), + [anon_sym_LBRACK] = ACTIONS(432), + [anon_sym_DOLLAR] = ACTIONS(434), + [anon_sym_TODO] = ACTIONS(436), + [anon_sym_WIP] = ACTIONS(436), + [anon_sym_NOTE] = ACTIONS(438), + [anon_sym_INFO] = ACTIONS(438), + [anon_sym_XXX] = ACTIONS(438), + [sym_fixme] = ACTIONS(422), + [sym__whitespace1] = ACTIONS(440), + [sym__newline] = ACTIONS(442), + [aux_sym__text_token1] = ACTIONS(444), + [sym__verbatim_begin] = ACTIONS(446), }, [74] = { - [sym__element] = STATE(74), - [sym_emphasis] = STATE(136), - [sym_emphasis_begin] = STATE(1209), - [sym_strong] = STATE(136), - [sym_strong_begin] = STATE(1210), - [sym_superscript] = STATE(136), - [sym_superscript_begin] = STATE(1211), - [sym_subscript] = STATE(136), - [sym_subscript_begin] = STATE(1212), - [sym_highlighted] = STATE(136), - [sym_highlighted_begin] = STATE(1213), - [sym_insert] = STATE(136), - [sym_insert_begin] = STATE(1214), - [sym_delete] = STATE(136), - [sym_delete_begin] = STATE(1215), - [sym_hard_line_break] = STATE(136), - [sym__smart_punctuation] = STATE(136), - [sym_autolink] = STATE(136), - [sym_footnote_reference] = STATE(136), - [sym_footnote_marker_begin] = STATE(1216), - [sym__image] = STATE(136), - [sym_full_reference_image] = STATE(136), - [sym_collapsed_reference_image] = STATE(136), - [sym_inline_image] = STATE(136), - [sym__image_description] = STATE(682), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(136), - [sym_full_reference_link] = STATE(136), - [sym_collapsed_reference_link] = STATE(136), - [sym_inline_link] = STATE(136), - [sym_link_text] = STATE(675), - [sym_span] = STATE(74), - [sym__bracketed_text] = STATE(674), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(136), - [sym_raw_inline] = STATE(136), - [sym_math] = STATE(136), - [sym_verbatim] = STATE(136), - [sym__todo_highlights] = STATE(136), - [sym_todo] = STATE(136), - [sym_note] = STATE(136), - [sym__symbol_fallback] = STATE(136), - [aux_sym__text] = STATE(127), - [aux_sym__inline_repeat1] = STATE(74), - [anon_sym_LBRACE_] = ACTIONS(872), - [anon_sym__] = ACTIONS(875), - [anon_sym_LBRACE_STAR] = ACTIONS(878), - [anon_sym_STAR] = ACTIONS(881), - [anon_sym_LBRACE_CARET] = ACTIONS(884), - [anon_sym_CARET] = ACTIONS(884), - [anon_sym_LBRACE_TILDE] = ACTIONS(887), - [anon_sym_TILDE] = ACTIONS(887), - [anon_sym_LBRACE_EQ] = ACTIONS(890), - [anon_sym_LBRACE_PLUS] = ACTIONS(893), - [anon_sym_LBRACE_DASH] = ACTIONS(896), - [anon_sym_BSLASH] = ACTIONS(899), - [sym_quotation_marks] = ACTIONS(902), - [sym_ellipsis] = ACTIONS(902), - [sym_em_dash] = ACTIONS(902), - [sym_en_dash] = ACTIONS(905), - [sym_backslash_escape] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(908), - [sym_symbol] = ACTIONS(902), - [anon_sym_LBRACK_CARET] = ACTIONS(911), - [anon_sym_BANG_LBRACK] = ACTIONS(914), - [anon_sym_LBRACK] = ACTIONS(917), - [anon_sym_RBRACK] = ACTIONS(540), - [anon_sym_DOLLAR] = ACTIONS(920), - [anon_sym_TODO] = ACTIONS(923), - [anon_sym_WIP] = ACTIONS(923), - [anon_sym_NOTE] = ACTIONS(926), - [anon_sym_INFO] = ACTIONS(926), - [anon_sym_XXX] = ACTIONS(926), - [sym_fixme] = ACTIONS(902), - [sym__whitespace1] = ACTIONS(929), - [sym__newline] = ACTIONS(932), - [aux_sym__text_token1] = ACTIONS(935), - [sym__verbatim_begin] = ACTIONS(938), + [sym__inline_without_trailing_space] = STATE(1054), + [sym__element] = STATE(570), + [sym_emphasis] = STATE(152), + [sym_emphasis_begin] = STATE(1172), + [sym_strong] = STATE(152), + [sym_strong_begin] = STATE(1173), + [sym_superscript] = STATE(152), + [sym_superscript_begin] = STATE(1174), + [sym_subscript] = STATE(152), + [sym_subscript_begin] = STATE(1175), + [sym_highlighted] = STATE(152), + [sym_highlighted_begin] = STATE(1176), + [sym_insert] = STATE(152), + [sym_insert_begin] = STATE(1177), + [sym_delete] = STATE(152), + [sym_delete_begin] = STATE(1178), + [sym_hard_line_break] = STATE(152), + [sym__smart_punctuation] = STATE(152), + [sym_autolink] = STATE(152), + [sym_footnote_reference] = STATE(152), + [sym_footnote_marker_begin] = STATE(1179), + [sym__image] = STATE(152), + [sym_full_reference_image] = STATE(152), + [sym_collapsed_reference_image] = STATE(152), + [sym_inline_image] = STATE(152), + [sym_image_description] = STATE(704), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(152), + [sym_full_reference_link] = STATE(152), + [sym_collapsed_reference_link] = STATE(152), + [sym_inline_link] = STATE(152), + [sym_link_text] = STATE(706), + [sym_span] = STATE(570), + [sym__bracketed_text_begin] = STATE(1263), + [sym__comment_with_spaces] = STATE(152), + [sym_raw_inline] = STATE(152), + [sym_math] = STATE(152), + [sym_verbatim] = STATE(152), + [sym__todo_highlights] = STATE(152), + [sym_todo] = STATE(152), + [sym_note] = STATE(152), + [sym__symbol_fallback] = STATE(152), + [aux_sym__text] = STATE(133), + [aux_sym__inline_repeat1] = STATE(130), + [anon_sym_LBRACE_] = ACTIONS(448), + [anon_sym__] = ACTIONS(450), + [anon_sym_LBRACE_STAR] = ACTIONS(452), + [anon_sym_STAR] = ACTIONS(454), + [anon_sym_LBRACE_CARET] = ACTIONS(456), + [anon_sym_CARET] = ACTIONS(456), + [anon_sym_LBRACE_TILDE] = ACTIONS(458), + [anon_sym_TILDE] = ACTIONS(458), + [anon_sym_LBRACE_EQ] = ACTIONS(460), + [anon_sym_LBRACE_PLUS] = ACTIONS(462), + [anon_sym_LBRACE_DASH] = ACTIONS(464), + [anon_sym_BSLASH] = ACTIONS(466), + [sym_quotation_marks] = ACTIONS(468), + [sym_ellipsis] = ACTIONS(468), + [sym_em_dash] = ACTIONS(468), + [sym_en_dash] = ACTIONS(470), + [sym_backslash_escape] = ACTIONS(470), + [anon_sym_LT] = ACTIONS(472), + [sym_symbol] = ACTIONS(468), + [anon_sym_LBRACK_CARET] = ACTIONS(474), + [anon_sym_BANG_LBRACK] = ACTIONS(476), + [anon_sym_LBRACK] = ACTIONS(478), + [anon_sym_DOLLAR] = ACTIONS(480), + [anon_sym_TODO] = ACTIONS(482), + [anon_sym_WIP] = ACTIONS(482), + [anon_sym_NOTE] = ACTIONS(484), + [anon_sym_INFO] = ACTIONS(484), + [anon_sym_XXX] = ACTIONS(484), + [sym_fixme] = ACTIONS(468), + [sym__whitespace1] = ACTIONS(486), + [sym__newline] = ACTIONS(488), + [aux_sym__text_token1] = ACTIONS(490), + [sym__verbatim_begin] = ACTIONS(492), }, [75] = { - [sym__inline] = STATE(983), - [sym__element] = STATE(47), - [sym_emphasis] = STATE(136), - [sym_emphasis_begin] = STATE(1209), - [sym_strong] = STATE(136), - [sym_strong_begin] = STATE(1210), - [sym_superscript] = STATE(136), - [sym_superscript_begin] = STATE(1211), - [sym_subscript] = STATE(136), - [sym_subscript_begin] = STATE(1212), - [sym_highlighted] = STATE(136), - [sym_highlighted_begin] = STATE(1213), - [sym_insert] = STATE(136), - [sym_insert_begin] = STATE(1214), - [sym_delete] = STATE(136), - [sym_delete_begin] = STATE(1215), - [sym_hard_line_break] = STATE(136), - [sym__smart_punctuation] = STATE(136), - [sym_autolink] = STATE(136), - [sym_footnote_reference] = STATE(136), - [sym_footnote_marker_begin] = STATE(1216), - [sym__image] = STATE(136), - [sym_full_reference_image] = STATE(136), - [sym_collapsed_reference_image] = STATE(136), - [sym_inline_image] = STATE(136), - [sym__image_description] = STATE(682), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(136), - [sym_full_reference_link] = STATE(136), - [sym_collapsed_reference_link] = STATE(136), - [sym_inline_link] = STATE(136), - [sym_link_text] = STATE(675), - [sym_span] = STATE(47), - [sym__bracketed_text] = STATE(674), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(136), - [sym_raw_inline] = STATE(136), - [sym_math] = STATE(136), - [sym_verbatim] = STATE(136), - [sym__todo_highlights] = STATE(136), - [sym_todo] = STATE(136), - [sym_note] = STATE(136), - [sym__symbol_fallback] = STATE(136), - [aux_sym__text] = STATE(127), - [aux_sym__inline_repeat1] = STATE(47), - [anon_sym_LBRACE_] = ACTIONS(377), - [anon_sym__] = ACTIONS(379), - [anon_sym_LBRACE_STAR] = ACTIONS(381), - [anon_sym_STAR] = ACTIONS(383), - [anon_sym_LBRACE_CARET] = ACTIONS(385), - [anon_sym_CARET] = ACTIONS(385), - [anon_sym_LBRACE_TILDE] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_LBRACE_EQ] = ACTIONS(389), - [anon_sym_LBRACE_PLUS] = ACTIONS(391), - [anon_sym_LBRACE_DASH] = ACTIONS(393), - [anon_sym_BSLASH] = ACTIONS(395), - [sym_quotation_marks] = ACTIONS(397), - [sym_ellipsis] = ACTIONS(397), - [sym_em_dash] = ACTIONS(397), - [sym_en_dash] = ACTIONS(399), - [sym_backslash_escape] = ACTIONS(399), - [anon_sym_LT] = ACTIONS(401), - [sym_symbol] = ACTIONS(397), - [anon_sym_LBRACK_CARET] = ACTIONS(403), - [anon_sym_BANG_LBRACK] = ACTIONS(405), - [anon_sym_LBRACK] = ACTIONS(407), - [anon_sym_DOLLAR] = ACTIONS(409), - [anon_sym_TODO] = ACTIONS(411), - [anon_sym_WIP] = ACTIONS(411), - [anon_sym_NOTE] = ACTIONS(413), - [anon_sym_INFO] = ACTIONS(413), - [anon_sym_XXX] = ACTIONS(413), - [sym_fixme] = ACTIONS(397), - [sym__whitespace1] = ACTIONS(415), - [sym__newline] = ACTIONS(417), - [aux_sym__text_token1] = ACTIONS(419), - [sym__verbatim_begin] = ACTIONS(421), + [sym__inline_without_trailing_space] = STATE(908), + [sym__element] = STATE(570), + [sym_emphasis] = STATE(152), + [sym_emphasis_begin] = STATE(1172), + [sym_strong] = STATE(152), + [sym_strong_begin] = STATE(1173), + [sym_superscript] = STATE(152), + [sym_superscript_begin] = STATE(1174), + [sym_subscript] = STATE(152), + [sym_subscript_begin] = STATE(1175), + [sym_highlighted] = STATE(152), + [sym_highlighted_begin] = STATE(1176), + [sym_insert] = STATE(152), + [sym_insert_begin] = STATE(1177), + [sym_delete] = STATE(152), + [sym_delete_begin] = STATE(1178), + [sym_hard_line_break] = STATE(152), + [sym__smart_punctuation] = STATE(152), + [sym_autolink] = STATE(152), + [sym_footnote_reference] = STATE(152), + [sym_footnote_marker_begin] = STATE(1179), + [sym__image] = STATE(152), + [sym_full_reference_image] = STATE(152), + [sym_collapsed_reference_image] = STATE(152), + [sym_inline_image] = STATE(152), + [sym_image_description] = STATE(704), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(152), + [sym_full_reference_link] = STATE(152), + [sym_collapsed_reference_link] = STATE(152), + [sym_inline_link] = STATE(152), + [sym_link_text] = STATE(706), + [sym_span] = STATE(570), + [sym__bracketed_text_begin] = STATE(1263), + [sym__comment_with_spaces] = STATE(152), + [sym_raw_inline] = STATE(152), + [sym_math] = STATE(152), + [sym_verbatim] = STATE(152), + [sym__todo_highlights] = STATE(152), + [sym_todo] = STATE(152), + [sym_note] = STATE(152), + [sym__symbol_fallback] = STATE(152), + [aux_sym__text] = STATE(133), + [aux_sym__inline_repeat1] = STATE(130), + [anon_sym_LBRACE_] = ACTIONS(448), + [anon_sym__] = ACTIONS(450), + [anon_sym_LBRACE_STAR] = ACTIONS(452), + [anon_sym_STAR] = ACTIONS(454), + [anon_sym_LBRACE_CARET] = ACTIONS(456), + [anon_sym_CARET] = ACTIONS(456), + [anon_sym_LBRACE_TILDE] = ACTIONS(458), + [anon_sym_TILDE] = ACTIONS(458), + [anon_sym_LBRACE_EQ] = ACTIONS(460), + [anon_sym_LBRACE_PLUS] = ACTIONS(462), + [anon_sym_LBRACE_DASH] = ACTIONS(464), + [anon_sym_BSLASH] = ACTIONS(466), + [sym_quotation_marks] = ACTIONS(468), + [sym_ellipsis] = ACTIONS(468), + [sym_em_dash] = ACTIONS(468), + [sym_en_dash] = ACTIONS(470), + [sym_backslash_escape] = ACTIONS(470), + [anon_sym_LT] = ACTIONS(472), + [sym_symbol] = ACTIONS(468), + [anon_sym_LBRACK_CARET] = ACTIONS(474), + [anon_sym_BANG_LBRACK] = ACTIONS(476), + [anon_sym_LBRACK] = ACTIONS(478), + [anon_sym_DOLLAR] = ACTIONS(480), + [anon_sym_TODO] = ACTIONS(482), + [anon_sym_WIP] = ACTIONS(482), + [anon_sym_NOTE] = ACTIONS(484), + [anon_sym_INFO] = ACTIONS(484), + [anon_sym_XXX] = ACTIONS(484), + [sym_fixme] = ACTIONS(468), + [sym__whitespace1] = ACTIONS(486), + [sym__newline] = ACTIONS(488), + [aux_sym__text_token1] = ACTIONS(490), + [sym__verbatim_begin] = ACTIONS(492), }, [76] = { - [sym__inline] = STATE(1143), - [sym__element] = STATE(72), - [sym_emphasis] = STATE(135), - [sym_emphasis_begin] = STATE(1177), - [sym_strong] = STATE(135), - [sym_strong_begin] = STATE(1178), - [sym_superscript] = STATE(135), - [sym_superscript_begin] = STATE(1179), - [sym_subscript] = STATE(135), - [sym_subscript_begin] = STATE(1180), - [sym_highlighted] = STATE(135), - [sym_highlighted_begin] = STATE(1181), - [sym_insert] = STATE(135), - [sym_insert_begin] = STATE(1182), - [sym_delete] = STATE(135), - [sym_delete_begin] = STATE(1183), - [sym_hard_line_break] = STATE(135), - [sym__smart_punctuation] = STATE(135), - [sym_autolink] = STATE(135), - [sym_footnote_reference] = STATE(135), - [sym_footnote_marker_begin] = STATE(1184), - [sym__image] = STATE(135), - [sym_full_reference_image] = STATE(135), - [sym_collapsed_reference_image] = STATE(135), - [sym_inline_image] = STATE(135), - [sym__image_description] = STATE(687), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(135), - [sym_full_reference_link] = STATE(135), - [sym_collapsed_reference_link] = STATE(135), - [sym_inline_link] = STATE(135), - [sym_link_text] = STATE(684), - [sym_span] = STATE(72), - [sym__bracketed_text] = STATE(670), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(135), - [sym_raw_inline] = STATE(135), - [sym_math] = STATE(135), - [sym_verbatim] = STATE(135), - [sym__todo_highlights] = STATE(135), - [sym_todo] = STATE(135), - [sym_note] = STATE(135), - [sym__symbol_fallback] = STATE(135), - [aux_sym__text] = STATE(124), - [aux_sym__inline_repeat1] = STATE(72), - [anon_sym_LBRACE_] = ACTIONS(239), - [anon_sym__] = ACTIONS(241), - [anon_sym_LBRACE_STAR] = ACTIONS(243), - [anon_sym_STAR] = ACTIONS(245), - [anon_sym_LBRACE_CARET] = ACTIONS(247), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_LBRACE_TILDE] = ACTIONS(249), - [anon_sym_TILDE] = ACTIONS(249), - [anon_sym_LBRACE_EQ] = ACTIONS(251), - [anon_sym_LBRACE_PLUS] = ACTIONS(253), - [anon_sym_LBRACE_DASH] = ACTIONS(255), - [anon_sym_BSLASH] = ACTIONS(257), - [sym_quotation_marks] = ACTIONS(259), - [sym_ellipsis] = ACTIONS(259), - [sym_em_dash] = ACTIONS(259), - [sym_en_dash] = ACTIONS(261), - [sym_backslash_escape] = ACTIONS(261), - [anon_sym_LT] = ACTIONS(263), - [sym_symbol] = ACTIONS(259), - [anon_sym_LBRACK_CARET] = ACTIONS(265), - [anon_sym_BANG_LBRACK] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(269), - [anon_sym_DOLLAR] = ACTIONS(271), - [anon_sym_TODO] = ACTIONS(273), - [anon_sym_WIP] = ACTIONS(273), - [anon_sym_NOTE] = ACTIONS(275), - [anon_sym_INFO] = ACTIONS(275), - [anon_sym_XXX] = ACTIONS(275), - [sym_fixme] = ACTIONS(259), - [sym__whitespace1] = ACTIONS(277), - [sym__newline] = ACTIONS(279), - [aux_sym__text_token1] = ACTIONS(281), - [sym__verbatim_begin] = ACTIONS(283), + [sym__inline_without_trailing_space] = STATE(907), + [sym__element] = STATE(623), + [sym_emphasis] = STATE(148), + [sym_emphasis_begin] = STATE(1163), + [sym_strong] = STATE(148), + [sym_strong_begin] = STATE(1164), + [sym_superscript] = STATE(148), + [sym_superscript_begin] = STATE(1165), + [sym_subscript] = STATE(148), + [sym_subscript_begin] = STATE(1166), + [sym_highlighted] = STATE(148), + [sym_highlighted_begin] = STATE(1167), + [sym_insert] = STATE(148), + [sym_insert_begin] = STATE(1168), + [sym_delete] = STATE(148), + [sym_delete_begin] = STATE(1169), + [sym_hard_line_break] = STATE(148), + [sym__smart_punctuation] = STATE(148), + [sym_autolink] = STATE(148), + [sym_footnote_reference] = STATE(148), + [sym_footnote_marker_begin] = STATE(1170), + [sym__image] = STATE(148), + [sym_full_reference_image] = STATE(148), + [sym_collapsed_reference_image] = STATE(148), + [sym_inline_image] = STATE(148), + [sym_image_description] = STATE(712), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(148), + [sym_full_reference_link] = STATE(148), + [sym_collapsed_reference_link] = STATE(148), + [sym_inline_link] = STATE(148), + [sym_link_text] = STATE(713), + [sym_span] = STATE(623), + [sym__bracketed_text_begin] = STATE(1262), + [sym__comment_with_spaces] = STATE(148), + [sym_raw_inline] = STATE(148), + [sym_math] = STATE(148), + [sym_verbatim] = STATE(148), + [sym__todo_highlights] = STATE(148), + [sym_todo] = STATE(148), + [sym_note] = STATE(148), + [sym__symbol_fallback] = STATE(148), + [aux_sym__text] = STATE(136), + [aux_sym__inline_repeat1] = STATE(129), + [anon_sym_LBRACE_] = ACTIONS(402), + [anon_sym__] = ACTIONS(404), + [anon_sym_LBRACE_STAR] = ACTIONS(406), + [anon_sym_STAR] = ACTIONS(408), + [anon_sym_LBRACE_CARET] = ACTIONS(410), + [anon_sym_CARET] = ACTIONS(410), + [anon_sym_LBRACE_TILDE] = ACTIONS(412), + [anon_sym_TILDE] = ACTIONS(412), + [anon_sym_LBRACE_EQ] = ACTIONS(414), + [anon_sym_LBRACE_PLUS] = ACTIONS(416), + [anon_sym_LBRACE_DASH] = ACTIONS(418), + [anon_sym_BSLASH] = ACTIONS(420), + [sym_quotation_marks] = ACTIONS(422), + [sym_ellipsis] = ACTIONS(422), + [sym_em_dash] = ACTIONS(422), + [sym_en_dash] = ACTIONS(424), + [sym_backslash_escape] = ACTIONS(424), + [anon_sym_LT] = ACTIONS(426), + [sym_symbol] = ACTIONS(422), + [anon_sym_LBRACK_CARET] = ACTIONS(428), + [anon_sym_BANG_LBRACK] = ACTIONS(430), + [anon_sym_LBRACK] = ACTIONS(432), + [anon_sym_DOLLAR] = ACTIONS(434), + [anon_sym_TODO] = ACTIONS(436), + [anon_sym_WIP] = ACTIONS(436), + [anon_sym_NOTE] = ACTIONS(438), + [anon_sym_INFO] = ACTIONS(438), + [anon_sym_XXX] = ACTIONS(438), + [sym_fixme] = ACTIONS(422), + [sym__whitespace1] = ACTIONS(440), + [sym__newline] = ACTIONS(442), + [aux_sym__text_token1] = ACTIONS(444), + [sym__verbatim_begin] = ACTIONS(446), }, [77] = { - [sym__inline] = STATE(939), - [sym__element] = STATE(14), - [sym_emphasis] = STATE(133), - [sym_emphasis_begin] = STATE(1201), - [sym_strong] = STATE(133), - [sym_strong_begin] = STATE(1202), - [sym_superscript] = STATE(133), - [sym_superscript_begin] = STATE(1203), - [sym_subscript] = STATE(133), - [sym_subscript_begin] = STATE(1204), - [sym_highlighted] = STATE(133), - [sym_highlighted_begin] = STATE(1205), - [sym_insert] = STATE(133), - [sym_insert_begin] = STATE(1206), - [sym_delete] = STATE(133), - [sym_delete_begin] = STATE(1207), - [sym_hard_line_break] = STATE(133), - [sym__smart_punctuation] = STATE(133), - [sym_autolink] = STATE(133), - [sym_footnote_reference] = STATE(133), - [sym_footnote_marker_begin] = STATE(1208), - [sym__image] = STATE(133), - [sym_full_reference_image] = STATE(133), - [sym_collapsed_reference_image] = STATE(133), - [sym_inline_image] = STATE(133), - [sym__image_description] = STATE(688), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(133), - [sym_full_reference_link] = STATE(133), - [sym_collapsed_reference_link] = STATE(133), - [sym_inline_link] = STATE(133), - [sym_link_text] = STATE(686), - [sym_span] = STATE(14), - [sym__bracketed_text] = STATE(673), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(133), - [sym_raw_inline] = STATE(133), - [sym_math] = STATE(133), - [sym_verbatim] = STATE(133), - [sym__todo_highlights] = STATE(133), - [sym_todo] = STATE(133), - [sym_note] = STATE(133), - [sym__symbol_fallback] = STATE(133), - [aux_sym__text] = STATE(129), - [aux_sym__inline_repeat1] = STATE(14), - [anon_sym_LBRACE_] = ACTIONS(423), - [anon_sym__] = ACTIONS(425), - [anon_sym_LBRACE_STAR] = ACTIONS(427), - [anon_sym_STAR] = ACTIONS(429), - [anon_sym_LBRACE_CARET] = ACTIONS(431), - [anon_sym_CARET] = ACTIONS(431), - [anon_sym_LBRACE_TILDE] = ACTIONS(433), - [anon_sym_TILDE] = ACTIONS(433), - [anon_sym_LBRACE_EQ] = ACTIONS(435), - [anon_sym_LBRACE_PLUS] = ACTIONS(437), - [anon_sym_LBRACE_DASH] = ACTIONS(439), - [anon_sym_BSLASH] = ACTIONS(441), - [sym_quotation_marks] = ACTIONS(443), - [sym_ellipsis] = ACTIONS(443), - [sym_em_dash] = ACTIONS(443), - [sym_en_dash] = ACTIONS(445), - [sym_backslash_escape] = ACTIONS(445), - [anon_sym_LT] = ACTIONS(447), - [sym_symbol] = ACTIONS(443), - [anon_sym_LBRACK_CARET] = ACTIONS(449), - [anon_sym_BANG_LBRACK] = ACTIONS(451), - [anon_sym_LBRACK] = ACTIONS(453), - [anon_sym_DOLLAR] = ACTIONS(455), - [anon_sym_TODO] = ACTIONS(457), - [anon_sym_WIP] = ACTIONS(457), - [anon_sym_NOTE] = ACTIONS(459), - [anon_sym_INFO] = ACTIONS(459), - [anon_sym_XXX] = ACTIONS(459), - [sym_fixme] = ACTIONS(443), - [sym__whitespace1] = ACTIONS(461), - [sym__newline] = ACTIONS(469), - [aux_sym__text_token1] = ACTIONS(465), - [sym__verbatim_begin] = ACTIONS(467), + [sym__inline] = STATE(920), + [sym__element] = STATE(84), + [sym_emphasis] = STATE(146), + [sym_emphasis_begin] = STATE(1226), + [sym_strong] = STATE(146), + [sym_strong_begin] = STATE(1227), + [sym_superscript] = STATE(146), + [sym_superscript_begin] = STATE(1228), + [sym_subscript] = STATE(146), + [sym_subscript_begin] = STATE(1229), + [sym_highlighted] = STATE(146), + [sym_highlighted_begin] = STATE(1230), + [sym_insert] = STATE(146), + [sym_insert_begin] = STATE(1231), + [sym_delete] = STATE(146), + [sym_delete_begin] = STATE(1232), + [sym_hard_line_break] = STATE(146), + [sym__smart_punctuation] = STATE(146), + [sym_autolink] = STATE(146), + [sym_footnote_reference] = STATE(146), + [sym_footnote_marker_begin] = STATE(1233), + [sym__image] = STATE(146), + [sym_full_reference_image] = STATE(146), + [sym_collapsed_reference_image] = STATE(146), + [sym_inline_image] = STATE(146), + [sym_image_description] = STATE(694), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(146), + [sym_full_reference_link] = STATE(146), + [sym_collapsed_reference_link] = STATE(146), + [sym_inline_link] = STATE(146), + [sym_link_text] = STATE(693), + [sym_span] = STATE(84), + [sym__bracketed_text_begin] = STATE(1269), + [sym__comment_with_spaces] = STATE(146), + [sym_raw_inline] = STATE(146), + [sym_math] = STATE(146), + [sym_verbatim] = STATE(146), + [sym__todo_highlights] = STATE(146), + [sym_todo] = STATE(146), + [sym_note] = STATE(146), + [sym__symbol_fallback] = STATE(146), + [aux_sym__text] = STATE(141), + [aux_sym__inline_repeat1] = STATE(84), + [anon_sym_LBRACE_] = ACTIONS(356), + [anon_sym__] = ACTIONS(358), + [anon_sym_LBRACE_STAR] = ACTIONS(360), + [anon_sym_STAR] = ACTIONS(362), + [anon_sym_LBRACE_CARET] = ACTIONS(364), + [anon_sym_CARET] = ACTIONS(364), + [anon_sym_LBRACE_TILDE] = ACTIONS(366), + [anon_sym_TILDE] = ACTIONS(366), + [anon_sym_LBRACE_EQ] = ACTIONS(368), + [anon_sym_LBRACE_PLUS] = ACTIONS(370), + [anon_sym_LBRACE_DASH] = ACTIONS(372), + [anon_sym_BSLASH] = ACTIONS(374), + [sym_quotation_marks] = ACTIONS(376), + [sym_ellipsis] = ACTIONS(376), + [sym_em_dash] = ACTIONS(376), + [sym_en_dash] = ACTIONS(378), + [sym_backslash_escape] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [sym_symbol] = ACTIONS(376), + [anon_sym_LBRACK_CARET] = ACTIONS(382), + [anon_sym_BANG_LBRACK] = ACTIONS(384), + [anon_sym_LBRACK] = ACTIONS(386), + [anon_sym_DOLLAR] = ACTIONS(388), + [anon_sym_TODO] = ACTIONS(390), + [anon_sym_WIP] = ACTIONS(390), + [anon_sym_NOTE] = ACTIONS(392), + [anon_sym_INFO] = ACTIONS(392), + [anon_sym_XXX] = ACTIONS(392), + [sym_fixme] = ACTIONS(376), + [sym__whitespace1] = ACTIONS(394), + [sym__newline] = ACTIONS(396), + [aux_sym__text_token1] = ACTIONS(398), + [sym__verbatim_begin] = ACTIONS(400), }, [78] = { - [sym__inline] = STATE(952), - [sym__element] = STATE(3), - [sym_emphasis] = STATE(137), - [sym_emphasis_begin] = STATE(1193), - [sym_strong] = STATE(137), - [sym_strong_begin] = STATE(1194), - [sym_superscript] = STATE(137), - [sym_superscript_begin] = STATE(1195), - [sym_subscript] = STATE(137), - [sym_subscript_begin] = STATE(1196), - [sym_highlighted] = STATE(137), - [sym_highlighted_begin] = STATE(1197), - [sym_insert] = STATE(137), - [sym_insert_begin] = STATE(1198), - [sym_delete] = STATE(137), - [sym_delete_begin] = STATE(1199), - [sym_hard_line_break] = STATE(137), - [sym__smart_punctuation] = STATE(137), - [sym_autolink] = STATE(137), - [sym_footnote_reference] = STATE(137), - [sym_footnote_marker_begin] = STATE(1200), - [sym__image] = STATE(137), - [sym_full_reference_image] = STATE(137), - [sym_collapsed_reference_image] = STATE(137), - [sym_inline_image] = STATE(137), - [sym__image_description] = STATE(694), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(137), - [sym_full_reference_link] = STATE(137), - [sym_collapsed_reference_link] = STATE(137), - [sym_inline_link] = STATE(137), - [sym_link_text] = STATE(693), - [sym_span] = STATE(3), - [sym__bracketed_text] = STATE(672), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(137), - [sym_raw_inline] = STATE(137), - [sym_math] = STATE(137), - [sym_verbatim] = STATE(137), - [sym__todo_highlights] = STATE(137), - [sym_todo] = STATE(137), - [sym_note] = STATE(137), - [sym__symbol_fallback] = STATE(137), - [aux_sym__text] = STATE(131), - [aux_sym__inline_repeat1] = STATE(3), + [sym__inline] = STATE(922), + [sym__element] = STATE(46), + [sym_emphasis] = STATE(147), + [sym_emphasis_begin] = STATE(1217), + [sym_strong] = STATE(147), + [sym_strong_begin] = STATE(1218), + [sym_superscript] = STATE(147), + [sym_superscript_begin] = STATE(1219), + [sym_subscript] = STATE(147), + [sym_subscript_begin] = STATE(1220), + [sym_highlighted] = STATE(147), + [sym_highlighted_begin] = STATE(1221), + [sym_insert] = STATE(147), + [sym_insert_begin] = STATE(1222), + [sym_delete] = STATE(147), + [sym_delete_begin] = STATE(1223), + [sym_hard_line_break] = STATE(147), + [sym__smart_punctuation] = STATE(147), + [sym_autolink] = STATE(147), + [sym_footnote_reference] = STATE(147), + [sym_footnote_marker_begin] = STATE(1224), + [sym__image] = STATE(147), + [sym_full_reference_image] = STATE(147), + [sym_collapsed_reference_image] = STATE(147), + [sym_inline_image] = STATE(147), + [sym_image_description] = STATE(699), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(147), + [sym_full_reference_link] = STATE(147), + [sym_collapsed_reference_link] = STATE(147), + [sym_inline_link] = STATE(147), + [sym_link_text] = STATE(698), + [sym_span] = STATE(46), + [sym__bracketed_text_begin] = STATE(1268), + [sym__comment_with_spaces] = STATE(147), + [sym_raw_inline] = STATE(147), + [sym_math] = STATE(147), + [sym_verbatim] = STATE(147), + [sym__todo_highlights] = STATE(147), + [sym_todo] = STATE(147), + [sym_note] = STATE(147), + [sym__symbol_fallback] = STATE(147), + [aux_sym__text] = STATE(132), + [aux_sym__inline_repeat1] = STATE(46), + [anon_sym_LBRACE_] = ACTIONS(189), + [anon_sym__] = ACTIONS(191), + [anon_sym_LBRACE_STAR] = ACTIONS(193), + [anon_sym_STAR] = ACTIONS(195), + [anon_sym_LBRACE_CARET] = ACTIONS(197), + [anon_sym_CARET] = ACTIONS(197), + [anon_sym_LBRACE_TILDE] = ACTIONS(199), + [anon_sym_TILDE] = ACTIONS(199), + [anon_sym_LBRACE_EQ] = ACTIONS(201), + [anon_sym_LBRACE_PLUS] = ACTIONS(203), + [anon_sym_LBRACE_DASH] = ACTIONS(205), + [anon_sym_BSLASH] = ACTIONS(207), + [sym_quotation_marks] = ACTIONS(209), + [sym_ellipsis] = ACTIONS(209), + [sym_em_dash] = ACTIONS(209), + [sym_en_dash] = ACTIONS(211), + [sym_backslash_escape] = ACTIONS(211), + [anon_sym_LT] = ACTIONS(213), + [sym_symbol] = ACTIONS(209), + [anon_sym_LBRACK_CARET] = ACTIONS(215), + [anon_sym_BANG_LBRACK] = ACTIONS(217), + [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_DOLLAR] = ACTIONS(221), + [anon_sym_TODO] = ACTIONS(223), + [anon_sym_WIP] = ACTIONS(223), + [anon_sym_NOTE] = ACTIONS(225), + [anon_sym_INFO] = ACTIONS(225), + [anon_sym_XXX] = ACTIONS(225), + [sym_fixme] = ACTIONS(209), + [sym__whitespace1] = ACTIONS(227), + [sym__newline] = ACTIONS(229), + [aux_sym__text_token1] = ACTIONS(231), + [sym__verbatim_begin] = ACTIONS(233), + }, + [79] = { + [sym__inline] = STATE(997), + [sym__element] = STATE(124), + [sym_emphasis] = STATE(151), + [sym_emphasis_begin] = STATE(1181), + [sym_strong] = STATE(151), + [sym_strong_begin] = STATE(1182), + [sym_superscript] = STATE(151), + [sym_superscript_begin] = STATE(1183), + [sym_subscript] = STATE(151), + [sym_subscript_begin] = STATE(1184), + [sym_highlighted] = STATE(151), + [sym_highlighted_begin] = STATE(1185), + [sym_insert] = STATE(151), + [sym_insert_begin] = STATE(1186), + [sym_delete] = STATE(151), + [sym_delete_begin] = STATE(1187), + [sym_hard_line_break] = STATE(151), + [sym__smart_punctuation] = STATE(151), + [sym_autolink] = STATE(151), + [sym_footnote_reference] = STATE(151), + [sym_footnote_marker_begin] = STATE(1188), + [sym__image] = STATE(151), + [sym_full_reference_image] = STATE(151), + [sym_collapsed_reference_image] = STATE(151), + [sym_inline_image] = STATE(151), + [sym_image_description] = STATE(700), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(151), + [sym_full_reference_link] = STATE(151), + [sym_collapsed_reference_link] = STATE(151), + [sym_inline_link] = STATE(151), + [sym_link_text] = STATE(701), + [sym_span] = STATE(124), + [sym__bracketed_text_begin] = STATE(1264), + [sym__comment_with_spaces] = STATE(151), + [sym_raw_inline] = STATE(151), + [sym_math] = STATE(151), + [sym_verbatim] = STATE(151), + [sym__todo_highlights] = STATE(151), + [sym_todo] = STATE(151), + [sym_note] = STATE(151), + [sym__symbol_fallback] = STATE(151), + [aux_sym__text] = STATE(140), + [aux_sym__inline_repeat1] = STATE(124), + [anon_sym_LBRACE_] = ACTIONS(143), + [anon_sym__] = ACTIONS(145), + [anon_sym_LBRACE_STAR] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(149), + [anon_sym_LBRACE_CARET] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(151), + [anon_sym_LBRACE_TILDE] = ACTIONS(153), + [anon_sym_TILDE] = ACTIONS(153), + [anon_sym_LBRACE_EQ] = ACTIONS(155), + [anon_sym_LBRACE_PLUS] = ACTIONS(157), + [anon_sym_LBRACE_DASH] = ACTIONS(159), + [anon_sym_BSLASH] = ACTIONS(161), + [sym_quotation_marks] = ACTIONS(163), + [sym_ellipsis] = ACTIONS(163), + [sym_em_dash] = ACTIONS(163), + [sym_en_dash] = ACTIONS(165), + [sym_backslash_escape] = ACTIONS(165), + [anon_sym_LT] = ACTIONS(167), + [sym_symbol] = ACTIONS(163), + [anon_sym_LBRACK_CARET] = ACTIONS(169), + [anon_sym_BANG_LBRACK] = ACTIONS(171), + [anon_sym_LBRACK] = ACTIONS(173), + [anon_sym_DOLLAR] = ACTIONS(175), + [anon_sym_TODO] = ACTIONS(177), + [anon_sym_WIP] = ACTIONS(177), + [anon_sym_NOTE] = ACTIONS(179), + [anon_sym_INFO] = ACTIONS(179), + [anon_sym_XXX] = ACTIONS(179), + [sym_fixme] = ACTIONS(163), + [sym__whitespace1] = ACTIONS(181), + [sym__newline] = ACTIONS(183), + [aux_sym__text_token1] = ACTIONS(185), + [sym__verbatim_begin] = ACTIONS(187), + }, + [80] = { + [sym__element] = STATE(68), + [sym_emphasis] = STATE(145), + [sym_emphasis_begin] = STATE(1190), + [sym_strong] = STATE(145), + [sym_strong_begin] = STATE(1191), + [sym_superscript] = STATE(145), + [sym_superscript_begin] = STATE(1192), + [sym_subscript] = STATE(145), + [sym_subscript_begin] = STATE(1193), + [sym_highlighted] = STATE(145), + [sym_highlighted_begin] = STATE(1194), + [sym_insert] = STATE(145), + [sym_insert_begin] = STATE(1195), + [sym_delete] = STATE(145), + [sym_delete_begin] = STATE(1196), + [sym_hard_line_break] = STATE(145), + [sym__smart_punctuation] = STATE(145), + [sym_autolink] = STATE(145), + [sym_footnote_reference] = STATE(145), + [sym_footnote_marker_begin] = STATE(1197), + [sym__image] = STATE(145), + [sym_full_reference_image] = STATE(145), + [sym_collapsed_reference_image] = STATE(145), + [sym_inline_image] = STATE(145), + [sym_image_description] = STATE(696), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(145), + [sym_full_reference_link] = STATE(145), + [sym_collapsed_reference_link] = STATE(145), + [sym_inline_link] = STATE(145), + [sym_link_text] = STATE(691), + [sym_span] = STATE(68), + [sym__bracketed_text_begin] = STATE(1265), + [sym__comment_with_spaces] = STATE(145), + [sym_raw_inline] = STATE(145), + [sym_math] = STATE(145), + [sym_verbatim] = STATE(145), + [sym__todo_highlights] = STATE(145), + [sym_todo] = STATE(145), + [sym_note] = STATE(145), + [sym__symbol_fallback] = STATE(145), + [aux_sym__text] = STATE(138), + [aux_sym__inline_repeat1] = STATE(68), + [anon_sym_LBRACE_] = ACTIONS(542), + [anon_sym__] = ACTIONS(544), + [anon_sym_LBRACE_STAR] = ACTIONS(546), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE_CARET] = ACTIONS(550), + [anon_sym_CARET] = ACTIONS(550), + [anon_sym_LBRACE_TILDE] = ACTIONS(552), + [anon_sym_TILDE] = ACTIONS(552), + [anon_sym_LBRACE_EQ] = ACTIONS(554), + [anon_sym_LBRACE_PLUS] = ACTIONS(556), + [anon_sym_LBRACE_DASH] = ACTIONS(558), + [anon_sym_BSLASH] = ACTIONS(560), + [sym_quotation_marks] = ACTIONS(562), + [sym_ellipsis] = ACTIONS(562), + [sym_em_dash] = ACTIONS(562), + [sym_en_dash] = ACTIONS(564), + [sym_backslash_escape] = ACTIONS(564), + [anon_sym_LT] = ACTIONS(566), + [sym_symbol] = ACTIONS(562), + [anon_sym_LBRACK_CARET] = ACTIONS(568), + [anon_sym_BANG_LBRACK] = ACTIONS(570), + [anon_sym_LBRACK] = ACTIONS(572), + [anon_sym_DOLLAR] = ACTIONS(574), + [anon_sym_TODO] = ACTIONS(576), + [anon_sym_WIP] = ACTIONS(576), + [anon_sym_NOTE] = ACTIONS(578), + [anon_sym_INFO] = ACTIONS(578), + [anon_sym_XXX] = ACTIONS(578), + [sym_fixme] = ACTIONS(562), + [sym__whitespace1] = ACTIONS(580), + [sym__newline] = ACTIONS(868), + [aux_sym__text_token1] = ACTIONS(584), + [sym__verbatim_begin] = ACTIONS(586), + [sym_subscript_end] = ACTIONS(283), + }, + [81] = { + [sym__inline] = STATE(923), + [sym__element] = STATE(7), + [sym_emphasis] = STATE(153), + [sym_emphasis_begin] = STATE(1208), + [sym_strong] = STATE(153), + [sym_strong_begin] = STATE(1209), + [sym_superscript] = STATE(153), + [sym_superscript_begin] = STATE(1210), + [sym_subscript] = STATE(153), + [sym_subscript_begin] = STATE(1211), + [sym_highlighted] = STATE(153), + [sym_highlighted_begin] = STATE(1212), + [sym_insert] = STATE(153), + [sym_insert_begin] = STATE(1213), + [sym_delete] = STATE(153), + [sym_delete_begin] = STATE(1214), + [sym_hard_line_break] = STATE(153), + [sym__smart_punctuation] = STATE(153), + [sym_autolink] = STATE(153), + [sym_footnote_reference] = STATE(153), + [sym_footnote_marker_begin] = STATE(1215), + [sym__image] = STATE(153), + [sym_full_reference_image] = STATE(153), + [sym_collapsed_reference_image] = STATE(153), + [sym_inline_image] = STATE(153), + [sym_image_description] = STATE(707), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(153), + [sym_full_reference_link] = STATE(153), + [sym_collapsed_reference_link] = STATE(153), + [sym_inline_link] = STATE(153), + [sym_link_text] = STATE(705), + [sym_span] = STATE(7), + [sym__bracketed_text_begin] = STATE(1267), + [sym__comment_with_spaces] = STATE(153), + [sym_raw_inline] = STATE(153), + [sym_math] = STATE(153), + [sym_verbatim] = STATE(153), + [sym__todo_highlights] = STATE(153), + [sym_todo] = STATE(153), + [sym_note] = STATE(153), + [sym__symbol_fallback] = STATE(153), + [aux_sym__text] = STATE(134), + [aux_sym__inline_repeat1] = STATE(7), [anon_sym_LBRACE_] = ACTIONS(97), [anon_sym__] = ACTIONS(99), [anon_sym_LBRACE_STAR] = ACTIONS(101), @@ -11495,776 +11711,608 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_XXX] = ACTIONS(133), [sym_fixme] = ACTIONS(117), [sym__whitespace1] = ACTIONS(135), - [sym__newline] = ACTIONS(145), + [sym__newline] = ACTIONS(137), [aux_sym__text_token1] = ACTIONS(139), [sym__verbatim_begin] = ACTIONS(141), }, - [79] = { - [sym__inline] = STATE(954), - [sym__element] = STATE(107), - [sym_emphasis] = STATE(140), - [sym_emphasis_begin] = STATE(1185), - [sym_strong] = STATE(140), - [sym_strong_begin] = STATE(1186), - [sym_superscript] = STATE(140), - [sym_superscript_begin] = STATE(1187), - [sym_subscript] = STATE(140), - [sym_subscript_begin] = STATE(1188), - [sym_highlighted] = STATE(140), - [sym_highlighted_begin] = STATE(1189), - [sym_insert] = STATE(140), - [sym_insert_begin] = STATE(1190), - [sym_delete] = STATE(140), - [sym_delete_begin] = STATE(1191), - [sym_hard_line_break] = STATE(140), - [sym__smart_punctuation] = STATE(140), - [sym_autolink] = STATE(140), - [sym_footnote_reference] = STATE(140), - [sym_footnote_marker_begin] = STATE(1192), - [sym__image] = STATE(140), - [sym_full_reference_image] = STATE(140), - [sym_collapsed_reference_image] = STATE(140), - [sym_inline_image] = STATE(140), - [sym__image_description] = STATE(700), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(140), - [sym_full_reference_link] = STATE(140), - [sym_collapsed_reference_link] = STATE(140), - [sym_inline_link] = STATE(140), - [sym_link_text] = STATE(699), - [sym_span] = STATE(107), - [sym__bracketed_text] = STATE(666), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(140), - [sym_raw_inline] = STATE(140), - [sym_math] = STATE(140), - [sym_verbatim] = STATE(140), - [sym__todo_highlights] = STATE(140), - [sym_todo] = STATE(140), - [sym_note] = STATE(140), - [sym__symbol_fallback] = STATE(140), - [aux_sym__text] = STATE(125), - [aux_sym__inline_repeat1] = STATE(107), - [anon_sym_LBRACE_] = ACTIONS(193), - [anon_sym__] = ACTIONS(195), - [anon_sym_LBRACE_STAR] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(199), - [anon_sym_LBRACE_CARET] = ACTIONS(201), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_LBRACE_TILDE] = ACTIONS(203), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_LBRACE_EQ] = ACTIONS(205), - [anon_sym_LBRACE_PLUS] = ACTIONS(207), - [anon_sym_LBRACE_DASH] = ACTIONS(209), - [anon_sym_BSLASH] = ACTIONS(211), - [sym_quotation_marks] = ACTIONS(213), - [sym_ellipsis] = ACTIONS(213), - [sym_em_dash] = ACTIONS(213), - [sym_en_dash] = ACTIONS(215), - [sym_backslash_escape] = ACTIONS(215), - [anon_sym_LT] = ACTIONS(217), - [sym_symbol] = ACTIONS(213), - [anon_sym_LBRACK_CARET] = ACTIONS(219), - [anon_sym_BANG_LBRACK] = ACTIONS(221), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_DOLLAR] = ACTIONS(225), - [anon_sym_TODO] = ACTIONS(227), - [anon_sym_WIP] = ACTIONS(227), - [anon_sym_NOTE] = ACTIONS(229), - [anon_sym_INFO] = ACTIONS(229), - [anon_sym_XXX] = ACTIONS(229), - [sym_fixme] = ACTIONS(213), - [sym__whitespace1] = ACTIONS(231), - [sym__newline] = ACTIONS(233), - [aux_sym__text_token1] = ACTIONS(235), - [sym__verbatim_begin] = ACTIONS(237), - }, - [80] = { - [sym__inline] = STATE(955), - [sym__element] = STATE(72), - [sym_emphasis] = STATE(135), - [sym_emphasis_begin] = STATE(1177), - [sym_strong] = STATE(135), - [sym_strong_begin] = STATE(1178), - [sym_superscript] = STATE(135), - [sym_superscript_begin] = STATE(1179), - [sym_subscript] = STATE(135), - [sym_subscript_begin] = STATE(1180), - [sym_highlighted] = STATE(135), - [sym_highlighted_begin] = STATE(1181), - [sym_insert] = STATE(135), - [sym_insert_begin] = STATE(1182), - [sym_delete] = STATE(135), - [sym_delete_begin] = STATE(1183), - [sym_hard_line_break] = STATE(135), - [sym__smart_punctuation] = STATE(135), - [sym_autolink] = STATE(135), - [sym_footnote_reference] = STATE(135), - [sym_footnote_marker_begin] = STATE(1184), - [sym__image] = STATE(135), - [sym_full_reference_image] = STATE(135), - [sym_collapsed_reference_image] = STATE(135), - [sym_inline_image] = STATE(135), - [sym__image_description] = STATE(687), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(135), - [sym_full_reference_link] = STATE(135), - [sym_collapsed_reference_link] = STATE(135), - [sym_inline_link] = STATE(135), - [sym_link_text] = STATE(684), - [sym_span] = STATE(72), - [sym__bracketed_text] = STATE(670), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(135), - [sym_raw_inline] = STATE(135), - [sym_math] = STATE(135), - [sym_verbatim] = STATE(135), - [sym__todo_highlights] = STATE(135), - [sym_todo] = STATE(135), - [sym_note] = STATE(135), - [sym__symbol_fallback] = STATE(135), - [aux_sym__text] = STATE(124), - [aux_sym__inline_repeat1] = STATE(72), - [anon_sym_LBRACE_] = ACTIONS(239), - [anon_sym__] = ACTIONS(241), - [anon_sym_LBRACE_STAR] = ACTIONS(243), - [anon_sym_STAR] = ACTIONS(245), - [anon_sym_LBRACE_CARET] = ACTIONS(247), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_LBRACE_TILDE] = ACTIONS(249), - [anon_sym_TILDE] = ACTIONS(249), - [anon_sym_LBRACE_EQ] = ACTIONS(251), - [anon_sym_LBRACE_PLUS] = ACTIONS(253), - [anon_sym_LBRACE_DASH] = ACTIONS(255), - [anon_sym_BSLASH] = ACTIONS(257), - [sym_quotation_marks] = ACTIONS(259), - [sym_ellipsis] = ACTIONS(259), - [sym_em_dash] = ACTIONS(259), - [sym_en_dash] = ACTIONS(261), - [sym_backslash_escape] = ACTIONS(261), - [anon_sym_LT] = ACTIONS(263), - [sym_symbol] = ACTIONS(259), - [anon_sym_LBRACK_CARET] = ACTIONS(265), - [anon_sym_BANG_LBRACK] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(269), - [anon_sym_DOLLAR] = ACTIONS(271), - [anon_sym_TODO] = ACTIONS(273), - [anon_sym_WIP] = ACTIONS(273), - [anon_sym_NOTE] = ACTIONS(275), - [anon_sym_INFO] = ACTIONS(275), - [anon_sym_XXX] = ACTIONS(275), - [sym_fixme] = ACTIONS(259), - [sym__whitespace1] = ACTIONS(277), - [sym__newline] = ACTIONS(279), - [aux_sym__text_token1] = ACTIONS(281), - [sym__verbatim_begin] = ACTIONS(283), - }, - [81] = { - [sym__inline] = STATE(1141), - [sym__element] = STATE(107), - [sym_emphasis] = STATE(140), - [sym_emphasis_begin] = STATE(1185), - [sym_strong] = STATE(140), - [sym_strong_begin] = STATE(1186), - [sym_superscript] = STATE(140), - [sym_superscript_begin] = STATE(1187), - [sym_subscript] = STATE(140), - [sym_subscript_begin] = STATE(1188), - [sym_highlighted] = STATE(140), - [sym_highlighted_begin] = STATE(1189), - [sym_insert] = STATE(140), - [sym_insert_begin] = STATE(1190), - [sym_delete] = STATE(140), - [sym_delete_begin] = STATE(1191), - [sym_hard_line_break] = STATE(140), - [sym__smart_punctuation] = STATE(140), - [sym_autolink] = STATE(140), - [sym_footnote_reference] = STATE(140), - [sym_footnote_marker_begin] = STATE(1192), - [sym__image] = STATE(140), - [sym_full_reference_image] = STATE(140), - [sym_collapsed_reference_image] = STATE(140), - [sym_inline_image] = STATE(140), - [sym__image_description] = STATE(700), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(140), - [sym_full_reference_link] = STATE(140), - [sym_collapsed_reference_link] = STATE(140), - [sym_inline_link] = STATE(140), - [sym_link_text] = STATE(699), - [sym_span] = STATE(107), - [sym__bracketed_text] = STATE(666), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(140), - [sym_raw_inline] = STATE(140), - [sym_math] = STATE(140), - [sym_verbatim] = STATE(140), - [sym__todo_highlights] = STATE(140), - [sym_todo] = STATE(140), - [sym_note] = STATE(140), - [sym__symbol_fallback] = STATE(140), - [aux_sym__text] = STATE(125), - [aux_sym__inline_repeat1] = STATE(107), - [anon_sym_LBRACE_] = ACTIONS(193), - [anon_sym__] = ACTIONS(195), - [anon_sym_LBRACE_STAR] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(199), - [anon_sym_LBRACE_CARET] = ACTIONS(201), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_LBRACE_TILDE] = ACTIONS(203), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_LBRACE_EQ] = ACTIONS(205), - [anon_sym_LBRACE_PLUS] = ACTIONS(207), - [anon_sym_LBRACE_DASH] = ACTIONS(209), - [anon_sym_BSLASH] = ACTIONS(211), - [sym_quotation_marks] = ACTIONS(213), - [sym_ellipsis] = ACTIONS(213), - [sym_em_dash] = ACTIONS(213), - [sym_en_dash] = ACTIONS(215), - [sym_backslash_escape] = ACTIONS(215), - [anon_sym_LT] = ACTIONS(217), - [sym_symbol] = ACTIONS(213), - [anon_sym_LBRACK_CARET] = ACTIONS(219), - [anon_sym_BANG_LBRACK] = ACTIONS(221), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_DOLLAR] = ACTIONS(225), - [anon_sym_TODO] = ACTIONS(227), - [anon_sym_WIP] = ACTIONS(227), - [anon_sym_NOTE] = ACTIONS(229), - [anon_sym_INFO] = ACTIONS(229), - [anon_sym_XXX] = ACTIONS(229), - [sym_fixme] = ACTIONS(213), - [sym__whitespace1] = ACTIONS(231), - [sym__newline] = ACTIONS(233), - [aux_sym__text_token1] = ACTIONS(235), - [sym__verbatim_begin] = ACTIONS(237), - }, [82] = { + [sym__inline] = STATE(924), [sym__element] = STATE(21), - [sym_emphasis] = STATE(143), - [sym_emphasis_begin] = STATE(1169), - [sym_strong] = STATE(143), - [sym_strong_begin] = STATE(1170), - [sym_superscript] = STATE(143), - [sym_superscript_begin] = STATE(1171), - [sym_subscript] = STATE(143), - [sym_subscript_begin] = STATE(1172), - [sym_highlighted] = STATE(143), - [sym_highlighted_begin] = STATE(1173), - [sym_insert] = STATE(143), - [sym_insert_begin] = STATE(1174), - [sym_delete] = STATE(143), - [sym_delete_begin] = STATE(1175), - [sym_hard_line_break] = STATE(143), - [sym__smart_punctuation] = STATE(143), - [sym_autolink] = STATE(143), - [sym_footnote_reference] = STATE(143), - [sym_footnote_marker_begin] = STATE(1176), - [sym__image] = STATE(143), - [sym_full_reference_image] = STATE(143), - [sym_collapsed_reference_image] = STATE(143), - [sym_inline_image] = STATE(143), - [sym__image_description] = STATE(701), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(143), - [sym_full_reference_link] = STATE(143), - [sym_collapsed_reference_link] = STATE(143), - [sym_inline_link] = STATE(143), - [sym_link_text] = STATE(702), + [sym_emphasis] = STATE(149), + [sym_emphasis_begin] = STATE(1199), + [sym_strong] = STATE(149), + [sym_strong_begin] = STATE(1200), + [sym_superscript] = STATE(149), + [sym_superscript_begin] = STATE(1201), + [sym_subscript] = STATE(149), + [sym_subscript_begin] = STATE(1202), + [sym_highlighted] = STATE(149), + [sym_highlighted_begin] = STATE(1203), + [sym_insert] = STATE(149), + [sym_insert_begin] = STATE(1204), + [sym_delete] = STATE(149), + [sym_delete_begin] = STATE(1205), + [sym_hard_line_break] = STATE(149), + [sym__smart_punctuation] = STATE(149), + [sym_autolink] = STATE(149), + [sym_footnote_reference] = STATE(149), + [sym_footnote_marker_begin] = STATE(1206), + [sym__image] = STATE(149), + [sym_full_reference_image] = STATE(149), + [sym_collapsed_reference_image] = STATE(149), + [sym_inline_image] = STATE(149), + [sym_image_description] = STATE(714), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(149), + [sym_full_reference_link] = STATE(149), + [sym_collapsed_reference_link] = STATE(149), + [sym_inline_link] = STATE(149), + [sym_link_text] = STATE(710), [sym_span] = STATE(21), - [sym__bracketed_text] = STATE(667), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(143), - [sym_raw_inline] = STATE(143), - [sym_math] = STATE(143), - [sym_verbatim] = STATE(143), - [sym__todo_highlights] = STATE(143), - [sym_todo] = STATE(143), - [sym_note] = STATE(143), - [sym__symbol_fallback] = STATE(143), - [aux_sym__text] = STATE(126), + [sym__bracketed_text_begin] = STATE(1266), + [sym__comment_with_spaces] = STATE(149), + [sym_raw_inline] = STATE(149), + [sym_math] = STATE(149), + [sym_verbatim] = STATE(149), + [sym__todo_highlights] = STATE(149), + [sym_todo] = STATE(149), + [sym_note] = STATE(149), + [sym__symbol_fallback] = STATE(149), + [aux_sym__text] = STATE(142), [aux_sym__inline_repeat1] = STATE(21), - [anon_sym_LBRACE_] = ACTIONS(285), - [anon_sym__] = ACTIONS(287), - [anon_sym_LBRACE_STAR] = ACTIONS(289), - [anon_sym_STAR] = ACTIONS(291), - [anon_sym_LBRACE_CARET] = ACTIONS(293), - [anon_sym_CARET] = ACTIONS(293), - [anon_sym_LBRACE_TILDE] = ACTIONS(295), - [anon_sym_TILDE] = ACTIONS(295), - [anon_sym_LBRACE_EQ] = ACTIONS(297), - [anon_sym_LBRACE_PLUS] = ACTIONS(299), - [anon_sym_LBRACE_DASH] = ACTIONS(301), - [anon_sym_BSLASH] = ACTIONS(303), - [sym_quotation_marks] = ACTIONS(305), - [sym_ellipsis] = ACTIONS(305), - [sym_em_dash] = ACTIONS(305), - [sym_en_dash] = ACTIONS(307), - [sym_backslash_escape] = ACTIONS(307), - [anon_sym_LT] = ACTIONS(309), - [sym_symbol] = ACTIONS(305), - [anon_sym_LBRACK_CARET] = ACTIONS(311), - [anon_sym_BANG_LBRACK] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_DOLLAR] = ACTIONS(317), - [anon_sym_TODO] = ACTIONS(319), - [anon_sym_WIP] = ACTIONS(319), - [anon_sym_NOTE] = ACTIONS(321), - [anon_sym_INFO] = ACTIONS(321), - [anon_sym_XXX] = ACTIONS(321), - [sym_fixme] = ACTIONS(305), - [sym__whitespace1] = ACTIONS(323), - [sym__newline] = ACTIONS(941), - [aux_sym__text_token1] = ACTIONS(327), - [sym__verbatim_begin] = ACTIONS(329), - [sym_superscript_end] = ACTIONS(143), + [anon_sym_LBRACE_] = ACTIONS(494), + [anon_sym__] = ACTIONS(496), + [anon_sym_LBRACE_STAR] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(500), + [anon_sym_LBRACE_CARET] = ACTIONS(502), + [anon_sym_CARET] = ACTIONS(502), + [anon_sym_LBRACE_TILDE] = ACTIONS(504), + [anon_sym_TILDE] = ACTIONS(504), + [anon_sym_LBRACE_EQ] = ACTIONS(506), + [anon_sym_LBRACE_PLUS] = ACTIONS(508), + [anon_sym_LBRACE_DASH] = ACTIONS(510), + [anon_sym_BSLASH] = ACTIONS(512), + [sym_quotation_marks] = ACTIONS(514), + [sym_ellipsis] = ACTIONS(514), + [sym_em_dash] = ACTIONS(514), + [sym_en_dash] = ACTIONS(516), + [sym_backslash_escape] = ACTIONS(516), + [anon_sym_LT] = ACTIONS(518), + [sym_symbol] = ACTIONS(514), + [anon_sym_LBRACK_CARET] = ACTIONS(520), + [anon_sym_BANG_LBRACK] = ACTIONS(522), + [anon_sym_LBRACK] = ACTIONS(524), + [anon_sym_DOLLAR] = ACTIONS(526), + [anon_sym_TODO] = ACTIONS(528), + [anon_sym_WIP] = ACTIONS(528), + [anon_sym_NOTE] = ACTIONS(530), + [anon_sym_INFO] = ACTIONS(530), + [anon_sym_XXX] = ACTIONS(530), + [sym_fixme] = ACTIONS(514), + [sym__whitespace1] = ACTIONS(532), + [sym__newline] = ACTIONS(540), + [aux_sym__text_token1] = ACTIONS(536), + [sym__verbatim_begin] = ACTIONS(538), }, [83] = { - [sym__inline] = STATE(956), - [sym__element] = STATE(82), - [sym_emphasis] = STATE(143), - [sym_emphasis_begin] = STATE(1169), - [sym_strong] = STATE(143), - [sym_strong_begin] = STATE(1170), - [sym_superscript] = STATE(143), - [sym_superscript_begin] = STATE(1171), - [sym_subscript] = STATE(143), - [sym_subscript_begin] = STATE(1172), - [sym_highlighted] = STATE(143), - [sym_highlighted_begin] = STATE(1173), - [sym_insert] = STATE(143), - [sym_insert_begin] = STATE(1174), - [sym_delete] = STATE(143), - [sym_delete_begin] = STATE(1175), - [sym_hard_line_break] = STATE(143), - [sym__smart_punctuation] = STATE(143), - [sym_autolink] = STATE(143), - [sym_footnote_reference] = STATE(143), - [sym_footnote_marker_begin] = STATE(1176), - [sym__image] = STATE(143), - [sym_full_reference_image] = STATE(143), - [sym_collapsed_reference_image] = STATE(143), - [sym_inline_image] = STATE(143), - [sym__image_description] = STATE(701), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(143), - [sym_full_reference_link] = STATE(143), - [sym_collapsed_reference_link] = STATE(143), - [sym_inline_link] = STATE(143), - [sym_link_text] = STATE(702), - [sym_span] = STATE(82), - [sym__bracketed_text] = STATE(667), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(143), - [sym_raw_inline] = STATE(143), - [sym_math] = STATE(143), - [sym_verbatim] = STATE(143), - [sym__todo_highlights] = STATE(143), - [sym_todo] = STATE(143), - [sym_note] = STATE(143), - [sym__symbol_fallback] = STATE(143), - [aux_sym__text] = STATE(126), - [aux_sym__inline_repeat1] = STATE(82), - [anon_sym_LBRACE_] = ACTIONS(285), - [anon_sym__] = ACTIONS(287), - [anon_sym_LBRACE_STAR] = ACTIONS(289), - [anon_sym_STAR] = ACTIONS(291), - [anon_sym_LBRACE_CARET] = ACTIONS(293), - [anon_sym_CARET] = ACTIONS(293), - [anon_sym_LBRACE_TILDE] = ACTIONS(295), - [anon_sym_TILDE] = ACTIONS(295), - [anon_sym_LBRACE_EQ] = ACTIONS(297), - [anon_sym_LBRACE_PLUS] = ACTIONS(299), - [anon_sym_LBRACE_DASH] = ACTIONS(301), - [anon_sym_BSLASH] = ACTIONS(303), - [sym_quotation_marks] = ACTIONS(305), - [sym_ellipsis] = ACTIONS(305), - [sym_em_dash] = ACTIONS(305), - [sym_en_dash] = ACTIONS(307), - [sym_backslash_escape] = ACTIONS(307), - [anon_sym_LT] = ACTIONS(309), - [sym_symbol] = ACTIONS(305), - [anon_sym_LBRACK_CARET] = ACTIONS(311), - [anon_sym_BANG_LBRACK] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_DOLLAR] = ACTIONS(317), - [anon_sym_TODO] = ACTIONS(319), - [anon_sym_WIP] = ACTIONS(319), - [anon_sym_NOTE] = ACTIONS(321), - [anon_sym_INFO] = ACTIONS(321), - [anon_sym_XXX] = ACTIONS(321), - [sym_fixme] = ACTIONS(305), - [sym__whitespace1] = ACTIONS(323), - [sym__newline] = ACTIONS(325), - [aux_sym__text_token1] = ACTIONS(327), - [sym__verbatim_begin] = ACTIONS(329), + [sym__inline] = STATE(925), + [sym__element] = STATE(80), + [sym_emphasis] = STATE(145), + [sym_emphasis_begin] = STATE(1190), + [sym_strong] = STATE(145), + [sym_strong_begin] = STATE(1191), + [sym_superscript] = STATE(145), + [sym_superscript_begin] = STATE(1192), + [sym_subscript] = STATE(145), + [sym_subscript_begin] = STATE(1193), + [sym_highlighted] = STATE(145), + [sym_highlighted_begin] = STATE(1194), + [sym_insert] = STATE(145), + [sym_insert_begin] = STATE(1195), + [sym_delete] = STATE(145), + [sym_delete_begin] = STATE(1196), + [sym_hard_line_break] = STATE(145), + [sym__smart_punctuation] = STATE(145), + [sym_autolink] = STATE(145), + [sym_footnote_reference] = STATE(145), + [sym_footnote_marker_begin] = STATE(1197), + [sym__image] = STATE(145), + [sym_full_reference_image] = STATE(145), + [sym_collapsed_reference_image] = STATE(145), + [sym_inline_image] = STATE(145), + [sym_image_description] = STATE(696), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(145), + [sym_full_reference_link] = STATE(145), + [sym_collapsed_reference_link] = STATE(145), + [sym_inline_link] = STATE(145), + [sym_link_text] = STATE(691), + [sym_span] = STATE(80), + [sym__bracketed_text_begin] = STATE(1265), + [sym__comment_with_spaces] = STATE(145), + [sym_raw_inline] = STATE(145), + [sym_math] = STATE(145), + [sym_verbatim] = STATE(145), + [sym__todo_highlights] = STATE(145), + [sym_todo] = STATE(145), + [sym_note] = STATE(145), + [sym__symbol_fallback] = STATE(145), + [aux_sym__text] = STATE(138), + [aux_sym__inline_repeat1] = STATE(80), + [anon_sym_LBRACE_] = ACTIONS(542), + [anon_sym__] = ACTIONS(544), + [anon_sym_LBRACE_STAR] = ACTIONS(546), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE_CARET] = ACTIONS(550), + [anon_sym_CARET] = ACTIONS(550), + [anon_sym_LBRACE_TILDE] = ACTIONS(552), + [anon_sym_TILDE] = ACTIONS(552), + [anon_sym_LBRACE_EQ] = ACTIONS(554), + [anon_sym_LBRACE_PLUS] = ACTIONS(556), + [anon_sym_LBRACE_DASH] = ACTIONS(558), + [anon_sym_BSLASH] = ACTIONS(560), + [sym_quotation_marks] = ACTIONS(562), + [sym_ellipsis] = ACTIONS(562), + [sym_em_dash] = ACTIONS(562), + [sym_en_dash] = ACTIONS(564), + [sym_backslash_escape] = ACTIONS(564), + [anon_sym_LT] = ACTIONS(566), + [sym_symbol] = ACTIONS(562), + [anon_sym_LBRACK_CARET] = ACTIONS(568), + [anon_sym_BANG_LBRACK] = ACTIONS(570), + [anon_sym_LBRACK] = ACTIONS(572), + [anon_sym_DOLLAR] = ACTIONS(574), + [anon_sym_TODO] = ACTIONS(576), + [anon_sym_WIP] = ACTIONS(576), + [anon_sym_NOTE] = ACTIONS(578), + [anon_sym_INFO] = ACTIONS(578), + [anon_sym_XXX] = ACTIONS(578), + [sym_fixme] = ACTIONS(562), + [sym__whitespace1] = ACTIONS(580), + [sym__newline] = ACTIONS(582), + [aux_sym__text_token1] = ACTIONS(584), + [sym__verbatim_begin] = ACTIONS(586), }, [84] = { - [sym__inline_without_trailing_space] = STATE(957), - [sym__element] = STATE(572), - [sym_emphasis] = STATE(138), - [sym_emphasis_begin] = STATE(1161), - [sym_strong] = STATE(138), - [sym_strong_begin] = STATE(1162), - [sym_superscript] = STATE(138), - [sym_superscript_begin] = STATE(1163), - [sym_subscript] = STATE(138), - [sym_subscript_begin] = STATE(1164), - [sym_highlighted] = STATE(138), - [sym_highlighted_begin] = STATE(1165), - [sym_insert] = STATE(138), - [sym_insert_begin] = STATE(1166), - [sym_delete] = STATE(138), - [sym_delete_begin] = STATE(1167), - [sym_hard_line_break] = STATE(138), - [sym__smart_punctuation] = STATE(138), - [sym_autolink] = STATE(138), - [sym_footnote_reference] = STATE(138), - [sym_footnote_marker_begin] = STATE(1168), - [sym__image] = STATE(138), - [sym_full_reference_image] = STATE(138), - [sym_collapsed_reference_image] = STATE(138), - [sym_inline_image] = STATE(138), - [sym__image_description] = STATE(703), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(138), - [sym_full_reference_link] = STATE(138), - [sym_collapsed_reference_link] = STATE(138), - [sym_inline_link] = STATE(138), - [sym_link_text] = STATE(697), - [sym_span] = STATE(572), - [sym__bracketed_text] = STATE(671), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(138), - [sym_raw_inline] = STATE(138), - [sym_math] = STATE(138), - [sym_verbatim] = STATE(138), - [sym__todo_highlights] = STATE(138), - [sym_todo] = STATE(138), - [sym_note] = STATE(138), - [sym__symbol_fallback] = STATE(138), - [aux_sym__text] = STATE(122), + [sym__element] = STATE(120), + [sym_emphasis] = STATE(146), + [sym_emphasis_begin] = STATE(1226), + [sym_strong] = STATE(146), + [sym_strong_begin] = STATE(1227), + [sym_superscript] = STATE(146), + [sym_superscript_begin] = STATE(1228), + [sym_subscript] = STATE(146), + [sym_subscript_begin] = STATE(1229), + [sym_highlighted] = STATE(146), + [sym_highlighted_begin] = STATE(1230), + [sym_insert] = STATE(146), + [sym_insert_begin] = STATE(1231), + [sym_delete] = STATE(146), + [sym_delete_begin] = STATE(1232), + [sym_hard_line_break] = STATE(146), + [sym__smart_punctuation] = STATE(146), + [sym_autolink] = STATE(146), + [sym_footnote_reference] = STATE(146), + [sym_footnote_marker_begin] = STATE(1233), + [sym__image] = STATE(146), + [sym_full_reference_image] = STATE(146), + [sym_collapsed_reference_image] = STATE(146), + [sym_inline_image] = STATE(146), + [sym_image_description] = STATE(694), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(146), + [sym_full_reference_link] = STATE(146), + [sym_collapsed_reference_link] = STATE(146), + [sym_inline_link] = STATE(146), + [sym_link_text] = STATE(693), + [sym_span] = STATE(120), + [sym__bracketed_text_begin] = STATE(1269), + [sym__comment_with_spaces] = STATE(146), + [sym_raw_inline] = STATE(146), + [sym_math] = STATE(146), + [sym_verbatim] = STATE(146), + [sym__todo_highlights] = STATE(146), + [sym_todo] = STATE(146), + [sym_note] = STATE(146), + [sym__symbol_fallback] = STATE(146), + [aux_sym__text] = STATE(141), [aux_sym__inline_repeat1] = STATE(120), - [anon_sym_LBRACE_] = ACTIONS(331), - [anon_sym__] = ACTIONS(333), - [anon_sym_LBRACE_STAR] = ACTIONS(335), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_LBRACE_CARET] = ACTIONS(339), - [anon_sym_CARET] = ACTIONS(339), - [anon_sym_LBRACE_TILDE] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_LBRACE_EQ] = ACTIONS(343), - [anon_sym_LBRACE_PLUS] = ACTIONS(345), - [anon_sym_LBRACE_DASH] = ACTIONS(347), - [anon_sym_BSLASH] = ACTIONS(349), - [sym_quotation_marks] = ACTIONS(351), - [sym_ellipsis] = ACTIONS(351), - [sym_em_dash] = ACTIONS(351), - [sym_en_dash] = ACTIONS(353), - [sym_backslash_escape] = ACTIONS(353), - [anon_sym_LT] = ACTIONS(355), - [sym_symbol] = ACTIONS(351), - [anon_sym_LBRACK_CARET] = ACTIONS(357), - [anon_sym_BANG_LBRACK] = ACTIONS(359), - [anon_sym_LBRACK] = ACTIONS(361), - [anon_sym_DOLLAR] = ACTIONS(363), - [anon_sym_TODO] = ACTIONS(365), - [anon_sym_WIP] = ACTIONS(365), - [anon_sym_NOTE] = ACTIONS(367), - [anon_sym_INFO] = ACTIONS(367), - [anon_sym_XXX] = ACTIONS(367), - [sym_fixme] = ACTIONS(351), - [sym__whitespace1] = ACTIONS(369), - [sym__newline] = ACTIONS(371), - [aux_sym__text_token1] = ACTIONS(373), - [sym__verbatim_begin] = ACTIONS(375), + [anon_sym_LBRACE_] = ACTIONS(356), + [anon_sym__] = ACTIONS(358), + [anon_sym_LBRACE_STAR] = ACTIONS(360), + [anon_sym_STAR] = ACTIONS(362), + [anon_sym_LBRACE_CARET] = ACTIONS(364), + [anon_sym_CARET] = ACTIONS(364), + [anon_sym_LBRACE_TILDE] = ACTIONS(366), + [anon_sym_TILDE] = ACTIONS(366), + [anon_sym_LBRACE_EQ] = ACTIONS(368), + [anon_sym_LBRACE_PLUS] = ACTIONS(370), + [anon_sym_LBRACE_DASH] = ACTIONS(372), + [anon_sym_BSLASH] = ACTIONS(374), + [sym_quotation_marks] = ACTIONS(376), + [sym_ellipsis] = ACTIONS(376), + [sym_em_dash] = ACTIONS(376), + [sym_en_dash] = ACTIONS(378), + [sym_backslash_escape] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [sym_symbol] = ACTIONS(376), + [anon_sym_LBRACK_CARET] = ACTIONS(382), + [anon_sym_BANG_LBRACK] = ACTIONS(384), + [anon_sym_LBRACK] = ACTIONS(386), + [anon_sym_RBRACK] = ACTIONS(283), + [anon_sym_DOLLAR] = ACTIONS(388), + [anon_sym_TODO] = ACTIONS(390), + [anon_sym_WIP] = ACTIONS(390), + [anon_sym_NOTE] = ACTIONS(392), + [anon_sym_INFO] = ACTIONS(392), + [anon_sym_XXX] = ACTIONS(392), + [sym_fixme] = ACTIONS(376), + [sym__whitespace1] = ACTIONS(394), + [sym__newline] = ACTIONS(870), + [aux_sym__text_token1] = ACTIONS(398), + [sym__verbatim_begin] = ACTIONS(400), }, [85] = { - [sym__inline_without_trailing_space] = STATE(896), - [sym__element] = STATE(538), - [sym_emphasis] = STATE(141), - [sym_emphasis_begin] = STATE(1153), - [sym_strong] = STATE(141), - [sym_strong_begin] = STATE(1154), - [sym_superscript] = STATE(141), - [sym_superscript_begin] = STATE(1155), - [sym_subscript] = STATE(141), - [sym_subscript_begin] = STATE(1156), - [sym_highlighted] = STATE(141), - [sym_highlighted_begin] = STATE(1157), - [sym_insert] = STATE(141), - [sym_insert_begin] = STATE(1158), - [sym_delete] = STATE(141), - [sym_delete_begin] = STATE(1159), - [sym_hard_line_break] = STATE(141), - [sym__smart_punctuation] = STATE(141), - [sym_autolink] = STATE(141), - [sym_footnote_reference] = STATE(141), - [sym_footnote_marker_begin] = STATE(1160), - [sym__image] = STATE(141), - [sym_full_reference_image] = STATE(141), - [sym_collapsed_reference_image] = STATE(141), - [sym_inline_image] = STATE(141), - [sym__image_description] = STATE(681), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(141), - [sym_full_reference_link] = STATE(141), - [sym_collapsed_reference_link] = STATE(141), - [sym_inline_link] = STATE(141), - [sym_link_text] = STATE(680), - [sym_span] = STATE(538), - [sym__bracketed_text] = STATE(664), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(141), - [sym_raw_inline] = STATE(141), - [sym_math] = STATE(141), - [sym_verbatim] = STATE(141), - [sym__todo_highlights] = STATE(141), - [sym_todo] = STATE(141), - [sym_note] = STATE(141), - [sym__symbol_fallback] = STATE(141), - [aux_sym__text] = STATE(128), - [aux_sym__inline_repeat1] = STATE(119), - [anon_sym_LBRACE_] = ACTIONS(147), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_STAR] = ACTIONS(151), - [anon_sym_STAR] = ACTIONS(153), - [anon_sym_LBRACE_CARET] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_LBRACE_TILDE] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_LBRACE_EQ] = ACTIONS(159), - [anon_sym_LBRACE_PLUS] = ACTIONS(161), - [anon_sym_LBRACE_DASH] = ACTIONS(163), - [anon_sym_BSLASH] = ACTIONS(165), - [sym_quotation_marks] = ACTIONS(167), - [sym_ellipsis] = ACTIONS(167), - [sym_em_dash] = ACTIONS(167), - [sym_en_dash] = ACTIONS(169), - [sym_backslash_escape] = ACTIONS(169), - [anon_sym_LT] = ACTIONS(171), - [sym_symbol] = ACTIONS(167), - [anon_sym_LBRACK_CARET] = ACTIONS(173), - [anon_sym_BANG_LBRACK] = ACTIONS(175), - [anon_sym_LBRACK] = ACTIONS(177), - [anon_sym_DOLLAR] = ACTIONS(179), - [anon_sym_TODO] = ACTIONS(181), - [anon_sym_WIP] = ACTIONS(181), - [anon_sym_NOTE] = ACTIONS(183), - [anon_sym_INFO] = ACTIONS(183), - [anon_sym_XXX] = ACTIONS(183), - [sym_fixme] = ACTIONS(167), - [sym__whitespace1] = ACTIONS(185), - [sym__newline] = ACTIONS(187), - [aux_sym__text_token1] = ACTIONS(189), - [sym__verbatim_begin] = ACTIONS(191), + [sym__inline_without_trailing_space] = STATE(928), + [sym__element] = STATE(570), + [sym_emphasis] = STATE(152), + [sym_emphasis_begin] = STATE(1172), + [sym_strong] = STATE(152), + [sym_strong_begin] = STATE(1173), + [sym_superscript] = STATE(152), + [sym_superscript_begin] = STATE(1174), + [sym_subscript] = STATE(152), + [sym_subscript_begin] = STATE(1175), + [sym_highlighted] = STATE(152), + [sym_highlighted_begin] = STATE(1176), + [sym_insert] = STATE(152), + [sym_insert_begin] = STATE(1177), + [sym_delete] = STATE(152), + [sym_delete_begin] = STATE(1178), + [sym_hard_line_break] = STATE(152), + [sym__smart_punctuation] = STATE(152), + [sym_autolink] = STATE(152), + [sym_footnote_reference] = STATE(152), + [sym_footnote_marker_begin] = STATE(1179), + [sym__image] = STATE(152), + [sym_full_reference_image] = STATE(152), + [sym_collapsed_reference_image] = STATE(152), + [sym_inline_image] = STATE(152), + [sym_image_description] = STATE(704), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(152), + [sym_full_reference_link] = STATE(152), + [sym_collapsed_reference_link] = STATE(152), + [sym_inline_link] = STATE(152), + [sym_link_text] = STATE(706), + [sym_span] = STATE(570), + [sym__bracketed_text_begin] = STATE(1263), + [sym__comment_with_spaces] = STATE(152), + [sym_raw_inline] = STATE(152), + [sym_math] = STATE(152), + [sym_verbatim] = STATE(152), + [sym__todo_highlights] = STATE(152), + [sym_todo] = STATE(152), + [sym_note] = STATE(152), + [sym__symbol_fallback] = STATE(152), + [aux_sym__text] = STATE(133), + [aux_sym__inline_repeat1] = STATE(130), + [anon_sym_LBRACE_] = ACTIONS(448), + [anon_sym__] = ACTIONS(450), + [anon_sym_LBRACE_STAR] = ACTIONS(452), + [anon_sym_STAR] = ACTIONS(454), + [anon_sym_LBRACE_CARET] = ACTIONS(456), + [anon_sym_CARET] = ACTIONS(456), + [anon_sym_LBRACE_TILDE] = ACTIONS(458), + [anon_sym_TILDE] = ACTIONS(458), + [anon_sym_LBRACE_EQ] = ACTIONS(460), + [anon_sym_LBRACE_PLUS] = ACTIONS(462), + [anon_sym_LBRACE_DASH] = ACTIONS(464), + [anon_sym_BSLASH] = ACTIONS(466), + [sym_quotation_marks] = ACTIONS(468), + [sym_ellipsis] = ACTIONS(468), + [sym_em_dash] = ACTIONS(468), + [sym_en_dash] = ACTIONS(470), + [sym_backslash_escape] = ACTIONS(470), + [anon_sym_LT] = ACTIONS(472), + [sym_symbol] = ACTIONS(468), + [anon_sym_LBRACK_CARET] = ACTIONS(474), + [anon_sym_BANG_LBRACK] = ACTIONS(476), + [anon_sym_LBRACK] = ACTIONS(478), + [anon_sym_DOLLAR] = ACTIONS(480), + [anon_sym_TODO] = ACTIONS(482), + [anon_sym_WIP] = ACTIONS(482), + [anon_sym_NOTE] = ACTIONS(484), + [anon_sym_INFO] = ACTIONS(484), + [anon_sym_XXX] = ACTIONS(484), + [sym_fixme] = ACTIONS(468), + [sym__whitespace1] = ACTIONS(486), + [sym__newline] = ACTIONS(488), + [aux_sym__text_token1] = ACTIONS(490), + [sym__verbatim_begin] = ACTIONS(492), }, [86] = { - [sym__inline] = STATE(971), - [sym__element] = STATE(47), - [sym_emphasis] = STATE(136), - [sym_emphasis_begin] = STATE(1209), - [sym_strong] = STATE(136), - [sym_strong_begin] = STATE(1210), - [sym_superscript] = STATE(136), - [sym_superscript_begin] = STATE(1211), - [sym_subscript] = STATE(136), - [sym_subscript_begin] = STATE(1212), - [sym_highlighted] = STATE(136), - [sym_highlighted_begin] = STATE(1213), - [sym_insert] = STATE(136), - [sym_insert_begin] = STATE(1214), - [sym_delete] = STATE(136), - [sym_delete_begin] = STATE(1215), - [sym_hard_line_break] = STATE(136), - [sym__smart_punctuation] = STATE(136), - [sym_autolink] = STATE(136), - [sym_footnote_reference] = STATE(136), - [sym_footnote_marker_begin] = STATE(1216), - [sym__image] = STATE(136), - [sym_full_reference_image] = STATE(136), - [sym_collapsed_reference_image] = STATE(136), - [sym_inline_image] = STATE(136), - [sym__image_description] = STATE(682), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(136), - [sym_full_reference_link] = STATE(136), - [sym_collapsed_reference_link] = STATE(136), - [sym_inline_link] = STATE(136), - [sym_link_text] = STATE(675), - [sym_span] = STATE(47), - [sym__bracketed_text] = STATE(674), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(136), - [sym_raw_inline] = STATE(136), - [sym_math] = STATE(136), - [sym_verbatim] = STATE(136), - [sym__todo_highlights] = STATE(136), - [sym_todo] = STATE(136), - [sym_note] = STATE(136), - [sym__symbol_fallback] = STATE(136), - [aux_sym__text] = STATE(127), - [aux_sym__inline_repeat1] = STATE(47), - [anon_sym_LBRACE_] = ACTIONS(377), - [anon_sym__] = ACTIONS(379), - [anon_sym_LBRACE_STAR] = ACTIONS(381), - [anon_sym_STAR] = ACTIONS(383), - [anon_sym_LBRACE_CARET] = ACTIONS(385), - [anon_sym_CARET] = ACTIONS(385), - [anon_sym_LBRACE_TILDE] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_LBRACE_EQ] = ACTIONS(389), - [anon_sym_LBRACE_PLUS] = ACTIONS(391), - [anon_sym_LBRACE_DASH] = ACTIONS(393), - [anon_sym_BSLASH] = ACTIONS(395), - [sym_quotation_marks] = ACTIONS(397), - [sym_ellipsis] = ACTIONS(397), - [sym_em_dash] = ACTIONS(397), - [sym_en_dash] = ACTIONS(399), - [sym_backslash_escape] = ACTIONS(399), - [anon_sym_LT] = ACTIONS(401), - [sym_symbol] = ACTIONS(397), - [anon_sym_LBRACK_CARET] = ACTIONS(403), - [anon_sym_BANG_LBRACK] = ACTIONS(405), - [anon_sym_LBRACK] = ACTIONS(407), - [anon_sym_DOLLAR] = ACTIONS(409), - [anon_sym_TODO] = ACTIONS(411), - [anon_sym_WIP] = ACTIONS(411), - [anon_sym_NOTE] = ACTIONS(413), - [anon_sym_INFO] = ACTIONS(413), - [anon_sym_XXX] = ACTIONS(413), - [sym_fixme] = ACTIONS(397), - [sym__whitespace1] = ACTIONS(415), - [sym__newline] = ACTIONS(417), - [aux_sym__text_token1] = ACTIONS(419), - [sym__verbatim_begin] = ACTIONS(421), + [sym__inline_without_trailing_space] = STATE(929), + [sym__element] = STATE(623), + [sym_emphasis] = STATE(148), + [sym_emphasis_begin] = STATE(1163), + [sym_strong] = STATE(148), + [sym_strong_begin] = STATE(1164), + [sym_superscript] = STATE(148), + [sym_superscript_begin] = STATE(1165), + [sym_subscript] = STATE(148), + [sym_subscript_begin] = STATE(1166), + [sym_highlighted] = STATE(148), + [sym_highlighted_begin] = STATE(1167), + [sym_insert] = STATE(148), + [sym_insert_begin] = STATE(1168), + [sym_delete] = STATE(148), + [sym_delete_begin] = STATE(1169), + [sym_hard_line_break] = STATE(148), + [sym__smart_punctuation] = STATE(148), + [sym_autolink] = STATE(148), + [sym_footnote_reference] = STATE(148), + [sym_footnote_marker_begin] = STATE(1170), + [sym__image] = STATE(148), + [sym_full_reference_image] = STATE(148), + [sym_collapsed_reference_image] = STATE(148), + [sym_inline_image] = STATE(148), + [sym_image_description] = STATE(712), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(148), + [sym_full_reference_link] = STATE(148), + [sym_collapsed_reference_link] = STATE(148), + [sym_inline_link] = STATE(148), + [sym_link_text] = STATE(713), + [sym_span] = STATE(623), + [sym__bracketed_text_begin] = STATE(1262), + [sym__comment_with_spaces] = STATE(148), + [sym_raw_inline] = STATE(148), + [sym_math] = STATE(148), + [sym_verbatim] = STATE(148), + [sym__todo_highlights] = STATE(148), + [sym_todo] = STATE(148), + [sym_note] = STATE(148), + [sym__symbol_fallback] = STATE(148), + [aux_sym__text] = STATE(136), + [aux_sym__inline_repeat1] = STATE(129), + [anon_sym_LBRACE_] = ACTIONS(402), + [anon_sym__] = ACTIONS(404), + [anon_sym_LBRACE_STAR] = ACTIONS(406), + [anon_sym_STAR] = ACTIONS(408), + [anon_sym_LBRACE_CARET] = ACTIONS(410), + [anon_sym_CARET] = ACTIONS(410), + [anon_sym_LBRACE_TILDE] = ACTIONS(412), + [anon_sym_TILDE] = ACTIONS(412), + [anon_sym_LBRACE_EQ] = ACTIONS(414), + [anon_sym_LBRACE_PLUS] = ACTIONS(416), + [anon_sym_LBRACE_DASH] = ACTIONS(418), + [anon_sym_BSLASH] = ACTIONS(420), + [sym_quotation_marks] = ACTIONS(422), + [sym_ellipsis] = ACTIONS(422), + [sym_em_dash] = ACTIONS(422), + [sym_en_dash] = ACTIONS(424), + [sym_backslash_escape] = ACTIONS(424), + [anon_sym_LT] = ACTIONS(426), + [sym_symbol] = ACTIONS(422), + [anon_sym_LBRACK_CARET] = ACTIONS(428), + [anon_sym_BANG_LBRACK] = ACTIONS(430), + [anon_sym_LBRACK] = ACTIONS(432), + [anon_sym_DOLLAR] = ACTIONS(434), + [anon_sym_TODO] = ACTIONS(436), + [anon_sym_WIP] = ACTIONS(436), + [anon_sym_NOTE] = ACTIONS(438), + [anon_sym_INFO] = ACTIONS(438), + [anon_sym_XXX] = ACTIONS(438), + [sym_fixme] = ACTIONS(422), + [sym__whitespace1] = ACTIONS(440), + [sym__newline] = ACTIONS(442), + [aux_sym__text_token1] = ACTIONS(444), + [sym__verbatim_begin] = ACTIONS(446), }, [87] = { - [sym__inline] = STATE(974), - [sym__element] = STATE(14), - [sym_emphasis] = STATE(133), - [sym_emphasis_begin] = STATE(1201), - [sym_strong] = STATE(133), - [sym_strong_begin] = STATE(1202), - [sym_superscript] = STATE(133), - [sym_superscript_begin] = STATE(1203), - [sym_subscript] = STATE(133), - [sym_subscript_begin] = STATE(1204), - [sym_highlighted] = STATE(133), - [sym_highlighted_begin] = STATE(1205), - [sym_insert] = STATE(133), - [sym_insert_begin] = STATE(1206), - [sym_delete] = STATE(133), - [sym_delete_begin] = STATE(1207), - [sym_hard_line_break] = STATE(133), - [sym__smart_punctuation] = STATE(133), - [sym_autolink] = STATE(133), - [sym_footnote_reference] = STATE(133), - [sym_footnote_marker_begin] = STATE(1208), - [sym__image] = STATE(133), - [sym_full_reference_image] = STATE(133), - [sym_collapsed_reference_image] = STATE(133), - [sym_inline_image] = STATE(133), - [sym__image_description] = STATE(688), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(133), - [sym_full_reference_link] = STATE(133), - [sym_collapsed_reference_link] = STATE(133), - [sym_inline_link] = STATE(133), - [sym_link_text] = STATE(686), - [sym_span] = STATE(14), - [sym__bracketed_text] = STATE(673), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(133), - [sym_raw_inline] = STATE(133), - [sym_math] = STATE(133), - [sym_verbatim] = STATE(133), - [sym__todo_highlights] = STATE(133), - [sym_todo] = STATE(133), - [sym_note] = STATE(133), - [sym__symbol_fallback] = STATE(133), - [aux_sym__text] = STATE(129), - [aux_sym__inline_repeat1] = STATE(14), - [anon_sym_LBRACE_] = ACTIONS(423), - [anon_sym__] = ACTIONS(425), - [anon_sym_LBRACE_STAR] = ACTIONS(427), - [anon_sym_STAR] = ACTIONS(429), - [anon_sym_LBRACE_CARET] = ACTIONS(431), - [anon_sym_CARET] = ACTIONS(431), - [anon_sym_LBRACE_TILDE] = ACTIONS(433), - [anon_sym_TILDE] = ACTIONS(433), - [anon_sym_LBRACE_EQ] = ACTIONS(435), - [anon_sym_LBRACE_PLUS] = ACTIONS(437), - [anon_sym_LBRACE_DASH] = ACTIONS(439), - [anon_sym_BSLASH] = ACTIONS(441), - [sym_quotation_marks] = ACTIONS(443), - [sym_ellipsis] = ACTIONS(443), - [sym_em_dash] = ACTIONS(443), - [sym_en_dash] = ACTIONS(445), - [sym_backslash_escape] = ACTIONS(445), - [anon_sym_LT] = ACTIONS(447), - [sym_symbol] = ACTIONS(443), - [anon_sym_LBRACK_CARET] = ACTIONS(449), - [anon_sym_BANG_LBRACK] = ACTIONS(451), - [anon_sym_LBRACK] = ACTIONS(453), - [anon_sym_DOLLAR] = ACTIONS(455), - [anon_sym_TODO] = ACTIONS(457), - [anon_sym_WIP] = ACTIONS(457), - [anon_sym_NOTE] = ACTIONS(459), - [anon_sym_INFO] = ACTIONS(459), - [anon_sym_XXX] = ACTIONS(459), - [sym_fixme] = ACTIONS(443), - [sym__whitespace1] = ACTIONS(461), - [sym__newline] = ACTIONS(469), - [aux_sym__text_token1] = ACTIONS(465), - [sym__verbatim_begin] = ACTIONS(467), + [sym__inline] = STATE(957), + [sym__element] = STATE(84), + [sym_emphasis] = STATE(146), + [sym_emphasis_begin] = STATE(1226), + [sym_strong] = STATE(146), + [sym_strong_begin] = STATE(1227), + [sym_superscript] = STATE(146), + [sym_superscript_begin] = STATE(1228), + [sym_subscript] = STATE(146), + [sym_subscript_begin] = STATE(1229), + [sym_highlighted] = STATE(146), + [sym_highlighted_begin] = STATE(1230), + [sym_insert] = STATE(146), + [sym_insert_begin] = STATE(1231), + [sym_delete] = STATE(146), + [sym_delete_begin] = STATE(1232), + [sym_hard_line_break] = STATE(146), + [sym__smart_punctuation] = STATE(146), + [sym_autolink] = STATE(146), + [sym_footnote_reference] = STATE(146), + [sym_footnote_marker_begin] = STATE(1233), + [sym__image] = STATE(146), + [sym_full_reference_image] = STATE(146), + [sym_collapsed_reference_image] = STATE(146), + [sym_inline_image] = STATE(146), + [sym_image_description] = STATE(694), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(146), + [sym_full_reference_link] = STATE(146), + [sym_collapsed_reference_link] = STATE(146), + [sym_inline_link] = STATE(146), + [sym_link_text] = STATE(693), + [sym_span] = STATE(84), + [sym__bracketed_text_begin] = STATE(1269), + [sym__comment_with_spaces] = STATE(146), + [sym_raw_inline] = STATE(146), + [sym_math] = STATE(146), + [sym_verbatim] = STATE(146), + [sym__todo_highlights] = STATE(146), + [sym_todo] = STATE(146), + [sym_note] = STATE(146), + [sym__symbol_fallback] = STATE(146), + [aux_sym__text] = STATE(141), + [aux_sym__inline_repeat1] = STATE(84), + [anon_sym_LBRACE_] = ACTIONS(356), + [anon_sym__] = ACTIONS(358), + [anon_sym_LBRACE_STAR] = ACTIONS(360), + [anon_sym_STAR] = ACTIONS(362), + [anon_sym_LBRACE_CARET] = ACTIONS(364), + [anon_sym_CARET] = ACTIONS(364), + [anon_sym_LBRACE_TILDE] = ACTIONS(366), + [anon_sym_TILDE] = ACTIONS(366), + [anon_sym_LBRACE_EQ] = ACTIONS(368), + [anon_sym_LBRACE_PLUS] = ACTIONS(370), + [anon_sym_LBRACE_DASH] = ACTIONS(372), + [anon_sym_BSLASH] = ACTIONS(374), + [sym_quotation_marks] = ACTIONS(376), + [sym_ellipsis] = ACTIONS(376), + [sym_em_dash] = ACTIONS(376), + [sym_en_dash] = ACTIONS(378), + [sym_backslash_escape] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [sym_symbol] = ACTIONS(376), + [anon_sym_LBRACK_CARET] = ACTIONS(382), + [anon_sym_BANG_LBRACK] = ACTIONS(384), + [anon_sym_LBRACK] = ACTIONS(386), + [anon_sym_DOLLAR] = ACTIONS(388), + [anon_sym_TODO] = ACTIONS(390), + [anon_sym_WIP] = ACTIONS(390), + [anon_sym_NOTE] = ACTIONS(392), + [anon_sym_INFO] = ACTIONS(392), + [anon_sym_XXX] = ACTIONS(392), + [sym_fixme] = ACTIONS(376), + [sym__whitespace1] = ACTIONS(394), + [sym__newline] = ACTIONS(396), + [aux_sym__text_token1] = ACTIONS(398), + [sym__verbatim_begin] = ACTIONS(400), }, [88] = { - [sym__inline] = STATE(985), - [sym__element] = STATE(3), - [sym_emphasis] = STATE(137), - [sym_emphasis_begin] = STATE(1193), - [sym_strong] = STATE(137), - [sym_strong_begin] = STATE(1194), - [sym_superscript] = STATE(137), - [sym_superscript_begin] = STATE(1195), - [sym_subscript] = STATE(137), - [sym_subscript_begin] = STATE(1196), - [sym_highlighted] = STATE(137), - [sym_highlighted_begin] = STATE(1197), - [sym_insert] = STATE(137), - [sym_insert_begin] = STATE(1198), - [sym_delete] = STATE(137), - [sym_delete_begin] = STATE(1199), - [sym_hard_line_break] = STATE(137), - [sym__smart_punctuation] = STATE(137), - [sym_autolink] = STATE(137), - [sym_footnote_reference] = STATE(137), - [sym_footnote_marker_begin] = STATE(1200), - [sym__image] = STATE(137), - [sym_full_reference_image] = STATE(137), - [sym_collapsed_reference_image] = STATE(137), - [sym_inline_image] = STATE(137), - [sym__image_description] = STATE(694), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(137), - [sym_full_reference_link] = STATE(137), - [sym_collapsed_reference_link] = STATE(137), - [sym_inline_link] = STATE(137), - [sym_link_text] = STATE(693), - [sym_span] = STATE(3), - [sym__bracketed_text] = STATE(672), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(137), - [sym_raw_inline] = STATE(137), - [sym_math] = STATE(137), - [sym_verbatim] = STATE(137), - [sym__todo_highlights] = STATE(137), - [sym_todo] = STATE(137), - [sym_note] = STATE(137), - [sym__symbol_fallback] = STATE(137), - [aux_sym__text] = STATE(131), - [aux_sym__inline_repeat1] = STATE(3), + [sym__inline] = STATE(959), + [sym__element] = STATE(46), + [sym_emphasis] = STATE(147), + [sym_emphasis_begin] = STATE(1217), + [sym_strong] = STATE(147), + [sym_strong_begin] = STATE(1218), + [sym_superscript] = STATE(147), + [sym_superscript_begin] = STATE(1219), + [sym_subscript] = STATE(147), + [sym_subscript_begin] = STATE(1220), + [sym_highlighted] = STATE(147), + [sym_highlighted_begin] = STATE(1221), + [sym_insert] = STATE(147), + [sym_insert_begin] = STATE(1222), + [sym_delete] = STATE(147), + [sym_delete_begin] = STATE(1223), + [sym_hard_line_break] = STATE(147), + [sym__smart_punctuation] = STATE(147), + [sym_autolink] = STATE(147), + [sym_footnote_reference] = STATE(147), + [sym_footnote_marker_begin] = STATE(1224), + [sym__image] = STATE(147), + [sym_full_reference_image] = STATE(147), + [sym_collapsed_reference_image] = STATE(147), + [sym_inline_image] = STATE(147), + [sym_image_description] = STATE(699), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(147), + [sym_full_reference_link] = STATE(147), + [sym_collapsed_reference_link] = STATE(147), + [sym_inline_link] = STATE(147), + [sym_link_text] = STATE(698), + [sym_span] = STATE(46), + [sym__bracketed_text_begin] = STATE(1268), + [sym__comment_with_spaces] = STATE(147), + [sym_raw_inline] = STATE(147), + [sym_math] = STATE(147), + [sym_verbatim] = STATE(147), + [sym__todo_highlights] = STATE(147), + [sym_todo] = STATE(147), + [sym_note] = STATE(147), + [sym__symbol_fallback] = STATE(147), + [aux_sym__text] = STATE(132), + [aux_sym__inline_repeat1] = STATE(46), + [anon_sym_LBRACE_] = ACTIONS(189), + [anon_sym__] = ACTIONS(191), + [anon_sym_LBRACE_STAR] = ACTIONS(193), + [anon_sym_STAR] = ACTIONS(195), + [anon_sym_LBRACE_CARET] = ACTIONS(197), + [anon_sym_CARET] = ACTIONS(197), + [anon_sym_LBRACE_TILDE] = ACTIONS(199), + [anon_sym_TILDE] = ACTIONS(199), + [anon_sym_LBRACE_EQ] = ACTIONS(201), + [anon_sym_LBRACE_PLUS] = ACTIONS(203), + [anon_sym_LBRACE_DASH] = ACTIONS(205), + [anon_sym_BSLASH] = ACTIONS(207), + [sym_quotation_marks] = ACTIONS(209), + [sym_ellipsis] = ACTIONS(209), + [sym_em_dash] = ACTIONS(209), + [sym_en_dash] = ACTIONS(211), + [sym_backslash_escape] = ACTIONS(211), + [anon_sym_LT] = ACTIONS(213), + [sym_symbol] = ACTIONS(209), + [anon_sym_LBRACK_CARET] = ACTIONS(215), + [anon_sym_BANG_LBRACK] = ACTIONS(217), + [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_DOLLAR] = ACTIONS(221), + [anon_sym_TODO] = ACTIONS(223), + [anon_sym_WIP] = ACTIONS(223), + [anon_sym_NOTE] = ACTIONS(225), + [anon_sym_INFO] = ACTIONS(225), + [anon_sym_XXX] = ACTIONS(225), + [sym_fixme] = ACTIONS(209), + [sym__whitespace1] = ACTIONS(227), + [sym__newline] = ACTIONS(229), + [aux_sym__text_token1] = ACTIONS(231), + [sym__verbatim_begin] = ACTIONS(233), + }, + [89] = { + [sym__inline] = STATE(961), + [sym__element] = STATE(7), + [sym_emphasis] = STATE(153), + [sym_emphasis_begin] = STATE(1208), + [sym_strong] = STATE(153), + [sym_strong_begin] = STATE(1209), + [sym_superscript] = STATE(153), + [sym_superscript_begin] = STATE(1210), + [sym_subscript] = STATE(153), + [sym_subscript_begin] = STATE(1211), + [sym_highlighted] = STATE(153), + [sym_highlighted_begin] = STATE(1212), + [sym_insert] = STATE(153), + [sym_insert_begin] = STATE(1213), + [sym_delete] = STATE(153), + [sym_delete_begin] = STATE(1214), + [sym_hard_line_break] = STATE(153), + [sym__smart_punctuation] = STATE(153), + [sym_autolink] = STATE(153), + [sym_footnote_reference] = STATE(153), + [sym_footnote_marker_begin] = STATE(1215), + [sym__image] = STATE(153), + [sym_full_reference_image] = STATE(153), + [sym_collapsed_reference_image] = STATE(153), + [sym_inline_image] = STATE(153), + [sym_image_description] = STATE(707), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(153), + [sym_full_reference_link] = STATE(153), + [sym_collapsed_reference_link] = STATE(153), + [sym_inline_link] = STATE(153), + [sym_link_text] = STATE(705), + [sym_span] = STATE(7), + [sym__bracketed_text_begin] = STATE(1267), + [sym__comment_with_spaces] = STATE(153), + [sym_raw_inline] = STATE(153), + [sym_math] = STATE(153), + [sym_verbatim] = STATE(153), + [sym__todo_highlights] = STATE(153), + [sym_todo] = STATE(153), + [sym_note] = STATE(153), + [sym__symbol_fallback] = STATE(153), + [aux_sym__text] = STATE(134), + [aux_sym__inline_repeat1] = STATE(7), [anon_sym_LBRACE_] = ACTIONS(97), [anon_sym__] = ACTIONS(99), [anon_sym_LBRACE_STAR] = ACTIONS(101), @@ -12295,856 +12343,529 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_XXX] = ACTIONS(133), [sym_fixme] = ACTIONS(117), [sym__whitespace1] = ACTIONS(135), - [sym__newline] = ACTIONS(145), + [sym__newline] = ACTIONS(137), [aux_sym__text_token1] = ACTIONS(139), [sym__verbatim_begin] = ACTIONS(141), }, - [89] = { - [sym__inline] = STATE(990), - [sym__element] = STATE(107), - [sym_emphasis] = STATE(140), - [sym_emphasis_begin] = STATE(1185), - [sym_strong] = STATE(140), - [sym_strong_begin] = STATE(1186), - [sym_superscript] = STATE(140), - [sym_superscript_begin] = STATE(1187), - [sym_subscript] = STATE(140), - [sym_subscript_begin] = STATE(1188), - [sym_highlighted] = STATE(140), - [sym_highlighted_begin] = STATE(1189), - [sym_insert] = STATE(140), - [sym_insert_begin] = STATE(1190), - [sym_delete] = STATE(140), - [sym_delete_begin] = STATE(1191), - [sym_hard_line_break] = STATE(140), - [sym__smart_punctuation] = STATE(140), - [sym_autolink] = STATE(140), - [sym_footnote_reference] = STATE(140), - [sym_footnote_marker_begin] = STATE(1192), - [sym__image] = STATE(140), - [sym_full_reference_image] = STATE(140), - [sym_collapsed_reference_image] = STATE(140), - [sym_inline_image] = STATE(140), - [sym__image_description] = STATE(700), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(140), - [sym_full_reference_link] = STATE(140), - [sym_collapsed_reference_link] = STATE(140), - [sym_inline_link] = STATE(140), - [sym_link_text] = STATE(699), - [sym_span] = STATE(107), - [sym__bracketed_text] = STATE(666), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(140), - [sym_raw_inline] = STATE(140), - [sym_math] = STATE(140), - [sym_verbatim] = STATE(140), - [sym__todo_highlights] = STATE(140), - [sym_todo] = STATE(140), - [sym_note] = STATE(140), - [sym__symbol_fallback] = STATE(140), - [aux_sym__text] = STATE(125), - [aux_sym__inline_repeat1] = STATE(107), - [anon_sym_LBRACE_] = ACTIONS(193), - [anon_sym__] = ACTIONS(195), - [anon_sym_LBRACE_STAR] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(199), - [anon_sym_LBRACE_CARET] = ACTIONS(201), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_LBRACE_TILDE] = ACTIONS(203), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_LBRACE_EQ] = ACTIONS(205), - [anon_sym_LBRACE_PLUS] = ACTIONS(207), - [anon_sym_LBRACE_DASH] = ACTIONS(209), - [anon_sym_BSLASH] = ACTIONS(211), - [sym_quotation_marks] = ACTIONS(213), - [sym_ellipsis] = ACTIONS(213), - [sym_em_dash] = ACTIONS(213), - [sym_en_dash] = ACTIONS(215), - [sym_backslash_escape] = ACTIONS(215), - [anon_sym_LT] = ACTIONS(217), - [sym_symbol] = ACTIONS(213), - [anon_sym_LBRACK_CARET] = ACTIONS(219), - [anon_sym_BANG_LBRACK] = ACTIONS(221), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_DOLLAR] = ACTIONS(225), - [anon_sym_TODO] = ACTIONS(227), - [anon_sym_WIP] = ACTIONS(227), - [anon_sym_NOTE] = ACTIONS(229), - [anon_sym_INFO] = ACTIONS(229), - [anon_sym_XXX] = ACTIONS(229), - [sym_fixme] = ACTIONS(213), - [sym__whitespace1] = ACTIONS(231), - [sym__newline] = ACTIONS(233), - [aux_sym__text_token1] = ACTIONS(235), - [sym__verbatim_begin] = ACTIONS(237), - }, [90] = { - [sym__inline] = STATE(991), - [sym__element] = STATE(72), - [sym_emphasis] = STATE(135), - [sym_emphasis_begin] = STATE(1177), - [sym_strong] = STATE(135), - [sym_strong_begin] = STATE(1178), - [sym_superscript] = STATE(135), - [sym_superscript_begin] = STATE(1179), - [sym_subscript] = STATE(135), - [sym_subscript_begin] = STATE(1180), - [sym_highlighted] = STATE(135), - [sym_highlighted_begin] = STATE(1181), - [sym_insert] = STATE(135), - [sym_insert_begin] = STATE(1182), - [sym_delete] = STATE(135), - [sym_delete_begin] = STATE(1183), - [sym_hard_line_break] = STATE(135), - [sym__smart_punctuation] = STATE(135), - [sym_autolink] = STATE(135), - [sym_footnote_reference] = STATE(135), - [sym_footnote_marker_begin] = STATE(1184), - [sym__image] = STATE(135), - [sym_full_reference_image] = STATE(135), - [sym_collapsed_reference_image] = STATE(135), - [sym_inline_image] = STATE(135), - [sym__image_description] = STATE(687), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(135), - [sym_full_reference_link] = STATE(135), - [sym_collapsed_reference_link] = STATE(135), - [sym_inline_link] = STATE(135), - [sym_link_text] = STATE(684), - [sym_span] = STATE(72), - [sym__bracketed_text] = STATE(670), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(135), - [sym_raw_inline] = STATE(135), - [sym_math] = STATE(135), - [sym_verbatim] = STATE(135), - [sym__todo_highlights] = STATE(135), - [sym_todo] = STATE(135), - [sym_note] = STATE(135), - [sym__symbol_fallback] = STATE(135), - [aux_sym__text] = STATE(124), - [aux_sym__inline_repeat1] = STATE(72), - [anon_sym_LBRACE_] = ACTIONS(239), - [anon_sym__] = ACTIONS(241), - [anon_sym_LBRACE_STAR] = ACTIONS(243), - [anon_sym_STAR] = ACTIONS(245), - [anon_sym_LBRACE_CARET] = ACTIONS(247), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_LBRACE_TILDE] = ACTIONS(249), - [anon_sym_TILDE] = ACTIONS(249), - [anon_sym_LBRACE_EQ] = ACTIONS(251), - [anon_sym_LBRACE_PLUS] = ACTIONS(253), - [anon_sym_LBRACE_DASH] = ACTIONS(255), - [anon_sym_BSLASH] = ACTIONS(257), - [sym_quotation_marks] = ACTIONS(259), - [sym_ellipsis] = ACTIONS(259), - [sym_em_dash] = ACTIONS(259), - [sym_en_dash] = ACTIONS(261), - [sym_backslash_escape] = ACTIONS(261), - [anon_sym_LT] = ACTIONS(263), - [sym_symbol] = ACTIONS(259), - [anon_sym_LBRACK_CARET] = ACTIONS(265), - [anon_sym_BANG_LBRACK] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(269), - [anon_sym_DOLLAR] = ACTIONS(271), - [anon_sym_TODO] = ACTIONS(273), - [anon_sym_WIP] = ACTIONS(273), - [anon_sym_NOTE] = ACTIONS(275), - [anon_sym_INFO] = ACTIONS(275), - [anon_sym_XXX] = ACTIONS(275), - [sym_fixme] = ACTIONS(259), - [sym__whitespace1] = ACTIONS(277), - [sym__newline] = ACTIONS(279), - [aux_sym__text_token1] = ACTIONS(281), - [sym__verbatim_begin] = ACTIONS(283), + [sym__inline] = STATE(962), + [sym__element] = STATE(21), + [sym_emphasis] = STATE(149), + [sym_emphasis_begin] = STATE(1199), + [sym_strong] = STATE(149), + [sym_strong_begin] = STATE(1200), + [sym_superscript] = STATE(149), + [sym_superscript_begin] = STATE(1201), + [sym_subscript] = STATE(149), + [sym_subscript_begin] = STATE(1202), + [sym_highlighted] = STATE(149), + [sym_highlighted_begin] = STATE(1203), + [sym_insert] = STATE(149), + [sym_insert_begin] = STATE(1204), + [sym_delete] = STATE(149), + [sym_delete_begin] = STATE(1205), + [sym_hard_line_break] = STATE(149), + [sym__smart_punctuation] = STATE(149), + [sym_autolink] = STATE(149), + [sym_footnote_reference] = STATE(149), + [sym_footnote_marker_begin] = STATE(1206), + [sym__image] = STATE(149), + [sym_full_reference_image] = STATE(149), + [sym_collapsed_reference_image] = STATE(149), + [sym_inline_image] = STATE(149), + [sym_image_description] = STATE(714), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(149), + [sym_full_reference_link] = STATE(149), + [sym_collapsed_reference_link] = STATE(149), + [sym_inline_link] = STATE(149), + [sym_link_text] = STATE(710), + [sym_span] = STATE(21), + [sym__bracketed_text_begin] = STATE(1266), + [sym__comment_with_spaces] = STATE(149), + [sym_raw_inline] = STATE(149), + [sym_math] = STATE(149), + [sym_verbatim] = STATE(149), + [sym__todo_highlights] = STATE(149), + [sym_todo] = STATE(149), + [sym_note] = STATE(149), + [sym__symbol_fallback] = STATE(149), + [aux_sym__text] = STATE(142), + [aux_sym__inline_repeat1] = STATE(21), + [anon_sym_LBRACE_] = ACTIONS(494), + [anon_sym__] = ACTIONS(496), + [anon_sym_LBRACE_STAR] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(500), + [anon_sym_LBRACE_CARET] = ACTIONS(502), + [anon_sym_CARET] = ACTIONS(502), + [anon_sym_LBRACE_TILDE] = ACTIONS(504), + [anon_sym_TILDE] = ACTIONS(504), + [anon_sym_LBRACE_EQ] = ACTIONS(506), + [anon_sym_LBRACE_PLUS] = ACTIONS(508), + [anon_sym_LBRACE_DASH] = ACTIONS(510), + [anon_sym_BSLASH] = ACTIONS(512), + [sym_quotation_marks] = ACTIONS(514), + [sym_ellipsis] = ACTIONS(514), + [sym_em_dash] = ACTIONS(514), + [sym_en_dash] = ACTIONS(516), + [sym_backslash_escape] = ACTIONS(516), + [anon_sym_LT] = ACTIONS(518), + [sym_symbol] = ACTIONS(514), + [anon_sym_LBRACK_CARET] = ACTIONS(520), + [anon_sym_BANG_LBRACK] = ACTIONS(522), + [anon_sym_LBRACK] = ACTIONS(524), + [anon_sym_DOLLAR] = ACTIONS(526), + [anon_sym_TODO] = ACTIONS(528), + [anon_sym_WIP] = ACTIONS(528), + [anon_sym_NOTE] = ACTIONS(530), + [anon_sym_INFO] = ACTIONS(530), + [anon_sym_XXX] = ACTIONS(530), + [sym_fixme] = ACTIONS(514), + [sym__whitespace1] = ACTIONS(532), + [sym__newline] = ACTIONS(540), + [aux_sym__text_token1] = ACTIONS(536), + [sym__verbatim_begin] = ACTIONS(538), }, [91] = { - [sym__inline] = STATE(992), - [sym__element] = STATE(82), - [sym_emphasis] = STATE(143), - [sym_emphasis_begin] = STATE(1169), - [sym_strong] = STATE(143), - [sym_strong_begin] = STATE(1170), - [sym_superscript] = STATE(143), - [sym_superscript_begin] = STATE(1171), - [sym_subscript] = STATE(143), - [sym_subscript_begin] = STATE(1172), - [sym_highlighted] = STATE(143), - [sym_highlighted_begin] = STATE(1173), - [sym_insert] = STATE(143), - [sym_insert_begin] = STATE(1174), - [sym_delete] = STATE(143), - [sym_delete_begin] = STATE(1175), - [sym_hard_line_break] = STATE(143), - [sym__smart_punctuation] = STATE(143), - [sym_autolink] = STATE(143), - [sym_footnote_reference] = STATE(143), - [sym_footnote_marker_begin] = STATE(1176), - [sym__image] = STATE(143), - [sym_full_reference_image] = STATE(143), - [sym_collapsed_reference_image] = STATE(143), - [sym_inline_image] = STATE(143), - [sym__image_description] = STATE(701), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(143), - [sym_full_reference_link] = STATE(143), - [sym_collapsed_reference_link] = STATE(143), - [sym_inline_link] = STATE(143), - [sym_link_text] = STATE(702), - [sym_span] = STATE(82), - [sym__bracketed_text] = STATE(667), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(143), - [sym_raw_inline] = STATE(143), - [sym_math] = STATE(143), - [sym_verbatim] = STATE(143), - [sym__todo_highlights] = STATE(143), - [sym_todo] = STATE(143), - [sym_note] = STATE(143), - [sym__symbol_fallback] = STATE(143), - [aux_sym__text] = STATE(126), - [aux_sym__inline_repeat1] = STATE(82), - [anon_sym_LBRACE_] = ACTIONS(285), - [anon_sym__] = ACTIONS(287), - [anon_sym_LBRACE_STAR] = ACTIONS(289), - [anon_sym_STAR] = ACTIONS(291), - [anon_sym_LBRACE_CARET] = ACTIONS(293), - [anon_sym_CARET] = ACTIONS(293), - [anon_sym_LBRACE_TILDE] = ACTIONS(295), - [anon_sym_TILDE] = ACTIONS(295), - [anon_sym_LBRACE_EQ] = ACTIONS(297), - [anon_sym_LBRACE_PLUS] = ACTIONS(299), - [anon_sym_LBRACE_DASH] = ACTIONS(301), - [anon_sym_BSLASH] = ACTIONS(303), - [sym_quotation_marks] = ACTIONS(305), - [sym_ellipsis] = ACTIONS(305), - [sym_em_dash] = ACTIONS(305), - [sym_en_dash] = ACTIONS(307), - [sym_backslash_escape] = ACTIONS(307), - [anon_sym_LT] = ACTIONS(309), - [sym_symbol] = ACTIONS(305), - [anon_sym_LBRACK_CARET] = ACTIONS(311), - [anon_sym_BANG_LBRACK] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_DOLLAR] = ACTIONS(317), - [anon_sym_TODO] = ACTIONS(319), - [anon_sym_WIP] = ACTIONS(319), - [anon_sym_NOTE] = ACTIONS(321), - [anon_sym_INFO] = ACTIONS(321), - [anon_sym_XXX] = ACTIONS(321), - [sym_fixme] = ACTIONS(305), - [sym__whitespace1] = ACTIONS(323), - [sym__newline] = ACTIONS(325), - [aux_sym__text_token1] = ACTIONS(327), - [sym__verbatim_begin] = ACTIONS(329), - }, - [92] = { - [sym__inline_without_trailing_space] = STATE(993), - [sym__element] = STATE(572), - [sym_emphasis] = STATE(138), - [sym_emphasis_begin] = STATE(1161), - [sym_strong] = STATE(138), - [sym_strong_begin] = STATE(1162), - [sym_superscript] = STATE(138), - [sym_superscript_begin] = STATE(1163), - [sym_subscript] = STATE(138), - [sym_subscript_begin] = STATE(1164), - [sym_highlighted] = STATE(138), - [sym_highlighted_begin] = STATE(1165), - [sym_insert] = STATE(138), - [sym_insert_begin] = STATE(1166), - [sym_delete] = STATE(138), - [sym_delete_begin] = STATE(1167), - [sym_hard_line_break] = STATE(138), - [sym__smart_punctuation] = STATE(138), - [sym_autolink] = STATE(138), - [sym_footnote_reference] = STATE(138), - [sym_footnote_marker_begin] = STATE(1168), - [sym__image] = STATE(138), - [sym_full_reference_image] = STATE(138), - [sym_collapsed_reference_image] = STATE(138), - [sym_inline_image] = STATE(138), - [sym__image_description] = STATE(703), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(138), - [sym_full_reference_link] = STATE(138), - [sym_collapsed_reference_link] = STATE(138), - [sym_inline_link] = STATE(138), - [sym_link_text] = STATE(697), - [sym_span] = STATE(572), - [sym__bracketed_text] = STATE(671), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(138), - [sym_raw_inline] = STATE(138), - [sym_math] = STATE(138), - [sym_verbatim] = STATE(138), - [sym__todo_highlights] = STATE(138), - [sym_todo] = STATE(138), - [sym_note] = STATE(138), - [sym__symbol_fallback] = STATE(138), - [aux_sym__text] = STATE(122), - [aux_sym__inline_repeat1] = STATE(120), - [anon_sym_LBRACE_] = ACTIONS(331), - [anon_sym__] = ACTIONS(333), - [anon_sym_LBRACE_STAR] = ACTIONS(335), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_LBRACE_CARET] = ACTIONS(339), - [anon_sym_CARET] = ACTIONS(339), - [anon_sym_LBRACE_TILDE] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_LBRACE_EQ] = ACTIONS(343), - [anon_sym_LBRACE_PLUS] = ACTIONS(345), - [anon_sym_LBRACE_DASH] = ACTIONS(347), - [anon_sym_BSLASH] = ACTIONS(349), - [sym_quotation_marks] = ACTIONS(351), - [sym_ellipsis] = ACTIONS(351), - [sym_em_dash] = ACTIONS(351), - [sym_en_dash] = ACTIONS(353), - [sym_backslash_escape] = ACTIONS(353), - [anon_sym_LT] = ACTIONS(355), - [sym_symbol] = ACTIONS(351), - [anon_sym_LBRACK_CARET] = ACTIONS(357), - [anon_sym_BANG_LBRACK] = ACTIONS(359), - [anon_sym_LBRACK] = ACTIONS(361), - [anon_sym_DOLLAR] = ACTIONS(363), - [anon_sym_TODO] = ACTIONS(365), - [anon_sym_WIP] = ACTIONS(365), - [anon_sym_NOTE] = ACTIONS(367), - [anon_sym_INFO] = ACTIONS(367), - [anon_sym_XXX] = ACTIONS(367), - [sym_fixme] = ACTIONS(351), - [sym__whitespace1] = ACTIONS(369), - [sym__newline] = ACTIONS(371), - [aux_sym__text_token1] = ACTIONS(373), - [sym__verbatim_begin] = ACTIONS(375), - }, - [93] = { - [sym__inline] = STATE(1144), - [sym__element] = STATE(82), - [sym_emphasis] = STATE(143), - [sym_emphasis_begin] = STATE(1169), - [sym_strong] = STATE(143), - [sym_strong_begin] = STATE(1170), - [sym_superscript] = STATE(143), - [sym_superscript_begin] = STATE(1171), - [sym_subscript] = STATE(143), - [sym_subscript_begin] = STATE(1172), - [sym_highlighted] = STATE(143), - [sym_highlighted_begin] = STATE(1173), - [sym_insert] = STATE(143), - [sym_insert_begin] = STATE(1174), - [sym_delete] = STATE(143), - [sym_delete_begin] = STATE(1175), - [sym_hard_line_break] = STATE(143), - [sym__smart_punctuation] = STATE(143), - [sym_autolink] = STATE(143), - [sym_footnote_reference] = STATE(143), - [sym_footnote_marker_begin] = STATE(1176), - [sym__image] = STATE(143), - [sym_full_reference_image] = STATE(143), - [sym_collapsed_reference_image] = STATE(143), - [sym_inline_image] = STATE(143), - [sym__image_description] = STATE(701), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(143), - [sym_full_reference_link] = STATE(143), - [sym_collapsed_reference_link] = STATE(143), - [sym_inline_link] = STATE(143), - [sym_link_text] = STATE(702), - [sym_span] = STATE(82), - [sym__bracketed_text] = STATE(667), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(143), - [sym_raw_inline] = STATE(143), - [sym_math] = STATE(143), - [sym_verbatim] = STATE(143), - [sym__todo_highlights] = STATE(143), - [sym_todo] = STATE(143), - [sym_note] = STATE(143), - [sym__symbol_fallback] = STATE(143), - [aux_sym__text] = STATE(126), - [aux_sym__inline_repeat1] = STATE(82), - [anon_sym_LBRACE_] = ACTIONS(285), - [anon_sym__] = ACTIONS(287), - [anon_sym_LBRACE_STAR] = ACTIONS(289), - [anon_sym_STAR] = ACTIONS(291), - [anon_sym_LBRACE_CARET] = ACTIONS(293), - [anon_sym_CARET] = ACTIONS(293), - [anon_sym_LBRACE_TILDE] = ACTIONS(295), - [anon_sym_TILDE] = ACTIONS(295), - [anon_sym_LBRACE_EQ] = ACTIONS(297), - [anon_sym_LBRACE_PLUS] = ACTIONS(299), - [anon_sym_LBRACE_DASH] = ACTIONS(301), - [anon_sym_BSLASH] = ACTIONS(303), - [sym_quotation_marks] = ACTIONS(305), - [sym_ellipsis] = ACTIONS(305), - [sym_em_dash] = ACTIONS(305), - [sym_en_dash] = ACTIONS(307), - [sym_backslash_escape] = ACTIONS(307), - [anon_sym_LT] = ACTIONS(309), - [sym_symbol] = ACTIONS(305), - [anon_sym_LBRACK_CARET] = ACTIONS(311), - [anon_sym_BANG_LBRACK] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_DOLLAR] = ACTIONS(317), - [anon_sym_TODO] = ACTIONS(319), - [anon_sym_WIP] = ACTIONS(319), - [anon_sym_NOTE] = ACTIONS(321), - [anon_sym_INFO] = ACTIONS(321), - [anon_sym_XXX] = ACTIONS(321), - [sym_fixme] = ACTIONS(305), - [sym__whitespace1] = ACTIONS(323), - [sym__newline] = ACTIONS(325), - [aux_sym__text_token1] = ACTIONS(327), - [sym__verbatim_begin] = ACTIONS(329), + [sym__inline] = STATE(1261), + [sym__element] = STATE(80), + [sym_emphasis] = STATE(145), + [sym_emphasis_begin] = STATE(1190), + [sym_strong] = STATE(145), + [sym_strong_begin] = STATE(1191), + [sym_superscript] = STATE(145), + [sym_superscript_begin] = STATE(1192), + [sym_subscript] = STATE(145), + [sym_subscript_begin] = STATE(1193), + [sym_highlighted] = STATE(145), + [sym_highlighted_begin] = STATE(1194), + [sym_insert] = STATE(145), + [sym_insert_begin] = STATE(1195), + [sym_delete] = STATE(145), + [sym_delete_begin] = STATE(1196), + [sym_hard_line_break] = STATE(145), + [sym__smart_punctuation] = STATE(145), + [sym_autolink] = STATE(145), + [sym_footnote_reference] = STATE(145), + [sym_footnote_marker_begin] = STATE(1197), + [sym__image] = STATE(145), + [sym_full_reference_image] = STATE(145), + [sym_collapsed_reference_image] = STATE(145), + [sym_inline_image] = STATE(145), + [sym_image_description] = STATE(696), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(145), + [sym_full_reference_link] = STATE(145), + [sym_collapsed_reference_link] = STATE(145), + [sym_inline_link] = STATE(145), + [sym_link_text] = STATE(691), + [sym_span] = STATE(80), + [sym__bracketed_text_begin] = STATE(1265), + [sym__comment_with_spaces] = STATE(145), + [sym_raw_inline] = STATE(145), + [sym_math] = STATE(145), + [sym_verbatim] = STATE(145), + [sym__todo_highlights] = STATE(145), + [sym_todo] = STATE(145), + [sym_note] = STATE(145), + [sym__symbol_fallback] = STATE(145), + [aux_sym__text] = STATE(138), + [aux_sym__inline_repeat1] = STATE(80), + [anon_sym_LBRACE_] = ACTIONS(542), + [anon_sym__] = ACTIONS(544), + [anon_sym_LBRACE_STAR] = ACTIONS(546), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE_CARET] = ACTIONS(550), + [anon_sym_CARET] = ACTIONS(550), + [anon_sym_LBRACE_TILDE] = ACTIONS(552), + [anon_sym_TILDE] = ACTIONS(552), + [anon_sym_LBRACE_EQ] = ACTIONS(554), + [anon_sym_LBRACE_PLUS] = ACTIONS(556), + [anon_sym_LBRACE_DASH] = ACTIONS(558), + [anon_sym_BSLASH] = ACTIONS(560), + [sym_quotation_marks] = ACTIONS(562), + [sym_ellipsis] = ACTIONS(562), + [sym_em_dash] = ACTIONS(562), + [sym_en_dash] = ACTIONS(564), + [sym_backslash_escape] = ACTIONS(564), + [anon_sym_LT] = ACTIONS(566), + [sym_symbol] = ACTIONS(562), + [anon_sym_LBRACK_CARET] = ACTIONS(568), + [anon_sym_BANG_LBRACK] = ACTIONS(570), + [anon_sym_LBRACK] = ACTIONS(572), + [anon_sym_DOLLAR] = ACTIONS(574), + [anon_sym_TODO] = ACTIONS(576), + [anon_sym_WIP] = ACTIONS(576), + [anon_sym_NOTE] = ACTIONS(578), + [anon_sym_INFO] = ACTIONS(578), + [anon_sym_XXX] = ACTIONS(578), + [sym_fixme] = ACTIONS(562), + [sym__whitespace1] = ACTIONS(580), + [sym__newline] = ACTIONS(582), + [aux_sym__text_token1] = ACTIONS(584), + [sym__verbatim_begin] = ACTIONS(586), + }, + [92] = { + [sym__inline] = STATE(963), + [sym__element] = STATE(80), + [sym_emphasis] = STATE(145), + [sym_emphasis_begin] = STATE(1190), + [sym_strong] = STATE(145), + [sym_strong_begin] = STATE(1191), + [sym_superscript] = STATE(145), + [sym_superscript_begin] = STATE(1192), + [sym_subscript] = STATE(145), + [sym_subscript_begin] = STATE(1193), + [sym_highlighted] = STATE(145), + [sym_highlighted_begin] = STATE(1194), + [sym_insert] = STATE(145), + [sym_insert_begin] = STATE(1195), + [sym_delete] = STATE(145), + [sym_delete_begin] = STATE(1196), + [sym_hard_line_break] = STATE(145), + [sym__smart_punctuation] = STATE(145), + [sym_autolink] = STATE(145), + [sym_footnote_reference] = STATE(145), + [sym_footnote_marker_begin] = STATE(1197), + [sym__image] = STATE(145), + [sym_full_reference_image] = STATE(145), + [sym_collapsed_reference_image] = STATE(145), + [sym_inline_image] = STATE(145), + [sym_image_description] = STATE(696), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(145), + [sym_full_reference_link] = STATE(145), + [sym_collapsed_reference_link] = STATE(145), + [sym_inline_link] = STATE(145), + [sym_link_text] = STATE(691), + [sym_span] = STATE(80), + [sym__bracketed_text_begin] = STATE(1265), + [sym__comment_with_spaces] = STATE(145), + [sym_raw_inline] = STATE(145), + [sym_math] = STATE(145), + [sym_verbatim] = STATE(145), + [sym__todo_highlights] = STATE(145), + [sym_todo] = STATE(145), + [sym_note] = STATE(145), + [sym__symbol_fallback] = STATE(145), + [aux_sym__text] = STATE(138), + [aux_sym__inline_repeat1] = STATE(80), + [anon_sym_LBRACE_] = ACTIONS(542), + [anon_sym__] = ACTIONS(544), + [anon_sym_LBRACE_STAR] = ACTIONS(546), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE_CARET] = ACTIONS(550), + [anon_sym_CARET] = ACTIONS(550), + [anon_sym_LBRACE_TILDE] = ACTIONS(552), + [anon_sym_TILDE] = ACTIONS(552), + [anon_sym_LBRACE_EQ] = ACTIONS(554), + [anon_sym_LBRACE_PLUS] = ACTIONS(556), + [anon_sym_LBRACE_DASH] = ACTIONS(558), + [anon_sym_BSLASH] = ACTIONS(560), + [sym_quotation_marks] = ACTIONS(562), + [sym_ellipsis] = ACTIONS(562), + [sym_em_dash] = ACTIONS(562), + [sym_en_dash] = ACTIONS(564), + [sym_backslash_escape] = ACTIONS(564), + [anon_sym_LT] = ACTIONS(566), + [sym_symbol] = ACTIONS(562), + [anon_sym_LBRACK_CARET] = ACTIONS(568), + [anon_sym_BANG_LBRACK] = ACTIONS(570), + [anon_sym_LBRACK] = ACTIONS(572), + [anon_sym_DOLLAR] = ACTIONS(574), + [anon_sym_TODO] = ACTIONS(576), + [anon_sym_WIP] = ACTIONS(576), + [anon_sym_NOTE] = ACTIONS(578), + [anon_sym_INFO] = ACTIONS(578), + [anon_sym_XXX] = ACTIONS(578), + [sym_fixme] = ACTIONS(562), + [sym__whitespace1] = ACTIONS(580), + [sym__newline] = ACTIONS(582), + [aux_sym__text_token1] = ACTIONS(584), + [sym__verbatim_begin] = ACTIONS(586), + }, + [93] = { + [sym__inline] = STATE(967), + [sym__element] = STATE(124), + [sym_emphasis] = STATE(151), + [sym_emphasis_begin] = STATE(1181), + [sym_strong] = STATE(151), + [sym_strong_begin] = STATE(1182), + [sym_superscript] = STATE(151), + [sym_superscript_begin] = STATE(1183), + [sym_subscript] = STATE(151), + [sym_subscript_begin] = STATE(1184), + [sym_highlighted] = STATE(151), + [sym_highlighted_begin] = STATE(1185), + [sym_insert] = STATE(151), + [sym_insert_begin] = STATE(1186), + [sym_delete] = STATE(151), + [sym_delete_begin] = STATE(1187), + [sym_hard_line_break] = STATE(151), + [sym__smart_punctuation] = STATE(151), + [sym_autolink] = STATE(151), + [sym_footnote_reference] = STATE(151), + [sym_footnote_marker_begin] = STATE(1188), + [sym__image] = STATE(151), + [sym_full_reference_image] = STATE(151), + [sym_collapsed_reference_image] = STATE(151), + [sym_inline_image] = STATE(151), + [sym_image_description] = STATE(700), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(151), + [sym_full_reference_link] = STATE(151), + [sym_collapsed_reference_link] = STATE(151), + [sym_inline_link] = STATE(151), + [sym_link_text] = STATE(701), + [sym_span] = STATE(124), + [sym__bracketed_text_begin] = STATE(1264), + [sym__comment_with_spaces] = STATE(151), + [sym_raw_inline] = STATE(151), + [sym_math] = STATE(151), + [sym_verbatim] = STATE(151), + [sym__todo_highlights] = STATE(151), + [sym_todo] = STATE(151), + [sym_note] = STATE(151), + [sym__symbol_fallback] = STATE(151), + [aux_sym__text] = STATE(140), + [aux_sym__inline_repeat1] = STATE(124), + [anon_sym_LBRACE_] = ACTIONS(143), + [anon_sym__] = ACTIONS(145), + [anon_sym_LBRACE_STAR] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(149), + [anon_sym_LBRACE_CARET] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(151), + [anon_sym_LBRACE_TILDE] = ACTIONS(153), + [anon_sym_TILDE] = ACTIONS(153), + [anon_sym_LBRACE_EQ] = ACTIONS(155), + [anon_sym_LBRACE_PLUS] = ACTIONS(157), + [anon_sym_LBRACE_DASH] = ACTIONS(159), + [anon_sym_BSLASH] = ACTIONS(161), + [sym_quotation_marks] = ACTIONS(163), + [sym_ellipsis] = ACTIONS(163), + [sym_em_dash] = ACTIONS(163), + [sym_en_dash] = ACTIONS(165), + [sym_backslash_escape] = ACTIONS(165), + [anon_sym_LT] = ACTIONS(167), + [sym_symbol] = ACTIONS(163), + [anon_sym_LBRACK_CARET] = ACTIONS(169), + [anon_sym_BANG_LBRACK] = ACTIONS(171), + [anon_sym_LBRACK] = ACTIONS(173), + [anon_sym_DOLLAR] = ACTIONS(175), + [anon_sym_TODO] = ACTIONS(177), + [anon_sym_WIP] = ACTIONS(177), + [anon_sym_NOTE] = ACTIONS(179), + [anon_sym_INFO] = ACTIONS(179), + [anon_sym_XXX] = ACTIONS(179), + [sym_fixme] = ACTIONS(163), + [sym__whitespace1] = ACTIONS(181), + [sym__newline] = ACTIONS(183), + [aux_sym__text_token1] = ACTIONS(185), + [sym__verbatim_begin] = ACTIONS(187), }, [94] = { - [sym__inline_without_trailing_space] = STATE(994), - [sym__element] = STATE(538), - [sym_emphasis] = STATE(141), - [sym_emphasis_begin] = STATE(1153), - [sym_strong] = STATE(141), - [sym_strong_begin] = STATE(1154), - [sym_superscript] = STATE(141), - [sym_superscript_begin] = STATE(1155), - [sym_subscript] = STATE(141), - [sym_subscript_begin] = STATE(1156), - [sym_highlighted] = STATE(141), - [sym_highlighted_begin] = STATE(1157), - [sym_insert] = STATE(141), - [sym_insert_begin] = STATE(1158), - [sym_delete] = STATE(141), - [sym_delete_begin] = STATE(1159), - [sym_hard_line_break] = STATE(141), - [sym__smart_punctuation] = STATE(141), - [sym_autolink] = STATE(141), - [sym_footnote_reference] = STATE(141), - [sym_footnote_marker_begin] = STATE(1160), - [sym__image] = STATE(141), - [sym_full_reference_image] = STATE(141), - [sym_collapsed_reference_image] = STATE(141), - [sym_inline_image] = STATE(141), - [sym__image_description] = STATE(681), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(141), - [sym_full_reference_link] = STATE(141), - [sym_collapsed_reference_link] = STATE(141), - [sym_inline_link] = STATE(141), - [sym_link_text] = STATE(680), - [sym_span] = STATE(538), - [sym__bracketed_text] = STATE(664), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(141), - [sym_raw_inline] = STATE(141), - [sym_math] = STATE(141), - [sym_verbatim] = STATE(141), - [sym__todo_highlights] = STATE(141), - [sym_todo] = STATE(141), - [sym_note] = STATE(141), - [sym__symbol_fallback] = STATE(141), - [aux_sym__text] = STATE(128), - [aux_sym__inline_repeat1] = STATE(119), - [anon_sym_LBRACE_] = ACTIONS(147), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_STAR] = ACTIONS(151), - [anon_sym_STAR] = ACTIONS(153), - [anon_sym_LBRACE_CARET] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_LBRACE_TILDE] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_LBRACE_EQ] = ACTIONS(159), - [anon_sym_LBRACE_PLUS] = ACTIONS(161), - [anon_sym_LBRACE_DASH] = ACTIONS(163), - [anon_sym_BSLASH] = ACTIONS(165), - [sym_quotation_marks] = ACTIONS(167), - [sym_ellipsis] = ACTIONS(167), - [sym_em_dash] = ACTIONS(167), - [sym_en_dash] = ACTIONS(169), - [sym_backslash_escape] = ACTIONS(169), - [anon_sym_LT] = ACTIONS(171), - [sym_symbol] = ACTIONS(167), - [anon_sym_LBRACK_CARET] = ACTIONS(173), - [anon_sym_BANG_LBRACK] = ACTIONS(175), - [anon_sym_LBRACK] = ACTIONS(177), - [anon_sym_DOLLAR] = ACTIONS(179), - [anon_sym_TODO] = ACTIONS(181), - [anon_sym_WIP] = ACTIONS(181), - [anon_sym_NOTE] = ACTIONS(183), - [anon_sym_INFO] = ACTIONS(183), - [anon_sym_XXX] = ACTIONS(183), - [sym_fixme] = ACTIONS(167), - [sym__whitespace1] = ACTIONS(185), - [sym__newline] = ACTIONS(187), - [aux_sym__text_token1] = ACTIONS(189), - [sym__verbatim_begin] = ACTIONS(191), + [sym__inline_without_trailing_space] = STATE(968), + [sym__element] = STATE(570), + [sym_emphasis] = STATE(152), + [sym_emphasis_begin] = STATE(1172), + [sym_strong] = STATE(152), + [sym_strong_begin] = STATE(1173), + [sym_superscript] = STATE(152), + [sym_superscript_begin] = STATE(1174), + [sym_subscript] = STATE(152), + [sym_subscript_begin] = STATE(1175), + [sym_highlighted] = STATE(152), + [sym_highlighted_begin] = STATE(1176), + [sym_insert] = STATE(152), + [sym_insert_begin] = STATE(1177), + [sym_delete] = STATE(152), + [sym_delete_begin] = STATE(1178), + [sym_hard_line_break] = STATE(152), + [sym__smart_punctuation] = STATE(152), + [sym_autolink] = STATE(152), + [sym_footnote_reference] = STATE(152), + [sym_footnote_marker_begin] = STATE(1179), + [sym__image] = STATE(152), + [sym_full_reference_image] = STATE(152), + [sym_collapsed_reference_image] = STATE(152), + [sym_inline_image] = STATE(152), + [sym_image_description] = STATE(704), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(152), + [sym_full_reference_link] = STATE(152), + [sym_collapsed_reference_link] = STATE(152), + [sym_inline_link] = STATE(152), + [sym_link_text] = STATE(706), + [sym_span] = STATE(570), + [sym__bracketed_text_begin] = STATE(1263), + [sym__comment_with_spaces] = STATE(152), + [sym_raw_inline] = STATE(152), + [sym_math] = STATE(152), + [sym_verbatim] = STATE(152), + [sym__todo_highlights] = STATE(152), + [sym_todo] = STATE(152), + [sym_note] = STATE(152), + [sym__symbol_fallback] = STATE(152), + [aux_sym__text] = STATE(133), + [aux_sym__inline_repeat1] = STATE(130), + [anon_sym_LBRACE_] = ACTIONS(448), + [anon_sym__] = ACTIONS(450), + [anon_sym_LBRACE_STAR] = ACTIONS(452), + [anon_sym_STAR] = ACTIONS(454), + [anon_sym_LBRACE_CARET] = ACTIONS(456), + [anon_sym_CARET] = ACTIONS(456), + [anon_sym_LBRACE_TILDE] = ACTIONS(458), + [anon_sym_TILDE] = ACTIONS(458), + [anon_sym_LBRACE_EQ] = ACTIONS(460), + [anon_sym_LBRACE_PLUS] = ACTIONS(462), + [anon_sym_LBRACE_DASH] = ACTIONS(464), + [anon_sym_BSLASH] = ACTIONS(466), + [sym_quotation_marks] = ACTIONS(468), + [sym_ellipsis] = ACTIONS(468), + [sym_em_dash] = ACTIONS(468), + [sym_en_dash] = ACTIONS(470), + [sym_backslash_escape] = ACTIONS(470), + [anon_sym_LT] = ACTIONS(472), + [sym_symbol] = ACTIONS(468), + [anon_sym_LBRACK_CARET] = ACTIONS(474), + [anon_sym_BANG_LBRACK] = ACTIONS(476), + [anon_sym_LBRACK] = ACTIONS(478), + [anon_sym_DOLLAR] = ACTIONS(480), + [anon_sym_TODO] = ACTIONS(482), + [anon_sym_WIP] = ACTIONS(482), + [anon_sym_NOTE] = ACTIONS(484), + [anon_sym_INFO] = ACTIONS(484), + [anon_sym_XXX] = ACTIONS(484), + [sym_fixme] = ACTIONS(468), + [sym__whitespace1] = ACTIONS(486), + [sym__newline] = ACTIONS(488), + [aux_sym__text_token1] = ACTIONS(490), + [sym__verbatim_begin] = ACTIONS(492), }, [95] = { - [sym__inline] = STATE(1024), - [sym__element] = STATE(47), - [sym_emphasis] = STATE(136), - [sym_emphasis_begin] = STATE(1209), - [sym_strong] = STATE(136), - [sym_strong_begin] = STATE(1210), - [sym_superscript] = STATE(136), - [sym_superscript_begin] = STATE(1211), - [sym_subscript] = STATE(136), - [sym_subscript_begin] = STATE(1212), - [sym_highlighted] = STATE(136), - [sym_highlighted_begin] = STATE(1213), - [sym_insert] = STATE(136), - [sym_insert_begin] = STATE(1214), - [sym_delete] = STATE(136), - [sym_delete_begin] = STATE(1215), - [sym_hard_line_break] = STATE(136), - [sym__smart_punctuation] = STATE(136), - [sym_autolink] = STATE(136), - [sym_footnote_reference] = STATE(136), - [sym_footnote_marker_begin] = STATE(1216), - [sym__image] = STATE(136), - [sym_full_reference_image] = STATE(136), - [sym_collapsed_reference_image] = STATE(136), - [sym_inline_image] = STATE(136), - [sym__image_description] = STATE(682), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(136), - [sym_full_reference_link] = STATE(136), - [sym_collapsed_reference_link] = STATE(136), - [sym_inline_link] = STATE(136), - [sym_link_text] = STATE(675), - [sym_span] = STATE(47), - [sym__bracketed_text] = STATE(674), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(136), - [sym_raw_inline] = STATE(136), - [sym_math] = STATE(136), - [sym_verbatim] = STATE(136), - [sym__todo_highlights] = STATE(136), - [sym_todo] = STATE(136), - [sym_note] = STATE(136), - [sym__symbol_fallback] = STATE(136), - [aux_sym__text] = STATE(127), - [aux_sym__inline_repeat1] = STATE(47), - [anon_sym_LBRACE_] = ACTIONS(377), - [anon_sym__] = ACTIONS(379), - [anon_sym_LBRACE_STAR] = ACTIONS(381), - [anon_sym_STAR] = ACTIONS(383), - [anon_sym_LBRACE_CARET] = ACTIONS(385), - [anon_sym_CARET] = ACTIONS(385), - [anon_sym_LBRACE_TILDE] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_LBRACE_EQ] = ACTIONS(389), - [anon_sym_LBRACE_PLUS] = ACTIONS(391), - [anon_sym_LBRACE_DASH] = ACTIONS(393), - [anon_sym_BSLASH] = ACTIONS(395), - [sym_quotation_marks] = ACTIONS(397), - [sym_ellipsis] = ACTIONS(397), - [sym_em_dash] = ACTIONS(397), - [sym_en_dash] = ACTIONS(399), - [sym_backslash_escape] = ACTIONS(399), - [anon_sym_LT] = ACTIONS(401), - [sym_symbol] = ACTIONS(397), - [anon_sym_LBRACK_CARET] = ACTIONS(403), - [anon_sym_BANG_LBRACK] = ACTIONS(405), - [anon_sym_LBRACK] = ACTIONS(407), - [anon_sym_DOLLAR] = ACTIONS(409), - [anon_sym_TODO] = ACTIONS(411), - [anon_sym_WIP] = ACTIONS(411), - [anon_sym_NOTE] = ACTIONS(413), - [anon_sym_INFO] = ACTIONS(413), - [anon_sym_XXX] = ACTIONS(413), - [sym_fixme] = ACTIONS(397), - [sym__whitespace1] = ACTIONS(415), - [sym__newline] = ACTIONS(417), - [aux_sym__text_token1] = ACTIONS(419), - [sym__verbatim_begin] = ACTIONS(421), + [sym__inline] = STATE(1252), + [sym__element] = STATE(21), + [sym_emphasis] = STATE(149), + [sym_emphasis_begin] = STATE(1199), + [sym_strong] = STATE(149), + [sym_strong_begin] = STATE(1200), + [sym_superscript] = STATE(149), + [sym_superscript_begin] = STATE(1201), + [sym_subscript] = STATE(149), + [sym_subscript_begin] = STATE(1202), + [sym_highlighted] = STATE(149), + [sym_highlighted_begin] = STATE(1203), + [sym_insert] = STATE(149), + [sym_insert_begin] = STATE(1204), + [sym_delete] = STATE(149), + [sym_delete_begin] = STATE(1205), + [sym_hard_line_break] = STATE(149), + [sym__smart_punctuation] = STATE(149), + [sym_autolink] = STATE(149), + [sym_footnote_reference] = STATE(149), + [sym_footnote_marker_begin] = STATE(1206), + [sym__image] = STATE(149), + [sym_full_reference_image] = STATE(149), + [sym_collapsed_reference_image] = STATE(149), + [sym_inline_image] = STATE(149), + [sym_image_description] = STATE(714), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(149), + [sym_full_reference_link] = STATE(149), + [sym_collapsed_reference_link] = STATE(149), + [sym_inline_link] = STATE(149), + [sym_link_text] = STATE(710), + [sym_span] = STATE(21), + [sym__bracketed_text_begin] = STATE(1266), + [sym__comment_with_spaces] = STATE(149), + [sym_raw_inline] = STATE(149), + [sym_math] = STATE(149), + [sym_verbatim] = STATE(149), + [sym__todo_highlights] = STATE(149), + [sym_todo] = STATE(149), + [sym_note] = STATE(149), + [sym__symbol_fallback] = STATE(149), + [aux_sym__text] = STATE(142), + [aux_sym__inline_repeat1] = STATE(21), + [anon_sym_LBRACE_] = ACTIONS(494), + [anon_sym__] = ACTIONS(496), + [anon_sym_LBRACE_STAR] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(500), + [anon_sym_LBRACE_CARET] = ACTIONS(502), + [anon_sym_CARET] = ACTIONS(502), + [anon_sym_LBRACE_TILDE] = ACTIONS(504), + [anon_sym_TILDE] = ACTIONS(504), + [anon_sym_LBRACE_EQ] = ACTIONS(506), + [anon_sym_LBRACE_PLUS] = ACTIONS(508), + [anon_sym_LBRACE_DASH] = ACTIONS(510), + [anon_sym_BSLASH] = ACTIONS(512), + [sym_quotation_marks] = ACTIONS(514), + [sym_ellipsis] = ACTIONS(514), + [sym_em_dash] = ACTIONS(514), + [sym_en_dash] = ACTIONS(516), + [sym_backslash_escape] = ACTIONS(516), + [anon_sym_LT] = ACTIONS(518), + [sym_symbol] = ACTIONS(514), + [anon_sym_LBRACK_CARET] = ACTIONS(520), + [anon_sym_BANG_LBRACK] = ACTIONS(522), + [anon_sym_LBRACK] = ACTIONS(524), + [anon_sym_DOLLAR] = ACTIONS(526), + [anon_sym_TODO] = ACTIONS(528), + [anon_sym_WIP] = ACTIONS(528), + [anon_sym_NOTE] = ACTIONS(530), + [anon_sym_INFO] = ACTIONS(530), + [anon_sym_XXX] = ACTIONS(530), + [sym_fixme] = ACTIONS(514), + [sym__whitespace1] = ACTIONS(532), + [sym__newline] = ACTIONS(540), + [aux_sym__text_token1] = ACTIONS(536), + [sym__verbatim_begin] = ACTIONS(538), }, [96] = { - [sym__inline] = STATE(1027), - [sym__element] = STATE(14), - [sym_emphasis] = STATE(133), - [sym_emphasis_begin] = STATE(1201), - [sym_strong] = STATE(133), - [sym_strong_begin] = STATE(1202), - [sym_superscript] = STATE(133), - [sym_superscript_begin] = STATE(1203), - [sym_subscript] = STATE(133), - [sym_subscript_begin] = STATE(1204), - [sym_highlighted] = STATE(133), - [sym_highlighted_begin] = STATE(1205), - [sym_insert] = STATE(133), - [sym_insert_begin] = STATE(1206), - [sym_delete] = STATE(133), - [sym_delete_begin] = STATE(1207), - [sym_hard_line_break] = STATE(133), - [sym__smart_punctuation] = STATE(133), - [sym_autolink] = STATE(133), - [sym_footnote_reference] = STATE(133), - [sym_footnote_marker_begin] = STATE(1208), - [sym__image] = STATE(133), - [sym_full_reference_image] = STATE(133), - [sym_collapsed_reference_image] = STATE(133), - [sym_inline_image] = STATE(133), - [sym__image_description] = STATE(688), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(133), - [sym_full_reference_link] = STATE(133), - [sym_collapsed_reference_link] = STATE(133), - [sym_inline_link] = STATE(133), - [sym_link_text] = STATE(686), - [sym_span] = STATE(14), - [sym__bracketed_text] = STATE(673), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(133), - [sym_raw_inline] = STATE(133), - [sym_math] = STATE(133), - [sym_verbatim] = STATE(133), - [sym__todo_highlights] = STATE(133), - [sym_todo] = STATE(133), - [sym_note] = STATE(133), - [sym__symbol_fallback] = STATE(133), - [aux_sym__text] = STATE(129), - [aux_sym__inline_repeat1] = STATE(14), - [anon_sym_LBRACE_] = ACTIONS(423), - [anon_sym__] = ACTIONS(425), - [anon_sym_LBRACE_STAR] = ACTIONS(427), - [anon_sym_STAR] = ACTIONS(429), - [anon_sym_LBRACE_CARET] = ACTIONS(431), - [anon_sym_CARET] = ACTIONS(431), - [anon_sym_LBRACE_TILDE] = ACTIONS(433), - [anon_sym_TILDE] = ACTIONS(433), - [anon_sym_LBRACE_EQ] = ACTIONS(435), - [anon_sym_LBRACE_PLUS] = ACTIONS(437), - [anon_sym_LBRACE_DASH] = ACTIONS(439), - [anon_sym_BSLASH] = ACTIONS(441), - [sym_quotation_marks] = ACTIONS(443), - [sym_ellipsis] = ACTIONS(443), - [sym_em_dash] = ACTIONS(443), - [sym_en_dash] = ACTIONS(445), - [sym_backslash_escape] = ACTIONS(445), - [anon_sym_LT] = ACTIONS(447), - [sym_symbol] = ACTIONS(443), - [anon_sym_LBRACK_CARET] = ACTIONS(449), - [anon_sym_BANG_LBRACK] = ACTIONS(451), - [anon_sym_LBRACK] = ACTIONS(453), - [anon_sym_DOLLAR] = ACTIONS(455), - [anon_sym_TODO] = ACTIONS(457), - [anon_sym_WIP] = ACTIONS(457), - [anon_sym_NOTE] = ACTIONS(459), - [anon_sym_INFO] = ACTIONS(459), - [anon_sym_XXX] = ACTIONS(459), - [sym_fixme] = ACTIONS(443), - [sym__whitespace1] = ACTIONS(461), - [sym__newline] = ACTIONS(469), - [aux_sym__text_token1] = ACTIONS(465), - [sym__verbatim_begin] = ACTIONS(467), - }, - [97] = { - [sym__inline] = STATE(1134), - [sym__element] = STATE(14), - [sym_emphasis] = STATE(133), - [sym_emphasis_begin] = STATE(1201), - [sym_strong] = STATE(133), - [sym_strong_begin] = STATE(1202), - [sym_superscript] = STATE(133), - [sym_superscript_begin] = STATE(1203), - [sym_subscript] = STATE(133), - [sym_subscript_begin] = STATE(1204), - [sym_highlighted] = STATE(133), - [sym_highlighted_begin] = STATE(1205), - [sym_insert] = STATE(133), - [sym_insert_begin] = STATE(1206), - [sym_delete] = STATE(133), - [sym_delete_begin] = STATE(1207), - [sym_hard_line_break] = STATE(133), - [sym__smart_punctuation] = STATE(133), - [sym_autolink] = STATE(133), - [sym_footnote_reference] = STATE(133), - [sym_footnote_marker_begin] = STATE(1208), - [sym__image] = STATE(133), - [sym_full_reference_image] = STATE(133), - [sym_collapsed_reference_image] = STATE(133), - [sym_inline_image] = STATE(133), - [sym__image_description] = STATE(688), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(133), - [sym_full_reference_link] = STATE(133), - [sym_collapsed_reference_link] = STATE(133), - [sym_inline_link] = STATE(133), - [sym_link_text] = STATE(686), - [sym_span] = STATE(14), - [sym__bracketed_text] = STATE(673), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(133), - [sym_raw_inline] = STATE(133), - [sym_math] = STATE(133), - [sym_verbatim] = STATE(133), - [sym__todo_highlights] = STATE(133), - [sym_todo] = STATE(133), - [sym_note] = STATE(133), - [sym__symbol_fallback] = STATE(133), - [aux_sym__text] = STATE(129), - [aux_sym__inline_repeat1] = STATE(14), - [anon_sym_LBRACE_] = ACTIONS(423), - [anon_sym__] = ACTIONS(425), - [anon_sym_LBRACE_STAR] = ACTIONS(427), - [anon_sym_STAR] = ACTIONS(429), - [anon_sym_LBRACE_CARET] = ACTIONS(431), - [anon_sym_CARET] = ACTIONS(431), - [anon_sym_LBRACE_TILDE] = ACTIONS(433), - [anon_sym_TILDE] = ACTIONS(433), - [anon_sym_LBRACE_EQ] = ACTIONS(435), - [anon_sym_LBRACE_PLUS] = ACTIONS(437), - [anon_sym_LBRACE_DASH] = ACTIONS(439), - [anon_sym_BSLASH] = ACTIONS(441), - [sym_quotation_marks] = ACTIONS(443), - [sym_ellipsis] = ACTIONS(443), - [sym_em_dash] = ACTIONS(443), - [sym_en_dash] = ACTIONS(445), - [sym_backslash_escape] = ACTIONS(445), - [anon_sym_LT] = ACTIONS(447), - [sym_symbol] = ACTIONS(443), - [anon_sym_LBRACK_CARET] = ACTIONS(449), - [anon_sym_BANG_LBRACK] = ACTIONS(451), - [anon_sym_LBRACK] = ACTIONS(453), - [anon_sym_DOLLAR] = ACTIONS(455), - [anon_sym_TODO] = ACTIONS(457), - [anon_sym_WIP] = ACTIONS(457), - [anon_sym_NOTE] = ACTIONS(459), - [anon_sym_INFO] = ACTIONS(459), - [anon_sym_XXX] = ACTIONS(459), - [sym_fixme] = ACTIONS(443), - [sym__whitespace1] = ACTIONS(461), - [sym__newline] = ACTIONS(469), - [aux_sym__text_token1] = ACTIONS(465), - [sym__verbatim_begin] = ACTIONS(467), - }, - [98] = { - [sym__inline] = STATE(1132), - [sym__element] = STATE(47), - [sym_emphasis] = STATE(136), - [sym_emphasis_begin] = STATE(1209), - [sym_strong] = STATE(136), - [sym_strong_begin] = STATE(1210), - [sym_superscript] = STATE(136), - [sym_superscript_begin] = STATE(1211), - [sym_subscript] = STATE(136), - [sym_subscript_begin] = STATE(1212), - [sym_highlighted] = STATE(136), - [sym_highlighted_begin] = STATE(1213), - [sym_insert] = STATE(136), - [sym_insert_begin] = STATE(1214), - [sym_delete] = STATE(136), - [sym_delete_begin] = STATE(1215), - [sym_hard_line_break] = STATE(136), - [sym__smart_punctuation] = STATE(136), - [sym_autolink] = STATE(136), - [sym_footnote_reference] = STATE(136), - [sym_footnote_marker_begin] = STATE(1216), - [sym__image] = STATE(136), - [sym_full_reference_image] = STATE(136), - [sym_collapsed_reference_image] = STATE(136), - [sym_inline_image] = STATE(136), - [sym__image_description] = STATE(682), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(136), - [sym_full_reference_link] = STATE(136), - [sym_collapsed_reference_link] = STATE(136), - [sym_inline_link] = STATE(136), - [sym_link_text] = STATE(675), - [sym_span] = STATE(47), - [sym__bracketed_text] = STATE(674), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(136), - [sym_raw_inline] = STATE(136), - [sym_math] = STATE(136), - [sym_verbatim] = STATE(136), - [sym__todo_highlights] = STATE(136), - [sym_todo] = STATE(136), - [sym_note] = STATE(136), - [sym__symbol_fallback] = STATE(136), - [aux_sym__text] = STATE(127), - [aux_sym__inline_repeat1] = STATE(47), - [anon_sym_LBRACE_] = ACTIONS(377), - [anon_sym__] = ACTIONS(379), - [anon_sym_LBRACE_STAR] = ACTIONS(381), - [anon_sym_STAR] = ACTIONS(383), - [anon_sym_LBRACE_CARET] = ACTIONS(385), - [anon_sym_CARET] = ACTIONS(385), - [anon_sym_LBRACE_TILDE] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_LBRACE_EQ] = ACTIONS(389), - [anon_sym_LBRACE_PLUS] = ACTIONS(391), - [anon_sym_LBRACE_DASH] = ACTIONS(393), - [anon_sym_BSLASH] = ACTIONS(395), - [sym_quotation_marks] = ACTIONS(397), - [sym_ellipsis] = ACTIONS(397), - [sym_em_dash] = ACTIONS(397), - [sym_en_dash] = ACTIONS(399), - [sym_backslash_escape] = ACTIONS(399), - [anon_sym_LT] = ACTIONS(401), - [sym_symbol] = ACTIONS(397), - [anon_sym_LBRACK_CARET] = ACTIONS(403), - [anon_sym_BANG_LBRACK] = ACTIONS(405), - [anon_sym_LBRACK] = ACTIONS(407), - [anon_sym_DOLLAR] = ACTIONS(409), - [anon_sym_TODO] = ACTIONS(411), - [anon_sym_WIP] = ACTIONS(411), - [anon_sym_NOTE] = ACTIONS(413), - [anon_sym_INFO] = ACTIONS(413), - [anon_sym_XXX] = ACTIONS(413), - [sym_fixme] = ACTIONS(397), - [sym__whitespace1] = ACTIONS(415), - [sym__newline] = ACTIONS(417), - [aux_sym__text_token1] = ACTIONS(419), - [sym__verbatim_begin] = ACTIONS(421), - }, - [99] = { - [sym__inline] = STATE(1028), - [sym__element] = STATE(3), - [sym_emphasis] = STATE(137), - [sym_emphasis_begin] = STATE(1193), - [sym_strong] = STATE(137), - [sym_strong_begin] = STATE(1194), - [sym_superscript] = STATE(137), - [sym_superscript_begin] = STATE(1195), - [sym_subscript] = STATE(137), - [sym_subscript_begin] = STATE(1196), - [sym_highlighted] = STATE(137), - [sym_highlighted_begin] = STATE(1197), - [sym_insert] = STATE(137), - [sym_insert_begin] = STATE(1198), - [sym_delete] = STATE(137), - [sym_delete_begin] = STATE(1199), - [sym_hard_line_break] = STATE(137), - [sym__smart_punctuation] = STATE(137), - [sym_autolink] = STATE(137), - [sym_footnote_reference] = STATE(137), - [sym_footnote_marker_begin] = STATE(1200), - [sym__image] = STATE(137), - [sym_full_reference_image] = STATE(137), - [sym_collapsed_reference_image] = STATE(137), - [sym_inline_image] = STATE(137), - [sym__image_description] = STATE(694), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(137), - [sym_full_reference_link] = STATE(137), - [sym_collapsed_reference_link] = STATE(137), - [sym_inline_link] = STATE(137), - [sym_link_text] = STATE(693), - [sym_span] = STATE(3), - [sym__bracketed_text] = STATE(672), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(137), - [sym_raw_inline] = STATE(137), - [sym_math] = STATE(137), - [sym_verbatim] = STATE(137), - [sym__todo_highlights] = STATE(137), - [sym_todo] = STATE(137), - [sym_note] = STATE(137), - [sym__symbol_fallback] = STATE(137), - [aux_sym__text] = STATE(131), - [aux_sym__inline_repeat1] = STATE(3), + [sym__inline] = STATE(1243), + [sym__element] = STATE(7), + [sym_emphasis] = STATE(153), + [sym_emphasis_begin] = STATE(1208), + [sym_strong] = STATE(153), + [sym_strong_begin] = STATE(1209), + [sym_superscript] = STATE(153), + [sym_superscript_begin] = STATE(1210), + [sym_subscript] = STATE(153), + [sym_subscript_begin] = STATE(1211), + [sym_highlighted] = STATE(153), + [sym_highlighted_begin] = STATE(1212), + [sym_insert] = STATE(153), + [sym_insert_begin] = STATE(1213), + [sym_delete] = STATE(153), + [sym_delete_begin] = STATE(1214), + [sym_hard_line_break] = STATE(153), + [sym__smart_punctuation] = STATE(153), + [sym_autolink] = STATE(153), + [sym_footnote_reference] = STATE(153), + [sym_footnote_marker_begin] = STATE(1215), + [sym__image] = STATE(153), + [sym_full_reference_image] = STATE(153), + [sym_collapsed_reference_image] = STATE(153), + [sym_inline_image] = STATE(153), + [sym_image_description] = STATE(707), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(153), + [sym_full_reference_link] = STATE(153), + [sym_collapsed_reference_link] = STATE(153), + [sym_inline_link] = STATE(153), + [sym_link_text] = STATE(705), + [sym_span] = STATE(7), + [sym__bracketed_text_begin] = STATE(1267), + [sym__comment_with_spaces] = STATE(153), + [sym_raw_inline] = STATE(153), + [sym_math] = STATE(153), + [sym_verbatim] = STATE(153), + [sym__todo_highlights] = STATE(153), + [sym_todo] = STATE(153), + [sym_note] = STATE(153), + [sym__symbol_fallback] = STATE(153), + [aux_sym__text] = STATE(134), + [aux_sym__inline_repeat1] = STATE(7), [anon_sym_LBRACE_] = ACTIONS(97), [anon_sym__] = ACTIONS(99), [anon_sym_LBRACE_STAR] = ACTIONS(101), @@ -13175,696 +12896,924 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_XXX] = ACTIONS(133), [sym_fixme] = ACTIONS(117), [sym__whitespace1] = ACTIONS(135), - [sym__newline] = ACTIONS(145), + [sym__newline] = ACTIONS(137), [aux_sym__text_token1] = ACTIONS(139), [sym__verbatim_begin] = ACTIONS(141), }, + [97] = { + [sym__inline_without_trailing_space] = STATE(969), + [sym__element] = STATE(623), + [sym_emphasis] = STATE(148), + [sym_emphasis_begin] = STATE(1163), + [sym_strong] = STATE(148), + [sym_strong_begin] = STATE(1164), + [sym_superscript] = STATE(148), + [sym_superscript_begin] = STATE(1165), + [sym_subscript] = STATE(148), + [sym_subscript_begin] = STATE(1166), + [sym_highlighted] = STATE(148), + [sym_highlighted_begin] = STATE(1167), + [sym_insert] = STATE(148), + [sym_insert_begin] = STATE(1168), + [sym_delete] = STATE(148), + [sym_delete_begin] = STATE(1169), + [sym_hard_line_break] = STATE(148), + [sym__smart_punctuation] = STATE(148), + [sym_autolink] = STATE(148), + [sym_footnote_reference] = STATE(148), + [sym_footnote_marker_begin] = STATE(1170), + [sym__image] = STATE(148), + [sym_full_reference_image] = STATE(148), + [sym_collapsed_reference_image] = STATE(148), + [sym_inline_image] = STATE(148), + [sym_image_description] = STATE(712), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(148), + [sym_full_reference_link] = STATE(148), + [sym_collapsed_reference_link] = STATE(148), + [sym_inline_link] = STATE(148), + [sym_link_text] = STATE(713), + [sym_span] = STATE(623), + [sym__bracketed_text_begin] = STATE(1262), + [sym__comment_with_spaces] = STATE(148), + [sym_raw_inline] = STATE(148), + [sym_math] = STATE(148), + [sym_verbatim] = STATE(148), + [sym__todo_highlights] = STATE(148), + [sym_todo] = STATE(148), + [sym_note] = STATE(148), + [sym__symbol_fallback] = STATE(148), + [aux_sym__text] = STATE(136), + [aux_sym__inline_repeat1] = STATE(129), + [anon_sym_LBRACE_] = ACTIONS(402), + [anon_sym__] = ACTIONS(404), + [anon_sym_LBRACE_STAR] = ACTIONS(406), + [anon_sym_STAR] = ACTIONS(408), + [anon_sym_LBRACE_CARET] = ACTIONS(410), + [anon_sym_CARET] = ACTIONS(410), + [anon_sym_LBRACE_TILDE] = ACTIONS(412), + [anon_sym_TILDE] = ACTIONS(412), + [anon_sym_LBRACE_EQ] = ACTIONS(414), + [anon_sym_LBRACE_PLUS] = ACTIONS(416), + [anon_sym_LBRACE_DASH] = ACTIONS(418), + [anon_sym_BSLASH] = ACTIONS(420), + [sym_quotation_marks] = ACTIONS(422), + [sym_ellipsis] = ACTIONS(422), + [sym_em_dash] = ACTIONS(422), + [sym_en_dash] = ACTIONS(424), + [sym_backslash_escape] = ACTIONS(424), + [anon_sym_LT] = ACTIONS(426), + [sym_symbol] = ACTIONS(422), + [anon_sym_LBRACK_CARET] = ACTIONS(428), + [anon_sym_BANG_LBRACK] = ACTIONS(430), + [anon_sym_LBRACK] = ACTIONS(432), + [anon_sym_DOLLAR] = ACTIONS(434), + [anon_sym_TODO] = ACTIONS(436), + [anon_sym_WIP] = ACTIONS(436), + [anon_sym_NOTE] = ACTIONS(438), + [anon_sym_INFO] = ACTIONS(438), + [anon_sym_XXX] = ACTIONS(438), + [sym_fixme] = ACTIONS(422), + [sym__whitespace1] = ACTIONS(440), + [sym__newline] = ACTIONS(442), + [aux_sym__text_token1] = ACTIONS(444), + [sym__verbatim_begin] = ACTIONS(446), + }, + [98] = { + [sym__inline] = STATE(1234), + [sym__element] = STATE(46), + [sym_emphasis] = STATE(147), + [sym_emphasis_begin] = STATE(1217), + [sym_strong] = STATE(147), + [sym_strong_begin] = STATE(1218), + [sym_superscript] = STATE(147), + [sym_superscript_begin] = STATE(1219), + [sym_subscript] = STATE(147), + [sym_subscript_begin] = STATE(1220), + [sym_highlighted] = STATE(147), + [sym_highlighted_begin] = STATE(1221), + [sym_insert] = STATE(147), + [sym_insert_begin] = STATE(1222), + [sym_delete] = STATE(147), + [sym_delete_begin] = STATE(1223), + [sym_hard_line_break] = STATE(147), + [sym__smart_punctuation] = STATE(147), + [sym_autolink] = STATE(147), + [sym_footnote_reference] = STATE(147), + [sym_footnote_marker_begin] = STATE(1224), + [sym__image] = STATE(147), + [sym_full_reference_image] = STATE(147), + [sym_collapsed_reference_image] = STATE(147), + [sym_inline_image] = STATE(147), + [sym_image_description] = STATE(699), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(147), + [sym_full_reference_link] = STATE(147), + [sym_collapsed_reference_link] = STATE(147), + [sym_inline_link] = STATE(147), + [sym_link_text] = STATE(698), + [sym_span] = STATE(46), + [sym__bracketed_text_begin] = STATE(1268), + [sym__comment_with_spaces] = STATE(147), + [sym_raw_inline] = STATE(147), + [sym_math] = STATE(147), + [sym_verbatim] = STATE(147), + [sym__todo_highlights] = STATE(147), + [sym_todo] = STATE(147), + [sym_note] = STATE(147), + [sym__symbol_fallback] = STATE(147), + [aux_sym__text] = STATE(132), + [aux_sym__inline_repeat1] = STATE(46), + [anon_sym_LBRACE_] = ACTIONS(189), + [anon_sym__] = ACTIONS(191), + [anon_sym_LBRACE_STAR] = ACTIONS(193), + [anon_sym_STAR] = ACTIONS(195), + [anon_sym_LBRACE_CARET] = ACTIONS(197), + [anon_sym_CARET] = ACTIONS(197), + [anon_sym_LBRACE_TILDE] = ACTIONS(199), + [anon_sym_TILDE] = ACTIONS(199), + [anon_sym_LBRACE_EQ] = ACTIONS(201), + [anon_sym_LBRACE_PLUS] = ACTIONS(203), + [anon_sym_LBRACE_DASH] = ACTIONS(205), + [anon_sym_BSLASH] = ACTIONS(207), + [sym_quotation_marks] = ACTIONS(209), + [sym_ellipsis] = ACTIONS(209), + [sym_em_dash] = ACTIONS(209), + [sym_en_dash] = ACTIONS(211), + [sym_backslash_escape] = ACTIONS(211), + [anon_sym_LT] = ACTIONS(213), + [sym_symbol] = ACTIONS(209), + [anon_sym_LBRACK_CARET] = ACTIONS(215), + [anon_sym_BANG_LBRACK] = ACTIONS(217), + [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_DOLLAR] = ACTIONS(221), + [anon_sym_TODO] = ACTIONS(223), + [anon_sym_WIP] = ACTIONS(223), + [anon_sym_NOTE] = ACTIONS(225), + [anon_sym_INFO] = ACTIONS(225), + [anon_sym_XXX] = ACTIONS(225), + [sym_fixme] = ACTIONS(209), + [sym__whitespace1] = ACTIONS(227), + [sym__newline] = ACTIONS(229), + [aux_sym__text_token1] = ACTIONS(231), + [sym__verbatim_begin] = ACTIONS(233), + }, + [99] = { + [sym__inline] = STATE(998), + [sym__element] = STATE(84), + [sym_emphasis] = STATE(146), + [sym_emphasis_begin] = STATE(1226), + [sym_strong] = STATE(146), + [sym_strong_begin] = STATE(1227), + [sym_superscript] = STATE(146), + [sym_superscript_begin] = STATE(1228), + [sym_subscript] = STATE(146), + [sym_subscript_begin] = STATE(1229), + [sym_highlighted] = STATE(146), + [sym_highlighted_begin] = STATE(1230), + [sym_insert] = STATE(146), + [sym_insert_begin] = STATE(1231), + [sym_delete] = STATE(146), + [sym_delete_begin] = STATE(1232), + [sym_hard_line_break] = STATE(146), + [sym__smart_punctuation] = STATE(146), + [sym_autolink] = STATE(146), + [sym_footnote_reference] = STATE(146), + [sym_footnote_marker_begin] = STATE(1233), + [sym__image] = STATE(146), + [sym_full_reference_image] = STATE(146), + [sym_collapsed_reference_image] = STATE(146), + [sym_inline_image] = STATE(146), + [sym_image_description] = STATE(694), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(146), + [sym_full_reference_link] = STATE(146), + [sym_collapsed_reference_link] = STATE(146), + [sym_inline_link] = STATE(146), + [sym_link_text] = STATE(693), + [sym_span] = STATE(84), + [sym__bracketed_text_begin] = STATE(1269), + [sym__comment_with_spaces] = STATE(146), + [sym_raw_inline] = STATE(146), + [sym_math] = STATE(146), + [sym_verbatim] = STATE(146), + [sym__todo_highlights] = STATE(146), + [sym_todo] = STATE(146), + [sym_note] = STATE(146), + [sym__symbol_fallback] = STATE(146), + [aux_sym__text] = STATE(141), + [aux_sym__inline_repeat1] = STATE(84), + [anon_sym_LBRACE_] = ACTIONS(356), + [anon_sym__] = ACTIONS(358), + [anon_sym_LBRACE_STAR] = ACTIONS(360), + [anon_sym_STAR] = ACTIONS(362), + [anon_sym_LBRACE_CARET] = ACTIONS(364), + [anon_sym_CARET] = ACTIONS(364), + [anon_sym_LBRACE_TILDE] = ACTIONS(366), + [anon_sym_TILDE] = ACTIONS(366), + [anon_sym_LBRACE_EQ] = ACTIONS(368), + [anon_sym_LBRACE_PLUS] = ACTIONS(370), + [anon_sym_LBRACE_DASH] = ACTIONS(372), + [anon_sym_BSLASH] = ACTIONS(374), + [sym_quotation_marks] = ACTIONS(376), + [sym_ellipsis] = ACTIONS(376), + [sym_em_dash] = ACTIONS(376), + [sym_en_dash] = ACTIONS(378), + [sym_backslash_escape] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [sym_symbol] = ACTIONS(376), + [anon_sym_LBRACK_CARET] = ACTIONS(382), + [anon_sym_BANG_LBRACK] = ACTIONS(384), + [anon_sym_LBRACK] = ACTIONS(386), + [anon_sym_DOLLAR] = ACTIONS(388), + [anon_sym_TODO] = ACTIONS(390), + [anon_sym_WIP] = ACTIONS(390), + [anon_sym_NOTE] = ACTIONS(392), + [anon_sym_INFO] = ACTIONS(392), + [anon_sym_XXX] = ACTIONS(392), + [sym_fixme] = ACTIONS(376), + [sym__whitespace1] = ACTIONS(394), + [sym__newline] = ACTIONS(396), + [aux_sym__text_token1] = ACTIONS(398), + [sym__verbatim_begin] = ACTIONS(400), + }, [100] = { - [sym__inline_without_trailing_space] = STATE(1102), - [sym__element] = STATE(538), - [sym_emphasis] = STATE(141), - [sym_emphasis_begin] = STATE(1153), - [sym_strong] = STATE(141), - [sym_strong_begin] = STATE(1154), - [sym_superscript] = STATE(141), - [sym_superscript_begin] = STATE(1155), - [sym_subscript] = STATE(141), - [sym_subscript_begin] = STATE(1156), - [sym_highlighted] = STATE(141), - [sym_highlighted_begin] = STATE(1157), - [sym_insert] = STATE(141), - [sym_insert_begin] = STATE(1158), - [sym_delete] = STATE(141), - [sym_delete_begin] = STATE(1159), - [sym_hard_line_break] = STATE(141), - [sym__smart_punctuation] = STATE(141), - [sym_autolink] = STATE(141), - [sym_footnote_reference] = STATE(141), - [sym_footnote_marker_begin] = STATE(1160), - [sym__image] = STATE(141), - [sym_full_reference_image] = STATE(141), - [sym_collapsed_reference_image] = STATE(141), - [sym_inline_image] = STATE(141), - [sym__image_description] = STATE(681), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(141), - [sym_full_reference_link] = STATE(141), - [sym_collapsed_reference_link] = STATE(141), - [sym_inline_link] = STATE(141), - [sym_link_text] = STATE(680), - [sym_span] = STATE(538), - [sym__bracketed_text] = STATE(664), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(141), - [sym_raw_inline] = STATE(141), - [sym_math] = STATE(141), - [sym_verbatim] = STATE(141), - [sym__todo_highlights] = STATE(141), - [sym_todo] = STATE(141), - [sym_note] = STATE(141), - [sym__symbol_fallback] = STATE(141), - [aux_sym__text] = STATE(128), - [aux_sym__inline_repeat1] = STATE(119), - [anon_sym_LBRACE_] = ACTIONS(147), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_STAR] = ACTIONS(151), - [anon_sym_STAR] = ACTIONS(153), - [anon_sym_LBRACE_CARET] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_LBRACE_TILDE] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_LBRACE_EQ] = ACTIONS(159), - [anon_sym_LBRACE_PLUS] = ACTIONS(161), - [anon_sym_LBRACE_DASH] = ACTIONS(163), - [anon_sym_BSLASH] = ACTIONS(165), - [sym_quotation_marks] = ACTIONS(167), - [sym_ellipsis] = ACTIONS(167), - [sym_em_dash] = ACTIONS(167), - [sym_en_dash] = ACTIONS(169), - [sym_backslash_escape] = ACTIONS(169), - [anon_sym_LT] = ACTIONS(171), - [sym_symbol] = ACTIONS(167), - [anon_sym_LBRACK_CARET] = ACTIONS(173), - [anon_sym_BANG_LBRACK] = ACTIONS(175), - [anon_sym_LBRACK] = ACTIONS(177), - [anon_sym_DOLLAR] = ACTIONS(179), - [anon_sym_TODO] = ACTIONS(181), - [anon_sym_WIP] = ACTIONS(181), - [anon_sym_NOTE] = ACTIONS(183), - [anon_sym_INFO] = ACTIONS(183), - [anon_sym_XXX] = ACTIONS(183), - [sym_fixme] = ACTIONS(167), - [sym__whitespace1] = ACTIONS(185), - [sym__newline] = ACTIONS(187), - [aux_sym__text_token1] = ACTIONS(189), - [sym__verbatim_begin] = ACTIONS(191), + [sym__element] = STATE(100), + [sym_emphasis] = STATE(147), + [sym_emphasis_begin] = STATE(1217), + [sym_strong] = STATE(147), + [sym_strong_begin] = STATE(1218), + [sym_superscript] = STATE(147), + [sym_superscript_begin] = STATE(1219), + [sym_subscript] = STATE(147), + [sym_subscript_begin] = STATE(1220), + [sym_highlighted] = STATE(147), + [sym_highlighted_begin] = STATE(1221), + [sym_insert] = STATE(147), + [sym_insert_begin] = STATE(1222), + [sym_delete] = STATE(147), + [sym_delete_begin] = STATE(1223), + [sym_hard_line_break] = STATE(147), + [sym__smart_punctuation] = STATE(147), + [sym_autolink] = STATE(147), + [sym_footnote_reference] = STATE(147), + [sym_footnote_marker_begin] = STATE(1224), + [sym__image] = STATE(147), + [sym_full_reference_image] = STATE(147), + [sym_collapsed_reference_image] = STATE(147), + [sym_inline_image] = STATE(147), + [sym_image_description] = STATE(699), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(147), + [sym_full_reference_link] = STATE(147), + [sym_collapsed_reference_link] = STATE(147), + [sym_inline_link] = STATE(147), + [sym_link_text] = STATE(698), + [sym_span] = STATE(100), + [sym__bracketed_text_begin] = STATE(1268), + [sym__comment_with_spaces] = STATE(147), + [sym_raw_inline] = STATE(147), + [sym_math] = STATE(147), + [sym_verbatim] = STATE(147), + [sym__todo_highlights] = STATE(147), + [sym_todo] = STATE(147), + [sym_note] = STATE(147), + [sym__symbol_fallback] = STATE(147), + [aux_sym__text] = STATE(132), + [aux_sym__inline_repeat1] = STATE(100), + [anon_sym_LBRACE_] = ACTIONS(872), + [anon_sym__] = ACTIONS(875), + [anon_sym_LBRACE_STAR] = ACTIONS(878), + [anon_sym_STAR] = ACTIONS(881), + [anon_sym_LBRACE_CARET] = ACTIONS(884), + [anon_sym_CARET] = ACTIONS(884), + [anon_sym_LBRACE_TILDE] = ACTIONS(887), + [anon_sym_TILDE] = ACTIONS(887), + [anon_sym_LBRACE_EQ] = ACTIONS(890), + [anon_sym_LBRACE_PLUS] = ACTIONS(893), + [anon_sym_LBRACE_DASH] = ACTIONS(896), + [anon_sym_BSLASH] = ACTIONS(899), + [sym_quotation_marks] = ACTIONS(902), + [sym_ellipsis] = ACTIONS(902), + [sym_em_dash] = ACTIONS(902), + [sym_en_dash] = ACTIONS(905), + [sym_backslash_escape] = ACTIONS(905), + [anon_sym_LT] = ACTIONS(908), + [sym_symbol] = ACTIONS(902), + [anon_sym_LBRACK_CARET] = ACTIONS(911), + [anon_sym_BANG_LBRACK] = ACTIONS(914), + [anon_sym_LBRACK] = ACTIONS(917), + [anon_sym_DOLLAR] = ACTIONS(920), + [anon_sym_TODO] = ACTIONS(923), + [anon_sym_WIP] = ACTIONS(923), + [anon_sym_NOTE] = ACTIONS(926), + [anon_sym_INFO] = ACTIONS(926), + [anon_sym_XXX] = ACTIONS(926), + [sym_fixme] = ACTIONS(902), + [sym__whitespace1] = ACTIONS(929), + [sym__newline] = ACTIONS(932), + [aux_sym__text_token1] = ACTIONS(935), + [sym__verbatim_begin] = ACTIONS(938), + [sym_delete_end] = ACTIONS(354), }, [101] = { - [sym__inline] = STATE(1029), - [sym__element] = STATE(107), - [sym_emphasis] = STATE(140), - [sym_emphasis_begin] = STATE(1185), - [sym_strong] = STATE(140), - [sym_strong_begin] = STATE(1186), - [sym_superscript] = STATE(140), - [sym_superscript_begin] = STATE(1187), - [sym_subscript] = STATE(140), - [sym_subscript_begin] = STATE(1188), - [sym_highlighted] = STATE(140), - [sym_highlighted_begin] = STATE(1189), - [sym_insert] = STATE(140), - [sym_insert_begin] = STATE(1190), - [sym_delete] = STATE(140), - [sym_delete_begin] = STATE(1191), - [sym_hard_line_break] = STATE(140), - [sym__smart_punctuation] = STATE(140), - [sym_autolink] = STATE(140), - [sym_footnote_reference] = STATE(140), - [sym_footnote_marker_begin] = STATE(1192), - [sym__image] = STATE(140), - [sym_full_reference_image] = STATE(140), - [sym_collapsed_reference_image] = STATE(140), - [sym_inline_image] = STATE(140), - [sym__image_description] = STATE(700), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(140), - [sym_full_reference_link] = STATE(140), - [sym_collapsed_reference_link] = STATE(140), - [sym_inline_link] = STATE(140), - [sym_link_text] = STATE(699), - [sym_span] = STATE(107), - [sym__bracketed_text] = STATE(666), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(140), - [sym_raw_inline] = STATE(140), - [sym_math] = STATE(140), - [sym_verbatim] = STATE(140), - [sym__todo_highlights] = STATE(140), - [sym_todo] = STATE(140), - [sym_note] = STATE(140), - [sym__symbol_fallback] = STATE(140), - [aux_sym__text] = STATE(125), - [aux_sym__inline_repeat1] = STATE(107), - [anon_sym_LBRACE_] = ACTIONS(193), - [anon_sym__] = ACTIONS(195), - [anon_sym_LBRACE_STAR] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(199), - [anon_sym_LBRACE_CARET] = ACTIONS(201), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_LBRACE_TILDE] = ACTIONS(203), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_LBRACE_EQ] = ACTIONS(205), - [anon_sym_LBRACE_PLUS] = ACTIONS(207), - [anon_sym_LBRACE_DASH] = ACTIONS(209), - [anon_sym_BSLASH] = ACTIONS(211), - [sym_quotation_marks] = ACTIONS(213), - [sym_ellipsis] = ACTIONS(213), - [sym_em_dash] = ACTIONS(213), - [sym_en_dash] = ACTIONS(215), - [sym_backslash_escape] = ACTIONS(215), - [anon_sym_LT] = ACTIONS(217), - [sym_symbol] = ACTIONS(213), - [anon_sym_LBRACK_CARET] = ACTIONS(219), - [anon_sym_BANG_LBRACK] = ACTIONS(221), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_DOLLAR] = ACTIONS(225), - [anon_sym_TODO] = ACTIONS(227), - [anon_sym_WIP] = ACTIONS(227), - [anon_sym_NOTE] = ACTIONS(229), - [anon_sym_INFO] = ACTIONS(229), - [anon_sym_XXX] = ACTIONS(229), - [sym_fixme] = ACTIONS(213), - [sym__whitespace1] = ACTIONS(231), - [sym__newline] = ACTIONS(233), - [aux_sym__text_token1] = ACTIONS(235), - [sym__verbatim_begin] = ACTIONS(237), + [sym__inline] = STATE(1008), + [sym__element] = STATE(46), + [sym_emphasis] = STATE(147), + [sym_emphasis_begin] = STATE(1217), + [sym_strong] = STATE(147), + [sym_strong_begin] = STATE(1218), + [sym_superscript] = STATE(147), + [sym_superscript_begin] = STATE(1219), + [sym_subscript] = STATE(147), + [sym_subscript_begin] = STATE(1220), + [sym_highlighted] = STATE(147), + [sym_highlighted_begin] = STATE(1221), + [sym_insert] = STATE(147), + [sym_insert_begin] = STATE(1222), + [sym_delete] = STATE(147), + [sym_delete_begin] = STATE(1223), + [sym_hard_line_break] = STATE(147), + [sym__smart_punctuation] = STATE(147), + [sym_autolink] = STATE(147), + [sym_footnote_reference] = STATE(147), + [sym_footnote_marker_begin] = STATE(1224), + [sym__image] = STATE(147), + [sym_full_reference_image] = STATE(147), + [sym_collapsed_reference_image] = STATE(147), + [sym_inline_image] = STATE(147), + [sym_image_description] = STATE(699), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(147), + [sym_full_reference_link] = STATE(147), + [sym_collapsed_reference_link] = STATE(147), + [sym_inline_link] = STATE(147), + [sym_link_text] = STATE(698), + [sym_span] = STATE(46), + [sym__bracketed_text_begin] = STATE(1268), + [sym__comment_with_spaces] = STATE(147), + [sym_raw_inline] = STATE(147), + [sym_math] = STATE(147), + [sym_verbatim] = STATE(147), + [sym__todo_highlights] = STATE(147), + [sym_todo] = STATE(147), + [sym_note] = STATE(147), + [sym__symbol_fallback] = STATE(147), + [aux_sym__text] = STATE(132), + [aux_sym__inline_repeat1] = STATE(46), + [anon_sym_LBRACE_] = ACTIONS(189), + [anon_sym__] = ACTIONS(191), + [anon_sym_LBRACE_STAR] = ACTIONS(193), + [anon_sym_STAR] = ACTIONS(195), + [anon_sym_LBRACE_CARET] = ACTIONS(197), + [anon_sym_CARET] = ACTIONS(197), + [anon_sym_LBRACE_TILDE] = ACTIONS(199), + [anon_sym_TILDE] = ACTIONS(199), + [anon_sym_LBRACE_EQ] = ACTIONS(201), + [anon_sym_LBRACE_PLUS] = ACTIONS(203), + [anon_sym_LBRACE_DASH] = ACTIONS(205), + [anon_sym_BSLASH] = ACTIONS(207), + [sym_quotation_marks] = ACTIONS(209), + [sym_ellipsis] = ACTIONS(209), + [sym_em_dash] = ACTIONS(209), + [sym_en_dash] = ACTIONS(211), + [sym_backslash_escape] = ACTIONS(211), + [anon_sym_LT] = ACTIONS(213), + [sym_symbol] = ACTIONS(209), + [anon_sym_LBRACK_CARET] = ACTIONS(215), + [anon_sym_BANG_LBRACK] = ACTIONS(217), + [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_DOLLAR] = ACTIONS(221), + [anon_sym_TODO] = ACTIONS(223), + [anon_sym_WIP] = ACTIONS(223), + [anon_sym_NOTE] = ACTIONS(225), + [anon_sym_INFO] = ACTIONS(225), + [anon_sym_XXX] = ACTIONS(225), + [sym_fixme] = ACTIONS(209), + [sym__whitespace1] = ACTIONS(227), + [sym__newline] = ACTIONS(229), + [aux_sym__text_token1] = ACTIONS(231), + [sym__verbatim_begin] = ACTIONS(233), }, [102] = { - [sym__inline_without_trailing_space] = STATE(1099), - [sym__element] = STATE(572), - [sym_emphasis] = STATE(138), - [sym_emphasis_begin] = STATE(1161), - [sym_strong] = STATE(138), - [sym_strong_begin] = STATE(1162), - [sym_superscript] = STATE(138), - [sym_superscript_begin] = STATE(1163), - [sym_subscript] = STATE(138), - [sym_subscript_begin] = STATE(1164), - [sym_highlighted] = STATE(138), - [sym_highlighted_begin] = STATE(1165), - [sym_insert] = STATE(138), - [sym_insert_begin] = STATE(1166), - [sym_delete] = STATE(138), - [sym_delete_begin] = STATE(1167), - [sym_hard_line_break] = STATE(138), - [sym__smart_punctuation] = STATE(138), - [sym_autolink] = STATE(138), - [sym_footnote_reference] = STATE(138), - [sym_footnote_marker_begin] = STATE(1168), - [sym__image] = STATE(138), - [sym_full_reference_image] = STATE(138), - [sym_collapsed_reference_image] = STATE(138), - [sym_inline_image] = STATE(138), - [sym__image_description] = STATE(703), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(138), - [sym_full_reference_link] = STATE(138), - [sym_collapsed_reference_link] = STATE(138), - [sym_inline_link] = STATE(138), - [sym_link_text] = STATE(697), - [sym_span] = STATE(572), - [sym__bracketed_text] = STATE(671), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(138), - [sym_raw_inline] = STATE(138), - [sym_math] = STATE(138), - [sym_verbatim] = STATE(138), - [sym__todo_highlights] = STATE(138), - [sym_todo] = STATE(138), - [sym_note] = STATE(138), - [sym__symbol_fallback] = STATE(138), - [aux_sym__text] = STATE(122), - [aux_sym__inline_repeat1] = STATE(120), - [anon_sym_LBRACE_] = ACTIONS(331), - [anon_sym__] = ACTIONS(333), - [anon_sym_LBRACE_STAR] = ACTIONS(335), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_LBRACE_CARET] = ACTIONS(339), - [anon_sym_CARET] = ACTIONS(339), - [anon_sym_LBRACE_TILDE] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_LBRACE_EQ] = ACTIONS(343), - [anon_sym_LBRACE_PLUS] = ACTIONS(345), - [anon_sym_LBRACE_DASH] = ACTIONS(347), - [anon_sym_BSLASH] = ACTIONS(349), - [sym_quotation_marks] = ACTIONS(351), - [sym_ellipsis] = ACTIONS(351), - [sym_em_dash] = ACTIONS(351), - [sym_en_dash] = ACTIONS(353), - [sym_backslash_escape] = ACTIONS(353), - [anon_sym_LT] = ACTIONS(355), - [sym_symbol] = ACTIONS(351), - [anon_sym_LBRACK_CARET] = ACTIONS(357), - [anon_sym_BANG_LBRACK] = ACTIONS(359), - [anon_sym_LBRACK] = ACTIONS(361), - [anon_sym_DOLLAR] = ACTIONS(363), - [anon_sym_TODO] = ACTIONS(365), - [anon_sym_WIP] = ACTIONS(365), - [anon_sym_NOTE] = ACTIONS(367), - [anon_sym_INFO] = ACTIONS(367), - [anon_sym_XXX] = ACTIONS(367), - [sym_fixme] = ACTIONS(351), - [sym__whitespace1] = ACTIONS(369), - [sym__newline] = ACTIONS(371), - [aux_sym__text_token1] = ACTIONS(373), - [sym__verbatim_begin] = ACTIONS(375), + [sym__inline] = STATE(1216), + [sym__element] = STATE(84), + [sym_emphasis] = STATE(146), + [sym_emphasis_begin] = STATE(1226), + [sym_strong] = STATE(146), + [sym_strong_begin] = STATE(1227), + [sym_superscript] = STATE(146), + [sym_superscript_begin] = STATE(1228), + [sym_subscript] = STATE(146), + [sym_subscript_begin] = STATE(1229), + [sym_highlighted] = STATE(146), + [sym_highlighted_begin] = STATE(1230), + [sym_insert] = STATE(146), + [sym_insert_begin] = STATE(1231), + [sym_delete] = STATE(146), + [sym_delete_begin] = STATE(1232), + [sym_hard_line_break] = STATE(146), + [sym__smart_punctuation] = STATE(146), + [sym_autolink] = STATE(146), + [sym_footnote_reference] = STATE(146), + [sym_footnote_marker_begin] = STATE(1233), + [sym__image] = STATE(146), + [sym_full_reference_image] = STATE(146), + [sym_collapsed_reference_image] = STATE(146), + [sym_inline_image] = STATE(146), + [sym_image_description] = STATE(694), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(146), + [sym_full_reference_link] = STATE(146), + [sym_collapsed_reference_link] = STATE(146), + [sym_inline_link] = STATE(146), + [sym_link_text] = STATE(693), + [sym_span] = STATE(84), + [sym__bracketed_text_begin] = STATE(1269), + [sym__comment_with_spaces] = STATE(146), + [sym_raw_inline] = STATE(146), + [sym_math] = STATE(146), + [sym_verbatim] = STATE(146), + [sym__todo_highlights] = STATE(146), + [sym_todo] = STATE(146), + [sym_note] = STATE(146), + [sym__symbol_fallback] = STATE(146), + [aux_sym__text] = STATE(141), + [aux_sym__inline_repeat1] = STATE(84), + [anon_sym_LBRACE_] = ACTIONS(356), + [anon_sym__] = ACTIONS(358), + [anon_sym_LBRACE_STAR] = ACTIONS(360), + [anon_sym_STAR] = ACTIONS(362), + [anon_sym_LBRACE_CARET] = ACTIONS(364), + [anon_sym_CARET] = ACTIONS(364), + [anon_sym_LBRACE_TILDE] = ACTIONS(366), + [anon_sym_TILDE] = ACTIONS(366), + [anon_sym_LBRACE_EQ] = ACTIONS(368), + [anon_sym_LBRACE_PLUS] = ACTIONS(370), + [anon_sym_LBRACE_DASH] = ACTIONS(372), + [anon_sym_BSLASH] = ACTIONS(374), + [sym_quotation_marks] = ACTIONS(376), + [sym_ellipsis] = ACTIONS(376), + [sym_em_dash] = ACTIONS(376), + [sym_en_dash] = ACTIONS(378), + [sym_backslash_escape] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [sym_symbol] = ACTIONS(376), + [anon_sym_LBRACK_CARET] = ACTIONS(382), + [anon_sym_BANG_LBRACK] = ACTIONS(384), + [anon_sym_LBRACK] = ACTIONS(386), + [anon_sym_DOLLAR] = ACTIONS(388), + [anon_sym_TODO] = ACTIONS(390), + [anon_sym_WIP] = ACTIONS(390), + [anon_sym_NOTE] = ACTIONS(392), + [anon_sym_INFO] = ACTIONS(392), + [anon_sym_XXX] = ACTIONS(392), + [sym_fixme] = ACTIONS(376), + [sym__whitespace1] = ACTIONS(394), + [sym__newline] = ACTIONS(396), + [aux_sym__text_token1] = ACTIONS(398), + [sym__verbatim_begin] = ACTIONS(400), }, [103] = { - [sym__inline] = STATE(1030), - [sym__element] = STATE(72), - [sym_emphasis] = STATE(135), - [sym_emphasis_begin] = STATE(1177), - [sym_strong] = STATE(135), - [sym_strong_begin] = STATE(1178), - [sym_superscript] = STATE(135), - [sym_superscript_begin] = STATE(1179), - [sym_subscript] = STATE(135), - [sym_subscript_begin] = STATE(1180), - [sym_highlighted] = STATE(135), - [sym_highlighted_begin] = STATE(1181), - [sym_insert] = STATE(135), - [sym_insert_begin] = STATE(1182), - [sym_delete] = STATE(135), - [sym_delete_begin] = STATE(1183), - [sym_hard_line_break] = STATE(135), - [sym__smart_punctuation] = STATE(135), - [sym_autolink] = STATE(135), - [sym_footnote_reference] = STATE(135), - [sym_footnote_marker_begin] = STATE(1184), - [sym__image] = STATE(135), - [sym_full_reference_image] = STATE(135), - [sym_collapsed_reference_image] = STATE(135), - [sym_inline_image] = STATE(135), - [sym__image_description] = STATE(687), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(135), - [sym_full_reference_link] = STATE(135), - [sym_collapsed_reference_link] = STATE(135), - [sym_inline_link] = STATE(135), - [sym_link_text] = STATE(684), - [sym_span] = STATE(72), - [sym__bracketed_text] = STATE(670), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(135), - [sym_raw_inline] = STATE(135), - [sym_math] = STATE(135), - [sym_verbatim] = STATE(135), - [sym__todo_highlights] = STATE(135), - [sym_todo] = STATE(135), - [sym_note] = STATE(135), - [sym__symbol_fallback] = STATE(135), - [aux_sym__text] = STATE(124), - [aux_sym__inline_repeat1] = STATE(72), - [anon_sym_LBRACE_] = ACTIONS(239), - [anon_sym__] = ACTIONS(241), - [anon_sym_LBRACE_STAR] = ACTIONS(243), - [anon_sym_STAR] = ACTIONS(245), - [anon_sym_LBRACE_CARET] = ACTIONS(247), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_LBRACE_TILDE] = ACTIONS(249), - [anon_sym_TILDE] = ACTIONS(249), - [anon_sym_LBRACE_EQ] = ACTIONS(251), - [anon_sym_LBRACE_PLUS] = ACTIONS(253), - [anon_sym_LBRACE_DASH] = ACTIONS(255), - [anon_sym_BSLASH] = ACTIONS(257), - [sym_quotation_marks] = ACTIONS(259), - [sym_ellipsis] = ACTIONS(259), - [sym_em_dash] = ACTIONS(259), - [sym_en_dash] = ACTIONS(261), - [sym_backslash_escape] = ACTIONS(261), - [anon_sym_LT] = ACTIONS(263), - [sym_symbol] = ACTIONS(259), - [anon_sym_LBRACK_CARET] = ACTIONS(265), - [anon_sym_BANG_LBRACK] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(269), - [anon_sym_DOLLAR] = ACTIONS(271), - [anon_sym_TODO] = ACTIONS(273), - [anon_sym_WIP] = ACTIONS(273), - [anon_sym_NOTE] = ACTIONS(275), - [anon_sym_INFO] = ACTIONS(275), - [anon_sym_XXX] = ACTIONS(275), - [sym_fixme] = ACTIONS(259), - [sym__whitespace1] = ACTIONS(277), - [sym__newline] = ACTIONS(279), - [aux_sym__text_token1] = ACTIONS(281), - [sym__verbatim_begin] = ACTIONS(283), + [sym__inline_without_trailing_space] = STATE(1142), + [sym__element] = STATE(623), + [sym_emphasis] = STATE(148), + [sym_emphasis_begin] = STATE(1163), + [sym_strong] = STATE(148), + [sym_strong_begin] = STATE(1164), + [sym_superscript] = STATE(148), + [sym_superscript_begin] = STATE(1165), + [sym_subscript] = STATE(148), + [sym_subscript_begin] = STATE(1166), + [sym_highlighted] = STATE(148), + [sym_highlighted_begin] = STATE(1167), + [sym_insert] = STATE(148), + [sym_insert_begin] = STATE(1168), + [sym_delete] = STATE(148), + [sym_delete_begin] = STATE(1169), + [sym_hard_line_break] = STATE(148), + [sym__smart_punctuation] = STATE(148), + [sym_autolink] = STATE(148), + [sym_footnote_reference] = STATE(148), + [sym_footnote_marker_begin] = STATE(1170), + [sym__image] = STATE(148), + [sym_full_reference_image] = STATE(148), + [sym_collapsed_reference_image] = STATE(148), + [sym_inline_image] = STATE(148), + [sym_image_description] = STATE(712), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(148), + [sym_full_reference_link] = STATE(148), + [sym_collapsed_reference_link] = STATE(148), + [sym_inline_link] = STATE(148), + [sym_link_text] = STATE(713), + [sym_span] = STATE(623), + [sym__bracketed_text_begin] = STATE(1262), + [sym__comment_with_spaces] = STATE(148), + [sym_raw_inline] = STATE(148), + [sym_math] = STATE(148), + [sym_verbatim] = STATE(148), + [sym__todo_highlights] = STATE(148), + [sym_todo] = STATE(148), + [sym_note] = STATE(148), + [sym__symbol_fallback] = STATE(148), + [aux_sym__text] = STATE(136), + [aux_sym__inline_repeat1] = STATE(129), + [anon_sym_LBRACE_] = ACTIONS(402), + [anon_sym__] = ACTIONS(404), + [anon_sym_LBRACE_STAR] = ACTIONS(406), + [anon_sym_STAR] = ACTIONS(408), + [anon_sym_LBRACE_CARET] = ACTIONS(410), + [anon_sym_CARET] = ACTIONS(410), + [anon_sym_LBRACE_TILDE] = ACTIONS(412), + [anon_sym_TILDE] = ACTIONS(412), + [anon_sym_LBRACE_EQ] = ACTIONS(414), + [anon_sym_LBRACE_PLUS] = ACTIONS(416), + [anon_sym_LBRACE_DASH] = ACTIONS(418), + [anon_sym_BSLASH] = ACTIONS(420), + [sym_quotation_marks] = ACTIONS(422), + [sym_ellipsis] = ACTIONS(422), + [sym_em_dash] = ACTIONS(422), + [sym_en_dash] = ACTIONS(424), + [sym_backslash_escape] = ACTIONS(424), + [anon_sym_LT] = ACTIONS(426), + [sym_symbol] = ACTIONS(422), + [anon_sym_LBRACK_CARET] = ACTIONS(428), + [anon_sym_BANG_LBRACK] = ACTIONS(430), + [anon_sym_LBRACK] = ACTIONS(432), + [anon_sym_DOLLAR] = ACTIONS(434), + [anon_sym_TODO] = ACTIONS(436), + [anon_sym_WIP] = ACTIONS(436), + [anon_sym_NOTE] = ACTIONS(438), + [anon_sym_INFO] = ACTIONS(438), + [anon_sym_XXX] = ACTIONS(438), + [sym_fixme] = ACTIONS(422), + [sym__whitespace1] = ACTIONS(440), + [sym__newline] = ACTIONS(442), + [aux_sym__text_token1] = ACTIONS(444), + [sym__verbatim_begin] = ACTIONS(446), }, [104] = { - [sym__inline] = STATE(1098), - [sym__element] = STATE(82), - [sym_emphasis] = STATE(143), - [sym_emphasis_begin] = STATE(1169), - [sym_strong] = STATE(143), - [sym_strong_begin] = STATE(1170), - [sym_superscript] = STATE(143), - [sym_superscript_begin] = STATE(1171), - [sym_subscript] = STATE(143), - [sym_subscript_begin] = STATE(1172), - [sym_highlighted] = STATE(143), - [sym_highlighted_begin] = STATE(1173), - [sym_insert] = STATE(143), - [sym_insert_begin] = STATE(1174), - [sym_delete] = STATE(143), - [sym_delete_begin] = STATE(1175), - [sym_hard_line_break] = STATE(143), - [sym__smart_punctuation] = STATE(143), - [sym_autolink] = STATE(143), - [sym_footnote_reference] = STATE(143), - [sym_footnote_marker_begin] = STATE(1176), - [sym__image] = STATE(143), - [sym_full_reference_image] = STATE(143), - [sym_collapsed_reference_image] = STATE(143), - [sym_inline_image] = STATE(143), - [sym__image_description] = STATE(701), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(143), - [sym_full_reference_link] = STATE(143), - [sym_collapsed_reference_link] = STATE(143), - [sym_inline_link] = STATE(143), - [sym_link_text] = STATE(702), - [sym_span] = STATE(82), - [sym__bracketed_text] = STATE(667), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(143), - [sym_raw_inline] = STATE(143), - [sym_math] = STATE(143), - [sym_verbatim] = STATE(143), - [sym__todo_highlights] = STATE(143), - [sym_todo] = STATE(143), - [sym_note] = STATE(143), - [sym__symbol_fallback] = STATE(143), - [aux_sym__text] = STATE(126), - [aux_sym__inline_repeat1] = STATE(82), - [anon_sym_LBRACE_] = ACTIONS(285), - [anon_sym__] = ACTIONS(287), - [anon_sym_LBRACE_STAR] = ACTIONS(289), - [anon_sym_STAR] = ACTIONS(291), - [anon_sym_LBRACE_CARET] = ACTIONS(293), - [anon_sym_CARET] = ACTIONS(293), - [anon_sym_LBRACE_TILDE] = ACTIONS(295), - [anon_sym_TILDE] = ACTIONS(295), - [anon_sym_LBRACE_EQ] = ACTIONS(297), - [anon_sym_LBRACE_PLUS] = ACTIONS(299), - [anon_sym_LBRACE_DASH] = ACTIONS(301), - [anon_sym_BSLASH] = ACTIONS(303), - [sym_quotation_marks] = ACTIONS(305), - [sym_ellipsis] = ACTIONS(305), - [sym_em_dash] = ACTIONS(305), - [sym_en_dash] = ACTIONS(307), - [sym_backslash_escape] = ACTIONS(307), - [anon_sym_LT] = ACTIONS(309), - [sym_symbol] = ACTIONS(305), - [anon_sym_LBRACK_CARET] = ACTIONS(311), - [anon_sym_BANG_LBRACK] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_DOLLAR] = ACTIONS(317), - [anon_sym_TODO] = ACTIONS(319), - [anon_sym_WIP] = ACTIONS(319), - [anon_sym_NOTE] = ACTIONS(321), - [anon_sym_INFO] = ACTIONS(321), - [anon_sym_XXX] = ACTIONS(321), - [sym_fixme] = ACTIONS(305), - [sym__whitespace1] = ACTIONS(323), - [sym__newline] = ACTIONS(325), - [aux_sym__text_token1] = ACTIONS(327), - [sym__verbatim_begin] = ACTIONS(329), + [sym__inline_without_trailing_space] = STATE(1137), + [sym__element] = STATE(570), + [sym_emphasis] = STATE(152), + [sym_emphasis_begin] = STATE(1172), + [sym_strong] = STATE(152), + [sym_strong_begin] = STATE(1173), + [sym_superscript] = STATE(152), + [sym_superscript_begin] = STATE(1174), + [sym_subscript] = STATE(152), + [sym_subscript_begin] = STATE(1175), + [sym_highlighted] = STATE(152), + [sym_highlighted_begin] = STATE(1176), + [sym_insert] = STATE(152), + [sym_insert_begin] = STATE(1177), + [sym_delete] = STATE(152), + [sym_delete_begin] = STATE(1178), + [sym_hard_line_break] = STATE(152), + [sym__smart_punctuation] = STATE(152), + [sym_autolink] = STATE(152), + [sym_footnote_reference] = STATE(152), + [sym_footnote_marker_begin] = STATE(1179), + [sym__image] = STATE(152), + [sym_full_reference_image] = STATE(152), + [sym_collapsed_reference_image] = STATE(152), + [sym_inline_image] = STATE(152), + [sym_image_description] = STATE(704), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(152), + [sym_full_reference_link] = STATE(152), + [sym_collapsed_reference_link] = STATE(152), + [sym_inline_link] = STATE(152), + [sym_link_text] = STATE(706), + [sym_span] = STATE(570), + [sym__bracketed_text_begin] = STATE(1263), + [sym__comment_with_spaces] = STATE(152), + [sym_raw_inline] = STATE(152), + [sym_math] = STATE(152), + [sym_verbatim] = STATE(152), + [sym__todo_highlights] = STATE(152), + [sym_todo] = STATE(152), + [sym_note] = STATE(152), + [sym__symbol_fallback] = STATE(152), + [aux_sym__text] = STATE(133), + [aux_sym__inline_repeat1] = STATE(130), + [anon_sym_LBRACE_] = ACTIONS(448), + [anon_sym__] = ACTIONS(450), + [anon_sym_LBRACE_STAR] = ACTIONS(452), + [anon_sym_STAR] = ACTIONS(454), + [anon_sym_LBRACE_CARET] = ACTIONS(456), + [anon_sym_CARET] = ACTIONS(456), + [anon_sym_LBRACE_TILDE] = ACTIONS(458), + [anon_sym_TILDE] = ACTIONS(458), + [anon_sym_LBRACE_EQ] = ACTIONS(460), + [anon_sym_LBRACE_PLUS] = ACTIONS(462), + [anon_sym_LBRACE_DASH] = ACTIONS(464), + [anon_sym_BSLASH] = ACTIONS(466), + [sym_quotation_marks] = ACTIONS(468), + [sym_ellipsis] = ACTIONS(468), + [sym_em_dash] = ACTIONS(468), + [sym_en_dash] = ACTIONS(470), + [sym_backslash_escape] = ACTIONS(470), + [anon_sym_LT] = ACTIONS(472), + [sym_symbol] = ACTIONS(468), + [anon_sym_LBRACK_CARET] = ACTIONS(474), + [anon_sym_BANG_LBRACK] = ACTIONS(476), + [anon_sym_LBRACK] = ACTIONS(478), + [anon_sym_DOLLAR] = ACTIONS(480), + [anon_sym_TODO] = ACTIONS(482), + [anon_sym_WIP] = ACTIONS(482), + [anon_sym_NOTE] = ACTIONS(484), + [anon_sym_INFO] = ACTIONS(484), + [anon_sym_XXX] = ACTIONS(484), + [sym_fixme] = ACTIONS(468), + [sym__whitespace1] = ACTIONS(486), + [sym__newline] = ACTIONS(488), + [aux_sym__text_token1] = ACTIONS(490), + [sym__verbatim_begin] = ACTIONS(492), }, [105] = { - [sym__inline] = STATE(1096), - [sym__element] = STATE(72), - [sym_emphasis] = STATE(135), - [sym_emphasis_begin] = STATE(1177), - [sym_strong] = STATE(135), - [sym_strong_begin] = STATE(1178), - [sym_superscript] = STATE(135), - [sym_superscript_begin] = STATE(1179), - [sym_subscript] = STATE(135), - [sym_subscript_begin] = STATE(1180), - [sym_highlighted] = STATE(135), - [sym_highlighted_begin] = STATE(1181), - [sym_insert] = STATE(135), - [sym_insert_begin] = STATE(1182), - [sym_delete] = STATE(135), - [sym_delete_begin] = STATE(1183), - [sym_hard_line_break] = STATE(135), - [sym__smart_punctuation] = STATE(135), - [sym_autolink] = STATE(135), - [sym_footnote_reference] = STATE(135), - [sym_footnote_marker_begin] = STATE(1184), - [sym__image] = STATE(135), - [sym_full_reference_image] = STATE(135), - [sym_collapsed_reference_image] = STATE(135), - [sym_inline_image] = STATE(135), - [sym__image_description] = STATE(687), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(135), - [sym_full_reference_link] = STATE(135), - [sym_collapsed_reference_link] = STATE(135), - [sym_inline_link] = STATE(135), - [sym_link_text] = STATE(684), - [sym_span] = STATE(72), - [sym__bracketed_text] = STATE(670), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(135), - [sym_raw_inline] = STATE(135), - [sym_math] = STATE(135), - [sym_verbatim] = STATE(135), - [sym__todo_highlights] = STATE(135), - [sym_todo] = STATE(135), - [sym_note] = STATE(135), - [sym__symbol_fallback] = STATE(135), - [aux_sym__text] = STATE(124), - [aux_sym__inline_repeat1] = STATE(72), - [anon_sym_LBRACE_] = ACTIONS(239), - [anon_sym__] = ACTIONS(241), - [anon_sym_LBRACE_STAR] = ACTIONS(243), - [anon_sym_STAR] = ACTIONS(245), - [anon_sym_LBRACE_CARET] = ACTIONS(247), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_LBRACE_TILDE] = ACTIONS(249), - [anon_sym_TILDE] = ACTIONS(249), - [anon_sym_LBRACE_EQ] = ACTIONS(251), - [anon_sym_LBRACE_PLUS] = ACTIONS(253), - [anon_sym_LBRACE_DASH] = ACTIONS(255), - [anon_sym_BSLASH] = ACTIONS(257), - [sym_quotation_marks] = ACTIONS(259), - [sym_ellipsis] = ACTIONS(259), - [sym_em_dash] = ACTIONS(259), - [sym_en_dash] = ACTIONS(261), - [sym_backslash_escape] = ACTIONS(261), - [anon_sym_LT] = ACTIONS(263), - [sym_symbol] = ACTIONS(259), - [anon_sym_LBRACK_CARET] = ACTIONS(265), - [anon_sym_BANG_LBRACK] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(269), - [anon_sym_DOLLAR] = ACTIONS(271), - [anon_sym_TODO] = ACTIONS(273), - [anon_sym_WIP] = ACTIONS(273), - [anon_sym_NOTE] = ACTIONS(275), - [anon_sym_INFO] = ACTIONS(275), - [anon_sym_XXX] = ACTIONS(275), - [sym_fixme] = ACTIONS(259), - [sym__whitespace1] = ACTIONS(277), - [sym__newline] = ACTIONS(279), - [aux_sym__text_token1] = ACTIONS(281), - [sym__verbatim_begin] = ACTIONS(283), + [sym__inline] = STATE(1136), + [sym__element] = STATE(124), + [sym_emphasis] = STATE(151), + [sym_emphasis_begin] = STATE(1181), + [sym_strong] = STATE(151), + [sym_strong_begin] = STATE(1182), + [sym_superscript] = STATE(151), + [sym_superscript_begin] = STATE(1183), + [sym_subscript] = STATE(151), + [sym_subscript_begin] = STATE(1184), + [sym_highlighted] = STATE(151), + [sym_highlighted_begin] = STATE(1185), + [sym_insert] = STATE(151), + [sym_insert_begin] = STATE(1186), + [sym_delete] = STATE(151), + [sym_delete_begin] = STATE(1187), + [sym_hard_line_break] = STATE(151), + [sym__smart_punctuation] = STATE(151), + [sym_autolink] = STATE(151), + [sym_footnote_reference] = STATE(151), + [sym_footnote_marker_begin] = STATE(1188), + [sym__image] = STATE(151), + [sym_full_reference_image] = STATE(151), + [sym_collapsed_reference_image] = STATE(151), + [sym_inline_image] = STATE(151), + [sym_image_description] = STATE(700), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(151), + [sym_full_reference_link] = STATE(151), + [sym_collapsed_reference_link] = STATE(151), + [sym_inline_link] = STATE(151), + [sym_link_text] = STATE(701), + [sym_span] = STATE(124), + [sym__bracketed_text_begin] = STATE(1264), + [sym__comment_with_spaces] = STATE(151), + [sym_raw_inline] = STATE(151), + [sym_math] = STATE(151), + [sym_verbatim] = STATE(151), + [sym__todo_highlights] = STATE(151), + [sym_todo] = STATE(151), + [sym_note] = STATE(151), + [sym__symbol_fallback] = STATE(151), + [aux_sym__text] = STATE(140), + [aux_sym__inline_repeat1] = STATE(124), + [anon_sym_LBRACE_] = ACTIONS(143), + [anon_sym__] = ACTIONS(145), + [anon_sym_LBRACE_STAR] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(149), + [anon_sym_LBRACE_CARET] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(151), + [anon_sym_LBRACE_TILDE] = ACTIONS(153), + [anon_sym_TILDE] = ACTIONS(153), + [anon_sym_LBRACE_EQ] = ACTIONS(155), + [anon_sym_LBRACE_PLUS] = ACTIONS(157), + [anon_sym_LBRACE_DASH] = ACTIONS(159), + [anon_sym_BSLASH] = ACTIONS(161), + [sym_quotation_marks] = ACTIONS(163), + [sym_ellipsis] = ACTIONS(163), + [sym_em_dash] = ACTIONS(163), + [sym_en_dash] = ACTIONS(165), + [sym_backslash_escape] = ACTIONS(165), + [anon_sym_LT] = ACTIONS(167), + [sym_symbol] = ACTIONS(163), + [anon_sym_LBRACK_CARET] = ACTIONS(169), + [anon_sym_BANG_LBRACK] = ACTIONS(171), + [anon_sym_LBRACK] = ACTIONS(173), + [anon_sym_DOLLAR] = ACTIONS(175), + [anon_sym_TODO] = ACTIONS(177), + [anon_sym_WIP] = ACTIONS(177), + [anon_sym_NOTE] = ACTIONS(179), + [anon_sym_INFO] = ACTIONS(179), + [anon_sym_XXX] = ACTIONS(179), + [sym_fixme] = ACTIONS(163), + [sym__whitespace1] = ACTIONS(181), + [sym__newline] = ACTIONS(183), + [aux_sym__text_token1] = ACTIONS(185), + [sym__verbatim_begin] = ACTIONS(187), }, [106] = { - [sym__inline] = STATE(1089), - [sym__element] = STATE(107), - [sym_emphasis] = STATE(140), - [sym_emphasis_begin] = STATE(1185), - [sym_strong] = STATE(140), - [sym_strong_begin] = STATE(1186), - [sym_superscript] = STATE(140), - [sym_superscript_begin] = STATE(1187), - [sym_subscript] = STATE(140), - [sym_subscript_begin] = STATE(1188), - [sym_highlighted] = STATE(140), - [sym_highlighted_begin] = STATE(1189), - [sym_insert] = STATE(140), - [sym_insert_begin] = STATE(1190), - [sym_delete] = STATE(140), - [sym_delete_begin] = STATE(1191), - [sym_hard_line_break] = STATE(140), - [sym__smart_punctuation] = STATE(140), - [sym_autolink] = STATE(140), - [sym_footnote_reference] = STATE(140), - [sym_footnote_marker_begin] = STATE(1192), - [sym__image] = STATE(140), - [sym_full_reference_image] = STATE(140), - [sym_collapsed_reference_image] = STATE(140), - [sym_inline_image] = STATE(140), - [sym__image_description] = STATE(700), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(140), - [sym_full_reference_link] = STATE(140), - [sym_collapsed_reference_link] = STATE(140), - [sym_inline_link] = STATE(140), - [sym_link_text] = STATE(699), - [sym_span] = STATE(107), - [sym__bracketed_text] = STATE(666), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(140), - [sym_raw_inline] = STATE(140), - [sym_math] = STATE(140), - [sym_verbatim] = STATE(140), - [sym__todo_highlights] = STATE(140), - [sym_todo] = STATE(140), - [sym_note] = STATE(140), - [sym__symbol_fallback] = STATE(140), - [aux_sym__text] = STATE(125), - [aux_sym__inline_repeat1] = STATE(107), - [anon_sym_LBRACE_] = ACTIONS(193), - [anon_sym__] = ACTIONS(195), - [anon_sym_LBRACE_STAR] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(199), - [anon_sym_LBRACE_CARET] = ACTIONS(201), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_LBRACE_TILDE] = ACTIONS(203), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_LBRACE_EQ] = ACTIONS(205), - [anon_sym_LBRACE_PLUS] = ACTIONS(207), - [anon_sym_LBRACE_DASH] = ACTIONS(209), - [anon_sym_BSLASH] = ACTIONS(211), - [sym_quotation_marks] = ACTIONS(213), - [sym_ellipsis] = ACTIONS(213), - [sym_em_dash] = ACTIONS(213), - [sym_en_dash] = ACTIONS(215), - [sym_backslash_escape] = ACTIONS(215), - [anon_sym_LT] = ACTIONS(217), - [sym_symbol] = ACTIONS(213), - [anon_sym_LBRACK_CARET] = ACTIONS(219), - [anon_sym_BANG_LBRACK] = ACTIONS(221), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_DOLLAR] = ACTIONS(225), - [anon_sym_TODO] = ACTIONS(227), - [anon_sym_WIP] = ACTIONS(227), - [anon_sym_NOTE] = ACTIONS(229), - [anon_sym_INFO] = ACTIONS(229), - [anon_sym_XXX] = ACTIONS(229), - [sym_fixme] = ACTIONS(213), - [sym__whitespace1] = ACTIONS(231), - [sym__newline] = ACTIONS(233), - [aux_sym__text_token1] = ACTIONS(235), - [sym__verbatim_begin] = ACTIONS(237), + [sym__inline] = STATE(1134), + [sym__element] = STATE(80), + [sym_emphasis] = STATE(145), + [sym_emphasis_begin] = STATE(1190), + [sym_strong] = STATE(145), + [sym_strong_begin] = STATE(1191), + [sym_superscript] = STATE(145), + [sym_superscript_begin] = STATE(1192), + [sym_subscript] = STATE(145), + [sym_subscript_begin] = STATE(1193), + [sym_highlighted] = STATE(145), + [sym_highlighted_begin] = STATE(1194), + [sym_insert] = STATE(145), + [sym_insert_begin] = STATE(1195), + [sym_delete] = STATE(145), + [sym_delete_begin] = STATE(1196), + [sym_hard_line_break] = STATE(145), + [sym__smart_punctuation] = STATE(145), + [sym_autolink] = STATE(145), + [sym_footnote_reference] = STATE(145), + [sym_footnote_marker_begin] = STATE(1197), + [sym__image] = STATE(145), + [sym_full_reference_image] = STATE(145), + [sym_collapsed_reference_image] = STATE(145), + [sym_inline_image] = STATE(145), + [sym_image_description] = STATE(696), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(145), + [sym_full_reference_link] = STATE(145), + [sym_collapsed_reference_link] = STATE(145), + [sym_inline_link] = STATE(145), + [sym_link_text] = STATE(691), + [sym_span] = STATE(80), + [sym__bracketed_text_begin] = STATE(1265), + [sym__comment_with_spaces] = STATE(145), + [sym_raw_inline] = STATE(145), + [sym_math] = STATE(145), + [sym_verbatim] = STATE(145), + [sym__todo_highlights] = STATE(145), + [sym_todo] = STATE(145), + [sym_note] = STATE(145), + [sym__symbol_fallback] = STATE(145), + [aux_sym__text] = STATE(138), + [aux_sym__inline_repeat1] = STATE(80), + [anon_sym_LBRACE_] = ACTIONS(542), + [anon_sym__] = ACTIONS(544), + [anon_sym_LBRACE_STAR] = ACTIONS(546), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE_CARET] = ACTIONS(550), + [anon_sym_CARET] = ACTIONS(550), + [anon_sym_LBRACE_TILDE] = ACTIONS(552), + [anon_sym_TILDE] = ACTIONS(552), + [anon_sym_LBRACE_EQ] = ACTIONS(554), + [anon_sym_LBRACE_PLUS] = ACTIONS(556), + [anon_sym_LBRACE_DASH] = ACTIONS(558), + [anon_sym_BSLASH] = ACTIONS(560), + [sym_quotation_marks] = ACTIONS(562), + [sym_ellipsis] = ACTIONS(562), + [sym_em_dash] = ACTIONS(562), + [sym_en_dash] = ACTIONS(564), + [sym_backslash_escape] = ACTIONS(564), + [anon_sym_LT] = ACTIONS(566), + [sym_symbol] = ACTIONS(562), + [anon_sym_LBRACK_CARET] = ACTIONS(568), + [anon_sym_BANG_LBRACK] = ACTIONS(570), + [anon_sym_LBRACK] = ACTIONS(572), + [anon_sym_DOLLAR] = ACTIONS(574), + [anon_sym_TODO] = ACTIONS(576), + [anon_sym_WIP] = ACTIONS(576), + [anon_sym_NOTE] = ACTIONS(578), + [anon_sym_INFO] = ACTIONS(578), + [anon_sym_XXX] = ACTIONS(578), + [sym_fixme] = ACTIONS(562), + [sym__whitespace1] = ACTIONS(580), + [sym__newline] = ACTIONS(582), + [aux_sym__text_token1] = ACTIONS(584), + [sym__verbatim_begin] = ACTIONS(586), }, [107] = { - [sym__element] = STATE(109), - [sym_emphasis] = STATE(140), - [sym_emphasis_begin] = STATE(1185), - [sym_strong] = STATE(140), - [sym_strong_begin] = STATE(1186), - [sym_superscript] = STATE(140), - [sym_superscript_begin] = STATE(1187), - [sym_subscript] = STATE(140), - [sym_subscript_begin] = STATE(1188), - [sym_highlighted] = STATE(140), - [sym_highlighted_begin] = STATE(1189), - [sym_insert] = STATE(140), - [sym_insert_begin] = STATE(1190), - [sym_delete] = STATE(140), - [sym_delete_begin] = STATE(1191), - [sym_hard_line_break] = STATE(140), - [sym__smart_punctuation] = STATE(140), - [sym_autolink] = STATE(140), - [sym_footnote_reference] = STATE(140), - [sym_footnote_marker_begin] = STATE(1192), - [sym__image] = STATE(140), - [sym_full_reference_image] = STATE(140), - [sym_collapsed_reference_image] = STATE(140), - [sym_inline_image] = STATE(140), - [sym__image_description] = STATE(700), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(140), - [sym_full_reference_link] = STATE(140), - [sym_collapsed_reference_link] = STATE(140), - [sym_inline_link] = STATE(140), - [sym_link_text] = STATE(699), - [sym_span] = STATE(109), - [sym__bracketed_text] = STATE(666), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(140), - [sym_raw_inline] = STATE(140), - [sym_math] = STATE(140), - [sym_verbatim] = STATE(140), - [sym__todo_highlights] = STATE(140), - [sym_todo] = STATE(140), - [sym_note] = STATE(140), - [sym__symbol_fallback] = STATE(140), - [aux_sym__text] = STATE(125), - [aux_sym__inline_repeat1] = STATE(109), - [anon_sym_LBRACE_] = ACTIONS(193), - [anon_sym__] = ACTIONS(195), - [anon_sym_LBRACE_STAR] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(199), - [anon_sym_LBRACE_CARET] = ACTIONS(201), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_LBRACE_TILDE] = ACTIONS(203), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_LBRACE_EQ] = ACTIONS(205), - [anon_sym_LBRACE_PLUS] = ACTIONS(207), - [anon_sym_LBRACE_DASH] = ACTIONS(209), - [anon_sym_BSLASH] = ACTIONS(211), - [sym_quotation_marks] = ACTIONS(213), - [sym_ellipsis] = ACTIONS(213), - [sym_em_dash] = ACTIONS(213), - [sym_en_dash] = ACTIONS(215), - [sym_backslash_escape] = ACTIONS(215), - [anon_sym_LT] = ACTIONS(217), - [sym_symbol] = ACTIONS(213), - [anon_sym_LBRACK_CARET] = ACTIONS(219), - [anon_sym_BANG_LBRACK] = ACTIONS(221), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_DOLLAR] = ACTIONS(225), - [anon_sym_TODO] = ACTIONS(227), - [anon_sym_WIP] = ACTIONS(227), - [anon_sym_NOTE] = ACTIONS(229), - [anon_sym_INFO] = ACTIONS(229), - [anon_sym_XXX] = ACTIONS(229), - [sym_fixme] = ACTIONS(213), - [sym__whitespace1] = ACTIONS(231), - [sym__newline] = ACTIONS(943), - [aux_sym__text_token1] = ACTIONS(235), - [sym__verbatim_begin] = ACTIONS(237), - [sym_highlighted_end] = ACTIONS(143), + [sym__inline] = STATE(1126), + [sym__element] = STATE(21), + [sym_emphasis] = STATE(149), + [sym_emphasis_begin] = STATE(1199), + [sym_strong] = STATE(149), + [sym_strong_begin] = STATE(1200), + [sym_superscript] = STATE(149), + [sym_superscript_begin] = STATE(1201), + [sym_subscript] = STATE(149), + [sym_subscript_begin] = STATE(1202), + [sym_highlighted] = STATE(149), + [sym_highlighted_begin] = STATE(1203), + [sym_insert] = STATE(149), + [sym_insert_begin] = STATE(1204), + [sym_delete] = STATE(149), + [sym_delete_begin] = STATE(1205), + [sym_hard_line_break] = STATE(149), + [sym__smart_punctuation] = STATE(149), + [sym_autolink] = STATE(149), + [sym_footnote_reference] = STATE(149), + [sym_footnote_marker_begin] = STATE(1206), + [sym__image] = STATE(149), + [sym_full_reference_image] = STATE(149), + [sym_collapsed_reference_image] = STATE(149), + [sym_inline_image] = STATE(149), + [sym_image_description] = STATE(714), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(149), + [sym_full_reference_link] = STATE(149), + [sym_collapsed_reference_link] = STATE(149), + [sym_inline_link] = STATE(149), + [sym_link_text] = STATE(710), + [sym_span] = STATE(21), + [sym__bracketed_text_begin] = STATE(1266), + [sym__comment_with_spaces] = STATE(149), + [sym_raw_inline] = STATE(149), + [sym_math] = STATE(149), + [sym_verbatim] = STATE(149), + [sym__todo_highlights] = STATE(149), + [sym_todo] = STATE(149), + [sym_note] = STATE(149), + [sym__symbol_fallback] = STATE(149), + [aux_sym__text] = STATE(142), + [aux_sym__inline_repeat1] = STATE(21), + [anon_sym_LBRACE_] = ACTIONS(494), + [anon_sym__] = ACTIONS(496), + [anon_sym_LBRACE_STAR] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(500), + [anon_sym_LBRACE_CARET] = ACTIONS(502), + [anon_sym_CARET] = ACTIONS(502), + [anon_sym_LBRACE_TILDE] = ACTIONS(504), + [anon_sym_TILDE] = ACTIONS(504), + [anon_sym_LBRACE_EQ] = ACTIONS(506), + [anon_sym_LBRACE_PLUS] = ACTIONS(508), + [anon_sym_LBRACE_DASH] = ACTIONS(510), + [anon_sym_BSLASH] = ACTIONS(512), + [sym_quotation_marks] = ACTIONS(514), + [sym_ellipsis] = ACTIONS(514), + [sym_em_dash] = ACTIONS(514), + [sym_en_dash] = ACTIONS(516), + [sym_backslash_escape] = ACTIONS(516), + [anon_sym_LT] = ACTIONS(518), + [sym_symbol] = ACTIONS(514), + [anon_sym_LBRACK_CARET] = ACTIONS(520), + [anon_sym_BANG_LBRACK] = ACTIONS(522), + [anon_sym_LBRACK] = ACTIONS(524), + [anon_sym_DOLLAR] = ACTIONS(526), + [anon_sym_TODO] = ACTIONS(528), + [anon_sym_WIP] = ACTIONS(528), + [anon_sym_NOTE] = ACTIONS(530), + [anon_sym_INFO] = ACTIONS(530), + [anon_sym_XXX] = ACTIONS(530), + [sym_fixme] = ACTIONS(514), + [sym__whitespace1] = ACTIONS(532), + [sym__newline] = ACTIONS(540), + [aux_sym__text_token1] = ACTIONS(536), + [sym__verbatim_begin] = ACTIONS(538), }, [108] = { - [sym__inline] = STATE(1081), - [sym__element] = STATE(3), - [sym_emphasis] = STATE(137), - [sym_emphasis_begin] = STATE(1193), - [sym_strong] = STATE(137), - [sym_strong_begin] = STATE(1194), - [sym_superscript] = STATE(137), - [sym_superscript_begin] = STATE(1195), - [sym_subscript] = STATE(137), - [sym_subscript_begin] = STATE(1196), - [sym_highlighted] = STATE(137), - [sym_highlighted_begin] = STATE(1197), - [sym_insert] = STATE(137), - [sym_insert_begin] = STATE(1198), - [sym_delete] = STATE(137), - [sym_delete_begin] = STATE(1199), - [sym_hard_line_break] = STATE(137), - [sym__smart_punctuation] = STATE(137), - [sym_autolink] = STATE(137), - [sym_footnote_reference] = STATE(137), - [sym_footnote_marker_begin] = STATE(1200), - [sym__image] = STATE(137), - [sym_full_reference_image] = STATE(137), - [sym_collapsed_reference_image] = STATE(137), - [sym_inline_image] = STATE(137), - [sym__image_description] = STATE(694), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(137), - [sym_full_reference_link] = STATE(137), - [sym_collapsed_reference_link] = STATE(137), - [sym_inline_link] = STATE(137), - [sym_link_text] = STATE(693), - [sym_span] = STATE(3), - [sym__bracketed_text] = STATE(672), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(137), - [sym_raw_inline] = STATE(137), - [sym_math] = STATE(137), - [sym_verbatim] = STATE(137), - [sym__todo_highlights] = STATE(137), - [sym_todo] = STATE(137), - [sym_note] = STATE(137), - [sym__symbol_fallback] = STATE(137), - [aux_sym__text] = STATE(131), - [aux_sym__inline_repeat1] = STATE(3), + [sym__inline] = STATE(1124), + [sym__element] = STATE(7), + [sym_emphasis] = STATE(153), + [sym_emphasis_begin] = STATE(1208), + [sym_strong] = STATE(153), + [sym_strong_begin] = STATE(1209), + [sym_superscript] = STATE(153), + [sym_superscript_begin] = STATE(1210), + [sym_subscript] = STATE(153), + [sym_subscript_begin] = STATE(1211), + [sym_highlighted] = STATE(153), + [sym_highlighted_begin] = STATE(1212), + [sym_insert] = STATE(153), + [sym_insert_begin] = STATE(1213), + [sym_delete] = STATE(153), + [sym_delete_begin] = STATE(1214), + [sym_hard_line_break] = STATE(153), + [sym__smart_punctuation] = STATE(153), + [sym_autolink] = STATE(153), + [sym_footnote_reference] = STATE(153), + [sym_footnote_marker_begin] = STATE(1215), + [sym__image] = STATE(153), + [sym_full_reference_image] = STATE(153), + [sym_collapsed_reference_image] = STATE(153), + [sym_inline_image] = STATE(153), + [sym_image_description] = STATE(707), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(153), + [sym_full_reference_link] = STATE(153), + [sym_collapsed_reference_link] = STATE(153), + [sym_inline_link] = STATE(153), + [sym_link_text] = STATE(705), + [sym_span] = STATE(7), + [sym__bracketed_text_begin] = STATE(1267), + [sym__comment_with_spaces] = STATE(153), + [sym_raw_inline] = STATE(153), + [sym_math] = STATE(153), + [sym_verbatim] = STATE(153), + [sym__todo_highlights] = STATE(153), + [sym_todo] = STATE(153), + [sym_note] = STATE(153), + [sym__symbol_fallback] = STATE(153), + [aux_sym__text] = STATE(134), + [aux_sym__inline_repeat1] = STATE(7), [anon_sym_LBRACE_] = ACTIONS(97), [anon_sym__] = ACTIONS(99), [anon_sym_LBRACE_STAR] = ACTIONS(101), @@ -13895,446 +13844,597 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_XXX] = ACTIONS(133), [sym_fixme] = ACTIONS(117), [sym__whitespace1] = ACTIONS(135), - [sym__newline] = ACTIONS(145), + [sym__newline] = ACTIONS(137), [aux_sym__text_token1] = ACTIONS(139), [sym__verbatim_begin] = ACTIONS(141), }, [109] = { - [sym__element] = STATE(109), - [sym_emphasis] = STATE(140), - [sym_emphasis_begin] = STATE(1185), - [sym_strong] = STATE(140), - [sym_strong_begin] = STATE(1186), - [sym_superscript] = STATE(140), - [sym_superscript_begin] = STATE(1187), - [sym_subscript] = STATE(140), - [sym_subscript_begin] = STATE(1188), - [sym_highlighted] = STATE(140), - [sym_highlighted_begin] = STATE(1189), - [sym_insert] = STATE(140), - [sym_insert_begin] = STATE(1190), - [sym_delete] = STATE(140), - [sym_delete_begin] = STATE(1191), - [sym_hard_line_break] = STATE(140), - [sym__smart_punctuation] = STATE(140), - [sym_autolink] = STATE(140), - [sym_footnote_reference] = STATE(140), - [sym_footnote_marker_begin] = STATE(1192), - [sym__image] = STATE(140), - [sym_full_reference_image] = STATE(140), - [sym_collapsed_reference_image] = STATE(140), - [sym_inline_image] = STATE(140), - [sym__image_description] = STATE(700), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(140), - [sym_full_reference_link] = STATE(140), - [sym_collapsed_reference_link] = STATE(140), - [sym_inline_link] = STATE(140), - [sym_link_text] = STATE(699), - [sym_span] = STATE(109), - [sym__bracketed_text] = STATE(666), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(140), - [sym_raw_inline] = STATE(140), - [sym_math] = STATE(140), - [sym_verbatim] = STATE(140), - [sym__todo_highlights] = STATE(140), - [sym_todo] = STATE(140), - [sym_note] = STATE(140), - [sym__symbol_fallback] = STATE(140), - [aux_sym__text] = STATE(125), - [aux_sym__inline_repeat1] = STATE(109), - [anon_sym_LBRACE_] = ACTIONS(945), - [anon_sym__] = ACTIONS(948), - [anon_sym_LBRACE_STAR] = ACTIONS(951), - [anon_sym_STAR] = ACTIONS(954), - [anon_sym_LBRACE_CARET] = ACTIONS(957), - [anon_sym_CARET] = ACTIONS(957), - [anon_sym_LBRACE_TILDE] = ACTIONS(960), - [anon_sym_TILDE] = ACTIONS(960), - [anon_sym_LBRACE_EQ] = ACTIONS(963), - [anon_sym_LBRACE_PLUS] = ACTIONS(966), - [anon_sym_LBRACE_DASH] = ACTIONS(969), - [anon_sym_BSLASH] = ACTIONS(972), - [sym_quotation_marks] = ACTIONS(975), - [sym_ellipsis] = ACTIONS(975), - [sym_em_dash] = ACTIONS(975), - [sym_en_dash] = ACTIONS(978), - [sym_backslash_escape] = ACTIONS(978), - [anon_sym_LT] = ACTIONS(981), - [sym_symbol] = ACTIONS(975), - [anon_sym_LBRACK_CARET] = ACTIONS(984), - [anon_sym_BANG_LBRACK] = ACTIONS(987), - [anon_sym_LBRACK] = ACTIONS(990), - [anon_sym_DOLLAR] = ACTIONS(993), - [anon_sym_TODO] = ACTIONS(996), - [anon_sym_WIP] = ACTIONS(996), - [anon_sym_NOTE] = ACTIONS(999), - [anon_sym_INFO] = ACTIONS(999), - [anon_sym_XXX] = ACTIONS(999), - [sym_fixme] = ACTIONS(975), - [sym__whitespace1] = ACTIONS(1002), - [sym__newline] = ACTIONS(1005), - [aux_sym__text_token1] = ACTIONS(1008), - [sym__verbatim_begin] = ACTIONS(1011), - [sym_highlighted_end] = ACTIONS(540), - }, - [110] = { - [sym__element] = STATE(115), - [sym_emphasis] = STATE(134), - [sym_emphasis_begin] = STATE(1225), - [sym_strong] = STATE(134), - [sym_strong_begin] = STATE(1226), - [sym_superscript] = STATE(134), - [sym_superscript_begin] = STATE(1227), - [sym_subscript] = STATE(134), - [sym_subscript_begin] = STATE(1228), - [sym_highlighted] = STATE(134), - [sym_highlighted_begin] = STATE(1229), - [sym_insert] = STATE(134), - [sym_insert_begin] = STATE(1230), - [sym_delete] = STATE(134), - [sym_delete_begin] = STATE(1231), - [sym_hard_line_break] = STATE(134), - [sym__smart_punctuation] = STATE(134), - [sym_autolink] = STATE(134), - [sym_footnote_reference] = STATE(134), - [sym_footnote_marker_begin] = STATE(1232), - [sym__image] = STATE(134), - [sym_full_reference_image] = STATE(134), - [sym_collapsed_reference_image] = STATE(134), - [sym_inline_image] = STATE(134), - [sym__image_description] = STATE(676), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(134), - [sym_full_reference_link] = STATE(134), - [sym_collapsed_reference_link] = STATE(134), - [sym_inline_link] = STATE(134), - [sym_link_text] = STATE(695), - [sym_span] = STATE(115), - [sym__bracketed_text] = STATE(669), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(134), - [sym_raw_inline] = STATE(134), - [sym_math] = STATE(134), - [sym_verbatim] = STATE(134), - [sym__todo_highlights] = STATE(134), - [sym_todo] = STATE(134), - [sym_note] = STATE(134), - [sym__symbol_fallback] = STATE(134), - [aux_sym__text] = STATE(123), - [aux_sym__inline_repeat1] = STATE(115), - [anon_sym_LBRACE_] = ACTIONS(753), - [anon_sym__] = ACTIONS(755), - [anon_sym_LBRACE_STAR] = ACTIONS(757), - [anon_sym_STAR] = ACTIONS(759), - [anon_sym_LBRACE_CARET] = ACTIONS(761), - [anon_sym_CARET] = ACTIONS(761), - [anon_sym_LBRACE_TILDE] = ACTIONS(763), - [anon_sym_TILDE] = ACTIONS(763), - [anon_sym_LBRACE_EQ] = ACTIONS(765), - [anon_sym_LBRACE_PLUS] = ACTIONS(767), - [anon_sym_LBRACE_DASH] = ACTIONS(769), - [anon_sym_BSLASH] = ACTIONS(771), - [sym_quotation_marks] = ACTIONS(773), - [sym_ellipsis] = ACTIONS(773), - [sym_em_dash] = ACTIONS(773), - [sym_en_dash] = ACTIONS(775), - [sym_backslash_escape] = ACTIONS(775), - [anon_sym_LT] = ACTIONS(777), - [sym_symbol] = ACTIONS(773), - [anon_sym_LBRACK_CARET] = ACTIONS(779), - [anon_sym_BANG_LBRACK] = ACTIONS(781), - [anon_sym_LBRACK] = ACTIONS(783), - [anon_sym_DOLLAR] = ACTIONS(785), - [anon_sym_TODO] = ACTIONS(787), - [anon_sym_WIP] = ACTIONS(787), - [anon_sym_NOTE] = ACTIONS(789), - [anon_sym_INFO] = ACTIONS(789), - [anon_sym_XXX] = ACTIONS(789), - [sym_fixme] = ACTIONS(773), - [sym__whitespace1] = ACTIONS(791), - [sym__newline] = ACTIONS(1014), - [aux_sym__text_token1] = ACTIONS(795), - [sym__verbatim_begin] = ACTIONS(797), - [sym__bracketed_text_end] = ACTIONS(143), - }, - [111] = { - [sym__inline] = STATE(1074), - [sym__element] = STATE(14), - [sym_emphasis] = STATE(133), - [sym_emphasis_begin] = STATE(1201), - [sym_strong] = STATE(133), - [sym_strong_begin] = STATE(1202), - [sym_superscript] = STATE(133), - [sym_superscript_begin] = STATE(1203), - [sym_subscript] = STATE(133), - [sym_subscript_begin] = STATE(1204), - [sym_highlighted] = STATE(133), - [sym_highlighted_begin] = STATE(1205), - [sym_insert] = STATE(133), - [sym_insert_begin] = STATE(1206), - [sym_delete] = STATE(133), - [sym_delete_begin] = STATE(1207), - [sym_hard_line_break] = STATE(133), - [sym__smart_punctuation] = STATE(133), - [sym_autolink] = STATE(133), - [sym_footnote_reference] = STATE(133), - [sym_footnote_marker_begin] = STATE(1208), - [sym__image] = STATE(133), - [sym_full_reference_image] = STATE(133), - [sym_collapsed_reference_image] = STATE(133), - [sym_inline_image] = STATE(133), - [sym__image_description] = STATE(688), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(133), - [sym_full_reference_link] = STATE(133), - [sym_collapsed_reference_link] = STATE(133), - [sym_inline_link] = STATE(133), - [sym_link_text] = STATE(686), - [sym_span] = STATE(14), - [sym__bracketed_text] = STATE(673), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(133), - [sym_raw_inline] = STATE(133), - [sym_math] = STATE(133), - [sym_verbatim] = STATE(133), - [sym__todo_highlights] = STATE(133), - [sym_todo] = STATE(133), - [sym_note] = STATE(133), - [sym__symbol_fallback] = STATE(133), - [aux_sym__text] = STATE(129), - [aux_sym__inline_repeat1] = STATE(14), - [anon_sym_LBRACE_] = ACTIONS(423), - [anon_sym__] = ACTIONS(425), - [anon_sym_LBRACE_STAR] = ACTIONS(427), - [anon_sym_STAR] = ACTIONS(429), - [anon_sym_LBRACE_CARET] = ACTIONS(431), - [anon_sym_CARET] = ACTIONS(431), - [anon_sym_LBRACE_TILDE] = ACTIONS(433), - [anon_sym_TILDE] = ACTIONS(433), - [anon_sym_LBRACE_EQ] = ACTIONS(435), - [anon_sym_LBRACE_PLUS] = ACTIONS(437), - [anon_sym_LBRACE_DASH] = ACTIONS(439), - [anon_sym_BSLASH] = ACTIONS(441), - [sym_quotation_marks] = ACTIONS(443), - [sym_ellipsis] = ACTIONS(443), - [sym_em_dash] = ACTIONS(443), - [sym_en_dash] = ACTIONS(445), - [sym_backslash_escape] = ACTIONS(445), - [anon_sym_LT] = ACTIONS(447), - [sym_symbol] = ACTIONS(443), - [anon_sym_LBRACK_CARET] = ACTIONS(449), - [anon_sym_BANG_LBRACK] = ACTIONS(451), - [anon_sym_LBRACK] = ACTIONS(453), - [anon_sym_DOLLAR] = ACTIONS(455), - [anon_sym_TODO] = ACTIONS(457), - [anon_sym_WIP] = ACTIONS(457), - [anon_sym_NOTE] = ACTIONS(459), - [anon_sym_INFO] = ACTIONS(459), - [anon_sym_XXX] = ACTIONS(459), - [sym_fixme] = ACTIONS(443), - [sym__whitespace1] = ACTIONS(461), - [sym__newline] = ACTIONS(469), - [aux_sym__text_token1] = ACTIONS(465), - [sym__verbatim_begin] = ACTIONS(467), - }, - [112] = { - [sym__element] = STATE(112), - [sym_emphasis] = STATE(139), + [sym__inline] = STATE(1123), + [sym__element] = STATE(46), + [sym_emphasis] = STATE(147), [sym_emphasis_begin] = STATE(1217), - [sym_strong] = STATE(139), + [sym_strong] = STATE(147), [sym_strong_begin] = STATE(1218), - [sym_superscript] = STATE(139), + [sym_superscript] = STATE(147), [sym_superscript_begin] = STATE(1219), - [sym_subscript] = STATE(139), + [sym_subscript] = STATE(147), [sym_subscript_begin] = STATE(1220), - [sym_highlighted] = STATE(139), + [sym_highlighted] = STATE(147), [sym_highlighted_begin] = STATE(1221), - [sym_insert] = STATE(139), + [sym_insert] = STATE(147), [sym_insert_begin] = STATE(1222), - [sym_delete] = STATE(139), + [sym_delete] = STATE(147), [sym_delete_begin] = STATE(1223), - [sym_hard_line_break] = STATE(139), - [sym__smart_punctuation] = STATE(139), - [sym_autolink] = STATE(139), - [sym_footnote_reference] = STATE(139), + [sym_hard_line_break] = STATE(147), + [sym__smart_punctuation] = STATE(147), + [sym_autolink] = STATE(147), + [sym_footnote_reference] = STATE(147), [sym_footnote_marker_begin] = STATE(1224), - [sym__image] = STATE(139), - [sym_full_reference_image] = STATE(139), - [sym_collapsed_reference_image] = STATE(139), - [sym_inline_image] = STATE(139), - [sym__image_description] = STATE(678), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(139), - [sym_full_reference_link] = STATE(139), - [sym_collapsed_reference_link] = STATE(139), - [sym_inline_link] = STATE(139), - [sym_link_text] = STATE(677), - [sym_span] = STATE(112), - [sym__bracketed_text] = STATE(663), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(139), - [sym_raw_inline] = STATE(139), - [sym_math] = STATE(139), - [sym_verbatim] = STATE(139), - [sym__todo_highlights] = STATE(139), - [sym_todo] = STATE(139), - [sym_note] = STATE(139), - [sym__symbol_fallback] = STATE(139), - [aux_sym__text] = STATE(121), - [aux_sym__inline_repeat1] = STATE(112), - [anon_sym_LBRACE_] = ACTIONS(1016), - [anon_sym__] = ACTIONS(1019), - [anon_sym_LBRACE_STAR] = ACTIONS(1022), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_LBRACE_CARET] = ACTIONS(1028), - [anon_sym_CARET] = ACTIONS(1028), - [anon_sym_LBRACE_TILDE] = ACTIONS(1031), - [anon_sym_TILDE] = ACTIONS(1031), - [anon_sym_LBRACE_EQ] = ACTIONS(1034), - [anon_sym_LBRACE_PLUS] = ACTIONS(1037), - [anon_sym_LBRACE_DASH] = ACTIONS(1040), - [anon_sym_BSLASH] = ACTIONS(1043), - [sym_quotation_marks] = ACTIONS(1046), - [sym_ellipsis] = ACTIONS(1046), - [sym_em_dash] = ACTIONS(1046), - [sym_en_dash] = ACTIONS(1049), - [sym_backslash_escape] = ACTIONS(1049), - [anon_sym_LT] = ACTIONS(1052), - [sym_symbol] = ACTIONS(1046), - [anon_sym_LBRACK_CARET] = ACTIONS(1055), - [anon_sym_BANG_LBRACK] = ACTIONS(1058), - [anon_sym_LBRACK] = ACTIONS(1061), - [anon_sym_DOLLAR] = ACTIONS(1064), - [anon_sym_TODO] = ACTIONS(1067), - [anon_sym_WIP] = ACTIONS(1067), - [anon_sym_NOTE] = ACTIONS(1070), - [anon_sym_INFO] = ACTIONS(1070), - [anon_sym_XXX] = ACTIONS(1070), - [sym_fixme] = ACTIONS(1046), - [sym__whitespace1] = ACTIONS(1073), - [sym__newline] = ACTIONS(1076), - [aux_sym__text_token1] = ACTIONS(1079), - [sym__verbatim_begin] = ACTIONS(1082), - [sym__image_description_end] = ACTIONS(540), + [sym__image] = STATE(147), + [sym_full_reference_image] = STATE(147), + [sym_collapsed_reference_image] = STATE(147), + [sym_inline_image] = STATE(147), + [sym_image_description] = STATE(699), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(147), + [sym_full_reference_link] = STATE(147), + [sym_collapsed_reference_link] = STATE(147), + [sym_inline_link] = STATE(147), + [sym_link_text] = STATE(698), + [sym_span] = STATE(46), + [sym__bracketed_text_begin] = STATE(1268), + [sym__comment_with_spaces] = STATE(147), + [sym_raw_inline] = STATE(147), + [sym_math] = STATE(147), + [sym_verbatim] = STATE(147), + [sym__todo_highlights] = STATE(147), + [sym_todo] = STATE(147), + [sym_note] = STATE(147), + [sym__symbol_fallback] = STATE(147), + [aux_sym__text] = STATE(132), + [aux_sym__inline_repeat1] = STATE(46), + [anon_sym_LBRACE_] = ACTIONS(189), + [anon_sym__] = ACTIONS(191), + [anon_sym_LBRACE_STAR] = ACTIONS(193), + [anon_sym_STAR] = ACTIONS(195), + [anon_sym_LBRACE_CARET] = ACTIONS(197), + [anon_sym_CARET] = ACTIONS(197), + [anon_sym_LBRACE_TILDE] = ACTIONS(199), + [anon_sym_TILDE] = ACTIONS(199), + [anon_sym_LBRACE_EQ] = ACTIONS(201), + [anon_sym_LBRACE_PLUS] = ACTIONS(203), + [anon_sym_LBRACE_DASH] = ACTIONS(205), + [anon_sym_BSLASH] = ACTIONS(207), + [sym_quotation_marks] = ACTIONS(209), + [sym_ellipsis] = ACTIONS(209), + [sym_em_dash] = ACTIONS(209), + [sym_en_dash] = ACTIONS(211), + [sym_backslash_escape] = ACTIONS(211), + [anon_sym_LT] = ACTIONS(213), + [sym_symbol] = ACTIONS(209), + [anon_sym_LBRACK_CARET] = ACTIONS(215), + [anon_sym_BANG_LBRACK] = ACTIONS(217), + [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_DOLLAR] = ACTIONS(221), + [anon_sym_TODO] = ACTIONS(223), + [anon_sym_WIP] = ACTIONS(223), + [anon_sym_NOTE] = ACTIONS(225), + [anon_sym_INFO] = ACTIONS(225), + [anon_sym_XXX] = ACTIONS(225), + [sym_fixme] = ACTIONS(209), + [sym__whitespace1] = ACTIONS(227), + [sym__newline] = ACTIONS(229), + [aux_sym__text_token1] = ACTIONS(231), + [sym__verbatim_begin] = ACTIONS(233), + }, + [110] = { + [sym__inline] = STATE(1110), + [sym__element] = STATE(84), + [sym_emphasis] = STATE(146), + [sym_emphasis_begin] = STATE(1226), + [sym_strong] = STATE(146), + [sym_strong_begin] = STATE(1227), + [sym_superscript] = STATE(146), + [sym_superscript_begin] = STATE(1228), + [sym_subscript] = STATE(146), + [sym_subscript_begin] = STATE(1229), + [sym_highlighted] = STATE(146), + [sym_highlighted_begin] = STATE(1230), + [sym_insert] = STATE(146), + [sym_insert_begin] = STATE(1231), + [sym_delete] = STATE(146), + [sym_delete_begin] = STATE(1232), + [sym_hard_line_break] = STATE(146), + [sym__smart_punctuation] = STATE(146), + [sym_autolink] = STATE(146), + [sym_footnote_reference] = STATE(146), + [sym_footnote_marker_begin] = STATE(1233), + [sym__image] = STATE(146), + [sym_full_reference_image] = STATE(146), + [sym_collapsed_reference_image] = STATE(146), + [sym_inline_image] = STATE(146), + [sym_image_description] = STATE(694), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(146), + [sym_full_reference_link] = STATE(146), + [sym_collapsed_reference_link] = STATE(146), + [sym_inline_link] = STATE(146), + [sym_link_text] = STATE(693), + [sym_span] = STATE(84), + [sym__bracketed_text_begin] = STATE(1269), + [sym__comment_with_spaces] = STATE(146), + [sym_raw_inline] = STATE(146), + [sym_math] = STATE(146), + [sym_verbatim] = STATE(146), + [sym__todo_highlights] = STATE(146), + [sym_todo] = STATE(146), + [sym_note] = STATE(146), + [sym__symbol_fallback] = STATE(146), + [aux_sym__text] = STATE(141), + [aux_sym__inline_repeat1] = STATE(84), + [anon_sym_LBRACE_] = ACTIONS(356), + [anon_sym__] = ACTIONS(358), + [anon_sym_LBRACE_STAR] = ACTIONS(360), + [anon_sym_STAR] = ACTIONS(362), + [anon_sym_LBRACE_CARET] = ACTIONS(364), + [anon_sym_CARET] = ACTIONS(364), + [anon_sym_LBRACE_TILDE] = ACTIONS(366), + [anon_sym_TILDE] = ACTIONS(366), + [anon_sym_LBRACE_EQ] = ACTIONS(368), + [anon_sym_LBRACE_PLUS] = ACTIONS(370), + [anon_sym_LBRACE_DASH] = ACTIONS(372), + [anon_sym_BSLASH] = ACTIONS(374), + [sym_quotation_marks] = ACTIONS(376), + [sym_ellipsis] = ACTIONS(376), + [sym_em_dash] = ACTIONS(376), + [sym_en_dash] = ACTIONS(378), + [sym_backslash_escape] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [sym_symbol] = ACTIONS(376), + [anon_sym_LBRACK_CARET] = ACTIONS(382), + [anon_sym_BANG_LBRACK] = ACTIONS(384), + [anon_sym_LBRACK] = ACTIONS(386), + [anon_sym_DOLLAR] = ACTIONS(388), + [anon_sym_TODO] = ACTIONS(390), + [anon_sym_WIP] = ACTIONS(390), + [anon_sym_NOTE] = ACTIONS(392), + [anon_sym_INFO] = ACTIONS(392), + [anon_sym_XXX] = ACTIONS(392), + [sym_fixme] = ACTIONS(376), + [sym__whitespace1] = ACTIONS(394), + [sym__newline] = ACTIONS(396), + [aux_sym__text_token1] = ACTIONS(398), + [sym__verbatim_begin] = ACTIONS(400), + }, + [111] = { + [sym__inline_without_trailing_space] = STATE(1071), + [sym__element] = STATE(623), + [sym_emphasis] = STATE(148), + [sym_emphasis_begin] = STATE(1163), + [sym_strong] = STATE(148), + [sym_strong_begin] = STATE(1164), + [sym_superscript] = STATE(148), + [sym_superscript_begin] = STATE(1165), + [sym_subscript] = STATE(148), + [sym_subscript_begin] = STATE(1166), + [sym_highlighted] = STATE(148), + [sym_highlighted_begin] = STATE(1167), + [sym_insert] = STATE(148), + [sym_insert_begin] = STATE(1168), + [sym_delete] = STATE(148), + [sym_delete_begin] = STATE(1169), + [sym_hard_line_break] = STATE(148), + [sym__smart_punctuation] = STATE(148), + [sym_autolink] = STATE(148), + [sym_footnote_reference] = STATE(148), + [sym_footnote_marker_begin] = STATE(1170), + [sym__image] = STATE(148), + [sym_full_reference_image] = STATE(148), + [sym_collapsed_reference_image] = STATE(148), + [sym_inline_image] = STATE(148), + [sym_image_description] = STATE(712), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(148), + [sym_full_reference_link] = STATE(148), + [sym_collapsed_reference_link] = STATE(148), + [sym_inline_link] = STATE(148), + [sym_link_text] = STATE(713), + [sym_span] = STATE(623), + [sym__bracketed_text_begin] = STATE(1262), + [sym__comment_with_spaces] = STATE(148), + [sym_raw_inline] = STATE(148), + [sym_math] = STATE(148), + [sym_verbatim] = STATE(148), + [sym__todo_highlights] = STATE(148), + [sym_todo] = STATE(148), + [sym_note] = STATE(148), + [sym__symbol_fallback] = STATE(148), + [aux_sym__text] = STATE(136), + [aux_sym__inline_repeat1] = STATE(129), + [anon_sym_LBRACE_] = ACTIONS(402), + [anon_sym__] = ACTIONS(404), + [anon_sym_LBRACE_STAR] = ACTIONS(406), + [anon_sym_STAR] = ACTIONS(408), + [anon_sym_LBRACE_CARET] = ACTIONS(410), + [anon_sym_CARET] = ACTIONS(410), + [anon_sym_LBRACE_TILDE] = ACTIONS(412), + [anon_sym_TILDE] = ACTIONS(412), + [anon_sym_LBRACE_EQ] = ACTIONS(414), + [anon_sym_LBRACE_PLUS] = ACTIONS(416), + [anon_sym_LBRACE_DASH] = ACTIONS(418), + [anon_sym_BSLASH] = ACTIONS(420), + [sym_quotation_marks] = ACTIONS(422), + [sym_ellipsis] = ACTIONS(422), + [sym_em_dash] = ACTIONS(422), + [sym_en_dash] = ACTIONS(424), + [sym_backslash_escape] = ACTIONS(424), + [anon_sym_LT] = ACTIONS(426), + [sym_symbol] = ACTIONS(422), + [anon_sym_LBRACK_CARET] = ACTIONS(428), + [anon_sym_BANG_LBRACK] = ACTIONS(430), + [anon_sym_LBRACK] = ACTIONS(432), + [anon_sym_DOLLAR] = ACTIONS(434), + [anon_sym_TODO] = ACTIONS(436), + [anon_sym_WIP] = ACTIONS(436), + [anon_sym_NOTE] = ACTIONS(438), + [anon_sym_INFO] = ACTIONS(438), + [anon_sym_XXX] = ACTIONS(438), + [sym_fixme] = ACTIONS(422), + [sym__whitespace1] = ACTIONS(440), + [sym__newline] = ACTIONS(442), + [aux_sym__text_token1] = ACTIONS(444), + [sym__verbatim_begin] = ACTIONS(446), + }, + [112] = { + [sym__inline_without_trailing_space] = STATE(1070), + [sym__element] = STATE(570), + [sym_emphasis] = STATE(152), + [sym_emphasis_begin] = STATE(1172), + [sym_strong] = STATE(152), + [sym_strong_begin] = STATE(1173), + [sym_superscript] = STATE(152), + [sym_superscript_begin] = STATE(1174), + [sym_subscript] = STATE(152), + [sym_subscript_begin] = STATE(1175), + [sym_highlighted] = STATE(152), + [sym_highlighted_begin] = STATE(1176), + [sym_insert] = STATE(152), + [sym_insert_begin] = STATE(1177), + [sym_delete] = STATE(152), + [sym_delete_begin] = STATE(1178), + [sym_hard_line_break] = STATE(152), + [sym__smart_punctuation] = STATE(152), + [sym_autolink] = STATE(152), + [sym_footnote_reference] = STATE(152), + [sym_footnote_marker_begin] = STATE(1179), + [sym__image] = STATE(152), + [sym_full_reference_image] = STATE(152), + [sym_collapsed_reference_image] = STATE(152), + [sym_inline_image] = STATE(152), + [sym_image_description] = STATE(704), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(152), + [sym_full_reference_link] = STATE(152), + [sym_collapsed_reference_link] = STATE(152), + [sym_inline_link] = STATE(152), + [sym_link_text] = STATE(706), + [sym_span] = STATE(570), + [sym__bracketed_text_begin] = STATE(1263), + [sym__comment_with_spaces] = STATE(152), + [sym_raw_inline] = STATE(152), + [sym_math] = STATE(152), + [sym_verbatim] = STATE(152), + [sym__todo_highlights] = STATE(152), + [sym_todo] = STATE(152), + [sym_note] = STATE(152), + [sym__symbol_fallback] = STATE(152), + [aux_sym__text] = STATE(133), + [aux_sym__inline_repeat1] = STATE(130), + [anon_sym_LBRACE_] = ACTIONS(448), + [anon_sym__] = ACTIONS(450), + [anon_sym_LBRACE_STAR] = ACTIONS(452), + [anon_sym_STAR] = ACTIONS(454), + [anon_sym_LBRACE_CARET] = ACTIONS(456), + [anon_sym_CARET] = ACTIONS(456), + [anon_sym_LBRACE_TILDE] = ACTIONS(458), + [anon_sym_TILDE] = ACTIONS(458), + [anon_sym_LBRACE_EQ] = ACTIONS(460), + [anon_sym_LBRACE_PLUS] = ACTIONS(462), + [anon_sym_LBRACE_DASH] = ACTIONS(464), + [anon_sym_BSLASH] = ACTIONS(466), + [sym_quotation_marks] = ACTIONS(468), + [sym_ellipsis] = ACTIONS(468), + [sym_em_dash] = ACTIONS(468), + [sym_en_dash] = ACTIONS(470), + [sym_backslash_escape] = ACTIONS(470), + [anon_sym_LT] = ACTIONS(472), + [sym_symbol] = ACTIONS(468), + [anon_sym_LBRACK_CARET] = ACTIONS(474), + [anon_sym_BANG_LBRACK] = ACTIONS(476), + [anon_sym_LBRACK] = ACTIONS(478), + [anon_sym_DOLLAR] = ACTIONS(480), + [anon_sym_TODO] = ACTIONS(482), + [anon_sym_WIP] = ACTIONS(482), + [anon_sym_NOTE] = ACTIONS(484), + [anon_sym_INFO] = ACTIONS(484), + [anon_sym_XXX] = ACTIONS(484), + [sym_fixme] = ACTIONS(468), + [sym__whitespace1] = ACTIONS(486), + [sym__newline] = ACTIONS(488), + [aux_sym__text_token1] = ACTIONS(490), + [sym__verbatim_begin] = ACTIONS(492), }, [113] = { - [sym__inline] = STATE(1059), - [sym__element] = STATE(47), - [sym_emphasis] = STATE(136), - [sym_emphasis_begin] = STATE(1209), - [sym_strong] = STATE(136), - [sym_strong_begin] = STATE(1210), - [sym_superscript] = STATE(136), - [sym_superscript_begin] = STATE(1211), - [sym_subscript] = STATE(136), - [sym_subscript_begin] = STATE(1212), - [sym_highlighted] = STATE(136), - [sym_highlighted_begin] = STATE(1213), - [sym_insert] = STATE(136), - [sym_insert_begin] = STATE(1214), - [sym_delete] = STATE(136), - [sym_delete_begin] = STATE(1215), - [sym_hard_line_break] = STATE(136), - [sym__smart_punctuation] = STATE(136), - [sym_autolink] = STATE(136), - [sym_footnote_reference] = STATE(136), - [sym_footnote_marker_begin] = STATE(1216), - [sym__image] = STATE(136), - [sym_full_reference_image] = STATE(136), - [sym_collapsed_reference_image] = STATE(136), - [sym_inline_image] = STATE(136), - [sym__image_description] = STATE(682), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(136), - [sym_full_reference_link] = STATE(136), - [sym_collapsed_reference_link] = STATE(136), - [sym_inline_link] = STATE(136), - [sym_link_text] = STATE(675), - [sym_span] = STATE(47), - [sym__bracketed_text] = STATE(674), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(136), - [sym_raw_inline] = STATE(136), - [sym_math] = STATE(136), - [sym_verbatim] = STATE(136), - [sym__todo_highlights] = STATE(136), - [sym_todo] = STATE(136), - [sym_note] = STATE(136), - [sym__symbol_fallback] = STATE(136), - [aux_sym__text] = STATE(127), - [aux_sym__inline_repeat1] = STATE(47), - [anon_sym_LBRACE_] = ACTIONS(377), - [anon_sym__] = ACTIONS(379), - [anon_sym_LBRACE_STAR] = ACTIONS(381), - [anon_sym_STAR] = ACTIONS(383), - [anon_sym_LBRACE_CARET] = ACTIONS(385), - [anon_sym_CARET] = ACTIONS(385), - [anon_sym_LBRACE_TILDE] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_LBRACE_EQ] = ACTIONS(389), - [anon_sym_LBRACE_PLUS] = ACTIONS(391), - [anon_sym_LBRACE_DASH] = ACTIONS(393), - [anon_sym_BSLASH] = ACTIONS(395), - [sym_quotation_marks] = ACTIONS(397), - [sym_ellipsis] = ACTIONS(397), - [sym_em_dash] = ACTIONS(397), - [sym_en_dash] = ACTIONS(399), - [sym_backslash_escape] = ACTIONS(399), - [anon_sym_LT] = ACTIONS(401), - [sym_symbol] = ACTIONS(397), - [anon_sym_LBRACK_CARET] = ACTIONS(403), - [anon_sym_BANG_LBRACK] = ACTIONS(405), - [anon_sym_LBRACK] = ACTIONS(407), - [anon_sym_DOLLAR] = ACTIONS(409), - [anon_sym_TODO] = ACTIONS(411), - [anon_sym_WIP] = ACTIONS(411), - [anon_sym_NOTE] = ACTIONS(413), - [anon_sym_INFO] = ACTIONS(413), - [anon_sym_XXX] = ACTIONS(413), - [sym_fixme] = ACTIONS(397), - [sym__whitespace1] = ACTIONS(415), - [sym__newline] = ACTIONS(417), - [aux_sym__text_token1] = ACTIONS(419), - [sym__verbatim_begin] = ACTIONS(421), + [sym__inline] = STATE(1063), + [sym__element] = STATE(124), + [sym_emphasis] = STATE(151), + [sym_emphasis_begin] = STATE(1181), + [sym_strong] = STATE(151), + [sym_strong_begin] = STATE(1182), + [sym_superscript] = STATE(151), + [sym_superscript_begin] = STATE(1183), + [sym_subscript] = STATE(151), + [sym_subscript_begin] = STATE(1184), + [sym_highlighted] = STATE(151), + [sym_highlighted_begin] = STATE(1185), + [sym_insert] = STATE(151), + [sym_insert_begin] = STATE(1186), + [sym_delete] = STATE(151), + [sym_delete_begin] = STATE(1187), + [sym_hard_line_break] = STATE(151), + [sym__smart_punctuation] = STATE(151), + [sym_autolink] = STATE(151), + [sym_footnote_reference] = STATE(151), + [sym_footnote_marker_begin] = STATE(1188), + [sym__image] = STATE(151), + [sym_full_reference_image] = STATE(151), + [sym_collapsed_reference_image] = STATE(151), + [sym_inline_image] = STATE(151), + [sym_image_description] = STATE(700), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(151), + [sym_full_reference_link] = STATE(151), + [sym_collapsed_reference_link] = STATE(151), + [sym_inline_link] = STATE(151), + [sym_link_text] = STATE(701), + [sym_span] = STATE(124), + [sym__bracketed_text_begin] = STATE(1264), + [sym__comment_with_spaces] = STATE(151), + [sym_raw_inline] = STATE(151), + [sym_math] = STATE(151), + [sym_verbatim] = STATE(151), + [sym__todo_highlights] = STATE(151), + [sym_todo] = STATE(151), + [sym_note] = STATE(151), + [sym__symbol_fallback] = STATE(151), + [aux_sym__text] = STATE(140), + [aux_sym__inline_repeat1] = STATE(124), + [anon_sym_LBRACE_] = ACTIONS(143), + [anon_sym__] = ACTIONS(145), + [anon_sym_LBRACE_STAR] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(149), + [anon_sym_LBRACE_CARET] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(151), + [anon_sym_LBRACE_TILDE] = ACTIONS(153), + [anon_sym_TILDE] = ACTIONS(153), + [anon_sym_LBRACE_EQ] = ACTIONS(155), + [anon_sym_LBRACE_PLUS] = ACTIONS(157), + [anon_sym_LBRACE_DASH] = ACTIONS(159), + [anon_sym_BSLASH] = ACTIONS(161), + [sym_quotation_marks] = ACTIONS(163), + [sym_ellipsis] = ACTIONS(163), + [sym_em_dash] = ACTIONS(163), + [sym_en_dash] = ACTIONS(165), + [sym_backslash_escape] = ACTIONS(165), + [anon_sym_LT] = ACTIONS(167), + [sym_symbol] = ACTIONS(163), + [anon_sym_LBRACK_CARET] = ACTIONS(169), + [anon_sym_BANG_LBRACK] = ACTIONS(171), + [anon_sym_LBRACK] = ACTIONS(173), + [anon_sym_DOLLAR] = ACTIONS(175), + [anon_sym_TODO] = ACTIONS(177), + [anon_sym_WIP] = ACTIONS(177), + [anon_sym_NOTE] = ACTIONS(179), + [anon_sym_INFO] = ACTIONS(179), + [anon_sym_XXX] = ACTIONS(179), + [sym_fixme] = ACTIONS(163), + [sym__whitespace1] = ACTIONS(181), + [sym__newline] = ACTIONS(183), + [aux_sym__text_token1] = ACTIONS(185), + [sym__verbatim_begin] = ACTIONS(187), }, [114] = { - [sym__inline] = STATE(1036), - [sym__element] = STATE(82), + [sym__inline] = STATE(1062), + [sym__element] = STATE(80), + [sym_emphasis] = STATE(145), + [sym_emphasis_begin] = STATE(1190), + [sym_strong] = STATE(145), + [sym_strong_begin] = STATE(1191), + [sym_superscript] = STATE(145), + [sym_superscript_begin] = STATE(1192), + [sym_subscript] = STATE(145), + [sym_subscript_begin] = STATE(1193), + [sym_highlighted] = STATE(145), + [sym_highlighted_begin] = STATE(1194), + [sym_insert] = STATE(145), + [sym_insert_begin] = STATE(1195), + [sym_delete] = STATE(145), + [sym_delete_begin] = STATE(1196), + [sym_hard_line_break] = STATE(145), + [sym__smart_punctuation] = STATE(145), + [sym_autolink] = STATE(145), + [sym_footnote_reference] = STATE(145), + [sym_footnote_marker_begin] = STATE(1197), + [sym__image] = STATE(145), + [sym_full_reference_image] = STATE(145), + [sym_collapsed_reference_image] = STATE(145), + [sym_inline_image] = STATE(145), + [sym_image_description] = STATE(696), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(145), + [sym_full_reference_link] = STATE(145), + [sym_collapsed_reference_link] = STATE(145), + [sym_inline_link] = STATE(145), + [sym_link_text] = STATE(691), + [sym_span] = STATE(80), + [sym__bracketed_text_begin] = STATE(1265), + [sym__comment_with_spaces] = STATE(145), + [sym_raw_inline] = STATE(145), + [sym_math] = STATE(145), + [sym_verbatim] = STATE(145), + [sym__todo_highlights] = STATE(145), + [sym_todo] = STATE(145), + [sym_note] = STATE(145), + [sym__symbol_fallback] = STATE(145), + [aux_sym__text] = STATE(138), + [aux_sym__inline_repeat1] = STATE(80), + [anon_sym_LBRACE_] = ACTIONS(542), + [anon_sym__] = ACTIONS(544), + [anon_sym_LBRACE_STAR] = ACTIONS(546), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE_CARET] = ACTIONS(550), + [anon_sym_CARET] = ACTIONS(550), + [anon_sym_LBRACE_TILDE] = ACTIONS(552), + [anon_sym_TILDE] = ACTIONS(552), + [anon_sym_LBRACE_EQ] = ACTIONS(554), + [anon_sym_LBRACE_PLUS] = ACTIONS(556), + [anon_sym_LBRACE_DASH] = ACTIONS(558), + [anon_sym_BSLASH] = ACTIONS(560), + [sym_quotation_marks] = ACTIONS(562), + [sym_ellipsis] = ACTIONS(562), + [sym_em_dash] = ACTIONS(562), + [sym_en_dash] = ACTIONS(564), + [sym_backslash_escape] = ACTIONS(564), + [anon_sym_LT] = ACTIONS(566), + [sym_symbol] = ACTIONS(562), + [anon_sym_LBRACK_CARET] = ACTIONS(568), + [anon_sym_BANG_LBRACK] = ACTIONS(570), + [anon_sym_LBRACK] = ACTIONS(572), + [anon_sym_DOLLAR] = ACTIONS(574), + [anon_sym_TODO] = ACTIONS(576), + [anon_sym_WIP] = ACTIONS(576), + [anon_sym_NOTE] = ACTIONS(578), + [anon_sym_INFO] = ACTIONS(578), + [anon_sym_XXX] = ACTIONS(578), + [sym_fixme] = ACTIONS(562), + [sym__whitespace1] = ACTIONS(580), + [sym__newline] = ACTIONS(582), + [aux_sym__text_token1] = ACTIONS(584), + [sym__verbatim_begin] = ACTIONS(586), + }, + [115] = { + [sym__inline] = STATE(1061), + [sym__element] = STATE(21), + [sym_emphasis] = STATE(149), + [sym_emphasis_begin] = STATE(1199), + [sym_strong] = STATE(149), + [sym_strong_begin] = STATE(1200), + [sym_superscript] = STATE(149), + [sym_superscript_begin] = STATE(1201), + [sym_subscript] = STATE(149), + [sym_subscript_begin] = STATE(1202), + [sym_highlighted] = STATE(149), + [sym_highlighted_begin] = STATE(1203), + [sym_insert] = STATE(149), + [sym_insert_begin] = STATE(1204), + [sym_delete] = STATE(149), + [sym_delete_begin] = STATE(1205), + [sym_hard_line_break] = STATE(149), + [sym__smart_punctuation] = STATE(149), + [sym_autolink] = STATE(149), + [sym_footnote_reference] = STATE(149), + [sym_footnote_marker_begin] = STATE(1206), + [sym__image] = STATE(149), + [sym_full_reference_image] = STATE(149), + [sym_collapsed_reference_image] = STATE(149), + [sym_inline_image] = STATE(149), + [sym_image_description] = STATE(714), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(149), + [sym_full_reference_link] = STATE(149), + [sym_collapsed_reference_link] = STATE(149), + [sym_inline_link] = STATE(149), + [sym_link_text] = STATE(710), + [sym_span] = STATE(21), + [sym__bracketed_text_begin] = STATE(1266), + [sym__comment_with_spaces] = STATE(149), + [sym_raw_inline] = STATE(149), + [sym_math] = STATE(149), + [sym_verbatim] = STATE(149), + [sym__todo_highlights] = STATE(149), + [sym_todo] = STATE(149), + [sym_note] = STATE(149), + [sym__symbol_fallback] = STATE(149), + [aux_sym__text] = STATE(142), + [aux_sym__inline_repeat1] = STATE(21), + [anon_sym_LBRACE_] = ACTIONS(494), + [anon_sym__] = ACTIONS(496), + [anon_sym_LBRACE_STAR] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(500), + [anon_sym_LBRACE_CARET] = ACTIONS(502), + [anon_sym_CARET] = ACTIONS(502), + [anon_sym_LBRACE_TILDE] = ACTIONS(504), + [anon_sym_TILDE] = ACTIONS(504), + [anon_sym_LBRACE_EQ] = ACTIONS(506), + [anon_sym_LBRACE_PLUS] = ACTIONS(508), + [anon_sym_LBRACE_DASH] = ACTIONS(510), + [anon_sym_BSLASH] = ACTIONS(512), + [sym_quotation_marks] = ACTIONS(514), + [sym_ellipsis] = ACTIONS(514), + [sym_em_dash] = ACTIONS(514), + [sym_en_dash] = ACTIONS(516), + [sym_backslash_escape] = ACTIONS(516), + [anon_sym_LT] = ACTIONS(518), + [sym_symbol] = ACTIONS(514), + [anon_sym_LBRACK_CARET] = ACTIONS(520), + [anon_sym_BANG_LBRACK] = ACTIONS(522), + [anon_sym_LBRACK] = ACTIONS(524), + [anon_sym_DOLLAR] = ACTIONS(526), + [anon_sym_TODO] = ACTIONS(528), + [anon_sym_WIP] = ACTIONS(528), + [anon_sym_NOTE] = ACTIONS(530), + [anon_sym_INFO] = ACTIONS(530), + [anon_sym_XXX] = ACTIONS(530), + [sym_fixme] = ACTIONS(514), + [sym__whitespace1] = ACTIONS(532), + [sym__newline] = ACTIONS(540), + [aux_sym__text_token1] = ACTIONS(536), + [sym__verbatim_begin] = ACTIONS(538), + }, + [116] = { + [sym__element] = STATE(122), [sym_emphasis] = STATE(143), - [sym_emphasis_begin] = STATE(1169), + [sym_emphasis_begin] = STATE(1235), [sym_strong] = STATE(143), - [sym_strong_begin] = STATE(1170), + [sym_strong_begin] = STATE(1236), [sym_superscript] = STATE(143), - [sym_superscript_begin] = STATE(1171), + [sym_superscript_begin] = STATE(1237), [sym_subscript] = STATE(143), - [sym_subscript_begin] = STATE(1172), + [sym_subscript_begin] = STATE(1238), [sym_highlighted] = STATE(143), - [sym_highlighted_begin] = STATE(1173), + [sym_highlighted_begin] = STATE(1239), [sym_insert] = STATE(143), - [sym_insert_begin] = STATE(1174), + [sym_insert_begin] = STATE(1240), [sym_delete] = STATE(143), - [sym_delete_begin] = STATE(1175), + [sym_delete_begin] = STATE(1241), [sym_hard_line_break] = STATE(143), [sym__smart_punctuation] = STATE(143), [sym_autolink] = STATE(143), [sym_footnote_reference] = STATE(143), - [sym_footnote_marker_begin] = STATE(1176), + [sym_footnote_marker_begin] = STATE(1242), [sym__image] = STATE(143), [sym_full_reference_image] = STATE(143), [sym_collapsed_reference_image] = STATE(143), [sym_inline_image] = STATE(143), - [sym__image_description] = STATE(701), - [sym__image_description_begin] = STATE(1114), + [sym_image_description] = STATE(689), + [sym__image_description_begin] = STATE(1140), [sym__link] = STATE(143), [sym_full_reference_link] = STATE(143), [sym_collapsed_reference_link] = STATE(143), [sym_inline_link] = STATE(143), [sym_link_text] = STATE(702), - [sym_span] = STATE(82), - [sym__bracketed_text] = STATE(667), - [sym__bracketed_text_begin] = STATE(1113), + [sym_span] = STATE(122), + [sym__bracketed_text_begin] = STATE(1270), [sym__comment_with_spaces] = STATE(143), [sym_raw_inline] = STATE(143), [sym_math] = STATE(143), @@ -14343,87 +14443,798 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(143), [sym_note] = STATE(143), [sym__symbol_fallback] = STATE(143), - [aux_sym__text] = STATE(126), - [aux_sym__inline_repeat1] = STATE(82), - [anon_sym_LBRACE_] = ACTIONS(285), - [anon_sym__] = ACTIONS(287), - [anon_sym_LBRACE_STAR] = ACTIONS(289), - [anon_sym_STAR] = ACTIONS(291), - [anon_sym_LBRACE_CARET] = ACTIONS(293), - [anon_sym_CARET] = ACTIONS(293), - [anon_sym_LBRACE_TILDE] = ACTIONS(295), - [anon_sym_TILDE] = ACTIONS(295), - [anon_sym_LBRACE_EQ] = ACTIONS(297), - [anon_sym_LBRACE_PLUS] = ACTIONS(299), - [anon_sym_LBRACE_DASH] = ACTIONS(301), - [anon_sym_BSLASH] = ACTIONS(303), - [sym_quotation_marks] = ACTIONS(305), - [sym_ellipsis] = ACTIONS(305), - [sym_em_dash] = ACTIONS(305), - [sym_en_dash] = ACTIONS(307), - [sym_backslash_escape] = ACTIONS(307), - [anon_sym_LT] = ACTIONS(309), - [sym_symbol] = ACTIONS(305), - [anon_sym_LBRACK_CARET] = ACTIONS(311), - [anon_sym_BANG_LBRACK] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_DOLLAR] = ACTIONS(317), - [anon_sym_TODO] = ACTIONS(319), - [anon_sym_WIP] = ACTIONS(319), - [anon_sym_NOTE] = ACTIONS(321), - [anon_sym_INFO] = ACTIONS(321), - [anon_sym_XXX] = ACTIONS(321), - [sym_fixme] = ACTIONS(305), - [sym__whitespace1] = ACTIONS(323), - [sym__newline] = ACTIONS(325), - [aux_sym__text_token1] = ACTIONS(327), - [sym__verbatim_begin] = ACTIONS(329), + [aux_sym__text] = STATE(135), + [aux_sym__inline_repeat1] = STATE(122), + [anon_sym_LBRACE_] = ACTIONS(49), + [anon_sym__] = ACTIONS(51), + [anon_sym_LBRACE_STAR] = ACTIONS(53), + [anon_sym_STAR] = ACTIONS(55), + [anon_sym_LBRACE_CARET] = ACTIONS(57), + [anon_sym_CARET] = ACTIONS(57), + [anon_sym_LBRACE_TILDE] = ACTIONS(59), + [anon_sym_TILDE] = ACTIONS(59), + [anon_sym_LBRACE_EQ] = ACTIONS(61), + [anon_sym_LBRACE_PLUS] = ACTIONS(63), + [anon_sym_LBRACE_DASH] = ACTIONS(65), + [anon_sym_BSLASH] = ACTIONS(67), + [sym_quotation_marks] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(69), + [sym_em_dash] = ACTIONS(69), + [sym_en_dash] = ACTIONS(71), + [sym_backslash_escape] = ACTIONS(71), + [anon_sym_LT] = ACTIONS(73), + [sym_symbol] = ACTIONS(69), + [anon_sym_LBRACK_CARET] = ACTIONS(75), + [anon_sym_BANG_LBRACK] = ACTIONS(77), + [anon_sym_LBRACK] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(81), + [anon_sym_TODO] = ACTIONS(83), + [anon_sym_WIP] = ACTIONS(83), + [anon_sym_NOTE] = ACTIONS(85), + [anon_sym_INFO] = ACTIONS(85), + [anon_sym_XXX] = ACTIONS(85), + [sym_fixme] = ACTIONS(69), + [sym__whitespace1] = ACTIONS(87), + [sym__newline] = ACTIONS(941), + [aux_sym__text_token1] = ACTIONS(91), + [sym__verbatim_begin] = ACTIONS(93), + [sym__image_description_end] = ACTIONS(283), }, - [115] = { - [sym__element] = STATE(115), - [sym_emphasis] = STATE(134), - [sym_emphasis_begin] = STATE(1225), - [sym_strong] = STATE(134), - [sym_strong_begin] = STATE(1226), - [sym_superscript] = STATE(134), - [sym_superscript_begin] = STATE(1227), - [sym_subscript] = STATE(134), - [sym_subscript_begin] = STATE(1228), - [sym_highlighted] = STATE(134), - [sym_highlighted_begin] = STATE(1229), - [sym_insert] = STATE(134), - [sym_insert_begin] = STATE(1230), - [sym_delete] = STATE(134), - [sym_delete_begin] = STATE(1231), - [sym_hard_line_break] = STATE(134), - [sym__smart_punctuation] = STATE(134), - [sym_autolink] = STATE(134), - [sym_footnote_reference] = STATE(134), - [sym_footnote_marker_begin] = STATE(1232), - [sym__image] = STATE(134), - [sym_full_reference_image] = STATE(134), - [sym_collapsed_reference_image] = STATE(134), - [sym_inline_image] = STATE(134), - [sym__image_description] = STATE(676), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(134), - [sym_full_reference_link] = STATE(134), - [sym_collapsed_reference_link] = STATE(134), - [sym_inline_link] = STATE(134), - [sym_link_text] = STATE(695), - [sym_span] = STATE(115), - [sym__bracketed_text] = STATE(669), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(134), - [sym_raw_inline] = STATE(134), - [sym_math] = STATE(134), - [sym_verbatim] = STATE(134), - [sym__todo_highlights] = STATE(134), - [sym_todo] = STATE(134), - [sym_note] = STATE(134), - [sym__symbol_fallback] = STATE(134), - [aux_sym__text] = STATE(123), - [aux_sym__inline_repeat1] = STATE(115), + [117] = { + [sym__inline] = STATE(1056), + [sym__element] = STATE(84), + [sym_emphasis] = STATE(146), + [sym_emphasis_begin] = STATE(1226), + [sym_strong] = STATE(146), + [sym_strong_begin] = STATE(1227), + [sym_superscript] = STATE(146), + [sym_superscript_begin] = STATE(1228), + [sym_subscript] = STATE(146), + [sym_subscript_begin] = STATE(1229), + [sym_highlighted] = STATE(146), + [sym_highlighted_begin] = STATE(1230), + [sym_insert] = STATE(146), + [sym_insert_begin] = STATE(1231), + [sym_delete] = STATE(146), + [sym_delete_begin] = STATE(1232), + [sym_hard_line_break] = STATE(146), + [sym__smart_punctuation] = STATE(146), + [sym_autolink] = STATE(146), + [sym_footnote_reference] = STATE(146), + [sym_footnote_marker_begin] = STATE(1233), + [sym__image] = STATE(146), + [sym_full_reference_image] = STATE(146), + [sym_collapsed_reference_image] = STATE(146), + [sym_inline_image] = STATE(146), + [sym_image_description] = STATE(694), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(146), + [sym_full_reference_link] = STATE(146), + [sym_collapsed_reference_link] = STATE(146), + [sym_inline_link] = STATE(146), + [sym_link_text] = STATE(693), + [sym_span] = STATE(84), + [sym__bracketed_text_begin] = STATE(1269), + [sym__comment_with_spaces] = STATE(146), + [sym_raw_inline] = STATE(146), + [sym_math] = STATE(146), + [sym_verbatim] = STATE(146), + [sym__todo_highlights] = STATE(146), + [sym_todo] = STATE(146), + [sym_note] = STATE(146), + [sym__symbol_fallback] = STATE(146), + [aux_sym__text] = STATE(141), + [aux_sym__inline_repeat1] = STATE(84), + [anon_sym_LBRACE_] = ACTIONS(356), + [anon_sym__] = ACTIONS(358), + [anon_sym_LBRACE_STAR] = ACTIONS(360), + [anon_sym_STAR] = ACTIONS(362), + [anon_sym_LBRACE_CARET] = ACTIONS(364), + [anon_sym_CARET] = ACTIONS(364), + [anon_sym_LBRACE_TILDE] = ACTIONS(366), + [anon_sym_TILDE] = ACTIONS(366), + [anon_sym_LBRACE_EQ] = ACTIONS(368), + [anon_sym_LBRACE_PLUS] = ACTIONS(370), + [anon_sym_LBRACE_DASH] = ACTIONS(372), + [anon_sym_BSLASH] = ACTIONS(374), + [sym_quotation_marks] = ACTIONS(376), + [sym_ellipsis] = ACTIONS(376), + [sym_em_dash] = ACTIONS(376), + [sym_en_dash] = ACTIONS(378), + [sym_backslash_escape] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [sym_symbol] = ACTIONS(376), + [anon_sym_LBRACK_CARET] = ACTIONS(382), + [anon_sym_BANG_LBRACK] = ACTIONS(384), + [anon_sym_LBRACK] = ACTIONS(386), + [anon_sym_DOLLAR] = ACTIONS(388), + [anon_sym_TODO] = ACTIONS(390), + [anon_sym_WIP] = ACTIONS(390), + [anon_sym_NOTE] = ACTIONS(392), + [anon_sym_INFO] = ACTIONS(392), + [anon_sym_XXX] = ACTIONS(392), + [sym_fixme] = ACTIONS(376), + [sym__whitespace1] = ACTIONS(394), + [sym__newline] = ACTIONS(396), + [aux_sym__text_token1] = ACTIONS(398), + [sym__verbatim_begin] = ACTIONS(400), + }, + [118] = { + [sym__inline] = STATE(1145), + [sym__element] = STATE(121), + [sym_emphasis] = STATE(154), + [sym_emphasis_begin] = STATE(1244), + [sym_strong] = STATE(154), + [sym_strong_begin] = STATE(1245), + [sym_superscript] = STATE(154), + [sym_superscript_begin] = STATE(1246), + [sym_subscript] = STATE(154), + [sym_subscript_begin] = STATE(1247), + [sym_highlighted] = STATE(154), + [sym_highlighted_begin] = STATE(1248), + [sym_insert] = STATE(154), + [sym_insert_begin] = STATE(1249), + [sym_delete] = STATE(154), + [sym_delete_begin] = STATE(1250), + [sym_hard_line_break] = STATE(154), + [sym__smart_punctuation] = STATE(154), + [sym_autolink] = STATE(154), + [sym_footnote_reference] = STATE(154), + [sym_footnote_marker_begin] = STATE(1251), + [sym__image] = STATE(154), + [sym_full_reference_image] = STATE(154), + [sym_collapsed_reference_image] = STATE(154), + [sym_inline_image] = STATE(154), + [sym_image_description] = STATE(686), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(154), + [sym_full_reference_link] = STATE(154), + [sym_collapsed_reference_link] = STATE(154), + [sym_inline_link] = STATE(154), + [sym_link_text] = STATE(687), + [sym_span] = STATE(121), + [sym__bracketed_text_begin] = STATE(1271), + [sym__comment_with_spaces] = STATE(154), + [sym_raw_inline] = STATE(154), + [sym_math] = STATE(154), + [sym_verbatim] = STATE(154), + [sym__todo_highlights] = STATE(154), + [sym_todo] = STATE(154), + [sym_note] = STATE(154), + [sym__symbol_fallback] = STATE(154), + [aux_sym__text] = STATE(137), + [aux_sym__inline_repeat1] = STATE(121), + [anon_sym_LBRACE_] = ACTIONS(235), + [anon_sym__] = ACTIONS(237), + [anon_sym_LBRACE_STAR] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(241), + [anon_sym_LBRACE_CARET] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(243), + [anon_sym_LBRACE_TILDE] = ACTIONS(245), + [anon_sym_TILDE] = ACTIONS(245), + [anon_sym_LBRACE_EQ] = ACTIONS(247), + [anon_sym_LBRACE_PLUS] = ACTIONS(249), + [anon_sym_LBRACE_DASH] = ACTIONS(251), + [anon_sym_BSLASH] = ACTIONS(253), + [sym_quotation_marks] = ACTIONS(255), + [sym_ellipsis] = ACTIONS(255), + [sym_em_dash] = ACTIONS(255), + [sym_en_dash] = ACTIONS(257), + [sym_backslash_escape] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(259), + [sym_symbol] = ACTIONS(255), + [anon_sym_LBRACK_CARET] = ACTIONS(261), + [anon_sym_BANG_LBRACK] = ACTIONS(263), + [anon_sym_LBRACK] = ACTIONS(265), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_TODO] = ACTIONS(269), + [anon_sym_WIP] = ACTIONS(269), + [anon_sym_NOTE] = ACTIONS(271), + [anon_sym_INFO] = ACTIONS(271), + [anon_sym_XXX] = ACTIONS(271), + [sym_fixme] = ACTIONS(255), + [sym__whitespace1] = ACTIONS(273), + [sym__newline] = ACTIONS(275), + [aux_sym__text_token1] = ACTIONS(277), + [sym__verbatim_begin] = ACTIONS(279), + }, + [119] = { + [sym__inline_without_trailing_space] = STATE(1022), + [sym__element] = STATE(623), + [sym_emphasis] = STATE(148), + [sym_emphasis_begin] = STATE(1163), + [sym_strong] = STATE(148), + [sym_strong_begin] = STATE(1164), + [sym_superscript] = STATE(148), + [sym_superscript_begin] = STATE(1165), + [sym_subscript] = STATE(148), + [sym_subscript_begin] = STATE(1166), + [sym_highlighted] = STATE(148), + [sym_highlighted_begin] = STATE(1167), + [sym_insert] = STATE(148), + [sym_insert_begin] = STATE(1168), + [sym_delete] = STATE(148), + [sym_delete_begin] = STATE(1169), + [sym_hard_line_break] = STATE(148), + [sym__smart_punctuation] = STATE(148), + [sym_autolink] = STATE(148), + [sym_footnote_reference] = STATE(148), + [sym_footnote_marker_begin] = STATE(1170), + [sym__image] = STATE(148), + [sym_full_reference_image] = STATE(148), + [sym_collapsed_reference_image] = STATE(148), + [sym_inline_image] = STATE(148), + [sym_image_description] = STATE(712), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(148), + [sym_full_reference_link] = STATE(148), + [sym_collapsed_reference_link] = STATE(148), + [sym_inline_link] = STATE(148), + [sym_link_text] = STATE(713), + [sym_span] = STATE(623), + [sym__bracketed_text_begin] = STATE(1262), + [sym__comment_with_spaces] = STATE(148), + [sym_raw_inline] = STATE(148), + [sym_math] = STATE(148), + [sym_verbatim] = STATE(148), + [sym__todo_highlights] = STATE(148), + [sym_todo] = STATE(148), + [sym_note] = STATE(148), + [sym__symbol_fallback] = STATE(148), + [aux_sym__text] = STATE(136), + [aux_sym__inline_repeat1] = STATE(129), + [anon_sym_LBRACE_] = ACTIONS(402), + [anon_sym__] = ACTIONS(404), + [anon_sym_LBRACE_STAR] = ACTIONS(406), + [anon_sym_STAR] = ACTIONS(408), + [anon_sym_LBRACE_CARET] = ACTIONS(410), + [anon_sym_CARET] = ACTIONS(410), + [anon_sym_LBRACE_TILDE] = ACTIONS(412), + [anon_sym_TILDE] = ACTIONS(412), + [anon_sym_LBRACE_EQ] = ACTIONS(414), + [anon_sym_LBRACE_PLUS] = ACTIONS(416), + [anon_sym_LBRACE_DASH] = ACTIONS(418), + [anon_sym_BSLASH] = ACTIONS(420), + [sym_quotation_marks] = ACTIONS(422), + [sym_ellipsis] = ACTIONS(422), + [sym_em_dash] = ACTIONS(422), + [sym_en_dash] = ACTIONS(424), + [sym_backslash_escape] = ACTIONS(424), + [anon_sym_LT] = ACTIONS(426), + [sym_symbol] = ACTIONS(422), + [anon_sym_LBRACK_CARET] = ACTIONS(428), + [anon_sym_BANG_LBRACK] = ACTIONS(430), + [anon_sym_LBRACK] = ACTIONS(432), + [anon_sym_DOLLAR] = ACTIONS(434), + [anon_sym_TODO] = ACTIONS(436), + [anon_sym_WIP] = ACTIONS(436), + [anon_sym_NOTE] = ACTIONS(438), + [anon_sym_INFO] = ACTIONS(438), + [anon_sym_XXX] = ACTIONS(438), + [sym_fixme] = ACTIONS(422), + [sym__whitespace1] = ACTIONS(440), + [sym__newline] = ACTIONS(442), + [aux_sym__text_token1] = ACTIONS(444), + [sym__verbatim_begin] = ACTIONS(446), + }, + [120] = { + [sym__element] = STATE(120), + [sym_emphasis] = STATE(146), + [sym_emphasis_begin] = STATE(1226), + [sym_strong] = STATE(146), + [sym_strong_begin] = STATE(1227), + [sym_superscript] = STATE(146), + [sym_superscript_begin] = STATE(1228), + [sym_subscript] = STATE(146), + [sym_subscript_begin] = STATE(1229), + [sym_highlighted] = STATE(146), + [sym_highlighted_begin] = STATE(1230), + [sym_insert] = STATE(146), + [sym_insert_begin] = STATE(1231), + [sym_delete] = STATE(146), + [sym_delete_begin] = STATE(1232), + [sym_hard_line_break] = STATE(146), + [sym__smart_punctuation] = STATE(146), + [sym_autolink] = STATE(146), + [sym_footnote_reference] = STATE(146), + [sym_footnote_marker_begin] = STATE(1233), + [sym__image] = STATE(146), + [sym_full_reference_image] = STATE(146), + [sym_collapsed_reference_image] = STATE(146), + [sym_inline_image] = STATE(146), + [sym_image_description] = STATE(694), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(146), + [sym_full_reference_link] = STATE(146), + [sym_collapsed_reference_link] = STATE(146), + [sym_inline_link] = STATE(146), + [sym_link_text] = STATE(693), + [sym_span] = STATE(120), + [sym__bracketed_text_begin] = STATE(1269), + [sym__comment_with_spaces] = STATE(146), + [sym_raw_inline] = STATE(146), + [sym_math] = STATE(146), + [sym_verbatim] = STATE(146), + [sym__todo_highlights] = STATE(146), + [sym_todo] = STATE(146), + [sym_note] = STATE(146), + [sym__symbol_fallback] = STATE(146), + [aux_sym__text] = STATE(141), + [aux_sym__inline_repeat1] = STATE(120), + [anon_sym_LBRACE_] = ACTIONS(943), + [anon_sym__] = ACTIONS(946), + [anon_sym_LBRACE_STAR] = ACTIONS(949), + [anon_sym_STAR] = ACTIONS(952), + [anon_sym_LBRACE_CARET] = ACTIONS(955), + [anon_sym_CARET] = ACTIONS(955), + [anon_sym_LBRACE_TILDE] = ACTIONS(958), + [anon_sym_TILDE] = ACTIONS(958), + [anon_sym_LBRACE_EQ] = ACTIONS(961), + [anon_sym_LBRACE_PLUS] = ACTIONS(964), + [anon_sym_LBRACE_DASH] = ACTIONS(967), + [anon_sym_BSLASH] = ACTIONS(970), + [sym_quotation_marks] = ACTIONS(973), + [sym_ellipsis] = ACTIONS(973), + [sym_em_dash] = ACTIONS(973), + [sym_en_dash] = ACTIONS(976), + [sym_backslash_escape] = ACTIONS(976), + [anon_sym_LT] = ACTIONS(979), + [sym_symbol] = ACTIONS(973), + [anon_sym_LBRACK_CARET] = ACTIONS(982), + [anon_sym_BANG_LBRACK] = ACTIONS(985), + [anon_sym_LBRACK] = ACTIONS(988), + [anon_sym_RBRACK] = ACTIONS(354), + [anon_sym_DOLLAR] = ACTIONS(991), + [anon_sym_TODO] = ACTIONS(994), + [anon_sym_WIP] = ACTIONS(994), + [anon_sym_NOTE] = ACTIONS(997), + [anon_sym_INFO] = ACTIONS(997), + [anon_sym_XXX] = ACTIONS(997), + [sym_fixme] = ACTIONS(973), + [sym__whitespace1] = ACTIONS(1000), + [sym__newline] = ACTIONS(1003), + [aux_sym__text_token1] = ACTIONS(1006), + [sym__verbatim_begin] = ACTIONS(1009), + }, + [121] = { + [sym__element] = STATE(126), + [sym_emphasis] = STATE(154), + [sym_emphasis_begin] = STATE(1244), + [sym_strong] = STATE(154), + [sym_strong_begin] = STATE(1245), + [sym_superscript] = STATE(154), + [sym_superscript_begin] = STATE(1246), + [sym_subscript] = STATE(154), + [sym_subscript_begin] = STATE(1247), + [sym_highlighted] = STATE(154), + [sym_highlighted_begin] = STATE(1248), + [sym_insert] = STATE(154), + [sym_insert_begin] = STATE(1249), + [sym_delete] = STATE(154), + [sym_delete_begin] = STATE(1250), + [sym_hard_line_break] = STATE(154), + [sym__smart_punctuation] = STATE(154), + [sym_autolink] = STATE(154), + [sym_footnote_reference] = STATE(154), + [sym_footnote_marker_begin] = STATE(1251), + [sym__image] = STATE(154), + [sym_full_reference_image] = STATE(154), + [sym_collapsed_reference_image] = STATE(154), + [sym_inline_image] = STATE(154), + [sym_image_description] = STATE(686), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(154), + [sym_full_reference_link] = STATE(154), + [sym_collapsed_reference_link] = STATE(154), + [sym_inline_link] = STATE(154), + [sym_link_text] = STATE(687), + [sym_span] = STATE(126), + [sym__bracketed_text_begin] = STATE(1271), + [sym__comment_with_spaces] = STATE(154), + [sym_raw_inline] = STATE(154), + [sym_math] = STATE(154), + [sym_verbatim] = STATE(154), + [sym__todo_highlights] = STATE(154), + [sym_todo] = STATE(154), + [sym_note] = STATE(154), + [sym__symbol_fallback] = STATE(154), + [aux_sym__text] = STATE(137), + [aux_sym__inline_repeat1] = STATE(126), + [anon_sym_LBRACE_] = ACTIONS(235), + [anon_sym__] = ACTIONS(237), + [anon_sym_LBRACE_STAR] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(241), + [anon_sym_LBRACE_CARET] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(243), + [anon_sym_LBRACE_TILDE] = ACTIONS(245), + [anon_sym_TILDE] = ACTIONS(245), + [anon_sym_LBRACE_EQ] = ACTIONS(247), + [anon_sym_LBRACE_PLUS] = ACTIONS(249), + [anon_sym_LBRACE_DASH] = ACTIONS(251), + [anon_sym_BSLASH] = ACTIONS(253), + [sym_quotation_marks] = ACTIONS(255), + [sym_ellipsis] = ACTIONS(255), + [sym_em_dash] = ACTIONS(255), + [sym_en_dash] = ACTIONS(257), + [sym_backslash_escape] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(259), + [sym_symbol] = ACTIONS(255), + [anon_sym_LBRACK_CARET] = ACTIONS(261), + [anon_sym_BANG_LBRACK] = ACTIONS(263), + [anon_sym_LBRACK] = ACTIONS(265), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_TODO] = ACTIONS(269), + [anon_sym_WIP] = ACTIONS(269), + [anon_sym_NOTE] = ACTIONS(271), + [anon_sym_INFO] = ACTIONS(271), + [anon_sym_XXX] = ACTIONS(271), + [sym_fixme] = ACTIONS(255), + [sym__whitespace1] = ACTIONS(273), + [sym__newline] = ACTIONS(1012), + [aux_sym__text_token1] = ACTIONS(277), + [sym__verbatim_begin] = ACTIONS(279), + [sym__bracketed_text_end] = ACTIONS(283), + }, + [122] = { + [sym__element] = STATE(122), + [sym_emphasis] = STATE(143), + [sym_emphasis_begin] = STATE(1235), + [sym_strong] = STATE(143), + [sym_strong_begin] = STATE(1236), + [sym_superscript] = STATE(143), + [sym_superscript_begin] = STATE(1237), + [sym_subscript] = STATE(143), + [sym_subscript_begin] = STATE(1238), + [sym_highlighted] = STATE(143), + [sym_highlighted_begin] = STATE(1239), + [sym_insert] = STATE(143), + [sym_insert_begin] = STATE(1240), + [sym_delete] = STATE(143), + [sym_delete_begin] = STATE(1241), + [sym_hard_line_break] = STATE(143), + [sym__smart_punctuation] = STATE(143), + [sym_autolink] = STATE(143), + [sym_footnote_reference] = STATE(143), + [sym_footnote_marker_begin] = STATE(1242), + [sym__image] = STATE(143), + [sym_full_reference_image] = STATE(143), + [sym_collapsed_reference_image] = STATE(143), + [sym_inline_image] = STATE(143), + [sym_image_description] = STATE(689), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(143), + [sym_full_reference_link] = STATE(143), + [sym_collapsed_reference_link] = STATE(143), + [sym_inline_link] = STATE(143), + [sym_link_text] = STATE(702), + [sym_span] = STATE(122), + [sym__bracketed_text_begin] = STATE(1270), + [sym__comment_with_spaces] = STATE(143), + [sym_raw_inline] = STATE(143), + [sym_math] = STATE(143), + [sym_verbatim] = STATE(143), + [sym__todo_highlights] = STATE(143), + [sym_todo] = STATE(143), + [sym_note] = STATE(143), + [sym__symbol_fallback] = STATE(143), + [aux_sym__text] = STATE(135), + [aux_sym__inline_repeat1] = STATE(122), + [anon_sym_LBRACE_] = ACTIONS(1014), + [anon_sym__] = ACTIONS(1017), + [anon_sym_LBRACE_STAR] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1023), + [anon_sym_LBRACE_CARET] = ACTIONS(1026), + [anon_sym_CARET] = ACTIONS(1026), + [anon_sym_LBRACE_TILDE] = ACTIONS(1029), + [anon_sym_TILDE] = ACTIONS(1029), + [anon_sym_LBRACE_EQ] = ACTIONS(1032), + [anon_sym_LBRACE_PLUS] = ACTIONS(1035), + [anon_sym_LBRACE_DASH] = ACTIONS(1038), + [anon_sym_BSLASH] = ACTIONS(1041), + [sym_quotation_marks] = ACTIONS(1044), + [sym_ellipsis] = ACTIONS(1044), + [sym_em_dash] = ACTIONS(1044), + [sym_en_dash] = ACTIONS(1047), + [sym_backslash_escape] = ACTIONS(1047), + [anon_sym_LT] = ACTIONS(1050), + [sym_symbol] = ACTIONS(1044), + [anon_sym_LBRACK_CARET] = ACTIONS(1053), + [anon_sym_BANG_LBRACK] = ACTIONS(1056), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_TODO] = ACTIONS(1065), + [anon_sym_WIP] = ACTIONS(1065), + [anon_sym_NOTE] = ACTIONS(1068), + [anon_sym_INFO] = ACTIONS(1068), + [anon_sym_XXX] = ACTIONS(1068), + [sym_fixme] = ACTIONS(1044), + [sym__whitespace1] = ACTIONS(1071), + [sym__newline] = ACTIONS(1074), + [aux_sym__text_token1] = ACTIONS(1077), + [sym__verbatim_begin] = ACTIONS(1080), + [sym__image_description_end] = ACTIONS(354), + }, + [123] = { + [sym__inline] = STATE(1010), + [sym__element] = STATE(21), + [sym_emphasis] = STATE(149), + [sym_emphasis_begin] = STATE(1199), + [sym_strong] = STATE(149), + [sym_strong_begin] = STATE(1200), + [sym_superscript] = STATE(149), + [sym_superscript_begin] = STATE(1201), + [sym_subscript] = STATE(149), + [sym_subscript_begin] = STATE(1202), + [sym_highlighted] = STATE(149), + [sym_highlighted_begin] = STATE(1203), + [sym_insert] = STATE(149), + [sym_insert_begin] = STATE(1204), + [sym_delete] = STATE(149), + [sym_delete_begin] = STATE(1205), + [sym_hard_line_break] = STATE(149), + [sym__smart_punctuation] = STATE(149), + [sym_autolink] = STATE(149), + [sym_footnote_reference] = STATE(149), + [sym_footnote_marker_begin] = STATE(1206), + [sym__image] = STATE(149), + [sym_full_reference_image] = STATE(149), + [sym_collapsed_reference_image] = STATE(149), + [sym_inline_image] = STATE(149), + [sym_image_description] = STATE(714), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(149), + [sym_full_reference_link] = STATE(149), + [sym_collapsed_reference_link] = STATE(149), + [sym_inline_link] = STATE(149), + [sym_link_text] = STATE(710), + [sym_span] = STATE(21), + [sym__bracketed_text_begin] = STATE(1266), + [sym__comment_with_spaces] = STATE(149), + [sym_raw_inline] = STATE(149), + [sym_math] = STATE(149), + [sym_verbatim] = STATE(149), + [sym__todo_highlights] = STATE(149), + [sym_todo] = STATE(149), + [sym_note] = STATE(149), + [sym__symbol_fallback] = STATE(149), + [aux_sym__text] = STATE(142), + [aux_sym__inline_repeat1] = STATE(21), + [anon_sym_LBRACE_] = ACTIONS(494), + [anon_sym__] = ACTIONS(496), + [anon_sym_LBRACE_STAR] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(500), + [anon_sym_LBRACE_CARET] = ACTIONS(502), + [anon_sym_CARET] = ACTIONS(502), + [anon_sym_LBRACE_TILDE] = ACTIONS(504), + [anon_sym_TILDE] = ACTIONS(504), + [anon_sym_LBRACE_EQ] = ACTIONS(506), + [anon_sym_LBRACE_PLUS] = ACTIONS(508), + [anon_sym_LBRACE_DASH] = ACTIONS(510), + [anon_sym_BSLASH] = ACTIONS(512), + [sym_quotation_marks] = ACTIONS(514), + [sym_ellipsis] = ACTIONS(514), + [sym_em_dash] = ACTIONS(514), + [sym_en_dash] = ACTIONS(516), + [sym_backslash_escape] = ACTIONS(516), + [anon_sym_LT] = ACTIONS(518), + [sym_symbol] = ACTIONS(514), + [anon_sym_LBRACK_CARET] = ACTIONS(520), + [anon_sym_BANG_LBRACK] = ACTIONS(522), + [anon_sym_LBRACK] = ACTIONS(524), + [anon_sym_DOLLAR] = ACTIONS(526), + [anon_sym_TODO] = ACTIONS(528), + [anon_sym_WIP] = ACTIONS(528), + [anon_sym_NOTE] = ACTIONS(530), + [anon_sym_INFO] = ACTIONS(530), + [anon_sym_XXX] = ACTIONS(530), + [sym_fixme] = ACTIONS(514), + [sym__whitespace1] = ACTIONS(532), + [sym__newline] = ACTIONS(540), + [aux_sym__text_token1] = ACTIONS(536), + [sym__verbatim_begin] = ACTIONS(538), + }, + [124] = { + [sym__element] = STATE(36), + [sym_emphasis] = STATE(151), + [sym_emphasis_begin] = STATE(1181), + [sym_strong] = STATE(151), + [sym_strong_begin] = STATE(1182), + [sym_superscript] = STATE(151), + [sym_superscript_begin] = STATE(1183), + [sym_subscript] = STATE(151), + [sym_subscript_begin] = STATE(1184), + [sym_highlighted] = STATE(151), + [sym_highlighted_begin] = STATE(1185), + [sym_insert] = STATE(151), + [sym_insert_begin] = STATE(1186), + [sym_delete] = STATE(151), + [sym_delete_begin] = STATE(1187), + [sym_hard_line_break] = STATE(151), + [sym__smart_punctuation] = STATE(151), + [sym_autolink] = STATE(151), + [sym_footnote_reference] = STATE(151), + [sym_footnote_marker_begin] = STATE(1188), + [sym__image] = STATE(151), + [sym_full_reference_image] = STATE(151), + [sym_collapsed_reference_image] = STATE(151), + [sym_inline_image] = STATE(151), + [sym_image_description] = STATE(700), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(151), + [sym_full_reference_link] = STATE(151), + [sym_collapsed_reference_link] = STATE(151), + [sym_inline_link] = STATE(151), + [sym_link_text] = STATE(701), + [sym_span] = STATE(36), + [sym__bracketed_text_begin] = STATE(1264), + [sym__comment_with_spaces] = STATE(151), + [sym_raw_inline] = STATE(151), + [sym_math] = STATE(151), + [sym_verbatim] = STATE(151), + [sym__todo_highlights] = STATE(151), + [sym_todo] = STATE(151), + [sym_note] = STATE(151), + [sym__symbol_fallback] = STATE(151), + [aux_sym__text] = STATE(140), + [aux_sym__inline_repeat1] = STATE(36), + [anon_sym_LBRACE_] = ACTIONS(143), + [anon_sym__] = ACTIONS(145), + [anon_sym_LBRACE_STAR] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(149), + [anon_sym_LBRACE_CARET] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(151), + [anon_sym_LBRACE_TILDE] = ACTIONS(153), + [anon_sym_TILDE] = ACTIONS(153), + [anon_sym_LBRACE_EQ] = ACTIONS(155), + [anon_sym_LBRACE_PLUS] = ACTIONS(157), + [anon_sym_LBRACE_DASH] = ACTIONS(159), + [anon_sym_BSLASH] = ACTIONS(161), + [sym_quotation_marks] = ACTIONS(163), + [sym_ellipsis] = ACTIONS(163), + [sym_em_dash] = ACTIONS(163), + [sym_en_dash] = ACTIONS(165), + [sym_backslash_escape] = ACTIONS(165), + [anon_sym_LT] = ACTIONS(167), + [sym_symbol] = ACTIONS(163), + [anon_sym_LBRACK_CARET] = ACTIONS(169), + [anon_sym_BANG_LBRACK] = ACTIONS(171), + [anon_sym_LBRACK] = ACTIONS(173), + [anon_sym_DOLLAR] = ACTIONS(175), + [anon_sym_TODO] = ACTIONS(177), + [anon_sym_WIP] = ACTIONS(177), + [anon_sym_NOTE] = ACTIONS(179), + [anon_sym_INFO] = ACTIONS(179), + [anon_sym_XXX] = ACTIONS(179), + [sym_fixme] = ACTIONS(163), + [sym__whitespace1] = ACTIONS(181), + [sym__newline] = ACTIONS(1083), + [aux_sym__text_token1] = ACTIONS(185), + [sym__verbatim_begin] = ACTIONS(187), + [sym_superscript_end] = ACTIONS(283), + }, + [125] = { + [sym__inline] = STATE(1011), + [sym__element] = STATE(80), + [sym_emphasis] = STATE(145), + [sym_emphasis_begin] = STATE(1190), + [sym_strong] = STATE(145), + [sym_strong_begin] = STATE(1191), + [sym_superscript] = STATE(145), + [sym_superscript_begin] = STATE(1192), + [sym_subscript] = STATE(145), + [sym_subscript_begin] = STATE(1193), + [sym_highlighted] = STATE(145), + [sym_highlighted_begin] = STATE(1194), + [sym_insert] = STATE(145), + [sym_insert_begin] = STATE(1195), + [sym_delete] = STATE(145), + [sym_delete_begin] = STATE(1196), + [sym_hard_line_break] = STATE(145), + [sym__smart_punctuation] = STATE(145), + [sym_autolink] = STATE(145), + [sym_footnote_reference] = STATE(145), + [sym_footnote_marker_begin] = STATE(1197), + [sym__image] = STATE(145), + [sym_full_reference_image] = STATE(145), + [sym_collapsed_reference_image] = STATE(145), + [sym_inline_image] = STATE(145), + [sym_image_description] = STATE(696), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(145), + [sym_full_reference_link] = STATE(145), + [sym_collapsed_reference_link] = STATE(145), + [sym_inline_link] = STATE(145), + [sym_link_text] = STATE(691), + [sym_span] = STATE(80), + [sym__bracketed_text_begin] = STATE(1265), + [sym__comment_with_spaces] = STATE(145), + [sym_raw_inline] = STATE(145), + [sym_math] = STATE(145), + [sym_verbatim] = STATE(145), + [sym__todo_highlights] = STATE(145), + [sym_todo] = STATE(145), + [sym_note] = STATE(145), + [sym__symbol_fallback] = STATE(145), + [aux_sym__text] = STATE(138), + [aux_sym__inline_repeat1] = STATE(80), + [anon_sym_LBRACE_] = ACTIONS(542), + [anon_sym__] = ACTIONS(544), + [anon_sym_LBRACE_STAR] = ACTIONS(546), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_LBRACE_CARET] = ACTIONS(550), + [anon_sym_CARET] = ACTIONS(550), + [anon_sym_LBRACE_TILDE] = ACTIONS(552), + [anon_sym_TILDE] = ACTIONS(552), + [anon_sym_LBRACE_EQ] = ACTIONS(554), + [anon_sym_LBRACE_PLUS] = ACTIONS(556), + [anon_sym_LBRACE_DASH] = ACTIONS(558), + [anon_sym_BSLASH] = ACTIONS(560), + [sym_quotation_marks] = ACTIONS(562), + [sym_ellipsis] = ACTIONS(562), + [sym_em_dash] = ACTIONS(562), + [sym_en_dash] = ACTIONS(564), + [sym_backslash_escape] = ACTIONS(564), + [anon_sym_LT] = ACTIONS(566), + [sym_symbol] = ACTIONS(562), + [anon_sym_LBRACK_CARET] = ACTIONS(568), + [anon_sym_BANG_LBRACK] = ACTIONS(570), + [anon_sym_LBRACK] = ACTIONS(572), + [anon_sym_DOLLAR] = ACTIONS(574), + [anon_sym_TODO] = ACTIONS(576), + [anon_sym_WIP] = ACTIONS(576), + [anon_sym_NOTE] = ACTIONS(578), + [anon_sym_INFO] = ACTIONS(578), + [anon_sym_XXX] = ACTIONS(578), + [sym_fixme] = ACTIONS(562), + [sym__whitespace1] = ACTIONS(580), + [sym__newline] = ACTIONS(582), + [aux_sym__text_token1] = ACTIONS(584), + [sym__verbatim_begin] = ACTIONS(586), + }, + [126] = { + [sym__element] = STATE(126), + [sym_emphasis] = STATE(154), + [sym_emphasis_begin] = STATE(1244), + [sym_strong] = STATE(154), + [sym_strong_begin] = STATE(1245), + [sym_superscript] = STATE(154), + [sym_superscript_begin] = STATE(1246), + [sym_subscript] = STATE(154), + [sym_subscript_begin] = STATE(1247), + [sym_highlighted] = STATE(154), + [sym_highlighted_begin] = STATE(1248), + [sym_insert] = STATE(154), + [sym_insert_begin] = STATE(1249), + [sym_delete] = STATE(154), + [sym_delete_begin] = STATE(1250), + [sym_hard_line_break] = STATE(154), + [sym__smart_punctuation] = STATE(154), + [sym_autolink] = STATE(154), + [sym_footnote_reference] = STATE(154), + [sym_footnote_marker_begin] = STATE(1251), + [sym__image] = STATE(154), + [sym_full_reference_image] = STATE(154), + [sym_collapsed_reference_image] = STATE(154), + [sym_inline_image] = STATE(154), + [sym_image_description] = STATE(686), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(154), + [sym_full_reference_link] = STATE(154), + [sym_collapsed_reference_link] = STATE(154), + [sym_inline_link] = STATE(154), + [sym_link_text] = STATE(687), + [sym_span] = STATE(126), + [sym__bracketed_text_begin] = STATE(1271), + [sym__comment_with_spaces] = STATE(154), + [sym_raw_inline] = STATE(154), + [sym_math] = STATE(154), + [sym_verbatim] = STATE(154), + [sym__todo_highlights] = STATE(154), + [sym_todo] = STATE(154), + [sym_note] = STATE(154), + [sym__symbol_fallback] = STATE(154), + [aux_sym__text] = STATE(137), + [aux_sym__inline_repeat1] = STATE(126), [anon_sym_LBRACE_] = ACTIONS(1085), [anon_sym__] = ACTIONS(1088), [anon_sym_LBRACE_STAR] = ACTIONS(1091), @@ -14457,404 +15268,399 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1145), [aux_sym__text_token1] = ACTIONS(1148), [sym__verbatim_begin] = ACTIONS(1151), - [sym__bracketed_text_end] = ACTIONS(540), - }, - [116] = { - [sym__inline_without_trailing_space] = STATE(1039), - [sym__element] = STATE(538), - [sym_emphasis] = STATE(141), - [sym_emphasis_begin] = STATE(1153), - [sym_strong] = STATE(141), - [sym_strong_begin] = STATE(1154), - [sym_superscript] = STATE(141), - [sym_superscript_begin] = STATE(1155), - [sym_subscript] = STATE(141), - [sym_subscript_begin] = STATE(1156), - [sym_highlighted] = STATE(141), - [sym_highlighted_begin] = STATE(1157), - [sym_insert] = STATE(141), - [sym_insert_begin] = STATE(1158), - [sym_delete] = STATE(141), - [sym_delete_begin] = STATE(1159), - [sym_hard_line_break] = STATE(141), - [sym__smart_punctuation] = STATE(141), - [sym_autolink] = STATE(141), - [sym_footnote_reference] = STATE(141), - [sym_footnote_marker_begin] = STATE(1160), - [sym__image] = STATE(141), - [sym_full_reference_image] = STATE(141), - [sym_collapsed_reference_image] = STATE(141), - [sym_inline_image] = STATE(141), - [sym__image_description] = STATE(681), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(141), - [sym_full_reference_link] = STATE(141), - [sym_collapsed_reference_link] = STATE(141), - [sym_inline_link] = STATE(141), - [sym_link_text] = STATE(680), - [sym_span] = STATE(538), - [sym__bracketed_text] = STATE(664), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(141), - [sym_raw_inline] = STATE(141), - [sym_math] = STATE(141), - [sym_verbatim] = STATE(141), - [sym__todo_highlights] = STATE(141), - [sym_todo] = STATE(141), - [sym_note] = STATE(141), - [sym__symbol_fallback] = STATE(141), - [aux_sym__text] = STATE(128), - [aux_sym__inline_repeat1] = STATE(119), - [anon_sym_LBRACE_] = ACTIONS(147), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_STAR] = ACTIONS(151), - [anon_sym_STAR] = ACTIONS(153), - [anon_sym_LBRACE_CARET] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_LBRACE_TILDE] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_LBRACE_EQ] = ACTIONS(159), - [anon_sym_LBRACE_PLUS] = ACTIONS(161), - [anon_sym_LBRACE_DASH] = ACTIONS(163), - [anon_sym_BSLASH] = ACTIONS(165), - [sym_quotation_marks] = ACTIONS(167), - [sym_ellipsis] = ACTIONS(167), - [sym_em_dash] = ACTIONS(167), - [sym_en_dash] = ACTIONS(169), - [sym_backslash_escape] = ACTIONS(169), - [anon_sym_LT] = ACTIONS(171), - [sym_symbol] = ACTIONS(167), - [anon_sym_LBRACK_CARET] = ACTIONS(173), - [anon_sym_BANG_LBRACK] = ACTIONS(175), - [anon_sym_LBRACK] = ACTIONS(177), - [anon_sym_DOLLAR] = ACTIONS(179), - [anon_sym_TODO] = ACTIONS(181), - [anon_sym_WIP] = ACTIONS(181), - [anon_sym_NOTE] = ACTIONS(183), - [anon_sym_INFO] = ACTIONS(183), - [anon_sym_XXX] = ACTIONS(183), - [sym_fixme] = ACTIONS(167), - [sym__whitespace1] = ACTIONS(185), - [sym__newline] = ACTIONS(187), - [aux_sym__text_token1] = ACTIONS(189), - [sym__verbatim_begin] = ACTIONS(191), - }, - [117] = { - [sym__inline_without_trailing_space] = STATE(1038), - [sym__element] = STATE(572), - [sym_emphasis] = STATE(138), - [sym_emphasis_begin] = STATE(1161), - [sym_strong] = STATE(138), - [sym_strong_begin] = STATE(1162), - [sym_superscript] = STATE(138), - [sym_superscript_begin] = STATE(1163), - [sym_subscript] = STATE(138), - [sym_subscript_begin] = STATE(1164), - [sym_highlighted] = STATE(138), - [sym_highlighted_begin] = STATE(1165), - [sym_insert] = STATE(138), - [sym_insert_begin] = STATE(1166), - [sym_delete] = STATE(138), - [sym_delete_begin] = STATE(1167), - [sym_hard_line_break] = STATE(138), - [sym__smart_punctuation] = STATE(138), - [sym_autolink] = STATE(138), - [sym_footnote_reference] = STATE(138), - [sym_footnote_marker_begin] = STATE(1168), - [sym__image] = STATE(138), - [sym_full_reference_image] = STATE(138), - [sym_collapsed_reference_image] = STATE(138), - [sym_inline_image] = STATE(138), - [sym__image_description] = STATE(703), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(138), - [sym_full_reference_link] = STATE(138), - [sym_collapsed_reference_link] = STATE(138), - [sym_inline_link] = STATE(138), - [sym_link_text] = STATE(697), - [sym_span] = STATE(572), - [sym__bracketed_text] = STATE(671), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(138), - [sym_raw_inline] = STATE(138), - [sym_math] = STATE(138), - [sym_verbatim] = STATE(138), - [sym__todo_highlights] = STATE(138), - [sym_todo] = STATE(138), - [sym_note] = STATE(138), - [sym__symbol_fallback] = STATE(138), - [aux_sym__text] = STATE(122), - [aux_sym__inline_repeat1] = STATE(120), - [anon_sym_LBRACE_] = ACTIONS(331), - [anon_sym__] = ACTIONS(333), - [anon_sym_LBRACE_STAR] = ACTIONS(335), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_LBRACE_CARET] = ACTIONS(339), - [anon_sym_CARET] = ACTIONS(339), - [anon_sym_LBRACE_TILDE] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_LBRACE_EQ] = ACTIONS(343), - [anon_sym_LBRACE_PLUS] = ACTIONS(345), - [anon_sym_LBRACE_DASH] = ACTIONS(347), - [anon_sym_BSLASH] = ACTIONS(349), - [sym_quotation_marks] = ACTIONS(351), - [sym_ellipsis] = ACTIONS(351), - [sym_em_dash] = ACTIONS(351), - [sym_en_dash] = ACTIONS(353), - [sym_backslash_escape] = ACTIONS(353), - [anon_sym_LT] = ACTIONS(355), - [sym_symbol] = ACTIONS(351), - [anon_sym_LBRACK_CARET] = ACTIONS(357), - [anon_sym_BANG_LBRACK] = ACTIONS(359), - [anon_sym_LBRACK] = ACTIONS(361), - [anon_sym_DOLLAR] = ACTIONS(363), - [anon_sym_TODO] = ACTIONS(365), - [anon_sym_WIP] = ACTIONS(365), - [anon_sym_NOTE] = ACTIONS(367), - [anon_sym_INFO] = ACTIONS(367), - [anon_sym_XXX] = ACTIONS(367), - [sym_fixme] = ACTIONS(351), - [sym__whitespace1] = ACTIONS(369), - [sym__newline] = ACTIONS(371), - [aux_sym__text_token1] = ACTIONS(373), - [sym__verbatim_begin] = ACTIONS(375), - }, - [118] = { - [sym__element] = STATE(118), - [sym_emphasis] = STATE(144), - [sym_emphasis_begin] = STATE(1233), - [sym_strong] = STATE(144), - [sym_strong_begin] = STATE(1234), - [sym_superscript] = STATE(144), - [sym_superscript_begin] = STATE(1235), - [sym_subscript] = STATE(144), - [sym_subscript_begin] = STATE(1236), - [sym_highlighted] = STATE(144), - [sym_highlighted_begin] = STATE(1237), - [sym_insert] = STATE(144), - [sym_insert_begin] = STATE(1238), - [sym_delete] = STATE(144), - [sym_delete_begin] = STATE(1239), - [sym_hard_line_break] = STATE(144), - [sym__smart_punctuation] = STATE(144), - [sym_autolink] = STATE(144), - [sym_footnote_reference] = STATE(144), - [sym_footnote_marker_begin] = STATE(1240), - [sym__image] = STATE(144), - [sym_full_reference_image] = STATE(144), - [sym_collapsed_reference_image] = STATE(144), - [sym_inline_image] = STATE(144), - [sym__image_description] = STATE(698), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(144), - [sym_full_reference_link] = STATE(144), - [sym_collapsed_reference_link] = STATE(144), - [sym_inline_link] = STATE(144), - [sym_link_text] = STATE(691), - [sym_span] = STATE(118), - [sym__bracketed_text] = STATE(665), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(144), - [sym_raw_inline] = STATE(144), - [sym_math] = STATE(144), - [sym_verbatim] = STATE(144), - [sym__todo_highlights] = STATE(144), - [sym_todo] = STATE(144), - [sym_note] = STATE(144), - [sym__symbol_fallback] = STATE(144), - [aux_sym__text] = STATE(132), - [aux_sym__inline_repeat1] = STATE(118), - [anon_sym_LBRACE_] = ACTIONS(1154), - [anon_sym__] = ACTIONS(1157), - [anon_sym_LBRACE_STAR] = ACTIONS(1160), - [anon_sym_STAR] = ACTIONS(1163), - [anon_sym_LBRACE_CARET] = ACTIONS(1166), - [anon_sym_CARET] = ACTIONS(1166), - [anon_sym_LBRACE_TILDE] = ACTIONS(1169), - [anon_sym_TILDE] = ACTIONS(1169), - [anon_sym_LBRACE_EQ] = ACTIONS(1172), - [anon_sym_LBRACE_PLUS] = ACTIONS(1175), - [anon_sym_LBRACE_DASH] = ACTIONS(1178), - [anon_sym_BSLASH] = ACTIONS(1181), - [sym_quotation_marks] = ACTIONS(1184), - [sym_ellipsis] = ACTIONS(1184), - [sym_em_dash] = ACTIONS(1184), - [sym_en_dash] = ACTIONS(1187), - [sym_backslash_escape] = ACTIONS(1187), - [anon_sym_LT] = ACTIONS(1190), - [sym_symbol] = ACTIONS(1184), - [anon_sym_LBRACK_CARET] = ACTIONS(1193), - [anon_sym_BANG_LBRACK] = ACTIONS(1196), - [anon_sym_LBRACK] = ACTIONS(1199), - [anon_sym_DOLLAR] = ACTIONS(1202), - [anon_sym_TODO] = ACTIONS(1205), - [anon_sym_WIP] = ACTIONS(1205), - [anon_sym_NOTE] = ACTIONS(1208), - [anon_sym_INFO] = ACTIONS(1208), - [anon_sym_XXX] = ACTIONS(1208), - [sym_fixme] = ACTIONS(1184), - [sym__whitespace1] = ACTIONS(1211), - [sym__newline] = ACTIONS(1214), - [aux_sym__text_token1] = ACTIONS(1217), - [sym__verbatim_begin] = ACTIONS(1220), - }, - [119] = { - [sym__element] = STATE(619), - [sym_emphasis] = STATE(141), - [sym_emphasis_begin] = STATE(1153), - [sym_strong] = STATE(141), - [sym_strong_begin] = STATE(1154), - [sym_superscript] = STATE(141), - [sym_superscript_begin] = STATE(1155), - [sym_subscript] = STATE(141), - [sym_subscript_begin] = STATE(1156), - [sym_highlighted] = STATE(141), - [sym_highlighted_begin] = STATE(1157), - [sym_insert] = STATE(141), - [sym_insert_begin] = STATE(1158), - [sym_delete] = STATE(141), - [sym_delete_begin] = STATE(1159), - [sym_hard_line_break] = STATE(141), - [sym__smart_punctuation] = STATE(141), - [sym_autolink] = STATE(141), - [sym_footnote_reference] = STATE(141), - [sym_footnote_marker_begin] = STATE(1160), - [sym__image] = STATE(141), - [sym_full_reference_image] = STATE(141), - [sym_collapsed_reference_image] = STATE(141), - [sym_inline_image] = STATE(141), - [sym__image_description] = STATE(681), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(141), - [sym_full_reference_link] = STATE(141), - [sym_collapsed_reference_link] = STATE(141), - [sym_inline_link] = STATE(141), - [sym_link_text] = STATE(680), - [sym_span] = STATE(619), - [sym__bracketed_text] = STATE(664), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(141), - [sym_raw_inline] = STATE(141), - [sym_math] = STATE(141), - [sym_verbatim] = STATE(141), - [sym__todo_highlights] = STATE(141), - [sym_todo] = STATE(141), - [sym_note] = STATE(141), - [sym__symbol_fallback] = STATE(141), - [aux_sym__text] = STATE(128), - [aux_sym__inline_repeat1] = STATE(118), - [anon_sym_LBRACE_] = ACTIONS(147), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_STAR] = ACTIONS(151), - [anon_sym_STAR] = ACTIONS(153), - [anon_sym_LBRACE_CARET] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_LBRACE_TILDE] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_LBRACE_EQ] = ACTIONS(159), - [anon_sym_LBRACE_PLUS] = ACTIONS(161), - [anon_sym_LBRACE_DASH] = ACTIONS(163), - [anon_sym_BSLASH] = ACTIONS(165), - [sym_quotation_marks] = ACTIONS(167), - [sym_ellipsis] = ACTIONS(167), - [sym_em_dash] = ACTIONS(167), - [sym_en_dash] = ACTIONS(169), - [sym_backslash_escape] = ACTIONS(169), - [anon_sym_LT] = ACTIONS(171), - [sym_symbol] = ACTIONS(167), - [anon_sym_LBRACK_CARET] = ACTIONS(173), - [anon_sym_BANG_LBRACK] = ACTIONS(175), - [anon_sym_LBRACK] = ACTIONS(177), - [anon_sym_DOLLAR] = ACTIONS(179), - [anon_sym_TODO] = ACTIONS(181), - [anon_sym_WIP] = ACTIONS(181), - [anon_sym_NOTE] = ACTIONS(183), - [anon_sym_INFO] = ACTIONS(183), - [anon_sym_XXX] = ACTIONS(183), - [sym_fixme] = ACTIONS(167), - [sym__whitespace1] = ACTIONS(185), - [sym__newline] = ACTIONS(1223), - [aux_sym__text_token1] = ACTIONS(189), - [sym__verbatim_begin] = ACTIONS(191), - }, - [120] = { - [sym__element] = STATE(580), - [sym_emphasis] = STATE(138), - [sym_emphasis_begin] = STATE(1161), - [sym_strong] = STATE(138), - [sym_strong_begin] = STATE(1162), - [sym_superscript] = STATE(138), - [sym_superscript_begin] = STATE(1163), - [sym_subscript] = STATE(138), - [sym_subscript_begin] = STATE(1164), - [sym_highlighted] = STATE(138), - [sym_highlighted_begin] = STATE(1165), - [sym_insert] = STATE(138), - [sym_insert_begin] = STATE(1166), - [sym_delete] = STATE(138), - [sym_delete_begin] = STATE(1167), - [sym_hard_line_break] = STATE(138), - [sym__smart_punctuation] = STATE(138), - [sym_autolink] = STATE(138), - [sym_footnote_reference] = STATE(138), - [sym_footnote_marker_begin] = STATE(1168), - [sym__image] = STATE(138), - [sym_full_reference_image] = STATE(138), - [sym_collapsed_reference_image] = STATE(138), - [sym_inline_image] = STATE(138), - [sym__image_description] = STATE(703), - [sym__image_description_begin] = STATE(1114), - [sym__link] = STATE(138), - [sym_full_reference_link] = STATE(138), - [sym_collapsed_reference_link] = STATE(138), - [sym_inline_link] = STATE(138), - [sym_link_text] = STATE(697), - [sym_span] = STATE(580), - [sym__bracketed_text] = STATE(671), - [sym__bracketed_text_begin] = STATE(1113), - [sym__comment_with_spaces] = STATE(138), - [sym_raw_inline] = STATE(138), - [sym_math] = STATE(138), - [sym_verbatim] = STATE(138), - [sym__todo_highlights] = STATE(138), - [sym_todo] = STATE(138), - [sym_note] = STATE(138), - [sym__symbol_fallback] = STATE(138), - [aux_sym__text] = STATE(122), - [aux_sym__inline_repeat1] = STATE(118), - [anon_sym_LBRACE_] = ACTIONS(331), - [anon_sym__] = ACTIONS(333), - [anon_sym_LBRACE_STAR] = ACTIONS(335), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_LBRACE_CARET] = ACTIONS(339), - [anon_sym_CARET] = ACTIONS(339), - [anon_sym_LBRACE_TILDE] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_LBRACE_EQ] = ACTIONS(343), - [anon_sym_LBRACE_PLUS] = ACTIONS(345), - [anon_sym_LBRACE_DASH] = ACTIONS(347), - [anon_sym_BSLASH] = ACTIONS(349), - [sym_quotation_marks] = ACTIONS(351), - [sym_ellipsis] = ACTIONS(351), - [sym_em_dash] = ACTIONS(351), - [sym_en_dash] = ACTIONS(353), - [sym_backslash_escape] = ACTIONS(353), - [anon_sym_LT] = ACTIONS(355), - [sym_symbol] = ACTIONS(351), - [anon_sym_LBRACK_CARET] = ACTIONS(357), - [anon_sym_BANG_LBRACK] = ACTIONS(359), - [anon_sym_LBRACK] = ACTIONS(361), - [anon_sym_DOLLAR] = ACTIONS(363), - [anon_sym_TODO] = ACTIONS(365), - [anon_sym_WIP] = ACTIONS(365), - [anon_sym_NOTE] = ACTIONS(367), - [anon_sym_INFO] = ACTIONS(367), - [anon_sym_XXX] = ACTIONS(367), - [sym_fixme] = ACTIONS(351), - [sym__whitespace1] = ACTIONS(369), - [sym__newline] = ACTIONS(1223), - [aux_sym__text_token1] = ACTIONS(373), - [sym__verbatim_begin] = ACTIONS(375), + [sym__bracketed_text_end] = ACTIONS(354), + }, + [127] = { + [sym__inline] = STATE(1012), + [sym__element] = STATE(124), + [sym_emphasis] = STATE(151), + [sym_emphasis_begin] = STATE(1181), + [sym_strong] = STATE(151), + [sym_strong_begin] = STATE(1182), + [sym_superscript] = STATE(151), + [sym_superscript_begin] = STATE(1183), + [sym_subscript] = STATE(151), + [sym_subscript_begin] = STATE(1184), + [sym_highlighted] = STATE(151), + [sym_highlighted_begin] = STATE(1185), + [sym_insert] = STATE(151), + [sym_insert_begin] = STATE(1186), + [sym_delete] = STATE(151), + [sym_delete_begin] = STATE(1187), + [sym_hard_line_break] = STATE(151), + [sym__smart_punctuation] = STATE(151), + [sym_autolink] = STATE(151), + [sym_footnote_reference] = STATE(151), + [sym_footnote_marker_begin] = STATE(1188), + [sym__image] = STATE(151), + [sym_full_reference_image] = STATE(151), + [sym_collapsed_reference_image] = STATE(151), + [sym_inline_image] = STATE(151), + [sym_image_description] = STATE(700), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(151), + [sym_full_reference_link] = STATE(151), + [sym_collapsed_reference_link] = STATE(151), + [sym_inline_link] = STATE(151), + [sym_link_text] = STATE(701), + [sym_span] = STATE(124), + [sym__bracketed_text_begin] = STATE(1264), + [sym__comment_with_spaces] = STATE(151), + [sym_raw_inline] = STATE(151), + [sym_math] = STATE(151), + [sym_verbatim] = STATE(151), + [sym__todo_highlights] = STATE(151), + [sym_todo] = STATE(151), + [sym_note] = STATE(151), + [sym__symbol_fallback] = STATE(151), + [aux_sym__text] = STATE(140), + [aux_sym__inline_repeat1] = STATE(124), + [anon_sym_LBRACE_] = ACTIONS(143), + [anon_sym__] = ACTIONS(145), + [anon_sym_LBRACE_STAR] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(149), + [anon_sym_LBRACE_CARET] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(151), + [anon_sym_LBRACE_TILDE] = ACTIONS(153), + [anon_sym_TILDE] = ACTIONS(153), + [anon_sym_LBRACE_EQ] = ACTIONS(155), + [anon_sym_LBRACE_PLUS] = ACTIONS(157), + [anon_sym_LBRACE_DASH] = ACTIONS(159), + [anon_sym_BSLASH] = ACTIONS(161), + [sym_quotation_marks] = ACTIONS(163), + [sym_ellipsis] = ACTIONS(163), + [sym_em_dash] = ACTIONS(163), + [sym_en_dash] = ACTIONS(165), + [sym_backslash_escape] = ACTIONS(165), + [anon_sym_LT] = ACTIONS(167), + [sym_symbol] = ACTIONS(163), + [anon_sym_LBRACK_CARET] = ACTIONS(169), + [anon_sym_BANG_LBRACK] = ACTIONS(171), + [anon_sym_LBRACK] = ACTIONS(173), + [anon_sym_DOLLAR] = ACTIONS(175), + [anon_sym_TODO] = ACTIONS(177), + [anon_sym_WIP] = ACTIONS(177), + [anon_sym_NOTE] = ACTIONS(179), + [anon_sym_INFO] = ACTIONS(179), + [anon_sym_XXX] = ACTIONS(179), + [sym_fixme] = ACTIONS(163), + [sym__whitespace1] = ACTIONS(181), + [sym__newline] = ACTIONS(183), + [aux_sym__text_token1] = ACTIONS(185), + [sym__verbatim_begin] = ACTIONS(187), + }, + [128] = { + [sym__inline_without_trailing_space] = STATE(1014), + [sym__element] = STATE(570), + [sym_emphasis] = STATE(152), + [sym_emphasis_begin] = STATE(1172), + [sym_strong] = STATE(152), + [sym_strong_begin] = STATE(1173), + [sym_superscript] = STATE(152), + [sym_superscript_begin] = STATE(1174), + [sym_subscript] = STATE(152), + [sym_subscript_begin] = STATE(1175), + [sym_highlighted] = STATE(152), + [sym_highlighted_begin] = STATE(1176), + [sym_insert] = STATE(152), + [sym_insert_begin] = STATE(1177), + [sym_delete] = STATE(152), + [sym_delete_begin] = STATE(1178), + [sym_hard_line_break] = STATE(152), + [sym__smart_punctuation] = STATE(152), + [sym_autolink] = STATE(152), + [sym_footnote_reference] = STATE(152), + [sym_footnote_marker_begin] = STATE(1179), + [sym__image] = STATE(152), + [sym_full_reference_image] = STATE(152), + [sym_collapsed_reference_image] = STATE(152), + [sym_inline_image] = STATE(152), + [sym_image_description] = STATE(704), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(152), + [sym_full_reference_link] = STATE(152), + [sym_collapsed_reference_link] = STATE(152), + [sym_inline_link] = STATE(152), + [sym_link_text] = STATE(706), + [sym_span] = STATE(570), + [sym__bracketed_text_begin] = STATE(1263), + [sym__comment_with_spaces] = STATE(152), + [sym_raw_inline] = STATE(152), + [sym_math] = STATE(152), + [sym_verbatim] = STATE(152), + [sym__todo_highlights] = STATE(152), + [sym_todo] = STATE(152), + [sym_note] = STATE(152), + [sym__symbol_fallback] = STATE(152), + [aux_sym__text] = STATE(133), + [aux_sym__inline_repeat1] = STATE(130), + [anon_sym_LBRACE_] = ACTIONS(448), + [anon_sym__] = ACTIONS(450), + [anon_sym_LBRACE_STAR] = ACTIONS(452), + [anon_sym_STAR] = ACTIONS(454), + [anon_sym_LBRACE_CARET] = ACTIONS(456), + [anon_sym_CARET] = ACTIONS(456), + [anon_sym_LBRACE_TILDE] = ACTIONS(458), + [anon_sym_TILDE] = ACTIONS(458), + [anon_sym_LBRACE_EQ] = ACTIONS(460), + [anon_sym_LBRACE_PLUS] = ACTIONS(462), + [anon_sym_LBRACE_DASH] = ACTIONS(464), + [anon_sym_BSLASH] = ACTIONS(466), + [sym_quotation_marks] = ACTIONS(468), + [sym_ellipsis] = ACTIONS(468), + [sym_em_dash] = ACTIONS(468), + [sym_en_dash] = ACTIONS(470), + [sym_backslash_escape] = ACTIONS(470), + [anon_sym_LT] = ACTIONS(472), + [sym_symbol] = ACTIONS(468), + [anon_sym_LBRACK_CARET] = ACTIONS(474), + [anon_sym_BANG_LBRACK] = ACTIONS(476), + [anon_sym_LBRACK] = ACTIONS(478), + [anon_sym_DOLLAR] = ACTIONS(480), + [anon_sym_TODO] = ACTIONS(482), + [anon_sym_WIP] = ACTIONS(482), + [anon_sym_NOTE] = ACTIONS(484), + [anon_sym_INFO] = ACTIONS(484), + [anon_sym_XXX] = ACTIONS(484), + [sym_fixme] = ACTIONS(468), + [sym__whitespace1] = ACTIONS(486), + [sym__newline] = ACTIONS(488), + [aux_sym__text_token1] = ACTIONS(490), + [sym__verbatim_begin] = ACTIONS(492), + }, + [129] = { + [sym__element] = STATE(612), + [sym_emphasis] = STATE(148), + [sym_emphasis_begin] = STATE(1163), + [sym_strong] = STATE(148), + [sym_strong_begin] = STATE(1164), + [sym_superscript] = STATE(148), + [sym_superscript_begin] = STATE(1165), + [sym_subscript] = STATE(148), + [sym_subscript_begin] = STATE(1166), + [sym_highlighted] = STATE(148), + [sym_highlighted_begin] = STATE(1167), + [sym_insert] = STATE(148), + [sym_insert_begin] = STATE(1168), + [sym_delete] = STATE(148), + [sym_delete_begin] = STATE(1169), + [sym_hard_line_break] = STATE(148), + [sym__smart_punctuation] = STATE(148), + [sym_autolink] = STATE(148), + [sym_footnote_reference] = STATE(148), + [sym_footnote_marker_begin] = STATE(1170), + [sym__image] = STATE(148), + [sym_full_reference_image] = STATE(148), + [sym_collapsed_reference_image] = STATE(148), + [sym_inline_image] = STATE(148), + [sym_image_description] = STATE(712), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(148), + [sym_full_reference_link] = STATE(148), + [sym_collapsed_reference_link] = STATE(148), + [sym_inline_link] = STATE(148), + [sym_link_text] = STATE(713), + [sym_span] = STATE(612), + [sym__bracketed_text_begin] = STATE(1262), + [sym__comment_with_spaces] = STATE(148), + [sym_raw_inline] = STATE(148), + [sym_math] = STATE(148), + [sym_verbatim] = STATE(148), + [sym__todo_highlights] = STATE(148), + [sym_todo] = STATE(148), + [sym_note] = STATE(148), + [sym__symbol_fallback] = STATE(148), + [aux_sym__text] = STATE(136), + [aux_sym__inline_repeat1] = STATE(131), + [anon_sym_LBRACE_] = ACTIONS(402), + [anon_sym__] = ACTIONS(404), + [anon_sym_LBRACE_STAR] = ACTIONS(406), + [anon_sym_STAR] = ACTIONS(408), + [anon_sym_LBRACE_CARET] = ACTIONS(410), + [anon_sym_CARET] = ACTIONS(410), + [anon_sym_LBRACE_TILDE] = ACTIONS(412), + [anon_sym_TILDE] = ACTIONS(412), + [anon_sym_LBRACE_EQ] = ACTIONS(414), + [anon_sym_LBRACE_PLUS] = ACTIONS(416), + [anon_sym_LBRACE_DASH] = ACTIONS(418), + [anon_sym_BSLASH] = ACTIONS(420), + [sym_quotation_marks] = ACTIONS(422), + [sym_ellipsis] = ACTIONS(422), + [sym_em_dash] = ACTIONS(422), + [sym_en_dash] = ACTIONS(424), + [sym_backslash_escape] = ACTIONS(424), + [anon_sym_LT] = ACTIONS(426), + [sym_symbol] = ACTIONS(422), + [anon_sym_LBRACK_CARET] = ACTIONS(428), + [anon_sym_BANG_LBRACK] = ACTIONS(430), + [anon_sym_LBRACK] = ACTIONS(432), + [anon_sym_DOLLAR] = ACTIONS(434), + [anon_sym_TODO] = ACTIONS(436), + [anon_sym_WIP] = ACTIONS(436), + [anon_sym_NOTE] = ACTIONS(438), + [anon_sym_INFO] = ACTIONS(438), + [anon_sym_XXX] = ACTIONS(438), + [sym_fixme] = ACTIONS(422), + [sym__whitespace1] = ACTIONS(440), + [sym__newline] = ACTIONS(1154), + [aux_sym__text_token1] = ACTIONS(444), + [sym__verbatim_begin] = ACTIONS(446), + }, + [130] = { + [sym__element] = STATE(599), + [sym_emphasis] = STATE(152), + [sym_emphasis_begin] = STATE(1172), + [sym_strong] = STATE(152), + [sym_strong_begin] = STATE(1173), + [sym_superscript] = STATE(152), + [sym_superscript_begin] = STATE(1174), + [sym_subscript] = STATE(152), + [sym_subscript_begin] = STATE(1175), + [sym_highlighted] = STATE(152), + [sym_highlighted_begin] = STATE(1176), + [sym_insert] = STATE(152), + [sym_insert_begin] = STATE(1177), + [sym_delete] = STATE(152), + [sym_delete_begin] = STATE(1178), + [sym_hard_line_break] = STATE(152), + [sym__smart_punctuation] = STATE(152), + [sym_autolink] = STATE(152), + [sym_footnote_reference] = STATE(152), + [sym_footnote_marker_begin] = STATE(1179), + [sym__image] = STATE(152), + [sym_full_reference_image] = STATE(152), + [sym_collapsed_reference_image] = STATE(152), + [sym_inline_image] = STATE(152), + [sym_image_description] = STATE(704), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(152), + [sym_full_reference_link] = STATE(152), + [sym_collapsed_reference_link] = STATE(152), + [sym_inline_link] = STATE(152), + [sym_link_text] = STATE(706), + [sym_span] = STATE(599), + [sym__bracketed_text_begin] = STATE(1263), + [sym__comment_with_spaces] = STATE(152), + [sym_raw_inline] = STATE(152), + [sym_math] = STATE(152), + [sym_verbatim] = STATE(152), + [sym__todo_highlights] = STATE(152), + [sym_todo] = STATE(152), + [sym_note] = STATE(152), + [sym__symbol_fallback] = STATE(152), + [aux_sym__text] = STATE(133), + [aux_sym__inline_repeat1] = STATE(131), + [anon_sym_LBRACE_] = ACTIONS(448), + [anon_sym__] = ACTIONS(450), + [anon_sym_LBRACE_STAR] = ACTIONS(452), + [anon_sym_STAR] = ACTIONS(454), + [anon_sym_LBRACE_CARET] = ACTIONS(456), + [anon_sym_CARET] = ACTIONS(456), + [anon_sym_LBRACE_TILDE] = ACTIONS(458), + [anon_sym_TILDE] = ACTIONS(458), + [anon_sym_LBRACE_EQ] = ACTIONS(460), + [anon_sym_LBRACE_PLUS] = ACTIONS(462), + [anon_sym_LBRACE_DASH] = ACTIONS(464), + [anon_sym_BSLASH] = ACTIONS(466), + [sym_quotation_marks] = ACTIONS(468), + [sym_ellipsis] = ACTIONS(468), + [sym_em_dash] = ACTIONS(468), + [sym_en_dash] = ACTIONS(470), + [sym_backslash_escape] = ACTIONS(470), + [anon_sym_LT] = ACTIONS(472), + [sym_symbol] = ACTIONS(468), + [anon_sym_LBRACK_CARET] = ACTIONS(474), + [anon_sym_BANG_LBRACK] = ACTIONS(476), + [anon_sym_LBRACK] = ACTIONS(478), + [anon_sym_DOLLAR] = ACTIONS(480), + [anon_sym_TODO] = ACTIONS(482), + [anon_sym_WIP] = ACTIONS(482), + [anon_sym_NOTE] = ACTIONS(484), + [anon_sym_INFO] = ACTIONS(484), + [anon_sym_XXX] = ACTIONS(484), + [sym_fixme] = ACTIONS(468), + [sym__whitespace1] = ACTIONS(486), + [sym__newline] = ACTIONS(1154), + [aux_sym__text_token1] = ACTIONS(490), + [sym__verbatim_begin] = ACTIONS(492), + }, + [131] = { + [sym__element] = STATE(131), + [sym_emphasis] = STATE(155), + [sym_emphasis_begin] = STATE(1253), + [sym_strong] = STATE(155), + [sym_strong_begin] = STATE(1254), + [sym_superscript] = STATE(155), + [sym_superscript_begin] = STATE(1255), + [sym_subscript] = STATE(155), + [sym_subscript_begin] = STATE(1256), + [sym_highlighted] = STATE(155), + [sym_highlighted_begin] = STATE(1257), + [sym_insert] = STATE(155), + [sym_insert_begin] = STATE(1258), + [sym_delete] = STATE(155), + [sym_delete_begin] = STATE(1259), + [sym_hard_line_break] = STATE(155), + [sym__smart_punctuation] = STATE(155), + [sym_autolink] = STATE(155), + [sym_footnote_reference] = STATE(155), + [sym_footnote_marker_begin] = STATE(1260), + [sym__image] = STATE(155), + [sym_full_reference_image] = STATE(155), + [sym_collapsed_reference_image] = STATE(155), + [sym_inline_image] = STATE(155), + [sym_image_description] = STATE(708), + [sym__image_description_begin] = STATE(1140), + [sym__link] = STATE(155), + [sym_full_reference_link] = STATE(155), + [sym_collapsed_reference_link] = STATE(155), + [sym_inline_link] = STATE(155), + [sym_link_text] = STATE(711), + [sym_span] = STATE(131), + [sym__bracketed_text_begin] = STATE(1272), + [sym__comment_with_spaces] = STATE(155), + [sym_raw_inline] = STATE(155), + [sym_math] = STATE(155), + [sym_verbatim] = STATE(155), + [sym__todo_highlights] = STATE(155), + [sym_todo] = STATE(155), + [sym_note] = STATE(155), + [sym__symbol_fallback] = STATE(155), + [aux_sym__text] = STATE(144), + [aux_sym__inline_repeat1] = STATE(131), + [anon_sym_LBRACE_] = ACTIONS(1156), + [anon_sym__] = ACTIONS(1159), + [anon_sym_LBRACE_STAR] = ACTIONS(1162), + [anon_sym_STAR] = ACTIONS(1165), + [anon_sym_LBRACE_CARET] = ACTIONS(1168), + [anon_sym_CARET] = ACTIONS(1168), + [anon_sym_LBRACE_TILDE] = ACTIONS(1171), + [anon_sym_TILDE] = ACTIONS(1171), + [anon_sym_LBRACE_EQ] = ACTIONS(1174), + [anon_sym_LBRACE_PLUS] = ACTIONS(1177), + [anon_sym_LBRACE_DASH] = ACTIONS(1180), + [anon_sym_BSLASH] = ACTIONS(1183), + [sym_quotation_marks] = ACTIONS(1186), + [sym_ellipsis] = ACTIONS(1186), + [sym_em_dash] = ACTIONS(1186), + [sym_en_dash] = ACTIONS(1189), + [sym_backslash_escape] = ACTIONS(1189), + [anon_sym_LT] = ACTIONS(1192), + [sym_symbol] = ACTIONS(1186), + [anon_sym_LBRACK_CARET] = ACTIONS(1195), + [anon_sym_BANG_LBRACK] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1201), + [anon_sym_DOLLAR] = ACTIONS(1204), + [anon_sym_TODO] = ACTIONS(1207), + [anon_sym_WIP] = ACTIONS(1207), + [anon_sym_NOTE] = ACTIONS(1210), + [anon_sym_INFO] = ACTIONS(1210), + [anon_sym_XXX] = ACTIONS(1210), + [sym_fixme] = ACTIONS(1186), + [sym__whitespace1] = ACTIONS(1213), + [sym__newline] = ACTIONS(1216), + [aux_sym__text_token1] = ACTIONS(1219), + [sym__verbatim_begin] = ACTIONS(1222), }, }; @@ -14862,11 +15668,11 @@ static const uint16_t ts_small_parse_table[] = { [0] = 6, ACTIONS(1229), 1, anon_sym_LBRACE, - STATE(156), 1, + STATE(169), 1, aux_sym__text, - STATE(1109), 1, + STATE(1084), 1, sym__inline_attribute_begin, - STATE(546), 2, + STATE(578), 2, sym_inline_attribute, sym__inline_attribute_fallback, ACTIONS(1227), 5, @@ -14877,7 +15683,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__text_token1, ACTIONS(1225), 29, sym__verbatim_begin, - sym__image_description_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -14908,11 +15714,11 @@ static const uint16_t ts_small_parse_table[] = { [52] = 6, ACTIONS(1231), 1, anon_sym_LBRACE, - STATE(208), 1, + STATE(206), 1, aux_sym__text, STATE(1004), 1, sym__inline_attribute_begin, - STATE(588), 2, + STATE(629), 2, sym_inline_attribute, sym__inline_attribute_fallback, ACTIONS(1227), 5, @@ -14954,11 +15760,11 @@ static const uint16_t ts_small_parse_table[] = { [104] = 6, ACTIONS(1233), 1, anon_sym_LBRACE, - STATE(202), 1, + STATE(180), 1, aux_sym__text, - STATE(1124), 1, + STATE(1068), 1, sym__inline_attribute_begin, - STATE(547), 2, + STATE(627), 2, sym_inline_attribute, sym__inline_attribute_fallback, ACTIONS(1227), 5, @@ -14969,7 +15775,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__text_token1, ACTIONS(1225), 29, sym__verbatim_begin, - sym__bracketed_text_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15000,11 +15806,11 @@ static const uint16_t ts_small_parse_table[] = { [156] = 6, ACTIONS(1235), 1, anon_sym_LBRACE, - STATE(198), 1, + STATE(211), 1, aux_sym__text, - STATE(1034), 1, + STATE(1116), 1, sym__inline_attribute_begin, - STATE(562), 2, + STATE(560), 2, sym_inline_attribute, sym__inline_attribute_fallback, ACTIONS(1227), 5, @@ -15015,7 +15821,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__text_token1, ACTIONS(1225), 29, sym__verbatim_begin, - sym_subscript_end, + sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15046,11 +15852,11 @@ static const uint16_t ts_small_parse_table[] = { [208] = 6, ACTIONS(1237), 1, anon_sym_LBRACE, - STATE(180), 1, + STATE(201), 1, aux_sym__text, - STATE(1049), 1, + STATE(987), 1, sym__inline_attribute_begin, - STATE(621), 2, + STATE(563), 2, sym_inline_attribute, sym__inline_attribute_fallback, ACTIONS(1227), 5, @@ -15061,7 +15867,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__text_token1, ACTIONS(1225), 29, sym__verbatim_begin, - sym_highlighted_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15092,11 +15898,11 @@ static const uint16_t ts_small_parse_table[] = { [260] = 6, ACTIONS(1239), 1, anon_sym_LBRACE, - STATE(213), 1, + STATE(202), 1, aux_sym__text, - STATE(1019), 1, + STATE(1132), 1, sym__inline_attribute_begin, - STATE(543), 2, + STATE(633), 2, sym_inline_attribute, sym__inline_attribute_fallback, ACTIONS(1227), 5, @@ -15107,7 +15913,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__text_token1, ACTIONS(1225), 29, sym__verbatim_begin, - sym_superscript_end, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15138,11 +15944,11 @@ static const uint16_t ts_small_parse_table[] = { [312] = 6, ACTIONS(1241), 1, anon_sym_LBRACE, - STATE(176), 1, + STATE(213), 1, aux_sym__text, - STATE(1094), 1, + STATE(1036), 1, sym__inline_attribute_begin, - STATE(561), 2, + STATE(597), 2, sym_inline_attribute, sym__inline_attribute_fallback, ACTIONS(1227), 5, @@ -15153,6 +15959,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__text_token1, ACTIONS(1225), 29, sym__verbatim_begin, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15171,7 +15978,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -15184,11 +15990,11 @@ static const uint16_t ts_small_parse_table[] = { [364] = 6, ACTIONS(1243), 1, anon_sym_LBRACE, - STATE(166), 1, + STATE(225), 1, aux_sym__text, - STATE(988), 1, + STATE(1127), 1, sym__inline_attribute_begin, - STATE(564), 2, + STATE(562), 2, sym_inline_attribute, sym__inline_attribute_fallback, ACTIONS(1227), 5, @@ -15199,7 +16005,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__text_token1, ACTIONS(1225), 29, sym__verbatim_begin, - sym_emphasis_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15230,11 +16036,11 @@ static const uint16_t ts_small_parse_table[] = { [416] = 6, ACTIONS(1245), 1, anon_sym_LBRACE, - STATE(161), 1, + STATE(221), 1, aux_sym__text, - STATE(1079), 1, + STATE(1020), 1, sym__inline_attribute_begin, - STATE(569), 2, + STATE(552), 2, sym_inline_attribute, sym__inline_attribute_fallback, ACTIONS(1227), 5, @@ -15245,7 +16051,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__text_token1, ACTIONS(1225), 29, sym__verbatim_begin, - sym_delete_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15276,11 +16082,11 @@ static const uint16_t ts_small_parse_table[] = { [468] = 6, ACTIONS(1247), 1, anon_sym_LBRACE, - STATE(205), 1, + STATE(194), 1, aux_sym__text, - STATE(1101), 1, + STATE(1100), 1, sym__inline_attribute_begin, - STATE(550), 2, + STATE(568), 2, sym_inline_attribute, sym__inline_attribute_fallback, ACTIONS(1227), 5, @@ -15291,7 +16097,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__text_token1, ACTIONS(1225), 29, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15310,6 +16115,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -15322,11 +16128,11 @@ static const uint16_t ts_small_parse_table[] = { [520] = 6, ACTIONS(1249), 1, anon_sym_LBRACE, - STATE(171), 1, + STATE(199), 1, aux_sym__text, - STATE(1064), 1, + STATE(1052), 1, sym__inline_attribute_begin, - STATE(579), 2, + STATE(625), 2, sym_inline_attribute, sym__inline_attribute_fallback, ACTIONS(1227), 5, @@ -15337,7 +16143,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__text_token1, ACTIONS(1225), 29, sym__verbatim_begin, - sym_insert_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15365,14 +16171,12 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [572] = 6, - ACTIONS(1251), 1, + [572] = 5, + ACTIONS(1235), 1, anon_sym_LBRACE, - STATE(344), 1, - aux_sym__text, - STATE(1139), 1, + STATE(1116), 1, sym__inline_attribute_begin, - STATE(626), 2, + STATE(560), 2, sym_inline_attribute, sym__inline_attribute_fallback, ACTIONS(1227), 5, @@ -15381,8 +16185,9 @@ static const uint16_t ts_small_parse_table[] = { sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1225), 28, + ACTIONS(1225), 29, sym__verbatim_begin, + sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15410,12 +16215,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [623] = 5, - ACTIONS(1245), 1, + [621] = 6, + ACTIONS(1251), 1, anon_sym_LBRACE, - STATE(1079), 1, + STATE(389), 1, + aux_sym__text, + STATE(1148), 1, sym__inline_attribute_begin, - STATE(569), 2, + STATE(636), 2, sym_inline_attribute, sym__inline_attribute_fallback, ACTIONS(1227), 5, @@ -15424,9 +16231,8 @@ static const uint16_t ts_small_parse_table[] = { sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1225), 29, + ACTIONS(1225), 28, sym__verbatim_begin, - sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15455,11 +16261,11 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [672] = 5, - ACTIONS(1233), 1, + ACTIONS(1241), 1, anon_sym_LBRACE, - STATE(1124), 1, + STATE(1036), 1, sym__inline_attribute_begin, - STATE(547), 2, + STATE(597), 2, sym_inline_attribute, sym__inline_attribute_fallback, ACTIONS(1227), 5, @@ -15470,7 +16276,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__text_token1, ACTIONS(1225), 29, sym__verbatim_begin, - sym__bracketed_text_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15499,11 +16305,11 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [721] = 5, - ACTIONS(1235), 1, + ACTIONS(1247), 1, anon_sym_LBRACE, - STATE(1034), 1, + STATE(1100), 1, sym__inline_attribute_begin, - STATE(562), 2, + STATE(568), 2, sym_inline_attribute, sym__inline_attribute_fallback, ACTIONS(1227), 5, @@ -15514,7 +16320,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__text_token1, ACTIONS(1225), 29, sym__verbatim_begin, - sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15533,6 +16338,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -15543,11 +16349,11 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [770] = 5, - ACTIONS(1241), 1, + ACTIONS(1229), 1, anon_sym_LBRACE, - STATE(1094), 1, + STATE(1084), 1, sym__inline_attribute_begin, - STATE(561), 2, + STATE(578), 2, sym_inline_attribute, sym__inline_attribute_fallback, ACTIONS(1227), 5, @@ -15558,6 +16364,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__text_token1, ACTIONS(1225), 29, sym__verbatim_begin, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15576,7 +16383,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -15587,11 +16393,11 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [819] = 5, - ACTIONS(1249), 1, + ACTIONS(1237), 1, anon_sym_LBRACE, - STATE(1064), 1, + STATE(987), 1, sym__inline_attribute_begin, - STATE(579), 2, + STATE(563), 2, sym_inline_attribute, sym__inline_attribute_fallback, ACTIONS(1227), 5, @@ -15602,7 +16408,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__text_token1, ACTIONS(1225), 29, sym__verbatim_begin, - sym_insert_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15631,11 +16437,11 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [868] = 5, - ACTIONS(1231), 1, + ACTIONS(1249), 1, anon_sym_LBRACE, - STATE(1004), 1, + STATE(1052), 1, sym__inline_attribute_begin, - STATE(588), 2, + STATE(625), 2, sym_inline_attribute, sym__inline_attribute_fallback, ACTIONS(1227), 5, @@ -15646,7 +16452,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__text_token1, ACTIONS(1225), 29, sym__verbatim_begin, - sym_strong_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15675,11 +16481,11 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [917] = 5, - ACTIONS(1229), 1, + ACTIONS(1243), 1, anon_sym_LBRACE, - STATE(1109), 1, + STATE(1127), 1, sym__inline_attribute_begin, - STATE(546), 2, + STATE(562), 2, sym_inline_attribute, sym__inline_attribute_fallback, ACTIONS(1227), 5, @@ -15690,7 +16496,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__text_token1, ACTIONS(1225), 29, sym__verbatim_begin, - sym__image_description_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15719,11 +16525,11 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [966] = 5, - ACTIONS(1237), 1, + ACTIONS(1245), 1, anon_sym_LBRACE, - STATE(1049), 1, + STATE(1020), 1, sym__inline_attribute_begin, - STATE(621), 2, + STATE(552), 2, sym_inline_attribute, sym__inline_attribute_fallback, ACTIONS(1227), 5, @@ -15734,7 +16540,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__text_token1, ACTIONS(1225), 29, sym__verbatim_begin, - sym_highlighted_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15763,11 +16569,11 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [1015] = 5, - ACTIONS(1243), 1, + ACTIONS(1231), 1, anon_sym_LBRACE, - STATE(988), 1, + STATE(1004), 1, sym__inline_attribute_begin, - STATE(564), 2, + STATE(629), 2, sym_inline_attribute, sym__inline_attribute_fallback, ACTIONS(1227), 5, @@ -15778,7 +16584,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__text_token1, ACTIONS(1225), 29, sym__verbatim_begin, - sym_emphasis_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15807,11 +16613,11 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [1064] = 5, - ACTIONS(1247), 1, + ACTIONS(1233), 1, anon_sym_LBRACE, - STATE(1101), 1, + STATE(1068), 1, sym__inline_attribute_begin, - STATE(550), 2, + STATE(627), 2, sym_inline_attribute, sym__inline_attribute_fallback, ACTIONS(1227), 5, @@ -15822,7 +16628,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__text_token1, ACTIONS(1225), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15853,9 +16659,9 @@ static const uint16_t ts_small_parse_table[] = { [1113] = 5, ACTIONS(1239), 1, anon_sym_LBRACE, - STATE(1019), 1, + STATE(1132), 1, sym__inline_attribute_begin, - STATE(543), 2, + STATE(633), 2, sym_inline_attribute, sym__inline_attribute_fallback, ACTIONS(1227), 5, @@ -15866,7 +16672,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__text_token1, ACTIONS(1225), 29, sym__verbatim_begin, - sym_superscript_end, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15897,9 +16703,9 @@ static const uint16_t ts_small_parse_table[] = { [1162] = 5, ACTIONS(1251), 1, anon_sym_LBRACE, - STATE(1139), 1, + STATE(1148), 1, sym__inline_attribute_begin, - STATE(626), 2, + STATE(636), 2, sym_inline_attribute, sym__inline_attribute_fallback, ACTIONS(1227), 5, @@ -15940,19 +16746,19 @@ static const uint16_t ts_small_parse_table[] = { [1210] = 4, ACTIONS(1257), 1, anon_sym_LBRACE_EQ2, - STATE(275), 1, + STATE(344), 1, sym_raw_inline_attribute, ACTIONS(1255), 7, anon_sym_LBRACE_EQ, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, ACTIONS(1253), 28, sym__verbatim_begin, - sym_emphasis_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15982,19 +16788,19 @@ static const uint16_t ts_small_parse_table[] = { [1256] = 4, ACTIONS(1259), 1, anon_sym_LBRACE_EQ2, - STATE(258), 1, + STATE(329), 1, sym_raw_inline_attribute, ACTIONS(1255), 7, anon_sym_LBRACE_EQ, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, ACTIONS(1253), 28, sym__verbatim_begin, - sym_superscript_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16024,19 +16830,18 @@ static const uint16_t ts_small_parse_table[] = { [1302] = 4, ACTIONS(1261), 1, anon_sym_LBRACE_EQ2, - STATE(225), 1, + STATE(233), 1, sym_raw_inline_attribute, ACTIONS(1255), 7, anon_sym_LBRACE_EQ, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, ACTIONS(1253), 28, sym__verbatim_begin, - sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16054,6 +16859,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -16066,19 +16872,19 @@ static const uint16_t ts_small_parse_table[] = { [1348] = 4, ACTIONS(1263), 1, anon_sym_LBRACE_EQ2, - STATE(325), 1, + STATE(388), 1, sym_raw_inline_attribute, ACTIONS(1255), 7, anon_sym_LBRACE_EQ, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, ACTIONS(1253), 28, sym__verbatim_begin, - ts_builtin_sym_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16108,19 +16914,19 @@ static const uint16_t ts_small_parse_table[] = { [1394] = 4, ACTIONS(1265), 1, anon_sym_LBRACE_EQ2, - STATE(302), 1, + STATE(432), 1, sym_raw_inline_attribute, ACTIONS(1255), 7, anon_sym_LBRACE_EQ, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, ACTIONS(1253), 28, sym__verbatim_begin, - sym_subscript_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16150,19 +16956,19 @@ static const uint16_t ts_small_parse_table[] = { [1440] = 4, ACTIONS(1267), 1, anon_sym_LBRACE_EQ2, - STATE(521), 1, + STATE(451), 1, sym_raw_inline_attribute, ACTIONS(1255), 7, anon_sym_LBRACE_EQ, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, ACTIONS(1253), 28, sym__verbatim_begin, - sym__image_description_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16192,18 +16998,19 @@ static const uint16_t ts_small_parse_table[] = { [1486] = 4, ACTIONS(1269), 1, anon_sym_LBRACE_EQ2, - STATE(478), 1, + STATE(296), 1, sym_raw_inline_attribute, ACTIONS(1255), 7, anon_sym_LBRACE_EQ, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, ACTIONS(1253), 28, sym__verbatim_begin, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16221,7 +17028,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -16234,19 +17040,19 @@ static const uint16_t ts_small_parse_table[] = { [1532] = 4, ACTIONS(1271), 1, anon_sym_LBRACE_EQ2, - STATE(346), 1, + STATE(257), 1, sym_raw_inline_attribute, ACTIONS(1255), 7, anon_sym_LBRACE_EQ, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, ACTIONS(1253), 28, sym__verbatim_begin, - sym_highlighted_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16276,19 +17082,19 @@ static const uint16_t ts_small_parse_table[] = { [1578] = 4, ACTIONS(1273), 1, anon_sym_LBRACE_EQ2, - STATE(434), 1, + STATE(300), 1, sym_raw_inline_attribute, ACTIONS(1255), 7, anon_sym_LBRACE_EQ, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, ACTIONS(1253), 28, sym__verbatim_begin, - sym_delete_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16318,19 +17124,19 @@ static const uint16_t ts_small_parse_table[] = { [1624] = 4, ACTIONS(1275), 1, anon_sym_LBRACE_EQ2, - STATE(457), 1, + STATE(519), 1, sym_raw_inline_attribute, ACTIONS(1255), 7, anon_sym_LBRACE_EQ, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, ACTIONS(1253), 28, sym__verbatim_begin, - sym__bracketed_text_end, + sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16360,59 +17166,19 @@ static const uint16_t ts_small_parse_table[] = { [1670] = 4, ACTIONS(1277), 1, anon_sym_LBRACE_EQ2, - STATE(390), 1, + STATE(504), 1, sym_raw_inline_attribute, ACTIONS(1255), 7, anon_sym_LBRACE_EQ, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, ACTIONS(1253), 28, sym__verbatim_begin, - sym_insert_end, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - sym_symbol, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - sym__whitespace1, - sym__newline, - [1716] = 4, - ACTIONS(1283), 1, - aux_sym__text_token1, - STATE(156), 1, - aux_sym__text, - ACTIONS(1281), 5, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE, - anon_sym_LBRACK, - ACTIONS(1279), 29, - sym__verbatim_begin, - sym__image_description_end, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16421,7 +17187,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, - anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -16440,15 +17205,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [1761] = 3, - ACTIONS(1288), 1, + [1716] = 3, + ACTIONS(1281), 1, aux_sym_autolink_token1, - ACTIONS(1290), 4, + ACTIONS(1283), 4, sym__verbatim_begin, - sym_strong_end, + sym_subscript_end, sym__whitespace1, sym__newline, - ACTIONS(1286), 31, + ACTIONS(1279), 31, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16470,8 +17235,8 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -16480,19 +17245,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, aux_sym__text_token1, - [1804] = 3, - ACTIONS(1296), 1, - anon_sym_GT, - ACTIONS(1294), 6, + [1759] = 3, + ACTIONS(1285), 1, + sym__non_whitespace_check, + ACTIONS(1279), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1292), 29, + ACTIONS(1283), 29, sym__verbatim_begin, - sym_emphasis_end, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16520,18 +17285,20 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [1847] = 3, - ACTIONS(1298), 1, - sym__non_whitespace_check, - ACTIONS(1286), 6, + [1802] = 4, + ACTIONS(1291), 1, + aux_sym__text_token1, + STATE(169), 1, + aux_sym__text, + ACTIONS(1289), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, - aux_sym__text_token1, - ACTIONS(1290), 29, + anon_sym_LBRACE, + ACTIONS(1287), 29, sym__verbatim_begin, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16550,7 +17317,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -16560,19 +17326,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [1890] = 3, - ACTIONS(1300), 1, - sym__non_whitespace_check, - ACTIONS(1286), 6, + [1847] = 3, + ACTIONS(1298), 1, + anon_sym_GT, + ACTIONS(1296), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1290), 29, + ACTIONS(1294), 29, sym__verbatim_begin, - sym__bracketed_text_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16600,20 +17366,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [1933] = 4, - ACTIONS(1302), 1, - aux_sym__text_token1, - STATE(161), 1, - aux_sym__text, - ACTIONS(1281), 5, + [1890] = 3, + ACTIONS(1300), 1, + anon_sym_GT, + ACTIONS(1296), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(1279), 29, + anon_sym_LBRACE, + aux_sym__text_token1, + ACTIONS(1294), 29, sym__verbatim_begin, - sym_delete_end, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16641,19 +17406,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [1978] = 3, - ACTIONS(1305), 1, - anon_sym_GT, - ACTIONS(1294), 6, + [1933] = 3, + ACTIONS(1302), 1, + sym__non_whitespace_check, + ACTIONS(1279), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1292), 29, + ACTIONS(1283), 29, sym__verbatim_begin, - sym_delete_end, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16681,19 +17446,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [2021] = 3, - ACTIONS(1307), 1, - sym__non_whitespace_check, - ACTIONS(1286), 6, + [1976] = 4, + ACTIONS(1308), 1, + anon_sym_LBRACE, + STATE(463), 1, + sym_comment, + ACTIONS(1306), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1290), 29, + ACTIONS(1304), 29, sym__verbatim_begin, - sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16712,6 +17477,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -16721,19 +17487,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [2064] = 3, - ACTIONS(1309), 1, - sym__non_whitespace_check, - ACTIONS(1286), 6, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE, - anon_sym_LBRACK, - aux_sym__text_token1, - ACTIONS(1290), 29, + [2021] = 3, + ACTIONS(1310), 1, + aux_sym_autolink_token1, + ACTIONS(1283), 4, sym__verbatim_begin, - sym__bracketed_text_end, + sym_delete_end, + sym__whitespace1, + sym__newline, + ACTIONS(1279), 31, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16745,13 +17507,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, + sym_en_dash, + sym_backslash_escape, anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -16759,21 +17526,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - sym__whitespace1, - sym__newline, - [2107] = 4, - ACTIONS(1315), 1, + aux_sym__text_token1, + [2064] = 4, + ACTIONS(1312), 1, anon_sym_LBRACE, - STATE(222), 1, + STATE(547), 1, sym_comment, - ACTIONS(1313), 5, + ACTIONS(1306), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1311), 29, + ACTIONS(1304), 29, sym__verbatim_begin, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16792,7 +17559,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -16802,20 +17568,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [2152] = 4, - ACTIONS(1317), 1, - aux_sym__text_token1, - STATE(166), 1, - aux_sym__text, - ACTIONS(1281), 5, + [2109] = 3, + ACTIONS(1314), 1, + sym__non_whitespace_check, + ACTIONS(1279), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(1279), 29, + anon_sym_LBRACE, + aux_sym__text_token1, + ACTIONS(1283), 29, sym__verbatim_begin, - sym_emphasis_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16843,19 +17608,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [2197] = 3, - ACTIONS(1320), 1, + [2152] = 3, + ACTIONS(1316), 1, sym__non_whitespace_check, - ACTIONS(1286), 6, + ACTIONS(1279), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1290), 29, + ACTIONS(1283), 29, sym__verbatim_begin, - sym__image_description_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16883,15 +17648,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [2240] = 3, - ACTIONS(1322), 1, + [2195] = 3, + ACTIONS(1318), 1, aux_sym_autolink_token1, - ACTIONS(1290), 4, + ACTIONS(1283), 4, sym__verbatim_begin, - sym_delete_end, + sym__image_description_end, sym__whitespace1, sym__newline, - ACTIONS(1286), 31, + ACTIONS(1279), 31, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16913,8 +17678,8 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -16923,19 +17688,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, aux_sym__text_token1, - [2283] = 3, - ACTIONS(1324), 1, + [2238] = 3, + ACTIONS(1320), 1, sym__non_whitespace_check, - ACTIONS(1286), 6, + ACTIONS(1279), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1290), 29, + ACTIONS(1283), 29, sym__verbatim_begin, - sym_delete_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16963,19 +17728,20 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [2326] = 3, - ACTIONS(1326), 1, - sym__non_whitespace_check, - ACTIONS(1286), 6, + [2281] = 4, + ACTIONS(1322), 1, + aux_sym__text_token1, + STATE(180), 1, + aux_sym__text, + ACTIONS(1289), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, - aux_sym__text_token1, - ACTIONS(1290), 29, + anon_sym_LBRACE, + ACTIONS(1287), 29, sym__verbatim_begin, - sym_delete_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17003,18 +17769,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [2369] = 4, - ACTIONS(1328), 1, - aux_sym__text_token1, - STATE(171), 1, - aux_sym__text, - ACTIONS(1281), 5, + [2326] = 3, + ACTIONS(1325), 1, + anon_sym_GT, + ACTIONS(1296), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(1279), 29, + anon_sym_LBRACE, + aux_sym__text_token1, + ACTIONS(1294), 29, sym__verbatim_begin, sym_insert_end, anon_sym_LBRACE_, @@ -17044,19 +17809,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [2414] = 3, - ACTIONS(1331), 1, + [2369] = 3, + ACTIONS(1327), 1, anon_sym_GT, - ACTIONS(1294), 6, + ACTIONS(1296), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1292), 29, + ACTIONS(1294), 29, sym__verbatim_begin, - sym_insert_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17084,19 +17849,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [2457] = 3, - ACTIONS(1333), 1, - anon_sym_GT, - ACTIONS(1294), 6, + [2412] = 3, + ACTIONS(1329), 1, + sym__non_whitespace_check, + ACTIONS(1279), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1292), 29, + ACTIONS(1283), 29, sym__verbatim_begin, - sym__bracketed_text_end, + sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17124,18 +17889,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [2500] = 4, - ACTIONS(1335), 1, + [2455] = 4, + ACTIONS(1331), 1, anon_sym_LBRACE, - STATE(420), 1, + STATE(419), 1, sym_comment, - ACTIONS(1313), 5, + ACTIONS(1306), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1311), 29, + ACTIONS(1304), 29, sym__verbatim_begin, sym_delete_end, anon_sym_LBRACE_, @@ -17165,15 +17930,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [2545] = 3, - ACTIONS(1337), 1, - aux_sym_autolink_token1, - ACTIONS(1290), 4, + [2500] = 3, + ACTIONS(1333), 1, + sym__non_whitespace_check, + ACTIONS(1279), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE, + aux_sym__text_token1, + ACTIONS(1283), 29, sym__verbatim_begin, - sym_insert_end, - sym__whitespace1, - sym__newline, - ACTIONS(1286), 31, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17185,18 +17954,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, - sym_en_dash, - sym_backslash_escape, anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -17204,20 +17968,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - aux_sym__text_token1, - [2588] = 4, - ACTIONS(1339), 1, - aux_sym__text_token1, - STATE(176), 1, - aux_sym__text, - ACTIONS(1281), 5, + sym__whitespace1, + sym__newline, + [2543] = 3, + ACTIONS(1335), 1, + sym__non_whitespace_check, + ACTIONS(1279), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(1279), 29, + anon_sym_LBRACE, + aux_sym__text_token1, + ACTIONS(1283), 29, sym__verbatim_begin, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17236,7 +18001,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -17246,19 +18010,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [2633] = 3, - ACTIONS(1342), 1, + [2586] = 3, + ACTIONS(1337), 1, sym__non_whitespace_check, - ACTIONS(1286), 6, + ACTIONS(1279), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1290), 29, + ACTIONS(1283), 29, sym__verbatim_begin, - sym_insert_end, + sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17286,19 +18050,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [2676] = 3, - ACTIONS(1344), 1, - sym__non_whitespace_check, - ACTIONS(1286), 6, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE, - anon_sym_LBRACK, - aux_sym__text_token1, - ACTIONS(1290), 29, + [2629] = 3, + ACTIONS(1339), 1, + aux_sym_autolink_token1, + ACTIONS(1283), 4, sym__verbatim_begin, - sym_insert_end, + sym_strong_end, + sym__whitespace1, + sym__newline, + ACTIONS(1279), 31, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17310,13 +18070,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, + sym_en_dash, + sym_backslash_escape, anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -17324,21 +18089,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - sym__whitespace1, - sym__newline, - [2719] = 3, - ACTIONS(1346), 1, - sym__non_whitespace_check, - ACTIONS(1286), 6, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE, - anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1290), 29, + [2672] = 3, + ACTIONS(1341), 1, + aux_sym_autolink_token1, + ACTIONS(1283), 4, sym__verbatim_begin, - sym_emphasis_end, + sym_insert_end, + sym__whitespace1, + sym__newline, + ACTIONS(1279), 31, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17350,13 +18110,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, + sym_en_dash, + sym_backslash_escape, anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -17364,22 +18129,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - sym__whitespace1, - sym__newline, - [2762] = 4, - ACTIONS(1348), 1, aux_sym__text_token1, - STATE(180), 1, - aux_sym__text, - ACTIONS(1281), 5, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE, - anon_sym_LBRACK, - ACTIONS(1279), 29, + [2715] = 3, + ACTIONS(1343), 1, + aux_sym_autolink_token1, + ACTIONS(1283), 4, sym__verbatim_begin, - sym_highlighted_end, + sym__bracketed_text_end, + sym__whitespace1, + sym__newline, + ACTIONS(1279), 31, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17391,13 +18150,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, + sym_en_dash, + sym_backslash_escape, anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -17405,21 +18169,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - sym__whitespace1, - sym__newline, - [2807] = 3, - ACTIONS(1351), 1, - anon_sym_GT, - ACTIONS(1294), 6, + aux_sym__text_token1, + [2758] = 3, + ACTIONS(1345), 1, + sym__non_whitespace_check, + ACTIONS(1279), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1292), 29, + ACTIONS(1283), 29, sym__verbatim_begin, - sym_highlighted_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17447,19 +18210,20 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [2850] = 3, - ACTIONS(1353), 1, - sym__non_whitespace_check, - ACTIONS(1286), 6, + [2801] = 4, + ACTIONS(1347), 1, + anon_sym_LBRACE, + STATE(247), 1, + sym_comment, + ACTIONS(1306), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1290), 29, + ACTIONS(1304), 29, sym__verbatim_begin, - sym_emphasis_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17487,20 +18251,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [2893] = 4, - ACTIONS(1355), 1, - anon_sym_LBRACE, - STATE(507), 1, - sym_comment, - ACTIONS(1313), 5, + [2846] = 3, + ACTIONS(1349), 1, + sym__non_whitespace_check, + ACTIONS(1279), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1311), 29, + ACTIONS(1283), 29, sym__verbatim_begin, - sym__image_description_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17528,20 +18291,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [2938] = 4, - ACTIONS(1357), 1, - anon_sym_LBRACE, - STATE(376), 1, - sym_comment, - ACTIONS(1313), 5, + [2889] = 4, + ACTIONS(1351), 1, + aux_sym__text_token1, + STATE(194), 1, + aux_sym__text, + ACTIONS(1289), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - aux_sym__text_token1, - ACTIONS(1311), 29, + anon_sym_LBRACE, + ACTIONS(1287), 29, sym__verbatim_begin, - sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17560,6 +18322,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -17569,15 +18332,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [2983] = 3, - ACTIONS(1359), 1, - aux_sym_autolink_token1, - ACTIONS(1290), 4, + [2934] = 3, + ACTIONS(1354), 1, + sym__non_whitespace_check, + ACTIONS(1279), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE, + aux_sym__text_token1, + ACTIONS(1283), 29, sym__verbatim_begin, - sym_highlighted_end, - sym__whitespace1, - sym__newline, - ACTIONS(1286), 31, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17589,18 +18356,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, - sym_en_dash, - sym_backslash_escape, anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -17608,20 +18370,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - aux_sym__text_token1, - [3026] = 3, - ACTIONS(1361), 1, - sym__non_whitespace_check, - ACTIONS(1286), 6, + sym__whitespace1, + sym__newline, + [2977] = 3, + ACTIONS(1356), 1, + anon_sym_GT, + ACTIONS(1296), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1290), 29, + ACTIONS(1294), 29, sym__verbatim_begin, - sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17640,6 +18402,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -17649,19 +18412,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [3069] = 3, - ACTIONS(1363), 1, + [3020] = 3, + ACTIONS(1358), 1, sym__non_whitespace_check, - ACTIONS(1286), 6, + ACTIONS(1279), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1290), 29, + ACTIONS(1283), 29, sym__verbatim_begin, - sym_strong_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17689,15 +18452,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [3112] = 3, - ACTIONS(1365), 1, - aux_sym_autolink_token1, - ACTIONS(1290), 4, + [3063] = 3, + ACTIONS(1360), 1, + anon_sym_GT, + ACTIONS(1296), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE, + aux_sym__text_token1, + ACTIONS(1294), 29, sym__verbatim_begin, - sym_emphasis_end, - sym__whitespace1, - sym__newline, - ACTIONS(1286), 31, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17709,18 +18476,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, - sym_en_dash, - sym_backslash_escape, anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -17728,19 +18490,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, + sym__whitespace1, + sym__newline, + [3106] = 4, + ACTIONS(1362), 1, aux_sym__text_token1, - [3155] = 3, - ACTIONS(1367), 1, - sym__non_whitespace_check, - ACTIONS(1286), 6, + STATE(199), 1, + aux_sym__text, + ACTIONS(1289), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, - aux_sym__text_token1, - ACTIONS(1290), 29, + anon_sym_LBRACE, + ACTIONS(1287), 29, sym__verbatim_begin, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17759,7 +18524,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -17769,18 +18533,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [3198] = 3, - ACTIONS(1369), 1, + [3151] = 3, + ACTIONS(1365), 1, anon_sym_GT, - ACTIONS(1294), 6, + ACTIONS(1296), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1292), 29, + ACTIONS(1294), 29, sym__verbatim_begin, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17799,7 +18564,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -17809,19 +18573,20 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [3241] = 3, - ACTIONS(1371), 1, - sym__non_whitespace_check, - ACTIONS(1286), 6, + [3194] = 4, + ACTIONS(1367), 1, + aux_sym__text_token1, + STATE(201), 1, + aux_sym__text, + ACTIONS(1289), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, - aux_sym__text_token1, - ACTIONS(1290), 29, + anon_sym_LBRACE, + ACTIONS(1287), 29, sym__verbatim_begin, - sym_highlighted_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17849,19 +18614,20 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [3284] = 3, - ACTIONS(1373), 1, - sym__non_whitespace_check, - ACTIONS(1286), 6, + [3239] = 4, + ACTIONS(1370), 1, + aux_sym__text_token1, + STATE(202), 1, + aux_sym__text, + ACTIONS(1289), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, - aux_sym__text_token1, - ACTIONS(1290), 29, + anon_sym_LBRACE, + ACTIONS(1287), 29, sym__verbatim_begin, - sym_highlighted_end, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17889,20 +18655,20 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [3327] = 4, - ACTIONS(1375), 1, + [3284] = 4, + ACTIONS(1373), 1, anon_sym_LBRACE, - STATE(247), 1, + STATE(375), 1, sym_comment, - ACTIONS(1313), 5, + ACTIONS(1306), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1311), 29, + ACTIONS(1304), 29, sym__verbatim_begin, - sym_superscript_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17930,19 +18696,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [3372] = 3, - ACTIONS(1377), 1, - anon_sym_GT, - ACTIONS(1294), 6, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE, - anon_sym_LBRACK, - aux_sym__text_token1, - ACTIONS(1292), 29, + [3329] = 3, + ACTIONS(1375), 1, + aux_sym_autolink_token1, + ACTIONS(1283), 4, sym__verbatim_begin, - sym__image_description_end, + sym_highlighted_end, + sym__whitespace1, + sym__newline, + ACTIONS(1279), 31, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17954,13 +18716,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, + sym_en_dash, + sym_backslash_escape, anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -17968,17 +18735,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - sym__whitespace1, - sym__newline, - [3415] = 3, - ACTIONS(1379), 1, + aux_sym__text_token1, + [3372] = 3, + ACTIONS(1377), 1, aux_sym_autolink_token1, - ACTIONS(1290), 4, + ACTIONS(1283), 4, sym__verbatim_begin, - sym__bracketed_text_end, + sym_emphasis_end, sym__whitespace1, sym__newline, - ACTIONS(1286), 31, + ACTIONS(1279), 31, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18000,8 +18766,8 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -18010,20 +18776,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, aux_sym__text_token1, - [3458] = 4, - ACTIONS(1381), 1, - anon_sym_LBRACE, - STATE(501), 1, - sym_comment, - ACTIONS(1313), 5, + [3415] = 4, + ACTIONS(1379), 1, + aux_sym__text_token1, + STATE(206), 1, + aux_sym__text, + ACTIONS(1289), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - aux_sym__text_token1, - ACTIONS(1311), 29, + anon_sym_LBRACE, + ACTIONS(1287), 29, sym__verbatim_begin, - sym__bracketed_text_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18051,19 +18817,21 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [3503] = 3, - ACTIONS(1383), 1, - sym__non_whitespace_check, - ACTIONS(1286), 6, + [3460] = 4, + ACTIONS(1382), 1, + anon_sym_LBRACE_EQ2, + STATE(601), 1, + sym_raw_inline_attribute, + ACTIONS(1255), 7, + anon_sym_LBRACE_EQ, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1290), 29, + ACTIONS(1253), 27, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18072,7 +18840,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, - anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -18091,20 +18858,20 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [3546] = 4, - ACTIONS(1385), 1, - aux_sym__text_token1, - STATE(198), 1, - aux_sym__text, - ACTIONS(1281), 5, + [3505] = 4, + ACTIONS(1384), 1, + anon_sym_LBRACE, + STATE(506), 1, + sym_comment, + ACTIONS(1306), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(1279), 29, + aux_sym__text_token1, + ACTIONS(1304), 29, sym__verbatim_begin, - sym_subscript_end, + sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18132,19 +18899,59 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [3591] = 3, - ACTIONS(1388), 1, - anon_sym_GT, - ACTIONS(1294), 6, + [3550] = 3, + ACTIONS(1386), 1, + aux_sym_autolink_token1, + ACTIONS(1283), 3, + sym__verbatim_begin, + sym__whitespace1, + sym__newline, + ACTIONS(1279), 32, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, anon_sym_BSLASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, sym_en_dash, sym_backslash_escape, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_RBRACK, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + aux_sym__text_token1, + [3593] = 3, + ACTIONS(1388), 1, + sym__non_whitespace_check, + ACTIONS(1279), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1292), 29, + ACTIONS(1283), 29, sym__verbatim_begin, - sym_strong_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18172,19 +18979,20 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [3634] = 3, + [3636] = 4, ACTIONS(1390), 1, - anon_sym_GT, - ACTIONS(1294), 6, + aux_sym__text_token1, + STATE(211), 1, + aux_sym__text, + ACTIONS(1289), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, - aux_sym__text_token1, - ACTIONS(1292), 29, + anon_sym_LBRACE, + ACTIONS(1287), 29, sym__verbatim_begin, - sym_subscript_end, + sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18212,20 +19020,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [3677] = 4, - ACTIONS(1392), 1, - anon_sym_LBRACE_EQ2, - STATE(603), 1, - sym_raw_inline_attribute, - ACTIONS(1255), 7, - anon_sym_LBRACE_EQ, + [3681] = 3, + ACTIONS(1393), 1, + sym__non_whitespace_check, + ACTIONS(1279), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1253), 27, + ACTIONS(1283), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -18235,6 +19040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, + anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -18244,6 +19050,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -18253,20 +19060,20 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [3722] = 4, - ACTIONS(1394), 1, + [3724] = 4, + ACTIONS(1395), 1, aux_sym__text_token1, - STATE(202), 1, + STATE(213), 1, aux_sym__text, - ACTIONS(1281), 5, + ACTIONS(1289), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(1279), 29, + anon_sym_LBRACE, + ACTIONS(1287), 29, sym__verbatim_begin, - sym__bracketed_text_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18294,20 +19101,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [3767] = 4, - ACTIONS(1397), 1, - anon_sym_LBRACE, - STATE(332), 1, - sym_comment, - ACTIONS(1313), 5, + [3769] = 3, + ACTIONS(1398), 1, + anon_sym_GT, + ACTIONS(1296), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1311), 29, + ACTIONS(1294), 29, sym__verbatim_begin, - sym_highlighted_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18336,14 +19142,17 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [3812] = 3, - ACTIONS(1399), 1, - aux_sym_autolink_token1, - ACTIONS(1290), 4, + ACTIONS(1400), 1, + sym__non_whitespace_check, + ACTIONS(1279), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE, + aux_sym__text_token1, + ACTIONS(1283), 29, sym__verbatim_begin, - sym_subscript_end, - sym__whitespace1, - sym__newline, - ACTIONS(1286), 31, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18355,18 +19164,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, - sym_en_dash, - sym_backslash_escape, anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -18374,21 +19179,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - aux_sym__text_token1, - [3855] = 4, - ACTIONS(1401), 1, - aux_sym__text_token1, - STATE(205), 1, - aux_sym__text, - ACTIONS(1281), 5, + sym__whitespace1, + sym__newline, + [3855] = 3, + ACTIONS(1402), 1, + anon_sym_GT, + ACTIONS(1296), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(1279), 29, + anon_sym_LBRACE, + aux_sym__text_token1, + ACTIONS(1294), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18416,19 +19221,20 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [3900] = 3, + [3898] = 4, ACTIONS(1404), 1, - sym__non_whitespace_check, - ACTIONS(1286), 6, + anon_sym_LBRACE, + STATE(331), 1, + sym_comment, + ACTIONS(1306), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1290), 29, + ACTIONS(1304), 29, sym__verbatim_begin, - sym_subscript_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18459,16 +19265,16 @@ static const uint16_t ts_small_parse_table[] = { [3943] = 3, ACTIONS(1406), 1, sym__non_whitespace_check, - ACTIONS(1286), 6, + ACTIONS(1279), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1290), 29, + ACTIONS(1283), 29, sym__verbatim_begin, - sym_subscript_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18496,20 +19302,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [3986] = 4, + [3986] = 3, ACTIONS(1408), 1, - aux_sym__text_token1, - STATE(208), 1, - aux_sym__text, - ACTIONS(1281), 5, + sym__non_whitespace_check, + ACTIONS(1279), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(1279), 29, + anon_sym_LBRACE, + aux_sym__text_token1, + ACTIONS(1283), 29, sym__verbatim_begin, - sym_strong_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18537,19 +19342,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4031] = 3, - ACTIONS(1411), 1, - anon_sym_GT, - ACTIONS(1294), 6, + [4029] = 3, + ACTIONS(1410), 1, + sym__non_whitespace_check, + ACTIONS(1279), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1292), 29, + ACTIONS(1283), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18577,14 +19382,20 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4074] = 3, - ACTIONS(1413), 1, - aux_sym_autolink_token1, - ACTIONS(1290), 3, + [4072] = 4, + ACTIONS(1412), 1, + aux_sym__text_token1, + STATE(221), 1, + aux_sym__text, + ACTIONS(1289), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE, + ACTIONS(1287), 29, sym__verbatim_begin, - sym__whitespace1, - sym__newline, - ACTIONS(1286), 32, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18596,19 +19407,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, - sym_en_dash, - sym_backslash_escape, anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -18616,16 +19421,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - aux_sym__text_token1, + sym__whitespace1, + sym__newline, [4117] = 3, ACTIONS(1415), 1, - aux_sym_autolink_token1, - ACTIONS(1290), 4, + anon_sym_GT, + ACTIONS(1296), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE, + aux_sym__text_token1, + ACTIONS(1294), 29, sym__verbatim_begin, sym_superscript_end, - sym__whitespace1, - sym__newline, - ACTIONS(1286), 31, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18637,18 +19447,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, - sym_en_dash, - sym_backslash_escape, anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -18656,16 +19461,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - aux_sym__text_token1, + sym__whitespace1, + sym__newline, [4160] = 3, ACTIONS(1417), 1, aux_sym_autolink_token1, - ACTIONS(1290), 4, + ACTIONS(1283), 4, sym__verbatim_begin, - sym__image_description_end, + sym_superscript_end, sym__whitespace1, sym__newline, - ACTIONS(1286), 31, + ACTIONS(1279), 31, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18687,8 +19493,8 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -18699,18 +19505,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__text_token1, [4203] = 4, ACTIONS(1419), 1, - aux_sym__text_token1, - STATE(213), 1, - aux_sym__text, - ACTIONS(1281), 5, + anon_sym_LBRACE, + STATE(287), 1, + sym_comment, + ACTIONS(1306), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(1279), 29, + aux_sym__text_token1, + ACTIONS(1304), 29, sym__verbatim_begin, - sym_superscript_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18738,19 +19544,20 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4248] = 3, - ACTIONS(1422), 1, - anon_sym_GT, - ACTIONS(1294), 6, + [4248] = 4, + ACTIONS(1421), 1, + aux_sym__text_token1, + STATE(225), 1, + aux_sym__text, + ACTIONS(1289), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, - aux_sym__text_token1, - ACTIONS(1292), 29, + anon_sym_LBRACE, + ACTIONS(1287), 29, sym__verbatim_begin, - sym_superscript_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18778,20 +19585,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4291] = 4, + [4293] = 3, ACTIONS(1424), 1, - anon_sym_LBRACE, - STATE(288), 1, - sym_comment, - ACTIONS(1313), 5, + anon_sym_GT, + ACTIONS(1296), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1311), 29, + ACTIONS(1294), 29, sym__verbatim_begin, - sym_subscript_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18822,15 +19628,15 @@ static const uint16_t ts_small_parse_table[] = { [4336] = 4, ACTIONS(1426), 1, anon_sym_LBRACE, - STATE(259), 1, + STATE(271), 1, sym_comment, - ACTIONS(1313), 5, + ACTIONS(1306), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1311), 29, + ACTIONS(1304), 29, sym__verbatim_begin, ts_builtin_sym_end, anon_sym_LBRACE_, @@ -18862,13 +19668,17 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, [4381] = 3, ACTIONS(1428), 1, - aux_sym_autolink_token1, - ACTIONS(1290), 4, + sym__non_whitespace_check, + ACTIONS(1279), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE, + aux_sym__text_token1, + ACTIONS(1283), 29, sym__verbatim_begin, - ts_builtin_sym_end, - sym__whitespace1, - sym__newline, - ACTIONS(1286), 31, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18880,18 +19690,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, - sym_en_dash, - sym_backslash_escape, anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -18899,20 +19704,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - aux_sym__text_token1, + sym__whitespace1, + sym__newline, [4424] = 3, ACTIONS(1430), 1, sym__non_whitespace_check, - ACTIONS(1286), 6, + ACTIONS(1279), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1290), 29, + ACTIONS(1283), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18943,14 +19749,14 @@ static const uint16_t ts_small_parse_table[] = { [4467] = 3, ACTIONS(1432), 1, sym__non_whitespace_check, - ACTIONS(1286), 6, + ACTIONS(1279), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1290), 29, + ACTIONS(1283), 29, sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, @@ -18982,17 +19788,13 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, [4510] = 3, ACTIONS(1434), 1, - sym__non_whitespace_check, - ACTIONS(1286), 6, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE, - anon_sym_LBRACK, - aux_sym__text_token1, - ACTIONS(1290), 29, + aux_sym_autolink_token1, + ACTIONS(1283), 4, sym__verbatim_begin, - sym_superscript_end, + ts_builtin_sym_end, + sym__whitespace1, + sym__newline, + ACTIONS(1279), 31, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19004,13 +19806,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, + sym_en_dash, + sym_backslash_escape, anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -19018,19 +19825,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - sym__whitespace1, - sym__newline, + aux_sym__text_token1, [4553] = 2, ACTIONS(1438), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, ACTIONS(1436), 29, sym__verbatim_begin, - sym_highlighted_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19063,8 +19869,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, ACTIONS(1440), 29, sym__verbatim_begin, @@ -19096,19 +19902,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4633] = 4, - ACTIONS(1444), 1, - anon_sym_LBRACE, - STATE(590), 1, - sym_comment, - ACTIONS(1313), 5, + [4633] = 2, + ACTIONS(1446), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1311), 28, + ACTIONS(1444), 29, sym__verbatim_begin, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19136,15 +19940,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4677] = 2, - ACTIONS(1448), 6, + [4673] = 2, + ACTIONS(1450), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1446), 29, + ACTIONS(1448), 29, sym__verbatim_begin, sym_strong_end, anon_sym_LBRACE_, @@ -19174,15 +19978,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4717] = 2, - ACTIONS(1452), 6, + [4713] = 2, + ACTIONS(1454), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1450), 29, + ACTIONS(1452), 29, sym__verbatim_begin, sym_strong_end, anon_sym_LBRACE_, @@ -19212,17 +20016,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4757] = 2, - ACTIONS(1456), 6, + [4753] = 2, + ACTIONS(1438), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1454), 29, + ACTIONS(1436), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19250,17 +20054,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4797] = 2, - ACTIONS(1460), 6, + [4793] = 4, + ACTIONS(1456), 1, + anon_sym_LBRACE, + STATE(589), 1, + sym_comment, + ACTIONS(1306), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1458), 29, + ACTIONS(1304), 28, sym__verbatim_begin, - sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19289,16 +20095,16 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [4837] = 2, - ACTIONS(1464), 6, + ACTIONS(1460), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1462), 29, + ACTIONS(1458), 29, sym__verbatim_begin, - sym_strong_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19327,14 +20133,14 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [4877] = 2, - ACTIONS(1468), 6, + ACTIONS(1464), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1466), 29, + ACTIONS(1462), 29, sym__verbatim_begin, sym_strong_end, anon_sym_LBRACE_, @@ -19364,17 +20170,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4917] = 2, - ACTIONS(1472), 6, + [4917] = 3, + ACTIONS(1466), 1, + sym__verbatim_begin, + ACTIONS(1279), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1470), 29, - sym__verbatim_begin, - sym_strong_end, + ACTIONS(1283), 28, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19402,17 +20209,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4957] = 2, - ACTIONS(1476), 6, + [4959] = 2, + ACTIONS(1460), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1474), 29, + ACTIONS(1458), 29, sym__verbatim_begin, - sym_strong_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19440,17 +20247,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4997] = 2, - ACTIONS(1480), 6, + [4999] = 2, + ACTIONS(1471), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1478), 29, + ACTIONS(1469), 29, sym__verbatim_begin, - sym_strong_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19478,17 +20285,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5037] = 2, - ACTIONS(1438), 6, + [5039] = 2, + ACTIONS(1296), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1436), 29, + ACTIONS(1294), 29, sym__verbatim_begin, - sym_strong_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19516,17 +20323,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5077] = 2, - ACTIONS(1484), 6, + [5079] = 2, + ACTIONS(1475), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1482), 29, + ACTIONS(1473), 29, sym__verbatim_begin, - sym_strong_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19554,17 +20361,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5117] = 2, - ACTIONS(1488), 6, + [5119] = 2, + ACTIONS(1471), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1486), 29, + ACTIONS(1469), 29, sym__verbatim_begin, - sym_strong_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19592,17 +20399,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5157] = 2, - ACTIONS(1492), 6, + [5159] = 2, + ACTIONS(1479), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1490), 29, + ACTIONS(1477), 29, sym__verbatim_begin, - sym_strong_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19630,17 +20437,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5197] = 2, - ACTIONS(1496), 6, + [5199] = 2, + ACTIONS(1483), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1494), 29, + ACTIONS(1481), 29, sym__verbatim_begin, - sym_strong_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19668,17 +20475,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5237] = 2, - ACTIONS(1500), 6, + [5239] = 2, + ACTIONS(1487), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1498), 29, + ACTIONS(1485), 29, sym__verbatim_begin, - sym_strong_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19706,17 +20513,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5277] = 2, - ACTIONS(1504), 6, + [5279] = 2, + ACTIONS(1491), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1502), 29, + ACTIONS(1489), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19744,17 +20551,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5317] = 2, - ACTIONS(1508), 6, + [5319] = 2, + ACTIONS(1495), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1506), 29, + ACTIONS(1493), 29, sym__verbatim_begin, - sym_strong_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19782,17 +20589,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5357] = 3, - ACTIONS(1510), 1, - sym__verbatim_begin, - ACTIONS(1286), 6, + [5359] = 2, + ACTIONS(1499), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1290), 28, + ACTIONS(1497), 29, + sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, anon_sym__, @@ -19822,14 +20628,14 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [5399] = 2, - ACTIONS(1456), 6, + ACTIONS(1503), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1454), 29, + ACTIONS(1501), 29, sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, @@ -19860,14 +20666,14 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [5439] = 2, - ACTIONS(1504), 6, + ACTIONS(1507), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1502), 29, + ACTIONS(1505), 29, sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, @@ -19898,16 +20704,16 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [5479] = 2, - ACTIONS(1294), 6, + ACTIONS(1296), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1292), 29, + ACTIONS(1294), 29, sym__verbatim_begin, - sym_superscript_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19936,14 +20742,14 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [5519] = 2, - ACTIONS(1515), 6, + ACTIONS(1511), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1513), 29, + ACTIONS(1509), 29, sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, @@ -19973,19 +20779,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5559] = 4, - ACTIONS(1517), 1, - anon_sym_LBRACE, - STATE(296), 1, - sym_comment, - ACTIONS(1313), 5, + [5559] = 2, + ACTIONS(1442), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1311), 28, + ACTIONS(1440), 29, sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20013,17 +20817,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5603] = 2, - ACTIONS(1442), 6, + [5599] = 2, + ACTIONS(1475), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1440), 29, + ACTIONS(1473), 29, sym__verbatim_begin, - sym_superscript_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20051,15 +20855,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5643] = 2, - ACTIONS(1521), 6, + [5639] = 2, + ACTIONS(1515), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1519), 29, + ACTIONS(1513), 29, sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, @@ -20089,15 +20893,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5683] = 2, - ACTIONS(1525), 6, + [5679] = 2, + ACTIONS(1519), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1523), 29, + ACTIONS(1517), 29, sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, @@ -20127,15 +20931,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5723] = 2, - ACTIONS(1529), 6, + [5719] = 2, + ACTIONS(1523), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1527), 29, + ACTIONS(1521), 29, sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, @@ -20165,15 +20969,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5763] = 2, - ACTIONS(1533), 6, + [5759] = 2, + ACTIONS(1527), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1531), 29, + ACTIONS(1525), 29, sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, @@ -20203,15 +21007,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5803] = 2, - ACTIONS(1537), 6, + [5799] = 2, + ACTIONS(1531), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1535), 29, + ACTIONS(1529), 29, sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, @@ -20241,15 +21045,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5843] = 2, - ACTIONS(1541), 6, + [5839] = 2, + ACTIONS(1535), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1539), 29, + ACTIONS(1533), 29, sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, @@ -20279,17 +21083,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5883] = 2, - ACTIONS(1294), 6, + [5879] = 2, + ACTIONS(1539), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1292), 29, + ACTIONS(1537), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20317,15 +21121,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5923] = 2, - ACTIONS(1545), 6, + [5919] = 2, + ACTIONS(1543), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1543), 29, + ACTIONS(1541), 29, sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, @@ -20355,17 +21159,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5963] = 2, - ACTIONS(1515), 6, + [5959] = 2, + ACTIONS(1446), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1513), 29, + ACTIONS(1444), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20393,15 +21197,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6003] = 2, - ACTIONS(1448), 6, + [5999] = 2, + ACTIONS(1450), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1446), 29, + ACTIONS(1448), 29, sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, @@ -20431,15 +21235,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6043] = 2, - ACTIONS(1452), 6, + [6039] = 2, + ACTIONS(1454), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1450), 29, + ACTIONS(1452), 29, sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, @@ -20469,17 +21273,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6083] = 2, - ACTIONS(1442), 6, + [6079] = 2, + ACTIONS(1438), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1440), 29, + ACTIONS(1436), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20507,17 +21311,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6123] = 2, - ACTIONS(1460), 6, + [6119] = 2, + ACTIONS(1479), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1458), 29, + ACTIONS(1477), 29, sym__verbatim_begin, - sym_superscript_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20545,17 +21349,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6163] = 2, - ACTIONS(1464), 6, + [6159] = 2, + ACTIONS(1483), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1462), 29, + ACTIONS(1481), 29, sym__verbatim_begin, - sym_superscript_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20583,15 +21387,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6203] = 2, - ACTIONS(1468), 6, + [6199] = 2, + ACTIONS(1464), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1466), 29, + ACTIONS(1462), 29, sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, @@ -20621,17 +21425,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6243] = 2, - ACTIONS(1472), 6, + [6239] = 2, + ACTIONS(1515), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1470), 29, + ACTIONS(1513), 29, sym__verbatim_begin, - sym_superscript_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20659,17 +21463,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6283] = 2, - ACTIONS(1476), 6, + [6279] = 2, + ACTIONS(1539), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1474), 29, + ACTIONS(1537), 29, sym__verbatim_begin, - sym_superscript_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20697,17 +21501,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6323] = 2, - ACTIONS(1480), 6, + [6319] = 2, + ACTIONS(1535), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1478), 29, + ACTIONS(1533), 29, sym__verbatim_begin, - sym_superscript_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20735,17 +21539,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6363] = 2, - ACTIONS(1438), 6, + [6359] = 3, + ACTIONS(1545), 1, + sym__verbatim_begin, + ACTIONS(1279), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1436), 29, - sym__verbatim_begin, - sym_superscript_end, + ACTIONS(1283), 28, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20773,17 +21578,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6403] = 2, - ACTIONS(1484), 6, + [6401] = 2, + ACTIONS(1460), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1482), 29, + ACTIONS(1458), 29, sym__verbatim_begin, - sym_superscript_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20811,17 +21616,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6443] = 2, - ACTIONS(1488), 6, + [6441] = 2, + ACTIONS(1471), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1486), 29, + ACTIONS(1469), 29, sym__verbatim_begin, - sym_superscript_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20849,17 +21654,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6483] = 2, - ACTIONS(1492), 6, + [6481] = 2, + ACTIONS(1531), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1490), 29, + ACTIONS(1529), 29, sym__verbatim_begin, - sym_superscript_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20887,17 +21692,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6523] = 2, - ACTIONS(1496), 6, + [6521] = 2, + ACTIONS(1527), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1494), 29, + ACTIONS(1525), 29, sym__verbatim_begin, - sym_superscript_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20925,17 +21730,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6563] = 2, - ACTIONS(1500), 6, + [6561] = 2, + ACTIONS(1523), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1498), 29, + ACTIONS(1521), 29, sym__verbatim_begin, - sym_superscript_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20963,17 +21768,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6603] = 2, - ACTIONS(1521), 6, + [6601] = 2, + ACTIONS(1296), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1519), 29, + ACTIONS(1294), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21001,17 +21806,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6643] = 2, - ACTIONS(1508), 6, + [6641] = 2, + ACTIONS(1475), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1506), 29, + ACTIONS(1473), 29, sym__verbatim_begin, - sym_superscript_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21039,15 +21844,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6683] = 2, - ACTIONS(1525), 6, + [6681] = 2, + ACTIONS(1487), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1523), 29, + ACTIONS(1485), 29, sym__verbatim_begin, ts_builtin_sym_end, anon_sym_LBRACE_, @@ -21077,17 +21882,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6723] = 2, - ACTIONS(1452), 6, + [6721] = 2, + ACTIONS(1519), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1450), 29, + ACTIONS(1517), 29, sym__verbatim_begin, - sym_emphasis_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21115,17 +21920,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6763] = 2, - ACTIONS(1541), 6, + [6761] = 2, + ACTIONS(1479), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1539), 29, + ACTIONS(1477), 29, sym__verbatim_begin, - sym_strong_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21153,17 +21958,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6803] = 2, - ACTIONS(1537), 6, + [6801] = 2, + ACTIONS(1483), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1535), 29, + ACTIONS(1481), 29, sym__verbatim_begin, - sym_strong_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21191,17 +21996,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6843] = 3, - ACTIONS(1547), 1, - sym__verbatim_begin, - ACTIONS(1286), 6, + [6841] = 2, + ACTIONS(1487), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1290), 28, + ACTIONS(1485), 29, + sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, anon_sym__, @@ -21230,15 +22034,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6885] = 2, - ACTIONS(1456), 6, + [6881] = 2, + ACTIONS(1491), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1454), 29, + ACTIONS(1489), 29, sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, @@ -21268,15 +22072,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6925] = 2, - ACTIONS(1504), 6, + [6921] = 2, + ACTIONS(1495), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1502), 29, + ACTIONS(1493), 29, sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, @@ -21306,17 +22110,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6965] = 2, - ACTIONS(1533), 6, + [6961] = 2, + ACTIONS(1499), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1531), 29, + ACTIONS(1497), 29, sym__verbatim_begin, - sym_strong_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21344,17 +22148,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7005] = 2, - ACTIONS(1529), 6, + [7001] = 2, + ACTIONS(1503), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1527), 29, + ACTIONS(1501), 29, sym__verbatim_begin, - sym_strong_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21382,17 +22186,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7045] = 2, - ACTIONS(1525), 6, + [7041] = 2, + ACTIONS(1491), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1523), 29, + ACTIONS(1489), 29, sym__verbatim_begin, - sym_strong_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21420,17 +22224,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7085] = 2, - ACTIONS(1294), 6, + [7081] = 2, + ACTIONS(1495), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1292), 29, + ACTIONS(1493), 29, sym__verbatim_begin, - sym_subscript_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21458,17 +22262,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7125] = 2, - ACTIONS(1515), 6, + [7121] = 2, + ACTIONS(1442), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1513), 29, + ACTIONS(1440), 29, sym__verbatim_begin, - sym_subscript_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21496,17 +22300,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7165] = 2, - ACTIONS(1529), 6, + [7161] = 2, + ACTIONS(1507), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1527), 29, + ACTIONS(1505), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21534,17 +22338,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7205] = 2, - ACTIONS(1521), 6, + [7201] = 2, + ACTIONS(1499), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1519), 29, + ACTIONS(1497), 29, sym__verbatim_begin, - sym_strong_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21572,15 +22376,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7245] = 2, - ACTIONS(1442), 6, + [7241] = 2, + ACTIONS(1511), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1440), 29, + ACTIONS(1509), 29, sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, @@ -21610,15 +22414,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7285] = 2, - ACTIONS(1521), 6, + [7281] = 2, + ACTIONS(1442), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1519), 29, + ACTIONS(1440), 29, sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, @@ -21648,17 +22452,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7325] = 2, - ACTIONS(1525), 6, + [7321] = 2, + ACTIONS(1503), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1523), 29, + ACTIONS(1501), 29, sym__verbatim_begin, - sym_subscript_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21686,15 +22490,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7365] = 2, - ACTIONS(1529), 6, + [7361] = 2, + ACTIONS(1515), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1527), 29, + ACTIONS(1513), 29, sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, @@ -21724,15 +22528,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7405] = 2, - ACTIONS(1533), 6, + [7401] = 2, + ACTIONS(1519), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1531), 29, + ACTIONS(1517), 29, sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, @@ -21762,15 +22566,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7445] = 2, - ACTIONS(1537), 6, + [7441] = 2, + ACTIONS(1523), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1535), 29, + ACTIONS(1521), 29, sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, @@ -21800,15 +22604,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7485] = 2, - ACTIONS(1541), 6, + [7481] = 2, + ACTIONS(1527), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1539), 29, + ACTIONS(1525), 29, sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, @@ -21838,17 +22642,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7525] = 2, - ACTIONS(1533), 6, + [7521] = 2, + ACTIONS(1531), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1531), 29, + ACTIONS(1529), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21876,17 +22680,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7565] = 2, - ACTIONS(1442), 6, + [7561] = 2, + ACTIONS(1535), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1440), 29, + ACTIONS(1533), 29, sym__verbatim_begin, - sym_strong_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21914,17 +22718,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7605] = 2, - ACTIONS(1537), 6, + [7601] = 2, + ACTIONS(1539), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1535), 29, + ACTIONS(1537), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21952,17 +22756,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7645] = 2, - ACTIONS(1515), 6, + [7641] = 2, + ACTIONS(1543), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1513), 29, + ACTIONS(1541), 29, sym__verbatim_begin, - sym_strong_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21990,15 +22794,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7685] = 2, - ACTIONS(1545), 6, + [7681] = 2, + ACTIONS(1446), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1543), 29, + ACTIONS(1444), 29, sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, @@ -22028,17 +22832,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7725] = 2, - ACTIONS(1541), 6, + [7721] = 2, + ACTIONS(1450), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1539), 29, + ACTIONS(1448), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22066,15 +22870,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7765] = 2, - ACTIONS(1448), 6, + [7761] = 2, + ACTIONS(1454), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1446), 29, + ACTIONS(1452), 29, sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, @@ -22104,15 +22908,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7805] = 2, - ACTIONS(1452), 6, + [7801] = 2, + ACTIONS(1438), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1450), 29, + ACTIONS(1436), 29, sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, @@ -22142,17 +22946,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7845] = 2, - ACTIONS(1545), 6, + [7841] = 4, + ACTIONS(1548), 1, + anon_sym_LBRACE, + STATE(339), 1, + sym_comment, + ACTIONS(1306), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1543), 29, + ACTIONS(1304), 28, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22181,16 +22987,16 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [7885] = 2, - ACTIONS(1460), 6, + ACTIONS(1507), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1458), 29, + ACTIONS(1505), 29, sym__verbatim_begin, - sym_subscript_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22223,8 +23029,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, ACTIONS(1462), 29, sym__verbatim_begin, @@ -22257,16 +23063,16 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [7965] = 2, - ACTIONS(1468), 6, + ACTIONS(1511), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1466), 29, + ACTIONS(1509), 29, sym__verbatim_begin, - sym_subscript_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22295,16 +23101,16 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [8005] = 2, - ACTIONS(1472), 6, + ACTIONS(1511), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1470), 29, + ACTIONS(1509), 29, sym__verbatim_begin, - sym_subscript_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22333,16 +23139,16 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [8045] = 2, - ACTIONS(1476), 6, + ACTIONS(1507), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1474), 29, + ACTIONS(1505), 29, sym__verbatim_begin, - sym_subscript_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22371,16 +23177,16 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [8085] = 2, - ACTIONS(1480), 6, + ACTIONS(1503), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1478), 29, + ACTIONS(1501), 29, sym__verbatim_begin, - sym_subscript_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22408,17 +23214,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8125] = 2, - ACTIONS(1438), 6, + [8125] = 3, + ACTIONS(1550), 1, + sym__verbatim_begin, + ACTIONS(1279), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1436), 29, - sym__verbatim_begin, - sym_subscript_end, + ACTIONS(1283), 28, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22446,17 +23253,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8165] = 2, - ACTIONS(1484), 6, + [8167] = 2, + ACTIONS(1460), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1482), 29, + ACTIONS(1458), 29, sym__verbatim_begin, - sym_subscript_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22484,17 +23291,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8205] = 2, - ACTIONS(1488), 6, + [8207] = 2, + ACTIONS(1471), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1486), 29, + ACTIONS(1469), 29, sym__verbatim_begin, - sym_subscript_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22522,17 +23329,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8245] = 2, - ACTIONS(1492), 6, + [8247] = 2, + ACTIONS(1499), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1490), 29, + ACTIONS(1497), 29, sym__verbatim_begin, - sym_subscript_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22560,17 +23367,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8285] = 2, - ACTIONS(1496), 6, + [8287] = 2, + ACTIONS(1495), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1494), 29, + ACTIONS(1493), 29, sym__verbatim_begin, - sym_subscript_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22598,17 +23405,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8325] = 2, - ACTIONS(1500), 6, + [8327] = 2, + ACTIONS(1491), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1498), 29, + ACTIONS(1489), 29, sym__verbatim_begin, - sym_subscript_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22636,17 +23443,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8365] = 2, - ACTIONS(1448), 6, + [8367] = 2, + ACTIONS(1296), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1446), 29, + ACTIONS(1294), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22674,17 +23481,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8405] = 2, - ACTIONS(1508), 6, + [8407] = 2, + ACTIONS(1475), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1506), 29, + ACTIONS(1473), 29, sym__verbatim_begin, - sym_subscript_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22712,17 +23519,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8445] = 2, - ACTIONS(1294), 6, + [8447] = 2, + ACTIONS(1442), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1292), 29, + ACTIONS(1440), 29, sym__verbatim_begin, - sym_strong_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22750,15 +23557,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8485] = 2, - ACTIONS(1504), 6, + [8487] = 2, + ACTIONS(1487), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1502), 29, + ACTIONS(1485), 29, sym__verbatim_begin, sym_strong_end, anon_sym_LBRACE_, @@ -22788,17 +23595,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8525] = 2, - ACTIONS(1456), 6, + [8527] = 2, + ACTIONS(1479), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1454), 29, + ACTIONS(1477), 29, sym__verbatim_begin, - sym_strong_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22826,18 +23633,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8565] = 3, - ACTIONS(1550), 1, - sym__verbatim_begin, - ACTIONS(1286), 6, + [8567] = 2, + ACTIONS(1483), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1290), 28, - sym_strong_end, + ACTIONS(1481), 29, + sym__verbatim_begin, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22865,17 +23671,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8607] = 3, - ACTIONS(1553), 1, - sym__verbatim_begin, - ACTIONS(1286), 6, + [8607] = 2, + ACTIONS(1487), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1290), 28, + ACTIONS(1485), 29, + sym__verbatim_begin, sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, @@ -22904,15 +23709,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8649] = 2, - ACTIONS(1456), 6, + [8647] = 2, + ACTIONS(1491), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1454), 29, + ACTIONS(1489), 29, sym__verbatim_begin, sym_highlighted_end, anon_sym_LBRACE_, @@ -22942,15 +23747,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8689] = 2, - ACTIONS(1504), 6, + [8687] = 2, + ACTIONS(1495), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1502), 29, + ACTIONS(1493), 29, sym__verbatim_begin, sym_highlighted_end, anon_sym_LBRACE_, @@ -22980,17 +23785,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8729] = 2, - ACTIONS(1452), 6, + [8727] = 2, + ACTIONS(1499), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1450), 29, + ACTIONS(1497), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23018,17 +23823,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8769] = 2, - ACTIONS(1508), 6, + [8767] = 2, + ACTIONS(1503), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1506), 29, + ACTIONS(1501), 29, sym__verbatim_begin, - sym_emphasis_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23056,17 +23861,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8809] = 2, - ACTIONS(1460), 6, + [8807] = 2, + ACTIONS(1483), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1458), 29, + ACTIONS(1481), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23094,17 +23899,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8849] = 2, - ACTIONS(1294), 6, + [8847] = 2, + ACTIONS(1479), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1292), 29, + ACTIONS(1477), 29, sym__verbatim_begin, - sym_highlighted_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23132,17 +23937,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8889] = 2, + [8887] = 2, ACTIONS(1515), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, ACTIONS(1513), 29, sym__verbatim_begin, - sym_highlighted_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23170,17 +23975,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8929] = 2, - ACTIONS(1464), 6, + [8927] = 2, + ACTIONS(1507), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1462), 29, + ACTIONS(1505), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23208,15 +24013,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8969] = 2, - ACTIONS(1468), 6, + [8967] = 2, + ACTIONS(1519), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1466), 29, + ACTIONS(1517), 29, sym__verbatim_begin, ts_builtin_sym_end, anon_sym_LBRACE_, @@ -23246,15 +24051,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9009] = 2, - ACTIONS(1442), 6, + [9007] = 2, + ACTIONS(1511), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1440), 29, + ACTIONS(1509), 29, sym__verbatim_begin, sym_highlighted_end, anon_sym_LBRACE_, @@ -23284,15 +24089,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9049] = 2, - ACTIONS(1521), 6, + [9047] = 2, + ACTIONS(1442), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1519), 29, + ACTIONS(1440), 29, sym__verbatim_begin, sym_highlighted_end, anon_sym_LBRACE_, @@ -23322,17 +24127,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9089] = 2, - ACTIONS(1525), 6, + [9087] = 2, + ACTIONS(1523), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1523), 29, + ACTIONS(1521), 29, sym__verbatim_begin, - sym_highlighted_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23360,15 +24165,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9129] = 2, - ACTIONS(1529), 6, + [9127] = 2, + ACTIONS(1515), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1527), 29, + ACTIONS(1513), 29, sym__verbatim_begin, sym_highlighted_end, anon_sym_LBRACE_, @@ -23398,15 +24203,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9169] = 2, - ACTIONS(1533), 6, + [9167] = 2, + ACTIONS(1519), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1531), 29, + ACTIONS(1517), 29, sym__verbatim_begin, sym_highlighted_end, anon_sym_LBRACE_, @@ -23436,15 +24241,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9209] = 2, - ACTIONS(1537), 6, + [9207] = 2, + ACTIONS(1523), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1535), 29, + ACTIONS(1521), 29, sym__verbatim_begin, sym_highlighted_end, anon_sym_LBRACE_, @@ -23474,15 +24279,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9249] = 2, - ACTIONS(1541), 6, + [9247] = 2, + ACTIONS(1527), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1539), 29, + ACTIONS(1525), 29, sym__verbatim_begin, sym_highlighted_end, anon_sym_LBRACE_, @@ -23512,17 +24317,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9289] = 2, - ACTIONS(1472), 6, + [9287] = 2, + ACTIONS(1531), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1470), 29, + ACTIONS(1529), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23550,17 +24355,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9329] = 2, - ACTIONS(1500), 6, + [9327] = 2, + ACTIONS(1535), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1498), 29, + ACTIONS(1533), 29, sym__verbatim_begin, - sym_emphasis_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23588,17 +24393,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9369] = 2, - ACTIONS(1496), 6, + [9367] = 2, + ACTIONS(1539), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1494), 29, + ACTIONS(1537), 29, sym__verbatim_begin, - sym_emphasis_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23626,17 +24431,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9409] = 2, - ACTIONS(1492), 6, + [9407] = 2, + ACTIONS(1543), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1490), 29, + ACTIONS(1541), 29, sym__verbatim_begin, - sym_emphasis_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23664,15 +24469,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9449] = 2, - ACTIONS(1545), 6, + [9447] = 2, + ACTIONS(1446), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1543), 29, + ACTIONS(1444), 29, sym__verbatim_begin, sym_highlighted_end, anon_sym_LBRACE_, @@ -23702,19 +24507,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9489] = 4, - ACTIONS(1556), 1, - aux_sym__text_token1, - STATE(344), 1, - aux_sym__text, - ACTIONS(1281), 5, + [9487] = 2, + ACTIONS(1450), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(1279), 28, + anon_sym_LBRACE, + aux_sym__text_token1, + ACTIONS(1448), 29, sym__verbatim_begin, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23742,15 +24545,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9533] = 2, - ACTIONS(1448), 6, + [9527] = 2, + ACTIONS(1454), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1446), 29, + ACTIONS(1452), 29, sym__verbatim_begin, sym_highlighted_end, anon_sym_LBRACE_, @@ -23780,15 +24583,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9573] = 2, - ACTIONS(1452), 6, + [9567] = 2, + ACTIONS(1438), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1450), 29, + ACTIONS(1436), 29, sym__verbatim_begin, sym_highlighted_end, anon_sym_LBRACE_, @@ -23818,18 +24621,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9613] = 3, - ACTIONS(1559), 1, - anon_sym_GT, - ACTIONS(1294), 6, + [9607] = 2, + ACTIONS(1527), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1292), 28, + ACTIONS(1525), 29, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23857,17 +24659,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9655] = 2, - ACTIONS(1460), 6, + [9647] = 2, + ACTIONS(1531), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1458), 29, + ACTIONS(1529), 29, sym__verbatim_begin, - sym_highlighted_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23895,13 +24697,13 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9695] = 2, + [9687] = 2, ACTIONS(1464), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, ACTIONS(1462), 29, sym__verbatim_begin, @@ -23933,17 +24735,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9735] = 2, - ACTIONS(1468), 6, + [9727] = 2, + ACTIONS(1475), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1466), 29, + ACTIONS(1473), 29, sym__verbatim_begin, - sym_highlighted_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23971,17 +24773,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9775] = 2, - ACTIONS(1472), 6, + [9767] = 2, + ACTIONS(1296), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1470), 29, + ACTIONS(1294), 29, sym__verbatim_begin, - sym_highlighted_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24009,17 +24811,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9815] = 2, - ACTIONS(1476), 6, + [9807] = 2, + ACTIONS(1471), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1474), 29, + ACTIONS(1469), 29, sym__verbatim_begin, - sym_highlighted_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24047,17 +24849,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9855] = 2, - ACTIONS(1480), 6, + [9847] = 2, + ACTIONS(1460), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1478), 29, + ACTIONS(1458), 29, sym__verbatim_begin, - sym_highlighted_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24085,17 +24887,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9895] = 2, - ACTIONS(1476), 6, + [9887] = 3, + ACTIONS(1553), 1, + sym__verbatim_begin, + ACTIONS(1279), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1474), 29, - sym__verbatim_begin, - ts_builtin_sym_end, + ACTIONS(1283), 28, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24123,17 +24926,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9935] = 2, - ACTIONS(1484), 6, + [9929] = 2, + ACTIONS(1460), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1482), 29, + ACTIONS(1458), 29, sym__verbatim_begin, - sym_highlighted_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24161,17 +24964,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9975] = 2, - ACTIONS(1488), 6, + [9969] = 2, + ACTIONS(1471), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1486), 29, + ACTIONS(1469), 29, sym__verbatim_begin, - sym_highlighted_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24199,17 +25002,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10015] = 2, - ACTIONS(1492), 6, + [10009] = 3, + ACTIONS(1556), 1, + sym__verbatim_begin, + ACTIONS(1279), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1490), 29, - sym__verbatim_begin, - sym_highlighted_end, + ACTIONS(1283), 28, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24237,17 +25041,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10055] = 2, - ACTIONS(1496), 6, + [10051] = 2, + ACTIONS(1535), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1494), 29, + ACTIONS(1533), 29, sym__verbatim_begin, - sym_highlighted_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24275,17 +25079,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10095] = 2, - ACTIONS(1500), 6, + [10091] = 2, + ACTIONS(1464), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1498), 29, + ACTIONS(1462), 29, sym__verbatim_begin, - sym_highlighted_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24313,14 +25117,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10135] = 3, - ACTIONS(1561), 1, - aux_sym_autolink_token1, - ACTIONS(1290), 3, + [10131] = 2, + ACTIONS(1296), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE, + aux_sym__text_token1, + ACTIONS(1294), 29, sym__verbatim_begin, - sym__whitespace1, - sym__newline, - ACTIONS(1286), 31, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24332,18 +25139,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, - sym_en_dash, - sym_backslash_escape, anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -24351,18 +25153,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - aux_sym__text_token1, - [10177] = 2, - ACTIONS(1508), 6, + sym__whitespace1, + sym__newline, + [10171] = 2, + ACTIONS(1475), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1506), 29, + ACTIONS(1473), 29, sym__verbatim_begin, - sym_highlighted_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24390,17 +25193,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10217] = 2, - ACTIONS(1488), 6, + [10211] = 2, + ACTIONS(1539), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1486), 29, + ACTIONS(1537), 29, sym__verbatim_begin, - sym_emphasis_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24428,17 +25231,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10257] = 2, - ACTIONS(1484), 6, + [10251] = 2, + ACTIONS(1543), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1482), 29, + ACTIONS(1541), 29, sym__verbatim_begin, - sym_emphasis_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24466,17 +25269,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10297] = 2, - ACTIONS(1438), 6, + [10291] = 2, + ACTIONS(1479), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1436), 29, + ACTIONS(1477), 29, sym__verbatim_begin, - sym_emphasis_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24504,17 +25307,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10337] = 2, - ACTIONS(1480), 6, + [10331] = 2, + ACTIONS(1483), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1478), 29, + ACTIONS(1481), 29, sym__verbatim_begin, - sym_emphasis_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24542,17 +25345,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10377] = 3, - ACTIONS(1563), 1, - sym__verbatim_begin, - ACTIONS(1286), 6, + [10371] = 2, + ACTIONS(1487), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1290), 28, + ACTIONS(1485), 29, + sym__verbatim_begin, sym_insert_end, anon_sym_LBRACE_, anon_sym__, @@ -24581,15 +25383,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10419] = 2, - ACTIONS(1456), 6, + [10411] = 2, + ACTIONS(1491), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1454), 29, + ACTIONS(1489), 29, sym__verbatim_begin, sym_insert_end, anon_sym_LBRACE_, @@ -24619,15 +25421,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10459] = 2, - ACTIONS(1504), 6, + [10451] = 2, + ACTIONS(1495), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1502), 29, + ACTIONS(1493), 29, sym__verbatim_begin, sym_insert_end, anon_sym_LBRACE_, @@ -24657,17 +25459,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10499] = 2, - ACTIONS(1476), 6, + [10491] = 2, + ACTIONS(1499), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1474), 29, + ACTIONS(1497), 29, sym__verbatim_begin, - sym_emphasis_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24695,17 +25497,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10539] = 2, - ACTIONS(1472), 6, + [10531] = 2, + ACTIONS(1503), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1470), 29, + ACTIONS(1501), 29, sym__verbatim_begin, - sym_emphasis_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24733,15 +25535,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10579] = 2, - ACTIONS(1480), 6, + [10571] = 2, + ACTIONS(1446), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1478), 29, + ACTIONS(1444), 29, sym__verbatim_begin, ts_builtin_sym_end, anon_sym_LBRACE_, @@ -24771,17 +25573,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10619] = 2, - ACTIONS(1294), 6, + [10611] = 2, + ACTIONS(1450), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1292), 29, + ACTIONS(1448), 29, sym__verbatim_begin, - sym_insert_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24809,17 +25611,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10659] = 2, - ACTIONS(1515), 6, + [10651] = 2, + ACTIONS(1454), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1513), 29, + ACTIONS(1452), 29, sym__verbatim_begin, - sym_insert_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24847,18 +25649,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10699] = 3, - ACTIONS(1566), 1, - sym__non_whitespace_check, - ACTIONS(1286), 6, + [10691] = 2, + ACTIONS(1507), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1290), 28, + ACTIONS(1505), 29, sym__verbatim_begin, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24886,17 +25687,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10741] = 2, - ACTIONS(1468), 6, + [10731] = 2, + ACTIONS(1438), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1466), 29, + ACTIONS(1436), 29, sym__verbatim_begin, - sym_emphasis_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24924,15 +25725,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10781] = 2, - ACTIONS(1442), 6, + [10771] = 2, + ACTIONS(1511), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1440), 29, + ACTIONS(1509), 29, sym__verbatim_begin, sym_insert_end, anon_sym_LBRACE_, @@ -24962,15 +25763,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10821] = 2, - ACTIONS(1521), 6, + [10811] = 2, + ACTIONS(1442), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1519), 29, + ACTIONS(1440), 29, sym__verbatim_begin, sym_insert_end, anon_sym_LBRACE_, @@ -25000,17 +25801,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10861] = 2, - ACTIONS(1525), 6, + [10851] = 4, + ACTIONS(1559), 1, + aux_sym__text_token1, + STATE(389), 1, + aux_sym__text, + ACTIONS(1289), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, - aux_sym__text_token1, - ACTIONS(1523), 29, + anon_sym_LBRACE, + ACTIONS(1287), 28, sym__verbatim_begin, - sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25038,15 +25841,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10901] = 2, - ACTIONS(1529), 6, + [10895] = 2, + ACTIONS(1515), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1527), 29, + ACTIONS(1513), 29, sym__verbatim_begin, sym_insert_end, anon_sym_LBRACE_, @@ -25076,15 +25879,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10941] = 2, - ACTIONS(1533), 6, + [10935] = 2, + ACTIONS(1519), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1531), 29, + ACTIONS(1517), 29, sym__verbatim_begin, sym_insert_end, anon_sym_LBRACE_, @@ -25114,15 +25917,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10981] = 2, - ACTIONS(1537), 6, + [10975] = 2, + ACTIONS(1523), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1535), 29, + ACTIONS(1521), 29, sym__verbatim_begin, sym_insert_end, anon_sym_LBRACE_, @@ -25152,15 +25955,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11021] = 2, - ACTIONS(1541), 6, + [11015] = 2, + ACTIONS(1527), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1539), 29, + ACTIONS(1525), 29, sym__verbatim_begin, sym_insert_end, anon_sym_LBRACE_, @@ -25190,18 +25993,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11061] = 3, - ACTIONS(1568), 1, - sym__non_whitespace_check, - ACTIONS(1286), 6, + [11055] = 2, + ACTIONS(1531), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1290), 28, + ACTIONS(1529), 29, sym__verbatim_begin, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25229,17 +26031,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11103] = 2, - ACTIONS(1464), 6, + [11095] = 2, + ACTIONS(1535), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1462), 29, + ACTIONS(1533), 29, sym__verbatim_begin, - sym_emphasis_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25267,17 +26069,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11143] = 2, - ACTIONS(1460), 6, + [11135] = 2, + ACTIONS(1539), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1458), 29, + ACTIONS(1537), 29, sym__verbatim_begin, - sym_emphasis_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25305,17 +26107,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11183] = 2, - ACTIONS(1508), 6, + [11175] = 2, + ACTIONS(1543), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1506), 29, + ACTIONS(1541), 29, sym__verbatim_begin, - sym__bracketed_text_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25343,15 +26145,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11223] = 2, - ACTIONS(1545), 6, + [11215] = 2, + ACTIONS(1446), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1543), 29, + ACTIONS(1444), 29, sym__verbatim_begin, sym_insert_end, anon_sym_LBRACE_, @@ -25381,17 +26183,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11263] = 2, - ACTIONS(1500), 6, + [11255] = 2, + ACTIONS(1450), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1498), 29, + ACTIONS(1448), 29, sym__verbatim_begin, - sym__bracketed_text_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25419,15 +26221,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11303] = 2, - ACTIONS(1448), 6, + [11295] = 2, + ACTIONS(1454), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1446), 29, + ACTIONS(1452), 29, sym__verbatim_begin, sym_insert_end, anon_sym_LBRACE_, @@ -25457,15 +26259,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11343] = 2, - ACTIONS(1452), 6, + [11335] = 2, + ACTIONS(1438), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1450), 29, + ACTIONS(1436), 29, sym__verbatim_begin, sym_insert_end, anon_sym_LBRACE_, @@ -25495,17 +26297,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11383] = 2, - ACTIONS(1496), 6, + [11375] = 3, + ACTIONS(1562), 1, + anon_sym_GT, + ACTIONS(1296), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1494), 29, + ACTIONS(1294), 28, sym__verbatim_begin, - sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25531,19 +26334,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - sym__whitespace1, - sym__newline, - [11423] = 2, - ACTIONS(1460), 6, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACE, - anon_sym_LBRACK, - aux_sym__text_token1, - ACTIONS(1458), 29, + sym__whitespace1, + sym__newline, + [11417] = 3, + ACTIONS(1564), 1, + aux_sym_autolink_token1, + ACTIONS(1283), 3, sym__verbatim_begin, - sym_insert_end, + sym__whitespace1, + sym__newline, + ACTIONS(1279), 31, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25555,13 +26355,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, + sym_en_dash, + sym_backslash_escape, anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -25569,15 +26374,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - sym__whitespace1, - sym__newline, - [11463] = 2, + aux_sym__text_token1, + [11459] = 2, ACTIONS(1464), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, ACTIONS(1462), 29, sym__verbatim_begin, @@ -25609,17 +26413,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11503] = 2, - ACTIONS(1468), 6, + [11499] = 2, + ACTIONS(1454), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1466), 29, + ACTIONS(1452), 29, sym__verbatim_begin, - sym_insert_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25647,17 +26451,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11543] = 2, - ACTIONS(1472), 6, + [11539] = 2, + ACTIONS(1450), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1470), 29, + ACTIONS(1448), 29, sym__verbatim_begin, - sym_insert_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25685,17 +26489,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11583] = 2, - ACTIONS(1476), 6, + [11579] = 2, + ACTIONS(1446), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1474), 29, + ACTIONS(1444), 29, sym__verbatim_begin, - sym_insert_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25723,17 +26527,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11623] = 2, - ACTIONS(1480), 6, + [11619] = 2, + ACTIONS(1543), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1478), 29, + ACTIONS(1541), 29, sym__verbatim_begin, - sym_insert_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25761,17 +26565,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11663] = 2, - ACTIONS(1438), 6, + [11659] = 3, + ACTIONS(1566), 1, + sym__verbatim_begin, + ACTIONS(1279), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1436), 29, - sym__verbatim_begin, - sym_insert_end, + ACTIONS(1283), 28, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25799,17 +26604,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11703] = 2, - ACTIONS(1484), 6, + [11701] = 2, + ACTIONS(1460), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1482), 29, + ACTIONS(1458), 29, sym__verbatim_begin, - sym_insert_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25837,17 +26642,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11743] = 2, - ACTIONS(1488), 6, + [11741] = 2, + ACTIONS(1471), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1486), 29, + ACTIONS(1469), 29, sym__verbatim_begin, - sym_insert_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25875,17 +26680,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11783] = 2, - ACTIONS(1492), 6, + [11781] = 2, + ACTIONS(1539), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1490), 29, + ACTIONS(1537), 29, sym__verbatim_begin, - sym_insert_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25913,17 +26718,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11823] = 2, - ACTIONS(1496), 6, + [11821] = 2, + ACTIONS(1535), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1494), 29, + ACTIONS(1533), 29, sym__verbatim_begin, - sym_insert_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25951,17 +26756,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11863] = 2, - ACTIONS(1500), 6, + [11861] = 2, + ACTIONS(1531), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1498), 29, + ACTIONS(1529), 29, sym__verbatim_begin, - sym_insert_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25989,17 +26794,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11903] = 2, - ACTIONS(1492), 6, + [11901] = 2, + ACTIONS(1296), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1490), 29, + ACTIONS(1294), 29, sym__verbatim_begin, - sym__bracketed_text_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26027,17 +26832,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11943] = 2, - ACTIONS(1508), 6, + [11941] = 2, + ACTIONS(1475), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1506), 29, + ACTIONS(1473), 29, sym__verbatim_begin, - sym_insert_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26065,17 +26870,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11983] = 2, - ACTIONS(1294), 6, + [11981] = 3, + ACTIONS(1569), 1, + sym__non_whitespace_check, + ACTIONS(1279), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1292), 29, + ACTIONS(1283), 28, sym__verbatim_begin, - sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26104,16 +26910,16 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [12023] = 2, - ACTIONS(1488), 6, + ACTIONS(1527), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1486), 29, + ACTIONS(1525), 29, sym__verbatim_begin, - sym__bracketed_text_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26142,16 +26948,16 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [12063] = 2, - ACTIONS(1448), 6, + ACTIONS(1479), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1446), 29, + ACTIONS(1477), 29, sym__verbatim_begin, - sym_emphasis_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26180,16 +26986,16 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [12103] = 2, - ACTIONS(1484), 6, + ACTIONS(1483), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1482), 29, + ACTIONS(1481), 29, sym__verbatim_begin, - sym__bracketed_text_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26217,17 +27023,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12143] = 3, - ACTIONS(1570), 1, - sym__verbatim_begin, - ACTIONS(1286), 6, + [12143] = 2, + ACTIONS(1487), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1290), 28, + ACTIONS(1485), 29, + sym__verbatim_begin, sym_delete_end, anon_sym_LBRACE_, anon_sym__, @@ -26256,15 +27061,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12185] = 2, - ACTIONS(1456), 6, + [12183] = 2, + ACTIONS(1491), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1454), 29, + ACTIONS(1489), 29, sym__verbatim_begin, sym_delete_end, anon_sym_LBRACE_, @@ -26294,15 +27099,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12225] = 2, - ACTIONS(1504), 6, + [12223] = 2, + ACTIONS(1495), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1502), 29, + ACTIONS(1493), 29, sym__verbatim_begin, sym_delete_end, anon_sym_LBRACE_, @@ -26332,17 +27137,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12265] = 2, - ACTIONS(1545), 6, + [12263] = 2, + ACTIONS(1499), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1543), 29, + ACTIONS(1497), 29, sym__verbatim_begin, - sym_emphasis_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26370,17 +27175,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12305] = 2, - ACTIONS(1438), 6, + [12303] = 2, + ACTIONS(1503), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1436), 29, + ACTIONS(1501), 29, sym__verbatim_begin, - sym__bracketed_text_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26408,15 +27213,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12345] = 2, - ACTIONS(1541), 6, + [12343] = 2, + ACTIONS(1296), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1539), 29, + ACTIONS(1294), 29, sym__verbatim_begin, sym_emphasis_end, anon_sym_LBRACE_, @@ -26446,17 +27251,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12385] = 2, - ACTIONS(1294), 6, + [12383] = 2, + ACTIONS(1523), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1292), 29, + ACTIONS(1521), 29, sym__verbatim_begin, - sym_delete_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26484,17 +27289,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12425] = 2, - ACTIONS(1515), 6, + [12423] = 2, + ACTIONS(1519), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1513), 29, + ACTIONS(1517), 29, sym__verbatim_begin, - sym_delete_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26522,17 +27327,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12465] = 2, - ACTIONS(1480), 6, + [12463] = 2, + ACTIONS(1507), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1478), 29, + ACTIONS(1505), 29, sym__verbatim_begin, - sym__bracketed_text_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26560,17 +27365,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12505] = 2, - ACTIONS(1537), 6, + [12503] = 3, + ACTIONS(1571), 1, + sym__non_whitespace_check, + ACTIONS(1279), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1535), 29, + ACTIONS(1283), 28, sym__verbatim_begin, - sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26599,14 +27405,14 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [12545] = 2, - ACTIONS(1442), 6, + ACTIONS(1511), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1440), 29, + ACTIONS(1509), 29, sym__verbatim_begin, sym_delete_end, anon_sym_LBRACE_, @@ -26637,14 +27443,14 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [12585] = 2, - ACTIONS(1521), 6, + ACTIONS(1442), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1519), 29, + ACTIONS(1440), 29, sym__verbatim_begin, sym_delete_end, anon_sym_LBRACE_, @@ -26675,16 +27481,16 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [12625] = 2, - ACTIONS(1525), 6, + ACTIONS(1464), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1523), 29, + ACTIONS(1462), 29, sym__verbatim_begin, - sym_delete_end, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26713,14 +27519,14 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [12665] = 2, - ACTIONS(1529), 6, + ACTIONS(1515), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1527), 29, + ACTIONS(1513), 29, sym__verbatim_begin, sym_delete_end, anon_sym_LBRACE_, @@ -26751,14 +27557,14 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [12705] = 2, - ACTIONS(1533), 6, + ACTIONS(1519), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1531), 29, + ACTIONS(1517), 29, sym__verbatim_begin, sym_delete_end, anon_sym_LBRACE_, @@ -26789,14 +27595,14 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [12745] = 2, - ACTIONS(1537), 6, + ACTIONS(1523), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1535), 29, + ACTIONS(1521), 29, sym__verbatim_begin, sym_delete_end, anon_sym_LBRACE_, @@ -26827,14 +27633,14 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [12785] = 2, - ACTIONS(1541), 6, + ACTIONS(1527), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1539), 29, + ACTIONS(1525), 29, sym__verbatim_begin, sym_delete_end, anon_sym_LBRACE_, @@ -26865,16 +27671,16 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [12825] = 2, - ACTIONS(1476), 6, + ACTIONS(1531), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1474), 29, + ACTIONS(1529), 29, sym__verbatim_begin, - sym__bracketed_text_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26903,16 +27709,16 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [12865] = 2, - ACTIONS(1533), 6, + ACTIONS(1535), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1531), 29, + ACTIONS(1533), 29, sym__verbatim_begin, - sym_emphasis_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26941,16 +27747,16 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [12905] = 2, - ACTIONS(1529), 6, + ACTIONS(1539), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1527), 29, + ACTIONS(1537), 29, sym__verbatim_begin, - sym_emphasis_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26979,16 +27785,16 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [12945] = 2, - ACTIONS(1525), 6, + ACTIONS(1543), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1523), 29, + ACTIONS(1541), 29, sym__verbatim_begin, - sym_emphasis_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27017,14 +27823,14 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [12985] = 2, - ACTIONS(1545), 6, + ACTIONS(1446), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1543), 29, + ACTIONS(1444), 29, sym__verbatim_begin, sym_delete_end, anon_sym_LBRACE_, @@ -27055,16 +27861,16 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [13025] = 2, - ACTIONS(1472), 6, + ACTIONS(1450), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1470), 29, + ACTIONS(1448), 29, sym__verbatim_begin, - sym__bracketed_text_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27093,14 +27899,14 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [13065] = 2, - ACTIONS(1448), 6, + ACTIONS(1454), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1446), 29, + ACTIONS(1452), 29, sym__verbatim_begin, sym_delete_end, anon_sym_LBRACE_, @@ -27131,14 +27937,14 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [13105] = 2, - ACTIONS(1452), 6, + ACTIONS(1438), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1450), 29, + ACTIONS(1436), 29, sym__verbatim_begin, sym_delete_end, anon_sym_LBRACE_, @@ -27169,14 +27975,14 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [13145] = 2, - ACTIONS(1468), 6, + ACTIONS(1438), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1466), 29, + ACTIONS(1436), 29, sym__verbatim_begin, sym__bracketed_text_end, anon_sym_LBRACE_, @@ -27207,16 +28013,16 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [13185] = 2, - ACTIONS(1460), 6, + ACTIONS(1454), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1458), 29, + ACTIONS(1452), 29, sym__verbatim_begin, - sym_delete_end, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27249,8 +28055,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, ACTIONS(1462), 29, sym__verbatim_begin, @@ -27283,16 +28089,16 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [13265] = 2, - ACTIONS(1468), 6, + ACTIONS(1515), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1466), 29, + ACTIONS(1513), 29, sym__verbatim_begin, - sym_delete_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27321,16 +28127,16 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [13305] = 2, - ACTIONS(1472), 6, + ACTIONS(1450), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1470), 29, + ACTIONS(1448), 29, sym__verbatim_begin, - sym_delete_end, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27359,16 +28165,16 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [13345] = 2, - ACTIONS(1476), 6, + ACTIONS(1442), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1474), 29, + ACTIONS(1440), 29, sym__verbatim_begin, - sym_delete_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27397,16 +28203,16 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [13385] = 2, - ACTIONS(1480), 6, + ACTIONS(1446), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1478), 29, + ACTIONS(1444), 29, sym__verbatim_begin, - sym_delete_end, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27434,17 +28240,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13425] = 2, - ACTIONS(1438), 6, + [13425] = 3, + ACTIONS(1573), 1, + sym__verbatim_begin, + ACTIONS(1279), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1436), 29, - sym__verbatim_begin, - sym_delete_end, + ACTIONS(1283), 28, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27463,6 +28269,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -27472,17 +28279,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13465] = 2, - ACTIONS(1484), 6, + [13467] = 2, + ACTIONS(1460), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1482), 29, + ACTIONS(1458), 29, sym__verbatim_begin, - sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27501,6 +28307,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -27510,17 +28317,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13505] = 2, - ACTIONS(1488), 6, + [13507] = 2, + ACTIONS(1471), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1486), 29, + ACTIONS(1469), 29, sym__verbatim_begin, - sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27539,6 +28345,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -27548,17 +28355,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13545] = 2, - ACTIONS(1492), 6, + [13547] = 2, + ACTIONS(1511), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1490), 29, + ACTIONS(1509), 29, sym__verbatim_begin, - sym_delete_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27586,17 +28393,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13585] = 2, - ACTIONS(1496), 6, + [13587] = 2, + ACTIONS(1543), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1494), 29, + ACTIONS(1541), 29, sym__verbatim_begin, - sym_delete_end, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27624,17 +28431,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13625] = 2, - ACTIONS(1500), 6, + [13627] = 2, + ACTIONS(1507), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1498), 29, + ACTIONS(1505), 29, sym__verbatim_begin, - sym_delete_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27662,17 +28469,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13665] = 2, - ACTIONS(1464), 6, + [13667] = 2, + ACTIONS(1296), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1462), 29, + ACTIONS(1294), 29, sym__verbatim_begin, - sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27691,6 +28497,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -27700,17 +28507,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13705] = 2, - ACTIONS(1508), 6, + [13707] = 2, + ACTIONS(1475), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1506), 29, + ACTIONS(1473), 29, sym__verbatim_begin, - sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27729,6 +28535,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -27738,17 +28545,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13745] = 2, - ACTIONS(1521), 6, + [13747] = 2, + ACTIONS(1539), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1519), 29, + ACTIONS(1537), 29, sym__verbatim_begin, - sym_emphasis_end, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27776,15 +28583,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13785] = 2, - ACTIONS(1442), 6, + [13787] = 2, + ACTIONS(1503), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1440), 29, + ACTIONS(1501), 29, sym__verbatim_begin, sym_emphasis_end, anon_sym_LBRACE_, @@ -27814,17 +28621,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13825] = 2, - ACTIONS(1460), 6, + [13827] = 2, + ACTIONS(1479), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1458), 29, + ACTIONS(1477), 29, sym__verbatim_begin, - sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27843,6 +28649,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -27852,17 +28659,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13865] = 2, - ACTIONS(1515), 6, + [13867] = 2, + ACTIONS(1483), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1513), 29, + ACTIONS(1481), 29, sym__verbatim_begin, - sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27881,6 +28687,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -27890,17 +28697,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13905] = 3, - ACTIONS(1573), 1, - sym__verbatim_begin, - ACTIONS(1286), 6, + [13907] = 2, + ACTIONS(1487), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1290), 28, + ACTIONS(1485), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27930,14 +28736,14 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [13947] = 2, - ACTIONS(1456), 6, + ACTIONS(1491), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1454), 29, + ACTIONS(1489), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -27968,14 +28774,14 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [13987] = 2, - ACTIONS(1504), 6, + ACTIONS(1495), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1502), 29, + ACTIONS(1493), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -28006,16 +28812,15 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [14027] = 2, - ACTIONS(1452), 6, + ACTIONS(1499), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1450), 29, + ACTIONS(1497), 29, sym__verbatim_begin, - sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28034,6 +28839,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -28043,18 +28849,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14067] = 4, - ACTIONS(1576), 1, - anon_sym_LBRACE, - STATE(451), 1, - sym_comment, - ACTIONS(1313), 5, + [14067] = 2, + ACTIONS(1503), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1311), 28, + ACTIONS(1501), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -28074,6 +28877,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -28083,15 +28887,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14111] = 2, - ACTIONS(1504), 6, + [14107] = 2, + ACTIONS(1499), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1502), 29, + ACTIONS(1497), 29, sym__verbatim_begin, sym_emphasis_end, anon_sym_LBRACE_, @@ -28121,16 +28925,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14151] = 2, - ACTIONS(1294), 6, + [14147] = 2, + ACTIONS(1495), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1292), 29, + ACTIONS(1493), 29, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28149,7 +28954,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -28159,16 +28963,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14191] = 2, - ACTIONS(1515), 6, + [14187] = 2, + ACTIONS(1491), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1513), 29, + ACTIONS(1489), 29, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28187,7 +28992,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -28197,17 +29001,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14231] = 2, - ACTIONS(1448), 6, + [14227] = 2, + ACTIONS(1507), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1446), 29, + ACTIONS(1505), 29, sym__verbatim_begin, - sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28226,6 +29029,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -28235,17 +29039,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14271] = 2, - ACTIONS(1456), 6, + [14267] = 2, + ACTIONS(1535), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1454), 29, + ACTIONS(1533), 29, sym__verbatim_begin, - sym_emphasis_end, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28273,17 +29077,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14311] = 2, - ACTIONS(1545), 6, + [14307] = 2, + ACTIONS(1511), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1543), 29, + ACTIONS(1509), 29, sym__verbatim_begin, - sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28302,6 +29105,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -28311,16 +29115,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14351] = 2, - ACTIONS(1521), 6, + [14347] = 2, + ACTIONS(1543), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1519), 29, + ACTIONS(1541), 29, sym__verbatim_begin, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28339,7 +29144,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -28349,16 +29153,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14391] = 2, - ACTIONS(1525), 6, + [14387] = 2, + ACTIONS(1531), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1523), 29, + ACTIONS(1529), 29, sym__verbatim_begin, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28377,7 +29182,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -28387,15 +29191,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14431] = 2, - ACTIONS(1529), 6, + [14427] = 2, + ACTIONS(1515), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1527), 29, + ACTIONS(1513), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -28425,15 +29229,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14471] = 2, - ACTIONS(1533), 6, + [14467] = 2, + ACTIONS(1519), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1531), 29, + ACTIONS(1517), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -28463,15 +29267,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14511] = 2, - ACTIONS(1537), 6, + [14507] = 2, + ACTIONS(1523), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1535), 29, + ACTIONS(1521), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -28501,15 +29305,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14551] = 2, - ACTIONS(1541), 6, + [14547] = 2, + ACTIONS(1527), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1539), 29, + ACTIONS(1525), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -28539,17 +29343,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14591] = 2, - ACTIONS(1545), 6, + [14587] = 2, + ACTIONS(1531), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1543), 29, + ACTIONS(1529), 29, sym__verbatim_begin, - sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28568,6 +29371,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -28577,18 +29381,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14631] = 3, - ACTIONS(1578), 1, - sym__verbatim_begin, - ACTIONS(1286), 6, + [14627] = 2, + ACTIONS(1535), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1290), 28, - sym_emphasis_end, + ACTIONS(1533), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28607,6 +29409,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -28616,17 +29419,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14673] = 2, - ACTIONS(1438), 6, + [14667] = 2, + ACTIONS(1539), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1436), 29, + ACTIONS(1537), 29, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28645,6 +29447,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -28654,17 +29457,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14713] = 2, - ACTIONS(1484), 6, + [14707] = 2, + ACTIONS(1543), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1482), 29, + ACTIONS(1541), 29, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28683,6 +29485,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -28692,15 +29495,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14753] = 2, - ACTIONS(1545), 6, + [14747] = 2, + ACTIONS(1446), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1543), 29, + ACTIONS(1444), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -28730,17 +29533,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14793] = 2, - ACTIONS(1541), 6, + [14787] = 2, + ACTIONS(1450), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1539), 29, + ACTIONS(1448), 29, sym__verbatim_begin, - sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28759,6 +29561,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -28768,15 +29571,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14833] = 2, - ACTIONS(1448), 6, + [14827] = 2, + ACTIONS(1454), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1446), 29, + ACTIONS(1452), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -28806,15 +29609,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14873] = 2, - ACTIONS(1452), 6, + [14867] = 2, + ACTIONS(1438), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1450), 29, + ACTIONS(1436), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -28844,15 +29647,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14913] = 2, - ACTIONS(1537), 6, + [14907] = 2, + ACTIONS(1527), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1535), 29, + ACTIONS(1525), 29, sym__verbatim_begin, sym__bracketed_text_end, anon_sym_LBRACE_, @@ -28882,16 +29685,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14953] = 2, - ACTIONS(1460), 6, + [14947] = 2, + ACTIONS(1523), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1458), 29, + ACTIONS(1521), 29, sym__verbatim_begin, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28910,7 +29714,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -28920,13 +29723,13 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14993] = 2, + [14987] = 2, ACTIONS(1464), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, ACTIONS(1462), 29, sym__verbatim_begin, @@ -28958,16 +29761,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15033] = 2, - ACTIONS(1468), 6, + [15027] = 2, + ACTIONS(1487), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1466), 29, + ACTIONS(1485), 29, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28986,7 +29790,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -28996,16 +29799,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15073] = 2, - ACTIONS(1472), 6, + [15067] = 2, + ACTIONS(1483), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1470), 29, + ACTIONS(1481), 29, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29024,7 +29828,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -29034,16 +29837,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15113] = 2, - ACTIONS(1476), 6, + [15107] = 2, + ACTIONS(1479), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1474), 29, + ACTIONS(1477), 29, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29062,7 +29866,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -29072,16 +29875,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15153] = 2, - ACTIONS(1480), 6, + [15147] = 2, + ACTIONS(1519), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1478), 29, + ACTIONS(1517), 29, sym__verbatim_begin, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29100,7 +29904,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -29110,16 +29913,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15193] = 2, - ACTIONS(1438), 6, + [15187] = 3, + ACTIONS(1576), 1, + sym__verbatim_begin, + ACTIONS(1279), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1436), 29, - sym__verbatim_begin, + ACTIONS(1283), 28, + sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29138,7 +29943,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -29148,16 +29952,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15233] = 2, - ACTIONS(1484), 6, + [15229] = 2, + ACTIONS(1460), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1482), 29, + ACTIONS(1458), 29, sym__verbatim_begin, + sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29176,7 +29981,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -29186,16 +29990,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15273] = 2, - ACTIONS(1488), 6, + [15269] = 2, + ACTIONS(1471), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1486), 29, + ACTIONS(1469), 29, sym__verbatim_begin, + sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29214,7 +30019,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -29224,16 +30028,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15313] = 2, - ACTIONS(1492), 6, + [15309] = 2, + ACTIONS(1475), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1490), 29, + ACTIONS(1473), 29, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29252,7 +30057,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -29262,16 +30066,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15353] = 2, - ACTIONS(1496), 6, + [15349] = 2, + ACTIONS(1515), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1494), 29, + ACTIONS(1513), 29, sym__verbatim_begin, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29290,7 +30095,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -29300,16 +30104,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15393] = 2, - ACTIONS(1500), 6, + [15389] = 2, + ACTIONS(1296), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1498), 29, + ACTIONS(1294), 29, sym__verbatim_begin, + sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29328,7 +30133,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -29338,17 +30142,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15433] = 2, - ACTIONS(1533), 6, + [15429] = 2, + ACTIONS(1475), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1531), 29, + ACTIONS(1473), 29, sym__verbatim_begin, - sym__bracketed_text_end, + sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29376,16 +30180,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15473] = 2, - ACTIONS(1508), 6, + [15469] = 2, + ACTIONS(1442), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1506), 29, + ACTIONS(1440), 29, sym__verbatim_begin, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29404,7 +30209,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -29414,17 +30218,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15513] = 2, - ACTIONS(1529), 6, + [15509] = 4, + ACTIONS(1579), 1, + anon_sym_LBRACE, + STATE(495), 1, + sym_comment, + ACTIONS(1306), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1527), 29, + ACTIONS(1304), 28, sym__verbatim_begin, - sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29453,16 +30259,16 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [15553] = 2, - ACTIONS(1525), 6, + ACTIONS(1479), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1523), 29, + ACTIONS(1477), 29, sym__verbatim_begin, - sym__bracketed_text_end, + sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29491,16 +30297,16 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [15593] = 2, - ACTIONS(1508), 6, + ACTIONS(1483), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1506), 29, + ACTIONS(1481), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29529,16 +30335,16 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [15633] = 2, - ACTIONS(1521), 6, + ACTIONS(1487), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1519), 29, + ACTIONS(1485), 29, sym__verbatim_begin, - sym__bracketed_text_end, + sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29566,17 +30372,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15673] = 3, - ACTIONS(1581), 1, - sym__verbatim_begin, - ACTIONS(1286), 6, + [15673] = 2, + ACTIONS(1491), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1290), 28, + ACTIONS(1489), 29, + sym__verbatim_begin, sym__image_description_end, anon_sym_LBRACE_, anon_sym__, @@ -29605,15 +30410,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15715] = 2, - ACTIONS(1456), 6, + [15713] = 2, + ACTIONS(1495), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1454), 29, + ACTIONS(1493), 29, sym__verbatim_begin, sym__image_description_end, anon_sym_LBRACE_, @@ -29643,15 +30448,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15755] = 2, - ACTIONS(1504), 6, + [15753] = 2, + ACTIONS(1499), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1502), 29, + ACTIONS(1497), 29, sym__verbatim_begin, sym__image_description_end, anon_sym_LBRACE_, @@ -29681,17 +30486,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15795] = 2, - ACTIONS(1442), 6, + [15793] = 2, + ACTIONS(1503), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1440), 29, + ACTIONS(1501), 29, sym__verbatim_begin, - sym__bracketed_text_end, + sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29719,17 +30524,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15835] = 2, - ACTIONS(1488), 6, + [15833] = 2, + ACTIONS(1471), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1486), 29, + ACTIONS(1469), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29757,17 +30562,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15875] = 2, - ACTIONS(1294), 6, + [15873] = 2, + ACTIONS(1460), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1292), 29, + ACTIONS(1458), 29, sym__verbatim_begin, - sym__image_description_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29795,17 +30600,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15915] = 2, - ACTIONS(1515), 6, + [15913] = 3, + ACTIONS(1581), 1, + sym__verbatim_begin, + ACTIONS(1279), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1513), 29, - sym__verbatim_begin, - sym__image_description_end, + ACTIONS(1283), 28, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29834,16 +30640,16 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [15955] = 2, - ACTIONS(1515), 6, + ACTIONS(1507), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1513), 29, + ACTIONS(1505), 29, sym__verbatim_begin, - sym__bracketed_text_end, + sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29872,14 +30678,14 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [15995] = 2, - ACTIONS(1294), 6, + ACTIONS(1511), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1292), 29, + ACTIONS(1509), 29, sym__verbatim_begin, sym__bracketed_text_end, anon_sym_LBRACE_, @@ -29910,14 +30716,14 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [16035] = 2, - ACTIONS(1442), 6, + ACTIONS(1511), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1440), 29, + ACTIONS(1509), 29, sym__verbatim_begin, sym__image_description_end, anon_sym_LBRACE_, @@ -29948,14 +30754,14 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [16075] = 2, - ACTIONS(1521), 6, + ACTIONS(1442), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1519), 29, + ACTIONS(1440), 29, sym__verbatim_begin, sym__image_description_end, anon_sym_LBRACE_, @@ -29986,16 +30792,16 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [16115] = 2, - ACTIONS(1525), 6, + ACTIONS(1507), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1523), 29, + ACTIONS(1505), 29, sym__verbatim_begin, - sym__image_description_end, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30024,14 +30830,14 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [16155] = 2, - ACTIONS(1529), 6, + ACTIONS(1515), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1527), 29, + ACTIONS(1513), 29, sym__verbatim_begin, sym__image_description_end, anon_sym_LBRACE_, @@ -30062,14 +30868,14 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [16195] = 2, - ACTIONS(1533), 6, + ACTIONS(1519), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1531), 29, + ACTIONS(1517), 29, sym__verbatim_begin, sym__image_description_end, anon_sym_LBRACE_, @@ -30100,14 +30906,14 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [16235] = 2, - ACTIONS(1537), 6, + ACTIONS(1523), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1535), 29, + ACTIONS(1521), 29, sym__verbatim_begin, sym__image_description_end, anon_sym_LBRACE_, @@ -30138,14 +30944,14 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [16275] = 2, - ACTIONS(1541), 6, + ACTIONS(1527), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1539), 29, + ACTIONS(1525), 29, sym__verbatim_begin, sym__image_description_end, anon_sym_LBRACE_, @@ -30176,16 +30982,16 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [16315] = 2, - ACTIONS(1492), 6, + ACTIONS(1531), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1490), 29, + ACTIONS(1529), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30214,16 +31020,16 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [16355] = 2, - ACTIONS(1504), 6, + ACTIONS(1535), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1502), 29, + ACTIONS(1533), 29, sym__verbatim_begin, - sym__bracketed_text_end, + sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30252,16 +31058,16 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [16395] = 2, - ACTIONS(1456), 6, + ACTIONS(1539), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1454), 29, + ACTIONS(1537), 29, sym__verbatim_begin, - sym__bracketed_text_end, + sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30289,18 +31095,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16435] = 3, - ACTIONS(1584), 1, - sym__verbatim_begin, - ACTIONS(1286), 6, + [16435] = 2, + ACTIONS(1543), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1290), 28, - sym__bracketed_text_end, + ACTIONS(1541), 29, + sym__verbatim_begin, + sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30328,15 +31133,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16477] = 2, - ACTIONS(1545), 6, + [16475] = 2, + ACTIONS(1446), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1543), 29, + ACTIONS(1444), 29, sym__verbatim_begin, sym__image_description_end, anon_sym_LBRACE_, @@ -30366,17 +31171,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16517] = 2, - ACTIONS(1496), 6, + [16515] = 2, + ACTIONS(1450), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1494), 29, + ACTIONS(1448), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30404,15 +31209,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16557] = 2, - ACTIONS(1448), 6, + [16555] = 2, + ACTIONS(1454), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1446), 29, + ACTIONS(1452), 29, sym__verbatim_begin, sym__image_description_end, anon_sym_LBRACE_, @@ -30442,15 +31247,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16597] = 2, - ACTIONS(1452), 6, + [16595] = 2, + ACTIONS(1438), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1450), 29, + ACTIONS(1436), 29, sym__verbatim_begin, sym__image_description_end, anon_sym_LBRACE_, @@ -30480,16 +31285,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16637] = 2, - ACTIONS(1500), 6, + [16635] = 3, + ACTIONS(1584), 1, + sym__verbatim_begin, + ACTIONS(1279), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1498), 29, - sym__verbatim_begin, + ACTIONS(1283), 28, ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, @@ -30519,16 +31325,16 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [16677] = 2, - ACTIONS(1460), 6, + ACTIONS(1503), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1458), 29, + ACTIONS(1501), 29, sym__verbatim_begin, - sym__image_description_end, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30561,8 +31367,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, ACTIONS(1462), 29, sym__verbatim_begin, @@ -30595,16 +31401,16 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [16757] = 2, - ACTIONS(1468), 6, + ACTIONS(1499), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1466), 29, + ACTIONS(1497), 29, sym__verbatim_begin, - sym__image_description_end, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30633,16 +31439,16 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [16797] = 2, - ACTIONS(1472), 6, + ACTIONS(1495), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1470), 29, + ACTIONS(1493), 29, sym__verbatim_begin, - sym__image_description_end, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30671,16 +31477,16 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [16837] = 2, - ACTIONS(1476), 6, + ACTIONS(1491), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1474), 29, + ACTIONS(1489), 29, sym__verbatim_begin, - sym__image_description_end, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30709,16 +31515,16 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [16877] = 2, - ACTIONS(1480), 6, + ACTIONS(1487), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1478), 29, + ACTIONS(1485), 29, sym__verbatim_begin, - sym__image_description_end, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30746,17 +31552,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16917] = 2, - ACTIONS(1438), 6, + [16917] = 3, + ACTIONS(1587), 1, + sym__verbatim_begin, + ACTIONS(1279), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1436), 29, - sym__verbatim_begin, - sym__image_description_end, + ACTIONS(1283), 28, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30784,17 +31591,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16957] = 2, - ACTIONS(1484), 6, + [16959] = 2, + ACTIONS(1460), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1482), 29, + ACTIONS(1458), 29, sym__verbatim_begin, - sym__image_description_end, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30822,17 +31629,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16997] = 2, - ACTIONS(1488), 6, + [16999] = 2, + ACTIONS(1471), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1486), 29, + ACTIONS(1469), 29, sym__verbatim_begin, - sym__image_description_end, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30860,17 +31667,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17037] = 2, - ACTIONS(1492), 6, + [17039] = 2, + ACTIONS(1464), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1490), 29, + ACTIONS(1462), 29, sym__verbatim_begin, - sym__image_description_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30898,17 +31705,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17077] = 2, - ACTIONS(1496), 6, + [17079] = 2, + ACTIONS(1296), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1494), 29, + ACTIONS(1294), 29, sym__verbatim_begin, - sym__image_description_end, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30936,17 +31743,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17117] = 2, - ACTIONS(1500), 6, + [17119] = 2, + ACTIONS(1475), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1498), 29, + ACTIONS(1473), 29, sym__verbatim_begin, - sym__image_description_end, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30974,18 +31781,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17157] = 3, - ACTIONS(1587), 1, - sym__verbatim_begin, - ACTIONS(1286), 6, + [17159] = 2, + ACTIONS(1483), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1290), 28, - ts_builtin_sym_end, + ACTIONS(1481), 29, + sym__verbatim_begin, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31014,16 +31820,16 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [17199] = 2, - ACTIONS(1508), 6, + ACTIONS(1479), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1506), 29, + ACTIONS(1477), 29, sym__verbatim_begin, - sym__image_description_end, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31052,15 +31858,15 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [17239] = 2, - ACTIONS(1537), 6, + ACTIONS(1592), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1535), 28, + ACTIONS(1590), 29, sym__verbatim_begin, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31088,16 +31894,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17278] = 3, - ACTIONS(1590), 1, - sym_emphasis_end, - ACTIONS(1313), 5, + [17278] = 2, + ACTIONS(1450), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1311), 28, + ACTIONS(1448), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -31126,16 +31931,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17319] = 2, - ACTIONS(1594), 5, + [17317] = 2, + ACTIONS(1592), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1592), 29, + ACTIONS(1590), 29, sym__verbatim_begin, - sym__image_description_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31163,16 +31968,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17358] = 2, - ACTIONS(1598), 5, + [17356] = 2, + ACTIONS(1596), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1596), 29, + ACTIONS(1594), 29, sym__verbatim_begin, - sym__image_description_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31200,16 +32005,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17397] = 2, - ACTIONS(1594), 5, + [17395] = 2, + ACTIONS(1600), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1592), 29, + ACTIONS(1598), 29, sym__verbatim_begin, - sym_strong_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31237,16 +32042,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17436] = 2, - ACTIONS(1602), 5, + [17434] = 2, + ACTIONS(1604), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1600), 29, + ACTIONS(1602), 29, sym__verbatim_begin, - sym_strong_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31274,16 +32079,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17475] = 2, - ACTIONS(1606), 5, + [17473] = 2, + ACTIONS(1596), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1604), 29, + ACTIONS(1594), 29, sym__verbatim_begin, - sym_superscript_end, + sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31311,14 +32116,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17514] = 2, - ACTIONS(1610), 5, + [17512] = 2, + ACTIONS(1592), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1608), 29, + ACTIONS(1590), 29, sym__verbatim_begin, sym__image_description_end, anon_sym_LBRACE_, @@ -31348,16 +32153,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17553] = 2, - ACTIONS(1602), 5, + [17551] = 2, + ACTIONS(1608), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1600), 29, + ACTIONS(1606), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31385,14 +32190,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17592] = 2, - ACTIONS(1606), 5, + [17590] = 2, + ACTIONS(1608), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1604), 29, + ACTIONS(1606), 29, sym__verbatim_begin, sym__image_description_end, anon_sym_LBRACE_, @@ -31422,14 +32227,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17631] = 2, - ACTIONS(1606), 5, + [17629] = 2, + ACTIONS(1604), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1604), 29, + ACTIONS(1602), 29, sym__verbatim_begin, sym__bracketed_text_end, anon_sym_LBRACE_, @@ -31459,16 +32264,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17670] = 2, - ACTIONS(1610), 5, + [17668] = 2, + ACTIONS(1604), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1608), 29, + ACTIONS(1602), 29, sym__verbatim_begin, - sym_superscript_end, + sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31496,16 +32301,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17709] = 2, - ACTIONS(1598), 5, + [17707] = 2, + ACTIONS(1600), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1596), 29, + ACTIONS(1598), 29, sym__verbatim_begin, - sym_superscript_end, + sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31533,16 +32338,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17748] = 2, - ACTIONS(1606), 5, + [17746] = 2, + ACTIONS(1608), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1604), 29, + ACTIONS(1606), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31570,16 +32375,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17787] = 2, - ACTIONS(1594), 5, + [17785] = 2, + ACTIONS(1600), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1592), 29, + ACTIONS(1598), 29, sym__verbatim_begin, - sym_superscript_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31607,16 +32412,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17826] = 2, - ACTIONS(1602), 5, + [17824] = 2, + ACTIONS(1600), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1600), 29, + ACTIONS(1598), 29, sym__verbatim_begin, - sym_superscript_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31644,14 +32449,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17865] = 2, - ACTIONS(1602), 5, + [17863] = 2, + ACTIONS(1596), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1600), 29, + ACTIONS(1594), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -31681,14 +32486,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17904] = 2, - ACTIONS(1594), 5, + [17902] = 2, + ACTIONS(1592), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1592), 29, + ACTIONS(1590), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -31718,14 +32523,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17943] = 2, - ACTIONS(1598), 5, + [17941] = 2, + ACTIONS(1608), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1596), 29, + ACTIONS(1606), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -31755,16 +32560,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17982] = 2, - ACTIONS(1610), 5, + [17980] = 2, + ACTIONS(1604), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1608), 29, + ACTIONS(1602), 29, sym__verbatim_begin, - sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31783,6 +32587,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -31792,16 +32597,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18021] = 2, - ACTIONS(1598), 5, + [18019] = 2, + ACTIONS(1600), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1596), 29, + ACTIONS(1598), 29, sym__verbatim_begin, - sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31820,6 +32624,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -31829,16 +32634,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18060] = 2, - ACTIONS(1610), 5, + [18058] = 2, + ACTIONS(1604), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1608), 29, + ACTIONS(1602), 29, sym__verbatim_begin, - sym_strong_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31866,14 +32671,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18099] = 2, - ACTIONS(1610), 5, + [18097] = 3, + ACTIONS(1610), 1, + sym_strong_end, + ACTIONS(1306), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1608), 29, + ACTIONS(1304), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -31893,7 +32700,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -31904,15 +32710,15 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [18138] = 2, - ACTIONS(1598), 5, + ACTIONS(1608), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1596), 29, + ACTIONS(1606), 29, sym__verbatim_begin, - sym__bracketed_text_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31941,14 +32747,15 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [18177] = 2, - ACTIONS(1606), 5, + ACTIONS(1596), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1604), 29, + ACTIONS(1594), 29, sym__verbatim_begin, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31967,7 +32774,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -31978,15 +32784,15 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [18216] = 2, - ACTIONS(1606), 5, + ACTIONS(1592), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1604), 29, + ACTIONS(1590), 29, sym__verbatim_begin, - sym_subscript_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32015,13 +32821,13 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [18255] = 2, - ACTIONS(1594), 5, + ACTIONS(1592), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1592), 29, + ACTIONS(1590), 29, sym__verbatim_begin, sym__bracketed_text_end, anon_sym_LBRACE_, @@ -32052,15 +32858,15 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [18294] = 2, - ACTIONS(1606), 5, + ACTIONS(1596), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1604), 29, + ACTIONS(1594), 29, sym__verbatim_begin, - sym_emphasis_end, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32089,13 +32895,13 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [18333] = 2, - ACTIONS(1602), 5, + ACTIONS(1608), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1600), 29, + ACTIONS(1606), 29, sym__verbatim_begin, sym_delete_end, anon_sym_LBRACE_, @@ -32126,13 +32932,13 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [18372] = 2, - ACTIONS(1594), 5, + ACTIONS(1604), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1592), 29, + ACTIONS(1602), 29, sym__verbatim_begin, sym_delete_end, anon_sym_LBRACE_, @@ -32163,13 +32969,13 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [18411] = 2, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1596), 29, + ACTIONS(1598), 29, sym__verbatim_begin, sym_delete_end, anon_sym_LBRACE_, @@ -32200,15 +33006,15 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [18450] = 2, - ACTIONS(1610), 5, + ACTIONS(1592), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1608), 29, + ACTIONS(1590), 29, sym__verbatim_begin, - sym_delete_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32237,15 +33043,15 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [18489] = 2, - ACTIONS(1606), 5, + ACTIONS(1596), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1604), 29, + ACTIONS(1594), 29, sym__verbatim_begin, - sym_delete_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32273,16 +33079,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18528] = 2, - ACTIONS(1610), 5, + [18528] = 3, + ACTIONS(1612), 1, + sym__verbatim_begin, + ACTIONS(1279), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1608), 29, - sym__verbatim_begin, - sym_emphasis_end, + ACTIONS(1283), 27, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32310,16 +33117,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18567] = 2, - ACTIONS(1598), 5, + [18569] = 2, + ACTIONS(1460), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1596), 29, + ACTIONS(1458), 28, sym__verbatim_begin, - sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32347,16 +33154,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18606] = 3, - ACTIONS(1590), 1, - sym_strong_end, - ACTIONS(1313), 5, + [18608] = 2, + ACTIONS(1471), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1311), 28, + ACTIONS(1469), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32386,15 +33192,15 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [18647] = 2, - ACTIONS(1602), 5, + ACTIONS(1592), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1600), 29, + ACTIONS(1590), 29, sym__verbatim_begin, - sym_insert_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32423,15 +33229,15 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [18686] = 2, - ACTIONS(1594), 5, + ACTIONS(1296), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1592), 29, + ACTIONS(1294), 28, sym__verbatim_begin, - sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32460,15 +33266,15 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [18725] = 2, - ACTIONS(1598), 5, + ACTIONS(1475), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1596), 29, + ACTIONS(1473), 28, sym__verbatim_begin, - sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32497,15 +33303,15 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [18764] = 2, - ACTIONS(1602), 5, + ACTIONS(1596), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1600), 29, + ACTIONS(1594), 29, sym__verbatim_begin, - sym__bracketed_text_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32534,15 +33340,15 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [18803] = 2, - ACTIONS(1594), 5, + ACTIONS(1592), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1592), 29, + ACTIONS(1590), 29, sym__verbatim_begin, - sym_emphasis_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32571,15 +33377,15 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [18842] = 2, - ACTIONS(1610), 5, + ACTIONS(1479), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1608), 29, + ACTIONS(1477), 28, sym__verbatim_begin, - sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32608,15 +33414,15 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [18881] = 2, - ACTIONS(1606), 5, + ACTIONS(1483), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1604), 29, + ACTIONS(1481), 28, sym__verbatim_begin, - sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32644,16 +33450,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18920] = 3, - ACTIONS(1612), 1, - sym_strong_end, - ACTIONS(1313), 5, + [18920] = 2, + ACTIONS(1487), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1311), 28, + ACTIONS(1485), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32682,16 +33487,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18961] = 2, - ACTIONS(1602), 5, + [18959] = 2, + ACTIONS(1596), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1600), 29, + ACTIONS(1594), 29, sym__verbatim_begin, - sym_highlighted_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32719,17 +33524,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19000] = 3, - ACTIONS(1614), 1, - sym__verbatim_begin, - ACTIONS(1286), 6, + [18998] = 2, + ACTIONS(1495), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1290), 27, + ACTIONS(1493), 28, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32757,15 +33561,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19041] = 2, - ACTIONS(1456), 6, + [19037] = 2, + ACTIONS(1499), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1454), 28, + ACTIONS(1497), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32794,15 +33598,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19080] = 2, - ACTIONS(1504), 6, + [19076] = 2, + ACTIONS(1503), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1502), 28, + ACTIONS(1501), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32831,16 +33635,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19119] = 2, - ACTIONS(1610), 5, + [19115] = 2, + ACTIONS(1608), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1608), 29, + ACTIONS(1606), 29, sym__verbatim_begin, - sym_subscript_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32868,16 +33672,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19158] = 2, - ACTIONS(1294), 6, + [19154] = 2, + ACTIONS(1600), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1292), 28, + ACTIONS(1598), 29, sym__verbatim_begin, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32905,15 +33709,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19197] = 2, - ACTIONS(1515), 6, + [19193] = 2, + ACTIONS(1507), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1513), 28, + ACTIONS(1505), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32942,16 +33746,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19236] = 2, - ACTIONS(1606), 5, + [19232] = 3, + ACTIONS(1615), 1, + sym_strong_end, + ACTIONS(1306), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1604), 29, + ACTIONS(1304), 28, sym__verbatim_begin, - sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32979,16 +33784,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19275] = 2, - ACTIONS(1594), 5, + [19273] = 2, + ACTIONS(1511), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1592), 29, + ACTIONS(1509), 28, sym__verbatim_begin, - sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33016,13 +33821,13 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19314] = 2, + [19312] = 2, ACTIONS(1442), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, ACTIONS(1440), 28, sym__verbatim_begin, @@ -33053,16 +33858,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19353] = 2, - ACTIONS(1521), 6, + [19351] = 2, + ACTIONS(1608), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1519), 28, + ACTIONS(1606), 29, sym__verbatim_begin, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33090,15 +33895,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19392] = 2, - ACTIONS(1525), 6, + [19390] = 2, + ACTIONS(1515), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1523), 28, + ACTIONS(1513), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -33127,15 +33932,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19431] = 2, - ACTIONS(1529), 6, + [19429] = 2, + ACTIONS(1519), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1527), 28, + ACTIONS(1517), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -33164,15 +33969,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19470] = 2, - ACTIONS(1533), 6, + [19468] = 2, + ACTIONS(1523), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1531), 28, + ACTIONS(1521), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -33201,16 +34006,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19509] = 2, - ACTIONS(1598), 5, + [19507] = 2, + ACTIONS(1527), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1596), 29, + ACTIONS(1525), 28, sym__verbatim_begin, - sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33238,15 +34043,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19548] = 2, - ACTIONS(1500), 6, + [19546] = 2, + ACTIONS(1531), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1498), 28, + ACTIONS(1529), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -33275,16 +34080,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19587] = 2, - ACTIONS(1610), 5, + [19585] = 2, + ACTIONS(1535), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1608), 29, + ACTIONS(1533), 28, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33312,16 +34117,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19626] = 2, - ACTIONS(1598), 5, + [19624] = 2, + ACTIONS(1539), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1596), 29, + ACTIONS(1537), 28, sym__verbatim_begin, - sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33349,16 +34154,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19665] = 2, - ACTIONS(1610), 5, + [19663] = 2, + ACTIONS(1543), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1608), 29, + ACTIONS(1541), 28, sym__verbatim_begin, - sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33386,15 +34191,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19704] = 2, - ACTIONS(1545), 6, + [19702] = 2, + ACTIONS(1446), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1543), 28, + ACTIONS(1444), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -33423,16 +34228,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19743] = 2, - ACTIONS(1594), 5, + [19741] = 3, + ACTIONS(1615), 1, + sym_emphasis_end, + ACTIONS(1306), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1592), 29, + ACTIONS(1304), 28, sym__verbatim_begin, - sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33461,14 +34267,14 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [19782] = 2, - ACTIONS(1448), 6, + ACTIONS(1454), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1446), 28, + ACTIONS(1452), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -33498,14 +34304,14 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [19821] = 2, - ACTIONS(1452), 6, + ACTIONS(1438), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1450), 28, + ACTIONS(1436), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -33535,15 +34341,15 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [19860] = 2, - ACTIONS(1598), 5, + ACTIONS(1604), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1596), 29, + ACTIONS(1602), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33572,15 +34378,15 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [19899] = 2, - ACTIONS(1460), 6, + ACTIONS(1608), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1458), 28, + ACTIONS(1606), 29, sym__verbatim_begin, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33613,8 +34419,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, ACTIONS(1462), 28, sym__verbatim_begin, @@ -33646,15 +34452,15 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [19977] = 2, - ACTIONS(1468), 6, + ACTIONS(1592), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1466), 28, + ACTIONS(1590), 29, sym__verbatim_begin, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33683,15 +34489,15 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [20016] = 2, - ACTIONS(1472), 6, + ACTIONS(1596), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1470), 28, + ACTIONS(1594), 29, sym__verbatim_begin, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33720,15 +34526,15 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [20055] = 2, - ACTIONS(1476), 6, + ACTIONS(1604), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1474), 28, + ACTIONS(1602), 29, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33757,15 +34563,15 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [20094] = 2, - ACTIONS(1480), 6, + ACTIONS(1604), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1478), 28, + ACTIONS(1602), 29, sym__verbatim_begin, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33794,15 +34600,15 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [20133] = 2, - ACTIONS(1438), 6, + ACTIONS(1608), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1436), 28, + ACTIONS(1606), 29, sym__verbatim_begin, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33830,15 +34636,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [20172] = 2, - ACTIONS(1484), 6, + [20172] = 3, + ACTIONS(1610), 1, + sym_emphasis_end, + ACTIONS(1306), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1482), 28, + ACTIONS(1304), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -33867,16 +34674,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [20211] = 2, - ACTIONS(1488), 6, + [20213] = 2, + ACTIONS(1592), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1486), 28, + ACTIONS(1590), 29, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33904,16 +34711,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [20250] = 2, - ACTIONS(1492), 6, + [20252] = 2, + ACTIONS(1600), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1490), 28, + ACTIONS(1598), 29, sym__verbatim_begin, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33941,16 +34748,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [20289] = 2, - ACTIONS(1496), 6, + [20291] = 2, + ACTIONS(1596), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1494), 28, + ACTIONS(1594), 29, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33978,16 +34785,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [20328] = 2, - ACTIONS(1541), 6, + [20330] = 2, + ACTIONS(1600), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1539), 28, + ACTIONS(1598), 29, sym__verbatim_begin, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -34015,16 +34822,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [20367] = 2, - ACTIONS(1602), 5, + [20369] = 2, + ACTIONS(1608), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1600), 29, + ACTIONS(1606), 29, sym__verbatim_begin, - sym_subscript_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -34052,16 +34859,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [20406] = 2, - ACTIONS(1508), 6, + [20408] = 2, + ACTIONS(1600), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACE, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1506), 28, + ACTIONS(1598), 29, sym__verbatim_begin, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -34089,17 +34896,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [20445] = 3, - ACTIONS(1612), 1, - sym_emphasis_end, - ACTIONS(1313), 5, + [20447] = 2, + ACTIONS(1604), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1311), 28, + ACTIONS(1602), 29, sym__verbatim_begin, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -34128,15 +34934,15 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [20486] = 2, - ACTIONS(1602), 5, + ACTIONS(1596), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1600), 29, + ACTIONS(1594), 29, sym__verbatim_begin, - sym_emphasis_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -34165,15 +34971,15 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [20525] = 2, - ACTIONS(1606), 5, + ACTIONS(1491), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1604), 29, + ACTIONS(1489), 28, sym__verbatim_begin, - sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -34202,15 +35008,15 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [20564] = 2, - ACTIONS(1594), 5, + ACTIONS(1600), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1592), 29, + ACTIONS(1598), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -34239,15 +35045,15 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [20603] = 2, - ACTIONS(1602), 5, + ACTIONS(1604), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1600), 29, + ACTIONS(1602), 29, sym__verbatim_begin, - sym__image_description_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -34276,13 +35082,13 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [20642] = 2, - ACTIONS(1594), 5, + ACTIONS(1596), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1592), 28, + ACTIONS(1594), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -34312,13 +35118,13 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [20680] = 2, - ACTIONS(1610), 5, + ACTIONS(1600), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1608), 28, + ACTIONS(1598), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -34348,13 +35154,13 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [20718] = 2, - ACTIONS(1606), 5, + ACTIONS(1604), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1604), 28, + ACTIONS(1602), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -34384,13 +35190,13 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [20756] = 2, - ACTIONS(1602), 5, + ACTIONS(1608), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1600), 28, + ACTIONS(1606), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -34420,13 +35226,13 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, sym__newline, [20794] = 2, - ACTIONS(1598), 5, + ACTIONS(1592), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1596), 28, + ACTIONS(1590), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -34464,13 +35270,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(1625), 1, sym__inline_attribute_end, - STATE(641), 1, + STATE(661), 1, aux_sym_inline_attribute_repeat1, - STATE(658), 1, + STATE(668), 1, sym__comment_with_newline, - STATE(1056), 1, + STATE(1079), 1, sym_key, - STATE(657), 2, + STATE(667), 2, sym_class, sym_key_value, ACTIONS(1621), 3, @@ -34478,24 +35284,24 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, sym_identifier, [20863] = 9, - ACTIONS(1627), 1, + ACTIONS(1617), 1, sym__id, - ACTIONS(1630), 1, + ACTIONS(1619), 1, anon_sym_PERCENT, - ACTIONS(1636), 1, + ACTIONS(1623), 1, anon_sym_DOT, - ACTIONS(1639), 1, + ACTIONS(1627), 1, sym__inline_attribute_end, - STATE(630), 1, + STATE(661), 1, aux_sym_inline_attribute_repeat1, - STATE(658), 1, + STATE(668), 1, sym__comment_with_newline, - STATE(1056), 1, + STATE(1079), 1, sym_key, - STATE(657), 2, + STATE(667), 2, sym_class, sym_key_value, - ACTIONS(1633), 3, + ACTIONS(1621), 3, sym__whitespace1, sym__newline, sym_identifier, @@ -34506,15 +35312,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, ACTIONS(1623), 1, anon_sym_DOT, - ACTIONS(1641), 1, + ACTIONS(1629), 1, sym__inline_attribute_end, - STATE(630), 1, + STATE(652), 1, aux_sym_inline_attribute_repeat1, - STATE(658), 1, + STATE(668), 1, sym__comment_with_newline, - STATE(1056), 1, + STATE(1079), 1, sym_key, - STATE(657), 2, + STATE(667), 2, sym_class, sym_key_value, ACTIONS(1621), 3, @@ -34528,15 +35334,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, ACTIONS(1623), 1, anon_sym_DOT, - ACTIONS(1643), 1, + ACTIONS(1631), 1, sym__inline_attribute_end, - STATE(631), 1, + STATE(664), 1, aux_sym_inline_attribute_repeat1, - STATE(658), 1, + STATE(668), 1, sym__comment_with_newline, - STATE(1056), 1, + STATE(1079), 1, sym_key, - STATE(657), 2, + STATE(667), 2, sym_class, sym_key_value, ACTIONS(1621), 3, @@ -34550,15 +35356,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, ACTIONS(1623), 1, anon_sym_DOT, - ACTIONS(1645), 1, + ACTIONS(1633), 1, sym__inline_attribute_end, - STATE(645), 1, + STATE(661), 1, aux_sym_inline_attribute_repeat1, - STATE(658), 1, + STATE(668), 1, sym__comment_with_newline, - STATE(1056), 1, + STATE(1079), 1, sym_key, - STATE(657), 2, + STATE(667), 2, sym_class, sym_key_value, ACTIONS(1621), 3, @@ -34572,15 +35378,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, ACTIONS(1623), 1, anon_sym_DOT, - ACTIONS(1647), 1, + ACTIONS(1635), 1, sym__inline_attribute_end, - STATE(637), 1, + STATE(661), 1, aux_sym_inline_attribute_repeat1, - STATE(658), 1, + STATE(668), 1, sym__comment_with_newline, - STATE(1056), 1, + STATE(1079), 1, sym_key, - STATE(657), 2, + STATE(667), 2, sym_class, sym_key_value, ACTIONS(1621), 3, @@ -34594,15 +35400,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, ACTIONS(1623), 1, anon_sym_DOT, - ACTIONS(1649), 1, + ACTIONS(1637), 1, sym__inline_attribute_end, - STATE(630), 1, + STATE(645), 1, aux_sym_inline_attribute_repeat1, - STATE(658), 1, + STATE(668), 1, sym__comment_with_newline, - STATE(1056), 1, + STATE(1079), 1, sym_key, - STATE(657), 2, + STATE(667), 2, sym_class, sym_key_value, ACTIONS(1621), 3, @@ -34616,15 +35422,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, ACTIONS(1623), 1, anon_sym_DOT, - ACTIONS(1651), 1, + ACTIONS(1639), 1, sym__inline_attribute_end, - STATE(635), 1, + STATE(641), 1, aux_sym_inline_attribute_repeat1, - STATE(658), 1, + STATE(668), 1, sym__comment_with_newline, - STATE(1056), 1, + STATE(1079), 1, sym_key, - STATE(657), 2, + STATE(667), 2, sym_class, sym_key_value, ACTIONS(1621), 3, @@ -34638,15 +35444,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, ACTIONS(1623), 1, anon_sym_DOT, - ACTIONS(1653), 1, + ACTIONS(1641), 1, sym__inline_attribute_end, - STATE(630), 1, + STATE(650), 1, aux_sym_inline_attribute_repeat1, - STATE(658), 1, + STATE(668), 1, sym__comment_with_newline, - STATE(1056), 1, + STATE(1079), 1, sym_key, - STATE(657), 2, + STATE(667), 2, sym_class, sym_key_value, ACTIONS(1621), 3, @@ -34660,15 +35466,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, ACTIONS(1623), 1, anon_sym_DOT, - ACTIONS(1655), 1, + ACTIONS(1643), 1, sym__inline_attribute_end, - STATE(630), 1, + STATE(661), 1, aux_sym_inline_attribute_repeat1, - STATE(658), 1, + STATE(668), 1, sym__comment_with_newline, - STATE(1056), 1, + STATE(1079), 1, sym_key, - STATE(657), 2, + STATE(667), 2, sym_class, sym_key_value, ACTIONS(1621), 3, @@ -34682,15 +35488,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, ACTIONS(1623), 1, anon_sym_DOT, - ACTIONS(1657), 1, + ACTIONS(1645), 1, sym__inline_attribute_end, - STATE(640), 1, + STATE(661), 1, aux_sym_inline_attribute_repeat1, - STATE(658), 1, + STATE(668), 1, sym__comment_with_newline, - STATE(1056), 1, + STATE(1079), 1, sym_key, - STATE(657), 2, + STATE(667), 2, sym_class, sym_key_value, ACTIONS(1621), 3, @@ -34704,15 +35510,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, ACTIONS(1623), 1, anon_sym_DOT, - ACTIONS(1659), 1, + ACTIONS(1647), 1, sym__inline_attribute_end, - STATE(630), 1, + STATE(640), 1, aux_sym_inline_attribute_repeat1, - STATE(658), 1, + STATE(668), 1, sym__comment_with_newline, - STATE(1056), 1, + STATE(1079), 1, sym_key, - STATE(657), 2, + STATE(667), 2, sym_class, sym_key_value, ACTIONS(1621), 3, @@ -34726,15 +35532,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, ACTIONS(1623), 1, anon_sym_DOT, - ACTIONS(1661), 1, + ACTIONS(1649), 1, sym__inline_attribute_end, - STATE(630), 1, + STATE(661), 1, aux_sym_inline_attribute_repeat1, - STATE(658), 1, + STATE(668), 1, sym__comment_with_newline, - STATE(1056), 1, + STATE(1079), 1, sym_key, - STATE(657), 2, + STATE(667), 2, sym_class, sym_key_value, ACTIONS(1621), 3, @@ -34748,15 +35554,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, ACTIONS(1623), 1, anon_sym_DOT, - ACTIONS(1663), 1, + ACTIONS(1651), 1, sym__inline_attribute_end, - STATE(643), 1, + STATE(649), 1, aux_sym_inline_attribute_repeat1, - STATE(658), 1, + STATE(668), 1, sym__comment_with_newline, - STATE(1056), 1, + STATE(1079), 1, sym_key, - STATE(657), 2, + STATE(667), 2, sym_class, sym_key_value, ACTIONS(1621), 3, @@ -34770,15 +35576,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, ACTIONS(1623), 1, anon_sym_DOT, - ACTIONS(1665), 1, + ACTIONS(1653), 1, sym__inline_attribute_end, - STATE(630), 1, + STATE(657), 1, aux_sym_inline_attribute_repeat1, - STATE(658), 1, + STATE(668), 1, sym__comment_with_newline, - STATE(1056), 1, + STATE(1079), 1, sym_key, - STATE(657), 2, + STATE(667), 2, sym_class, sym_key_value, ACTIONS(1621), 3, @@ -34792,15 +35598,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, ACTIONS(1623), 1, anon_sym_DOT, - ACTIONS(1667), 1, + ACTIONS(1655), 1, sym__inline_attribute_end, - STATE(630), 1, + STATE(660), 1, aux_sym_inline_attribute_repeat1, - STATE(658), 1, + STATE(668), 1, sym__comment_with_newline, - STATE(1056), 1, + STATE(1079), 1, sym_key, - STATE(657), 2, + STATE(667), 2, sym_class, sym_key_value, ACTIONS(1621), 3, @@ -34814,15 +35620,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, ACTIONS(1623), 1, anon_sym_DOT, - ACTIONS(1669), 1, + ACTIONS(1657), 1, sym__inline_attribute_end, - STATE(630), 1, + STATE(661), 1, aux_sym_inline_attribute_repeat1, - STATE(658), 1, + STATE(668), 1, sym__comment_with_newline, - STATE(1056), 1, + STATE(1079), 1, sym_key, - STATE(657), 2, + STATE(667), 2, sym_class, sym_key_value, ACTIONS(1621), 3, @@ -34836,15 +35642,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, ACTIONS(1623), 1, anon_sym_DOT, - ACTIONS(1671), 1, + ACTIONS(1659), 1, sym__inline_attribute_end, - STATE(644), 1, + STATE(661), 1, aux_sym_inline_attribute_repeat1, - STATE(658), 1, + STATE(668), 1, sym__comment_with_newline, - STATE(1056), 1, + STATE(1079), 1, sym_key, - STATE(657), 2, + STATE(667), 2, sym_class, sym_key_value, ACTIONS(1621), 3, @@ -34858,15 +35664,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, ACTIONS(1623), 1, anon_sym_DOT, - ACTIONS(1673), 1, + ACTIONS(1661), 1, sym__inline_attribute_end, - STATE(630), 1, + STATE(644), 1, aux_sym_inline_attribute_repeat1, - STATE(658), 1, + STATE(668), 1, sym__comment_with_newline, - STATE(1056), 1, + STATE(1079), 1, sym_key, - STATE(657), 2, + STATE(667), 2, sym_class, sym_key_value, ACTIONS(1621), 3, @@ -34880,15 +35686,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, ACTIONS(1623), 1, anon_sym_DOT, - ACTIONS(1675), 1, + ACTIONS(1663), 1, sym__inline_attribute_end, - STATE(647), 1, + STATE(662), 1, aux_sym_inline_attribute_repeat1, - STATE(658), 1, + STATE(668), 1, sym__comment_with_newline, - STATE(1056), 1, + STATE(1079), 1, sym_key, - STATE(657), 2, + STATE(667), 2, sym_class, sym_key_value, ACTIONS(1621), 3, @@ -34902,15 +35708,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, ACTIONS(1623), 1, anon_sym_DOT, - ACTIONS(1677), 1, + ACTIONS(1665), 1, sym__inline_attribute_end, - STATE(630), 1, + STATE(661), 1, aux_sym_inline_attribute_repeat1, - STATE(658), 1, + STATE(668), 1, sym__comment_with_newline, - STATE(1056), 1, + STATE(1079), 1, sym_key, - STATE(657), 2, + STATE(667), 2, sym_class, sym_key_value, ACTIONS(1621), 3, @@ -34918,24 +35724,24 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, sym_identifier, [21483] = 9, - ACTIONS(1617), 1, + ACTIONS(1667), 1, sym__id, - ACTIONS(1619), 1, + ACTIONS(1670), 1, anon_sym_PERCENT, - ACTIONS(1623), 1, + ACTIONS(1676), 1, anon_sym_DOT, ACTIONS(1679), 1, sym__inline_attribute_end, - STATE(649), 1, + STATE(661), 1, aux_sym_inline_attribute_repeat1, - STATE(658), 1, + STATE(668), 1, sym__comment_with_newline, - STATE(1056), 1, + STATE(1079), 1, sym_key, - STATE(657), 2, + STATE(667), 2, sym_class, sym_key_value, - ACTIONS(1621), 3, + ACTIONS(1673), 3, sym__whitespace1, sym__newline, sym_identifier, @@ -34948,13 +35754,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(1681), 1, sym__inline_attribute_end, - STATE(630), 1, + STATE(661), 1, aux_sym_inline_attribute_repeat1, - STATE(658), 1, + STATE(668), 1, sym__comment_with_newline, - STATE(1056), 1, + STATE(1079), 1, sym_key, - STATE(657), 2, + STATE(667), 2, sym_class, sym_key_value, ACTIONS(1621), 3, @@ -34970,13 +35776,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(1683), 1, sym__inline_attribute_end, - STATE(651), 1, + STATE(656), 1, aux_sym_inline_attribute_repeat1, - STATE(658), 1, + STATE(668), 1, sym__comment_with_newline, - STATE(1056), 1, + STATE(1079), 1, sym_key, - STATE(657), 2, + STATE(667), 2, sym_class, sym_key_value, ACTIONS(1621), 3, @@ -34992,13 +35798,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(1685), 1, sym__inline_attribute_end, - STATE(638), 1, + STATE(661), 1, aux_sym_inline_attribute_repeat1, - STATE(658), 1, + STATE(668), 1, sym__comment_with_newline, - STATE(1056), 1, + STATE(1079), 1, sym_key, - STATE(657), 2, + STATE(667), 2, sym_class, sym_key_value, ACTIONS(1621), 3, @@ -35088,144 +35894,144 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, [21697] = 5, ACTIONS(1707), 1, - anon_sym_LBRACE, - ACTIONS(1709), 1, anon_sym_LBRACK, - STATE(544), 1, + ACTIONS(1709), 1, + anon_sym_LBRACE, + STATE(575), 1, sym_inline_attribute, - STATE(1109), 1, + STATE(1132), 1, sym__inline_attribute_begin, ACTIONS(1705), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, [21714] = 5, - ACTIONS(1709), 1, + ACTIONS(1707), 1, anon_sym_LBRACK, ACTIONS(1711), 1, anon_sym_LBRACE, - STATE(570), 1, + STATE(631), 1, sym_inline_attribute, - STATE(988), 1, + STATE(1052), 1, sym__inline_attribute_begin, ACTIONS(1705), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, [21731] = 5, - ACTIONS(1709), 1, + ACTIONS(1707), 1, anon_sym_LBRACK, ACTIONS(1713), 1, anon_sym_LBRACE, - STATE(625), 1, + STATE(619), 1, sym_inline_attribute, - STATE(1139), 1, + STATE(1036), 1, sym__inline_attribute_begin, ACTIONS(1705), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, [21748] = 5, - ACTIONS(1709), 1, + ACTIONS(1707), 1, anon_sym_LBRACK, ACTIONS(1715), 1, anon_sym_LBRACE, - STATE(599), 1, + STATE(587), 1, sym_inline_attribute, - STATE(1049), 1, + STATE(1020), 1, sym__inline_attribute_begin, ACTIONS(1705), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, [21765] = 5, - ACTIONS(1709), 1, + ACTIONS(1707), 1, anon_sym_LBRACK, ACTIONS(1717), 1, anon_sym_LBRACE, - STATE(548), 1, + STATE(592), 1, sym_inline_attribute, - STATE(1019), 1, + STATE(1127), 1, sym__inline_attribute_begin, ACTIONS(1705), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, [21782] = 5, - ACTIONS(1709), 1, + ACTIONS(1707), 1, anon_sym_LBRACK, ACTIONS(1719), 1, anon_sym_LBRACE, - STATE(597), 1, + STATE(635), 1, sym_inline_attribute, - STATE(1101), 1, + STATE(1148), 1, sym__inline_attribute_begin, ACTIONS(1705), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, [21799] = 5, - ACTIONS(1709), 1, + ACTIONS(1707), 1, anon_sym_LBRACK, ACTIONS(1721), 1, anon_sym_LBRACE, - STATE(556), 1, + STATE(626), 1, sym_inline_attribute, - STATE(1124), 1, + STATE(987), 1, sym__inline_attribute_begin, ACTIONS(1705), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, [21816] = 5, - ACTIONS(1709), 1, + ACTIONS(1707), 1, anon_sym_LBRACK, ACTIONS(1723), 1, anon_sym_LBRACE, - STATE(585), 1, + STATE(580), 1, sym_inline_attribute, - STATE(1034), 1, + STATE(1068), 1, sym__inline_attribute_begin, ACTIONS(1705), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, [21833] = 5, - ACTIONS(1709), 1, + ACTIONS(1707), 1, anon_sym_LBRACK, ACTIONS(1725), 1, anon_sym_LBRACE, - STATE(558), 1, + STATE(554), 1, sym_inline_attribute, - STATE(1004), 1, + STATE(1116), 1, sym__inline_attribute_begin, ACTIONS(1705), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, [21850] = 5, - ACTIONS(1709), 1, + ACTIONS(1707), 1, anon_sym_LBRACK, ACTIONS(1727), 1, anon_sym_LBRACE, - STATE(578), 1, + STATE(572), 1, sym_inline_attribute, - STATE(1064), 1, + STATE(1084), 1, sym__inline_attribute_begin, ACTIONS(1705), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, [21867] = 5, - ACTIONS(1709), 1, + ACTIONS(1707), 1, anon_sym_LBRACK, ACTIONS(1729), 1, anon_sym_LBRACE, - STATE(568), 1, + STATE(564), 1, sym_inline_attribute, - STATE(1079), 1, + STATE(1100), 1, sym__inline_attribute_begin, ACTIONS(1705), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, [21884] = 5, - ACTIONS(1709), 1, + ACTIONS(1707), 1, anon_sym_LBRACK, ACTIONS(1731), 1, anon_sym_LBRACE, - STATE(559), 1, + STATE(551), 1, sym_inline_attribute, - STATE(1094), 1, + STATE(1004), 1, sym__inline_attribute_begin, ACTIONS(1705), 2, anon_sym_LBRACK_RBRACK, @@ -35237,253 +36043,253 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1737), 1, anon_sym_LPAREN, - STATE(469), 1, - sym__link_label, - STATE(470), 1, + STATE(538), 1, sym_inline_link_destination, + STATE(539), 1, + sym__link_label, [21917] = 5, - ACTIONS(1739), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(1741), 1, + ACTIONS(1735), 1, anon_sym_LBRACK, - ACTIONS(1743), 1, + ACTIONS(1737), 1, anon_sym_LPAREN, - STATE(494), 1, + ACTIONS(1739), 1, + anon_sym_LBRACK_RBRACK, + STATE(534), 1, sym_inline_link_destination, - STATE(495), 1, + STATE(536), 1, sym__link_label, [21933] = 5, - ACTIONS(1745), 1, + ACTIONS(1741), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(1747), 1, + ACTIONS(1743), 1, anon_sym_LBRACK, - ACTIONS(1749), 1, + ACTIONS(1745), 1, anon_sym_LPAREN, - STATE(512), 1, + STATE(298), 1, sym__link_label, - STATE(513), 1, + STATE(301), 1, sym_inline_link_destination, [21949] = 5, ACTIONS(1747), 1, - anon_sym_LBRACK, + anon_sym_LBRACK_RBRACK, ACTIONS(1749), 1, - anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(1751), 1, - anon_sym_LBRACK_RBRACK, + anon_sym_LPAREN, + STATE(508), 1, + sym__link_label, STATE(509), 1, + sym_inline_link_destination, + [21965] = 5, + ACTIONS(1743), 1, + anon_sym_LBRACK, + ACTIONS(1745), 1, + anon_sym_LPAREN, + ACTIONS(1753), 1, + anon_sym_LBRACK_RBRACK, + STATE(285), 1, sym__link_label, - STATE(510), 1, + STATE(294), 1, sym_inline_link_destination, - [21965] = 3, + [21981] = 5, ACTIONS(1755), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(1757), 1, + anon_sym_LBRACK, + ACTIONS(1759), 1, + anon_sym_LPAREN, + STATE(292), 1, + sym__link_label, + STATE(293), 1, + sym_inline_link_destination, + [21997] = 3, + ACTIONS(1763), 1, anon_sym_PERCENT, - STATE(690), 1, + STATE(695), 1, aux_sym__comment_with_newline_repeat1, - ACTIONS(1753), 3, + ACTIONS(1761), 3, sym_backslash_escape, aux_sym__comment_with_newline_token1, sym__newline, - [21977] = 5, - ACTIONS(1757), 1, + [22009] = 5, + ACTIONS(1765), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(1759), 1, + ACTIONS(1767), 1, anon_sym_LBRACK, - ACTIONS(1761), 1, + ACTIONS(1769), 1, anon_sym_LPAREN, - STATE(415), 1, - sym_inline_link_destination, - STATE(419), 1, + STATE(468), 1, sym__link_label, - [21993] = 5, - ACTIONS(1759), 1, - anon_sym_LBRACK, - ACTIONS(1761), 1, - anon_sym_LPAREN, - ACTIONS(1763), 1, - anon_sym_LBRACK_RBRACK, - STATE(429), 1, + STATE(469), 1, sym_inline_link_destination, - STATE(430), 1, - sym__link_label, - [22009] = 5, - ACTIONS(1735), 1, + [22025] = 5, + ACTIONS(1767), 1, anon_sym_LBRACK, - ACTIONS(1737), 1, + ACTIONS(1769), 1, anon_sym_LPAREN, - ACTIONS(1765), 1, + ACTIONS(1771), 1, anon_sym_LBRACK_RBRACK, - STATE(466), 1, + STATE(465), 1, sym__link_label, - STATE(467), 1, + STATE(466), 1, sym_inline_link_destination, - [22025] = 3, - ACTIONS(1767), 1, + [22041] = 3, + ACTIONS(1776), 1, anon_sym_PERCENT, - STATE(696), 1, + STATE(695), 1, aux_sym__comment_with_newline_repeat1, - ACTIONS(1753), 3, + ACTIONS(1773), 3, sym_backslash_escape, aux_sym__comment_with_newline_token1, sym__newline, - [22037] = 5, - ACTIONS(1769), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(1771), 1, - anon_sym_LBRACK, - ACTIONS(1773), 1, - anon_sym_LPAREN, - STATE(293), 1, - sym__link_label, - STATE(294), 1, - sym_inline_link_destination, [22053] = 5, - ACTIONS(1775), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(1777), 1, + ACTIONS(1757), 1, anon_sym_LBRACK, - ACTIONS(1779), 1, + ACTIONS(1759), 1, anon_sym_LPAREN, - STATE(274), 1, + ACTIONS(1778), 1, + anon_sym_LBRACK_RBRACK, + STATE(289), 1, sym__link_label, - STATE(286), 1, + STATE(290), 1, sym_inline_link_destination, - [22069] = 5, - ACTIONS(1781), 1, + [22069] = 3, + ACTIONS(1780), 1, + anon_sym_PERCENT, + STATE(695), 1, + aux_sym__comment_with_newline_repeat1, + ACTIONS(1761), 3, + sym_backslash_escape, + aux_sym__comment_with_newline_token1, + sym__newline, + [22081] = 5, + ACTIONS(1782), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(1783), 1, + ACTIONS(1784), 1, anon_sym_LBRACK, - ACTIONS(1785), 1, + ACTIONS(1786), 1, anon_sym_LPAREN, - STATE(425), 1, + STATE(424), 1, sym__link_label, - STATE(426), 1, + STATE(425), 1, sym_inline_link_destination, - [22085] = 5, - ACTIONS(1771), 1, + [22097] = 5, + ACTIONS(1784), 1, anon_sym_LBRACK, - ACTIONS(1773), 1, + ACTIONS(1786), 1, anon_sym_LPAREN, - ACTIONS(1787), 1, + ACTIONS(1788), 1, anon_sym_LBRACK_RBRACK, - STATE(290), 1, + STATE(421), 1, sym__link_label, - STATE(291), 1, - sym_inline_link_destination, - [22101] = 5, - ACTIONS(1783), 1, - anon_sym_LBRACK, - ACTIONS(1785), 1, - anon_sym_LPAREN, - ACTIONS(1789), 1, - anon_sym_LBRACK_RBRACK, STATE(422), 1, - sym__link_label, - STATE(423), 1, sym_inline_link_destination, - [22117] = 3, - ACTIONS(1791), 1, - anon_sym_PERCENT, - STATE(679), 1, - aux_sym__comment_with_newline_repeat1, - ACTIONS(1753), 3, - sym_backslash_escape, - aux_sym__comment_with_newline_token1, - sym__newline, - [22129] = 3, - ACTIONS(1796), 1, - anon_sym_PERCENT, - STATE(690), 1, - aux_sym__comment_with_newline_repeat1, - ACTIONS(1793), 3, - sym_backslash_escape, - aux_sym__comment_with_newline_token1, - sym__newline, - [22141] = 5, - ACTIONS(1798), 1, + [22113] = 5, + ACTIONS(1790), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(1800), 1, + ACTIONS(1792), 1, + anon_sym_LBRACK, + ACTIONS(1794), 1, + anon_sym_LPAREN, + STATE(249), 1, + sym__link_label, + STATE(250), 1, + sym_inline_link_destination, + [22129] = 5, + ACTIONS(1792), 1, anon_sym_LBRACK, - ACTIONS(1802), 1, + ACTIONS(1794), 1, anon_sym_LPAREN, - STATE(537), 1, + ACTIONS(1796), 1, + anon_sym_LBRACK_RBRACK, + STATE(252), 1, sym__link_label, - STATE(616), 1, + STATE(253), 1, sym_inline_link_destination, - [22157] = 5, - ACTIONS(1777), 1, + [22145] = 5, + ACTIONS(1749), 1, anon_sym_LBRACK, - ACTIONS(1779), 1, + ACTIONS(1751), 1, anon_sym_LPAREN, - ACTIONS(1804), 1, + ACTIONS(1798), 1, anon_sym_LBRACK_RBRACK, - STATE(297), 1, + STATE(511), 1, sym__link_label, - STATE(300), 1, + STATE(512), 1, sym_inline_link_destination, + [22161] = 3, + ACTIONS(1800), 1, + anon_sym_PERCENT, + STATE(697), 1, + aux_sym__comment_with_newline_repeat1, + ACTIONS(1761), 3, + sym_backslash_escape, + aux_sym__comment_with_newline_token1, + sym__newline, [22173] = 5, - ACTIONS(1806), 1, + ACTIONS(1802), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(1808), 1, + ACTIONS(1804), 1, anon_sym_LBRACK, - ACTIONS(1810), 1, + ACTIONS(1806), 1, anon_sym_LPAREN, - STATE(381), 1, - sym__link_label, - STATE(382), 1, + STATE(326), 1, sym_inline_link_destination, + STATE(330), 1, + sym__link_label, [22189] = 5, ACTIONS(1808), 1, - anon_sym_LBRACK, + anon_sym_LBRACK_RBRACK, ACTIONS(1810), 1, - anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(1812), 1, - anon_sym_LBRACK_RBRACK, - STATE(378), 1, + anon_sym_LPAREN, + STATE(380), 1, sym__link_label, - STATE(379), 1, + STATE(381), 1, sym_inline_link_destination, [22205] = 5, - ACTIONS(1741), 1, + ACTIONS(1804), 1, anon_sym_LBRACK, - ACTIONS(1743), 1, + ACTIONS(1806), 1, anon_sym_LPAREN, ACTIONS(1814), 1, anon_sym_LBRACK_RBRACK, - STATE(476), 1, + STATE(320), 1, sym_inline_link_destination, - STATE(479), 1, + STATE(324), 1, sym__link_label, - [22221] = 3, + [22221] = 5, + ACTIONS(1810), 1, + anon_sym_LBRACK, + ACTIONS(1812), 1, + anon_sym_LPAREN, ACTIONS(1816), 1, - anon_sym_PERCENT, - STATE(690), 1, - aux_sym__comment_with_newline_repeat1, - ACTIONS(1753), 3, - sym_backslash_escape, - aux_sym__comment_with_newline_token1, - sym__newline, - [22233] = 5, + anon_sym_LBRACK_RBRACK, + STATE(377), 1, + sym__link_label, + STATE(378), 1, + sym_inline_link_destination, + [22237] = 5, ACTIONS(1818), 1, anon_sym_LBRACK_RBRACK, ACTIONS(1820), 1, anon_sym_LBRACK, ACTIONS(1822), 1, anon_sym_LPAREN, - STATE(276), 1, - sym_inline_link_destination, - STATE(277), 1, - sym__link_label, - [22249] = 5, - ACTIONS(1800), 1, - anon_sym_LBRACK, - ACTIONS(1802), 1, - anon_sym_LPAREN, - ACTIONS(1824), 1, - anon_sym_LBRACK_RBRACK, - STATE(592), 1, + STATE(591), 1, sym__link_label, - STATE(593), 1, + STATE(632), 1, sym_inline_link_destination, + [22253] = 3, + ACTIONS(1824), 1, + anon_sym_PERCENT, + STATE(692), 1, + aux_sym__comment_with_newline_repeat1, + ACTIONS(1761), 3, + sym_backslash_escape, + aux_sym__comment_with_newline_token1, + sym__newline, [22265] = 5, ACTIONS(1826), 1, anon_sym_LBRACK_RBRACK, @@ -35491,20 +36297,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1830), 1, anon_sym_LPAREN, - STATE(337), 1, + STATE(336), 1, sym__link_label, - STATE(338), 1, + STATE(337), 1, sym_inline_link_destination, [22281] = 5, - ACTIONS(1828), 1, + ACTIONS(1820), 1, anon_sym_LBRACK, - ACTIONS(1830), 1, + ACTIONS(1822), 1, anon_sym_LPAREN, ACTIONS(1832), 1, anon_sym_LBRACK_RBRACK, - STATE(334), 1, + STATE(594), 1, sym__link_label, - STATE(335), 1, + STATE(595), 1, sym_inline_link_destination, [22297] = 5, ACTIONS(1834), 1, @@ -35513,10 +36319,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1838), 1, anon_sym_LPAREN, - STATE(249), 1, - sym__link_label, - STATE(250), 1, + STATE(472), 1, sym_inline_link_destination, + STATE(493), 1, + sym__link_label, [22313] = 5, ACTIONS(1836), 1, anon_sym_LBRACK, @@ -35524,21 +36330,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(1840), 1, anon_sym_LBRACK_RBRACK, - STATE(252), 1, - sym__link_label, - STATE(253), 1, + STATE(462), 1, sym_inline_link_destination, + STATE(470), 1, + sym__link_label, [22329] = 5, - ACTIONS(1820), 1, + ACTIONS(1828), 1, anon_sym_LBRACK, - ACTIONS(1822), 1, + ACTIONS(1830), 1, anon_sym_LPAREN, ACTIONS(1842), 1, anon_sym_LBRACK_RBRACK, - STATE(282), 1, - sym_inline_link_destination, - STATE(283), 1, + STATE(333), 1, sym__link_label, + STATE(334), 1, + sym_inline_link_destination, [22345] = 1, ACTIONS(1844), 4, sym_backslash_escape, @@ -35548,4459 +36354,4559 @@ static const uint16_t ts_small_parse_table[] = { [22352] = 2, ACTIONS(1848), 1, anon_sym_LBRACK, - ACTIONS(1846), 3, + ACTIONS(1846), 2, anon_sym_LBRACK_RBRACK, - anon_sym_LBRACE, anon_sym_LPAREN, - [22361] = 3, - ACTIONS(1850), 1, - anon_sym_DQUOTE, + [22360] = 2, ACTIONS(1852), 1, - aux_sym_value_token2, - STATE(661), 1, - sym_value, - [22371] = 2, - ACTIONS(1856), 1, anon_sym_LBRACK, - ACTIONS(1854), 2, + ACTIONS(1850), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - [22379] = 2, - ACTIONS(1860), 1, - anon_sym_LBRACK, - ACTIONS(1858), 2, - anon_sym_LBRACK_RBRACK, - anon_sym_LPAREN, - [22387] = 2, - ACTIONS(1862), 1, + [22368] = 3, + ACTIONS(1854), 1, + anon_sym_DQUOTE, + ACTIONS(1856), 1, + aux_sym_value_token2, + STATE(670), 1, + sym_value, + [22378] = 2, + ACTIONS(1858), 1, sym__strong_mark_begin, - ACTIONS(1865), 1, - sym__in_fallback, - [22394] = 2, - ACTIONS(1867), 1, - sym__superscript_mark_begin, - ACTIONS(1870), 1, - sym__in_fallback, - [22401] = 2, - ACTIONS(1872), 1, - sym__image_description_mark_begin, - ACTIONS(1875), 1, - sym__in_fallback, - [22408] = 2, - ACTIONS(1875), 1, + ACTIONS(1861), 1, sym__in_fallback, - ACTIONS(1877), 1, - sym__bracketed_text_mark_begin, - [22415] = 2, - ACTIONS(1880), 1, + [22385] = 2, + ACTIONS(1863), 1, + sym__id, + STATE(1024), 1, + sym_reference_label, + [22392] = 2, + ACTIONS(1865), 1, sym__emphasis_mark_begin, - ACTIONS(1883), 1, + ACTIONS(1868), 1, sym__in_fallback, - [22422] = 2, - ACTIONS(1883), 1, + [22399] = 2, + ACTIONS(1868), 1, sym__in_fallback, - ACTIONS(1885), 1, - sym__strong_mark_begin, - [22429] = 2, - ACTIONS(1888), 1, + ACTIONS(1870), 1, sym__strong_mark_begin, - ACTIONS(1891), 1, - sym__in_fallback, - [22436] = 2, - ACTIONS(1893), 1, - sym__id, - STATE(982), 1, - sym_reference_label, - [22443] = 2, - ACTIONS(1895), 1, - sym__inline_attribute_mark_begin, - ACTIONS(1898), 1, - sym__in_fallback, - [22450] = 2, - ACTIONS(1891), 1, + [22406] = 2, + ACTIONS(1868), 1, sym__in_fallback, - ACTIONS(1900), 1, + ACTIONS(1873), 1, sym__superscript_mark_begin, - [22457] = 2, - ACTIONS(1891), 1, + [22413] = 2, + ACTIONS(1868), 1, sym__in_fallback, - ACTIONS(1903), 1, + ACTIONS(1876), 1, sym__subscript_mark_begin, - [22464] = 2, - ACTIONS(1891), 1, + [22420] = 2, + ACTIONS(1868), 1, sym__in_fallback, - ACTIONS(1906), 1, + ACTIONS(1879), 1, sym__highlighted_mark_begin, - [22471] = 2, - ACTIONS(1891), 1, + [22427] = 2, + ACTIONS(1868), 1, sym__in_fallback, - ACTIONS(1909), 1, + ACTIONS(1882), 1, sym__insert_mark_begin, - [22478] = 2, - ACTIONS(1891), 1, + [22434] = 2, + ACTIONS(1868), 1, sym__in_fallback, - ACTIONS(1912), 1, + ACTIONS(1885), 1, sym__delete_mark_begin, - [22485] = 2, - ACTIONS(1915), 1, - anon_sym_PERCENT, - STATE(890), 1, - sym__comment_with_newline, - [22492] = 2, - ACTIONS(1891), 1, + [22441] = 2, + ACTIONS(1868), 1, sym__in_fallback, - ACTIONS(1917), 1, + ACTIONS(1888), 1, sym__footnote_marker_mark_begin, - [22499] = 2, - ACTIONS(1893), 1, - sym__id, - STATE(949), 1, - sym_reference_label, - [22506] = 2, - ACTIONS(1891), 1, - sym__in_fallback, - ACTIONS(1920), 1, - sym__image_description_mark_begin, - [22513] = 2, + [22448] = 2, ACTIONS(1891), 1, - sym__in_fallback, - ACTIONS(1923), 1, - sym__bracketed_text_mark_begin, - [22520] = 2, - ACTIONS(1915), 1, - anon_sym_PERCENT, - STATE(941), 1, - sym__comment_with_newline, - [22527] = 2, - ACTIONS(1893), 1, - sym__id, - STATE(916), 1, - sym_reference_label, - [22534] = 2, - ACTIONS(1915), 1, - anon_sym_PERCENT, - STATE(908), 1, - sym__comment_with_newline, - [22541] = 2, - ACTIONS(1926), 1, sym__emphasis_mark_begin, - ACTIONS(1929), 1, + ACTIONS(1894), 1, sym__in_fallback, - [22548] = 2, - ACTIONS(1929), 1, + [22455] = 2, + ACTIONS(1894), 1, sym__in_fallback, - ACTIONS(1931), 1, + ACTIONS(1896), 1, sym__strong_mark_begin, - [22555] = 2, - ACTIONS(1929), 1, + [22462] = 2, + ACTIONS(1894), 1, sym__in_fallback, - ACTIONS(1934), 1, + ACTIONS(1899), 1, sym__superscript_mark_begin, - [22562] = 2, - ACTIONS(1929), 1, + [22469] = 2, + ACTIONS(1894), 1, sym__in_fallback, - ACTIONS(1937), 1, + ACTIONS(1902), 1, sym__subscript_mark_begin, - [22569] = 2, - ACTIONS(1929), 1, + [22476] = 2, + ACTIONS(1894), 1, sym__in_fallback, - ACTIONS(1940), 1, + ACTIONS(1905), 1, sym__highlighted_mark_begin, - [22576] = 2, - ACTIONS(1929), 1, + [22483] = 2, + ACTIONS(1894), 1, sym__in_fallback, - ACTIONS(1943), 1, + ACTIONS(1908), 1, sym__insert_mark_begin, - [22583] = 2, - ACTIONS(1929), 1, + [22490] = 2, + ACTIONS(1894), 1, sym__in_fallback, - ACTIONS(1946), 1, + ACTIONS(1911), 1, sym__delete_mark_begin, - [22590] = 2, - ACTIONS(1949), 1, - sym__emphasis_mark_begin, - ACTIONS(1952), 1, + [22497] = 2, + ACTIONS(1868), 1, sym__in_fallback, - [22597] = 2, - ACTIONS(1929), 1, + ACTIONS(1914), 1, + sym__image_description_mark_begin, + [22504] = 2, + ACTIONS(1894), 1, sym__in_fallback, - ACTIONS(1954), 1, + ACTIONS(1917), 1, sym__footnote_marker_mark_begin, - [22604] = 2, - ACTIONS(1929), 1, + [22511] = 2, + ACTIONS(1894), 1, sym__in_fallback, - ACTIONS(1957), 1, + ACTIONS(1920), 1, sym__image_description_mark_begin, - [22611] = 2, - ACTIONS(1929), 1, + [22518] = 2, + ACTIONS(1894), 1, sym__in_fallback, - ACTIONS(1960), 1, + ACTIONS(1923), 1, sym__bracketed_text_mark_begin, - [22618] = 2, - ACTIONS(1893), 1, - sym__id, - STATE(897), 1, - sym_reference_label, - [22625] = 2, - ACTIONS(1963), 1, - sym__emphasis_mark_begin, - ACTIONS(1966), 1, - sym__in_fallback, - [22632] = 2, - ACTIONS(1966), 1, + [22525] = 2, + ACTIONS(1868), 1, sym__in_fallback, - ACTIONS(1968), 1, - sym__strong_mark_begin, - [22639] = 2, - ACTIONS(1971), 1, - sym__inline_attribute_mark_begin, - ACTIONS(1974), 1, + ACTIONS(1926), 1, + sym__bracketed_text_mark_begin, + [22532] = 2, + ACTIONS(1929), 1, + sym__emphasis_mark_begin, + ACTIONS(1932), 1, sym__in_fallback, - [22646] = 2, - ACTIONS(1952), 1, + [22539] = 2, + ACTIONS(1932), 1, sym__in_fallback, - ACTIONS(1976), 1, + ACTIONS(1934), 1, sym__strong_mark_begin, - [22653] = 2, - ACTIONS(1979), 1, + [22546] = 2, + ACTIONS(1937), 1, sym__inline_attribute_mark_begin, - ACTIONS(1982), 1, + ACTIONS(1940), 1, sym__in_fallback, - [22660] = 2, - ACTIONS(1915), 1, + [22553] = 2, + ACTIONS(1863), 1, + sym__id, + STATE(980), 1, + sym_reference_label, + [22560] = 2, + ACTIONS(1942), 1, anon_sym_PERCENT, - STATE(1087), 1, + STATE(972), 1, sym__comment_with_newline, - [22667] = 2, - ACTIONS(1893), 1, + [22567] = 2, + ACTIONS(1863), 1, sym__id, - STATE(1071), 1, + STATE(947), 1, sym_reference_label, - [22674] = 2, - ACTIONS(1915), 1, + [22574] = 2, + ACTIONS(1944), 1, + sym__emphasis_mark_begin, + ACTIONS(1947), 1, + sym__in_fallback, + [22581] = 2, + ACTIONS(1947), 1, + sym__in_fallback, + ACTIONS(1949), 1, + sym__strong_mark_begin, + [22588] = 2, + ACTIONS(1942), 1, anon_sym_PERCENT, - STATE(923), 1, + STATE(939), 1, sym__comment_with_newline, - [22681] = 2, - ACTIONS(1893), 1, + [22595] = 2, + ACTIONS(1863), 1, sym__id, - STATE(938), 1, + STATE(914), 1, sym_reference_label, - [22688] = 2, - ACTIONS(1915), 1, + [22602] = 2, + ACTIONS(1942), 1, anon_sym_PERCENT, - STATE(959), 1, + STATE(1119), 1, sym__comment_with_newline, - [22695] = 2, - ACTIONS(1893), 1, + [22609] = 2, + ACTIONS(1863), 1, sym__id, - STATE(972), 1, + STATE(1095), 1, sym_reference_label, - [22702] = 2, - ACTIONS(1915), 1, + [22616] = 2, + ACTIONS(1942), 1, anon_sym_PERCENT, - STATE(998), 1, + STATE(906), 1, sym__comment_with_newline, - [22709] = 2, - ACTIONS(1893), 1, + [22623] = 2, + ACTIONS(1863), 1, sym__id, - STATE(1025), 1, + STATE(921), 1, sym_reference_label, - [22716] = 2, - ACTIONS(1984), 1, - sym__id, - STATE(656), 1, - sym_class_name, - [22723] = 2, - ACTIONS(1891), 1, - sym__in_fallback, - ACTIONS(1986), 1, - sym__emphasis_mark_begin, - [22730] = 2, - ACTIONS(1915), 1, + [22630] = 2, + ACTIONS(1942), 1, anon_sym_PERCENT, - STATE(1040), 1, + STATE(930), 1, sym__comment_with_newline, - [22737] = 2, - ACTIONS(1989), 1, + [22637] = 2, + ACTIONS(1863), 1, + sym__id, + STATE(958), 1, + sym_reference_label, + [22644] = 2, + ACTIONS(1952), 1, sym__emphasis_mark_begin, - ACTIONS(1992), 1, + ACTIONS(1955), 1, sym__in_fallback, - [22744] = 2, - ACTIONS(1992), 1, + [22651] = 2, + ACTIONS(1955), 1, sym__in_fallback, - ACTIONS(1994), 1, + ACTIONS(1957), 1, sym__strong_mark_begin, - [22751] = 2, - ACTIONS(1992), 1, + [22658] = 2, + ACTIONS(1955), 1, sym__in_fallback, - ACTIONS(1997), 1, + ACTIONS(1960), 1, sym__superscript_mark_begin, - [22758] = 2, - ACTIONS(1992), 1, + [22665] = 2, + ACTIONS(1955), 1, sym__in_fallback, - ACTIONS(2000), 1, + ACTIONS(1963), 1, sym__subscript_mark_begin, - [22765] = 2, - ACTIONS(1992), 1, + [22672] = 2, + ACTIONS(1955), 1, sym__in_fallback, - ACTIONS(2003), 1, + ACTIONS(1966), 1, sym__highlighted_mark_begin, - [22772] = 2, - ACTIONS(1992), 1, + [22679] = 2, + ACTIONS(1955), 1, sym__in_fallback, - ACTIONS(2006), 1, + ACTIONS(1969), 1, sym__insert_mark_begin, - [22779] = 2, - ACTIONS(1992), 1, + [22686] = 2, + ACTIONS(1955), 1, sym__in_fallback, - ACTIONS(2009), 1, + ACTIONS(1972), 1, sym__delete_mark_begin, - [22786] = 2, - ACTIONS(1893), 1, + [22693] = 2, + ACTIONS(1975), 1, sym__id, - STATE(1066), 1, - sym_reference_label, - [22793] = 2, - ACTIONS(1992), 1, + STATE(669), 1, + sym_class_name, + [22700] = 2, + ACTIONS(1955), 1, sym__in_fallback, - ACTIONS(2012), 1, + ACTIONS(1977), 1, sym__footnote_marker_mark_begin, - [22800] = 2, - ACTIONS(1992), 1, + [22707] = 2, + ACTIONS(1955), 1, sym__in_fallback, - ACTIONS(2015), 1, + ACTIONS(1980), 1, sym__image_description_mark_begin, - [22807] = 2, - ACTIONS(1992), 1, + [22714] = 2, + ACTIONS(1955), 1, sym__in_fallback, - ACTIONS(2018), 1, + ACTIONS(1983), 1, sym__bracketed_text_mark_begin, - [22814] = 2, - ACTIONS(1865), 1, - sym__in_fallback, - ACTIONS(2021), 1, - sym__superscript_mark_begin, - [22821] = 2, - ACTIONS(2024), 1, + [22721] = 2, + ACTIONS(1942), 1, + anon_sym_PERCENT, + STATE(984), 1, + sym__comment_with_newline, + [22728] = 2, + ACTIONS(1986), 1, sym__emphasis_mark_begin, - ACTIONS(2027), 1, + ACTIONS(1989), 1, sym__in_fallback, - [22828] = 2, - ACTIONS(2027), 1, + [22735] = 2, + ACTIONS(1989), 1, sym__in_fallback, - ACTIONS(2029), 1, + ACTIONS(1991), 1, sym__strong_mark_begin, - [22835] = 2, - ACTIONS(2032), 1, + [22742] = 2, + ACTIONS(1994), 1, sym__inline_attribute_mark_begin, - ACTIONS(2035), 1, - sym__in_fallback, - [22842] = 2, - ACTIONS(1865), 1, + ACTIONS(1997), 1, sym__in_fallback, - ACTIONS(2037), 1, + [22749] = 2, + ACTIONS(1999), 1, sym__subscript_mark_begin, - [22849] = 2, - ACTIONS(1865), 1, + ACTIONS(2002), 1, sym__in_fallback, - ACTIONS(2040), 1, - sym__highlighted_mark_begin, - [22856] = 2, - ACTIONS(1865), 1, + [22756] = 2, + ACTIONS(1863), 1, + sym__id, + STATE(1006), 1, + sym_reference_label, + [22763] = 2, + ACTIONS(2004), 1, + sym__inline_attribute_mark_begin, + ACTIONS(2007), 1, sym__in_fallback, - ACTIONS(2043), 1, - sym__insert_mark_begin, - [22863] = 2, - ACTIONS(1865), 1, + [22770] = 2, + ACTIONS(2009), 1, + sym__strong_mark_begin, + ACTIONS(2012), 1, sym__in_fallback, - ACTIONS(2046), 1, - sym__delete_mark_begin, - [22870] = 2, - ACTIONS(1915), 1, + [22777] = 2, + ACTIONS(1942), 1, anon_sym_PERCENT, - STATE(1103), 1, + STATE(1028), 1, sym__comment_with_newline, - [22877] = 2, - ACTIONS(1865), 1, + [22784] = 2, + ACTIONS(2012), 1, sym__in_fallback, - ACTIONS(2049), 1, - sym__footnote_marker_mark_begin, - [22884] = 2, - ACTIONS(1893), 1, + ACTIONS(2014), 1, + sym__superscript_mark_begin, + [22791] = 2, + ACTIONS(1863), 1, sym__id, - STATE(1133), 1, + STATE(1058), 1, sym_reference_label, - [22891] = 2, - ACTIONS(1865), 1, + [22798] = 2, + ACTIONS(2012), 1, sym__in_fallback, - ACTIONS(2052), 1, - sym__image_description_mark_begin, - [22898] = 2, - ACTIONS(1865), 1, + ACTIONS(2017), 1, + sym__subscript_mark_begin, + [22805] = 2, + ACTIONS(2012), 1, sym__in_fallback, - ACTIONS(2055), 1, - sym__bracketed_text_mark_begin, - [22905] = 2, - ACTIONS(2058), 1, - sym__emphasis_mark_begin, - ACTIONS(2061), 1, + ACTIONS(2020), 1, + sym__highlighted_mark_begin, + [22812] = 2, + ACTIONS(2012), 1, sym__in_fallback, - [22912] = 2, - ACTIONS(2061), 1, + ACTIONS(2023), 1, + sym__insert_mark_begin, + [22819] = 2, + ACTIONS(2012), 1, sym__in_fallback, - ACTIONS(2063), 1, - sym__strong_mark_begin, - [22919] = 2, - ACTIONS(1865), 1, + ACTIONS(2026), 1, + sym__delete_mark_begin, + [22826] = 2, + ACTIONS(2012), 1, sym__in_fallback, - ACTIONS(2066), 1, - sym__emphasis_mark_begin, - [22926] = 2, - ACTIONS(1915), 1, + ACTIONS(2029), 1, + sym__footnote_marker_mark_begin, + [22833] = 2, + ACTIONS(2012), 1, + sym__in_fallback, + ACTIONS(2032), 1, + sym__image_description_mark_begin, + [22840] = 2, + ACTIONS(1942), 1, anon_sym_PERCENT, - STATE(1148), 1, + STATE(1075), 1, sym__comment_with_newline, - [22933] = 2, - ACTIONS(1875), 1, + [22847] = 2, + ACTIONS(2012), 1, sym__in_fallback, - ACTIONS(2069), 1, - sym__delete_mark_begin, - [22940] = 2, - ACTIONS(1893), 1, + ACTIONS(2035), 1, + sym__bracketed_text_mark_begin, + [22854] = 2, + ACTIONS(1863), 1, sym__id, - STATE(933), 1, + STATE(1118), 1, sym_reference_label, - [22947] = 2, - ACTIONS(2072), 1, + [22861] = 2, + ACTIONS(2038), 1, sym__emphasis_mark_begin, - ACTIONS(2075), 1, + ACTIONS(2041), 1, sym__in_fallback, - [22954] = 2, - ACTIONS(2075), 1, + [22868] = 2, + ACTIONS(2041), 1, sym__in_fallback, - ACTIONS(2077), 1, + ACTIONS(2043), 1, sym__strong_mark_begin, - [22961] = 2, - ACTIONS(2075), 1, + [22875] = 2, + ACTIONS(2041), 1, sym__in_fallback, - ACTIONS(2080), 1, + ACTIONS(2046), 1, sym__superscript_mark_begin, - [22968] = 2, - ACTIONS(2075), 1, + [22882] = 2, + ACTIONS(2041), 1, sym__in_fallback, - ACTIONS(2083), 1, + ACTIONS(2049), 1, sym__subscript_mark_begin, - [22975] = 2, - ACTIONS(2075), 1, + [22889] = 2, + ACTIONS(2041), 1, sym__in_fallback, - ACTIONS(2086), 1, + ACTIONS(2052), 1, sym__highlighted_mark_begin, - [22982] = 2, - ACTIONS(2075), 1, + [22896] = 2, + ACTIONS(2041), 1, sym__in_fallback, - ACTIONS(2089), 1, + ACTIONS(2055), 1, sym__insert_mark_begin, - [22989] = 2, - ACTIONS(2075), 1, + [22903] = 2, + ACTIONS(2041), 1, sym__in_fallback, - ACTIONS(2092), 1, + ACTIONS(2058), 1, sym__delete_mark_begin, - [22996] = 2, - ACTIONS(2095), 1, - sym__inline_attribute_mark_begin, - ACTIONS(2098), 1, + [22910] = 2, + ACTIONS(2061), 1, + sym__emphasis_mark_begin, + ACTIONS(2064), 1, sym__in_fallback, - [23003] = 2, - ACTIONS(2075), 1, + [22917] = 2, + ACTIONS(2041), 1, sym__in_fallback, - ACTIONS(2100), 1, + ACTIONS(2066), 1, sym__footnote_marker_mark_begin, - [23010] = 2, - ACTIONS(2075), 1, + [22924] = 2, + ACTIONS(2041), 1, sym__in_fallback, - ACTIONS(2103), 1, + ACTIONS(2069), 1, sym__image_description_mark_begin, - [23017] = 2, - ACTIONS(2075), 1, + [22931] = 2, + ACTIONS(2041), 1, sym__in_fallback, - ACTIONS(2106), 1, + ACTIONS(2072), 1, sym__bracketed_text_mark_begin, - [23024] = 2, - ACTIONS(1875), 1, - sym__in_fallback, - ACTIONS(2109), 1, - sym__insert_mark_begin, - [23031] = 2, - ACTIONS(1875), 1, + [22938] = 2, + ACTIONS(2064), 1, sym__in_fallback, - ACTIONS(2112), 1, - sym__highlighted_mark_begin, - [23038] = 2, - ACTIONS(1875), 1, + ACTIONS(2075), 1, + sym__strong_mark_begin, + [22945] = 2, + ACTIONS(2078), 1, + sym__inline_attribute_mark_begin, + ACTIONS(2081), 1, sym__in_fallback, - ACTIONS(2115), 1, - sym__subscript_mark_begin, - [23045] = 2, - ACTIONS(1915), 1, + [22952] = 2, + ACTIONS(1942), 1, anon_sym_PERCENT, - STATE(901), 1, + STATE(1150), 1, sym__comment_with_newline, - [23052] = 2, - ACTIONS(2118), 1, + [22959] = 2, + ACTIONS(2083), 1, sym__emphasis_mark_begin, - ACTIONS(2121), 1, + ACTIONS(2086), 1, sym__in_fallback, - [23059] = 2, - ACTIONS(2121), 1, + [22966] = 2, + ACTIONS(2086), 1, sym__in_fallback, - ACTIONS(2123), 1, + ACTIONS(2088), 1, sym__strong_mark_begin, - [23066] = 2, - ACTIONS(2126), 1, + [22973] = 2, + ACTIONS(2091), 1, + sym__inline_attribute_mark_begin, + ACTIONS(2094), 1, + sym__in_fallback, + [22980] = 2, + ACTIONS(2096), 1, sym__inline_attribute_mark_begin, - ACTIONS(2129), 1, + ACTIONS(2099), 1, sym__in_fallback, - [23073] = 2, - ACTIONS(1875), 1, + [22987] = 2, + ACTIONS(1863), 1, + sym__id, + STATE(1225), 1, + sym_reference_label, + [22994] = 2, + ACTIONS(2012), 1, sym__in_fallback, - ACTIONS(2131), 1, - sym__superscript_mark_begin, - [23080] = 2, - ACTIONS(1893), 1, + ACTIONS(2101), 1, + sym__emphasis_mark_begin, + [23001] = 2, + ACTIONS(1942), 1, + anon_sym_PERCENT, + STATE(1043), 1, + sym__comment_with_newline, + [23008] = 2, + ACTIONS(1863), 1, sym__id, - STATE(999), 1, + STATE(931), 1, sym_reference_label, - [23087] = 2, - ACTIONS(2134), 1, + [23015] = 2, + ACTIONS(2104), 1, sym__emphasis_mark_begin, - ACTIONS(2137), 1, + ACTIONS(2107), 1, sym__in_fallback, - [23094] = 2, - ACTIONS(2137), 1, + [23022] = 2, + ACTIONS(2107), 1, sym__in_fallback, - ACTIONS(2139), 1, + ACTIONS(2109), 1, sym__strong_mark_begin, - [23101] = 2, - ACTIONS(2137), 1, + [23029] = 2, + ACTIONS(2107), 1, sym__in_fallback, - ACTIONS(2142), 1, + ACTIONS(2112), 1, sym__superscript_mark_begin, - [23108] = 2, - ACTIONS(2137), 1, + [23036] = 2, + ACTIONS(2107), 1, sym__in_fallback, - ACTIONS(2145), 1, + ACTIONS(2115), 1, sym__subscript_mark_begin, - [23115] = 2, - ACTIONS(1915), 1, + [23043] = 2, + ACTIONS(2107), 1, + sym__in_fallback, + ACTIONS(2118), 1, + sym__highlighted_mark_begin, + [23050] = 2, + ACTIONS(1942), 1, anon_sym_PERCENT, - STATE(1015), 1, + STATE(970), 1, sym__comment_with_newline, - [23122] = 2, - ACTIONS(2137), 1, + [23057] = 2, + ACTIONS(2107), 1, sym__in_fallback, - ACTIONS(2148), 1, - sym__highlighted_mark_begin, - [23129] = 2, - ACTIONS(1875), 1, + ACTIONS(2121), 1, + sym__delete_mark_begin, + [23064] = 2, + ACTIONS(2107), 1, sym__in_fallback, - ACTIONS(2151), 1, + ACTIONS(2124), 1, sym__footnote_marker_mark_begin, - [23136] = 2, - ACTIONS(2137), 1, - sym__in_fallback, - ACTIONS(2154), 1, - sym__insert_mark_begin, - [23143] = 2, - ACTIONS(2157), 1, - sym__inline_attribute_mark_begin, - ACTIONS(2160), 1, - sym__in_fallback, - [23150] = 2, - ACTIONS(2162), 1, + [23071] = 2, + ACTIONS(2127), 1, sym__strong_mark_begin, - ACTIONS(2165), 1, + ACTIONS(2130), 1, sym__in_fallback, - [23157] = 2, - ACTIONS(2165), 1, + [23078] = 2, + ACTIONS(2130), 1, sym__in_fallback, - ACTIONS(2167), 1, + ACTIONS(2132), 1, sym__emphasis_mark_begin, - [23164] = 2, - ACTIONS(1875), 1, - sym__in_fallback, - ACTIONS(2170), 1, - sym__strong_mark_begin, - [23171] = 2, - ACTIONS(2137), 1, + [23085] = 2, + ACTIONS(2107), 1, sym__in_fallback, - ACTIONS(2173), 1, - sym__delete_mark_begin, - [23178] = 2, - ACTIONS(2176), 1, + ACTIONS(2135), 1, + sym__image_description_mark_begin, + [23092] = 2, + ACTIONS(2138), 1, sym__emphasis_mark_begin, - ACTIONS(2179), 1, + ACTIONS(2141), 1, sym__in_fallback, - [23185] = 2, - ACTIONS(2179), 1, + [23099] = 2, + ACTIONS(2141), 1, sym__in_fallback, - ACTIONS(2181), 1, + ACTIONS(2143), 1, sym__strong_mark_begin, - [23192] = 2, - ACTIONS(2179), 1, + [23106] = 2, + ACTIONS(2141), 1, sym__in_fallback, - ACTIONS(2184), 1, + ACTIONS(2146), 1, sym__superscript_mark_begin, - [23199] = 2, - ACTIONS(2179), 1, + [23113] = 2, + ACTIONS(2141), 1, sym__in_fallback, - ACTIONS(2187), 1, + ACTIONS(2149), 1, sym__subscript_mark_begin, - [23206] = 2, - ACTIONS(2179), 1, + [23120] = 2, + ACTIONS(2141), 1, sym__in_fallback, - ACTIONS(2190), 1, + ACTIONS(2152), 1, sym__highlighted_mark_begin, - [23213] = 2, - ACTIONS(2179), 1, + [23127] = 2, + ACTIONS(2141), 1, sym__in_fallback, - ACTIONS(2193), 1, + ACTIONS(2155), 1, sym__insert_mark_begin, - [23220] = 2, - ACTIONS(2179), 1, + [23134] = 2, + ACTIONS(2141), 1, sym__in_fallback, - ACTIONS(2196), 1, + ACTIONS(2158), 1, sym__delete_mark_begin, - [23227] = 2, - ACTIONS(2137), 1, + [23141] = 2, + ACTIONS(2107), 1, sym__in_fallback, - ACTIONS(2199), 1, - sym__footnote_marker_mark_begin, - [23234] = 2, - ACTIONS(2179), 1, + ACTIONS(2161), 1, + sym__bracketed_text_mark_begin, + [23148] = 2, + ACTIONS(2141), 1, sym__in_fallback, - ACTIONS(2202), 1, + ACTIONS(2164), 1, sym__footnote_marker_mark_begin, - [23241] = 2, - ACTIONS(2179), 1, + [23155] = 2, + ACTIONS(2141), 1, sym__in_fallback, - ACTIONS(2205), 1, + ACTIONS(2167), 1, sym__image_description_mark_begin, - [23248] = 2, - ACTIONS(2179), 1, + [23162] = 2, + ACTIONS(2141), 1, sym__in_fallback, - ACTIONS(2208), 1, + ACTIONS(2170), 1, sym__bracketed_text_mark_begin, - [23255] = 2, - ACTIONS(1875), 1, - sym__in_fallback, - ACTIONS(2211), 1, + [23169] = 2, + ACTIONS(2173), 1, sym__emphasis_mark_begin, - [23262] = 2, - ACTIONS(2214), 1, - sym__bracketed_text_mark_begin, - ACTIONS(2217), 1, + ACTIONS(2176), 1, sym__in_fallback, - [23269] = 2, - ACTIONS(2217), 1, + [23176] = 2, + ACTIONS(2002), 1, sym__in_fallback, - ACTIONS(2219), 1, - sym__image_description_mark_begin, - [23276] = 2, - ACTIONS(2217), 1, + ACTIONS(2178), 1, + sym__bracketed_text_mark_begin, + [23183] = 2, + ACTIONS(2176), 1, sym__in_fallback, - ACTIONS(2222), 1, - sym__footnote_marker_mark_begin, - [23283] = 2, - ACTIONS(2225), 1, + ACTIONS(2181), 1, + sym__strong_mark_begin, + [23190] = 2, + ACTIONS(2184), 1, sym__emphasis_mark_begin, - ACTIONS(2228), 1, + ACTIONS(2187), 1, sym__in_fallback, - [23290] = 2, - ACTIONS(2228), 1, + [23197] = 2, + ACTIONS(2187), 1, sym__in_fallback, - ACTIONS(2230), 1, + ACTIONS(2189), 1, sym__strong_mark_begin, - [23297] = 2, - ACTIONS(2233), 1, + [23204] = 2, + ACTIONS(2192), 1, sym__inline_attribute_mark_begin, - ACTIONS(2236), 1, + ACTIONS(2195), 1, + sym__in_fallback, + [23211] = 2, + ACTIONS(2002), 1, + sym__in_fallback, + ACTIONS(2197), 1, + sym__image_description_mark_begin, + [23218] = 2, + ACTIONS(1942), 1, + anon_sym_PERCENT, + STATE(1040), 1, + sym__comment_with_newline, + [23225] = 2, + ACTIONS(2200), 1, + sym__inline_attribute_mark_begin, + ACTIONS(2203), 1, + sym__in_fallback, + [23232] = 2, + ACTIONS(2205), 1, + sym__inline_attribute_mark_begin, + ACTIONS(2208), 1, + sym__in_fallback, + [23239] = 2, + ACTIONS(2210), 1, + sym__strong_mark_begin, + ACTIONS(2213), 1, + sym__in_fallback, + [23246] = 2, + ACTIONS(2213), 1, + sym__in_fallback, + ACTIONS(2215), 1, + sym__emphasis_mark_begin, + [23253] = 2, + ACTIONS(1861), 1, + sym__in_fallback, + ACTIONS(2218), 1, + sym__bracketed_text_mark_begin, + [23260] = 2, + ACTIONS(1861), 1, sym__in_fallback, - [23304] = 2, - ACTIONS(2217), 1, + ACTIONS(2221), 1, + sym__image_description_mark_begin, + [23267] = 2, + ACTIONS(1861), 1, + sym__in_fallback, + ACTIONS(2224), 1, + sym__footnote_marker_mark_begin, + [23274] = 2, + ACTIONS(1861), 1, sym__in_fallback, - ACTIONS(2238), 1, + ACTIONS(2227), 1, sym__delete_mark_begin, - [23311] = 2, - ACTIONS(2217), 1, + [23281] = 2, + ACTIONS(1861), 1, sym__in_fallback, - ACTIONS(2241), 1, + ACTIONS(2230), 1, sym__insert_mark_begin, - [23318] = 2, - ACTIONS(2217), 1, + [23288] = 2, + ACTIONS(1861), 1, sym__in_fallback, - ACTIONS(2244), 1, + ACTIONS(2233), 1, sym__highlighted_mark_begin, - [23325] = 2, - ACTIONS(2217), 1, + [23295] = 2, + ACTIONS(1861), 1, sym__in_fallback, - ACTIONS(2247), 1, + ACTIONS(2236), 1, sym__subscript_mark_begin, - [23332] = 2, - ACTIONS(2217), 1, + [23302] = 2, + ACTIONS(2002), 1, + sym__in_fallback, + ACTIONS(2239), 1, + sym__footnote_marker_mark_begin, + [23309] = 2, + ACTIONS(1861), 1, sym__in_fallback, - ACTIONS(2250), 1, + ACTIONS(2242), 1, sym__superscript_mark_begin, - [23339] = 2, - ACTIONS(2217), 1, + [23316] = 2, + ACTIONS(1861), 1, + sym__in_fallback, + ACTIONS(2245), 1, + sym__emphasis_mark_begin, + [23323] = 2, + ACTIONS(2248), 1, + sym__emphasis_mark_begin, + ACTIONS(2251), 1, + sym__in_fallback, + [23330] = 2, + ACTIONS(2251), 1, sym__in_fallback, ACTIONS(2253), 1, sym__strong_mark_begin, - [23346] = 2, - ACTIONS(2217), 1, + [23337] = 2, + ACTIONS(2251), 1, sym__in_fallback, ACTIONS(2256), 1, - sym__emphasis_mark_begin, - [23353] = 2, - ACTIONS(2137), 1, + sym__superscript_mark_begin, + [23344] = 2, + ACTIONS(2251), 1, sym__in_fallback, ACTIONS(2259), 1, - sym__image_description_mark_begin, - [23360] = 2, - ACTIONS(2137), 1, + sym__subscript_mark_begin, + [23351] = 2, + ACTIONS(2251), 1, sym__in_fallback, ACTIONS(2262), 1, - sym__bracketed_text_mark_begin, - [23367] = 2, + sym__highlighted_mark_begin, + [23358] = 2, + ACTIONS(2251), 1, + sym__in_fallback, ACTIONS(2265), 1, - sym__inline_attribute_mark_begin, - ACTIONS(2268), 1, + sym__insert_mark_begin, + [23365] = 2, + ACTIONS(2251), 1, sym__in_fallback, - [23374] = 2, - ACTIONS(2270), 1, - sym__strong_mark_begin, - ACTIONS(2273), 1, + ACTIONS(2268), 1, + sym__delete_mark_begin, + [23372] = 2, + ACTIONS(2271), 1, + sym__inline_attribute_mark_begin, + ACTIONS(2274), 1, sym__in_fallback, - [23381] = 2, - ACTIONS(2273), 1, + [23379] = 2, + ACTIONS(2251), 1, sym__in_fallback, - ACTIONS(2275), 1, - sym__emphasis_mark_begin, - [23388] = 2, - ACTIONS(2278), 1, - sym__emphasis_mark_begin, - ACTIONS(2281), 1, + ACTIONS(2276), 1, + sym__footnote_marker_mark_begin, + [23386] = 2, + ACTIONS(2251), 1, sym__in_fallback, - [23395] = 2, - ACTIONS(2281), 1, + ACTIONS(2279), 1, + sym__image_description_mark_begin, + [23393] = 2, + ACTIONS(2251), 1, sym__in_fallback, - ACTIONS(2283), 1, - sym__strong_mark_begin, - [23402] = 2, - ACTIONS(2286), 1, + ACTIONS(2282), 1, sym__bracketed_text_mark_begin, - ACTIONS(2289), 1, + [23400] = 2, + ACTIONS(2002), 1, sym__in_fallback, - [23409] = 2, - ACTIONS(2291), 1, - sym__emphasis_mark_begin, - ACTIONS(2294), 1, + ACTIONS(2285), 1, + sym__delete_mark_begin, + [23407] = 2, + ACTIONS(2002), 1, sym__in_fallback, - [23416] = 2, + ACTIONS(2288), 1, + sym__insert_mark_begin, + [23414] = 2, + ACTIONS(2291), 1, + sym__strong_mark_begin, ACTIONS(2294), 1, sym__in_fallback, + [23421] = 2, ACTIONS(2296), 1, - sym__strong_mark_begin, - [23423] = 2, - ACTIONS(2294), 1, + sym__emphasis_mark_begin, + ACTIONS(2299), 1, sym__in_fallback, + [23428] = 2, ACTIONS(2299), 1, - sym__superscript_mark_begin, - [23430] = 2, - ACTIONS(2294), 1, sym__in_fallback, - ACTIONS(2302), 1, - sym__subscript_mark_begin, - [23437] = 2, - ACTIONS(2294), 1, + ACTIONS(2301), 1, + sym__strong_mark_begin, + [23435] = 2, + ACTIONS(2304), 1, + sym__inline_attribute_mark_begin, + ACTIONS(2307), 1, sym__in_fallback, - ACTIONS(2305), 1, - sym__highlighted_mark_begin, - [23444] = 2, - ACTIONS(2294), 1, + [23442] = 2, + ACTIONS(2002), 1, sym__in_fallback, - ACTIONS(2308), 1, - sym__insert_mark_begin, - [23451] = 2, + ACTIONS(2309), 1, + sym__highlighted_mark_begin, + [23449] = 2, ACTIONS(2294), 1, sym__in_fallback, - ACTIONS(2311), 1, - sym__delete_mark_begin, - [23458] = 2, - ACTIONS(2289), 1, - sym__in_fallback, - ACTIONS(2314), 1, - sym__image_description_mark_begin, - [23465] = 2, - ACTIONS(2294), 1, + ACTIONS(2312), 1, + sym__emphasis_mark_begin, + [23456] = 2, + ACTIONS(2315), 1, + sym__bracketed_text_mark_begin, + ACTIONS(2318), 1, sym__in_fallback, - ACTIONS(2317), 1, - sym__footnote_marker_mark_begin, - [23472] = 2, - ACTIONS(2294), 1, + [23463] = 2, + ACTIONS(2318), 1, sym__in_fallback, ACTIONS(2320), 1, sym__image_description_mark_begin, - [23479] = 2, - ACTIONS(2294), 1, + [23470] = 2, + ACTIONS(2318), 1, sym__in_fallback, ACTIONS(2323), 1, - sym__bracketed_text_mark_begin, - [23486] = 2, - ACTIONS(2289), 1, + sym__footnote_marker_mark_begin, + [23477] = 2, + ACTIONS(2318), 1, sym__in_fallback, ACTIONS(2326), 1, - sym__footnote_marker_mark_begin, - [23493] = 2, - ACTIONS(2289), 1, + sym__delete_mark_begin, + [23484] = 2, + ACTIONS(2318), 1, sym__in_fallback, ACTIONS(2329), 1, - sym__delete_mark_begin, - [23500] = 2, - ACTIONS(2289), 1, + sym__insert_mark_begin, + [23491] = 2, + ACTIONS(2318), 1, sym__in_fallback, ACTIONS(2332), 1, - sym__insert_mark_begin, - [23507] = 2, - ACTIONS(2289), 1, + sym__highlighted_mark_begin, + [23498] = 2, + ACTIONS(2318), 1, sym__in_fallback, ACTIONS(2335), 1, - sym__highlighted_mark_begin, - [23514] = 2, + sym__subscript_mark_begin, + [23505] = 2, + ACTIONS(2318), 1, + sym__in_fallback, ACTIONS(2338), 1, - sym__emphasis_mark_begin, - ACTIONS(2341), 1, + sym__superscript_mark_begin, + [23512] = 2, + ACTIONS(2318), 1, sym__in_fallback, - [23521] = 2, ACTIONS(2341), 1, - sym__in_fallback, - ACTIONS(2343), 1, sym__strong_mark_begin, - [23528] = 2, - ACTIONS(2346), 1, + [23519] = 2, + ACTIONS(2318), 1, + sym__in_fallback, + ACTIONS(2344), 1, + sym__emphasis_mark_begin, + [23526] = 2, + ACTIONS(2347), 1, sym__inline_attribute_mark_begin, - ACTIONS(2349), 1, + ACTIONS(2350), 1, sym__in_fallback, - [23535] = 2, - ACTIONS(2289), 1, + [23533] = 2, + ACTIONS(2107), 1, sym__in_fallback, - ACTIONS(2351), 1, - sym__subscript_mark_begin, - [23542] = 2, - ACTIONS(2289), 1, + ACTIONS(2352), 1, + sym__insert_mark_begin, + [23540] = 2, + ACTIONS(2002), 1, sym__in_fallback, - ACTIONS(2354), 1, + ACTIONS(2355), 1, sym__superscript_mark_begin, - [23549] = 2, - ACTIONS(2289), 1, - sym__in_fallback, - ACTIONS(2357), 1, + [23547] = 2, + ACTIONS(2358), 1, sym__strong_mark_begin, - [23556] = 2, - ACTIONS(2289), 1, + ACTIONS(2361), 1, sym__in_fallback, - ACTIONS(2360), 1, - sym__emphasis_mark_begin, - [23563] = 2, + [23554] = 2, ACTIONS(2363), 1, - sym__inline_attribute_mark_begin, + sym__emphasis_mark_begin, ACTIONS(2366), 1, sym__in_fallback, - [23570] = 2, - ACTIONS(2368), 1, - sym__inline_attribute_mark_begin, - ACTIONS(2371), 1, + [23561] = 2, + ACTIONS(2366), 1, sym__in_fallback, - [23577] = 2, - ACTIONS(2373), 1, + ACTIONS(2368), 1, sym__strong_mark_begin, - ACTIONS(2376), 1, - sym__in_fallback, - [23584] = 2, - ACTIONS(2376), 1, - sym__in_fallback, - ACTIONS(2378), 1, - sym__emphasis_mark_begin, - [23591] = 2, - ACTIONS(1870), 1, - sym__in_fallback, - ACTIONS(2381), 1, - sym__bracketed_text_mark_begin, - [23598] = 2, - ACTIONS(1870), 1, - sym__in_fallback, - ACTIONS(2384), 1, - sym__image_description_mark_begin, - [23605] = 2, - ACTIONS(1870), 1, + [23568] = 2, + ACTIONS(2366), 1, sym__in_fallback, - ACTIONS(2387), 1, - sym__footnote_marker_mark_begin, - [23612] = 2, - ACTIONS(1870), 1, + ACTIONS(2371), 1, + sym__superscript_mark_begin, + [23575] = 2, + ACTIONS(2366), 1, sym__in_fallback, - ACTIONS(2390), 1, + ACTIONS(2374), 1, sym__subscript_mark_begin, - [23619] = 2, - ACTIONS(1870), 1, + [23582] = 2, + ACTIONS(2366), 1, sym__in_fallback, - ACTIONS(2393), 1, + ACTIONS(2377), 1, sym__highlighted_mark_begin, - [23626] = 2, - ACTIONS(1870), 1, + [23589] = 2, + ACTIONS(2366), 1, sym__in_fallback, - ACTIONS(2396), 1, + ACTIONS(2380), 1, sym__insert_mark_begin, - [23633] = 2, - ACTIONS(1870), 1, + [23596] = 2, + ACTIONS(2366), 1, sym__in_fallback, - ACTIONS(2399), 1, + ACTIONS(2383), 1, sym__delete_mark_begin, - [23640] = 2, - ACTIONS(1870), 1, + [23603] = 2, + ACTIONS(2361), 1, sym__in_fallback, - ACTIONS(2402), 1, + ACTIONS(2386), 1, sym__emphasis_mark_begin, - [23647] = 2, - ACTIONS(1870), 1, + [23610] = 2, + ACTIONS(2366), 1, + sym__in_fallback, + ACTIONS(2389), 1, + sym__footnote_marker_mark_begin, + [23617] = 2, + ACTIONS(2366), 1, + sym__in_fallback, + ACTIONS(2392), 1, + sym__image_description_mark_begin, + [23624] = 2, + ACTIONS(2366), 1, sym__in_fallback, - ACTIONS(2405), 1, + ACTIONS(2395), 1, + sym__bracketed_text_mark_begin, + [23631] = 2, + ACTIONS(2002), 1, + sym__in_fallback, + ACTIONS(2398), 1, sym__strong_mark_begin, - [23654] = 1, + [23638] = 2, + ACTIONS(2002), 1, + sym__in_fallback, + ACTIONS(2401), 1, + sym__emphasis_mark_begin, + [23645] = 1, + ACTIONS(2404), 1, + sym__verbatim_end, + [23649] = 1, + ACTIONS(2406), 1, + sym__newline, + [23653] = 1, ACTIONS(2408), 1, anon_sym_RBRACE, - [23658] = 1, + [23657] = 1, ACTIONS(2410), 1, - sym__verbatim_content, - [23662] = 1, - ACTIONS(2412), 1, anon_sym_RPAREN, - [23666] = 1, + [23661] = 1, + ACTIONS(2412), 1, + anon_sym_RBRACE, + [23665] = 1, ACTIONS(2414), 1, - sym_superscript_end, - [23670] = 1, + sym__verbatim_end, + [23669] = 1, ACTIONS(2416), 1, anon_sym_RBRACE, - [23674] = 1, + [23673] = 1, ACTIONS(2418), 1, - sym__newline, - [23678] = 1, - ACTIONS(2420), 1, sym_emphasis_end, - [23682] = 1, + [23677] = 1, + ACTIONS(2420), 1, + sym_strong_end, + [23681] = 1, ACTIONS(2422), 1, - sym_footnote_marker_end, - [23686] = 1, + sym_superscript_end, + [23685] = 1, ACTIONS(2424), 1, - sym_delete_end, - [23690] = 1, - ACTIONS(2426), 1, sym_subscript_end, - [23694] = 1, + [23689] = 1, + ACTIONS(2426), 1, + sym_highlighted_end, + [23693] = 1, ACTIONS(2428), 1, - sym_emphasis_end, - [23698] = 1, + sym_insert_end, + [23697] = 1, ACTIONS(2430), 1, - anon_sym_RBRACE, - [23702] = 1, + sym_delete_end, + [23701] = 1, ACTIONS(2432), 1, - sym__verbatim_end, - [23706] = 1, + sym_footnote_marker_end, + [23705] = 1, ACTIONS(2434), 1, - sym_insert_end, - [23710] = 1, + anon_sym_RBRACK, + [23709] = 1, ACTIONS(2436), 1, - sym_highlighted_end, - [23714] = 1, + anon_sym_RPAREN, + [23713] = 1, ACTIONS(2438), 1, - sym_subscript_end, - [23718] = 1, + anon_sym_RPAREN, + [23717] = 1, ACTIONS(2440), 1, - sym__verbatim_end, - [23722] = 1, + anon_sym_RBRACK, + [23721] = 1, ACTIONS(2442), 1, - sym__verbatim_end, - [23726] = 1, - ACTIONS(2444), 1, anon_sym_RBRACE, - [23730] = 1, + [23725] = 1, + ACTIONS(2444), 1, + anon_sym_RBRACK, + [23729] = 1, ACTIONS(2446), 1, - sym_emphasis_end, - [23734] = 1, + sym_footnote_marker_end, + [23733] = 1, ACTIONS(2448), 1, - sym_strong_end, - [23738] = 1, + sym_delete_end, + [23737] = 1, ACTIONS(2450), 1, - sym_superscript_end, - [23742] = 1, + sym_insert_end, + [23741] = 1, ACTIONS(2452), 1, - sym_subscript_end, - [23746] = 1, - ACTIONS(2454), 1, sym_highlighted_end, - [23750] = 1, + [23745] = 1, + ACTIONS(2454), 1, + sym_subscript_end, + [23749] = 1, ACTIONS(2456), 1, - sym_insert_end, - [23754] = 1, + sym_superscript_end, + [23753] = 1, ACTIONS(2458), 1, - sym_delete_end, - [23758] = 1, + sym__newline, + [23757] = 1, ACTIONS(2460), 1, - sym_footnote_marker_end, - [23762] = 1, + sym_strong_end, + [23761] = 1, ACTIONS(2462), 1, - anon_sym_RBRACK, - [23766] = 1, + sym_emphasis_end, + [23765] = 1, ACTIONS(2464), 1, - anon_sym_RPAREN, - [23770] = 1, + anon_sym_RBRACE, + [23769] = 1, ACTIONS(2466), 1, - sym_superscript_end, - [23774] = 1, + sym_footnote_marker_end, + [23773] = 1, ACTIONS(2468), 1, - anon_sym_RBRACE, - [23778] = 1, + sym_delete_end, + [23777] = 1, ACTIONS(2470), 1, - sym_strong_end, - [23782] = 1, + sym__verbatim_end, + [23781] = 1, ACTIONS(2472), 1, - sym_emphasis_end, - [23786] = 1, + sym__verbatim_end, + [23785] = 1, ACTIONS(2474), 1, - anon_sym_RBRACE, - [23790] = 1, - ACTIONS(2476), 1, sym__verbatim_end, - [23794] = 1, + [23789] = 1, + ACTIONS(2476), 1, + sym__newline, + [23793] = 1, ACTIONS(2478), 1, - sym_subscript_end, - [23798] = 1, + sym_insert_end, + [23797] = 1, ACTIONS(2480), 1, sym__verbatim_end, - [23802] = 1, + [23801] = 1, ACTIONS(2482), 1, - sym_highlighted_end, - [23806] = 1, + anon_sym_RBRACE, + [23805] = 1, ACTIONS(2484), 1, - sym__newline, - [23810] = 1, + sym_emphasis_end, + [23809] = 1, ACTIONS(2486), 1, - sym_insert_end, - [23814] = 1, + sym_strong_end, + [23813] = 1, ACTIONS(2488), 1, - sym_delete_end, - [23818] = 1, + sym_superscript_end, + [23817] = 1, ACTIONS(2490), 1, - sym__newline, - [23822] = 1, + sym_subscript_end, + [23821] = 1, ACTIONS(2492), 1, - anon_sym_RBRACE, - [23826] = 1, + sym_highlighted_end, + [23825] = 1, ACTIONS(2494), 1, - sym_footnote_marker_end, - [23830] = 1, + sym_insert_end, + [23829] = 1, ACTIONS(2496), 1, - sym__verbatim_end, - [23834] = 1, + sym_delete_end, + [23833] = 1, ACTIONS(2498), 1, - sym__verbatim_end, - [23838] = 1, + sym_footnote_marker_end, + [23837] = 1, ACTIONS(2500), 1, - anon_sym_RPAREN, - [23842] = 1, - ACTIONS(2502), 1, anon_sym_RBRACK, - [23846] = 1, + [23841] = 1, + ACTIONS(2502), 1, + anon_sym_RPAREN, + [23845] = 1, ACTIONS(2504), 1, - sym_footnote_marker_end, - [23850] = 1, + sym_highlighted_end, + [23849] = 1, ACTIONS(2506), 1, - sym_delete_end, - [23854] = 1, + sym_subscript_end, + [23853] = 1, ACTIONS(2508), 1, - sym__verbatim_end, - [23858] = 1, + anon_sym_RBRACE, + [23857] = 1, ACTIONS(2510), 1, anon_sym_RBRACE, - [23862] = 1, + [23861] = 1, ACTIONS(2512), 1, - sym_emphasis_end, - [23866] = 1, + sym_superscript_end, + [23865] = 1, ACTIONS(2514), 1, - sym_strong_end, - [23870] = 1, + sym__newline, + [23869] = 1, ACTIONS(2516), 1, - sym_superscript_end, - [23874] = 1, + anon_sym_RPAREN, + [23873] = 1, ACTIONS(2518), 1, - sym_subscript_end, - [23878] = 1, + anon_sym_RBRACK, + [23877] = 1, ACTIONS(2520), 1, - sym_highlighted_end, - [23882] = 1, + sym_footnote_marker_end, + [23881] = 1, ACTIONS(2522), 1, - sym_insert_end, - [23886] = 1, - ACTIONS(2524), 1, sym_delete_end, - [23890] = 1, + [23885] = 1, + ACTIONS(2524), 1, + sym__newline, + [23889] = 1, ACTIONS(2526), 1, - sym_footnote_marker_end, - [23894] = 1, + sym_insert_end, + [23893] = 1, ACTIONS(2528), 1, - anon_sym_RBRACK, - [23898] = 1, + sym_highlighted_end, + [23897] = 1, ACTIONS(2530), 1, - anon_sym_RPAREN, - [23902] = 1, + sym_subscript_end, + [23901] = 1, ACTIONS(2532), 1, - sym_insert_end, - [23906] = 1, + sym_strong_end, + [23905] = 1, ACTIONS(2534), 1, - anon_sym_RBRACE, - [23910] = 1, + sym_emphasis_end, + [23909] = 1, ACTIONS(2536), 1, - sym_highlighted_end, - [23914] = 1, + sym__verbatim_end, + [23913] = 1, ACTIONS(2538), 1, - sym_subscript_end, - [23918] = 1, - ACTIONS(2540), 1, sym_superscript_end, - [23922] = 1, - ACTIONS(2542), 1, + [23917] = 1, + ACTIONS(2540), 1, sym_strong_end, - [23926] = 1, + [23921] = 1, + ACTIONS(2542), 1, + sym_emphasis_end, + [23925] = 1, ACTIONS(2544), 1, - anon_sym_RPAREN, - [23930] = 1, - ACTIONS(2546), 1, anon_sym_RBRACE, - [23934] = 1, - ACTIONS(2548), 1, + [23929] = 1, + ACTIONS(2546), 1, sym__verbatim_end, - [23938] = 1, + [23933] = 1, + ACTIONS(2548), 1, + anon_sym_RBRACE, + [23937] = 1, ACTIONS(2550), 1, - sym__newline, - [23942] = 1, + sym_emphasis_end, + [23941] = 1, ACTIONS(2552), 1, - anon_sym_RBRACK, - [23946] = 1, + sym_strong_end, + [23945] = 1, ACTIONS(2554), 1, - sym__verbatim_end, - [23950] = 1, + sym_superscript_end, + [23949] = 1, ACTIONS(2556), 1, - anon_sym_RPAREN, - [23954] = 1, + sym_subscript_end, + [23953] = 1, ACTIONS(2558), 1, - anon_sym_RBRACE, - [23958] = 1, + sym_highlighted_end, + [23957] = 1, ACTIONS(2560), 1, - sym__newline, - [23962] = 1, + sym_insert_end, + [23961] = 1, ACTIONS(2562), 1, - sym__newline, - [23966] = 1, + sym_delete_end, + [23965] = 1, ACTIONS(2564), 1, - sym__verbatim_end, - [23970] = 1, + sym_footnote_marker_end, + [23969] = 1, ACTIONS(2566), 1, - anon_sym_RBRACE, - [23974] = 1, + anon_sym_RBRACK, + [23973] = 1, ACTIONS(2568), 1, anon_sym_RPAREN, - [23978] = 1, + [23977] = 1, ACTIONS(2570), 1, - anon_sym_RBRACK, - [23982] = 1, + sym__verbatim_end, + [23981] = 1, ACTIONS(2572), 1, - sym_footnote_marker_end, - [23986] = 1, + anon_sym_RBRACE, + [23985] = 1, ACTIONS(2574), 1, - sym__verbatim_end, - [23990] = 1, + anon_sym_RBRACE, + [23989] = 1, ACTIONS(2576), 1, - sym_delete_end, - [23994] = 1, + sym__verbatim_content, + [23993] = 1, ACTIONS(2578), 1, - sym_emphasis_end, - [23998] = 1, + sym__inline_attribute_mark_begin, + [23997] = 1, ACTIONS(2580), 1, - sym_strong_end, - [24002] = 1, + sym__verbatim_content, + [24001] = 1, ACTIONS(2582), 1, - sym_superscript_end, - [24006] = 1, + sym__verbatim_end, + [24005] = 1, ACTIONS(2584), 1, - sym_subscript_end, - [24010] = 1, + sym__verbatim_end, + [24009] = 1, ACTIONS(2586), 1, - sym_highlighted_end, - [24014] = 1, + sym__verbatim_end, + [24013] = 1, ACTIONS(2588), 1, - sym_insert_end, - [24018] = 1, + sym__verbatim_end, + [24017] = 1, ACTIONS(2590), 1, - sym_delete_end, - [24022] = 1, + sym__newline, + [24021] = 1, ACTIONS(2592), 1, - sym_footnote_marker_end, - [24026] = 1, + anon_sym_RBRACE, + [24025] = 1, ACTIONS(2594), 1, - anon_sym_RBRACK, - [24030] = 1, - ACTIONS(2596), 1, anon_sym_RPAREN, - [24034] = 1, + [24029] = 1, + ACTIONS(2596), 1, + sym__newline, + [24033] = 1, ACTIONS(2598), 1, - sym_insert_end, - [24038] = 1, + sym_superscript_end, + [24037] = 1, ACTIONS(2600), 1, - anon_sym_RBRACE, - [24042] = 1, + anon_sym_RBRACK, + [24041] = 1, ACTIONS(2602), 1, - sym__verbatim_content, - [24046] = 1, + aux_sym_inline_link_destination_token1, + [24045] = 1, ACTIONS(2604), 1, - sym__inline_attribute_mark_begin, - [24050] = 1, + sym__whitespace, + [24049] = 1, ACTIONS(2606), 1, - sym__verbatim_content, - [24054] = 1, + sym__bracketed_text_end, + [24053] = 1, ACTIONS(2608), 1, - sym_highlighted_end, - [24058] = 1, + sym_language, + [24057] = 1, ACTIONS(2610), 1, - sym_subscript_end, - [24062] = 1, + sym__verbatim_content, + [24061] = 1, ACTIONS(2612), 1, - sym_superscript_end, - [24066] = 1, + sym__inline_attribute_mark_begin, + [24065] = 1, ACTIONS(2614), 1, - sym_strong_end, - [24070] = 1, + sym__verbatim_content, + [24069] = 1, ACTIONS(2616), 1, - sym_emphasis_end, - [24074] = 1, + sym_footnote_marker_end, + [24073] = 1, ACTIONS(2618), 1, - anon_sym_RBRACE, - [24078] = 1, + sym_subscript_end, + [24077] = 1, ACTIONS(2620), 1, - anon_sym_RPAREN, - [24082] = 1, + sym_delete_end, + [24081] = 1, ACTIONS(2622), 1, - anon_sym_RBRACK, - [24086] = 1, + sym_insert_end, + [24085] = 1, ACTIONS(2624), 1, - anon_sym_RBRACE, - [24090] = 1, + sym_highlighted_end, + [24089] = 1, ACTIONS(2626), 1, - sym_footnote_marker_end, - [24094] = 1, + sym_subscript_end, + [24093] = 1, ACTIONS(2628), 1, - aux_sym_inline_link_destination_token1, - [24098] = 1, + sym_superscript_end, + [24097] = 1, ACTIONS(2630), 1, - sym__whitespace, - [24102] = 1, + anon_sym_RBRACE, + [24101] = 1, ACTIONS(2632), 1, - sym_language, - [24106] = 1, + sym_strong_end, + [24105] = 1, ACTIONS(2634), 1, - sym__verbatim_content, - [24110] = 1, + anon_sym_RPAREN, + [24109] = 1, ACTIONS(2636), 1, - sym__inline_attribute_mark_begin, - [24114] = 1, + aux_sym_inline_link_destination_token1, + [24113] = 1, ACTIONS(2638), 1, - sym__verbatim_content, - [24118] = 1, + sym__bracketed_text_end, + [24117] = 1, ACTIONS(2640), 1, - sym__verbatim_end, - [24122] = 1, + sym_language, + [24121] = 1, ACTIONS(2642), 1, - sym_delete_end, - [24126] = 1, + sym__verbatim_content, + [24125] = 1, ACTIONS(2644), 1, - sym_insert_end, - [24130] = 1, + sym__inline_attribute_mark_begin, + [24129] = 1, ACTIONS(2646), 1, - sym_highlighted_end, - [24134] = 1, + sym__verbatim_content, + [24133] = 1, ACTIONS(2648), 1, - sym__verbatim_end, - [24138] = 1, + sym_emphasis_end, + [24137] = 1, ACTIONS(2650), 1, - sym_superscript_end, - [24142] = 1, + anon_sym_RBRACK, + [24141] = 1, ACTIONS(2652), 1, - sym_strong_end, - [24146] = 1, + sym_footnote_marker_end, + [24145] = 1, ACTIONS(2654), 1, - sym_emphasis_end, - [24150] = 1, + sym_delete_end, + [24149] = 1, ACTIONS(2656), 1, - sym__newline, - [24154] = 1, + sym_insert_end, + [24153] = 1, ACTIONS(2658), 1, - anon_sym_RBRACE, - [24158] = 1, + sym_highlighted_end, + [24157] = 1, ACTIONS(2660), 1, - aux_sym_inline_link_destination_token1, - [24162] = 1, + anon_sym_RBRACE, + [24161] = 1, ACTIONS(2662), 1, - sym_language, - [24166] = 1, + sym_superscript_end, + [24165] = 1, ACTIONS(2664), 1, - sym__verbatim_content, - [24170] = 1, + sym__verbatim_end, + [24169] = 1, ACTIONS(2666), 1, - sym__inline_attribute_mark_begin, - [24174] = 1, + sym_strong_end, + [24173] = 1, ACTIONS(2668), 1, - sym__verbatim_content, - [24178] = 1, + aux_sym_inline_link_destination_token1, + [24177] = 1, ACTIONS(2670), 1, - anon_sym_RBRACE, - [24182] = 1, + sym__bracketed_text_end, + [24181] = 1, ACTIONS(2672), 1, - sym__verbatim_end, - [24186] = 1, + sym_language, + [24185] = 1, ACTIONS(2674), 1, - sym__newline, - [24190] = 1, + sym__verbatim_content, + [24189] = 1, ACTIONS(2676), 1, - anon_sym_RBRACK, - [24194] = 1, + sym__inline_attribute_mark_begin, + [24193] = 1, ACTIONS(2678), 1, - sym_footnote_marker_end, - [24198] = 1, + sym__verbatim_content, + [24197] = 1, ACTIONS(2680), 1, sym__verbatim_end, - [24202] = 1, + [24201] = 1, ACTIONS(2682), 1, - sym_delete_end, - [24206] = 1, + sym_emphasis_end, + [24205] = 1, ACTIONS(2684), 1, - sym_insert_end, - [24210] = 1, + anon_sym_RBRACE, + [24209] = 1, ACTIONS(2686), 1, - sym_highlighted_end, - [24214] = 1, + sym__verbatim_end, + [24213] = 1, ACTIONS(2688), 1, - sym_subscript_end, - [24218] = 1, + sym__verbatim_end, + [24217] = 1, ACTIONS(2690), 1, - aux_sym_inline_link_destination_token1, - [24222] = 1, + anon_sym_RBRACE, + [24221] = 1, ACTIONS(2692), 1, - sym_language, - [24226] = 1, + sym__newline, + [24225] = 1, ACTIONS(2694), 1, - sym__verbatim_content, - [24230] = 1, + sym__verbatim_end, + [24229] = 1, ACTIONS(2696), 1, - sym__inline_attribute_mark_begin, - [24234] = 1, + anon_sym_RBRACE, + [24233] = 1, ACTIONS(2698), 1, - sym__verbatim_content, - [24238] = 1, + sym_emphasis_end, + [24237] = 1, ACTIONS(2700), 1, - sym_superscript_end, - [24242] = 1, + aux_sym_inline_link_destination_token1, + [24241] = 1, ACTIONS(2702), 1, - sym__newline, - [24246] = 1, + sym__bracketed_text_end, + [24245] = 1, ACTIONS(2704), 1, - sym_strong_end, - [24250] = 1, + sym_language, + [24249] = 1, ACTIONS(2706), 1, - sym_emphasis_end, - [24254] = 1, + sym__verbatim_content, + [24253] = 1, ACTIONS(2708), 1, - anon_sym_RBRACE, - [24258] = 1, + sym__inline_attribute_mark_begin, + [24257] = 1, ACTIONS(2710), 1, - sym__verbatim_end, - [24262] = 1, + sym__verbatim_content, + [24261] = 1, ACTIONS(2712), 1, sym_strong_end, - [24266] = 1, - ACTIONS(1697), 1, - anon_sym_RBRACE, - [24270] = 1, + [24265] = 1, ACTIONS(2714), 1, - sym__verbatim_end, - [24274] = 1, + anon_sym_RPAREN, + [24269] = 1, ACTIONS(2716), 1, - anon_sym_DQUOTE, - [24278] = 1, + anon_sym_RBRACK, + [24273] = 1, ACTIONS(2718), 1, - aux_sym_inline_link_destination_token1, - [24282] = 1, + sym__newline, + [24277] = 1, ACTIONS(2720), 1, - sym_language, - [24286] = 1, + sym_footnote_marker_end, + [24281] = 1, ACTIONS(2722), 1, - sym__verbatim_content, - [24290] = 1, + sym_delete_end, + [24285] = 1, ACTIONS(2724), 1, - sym__inline_attribute_mark_begin, - [24294] = 1, + sym_insert_end, + [24289] = 1, ACTIONS(2726), 1, - sym__verbatim_content, - [24298] = 1, + sym_highlighted_end, + [24293] = 1, ACTIONS(2728), 1, - sym__newline, - [24302] = 1, + sym_subscript_end, + [24297] = 1, ACTIONS(2730), 1, - anon_sym_RBRACE, - [24306] = 1, + sym_superscript_end, + [24301] = 1, ACTIONS(2732), 1, - aux_sym_value_token1, - [24310] = 1, - ACTIONS(1687), 1, - anon_sym_RBRACE, - [24314] = 1, + aux_sym_inline_link_destination_token1, + [24305] = 1, ACTIONS(2734), 1, - anon_sym_RBRACE, - [24318] = 1, + sym__bracketed_text_end, + [24309] = 1, ACTIONS(2736), 1, - anon_sym_EQ, - [24322] = 1, + sym_language, + [24313] = 1, ACTIONS(2738), 1, - anon_sym_RPAREN, - [24326] = 1, + sym__verbatim_content, + [24317] = 1, ACTIONS(2740), 1, - anon_sym_EQ, - [24330] = 1, + sym__inline_attribute_mark_begin, + [24321] = 1, ACTIONS(2742), 1, - anon_sym_RBRACK, - [24334] = 1, + sym__verbatim_content, + [24325] = 1, ACTIONS(2744), 1, - sym_language, - [24338] = 1, + sym_strong_end, + [24329] = 1, ACTIONS(2746), 1, - aux_sym_inline_link_destination_token1, - [24342] = 1, + sym_emphasis_end, + [24333] = 1, ACTIONS(2748), 1, - sym_language, - [24346] = 1, + aux_sym_value_token1, + [24337] = 1, ACTIONS(2750), 1, - sym__verbatim_content, - [24350] = 1, + anon_sym_DQUOTE, + [24341] = 1, + ACTIONS(1703), 1, + anon_sym_RBRACE, + [24345] = 1, ACTIONS(2752), 1, - sym__inline_attribute_mark_begin, - [24354] = 1, + anon_sym_RBRACE, + [24349] = 1, + ACTIONS(1701), 1, + anon_sym_RBRACE, + [24353] = 1, ACTIONS(2754), 1, - anon_sym_RBRACK, - [24358] = 1, + anon_sym_RBRACE, + [24357] = 1, ACTIONS(2756), 1, - sym_footnote_marker_end, - [24362] = 1, + sym__verbatim_end, + [24361] = 1, ACTIONS(2758), 1, - sym__bracketed_text_end, - [24366] = 1, + anon_sym_EQ, + [24365] = 1, ACTIONS(2760), 1, - sym__image_description_end, - [24370] = 1, + aux_sym_inline_link_destination_token1, + [24369] = 1, ACTIONS(2762), 1, - anon_sym_RPAREN, - [24374] = 1, + sym__bracketed_text_end, + [24373] = 1, ACTIONS(2764), 1, - anon_sym_RBRACK, - [24378] = 1, + sym_language, + [24377] = 1, ACTIONS(2766), 1, - sym_footnote_marker_end, - [24382] = 1, + sym__verbatim_content, + [24381] = 1, ACTIONS(2768), 1, - sym_footnote_marker_end, - [24386] = 1, + sym__inline_attribute_mark_begin, + [24385] = 1, ACTIONS(2770), 1, - sym_delete_end, - [24390] = 1, + sym__verbatim_content, + [24389] = 1, ACTIONS(2772), 1, - sym_delete_end, - [24394] = 1, + sym__verbatim_end, + [24393] = 1, ACTIONS(2774), 1, - sym_insert_end, - [24398] = 1, + sym__newline, + [24397] = 1, ACTIONS(2776), 1, - aux_sym_inline_link_destination_token1, - [24402] = 1, + anon_sym_EQ, + [24401] = 1, ACTIONS(2778), 1, sym_language, - [24406] = 1, + [24405] = 1, ACTIONS(2780), 1, - sym__verbatim_content, - [24410] = 1, + sym__bracketed_text_end, + [24409] = 1, ACTIONS(2782), 1, - sym__inline_attribute_mark_begin, - [24414] = 1, + sym__image_description_end, + [24413] = 1, ACTIONS(2784), 1, - sym__verbatim_content, - [24418] = 1, + anon_sym_RPAREN, + [24417] = 1, ACTIONS(2786), 1, - sym_insert_end, - [24422] = 1, + anon_sym_RBRACK, + [24421] = 1, ACTIONS(2788), 1, - sym_highlighted_end, - [24426] = 1, + anon_sym_RBRACE, + [24425] = 1, ACTIONS(2790), 1, - sym_subscript_end, - [24430] = 1, + sym_footnote_marker_end, + [24429] = 1, ACTIONS(2792), 1, - sym_superscript_end, - [24434] = 1, + aux_sym_inline_link_destination_token1, + [24433] = 1, ACTIONS(2794), 1, - sym_strong_end, - [24438] = 1, + sym__bracketed_text_end, + [24437] = 1, ACTIONS(2796), 1, - sym_emphasis_end, - [24442] = 1, + sym_language, + [24441] = 1, ACTIONS(2798), 1, - anon_sym_RBRACE, - [24446] = 1, + sym__verbatim_content, + [24445] = 1, ACTIONS(2800), 1, - sym__whitespace, - [24450] = 1, + sym__inline_attribute_mark_begin, + [24449] = 1, ACTIONS(2802), 1, - sym_highlighted_end, - [24454] = 1, + sym__verbatim_content, + [24453] = 1, ACTIONS(2804), 1, - sym__verbatim_end, - [24458] = 1, + anon_sym_RPAREN, + [24457] = 1, ACTIONS(2806), 1, - aux_sym_inline_link_destination_token1, - [24462] = 1, + sym_footnote_marker_end, + [24461] = 1, ACTIONS(2808), 1, - sym_language, - [24466] = 1, + sym_delete_end, + [24465] = 1, ACTIONS(2810), 1, - sym__verbatim_content, - [24470] = 1, + sym_insert_end, + [24469] = 1, ACTIONS(2812), 1, - sym__inline_attribute_mark_begin, - [24474] = 1, + sym_highlighted_end, + [24473] = 1, ACTIONS(2814), 1, - sym__verbatim_content, - [24478] = 1, - ACTIONS(2816), 1, sym_subscript_end, - [24482] = 1, + [24477] = 1, + ACTIONS(2816), 1, + sym_superscript_end, + [24481] = 1, ACTIONS(2818), 1, - aux_sym_inline_link_destination_token1, - [24486] = 1, + sym_strong_end, + [24485] = 1, ACTIONS(2820), 1, - sym_superscript_end, - [24490] = 1, + anon_sym_RBRACK, + [24489] = 1, ACTIONS(2822), 1, - sym_strong_end, - [24494] = 1, + sym_emphasis_end, + [24493] = 1, ACTIONS(2824), 1, - sym__verbatim_content, - [24498] = 1, + aux_sym_inline_link_destination_token1, + [24497] = 1, ACTIONS(2826), 1, - sym__inline_attribute_mark_begin, - [24502] = 1, + sym__bracketed_text_end, + [24501] = 1, ACTIONS(2828), 1, - sym_emphasis_end, - [24506] = 1, + sym_language, + [24505] = 1, ACTIONS(2830), 1, - anon_sym_RBRACE, - [24510] = 1, + sym__verbatim_content, + [24509] = 1, ACTIONS(2832), 1, - sym__verbatim_end, - [24514] = 1, + sym__inline_attribute_mark_begin, + [24513] = 1, ACTIONS(2834), 1, - sym__verbatim_end, - [24518] = 1, + sym__verbatim_content, + [24517] = 1, ACTIONS(2836), 1, - aux_sym_inline_link_destination_token1, - [24522] = 1, + sym_footnote_marker_end, + [24521] = 1, ACTIONS(2838), 1, - sym_language, - [24526] = 1, + anon_sym_RBRACE, + [24525] = 1, ACTIONS(2840), 1, - sym__verbatim_content, - [24530] = 1, + sym__whitespace, + [24529] = 1, ACTIONS(2842), 1, - sym__inline_attribute_mark_begin, - [24534] = 1, + sym__verbatim_end, + [24533] = 1, ACTIONS(2844), 1, - sym__verbatim_content, - [24538] = 1, + aux_sym_inline_link_destination_token1, + [24537] = 1, ACTIONS(2846), 1, - sym__newline, - [24542] = 1, + sym_delete_end, + [24541] = 1, ACTIONS(2848), 1, - sym__verbatim_end, - [24546] = 1, + sym_insert_end, + [24545] = 1, ACTIONS(2850), 1, - sym__bracketed_text_mark_begin, - [24550] = 1, + sym__verbatim_content, + [24549] = 1, ACTIONS(2852), 1, - sym__image_description_mark_begin, - [24554] = 1, + sym_highlighted_end, + [24553] = 1, ACTIONS(2854), 1, - sym__footnote_marker_mark_begin, - [24558] = 1, + sym__inline_attribute_mark_begin, + [24557] = 1, ACTIONS(2856), 1, - sym__delete_mark_begin, - [24562] = 1, + aux_sym_inline_link_destination_token1, + [24561] = 1, ACTIONS(2858), 1, - sym__insert_mark_begin, - [24566] = 1, + sym__bracketed_text_end, + [24565] = 1, ACTIONS(2860), 1, - sym__highlighted_mark_begin, - [24570] = 1, + sym_language, + [24569] = 1, ACTIONS(2862), 1, - anon_sym_RBRACE, - [24574] = 1, + sym__verbatim_content, + [24573] = 1, ACTIONS(2864), 1, - sym__subscript_mark_begin, - [24578] = 1, + sym__inline_attribute_mark_begin, + [24577] = 1, ACTIONS(2866), 1, - aux_sym_inline_link_destination_token1, - [24582] = 1, + sym__verbatim_content, + [24581] = 1, ACTIONS(2868), 1, - sym_language, - [24586] = 1, + sym_subscript_end, + [24585] = 1, ACTIONS(2870), 1, sym__verbatim_content, - [24590] = 1, + [24589] = 1, ACTIONS(2872), 1, - sym__inline_attribute_mark_begin, - [24594] = 1, + sym_superscript_end, + [24593] = 1, ACTIONS(2874), 1, - sym__verbatim_content, - [24598] = 1, + sym_strong_end, + [24597] = 1, ACTIONS(2876), 1, - anon_sym_RPAREN, - [24602] = 1, + sym__verbatim_end, + [24601] = 1, ACTIONS(2878), 1, - sym__superscript_mark_begin, - [24606] = 1, + sym__bracketed_text_mark_begin, + [24605] = 1, ACTIONS(2880), 1, - sym__strong_mark_begin, - [24610] = 1, + sym__image_description_mark_begin, + [24609] = 1, ACTIONS(2882), 1, - sym__emphasis_mark_begin, - [24614] = 1, + sym__footnote_marker_mark_begin, + [24613] = 1, ACTIONS(2884), 1, - ts_builtin_sym_end, - [24618] = 1, + sym_emphasis_end, + [24617] = 1, ACTIONS(2886), 1, - ts_builtin_sym_end, - [24622] = 1, + sym__delete_mark_begin, + [24621] = 1, ACTIONS(2888), 1, - anon_sym_RBRACK, - [24626] = 1, + aux_sym_inline_link_destination_token1, + [24625] = 1, ACTIONS(2890), 1, - sym_footnote_marker_end, - [24630] = 1, + sym__bracketed_text_end, + [24629] = 1, ACTIONS(2892), 1, - sym_delete_end, - [24634] = 1, + sym_language, + [24633] = 1, ACTIONS(2894), 1, - sym_insert_end, - [24638] = 1, + sym__verbatim_content, + [24637] = 1, ACTIONS(2896), 1, - aux_sym_inline_link_destination_token1, - [24642] = 1, + sym__inline_attribute_mark_begin, + [24641] = 1, ACTIONS(2898), 1, - sym_language, - [24646] = 1, - ACTIONS(2900), 1, sym__verbatim_content, - [24650] = 1, + [24645] = 1, + ACTIONS(2900), 1, + anon_sym_RBRACE, + [24649] = 1, ACTIONS(2902), 1, - sym__inline_attribute_mark_begin, - [24654] = 1, + sym__insert_mark_begin, + [24653] = 1, ACTIONS(2904), 1, - sym__verbatim_content, - [24658] = 1, + sym__highlighted_mark_begin, + [24657] = 1, ACTIONS(2906), 1, - sym_highlighted_end, - [24662] = 1, + sym__subscript_mark_begin, + [24661] = 1, ACTIONS(2908), 1, - sym__newline, - [24666] = 1, + sym__superscript_mark_begin, + [24665] = 1, ACTIONS(2910), 1, - sym_subscript_end, - [24670] = 1, + sym__strong_mark_begin, + [24669] = 1, ACTIONS(2912), 1, - sym_superscript_end, - [24674] = 1, + sym__emphasis_mark_begin, + [24673] = 1, ACTIONS(2914), 1, - sym_strong_end, - [24678] = 1, + ts_builtin_sym_end, + [24677] = 1, ACTIONS(2916), 1, - sym_emphasis_end, - [24682] = 1, + sym__verbatim_end, + [24681] = 1, ACTIONS(2918), 1, - sym__verbatim_content, - [24686] = 1, + ts_builtin_sym_end, + [24685] = 1, ACTIONS(2920), 1, - anon_sym_RBRACE, - [24690] = 1, + aux_sym_inline_link_destination_token1, + [24689] = 1, ACTIONS(2922), 1, - sym__verbatim_end, - [24694] = 1, + sym__bracketed_text_end, + [24693] = 1, ACTIONS(2924), 1, - sym__verbatim_end, - [24698] = 1, + sym_language, + [24697] = 1, ACTIONS(2926), 1, - aux_sym_inline_link_destination_token1, - [24702] = 1, + sym__emphasis_mark_begin, + [24701] = 1, ACTIONS(2928), 1, - sym_language, - [24706] = 1, + sym__strong_mark_begin, + [24705] = 1, ACTIONS(2930), 1, - sym__emphasis_mark_begin, - [24710] = 1, + sym__superscript_mark_begin, + [24709] = 1, ACTIONS(2932), 1, - sym__strong_mark_begin, - [24714] = 1, + sym__subscript_mark_begin, + [24713] = 1, ACTIONS(2934), 1, - sym__superscript_mark_begin, - [24718] = 1, + sym__highlighted_mark_begin, + [24717] = 1, ACTIONS(2936), 1, - sym__subscript_mark_begin, - [24722] = 1, + sym__insert_mark_begin, + [24721] = 1, ACTIONS(2938), 1, - sym__highlighted_mark_begin, - [24726] = 1, + sym__delete_mark_begin, + [24725] = 1, ACTIONS(2940), 1, - sym__insert_mark_begin, - [24730] = 1, + sym__footnote_marker_mark_begin, + [24729] = 1, ACTIONS(2942), 1, - sym__delete_mark_begin, - [24734] = 1, + sym__verbatim_end, + [24733] = 1, ACTIONS(2944), 1, - sym__footnote_marker_mark_begin, - [24738] = 1, - ACTIONS(2946), 1, sym__emphasis_mark_begin, - [24742] = 1, - ACTIONS(2948), 1, + [24737] = 1, + ACTIONS(2946), 1, sym__strong_mark_begin, - [24746] = 1, - ACTIONS(2950), 1, + [24741] = 1, + ACTIONS(2948), 1, sym__superscript_mark_begin, - [24750] = 1, - ACTIONS(2952), 1, + [24745] = 1, + ACTIONS(2950), 1, sym__subscript_mark_begin, - [24754] = 1, - ACTIONS(2954), 1, + [24749] = 1, + ACTIONS(2952), 1, sym__highlighted_mark_begin, - [24758] = 1, - ACTIONS(2956), 1, + [24753] = 1, + ACTIONS(2954), 1, sym__insert_mark_begin, - [24762] = 1, - ACTIONS(2958), 1, + [24757] = 1, + ACTIONS(2956), 1, sym__delete_mark_begin, - [24766] = 1, - ACTIONS(2960), 1, + [24761] = 1, + ACTIONS(2958), 1, sym__footnote_marker_mark_begin, - [24770] = 1, + [24765] = 1, + ACTIONS(2960), 1, + sym__newline, + [24769] = 1, ACTIONS(2962), 1, sym__emphasis_mark_begin, - [24774] = 1, + [24773] = 1, ACTIONS(2964), 1, sym__strong_mark_begin, - [24778] = 1, + [24777] = 1, ACTIONS(2966), 1, sym__superscript_mark_begin, - [24782] = 1, + [24781] = 1, ACTIONS(2968), 1, sym__subscript_mark_begin, - [24786] = 1, + [24785] = 1, ACTIONS(2970), 1, sym__highlighted_mark_begin, - [24790] = 1, + [24789] = 1, ACTIONS(2972), 1, sym__insert_mark_begin, - [24794] = 1, + [24793] = 1, ACTIONS(2974), 1, sym__delete_mark_begin, - [24798] = 1, + [24797] = 1, ACTIONS(2976), 1, sym__footnote_marker_mark_begin, - [24802] = 1, + [24801] = 1, ACTIONS(2978), 1, - sym__emphasis_mark_begin, - [24806] = 1, + anon_sym_RBRACE, + [24805] = 1, ACTIONS(2980), 1, - sym__strong_mark_begin, - [24810] = 1, + sym__emphasis_mark_begin, + [24809] = 1, ACTIONS(2982), 1, - sym__superscript_mark_begin, - [24814] = 1, + sym__strong_mark_begin, + [24813] = 1, ACTIONS(2984), 1, - sym__subscript_mark_begin, - [24818] = 1, + sym__superscript_mark_begin, + [24817] = 1, ACTIONS(2986), 1, - sym__highlighted_mark_begin, - [24822] = 1, + sym__subscript_mark_begin, + [24821] = 1, ACTIONS(2988), 1, - sym__insert_mark_begin, - [24826] = 1, + sym__highlighted_mark_begin, + [24825] = 1, ACTIONS(2990), 1, - sym__delete_mark_begin, - [24830] = 1, + sym__insert_mark_begin, + [24829] = 1, ACTIONS(2992), 1, - sym__footnote_marker_mark_begin, - [24834] = 1, + sym__delete_mark_begin, + [24833] = 1, ACTIONS(2994), 1, - sym__emphasis_mark_begin, - [24838] = 1, + sym__footnote_marker_mark_begin, + [24837] = 1, ACTIONS(2996), 1, - sym__strong_mark_begin, - [24842] = 1, + sym__newline, + [24841] = 1, ACTIONS(2998), 1, - sym__superscript_mark_begin, - [24846] = 1, + sym__emphasis_mark_begin, + [24845] = 1, ACTIONS(3000), 1, - sym__subscript_mark_begin, - [24850] = 1, + sym__strong_mark_begin, + [24849] = 1, ACTIONS(3002), 1, - sym__highlighted_mark_begin, - [24854] = 1, + sym__superscript_mark_begin, + [24853] = 1, ACTIONS(3004), 1, - sym__insert_mark_begin, - [24858] = 1, + sym__subscript_mark_begin, + [24857] = 1, ACTIONS(3006), 1, - sym__delete_mark_begin, - [24862] = 1, + sym__highlighted_mark_begin, + [24861] = 1, ACTIONS(3008), 1, - sym__footnote_marker_mark_begin, - [24866] = 1, + sym__insert_mark_begin, + [24865] = 1, ACTIONS(3010), 1, - sym__emphasis_mark_begin, - [24870] = 1, + sym__delete_mark_begin, + [24869] = 1, ACTIONS(3012), 1, - sym__strong_mark_begin, - [24874] = 1, + sym__footnote_marker_mark_begin, + [24873] = 1, ACTIONS(3014), 1, - sym__superscript_mark_begin, - [24878] = 1, + anon_sym_RPAREN, + [24877] = 1, ACTIONS(3016), 1, - sym__subscript_mark_begin, - [24882] = 1, + sym__emphasis_mark_begin, + [24881] = 1, ACTIONS(3018), 1, - sym__highlighted_mark_begin, - [24886] = 1, + sym__strong_mark_begin, + [24885] = 1, ACTIONS(3020), 1, - sym__insert_mark_begin, - [24890] = 1, + sym__superscript_mark_begin, + [24889] = 1, ACTIONS(3022), 1, - sym__delete_mark_begin, - [24894] = 1, + sym__subscript_mark_begin, + [24893] = 1, ACTIONS(3024), 1, - sym__footnote_marker_mark_begin, - [24898] = 1, + sym__highlighted_mark_begin, + [24897] = 1, ACTIONS(3026), 1, - sym__emphasis_mark_begin, - [24902] = 1, + sym__insert_mark_begin, + [24901] = 1, ACTIONS(3028), 1, - sym__strong_mark_begin, - [24906] = 1, + sym__delete_mark_begin, + [24905] = 1, ACTIONS(3030), 1, - sym__superscript_mark_begin, - [24910] = 1, + sym__footnote_marker_mark_begin, + [24909] = 1, ACTIONS(3032), 1, - sym__subscript_mark_begin, - [24914] = 1, + anon_sym_RBRACK, + [24913] = 1, ACTIONS(3034), 1, - sym__highlighted_mark_begin, - [24918] = 1, + sym__emphasis_mark_begin, + [24917] = 1, ACTIONS(3036), 1, - sym__insert_mark_begin, - [24922] = 1, + sym__strong_mark_begin, + [24921] = 1, ACTIONS(3038), 1, - sym__delete_mark_begin, - [24926] = 1, + sym__superscript_mark_begin, + [24925] = 1, ACTIONS(3040), 1, - sym__footnote_marker_mark_begin, - [24930] = 1, + sym__subscript_mark_begin, + [24929] = 1, ACTIONS(3042), 1, - sym__emphasis_mark_begin, - [24934] = 1, + sym__highlighted_mark_begin, + [24933] = 1, ACTIONS(3044), 1, - sym__strong_mark_begin, - [24938] = 1, + sym__insert_mark_begin, + [24937] = 1, ACTIONS(3046), 1, - sym__superscript_mark_begin, - [24942] = 1, + sym__delete_mark_begin, + [24941] = 1, ACTIONS(3048), 1, - sym__subscript_mark_begin, - [24946] = 1, + sym__footnote_marker_mark_begin, + [24945] = 1, ACTIONS(3050), 1, - sym__highlighted_mark_begin, - [24950] = 1, + sym_footnote_marker_end, + [24949] = 1, ACTIONS(3052), 1, - sym__insert_mark_begin, - [24954] = 1, + sym__emphasis_mark_begin, + [24953] = 1, ACTIONS(3054), 1, - sym__delete_mark_begin, - [24958] = 1, + sym__strong_mark_begin, + [24957] = 1, ACTIONS(3056), 1, - sym__footnote_marker_mark_begin, - [24962] = 1, + sym__superscript_mark_begin, + [24961] = 1, ACTIONS(3058), 1, - sym__emphasis_mark_begin, - [24966] = 1, + sym__subscript_mark_begin, + [24965] = 1, ACTIONS(3060), 1, - sym__strong_mark_begin, - [24970] = 1, + sym__highlighted_mark_begin, + [24969] = 1, ACTIONS(3062), 1, - sym__superscript_mark_begin, - [24974] = 1, + sym__insert_mark_begin, + [24973] = 1, ACTIONS(3064), 1, - sym__subscript_mark_begin, - [24978] = 1, + sym__delete_mark_begin, + [24977] = 1, ACTIONS(3066), 1, - sym__highlighted_mark_begin, - [24982] = 1, + sym__footnote_marker_mark_begin, + [24981] = 1, ACTIONS(3068), 1, - sym__insert_mark_begin, - [24986] = 1, + sym_delete_end, + [24985] = 1, ACTIONS(3070), 1, - sym__delete_mark_begin, - [24990] = 1, + sym__emphasis_mark_begin, + [24989] = 1, ACTIONS(3072), 1, - sym__footnote_marker_mark_begin, - [24994] = 1, + sym__strong_mark_begin, + [24993] = 1, ACTIONS(3074), 1, - sym__emphasis_mark_begin, - [24998] = 1, + sym__superscript_mark_begin, + [24997] = 1, ACTIONS(3076), 1, - sym__strong_mark_begin, - [25002] = 1, + sym__subscript_mark_begin, + [25001] = 1, ACTIONS(3078), 1, - sym__superscript_mark_begin, - [25006] = 1, + sym__highlighted_mark_begin, + [25005] = 1, ACTIONS(3080), 1, - sym__subscript_mark_begin, - [25010] = 1, + sym__insert_mark_begin, + [25009] = 1, ACTIONS(3082), 1, - sym__highlighted_mark_begin, - [25014] = 1, + sym__delete_mark_begin, + [25013] = 1, ACTIONS(3084), 1, - sym__insert_mark_begin, - [25018] = 1, + sym__footnote_marker_mark_begin, + [25017] = 1, ACTIONS(3086), 1, - sym__delete_mark_begin, - [25022] = 1, + sym_insert_end, + [25021] = 1, ACTIONS(3088), 1, - sym__footnote_marker_mark_begin, - [25026] = 1, - ACTIONS(3090), 1, sym__emphasis_mark_begin, - [25030] = 1, - ACTIONS(3092), 1, + [25025] = 1, + ACTIONS(3090), 1, sym__strong_mark_begin, - [25034] = 1, - ACTIONS(3094), 1, + [25029] = 1, + ACTIONS(3092), 1, sym__superscript_mark_begin, - [25038] = 1, - ACTIONS(3096), 1, + [25033] = 1, + ACTIONS(3094), 1, sym__subscript_mark_begin, - [25042] = 1, - ACTIONS(3098), 1, + [25037] = 1, + ACTIONS(3096), 1, sym__highlighted_mark_begin, - [25046] = 1, - ACTIONS(3100), 1, + [25041] = 1, + ACTIONS(3098), 1, sym__insert_mark_begin, - [25050] = 1, - ACTIONS(3102), 1, + [25045] = 1, + ACTIONS(3100), 1, sym__delete_mark_begin, - [25054] = 1, + [25049] = 1, + ACTIONS(3102), 1, + sym__footnote_marker_mark_begin, + [25053] = 1, ACTIONS(3104), 1, + sym_highlighted_end, + [25057] = 1, + ACTIONS(3106), 1, + sym__emphasis_mark_begin, + [25061] = 1, + ACTIONS(3108), 1, + sym__strong_mark_begin, + [25065] = 1, + ACTIONS(3110), 1, + sym__superscript_mark_begin, + [25069] = 1, + ACTIONS(3112), 1, + sym__subscript_mark_begin, + [25073] = 1, + ACTIONS(3114), 1, + sym__highlighted_mark_begin, + [25077] = 1, + ACTIONS(3116), 1, + sym__insert_mark_begin, + [25081] = 1, + ACTIONS(3118), 1, + sym__delete_mark_begin, + [25085] = 1, + ACTIONS(3120), 1, sym__footnote_marker_mark_begin, + [25089] = 1, + ACTIONS(3122), 1, + sym_subscript_end, + [25093] = 1, + ACTIONS(3124), 1, + sym__bracketed_text_mark_begin, + [25097] = 1, + ACTIONS(3126), 1, + sym__bracketed_text_mark_begin, + [25101] = 1, + ACTIONS(3128), 1, + sym__bracketed_text_mark_begin, + [25105] = 1, + ACTIONS(3130), 1, + sym__bracketed_text_mark_begin, + [25109] = 1, + ACTIONS(3132), 1, + sym__bracketed_text_mark_begin, + [25113] = 1, + ACTIONS(3134), 1, + sym__bracketed_text_mark_begin, + [25117] = 1, + ACTIONS(3136), 1, + sym__bracketed_text_mark_begin, + [25121] = 1, + ACTIONS(3138), 1, + sym__bracketed_text_mark_begin, + [25125] = 1, + ACTIONS(3140), 1, + sym__bracketed_text_mark_begin, + [25129] = 1, + ACTIONS(3142), 1, + sym__bracketed_text_mark_begin, + [25133] = 1, + ACTIONS(3144), 1, + sym__bracketed_text_mark_begin, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(121)] = 0, - [SMALL_STATE(122)] = 52, - [SMALL_STATE(123)] = 104, - [SMALL_STATE(124)] = 156, - [SMALL_STATE(125)] = 208, - [SMALL_STATE(126)] = 260, - [SMALL_STATE(127)] = 312, - [SMALL_STATE(128)] = 364, - [SMALL_STATE(129)] = 416, - [SMALL_STATE(130)] = 468, - [SMALL_STATE(131)] = 520, - [SMALL_STATE(132)] = 572, - [SMALL_STATE(133)] = 623, - [SMALL_STATE(134)] = 672, - [SMALL_STATE(135)] = 721, - [SMALL_STATE(136)] = 770, - [SMALL_STATE(137)] = 819, - [SMALL_STATE(138)] = 868, - [SMALL_STATE(139)] = 917, - [SMALL_STATE(140)] = 966, - [SMALL_STATE(141)] = 1015, - [SMALL_STATE(142)] = 1064, - [SMALL_STATE(143)] = 1113, - [SMALL_STATE(144)] = 1162, - [SMALL_STATE(145)] = 1210, - [SMALL_STATE(146)] = 1256, - [SMALL_STATE(147)] = 1302, - [SMALL_STATE(148)] = 1348, - [SMALL_STATE(149)] = 1394, - [SMALL_STATE(150)] = 1440, - [SMALL_STATE(151)] = 1486, - [SMALL_STATE(152)] = 1532, - [SMALL_STATE(153)] = 1578, - [SMALL_STATE(154)] = 1624, - [SMALL_STATE(155)] = 1670, - [SMALL_STATE(156)] = 1716, - [SMALL_STATE(157)] = 1761, - [SMALL_STATE(158)] = 1804, - [SMALL_STATE(159)] = 1847, - [SMALL_STATE(160)] = 1890, - [SMALL_STATE(161)] = 1933, - [SMALL_STATE(162)] = 1978, - [SMALL_STATE(163)] = 2021, - [SMALL_STATE(164)] = 2064, - [SMALL_STATE(165)] = 2107, - [SMALL_STATE(166)] = 2152, - [SMALL_STATE(167)] = 2197, - [SMALL_STATE(168)] = 2240, - [SMALL_STATE(169)] = 2283, - [SMALL_STATE(170)] = 2326, - [SMALL_STATE(171)] = 2369, - [SMALL_STATE(172)] = 2414, - [SMALL_STATE(173)] = 2457, - [SMALL_STATE(174)] = 2500, - [SMALL_STATE(175)] = 2545, - [SMALL_STATE(176)] = 2588, - [SMALL_STATE(177)] = 2633, - [SMALL_STATE(178)] = 2676, - [SMALL_STATE(179)] = 2719, - [SMALL_STATE(180)] = 2762, - [SMALL_STATE(181)] = 2807, - [SMALL_STATE(182)] = 2850, - [SMALL_STATE(183)] = 2893, - [SMALL_STATE(184)] = 2938, - [SMALL_STATE(185)] = 2983, - [SMALL_STATE(186)] = 3026, - [SMALL_STATE(187)] = 3069, - [SMALL_STATE(188)] = 3112, - [SMALL_STATE(189)] = 3155, - [SMALL_STATE(190)] = 3198, - [SMALL_STATE(191)] = 3241, - [SMALL_STATE(192)] = 3284, - [SMALL_STATE(193)] = 3327, - [SMALL_STATE(194)] = 3372, - [SMALL_STATE(195)] = 3415, - [SMALL_STATE(196)] = 3458, - [SMALL_STATE(197)] = 3503, - [SMALL_STATE(198)] = 3546, - [SMALL_STATE(199)] = 3591, - [SMALL_STATE(200)] = 3634, - [SMALL_STATE(201)] = 3677, - [SMALL_STATE(202)] = 3722, - [SMALL_STATE(203)] = 3767, - [SMALL_STATE(204)] = 3812, - [SMALL_STATE(205)] = 3855, - [SMALL_STATE(206)] = 3900, - [SMALL_STATE(207)] = 3943, - [SMALL_STATE(208)] = 3986, - [SMALL_STATE(209)] = 4031, - [SMALL_STATE(210)] = 4074, - [SMALL_STATE(211)] = 4117, - [SMALL_STATE(212)] = 4160, - [SMALL_STATE(213)] = 4203, - [SMALL_STATE(214)] = 4248, - [SMALL_STATE(215)] = 4291, - [SMALL_STATE(216)] = 4336, - [SMALL_STATE(217)] = 4381, - [SMALL_STATE(218)] = 4424, - [SMALL_STATE(219)] = 4467, - [SMALL_STATE(220)] = 4510, - [SMALL_STATE(221)] = 4553, - [SMALL_STATE(222)] = 4593, - [SMALL_STATE(223)] = 4633, - [SMALL_STATE(224)] = 4677, - [SMALL_STATE(225)] = 4717, - [SMALL_STATE(226)] = 4757, - [SMALL_STATE(227)] = 4797, - [SMALL_STATE(228)] = 4837, - [SMALL_STATE(229)] = 4877, - [SMALL_STATE(230)] = 4917, - [SMALL_STATE(231)] = 4957, - [SMALL_STATE(232)] = 4997, - [SMALL_STATE(233)] = 5037, - [SMALL_STATE(234)] = 5077, - [SMALL_STATE(235)] = 5117, - [SMALL_STATE(236)] = 5157, - [SMALL_STATE(237)] = 5197, - [SMALL_STATE(238)] = 5237, - [SMALL_STATE(239)] = 5277, - [SMALL_STATE(240)] = 5317, - [SMALL_STATE(241)] = 5357, - [SMALL_STATE(242)] = 5399, - [SMALL_STATE(243)] = 5439, - [SMALL_STATE(244)] = 5479, - [SMALL_STATE(245)] = 5519, - [SMALL_STATE(246)] = 5559, - [SMALL_STATE(247)] = 5603, - [SMALL_STATE(248)] = 5643, - [SMALL_STATE(249)] = 5683, - [SMALL_STATE(250)] = 5723, - [SMALL_STATE(251)] = 5763, - [SMALL_STATE(252)] = 5803, - [SMALL_STATE(253)] = 5843, - [SMALL_STATE(254)] = 5883, - [SMALL_STATE(255)] = 5923, - [SMALL_STATE(256)] = 5963, - [SMALL_STATE(257)] = 6003, - [SMALL_STATE(258)] = 6043, - [SMALL_STATE(259)] = 6083, - [SMALL_STATE(260)] = 6123, - [SMALL_STATE(261)] = 6163, - [SMALL_STATE(262)] = 6203, - [SMALL_STATE(263)] = 6243, - [SMALL_STATE(264)] = 6283, - [SMALL_STATE(265)] = 6323, - [SMALL_STATE(266)] = 6363, - [SMALL_STATE(267)] = 6403, - [SMALL_STATE(268)] = 6443, - [SMALL_STATE(269)] = 6483, - [SMALL_STATE(270)] = 6523, - [SMALL_STATE(271)] = 6563, - [SMALL_STATE(272)] = 6603, - [SMALL_STATE(273)] = 6643, - [SMALL_STATE(274)] = 6683, - [SMALL_STATE(275)] = 6723, - [SMALL_STATE(276)] = 6763, - [SMALL_STATE(277)] = 6803, - [SMALL_STATE(278)] = 6843, - [SMALL_STATE(279)] = 6885, - [SMALL_STATE(280)] = 6925, - [SMALL_STATE(281)] = 6965, - [SMALL_STATE(282)] = 7005, - [SMALL_STATE(283)] = 7045, - [SMALL_STATE(284)] = 7085, - [SMALL_STATE(285)] = 7125, - [SMALL_STATE(286)] = 7165, - [SMALL_STATE(287)] = 7205, - [SMALL_STATE(288)] = 7245, - [SMALL_STATE(289)] = 7285, - [SMALL_STATE(290)] = 7325, - [SMALL_STATE(291)] = 7365, - [SMALL_STATE(292)] = 7405, - [SMALL_STATE(293)] = 7445, - [SMALL_STATE(294)] = 7485, - [SMALL_STATE(295)] = 7525, - [SMALL_STATE(296)] = 7565, - [SMALL_STATE(297)] = 7605, - [SMALL_STATE(298)] = 7645, - [SMALL_STATE(299)] = 7685, - [SMALL_STATE(300)] = 7725, - [SMALL_STATE(301)] = 7765, - [SMALL_STATE(302)] = 7805, - [SMALL_STATE(303)] = 7845, - [SMALL_STATE(304)] = 7885, - [SMALL_STATE(305)] = 7925, - [SMALL_STATE(306)] = 7965, - [SMALL_STATE(307)] = 8005, - [SMALL_STATE(308)] = 8045, - [SMALL_STATE(309)] = 8085, - [SMALL_STATE(310)] = 8125, - [SMALL_STATE(311)] = 8165, - [SMALL_STATE(312)] = 8205, - [SMALL_STATE(313)] = 8245, - [SMALL_STATE(314)] = 8285, - [SMALL_STATE(315)] = 8325, - [SMALL_STATE(316)] = 8365, - [SMALL_STATE(317)] = 8405, - [SMALL_STATE(318)] = 8445, - [SMALL_STATE(319)] = 8485, - [SMALL_STATE(320)] = 8525, - [SMALL_STATE(321)] = 8565, - [SMALL_STATE(322)] = 8607, - [SMALL_STATE(323)] = 8649, - [SMALL_STATE(324)] = 8689, - [SMALL_STATE(325)] = 8729, - [SMALL_STATE(326)] = 8769, - [SMALL_STATE(327)] = 8809, - [SMALL_STATE(328)] = 8849, - [SMALL_STATE(329)] = 8889, - [SMALL_STATE(330)] = 8929, - [SMALL_STATE(331)] = 8969, - [SMALL_STATE(332)] = 9009, - [SMALL_STATE(333)] = 9049, - [SMALL_STATE(334)] = 9089, - [SMALL_STATE(335)] = 9129, - [SMALL_STATE(336)] = 9169, - [SMALL_STATE(337)] = 9209, - [SMALL_STATE(338)] = 9249, - [SMALL_STATE(339)] = 9289, - [SMALL_STATE(340)] = 9329, - [SMALL_STATE(341)] = 9369, - [SMALL_STATE(342)] = 9409, - [SMALL_STATE(343)] = 9449, - [SMALL_STATE(344)] = 9489, - [SMALL_STATE(345)] = 9533, - [SMALL_STATE(346)] = 9573, - [SMALL_STATE(347)] = 9613, - [SMALL_STATE(348)] = 9655, - [SMALL_STATE(349)] = 9695, - [SMALL_STATE(350)] = 9735, - [SMALL_STATE(351)] = 9775, - [SMALL_STATE(352)] = 9815, - [SMALL_STATE(353)] = 9855, - [SMALL_STATE(354)] = 9895, - [SMALL_STATE(355)] = 9935, - [SMALL_STATE(356)] = 9975, - [SMALL_STATE(357)] = 10015, - [SMALL_STATE(358)] = 10055, - [SMALL_STATE(359)] = 10095, - [SMALL_STATE(360)] = 10135, - [SMALL_STATE(361)] = 10177, - [SMALL_STATE(362)] = 10217, - [SMALL_STATE(363)] = 10257, - [SMALL_STATE(364)] = 10297, - [SMALL_STATE(365)] = 10337, - [SMALL_STATE(366)] = 10377, - [SMALL_STATE(367)] = 10419, - [SMALL_STATE(368)] = 10459, - [SMALL_STATE(369)] = 10499, - [SMALL_STATE(370)] = 10539, - [SMALL_STATE(371)] = 10579, - [SMALL_STATE(372)] = 10619, - [SMALL_STATE(373)] = 10659, - [SMALL_STATE(374)] = 10699, - [SMALL_STATE(375)] = 10741, - [SMALL_STATE(376)] = 10781, - [SMALL_STATE(377)] = 10821, - [SMALL_STATE(378)] = 10861, - [SMALL_STATE(379)] = 10901, - [SMALL_STATE(380)] = 10941, - [SMALL_STATE(381)] = 10981, - [SMALL_STATE(382)] = 11021, - [SMALL_STATE(383)] = 11061, - [SMALL_STATE(384)] = 11103, - [SMALL_STATE(385)] = 11143, - [SMALL_STATE(386)] = 11183, - [SMALL_STATE(387)] = 11223, - [SMALL_STATE(388)] = 11263, - [SMALL_STATE(389)] = 11303, - [SMALL_STATE(390)] = 11343, - [SMALL_STATE(391)] = 11383, - [SMALL_STATE(392)] = 11423, - [SMALL_STATE(393)] = 11463, - [SMALL_STATE(394)] = 11503, - [SMALL_STATE(395)] = 11543, - [SMALL_STATE(396)] = 11583, - [SMALL_STATE(397)] = 11623, - [SMALL_STATE(398)] = 11663, - [SMALL_STATE(399)] = 11703, - [SMALL_STATE(400)] = 11743, - [SMALL_STATE(401)] = 11783, - [SMALL_STATE(402)] = 11823, - [SMALL_STATE(403)] = 11863, - [SMALL_STATE(404)] = 11903, - [SMALL_STATE(405)] = 11943, - [SMALL_STATE(406)] = 11983, - [SMALL_STATE(407)] = 12023, - [SMALL_STATE(408)] = 12063, - [SMALL_STATE(409)] = 12103, - [SMALL_STATE(410)] = 12143, - [SMALL_STATE(411)] = 12185, - [SMALL_STATE(412)] = 12225, - [SMALL_STATE(413)] = 12265, - [SMALL_STATE(414)] = 12305, - [SMALL_STATE(415)] = 12345, - [SMALL_STATE(416)] = 12385, - [SMALL_STATE(417)] = 12425, - [SMALL_STATE(418)] = 12465, - [SMALL_STATE(419)] = 12505, - [SMALL_STATE(420)] = 12545, - [SMALL_STATE(421)] = 12585, - [SMALL_STATE(422)] = 12625, - [SMALL_STATE(423)] = 12665, - [SMALL_STATE(424)] = 12705, - [SMALL_STATE(425)] = 12745, - [SMALL_STATE(426)] = 12785, - [SMALL_STATE(427)] = 12825, - [SMALL_STATE(428)] = 12865, - [SMALL_STATE(429)] = 12905, - [SMALL_STATE(430)] = 12945, - [SMALL_STATE(431)] = 12985, - [SMALL_STATE(432)] = 13025, - [SMALL_STATE(433)] = 13065, - [SMALL_STATE(434)] = 13105, - [SMALL_STATE(435)] = 13145, - [SMALL_STATE(436)] = 13185, - [SMALL_STATE(437)] = 13225, - [SMALL_STATE(438)] = 13265, - [SMALL_STATE(439)] = 13305, - [SMALL_STATE(440)] = 13345, - [SMALL_STATE(441)] = 13385, - [SMALL_STATE(442)] = 13425, - [SMALL_STATE(443)] = 13465, - [SMALL_STATE(444)] = 13505, - [SMALL_STATE(445)] = 13545, - [SMALL_STATE(446)] = 13585, - [SMALL_STATE(447)] = 13625, - [SMALL_STATE(448)] = 13665, - [SMALL_STATE(449)] = 13705, - [SMALL_STATE(450)] = 13745, - [SMALL_STATE(451)] = 13785, - [SMALL_STATE(452)] = 13825, - [SMALL_STATE(453)] = 13865, - [SMALL_STATE(454)] = 13905, - [SMALL_STATE(455)] = 13947, - [SMALL_STATE(456)] = 13987, - [SMALL_STATE(457)] = 14027, - [SMALL_STATE(458)] = 14067, - [SMALL_STATE(459)] = 14111, - [SMALL_STATE(460)] = 14151, - [SMALL_STATE(461)] = 14191, - [SMALL_STATE(462)] = 14231, - [SMALL_STATE(463)] = 14271, - [SMALL_STATE(464)] = 14311, - [SMALL_STATE(465)] = 14351, - [SMALL_STATE(466)] = 14391, - [SMALL_STATE(467)] = 14431, - [SMALL_STATE(468)] = 14471, - [SMALL_STATE(469)] = 14511, - [SMALL_STATE(470)] = 14551, - [SMALL_STATE(471)] = 14591, - [SMALL_STATE(472)] = 14631, - [SMALL_STATE(473)] = 14673, - [SMALL_STATE(474)] = 14713, - [SMALL_STATE(475)] = 14753, - [SMALL_STATE(476)] = 14793, - [SMALL_STATE(477)] = 14833, - [SMALL_STATE(478)] = 14873, - [SMALL_STATE(479)] = 14913, - [SMALL_STATE(480)] = 14953, - [SMALL_STATE(481)] = 14993, - [SMALL_STATE(482)] = 15033, - [SMALL_STATE(483)] = 15073, - [SMALL_STATE(484)] = 15113, - [SMALL_STATE(485)] = 15153, - [SMALL_STATE(486)] = 15193, - [SMALL_STATE(487)] = 15233, - [SMALL_STATE(488)] = 15273, - [SMALL_STATE(489)] = 15313, - [SMALL_STATE(490)] = 15353, - [SMALL_STATE(491)] = 15393, - [SMALL_STATE(492)] = 15433, - [SMALL_STATE(493)] = 15473, - [SMALL_STATE(494)] = 15513, - [SMALL_STATE(495)] = 15553, - [SMALL_STATE(496)] = 15593, - [SMALL_STATE(497)] = 15633, - [SMALL_STATE(498)] = 15673, - [SMALL_STATE(499)] = 15715, - [SMALL_STATE(500)] = 15755, - [SMALL_STATE(501)] = 15795, - [SMALL_STATE(502)] = 15835, - [SMALL_STATE(503)] = 15875, - [SMALL_STATE(504)] = 15915, - [SMALL_STATE(505)] = 15955, - [SMALL_STATE(506)] = 15995, - [SMALL_STATE(507)] = 16035, - [SMALL_STATE(508)] = 16075, - [SMALL_STATE(509)] = 16115, - [SMALL_STATE(510)] = 16155, - [SMALL_STATE(511)] = 16195, - [SMALL_STATE(512)] = 16235, - [SMALL_STATE(513)] = 16275, - [SMALL_STATE(514)] = 16315, - [SMALL_STATE(515)] = 16355, - [SMALL_STATE(516)] = 16395, - [SMALL_STATE(517)] = 16435, - [SMALL_STATE(518)] = 16477, - [SMALL_STATE(519)] = 16517, - [SMALL_STATE(520)] = 16557, - [SMALL_STATE(521)] = 16597, - [SMALL_STATE(522)] = 16637, - [SMALL_STATE(523)] = 16677, - [SMALL_STATE(524)] = 16717, - [SMALL_STATE(525)] = 16757, - [SMALL_STATE(526)] = 16797, - [SMALL_STATE(527)] = 16837, - [SMALL_STATE(528)] = 16877, - [SMALL_STATE(529)] = 16917, - [SMALL_STATE(530)] = 16957, - [SMALL_STATE(531)] = 16997, - [SMALL_STATE(532)] = 17037, - [SMALL_STATE(533)] = 17077, - [SMALL_STATE(534)] = 17117, - [SMALL_STATE(535)] = 17157, - [SMALL_STATE(536)] = 17199, - [SMALL_STATE(537)] = 17239, - [SMALL_STATE(538)] = 17278, - [SMALL_STATE(539)] = 17319, - [SMALL_STATE(540)] = 17358, - [SMALL_STATE(541)] = 17397, - [SMALL_STATE(542)] = 17436, - [SMALL_STATE(543)] = 17475, - [SMALL_STATE(544)] = 17514, - [SMALL_STATE(545)] = 17553, - [SMALL_STATE(546)] = 17592, - [SMALL_STATE(547)] = 17631, - [SMALL_STATE(548)] = 17670, - [SMALL_STATE(549)] = 17709, - [SMALL_STATE(550)] = 17748, - [SMALL_STATE(551)] = 17787, - [SMALL_STATE(552)] = 17826, - [SMALL_STATE(553)] = 17865, - [SMALL_STATE(554)] = 17904, - [SMALL_STATE(555)] = 17943, - [SMALL_STATE(556)] = 17982, - [SMALL_STATE(557)] = 18021, - [SMALL_STATE(558)] = 18060, - [SMALL_STATE(559)] = 18099, - [SMALL_STATE(560)] = 18138, - [SMALL_STATE(561)] = 18177, - [SMALL_STATE(562)] = 18216, - [SMALL_STATE(563)] = 18255, - [SMALL_STATE(564)] = 18294, - [SMALL_STATE(565)] = 18333, - [SMALL_STATE(566)] = 18372, - [SMALL_STATE(567)] = 18411, - [SMALL_STATE(568)] = 18450, - [SMALL_STATE(569)] = 18489, - [SMALL_STATE(570)] = 18528, - [SMALL_STATE(571)] = 18567, - [SMALL_STATE(572)] = 18606, - [SMALL_STATE(573)] = 18647, - [SMALL_STATE(574)] = 18686, - [SMALL_STATE(575)] = 18725, - [SMALL_STATE(576)] = 18764, - [SMALL_STATE(577)] = 18803, - [SMALL_STATE(578)] = 18842, - [SMALL_STATE(579)] = 18881, - [SMALL_STATE(580)] = 18920, - [SMALL_STATE(581)] = 18961, - [SMALL_STATE(582)] = 19000, - [SMALL_STATE(583)] = 19041, - [SMALL_STATE(584)] = 19080, - [SMALL_STATE(585)] = 19119, - [SMALL_STATE(586)] = 19158, - [SMALL_STATE(587)] = 19197, - [SMALL_STATE(588)] = 19236, - [SMALL_STATE(589)] = 19275, - [SMALL_STATE(590)] = 19314, - [SMALL_STATE(591)] = 19353, - [SMALL_STATE(592)] = 19392, - [SMALL_STATE(593)] = 19431, - [SMALL_STATE(594)] = 19470, - [SMALL_STATE(595)] = 19509, - [SMALL_STATE(596)] = 19548, - [SMALL_STATE(597)] = 19587, - [SMALL_STATE(598)] = 19626, - [SMALL_STATE(599)] = 19665, - [SMALL_STATE(600)] = 19704, - [SMALL_STATE(601)] = 19743, - [SMALL_STATE(602)] = 19782, - [SMALL_STATE(603)] = 19821, - [SMALL_STATE(604)] = 19860, - [SMALL_STATE(605)] = 19899, - [SMALL_STATE(606)] = 19938, - [SMALL_STATE(607)] = 19977, - [SMALL_STATE(608)] = 20016, - [SMALL_STATE(609)] = 20055, - [SMALL_STATE(610)] = 20094, - [SMALL_STATE(611)] = 20133, - [SMALL_STATE(612)] = 20172, - [SMALL_STATE(613)] = 20211, - [SMALL_STATE(614)] = 20250, - [SMALL_STATE(615)] = 20289, - [SMALL_STATE(616)] = 20328, - [SMALL_STATE(617)] = 20367, - [SMALL_STATE(618)] = 20406, - [SMALL_STATE(619)] = 20445, - [SMALL_STATE(620)] = 20486, - [SMALL_STATE(621)] = 20525, - [SMALL_STATE(622)] = 20564, - [SMALL_STATE(623)] = 20603, - [SMALL_STATE(624)] = 20642, - [SMALL_STATE(625)] = 20680, - [SMALL_STATE(626)] = 20718, - [SMALL_STATE(627)] = 20756, - [SMALL_STATE(628)] = 20794, - [SMALL_STATE(629)] = 20832, - [SMALL_STATE(630)] = 20863, - [SMALL_STATE(631)] = 20894, - [SMALL_STATE(632)] = 20925, - [SMALL_STATE(633)] = 20956, - [SMALL_STATE(634)] = 20987, - [SMALL_STATE(635)] = 21018, - [SMALL_STATE(636)] = 21049, - [SMALL_STATE(637)] = 21080, - [SMALL_STATE(638)] = 21111, - [SMALL_STATE(639)] = 21142, - [SMALL_STATE(640)] = 21173, - [SMALL_STATE(641)] = 21204, - [SMALL_STATE(642)] = 21235, - [SMALL_STATE(643)] = 21266, - [SMALL_STATE(644)] = 21297, - [SMALL_STATE(645)] = 21328, - [SMALL_STATE(646)] = 21359, - [SMALL_STATE(647)] = 21390, - [SMALL_STATE(648)] = 21421, - [SMALL_STATE(649)] = 21452, - [SMALL_STATE(650)] = 21483, - [SMALL_STATE(651)] = 21514, - [SMALL_STATE(652)] = 21545, - [SMALL_STATE(653)] = 21576, - [SMALL_STATE(654)] = 21607, - [SMALL_STATE(655)] = 21617, - [SMALL_STATE(656)] = 21627, - [SMALL_STATE(657)] = 21637, - [SMALL_STATE(658)] = 21647, - [SMALL_STATE(659)] = 21657, - [SMALL_STATE(660)] = 21667, - [SMALL_STATE(661)] = 21677, - [SMALL_STATE(662)] = 21687, - [SMALL_STATE(663)] = 21697, - [SMALL_STATE(664)] = 21714, - [SMALL_STATE(665)] = 21731, - [SMALL_STATE(666)] = 21748, - [SMALL_STATE(667)] = 21765, - [SMALL_STATE(668)] = 21782, - [SMALL_STATE(669)] = 21799, - [SMALL_STATE(670)] = 21816, - [SMALL_STATE(671)] = 21833, - [SMALL_STATE(672)] = 21850, - [SMALL_STATE(673)] = 21867, - [SMALL_STATE(674)] = 21884, - [SMALL_STATE(675)] = 21901, - [SMALL_STATE(676)] = 21917, - [SMALL_STATE(677)] = 21933, - [SMALL_STATE(678)] = 21949, - [SMALL_STATE(679)] = 21965, - [SMALL_STATE(680)] = 21977, - [SMALL_STATE(681)] = 21993, - [SMALL_STATE(682)] = 22009, - [SMALL_STATE(683)] = 22025, - [SMALL_STATE(684)] = 22037, - [SMALL_STATE(685)] = 22053, - [SMALL_STATE(686)] = 22069, - [SMALL_STATE(687)] = 22085, - [SMALL_STATE(688)] = 22101, - [SMALL_STATE(689)] = 22117, - [SMALL_STATE(690)] = 22129, - [SMALL_STATE(691)] = 22141, - [SMALL_STATE(692)] = 22157, - [SMALL_STATE(693)] = 22173, - [SMALL_STATE(694)] = 22189, - [SMALL_STATE(695)] = 22205, - [SMALL_STATE(696)] = 22221, - [SMALL_STATE(697)] = 22233, - [SMALL_STATE(698)] = 22249, - [SMALL_STATE(699)] = 22265, - [SMALL_STATE(700)] = 22281, - [SMALL_STATE(701)] = 22297, - [SMALL_STATE(702)] = 22313, - [SMALL_STATE(703)] = 22329, - [SMALL_STATE(704)] = 22345, - [SMALL_STATE(705)] = 22352, - [SMALL_STATE(706)] = 22361, - [SMALL_STATE(707)] = 22371, - [SMALL_STATE(708)] = 22379, - [SMALL_STATE(709)] = 22387, - [SMALL_STATE(710)] = 22394, - [SMALL_STATE(711)] = 22401, - [SMALL_STATE(712)] = 22408, - [SMALL_STATE(713)] = 22415, - [SMALL_STATE(714)] = 22422, - [SMALL_STATE(715)] = 22429, - [SMALL_STATE(716)] = 22436, - [SMALL_STATE(717)] = 22443, - [SMALL_STATE(718)] = 22450, - [SMALL_STATE(719)] = 22457, - [SMALL_STATE(720)] = 22464, - [SMALL_STATE(721)] = 22471, - [SMALL_STATE(722)] = 22478, - [SMALL_STATE(723)] = 22485, - [SMALL_STATE(724)] = 22492, - [SMALL_STATE(725)] = 22499, - [SMALL_STATE(726)] = 22506, - [SMALL_STATE(727)] = 22513, - [SMALL_STATE(728)] = 22520, - [SMALL_STATE(729)] = 22527, - [SMALL_STATE(730)] = 22534, - [SMALL_STATE(731)] = 22541, - [SMALL_STATE(732)] = 22548, - [SMALL_STATE(733)] = 22555, - [SMALL_STATE(734)] = 22562, - [SMALL_STATE(735)] = 22569, - [SMALL_STATE(736)] = 22576, - [SMALL_STATE(737)] = 22583, - [SMALL_STATE(738)] = 22590, - [SMALL_STATE(739)] = 22597, - [SMALL_STATE(740)] = 22604, - [SMALL_STATE(741)] = 22611, - [SMALL_STATE(742)] = 22618, - [SMALL_STATE(743)] = 22625, - [SMALL_STATE(744)] = 22632, - [SMALL_STATE(745)] = 22639, - [SMALL_STATE(746)] = 22646, - [SMALL_STATE(747)] = 22653, - [SMALL_STATE(748)] = 22660, - [SMALL_STATE(749)] = 22667, - [SMALL_STATE(750)] = 22674, - [SMALL_STATE(751)] = 22681, - [SMALL_STATE(752)] = 22688, - [SMALL_STATE(753)] = 22695, - [SMALL_STATE(754)] = 22702, - [SMALL_STATE(755)] = 22709, - [SMALL_STATE(756)] = 22716, - [SMALL_STATE(757)] = 22723, - [SMALL_STATE(758)] = 22730, - [SMALL_STATE(759)] = 22737, - [SMALL_STATE(760)] = 22744, - [SMALL_STATE(761)] = 22751, - [SMALL_STATE(762)] = 22758, - [SMALL_STATE(763)] = 22765, - [SMALL_STATE(764)] = 22772, - [SMALL_STATE(765)] = 22779, - [SMALL_STATE(766)] = 22786, - [SMALL_STATE(767)] = 22793, - [SMALL_STATE(768)] = 22800, - [SMALL_STATE(769)] = 22807, - [SMALL_STATE(770)] = 22814, - [SMALL_STATE(771)] = 22821, - [SMALL_STATE(772)] = 22828, - [SMALL_STATE(773)] = 22835, - [SMALL_STATE(774)] = 22842, - [SMALL_STATE(775)] = 22849, - [SMALL_STATE(776)] = 22856, - [SMALL_STATE(777)] = 22863, - [SMALL_STATE(778)] = 22870, - [SMALL_STATE(779)] = 22877, - [SMALL_STATE(780)] = 22884, - [SMALL_STATE(781)] = 22891, - [SMALL_STATE(782)] = 22898, - [SMALL_STATE(783)] = 22905, - [SMALL_STATE(784)] = 22912, - [SMALL_STATE(785)] = 22919, - [SMALL_STATE(786)] = 22926, - [SMALL_STATE(787)] = 22933, - [SMALL_STATE(788)] = 22940, - [SMALL_STATE(789)] = 22947, - [SMALL_STATE(790)] = 22954, - [SMALL_STATE(791)] = 22961, - [SMALL_STATE(792)] = 22968, - [SMALL_STATE(793)] = 22975, - [SMALL_STATE(794)] = 22982, - [SMALL_STATE(795)] = 22989, - [SMALL_STATE(796)] = 22996, - [SMALL_STATE(797)] = 23003, - [SMALL_STATE(798)] = 23010, - [SMALL_STATE(799)] = 23017, - [SMALL_STATE(800)] = 23024, - [SMALL_STATE(801)] = 23031, - [SMALL_STATE(802)] = 23038, - [SMALL_STATE(803)] = 23045, - [SMALL_STATE(804)] = 23052, - [SMALL_STATE(805)] = 23059, - [SMALL_STATE(806)] = 23066, - [SMALL_STATE(807)] = 23073, - [SMALL_STATE(808)] = 23080, - [SMALL_STATE(809)] = 23087, - [SMALL_STATE(810)] = 23094, - [SMALL_STATE(811)] = 23101, - [SMALL_STATE(812)] = 23108, - [SMALL_STATE(813)] = 23115, - [SMALL_STATE(814)] = 23122, - [SMALL_STATE(815)] = 23129, - [SMALL_STATE(816)] = 23136, - [SMALL_STATE(817)] = 23143, - [SMALL_STATE(818)] = 23150, - [SMALL_STATE(819)] = 23157, - [SMALL_STATE(820)] = 23164, - [SMALL_STATE(821)] = 23171, - [SMALL_STATE(822)] = 23178, - [SMALL_STATE(823)] = 23185, - [SMALL_STATE(824)] = 23192, - [SMALL_STATE(825)] = 23199, - [SMALL_STATE(826)] = 23206, - [SMALL_STATE(827)] = 23213, - [SMALL_STATE(828)] = 23220, - [SMALL_STATE(829)] = 23227, - [SMALL_STATE(830)] = 23234, - [SMALL_STATE(831)] = 23241, - [SMALL_STATE(832)] = 23248, - [SMALL_STATE(833)] = 23255, - [SMALL_STATE(834)] = 23262, - [SMALL_STATE(835)] = 23269, - [SMALL_STATE(836)] = 23276, - [SMALL_STATE(837)] = 23283, - [SMALL_STATE(838)] = 23290, - [SMALL_STATE(839)] = 23297, - [SMALL_STATE(840)] = 23304, - [SMALL_STATE(841)] = 23311, - [SMALL_STATE(842)] = 23318, - [SMALL_STATE(843)] = 23325, - [SMALL_STATE(844)] = 23332, - [SMALL_STATE(845)] = 23339, - [SMALL_STATE(846)] = 23346, - [SMALL_STATE(847)] = 23353, - [SMALL_STATE(848)] = 23360, - [SMALL_STATE(849)] = 23367, - [SMALL_STATE(850)] = 23374, - [SMALL_STATE(851)] = 23381, - [SMALL_STATE(852)] = 23388, - [SMALL_STATE(853)] = 23395, - [SMALL_STATE(854)] = 23402, - [SMALL_STATE(855)] = 23409, - [SMALL_STATE(856)] = 23416, - [SMALL_STATE(857)] = 23423, - [SMALL_STATE(858)] = 23430, - [SMALL_STATE(859)] = 23437, - [SMALL_STATE(860)] = 23444, - [SMALL_STATE(861)] = 23451, - [SMALL_STATE(862)] = 23458, - [SMALL_STATE(863)] = 23465, - [SMALL_STATE(864)] = 23472, - [SMALL_STATE(865)] = 23479, - [SMALL_STATE(866)] = 23486, - [SMALL_STATE(867)] = 23493, - [SMALL_STATE(868)] = 23500, - [SMALL_STATE(869)] = 23507, - [SMALL_STATE(870)] = 23514, - [SMALL_STATE(871)] = 23521, - [SMALL_STATE(872)] = 23528, - [SMALL_STATE(873)] = 23535, - [SMALL_STATE(874)] = 23542, - [SMALL_STATE(875)] = 23549, - [SMALL_STATE(876)] = 23556, - [SMALL_STATE(877)] = 23563, - [SMALL_STATE(878)] = 23570, - [SMALL_STATE(879)] = 23577, - [SMALL_STATE(880)] = 23584, - [SMALL_STATE(881)] = 23591, - [SMALL_STATE(882)] = 23598, - [SMALL_STATE(883)] = 23605, - [SMALL_STATE(884)] = 23612, - [SMALL_STATE(885)] = 23619, - [SMALL_STATE(886)] = 23626, - [SMALL_STATE(887)] = 23633, - [SMALL_STATE(888)] = 23640, - [SMALL_STATE(889)] = 23647, - [SMALL_STATE(890)] = 23654, - [SMALL_STATE(891)] = 23658, - [SMALL_STATE(892)] = 23662, - [SMALL_STATE(893)] = 23666, - [SMALL_STATE(894)] = 23670, - [SMALL_STATE(895)] = 23674, - [SMALL_STATE(896)] = 23678, - [SMALL_STATE(897)] = 23682, - [SMALL_STATE(898)] = 23686, - [SMALL_STATE(899)] = 23690, - [SMALL_STATE(900)] = 23694, - [SMALL_STATE(901)] = 23698, - [SMALL_STATE(902)] = 23702, - [SMALL_STATE(903)] = 23706, - [SMALL_STATE(904)] = 23710, - [SMALL_STATE(905)] = 23714, - [SMALL_STATE(906)] = 23718, - [SMALL_STATE(907)] = 23722, - [SMALL_STATE(908)] = 23726, - [SMALL_STATE(909)] = 23730, - [SMALL_STATE(910)] = 23734, - [SMALL_STATE(911)] = 23738, - [SMALL_STATE(912)] = 23742, - [SMALL_STATE(913)] = 23746, - [SMALL_STATE(914)] = 23750, - [SMALL_STATE(915)] = 23754, - [SMALL_STATE(916)] = 23758, - [SMALL_STATE(917)] = 23762, - [SMALL_STATE(918)] = 23766, - [SMALL_STATE(919)] = 23770, - [SMALL_STATE(920)] = 23774, - [SMALL_STATE(921)] = 23778, - [SMALL_STATE(922)] = 23782, - [SMALL_STATE(923)] = 23786, - [SMALL_STATE(924)] = 23790, - [SMALL_STATE(925)] = 23794, - [SMALL_STATE(926)] = 23798, - [SMALL_STATE(927)] = 23802, - [SMALL_STATE(928)] = 23806, - [SMALL_STATE(929)] = 23810, - [SMALL_STATE(930)] = 23814, - [SMALL_STATE(931)] = 23818, - [SMALL_STATE(932)] = 23822, - [SMALL_STATE(933)] = 23826, - [SMALL_STATE(934)] = 23830, - [SMALL_STATE(935)] = 23834, - [SMALL_STATE(936)] = 23838, - [SMALL_STATE(937)] = 23842, - [SMALL_STATE(938)] = 23846, - [SMALL_STATE(939)] = 23850, - [SMALL_STATE(940)] = 23854, - [SMALL_STATE(941)] = 23858, - [SMALL_STATE(942)] = 23862, - [SMALL_STATE(943)] = 23866, - [SMALL_STATE(944)] = 23870, - [SMALL_STATE(945)] = 23874, - [SMALL_STATE(946)] = 23878, - [SMALL_STATE(947)] = 23882, - [SMALL_STATE(948)] = 23886, - [SMALL_STATE(949)] = 23890, - [SMALL_STATE(950)] = 23894, - [SMALL_STATE(951)] = 23898, - [SMALL_STATE(952)] = 23902, - [SMALL_STATE(953)] = 23906, - [SMALL_STATE(954)] = 23910, - [SMALL_STATE(955)] = 23914, - [SMALL_STATE(956)] = 23918, - [SMALL_STATE(957)] = 23922, - [SMALL_STATE(958)] = 23926, - [SMALL_STATE(959)] = 23930, - [SMALL_STATE(960)] = 23934, - [SMALL_STATE(961)] = 23938, - [SMALL_STATE(962)] = 23942, - [SMALL_STATE(963)] = 23946, - [SMALL_STATE(964)] = 23950, - [SMALL_STATE(965)] = 23954, - [SMALL_STATE(966)] = 23958, - [SMALL_STATE(967)] = 23962, - [SMALL_STATE(968)] = 23966, - [SMALL_STATE(969)] = 23970, - [SMALL_STATE(970)] = 23974, - [SMALL_STATE(971)] = 23978, - [SMALL_STATE(972)] = 23982, - [SMALL_STATE(973)] = 23986, - [SMALL_STATE(974)] = 23990, - [SMALL_STATE(975)] = 23994, - [SMALL_STATE(976)] = 23998, - [SMALL_STATE(977)] = 24002, - [SMALL_STATE(978)] = 24006, - [SMALL_STATE(979)] = 24010, - [SMALL_STATE(980)] = 24014, - [SMALL_STATE(981)] = 24018, - [SMALL_STATE(982)] = 24022, - [SMALL_STATE(983)] = 24026, - [SMALL_STATE(984)] = 24030, - [SMALL_STATE(985)] = 24034, - [SMALL_STATE(986)] = 24038, - [SMALL_STATE(987)] = 24042, - [SMALL_STATE(988)] = 24046, - [SMALL_STATE(989)] = 24050, - [SMALL_STATE(990)] = 24054, - [SMALL_STATE(991)] = 24058, - [SMALL_STATE(992)] = 24062, - [SMALL_STATE(993)] = 24066, - [SMALL_STATE(994)] = 24070, - [SMALL_STATE(995)] = 24074, - [SMALL_STATE(996)] = 24078, - [SMALL_STATE(997)] = 24082, - [SMALL_STATE(998)] = 24086, - [SMALL_STATE(999)] = 24090, - [SMALL_STATE(1000)] = 24094, - [SMALL_STATE(1001)] = 24098, - [SMALL_STATE(1002)] = 24102, - [SMALL_STATE(1003)] = 24106, - [SMALL_STATE(1004)] = 24110, - [SMALL_STATE(1005)] = 24114, - [SMALL_STATE(1006)] = 24118, - [SMALL_STATE(1007)] = 24122, - [SMALL_STATE(1008)] = 24126, - [SMALL_STATE(1009)] = 24130, - [SMALL_STATE(1010)] = 24134, - [SMALL_STATE(1011)] = 24138, - [SMALL_STATE(1012)] = 24142, - [SMALL_STATE(1013)] = 24146, - [SMALL_STATE(1014)] = 24150, - [SMALL_STATE(1015)] = 24154, - [SMALL_STATE(1016)] = 24158, - [SMALL_STATE(1017)] = 24162, - [SMALL_STATE(1018)] = 24166, - [SMALL_STATE(1019)] = 24170, - [SMALL_STATE(1020)] = 24174, - [SMALL_STATE(1021)] = 24178, - [SMALL_STATE(1022)] = 24182, - [SMALL_STATE(1023)] = 24186, - [SMALL_STATE(1024)] = 24190, - [SMALL_STATE(1025)] = 24194, - [SMALL_STATE(1026)] = 24198, - [SMALL_STATE(1027)] = 24202, - [SMALL_STATE(1028)] = 24206, - [SMALL_STATE(1029)] = 24210, - [SMALL_STATE(1030)] = 24214, - [SMALL_STATE(1031)] = 24218, - [SMALL_STATE(1032)] = 24222, - [SMALL_STATE(1033)] = 24226, - [SMALL_STATE(1034)] = 24230, - [SMALL_STATE(1035)] = 24234, - [SMALL_STATE(1036)] = 24238, - [SMALL_STATE(1037)] = 24242, - [SMALL_STATE(1038)] = 24246, - [SMALL_STATE(1039)] = 24250, - [SMALL_STATE(1040)] = 24254, - [SMALL_STATE(1041)] = 24258, - [SMALL_STATE(1042)] = 24262, - [SMALL_STATE(1043)] = 24266, - [SMALL_STATE(1044)] = 24270, - [SMALL_STATE(1045)] = 24274, - [SMALL_STATE(1046)] = 24278, - [SMALL_STATE(1047)] = 24282, - [SMALL_STATE(1048)] = 24286, - [SMALL_STATE(1049)] = 24290, - [SMALL_STATE(1050)] = 24294, - [SMALL_STATE(1051)] = 24298, - [SMALL_STATE(1052)] = 24302, - [SMALL_STATE(1053)] = 24306, - [SMALL_STATE(1054)] = 24310, - [SMALL_STATE(1055)] = 24314, - [SMALL_STATE(1056)] = 24318, - [SMALL_STATE(1057)] = 24322, - [SMALL_STATE(1058)] = 24326, - [SMALL_STATE(1059)] = 24330, - [SMALL_STATE(1060)] = 24334, - [SMALL_STATE(1061)] = 24338, - [SMALL_STATE(1062)] = 24342, - [SMALL_STATE(1063)] = 24346, - [SMALL_STATE(1064)] = 24350, - [SMALL_STATE(1065)] = 24354, - [SMALL_STATE(1066)] = 24358, - [SMALL_STATE(1067)] = 24362, - [SMALL_STATE(1068)] = 24366, - [SMALL_STATE(1069)] = 24370, - [SMALL_STATE(1070)] = 24374, - [SMALL_STATE(1071)] = 24378, - [SMALL_STATE(1072)] = 24382, - [SMALL_STATE(1073)] = 24386, - [SMALL_STATE(1074)] = 24390, - [SMALL_STATE(1075)] = 24394, - [SMALL_STATE(1076)] = 24398, - [SMALL_STATE(1077)] = 24402, - [SMALL_STATE(1078)] = 24406, - [SMALL_STATE(1079)] = 24410, - [SMALL_STATE(1080)] = 24414, - [SMALL_STATE(1081)] = 24418, - [SMALL_STATE(1082)] = 24422, - [SMALL_STATE(1083)] = 24426, - [SMALL_STATE(1084)] = 24430, - [SMALL_STATE(1085)] = 24434, - [SMALL_STATE(1086)] = 24438, - [SMALL_STATE(1087)] = 24442, - [SMALL_STATE(1088)] = 24446, - [SMALL_STATE(1089)] = 24450, - [SMALL_STATE(1090)] = 24454, - [SMALL_STATE(1091)] = 24458, - [SMALL_STATE(1092)] = 24462, - [SMALL_STATE(1093)] = 24466, - [SMALL_STATE(1094)] = 24470, - [SMALL_STATE(1095)] = 24474, - [SMALL_STATE(1096)] = 24478, - [SMALL_STATE(1097)] = 24482, - [SMALL_STATE(1098)] = 24486, - [SMALL_STATE(1099)] = 24490, - [SMALL_STATE(1100)] = 24494, - [SMALL_STATE(1101)] = 24498, - [SMALL_STATE(1102)] = 24502, - [SMALL_STATE(1103)] = 24506, - [SMALL_STATE(1104)] = 24510, - [SMALL_STATE(1105)] = 24514, - [SMALL_STATE(1106)] = 24518, - [SMALL_STATE(1107)] = 24522, - [SMALL_STATE(1108)] = 24526, - [SMALL_STATE(1109)] = 24530, - [SMALL_STATE(1110)] = 24534, - [SMALL_STATE(1111)] = 24538, - [SMALL_STATE(1112)] = 24542, - [SMALL_STATE(1113)] = 24546, - [SMALL_STATE(1114)] = 24550, - [SMALL_STATE(1115)] = 24554, - [SMALL_STATE(1116)] = 24558, - [SMALL_STATE(1117)] = 24562, - [SMALL_STATE(1118)] = 24566, - [SMALL_STATE(1119)] = 24570, - [SMALL_STATE(1120)] = 24574, - [SMALL_STATE(1121)] = 24578, - [SMALL_STATE(1122)] = 24582, - [SMALL_STATE(1123)] = 24586, - [SMALL_STATE(1124)] = 24590, - [SMALL_STATE(1125)] = 24594, - [SMALL_STATE(1126)] = 24598, - [SMALL_STATE(1127)] = 24602, - [SMALL_STATE(1128)] = 24606, - [SMALL_STATE(1129)] = 24610, - [SMALL_STATE(1130)] = 24614, - [SMALL_STATE(1131)] = 24618, - [SMALL_STATE(1132)] = 24622, - [SMALL_STATE(1133)] = 24626, - [SMALL_STATE(1134)] = 24630, - [SMALL_STATE(1135)] = 24634, - [SMALL_STATE(1136)] = 24638, - [SMALL_STATE(1137)] = 24642, - [SMALL_STATE(1138)] = 24646, - [SMALL_STATE(1139)] = 24650, - [SMALL_STATE(1140)] = 24654, - [SMALL_STATE(1141)] = 24658, - [SMALL_STATE(1142)] = 24662, - [SMALL_STATE(1143)] = 24666, - [SMALL_STATE(1144)] = 24670, - [SMALL_STATE(1145)] = 24674, - [SMALL_STATE(1146)] = 24678, - [SMALL_STATE(1147)] = 24682, - [SMALL_STATE(1148)] = 24686, - [SMALL_STATE(1149)] = 24690, - [SMALL_STATE(1150)] = 24694, - [SMALL_STATE(1151)] = 24698, - [SMALL_STATE(1152)] = 24702, - [SMALL_STATE(1153)] = 24706, - [SMALL_STATE(1154)] = 24710, - [SMALL_STATE(1155)] = 24714, - [SMALL_STATE(1156)] = 24718, - [SMALL_STATE(1157)] = 24722, - [SMALL_STATE(1158)] = 24726, - [SMALL_STATE(1159)] = 24730, - [SMALL_STATE(1160)] = 24734, - [SMALL_STATE(1161)] = 24738, - [SMALL_STATE(1162)] = 24742, - [SMALL_STATE(1163)] = 24746, - [SMALL_STATE(1164)] = 24750, - [SMALL_STATE(1165)] = 24754, - [SMALL_STATE(1166)] = 24758, - [SMALL_STATE(1167)] = 24762, - [SMALL_STATE(1168)] = 24766, - [SMALL_STATE(1169)] = 24770, - [SMALL_STATE(1170)] = 24774, - [SMALL_STATE(1171)] = 24778, - [SMALL_STATE(1172)] = 24782, - [SMALL_STATE(1173)] = 24786, - [SMALL_STATE(1174)] = 24790, - [SMALL_STATE(1175)] = 24794, - [SMALL_STATE(1176)] = 24798, - [SMALL_STATE(1177)] = 24802, - [SMALL_STATE(1178)] = 24806, - [SMALL_STATE(1179)] = 24810, - [SMALL_STATE(1180)] = 24814, - [SMALL_STATE(1181)] = 24818, - [SMALL_STATE(1182)] = 24822, - [SMALL_STATE(1183)] = 24826, - [SMALL_STATE(1184)] = 24830, - [SMALL_STATE(1185)] = 24834, - [SMALL_STATE(1186)] = 24838, - [SMALL_STATE(1187)] = 24842, - [SMALL_STATE(1188)] = 24846, - [SMALL_STATE(1189)] = 24850, - [SMALL_STATE(1190)] = 24854, - [SMALL_STATE(1191)] = 24858, - [SMALL_STATE(1192)] = 24862, - [SMALL_STATE(1193)] = 24866, - [SMALL_STATE(1194)] = 24870, - [SMALL_STATE(1195)] = 24874, - [SMALL_STATE(1196)] = 24878, - [SMALL_STATE(1197)] = 24882, - [SMALL_STATE(1198)] = 24886, - [SMALL_STATE(1199)] = 24890, - [SMALL_STATE(1200)] = 24894, - [SMALL_STATE(1201)] = 24898, - [SMALL_STATE(1202)] = 24902, - [SMALL_STATE(1203)] = 24906, - [SMALL_STATE(1204)] = 24910, - [SMALL_STATE(1205)] = 24914, - [SMALL_STATE(1206)] = 24918, - [SMALL_STATE(1207)] = 24922, - [SMALL_STATE(1208)] = 24926, - [SMALL_STATE(1209)] = 24930, - [SMALL_STATE(1210)] = 24934, - [SMALL_STATE(1211)] = 24938, - [SMALL_STATE(1212)] = 24942, - [SMALL_STATE(1213)] = 24946, - [SMALL_STATE(1214)] = 24950, - [SMALL_STATE(1215)] = 24954, - [SMALL_STATE(1216)] = 24958, - [SMALL_STATE(1217)] = 24962, - [SMALL_STATE(1218)] = 24966, - [SMALL_STATE(1219)] = 24970, - [SMALL_STATE(1220)] = 24974, - [SMALL_STATE(1221)] = 24978, - [SMALL_STATE(1222)] = 24982, - [SMALL_STATE(1223)] = 24986, - [SMALL_STATE(1224)] = 24990, - [SMALL_STATE(1225)] = 24994, - [SMALL_STATE(1226)] = 24998, - [SMALL_STATE(1227)] = 25002, - [SMALL_STATE(1228)] = 25006, - [SMALL_STATE(1229)] = 25010, - [SMALL_STATE(1230)] = 25014, - [SMALL_STATE(1231)] = 25018, - [SMALL_STATE(1232)] = 25022, - [SMALL_STATE(1233)] = 25026, - [SMALL_STATE(1234)] = 25030, - [SMALL_STATE(1235)] = 25034, - [SMALL_STATE(1236)] = 25038, - [SMALL_STATE(1237)] = 25042, - [SMALL_STATE(1238)] = 25046, - [SMALL_STATE(1239)] = 25050, - [SMALL_STATE(1240)] = 25054, + [SMALL_STATE(132)] = 0, + [SMALL_STATE(133)] = 52, + [SMALL_STATE(134)] = 104, + [SMALL_STATE(135)] = 156, + [SMALL_STATE(136)] = 208, + [SMALL_STATE(137)] = 260, + [SMALL_STATE(138)] = 312, + [SMALL_STATE(139)] = 364, + [SMALL_STATE(140)] = 416, + [SMALL_STATE(141)] = 468, + [SMALL_STATE(142)] = 520, + [SMALL_STATE(143)] = 572, + [SMALL_STATE(144)] = 621, + [SMALL_STATE(145)] = 672, + [SMALL_STATE(146)] = 721, + [SMALL_STATE(147)] = 770, + [SMALL_STATE(148)] = 819, + [SMALL_STATE(149)] = 868, + [SMALL_STATE(150)] = 917, + [SMALL_STATE(151)] = 966, + [SMALL_STATE(152)] = 1015, + [SMALL_STATE(153)] = 1064, + [SMALL_STATE(154)] = 1113, + [SMALL_STATE(155)] = 1162, + [SMALL_STATE(156)] = 1210, + [SMALL_STATE(157)] = 1256, + [SMALL_STATE(158)] = 1302, + [SMALL_STATE(159)] = 1348, + [SMALL_STATE(160)] = 1394, + [SMALL_STATE(161)] = 1440, + [SMALL_STATE(162)] = 1486, + [SMALL_STATE(163)] = 1532, + [SMALL_STATE(164)] = 1578, + [SMALL_STATE(165)] = 1624, + [SMALL_STATE(166)] = 1670, + [SMALL_STATE(167)] = 1716, + [SMALL_STATE(168)] = 1759, + [SMALL_STATE(169)] = 1802, + [SMALL_STATE(170)] = 1847, + [SMALL_STATE(171)] = 1890, + [SMALL_STATE(172)] = 1933, + [SMALL_STATE(173)] = 1976, + [SMALL_STATE(174)] = 2021, + [SMALL_STATE(175)] = 2064, + [SMALL_STATE(176)] = 2109, + [SMALL_STATE(177)] = 2152, + [SMALL_STATE(178)] = 2195, + [SMALL_STATE(179)] = 2238, + [SMALL_STATE(180)] = 2281, + [SMALL_STATE(181)] = 2326, + [SMALL_STATE(182)] = 2369, + [SMALL_STATE(183)] = 2412, + [SMALL_STATE(184)] = 2455, + [SMALL_STATE(185)] = 2500, + [SMALL_STATE(186)] = 2543, + [SMALL_STATE(187)] = 2586, + [SMALL_STATE(188)] = 2629, + [SMALL_STATE(189)] = 2672, + [SMALL_STATE(190)] = 2715, + [SMALL_STATE(191)] = 2758, + [SMALL_STATE(192)] = 2801, + [SMALL_STATE(193)] = 2846, + [SMALL_STATE(194)] = 2889, + [SMALL_STATE(195)] = 2934, + [SMALL_STATE(196)] = 2977, + [SMALL_STATE(197)] = 3020, + [SMALL_STATE(198)] = 3063, + [SMALL_STATE(199)] = 3106, + [SMALL_STATE(200)] = 3151, + [SMALL_STATE(201)] = 3194, + [SMALL_STATE(202)] = 3239, + [SMALL_STATE(203)] = 3284, + [SMALL_STATE(204)] = 3329, + [SMALL_STATE(205)] = 3372, + [SMALL_STATE(206)] = 3415, + [SMALL_STATE(207)] = 3460, + [SMALL_STATE(208)] = 3505, + [SMALL_STATE(209)] = 3550, + [SMALL_STATE(210)] = 3593, + [SMALL_STATE(211)] = 3636, + [SMALL_STATE(212)] = 3681, + [SMALL_STATE(213)] = 3724, + [SMALL_STATE(214)] = 3769, + [SMALL_STATE(215)] = 3812, + [SMALL_STATE(216)] = 3855, + [SMALL_STATE(217)] = 3898, + [SMALL_STATE(218)] = 3943, + [SMALL_STATE(219)] = 3986, + [SMALL_STATE(220)] = 4029, + [SMALL_STATE(221)] = 4072, + [SMALL_STATE(222)] = 4117, + [SMALL_STATE(223)] = 4160, + [SMALL_STATE(224)] = 4203, + [SMALL_STATE(225)] = 4248, + [SMALL_STATE(226)] = 4293, + [SMALL_STATE(227)] = 4336, + [SMALL_STATE(228)] = 4381, + [SMALL_STATE(229)] = 4424, + [SMALL_STATE(230)] = 4467, + [SMALL_STATE(231)] = 4510, + [SMALL_STATE(232)] = 4553, + [SMALL_STATE(233)] = 4593, + [SMALL_STATE(234)] = 4633, + [SMALL_STATE(235)] = 4673, + [SMALL_STATE(236)] = 4713, + [SMALL_STATE(237)] = 4753, + [SMALL_STATE(238)] = 4793, + [SMALL_STATE(239)] = 4837, + [SMALL_STATE(240)] = 4877, + [SMALL_STATE(241)] = 4917, + [SMALL_STATE(242)] = 4959, + [SMALL_STATE(243)] = 4999, + [SMALL_STATE(244)] = 5039, + [SMALL_STATE(245)] = 5079, + [SMALL_STATE(246)] = 5119, + [SMALL_STATE(247)] = 5159, + [SMALL_STATE(248)] = 5199, + [SMALL_STATE(249)] = 5239, + [SMALL_STATE(250)] = 5279, + [SMALL_STATE(251)] = 5319, + [SMALL_STATE(252)] = 5359, + [SMALL_STATE(253)] = 5399, + [SMALL_STATE(254)] = 5439, + [SMALL_STATE(255)] = 5479, + [SMALL_STATE(256)] = 5519, + [SMALL_STATE(257)] = 5559, + [SMALL_STATE(258)] = 5599, + [SMALL_STATE(259)] = 5639, + [SMALL_STATE(260)] = 5679, + [SMALL_STATE(261)] = 5719, + [SMALL_STATE(262)] = 5759, + [SMALL_STATE(263)] = 5799, + [SMALL_STATE(264)] = 5839, + [SMALL_STATE(265)] = 5879, + [SMALL_STATE(266)] = 5919, + [SMALL_STATE(267)] = 5959, + [SMALL_STATE(268)] = 5999, + [SMALL_STATE(269)] = 6039, + [SMALL_STATE(270)] = 6079, + [SMALL_STATE(271)] = 6119, + [SMALL_STATE(272)] = 6159, + [SMALL_STATE(273)] = 6199, + [SMALL_STATE(274)] = 6239, + [SMALL_STATE(275)] = 6279, + [SMALL_STATE(276)] = 6319, + [SMALL_STATE(277)] = 6359, + [SMALL_STATE(278)] = 6401, + [SMALL_STATE(279)] = 6441, + [SMALL_STATE(280)] = 6481, + [SMALL_STATE(281)] = 6521, + [SMALL_STATE(282)] = 6561, + [SMALL_STATE(283)] = 6601, + [SMALL_STATE(284)] = 6641, + [SMALL_STATE(285)] = 6681, + [SMALL_STATE(286)] = 6721, + [SMALL_STATE(287)] = 6761, + [SMALL_STATE(288)] = 6801, + [SMALL_STATE(289)] = 6841, + [SMALL_STATE(290)] = 6881, + [SMALL_STATE(291)] = 6921, + [SMALL_STATE(292)] = 6961, + [SMALL_STATE(293)] = 7001, + [SMALL_STATE(294)] = 7041, + [SMALL_STATE(295)] = 7081, + [SMALL_STATE(296)] = 7121, + [SMALL_STATE(297)] = 7161, + [SMALL_STATE(298)] = 7201, + [SMALL_STATE(299)] = 7241, + [SMALL_STATE(300)] = 7281, + [SMALL_STATE(301)] = 7321, + [SMALL_STATE(302)] = 7361, + [SMALL_STATE(303)] = 7401, + [SMALL_STATE(304)] = 7441, + [SMALL_STATE(305)] = 7481, + [SMALL_STATE(306)] = 7521, + [SMALL_STATE(307)] = 7561, + [SMALL_STATE(308)] = 7601, + [SMALL_STATE(309)] = 7641, + [SMALL_STATE(310)] = 7681, + [SMALL_STATE(311)] = 7721, + [SMALL_STATE(312)] = 7761, + [SMALL_STATE(313)] = 7801, + [SMALL_STATE(314)] = 7841, + [SMALL_STATE(315)] = 7885, + [SMALL_STATE(316)] = 7925, + [SMALL_STATE(317)] = 7965, + [SMALL_STATE(318)] = 8005, + [SMALL_STATE(319)] = 8045, + [SMALL_STATE(320)] = 8085, + [SMALL_STATE(321)] = 8125, + [SMALL_STATE(322)] = 8167, + [SMALL_STATE(323)] = 8207, + [SMALL_STATE(324)] = 8247, + [SMALL_STATE(325)] = 8287, + [SMALL_STATE(326)] = 8327, + [SMALL_STATE(327)] = 8367, + [SMALL_STATE(328)] = 8407, + [SMALL_STATE(329)] = 8447, + [SMALL_STATE(330)] = 8487, + [SMALL_STATE(331)] = 8527, + [SMALL_STATE(332)] = 8567, + [SMALL_STATE(333)] = 8607, + [SMALL_STATE(334)] = 8647, + [SMALL_STATE(335)] = 8687, + [SMALL_STATE(336)] = 8727, + [SMALL_STATE(337)] = 8767, + [SMALL_STATE(338)] = 8807, + [SMALL_STATE(339)] = 8847, + [SMALL_STATE(340)] = 8887, + [SMALL_STATE(341)] = 8927, + [SMALL_STATE(342)] = 8967, + [SMALL_STATE(343)] = 9007, + [SMALL_STATE(344)] = 9047, + [SMALL_STATE(345)] = 9087, + [SMALL_STATE(346)] = 9127, + [SMALL_STATE(347)] = 9167, + [SMALL_STATE(348)] = 9207, + [SMALL_STATE(349)] = 9247, + [SMALL_STATE(350)] = 9287, + [SMALL_STATE(351)] = 9327, + [SMALL_STATE(352)] = 9367, + [SMALL_STATE(353)] = 9407, + [SMALL_STATE(354)] = 9447, + [SMALL_STATE(355)] = 9487, + [SMALL_STATE(356)] = 9527, + [SMALL_STATE(357)] = 9567, + [SMALL_STATE(358)] = 9607, + [SMALL_STATE(359)] = 9647, + [SMALL_STATE(360)] = 9687, + [SMALL_STATE(361)] = 9727, + [SMALL_STATE(362)] = 9767, + [SMALL_STATE(363)] = 9807, + [SMALL_STATE(364)] = 9847, + [SMALL_STATE(365)] = 9887, + [SMALL_STATE(366)] = 9929, + [SMALL_STATE(367)] = 9969, + [SMALL_STATE(368)] = 10009, + [SMALL_STATE(369)] = 10051, + [SMALL_STATE(370)] = 10091, + [SMALL_STATE(371)] = 10131, + [SMALL_STATE(372)] = 10171, + [SMALL_STATE(373)] = 10211, + [SMALL_STATE(374)] = 10251, + [SMALL_STATE(375)] = 10291, + [SMALL_STATE(376)] = 10331, + [SMALL_STATE(377)] = 10371, + [SMALL_STATE(378)] = 10411, + [SMALL_STATE(379)] = 10451, + [SMALL_STATE(380)] = 10491, + [SMALL_STATE(381)] = 10531, + [SMALL_STATE(382)] = 10571, + [SMALL_STATE(383)] = 10611, + [SMALL_STATE(384)] = 10651, + [SMALL_STATE(385)] = 10691, + [SMALL_STATE(386)] = 10731, + [SMALL_STATE(387)] = 10771, + [SMALL_STATE(388)] = 10811, + [SMALL_STATE(389)] = 10851, + [SMALL_STATE(390)] = 10895, + [SMALL_STATE(391)] = 10935, + [SMALL_STATE(392)] = 10975, + [SMALL_STATE(393)] = 11015, + [SMALL_STATE(394)] = 11055, + [SMALL_STATE(395)] = 11095, + [SMALL_STATE(396)] = 11135, + [SMALL_STATE(397)] = 11175, + [SMALL_STATE(398)] = 11215, + [SMALL_STATE(399)] = 11255, + [SMALL_STATE(400)] = 11295, + [SMALL_STATE(401)] = 11335, + [SMALL_STATE(402)] = 11375, + [SMALL_STATE(403)] = 11417, + [SMALL_STATE(404)] = 11459, + [SMALL_STATE(405)] = 11499, + [SMALL_STATE(406)] = 11539, + [SMALL_STATE(407)] = 11579, + [SMALL_STATE(408)] = 11619, + [SMALL_STATE(409)] = 11659, + [SMALL_STATE(410)] = 11701, + [SMALL_STATE(411)] = 11741, + [SMALL_STATE(412)] = 11781, + [SMALL_STATE(413)] = 11821, + [SMALL_STATE(414)] = 11861, + [SMALL_STATE(415)] = 11901, + [SMALL_STATE(416)] = 11941, + [SMALL_STATE(417)] = 11981, + [SMALL_STATE(418)] = 12023, + [SMALL_STATE(419)] = 12063, + [SMALL_STATE(420)] = 12103, + [SMALL_STATE(421)] = 12143, + [SMALL_STATE(422)] = 12183, + [SMALL_STATE(423)] = 12223, + [SMALL_STATE(424)] = 12263, + [SMALL_STATE(425)] = 12303, + [SMALL_STATE(426)] = 12343, + [SMALL_STATE(427)] = 12383, + [SMALL_STATE(428)] = 12423, + [SMALL_STATE(429)] = 12463, + [SMALL_STATE(430)] = 12503, + [SMALL_STATE(431)] = 12545, + [SMALL_STATE(432)] = 12585, + [SMALL_STATE(433)] = 12625, + [SMALL_STATE(434)] = 12665, + [SMALL_STATE(435)] = 12705, + [SMALL_STATE(436)] = 12745, + [SMALL_STATE(437)] = 12785, + [SMALL_STATE(438)] = 12825, + [SMALL_STATE(439)] = 12865, + [SMALL_STATE(440)] = 12905, + [SMALL_STATE(441)] = 12945, + [SMALL_STATE(442)] = 12985, + [SMALL_STATE(443)] = 13025, + [SMALL_STATE(444)] = 13065, + [SMALL_STATE(445)] = 13105, + [SMALL_STATE(446)] = 13145, + [SMALL_STATE(447)] = 13185, + [SMALL_STATE(448)] = 13225, + [SMALL_STATE(449)] = 13265, + [SMALL_STATE(450)] = 13305, + [SMALL_STATE(451)] = 13345, + [SMALL_STATE(452)] = 13385, + [SMALL_STATE(453)] = 13425, + [SMALL_STATE(454)] = 13467, + [SMALL_STATE(455)] = 13507, + [SMALL_STATE(456)] = 13547, + [SMALL_STATE(457)] = 13587, + [SMALL_STATE(458)] = 13627, + [SMALL_STATE(459)] = 13667, + [SMALL_STATE(460)] = 13707, + [SMALL_STATE(461)] = 13747, + [SMALL_STATE(462)] = 13787, + [SMALL_STATE(463)] = 13827, + [SMALL_STATE(464)] = 13867, + [SMALL_STATE(465)] = 13907, + [SMALL_STATE(466)] = 13947, + [SMALL_STATE(467)] = 13987, + [SMALL_STATE(468)] = 14027, + [SMALL_STATE(469)] = 14067, + [SMALL_STATE(470)] = 14107, + [SMALL_STATE(471)] = 14147, + [SMALL_STATE(472)] = 14187, + [SMALL_STATE(473)] = 14227, + [SMALL_STATE(474)] = 14267, + [SMALL_STATE(475)] = 14307, + [SMALL_STATE(476)] = 14347, + [SMALL_STATE(477)] = 14387, + [SMALL_STATE(478)] = 14427, + [SMALL_STATE(479)] = 14467, + [SMALL_STATE(480)] = 14507, + [SMALL_STATE(481)] = 14547, + [SMALL_STATE(482)] = 14587, + [SMALL_STATE(483)] = 14627, + [SMALL_STATE(484)] = 14667, + [SMALL_STATE(485)] = 14707, + [SMALL_STATE(486)] = 14747, + [SMALL_STATE(487)] = 14787, + [SMALL_STATE(488)] = 14827, + [SMALL_STATE(489)] = 14867, + [SMALL_STATE(490)] = 14907, + [SMALL_STATE(491)] = 14947, + [SMALL_STATE(492)] = 14987, + [SMALL_STATE(493)] = 15027, + [SMALL_STATE(494)] = 15067, + [SMALL_STATE(495)] = 15107, + [SMALL_STATE(496)] = 15147, + [SMALL_STATE(497)] = 15187, + [SMALL_STATE(498)] = 15229, + [SMALL_STATE(499)] = 15269, + [SMALL_STATE(500)] = 15309, + [SMALL_STATE(501)] = 15349, + [SMALL_STATE(502)] = 15389, + [SMALL_STATE(503)] = 15429, + [SMALL_STATE(504)] = 15469, + [SMALL_STATE(505)] = 15509, + [SMALL_STATE(506)] = 15553, + [SMALL_STATE(507)] = 15593, + [SMALL_STATE(508)] = 15633, + [SMALL_STATE(509)] = 15673, + [SMALL_STATE(510)] = 15713, + [SMALL_STATE(511)] = 15753, + [SMALL_STATE(512)] = 15793, + [SMALL_STATE(513)] = 15833, + [SMALL_STATE(514)] = 15873, + [SMALL_STATE(515)] = 15913, + [SMALL_STATE(516)] = 15955, + [SMALL_STATE(517)] = 15995, + [SMALL_STATE(518)] = 16035, + [SMALL_STATE(519)] = 16075, + [SMALL_STATE(520)] = 16115, + [SMALL_STATE(521)] = 16155, + [SMALL_STATE(522)] = 16195, + [SMALL_STATE(523)] = 16235, + [SMALL_STATE(524)] = 16275, + [SMALL_STATE(525)] = 16315, + [SMALL_STATE(526)] = 16355, + [SMALL_STATE(527)] = 16395, + [SMALL_STATE(528)] = 16435, + [SMALL_STATE(529)] = 16475, + [SMALL_STATE(530)] = 16515, + [SMALL_STATE(531)] = 16555, + [SMALL_STATE(532)] = 16595, + [SMALL_STATE(533)] = 16635, + [SMALL_STATE(534)] = 16677, + [SMALL_STATE(535)] = 16717, + [SMALL_STATE(536)] = 16757, + [SMALL_STATE(537)] = 16797, + [SMALL_STATE(538)] = 16837, + [SMALL_STATE(539)] = 16877, + [SMALL_STATE(540)] = 16917, + [SMALL_STATE(541)] = 16959, + [SMALL_STATE(542)] = 16999, + [SMALL_STATE(543)] = 17039, + [SMALL_STATE(544)] = 17079, + [SMALL_STATE(545)] = 17119, + [SMALL_STATE(546)] = 17159, + [SMALL_STATE(547)] = 17199, + [SMALL_STATE(548)] = 17239, + [SMALL_STATE(549)] = 17278, + [SMALL_STATE(550)] = 17317, + [SMALL_STATE(551)] = 17356, + [SMALL_STATE(552)] = 17395, + [SMALL_STATE(553)] = 17434, + [SMALL_STATE(554)] = 17473, + [SMALL_STATE(555)] = 17512, + [SMALL_STATE(556)] = 17551, + [SMALL_STATE(557)] = 17590, + [SMALL_STATE(558)] = 17629, + [SMALL_STATE(559)] = 17668, + [SMALL_STATE(560)] = 17707, + [SMALL_STATE(561)] = 17746, + [SMALL_STATE(562)] = 17785, + [SMALL_STATE(563)] = 17824, + [SMALL_STATE(564)] = 17863, + [SMALL_STATE(565)] = 17902, + [SMALL_STATE(566)] = 17941, + [SMALL_STATE(567)] = 17980, + [SMALL_STATE(568)] = 18019, + [SMALL_STATE(569)] = 18058, + [SMALL_STATE(570)] = 18097, + [SMALL_STATE(571)] = 18138, + [SMALL_STATE(572)] = 18177, + [SMALL_STATE(573)] = 18216, + [SMALL_STATE(574)] = 18255, + [SMALL_STATE(575)] = 18294, + [SMALL_STATE(576)] = 18333, + [SMALL_STATE(577)] = 18372, + [SMALL_STATE(578)] = 18411, + [SMALL_STATE(579)] = 18450, + [SMALL_STATE(580)] = 18489, + [SMALL_STATE(581)] = 18528, + [SMALL_STATE(582)] = 18569, + [SMALL_STATE(583)] = 18608, + [SMALL_STATE(584)] = 18647, + [SMALL_STATE(585)] = 18686, + [SMALL_STATE(586)] = 18725, + [SMALL_STATE(587)] = 18764, + [SMALL_STATE(588)] = 18803, + [SMALL_STATE(589)] = 18842, + [SMALL_STATE(590)] = 18881, + [SMALL_STATE(591)] = 18920, + [SMALL_STATE(592)] = 18959, + [SMALL_STATE(593)] = 18998, + [SMALL_STATE(594)] = 19037, + [SMALL_STATE(595)] = 19076, + [SMALL_STATE(596)] = 19115, + [SMALL_STATE(597)] = 19154, + [SMALL_STATE(598)] = 19193, + [SMALL_STATE(599)] = 19232, + [SMALL_STATE(600)] = 19273, + [SMALL_STATE(601)] = 19312, + [SMALL_STATE(602)] = 19351, + [SMALL_STATE(603)] = 19390, + [SMALL_STATE(604)] = 19429, + [SMALL_STATE(605)] = 19468, + [SMALL_STATE(606)] = 19507, + [SMALL_STATE(607)] = 19546, + [SMALL_STATE(608)] = 19585, + [SMALL_STATE(609)] = 19624, + [SMALL_STATE(610)] = 19663, + [SMALL_STATE(611)] = 19702, + [SMALL_STATE(612)] = 19741, + [SMALL_STATE(613)] = 19782, + [SMALL_STATE(614)] = 19821, + [SMALL_STATE(615)] = 19860, + [SMALL_STATE(616)] = 19899, + [SMALL_STATE(617)] = 19938, + [SMALL_STATE(618)] = 19977, + [SMALL_STATE(619)] = 20016, + [SMALL_STATE(620)] = 20055, + [SMALL_STATE(621)] = 20094, + [SMALL_STATE(622)] = 20133, + [SMALL_STATE(623)] = 20172, + [SMALL_STATE(624)] = 20213, + [SMALL_STATE(625)] = 20252, + [SMALL_STATE(626)] = 20291, + [SMALL_STATE(627)] = 20330, + [SMALL_STATE(628)] = 20369, + [SMALL_STATE(629)] = 20408, + [SMALL_STATE(630)] = 20447, + [SMALL_STATE(631)] = 20486, + [SMALL_STATE(632)] = 20525, + [SMALL_STATE(633)] = 20564, + [SMALL_STATE(634)] = 20603, + [SMALL_STATE(635)] = 20642, + [SMALL_STATE(636)] = 20680, + [SMALL_STATE(637)] = 20718, + [SMALL_STATE(638)] = 20756, + [SMALL_STATE(639)] = 20794, + [SMALL_STATE(640)] = 20832, + [SMALL_STATE(641)] = 20863, + [SMALL_STATE(642)] = 20894, + [SMALL_STATE(643)] = 20925, + [SMALL_STATE(644)] = 20956, + [SMALL_STATE(645)] = 20987, + [SMALL_STATE(646)] = 21018, + [SMALL_STATE(647)] = 21049, + [SMALL_STATE(648)] = 21080, + [SMALL_STATE(649)] = 21111, + [SMALL_STATE(650)] = 21142, + [SMALL_STATE(651)] = 21173, + [SMALL_STATE(652)] = 21204, + [SMALL_STATE(653)] = 21235, + [SMALL_STATE(654)] = 21266, + [SMALL_STATE(655)] = 21297, + [SMALL_STATE(656)] = 21328, + [SMALL_STATE(657)] = 21359, + [SMALL_STATE(658)] = 21390, + [SMALL_STATE(659)] = 21421, + [SMALL_STATE(660)] = 21452, + [SMALL_STATE(661)] = 21483, + [SMALL_STATE(662)] = 21514, + [SMALL_STATE(663)] = 21545, + [SMALL_STATE(664)] = 21576, + [SMALL_STATE(665)] = 21607, + [SMALL_STATE(666)] = 21617, + [SMALL_STATE(667)] = 21627, + [SMALL_STATE(668)] = 21637, + [SMALL_STATE(669)] = 21647, + [SMALL_STATE(670)] = 21657, + [SMALL_STATE(671)] = 21667, + [SMALL_STATE(672)] = 21677, + [SMALL_STATE(673)] = 21687, + [SMALL_STATE(674)] = 21697, + [SMALL_STATE(675)] = 21714, + [SMALL_STATE(676)] = 21731, + [SMALL_STATE(677)] = 21748, + [SMALL_STATE(678)] = 21765, + [SMALL_STATE(679)] = 21782, + [SMALL_STATE(680)] = 21799, + [SMALL_STATE(681)] = 21816, + [SMALL_STATE(682)] = 21833, + [SMALL_STATE(683)] = 21850, + [SMALL_STATE(684)] = 21867, + [SMALL_STATE(685)] = 21884, + [SMALL_STATE(686)] = 21901, + [SMALL_STATE(687)] = 21917, + [SMALL_STATE(688)] = 21933, + [SMALL_STATE(689)] = 21949, + [SMALL_STATE(690)] = 21965, + [SMALL_STATE(691)] = 21981, + [SMALL_STATE(692)] = 21997, + [SMALL_STATE(693)] = 22009, + [SMALL_STATE(694)] = 22025, + [SMALL_STATE(695)] = 22041, + [SMALL_STATE(696)] = 22053, + [SMALL_STATE(697)] = 22069, + [SMALL_STATE(698)] = 22081, + [SMALL_STATE(699)] = 22097, + [SMALL_STATE(700)] = 22113, + [SMALL_STATE(701)] = 22129, + [SMALL_STATE(702)] = 22145, + [SMALL_STATE(703)] = 22161, + [SMALL_STATE(704)] = 22173, + [SMALL_STATE(705)] = 22189, + [SMALL_STATE(706)] = 22205, + [SMALL_STATE(707)] = 22221, + [SMALL_STATE(708)] = 22237, + [SMALL_STATE(709)] = 22253, + [SMALL_STATE(710)] = 22265, + [SMALL_STATE(711)] = 22281, + [SMALL_STATE(712)] = 22297, + [SMALL_STATE(713)] = 22313, + [SMALL_STATE(714)] = 22329, + [SMALL_STATE(715)] = 22345, + [SMALL_STATE(716)] = 22352, + [SMALL_STATE(717)] = 22360, + [SMALL_STATE(718)] = 22368, + [SMALL_STATE(719)] = 22378, + [SMALL_STATE(720)] = 22385, + [SMALL_STATE(721)] = 22392, + [SMALL_STATE(722)] = 22399, + [SMALL_STATE(723)] = 22406, + [SMALL_STATE(724)] = 22413, + [SMALL_STATE(725)] = 22420, + [SMALL_STATE(726)] = 22427, + [SMALL_STATE(727)] = 22434, + [SMALL_STATE(728)] = 22441, + [SMALL_STATE(729)] = 22448, + [SMALL_STATE(730)] = 22455, + [SMALL_STATE(731)] = 22462, + [SMALL_STATE(732)] = 22469, + [SMALL_STATE(733)] = 22476, + [SMALL_STATE(734)] = 22483, + [SMALL_STATE(735)] = 22490, + [SMALL_STATE(736)] = 22497, + [SMALL_STATE(737)] = 22504, + [SMALL_STATE(738)] = 22511, + [SMALL_STATE(739)] = 22518, + [SMALL_STATE(740)] = 22525, + [SMALL_STATE(741)] = 22532, + [SMALL_STATE(742)] = 22539, + [SMALL_STATE(743)] = 22546, + [SMALL_STATE(744)] = 22553, + [SMALL_STATE(745)] = 22560, + [SMALL_STATE(746)] = 22567, + [SMALL_STATE(747)] = 22574, + [SMALL_STATE(748)] = 22581, + [SMALL_STATE(749)] = 22588, + [SMALL_STATE(750)] = 22595, + [SMALL_STATE(751)] = 22602, + [SMALL_STATE(752)] = 22609, + [SMALL_STATE(753)] = 22616, + [SMALL_STATE(754)] = 22623, + [SMALL_STATE(755)] = 22630, + [SMALL_STATE(756)] = 22637, + [SMALL_STATE(757)] = 22644, + [SMALL_STATE(758)] = 22651, + [SMALL_STATE(759)] = 22658, + [SMALL_STATE(760)] = 22665, + [SMALL_STATE(761)] = 22672, + [SMALL_STATE(762)] = 22679, + [SMALL_STATE(763)] = 22686, + [SMALL_STATE(764)] = 22693, + [SMALL_STATE(765)] = 22700, + [SMALL_STATE(766)] = 22707, + [SMALL_STATE(767)] = 22714, + [SMALL_STATE(768)] = 22721, + [SMALL_STATE(769)] = 22728, + [SMALL_STATE(770)] = 22735, + [SMALL_STATE(771)] = 22742, + [SMALL_STATE(772)] = 22749, + [SMALL_STATE(773)] = 22756, + [SMALL_STATE(774)] = 22763, + [SMALL_STATE(775)] = 22770, + [SMALL_STATE(776)] = 22777, + [SMALL_STATE(777)] = 22784, + [SMALL_STATE(778)] = 22791, + [SMALL_STATE(779)] = 22798, + [SMALL_STATE(780)] = 22805, + [SMALL_STATE(781)] = 22812, + [SMALL_STATE(782)] = 22819, + [SMALL_STATE(783)] = 22826, + [SMALL_STATE(784)] = 22833, + [SMALL_STATE(785)] = 22840, + [SMALL_STATE(786)] = 22847, + [SMALL_STATE(787)] = 22854, + [SMALL_STATE(788)] = 22861, + [SMALL_STATE(789)] = 22868, + [SMALL_STATE(790)] = 22875, + [SMALL_STATE(791)] = 22882, + [SMALL_STATE(792)] = 22889, + [SMALL_STATE(793)] = 22896, + [SMALL_STATE(794)] = 22903, + [SMALL_STATE(795)] = 22910, + [SMALL_STATE(796)] = 22917, + [SMALL_STATE(797)] = 22924, + [SMALL_STATE(798)] = 22931, + [SMALL_STATE(799)] = 22938, + [SMALL_STATE(800)] = 22945, + [SMALL_STATE(801)] = 22952, + [SMALL_STATE(802)] = 22959, + [SMALL_STATE(803)] = 22966, + [SMALL_STATE(804)] = 22973, + [SMALL_STATE(805)] = 22980, + [SMALL_STATE(806)] = 22987, + [SMALL_STATE(807)] = 22994, + [SMALL_STATE(808)] = 23001, + [SMALL_STATE(809)] = 23008, + [SMALL_STATE(810)] = 23015, + [SMALL_STATE(811)] = 23022, + [SMALL_STATE(812)] = 23029, + [SMALL_STATE(813)] = 23036, + [SMALL_STATE(814)] = 23043, + [SMALL_STATE(815)] = 23050, + [SMALL_STATE(816)] = 23057, + [SMALL_STATE(817)] = 23064, + [SMALL_STATE(818)] = 23071, + [SMALL_STATE(819)] = 23078, + [SMALL_STATE(820)] = 23085, + [SMALL_STATE(821)] = 23092, + [SMALL_STATE(822)] = 23099, + [SMALL_STATE(823)] = 23106, + [SMALL_STATE(824)] = 23113, + [SMALL_STATE(825)] = 23120, + [SMALL_STATE(826)] = 23127, + [SMALL_STATE(827)] = 23134, + [SMALL_STATE(828)] = 23141, + [SMALL_STATE(829)] = 23148, + [SMALL_STATE(830)] = 23155, + [SMALL_STATE(831)] = 23162, + [SMALL_STATE(832)] = 23169, + [SMALL_STATE(833)] = 23176, + [SMALL_STATE(834)] = 23183, + [SMALL_STATE(835)] = 23190, + [SMALL_STATE(836)] = 23197, + [SMALL_STATE(837)] = 23204, + [SMALL_STATE(838)] = 23211, + [SMALL_STATE(839)] = 23218, + [SMALL_STATE(840)] = 23225, + [SMALL_STATE(841)] = 23232, + [SMALL_STATE(842)] = 23239, + [SMALL_STATE(843)] = 23246, + [SMALL_STATE(844)] = 23253, + [SMALL_STATE(845)] = 23260, + [SMALL_STATE(846)] = 23267, + [SMALL_STATE(847)] = 23274, + [SMALL_STATE(848)] = 23281, + [SMALL_STATE(849)] = 23288, + [SMALL_STATE(850)] = 23295, + [SMALL_STATE(851)] = 23302, + [SMALL_STATE(852)] = 23309, + [SMALL_STATE(853)] = 23316, + [SMALL_STATE(854)] = 23323, + [SMALL_STATE(855)] = 23330, + [SMALL_STATE(856)] = 23337, + [SMALL_STATE(857)] = 23344, + [SMALL_STATE(858)] = 23351, + [SMALL_STATE(859)] = 23358, + [SMALL_STATE(860)] = 23365, + [SMALL_STATE(861)] = 23372, + [SMALL_STATE(862)] = 23379, + [SMALL_STATE(863)] = 23386, + [SMALL_STATE(864)] = 23393, + [SMALL_STATE(865)] = 23400, + [SMALL_STATE(866)] = 23407, + [SMALL_STATE(867)] = 23414, + [SMALL_STATE(868)] = 23421, + [SMALL_STATE(869)] = 23428, + [SMALL_STATE(870)] = 23435, + [SMALL_STATE(871)] = 23442, + [SMALL_STATE(872)] = 23449, + [SMALL_STATE(873)] = 23456, + [SMALL_STATE(874)] = 23463, + [SMALL_STATE(875)] = 23470, + [SMALL_STATE(876)] = 23477, + [SMALL_STATE(877)] = 23484, + [SMALL_STATE(878)] = 23491, + [SMALL_STATE(879)] = 23498, + [SMALL_STATE(880)] = 23505, + [SMALL_STATE(881)] = 23512, + [SMALL_STATE(882)] = 23519, + [SMALL_STATE(883)] = 23526, + [SMALL_STATE(884)] = 23533, + [SMALL_STATE(885)] = 23540, + [SMALL_STATE(886)] = 23547, + [SMALL_STATE(887)] = 23554, + [SMALL_STATE(888)] = 23561, + [SMALL_STATE(889)] = 23568, + [SMALL_STATE(890)] = 23575, + [SMALL_STATE(891)] = 23582, + [SMALL_STATE(892)] = 23589, + [SMALL_STATE(893)] = 23596, + [SMALL_STATE(894)] = 23603, + [SMALL_STATE(895)] = 23610, + [SMALL_STATE(896)] = 23617, + [SMALL_STATE(897)] = 23624, + [SMALL_STATE(898)] = 23631, + [SMALL_STATE(899)] = 23638, + [SMALL_STATE(900)] = 23645, + [SMALL_STATE(901)] = 23649, + [SMALL_STATE(902)] = 23653, + [SMALL_STATE(903)] = 23657, + [SMALL_STATE(904)] = 23661, + [SMALL_STATE(905)] = 23665, + [SMALL_STATE(906)] = 23669, + [SMALL_STATE(907)] = 23673, + [SMALL_STATE(908)] = 23677, + [SMALL_STATE(909)] = 23681, + [SMALL_STATE(910)] = 23685, + [SMALL_STATE(911)] = 23689, + [SMALL_STATE(912)] = 23693, + [SMALL_STATE(913)] = 23697, + [SMALL_STATE(914)] = 23701, + [SMALL_STATE(915)] = 23705, + [SMALL_STATE(916)] = 23709, + [SMALL_STATE(917)] = 23713, + [SMALL_STATE(918)] = 23717, + [SMALL_STATE(919)] = 23721, + [SMALL_STATE(920)] = 23725, + [SMALL_STATE(921)] = 23729, + [SMALL_STATE(922)] = 23733, + [SMALL_STATE(923)] = 23737, + [SMALL_STATE(924)] = 23741, + [SMALL_STATE(925)] = 23745, + [SMALL_STATE(926)] = 23749, + [SMALL_STATE(927)] = 23753, + [SMALL_STATE(928)] = 23757, + [SMALL_STATE(929)] = 23761, + [SMALL_STATE(930)] = 23765, + [SMALL_STATE(931)] = 23769, + [SMALL_STATE(932)] = 23773, + [SMALL_STATE(933)] = 23777, + [SMALL_STATE(934)] = 23781, + [SMALL_STATE(935)] = 23785, + [SMALL_STATE(936)] = 23789, + [SMALL_STATE(937)] = 23793, + [SMALL_STATE(938)] = 23797, + [SMALL_STATE(939)] = 23801, + [SMALL_STATE(940)] = 23805, + [SMALL_STATE(941)] = 23809, + [SMALL_STATE(942)] = 23813, + [SMALL_STATE(943)] = 23817, + [SMALL_STATE(944)] = 23821, + [SMALL_STATE(945)] = 23825, + [SMALL_STATE(946)] = 23829, + [SMALL_STATE(947)] = 23833, + [SMALL_STATE(948)] = 23837, + [SMALL_STATE(949)] = 23841, + [SMALL_STATE(950)] = 23845, + [SMALL_STATE(951)] = 23849, + [SMALL_STATE(952)] = 23853, + [SMALL_STATE(953)] = 23857, + [SMALL_STATE(954)] = 23861, + [SMALL_STATE(955)] = 23865, + [SMALL_STATE(956)] = 23869, + [SMALL_STATE(957)] = 23873, + [SMALL_STATE(958)] = 23877, + [SMALL_STATE(959)] = 23881, + [SMALL_STATE(960)] = 23885, + [SMALL_STATE(961)] = 23889, + [SMALL_STATE(962)] = 23893, + [SMALL_STATE(963)] = 23897, + [SMALL_STATE(964)] = 23901, + [SMALL_STATE(965)] = 23905, + [SMALL_STATE(966)] = 23909, + [SMALL_STATE(967)] = 23913, + [SMALL_STATE(968)] = 23917, + [SMALL_STATE(969)] = 23921, + [SMALL_STATE(970)] = 23925, + [SMALL_STATE(971)] = 23929, + [SMALL_STATE(972)] = 23933, + [SMALL_STATE(973)] = 23937, + [SMALL_STATE(974)] = 23941, + [SMALL_STATE(975)] = 23945, + [SMALL_STATE(976)] = 23949, + [SMALL_STATE(977)] = 23953, + [SMALL_STATE(978)] = 23957, + [SMALL_STATE(979)] = 23961, + [SMALL_STATE(980)] = 23965, + [SMALL_STATE(981)] = 23969, + [SMALL_STATE(982)] = 23973, + [SMALL_STATE(983)] = 23977, + [SMALL_STATE(984)] = 23981, + [SMALL_STATE(985)] = 23985, + [SMALL_STATE(986)] = 23989, + [SMALL_STATE(987)] = 23993, + [SMALL_STATE(988)] = 23997, + [SMALL_STATE(989)] = 24001, + [SMALL_STATE(990)] = 24005, + [SMALL_STATE(991)] = 24009, + [SMALL_STATE(992)] = 24013, + [SMALL_STATE(993)] = 24017, + [SMALL_STATE(994)] = 24021, + [SMALL_STATE(995)] = 24025, + [SMALL_STATE(996)] = 24029, + [SMALL_STATE(997)] = 24033, + [SMALL_STATE(998)] = 24037, + [SMALL_STATE(999)] = 24041, + [SMALL_STATE(1000)] = 24045, + [SMALL_STATE(1001)] = 24049, + [SMALL_STATE(1002)] = 24053, + [SMALL_STATE(1003)] = 24057, + [SMALL_STATE(1004)] = 24061, + [SMALL_STATE(1005)] = 24065, + [SMALL_STATE(1006)] = 24069, + [SMALL_STATE(1007)] = 24073, + [SMALL_STATE(1008)] = 24077, + [SMALL_STATE(1009)] = 24081, + [SMALL_STATE(1010)] = 24085, + [SMALL_STATE(1011)] = 24089, + [SMALL_STATE(1012)] = 24093, + [SMALL_STATE(1013)] = 24097, + [SMALL_STATE(1014)] = 24101, + [SMALL_STATE(1015)] = 24105, + [SMALL_STATE(1016)] = 24109, + [SMALL_STATE(1017)] = 24113, + [SMALL_STATE(1018)] = 24117, + [SMALL_STATE(1019)] = 24121, + [SMALL_STATE(1020)] = 24125, + [SMALL_STATE(1021)] = 24129, + [SMALL_STATE(1022)] = 24133, + [SMALL_STATE(1023)] = 24137, + [SMALL_STATE(1024)] = 24141, + [SMALL_STATE(1025)] = 24145, + [SMALL_STATE(1026)] = 24149, + [SMALL_STATE(1027)] = 24153, + [SMALL_STATE(1028)] = 24157, + [SMALL_STATE(1029)] = 24161, + [SMALL_STATE(1030)] = 24165, + [SMALL_STATE(1031)] = 24169, + [SMALL_STATE(1032)] = 24173, + [SMALL_STATE(1033)] = 24177, + [SMALL_STATE(1034)] = 24181, + [SMALL_STATE(1035)] = 24185, + [SMALL_STATE(1036)] = 24189, + [SMALL_STATE(1037)] = 24193, + [SMALL_STATE(1038)] = 24197, + [SMALL_STATE(1039)] = 24201, + [SMALL_STATE(1040)] = 24205, + [SMALL_STATE(1041)] = 24209, + [SMALL_STATE(1042)] = 24213, + [SMALL_STATE(1043)] = 24217, + [SMALL_STATE(1044)] = 24221, + [SMALL_STATE(1045)] = 24225, + [SMALL_STATE(1046)] = 24229, + [SMALL_STATE(1047)] = 24233, + [SMALL_STATE(1048)] = 24237, + [SMALL_STATE(1049)] = 24241, + [SMALL_STATE(1050)] = 24245, + [SMALL_STATE(1051)] = 24249, + [SMALL_STATE(1052)] = 24253, + [SMALL_STATE(1053)] = 24257, + [SMALL_STATE(1054)] = 24261, + [SMALL_STATE(1055)] = 24265, + [SMALL_STATE(1056)] = 24269, + [SMALL_STATE(1057)] = 24273, + [SMALL_STATE(1058)] = 24277, + [SMALL_STATE(1059)] = 24281, + [SMALL_STATE(1060)] = 24285, + [SMALL_STATE(1061)] = 24289, + [SMALL_STATE(1062)] = 24293, + [SMALL_STATE(1063)] = 24297, + [SMALL_STATE(1064)] = 24301, + [SMALL_STATE(1065)] = 24305, + [SMALL_STATE(1066)] = 24309, + [SMALL_STATE(1067)] = 24313, + [SMALL_STATE(1068)] = 24317, + [SMALL_STATE(1069)] = 24321, + [SMALL_STATE(1070)] = 24325, + [SMALL_STATE(1071)] = 24329, + [SMALL_STATE(1072)] = 24333, + [SMALL_STATE(1073)] = 24337, + [SMALL_STATE(1074)] = 24341, + [SMALL_STATE(1075)] = 24345, + [SMALL_STATE(1076)] = 24349, + [SMALL_STATE(1077)] = 24353, + [SMALL_STATE(1078)] = 24357, + [SMALL_STATE(1079)] = 24361, + [SMALL_STATE(1080)] = 24365, + [SMALL_STATE(1081)] = 24369, + [SMALL_STATE(1082)] = 24373, + [SMALL_STATE(1083)] = 24377, + [SMALL_STATE(1084)] = 24381, + [SMALL_STATE(1085)] = 24385, + [SMALL_STATE(1086)] = 24389, + [SMALL_STATE(1087)] = 24393, + [SMALL_STATE(1088)] = 24397, + [SMALL_STATE(1089)] = 24401, + [SMALL_STATE(1090)] = 24405, + [SMALL_STATE(1091)] = 24409, + [SMALL_STATE(1092)] = 24413, + [SMALL_STATE(1093)] = 24417, + [SMALL_STATE(1094)] = 24421, + [SMALL_STATE(1095)] = 24425, + [SMALL_STATE(1096)] = 24429, + [SMALL_STATE(1097)] = 24433, + [SMALL_STATE(1098)] = 24437, + [SMALL_STATE(1099)] = 24441, + [SMALL_STATE(1100)] = 24445, + [SMALL_STATE(1101)] = 24449, + [SMALL_STATE(1102)] = 24453, + [SMALL_STATE(1103)] = 24457, + [SMALL_STATE(1104)] = 24461, + [SMALL_STATE(1105)] = 24465, + [SMALL_STATE(1106)] = 24469, + [SMALL_STATE(1107)] = 24473, + [SMALL_STATE(1108)] = 24477, + [SMALL_STATE(1109)] = 24481, + [SMALL_STATE(1110)] = 24485, + [SMALL_STATE(1111)] = 24489, + [SMALL_STATE(1112)] = 24493, + [SMALL_STATE(1113)] = 24497, + [SMALL_STATE(1114)] = 24501, + [SMALL_STATE(1115)] = 24505, + [SMALL_STATE(1116)] = 24509, + [SMALL_STATE(1117)] = 24513, + [SMALL_STATE(1118)] = 24517, + [SMALL_STATE(1119)] = 24521, + [SMALL_STATE(1120)] = 24525, + [SMALL_STATE(1121)] = 24529, + [SMALL_STATE(1122)] = 24533, + [SMALL_STATE(1123)] = 24537, + [SMALL_STATE(1124)] = 24541, + [SMALL_STATE(1125)] = 24545, + [SMALL_STATE(1126)] = 24549, + [SMALL_STATE(1127)] = 24553, + [SMALL_STATE(1128)] = 24557, + [SMALL_STATE(1129)] = 24561, + [SMALL_STATE(1130)] = 24565, + [SMALL_STATE(1131)] = 24569, + [SMALL_STATE(1132)] = 24573, + [SMALL_STATE(1133)] = 24577, + [SMALL_STATE(1134)] = 24581, + [SMALL_STATE(1135)] = 24585, + [SMALL_STATE(1136)] = 24589, + [SMALL_STATE(1137)] = 24593, + [SMALL_STATE(1138)] = 24597, + [SMALL_STATE(1139)] = 24601, + [SMALL_STATE(1140)] = 24605, + [SMALL_STATE(1141)] = 24609, + [SMALL_STATE(1142)] = 24613, + [SMALL_STATE(1143)] = 24617, + [SMALL_STATE(1144)] = 24621, + [SMALL_STATE(1145)] = 24625, + [SMALL_STATE(1146)] = 24629, + [SMALL_STATE(1147)] = 24633, + [SMALL_STATE(1148)] = 24637, + [SMALL_STATE(1149)] = 24641, + [SMALL_STATE(1150)] = 24645, + [SMALL_STATE(1151)] = 24649, + [SMALL_STATE(1152)] = 24653, + [SMALL_STATE(1153)] = 24657, + [SMALL_STATE(1154)] = 24661, + [SMALL_STATE(1155)] = 24665, + [SMALL_STATE(1156)] = 24669, + [SMALL_STATE(1157)] = 24673, + [SMALL_STATE(1158)] = 24677, + [SMALL_STATE(1159)] = 24681, + [SMALL_STATE(1160)] = 24685, + [SMALL_STATE(1161)] = 24689, + [SMALL_STATE(1162)] = 24693, + [SMALL_STATE(1163)] = 24697, + [SMALL_STATE(1164)] = 24701, + [SMALL_STATE(1165)] = 24705, + [SMALL_STATE(1166)] = 24709, + [SMALL_STATE(1167)] = 24713, + [SMALL_STATE(1168)] = 24717, + [SMALL_STATE(1169)] = 24721, + [SMALL_STATE(1170)] = 24725, + [SMALL_STATE(1171)] = 24729, + [SMALL_STATE(1172)] = 24733, + [SMALL_STATE(1173)] = 24737, + [SMALL_STATE(1174)] = 24741, + [SMALL_STATE(1175)] = 24745, + [SMALL_STATE(1176)] = 24749, + [SMALL_STATE(1177)] = 24753, + [SMALL_STATE(1178)] = 24757, + [SMALL_STATE(1179)] = 24761, + [SMALL_STATE(1180)] = 24765, + [SMALL_STATE(1181)] = 24769, + [SMALL_STATE(1182)] = 24773, + [SMALL_STATE(1183)] = 24777, + [SMALL_STATE(1184)] = 24781, + [SMALL_STATE(1185)] = 24785, + [SMALL_STATE(1186)] = 24789, + [SMALL_STATE(1187)] = 24793, + [SMALL_STATE(1188)] = 24797, + [SMALL_STATE(1189)] = 24801, + [SMALL_STATE(1190)] = 24805, + [SMALL_STATE(1191)] = 24809, + [SMALL_STATE(1192)] = 24813, + [SMALL_STATE(1193)] = 24817, + [SMALL_STATE(1194)] = 24821, + [SMALL_STATE(1195)] = 24825, + [SMALL_STATE(1196)] = 24829, + [SMALL_STATE(1197)] = 24833, + [SMALL_STATE(1198)] = 24837, + [SMALL_STATE(1199)] = 24841, + [SMALL_STATE(1200)] = 24845, + [SMALL_STATE(1201)] = 24849, + [SMALL_STATE(1202)] = 24853, + [SMALL_STATE(1203)] = 24857, + [SMALL_STATE(1204)] = 24861, + [SMALL_STATE(1205)] = 24865, + [SMALL_STATE(1206)] = 24869, + [SMALL_STATE(1207)] = 24873, + [SMALL_STATE(1208)] = 24877, + [SMALL_STATE(1209)] = 24881, + [SMALL_STATE(1210)] = 24885, + [SMALL_STATE(1211)] = 24889, + [SMALL_STATE(1212)] = 24893, + [SMALL_STATE(1213)] = 24897, + [SMALL_STATE(1214)] = 24901, + [SMALL_STATE(1215)] = 24905, + [SMALL_STATE(1216)] = 24909, + [SMALL_STATE(1217)] = 24913, + [SMALL_STATE(1218)] = 24917, + [SMALL_STATE(1219)] = 24921, + [SMALL_STATE(1220)] = 24925, + [SMALL_STATE(1221)] = 24929, + [SMALL_STATE(1222)] = 24933, + [SMALL_STATE(1223)] = 24937, + [SMALL_STATE(1224)] = 24941, + [SMALL_STATE(1225)] = 24945, + [SMALL_STATE(1226)] = 24949, + [SMALL_STATE(1227)] = 24953, + [SMALL_STATE(1228)] = 24957, + [SMALL_STATE(1229)] = 24961, + [SMALL_STATE(1230)] = 24965, + [SMALL_STATE(1231)] = 24969, + [SMALL_STATE(1232)] = 24973, + [SMALL_STATE(1233)] = 24977, + [SMALL_STATE(1234)] = 24981, + [SMALL_STATE(1235)] = 24985, + [SMALL_STATE(1236)] = 24989, + [SMALL_STATE(1237)] = 24993, + [SMALL_STATE(1238)] = 24997, + [SMALL_STATE(1239)] = 25001, + [SMALL_STATE(1240)] = 25005, + [SMALL_STATE(1241)] = 25009, + [SMALL_STATE(1242)] = 25013, + [SMALL_STATE(1243)] = 25017, + [SMALL_STATE(1244)] = 25021, + [SMALL_STATE(1245)] = 25025, + [SMALL_STATE(1246)] = 25029, + [SMALL_STATE(1247)] = 25033, + [SMALL_STATE(1248)] = 25037, + [SMALL_STATE(1249)] = 25041, + [SMALL_STATE(1250)] = 25045, + [SMALL_STATE(1251)] = 25049, + [SMALL_STATE(1252)] = 25053, + [SMALL_STATE(1253)] = 25057, + [SMALL_STATE(1254)] = 25061, + [SMALL_STATE(1255)] = 25065, + [SMALL_STATE(1256)] = 25069, + [SMALL_STATE(1257)] = 25073, + [SMALL_STATE(1258)] = 25077, + [SMALL_STATE(1259)] = 25081, + [SMALL_STATE(1260)] = 25085, + [SMALL_STATE(1261)] = 25089, + [SMALL_STATE(1262)] = 25093, + [SMALL_STATE(1263)] = 25097, + [SMALL_STATE(1264)] = 25101, + [SMALL_STATE(1265)] = 25105, + [SMALL_STATE(1266)] = 25109, + [SMALL_STATE(1267)] = 25113, + [SMALL_STATE(1268)] = 25117, + [SMALL_STATE(1269)] = 25121, + [SMALL_STATE(1270)] = 25125, + [SMALL_STATE(1271)] = 25129, + [SMALL_STATE(1272)] = 25133, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), - [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline, 1), - [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), - [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), - [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), - [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), - [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), - [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), - [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), - [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), - [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), - [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), - [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), - [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), - [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), - [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), - [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), - [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), - [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), - [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(833), - [474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(219), - [477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(820), - [480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(220), - [483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(807), - [486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(802), - [489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(801), - [492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(800), - [495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(787), - [498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1023), - [501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(143), - [504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(143), - [507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(211), - [510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(815), - [513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(711), - [516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(712), - [519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(241), - [522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(242), - [525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(243), - [528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(193), - [531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(21), - [534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(126), - [537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1018), - [540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), - [542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(789), - [545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(178), - [548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(790), - [551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(177), - [554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(791), - [557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(792), - [560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(793), - [563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(794), - [566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(795), - [569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1014), - [572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(137), - [575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(137), - [578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(175), - [581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(797), - [584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(798), - [587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(799), - [590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(366), - [593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(367), - [596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(368), - [599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(184), - [602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(37), - [605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(131), - [608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1063), - [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(731), - [618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(207), - [621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(732), - [624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(206), - [627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(733), - [630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(734), - [633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(735), - [636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(736), - [639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(737), - [642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1111), - [645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(135), - [648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(135), - [651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(204), - [654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(739), - [657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(740), - [660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(741), - [663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(278), - [666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(279), - [669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(280), - [672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(215), - [675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(64), - [678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(124), - [681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1033), - [684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(822), - [687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(170), - [690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(823), - [693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(169), - [696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(824), - [699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(825), - [702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(826), - [705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(827), - [708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(828), - [711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(967), - [714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(133), - [717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(133), - [720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(168), - [723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(830), - [726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(831), - [729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(832), - [732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(410), - [735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(411), - [738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(412), - [741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(174), - [744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(65), - [747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(129), - [750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1078), - [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), - [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), - [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(757), - [804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(197), - [807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(715), - [810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(218), - [813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(718), - [816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(719), - [819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(720), - [822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(721), - [825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(722), - [828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1142), - [831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(142), - [834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(142), - [837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(217), - [840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(724), - [843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(726), - [846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(727), - [849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(535), - [852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(226), - [855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(239), - [858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(216), - [861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(71), - [864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(130), - [867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1147), - [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(855), - [875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(159), - [878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(856), - [881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(189), - [884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(857), - [887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(858), - [890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(859), - [893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(860), - [896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(861), - [899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(931), - [902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(136), - [905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(136), - [908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(210), - [911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(863), - [914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(864), - [917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(865), - [920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(454), - [923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(455), - [926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(456), - [929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(165), - [932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(74), - [935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(127), - [938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1093), - [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(759), - [948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(192), - [951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(760), - [954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(191), - [957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(761), - [960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(762), - [963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(763), - [966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(764), - [969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(765), - [972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1051), - [975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(140), - [978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(140), - [981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(185), - [984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(767), - [987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(768), - [990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(769), - [993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(322), - [996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(323), - [999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(324), - [1002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(203), - [1005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(109), - [1008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(125), - [1011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1048), - [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [1016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(888), - [1019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(167), - [1022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(889), - [1025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(163), - [1028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(710), - [1031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(884), - [1034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(885), - [1037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(886), - [1040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(887), - [1043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(895), - [1046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(139), - [1049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(139), - [1052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(212), - [1055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(883), - [1058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(882), - [1061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(881), - [1064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(498), - [1067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(499), - [1070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(500), - [1073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(183), - [1076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(112), - [1079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(121), - [1082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1108), - [1085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(876), - [1088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(164), - [1091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(875), - [1094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(160), - [1097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(874), - [1100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(873), - [1103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(869), - [1106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(868), - [1109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(867), - [1112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(928), - [1115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(134), - [1118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(134), - [1121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(195), - [1124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(866), - [1127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(862), - [1130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(854), - [1133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(517), - [1136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(516), - [1139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(515), - [1142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(196), - [1145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(115), - [1148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(123), - [1151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1123), - [1154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(846), - [1157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(383), - [1160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(845), - [1163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(374), - [1166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(844), - [1169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(843), - [1172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(842), - [1175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(841), - [1178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(840), - [1181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(961), - [1184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(144), - [1187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(144), - [1190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(360), - [1193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(836), - [1196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(835), - [1199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(834), - [1202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(582), - [1205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(583), - [1208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(584), - [1211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(223), - [1214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(118), - [1217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(132), - [1220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1138), - [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), + [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), + [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), + [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), + [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline, 1), + [285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(757), + [288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(210), + [291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(758), + [294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(179), + [297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(759), + [300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(760), + [303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(761), + [306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(762), + [309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(763), + [312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1087), + [315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(149), + [318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(149), + [321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(204), + [324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(765), + [327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(766), + [330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(767), + [333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(321), + [336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(322), + [339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(323), + [342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(217), + [345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(14), + [348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(142), + [351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1051), + [354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), + [356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), + [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), + [422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), + [434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), + [446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), + [468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), + [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), + [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), + [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), + [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), + [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(899), + [591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(229), + [594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(898), + [597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(230), + [600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(885), + [603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(772), + [606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(871), + [609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(866), + [612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(865), + [615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(955), + [618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(151), + [621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(151), + [624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(223), + [627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(851), + [630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(838), + [633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(833), + [636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(241), + [639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(242), + [642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(243), + [645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(192), + [648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(36), + [651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(140), + [654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1019), + [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(729), + [664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(228), + [667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(730), + [670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(220), + [673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(731), + [676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(732), + [679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(733), + [682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(734), + [685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(735), + [688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1180), + [691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(145), + [694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(145), + [697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(167), + [700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(737), + [703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(738), + [706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(739), + [709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(277), + [712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(278), + [715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(279), + [718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(224), + [721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(68), + [724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(138), + [727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1035), + [730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(721), + [733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(219), + [736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(722), + [739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(218), + [742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(723), + [745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(724), + [748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(725), + [751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(726), + [754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(727), + [757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1198), + [760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(150), + [763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(150), + [766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(231), + [769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(728), + [772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(736), + [775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(740), + [778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(533), + [781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(239), + [784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(246), + [787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(227), + [790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(69), + [793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(139), + [796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1135), + [799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(788), + [802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(195), + [805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(789), + [808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(191), + [811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(790), + [814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(791), + [817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(792), + [820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(793), + [823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(794), + [826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1044), + [829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(153), + [832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(153), + [835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(189), + [838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(796), + [841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(797), + [844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(798), + [847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(365), + [850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(366), + [853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(367), + [856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(203), + [859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(70), + [862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(134), + [865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1067), + [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(821), + [875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(177), + [878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(822), + [881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(176), + [884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(823), + [887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(824), + [890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(825), + [893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(826), + [896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(827), + [899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(993), + [902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(147), + [905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(147), + [908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(174), + [911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(829), + [914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(830), + [917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(831), + [920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(409), + [923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(410), + [926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(411), + [929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(184), + [932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(100), + [935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(132), + [938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1083), + [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(854), + [946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(215), + [949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(855), + [952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(212), + [955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(856), + [958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(857), + [961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(858), + [964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(859), + [967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(860), + [970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(936), + [973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(146), + [976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(146), + [979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(209), + [982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(862), + [985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(863), + [988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(864), + [991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(453), + [994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(454), + [997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(455), + [1000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(173), + [1003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(120), + [1006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(141), + [1009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1099), + [1012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [1014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(887), + [1017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(187), + [1020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(888), + [1023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(183), + [1026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(889), + [1029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(890), + [1032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(891), + [1035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(892), + [1038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(893), + [1041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(901), + [1044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(143), + [1047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(143), + [1050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(178), + [1053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(895), + [1056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(896), + [1059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(897), + [1062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(497), + [1065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(498), + [1068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(499), + [1071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(208), + [1074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(122), + [1077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(135), + [1080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1115), + [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [1085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(882), + [1088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(172), + [1091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(881), + [1094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(168), + [1097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(880), + [1100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(879), + [1103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(878), + [1106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(877), + [1109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(876), + [1112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(927), + [1115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(154), + [1118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(154), + [1121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(190), + [1124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(875), + [1127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(874), + [1130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(873), + [1133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(540), + [1136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(541), + [1139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(542), + [1142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(175), + [1145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(126), + [1148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(137), + [1151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1131), + [1154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [1156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(853), + [1159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(430), + [1162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(719), + [1165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(417), + [1168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(852), + [1171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(850), + [1174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(849), + [1177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(848), + [1180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(847), + [1183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(960), + [1186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(155), + [1189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(155), + [1192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(403), + [1195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(846), + [1198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(845), + [1201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(844), + [1204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(581), + [1207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(582), + [1210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(583), + [1213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(238), + [1216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(131), + [1219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(144), + [1222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1147), [1225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element, 1), [1227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__element, 1), - [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), - [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), - [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), - [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), - [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), - [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), - [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), - [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), - [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), - [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), - [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), - [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), + [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), + [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), + [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), + [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), + [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), + [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), + [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), + [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), + [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), + [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), [1253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verbatim, 3, .production_id = 1), [1255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verbatim, 3, .production_id = 1), - [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [1279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__text, 2), - [1281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__text, 2), - [1283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(156), - [1286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), - [1288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), - [1292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 2), - [1294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 2), - [1296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [1302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(161), - [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [1311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 1), - [1313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), - [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), - [1317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(166), - [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [1328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(171), - [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), - [1337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [1339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(176), - [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [1348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(180), - [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), - [1357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), - [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [1365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), - [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [1381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), - [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [1385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(198), - [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [1394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(202), - [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), - [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [1401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(205), - [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [1408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(208), - [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [1415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), - [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [1419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(213), - [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), - [1426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), - [1428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [1436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlighted, 4, .dynamic_precedence = 1000, .production_id = 4), - [1438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_highlighted, 4, .dynamic_precedence = 1000, .production_id = 4), - [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_with_spaces, 2), - [1442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__comment_with_spaces, 2), - [1444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), - [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_autolink, 3), - [1448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_autolink, 3), - [1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_inline, 4), - [1452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_inline, 4), - [1454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_todo, 1), - [1456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_todo, 1), - [1458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math, 4, .production_id = 3), - [1460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math, 4, .production_id = 3), - [1462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 3), - [1464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comment, 3), - [1466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emphasis, 4, .dynamic_precedence = 1000), - [1468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_emphasis, 4, .dynamic_precedence = 1000), - [1470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strong, 4, .dynamic_precedence = 1000), - [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strong, 4, .dynamic_precedence = 1000), - [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_superscript, 4, .dynamic_precedence = 1000, .production_id = 4), - [1476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_superscript, 4, .dynamic_precedence = 1000, .production_id = 4), - [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, .dynamic_precedence = 1000, .production_id = 4), - [1480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, .dynamic_precedence = 1000, .production_id = 4), - [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 4, .dynamic_precedence = 1000, .production_id = 4), - [1484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 4, .dynamic_precedence = 1000, .production_id = 4), - [1486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete, 4, .dynamic_precedence = 1000, .production_id = 4), - [1488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete, 4, .dynamic_precedence = 1000, .production_id = 4), - [1490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_footnote_reference, 4, .dynamic_precedence = 1000), - [1492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_footnote_reference, 4, .dynamic_precedence = 1000), - [1494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_label, 3, .production_id = 5), - [1496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_label, 3, .production_id = 5), - [1498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link_destination, 3), - [1500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link_destination, 3), - [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note, 1), - [1504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_note, 1), - [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_inline_attribute, 3), - [1508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_inline_attribute, 3), - [1510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1020), - [1513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hard_line_break, 2), - [1515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hard_line_break, 2), - [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), - [1519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collapsed_reference_image, 2), - [1521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collapsed_reference_image, 2), - [1523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_reference_image, 2), - [1525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_reference_image, 2), - [1527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_image, 2), - [1529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_image, 2), - [1531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collapsed_reference_link, 2), - [1533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collapsed_reference_link, 2), - [1535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_reference_link, 2), - [1537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_reference_link, 2), - [1539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 2), - [1541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 2), - [1543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 3), - [1545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 3), - [1547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1035), - [1550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1005), - [1553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1050), - [1556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(344), - [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), - [1563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(891), - [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [1570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1080), - [1573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1095), - [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), - [1578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(989), - [1581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1110), + [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [1279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), + [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), + [1283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), + [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [1287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__text, 2), + [1289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__text, 2), + [1291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(169), + [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 2), + [1296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 2), + [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [1304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 1), + [1306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), + [1308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), + [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [1312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), + [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [1318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [1322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(180), + [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), + [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), + [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), + [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [1351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(194), + [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [1362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(199), + [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [1367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(201), + [1370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(202), + [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), + [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [1379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(206), + [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), + [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [1390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(211), + [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [1395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(213), + [1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [1400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [1402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [1404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), + [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [1408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [1412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(221), + [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), + [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), + [1421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(225), + [1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [1426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), + [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [1434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), + [1436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link_destination, 3), + [1438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link_destination, 3), + [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_inline, 4), + [1442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_inline, 4), + [1444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete, 4, .dynamic_precedence = 1000, .production_id = 4), + [1446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete, 4, .dynamic_precedence = 1000, .production_id = 4), + [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_footnote_reference, 4, .dynamic_precedence = 1000), + [1450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_footnote_reference, 4, .dynamic_precedence = 1000), + [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_label, 3, .production_id = 5), + [1454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_label, 3, .production_id = 5), + [1456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), + [1458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_todo, 1), + [1460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_todo, 1), + [1462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_inline_attribute, 3), + [1464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_inline_attribute, 3), + [1466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1021), + [1469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note, 1), + [1471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_note, 1), + [1473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hard_line_break, 2), + [1475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hard_line_break, 2), + [1477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_with_spaces, 2), + [1479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__comment_with_spaces, 2), + [1481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collapsed_reference_image, 2), + [1483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collapsed_reference_image, 2), + [1485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_reference_image, 2), + [1487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_reference_image, 2), + [1489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_image, 2), + [1491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_image, 2), + [1493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collapsed_reference_link, 2), + [1495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collapsed_reference_link, 2), + [1497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_reference_link, 2), + [1499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_reference_link, 2), + [1501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 2), + [1503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 2), + [1505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 3), + [1507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 3), + [1509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_autolink, 3), + [1511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_autolink, 3), + [1513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math, 4, .production_id = 3), + [1515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math, 4, .production_id = 3), + [1517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 3), + [1519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comment, 3), + [1521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emphasis, 4, .dynamic_precedence = 1000), + [1523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_emphasis, 4, .dynamic_precedence = 1000), + [1525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strong, 4, .dynamic_precedence = 1000), + [1527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strong, 4, .dynamic_precedence = 1000), + [1529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_superscript, 4, .dynamic_precedence = 1000, .production_id = 4), + [1531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_superscript, 4, .dynamic_precedence = 1000, .production_id = 4), + [1533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, .dynamic_precedence = 1000, .production_id = 4), + [1535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, .dynamic_precedence = 1000, .production_id = 4), + [1537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlighted, 4, .dynamic_precedence = 1000, .production_id = 4), + [1539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_highlighted, 4, .dynamic_precedence = 1000, .production_id = 4), + [1541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 4, .dynamic_precedence = 1000, .production_id = 4), + [1543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 4, .dynamic_precedence = 1000, .production_id = 4), + [1545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1037), + [1548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [1550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1053), + [1553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1069), + [1556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1005), + [1559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(389), + [1562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [1564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [1566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1085), + [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [1573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1101), + [1576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1117), + [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), + [1581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(988), [1584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1125), - [1587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1100), - [1590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_without_trailing_space, 1), - [1592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_attribute, 3, .dynamic_precedence = 1000), - [1594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_attribute, 3, .dynamic_precedence = 1000), - [1596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_attribute_fallback, 2), - [1598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_attribute_fallback, 2), - [1600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_attribute, 4, .dynamic_precedence = 1000, .production_id = 7), - [1602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_attribute, 4, .dynamic_precedence = 1000, .production_id = 7), - [1604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element, 2), - [1606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__element, 2), - [1608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_span, 2, .dynamic_precedence = -1000), - [1610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_span, 2, .dynamic_precedence = -1000), - [1612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_without_trailing_space, 2), - [1614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1140), - [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [1627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(1058), - [1630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(1001), - [1633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(657), - [1636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(756), - [1639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), - [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [1687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_with_newline, 3), - [1689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_name, 1), - [1691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2), - [1693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 1), - [1695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 1, .production_id = 2), - [1697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_with_newline, 4, .production_id = 4), - [1699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1), - [1701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value, 3), - [1703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 3), - [1705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_text, 1), - [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [1709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_text, 1), - [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), - [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), - [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), - [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [1753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), - [1755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), - [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), - [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), - [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), - [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), - [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), - [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [1791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), - [1793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__comment_with_newline_repeat1, 2), SHIFT_REPEAT(704), - [1796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_with_newline_repeat1, 2), - [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [1800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), - [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [1808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), - [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [1816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), - [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [1820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), - [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [1828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), - [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [1836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), - [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [1587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1133), + [1590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_attribute, 4, .dynamic_precedence = 1000, .production_id = 8), + [1592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_attribute, 4, .dynamic_precedence = 1000, .production_id = 8), + [1594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_span, 5, .production_id = 9), + [1596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_span, 5, .production_id = 9), + [1598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element, 2), + [1600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__element, 2), + [1602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_attribute_fallback, 2), + [1604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_attribute_fallback, 2), + [1606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_attribute, 3, .dynamic_precedence = 1000), + [1608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_attribute, 3, .dynamic_precedence = 1000), + [1610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_without_trailing_space, 1), + [1612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1149), + [1615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_without_trailing_space, 2), + [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [1667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(1088), + [1670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(1000), + [1673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(667), + [1676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(764), + [1679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), + [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [1687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 3), + [1689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1), + [1691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 1), + [1693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 1, .production_id = 2), + [1695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2), + [1697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value, 3), + [1699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_name, 1), + [1701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_with_newline, 3), + [1703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_with_newline, 4, .production_id = 4), + [1705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_text, 4, .dynamic_precedence = 1000, .production_id = 7), + [1707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_text, 4, .dynamic_precedence = 1000, .production_id = 7), + [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), + [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), + [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), + [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [1757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), + [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), + [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), + [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), + [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [1773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__comment_with_newline_repeat1, 2), SHIFT_REPEAT(715), + [1776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_with_newline_repeat1, 2), + [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [1780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [1784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), + [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [1792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), + [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [1800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), + [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [1804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), + [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [1810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), + [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [1820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), + [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [1824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), + [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [1828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), + [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [1836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), + [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_with_newline_repeat1, 1), - [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bracketed_text, 4, .dynamic_precedence = 1000), - [1848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bracketed_text, 4, .dynamic_precedence = 1000), - [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [1852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_description, 3, .dynamic_precedence = 1000), - [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_description, 3, .dynamic_precedence = 1000), - [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_description, 4, .dynamic_precedence = 1000, .production_id = 6), - [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_description, 4, .dynamic_precedence = 1000, .production_id = 6), - [1862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(406), - [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [1867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(503), - [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [1872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(244), - [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [1877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(244), - [1880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(255), - [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [1885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(255), - [1888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(254), - [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [1895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_attribute_begin, 1), SHIFT(549), - [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [1900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(254), - [1903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(254), - [1906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(254), - [1909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(254), - [1912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(254), - [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [1917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(254), - [1920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(254), - [1923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(254), - [1926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(284), - [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [1931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(284), - [1934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(284), - [1937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(284), - [1940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(284), - [1943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(284), - [1946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(284), - [1949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(303), - [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [1954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(284), - [1957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(284), - [1960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(284), - [1963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(299), - [1966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [1968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(299), - [1971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_attribute_begin, 1), SHIFT(595), - [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [1976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(303), - [1979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_attribute_begin, 1), SHIFT(604), - [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [1986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(254), - [1989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(328), - [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [1994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(328), - [1997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(328), - [2000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(328), - [2003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(328), - [2006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(328), - [2009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(328), - [2012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(328), - [2015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(328), - [2018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(328), - [2021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(406), - [2024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(343), - [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [2029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(343), - [2032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_attribute_begin, 1), SHIFT(598), - [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [2037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(406), - [2040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(406), - [2043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(406), - [2046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(406), - [2049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(406), - [2052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(406), - [2055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(406), - [2058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(413), - [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [2063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(413), - [2066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(406), - [2069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(244), - [2072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(372), - [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [2077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(372), - [2080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(372), - [2083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(372), - [2086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(372), - [2089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(372), - [2092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(372), - [2095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_attribute_begin, 1), SHIFT(571), - [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [2100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(372), - [2103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(372), - [2106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(372), - [2109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(244), - [2112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(244), - [2115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(244), - [2118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(387), - [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [2123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(387), - [2126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_attribute_begin, 1), SHIFT(575), - [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [2131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(244), - [2134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(318), - [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [2139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(318), - [2142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(318), - [2145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(318), - [2148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(318), - [2151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(244), - [2154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(318), - [2157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_attribute_begin, 1), SHIFT(628), - [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [2162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(600), - [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [2167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(600), - [2170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(244), - [2173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(318), - [2176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(416), - [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [2181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(416), - [2184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(416), - [2187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(416), - [2190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(416), - [2193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(416), - [2196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(416), - [2199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(318), - [2202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(416), - [2205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(416), - [2208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(416), - [2211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(244), - [2214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(586), - [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [2219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(586), - [2222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(586), - [2225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(431), - [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [2230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(431), - [2233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_attribute_begin, 1), SHIFT(567), - [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [2238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(586), - [2241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(586), - [2244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(586), - [2247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(586), - [2250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(586), - [2253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(586), - [2256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(586), - [2259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(318), - [2262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(318), - [2265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_attribute_begin, 1), SHIFT(560), - [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [2270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(471), - [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [2275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(471), - [2278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(464), - [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [2283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(464), - [2286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(506), - [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [2291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(460), - [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [2296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(460), - [2299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(460), - [2302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(460), - [2305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(460), - [2308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(460), - [2311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(460), - [2314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(506), - [2317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(460), - [2320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(460), - [2323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(460), - [2326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(506), - [2329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(506), - [2332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(506), - [2335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(506), - [2338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(475), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [2343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(475), - [2346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_attribute_begin, 1), SHIFT(555), - [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [2351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(506), - [2354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(506), - [2357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(506), - [2360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(506), - [2363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_attribute_begin, 1), SHIFT(557), - [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [2368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_attribute_begin, 1), SHIFT(540), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [2373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(518), - [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [2378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(518), - [2381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(503), - [2384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(503), - [2387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(503), - [2390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(503), - [2393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(503), - [2396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(503), - [2399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(503), - [2402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(503), - [2405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(503), - [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_description, 3, .dynamic_precedence = 1000), + [1848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_description, 3, .dynamic_precedence = 1000), + [1850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_description, 4, .dynamic_precedence = 1000, .production_id = 6), + [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_description, 4, .dynamic_precedence = 1000, .production_id = 6), + [1854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [1858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(585), + [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [1865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(255), + [1868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [1870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(255), + [1873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(255), + [1876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(255), + [1879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(255), + [1882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(255), + [1885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(255), + [1888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(255), + [1891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(283), + [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [1896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(283), + [1899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(283), + [1902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(283), + [1905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(283), + [1908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(283), + [1911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(283), + [1914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(255), + [1917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(283), + [1920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(283), + [1923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(283), + [1926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(255), + [1929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(297), + [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [1934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(297), + [1937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_attribute_begin, 1), SHIFT(615), + [1940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [1944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(315), + [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [1949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(315), + [1952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(327), + [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [1957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(327), + [1960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(327), + [1963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(327), + [1966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(327), + [1969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(327), + [1972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(327), + [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [1977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(327), + [1980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(327), + [1983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(327), + [1986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(341), + [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [1991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(341), + [1994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_attribute_begin, 1), SHIFT(630), + [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [1999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(244), + [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [2004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_attribute_begin, 1), SHIFT(620), + [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [2009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(426), + [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [2014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(426), + [2017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(426), + [2020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(426), + [2023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(426), + [2026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(426), + [2029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(426), + [2032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(426), + [2035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(426), + [2038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(371), + [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [2043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(371), + [2046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(371), + [2049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(371), + [2052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(371), + [2055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(371), + [2058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(371), + [2061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(458), + [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [2066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(371), + [2069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(371), + [2072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(371), + [2075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(458), + [2078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_attribute_begin, 1), SHIFT(569), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [2083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(385), + [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [2088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(385), + [2091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_attribute_begin, 1), SHIFT(634), + [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [2096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_attribute_begin, 1), SHIFT(553), + [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [2101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(426), + [2104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(362), + [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [2109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(362), + [2112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(362), + [2115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(362), + [2118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(362), + [2121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(362), + [2124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(362), + [2127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(254), + [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [2132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(254), + [2135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(362), + [2138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(415), + [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [2143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(415), + [2146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(415), + [2149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(415), + [2152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(415), + [2155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(415), + [2158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(415), + [2161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(362), + [2164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(415), + [2167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(415), + [2170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(415), + [2173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(319), + [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [2178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(244), + [2181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(319), + [2184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(429), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [2189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(429), + [2192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_attribute_begin, 1), SHIFT(577), + [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [2197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(244), + [2200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_attribute_begin, 1), SHIFT(621), + [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [2205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_attribute_begin, 1), SHIFT(637), + [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [2210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(598), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [2215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(598), + [2218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(585), + [2221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(585), + [2224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(585), + [2227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(585), + [2230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(585), + [2233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(585), + [2236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(585), + [2239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(244), + [2242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(585), + [2245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(585), + [2248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(459), + [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [2253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(459), + [2256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(459), + [2259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(459), + [2262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(459), + [2265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(459), + [2268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(459), + [2271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_attribute_begin, 1), SHIFT(558), + [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [2276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(459), + [2279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(459), + [2282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(459), + [2285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(244), + [2288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(244), + [2291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(520), + [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [2296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(473), + [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [2301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(473), + [2304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_attribute_begin, 1), SHIFT(567), + [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [2309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(244), + [2312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(520), + [2315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(544), + [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [2320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(544), + [2323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(544), + [2326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(544), + [2329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(544), + [2332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(544), + [2335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(544), + [2338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(544), + [2341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(544), + [2344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(544), + [2347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_attribute_begin, 1), SHIFT(559), + [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [2352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(362), + [2355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(244), + [2358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(516), + [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [2363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(502), + [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [2368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(502), + [2371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(502), + [2374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(502), + [2377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(502), + [2380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(502), + [2383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(502), + [2386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(516), + [2389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(502), + [2392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(502), + [2395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(502), + [2398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(244), + [2401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(244), + [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [2740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key, 1), - [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [2768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_label, 1), - [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [2884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline, 1), - [2886] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [2776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key, 1), + [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [2806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_label, 1), + [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [2914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline, 1), + [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [2918] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), }; enum ts_external_scanner_symbol_identifiers { @@ -40112,7 +41018,7 @@ static const bool ts_external_scanner_states[57][EXTERNAL_TOKEN_COUNT] = { }, [5] = { [ts_external_token__verbatim_begin] = true, - [ts_external_token_delete_end] = true, + [ts_external_token_highlighted_end] = true, }, [6] = { [ts_external_token__verbatim_begin] = true, @@ -40120,11 +41026,11 @@ static const bool ts_external_scanner_states[57][EXTERNAL_TOKEN_COUNT] = { }, [7] = { [ts_external_token__verbatim_begin] = true, - [ts_external_token_subscript_end] = true, + [ts_external_token_delete_end] = true, }, [8] = { [ts_external_token__verbatim_begin] = true, - [ts_external_token_highlighted_end] = true, + [ts_external_token_subscript_end] = true, }, [9] = { [ts_external_token__verbatim_begin] = true, @@ -40140,41 +41046,41 @@ static const bool ts_external_scanner_states[57][EXTERNAL_TOKEN_COUNT] = { }, [12] = { [ts_external_token__verbatim_begin] = true, + [ts_external_token__bracketed_text_end] = true, [ts_external_token__non_whitespace_check] = true, }, [13] = { [ts_external_token__verbatim_begin] = true, - [ts_external_token__bracketed_text_end] = true, + [ts_external_token_delete_end] = true, [ts_external_token__non_whitespace_check] = true, }, [14] = { [ts_external_token__verbatim_begin] = true, - [ts_external_token__image_description_end] = true, + [ts_external_token_highlighted_end] = true, [ts_external_token__non_whitespace_check] = true, }, [15] = { [ts_external_token__verbatim_begin] = true, - [ts_external_token_delete_end] = true, + [ts_external_token__image_description_end] = true, [ts_external_token__non_whitespace_check] = true, }, [16] = { [ts_external_token__verbatim_begin] = true, - [ts_external_token_insert_end] = true, + [ts_external_token_strong_end] = true, [ts_external_token__non_whitespace_check] = true, }, [17] = { [ts_external_token__verbatim_begin] = true, - [ts_external_token_emphasis_end] = true, + [ts_external_token_insert_end] = true, [ts_external_token__non_whitespace_check] = true, }, [18] = { [ts_external_token__verbatim_begin] = true, - [ts_external_token_strong_end] = true, + [ts_external_token_emphasis_end] = true, [ts_external_token__non_whitespace_check] = true, }, [19] = { [ts_external_token__verbatim_begin] = true, - [ts_external_token_highlighted_end] = true, [ts_external_token__non_whitespace_check] = true, }, [20] = { @@ -40195,74 +41101,74 @@ static const bool ts_external_scanner_states[57][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__in_fallback] = true, }, [24] = { - [ts_external_token__superscript_mark_begin] = true, + [ts_external_token__emphasis_mark_begin] = true, [ts_external_token__in_fallback] = true, }, [25] = { - [ts_external_token__image_description_mark_begin] = true, + [ts_external_token__superscript_mark_begin] = true, [ts_external_token__in_fallback] = true, }, [26] = { - [ts_external_token__bracketed_text_mark_begin] = true, + [ts_external_token__subscript_mark_begin] = true, [ts_external_token__in_fallback] = true, }, [27] = { - [ts_external_token__emphasis_mark_begin] = true, + [ts_external_token__highlighted_mark_begin] = true, [ts_external_token__in_fallback] = true, }, [28] = { - [ts_external_token__inline_attribute_mark_begin] = true, + [ts_external_token__insert_mark_begin] = true, [ts_external_token__in_fallback] = true, }, [29] = { - [ts_external_token__subscript_mark_begin] = true, + [ts_external_token__delete_mark_begin] = true, [ts_external_token__in_fallback] = true, }, [30] = { - [ts_external_token__highlighted_mark_begin] = true, + [ts_external_token__footnote_marker_mark_begin] = true, [ts_external_token__in_fallback] = true, }, [31] = { - [ts_external_token__insert_mark_begin] = true, + [ts_external_token__image_description_mark_begin] = true, [ts_external_token__in_fallback] = true, }, [32] = { - [ts_external_token__delete_mark_begin] = true, + [ts_external_token__bracketed_text_mark_begin] = true, [ts_external_token__in_fallback] = true, }, [33] = { - [ts_external_token__footnote_marker_mark_begin] = true, + [ts_external_token__inline_attribute_mark_begin] = true, [ts_external_token__in_fallback] = true, }, [34] = { - [ts_external_token__verbatim_content] = true, + [ts_external_token__verbatim_end] = true, }, [35] = { - [ts_external_token_superscript_end] = true, + [ts_external_token_emphasis_end] = true, }, [36] = { - [ts_external_token_emphasis_end] = true, + [ts_external_token_strong_end] = true, }, [37] = { - [ts_external_token_footnote_marker_end] = true, + [ts_external_token_superscript_end] = true, }, [38] = { - [ts_external_token_delete_end] = true, + [ts_external_token_subscript_end] = true, }, [39] = { - [ts_external_token_subscript_end] = true, + [ts_external_token_highlighted_end] = true, }, [40] = { - [ts_external_token__verbatim_end] = true, + [ts_external_token_insert_end] = true, }, [41] = { - [ts_external_token_insert_end] = true, + [ts_external_token_delete_end] = true, }, [42] = { - [ts_external_token_highlighted_end] = true, + [ts_external_token_footnote_marker_end] = true, }, [43] = { - [ts_external_token_strong_end] = true, + [ts_external_token__verbatim_content] = true, }, [44] = { [ts_external_token__inline_attribute_mark_begin] = true, diff --git a/tree-sitter-djot/src/parser.c b/tree-sitter-djot/src/parser.c index 51ad15a..c6c70a5 100644 --- a/tree-sitter-djot/src/parser.c +++ b/tree-sitter-djot/src/parser.c @@ -2656,9 +2656,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { switch (state) { case 0: if (eof) ADVANCE(20); - if (!eof && (lookahead == 0)) ADVANCE(32); + if ((!eof && lookahead == 00)) ADVANCE(32); if (lookahead == '\t') ADVANCE(50); - if (lookahead == '\r') SKIP(18) + if (lookahead == '\r') SKIP(18); if (lookahead == ' ') ADVANCE(28); if (lookahead == '"') ADVANCE(45); if (lookahead == '#') ADVANCE(16); @@ -2680,7 +2680,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(48); END_STATE(); case 1: - if (!eof && (lookahead == 0)) ADVANCE(32); + if ((!eof && lookahead == 00)) ADVANCE(32); if (lookahead == '\r') ADVANCE(52); if (lookahead == '[') ADVANCE(21); if (lookahead == '{') ADVANCE(41); @@ -2689,38 +2689,45 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\n') ADVANCE(51); END_STATE(); case 2: - if (lookahead == '\n') ADVANCE(14); - if (lookahead == '\r') ADVANCE(53); - if (lookahead == '-') ADVANCE(30); - if (lookahead == ':') ADVANCE(57); - if (lookahead == '[') ADVANCE(21); - if (lookahead == '{') ADVANCE(41); - if (lookahead == '|') ADVANCE(29); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(58); + ADVANCE_MAP( + '\n', 14, + '\r', 53, + '-', 30, + ':', 57, + '[', 21, + '{', 41, + '|', 29, + '\t', 58, + 0x0b, 58, + '\f', 58, + ' ', 58, + ); if (lookahead != 0) ADVANCE(51); END_STATE(); case 3: - if (lookahead == '\r') ADVANCE(55); - if (lookahead == '#') ADVANCE(60); - if (lookahead == '%') ADVANCE(64); - if (lookahead == '.') ADVANCE(43); - if (lookahead == '[') ADVANCE(21); - if (lookahead == '{') ADVANCE(41); - if (lookahead == '|') ADVANCE(29); - if (lookahead == '}') ADVANCE(42); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(50); + ADVANCE_MAP( + '\r', 55, + '#', 60, + '%', 64, + '.', 43, + '[', 21, + '{', 41, + '|', 29, + '}', 42, + '\t', 50, + ' ', 50, + ); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(59); if (lookahead != 0 && + lookahead != '\t' && lookahead != '\n') ADVANCE(51); END_STATE(); case 4: - if (lookahead == '\r') SKIP(5) + if (lookahead == '\r') SKIP(5); if (lookahead == '#') ADVANCE(16); if (lookahead == '%') ADVANCE(64); if (lookahead == '.') ADVANCE(43); @@ -2735,7 +2742,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(63); END_STATE(); case 5: - if (lookahead == '\r') SKIP(5) + if (lookahead == '\r') SKIP(5); if (lookahead == '#') ADVANCE(16); if (lookahead == '%') ADVANCE(64); if (lookahead == '.') ADVANCE(43); @@ -2786,7 +2793,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(48); END_STATE(); case 10: - if (lookahead == '\r') SKIP(10) + if (lookahead == '\r') SKIP(10); if (lookahead == ' ') ADVANCE(27); if (lookahead == 'X') ADVANCE(24); if (lookahead == 'x') ADVANCE(22); @@ -2798,9 +2805,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '"') ADVANCE(47); END_STATE(); case 12: - if (lookahead == '\r') SKIP(12) + if (lookahead == '\r') SKIP(12); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && + (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ') ADVANCE(40); END_STATE(); case 13: @@ -2829,8 +2836,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 18: if (eof) ADVANCE(20); - if (!eof && (lookahead == 0)) ADVANCE(32); - if (lookahead == '\r') SKIP(18) + if ((!eof && lookahead == 00)) ADVANCE(32); + if (lookahead == '\r') SKIP(18); if (lookahead == ' ') ADVANCE(27); if (lookahead == '"') ADVANCE(45); if (lookahead == '#') ADVANCE(16); @@ -3017,7 +3024,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 52: ACCEPT_TOKEN(aux_sym__inline_token1); - if (!eof && (lookahead == 0)) ADVANCE(32); + if ((!eof && lookahead == 00)) ADVANCE(32); if (lookahead == '\r') ADVANCE(52); if (lookahead == '[') ADVANCE(21); if (lookahead == '{') ADVANCE(41); @@ -3027,15 +3034,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 53: ACCEPT_TOKEN(aux_sym__inline_token1); - if (lookahead == '\n') ADVANCE(14); - if (lookahead == '\r') ADVANCE(53); - if (lookahead == '-') ADVANCE(30); - if (lookahead == ':') ADVANCE(57); - if (lookahead == '[') ADVANCE(21); - if (lookahead == '{') ADVANCE(41); - if (lookahead == '|') ADVANCE(29); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(58); + ADVANCE_MAP( + '\n', 14, + '\r', 53, + '-', 30, + ':', 57, + '[', 21, + '{', 41, + '|', 29, + '\t', 58, + 0x0b, 58, + '\f', 58, + ' ', 58, + ); if (lookahead != 0) ADVANCE(51); END_STATE(); case 54: @@ -3049,14 +3060,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 55: ACCEPT_TOKEN(aux_sym__inline_token1); - if (lookahead == '\r') ADVANCE(55); - if (lookahead == '#') ADVANCE(60); - if (lookahead == '%') ADVANCE(64); - if (lookahead == '.') ADVANCE(43); - if (lookahead == '[') ADVANCE(21); - if (lookahead == '{') ADVANCE(41); - if (lookahead == '|') ADVANCE(29); - if (lookahead == '}') ADVANCE(42); + ADVANCE_MAP( + '\r', 55, + '#', 60, + '%', 64, + '.', 43, + '[', 21, + '{', 41, + '|', 29, + '}', 42, + ); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -27352,7 +27365,7 @@ static const uint32_t ts_small_parse_table_map[] = { static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 0), + [3] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 0, 0, 0), [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), @@ -27386,49 +27399,49 @@ static const TSParseActionEntry ts_parse_actions[] = { [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [71] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 1), - [73] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(324), - [76] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(309), - [79] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(272), - [82] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(366), - [85] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), - [87] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(146), - [90] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(358), - [93] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(753), - [96] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1039), - [99] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(39), - [102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(46), - [105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(45), - [108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(677), - [111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(297), - [114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(36), - [117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(42), - [120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(30), - [123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(44), - [126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(47), - [129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(51), - [132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(29), - [135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(40), - [138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(37), - [141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(35), - [144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(34), - [147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(33), - [150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(32), - [153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(31), - [156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(41), - [159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(56), - [162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(341), - [165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(144), - [168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(717), - [171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(311), - [174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(294), - [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(273), - [180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(156), - [183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(995), - [186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(55), - [189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(203), - [192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(767), - [195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 2), + [71] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 1, 0, 0), + [73] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(324), + [76] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(309), + [79] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(272), + [82] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(366), + [85] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), + [87] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(146), + [90] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(358), + [93] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(753), + [96] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(1039), + [99] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(39), + [102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(46), + [105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(45), + [108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(677), + [111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(297), + [114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(36), + [117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(42), + [120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(30), + [123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(44), + [126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(47), + [129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(51), + [132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(29), + [135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(40), + [138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(37), + [141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(35), + [144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(34), + [147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(33), + [150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(32), + [153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(31), + [156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(41), + [159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(56), + [162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(341), + [165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(144), + [168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(717), + [171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(311), + [174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(294), + [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(273), + [180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(156), + [183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(995), + [186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(55), + [189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(203), + [192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(767), + [195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 2, 0, 0), [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), @@ -27451,43 +27464,43 @@ static const TSParseActionEntry ts_parse_actions[] = { [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(324), - [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(309), - [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(272), - [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(366), - [253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), - [255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(226), - [258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(358), - [261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(753), - [264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(1039), - [267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(39), - [270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(46), - [273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(45), - [276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(677), - [279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(297), - [282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(36), - [285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(42), - [288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(30), - [291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(44), - [294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(47), - [297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(51), - [300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(29), - [303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(40), - [306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(37), - [309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(35), - [312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(34), - [315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(33), - [318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(32), - [321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(31), - [324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(41), - [327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(56), - [330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(61), - [333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(144), - [336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(717), + [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(324), + [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(309), + [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(272), + [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(366), + [253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), + [255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(226), + [258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(358), + [261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(753), + [264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(1039), + [267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(39), + [270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(46), + [273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(45), + [276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(677), + [279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(297), + [282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(36), + [285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(42), + [288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(30), + [291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(44), + [294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(47), + [297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(51), + [300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(29), + [303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(40), + [306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(37), + [309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(35), + [312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(34), + [315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(33), + [318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(32), + [321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(31), + [324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(41), + [327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(56), + [330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(61), + [333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(144), + [336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(717), [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_footnote_content, 1), + [345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_footnote_content, 1, 0, 0), [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), @@ -27497,16 +27510,16 @@ static const TSParseActionEntry ts_parse_actions[] = { [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(326), - [368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(302), - [371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(270), - [374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(265), - [377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(349), - [380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(1046), - [383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(60), - [386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(58), - [389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(233), - [392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(713), + [365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(326), + [368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(302), + [371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(270), + [374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(265), + [377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(349), + [380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(1046), + [383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(60), + [386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(58), + [389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(233), + [392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(713), [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), @@ -27537,8 +27550,8 @@ static const TSParseActionEntry ts_parse_actions[] = { [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 1, .production_id = 1), - [457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 1, .production_id = 1), + [455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 1, 0, 1), + [457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 1, 0, 1), [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), @@ -27550,10 +27563,10 @@ static const TSParseActionEntry ts_parse_actions[] = { [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 1), - [483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 1), SHIFT_REPEAT(341), - [486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 1), - [488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 1), + [481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 1, 0, 0), + [483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 1, 0, 0), SHIFT_REPEAT(341), + [486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 1, 0, 0), + [488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 1, 0, 0), [490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), @@ -27564,73 +27577,73 @@ static const TSParseActionEntry ts_parse_actions[] = { [504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2), - [512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_table_repeat1, 2), - [514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(360), - [517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(754), - [520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(359), - [523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(357), - [526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_content, 1), - [528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_content, 1), - [530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__table_content, 1), SHIFT(948), - [533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__table_content, 1), SHIFT(754), - [536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__table_content, 1), SHIFT(1011), - [539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__table_content, 1), SHIFT(990), - [542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 2), - [544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 2), - [546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 5, .production_id = 9), - [548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 5, .production_id = 9), + [510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), + [512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), + [514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(360), + [517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(754), + [520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(359), + [523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(357), + [526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_content, 1, 0, 0), + [528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_content, 1, 0, 0), + [530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__table_content, 1, 0, 0), SHIFT(948), + [533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__table_content, 1, 0, 0), SHIFT(754), + [536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__table_content, 1, 0, 0), SHIFT(1011), + [539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__table_content, 1, 0, 0), SHIFT(990), + [542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 2, 0, 0), + [544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 2, 0, 0), + [546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 5, 0, 9), + [548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 5, 0, 9), [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 6), - [554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 6), + [552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 6, 0, 0), + [554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 6, 0, 0), [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_separator, 5), - [560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_separator, 5), - [562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 5, .production_id = 10), - [564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 5, .production_id = 10), + [558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_separator, 5, 0, 0), + [560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_separator, 5, 0, 0), + [562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 5, 0, 10), + [564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 5, 0, 10), [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 5), - [570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 5), + [568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 5, 0, 0), + [570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 5, 0, 0), [572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 4, .production_id = 9), - [576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 4, .production_id = 9), + [574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 4, 0, 9), + [576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 4, 0, 9), [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 4), - [582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 4), + [580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 4, 0, 0), + [582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 4, 0, 0), [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_row, 4), - [588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_row, 4), - [590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_separator, 4), - [592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_separator, 4), - [594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 4), - [596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 4), + [586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_row, 4, 0, 0), + [588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_row, 4, 0, 0), + [590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_separator, 4, 0, 0), + [592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_separator, 4, 0, 0), + [594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 4, 0, 0), + [596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 4, 0, 0), [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 3), - [602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 3), + [600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 3, 0, 0), + [602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 3, 0, 0), [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heading, 3), + [606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heading, 3, 0, 0), [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heading, 3), - [612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_or_two_newlines, 1), + [610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heading, 3, 0, 0), + [612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_or_two_newlines, 1, 0, 0), [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_or_two_newlines, 1), - [618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_content, 2, .production_id = 2), - [620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_content, 2, .production_id = 2), - [622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 6, .production_id = 12), - [624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 6, .production_id = 12), + [616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_or_two_newlines, 1, 0, 0), + [618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_content, 2, 0, 2), + [620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_content, 2, 0, 2), + [622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 6, 0, 12), + [624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 6, 0, 12), [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_separator, 6), - [630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_separator, 6), - [632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_row, 6), - [634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_row, 6), + [628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_separator, 6, 0, 0), + [630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_separator, 6, 0, 0), + [632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_row, 6, 0, 0), + [634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_row, 6, 0, 0), [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_row, 5), - [650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_row, 5), + [648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_row, 5, 0, 0), + [650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_row, 5, 0, 0), [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), @@ -27646,113 +27659,113 @@ static const TSParseActionEntry ts_parse_actions[] = { [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_attribute, 3), - [684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_attribute, 3), - [686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 8, .production_id = 14), - [688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 8, .production_id = 14), - [690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 8), - [692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 8), - [694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 7, .production_id = 9), - [696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 7, .production_id = 9), - [698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_dash, 2), - [700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_dash, 2), - [702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_star, 2), - [704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_star, 2), - [706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_plus, 2), - [708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_plus, 2), - [710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frontmatter, 6), - [712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_frontmatter, 6), - [714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 7, .production_id = 13), - [716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 7, .production_id = 13), - [718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 1), - [720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 1), - [722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_task, 2), - [724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_task, 2), - [726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_thematic_break, 1), - [728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_thematic_break, 1), - [730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_definition, 2), - [732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_definition, 2), - [734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 1), - [736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 1), - [738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_decimal_period, 2), - [740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_decimal_period, 2), - [742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 7), - [744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 7), - [746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_decimal_paren, 2), - [748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_decimal_paren, 2), - [750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 5), - [752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 5), - [754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_decimal_parens, 2), - [756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_decimal_parens, 2), - [758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frontmatter, 7), - [760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_frontmatter, 7), - [762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_alpha_period, 2), - [764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_alpha_period, 2), - [766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 2), - [768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 2), - [770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_alpha_paren, 2), - [772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_alpha_paren, 2), - [774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_alpha_parens, 2), - [776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_alpha_parens, 2), - [778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_footnote, 5), - [780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_footnote, 5), - [782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_alpha_period, 2), - [784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_alpha_period, 2), - [786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_or_two_newlines, 2), - [788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_or_two_newlines, 2), - [790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_alpha_paren, 2), - [792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_alpha_paren, 2), - [794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_alpha_parens, 2), - [796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_alpha_parens, 2), - [798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 6, .production_id = 9), - [800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 6, .production_id = 9), - [802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_roman_period, 2), - [804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_roman_period, 2), - [806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 6), - [808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 6), - [810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_roman_paren, 2), - [812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_roman_paren, 2), - [814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_roman_parens, 2), - [816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_roman_parens, 2), - [818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__paragraph, 2, .production_id = 3), - [820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph, 2, .production_id = 3), - [822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_roman_period, 2), - [824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_roman_period, 2), - [826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_roman_paren, 2), - [828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_roman_paren, 2), - [830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_roman_parens, 2), - [832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_roman_parens, 2), - [834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 8), - [836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 8), - [838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_caption, 3, .production_id = 7), - [840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_caption, 3, .production_id = 7), - [842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_with_heading, 2), - [844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_with_heading, 2), - [846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_attribute, 4, .production_id = 8), - [848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_attribute, 4, .production_id = 8), - [850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_quote, 3), - [852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_quote, 3), - [854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 3), - [856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 3), - [858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heading, 4), - [860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heading, 4), - [862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 3, .production_id = 5), - [864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 3, .production_id = 5), - [866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 1), - [868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 1), - [870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_task, 3), - [872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_task, 3), - [874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), - [876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), - [878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(268), - [881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), + [682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_attribute, 3, 0, 0), + [684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_attribute, 3, 0, 0), + [686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 8, 0, 14), + [688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 8, 0, 14), + [690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 8, 0, 0), + [692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 8, 0, 0), + [694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 7, 0, 9), + [696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 7, 0, 9), + [698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_dash, 2, 0, 0), + [700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_dash, 2, 0, 0), + [702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_star, 2, 0, 0), + [704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_star, 2, 0, 0), + [706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_plus, 2, 0, 0), + [708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_plus, 2, 0, 0), + [710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frontmatter, 6, 0, 0), + [712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_frontmatter, 6, 0, 0), + [714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 7, 0, 13), + [716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 7, 0, 13), + [718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 1, 0, 0), + [720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 1, 0, 0), + [722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_task, 2, 0, 0), + [724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_task, 2, 0, 0), + [726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_thematic_break, 1, 0, 0), + [728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_thematic_break, 1, 0, 0), + [730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_definition, 2, 0, 0), + [732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_definition, 2, 0, 0), + [734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 1, 0, 0), + [736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 1, 0, 0), + [738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_decimal_period, 2, 0, 0), + [740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_decimal_period, 2, 0, 0), + [742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 7, 0, 0), + [744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 7, 0, 0), + [746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_decimal_paren, 2, 0, 0), + [748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_decimal_paren, 2, 0, 0), + [750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 5, 0, 0), + [752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 5, 0, 0), + [754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_decimal_parens, 2, 0, 0), + [756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_decimal_parens, 2, 0, 0), + [758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frontmatter, 7, 0, 0), + [760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_frontmatter, 7, 0, 0), + [762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_alpha_period, 2, 0, 0), + [764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_alpha_period, 2, 0, 0), + [766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 2, 0, 0), + [768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 2, 0, 0), + [770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_alpha_paren, 2, 0, 0), + [772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_alpha_paren, 2, 0, 0), + [774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_alpha_parens, 2, 0, 0), + [776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_alpha_parens, 2, 0, 0), + [778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_footnote, 5, 0, 0), + [780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_footnote, 5, 0, 0), + [782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_alpha_period, 2, 0, 0), + [784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_alpha_period, 2, 0, 0), + [786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_or_two_newlines, 2, 0, 0), + [788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_or_two_newlines, 2, 0, 0), + [790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_alpha_paren, 2, 0, 0), + [792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_alpha_paren, 2, 0, 0), + [794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_alpha_parens, 2, 0, 0), + [796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_alpha_parens, 2, 0, 0), + [798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 6, 0, 9), + [800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 6, 0, 9), + [802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_roman_period, 2, 0, 0), + [804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_roman_period, 2, 0, 0), + [806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 6, 0, 0), + [808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 6, 0, 0), + [810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_roman_paren, 2, 0, 0), + [812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_roman_paren, 2, 0, 0), + [814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_roman_parens, 2, 0, 0), + [816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_roman_parens, 2, 0, 0), + [818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__paragraph, 2, 0, 3), + [820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph, 2, 0, 3), + [822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_roman_period, 2, 0, 0), + [824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_roman_period, 2, 0, 0), + [826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_roman_paren, 2, 0, 0), + [828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_roman_paren, 2, 0, 0), + [830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_roman_parens, 2, 0, 0), + [832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_roman_parens, 2, 0, 0), + [834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 8, 0, 0), + [836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 8, 0, 0), + [838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_caption, 3, 0, 7), + [840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_caption, 3, 0, 7), + [842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_with_heading, 2, 0, 0), + [844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_with_heading, 2, 0, 0), + [846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_attribute, 4, 0, 8), + [848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_attribute, 4, 0, 8), + [850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_quote, 3, 0, 0), + [852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_quote, 3, 0, 0), + [854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 3, 0, 0), + [856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 3, 0, 0), + [858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heading, 4, 0, 0), + [860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heading, 4, 0, 0), + [862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 3, 0, 5), + [864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 3, 0, 5), + [866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 1, 0, 0), + [868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 1, 0, 0), + [870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_task, 3, 0, 0), + [872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_task, 3, 0, 0), + [874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), + [876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), + [878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(268), + [881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), [887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), [891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), + [895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), [899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), @@ -27784,21 +27797,21 @@ static const TSParseActionEntry ts_parse_actions[] = { [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(316), + [959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(316), [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(410), + [966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), SHIFT(410), [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 2), SHIFT_REPEAT(388), - [978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 2), - [980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_caption_repeat1, 2), + [975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 2, 0, 0), SHIFT_REPEAT(388), + [978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 2, 0, 0), + [980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_caption_repeat1, 2, 0, 0), [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(334), + [990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(334), [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), @@ -27806,26 +27819,26 @@ static const TSParseActionEntry ts_parse_actions[] = { [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [1007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_quote_prefix, 1), - [1009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_quote_prefix, 1), + [1007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_quote_prefix, 1, 0, 0), + [1009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_quote_prefix, 1, 0, 0), [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), - [1019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(375), + [1019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), SHIFT(375), [1022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), [1024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), [1026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), [1028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), [1030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [1034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(343), - [1037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2), - [1039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2), SHIFT_REPEAT(849), - [1042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2), SHIFT_REPEAT(468), - [1045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2), SHIFT_REPEAT(916), - [1048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2), SHIFT_REPEAT(514), - [1051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(341), + [1034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(343), + [1037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), + [1039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(849), + [1042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(468), + [1045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(916), + [1048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(514), + [1051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(341), [1054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), [1056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), [1058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), @@ -27844,11 +27857,11 @@ static const TSParseActionEntry ts_parse_actions[] = { [1084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), [1086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [1090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(362), - [1093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), - [1095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__table_content, 1), SHIFT(946), + [1090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(362), + [1093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), + [1095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__table_content, 1, 0, 0), SHIFT(946), [1098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), - [1100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline, 1), + [1100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline, 1, 0, 0), [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), [1104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), [1106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), @@ -27860,25 +27873,25 @@ static const TSParseActionEntry ts_parse_actions[] = { [1118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), [1120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), [1122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), - [1124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline, 1), - [1126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__table_content, 1), SHIFT(968), + [1124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline, 1, 0, 0), + [1126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__table_content, 1, 0, 0), SHIFT(968), [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [1133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(380), - [1136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), + [1133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(380), + [1136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), [1138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), [1140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), [1142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), [1144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [1146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(385), + [1146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(385), [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [1159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 2), - [1161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 2), SHIFT_REPEAT(677), - [1164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 2), SHIFT_REPEAT(874), + [1159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 2, 0, 0), + [1161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 2, 0, 0), SHIFT_REPEAT(677), + [1164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 2, 0, 0), SHIFT_REPEAT(874), [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), @@ -27887,39 +27900,39 @@ static const TSParseActionEntry ts_parse_actions[] = { [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [1183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 2), - [1185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 2), SHIFT_REPEAT(39), - [1188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 2), SHIFT_REPEAT(831), - [1191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2), - [1193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2), SHIFT_REPEAT(46), - [1196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2), SHIFT_REPEAT(882), + [1183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 2, 0, 0), + [1185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 2, 0, 0), SHIFT_REPEAT(39), + [1188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 2, 0, 0), SHIFT_REPEAT(831), + [1191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), + [1193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), SHIFT_REPEAT(46), + [1196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), SHIFT_REPEAT(882), [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [1207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2), - [1209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2), SHIFT_REPEAT(45), - [1212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2), SHIFT_REPEAT(711), - [1215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_line, 2), - [1217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_line, 2), - [1219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(465), + [1207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), + [1209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), SHIFT_REPEAT(45), + [1212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), SHIFT_REPEAT(711), + [1215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_line, 2, 0, 0), + [1217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_line, 2, 0, 0), + [1219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(465), [1222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code, 1), + [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code, 1, 0, 0), [1226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), [1228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [1230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(411), + [1230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(411), [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [1237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 1), - [1239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_caption_repeat1, 1), + [1237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 1, 0, 0), + [1239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_caption_repeat1, 1, 0, 0), [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [1251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_repeat1, 2), SHIFT_REPEAT(1053), - [1254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_code_repeat1, 2), - [1256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_repeat1, 2), SHIFT_REPEAT(847), + [1251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_repeat1, 2, 0, 0), SHIFT_REPEAT(1053), + [1254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_code_repeat1, 2, 0, 0), + [1256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_repeat1, 2, 0, 0), SHIFT_REPEAT(847), [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), @@ -27944,72 +27957,72 @@ static const TSParseActionEntry ts_parse_actions[] = { [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [1307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_no_newline, 2), + [1307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_no_newline, 2, 0, 0), [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [1313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, .production_id = 4), + [1313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, 0, 4), [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [1321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 3), + [1321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 3, 0, 0), [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [1335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 2), SHIFT_REPEAT(52), - [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 2), - [1340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 2), SHIFT_REPEAT(867), + [1335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(52), + [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 2, 0, 0), + [1340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(867), [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [1349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 1), - [1351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_name, 1), - [1353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_no_newline, 3, .production_id = 7), + [1349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 1, 0, 0), + [1351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_name, 1, 0, 0), + [1353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_no_newline, 3, 0, 7), [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [1357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1), - [1359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value, 3), + [1357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1, 0, 0), + [1359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value, 3, 0, 0), [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [1367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 2), - [1369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 2), SHIFT_REPEAT(268), - [1372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_quote_content, 1), + [1367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 2, 0, 0), + [1369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(268), + [1372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_quote_content, 1, 0, 0), [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [1376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_quote_content, 2), + [1376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_quote_content, 2, 0, 0), [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_period_repeat1, 2), - [1384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_decimal_period_repeat1, 2), SHIFT_REPEAT(36), - [1387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_paren_repeat1, 2), - [1389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_decimal_paren_repeat1, 2), SHIFT_REPEAT(51), - [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_parens_repeat1, 2), - [1394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_decimal_parens_repeat1, 2), SHIFT_REPEAT(34), - [1397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_period_repeat1, 2), - [1399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_period_repeat1, 2), SHIFT_REPEAT(42), - [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_paren_repeat1, 2), - [1404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_paren_repeat1, 2), SHIFT_REPEAT(29), - [1407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_parens_repeat1, 2), - [1409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_parens_repeat1, 2), SHIFT_REPEAT(33), - [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_period_repeat1, 2), - [1414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_period_repeat1, 2), SHIFT_REPEAT(30), - [1417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_paren_repeat1, 2), - [1419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_paren_repeat1, 2), SHIFT_REPEAT(40), - [1422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_parens_repeat1, 2), - [1424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_parens_repeat1, 2), SHIFT_REPEAT(32), - [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_period_repeat1, 2), - [1429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_period_repeat1, 2), SHIFT_REPEAT(44), - [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_paren_repeat1, 2), - [1434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_paren_repeat1, 2), SHIFT_REPEAT(37), - [1437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_parens_repeat1, 2), - [1439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_parens_repeat1, 2), SHIFT_REPEAT(31), - [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_period_repeat1, 2), - [1444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_period_repeat1, 2), SHIFT_REPEAT(47), - [1447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_paren_repeat1, 2), - [1449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_paren_repeat1, 2), SHIFT_REPEAT(35), - [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_parens_repeat1, 2), - [1454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_parens_repeat1, 2), SHIFT_REPEAT(41), + [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_period_repeat1, 2, 0, 0), + [1384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_decimal_period_repeat1, 2, 0, 0), SHIFT_REPEAT(36), + [1387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_paren_repeat1, 2, 0, 0), + [1389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_decimal_paren_repeat1, 2, 0, 0), SHIFT_REPEAT(51), + [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_parens_repeat1, 2, 0, 0), + [1394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_decimal_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(34), + [1397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_period_repeat1, 2, 0, 0), + [1399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_period_repeat1, 2, 0, 0), SHIFT_REPEAT(42), + [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_paren_repeat1, 2, 0, 0), + [1404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_paren_repeat1, 2, 0, 0), SHIFT_REPEAT(29), + [1407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_parens_repeat1, 2, 0, 0), + [1409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(33), + [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_period_repeat1, 2, 0, 0), + [1414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_period_repeat1, 2, 0, 0), SHIFT_REPEAT(30), + [1417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_paren_repeat1, 2, 0, 0), + [1419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_paren_repeat1, 2, 0, 0), SHIFT_REPEAT(40), + [1422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_parens_repeat1, 2, 0, 0), + [1424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(32), + [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_period_repeat1, 2, 0, 0), + [1429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_period_repeat1, 2, 0, 0), SHIFT_REPEAT(44), + [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_paren_repeat1, 2, 0, 0), + [1434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_paren_repeat1, 2, 0, 0), SHIFT_REPEAT(37), + [1437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_parens_repeat1, 2, 0, 0), + [1439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(31), + [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_period_repeat1, 2, 0, 0), + [1444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_period_repeat1, 2, 0, 0), SHIFT_REPEAT(47), + [1447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_paren_repeat1, 2, 0, 0), + [1449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_paren_repeat1, 2, 0, 0), SHIFT_REPEAT(35), + [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_parens_repeat1, 2, 0, 0), + [1454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(41), [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), @@ -28022,7 +28035,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [1481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frontmatter_content, 1), + [1481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frontmatter_content, 1, 0, 0), [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), @@ -28040,10 +28053,10 @@ static const TSParseActionEntry ts_parse_actions[] = { [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [1517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__comment_no_newline_repeat1, 2), SHIFT_REPEAT(670), - [1520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_no_newline_repeat1, 2), - [1522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_frontmatter_content_repeat1, 2), SHIFT_REPEAT(921), - [1525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_frontmatter_content_repeat1, 2), + [1517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__comment_no_newline_repeat1, 2, 0, 0), SHIFT_REPEAT(670), + [1520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_no_newline_repeat1, 2, 0, 0), + [1522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_frontmatter_content_repeat1, 2, 0, 0), SHIFT_REPEAT(921), + [1525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_frontmatter_content_repeat1, 2, 0, 0), [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), @@ -28116,53 +28129,53 @@ static const TSParseActionEntry ts_parse_actions[] = { [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [1671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_definition_repeat1, 2), - [1673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_definition_repeat1, 2), SHIFT_REPEAT(297), + [1671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_definition_repeat1, 2, 0, 0), + [1673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(297), [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), [1678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [1682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dash, 3), + [1682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dash, 3, 0, 0), [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [1686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_item_content, 3), - [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__heading_content_repeat1, 2), - [1690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__heading_content_repeat1, 2), SHIFT_REPEAT(364), - [1693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(882), + [1686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_item_content, 3, 0, 0), + [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__heading_content_repeat1, 2, 0, 0), + [1690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__heading_content_repeat1, 2, 0, 0), SHIFT_REPEAT(364), + [1693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(882), [1696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [1700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(874), - [1703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_item_content, 2), + [1700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(874), + [1703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_item_content, 2, 0, 0), [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [1707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(754), - [1710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(867), - [1713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__paragraph_content_repeat1, 2), - [1715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__paragraph_content_repeat1, 2), SHIFT_REPEAT(318), + [1707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(754), + [1710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(867), + [1713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__paragraph_content_repeat1, 2, 0, 0), + [1715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__paragraph_content_repeat1, 2, 0, 0), SHIFT_REPEAT(318), [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [1722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_task, 3), - [1724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 3), - [1726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 3), + [1722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_task, 3, 0, 0), + [1724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 3, 0, 0), + [1726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 3, 0, 0), [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line, 2), - [1732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(847), - [1735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_task, 2), + [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line, 2, 0, 0), + [1732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(847), + [1735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_task, 2, 0, 0), [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [1743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_no_newline_repeat1, 1), - [1745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(831), + [1743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_no_newline_repeat1, 1, 0, 0), + [1745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(831), [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [1750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 3), + [1750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 3, 0, 0), [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [1754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heading_content, 2), + [1754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heading_content, 2, 0, 0), [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [1764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 2), - [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 2), - [1768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dash, 2), - [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heading_content, 1), - [1772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(711), + [1764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 2, 0, 0), + [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 2, 0, 0), + [1768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dash, 2, 0, 0), + [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heading_content, 1, 0, 0), + [1772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(711), [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), @@ -28170,15 +28183,15 @@ static const TSParseActionEntry ts_parse_actions[] = { [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [1789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_alpha_parens, 2), + [1789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_alpha_parens, 2, 0, 0), [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [1793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_alpha_parens, 2), + [1793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_alpha_parens, 2, 0, 0), [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [1799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_roman_parens, 2), + [1799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_roman_parens, 2, 0, 0), [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [1805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_roman_parens, 2), + [1805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_roman_parens, 2, 0, 0), [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), @@ -28186,16 +28199,16 @@ static const TSParseActionEntry ts_parse_actions[] = { [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [1821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_content, 2), + [1821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_content, 2, 0, 0), [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [1831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div_marker_begin, 1), + [1831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div_marker_begin, 1, 0, 0), [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [1839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_roman_paren, 2), + [1839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_roman_paren, 2, 0, 0), [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), @@ -28207,7 +28220,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [1863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_definition, 5, .production_id = 11), + [1863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_definition, 5, 0, 11), [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), @@ -28219,21 +28232,21 @@ static const TSParseActionEntry ts_parse_actions[] = { [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [1887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_roman_paren, 2), + [1887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_roman_paren, 2, 0, 0), [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_decimal_period, 2), - [1893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_alpha_period, 2), - [1895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_alpha_period, 2), - [1897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_roman_period, 2), - [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_roman_period, 2), + [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_decimal_period, 2, 0, 0), + [1893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_alpha_period, 2, 0, 0), + [1895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_alpha_period, 2, 0, 0), + [1897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_roman_period, 2, 0, 0), + [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_roman_period, 2, 0, 0), [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [1913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__paragraph_content_repeat1, 3), - [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_content, 4), + [1913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__paragraph_content_repeat1, 3, 0, 0), + [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_content, 4, 0, 0), [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), @@ -28241,24 +28254,24 @@ static const TSParseActionEntry ts_parse_actions[] = { [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_content, 3), + [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_content, 3, 0, 0), [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [1937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_decimal_paren, 2), - [1939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_row_repeat1, 2), SHIFT_REPEAT(365), - [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_alpha_paren, 2), - [1944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_alpha_paren, 2), - [1946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_separator_repeat1, 2), SHIFT_REPEAT(988), + [1937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_decimal_paren, 2, 0, 0), + [1939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(365), + [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_alpha_paren, 2, 0, 0), + [1944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_alpha_paren, 2, 0, 0), + [1946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_separator_repeat1, 2, 0, 0), SHIFT_REPEAT(988), [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [1953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_decimal_parens, 2), + [1953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_decimal_parens, 2, 0, 0), [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [1957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_definition, 4), + [1957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_definition, 4, 0, 0), [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [1963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unchecked, 3), + [1963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unchecked, 3, 0, 0), [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [1967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_checked, 3), + [1967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_checked, 3, 0, 0), [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), @@ -28273,16 +28286,16 @@ static const TSParseActionEntry ts_parse_actions[] = { [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [1997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block_info, 2, .production_id = 6), + [1997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block_info, 2, 0, 6), [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key, 1), - [2005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_separator_repeat1, 2), + [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key, 1, 0, 0), + [2005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_separator_repeat1, 2, 0, 0), [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_row_repeat1, 2), + [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_row_repeat1, 2, 0, 0), [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), @@ -28298,7 +28311,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [2047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_cell, 1), + [2047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_cell, 1, 0, 0), [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), @@ -28337,14 +28350,14 @@ static const TSParseActionEntry ts_parse_actions[] = { [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [2125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div_marker_begin, 3), + [2125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div_marker_begin, 3, 0, 0), [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [2139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_label, 1), + [2139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_label, 1, 0, 0), [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), @@ -28365,7 +28378,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [2181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_label, 1), + [2181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_label, 1, 0, 0), [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), @@ -29412,13 +29425,15 @@ bool tree_sitter_djot_external_scanner_scan(void *, TSLexer *, const bool *); unsigned tree_sitter_djot_external_scanner_serialize(void *, char *); void tree_sitter_djot_external_scanner_deserialize(void *, const char *, unsigned); -#ifdef _WIN32 +#ifdef TREE_SITTER_HIDE_SYMBOLS +#define TS_PUBLIC +#elif defined(_WIN32) #define TS_PUBLIC __declspec(dllexport) #else #define TS_PUBLIC __attribute__((visibility("default"))) #endif -TS_PUBLIC const TSLanguage *tree_sitter_djot() { +TS_PUBLIC const TSLanguage *tree_sitter_djot(void) { static const TSLanguage language = { .version = LANGUAGE_VERSION, .symbol_count = SYMBOL_COUNT, diff --git a/tree-sitter-djot/src/tree_sitter/array.h b/tree-sitter-djot/src/tree_sitter/array.h index 186ba67..15a3b23 100644 --- a/tree-sitter-djot/src/tree_sitter/array.h +++ b/tree-sitter-djot/src/tree_sitter/array.h @@ -66,9 +66,12 @@ extern "C" { /// Increase the array's size by `count` elements. /// New elements are zero-initialized. #define array_grow_by(self, count) \ - (_array__grow((Array *)(self), count, array_elem_size(self)), \ - memset((self)->contents + (self)->size, 0, (count) * array_elem_size(self)), \ - (self)->size += (count)) + do { \ + if ((count) == 0) break; \ + _array__grow((Array *)(self), count, array_elem_size(self)); \ + memset((self)->contents + (self)->size, 0, (count) * array_elem_size(self)); \ + (self)->size += (count); \ + } while (0) /// Append all elements from one array to the end of another. #define array_push_all(self, other) \ diff --git a/tree-sitter-djot/src/tree_sitter/parser.h b/tree-sitter-djot/src/tree_sitter/parser.h index 17b4fde..17f0e94 100644 --- a/tree-sitter-djot/src/tree_sitter/parser.h +++ b/tree-sitter-djot/src/tree_sitter/parser.h @@ -86,6 +86,11 @@ typedef union { } entry; } TSParseActionEntry; +typedef struct { + int32_t start; + int32_t end; +} TSCharacterRange; + struct TSLanguage { uint32_t version; uint32_t symbol_count; @@ -125,6 +130,24 @@ struct TSLanguage { const TSStateId *primary_state_ids; }; +static inline bool set_contains(TSCharacterRange *ranges, uint32_t len, int32_t lookahead) { + uint32_t index = 0; + uint32_t size = len - index; + while (size > 1) { + uint32_t half_size = size / 2; + uint32_t mid_index = index + half_size; + TSCharacterRange *range = &ranges[mid_index]; + if (lookahead >= range->start && lookahead <= range->end) { + return true; + } else if (lookahead > range->end) { + index = mid_index; + } + size -= half_size; + } + TSCharacterRange *range = &ranges[index]; + return (lookahead >= range->start && lookahead <= range->end); +} + /* * Lexer Macros */ @@ -154,6 +177,17 @@ struct TSLanguage { goto next_state; \ } +#define ADVANCE_MAP(...) \ + { \ + static const uint16_t map[] = { __VA_ARGS__ }; \ + for (uint32_t i = 0; i < sizeof(map) / sizeof(map[0]); i += 2) { \ + if (map[i] == lookahead) { \ + state = map[i + 1]; \ + goto next_state; \ + } \ + } \ + } + #define SKIP(state_value) \ { \ skip = true; \ @@ -203,14 +237,15 @@ struct TSLanguage { } \ }} -#define REDUCE(symbol_val, child_count_val, ...) \ - {{ \ - .reduce = { \ - .type = TSParseActionTypeReduce, \ - .symbol = symbol_val, \ - .child_count = child_count_val, \ - __VA_ARGS__ \ - }, \ +#define REDUCE(symbol_name, children, precedence, prod_id) \ + {{ \ + .reduce = { \ + .type = TSParseActionTypeReduce, \ + .symbol = symbol_name, \ + .child_count = children, \ + .dynamic_precedence = precedence, \ + .production_id = prod_id \ + }, \ }} #define RECOVER() \ From 5ce1e6ef8ea7b279cc5bab5182989dea6ab8dd7c Mon Sep 17 00:00:00 2001 From: Jonas Hietala Date: Sun, 8 Sep 2024 09:12:23 +0200 Subject: [PATCH 19/46] Refactor bracket parsing --- tree-sitter-djot-inline/grammar.js | 83 +- tree-sitter-djot-inline/src/grammar.json | 123 +- tree-sitter-djot-inline/src/node-types.json | 4 - tree-sitter-djot-inline/src/parser.c | 41158 ++++++++-------- tree-sitter-djot-inline/src/scanner.c | 91 +- .../test/corpus/syntax.txt | 109 +- 6 files changed, 19672 insertions(+), 21896 deletions(-) diff --git a/tree-sitter-djot-inline/grammar.js b/tree-sitter-djot-inline/grammar.js index 6388125..4455704 100644 --- a/tree-sitter-djot-inline/grammar.js +++ b/tree-sitter-djot-inline/grammar.js @@ -16,7 +16,7 @@ module.exports = grammar({ [$.footnote_marker_begin, $._symbol_fallback], [$.math, $._symbol_fallback], - [$._inline_attribute_begin, $._inline_attribute_fallback], + [$._curly_bracket_span_begin, $._curly_bracket_span_fallback], ], rules: { @@ -60,7 +60,9 @@ module.exports = grammar({ $._symbol_fallback, $._text, ), - optional(choice($.inline_attribute, $._inline_attribute_fallback)), + optional( + choice($.inline_attribute, $._curly_bracket_span_fallback), + ), ), $.span, ), @@ -158,9 +160,12 @@ module.exports = grammar({ footnote_reference: ($) => seq( $.footnote_marker_begin, - $._footnote_marker_mark_begin, + $._square_bracket_span_begin, $.reference_label, - prec.dynamic(1000, $.footnote_marker_end), + prec.dynamic( + 1000, + alias($._square_bracket_span_end, $.footnote_marker_end), + ), ), footnote_marker_begin: (_) => "[^", @@ -181,9 +186,9 @@ module.exports = grammar({ image_description: ($) => seq( $._image_description_begin, - $._image_description_mark_begin, - optional(alias($._inline, $.image_description)), - prec.dynamic(1000, alias($._image_description_end, "]")), + $._square_bracket_span_begin, + optional($._inline), + prec.dynamic(1000, alias($._square_bracket_span_end, "]")), ), _image_description_begin: (_) => "![", @@ -196,11 +201,11 @@ module.exports = grammar({ link_text: ($) => seq( $._bracketed_text_begin, - $._bracketed_text_mark_begin, + $._square_bracket_span_begin, $._inline, // Alias to "]" to allow us to highlight it in Neovim. // Maybe some bug, or some undocumented behavior? - prec.dynamic(1000, alias($._bracketed_text_end, "]")), + prec.dynamic(1000, alias($._square_bracket_span_end, "]")), ), span: ($) => @@ -211,9 +216,9 @@ module.exports = grammar({ seq( $._bracketed_text_begin, - $._bracketed_text_mark_begin, + $._square_bracket_span_begin, alias($._inline, $.content), - alias($._bracketed_text_end, "]"), + alias($._square_bracket_span_end, "]"), $.inline_attribute, ), @@ -221,8 +226,8 @@ module.exports = grammar({ inline_attribute: ($) => seq( - $._inline_attribute_begin, - $._inline_attribute_mark_begin, + $._curly_bracket_span_begin, + $._curly_bracket_span_mark_begin, alias( repeat( choice( @@ -236,21 +241,30 @@ module.exports = grammar({ ), $.args, ), - prec.dynamic(1000, alias($._inline_attribute_end, "}")), + prec.dynamic(1000, alias($._curly_bracket_span_end, "}")), ), - _inline_attribute_begin: (_) => "{", + _curly_bracket_span_begin: (_) => "{", _bracketed_text: ($) => seq( $._bracketed_text_begin, - $._bracketed_text_mark_begin, + $._square_bracket_span_begin, $._inline, - prec.dynamic(1000, $._bracketed_text_end), + prec.dynamic(1000, $._square_bracket_span_end), ), _link_label: ($) => seq("[", alias($._inline, $.link_label), token.immediate("]")), - inline_link_destination: (_) => seq("(", /[^\)]+/, ")"), + inline_link_destination: ($) => + seq( + $._parens_span_begin, + $._parens_span_mark_begin, + // /[^\)]+/, + // TODO should capture as backslash_escape + /([^\)]|\\\))+/, + alias($._parens_span_end, ")"), + ), + _parens_span_begin: (_) => "(", // An inline attribute is only allowed to have surrounding spaces // if it only contains a comment. @@ -335,12 +349,11 @@ module.exports = grammar({ seq("{+", choice($._insert_mark_begin, $._in_fallback)), seq("{-", choice($._delete_mark_begin, $._in_fallback)), - // Footnotes - seq("[^", choice($._footnote_marker_mark_begin, $._in_fallback)), - - // Fallbacks for spans, links and images - seq("![", choice($._image_description_mark_begin, $._in_fallback)), - seq("[", choice($._bracketed_text_mark_begin, $._in_fallback)), + // Bracketed spans + seq("[^", choice($._square_bracket_span_begin, $._in_fallback)), + seq("![", choice($._square_bracket_span_begin, $._in_fallback)), + seq("[", choice($._square_bracket_span_begin, $._in_fallback)), + seq("(", choice($._parens_span_mark_begin, $._in_fallback)), // Autolink "<", @@ -351,8 +364,8 @@ module.exports = grammar({ ), // Used to branch on inline attributes that may follow any element. - _inline_attribute_fallback: ($) => - seq("{", choice($._inline_attribute_mark_begin, $._in_fallback)), + _curly_bracket_span_fallback: ($) => + seq("{", choice($._curly_bracket_span_mark_begin, $._in_fallback)), language: (_) => /[^\n\t \{\}=]+/, @@ -397,16 +410,14 @@ module.exports = grammar({ $.insert_end, $._delete_mark_begin, $.delete_end, - // The bracketed text covers the first `[text]` portion of spans and links. - $._bracketed_text_mark_begin, - $._bracketed_text_end, - // The image description is the first `![text]` part of the image. - $._image_description_mark_begin, - $._image_description_end, - $._inline_attribute_mark_begin, - $._inline_attribute_end, - $._footnote_marker_mark_begin, - $.footnote_marker_end, + // Spans where the external scanner uses a zero-width begin marker + // and parser the end token as ), } or ]. + $._parens_span_mark_begin, + $._parens_span_end, + $._curly_bracket_span_mark_begin, + $._curly_bracket_span_end, + $._square_bracket_span_begin, + $._square_bracket_span_end, // A signaling token that's used to signal that a fallback token should be scanned, // and should never be output. diff --git a/tree-sitter-djot-inline/src/grammar.json b/tree-sitter-djot-inline/src/grammar.json index 6dec2a0..c39d369 100644 --- a/tree-sitter-djot-inline/src/grammar.json +++ b/tree-sitter-djot-inline/src/grammar.json @@ -176,7 +176,7 @@ }, { "type": "SYMBOL", - "name": "_inline_attribute_fallback" + "name": "_curly_bracket_span_fallback" } ] }, @@ -614,7 +614,7 @@ }, { "type": "SYMBOL", - "name": "_footnote_marker_mark_begin" + "name": "_square_bracket_span_begin" }, { "type": "SYMBOL", @@ -624,8 +624,13 @@ "type": "PREC_DYNAMIC", "value": 1000, "content": { - "type": "SYMBOL", - "name": "footnote_marker_end" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_square_bracket_span_end" + }, + "named": true, + "value": "footnote_marker_end" } } ] @@ -710,19 +715,14 @@ }, { "type": "SYMBOL", - "name": "_image_description_mark_begin" + "name": "_square_bracket_span_begin" }, { "type": "CHOICE", "members": [ { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_inline" - }, - "named": true, - "value": "image_description" + "type": "SYMBOL", + "name": "_inline" }, { "type": "BLANK" @@ -736,7 +736,7 @@ "type": "ALIAS", "content": { "type": "SYMBOL", - "name": "_image_description_end" + "name": "_square_bracket_span_end" }, "named": false, "value": "]" @@ -816,7 +816,7 @@ }, { "type": "SYMBOL", - "name": "_bracketed_text_mark_begin" + "name": "_square_bracket_span_begin" }, { "type": "SYMBOL", @@ -829,7 +829,7 @@ "type": "ALIAS", "content": { "type": "SYMBOL", - "name": "_bracketed_text_end" + "name": "_square_bracket_span_end" }, "named": false, "value": "]" @@ -846,7 +846,7 @@ }, { "type": "SYMBOL", - "name": "_bracketed_text_mark_begin" + "name": "_square_bracket_span_begin" }, { "type": "ALIAS", @@ -861,7 +861,7 @@ "type": "ALIAS", "content": { "type": "SYMBOL", - "name": "_bracketed_text_end" + "name": "_square_bracket_span_end" }, "named": false, "value": "]" @@ -881,11 +881,11 @@ "members": [ { "type": "SYMBOL", - "name": "_inline_attribute_begin" + "name": "_curly_bracket_span_begin" }, { "type": "SYMBOL", - "name": "_inline_attribute_mark_begin" + "name": "_curly_bracket_span_mark_begin" }, { "type": "ALIAS", @@ -936,7 +936,7 @@ "type": "ALIAS", "content": { "type": "SYMBOL", - "name": "_inline_attribute_end" + "name": "_curly_bracket_span_end" }, "named": false, "value": "}" @@ -944,7 +944,7 @@ } ] }, - "_inline_attribute_begin": { + "_curly_bracket_span_begin": { "type": "STRING", "value": "{" }, @@ -957,7 +957,7 @@ }, { "type": "SYMBOL", - "name": "_bracketed_text_mark_begin" + "name": "_square_bracket_span_begin" }, { "type": "SYMBOL", @@ -968,7 +968,7 @@ "value": 1000, "content": { "type": "SYMBOL", - "name": "_bracketed_text_end" + "name": "_square_bracket_span_end" } } ] @@ -1002,19 +1002,32 @@ "type": "SEQ", "members": [ { - "type": "STRING", - "value": "(" + "type": "SYMBOL", + "name": "_parens_span_begin" + }, + { + "type": "SYMBOL", + "name": "_parens_span_mark_begin" }, { "type": "PATTERN", - "value": "[^\\)]+" + "value": "([^\\)]|\\\\\\))+" }, { - "type": "STRING", + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_parens_span_end" + }, + "named": false, "value": ")" } ] }, + "_parens_span_begin": { + "type": "STRING", + "value": "(" + }, "comment": { "type": "SEQ", "members": [ @@ -1532,7 +1545,7 @@ "members": [ { "type": "SYMBOL", - "name": "_footnote_marker_mark_begin" + "name": "_square_bracket_span_begin" }, { "type": "SYMBOL", @@ -1554,7 +1567,7 @@ "members": [ { "type": "SYMBOL", - "name": "_image_description_mark_begin" + "name": "_square_bracket_span_begin" }, { "type": "SYMBOL", @@ -1576,7 +1589,29 @@ "members": [ { "type": "SYMBOL", - "name": "_bracketed_text_mark_begin" + "name": "_square_bracket_span_begin" + }, + { + "type": "SYMBOL", + "name": "_in_fallback" + } + ] + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_parens_span_mark_begin" }, { "type": "SYMBOL", @@ -1609,7 +1644,7 @@ } ] }, - "_inline_attribute_fallback": { + "_curly_bracket_span_fallback": { "type": "SEQ", "members": [ { @@ -1621,7 +1656,7 @@ "members": [ { "type": "SYMBOL", - "name": "_inline_attribute_mark_begin" + "name": "_curly_bracket_span_mark_begin" }, { "type": "SYMBOL", @@ -1801,8 +1836,8 @@ "_symbol_fallback" ], [ - "_inline_attribute_begin", - "_inline_attribute_fallback" + "_curly_bracket_span_begin", + "_curly_bracket_span_fallback" ] ], "precedences": [], @@ -1881,35 +1916,27 @@ }, { "type": "SYMBOL", - "name": "_bracketed_text_mark_begin" - }, - { - "type": "SYMBOL", - "name": "_bracketed_text_end" - }, - { - "type": "SYMBOL", - "name": "_image_description_mark_begin" + "name": "_parens_span_mark_begin" }, { "type": "SYMBOL", - "name": "_image_description_end" + "name": "_parens_span_end" }, { "type": "SYMBOL", - "name": "_inline_attribute_mark_begin" + "name": "_curly_bracket_span_mark_begin" }, { "type": "SYMBOL", - "name": "_inline_attribute_end" + "name": "_curly_bracket_span_end" }, { "type": "SYMBOL", - "name": "_footnote_marker_mark_begin" + "name": "_square_bracket_span_begin" }, { "type": "SYMBOL", - "name": "footnote_marker_end" + "name": "_square_bracket_span_end" }, { "type": "SYMBOL", diff --git a/tree-sitter-djot-inline/src/node-types.json b/tree-sitter-djot-inline/src/node-types.json index 190f5b2..1819203 100644 --- a/tree-sitter-djot-inline/src/node-types.json +++ b/tree-sitter-djot-inline/src/node-types.json @@ -443,10 +443,6 @@ "type": "highlighted", "named": true }, - { - "type": "image_description", - "named": true - }, { "type": "inline_attribute", "named": true diff --git a/tree-sitter-djot-inline/src/parser.c b/tree-sitter-djot-inline/src/parser.c index 730f2bb..134b605 100644 --- a/tree-sitter-djot-inline/src/parser.c +++ b/tree-sitter-djot-inline/src/parser.c @@ -5,15 +5,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 1273 -#define LARGE_STATE_COUNT 132 -#define SYMBOL_COUNT 145 -#define ALIAS_COUNT 7 -#define TOKEN_COUNT 83 -#define EXTERNAL_TOKEN_COUNT 29 +#define STATE_COUNT 1192 +#define LARGE_STATE_COUNT 121 +#define SYMBOL_COUNT 143 +#define ALIAS_COUNT 8 +#define TOKEN_COUNT 80 +#define EXTERNAL_TOKEN_COUNT 27 #define FIELD_COUNT 0 #define MAX_ALIAS_SEQUENCE_LENGTH 5 -#define PRODUCTION_ID_COUNT 10 +#define PRODUCTION_ID_COUNT 11 enum ts_symbol_identifiers { anon_sym_LBRACE_ = 1, @@ -44,129 +44,128 @@ enum ts_symbol_identifiers { anon_sym_LBRACK = 26, anon_sym_LBRACE = 27, anon_sym_RBRACK = 28, - anon_sym_LPAREN = 29, - aux_sym_inline_link_destination_token1 = 30, - anon_sym_RPAREN = 31, - anon_sym_RBRACE = 32, - anon_sym_PERCENT = 33, - aux_sym__comment_with_newline_token1 = 34, - anon_sym_LBRACE_EQ2 = 35, - anon_sym_DOLLAR = 36, - anon_sym_TODO = 37, - anon_sym_WIP = 38, - anon_sym_NOTE = 39, - anon_sym_INFO = 40, - anon_sym_XXX = 41, - sym_fixme = 42, - sym_language = 43, - sym__whitespace = 44, - sym__whitespace1 = 45, - sym__newline = 46, - aux_sym__text_token1 = 47, - anon_sym_DOT = 48, - sym_identifier = 49, - anon_sym_EQ = 50, - anon_sym_DQUOTE = 51, - aux_sym_value_token1 = 52, - aux_sym_value_token2 = 53, - sym__ignored = 54, - sym__verbatim_begin = 55, - sym__verbatim_end = 56, - sym__verbatim_content = 57, - sym__emphasis_mark_begin = 58, - sym_emphasis_end = 59, - sym__strong_mark_begin = 60, - sym_strong_end = 61, - sym__superscript_mark_begin = 62, - sym_superscript_end = 63, - sym__subscript_mark_begin = 64, - sym_subscript_end = 65, - sym__highlighted_mark_begin = 66, - sym_highlighted_end = 67, - sym__insert_mark_begin = 68, - sym_insert_end = 69, - sym__delete_mark_begin = 70, - sym_delete_end = 71, - sym__bracketed_text_mark_begin = 72, - sym__bracketed_text_end = 73, - sym__image_description_mark_begin = 74, - sym__image_description_end = 75, - sym__inline_attribute_mark_begin = 76, - sym__inline_attribute_end = 77, - sym__footnote_marker_mark_begin = 78, - sym_footnote_marker_end = 79, - sym__in_fallback = 80, - sym__non_whitespace_check = 81, - sym__error = 82, - sym_inline = 83, - sym__inline = 84, - sym__inline_without_trailing_space = 85, - sym__element = 86, - sym_emphasis = 87, - sym_emphasis_begin = 88, - sym_strong = 89, - sym_strong_begin = 90, - sym_superscript = 91, - sym_superscript_begin = 92, - sym_subscript = 93, - sym_subscript_begin = 94, - sym_highlighted = 95, - sym_highlighted_begin = 96, - sym_insert = 97, - sym_insert_begin = 98, - sym_delete = 99, - sym_delete_begin = 100, - sym_hard_line_break = 101, - sym__smart_punctuation = 102, - sym_autolink = 103, - sym_footnote_reference = 104, - sym_footnote_marker_begin = 105, - sym_reference_label = 106, - sym__image = 107, - sym_full_reference_image = 108, - sym_collapsed_reference_image = 109, - sym_inline_image = 110, - sym_image_description = 111, - sym__image_description_begin = 112, - sym__link = 113, - sym_full_reference_link = 114, - sym_collapsed_reference_link = 115, - sym_inline_link = 116, - sym_link_text = 117, - sym_span = 118, - sym__bracketed_text_begin = 119, - sym_inline_attribute = 120, - sym__inline_attribute_begin = 121, - sym__link_label = 122, - sym_inline_link_destination = 123, - sym_comment = 124, - sym__comment_with_spaces = 125, - sym__comment_with_newline = 126, - sym_raw_inline = 127, - sym_raw_inline_attribute = 128, - sym_math = 129, - sym_verbatim = 130, - sym__todo_highlights = 131, - sym_todo = 132, - sym_note = 133, - sym__symbol_fallback = 134, - sym__inline_attribute_fallback = 135, - aux_sym__text = 136, - sym_class_name = 137, - sym_class = 138, - sym_key_value = 139, - sym_key = 140, - sym_value = 141, - aux_sym__inline_repeat1 = 142, - aux_sym_inline_attribute_repeat1 = 143, - aux_sym__comment_with_newline_repeat1 = 144, - alias_sym_args = 145, - alias_sym_link_label = 146, - alias_sym_math_marker = 147, - alias_sym_math_marker_begin = 148, - alias_sym_math_marker_end = 149, - alias_sym_verbatim_marker_begin = 150, - alias_sym_verbatim_marker_end = 151, + aux_sym_inline_link_destination_token1 = 29, + anon_sym_LPAREN = 30, + anon_sym_RBRACE = 31, + anon_sym_PERCENT = 32, + aux_sym__comment_with_newline_token1 = 33, + anon_sym_LBRACE_EQ2 = 34, + anon_sym_DOLLAR = 35, + anon_sym_TODO = 36, + anon_sym_WIP = 37, + anon_sym_NOTE = 38, + anon_sym_INFO = 39, + anon_sym_XXX = 40, + sym_fixme = 41, + sym_language = 42, + sym__whitespace = 43, + sym__whitespace1 = 44, + sym__newline = 45, + aux_sym__text_token1 = 46, + anon_sym_DOT = 47, + sym_identifier = 48, + anon_sym_EQ = 49, + anon_sym_DQUOTE = 50, + aux_sym_value_token1 = 51, + aux_sym_value_token2 = 52, + sym__ignored = 53, + sym__verbatim_begin = 54, + sym__verbatim_end = 55, + sym__verbatim_content = 56, + sym__emphasis_mark_begin = 57, + sym_emphasis_end = 58, + sym__strong_mark_begin = 59, + sym_strong_end = 60, + sym__superscript_mark_begin = 61, + sym_superscript_end = 62, + sym__subscript_mark_begin = 63, + sym_subscript_end = 64, + sym__highlighted_mark_begin = 65, + sym_highlighted_end = 66, + sym__insert_mark_begin = 67, + sym_insert_end = 68, + sym__delete_mark_begin = 69, + sym_delete_end = 70, + sym__parens_span_mark_begin = 71, + sym__parens_span_end = 72, + sym__curly_bracket_span_mark_begin = 73, + sym__curly_bracket_span_end = 74, + sym__square_bracket_span_begin = 75, + sym__square_bracket_span_end = 76, + sym__in_fallback = 77, + sym__non_whitespace_check = 78, + sym__error = 79, + sym_inline = 80, + sym__inline = 81, + sym__inline_without_trailing_space = 82, + sym__element = 83, + sym_emphasis = 84, + sym_emphasis_begin = 85, + sym_strong = 86, + sym_strong_begin = 87, + sym_superscript = 88, + sym_superscript_begin = 89, + sym_subscript = 90, + sym_subscript_begin = 91, + sym_highlighted = 92, + sym_highlighted_begin = 93, + sym_insert = 94, + sym_insert_begin = 95, + sym_delete = 96, + sym_delete_begin = 97, + sym_hard_line_break = 98, + sym__smart_punctuation = 99, + sym_autolink = 100, + sym_footnote_reference = 101, + sym_footnote_marker_begin = 102, + sym_reference_label = 103, + sym__image = 104, + sym_full_reference_image = 105, + sym_collapsed_reference_image = 106, + sym_inline_image = 107, + sym_image_description = 108, + sym__image_description_begin = 109, + sym__link = 110, + sym_full_reference_link = 111, + sym_collapsed_reference_link = 112, + sym_inline_link = 113, + sym_link_text = 114, + sym_span = 115, + sym__bracketed_text_begin = 116, + sym_inline_attribute = 117, + sym__curly_bracket_span_begin = 118, + sym__link_label = 119, + sym_inline_link_destination = 120, + sym__parens_span_begin = 121, + sym_comment = 122, + sym__comment_with_spaces = 123, + sym__comment_with_newline = 124, + sym_raw_inline = 125, + sym_raw_inline_attribute = 126, + sym_math = 127, + sym_verbatim = 128, + sym__todo_highlights = 129, + sym_todo = 130, + sym_note = 131, + sym__symbol_fallback = 132, + sym__curly_bracket_span_fallback = 133, + aux_sym__text = 134, + sym_class_name = 135, + sym_class = 136, + sym_key_value = 137, + sym_key = 138, + sym_value = 139, + aux_sym__inline_repeat1 = 140, + aux_sym_inline_attribute_repeat1 = 141, + aux_sym__comment_with_newline_repeat1 = 142, + alias_sym_args = 143, + alias_sym_footnote_marker_end = 144, + alias_sym_link_label = 145, + alias_sym_math_marker = 146, + alias_sym_math_marker_begin = 147, + alias_sym_math_marker_end = 148, + alias_sym_verbatim_marker_begin = 149, + alias_sym_verbatim_marker_end = 150, }; static const char * const ts_symbol_names[] = { @@ -199,9 +198,8 @@ static const char * const ts_symbol_names[] = { [anon_sym_LBRACK] = "[", [anon_sym_LBRACE] = "{", [anon_sym_RBRACK] = "]", - [anon_sym_LPAREN] = "(", [aux_sym_inline_link_destination_token1] = "inline_link_destination_token1", - [anon_sym_RPAREN] = ")", + [anon_sym_LPAREN] = "(", [anon_sym_RBRACE] = "}", [anon_sym_PERCENT] = "%", [aux_sym__comment_with_newline_token1] = "_comment_with_newline_token1", @@ -242,14 +240,12 @@ static const char * const ts_symbol_names[] = { [sym_insert_end] = "insert_end", [sym__delete_mark_begin] = "_delete_mark_begin", [sym_delete_end] = "delete_end", - [sym__bracketed_text_mark_begin] = "_bracketed_text_mark_begin", - [sym__bracketed_text_end] = "_bracketed_text_end", - [sym__image_description_mark_begin] = "_image_description_mark_begin", - [sym__image_description_end] = "]", - [sym__inline_attribute_mark_begin] = "_inline_attribute_mark_begin", - [sym__inline_attribute_end] = "}", - [sym__footnote_marker_mark_begin] = "_footnote_marker_mark_begin", - [sym_footnote_marker_end] = "footnote_marker_end", + [sym__parens_span_mark_begin] = "_parens_span_mark_begin", + [sym__parens_span_end] = ")", + [sym__curly_bracket_span_mark_begin] = "_curly_bracket_span_mark_begin", + [sym__curly_bracket_span_end] = "}", + [sym__square_bracket_span_begin] = "_square_bracket_span_begin", + [sym__square_bracket_span_end] = "_square_bracket_span_end", [sym__in_fallback] = "_in_fallback", [sym__non_whitespace_check] = "_non_whitespace_check", [sym__error] = "_error", @@ -291,9 +287,10 @@ static const char * const ts_symbol_names[] = { [sym_span] = "span", [sym__bracketed_text_begin] = "_bracketed_text_begin", [sym_inline_attribute] = "inline_attribute", - [sym__inline_attribute_begin] = "_inline_attribute_begin", + [sym__curly_bracket_span_begin] = "_curly_bracket_span_begin", [sym__link_label] = "_link_label", [sym_inline_link_destination] = "inline_link_destination", + [sym__parens_span_begin] = "_parens_span_begin", [sym_comment] = "comment", [sym__comment_with_spaces] = "_comment_with_spaces", [sym__comment_with_newline] = "_comment_with_newline", @@ -305,7 +302,7 @@ static const char * const ts_symbol_names[] = { [sym_todo] = "todo", [sym_note] = "note", [sym__symbol_fallback] = "_symbol_fallback", - [sym__inline_attribute_fallback] = "_inline_attribute_fallback", + [sym__curly_bracket_span_fallback] = "_curly_bracket_span_fallback", [aux_sym__text] = "_text", [sym_class_name] = "class", [sym_class] = "class", @@ -316,6 +313,7 @@ static const char * const ts_symbol_names[] = { [aux_sym_inline_attribute_repeat1] = "inline_attribute_repeat1", [aux_sym__comment_with_newline_repeat1] = "_comment_with_newline_repeat1", [alias_sym_args] = "args", + [alias_sym_footnote_marker_end] = "footnote_marker_end", [alias_sym_link_label] = "link_label", [alias_sym_math_marker] = "math_marker", [alias_sym_math_marker_begin] = "math_marker_begin", @@ -354,9 +352,8 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_LBRACK] = anon_sym_LBRACK, [anon_sym_LBRACE] = anon_sym_LBRACE, [anon_sym_RBRACK] = anon_sym_RBRACK, - [anon_sym_LPAREN] = anon_sym_LPAREN, [aux_sym_inline_link_destination_token1] = aux_sym_inline_link_destination_token1, - [anon_sym_RPAREN] = anon_sym_RPAREN, + [anon_sym_LPAREN] = anon_sym_LPAREN, [anon_sym_RBRACE] = anon_sym_RBRACE, [anon_sym_PERCENT] = anon_sym_PERCENT, [aux_sym__comment_with_newline_token1] = aux_sym__comment_with_newline_token1, @@ -397,14 +394,12 @@ static const TSSymbol ts_symbol_map[] = { [sym_insert_end] = sym_insert_end, [sym__delete_mark_begin] = sym__delete_mark_begin, [sym_delete_end] = sym_delete_end, - [sym__bracketed_text_mark_begin] = sym__bracketed_text_mark_begin, - [sym__bracketed_text_end] = sym__bracketed_text_end, - [sym__image_description_mark_begin] = sym__image_description_mark_begin, - [sym__image_description_end] = anon_sym_RBRACK, - [sym__inline_attribute_mark_begin] = sym__inline_attribute_mark_begin, - [sym__inline_attribute_end] = anon_sym_RBRACE, - [sym__footnote_marker_mark_begin] = sym__footnote_marker_mark_begin, - [sym_footnote_marker_end] = sym_footnote_marker_end, + [sym__parens_span_mark_begin] = sym__parens_span_mark_begin, + [sym__parens_span_end] = sym__parens_span_end, + [sym__curly_bracket_span_mark_begin] = sym__curly_bracket_span_mark_begin, + [sym__curly_bracket_span_end] = anon_sym_RBRACE, + [sym__square_bracket_span_begin] = sym__square_bracket_span_begin, + [sym__square_bracket_span_end] = sym__square_bracket_span_end, [sym__in_fallback] = sym__in_fallback, [sym__non_whitespace_check] = sym__non_whitespace_check, [sym__error] = sym__error, @@ -446,9 +441,10 @@ static const TSSymbol ts_symbol_map[] = { [sym_span] = sym_span, [sym__bracketed_text_begin] = sym__bracketed_text_begin, [sym_inline_attribute] = sym_inline_attribute, - [sym__inline_attribute_begin] = sym__inline_attribute_begin, + [sym__curly_bracket_span_begin] = sym__curly_bracket_span_begin, [sym__link_label] = sym__link_label, [sym_inline_link_destination] = sym_inline_link_destination, + [sym__parens_span_begin] = sym__parens_span_begin, [sym_comment] = sym_comment, [sym__comment_with_spaces] = sym__comment_with_spaces, [sym__comment_with_newline] = sym__comment_with_newline, @@ -460,7 +456,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_todo] = sym_todo, [sym_note] = sym_note, [sym__symbol_fallback] = sym__symbol_fallback, - [sym__inline_attribute_fallback] = sym__inline_attribute_fallback, + [sym__curly_bracket_span_fallback] = sym__curly_bracket_span_fallback, [aux_sym__text] = aux_sym__text, [sym_class_name] = sym_class_name, [sym_class] = sym_class, @@ -471,6 +467,7 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_inline_attribute_repeat1] = aux_sym_inline_attribute_repeat1, [aux_sym__comment_with_newline_repeat1] = aux_sym__comment_with_newline_repeat1, [alias_sym_args] = alias_sym_args, + [alias_sym_footnote_marker_end] = alias_sym_footnote_marker_end, [alias_sym_link_label] = alias_sym_link_label, [alias_sym_math_marker] = alias_sym_math_marker, [alias_sym_math_marker_begin] = alias_sym_math_marker_begin, @@ -596,15 +593,11 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_LPAREN] = { - .visible = true, - .named = false, - }, [aux_sym_inline_link_destination_token1] = { .visible = false, .named = false, }, - [anon_sym_RPAREN] = { + [anon_sym_LPAREN] = { .visible = true, .named = false, }, @@ -768,36 +761,28 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym__bracketed_text_mark_begin] = { - .visible = false, - .named = true, - }, - [sym__bracketed_text_end] = { + [sym__parens_span_mark_begin] = { .visible = false, .named = true, }, - [sym__image_description_mark_begin] = { - .visible = false, - .named = true, - }, - [sym__image_description_end] = { + [sym__parens_span_end] = { .visible = true, .named = false, }, - [sym__inline_attribute_mark_begin] = { + [sym__curly_bracket_span_mark_begin] = { .visible = false, .named = true, }, - [sym__inline_attribute_end] = { + [sym__curly_bracket_span_end] = { .visible = true, .named = false, }, - [sym__footnote_marker_mark_begin] = { + [sym__square_bracket_span_begin] = { .visible = false, .named = true, }, - [sym_footnote_marker_end] = { - .visible = true, + [sym__square_bracket_span_end] = { + .visible = false, .named = true, }, [sym__in_fallback] = { @@ -964,7 +949,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym__inline_attribute_begin] = { + [sym__curly_bracket_span_begin] = { .visible = false, .named = true, }, @@ -976,6 +961,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym__parens_span_begin] = { + .visible = false, + .named = true, + }, [sym_comment] = { .visible = true, .named = true, @@ -1020,7 +1009,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, - [sym__inline_attribute_fallback] = { + [sym__curly_bracket_span_fallback] = { .visible = false, .named = true, }, @@ -1064,6 +1053,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [alias_sym_footnote_marker_end] = { + .visible = true, + .named = true, + }, [alias_sym_link_label] = { .visible = true, .named = true, @@ -1097,40 +1090,42 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [2] = alias_sym_verbatim_marker_end, }, [2] = { - [0] = sym_comment, + [2] = anon_sym_RBRACK, }, [3] = { + [0] = sym_comment, + }, + [4] = { [0] = alias_sym_math_marker, [1] = alias_sym_math_marker_begin, [3] = alias_sym_math_marker_end, }, - [4] = { - [2] = sym__verbatim_content, - }, [5] = { - [1] = alias_sym_link_label, + [2] = sym__verbatim_content, }, [6] = { - [2] = sym_image_description, + [3] = alias_sym_footnote_marker_end, }, [7] = { - [3] = anon_sym_RBRACK, + [1] = alias_sym_link_label, }, [8] = { - [2] = alias_sym_args, + [3] = anon_sym_RBRACK, }, [9] = { + [2] = alias_sym_args, + }, + [10] = { [2] = sym__verbatim_content, [3] = anon_sym_RBRACK, }, }; static const uint16_t ts_non_terminal_alias_map[] = { - sym__inline, 4, + sym__inline, 3, sym__inline, alias_sym_link_label, sym__verbatim_content, - sym_image_description, sym__comment_with_newline, 2, sym__comment_with_newline, sym_comment, @@ -1159,1264 +1154,1183 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [12] = 6, [13] = 6, [14] = 14, - [15] = 3, + [15] = 7, [16] = 6, - [17] = 6, + [17] = 17, [18] = 18, [19] = 19, [20] = 20, - [21] = 7, - [22] = 5, - [23] = 3, - [24] = 24, - [25] = 25, + [21] = 4, + [22] = 14, + [23] = 23, + [24] = 5, + [25] = 3, [26] = 4, [27] = 20, - [28] = 19, + [28] = 17, [29] = 18, - [30] = 5, - [31] = 3, - [32] = 4, - [33] = 24, - [34] = 25, - [35] = 25, - [36] = 14, - [37] = 7, - [38] = 4, - [39] = 24, - [40] = 20, - [41] = 19, - [42] = 3, - [43] = 18, - [44] = 5, - [45] = 5, - [46] = 7, - [47] = 3, - [48] = 24, - [49] = 18, - [50] = 19, + [30] = 19, + [31] = 23, + [32] = 5, + [33] = 3, + [34] = 3, + [35] = 5, + [36] = 4, + [37] = 14, + [38] = 14, + [39] = 20, + [40] = 23, + [41] = 17, + [42] = 18, + [43] = 19, + [44] = 23, + [45] = 18, + [46] = 23, + [47] = 7, + [48] = 5, + [49] = 3, + [50] = 17, [51] = 20, [52] = 4, - [53] = 25, - [54] = 24, - [55] = 3, - [56] = 5, - [57] = 25, - [58] = 19, - [59] = 18, - [60] = 4, - [61] = 20, - [62] = 4, - [63] = 6, - [64] = 25, - [65] = 24, - [66] = 3, - [67] = 6, - [68] = 14, - [69] = 14, - [70] = 14, - [71] = 5, - [72] = 18, - [73] = 19, - [74] = 20, + [53] = 3, + [54] = 5, + [55] = 23, + [56] = 19, + [57] = 18, + [58] = 4, + [59] = 20, + [60] = 17, + [61] = 4, + [62] = 3, + [63] = 20, + [64] = 6, + [65] = 14, + [66] = 5, + [67] = 23, + [68] = 6, + [69] = 7, + [70] = 7, + [71] = 14, + [72] = 19, + [73] = 18, + [74] = 17, [75] = 20, - [76] = 19, + [76] = 17, [77] = 18, - [78] = 5, - [79] = 4, - [80] = 7, - [81] = 3, - [82] = 24, - [83] = 25, - [84] = 7, + [78] = 19, + [79] = 23, + [80] = 4, + [81] = 7, + [82] = 5, + [83] = 3, + [84] = 4, [85] = 20, - [86] = 19, + [86] = 17, [87] = 18, - [88] = 5, - [89] = 3, - [90] = 24, - [91] = 25, - [92] = 25, - [93] = 4, + [88] = 19, + [89] = 23, + [90] = 5, + [91] = 3, + [92] = 3, + [93] = 19, [94] = 20, - [95] = 24, - [96] = 3, - [97] = 19, - [98] = 5, - [99] = 18, - [100] = 14, - [101] = 5, - [102] = 18, - [103] = 19, + [95] = 17, + [96] = 5, + [97] = 23, + [98] = 18, + [99] = 19, + [100] = 19, + [101] = 18, + [102] = 23, + [103] = 17, [104] = 20, [105] = 4, - [106] = 25, - [107] = 24, - [108] = 3, - [109] = 5, - [110] = 18, - [111] = 19, - [112] = 20, - [113] = 4, - [114] = 25, - [115] = 24, - [116] = 7, - [117] = 18, - [118] = 6, - [119] = 19, - [120] = 14, - [121] = 7, - [122] = 14, - [123] = 24, - [124] = 7, - [125] = 25, - [126] = 14, - [127] = 4, - [128] = 20, - [129] = 129, - [130] = 129, - [131] = 14, - [132] = 132, - [133] = 132, - [134] = 132, - [135] = 132, - [136] = 132, - [137] = 132, - [138] = 132, - [139] = 132, - [140] = 132, - [141] = 132, - [142] = 132, - [143] = 143, - [144] = 132, - [145] = 143, - [146] = 143, - [147] = 143, - [148] = 143, - [149] = 143, - [150] = 143, - [151] = 143, - [152] = 143, - [153] = 143, - [154] = 143, - [155] = 143, - [156] = 156, - [157] = 156, - [158] = 156, - [159] = 156, - [160] = 156, - [161] = 156, - [162] = 156, - [163] = 156, - [164] = 156, - [165] = 156, - [166] = 156, - [167] = 167, - [168] = 168, - [169] = 169, - [170] = 170, - [171] = 170, - [172] = 172, - [173] = 173, - [174] = 167, - [175] = 173, - [176] = 168, - [177] = 172, - [178] = 167, - [179] = 168, - [180] = 169, - [181] = 170, - [182] = 170, - [183] = 168, - [184] = 173, - [185] = 172, - [186] = 168, - [187] = 172, - [188] = 167, - [189] = 167, - [190] = 167, - [191] = 168, - [192] = 173, - [193] = 172, - [194] = 169, - [195] = 172, - [196] = 170, - [197] = 168, - [198] = 170, - [199] = 169, - [200] = 170, - [201] = 169, - [202] = 169, - [203] = 173, - [204] = 167, - [205] = 167, - [206] = 169, - [207] = 156, - [208] = 173, - [209] = 167, - [210] = 172, - [211] = 169, - [212] = 168, - [213] = 169, - [214] = 170, - [215] = 172, - [216] = 170, - [217] = 173, - [218] = 168, - [219] = 172, - [220] = 168, - [221] = 169, - [222] = 170, - [223] = 167, - [224] = 173, - [225] = 169, - [226] = 170, - [227] = 173, - [228] = 172, - [229] = 172, - [230] = 168, - [231] = 167, + [106] = 14, + [107] = 14, + [108] = 19, + [109] = 6, + [110] = 7, + [111] = 18, + [112] = 17, + [113] = 20, + [114] = 4, + [115] = 7, + [116] = 3, + [117] = 5, + [118] = 118, + [119] = 118, + [120] = 7, + [121] = 121, + [122] = 121, + [123] = 121, + [124] = 121, + [125] = 121, + [126] = 121, + [127] = 121, + [128] = 121, + [129] = 121, + [130] = 121, + [131] = 131, + [132] = 131, + [133] = 131, + [134] = 121, + [135] = 131, + [136] = 131, + [137] = 131, + [138] = 131, + [139] = 131, + [140] = 131, + [141] = 131, + [142] = 142, + [143] = 131, + [144] = 142, + [145] = 142, + [146] = 142, + [147] = 142, + [148] = 142, + [149] = 142, + [150] = 142, + [151] = 142, + [152] = 142, + [153] = 153, + [154] = 154, + [155] = 155, + [156] = 153, + [157] = 157, + [158] = 153, + [159] = 159, + [160] = 160, + [161] = 155, + [162] = 154, + [163] = 159, + [164] = 154, + [165] = 153, + [166] = 160, + [167] = 160, + [168] = 155, + [169] = 154, + [170] = 154, + [171] = 154, + [172] = 159, + [173] = 153, + [174] = 160, + [175] = 157, + [176] = 153, + [177] = 155, + [178] = 160, + [179] = 155, + [180] = 142, + [181] = 159, + [182] = 159, + [183] = 159, + [184] = 157, + [185] = 155, + [186] = 157, + [187] = 155, + [188] = 160, + [189] = 160, + [190] = 153, + [191] = 153, + [192] = 153, + [193] = 160, + [194] = 157, + [195] = 157, + [196] = 157, + [197] = 155, + [198] = 154, + [199] = 153, + [200] = 159, + [201] = 159, + [202] = 157, + [203] = 154, + [204] = 159, + [205] = 154, + [206] = 155, + [207] = 160, + [208] = 154, + [209] = 160, + [210] = 159, + [211] = 155, + [212] = 212, + [213] = 213, + [214] = 157, + [215] = 215, + [216] = 216, + [217] = 217, + [218] = 218, + [219] = 219, + [220] = 220, + [221] = 221, + [222] = 222, + [223] = 223, + [224] = 224, + [225] = 225, + [226] = 226, + [227] = 227, + [228] = 213, + [229] = 229, + [230] = 230, + [231] = 231, [232] = 232, [233] = 233, [234] = 234, [235] = 235, [236] = 236, - [237] = 232, - [238] = 173, + [237] = 237, + [238] = 157, [239] = 239, [240] = 240, [241] = 241, - [242] = 239, - [243] = 243, - [244] = 244, - [245] = 245, - [246] = 243, - [247] = 247, - [248] = 248, - [249] = 249, - [250] = 250, - [251] = 251, - [252] = 252, - [253] = 253, - [254] = 254, - [255] = 244, - [256] = 256, - [257] = 233, - [258] = 245, - [259] = 259, - [260] = 260, - [261] = 261, - [262] = 262, - [263] = 263, - [264] = 264, - [265] = 265, - [266] = 266, + [242] = 242, + [243] = 223, + [244] = 226, + [245] = 240, + [246] = 212, + [247] = 212, + [248] = 215, + [249] = 216, + [250] = 217, + [251] = 218, + [252] = 219, + [253] = 220, + [254] = 221, + [255] = 222, + [256] = 215, + [257] = 224, + [258] = 225, + [259] = 216, + [260] = 227, + [261] = 213, + [262] = 229, + [263] = 230, + [264] = 231, + [265] = 232, + [266] = 233, [267] = 234, [268] = 235, [269] = 236, - [270] = 232, - [271] = 247, - [272] = 248, - [273] = 240, - [274] = 259, - [275] = 265, - [276] = 264, - [277] = 241, - [278] = 239, - [279] = 243, - [280] = 263, - [281] = 262, - [282] = 261, - [283] = 244, - [284] = 245, - [285] = 249, - [286] = 260, - [287] = 247, - [288] = 248, - [289] = 249, - [290] = 250, - [291] = 251, - [292] = 252, - [293] = 253, - [294] = 250, - [295] = 251, - [296] = 233, - [297] = 254, - [298] = 252, - [299] = 256, - [300] = 233, - [301] = 253, - [302] = 259, - [303] = 260, - [304] = 261, - [305] = 262, - [306] = 263, - [307] = 264, - [308] = 265, - [309] = 266, - [310] = 234, - [311] = 235, - [312] = 236, - [313] = 232, - [314] = 173, - [315] = 254, - [316] = 240, - [317] = 256, - [318] = 256, - [319] = 254, - [320] = 253, - [321] = 241, - [322] = 239, - [323] = 243, - [324] = 252, - [325] = 251, - [326] = 250, - [327] = 244, - [328] = 245, - [329] = 233, - [330] = 249, - [331] = 247, - [332] = 248, - [333] = 249, - [334] = 250, - [335] = 251, - [336] = 252, - [337] = 253, - [338] = 248, - [339] = 247, - [340] = 259, - [341] = 254, - [342] = 260, - [343] = 256, - [344] = 233, - [345] = 261, - [346] = 259, - [347] = 260, - [348] = 261, - [349] = 262, - [350] = 263, - [351] = 264, - [352] = 265, - [353] = 266, - [354] = 234, - [355] = 235, - [356] = 236, - [357] = 232, - [358] = 262, - [359] = 263, - [360] = 240, - [361] = 245, - [362] = 244, - [363] = 243, - [364] = 239, - [365] = 241, - [366] = 239, - [367] = 243, - [368] = 241, - [369] = 264, - [370] = 240, - [371] = 244, - [372] = 245, - [373] = 265, - [374] = 266, - [375] = 247, - [376] = 248, - [377] = 249, - [378] = 250, - [379] = 251, - [380] = 252, - [381] = 253, - [382] = 234, - [383] = 235, - [384] = 236, - [385] = 254, - [386] = 232, - [387] = 256, - [388] = 233, - [389] = 169, - [390] = 259, - [391] = 260, - [392] = 261, - [393] = 262, - [394] = 263, - [395] = 264, - [396] = 265, - [397] = 266, - [398] = 234, - [399] = 235, - [400] = 236, - [401] = 232, - [402] = 170, - [403] = 167, - [404] = 240, - [405] = 236, - [406] = 235, - [407] = 234, - [408] = 266, - [409] = 241, - [410] = 239, - [411] = 243, - [412] = 265, - [413] = 264, - [414] = 263, - [415] = 244, - [416] = 245, - [417] = 168, - [418] = 262, - [419] = 247, - [420] = 248, - [421] = 249, - [422] = 250, - [423] = 251, - [424] = 252, - [425] = 253, - [426] = 244, - [427] = 261, - [428] = 260, - [429] = 254, - [430] = 172, - [431] = 256, - [432] = 233, - [433] = 240, - [434] = 259, - [435] = 260, - [436] = 261, - [437] = 262, - [438] = 263, - [439] = 264, - [440] = 265, - [441] = 266, - [442] = 234, - [443] = 235, - [444] = 236, - [445] = 232, - [446] = 232, - [447] = 236, - [448] = 240, - [449] = 259, - [450] = 235, - [451] = 233, - [452] = 234, - [453] = 241, - [454] = 239, - [455] = 243, - [456] = 256, - [457] = 266, - [458] = 254, - [459] = 244, - [460] = 245, - [461] = 265, - [462] = 253, - [463] = 247, - [464] = 248, - [465] = 249, - [466] = 250, - [467] = 251, - [468] = 252, - [469] = 253, - [470] = 252, - [471] = 251, - [472] = 250, - [473] = 254, - [474] = 264, - [475] = 256, - [476] = 266, - [477] = 263, - [478] = 259, - [479] = 260, - [480] = 261, - [481] = 262, - [482] = 263, - [483] = 264, - [484] = 265, - [485] = 266, + [270] = 237, + [271] = 217, + [272] = 239, + [273] = 218, + [274] = 241, + [275] = 225, + [276] = 240, + [277] = 226, + [278] = 223, + [279] = 242, + [280] = 223, + [281] = 226, + [282] = 242, + [283] = 219, + [284] = 241, + [285] = 240, + [286] = 212, + [287] = 220, + [288] = 221, + [289] = 215, + [290] = 216, + [291] = 217, + [292] = 218, + [293] = 219, + [294] = 220, + [295] = 221, + [296] = 239, + [297] = 222, + [298] = 224, + [299] = 222, + [300] = 225, + [301] = 224, + [302] = 225, + [303] = 227, + [304] = 227, + [305] = 213, + [306] = 229, + [307] = 230, + [308] = 231, + [309] = 232, + [310] = 233, + [311] = 234, + [312] = 235, + [313] = 236, + [314] = 237, + [315] = 213, + [316] = 239, + [317] = 229, + [318] = 241, + [319] = 237, + [320] = 236, + [321] = 235, + [322] = 234, + [323] = 242, + [324] = 223, + [325] = 226, + [326] = 233, + [327] = 232, + [328] = 231, + [329] = 240, + [330] = 230, + [331] = 231, + [332] = 230, + [333] = 215, + [334] = 216, + [335] = 217, + [336] = 218, + [337] = 219, + [338] = 220, + [339] = 221, + [340] = 232, + [341] = 229, + [342] = 213, + [343] = 222, + [344] = 154, + [345] = 224, + [346] = 225, + [347] = 159, + [348] = 227, + [349] = 213, + [350] = 229, + [351] = 230, + [352] = 231, + [353] = 232, + [354] = 233, + [355] = 234, + [356] = 235, + [357] = 236, + [358] = 237, + [359] = 233, + [360] = 239, + [361] = 153, + [362] = 241, + [363] = 227, + [364] = 234, + [365] = 240, + [366] = 160, + [367] = 242, + [368] = 223, + [369] = 226, + [370] = 224, + [371] = 155, + [372] = 222, + [373] = 240, + [374] = 212, + [375] = 241, + [376] = 221, + [377] = 215, + [378] = 216, + [379] = 217, + [380] = 218, + [381] = 219, + [382] = 220, + [383] = 221, + [384] = 220, + [385] = 219, + [386] = 218, + [387] = 222, + [388] = 239, + [389] = 224, + [390] = 225, + [391] = 237, + [392] = 227, + [393] = 213, + [394] = 229, + [395] = 230, + [396] = 231, + [397] = 232, + [398] = 233, + [399] = 234, + [400] = 235, + [401] = 236, + [402] = 237, + [403] = 236, + [404] = 239, + [405] = 235, + [406] = 241, + [407] = 217, + [408] = 216, + [409] = 215, + [410] = 234, + [411] = 242, + [412] = 223, + [413] = 226, + [414] = 212, + [415] = 233, + [416] = 157, + [417] = 240, + [418] = 212, + [419] = 232, + [420] = 226, + [421] = 215, + [422] = 216, + [423] = 217, + [424] = 218, + [425] = 219, + [426] = 220, + [427] = 221, + [428] = 223, + [429] = 242, + [430] = 231, + [431] = 222, + [432] = 230, + [433] = 224, + [434] = 225, + [435] = 229, + [436] = 227, + [437] = 212, + [438] = 229, + [439] = 230, + [440] = 231, + [441] = 232, + [442] = 233, + [443] = 234, + [444] = 235, + [445] = 236, + [446] = 237, + [447] = 213, + [448] = 239, + [449] = 227, + [450] = 241, + [451] = 225, + [452] = 224, + [453] = 222, + [454] = 241, + [455] = 242, + [456] = 223, + [457] = 226, + [458] = 235, + [459] = 239, + [460] = 240, + [461] = 212, + [462] = 236, + [463] = 221, + [464] = 215, + [465] = 216, + [466] = 217, + [467] = 218, + [468] = 219, + [469] = 220, + [470] = 221, + [471] = 220, + [472] = 219, + [473] = 218, + [474] = 222, + [475] = 217, + [476] = 224, + [477] = 225, + [478] = 216, + [479] = 227, + [480] = 213, + [481] = 229, + [482] = 230, + [483] = 231, + [484] = 232, + [485] = 233, [486] = 234, [487] = 235, [488] = 236, - [489] = 232, - [490] = 262, - [491] = 261, - [492] = 240, - [493] = 249, - [494] = 248, - [495] = 247, - [496] = 260, - [497] = 241, - [498] = 239, - [499] = 243, - [500] = 245, - [501] = 259, - [502] = 244, - [503] = 245, - [504] = 233, - [505] = 173, - [506] = 247, - [507] = 248, - [508] = 249, - [509] = 250, - [510] = 251, - [511] = 252, - [512] = 253, - [513] = 243, - [514] = 239, - [515] = 241, - [516] = 254, - [517] = 256, - [518] = 256, - [519] = 233, - [520] = 254, - [521] = 259, - [522] = 260, - [523] = 261, - [524] = 262, - [525] = 263, - [526] = 264, - [527] = 265, - [528] = 266, - [529] = 234, - [530] = 235, - [531] = 236, - [532] = 232, - [533] = 241, - [534] = 253, - [535] = 240, - [536] = 252, - [537] = 251, - [538] = 250, - [539] = 249, - [540] = 241, - [541] = 239, - [542] = 243, - [543] = 240, - [544] = 244, - [545] = 245, - [546] = 248, - [547] = 247, - [548] = 548, - [549] = 235, - [550] = 548, - [551] = 551, - [552] = 552, - [553] = 553, - [554] = 551, - [555] = 548, - [556] = 556, - [557] = 556, - [558] = 553, - [559] = 553, - [560] = 552, - [561] = 556, - [562] = 552, - [563] = 552, - [564] = 551, - [565] = 548, - [566] = 556, - [567] = 553, - [568] = 552, - [569] = 553, - [570] = 570, - [571] = 556, - [572] = 551, - [573] = 548, - [574] = 548, - [575] = 551, - [576] = 556, - [577] = 553, - [578] = 552, - [579] = 548, - [580] = 551, - [581] = 241, - [582] = 239, - [583] = 243, - [584] = 548, - [585] = 244, - [586] = 245, - [587] = 551, - [588] = 548, - [589] = 247, - [590] = 248, - [591] = 249, - [592] = 551, - [593] = 251, - [594] = 252, - [595] = 253, - [596] = 556, - [597] = 552, - [598] = 254, - [599] = 599, - [600] = 256, - [601] = 233, - [602] = 556, - [603] = 259, - [604] = 260, - [605] = 261, - [606] = 262, - [607] = 263, - [608] = 264, - [609] = 265, - [610] = 266, - [611] = 234, - [612] = 599, - [613] = 236, - [614] = 232, - [615] = 553, - [616] = 556, - [617] = 240, - [618] = 548, - [619] = 551, - [620] = 553, - [621] = 553, - [622] = 556, - [623] = 570, - [624] = 548, - [625] = 552, - [626] = 551, - [627] = 552, - [628] = 556, - [629] = 552, - [630] = 553, - [631] = 551, - [632] = 250, - [633] = 552, - [634] = 553, - [635] = 551, - [636] = 552, - [637] = 553, - [638] = 556, - [639] = 548, - [640] = 640, - [641] = 640, - [642] = 642, - [643] = 642, - [644] = 640, - [645] = 640, - [646] = 642, - [647] = 642, - [648] = 642, - [649] = 640, - [650] = 640, - [651] = 642, - [652] = 640, - [653] = 642, - [654] = 642, - [655] = 642, - [656] = 640, - [657] = 640, - [658] = 642, - [659] = 642, - [660] = 640, + [489] = 237, + [490] = 215, + [491] = 239, + [492] = 237, + [493] = 241, + [494] = 242, + [495] = 212, + [496] = 240, + [497] = 226, + [498] = 242, + [499] = 223, + [500] = 500, + [501] = 240, + [502] = 502, + [503] = 503, + [504] = 502, + [505] = 505, + [506] = 500, + [507] = 507, + [508] = 503, + [509] = 500, + [510] = 507, + [511] = 507, + [512] = 500, + [513] = 502, + [514] = 505, + [515] = 505, + [516] = 503, + [517] = 502, + [518] = 502, + [519] = 507, + [520] = 505, + [521] = 500, + [522] = 507, + [523] = 503, + [524] = 503, + [525] = 502, + [526] = 507, + [527] = 502, + [528] = 505, + [529] = 500, + [530] = 507, + [531] = 500, + [532] = 503, + [533] = 505, + [534] = 502, + [535] = 503, + [536] = 536, + [537] = 507, + [538] = 505, + [539] = 242, + [540] = 223, + [541] = 226, + [542] = 500, + [543] = 500, + [544] = 212, + [545] = 505, + [546] = 507, + [547] = 215, + [548] = 216, + [549] = 217, + [550] = 218, + [551] = 219, + [552] = 220, + [553] = 221, + [554] = 503, + [555] = 555, + [556] = 222, + [557] = 502, + [558] = 224, + [559] = 225, + [560] = 505, + [561] = 227, + [562] = 213, + [563] = 229, + [564] = 230, + [565] = 231, + [566] = 232, + [567] = 233, + [568] = 234, + [569] = 235, + [570] = 236, + [571] = 237, + [572] = 503, + [573] = 239, + [574] = 500, + [575] = 241, + [576] = 502, + [577] = 555, + [578] = 505, + [579] = 507, + [580] = 503, + [581] = 536, + [582] = 505, + [583] = 500, + [584] = 507, + [585] = 503, + [586] = 502, + [587] = 587, + [588] = 587, + [589] = 589, + [590] = 587, + [591] = 587, + [592] = 592, + [593] = 589, + [594] = 589, + [595] = 587, + [596] = 589, + [597] = 587, + [598] = 589, + [599] = 589, + [600] = 589, + [601] = 587, + [602] = 589, + [603] = 589, + [604] = 589, + [605] = 587, + [606] = 587, + [607] = 587, + [608] = 587, + [609] = 589, + [610] = 610, + [611] = 611, + [612] = 612, + [613] = 613, + [614] = 614, + [615] = 615, + [616] = 616, + [617] = 617, + [618] = 618, + [619] = 619, + [620] = 620, + [621] = 619, + [622] = 622, + [623] = 620, + [624] = 619, + [625] = 620, + [626] = 620, + [627] = 619, + [628] = 622, + [629] = 619, + [630] = 619, + [631] = 619, + [632] = 622, + [633] = 620, + [634] = 622, + [635] = 622, + [636] = 620, + [637] = 619, + [638] = 620, + [639] = 622, + [640] = 620, + [641] = 622, + [642] = 620, + [643] = 620, + [644] = 619, + [645] = 622, + [646] = 622, + [647] = 619, + [648] = 622, + [649] = 622, + [650] = 619, + [651] = 620, + [652] = 652, + [653] = 653, + [654] = 653, + [655] = 655, + [656] = 655, + [657] = 657, + [658] = 658, + [659] = 659, + [660] = 660, [661] = 661, - [662] = 640, - [663] = 642, - [664] = 640, + [662] = 662, + [663] = 663, + [664] = 664, [665] = 665, [666] = 666, [667] = 667, - [668] = 668, - [669] = 669, + [668] = 662, + [669] = 662, [670] = 670, [671] = 671, [672] = 672, [673] = 673, [674] = 674, - [675] = 674, - [676] = 674, - [677] = 674, - [678] = 674, - [679] = 674, - [680] = 674, - [681] = 674, - [682] = 674, - [683] = 674, - [684] = 674, - [685] = 674, - [686] = 686, - [687] = 687, - [688] = 687, - [689] = 686, - [690] = 686, - [691] = 687, - [692] = 692, - [693] = 687, - [694] = 686, - [695] = 695, - [696] = 686, - [697] = 692, - [698] = 687, - [699] = 686, - [700] = 686, - [701] = 687, - [702] = 687, - [703] = 703, - [704] = 686, - [705] = 687, - [706] = 687, - [707] = 686, - [708] = 686, - [709] = 703, - [710] = 687, - [711] = 687, - [712] = 686, - [713] = 687, - [714] = 686, - [715] = 715, - [716] = 716, - [717] = 717, - [718] = 718, - [719] = 719, - [720] = 720, - [721] = 721, - [722] = 719, - [723] = 723, - [724] = 724, - [725] = 725, - [726] = 726, - [727] = 727, - [728] = 728, - [729] = 721, - [730] = 719, - [731] = 723, - [732] = 724, - [733] = 725, - [734] = 726, - [735] = 727, - [736] = 736, - [737] = 728, - [738] = 736, - [739] = 739, - [740] = 739, - [741] = 741, - [742] = 742, - [743] = 743, - [744] = 720, - [745] = 745, - [746] = 720, - [747] = 741, - [748] = 742, - [749] = 745, - [750] = 720, - [751] = 745, - [752] = 720, - [753] = 745, - [754] = 720, - [755] = 745, - [756] = 720, - [757] = 721, - [758] = 719, - [759] = 723, - [760] = 724, - [761] = 725, - [762] = 726, - [763] = 727, - [764] = 764, - [765] = 728, - [766] = 736, - [767] = 739, - [768] = 745, - [769] = 741, - [770] = 742, - [771] = 743, - [772] = 724, - [773] = 720, - [774] = 743, - [775] = 719, - [776] = 745, - [777] = 723, - [778] = 720, - [779] = 724, - [780] = 725, - [781] = 726, - [782] = 727, - [783] = 728, - [784] = 736, - [785] = 745, - [786] = 739, - [787] = 720, - [788] = 721, - [789] = 719, - [790] = 723, - [791] = 724, - [792] = 725, - [793] = 726, - [794] = 727, - [795] = 741, - [796] = 728, - [797] = 736, - [798] = 739, - [799] = 742, - [800] = 743, - [801] = 745, - [802] = 741, - [803] = 742, - [804] = 743, - [805] = 743, - [806] = 720, - [807] = 721, - [808] = 745, - [809] = 720, - [810] = 721, - [811] = 719, - [812] = 723, - [813] = 724, - [814] = 725, - [815] = 745, - [816] = 727, - [817] = 728, - [818] = 742, - [819] = 741, - [820] = 736, - [821] = 721, - [822] = 719, - [823] = 723, - [824] = 724, - [825] = 725, - [826] = 726, - [827] = 727, - [828] = 739, - [829] = 728, - [830] = 736, - [831] = 739, - [832] = 741, - [833] = 739, - [834] = 742, - [835] = 741, - [836] = 742, - [837] = 743, - [838] = 736, - [839] = 745, - [840] = 743, - [841] = 743, - [842] = 742, - [843] = 741, - [844] = 739, - [845] = 736, - [846] = 728, - [847] = 727, - [848] = 726, - [849] = 725, - [850] = 724, - [851] = 728, - [852] = 723, - [853] = 721, - [854] = 721, - [855] = 719, - [856] = 723, - [857] = 724, - [858] = 725, - [859] = 726, - [860] = 727, - [861] = 743, - [862] = 728, - [863] = 736, - [864] = 739, - [865] = 727, - [866] = 726, - [867] = 742, - [868] = 741, - [869] = 742, - [870] = 743, - [871] = 725, - [872] = 741, - [873] = 739, - [874] = 736, - [875] = 728, - [876] = 727, - [877] = 726, - [878] = 725, - [879] = 724, - [880] = 723, - [881] = 719, - [882] = 721, - [883] = 743, - [884] = 726, - [885] = 723, - [886] = 742, - [887] = 721, - [888] = 719, - [889] = 723, - [890] = 724, - [891] = 725, - [892] = 726, - [893] = 727, - [894] = 741, - [895] = 728, - [896] = 736, - [897] = 739, - [898] = 719, - [899] = 721, - [900] = 900, - [901] = 901, - [902] = 902, - [903] = 903, - [904] = 902, - [905] = 905, - [906] = 906, - [907] = 907, - [908] = 908, - [909] = 909, - [910] = 910, - [911] = 911, - [912] = 912, - [913] = 913, - [914] = 914, - [915] = 915, - [916] = 903, - [917] = 903, - [918] = 915, - [919] = 902, - [920] = 915, - [921] = 914, - [922] = 913, - [923] = 912, - [924] = 911, - [925] = 910, - [926] = 909, - [927] = 901, - [928] = 908, - [929] = 907, - [930] = 906, - [931] = 914, - [932] = 913, - [933] = 900, - [934] = 905, - [935] = 900, - [936] = 901, - [937] = 912, - [938] = 905, - [939] = 906, - [940] = 907, - [941] = 908, - [942] = 909, - [943] = 910, - [944] = 911, - [945] = 912, - [946] = 913, - [947] = 914, - [948] = 915, - [949] = 903, - [950] = 911, - [951] = 910, - [952] = 902, - [953] = 902, - [954] = 909, - [955] = 901, - [956] = 903, - [957] = 915, - [958] = 914, - [959] = 913, - [960] = 901, - [961] = 912, - [962] = 911, - [963] = 910, - [964] = 908, - [965] = 907, - [966] = 900, - [967] = 909, - [968] = 908, - [969] = 907, - [970] = 906, - [971] = 905, - [972] = 906, - [973] = 907, - [974] = 908, - [975] = 909, - [976] = 910, - [977] = 911, - [978] = 912, - [979] = 913, - [980] = 914, - [981] = 915, - [982] = 903, - [983] = 905, - [984] = 906, - [985] = 902, - [986] = 986, - [987] = 987, - [988] = 988, - [989] = 905, - [990] = 900, - [991] = 900, - [992] = 900, - [993] = 901, - [994] = 902, - [995] = 903, - [996] = 901, - [997] = 909, - [998] = 915, - [999] = 999, - [1000] = 1000, - [1001] = 1001, - [1002] = 1002, - [1003] = 986, - [1004] = 987, - [1005] = 988, - [1006] = 914, - [1007] = 910, - [1008] = 913, - [1009] = 912, - [1010] = 911, - [1011] = 910, - [1012] = 909, - [1013] = 902, - [1014] = 908, - [1015] = 903, - [1016] = 999, - [1017] = 1001, - [1018] = 1002, - [1019] = 986, - [1020] = 987, - [1021] = 988, - [1022] = 907, - [1023] = 915, - [1024] = 914, - [1025] = 913, - [1026] = 912, - [1027] = 911, - [1028] = 906, - [1029] = 909, - [1030] = 905, - [1031] = 908, - [1032] = 999, - [1033] = 1001, - [1034] = 1002, - [1035] = 986, - [1036] = 987, - [1037] = 988, - [1038] = 900, - [1039] = 907, - [1040] = 906, - [1041] = 905, - [1042] = 905, - [1043] = 906, - [1044] = 901, - [1045] = 900, - [1046] = 902, - [1047] = 907, - [1048] = 999, - [1049] = 1001, - [1050] = 1002, - [1051] = 986, - [1052] = 987, - [1053] = 988, - [1054] = 908, - [1055] = 903, - [1056] = 915, - [1057] = 901, - [1058] = 914, - [1059] = 913, - [1060] = 912, - [1061] = 911, - [1062] = 910, - [1063] = 909, - [1064] = 999, - [1065] = 1001, - [1066] = 1002, - [1067] = 986, - [1068] = 987, - [1069] = 988, - [1070] = 908, - [1071] = 907, + [675] = 675, + [676] = 661, + [677] = 667, + [678] = 678, + [679] = 679, + [680] = 663, + [681] = 681, + [682] = 679, + [683] = 681, + [684] = 670, + [685] = 671, + [686] = 672, + [687] = 673, + [688] = 674, + [689] = 675, + [690] = 665, + [691] = 661, + [692] = 667, + [693] = 678, + [694] = 663, + [695] = 661, + [696] = 679, + [697] = 666, + [698] = 664, + [699] = 665, + [700] = 666, + [701] = 675, + [702] = 681, + [703] = 679, + [704] = 681, + [705] = 679, + [706] = 681, + [707] = 679, + [708] = 681, + [709] = 679, + [710] = 710, + [711] = 664, + [712] = 681, + [713] = 674, + [714] = 679, + [715] = 673, + [716] = 670, + [717] = 662, + [718] = 670, + [719] = 671, + [720] = 672, + [721] = 673, + [722] = 674, + [723] = 675, + [724] = 671, + [725] = 661, + [726] = 667, + [727] = 678, + [728] = 663, + [729] = 672, + [730] = 671, + [731] = 672, + [732] = 664, + [733] = 665, + [734] = 666, + [735] = 670, + [736] = 673, + [737] = 674, + [738] = 675, + [739] = 681, + [740] = 679, + [741] = 661, + [742] = 667, + [743] = 678, + [744] = 663, + [745] = 664, + [746] = 665, + [747] = 662, + [748] = 681, + [749] = 666, + [750] = 679, + [751] = 662, + [752] = 670, + [753] = 671, + [754] = 672, + [755] = 673, + [756] = 674, + [757] = 675, + [758] = 681, + [759] = 661, + [760] = 667, + [761] = 678, + [762] = 663, + [763] = 679, + [764] = 678, + [765] = 670, + [766] = 664, + [767] = 665, + [768] = 666, + [769] = 681, + [770] = 671, + [771] = 672, + [772] = 673, + [773] = 666, + [774] = 665, + [775] = 664, + [776] = 674, + [777] = 675, + [778] = 663, + [779] = 678, + [780] = 667, + [781] = 675, + [782] = 674, + [783] = 673, + [784] = 672, + [785] = 662, + [786] = 670, + [787] = 671, + [788] = 672, + [789] = 673, + [790] = 674, + [791] = 675, + [792] = 671, + [793] = 661, + [794] = 667, + [795] = 678, + [796] = 663, + [797] = 670, + [798] = 662, + [799] = 662, + [800] = 664, + [801] = 665, + [802] = 666, + [803] = 661, + [804] = 667, + [805] = 678, + [806] = 666, + [807] = 665, + [808] = 664, + [809] = 663, + [810] = 663, + [811] = 678, + [812] = 667, + [813] = 661, + [814] = 675, + [815] = 674, + [816] = 673, + [817] = 672, + [818] = 671, + [819] = 662, + [820] = 670, + [821] = 671, + [822] = 672, + [823] = 673, + [824] = 674, + [825] = 675, + [826] = 670, + [827] = 661, + [828] = 667, + [829] = 678, + [830] = 663, + [831] = 662, + [832] = 664, + [833] = 665, + [834] = 664, + [835] = 665, + [836] = 666, + [837] = 666, + [838] = 838, + [839] = 839, + [840] = 840, + [841] = 841, + [842] = 842, + [843] = 843, + [844] = 844, + [845] = 845, + [846] = 846, + [847] = 847, + [848] = 848, + [849] = 849, + [850] = 850, + [851] = 838, + [852] = 852, + [853] = 839, + [854] = 854, + [855] = 852, + [856] = 840, + [857] = 850, + [858] = 841, + [859] = 848, + [860] = 854, + [861] = 847, + [862] = 846, + [863] = 845, + [864] = 844, + [865] = 849, + [866] = 843, + [867] = 849, + [868] = 842, + [869] = 841, + [870] = 840, + [871] = 839, + [872] = 838, + [873] = 839, + [874] = 840, + [875] = 841, + [876] = 842, + [877] = 843, + [878] = 844, + [879] = 845, + [880] = 846, + [881] = 847, + [882] = 848, + [883] = 838, + [884] = 850, + [885] = 842, + [886] = 852, + [887] = 849, + [888] = 844, + [889] = 854, + [890] = 852, + [891] = 845, + [892] = 850, + [893] = 846, + [894] = 854, + [895] = 854, + [896] = 848, + [897] = 847, + [898] = 846, + [899] = 845, + [900] = 844, + [901] = 849, + [902] = 843, + [903] = 842, + [904] = 841, + [905] = 840, + [906] = 838, + [907] = 839, + [908] = 840, + [909] = 841, + [910] = 842, + [911] = 843, + [912] = 844, + [913] = 845, + [914] = 846, + [915] = 847, + [916] = 848, + [917] = 839, + [918] = 850, + [919] = 838, + [920] = 852, + [921] = 921, + [922] = 922, + [923] = 923, + [924] = 843, + [925] = 849, + [926] = 848, + [927] = 852, + [928] = 850, + [929] = 848, + [930] = 847, + [931] = 846, + [932] = 850, + [933] = 845, + [934] = 934, + [935] = 935, + [936] = 936, + [937] = 937, + [938] = 921, + [939] = 922, + [940] = 923, + [941] = 854, + [942] = 844, + [943] = 843, + [944] = 842, + [945] = 841, + [946] = 840, + [947] = 839, + [948] = 838, + [949] = 852, + [950] = 852, + [951] = 935, + [952] = 936, + [953] = 937, + [954] = 921, + [955] = 922, + [956] = 923, + [957] = 850, + [958] = 848, + [959] = 847, + [960] = 849, + [961] = 846, + [962] = 845, + [963] = 844, + [964] = 843, + [965] = 842, + [966] = 854, + [967] = 935, + [968] = 936, + [969] = 937, + [970] = 921, + [971] = 922, + [972] = 923, + [973] = 841, + [974] = 840, + [975] = 839, + [976] = 838, + [977] = 849, + [978] = 854, + [979] = 852, + [980] = 980, + [981] = 850, + [982] = 982, + [983] = 935, + [984] = 936, + [985] = 937, + [986] = 921, + [987] = 922, + [988] = 923, + [989] = 848, + [990] = 614, + [991] = 847, + [992] = 617, + [993] = 852, + [994] = 850, + [995] = 995, + [996] = 846, + [997] = 845, + [998] = 998, + [999] = 935, + [1000] = 936, + [1001] = 937, + [1002] = 921, + [1003] = 922, + [1004] = 923, + [1005] = 844, + [1006] = 937, + [1007] = 936, + [1008] = 1008, + [1009] = 935, + [1010] = 848, + [1011] = 847, + [1012] = 1012, + [1013] = 843, + [1014] = 846, + [1015] = 935, + [1016] = 936, + [1017] = 937, + [1018] = 921, + [1019] = 922, + [1020] = 923, + [1021] = 842, + [1022] = 845, + [1023] = 844, + [1024] = 843, + [1025] = 842, + [1026] = 841, + [1027] = 840, + [1028] = 839, + [1029] = 841, + [1030] = 934, + [1031] = 935, + [1032] = 936, + [1033] = 937, + [1034] = 921, + [1035] = 922, + [1036] = 923, + [1037] = 840, + [1038] = 838, + [1039] = 1039, + [1040] = 839, + [1041] = 838, + [1042] = 923, + [1043] = 922, + [1044] = 849, + [1045] = 854, + [1046] = 854, + [1047] = 935, + [1048] = 936, + [1049] = 937, + [1050] = 921, + [1051] = 922, + [1052] = 923, + [1053] = 852, + [1054] = 921, + [1055] = 849, + [1056] = 1056, + [1057] = 1057, + [1058] = 1058, + [1059] = 1059, + [1060] = 1060, + [1061] = 850, + [1062] = 1062, + [1063] = 935, + [1064] = 936, + [1065] = 937, + [1066] = 921, + [1067] = 922, + [1068] = 923, + [1069] = 847, + [1070] = 1070, + [1071] = 1071, [1072] = 1072, [1073] = 1073, - [1074] = 673, - [1075] = 906, - [1076] = 672, - [1077] = 902, - [1078] = 905, - [1079] = 1079, - [1080] = 999, - [1081] = 1001, - [1082] = 1002, - [1083] = 986, - [1084] = 987, - [1085] = 988, - [1086] = 900, - [1087] = 901, - [1088] = 1088, - [1089] = 1002, - [1090] = 1001, - [1091] = 1091, - [1092] = 903, - [1093] = 915, - [1094] = 902, - [1095] = 914, - [1096] = 999, - [1097] = 1001, - [1098] = 1002, - [1099] = 986, - [1100] = 987, - [1101] = 988, - [1102] = 903, - [1103] = 1103, - [1104] = 913, - [1105] = 912, - [1106] = 911, - [1107] = 910, - [1108] = 909, - [1109] = 908, - [1110] = 915, - [1111] = 907, - [1112] = 999, - [1113] = 1001, - [1114] = 1002, - [1115] = 986, - [1116] = 987, - [1117] = 988, - [1118] = 914, - [1119] = 906, - [1120] = 1000, - [1121] = 905, - [1122] = 999, - [1123] = 913, - [1124] = 912, - [1125] = 988, - [1126] = 911, - [1127] = 987, - [1128] = 999, - [1129] = 1001, - [1130] = 1002, - [1131] = 986, - [1132] = 987, - [1133] = 988, - [1134] = 910, - [1135] = 986, - [1136] = 909, - [1137] = 908, - [1138] = 900, - [1139] = 1139, - [1140] = 1140, - [1141] = 1141, - [1142] = 907, - [1143] = 1143, - [1144] = 999, - [1145] = 1001, - [1146] = 1002, - [1147] = 986, - [1148] = 987, - [1149] = 988, - [1150] = 906, - [1151] = 1151, - [1152] = 1152, - [1153] = 1153, - [1154] = 1154, - [1155] = 1155, - [1156] = 1156, - [1157] = 1157, - [1158] = 905, - [1159] = 1159, - [1160] = 999, - [1161] = 1001, - [1162] = 1002, - [1163] = 1156, - [1164] = 1155, - [1165] = 1154, - [1166] = 1153, - [1167] = 1152, - [1168] = 1151, - [1169] = 1143, - [1170] = 1141, - [1171] = 900, - [1172] = 1156, - [1173] = 1155, - [1174] = 1154, - [1175] = 1153, - [1176] = 1152, - [1177] = 1151, - [1178] = 1143, - [1179] = 1141, - [1180] = 901, - [1181] = 1156, - [1182] = 1155, - [1183] = 1154, - [1184] = 1153, - [1185] = 1152, - [1186] = 1151, - [1187] = 1143, - [1188] = 1141, - [1189] = 902, - [1190] = 1156, - [1191] = 1155, - [1192] = 1154, - [1193] = 1153, - [1194] = 1152, - [1195] = 1151, - [1196] = 1143, - [1197] = 1141, - [1198] = 901, - [1199] = 1156, - [1200] = 1155, - [1201] = 1154, - [1202] = 1153, - [1203] = 1152, - [1204] = 1151, - [1205] = 1143, - [1206] = 1141, - [1207] = 903, - [1208] = 1156, - [1209] = 1155, - [1210] = 1154, - [1211] = 1153, - [1212] = 1152, - [1213] = 1151, - [1214] = 1143, - [1215] = 1141, - [1216] = 915, - [1217] = 1156, - [1218] = 1155, - [1219] = 1154, - [1220] = 1153, - [1221] = 1152, - [1222] = 1151, - [1223] = 1143, - [1224] = 1141, - [1225] = 914, - [1226] = 1156, - [1227] = 1155, - [1228] = 1154, - [1229] = 1153, - [1230] = 1152, - [1231] = 1151, - [1232] = 1143, - [1233] = 1141, - [1234] = 913, - [1235] = 1156, - [1236] = 1155, - [1237] = 1154, - [1238] = 1153, - [1239] = 1152, - [1240] = 1151, - [1241] = 1143, - [1242] = 1141, - [1243] = 912, - [1244] = 1156, - [1245] = 1155, - [1246] = 1154, - [1247] = 1153, - [1248] = 1152, - [1249] = 1151, - [1250] = 1143, - [1251] = 1141, - [1252] = 911, - [1253] = 1156, - [1254] = 1155, - [1255] = 1154, - [1256] = 1153, - [1257] = 1152, - [1258] = 1151, - [1259] = 1143, - [1260] = 1141, - [1261] = 910, - [1262] = 1139, - [1263] = 1139, - [1264] = 1139, - [1265] = 1139, - [1266] = 1139, - [1267] = 1139, - [1268] = 1139, - [1269] = 1139, - [1270] = 1139, - [1271] = 1139, - [1272] = 1139, + [1074] = 1074, + [1075] = 1075, + [1076] = 848, + [1077] = 847, + [1078] = 846, + [1079] = 935, + [1080] = 936, + [1081] = 937, + [1082] = 1073, + [1083] = 1072, + [1084] = 1071, + [1085] = 1070, + [1086] = 1062, + [1087] = 1060, + [1088] = 1059, + [1089] = 1058, + [1090] = 1039, + [1091] = 845, + [1092] = 1073, + [1093] = 1072, + [1094] = 1071, + [1095] = 1070, + [1096] = 1062, + [1097] = 1060, + [1098] = 1059, + [1099] = 1058, + [1100] = 1039, + [1101] = 844, + [1102] = 1073, + [1103] = 1072, + [1104] = 1071, + [1105] = 1070, + [1106] = 1062, + [1107] = 1060, + [1108] = 1059, + [1109] = 1058, + [1110] = 1039, + [1111] = 854, + [1112] = 1073, + [1113] = 1072, + [1114] = 1071, + [1115] = 1070, + [1116] = 1062, + [1117] = 1060, + [1118] = 1059, + [1119] = 1058, + [1120] = 1039, + [1121] = 843, + [1122] = 1073, + [1123] = 1072, + [1124] = 1071, + [1125] = 1070, + [1126] = 1062, + [1127] = 1060, + [1128] = 1059, + [1129] = 1058, + [1130] = 1039, + [1131] = 842, + [1132] = 1073, + [1133] = 1072, + [1134] = 1071, + [1135] = 1070, + [1136] = 1062, + [1137] = 1060, + [1138] = 1059, + [1139] = 1058, + [1140] = 1039, + [1141] = 841, + [1142] = 1073, + [1143] = 1072, + [1144] = 1071, + [1145] = 1070, + [1146] = 1062, + [1147] = 1060, + [1148] = 1059, + [1149] = 1058, + [1150] = 1039, + [1151] = 840, + [1152] = 1073, + [1153] = 1072, + [1154] = 1071, + [1155] = 1070, + [1156] = 1062, + [1157] = 1060, + [1158] = 1059, + [1159] = 1058, + [1160] = 1039, + [1161] = 839, + [1162] = 1073, + [1163] = 1072, + [1164] = 1071, + [1165] = 1070, + [1166] = 1062, + [1167] = 1060, + [1168] = 1059, + [1169] = 1058, + [1170] = 1039, + [1171] = 838, + [1172] = 1073, + [1173] = 1072, + [1174] = 1071, + [1175] = 1070, + [1176] = 1062, + [1177] = 1060, + [1178] = 1059, + [1179] = 1058, + [1180] = 1039, + [1181] = 849, + [1182] = 1056, + [1183] = 1056, + [1184] = 1056, + [1185] = 1056, + [1186] = 1056, + [1187] = 1056, + [1188] = 1056, + [1189] = 1056, + [1190] = 1056, + [1191] = 1056, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -2425,176 +2339,178 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { switch (state) { case 0: if (eof) ADVANCE(41); - if (lookahead == '\n') ADVANCE(152); + if (lookahead == '\n') ADVANCE(153); if (lookahead == '\r') SKIP(31) - if (lookahead == '!') ADVANCE(162); - if (lookahead == '"') ADVANCE(170); - if (lookahead == '$') ADVANCE(134); - if (lookahead == '%') ADVANCE(129); - if (lookahead == '(') ADVANCE(124); - if (lookahead == ')') ADVANCE(127); + if (lookahead == '!') ADVANCE(163); + if (lookahead == '"') ADVANCE(171); + if (lookahead == '$') ADVANCE(135); + if (lookahead == '%') ADVANCE(130); + if (lookahead == '(') ADVANCE(127); if (lookahead == '*') ADVANCE(48); - if (lookahead == '-') ADVANCE(154); - if (lookahead == '.') ADVANCE(167); - if (lookahead == ':') ADVANCE(165); + if (lookahead == '-') ADVANCE(155); + if (lookahead == '.') ADVANCE(168); + if (lookahead == ':') ADVANCE(166); if (lookahead == '<') ADVANCE(77); - if (lookahead == '=') ADVANCE(169); + if (lookahead == '=') ADVANCE(170); if (lookahead == '>') ADVANCE(104); - if (lookahead == 'F') ADVANCE(156); - if (lookahead == 'I') ADVANCE(158); - if (lookahead == 'N') ADVANCE(159); - if (lookahead == 'T') ADVANCE(160); - if (lookahead == 'W') ADVANCE(157); - if (lookahead == 'X') ADVANCE(161); + if (lookahead == 'F') ADVANCE(157); + if (lookahead == 'I') ADVANCE(159); + if (lookahead == 'N') ADVANCE(160); + if (lookahead == 'T') ADVANCE(161); + if (lookahead == 'W') ADVANCE(158); + if (lookahead == 'X') ADVANCE(162); if (lookahead == '[') ADVANCE(114); if (lookahead == '\\') ADVANCE(66); if (lookahead == ']') ADVANCE(122); if (lookahead == '^') ADVANCE(52); if (lookahead == '_') ADVANCE(44); if (lookahead == '{') ADVANCE(117); - if (lookahead == '}') ADVANCE(128); + if (lookahead == '}') ADVANCE(129); if (lookahead == '~') ADVANCE(56); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(151); + lookahead == ' ') ADVANCE(152); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(153); + lookahead != '\f') ADVANCE(154); END_STATE(); case 1: - if (lookahead == '\n') ADVANCE(152); + if (lookahead == '\n') ADVANCE(153); if (lookahead == '\r') SKIP(2) - if (lookahead == '!') ADVANCE(162); - if (lookahead == '"') ADVANCE(163); - if (lookahead == '$') ADVANCE(134); - if (lookahead == '\'') ADVANCE(163); + if (lookahead == '!') ADVANCE(163); + if (lookahead == '"') ADVANCE(164); + if (lookahead == '$') ADVANCE(135); + if (lookahead == '\'') ADVANCE(164); + if (lookahead == '(') ADVANCE(127); if (lookahead == '*') ADVANCE(48); - if (lookahead == '-') ADVANCE(154); - if (lookahead == '.') ADVANCE(155); - if (lookahead == ':') ADVANCE(165); + if (lookahead == '-') ADVANCE(155); + if (lookahead == '.') ADVANCE(156); + if (lookahead == ':') ADVANCE(166); if (lookahead == '<') ADVANCE(77); - if (lookahead == 'F') ADVANCE(156); - if (lookahead == 'I') ADVANCE(158); - if (lookahead == 'N') ADVANCE(159); - if (lookahead == 'T') ADVANCE(160); - if (lookahead == 'W') ADVANCE(157); - if (lookahead == 'X') ADVANCE(161); + if (lookahead == 'F') ADVANCE(157); + if (lookahead == 'I') ADVANCE(159); + if (lookahead == 'N') ADVANCE(160); + if (lookahead == 'T') ADVANCE(161); + if (lookahead == 'W') ADVANCE(158); + if (lookahead == 'X') ADVANCE(162); if (lookahead == '[') ADVANCE(114); if (lookahead == '\\') ADVANCE(64); if (lookahead == ']') ADVANCE(122); if (lookahead == '^') ADVANCE(52); if (lookahead == '_') ADVANCE(44); - if (lookahead == '{') ADVANCE(164); + if (lookahead == '{') ADVANCE(165); if (lookahead == '~') ADVANCE(56); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(151); + lookahead == ' ') ADVANCE(152); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(153); + lookahead != '\f') ADVANCE(154); END_STATE(); case 2: - if (lookahead == '\n') ADVANCE(152); + if (lookahead == '\n') ADVANCE(153); if (lookahead == '\r') SKIP(2) - if (lookahead == '!') ADVANCE(162); - if (lookahead == '"') ADVANCE(163); - if (lookahead == '$') ADVANCE(134); - if (lookahead == '\'') ADVANCE(163); + if (lookahead == '!') ADVANCE(163); + if (lookahead == '"') ADVANCE(164); + if (lookahead == '$') ADVANCE(135); + if (lookahead == '\'') ADVANCE(164); + if (lookahead == '(') ADVANCE(127); if (lookahead == '*') ADVANCE(48); - if (lookahead == '-') ADVANCE(154); - if (lookahead == '.') ADVANCE(155); - if (lookahead == ':') ADVANCE(165); + if (lookahead == '-') ADVANCE(155); + if (lookahead == '.') ADVANCE(156); + if (lookahead == ':') ADVANCE(166); if (lookahead == '<') ADVANCE(77); - if (lookahead == 'F') ADVANCE(156); - if (lookahead == 'I') ADVANCE(158); - if (lookahead == 'N') ADVANCE(159); - if (lookahead == 'T') ADVANCE(160); - if (lookahead == 'W') ADVANCE(157); - if (lookahead == 'X') ADVANCE(161); + if (lookahead == 'F') ADVANCE(157); + if (lookahead == 'I') ADVANCE(159); + if (lookahead == 'N') ADVANCE(160); + if (lookahead == 'T') ADVANCE(161); + if (lookahead == 'W') ADVANCE(158); + if (lookahead == 'X') ADVANCE(162); if (lookahead == '[') ADVANCE(114); if (lookahead == '\\') ADVANCE(64); if (lookahead == '^') ADVANCE(52); if (lookahead == '_') ADVANCE(44); - if (lookahead == '{') ADVANCE(164); + if (lookahead == '{') ADVANCE(165); if (lookahead == '~') ADVANCE(56); if (lookahead != 0 && (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(153); + lookahead != ' ') ADVANCE(154); END_STATE(); case 3: - if (lookahead == '\n') ADVANCE(152); + if (lookahead == '\n') ADVANCE(153); if (lookahead == '\r') SKIP(4) - if (lookahead == '!') ADVANCE(162); - if (lookahead == '"') ADVANCE(163); - if (lookahead == '$') ADVANCE(134); - if (lookahead == '\'') ADVANCE(163); - if (lookahead == '*') ADVANCE(48); - if (lookahead == '-') ADVANCE(154); - if (lookahead == '.') ADVANCE(155); - if (lookahead == ':') ADVANCE(165); - if (lookahead == '<') ADVANCE(77); - if (lookahead == '>') ADVANCE(104); - if (lookahead == 'F') ADVANCE(156); - if (lookahead == 'I') ADVANCE(158); - if (lookahead == 'N') ADVANCE(159); - if (lookahead == 'T') ADVANCE(160); - if (lookahead == 'W') ADVANCE(157); - if (lookahead == 'X') ADVANCE(161); - if (lookahead == '[') ADVANCE(114); - if (lookahead == '\\') ADVANCE(64); - if (lookahead == ']') ADVANCE(122); - if (lookahead == '^') ADVANCE(52); - if (lookahead == '_') ADVANCE(44); - if (lookahead == '{') ADVANCE(120); - if (lookahead == '~') ADVANCE(56); + if (lookahead == '!') ADVANCE(100); + if (lookahead == '"') ADVANCE(101); + if (lookahead == '$') ADVANCE(136); + if (lookahead == '\'') ADVANCE(101); + if (lookahead == '(') ADVANCE(128); + if (lookahead == '*') ADVANCE(49); + if (lookahead == '-') ADVANCE(79); + if (lookahead == '.') ADVANCE(81); + if (lookahead == ':') ADVANCE(102); + if (lookahead == '<') ADVANCE(78); + if (lookahead == '>') ADVANCE(154); + if (lookahead == 'F') ADVANCE(88); + if (lookahead == 'I') ADVANCE(90); + if (lookahead == 'N') ADVANCE(91); + if (lookahead == 'T') ADVANCE(92); + if (lookahead == 'W') ADVANCE(87); + if (lookahead == 'X') ADVANCE(99); + if (lookahead == '[') ADVANCE(115); + if (lookahead == '\\') ADVANCE(65); + if (lookahead == ']') ADVANCE(123); + if (lookahead == '^') ADVANCE(53); + if (lookahead == '_') ADVANCE(45); + if (lookahead == '{') ADVANCE(121); + if (lookahead == '~') ADVANCE(57); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(151); + lookahead == ' ') ADVANCE(152); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(153); + lookahead != '\f') ADVANCE(103); END_STATE(); case 4: - if (lookahead == '\n') ADVANCE(152); + if (lookahead == '\n') ADVANCE(153); if (lookahead == '\r') SKIP(4) - if (lookahead == '!') ADVANCE(162); - if (lookahead == '"') ADVANCE(163); - if (lookahead == '$') ADVANCE(134); - if (lookahead == '\'') ADVANCE(163); - if (lookahead == '*') ADVANCE(48); - if (lookahead == '-') ADVANCE(154); - if (lookahead == '.') ADVANCE(155); - if (lookahead == ':') ADVANCE(165); - if (lookahead == '<') ADVANCE(77); - if (lookahead == '>') ADVANCE(104); - if (lookahead == 'F') ADVANCE(156); - if (lookahead == 'I') ADVANCE(158); - if (lookahead == 'N') ADVANCE(159); - if (lookahead == 'T') ADVANCE(160); - if (lookahead == 'W') ADVANCE(157); - if (lookahead == 'X') ADVANCE(161); - if (lookahead == '[') ADVANCE(114); - if (lookahead == '\\') ADVANCE(64); - if (lookahead == '^') ADVANCE(52); - if (lookahead == '_') ADVANCE(44); - if (lookahead == '{') ADVANCE(120); - if (lookahead == '~') ADVANCE(56); + if (lookahead == '!') ADVANCE(100); + if (lookahead == '"') ADVANCE(101); + if (lookahead == '$') ADVANCE(136); + if (lookahead == '\'') ADVANCE(101); + if (lookahead == '(') ADVANCE(128); + if (lookahead == '*') ADVANCE(49); + if (lookahead == '-') ADVANCE(79); + if (lookahead == '.') ADVANCE(81); + if (lookahead == ':') ADVANCE(102); + if (lookahead == '<') ADVANCE(78); + if (lookahead == '>') ADVANCE(154); + if (lookahead == 'F') ADVANCE(88); + if (lookahead == 'I') ADVANCE(90); + if (lookahead == 'N') ADVANCE(91); + if (lookahead == 'T') ADVANCE(92); + if (lookahead == 'W') ADVANCE(87); + if (lookahead == 'X') ADVANCE(99); + if (lookahead == '[') ADVANCE(115); + if (lookahead == '\\') ADVANCE(65); + if (lookahead == '^') ADVANCE(53); + if (lookahead == '_') ADVANCE(45); + if (lookahead == '{') ADVANCE(121); + if (lookahead == '~') ADVANCE(57); if (lookahead != 0 && (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(153); + lookahead != ' ') ADVANCE(103); END_STATE(); case 5: - if (lookahead == '\n') ADVANCE(152); + if (lookahead == '\n') ADVANCE(153); if (lookahead == '\r') SKIP(6) - if (lookahead == '"') ADVANCE(170); + if (lookahead == '"') ADVANCE(171); if (lookahead == '#') ADVANCE(30); - if (lookahead == '%') ADVANCE(129); - if (lookahead == '(') ADVANCE(124); - if (lookahead == ')') ADVANCE(127); - if (lookahead == '.') ADVANCE(166); - if (lookahead == '=') ADVANCE(169); + if (lookahead == '%') ADVANCE(130); + if (lookahead == '(') ADVANCE(127); + if (lookahead == '.') ADVANCE(167); + if (lookahead == '=') ADVANCE(170); if (lookahead == '[') ADVANCE(113); if (lookahead == '{') ADVANCE(116); - if (lookahead == '}') ADVANCE(128); + if (lookahead == '}') ADVANCE(129); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(151); + lookahead == ' ') ADVANCE(152); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -2602,18 +2518,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(108); END_STATE(); case 6: - if (lookahead == '\n') ADVANCE(152); + if (lookahead == '\n') ADVANCE(153); if (lookahead == '\r') SKIP(6) - if (lookahead == '"') ADVANCE(170); + if (lookahead == '"') ADVANCE(171); if (lookahead == '#') ADVANCE(30); - if (lookahead == '%') ADVANCE(129); - if (lookahead == '(') ADVANCE(124); - if (lookahead == ')') ADVANCE(127); - if (lookahead == '.') ADVANCE(166); - if (lookahead == '=') ADVANCE(169); + if (lookahead == '%') ADVANCE(130); + if (lookahead == '(') ADVANCE(127); + if (lookahead == '.') ADVANCE(167); + if (lookahead == '=') ADVANCE(170); if (lookahead == '[') ADVANCE(112); if (lookahead == '{') ADVANCE(116); - if (lookahead == '}') ADVANCE(128); + if (lookahead == '}') ADVANCE(129); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -2621,30 +2536,31 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(108); END_STATE(); case 7: - if (lookahead == '\n') ADVANCE(152); - if (lookahead == '\r') ADVANCE(131); - if (lookahead == '%') ADVANCE(129); - if (lookahead == '\\') ADVANCE(132); - if (lookahead != 0) ADVANCE(130); + if (lookahead == '\n') ADVANCE(153); + if (lookahead == '\r') ADVANCE(132); + if (lookahead == '%') ADVANCE(130); + if (lookahead == '\\') ADVANCE(133); + if (lookahead != 0) ADVANCE(131); END_STATE(); case 8: - if (lookahead == '\n') ADVANCE(152); + if (lookahead == '\n') ADVANCE(153); if (lookahead == '\r') SKIP(10) - if (lookahead == '!') ADVANCE(162); - if (lookahead == '"') ADVANCE(163); - if (lookahead == '$') ADVANCE(134); - if (lookahead == '\'') ADVANCE(163); + if (lookahead == '!') ADVANCE(163); + if (lookahead == '"') ADVANCE(164); + if (lookahead == '$') ADVANCE(135); + if (lookahead == '\'') ADVANCE(164); + if (lookahead == '(') ADVANCE(127); if (lookahead == '*') ADVANCE(48); - if (lookahead == '-') ADVANCE(154); - if (lookahead == '.') ADVANCE(155); - if (lookahead == ':') ADVANCE(165); + if (lookahead == '-') ADVANCE(155); + if (lookahead == '.') ADVANCE(156); + if (lookahead == ':') ADVANCE(166); if (lookahead == '<') ADVANCE(77); - if (lookahead == 'F') ADVANCE(156); - if (lookahead == 'I') ADVANCE(158); - if (lookahead == 'N') ADVANCE(159); - if (lookahead == 'T') ADVANCE(160); - if (lookahead == 'W') ADVANCE(157); - if (lookahead == 'X') ADVANCE(161); + if (lookahead == 'F') ADVANCE(157); + if (lookahead == 'I') ADVANCE(159); + if (lookahead == 'N') ADVANCE(160); + if (lookahead == 'T') ADVANCE(161); + if (lookahead == 'W') ADVANCE(158); + if (lookahead == 'X') ADVANCE(162); if (lookahead == '[') ADVANCE(114); if (lookahead == '\\') ADVANCE(64); if (lookahead == ']') ADVANCE(122); @@ -2653,29 +2569,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '{') ADVANCE(120); if (lookahead == '~') ADVANCE(56); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(151); + lookahead == ' ') ADVANCE(152); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(153); + lookahead != '\f') ADVANCE(154); END_STATE(); case 9: - if (lookahead == '\n') ADVANCE(152); + if (lookahead == '\n') ADVANCE(153); if (lookahead == '\r') SKIP(10) - if (lookahead == '!') ADVANCE(162); - if (lookahead == '"') ADVANCE(163); - if (lookahead == '$') ADVANCE(134); - if (lookahead == '\'') ADVANCE(163); + if (lookahead == '!') ADVANCE(163); + if (lookahead == '"') ADVANCE(164); + if (lookahead == '$') ADVANCE(135); + if (lookahead == '\'') ADVANCE(164); + if (lookahead == '(') ADVANCE(127); if (lookahead == '*') ADVANCE(48); - if (lookahead == '-') ADVANCE(154); - if (lookahead == '.') ADVANCE(155); - if (lookahead == ':') ADVANCE(165); + if (lookahead == '-') ADVANCE(155); + if (lookahead == '.') ADVANCE(156); + if (lookahead == ':') ADVANCE(166); if (lookahead == '<') ADVANCE(77); - if (lookahead == 'F') ADVANCE(156); - if (lookahead == 'I') ADVANCE(158); - if (lookahead == 'N') ADVANCE(159); - if (lookahead == 'T') ADVANCE(160); - if (lookahead == 'W') ADVANCE(157); - if (lookahead == 'X') ADVANCE(161); + if (lookahead == 'F') ADVANCE(157); + if (lookahead == 'I') ADVANCE(159); + if (lookahead == 'N') ADVANCE(160); + if (lookahead == 'T') ADVANCE(161); + if (lookahead == 'W') ADVANCE(158); + if (lookahead == 'X') ADVANCE(162); if (lookahead == '[') ADVANCE(114); if (lookahead == '\\') ADVANCE(64); if (lookahead == ']') ADVANCE(122); @@ -2684,29 +2601,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '{') ADVANCE(119); if (lookahead == '~') ADVANCE(56); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(151); + lookahead == ' ') ADVANCE(152); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(153); + lookahead != '\f') ADVANCE(154); END_STATE(); case 10: - if (lookahead == '\n') ADVANCE(152); + if (lookahead == '\n') ADVANCE(153); if (lookahead == '\r') SKIP(10) - if (lookahead == '!') ADVANCE(162); - if (lookahead == '"') ADVANCE(163); - if (lookahead == '$') ADVANCE(134); - if (lookahead == '\'') ADVANCE(163); + if (lookahead == '!') ADVANCE(163); + if (lookahead == '"') ADVANCE(164); + if (lookahead == '$') ADVANCE(135); + if (lookahead == '\'') ADVANCE(164); + if (lookahead == '(') ADVANCE(127); if (lookahead == '*') ADVANCE(48); - if (lookahead == '-') ADVANCE(154); - if (lookahead == '.') ADVANCE(155); - if (lookahead == ':') ADVANCE(165); + if (lookahead == '-') ADVANCE(155); + if (lookahead == '.') ADVANCE(156); + if (lookahead == ':') ADVANCE(166); if (lookahead == '<') ADVANCE(77); - if (lookahead == 'F') ADVANCE(156); - if (lookahead == 'I') ADVANCE(158); - if (lookahead == 'N') ADVANCE(159); - if (lookahead == 'T') ADVANCE(160); - if (lookahead == 'W') ADVANCE(157); - if (lookahead == 'X') ADVANCE(161); + if (lookahead == 'F') ADVANCE(157); + if (lookahead == 'I') ADVANCE(159); + if (lookahead == 'N') ADVANCE(160); + if (lookahead == 'T') ADVANCE(161); + if (lookahead == 'W') ADVANCE(158); + if (lookahead == 'X') ADVANCE(162); if (lookahead == '[') ADVANCE(114); if (lookahead == '\\') ADVANCE(64); if (lookahead == '^') ADVANCE(52); @@ -2715,97 +2633,100 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(56); if (lookahead != 0 && (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(153); + lookahead != ' ') ADVANCE(154); END_STATE(); case 11: - if (lookahead == '\n') ADVANCE(152); + if (lookahead == '\n') ADVANCE(153); if (lookahead == '\r') SKIP(12) - if (lookahead == '!') ADVANCE(100); - if (lookahead == '"') ADVANCE(101); + if (lookahead == '!') ADVANCE(163); + if (lookahead == '"') ADVANCE(164); if (lookahead == '$') ADVANCE(135); - if (lookahead == '\'') ADVANCE(101); - if (lookahead == '*') ADVANCE(49); - if (lookahead == '-') ADVANCE(79); - if (lookahead == '.') ADVANCE(81); - if (lookahead == ':') ADVANCE(102); - if (lookahead == '<') ADVANCE(78); - if (lookahead == '>') ADVANCE(153); - if (lookahead == 'F') ADVANCE(88); - if (lookahead == 'I') ADVANCE(90); - if (lookahead == 'N') ADVANCE(91); - if (lookahead == 'T') ADVANCE(92); - if (lookahead == 'W') ADVANCE(87); - if (lookahead == 'X') ADVANCE(99); - if (lookahead == '[') ADVANCE(115); - if (lookahead == '\\') ADVANCE(65); - if (lookahead == ']') ADVANCE(123); - if (lookahead == '^') ADVANCE(53); - if (lookahead == '_') ADVANCE(45); - if (lookahead == '{') ADVANCE(121); - if (lookahead == '~') ADVANCE(57); + if (lookahead == '\'') ADVANCE(164); + if (lookahead == '(') ADVANCE(127); + if (lookahead == '*') ADVANCE(48); + if (lookahead == '-') ADVANCE(155); + if (lookahead == '.') ADVANCE(156); + if (lookahead == ':') ADVANCE(166); + if (lookahead == '<') ADVANCE(77); + if (lookahead == '>') ADVANCE(104); + if (lookahead == 'F') ADVANCE(157); + if (lookahead == 'I') ADVANCE(159); + if (lookahead == 'N') ADVANCE(160); + if (lookahead == 'T') ADVANCE(161); + if (lookahead == 'W') ADVANCE(158); + if (lookahead == 'X') ADVANCE(162); + if (lookahead == '[') ADVANCE(114); + if (lookahead == '\\') ADVANCE(64); + if (lookahead == ']') ADVANCE(122); + if (lookahead == '^') ADVANCE(52); + if (lookahead == '_') ADVANCE(44); + if (lookahead == '{') ADVANCE(120); + if (lookahead == '~') ADVANCE(56); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(151); + lookahead == ' ') ADVANCE(152); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(103); + lookahead != '\f') ADVANCE(154); END_STATE(); case 12: - if (lookahead == '\n') ADVANCE(152); + if (lookahead == '\n') ADVANCE(153); if (lookahead == '\r') SKIP(12) - if (lookahead == '!') ADVANCE(100); - if (lookahead == '"') ADVANCE(101); + if (lookahead == '!') ADVANCE(163); + if (lookahead == '"') ADVANCE(164); if (lookahead == '$') ADVANCE(135); - if (lookahead == '\'') ADVANCE(101); - if (lookahead == '*') ADVANCE(49); - if (lookahead == '-') ADVANCE(79); - if (lookahead == '.') ADVANCE(81); - if (lookahead == ':') ADVANCE(102); - if (lookahead == '<') ADVANCE(78); - if (lookahead == '>') ADVANCE(153); - if (lookahead == 'F') ADVANCE(88); - if (lookahead == 'I') ADVANCE(90); - if (lookahead == 'N') ADVANCE(91); - if (lookahead == 'T') ADVANCE(92); - if (lookahead == 'W') ADVANCE(87); - if (lookahead == 'X') ADVANCE(99); - if (lookahead == '[') ADVANCE(115); - if (lookahead == '\\') ADVANCE(65); - if (lookahead == '^') ADVANCE(53); - if (lookahead == '_') ADVANCE(45); - if (lookahead == '{') ADVANCE(121); - if (lookahead == '~') ADVANCE(57); + if (lookahead == '\'') ADVANCE(164); + if (lookahead == '(') ADVANCE(127); + if (lookahead == '*') ADVANCE(48); + if (lookahead == '-') ADVANCE(155); + if (lookahead == '.') ADVANCE(156); + if (lookahead == ':') ADVANCE(166); + if (lookahead == '<') ADVANCE(77); + if (lookahead == '>') ADVANCE(104); + if (lookahead == 'F') ADVANCE(157); + if (lookahead == 'I') ADVANCE(159); + if (lookahead == 'N') ADVANCE(160); + if (lookahead == 'T') ADVANCE(161); + if (lookahead == 'W') ADVANCE(158); + if (lookahead == 'X') ADVANCE(162); + if (lookahead == '[') ADVANCE(114); + if (lookahead == '\\') ADVANCE(64); + if (lookahead == '^') ADVANCE(52); + if (lookahead == '_') ADVANCE(44); + if (lookahead == '{') ADVANCE(120); + if (lookahead == '~') ADVANCE(56); if (lookahead != 0 && (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(103); + lookahead != ' ') ADVANCE(154); END_STATE(); case 13: if (lookahead == '\r') SKIP(13) - if (lookahead == '"') ADVANCE(170); + if (lookahead == '"') ADVANCE(171); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(173); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(174); END_STATE(); case 14: - if (lookahead == '\r') ADVANCE(125); + if (lookahead == '\r') ADVANCE(124); + if (lookahead == '\\') ADVANCE(126); if (lookahead != 0 && - lookahead != ')') ADVANCE(126); + lookahead != ')') ADVANCE(125); END_STATE(); case 15: - if (lookahead == '\r') ADVANCE(148); + if (lookahead == '\r') ADVANCE(149); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && lookahead != '=' && lookahead != '{' && - lookahead != '}') ADVANCE(149); + lookahead != '}') ADVANCE(150); END_STATE(); case 16: - if (lookahead == '\r') ADVANCE(171); + if (lookahead == '\r') ADVANCE(172); if (lookahead != 0 && lookahead != '\n' && - lookahead != '"') ADVANCE(172); + lookahead != '"') ADVANCE(173); END_STATE(); case 17: if (lookahead == '.') ADVANCE(69); @@ -2822,10 +2743,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'D') ADVANCE(25); END_STATE(); case 20: - if (lookahead == 'E') ADVANCE(140); + if (lookahead == 'E') ADVANCE(141); END_STATE(); case 21: - if (lookahead == 'E') ADVANCE(146); + if (lookahead == 'E') ADVANCE(147); END_STATE(); case 22: if (lookahead == 'F') ADVANCE(24); @@ -2834,13 +2755,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'M') ADVANCE(21); END_STATE(); case 24: - if (lookahead == 'O') ADVANCE(142); + if (lookahead == 'O') ADVANCE(143); END_STATE(); case 25: - if (lookahead == 'O') ADVANCE(136); + if (lookahead == 'O') ADVANCE(137); END_STATE(); case 26: - if (lookahead == 'P') ADVANCE(138); + if (lookahead == 'P') ADVANCE(139); END_STATE(); case 27: if (lookahead == 'T') ADVANCE(20); @@ -2849,122 +2770,124 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'X') ADVANCE(23); END_STATE(); case 29: - if (lookahead == 'X') ADVANCE(144); + if (lookahead == 'X') ADVANCE(145); END_STATE(); case 30: if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '}') ADVANCE(168); + lookahead != '}') ADVANCE(169); END_STATE(); case 31: if (eof) ADVANCE(41); - if (lookahead == '\n') ADVANCE(152); + if (lookahead == '\n') ADVANCE(153); if (lookahead == '\r') SKIP(31) - if (lookahead == '!') ADVANCE(162); - if (lookahead == '"') ADVANCE(170); - if (lookahead == '$') ADVANCE(134); - if (lookahead == '%') ADVANCE(129); - if (lookahead == '(') ADVANCE(124); - if (lookahead == ')') ADVANCE(127); + if (lookahead == '!') ADVANCE(163); + if (lookahead == '"') ADVANCE(171); + if (lookahead == '$') ADVANCE(135); + if (lookahead == '%') ADVANCE(130); + if (lookahead == '(') ADVANCE(127); if (lookahead == '*') ADVANCE(48); - if (lookahead == '-') ADVANCE(154); - if (lookahead == '.') ADVANCE(167); - if (lookahead == ':') ADVANCE(165); + if (lookahead == '-') ADVANCE(155); + if (lookahead == '.') ADVANCE(168); + if (lookahead == ':') ADVANCE(166); if (lookahead == '<') ADVANCE(77); - if (lookahead == '=') ADVANCE(169); + if (lookahead == '=') ADVANCE(170); if (lookahead == '>') ADVANCE(104); - if (lookahead == 'F') ADVANCE(156); - if (lookahead == 'I') ADVANCE(158); - if (lookahead == 'N') ADVANCE(159); - if (lookahead == 'T') ADVANCE(160); - if (lookahead == 'W') ADVANCE(157); - if (lookahead == 'X') ADVANCE(161); + if (lookahead == 'F') ADVANCE(157); + if (lookahead == 'I') ADVANCE(159); + if (lookahead == 'N') ADVANCE(160); + if (lookahead == 'T') ADVANCE(161); + if (lookahead == 'W') ADVANCE(158); + if (lookahead == 'X') ADVANCE(162); if (lookahead == '[') ADVANCE(114); if (lookahead == '\\') ADVANCE(66); if (lookahead == '^') ADVANCE(52); if (lookahead == '_') ADVANCE(44); if (lookahead == '{') ADVANCE(118); - if (lookahead == '}') ADVANCE(128); + if (lookahead == '}') ADVANCE(129); if (lookahead == '~') ADVANCE(56); if (lookahead != 0 && (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(153); + lookahead != ' ') ADVANCE(154); END_STATE(); case 32: if (eof) ADVANCE(41); - if (lookahead == '\n') ADVANCE(152); + if (lookahead == '\n') ADVANCE(153); if (lookahead == '\r') SKIP(33) - if (lookahead == '!') ADVANCE(162); - if (lookahead == '"') ADVANCE(163); - if (lookahead == '$') ADVANCE(134); - if (lookahead == '\'') ADVANCE(163); + if (lookahead == '!') ADVANCE(163); + if (lookahead == '"') ADVANCE(164); + if (lookahead == '$') ADVANCE(135); + if (lookahead == '\'') ADVANCE(164); + if (lookahead == '(') ADVANCE(127); if (lookahead == '*') ADVANCE(48); - if (lookahead == '-') ADVANCE(154); - if (lookahead == '.') ADVANCE(155); - if (lookahead == ':') ADVANCE(165); + if (lookahead == '-') ADVANCE(155); + if (lookahead == '.') ADVANCE(156); + if (lookahead == ':') ADVANCE(166); if (lookahead == '<') ADVANCE(77); - if (lookahead == 'F') ADVANCE(156); - if (lookahead == 'I') ADVANCE(158); - if (lookahead == 'N') ADVANCE(159); - if (lookahead == 'T') ADVANCE(160); - if (lookahead == 'W') ADVANCE(157); - if (lookahead == 'X') ADVANCE(161); + if (lookahead == 'F') ADVANCE(157); + if (lookahead == 'I') ADVANCE(159); + if (lookahead == 'N') ADVANCE(160); + if (lookahead == 'T') ADVANCE(161); + if (lookahead == 'W') ADVANCE(158); + if (lookahead == 'X') ADVANCE(162); if (lookahead == '[') ADVANCE(114); if (lookahead == '\\') ADVANCE(64); if (lookahead == '^') ADVANCE(52); if (lookahead == '_') ADVANCE(44); - if (lookahead == '{') ADVANCE(164); + if (lookahead == '{') ADVANCE(165); if (lookahead == '~') ADVANCE(56); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(151); + lookahead == ' ') ADVANCE(152); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(153); + lookahead != '\f') ADVANCE(154); END_STATE(); case 33: if (eof) ADVANCE(41); - if (lookahead == '\n') ADVANCE(152); + if (lookahead == '\n') ADVANCE(153); if (lookahead == '\r') SKIP(33) - if (lookahead == '!') ADVANCE(162); - if (lookahead == '"') ADVANCE(163); - if (lookahead == '$') ADVANCE(134); - if (lookahead == '\'') ADVANCE(163); + if (lookahead == '!') ADVANCE(163); + if (lookahead == '"') ADVANCE(164); + if (lookahead == '$') ADVANCE(135); + if (lookahead == '\'') ADVANCE(164); + if (lookahead == '(') ADVANCE(127); if (lookahead == '*') ADVANCE(48); - if (lookahead == '-') ADVANCE(154); - if (lookahead == '.') ADVANCE(155); - if (lookahead == ':') ADVANCE(165); + if (lookahead == '-') ADVANCE(155); + if (lookahead == '.') ADVANCE(156); + if (lookahead == ':') ADVANCE(166); if (lookahead == '<') ADVANCE(77); - if (lookahead == 'F') ADVANCE(156); - if (lookahead == 'I') ADVANCE(158); - if (lookahead == 'N') ADVANCE(159); - if (lookahead == 'T') ADVANCE(160); - if (lookahead == 'W') ADVANCE(157); - if (lookahead == 'X') ADVANCE(161); + if (lookahead == 'F') ADVANCE(157); + if (lookahead == 'I') ADVANCE(159); + if (lookahead == 'N') ADVANCE(160); + if (lookahead == 'T') ADVANCE(161); + if (lookahead == 'W') ADVANCE(158); + if (lookahead == 'X') ADVANCE(162); if (lookahead == '[') ADVANCE(114); if (lookahead == '\\') ADVANCE(64); if (lookahead == '^') ADVANCE(52); if (lookahead == '_') ADVANCE(44); - if (lookahead == '{') ADVANCE(164); + if (lookahead == '{') ADVANCE(165); if (lookahead == '~') ADVANCE(56); if (lookahead != 0 && (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(153); + lookahead != ' ') ADVANCE(154); END_STATE(); case 34: if (eof) ADVANCE(41); - if (lookahead == '\n') ADVANCE(152); + if (lookahead == '\n') ADVANCE(153); if (lookahead == '\r') SKIP(35) if (lookahead == '!') ADVANCE(100); if (lookahead == '"') ADVANCE(101); - if (lookahead == '$') ADVANCE(135); + if (lookahead == '$') ADVANCE(136); if (lookahead == '\'') ADVANCE(101); + if (lookahead == '(') ADVANCE(128); if (lookahead == '*') ADVANCE(49); if (lookahead == '-') ADVANCE(79); if (lookahead == '.') ADVANCE(81); if (lookahead == ':') ADVANCE(102); if (lookahead == '<') ADVANCE(78); - if (lookahead == '>') ADVANCE(153); + if (lookahead == '>') ADVANCE(154); if (lookahead == 'F') ADVANCE(88); if (lookahead == 'I') ADVANCE(90); if (lookahead == 'N') ADVANCE(91); @@ -2978,25 +2901,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '{') ADVANCE(121); if (lookahead == '~') ADVANCE(57); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(151); + lookahead == ' ') ADVANCE(152); if (lookahead != 0 && lookahead != 11 && lookahead != '\f') ADVANCE(103); END_STATE(); case 35: if (eof) ADVANCE(41); - if (lookahead == '\n') ADVANCE(152); + if (lookahead == '\n') ADVANCE(153); if (lookahead == '\r') SKIP(35) if (lookahead == '!') ADVANCE(100); if (lookahead == '"') ADVANCE(101); - if (lookahead == '$') ADVANCE(135); + if (lookahead == '$') ADVANCE(136); if (lookahead == '\'') ADVANCE(101); + if (lookahead == '(') ADVANCE(128); if (lookahead == '*') ADVANCE(49); if (lookahead == '-') ADVANCE(79); if (lookahead == '.') ADVANCE(81); if (lookahead == ':') ADVANCE(102); if (lookahead == '<') ADVANCE(78); - if (lookahead == '>') ADVANCE(153); + if (lookahead == '>') ADVANCE(154); if (lookahead == 'F') ADVANCE(88); if (lookahead == 'I') ADVANCE(90); if (lookahead == 'N') ADVANCE(91); @@ -3015,23 +2939,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 36: if (eof) ADVANCE(41); - if (lookahead == '\n') ADVANCE(152); + if (lookahead == '\n') ADVANCE(153); if (lookahead == '\r') SKIP(37) - if (lookahead == '!') ADVANCE(162); - if (lookahead == '"') ADVANCE(163); - if (lookahead == '$') ADVANCE(134); - if (lookahead == '\'') ADVANCE(163); + if (lookahead == '!') ADVANCE(163); + if (lookahead == '"') ADVANCE(164); + if (lookahead == '$') ADVANCE(135); + if (lookahead == '\'') ADVANCE(164); + if (lookahead == '(') ADVANCE(127); if (lookahead == '*') ADVANCE(48); - if (lookahead == '-') ADVANCE(154); - if (lookahead == '.') ADVANCE(155); - if (lookahead == ':') ADVANCE(165); + if (lookahead == '-') ADVANCE(155); + if (lookahead == '.') ADVANCE(156); + if (lookahead == ':') ADVANCE(166); if (lookahead == '<') ADVANCE(77); - if (lookahead == 'F') ADVANCE(156); - if (lookahead == 'I') ADVANCE(158); - if (lookahead == 'N') ADVANCE(159); - if (lookahead == 'T') ADVANCE(160); - if (lookahead == 'W') ADVANCE(157); - if (lookahead == 'X') ADVANCE(161); + if (lookahead == 'F') ADVANCE(157); + if (lookahead == 'I') ADVANCE(159); + if (lookahead == 'N') ADVANCE(160); + if (lookahead == 'T') ADVANCE(161); + if (lookahead == 'W') ADVANCE(158); + if (lookahead == 'X') ADVANCE(162); if (lookahead == '[') ADVANCE(114); if (lookahead == '\\') ADVANCE(64); if (lookahead == '^') ADVANCE(52); @@ -3039,30 +2964,31 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '{') ADVANCE(120); if (lookahead == '~') ADVANCE(56); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(151); + lookahead == ' ') ADVANCE(152); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(153); + lookahead != '\f') ADVANCE(154); END_STATE(); case 37: if (eof) ADVANCE(41); - if (lookahead == '\n') ADVANCE(152); + if (lookahead == '\n') ADVANCE(153); if (lookahead == '\r') SKIP(37) - if (lookahead == '!') ADVANCE(162); - if (lookahead == '"') ADVANCE(163); - if (lookahead == '$') ADVANCE(134); - if (lookahead == '\'') ADVANCE(163); + if (lookahead == '!') ADVANCE(163); + if (lookahead == '"') ADVANCE(164); + if (lookahead == '$') ADVANCE(135); + if (lookahead == '\'') ADVANCE(164); + if (lookahead == '(') ADVANCE(127); if (lookahead == '*') ADVANCE(48); - if (lookahead == '-') ADVANCE(154); - if (lookahead == '.') ADVANCE(155); - if (lookahead == ':') ADVANCE(165); + if (lookahead == '-') ADVANCE(155); + if (lookahead == '.') ADVANCE(156); + if (lookahead == ':') ADVANCE(166); if (lookahead == '<') ADVANCE(77); - if (lookahead == 'F') ADVANCE(156); - if (lookahead == 'I') ADVANCE(158); - if (lookahead == 'N') ADVANCE(159); - if (lookahead == 'T') ADVANCE(160); - if (lookahead == 'W') ADVANCE(157); - if (lookahead == 'X') ADVANCE(161); + if (lookahead == 'F') ADVANCE(157); + if (lookahead == 'I') ADVANCE(159); + if (lookahead == 'N') ADVANCE(160); + if (lookahead == 'T') ADVANCE(161); + if (lookahead == 'W') ADVANCE(158); + if (lookahead == 'X') ADVANCE(162); if (lookahead == '[') ADVANCE(114); if (lookahead == '\\') ADVANCE(64); if (lookahead == '^') ADVANCE(52); @@ -3071,27 +2997,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(56); if (lookahead != 0 && (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(153); + lookahead != ' ') ADVANCE(154); END_STATE(); case 38: if (eof) ADVANCE(41); - if (lookahead == '\n') ADVANCE(152); + if (lookahead == '\n') ADVANCE(153); if (lookahead == '\r') SKIP(37) - if (lookahead == '!') ADVANCE(162); - if (lookahead == '"') ADVANCE(163); - if (lookahead == '$') ADVANCE(134); - if (lookahead == '\'') ADVANCE(163); + if (lookahead == '!') ADVANCE(163); + if (lookahead == '"') ADVANCE(164); + if (lookahead == '$') ADVANCE(135); + if (lookahead == '\'') ADVANCE(164); + if (lookahead == '(') ADVANCE(127); if (lookahead == '*') ADVANCE(48); - if (lookahead == '-') ADVANCE(154); - if (lookahead == '.') ADVANCE(155); - if (lookahead == ':') ADVANCE(165); + if (lookahead == '-') ADVANCE(155); + if (lookahead == '.') ADVANCE(156); + if (lookahead == ':') ADVANCE(166); if (lookahead == '<') ADVANCE(77); - if (lookahead == 'F') ADVANCE(156); - if (lookahead == 'I') ADVANCE(158); - if (lookahead == 'N') ADVANCE(159); - if (lookahead == 'T') ADVANCE(160); - if (lookahead == 'W') ADVANCE(157); - if (lookahead == 'X') ADVANCE(161); + if (lookahead == 'F') ADVANCE(157); + if (lookahead == 'I') ADVANCE(159); + if (lookahead == 'N') ADVANCE(160); + if (lookahead == 'T') ADVANCE(161); + if (lookahead == 'W') ADVANCE(158); + if (lookahead == 'X') ADVANCE(162); if (lookahead == '[') ADVANCE(114); if (lookahead == '\\') ADVANCE(64); if (lookahead == '^') ADVANCE(52); @@ -3099,31 +3026,32 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '{') ADVANCE(119); if (lookahead == '~') ADVANCE(56); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(151); + lookahead == ' ') ADVANCE(152); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(153); + lookahead != '\f') ADVANCE(154); END_STATE(); case 39: if (eof) ADVANCE(41); - if (lookahead == '\n') ADVANCE(152); + if (lookahead == '\n') ADVANCE(153); if (lookahead == '\r') SKIP(40) - if (lookahead == '!') ADVANCE(162); - if (lookahead == '"') ADVANCE(163); - if (lookahead == '$') ADVANCE(134); - if (lookahead == '\'') ADVANCE(163); + if (lookahead == '!') ADVANCE(163); + if (lookahead == '"') ADVANCE(164); + if (lookahead == '$') ADVANCE(135); + if (lookahead == '\'') ADVANCE(164); + if (lookahead == '(') ADVANCE(127); if (lookahead == '*') ADVANCE(48); - if (lookahead == '-') ADVANCE(154); - if (lookahead == '.') ADVANCE(155); - if (lookahead == ':') ADVANCE(165); + if (lookahead == '-') ADVANCE(155); + if (lookahead == '.') ADVANCE(156); + if (lookahead == ':') ADVANCE(166); if (lookahead == '<') ADVANCE(77); if (lookahead == '>') ADVANCE(104); - if (lookahead == 'F') ADVANCE(156); - if (lookahead == 'I') ADVANCE(158); - if (lookahead == 'N') ADVANCE(159); - if (lookahead == 'T') ADVANCE(160); - if (lookahead == 'W') ADVANCE(157); - if (lookahead == 'X') ADVANCE(161); + if (lookahead == 'F') ADVANCE(157); + if (lookahead == 'I') ADVANCE(159); + if (lookahead == 'N') ADVANCE(160); + if (lookahead == 'T') ADVANCE(161); + if (lookahead == 'W') ADVANCE(158); + if (lookahead == 'X') ADVANCE(162); if (lookahead == '[') ADVANCE(114); if (lookahead == '\\') ADVANCE(64); if (lookahead == '^') ADVANCE(52); @@ -3131,31 +3059,32 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '{') ADVANCE(120); if (lookahead == '~') ADVANCE(56); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(151); + lookahead == ' ') ADVANCE(152); if (lookahead != 0 && lookahead != 11 && - lookahead != '\f') ADVANCE(153); + lookahead != '\f') ADVANCE(154); END_STATE(); case 40: if (eof) ADVANCE(41); - if (lookahead == '\n') ADVANCE(152); + if (lookahead == '\n') ADVANCE(153); if (lookahead == '\r') SKIP(40) - if (lookahead == '!') ADVANCE(162); - if (lookahead == '"') ADVANCE(163); - if (lookahead == '$') ADVANCE(134); - if (lookahead == '\'') ADVANCE(163); + if (lookahead == '!') ADVANCE(163); + if (lookahead == '"') ADVANCE(164); + if (lookahead == '$') ADVANCE(135); + if (lookahead == '\'') ADVANCE(164); + if (lookahead == '(') ADVANCE(127); if (lookahead == '*') ADVANCE(48); - if (lookahead == '-') ADVANCE(154); - if (lookahead == '.') ADVANCE(155); - if (lookahead == ':') ADVANCE(165); + if (lookahead == '-') ADVANCE(155); + if (lookahead == '.') ADVANCE(156); + if (lookahead == ':') ADVANCE(166); if (lookahead == '<') ADVANCE(77); if (lookahead == '>') ADVANCE(104); - if (lookahead == 'F') ADVANCE(156); - if (lookahead == 'I') ADVANCE(158); - if (lookahead == 'N') ADVANCE(159); - if (lookahead == 'T') ADVANCE(160); - if (lookahead == 'W') ADVANCE(157); - if (lookahead == 'X') ADVANCE(161); + if (lookahead == 'F') ADVANCE(157); + if (lookahead == 'I') ADVANCE(159); + if (lookahead == 'N') ADVANCE(160); + if (lookahead == 'T') ADVANCE(161); + if (lookahead == 'W') ADVANCE(158); + if (lookahead == 'X') ADVANCE(162); if (lookahead == '[') ADVANCE(114); if (lookahead == '\\') ADVANCE(64); if (lookahead == '^') ADVANCE(52); @@ -3164,7 +3093,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(56); if (lookahead != 0 && (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(153); + lookahead != ' ') ADVANCE(154); END_STATE(); case 41: ACCEPT_TOKEN(ts_builtin_sym_end); @@ -3417,7 +3346,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 84: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'E') ADVANCE(141); + if (lookahead == 'E') ADVANCE(142); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -3425,7 +3354,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 85: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'E') ADVANCE(147); + if (lookahead == 'E') ADVANCE(148); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -3489,7 +3418,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 93: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'O') ADVANCE(143); + if (lookahead == 'O') ADVANCE(144); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -3497,7 +3426,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 94: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'O') ADVANCE(137); + if (lookahead == 'O') ADVANCE(138); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -3505,7 +3434,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 95: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'P') ADVANCE(139); + if (lookahead == 'P') ADVANCE(140); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -3529,7 +3458,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 98: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'X') ADVANCE(145); + if (lookahead == 'X') ADVANCE(146); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -3642,7 +3571,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '*') ADVANCE(46); if (lookahead == '+') ADVANCE(60); if (lookahead == '-') ADVANCE(62); - if (lookahead == '=') ADVANCE(133); + if (lookahead == '=') ADVANCE(134); if (lookahead == '^') ADVANCE(50); if (lookahead == '_') ADVANCE(42); if (lookahead == '~') ADVANCE(54); @@ -3664,7 +3593,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '*') ADVANCE(46); if (lookahead == '+') ADVANCE(60); if (lookahead == '-') ADVANCE(62); - if (lookahead == '=') ADVANCE(133); + if (lookahead == '=') ADVANCE(134); if (lookahead == '^') ADVANCE(50); if (lookahead == '_') ADVANCE(42); if (lookahead == '~') ADVANCE(54); @@ -3708,131 +3637,143 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>') ADVANCE(103); END_STATE(); case 124: - ACCEPT_TOKEN(anon_sym_LPAREN); + ACCEPT_TOKEN(aux_sym_inline_link_destination_token1); + if (lookahead == '\r') ADVANCE(124); + if (lookahead == '\\') ADVANCE(126); + if (lookahead != 0 && + lookahead != ')') ADVANCE(125); END_STATE(); case 125: ACCEPT_TOKEN(aux_sym_inline_link_destination_token1); - if (lookahead == '\r') ADVANCE(125); + if (lookahead == '\\') ADVANCE(126); if (lookahead != 0 && - lookahead != ')') ADVANCE(126); + lookahead != ')') ADVANCE(125); END_STATE(); case 126: ACCEPT_TOKEN(aux_sym_inline_link_destination_token1); if (lookahead != 0 && - lookahead != ')') ADVANCE(126); + lookahead != '\\') ADVANCE(125); + if (lookahead == '\\') ADVANCE(126); END_STATE(); case 127: - ACCEPT_TOKEN(anon_sym_RPAREN); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 128: - ACCEPT_TOKEN(anon_sym_RBRACE); + ACCEPT_TOKEN(anon_sym_LPAREN); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(103); END_STATE(); case 129: - ACCEPT_TOKEN(anon_sym_PERCENT); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 130: - ACCEPT_TOKEN(aux_sym__comment_with_newline_token1); + ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); case 131: ACCEPT_TOKEN(aux_sym__comment_with_newline_token1); - if (lookahead == '\r') ADVANCE(131); - if (lookahead == '\\') ADVANCE(132); + END_STATE(); + case 132: + ACCEPT_TOKEN(aux_sym__comment_with_newline_token1); + if (lookahead == '\r') ADVANCE(132); + if (lookahead == '\\') ADVANCE(133); if (lookahead != 0 && lookahead != '\n' && - lookahead != '%') ADVANCE(130); + lookahead != '%') ADVANCE(131); END_STATE(); - case 132: + case 133: ACCEPT_TOKEN(aux_sym__comment_with_newline_token1); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '\\') ADVANCE(75); END_STATE(); - case 133: + case 134: ACCEPT_TOKEN(anon_sym_LBRACE_EQ2); END_STATE(); - case 134: + case 135: ACCEPT_TOKEN(anon_sym_DOLLAR); END_STATE(); - case 135: + case 136: ACCEPT_TOKEN(anon_sym_DOLLAR); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && lookahead != '>') ADVANCE(103); END_STATE(); - case 136: + case 137: ACCEPT_TOKEN(anon_sym_TODO); END_STATE(); - case 137: + case 138: ACCEPT_TOKEN(anon_sym_TODO); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && lookahead != '>') ADVANCE(103); END_STATE(); - case 138: + case 139: ACCEPT_TOKEN(anon_sym_WIP); END_STATE(); - case 139: + case 140: ACCEPT_TOKEN(anon_sym_WIP); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && lookahead != '>') ADVANCE(103); END_STATE(); - case 140: + case 141: ACCEPT_TOKEN(anon_sym_NOTE); END_STATE(); - case 141: + case 142: ACCEPT_TOKEN(anon_sym_NOTE); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && lookahead != '>') ADVANCE(103); END_STATE(); - case 142: + case 143: ACCEPT_TOKEN(anon_sym_INFO); END_STATE(); - case 143: + case 144: ACCEPT_TOKEN(anon_sym_INFO); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && lookahead != '>') ADVANCE(103); END_STATE(); - case 144: + case 145: ACCEPT_TOKEN(anon_sym_XXX); END_STATE(); - case 145: + case 146: ACCEPT_TOKEN(anon_sym_XXX); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && lookahead != '>') ADVANCE(103); END_STATE(); - case 146: + case 147: ACCEPT_TOKEN(sym_fixme); END_STATE(); - case 147: + case 148: ACCEPT_TOKEN(sym_fixme); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && lookahead != '>') ADVANCE(103); END_STATE(); - case 148: + case 149: ACCEPT_TOKEN(sym_language); - if (lookahead == '\r') ADVANCE(148); + if (lookahead == '\r') ADVANCE(149); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && lookahead != '=' && lookahead != '{' && - lookahead != '}') ADVANCE(149); + lookahead != '}') ADVANCE(150); END_STATE(); - case 149: + case 150: ACCEPT_TOKEN(sym_language); if (lookahead != 0 && lookahead != '\t' && @@ -3840,65 +3781,65 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ' && lookahead != '=' && lookahead != '{' && - lookahead != '}') ADVANCE(149); + lookahead != '}') ADVANCE(150); END_STATE(); - case 150: + case 151: ACCEPT_TOKEN(sym__whitespace); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(150); + lookahead == ' ') ADVANCE(151); END_STATE(); - case 151: + case 152: ACCEPT_TOKEN(sym__whitespace1); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(151); + lookahead == ' ') ADVANCE(152); END_STATE(); - case 152: + case 153: ACCEPT_TOKEN(sym__newline); END_STATE(); - case 153: + case 154: ACCEPT_TOKEN(aux_sym__text_token1); END_STATE(); - case 154: + case 155: ACCEPT_TOKEN(aux_sym__text_token1); if (lookahead == '-') ADVANCE(73); END_STATE(); - case 155: + case 156: ACCEPT_TOKEN(aux_sym__text_token1); if (lookahead == '.') ADVANCE(17); END_STATE(); - case 156: + case 157: ACCEPT_TOKEN(aux_sym__text_token1); if (lookahead == 'I') ADVANCE(28); END_STATE(); - case 157: + case 158: ACCEPT_TOKEN(aux_sym__text_token1); if (lookahead == 'I') ADVANCE(26); END_STATE(); - case 158: + case 159: ACCEPT_TOKEN(aux_sym__text_token1); if (lookahead == 'N') ADVANCE(22); END_STATE(); - case 159: + case 160: ACCEPT_TOKEN(aux_sym__text_token1); if (lookahead == 'O') ADVANCE(27); END_STATE(); - case 160: + case 161: ACCEPT_TOKEN(aux_sym__text_token1); if (lookahead == 'O') ADVANCE(19); END_STATE(); - case 161: + case 162: ACCEPT_TOKEN(aux_sym__text_token1); if (lookahead == 'X') ADVANCE(29); END_STATE(); - case 162: + case 163: ACCEPT_TOKEN(aux_sym__text_token1); if (lookahead == '[') ADVANCE(110); END_STATE(); - case 163: + case 164: ACCEPT_TOKEN(aux_sym__text_token1); if (lookahead == '}') ADVANCE(67); END_STATE(); - case 164: + case 165: ACCEPT_TOKEN(aux_sym__text_token1); if (lookahead == '"' || lookahead == '\'') ADVANCE(67); @@ -3910,7 +3851,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(42); if (lookahead == '~') ADVANCE(54); END_STATE(); - case 165: + case 166: ACCEPT_TOKEN(aux_sym__text_token1); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || @@ -3918,45 +3859,45 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(18); END_STATE(); - case 166: + case 167: ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); - case 167: + case 168: ACCEPT_TOKEN(anon_sym_DOT); if (lookahead == '.') ADVANCE(17); END_STATE(); - case 168: + case 169: ACCEPT_TOKEN(sym_identifier); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '}') ADVANCE(168); + lookahead != '}') ADVANCE(169); END_STATE(); - case 169: + case 170: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 170: + case 171: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 171: + case 172: ACCEPT_TOKEN(aux_sym_value_token1); - if (lookahead == '\r') ADVANCE(171); + if (lookahead == '\r') ADVANCE(172); if (lookahead != 0 && lookahead != '\n' && - lookahead != '"') ADVANCE(172); + lookahead != '"') ADVANCE(173); END_STATE(); - case 172: + case 173: ACCEPT_TOKEN(aux_sym_value_token1); if (lookahead != 0 && lookahead != '\n' && - lookahead != '"') ADVANCE(172); + lookahead != '"') ADVANCE(173); END_STATE(); - case 173: + case 174: ACCEPT_TOKEN(aux_sym_value_token2); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(173); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(174); END_STATE(); default: return false; @@ -3979,14 +3920,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [12] = {.lex_state = 32, .external_lex_state = 2}, [13] = {.lex_state = 32, .external_lex_state = 2}, [14] = {.lex_state = 32, .external_lex_state = 5}, - [15] = {.lex_state = 32, .external_lex_state = 2}, + [15] = {.lex_state = 32, .external_lex_state = 6}, [16] = {.lex_state = 32, .external_lex_state = 2}, [17] = {.lex_state = 32, .external_lex_state = 2}, [18] = {.lex_state = 32, .external_lex_state = 2}, [19] = {.lex_state = 32, .external_lex_state = 2}, [20] = {.lex_state = 32, .external_lex_state = 2}, - [21] = {.lex_state = 32, .external_lex_state = 5}, - [22] = {.lex_state = 32, .external_lex_state = 2}, + [21] = {.lex_state = 32, .external_lex_state = 2}, + [22] = {.lex_state = 32, .external_lex_state = 6}, [23] = {.lex_state = 32, .external_lex_state = 2}, [24] = {.lex_state = 32, .external_lex_state = 2}, [25] = {.lex_state = 32, .external_lex_state = 2}, @@ -4000,8 +3941,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [33] = {.lex_state = 32, .external_lex_state = 2}, [34] = {.lex_state = 32, .external_lex_state = 2}, [35] = {.lex_state = 32, .external_lex_state = 2}, - [36] = {.lex_state = 32, .external_lex_state = 6}, - [37] = {.lex_state = 32, .external_lex_state = 2}, + [36] = {.lex_state = 32, .external_lex_state = 2}, + [37] = {.lex_state = 32, .external_lex_state = 7}, [38] = {.lex_state = 32, .external_lex_state = 2}, [39] = {.lex_state = 32, .external_lex_state = 2}, [40] = {.lex_state = 32, .external_lex_state = 2}, @@ -4010,8 +3951,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [43] = {.lex_state = 32, .external_lex_state = 2}, [44] = {.lex_state = 32, .external_lex_state = 2}, [45] = {.lex_state = 32, .external_lex_state = 2}, - [46] = {.lex_state = 32, .external_lex_state = 7}, - [47] = {.lex_state = 32, .external_lex_state = 2}, + [46] = {.lex_state = 32, .external_lex_state = 2}, + [47] = {.lex_state = 32, .external_lex_state = 5}, [48] = {.lex_state = 32, .external_lex_state = 2}, [49] = {.lex_state = 32, .external_lex_state = 2}, [50] = {.lex_state = 32, .external_lex_state = 2}, @@ -4029,13 +3970,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [62] = {.lex_state = 32, .external_lex_state = 2}, [63] = {.lex_state = 32, .external_lex_state = 2}, [64] = {.lex_state = 32, .external_lex_state = 2}, - [65] = {.lex_state = 32, .external_lex_state = 2}, + [65] = {.lex_state = 32, .external_lex_state = 8}, [66] = {.lex_state = 32, .external_lex_state = 2}, [67] = {.lex_state = 32, .external_lex_state = 2}, - [68] = {.lex_state = 32, .external_lex_state = 8}, - [69] = {.lex_state = 32, .external_lex_state = 2}, - [70] = {.lex_state = 32, .external_lex_state = 4}, - [71] = {.lex_state = 32, .external_lex_state = 2}, + [68] = {.lex_state = 32, .external_lex_state = 2}, + [69] = {.lex_state = 32, .external_lex_state = 7}, + [70] = {.lex_state = 32, .external_lex_state = 2}, + [71] = {.lex_state = 1, .external_lex_state = 2}, [72] = {.lex_state = 32, .external_lex_state = 2}, [73] = {.lex_state = 32, .external_lex_state = 2}, [74] = {.lex_state = 32, .external_lex_state = 2}, @@ -4044,11 +3985,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [77] = {.lex_state = 32, .external_lex_state = 2}, [78] = {.lex_state = 32, .external_lex_state = 2}, [79] = {.lex_state = 32, .external_lex_state = 2}, - [80] = {.lex_state = 32, .external_lex_state = 8}, - [81] = {.lex_state = 32, .external_lex_state = 2}, + [80] = {.lex_state = 32, .external_lex_state = 2}, + [81] = {.lex_state = 32, .external_lex_state = 8}, [82] = {.lex_state = 32, .external_lex_state = 2}, [83] = {.lex_state = 32, .external_lex_state = 2}, - [84] = {.lex_state = 1, .external_lex_state = 2}, + [84] = {.lex_state = 32, .external_lex_state = 2}, [85] = {.lex_state = 32, .external_lex_state = 2}, [86] = {.lex_state = 32, .external_lex_state = 2}, [87] = {.lex_state = 32, .external_lex_state = 2}, @@ -4064,254 +4005,254 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [97] = {.lex_state = 32, .external_lex_state = 2}, [98] = {.lex_state = 32, .external_lex_state = 2}, [99] = {.lex_state = 32, .external_lex_state = 2}, - [100] = {.lex_state = 32, .external_lex_state = 7}, + [100] = {.lex_state = 32, .external_lex_state = 2}, [101] = {.lex_state = 32, .external_lex_state = 2}, [102] = {.lex_state = 32, .external_lex_state = 2}, [103] = {.lex_state = 32, .external_lex_state = 2}, [104] = {.lex_state = 32, .external_lex_state = 2}, [105] = {.lex_state = 32, .external_lex_state = 2}, - [106] = {.lex_state = 32, .external_lex_state = 2}, - [107] = {.lex_state = 32, .external_lex_state = 2}, + [106] = {.lex_state = 32, .external_lex_state = 4}, + [107] = {.lex_state = 32, .external_lex_state = 3}, [108] = {.lex_state = 32, .external_lex_state = 2}, [109] = {.lex_state = 32, .external_lex_state = 2}, - [110] = {.lex_state = 32, .external_lex_state = 2}, + [110] = {.lex_state = 1, .external_lex_state = 2}, [111] = {.lex_state = 32, .external_lex_state = 2}, [112] = {.lex_state = 32, .external_lex_state = 2}, [113] = {.lex_state = 32, .external_lex_state = 2}, [114] = {.lex_state = 32, .external_lex_state = 2}, - [115] = {.lex_state = 32, .external_lex_state = 2}, - [116] = {.lex_state = 32, .external_lex_state = 3}, + [115] = {.lex_state = 32, .external_lex_state = 3}, + [116] = {.lex_state = 32, .external_lex_state = 2}, [117] = {.lex_state = 32, .external_lex_state = 2}, [118] = {.lex_state = 32, .external_lex_state = 2}, [119] = {.lex_state = 32, .external_lex_state = 2}, - [120] = {.lex_state = 1, .external_lex_state = 2}, - [121] = {.lex_state = 32, .external_lex_state = 9}, - [122] = {.lex_state = 32, .external_lex_state = 3}, - [123] = {.lex_state = 32, .external_lex_state = 2}, - [124] = {.lex_state = 32, .external_lex_state = 6}, - [125] = {.lex_state = 32, .external_lex_state = 2}, - [126] = {.lex_state = 32, .external_lex_state = 9}, - [127] = {.lex_state = 32, .external_lex_state = 2}, - [128] = {.lex_state = 32, .external_lex_state = 2}, - [129] = {.lex_state = 32, .external_lex_state = 2}, - [130] = {.lex_state = 32, .external_lex_state = 2}, - [131] = {.lex_state = 32, .external_lex_state = 2}, - [132] = {.lex_state = 36, .external_lex_state = 7}, - [133] = {.lex_state = 36, .external_lex_state = 10}, - [134] = {.lex_state = 36, .external_lex_state = 4}, - [135] = {.lex_state = 36, .external_lex_state = 3}, - [136] = {.lex_state = 36, .external_lex_state = 11}, - [137] = {.lex_state = 36, .external_lex_state = 9}, - [138] = {.lex_state = 36, .external_lex_state = 8}, - [139] = {.lex_state = 36, .external_lex_state = 2}, - [140] = {.lex_state = 36, .external_lex_state = 6}, - [141] = {.lex_state = 8, .external_lex_state = 2}, - [142] = {.lex_state = 36, .external_lex_state = 5}, - [143] = {.lex_state = 36, .external_lex_state = 3}, - [144] = {.lex_state = 36, .external_lex_state = 2}, - [145] = {.lex_state = 36, .external_lex_state = 8}, - [146] = {.lex_state = 8, .external_lex_state = 2}, - [147] = {.lex_state = 36, .external_lex_state = 7}, - [148] = {.lex_state = 36, .external_lex_state = 11}, - [149] = {.lex_state = 36, .external_lex_state = 5}, - [150] = {.lex_state = 36, .external_lex_state = 2}, - [151] = {.lex_state = 36, .external_lex_state = 6}, - [152] = {.lex_state = 36, .external_lex_state = 10}, - [153] = {.lex_state = 36, .external_lex_state = 4}, - [154] = {.lex_state = 36, .external_lex_state = 9}, - [155] = {.lex_state = 36, .external_lex_state = 2}, - [156] = {.lex_state = 38, .external_lex_state = 5}, - [157] = {.lex_state = 38, .external_lex_state = 2}, - [158] = {.lex_state = 9, .external_lex_state = 2}, - [159] = {.lex_state = 38, .external_lex_state = 4}, - [160] = {.lex_state = 38, .external_lex_state = 7}, - [161] = {.lex_state = 38, .external_lex_state = 11}, - [162] = {.lex_state = 38, .external_lex_state = 10}, - [163] = {.lex_state = 38, .external_lex_state = 6}, - [164] = {.lex_state = 38, .external_lex_state = 8}, - [165] = {.lex_state = 38, .external_lex_state = 3}, - [166] = {.lex_state = 38, .external_lex_state = 9}, - [167] = {.lex_state = 34, .external_lex_state = 8}, - [168] = {.lex_state = 36, .external_lex_state = 12}, - [169] = {.lex_state = 36, .external_lex_state = 7}, - [170] = {.lex_state = 39, .external_lex_state = 7}, - [171] = {.lex_state = 39, .external_lex_state = 9}, - [172] = {.lex_state = 36, .external_lex_state = 12}, - [173] = {.lex_state = 8, .external_lex_state = 2}, - [174] = {.lex_state = 34, .external_lex_state = 7}, - [175] = {.lex_state = 36, .external_lex_state = 9}, - [176] = {.lex_state = 36, .external_lex_state = 13}, - [177] = {.lex_state = 36, .external_lex_state = 13}, - [178] = {.lex_state = 34, .external_lex_state = 3}, - [179] = {.lex_state = 36, .external_lex_state = 14}, - [180] = {.lex_state = 36, .external_lex_state = 4}, - [181] = {.lex_state = 39, .external_lex_state = 4}, - [182] = {.lex_state = 39, .external_lex_state = 11}, - [183] = {.lex_state = 36, .external_lex_state = 15}, - [184] = {.lex_state = 36, .external_lex_state = 7}, - [185] = {.lex_state = 36, .external_lex_state = 16}, - [186] = {.lex_state = 36, .external_lex_state = 16}, - [187] = {.lex_state = 36, .external_lex_state = 15}, - [188] = {.lex_state = 34, .external_lex_state = 10}, - [189] = {.lex_state = 34, .external_lex_state = 4}, - [190] = {.lex_state = 34, .external_lex_state = 9}, - [191] = {.lex_state = 36, .external_lex_state = 17}, - [192] = {.lex_state = 36, .external_lex_state = 6}, + [120] = {.lex_state = 32, .external_lex_state = 2}, + [121] = {.lex_state = 36, .external_lex_state = 2}, + [122] = {.lex_state = 36, .external_lex_state = 6}, + [123] = {.lex_state = 36, .external_lex_state = 7}, + [124] = {.lex_state = 36, .external_lex_state = 3}, + [125] = {.lex_state = 36, .external_lex_state = 9}, + [126] = {.lex_state = 36, .external_lex_state = 4}, + [127] = {.lex_state = 36, .external_lex_state = 10}, + [128] = {.lex_state = 8, .external_lex_state = 2}, + [129] = {.lex_state = 36, .external_lex_state = 8}, + [130] = {.lex_state = 36, .external_lex_state = 5}, + [131] = {.lex_state = 36, .external_lex_state = 7}, + [132] = {.lex_state = 8, .external_lex_state = 2}, + [133] = {.lex_state = 36, .external_lex_state = 8}, + [134] = {.lex_state = 36, .external_lex_state = 2}, + [135] = {.lex_state = 36, .external_lex_state = 2}, + [136] = {.lex_state = 36, .external_lex_state = 5}, + [137] = {.lex_state = 36, .external_lex_state = 6}, + [138] = {.lex_state = 36, .external_lex_state = 10}, + [139] = {.lex_state = 36, .external_lex_state = 4}, + [140] = {.lex_state = 36, .external_lex_state = 3}, + [141] = {.lex_state = 36, .external_lex_state = 9}, + [142] = {.lex_state = 38, .external_lex_state = 5}, + [143] = {.lex_state = 36, .external_lex_state = 2}, + [144] = {.lex_state = 38, .external_lex_state = 3}, + [145] = {.lex_state = 38, .external_lex_state = 7}, + [146] = {.lex_state = 9, .external_lex_state = 2}, + [147] = {.lex_state = 38, .external_lex_state = 6}, + [148] = {.lex_state = 38, .external_lex_state = 8}, + [149] = {.lex_state = 38, .external_lex_state = 9}, + [150] = {.lex_state = 38, .external_lex_state = 4}, + [151] = {.lex_state = 38, .external_lex_state = 10}, + [152] = {.lex_state = 38, .external_lex_state = 2}, + [153] = {.lex_state = 34, .external_lex_state = 3}, + [154] = {.lex_state = 36, .external_lex_state = 6}, + [155] = {.lex_state = 36, .external_lex_state = 11}, + [156] = {.lex_state = 34, .external_lex_state = 4}, + [157] = {.lex_state = 8, .external_lex_state = 2}, + [158] = {.lex_state = 34, .external_lex_state = 8}, + [159] = {.lex_state = 39, .external_lex_state = 9}, + [160] = {.lex_state = 36, .external_lex_state = 12}, + [161] = {.lex_state = 36, .external_lex_state = 12}, + [162] = {.lex_state = 36, .external_lex_state = 7}, + [163] = {.lex_state = 39, .external_lex_state = 7}, + [164] = {.lex_state = 36, .external_lex_state = 9}, + [165] = {.lex_state = 34, .external_lex_state = 7}, + [166] = {.lex_state = 36, .external_lex_state = 13}, + [167] = {.lex_state = 36, .external_lex_state = 14}, + [168] = {.lex_state = 36, .external_lex_state = 14}, + [169] = {.lex_state = 36, .external_lex_state = 8}, + [170] = {.lex_state = 36, .external_lex_state = 2}, + [171] = {.lex_state = 36, .external_lex_state = 5}, + [172] = {.lex_state = 39, .external_lex_state = 5}, + [173] = {.lex_state = 34, .external_lex_state = 9}, + [174] = {.lex_state = 36, .external_lex_state = 15}, + [175] = {.lex_state = 36, .external_lex_state = 7}, + [176] = {.lex_state = 34, .external_lex_state = 5}, + [177] = {.lex_state = 36, .external_lex_state = 15}, + [178] = {.lex_state = 36, .external_lex_state = 16}, + [179] = {.lex_state = 36, .external_lex_state = 16}, + [180] = {.lex_state = 38, .external_lex_state = 2}, + [181] = {.lex_state = 39, .external_lex_state = 2}, + [182] = {.lex_state = 39, .external_lex_state = 8}, + [183] = {.lex_state = 39, .external_lex_state = 6}, + [184] = {.lex_state = 36, .external_lex_state = 8}, + [185] = {.lex_state = 8, .external_lex_state = 11}, + [186] = {.lex_state = 36, .external_lex_state = 5}, + [187] = {.lex_state = 36, .external_lex_state = 17}, + [188] = {.lex_state = 36, .external_lex_state = 17}, + [189] = {.lex_state = 8, .external_lex_state = 11}, + [190] = {.lex_state = 34, .external_lex_state = 10}, + [191] = {.lex_state = 34, .external_lex_state = 6}, + [192] = {.lex_state = 3, .external_lex_state = 2}, [193] = {.lex_state = 36, .external_lex_state = 18}, - [194] = {.lex_state = 8, .external_lex_state = 2}, - [195] = {.lex_state = 36, .external_lex_state = 17}, - [196] = {.lex_state = 3, .external_lex_state = 2}, + [194] = {.lex_state = 36, .external_lex_state = 4}, + [195] = {.lex_state = 36, .external_lex_state = 3}, + [196] = {.lex_state = 36, .external_lex_state = 2}, [197] = {.lex_state = 36, .external_lex_state = 18}, - [198] = {.lex_state = 39, .external_lex_state = 10}, - [199] = {.lex_state = 36, .external_lex_state = 5}, - [200] = {.lex_state = 39, .external_lex_state = 5}, - [201] = {.lex_state = 36, .external_lex_state = 11}, - [202] = {.lex_state = 36, .external_lex_state = 9}, - [203] = {.lex_state = 36, .external_lex_state = 4}, - [204] = {.lex_state = 34, .external_lex_state = 5}, - [205] = {.lex_state = 34, .external_lex_state = 11}, - [206] = {.lex_state = 36, .external_lex_state = 10}, - [207] = {.lex_state = 38, .external_lex_state = 2}, - [208] = {.lex_state = 36, .external_lex_state = 3}, - [209] = {.lex_state = 11, .external_lex_state = 2}, - [210] = {.lex_state = 36, .external_lex_state = 14}, - [211] = {.lex_state = 36, .external_lex_state = 3}, - [212] = {.lex_state = 8, .external_lex_state = 19}, + [198] = {.lex_state = 36, .external_lex_state = 4}, + [199] = {.lex_state = 34, .external_lex_state = 2}, + [200] = {.lex_state = 39, .external_lex_state = 10}, + [201] = {.lex_state = 39, .external_lex_state = 4}, + [202] = {.lex_state = 36, .external_lex_state = 6}, + [203] = {.lex_state = 36, .external_lex_state = 3}, + [204] = {.lex_state = 11, .external_lex_state = 2}, + [205] = {.lex_state = 8, .external_lex_state = 2}, + [206] = {.lex_state = 36, .external_lex_state = 19}, + [207] = {.lex_state = 36, .external_lex_state = 19}, + [208] = {.lex_state = 36, .external_lex_state = 10}, + [209] = {.lex_state = 36, .external_lex_state = 11}, + [210] = {.lex_state = 39, .external_lex_state = 3}, + [211] = {.lex_state = 36, .external_lex_state = 13}, + [212] = {.lex_state = 36, .external_lex_state = 5}, [213] = {.lex_state = 36, .external_lex_state = 8}, - [214] = {.lex_state = 39, .external_lex_state = 8}, - [215] = {.lex_state = 8, .external_lex_state = 19}, - [216] = {.lex_state = 39, .external_lex_state = 3}, - [217] = {.lex_state = 36, .external_lex_state = 5}, - [218] = {.lex_state = 36, .external_lex_state = 19}, - [219] = {.lex_state = 36, .external_lex_state = 19}, - [220] = {.lex_state = 36, .external_lex_state = 20}, - [221] = {.lex_state = 36, .external_lex_state = 6}, - [222] = {.lex_state = 39, .external_lex_state = 6}, - [223] = {.lex_state = 34, .external_lex_state = 6}, - [224] = {.lex_state = 36, .external_lex_state = 8}, - [225] = {.lex_state = 36, .external_lex_state = 2}, - [226] = {.lex_state = 39, .external_lex_state = 2}, - [227] = {.lex_state = 36, .external_lex_state = 2}, - [228] = {.lex_state = 36, .external_lex_state = 20}, - [229] = {.lex_state = 36, .external_lex_state = 21}, - [230] = {.lex_state = 36, .external_lex_state = 21}, - [231] = {.lex_state = 34, .external_lex_state = 2}, - [232] = {.lex_state = 36, .external_lex_state = 11}, - [233] = {.lex_state = 8, .external_lex_state = 2}, + [214] = {.lex_state = 36, .external_lex_state = 2}, + [215] = {.lex_state = 36, .external_lex_state = 10}, + [216] = {.lex_state = 36, .external_lex_state = 10}, + [217] = {.lex_state = 36, .external_lex_state = 10}, + [218] = {.lex_state = 36, .external_lex_state = 10}, + [219] = {.lex_state = 36, .external_lex_state = 10}, + [220] = {.lex_state = 36, .external_lex_state = 10}, + [221] = {.lex_state = 36, .external_lex_state = 10}, + [222] = {.lex_state = 36, .external_lex_state = 10}, + [223] = {.lex_state = 36, .external_lex_state = 2}, + [224] = {.lex_state = 36, .external_lex_state = 10}, + [225] = {.lex_state = 36, .external_lex_state = 10}, + [226] = {.lex_state = 36, .external_lex_state = 2}, + [227] = {.lex_state = 36, .external_lex_state = 10}, + [228] = {.lex_state = 36, .external_lex_state = 10}, + [229] = {.lex_state = 36, .external_lex_state = 10}, + [230] = {.lex_state = 36, .external_lex_state = 10}, + [231] = {.lex_state = 36, .external_lex_state = 10}, + [232] = {.lex_state = 36, .external_lex_state = 10}, + [233] = {.lex_state = 36, .external_lex_state = 10}, [234] = {.lex_state = 36, .external_lex_state = 10}, [235] = {.lex_state = 36, .external_lex_state = 10}, [236] = {.lex_state = 36, .external_lex_state = 10}, [237] = {.lex_state = 36, .external_lex_state = 10}, [238] = {.lex_state = 36, .external_lex_state = 2}, - [239] = {.lex_state = 36, .external_lex_state = 2}, - [240] = {.lex_state = 36, .external_lex_state = 10}, - [241] = {.lex_state = 36, .external_lex_state = 6}, - [242] = {.lex_state = 36, .external_lex_state = 6}, - [243] = {.lex_state = 36, .external_lex_state = 6}, - [244] = {.lex_state = 36, .external_lex_state = 6}, - [245] = {.lex_state = 36, .external_lex_state = 6}, - [246] = {.lex_state = 36, .external_lex_state = 2}, - [247] = {.lex_state = 36, .external_lex_state = 6}, - [248] = {.lex_state = 36, .external_lex_state = 6}, - [249] = {.lex_state = 36, .external_lex_state = 6}, - [250] = {.lex_state = 36, .external_lex_state = 6}, - [251] = {.lex_state = 36, .external_lex_state = 6}, - [252] = {.lex_state = 36, .external_lex_state = 6}, - [253] = {.lex_state = 36, .external_lex_state = 6}, - [254] = {.lex_state = 36, .external_lex_state = 6}, - [255] = {.lex_state = 36, .external_lex_state = 2}, - [256] = {.lex_state = 36, .external_lex_state = 6}, - [257] = {.lex_state = 36, .external_lex_state = 6}, - [258] = {.lex_state = 36, .external_lex_state = 2}, - [259] = {.lex_state = 36, .external_lex_state = 6}, - [260] = {.lex_state = 36, .external_lex_state = 6}, - [261] = {.lex_state = 36, .external_lex_state = 6}, - [262] = {.lex_state = 36, .external_lex_state = 6}, - [263] = {.lex_state = 36, .external_lex_state = 6}, - [264] = {.lex_state = 36, .external_lex_state = 6}, - [265] = {.lex_state = 36, .external_lex_state = 6}, - [266] = {.lex_state = 36, .external_lex_state = 6}, - [267] = {.lex_state = 36, .external_lex_state = 6}, - [268] = {.lex_state = 36, .external_lex_state = 6}, - [269] = {.lex_state = 36, .external_lex_state = 6}, - [270] = {.lex_state = 36, .external_lex_state = 6}, + [239] = {.lex_state = 36, .external_lex_state = 10}, + [240] = {.lex_state = 36, .external_lex_state = 2}, + [241] = {.lex_state = 36, .external_lex_state = 10}, + [242] = {.lex_state = 36, .external_lex_state = 4}, + [243] = {.lex_state = 36, .external_lex_state = 4}, + [244] = {.lex_state = 36, .external_lex_state = 4}, + [245] = {.lex_state = 36, .external_lex_state = 4}, + [246] = {.lex_state = 36, .external_lex_state = 4}, + [247] = {.lex_state = 36, .external_lex_state = 2}, + [248] = {.lex_state = 36, .external_lex_state = 4}, + [249] = {.lex_state = 36, .external_lex_state = 4}, + [250] = {.lex_state = 36, .external_lex_state = 4}, + [251] = {.lex_state = 36, .external_lex_state = 4}, + [252] = {.lex_state = 36, .external_lex_state = 4}, + [253] = {.lex_state = 36, .external_lex_state = 4}, + [254] = {.lex_state = 36, .external_lex_state = 4}, + [255] = {.lex_state = 36, .external_lex_state = 4}, + [256] = {.lex_state = 36, .external_lex_state = 2}, + [257] = {.lex_state = 36, .external_lex_state = 4}, + [258] = {.lex_state = 36, .external_lex_state = 4}, + [259] = {.lex_state = 36, .external_lex_state = 2}, + [260] = {.lex_state = 36, .external_lex_state = 4}, + [261] = {.lex_state = 36, .external_lex_state = 4}, + [262] = {.lex_state = 36, .external_lex_state = 4}, + [263] = {.lex_state = 36, .external_lex_state = 4}, + [264] = {.lex_state = 36, .external_lex_state = 4}, + [265] = {.lex_state = 36, .external_lex_state = 4}, + [266] = {.lex_state = 36, .external_lex_state = 4}, + [267] = {.lex_state = 36, .external_lex_state = 4}, + [268] = {.lex_state = 36, .external_lex_state = 4}, + [269] = {.lex_state = 36, .external_lex_state = 4}, + [270] = {.lex_state = 36, .external_lex_state = 4}, [271] = {.lex_state = 36, .external_lex_state = 2}, - [272] = {.lex_state = 36, .external_lex_state = 2}, - [273] = {.lex_state = 36, .external_lex_state = 6}, - [274] = {.lex_state = 36, .external_lex_state = 10}, - [275] = {.lex_state = 36, .external_lex_state = 10}, + [272] = {.lex_state = 36, .external_lex_state = 4}, + [273] = {.lex_state = 36, .external_lex_state = 2}, + [274] = {.lex_state = 36, .external_lex_state = 4}, + [275] = {.lex_state = 36, .external_lex_state = 9}, [276] = {.lex_state = 36, .external_lex_state = 10}, - [277] = {.lex_state = 36, .external_lex_state = 8}, - [278] = {.lex_state = 36, .external_lex_state = 8}, - [279] = {.lex_state = 36, .external_lex_state = 8}, - [280] = {.lex_state = 36, .external_lex_state = 10}, - [281] = {.lex_state = 36, .external_lex_state = 10}, + [277] = {.lex_state = 36, .external_lex_state = 10}, + [278] = {.lex_state = 36, .external_lex_state = 10}, + [279] = {.lex_state = 36, .external_lex_state = 6}, + [280] = {.lex_state = 36, .external_lex_state = 6}, + [281] = {.lex_state = 36, .external_lex_state = 6}, [282] = {.lex_state = 36, .external_lex_state = 10}, - [283] = {.lex_state = 36, .external_lex_state = 8}, - [284] = {.lex_state = 36, .external_lex_state = 8}, - [285] = {.lex_state = 36, .external_lex_state = 2}, - [286] = {.lex_state = 36, .external_lex_state = 10}, - [287] = {.lex_state = 36, .external_lex_state = 8}, - [288] = {.lex_state = 36, .external_lex_state = 8}, - [289] = {.lex_state = 36, .external_lex_state = 8}, - [290] = {.lex_state = 36, .external_lex_state = 8}, - [291] = {.lex_state = 36, .external_lex_state = 8}, - [292] = {.lex_state = 36, .external_lex_state = 8}, - [293] = {.lex_state = 36, .external_lex_state = 8}, - [294] = {.lex_state = 36, .external_lex_state = 2}, - [295] = {.lex_state = 36, .external_lex_state = 2}, - [296] = {.lex_state = 36, .external_lex_state = 10}, - [297] = {.lex_state = 36, .external_lex_state = 8}, + [283] = {.lex_state = 36, .external_lex_state = 2}, + [284] = {.lex_state = 36, .external_lex_state = 9}, + [285] = {.lex_state = 36, .external_lex_state = 6}, + [286] = {.lex_state = 36, .external_lex_state = 6}, + [287] = {.lex_state = 36, .external_lex_state = 2}, + [288] = {.lex_state = 36, .external_lex_state = 2}, + [289] = {.lex_state = 36, .external_lex_state = 6}, + [290] = {.lex_state = 36, .external_lex_state = 6}, + [291] = {.lex_state = 36, .external_lex_state = 6}, + [292] = {.lex_state = 36, .external_lex_state = 6}, + [293] = {.lex_state = 36, .external_lex_state = 6}, + [294] = {.lex_state = 36, .external_lex_state = 6}, + [295] = {.lex_state = 36, .external_lex_state = 6}, + [296] = {.lex_state = 36, .external_lex_state = 9}, + [297] = {.lex_state = 36, .external_lex_state = 2}, [298] = {.lex_state = 36, .external_lex_state = 2}, - [299] = {.lex_state = 36, .external_lex_state = 8}, - [300] = {.lex_state = 36, .external_lex_state = 8}, - [301] = {.lex_state = 36, .external_lex_state = 2}, - [302] = {.lex_state = 36, .external_lex_state = 8}, - [303] = {.lex_state = 36, .external_lex_state = 8}, - [304] = {.lex_state = 36, .external_lex_state = 8}, - [305] = {.lex_state = 36, .external_lex_state = 8}, - [306] = {.lex_state = 36, .external_lex_state = 8}, - [307] = {.lex_state = 36, .external_lex_state = 8}, - [308] = {.lex_state = 36, .external_lex_state = 8}, - [309] = {.lex_state = 36, .external_lex_state = 8}, - [310] = {.lex_state = 36, .external_lex_state = 8}, - [311] = {.lex_state = 36, .external_lex_state = 8}, - [312] = {.lex_state = 36, .external_lex_state = 8}, - [313] = {.lex_state = 36, .external_lex_state = 8}, - [314] = {.lex_state = 36, .external_lex_state = 2}, + [299] = {.lex_state = 36, .external_lex_state = 6}, + [300] = {.lex_state = 36, .external_lex_state = 2}, + [301] = {.lex_state = 36, .external_lex_state = 6}, + [302] = {.lex_state = 36, .external_lex_state = 6}, + [303] = {.lex_state = 36, .external_lex_state = 2}, + [304] = {.lex_state = 36, .external_lex_state = 6}, + [305] = {.lex_state = 36, .external_lex_state = 6}, + [306] = {.lex_state = 36, .external_lex_state = 6}, + [307] = {.lex_state = 36, .external_lex_state = 6}, + [308] = {.lex_state = 36, .external_lex_state = 6}, + [309] = {.lex_state = 36, .external_lex_state = 6}, + [310] = {.lex_state = 36, .external_lex_state = 6}, + [311] = {.lex_state = 36, .external_lex_state = 6}, + [312] = {.lex_state = 36, .external_lex_state = 6}, + [313] = {.lex_state = 36, .external_lex_state = 6}, + [314] = {.lex_state = 36, .external_lex_state = 6}, [315] = {.lex_state = 36, .external_lex_state = 2}, - [316] = {.lex_state = 36, .external_lex_state = 8}, - [317] = {.lex_state = 36, .external_lex_state = 10}, - [318] = {.lex_state = 36, .external_lex_state = 2}, - [319] = {.lex_state = 36, .external_lex_state = 10}, - [320] = {.lex_state = 36, .external_lex_state = 10}, - [321] = {.lex_state = 36, .external_lex_state = 5}, - [322] = {.lex_state = 36, .external_lex_state = 5}, + [316] = {.lex_state = 36, .external_lex_state = 6}, + [317] = {.lex_state = 36, .external_lex_state = 2}, + [318] = {.lex_state = 36, .external_lex_state = 6}, + [319] = {.lex_state = 36, .external_lex_state = 9}, + [320] = {.lex_state = 36, .external_lex_state = 9}, + [321] = {.lex_state = 36, .external_lex_state = 9}, + [322] = {.lex_state = 36, .external_lex_state = 9}, [323] = {.lex_state = 36, .external_lex_state = 5}, - [324] = {.lex_state = 36, .external_lex_state = 10}, - [325] = {.lex_state = 36, .external_lex_state = 10}, - [326] = {.lex_state = 36, .external_lex_state = 10}, - [327] = {.lex_state = 36, .external_lex_state = 5}, - [328] = {.lex_state = 36, .external_lex_state = 5}, - [329] = {.lex_state = 36, .external_lex_state = 2}, - [330] = {.lex_state = 36, .external_lex_state = 10}, - [331] = {.lex_state = 36, .external_lex_state = 5}, - [332] = {.lex_state = 36, .external_lex_state = 5}, + [324] = {.lex_state = 36, .external_lex_state = 5}, + [325] = {.lex_state = 36, .external_lex_state = 5}, + [326] = {.lex_state = 36, .external_lex_state = 9}, + [327] = {.lex_state = 36, .external_lex_state = 9}, + [328] = {.lex_state = 36, .external_lex_state = 9}, + [329] = {.lex_state = 36, .external_lex_state = 5}, + [330] = {.lex_state = 36, .external_lex_state = 2}, + [331] = {.lex_state = 36, .external_lex_state = 2}, + [332] = {.lex_state = 36, .external_lex_state = 9}, [333] = {.lex_state = 36, .external_lex_state = 5}, [334] = {.lex_state = 36, .external_lex_state = 5}, [335] = {.lex_state = 36, .external_lex_state = 5}, [336] = {.lex_state = 36, .external_lex_state = 5}, [337] = {.lex_state = 36, .external_lex_state = 5}, - [338] = {.lex_state = 36, .external_lex_state = 10}, - [339] = {.lex_state = 36, .external_lex_state = 10}, + [338] = {.lex_state = 36, .external_lex_state = 5}, + [339] = {.lex_state = 36, .external_lex_state = 5}, [340] = {.lex_state = 36, .external_lex_state = 2}, - [341] = {.lex_state = 36, .external_lex_state = 5}, - [342] = {.lex_state = 36, .external_lex_state = 2}, + [341] = {.lex_state = 36, .external_lex_state = 9}, + [342] = {.lex_state = 36, .external_lex_state = 9}, [343] = {.lex_state = 36, .external_lex_state = 5}, - [344] = {.lex_state = 36, .external_lex_state = 5}, - [345] = {.lex_state = 36, .external_lex_state = 2}, + [344] = {.lex_state = 36, .external_lex_state = 2}, + [345] = {.lex_state = 36, .external_lex_state = 5}, [346] = {.lex_state = 36, .external_lex_state = 5}, - [347] = {.lex_state = 36, .external_lex_state = 5}, + [347] = {.lex_state = 39, .external_lex_state = 2}, [348] = {.lex_state = 36, .external_lex_state = 5}, [349] = {.lex_state = 36, .external_lex_state = 5}, [350] = {.lex_state = 36, .external_lex_state = 5}, @@ -4322,127 +4263,127 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [355] = {.lex_state = 36, .external_lex_state = 5}, [356] = {.lex_state = 36, .external_lex_state = 5}, [357] = {.lex_state = 36, .external_lex_state = 5}, - [358] = {.lex_state = 36, .external_lex_state = 2}, + [358] = {.lex_state = 36, .external_lex_state = 5}, [359] = {.lex_state = 36, .external_lex_state = 2}, [360] = {.lex_state = 36, .external_lex_state = 5}, - [361] = {.lex_state = 36, .external_lex_state = 10}, - [362] = {.lex_state = 36, .external_lex_state = 10}, - [363] = {.lex_state = 36, .external_lex_state = 10}, - [364] = {.lex_state = 36, .external_lex_state = 10}, - [365] = {.lex_state = 36, .external_lex_state = 4}, - [366] = {.lex_state = 36, .external_lex_state = 4}, - [367] = {.lex_state = 36, .external_lex_state = 4}, - [368] = {.lex_state = 36, .external_lex_state = 10}, - [369] = {.lex_state = 36, .external_lex_state = 2}, - [370] = {.lex_state = 36, .external_lex_state = 11}, - [371] = {.lex_state = 36, .external_lex_state = 4}, - [372] = {.lex_state = 36, .external_lex_state = 4}, - [373] = {.lex_state = 36, .external_lex_state = 2}, - [374] = {.lex_state = 36, .external_lex_state = 2}, - [375] = {.lex_state = 36, .external_lex_state = 4}, - [376] = {.lex_state = 36, .external_lex_state = 4}, - [377] = {.lex_state = 36, .external_lex_state = 4}, - [378] = {.lex_state = 36, .external_lex_state = 4}, - [379] = {.lex_state = 36, .external_lex_state = 4}, - [380] = {.lex_state = 36, .external_lex_state = 4}, - [381] = {.lex_state = 36, .external_lex_state = 4}, - [382] = {.lex_state = 36, .external_lex_state = 2}, - [383] = {.lex_state = 36, .external_lex_state = 2}, - [384] = {.lex_state = 36, .external_lex_state = 2}, - [385] = {.lex_state = 36, .external_lex_state = 4}, - [386] = {.lex_state = 36, .external_lex_state = 2}, - [387] = {.lex_state = 36, .external_lex_state = 4}, - [388] = {.lex_state = 36, .external_lex_state = 4}, - [389] = {.lex_state = 36, .external_lex_state = 2}, - [390] = {.lex_state = 36, .external_lex_state = 4}, - [391] = {.lex_state = 36, .external_lex_state = 4}, - [392] = {.lex_state = 36, .external_lex_state = 4}, - [393] = {.lex_state = 36, .external_lex_state = 4}, - [394] = {.lex_state = 36, .external_lex_state = 4}, - [395] = {.lex_state = 36, .external_lex_state = 4}, - [396] = {.lex_state = 36, .external_lex_state = 4}, - [397] = {.lex_state = 36, .external_lex_state = 4}, - [398] = {.lex_state = 36, .external_lex_state = 4}, - [399] = {.lex_state = 36, .external_lex_state = 4}, - [400] = {.lex_state = 36, .external_lex_state = 4}, - [401] = {.lex_state = 36, .external_lex_state = 4}, - [402] = {.lex_state = 39, .external_lex_state = 2}, - [403] = {.lex_state = 34, .external_lex_state = 2}, - [404] = {.lex_state = 36, .external_lex_state = 4}, - [405] = {.lex_state = 36, .external_lex_state = 11}, - [406] = {.lex_state = 36, .external_lex_state = 11}, - [407] = {.lex_state = 36, .external_lex_state = 11}, - [408] = {.lex_state = 36, .external_lex_state = 11}, - [409] = {.lex_state = 36, .external_lex_state = 7}, - [410] = {.lex_state = 36, .external_lex_state = 7}, - [411] = {.lex_state = 36, .external_lex_state = 7}, - [412] = {.lex_state = 36, .external_lex_state = 11}, - [413] = {.lex_state = 36, .external_lex_state = 11}, - [414] = {.lex_state = 36, .external_lex_state = 11}, - [415] = {.lex_state = 36, .external_lex_state = 7}, - [416] = {.lex_state = 36, .external_lex_state = 7}, - [417] = {.lex_state = 36, .external_lex_state = 19}, - [418] = {.lex_state = 36, .external_lex_state = 11}, - [419] = {.lex_state = 36, .external_lex_state = 7}, - [420] = {.lex_state = 36, .external_lex_state = 7}, - [421] = {.lex_state = 36, .external_lex_state = 7}, - [422] = {.lex_state = 36, .external_lex_state = 7}, - [423] = {.lex_state = 36, .external_lex_state = 7}, - [424] = {.lex_state = 36, .external_lex_state = 7}, - [425] = {.lex_state = 36, .external_lex_state = 7}, - [426] = {.lex_state = 36, .external_lex_state = 11}, - [427] = {.lex_state = 36, .external_lex_state = 11}, - [428] = {.lex_state = 36, .external_lex_state = 11}, - [429] = {.lex_state = 36, .external_lex_state = 7}, - [430] = {.lex_state = 36, .external_lex_state = 19}, - [431] = {.lex_state = 36, .external_lex_state = 7}, - [432] = {.lex_state = 36, .external_lex_state = 7}, - [433] = {.lex_state = 36, .external_lex_state = 9}, - [434] = {.lex_state = 36, .external_lex_state = 7}, - [435] = {.lex_state = 36, .external_lex_state = 7}, - [436] = {.lex_state = 36, .external_lex_state = 7}, - [437] = {.lex_state = 36, .external_lex_state = 7}, - [438] = {.lex_state = 36, .external_lex_state = 7}, - [439] = {.lex_state = 36, .external_lex_state = 7}, - [440] = {.lex_state = 36, .external_lex_state = 7}, - [441] = {.lex_state = 36, .external_lex_state = 7}, - [442] = {.lex_state = 36, .external_lex_state = 7}, - [443] = {.lex_state = 36, .external_lex_state = 7}, - [444] = {.lex_state = 36, .external_lex_state = 7}, - [445] = {.lex_state = 36, .external_lex_state = 7}, - [446] = {.lex_state = 36, .external_lex_state = 9}, - [447] = {.lex_state = 36, .external_lex_state = 9}, - [448] = {.lex_state = 36, .external_lex_state = 7}, - [449] = {.lex_state = 36, .external_lex_state = 11}, - [450] = {.lex_state = 36, .external_lex_state = 9}, - [451] = {.lex_state = 36, .external_lex_state = 11}, - [452] = {.lex_state = 36, .external_lex_state = 9}, - [453] = {.lex_state = 8, .external_lex_state = 2}, - [454] = {.lex_state = 8, .external_lex_state = 2}, + [361] = {.lex_state = 34, .external_lex_state = 2}, + [362] = {.lex_state = 36, .external_lex_state = 5}, + [363] = {.lex_state = 36, .external_lex_state = 9}, + [364] = {.lex_state = 36, .external_lex_state = 2}, + [365] = {.lex_state = 36, .external_lex_state = 9}, + [366] = {.lex_state = 36, .external_lex_state = 11}, + [367] = {.lex_state = 36, .external_lex_state = 7}, + [368] = {.lex_state = 36, .external_lex_state = 7}, + [369] = {.lex_state = 36, .external_lex_state = 7}, + [370] = {.lex_state = 36, .external_lex_state = 9}, + [371] = {.lex_state = 36, .external_lex_state = 11}, + [372] = {.lex_state = 36, .external_lex_state = 9}, + [373] = {.lex_state = 36, .external_lex_state = 7}, + [374] = {.lex_state = 36, .external_lex_state = 7}, + [375] = {.lex_state = 36, .external_lex_state = 3}, + [376] = {.lex_state = 36, .external_lex_state = 9}, + [377] = {.lex_state = 36, .external_lex_state = 7}, + [378] = {.lex_state = 36, .external_lex_state = 7}, + [379] = {.lex_state = 36, .external_lex_state = 7}, + [380] = {.lex_state = 36, .external_lex_state = 7}, + [381] = {.lex_state = 36, .external_lex_state = 7}, + [382] = {.lex_state = 36, .external_lex_state = 7}, + [383] = {.lex_state = 36, .external_lex_state = 7}, + [384] = {.lex_state = 36, .external_lex_state = 9}, + [385] = {.lex_state = 36, .external_lex_state = 9}, + [386] = {.lex_state = 36, .external_lex_state = 9}, + [387] = {.lex_state = 36, .external_lex_state = 7}, + [388] = {.lex_state = 36, .external_lex_state = 3}, + [389] = {.lex_state = 36, .external_lex_state = 7}, + [390] = {.lex_state = 36, .external_lex_state = 7}, + [391] = {.lex_state = 36, .external_lex_state = 3}, + [392] = {.lex_state = 36, .external_lex_state = 7}, + [393] = {.lex_state = 36, .external_lex_state = 7}, + [394] = {.lex_state = 36, .external_lex_state = 7}, + [395] = {.lex_state = 36, .external_lex_state = 7}, + [396] = {.lex_state = 36, .external_lex_state = 7}, + [397] = {.lex_state = 36, .external_lex_state = 7}, + [398] = {.lex_state = 36, .external_lex_state = 7}, + [399] = {.lex_state = 36, .external_lex_state = 7}, + [400] = {.lex_state = 36, .external_lex_state = 7}, + [401] = {.lex_state = 36, .external_lex_state = 7}, + [402] = {.lex_state = 36, .external_lex_state = 7}, + [403] = {.lex_state = 36, .external_lex_state = 3}, + [404] = {.lex_state = 36, .external_lex_state = 7}, + [405] = {.lex_state = 36, .external_lex_state = 3}, + [406] = {.lex_state = 36, .external_lex_state = 7}, + [407] = {.lex_state = 36, .external_lex_state = 9}, + [408] = {.lex_state = 36, .external_lex_state = 9}, + [409] = {.lex_state = 36, .external_lex_state = 9}, + [410] = {.lex_state = 36, .external_lex_state = 3}, + [411] = {.lex_state = 36, .external_lex_state = 8}, + [412] = {.lex_state = 36, .external_lex_state = 8}, + [413] = {.lex_state = 36, .external_lex_state = 8}, + [414] = {.lex_state = 36, .external_lex_state = 9}, + [415] = {.lex_state = 36, .external_lex_state = 3}, + [416] = {.lex_state = 36, .external_lex_state = 2}, + [417] = {.lex_state = 36, .external_lex_state = 8}, + [418] = {.lex_state = 36, .external_lex_state = 8}, + [419] = {.lex_state = 36, .external_lex_state = 3}, + [420] = {.lex_state = 36, .external_lex_state = 9}, + [421] = {.lex_state = 36, .external_lex_state = 8}, + [422] = {.lex_state = 36, .external_lex_state = 8}, + [423] = {.lex_state = 36, .external_lex_state = 8}, + [424] = {.lex_state = 36, .external_lex_state = 8}, + [425] = {.lex_state = 36, .external_lex_state = 8}, + [426] = {.lex_state = 36, .external_lex_state = 8}, + [427] = {.lex_state = 36, .external_lex_state = 8}, + [428] = {.lex_state = 36, .external_lex_state = 9}, + [429] = {.lex_state = 36, .external_lex_state = 9}, + [430] = {.lex_state = 36, .external_lex_state = 3}, + [431] = {.lex_state = 36, .external_lex_state = 8}, + [432] = {.lex_state = 36, .external_lex_state = 3}, + [433] = {.lex_state = 36, .external_lex_state = 8}, + [434] = {.lex_state = 36, .external_lex_state = 8}, + [435] = {.lex_state = 36, .external_lex_state = 3}, + [436] = {.lex_state = 36, .external_lex_state = 8}, + [437] = {.lex_state = 36, .external_lex_state = 10}, + [438] = {.lex_state = 36, .external_lex_state = 8}, + [439] = {.lex_state = 36, .external_lex_state = 8}, + [440] = {.lex_state = 36, .external_lex_state = 8}, + [441] = {.lex_state = 36, .external_lex_state = 8}, + [442] = {.lex_state = 36, .external_lex_state = 8}, + [443] = {.lex_state = 36, .external_lex_state = 8}, + [444] = {.lex_state = 36, .external_lex_state = 8}, + [445] = {.lex_state = 36, .external_lex_state = 8}, + [446] = {.lex_state = 36, .external_lex_state = 8}, + [447] = {.lex_state = 36, .external_lex_state = 3}, + [448] = {.lex_state = 36, .external_lex_state = 8}, + [449] = {.lex_state = 36, .external_lex_state = 3}, + [450] = {.lex_state = 36, .external_lex_state = 8}, + [451] = {.lex_state = 36, .external_lex_state = 3}, + [452] = {.lex_state = 36, .external_lex_state = 3}, + [453] = {.lex_state = 36, .external_lex_state = 3}, + [454] = {.lex_state = 36, .external_lex_state = 2}, [455] = {.lex_state = 8, .external_lex_state = 2}, - [456] = {.lex_state = 36, .external_lex_state = 11}, - [457] = {.lex_state = 36, .external_lex_state = 9}, - [458] = {.lex_state = 36, .external_lex_state = 11}, - [459] = {.lex_state = 8, .external_lex_state = 2}, + [456] = {.lex_state = 8, .external_lex_state = 2}, + [457] = {.lex_state = 8, .external_lex_state = 2}, + [458] = {.lex_state = 36, .external_lex_state = 2}, + [459] = {.lex_state = 36, .external_lex_state = 2}, [460] = {.lex_state = 8, .external_lex_state = 2}, - [461] = {.lex_state = 36, .external_lex_state = 9}, - [462] = {.lex_state = 36, .external_lex_state = 11}, - [463] = {.lex_state = 8, .external_lex_state = 2}, + [461] = {.lex_state = 8, .external_lex_state = 2}, + [462] = {.lex_state = 36, .external_lex_state = 2}, + [463] = {.lex_state = 36, .external_lex_state = 3}, [464] = {.lex_state = 8, .external_lex_state = 2}, [465] = {.lex_state = 8, .external_lex_state = 2}, [466] = {.lex_state = 8, .external_lex_state = 2}, [467] = {.lex_state = 8, .external_lex_state = 2}, [468] = {.lex_state = 8, .external_lex_state = 2}, [469] = {.lex_state = 8, .external_lex_state = 2}, - [470] = {.lex_state = 36, .external_lex_state = 11}, - [471] = {.lex_state = 36, .external_lex_state = 11}, - [472] = {.lex_state = 36, .external_lex_state = 11}, - [473] = {.lex_state = 8, .external_lex_state = 2}, - [474] = {.lex_state = 36, .external_lex_state = 9}, - [475] = {.lex_state = 8, .external_lex_state = 2}, - [476] = {.lex_state = 36, .external_lex_state = 10}, - [477] = {.lex_state = 36, .external_lex_state = 9}, - [478] = {.lex_state = 8, .external_lex_state = 2}, + [470] = {.lex_state = 8, .external_lex_state = 2}, + [471] = {.lex_state = 36, .external_lex_state = 3}, + [472] = {.lex_state = 36, .external_lex_state = 3}, + [473] = {.lex_state = 36, .external_lex_state = 3}, + [474] = {.lex_state = 8, .external_lex_state = 2}, + [475] = {.lex_state = 36, .external_lex_state = 3}, + [476] = {.lex_state = 8, .external_lex_state = 2}, + [477] = {.lex_state = 8, .external_lex_state = 2}, + [478] = {.lex_state = 36, .external_lex_state = 3}, [479] = {.lex_state = 8, .external_lex_state = 2}, [480] = {.lex_state = 8, .external_lex_state = 2}, [481] = {.lex_state = 8, .external_lex_state = 2}, @@ -4454,789 +4395,708 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [487] = {.lex_state = 8, .external_lex_state = 2}, [488] = {.lex_state = 8, .external_lex_state = 2}, [489] = {.lex_state = 8, .external_lex_state = 2}, - [490] = {.lex_state = 36, .external_lex_state = 9}, - [491] = {.lex_state = 36, .external_lex_state = 9}, - [492] = {.lex_state = 8, .external_lex_state = 2}, - [493] = {.lex_state = 36, .external_lex_state = 11}, - [494] = {.lex_state = 36, .external_lex_state = 11}, - [495] = {.lex_state = 36, .external_lex_state = 11}, - [496] = {.lex_state = 36, .external_lex_state = 9}, + [490] = {.lex_state = 36, .external_lex_state = 3}, + [491] = {.lex_state = 8, .external_lex_state = 2}, + [492] = {.lex_state = 36, .external_lex_state = 2}, + [493] = {.lex_state = 8, .external_lex_state = 2}, + [494] = {.lex_state = 36, .external_lex_state = 2}, + [495] = {.lex_state = 36, .external_lex_state = 3}, + [496] = {.lex_state = 36, .external_lex_state = 3}, [497] = {.lex_state = 36, .external_lex_state = 3}, [498] = {.lex_state = 36, .external_lex_state = 3}, [499] = {.lex_state = 36, .external_lex_state = 3}, - [500] = {.lex_state = 36, .external_lex_state = 11}, - [501] = {.lex_state = 36, .external_lex_state = 9}, - [502] = {.lex_state = 36, .external_lex_state = 3}, - [503] = {.lex_state = 36, .external_lex_state = 3}, - [504] = {.lex_state = 36, .external_lex_state = 9}, - [505] = {.lex_state = 36, .external_lex_state = 2}, - [506] = {.lex_state = 36, .external_lex_state = 3}, - [507] = {.lex_state = 36, .external_lex_state = 3}, - [508] = {.lex_state = 36, .external_lex_state = 3}, - [509] = {.lex_state = 36, .external_lex_state = 3}, - [510] = {.lex_state = 36, .external_lex_state = 3}, - [511] = {.lex_state = 36, .external_lex_state = 3}, - [512] = {.lex_state = 36, .external_lex_state = 3}, - [513] = {.lex_state = 36, .external_lex_state = 11}, - [514] = {.lex_state = 36, .external_lex_state = 11}, - [515] = {.lex_state = 36, .external_lex_state = 11}, - [516] = {.lex_state = 36, .external_lex_state = 3}, - [517] = {.lex_state = 36, .external_lex_state = 9}, - [518] = {.lex_state = 36, .external_lex_state = 3}, - [519] = {.lex_state = 36, .external_lex_state = 3}, - [520] = {.lex_state = 36, .external_lex_state = 9}, - [521] = {.lex_state = 36, .external_lex_state = 3}, - [522] = {.lex_state = 36, .external_lex_state = 3}, - [523] = {.lex_state = 36, .external_lex_state = 3}, - [524] = {.lex_state = 36, .external_lex_state = 3}, - [525] = {.lex_state = 36, .external_lex_state = 3}, - [526] = {.lex_state = 36, .external_lex_state = 3}, - [527] = {.lex_state = 36, .external_lex_state = 3}, - [528] = {.lex_state = 36, .external_lex_state = 3}, - [529] = {.lex_state = 36, .external_lex_state = 3}, - [530] = {.lex_state = 36, .external_lex_state = 3}, - [531] = {.lex_state = 36, .external_lex_state = 3}, - [532] = {.lex_state = 36, .external_lex_state = 3}, - [533] = {.lex_state = 36, .external_lex_state = 2}, - [534] = {.lex_state = 36, .external_lex_state = 9}, - [535] = {.lex_state = 36, .external_lex_state = 3}, - [536] = {.lex_state = 36, .external_lex_state = 9}, - [537] = {.lex_state = 36, .external_lex_state = 9}, - [538] = {.lex_state = 36, .external_lex_state = 9}, - [539] = {.lex_state = 36, .external_lex_state = 9}, - [540] = {.lex_state = 36, .external_lex_state = 9}, - [541] = {.lex_state = 36, .external_lex_state = 9}, - [542] = {.lex_state = 36, .external_lex_state = 9}, - [543] = {.lex_state = 36, .external_lex_state = 2}, - [544] = {.lex_state = 36, .external_lex_state = 9}, - [545] = {.lex_state = 36, .external_lex_state = 9}, - [546] = {.lex_state = 36, .external_lex_state = 9}, - [547] = {.lex_state = 36, .external_lex_state = 9}, - [548] = {.lex_state = 32, .external_lex_state = 5}, + [500] = {.lex_state = 32, .external_lex_state = 6}, + [501] = {.lex_state = 36, .external_lex_state = 2}, + [502] = {.lex_state = 32, .external_lex_state = 10}, + [503] = {.lex_state = 32, .external_lex_state = 10}, + [504] = {.lex_state = 32, .external_lex_state = 3}, + [505] = {.lex_state = 1, .external_lex_state = 2}, + [506] = {.lex_state = 1, .external_lex_state = 2}, + [507] = {.lex_state = 1, .external_lex_state = 2}, + [508] = {.lex_state = 1, .external_lex_state = 2}, + [509] = {.lex_state = 32, .external_lex_state = 2}, + [510] = {.lex_state = 32, .external_lex_state = 6}, + [511] = {.lex_state = 32, .external_lex_state = 10}, + [512] = {.lex_state = 32, .external_lex_state = 10}, + [513] = {.lex_state = 1, .external_lex_state = 2}, + [514] = {.lex_state = 32, .external_lex_state = 2}, + [515] = {.lex_state = 32, .external_lex_state = 10}, + [516] = {.lex_state = 32, .external_lex_state = 3}, + [517] = {.lex_state = 32, .external_lex_state = 4}, + [518] = {.lex_state = 32, .external_lex_state = 2}, + [519] = {.lex_state = 32, .external_lex_state = 3}, + [520] = {.lex_state = 32, .external_lex_state = 8}, + [521] = {.lex_state = 32, .external_lex_state = 8}, + [522] = {.lex_state = 32, .external_lex_state = 8}, + [523] = {.lex_state = 32, .external_lex_state = 8}, + [524] = {.lex_state = 32, .external_lex_state = 4}, + [525] = {.lex_state = 32, .external_lex_state = 8}, + [526] = {.lex_state = 32, .external_lex_state = 4}, + [527] = {.lex_state = 32, .external_lex_state = 9}, + [528] = {.lex_state = 32, .external_lex_state = 7}, + [529] = {.lex_state = 32, .external_lex_state = 7}, + [530] = {.lex_state = 32, .external_lex_state = 7}, + [531] = {.lex_state = 32, .external_lex_state = 3}, + [532] = {.lex_state = 32, .external_lex_state = 7}, + [533] = {.lex_state = 32, .external_lex_state = 3}, + [534] = {.lex_state = 32, .external_lex_state = 7}, + [535] = {.lex_state = 32, .external_lex_state = 9}, + [536] = {.lex_state = 32, .external_lex_state = 10}, + [537] = {.lex_state = 32, .external_lex_state = 9}, + [538] = {.lex_state = 32, .external_lex_state = 5}, + [539] = {.lex_state = 36, .external_lex_state = 2}, + [540] = {.lex_state = 36, .external_lex_state = 2}, + [541] = {.lex_state = 36, .external_lex_state = 2}, + [542] = {.lex_state = 32, .external_lex_state = 5}, + [543] = {.lex_state = 32, .external_lex_state = 4}, + [544] = {.lex_state = 36, .external_lex_state = 2}, + [545] = {.lex_state = 32, .external_lex_state = 4}, + [546] = {.lex_state = 32, .external_lex_state = 5}, + [547] = {.lex_state = 36, .external_lex_state = 2}, + [548] = {.lex_state = 36, .external_lex_state = 2}, [549] = {.lex_state = 36, .external_lex_state = 2}, - [550] = {.lex_state = 32, .external_lex_state = 10}, - [551] = {.lex_state = 32, .external_lex_state = 10}, - [552] = {.lex_state = 32, .external_lex_state = 6}, - [553] = {.lex_state = 32, .external_lex_state = 6}, - [554] = {.lex_state = 32, .external_lex_state = 3}, - [555] = {.lex_state = 32, .external_lex_state = 3}, - [556] = {.lex_state = 32, .external_lex_state = 6}, - [557] = {.lex_state = 32, .external_lex_state = 3}, - [558] = {.lex_state = 32, .external_lex_state = 9}, - [559] = {.lex_state = 32, .external_lex_state = 3}, - [560] = {.lex_state = 32, .external_lex_state = 3}, - [561] = {.lex_state = 32, .external_lex_state = 9}, - [562] = {.lex_state = 32, .external_lex_state = 2}, - [563] = {.lex_state = 32, .external_lex_state = 11}, - [564] = {.lex_state = 1, .external_lex_state = 2}, - [565] = {.lex_state = 1, .external_lex_state = 2}, - [566] = {.lex_state = 1, .external_lex_state = 2}, - [567] = {.lex_state = 1, .external_lex_state = 2}, - [568] = {.lex_state = 1, .external_lex_state = 2}, - [569] = {.lex_state = 32, .external_lex_state = 11}, - [570] = {.lex_state = 32, .external_lex_state = 10}, - [571] = {.lex_state = 32, .external_lex_state = 11}, - [572] = {.lex_state = 32, .external_lex_state = 7}, - [573] = {.lex_state = 32, .external_lex_state = 7}, + [550] = {.lex_state = 36, .external_lex_state = 2}, + [551] = {.lex_state = 36, .external_lex_state = 2}, + [552] = {.lex_state = 36, .external_lex_state = 2}, + [553] = {.lex_state = 36, .external_lex_state = 2}, + [554] = {.lex_state = 32, .external_lex_state = 5}, + [555] = {.lex_state = 32, .external_lex_state = 10}, + [556] = {.lex_state = 36, .external_lex_state = 2}, + [557] = {.lex_state = 32, .external_lex_state = 6}, + [558] = {.lex_state = 36, .external_lex_state = 2}, + [559] = {.lex_state = 36, .external_lex_state = 2}, + [560] = {.lex_state = 32, .external_lex_state = 9}, + [561] = {.lex_state = 36, .external_lex_state = 2}, + [562] = {.lex_state = 36, .external_lex_state = 2}, + [563] = {.lex_state = 36, .external_lex_state = 2}, + [564] = {.lex_state = 36, .external_lex_state = 2}, + [565] = {.lex_state = 36, .external_lex_state = 2}, + [566] = {.lex_state = 36, .external_lex_state = 2}, + [567] = {.lex_state = 36, .external_lex_state = 2}, + [568] = {.lex_state = 36, .external_lex_state = 2}, + [569] = {.lex_state = 36, .external_lex_state = 2}, + [570] = {.lex_state = 36, .external_lex_state = 2}, + [571] = {.lex_state = 36, .external_lex_state = 2}, + [572] = {.lex_state = 32, .external_lex_state = 2}, + [573] = {.lex_state = 36, .external_lex_state = 2}, [574] = {.lex_state = 32, .external_lex_state = 9}, - [575] = {.lex_state = 32, .external_lex_state = 9}, - [576] = {.lex_state = 32, .external_lex_state = 7}, - [577] = {.lex_state = 32, .external_lex_state = 7}, - [578] = {.lex_state = 32, .external_lex_state = 7}, - [579] = {.lex_state = 32, .external_lex_state = 6}, - [580] = {.lex_state = 32, .external_lex_state = 4}, - [581] = {.lex_state = 36, .external_lex_state = 2}, - [582] = {.lex_state = 36, .external_lex_state = 2}, - [583] = {.lex_state = 36, .external_lex_state = 2}, + [575] = {.lex_state = 36, .external_lex_state = 2}, + [576] = {.lex_state = 32, .external_lex_state = 5}, + [577] = {.lex_state = 32, .external_lex_state = 9}, + [578] = {.lex_state = 32, .external_lex_state = 6}, + [579] = {.lex_state = 32, .external_lex_state = 2}, + [580] = {.lex_state = 32, .external_lex_state = 6}, + [581] = {.lex_state = 32, .external_lex_state = 9}, + [582] = {.lex_state = 32, .external_lex_state = 2}, + [583] = {.lex_state = 32, .external_lex_state = 2}, [584] = {.lex_state = 32, .external_lex_state = 2}, - [585] = {.lex_state = 36, .external_lex_state = 2}, - [586] = {.lex_state = 36, .external_lex_state = 2}, - [587] = {.lex_state = 32, .external_lex_state = 6}, - [588] = {.lex_state = 32, .external_lex_state = 4}, - [589] = {.lex_state = 36, .external_lex_state = 2}, - [590] = {.lex_state = 36, .external_lex_state = 2}, - [591] = {.lex_state = 36, .external_lex_state = 2}, - [592] = {.lex_state = 32, .external_lex_state = 2}, - [593] = {.lex_state = 36, .external_lex_state = 2}, - [594] = {.lex_state = 36, .external_lex_state = 2}, - [595] = {.lex_state = 36, .external_lex_state = 2}, - [596] = {.lex_state = 32, .external_lex_state = 4}, - [597] = {.lex_state = 32, .external_lex_state = 8}, - [598] = {.lex_state = 36, .external_lex_state = 2}, - [599] = {.lex_state = 32, .external_lex_state = 10}, - [600] = {.lex_state = 36, .external_lex_state = 2}, - [601] = {.lex_state = 36, .external_lex_state = 2}, - [602] = {.lex_state = 32, .external_lex_state = 10}, - [603] = {.lex_state = 36, .external_lex_state = 2}, - [604] = {.lex_state = 36, .external_lex_state = 2}, - [605] = {.lex_state = 36, .external_lex_state = 2}, - [606] = {.lex_state = 36, .external_lex_state = 2}, - [607] = {.lex_state = 36, .external_lex_state = 2}, - [608] = {.lex_state = 36, .external_lex_state = 2}, - [609] = {.lex_state = 36, .external_lex_state = 2}, - [610] = {.lex_state = 36, .external_lex_state = 2}, - [611] = {.lex_state = 36, .external_lex_state = 2}, - [612] = {.lex_state = 32, .external_lex_state = 11}, - [613] = {.lex_state = 36, .external_lex_state = 2}, - [614] = {.lex_state = 36, .external_lex_state = 2}, - [615] = {.lex_state = 32, .external_lex_state = 8}, - [616] = {.lex_state = 32, .external_lex_state = 8}, - [617] = {.lex_state = 36, .external_lex_state = 2}, - [618] = {.lex_state = 32, .external_lex_state = 8}, - [619] = {.lex_state = 32, .external_lex_state = 8}, - [620] = {.lex_state = 32, .external_lex_state = 2}, - [621] = {.lex_state = 32, .external_lex_state = 10}, - [622] = {.lex_state = 32, .external_lex_state = 5}, - [623] = {.lex_state = 32, .external_lex_state = 11}, - [624] = {.lex_state = 32, .external_lex_state = 11}, - [625] = {.lex_state = 32, .external_lex_state = 5}, - [626] = {.lex_state = 32, .external_lex_state = 11}, - [627] = {.lex_state = 32, .external_lex_state = 4}, - [628] = {.lex_state = 32, .external_lex_state = 2}, - [629] = {.lex_state = 32, .external_lex_state = 10}, - [630] = {.lex_state = 32, .external_lex_state = 5}, - [631] = {.lex_state = 32, .external_lex_state = 5}, - [632] = {.lex_state = 36, .external_lex_state = 2}, - [633] = {.lex_state = 32, .external_lex_state = 9}, - [634] = {.lex_state = 32, .external_lex_state = 4}, - [635] = {.lex_state = 32, .external_lex_state = 2}, - [636] = {.lex_state = 32, .external_lex_state = 2}, - [637] = {.lex_state = 32, .external_lex_state = 2}, - [638] = {.lex_state = 32, .external_lex_state = 2}, - [639] = {.lex_state = 32, .external_lex_state = 2}, - [640] = {.lex_state = 5, .external_lex_state = 22}, - [641] = {.lex_state = 5, .external_lex_state = 22}, - [642] = {.lex_state = 5, .external_lex_state = 22}, - [643] = {.lex_state = 5, .external_lex_state = 22}, - [644] = {.lex_state = 5, .external_lex_state = 22}, - [645] = {.lex_state = 5, .external_lex_state = 22}, - [646] = {.lex_state = 5, .external_lex_state = 22}, - [647] = {.lex_state = 5, .external_lex_state = 22}, - [648] = {.lex_state = 5, .external_lex_state = 22}, - [649] = {.lex_state = 5, .external_lex_state = 22}, - [650] = {.lex_state = 5, .external_lex_state = 22}, - [651] = {.lex_state = 5, .external_lex_state = 22}, - [652] = {.lex_state = 5, .external_lex_state = 22}, - [653] = {.lex_state = 5, .external_lex_state = 22}, - [654] = {.lex_state = 5, .external_lex_state = 22}, - [655] = {.lex_state = 5, .external_lex_state = 22}, - [656] = {.lex_state = 5, .external_lex_state = 22}, - [657] = {.lex_state = 5, .external_lex_state = 22}, - [658] = {.lex_state = 5, .external_lex_state = 22}, - [659] = {.lex_state = 5, .external_lex_state = 22}, - [660] = {.lex_state = 5, .external_lex_state = 22}, - [661] = {.lex_state = 5, .external_lex_state = 22}, - [662] = {.lex_state = 5, .external_lex_state = 22}, - [663] = {.lex_state = 5, .external_lex_state = 22}, - [664] = {.lex_state = 5, .external_lex_state = 22}, - [665] = {.lex_state = 5, .external_lex_state = 22}, - [666] = {.lex_state = 5, .external_lex_state = 22}, - [667] = {.lex_state = 5, .external_lex_state = 22}, - [668] = {.lex_state = 5, .external_lex_state = 22}, - [669] = {.lex_state = 5, .external_lex_state = 22}, - [670] = {.lex_state = 5, .external_lex_state = 22}, - [671] = {.lex_state = 5, .external_lex_state = 22}, - [672] = {.lex_state = 5, .external_lex_state = 22}, - [673] = {.lex_state = 5, .external_lex_state = 22}, - [674] = {.lex_state = 5}, - [675] = {.lex_state = 5}, - [676] = {.lex_state = 5}, - [677] = {.lex_state = 5}, - [678] = {.lex_state = 5}, + [585] = {.lex_state = 32, .external_lex_state = 2}, + [586] = {.lex_state = 32, .external_lex_state = 2}, + [587] = {.lex_state = 5, .external_lex_state = 20}, + [588] = {.lex_state = 5, .external_lex_state = 20}, + [589] = {.lex_state = 5, .external_lex_state = 20}, + [590] = {.lex_state = 5, .external_lex_state = 20}, + [591] = {.lex_state = 5, .external_lex_state = 20}, + [592] = {.lex_state = 5, .external_lex_state = 20}, + [593] = {.lex_state = 5, .external_lex_state = 20}, + [594] = {.lex_state = 5, .external_lex_state = 20}, + [595] = {.lex_state = 5, .external_lex_state = 20}, + [596] = {.lex_state = 5, .external_lex_state = 20}, + [597] = {.lex_state = 5, .external_lex_state = 20}, + [598] = {.lex_state = 5, .external_lex_state = 20}, + [599] = {.lex_state = 5, .external_lex_state = 20}, + [600] = {.lex_state = 5, .external_lex_state = 20}, + [601] = {.lex_state = 5, .external_lex_state = 20}, + [602] = {.lex_state = 5, .external_lex_state = 20}, + [603] = {.lex_state = 5, .external_lex_state = 20}, + [604] = {.lex_state = 5, .external_lex_state = 20}, + [605] = {.lex_state = 5, .external_lex_state = 20}, + [606] = {.lex_state = 5, .external_lex_state = 20}, + [607] = {.lex_state = 5, .external_lex_state = 20}, + [608] = {.lex_state = 5, .external_lex_state = 20}, + [609] = {.lex_state = 5, .external_lex_state = 20}, + [610] = {.lex_state = 5, .external_lex_state = 20}, + [611] = {.lex_state = 5, .external_lex_state = 20}, + [612] = {.lex_state = 5, .external_lex_state = 20}, + [613] = {.lex_state = 5, .external_lex_state = 20}, + [614] = {.lex_state = 5, .external_lex_state = 20}, + [615] = {.lex_state = 5, .external_lex_state = 20}, + [616] = {.lex_state = 5, .external_lex_state = 20}, + [617] = {.lex_state = 5, .external_lex_state = 20}, + [618] = {.lex_state = 5, .external_lex_state = 20}, + [619] = {.lex_state = 5}, + [620] = {.lex_state = 5}, + [621] = {.lex_state = 5}, + [622] = {.lex_state = 5}, + [623] = {.lex_state = 5}, + [624] = {.lex_state = 5}, + [625] = {.lex_state = 5}, + [626] = {.lex_state = 5}, + [627] = {.lex_state = 5}, + [628] = {.lex_state = 5}, + [629] = {.lex_state = 5}, + [630] = {.lex_state = 5}, + [631] = {.lex_state = 5}, + [632] = {.lex_state = 5}, + [633] = {.lex_state = 5}, + [634] = {.lex_state = 5}, + [635] = {.lex_state = 5}, + [636] = {.lex_state = 5}, + [637] = {.lex_state = 5}, + [638] = {.lex_state = 5}, + [639] = {.lex_state = 5}, + [640] = {.lex_state = 5}, + [641] = {.lex_state = 5}, + [642] = {.lex_state = 5}, + [643] = {.lex_state = 5}, + [644] = {.lex_state = 5}, + [645] = {.lex_state = 5}, + [646] = {.lex_state = 5}, + [647] = {.lex_state = 5}, + [648] = {.lex_state = 5}, + [649] = {.lex_state = 5}, + [650] = {.lex_state = 5}, + [651] = {.lex_state = 5}, + [652] = {.lex_state = 7}, + [653] = {.lex_state = 7}, + [654] = {.lex_state = 7}, + [655] = {.lex_state = 7}, + [656] = {.lex_state = 7}, + [657] = {.lex_state = 7}, + [658] = {.lex_state = 13}, + [659] = {.lex_state = 5}, + [660] = {.lex_state = 5}, + [661] = {.lex_state = 0, .external_lex_state = 21}, + [662] = {.lex_state = 0, .external_lex_state = 22}, + [663] = {.lex_state = 0, .external_lex_state = 23}, + [664] = {.lex_state = 0, .external_lex_state = 22}, + [665] = {.lex_state = 0, .external_lex_state = 24}, + [666] = {.lex_state = 0, .external_lex_state = 25}, + [667] = {.lex_state = 0, .external_lex_state = 21}, + [668] = {.lex_state = 0, .external_lex_state = 22}, + [669] = {.lex_state = 0, .external_lex_state = 22}, + [670] = {.lex_state = 0, .external_lex_state = 24}, + [671] = {.lex_state = 0, .external_lex_state = 26}, + [672] = {.lex_state = 0, .external_lex_state = 27}, + [673] = {.lex_state = 0, .external_lex_state = 28}, + [674] = {.lex_state = 0, .external_lex_state = 29}, + [675] = {.lex_state = 0, .external_lex_state = 30}, + [676] = {.lex_state = 0, .external_lex_state = 21}, + [677] = {.lex_state = 0, .external_lex_state = 21}, + [678] = {.lex_state = 0, .external_lex_state = 21}, [679] = {.lex_state = 5}, - [680] = {.lex_state = 5}, + [680] = {.lex_state = 0, .external_lex_state = 23}, [681] = {.lex_state = 5}, [682] = {.lex_state = 5}, [683] = {.lex_state = 5}, - [684] = {.lex_state = 5}, - [685] = {.lex_state = 5}, - [686] = {.lex_state = 5}, - [687] = {.lex_state = 5}, - [688] = {.lex_state = 5}, - [689] = {.lex_state = 5}, - [690] = {.lex_state = 5}, - [691] = {.lex_state = 5}, - [692] = {.lex_state = 7}, - [693] = {.lex_state = 5}, - [694] = {.lex_state = 5}, - [695] = {.lex_state = 7}, + [684] = {.lex_state = 0, .external_lex_state = 24}, + [685] = {.lex_state = 0, .external_lex_state = 26}, + [686] = {.lex_state = 0, .external_lex_state = 27}, + [687] = {.lex_state = 0, .external_lex_state = 28}, + [688] = {.lex_state = 0, .external_lex_state = 29}, + [689] = {.lex_state = 0, .external_lex_state = 30}, + [690] = {.lex_state = 0, .external_lex_state = 24}, + [691] = {.lex_state = 0, .external_lex_state = 21}, + [692] = {.lex_state = 0, .external_lex_state = 21}, + [693] = {.lex_state = 0, .external_lex_state = 21}, + [694] = {.lex_state = 0, .external_lex_state = 23}, + [695] = {.lex_state = 0, .external_lex_state = 21}, [696] = {.lex_state = 5}, - [697] = {.lex_state = 7}, - [698] = {.lex_state = 5}, - [699] = {.lex_state = 5}, - [700] = {.lex_state = 5}, - [701] = {.lex_state = 5}, + [697] = {.lex_state = 0, .external_lex_state = 25}, + [698] = {.lex_state = 0, .external_lex_state = 22}, + [699] = {.lex_state = 0, .external_lex_state = 24}, + [700] = {.lex_state = 0, .external_lex_state = 25}, + [701] = {.lex_state = 0, .external_lex_state = 30}, [702] = {.lex_state = 5}, - [703] = {.lex_state = 7}, + [703] = {.lex_state = 5}, [704] = {.lex_state = 5}, [705] = {.lex_state = 5}, [706] = {.lex_state = 5}, [707] = {.lex_state = 5}, [708] = {.lex_state = 5}, - [709] = {.lex_state = 7}, + [709] = {.lex_state = 5}, [710] = {.lex_state = 5}, - [711] = {.lex_state = 5}, + [711] = {.lex_state = 0, .external_lex_state = 22}, [712] = {.lex_state = 5}, - [713] = {.lex_state = 5}, + [713] = {.lex_state = 0, .external_lex_state = 29}, [714] = {.lex_state = 5}, - [715] = {.lex_state = 7}, - [716] = {.lex_state = 5}, - [717] = {.lex_state = 5}, - [718] = {.lex_state = 13}, - [719] = {.lex_state = 0, .external_lex_state = 23}, - [720] = {.lex_state = 5}, - [721] = {.lex_state = 0, .external_lex_state = 24}, - [722] = {.lex_state = 0, .external_lex_state = 23}, - [723] = {.lex_state = 0, .external_lex_state = 25}, + [715] = {.lex_state = 0, .external_lex_state = 28}, + [716] = {.lex_state = 0, .external_lex_state = 24}, + [717] = {.lex_state = 0, .external_lex_state = 22}, + [718] = {.lex_state = 0, .external_lex_state = 24}, + [719] = {.lex_state = 0, .external_lex_state = 26}, + [720] = {.lex_state = 0, .external_lex_state = 27}, + [721] = {.lex_state = 0, .external_lex_state = 28}, + [722] = {.lex_state = 0, .external_lex_state = 29}, + [723] = {.lex_state = 0, .external_lex_state = 30}, [724] = {.lex_state = 0, .external_lex_state = 26}, - [725] = {.lex_state = 0, .external_lex_state = 27}, - [726] = {.lex_state = 0, .external_lex_state = 28}, - [727] = {.lex_state = 0, .external_lex_state = 29}, - [728] = {.lex_state = 0, .external_lex_state = 30}, - [729] = {.lex_state = 0, .external_lex_state = 24}, - [730] = {.lex_state = 0, .external_lex_state = 23}, - [731] = {.lex_state = 0, .external_lex_state = 25}, - [732] = {.lex_state = 0, .external_lex_state = 26}, - [733] = {.lex_state = 0, .external_lex_state = 27}, - [734] = {.lex_state = 0, .external_lex_state = 28}, - [735] = {.lex_state = 0, .external_lex_state = 29}, - [736] = {.lex_state = 0, .external_lex_state = 31}, - [737] = {.lex_state = 0, .external_lex_state = 30}, - [738] = {.lex_state = 0, .external_lex_state = 31}, - [739] = {.lex_state = 0, .external_lex_state = 32}, - [740] = {.lex_state = 0, .external_lex_state = 32}, - [741] = {.lex_state = 0, .external_lex_state = 24}, - [742] = {.lex_state = 0, .external_lex_state = 23}, - [743] = {.lex_state = 0, .external_lex_state = 33}, - [744] = {.lex_state = 5}, - [745] = {.lex_state = 5}, - [746] = {.lex_state = 5}, - [747] = {.lex_state = 0, .external_lex_state = 24}, - [748] = {.lex_state = 0, .external_lex_state = 23}, - [749] = {.lex_state = 5}, + [725] = {.lex_state = 0, .external_lex_state = 21}, + [726] = {.lex_state = 0, .external_lex_state = 21}, + [727] = {.lex_state = 0, .external_lex_state = 21}, + [728] = {.lex_state = 0, .external_lex_state = 23}, + [729] = {.lex_state = 0, .external_lex_state = 27}, + [730] = {.lex_state = 0, .external_lex_state = 26}, + [731] = {.lex_state = 0, .external_lex_state = 27}, + [732] = {.lex_state = 0, .external_lex_state = 22}, + [733] = {.lex_state = 0, .external_lex_state = 24}, + [734] = {.lex_state = 0, .external_lex_state = 25}, + [735] = {.lex_state = 0, .external_lex_state = 24}, + [736] = {.lex_state = 0, .external_lex_state = 28}, + [737] = {.lex_state = 0, .external_lex_state = 29}, + [738] = {.lex_state = 0, .external_lex_state = 30}, + [739] = {.lex_state = 5}, + [740] = {.lex_state = 5}, + [741] = {.lex_state = 0, .external_lex_state = 21}, + [742] = {.lex_state = 0, .external_lex_state = 21}, + [743] = {.lex_state = 0, .external_lex_state = 21}, + [744] = {.lex_state = 0, .external_lex_state = 23}, + [745] = {.lex_state = 0, .external_lex_state = 22}, + [746] = {.lex_state = 0, .external_lex_state = 24}, + [747] = {.lex_state = 0, .external_lex_state = 22}, + [748] = {.lex_state = 5}, + [749] = {.lex_state = 0, .external_lex_state = 25}, [750] = {.lex_state = 5}, - [751] = {.lex_state = 5}, - [752] = {.lex_state = 5}, - [753] = {.lex_state = 5}, - [754] = {.lex_state = 5}, - [755] = {.lex_state = 5}, - [756] = {.lex_state = 5}, - [757] = {.lex_state = 0, .external_lex_state = 24}, - [758] = {.lex_state = 0, .external_lex_state = 23}, - [759] = {.lex_state = 0, .external_lex_state = 25}, - [760] = {.lex_state = 0, .external_lex_state = 26}, - [761] = {.lex_state = 0, .external_lex_state = 27}, - [762] = {.lex_state = 0, .external_lex_state = 28}, - [763] = {.lex_state = 0, .external_lex_state = 29}, - [764] = {.lex_state = 5}, - [765] = {.lex_state = 0, .external_lex_state = 30}, - [766] = {.lex_state = 0, .external_lex_state = 31}, - [767] = {.lex_state = 0, .external_lex_state = 32}, - [768] = {.lex_state = 5}, - [769] = {.lex_state = 0, .external_lex_state = 24}, - [770] = {.lex_state = 0, .external_lex_state = 23}, - [771] = {.lex_state = 0, .external_lex_state = 33}, - [772] = {.lex_state = 0, .external_lex_state = 26}, - [773] = {.lex_state = 5}, - [774] = {.lex_state = 0, .external_lex_state = 33}, - [775] = {.lex_state = 0, .external_lex_state = 23}, - [776] = {.lex_state = 5}, - [777] = {.lex_state = 0, .external_lex_state = 25}, - [778] = {.lex_state = 5}, - [779] = {.lex_state = 0, .external_lex_state = 26}, - [780] = {.lex_state = 0, .external_lex_state = 27}, - [781] = {.lex_state = 0, .external_lex_state = 28}, + [751] = {.lex_state = 0, .external_lex_state = 22}, + [752] = {.lex_state = 0, .external_lex_state = 24}, + [753] = {.lex_state = 0, .external_lex_state = 26}, + [754] = {.lex_state = 0, .external_lex_state = 27}, + [755] = {.lex_state = 0, .external_lex_state = 28}, + [756] = {.lex_state = 0, .external_lex_state = 29}, + [757] = {.lex_state = 0, .external_lex_state = 30}, + [758] = {.lex_state = 5}, + [759] = {.lex_state = 0, .external_lex_state = 21}, + [760] = {.lex_state = 0, .external_lex_state = 21}, + [761] = {.lex_state = 0, .external_lex_state = 21}, + [762] = {.lex_state = 0, .external_lex_state = 23}, + [763] = {.lex_state = 5}, + [764] = {.lex_state = 0, .external_lex_state = 21}, + [765] = {.lex_state = 0, .external_lex_state = 24}, + [766] = {.lex_state = 0, .external_lex_state = 22}, + [767] = {.lex_state = 0, .external_lex_state = 24}, + [768] = {.lex_state = 0, .external_lex_state = 25}, + [769] = {.lex_state = 5}, + [770] = {.lex_state = 0, .external_lex_state = 26}, + [771] = {.lex_state = 0, .external_lex_state = 27}, + [772] = {.lex_state = 0, .external_lex_state = 28}, + [773] = {.lex_state = 0, .external_lex_state = 25}, + [774] = {.lex_state = 0, .external_lex_state = 24}, + [775] = {.lex_state = 0, .external_lex_state = 22}, + [776] = {.lex_state = 0, .external_lex_state = 29}, + [777] = {.lex_state = 0, .external_lex_state = 30}, + [778] = {.lex_state = 0, .external_lex_state = 23}, + [779] = {.lex_state = 0, .external_lex_state = 21}, + [780] = {.lex_state = 0, .external_lex_state = 21}, + [781] = {.lex_state = 0, .external_lex_state = 30}, [782] = {.lex_state = 0, .external_lex_state = 29}, - [783] = {.lex_state = 0, .external_lex_state = 30}, - [784] = {.lex_state = 0, .external_lex_state = 31}, - [785] = {.lex_state = 5}, - [786] = {.lex_state = 0, .external_lex_state = 32}, - [787] = {.lex_state = 5}, - [788] = {.lex_state = 0, .external_lex_state = 24}, - [789] = {.lex_state = 0, .external_lex_state = 23}, - [790] = {.lex_state = 0, .external_lex_state = 25}, - [791] = {.lex_state = 0, .external_lex_state = 26}, - [792] = {.lex_state = 0, .external_lex_state = 27}, - [793] = {.lex_state = 0, .external_lex_state = 28}, - [794] = {.lex_state = 0, .external_lex_state = 29}, - [795] = {.lex_state = 0, .external_lex_state = 24}, - [796] = {.lex_state = 0, .external_lex_state = 30}, - [797] = {.lex_state = 0, .external_lex_state = 31}, - [798] = {.lex_state = 0, .external_lex_state = 32}, - [799] = {.lex_state = 0, .external_lex_state = 23}, - [800] = {.lex_state = 0, .external_lex_state = 33}, - [801] = {.lex_state = 5}, - [802] = {.lex_state = 0, .external_lex_state = 24}, - [803] = {.lex_state = 0, .external_lex_state = 23}, - [804] = {.lex_state = 0, .external_lex_state = 33}, - [805] = {.lex_state = 0, .external_lex_state = 33}, - [806] = {.lex_state = 5}, + [783] = {.lex_state = 0, .external_lex_state = 28}, + [784] = {.lex_state = 0, .external_lex_state = 27}, + [785] = {.lex_state = 0, .external_lex_state = 22}, + [786] = {.lex_state = 0, .external_lex_state = 24}, + [787] = {.lex_state = 0, .external_lex_state = 26}, + [788] = {.lex_state = 0, .external_lex_state = 27}, + [789] = {.lex_state = 0, .external_lex_state = 28}, + [790] = {.lex_state = 0, .external_lex_state = 29}, + [791] = {.lex_state = 0, .external_lex_state = 30}, + [792] = {.lex_state = 0, .external_lex_state = 26}, + [793] = {.lex_state = 0, .external_lex_state = 21}, + [794] = {.lex_state = 0, .external_lex_state = 21}, + [795] = {.lex_state = 0, .external_lex_state = 21}, + [796] = {.lex_state = 0, .external_lex_state = 23}, + [797] = {.lex_state = 0, .external_lex_state = 24}, + [798] = {.lex_state = 0, .external_lex_state = 22}, + [799] = {.lex_state = 0, .external_lex_state = 22}, + [800] = {.lex_state = 0, .external_lex_state = 22}, + [801] = {.lex_state = 0, .external_lex_state = 24}, + [802] = {.lex_state = 0, .external_lex_state = 25}, + [803] = {.lex_state = 0, .external_lex_state = 21}, + [804] = {.lex_state = 0, .external_lex_state = 21}, + [805] = {.lex_state = 0, .external_lex_state = 21}, + [806] = {.lex_state = 0, .external_lex_state = 25}, [807] = {.lex_state = 0, .external_lex_state = 24}, - [808] = {.lex_state = 5}, - [809] = {.lex_state = 5}, - [810] = {.lex_state = 0, .external_lex_state = 24}, - [811] = {.lex_state = 0, .external_lex_state = 23}, - [812] = {.lex_state = 0, .external_lex_state = 25}, - [813] = {.lex_state = 0, .external_lex_state = 26}, - [814] = {.lex_state = 0, .external_lex_state = 27}, - [815] = {.lex_state = 5}, - [816] = {.lex_state = 0, .external_lex_state = 29}, - [817] = {.lex_state = 0, .external_lex_state = 30}, - [818] = {.lex_state = 0, .external_lex_state = 23}, - [819] = {.lex_state = 0, .external_lex_state = 24}, - [820] = {.lex_state = 0, .external_lex_state = 31}, - [821] = {.lex_state = 0, .external_lex_state = 24}, - [822] = {.lex_state = 0, .external_lex_state = 23}, - [823] = {.lex_state = 0, .external_lex_state = 25}, - [824] = {.lex_state = 0, .external_lex_state = 26}, - [825] = {.lex_state = 0, .external_lex_state = 27}, - [826] = {.lex_state = 0, .external_lex_state = 28}, - [827] = {.lex_state = 0, .external_lex_state = 29}, - [828] = {.lex_state = 0, .external_lex_state = 32}, - [829] = {.lex_state = 0, .external_lex_state = 30}, - [830] = {.lex_state = 0, .external_lex_state = 31}, - [831] = {.lex_state = 0, .external_lex_state = 32}, - [832] = {.lex_state = 0, .external_lex_state = 24}, - [833] = {.lex_state = 0, .external_lex_state = 32}, - [834] = {.lex_state = 0, .external_lex_state = 23}, + [808] = {.lex_state = 0, .external_lex_state = 22}, + [809] = {.lex_state = 0, .external_lex_state = 23}, + [810] = {.lex_state = 0, .external_lex_state = 23}, + [811] = {.lex_state = 0, .external_lex_state = 21}, + [812] = {.lex_state = 0, .external_lex_state = 21}, + [813] = {.lex_state = 0, .external_lex_state = 21}, + [814] = {.lex_state = 0, .external_lex_state = 30}, + [815] = {.lex_state = 0, .external_lex_state = 29}, + [816] = {.lex_state = 0, .external_lex_state = 28}, + [817] = {.lex_state = 0, .external_lex_state = 27}, + [818] = {.lex_state = 0, .external_lex_state = 26}, + [819] = {.lex_state = 0, .external_lex_state = 22}, + [820] = {.lex_state = 0, .external_lex_state = 24}, + [821] = {.lex_state = 0, .external_lex_state = 26}, + [822] = {.lex_state = 0, .external_lex_state = 27}, + [823] = {.lex_state = 0, .external_lex_state = 28}, + [824] = {.lex_state = 0, .external_lex_state = 29}, + [825] = {.lex_state = 0, .external_lex_state = 30}, + [826] = {.lex_state = 0, .external_lex_state = 24}, + [827] = {.lex_state = 0, .external_lex_state = 21}, + [828] = {.lex_state = 0, .external_lex_state = 21}, + [829] = {.lex_state = 0, .external_lex_state = 21}, + [830] = {.lex_state = 0, .external_lex_state = 23}, + [831] = {.lex_state = 0, .external_lex_state = 22}, + [832] = {.lex_state = 0, .external_lex_state = 22}, + [833] = {.lex_state = 0, .external_lex_state = 24}, + [834] = {.lex_state = 0, .external_lex_state = 22}, [835] = {.lex_state = 0, .external_lex_state = 24}, - [836] = {.lex_state = 0, .external_lex_state = 23}, - [837] = {.lex_state = 0, .external_lex_state = 33}, + [836] = {.lex_state = 0, .external_lex_state = 25}, + [837] = {.lex_state = 0, .external_lex_state = 25}, [838] = {.lex_state = 0, .external_lex_state = 31}, [839] = {.lex_state = 5}, - [840] = {.lex_state = 0, .external_lex_state = 33}, + [840] = {.lex_state = 0, .external_lex_state = 32}, [841] = {.lex_state = 0, .external_lex_state = 33}, - [842] = {.lex_state = 0, .external_lex_state = 23}, - [843] = {.lex_state = 0, .external_lex_state = 24}, - [844] = {.lex_state = 0, .external_lex_state = 32}, - [845] = {.lex_state = 0, .external_lex_state = 31}, - [846] = {.lex_state = 0, .external_lex_state = 30}, - [847] = {.lex_state = 0, .external_lex_state = 29}, - [848] = {.lex_state = 0, .external_lex_state = 28}, - [849] = {.lex_state = 0, .external_lex_state = 27}, - [850] = {.lex_state = 0, .external_lex_state = 26}, - [851] = {.lex_state = 0, .external_lex_state = 30}, - [852] = {.lex_state = 0, .external_lex_state = 25}, - [853] = {.lex_state = 0, .external_lex_state = 24}, - [854] = {.lex_state = 0, .external_lex_state = 24}, - [855] = {.lex_state = 0, .external_lex_state = 23}, - [856] = {.lex_state = 0, .external_lex_state = 25}, - [857] = {.lex_state = 0, .external_lex_state = 26}, - [858] = {.lex_state = 0, .external_lex_state = 27}, - [859] = {.lex_state = 0, .external_lex_state = 28}, - [860] = {.lex_state = 0, .external_lex_state = 29}, - [861] = {.lex_state = 0, .external_lex_state = 33}, - [862] = {.lex_state = 0, .external_lex_state = 30}, - [863] = {.lex_state = 0, .external_lex_state = 31}, - [864] = {.lex_state = 0, .external_lex_state = 32}, - [865] = {.lex_state = 0, .external_lex_state = 29}, - [866] = {.lex_state = 0, .external_lex_state = 28}, - [867] = {.lex_state = 0, .external_lex_state = 23}, - [868] = {.lex_state = 0, .external_lex_state = 24}, - [869] = {.lex_state = 0, .external_lex_state = 23}, - [870] = {.lex_state = 0, .external_lex_state = 33}, - [871] = {.lex_state = 0, .external_lex_state = 27}, - [872] = {.lex_state = 0, .external_lex_state = 24}, - [873] = {.lex_state = 0, .external_lex_state = 32}, - [874] = {.lex_state = 0, .external_lex_state = 31}, - [875] = {.lex_state = 0, .external_lex_state = 30}, - [876] = {.lex_state = 0, .external_lex_state = 29}, - [877] = {.lex_state = 0, .external_lex_state = 28}, - [878] = {.lex_state = 0, .external_lex_state = 27}, - [879] = {.lex_state = 0, .external_lex_state = 26}, - [880] = {.lex_state = 0, .external_lex_state = 25}, - [881] = {.lex_state = 0, .external_lex_state = 23}, - [882] = {.lex_state = 0, .external_lex_state = 24}, - [883] = {.lex_state = 0, .external_lex_state = 33}, - [884] = {.lex_state = 0, .external_lex_state = 28}, - [885] = {.lex_state = 0, .external_lex_state = 25}, - [886] = {.lex_state = 0, .external_lex_state = 23}, - [887] = {.lex_state = 0, .external_lex_state = 24}, - [888] = {.lex_state = 0, .external_lex_state = 23}, - [889] = {.lex_state = 0, .external_lex_state = 25}, - [890] = {.lex_state = 0, .external_lex_state = 26}, - [891] = {.lex_state = 0, .external_lex_state = 27}, - [892] = {.lex_state = 0, .external_lex_state = 28}, - [893] = {.lex_state = 0, .external_lex_state = 29}, - [894] = {.lex_state = 0, .external_lex_state = 24}, - [895] = {.lex_state = 0, .external_lex_state = 30}, - [896] = {.lex_state = 0, .external_lex_state = 31}, - [897] = {.lex_state = 0, .external_lex_state = 32}, - [898] = {.lex_state = 0, .external_lex_state = 23}, - [899] = {.lex_state = 0, .external_lex_state = 24}, - [900] = {.lex_state = 0, .external_lex_state = 34}, - [901] = {.lex_state = 0}, - [902] = {.lex_state = 5}, - [903] = {.lex_state = 5}, - [904] = {.lex_state = 5}, - [905] = {.lex_state = 0, .external_lex_state = 34}, - [906] = {.lex_state = 5}, - [907] = {.lex_state = 0, .external_lex_state = 35}, - [908] = {.lex_state = 0, .external_lex_state = 36}, - [909] = {.lex_state = 0, .external_lex_state = 37}, - [910] = {.lex_state = 0, .external_lex_state = 38}, - [911] = {.lex_state = 0, .external_lex_state = 39}, - [912] = {.lex_state = 0, .external_lex_state = 40}, - [913] = {.lex_state = 0, .external_lex_state = 41}, - [914] = {.lex_state = 0, .external_lex_state = 42}, - [915] = {.lex_state = 0}, - [916] = {.lex_state = 5}, + [842] = {.lex_state = 0, .external_lex_state = 34}, + [843] = {.lex_state = 0, .external_lex_state = 35}, + [844] = {.lex_state = 0, .external_lex_state = 36}, + [845] = {.lex_state = 0, .external_lex_state = 37}, + [846] = {.lex_state = 0, .external_lex_state = 38}, + [847] = {.lex_state = 0, .external_lex_state = 39}, + [848] = {.lex_state = 0}, + [849] = {.lex_state = 0, .external_lex_state = 31}, + [850] = {.lex_state = 0, .external_lex_state = 40}, + [851] = {.lex_state = 0, .external_lex_state = 31}, + [852] = {.lex_state = 5}, + [853] = {.lex_state = 5}, + [854] = {.lex_state = 0}, + [855] = {.lex_state = 5}, + [856] = {.lex_state = 0, .external_lex_state = 32}, + [857] = {.lex_state = 0, .external_lex_state = 40}, + [858] = {.lex_state = 0, .external_lex_state = 33}, + [859] = {.lex_state = 0}, + [860] = {.lex_state = 0}, + [861] = {.lex_state = 0, .external_lex_state = 39}, + [862] = {.lex_state = 0, .external_lex_state = 38}, + [863] = {.lex_state = 0, .external_lex_state = 37}, + [864] = {.lex_state = 0, .external_lex_state = 36}, + [865] = {.lex_state = 0, .external_lex_state = 31}, + [866] = {.lex_state = 0, .external_lex_state = 35}, + [867] = {.lex_state = 0, .external_lex_state = 31}, + [868] = {.lex_state = 0, .external_lex_state = 34}, + [869] = {.lex_state = 0, .external_lex_state = 33}, + [870] = {.lex_state = 0, .external_lex_state = 32}, + [871] = {.lex_state = 5}, + [872] = {.lex_state = 0, .external_lex_state = 31}, + [873] = {.lex_state = 5}, + [874] = {.lex_state = 0, .external_lex_state = 32}, + [875] = {.lex_state = 0, .external_lex_state = 33}, + [876] = {.lex_state = 0, .external_lex_state = 34}, + [877] = {.lex_state = 0, .external_lex_state = 35}, + [878] = {.lex_state = 0, .external_lex_state = 36}, + [879] = {.lex_state = 0, .external_lex_state = 37}, + [880] = {.lex_state = 0, .external_lex_state = 38}, + [881] = {.lex_state = 0, .external_lex_state = 39}, + [882] = {.lex_state = 0}, + [883] = {.lex_state = 0, .external_lex_state = 31}, + [884] = {.lex_state = 0, .external_lex_state = 40}, + [885] = {.lex_state = 0, .external_lex_state = 34}, + [886] = {.lex_state = 5}, + [887] = {.lex_state = 0, .external_lex_state = 31}, + [888] = {.lex_state = 0, .external_lex_state = 36}, + [889] = {.lex_state = 0}, + [890] = {.lex_state = 5}, + [891] = {.lex_state = 0, .external_lex_state = 37}, + [892] = {.lex_state = 0, .external_lex_state = 40}, + [893] = {.lex_state = 0, .external_lex_state = 38}, + [894] = {.lex_state = 0}, + [895] = {.lex_state = 0}, + [896] = {.lex_state = 0}, + [897] = {.lex_state = 0, .external_lex_state = 39}, + [898] = {.lex_state = 0, .external_lex_state = 38}, + [899] = {.lex_state = 0, .external_lex_state = 37}, + [900] = {.lex_state = 0, .external_lex_state = 36}, + [901] = {.lex_state = 0, .external_lex_state = 31}, + [902] = {.lex_state = 0, .external_lex_state = 35}, + [903] = {.lex_state = 0, .external_lex_state = 34}, + [904] = {.lex_state = 0, .external_lex_state = 33}, + [905] = {.lex_state = 0, .external_lex_state = 32}, + [906] = {.lex_state = 0, .external_lex_state = 31}, + [907] = {.lex_state = 5}, + [908] = {.lex_state = 0, .external_lex_state = 32}, + [909] = {.lex_state = 0, .external_lex_state = 33}, + [910] = {.lex_state = 0, .external_lex_state = 34}, + [911] = {.lex_state = 0, .external_lex_state = 35}, + [912] = {.lex_state = 0, .external_lex_state = 36}, + [913] = {.lex_state = 0, .external_lex_state = 37}, + [914] = {.lex_state = 0, .external_lex_state = 38}, + [915] = {.lex_state = 0, .external_lex_state = 39}, + [916] = {.lex_state = 0}, [917] = {.lex_state = 5}, - [918] = {.lex_state = 0}, - [919] = {.lex_state = 5}, - [920] = {.lex_state = 0}, - [921] = {.lex_state = 0, .external_lex_state = 42}, - [922] = {.lex_state = 0, .external_lex_state = 41}, - [923] = {.lex_state = 0, .external_lex_state = 40}, - [924] = {.lex_state = 0, .external_lex_state = 39}, - [925] = {.lex_state = 0, .external_lex_state = 38}, - [926] = {.lex_state = 0, .external_lex_state = 37}, - [927] = {.lex_state = 0}, - [928] = {.lex_state = 0, .external_lex_state = 36}, - [929] = {.lex_state = 0, .external_lex_state = 35}, - [930] = {.lex_state = 5}, - [931] = {.lex_state = 0, .external_lex_state = 42}, - [932] = {.lex_state = 0, .external_lex_state = 41}, - [933] = {.lex_state = 0, .external_lex_state = 34}, - [934] = {.lex_state = 0, .external_lex_state = 34}, - [935] = {.lex_state = 0, .external_lex_state = 34}, - [936] = {.lex_state = 0}, - [937] = {.lex_state = 0, .external_lex_state = 40}, - [938] = {.lex_state = 0, .external_lex_state = 34}, - [939] = {.lex_state = 5}, - [940] = {.lex_state = 0, .external_lex_state = 35}, - [941] = {.lex_state = 0, .external_lex_state = 36}, - [942] = {.lex_state = 0, .external_lex_state = 37}, - [943] = {.lex_state = 0, .external_lex_state = 38}, - [944] = {.lex_state = 0, .external_lex_state = 39}, - [945] = {.lex_state = 0, .external_lex_state = 40}, - [946] = {.lex_state = 0, .external_lex_state = 41}, - [947] = {.lex_state = 0, .external_lex_state = 42}, - [948] = {.lex_state = 0}, + [918] = {.lex_state = 0, .external_lex_state = 40}, + [919] = {.lex_state = 0, .external_lex_state = 31}, + [920] = {.lex_state = 5}, + [921] = {.lex_state = 0, .external_lex_state = 41}, + [922] = {.lex_state = 0, .external_lex_state = 42}, + [923] = {.lex_state = 0, .external_lex_state = 41}, + [924] = {.lex_state = 0, .external_lex_state = 35}, + [925] = {.lex_state = 0, .external_lex_state = 31}, + [926] = {.lex_state = 0}, + [927] = {.lex_state = 5}, + [928] = {.lex_state = 0, .external_lex_state = 40}, + [929] = {.lex_state = 0}, + [930] = {.lex_state = 0, .external_lex_state = 39}, + [931] = {.lex_state = 0, .external_lex_state = 38}, + [932] = {.lex_state = 0, .external_lex_state = 40}, + [933] = {.lex_state = 0, .external_lex_state = 37}, + [934] = {.lex_state = 151}, + [935] = {.lex_state = 14}, + [936] = {.lex_state = 0, .external_lex_state = 39}, + [937] = {.lex_state = 15}, + [938] = {.lex_state = 0, .external_lex_state = 41}, + [939] = {.lex_state = 0, .external_lex_state = 42}, + [940] = {.lex_state = 0, .external_lex_state = 41}, + [941] = {.lex_state = 0}, + [942] = {.lex_state = 0, .external_lex_state = 36}, + [943] = {.lex_state = 0, .external_lex_state = 35}, + [944] = {.lex_state = 0, .external_lex_state = 34}, + [945] = {.lex_state = 0, .external_lex_state = 33}, + [946] = {.lex_state = 0, .external_lex_state = 32}, + [947] = {.lex_state = 5}, + [948] = {.lex_state = 0, .external_lex_state = 31}, [949] = {.lex_state = 5}, - [950] = {.lex_state = 0, .external_lex_state = 39}, - [951] = {.lex_state = 0, .external_lex_state = 38}, - [952] = {.lex_state = 5}, - [953] = {.lex_state = 5}, - [954] = {.lex_state = 0, .external_lex_state = 37}, - [955] = {.lex_state = 0}, - [956] = {.lex_state = 5}, - [957] = {.lex_state = 0}, - [958] = {.lex_state = 0, .external_lex_state = 42}, - [959] = {.lex_state = 0, .external_lex_state = 41}, - [960] = {.lex_state = 0}, - [961] = {.lex_state = 0, .external_lex_state = 40}, - [962] = {.lex_state = 0, .external_lex_state = 39}, - [963] = {.lex_state = 0, .external_lex_state = 38}, - [964] = {.lex_state = 0, .external_lex_state = 36}, - [965] = {.lex_state = 0, .external_lex_state = 35}, - [966] = {.lex_state = 0, .external_lex_state = 34}, - [967] = {.lex_state = 0, .external_lex_state = 37}, - [968] = {.lex_state = 0, .external_lex_state = 36}, - [969] = {.lex_state = 0, .external_lex_state = 35}, - [970] = {.lex_state = 5}, - [971] = {.lex_state = 0, .external_lex_state = 34}, - [972] = {.lex_state = 5}, - [973] = {.lex_state = 0, .external_lex_state = 35}, - [974] = {.lex_state = 0, .external_lex_state = 36}, - [975] = {.lex_state = 0, .external_lex_state = 37}, - [976] = {.lex_state = 0, .external_lex_state = 38}, - [977] = {.lex_state = 0, .external_lex_state = 39}, - [978] = {.lex_state = 0, .external_lex_state = 40}, - [979] = {.lex_state = 0, .external_lex_state = 41}, - [980] = {.lex_state = 0, .external_lex_state = 42}, - [981] = {.lex_state = 0}, + [950] = {.lex_state = 5}, + [951] = {.lex_state = 14}, + [952] = {.lex_state = 0, .external_lex_state = 39}, + [953] = {.lex_state = 15}, + [954] = {.lex_state = 0, .external_lex_state = 41}, + [955] = {.lex_state = 0, .external_lex_state = 42}, + [956] = {.lex_state = 0, .external_lex_state = 41}, + [957] = {.lex_state = 0, .external_lex_state = 40}, + [958] = {.lex_state = 0}, + [959] = {.lex_state = 0, .external_lex_state = 39}, + [960] = {.lex_state = 0, .external_lex_state = 31}, + [961] = {.lex_state = 0, .external_lex_state = 38}, + [962] = {.lex_state = 0, .external_lex_state = 37}, + [963] = {.lex_state = 0, .external_lex_state = 36}, + [964] = {.lex_state = 0, .external_lex_state = 35}, + [965] = {.lex_state = 0, .external_lex_state = 34}, + [966] = {.lex_state = 0}, + [967] = {.lex_state = 14}, + [968] = {.lex_state = 0, .external_lex_state = 39}, + [969] = {.lex_state = 15}, + [970] = {.lex_state = 0, .external_lex_state = 41}, + [971] = {.lex_state = 0, .external_lex_state = 42}, + [972] = {.lex_state = 0, .external_lex_state = 41}, + [973] = {.lex_state = 0, .external_lex_state = 33}, + [974] = {.lex_state = 0, .external_lex_state = 32}, + [975] = {.lex_state = 5}, + [976] = {.lex_state = 0, .external_lex_state = 31}, + [977] = {.lex_state = 0, .external_lex_state = 31}, + [978] = {.lex_state = 0}, + [979] = {.lex_state = 5}, + [980] = {.lex_state = 16}, + [981] = {.lex_state = 0, .external_lex_state = 40}, [982] = {.lex_state = 5}, - [983] = {.lex_state = 0, .external_lex_state = 34}, - [984] = {.lex_state = 5}, - [985] = {.lex_state = 5}, - [986] = {.lex_state = 0, .external_lex_state = 43}, - [987] = {.lex_state = 0, .external_lex_state = 44}, - [988] = {.lex_state = 0, .external_lex_state = 43}, - [989] = {.lex_state = 0, .external_lex_state = 34}, - [990] = {.lex_state = 0, .external_lex_state = 34}, - [991] = {.lex_state = 0, .external_lex_state = 34}, - [992] = {.lex_state = 0, .external_lex_state = 34}, - [993] = {.lex_state = 0}, - [994] = {.lex_state = 5}, + [983] = {.lex_state = 14}, + [984] = {.lex_state = 0, .external_lex_state = 39}, + [985] = {.lex_state = 15}, + [986] = {.lex_state = 0, .external_lex_state = 41}, + [987] = {.lex_state = 0, .external_lex_state = 42}, + [988] = {.lex_state = 0, .external_lex_state = 41}, + [989] = {.lex_state = 0}, + [990] = {.lex_state = 5}, + [991] = {.lex_state = 0, .external_lex_state = 39}, + [992] = {.lex_state = 5}, + [993] = {.lex_state = 5}, + [994] = {.lex_state = 0, .external_lex_state = 40}, [995] = {.lex_state = 5}, - [996] = {.lex_state = 0}, + [996] = {.lex_state = 0, .external_lex_state = 38}, [997] = {.lex_state = 0, .external_lex_state = 37}, - [998] = {.lex_state = 0}, + [998] = {.lex_state = 5}, [999] = {.lex_state = 14}, - [1000] = {.lex_state = 150}, - [1001] = {.lex_state = 0, .external_lex_state = 45}, - [1002] = {.lex_state = 15}, - [1003] = {.lex_state = 0, .external_lex_state = 43}, - [1004] = {.lex_state = 0, .external_lex_state = 44}, - [1005] = {.lex_state = 0, .external_lex_state = 43}, - [1006] = {.lex_state = 0, .external_lex_state = 42}, - [1007] = {.lex_state = 0, .external_lex_state = 38}, - [1008] = {.lex_state = 0, .external_lex_state = 41}, - [1009] = {.lex_state = 0, .external_lex_state = 40}, - [1010] = {.lex_state = 0, .external_lex_state = 39}, - [1011] = {.lex_state = 0, .external_lex_state = 38}, - [1012] = {.lex_state = 0, .external_lex_state = 37}, - [1013] = {.lex_state = 5}, - [1014] = {.lex_state = 0, .external_lex_state = 36}, - [1015] = {.lex_state = 5}, - [1016] = {.lex_state = 14}, - [1017] = {.lex_state = 0, .external_lex_state = 45}, - [1018] = {.lex_state = 15}, - [1019] = {.lex_state = 0, .external_lex_state = 43}, - [1020] = {.lex_state = 0, .external_lex_state = 44}, - [1021] = {.lex_state = 0, .external_lex_state = 43}, - [1022] = {.lex_state = 0, .external_lex_state = 35}, - [1023] = {.lex_state = 0}, - [1024] = {.lex_state = 0, .external_lex_state = 42}, - [1025] = {.lex_state = 0, .external_lex_state = 41}, - [1026] = {.lex_state = 0, .external_lex_state = 40}, - [1027] = {.lex_state = 0, .external_lex_state = 39}, + [1000] = {.lex_state = 0, .external_lex_state = 39}, + [1001] = {.lex_state = 15}, + [1002] = {.lex_state = 0, .external_lex_state = 41}, + [1003] = {.lex_state = 0, .external_lex_state = 42}, + [1004] = {.lex_state = 0, .external_lex_state = 41}, + [1005] = {.lex_state = 0, .external_lex_state = 36}, + [1006] = {.lex_state = 15}, + [1007] = {.lex_state = 0, .external_lex_state = 39}, + [1008] = {.lex_state = 0, .external_lex_state = 39}, + [1009] = {.lex_state = 14}, + [1010] = {.lex_state = 0}, + [1011] = {.lex_state = 0, .external_lex_state = 39}, + [1012] = {.lex_state = 0, .external_lex_state = 39}, + [1013] = {.lex_state = 0, .external_lex_state = 35}, + [1014] = {.lex_state = 0, .external_lex_state = 38}, + [1015] = {.lex_state = 14}, + [1016] = {.lex_state = 0, .external_lex_state = 39}, + [1017] = {.lex_state = 15}, + [1018] = {.lex_state = 0, .external_lex_state = 41}, + [1019] = {.lex_state = 0, .external_lex_state = 42}, + [1020] = {.lex_state = 0, .external_lex_state = 41}, + [1021] = {.lex_state = 0, .external_lex_state = 34}, + [1022] = {.lex_state = 0, .external_lex_state = 37}, + [1023] = {.lex_state = 0, .external_lex_state = 36}, + [1024] = {.lex_state = 0, .external_lex_state = 35}, + [1025] = {.lex_state = 0, .external_lex_state = 34}, + [1026] = {.lex_state = 0, .external_lex_state = 33}, + [1027] = {.lex_state = 0, .external_lex_state = 32}, [1028] = {.lex_state = 5}, - [1029] = {.lex_state = 0, .external_lex_state = 37}, - [1030] = {.lex_state = 0, .external_lex_state = 34}, - [1031] = {.lex_state = 0, .external_lex_state = 36}, - [1032] = {.lex_state = 14}, - [1033] = {.lex_state = 0, .external_lex_state = 45}, - [1034] = {.lex_state = 15}, - [1035] = {.lex_state = 0, .external_lex_state = 43}, - [1036] = {.lex_state = 0, .external_lex_state = 44}, - [1037] = {.lex_state = 0, .external_lex_state = 43}, - [1038] = {.lex_state = 0, .external_lex_state = 34}, - [1039] = {.lex_state = 0, .external_lex_state = 35}, + [1029] = {.lex_state = 0, .external_lex_state = 33}, + [1030] = {.lex_state = 151}, + [1031] = {.lex_state = 14}, + [1032] = {.lex_state = 0, .external_lex_state = 39}, + [1033] = {.lex_state = 15}, + [1034] = {.lex_state = 0, .external_lex_state = 41}, + [1035] = {.lex_state = 0, .external_lex_state = 42}, + [1036] = {.lex_state = 0, .external_lex_state = 41}, + [1037] = {.lex_state = 0, .external_lex_state = 32}, + [1038] = {.lex_state = 0, .external_lex_state = 31}, + [1039] = {.lex_state = 0, .external_lex_state = 43}, [1040] = {.lex_state = 5}, - [1041] = {.lex_state = 0, .external_lex_state = 34}, - [1042] = {.lex_state = 0, .external_lex_state = 34}, - [1043] = {.lex_state = 5}, - [1044] = {.lex_state = 0}, - [1045] = {.lex_state = 0, .external_lex_state = 34}, - [1046] = {.lex_state = 5}, - [1047] = {.lex_state = 0, .external_lex_state = 35}, - [1048] = {.lex_state = 14}, - [1049] = {.lex_state = 0, .external_lex_state = 45}, - [1050] = {.lex_state = 15}, - [1051] = {.lex_state = 0, .external_lex_state = 43}, - [1052] = {.lex_state = 0, .external_lex_state = 44}, - [1053] = {.lex_state = 0, .external_lex_state = 43}, - [1054] = {.lex_state = 0, .external_lex_state = 36}, - [1055] = {.lex_state = 5}, - [1056] = {.lex_state = 0}, - [1057] = {.lex_state = 0}, - [1058] = {.lex_state = 0, .external_lex_state = 42}, - [1059] = {.lex_state = 0, .external_lex_state = 41}, - [1060] = {.lex_state = 0, .external_lex_state = 40}, - [1061] = {.lex_state = 0, .external_lex_state = 39}, - [1062] = {.lex_state = 0, .external_lex_state = 38}, - [1063] = {.lex_state = 0, .external_lex_state = 37}, - [1064] = {.lex_state = 14}, - [1065] = {.lex_state = 0, .external_lex_state = 45}, - [1066] = {.lex_state = 15}, - [1067] = {.lex_state = 0, .external_lex_state = 43}, - [1068] = {.lex_state = 0, .external_lex_state = 44}, - [1069] = {.lex_state = 0, .external_lex_state = 43}, - [1070] = {.lex_state = 0, .external_lex_state = 36}, - [1071] = {.lex_state = 0, .external_lex_state = 35}, - [1072] = {.lex_state = 16}, - [1073] = {.lex_state = 5}, - [1074] = {.lex_state = 5}, - [1075] = {.lex_state = 5}, - [1076] = {.lex_state = 5}, - [1077] = {.lex_state = 5}, - [1078] = {.lex_state = 0, .external_lex_state = 34}, - [1079] = {.lex_state = 5}, - [1080] = {.lex_state = 14}, - [1081] = {.lex_state = 0, .external_lex_state = 45}, - [1082] = {.lex_state = 15}, - [1083] = {.lex_state = 0, .external_lex_state = 43}, - [1084] = {.lex_state = 0, .external_lex_state = 44}, - [1085] = {.lex_state = 0, .external_lex_state = 43}, - [1086] = {.lex_state = 0, .external_lex_state = 34}, - [1087] = {.lex_state = 0}, - [1088] = {.lex_state = 5}, - [1089] = {.lex_state = 15}, - [1090] = {.lex_state = 0, .external_lex_state = 45}, - [1091] = {.lex_state = 0, .external_lex_state = 46}, - [1092] = {.lex_state = 5}, - [1093] = {.lex_state = 0}, - [1094] = {.lex_state = 5}, - [1095] = {.lex_state = 0, .external_lex_state = 42}, - [1096] = {.lex_state = 14}, - [1097] = {.lex_state = 0, .external_lex_state = 45}, - [1098] = {.lex_state = 15}, - [1099] = {.lex_state = 0, .external_lex_state = 43}, - [1100] = {.lex_state = 0, .external_lex_state = 44}, - [1101] = {.lex_state = 0, .external_lex_state = 43}, - [1102] = {.lex_state = 5}, - [1103] = {.lex_state = 0, .external_lex_state = 42}, - [1104] = {.lex_state = 0, .external_lex_state = 41}, - [1105] = {.lex_state = 0, .external_lex_state = 40}, - [1106] = {.lex_state = 0, .external_lex_state = 39}, - [1107] = {.lex_state = 0, .external_lex_state = 38}, - [1108] = {.lex_state = 0, .external_lex_state = 37}, - [1109] = {.lex_state = 0, .external_lex_state = 36}, - [1110] = {.lex_state = 0}, - [1111] = {.lex_state = 0, .external_lex_state = 35}, - [1112] = {.lex_state = 14}, - [1113] = {.lex_state = 0, .external_lex_state = 45}, - [1114] = {.lex_state = 15}, - [1115] = {.lex_state = 0, .external_lex_state = 43}, - [1116] = {.lex_state = 0, .external_lex_state = 44}, - [1117] = {.lex_state = 0, .external_lex_state = 43}, - [1118] = {.lex_state = 0, .external_lex_state = 42}, - [1119] = {.lex_state = 5}, - [1120] = {.lex_state = 150}, - [1121] = {.lex_state = 0, .external_lex_state = 34}, - [1122] = {.lex_state = 14}, - [1123] = {.lex_state = 0, .external_lex_state = 41}, - [1124] = {.lex_state = 0, .external_lex_state = 40}, - [1125] = {.lex_state = 0, .external_lex_state = 43}, - [1126] = {.lex_state = 0, .external_lex_state = 39}, - [1127] = {.lex_state = 0, .external_lex_state = 44}, - [1128] = {.lex_state = 14}, - [1129] = {.lex_state = 0, .external_lex_state = 45}, - [1130] = {.lex_state = 15}, - [1131] = {.lex_state = 0, .external_lex_state = 43}, - [1132] = {.lex_state = 0, .external_lex_state = 44}, - [1133] = {.lex_state = 0, .external_lex_state = 43}, - [1134] = {.lex_state = 0, .external_lex_state = 38}, - [1135] = {.lex_state = 0, .external_lex_state = 43}, - [1136] = {.lex_state = 0, .external_lex_state = 37}, - [1137] = {.lex_state = 0, .external_lex_state = 36}, - [1138] = {.lex_state = 0, .external_lex_state = 34}, - [1139] = {.lex_state = 0, .external_lex_state = 47}, - [1140] = {.lex_state = 0, .external_lex_state = 48}, - [1141] = {.lex_state = 0, .external_lex_state = 49}, - [1142] = {.lex_state = 0, .external_lex_state = 35}, + [1041] = {.lex_state = 0, .external_lex_state = 31}, + [1042] = {.lex_state = 0, .external_lex_state = 41}, + [1043] = {.lex_state = 0, .external_lex_state = 42}, + [1044] = {.lex_state = 0, .external_lex_state = 31}, + [1045] = {.lex_state = 0}, + [1046] = {.lex_state = 0}, + [1047] = {.lex_state = 14}, + [1048] = {.lex_state = 0, .external_lex_state = 39}, + [1049] = {.lex_state = 15}, + [1050] = {.lex_state = 0, .external_lex_state = 41}, + [1051] = {.lex_state = 0, .external_lex_state = 42}, + [1052] = {.lex_state = 0, .external_lex_state = 41}, + [1053] = {.lex_state = 5}, + [1054] = {.lex_state = 0, .external_lex_state = 41}, + [1055] = {.lex_state = 0, .external_lex_state = 31}, + [1056] = {.lex_state = 0, .external_lex_state = 44}, + [1057] = {.lex_state = 0, .external_lex_state = 44}, + [1058] = {.lex_state = 0, .external_lex_state = 44}, + [1059] = {.lex_state = 0, .external_lex_state = 45}, + [1060] = {.lex_state = 0, .external_lex_state = 46}, + [1061] = {.lex_state = 0, .external_lex_state = 40}, + [1062] = {.lex_state = 0, .external_lex_state = 47}, + [1063] = {.lex_state = 14}, + [1064] = {.lex_state = 0, .external_lex_state = 39}, + [1065] = {.lex_state = 15}, + [1066] = {.lex_state = 0, .external_lex_state = 41}, + [1067] = {.lex_state = 0, .external_lex_state = 42}, + [1068] = {.lex_state = 0, .external_lex_state = 41}, + [1069] = {.lex_state = 0, .external_lex_state = 39}, + [1070] = {.lex_state = 0, .external_lex_state = 48}, + [1071] = {.lex_state = 0, .external_lex_state = 49}, + [1072] = {.lex_state = 0, .external_lex_state = 50}, + [1073] = {.lex_state = 0, .external_lex_state = 51}, + [1074] = {.lex_state = 0}, + [1075] = {.lex_state = 0}, + [1076] = {.lex_state = 0}, + [1077] = {.lex_state = 0, .external_lex_state = 39}, + [1078] = {.lex_state = 0, .external_lex_state = 38}, + [1079] = {.lex_state = 14}, + [1080] = {.lex_state = 0, .external_lex_state = 39}, + [1081] = {.lex_state = 15}, + [1082] = {.lex_state = 0, .external_lex_state = 51}, + [1083] = {.lex_state = 0, .external_lex_state = 50}, + [1084] = {.lex_state = 0, .external_lex_state = 49}, + [1085] = {.lex_state = 0, .external_lex_state = 48}, + [1086] = {.lex_state = 0, .external_lex_state = 47}, + [1087] = {.lex_state = 0, .external_lex_state = 46}, + [1088] = {.lex_state = 0, .external_lex_state = 45}, + [1089] = {.lex_state = 0, .external_lex_state = 44}, + [1090] = {.lex_state = 0, .external_lex_state = 43}, + [1091] = {.lex_state = 0, .external_lex_state = 37}, + [1092] = {.lex_state = 0, .external_lex_state = 51}, + [1093] = {.lex_state = 0, .external_lex_state = 50}, + [1094] = {.lex_state = 0, .external_lex_state = 49}, + [1095] = {.lex_state = 0, .external_lex_state = 48}, + [1096] = {.lex_state = 0, .external_lex_state = 47}, + [1097] = {.lex_state = 0, .external_lex_state = 46}, + [1098] = {.lex_state = 0, .external_lex_state = 45}, + [1099] = {.lex_state = 0, .external_lex_state = 44}, + [1100] = {.lex_state = 0, .external_lex_state = 43}, + [1101] = {.lex_state = 0, .external_lex_state = 36}, + [1102] = {.lex_state = 0, .external_lex_state = 51}, + [1103] = {.lex_state = 0, .external_lex_state = 50}, + [1104] = {.lex_state = 0, .external_lex_state = 49}, + [1105] = {.lex_state = 0, .external_lex_state = 48}, + [1106] = {.lex_state = 0, .external_lex_state = 47}, + [1107] = {.lex_state = 0, .external_lex_state = 46}, + [1108] = {.lex_state = 0, .external_lex_state = 45}, + [1109] = {.lex_state = 0, .external_lex_state = 44}, + [1110] = {.lex_state = 0, .external_lex_state = 43}, + [1111] = {.lex_state = 0}, + [1112] = {.lex_state = 0, .external_lex_state = 51}, + [1113] = {.lex_state = 0, .external_lex_state = 50}, + [1114] = {.lex_state = 0, .external_lex_state = 49}, + [1115] = {.lex_state = 0, .external_lex_state = 48}, + [1116] = {.lex_state = 0, .external_lex_state = 47}, + [1117] = {.lex_state = 0, .external_lex_state = 46}, + [1118] = {.lex_state = 0, .external_lex_state = 45}, + [1119] = {.lex_state = 0, .external_lex_state = 44}, + [1120] = {.lex_state = 0, .external_lex_state = 43}, + [1121] = {.lex_state = 0, .external_lex_state = 35}, + [1122] = {.lex_state = 0, .external_lex_state = 51}, + [1123] = {.lex_state = 0, .external_lex_state = 50}, + [1124] = {.lex_state = 0, .external_lex_state = 49}, + [1125] = {.lex_state = 0, .external_lex_state = 48}, + [1126] = {.lex_state = 0, .external_lex_state = 47}, + [1127] = {.lex_state = 0, .external_lex_state = 46}, + [1128] = {.lex_state = 0, .external_lex_state = 45}, + [1129] = {.lex_state = 0, .external_lex_state = 44}, + [1130] = {.lex_state = 0, .external_lex_state = 43}, + [1131] = {.lex_state = 0, .external_lex_state = 34}, + [1132] = {.lex_state = 0, .external_lex_state = 51}, + [1133] = {.lex_state = 0, .external_lex_state = 50}, + [1134] = {.lex_state = 0, .external_lex_state = 49}, + [1135] = {.lex_state = 0, .external_lex_state = 48}, + [1136] = {.lex_state = 0, .external_lex_state = 47}, + [1137] = {.lex_state = 0, .external_lex_state = 46}, + [1138] = {.lex_state = 0, .external_lex_state = 45}, + [1139] = {.lex_state = 0, .external_lex_state = 44}, + [1140] = {.lex_state = 0, .external_lex_state = 43}, + [1141] = {.lex_state = 0, .external_lex_state = 33}, + [1142] = {.lex_state = 0, .external_lex_state = 51}, [1143] = {.lex_state = 0, .external_lex_state = 50}, - [1144] = {.lex_state = 14}, - [1145] = {.lex_state = 0, .external_lex_state = 45}, - [1146] = {.lex_state = 15}, - [1147] = {.lex_state = 0, .external_lex_state = 43}, - [1148] = {.lex_state = 0, .external_lex_state = 44}, - [1149] = {.lex_state = 0, .external_lex_state = 43}, - [1150] = {.lex_state = 5}, - [1151] = {.lex_state = 0, .external_lex_state = 51}, - [1152] = {.lex_state = 0, .external_lex_state = 52}, - [1153] = {.lex_state = 0, .external_lex_state = 53}, - [1154] = {.lex_state = 0, .external_lex_state = 54}, - [1155] = {.lex_state = 0, .external_lex_state = 55}, - [1156] = {.lex_state = 0, .external_lex_state = 56}, - [1157] = {.lex_state = 0}, - [1158] = {.lex_state = 0, .external_lex_state = 34}, - [1159] = {.lex_state = 0}, - [1160] = {.lex_state = 14}, - [1161] = {.lex_state = 0, .external_lex_state = 45}, - [1162] = {.lex_state = 15}, - [1163] = {.lex_state = 0, .external_lex_state = 56}, - [1164] = {.lex_state = 0, .external_lex_state = 55}, - [1165] = {.lex_state = 0, .external_lex_state = 54}, - [1166] = {.lex_state = 0, .external_lex_state = 53}, - [1167] = {.lex_state = 0, .external_lex_state = 52}, - [1168] = {.lex_state = 0, .external_lex_state = 51}, - [1169] = {.lex_state = 0, .external_lex_state = 50}, - [1170] = {.lex_state = 0, .external_lex_state = 49}, - [1171] = {.lex_state = 0, .external_lex_state = 34}, - [1172] = {.lex_state = 0, .external_lex_state = 56}, - [1173] = {.lex_state = 0, .external_lex_state = 55}, - [1174] = {.lex_state = 0, .external_lex_state = 54}, - [1175] = {.lex_state = 0, .external_lex_state = 53}, - [1176] = {.lex_state = 0, .external_lex_state = 52}, - [1177] = {.lex_state = 0, .external_lex_state = 51}, - [1178] = {.lex_state = 0, .external_lex_state = 50}, - [1179] = {.lex_state = 0, .external_lex_state = 49}, - [1180] = {.lex_state = 0}, - [1181] = {.lex_state = 0, .external_lex_state = 56}, - [1182] = {.lex_state = 0, .external_lex_state = 55}, - [1183] = {.lex_state = 0, .external_lex_state = 54}, - [1184] = {.lex_state = 0, .external_lex_state = 53}, - [1185] = {.lex_state = 0, .external_lex_state = 52}, - [1186] = {.lex_state = 0, .external_lex_state = 51}, - [1187] = {.lex_state = 0, .external_lex_state = 50}, - [1188] = {.lex_state = 0, .external_lex_state = 49}, - [1189] = {.lex_state = 5}, - [1190] = {.lex_state = 0, .external_lex_state = 56}, - [1191] = {.lex_state = 0, .external_lex_state = 55}, - [1192] = {.lex_state = 0, .external_lex_state = 54}, - [1193] = {.lex_state = 0, .external_lex_state = 53}, - [1194] = {.lex_state = 0, .external_lex_state = 52}, - [1195] = {.lex_state = 0, .external_lex_state = 51}, - [1196] = {.lex_state = 0, .external_lex_state = 50}, - [1197] = {.lex_state = 0, .external_lex_state = 49}, - [1198] = {.lex_state = 0}, - [1199] = {.lex_state = 0, .external_lex_state = 56}, - [1200] = {.lex_state = 0, .external_lex_state = 55}, - [1201] = {.lex_state = 0, .external_lex_state = 54}, - [1202] = {.lex_state = 0, .external_lex_state = 53}, - [1203] = {.lex_state = 0, .external_lex_state = 52}, - [1204] = {.lex_state = 0, .external_lex_state = 51}, - [1205] = {.lex_state = 0, .external_lex_state = 50}, - [1206] = {.lex_state = 0, .external_lex_state = 49}, - [1207] = {.lex_state = 5}, - [1208] = {.lex_state = 0, .external_lex_state = 56}, - [1209] = {.lex_state = 0, .external_lex_state = 55}, - [1210] = {.lex_state = 0, .external_lex_state = 54}, - [1211] = {.lex_state = 0, .external_lex_state = 53}, - [1212] = {.lex_state = 0, .external_lex_state = 52}, - [1213] = {.lex_state = 0, .external_lex_state = 51}, - [1214] = {.lex_state = 0, .external_lex_state = 50}, - [1215] = {.lex_state = 0, .external_lex_state = 49}, - [1216] = {.lex_state = 0}, - [1217] = {.lex_state = 0, .external_lex_state = 56}, - [1218] = {.lex_state = 0, .external_lex_state = 55}, - [1219] = {.lex_state = 0, .external_lex_state = 54}, - [1220] = {.lex_state = 0, .external_lex_state = 53}, - [1221] = {.lex_state = 0, .external_lex_state = 52}, - [1222] = {.lex_state = 0, .external_lex_state = 51}, - [1223] = {.lex_state = 0, .external_lex_state = 50}, - [1224] = {.lex_state = 0, .external_lex_state = 49}, - [1225] = {.lex_state = 0, .external_lex_state = 42}, - [1226] = {.lex_state = 0, .external_lex_state = 56}, - [1227] = {.lex_state = 0, .external_lex_state = 55}, - [1228] = {.lex_state = 0, .external_lex_state = 54}, - [1229] = {.lex_state = 0, .external_lex_state = 53}, - [1230] = {.lex_state = 0, .external_lex_state = 52}, - [1231] = {.lex_state = 0, .external_lex_state = 51}, - [1232] = {.lex_state = 0, .external_lex_state = 50}, - [1233] = {.lex_state = 0, .external_lex_state = 49}, - [1234] = {.lex_state = 0, .external_lex_state = 41}, - [1235] = {.lex_state = 0, .external_lex_state = 56}, - [1236] = {.lex_state = 0, .external_lex_state = 55}, - [1237] = {.lex_state = 0, .external_lex_state = 54}, - [1238] = {.lex_state = 0, .external_lex_state = 53}, - [1239] = {.lex_state = 0, .external_lex_state = 52}, - [1240] = {.lex_state = 0, .external_lex_state = 51}, - [1241] = {.lex_state = 0, .external_lex_state = 50}, - [1242] = {.lex_state = 0, .external_lex_state = 49}, - [1243] = {.lex_state = 0, .external_lex_state = 40}, - [1244] = {.lex_state = 0, .external_lex_state = 56}, - [1245] = {.lex_state = 0, .external_lex_state = 55}, - [1246] = {.lex_state = 0, .external_lex_state = 54}, - [1247] = {.lex_state = 0, .external_lex_state = 53}, - [1248] = {.lex_state = 0, .external_lex_state = 52}, - [1249] = {.lex_state = 0, .external_lex_state = 51}, - [1250] = {.lex_state = 0, .external_lex_state = 50}, - [1251] = {.lex_state = 0, .external_lex_state = 49}, - [1252] = {.lex_state = 0, .external_lex_state = 39}, - [1253] = {.lex_state = 0, .external_lex_state = 56}, - [1254] = {.lex_state = 0, .external_lex_state = 55}, - [1255] = {.lex_state = 0, .external_lex_state = 54}, - [1256] = {.lex_state = 0, .external_lex_state = 53}, - [1257] = {.lex_state = 0, .external_lex_state = 52}, - [1258] = {.lex_state = 0, .external_lex_state = 51}, - [1259] = {.lex_state = 0, .external_lex_state = 50}, - [1260] = {.lex_state = 0, .external_lex_state = 49}, - [1261] = {.lex_state = 0, .external_lex_state = 38}, - [1262] = {.lex_state = 0, .external_lex_state = 47}, - [1263] = {.lex_state = 0, .external_lex_state = 47}, - [1264] = {.lex_state = 0, .external_lex_state = 47}, - [1265] = {.lex_state = 0, .external_lex_state = 47}, - [1266] = {.lex_state = 0, .external_lex_state = 47}, - [1267] = {.lex_state = 0, .external_lex_state = 47}, - [1268] = {.lex_state = 0, .external_lex_state = 47}, - [1269] = {.lex_state = 0, .external_lex_state = 47}, - [1270] = {.lex_state = 0, .external_lex_state = 47}, - [1271] = {.lex_state = 0, .external_lex_state = 47}, - [1272] = {.lex_state = 0, .external_lex_state = 47}, + [1144] = {.lex_state = 0, .external_lex_state = 49}, + [1145] = {.lex_state = 0, .external_lex_state = 48}, + [1146] = {.lex_state = 0, .external_lex_state = 47}, + [1147] = {.lex_state = 0, .external_lex_state = 46}, + [1148] = {.lex_state = 0, .external_lex_state = 45}, + [1149] = {.lex_state = 0, .external_lex_state = 44}, + [1150] = {.lex_state = 0, .external_lex_state = 43}, + [1151] = {.lex_state = 0, .external_lex_state = 32}, + [1152] = {.lex_state = 0, .external_lex_state = 51}, + [1153] = {.lex_state = 0, .external_lex_state = 50}, + [1154] = {.lex_state = 0, .external_lex_state = 49}, + [1155] = {.lex_state = 0, .external_lex_state = 48}, + [1156] = {.lex_state = 0, .external_lex_state = 47}, + [1157] = {.lex_state = 0, .external_lex_state = 46}, + [1158] = {.lex_state = 0, .external_lex_state = 45}, + [1159] = {.lex_state = 0, .external_lex_state = 44}, + [1160] = {.lex_state = 0, .external_lex_state = 43}, + [1161] = {.lex_state = 5}, + [1162] = {.lex_state = 0, .external_lex_state = 51}, + [1163] = {.lex_state = 0, .external_lex_state = 50}, + [1164] = {.lex_state = 0, .external_lex_state = 49}, + [1165] = {.lex_state = 0, .external_lex_state = 48}, + [1166] = {.lex_state = 0, .external_lex_state = 47}, + [1167] = {.lex_state = 0, .external_lex_state = 46}, + [1168] = {.lex_state = 0, .external_lex_state = 45}, + [1169] = {.lex_state = 0, .external_lex_state = 44}, + [1170] = {.lex_state = 0, .external_lex_state = 43}, + [1171] = {.lex_state = 0, .external_lex_state = 31}, + [1172] = {.lex_state = 0, .external_lex_state = 51}, + [1173] = {.lex_state = 0, .external_lex_state = 50}, + [1174] = {.lex_state = 0, .external_lex_state = 49}, + [1175] = {.lex_state = 0, .external_lex_state = 48}, + [1176] = {.lex_state = 0, .external_lex_state = 47}, + [1177] = {.lex_state = 0, .external_lex_state = 46}, + [1178] = {.lex_state = 0, .external_lex_state = 45}, + [1179] = {.lex_state = 0, .external_lex_state = 44}, + [1180] = {.lex_state = 0, .external_lex_state = 43}, + [1181] = {.lex_state = 0, .external_lex_state = 31}, + [1182] = {.lex_state = 0, .external_lex_state = 44}, + [1183] = {.lex_state = 0, .external_lex_state = 44}, + [1184] = {.lex_state = 0, .external_lex_state = 44}, + [1185] = {.lex_state = 0, .external_lex_state = 44}, + [1186] = {.lex_state = 0, .external_lex_state = 44}, + [1187] = {.lex_state = 0, .external_lex_state = 44}, + [1188] = {.lex_state = 0, .external_lex_state = 44}, + [1189] = {.lex_state = 0, .external_lex_state = 44}, + [1190] = {.lex_state = 0, .external_lex_state = 44}, + [1191] = {.lex_state = 0, .external_lex_state = 44}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -5267,7 +5127,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1), [anon_sym_RBRACK] = ACTIONS(1), [anon_sym_LPAREN] = ACTIONS(1), - [anon_sym_RPAREN] = ACTIONS(1), [anon_sym_RBRACE] = ACTIONS(1), [anon_sym_PERCENT] = ACTIONS(1), [anon_sym_LBRACE_EQ2] = ACTIONS(1), @@ -5302,64 +5161,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_insert_end] = ACTIONS(1), [sym__delete_mark_begin] = ACTIONS(1), [sym_delete_end] = ACTIONS(1), - [sym__bracketed_text_mark_begin] = ACTIONS(1), - [sym__bracketed_text_end] = ACTIONS(1), - [sym__image_description_mark_begin] = ACTIONS(1), - [sym__image_description_end] = ACTIONS(1), - [sym__inline_attribute_mark_begin] = ACTIONS(1), - [sym__inline_attribute_end] = ACTIONS(1), - [sym__footnote_marker_mark_begin] = ACTIONS(1), - [sym_footnote_marker_end] = ACTIONS(1), + [sym__parens_span_mark_begin] = ACTIONS(1), + [sym__parens_span_end] = ACTIONS(1), + [sym__curly_bracket_span_mark_begin] = ACTIONS(1), + [sym__curly_bracket_span_end] = ACTIONS(1), + [sym__square_bracket_span_begin] = ACTIONS(1), + [sym__square_bracket_span_end] = ACTIONS(1), [sym__in_fallback] = ACTIONS(1), [sym__non_whitespace_check] = ACTIONS(1), [sym__error] = ACTIONS(1), }, [1] = { - [sym_inline] = STATE(1159), - [sym__inline] = STATE(1157), - [sym__element] = STATE(37), - [sym_emphasis] = STATE(150), - [sym_emphasis_begin] = STATE(1156), - [sym_strong] = STATE(150), - [sym_strong_begin] = STATE(1155), - [sym_superscript] = STATE(150), - [sym_superscript_begin] = STATE(1154), - [sym_subscript] = STATE(150), - [sym_subscript_begin] = STATE(1153), - [sym_highlighted] = STATE(150), - [sym_highlighted_begin] = STATE(1152), - [sym_insert] = STATE(150), - [sym_insert_begin] = STATE(1151), - [sym_delete] = STATE(150), - [sym_delete_begin] = STATE(1143), - [sym_hard_line_break] = STATE(150), - [sym__smart_punctuation] = STATE(150), - [sym_autolink] = STATE(150), - [sym_footnote_reference] = STATE(150), - [sym_footnote_marker_begin] = STATE(1141), - [sym__image] = STATE(150), - [sym_full_reference_image] = STATE(150), - [sym_collapsed_reference_image] = STATE(150), - [sym_inline_image] = STATE(150), - [sym_image_description] = STATE(690), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(150), - [sym_full_reference_link] = STATE(150), - [sym_collapsed_reference_link] = STATE(150), - [sym_inline_link] = STATE(150), - [sym_link_text] = STATE(688), - [sym_span] = STATE(37), - [sym__bracketed_text_begin] = STATE(1139), - [sym__comment_with_spaces] = STATE(150), - [sym_raw_inline] = STATE(150), - [sym_math] = STATE(150), - [sym_verbatim] = STATE(150), - [sym__todo_highlights] = STATE(150), - [sym_todo] = STATE(150), - [sym_note] = STATE(150), - [sym__symbol_fallback] = STATE(150), - [aux_sym__text] = STATE(139), - [aux_sym__inline_repeat1] = STATE(37), + [sym_inline] = STATE(1075), + [sym__inline] = STATE(1074), + [sym__element] = STATE(38), + [sym_emphasis] = STATE(135), + [sym_emphasis_begin] = STATE(1073), + [sym_strong] = STATE(135), + [sym_strong_begin] = STATE(1072), + [sym_superscript] = STATE(135), + [sym_superscript_begin] = STATE(1071), + [sym_subscript] = STATE(135), + [sym_subscript_begin] = STATE(1070), + [sym_highlighted] = STATE(135), + [sym_highlighted_begin] = STATE(1062), + [sym_insert] = STATE(135), + [sym_insert_begin] = STATE(1060), + [sym_delete] = STATE(135), + [sym_delete_begin] = STATE(1059), + [sym_hard_line_break] = STATE(135), + [sym__smart_punctuation] = STATE(135), + [sym_autolink] = STATE(135), + [sym_footnote_reference] = STATE(135), + [sym_footnote_marker_begin] = STATE(1058), + [sym__image] = STATE(135), + [sym_full_reference_image] = STATE(135), + [sym_collapsed_reference_image] = STATE(135), + [sym_inline_image] = STATE(135), + [sym_image_description] = STATE(620), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(135), + [sym_full_reference_link] = STATE(135), + [sym_collapsed_reference_link] = STATE(135), + [sym_inline_link] = STATE(135), + [sym_link_text] = STATE(644), + [sym_span] = STATE(38), + [sym__bracketed_text_begin] = STATE(1056), + [sym__comment_with_spaces] = STATE(135), + [sym_raw_inline] = STATE(135), + [sym_math] = STATE(135), + [sym_verbatim] = STATE(135), + [sym__todo_highlights] = STATE(135), + [sym_todo] = STATE(135), + [sym_note] = STATE(135), + [sym__symbol_fallback] = STATE(135), + [aux_sym__text] = STATE(121), + [aux_sym__inline_repeat1] = STATE(38), [anon_sym_LBRACE_] = ACTIONS(3), [anon_sym__] = ACTIONS(5), [anon_sym_LBRACE_STAR] = ACTIONS(7), @@ -5382,2829 +5239,2945 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_CARET] = ACTIONS(29), [anon_sym_BANG_LBRACK] = ACTIONS(31), [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_TODO] = ACTIONS(37), - [anon_sym_WIP] = ACTIONS(37), - [anon_sym_NOTE] = ACTIONS(39), - [anon_sym_INFO] = ACTIONS(39), - [anon_sym_XXX] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_DOLLAR] = ACTIONS(37), + [anon_sym_TODO] = ACTIONS(39), + [anon_sym_WIP] = ACTIONS(39), + [anon_sym_NOTE] = ACTIONS(41), + [anon_sym_INFO] = ACTIONS(41), + [anon_sym_XXX] = ACTIONS(41), [sym_fixme] = ACTIONS(23), - [sym__whitespace1] = ACTIONS(41), - [sym__newline] = ACTIONS(43), - [aux_sym__text_token1] = ACTIONS(45), - [sym__verbatim_begin] = ACTIONS(47), + [sym__whitespace1] = ACTIONS(43), + [sym__newline] = ACTIONS(45), + [aux_sym__text_token1] = ACTIONS(47), + [sym__verbatim_begin] = ACTIONS(49), }, [2] = { - [sym__inline] = STATE(1091), - [sym__element] = STATE(116), - [sym_emphasis] = STATE(143), - [sym_emphasis_begin] = STATE(1235), - [sym_strong] = STATE(143), - [sym_strong_begin] = STATE(1236), - [sym_superscript] = STATE(143), - [sym_superscript_begin] = STATE(1237), - [sym_subscript] = STATE(143), - [sym_subscript_begin] = STATE(1238), - [sym_highlighted] = STATE(143), - [sym_highlighted_begin] = STATE(1239), - [sym_insert] = STATE(143), - [sym_insert_begin] = STATE(1240), - [sym_delete] = STATE(143), - [sym_delete_begin] = STATE(1241), - [sym_hard_line_break] = STATE(143), - [sym__smart_punctuation] = STATE(143), - [sym_autolink] = STATE(143), - [sym_footnote_reference] = STATE(143), - [sym_footnote_marker_begin] = STATE(1242), - [sym__image] = STATE(143), - [sym_full_reference_image] = STATE(143), - [sym_collapsed_reference_image] = STATE(143), - [sym_inline_image] = STATE(143), - [sym_image_description] = STATE(689), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(143), - [sym_full_reference_link] = STATE(143), - [sym_collapsed_reference_link] = STATE(143), - [sym_inline_link] = STATE(143), - [sym_link_text] = STATE(702), - [sym_span] = STATE(116), - [sym__bracketed_text_begin] = STATE(1270), - [sym__comment_with_spaces] = STATE(143), - [sym_raw_inline] = STATE(143), - [sym_math] = STATE(143), - [sym_verbatim] = STATE(143), - [sym__todo_highlights] = STATE(143), - [sym_todo] = STATE(143), - [sym_note] = STATE(143), - [sym__symbol_fallback] = STATE(143), - [aux_sym__text] = STATE(135), - [aux_sym__inline_repeat1] = STATE(116), - [anon_sym_LBRACE_] = ACTIONS(49), - [anon_sym__] = ACTIONS(51), - [anon_sym_LBRACE_STAR] = ACTIONS(53), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_LBRACE_CARET] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(57), - [anon_sym_LBRACE_TILDE] = ACTIONS(59), - [anon_sym_TILDE] = ACTIONS(59), - [anon_sym_LBRACE_EQ] = ACTIONS(61), - [anon_sym_LBRACE_PLUS] = ACTIONS(63), - [anon_sym_LBRACE_DASH] = ACTIONS(65), - [anon_sym_BSLASH] = ACTIONS(67), - [sym_quotation_marks] = ACTIONS(69), - [sym_ellipsis] = ACTIONS(69), - [sym_em_dash] = ACTIONS(69), - [sym_en_dash] = ACTIONS(71), - [sym_backslash_escape] = ACTIONS(71), - [anon_sym_LT] = ACTIONS(73), - [sym_symbol] = ACTIONS(69), - [anon_sym_LBRACK_CARET] = ACTIONS(75), - [anon_sym_BANG_LBRACK] = ACTIONS(77), - [anon_sym_LBRACK] = ACTIONS(79), - [anon_sym_DOLLAR] = ACTIONS(81), - [anon_sym_TODO] = ACTIONS(83), - [anon_sym_WIP] = ACTIONS(83), - [anon_sym_NOTE] = ACTIONS(85), - [anon_sym_INFO] = ACTIONS(85), - [anon_sym_XXX] = ACTIONS(85), - [sym_fixme] = ACTIONS(69), - [sym__whitespace1] = ACTIONS(87), - [sym__newline] = ACTIONS(89), - [aux_sym__text_token1] = ACTIONS(91), - [sym__verbatim_begin] = ACTIONS(93), - [sym__image_description_end] = ACTIONS(95), + [sym__inline] = STATE(1008), + [sym__element] = STATE(107), + [sym_emphasis] = STATE(140), + [sym_emphasis_begin] = STATE(1162), + [sym_strong] = STATE(140), + [sym_strong_begin] = STATE(1163), + [sym_superscript] = STATE(140), + [sym_superscript_begin] = STATE(1164), + [sym_subscript] = STATE(140), + [sym_subscript_begin] = STATE(1165), + [sym_highlighted] = STATE(140), + [sym_highlighted_begin] = STATE(1166), + [sym_insert] = STATE(140), + [sym_insert_begin] = STATE(1167), + [sym_delete] = STATE(140), + [sym_delete_begin] = STATE(1168), + [sym_hard_line_break] = STATE(140), + [sym__smart_punctuation] = STATE(140), + [sym_autolink] = STATE(140), + [sym_footnote_reference] = STATE(140), + [sym_footnote_marker_begin] = STATE(1169), + [sym__image] = STATE(140), + [sym_full_reference_image] = STATE(140), + [sym_collapsed_reference_image] = STATE(140), + [sym_inline_image] = STATE(140), + [sym_image_description] = STATE(625), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(140), + [sym_full_reference_link] = STATE(140), + [sym_collapsed_reference_link] = STATE(140), + [sym_inline_link] = STATE(140), + [sym_link_text] = STATE(624), + [sym_span] = STATE(107), + [sym__bracketed_text_begin] = STATE(1190), + [sym__comment_with_spaces] = STATE(140), + [sym_raw_inline] = STATE(140), + [sym_math] = STATE(140), + [sym_verbatim] = STATE(140), + [sym__todo_highlights] = STATE(140), + [sym_todo] = STATE(140), + [sym_note] = STATE(140), + [sym__symbol_fallback] = STATE(140), + [aux_sym__text] = STATE(124), + [aux_sym__inline_repeat1] = STATE(107), + [anon_sym_LBRACE_] = ACTIONS(51), + [anon_sym__] = ACTIONS(53), + [anon_sym_LBRACE_STAR] = ACTIONS(55), + [anon_sym_STAR] = ACTIONS(57), + [anon_sym_LBRACE_CARET] = ACTIONS(59), + [anon_sym_CARET] = ACTIONS(59), + [anon_sym_LBRACE_TILDE] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(61), + [anon_sym_LBRACE_EQ] = ACTIONS(63), + [anon_sym_LBRACE_PLUS] = ACTIONS(65), + [anon_sym_LBRACE_DASH] = ACTIONS(67), + [anon_sym_BSLASH] = ACTIONS(69), + [sym_quotation_marks] = ACTIONS(71), + [sym_ellipsis] = ACTIONS(71), + [sym_em_dash] = ACTIONS(71), + [sym_en_dash] = ACTIONS(73), + [sym_backslash_escape] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(75), + [sym_symbol] = ACTIONS(71), + [anon_sym_LBRACK_CARET] = ACTIONS(77), + [anon_sym_BANG_LBRACK] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(85), + [anon_sym_TODO] = ACTIONS(87), + [anon_sym_WIP] = ACTIONS(87), + [anon_sym_NOTE] = ACTIONS(89), + [anon_sym_INFO] = ACTIONS(89), + [anon_sym_XXX] = ACTIONS(89), + [sym_fixme] = ACTIONS(71), + [sym__whitespace1] = ACTIONS(91), + [sym__newline] = ACTIONS(93), + [aux_sym__text_token1] = ACTIONS(95), + [sym__verbatim_begin] = ACTIONS(97), + [sym__square_bracket_span_end] = ACTIONS(99), }, [3] = { - [sym__inline] = STATE(1060), - [sym__element] = STATE(7), - [sym_emphasis] = STATE(153), - [sym_emphasis_begin] = STATE(1208), - [sym_strong] = STATE(153), - [sym_strong_begin] = STATE(1209), - [sym_superscript] = STATE(153), - [sym_superscript_begin] = STATE(1210), - [sym_subscript] = STATE(153), - [sym_subscript_begin] = STATE(1211), - [sym_highlighted] = STATE(153), - [sym_highlighted_begin] = STATE(1212), - [sym_insert] = STATE(153), - [sym_insert_begin] = STATE(1213), - [sym_delete] = STATE(153), - [sym_delete_begin] = STATE(1214), - [sym_hard_line_break] = STATE(153), - [sym__smart_punctuation] = STATE(153), - [sym_autolink] = STATE(153), - [sym_footnote_reference] = STATE(153), - [sym_footnote_marker_begin] = STATE(1215), - [sym__image] = STATE(153), - [sym_full_reference_image] = STATE(153), - [sym_collapsed_reference_image] = STATE(153), - [sym_inline_image] = STATE(153), - [sym_image_description] = STATE(707), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(153), - [sym_full_reference_link] = STATE(153), - [sym_collapsed_reference_link] = STATE(153), - [sym_inline_link] = STATE(153), - [sym_link_text] = STATE(705), - [sym_span] = STATE(7), - [sym__bracketed_text_begin] = STATE(1267), - [sym__comment_with_spaces] = STATE(153), - [sym_raw_inline] = STATE(153), - [sym_math] = STATE(153), - [sym_verbatim] = STATE(153), - [sym__todo_highlights] = STATE(153), - [sym_todo] = STATE(153), - [sym_note] = STATE(153), - [sym__symbol_fallback] = STATE(153), - [aux_sym__text] = STATE(134), - [aux_sym__inline_repeat1] = STATE(7), - [anon_sym_LBRACE_] = ACTIONS(97), - [anon_sym__] = ACTIONS(99), - [anon_sym_LBRACE_STAR] = ACTIONS(101), - [anon_sym_STAR] = ACTIONS(103), - [anon_sym_LBRACE_CARET] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [anon_sym_LBRACE_TILDE] = ACTIONS(107), - [anon_sym_TILDE] = ACTIONS(107), - [anon_sym_LBRACE_EQ] = ACTIONS(109), - [anon_sym_LBRACE_PLUS] = ACTIONS(111), - [anon_sym_LBRACE_DASH] = ACTIONS(113), - [anon_sym_BSLASH] = ACTIONS(115), - [sym_quotation_marks] = ACTIONS(117), - [sym_ellipsis] = ACTIONS(117), - [sym_em_dash] = ACTIONS(117), - [sym_en_dash] = ACTIONS(119), - [sym_backslash_escape] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [sym_symbol] = ACTIONS(117), - [anon_sym_LBRACK_CARET] = ACTIONS(123), - [anon_sym_BANG_LBRACK] = ACTIONS(125), - [anon_sym_LBRACK] = ACTIONS(127), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_TODO] = ACTIONS(131), - [anon_sym_WIP] = ACTIONS(131), - [anon_sym_NOTE] = ACTIONS(133), - [anon_sym_INFO] = ACTIONS(133), - [anon_sym_XXX] = ACTIONS(133), - [sym_fixme] = ACTIONS(117), - [sym__whitespace1] = ACTIONS(135), - [sym__newline] = ACTIONS(137), - [aux_sym__text_token1] = ACTIONS(139), - [sym__verbatim_begin] = ACTIONS(141), + [sym__inline] = STATE(1021), + [sym__element] = STATE(106), + [sym_emphasis] = STATE(139), + [sym_emphasis_begin] = STATE(1102), + [sym_strong] = STATE(139), + [sym_strong_begin] = STATE(1103), + [sym_superscript] = STATE(139), + [sym_superscript_begin] = STATE(1104), + [sym_subscript] = STATE(139), + [sym_subscript_begin] = STATE(1105), + [sym_highlighted] = STATE(139), + [sym_highlighted_begin] = STATE(1106), + [sym_insert] = STATE(139), + [sym_insert_begin] = STATE(1107), + [sym_delete] = STATE(139), + [sym_delete_begin] = STATE(1108), + [sym_hard_line_break] = STATE(139), + [sym__smart_punctuation] = STATE(139), + [sym_autolink] = STATE(139), + [sym_footnote_reference] = STATE(139), + [sym_footnote_marker_begin] = STATE(1109), + [sym__image] = STATE(139), + [sym_full_reference_image] = STATE(139), + [sym_collapsed_reference_image] = STATE(139), + [sym_inline_image] = STATE(139), + [sym_image_description] = STATE(623), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(139), + [sym_full_reference_link] = STATE(139), + [sym_collapsed_reference_link] = STATE(139), + [sym_inline_link] = STATE(139), + [sym_link_text] = STATE(621), + [sym_span] = STATE(106), + [sym__bracketed_text_begin] = STATE(1184), + [sym__comment_with_spaces] = STATE(139), + [sym_raw_inline] = STATE(139), + [sym_math] = STATE(139), + [sym_verbatim] = STATE(139), + [sym__todo_highlights] = STATE(139), + [sym_todo] = STATE(139), + [sym_note] = STATE(139), + [sym__symbol_fallback] = STATE(139), + [aux_sym__text] = STATE(126), + [aux_sym__inline_repeat1] = STATE(106), + [anon_sym_LBRACE_] = ACTIONS(101), + [anon_sym__] = ACTIONS(103), + [anon_sym_LBRACE_STAR] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(107), + [anon_sym_LBRACE_CARET] = ACTIONS(109), + [anon_sym_CARET] = ACTIONS(109), + [anon_sym_LBRACE_TILDE] = ACTIONS(111), + [anon_sym_TILDE] = ACTIONS(111), + [anon_sym_LBRACE_EQ] = ACTIONS(113), + [anon_sym_LBRACE_PLUS] = ACTIONS(115), + [anon_sym_LBRACE_DASH] = ACTIONS(117), + [anon_sym_BSLASH] = ACTIONS(119), + [sym_quotation_marks] = ACTIONS(121), + [sym_ellipsis] = ACTIONS(121), + [sym_em_dash] = ACTIONS(121), + [sym_en_dash] = ACTIONS(123), + [sym_backslash_escape] = ACTIONS(123), + [anon_sym_LT] = ACTIONS(125), + [sym_symbol] = ACTIONS(121), + [anon_sym_LBRACK_CARET] = ACTIONS(127), + [anon_sym_BANG_LBRACK] = ACTIONS(129), + [anon_sym_LBRACK] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_DOLLAR] = ACTIONS(135), + [anon_sym_TODO] = ACTIONS(137), + [anon_sym_WIP] = ACTIONS(137), + [anon_sym_NOTE] = ACTIONS(139), + [anon_sym_INFO] = ACTIONS(139), + [anon_sym_XXX] = ACTIONS(139), + [sym_fixme] = ACTIONS(121), + [sym__whitespace1] = ACTIONS(141), + [sym__newline] = ACTIONS(143), + [aux_sym__text_token1] = ACTIONS(145), + [sym__verbatim_begin] = ACTIONS(147), }, [4] = { - [sym__inline] = STATE(926), - [sym__element] = STATE(124), - [sym_emphasis] = STATE(151), - [sym_emphasis_begin] = STATE(1181), - [sym_strong] = STATE(151), - [sym_strong_begin] = STATE(1182), - [sym_superscript] = STATE(151), - [sym_superscript_begin] = STATE(1183), - [sym_subscript] = STATE(151), - [sym_subscript_begin] = STATE(1184), - [sym_highlighted] = STATE(151), - [sym_highlighted_begin] = STATE(1185), - [sym_insert] = STATE(151), - [sym_insert_begin] = STATE(1186), - [sym_delete] = STATE(151), - [sym_delete_begin] = STATE(1187), - [sym_hard_line_break] = STATE(151), - [sym__smart_punctuation] = STATE(151), - [sym_autolink] = STATE(151), - [sym_footnote_reference] = STATE(151), - [sym_footnote_marker_begin] = STATE(1188), - [sym__image] = STATE(151), - [sym_full_reference_image] = STATE(151), - [sym_collapsed_reference_image] = STATE(151), - [sym_inline_image] = STATE(151), - [sym_image_description] = STATE(700), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(151), - [sym_full_reference_link] = STATE(151), - [sym_collapsed_reference_link] = STATE(151), - [sym_inline_link] = STATE(151), - [sym_link_text] = STATE(701), - [sym_span] = STATE(124), - [sym__bracketed_text_begin] = STATE(1264), - [sym__comment_with_spaces] = STATE(151), - [sym_raw_inline] = STATE(151), - [sym_math] = STATE(151), - [sym_verbatim] = STATE(151), - [sym__todo_highlights] = STATE(151), - [sym_todo] = STATE(151), - [sym_note] = STATE(151), - [sym__symbol_fallback] = STATE(151), - [aux_sym__text] = STATE(140), - [aux_sym__inline_repeat1] = STATE(124), - [anon_sym_LBRACE_] = ACTIONS(143), - [anon_sym__] = ACTIONS(145), - [anon_sym_LBRACE_STAR] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_LBRACE_CARET] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(151), - [anon_sym_LBRACE_TILDE] = ACTIONS(153), - [anon_sym_TILDE] = ACTIONS(153), - [anon_sym_LBRACE_EQ] = ACTIONS(155), - [anon_sym_LBRACE_PLUS] = ACTIONS(157), - [anon_sym_LBRACE_DASH] = ACTIONS(159), - [anon_sym_BSLASH] = ACTIONS(161), - [sym_quotation_marks] = ACTIONS(163), - [sym_ellipsis] = ACTIONS(163), - [sym_em_dash] = ACTIONS(163), - [sym_en_dash] = ACTIONS(165), - [sym_backslash_escape] = ACTIONS(165), - [anon_sym_LT] = ACTIONS(167), - [sym_symbol] = ACTIONS(163), - [anon_sym_LBRACK_CARET] = ACTIONS(169), - [anon_sym_BANG_LBRACK] = ACTIONS(171), - [anon_sym_LBRACK] = ACTIONS(173), - [anon_sym_DOLLAR] = ACTIONS(175), - [anon_sym_TODO] = ACTIONS(177), - [anon_sym_WIP] = ACTIONS(177), - [anon_sym_NOTE] = ACTIONS(179), - [anon_sym_INFO] = ACTIONS(179), - [anon_sym_XXX] = ACTIONS(179), - [sym_fixme] = ACTIONS(163), - [sym__whitespace1] = ACTIONS(181), - [sym__newline] = ACTIONS(183), - [aux_sym__text_token1] = ACTIONS(185), - [sym__verbatim_begin] = ACTIONS(187), + [sym__inline_without_trailing_space] = STATE(904), + [sym__element] = STATE(536), + [sym_emphasis] = STATE(138), + [sym_emphasis_begin] = STATE(1092), + [sym_strong] = STATE(138), + [sym_strong_begin] = STATE(1093), + [sym_superscript] = STATE(138), + [sym_superscript_begin] = STATE(1094), + [sym_subscript] = STATE(138), + [sym_subscript_begin] = STATE(1095), + [sym_highlighted] = STATE(138), + [sym_highlighted_begin] = STATE(1096), + [sym_insert] = STATE(138), + [sym_insert_begin] = STATE(1097), + [sym_delete] = STATE(138), + [sym_delete_begin] = STATE(1098), + [sym_hard_line_break] = STATE(138), + [sym__smart_punctuation] = STATE(138), + [sym_autolink] = STATE(138), + [sym_footnote_reference] = STATE(138), + [sym_footnote_marker_begin] = STATE(1099), + [sym__image] = STATE(138), + [sym_full_reference_image] = STATE(138), + [sym_collapsed_reference_image] = STATE(138), + [sym_inline_image] = STATE(138), + [sym_image_description] = STATE(626), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(138), + [sym_full_reference_link] = STATE(138), + [sym_collapsed_reference_link] = STATE(138), + [sym_inline_link] = STATE(138), + [sym_link_text] = STATE(627), + [sym_span] = STATE(536), + [sym__bracketed_text_begin] = STATE(1183), + [sym__comment_with_spaces] = STATE(138), + [sym_raw_inline] = STATE(138), + [sym_math] = STATE(138), + [sym_verbatim] = STATE(138), + [sym__todo_highlights] = STATE(138), + [sym_todo] = STATE(138), + [sym_note] = STATE(138), + [sym__symbol_fallback] = STATE(138), + [aux_sym__text] = STATE(127), + [aux_sym__inline_repeat1] = STATE(118), + [anon_sym_LBRACE_] = ACTIONS(149), + [anon_sym__] = ACTIONS(151), + [anon_sym_LBRACE_STAR] = ACTIONS(153), + [anon_sym_STAR] = ACTIONS(155), + [anon_sym_LBRACE_CARET] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_LBRACE_TILDE] = ACTIONS(159), + [anon_sym_TILDE] = ACTIONS(159), + [anon_sym_LBRACE_EQ] = ACTIONS(161), + [anon_sym_LBRACE_PLUS] = ACTIONS(163), + [anon_sym_LBRACE_DASH] = ACTIONS(165), + [anon_sym_BSLASH] = ACTIONS(167), + [sym_quotation_marks] = ACTIONS(169), + [sym_ellipsis] = ACTIONS(169), + [sym_em_dash] = ACTIONS(169), + [sym_en_dash] = ACTIONS(171), + [sym_backslash_escape] = ACTIONS(171), + [anon_sym_LT] = ACTIONS(173), + [sym_symbol] = ACTIONS(169), + [anon_sym_LBRACK_CARET] = ACTIONS(175), + [anon_sym_BANG_LBRACK] = ACTIONS(177), + [anon_sym_LBRACK] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(181), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_TODO] = ACTIONS(185), + [anon_sym_WIP] = ACTIONS(185), + [anon_sym_NOTE] = ACTIONS(187), + [anon_sym_INFO] = ACTIONS(187), + [anon_sym_XXX] = ACTIONS(187), + [sym_fixme] = ACTIONS(169), + [sym__whitespace1] = ACTIONS(189), + [sym__newline] = ACTIONS(191), + [aux_sym__text_token1] = ACTIONS(193), + [sym__verbatim_begin] = ACTIONS(195), }, [5] = { - [sym__inline] = STATE(1059), - [sym__element] = STATE(46), - [sym_emphasis] = STATE(147), - [sym_emphasis_begin] = STATE(1217), - [sym_strong] = STATE(147), - [sym_strong_begin] = STATE(1218), - [sym_superscript] = STATE(147), - [sym_superscript_begin] = STATE(1219), - [sym_subscript] = STATE(147), - [sym_subscript_begin] = STATE(1220), - [sym_highlighted] = STATE(147), - [sym_highlighted_begin] = STATE(1221), - [sym_insert] = STATE(147), - [sym_insert_begin] = STATE(1222), - [sym_delete] = STATE(147), - [sym_delete_begin] = STATE(1223), - [sym_hard_line_break] = STATE(147), - [sym__smart_punctuation] = STATE(147), - [sym_autolink] = STATE(147), - [sym_footnote_reference] = STATE(147), - [sym_footnote_marker_begin] = STATE(1224), - [sym__image] = STATE(147), - [sym_full_reference_image] = STATE(147), - [sym_collapsed_reference_image] = STATE(147), - [sym_inline_image] = STATE(147), - [sym_image_description] = STATE(699), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(147), - [sym_full_reference_link] = STATE(147), - [sym_collapsed_reference_link] = STATE(147), - [sym_inline_link] = STATE(147), - [sym_link_text] = STATE(698), - [sym_span] = STATE(46), - [sym__bracketed_text_begin] = STATE(1268), - [sym__comment_with_spaces] = STATE(147), - [sym_raw_inline] = STATE(147), - [sym_math] = STATE(147), - [sym_verbatim] = STATE(147), - [sym__todo_highlights] = STATE(147), - [sym_todo] = STATE(147), - [sym_note] = STATE(147), - [sym__symbol_fallback] = STATE(147), - [aux_sym__text] = STATE(132), - [aux_sym__inline_repeat1] = STATE(46), - [anon_sym_LBRACE_] = ACTIONS(189), - [anon_sym__] = ACTIONS(191), - [anon_sym_LBRACE_STAR] = ACTIONS(193), - [anon_sym_STAR] = ACTIONS(195), - [anon_sym_LBRACE_CARET] = ACTIONS(197), - [anon_sym_CARET] = ACTIONS(197), - [anon_sym_LBRACE_TILDE] = ACTIONS(199), - [anon_sym_TILDE] = ACTIONS(199), - [anon_sym_LBRACE_EQ] = ACTIONS(201), - [anon_sym_LBRACE_PLUS] = ACTIONS(203), - [anon_sym_LBRACE_DASH] = ACTIONS(205), - [anon_sym_BSLASH] = ACTIONS(207), - [sym_quotation_marks] = ACTIONS(209), - [sym_ellipsis] = ACTIONS(209), - [sym_em_dash] = ACTIONS(209), - [sym_en_dash] = ACTIONS(211), - [sym_backslash_escape] = ACTIONS(211), - [anon_sym_LT] = ACTIONS(213), - [sym_symbol] = ACTIONS(209), - [anon_sym_LBRACK_CARET] = ACTIONS(215), - [anon_sym_BANG_LBRACK] = ACTIONS(217), - [anon_sym_LBRACK] = ACTIONS(219), - [anon_sym_DOLLAR] = ACTIONS(221), - [anon_sym_TODO] = ACTIONS(223), - [anon_sym_WIP] = ACTIONS(223), - [anon_sym_NOTE] = ACTIONS(225), - [anon_sym_INFO] = ACTIONS(225), - [anon_sym_XXX] = ACTIONS(225), - [sym_fixme] = ACTIONS(209), - [sym__whitespace1] = ACTIONS(227), - [sym__newline] = ACTIONS(229), - [aux_sym__text_token1] = ACTIONS(231), - [sym__verbatim_begin] = ACTIONS(233), + [sym__inline] = STATE(1013), + [sym__element] = STATE(22), + [sym_emphasis] = STATE(137), + [sym_emphasis_begin] = STATE(1112), + [sym_strong] = STATE(137), + [sym_strong_begin] = STATE(1113), + [sym_superscript] = STATE(137), + [sym_superscript_begin] = STATE(1114), + [sym_subscript] = STATE(137), + [sym_subscript_begin] = STATE(1115), + [sym_highlighted] = STATE(137), + [sym_highlighted_begin] = STATE(1116), + [sym_insert] = STATE(137), + [sym_insert_begin] = STATE(1117), + [sym_delete] = STATE(137), + [sym_delete_begin] = STATE(1118), + [sym_hard_line_break] = STATE(137), + [sym__smart_punctuation] = STATE(137), + [sym_autolink] = STATE(137), + [sym_footnote_reference] = STATE(137), + [sym_footnote_marker_begin] = STATE(1119), + [sym__image] = STATE(137), + [sym_full_reference_image] = STATE(137), + [sym_collapsed_reference_image] = STATE(137), + [sym_inline_image] = STATE(137), + [sym_image_description] = STATE(636), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(137), + [sym_full_reference_link] = STATE(137), + [sym_collapsed_reference_link] = STATE(137), + [sym_inline_link] = STATE(137), + [sym_link_text] = STATE(647), + [sym_span] = STATE(22), + [sym__bracketed_text_begin] = STATE(1185), + [sym__comment_with_spaces] = STATE(137), + [sym_raw_inline] = STATE(137), + [sym_math] = STATE(137), + [sym_verbatim] = STATE(137), + [sym__todo_highlights] = STATE(137), + [sym_todo] = STATE(137), + [sym_note] = STATE(137), + [sym__symbol_fallback] = STATE(137), + [aux_sym__text] = STATE(122), + [aux_sym__inline_repeat1] = STATE(22), + [anon_sym_LBRACE_] = ACTIONS(197), + [anon_sym__] = ACTIONS(199), + [anon_sym_LBRACE_STAR] = ACTIONS(201), + [anon_sym_STAR] = ACTIONS(203), + [anon_sym_LBRACE_CARET] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(205), + [anon_sym_LBRACE_TILDE] = ACTIONS(207), + [anon_sym_TILDE] = ACTIONS(207), + [anon_sym_LBRACE_EQ] = ACTIONS(209), + [anon_sym_LBRACE_PLUS] = ACTIONS(211), + [anon_sym_LBRACE_DASH] = ACTIONS(213), + [anon_sym_BSLASH] = ACTIONS(215), + [sym_quotation_marks] = ACTIONS(217), + [sym_ellipsis] = ACTIONS(217), + [sym_em_dash] = ACTIONS(217), + [sym_en_dash] = ACTIONS(219), + [sym_backslash_escape] = ACTIONS(219), + [anon_sym_LT] = ACTIONS(221), + [sym_symbol] = ACTIONS(217), + [anon_sym_LBRACK_CARET] = ACTIONS(223), + [anon_sym_BANG_LBRACK] = ACTIONS(225), + [anon_sym_LBRACK] = ACTIONS(227), + [anon_sym_LPAREN] = ACTIONS(229), + [anon_sym_DOLLAR] = ACTIONS(231), + [anon_sym_TODO] = ACTIONS(233), + [anon_sym_WIP] = ACTIONS(233), + [anon_sym_NOTE] = ACTIONS(235), + [anon_sym_INFO] = ACTIONS(235), + [anon_sym_XXX] = ACTIONS(235), + [sym_fixme] = ACTIONS(217), + [sym__whitespace1] = ACTIONS(237), + [sym__newline] = ACTIONS(239), + [aux_sym__text_token1] = ACTIONS(241), + [sym__verbatim_begin] = ACTIONS(243), }, [6] = { - [sym__inline] = STATE(1129), - [sym__element] = STATE(121), - [sym_emphasis] = STATE(154), - [sym_emphasis_begin] = STATE(1244), - [sym_strong] = STATE(154), - [sym_strong_begin] = STATE(1245), - [sym_superscript] = STATE(154), - [sym_superscript_begin] = STATE(1246), - [sym_subscript] = STATE(154), - [sym_subscript_begin] = STATE(1247), - [sym_highlighted] = STATE(154), - [sym_highlighted_begin] = STATE(1248), - [sym_insert] = STATE(154), - [sym_insert_begin] = STATE(1249), - [sym_delete] = STATE(154), - [sym_delete_begin] = STATE(1250), - [sym_hard_line_break] = STATE(154), - [sym__smart_punctuation] = STATE(154), - [sym_autolink] = STATE(154), - [sym_footnote_reference] = STATE(154), - [sym_footnote_marker_begin] = STATE(1251), - [sym__image] = STATE(154), - [sym_full_reference_image] = STATE(154), - [sym_collapsed_reference_image] = STATE(154), - [sym_inline_image] = STATE(154), - [sym_image_description] = STATE(686), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(154), - [sym_full_reference_link] = STATE(154), - [sym_collapsed_reference_link] = STATE(154), - [sym_inline_link] = STATE(154), - [sym_link_text] = STATE(687), - [sym_span] = STATE(121), - [sym__bracketed_text_begin] = STATE(1271), - [sym__comment_with_spaces] = STATE(154), - [sym_raw_inline] = STATE(154), - [sym_math] = STATE(154), - [sym_verbatim] = STATE(154), - [sym__todo_highlights] = STATE(154), - [sym_todo] = STATE(154), - [sym_note] = STATE(154), - [sym__symbol_fallback] = STATE(154), - [aux_sym__text] = STATE(137), - [aux_sym__inline_repeat1] = STATE(121), - [anon_sym_LBRACE_] = ACTIONS(235), - [anon_sym__] = ACTIONS(237), - [anon_sym_LBRACE_STAR] = ACTIONS(239), - [anon_sym_STAR] = ACTIONS(241), - [anon_sym_LBRACE_CARET] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(243), - [anon_sym_LBRACE_TILDE] = ACTIONS(245), - [anon_sym_TILDE] = ACTIONS(245), - [anon_sym_LBRACE_EQ] = ACTIONS(247), - [anon_sym_LBRACE_PLUS] = ACTIONS(249), - [anon_sym_LBRACE_DASH] = ACTIONS(251), - [anon_sym_BSLASH] = ACTIONS(253), - [sym_quotation_marks] = ACTIONS(255), - [sym_ellipsis] = ACTIONS(255), - [sym_em_dash] = ACTIONS(255), - [sym_en_dash] = ACTIONS(257), - [sym_backslash_escape] = ACTIONS(257), - [anon_sym_LT] = ACTIONS(259), - [sym_symbol] = ACTIONS(255), - [anon_sym_LBRACK_CARET] = ACTIONS(261), - [anon_sym_BANG_LBRACK] = ACTIONS(263), - [anon_sym_LBRACK] = ACTIONS(265), - [anon_sym_DOLLAR] = ACTIONS(267), - [anon_sym_TODO] = ACTIONS(269), - [anon_sym_WIP] = ACTIONS(269), - [anon_sym_NOTE] = ACTIONS(271), - [anon_sym_INFO] = ACTIONS(271), - [anon_sym_XXX] = ACTIONS(271), - [sym_fixme] = ACTIONS(255), - [sym__whitespace1] = ACTIONS(273), - [sym__newline] = ACTIONS(275), - [aux_sym__text_token1] = ACTIONS(277), - [sym__verbatim_begin] = ACTIONS(279), + [sym__inline] = STATE(1048), + [sym__element] = STATE(107), + [sym_emphasis] = STATE(140), + [sym_emphasis_begin] = STATE(1162), + [sym_strong] = STATE(140), + [sym_strong_begin] = STATE(1163), + [sym_superscript] = STATE(140), + [sym_superscript_begin] = STATE(1164), + [sym_subscript] = STATE(140), + [sym_subscript_begin] = STATE(1165), + [sym_highlighted] = STATE(140), + [sym_highlighted_begin] = STATE(1166), + [sym_insert] = STATE(140), + [sym_insert_begin] = STATE(1167), + [sym_delete] = STATE(140), + [sym_delete_begin] = STATE(1168), + [sym_hard_line_break] = STATE(140), + [sym__smart_punctuation] = STATE(140), + [sym_autolink] = STATE(140), + [sym_footnote_reference] = STATE(140), + [sym_footnote_marker_begin] = STATE(1169), + [sym__image] = STATE(140), + [sym_full_reference_image] = STATE(140), + [sym_collapsed_reference_image] = STATE(140), + [sym_inline_image] = STATE(140), + [sym_image_description] = STATE(625), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(140), + [sym_full_reference_link] = STATE(140), + [sym_collapsed_reference_link] = STATE(140), + [sym_inline_link] = STATE(140), + [sym_link_text] = STATE(624), + [sym_span] = STATE(107), + [sym__bracketed_text_begin] = STATE(1190), + [sym__comment_with_spaces] = STATE(140), + [sym_raw_inline] = STATE(140), + [sym_math] = STATE(140), + [sym_verbatim] = STATE(140), + [sym__todo_highlights] = STATE(140), + [sym_todo] = STATE(140), + [sym_note] = STATE(140), + [sym__symbol_fallback] = STATE(140), + [aux_sym__text] = STATE(124), + [aux_sym__inline_repeat1] = STATE(107), + [anon_sym_LBRACE_] = ACTIONS(51), + [anon_sym__] = ACTIONS(53), + [anon_sym_LBRACE_STAR] = ACTIONS(55), + [anon_sym_STAR] = ACTIONS(57), + [anon_sym_LBRACE_CARET] = ACTIONS(59), + [anon_sym_CARET] = ACTIONS(59), + [anon_sym_LBRACE_TILDE] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(61), + [anon_sym_LBRACE_EQ] = ACTIONS(63), + [anon_sym_LBRACE_PLUS] = ACTIONS(65), + [anon_sym_LBRACE_DASH] = ACTIONS(67), + [anon_sym_BSLASH] = ACTIONS(69), + [sym_quotation_marks] = ACTIONS(71), + [sym_ellipsis] = ACTIONS(71), + [sym_em_dash] = ACTIONS(71), + [sym_en_dash] = ACTIONS(73), + [sym_backslash_escape] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(75), + [sym_symbol] = ACTIONS(71), + [anon_sym_LBRACK_CARET] = ACTIONS(77), + [anon_sym_BANG_LBRACK] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(85), + [anon_sym_TODO] = ACTIONS(87), + [anon_sym_WIP] = ACTIONS(87), + [anon_sym_NOTE] = ACTIONS(89), + [anon_sym_INFO] = ACTIONS(89), + [anon_sym_XXX] = ACTIONS(89), + [sym_fixme] = ACTIONS(71), + [sym__whitespace1] = ACTIONS(91), + [sym__newline] = ACTIONS(93), + [aux_sym__text_token1] = ACTIONS(95), + [sym__verbatim_begin] = ACTIONS(97), }, [7] = { - [sym__element] = STATE(70), - [sym_emphasis] = STATE(153), - [sym_emphasis_begin] = STATE(1208), - [sym_strong] = STATE(153), - [sym_strong_begin] = STATE(1209), - [sym_superscript] = STATE(153), - [sym_superscript_begin] = STATE(1210), - [sym_subscript] = STATE(153), - [sym_subscript_begin] = STATE(1211), - [sym_highlighted] = STATE(153), - [sym_highlighted_begin] = STATE(1212), - [sym_insert] = STATE(153), - [sym_insert_begin] = STATE(1213), - [sym_delete] = STATE(153), - [sym_delete_begin] = STATE(1214), - [sym_hard_line_break] = STATE(153), - [sym__smart_punctuation] = STATE(153), - [sym_autolink] = STATE(153), - [sym_footnote_reference] = STATE(153), - [sym_footnote_marker_begin] = STATE(1215), - [sym__image] = STATE(153), - [sym_full_reference_image] = STATE(153), - [sym_collapsed_reference_image] = STATE(153), - [sym_inline_image] = STATE(153), - [sym_image_description] = STATE(707), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(153), - [sym_full_reference_link] = STATE(153), - [sym_collapsed_reference_link] = STATE(153), - [sym_inline_link] = STATE(153), - [sym_link_text] = STATE(705), - [sym_span] = STATE(70), - [sym__bracketed_text_begin] = STATE(1267), - [sym__comment_with_spaces] = STATE(153), - [sym_raw_inline] = STATE(153), - [sym_math] = STATE(153), - [sym_verbatim] = STATE(153), - [sym__todo_highlights] = STATE(153), - [sym_todo] = STATE(153), - [sym_note] = STATE(153), - [sym__symbol_fallback] = STATE(153), - [aux_sym__text] = STATE(134), - [aux_sym__inline_repeat1] = STATE(70), - [anon_sym_LBRACE_] = ACTIONS(97), - [anon_sym__] = ACTIONS(99), - [anon_sym_LBRACE_STAR] = ACTIONS(101), - [anon_sym_STAR] = ACTIONS(103), - [anon_sym_LBRACE_CARET] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [anon_sym_LBRACE_TILDE] = ACTIONS(107), - [anon_sym_TILDE] = ACTIONS(107), - [anon_sym_LBRACE_EQ] = ACTIONS(109), - [anon_sym_LBRACE_PLUS] = ACTIONS(111), - [anon_sym_LBRACE_DASH] = ACTIONS(113), - [anon_sym_BSLASH] = ACTIONS(115), - [sym_quotation_marks] = ACTIONS(117), - [sym_ellipsis] = ACTIONS(117), - [sym_em_dash] = ACTIONS(117), - [sym_en_dash] = ACTIONS(119), - [sym_backslash_escape] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [sym_symbol] = ACTIONS(117), - [anon_sym_LBRACK_CARET] = ACTIONS(123), - [anon_sym_BANG_LBRACK] = ACTIONS(125), - [anon_sym_LBRACK] = ACTIONS(127), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_TODO] = ACTIONS(131), - [anon_sym_WIP] = ACTIONS(131), - [anon_sym_NOTE] = ACTIONS(133), - [anon_sym_INFO] = ACTIONS(133), - [anon_sym_XXX] = ACTIONS(133), - [sym_fixme] = ACTIONS(117), - [sym__whitespace1] = ACTIONS(135), - [sym__newline] = ACTIONS(281), - [aux_sym__text_token1] = ACTIONS(139), - [sym__verbatim_begin] = ACTIONS(141), - [sym_insert_end] = ACTIONS(283), + [sym__element] = STATE(7), + [sym_emphasis] = STATE(139), + [sym_emphasis_begin] = STATE(1102), + [sym_strong] = STATE(139), + [sym_strong_begin] = STATE(1103), + [sym_superscript] = STATE(139), + [sym_superscript_begin] = STATE(1104), + [sym_subscript] = STATE(139), + [sym_subscript_begin] = STATE(1105), + [sym_highlighted] = STATE(139), + [sym_highlighted_begin] = STATE(1106), + [sym_insert] = STATE(139), + [sym_insert_begin] = STATE(1107), + [sym_delete] = STATE(139), + [sym_delete_begin] = STATE(1108), + [sym_hard_line_break] = STATE(139), + [sym__smart_punctuation] = STATE(139), + [sym_autolink] = STATE(139), + [sym_footnote_reference] = STATE(139), + [sym_footnote_marker_begin] = STATE(1109), + [sym__image] = STATE(139), + [sym_full_reference_image] = STATE(139), + [sym_collapsed_reference_image] = STATE(139), + [sym_inline_image] = STATE(139), + [sym_image_description] = STATE(623), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(139), + [sym_full_reference_link] = STATE(139), + [sym_collapsed_reference_link] = STATE(139), + [sym_inline_link] = STATE(139), + [sym_link_text] = STATE(621), + [sym_span] = STATE(7), + [sym__bracketed_text_begin] = STATE(1184), + [sym__comment_with_spaces] = STATE(139), + [sym_raw_inline] = STATE(139), + [sym_math] = STATE(139), + [sym_verbatim] = STATE(139), + [sym__todo_highlights] = STATE(139), + [sym_todo] = STATE(139), + [sym_note] = STATE(139), + [sym__symbol_fallback] = STATE(139), + [aux_sym__text] = STATE(126), + [aux_sym__inline_repeat1] = STATE(7), + [anon_sym_LBRACE_] = ACTIONS(245), + [anon_sym__] = ACTIONS(248), + [anon_sym_LBRACE_STAR] = ACTIONS(251), + [anon_sym_STAR] = ACTIONS(254), + [anon_sym_LBRACE_CARET] = ACTIONS(257), + [anon_sym_CARET] = ACTIONS(257), + [anon_sym_LBRACE_TILDE] = ACTIONS(260), + [anon_sym_TILDE] = ACTIONS(260), + [anon_sym_LBRACE_EQ] = ACTIONS(263), + [anon_sym_LBRACE_PLUS] = ACTIONS(266), + [anon_sym_LBRACE_DASH] = ACTIONS(269), + [anon_sym_BSLASH] = ACTIONS(272), + [sym_quotation_marks] = ACTIONS(275), + [sym_ellipsis] = ACTIONS(275), + [sym_em_dash] = ACTIONS(275), + [sym_en_dash] = ACTIONS(278), + [sym_backslash_escape] = ACTIONS(278), + [anon_sym_LT] = ACTIONS(281), + [sym_symbol] = ACTIONS(275), + [anon_sym_LBRACK_CARET] = ACTIONS(284), + [anon_sym_BANG_LBRACK] = ACTIONS(287), + [anon_sym_LBRACK] = ACTIONS(290), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_DOLLAR] = ACTIONS(296), + [anon_sym_TODO] = ACTIONS(299), + [anon_sym_WIP] = ACTIONS(299), + [anon_sym_NOTE] = ACTIONS(302), + [anon_sym_INFO] = ACTIONS(302), + [anon_sym_XXX] = ACTIONS(302), + [sym_fixme] = ACTIONS(275), + [sym__whitespace1] = ACTIONS(305), + [sym__newline] = ACTIONS(308), + [aux_sym__text_token1] = ACTIONS(311), + [sym__verbatim_begin] = ACTIONS(314), + [sym_superscript_end] = ACTIONS(317), }, [8] = { - [sym__inline] = STATE(1113), - [sym__element] = STATE(121), - [sym_emphasis] = STATE(154), - [sym_emphasis_begin] = STATE(1244), - [sym_strong] = STATE(154), - [sym_strong_begin] = STATE(1245), - [sym_superscript] = STATE(154), - [sym_superscript_begin] = STATE(1246), - [sym_subscript] = STATE(154), - [sym_subscript_begin] = STATE(1247), - [sym_highlighted] = STATE(154), - [sym_highlighted_begin] = STATE(1248), - [sym_insert] = STATE(154), - [sym_insert_begin] = STATE(1249), - [sym_delete] = STATE(154), - [sym_delete_begin] = STATE(1250), - [sym_hard_line_break] = STATE(154), - [sym__smart_punctuation] = STATE(154), - [sym_autolink] = STATE(154), - [sym_footnote_reference] = STATE(154), - [sym_footnote_marker_begin] = STATE(1251), - [sym__image] = STATE(154), - [sym_full_reference_image] = STATE(154), - [sym_collapsed_reference_image] = STATE(154), - [sym_inline_image] = STATE(154), - [sym_image_description] = STATE(686), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(154), - [sym_full_reference_link] = STATE(154), - [sym_collapsed_reference_link] = STATE(154), - [sym_inline_link] = STATE(154), - [sym_link_text] = STATE(687), - [sym_span] = STATE(121), - [sym__bracketed_text_begin] = STATE(1271), - [sym__comment_with_spaces] = STATE(154), - [sym_raw_inline] = STATE(154), - [sym_math] = STATE(154), - [sym_verbatim] = STATE(154), - [sym__todo_highlights] = STATE(154), - [sym_todo] = STATE(154), - [sym_note] = STATE(154), - [sym__symbol_fallback] = STATE(154), - [aux_sym__text] = STATE(137), - [aux_sym__inline_repeat1] = STATE(121), - [anon_sym_LBRACE_] = ACTIONS(235), - [anon_sym__] = ACTIONS(237), - [anon_sym_LBRACE_STAR] = ACTIONS(239), - [anon_sym_STAR] = ACTIONS(241), - [anon_sym_LBRACE_CARET] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(243), - [anon_sym_LBRACE_TILDE] = ACTIONS(245), - [anon_sym_TILDE] = ACTIONS(245), - [anon_sym_LBRACE_EQ] = ACTIONS(247), - [anon_sym_LBRACE_PLUS] = ACTIONS(249), - [anon_sym_LBRACE_DASH] = ACTIONS(251), - [anon_sym_BSLASH] = ACTIONS(253), - [sym_quotation_marks] = ACTIONS(255), - [sym_ellipsis] = ACTIONS(255), - [sym_em_dash] = ACTIONS(255), - [sym_en_dash] = ACTIONS(257), - [sym_backslash_escape] = ACTIONS(257), - [anon_sym_LT] = ACTIONS(259), - [sym_symbol] = ACTIONS(255), - [anon_sym_LBRACK_CARET] = ACTIONS(261), - [anon_sym_BANG_LBRACK] = ACTIONS(263), - [anon_sym_LBRACK] = ACTIONS(265), - [anon_sym_DOLLAR] = ACTIONS(267), - [anon_sym_TODO] = ACTIONS(269), - [anon_sym_WIP] = ACTIONS(269), - [anon_sym_NOTE] = ACTIONS(271), - [anon_sym_INFO] = ACTIONS(271), - [anon_sym_XXX] = ACTIONS(271), - [sym_fixme] = ACTIONS(255), - [sym__whitespace1] = ACTIONS(273), - [sym__newline] = ACTIONS(275), - [aux_sym__text_token1] = ACTIONS(277), - [sym__verbatim_begin] = ACTIONS(279), + [sym__inline] = STATE(1032), + [sym__element] = STATE(107), + [sym_emphasis] = STATE(140), + [sym_emphasis_begin] = STATE(1162), + [sym_strong] = STATE(140), + [sym_strong_begin] = STATE(1163), + [sym_superscript] = STATE(140), + [sym_superscript_begin] = STATE(1164), + [sym_subscript] = STATE(140), + [sym_subscript_begin] = STATE(1165), + [sym_highlighted] = STATE(140), + [sym_highlighted_begin] = STATE(1166), + [sym_insert] = STATE(140), + [sym_insert_begin] = STATE(1167), + [sym_delete] = STATE(140), + [sym_delete_begin] = STATE(1168), + [sym_hard_line_break] = STATE(140), + [sym__smart_punctuation] = STATE(140), + [sym_autolink] = STATE(140), + [sym_footnote_reference] = STATE(140), + [sym_footnote_marker_begin] = STATE(1169), + [sym__image] = STATE(140), + [sym_full_reference_image] = STATE(140), + [sym_collapsed_reference_image] = STATE(140), + [sym_inline_image] = STATE(140), + [sym_image_description] = STATE(625), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(140), + [sym_full_reference_link] = STATE(140), + [sym_collapsed_reference_link] = STATE(140), + [sym_inline_link] = STATE(140), + [sym_link_text] = STATE(624), + [sym_span] = STATE(107), + [sym__bracketed_text_begin] = STATE(1190), + [sym__comment_with_spaces] = STATE(140), + [sym_raw_inline] = STATE(140), + [sym_math] = STATE(140), + [sym_verbatim] = STATE(140), + [sym__todo_highlights] = STATE(140), + [sym_todo] = STATE(140), + [sym_note] = STATE(140), + [sym__symbol_fallback] = STATE(140), + [aux_sym__text] = STATE(124), + [aux_sym__inline_repeat1] = STATE(107), + [anon_sym_LBRACE_] = ACTIONS(51), + [anon_sym__] = ACTIONS(53), + [anon_sym_LBRACE_STAR] = ACTIONS(55), + [anon_sym_STAR] = ACTIONS(57), + [anon_sym_LBRACE_CARET] = ACTIONS(59), + [anon_sym_CARET] = ACTIONS(59), + [anon_sym_LBRACE_TILDE] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(61), + [anon_sym_LBRACE_EQ] = ACTIONS(63), + [anon_sym_LBRACE_PLUS] = ACTIONS(65), + [anon_sym_LBRACE_DASH] = ACTIONS(67), + [anon_sym_BSLASH] = ACTIONS(69), + [sym_quotation_marks] = ACTIONS(71), + [sym_ellipsis] = ACTIONS(71), + [sym_em_dash] = ACTIONS(71), + [sym_en_dash] = ACTIONS(73), + [sym_backslash_escape] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(75), + [sym_symbol] = ACTIONS(71), + [anon_sym_LBRACK_CARET] = ACTIONS(77), + [anon_sym_BANG_LBRACK] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(85), + [anon_sym_TODO] = ACTIONS(87), + [anon_sym_WIP] = ACTIONS(87), + [anon_sym_NOTE] = ACTIONS(89), + [anon_sym_INFO] = ACTIONS(89), + [anon_sym_XXX] = ACTIONS(89), + [sym_fixme] = ACTIONS(71), + [sym__whitespace1] = ACTIONS(91), + [sym__newline] = ACTIONS(93), + [aux_sym__text_token1] = ACTIONS(95), + [sym__verbatim_begin] = ACTIONS(97), }, [9] = { - [sym__inline] = STATE(1097), - [sym__element] = STATE(121), - [sym_emphasis] = STATE(154), - [sym_emphasis_begin] = STATE(1244), - [sym_strong] = STATE(154), - [sym_strong_begin] = STATE(1245), - [sym_superscript] = STATE(154), - [sym_superscript_begin] = STATE(1246), - [sym_subscript] = STATE(154), - [sym_subscript_begin] = STATE(1247), - [sym_highlighted] = STATE(154), - [sym_highlighted_begin] = STATE(1248), - [sym_insert] = STATE(154), - [sym_insert_begin] = STATE(1249), - [sym_delete] = STATE(154), - [sym_delete_begin] = STATE(1250), - [sym_hard_line_break] = STATE(154), - [sym__smart_punctuation] = STATE(154), - [sym_autolink] = STATE(154), - [sym_footnote_reference] = STATE(154), - [sym_footnote_marker_begin] = STATE(1251), - [sym__image] = STATE(154), - [sym_full_reference_image] = STATE(154), - [sym_collapsed_reference_image] = STATE(154), - [sym_inline_image] = STATE(154), - [sym_image_description] = STATE(686), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(154), - [sym_full_reference_link] = STATE(154), - [sym_collapsed_reference_link] = STATE(154), - [sym_inline_link] = STATE(154), - [sym_link_text] = STATE(687), - [sym_span] = STATE(121), - [sym__bracketed_text_begin] = STATE(1271), - [sym__comment_with_spaces] = STATE(154), - [sym_raw_inline] = STATE(154), - [sym_math] = STATE(154), - [sym_verbatim] = STATE(154), - [sym__todo_highlights] = STATE(154), - [sym_todo] = STATE(154), - [sym_note] = STATE(154), - [sym__symbol_fallback] = STATE(154), - [aux_sym__text] = STATE(137), - [aux_sym__inline_repeat1] = STATE(121), - [anon_sym_LBRACE_] = ACTIONS(235), - [anon_sym__] = ACTIONS(237), - [anon_sym_LBRACE_STAR] = ACTIONS(239), - [anon_sym_STAR] = ACTIONS(241), - [anon_sym_LBRACE_CARET] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(243), - [anon_sym_LBRACE_TILDE] = ACTIONS(245), - [anon_sym_TILDE] = ACTIONS(245), - [anon_sym_LBRACE_EQ] = ACTIONS(247), - [anon_sym_LBRACE_PLUS] = ACTIONS(249), - [anon_sym_LBRACE_DASH] = ACTIONS(251), - [anon_sym_BSLASH] = ACTIONS(253), - [sym_quotation_marks] = ACTIONS(255), - [sym_ellipsis] = ACTIONS(255), - [sym_em_dash] = ACTIONS(255), - [sym_en_dash] = ACTIONS(257), - [sym_backslash_escape] = ACTIONS(257), - [anon_sym_LT] = ACTIONS(259), - [sym_symbol] = ACTIONS(255), - [anon_sym_LBRACK_CARET] = ACTIONS(261), - [anon_sym_BANG_LBRACK] = ACTIONS(263), - [anon_sym_LBRACK] = ACTIONS(265), - [anon_sym_DOLLAR] = ACTIONS(267), - [anon_sym_TODO] = ACTIONS(269), - [anon_sym_WIP] = ACTIONS(269), - [anon_sym_NOTE] = ACTIONS(271), - [anon_sym_INFO] = ACTIONS(271), - [anon_sym_XXX] = ACTIONS(271), - [sym_fixme] = ACTIONS(255), - [sym__whitespace1] = ACTIONS(273), - [sym__newline] = ACTIONS(275), - [aux_sym__text_token1] = ACTIONS(277), - [sym__verbatim_begin] = ACTIONS(279), + [sym__inline] = STATE(1016), + [sym__element] = STATE(107), + [sym_emphasis] = STATE(140), + [sym_emphasis_begin] = STATE(1162), + [sym_strong] = STATE(140), + [sym_strong_begin] = STATE(1163), + [sym_superscript] = STATE(140), + [sym_superscript_begin] = STATE(1164), + [sym_subscript] = STATE(140), + [sym_subscript_begin] = STATE(1165), + [sym_highlighted] = STATE(140), + [sym_highlighted_begin] = STATE(1166), + [sym_insert] = STATE(140), + [sym_insert_begin] = STATE(1167), + [sym_delete] = STATE(140), + [sym_delete_begin] = STATE(1168), + [sym_hard_line_break] = STATE(140), + [sym__smart_punctuation] = STATE(140), + [sym_autolink] = STATE(140), + [sym_footnote_reference] = STATE(140), + [sym_footnote_marker_begin] = STATE(1169), + [sym__image] = STATE(140), + [sym_full_reference_image] = STATE(140), + [sym_collapsed_reference_image] = STATE(140), + [sym_inline_image] = STATE(140), + [sym_image_description] = STATE(625), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(140), + [sym_full_reference_link] = STATE(140), + [sym_collapsed_reference_link] = STATE(140), + [sym_inline_link] = STATE(140), + [sym_link_text] = STATE(624), + [sym_span] = STATE(107), + [sym__bracketed_text_begin] = STATE(1190), + [sym__comment_with_spaces] = STATE(140), + [sym_raw_inline] = STATE(140), + [sym_math] = STATE(140), + [sym_verbatim] = STATE(140), + [sym__todo_highlights] = STATE(140), + [sym_todo] = STATE(140), + [sym_note] = STATE(140), + [sym__symbol_fallback] = STATE(140), + [aux_sym__text] = STATE(124), + [aux_sym__inline_repeat1] = STATE(107), + [anon_sym_LBRACE_] = ACTIONS(51), + [anon_sym__] = ACTIONS(53), + [anon_sym_LBRACE_STAR] = ACTIONS(55), + [anon_sym_STAR] = ACTIONS(57), + [anon_sym_LBRACE_CARET] = ACTIONS(59), + [anon_sym_CARET] = ACTIONS(59), + [anon_sym_LBRACE_TILDE] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(61), + [anon_sym_LBRACE_EQ] = ACTIONS(63), + [anon_sym_LBRACE_PLUS] = ACTIONS(65), + [anon_sym_LBRACE_DASH] = ACTIONS(67), + [anon_sym_BSLASH] = ACTIONS(69), + [sym_quotation_marks] = ACTIONS(71), + [sym_ellipsis] = ACTIONS(71), + [sym_em_dash] = ACTIONS(71), + [sym_en_dash] = ACTIONS(73), + [sym_backslash_escape] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(75), + [sym_symbol] = ACTIONS(71), + [anon_sym_LBRACK_CARET] = ACTIONS(77), + [anon_sym_BANG_LBRACK] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(85), + [anon_sym_TODO] = ACTIONS(87), + [anon_sym_WIP] = ACTIONS(87), + [anon_sym_NOTE] = ACTIONS(89), + [anon_sym_INFO] = ACTIONS(89), + [anon_sym_XXX] = ACTIONS(89), + [sym_fixme] = ACTIONS(71), + [sym__whitespace1] = ACTIONS(91), + [sym__newline] = ACTIONS(93), + [aux_sym__text_token1] = ACTIONS(95), + [sym__verbatim_begin] = ACTIONS(97), }, [10] = { - [sym__inline] = STATE(1081), - [sym__element] = STATE(121), - [sym_emphasis] = STATE(154), - [sym_emphasis_begin] = STATE(1244), - [sym_strong] = STATE(154), - [sym_strong_begin] = STATE(1245), - [sym_superscript] = STATE(154), - [sym_superscript_begin] = STATE(1246), - [sym_subscript] = STATE(154), - [sym_subscript_begin] = STATE(1247), - [sym_highlighted] = STATE(154), - [sym_highlighted_begin] = STATE(1248), - [sym_insert] = STATE(154), - [sym_insert_begin] = STATE(1249), - [sym_delete] = STATE(154), - [sym_delete_begin] = STATE(1250), - [sym_hard_line_break] = STATE(154), - [sym__smart_punctuation] = STATE(154), - [sym_autolink] = STATE(154), - [sym_footnote_reference] = STATE(154), - [sym_footnote_marker_begin] = STATE(1251), - [sym__image] = STATE(154), - [sym_full_reference_image] = STATE(154), - [sym_collapsed_reference_image] = STATE(154), - [sym_inline_image] = STATE(154), - [sym_image_description] = STATE(686), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(154), - [sym_full_reference_link] = STATE(154), - [sym_collapsed_reference_link] = STATE(154), - [sym_inline_link] = STATE(154), - [sym_link_text] = STATE(687), - [sym_span] = STATE(121), - [sym__bracketed_text_begin] = STATE(1271), - [sym__comment_with_spaces] = STATE(154), - [sym_raw_inline] = STATE(154), - [sym_math] = STATE(154), - [sym_verbatim] = STATE(154), - [sym__todo_highlights] = STATE(154), - [sym_todo] = STATE(154), - [sym_note] = STATE(154), - [sym__symbol_fallback] = STATE(154), - [aux_sym__text] = STATE(137), - [aux_sym__inline_repeat1] = STATE(121), - [anon_sym_LBRACE_] = ACTIONS(235), - [anon_sym__] = ACTIONS(237), - [anon_sym_LBRACE_STAR] = ACTIONS(239), - [anon_sym_STAR] = ACTIONS(241), - [anon_sym_LBRACE_CARET] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(243), - [anon_sym_LBRACE_TILDE] = ACTIONS(245), - [anon_sym_TILDE] = ACTIONS(245), - [anon_sym_LBRACE_EQ] = ACTIONS(247), - [anon_sym_LBRACE_PLUS] = ACTIONS(249), - [anon_sym_LBRACE_DASH] = ACTIONS(251), - [anon_sym_BSLASH] = ACTIONS(253), - [sym_quotation_marks] = ACTIONS(255), - [sym_ellipsis] = ACTIONS(255), - [sym_em_dash] = ACTIONS(255), - [sym_en_dash] = ACTIONS(257), - [sym_backslash_escape] = ACTIONS(257), - [anon_sym_LT] = ACTIONS(259), - [sym_symbol] = ACTIONS(255), - [anon_sym_LBRACK_CARET] = ACTIONS(261), - [anon_sym_BANG_LBRACK] = ACTIONS(263), - [anon_sym_LBRACK] = ACTIONS(265), - [anon_sym_DOLLAR] = ACTIONS(267), - [anon_sym_TODO] = ACTIONS(269), - [anon_sym_WIP] = ACTIONS(269), - [anon_sym_NOTE] = ACTIONS(271), - [anon_sym_INFO] = ACTIONS(271), - [anon_sym_XXX] = ACTIONS(271), - [sym_fixme] = ACTIONS(255), - [sym__whitespace1] = ACTIONS(273), - [sym__newline] = ACTIONS(275), - [aux_sym__text_token1] = ACTIONS(277), - [sym__verbatim_begin] = ACTIONS(279), + [sym__inline] = STATE(1000), + [sym__element] = STATE(107), + [sym_emphasis] = STATE(140), + [sym_emphasis_begin] = STATE(1162), + [sym_strong] = STATE(140), + [sym_strong_begin] = STATE(1163), + [sym_superscript] = STATE(140), + [sym_superscript_begin] = STATE(1164), + [sym_subscript] = STATE(140), + [sym_subscript_begin] = STATE(1165), + [sym_highlighted] = STATE(140), + [sym_highlighted_begin] = STATE(1166), + [sym_insert] = STATE(140), + [sym_insert_begin] = STATE(1167), + [sym_delete] = STATE(140), + [sym_delete_begin] = STATE(1168), + [sym_hard_line_break] = STATE(140), + [sym__smart_punctuation] = STATE(140), + [sym_autolink] = STATE(140), + [sym_footnote_reference] = STATE(140), + [sym_footnote_marker_begin] = STATE(1169), + [sym__image] = STATE(140), + [sym_full_reference_image] = STATE(140), + [sym_collapsed_reference_image] = STATE(140), + [sym_inline_image] = STATE(140), + [sym_image_description] = STATE(625), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(140), + [sym_full_reference_link] = STATE(140), + [sym_collapsed_reference_link] = STATE(140), + [sym_inline_link] = STATE(140), + [sym_link_text] = STATE(624), + [sym_span] = STATE(107), + [sym__bracketed_text_begin] = STATE(1190), + [sym__comment_with_spaces] = STATE(140), + [sym_raw_inline] = STATE(140), + [sym_math] = STATE(140), + [sym_verbatim] = STATE(140), + [sym__todo_highlights] = STATE(140), + [sym_todo] = STATE(140), + [sym_note] = STATE(140), + [sym__symbol_fallback] = STATE(140), + [aux_sym__text] = STATE(124), + [aux_sym__inline_repeat1] = STATE(107), + [anon_sym_LBRACE_] = ACTIONS(51), + [anon_sym__] = ACTIONS(53), + [anon_sym_LBRACE_STAR] = ACTIONS(55), + [anon_sym_STAR] = ACTIONS(57), + [anon_sym_LBRACE_CARET] = ACTIONS(59), + [anon_sym_CARET] = ACTIONS(59), + [anon_sym_LBRACE_TILDE] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(61), + [anon_sym_LBRACE_EQ] = ACTIONS(63), + [anon_sym_LBRACE_PLUS] = ACTIONS(65), + [anon_sym_LBRACE_DASH] = ACTIONS(67), + [anon_sym_BSLASH] = ACTIONS(69), + [sym_quotation_marks] = ACTIONS(71), + [sym_ellipsis] = ACTIONS(71), + [sym_em_dash] = ACTIONS(71), + [sym_en_dash] = ACTIONS(73), + [sym_backslash_escape] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(75), + [sym_symbol] = ACTIONS(71), + [anon_sym_LBRACK_CARET] = ACTIONS(77), + [anon_sym_BANG_LBRACK] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(85), + [anon_sym_TODO] = ACTIONS(87), + [anon_sym_WIP] = ACTIONS(87), + [anon_sym_NOTE] = ACTIONS(89), + [anon_sym_INFO] = ACTIONS(89), + [anon_sym_XXX] = ACTIONS(89), + [sym_fixme] = ACTIONS(71), + [sym__whitespace1] = ACTIONS(91), + [sym__newline] = ACTIONS(93), + [aux_sym__text_token1] = ACTIONS(95), + [sym__verbatim_begin] = ACTIONS(97), }, [11] = { - [sym__inline] = STATE(1065), - [sym__element] = STATE(121), - [sym_emphasis] = STATE(154), - [sym_emphasis_begin] = STATE(1244), - [sym_strong] = STATE(154), - [sym_strong_begin] = STATE(1245), - [sym_superscript] = STATE(154), - [sym_superscript_begin] = STATE(1246), - [sym_subscript] = STATE(154), - [sym_subscript_begin] = STATE(1247), - [sym_highlighted] = STATE(154), - [sym_highlighted_begin] = STATE(1248), - [sym_insert] = STATE(154), - [sym_insert_begin] = STATE(1249), - [sym_delete] = STATE(154), - [sym_delete_begin] = STATE(1250), - [sym_hard_line_break] = STATE(154), - [sym__smart_punctuation] = STATE(154), - [sym_autolink] = STATE(154), - [sym_footnote_reference] = STATE(154), - [sym_footnote_marker_begin] = STATE(1251), - [sym__image] = STATE(154), - [sym_full_reference_image] = STATE(154), - [sym_collapsed_reference_image] = STATE(154), - [sym_inline_image] = STATE(154), - [sym_image_description] = STATE(686), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(154), - [sym_full_reference_link] = STATE(154), - [sym_collapsed_reference_link] = STATE(154), - [sym_inline_link] = STATE(154), - [sym_link_text] = STATE(687), - [sym_span] = STATE(121), - [sym__bracketed_text_begin] = STATE(1271), - [sym__comment_with_spaces] = STATE(154), - [sym_raw_inline] = STATE(154), - [sym_math] = STATE(154), - [sym_verbatim] = STATE(154), - [sym__todo_highlights] = STATE(154), - [sym_todo] = STATE(154), - [sym_note] = STATE(154), - [sym__symbol_fallback] = STATE(154), - [aux_sym__text] = STATE(137), - [aux_sym__inline_repeat1] = STATE(121), - [anon_sym_LBRACE_] = ACTIONS(235), - [anon_sym__] = ACTIONS(237), - [anon_sym_LBRACE_STAR] = ACTIONS(239), - [anon_sym_STAR] = ACTIONS(241), - [anon_sym_LBRACE_CARET] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(243), - [anon_sym_LBRACE_TILDE] = ACTIONS(245), - [anon_sym_TILDE] = ACTIONS(245), - [anon_sym_LBRACE_EQ] = ACTIONS(247), - [anon_sym_LBRACE_PLUS] = ACTIONS(249), - [anon_sym_LBRACE_DASH] = ACTIONS(251), - [anon_sym_BSLASH] = ACTIONS(253), - [sym_quotation_marks] = ACTIONS(255), - [sym_ellipsis] = ACTIONS(255), - [sym_em_dash] = ACTIONS(255), - [sym_en_dash] = ACTIONS(257), - [sym_backslash_escape] = ACTIONS(257), - [anon_sym_LT] = ACTIONS(259), - [sym_symbol] = ACTIONS(255), - [anon_sym_LBRACK_CARET] = ACTIONS(261), - [anon_sym_BANG_LBRACK] = ACTIONS(263), - [anon_sym_LBRACK] = ACTIONS(265), - [anon_sym_DOLLAR] = ACTIONS(267), - [anon_sym_TODO] = ACTIONS(269), - [anon_sym_WIP] = ACTIONS(269), - [anon_sym_NOTE] = ACTIONS(271), - [anon_sym_INFO] = ACTIONS(271), - [anon_sym_XXX] = ACTIONS(271), - [sym_fixme] = ACTIONS(255), - [sym__whitespace1] = ACTIONS(273), - [sym__newline] = ACTIONS(275), - [aux_sym__text_token1] = ACTIONS(277), - [sym__verbatim_begin] = ACTIONS(279), + [sym__inline] = STATE(984), + [sym__element] = STATE(107), + [sym_emphasis] = STATE(140), + [sym_emphasis_begin] = STATE(1162), + [sym_strong] = STATE(140), + [sym_strong_begin] = STATE(1163), + [sym_superscript] = STATE(140), + [sym_superscript_begin] = STATE(1164), + [sym_subscript] = STATE(140), + [sym_subscript_begin] = STATE(1165), + [sym_highlighted] = STATE(140), + [sym_highlighted_begin] = STATE(1166), + [sym_insert] = STATE(140), + [sym_insert_begin] = STATE(1167), + [sym_delete] = STATE(140), + [sym_delete_begin] = STATE(1168), + [sym_hard_line_break] = STATE(140), + [sym__smart_punctuation] = STATE(140), + [sym_autolink] = STATE(140), + [sym_footnote_reference] = STATE(140), + [sym_footnote_marker_begin] = STATE(1169), + [sym__image] = STATE(140), + [sym_full_reference_image] = STATE(140), + [sym_collapsed_reference_image] = STATE(140), + [sym_inline_image] = STATE(140), + [sym_image_description] = STATE(625), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(140), + [sym_full_reference_link] = STATE(140), + [sym_collapsed_reference_link] = STATE(140), + [sym_inline_link] = STATE(140), + [sym_link_text] = STATE(624), + [sym_span] = STATE(107), + [sym__bracketed_text_begin] = STATE(1190), + [sym__comment_with_spaces] = STATE(140), + [sym_raw_inline] = STATE(140), + [sym_math] = STATE(140), + [sym_verbatim] = STATE(140), + [sym__todo_highlights] = STATE(140), + [sym_todo] = STATE(140), + [sym_note] = STATE(140), + [sym__symbol_fallback] = STATE(140), + [aux_sym__text] = STATE(124), + [aux_sym__inline_repeat1] = STATE(107), + [anon_sym_LBRACE_] = ACTIONS(51), + [anon_sym__] = ACTIONS(53), + [anon_sym_LBRACE_STAR] = ACTIONS(55), + [anon_sym_STAR] = ACTIONS(57), + [anon_sym_LBRACE_CARET] = ACTIONS(59), + [anon_sym_CARET] = ACTIONS(59), + [anon_sym_LBRACE_TILDE] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(61), + [anon_sym_LBRACE_EQ] = ACTIONS(63), + [anon_sym_LBRACE_PLUS] = ACTIONS(65), + [anon_sym_LBRACE_DASH] = ACTIONS(67), + [anon_sym_BSLASH] = ACTIONS(69), + [sym_quotation_marks] = ACTIONS(71), + [sym_ellipsis] = ACTIONS(71), + [sym_em_dash] = ACTIONS(71), + [sym_en_dash] = ACTIONS(73), + [sym_backslash_escape] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(75), + [sym_symbol] = ACTIONS(71), + [anon_sym_LBRACK_CARET] = ACTIONS(77), + [anon_sym_BANG_LBRACK] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(85), + [anon_sym_TODO] = ACTIONS(87), + [anon_sym_WIP] = ACTIONS(87), + [anon_sym_NOTE] = ACTIONS(89), + [anon_sym_INFO] = ACTIONS(89), + [anon_sym_XXX] = ACTIONS(89), + [sym_fixme] = ACTIONS(71), + [sym__whitespace1] = ACTIONS(91), + [sym__newline] = ACTIONS(93), + [aux_sym__text_token1] = ACTIONS(95), + [sym__verbatim_begin] = ACTIONS(97), }, [12] = { - [sym__inline] = STATE(1049), - [sym__element] = STATE(121), - [sym_emphasis] = STATE(154), - [sym_emphasis_begin] = STATE(1244), - [sym_strong] = STATE(154), - [sym_strong_begin] = STATE(1245), - [sym_superscript] = STATE(154), - [sym_superscript_begin] = STATE(1246), - [sym_subscript] = STATE(154), - [sym_subscript_begin] = STATE(1247), - [sym_highlighted] = STATE(154), - [sym_highlighted_begin] = STATE(1248), - [sym_insert] = STATE(154), - [sym_insert_begin] = STATE(1249), - [sym_delete] = STATE(154), - [sym_delete_begin] = STATE(1250), - [sym_hard_line_break] = STATE(154), - [sym__smart_punctuation] = STATE(154), - [sym_autolink] = STATE(154), - [sym_footnote_reference] = STATE(154), - [sym_footnote_marker_begin] = STATE(1251), - [sym__image] = STATE(154), - [sym_full_reference_image] = STATE(154), - [sym_collapsed_reference_image] = STATE(154), - [sym_inline_image] = STATE(154), - [sym_image_description] = STATE(686), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(154), - [sym_full_reference_link] = STATE(154), - [sym_collapsed_reference_link] = STATE(154), - [sym_inline_link] = STATE(154), - [sym_link_text] = STATE(687), - [sym_span] = STATE(121), - [sym__bracketed_text_begin] = STATE(1271), - [sym__comment_with_spaces] = STATE(154), - [sym_raw_inline] = STATE(154), - [sym_math] = STATE(154), - [sym_verbatim] = STATE(154), - [sym__todo_highlights] = STATE(154), - [sym_todo] = STATE(154), - [sym_note] = STATE(154), - [sym__symbol_fallback] = STATE(154), - [aux_sym__text] = STATE(137), - [aux_sym__inline_repeat1] = STATE(121), - [anon_sym_LBRACE_] = ACTIONS(235), - [anon_sym__] = ACTIONS(237), - [anon_sym_LBRACE_STAR] = ACTIONS(239), - [anon_sym_STAR] = ACTIONS(241), - [anon_sym_LBRACE_CARET] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(243), - [anon_sym_LBRACE_TILDE] = ACTIONS(245), - [anon_sym_TILDE] = ACTIONS(245), - [anon_sym_LBRACE_EQ] = ACTIONS(247), - [anon_sym_LBRACE_PLUS] = ACTIONS(249), - [anon_sym_LBRACE_DASH] = ACTIONS(251), - [anon_sym_BSLASH] = ACTIONS(253), - [sym_quotation_marks] = ACTIONS(255), - [sym_ellipsis] = ACTIONS(255), - [sym_em_dash] = ACTIONS(255), - [sym_en_dash] = ACTIONS(257), - [sym_backslash_escape] = ACTIONS(257), - [anon_sym_LT] = ACTIONS(259), - [sym_symbol] = ACTIONS(255), - [anon_sym_LBRACK_CARET] = ACTIONS(261), - [anon_sym_BANG_LBRACK] = ACTIONS(263), - [anon_sym_LBRACK] = ACTIONS(265), - [anon_sym_DOLLAR] = ACTIONS(267), - [anon_sym_TODO] = ACTIONS(269), - [anon_sym_WIP] = ACTIONS(269), - [anon_sym_NOTE] = ACTIONS(271), - [anon_sym_INFO] = ACTIONS(271), - [anon_sym_XXX] = ACTIONS(271), - [sym_fixme] = ACTIONS(255), - [sym__whitespace1] = ACTIONS(273), - [sym__newline] = ACTIONS(275), - [aux_sym__text_token1] = ACTIONS(277), - [sym__verbatim_begin] = ACTIONS(279), + [sym__inline] = STATE(968), + [sym__element] = STATE(107), + [sym_emphasis] = STATE(140), + [sym_emphasis_begin] = STATE(1162), + [sym_strong] = STATE(140), + [sym_strong_begin] = STATE(1163), + [sym_superscript] = STATE(140), + [sym_superscript_begin] = STATE(1164), + [sym_subscript] = STATE(140), + [sym_subscript_begin] = STATE(1165), + [sym_highlighted] = STATE(140), + [sym_highlighted_begin] = STATE(1166), + [sym_insert] = STATE(140), + [sym_insert_begin] = STATE(1167), + [sym_delete] = STATE(140), + [sym_delete_begin] = STATE(1168), + [sym_hard_line_break] = STATE(140), + [sym__smart_punctuation] = STATE(140), + [sym_autolink] = STATE(140), + [sym_footnote_reference] = STATE(140), + [sym_footnote_marker_begin] = STATE(1169), + [sym__image] = STATE(140), + [sym_full_reference_image] = STATE(140), + [sym_collapsed_reference_image] = STATE(140), + [sym_inline_image] = STATE(140), + [sym_image_description] = STATE(625), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(140), + [sym_full_reference_link] = STATE(140), + [sym_collapsed_reference_link] = STATE(140), + [sym_inline_link] = STATE(140), + [sym_link_text] = STATE(624), + [sym_span] = STATE(107), + [sym__bracketed_text_begin] = STATE(1190), + [sym__comment_with_spaces] = STATE(140), + [sym_raw_inline] = STATE(140), + [sym_math] = STATE(140), + [sym_verbatim] = STATE(140), + [sym__todo_highlights] = STATE(140), + [sym_todo] = STATE(140), + [sym_note] = STATE(140), + [sym__symbol_fallback] = STATE(140), + [aux_sym__text] = STATE(124), + [aux_sym__inline_repeat1] = STATE(107), + [anon_sym_LBRACE_] = ACTIONS(51), + [anon_sym__] = ACTIONS(53), + [anon_sym_LBRACE_STAR] = ACTIONS(55), + [anon_sym_STAR] = ACTIONS(57), + [anon_sym_LBRACE_CARET] = ACTIONS(59), + [anon_sym_CARET] = ACTIONS(59), + [anon_sym_LBRACE_TILDE] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(61), + [anon_sym_LBRACE_EQ] = ACTIONS(63), + [anon_sym_LBRACE_PLUS] = ACTIONS(65), + [anon_sym_LBRACE_DASH] = ACTIONS(67), + [anon_sym_BSLASH] = ACTIONS(69), + [sym_quotation_marks] = ACTIONS(71), + [sym_ellipsis] = ACTIONS(71), + [sym_em_dash] = ACTIONS(71), + [sym_en_dash] = ACTIONS(73), + [sym_backslash_escape] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(75), + [sym_symbol] = ACTIONS(71), + [anon_sym_LBRACK_CARET] = ACTIONS(77), + [anon_sym_BANG_LBRACK] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(85), + [anon_sym_TODO] = ACTIONS(87), + [anon_sym_WIP] = ACTIONS(87), + [anon_sym_NOTE] = ACTIONS(89), + [anon_sym_INFO] = ACTIONS(89), + [anon_sym_XXX] = ACTIONS(89), + [sym_fixme] = ACTIONS(71), + [sym__whitespace1] = ACTIONS(91), + [sym__newline] = ACTIONS(93), + [aux_sym__text_token1] = ACTIONS(95), + [sym__verbatim_begin] = ACTIONS(97), }, [13] = { - [sym__inline] = STATE(1033), - [sym__element] = STATE(121), - [sym_emphasis] = STATE(154), - [sym_emphasis_begin] = STATE(1244), - [sym_strong] = STATE(154), - [sym_strong_begin] = STATE(1245), - [sym_superscript] = STATE(154), - [sym_superscript_begin] = STATE(1246), - [sym_subscript] = STATE(154), - [sym_subscript_begin] = STATE(1247), - [sym_highlighted] = STATE(154), - [sym_highlighted_begin] = STATE(1248), - [sym_insert] = STATE(154), - [sym_insert_begin] = STATE(1249), - [sym_delete] = STATE(154), - [sym_delete_begin] = STATE(1250), - [sym_hard_line_break] = STATE(154), - [sym__smart_punctuation] = STATE(154), - [sym_autolink] = STATE(154), - [sym_footnote_reference] = STATE(154), - [sym_footnote_marker_begin] = STATE(1251), - [sym__image] = STATE(154), - [sym_full_reference_image] = STATE(154), - [sym_collapsed_reference_image] = STATE(154), - [sym_inline_image] = STATE(154), - [sym_image_description] = STATE(686), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(154), - [sym_full_reference_link] = STATE(154), - [sym_collapsed_reference_link] = STATE(154), - [sym_inline_link] = STATE(154), - [sym_link_text] = STATE(687), - [sym_span] = STATE(121), - [sym__bracketed_text_begin] = STATE(1271), - [sym__comment_with_spaces] = STATE(154), - [sym_raw_inline] = STATE(154), - [sym_math] = STATE(154), - [sym_verbatim] = STATE(154), - [sym__todo_highlights] = STATE(154), - [sym_todo] = STATE(154), - [sym_note] = STATE(154), - [sym__symbol_fallback] = STATE(154), - [aux_sym__text] = STATE(137), - [aux_sym__inline_repeat1] = STATE(121), - [anon_sym_LBRACE_] = ACTIONS(235), - [anon_sym__] = ACTIONS(237), - [anon_sym_LBRACE_STAR] = ACTIONS(239), - [anon_sym_STAR] = ACTIONS(241), - [anon_sym_LBRACE_CARET] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(243), - [anon_sym_LBRACE_TILDE] = ACTIONS(245), - [anon_sym_TILDE] = ACTIONS(245), - [anon_sym_LBRACE_EQ] = ACTIONS(247), - [anon_sym_LBRACE_PLUS] = ACTIONS(249), - [anon_sym_LBRACE_DASH] = ACTIONS(251), - [anon_sym_BSLASH] = ACTIONS(253), - [sym_quotation_marks] = ACTIONS(255), - [sym_ellipsis] = ACTIONS(255), - [sym_em_dash] = ACTIONS(255), - [sym_en_dash] = ACTIONS(257), - [sym_backslash_escape] = ACTIONS(257), - [anon_sym_LT] = ACTIONS(259), - [sym_symbol] = ACTIONS(255), - [anon_sym_LBRACK_CARET] = ACTIONS(261), - [anon_sym_BANG_LBRACK] = ACTIONS(263), - [anon_sym_LBRACK] = ACTIONS(265), - [anon_sym_DOLLAR] = ACTIONS(267), - [anon_sym_TODO] = ACTIONS(269), - [anon_sym_WIP] = ACTIONS(269), - [anon_sym_NOTE] = ACTIONS(271), - [anon_sym_INFO] = ACTIONS(271), - [anon_sym_XXX] = ACTIONS(271), - [sym_fixme] = ACTIONS(255), - [sym__whitespace1] = ACTIONS(273), - [sym__newline] = ACTIONS(275), - [aux_sym__text_token1] = ACTIONS(277), - [sym__verbatim_begin] = ACTIONS(279), + [sym__inline] = STATE(952), + [sym__element] = STATE(107), + [sym_emphasis] = STATE(140), + [sym_emphasis_begin] = STATE(1162), + [sym_strong] = STATE(140), + [sym_strong_begin] = STATE(1163), + [sym_superscript] = STATE(140), + [sym_superscript_begin] = STATE(1164), + [sym_subscript] = STATE(140), + [sym_subscript_begin] = STATE(1165), + [sym_highlighted] = STATE(140), + [sym_highlighted_begin] = STATE(1166), + [sym_insert] = STATE(140), + [sym_insert_begin] = STATE(1167), + [sym_delete] = STATE(140), + [sym_delete_begin] = STATE(1168), + [sym_hard_line_break] = STATE(140), + [sym__smart_punctuation] = STATE(140), + [sym_autolink] = STATE(140), + [sym_footnote_reference] = STATE(140), + [sym_footnote_marker_begin] = STATE(1169), + [sym__image] = STATE(140), + [sym_full_reference_image] = STATE(140), + [sym_collapsed_reference_image] = STATE(140), + [sym_inline_image] = STATE(140), + [sym_image_description] = STATE(625), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(140), + [sym_full_reference_link] = STATE(140), + [sym_collapsed_reference_link] = STATE(140), + [sym_inline_link] = STATE(140), + [sym_link_text] = STATE(624), + [sym_span] = STATE(107), + [sym__bracketed_text_begin] = STATE(1190), + [sym__comment_with_spaces] = STATE(140), + [sym_raw_inline] = STATE(140), + [sym_math] = STATE(140), + [sym_verbatim] = STATE(140), + [sym__todo_highlights] = STATE(140), + [sym_todo] = STATE(140), + [sym_note] = STATE(140), + [sym__symbol_fallback] = STATE(140), + [aux_sym__text] = STATE(124), + [aux_sym__inline_repeat1] = STATE(107), + [anon_sym_LBRACE_] = ACTIONS(51), + [anon_sym__] = ACTIONS(53), + [anon_sym_LBRACE_STAR] = ACTIONS(55), + [anon_sym_STAR] = ACTIONS(57), + [anon_sym_LBRACE_CARET] = ACTIONS(59), + [anon_sym_CARET] = ACTIONS(59), + [anon_sym_LBRACE_TILDE] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(61), + [anon_sym_LBRACE_EQ] = ACTIONS(63), + [anon_sym_LBRACE_PLUS] = ACTIONS(65), + [anon_sym_LBRACE_DASH] = ACTIONS(67), + [anon_sym_BSLASH] = ACTIONS(69), + [sym_quotation_marks] = ACTIONS(71), + [sym_ellipsis] = ACTIONS(71), + [sym_em_dash] = ACTIONS(71), + [sym_en_dash] = ACTIONS(73), + [sym_backslash_escape] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(75), + [sym_symbol] = ACTIONS(71), + [anon_sym_LBRACK_CARET] = ACTIONS(77), + [anon_sym_BANG_LBRACK] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(85), + [anon_sym_TODO] = ACTIONS(87), + [anon_sym_WIP] = ACTIONS(87), + [anon_sym_NOTE] = ACTIONS(89), + [anon_sym_INFO] = ACTIONS(89), + [anon_sym_XXX] = ACTIONS(89), + [sym_fixme] = ACTIONS(71), + [sym__whitespace1] = ACTIONS(91), + [sym__newline] = ACTIONS(93), + [aux_sym__text_token1] = ACTIONS(95), + [sym__verbatim_begin] = ACTIONS(97), }, [14] = { - [sym__element] = STATE(14), - [sym_emphasis] = STATE(149), - [sym_emphasis_begin] = STATE(1199), - [sym_strong] = STATE(149), - [sym_strong_begin] = STATE(1200), - [sym_superscript] = STATE(149), - [sym_superscript_begin] = STATE(1201), - [sym_subscript] = STATE(149), - [sym_subscript_begin] = STATE(1202), - [sym_highlighted] = STATE(149), - [sym_highlighted_begin] = STATE(1203), - [sym_insert] = STATE(149), - [sym_insert_begin] = STATE(1204), - [sym_delete] = STATE(149), - [sym_delete_begin] = STATE(1205), - [sym_hard_line_break] = STATE(149), - [sym__smart_punctuation] = STATE(149), - [sym_autolink] = STATE(149), - [sym_footnote_reference] = STATE(149), - [sym_footnote_marker_begin] = STATE(1206), - [sym__image] = STATE(149), - [sym_full_reference_image] = STATE(149), - [sym_collapsed_reference_image] = STATE(149), - [sym_inline_image] = STATE(149), - [sym_image_description] = STATE(714), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(149), - [sym_full_reference_link] = STATE(149), - [sym_collapsed_reference_link] = STATE(149), - [sym_inline_link] = STATE(149), - [sym_link_text] = STATE(710), - [sym_span] = STATE(14), - [sym__bracketed_text_begin] = STATE(1266), - [sym__comment_with_spaces] = STATE(149), - [sym_raw_inline] = STATE(149), - [sym_math] = STATE(149), - [sym_verbatim] = STATE(149), - [sym__todo_highlights] = STATE(149), - [sym_todo] = STATE(149), - [sym_note] = STATE(149), - [sym__symbol_fallback] = STATE(149), - [aux_sym__text] = STATE(142), - [aux_sym__inline_repeat1] = STATE(14), - [anon_sym_LBRACE_] = ACTIONS(285), - [anon_sym__] = ACTIONS(288), - [anon_sym_LBRACE_STAR] = ACTIONS(291), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_LBRACE_CARET] = ACTIONS(297), - [anon_sym_CARET] = ACTIONS(297), - [anon_sym_LBRACE_TILDE] = ACTIONS(300), - [anon_sym_TILDE] = ACTIONS(300), - [anon_sym_LBRACE_EQ] = ACTIONS(303), - [anon_sym_LBRACE_PLUS] = ACTIONS(306), - [anon_sym_LBRACE_DASH] = ACTIONS(309), - [anon_sym_BSLASH] = ACTIONS(312), - [sym_quotation_marks] = ACTIONS(315), - [sym_ellipsis] = ACTIONS(315), - [sym_em_dash] = ACTIONS(315), - [sym_en_dash] = ACTIONS(318), - [sym_backslash_escape] = ACTIONS(318), - [anon_sym_LT] = ACTIONS(321), - [sym_symbol] = ACTIONS(315), - [anon_sym_LBRACK_CARET] = ACTIONS(324), - [anon_sym_BANG_LBRACK] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(330), - [anon_sym_DOLLAR] = ACTIONS(333), - [anon_sym_TODO] = ACTIONS(336), - [anon_sym_WIP] = ACTIONS(336), - [anon_sym_NOTE] = ACTIONS(339), - [anon_sym_INFO] = ACTIONS(339), - [anon_sym_XXX] = ACTIONS(339), - [sym_fixme] = ACTIONS(315), - [sym__whitespace1] = ACTIONS(342), - [sym__newline] = ACTIONS(345), - [aux_sym__text_token1] = ACTIONS(348), - [sym__verbatim_begin] = ACTIONS(351), - [sym_highlighted_end] = ACTIONS(354), + [sym__element] = STATE(47), + [sym_emphasis] = STATE(136), + [sym_emphasis_begin] = STATE(1122), + [sym_strong] = STATE(136), + [sym_strong_begin] = STATE(1123), + [sym_superscript] = STATE(136), + [sym_superscript_begin] = STATE(1124), + [sym_subscript] = STATE(136), + [sym_subscript_begin] = STATE(1125), + [sym_highlighted] = STATE(136), + [sym_highlighted_begin] = STATE(1126), + [sym_insert] = STATE(136), + [sym_insert_begin] = STATE(1127), + [sym_delete] = STATE(136), + [sym_delete_begin] = STATE(1128), + [sym_hard_line_break] = STATE(136), + [sym__smart_punctuation] = STATE(136), + [sym_autolink] = STATE(136), + [sym_footnote_reference] = STATE(136), + [sym_footnote_marker_begin] = STATE(1129), + [sym__image] = STATE(136), + [sym_full_reference_image] = STATE(136), + [sym_collapsed_reference_image] = STATE(136), + [sym_inline_image] = STATE(136), + [sym_image_description] = STATE(651), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(136), + [sym_full_reference_link] = STATE(136), + [sym_collapsed_reference_link] = STATE(136), + [sym_inline_link] = STATE(136), + [sym_link_text] = STATE(650), + [sym_span] = STATE(47), + [sym__bracketed_text_begin] = STATE(1186), + [sym__comment_with_spaces] = STATE(136), + [sym_raw_inline] = STATE(136), + [sym_math] = STATE(136), + [sym_verbatim] = STATE(136), + [sym__todo_highlights] = STATE(136), + [sym_todo] = STATE(136), + [sym_note] = STATE(136), + [sym__symbol_fallback] = STATE(136), + [aux_sym__text] = STATE(130), + [aux_sym__inline_repeat1] = STATE(47), + [anon_sym_LBRACE_] = ACTIONS(319), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_STAR] = ACTIONS(323), + [anon_sym_STAR] = ACTIONS(325), + [anon_sym_LBRACE_CARET] = ACTIONS(327), + [anon_sym_CARET] = ACTIONS(327), + [anon_sym_LBRACE_TILDE] = ACTIONS(329), + [anon_sym_TILDE] = ACTIONS(329), + [anon_sym_LBRACE_EQ] = ACTIONS(331), + [anon_sym_LBRACE_PLUS] = ACTIONS(333), + [anon_sym_LBRACE_DASH] = ACTIONS(335), + [anon_sym_BSLASH] = ACTIONS(337), + [sym_quotation_marks] = ACTIONS(339), + [sym_ellipsis] = ACTIONS(339), + [sym_em_dash] = ACTIONS(339), + [sym_en_dash] = ACTIONS(341), + [sym_backslash_escape] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [sym_symbol] = ACTIONS(339), + [anon_sym_LBRACK_CARET] = ACTIONS(345), + [anon_sym_BANG_LBRACK] = ACTIONS(347), + [anon_sym_LBRACK] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_DOLLAR] = ACTIONS(353), + [anon_sym_TODO] = ACTIONS(355), + [anon_sym_WIP] = ACTIONS(355), + [anon_sym_NOTE] = ACTIONS(357), + [anon_sym_INFO] = ACTIONS(357), + [anon_sym_XXX] = ACTIONS(357), + [sym_fixme] = ACTIONS(339), + [sym__whitespace1] = ACTIONS(359), + [sym__newline] = ACTIONS(361), + [aux_sym__text_token1] = ACTIONS(363), + [sym__verbatim_begin] = ACTIONS(365), + [sym_highlighted_end] = ACTIONS(367), }, [15] = { - [sym__inline] = STATE(1009), - [sym__element] = STATE(7), - [sym_emphasis] = STATE(153), - [sym_emphasis_begin] = STATE(1208), - [sym_strong] = STATE(153), - [sym_strong_begin] = STATE(1209), - [sym_superscript] = STATE(153), - [sym_superscript_begin] = STATE(1210), - [sym_subscript] = STATE(153), - [sym_subscript_begin] = STATE(1211), - [sym_highlighted] = STATE(153), - [sym_highlighted_begin] = STATE(1212), - [sym_insert] = STATE(153), - [sym_insert_begin] = STATE(1213), - [sym_delete] = STATE(153), - [sym_delete_begin] = STATE(1214), - [sym_hard_line_break] = STATE(153), - [sym__smart_punctuation] = STATE(153), - [sym_autolink] = STATE(153), - [sym_footnote_reference] = STATE(153), - [sym_footnote_marker_begin] = STATE(1215), - [sym__image] = STATE(153), - [sym_full_reference_image] = STATE(153), - [sym_collapsed_reference_image] = STATE(153), - [sym_inline_image] = STATE(153), - [sym_image_description] = STATE(707), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(153), - [sym_full_reference_link] = STATE(153), - [sym_collapsed_reference_link] = STATE(153), - [sym_inline_link] = STATE(153), - [sym_link_text] = STATE(705), - [sym_span] = STATE(7), - [sym__bracketed_text_begin] = STATE(1267), - [sym__comment_with_spaces] = STATE(153), - [sym_raw_inline] = STATE(153), - [sym_math] = STATE(153), - [sym_verbatim] = STATE(153), - [sym__todo_highlights] = STATE(153), - [sym_todo] = STATE(153), - [sym_note] = STATE(153), - [sym__symbol_fallback] = STATE(153), - [aux_sym__text] = STATE(134), - [aux_sym__inline_repeat1] = STATE(7), - [anon_sym_LBRACE_] = ACTIONS(97), - [anon_sym__] = ACTIONS(99), - [anon_sym_LBRACE_STAR] = ACTIONS(101), - [anon_sym_STAR] = ACTIONS(103), - [anon_sym_LBRACE_CARET] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [anon_sym_LBRACE_TILDE] = ACTIONS(107), - [anon_sym_TILDE] = ACTIONS(107), - [anon_sym_LBRACE_EQ] = ACTIONS(109), - [anon_sym_LBRACE_PLUS] = ACTIONS(111), - [anon_sym_LBRACE_DASH] = ACTIONS(113), - [anon_sym_BSLASH] = ACTIONS(115), - [sym_quotation_marks] = ACTIONS(117), - [sym_ellipsis] = ACTIONS(117), - [sym_em_dash] = ACTIONS(117), - [sym_en_dash] = ACTIONS(119), - [sym_backslash_escape] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [sym_symbol] = ACTIONS(117), - [anon_sym_LBRACK_CARET] = ACTIONS(123), - [anon_sym_BANG_LBRACK] = ACTIONS(125), - [anon_sym_LBRACK] = ACTIONS(127), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_TODO] = ACTIONS(131), - [anon_sym_WIP] = ACTIONS(131), - [anon_sym_NOTE] = ACTIONS(133), - [anon_sym_INFO] = ACTIONS(133), - [anon_sym_XXX] = ACTIONS(133), - [sym_fixme] = ACTIONS(117), - [sym__whitespace1] = ACTIONS(135), - [sym__newline] = ACTIONS(137), - [aux_sym__text_token1] = ACTIONS(139), - [sym__verbatim_begin] = ACTIONS(141), + [sym__element] = STATE(15), + [sym_emphasis] = STATE(137), + [sym_emphasis_begin] = STATE(1112), + [sym_strong] = STATE(137), + [sym_strong_begin] = STATE(1113), + [sym_superscript] = STATE(137), + [sym_superscript_begin] = STATE(1114), + [sym_subscript] = STATE(137), + [sym_subscript_begin] = STATE(1115), + [sym_highlighted] = STATE(137), + [sym_highlighted_begin] = STATE(1116), + [sym_insert] = STATE(137), + [sym_insert_begin] = STATE(1117), + [sym_delete] = STATE(137), + [sym_delete_begin] = STATE(1118), + [sym_hard_line_break] = STATE(137), + [sym__smart_punctuation] = STATE(137), + [sym_autolink] = STATE(137), + [sym_footnote_reference] = STATE(137), + [sym_footnote_marker_begin] = STATE(1119), + [sym__image] = STATE(137), + [sym_full_reference_image] = STATE(137), + [sym_collapsed_reference_image] = STATE(137), + [sym_inline_image] = STATE(137), + [sym_image_description] = STATE(636), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(137), + [sym_full_reference_link] = STATE(137), + [sym_collapsed_reference_link] = STATE(137), + [sym_inline_link] = STATE(137), + [sym_link_text] = STATE(647), + [sym_span] = STATE(15), + [sym__bracketed_text_begin] = STATE(1185), + [sym__comment_with_spaces] = STATE(137), + [sym_raw_inline] = STATE(137), + [sym_math] = STATE(137), + [sym_verbatim] = STATE(137), + [sym__todo_highlights] = STATE(137), + [sym_todo] = STATE(137), + [sym_note] = STATE(137), + [sym__symbol_fallback] = STATE(137), + [aux_sym__text] = STATE(122), + [aux_sym__inline_repeat1] = STATE(15), + [anon_sym_LBRACE_] = ACTIONS(369), + [anon_sym__] = ACTIONS(372), + [anon_sym_LBRACE_STAR] = ACTIONS(375), + [anon_sym_STAR] = ACTIONS(378), + [anon_sym_LBRACE_CARET] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(381), + [anon_sym_LBRACE_TILDE] = ACTIONS(384), + [anon_sym_TILDE] = ACTIONS(384), + [anon_sym_LBRACE_EQ] = ACTIONS(387), + [anon_sym_LBRACE_PLUS] = ACTIONS(390), + [anon_sym_LBRACE_DASH] = ACTIONS(393), + [anon_sym_BSLASH] = ACTIONS(396), + [sym_quotation_marks] = ACTIONS(399), + [sym_ellipsis] = ACTIONS(399), + [sym_em_dash] = ACTIONS(399), + [sym_en_dash] = ACTIONS(402), + [sym_backslash_escape] = ACTIONS(402), + [anon_sym_LT] = ACTIONS(405), + [sym_symbol] = ACTIONS(399), + [anon_sym_LBRACK_CARET] = ACTIONS(408), + [anon_sym_BANG_LBRACK] = ACTIONS(411), + [anon_sym_LBRACK] = ACTIONS(414), + [anon_sym_LPAREN] = ACTIONS(417), + [anon_sym_DOLLAR] = ACTIONS(420), + [anon_sym_TODO] = ACTIONS(423), + [anon_sym_WIP] = ACTIONS(423), + [anon_sym_NOTE] = ACTIONS(426), + [anon_sym_INFO] = ACTIONS(426), + [anon_sym_XXX] = ACTIONS(426), + [sym_fixme] = ACTIONS(399), + [sym__whitespace1] = ACTIONS(429), + [sym__newline] = ACTIONS(432), + [aux_sym__text_token1] = ACTIONS(435), + [sym__verbatim_begin] = ACTIONS(438), + [sym_subscript_end] = ACTIONS(317), }, [16] = { - [sym__inline] = STATE(1017), - [sym__element] = STATE(121), - [sym_emphasis] = STATE(154), - [sym_emphasis_begin] = STATE(1244), - [sym_strong] = STATE(154), - [sym_strong_begin] = STATE(1245), - [sym_superscript] = STATE(154), - [sym_superscript_begin] = STATE(1246), - [sym_subscript] = STATE(154), - [sym_subscript_begin] = STATE(1247), - [sym_highlighted] = STATE(154), - [sym_highlighted_begin] = STATE(1248), - [sym_insert] = STATE(154), - [sym_insert_begin] = STATE(1249), - [sym_delete] = STATE(154), - [sym_delete_begin] = STATE(1250), - [sym_hard_line_break] = STATE(154), - [sym__smart_punctuation] = STATE(154), - [sym_autolink] = STATE(154), - [sym_footnote_reference] = STATE(154), - [sym_footnote_marker_begin] = STATE(1251), - [sym__image] = STATE(154), - [sym_full_reference_image] = STATE(154), - [sym_collapsed_reference_image] = STATE(154), - [sym_inline_image] = STATE(154), - [sym_image_description] = STATE(686), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(154), - [sym_full_reference_link] = STATE(154), - [sym_collapsed_reference_link] = STATE(154), - [sym_inline_link] = STATE(154), - [sym_link_text] = STATE(687), - [sym_span] = STATE(121), - [sym__bracketed_text_begin] = STATE(1271), - [sym__comment_with_spaces] = STATE(154), - [sym_raw_inline] = STATE(154), - [sym_math] = STATE(154), - [sym_verbatim] = STATE(154), - [sym__todo_highlights] = STATE(154), - [sym_todo] = STATE(154), - [sym_note] = STATE(154), - [sym__symbol_fallback] = STATE(154), - [aux_sym__text] = STATE(137), - [aux_sym__inline_repeat1] = STATE(121), - [anon_sym_LBRACE_] = ACTIONS(235), - [anon_sym__] = ACTIONS(237), - [anon_sym_LBRACE_STAR] = ACTIONS(239), - [anon_sym_STAR] = ACTIONS(241), - [anon_sym_LBRACE_CARET] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(243), - [anon_sym_LBRACE_TILDE] = ACTIONS(245), - [anon_sym_TILDE] = ACTIONS(245), - [anon_sym_LBRACE_EQ] = ACTIONS(247), - [anon_sym_LBRACE_PLUS] = ACTIONS(249), - [anon_sym_LBRACE_DASH] = ACTIONS(251), - [anon_sym_BSLASH] = ACTIONS(253), - [sym_quotation_marks] = ACTIONS(255), - [sym_ellipsis] = ACTIONS(255), - [sym_em_dash] = ACTIONS(255), - [sym_en_dash] = ACTIONS(257), - [sym_backslash_escape] = ACTIONS(257), - [anon_sym_LT] = ACTIONS(259), - [sym_symbol] = ACTIONS(255), - [anon_sym_LBRACK_CARET] = ACTIONS(261), - [anon_sym_BANG_LBRACK] = ACTIONS(263), - [anon_sym_LBRACK] = ACTIONS(265), - [anon_sym_DOLLAR] = ACTIONS(267), - [anon_sym_TODO] = ACTIONS(269), - [anon_sym_WIP] = ACTIONS(269), - [anon_sym_NOTE] = ACTIONS(271), - [anon_sym_INFO] = ACTIONS(271), - [anon_sym_XXX] = ACTIONS(271), - [sym_fixme] = ACTIONS(255), - [sym__whitespace1] = ACTIONS(273), - [sym__newline] = ACTIONS(275), - [aux_sym__text_token1] = ACTIONS(277), - [sym__verbatim_begin] = ACTIONS(279), + [sym__inline] = STATE(936), + [sym__element] = STATE(107), + [sym_emphasis] = STATE(140), + [sym_emphasis_begin] = STATE(1162), + [sym_strong] = STATE(140), + [sym_strong_begin] = STATE(1163), + [sym_superscript] = STATE(140), + [sym_superscript_begin] = STATE(1164), + [sym_subscript] = STATE(140), + [sym_subscript_begin] = STATE(1165), + [sym_highlighted] = STATE(140), + [sym_highlighted_begin] = STATE(1166), + [sym_insert] = STATE(140), + [sym_insert_begin] = STATE(1167), + [sym_delete] = STATE(140), + [sym_delete_begin] = STATE(1168), + [sym_hard_line_break] = STATE(140), + [sym__smart_punctuation] = STATE(140), + [sym_autolink] = STATE(140), + [sym_footnote_reference] = STATE(140), + [sym_footnote_marker_begin] = STATE(1169), + [sym__image] = STATE(140), + [sym_full_reference_image] = STATE(140), + [sym_collapsed_reference_image] = STATE(140), + [sym_inline_image] = STATE(140), + [sym_image_description] = STATE(625), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(140), + [sym_full_reference_link] = STATE(140), + [sym_collapsed_reference_link] = STATE(140), + [sym_inline_link] = STATE(140), + [sym_link_text] = STATE(624), + [sym_span] = STATE(107), + [sym__bracketed_text_begin] = STATE(1190), + [sym__comment_with_spaces] = STATE(140), + [sym_raw_inline] = STATE(140), + [sym_math] = STATE(140), + [sym_verbatim] = STATE(140), + [sym__todo_highlights] = STATE(140), + [sym_todo] = STATE(140), + [sym_note] = STATE(140), + [sym__symbol_fallback] = STATE(140), + [aux_sym__text] = STATE(124), + [aux_sym__inline_repeat1] = STATE(107), + [anon_sym_LBRACE_] = ACTIONS(51), + [anon_sym__] = ACTIONS(53), + [anon_sym_LBRACE_STAR] = ACTIONS(55), + [anon_sym_STAR] = ACTIONS(57), + [anon_sym_LBRACE_CARET] = ACTIONS(59), + [anon_sym_CARET] = ACTIONS(59), + [anon_sym_LBRACE_TILDE] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(61), + [anon_sym_LBRACE_EQ] = ACTIONS(63), + [anon_sym_LBRACE_PLUS] = ACTIONS(65), + [anon_sym_LBRACE_DASH] = ACTIONS(67), + [anon_sym_BSLASH] = ACTIONS(69), + [sym_quotation_marks] = ACTIONS(71), + [sym_ellipsis] = ACTIONS(71), + [sym_em_dash] = ACTIONS(71), + [sym_en_dash] = ACTIONS(73), + [sym_backslash_escape] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(75), + [sym_symbol] = ACTIONS(71), + [anon_sym_LBRACK_CARET] = ACTIONS(77), + [anon_sym_BANG_LBRACK] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(85), + [anon_sym_TODO] = ACTIONS(87), + [anon_sym_WIP] = ACTIONS(87), + [anon_sym_NOTE] = ACTIONS(89), + [anon_sym_INFO] = ACTIONS(89), + [anon_sym_XXX] = ACTIONS(89), + [sym_fixme] = ACTIONS(71), + [sym__whitespace1] = ACTIONS(91), + [sym__newline] = ACTIONS(93), + [aux_sym__text_token1] = ACTIONS(95), + [sym__verbatim_begin] = ACTIONS(97), }, [17] = { - [sym__inline] = STATE(1001), - [sym__element] = STATE(121), - [sym_emphasis] = STATE(154), - [sym_emphasis_begin] = STATE(1244), - [sym_strong] = STATE(154), - [sym_strong_begin] = STATE(1245), - [sym_superscript] = STATE(154), - [sym_superscript_begin] = STATE(1246), - [sym_subscript] = STATE(154), - [sym_subscript_begin] = STATE(1247), - [sym_highlighted] = STATE(154), - [sym_highlighted_begin] = STATE(1248), - [sym_insert] = STATE(154), - [sym_insert_begin] = STATE(1249), - [sym_delete] = STATE(154), - [sym_delete_begin] = STATE(1250), - [sym_hard_line_break] = STATE(154), - [sym__smart_punctuation] = STATE(154), - [sym_autolink] = STATE(154), - [sym_footnote_reference] = STATE(154), - [sym_footnote_marker_begin] = STATE(1251), - [sym__image] = STATE(154), - [sym_full_reference_image] = STATE(154), - [sym_collapsed_reference_image] = STATE(154), - [sym_inline_image] = STATE(154), - [sym_image_description] = STATE(686), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(154), - [sym_full_reference_link] = STATE(154), - [sym_collapsed_reference_link] = STATE(154), - [sym_inline_link] = STATE(154), - [sym_link_text] = STATE(687), - [sym_span] = STATE(121), - [sym__bracketed_text_begin] = STATE(1271), - [sym__comment_with_spaces] = STATE(154), - [sym_raw_inline] = STATE(154), - [sym_math] = STATE(154), - [sym_verbatim] = STATE(154), - [sym__todo_highlights] = STATE(154), - [sym_todo] = STATE(154), - [sym_note] = STATE(154), - [sym__symbol_fallback] = STATE(154), - [aux_sym__text] = STATE(137), - [aux_sym__inline_repeat1] = STATE(121), - [anon_sym_LBRACE_] = ACTIONS(235), - [anon_sym__] = ACTIONS(237), - [anon_sym_LBRACE_STAR] = ACTIONS(239), - [anon_sym_STAR] = ACTIONS(241), - [anon_sym_LBRACE_CARET] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(243), - [anon_sym_LBRACE_TILDE] = ACTIONS(245), - [anon_sym_TILDE] = ACTIONS(245), - [anon_sym_LBRACE_EQ] = ACTIONS(247), - [anon_sym_LBRACE_PLUS] = ACTIONS(249), - [anon_sym_LBRACE_DASH] = ACTIONS(251), - [anon_sym_BSLASH] = ACTIONS(253), - [sym_quotation_marks] = ACTIONS(255), - [sym_ellipsis] = ACTIONS(255), - [sym_em_dash] = ACTIONS(255), - [sym_en_dash] = ACTIONS(257), - [sym_backslash_escape] = ACTIONS(257), - [anon_sym_LT] = ACTIONS(259), - [sym_symbol] = ACTIONS(255), - [anon_sym_LBRACK_CARET] = ACTIONS(261), - [anon_sym_BANG_LBRACK] = ACTIONS(263), - [anon_sym_LBRACK] = ACTIONS(265), - [anon_sym_DOLLAR] = ACTIONS(267), - [anon_sym_TODO] = ACTIONS(269), - [anon_sym_WIP] = ACTIONS(269), - [anon_sym_NOTE] = ACTIONS(271), - [anon_sym_INFO] = ACTIONS(271), - [anon_sym_XXX] = ACTIONS(271), - [sym_fixme] = ACTIONS(255), - [sym__whitespace1] = ACTIONS(273), - [sym__newline] = ACTIONS(275), - [aux_sym__text_token1] = ACTIONS(277), - [sym__verbatim_begin] = ACTIONS(279), + [sym__inline] = STATE(916), + [sym__element] = STATE(71), + [sym_emphasis] = STATE(132), + [sym_emphasis_begin] = STATE(1152), + [sym_strong] = STATE(132), + [sym_strong_begin] = STATE(1153), + [sym_superscript] = STATE(132), + [sym_superscript_begin] = STATE(1154), + [sym_subscript] = STATE(132), + [sym_subscript_begin] = STATE(1155), + [sym_highlighted] = STATE(132), + [sym_highlighted_begin] = STATE(1156), + [sym_insert] = STATE(132), + [sym_insert_begin] = STATE(1157), + [sym_delete] = STATE(132), + [sym_delete_begin] = STATE(1158), + [sym_hard_line_break] = STATE(132), + [sym__smart_punctuation] = STATE(132), + [sym_autolink] = STATE(132), + [sym_footnote_reference] = STATE(132), + [sym_footnote_marker_begin] = STATE(1159), + [sym__image] = STATE(132), + [sym_full_reference_image] = STATE(132), + [sym_collapsed_reference_image] = STATE(132), + [sym_inline_image] = STATE(132), + [sym_image_description] = STATE(633), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(132), + [sym_full_reference_link] = STATE(132), + [sym_collapsed_reference_link] = STATE(132), + [sym_inline_link] = STATE(132), + [sym_link_text] = STATE(631), + [sym_span] = STATE(71), + [sym__bracketed_text_begin] = STATE(1189), + [sym__comment_with_spaces] = STATE(132), + [sym_raw_inline] = STATE(132), + [sym_math] = STATE(132), + [sym_verbatim] = STATE(132), + [sym__todo_highlights] = STATE(132), + [sym_todo] = STATE(132), + [sym_note] = STATE(132), + [sym__symbol_fallback] = STATE(132), + [aux_sym__text] = STATE(128), + [aux_sym__inline_repeat1] = STATE(71), + [anon_sym_LBRACE_] = ACTIONS(441), + [anon_sym__] = ACTIONS(443), + [anon_sym_LBRACE_STAR] = ACTIONS(445), + [anon_sym_STAR] = ACTIONS(447), + [anon_sym_LBRACE_CARET] = ACTIONS(449), + [anon_sym_CARET] = ACTIONS(449), + [anon_sym_LBRACE_TILDE] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_LBRACE_EQ] = ACTIONS(453), + [anon_sym_LBRACE_PLUS] = ACTIONS(455), + [anon_sym_LBRACE_DASH] = ACTIONS(457), + [anon_sym_BSLASH] = ACTIONS(459), + [sym_quotation_marks] = ACTIONS(461), + [sym_ellipsis] = ACTIONS(461), + [sym_em_dash] = ACTIONS(461), + [sym_en_dash] = ACTIONS(463), + [sym_backslash_escape] = ACTIONS(463), + [anon_sym_LT] = ACTIONS(465), + [sym_symbol] = ACTIONS(461), + [anon_sym_LBRACK_CARET] = ACTIONS(467), + [anon_sym_BANG_LBRACK] = ACTIONS(469), + [anon_sym_LBRACK] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(473), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_TODO] = ACTIONS(477), + [anon_sym_WIP] = ACTIONS(477), + [anon_sym_NOTE] = ACTIONS(479), + [anon_sym_INFO] = ACTIONS(479), + [anon_sym_XXX] = ACTIONS(479), + [sym_fixme] = ACTIONS(461), + [sym__whitespace1] = ACTIONS(481), + [sym__newline] = ACTIONS(483), + [aux_sym__text_token1] = ACTIONS(485), + [sym__verbatim_begin] = ACTIONS(487), }, [18] = { - [sym__inline] = STATE(981), - [sym__element] = STATE(84), - [sym_emphasis] = STATE(146), - [sym_emphasis_begin] = STATE(1226), - [sym_strong] = STATE(146), - [sym_strong_begin] = STATE(1227), - [sym_superscript] = STATE(146), - [sym_superscript_begin] = STATE(1228), - [sym_subscript] = STATE(146), - [sym_subscript_begin] = STATE(1229), - [sym_highlighted] = STATE(146), - [sym_highlighted_begin] = STATE(1230), - [sym_insert] = STATE(146), - [sym_insert_begin] = STATE(1231), - [sym_delete] = STATE(146), - [sym_delete_begin] = STATE(1232), - [sym_hard_line_break] = STATE(146), - [sym__smart_punctuation] = STATE(146), - [sym_autolink] = STATE(146), - [sym_footnote_reference] = STATE(146), - [sym_footnote_marker_begin] = STATE(1233), - [sym__image] = STATE(146), - [sym_full_reference_image] = STATE(146), - [sym_collapsed_reference_image] = STATE(146), - [sym_inline_image] = STATE(146), - [sym_image_description] = STATE(694), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(146), - [sym_full_reference_link] = STATE(146), - [sym_collapsed_reference_link] = STATE(146), - [sym_inline_link] = STATE(146), - [sym_link_text] = STATE(693), - [sym_span] = STATE(84), - [sym__bracketed_text_begin] = STATE(1269), - [sym__comment_with_spaces] = STATE(146), - [sym_raw_inline] = STATE(146), - [sym_math] = STATE(146), - [sym_verbatim] = STATE(146), - [sym__todo_highlights] = STATE(146), - [sym_todo] = STATE(146), - [sym_note] = STATE(146), - [sym__symbol_fallback] = STATE(146), - [aux_sym__text] = STATE(141), - [aux_sym__inline_repeat1] = STATE(84), - [anon_sym_LBRACE_] = ACTIONS(356), - [anon_sym__] = ACTIONS(358), - [anon_sym_LBRACE_STAR] = ACTIONS(360), - [anon_sym_STAR] = ACTIONS(362), - [anon_sym_LBRACE_CARET] = ACTIONS(364), - [anon_sym_CARET] = ACTIONS(364), - [anon_sym_LBRACE_TILDE] = ACTIONS(366), - [anon_sym_TILDE] = ACTIONS(366), - [anon_sym_LBRACE_EQ] = ACTIONS(368), - [anon_sym_LBRACE_PLUS] = ACTIONS(370), - [anon_sym_LBRACE_DASH] = ACTIONS(372), - [anon_sym_BSLASH] = ACTIONS(374), - [sym_quotation_marks] = ACTIONS(376), - [sym_ellipsis] = ACTIONS(376), - [sym_em_dash] = ACTIONS(376), - [sym_en_dash] = ACTIONS(378), - [sym_backslash_escape] = ACTIONS(378), - [anon_sym_LT] = ACTIONS(380), - [sym_symbol] = ACTIONS(376), - [anon_sym_LBRACK_CARET] = ACTIONS(382), - [anon_sym_BANG_LBRACK] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(386), - [anon_sym_DOLLAR] = ACTIONS(388), - [anon_sym_TODO] = ACTIONS(390), - [anon_sym_WIP] = ACTIONS(390), - [anon_sym_NOTE] = ACTIONS(392), - [anon_sym_INFO] = ACTIONS(392), - [anon_sym_XXX] = ACTIONS(392), - [sym_fixme] = ACTIONS(376), - [sym__whitespace1] = ACTIONS(394), - [sym__newline] = ACTIONS(396), - [aux_sym__text_token1] = ACTIONS(398), - [sym__verbatim_begin] = ACTIONS(400), + [sym__inline] = STATE(914), + [sym__element] = STATE(65), + [sym_emphasis] = STATE(133), + [sym_emphasis_begin] = STATE(1142), + [sym_strong] = STATE(133), + [sym_strong_begin] = STATE(1143), + [sym_superscript] = STATE(133), + [sym_superscript_begin] = STATE(1144), + [sym_subscript] = STATE(133), + [sym_subscript_begin] = STATE(1145), + [sym_highlighted] = STATE(133), + [sym_highlighted_begin] = STATE(1146), + [sym_insert] = STATE(133), + [sym_insert_begin] = STATE(1147), + [sym_delete] = STATE(133), + [sym_delete_begin] = STATE(1148), + [sym_hard_line_break] = STATE(133), + [sym__smart_punctuation] = STATE(133), + [sym_autolink] = STATE(133), + [sym_footnote_reference] = STATE(133), + [sym_footnote_marker_begin] = STATE(1149), + [sym__image] = STATE(133), + [sym_full_reference_image] = STATE(133), + [sym_collapsed_reference_image] = STATE(133), + [sym_inline_image] = STATE(133), + [sym_image_description] = STATE(638), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(133), + [sym_full_reference_link] = STATE(133), + [sym_collapsed_reference_link] = STATE(133), + [sym_inline_link] = STATE(133), + [sym_link_text] = STATE(637), + [sym_span] = STATE(65), + [sym__bracketed_text_begin] = STATE(1188), + [sym__comment_with_spaces] = STATE(133), + [sym_raw_inline] = STATE(133), + [sym_math] = STATE(133), + [sym_verbatim] = STATE(133), + [sym__todo_highlights] = STATE(133), + [sym_todo] = STATE(133), + [sym_note] = STATE(133), + [sym__symbol_fallback] = STATE(133), + [aux_sym__text] = STATE(129), + [aux_sym__inline_repeat1] = STATE(65), + [anon_sym_LBRACE_] = ACTIONS(489), + [anon_sym__] = ACTIONS(491), + [anon_sym_LBRACE_STAR] = ACTIONS(493), + [anon_sym_STAR] = ACTIONS(495), + [anon_sym_LBRACE_CARET] = ACTIONS(497), + [anon_sym_CARET] = ACTIONS(497), + [anon_sym_LBRACE_TILDE] = ACTIONS(499), + [anon_sym_TILDE] = ACTIONS(499), + [anon_sym_LBRACE_EQ] = ACTIONS(501), + [anon_sym_LBRACE_PLUS] = ACTIONS(503), + [anon_sym_LBRACE_DASH] = ACTIONS(505), + [anon_sym_BSLASH] = ACTIONS(507), + [sym_quotation_marks] = ACTIONS(509), + [sym_ellipsis] = ACTIONS(509), + [sym_em_dash] = ACTIONS(509), + [sym_en_dash] = ACTIONS(511), + [sym_backslash_escape] = ACTIONS(511), + [anon_sym_LT] = ACTIONS(513), + [sym_symbol] = ACTIONS(509), + [anon_sym_LBRACK_CARET] = ACTIONS(515), + [anon_sym_BANG_LBRACK] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(519), + [anon_sym_LPAREN] = ACTIONS(521), + [anon_sym_DOLLAR] = ACTIONS(523), + [anon_sym_TODO] = ACTIONS(525), + [anon_sym_WIP] = ACTIONS(525), + [anon_sym_NOTE] = ACTIONS(527), + [anon_sym_INFO] = ACTIONS(527), + [anon_sym_XXX] = ACTIONS(527), + [sym_fixme] = ACTIONS(509), + [sym__whitespace1] = ACTIONS(529), + [sym__newline] = ACTIONS(531), + [aux_sym__text_token1] = ACTIONS(533), + [sym__verbatim_begin] = ACTIONS(535), }, [19] = { - [sym__inline_without_trailing_space] = STATE(1039), - [sym__element] = STATE(623), - [sym_emphasis] = STATE(148), - [sym_emphasis_begin] = STATE(1163), - [sym_strong] = STATE(148), - [sym_strong_begin] = STATE(1164), - [sym_superscript] = STATE(148), - [sym_superscript_begin] = STATE(1165), - [sym_subscript] = STATE(148), - [sym_subscript_begin] = STATE(1166), - [sym_highlighted] = STATE(148), - [sym_highlighted_begin] = STATE(1167), - [sym_insert] = STATE(148), - [sym_insert_begin] = STATE(1168), - [sym_delete] = STATE(148), - [sym_delete_begin] = STATE(1169), - [sym_hard_line_break] = STATE(148), - [sym__smart_punctuation] = STATE(148), - [sym_autolink] = STATE(148), - [sym_footnote_reference] = STATE(148), - [sym_footnote_marker_begin] = STATE(1170), - [sym__image] = STATE(148), - [sym_full_reference_image] = STATE(148), - [sym_collapsed_reference_image] = STATE(148), - [sym_inline_image] = STATE(148), - [sym_image_description] = STATE(712), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(148), - [sym_full_reference_link] = STATE(148), - [sym_collapsed_reference_link] = STATE(148), - [sym_inline_link] = STATE(148), - [sym_link_text] = STATE(713), - [sym_span] = STATE(623), - [sym__bracketed_text_begin] = STATE(1262), - [sym__comment_with_spaces] = STATE(148), - [sym_raw_inline] = STATE(148), - [sym_math] = STATE(148), - [sym_verbatim] = STATE(148), - [sym__todo_highlights] = STATE(148), - [sym_todo] = STATE(148), - [sym_note] = STATE(148), - [sym__symbol_fallback] = STATE(148), - [aux_sym__text] = STATE(136), - [aux_sym__inline_repeat1] = STATE(129), - [anon_sym_LBRACE_] = ACTIONS(402), - [anon_sym__] = ACTIONS(404), - [anon_sym_LBRACE_STAR] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_LBRACE_CARET] = ACTIONS(410), - [anon_sym_CARET] = ACTIONS(410), - [anon_sym_LBRACE_TILDE] = ACTIONS(412), - [anon_sym_TILDE] = ACTIONS(412), - [anon_sym_LBRACE_EQ] = ACTIONS(414), - [anon_sym_LBRACE_PLUS] = ACTIONS(416), - [anon_sym_LBRACE_DASH] = ACTIONS(418), - [anon_sym_BSLASH] = ACTIONS(420), - [sym_quotation_marks] = ACTIONS(422), - [sym_ellipsis] = ACTIONS(422), - [sym_em_dash] = ACTIONS(422), - [sym_en_dash] = ACTIONS(424), - [sym_backslash_escape] = ACTIONS(424), - [anon_sym_LT] = ACTIONS(426), - [sym_symbol] = ACTIONS(422), - [anon_sym_LBRACK_CARET] = ACTIONS(428), - [anon_sym_BANG_LBRACK] = ACTIONS(430), - [anon_sym_LBRACK] = ACTIONS(432), - [anon_sym_DOLLAR] = ACTIONS(434), - [anon_sym_TODO] = ACTIONS(436), - [anon_sym_WIP] = ACTIONS(436), - [anon_sym_NOTE] = ACTIONS(438), - [anon_sym_INFO] = ACTIONS(438), - [anon_sym_XXX] = ACTIONS(438), - [sym_fixme] = ACTIONS(422), - [sym__whitespace1] = ACTIONS(440), - [sym__newline] = ACTIONS(442), - [aux_sym__text_token1] = ACTIONS(444), - [sym__verbatim_begin] = ACTIONS(446), + [sym__inline] = STATE(913), + [sym__element] = STATE(37), + [sym_emphasis] = STATE(131), + [sym_emphasis_begin] = STATE(1132), + [sym_strong] = STATE(131), + [sym_strong_begin] = STATE(1133), + [sym_superscript] = STATE(131), + [sym_superscript_begin] = STATE(1134), + [sym_subscript] = STATE(131), + [sym_subscript_begin] = STATE(1135), + [sym_highlighted] = STATE(131), + [sym_highlighted_begin] = STATE(1136), + [sym_insert] = STATE(131), + [sym_insert_begin] = STATE(1137), + [sym_delete] = STATE(131), + [sym_delete_begin] = STATE(1138), + [sym_hard_line_break] = STATE(131), + [sym__smart_punctuation] = STATE(131), + [sym_autolink] = STATE(131), + [sym_footnote_reference] = STATE(131), + [sym_footnote_marker_begin] = STATE(1139), + [sym__image] = STATE(131), + [sym_full_reference_image] = STATE(131), + [sym_collapsed_reference_image] = STATE(131), + [sym_inline_image] = STATE(131), + [sym_image_description] = STATE(643), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(131), + [sym_full_reference_link] = STATE(131), + [sym_collapsed_reference_link] = STATE(131), + [sym_inline_link] = STATE(131), + [sym_link_text] = STATE(619), + [sym_span] = STATE(37), + [sym__bracketed_text_begin] = STATE(1187), + [sym__comment_with_spaces] = STATE(131), + [sym_raw_inline] = STATE(131), + [sym_math] = STATE(131), + [sym_verbatim] = STATE(131), + [sym__todo_highlights] = STATE(131), + [sym_todo] = STATE(131), + [sym_note] = STATE(131), + [sym__symbol_fallback] = STATE(131), + [aux_sym__text] = STATE(123), + [aux_sym__inline_repeat1] = STATE(37), + [anon_sym_LBRACE_] = ACTIONS(537), + [anon_sym__] = ACTIONS(539), + [anon_sym_LBRACE_STAR] = ACTIONS(541), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE_CARET] = ACTIONS(545), + [anon_sym_CARET] = ACTIONS(545), + [anon_sym_LBRACE_TILDE] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(547), + [anon_sym_LBRACE_EQ] = ACTIONS(549), + [anon_sym_LBRACE_PLUS] = ACTIONS(551), + [anon_sym_LBRACE_DASH] = ACTIONS(553), + [anon_sym_BSLASH] = ACTIONS(555), + [sym_quotation_marks] = ACTIONS(557), + [sym_ellipsis] = ACTIONS(557), + [sym_em_dash] = ACTIONS(557), + [sym_en_dash] = ACTIONS(559), + [sym_backslash_escape] = ACTIONS(559), + [anon_sym_LT] = ACTIONS(561), + [sym_symbol] = ACTIONS(557), + [anon_sym_LBRACK_CARET] = ACTIONS(563), + [anon_sym_BANG_LBRACK] = ACTIONS(565), + [anon_sym_LBRACK] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_DOLLAR] = ACTIONS(571), + [anon_sym_TODO] = ACTIONS(573), + [anon_sym_WIP] = ACTIONS(573), + [anon_sym_NOTE] = ACTIONS(575), + [anon_sym_INFO] = ACTIONS(575), + [anon_sym_XXX] = ACTIONS(575), + [sym_fixme] = ACTIONS(557), + [sym__whitespace1] = ACTIONS(577), + [sym__newline] = ACTIONS(579), + [aux_sym__text_token1] = ACTIONS(581), + [sym__verbatim_begin] = ACTIONS(583), }, [20] = { - [sym__inline_without_trailing_space] = STATE(1031), - [sym__element] = STATE(570), - [sym_emphasis] = STATE(152), - [sym_emphasis_begin] = STATE(1172), - [sym_strong] = STATE(152), - [sym_strong_begin] = STATE(1173), - [sym_superscript] = STATE(152), - [sym_superscript_begin] = STATE(1174), - [sym_subscript] = STATE(152), - [sym_subscript_begin] = STATE(1175), - [sym_highlighted] = STATE(152), - [sym_highlighted_begin] = STATE(1176), - [sym_insert] = STATE(152), - [sym_insert_begin] = STATE(1177), - [sym_delete] = STATE(152), - [sym_delete_begin] = STATE(1178), - [sym_hard_line_break] = STATE(152), - [sym__smart_punctuation] = STATE(152), - [sym_autolink] = STATE(152), - [sym_footnote_reference] = STATE(152), - [sym_footnote_marker_begin] = STATE(1179), - [sym__image] = STATE(152), - [sym_full_reference_image] = STATE(152), - [sym_collapsed_reference_image] = STATE(152), - [sym_inline_image] = STATE(152), - [sym_image_description] = STATE(704), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(152), - [sym_full_reference_link] = STATE(152), - [sym_collapsed_reference_link] = STATE(152), - [sym_inline_link] = STATE(152), - [sym_link_text] = STATE(706), - [sym_span] = STATE(570), - [sym__bracketed_text_begin] = STATE(1263), - [sym__comment_with_spaces] = STATE(152), - [sym_raw_inline] = STATE(152), - [sym_math] = STATE(152), - [sym_verbatim] = STATE(152), - [sym__todo_highlights] = STATE(152), - [sym_todo] = STATE(152), - [sym_note] = STATE(152), - [sym__symbol_fallback] = STATE(152), - [aux_sym__text] = STATE(133), - [aux_sym__inline_repeat1] = STATE(130), - [anon_sym_LBRACE_] = ACTIONS(448), - [anon_sym__] = ACTIONS(450), - [anon_sym_LBRACE_STAR] = ACTIONS(452), - [anon_sym_STAR] = ACTIONS(454), - [anon_sym_LBRACE_CARET] = ACTIONS(456), - [anon_sym_CARET] = ACTIONS(456), - [anon_sym_LBRACE_TILDE] = ACTIONS(458), - [anon_sym_TILDE] = ACTIONS(458), - [anon_sym_LBRACE_EQ] = ACTIONS(460), - [anon_sym_LBRACE_PLUS] = ACTIONS(462), - [anon_sym_LBRACE_DASH] = ACTIONS(464), - [anon_sym_BSLASH] = ACTIONS(466), - [sym_quotation_marks] = ACTIONS(468), - [sym_ellipsis] = ACTIONS(468), - [sym_em_dash] = ACTIONS(468), - [sym_en_dash] = ACTIONS(470), - [sym_backslash_escape] = ACTIONS(470), - [anon_sym_LT] = ACTIONS(472), - [sym_symbol] = ACTIONS(468), - [anon_sym_LBRACK_CARET] = ACTIONS(474), - [anon_sym_BANG_LBRACK] = ACTIONS(476), - [anon_sym_LBRACK] = ACTIONS(478), - [anon_sym_DOLLAR] = ACTIONS(480), - [anon_sym_TODO] = ACTIONS(482), - [anon_sym_WIP] = ACTIONS(482), - [anon_sym_NOTE] = ACTIONS(484), - [anon_sym_INFO] = ACTIONS(484), - [anon_sym_XXX] = ACTIONS(484), - [sym_fixme] = ACTIONS(468), - [sym__whitespace1] = ACTIONS(486), - [sym__newline] = ACTIONS(488), - [aux_sym__text_token1] = ACTIONS(490), - [sym__verbatim_begin] = ACTIONS(492), + [sym__inline_without_trailing_space] = STATE(946), + [sym__element] = STATE(581), + [sym_emphasis] = STATE(141), + [sym_emphasis_begin] = STATE(1082), + [sym_strong] = STATE(141), + [sym_strong_begin] = STATE(1083), + [sym_superscript] = STATE(141), + [sym_superscript_begin] = STATE(1084), + [sym_subscript] = STATE(141), + [sym_subscript_begin] = STATE(1085), + [sym_highlighted] = STATE(141), + [sym_highlighted_begin] = STATE(1086), + [sym_insert] = STATE(141), + [sym_insert_begin] = STATE(1087), + [sym_delete] = STATE(141), + [sym_delete_begin] = STATE(1088), + [sym_hard_line_break] = STATE(141), + [sym__smart_punctuation] = STATE(141), + [sym_autolink] = STATE(141), + [sym_footnote_reference] = STATE(141), + [sym_footnote_marker_begin] = STATE(1089), + [sym__image] = STATE(141), + [sym_full_reference_image] = STATE(141), + [sym_collapsed_reference_image] = STATE(141), + [sym_inline_image] = STATE(141), + [sym_image_description] = STATE(642), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(141), + [sym_full_reference_link] = STATE(141), + [sym_collapsed_reference_link] = STATE(141), + [sym_inline_link] = STATE(141), + [sym_link_text] = STATE(629), + [sym_span] = STATE(581), + [sym__bracketed_text_begin] = STATE(1182), + [sym__comment_with_spaces] = STATE(141), + [sym_raw_inline] = STATE(141), + [sym_math] = STATE(141), + [sym_verbatim] = STATE(141), + [sym__todo_highlights] = STATE(141), + [sym_todo] = STATE(141), + [sym_note] = STATE(141), + [sym__symbol_fallback] = STATE(141), + [aux_sym__text] = STATE(125), + [aux_sym__inline_repeat1] = STATE(119), + [anon_sym_LBRACE_] = ACTIONS(585), + [anon_sym__] = ACTIONS(587), + [anon_sym_LBRACE_STAR] = ACTIONS(589), + [anon_sym_STAR] = ACTIONS(591), + [anon_sym_LBRACE_CARET] = ACTIONS(593), + [anon_sym_CARET] = ACTIONS(593), + [anon_sym_LBRACE_TILDE] = ACTIONS(595), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_LBRACE_EQ] = ACTIONS(597), + [anon_sym_LBRACE_PLUS] = ACTIONS(599), + [anon_sym_LBRACE_DASH] = ACTIONS(601), + [anon_sym_BSLASH] = ACTIONS(603), + [sym_quotation_marks] = ACTIONS(605), + [sym_ellipsis] = ACTIONS(605), + [sym_em_dash] = ACTIONS(605), + [sym_en_dash] = ACTIONS(607), + [sym_backslash_escape] = ACTIONS(607), + [anon_sym_LT] = ACTIONS(609), + [sym_symbol] = ACTIONS(605), + [anon_sym_LBRACK_CARET] = ACTIONS(611), + [anon_sym_BANG_LBRACK] = ACTIONS(613), + [anon_sym_LBRACK] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [anon_sym_TODO] = ACTIONS(621), + [anon_sym_WIP] = ACTIONS(621), + [anon_sym_NOTE] = ACTIONS(623), + [anon_sym_INFO] = ACTIONS(623), + [anon_sym_XXX] = ACTIONS(623), + [sym_fixme] = ACTIONS(605), + [sym__whitespace1] = ACTIONS(625), + [sym__newline] = ACTIONS(627), + [aux_sym__text_token1] = ACTIONS(629), + [sym__verbatim_begin] = ACTIONS(631), }, [21] = { - [sym__element] = STATE(14), - [sym_emphasis] = STATE(149), - [sym_emphasis_begin] = STATE(1199), - [sym_strong] = STATE(149), - [sym_strong_begin] = STATE(1200), - [sym_superscript] = STATE(149), - [sym_superscript_begin] = STATE(1201), - [sym_subscript] = STATE(149), - [sym_subscript_begin] = STATE(1202), - [sym_highlighted] = STATE(149), - [sym_highlighted_begin] = STATE(1203), - [sym_insert] = STATE(149), - [sym_insert_begin] = STATE(1204), - [sym_delete] = STATE(149), - [sym_delete_begin] = STATE(1205), - [sym_hard_line_break] = STATE(149), - [sym__smart_punctuation] = STATE(149), - [sym_autolink] = STATE(149), - [sym_footnote_reference] = STATE(149), - [sym_footnote_marker_begin] = STATE(1206), - [sym__image] = STATE(149), - [sym_full_reference_image] = STATE(149), - [sym_collapsed_reference_image] = STATE(149), - [sym_inline_image] = STATE(149), - [sym_image_description] = STATE(714), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(149), - [sym_full_reference_link] = STATE(149), - [sym_collapsed_reference_link] = STATE(149), - [sym_inline_link] = STATE(149), - [sym_link_text] = STATE(710), - [sym_span] = STATE(14), - [sym__bracketed_text_begin] = STATE(1266), - [sym__comment_with_spaces] = STATE(149), - [sym_raw_inline] = STATE(149), - [sym_math] = STATE(149), - [sym_verbatim] = STATE(149), - [sym__todo_highlights] = STATE(149), - [sym_todo] = STATE(149), - [sym_note] = STATE(149), - [sym__symbol_fallback] = STATE(149), - [aux_sym__text] = STATE(142), - [aux_sym__inline_repeat1] = STATE(14), - [anon_sym_LBRACE_] = ACTIONS(494), - [anon_sym__] = ACTIONS(496), - [anon_sym_LBRACE_STAR] = ACTIONS(498), - [anon_sym_STAR] = ACTIONS(500), - [anon_sym_LBRACE_CARET] = ACTIONS(502), - [anon_sym_CARET] = ACTIONS(502), - [anon_sym_LBRACE_TILDE] = ACTIONS(504), - [anon_sym_TILDE] = ACTIONS(504), - [anon_sym_LBRACE_EQ] = ACTIONS(506), - [anon_sym_LBRACE_PLUS] = ACTIONS(508), - [anon_sym_LBRACE_DASH] = ACTIONS(510), - [anon_sym_BSLASH] = ACTIONS(512), - [sym_quotation_marks] = ACTIONS(514), - [sym_ellipsis] = ACTIONS(514), - [sym_em_dash] = ACTIONS(514), - [sym_en_dash] = ACTIONS(516), - [sym_backslash_escape] = ACTIONS(516), - [anon_sym_LT] = ACTIONS(518), - [sym_symbol] = ACTIONS(514), - [anon_sym_LBRACK_CARET] = ACTIONS(520), - [anon_sym_BANG_LBRACK] = ACTIONS(522), - [anon_sym_LBRACK] = ACTIONS(524), - [anon_sym_DOLLAR] = ACTIONS(526), - [anon_sym_TODO] = ACTIONS(528), - [anon_sym_WIP] = ACTIONS(528), - [anon_sym_NOTE] = ACTIONS(530), - [anon_sym_INFO] = ACTIONS(530), - [anon_sym_XXX] = ACTIONS(530), - [sym_fixme] = ACTIONS(514), - [sym__whitespace1] = ACTIONS(532), - [sym__newline] = ACTIONS(534), - [aux_sym__text_token1] = ACTIONS(536), - [sym__verbatim_begin] = ACTIONS(538), - [sym_highlighted_end] = ACTIONS(283), + [sym__inline_without_trailing_space] = STATE(945), + [sym__element] = STATE(536), + [sym_emphasis] = STATE(138), + [sym_emphasis_begin] = STATE(1092), + [sym_strong] = STATE(138), + [sym_strong_begin] = STATE(1093), + [sym_superscript] = STATE(138), + [sym_superscript_begin] = STATE(1094), + [sym_subscript] = STATE(138), + [sym_subscript_begin] = STATE(1095), + [sym_highlighted] = STATE(138), + [sym_highlighted_begin] = STATE(1096), + [sym_insert] = STATE(138), + [sym_insert_begin] = STATE(1097), + [sym_delete] = STATE(138), + [sym_delete_begin] = STATE(1098), + [sym_hard_line_break] = STATE(138), + [sym__smart_punctuation] = STATE(138), + [sym_autolink] = STATE(138), + [sym_footnote_reference] = STATE(138), + [sym_footnote_marker_begin] = STATE(1099), + [sym__image] = STATE(138), + [sym_full_reference_image] = STATE(138), + [sym_collapsed_reference_image] = STATE(138), + [sym_inline_image] = STATE(138), + [sym_image_description] = STATE(626), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(138), + [sym_full_reference_link] = STATE(138), + [sym_collapsed_reference_link] = STATE(138), + [sym_inline_link] = STATE(138), + [sym_link_text] = STATE(627), + [sym_span] = STATE(536), + [sym__bracketed_text_begin] = STATE(1183), + [sym__comment_with_spaces] = STATE(138), + [sym_raw_inline] = STATE(138), + [sym_math] = STATE(138), + [sym_verbatim] = STATE(138), + [sym__todo_highlights] = STATE(138), + [sym_todo] = STATE(138), + [sym_note] = STATE(138), + [sym__symbol_fallback] = STATE(138), + [aux_sym__text] = STATE(127), + [aux_sym__inline_repeat1] = STATE(118), + [anon_sym_LBRACE_] = ACTIONS(149), + [anon_sym__] = ACTIONS(151), + [anon_sym_LBRACE_STAR] = ACTIONS(153), + [anon_sym_STAR] = ACTIONS(155), + [anon_sym_LBRACE_CARET] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_LBRACE_TILDE] = ACTIONS(159), + [anon_sym_TILDE] = ACTIONS(159), + [anon_sym_LBRACE_EQ] = ACTIONS(161), + [anon_sym_LBRACE_PLUS] = ACTIONS(163), + [anon_sym_LBRACE_DASH] = ACTIONS(165), + [anon_sym_BSLASH] = ACTIONS(167), + [sym_quotation_marks] = ACTIONS(169), + [sym_ellipsis] = ACTIONS(169), + [sym_em_dash] = ACTIONS(169), + [sym_en_dash] = ACTIONS(171), + [sym_backslash_escape] = ACTIONS(171), + [anon_sym_LT] = ACTIONS(173), + [sym_symbol] = ACTIONS(169), + [anon_sym_LBRACK_CARET] = ACTIONS(175), + [anon_sym_BANG_LBRACK] = ACTIONS(177), + [anon_sym_LBRACK] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(181), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_TODO] = ACTIONS(185), + [anon_sym_WIP] = ACTIONS(185), + [anon_sym_NOTE] = ACTIONS(187), + [anon_sym_INFO] = ACTIONS(187), + [anon_sym_XXX] = ACTIONS(187), + [sym_fixme] = ACTIONS(169), + [sym__whitespace1] = ACTIONS(189), + [sym__newline] = ACTIONS(191), + [aux_sym__text_token1] = ACTIONS(193), + [sym__verbatim_begin] = ACTIONS(195), }, [22] = { - [sym__inline] = STATE(979), - [sym__element] = STATE(46), - [sym_emphasis] = STATE(147), - [sym_emphasis_begin] = STATE(1217), - [sym_strong] = STATE(147), - [sym_strong_begin] = STATE(1218), - [sym_superscript] = STATE(147), - [sym_superscript_begin] = STATE(1219), - [sym_subscript] = STATE(147), - [sym_subscript_begin] = STATE(1220), - [sym_highlighted] = STATE(147), - [sym_highlighted_begin] = STATE(1221), - [sym_insert] = STATE(147), - [sym_insert_begin] = STATE(1222), - [sym_delete] = STATE(147), - [sym_delete_begin] = STATE(1223), - [sym_hard_line_break] = STATE(147), - [sym__smart_punctuation] = STATE(147), - [sym_autolink] = STATE(147), - [sym_footnote_reference] = STATE(147), - [sym_footnote_marker_begin] = STATE(1224), - [sym__image] = STATE(147), - [sym_full_reference_image] = STATE(147), - [sym_collapsed_reference_image] = STATE(147), - [sym_inline_image] = STATE(147), - [sym_image_description] = STATE(699), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(147), - [sym_full_reference_link] = STATE(147), - [sym_collapsed_reference_link] = STATE(147), - [sym_inline_link] = STATE(147), - [sym_link_text] = STATE(698), - [sym_span] = STATE(46), - [sym__bracketed_text_begin] = STATE(1268), - [sym__comment_with_spaces] = STATE(147), - [sym_raw_inline] = STATE(147), - [sym_math] = STATE(147), - [sym_verbatim] = STATE(147), - [sym__todo_highlights] = STATE(147), - [sym_todo] = STATE(147), - [sym_note] = STATE(147), - [sym__symbol_fallback] = STATE(147), - [aux_sym__text] = STATE(132), - [aux_sym__inline_repeat1] = STATE(46), - [anon_sym_LBRACE_] = ACTIONS(189), - [anon_sym__] = ACTIONS(191), - [anon_sym_LBRACE_STAR] = ACTIONS(193), - [anon_sym_STAR] = ACTIONS(195), - [anon_sym_LBRACE_CARET] = ACTIONS(197), - [anon_sym_CARET] = ACTIONS(197), - [anon_sym_LBRACE_TILDE] = ACTIONS(199), - [anon_sym_TILDE] = ACTIONS(199), - [anon_sym_LBRACE_EQ] = ACTIONS(201), - [anon_sym_LBRACE_PLUS] = ACTIONS(203), - [anon_sym_LBRACE_DASH] = ACTIONS(205), - [anon_sym_BSLASH] = ACTIONS(207), - [sym_quotation_marks] = ACTIONS(209), - [sym_ellipsis] = ACTIONS(209), - [sym_em_dash] = ACTIONS(209), - [sym_en_dash] = ACTIONS(211), - [sym_backslash_escape] = ACTIONS(211), - [anon_sym_LT] = ACTIONS(213), - [sym_symbol] = ACTIONS(209), - [anon_sym_LBRACK_CARET] = ACTIONS(215), - [anon_sym_BANG_LBRACK] = ACTIONS(217), - [anon_sym_LBRACK] = ACTIONS(219), - [anon_sym_DOLLAR] = ACTIONS(221), - [anon_sym_TODO] = ACTIONS(223), - [anon_sym_WIP] = ACTIONS(223), - [anon_sym_NOTE] = ACTIONS(225), - [anon_sym_INFO] = ACTIONS(225), - [anon_sym_XXX] = ACTIONS(225), - [sym_fixme] = ACTIONS(209), - [sym__whitespace1] = ACTIONS(227), - [sym__newline] = ACTIONS(229), - [aux_sym__text_token1] = ACTIONS(231), - [sym__verbatim_begin] = ACTIONS(233), + [sym__element] = STATE(15), + [sym_emphasis] = STATE(137), + [sym_emphasis_begin] = STATE(1112), + [sym_strong] = STATE(137), + [sym_strong_begin] = STATE(1113), + [sym_superscript] = STATE(137), + [sym_superscript_begin] = STATE(1114), + [sym_subscript] = STATE(137), + [sym_subscript_begin] = STATE(1115), + [sym_highlighted] = STATE(137), + [sym_highlighted_begin] = STATE(1116), + [sym_insert] = STATE(137), + [sym_insert_begin] = STATE(1117), + [sym_delete] = STATE(137), + [sym_delete_begin] = STATE(1118), + [sym_hard_line_break] = STATE(137), + [sym__smart_punctuation] = STATE(137), + [sym_autolink] = STATE(137), + [sym_footnote_reference] = STATE(137), + [sym_footnote_marker_begin] = STATE(1119), + [sym__image] = STATE(137), + [sym_full_reference_image] = STATE(137), + [sym_collapsed_reference_image] = STATE(137), + [sym_inline_image] = STATE(137), + [sym_image_description] = STATE(636), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(137), + [sym_full_reference_link] = STATE(137), + [sym_collapsed_reference_link] = STATE(137), + [sym_inline_link] = STATE(137), + [sym_link_text] = STATE(647), + [sym_span] = STATE(15), + [sym__bracketed_text_begin] = STATE(1185), + [sym__comment_with_spaces] = STATE(137), + [sym_raw_inline] = STATE(137), + [sym_math] = STATE(137), + [sym_verbatim] = STATE(137), + [sym__todo_highlights] = STATE(137), + [sym_todo] = STATE(137), + [sym_note] = STATE(137), + [sym__symbol_fallback] = STATE(137), + [aux_sym__text] = STATE(122), + [aux_sym__inline_repeat1] = STATE(15), + [anon_sym_LBRACE_] = ACTIONS(197), + [anon_sym__] = ACTIONS(199), + [anon_sym_LBRACE_STAR] = ACTIONS(201), + [anon_sym_STAR] = ACTIONS(203), + [anon_sym_LBRACE_CARET] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(205), + [anon_sym_LBRACE_TILDE] = ACTIONS(207), + [anon_sym_TILDE] = ACTIONS(207), + [anon_sym_LBRACE_EQ] = ACTIONS(209), + [anon_sym_LBRACE_PLUS] = ACTIONS(211), + [anon_sym_LBRACE_DASH] = ACTIONS(213), + [anon_sym_BSLASH] = ACTIONS(215), + [sym_quotation_marks] = ACTIONS(217), + [sym_ellipsis] = ACTIONS(217), + [sym_em_dash] = ACTIONS(217), + [sym_en_dash] = ACTIONS(219), + [sym_backslash_escape] = ACTIONS(219), + [anon_sym_LT] = ACTIONS(221), + [sym_symbol] = ACTIONS(217), + [anon_sym_LBRACK_CARET] = ACTIONS(223), + [anon_sym_BANG_LBRACK] = ACTIONS(225), + [anon_sym_LBRACK] = ACTIONS(227), + [anon_sym_LPAREN] = ACTIONS(229), + [anon_sym_DOLLAR] = ACTIONS(231), + [anon_sym_TODO] = ACTIONS(233), + [anon_sym_WIP] = ACTIONS(233), + [anon_sym_NOTE] = ACTIONS(235), + [anon_sym_INFO] = ACTIONS(235), + [anon_sym_XXX] = ACTIONS(235), + [sym_fixme] = ACTIONS(217), + [sym__whitespace1] = ACTIONS(237), + [sym__newline] = ACTIONS(633), + [aux_sym__text_token1] = ACTIONS(241), + [sym__verbatim_begin] = ACTIONS(243), + [sym_subscript_end] = ACTIONS(367), }, [23] = { - [sym__inline] = STATE(978), - [sym__element] = STATE(7), - [sym_emphasis] = STATE(153), - [sym_emphasis_begin] = STATE(1208), - [sym_strong] = STATE(153), - [sym_strong_begin] = STATE(1209), - [sym_superscript] = STATE(153), - [sym_superscript_begin] = STATE(1210), - [sym_subscript] = STATE(153), - [sym_subscript_begin] = STATE(1211), - [sym_highlighted] = STATE(153), - [sym_highlighted_begin] = STATE(1212), - [sym_insert] = STATE(153), - [sym_insert_begin] = STATE(1213), - [sym_delete] = STATE(153), - [sym_delete_begin] = STATE(1214), - [sym_hard_line_break] = STATE(153), - [sym__smart_punctuation] = STATE(153), - [sym_autolink] = STATE(153), - [sym_footnote_reference] = STATE(153), - [sym_footnote_marker_begin] = STATE(1215), - [sym__image] = STATE(153), - [sym_full_reference_image] = STATE(153), - [sym_collapsed_reference_image] = STATE(153), - [sym_inline_image] = STATE(153), - [sym_image_description] = STATE(707), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(153), - [sym_full_reference_link] = STATE(153), - [sym_collapsed_reference_link] = STATE(153), - [sym_inline_link] = STATE(153), - [sym_link_text] = STATE(705), - [sym_span] = STATE(7), - [sym__bracketed_text_begin] = STATE(1267), - [sym__comment_with_spaces] = STATE(153), - [sym_raw_inline] = STATE(153), - [sym_math] = STATE(153), - [sym_verbatim] = STATE(153), - [sym__todo_highlights] = STATE(153), - [sym_todo] = STATE(153), - [sym_note] = STATE(153), - [sym__symbol_fallback] = STATE(153), - [aux_sym__text] = STATE(134), - [aux_sym__inline_repeat1] = STATE(7), - [anon_sym_LBRACE_] = ACTIONS(97), - [anon_sym__] = ACTIONS(99), - [anon_sym_LBRACE_STAR] = ACTIONS(101), - [anon_sym_STAR] = ACTIONS(103), - [anon_sym_LBRACE_CARET] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [anon_sym_LBRACE_TILDE] = ACTIONS(107), - [anon_sym_TILDE] = ACTIONS(107), - [anon_sym_LBRACE_EQ] = ACTIONS(109), - [anon_sym_LBRACE_PLUS] = ACTIONS(111), - [anon_sym_LBRACE_DASH] = ACTIONS(113), - [anon_sym_BSLASH] = ACTIONS(115), - [sym_quotation_marks] = ACTIONS(117), - [sym_ellipsis] = ACTIONS(117), - [sym_em_dash] = ACTIONS(117), - [sym_en_dash] = ACTIONS(119), - [sym_backslash_escape] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [sym_symbol] = ACTIONS(117), - [anon_sym_LBRACK_CARET] = ACTIONS(123), - [anon_sym_BANG_LBRACK] = ACTIONS(125), - [anon_sym_LBRACK] = ACTIONS(127), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_TODO] = ACTIONS(131), - [anon_sym_WIP] = ACTIONS(131), - [anon_sym_NOTE] = ACTIONS(133), - [anon_sym_INFO] = ACTIONS(133), - [anon_sym_XXX] = ACTIONS(133), - [sym_fixme] = ACTIONS(117), - [sym__whitespace1] = ACTIONS(135), - [sym__newline] = ACTIONS(137), - [aux_sym__text_token1] = ACTIONS(139), - [sym__verbatim_begin] = ACTIONS(141), + [sym__inline] = STATE(912), + [sym__element] = STATE(14), + [sym_emphasis] = STATE(136), + [sym_emphasis_begin] = STATE(1122), + [sym_strong] = STATE(136), + [sym_strong_begin] = STATE(1123), + [sym_superscript] = STATE(136), + [sym_superscript_begin] = STATE(1124), + [sym_subscript] = STATE(136), + [sym_subscript_begin] = STATE(1125), + [sym_highlighted] = STATE(136), + [sym_highlighted_begin] = STATE(1126), + [sym_insert] = STATE(136), + [sym_insert_begin] = STATE(1127), + [sym_delete] = STATE(136), + [sym_delete_begin] = STATE(1128), + [sym_hard_line_break] = STATE(136), + [sym__smart_punctuation] = STATE(136), + [sym_autolink] = STATE(136), + [sym_footnote_reference] = STATE(136), + [sym_footnote_marker_begin] = STATE(1129), + [sym__image] = STATE(136), + [sym_full_reference_image] = STATE(136), + [sym_collapsed_reference_image] = STATE(136), + [sym_inline_image] = STATE(136), + [sym_image_description] = STATE(651), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(136), + [sym_full_reference_link] = STATE(136), + [sym_collapsed_reference_link] = STATE(136), + [sym_inline_link] = STATE(136), + [sym_link_text] = STATE(650), + [sym_span] = STATE(14), + [sym__bracketed_text_begin] = STATE(1186), + [sym__comment_with_spaces] = STATE(136), + [sym_raw_inline] = STATE(136), + [sym_math] = STATE(136), + [sym_verbatim] = STATE(136), + [sym__todo_highlights] = STATE(136), + [sym_todo] = STATE(136), + [sym_note] = STATE(136), + [sym__symbol_fallback] = STATE(136), + [aux_sym__text] = STATE(130), + [aux_sym__inline_repeat1] = STATE(14), + [anon_sym_LBRACE_] = ACTIONS(319), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_STAR] = ACTIONS(323), + [anon_sym_STAR] = ACTIONS(325), + [anon_sym_LBRACE_CARET] = ACTIONS(327), + [anon_sym_CARET] = ACTIONS(327), + [anon_sym_LBRACE_TILDE] = ACTIONS(329), + [anon_sym_TILDE] = ACTIONS(329), + [anon_sym_LBRACE_EQ] = ACTIONS(331), + [anon_sym_LBRACE_PLUS] = ACTIONS(333), + [anon_sym_LBRACE_DASH] = ACTIONS(335), + [anon_sym_BSLASH] = ACTIONS(337), + [sym_quotation_marks] = ACTIONS(339), + [sym_ellipsis] = ACTIONS(339), + [sym_em_dash] = ACTIONS(339), + [sym_en_dash] = ACTIONS(341), + [sym_backslash_escape] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [sym_symbol] = ACTIONS(339), + [anon_sym_LBRACK_CARET] = ACTIONS(345), + [anon_sym_BANG_LBRACK] = ACTIONS(347), + [anon_sym_LBRACK] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_DOLLAR] = ACTIONS(353), + [anon_sym_TODO] = ACTIONS(355), + [anon_sym_WIP] = ACTIONS(355), + [anon_sym_NOTE] = ACTIONS(357), + [anon_sym_INFO] = ACTIONS(357), + [anon_sym_XXX] = ACTIONS(357), + [sym_fixme] = ACTIONS(339), + [sym__whitespace1] = ACTIONS(359), + [sym__newline] = ACTIONS(635), + [aux_sym__text_token1] = ACTIONS(363), + [sym__verbatim_begin] = ACTIONS(365), }, [24] = { - [sym__inline] = STATE(977), - [sym__element] = STATE(21), - [sym_emphasis] = STATE(149), - [sym_emphasis_begin] = STATE(1199), - [sym_strong] = STATE(149), - [sym_strong_begin] = STATE(1200), - [sym_superscript] = STATE(149), - [sym_superscript_begin] = STATE(1201), - [sym_subscript] = STATE(149), - [sym_subscript_begin] = STATE(1202), - [sym_highlighted] = STATE(149), - [sym_highlighted_begin] = STATE(1203), - [sym_insert] = STATE(149), - [sym_insert_begin] = STATE(1204), - [sym_delete] = STATE(149), - [sym_delete_begin] = STATE(1205), - [sym_hard_line_break] = STATE(149), - [sym__smart_punctuation] = STATE(149), - [sym_autolink] = STATE(149), - [sym_footnote_reference] = STATE(149), - [sym_footnote_marker_begin] = STATE(1206), - [sym__image] = STATE(149), - [sym_full_reference_image] = STATE(149), - [sym_collapsed_reference_image] = STATE(149), - [sym_inline_image] = STATE(149), - [sym_image_description] = STATE(714), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(149), - [sym_full_reference_link] = STATE(149), - [sym_collapsed_reference_link] = STATE(149), - [sym_inline_link] = STATE(149), - [sym_link_text] = STATE(710), - [sym_span] = STATE(21), - [sym__bracketed_text_begin] = STATE(1266), - [sym__comment_with_spaces] = STATE(149), - [sym_raw_inline] = STATE(149), - [sym_math] = STATE(149), - [sym_verbatim] = STATE(149), - [sym__todo_highlights] = STATE(149), - [sym_todo] = STATE(149), - [sym_note] = STATE(149), - [sym__symbol_fallback] = STATE(149), - [aux_sym__text] = STATE(142), - [aux_sym__inline_repeat1] = STATE(21), - [anon_sym_LBRACE_] = ACTIONS(494), - [anon_sym__] = ACTIONS(496), - [anon_sym_LBRACE_STAR] = ACTIONS(498), - [anon_sym_STAR] = ACTIONS(500), - [anon_sym_LBRACE_CARET] = ACTIONS(502), - [anon_sym_CARET] = ACTIONS(502), - [anon_sym_LBRACE_TILDE] = ACTIONS(504), - [anon_sym_TILDE] = ACTIONS(504), - [anon_sym_LBRACE_EQ] = ACTIONS(506), - [anon_sym_LBRACE_PLUS] = ACTIONS(508), - [anon_sym_LBRACE_DASH] = ACTIONS(510), - [anon_sym_BSLASH] = ACTIONS(512), - [sym_quotation_marks] = ACTIONS(514), - [sym_ellipsis] = ACTIONS(514), - [sym_em_dash] = ACTIONS(514), - [sym_en_dash] = ACTIONS(516), - [sym_backslash_escape] = ACTIONS(516), - [anon_sym_LT] = ACTIONS(518), - [sym_symbol] = ACTIONS(514), - [anon_sym_LBRACK_CARET] = ACTIONS(520), - [anon_sym_BANG_LBRACK] = ACTIONS(522), - [anon_sym_LBRACK] = ACTIONS(524), - [anon_sym_DOLLAR] = ACTIONS(526), - [anon_sym_TODO] = ACTIONS(528), - [anon_sym_WIP] = ACTIONS(528), - [anon_sym_NOTE] = ACTIONS(530), - [anon_sym_INFO] = ACTIONS(530), - [anon_sym_XXX] = ACTIONS(530), - [sym_fixme] = ACTIONS(514), - [sym__whitespace1] = ACTIONS(532), - [sym__newline] = ACTIONS(540), - [aux_sym__text_token1] = ACTIONS(536), - [sym__verbatim_begin] = ACTIONS(538), + [sym__inline] = STATE(911), + [sym__element] = STATE(22), + [sym_emphasis] = STATE(137), + [sym_emphasis_begin] = STATE(1112), + [sym_strong] = STATE(137), + [sym_strong_begin] = STATE(1113), + [sym_superscript] = STATE(137), + [sym_superscript_begin] = STATE(1114), + [sym_subscript] = STATE(137), + [sym_subscript_begin] = STATE(1115), + [sym_highlighted] = STATE(137), + [sym_highlighted_begin] = STATE(1116), + [sym_insert] = STATE(137), + [sym_insert_begin] = STATE(1117), + [sym_delete] = STATE(137), + [sym_delete_begin] = STATE(1118), + [sym_hard_line_break] = STATE(137), + [sym__smart_punctuation] = STATE(137), + [sym_autolink] = STATE(137), + [sym_footnote_reference] = STATE(137), + [sym_footnote_marker_begin] = STATE(1119), + [sym__image] = STATE(137), + [sym_full_reference_image] = STATE(137), + [sym_collapsed_reference_image] = STATE(137), + [sym_inline_image] = STATE(137), + [sym_image_description] = STATE(636), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(137), + [sym_full_reference_link] = STATE(137), + [sym_collapsed_reference_link] = STATE(137), + [sym_inline_link] = STATE(137), + [sym_link_text] = STATE(647), + [sym_span] = STATE(22), + [sym__bracketed_text_begin] = STATE(1185), + [sym__comment_with_spaces] = STATE(137), + [sym_raw_inline] = STATE(137), + [sym_math] = STATE(137), + [sym_verbatim] = STATE(137), + [sym__todo_highlights] = STATE(137), + [sym_todo] = STATE(137), + [sym_note] = STATE(137), + [sym__symbol_fallback] = STATE(137), + [aux_sym__text] = STATE(122), + [aux_sym__inline_repeat1] = STATE(22), + [anon_sym_LBRACE_] = ACTIONS(197), + [anon_sym__] = ACTIONS(199), + [anon_sym_LBRACE_STAR] = ACTIONS(201), + [anon_sym_STAR] = ACTIONS(203), + [anon_sym_LBRACE_CARET] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(205), + [anon_sym_LBRACE_TILDE] = ACTIONS(207), + [anon_sym_TILDE] = ACTIONS(207), + [anon_sym_LBRACE_EQ] = ACTIONS(209), + [anon_sym_LBRACE_PLUS] = ACTIONS(211), + [anon_sym_LBRACE_DASH] = ACTIONS(213), + [anon_sym_BSLASH] = ACTIONS(215), + [sym_quotation_marks] = ACTIONS(217), + [sym_ellipsis] = ACTIONS(217), + [sym_em_dash] = ACTIONS(217), + [sym_en_dash] = ACTIONS(219), + [sym_backslash_escape] = ACTIONS(219), + [anon_sym_LT] = ACTIONS(221), + [sym_symbol] = ACTIONS(217), + [anon_sym_LBRACK_CARET] = ACTIONS(223), + [anon_sym_BANG_LBRACK] = ACTIONS(225), + [anon_sym_LBRACK] = ACTIONS(227), + [anon_sym_LPAREN] = ACTIONS(229), + [anon_sym_DOLLAR] = ACTIONS(231), + [anon_sym_TODO] = ACTIONS(233), + [anon_sym_WIP] = ACTIONS(233), + [anon_sym_NOTE] = ACTIONS(235), + [anon_sym_INFO] = ACTIONS(235), + [anon_sym_XXX] = ACTIONS(235), + [sym_fixme] = ACTIONS(217), + [sym__whitespace1] = ACTIONS(237), + [sym__newline] = ACTIONS(239), + [aux_sym__text_token1] = ACTIONS(241), + [sym__verbatim_begin] = ACTIONS(243), }, [25] = { - [sym__inline] = STATE(976), - [sym__element] = STATE(80), - [sym_emphasis] = STATE(145), - [sym_emphasis_begin] = STATE(1190), - [sym_strong] = STATE(145), - [sym_strong_begin] = STATE(1191), - [sym_superscript] = STATE(145), - [sym_superscript_begin] = STATE(1192), - [sym_subscript] = STATE(145), - [sym_subscript_begin] = STATE(1193), - [sym_highlighted] = STATE(145), - [sym_highlighted_begin] = STATE(1194), - [sym_insert] = STATE(145), - [sym_insert_begin] = STATE(1195), - [sym_delete] = STATE(145), - [sym_delete_begin] = STATE(1196), - [sym_hard_line_break] = STATE(145), - [sym__smart_punctuation] = STATE(145), - [sym_autolink] = STATE(145), - [sym_footnote_reference] = STATE(145), - [sym_footnote_marker_begin] = STATE(1197), - [sym__image] = STATE(145), - [sym_full_reference_image] = STATE(145), - [sym_collapsed_reference_image] = STATE(145), - [sym_inline_image] = STATE(145), - [sym_image_description] = STATE(696), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(145), - [sym_full_reference_link] = STATE(145), - [sym_collapsed_reference_link] = STATE(145), - [sym_inline_link] = STATE(145), - [sym_link_text] = STATE(691), - [sym_span] = STATE(80), - [sym__bracketed_text_begin] = STATE(1265), - [sym__comment_with_spaces] = STATE(145), - [sym_raw_inline] = STATE(145), - [sym_math] = STATE(145), - [sym_verbatim] = STATE(145), - [sym__todo_highlights] = STATE(145), - [sym_todo] = STATE(145), - [sym_note] = STATE(145), - [sym__symbol_fallback] = STATE(145), - [aux_sym__text] = STATE(138), - [aux_sym__inline_repeat1] = STATE(80), - [anon_sym_LBRACE_] = ACTIONS(542), - [anon_sym__] = ACTIONS(544), - [anon_sym_LBRACE_STAR] = ACTIONS(546), - [anon_sym_STAR] = ACTIONS(548), - [anon_sym_LBRACE_CARET] = ACTIONS(550), - [anon_sym_CARET] = ACTIONS(550), - [anon_sym_LBRACE_TILDE] = ACTIONS(552), - [anon_sym_TILDE] = ACTIONS(552), - [anon_sym_LBRACE_EQ] = ACTIONS(554), - [anon_sym_LBRACE_PLUS] = ACTIONS(556), - [anon_sym_LBRACE_DASH] = ACTIONS(558), - [anon_sym_BSLASH] = ACTIONS(560), - [sym_quotation_marks] = ACTIONS(562), - [sym_ellipsis] = ACTIONS(562), - [sym_em_dash] = ACTIONS(562), - [sym_en_dash] = ACTIONS(564), - [sym_backslash_escape] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(566), - [sym_symbol] = ACTIONS(562), - [anon_sym_LBRACK_CARET] = ACTIONS(568), - [anon_sym_BANG_LBRACK] = ACTIONS(570), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_DOLLAR] = ACTIONS(574), - [anon_sym_TODO] = ACTIONS(576), - [anon_sym_WIP] = ACTIONS(576), - [anon_sym_NOTE] = ACTIONS(578), - [anon_sym_INFO] = ACTIONS(578), - [anon_sym_XXX] = ACTIONS(578), - [sym_fixme] = ACTIONS(562), - [sym__whitespace1] = ACTIONS(580), - [sym__newline] = ACTIONS(582), - [aux_sym__text_token1] = ACTIONS(584), - [sym__verbatim_begin] = ACTIONS(586), + [sym__inline] = STATE(910), + [sym__element] = STATE(106), + [sym_emphasis] = STATE(139), + [sym_emphasis_begin] = STATE(1102), + [sym_strong] = STATE(139), + [sym_strong_begin] = STATE(1103), + [sym_superscript] = STATE(139), + [sym_superscript_begin] = STATE(1104), + [sym_subscript] = STATE(139), + [sym_subscript_begin] = STATE(1105), + [sym_highlighted] = STATE(139), + [sym_highlighted_begin] = STATE(1106), + [sym_insert] = STATE(139), + [sym_insert_begin] = STATE(1107), + [sym_delete] = STATE(139), + [sym_delete_begin] = STATE(1108), + [sym_hard_line_break] = STATE(139), + [sym__smart_punctuation] = STATE(139), + [sym_autolink] = STATE(139), + [sym_footnote_reference] = STATE(139), + [sym_footnote_marker_begin] = STATE(1109), + [sym__image] = STATE(139), + [sym_full_reference_image] = STATE(139), + [sym_collapsed_reference_image] = STATE(139), + [sym_inline_image] = STATE(139), + [sym_image_description] = STATE(623), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(139), + [sym_full_reference_link] = STATE(139), + [sym_collapsed_reference_link] = STATE(139), + [sym_inline_link] = STATE(139), + [sym_link_text] = STATE(621), + [sym_span] = STATE(106), + [sym__bracketed_text_begin] = STATE(1184), + [sym__comment_with_spaces] = STATE(139), + [sym_raw_inline] = STATE(139), + [sym_math] = STATE(139), + [sym_verbatim] = STATE(139), + [sym__todo_highlights] = STATE(139), + [sym_todo] = STATE(139), + [sym_note] = STATE(139), + [sym__symbol_fallback] = STATE(139), + [aux_sym__text] = STATE(126), + [aux_sym__inline_repeat1] = STATE(106), + [anon_sym_LBRACE_] = ACTIONS(101), + [anon_sym__] = ACTIONS(103), + [anon_sym_LBRACE_STAR] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(107), + [anon_sym_LBRACE_CARET] = ACTIONS(109), + [anon_sym_CARET] = ACTIONS(109), + [anon_sym_LBRACE_TILDE] = ACTIONS(111), + [anon_sym_TILDE] = ACTIONS(111), + [anon_sym_LBRACE_EQ] = ACTIONS(113), + [anon_sym_LBRACE_PLUS] = ACTIONS(115), + [anon_sym_LBRACE_DASH] = ACTIONS(117), + [anon_sym_BSLASH] = ACTIONS(119), + [sym_quotation_marks] = ACTIONS(121), + [sym_ellipsis] = ACTIONS(121), + [sym_em_dash] = ACTIONS(121), + [sym_en_dash] = ACTIONS(123), + [sym_backslash_escape] = ACTIONS(123), + [anon_sym_LT] = ACTIONS(125), + [sym_symbol] = ACTIONS(121), + [anon_sym_LBRACK_CARET] = ACTIONS(127), + [anon_sym_BANG_LBRACK] = ACTIONS(129), + [anon_sym_LBRACK] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_DOLLAR] = ACTIONS(135), + [anon_sym_TODO] = ACTIONS(137), + [anon_sym_WIP] = ACTIONS(137), + [anon_sym_NOTE] = ACTIONS(139), + [anon_sym_INFO] = ACTIONS(139), + [anon_sym_XXX] = ACTIONS(139), + [sym_fixme] = ACTIONS(121), + [sym__whitespace1] = ACTIONS(141), + [sym__newline] = ACTIONS(143), + [aux_sym__text_token1] = ACTIONS(145), + [sym__verbatim_begin] = ACTIONS(147), }, [26] = { - [sym__inline] = STATE(975), - [sym__element] = STATE(124), - [sym_emphasis] = STATE(151), - [sym_emphasis_begin] = STATE(1181), - [sym_strong] = STATE(151), - [sym_strong_begin] = STATE(1182), - [sym_superscript] = STATE(151), - [sym_superscript_begin] = STATE(1183), - [sym_subscript] = STATE(151), - [sym_subscript_begin] = STATE(1184), - [sym_highlighted] = STATE(151), - [sym_highlighted_begin] = STATE(1185), - [sym_insert] = STATE(151), - [sym_insert_begin] = STATE(1186), - [sym_delete] = STATE(151), - [sym_delete_begin] = STATE(1187), - [sym_hard_line_break] = STATE(151), - [sym__smart_punctuation] = STATE(151), - [sym_autolink] = STATE(151), - [sym_footnote_reference] = STATE(151), - [sym_footnote_marker_begin] = STATE(1188), - [sym__image] = STATE(151), - [sym_full_reference_image] = STATE(151), - [sym_collapsed_reference_image] = STATE(151), - [sym_inline_image] = STATE(151), - [sym_image_description] = STATE(700), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(151), - [sym_full_reference_link] = STATE(151), - [sym_collapsed_reference_link] = STATE(151), - [sym_inline_link] = STATE(151), - [sym_link_text] = STATE(701), - [sym_span] = STATE(124), - [sym__bracketed_text_begin] = STATE(1264), - [sym__comment_with_spaces] = STATE(151), - [sym_raw_inline] = STATE(151), - [sym_math] = STATE(151), - [sym_verbatim] = STATE(151), - [sym__todo_highlights] = STATE(151), - [sym_todo] = STATE(151), - [sym_note] = STATE(151), - [sym__symbol_fallback] = STATE(151), - [aux_sym__text] = STATE(140), - [aux_sym__inline_repeat1] = STATE(124), - [anon_sym_LBRACE_] = ACTIONS(143), - [anon_sym__] = ACTIONS(145), - [anon_sym_LBRACE_STAR] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_LBRACE_CARET] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(151), - [anon_sym_LBRACE_TILDE] = ACTIONS(153), - [anon_sym_TILDE] = ACTIONS(153), - [anon_sym_LBRACE_EQ] = ACTIONS(155), - [anon_sym_LBRACE_PLUS] = ACTIONS(157), - [anon_sym_LBRACE_DASH] = ACTIONS(159), - [anon_sym_BSLASH] = ACTIONS(161), - [sym_quotation_marks] = ACTIONS(163), - [sym_ellipsis] = ACTIONS(163), - [sym_em_dash] = ACTIONS(163), - [sym_en_dash] = ACTIONS(165), - [sym_backslash_escape] = ACTIONS(165), - [anon_sym_LT] = ACTIONS(167), - [sym_symbol] = ACTIONS(163), - [anon_sym_LBRACK_CARET] = ACTIONS(169), - [anon_sym_BANG_LBRACK] = ACTIONS(171), - [anon_sym_LBRACK] = ACTIONS(173), - [anon_sym_DOLLAR] = ACTIONS(175), - [anon_sym_TODO] = ACTIONS(177), - [anon_sym_WIP] = ACTIONS(177), - [anon_sym_NOTE] = ACTIONS(179), - [anon_sym_INFO] = ACTIONS(179), - [anon_sym_XXX] = ACTIONS(179), - [sym_fixme] = ACTIONS(163), - [sym__whitespace1] = ACTIONS(181), - [sym__newline] = ACTIONS(183), - [aux_sym__text_token1] = ACTIONS(185), - [sym__verbatim_begin] = ACTIONS(187), + [sym__inline_without_trailing_space] = STATE(909), + [sym__element] = STATE(536), + [sym_emphasis] = STATE(138), + [sym_emphasis_begin] = STATE(1092), + [sym_strong] = STATE(138), + [sym_strong_begin] = STATE(1093), + [sym_superscript] = STATE(138), + [sym_superscript_begin] = STATE(1094), + [sym_subscript] = STATE(138), + [sym_subscript_begin] = STATE(1095), + [sym_highlighted] = STATE(138), + [sym_highlighted_begin] = STATE(1096), + [sym_insert] = STATE(138), + [sym_insert_begin] = STATE(1097), + [sym_delete] = STATE(138), + [sym_delete_begin] = STATE(1098), + [sym_hard_line_break] = STATE(138), + [sym__smart_punctuation] = STATE(138), + [sym_autolink] = STATE(138), + [sym_footnote_reference] = STATE(138), + [sym_footnote_marker_begin] = STATE(1099), + [sym__image] = STATE(138), + [sym_full_reference_image] = STATE(138), + [sym_collapsed_reference_image] = STATE(138), + [sym_inline_image] = STATE(138), + [sym_image_description] = STATE(626), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(138), + [sym_full_reference_link] = STATE(138), + [sym_collapsed_reference_link] = STATE(138), + [sym_inline_link] = STATE(138), + [sym_link_text] = STATE(627), + [sym_span] = STATE(536), + [sym__bracketed_text_begin] = STATE(1183), + [sym__comment_with_spaces] = STATE(138), + [sym_raw_inline] = STATE(138), + [sym_math] = STATE(138), + [sym_verbatim] = STATE(138), + [sym__todo_highlights] = STATE(138), + [sym_todo] = STATE(138), + [sym_note] = STATE(138), + [sym__symbol_fallback] = STATE(138), + [aux_sym__text] = STATE(127), + [aux_sym__inline_repeat1] = STATE(118), + [anon_sym_LBRACE_] = ACTIONS(149), + [anon_sym__] = ACTIONS(151), + [anon_sym_LBRACE_STAR] = ACTIONS(153), + [anon_sym_STAR] = ACTIONS(155), + [anon_sym_LBRACE_CARET] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_LBRACE_TILDE] = ACTIONS(159), + [anon_sym_TILDE] = ACTIONS(159), + [anon_sym_LBRACE_EQ] = ACTIONS(161), + [anon_sym_LBRACE_PLUS] = ACTIONS(163), + [anon_sym_LBRACE_DASH] = ACTIONS(165), + [anon_sym_BSLASH] = ACTIONS(167), + [sym_quotation_marks] = ACTIONS(169), + [sym_ellipsis] = ACTIONS(169), + [sym_em_dash] = ACTIONS(169), + [sym_en_dash] = ACTIONS(171), + [sym_backslash_escape] = ACTIONS(171), + [anon_sym_LT] = ACTIONS(173), + [sym_symbol] = ACTIONS(169), + [anon_sym_LBRACK_CARET] = ACTIONS(175), + [anon_sym_BANG_LBRACK] = ACTIONS(177), + [anon_sym_LBRACK] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(181), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_TODO] = ACTIONS(185), + [anon_sym_WIP] = ACTIONS(185), + [anon_sym_NOTE] = ACTIONS(187), + [anon_sym_INFO] = ACTIONS(187), + [anon_sym_XXX] = ACTIONS(187), + [sym_fixme] = ACTIONS(169), + [sym__whitespace1] = ACTIONS(189), + [sym__newline] = ACTIONS(191), + [aux_sym__text_token1] = ACTIONS(193), + [sym__verbatim_begin] = ACTIONS(195), }, [27] = { - [sym__inline_without_trailing_space] = STATE(974), - [sym__element] = STATE(570), - [sym_emphasis] = STATE(152), - [sym_emphasis_begin] = STATE(1172), - [sym_strong] = STATE(152), - [sym_strong_begin] = STATE(1173), - [sym_superscript] = STATE(152), - [sym_superscript_begin] = STATE(1174), - [sym_subscript] = STATE(152), - [sym_subscript_begin] = STATE(1175), - [sym_highlighted] = STATE(152), - [sym_highlighted_begin] = STATE(1176), - [sym_insert] = STATE(152), - [sym_insert_begin] = STATE(1177), - [sym_delete] = STATE(152), - [sym_delete_begin] = STATE(1178), - [sym_hard_line_break] = STATE(152), - [sym__smart_punctuation] = STATE(152), - [sym_autolink] = STATE(152), - [sym_footnote_reference] = STATE(152), - [sym_footnote_marker_begin] = STATE(1179), - [sym__image] = STATE(152), - [sym_full_reference_image] = STATE(152), - [sym_collapsed_reference_image] = STATE(152), - [sym_inline_image] = STATE(152), - [sym_image_description] = STATE(704), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(152), - [sym_full_reference_link] = STATE(152), - [sym_collapsed_reference_link] = STATE(152), - [sym_inline_link] = STATE(152), - [sym_link_text] = STATE(706), - [sym_span] = STATE(570), - [sym__bracketed_text_begin] = STATE(1263), - [sym__comment_with_spaces] = STATE(152), - [sym_raw_inline] = STATE(152), - [sym_math] = STATE(152), - [sym_verbatim] = STATE(152), - [sym__todo_highlights] = STATE(152), - [sym_todo] = STATE(152), - [sym_note] = STATE(152), - [sym__symbol_fallback] = STATE(152), - [aux_sym__text] = STATE(133), - [aux_sym__inline_repeat1] = STATE(130), - [anon_sym_LBRACE_] = ACTIONS(448), - [anon_sym__] = ACTIONS(450), - [anon_sym_LBRACE_STAR] = ACTIONS(452), - [anon_sym_STAR] = ACTIONS(454), - [anon_sym_LBRACE_CARET] = ACTIONS(456), - [anon_sym_CARET] = ACTIONS(456), - [anon_sym_LBRACE_TILDE] = ACTIONS(458), - [anon_sym_TILDE] = ACTIONS(458), - [anon_sym_LBRACE_EQ] = ACTIONS(460), - [anon_sym_LBRACE_PLUS] = ACTIONS(462), - [anon_sym_LBRACE_DASH] = ACTIONS(464), - [anon_sym_BSLASH] = ACTIONS(466), - [sym_quotation_marks] = ACTIONS(468), - [sym_ellipsis] = ACTIONS(468), - [sym_em_dash] = ACTIONS(468), - [sym_en_dash] = ACTIONS(470), - [sym_backslash_escape] = ACTIONS(470), - [anon_sym_LT] = ACTIONS(472), - [sym_symbol] = ACTIONS(468), - [anon_sym_LBRACK_CARET] = ACTIONS(474), - [anon_sym_BANG_LBRACK] = ACTIONS(476), - [anon_sym_LBRACK] = ACTIONS(478), - [anon_sym_DOLLAR] = ACTIONS(480), - [anon_sym_TODO] = ACTIONS(482), - [anon_sym_WIP] = ACTIONS(482), - [anon_sym_NOTE] = ACTIONS(484), - [anon_sym_INFO] = ACTIONS(484), - [anon_sym_XXX] = ACTIONS(484), - [sym_fixme] = ACTIONS(468), - [sym__whitespace1] = ACTIONS(486), - [sym__newline] = ACTIONS(488), - [aux_sym__text_token1] = ACTIONS(490), - [sym__verbatim_begin] = ACTIONS(492), + [sym__inline_without_trailing_space] = STATE(908), + [sym__element] = STATE(581), + [sym_emphasis] = STATE(141), + [sym_emphasis_begin] = STATE(1082), + [sym_strong] = STATE(141), + [sym_strong_begin] = STATE(1083), + [sym_superscript] = STATE(141), + [sym_superscript_begin] = STATE(1084), + [sym_subscript] = STATE(141), + [sym_subscript_begin] = STATE(1085), + [sym_highlighted] = STATE(141), + [sym_highlighted_begin] = STATE(1086), + [sym_insert] = STATE(141), + [sym_insert_begin] = STATE(1087), + [sym_delete] = STATE(141), + [sym_delete_begin] = STATE(1088), + [sym_hard_line_break] = STATE(141), + [sym__smart_punctuation] = STATE(141), + [sym_autolink] = STATE(141), + [sym_footnote_reference] = STATE(141), + [sym_footnote_marker_begin] = STATE(1089), + [sym__image] = STATE(141), + [sym_full_reference_image] = STATE(141), + [sym_collapsed_reference_image] = STATE(141), + [sym_inline_image] = STATE(141), + [sym_image_description] = STATE(642), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(141), + [sym_full_reference_link] = STATE(141), + [sym_collapsed_reference_link] = STATE(141), + [sym_inline_link] = STATE(141), + [sym_link_text] = STATE(629), + [sym_span] = STATE(581), + [sym__bracketed_text_begin] = STATE(1182), + [sym__comment_with_spaces] = STATE(141), + [sym_raw_inline] = STATE(141), + [sym_math] = STATE(141), + [sym_verbatim] = STATE(141), + [sym__todo_highlights] = STATE(141), + [sym_todo] = STATE(141), + [sym_note] = STATE(141), + [sym__symbol_fallback] = STATE(141), + [aux_sym__text] = STATE(125), + [aux_sym__inline_repeat1] = STATE(119), + [anon_sym_LBRACE_] = ACTIONS(585), + [anon_sym__] = ACTIONS(587), + [anon_sym_LBRACE_STAR] = ACTIONS(589), + [anon_sym_STAR] = ACTIONS(591), + [anon_sym_LBRACE_CARET] = ACTIONS(593), + [anon_sym_CARET] = ACTIONS(593), + [anon_sym_LBRACE_TILDE] = ACTIONS(595), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_LBRACE_EQ] = ACTIONS(597), + [anon_sym_LBRACE_PLUS] = ACTIONS(599), + [anon_sym_LBRACE_DASH] = ACTIONS(601), + [anon_sym_BSLASH] = ACTIONS(603), + [sym_quotation_marks] = ACTIONS(605), + [sym_ellipsis] = ACTIONS(605), + [sym_em_dash] = ACTIONS(605), + [sym_en_dash] = ACTIONS(607), + [sym_backslash_escape] = ACTIONS(607), + [anon_sym_LT] = ACTIONS(609), + [sym_symbol] = ACTIONS(605), + [anon_sym_LBRACK_CARET] = ACTIONS(611), + [anon_sym_BANG_LBRACK] = ACTIONS(613), + [anon_sym_LBRACK] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [anon_sym_TODO] = ACTIONS(621), + [anon_sym_WIP] = ACTIONS(621), + [anon_sym_NOTE] = ACTIONS(623), + [anon_sym_INFO] = ACTIONS(623), + [anon_sym_XXX] = ACTIONS(623), + [sym_fixme] = ACTIONS(605), + [sym__whitespace1] = ACTIONS(625), + [sym__newline] = ACTIONS(627), + [aux_sym__text_token1] = ACTIONS(629), + [sym__verbatim_begin] = ACTIONS(631), }, [28] = { - [sym__inline_without_trailing_space] = STATE(973), - [sym__element] = STATE(623), - [sym_emphasis] = STATE(148), - [sym_emphasis_begin] = STATE(1163), - [sym_strong] = STATE(148), - [sym_strong_begin] = STATE(1164), - [sym_superscript] = STATE(148), - [sym_superscript_begin] = STATE(1165), - [sym_subscript] = STATE(148), - [sym_subscript_begin] = STATE(1166), - [sym_highlighted] = STATE(148), - [sym_highlighted_begin] = STATE(1167), - [sym_insert] = STATE(148), - [sym_insert_begin] = STATE(1168), - [sym_delete] = STATE(148), - [sym_delete_begin] = STATE(1169), - [sym_hard_line_break] = STATE(148), - [sym__smart_punctuation] = STATE(148), - [sym_autolink] = STATE(148), - [sym_footnote_reference] = STATE(148), - [sym_footnote_marker_begin] = STATE(1170), - [sym__image] = STATE(148), - [sym_full_reference_image] = STATE(148), - [sym_collapsed_reference_image] = STATE(148), - [sym_inline_image] = STATE(148), - [sym_image_description] = STATE(712), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(148), - [sym_full_reference_link] = STATE(148), - [sym_collapsed_reference_link] = STATE(148), - [sym_inline_link] = STATE(148), - [sym_link_text] = STATE(713), - [sym_span] = STATE(623), - [sym__bracketed_text_begin] = STATE(1262), - [sym__comment_with_spaces] = STATE(148), - [sym_raw_inline] = STATE(148), - [sym_math] = STATE(148), - [sym_verbatim] = STATE(148), - [sym__todo_highlights] = STATE(148), - [sym_todo] = STATE(148), - [sym_note] = STATE(148), - [sym__symbol_fallback] = STATE(148), - [aux_sym__text] = STATE(136), - [aux_sym__inline_repeat1] = STATE(129), - [anon_sym_LBRACE_] = ACTIONS(402), - [anon_sym__] = ACTIONS(404), - [anon_sym_LBRACE_STAR] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_LBRACE_CARET] = ACTIONS(410), - [anon_sym_CARET] = ACTIONS(410), - [anon_sym_LBRACE_TILDE] = ACTIONS(412), - [anon_sym_TILDE] = ACTIONS(412), - [anon_sym_LBRACE_EQ] = ACTIONS(414), - [anon_sym_LBRACE_PLUS] = ACTIONS(416), - [anon_sym_LBRACE_DASH] = ACTIONS(418), - [anon_sym_BSLASH] = ACTIONS(420), - [sym_quotation_marks] = ACTIONS(422), - [sym_ellipsis] = ACTIONS(422), - [sym_em_dash] = ACTIONS(422), - [sym_en_dash] = ACTIONS(424), - [sym_backslash_escape] = ACTIONS(424), - [anon_sym_LT] = ACTIONS(426), - [sym_symbol] = ACTIONS(422), - [anon_sym_LBRACK_CARET] = ACTIONS(428), - [anon_sym_BANG_LBRACK] = ACTIONS(430), - [anon_sym_LBRACK] = ACTIONS(432), - [anon_sym_DOLLAR] = ACTIONS(434), - [anon_sym_TODO] = ACTIONS(436), - [anon_sym_WIP] = ACTIONS(436), - [anon_sym_NOTE] = ACTIONS(438), - [anon_sym_INFO] = ACTIONS(438), - [anon_sym_XXX] = ACTIONS(438), - [sym_fixme] = ACTIONS(422), - [sym__whitespace1] = ACTIONS(440), - [sym__newline] = ACTIONS(442), - [aux_sym__text_token1] = ACTIONS(444), - [sym__verbatim_begin] = ACTIONS(446), + [sym__inline] = STATE(882), + [sym__element] = STATE(71), + [sym_emphasis] = STATE(132), + [sym_emphasis_begin] = STATE(1152), + [sym_strong] = STATE(132), + [sym_strong_begin] = STATE(1153), + [sym_superscript] = STATE(132), + [sym_superscript_begin] = STATE(1154), + [sym_subscript] = STATE(132), + [sym_subscript_begin] = STATE(1155), + [sym_highlighted] = STATE(132), + [sym_highlighted_begin] = STATE(1156), + [sym_insert] = STATE(132), + [sym_insert_begin] = STATE(1157), + [sym_delete] = STATE(132), + [sym_delete_begin] = STATE(1158), + [sym_hard_line_break] = STATE(132), + [sym__smart_punctuation] = STATE(132), + [sym_autolink] = STATE(132), + [sym_footnote_reference] = STATE(132), + [sym_footnote_marker_begin] = STATE(1159), + [sym__image] = STATE(132), + [sym_full_reference_image] = STATE(132), + [sym_collapsed_reference_image] = STATE(132), + [sym_inline_image] = STATE(132), + [sym_image_description] = STATE(633), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(132), + [sym_full_reference_link] = STATE(132), + [sym_collapsed_reference_link] = STATE(132), + [sym_inline_link] = STATE(132), + [sym_link_text] = STATE(631), + [sym_span] = STATE(71), + [sym__bracketed_text_begin] = STATE(1189), + [sym__comment_with_spaces] = STATE(132), + [sym_raw_inline] = STATE(132), + [sym_math] = STATE(132), + [sym_verbatim] = STATE(132), + [sym__todo_highlights] = STATE(132), + [sym_todo] = STATE(132), + [sym_note] = STATE(132), + [sym__symbol_fallback] = STATE(132), + [aux_sym__text] = STATE(128), + [aux_sym__inline_repeat1] = STATE(71), + [anon_sym_LBRACE_] = ACTIONS(441), + [anon_sym__] = ACTIONS(443), + [anon_sym_LBRACE_STAR] = ACTIONS(445), + [anon_sym_STAR] = ACTIONS(447), + [anon_sym_LBRACE_CARET] = ACTIONS(449), + [anon_sym_CARET] = ACTIONS(449), + [anon_sym_LBRACE_TILDE] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_LBRACE_EQ] = ACTIONS(453), + [anon_sym_LBRACE_PLUS] = ACTIONS(455), + [anon_sym_LBRACE_DASH] = ACTIONS(457), + [anon_sym_BSLASH] = ACTIONS(459), + [sym_quotation_marks] = ACTIONS(461), + [sym_ellipsis] = ACTIONS(461), + [sym_em_dash] = ACTIONS(461), + [sym_en_dash] = ACTIONS(463), + [sym_backslash_escape] = ACTIONS(463), + [anon_sym_LT] = ACTIONS(465), + [sym_symbol] = ACTIONS(461), + [anon_sym_LBRACK_CARET] = ACTIONS(467), + [anon_sym_BANG_LBRACK] = ACTIONS(469), + [anon_sym_LBRACK] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(473), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_TODO] = ACTIONS(477), + [anon_sym_WIP] = ACTIONS(477), + [anon_sym_NOTE] = ACTIONS(479), + [anon_sym_INFO] = ACTIONS(479), + [anon_sym_XXX] = ACTIONS(479), + [sym_fixme] = ACTIONS(461), + [sym__whitespace1] = ACTIONS(481), + [sym__newline] = ACTIONS(483), + [aux_sym__text_token1] = ACTIONS(485), + [sym__verbatim_begin] = ACTIONS(487), }, [29] = { - [sym__inline] = STATE(948), - [sym__element] = STATE(84), - [sym_emphasis] = STATE(146), - [sym_emphasis_begin] = STATE(1226), - [sym_strong] = STATE(146), - [sym_strong_begin] = STATE(1227), - [sym_superscript] = STATE(146), - [sym_superscript_begin] = STATE(1228), - [sym_subscript] = STATE(146), - [sym_subscript_begin] = STATE(1229), - [sym_highlighted] = STATE(146), - [sym_highlighted_begin] = STATE(1230), - [sym_insert] = STATE(146), - [sym_insert_begin] = STATE(1231), - [sym_delete] = STATE(146), - [sym_delete_begin] = STATE(1232), - [sym_hard_line_break] = STATE(146), - [sym__smart_punctuation] = STATE(146), - [sym_autolink] = STATE(146), - [sym_footnote_reference] = STATE(146), - [sym_footnote_marker_begin] = STATE(1233), - [sym__image] = STATE(146), - [sym_full_reference_image] = STATE(146), - [sym_collapsed_reference_image] = STATE(146), - [sym_inline_image] = STATE(146), - [sym_image_description] = STATE(694), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(146), - [sym_full_reference_link] = STATE(146), - [sym_collapsed_reference_link] = STATE(146), - [sym_inline_link] = STATE(146), - [sym_link_text] = STATE(693), - [sym_span] = STATE(84), - [sym__bracketed_text_begin] = STATE(1269), - [sym__comment_with_spaces] = STATE(146), - [sym_raw_inline] = STATE(146), - [sym_math] = STATE(146), - [sym_verbatim] = STATE(146), - [sym__todo_highlights] = STATE(146), - [sym_todo] = STATE(146), - [sym_note] = STATE(146), - [sym__symbol_fallback] = STATE(146), - [aux_sym__text] = STATE(141), - [aux_sym__inline_repeat1] = STATE(84), - [anon_sym_LBRACE_] = ACTIONS(356), - [anon_sym__] = ACTIONS(358), - [anon_sym_LBRACE_STAR] = ACTIONS(360), - [anon_sym_STAR] = ACTIONS(362), - [anon_sym_LBRACE_CARET] = ACTIONS(364), - [anon_sym_CARET] = ACTIONS(364), - [anon_sym_LBRACE_TILDE] = ACTIONS(366), - [anon_sym_TILDE] = ACTIONS(366), - [anon_sym_LBRACE_EQ] = ACTIONS(368), - [anon_sym_LBRACE_PLUS] = ACTIONS(370), - [anon_sym_LBRACE_DASH] = ACTIONS(372), - [anon_sym_BSLASH] = ACTIONS(374), - [sym_quotation_marks] = ACTIONS(376), - [sym_ellipsis] = ACTIONS(376), - [sym_em_dash] = ACTIONS(376), - [sym_en_dash] = ACTIONS(378), - [sym_backslash_escape] = ACTIONS(378), - [anon_sym_LT] = ACTIONS(380), - [sym_symbol] = ACTIONS(376), - [anon_sym_LBRACK_CARET] = ACTIONS(382), - [anon_sym_BANG_LBRACK] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(386), - [anon_sym_DOLLAR] = ACTIONS(388), - [anon_sym_TODO] = ACTIONS(390), - [anon_sym_WIP] = ACTIONS(390), - [anon_sym_NOTE] = ACTIONS(392), - [anon_sym_INFO] = ACTIONS(392), - [anon_sym_XXX] = ACTIONS(392), - [sym_fixme] = ACTIONS(376), - [sym__whitespace1] = ACTIONS(394), - [sym__newline] = ACTIONS(396), - [aux_sym__text_token1] = ACTIONS(398), - [sym__verbatim_begin] = ACTIONS(400), + [sym__inline] = STATE(880), + [sym__element] = STATE(65), + [sym_emphasis] = STATE(133), + [sym_emphasis_begin] = STATE(1142), + [sym_strong] = STATE(133), + [sym_strong_begin] = STATE(1143), + [sym_superscript] = STATE(133), + [sym_superscript_begin] = STATE(1144), + [sym_subscript] = STATE(133), + [sym_subscript_begin] = STATE(1145), + [sym_highlighted] = STATE(133), + [sym_highlighted_begin] = STATE(1146), + [sym_insert] = STATE(133), + [sym_insert_begin] = STATE(1147), + [sym_delete] = STATE(133), + [sym_delete_begin] = STATE(1148), + [sym_hard_line_break] = STATE(133), + [sym__smart_punctuation] = STATE(133), + [sym_autolink] = STATE(133), + [sym_footnote_reference] = STATE(133), + [sym_footnote_marker_begin] = STATE(1149), + [sym__image] = STATE(133), + [sym_full_reference_image] = STATE(133), + [sym_collapsed_reference_image] = STATE(133), + [sym_inline_image] = STATE(133), + [sym_image_description] = STATE(638), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(133), + [sym_full_reference_link] = STATE(133), + [sym_collapsed_reference_link] = STATE(133), + [sym_inline_link] = STATE(133), + [sym_link_text] = STATE(637), + [sym_span] = STATE(65), + [sym__bracketed_text_begin] = STATE(1188), + [sym__comment_with_spaces] = STATE(133), + [sym_raw_inline] = STATE(133), + [sym_math] = STATE(133), + [sym_verbatim] = STATE(133), + [sym__todo_highlights] = STATE(133), + [sym_todo] = STATE(133), + [sym_note] = STATE(133), + [sym__symbol_fallback] = STATE(133), + [aux_sym__text] = STATE(129), + [aux_sym__inline_repeat1] = STATE(65), + [anon_sym_LBRACE_] = ACTIONS(489), + [anon_sym__] = ACTIONS(491), + [anon_sym_LBRACE_STAR] = ACTIONS(493), + [anon_sym_STAR] = ACTIONS(495), + [anon_sym_LBRACE_CARET] = ACTIONS(497), + [anon_sym_CARET] = ACTIONS(497), + [anon_sym_LBRACE_TILDE] = ACTIONS(499), + [anon_sym_TILDE] = ACTIONS(499), + [anon_sym_LBRACE_EQ] = ACTIONS(501), + [anon_sym_LBRACE_PLUS] = ACTIONS(503), + [anon_sym_LBRACE_DASH] = ACTIONS(505), + [anon_sym_BSLASH] = ACTIONS(507), + [sym_quotation_marks] = ACTIONS(509), + [sym_ellipsis] = ACTIONS(509), + [sym_em_dash] = ACTIONS(509), + [sym_en_dash] = ACTIONS(511), + [sym_backslash_escape] = ACTIONS(511), + [anon_sym_LT] = ACTIONS(513), + [sym_symbol] = ACTIONS(509), + [anon_sym_LBRACK_CARET] = ACTIONS(515), + [anon_sym_BANG_LBRACK] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(519), + [anon_sym_LPAREN] = ACTIONS(521), + [anon_sym_DOLLAR] = ACTIONS(523), + [anon_sym_TODO] = ACTIONS(525), + [anon_sym_WIP] = ACTIONS(525), + [anon_sym_NOTE] = ACTIONS(527), + [anon_sym_INFO] = ACTIONS(527), + [anon_sym_XXX] = ACTIONS(527), + [sym_fixme] = ACTIONS(509), + [sym__whitespace1] = ACTIONS(529), + [sym__newline] = ACTIONS(531), + [aux_sym__text_token1] = ACTIONS(533), + [sym__verbatim_begin] = ACTIONS(535), }, [30] = { - [sym__inline] = STATE(946), - [sym__element] = STATE(46), - [sym_emphasis] = STATE(147), - [sym_emphasis_begin] = STATE(1217), - [sym_strong] = STATE(147), - [sym_strong_begin] = STATE(1218), - [sym_superscript] = STATE(147), - [sym_superscript_begin] = STATE(1219), - [sym_subscript] = STATE(147), - [sym_subscript_begin] = STATE(1220), - [sym_highlighted] = STATE(147), - [sym_highlighted_begin] = STATE(1221), - [sym_insert] = STATE(147), - [sym_insert_begin] = STATE(1222), - [sym_delete] = STATE(147), - [sym_delete_begin] = STATE(1223), - [sym_hard_line_break] = STATE(147), - [sym__smart_punctuation] = STATE(147), - [sym_autolink] = STATE(147), - [sym_footnote_reference] = STATE(147), - [sym_footnote_marker_begin] = STATE(1224), - [sym__image] = STATE(147), - [sym_full_reference_image] = STATE(147), - [sym_collapsed_reference_image] = STATE(147), - [sym_inline_image] = STATE(147), - [sym_image_description] = STATE(699), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(147), - [sym_full_reference_link] = STATE(147), - [sym_collapsed_reference_link] = STATE(147), - [sym_inline_link] = STATE(147), - [sym_link_text] = STATE(698), - [sym_span] = STATE(46), - [sym__bracketed_text_begin] = STATE(1268), - [sym__comment_with_spaces] = STATE(147), - [sym_raw_inline] = STATE(147), - [sym_math] = STATE(147), - [sym_verbatim] = STATE(147), - [sym__todo_highlights] = STATE(147), - [sym_todo] = STATE(147), - [sym_note] = STATE(147), - [sym__symbol_fallback] = STATE(147), - [aux_sym__text] = STATE(132), - [aux_sym__inline_repeat1] = STATE(46), - [anon_sym_LBRACE_] = ACTIONS(189), - [anon_sym__] = ACTIONS(191), - [anon_sym_LBRACE_STAR] = ACTIONS(193), - [anon_sym_STAR] = ACTIONS(195), - [anon_sym_LBRACE_CARET] = ACTIONS(197), - [anon_sym_CARET] = ACTIONS(197), - [anon_sym_LBRACE_TILDE] = ACTIONS(199), - [anon_sym_TILDE] = ACTIONS(199), - [anon_sym_LBRACE_EQ] = ACTIONS(201), - [anon_sym_LBRACE_PLUS] = ACTIONS(203), - [anon_sym_LBRACE_DASH] = ACTIONS(205), - [anon_sym_BSLASH] = ACTIONS(207), - [sym_quotation_marks] = ACTIONS(209), - [sym_ellipsis] = ACTIONS(209), - [sym_em_dash] = ACTIONS(209), - [sym_en_dash] = ACTIONS(211), - [sym_backslash_escape] = ACTIONS(211), - [anon_sym_LT] = ACTIONS(213), - [sym_symbol] = ACTIONS(209), - [anon_sym_LBRACK_CARET] = ACTIONS(215), - [anon_sym_BANG_LBRACK] = ACTIONS(217), - [anon_sym_LBRACK] = ACTIONS(219), - [anon_sym_DOLLAR] = ACTIONS(221), - [anon_sym_TODO] = ACTIONS(223), - [anon_sym_WIP] = ACTIONS(223), - [anon_sym_NOTE] = ACTIONS(225), - [anon_sym_INFO] = ACTIONS(225), - [anon_sym_XXX] = ACTIONS(225), - [sym_fixme] = ACTIONS(209), - [sym__whitespace1] = ACTIONS(227), - [sym__newline] = ACTIONS(229), - [aux_sym__text_token1] = ACTIONS(231), - [sym__verbatim_begin] = ACTIONS(233), + [sym__inline] = STATE(879), + [sym__element] = STATE(37), + [sym_emphasis] = STATE(131), + [sym_emphasis_begin] = STATE(1132), + [sym_strong] = STATE(131), + [sym_strong_begin] = STATE(1133), + [sym_superscript] = STATE(131), + [sym_superscript_begin] = STATE(1134), + [sym_subscript] = STATE(131), + [sym_subscript_begin] = STATE(1135), + [sym_highlighted] = STATE(131), + [sym_highlighted_begin] = STATE(1136), + [sym_insert] = STATE(131), + [sym_insert_begin] = STATE(1137), + [sym_delete] = STATE(131), + [sym_delete_begin] = STATE(1138), + [sym_hard_line_break] = STATE(131), + [sym__smart_punctuation] = STATE(131), + [sym_autolink] = STATE(131), + [sym_footnote_reference] = STATE(131), + [sym_footnote_marker_begin] = STATE(1139), + [sym__image] = STATE(131), + [sym_full_reference_image] = STATE(131), + [sym_collapsed_reference_image] = STATE(131), + [sym_inline_image] = STATE(131), + [sym_image_description] = STATE(643), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(131), + [sym_full_reference_link] = STATE(131), + [sym_collapsed_reference_link] = STATE(131), + [sym_inline_link] = STATE(131), + [sym_link_text] = STATE(619), + [sym_span] = STATE(37), + [sym__bracketed_text_begin] = STATE(1187), + [sym__comment_with_spaces] = STATE(131), + [sym_raw_inline] = STATE(131), + [sym_math] = STATE(131), + [sym_verbatim] = STATE(131), + [sym__todo_highlights] = STATE(131), + [sym_todo] = STATE(131), + [sym_note] = STATE(131), + [sym__symbol_fallback] = STATE(131), + [aux_sym__text] = STATE(123), + [aux_sym__inline_repeat1] = STATE(37), + [anon_sym_LBRACE_] = ACTIONS(537), + [anon_sym__] = ACTIONS(539), + [anon_sym_LBRACE_STAR] = ACTIONS(541), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE_CARET] = ACTIONS(545), + [anon_sym_CARET] = ACTIONS(545), + [anon_sym_LBRACE_TILDE] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(547), + [anon_sym_LBRACE_EQ] = ACTIONS(549), + [anon_sym_LBRACE_PLUS] = ACTIONS(551), + [anon_sym_LBRACE_DASH] = ACTIONS(553), + [anon_sym_BSLASH] = ACTIONS(555), + [sym_quotation_marks] = ACTIONS(557), + [sym_ellipsis] = ACTIONS(557), + [sym_em_dash] = ACTIONS(557), + [sym_en_dash] = ACTIONS(559), + [sym_backslash_escape] = ACTIONS(559), + [anon_sym_LT] = ACTIONS(561), + [sym_symbol] = ACTIONS(557), + [anon_sym_LBRACK_CARET] = ACTIONS(563), + [anon_sym_BANG_LBRACK] = ACTIONS(565), + [anon_sym_LBRACK] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_DOLLAR] = ACTIONS(571), + [anon_sym_TODO] = ACTIONS(573), + [anon_sym_WIP] = ACTIONS(573), + [anon_sym_NOTE] = ACTIONS(575), + [anon_sym_INFO] = ACTIONS(575), + [anon_sym_XXX] = ACTIONS(575), + [sym_fixme] = ACTIONS(557), + [sym__whitespace1] = ACTIONS(577), + [sym__newline] = ACTIONS(579), + [aux_sym__text_token1] = ACTIONS(581), + [sym__verbatim_begin] = ACTIONS(583), }, [31] = { - [sym__inline] = STATE(945), - [sym__element] = STATE(7), - [sym_emphasis] = STATE(153), - [sym_emphasis_begin] = STATE(1208), - [sym_strong] = STATE(153), - [sym_strong_begin] = STATE(1209), - [sym_superscript] = STATE(153), - [sym_superscript_begin] = STATE(1210), - [sym_subscript] = STATE(153), - [sym_subscript_begin] = STATE(1211), - [sym_highlighted] = STATE(153), - [sym_highlighted_begin] = STATE(1212), - [sym_insert] = STATE(153), - [sym_insert_begin] = STATE(1213), - [sym_delete] = STATE(153), - [sym_delete_begin] = STATE(1214), - [sym_hard_line_break] = STATE(153), - [sym__smart_punctuation] = STATE(153), - [sym_autolink] = STATE(153), - [sym_footnote_reference] = STATE(153), - [sym_footnote_marker_begin] = STATE(1215), - [sym__image] = STATE(153), - [sym_full_reference_image] = STATE(153), - [sym_collapsed_reference_image] = STATE(153), - [sym_inline_image] = STATE(153), - [sym_image_description] = STATE(707), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(153), - [sym_full_reference_link] = STATE(153), - [sym_collapsed_reference_link] = STATE(153), - [sym_inline_link] = STATE(153), - [sym_link_text] = STATE(705), - [sym_span] = STATE(7), - [sym__bracketed_text_begin] = STATE(1267), - [sym__comment_with_spaces] = STATE(153), - [sym_raw_inline] = STATE(153), - [sym_math] = STATE(153), - [sym_verbatim] = STATE(153), - [sym__todo_highlights] = STATE(153), - [sym_todo] = STATE(153), - [sym_note] = STATE(153), - [sym__symbol_fallback] = STATE(153), - [aux_sym__text] = STATE(134), - [aux_sym__inline_repeat1] = STATE(7), - [anon_sym_LBRACE_] = ACTIONS(97), - [anon_sym__] = ACTIONS(99), - [anon_sym_LBRACE_STAR] = ACTIONS(101), - [anon_sym_STAR] = ACTIONS(103), - [anon_sym_LBRACE_CARET] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [anon_sym_LBRACE_TILDE] = ACTIONS(107), - [anon_sym_TILDE] = ACTIONS(107), - [anon_sym_LBRACE_EQ] = ACTIONS(109), - [anon_sym_LBRACE_PLUS] = ACTIONS(111), - [anon_sym_LBRACE_DASH] = ACTIONS(113), - [anon_sym_BSLASH] = ACTIONS(115), - [sym_quotation_marks] = ACTIONS(117), - [sym_ellipsis] = ACTIONS(117), - [sym_em_dash] = ACTIONS(117), - [sym_en_dash] = ACTIONS(119), - [sym_backslash_escape] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [sym_symbol] = ACTIONS(117), - [anon_sym_LBRACK_CARET] = ACTIONS(123), - [anon_sym_BANG_LBRACK] = ACTIONS(125), - [anon_sym_LBRACK] = ACTIONS(127), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_TODO] = ACTIONS(131), - [anon_sym_WIP] = ACTIONS(131), - [anon_sym_NOTE] = ACTIONS(133), - [anon_sym_INFO] = ACTIONS(133), - [anon_sym_XXX] = ACTIONS(133), - [sym_fixme] = ACTIONS(117), - [sym__whitespace1] = ACTIONS(135), - [sym__newline] = ACTIONS(137), - [aux_sym__text_token1] = ACTIONS(139), - [sym__verbatim_begin] = ACTIONS(141), + [sym__inline] = STATE(878), + [sym__element] = STATE(14), + [sym_emphasis] = STATE(136), + [sym_emphasis_begin] = STATE(1122), + [sym_strong] = STATE(136), + [sym_strong_begin] = STATE(1123), + [sym_superscript] = STATE(136), + [sym_superscript_begin] = STATE(1124), + [sym_subscript] = STATE(136), + [sym_subscript_begin] = STATE(1125), + [sym_highlighted] = STATE(136), + [sym_highlighted_begin] = STATE(1126), + [sym_insert] = STATE(136), + [sym_insert_begin] = STATE(1127), + [sym_delete] = STATE(136), + [sym_delete_begin] = STATE(1128), + [sym_hard_line_break] = STATE(136), + [sym__smart_punctuation] = STATE(136), + [sym_autolink] = STATE(136), + [sym_footnote_reference] = STATE(136), + [sym_footnote_marker_begin] = STATE(1129), + [sym__image] = STATE(136), + [sym_full_reference_image] = STATE(136), + [sym_collapsed_reference_image] = STATE(136), + [sym_inline_image] = STATE(136), + [sym_image_description] = STATE(651), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(136), + [sym_full_reference_link] = STATE(136), + [sym_collapsed_reference_link] = STATE(136), + [sym_inline_link] = STATE(136), + [sym_link_text] = STATE(650), + [sym_span] = STATE(14), + [sym__bracketed_text_begin] = STATE(1186), + [sym__comment_with_spaces] = STATE(136), + [sym_raw_inline] = STATE(136), + [sym_math] = STATE(136), + [sym_verbatim] = STATE(136), + [sym__todo_highlights] = STATE(136), + [sym_todo] = STATE(136), + [sym_note] = STATE(136), + [sym__symbol_fallback] = STATE(136), + [aux_sym__text] = STATE(130), + [aux_sym__inline_repeat1] = STATE(14), + [anon_sym_LBRACE_] = ACTIONS(319), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_STAR] = ACTIONS(323), + [anon_sym_STAR] = ACTIONS(325), + [anon_sym_LBRACE_CARET] = ACTIONS(327), + [anon_sym_CARET] = ACTIONS(327), + [anon_sym_LBRACE_TILDE] = ACTIONS(329), + [anon_sym_TILDE] = ACTIONS(329), + [anon_sym_LBRACE_EQ] = ACTIONS(331), + [anon_sym_LBRACE_PLUS] = ACTIONS(333), + [anon_sym_LBRACE_DASH] = ACTIONS(335), + [anon_sym_BSLASH] = ACTIONS(337), + [sym_quotation_marks] = ACTIONS(339), + [sym_ellipsis] = ACTIONS(339), + [sym_em_dash] = ACTIONS(339), + [sym_en_dash] = ACTIONS(341), + [sym_backslash_escape] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [sym_symbol] = ACTIONS(339), + [anon_sym_LBRACK_CARET] = ACTIONS(345), + [anon_sym_BANG_LBRACK] = ACTIONS(347), + [anon_sym_LBRACK] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_DOLLAR] = ACTIONS(353), + [anon_sym_TODO] = ACTIONS(355), + [anon_sym_WIP] = ACTIONS(355), + [anon_sym_NOTE] = ACTIONS(357), + [anon_sym_INFO] = ACTIONS(357), + [anon_sym_XXX] = ACTIONS(357), + [sym_fixme] = ACTIONS(339), + [sym__whitespace1] = ACTIONS(359), + [sym__newline] = ACTIONS(635), + [aux_sym__text_token1] = ACTIONS(363), + [sym__verbatim_begin] = ACTIONS(365), }, [32] = { - [sym__inline] = STATE(1029), - [sym__element] = STATE(124), - [sym_emphasis] = STATE(151), - [sym_emphasis_begin] = STATE(1181), - [sym_strong] = STATE(151), - [sym_strong_begin] = STATE(1182), - [sym_superscript] = STATE(151), - [sym_superscript_begin] = STATE(1183), - [sym_subscript] = STATE(151), - [sym_subscript_begin] = STATE(1184), - [sym_highlighted] = STATE(151), - [sym_highlighted_begin] = STATE(1185), - [sym_insert] = STATE(151), - [sym_insert_begin] = STATE(1186), - [sym_delete] = STATE(151), - [sym_delete_begin] = STATE(1187), - [sym_hard_line_break] = STATE(151), - [sym__smart_punctuation] = STATE(151), - [sym_autolink] = STATE(151), - [sym_footnote_reference] = STATE(151), - [sym_footnote_marker_begin] = STATE(1188), - [sym__image] = STATE(151), - [sym_full_reference_image] = STATE(151), - [sym_collapsed_reference_image] = STATE(151), - [sym_inline_image] = STATE(151), - [sym_image_description] = STATE(700), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(151), - [sym_full_reference_link] = STATE(151), - [sym_collapsed_reference_link] = STATE(151), - [sym_inline_link] = STATE(151), - [sym_link_text] = STATE(701), - [sym_span] = STATE(124), - [sym__bracketed_text_begin] = STATE(1264), - [sym__comment_with_spaces] = STATE(151), - [sym_raw_inline] = STATE(151), - [sym_math] = STATE(151), - [sym_verbatim] = STATE(151), - [sym__todo_highlights] = STATE(151), - [sym_todo] = STATE(151), - [sym_note] = STATE(151), - [sym__symbol_fallback] = STATE(151), - [aux_sym__text] = STATE(140), - [aux_sym__inline_repeat1] = STATE(124), - [anon_sym_LBRACE_] = ACTIONS(143), - [anon_sym__] = ACTIONS(145), - [anon_sym_LBRACE_STAR] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_LBRACE_CARET] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(151), - [anon_sym_LBRACE_TILDE] = ACTIONS(153), - [anon_sym_TILDE] = ACTIONS(153), - [anon_sym_LBRACE_EQ] = ACTIONS(155), - [anon_sym_LBRACE_PLUS] = ACTIONS(157), - [anon_sym_LBRACE_DASH] = ACTIONS(159), - [anon_sym_BSLASH] = ACTIONS(161), - [sym_quotation_marks] = ACTIONS(163), - [sym_ellipsis] = ACTIONS(163), - [sym_em_dash] = ACTIONS(163), - [sym_en_dash] = ACTIONS(165), - [sym_backslash_escape] = ACTIONS(165), - [anon_sym_LT] = ACTIONS(167), - [sym_symbol] = ACTIONS(163), - [anon_sym_LBRACK_CARET] = ACTIONS(169), - [anon_sym_BANG_LBRACK] = ACTIONS(171), - [anon_sym_LBRACK] = ACTIONS(173), - [anon_sym_DOLLAR] = ACTIONS(175), - [anon_sym_TODO] = ACTIONS(177), - [anon_sym_WIP] = ACTIONS(177), - [anon_sym_NOTE] = ACTIONS(179), - [anon_sym_INFO] = ACTIONS(179), - [anon_sym_XXX] = ACTIONS(179), - [sym_fixme] = ACTIONS(163), - [sym__whitespace1] = ACTIONS(181), - [sym__newline] = ACTIONS(183), - [aux_sym__text_token1] = ACTIONS(185), - [sym__verbatim_begin] = ACTIONS(187), + [sym__inline] = STATE(877), + [sym__element] = STATE(22), + [sym_emphasis] = STATE(137), + [sym_emphasis_begin] = STATE(1112), + [sym_strong] = STATE(137), + [sym_strong_begin] = STATE(1113), + [sym_superscript] = STATE(137), + [sym_superscript_begin] = STATE(1114), + [sym_subscript] = STATE(137), + [sym_subscript_begin] = STATE(1115), + [sym_highlighted] = STATE(137), + [sym_highlighted_begin] = STATE(1116), + [sym_insert] = STATE(137), + [sym_insert_begin] = STATE(1117), + [sym_delete] = STATE(137), + [sym_delete_begin] = STATE(1118), + [sym_hard_line_break] = STATE(137), + [sym__smart_punctuation] = STATE(137), + [sym_autolink] = STATE(137), + [sym_footnote_reference] = STATE(137), + [sym_footnote_marker_begin] = STATE(1119), + [sym__image] = STATE(137), + [sym_full_reference_image] = STATE(137), + [sym_collapsed_reference_image] = STATE(137), + [sym_inline_image] = STATE(137), + [sym_image_description] = STATE(636), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(137), + [sym_full_reference_link] = STATE(137), + [sym_collapsed_reference_link] = STATE(137), + [sym_inline_link] = STATE(137), + [sym_link_text] = STATE(647), + [sym_span] = STATE(22), + [sym__bracketed_text_begin] = STATE(1185), + [sym__comment_with_spaces] = STATE(137), + [sym_raw_inline] = STATE(137), + [sym_math] = STATE(137), + [sym_verbatim] = STATE(137), + [sym__todo_highlights] = STATE(137), + [sym_todo] = STATE(137), + [sym_note] = STATE(137), + [sym__symbol_fallback] = STATE(137), + [aux_sym__text] = STATE(122), + [aux_sym__inline_repeat1] = STATE(22), + [anon_sym_LBRACE_] = ACTIONS(197), + [anon_sym__] = ACTIONS(199), + [anon_sym_LBRACE_STAR] = ACTIONS(201), + [anon_sym_STAR] = ACTIONS(203), + [anon_sym_LBRACE_CARET] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(205), + [anon_sym_LBRACE_TILDE] = ACTIONS(207), + [anon_sym_TILDE] = ACTIONS(207), + [anon_sym_LBRACE_EQ] = ACTIONS(209), + [anon_sym_LBRACE_PLUS] = ACTIONS(211), + [anon_sym_LBRACE_DASH] = ACTIONS(213), + [anon_sym_BSLASH] = ACTIONS(215), + [sym_quotation_marks] = ACTIONS(217), + [sym_ellipsis] = ACTIONS(217), + [sym_em_dash] = ACTIONS(217), + [sym_en_dash] = ACTIONS(219), + [sym_backslash_escape] = ACTIONS(219), + [anon_sym_LT] = ACTIONS(221), + [sym_symbol] = ACTIONS(217), + [anon_sym_LBRACK_CARET] = ACTIONS(223), + [anon_sym_BANG_LBRACK] = ACTIONS(225), + [anon_sym_LBRACK] = ACTIONS(227), + [anon_sym_LPAREN] = ACTIONS(229), + [anon_sym_DOLLAR] = ACTIONS(231), + [anon_sym_TODO] = ACTIONS(233), + [anon_sym_WIP] = ACTIONS(233), + [anon_sym_NOTE] = ACTIONS(235), + [anon_sym_INFO] = ACTIONS(235), + [anon_sym_XXX] = ACTIONS(235), + [sym_fixme] = ACTIONS(217), + [sym__whitespace1] = ACTIONS(237), + [sym__newline] = ACTIONS(239), + [aux_sym__text_token1] = ACTIONS(241), + [sym__verbatim_begin] = ACTIONS(243), }, [33] = { [sym__inline] = STATE(944), - [sym__element] = STATE(21), - [sym_emphasis] = STATE(149), - [sym_emphasis_begin] = STATE(1199), - [sym_strong] = STATE(149), - [sym_strong_begin] = STATE(1200), - [sym_superscript] = STATE(149), - [sym_superscript_begin] = STATE(1201), - [sym_subscript] = STATE(149), - [sym_subscript_begin] = STATE(1202), - [sym_highlighted] = STATE(149), - [sym_highlighted_begin] = STATE(1203), - [sym_insert] = STATE(149), - [sym_insert_begin] = STATE(1204), - [sym_delete] = STATE(149), - [sym_delete_begin] = STATE(1205), - [sym_hard_line_break] = STATE(149), - [sym__smart_punctuation] = STATE(149), - [sym_autolink] = STATE(149), - [sym_footnote_reference] = STATE(149), - [sym_footnote_marker_begin] = STATE(1206), - [sym__image] = STATE(149), - [sym_full_reference_image] = STATE(149), - [sym_collapsed_reference_image] = STATE(149), - [sym_inline_image] = STATE(149), - [sym_image_description] = STATE(714), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(149), - [sym_full_reference_link] = STATE(149), - [sym_collapsed_reference_link] = STATE(149), - [sym_inline_link] = STATE(149), - [sym_link_text] = STATE(710), - [sym_span] = STATE(21), - [sym__bracketed_text_begin] = STATE(1266), - [sym__comment_with_spaces] = STATE(149), - [sym_raw_inline] = STATE(149), - [sym_math] = STATE(149), - [sym_verbatim] = STATE(149), - [sym__todo_highlights] = STATE(149), - [sym_todo] = STATE(149), - [sym_note] = STATE(149), - [sym__symbol_fallback] = STATE(149), - [aux_sym__text] = STATE(142), - [aux_sym__inline_repeat1] = STATE(21), - [anon_sym_LBRACE_] = ACTIONS(494), - [anon_sym__] = ACTIONS(496), - [anon_sym_LBRACE_STAR] = ACTIONS(498), - [anon_sym_STAR] = ACTIONS(500), - [anon_sym_LBRACE_CARET] = ACTIONS(502), - [anon_sym_CARET] = ACTIONS(502), - [anon_sym_LBRACE_TILDE] = ACTIONS(504), - [anon_sym_TILDE] = ACTIONS(504), - [anon_sym_LBRACE_EQ] = ACTIONS(506), - [anon_sym_LBRACE_PLUS] = ACTIONS(508), - [anon_sym_LBRACE_DASH] = ACTIONS(510), - [anon_sym_BSLASH] = ACTIONS(512), - [sym_quotation_marks] = ACTIONS(514), - [sym_ellipsis] = ACTIONS(514), - [sym_em_dash] = ACTIONS(514), - [sym_en_dash] = ACTIONS(516), - [sym_backslash_escape] = ACTIONS(516), - [anon_sym_LT] = ACTIONS(518), - [sym_symbol] = ACTIONS(514), - [anon_sym_LBRACK_CARET] = ACTIONS(520), - [anon_sym_BANG_LBRACK] = ACTIONS(522), - [anon_sym_LBRACK] = ACTIONS(524), - [anon_sym_DOLLAR] = ACTIONS(526), - [anon_sym_TODO] = ACTIONS(528), - [anon_sym_WIP] = ACTIONS(528), - [anon_sym_NOTE] = ACTIONS(530), - [anon_sym_INFO] = ACTIONS(530), - [anon_sym_XXX] = ACTIONS(530), - [sym_fixme] = ACTIONS(514), - [sym__whitespace1] = ACTIONS(532), - [sym__newline] = ACTIONS(540), - [aux_sym__text_token1] = ACTIONS(536), - [sym__verbatim_begin] = ACTIONS(538), + [sym__element] = STATE(106), + [sym_emphasis] = STATE(139), + [sym_emphasis_begin] = STATE(1102), + [sym_strong] = STATE(139), + [sym_strong_begin] = STATE(1103), + [sym_superscript] = STATE(139), + [sym_superscript_begin] = STATE(1104), + [sym_subscript] = STATE(139), + [sym_subscript_begin] = STATE(1105), + [sym_highlighted] = STATE(139), + [sym_highlighted_begin] = STATE(1106), + [sym_insert] = STATE(139), + [sym_insert_begin] = STATE(1107), + [sym_delete] = STATE(139), + [sym_delete_begin] = STATE(1108), + [sym_hard_line_break] = STATE(139), + [sym__smart_punctuation] = STATE(139), + [sym_autolink] = STATE(139), + [sym_footnote_reference] = STATE(139), + [sym_footnote_marker_begin] = STATE(1109), + [sym__image] = STATE(139), + [sym_full_reference_image] = STATE(139), + [sym_collapsed_reference_image] = STATE(139), + [sym_inline_image] = STATE(139), + [sym_image_description] = STATE(623), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(139), + [sym_full_reference_link] = STATE(139), + [sym_collapsed_reference_link] = STATE(139), + [sym_inline_link] = STATE(139), + [sym_link_text] = STATE(621), + [sym_span] = STATE(106), + [sym__bracketed_text_begin] = STATE(1184), + [sym__comment_with_spaces] = STATE(139), + [sym_raw_inline] = STATE(139), + [sym_math] = STATE(139), + [sym_verbatim] = STATE(139), + [sym__todo_highlights] = STATE(139), + [sym_todo] = STATE(139), + [sym_note] = STATE(139), + [sym__symbol_fallback] = STATE(139), + [aux_sym__text] = STATE(126), + [aux_sym__inline_repeat1] = STATE(106), + [anon_sym_LBRACE_] = ACTIONS(101), + [anon_sym__] = ACTIONS(103), + [anon_sym_LBRACE_STAR] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(107), + [anon_sym_LBRACE_CARET] = ACTIONS(109), + [anon_sym_CARET] = ACTIONS(109), + [anon_sym_LBRACE_TILDE] = ACTIONS(111), + [anon_sym_TILDE] = ACTIONS(111), + [anon_sym_LBRACE_EQ] = ACTIONS(113), + [anon_sym_LBRACE_PLUS] = ACTIONS(115), + [anon_sym_LBRACE_DASH] = ACTIONS(117), + [anon_sym_BSLASH] = ACTIONS(119), + [sym_quotation_marks] = ACTIONS(121), + [sym_ellipsis] = ACTIONS(121), + [sym_em_dash] = ACTIONS(121), + [sym_en_dash] = ACTIONS(123), + [sym_backslash_escape] = ACTIONS(123), + [anon_sym_LT] = ACTIONS(125), + [sym_symbol] = ACTIONS(121), + [anon_sym_LBRACK_CARET] = ACTIONS(127), + [anon_sym_BANG_LBRACK] = ACTIONS(129), + [anon_sym_LBRACK] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_DOLLAR] = ACTIONS(135), + [anon_sym_TODO] = ACTIONS(137), + [anon_sym_WIP] = ACTIONS(137), + [anon_sym_NOTE] = ACTIONS(139), + [anon_sym_INFO] = ACTIONS(139), + [anon_sym_XXX] = ACTIONS(139), + [sym_fixme] = ACTIONS(121), + [sym__whitespace1] = ACTIONS(141), + [sym__newline] = ACTIONS(143), + [aux_sym__text_token1] = ACTIONS(145), + [sym__verbatim_begin] = ACTIONS(147), }, [34] = { - [sym__inline] = STATE(1007), - [sym__element] = STATE(80), - [sym_emphasis] = STATE(145), - [sym_emphasis_begin] = STATE(1190), - [sym_strong] = STATE(145), - [sym_strong_begin] = STATE(1191), - [sym_superscript] = STATE(145), - [sym_superscript_begin] = STATE(1192), - [sym_subscript] = STATE(145), - [sym_subscript_begin] = STATE(1193), - [sym_highlighted] = STATE(145), - [sym_highlighted_begin] = STATE(1194), - [sym_insert] = STATE(145), - [sym_insert_begin] = STATE(1195), - [sym_delete] = STATE(145), - [sym_delete_begin] = STATE(1196), - [sym_hard_line_break] = STATE(145), - [sym__smart_punctuation] = STATE(145), - [sym_autolink] = STATE(145), - [sym_footnote_reference] = STATE(145), - [sym_footnote_marker_begin] = STATE(1197), - [sym__image] = STATE(145), - [sym_full_reference_image] = STATE(145), - [sym_collapsed_reference_image] = STATE(145), - [sym_inline_image] = STATE(145), - [sym_image_description] = STATE(696), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(145), - [sym_full_reference_link] = STATE(145), - [sym_collapsed_reference_link] = STATE(145), - [sym_inline_link] = STATE(145), - [sym_link_text] = STATE(691), - [sym_span] = STATE(80), - [sym__bracketed_text_begin] = STATE(1265), - [sym__comment_with_spaces] = STATE(145), - [sym_raw_inline] = STATE(145), - [sym_math] = STATE(145), - [sym_verbatim] = STATE(145), - [sym__todo_highlights] = STATE(145), - [sym_todo] = STATE(145), - [sym_note] = STATE(145), - [sym__symbol_fallback] = STATE(145), - [aux_sym__text] = STATE(138), - [aux_sym__inline_repeat1] = STATE(80), - [anon_sym_LBRACE_] = ACTIONS(542), - [anon_sym__] = ACTIONS(544), - [anon_sym_LBRACE_STAR] = ACTIONS(546), - [anon_sym_STAR] = ACTIONS(548), - [anon_sym_LBRACE_CARET] = ACTIONS(550), - [anon_sym_CARET] = ACTIONS(550), - [anon_sym_LBRACE_TILDE] = ACTIONS(552), - [anon_sym_TILDE] = ACTIONS(552), - [anon_sym_LBRACE_EQ] = ACTIONS(554), - [anon_sym_LBRACE_PLUS] = ACTIONS(556), - [anon_sym_LBRACE_DASH] = ACTIONS(558), - [anon_sym_BSLASH] = ACTIONS(560), - [sym_quotation_marks] = ACTIONS(562), - [sym_ellipsis] = ACTIONS(562), - [sym_em_dash] = ACTIONS(562), - [sym_en_dash] = ACTIONS(564), - [sym_backslash_escape] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(566), - [sym_symbol] = ACTIONS(562), - [anon_sym_LBRACK_CARET] = ACTIONS(568), - [anon_sym_BANG_LBRACK] = ACTIONS(570), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_DOLLAR] = ACTIONS(574), - [anon_sym_TODO] = ACTIONS(576), - [anon_sym_WIP] = ACTIONS(576), - [anon_sym_NOTE] = ACTIONS(578), - [anon_sym_INFO] = ACTIONS(578), - [anon_sym_XXX] = ACTIONS(578), - [sym_fixme] = ACTIONS(562), - [sym__whitespace1] = ACTIONS(580), - [sym__newline] = ACTIONS(582), - [aux_sym__text_token1] = ACTIONS(584), - [sym__verbatim_begin] = ACTIONS(586), + [sym__inline] = STATE(876), + [sym__element] = STATE(106), + [sym_emphasis] = STATE(139), + [sym_emphasis_begin] = STATE(1102), + [sym_strong] = STATE(139), + [sym_strong_begin] = STATE(1103), + [sym_superscript] = STATE(139), + [sym_superscript_begin] = STATE(1104), + [sym_subscript] = STATE(139), + [sym_subscript_begin] = STATE(1105), + [sym_highlighted] = STATE(139), + [sym_highlighted_begin] = STATE(1106), + [sym_insert] = STATE(139), + [sym_insert_begin] = STATE(1107), + [sym_delete] = STATE(139), + [sym_delete_begin] = STATE(1108), + [sym_hard_line_break] = STATE(139), + [sym__smart_punctuation] = STATE(139), + [sym_autolink] = STATE(139), + [sym_footnote_reference] = STATE(139), + [sym_footnote_marker_begin] = STATE(1109), + [sym__image] = STATE(139), + [sym_full_reference_image] = STATE(139), + [sym_collapsed_reference_image] = STATE(139), + [sym_inline_image] = STATE(139), + [sym_image_description] = STATE(623), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(139), + [sym_full_reference_link] = STATE(139), + [sym_collapsed_reference_link] = STATE(139), + [sym_inline_link] = STATE(139), + [sym_link_text] = STATE(621), + [sym_span] = STATE(106), + [sym__bracketed_text_begin] = STATE(1184), + [sym__comment_with_spaces] = STATE(139), + [sym_raw_inline] = STATE(139), + [sym_math] = STATE(139), + [sym_verbatim] = STATE(139), + [sym__todo_highlights] = STATE(139), + [sym_todo] = STATE(139), + [sym_note] = STATE(139), + [sym__symbol_fallback] = STATE(139), + [aux_sym__text] = STATE(126), + [aux_sym__inline_repeat1] = STATE(106), + [anon_sym_LBRACE_] = ACTIONS(101), + [anon_sym__] = ACTIONS(103), + [anon_sym_LBRACE_STAR] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(107), + [anon_sym_LBRACE_CARET] = ACTIONS(109), + [anon_sym_CARET] = ACTIONS(109), + [anon_sym_LBRACE_TILDE] = ACTIONS(111), + [anon_sym_TILDE] = ACTIONS(111), + [anon_sym_LBRACE_EQ] = ACTIONS(113), + [anon_sym_LBRACE_PLUS] = ACTIONS(115), + [anon_sym_LBRACE_DASH] = ACTIONS(117), + [anon_sym_BSLASH] = ACTIONS(119), + [sym_quotation_marks] = ACTIONS(121), + [sym_ellipsis] = ACTIONS(121), + [sym_em_dash] = ACTIONS(121), + [sym_en_dash] = ACTIONS(123), + [sym_backslash_escape] = ACTIONS(123), + [anon_sym_LT] = ACTIONS(125), + [sym_symbol] = ACTIONS(121), + [anon_sym_LBRACK_CARET] = ACTIONS(127), + [anon_sym_BANG_LBRACK] = ACTIONS(129), + [anon_sym_LBRACK] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_DOLLAR] = ACTIONS(135), + [anon_sym_TODO] = ACTIONS(137), + [anon_sym_WIP] = ACTIONS(137), + [anon_sym_NOTE] = ACTIONS(139), + [anon_sym_INFO] = ACTIONS(139), + [anon_sym_XXX] = ACTIONS(139), + [sym_fixme] = ACTIONS(121), + [sym__whitespace1] = ACTIONS(141), + [sym__newline] = ACTIONS(143), + [aux_sym__text_token1] = ACTIONS(145), + [sym__verbatim_begin] = ACTIONS(147), }, [35] = { [sym__inline] = STATE(943), - [sym__element] = STATE(80), - [sym_emphasis] = STATE(145), - [sym_emphasis_begin] = STATE(1190), - [sym_strong] = STATE(145), - [sym_strong_begin] = STATE(1191), - [sym_superscript] = STATE(145), - [sym_superscript_begin] = STATE(1192), - [sym_subscript] = STATE(145), - [sym_subscript_begin] = STATE(1193), - [sym_highlighted] = STATE(145), - [sym_highlighted_begin] = STATE(1194), - [sym_insert] = STATE(145), - [sym_insert_begin] = STATE(1195), - [sym_delete] = STATE(145), - [sym_delete_begin] = STATE(1196), - [sym_hard_line_break] = STATE(145), - [sym__smart_punctuation] = STATE(145), - [sym_autolink] = STATE(145), - [sym_footnote_reference] = STATE(145), - [sym_footnote_marker_begin] = STATE(1197), - [sym__image] = STATE(145), - [sym_full_reference_image] = STATE(145), - [sym_collapsed_reference_image] = STATE(145), - [sym_inline_image] = STATE(145), - [sym_image_description] = STATE(696), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(145), - [sym_full_reference_link] = STATE(145), - [sym_collapsed_reference_link] = STATE(145), - [sym_inline_link] = STATE(145), - [sym_link_text] = STATE(691), - [sym_span] = STATE(80), - [sym__bracketed_text_begin] = STATE(1265), - [sym__comment_with_spaces] = STATE(145), - [sym_raw_inline] = STATE(145), - [sym_math] = STATE(145), - [sym_verbatim] = STATE(145), - [sym__todo_highlights] = STATE(145), - [sym_todo] = STATE(145), - [sym_note] = STATE(145), - [sym__symbol_fallback] = STATE(145), - [aux_sym__text] = STATE(138), - [aux_sym__inline_repeat1] = STATE(80), - [anon_sym_LBRACE_] = ACTIONS(542), - [anon_sym__] = ACTIONS(544), - [anon_sym_LBRACE_STAR] = ACTIONS(546), - [anon_sym_STAR] = ACTIONS(548), - [anon_sym_LBRACE_CARET] = ACTIONS(550), - [anon_sym_CARET] = ACTIONS(550), - [anon_sym_LBRACE_TILDE] = ACTIONS(552), - [anon_sym_TILDE] = ACTIONS(552), - [anon_sym_LBRACE_EQ] = ACTIONS(554), - [anon_sym_LBRACE_PLUS] = ACTIONS(556), - [anon_sym_LBRACE_DASH] = ACTIONS(558), - [anon_sym_BSLASH] = ACTIONS(560), - [sym_quotation_marks] = ACTIONS(562), - [sym_ellipsis] = ACTIONS(562), - [sym_em_dash] = ACTIONS(562), - [sym_en_dash] = ACTIONS(564), - [sym_backslash_escape] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(566), - [sym_symbol] = ACTIONS(562), - [anon_sym_LBRACK_CARET] = ACTIONS(568), - [anon_sym_BANG_LBRACK] = ACTIONS(570), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_DOLLAR] = ACTIONS(574), - [anon_sym_TODO] = ACTIONS(576), - [anon_sym_WIP] = ACTIONS(576), - [anon_sym_NOTE] = ACTIONS(578), - [anon_sym_INFO] = ACTIONS(578), - [anon_sym_XXX] = ACTIONS(578), - [sym_fixme] = ACTIONS(562), - [sym__whitespace1] = ACTIONS(580), - [sym__newline] = ACTIONS(582), - [aux_sym__text_token1] = ACTIONS(584), - [sym__verbatim_begin] = ACTIONS(586), + [sym__element] = STATE(22), + [sym_emphasis] = STATE(137), + [sym_emphasis_begin] = STATE(1112), + [sym_strong] = STATE(137), + [sym_strong_begin] = STATE(1113), + [sym_superscript] = STATE(137), + [sym_superscript_begin] = STATE(1114), + [sym_subscript] = STATE(137), + [sym_subscript_begin] = STATE(1115), + [sym_highlighted] = STATE(137), + [sym_highlighted_begin] = STATE(1116), + [sym_insert] = STATE(137), + [sym_insert_begin] = STATE(1117), + [sym_delete] = STATE(137), + [sym_delete_begin] = STATE(1118), + [sym_hard_line_break] = STATE(137), + [sym__smart_punctuation] = STATE(137), + [sym_autolink] = STATE(137), + [sym_footnote_reference] = STATE(137), + [sym_footnote_marker_begin] = STATE(1119), + [sym__image] = STATE(137), + [sym_full_reference_image] = STATE(137), + [sym_collapsed_reference_image] = STATE(137), + [sym_inline_image] = STATE(137), + [sym_image_description] = STATE(636), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(137), + [sym_full_reference_link] = STATE(137), + [sym_collapsed_reference_link] = STATE(137), + [sym_inline_link] = STATE(137), + [sym_link_text] = STATE(647), + [sym_span] = STATE(22), + [sym__bracketed_text_begin] = STATE(1185), + [sym__comment_with_spaces] = STATE(137), + [sym_raw_inline] = STATE(137), + [sym_math] = STATE(137), + [sym_verbatim] = STATE(137), + [sym__todo_highlights] = STATE(137), + [sym_todo] = STATE(137), + [sym_note] = STATE(137), + [sym__symbol_fallback] = STATE(137), + [aux_sym__text] = STATE(122), + [aux_sym__inline_repeat1] = STATE(22), + [anon_sym_LBRACE_] = ACTIONS(197), + [anon_sym__] = ACTIONS(199), + [anon_sym_LBRACE_STAR] = ACTIONS(201), + [anon_sym_STAR] = ACTIONS(203), + [anon_sym_LBRACE_CARET] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(205), + [anon_sym_LBRACE_TILDE] = ACTIONS(207), + [anon_sym_TILDE] = ACTIONS(207), + [anon_sym_LBRACE_EQ] = ACTIONS(209), + [anon_sym_LBRACE_PLUS] = ACTIONS(211), + [anon_sym_LBRACE_DASH] = ACTIONS(213), + [anon_sym_BSLASH] = ACTIONS(215), + [sym_quotation_marks] = ACTIONS(217), + [sym_ellipsis] = ACTIONS(217), + [sym_em_dash] = ACTIONS(217), + [sym_en_dash] = ACTIONS(219), + [sym_backslash_escape] = ACTIONS(219), + [anon_sym_LT] = ACTIONS(221), + [sym_symbol] = ACTIONS(217), + [anon_sym_LBRACK_CARET] = ACTIONS(223), + [anon_sym_BANG_LBRACK] = ACTIONS(225), + [anon_sym_LBRACK] = ACTIONS(227), + [anon_sym_LPAREN] = ACTIONS(229), + [anon_sym_DOLLAR] = ACTIONS(231), + [anon_sym_TODO] = ACTIONS(233), + [anon_sym_WIP] = ACTIONS(233), + [anon_sym_NOTE] = ACTIONS(235), + [anon_sym_INFO] = ACTIONS(235), + [anon_sym_XXX] = ACTIONS(235), + [sym_fixme] = ACTIONS(217), + [sym__whitespace1] = ACTIONS(237), + [sym__newline] = ACTIONS(239), + [aux_sym__text_token1] = ACTIONS(241), + [sym__verbatim_begin] = ACTIONS(243), }, [36] = { - [sym__element] = STATE(36), - [sym_emphasis] = STATE(151), - [sym_emphasis_begin] = STATE(1181), - [sym_strong] = STATE(151), - [sym_strong_begin] = STATE(1182), - [sym_superscript] = STATE(151), - [sym_superscript_begin] = STATE(1183), - [sym_subscript] = STATE(151), - [sym_subscript_begin] = STATE(1184), - [sym_highlighted] = STATE(151), - [sym_highlighted_begin] = STATE(1185), - [sym_insert] = STATE(151), - [sym_insert_begin] = STATE(1186), - [sym_delete] = STATE(151), - [sym_delete_begin] = STATE(1187), - [sym_hard_line_break] = STATE(151), - [sym__smart_punctuation] = STATE(151), - [sym_autolink] = STATE(151), - [sym_footnote_reference] = STATE(151), - [sym_footnote_marker_begin] = STATE(1188), - [sym__image] = STATE(151), - [sym_full_reference_image] = STATE(151), - [sym_collapsed_reference_image] = STATE(151), - [sym_inline_image] = STATE(151), - [sym_image_description] = STATE(700), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(151), - [sym_full_reference_link] = STATE(151), - [sym_collapsed_reference_link] = STATE(151), - [sym_inline_link] = STATE(151), - [sym_link_text] = STATE(701), - [sym_span] = STATE(36), - [sym__bracketed_text_begin] = STATE(1264), - [sym__comment_with_spaces] = STATE(151), - [sym_raw_inline] = STATE(151), - [sym_math] = STATE(151), - [sym_verbatim] = STATE(151), - [sym__todo_highlights] = STATE(151), - [sym_todo] = STATE(151), - [sym_note] = STATE(151), - [sym__symbol_fallback] = STATE(151), - [aux_sym__text] = STATE(140), - [aux_sym__inline_repeat1] = STATE(36), - [anon_sym_LBRACE_] = ACTIONS(588), - [anon_sym__] = ACTIONS(591), - [anon_sym_LBRACE_STAR] = ACTIONS(594), - [anon_sym_STAR] = ACTIONS(597), - [anon_sym_LBRACE_CARET] = ACTIONS(600), - [anon_sym_CARET] = ACTIONS(600), - [anon_sym_LBRACE_TILDE] = ACTIONS(603), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_LBRACE_EQ] = ACTIONS(606), - [anon_sym_LBRACE_PLUS] = ACTIONS(609), - [anon_sym_LBRACE_DASH] = ACTIONS(612), - [anon_sym_BSLASH] = ACTIONS(615), - [sym_quotation_marks] = ACTIONS(618), - [sym_ellipsis] = ACTIONS(618), - [sym_em_dash] = ACTIONS(618), - [sym_en_dash] = ACTIONS(621), - [sym_backslash_escape] = ACTIONS(621), - [anon_sym_LT] = ACTIONS(624), - [sym_symbol] = ACTIONS(618), - [anon_sym_LBRACK_CARET] = ACTIONS(627), - [anon_sym_BANG_LBRACK] = ACTIONS(630), - [anon_sym_LBRACK] = ACTIONS(633), - [anon_sym_DOLLAR] = ACTIONS(636), - [anon_sym_TODO] = ACTIONS(639), - [anon_sym_WIP] = ACTIONS(639), - [anon_sym_NOTE] = ACTIONS(642), - [anon_sym_INFO] = ACTIONS(642), - [anon_sym_XXX] = ACTIONS(642), - [sym_fixme] = ACTIONS(618), - [sym__whitespace1] = ACTIONS(645), - [sym__newline] = ACTIONS(648), - [aux_sym__text_token1] = ACTIONS(651), - [sym__verbatim_begin] = ACTIONS(654), - [sym_superscript_end] = ACTIONS(354), + [sym__inline_without_trailing_space] = STATE(875), + [sym__element] = STATE(536), + [sym_emphasis] = STATE(138), + [sym_emphasis_begin] = STATE(1092), + [sym_strong] = STATE(138), + [sym_strong_begin] = STATE(1093), + [sym_superscript] = STATE(138), + [sym_superscript_begin] = STATE(1094), + [sym_subscript] = STATE(138), + [sym_subscript_begin] = STATE(1095), + [sym_highlighted] = STATE(138), + [sym_highlighted_begin] = STATE(1096), + [sym_insert] = STATE(138), + [sym_insert_begin] = STATE(1097), + [sym_delete] = STATE(138), + [sym_delete_begin] = STATE(1098), + [sym_hard_line_break] = STATE(138), + [sym__smart_punctuation] = STATE(138), + [sym_autolink] = STATE(138), + [sym_footnote_reference] = STATE(138), + [sym_footnote_marker_begin] = STATE(1099), + [sym__image] = STATE(138), + [sym_full_reference_image] = STATE(138), + [sym_collapsed_reference_image] = STATE(138), + [sym_inline_image] = STATE(138), + [sym_image_description] = STATE(626), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(138), + [sym_full_reference_link] = STATE(138), + [sym_collapsed_reference_link] = STATE(138), + [sym_inline_link] = STATE(138), + [sym_link_text] = STATE(627), + [sym_span] = STATE(536), + [sym__bracketed_text_begin] = STATE(1183), + [sym__comment_with_spaces] = STATE(138), + [sym_raw_inline] = STATE(138), + [sym_math] = STATE(138), + [sym_verbatim] = STATE(138), + [sym__todo_highlights] = STATE(138), + [sym_todo] = STATE(138), + [sym_note] = STATE(138), + [sym__symbol_fallback] = STATE(138), + [aux_sym__text] = STATE(127), + [aux_sym__inline_repeat1] = STATE(118), + [anon_sym_LBRACE_] = ACTIONS(149), + [anon_sym__] = ACTIONS(151), + [anon_sym_LBRACE_STAR] = ACTIONS(153), + [anon_sym_STAR] = ACTIONS(155), + [anon_sym_LBRACE_CARET] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_LBRACE_TILDE] = ACTIONS(159), + [anon_sym_TILDE] = ACTIONS(159), + [anon_sym_LBRACE_EQ] = ACTIONS(161), + [anon_sym_LBRACE_PLUS] = ACTIONS(163), + [anon_sym_LBRACE_DASH] = ACTIONS(165), + [anon_sym_BSLASH] = ACTIONS(167), + [sym_quotation_marks] = ACTIONS(169), + [sym_ellipsis] = ACTIONS(169), + [sym_em_dash] = ACTIONS(169), + [sym_en_dash] = ACTIONS(171), + [sym_backslash_escape] = ACTIONS(171), + [anon_sym_LT] = ACTIONS(173), + [sym_symbol] = ACTIONS(169), + [anon_sym_LBRACK_CARET] = ACTIONS(175), + [anon_sym_BANG_LBRACK] = ACTIONS(177), + [anon_sym_LBRACK] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(181), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_TODO] = ACTIONS(185), + [anon_sym_WIP] = ACTIONS(185), + [anon_sym_NOTE] = ACTIONS(187), + [anon_sym_INFO] = ACTIONS(187), + [anon_sym_XXX] = ACTIONS(187), + [sym_fixme] = ACTIONS(169), + [sym__whitespace1] = ACTIONS(189), + [sym__newline] = ACTIONS(191), + [aux_sym__text_token1] = ACTIONS(193), + [sym__verbatim_begin] = ACTIONS(195), }, [37] = { [sym__element] = STATE(69), - [sym_emphasis] = STATE(150), - [sym_emphasis_begin] = STATE(1156), - [sym_strong] = STATE(150), - [sym_strong_begin] = STATE(1155), - [sym_superscript] = STATE(150), - [sym_superscript_begin] = STATE(1154), - [sym_subscript] = STATE(150), - [sym_subscript_begin] = STATE(1153), - [sym_highlighted] = STATE(150), - [sym_highlighted_begin] = STATE(1152), - [sym_insert] = STATE(150), - [sym_insert_begin] = STATE(1151), - [sym_delete] = STATE(150), - [sym_delete_begin] = STATE(1143), - [sym_hard_line_break] = STATE(150), - [sym__smart_punctuation] = STATE(150), - [sym_autolink] = STATE(150), - [sym_footnote_reference] = STATE(150), - [sym_footnote_marker_begin] = STATE(1141), - [sym__image] = STATE(150), - [sym_full_reference_image] = STATE(150), - [sym_collapsed_reference_image] = STATE(150), - [sym_inline_image] = STATE(150), - [sym_image_description] = STATE(690), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(150), - [sym_full_reference_link] = STATE(150), - [sym_collapsed_reference_link] = STATE(150), - [sym_inline_link] = STATE(150), - [sym_link_text] = STATE(688), + [sym_emphasis] = STATE(131), + [sym_emphasis_begin] = STATE(1132), + [sym_strong] = STATE(131), + [sym_strong_begin] = STATE(1133), + [sym_superscript] = STATE(131), + [sym_superscript_begin] = STATE(1134), + [sym_subscript] = STATE(131), + [sym_subscript_begin] = STATE(1135), + [sym_highlighted] = STATE(131), + [sym_highlighted_begin] = STATE(1136), + [sym_insert] = STATE(131), + [sym_insert_begin] = STATE(1137), + [sym_delete] = STATE(131), + [sym_delete_begin] = STATE(1138), + [sym_hard_line_break] = STATE(131), + [sym__smart_punctuation] = STATE(131), + [sym_autolink] = STATE(131), + [sym_footnote_reference] = STATE(131), + [sym_footnote_marker_begin] = STATE(1139), + [sym__image] = STATE(131), + [sym_full_reference_image] = STATE(131), + [sym_collapsed_reference_image] = STATE(131), + [sym_inline_image] = STATE(131), + [sym_image_description] = STATE(643), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(131), + [sym_full_reference_link] = STATE(131), + [sym_collapsed_reference_link] = STATE(131), + [sym_inline_link] = STATE(131), + [sym_link_text] = STATE(619), [sym_span] = STATE(69), - [sym__bracketed_text_begin] = STATE(1139), - [sym__comment_with_spaces] = STATE(150), - [sym_raw_inline] = STATE(150), - [sym_math] = STATE(150), - [sym_verbatim] = STATE(150), - [sym__todo_highlights] = STATE(150), - [sym_todo] = STATE(150), - [sym_note] = STATE(150), - [sym__symbol_fallback] = STATE(150), - [aux_sym__text] = STATE(139), + [sym__bracketed_text_begin] = STATE(1187), + [sym__comment_with_spaces] = STATE(131), + [sym_raw_inline] = STATE(131), + [sym_math] = STATE(131), + [sym_verbatim] = STATE(131), + [sym__todo_highlights] = STATE(131), + [sym_todo] = STATE(131), + [sym_note] = STATE(131), + [sym__symbol_fallback] = STATE(131), + [aux_sym__text] = STATE(123), [aux_sym__inline_repeat1] = STATE(69), - [ts_builtin_sym_end] = ACTIONS(283), + [anon_sym_LBRACE_] = ACTIONS(537), + [anon_sym__] = ACTIONS(539), + [anon_sym_LBRACE_STAR] = ACTIONS(541), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE_CARET] = ACTIONS(545), + [anon_sym_CARET] = ACTIONS(545), + [anon_sym_LBRACE_TILDE] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(547), + [anon_sym_LBRACE_EQ] = ACTIONS(549), + [anon_sym_LBRACE_PLUS] = ACTIONS(551), + [anon_sym_LBRACE_DASH] = ACTIONS(553), + [anon_sym_BSLASH] = ACTIONS(555), + [sym_quotation_marks] = ACTIONS(557), + [sym_ellipsis] = ACTIONS(557), + [sym_em_dash] = ACTIONS(557), + [sym_en_dash] = ACTIONS(559), + [sym_backslash_escape] = ACTIONS(559), + [anon_sym_LT] = ACTIONS(561), + [sym_symbol] = ACTIONS(557), + [anon_sym_LBRACK_CARET] = ACTIONS(563), + [anon_sym_BANG_LBRACK] = ACTIONS(565), + [anon_sym_LBRACK] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_DOLLAR] = ACTIONS(571), + [anon_sym_TODO] = ACTIONS(573), + [anon_sym_WIP] = ACTIONS(573), + [anon_sym_NOTE] = ACTIONS(575), + [anon_sym_INFO] = ACTIONS(575), + [anon_sym_XXX] = ACTIONS(575), + [sym_fixme] = ACTIONS(557), + [sym__whitespace1] = ACTIONS(577), + [sym__newline] = ACTIONS(637), + [aux_sym__text_token1] = ACTIONS(581), + [sym__verbatim_begin] = ACTIONS(583), + [sym_insert_end] = ACTIONS(367), + }, + [38] = { + [sym__element] = STATE(70), + [sym_emphasis] = STATE(135), + [sym_emphasis_begin] = STATE(1073), + [sym_strong] = STATE(135), + [sym_strong_begin] = STATE(1072), + [sym_superscript] = STATE(135), + [sym_superscript_begin] = STATE(1071), + [sym_subscript] = STATE(135), + [sym_subscript_begin] = STATE(1070), + [sym_highlighted] = STATE(135), + [sym_highlighted_begin] = STATE(1062), + [sym_insert] = STATE(135), + [sym_insert_begin] = STATE(1060), + [sym_delete] = STATE(135), + [sym_delete_begin] = STATE(1059), + [sym_hard_line_break] = STATE(135), + [sym__smart_punctuation] = STATE(135), + [sym_autolink] = STATE(135), + [sym_footnote_reference] = STATE(135), + [sym_footnote_marker_begin] = STATE(1058), + [sym__image] = STATE(135), + [sym_full_reference_image] = STATE(135), + [sym_collapsed_reference_image] = STATE(135), + [sym_inline_image] = STATE(135), + [sym_image_description] = STATE(620), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(135), + [sym_full_reference_link] = STATE(135), + [sym_collapsed_reference_link] = STATE(135), + [sym_inline_link] = STATE(135), + [sym_link_text] = STATE(644), + [sym_span] = STATE(70), + [sym__bracketed_text_begin] = STATE(1056), + [sym__comment_with_spaces] = STATE(135), + [sym_raw_inline] = STATE(135), + [sym_math] = STATE(135), + [sym_verbatim] = STATE(135), + [sym__todo_highlights] = STATE(135), + [sym_todo] = STATE(135), + [sym_note] = STATE(135), + [sym__symbol_fallback] = STATE(135), + [aux_sym__text] = STATE(121), + [aux_sym__inline_repeat1] = STATE(70), + [ts_builtin_sym_end] = ACTIONS(367), [anon_sym_LBRACE_] = ACTIONS(3), [anon_sym__] = ACTIONS(5), [anon_sym_LBRACE_STAR] = ACTIONS(7), @@ -8227,6688 +8200,6531 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_CARET] = ACTIONS(29), [anon_sym_BANG_LBRACK] = ACTIONS(31), [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_TODO] = ACTIONS(37), - [anon_sym_WIP] = ACTIONS(37), - [anon_sym_NOTE] = ACTIONS(39), - [anon_sym_INFO] = ACTIONS(39), - [anon_sym_XXX] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_DOLLAR] = ACTIONS(37), + [anon_sym_TODO] = ACTIONS(39), + [anon_sym_WIP] = ACTIONS(39), + [anon_sym_NOTE] = ACTIONS(41), + [anon_sym_INFO] = ACTIONS(41), + [anon_sym_XXX] = ACTIONS(41), [sym_fixme] = ACTIONS(23), - [sym__whitespace1] = ACTIONS(41), - [sym__newline] = ACTIONS(657), - [aux_sym__text_token1] = ACTIONS(45), - [sym__verbatim_begin] = ACTIONS(47), - }, - [38] = { - [sym__inline] = STATE(942), - [sym__element] = STATE(124), - [sym_emphasis] = STATE(151), - [sym_emphasis_begin] = STATE(1181), - [sym_strong] = STATE(151), - [sym_strong_begin] = STATE(1182), - [sym_superscript] = STATE(151), - [sym_superscript_begin] = STATE(1183), - [sym_subscript] = STATE(151), - [sym_subscript_begin] = STATE(1184), - [sym_highlighted] = STATE(151), - [sym_highlighted_begin] = STATE(1185), - [sym_insert] = STATE(151), - [sym_insert_begin] = STATE(1186), - [sym_delete] = STATE(151), - [sym_delete_begin] = STATE(1187), - [sym_hard_line_break] = STATE(151), - [sym__smart_punctuation] = STATE(151), - [sym_autolink] = STATE(151), - [sym_footnote_reference] = STATE(151), - [sym_footnote_marker_begin] = STATE(1188), - [sym__image] = STATE(151), - [sym_full_reference_image] = STATE(151), - [sym_collapsed_reference_image] = STATE(151), - [sym_inline_image] = STATE(151), - [sym_image_description] = STATE(700), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(151), - [sym_full_reference_link] = STATE(151), - [sym_collapsed_reference_link] = STATE(151), - [sym_inline_link] = STATE(151), - [sym_link_text] = STATE(701), - [sym_span] = STATE(124), - [sym__bracketed_text_begin] = STATE(1264), - [sym__comment_with_spaces] = STATE(151), - [sym_raw_inline] = STATE(151), - [sym_math] = STATE(151), - [sym_verbatim] = STATE(151), - [sym__todo_highlights] = STATE(151), - [sym_todo] = STATE(151), - [sym_note] = STATE(151), - [sym__symbol_fallback] = STATE(151), - [aux_sym__text] = STATE(140), - [aux_sym__inline_repeat1] = STATE(124), - [anon_sym_LBRACE_] = ACTIONS(143), - [anon_sym__] = ACTIONS(145), - [anon_sym_LBRACE_STAR] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_LBRACE_CARET] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(151), - [anon_sym_LBRACE_TILDE] = ACTIONS(153), - [anon_sym_TILDE] = ACTIONS(153), - [anon_sym_LBRACE_EQ] = ACTIONS(155), - [anon_sym_LBRACE_PLUS] = ACTIONS(157), - [anon_sym_LBRACE_DASH] = ACTIONS(159), - [anon_sym_BSLASH] = ACTIONS(161), - [sym_quotation_marks] = ACTIONS(163), - [sym_ellipsis] = ACTIONS(163), - [sym_em_dash] = ACTIONS(163), - [sym_en_dash] = ACTIONS(165), - [sym_backslash_escape] = ACTIONS(165), - [anon_sym_LT] = ACTIONS(167), - [sym_symbol] = ACTIONS(163), - [anon_sym_LBRACK_CARET] = ACTIONS(169), - [anon_sym_BANG_LBRACK] = ACTIONS(171), - [anon_sym_LBRACK] = ACTIONS(173), - [anon_sym_DOLLAR] = ACTIONS(175), - [anon_sym_TODO] = ACTIONS(177), - [anon_sym_WIP] = ACTIONS(177), - [anon_sym_NOTE] = ACTIONS(179), - [anon_sym_INFO] = ACTIONS(179), - [anon_sym_XXX] = ACTIONS(179), - [sym_fixme] = ACTIONS(163), - [sym__whitespace1] = ACTIONS(181), - [sym__newline] = ACTIONS(183), - [aux_sym__text_token1] = ACTIONS(185), - [sym__verbatim_begin] = ACTIONS(187), + [sym__whitespace1] = ACTIONS(43), + [sym__newline] = ACTIONS(639), + [aux_sym__text_token1] = ACTIONS(47), + [sym__verbatim_begin] = ACTIONS(49), }, [39] = { - [sym__inline] = STATE(1027), - [sym__element] = STATE(21), - [sym_emphasis] = STATE(149), - [sym_emphasis_begin] = STATE(1199), - [sym_strong] = STATE(149), - [sym_strong_begin] = STATE(1200), - [sym_superscript] = STATE(149), - [sym_superscript_begin] = STATE(1201), - [sym_subscript] = STATE(149), - [sym_subscript_begin] = STATE(1202), - [sym_highlighted] = STATE(149), - [sym_highlighted_begin] = STATE(1203), - [sym_insert] = STATE(149), - [sym_insert_begin] = STATE(1204), - [sym_delete] = STATE(149), - [sym_delete_begin] = STATE(1205), - [sym_hard_line_break] = STATE(149), - [sym__smart_punctuation] = STATE(149), - [sym_autolink] = STATE(149), - [sym_footnote_reference] = STATE(149), - [sym_footnote_marker_begin] = STATE(1206), - [sym__image] = STATE(149), - [sym_full_reference_image] = STATE(149), - [sym_collapsed_reference_image] = STATE(149), - [sym_inline_image] = STATE(149), - [sym_image_description] = STATE(714), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(149), - [sym_full_reference_link] = STATE(149), - [sym_collapsed_reference_link] = STATE(149), - [sym_inline_link] = STATE(149), - [sym_link_text] = STATE(710), - [sym_span] = STATE(21), - [sym__bracketed_text_begin] = STATE(1266), - [sym__comment_with_spaces] = STATE(149), - [sym_raw_inline] = STATE(149), - [sym_math] = STATE(149), - [sym_verbatim] = STATE(149), - [sym__todo_highlights] = STATE(149), - [sym_todo] = STATE(149), - [sym_note] = STATE(149), - [sym__symbol_fallback] = STATE(149), - [aux_sym__text] = STATE(142), - [aux_sym__inline_repeat1] = STATE(21), - [anon_sym_LBRACE_] = ACTIONS(494), - [anon_sym__] = ACTIONS(496), - [anon_sym_LBRACE_STAR] = ACTIONS(498), - [anon_sym_STAR] = ACTIONS(500), - [anon_sym_LBRACE_CARET] = ACTIONS(502), - [anon_sym_CARET] = ACTIONS(502), - [anon_sym_LBRACE_TILDE] = ACTIONS(504), - [anon_sym_TILDE] = ACTIONS(504), - [anon_sym_LBRACE_EQ] = ACTIONS(506), - [anon_sym_LBRACE_PLUS] = ACTIONS(508), - [anon_sym_LBRACE_DASH] = ACTIONS(510), - [anon_sym_BSLASH] = ACTIONS(512), - [sym_quotation_marks] = ACTIONS(514), - [sym_ellipsis] = ACTIONS(514), - [sym_em_dash] = ACTIONS(514), - [sym_en_dash] = ACTIONS(516), - [sym_backslash_escape] = ACTIONS(516), - [anon_sym_LT] = ACTIONS(518), - [sym_symbol] = ACTIONS(514), - [anon_sym_LBRACK_CARET] = ACTIONS(520), - [anon_sym_BANG_LBRACK] = ACTIONS(522), - [anon_sym_LBRACK] = ACTIONS(524), - [anon_sym_DOLLAR] = ACTIONS(526), - [anon_sym_TODO] = ACTIONS(528), - [anon_sym_WIP] = ACTIONS(528), - [anon_sym_NOTE] = ACTIONS(530), - [anon_sym_INFO] = ACTIONS(530), - [anon_sym_XXX] = ACTIONS(530), - [sym_fixme] = ACTIONS(514), - [sym__whitespace1] = ACTIONS(532), - [sym__newline] = ACTIONS(540), - [aux_sym__text_token1] = ACTIONS(536), - [sym__verbatim_begin] = ACTIONS(538), + [sym__inline_without_trailing_space] = STATE(874), + [sym__element] = STATE(581), + [sym_emphasis] = STATE(141), + [sym_emphasis_begin] = STATE(1082), + [sym_strong] = STATE(141), + [sym_strong_begin] = STATE(1083), + [sym_superscript] = STATE(141), + [sym_superscript_begin] = STATE(1084), + [sym_subscript] = STATE(141), + [sym_subscript_begin] = STATE(1085), + [sym_highlighted] = STATE(141), + [sym_highlighted_begin] = STATE(1086), + [sym_insert] = STATE(141), + [sym_insert_begin] = STATE(1087), + [sym_delete] = STATE(141), + [sym_delete_begin] = STATE(1088), + [sym_hard_line_break] = STATE(141), + [sym__smart_punctuation] = STATE(141), + [sym_autolink] = STATE(141), + [sym_footnote_reference] = STATE(141), + [sym_footnote_marker_begin] = STATE(1089), + [sym__image] = STATE(141), + [sym_full_reference_image] = STATE(141), + [sym_collapsed_reference_image] = STATE(141), + [sym_inline_image] = STATE(141), + [sym_image_description] = STATE(642), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(141), + [sym_full_reference_link] = STATE(141), + [sym_collapsed_reference_link] = STATE(141), + [sym_inline_link] = STATE(141), + [sym_link_text] = STATE(629), + [sym_span] = STATE(581), + [sym__bracketed_text_begin] = STATE(1182), + [sym__comment_with_spaces] = STATE(141), + [sym_raw_inline] = STATE(141), + [sym_math] = STATE(141), + [sym_verbatim] = STATE(141), + [sym__todo_highlights] = STATE(141), + [sym_todo] = STATE(141), + [sym_note] = STATE(141), + [sym__symbol_fallback] = STATE(141), + [aux_sym__text] = STATE(125), + [aux_sym__inline_repeat1] = STATE(119), + [anon_sym_LBRACE_] = ACTIONS(585), + [anon_sym__] = ACTIONS(587), + [anon_sym_LBRACE_STAR] = ACTIONS(589), + [anon_sym_STAR] = ACTIONS(591), + [anon_sym_LBRACE_CARET] = ACTIONS(593), + [anon_sym_CARET] = ACTIONS(593), + [anon_sym_LBRACE_TILDE] = ACTIONS(595), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_LBRACE_EQ] = ACTIONS(597), + [anon_sym_LBRACE_PLUS] = ACTIONS(599), + [anon_sym_LBRACE_DASH] = ACTIONS(601), + [anon_sym_BSLASH] = ACTIONS(603), + [sym_quotation_marks] = ACTIONS(605), + [sym_ellipsis] = ACTIONS(605), + [sym_em_dash] = ACTIONS(605), + [sym_en_dash] = ACTIONS(607), + [sym_backslash_escape] = ACTIONS(607), + [anon_sym_LT] = ACTIONS(609), + [sym_symbol] = ACTIONS(605), + [anon_sym_LBRACK_CARET] = ACTIONS(611), + [anon_sym_BANG_LBRACK] = ACTIONS(613), + [anon_sym_LBRACK] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [anon_sym_TODO] = ACTIONS(621), + [anon_sym_WIP] = ACTIONS(621), + [anon_sym_NOTE] = ACTIONS(623), + [anon_sym_INFO] = ACTIONS(623), + [anon_sym_XXX] = ACTIONS(623), + [sym_fixme] = ACTIONS(605), + [sym__whitespace1] = ACTIONS(625), + [sym__newline] = ACTIONS(627), + [aux_sym__text_token1] = ACTIONS(629), + [sym__verbatim_begin] = ACTIONS(631), }, [40] = { - [sym__inline_without_trailing_space] = STATE(941), - [sym__element] = STATE(570), - [sym_emphasis] = STATE(152), - [sym_emphasis_begin] = STATE(1172), - [sym_strong] = STATE(152), - [sym_strong_begin] = STATE(1173), - [sym_superscript] = STATE(152), - [sym_superscript_begin] = STATE(1174), - [sym_subscript] = STATE(152), - [sym_subscript_begin] = STATE(1175), - [sym_highlighted] = STATE(152), - [sym_highlighted_begin] = STATE(1176), - [sym_insert] = STATE(152), - [sym_insert_begin] = STATE(1177), - [sym_delete] = STATE(152), - [sym_delete_begin] = STATE(1178), - [sym_hard_line_break] = STATE(152), - [sym__smart_punctuation] = STATE(152), - [sym_autolink] = STATE(152), - [sym_footnote_reference] = STATE(152), - [sym_footnote_marker_begin] = STATE(1179), - [sym__image] = STATE(152), - [sym_full_reference_image] = STATE(152), - [sym_collapsed_reference_image] = STATE(152), - [sym_inline_image] = STATE(152), - [sym_image_description] = STATE(704), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(152), - [sym_full_reference_link] = STATE(152), - [sym_collapsed_reference_link] = STATE(152), - [sym_inline_link] = STATE(152), - [sym_link_text] = STATE(706), - [sym_span] = STATE(570), - [sym__bracketed_text_begin] = STATE(1263), - [sym__comment_with_spaces] = STATE(152), - [sym_raw_inline] = STATE(152), - [sym_math] = STATE(152), - [sym_verbatim] = STATE(152), - [sym__todo_highlights] = STATE(152), - [sym_todo] = STATE(152), - [sym_note] = STATE(152), - [sym__symbol_fallback] = STATE(152), - [aux_sym__text] = STATE(133), - [aux_sym__inline_repeat1] = STATE(130), - [anon_sym_LBRACE_] = ACTIONS(448), - [anon_sym__] = ACTIONS(450), - [anon_sym_LBRACE_STAR] = ACTIONS(452), - [anon_sym_STAR] = ACTIONS(454), - [anon_sym_LBRACE_CARET] = ACTIONS(456), - [anon_sym_CARET] = ACTIONS(456), - [anon_sym_LBRACE_TILDE] = ACTIONS(458), - [anon_sym_TILDE] = ACTIONS(458), - [anon_sym_LBRACE_EQ] = ACTIONS(460), - [anon_sym_LBRACE_PLUS] = ACTIONS(462), - [anon_sym_LBRACE_DASH] = ACTIONS(464), - [anon_sym_BSLASH] = ACTIONS(466), - [sym_quotation_marks] = ACTIONS(468), - [sym_ellipsis] = ACTIONS(468), - [sym_em_dash] = ACTIONS(468), - [sym_en_dash] = ACTIONS(470), - [sym_backslash_escape] = ACTIONS(470), - [anon_sym_LT] = ACTIONS(472), - [sym_symbol] = ACTIONS(468), - [anon_sym_LBRACK_CARET] = ACTIONS(474), - [anon_sym_BANG_LBRACK] = ACTIONS(476), - [anon_sym_LBRACK] = ACTIONS(478), - [anon_sym_DOLLAR] = ACTIONS(480), - [anon_sym_TODO] = ACTIONS(482), - [anon_sym_WIP] = ACTIONS(482), - [anon_sym_NOTE] = ACTIONS(484), - [anon_sym_INFO] = ACTIONS(484), - [anon_sym_XXX] = ACTIONS(484), - [sym_fixme] = ACTIONS(468), - [sym__whitespace1] = ACTIONS(486), - [sym__newline] = ACTIONS(488), - [aux_sym__text_token1] = ACTIONS(490), - [sym__verbatim_begin] = ACTIONS(492), + [sym__inline] = STATE(942), + [sym__element] = STATE(14), + [sym_emphasis] = STATE(136), + [sym_emphasis_begin] = STATE(1122), + [sym_strong] = STATE(136), + [sym_strong_begin] = STATE(1123), + [sym_superscript] = STATE(136), + [sym_superscript_begin] = STATE(1124), + [sym_subscript] = STATE(136), + [sym_subscript_begin] = STATE(1125), + [sym_highlighted] = STATE(136), + [sym_highlighted_begin] = STATE(1126), + [sym_insert] = STATE(136), + [sym_insert_begin] = STATE(1127), + [sym_delete] = STATE(136), + [sym_delete_begin] = STATE(1128), + [sym_hard_line_break] = STATE(136), + [sym__smart_punctuation] = STATE(136), + [sym_autolink] = STATE(136), + [sym_footnote_reference] = STATE(136), + [sym_footnote_marker_begin] = STATE(1129), + [sym__image] = STATE(136), + [sym_full_reference_image] = STATE(136), + [sym_collapsed_reference_image] = STATE(136), + [sym_inline_image] = STATE(136), + [sym_image_description] = STATE(651), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(136), + [sym_full_reference_link] = STATE(136), + [sym_collapsed_reference_link] = STATE(136), + [sym_inline_link] = STATE(136), + [sym_link_text] = STATE(650), + [sym_span] = STATE(14), + [sym__bracketed_text_begin] = STATE(1186), + [sym__comment_with_spaces] = STATE(136), + [sym_raw_inline] = STATE(136), + [sym_math] = STATE(136), + [sym_verbatim] = STATE(136), + [sym__todo_highlights] = STATE(136), + [sym_todo] = STATE(136), + [sym_note] = STATE(136), + [sym__symbol_fallback] = STATE(136), + [aux_sym__text] = STATE(130), + [aux_sym__inline_repeat1] = STATE(14), + [anon_sym_LBRACE_] = ACTIONS(319), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_STAR] = ACTIONS(323), + [anon_sym_STAR] = ACTIONS(325), + [anon_sym_LBRACE_CARET] = ACTIONS(327), + [anon_sym_CARET] = ACTIONS(327), + [anon_sym_LBRACE_TILDE] = ACTIONS(329), + [anon_sym_TILDE] = ACTIONS(329), + [anon_sym_LBRACE_EQ] = ACTIONS(331), + [anon_sym_LBRACE_PLUS] = ACTIONS(333), + [anon_sym_LBRACE_DASH] = ACTIONS(335), + [anon_sym_BSLASH] = ACTIONS(337), + [sym_quotation_marks] = ACTIONS(339), + [sym_ellipsis] = ACTIONS(339), + [sym_em_dash] = ACTIONS(339), + [sym_en_dash] = ACTIONS(341), + [sym_backslash_escape] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [sym_symbol] = ACTIONS(339), + [anon_sym_LBRACK_CARET] = ACTIONS(345), + [anon_sym_BANG_LBRACK] = ACTIONS(347), + [anon_sym_LBRACK] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_DOLLAR] = ACTIONS(353), + [anon_sym_TODO] = ACTIONS(355), + [anon_sym_WIP] = ACTIONS(355), + [anon_sym_NOTE] = ACTIONS(357), + [anon_sym_INFO] = ACTIONS(357), + [anon_sym_XXX] = ACTIONS(357), + [sym_fixme] = ACTIONS(339), + [sym__whitespace1] = ACTIONS(359), + [sym__newline] = ACTIONS(635), + [aux_sym__text_token1] = ACTIONS(363), + [sym__verbatim_begin] = ACTIONS(365), }, [41] = { - [sym__inline_without_trailing_space] = STATE(940), - [sym__element] = STATE(623), - [sym_emphasis] = STATE(148), - [sym_emphasis_begin] = STATE(1163), - [sym_strong] = STATE(148), - [sym_strong_begin] = STATE(1164), - [sym_superscript] = STATE(148), - [sym_superscript_begin] = STATE(1165), - [sym_subscript] = STATE(148), - [sym_subscript_begin] = STATE(1166), - [sym_highlighted] = STATE(148), - [sym_highlighted_begin] = STATE(1167), - [sym_insert] = STATE(148), - [sym_insert_begin] = STATE(1168), - [sym_delete] = STATE(148), - [sym_delete_begin] = STATE(1169), - [sym_hard_line_break] = STATE(148), - [sym__smart_punctuation] = STATE(148), - [sym_autolink] = STATE(148), - [sym_footnote_reference] = STATE(148), - [sym_footnote_marker_begin] = STATE(1170), - [sym__image] = STATE(148), - [sym_full_reference_image] = STATE(148), - [sym_collapsed_reference_image] = STATE(148), - [sym_inline_image] = STATE(148), - [sym_image_description] = STATE(712), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(148), - [sym_full_reference_link] = STATE(148), - [sym_collapsed_reference_link] = STATE(148), - [sym_inline_link] = STATE(148), - [sym_link_text] = STATE(713), - [sym_span] = STATE(623), - [sym__bracketed_text_begin] = STATE(1262), - [sym__comment_with_spaces] = STATE(148), - [sym_raw_inline] = STATE(148), - [sym_math] = STATE(148), - [sym_verbatim] = STATE(148), - [sym__todo_highlights] = STATE(148), - [sym_todo] = STATE(148), - [sym_note] = STATE(148), - [sym__symbol_fallback] = STATE(148), - [aux_sym__text] = STATE(136), - [aux_sym__inline_repeat1] = STATE(129), - [anon_sym_LBRACE_] = ACTIONS(402), - [anon_sym__] = ACTIONS(404), - [anon_sym_LBRACE_STAR] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_LBRACE_CARET] = ACTIONS(410), - [anon_sym_CARET] = ACTIONS(410), - [anon_sym_LBRACE_TILDE] = ACTIONS(412), - [anon_sym_TILDE] = ACTIONS(412), - [anon_sym_LBRACE_EQ] = ACTIONS(414), - [anon_sym_LBRACE_PLUS] = ACTIONS(416), - [anon_sym_LBRACE_DASH] = ACTIONS(418), - [anon_sym_BSLASH] = ACTIONS(420), - [sym_quotation_marks] = ACTIONS(422), - [sym_ellipsis] = ACTIONS(422), - [sym_em_dash] = ACTIONS(422), - [sym_en_dash] = ACTIONS(424), - [sym_backslash_escape] = ACTIONS(424), - [anon_sym_LT] = ACTIONS(426), - [sym_symbol] = ACTIONS(422), - [anon_sym_LBRACK_CARET] = ACTIONS(428), - [anon_sym_BANG_LBRACK] = ACTIONS(430), - [anon_sym_LBRACK] = ACTIONS(432), - [anon_sym_DOLLAR] = ACTIONS(434), - [anon_sym_TODO] = ACTIONS(436), - [anon_sym_WIP] = ACTIONS(436), - [anon_sym_NOTE] = ACTIONS(438), - [anon_sym_INFO] = ACTIONS(438), - [anon_sym_XXX] = ACTIONS(438), - [sym_fixme] = ACTIONS(422), - [sym__whitespace1] = ACTIONS(440), - [sym__newline] = ACTIONS(442), - [aux_sym__text_token1] = ACTIONS(444), - [sym__verbatim_begin] = ACTIONS(446), + [sym__inline] = STATE(848), + [sym__element] = STATE(71), + [sym_emphasis] = STATE(132), + [sym_emphasis_begin] = STATE(1152), + [sym_strong] = STATE(132), + [sym_strong_begin] = STATE(1153), + [sym_superscript] = STATE(132), + [sym_superscript_begin] = STATE(1154), + [sym_subscript] = STATE(132), + [sym_subscript_begin] = STATE(1155), + [sym_highlighted] = STATE(132), + [sym_highlighted_begin] = STATE(1156), + [sym_insert] = STATE(132), + [sym_insert_begin] = STATE(1157), + [sym_delete] = STATE(132), + [sym_delete_begin] = STATE(1158), + [sym_hard_line_break] = STATE(132), + [sym__smart_punctuation] = STATE(132), + [sym_autolink] = STATE(132), + [sym_footnote_reference] = STATE(132), + [sym_footnote_marker_begin] = STATE(1159), + [sym__image] = STATE(132), + [sym_full_reference_image] = STATE(132), + [sym_collapsed_reference_image] = STATE(132), + [sym_inline_image] = STATE(132), + [sym_image_description] = STATE(633), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(132), + [sym_full_reference_link] = STATE(132), + [sym_collapsed_reference_link] = STATE(132), + [sym_inline_link] = STATE(132), + [sym_link_text] = STATE(631), + [sym_span] = STATE(71), + [sym__bracketed_text_begin] = STATE(1189), + [sym__comment_with_spaces] = STATE(132), + [sym_raw_inline] = STATE(132), + [sym_math] = STATE(132), + [sym_verbatim] = STATE(132), + [sym__todo_highlights] = STATE(132), + [sym_todo] = STATE(132), + [sym_note] = STATE(132), + [sym__symbol_fallback] = STATE(132), + [aux_sym__text] = STATE(128), + [aux_sym__inline_repeat1] = STATE(71), + [anon_sym_LBRACE_] = ACTIONS(441), + [anon_sym__] = ACTIONS(443), + [anon_sym_LBRACE_STAR] = ACTIONS(445), + [anon_sym_STAR] = ACTIONS(447), + [anon_sym_LBRACE_CARET] = ACTIONS(449), + [anon_sym_CARET] = ACTIONS(449), + [anon_sym_LBRACE_TILDE] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_LBRACE_EQ] = ACTIONS(453), + [anon_sym_LBRACE_PLUS] = ACTIONS(455), + [anon_sym_LBRACE_DASH] = ACTIONS(457), + [anon_sym_BSLASH] = ACTIONS(459), + [sym_quotation_marks] = ACTIONS(461), + [sym_ellipsis] = ACTIONS(461), + [sym_em_dash] = ACTIONS(461), + [sym_en_dash] = ACTIONS(463), + [sym_backslash_escape] = ACTIONS(463), + [anon_sym_LT] = ACTIONS(465), + [sym_symbol] = ACTIONS(461), + [anon_sym_LBRACK_CARET] = ACTIONS(467), + [anon_sym_BANG_LBRACK] = ACTIONS(469), + [anon_sym_LBRACK] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(473), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_TODO] = ACTIONS(477), + [anon_sym_WIP] = ACTIONS(477), + [anon_sym_NOTE] = ACTIONS(479), + [anon_sym_INFO] = ACTIONS(479), + [anon_sym_XXX] = ACTIONS(479), + [sym_fixme] = ACTIONS(461), + [sym__whitespace1] = ACTIONS(481), + [sym__newline] = ACTIONS(483), + [aux_sym__text_token1] = ACTIONS(485), + [sym__verbatim_begin] = ACTIONS(487), }, [42] = { - [sym__inline] = STATE(1026), - [sym__element] = STATE(7), - [sym_emphasis] = STATE(153), - [sym_emphasis_begin] = STATE(1208), - [sym_strong] = STATE(153), - [sym_strong_begin] = STATE(1209), - [sym_superscript] = STATE(153), - [sym_superscript_begin] = STATE(1210), - [sym_subscript] = STATE(153), - [sym_subscript_begin] = STATE(1211), - [sym_highlighted] = STATE(153), - [sym_highlighted_begin] = STATE(1212), - [sym_insert] = STATE(153), - [sym_insert_begin] = STATE(1213), - [sym_delete] = STATE(153), - [sym_delete_begin] = STATE(1214), - [sym_hard_line_break] = STATE(153), - [sym__smart_punctuation] = STATE(153), - [sym_autolink] = STATE(153), - [sym_footnote_reference] = STATE(153), - [sym_footnote_marker_begin] = STATE(1215), - [sym__image] = STATE(153), - [sym_full_reference_image] = STATE(153), - [sym_collapsed_reference_image] = STATE(153), - [sym_inline_image] = STATE(153), - [sym_image_description] = STATE(707), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(153), - [sym_full_reference_link] = STATE(153), - [sym_collapsed_reference_link] = STATE(153), - [sym_inline_link] = STATE(153), - [sym_link_text] = STATE(705), - [sym_span] = STATE(7), - [sym__bracketed_text_begin] = STATE(1267), - [sym__comment_with_spaces] = STATE(153), - [sym_raw_inline] = STATE(153), - [sym_math] = STATE(153), - [sym_verbatim] = STATE(153), - [sym__todo_highlights] = STATE(153), - [sym_todo] = STATE(153), - [sym_note] = STATE(153), - [sym__symbol_fallback] = STATE(153), - [aux_sym__text] = STATE(134), - [aux_sym__inline_repeat1] = STATE(7), - [anon_sym_LBRACE_] = ACTIONS(97), - [anon_sym__] = ACTIONS(99), - [anon_sym_LBRACE_STAR] = ACTIONS(101), - [anon_sym_STAR] = ACTIONS(103), - [anon_sym_LBRACE_CARET] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [anon_sym_LBRACE_TILDE] = ACTIONS(107), - [anon_sym_TILDE] = ACTIONS(107), - [anon_sym_LBRACE_EQ] = ACTIONS(109), - [anon_sym_LBRACE_PLUS] = ACTIONS(111), - [anon_sym_LBRACE_DASH] = ACTIONS(113), - [anon_sym_BSLASH] = ACTIONS(115), - [sym_quotation_marks] = ACTIONS(117), - [sym_ellipsis] = ACTIONS(117), - [sym_em_dash] = ACTIONS(117), - [sym_en_dash] = ACTIONS(119), - [sym_backslash_escape] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [sym_symbol] = ACTIONS(117), - [anon_sym_LBRACK_CARET] = ACTIONS(123), - [anon_sym_BANG_LBRACK] = ACTIONS(125), - [anon_sym_LBRACK] = ACTIONS(127), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_TODO] = ACTIONS(131), - [anon_sym_WIP] = ACTIONS(131), - [anon_sym_NOTE] = ACTIONS(133), - [anon_sym_INFO] = ACTIONS(133), - [anon_sym_XXX] = ACTIONS(133), - [sym_fixme] = ACTIONS(117), - [sym__whitespace1] = ACTIONS(135), - [sym__newline] = ACTIONS(137), - [aux_sym__text_token1] = ACTIONS(139), - [sym__verbatim_begin] = ACTIONS(141), + [sym__inline] = STATE(846), + [sym__element] = STATE(65), + [sym_emphasis] = STATE(133), + [sym_emphasis_begin] = STATE(1142), + [sym_strong] = STATE(133), + [sym_strong_begin] = STATE(1143), + [sym_superscript] = STATE(133), + [sym_superscript_begin] = STATE(1144), + [sym_subscript] = STATE(133), + [sym_subscript_begin] = STATE(1145), + [sym_highlighted] = STATE(133), + [sym_highlighted_begin] = STATE(1146), + [sym_insert] = STATE(133), + [sym_insert_begin] = STATE(1147), + [sym_delete] = STATE(133), + [sym_delete_begin] = STATE(1148), + [sym_hard_line_break] = STATE(133), + [sym__smart_punctuation] = STATE(133), + [sym_autolink] = STATE(133), + [sym_footnote_reference] = STATE(133), + [sym_footnote_marker_begin] = STATE(1149), + [sym__image] = STATE(133), + [sym_full_reference_image] = STATE(133), + [sym_collapsed_reference_image] = STATE(133), + [sym_inline_image] = STATE(133), + [sym_image_description] = STATE(638), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(133), + [sym_full_reference_link] = STATE(133), + [sym_collapsed_reference_link] = STATE(133), + [sym_inline_link] = STATE(133), + [sym_link_text] = STATE(637), + [sym_span] = STATE(65), + [sym__bracketed_text_begin] = STATE(1188), + [sym__comment_with_spaces] = STATE(133), + [sym_raw_inline] = STATE(133), + [sym_math] = STATE(133), + [sym_verbatim] = STATE(133), + [sym__todo_highlights] = STATE(133), + [sym_todo] = STATE(133), + [sym_note] = STATE(133), + [sym__symbol_fallback] = STATE(133), + [aux_sym__text] = STATE(129), + [aux_sym__inline_repeat1] = STATE(65), + [anon_sym_LBRACE_] = ACTIONS(489), + [anon_sym__] = ACTIONS(491), + [anon_sym_LBRACE_STAR] = ACTIONS(493), + [anon_sym_STAR] = ACTIONS(495), + [anon_sym_LBRACE_CARET] = ACTIONS(497), + [anon_sym_CARET] = ACTIONS(497), + [anon_sym_LBRACE_TILDE] = ACTIONS(499), + [anon_sym_TILDE] = ACTIONS(499), + [anon_sym_LBRACE_EQ] = ACTIONS(501), + [anon_sym_LBRACE_PLUS] = ACTIONS(503), + [anon_sym_LBRACE_DASH] = ACTIONS(505), + [anon_sym_BSLASH] = ACTIONS(507), + [sym_quotation_marks] = ACTIONS(509), + [sym_ellipsis] = ACTIONS(509), + [sym_em_dash] = ACTIONS(509), + [sym_en_dash] = ACTIONS(511), + [sym_backslash_escape] = ACTIONS(511), + [anon_sym_LT] = ACTIONS(513), + [sym_symbol] = ACTIONS(509), + [anon_sym_LBRACK_CARET] = ACTIONS(515), + [anon_sym_BANG_LBRACK] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(519), + [anon_sym_LPAREN] = ACTIONS(521), + [anon_sym_DOLLAR] = ACTIONS(523), + [anon_sym_TODO] = ACTIONS(525), + [anon_sym_WIP] = ACTIONS(525), + [anon_sym_NOTE] = ACTIONS(527), + [anon_sym_INFO] = ACTIONS(527), + [anon_sym_XXX] = ACTIONS(527), + [sym_fixme] = ACTIONS(509), + [sym__whitespace1] = ACTIONS(529), + [sym__newline] = ACTIONS(531), + [aux_sym__text_token1] = ACTIONS(533), + [sym__verbatim_begin] = ACTIONS(535), }, [43] = { - [sym__inline] = STATE(915), - [sym__element] = STATE(84), - [sym_emphasis] = STATE(146), - [sym_emphasis_begin] = STATE(1226), - [sym_strong] = STATE(146), - [sym_strong_begin] = STATE(1227), - [sym_superscript] = STATE(146), - [sym_superscript_begin] = STATE(1228), - [sym_subscript] = STATE(146), - [sym_subscript_begin] = STATE(1229), - [sym_highlighted] = STATE(146), - [sym_highlighted_begin] = STATE(1230), - [sym_insert] = STATE(146), - [sym_insert_begin] = STATE(1231), - [sym_delete] = STATE(146), - [sym_delete_begin] = STATE(1232), - [sym_hard_line_break] = STATE(146), - [sym__smart_punctuation] = STATE(146), - [sym_autolink] = STATE(146), - [sym_footnote_reference] = STATE(146), - [sym_footnote_marker_begin] = STATE(1233), - [sym__image] = STATE(146), - [sym_full_reference_image] = STATE(146), - [sym_collapsed_reference_image] = STATE(146), - [sym_inline_image] = STATE(146), - [sym_image_description] = STATE(694), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(146), - [sym_full_reference_link] = STATE(146), - [sym_collapsed_reference_link] = STATE(146), - [sym_inline_link] = STATE(146), - [sym_link_text] = STATE(693), - [sym_span] = STATE(84), - [sym__bracketed_text_begin] = STATE(1269), - [sym__comment_with_spaces] = STATE(146), - [sym_raw_inline] = STATE(146), - [sym_math] = STATE(146), - [sym_verbatim] = STATE(146), - [sym__todo_highlights] = STATE(146), - [sym_todo] = STATE(146), - [sym_note] = STATE(146), - [sym__symbol_fallback] = STATE(146), - [aux_sym__text] = STATE(141), - [aux_sym__inline_repeat1] = STATE(84), - [anon_sym_LBRACE_] = ACTIONS(356), - [anon_sym__] = ACTIONS(358), - [anon_sym_LBRACE_STAR] = ACTIONS(360), - [anon_sym_STAR] = ACTIONS(362), - [anon_sym_LBRACE_CARET] = ACTIONS(364), - [anon_sym_CARET] = ACTIONS(364), - [anon_sym_LBRACE_TILDE] = ACTIONS(366), - [anon_sym_TILDE] = ACTIONS(366), - [anon_sym_LBRACE_EQ] = ACTIONS(368), - [anon_sym_LBRACE_PLUS] = ACTIONS(370), - [anon_sym_LBRACE_DASH] = ACTIONS(372), - [anon_sym_BSLASH] = ACTIONS(374), - [sym_quotation_marks] = ACTIONS(376), - [sym_ellipsis] = ACTIONS(376), - [sym_em_dash] = ACTIONS(376), - [sym_en_dash] = ACTIONS(378), - [sym_backslash_escape] = ACTIONS(378), - [anon_sym_LT] = ACTIONS(380), - [sym_symbol] = ACTIONS(376), - [anon_sym_LBRACK_CARET] = ACTIONS(382), - [anon_sym_BANG_LBRACK] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(386), - [anon_sym_DOLLAR] = ACTIONS(388), - [anon_sym_TODO] = ACTIONS(390), - [anon_sym_WIP] = ACTIONS(390), - [anon_sym_NOTE] = ACTIONS(392), - [anon_sym_INFO] = ACTIONS(392), - [anon_sym_XXX] = ACTIONS(392), - [sym_fixme] = ACTIONS(376), - [sym__whitespace1] = ACTIONS(394), - [sym__newline] = ACTIONS(396), - [aux_sym__text_token1] = ACTIONS(398), - [sym__verbatim_begin] = ACTIONS(400), + [sym__inline] = STATE(933), + [sym__element] = STATE(37), + [sym_emphasis] = STATE(131), + [sym_emphasis_begin] = STATE(1132), + [sym_strong] = STATE(131), + [sym_strong_begin] = STATE(1133), + [sym_superscript] = STATE(131), + [sym_superscript_begin] = STATE(1134), + [sym_subscript] = STATE(131), + [sym_subscript_begin] = STATE(1135), + [sym_highlighted] = STATE(131), + [sym_highlighted_begin] = STATE(1136), + [sym_insert] = STATE(131), + [sym_insert_begin] = STATE(1137), + [sym_delete] = STATE(131), + [sym_delete_begin] = STATE(1138), + [sym_hard_line_break] = STATE(131), + [sym__smart_punctuation] = STATE(131), + [sym_autolink] = STATE(131), + [sym_footnote_reference] = STATE(131), + [sym_footnote_marker_begin] = STATE(1139), + [sym__image] = STATE(131), + [sym_full_reference_image] = STATE(131), + [sym_collapsed_reference_image] = STATE(131), + [sym_inline_image] = STATE(131), + [sym_image_description] = STATE(643), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(131), + [sym_full_reference_link] = STATE(131), + [sym_collapsed_reference_link] = STATE(131), + [sym_inline_link] = STATE(131), + [sym_link_text] = STATE(619), + [sym_span] = STATE(37), + [sym__bracketed_text_begin] = STATE(1187), + [sym__comment_with_spaces] = STATE(131), + [sym_raw_inline] = STATE(131), + [sym_math] = STATE(131), + [sym_verbatim] = STATE(131), + [sym__todo_highlights] = STATE(131), + [sym_todo] = STATE(131), + [sym_note] = STATE(131), + [sym__symbol_fallback] = STATE(131), + [aux_sym__text] = STATE(123), + [aux_sym__inline_repeat1] = STATE(37), + [anon_sym_LBRACE_] = ACTIONS(537), + [anon_sym__] = ACTIONS(539), + [anon_sym_LBRACE_STAR] = ACTIONS(541), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE_CARET] = ACTIONS(545), + [anon_sym_CARET] = ACTIONS(545), + [anon_sym_LBRACE_TILDE] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(547), + [anon_sym_LBRACE_EQ] = ACTIONS(549), + [anon_sym_LBRACE_PLUS] = ACTIONS(551), + [anon_sym_LBRACE_DASH] = ACTIONS(553), + [anon_sym_BSLASH] = ACTIONS(555), + [sym_quotation_marks] = ACTIONS(557), + [sym_ellipsis] = ACTIONS(557), + [sym_em_dash] = ACTIONS(557), + [sym_en_dash] = ACTIONS(559), + [sym_backslash_escape] = ACTIONS(559), + [anon_sym_LT] = ACTIONS(561), + [sym_symbol] = ACTIONS(557), + [anon_sym_LBRACK_CARET] = ACTIONS(563), + [anon_sym_BANG_LBRACK] = ACTIONS(565), + [anon_sym_LBRACK] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_DOLLAR] = ACTIONS(571), + [anon_sym_TODO] = ACTIONS(573), + [anon_sym_WIP] = ACTIONS(573), + [anon_sym_NOTE] = ACTIONS(575), + [anon_sym_INFO] = ACTIONS(575), + [anon_sym_XXX] = ACTIONS(575), + [sym_fixme] = ACTIONS(557), + [sym__whitespace1] = ACTIONS(577), + [sym__newline] = ACTIONS(579), + [aux_sym__text_token1] = ACTIONS(581), + [sym__verbatim_begin] = ACTIONS(583), }, [44] = { - [sym__inline] = STATE(1025), - [sym__element] = STATE(46), - [sym_emphasis] = STATE(147), - [sym_emphasis_begin] = STATE(1217), - [sym_strong] = STATE(147), - [sym_strong_begin] = STATE(1218), - [sym_superscript] = STATE(147), - [sym_superscript_begin] = STATE(1219), - [sym_subscript] = STATE(147), - [sym_subscript_begin] = STATE(1220), - [sym_highlighted] = STATE(147), - [sym_highlighted_begin] = STATE(1221), - [sym_insert] = STATE(147), - [sym_insert_begin] = STATE(1222), - [sym_delete] = STATE(147), - [sym_delete_begin] = STATE(1223), - [sym_hard_line_break] = STATE(147), - [sym__smart_punctuation] = STATE(147), - [sym_autolink] = STATE(147), - [sym_footnote_reference] = STATE(147), - [sym_footnote_marker_begin] = STATE(1224), - [sym__image] = STATE(147), - [sym_full_reference_image] = STATE(147), - [sym_collapsed_reference_image] = STATE(147), - [sym_inline_image] = STATE(147), - [sym_image_description] = STATE(699), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(147), - [sym_full_reference_link] = STATE(147), - [sym_collapsed_reference_link] = STATE(147), - [sym_inline_link] = STATE(147), - [sym_link_text] = STATE(698), - [sym_span] = STATE(46), - [sym__bracketed_text_begin] = STATE(1268), - [sym__comment_with_spaces] = STATE(147), - [sym_raw_inline] = STATE(147), - [sym_math] = STATE(147), - [sym_verbatim] = STATE(147), - [sym__todo_highlights] = STATE(147), - [sym_todo] = STATE(147), - [sym_note] = STATE(147), - [sym__symbol_fallback] = STATE(147), - [aux_sym__text] = STATE(132), - [aux_sym__inline_repeat1] = STATE(46), - [anon_sym_LBRACE_] = ACTIONS(189), - [anon_sym__] = ACTIONS(191), - [anon_sym_LBRACE_STAR] = ACTIONS(193), - [anon_sym_STAR] = ACTIONS(195), - [anon_sym_LBRACE_CARET] = ACTIONS(197), - [anon_sym_CARET] = ACTIONS(197), - [anon_sym_LBRACE_TILDE] = ACTIONS(199), - [anon_sym_TILDE] = ACTIONS(199), - [anon_sym_LBRACE_EQ] = ACTIONS(201), - [anon_sym_LBRACE_PLUS] = ACTIONS(203), - [anon_sym_LBRACE_DASH] = ACTIONS(205), - [anon_sym_BSLASH] = ACTIONS(207), - [sym_quotation_marks] = ACTIONS(209), - [sym_ellipsis] = ACTIONS(209), - [sym_em_dash] = ACTIONS(209), - [sym_en_dash] = ACTIONS(211), - [sym_backslash_escape] = ACTIONS(211), - [anon_sym_LT] = ACTIONS(213), - [sym_symbol] = ACTIONS(209), - [anon_sym_LBRACK_CARET] = ACTIONS(215), - [anon_sym_BANG_LBRACK] = ACTIONS(217), - [anon_sym_LBRACK] = ACTIONS(219), - [anon_sym_DOLLAR] = ACTIONS(221), - [anon_sym_TODO] = ACTIONS(223), - [anon_sym_WIP] = ACTIONS(223), - [anon_sym_NOTE] = ACTIONS(225), - [anon_sym_INFO] = ACTIONS(225), - [anon_sym_XXX] = ACTIONS(225), - [sym_fixme] = ACTIONS(209), - [sym__whitespace1] = ACTIONS(227), - [sym__newline] = ACTIONS(229), - [aux_sym__text_token1] = ACTIONS(231), - [sym__verbatim_begin] = ACTIONS(233), + [sym__inline] = STATE(1005), + [sym__element] = STATE(14), + [sym_emphasis] = STATE(136), + [sym_emphasis_begin] = STATE(1122), + [sym_strong] = STATE(136), + [sym_strong_begin] = STATE(1123), + [sym_superscript] = STATE(136), + [sym_superscript_begin] = STATE(1124), + [sym_subscript] = STATE(136), + [sym_subscript_begin] = STATE(1125), + [sym_highlighted] = STATE(136), + [sym_highlighted_begin] = STATE(1126), + [sym_insert] = STATE(136), + [sym_insert_begin] = STATE(1127), + [sym_delete] = STATE(136), + [sym_delete_begin] = STATE(1128), + [sym_hard_line_break] = STATE(136), + [sym__smart_punctuation] = STATE(136), + [sym_autolink] = STATE(136), + [sym_footnote_reference] = STATE(136), + [sym_footnote_marker_begin] = STATE(1129), + [sym__image] = STATE(136), + [sym_full_reference_image] = STATE(136), + [sym_collapsed_reference_image] = STATE(136), + [sym_inline_image] = STATE(136), + [sym_image_description] = STATE(651), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(136), + [sym_full_reference_link] = STATE(136), + [sym_collapsed_reference_link] = STATE(136), + [sym_inline_link] = STATE(136), + [sym_link_text] = STATE(650), + [sym_span] = STATE(14), + [sym__bracketed_text_begin] = STATE(1186), + [sym__comment_with_spaces] = STATE(136), + [sym_raw_inline] = STATE(136), + [sym_math] = STATE(136), + [sym_verbatim] = STATE(136), + [sym__todo_highlights] = STATE(136), + [sym_todo] = STATE(136), + [sym_note] = STATE(136), + [sym__symbol_fallback] = STATE(136), + [aux_sym__text] = STATE(130), + [aux_sym__inline_repeat1] = STATE(14), + [anon_sym_LBRACE_] = ACTIONS(319), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_STAR] = ACTIONS(323), + [anon_sym_STAR] = ACTIONS(325), + [anon_sym_LBRACE_CARET] = ACTIONS(327), + [anon_sym_CARET] = ACTIONS(327), + [anon_sym_LBRACE_TILDE] = ACTIONS(329), + [anon_sym_TILDE] = ACTIONS(329), + [anon_sym_LBRACE_EQ] = ACTIONS(331), + [anon_sym_LBRACE_PLUS] = ACTIONS(333), + [anon_sym_LBRACE_DASH] = ACTIONS(335), + [anon_sym_BSLASH] = ACTIONS(337), + [sym_quotation_marks] = ACTIONS(339), + [sym_ellipsis] = ACTIONS(339), + [sym_em_dash] = ACTIONS(339), + [sym_en_dash] = ACTIONS(341), + [sym_backslash_escape] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [sym_symbol] = ACTIONS(339), + [anon_sym_LBRACK_CARET] = ACTIONS(345), + [anon_sym_BANG_LBRACK] = ACTIONS(347), + [anon_sym_LBRACK] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_DOLLAR] = ACTIONS(353), + [anon_sym_TODO] = ACTIONS(355), + [anon_sym_WIP] = ACTIONS(355), + [anon_sym_NOTE] = ACTIONS(357), + [anon_sym_INFO] = ACTIONS(357), + [anon_sym_XXX] = ACTIONS(357), + [sym_fixme] = ACTIONS(339), + [sym__whitespace1] = ACTIONS(359), + [sym__newline] = ACTIONS(635), + [aux_sym__text_token1] = ACTIONS(363), + [sym__verbatim_begin] = ACTIONS(365), }, [45] = { - [sym__inline] = STATE(913), - [sym__element] = STATE(46), - [sym_emphasis] = STATE(147), - [sym_emphasis_begin] = STATE(1217), - [sym_strong] = STATE(147), - [sym_strong_begin] = STATE(1218), - [sym_superscript] = STATE(147), - [sym_superscript_begin] = STATE(1219), - [sym_subscript] = STATE(147), - [sym_subscript_begin] = STATE(1220), - [sym_highlighted] = STATE(147), - [sym_highlighted_begin] = STATE(1221), - [sym_insert] = STATE(147), - [sym_insert_begin] = STATE(1222), - [sym_delete] = STATE(147), - [sym_delete_begin] = STATE(1223), - [sym_hard_line_break] = STATE(147), - [sym__smart_punctuation] = STATE(147), - [sym_autolink] = STATE(147), - [sym_footnote_reference] = STATE(147), - [sym_footnote_marker_begin] = STATE(1224), - [sym__image] = STATE(147), - [sym_full_reference_image] = STATE(147), - [sym_collapsed_reference_image] = STATE(147), - [sym_inline_image] = STATE(147), - [sym_image_description] = STATE(699), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(147), - [sym_full_reference_link] = STATE(147), - [sym_collapsed_reference_link] = STATE(147), - [sym_inline_link] = STATE(147), - [sym_link_text] = STATE(698), - [sym_span] = STATE(46), - [sym__bracketed_text_begin] = STATE(1268), - [sym__comment_with_spaces] = STATE(147), - [sym_raw_inline] = STATE(147), - [sym_math] = STATE(147), - [sym_verbatim] = STATE(147), - [sym__todo_highlights] = STATE(147), - [sym_todo] = STATE(147), - [sym_note] = STATE(147), - [sym__symbol_fallback] = STATE(147), - [aux_sym__text] = STATE(132), - [aux_sym__inline_repeat1] = STATE(46), - [anon_sym_LBRACE_] = ACTIONS(189), - [anon_sym__] = ACTIONS(191), - [anon_sym_LBRACE_STAR] = ACTIONS(193), - [anon_sym_STAR] = ACTIONS(195), - [anon_sym_LBRACE_CARET] = ACTIONS(197), - [anon_sym_CARET] = ACTIONS(197), - [anon_sym_LBRACE_TILDE] = ACTIONS(199), - [anon_sym_TILDE] = ACTIONS(199), - [anon_sym_LBRACE_EQ] = ACTIONS(201), - [anon_sym_LBRACE_PLUS] = ACTIONS(203), - [anon_sym_LBRACE_DASH] = ACTIONS(205), - [anon_sym_BSLASH] = ACTIONS(207), - [sym_quotation_marks] = ACTIONS(209), - [sym_ellipsis] = ACTIONS(209), - [sym_em_dash] = ACTIONS(209), - [sym_en_dash] = ACTIONS(211), - [sym_backslash_escape] = ACTIONS(211), - [anon_sym_LT] = ACTIONS(213), - [sym_symbol] = ACTIONS(209), - [anon_sym_LBRACK_CARET] = ACTIONS(215), - [anon_sym_BANG_LBRACK] = ACTIONS(217), - [anon_sym_LBRACK] = ACTIONS(219), - [anon_sym_DOLLAR] = ACTIONS(221), - [anon_sym_TODO] = ACTIONS(223), - [anon_sym_WIP] = ACTIONS(223), - [anon_sym_NOTE] = ACTIONS(225), - [anon_sym_INFO] = ACTIONS(225), - [anon_sym_XXX] = ACTIONS(225), - [sym_fixme] = ACTIONS(209), - [sym__whitespace1] = ACTIONS(227), - [sym__newline] = ACTIONS(229), - [aux_sym__text_token1] = ACTIONS(231), - [sym__verbatim_begin] = ACTIONS(233), + [sym__inline] = STATE(931), + [sym__element] = STATE(65), + [sym_emphasis] = STATE(133), + [sym_emphasis_begin] = STATE(1142), + [sym_strong] = STATE(133), + [sym_strong_begin] = STATE(1143), + [sym_superscript] = STATE(133), + [sym_superscript_begin] = STATE(1144), + [sym_subscript] = STATE(133), + [sym_subscript_begin] = STATE(1145), + [sym_highlighted] = STATE(133), + [sym_highlighted_begin] = STATE(1146), + [sym_insert] = STATE(133), + [sym_insert_begin] = STATE(1147), + [sym_delete] = STATE(133), + [sym_delete_begin] = STATE(1148), + [sym_hard_line_break] = STATE(133), + [sym__smart_punctuation] = STATE(133), + [sym_autolink] = STATE(133), + [sym_footnote_reference] = STATE(133), + [sym_footnote_marker_begin] = STATE(1149), + [sym__image] = STATE(133), + [sym_full_reference_image] = STATE(133), + [sym_collapsed_reference_image] = STATE(133), + [sym_inline_image] = STATE(133), + [sym_image_description] = STATE(638), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(133), + [sym_full_reference_link] = STATE(133), + [sym_collapsed_reference_link] = STATE(133), + [sym_inline_link] = STATE(133), + [sym_link_text] = STATE(637), + [sym_span] = STATE(65), + [sym__bracketed_text_begin] = STATE(1188), + [sym__comment_with_spaces] = STATE(133), + [sym_raw_inline] = STATE(133), + [sym_math] = STATE(133), + [sym_verbatim] = STATE(133), + [sym__todo_highlights] = STATE(133), + [sym_todo] = STATE(133), + [sym_note] = STATE(133), + [sym__symbol_fallback] = STATE(133), + [aux_sym__text] = STATE(129), + [aux_sym__inline_repeat1] = STATE(65), + [anon_sym_LBRACE_] = ACTIONS(489), + [anon_sym__] = ACTIONS(491), + [anon_sym_LBRACE_STAR] = ACTIONS(493), + [anon_sym_STAR] = ACTIONS(495), + [anon_sym_LBRACE_CARET] = ACTIONS(497), + [anon_sym_CARET] = ACTIONS(497), + [anon_sym_LBRACE_TILDE] = ACTIONS(499), + [anon_sym_TILDE] = ACTIONS(499), + [anon_sym_LBRACE_EQ] = ACTIONS(501), + [anon_sym_LBRACE_PLUS] = ACTIONS(503), + [anon_sym_LBRACE_DASH] = ACTIONS(505), + [anon_sym_BSLASH] = ACTIONS(507), + [sym_quotation_marks] = ACTIONS(509), + [sym_ellipsis] = ACTIONS(509), + [sym_em_dash] = ACTIONS(509), + [sym_en_dash] = ACTIONS(511), + [sym_backslash_escape] = ACTIONS(511), + [anon_sym_LT] = ACTIONS(513), + [sym_symbol] = ACTIONS(509), + [anon_sym_LBRACK_CARET] = ACTIONS(515), + [anon_sym_BANG_LBRACK] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(519), + [anon_sym_LPAREN] = ACTIONS(521), + [anon_sym_DOLLAR] = ACTIONS(523), + [anon_sym_TODO] = ACTIONS(525), + [anon_sym_WIP] = ACTIONS(525), + [anon_sym_NOTE] = ACTIONS(527), + [anon_sym_INFO] = ACTIONS(527), + [anon_sym_XXX] = ACTIONS(527), + [sym_fixme] = ACTIONS(509), + [sym__whitespace1] = ACTIONS(529), + [sym__newline] = ACTIONS(531), + [aux_sym__text_token1] = ACTIONS(533), + [sym__verbatim_begin] = ACTIONS(535), }, [46] = { - [sym__element] = STATE(100), - [sym_emphasis] = STATE(147), - [sym_emphasis_begin] = STATE(1217), - [sym_strong] = STATE(147), - [sym_strong_begin] = STATE(1218), - [sym_superscript] = STATE(147), - [sym_superscript_begin] = STATE(1219), - [sym_subscript] = STATE(147), - [sym_subscript_begin] = STATE(1220), - [sym_highlighted] = STATE(147), - [sym_highlighted_begin] = STATE(1221), - [sym_insert] = STATE(147), - [sym_insert_begin] = STATE(1222), - [sym_delete] = STATE(147), - [sym_delete_begin] = STATE(1223), - [sym_hard_line_break] = STATE(147), - [sym__smart_punctuation] = STATE(147), - [sym_autolink] = STATE(147), - [sym_footnote_reference] = STATE(147), - [sym_footnote_marker_begin] = STATE(1224), - [sym__image] = STATE(147), - [sym_full_reference_image] = STATE(147), - [sym_collapsed_reference_image] = STATE(147), - [sym_inline_image] = STATE(147), - [sym_image_description] = STATE(699), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(147), - [sym_full_reference_link] = STATE(147), - [sym_collapsed_reference_link] = STATE(147), - [sym_inline_link] = STATE(147), - [sym_link_text] = STATE(698), - [sym_span] = STATE(100), - [sym__bracketed_text_begin] = STATE(1268), - [sym__comment_with_spaces] = STATE(147), - [sym_raw_inline] = STATE(147), - [sym_math] = STATE(147), - [sym_verbatim] = STATE(147), - [sym__todo_highlights] = STATE(147), - [sym_todo] = STATE(147), - [sym_note] = STATE(147), - [sym__symbol_fallback] = STATE(147), - [aux_sym__text] = STATE(132), - [aux_sym__inline_repeat1] = STATE(100), - [anon_sym_LBRACE_] = ACTIONS(189), - [anon_sym__] = ACTIONS(191), - [anon_sym_LBRACE_STAR] = ACTIONS(193), - [anon_sym_STAR] = ACTIONS(195), - [anon_sym_LBRACE_CARET] = ACTIONS(197), - [anon_sym_CARET] = ACTIONS(197), - [anon_sym_LBRACE_TILDE] = ACTIONS(199), - [anon_sym_TILDE] = ACTIONS(199), - [anon_sym_LBRACE_EQ] = ACTIONS(201), - [anon_sym_LBRACE_PLUS] = ACTIONS(203), - [anon_sym_LBRACE_DASH] = ACTIONS(205), - [anon_sym_BSLASH] = ACTIONS(207), - [sym_quotation_marks] = ACTIONS(209), - [sym_ellipsis] = ACTIONS(209), - [sym_em_dash] = ACTIONS(209), - [sym_en_dash] = ACTIONS(211), - [sym_backslash_escape] = ACTIONS(211), - [anon_sym_LT] = ACTIONS(213), - [sym_symbol] = ACTIONS(209), - [anon_sym_LBRACK_CARET] = ACTIONS(215), - [anon_sym_BANG_LBRACK] = ACTIONS(217), - [anon_sym_LBRACK] = ACTIONS(219), - [anon_sym_DOLLAR] = ACTIONS(221), - [anon_sym_TODO] = ACTIONS(223), - [anon_sym_WIP] = ACTIONS(223), - [anon_sym_NOTE] = ACTIONS(225), - [anon_sym_INFO] = ACTIONS(225), - [anon_sym_XXX] = ACTIONS(225), - [sym_fixme] = ACTIONS(209), - [sym__whitespace1] = ACTIONS(227), - [sym__newline] = ACTIONS(659), - [aux_sym__text_token1] = ACTIONS(231), - [sym__verbatim_begin] = ACTIONS(233), - [sym_delete_end] = ACTIONS(283), + [sym__inline] = STATE(844), + [sym__element] = STATE(14), + [sym_emphasis] = STATE(136), + [sym_emphasis_begin] = STATE(1122), + [sym_strong] = STATE(136), + [sym_strong_begin] = STATE(1123), + [sym_superscript] = STATE(136), + [sym_superscript_begin] = STATE(1124), + [sym_subscript] = STATE(136), + [sym_subscript_begin] = STATE(1125), + [sym_highlighted] = STATE(136), + [sym_highlighted_begin] = STATE(1126), + [sym_insert] = STATE(136), + [sym_insert_begin] = STATE(1127), + [sym_delete] = STATE(136), + [sym_delete_begin] = STATE(1128), + [sym_hard_line_break] = STATE(136), + [sym__smart_punctuation] = STATE(136), + [sym_autolink] = STATE(136), + [sym_footnote_reference] = STATE(136), + [sym_footnote_marker_begin] = STATE(1129), + [sym__image] = STATE(136), + [sym_full_reference_image] = STATE(136), + [sym_collapsed_reference_image] = STATE(136), + [sym_inline_image] = STATE(136), + [sym_image_description] = STATE(651), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(136), + [sym_full_reference_link] = STATE(136), + [sym_collapsed_reference_link] = STATE(136), + [sym_inline_link] = STATE(136), + [sym_link_text] = STATE(650), + [sym_span] = STATE(14), + [sym__bracketed_text_begin] = STATE(1186), + [sym__comment_with_spaces] = STATE(136), + [sym_raw_inline] = STATE(136), + [sym_math] = STATE(136), + [sym_verbatim] = STATE(136), + [sym__todo_highlights] = STATE(136), + [sym_todo] = STATE(136), + [sym_note] = STATE(136), + [sym__symbol_fallback] = STATE(136), + [aux_sym__text] = STATE(130), + [aux_sym__inline_repeat1] = STATE(14), + [anon_sym_LBRACE_] = ACTIONS(319), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_STAR] = ACTIONS(323), + [anon_sym_STAR] = ACTIONS(325), + [anon_sym_LBRACE_CARET] = ACTIONS(327), + [anon_sym_CARET] = ACTIONS(327), + [anon_sym_LBRACE_TILDE] = ACTIONS(329), + [anon_sym_TILDE] = ACTIONS(329), + [anon_sym_LBRACE_EQ] = ACTIONS(331), + [anon_sym_LBRACE_PLUS] = ACTIONS(333), + [anon_sym_LBRACE_DASH] = ACTIONS(335), + [anon_sym_BSLASH] = ACTIONS(337), + [sym_quotation_marks] = ACTIONS(339), + [sym_ellipsis] = ACTIONS(339), + [sym_em_dash] = ACTIONS(339), + [sym_en_dash] = ACTIONS(341), + [sym_backslash_escape] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [sym_symbol] = ACTIONS(339), + [anon_sym_LBRACK_CARET] = ACTIONS(345), + [anon_sym_BANG_LBRACK] = ACTIONS(347), + [anon_sym_LBRACK] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_DOLLAR] = ACTIONS(353), + [anon_sym_TODO] = ACTIONS(355), + [anon_sym_WIP] = ACTIONS(355), + [anon_sym_NOTE] = ACTIONS(357), + [anon_sym_INFO] = ACTIONS(357), + [anon_sym_XXX] = ACTIONS(357), + [sym_fixme] = ACTIONS(339), + [sym__whitespace1] = ACTIONS(359), + [sym__newline] = ACTIONS(635), + [aux_sym__text_token1] = ACTIONS(363), + [sym__verbatim_begin] = ACTIONS(365), }, [47] = { - [sym__inline] = STATE(912), - [sym__element] = STATE(7), - [sym_emphasis] = STATE(153), - [sym_emphasis_begin] = STATE(1208), - [sym_strong] = STATE(153), - [sym_strong_begin] = STATE(1209), - [sym_superscript] = STATE(153), - [sym_superscript_begin] = STATE(1210), - [sym_subscript] = STATE(153), - [sym_subscript_begin] = STATE(1211), - [sym_highlighted] = STATE(153), - [sym_highlighted_begin] = STATE(1212), - [sym_insert] = STATE(153), - [sym_insert_begin] = STATE(1213), - [sym_delete] = STATE(153), - [sym_delete_begin] = STATE(1214), - [sym_hard_line_break] = STATE(153), - [sym__smart_punctuation] = STATE(153), - [sym_autolink] = STATE(153), - [sym_footnote_reference] = STATE(153), - [sym_footnote_marker_begin] = STATE(1215), - [sym__image] = STATE(153), - [sym_full_reference_image] = STATE(153), - [sym_collapsed_reference_image] = STATE(153), - [sym_inline_image] = STATE(153), - [sym_image_description] = STATE(707), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(153), - [sym_full_reference_link] = STATE(153), - [sym_collapsed_reference_link] = STATE(153), - [sym_inline_link] = STATE(153), - [sym_link_text] = STATE(705), - [sym_span] = STATE(7), - [sym__bracketed_text_begin] = STATE(1267), - [sym__comment_with_spaces] = STATE(153), - [sym_raw_inline] = STATE(153), - [sym_math] = STATE(153), - [sym_verbatim] = STATE(153), - [sym__todo_highlights] = STATE(153), - [sym_todo] = STATE(153), - [sym_note] = STATE(153), - [sym__symbol_fallback] = STATE(153), - [aux_sym__text] = STATE(134), - [aux_sym__inline_repeat1] = STATE(7), - [anon_sym_LBRACE_] = ACTIONS(97), - [anon_sym__] = ACTIONS(99), - [anon_sym_LBRACE_STAR] = ACTIONS(101), - [anon_sym_STAR] = ACTIONS(103), - [anon_sym_LBRACE_CARET] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [anon_sym_LBRACE_TILDE] = ACTIONS(107), - [anon_sym_TILDE] = ACTIONS(107), - [anon_sym_LBRACE_EQ] = ACTIONS(109), - [anon_sym_LBRACE_PLUS] = ACTIONS(111), - [anon_sym_LBRACE_DASH] = ACTIONS(113), - [anon_sym_BSLASH] = ACTIONS(115), - [sym_quotation_marks] = ACTIONS(117), - [sym_ellipsis] = ACTIONS(117), - [sym_em_dash] = ACTIONS(117), - [sym_en_dash] = ACTIONS(119), - [sym_backslash_escape] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [sym_symbol] = ACTIONS(117), - [anon_sym_LBRACK_CARET] = ACTIONS(123), - [anon_sym_BANG_LBRACK] = ACTIONS(125), - [anon_sym_LBRACK] = ACTIONS(127), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_TODO] = ACTIONS(131), - [anon_sym_WIP] = ACTIONS(131), - [anon_sym_NOTE] = ACTIONS(133), - [anon_sym_INFO] = ACTIONS(133), - [anon_sym_XXX] = ACTIONS(133), - [sym_fixme] = ACTIONS(117), - [sym__whitespace1] = ACTIONS(135), - [sym__newline] = ACTIONS(137), - [aux_sym__text_token1] = ACTIONS(139), - [sym__verbatim_begin] = ACTIONS(141), + [sym__element] = STATE(47), + [sym_emphasis] = STATE(136), + [sym_emphasis_begin] = STATE(1122), + [sym_strong] = STATE(136), + [sym_strong_begin] = STATE(1123), + [sym_superscript] = STATE(136), + [sym_superscript_begin] = STATE(1124), + [sym_subscript] = STATE(136), + [sym_subscript_begin] = STATE(1125), + [sym_highlighted] = STATE(136), + [sym_highlighted_begin] = STATE(1126), + [sym_insert] = STATE(136), + [sym_insert_begin] = STATE(1127), + [sym_delete] = STATE(136), + [sym_delete_begin] = STATE(1128), + [sym_hard_line_break] = STATE(136), + [sym__smart_punctuation] = STATE(136), + [sym_autolink] = STATE(136), + [sym_footnote_reference] = STATE(136), + [sym_footnote_marker_begin] = STATE(1129), + [sym__image] = STATE(136), + [sym_full_reference_image] = STATE(136), + [sym_collapsed_reference_image] = STATE(136), + [sym_inline_image] = STATE(136), + [sym_image_description] = STATE(651), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(136), + [sym_full_reference_link] = STATE(136), + [sym_collapsed_reference_link] = STATE(136), + [sym_inline_link] = STATE(136), + [sym_link_text] = STATE(650), + [sym_span] = STATE(47), + [sym__bracketed_text_begin] = STATE(1186), + [sym__comment_with_spaces] = STATE(136), + [sym_raw_inline] = STATE(136), + [sym_math] = STATE(136), + [sym_verbatim] = STATE(136), + [sym__todo_highlights] = STATE(136), + [sym_todo] = STATE(136), + [sym_note] = STATE(136), + [sym__symbol_fallback] = STATE(136), + [aux_sym__text] = STATE(130), + [aux_sym__inline_repeat1] = STATE(47), + [anon_sym_LBRACE_] = ACTIONS(641), + [anon_sym__] = ACTIONS(644), + [anon_sym_LBRACE_STAR] = ACTIONS(647), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_LBRACE_CARET] = ACTIONS(653), + [anon_sym_CARET] = ACTIONS(653), + [anon_sym_LBRACE_TILDE] = ACTIONS(656), + [anon_sym_TILDE] = ACTIONS(656), + [anon_sym_LBRACE_EQ] = ACTIONS(659), + [anon_sym_LBRACE_PLUS] = ACTIONS(662), + [anon_sym_LBRACE_DASH] = ACTIONS(665), + [anon_sym_BSLASH] = ACTIONS(668), + [sym_quotation_marks] = ACTIONS(671), + [sym_ellipsis] = ACTIONS(671), + [sym_em_dash] = ACTIONS(671), + [sym_en_dash] = ACTIONS(674), + [sym_backslash_escape] = ACTIONS(674), + [anon_sym_LT] = ACTIONS(677), + [sym_symbol] = ACTIONS(671), + [anon_sym_LBRACK_CARET] = ACTIONS(680), + [anon_sym_BANG_LBRACK] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_LPAREN] = ACTIONS(689), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_TODO] = ACTIONS(695), + [anon_sym_WIP] = ACTIONS(695), + [anon_sym_NOTE] = ACTIONS(698), + [anon_sym_INFO] = ACTIONS(698), + [anon_sym_XXX] = ACTIONS(698), + [sym_fixme] = ACTIONS(671), + [sym__whitespace1] = ACTIONS(701), + [sym__newline] = ACTIONS(704), + [aux_sym__text_token1] = ACTIONS(707), + [sym__verbatim_begin] = ACTIONS(710), + [sym_highlighted_end] = ACTIONS(317), }, [48] = { - [sym__inline] = STATE(911), - [sym__element] = STATE(21), - [sym_emphasis] = STATE(149), - [sym_emphasis_begin] = STATE(1199), - [sym_strong] = STATE(149), - [sym_strong_begin] = STATE(1200), - [sym_superscript] = STATE(149), - [sym_superscript_begin] = STATE(1201), - [sym_subscript] = STATE(149), - [sym_subscript_begin] = STATE(1202), - [sym_highlighted] = STATE(149), - [sym_highlighted_begin] = STATE(1203), - [sym_insert] = STATE(149), - [sym_insert_begin] = STATE(1204), - [sym_delete] = STATE(149), - [sym_delete_begin] = STATE(1205), - [sym_hard_line_break] = STATE(149), - [sym__smart_punctuation] = STATE(149), - [sym_autolink] = STATE(149), - [sym_footnote_reference] = STATE(149), - [sym_footnote_marker_begin] = STATE(1206), - [sym__image] = STATE(149), - [sym_full_reference_image] = STATE(149), - [sym_collapsed_reference_image] = STATE(149), - [sym_inline_image] = STATE(149), - [sym_image_description] = STATE(714), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(149), - [sym_full_reference_link] = STATE(149), - [sym_collapsed_reference_link] = STATE(149), - [sym_inline_link] = STATE(149), - [sym_link_text] = STATE(710), - [sym_span] = STATE(21), - [sym__bracketed_text_begin] = STATE(1266), - [sym__comment_with_spaces] = STATE(149), - [sym_raw_inline] = STATE(149), - [sym_math] = STATE(149), - [sym_verbatim] = STATE(149), - [sym__todo_highlights] = STATE(149), - [sym_todo] = STATE(149), - [sym_note] = STATE(149), - [sym__symbol_fallback] = STATE(149), - [aux_sym__text] = STATE(142), - [aux_sym__inline_repeat1] = STATE(21), - [anon_sym_LBRACE_] = ACTIONS(494), - [anon_sym__] = ACTIONS(496), - [anon_sym_LBRACE_STAR] = ACTIONS(498), - [anon_sym_STAR] = ACTIONS(500), - [anon_sym_LBRACE_CARET] = ACTIONS(502), - [anon_sym_CARET] = ACTIONS(502), - [anon_sym_LBRACE_TILDE] = ACTIONS(504), - [anon_sym_TILDE] = ACTIONS(504), - [anon_sym_LBRACE_EQ] = ACTIONS(506), - [anon_sym_LBRACE_PLUS] = ACTIONS(508), - [anon_sym_LBRACE_DASH] = ACTIONS(510), - [anon_sym_BSLASH] = ACTIONS(512), - [sym_quotation_marks] = ACTIONS(514), - [sym_ellipsis] = ACTIONS(514), - [sym_em_dash] = ACTIONS(514), - [sym_en_dash] = ACTIONS(516), - [sym_backslash_escape] = ACTIONS(516), - [anon_sym_LT] = ACTIONS(518), - [sym_symbol] = ACTIONS(514), - [anon_sym_LBRACK_CARET] = ACTIONS(520), - [anon_sym_BANG_LBRACK] = ACTIONS(522), - [anon_sym_LBRACK] = ACTIONS(524), - [anon_sym_DOLLAR] = ACTIONS(526), - [anon_sym_TODO] = ACTIONS(528), - [anon_sym_WIP] = ACTIONS(528), - [anon_sym_NOTE] = ACTIONS(530), - [anon_sym_INFO] = ACTIONS(530), - [anon_sym_XXX] = ACTIONS(530), - [sym_fixme] = ACTIONS(514), - [sym__whitespace1] = ACTIONS(532), - [sym__newline] = ACTIONS(540), - [aux_sym__text_token1] = ACTIONS(536), - [sym__verbatim_begin] = ACTIONS(538), + [sym__inline] = STATE(843), + [sym__element] = STATE(22), + [sym_emphasis] = STATE(137), + [sym_emphasis_begin] = STATE(1112), + [sym_strong] = STATE(137), + [sym_strong_begin] = STATE(1113), + [sym_superscript] = STATE(137), + [sym_superscript_begin] = STATE(1114), + [sym_subscript] = STATE(137), + [sym_subscript_begin] = STATE(1115), + [sym_highlighted] = STATE(137), + [sym_highlighted_begin] = STATE(1116), + [sym_insert] = STATE(137), + [sym_insert_begin] = STATE(1117), + [sym_delete] = STATE(137), + [sym_delete_begin] = STATE(1118), + [sym_hard_line_break] = STATE(137), + [sym__smart_punctuation] = STATE(137), + [sym_autolink] = STATE(137), + [sym_footnote_reference] = STATE(137), + [sym_footnote_marker_begin] = STATE(1119), + [sym__image] = STATE(137), + [sym_full_reference_image] = STATE(137), + [sym_collapsed_reference_image] = STATE(137), + [sym_inline_image] = STATE(137), + [sym_image_description] = STATE(636), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(137), + [sym_full_reference_link] = STATE(137), + [sym_collapsed_reference_link] = STATE(137), + [sym_inline_link] = STATE(137), + [sym_link_text] = STATE(647), + [sym_span] = STATE(22), + [sym__bracketed_text_begin] = STATE(1185), + [sym__comment_with_spaces] = STATE(137), + [sym_raw_inline] = STATE(137), + [sym_math] = STATE(137), + [sym_verbatim] = STATE(137), + [sym__todo_highlights] = STATE(137), + [sym_todo] = STATE(137), + [sym_note] = STATE(137), + [sym__symbol_fallback] = STATE(137), + [aux_sym__text] = STATE(122), + [aux_sym__inline_repeat1] = STATE(22), + [anon_sym_LBRACE_] = ACTIONS(197), + [anon_sym__] = ACTIONS(199), + [anon_sym_LBRACE_STAR] = ACTIONS(201), + [anon_sym_STAR] = ACTIONS(203), + [anon_sym_LBRACE_CARET] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(205), + [anon_sym_LBRACE_TILDE] = ACTIONS(207), + [anon_sym_TILDE] = ACTIONS(207), + [anon_sym_LBRACE_EQ] = ACTIONS(209), + [anon_sym_LBRACE_PLUS] = ACTIONS(211), + [anon_sym_LBRACE_DASH] = ACTIONS(213), + [anon_sym_BSLASH] = ACTIONS(215), + [sym_quotation_marks] = ACTIONS(217), + [sym_ellipsis] = ACTIONS(217), + [sym_em_dash] = ACTIONS(217), + [sym_en_dash] = ACTIONS(219), + [sym_backslash_escape] = ACTIONS(219), + [anon_sym_LT] = ACTIONS(221), + [sym_symbol] = ACTIONS(217), + [anon_sym_LBRACK_CARET] = ACTIONS(223), + [anon_sym_BANG_LBRACK] = ACTIONS(225), + [anon_sym_LBRACK] = ACTIONS(227), + [anon_sym_LPAREN] = ACTIONS(229), + [anon_sym_DOLLAR] = ACTIONS(231), + [anon_sym_TODO] = ACTIONS(233), + [anon_sym_WIP] = ACTIONS(233), + [anon_sym_NOTE] = ACTIONS(235), + [anon_sym_INFO] = ACTIONS(235), + [anon_sym_XXX] = ACTIONS(235), + [sym_fixme] = ACTIONS(217), + [sym__whitespace1] = ACTIONS(237), + [sym__newline] = ACTIONS(239), + [aux_sym__text_token1] = ACTIONS(241), + [sym__verbatim_begin] = ACTIONS(243), }, [49] = { - [sym__inline] = STATE(1023), - [sym__element] = STATE(84), - [sym_emphasis] = STATE(146), - [sym_emphasis_begin] = STATE(1226), - [sym_strong] = STATE(146), - [sym_strong_begin] = STATE(1227), - [sym_superscript] = STATE(146), - [sym_superscript_begin] = STATE(1228), - [sym_subscript] = STATE(146), - [sym_subscript_begin] = STATE(1229), - [sym_highlighted] = STATE(146), - [sym_highlighted_begin] = STATE(1230), - [sym_insert] = STATE(146), - [sym_insert_begin] = STATE(1231), - [sym_delete] = STATE(146), - [sym_delete_begin] = STATE(1232), - [sym_hard_line_break] = STATE(146), - [sym__smart_punctuation] = STATE(146), - [sym_autolink] = STATE(146), - [sym_footnote_reference] = STATE(146), - [sym_footnote_marker_begin] = STATE(1233), - [sym__image] = STATE(146), - [sym_full_reference_image] = STATE(146), - [sym_collapsed_reference_image] = STATE(146), - [sym_inline_image] = STATE(146), - [sym_image_description] = STATE(694), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(146), - [sym_full_reference_link] = STATE(146), - [sym_collapsed_reference_link] = STATE(146), - [sym_inline_link] = STATE(146), - [sym_link_text] = STATE(693), - [sym_span] = STATE(84), - [sym__bracketed_text_begin] = STATE(1269), - [sym__comment_with_spaces] = STATE(146), - [sym_raw_inline] = STATE(146), - [sym_math] = STATE(146), - [sym_verbatim] = STATE(146), - [sym__todo_highlights] = STATE(146), - [sym_todo] = STATE(146), - [sym_note] = STATE(146), - [sym__symbol_fallback] = STATE(146), - [aux_sym__text] = STATE(141), - [aux_sym__inline_repeat1] = STATE(84), - [anon_sym_LBRACE_] = ACTIONS(356), - [anon_sym__] = ACTIONS(358), - [anon_sym_LBRACE_STAR] = ACTIONS(360), - [anon_sym_STAR] = ACTIONS(362), - [anon_sym_LBRACE_CARET] = ACTIONS(364), - [anon_sym_CARET] = ACTIONS(364), - [anon_sym_LBRACE_TILDE] = ACTIONS(366), - [anon_sym_TILDE] = ACTIONS(366), - [anon_sym_LBRACE_EQ] = ACTIONS(368), - [anon_sym_LBRACE_PLUS] = ACTIONS(370), - [anon_sym_LBRACE_DASH] = ACTIONS(372), - [anon_sym_BSLASH] = ACTIONS(374), - [sym_quotation_marks] = ACTIONS(376), - [sym_ellipsis] = ACTIONS(376), - [sym_em_dash] = ACTIONS(376), - [sym_en_dash] = ACTIONS(378), - [sym_backslash_escape] = ACTIONS(378), - [anon_sym_LT] = ACTIONS(380), - [sym_symbol] = ACTIONS(376), - [anon_sym_LBRACK_CARET] = ACTIONS(382), - [anon_sym_BANG_LBRACK] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(386), - [anon_sym_DOLLAR] = ACTIONS(388), - [anon_sym_TODO] = ACTIONS(390), - [anon_sym_WIP] = ACTIONS(390), - [anon_sym_NOTE] = ACTIONS(392), - [anon_sym_INFO] = ACTIONS(392), - [anon_sym_XXX] = ACTIONS(392), - [sym_fixme] = ACTIONS(376), - [sym__whitespace1] = ACTIONS(394), - [sym__newline] = ACTIONS(396), - [aux_sym__text_token1] = ACTIONS(398), - [sym__verbatim_begin] = ACTIONS(400), + [sym__inline] = STATE(842), + [sym__element] = STATE(106), + [sym_emphasis] = STATE(139), + [sym_emphasis_begin] = STATE(1102), + [sym_strong] = STATE(139), + [sym_strong_begin] = STATE(1103), + [sym_superscript] = STATE(139), + [sym_superscript_begin] = STATE(1104), + [sym_subscript] = STATE(139), + [sym_subscript_begin] = STATE(1105), + [sym_highlighted] = STATE(139), + [sym_highlighted_begin] = STATE(1106), + [sym_insert] = STATE(139), + [sym_insert_begin] = STATE(1107), + [sym_delete] = STATE(139), + [sym_delete_begin] = STATE(1108), + [sym_hard_line_break] = STATE(139), + [sym__smart_punctuation] = STATE(139), + [sym_autolink] = STATE(139), + [sym_footnote_reference] = STATE(139), + [sym_footnote_marker_begin] = STATE(1109), + [sym__image] = STATE(139), + [sym_full_reference_image] = STATE(139), + [sym_collapsed_reference_image] = STATE(139), + [sym_inline_image] = STATE(139), + [sym_image_description] = STATE(623), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(139), + [sym_full_reference_link] = STATE(139), + [sym_collapsed_reference_link] = STATE(139), + [sym_inline_link] = STATE(139), + [sym_link_text] = STATE(621), + [sym_span] = STATE(106), + [sym__bracketed_text_begin] = STATE(1184), + [sym__comment_with_spaces] = STATE(139), + [sym_raw_inline] = STATE(139), + [sym_math] = STATE(139), + [sym_verbatim] = STATE(139), + [sym__todo_highlights] = STATE(139), + [sym_todo] = STATE(139), + [sym_note] = STATE(139), + [sym__symbol_fallback] = STATE(139), + [aux_sym__text] = STATE(126), + [aux_sym__inline_repeat1] = STATE(106), + [anon_sym_LBRACE_] = ACTIONS(101), + [anon_sym__] = ACTIONS(103), + [anon_sym_LBRACE_STAR] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(107), + [anon_sym_LBRACE_CARET] = ACTIONS(109), + [anon_sym_CARET] = ACTIONS(109), + [anon_sym_LBRACE_TILDE] = ACTIONS(111), + [anon_sym_TILDE] = ACTIONS(111), + [anon_sym_LBRACE_EQ] = ACTIONS(113), + [anon_sym_LBRACE_PLUS] = ACTIONS(115), + [anon_sym_LBRACE_DASH] = ACTIONS(117), + [anon_sym_BSLASH] = ACTIONS(119), + [sym_quotation_marks] = ACTIONS(121), + [sym_ellipsis] = ACTIONS(121), + [sym_em_dash] = ACTIONS(121), + [sym_en_dash] = ACTIONS(123), + [sym_backslash_escape] = ACTIONS(123), + [anon_sym_LT] = ACTIONS(125), + [sym_symbol] = ACTIONS(121), + [anon_sym_LBRACK_CARET] = ACTIONS(127), + [anon_sym_BANG_LBRACK] = ACTIONS(129), + [anon_sym_LBRACK] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_DOLLAR] = ACTIONS(135), + [anon_sym_TODO] = ACTIONS(137), + [anon_sym_WIP] = ACTIONS(137), + [anon_sym_NOTE] = ACTIONS(139), + [anon_sym_INFO] = ACTIONS(139), + [anon_sym_XXX] = ACTIONS(139), + [sym_fixme] = ACTIONS(121), + [sym__whitespace1] = ACTIONS(141), + [sym__newline] = ACTIONS(143), + [aux_sym__text_token1] = ACTIONS(145), + [sym__verbatim_begin] = ACTIONS(147), }, [50] = { - [sym__inline_without_trailing_space] = STATE(1111), - [sym__element] = STATE(623), - [sym_emphasis] = STATE(148), - [sym_emphasis_begin] = STATE(1163), - [sym_strong] = STATE(148), - [sym_strong_begin] = STATE(1164), - [sym_superscript] = STATE(148), - [sym_superscript_begin] = STATE(1165), - [sym_subscript] = STATE(148), - [sym_subscript_begin] = STATE(1166), - [sym_highlighted] = STATE(148), - [sym_highlighted_begin] = STATE(1167), - [sym_insert] = STATE(148), - [sym_insert_begin] = STATE(1168), - [sym_delete] = STATE(148), - [sym_delete_begin] = STATE(1169), - [sym_hard_line_break] = STATE(148), - [sym__smart_punctuation] = STATE(148), - [sym_autolink] = STATE(148), - [sym_footnote_reference] = STATE(148), - [sym_footnote_marker_begin] = STATE(1170), - [sym__image] = STATE(148), - [sym_full_reference_image] = STATE(148), - [sym_collapsed_reference_image] = STATE(148), - [sym_inline_image] = STATE(148), - [sym_image_description] = STATE(712), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(148), - [sym_full_reference_link] = STATE(148), - [sym_collapsed_reference_link] = STATE(148), - [sym_inline_link] = STATE(148), - [sym_link_text] = STATE(713), - [sym_span] = STATE(623), - [sym__bracketed_text_begin] = STATE(1262), - [sym__comment_with_spaces] = STATE(148), - [sym_raw_inline] = STATE(148), - [sym_math] = STATE(148), - [sym_verbatim] = STATE(148), - [sym__todo_highlights] = STATE(148), - [sym_todo] = STATE(148), - [sym_note] = STATE(148), - [sym__symbol_fallback] = STATE(148), - [aux_sym__text] = STATE(136), - [aux_sym__inline_repeat1] = STATE(129), - [anon_sym_LBRACE_] = ACTIONS(402), - [anon_sym__] = ACTIONS(404), - [anon_sym_LBRACE_STAR] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_LBRACE_CARET] = ACTIONS(410), - [anon_sym_CARET] = ACTIONS(410), - [anon_sym_LBRACE_TILDE] = ACTIONS(412), - [anon_sym_TILDE] = ACTIONS(412), - [anon_sym_LBRACE_EQ] = ACTIONS(414), - [anon_sym_LBRACE_PLUS] = ACTIONS(416), - [anon_sym_LBRACE_DASH] = ACTIONS(418), - [anon_sym_BSLASH] = ACTIONS(420), - [sym_quotation_marks] = ACTIONS(422), - [sym_ellipsis] = ACTIONS(422), - [sym_em_dash] = ACTIONS(422), - [sym_en_dash] = ACTIONS(424), - [sym_backslash_escape] = ACTIONS(424), - [anon_sym_LT] = ACTIONS(426), - [sym_symbol] = ACTIONS(422), - [anon_sym_LBRACK_CARET] = ACTIONS(428), - [anon_sym_BANG_LBRACK] = ACTIONS(430), - [anon_sym_LBRACK] = ACTIONS(432), - [anon_sym_DOLLAR] = ACTIONS(434), - [anon_sym_TODO] = ACTIONS(436), - [anon_sym_WIP] = ACTIONS(436), - [anon_sym_NOTE] = ACTIONS(438), - [anon_sym_INFO] = ACTIONS(438), - [anon_sym_XXX] = ACTIONS(438), - [sym_fixme] = ACTIONS(422), - [sym__whitespace1] = ACTIONS(440), - [sym__newline] = ACTIONS(442), - [aux_sym__text_token1] = ACTIONS(444), - [sym__verbatim_begin] = ACTIONS(446), + [sym__inline] = STATE(929), + [sym__element] = STATE(71), + [sym_emphasis] = STATE(132), + [sym_emphasis_begin] = STATE(1152), + [sym_strong] = STATE(132), + [sym_strong_begin] = STATE(1153), + [sym_superscript] = STATE(132), + [sym_superscript_begin] = STATE(1154), + [sym_subscript] = STATE(132), + [sym_subscript_begin] = STATE(1155), + [sym_highlighted] = STATE(132), + [sym_highlighted_begin] = STATE(1156), + [sym_insert] = STATE(132), + [sym_insert_begin] = STATE(1157), + [sym_delete] = STATE(132), + [sym_delete_begin] = STATE(1158), + [sym_hard_line_break] = STATE(132), + [sym__smart_punctuation] = STATE(132), + [sym_autolink] = STATE(132), + [sym_footnote_reference] = STATE(132), + [sym_footnote_marker_begin] = STATE(1159), + [sym__image] = STATE(132), + [sym_full_reference_image] = STATE(132), + [sym_collapsed_reference_image] = STATE(132), + [sym_inline_image] = STATE(132), + [sym_image_description] = STATE(633), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(132), + [sym_full_reference_link] = STATE(132), + [sym_collapsed_reference_link] = STATE(132), + [sym_inline_link] = STATE(132), + [sym_link_text] = STATE(631), + [sym_span] = STATE(71), + [sym__bracketed_text_begin] = STATE(1189), + [sym__comment_with_spaces] = STATE(132), + [sym_raw_inline] = STATE(132), + [sym_math] = STATE(132), + [sym_verbatim] = STATE(132), + [sym__todo_highlights] = STATE(132), + [sym_todo] = STATE(132), + [sym_note] = STATE(132), + [sym__symbol_fallback] = STATE(132), + [aux_sym__text] = STATE(128), + [aux_sym__inline_repeat1] = STATE(71), + [anon_sym_LBRACE_] = ACTIONS(441), + [anon_sym__] = ACTIONS(443), + [anon_sym_LBRACE_STAR] = ACTIONS(445), + [anon_sym_STAR] = ACTIONS(447), + [anon_sym_LBRACE_CARET] = ACTIONS(449), + [anon_sym_CARET] = ACTIONS(449), + [anon_sym_LBRACE_TILDE] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_LBRACE_EQ] = ACTIONS(453), + [anon_sym_LBRACE_PLUS] = ACTIONS(455), + [anon_sym_LBRACE_DASH] = ACTIONS(457), + [anon_sym_BSLASH] = ACTIONS(459), + [sym_quotation_marks] = ACTIONS(461), + [sym_ellipsis] = ACTIONS(461), + [sym_em_dash] = ACTIONS(461), + [sym_en_dash] = ACTIONS(463), + [sym_backslash_escape] = ACTIONS(463), + [anon_sym_LT] = ACTIONS(465), + [sym_symbol] = ACTIONS(461), + [anon_sym_LBRACK_CARET] = ACTIONS(467), + [anon_sym_BANG_LBRACK] = ACTIONS(469), + [anon_sym_LBRACK] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(473), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_TODO] = ACTIONS(477), + [anon_sym_WIP] = ACTIONS(477), + [anon_sym_NOTE] = ACTIONS(479), + [anon_sym_INFO] = ACTIONS(479), + [anon_sym_XXX] = ACTIONS(479), + [sym_fixme] = ACTIONS(461), + [sym__whitespace1] = ACTIONS(481), + [sym__newline] = ACTIONS(483), + [aux_sym__text_token1] = ACTIONS(485), + [sym__verbatim_begin] = ACTIONS(487), }, [51] = { - [sym__inline_without_trailing_space] = STATE(1109), - [sym__element] = STATE(570), - [sym_emphasis] = STATE(152), - [sym_emphasis_begin] = STATE(1172), - [sym_strong] = STATE(152), - [sym_strong_begin] = STATE(1173), - [sym_superscript] = STATE(152), - [sym_superscript_begin] = STATE(1174), - [sym_subscript] = STATE(152), - [sym_subscript_begin] = STATE(1175), - [sym_highlighted] = STATE(152), - [sym_highlighted_begin] = STATE(1176), - [sym_insert] = STATE(152), - [sym_insert_begin] = STATE(1177), - [sym_delete] = STATE(152), - [sym_delete_begin] = STATE(1178), - [sym_hard_line_break] = STATE(152), - [sym__smart_punctuation] = STATE(152), - [sym_autolink] = STATE(152), - [sym_footnote_reference] = STATE(152), - [sym_footnote_marker_begin] = STATE(1179), - [sym__image] = STATE(152), - [sym_full_reference_image] = STATE(152), - [sym_collapsed_reference_image] = STATE(152), - [sym_inline_image] = STATE(152), - [sym_image_description] = STATE(704), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(152), - [sym_full_reference_link] = STATE(152), - [sym_collapsed_reference_link] = STATE(152), - [sym_inline_link] = STATE(152), - [sym_link_text] = STATE(706), - [sym_span] = STATE(570), - [sym__bracketed_text_begin] = STATE(1263), - [sym__comment_with_spaces] = STATE(152), - [sym_raw_inline] = STATE(152), - [sym_math] = STATE(152), - [sym_verbatim] = STATE(152), - [sym__todo_highlights] = STATE(152), - [sym_todo] = STATE(152), - [sym_note] = STATE(152), - [sym__symbol_fallback] = STATE(152), - [aux_sym__text] = STATE(133), - [aux_sym__inline_repeat1] = STATE(130), - [anon_sym_LBRACE_] = ACTIONS(448), - [anon_sym__] = ACTIONS(450), - [anon_sym_LBRACE_STAR] = ACTIONS(452), - [anon_sym_STAR] = ACTIONS(454), - [anon_sym_LBRACE_CARET] = ACTIONS(456), - [anon_sym_CARET] = ACTIONS(456), - [anon_sym_LBRACE_TILDE] = ACTIONS(458), - [anon_sym_TILDE] = ACTIONS(458), - [anon_sym_LBRACE_EQ] = ACTIONS(460), - [anon_sym_LBRACE_PLUS] = ACTIONS(462), - [anon_sym_LBRACE_DASH] = ACTIONS(464), - [anon_sym_BSLASH] = ACTIONS(466), - [sym_quotation_marks] = ACTIONS(468), - [sym_ellipsis] = ACTIONS(468), - [sym_em_dash] = ACTIONS(468), - [sym_en_dash] = ACTIONS(470), - [sym_backslash_escape] = ACTIONS(470), - [anon_sym_LT] = ACTIONS(472), - [sym_symbol] = ACTIONS(468), - [anon_sym_LBRACK_CARET] = ACTIONS(474), - [anon_sym_BANG_LBRACK] = ACTIONS(476), - [anon_sym_LBRACK] = ACTIONS(478), - [anon_sym_DOLLAR] = ACTIONS(480), - [anon_sym_TODO] = ACTIONS(482), - [anon_sym_WIP] = ACTIONS(482), - [anon_sym_NOTE] = ACTIONS(484), - [anon_sym_INFO] = ACTIONS(484), - [anon_sym_XXX] = ACTIONS(484), - [sym_fixme] = ACTIONS(468), - [sym__whitespace1] = ACTIONS(486), - [sym__newline] = ACTIONS(488), - [aux_sym__text_token1] = ACTIONS(490), - [sym__verbatim_begin] = ACTIONS(492), + [sym__inline_without_trailing_space] = STATE(1027), + [sym__element] = STATE(581), + [sym_emphasis] = STATE(141), + [sym_emphasis_begin] = STATE(1082), + [sym_strong] = STATE(141), + [sym_strong_begin] = STATE(1083), + [sym_superscript] = STATE(141), + [sym_superscript_begin] = STATE(1084), + [sym_subscript] = STATE(141), + [sym_subscript_begin] = STATE(1085), + [sym_highlighted] = STATE(141), + [sym_highlighted_begin] = STATE(1086), + [sym_insert] = STATE(141), + [sym_insert_begin] = STATE(1087), + [sym_delete] = STATE(141), + [sym_delete_begin] = STATE(1088), + [sym_hard_line_break] = STATE(141), + [sym__smart_punctuation] = STATE(141), + [sym_autolink] = STATE(141), + [sym_footnote_reference] = STATE(141), + [sym_footnote_marker_begin] = STATE(1089), + [sym__image] = STATE(141), + [sym_full_reference_image] = STATE(141), + [sym_collapsed_reference_image] = STATE(141), + [sym_inline_image] = STATE(141), + [sym_image_description] = STATE(642), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(141), + [sym_full_reference_link] = STATE(141), + [sym_collapsed_reference_link] = STATE(141), + [sym_inline_link] = STATE(141), + [sym_link_text] = STATE(629), + [sym_span] = STATE(581), + [sym__bracketed_text_begin] = STATE(1182), + [sym__comment_with_spaces] = STATE(141), + [sym_raw_inline] = STATE(141), + [sym_math] = STATE(141), + [sym_verbatim] = STATE(141), + [sym__todo_highlights] = STATE(141), + [sym_todo] = STATE(141), + [sym_note] = STATE(141), + [sym__symbol_fallback] = STATE(141), + [aux_sym__text] = STATE(125), + [aux_sym__inline_repeat1] = STATE(119), + [anon_sym_LBRACE_] = ACTIONS(585), + [anon_sym__] = ACTIONS(587), + [anon_sym_LBRACE_STAR] = ACTIONS(589), + [anon_sym_STAR] = ACTIONS(591), + [anon_sym_LBRACE_CARET] = ACTIONS(593), + [anon_sym_CARET] = ACTIONS(593), + [anon_sym_LBRACE_TILDE] = ACTIONS(595), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_LBRACE_EQ] = ACTIONS(597), + [anon_sym_LBRACE_PLUS] = ACTIONS(599), + [anon_sym_LBRACE_DASH] = ACTIONS(601), + [anon_sym_BSLASH] = ACTIONS(603), + [sym_quotation_marks] = ACTIONS(605), + [sym_ellipsis] = ACTIONS(605), + [sym_em_dash] = ACTIONS(605), + [sym_en_dash] = ACTIONS(607), + [sym_backslash_escape] = ACTIONS(607), + [anon_sym_LT] = ACTIONS(609), + [sym_symbol] = ACTIONS(605), + [anon_sym_LBRACK_CARET] = ACTIONS(611), + [anon_sym_BANG_LBRACK] = ACTIONS(613), + [anon_sym_LBRACK] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [anon_sym_TODO] = ACTIONS(621), + [anon_sym_WIP] = ACTIONS(621), + [anon_sym_NOTE] = ACTIONS(623), + [anon_sym_INFO] = ACTIONS(623), + [anon_sym_XXX] = ACTIONS(623), + [sym_fixme] = ACTIONS(605), + [sym__whitespace1] = ACTIONS(625), + [sym__newline] = ACTIONS(627), + [aux_sym__text_token1] = ACTIONS(629), + [sym__verbatim_begin] = ACTIONS(631), }, [52] = { - [sym__inline] = STATE(1108), - [sym__element] = STATE(124), - [sym_emphasis] = STATE(151), - [sym_emphasis_begin] = STATE(1181), - [sym_strong] = STATE(151), - [sym_strong_begin] = STATE(1182), - [sym_superscript] = STATE(151), - [sym_superscript_begin] = STATE(1183), - [sym_subscript] = STATE(151), - [sym_subscript_begin] = STATE(1184), - [sym_highlighted] = STATE(151), - [sym_highlighted_begin] = STATE(1185), - [sym_insert] = STATE(151), - [sym_insert_begin] = STATE(1186), - [sym_delete] = STATE(151), - [sym_delete_begin] = STATE(1187), - [sym_hard_line_break] = STATE(151), - [sym__smart_punctuation] = STATE(151), - [sym_autolink] = STATE(151), - [sym_footnote_reference] = STATE(151), - [sym_footnote_marker_begin] = STATE(1188), - [sym__image] = STATE(151), - [sym_full_reference_image] = STATE(151), - [sym_collapsed_reference_image] = STATE(151), - [sym_inline_image] = STATE(151), - [sym_image_description] = STATE(700), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(151), - [sym_full_reference_link] = STATE(151), - [sym_collapsed_reference_link] = STATE(151), - [sym_inline_link] = STATE(151), - [sym_link_text] = STATE(701), - [sym_span] = STATE(124), - [sym__bracketed_text_begin] = STATE(1264), - [sym__comment_with_spaces] = STATE(151), - [sym_raw_inline] = STATE(151), - [sym_math] = STATE(151), - [sym_verbatim] = STATE(151), - [sym__todo_highlights] = STATE(151), - [sym_todo] = STATE(151), - [sym_note] = STATE(151), - [sym__symbol_fallback] = STATE(151), - [aux_sym__text] = STATE(140), - [aux_sym__inline_repeat1] = STATE(124), - [anon_sym_LBRACE_] = ACTIONS(143), - [anon_sym__] = ACTIONS(145), - [anon_sym_LBRACE_STAR] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_LBRACE_CARET] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(151), - [anon_sym_LBRACE_TILDE] = ACTIONS(153), - [anon_sym_TILDE] = ACTIONS(153), - [anon_sym_LBRACE_EQ] = ACTIONS(155), - [anon_sym_LBRACE_PLUS] = ACTIONS(157), - [anon_sym_LBRACE_DASH] = ACTIONS(159), - [anon_sym_BSLASH] = ACTIONS(161), - [sym_quotation_marks] = ACTIONS(163), - [sym_ellipsis] = ACTIONS(163), - [sym_em_dash] = ACTIONS(163), - [sym_en_dash] = ACTIONS(165), - [sym_backslash_escape] = ACTIONS(165), - [anon_sym_LT] = ACTIONS(167), - [sym_symbol] = ACTIONS(163), - [anon_sym_LBRACK_CARET] = ACTIONS(169), - [anon_sym_BANG_LBRACK] = ACTIONS(171), - [anon_sym_LBRACK] = ACTIONS(173), - [anon_sym_DOLLAR] = ACTIONS(175), - [anon_sym_TODO] = ACTIONS(177), - [anon_sym_WIP] = ACTIONS(177), - [anon_sym_NOTE] = ACTIONS(179), - [anon_sym_INFO] = ACTIONS(179), - [anon_sym_XXX] = ACTIONS(179), - [sym_fixme] = ACTIONS(163), - [sym__whitespace1] = ACTIONS(181), - [sym__newline] = ACTIONS(183), - [aux_sym__text_token1] = ACTIONS(185), - [sym__verbatim_begin] = ACTIONS(187), + [sym__inline_without_trailing_space] = STATE(1026), + [sym__element] = STATE(536), + [sym_emphasis] = STATE(138), + [sym_emphasis_begin] = STATE(1092), + [sym_strong] = STATE(138), + [sym_strong_begin] = STATE(1093), + [sym_superscript] = STATE(138), + [sym_superscript_begin] = STATE(1094), + [sym_subscript] = STATE(138), + [sym_subscript_begin] = STATE(1095), + [sym_highlighted] = STATE(138), + [sym_highlighted_begin] = STATE(1096), + [sym_insert] = STATE(138), + [sym_insert_begin] = STATE(1097), + [sym_delete] = STATE(138), + [sym_delete_begin] = STATE(1098), + [sym_hard_line_break] = STATE(138), + [sym__smart_punctuation] = STATE(138), + [sym_autolink] = STATE(138), + [sym_footnote_reference] = STATE(138), + [sym_footnote_marker_begin] = STATE(1099), + [sym__image] = STATE(138), + [sym_full_reference_image] = STATE(138), + [sym_collapsed_reference_image] = STATE(138), + [sym_inline_image] = STATE(138), + [sym_image_description] = STATE(626), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(138), + [sym_full_reference_link] = STATE(138), + [sym_collapsed_reference_link] = STATE(138), + [sym_inline_link] = STATE(138), + [sym_link_text] = STATE(627), + [sym_span] = STATE(536), + [sym__bracketed_text_begin] = STATE(1183), + [sym__comment_with_spaces] = STATE(138), + [sym_raw_inline] = STATE(138), + [sym_math] = STATE(138), + [sym_verbatim] = STATE(138), + [sym__todo_highlights] = STATE(138), + [sym_todo] = STATE(138), + [sym_note] = STATE(138), + [sym__symbol_fallback] = STATE(138), + [aux_sym__text] = STATE(127), + [aux_sym__inline_repeat1] = STATE(118), + [anon_sym_LBRACE_] = ACTIONS(149), + [anon_sym__] = ACTIONS(151), + [anon_sym_LBRACE_STAR] = ACTIONS(153), + [anon_sym_STAR] = ACTIONS(155), + [anon_sym_LBRACE_CARET] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_LBRACE_TILDE] = ACTIONS(159), + [anon_sym_TILDE] = ACTIONS(159), + [anon_sym_LBRACE_EQ] = ACTIONS(161), + [anon_sym_LBRACE_PLUS] = ACTIONS(163), + [anon_sym_LBRACE_DASH] = ACTIONS(165), + [anon_sym_BSLASH] = ACTIONS(167), + [sym_quotation_marks] = ACTIONS(169), + [sym_ellipsis] = ACTIONS(169), + [sym_em_dash] = ACTIONS(169), + [sym_en_dash] = ACTIONS(171), + [sym_backslash_escape] = ACTIONS(171), + [anon_sym_LT] = ACTIONS(173), + [sym_symbol] = ACTIONS(169), + [anon_sym_LBRACK_CARET] = ACTIONS(175), + [anon_sym_BANG_LBRACK] = ACTIONS(177), + [anon_sym_LBRACK] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(181), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_TODO] = ACTIONS(185), + [anon_sym_WIP] = ACTIONS(185), + [anon_sym_NOTE] = ACTIONS(187), + [anon_sym_INFO] = ACTIONS(187), + [anon_sym_XXX] = ACTIONS(187), + [sym_fixme] = ACTIONS(169), + [sym__whitespace1] = ACTIONS(189), + [sym__newline] = ACTIONS(191), + [aux_sym__text_token1] = ACTIONS(193), + [sym__verbatim_begin] = ACTIONS(195), }, [53] = { - [sym__inline] = STATE(1107), - [sym__element] = STATE(80), - [sym_emphasis] = STATE(145), - [sym_emphasis_begin] = STATE(1190), - [sym_strong] = STATE(145), - [sym_strong_begin] = STATE(1191), - [sym_superscript] = STATE(145), - [sym_superscript_begin] = STATE(1192), - [sym_subscript] = STATE(145), - [sym_subscript_begin] = STATE(1193), - [sym_highlighted] = STATE(145), - [sym_highlighted_begin] = STATE(1194), - [sym_insert] = STATE(145), - [sym_insert_begin] = STATE(1195), - [sym_delete] = STATE(145), - [sym_delete_begin] = STATE(1196), - [sym_hard_line_break] = STATE(145), - [sym__smart_punctuation] = STATE(145), - [sym_autolink] = STATE(145), - [sym_footnote_reference] = STATE(145), - [sym_footnote_marker_begin] = STATE(1197), - [sym__image] = STATE(145), - [sym_full_reference_image] = STATE(145), - [sym_collapsed_reference_image] = STATE(145), - [sym_inline_image] = STATE(145), - [sym_image_description] = STATE(696), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(145), - [sym_full_reference_link] = STATE(145), - [sym_collapsed_reference_link] = STATE(145), - [sym_inline_link] = STATE(145), - [sym_link_text] = STATE(691), - [sym_span] = STATE(80), - [sym__bracketed_text_begin] = STATE(1265), - [sym__comment_with_spaces] = STATE(145), - [sym_raw_inline] = STATE(145), - [sym_math] = STATE(145), - [sym_verbatim] = STATE(145), - [sym__todo_highlights] = STATE(145), - [sym_todo] = STATE(145), - [sym_note] = STATE(145), - [sym__symbol_fallback] = STATE(145), - [aux_sym__text] = STATE(138), - [aux_sym__inline_repeat1] = STATE(80), - [anon_sym_LBRACE_] = ACTIONS(542), - [anon_sym__] = ACTIONS(544), - [anon_sym_LBRACE_STAR] = ACTIONS(546), - [anon_sym_STAR] = ACTIONS(548), - [anon_sym_LBRACE_CARET] = ACTIONS(550), - [anon_sym_CARET] = ACTIONS(550), - [anon_sym_LBRACE_TILDE] = ACTIONS(552), - [anon_sym_TILDE] = ACTIONS(552), - [anon_sym_LBRACE_EQ] = ACTIONS(554), - [anon_sym_LBRACE_PLUS] = ACTIONS(556), - [anon_sym_LBRACE_DASH] = ACTIONS(558), - [anon_sym_BSLASH] = ACTIONS(560), - [sym_quotation_marks] = ACTIONS(562), - [sym_ellipsis] = ACTIONS(562), - [sym_em_dash] = ACTIONS(562), - [sym_en_dash] = ACTIONS(564), - [sym_backslash_escape] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(566), - [sym_symbol] = ACTIONS(562), - [anon_sym_LBRACK_CARET] = ACTIONS(568), - [anon_sym_BANG_LBRACK] = ACTIONS(570), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_DOLLAR] = ACTIONS(574), - [anon_sym_TODO] = ACTIONS(576), - [anon_sym_WIP] = ACTIONS(576), - [anon_sym_NOTE] = ACTIONS(578), - [anon_sym_INFO] = ACTIONS(578), - [anon_sym_XXX] = ACTIONS(578), - [sym_fixme] = ACTIONS(562), - [sym__whitespace1] = ACTIONS(580), - [sym__newline] = ACTIONS(582), - [aux_sym__text_token1] = ACTIONS(584), - [sym__verbatim_begin] = ACTIONS(586), + [sym__inline] = STATE(1025), + [sym__element] = STATE(106), + [sym_emphasis] = STATE(139), + [sym_emphasis_begin] = STATE(1102), + [sym_strong] = STATE(139), + [sym_strong_begin] = STATE(1103), + [sym_superscript] = STATE(139), + [sym_superscript_begin] = STATE(1104), + [sym_subscript] = STATE(139), + [sym_subscript_begin] = STATE(1105), + [sym_highlighted] = STATE(139), + [sym_highlighted_begin] = STATE(1106), + [sym_insert] = STATE(139), + [sym_insert_begin] = STATE(1107), + [sym_delete] = STATE(139), + [sym_delete_begin] = STATE(1108), + [sym_hard_line_break] = STATE(139), + [sym__smart_punctuation] = STATE(139), + [sym_autolink] = STATE(139), + [sym_footnote_reference] = STATE(139), + [sym_footnote_marker_begin] = STATE(1109), + [sym__image] = STATE(139), + [sym_full_reference_image] = STATE(139), + [sym_collapsed_reference_image] = STATE(139), + [sym_inline_image] = STATE(139), + [sym_image_description] = STATE(623), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(139), + [sym_full_reference_link] = STATE(139), + [sym_collapsed_reference_link] = STATE(139), + [sym_inline_link] = STATE(139), + [sym_link_text] = STATE(621), + [sym_span] = STATE(106), + [sym__bracketed_text_begin] = STATE(1184), + [sym__comment_with_spaces] = STATE(139), + [sym_raw_inline] = STATE(139), + [sym_math] = STATE(139), + [sym_verbatim] = STATE(139), + [sym__todo_highlights] = STATE(139), + [sym_todo] = STATE(139), + [sym_note] = STATE(139), + [sym__symbol_fallback] = STATE(139), + [aux_sym__text] = STATE(126), + [aux_sym__inline_repeat1] = STATE(106), + [anon_sym_LBRACE_] = ACTIONS(101), + [anon_sym__] = ACTIONS(103), + [anon_sym_LBRACE_STAR] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(107), + [anon_sym_LBRACE_CARET] = ACTIONS(109), + [anon_sym_CARET] = ACTIONS(109), + [anon_sym_LBRACE_TILDE] = ACTIONS(111), + [anon_sym_TILDE] = ACTIONS(111), + [anon_sym_LBRACE_EQ] = ACTIONS(113), + [anon_sym_LBRACE_PLUS] = ACTIONS(115), + [anon_sym_LBRACE_DASH] = ACTIONS(117), + [anon_sym_BSLASH] = ACTIONS(119), + [sym_quotation_marks] = ACTIONS(121), + [sym_ellipsis] = ACTIONS(121), + [sym_em_dash] = ACTIONS(121), + [sym_en_dash] = ACTIONS(123), + [sym_backslash_escape] = ACTIONS(123), + [anon_sym_LT] = ACTIONS(125), + [sym_symbol] = ACTIONS(121), + [anon_sym_LBRACK_CARET] = ACTIONS(127), + [anon_sym_BANG_LBRACK] = ACTIONS(129), + [anon_sym_LBRACK] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_DOLLAR] = ACTIONS(135), + [anon_sym_TODO] = ACTIONS(137), + [anon_sym_WIP] = ACTIONS(137), + [anon_sym_NOTE] = ACTIONS(139), + [anon_sym_INFO] = ACTIONS(139), + [anon_sym_XXX] = ACTIONS(139), + [sym_fixme] = ACTIONS(121), + [sym__whitespace1] = ACTIONS(141), + [sym__newline] = ACTIONS(143), + [aux_sym__text_token1] = ACTIONS(145), + [sym__verbatim_begin] = ACTIONS(147), }, [54] = { - [sym__inline] = STATE(1106), - [sym__element] = STATE(21), - [sym_emphasis] = STATE(149), - [sym_emphasis_begin] = STATE(1199), - [sym_strong] = STATE(149), - [sym_strong_begin] = STATE(1200), - [sym_superscript] = STATE(149), - [sym_superscript_begin] = STATE(1201), - [sym_subscript] = STATE(149), - [sym_subscript_begin] = STATE(1202), - [sym_highlighted] = STATE(149), - [sym_highlighted_begin] = STATE(1203), - [sym_insert] = STATE(149), - [sym_insert_begin] = STATE(1204), - [sym_delete] = STATE(149), - [sym_delete_begin] = STATE(1205), - [sym_hard_line_break] = STATE(149), - [sym__smart_punctuation] = STATE(149), - [sym_autolink] = STATE(149), - [sym_footnote_reference] = STATE(149), - [sym_footnote_marker_begin] = STATE(1206), - [sym__image] = STATE(149), - [sym_full_reference_image] = STATE(149), - [sym_collapsed_reference_image] = STATE(149), - [sym_inline_image] = STATE(149), - [sym_image_description] = STATE(714), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(149), - [sym_full_reference_link] = STATE(149), - [sym_collapsed_reference_link] = STATE(149), - [sym_inline_link] = STATE(149), - [sym_link_text] = STATE(710), - [sym_span] = STATE(21), - [sym__bracketed_text_begin] = STATE(1266), - [sym__comment_with_spaces] = STATE(149), - [sym_raw_inline] = STATE(149), - [sym_math] = STATE(149), - [sym_verbatim] = STATE(149), - [sym__todo_highlights] = STATE(149), - [sym_todo] = STATE(149), - [sym_note] = STATE(149), - [sym__symbol_fallback] = STATE(149), - [aux_sym__text] = STATE(142), - [aux_sym__inline_repeat1] = STATE(21), - [anon_sym_LBRACE_] = ACTIONS(494), - [anon_sym__] = ACTIONS(496), - [anon_sym_LBRACE_STAR] = ACTIONS(498), - [anon_sym_STAR] = ACTIONS(500), - [anon_sym_LBRACE_CARET] = ACTIONS(502), - [anon_sym_CARET] = ACTIONS(502), - [anon_sym_LBRACE_TILDE] = ACTIONS(504), - [anon_sym_TILDE] = ACTIONS(504), - [anon_sym_LBRACE_EQ] = ACTIONS(506), - [anon_sym_LBRACE_PLUS] = ACTIONS(508), - [anon_sym_LBRACE_DASH] = ACTIONS(510), - [anon_sym_BSLASH] = ACTIONS(512), - [sym_quotation_marks] = ACTIONS(514), - [sym_ellipsis] = ACTIONS(514), - [sym_em_dash] = ACTIONS(514), - [sym_en_dash] = ACTIONS(516), - [sym_backslash_escape] = ACTIONS(516), - [anon_sym_LT] = ACTIONS(518), - [sym_symbol] = ACTIONS(514), - [anon_sym_LBRACK_CARET] = ACTIONS(520), - [anon_sym_BANG_LBRACK] = ACTIONS(522), - [anon_sym_LBRACK] = ACTIONS(524), - [anon_sym_DOLLAR] = ACTIONS(526), - [anon_sym_TODO] = ACTIONS(528), - [anon_sym_WIP] = ACTIONS(528), - [anon_sym_NOTE] = ACTIONS(530), - [anon_sym_INFO] = ACTIONS(530), - [anon_sym_XXX] = ACTIONS(530), - [sym_fixme] = ACTIONS(514), - [sym__whitespace1] = ACTIONS(532), - [sym__newline] = ACTIONS(540), - [aux_sym__text_token1] = ACTIONS(536), - [sym__verbatim_begin] = ACTIONS(538), + [sym__inline] = STATE(1024), + [sym__element] = STATE(22), + [sym_emphasis] = STATE(137), + [sym_emphasis_begin] = STATE(1112), + [sym_strong] = STATE(137), + [sym_strong_begin] = STATE(1113), + [sym_superscript] = STATE(137), + [sym_superscript_begin] = STATE(1114), + [sym_subscript] = STATE(137), + [sym_subscript_begin] = STATE(1115), + [sym_highlighted] = STATE(137), + [sym_highlighted_begin] = STATE(1116), + [sym_insert] = STATE(137), + [sym_insert_begin] = STATE(1117), + [sym_delete] = STATE(137), + [sym_delete_begin] = STATE(1118), + [sym_hard_line_break] = STATE(137), + [sym__smart_punctuation] = STATE(137), + [sym_autolink] = STATE(137), + [sym_footnote_reference] = STATE(137), + [sym_footnote_marker_begin] = STATE(1119), + [sym__image] = STATE(137), + [sym_full_reference_image] = STATE(137), + [sym_collapsed_reference_image] = STATE(137), + [sym_inline_image] = STATE(137), + [sym_image_description] = STATE(636), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(137), + [sym_full_reference_link] = STATE(137), + [sym_collapsed_reference_link] = STATE(137), + [sym_inline_link] = STATE(137), + [sym_link_text] = STATE(647), + [sym_span] = STATE(22), + [sym__bracketed_text_begin] = STATE(1185), + [sym__comment_with_spaces] = STATE(137), + [sym_raw_inline] = STATE(137), + [sym_math] = STATE(137), + [sym_verbatim] = STATE(137), + [sym__todo_highlights] = STATE(137), + [sym_todo] = STATE(137), + [sym_note] = STATE(137), + [sym__symbol_fallback] = STATE(137), + [aux_sym__text] = STATE(122), + [aux_sym__inline_repeat1] = STATE(22), + [anon_sym_LBRACE_] = ACTIONS(197), + [anon_sym__] = ACTIONS(199), + [anon_sym_LBRACE_STAR] = ACTIONS(201), + [anon_sym_STAR] = ACTIONS(203), + [anon_sym_LBRACE_CARET] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(205), + [anon_sym_LBRACE_TILDE] = ACTIONS(207), + [anon_sym_TILDE] = ACTIONS(207), + [anon_sym_LBRACE_EQ] = ACTIONS(209), + [anon_sym_LBRACE_PLUS] = ACTIONS(211), + [anon_sym_LBRACE_DASH] = ACTIONS(213), + [anon_sym_BSLASH] = ACTIONS(215), + [sym_quotation_marks] = ACTIONS(217), + [sym_ellipsis] = ACTIONS(217), + [sym_em_dash] = ACTIONS(217), + [sym_en_dash] = ACTIONS(219), + [sym_backslash_escape] = ACTIONS(219), + [anon_sym_LT] = ACTIONS(221), + [sym_symbol] = ACTIONS(217), + [anon_sym_LBRACK_CARET] = ACTIONS(223), + [anon_sym_BANG_LBRACK] = ACTIONS(225), + [anon_sym_LBRACK] = ACTIONS(227), + [anon_sym_LPAREN] = ACTIONS(229), + [anon_sym_DOLLAR] = ACTIONS(231), + [anon_sym_TODO] = ACTIONS(233), + [anon_sym_WIP] = ACTIONS(233), + [anon_sym_NOTE] = ACTIONS(235), + [anon_sym_INFO] = ACTIONS(235), + [anon_sym_XXX] = ACTIONS(235), + [sym_fixme] = ACTIONS(217), + [sym__whitespace1] = ACTIONS(237), + [sym__newline] = ACTIONS(239), + [aux_sym__text_token1] = ACTIONS(241), + [sym__verbatim_begin] = ACTIONS(243), }, [55] = { - [sym__inline] = STATE(1105), - [sym__element] = STATE(7), - [sym_emphasis] = STATE(153), - [sym_emphasis_begin] = STATE(1208), - [sym_strong] = STATE(153), - [sym_strong_begin] = STATE(1209), - [sym_superscript] = STATE(153), - [sym_superscript_begin] = STATE(1210), - [sym_subscript] = STATE(153), - [sym_subscript_begin] = STATE(1211), - [sym_highlighted] = STATE(153), - [sym_highlighted_begin] = STATE(1212), - [sym_insert] = STATE(153), - [sym_insert_begin] = STATE(1213), - [sym_delete] = STATE(153), - [sym_delete_begin] = STATE(1214), - [sym_hard_line_break] = STATE(153), - [sym__smart_punctuation] = STATE(153), - [sym_autolink] = STATE(153), - [sym_footnote_reference] = STATE(153), - [sym_footnote_marker_begin] = STATE(1215), - [sym__image] = STATE(153), - [sym_full_reference_image] = STATE(153), - [sym_collapsed_reference_image] = STATE(153), - [sym_inline_image] = STATE(153), - [sym_image_description] = STATE(707), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(153), - [sym_full_reference_link] = STATE(153), - [sym_collapsed_reference_link] = STATE(153), - [sym_inline_link] = STATE(153), - [sym_link_text] = STATE(705), - [sym_span] = STATE(7), - [sym__bracketed_text_begin] = STATE(1267), - [sym__comment_with_spaces] = STATE(153), - [sym_raw_inline] = STATE(153), - [sym_math] = STATE(153), - [sym_verbatim] = STATE(153), - [sym__todo_highlights] = STATE(153), - [sym_todo] = STATE(153), - [sym_note] = STATE(153), - [sym__symbol_fallback] = STATE(153), - [aux_sym__text] = STATE(134), - [aux_sym__inline_repeat1] = STATE(7), - [anon_sym_LBRACE_] = ACTIONS(97), - [anon_sym__] = ACTIONS(99), - [anon_sym_LBRACE_STAR] = ACTIONS(101), - [anon_sym_STAR] = ACTIONS(103), - [anon_sym_LBRACE_CARET] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [anon_sym_LBRACE_TILDE] = ACTIONS(107), - [anon_sym_TILDE] = ACTIONS(107), - [anon_sym_LBRACE_EQ] = ACTIONS(109), - [anon_sym_LBRACE_PLUS] = ACTIONS(111), - [anon_sym_LBRACE_DASH] = ACTIONS(113), - [anon_sym_BSLASH] = ACTIONS(115), - [sym_quotation_marks] = ACTIONS(117), - [sym_ellipsis] = ACTIONS(117), - [sym_em_dash] = ACTIONS(117), - [sym_en_dash] = ACTIONS(119), - [sym_backslash_escape] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [sym_symbol] = ACTIONS(117), - [anon_sym_LBRACK_CARET] = ACTIONS(123), - [anon_sym_BANG_LBRACK] = ACTIONS(125), - [anon_sym_LBRACK] = ACTIONS(127), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_TODO] = ACTIONS(131), - [anon_sym_WIP] = ACTIONS(131), - [anon_sym_NOTE] = ACTIONS(133), - [anon_sym_INFO] = ACTIONS(133), - [anon_sym_XXX] = ACTIONS(133), - [sym_fixme] = ACTIONS(117), - [sym__whitespace1] = ACTIONS(135), - [sym__newline] = ACTIONS(137), - [aux_sym__text_token1] = ACTIONS(139), - [sym__verbatim_begin] = ACTIONS(141), + [sym__inline] = STATE(1023), + [sym__element] = STATE(14), + [sym_emphasis] = STATE(136), + [sym_emphasis_begin] = STATE(1122), + [sym_strong] = STATE(136), + [sym_strong_begin] = STATE(1123), + [sym_superscript] = STATE(136), + [sym_superscript_begin] = STATE(1124), + [sym_subscript] = STATE(136), + [sym_subscript_begin] = STATE(1125), + [sym_highlighted] = STATE(136), + [sym_highlighted_begin] = STATE(1126), + [sym_insert] = STATE(136), + [sym_insert_begin] = STATE(1127), + [sym_delete] = STATE(136), + [sym_delete_begin] = STATE(1128), + [sym_hard_line_break] = STATE(136), + [sym__smart_punctuation] = STATE(136), + [sym_autolink] = STATE(136), + [sym_footnote_reference] = STATE(136), + [sym_footnote_marker_begin] = STATE(1129), + [sym__image] = STATE(136), + [sym_full_reference_image] = STATE(136), + [sym_collapsed_reference_image] = STATE(136), + [sym_inline_image] = STATE(136), + [sym_image_description] = STATE(651), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(136), + [sym_full_reference_link] = STATE(136), + [sym_collapsed_reference_link] = STATE(136), + [sym_inline_link] = STATE(136), + [sym_link_text] = STATE(650), + [sym_span] = STATE(14), + [sym__bracketed_text_begin] = STATE(1186), + [sym__comment_with_spaces] = STATE(136), + [sym_raw_inline] = STATE(136), + [sym_math] = STATE(136), + [sym_verbatim] = STATE(136), + [sym__todo_highlights] = STATE(136), + [sym_todo] = STATE(136), + [sym_note] = STATE(136), + [sym__symbol_fallback] = STATE(136), + [aux_sym__text] = STATE(130), + [aux_sym__inline_repeat1] = STATE(14), + [anon_sym_LBRACE_] = ACTIONS(319), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_STAR] = ACTIONS(323), + [anon_sym_STAR] = ACTIONS(325), + [anon_sym_LBRACE_CARET] = ACTIONS(327), + [anon_sym_CARET] = ACTIONS(327), + [anon_sym_LBRACE_TILDE] = ACTIONS(329), + [anon_sym_TILDE] = ACTIONS(329), + [anon_sym_LBRACE_EQ] = ACTIONS(331), + [anon_sym_LBRACE_PLUS] = ACTIONS(333), + [anon_sym_LBRACE_DASH] = ACTIONS(335), + [anon_sym_BSLASH] = ACTIONS(337), + [sym_quotation_marks] = ACTIONS(339), + [sym_ellipsis] = ACTIONS(339), + [sym_em_dash] = ACTIONS(339), + [sym_en_dash] = ACTIONS(341), + [sym_backslash_escape] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [sym_symbol] = ACTIONS(339), + [anon_sym_LBRACK_CARET] = ACTIONS(345), + [anon_sym_BANG_LBRACK] = ACTIONS(347), + [anon_sym_LBRACK] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_DOLLAR] = ACTIONS(353), + [anon_sym_TODO] = ACTIONS(355), + [anon_sym_WIP] = ACTIONS(355), + [anon_sym_NOTE] = ACTIONS(357), + [anon_sym_INFO] = ACTIONS(357), + [anon_sym_XXX] = ACTIONS(357), + [sym_fixme] = ACTIONS(339), + [sym__whitespace1] = ACTIONS(359), + [sym__newline] = ACTIONS(635), + [aux_sym__text_token1] = ACTIONS(363), + [sym__verbatim_begin] = ACTIONS(365), }, [56] = { - [sym__inline] = STATE(1104), - [sym__element] = STATE(46), - [sym_emphasis] = STATE(147), - [sym_emphasis_begin] = STATE(1217), - [sym_strong] = STATE(147), - [sym_strong_begin] = STATE(1218), - [sym_superscript] = STATE(147), - [sym_superscript_begin] = STATE(1219), - [sym_subscript] = STATE(147), - [sym_subscript_begin] = STATE(1220), - [sym_highlighted] = STATE(147), - [sym_highlighted_begin] = STATE(1221), - [sym_insert] = STATE(147), - [sym_insert_begin] = STATE(1222), - [sym_delete] = STATE(147), - [sym_delete_begin] = STATE(1223), - [sym_hard_line_break] = STATE(147), - [sym__smart_punctuation] = STATE(147), - [sym_autolink] = STATE(147), - [sym_footnote_reference] = STATE(147), - [sym_footnote_marker_begin] = STATE(1224), - [sym__image] = STATE(147), - [sym_full_reference_image] = STATE(147), - [sym_collapsed_reference_image] = STATE(147), - [sym_inline_image] = STATE(147), - [sym_image_description] = STATE(699), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(147), - [sym_full_reference_link] = STATE(147), - [sym_collapsed_reference_link] = STATE(147), - [sym_inline_link] = STATE(147), - [sym_link_text] = STATE(698), - [sym_span] = STATE(46), - [sym__bracketed_text_begin] = STATE(1268), - [sym__comment_with_spaces] = STATE(147), - [sym_raw_inline] = STATE(147), - [sym_math] = STATE(147), - [sym_verbatim] = STATE(147), - [sym__todo_highlights] = STATE(147), - [sym_todo] = STATE(147), - [sym_note] = STATE(147), - [sym__symbol_fallback] = STATE(147), - [aux_sym__text] = STATE(132), - [aux_sym__inline_repeat1] = STATE(46), - [anon_sym_LBRACE_] = ACTIONS(189), - [anon_sym__] = ACTIONS(191), - [anon_sym_LBRACE_STAR] = ACTIONS(193), - [anon_sym_STAR] = ACTIONS(195), - [anon_sym_LBRACE_CARET] = ACTIONS(197), - [anon_sym_CARET] = ACTIONS(197), - [anon_sym_LBRACE_TILDE] = ACTIONS(199), - [anon_sym_TILDE] = ACTIONS(199), - [anon_sym_LBRACE_EQ] = ACTIONS(201), - [anon_sym_LBRACE_PLUS] = ACTIONS(203), - [anon_sym_LBRACE_DASH] = ACTIONS(205), - [anon_sym_BSLASH] = ACTIONS(207), - [sym_quotation_marks] = ACTIONS(209), - [sym_ellipsis] = ACTIONS(209), - [sym_em_dash] = ACTIONS(209), - [sym_en_dash] = ACTIONS(211), - [sym_backslash_escape] = ACTIONS(211), - [anon_sym_LT] = ACTIONS(213), - [sym_symbol] = ACTIONS(209), - [anon_sym_LBRACK_CARET] = ACTIONS(215), - [anon_sym_BANG_LBRACK] = ACTIONS(217), - [anon_sym_LBRACK] = ACTIONS(219), - [anon_sym_DOLLAR] = ACTIONS(221), - [anon_sym_TODO] = ACTIONS(223), - [anon_sym_WIP] = ACTIONS(223), - [anon_sym_NOTE] = ACTIONS(225), - [anon_sym_INFO] = ACTIONS(225), - [anon_sym_XXX] = ACTIONS(225), - [sym_fixme] = ACTIONS(209), - [sym__whitespace1] = ACTIONS(227), - [sym__newline] = ACTIONS(229), - [aux_sym__text_token1] = ACTIONS(231), - [sym__verbatim_begin] = ACTIONS(233), + [sym__inline] = STATE(1022), + [sym__element] = STATE(37), + [sym_emphasis] = STATE(131), + [sym_emphasis_begin] = STATE(1132), + [sym_strong] = STATE(131), + [sym_strong_begin] = STATE(1133), + [sym_superscript] = STATE(131), + [sym_superscript_begin] = STATE(1134), + [sym_subscript] = STATE(131), + [sym_subscript_begin] = STATE(1135), + [sym_highlighted] = STATE(131), + [sym_highlighted_begin] = STATE(1136), + [sym_insert] = STATE(131), + [sym_insert_begin] = STATE(1137), + [sym_delete] = STATE(131), + [sym_delete_begin] = STATE(1138), + [sym_hard_line_break] = STATE(131), + [sym__smart_punctuation] = STATE(131), + [sym_autolink] = STATE(131), + [sym_footnote_reference] = STATE(131), + [sym_footnote_marker_begin] = STATE(1139), + [sym__image] = STATE(131), + [sym_full_reference_image] = STATE(131), + [sym_collapsed_reference_image] = STATE(131), + [sym_inline_image] = STATE(131), + [sym_image_description] = STATE(643), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(131), + [sym_full_reference_link] = STATE(131), + [sym_collapsed_reference_link] = STATE(131), + [sym_inline_link] = STATE(131), + [sym_link_text] = STATE(619), + [sym_span] = STATE(37), + [sym__bracketed_text_begin] = STATE(1187), + [sym__comment_with_spaces] = STATE(131), + [sym_raw_inline] = STATE(131), + [sym_math] = STATE(131), + [sym_verbatim] = STATE(131), + [sym__todo_highlights] = STATE(131), + [sym_todo] = STATE(131), + [sym_note] = STATE(131), + [sym__symbol_fallback] = STATE(131), + [aux_sym__text] = STATE(123), + [aux_sym__inline_repeat1] = STATE(37), + [anon_sym_LBRACE_] = ACTIONS(537), + [anon_sym__] = ACTIONS(539), + [anon_sym_LBRACE_STAR] = ACTIONS(541), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE_CARET] = ACTIONS(545), + [anon_sym_CARET] = ACTIONS(545), + [anon_sym_LBRACE_TILDE] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(547), + [anon_sym_LBRACE_EQ] = ACTIONS(549), + [anon_sym_LBRACE_PLUS] = ACTIONS(551), + [anon_sym_LBRACE_DASH] = ACTIONS(553), + [anon_sym_BSLASH] = ACTIONS(555), + [sym_quotation_marks] = ACTIONS(557), + [sym_ellipsis] = ACTIONS(557), + [sym_em_dash] = ACTIONS(557), + [sym_en_dash] = ACTIONS(559), + [sym_backslash_escape] = ACTIONS(559), + [anon_sym_LT] = ACTIONS(561), + [sym_symbol] = ACTIONS(557), + [anon_sym_LBRACK_CARET] = ACTIONS(563), + [anon_sym_BANG_LBRACK] = ACTIONS(565), + [anon_sym_LBRACK] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_DOLLAR] = ACTIONS(571), + [anon_sym_TODO] = ACTIONS(573), + [anon_sym_WIP] = ACTIONS(573), + [anon_sym_NOTE] = ACTIONS(575), + [anon_sym_INFO] = ACTIONS(575), + [anon_sym_XXX] = ACTIONS(575), + [sym_fixme] = ACTIONS(557), + [sym__whitespace1] = ACTIONS(577), + [sym__newline] = ACTIONS(579), + [aux_sym__text_token1] = ACTIONS(581), + [sym__verbatim_begin] = ACTIONS(583), }, [57] = { - [sym__inline] = STATE(910), - [sym__element] = STATE(80), - [sym_emphasis] = STATE(145), - [sym_emphasis_begin] = STATE(1190), - [sym_strong] = STATE(145), - [sym_strong_begin] = STATE(1191), - [sym_superscript] = STATE(145), - [sym_superscript_begin] = STATE(1192), - [sym_subscript] = STATE(145), - [sym_subscript_begin] = STATE(1193), - [sym_highlighted] = STATE(145), - [sym_highlighted_begin] = STATE(1194), - [sym_insert] = STATE(145), - [sym_insert_begin] = STATE(1195), - [sym_delete] = STATE(145), - [sym_delete_begin] = STATE(1196), - [sym_hard_line_break] = STATE(145), - [sym__smart_punctuation] = STATE(145), - [sym_autolink] = STATE(145), - [sym_footnote_reference] = STATE(145), - [sym_footnote_marker_begin] = STATE(1197), - [sym__image] = STATE(145), - [sym_full_reference_image] = STATE(145), - [sym_collapsed_reference_image] = STATE(145), - [sym_inline_image] = STATE(145), - [sym_image_description] = STATE(696), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(145), - [sym_full_reference_link] = STATE(145), - [sym_collapsed_reference_link] = STATE(145), - [sym_inline_link] = STATE(145), - [sym_link_text] = STATE(691), - [sym_span] = STATE(80), - [sym__bracketed_text_begin] = STATE(1265), - [sym__comment_with_spaces] = STATE(145), - [sym_raw_inline] = STATE(145), - [sym_math] = STATE(145), - [sym_verbatim] = STATE(145), - [sym__todo_highlights] = STATE(145), - [sym_todo] = STATE(145), - [sym_note] = STATE(145), - [sym__symbol_fallback] = STATE(145), - [aux_sym__text] = STATE(138), - [aux_sym__inline_repeat1] = STATE(80), - [anon_sym_LBRACE_] = ACTIONS(542), - [anon_sym__] = ACTIONS(544), - [anon_sym_LBRACE_STAR] = ACTIONS(546), - [anon_sym_STAR] = ACTIONS(548), - [anon_sym_LBRACE_CARET] = ACTIONS(550), - [anon_sym_CARET] = ACTIONS(550), - [anon_sym_LBRACE_TILDE] = ACTIONS(552), - [anon_sym_TILDE] = ACTIONS(552), - [anon_sym_LBRACE_EQ] = ACTIONS(554), - [anon_sym_LBRACE_PLUS] = ACTIONS(556), - [anon_sym_LBRACE_DASH] = ACTIONS(558), - [anon_sym_BSLASH] = ACTIONS(560), - [sym_quotation_marks] = ACTIONS(562), - [sym_ellipsis] = ACTIONS(562), - [sym_em_dash] = ACTIONS(562), - [sym_en_dash] = ACTIONS(564), - [sym_backslash_escape] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(566), - [sym_symbol] = ACTIONS(562), - [anon_sym_LBRACK_CARET] = ACTIONS(568), - [anon_sym_BANG_LBRACK] = ACTIONS(570), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_DOLLAR] = ACTIONS(574), - [anon_sym_TODO] = ACTIONS(576), - [anon_sym_WIP] = ACTIONS(576), - [anon_sym_NOTE] = ACTIONS(578), - [anon_sym_INFO] = ACTIONS(578), - [anon_sym_XXX] = ACTIONS(578), - [sym_fixme] = ACTIONS(562), - [sym__whitespace1] = ACTIONS(580), - [sym__newline] = ACTIONS(582), - [aux_sym__text_token1] = ACTIONS(584), - [sym__verbatim_begin] = ACTIONS(586), + [sym__inline] = STATE(1014), + [sym__element] = STATE(65), + [sym_emphasis] = STATE(133), + [sym_emphasis_begin] = STATE(1142), + [sym_strong] = STATE(133), + [sym_strong_begin] = STATE(1143), + [sym_superscript] = STATE(133), + [sym_superscript_begin] = STATE(1144), + [sym_subscript] = STATE(133), + [sym_subscript_begin] = STATE(1145), + [sym_highlighted] = STATE(133), + [sym_highlighted_begin] = STATE(1146), + [sym_insert] = STATE(133), + [sym_insert_begin] = STATE(1147), + [sym_delete] = STATE(133), + [sym_delete_begin] = STATE(1148), + [sym_hard_line_break] = STATE(133), + [sym__smart_punctuation] = STATE(133), + [sym_autolink] = STATE(133), + [sym_footnote_reference] = STATE(133), + [sym_footnote_marker_begin] = STATE(1149), + [sym__image] = STATE(133), + [sym_full_reference_image] = STATE(133), + [sym_collapsed_reference_image] = STATE(133), + [sym_inline_image] = STATE(133), + [sym_image_description] = STATE(638), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(133), + [sym_full_reference_link] = STATE(133), + [sym_collapsed_reference_link] = STATE(133), + [sym_inline_link] = STATE(133), + [sym_link_text] = STATE(637), + [sym_span] = STATE(65), + [sym__bracketed_text_begin] = STATE(1188), + [sym__comment_with_spaces] = STATE(133), + [sym_raw_inline] = STATE(133), + [sym_math] = STATE(133), + [sym_verbatim] = STATE(133), + [sym__todo_highlights] = STATE(133), + [sym_todo] = STATE(133), + [sym_note] = STATE(133), + [sym__symbol_fallback] = STATE(133), + [aux_sym__text] = STATE(129), + [aux_sym__inline_repeat1] = STATE(65), + [anon_sym_LBRACE_] = ACTIONS(489), + [anon_sym__] = ACTIONS(491), + [anon_sym_LBRACE_STAR] = ACTIONS(493), + [anon_sym_STAR] = ACTIONS(495), + [anon_sym_LBRACE_CARET] = ACTIONS(497), + [anon_sym_CARET] = ACTIONS(497), + [anon_sym_LBRACE_TILDE] = ACTIONS(499), + [anon_sym_TILDE] = ACTIONS(499), + [anon_sym_LBRACE_EQ] = ACTIONS(501), + [anon_sym_LBRACE_PLUS] = ACTIONS(503), + [anon_sym_LBRACE_DASH] = ACTIONS(505), + [anon_sym_BSLASH] = ACTIONS(507), + [sym_quotation_marks] = ACTIONS(509), + [sym_ellipsis] = ACTIONS(509), + [sym_em_dash] = ACTIONS(509), + [sym_en_dash] = ACTIONS(511), + [sym_backslash_escape] = ACTIONS(511), + [anon_sym_LT] = ACTIONS(513), + [sym_symbol] = ACTIONS(509), + [anon_sym_LBRACK_CARET] = ACTIONS(515), + [anon_sym_BANG_LBRACK] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(519), + [anon_sym_LPAREN] = ACTIONS(521), + [anon_sym_DOLLAR] = ACTIONS(523), + [anon_sym_TODO] = ACTIONS(525), + [anon_sym_WIP] = ACTIONS(525), + [anon_sym_NOTE] = ACTIONS(527), + [anon_sym_INFO] = ACTIONS(527), + [anon_sym_XXX] = ACTIONS(527), + [sym_fixme] = ACTIONS(509), + [sym__whitespace1] = ACTIONS(529), + [sym__newline] = ACTIONS(531), + [aux_sym__text_token1] = ACTIONS(533), + [sym__verbatim_begin] = ACTIONS(535), }, [58] = { - [sym__inline_without_trailing_space] = STATE(965), - [sym__element] = STATE(623), - [sym_emphasis] = STATE(148), - [sym_emphasis_begin] = STATE(1163), - [sym_strong] = STATE(148), - [sym_strong_begin] = STATE(1164), - [sym_superscript] = STATE(148), - [sym_superscript_begin] = STATE(1165), - [sym_subscript] = STATE(148), - [sym_subscript_begin] = STATE(1166), - [sym_highlighted] = STATE(148), - [sym_highlighted_begin] = STATE(1167), - [sym_insert] = STATE(148), - [sym_insert_begin] = STATE(1168), - [sym_delete] = STATE(148), - [sym_delete_begin] = STATE(1169), - [sym_hard_line_break] = STATE(148), - [sym__smart_punctuation] = STATE(148), - [sym_autolink] = STATE(148), - [sym_footnote_reference] = STATE(148), - [sym_footnote_marker_begin] = STATE(1170), - [sym__image] = STATE(148), - [sym_full_reference_image] = STATE(148), - [sym_collapsed_reference_image] = STATE(148), - [sym_inline_image] = STATE(148), - [sym_image_description] = STATE(712), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(148), - [sym_full_reference_link] = STATE(148), - [sym_collapsed_reference_link] = STATE(148), - [sym_inline_link] = STATE(148), - [sym_link_text] = STATE(713), - [sym_span] = STATE(623), - [sym__bracketed_text_begin] = STATE(1262), - [sym__comment_with_spaces] = STATE(148), - [sym_raw_inline] = STATE(148), - [sym_math] = STATE(148), - [sym_verbatim] = STATE(148), - [sym__todo_highlights] = STATE(148), - [sym_todo] = STATE(148), - [sym_note] = STATE(148), - [sym__symbol_fallback] = STATE(148), - [aux_sym__text] = STATE(136), - [aux_sym__inline_repeat1] = STATE(129), - [anon_sym_LBRACE_] = ACTIONS(402), - [anon_sym__] = ACTIONS(404), - [anon_sym_LBRACE_STAR] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_LBRACE_CARET] = ACTIONS(410), - [anon_sym_CARET] = ACTIONS(410), - [anon_sym_LBRACE_TILDE] = ACTIONS(412), - [anon_sym_TILDE] = ACTIONS(412), - [anon_sym_LBRACE_EQ] = ACTIONS(414), - [anon_sym_LBRACE_PLUS] = ACTIONS(416), - [anon_sym_LBRACE_DASH] = ACTIONS(418), - [anon_sym_BSLASH] = ACTIONS(420), - [sym_quotation_marks] = ACTIONS(422), - [sym_ellipsis] = ACTIONS(422), - [sym_em_dash] = ACTIONS(422), - [sym_en_dash] = ACTIONS(424), - [sym_backslash_escape] = ACTIONS(424), - [anon_sym_LT] = ACTIONS(426), - [sym_symbol] = ACTIONS(422), - [anon_sym_LBRACK_CARET] = ACTIONS(428), - [anon_sym_BANG_LBRACK] = ACTIONS(430), - [anon_sym_LBRACK] = ACTIONS(432), - [anon_sym_DOLLAR] = ACTIONS(434), - [anon_sym_TODO] = ACTIONS(436), - [anon_sym_WIP] = ACTIONS(436), - [anon_sym_NOTE] = ACTIONS(438), - [anon_sym_INFO] = ACTIONS(438), - [anon_sym_XXX] = ACTIONS(438), - [sym_fixme] = ACTIONS(422), - [sym__whitespace1] = ACTIONS(440), - [sym__newline] = ACTIONS(442), - [aux_sym__text_token1] = ACTIONS(444), - [sym__verbatim_begin] = ACTIONS(446), + [sym__inline_without_trailing_space] = STATE(841), + [sym__element] = STATE(536), + [sym_emphasis] = STATE(138), + [sym_emphasis_begin] = STATE(1092), + [sym_strong] = STATE(138), + [sym_strong_begin] = STATE(1093), + [sym_superscript] = STATE(138), + [sym_superscript_begin] = STATE(1094), + [sym_subscript] = STATE(138), + [sym_subscript_begin] = STATE(1095), + [sym_highlighted] = STATE(138), + [sym_highlighted_begin] = STATE(1096), + [sym_insert] = STATE(138), + [sym_insert_begin] = STATE(1097), + [sym_delete] = STATE(138), + [sym_delete_begin] = STATE(1098), + [sym_hard_line_break] = STATE(138), + [sym__smart_punctuation] = STATE(138), + [sym_autolink] = STATE(138), + [sym_footnote_reference] = STATE(138), + [sym_footnote_marker_begin] = STATE(1099), + [sym__image] = STATE(138), + [sym_full_reference_image] = STATE(138), + [sym_collapsed_reference_image] = STATE(138), + [sym_inline_image] = STATE(138), + [sym_image_description] = STATE(626), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(138), + [sym_full_reference_link] = STATE(138), + [sym_collapsed_reference_link] = STATE(138), + [sym_inline_link] = STATE(138), + [sym_link_text] = STATE(627), + [sym_span] = STATE(536), + [sym__bracketed_text_begin] = STATE(1183), + [sym__comment_with_spaces] = STATE(138), + [sym_raw_inline] = STATE(138), + [sym_math] = STATE(138), + [sym_verbatim] = STATE(138), + [sym__todo_highlights] = STATE(138), + [sym_todo] = STATE(138), + [sym_note] = STATE(138), + [sym__symbol_fallback] = STATE(138), + [aux_sym__text] = STATE(127), + [aux_sym__inline_repeat1] = STATE(118), + [anon_sym_LBRACE_] = ACTIONS(149), + [anon_sym__] = ACTIONS(151), + [anon_sym_LBRACE_STAR] = ACTIONS(153), + [anon_sym_STAR] = ACTIONS(155), + [anon_sym_LBRACE_CARET] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_LBRACE_TILDE] = ACTIONS(159), + [anon_sym_TILDE] = ACTIONS(159), + [anon_sym_LBRACE_EQ] = ACTIONS(161), + [anon_sym_LBRACE_PLUS] = ACTIONS(163), + [anon_sym_LBRACE_DASH] = ACTIONS(165), + [anon_sym_BSLASH] = ACTIONS(167), + [sym_quotation_marks] = ACTIONS(169), + [sym_ellipsis] = ACTIONS(169), + [sym_em_dash] = ACTIONS(169), + [sym_en_dash] = ACTIONS(171), + [sym_backslash_escape] = ACTIONS(171), + [anon_sym_LT] = ACTIONS(173), + [sym_symbol] = ACTIONS(169), + [anon_sym_LBRACK_CARET] = ACTIONS(175), + [anon_sym_BANG_LBRACK] = ACTIONS(177), + [anon_sym_LBRACK] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(181), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_TODO] = ACTIONS(185), + [anon_sym_WIP] = ACTIONS(185), + [anon_sym_NOTE] = ACTIONS(187), + [anon_sym_INFO] = ACTIONS(187), + [anon_sym_XXX] = ACTIONS(187), + [sym_fixme] = ACTIONS(169), + [sym__whitespace1] = ACTIONS(189), + [sym__newline] = ACTIONS(191), + [aux_sym__text_token1] = ACTIONS(193), + [sym__verbatim_begin] = ACTIONS(195), }, [59] = { - [sym__inline] = STATE(1093), - [sym__element] = STATE(84), - [sym_emphasis] = STATE(146), - [sym_emphasis_begin] = STATE(1226), - [sym_strong] = STATE(146), - [sym_strong_begin] = STATE(1227), - [sym_superscript] = STATE(146), - [sym_superscript_begin] = STATE(1228), - [sym_subscript] = STATE(146), - [sym_subscript_begin] = STATE(1229), - [sym_highlighted] = STATE(146), - [sym_highlighted_begin] = STATE(1230), - [sym_insert] = STATE(146), - [sym_insert_begin] = STATE(1231), - [sym_delete] = STATE(146), - [sym_delete_begin] = STATE(1232), - [sym_hard_line_break] = STATE(146), - [sym__smart_punctuation] = STATE(146), - [sym_autolink] = STATE(146), - [sym_footnote_reference] = STATE(146), - [sym_footnote_marker_begin] = STATE(1233), - [sym__image] = STATE(146), - [sym_full_reference_image] = STATE(146), - [sym_collapsed_reference_image] = STATE(146), - [sym_inline_image] = STATE(146), - [sym_image_description] = STATE(694), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(146), - [sym_full_reference_link] = STATE(146), - [sym_collapsed_reference_link] = STATE(146), - [sym_inline_link] = STATE(146), - [sym_link_text] = STATE(693), - [sym_span] = STATE(84), - [sym__bracketed_text_begin] = STATE(1269), - [sym__comment_with_spaces] = STATE(146), - [sym_raw_inline] = STATE(146), - [sym_math] = STATE(146), - [sym_verbatim] = STATE(146), - [sym__todo_highlights] = STATE(146), - [sym_todo] = STATE(146), - [sym_note] = STATE(146), - [sym__symbol_fallback] = STATE(146), - [aux_sym__text] = STATE(141), - [aux_sym__inline_repeat1] = STATE(84), - [anon_sym_LBRACE_] = ACTIONS(356), - [anon_sym__] = ACTIONS(358), - [anon_sym_LBRACE_STAR] = ACTIONS(360), - [anon_sym_STAR] = ACTIONS(362), - [anon_sym_LBRACE_CARET] = ACTIONS(364), - [anon_sym_CARET] = ACTIONS(364), - [anon_sym_LBRACE_TILDE] = ACTIONS(366), - [anon_sym_TILDE] = ACTIONS(366), - [anon_sym_LBRACE_EQ] = ACTIONS(368), - [anon_sym_LBRACE_PLUS] = ACTIONS(370), - [anon_sym_LBRACE_DASH] = ACTIONS(372), - [anon_sym_BSLASH] = ACTIONS(374), - [sym_quotation_marks] = ACTIONS(376), - [sym_ellipsis] = ACTIONS(376), - [sym_em_dash] = ACTIONS(376), - [sym_en_dash] = ACTIONS(378), - [sym_backslash_escape] = ACTIONS(378), - [anon_sym_LT] = ACTIONS(380), - [sym_symbol] = ACTIONS(376), - [anon_sym_LBRACK_CARET] = ACTIONS(382), - [anon_sym_BANG_LBRACK] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(386), - [anon_sym_DOLLAR] = ACTIONS(388), - [anon_sym_TODO] = ACTIONS(390), - [anon_sym_WIP] = ACTIONS(390), - [anon_sym_NOTE] = ACTIONS(392), - [anon_sym_INFO] = ACTIONS(392), - [anon_sym_XXX] = ACTIONS(392), - [sym_fixme] = ACTIONS(376), - [sym__whitespace1] = ACTIONS(394), - [sym__newline] = ACTIONS(396), - [aux_sym__text_token1] = ACTIONS(398), - [sym__verbatim_begin] = ACTIONS(400), + [sym__inline_without_trailing_space] = STATE(856), + [sym__element] = STATE(581), + [sym_emphasis] = STATE(141), + [sym_emphasis_begin] = STATE(1082), + [sym_strong] = STATE(141), + [sym_strong_begin] = STATE(1083), + [sym_superscript] = STATE(141), + [sym_superscript_begin] = STATE(1084), + [sym_subscript] = STATE(141), + [sym_subscript_begin] = STATE(1085), + [sym_highlighted] = STATE(141), + [sym_highlighted_begin] = STATE(1086), + [sym_insert] = STATE(141), + [sym_insert_begin] = STATE(1087), + [sym_delete] = STATE(141), + [sym_delete_begin] = STATE(1088), + [sym_hard_line_break] = STATE(141), + [sym__smart_punctuation] = STATE(141), + [sym_autolink] = STATE(141), + [sym_footnote_reference] = STATE(141), + [sym_footnote_marker_begin] = STATE(1089), + [sym__image] = STATE(141), + [sym_full_reference_image] = STATE(141), + [sym_collapsed_reference_image] = STATE(141), + [sym_inline_image] = STATE(141), + [sym_image_description] = STATE(642), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(141), + [sym_full_reference_link] = STATE(141), + [sym_collapsed_reference_link] = STATE(141), + [sym_inline_link] = STATE(141), + [sym_link_text] = STATE(629), + [sym_span] = STATE(581), + [sym__bracketed_text_begin] = STATE(1182), + [sym__comment_with_spaces] = STATE(141), + [sym_raw_inline] = STATE(141), + [sym_math] = STATE(141), + [sym_verbatim] = STATE(141), + [sym__todo_highlights] = STATE(141), + [sym_todo] = STATE(141), + [sym_note] = STATE(141), + [sym__symbol_fallback] = STATE(141), + [aux_sym__text] = STATE(125), + [aux_sym__inline_repeat1] = STATE(119), + [anon_sym_LBRACE_] = ACTIONS(585), + [anon_sym__] = ACTIONS(587), + [anon_sym_LBRACE_STAR] = ACTIONS(589), + [anon_sym_STAR] = ACTIONS(591), + [anon_sym_LBRACE_CARET] = ACTIONS(593), + [anon_sym_CARET] = ACTIONS(593), + [anon_sym_LBRACE_TILDE] = ACTIONS(595), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_LBRACE_EQ] = ACTIONS(597), + [anon_sym_LBRACE_PLUS] = ACTIONS(599), + [anon_sym_LBRACE_DASH] = ACTIONS(601), + [anon_sym_BSLASH] = ACTIONS(603), + [sym_quotation_marks] = ACTIONS(605), + [sym_ellipsis] = ACTIONS(605), + [sym_em_dash] = ACTIONS(605), + [sym_en_dash] = ACTIONS(607), + [sym_backslash_escape] = ACTIONS(607), + [anon_sym_LT] = ACTIONS(609), + [sym_symbol] = ACTIONS(605), + [anon_sym_LBRACK_CARET] = ACTIONS(611), + [anon_sym_BANG_LBRACK] = ACTIONS(613), + [anon_sym_LBRACK] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [anon_sym_TODO] = ACTIONS(621), + [anon_sym_WIP] = ACTIONS(621), + [anon_sym_NOTE] = ACTIONS(623), + [anon_sym_INFO] = ACTIONS(623), + [anon_sym_XXX] = ACTIONS(623), + [sym_fixme] = ACTIONS(605), + [sym__whitespace1] = ACTIONS(625), + [sym__newline] = ACTIONS(627), + [aux_sym__text_token1] = ACTIONS(629), + [sym__verbatim_begin] = ACTIONS(631), }, [60] = { - [sym__inline] = STATE(909), - [sym__element] = STATE(124), - [sym_emphasis] = STATE(151), - [sym_emphasis_begin] = STATE(1181), - [sym_strong] = STATE(151), - [sym_strong_begin] = STATE(1182), - [sym_superscript] = STATE(151), - [sym_superscript_begin] = STATE(1183), - [sym_subscript] = STATE(151), - [sym_subscript_begin] = STATE(1184), - [sym_highlighted] = STATE(151), - [sym_highlighted_begin] = STATE(1185), - [sym_insert] = STATE(151), - [sym_insert_begin] = STATE(1186), - [sym_delete] = STATE(151), - [sym_delete_begin] = STATE(1187), - [sym_hard_line_break] = STATE(151), - [sym__smart_punctuation] = STATE(151), - [sym_autolink] = STATE(151), - [sym_footnote_reference] = STATE(151), - [sym_footnote_marker_begin] = STATE(1188), - [sym__image] = STATE(151), - [sym_full_reference_image] = STATE(151), - [sym_collapsed_reference_image] = STATE(151), - [sym_inline_image] = STATE(151), - [sym_image_description] = STATE(700), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(151), - [sym_full_reference_link] = STATE(151), - [sym_collapsed_reference_link] = STATE(151), - [sym_inline_link] = STATE(151), - [sym_link_text] = STATE(701), - [sym_span] = STATE(124), - [sym__bracketed_text_begin] = STATE(1264), - [sym__comment_with_spaces] = STATE(151), - [sym_raw_inline] = STATE(151), - [sym_math] = STATE(151), - [sym_verbatim] = STATE(151), - [sym__todo_highlights] = STATE(151), - [sym_todo] = STATE(151), - [sym_note] = STATE(151), - [sym__symbol_fallback] = STATE(151), - [aux_sym__text] = STATE(140), - [aux_sym__inline_repeat1] = STATE(124), - [anon_sym_LBRACE_] = ACTIONS(143), - [anon_sym__] = ACTIONS(145), - [anon_sym_LBRACE_STAR] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_LBRACE_CARET] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(151), - [anon_sym_LBRACE_TILDE] = ACTIONS(153), - [anon_sym_TILDE] = ACTIONS(153), - [anon_sym_LBRACE_EQ] = ACTIONS(155), - [anon_sym_LBRACE_PLUS] = ACTIONS(157), - [anon_sym_LBRACE_DASH] = ACTIONS(159), - [anon_sym_BSLASH] = ACTIONS(161), - [sym_quotation_marks] = ACTIONS(163), - [sym_ellipsis] = ACTIONS(163), - [sym_em_dash] = ACTIONS(163), - [sym_en_dash] = ACTIONS(165), - [sym_backslash_escape] = ACTIONS(165), - [anon_sym_LT] = ACTIONS(167), - [sym_symbol] = ACTIONS(163), - [anon_sym_LBRACK_CARET] = ACTIONS(169), - [anon_sym_BANG_LBRACK] = ACTIONS(171), - [anon_sym_LBRACK] = ACTIONS(173), - [anon_sym_DOLLAR] = ACTIONS(175), - [anon_sym_TODO] = ACTIONS(177), - [anon_sym_WIP] = ACTIONS(177), - [anon_sym_NOTE] = ACTIONS(179), - [anon_sym_INFO] = ACTIONS(179), - [anon_sym_XXX] = ACTIONS(179), - [sym_fixme] = ACTIONS(163), - [sym__whitespace1] = ACTIONS(181), - [sym__newline] = ACTIONS(183), - [aux_sym__text_token1] = ACTIONS(185), - [sym__verbatim_begin] = ACTIONS(187), + [sym__inline] = STATE(1010), + [sym__element] = STATE(71), + [sym_emphasis] = STATE(132), + [sym_emphasis_begin] = STATE(1152), + [sym_strong] = STATE(132), + [sym_strong_begin] = STATE(1153), + [sym_superscript] = STATE(132), + [sym_superscript_begin] = STATE(1154), + [sym_subscript] = STATE(132), + [sym_subscript_begin] = STATE(1155), + [sym_highlighted] = STATE(132), + [sym_highlighted_begin] = STATE(1156), + [sym_insert] = STATE(132), + [sym_insert_begin] = STATE(1157), + [sym_delete] = STATE(132), + [sym_delete_begin] = STATE(1158), + [sym_hard_line_break] = STATE(132), + [sym__smart_punctuation] = STATE(132), + [sym_autolink] = STATE(132), + [sym_footnote_reference] = STATE(132), + [sym_footnote_marker_begin] = STATE(1159), + [sym__image] = STATE(132), + [sym_full_reference_image] = STATE(132), + [sym_collapsed_reference_image] = STATE(132), + [sym_inline_image] = STATE(132), + [sym_image_description] = STATE(633), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(132), + [sym_full_reference_link] = STATE(132), + [sym_collapsed_reference_link] = STATE(132), + [sym_inline_link] = STATE(132), + [sym_link_text] = STATE(631), + [sym_span] = STATE(71), + [sym__bracketed_text_begin] = STATE(1189), + [sym__comment_with_spaces] = STATE(132), + [sym_raw_inline] = STATE(132), + [sym_math] = STATE(132), + [sym_verbatim] = STATE(132), + [sym__todo_highlights] = STATE(132), + [sym_todo] = STATE(132), + [sym_note] = STATE(132), + [sym__symbol_fallback] = STATE(132), + [aux_sym__text] = STATE(128), + [aux_sym__inline_repeat1] = STATE(71), + [anon_sym_LBRACE_] = ACTIONS(441), + [anon_sym__] = ACTIONS(443), + [anon_sym_LBRACE_STAR] = ACTIONS(445), + [anon_sym_STAR] = ACTIONS(447), + [anon_sym_LBRACE_CARET] = ACTIONS(449), + [anon_sym_CARET] = ACTIONS(449), + [anon_sym_LBRACE_TILDE] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_LBRACE_EQ] = ACTIONS(453), + [anon_sym_LBRACE_PLUS] = ACTIONS(455), + [anon_sym_LBRACE_DASH] = ACTIONS(457), + [anon_sym_BSLASH] = ACTIONS(459), + [sym_quotation_marks] = ACTIONS(461), + [sym_ellipsis] = ACTIONS(461), + [sym_em_dash] = ACTIONS(461), + [sym_en_dash] = ACTIONS(463), + [sym_backslash_escape] = ACTIONS(463), + [anon_sym_LT] = ACTIONS(465), + [sym_symbol] = ACTIONS(461), + [anon_sym_LBRACK_CARET] = ACTIONS(467), + [anon_sym_BANG_LBRACK] = ACTIONS(469), + [anon_sym_LBRACK] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(473), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_TODO] = ACTIONS(477), + [anon_sym_WIP] = ACTIONS(477), + [anon_sym_NOTE] = ACTIONS(479), + [anon_sym_INFO] = ACTIONS(479), + [anon_sym_XXX] = ACTIONS(479), + [sym_fixme] = ACTIONS(461), + [sym__whitespace1] = ACTIONS(481), + [sym__newline] = ACTIONS(483), + [aux_sym__text_token1] = ACTIONS(485), + [sym__verbatim_begin] = ACTIONS(487), }, [61] = { - [sym__inline_without_trailing_space] = STATE(964), - [sym__element] = STATE(570), - [sym_emphasis] = STATE(152), - [sym_emphasis_begin] = STATE(1172), - [sym_strong] = STATE(152), - [sym_strong_begin] = STATE(1173), - [sym_superscript] = STATE(152), - [sym_superscript_begin] = STATE(1174), - [sym_subscript] = STATE(152), - [sym_subscript_begin] = STATE(1175), - [sym_highlighted] = STATE(152), - [sym_highlighted_begin] = STATE(1176), - [sym_insert] = STATE(152), - [sym_insert_begin] = STATE(1177), - [sym_delete] = STATE(152), - [sym_delete_begin] = STATE(1178), - [sym_hard_line_break] = STATE(152), - [sym__smart_punctuation] = STATE(152), - [sym_autolink] = STATE(152), - [sym_footnote_reference] = STATE(152), - [sym_footnote_marker_begin] = STATE(1179), - [sym__image] = STATE(152), - [sym_full_reference_image] = STATE(152), - [sym_collapsed_reference_image] = STATE(152), - [sym_inline_image] = STATE(152), - [sym_image_description] = STATE(704), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(152), - [sym_full_reference_link] = STATE(152), - [sym_collapsed_reference_link] = STATE(152), - [sym_inline_link] = STATE(152), - [sym_link_text] = STATE(706), - [sym_span] = STATE(570), - [sym__bracketed_text_begin] = STATE(1263), - [sym__comment_with_spaces] = STATE(152), - [sym_raw_inline] = STATE(152), - [sym_math] = STATE(152), - [sym_verbatim] = STATE(152), - [sym__todo_highlights] = STATE(152), - [sym_todo] = STATE(152), - [sym_note] = STATE(152), - [sym__symbol_fallback] = STATE(152), - [aux_sym__text] = STATE(133), - [aux_sym__inline_repeat1] = STATE(130), - [anon_sym_LBRACE_] = ACTIONS(448), - [anon_sym__] = ACTIONS(450), - [anon_sym_LBRACE_STAR] = ACTIONS(452), - [anon_sym_STAR] = ACTIONS(454), - [anon_sym_LBRACE_CARET] = ACTIONS(456), - [anon_sym_CARET] = ACTIONS(456), - [anon_sym_LBRACE_TILDE] = ACTIONS(458), - [anon_sym_TILDE] = ACTIONS(458), - [anon_sym_LBRACE_EQ] = ACTIONS(460), - [anon_sym_LBRACE_PLUS] = ACTIONS(462), - [anon_sym_LBRACE_DASH] = ACTIONS(464), - [anon_sym_BSLASH] = ACTIONS(466), - [sym_quotation_marks] = ACTIONS(468), - [sym_ellipsis] = ACTIONS(468), - [sym_em_dash] = ACTIONS(468), - [sym_en_dash] = ACTIONS(470), - [sym_backslash_escape] = ACTIONS(470), - [anon_sym_LT] = ACTIONS(472), - [sym_symbol] = ACTIONS(468), - [anon_sym_LBRACK_CARET] = ACTIONS(474), - [anon_sym_BANG_LBRACK] = ACTIONS(476), - [anon_sym_LBRACK] = ACTIONS(478), - [anon_sym_DOLLAR] = ACTIONS(480), - [anon_sym_TODO] = ACTIONS(482), - [anon_sym_WIP] = ACTIONS(482), - [anon_sym_NOTE] = ACTIONS(484), - [anon_sym_INFO] = ACTIONS(484), - [anon_sym_XXX] = ACTIONS(484), - [sym_fixme] = ACTIONS(468), - [sym__whitespace1] = ACTIONS(486), - [sym__newline] = ACTIONS(488), - [aux_sym__text_token1] = ACTIONS(490), - [sym__verbatim_begin] = ACTIONS(492), + [sym__inline_without_trailing_space] = STATE(858), + [sym__element] = STATE(536), + [sym_emphasis] = STATE(138), + [sym_emphasis_begin] = STATE(1092), + [sym_strong] = STATE(138), + [sym_strong_begin] = STATE(1093), + [sym_superscript] = STATE(138), + [sym_superscript_begin] = STATE(1094), + [sym_subscript] = STATE(138), + [sym_subscript_begin] = STATE(1095), + [sym_highlighted] = STATE(138), + [sym_highlighted_begin] = STATE(1096), + [sym_insert] = STATE(138), + [sym_insert_begin] = STATE(1097), + [sym_delete] = STATE(138), + [sym_delete_begin] = STATE(1098), + [sym_hard_line_break] = STATE(138), + [sym__smart_punctuation] = STATE(138), + [sym_autolink] = STATE(138), + [sym_footnote_reference] = STATE(138), + [sym_footnote_marker_begin] = STATE(1099), + [sym__image] = STATE(138), + [sym_full_reference_image] = STATE(138), + [sym_collapsed_reference_image] = STATE(138), + [sym_inline_image] = STATE(138), + [sym_image_description] = STATE(626), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(138), + [sym_full_reference_link] = STATE(138), + [sym_collapsed_reference_link] = STATE(138), + [sym_inline_link] = STATE(138), + [sym_link_text] = STATE(627), + [sym_span] = STATE(536), + [sym__bracketed_text_begin] = STATE(1183), + [sym__comment_with_spaces] = STATE(138), + [sym_raw_inline] = STATE(138), + [sym_math] = STATE(138), + [sym_verbatim] = STATE(138), + [sym__todo_highlights] = STATE(138), + [sym_todo] = STATE(138), + [sym_note] = STATE(138), + [sym__symbol_fallback] = STATE(138), + [aux_sym__text] = STATE(127), + [aux_sym__inline_repeat1] = STATE(118), + [anon_sym_LBRACE_] = ACTIONS(149), + [anon_sym__] = ACTIONS(151), + [anon_sym_LBRACE_STAR] = ACTIONS(153), + [anon_sym_STAR] = ACTIONS(155), + [anon_sym_LBRACE_CARET] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_LBRACE_TILDE] = ACTIONS(159), + [anon_sym_TILDE] = ACTIONS(159), + [anon_sym_LBRACE_EQ] = ACTIONS(161), + [anon_sym_LBRACE_PLUS] = ACTIONS(163), + [anon_sym_LBRACE_DASH] = ACTIONS(165), + [anon_sym_BSLASH] = ACTIONS(167), + [sym_quotation_marks] = ACTIONS(169), + [sym_ellipsis] = ACTIONS(169), + [sym_em_dash] = ACTIONS(169), + [sym_en_dash] = ACTIONS(171), + [sym_backslash_escape] = ACTIONS(171), + [anon_sym_LT] = ACTIONS(173), + [sym_symbol] = ACTIONS(169), + [anon_sym_LBRACK_CARET] = ACTIONS(175), + [anon_sym_BANG_LBRACK] = ACTIONS(177), + [anon_sym_LBRACK] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(181), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_TODO] = ACTIONS(185), + [anon_sym_WIP] = ACTIONS(185), + [anon_sym_NOTE] = ACTIONS(187), + [anon_sym_INFO] = ACTIONS(187), + [anon_sym_XXX] = ACTIONS(187), + [sym_fixme] = ACTIONS(169), + [sym__whitespace1] = ACTIONS(189), + [sym__newline] = ACTIONS(191), + [aux_sym__text_token1] = ACTIONS(193), + [sym__verbatim_begin] = ACTIONS(195), }, [62] = { - [sym__inline] = STATE(954), - [sym__element] = STATE(124), - [sym_emphasis] = STATE(151), - [sym_emphasis_begin] = STATE(1181), - [sym_strong] = STATE(151), - [sym_strong_begin] = STATE(1182), - [sym_superscript] = STATE(151), - [sym_superscript_begin] = STATE(1183), - [sym_subscript] = STATE(151), - [sym_subscript_begin] = STATE(1184), - [sym_highlighted] = STATE(151), - [sym_highlighted_begin] = STATE(1185), - [sym_insert] = STATE(151), - [sym_insert_begin] = STATE(1186), - [sym_delete] = STATE(151), - [sym_delete_begin] = STATE(1187), - [sym_hard_line_break] = STATE(151), - [sym__smart_punctuation] = STATE(151), - [sym_autolink] = STATE(151), - [sym_footnote_reference] = STATE(151), - [sym_footnote_marker_begin] = STATE(1188), - [sym__image] = STATE(151), - [sym_full_reference_image] = STATE(151), - [sym_collapsed_reference_image] = STATE(151), - [sym_inline_image] = STATE(151), - [sym_image_description] = STATE(700), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(151), - [sym_full_reference_link] = STATE(151), - [sym_collapsed_reference_link] = STATE(151), - [sym_inline_link] = STATE(151), - [sym_link_text] = STATE(701), - [sym_span] = STATE(124), - [sym__bracketed_text_begin] = STATE(1264), - [sym__comment_with_spaces] = STATE(151), - [sym_raw_inline] = STATE(151), - [sym_math] = STATE(151), - [sym_verbatim] = STATE(151), - [sym__todo_highlights] = STATE(151), - [sym_todo] = STATE(151), - [sym_note] = STATE(151), - [sym__symbol_fallback] = STATE(151), - [aux_sym__text] = STATE(140), - [aux_sym__inline_repeat1] = STATE(124), - [anon_sym_LBRACE_] = ACTIONS(143), - [anon_sym__] = ACTIONS(145), - [anon_sym_LBRACE_STAR] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_LBRACE_CARET] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(151), - [anon_sym_LBRACE_TILDE] = ACTIONS(153), - [anon_sym_TILDE] = ACTIONS(153), - [anon_sym_LBRACE_EQ] = ACTIONS(155), - [anon_sym_LBRACE_PLUS] = ACTIONS(157), - [anon_sym_LBRACE_DASH] = ACTIONS(159), - [anon_sym_BSLASH] = ACTIONS(161), - [sym_quotation_marks] = ACTIONS(163), - [sym_ellipsis] = ACTIONS(163), - [sym_em_dash] = ACTIONS(163), - [sym_en_dash] = ACTIONS(165), - [sym_backslash_escape] = ACTIONS(165), - [anon_sym_LT] = ACTIONS(167), - [sym_symbol] = ACTIONS(163), - [anon_sym_LBRACK_CARET] = ACTIONS(169), - [anon_sym_BANG_LBRACK] = ACTIONS(171), - [anon_sym_LBRACK] = ACTIONS(173), - [anon_sym_DOLLAR] = ACTIONS(175), - [anon_sym_TODO] = ACTIONS(177), - [anon_sym_WIP] = ACTIONS(177), - [anon_sym_NOTE] = ACTIONS(179), - [anon_sym_INFO] = ACTIONS(179), - [anon_sym_XXX] = ACTIONS(179), - [sym_fixme] = ACTIONS(163), - [sym__whitespace1] = ACTIONS(181), - [sym__newline] = ACTIONS(183), - [aux_sym__text_token1] = ACTIONS(185), - [sym__verbatim_begin] = ACTIONS(187), + [sym__inline] = STATE(885), + [sym__element] = STATE(106), + [sym_emphasis] = STATE(139), + [sym_emphasis_begin] = STATE(1102), + [sym_strong] = STATE(139), + [sym_strong_begin] = STATE(1103), + [sym_superscript] = STATE(139), + [sym_superscript_begin] = STATE(1104), + [sym_subscript] = STATE(139), + [sym_subscript_begin] = STATE(1105), + [sym_highlighted] = STATE(139), + [sym_highlighted_begin] = STATE(1106), + [sym_insert] = STATE(139), + [sym_insert_begin] = STATE(1107), + [sym_delete] = STATE(139), + [sym_delete_begin] = STATE(1108), + [sym_hard_line_break] = STATE(139), + [sym__smart_punctuation] = STATE(139), + [sym_autolink] = STATE(139), + [sym_footnote_reference] = STATE(139), + [sym_footnote_marker_begin] = STATE(1109), + [sym__image] = STATE(139), + [sym_full_reference_image] = STATE(139), + [sym_collapsed_reference_image] = STATE(139), + [sym_inline_image] = STATE(139), + [sym_image_description] = STATE(623), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(139), + [sym_full_reference_link] = STATE(139), + [sym_collapsed_reference_link] = STATE(139), + [sym_inline_link] = STATE(139), + [sym_link_text] = STATE(621), + [sym_span] = STATE(106), + [sym__bracketed_text_begin] = STATE(1184), + [sym__comment_with_spaces] = STATE(139), + [sym_raw_inline] = STATE(139), + [sym_math] = STATE(139), + [sym_verbatim] = STATE(139), + [sym__todo_highlights] = STATE(139), + [sym_todo] = STATE(139), + [sym_note] = STATE(139), + [sym__symbol_fallback] = STATE(139), + [aux_sym__text] = STATE(126), + [aux_sym__inline_repeat1] = STATE(106), + [anon_sym_LBRACE_] = ACTIONS(101), + [anon_sym__] = ACTIONS(103), + [anon_sym_LBRACE_STAR] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(107), + [anon_sym_LBRACE_CARET] = ACTIONS(109), + [anon_sym_CARET] = ACTIONS(109), + [anon_sym_LBRACE_TILDE] = ACTIONS(111), + [anon_sym_TILDE] = ACTIONS(111), + [anon_sym_LBRACE_EQ] = ACTIONS(113), + [anon_sym_LBRACE_PLUS] = ACTIONS(115), + [anon_sym_LBRACE_DASH] = ACTIONS(117), + [anon_sym_BSLASH] = ACTIONS(119), + [sym_quotation_marks] = ACTIONS(121), + [sym_ellipsis] = ACTIONS(121), + [sym_em_dash] = ACTIONS(121), + [sym_en_dash] = ACTIONS(123), + [sym_backslash_escape] = ACTIONS(123), + [anon_sym_LT] = ACTIONS(125), + [sym_symbol] = ACTIONS(121), + [anon_sym_LBRACK_CARET] = ACTIONS(127), + [anon_sym_BANG_LBRACK] = ACTIONS(129), + [anon_sym_LBRACK] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_DOLLAR] = ACTIONS(135), + [anon_sym_TODO] = ACTIONS(137), + [anon_sym_WIP] = ACTIONS(137), + [anon_sym_NOTE] = ACTIONS(139), + [anon_sym_INFO] = ACTIONS(139), + [anon_sym_XXX] = ACTIONS(139), + [sym_fixme] = ACTIONS(121), + [sym__whitespace1] = ACTIONS(141), + [sym__newline] = ACTIONS(143), + [aux_sym__text_token1] = ACTIONS(145), + [sym__verbatim_begin] = ACTIONS(147), }, [63] = { - [sym__inline] = STATE(1161), - [sym__element] = STATE(121), - [sym_emphasis] = STATE(154), - [sym_emphasis_begin] = STATE(1244), - [sym_strong] = STATE(154), - [sym_strong_begin] = STATE(1245), - [sym_superscript] = STATE(154), - [sym_superscript_begin] = STATE(1246), - [sym_subscript] = STATE(154), - [sym_subscript_begin] = STATE(1247), - [sym_highlighted] = STATE(154), - [sym_highlighted_begin] = STATE(1248), - [sym_insert] = STATE(154), - [sym_insert_begin] = STATE(1249), - [sym_delete] = STATE(154), - [sym_delete_begin] = STATE(1250), - [sym_hard_line_break] = STATE(154), - [sym__smart_punctuation] = STATE(154), - [sym_autolink] = STATE(154), - [sym_footnote_reference] = STATE(154), - [sym_footnote_marker_begin] = STATE(1251), - [sym__image] = STATE(154), - [sym_full_reference_image] = STATE(154), - [sym_collapsed_reference_image] = STATE(154), - [sym_inline_image] = STATE(154), - [sym_image_description] = STATE(686), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(154), - [sym_full_reference_link] = STATE(154), - [sym_collapsed_reference_link] = STATE(154), - [sym_inline_link] = STATE(154), - [sym_link_text] = STATE(687), - [sym_span] = STATE(121), - [sym__bracketed_text_begin] = STATE(1271), - [sym__comment_with_spaces] = STATE(154), - [sym_raw_inline] = STATE(154), - [sym_math] = STATE(154), - [sym_verbatim] = STATE(154), - [sym__todo_highlights] = STATE(154), - [sym_todo] = STATE(154), - [sym_note] = STATE(154), - [sym__symbol_fallback] = STATE(154), - [aux_sym__text] = STATE(137), - [aux_sym__inline_repeat1] = STATE(121), - [anon_sym_LBRACE_] = ACTIONS(235), - [anon_sym__] = ACTIONS(237), - [anon_sym_LBRACE_STAR] = ACTIONS(239), - [anon_sym_STAR] = ACTIONS(241), - [anon_sym_LBRACE_CARET] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(243), - [anon_sym_LBRACE_TILDE] = ACTIONS(245), - [anon_sym_TILDE] = ACTIONS(245), - [anon_sym_LBRACE_EQ] = ACTIONS(247), - [anon_sym_LBRACE_PLUS] = ACTIONS(249), - [anon_sym_LBRACE_DASH] = ACTIONS(251), - [anon_sym_BSLASH] = ACTIONS(253), - [sym_quotation_marks] = ACTIONS(255), - [sym_ellipsis] = ACTIONS(255), - [sym_em_dash] = ACTIONS(255), - [sym_en_dash] = ACTIONS(257), - [sym_backslash_escape] = ACTIONS(257), - [anon_sym_LT] = ACTIONS(259), - [sym_symbol] = ACTIONS(255), - [anon_sym_LBRACK_CARET] = ACTIONS(261), - [anon_sym_BANG_LBRACK] = ACTIONS(263), - [anon_sym_LBRACK] = ACTIONS(265), - [anon_sym_DOLLAR] = ACTIONS(267), - [anon_sym_TODO] = ACTIONS(269), - [anon_sym_WIP] = ACTIONS(269), - [anon_sym_NOTE] = ACTIONS(271), - [anon_sym_INFO] = ACTIONS(271), - [anon_sym_XXX] = ACTIONS(271), - [sym_fixme] = ACTIONS(255), - [sym__whitespace1] = ACTIONS(273), - [sym__newline] = ACTIONS(275), - [aux_sym__text_token1] = ACTIONS(277), - [sym__verbatim_begin] = ACTIONS(279), + [sym__inline_without_trailing_space] = STATE(840), + [sym__element] = STATE(581), + [sym_emphasis] = STATE(141), + [sym_emphasis_begin] = STATE(1082), + [sym_strong] = STATE(141), + [sym_strong_begin] = STATE(1083), + [sym_superscript] = STATE(141), + [sym_superscript_begin] = STATE(1084), + [sym_subscript] = STATE(141), + [sym_subscript_begin] = STATE(1085), + [sym_highlighted] = STATE(141), + [sym_highlighted_begin] = STATE(1086), + [sym_insert] = STATE(141), + [sym_insert_begin] = STATE(1087), + [sym_delete] = STATE(141), + [sym_delete_begin] = STATE(1088), + [sym_hard_line_break] = STATE(141), + [sym__smart_punctuation] = STATE(141), + [sym_autolink] = STATE(141), + [sym_footnote_reference] = STATE(141), + [sym_footnote_marker_begin] = STATE(1089), + [sym__image] = STATE(141), + [sym_full_reference_image] = STATE(141), + [sym_collapsed_reference_image] = STATE(141), + [sym_inline_image] = STATE(141), + [sym_image_description] = STATE(642), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(141), + [sym_full_reference_link] = STATE(141), + [sym_collapsed_reference_link] = STATE(141), + [sym_inline_link] = STATE(141), + [sym_link_text] = STATE(629), + [sym_span] = STATE(581), + [sym__bracketed_text_begin] = STATE(1182), + [sym__comment_with_spaces] = STATE(141), + [sym_raw_inline] = STATE(141), + [sym_math] = STATE(141), + [sym_verbatim] = STATE(141), + [sym__todo_highlights] = STATE(141), + [sym_todo] = STATE(141), + [sym_note] = STATE(141), + [sym__symbol_fallback] = STATE(141), + [aux_sym__text] = STATE(125), + [aux_sym__inline_repeat1] = STATE(119), + [anon_sym_LBRACE_] = ACTIONS(585), + [anon_sym__] = ACTIONS(587), + [anon_sym_LBRACE_STAR] = ACTIONS(589), + [anon_sym_STAR] = ACTIONS(591), + [anon_sym_LBRACE_CARET] = ACTIONS(593), + [anon_sym_CARET] = ACTIONS(593), + [anon_sym_LBRACE_TILDE] = ACTIONS(595), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_LBRACE_EQ] = ACTIONS(597), + [anon_sym_LBRACE_PLUS] = ACTIONS(599), + [anon_sym_LBRACE_DASH] = ACTIONS(601), + [anon_sym_BSLASH] = ACTIONS(603), + [sym_quotation_marks] = ACTIONS(605), + [sym_ellipsis] = ACTIONS(605), + [sym_em_dash] = ACTIONS(605), + [sym_en_dash] = ACTIONS(607), + [sym_backslash_escape] = ACTIONS(607), + [anon_sym_LT] = ACTIONS(609), + [sym_symbol] = ACTIONS(605), + [anon_sym_LBRACK_CARET] = ACTIONS(611), + [anon_sym_BANG_LBRACK] = ACTIONS(613), + [anon_sym_LBRACK] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [anon_sym_TODO] = ACTIONS(621), + [anon_sym_WIP] = ACTIONS(621), + [anon_sym_NOTE] = ACTIONS(623), + [anon_sym_INFO] = ACTIONS(623), + [anon_sym_XXX] = ACTIONS(623), + [sym_fixme] = ACTIONS(605), + [sym__whitespace1] = ACTIONS(625), + [sym__newline] = ACTIONS(627), + [aux_sym__text_token1] = ACTIONS(629), + [sym__verbatim_begin] = ACTIONS(631), }, [64] = { - [sym__inline] = STATE(951), - [sym__element] = STATE(80), - [sym_emphasis] = STATE(145), - [sym_emphasis_begin] = STATE(1190), - [sym_strong] = STATE(145), - [sym_strong_begin] = STATE(1191), - [sym_superscript] = STATE(145), - [sym_superscript_begin] = STATE(1192), - [sym_subscript] = STATE(145), - [sym_subscript_begin] = STATE(1193), - [sym_highlighted] = STATE(145), - [sym_highlighted_begin] = STATE(1194), - [sym_insert] = STATE(145), - [sym_insert_begin] = STATE(1195), - [sym_delete] = STATE(145), - [sym_delete_begin] = STATE(1196), - [sym_hard_line_break] = STATE(145), - [sym__smart_punctuation] = STATE(145), - [sym_autolink] = STATE(145), - [sym_footnote_reference] = STATE(145), - [sym_footnote_marker_begin] = STATE(1197), - [sym__image] = STATE(145), - [sym_full_reference_image] = STATE(145), - [sym_collapsed_reference_image] = STATE(145), - [sym_inline_image] = STATE(145), - [sym_image_description] = STATE(696), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(145), - [sym_full_reference_link] = STATE(145), - [sym_collapsed_reference_link] = STATE(145), - [sym_inline_link] = STATE(145), - [sym_link_text] = STATE(691), - [sym_span] = STATE(80), - [sym__bracketed_text_begin] = STATE(1265), - [sym__comment_with_spaces] = STATE(145), - [sym_raw_inline] = STATE(145), - [sym_math] = STATE(145), - [sym_verbatim] = STATE(145), - [sym__todo_highlights] = STATE(145), - [sym_todo] = STATE(145), - [sym_note] = STATE(145), - [sym__symbol_fallback] = STATE(145), - [aux_sym__text] = STATE(138), - [aux_sym__inline_repeat1] = STATE(80), - [anon_sym_LBRACE_] = ACTIONS(542), - [anon_sym__] = ACTIONS(544), - [anon_sym_LBRACE_STAR] = ACTIONS(546), - [anon_sym_STAR] = ACTIONS(548), - [anon_sym_LBRACE_CARET] = ACTIONS(550), - [anon_sym_CARET] = ACTIONS(550), - [anon_sym_LBRACE_TILDE] = ACTIONS(552), - [anon_sym_TILDE] = ACTIONS(552), - [anon_sym_LBRACE_EQ] = ACTIONS(554), - [anon_sym_LBRACE_PLUS] = ACTIONS(556), - [anon_sym_LBRACE_DASH] = ACTIONS(558), - [anon_sym_BSLASH] = ACTIONS(560), - [sym_quotation_marks] = ACTIONS(562), - [sym_ellipsis] = ACTIONS(562), - [sym_em_dash] = ACTIONS(562), - [sym_en_dash] = ACTIONS(564), - [sym_backslash_escape] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(566), - [sym_symbol] = ACTIONS(562), - [anon_sym_LBRACK_CARET] = ACTIONS(568), - [anon_sym_BANG_LBRACK] = ACTIONS(570), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_DOLLAR] = ACTIONS(574), - [anon_sym_TODO] = ACTIONS(576), - [anon_sym_WIP] = ACTIONS(576), - [anon_sym_NOTE] = ACTIONS(578), - [anon_sym_INFO] = ACTIONS(578), - [anon_sym_XXX] = ACTIONS(578), - [sym_fixme] = ACTIONS(562), - [sym__whitespace1] = ACTIONS(580), - [sym__newline] = ACTIONS(582), - [aux_sym__text_token1] = ACTIONS(584), - [sym__verbatim_begin] = ACTIONS(586), + [sym__inline] = STATE(1080), + [sym__element] = STATE(107), + [sym_emphasis] = STATE(140), + [sym_emphasis_begin] = STATE(1162), + [sym_strong] = STATE(140), + [sym_strong_begin] = STATE(1163), + [sym_superscript] = STATE(140), + [sym_superscript_begin] = STATE(1164), + [sym_subscript] = STATE(140), + [sym_subscript_begin] = STATE(1165), + [sym_highlighted] = STATE(140), + [sym_highlighted_begin] = STATE(1166), + [sym_insert] = STATE(140), + [sym_insert_begin] = STATE(1167), + [sym_delete] = STATE(140), + [sym_delete_begin] = STATE(1168), + [sym_hard_line_break] = STATE(140), + [sym__smart_punctuation] = STATE(140), + [sym_autolink] = STATE(140), + [sym_footnote_reference] = STATE(140), + [sym_footnote_marker_begin] = STATE(1169), + [sym__image] = STATE(140), + [sym_full_reference_image] = STATE(140), + [sym_collapsed_reference_image] = STATE(140), + [sym_inline_image] = STATE(140), + [sym_image_description] = STATE(625), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(140), + [sym_full_reference_link] = STATE(140), + [sym_collapsed_reference_link] = STATE(140), + [sym_inline_link] = STATE(140), + [sym_link_text] = STATE(624), + [sym_span] = STATE(107), + [sym__bracketed_text_begin] = STATE(1190), + [sym__comment_with_spaces] = STATE(140), + [sym_raw_inline] = STATE(140), + [sym_math] = STATE(140), + [sym_verbatim] = STATE(140), + [sym__todo_highlights] = STATE(140), + [sym_todo] = STATE(140), + [sym_note] = STATE(140), + [sym__symbol_fallback] = STATE(140), + [aux_sym__text] = STATE(124), + [aux_sym__inline_repeat1] = STATE(107), + [anon_sym_LBRACE_] = ACTIONS(51), + [anon_sym__] = ACTIONS(53), + [anon_sym_LBRACE_STAR] = ACTIONS(55), + [anon_sym_STAR] = ACTIONS(57), + [anon_sym_LBRACE_CARET] = ACTIONS(59), + [anon_sym_CARET] = ACTIONS(59), + [anon_sym_LBRACE_TILDE] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(61), + [anon_sym_LBRACE_EQ] = ACTIONS(63), + [anon_sym_LBRACE_PLUS] = ACTIONS(65), + [anon_sym_LBRACE_DASH] = ACTIONS(67), + [anon_sym_BSLASH] = ACTIONS(69), + [sym_quotation_marks] = ACTIONS(71), + [sym_ellipsis] = ACTIONS(71), + [sym_em_dash] = ACTIONS(71), + [sym_en_dash] = ACTIONS(73), + [sym_backslash_escape] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(75), + [sym_symbol] = ACTIONS(71), + [anon_sym_LBRACK_CARET] = ACTIONS(77), + [anon_sym_BANG_LBRACK] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(85), + [anon_sym_TODO] = ACTIONS(87), + [anon_sym_WIP] = ACTIONS(87), + [anon_sym_NOTE] = ACTIONS(89), + [anon_sym_INFO] = ACTIONS(89), + [anon_sym_XXX] = ACTIONS(89), + [sym_fixme] = ACTIONS(71), + [sym__whitespace1] = ACTIONS(91), + [sym__newline] = ACTIONS(93), + [aux_sym__text_token1] = ACTIONS(95), + [sym__verbatim_begin] = ACTIONS(97), }, [65] = { - [sym__inline] = STATE(950), - [sym__element] = STATE(21), - [sym_emphasis] = STATE(149), - [sym_emphasis_begin] = STATE(1199), - [sym_strong] = STATE(149), - [sym_strong_begin] = STATE(1200), - [sym_superscript] = STATE(149), - [sym_superscript_begin] = STATE(1201), - [sym_subscript] = STATE(149), - [sym_subscript_begin] = STATE(1202), - [sym_highlighted] = STATE(149), - [sym_highlighted_begin] = STATE(1203), - [sym_insert] = STATE(149), - [sym_insert_begin] = STATE(1204), - [sym_delete] = STATE(149), - [sym_delete_begin] = STATE(1205), - [sym_hard_line_break] = STATE(149), - [sym__smart_punctuation] = STATE(149), - [sym_autolink] = STATE(149), - [sym_footnote_reference] = STATE(149), - [sym_footnote_marker_begin] = STATE(1206), - [sym__image] = STATE(149), - [sym_full_reference_image] = STATE(149), - [sym_collapsed_reference_image] = STATE(149), - [sym_inline_image] = STATE(149), - [sym_image_description] = STATE(714), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(149), - [sym_full_reference_link] = STATE(149), - [sym_collapsed_reference_link] = STATE(149), - [sym_inline_link] = STATE(149), - [sym_link_text] = STATE(710), - [sym_span] = STATE(21), - [sym__bracketed_text_begin] = STATE(1266), - [sym__comment_with_spaces] = STATE(149), - [sym_raw_inline] = STATE(149), - [sym_math] = STATE(149), - [sym_verbatim] = STATE(149), - [sym__todo_highlights] = STATE(149), - [sym_todo] = STATE(149), - [sym_note] = STATE(149), - [sym__symbol_fallback] = STATE(149), - [aux_sym__text] = STATE(142), - [aux_sym__inline_repeat1] = STATE(21), - [anon_sym_LBRACE_] = ACTIONS(494), - [anon_sym__] = ACTIONS(496), - [anon_sym_LBRACE_STAR] = ACTIONS(498), - [anon_sym_STAR] = ACTIONS(500), - [anon_sym_LBRACE_CARET] = ACTIONS(502), - [anon_sym_CARET] = ACTIONS(502), - [anon_sym_LBRACE_TILDE] = ACTIONS(504), - [anon_sym_TILDE] = ACTIONS(504), - [anon_sym_LBRACE_EQ] = ACTIONS(506), - [anon_sym_LBRACE_PLUS] = ACTIONS(508), - [anon_sym_LBRACE_DASH] = ACTIONS(510), - [anon_sym_BSLASH] = ACTIONS(512), - [sym_quotation_marks] = ACTIONS(514), - [sym_ellipsis] = ACTIONS(514), - [sym_em_dash] = ACTIONS(514), - [sym_en_dash] = ACTIONS(516), - [sym_backslash_escape] = ACTIONS(516), - [anon_sym_LT] = ACTIONS(518), - [sym_symbol] = ACTIONS(514), - [anon_sym_LBRACK_CARET] = ACTIONS(520), - [anon_sym_BANG_LBRACK] = ACTIONS(522), - [anon_sym_LBRACK] = ACTIONS(524), - [anon_sym_DOLLAR] = ACTIONS(526), - [anon_sym_TODO] = ACTIONS(528), - [anon_sym_WIP] = ACTIONS(528), - [anon_sym_NOTE] = ACTIONS(530), - [anon_sym_INFO] = ACTIONS(530), - [anon_sym_XXX] = ACTIONS(530), - [sym_fixme] = ACTIONS(514), - [sym__whitespace1] = ACTIONS(532), - [sym__newline] = ACTIONS(540), - [aux_sym__text_token1] = ACTIONS(536), - [sym__verbatim_begin] = ACTIONS(538), + [sym__element] = STATE(81), + [sym_emphasis] = STATE(133), + [sym_emphasis_begin] = STATE(1142), + [sym_strong] = STATE(133), + [sym_strong_begin] = STATE(1143), + [sym_superscript] = STATE(133), + [sym_superscript_begin] = STATE(1144), + [sym_subscript] = STATE(133), + [sym_subscript_begin] = STATE(1145), + [sym_highlighted] = STATE(133), + [sym_highlighted_begin] = STATE(1146), + [sym_insert] = STATE(133), + [sym_insert_begin] = STATE(1147), + [sym_delete] = STATE(133), + [sym_delete_begin] = STATE(1148), + [sym_hard_line_break] = STATE(133), + [sym__smart_punctuation] = STATE(133), + [sym_autolink] = STATE(133), + [sym_footnote_reference] = STATE(133), + [sym_footnote_marker_begin] = STATE(1149), + [sym__image] = STATE(133), + [sym_full_reference_image] = STATE(133), + [sym_collapsed_reference_image] = STATE(133), + [sym_inline_image] = STATE(133), + [sym_image_description] = STATE(638), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(133), + [sym_full_reference_link] = STATE(133), + [sym_collapsed_reference_link] = STATE(133), + [sym_inline_link] = STATE(133), + [sym_link_text] = STATE(637), + [sym_span] = STATE(81), + [sym__bracketed_text_begin] = STATE(1188), + [sym__comment_with_spaces] = STATE(133), + [sym_raw_inline] = STATE(133), + [sym_math] = STATE(133), + [sym_verbatim] = STATE(133), + [sym__todo_highlights] = STATE(133), + [sym_todo] = STATE(133), + [sym_note] = STATE(133), + [sym__symbol_fallback] = STATE(133), + [aux_sym__text] = STATE(129), + [aux_sym__inline_repeat1] = STATE(81), + [anon_sym_LBRACE_] = ACTIONS(489), + [anon_sym__] = ACTIONS(491), + [anon_sym_LBRACE_STAR] = ACTIONS(493), + [anon_sym_STAR] = ACTIONS(495), + [anon_sym_LBRACE_CARET] = ACTIONS(497), + [anon_sym_CARET] = ACTIONS(497), + [anon_sym_LBRACE_TILDE] = ACTIONS(499), + [anon_sym_TILDE] = ACTIONS(499), + [anon_sym_LBRACE_EQ] = ACTIONS(501), + [anon_sym_LBRACE_PLUS] = ACTIONS(503), + [anon_sym_LBRACE_DASH] = ACTIONS(505), + [anon_sym_BSLASH] = ACTIONS(507), + [sym_quotation_marks] = ACTIONS(509), + [sym_ellipsis] = ACTIONS(509), + [sym_em_dash] = ACTIONS(509), + [sym_en_dash] = ACTIONS(511), + [sym_backslash_escape] = ACTIONS(511), + [anon_sym_LT] = ACTIONS(513), + [sym_symbol] = ACTIONS(509), + [anon_sym_LBRACK_CARET] = ACTIONS(515), + [anon_sym_BANG_LBRACK] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(519), + [anon_sym_LPAREN] = ACTIONS(521), + [anon_sym_DOLLAR] = ACTIONS(523), + [anon_sym_TODO] = ACTIONS(525), + [anon_sym_WIP] = ACTIONS(525), + [anon_sym_NOTE] = ACTIONS(527), + [anon_sym_INFO] = ACTIONS(527), + [anon_sym_XXX] = ACTIONS(527), + [sym_fixme] = ACTIONS(509), + [sym__whitespace1] = ACTIONS(529), + [sym__newline] = ACTIONS(713), + [aux_sym__text_token1] = ACTIONS(533), + [sym__verbatim_begin] = ACTIONS(535), + [sym_delete_end] = ACTIONS(367), }, [66] = { - [sym__inline] = STATE(937), - [sym__element] = STATE(7), - [sym_emphasis] = STATE(153), - [sym_emphasis_begin] = STATE(1208), - [sym_strong] = STATE(153), - [sym_strong_begin] = STATE(1209), - [sym_superscript] = STATE(153), - [sym_superscript_begin] = STATE(1210), - [sym_subscript] = STATE(153), - [sym_subscript_begin] = STATE(1211), - [sym_highlighted] = STATE(153), - [sym_highlighted_begin] = STATE(1212), - [sym_insert] = STATE(153), - [sym_insert_begin] = STATE(1213), - [sym_delete] = STATE(153), - [sym_delete_begin] = STATE(1214), - [sym_hard_line_break] = STATE(153), - [sym__smart_punctuation] = STATE(153), - [sym_autolink] = STATE(153), - [sym_footnote_reference] = STATE(153), - [sym_footnote_marker_begin] = STATE(1215), - [sym__image] = STATE(153), - [sym_full_reference_image] = STATE(153), - [sym_collapsed_reference_image] = STATE(153), - [sym_inline_image] = STATE(153), - [sym_image_description] = STATE(707), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(153), - [sym_full_reference_link] = STATE(153), - [sym_collapsed_reference_link] = STATE(153), - [sym_inline_link] = STATE(153), - [sym_link_text] = STATE(705), - [sym_span] = STATE(7), - [sym__bracketed_text_begin] = STATE(1267), - [sym__comment_with_spaces] = STATE(153), - [sym_raw_inline] = STATE(153), - [sym_math] = STATE(153), - [sym_verbatim] = STATE(153), - [sym__todo_highlights] = STATE(153), - [sym_todo] = STATE(153), - [sym_note] = STATE(153), - [sym__symbol_fallback] = STATE(153), - [aux_sym__text] = STATE(134), - [aux_sym__inline_repeat1] = STATE(7), - [anon_sym_LBRACE_] = ACTIONS(97), - [anon_sym__] = ACTIONS(99), - [anon_sym_LBRACE_STAR] = ACTIONS(101), - [anon_sym_STAR] = ACTIONS(103), - [anon_sym_LBRACE_CARET] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [anon_sym_LBRACE_TILDE] = ACTIONS(107), - [anon_sym_TILDE] = ACTIONS(107), - [anon_sym_LBRACE_EQ] = ACTIONS(109), - [anon_sym_LBRACE_PLUS] = ACTIONS(111), - [anon_sym_LBRACE_DASH] = ACTIONS(113), - [anon_sym_BSLASH] = ACTIONS(115), - [sym_quotation_marks] = ACTIONS(117), - [sym_ellipsis] = ACTIONS(117), - [sym_em_dash] = ACTIONS(117), - [sym_en_dash] = ACTIONS(119), - [sym_backslash_escape] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [sym_symbol] = ACTIONS(117), - [anon_sym_LBRACK_CARET] = ACTIONS(123), - [anon_sym_BANG_LBRACK] = ACTIONS(125), - [anon_sym_LBRACK] = ACTIONS(127), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_TODO] = ACTIONS(131), - [anon_sym_WIP] = ACTIONS(131), - [anon_sym_NOTE] = ACTIONS(133), - [anon_sym_INFO] = ACTIONS(133), - [anon_sym_XXX] = ACTIONS(133), - [sym_fixme] = ACTIONS(117), - [sym__whitespace1] = ACTIONS(135), - [sym__newline] = ACTIONS(137), - [aux_sym__text_token1] = ACTIONS(139), - [sym__verbatim_begin] = ACTIONS(141), + [sym__inline] = STATE(924), + [sym__element] = STATE(22), + [sym_emphasis] = STATE(137), + [sym_emphasis_begin] = STATE(1112), + [sym_strong] = STATE(137), + [sym_strong_begin] = STATE(1113), + [sym_superscript] = STATE(137), + [sym_superscript_begin] = STATE(1114), + [sym_subscript] = STATE(137), + [sym_subscript_begin] = STATE(1115), + [sym_highlighted] = STATE(137), + [sym_highlighted_begin] = STATE(1116), + [sym_insert] = STATE(137), + [sym_insert_begin] = STATE(1117), + [sym_delete] = STATE(137), + [sym_delete_begin] = STATE(1118), + [sym_hard_line_break] = STATE(137), + [sym__smart_punctuation] = STATE(137), + [sym_autolink] = STATE(137), + [sym_footnote_reference] = STATE(137), + [sym_footnote_marker_begin] = STATE(1119), + [sym__image] = STATE(137), + [sym_full_reference_image] = STATE(137), + [sym_collapsed_reference_image] = STATE(137), + [sym_inline_image] = STATE(137), + [sym_image_description] = STATE(636), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(137), + [sym_full_reference_link] = STATE(137), + [sym_collapsed_reference_link] = STATE(137), + [sym_inline_link] = STATE(137), + [sym_link_text] = STATE(647), + [sym_span] = STATE(22), + [sym__bracketed_text_begin] = STATE(1185), + [sym__comment_with_spaces] = STATE(137), + [sym_raw_inline] = STATE(137), + [sym_math] = STATE(137), + [sym_verbatim] = STATE(137), + [sym__todo_highlights] = STATE(137), + [sym_todo] = STATE(137), + [sym_note] = STATE(137), + [sym__symbol_fallback] = STATE(137), + [aux_sym__text] = STATE(122), + [aux_sym__inline_repeat1] = STATE(22), + [anon_sym_LBRACE_] = ACTIONS(197), + [anon_sym__] = ACTIONS(199), + [anon_sym_LBRACE_STAR] = ACTIONS(201), + [anon_sym_STAR] = ACTIONS(203), + [anon_sym_LBRACE_CARET] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(205), + [anon_sym_LBRACE_TILDE] = ACTIONS(207), + [anon_sym_TILDE] = ACTIONS(207), + [anon_sym_LBRACE_EQ] = ACTIONS(209), + [anon_sym_LBRACE_PLUS] = ACTIONS(211), + [anon_sym_LBRACE_DASH] = ACTIONS(213), + [anon_sym_BSLASH] = ACTIONS(215), + [sym_quotation_marks] = ACTIONS(217), + [sym_ellipsis] = ACTIONS(217), + [sym_em_dash] = ACTIONS(217), + [sym_en_dash] = ACTIONS(219), + [sym_backslash_escape] = ACTIONS(219), + [anon_sym_LT] = ACTIONS(221), + [sym_symbol] = ACTIONS(217), + [anon_sym_LBRACK_CARET] = ACTIONS(223), + [anon_sym_BANG_LBRACK] = ACTIONS(225), + [anon_sym_LBRACK] = ACTIONS(227), + [anon_sym_LPAREN] = ACTIONS(229), + [anon_sym_DOLLAR] = ACTIONS(231), + [anon_sym_TODO] = ACTIONS(233), + [anon_sym_WIP] = ACTIONS(233), + [anon_sym_NOTE] = ACTIONS(235), + [anon_sym_INFO] = ACTIONS(235), + [anon_sym_XXX] = ACTIONS(235), + [sym_fixme] = ACTIONS(217), + [sym__whitespace1] = ACTIONS(237), + [sym__newline] = ACTIONS(239), + [aux_sym__text_token1] = ACTIONS(241), + [sym__verbatim_begin] = ACTIONS(243), }, [67] = { - [sym__inline] = STATE(1090), - [sym__element] = STATE(121), - [sym_emphasis] = STATE(154), - [sym_emphasis_begin] = STATE(1244), - [sym_strong] = STATE(154), - [sym_strong_begin] = STATE(1245), - [sym_superscript] = STATE(154), - [sym_superscript_begin] = STATE(1246), - [sym_subscript] = STATE(154), - [sym_subscript_begin] = STATE(1247), - [sym_highlighted] = STATE(154), - [sym_highlighted_begin] = STATE(1248), - [sym_insert] = STATE(154), - [sym_insert_begin] = STATE(1249), - [sym_delete] = STATE(154), - [sym_delete_begin] = STATE(1250), - [sym_hard_line_break] = STATE(154), - [sym__smart_punctuation] = STATE(154), - [sym_autolink] = STATE(154), - [sym_footnote_reference] = STATE(154), - [sym_footnote_marker_begin] = STATE(1251), - [sym__image] = STATE(154), - [sym_full_reference_image] = STATE(154), - [sym_collapsed_reference_image] = STATE(154), - [sym_inline_image] = STATE(154), - [sym_image_description] = STATE(686), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(154), - [sym_full_reference_link] = STATE(154), - [sym_collapsed_reference_link] = STATE(154), - [sym_inline_link] = STATE(154), - [sym_link_text] = STATE(687), - [sym_span] = STATE(121), - [sym__bracketed_text_begin] = STATE(1271), - [sym__comment_with_spaces] = STATE(154), - [sym_raw_inline] = STATE(154), - [sym_math] = STATE(154), - [sym_verbatim] = STATE(154), - [sym__todo_highlights] = STATE(154), - [sym_todo] = STATE(154), - [sym_note] = STATE(154), - [sym__symbol_fallback] = STATE(154), - [aux_sym__text] = STATE(137), - [aux_sym__inline_repeat1] = STATE(121), - [anon_sym_LBRACE_] = ACTIONS(235), - [anon_sym__] = ACTIONS(237), - [anon_sym_LBRACE_STAR] = ACTIONS(239), - [anon_sym_STAR] = ACTIONS(241), - [anon_sym_LBRACE_CARET] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(243), - [anon_sym_LBRACE_TILDE] = ACTIONS(245), - [anon_sym_TILDE] = ACTIONS(245), - [anon_sym_LBRACE_EQ] = ACTIONS(247), - [anon_sym_LBRACE_PLUS] = ACTIONS(249), - [anon_sym_LBRACE_DASH] = ACTIONS(251), - [anon_sym_BSLASH] = ACTIONS(253), - [sym_quotation_marks] = ACTIONS(255), - [sym_ellipsis] = ACTIONS(255), - [sym_em_dash] = ACTIONS(255), - [sym_en_dash] = ACTIONS(257), - [sym_backslash_escape] = ACTIONS(257), - [anon_sym_LT] = ACTIONS(259), - [sym_symbol] = ACTIONS(255), - [anon_sym_LBRACK_CARET] = ACTIONS(261), - [anon_sym_BANG_LBRACK] = ACTIONS(263), - [anon_sym_LBRACK] = ACTIONS(265), - [anon_sym_DOLLAR] = ACTIONS(267), - [anon_sym_TODO] = ACTIONS(269), - [anon_sym_WIP] = ACTIONS(269), - [anon_sym_NOTE] = ACTIONS(271), - [anon_sym_INFO] = ACTIONS(271), - [anon_sym_XXX] = ACTIONS(271), - [sym_fixme] = ACTIONS(255), - [sym__whitespace1] = ACTIONS(273), - [sym__newline] = ACTIONS(275), - [aux_sym__text_token1] = ACTIONS(277), - [sym__verbatim_begin] = ACTIONS(279), + [sym__inline] = STATE(888), + [sym__element] = STATE(14), + [sym_emphasis] = STATE(136), + [sym_emphasis_begin] = STATE(1122), + [sym_strong] = STATE(136), + [sym_strong_begin] = STATE(1123), + [sym_superscript] = STATE(136), + [sym_superscript_begin] = STATE(1124), + [sym_subscript] = STATE(136), + [sym_subscript_begin] = STATE(1125), + [sym_highlighted] = STATE(136), + [sym_highlighted_begin] = STATE(1126), + [sym_insert] = STATE(136), + [sym_insert_begin] = STATE(1127), + [sym_delete] = STATE(136), + [sym_delete_begin] = STATE(1128), + [sym_hard_line_break] = STATE(136), + [sym__smart_punctuation] = STATE(136), + [sym_autolink] = STATE(136), + [sym_footnote_reference] = STATE(136), + [sym_footnote_marker_begin] = STATE(1129), + [sym__image] = STATE(136), + [sym_full_reference_image] = STATE(136), + [sym_collapsed_reference_image] = STATE(136), + [sym_inline_image] = STATE(136), + [sym_image_description] = STATE(651), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(136), + [sym_full_reference_link] = STATE(136), + [sym_collapsed_reference_link] = STATE(136), + [sym_inline_link] = STATE(136), + [sym_link_text] = STATE(650), + [sym_span] = STATE(14), + [sym__bracketed_text_begin] = STATE(1186), + [sym__comment_with_spaces] = STATE(136), + [sym_raw_inline] = STATE(136), + [sym_math] = STATE(136), + [sym_verbatim] = STATE(136), + [sym__todo_highlights] = STATE(136), + [sym_todo] = STATE(136), + [sym_note] = STATE(136), + [sym__symbol_fallback] = STATE(136), + [aux_sym__text] = STATE(130), + [aux_sym__inline_repeat1] = STATE(14), + [anon_sym_LBRACE_] = ACTIONS(319), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_STAR] = ACTIONS(323), + [anon_sym_STAR] = ACTIONS(325), + [anon_sym_LBRACE_CARET] = ACTIONS(327), + [anon_sym_CARET] = ACTIONS(327), + [anon_sym_LBRACE_TILDE] = ACTIONS(329), + [anon_sym_TILDE] = ACTIONS(329), + [anon_sym_LBRACE_EQ] = ACTIONS(331), + [anon_sym_LBRACE_PLUS] = ACTIONS(333), + [anon_sym_LBRACE_DASH] = ACTIONS(335), + [anon_sym_BSLASH] = ACTIONS(337), + [sym_quotation_marks] = ACTIONS(339), + [sym_ellipsis] = ACTIONS(339), + [sym_em_dash] = ACTIONS(339), + [sym_en_dash] = ACTIONS(341), + [sym_backslash_escape] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [sym_symbol] = ACTIONS(339), + [anon_sym_LBRACK_CARET] = ACTIONS(345), + [anon_sym_BANG_LBRACK] = ACTIONS(347), + [anon_sym_LBRACK] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_DOLLAR] = ACTIONS(353), + [anon_sym_TODO] = ACTIONS(355), + [anon_sym_WIP] = ACTIONS(355), + [anon_sym_NOTE] = ACTIONS(357), + [anon_sym_INFO] = ACTIONS(357), + [anon_sym_XXX] = ACTIONS(357), + [sym_fixme] = ACTIONS(339), + [sym__whitespace1] = ACTIONS(359), + [sym__newline] = ACTIONS(635), + [aux_sym__text_token1] = ACTIONS(363), + [sym__verbatim_begin] = ACTIONS(365), }, [68] = { - [sym__element] = STATE(68), - [sym_emphasis] = STATE(145), - [sym_emphasis_begin] = STATE(1190), - [sym_strong] = STATE(145), - [sym_strong_begin] = STATE(1191), - [sym_superscript] = STATE(145), - [sym_superscript_begin] = STATE(1192), - [sym_subscript] = STATE(145), - [sym_subscript_begin] = STATE(1193), - [sym_highlighted] = STATE(145), - [sym_highlighted_begin] = STATE(1194), - [sym_insert] = STATE(145), - [sym_insert_begin] = STATE(1195), - [sym_delete] = STATE(145), - [sym_delete_begin] = STATE(1196), - [sym_hard_line_break] = STATE(145), - [sym__smart_punctuation] = STATE(145), - [sym_autolink] = STATE(145), - [sym_footnote_reference] = STATE(145), - [sym_footnote_marker_begin] = STATE(1197), - [sym__image] = STATE(145), - [sym_full_reference_image] = STATE(145), - [sym_collapsed_reference_image] = STATE(145), - [sym_inline_image] = STATE(145), - [sym_image_description] = STATE(696), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(145), - [sym_full_reference_link] = STATE(145), - [sym_collapsed_reference_link] = STATE(145), - [sym_inline_link] = STATE(145), - [sym_link_text] = STATE(691), - [sym_span] = STATE(68), - [sym__bracketed_text_begin] = STATE(1265), - [sym__comment_with_spaces] = STATE(145), - [sym_raw_inline] = STATE(145), - [sym_math] = STATE(145), - [sym_verbatim] = STATE(145), - [sym__todo_highlights] = STATE(145), - [sym_todo] = STATE(145), - [sym_note] = STATE(145), - [sym__symbol_fallback] = STATE(145), - [aux_sym__text] = STATE(138), - [aux_sym__inline_repeat1] = STATE(68), - [anon_sym_LBRACE_] = ACTIONS(661), - [anon_sym__] = ACTIONS(664), - [anon_sym_LBRACE_STAR] = ACTIONS(667), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE_CARET] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_LBRACE_TILDE] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(676), - [anon_sym_LBRACE_EQ] = ACTIONS(679), - [anon_sym_LBRACE_PLUS] = ACTIONS(682), - [anon_sym_LBRACE_DASH] = ACTIONS(685), - [anon_sym_BSLASH] = ACTIONS(688), - [sym_quotation_marks] = ACTIONS(691), - [sym_ellipsis] = ACTIONS(691), - [sym_em_dash] = ACTIONS(691), - [sym_en_dash] = ACTIONS(694), - [sym_backslash_escape] = ACTIONS(694), - [anon_sym_LT] = ACTIONS(697), - [sym_symbol] = ACTIONS(691), - [anon_sym_LBRACK_CARET] = ACTIONS(700), - [anon_sym_BANG_LBRACK] = ACTIONS(703), - [anon_sym_LBRACK] = ACTIONS(706), - [anon_sym_DOLLAR] = ACTIONS(709), - [anon_sym_TODO] = ACTIONS(712), - [anon_sym_WIP] = ACTIONS(712), - [anon_sym_NOTE] = ACTIONS(715), - [anon_sym_INFO] = ACTIONS(715), - [anon_sym_XXX] = ACTIONS(715), - [sym_fixme] = ACTIONS(691), - [sym__whitespace1] = ACTIONS(718), - [sym__newline] = ACTIONS(721), - [aux_sym__text_token1] = ACTIONS(724), - [sym__verbatim_begin] = ACTIONS(727), - [sym_subscript_end] = ACTIONS(354), + [sym__inline] = STATE(1007), + [sym__element] = STATE(107), + [sym_emphasis] = STATE(140), + [sym_emphasis_begin] = STATE(1162), + [sym_strong] = STATE(140), + [sym_strong_begin] = STATE(1163), + [sym_superscript] = STATE(140), + [sym_superscript_begin] = STATE(1164), + [sym_subscript] = STATE(140), + [sym_subscript_begin] = STATE(1165), + [sym_highlighted] = STATE(140), + [sym_highlighted_begin] = STATE(1166), + [sym_insert] = STATE(140), + [sym_insert_begin] = STATE(1167), + [sym_delete] = STATE(140), + [sym_delete_begin] = STATE(1168), + [sym_hard_line_break] = STATE(140), + [sym__smart_punctuation] = STATE(140), + [sym_autolink] = STATE(140), + [sym_footnote_reference] = STATE(140), + [sym_footnote_marker_begin] = STATE(1169), + [sym__image] = STATE(140), + [sym_full_reference_image] = STATE(140), + [sym_collapsed_reference_image] = STATE(140), + [sym_inline_image] = STATE(140), + [sym_image_description] = STATE(625), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(140), + [sym_full_reference_link] = STATE(140), + [sym_collapsed_reference_link] = STATE(140), + [sym_inline_link] = STATE(140), + [sym_link_text] = STATE(624), + [sym_span] = STATE(107), + [sym__bracketed_text_begin] = STATE(1190), + [sym__comment_with_spaces] = STATE(140), + [sym_raw_inline] = STATE(140), + [sym_math] = STATE(140), + [sym_verbatim] = STATE(140), + [sym__todo_highlights] = STATE(140), + [sym_todo] = STATE(140), + [sym_note] = STATE(140), + [sym__symbol_fallback] = STATE(140), + [aux_sym__text] = STATE(124), + [aux_sym__inline_repeat1] = STATE(107), + [anon_sym_LBRACE_] = ACTIONS(51), + [anon_sym__] = ACTIONS(53), + [anon_sym_LBRACE_STAR] = ACTIONS(55), + [anon_sym_STAR] = ACTIONS(57), + [anon_sym_LBRACE_CARET] = ACTIONS(59), + [anon_sym_CARET] = ACTIONS(59), + [anon_sym_LBRACE_TILDE] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(61), + [anon_sym_LBRACE_EQ] = ACTIONS(63), + [anon_sym_LBRACE_PLUS] = ACTIONS(65), + [anon_sym_LBRACE_DASH] = ACTIONS(67), + [anon_sym_BSLASH] = ACTIONS(69), + [sym_quotation_marks] = ACTIONS(71), + [sym_ellipsis] = ACTIONS(71), + [sym_em_dash] = ACTIONS(71), + [sym_en_dash] = ACTIONS(73), + [sym_backslash_escape] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(75), + [sym_symbol] = ACTIONS(71), + [anon_sym_LBRACK_CARET] = ACTIONS(77), + [anon_sym_BANG_LBRACK] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(85), + [anon_sym_TODO] = ACTIONS(87), + [anon_sym_WIP] = ACTIONS(87), + [anon_sym_NOTE] = ACTIONS(89), + [anon_sym_INFO] = ACTIONS(89), + [anon_sym_XXX] = ACTIONS(89), + [sym_fixme] = ACTIONS(71), + [sym__whitespace1] = ACTIONS(91), + [sym__newline] = ACTIONS(93), + [aux_sym__text_token1] = ACTIONS(95), + [sym__verbatim_begin] = ACTIONS(97), }, [69] = { [sym__element] = STATE(69), - [sym_emphasis] = STATE(150), - [sym_emphasis_begin] = STATE(1156), - [sym_strong] = STATE(150), - [sym_strong_begin] = STATE(1155), - [sym_superscript] = STATE(150), - [sym_superscript_begin] = STATE(1154), - [sym_subscript] = STATE(150), - [sym_subscript_begin] = STATE(1153), - [sym_highlighted] = STATE(150), - [sym_highlighted_begin] = STATE(1152), - [sym_insert] = STATE(150), - [sym_insert_begin] = STATE(1151), - [sym_delete] = STATE(150), - [sym_delete_begin] = STATE(1143), - [sym_hard_line_break] = STATE(150), - [sym__smart_punctuation] = STATE(150), - [sym_autolink] = STATE(150), - [sym_footnote_reference] = STATE(150), - [sym_footnote_marker_begin] = STATE(1141), - [sym__image] = STATE(150), - [sym_full_reference_image] = STATE(150), - [sym_collapsed_reference_image] = STATE(150), - [sym_inline_image] = STATE(150), - [sym_image_description] = STATE(690), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(150), - [sym_full_reference_link] = STATE(150), - [sym_collapsed_reference_link] = STATE(150), - [sym_inline_link] = STATE(150), - [sym_link_text] = STATE(688), + [sym_emphasis] = STATE(131), + [sym_emphasis_begin] = STATE(1132), + [sym_strong] = STATE(131), + [sym_strong_begin] = STATE(1133), + [sym_superscript] = STATE(131), + [sym_superscript_begin] = STATE(1134), + [sym_subscript] = STATE(131), + [sym_subscript_begin] = STATE(1135), + [sym_highlighted] = STATE(131), + [sym_highlighted_begin] = STATE(1136), + [sym_insert] = STATE(131), + [sym_insert_begin] = STATE(1137), + [sym_delete] = STATE(131), + [sym_delete_begin] = STATE(1138), + [sym_hard_line_break] = STATE(131), + [sym__smart_punctuation] = STATE(131), + [sym_autolink] = STATE(131), + [sym_footnote_reference] = STATE(131), + [sym_footnote_marker_begin] = STATE(1139), + [sym__image] = STATE(131), + [sym_full_reference_image] = STATE(131), + [sym_collapsed_reference_image] = STATE(131), + [sym_inline_image] = STATE(131), + [sym_image_description] = STATE(643), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(131), + [sym_full_reference_link] = STATE(131), + [sym_collapsed_reference_link] = STATE(131), + [sym_inline_link] = STATE(131), + [sym_link_text] = STATE(619), [sym_span] = STATE(69), - [sym__bracketed_text_begin] = STATE(1139), - [sym__comment_with_spaces] = STATE(150), - [sym_raw_inline] = STATE(150), - [sym_math] = STATE(150), - [sym_verbatim] = STATE(150), - [sym__todo_highlights] = STATE(150), - [sym_todo] = STATE(150), - [sym_note] = STATE(150), - [sym__symbol_fallback] = STATE(150), - [aux_sym__text] = STATE(139), + [sym__bracketed_text_begin] = STATE(1187), + [sym__comment_with_spaces] = STATE(131), + [sym_raw_inline] = STATE(131), + [sym_math] = STATE(131), + [sym_verbatim] = STATE(131), + [sym__todo_highlights] = STATE(131), + [sym_todo] = STATE(131), + [sym_note] = STATE(131), + [sym__symbol_fallback] = STATE(131), + [aux_sym__text] = STATE(123), [aux_sym__inline_repeat1] = STATE(69), - [ts_builtin_sym_end] = ACTIONS(354), - [anon_sym_LBRACE_] = ACTIONS(730), - [anon_sym__] = ACTIONS(733), - [anon_sym_LBRACE_STAR] = ACTIONS(736), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_LBRACE_CARET] = ACTIONS(742), - [anon_sym_CARET] = ACTIONS(742), - [anon_sym_LBRACE_TILDE] = ACTIONS(745), - [anon_sym_TILDE] = ACTIONS(745), - [anon_sym_LBRACE_EQ] = ACTIONS(748), - [anon_sym_LBRACE_PLUS] = ACTIONS(751), - [anon_sym_LBRACE_DASH] = ACTIONS(754), - [anon_sym_BSLASH] = ACTIONS(757), - [sym_quotation_marks] = ACTIONS(760), - [sym_ellipsis] = ACTIONS(760), - [sym_em_dash] = ACTIONS(760), - [sym_en_dash] = ACTIONS(763), - [sym_backslash_escape] = ACTIONS(763), - [anon_sym_LT] = ACTIONS(766), - [sym_symbol] = ACTIONS(760), - [anon_sym_LBRACK_CARET] = ACTIONS(769), - [anon_sym_BANG_LBRACK] = ACTIONS(772), - [anon_sym_LBRACK] = ACTIONS(775), - [anon_sym_DOLLAR] = ACTIONS(778), - [anon_sym_TODO] = ACTIONS(781), - [anon_sym_WIP] = ACTIONS(781), - [anon_sym_NOTE] = ACTIONS(784), - [anon_sym_INFO] = ACTIONS(784), - [anon_sym_XXX] = ACTIONS(784), - [sym_fixme] = ACTIONS(760), - [sym__whitespace1] = ACTIONS(787), - [sym__newline] = ACTIONS(790), - [aux_sym__text_token1] = ACTIONS(793), - [sym__verbatim_begin] = ACTIONS(796), + [anon_sym_LBRACE_] = ACTIONS(715), + [anon_sym__] = ACTIONS(718), + [anon_sym_LBRACE_STAR] = ACTIONS(721), + [anon_sym_STAR] = ACTIONS(724), + [anon_sym_LBRACE_CARET] = ACTIONS(727), + [anon_sym_CARET] = ACTIONS(727), + [anon_sym_LBRACE_TILDE] = ACTIONS(730), + [anon_sym_TILDE] = ACTIONS(730), + [anon_sym_LBRACE_EQ] = ACTIONS(733), + [anon_sym_LBRACE_PLUS] = ACTIONS(736), + [anon_sym_LBRACE_DASH] = ACTIONS(739), + [anon_sym_BSLASH] = ACTIONS(742), + [sym_quotation_marks] = ACTIONS(745), + [sym_ellipsis] = ACTIONS(745), + [sym_em_dash] = ACTIONS(745), + [sym_en_dash] = ACTIONS(748), + [sym_backslash_escape] = ACTIONS(748), + [anon_sym_LT] = ACTIONS(751), + [sym_symbol] = ACTIONS(745), + [anon_sym_LBRACK_CARET] = ACTIONS(754), + [anon_sym_BANG_LBRACK] = ACTIONS(757), + [anon_sym_LBRACK] = ACTIONS(760), + [anon_sym_LPAREN] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(766), + [anon_sym_TODO] = ACTIONS(769), + [anon_sym_WIP] = ACTIONS(769), + [anon_sym_NOTE] = ACTIONS(772), + [anon_sym_INFO] = ACTIONS(772), + [anon_sym_XXX] = ACTIONS(772), + [sym_fixme] = ACTIONS(745), + [sym__whitespace1] = ACTIONS(775), + [sym__newline] = ACTIONS(778), + [aux_sym__text_token1] = ACTIONS(781), + [sym__verbatim_begin] = ACTIONS(784), + [sym_insert_end] = ACTIONS(317), }, [70] = { [sym__element] = STATE(70), - [sym_emphasis] = STATE(153), - [sym_emphasis_begin] = STATE(1208), - [sym_strong] = STATE(153), - [sym_strong_begin] = STATE(1209), - [sym_superscript] = STATE(153), - [sym_superscript_begin] = STATE(1210), - [sym_subscript] = STATE(153), - [sym_subscript_begin] = STATE(1211), - [sym_highlighted] = STATE(153), - [sym_highlighted_begin] = STATE(1212), - [sym_insert] = STATE(153), - [sym_insert_begin] = STATE(1213), - [sym_delete] = STATE(153), - [sym_delete_begin] = STATE(1214), - [sym_hard_line_break] = STATE(153), - [sym__smart_punctuation] = STATE(153), - [sym_autolink] = STATE(153), - [sym_footnote_reference] = STATE(153), - [sym_footnote_marker_begin] = STATE(1215), - [sym__image] = STATE(153), - [sym_full_reference_image] = STATE(153), - [sym_collapsed_reference_image] = STATE(153), - [sym_inline_image] = STATE(153), - [sym_image_description] = STATE(707), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(153), - [sym_full_reference_link] = STATE(153), - [sym_collapsed_reference_link] = STATE(153), - [sym_inline_link] = STATE(153), - [sym_link_text] = STATE(705), + [sym_emphasis] = STATE(135), + [sym_emphasis_begin] = STATE(1073), + [sym_strong] = STATE(135), + [sym_strong_begin] = STATE(1072), + [sym_superscript] = STATE(135), + [sym_superscript_begin] = STATE(1071), + [sym_subscript] = STATE(135), + [sym_subscript_begin] = STATE(1070), + [sym_highlighted] = STATE(135), + [sym_highlighted_begin] = STATE(1062), + [sym_insert] = STATE(135), + [sym_insert_begin] = STATE(1060), + [sym_delete] = STATE(135), + [sym_delete_begin] = STATE(1059), + [sym_hard_line_break] = STATE(135), + [sym__smart_punctuation] = STATE(135), + [sym_autolink] = STATE(135), + [sym_footnote_reference] = STATE(135), + [sym_footnote_marker_begin] = STATE(1058), + [sym__image] = STATE(135), + [sym_full_reference_image] = STATE(135), + [sym_collapsed_reference_image] = STATE(135), + [sym_inline_image] = STATE(135), + [sym_image_description] = STATE(620), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(135), + [sym_full_reference_link] = STATE(135), + [sym_collapsed_reference_link] = STATE(135), + [sym_inline_link] = STATE(135), + [sym_link_text] = STATE(644), [sym_span] = STATE(70), - [sym__bracketed_text_begin] = STATE(1267), - [sym__comment_with_spaces] = STATE(153), - [sym_raw_inline] = STATE(153), - [sym_math] = STATE(153), - [sym_verbatim] = STATE(153), - [sym__todo_highlights] = STATE(153), - [sym_todo] = STATE(153), - [sym_note] = STATE(153), - [sym__symbol_fallback] = STATE(153), - [aux_sym__text] = STATE(134), + [sym__bracketed_text_begin] = STATE(1056), + [sym__comment_with_spaces] = STATE(135), + [sym_raw_inline] = STATE(135), + [sym_math] = STATE(135), + [sym_verbatim] = STATE(135), + [sym__todo_highlights] = STATE(135), + [sym_todo] = STATE(135), + [sym_note] = STATE(135), + [sym__symbol_fallback] = STATE(135), + [aux_sym__text] = STATE(121), [aux_sym__inline_repeat1] = STATE(70), - [anon_sym_LBRACE_] = ACTIONS(799), - [anon_sym__] = ACTIONS(802), - [anon_sym_LBRACE_STAR] = ACTIONS(805), - [anon_sym_STAR] = ACTIONS(808), - [anon_sym_LBRACE_CARET] = ACTIONS(811), - [anon_sym_CARET] = ACTIONS(811), - [anon_sym_LBRACE_TILDE] = ACTIONS(814), - [anon_sym_TILDE] = ACTIONS(814), - [anon_sym_LBRACE_EQ] = ACTIONS(817), - [anon_sym_LBRACE_PLUS] = ACTIONS(820), - [anon_sym_LBRACE_DASH] = ACTIONS(823), - [anon_sym_BSLASH] = ACTIONS(826), - [sym_quotation_marks] = ACTIONS(829), - [sym_ellipsis] = ACTIONS(829), - [sym_em_dash] = ACTIONS(829), - [sym_en_dash] = ACTIONS(832), - [sym_backslash_escape] = ACTIONS(832), - [anon_sym_LT] = ACTIONS(835), - [sym_symbol] = ACTIONS(829), - [anon_sym_LBRACK_CARET] = ACTIONS(838), - [anon_sym_BANG_LBRACK] = ACTIONS(841), - [anon_sym_LBRACK] = ACTIONS(844), - [anon_sym_DOLLAR] = ACTIONS(847), - [anon_sym_TODO] = ACTIONS(850), - [anon_sym_WIP] = ACTIONS(850), - [anon_sym_NOTE] = ACTIONS(853), - [anon_sym_INFO] = ACTIONS(853), - [anon_sym_XXX] = ACTIONS(853), - [sym_fixme] = ACTIONS(829), - [sym__whitespace1] = ACTIONS(856), - [sym__newline] = ACTIONS(859), - [aux_sym__text_token1] = ACTIONS(862), - [sym__verbatim_begin] = ACTIONS(865), - [sym_insert_end] = ACTIONS(354), + [ts_builtin_sym_end] = ACTIONS(317), + [anon_sym_LBRACE_] = ACTIONS(787), + [anon_sym__] = ACTIONS(790), + [anon_sym_LBRACE_STAR] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(796), + [anon_sym_LBRACE_CARET] = ACTIONS(799), + [anon_sym_CARET] = ACTIONS(799), + [anon_sym_LBRACE_TILDE] = ACTIONS(802), + [anon_sym_TILDE] = ACTIONS(802), + [anon_sym_LBRACE_EQ] = ACTIONS(805), + [anon_sym_LBRACE_PLUS] = ACTIONS(808), + [anon_sym_LBRACE_DASH] = ACTIONS(811), + [anon_sym_BSLASH] = ACTIONS(814), + [sym_quotation_marks] = ACTIONS(817), + [sym_ellipsis] = ACTIONS(817), + [sym_em_dash] = ACTIONS(817), + [sym_en_dash] = ACTIONS(820), + [sym_backslash_escape] = ACTIONS(820), + [anon_sym_LT] = ACTIONS(823), + [sym_symbol] = ACTIONS(817), + [anon_sym_LBRACK_CARET] = ACTIONS(826), + [anon_sym_BANG_LBRACK] = ACTIONS(829), + [anon_sym_LBRACK] = ACTIONS(832), + [anon_sym_LPAREN] = ACTIONS(835), + [anon_sym_DOLLAR] = ACTIONS(838), + [anon_sym_TODO] = ACTIONS(841), + [anon_sym_WIP] = ACTIONS(841), + [anon_sym_NOTE] = ACTIONS(844), + [anon_sym_INFO] = ACTIONS(844), + [anon_sym_XXX] = ACTIONS(844), + [sym_fixme] = ACTIONS(817), + [sym__whitespace1] = ACTIONS(847), + [sym__newline] = ACTIONS(850), + [aux_sym__text_token1] = ACTIONS(853), + [sym__verbatim_begin] = ACTIONS(856), }, [71] = { - [sym__inline] = STATE(932), - [sym__element] = STATE(46), - [sym_emphasis] = STATE(147), - [sym_emphasis_begin] = STATE(1217), - [sym_strong] = STATE(147), - [sym_strong_begin] = STATE(1218), - [sym_superscript] = STATE(147), - [sym_superscript_begin] = STATE(1219), - [sym_subscript] = STATE(147), - [sym_subscript_begin] = STATE(1220), - [sym_highlighted] = STATE(147), - [sym_highlighted_begin] = STATE(1221), - [sym_insert] = STATE(147), - [sym_insert_begin] = STATE(1222), - [sym_delete] = STATE(147), - [sym_delete_begin] = STATE(1223), - [sym_hard_line_break] = STATE(147), - [sym__smart_punctuation] = STATE(147), - [sym_autolink] = STATE(147), - [sym_footnote_reference] = STATE(147), - [sym_footnote_marker_begin] = STATE(1224), - [sym__image] = STATE(147), - [sym_full_reference_image] = STATE(147), - [sym_collapsed_reference_image] = STATE(147), - [sym_inline_image] = STATE(147), - [sym_image_description] = STATE(699), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(147), - [sym_full_reference_link] = STATE(147), - [sym_collapsed_reference_link] = STATE(147), - [sym_inline_link] = STATE(147), - [sym_link_text] = STATE(698), - [sym_span] = STATE(46), - [sym__bracketed_text_begin] = STATE(1268), - [sym__comment_with_spaces] = STATE(147), - [sym_raw_inline] = STATE(147), - [sym_math] = STATE(147), - [sym_verbatim] = STATE(147), - [sym__todo_highlights] = STATE(147), - [sym_todo] = STATE(147), - [sym_note] = STATE(147), - [sym__symbol_fallback] = STATE(147), - [aux_sym__text] = STATE(132), - [aux_sym__inline_repeat1] = STATE(46), - [anon_sym_LBRACE_] = ACTIONS(189), - [anon_sym__] = ACTIONS(191), - [anon_sym_LBRACE_STAR] = ACTIONS(193), - [anon_sym_STAR] = ACTIONS(195), - [anon_sym_LBRACE_CARET] = ACTIONS(197), - [anon_sym_CARET] = ACTIONS(197), - [anon_sym_LBRACE_TILDE] = ACTIONS(199), - [anon_sym_TILDE] = ACTIONS(199), - [anon_sym_LBRACE_EQ] = ACTIONS(201), - [anon_sym_LBRACE_PLUS] = ACTIONS(203), - [anon_sym_LBRACE_DASH] = ACTIONS(205), - [anon_sym_BSLASH] = ACTIONS(207), - [sym_quotation_marks] = ACTIONS(209), - [sym_ellipsis] = ACTIONS(209), - [sym_em_dash] = ACTIONS(209), - [sym_en_dash] = ACTIONS(211), - [sym_backslash_escape] = ACTIONS(211), - [anon_sym_LT] = ACTIONS(213), - [sym_symbol] = ACTIONS(209), - [anon_sym_LBRACK_CARET] = ACTIONS(215), - [anon_sym_BANG_LBRACK] = ACTIONS(217), - [anon_sym_LBRACK] = ACTIONS(219), - [anon_sym_DOLLAR] = ACTIONS(221), - [anon_sym_TODO] = ACTIONS(223), - [anon_sym_WIP] = ACTIONS(223), - [anon_sym_NOTE] = ACTIONS(225), - [anon_sym_INFO] = ACTIONS(225), - [anon_sym_XXX] = ACTIONS(225), - [sym_fixme] = ACTIONS(209), - [sym__whitespace1] = ACTIONS(227), - [sym__newline] = ACTIONS(229), - [aux_sym__text_token1] = ACTIONS(231), - [sym__verbatim_begin] = ACTIONS(233), + [sym__element] = STATE(110), + [sym_emphasis] = STATE(132), + [sym_emphasis_begin] = STATE(1152), + [sym_strong] = STATE(132), + [sym_strong_begin] = STATE(1153), + [sym_superscript] = STATE(132), + [sym_superscript_begin] = STATE(1154), + [sym_subscript] = STATE(132), + [sym_subscript_begin] = STATE(1155), + [sym_highlighted] = STATE(132), + [sym_highlighted_begin] = STATE(1156), + [sym_insert] = STATE(132), + [sym_insert_begin] = STATE(1157), + [sym_delete] = STATE(132), + [sym_delete_begin] = STATE(1158), + [sym_hard_line_break] = STATE(132), + [sym__smart_punctuation] = STATE(132), + [sym_autolink] = STATE(132), + [sym_footnote_reference] = STATE(132), + [sym_footnote_marker_begin] = STATE(1159), + [sym__image] = STATE(132), + [sym_full_reference_image] = STATE(132), + [sym_collapsed_reference_image] = STATE(132), + [sym_inline_image] = STATE(132), + [sym_image_description] = STATE(633), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(132), + [sym_full_reference_link] = STATE(132), + [sym_collapsed_reference_link] = STATE(132), + [sym_inline_link] = STATE(132), + [sym_link_text] = STATE(631), + [sym_span] = STATE(110), + [sym__bracketed_text_begin] = STATE(1189), + [sym__comment_with_spaces] = STATE(132), + [sym_raw_inline] = STATE(132), + [sym_math] = STATE(132), + [sym_verbatim] = STATE(132), + [sym__todo_highlights] = STATE(132), + [sym_todo] = STATE(132), + [sym_note] = STATE(132), + [sym__symbol_fallback] = STATE(132), + [aux_sym__text] = STATE(128), + [aux_sym__inline_repeat1] = STATE(110), + [anon_sym_LBRACE_] = ACTIONS(441), + [anon_sym__] = ACTIONS(443), + [anon_sym_LBRACE_STAR] = ACTIONS(445), + [anon_sym_STAR] = ACTIONS(447), + [anon_sym_LBRACE_CARET] = ACTIONS(449), + [anon_sym_CARET] = ACTIONS(449), + [anon_sym_LBRACE_TILDE] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_LBRACE_EQ] = ACTIONS(453), + [anon_sym_LBRACE_PLUS] = ACTIONS(455), + [anon_sym_LBRACE_DASH] = ACTIONS(457), + [anon_sym_BSLASH] = ACTIONS(459), + [sym_quotation_marks] = ACTIONS(461), + [sym_ellipsis] = ACTIONS(461), + [sym_em_dash] = ACTIONS(461), + [sym_en_dash] = ACTIONS(463), + [sym_backslash_escape] = ACTIONS(463), + [anon_sym_LT] = ACTIONS(465), + [sym_symbol] = ACTIONS(461), + [anon_sym_LBRACK_CARET] = ACTIONS(467), + [anon_sym_BANG_LBRACK] = ACTIONS(469), + [anon_sym_LBRACK] = ACTIONS(471), + [anon_sym_RBRACK] = ACTIONS(367), + [anon_sym_LPAREN] = ACTIONS(473), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_TODO] = ACTIONS(477), + [anon_sym_WIP] = ACTIONS(477), + [anon_sym_NOTE] = ACTIONS(479), + [anon_sym_INFO] = ACTIONS(479), + [anon_sym_XXX] = ACTIONS(479), + [sym_fixme] = ACTIONS(461), + [sym__whitespace1] = ACTIONS(481), + [sym__newline] = ACTIONS(859), + [aux_sym__text_token1] = ACTIONS(485), + [sym__verbatim_begin] = ACTIONS(487), }, [72] = { - [sym__inline] = STATE(918), - [sym__element] = STATE(84), - [sym_emphasis] = STATE(146), - [sym_emphasis_begin] = STATE(1226), - [sym_strong] = STATE(146), - [sym_strong_begin] = STATE(1227), - [sym_superscript] = STATE(146), - [sym_superscript_begin] = STATE(1228), - [sym_subscript] = STATE(146), - [sym_subscript_begin] = STATE(1229), - [sym_highlighted] = STATE(146), - [sym_highlighted_begin] = STATE(1230), - [sym_insert] = STATE(146), - [sym_insert_begin] = STATE(1231), - [sym_delete] = STATE(146), - [sym_delete_begin] = STATE(1232), - [sym_hard_line_break] = STATE(146), - [sym__smart_punctuation] = STATE(146), - [sym_autolink] = STATE(146), - [sym_footnote_reference] = STATE(146), - [sym_footnote_marker_begin] = STATE(1233), - [sym__image] = STATE(146), - [sym_full_reference_image] = STATE(146), - [sym_collapsed_reference_image] = STATE(146), - [sym_inline_image] = STATE(146), - [sym_image_description] = STATE(694), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(146), - [sym_full_reference_link] = STATE(146), - [sym_collapsed_reference_link] = STATE(146), - [sym_inline_link] = STATE(146), - [sym_link_text] = STATE(693), - [sym_span] = STATE(84), - [sym__bracketed_text_begin] = STATE(1269), - [sym__comment_with_spaces] = STATE(146), - [sym_raw_inline] = STATE(146), - [sym_math] = STATE(146), - [sym_verbatim] = STATE(146), - [sym__todo_highlights] = STATE(146), - [sym_todo] = STATE(146), - [sym_note] = STATE(146), - [sym__symbol_fallback] = STATE(146), - [aux_sym__text] = STATE(141), - [aux_sym__inline_repeat1] = STATE(84), - [anon_sym_LBRACE_] = ACTIONS(356), - [anon_sym__] = ACTIONS(358), - [anon_sym_LBRACE_STAR] = ACTIONS(360), - [anon_sym_STAR] = ACTIONS(362), - [anon_sym_LBRACE_CARET] = ACTIONS(364), - [anon_sym_CARET] = ACTIONS(364), - [anon_sym_LBRACE_TILDE] = ACTIONS(366), - [anon_sym_TILDE] = ACTIONS(366), - [anon_sym_LBRACE_EQ] = ACTIONS(368), - [anon_sym_LBRACE_PLUS] = ACTIONS(370), - [anon_sym_LBRACE_DASH] = ACTIONS(372), - [anon_sym_BSLASH] = ACTIONS(374), - [sym_quotation_marks] = ACTIONS(376), - [sym_ellipsis] = ACTIONS(376), - [sym_em_dash] = ACTIONS(376), - [sym_en_dash] = ACTIONS(378), - [sym_backslash_escape] = ACTIONS(378), - [anon_sym_LT] = ACTIONS(380), - [sym_symbol] = ACTIONS(376), - [anon_sym_LBRACK_CARET] = ACTIONS(382), - [anon_sym_BANG_LBRACK] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(386), - [anon_sym_DOLLAR] = ACTIONS(388), - [anon_sym_TODO] = ACTIONS(390), - [anon_sym_WIP] = ACTIONS(390), - [anon_sym_NOTE] = ACTIONS(392), - [anon_sym_INFO] = ACTIONS(392), - [anon_sym_XXX] = ACTIONS(392), - [sym_fixme] = ACTIONS(376), - [sym__whitespace1] = ACTIONS(394), - [sym__newline] = ACTIONS(396), - [aux_sym__text_token1] = ACTIONS(398), - [sym__verbatim_begin] = ACTIONS(400), + [sym__inline] = STATE(891), + [sym__element] = STATE(37), + [sym_emphasis] = STATE(131), + [sym_emphasis_begin] = STATE(1132), + [sym_strong] = STATE(131), + [sym_strong_begin] = STATE(1133), + [sym_superscript] = STATE(131), + [sym_superscript_begin] = STATE(1134), + [sym_subscript] = STATE(131), + [sym_subscript_begin] = STATE(1135), + [sym_highlighted] = STATE(131), + [sym_highlighted_begin] = STATE(1136), + [sym_insert] = STATE(131), + [sym_insert_begin] = STATE(1137), + [sym_delete] = STATE(131), + [sym_delete_begin] = STATE(1138), + [sym_hard_line_break] = STATE(131), + [sym__smart_punctuation] = STATE(131), + [sym_autolink] = STATE(131), + [sym_footnote_reference] = STATE(131), + [sym_footnote_marker_begin] = STATE(1139), + [sym__image] = STATE(131), + [sym_full_reference_image] = STATE(131), + [sym_collapsed_reference_image] = STATE(131), + [sym_inline_image] = STATE(131), + [sym_image_description] = STATE(643), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(131), + [sym_full_reference_link] = STATE(131), + [sym_collapsed_reference_link] = STATE(131), + [sym_inline_link] = STATE(131), + [sym_link_text] = STATE(619), + [sym_span] = STATE(37), + [sym__bracketed_text_begin] = STATE(1187), + [sym__comment_with_spaces] = STATE(131), + [sym_raw_inline] = STATE(131), + [sym_math] = STATE(131), + [sym_verbatim] = STATE(131), + [sym__todo_highlights] = STATE(131), + [sym_todo] = STATE(131), + [sym_note] = STATE(131), + [sym__symbol_fallback] = STATE(131), + [aux_sym__text] = STATE(123), + [aux_sym__inline_repeat1] = STATE(37), + [anon_sym_LBRACE_] = ACTIONS(537), + [anon_sym__] = ACTIONS(539), + [anon_sym_LBRACE_STAR] = ACTIONS(541), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE_CARET] = ACTIONS(545), + [anon_sym_CARET] = ACTIONS(545), + [anon_sym_LBRACE_TILDE] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(547), + [anon_sym_LBRACE_EQ] = ACTIONS(549), + [anon_sym_LBRACE_PLUS] = ACTIONS(551), + [anon_sym_LBRACE_DASH] = ACTIONS(553), + [anon_sym_BSLASH] = ACTIONS(555), + [sym_quotation_marks] = ACTIONS(557), + [sym_ellipsis] = ACTIONS(557), + [sym_em_dash] = ACTIONS(557), + [sym_en_dash] = ACTIONS(559), + [sym_backslash_escape] = ACTIONS(559), + [anon_sym_LT] = ACTIONS(561), + [sym_symbol] = ACTIONS(557), + [anon_sym_LBRACK_CARET] = ACTIONS(563), + [anon_sym_BANG_LBRACK] = ACTIONS(565), + [anon_sym_LBRACK] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_DOLLAR] = ACTIONS(571), + [anon_sym_TODO] = ACTIONS(573), + [anon_sym_WIP] = ACTIONS(573), + [anon_sym_NOTE] = ACTIONS(575), + [anon_sym_INFO] = ACTIONS(575), + [anon_sym_XXX] = ACTIONS(575), + [sym_fixme] = ACTIONS(557), + [sym__whitespace1] = ACTIONS(577), + [sym__newline] = ACTIONS(579), + [aux_sym__text_token1] = ACTIONS(581), + [sym__verbatim_begin] = ACTIONS(583), }, [73] = { - [sym__inline_without_trailing_space] = STATE(1047), - [sym__element] = STATE(623), - [sym_emphasis] = STATE(148), - [sym_emphasis_begin] = STATE(1163), - [sym_strong] = STATE(148), - [sym_strong_begin] = STATE(1164), - [sym_superscript] = STATE(148), - [sym_superscript_begin] = STATE(1165), - [sym_subscript] = STATE(148), - [sym_subscript_begin] = STATE(1166), - [sym_highlighted] = STATE(148), - [sym_highlighted_begin] = STATE(1167), - [sym_insert] = STATE(148), - [sym_insert_begin] = STATE(1168), - [sym_delete] = STATE(148), - [sym_delete_begin] = STATE(1169), - [sym_hard_line_break] = STATE(148), - [sym__smart_punctuation] = STATE(148), - [sym_autolink] = STATE(148), - [sym_footnote_reference] = STATE(148), - [sym_footnote_marker_begin] = STATE(1170), - [sym__image] = STATE(148), - [sym_full_reference_image] = STATE(148), - [sym_collapsed_reference_image] = STATE(148), - [sym_inline_image] = STATE(148), - [sym_image_description] = STATE(712), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(148), - [sym_full_reference_link] = STATE(148), - [sym_collapsed_reference_link] = STATE(148), - [sym_inline_link] = STATE(148), - [sym_link_text] = STATE(713), - [sym_span] = STATE(623), - [sym__bracketed_text_begin] = STATE(1262), - [sym__comment_with_spaces] = STATE(148), - [sym_raw_inline] = STATE(148), - [sym_math] = STATE(148), - [sym_verbatim] = STATE(148), - [sym__todo_highlights] = STATE(148), - [sym_todo] = STATE(148), - [sym_note] = STATE(148), - [sym__symbol_fallback] = STATE(148), - [aux_sym__text] = STATE(136), - [aux_sym__inline_repeat1] = STATE(129), - [anon_sym_LBRACE_] = ACTIONS(402), - [anon_sym__] = ACTIONS(404), - [anon_sym_LBRACE_STAR] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_LBRACE_CARET] = ACTIONS(410), - [anon_sym_CARET] = ACTIONS(410), - [anon_sym_LBRACE_TILDE] = ACTIONS(412), - [anon_sym_TILDE] = ACTIONS(412), - [anon_sym_LBRACE_EQ] = ACTIONS(414), - [anon_sym_LBRACE_PLUS] = ACTIONS(416), - [anon_sym_LBRACE_DASH] = ACTIONS(418), - [anon_sym_BSLASH] = ACTIONS(420), - [sym_quotation_marks] = ACTIONS(422), - [sym_ellipsis] = ACTIONS(422), - [sym_em_dash] = ACTIONS(422), - [sym_en_dash] = ACTIONS(424), - [sym_backslash_escape] = ACTIONS(424), - [anon_sym_LT] = ACTIONS(426), - [sym_symbol] = ACTIONS(422), - [anon_sym_LBRACK_CARET] = ACTIONS(428), - [anon_sym_BANG_LBRACK] = ACTIONS(430), - [anon_sym_LBRACK] = ACTIONS(432), - [anon_sym_DOLLAR] = ACTIONS(434), - [anon_sym_TODO] = ACTIONS(436), - [anon_sym_WIP] = ACTIONS(436), - [anon_sym_NOTE] = ACTIONS(438), - [anon_sym_INFO] = ACTIONS(438), - [anon_sym_XXX] = ACTIONS(438), - [sym_fixme] = ACTIONS(422), - [sym__whitespace1] = ACTIONS(440), - [sym__newline] = ACTIONS(442), - [aux_sym__text_token1] = ACTIONS(444), - [sym__verbatim_begin] = ACTIONS(446), + [sym__inline] = STATE(893), + [sym__element] = STATE(65), + [sym_emphasis] = STATE(133), + [sym_emphasis_begin] = STATE(1142), + [sym_strong] = STATE(133), + [sym_strong_begin] = STATE(1143), + [sym_superscript] = STATE(133), + [sym_superscript_begin] = STATE(1144), + [sym_subscript] = STATE(133), + [sym_subscript_begin] = STATE(1145), + [sym_highlighted] = STATE(133), + [sym_highlighted_begin] = STATE(1146), + [sym_insert] = STATE(133), + [sym_insert_begin] = STATE(1147), + [sym_delete] = STATE(133), + [sym_delete_begin] = STATE(1148), + [sym_hard_line_break] = STATE(133), + [sym__smart_punctuation] = STATE(133), + [sym_autolink] = STATE(133), + [sym_footnote_reference] = STATE(133), + [sym_footnote_marker_begin] = STATE(1149), + [sym__image] = STATE(133), + [sym_full_reference_image] = STATE(133), + [sym_collapsed_reference_image] = STATE(133), + [sym_inline_image] = STATE(133), + [sym_image_description] = STATE(638), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(133), + [sym_full_reference_link] = STATE(133), + [sym_collapsed_reference_link] = STATE(133), + [sym_inline_link] = STATE(133), + [sym_link_text] = STATE(637), + [sym_span] = STATE(65), + [sym__bracketed_text_begin] = STATE(1188), + [sym__comment_with_spaces] = STATE(133), + [sym_raw_inline] = STATE(133), + [sym_math] = STATE(133), + [sym_verbatim] = STATE(133), + [sym__todo_highlights] = STATE(133), + [sym_todo] = STATE(133), + [sym_note] = STATE(133), + [sym__symbol_fallback] = STATE(133), + [aux_sym__text] = STATE(129), + [aux_sym__inline_repeat1] = STATE(65), + [anon_sym_LBRACE_] = ACTIONS(489), + [anon_sym__] = ACTIONS(491), + [anon_sym_LBRACE_STAR] = ACTIONS(493), + [anon_sym_STAR] = ACTIONS(495), + [anon_sym_LBRACE_CARET] = ACTIONS(497), + [anon_sym_CARET] = ACTIONS(497), + [anon_sym_LBRACE_TILDE] = ACTIONS(499), + [anon_sym_TILDE] = ACTIONS(499), + [anon_sym_LBRACE_EQ] = ACTIONS(501), + [anon_sym_LBRACE_PLUS] = ACTIONS(503), + [anon_sym_LBRACE_DASH] = ACTIONS(505), + [anon_sym_BSLASH] = ACTIONS(507), + [sym_quotation_marks] = ACTIONS(509), + [sym_ellipsis] = ACTIONS(509), + [sym_em_dash] = ACTIONS(509), + [sym_en_dash] = ACTIONS(511), + [sym_backslash_escape] = ACTIONS(511), + [anon_sym_LT] = ACTIONS(513), + [sym_symbol] = ACTIONS(509), + [anon_sym_LBRACK_CARET] = ACTIONS(515), + [anon_sym_BANG_LBRACK] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(519), + [anon_sym_LPAREN] = ACTIONS(521), + [anon_sym_DOLLAR] = ACTIONS(523), + [anon_sym_TODO] = ACTIONS(525), + [anon_sym_WIP] = ACTIONS(525), + [anon_sym_NOTE] = ACTIONS(527), + [anon_sym_INFO] = ACTIONS(527), + [anon_sym_XXX] = ACTIONS(527), + [sym_fixme] = ACTIONS(509), + [sym__whitespace1] = ACTIONS(529), + [sym__newline] = ACTIONS(531), + [aux_sym__text_token1] = ACTIONS(533), + [sym__verbatim_begin] = ACTIONS(535), }, [74] = { - [sym__inline_without_trailing_space] = STATE(1054), - [sym__element] = STATE(570), - [sym_emphasis] = STATE(152), - [sym_emphasis_begin] = STATE(1172), - [sym_strong] = STATE(152), - [sym_strong_begin] = STATE(1173), - [sym_superscript] = STATE(152), - [sym_superscript_begin] = STATE(1174), - [sym_subscript] = STATE(152), - [sym_subscript_begin] = STATE(1175), - [sym_highlighted] = STATE(152), - [sym_highlighted_begin] = STATE(1176), - [sym_insert] = STATE(152), - [sym_insert_begin] = STATE(1177), - [sym_delete] = STATE(152), - [sym_delete_begin] = STATE(1178), - [sym_hard_line_break] = STATE(152), - [sym__smart_punctuation] = STATE(152), - [sym_autolink] = STATE(152), - [sym_footnote_reference] = STATE(152), - [sym_footnote_marker_begin] = STATE(1179), - [sym__image] = STATE(152), - [sym_full_reference_image] = STATE(152), - [sym_collapsed_reference_image] = STATE(152), - [sym_inline_image] = STATE(152), - [sym_image_description] = STATE(704), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(152), - [sym_full_reference_link] = STATE(152), - [sym_collapsed_reference_link] = STATE(152), - [sym_inline_link] = STATE(152), - [sym_link_text] = STATE(706), - [sym_span] = STATE(570), - [sym__bracketed_text_begin] = STATE(1263), - [sym__comment_with_spaces] = STATE(152), - [sym_raw_inline] = STATE(152), - [sym_math] = STATE(152), - [sym_verbatim] = STATE(152), - [sym__todo_highlights] = STATE(152), - [sym_todo] = STATE(152), - [sym_note] = STATE(152), - [sym__symbol_fallback] = STATE(152), - [aux_sym__text] = STATE(133), - [aux_sym__inline_repeat1] = STATE(130), - [anon_sym_LBRACE_] = ACTIONS(448), - [anon_sym__] = ACTIONS(450), - [anon_sym_LBRACE_STAR] = ACTIONS(452), - [anon_sym_STAR] = ACTIONS(454), - [anon_sym_LBRACE_CARET] = ACTIONS(456), - [anon_sym_CARET] = ACTIONS(456), - [anon_sym_LBRACE_TILDE] = ACTIONS(458), - [anon_sym_TILDE] = ACTIONS(458), - [anon_sym_LBRACE_EQ] = ACTIONS(460), - [anon_sym_LBRACE_PLUS] = ACTIONS(462), - [anon_sym_LBRACE_DASH] = ACTIONS(464), - [anon_sym_BSLASH] = ACTIONS(466), - [sym_quotation_marks] = ACTIONS(468), - [sym_ellipsis] = ACTIONS(468), - [sym_em_dash] = ACTIONS(468), - [sym_en_dash] = ACTIONS(470), - [sym_backslash_escape] = ACTIONS(470), - [anon_sym_LT] = ACTIONS(472), - [sym_symbol] = ACTIONS(468), - [anon_sym_LBRACK_CARET] = ACTIONS(474), - [anon_sym_BANG_LBRACK] = ACTIONS(476), - [anon_sym_LBRACK] = ACTIONS(478), - [anon_sym_DOLLAR] = ACTIONS(480), - [anon_sym_TODO] = ACTIONS(482), - [anon_sym_WIP] = ACTIONS(482), - [anon_sym_NOTE] = ACTIONS(484), - [anon_sym_INFO] = ACTIONS(484), - [anon_sym_XXX] = ACTIONS(484), - [sym_fixme] = ACTIONS(468), - [sym__whitespace1] = ACTIONS(486), - [sym__newline] = ACTIONS(488), - [aux_sym__text_token1] = ACTIONS(490), - [sym__verbatim_begin] = ACTIONS(492), - }, + [sym__inline] = STATE(926), + [sym__element] = STATE(71), + [sym_emphasis] = STATE(132), + [sym_emphasis_begin] = STATE(1152), + [sym_strong] = STATE(132), + [sym_strong_begin] = STATE(1153), + [sym_superscript] = STATE(132), + [sym_superscript_begin] = STATE(1154), + [sym_subscript] = STATE(132), + [sym_subscript_begin] = STATE(1155), + [sym_highlighted] = STATE(132), + [sym_highlighted_begin] = STATE(1156), + [sym_insert] = STATE(132), + [sym_insert_begin] = STATE(1157), + [sym_delete] = STATE(132), + [sym_delete_begin] = STATE(1158), + [sym_hard_line_break] = STATE(132), + [sym__smart_punctuation] = STATE(132), + [sym_autolink] = STATE(132), + [sym_footnote_reference] = STATE(132), + [sym_footnote_marker_begin] = STATE(1159), + [sym__image] = STATE(132), + [sym_full_reference_image] = STATE(132), + [sym_collapsed_reference_image] = STATE(132), + [sym_inline_image] = STATE(132), + [sym_image_description] = STATE(633), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(132), + [sym_full_reference_link] = STATE(132), + [sym_collapsed_reference_link] = STATE(132), + [sym_inline_link] = STATE(132), + [sym_link_text] = STATE(631), + [sym_span] = STATE(71), + [sym__bracketed_text_begin] = STATE(1189), + [sym__comment_with_spaces] = STATE(132), + [sym_raw_inline] = STATE(132), + [sym_math] = STATE(132), + [sym_verbatim] = STATE(132), + [sym__todo_highlights] = STATE(132), + [sym_todo] = STATE(132), + [sym_note] = STATE(132), + [sym__symbol_fallback] = STATE(132), + [aux_sym__text] = STATE(128), + [aux_sym__inline_repeat1] = STATE(71), + [anon_sym_LBRACE_] = ACTIONS(441), + [anon_sym__] = ACTIONS(443), + [anon_sym_LBRACE_STAR] = ACTIONS(445), + [anon_sym_STAR] = ACTIONS(447), + [anon_sym_LBRACE_CARET] = ACTIONS(449), + [anon_sym_CARET] = ACTIONS(449), + [anon_sym_LBRACE_TILDE] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_LBRACE_EQ] = ACTIONS(453), + [anon_sym_LBRACE_PLUS] = ACTIONS(455), + [anon_sym_LBRACE_DASH] = ACTIONS(457), + [anon_sym_BSLASH] = ACTIONS(459), + [sym_quotation_marks] = ACTIONS(461), + [sym_ellipsis] = ACTIONS(461), + [sym_em_dash] = ACTIONS(461), + [sym_en_dash] = ACTIONS(463), + [sym_backslash_escape] = ACTIONS(463), + [anon_sym_LT] = ACTIONS(465), + [sym_symbol] = ACTIONS(461), + [anon_sym_LBRACK_CARET] = ACTIONS(467), + [anon_sym_BANG_LBRACK] = ACTIONS(469), + [anon_sym_LBRACK] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(473), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_TODO] = ACTIONS(477), + [anon_sym_WIP] = ACTIONS(477), + [anon_sym_NOTE] = ACTIONS(479), + [anon_sym_INFO] = ACTIONS(479), + [anon_sym_XXX] = ACTIONS(479), + [sym_fixme] = ACTIONS(461), + [sym__whitespace1] = ACTIONS(481), + [sym__newline] = ACTIONS(483), + [aux_sym__text_token1] = ACTIONS(485), + [sym__verbatim_begin] = ACTIONS(487), + }, [75] = { - [sym__inline_without_trailing_space] = STATE(908), - [sym__element] = STATE(570), - [sym_emphasis] = STATE(152), - [sym_emphasis_begin] = STATE(1172), - [sym_strong] = STATE(152), - [sym_strong_begin] = STATE(1173), - [sym_superscript] = STATE(152), - [sym_superscript_begin] = STATE(1174), - [sym_subscript] = STATE(152), - [sym_subscript_begin] = STATE(1175), - [sym_highlighted] = STATE(152), - [sym_highlighted_begin] = STATE(1176), - [sym_insert] = STATE(152), - [sym_insert_begin] = STATE(1177), - [sym_delete] = STATE(152), - [sym_delete_begin] = STATE(1178), - [sym_hard_line_break] = STATE(152), - [sym__smart_punctuation] = STATE(152), - [sym_autolink] = STATE(152), - [sym_footnote_reference] = STATE(152), - [sym_footnote_marker_begin] = STATE(1179), - [sym__image] = STATE(152), - [sym_full_reference_image] = STATE(152), - [sym_collapsed_reference_image] = STATE(152), - [sym_inline_image] = STATE(152), - [sym_image_description] = STATE(704), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(152), - [sym_full_reference_link] = STATE(152), - [sym_collapsed_reference_link] = STATE(152), - [sym_inline_link] = STATE(152), - [sym_link_text] = STATE(706), - [sym_span] = STATE(570), - [sym__bracketed_text_begin] = STATE(1263), - [sym__comment_with_spaces] = STATE(152), - [sym_raw_inline] = STATE(152), - [sym_math] = STATE(152), - [sym_verbatim] = STATE(152), - [sym__todo_highlights] = STATE(152), - [sym_todo] = STATE(152), - [sym_note] = STATE(152), - [sym__symbol_fallback] = STATE(152), - [aux_sym__text] = STATE(133), - [aux_sym__inline_repeat1] = STATE(130), - [anon_sym_LBRACE_] = ACTIONS(448), - [anon_sym__] = ACTIONS(450), - [anon_sym_LBRACE_STAR] = ACTIONS(452), - [anon_sym_STAR] = ACTIONS(454), - [anon_sym_LBRACE_CARET] = ACTIONS(456), - [anon_sym_CARET] = ACTIONS(456), - [anon_sym_LBRACE_TILDE] = ACTIONS(458), - [anon_sym_TILDE] = ACTIONS(458), - [anon_sym_LBRACE_EQ] = ACTIONS(460), - [anon_sym_LBRACE_PLUS] = ACTIONS(462), - [anon_sym_LBRACE_DASH] = ACTIONS(464), - [anon_sym_BSLASH] = ACTIONS(466), - [sym_quotation_marks] = ACTIONS(468), - [sym_ellipsis] = ACTIONS(468), - [sym_em_dash] = ACTIONS(468), - [sym_en_dash] = ACTIONS(470), - [sym_backslash_escape] = ACTIONS(470), - [anon_sym_LT] = ACTIONS(472), - [sym_symbol] = ACTIONS(468), - [anon_sym_LBRACK_CARET] = ACTIONS(474), - [anon_sym_BANG_LBRACK] = ACTIONS(476), - [anon_sym_LBRACK] = ACTIONS(478), - [anon_sym_DOLLAR] = ACTIONS(480), - [anon_sym_TODO] = ACTIONS(482), - [anon_sym_WIP] = ACTIONS(482), - [anon_sym_NOTE] = ACTIONS(484), - [anon_sym_INFO] = ACTIONS(484), - [anon_sym_XXX] = ACTIONS(484), - [sym_fixme] = ACTIONS(468), - [sym__whitespace1] = ACTIONS(486), - [sym__newline] = ACTIONS(488), - [aux_sym__text_token1] = ACTIONS(490), - [sym__verbatim_begin] = ACTIONS(492), + [sym__inline_without_trailing_space] = STATE(1151), + [sym__element] = STATE(581), + [sym_emphasis] = STATE(141), + [sym_emphasis_begin] = STATE(1082), + [sym_strong] = STATE(141), + [sym_strong_begin] = STATE(1083), + [sym_superscript] = STATE(141), + [sym_superscript_begin] = STATE(1084), + [sym_subscript] = STATE(141), + [sym_subscript_begin] = STATE(1085), + [sym_highlighted] = STATE(141), + [sym_highlighted_begin] = STATE(1086), + [sym_insert] = STATE(141), + [sym_insert_begin] = STATE(1087), + [sym_delete] = STATE(141), + [sym_delete_begin] = STATE(1088), + [sym_hard_line_break] = STATE(141), + [sym__smart_punctuation] = STATE(141), + [sym_autolink] = STATE(141), + [sym_footnote_reference] = STATE(141), + [sym_footnote_marker_begin] = STATE(1089), + [sym__image] = STATE(141), + [sym_full_reference_image] = STATE(141), + [sym_collapsed_reference_image] = STATE(141), + [sym_inline_image] = STATE(141), + [sym_image_description] = STATE(642), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(141), + [sym_full_reference_link] = STATE(141), + [sym_collapsed_reference_link] = STATE(141), + [sym_inline_link] = STATE(141), + [sym_link_text] = STATE(629), + [sym_span] = STATE(581), + [sym__bracketed_text_begin] = STATE(1182), + [sym__comment_with_spaces] = STATE(141), + [sym_raw_inline] = STATE(141), + [sym_math] = STATE(141), + [sym_verbatim] = STATE(141), + [sym__todo_highlights] = STATE(141), + [sym_todo] = STATE(141), + [sym_note] = STATE(141), + [sym__symbol_fallback] = STATE(141), + [aux_sym__text] = STATE(125), + [aux_sym__inline_repeat1] = STATE(119), + [anon_sym_LBRACE_] = ACTIONS(585), + [anon_sym__] = ACTIONS(587), + [anon_sym_LBRACE_STAR] = ACTIONS(589), + [anon_sym_STAR] = ACTIONS(591), + [anon_sym_LBRACE_CARET] = ACTIONS(593), + [anon_sym_CARET] = ACTIONS(593), + [anon_sym_LBRACE_TILDE] = ACTIONS(595), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_LBRACE_EQ] = ACTIONS(597), + [anon_sym_LBRACE_PLUS] = ACTIONS(599), + [anon_sym_LBRACE_DASH] = ACTIONS(601), + [anon_sym_BSLASH] = ACTIONS(603), + [sym_quotation_marks] = ACTIONS(605), + [sym_ellipsis] = ACTIONS(605), + [sym_em_dash] = ACTIONS(605), + [sym_en_dash] = ACTIONS(607), + [sym_backslash_escape] = ACTIONS(607), + [anon_sym_LT] = ACTIONS(609), + [sym_symbol] = ACTIONS(605), + [anon_sym_LBRACK_CARET] = ACTIONS(611), + [anon_sym_BANG_LBRACK] = ACTIONS(613), + [anon_sym_LBRACK] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [anon_sym_TODO] = ACTIONS(621), + [anon_sym_WIP] = ACTIONS(621), + [anon_sym_NOTE] = ACTIONS(623), + [anon_sym_INFO] = ACTIONS(623), + [anon_sym_XXX] = ACTIONS(623), + [sym_fixme] = ACTIONS(605), + [sym__whitespace1] = ACTIONS(625), + [sym__newline] = ACTIONS(627), + [aux_sym__text_token1] = ACTIONS(629), + [sym__verbatim_begin] = ACTIONS(631), }, [76] = { - [sym__inline_without_trailing_space] = STATE(907), - [sym__element] = STATE(623), - [sym_emphasis] = STATE(148), - [sym_emphasis_begin] = STATE(1163), - [sym_strong] = STATE(148), - [sym_strong_begin] = STATE(1164), - [sym_superscript] = STATE(148), - [sym_superscript_begin] = STATE(1165), - [sym_subscript] = STATE(148), - [sym_subscript_begin] = STATE(1166), - [sym_highlighted] = STATE(148), - [sym_highlighted_begin] = STATE(1167), - [sym_insert] = STATE(148), - [sym_insert_begin] = STATE(1168), - [sym_delete] = STATE(148), - [sym_delete_begin] = STATE(1169), - [sym_hard_line_break] = STATE(148), - [sym__smart_punctuation] = STATE(148), - [sym_autolink] = STATE(148), - [sym_footnote_reference] = STATE(148), - [sym_footnote_marker_begin] = STATE(1170), - [sym__image] = STATE(148), - [sym_full_reference_image] = STATE(148), - [sym_collapsed_reference_image] = STATE(148), - [sym_inline_image] = STATE(148), - [sym_image_description] = STATE(712), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(148), - [sym_full_reference_link] = STATE(148), - [sym_collapsed_reference_link] = STATE(148), - [sym_inline_link] = STATE(148), - [sym_link_text] = STATE(713), - [sym_span] = STATE(623), - [sym__bracketed_text_begin] = STATE(1262), - [sym__comment_with_spaces] = STATE(148), - [sym_raw_inline] = STATE(148), - [sym_math] = STATE(148), - [sym_verbatim] = STATE(148), - [sym__todo_highlights] = STATE(148), - [sym_todo] = STATE(148), - [sym_note] = STATE(148), - [sym__symbol_fallback] = STATE(148), - [aux_sym__text] = STATE(136), - [aux_sym__inline_repeat1] = STATE(129), - [anon_sym_LBRACE_] = ACTIONS(402), - [anon_sym__] = ACTIONS(404), - [anon_sym_LBRACE_STAR] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_LBRACE_CARET] = ACTIONS(410), - [anon_sym_CARET] = ACTIONS(410), - [anon_sym_LBRACE_TILDE] = ACTIONS(412), - [anon_sym_TILDE] = ACTIONS(412), - [anon_sym_LBRACE_EQ] = ACTIONS(414), - [anon_sym_LBRACE_PLUS] = ACTIONS(416), - [anon_sym_LBRACE_DASH] = ACTIONS(418), - [anon_sym_BSLASH] = ACTIONS(420), - [sym_quotation_marks] = ACTIONS(422), - [sym_ellipsis] = ACTIONS(422), - [sym_em_dash] = ACTIONS(422), - [sym_en_dash] = ACTIONS(424), - [sym_backslash_escape] = ACTIONS(424), - [anon_sym_LT] = ACTIONS(426), - [sym_symbol] = ACTIONS(422), - [anon_sym_LBRACK_CARET] = ACTIONS(428), - [anon_sym_BANG_LBRACK] = ACTIONS(430), - [anon_sym_LBRACK] = ACTIONS(432), - [anon_sym_DOLLAR] = ACTIONS(434), - [anon_sym_TODO] = ACTIONS(436), - [anon_sym_WIP] = ACTIONS(436), - [anon_sym_NOTE] = ACTIONS(438), - [anon_sym_INFO] = ACTIONS(438), - [anon_sym_XXX] = ACTIONS(438), - [sym_fixme] = ACTIONS(422), - [sym__whitespace1] = ACTIONS(440), - [sym__newline] = ACTIONS(442), - [aux_sym__text_token1] = ACTIONS(444), - [sym__verbatim_begin] = ACTIONS(446), + [sym__inline] = STATE(859), + [sym__element] = STATE(71), + [sym_emphasis] = STATE(132), + [sym_emphasis_begin] = STATE(1152), + [sym_strong] = STATE(132), + [sym_strong_begin] = STATE(1153), + [sym_superscript] = STATE(132), + [sym_superscript_begin] = STATE(1154), + [sym_subscript] = STATE(132), + [sym_subscript_begin] = STATE(1155), + [sym_highlighted] = STATE(132), + [sym_highlighted_begin] = STATE(1156), + [sym_insert] = STATE(132), + [sym_insert_begin] = STATE(1157), + [sym_delete] = STATE(132), + [sym_delete_begin] = STATE(1158), + [sym_hard_line_break] = STATE(132), + [sym__smart_punctuation] = STATE(132), + [sym_autolink] = STATE(132), + [sym_footnote_reference] = STATE(132), + [sym_footnote_marker_begin] = STATE(1159), + [sym__image] = STATE(132), + [sym_full_reference_image] = STATE(132), + [sym_collapsed_reference_image] = STATE(132), + [sym_inline_image] = STATE(132), + [sym_image_description] = STATE(633), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(132), + [sym_full_reference_link] = STATE(132), + [sym_collapsed_reference_link] = STATE(132), + [sym_inline_link] = STATE(132), + [sym_link_text] = STATE(631), + [sym_span] = STATE(71), + [sym__bracketed_text_begin] = STATE(1189), + [sym__comment_with_spaces] = STATE(132), + [sym_raw_inline] = STATE(132), + [sym_math] = STATE(132), + [sym_verbatim] = STATE(132), + [sym__todo_highlights] = STATE(132), + [sym_todo] = STATE(132), + [sym_note] = STATE(132), + [sym__symbol_fallback] = STATE(132), + [aux_sym__text] = STATE(128), + [aux_sym__inline_repeat1] = STATE(71), + [anon_sym_LBRACE_] = ACTIONS(441), + [anon_sym__] = ACTIONS(443), + [anon_sym_LBRACE_STAR] = ACTIONS(445), + [anon_sym_STAR] = ACTIONS(447), + [anon_sym_LBRACE_CARET] = ACTIONS(449), + [anon_sym_CARET] = ACTIONS(449), + [anon_sym_LBRACE_TILDE] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_LBRACE_EQ] = ACTIONS(453), + [anon_sym_LBRACE_PLUS] = ACTIONS(455), + [anon_sym_LBRACE_DASH] = ACTIONS(457), + [anon_sym_BSLASH] = ACTIONS(459), + [sym_quotation_marks] = ACTIONS(461), + [sym_ellipsis] = ACTIONS(461), + [sym_em_dash] = ACTIONS(461), + [sym_en_dash] = ACTIONS(463), + [sym_backslash_escape] = ACTIONS(463), + [anon_sym_LT] = ACTIONS(465), + [sym_symbol] = ACTIONS(461), + [anon_sym_LBRACK_CARET] = ACTIONS(467), + [anon_sym_BANG_LBRACK] = ACTIONS(469), + [anon_sym_LBRACK] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(473), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_TODO] = ACTIONS(477), + [anon_sym_WIP] = ACTIONS(477), + [anon_sym_NOTE] = ACTIONS(479), + [anon_sym_INFO] = ACTIONS(479), + [anon_sym_XXX] = ACTIONS(479), + [sym_fixme] = ACTIONS(461), + [sym__whitespace1] = ACTIONS(481), + [sym__newline] = ACTIONS(483), + [aux_sym__text_token1] = ACTIONS(485), + [sym__verbatim_begin] = ACTIONS(487), }, [77] = { - [sym__inline] = STATE(920), - [sym__element] = STATE(84), - [sym_emphasis] = STATE(146), - [sym_emphasis_begin] = STATE(1226), - [sym_strong] = STATE(146), - [sym_strong_begin] = STATE(1227), - [sym_superscript] = STATE(146), - [sym_superscript_begin] = STATE(1228), - [sym_subscript] = STATE(146), - [sym_subscript_begin] = STATE(1229), - [sym_highlighted] = STATE(146), - [sym_highlighted_begin] = STATE(1230), - [sym_insert] = STATE(146), - [sym_insert_begin] = STATE(1231), - [sym_delete] = STATE(146), - [sym_delete_begin] = STATE(1232), - [sym_hard_line_break] = STATE(146), - [sym__smart_punctuation] = STATE(146), - [sym_autolink] = STATE(146), - [sym_footnote_reference] = STATE(146), - [sym_footnote_marker_begin] = STATE(1233), - [sym__image] = STATE(146), - [sym_full_reference_image] = STATE(146), - [sym_collapsed_reference_image] = STATE(146), - [sym_inline_image] = STATE(146), - [sym_image_description] = STATE(694), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(146), - [sym_full_reference_link] = STATE(146), - [sym_collapsed_reference_link] = STATE(146), - [sym_inline_link] = STATE(146), - [sym_link_text] = STATE(693), - [sym_span] = STATE(84), - [sym__bracketed_text_begin] = STATE(1269), - [sym__comment_with_spaces] = STATE(146), - [sym_raw_inline] = STATE(146), - [sym_math] = STATE(146), - [sym_verbatim] = STATE(146), - [sym__todo_highlights] = STATE(146), - [sym_todo] = STATE(146), - [sym_note] = STATE(146), - [sym__symbol_fallback] = STATE(146), - [aux_sym__text] = STATE(141), - [aux_sym__inline_repeat1] = STATE(84), - [anon_sym_LBRACE_] = ACTIONS(356), - [anon_sym__] = ACTIONS(358), - [anon_sym_LBRACE_STAR] = ACTIONS(360), - [anon_sym_STAR] = ACTIONS(362), - [anon_sym_LBRACE_CARET] = ACTIONS(364), - [anon_sym_CARET] = ACTIONS(364), - [anon_sym_LBRACE_TILDE] = ACTIONS(366), - [anon_sym_TILDE] = ACTIONS(366), - [anon_sym_LBRACE_EQ] = ACTIONS(368), - [anon_sym_LBRACE_PLUS] = ACTIONS(370), - [anon_sym_LBRACE_DASH] = ACTIONS(372), - [anon_sym_BSLASH] = ACTIONS(374), - [sym_quotation_marks] = ACTIONS(376), - [sym_ellipsis] = ACTIONS(376), - [sym_em_dash] = ACTIONS(376), - [sym_en_dash] = ACTIONS(378), - [sym_backslash_escape] = ACTIONS(378), - [anon_sym_LT] = ACTIONS(380), - [sym_symbol] = ACTIONS(376), - [anon_sym_LBRACK_CARET] = ACTIONS(382), - [anon_sym_BANG_LBRACK] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(386), - [anon_sym_DOLLAR] = ACTIONS(388), - [anon_sym_TODO] = ACTIONS(390), - [anon_sym_WIP] = ACTIONS(390), - [anon_sym_NOTE] = ACTIONS(392), - [anon_sym_INFO] = ACTIONS(392), - [anon_sym_XXX] = ACTIONS(392), - [sym_fixme] = ACTIONS(376), - [sym__whitespace1] = ACTIONS(394), - [sym__newline] = ACTIONS(396), - [aux_sym__text_token1] = ACTIONS(398), - [sym__verbatim_begin] = ACTIONS(400), + [sym__inline] = STATE(862), + [sym__element] = STATE(65), + [sym_emphasis] = STATE(133), + [sym_emphasis_begin] = STATE(1142), + [sym_strong] = STATE(133), + [sym_strong_begin] = STATE(1143), + [sym_superscript] = STATE(133), + [sym_superscript_begin] = STATE(1144), + [sym_subscript] = STATE(133), + [sym_subscript_begin] = STATE(1145), + [sym_highlighted] = STATE(133), + [sym_highlighted_begin] = STATE(1146), + [sym_insert] = STATE(133), + [sym_insert_begin] = STATE(1147), + [sym_delete] = STATE(133), + [sym_delete_begin] = STATE(1148), + [sym_hard_line_break] = STATE(133), + [sym__smart_punctuation] = STATE(133), + [sym_autolink] = STATE(133), + [sym_footnote_reference] = STATE(133), + [sym_footnote_marker_begin] = STATE(1149), + [sym__image] = STATE(133), + [sym_full_reference_image] = STATE(133), + [sym_collapsed_reference_image] = STATE(133), + [sym_inline_image] = STATE(133), + [sym_image_description] = STATE(638), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(133), + [sym_full_reference_link] = STATE(133), + [sym_collapsed_reference_link] = STATE(133), + [sym_inline_link] = STATE(133), + [sym_link_text] = STATE(637), + [sym_span] = STATE(65), + [sym__bracketed_text_begin] = STATE(1188), + [sym__comment_with_spaces] = STATE(133), + [sym_raw_inline] = STATE(133), + [sym_math] = STATE(133), + [sym_verbatim] = STATE(133), + [sym__todo_highlights] = STATE(133), + [sym_todo] = STATE(133), + [sym_note] = STATE(133), + [sym__symbol_fallback] = STATE(133), + [aux_sym__text] = STATE(129), + [aux_sym__inline_repeat1] = STATE(65), + [anon_sym_LBRACE_] = ACTIONS(489), + [anon_sym__] = ACTIONS(491), + [anon_sym_LBRACE_STAR] = ACTIONS(493), + [anon_sym_STAR] = ACTIONS(495), + [anon_sym_LBRACE_CARET] = ACTIONS(497), + [anon_sym_CARET] = ACTIONS(497), + [anon_sym_LBRACE_TILDE] = ACTIONS(499), + [anon_sym_TILDE] = ACTIONS(499), + [anon_sym_LBRACE_EQ] = ACTIONS(501), + [anon_sym_LBRACE_PLUS] = ACTIONS(503), + [anon_sym_LBRACE_DASH] = ACTIONS(505), + [anon_sym_BSLASH] = ACTIONS(507), + [sym_quotation_marks] = ACTIONS(509), + [sym_ellipsis] = ACTIONS(509), + [sym_em_dash] = ACTIONS(509), + [sym_en_dash] = ACTIONS(511), + [sym_backslash_escape] = ACTIONS(511), + [anon_sym_LT] = ACTIONS(513), + [sym_symbol] = ACTIONS(509), + [anon_sym_LBRACK_CARET] = ACTIONS(515), + [anon_sym_BANG_LBRACK] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(519), + [anon_sym_LPAREN] = ACTIONS(521), + [anon_sym_DOLLAR] = ACTIONS(523), + [anon_sym_TODO] = ACTIONS(525), + [anon_sym_WIP] = ACTIONS(525), + [anon_sym_NOTE] = ACTIONS(527), + [anon_sym_INFO] = ACTIONS(527), + [anon_sym_XXX] = ACTIONS(527), + [sym_fixme] = ACTIONS(509), + [sym__whitespace1] = ACTIONS(529), + [sym__newline] = ACTIONS(531), + [aux_sym__text_token1] = ACTIONS(533), + [sym__verbatim_begin] = ACTIONS(535), }, [78] = { - [sym__inline] = STATE(922), - [sym__element] = STATE(46), - [sym_emphasis] = STATE(147), - [sym_emphasis_begin] = STATE(1217), - [sym_strong] = STATE(147), - [sym_strong_begin] = STATE(1218), - [sym_superscript] = STATE(147), - [sym_superscript_begin] = STATE(1219), - [sym_subscript] = STATE(147), - [sym_subscript_begin] = STATE(1220), - [sym_highlighted] = STATE(147), - [sym_highlighted_begin] = STATE(1221), - [sym_insert] = STATE(147), - [sym_insert_begin] = STATE(1222), - [sym_delete] = STATE(147), - [sym_delete_begin] = STATE(1223), - [sym_hard_line_break] = STATE(147), - [sym__smart_punctuation] = STATE(147), - [sym_autolink] = STATE(147), - [sym_footnote_reference] = STATE(147), - [sym_footnote_marker_begin] = STATE(1224), - [sym__image] = STATE(147), - [sym_full_reference_image] = STATE(147), - [sym_collapsed_reference_image] = STATE(147), - [sym_inline_image] = STATE(147), - [sym_image_description] = STATE(699), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(147), - [sym_full_reference_link] = STATE(147), - [sym_collapsed_reference_link] = STATE(147), - [sym_inline_link] = STATE(147), - [sym_link_text] = STATE(698), - [sym_span] = STATE(46), - [sym__bracketed_text_begin] = STATE(1268), - [sym__comment_with_spaces] = STATE(147), - [sym_raw_inline] = STATE(147), - [sym_math] = STATE(147), - [sym_verbatim] = STATE(147), - [sym__todo_highlights] = STATE(147), - [sym_todo] = STATE(147), - [sym_note] = STATE(147), - [sym__symbol_fallback] = STATE(147), - [aux_sym__text] = STATE(132), - [aux_sym__inline_repeat1] = STATE(46), - [anon_sym_LBRACE_] = ACTIONS(189), - [anon_sym__] = ACTIONS(191), - [anon_sym_LBRACE_STAR] = ACTIONS(193), - [anon_sym_STAR] = ACTIONS(195), - [anon_sym_LBRACE_CARET] = ACTIONS(197), - [anon_sym_CARET] = ACTIONS(197), - [anon_sym_LBRACE_TILDE] = ACTIONS(199), - [anon_sym_TILDE] = ACTIONS(199), - [anon_sym_LBRACE_EQ] = ACTIONS(201), - [anon_sym_LBRACE_PLUS] = ACTIONS(203), - [anon_sym_LBRACE_DASH] = ACTIONS(205), - [anon_sym_BSLASH] = ACTIONS(207), - [sym_quotation_marks] = ACTIONS(209), - [sym_ellipsis] = ACTIONS(209), - [sym_em_dash] = ACTIONS(209), - [sym_en_dash] = ACTIONS(211), - [sym_backslash_escape] = ACTIONS(211), - [anon_sym_LT] = ACTIONS(213), - [sym_symbol] = ACTIONS(209), - [anon_sym_LBRACK_CARET] = ACTIONS(215), - [anon_sym_BANG_LBRACK] = ACTIONS(217), - [anon_sym_LBRACK] = ACTIONS(219), - [anon_sym_DOLLAR] = ACTIONS(221), - [anon_sym_TODO] = ACTIONS(223), - [anon_sym_WIP] = ACTIONS(223), - [anon_sym_NOTE] = ACTIONS(225), - [anon_sym_INFO] = ACTIONS(225), - [anon_sym_XXX] = ACTIONS(225), - [sym_fixme] = ACTIONS(209), - [sym__whitespace1] = ACTIONS(227), - [sym__newline] = ACTIONS(229), - [aux_sym__text_token1] = ACTIONS(231), - [sym__verbatim_begin] = ACTIONS(233), + [sym__inline] = STATE(863), + [sym__element] = STATE(37), + [sym_emphasis] = STATE(131), + [sym_emphasis_begin] = STATE(1132), + [sym_strong] = STATE(131), + [sym_strong_begin] = STATE(1133), + [sym_superscript] = STATE(131), + [sym_superscript_begin] = STATE(1134), + [sym_subscript] = STATE(131), + [sym_subscript_begin] = STATE(1135), + [sym_highlighted] = STATE(131), + [sym_highlighted_begin] = STATE(1136), + [sym_insert] = STATE(131), + [sym_insert_begin] = STATE(1137), + [sym_delete] = STATE(131), + [sym_delete_begin] = STATE(1138), + [sym_hard_line_break] = STATE(131), + [sym__smart_punctuation] = STATE(131), + [sym_autolink] = STATE(131), + [sym_footnote_reference] = STATE(131), + [sym_footnote_marker_begin] = STATE(1139), + [sym__image] = STATE(131), + [sym_full_reference_image] = STATE(131), + [sym_collapsed_reference_image] = STATE(131), + [sym_inline_image] = STATE(131), + [sym_image_description] = STATE(643), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(131), + [sym_full_reference_link] = STATE(131), + [sym_collapsed_reference_link] = STATE(131), + [sym_inline_link] = STATE(131), + [sym_link_text] = STATE(619), + [sym_span] = STATE(37), + [sym__bracketed_text_begin] = STATE(1187), + [sym__comment_with_spaces] = STATE(131), + [sym_raw_inline] = STATE(131), + [sym_math] = STATE(131), + [sym_verbatim] = STATE(131), + [sym__todo_highlights] = STATE(131), + [sym_todo] = STATE(131), + [sym_note] = STATE(131), + [sym__symbol_fallback] = STATE(131), + [aux_sym__text] = STATE(123), + [aux_sym__inline_repeat1] = STATE(37), + [anon_sym_LBRACE_] = ACTIONS(537), + [anon_sym__] = ACTIONS(539), + [anon_sym_LBRACE_STAR] = ACTIONS(541), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE_CARET] = ACTIONS(545), + [anon_sym_CARET] = ACTIONS(545), + [anon_sym_LBRACE_TILDE] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(547), + [anon_sym_LBRACE_EQ] = ACTIONS(549), + [anon_sym_LBRACE_PLUS] = ACTIONS(551), + [anon_sym_LBRACE_DASH] = ACTIONS(553), + [anon_sym_BSLASH] = ACTIONS(555), + [sym_quotation_marks] = ACTIONS(557), + [sym_ellipsis] = ACTIONS(557), + [sym_em_dash] = ACTIONS(557), + [sym_en_dash] = ACTIONS(559), + [sym_backslash_escape] = ACTIONS(559), + [anon_sym_LT] = ACTIONS(561), + [sym_symbol] = ACTIONS(557), + [anon_sym_LBRACK_CARET] = ACTIONS(563), + [anon_sym_BANG_LBRACK] = ACTIONS(565), + [anon_sym_LBRACK] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_DOLLAR] = ACTIONS(571), + [anon_sym_TODO] = ACTIONS(573), + [anon_sym_WIP] = ACTIONS(573), + [anon_sym_NOTE] = ACTIONS(575), + [anon_sym_INFO] = ACTIONS(575), + [anon_sym_XXX] = ACTIONS(575), + [sym_fixme] = ACTIONS(557), + [sym__whitespace1] = ACTIONS(577), + [sym__newline] = ACTIONS(579), + [aux_sym__text_token1] = ACTIONS(581), + [sym__verbatim_begin] = ACTIONS(583), }, [79] = { - [sym__inline] = STATE(997), - [sym__element] = STATE(124), - [sym_emphasis] = STATE(151), - [sym_emphasis_begin] = STATE(1181), - [sym_strong] = STATE(151), - [sym_strong_begin] = STATE(1182), - [sym_superscript] = STATE(151), - [sym_superscript_begin] = STATE(1183), - [sym_subscript] = STATE(151), - [sym_subscript_begin] = STATE(1184), - [sym_highlighted] = STATE(151), - [sym_highlighted_begin] = STATE(1185), - [sym_insert] = STATE(151), - [sym_insert_begin] = STATE(1186), - [sym_delete] = STATE(151), - [sym_delete_begin] = STATE(1187), - [sym_hard_line_break] = STATE(151), - [sym__smart_punctuation] = STATE(151), - [sym_autolink] = STATE(151), - [sym_footnote_reference] = STATE(151), - [sym_footnote_marker_begin] = STATE(1188), - [sym__image] = STATE(151), - [sym_full_reference_image] = STATE(151), - [sym_collapsed_reference_image] = STATE(151), - [sym_inline_image] = STATE(151), - [sym_image_description] = STATE(700), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(151), - [sym_full_reference_link] = STATE(151), - [sym_collapsed_reference_link] = STATE(151), - [sym_inline_link] = STATE(151), - [sym_link_text] = STATE(701), - [sym_span] = STATE(124), - [sym__bracketed_text_begin] = STATE(1264), - [sym__comment_with_spaces] = STATE(151), - [sym_raw_inline] = STATE(151), - [sym_math] = STATE(151), - [sym_verbatim] = STATE(151), - [sym__todo_highlights] = STATE(151), - [sym_todo] = STATE(151), - [sym_note] = STATE(151), - [sym__symbol_fallback] = STATE(151), - [aux_sym__text] = STATE(140), - [aux_sym__inline_repeat1] = STATE(124), - [anon_sym_LBRACE_] = ACTIONS(143), - [anon_sym__] = ACTIONS(145), - [anon_sym_LBRACE_STAR] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_LBRACE_CARET] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(151), - [anon_sym_LBRACE_TILDE] = ACTIONS(153), - [anon_sym_TILDE] = ACTIONS(153), - [anon_sym_LBRACE_EQ] = ACTIONS(155), - [anon_sym_LBRACE_PLUS] = ACTIONS(157), - [anon_sym_LBRACE_DASH] = ACTIONS(159), - [anon_sym_BSLASH] = ACTIONS(161), - [sym_quotation_marks] = ACTIONS(163), - [sym_ellipsis] = ACTIONS(163), - [sym_em_dash] = ACTIONS(163), - [sym_en_dash] = ACTIONS(165), - [sym_backslash_escape] = ACTIONS(165), - [anon_sym_LT] = ACTIONS(167), - [sym_symbol] = ACTIONS(163), - [anon_sym_LBRACK_CARET] = ACTIONS(169), - [anon_sym_BANG_LBRACK] = ACTIONS(171), - [anon_sym_LBRACK] = ACTIONS(173), - [anon_sym_DOLLAR] = ACTIONS(175), - [anon_sym_TODO] = ACTIONS(177), - [anon_sym_WIP] = ACTIONS(177), - [anon_sym_NOTE] = ACTIONS(179), - [anon_sym_INFO] = ACTIONS(179), - [anon_sym_XXX] = ACTIONS(179), - [sym_fixme] = ACTIONS(163), - [sym__whitespace1] = ACTIONS(181), - [sym__newline] = ACTIONS(183), - [aux_sym__text_token1] = ACTIONS(185), - [sym__verbatim_begin] = ACTIONS(187), + [sym__inline] = STATE(864), + [sym__element] = STATE(14), + [sym_emphasis] = STATE(136), + [sym_emphasis_begin] = STATE(1122), + [sym_strong] = STATE(136), + [sym_strong_begin] = STATE(1123), + [sym_superscript] = STATE(136), + [sym_superscript_begin] = STATE(1124), + [sym_subscript] = STATE(136), + [sym_subscript_begin] = STATE(1125), + [sym_highlighted] = STATE(136), + [sym_highlighted_begin] = STATE(1126), + [sym_insert] = STATE(136), + [sym_insert_begin] = STATE(1127), + [sym_delete] = STATE(136), + [sym_delete_begin] = STATE(1128), + [sym_hard_line_break] = STATE(136), + [sym__smart_punctuation] = STATE(136), + [sym_autolink] = STATE(136), + [sym_footnote_reference] = STATE(136), + [sym_footnote_marker_begin] = STATE(1129), + [sym__image] = STATE(136), + [sym_full_reference_image] = STATE(136), + [sym_collapsed_reference_image] = STATE(136), + [sym_inline_image] = STATE(136), + [sym_image_description] = STATE(651), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(136), + [sym_full_reference_link] = STATE(136), + [sym_collapsed_reference_link] = STATE(136), + [sym_inline_link] = STATE(136), + [sym_link_text] = STATE(650), + [sym_span] = STATE(14), + [sym__bracketed_text_begin] = STATE(1186), + [sym__comment_with_spaces] = STATE(136), + [sym_raw_inline] = STATE(136), + [sym_math] = STATE(136), + [sym_verbatim] = STATE(136), + [sym__todo_highlights] = STATE(136), + [sym_todo] = STATE(136), + [sym_note] = STATE(136), + [sym__symbol_fallback] = STATE(136), + [aux_sym__text] = STATE(130), + [aux_sym__inline_repeat1] = STATE(14), + [anon_sym_LBRACE_] = ACTIONS(319), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_STAR] = ACTIONS(323), + [anon_sym_STAR] = ACTIONS(325), + [anon_sym_LBRACE_CARET] = ACTIONS(327), + [anon_sym_CARET] = ACTIONS(327), + [anon_sym_LBRACE_TILDE] = ACTIONS(329), + [anon_sym_TILDE] = ACTIONS(329), + [anon_sym_LBRACE_EQ] = ACTIONS(331), + [anon_sym_LBRACE_PLUS] = ACTIONS(333), + [anon_sym_LBRACE_DASH] = ACTIONS(335), + [anon_sym_BSLASH] = ACTIONS(337), + [sym_quotation_marks] = ACTIONS(339), + [sym_ellipsis] = ACTIONS(339), + [sym_em_dash] = ACTIONS(339), + [sym_en_dash] = ACTIONS(341), + [sym_backslash_escape] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [sym_symbol] = ACTIONS(339), + [anon_sym_LBRACK_CARET] = ACTIONS(345), + [anon_sym_BANG_LBRACK] = ACTIONS(347), + [anon_sym_LBRACK] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_DOLLAR] = ACTIONS(353), + [anon_sym_TODO] = ACTIONS(355), + [anon_sym_WIP] = ACTIONS(355), + [anon_sym_NOTE] = ACTIONS(357), + [anon_sym_INFO] = ACTIONS(357), + [anon_sym_XXX] = ACTIONS(357), + [sym_fixme] = ACTIONS(339), + [sym__whitespace1] = ACTIONS(359), + [sym__newline] = ACTIONS(635), + [aux_sym__text_token1] = ACTIONS(363), + [sym__verbatim_begin] = ACTIONS(365), }, [80] = { - [sym__element] = STATE(68), - [sym_emphasis] = STATE(145), - [sym_emphasis_begin] = STATE(1190), - [sym_strong] = STATE(145), - [sym_strong_begin] = STATE(1191), - [sym_superscript] = STATE(145), - [sym_superscript_begin] = STATE(1192), - [sym_subscript] = STATE(145), - [sym_subscript_begin] = STATE(1193), - [sym_highlighted] = STATE(145), - [sym_highlighted_begin] = STATE(1194), - [sym_insert] = STATE(145), - [sym_insert_begin] = STATE(1195), - [sym_delete] = STATE(145), - [sym_delete_begin] = STATE(1196), - [sym_hard_line_break] = STATE(145), - [sym__smart_punctuation] = STATE(145), - [sym_autolink] = STATE(145), - [sym_footnote_reference] = STATE(145), - [sym_footnote_marker_begin] = STATE(1197), - [sym__image] = STATE(145), - [sym_full_reference_image] = STATE(145), - [sym_collapsed_reference_image] = STATE(145), - [sym_inline_image] = STATE(145), - [sym_image_description] = STATE(696), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(145), - [sym_full_reference_link] = STATE(145), - [sym_collapsed_reference_link] = STATE(145), - [sym_inline_link] = STATE(145), - [sym_link_text] = STATE(691), - [sym_span] = STATE(68), - [sym__bracketed_text_begin] = STATE(1265), - [sym__comment_with_spaces] = STATE(145), - [sym_raw_inline] = STATE(145), - [sym_math] = STATE(145), - [sym_verbatim] = STATE(145), - [sym__todo_highlights] = STATE(145), - [sym_todo] = STATE(145), - [sym_note] = STATE(145), - [sym__symbol_fallback] = STATE(145), - [aux_sym__text] = STATE(138), - [aux_sym__inline_repeat1] = STATE(68), - [anon_sym_LBRACE_] = ACTIONS(542), - [anon_sym__] = ACTIONS(544), - [anon_sym_LBRACE_STAR] = ACTIONS(546), - [anon_sym_STAR] = ACTIONS(548), - [anon_sym_LBRACE_CARET] = ACTIONS(550), - [anon_sym_CARET] = ACTIONS(550), - [anon_sym_LBRACE_TILDE] = ACTIONS(552), - [anon_sym_TILDE] = ACTIONS(552), - [anon_sym_LBRACE_EQ] = ACTIONS(554), - [anon_sym_LBRACE_PLUS] = ACTIONS(556), - [anon_sym_LBRACE_DASH] = ACTIONS(558), - [anon_sym_BSLASH] = ACTIONS(560), - [sym_quotation_marks] = ACTIONS(562), - [sym_ellipsis] = ACTIONS(562), - [sym_em_dash] = ACTIONS(562), - [sym_en_dash] = ACTIONS(564), - [sym_backslash_escape] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(566), - [sym_symbol] = ACTIONS(562), - [anon_sym_LBRACK_CARET] = ACTIONS(568), - [anon_sym_BANG_LBRACK] = ACTIONS(570), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_DOLLAR] = ACTIONS(574), - [anon_sym_TODO] = ACTIONS(576), - [anon_sym_WIP] = ACTIONS(576), - [anon_sym_NOTE] = ACTIONS(578), - [anon_sym_INFO] = ACTIONS(578), - [anon_sym_XXX] = ACTIONS(578), - [sym_fixme] = ACTIONS(562), - [sym__whitespace1] = ACTIONS(580), - [sym__newline] = ACTIONS(868), - [aux_sym__text_token1] = ACTIONS(584), - [sym__verbatim_begin] = ACTIONS(586), - [sym_subscript_end] = ACTIONS(283), + [sym__inline_without_trailing_space] = STATE(1141), + [sym__element] = STATE(536), + [sym_emphasis] = STATE(138), + [sym_emphasis_begin] = STATE(1092), + [sym_strong] = STATE(138), + [sym_strong_begin] = STATE(1093), + [sym_superscript] = STATE(138), + [sym_superscript_begin] = STATE(1094), + [sym_subscript] = STATE(138), + [sym_subscript_begin] = STATE(1095), + [sym_highlighted] = STATE(138), + [sym_highlighted_begin] = STATE(1096), + [sym_insert] = STATE(138), + [sym_insert_begin] = STATE(1097), + [sym_delete] = STATE(138), + [sym_delete_begin] = STATE(1098), + [sym_hard_line_break] = STATE(138), + [sym__smart_punctuation] = STATE(138), + [sym_autolink] = STATE(138), + [sym_footnote_reference] = STATE(138), + [sym_footnote_marker_begin] = STATE(1099), + [sym__image] = STATE(138), + [sym_full_reference_image] = STATE(138), + [sym_collapsed_reference_image] = STATE(138), + [sym_inline_image] = STATE(138), + [sym_image_description] = STATE(626), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(138), + [sym_full_reference_link] = STATE(138), + [sym_collapsed_reference_link] = STATE(138), + [sym_inline_link] = STATE(138), + [sym_link_text] = STATE(627), + [sym_span] = STATE(536), + [sym__bracketed_text_begin] = STATE(1183), + [sym__comment_with_spaces] = STATE(138), + [sym_raw_inline] = STATE(138), + [sym_math] = STATE(138), + [sym_verbatim] = STATE(138), + [sym__todo_highlights] = STATE(138), + [sym_todo] = STATE(138), + [sym_note] = STATE(138), + [sym__symbol_fallback] = STATE(138), + [aux_sym__text] = STATE(127), + [aux_sym__inline_repeat1] = STATE(118), + [anon_sym_LBRACE_] = ACTIONS(149), + [anon_sym__] = ACTIONS(151), + [anon_sym_LBRACE_STAR] = ACTIONS(153), + [anon_sym_STAR] = ACTIONS(155), + [anon_sym_LBRACE_CARET] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_LBRACE_TILDE] = ACTIONS(159), + [anon_sym_TILDE] = ACTIONS(159), + [anon_sym_LBRACE_EQ] = ACTIONS(161), + [anon_sym_LBRACE_PLUS] = ACTIONS(163), + [anon_sym_LBRACE_DASH] = ACTIONS(165), + [anon_sym_BSLASH] = ACTIONS(167), + [sym_quotation_marks] = ACTIONS(169), + [sym_ellipsis] = ACTIONS(169), + [sym_em_dash] = ACTIONS(169), + [sym_en_dash] = ACTIONS(171), + [sym_backslash_escape] = ACTIONS(171), + [anon_sym_LT] = ACTIONS(173), + [sym_symbol] = ACTIONS(169), + [anon_sym_LBRACK_CARET] = ACTIONS(175), + [anon_sym_BANG_LBRACK] = ACTIONS(177), + [anon_sym_LBRACK] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(181), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_TODO] = ACTIONS(185), + [anon_sym_WIP] = ACTIONS(185), + [anon_sym_NOTE] = ACTIONS(187), + [anon_sym_INFO] = ACTIONS(187), + [anon_sym_XXX] = ACTIONS(187), + [sym_fixme] = ACTIONS(169), + [sym__whitespace1] = ACTIONS(189), + [sym__newline] = ACTIONS(191), + [aux_sym__text_token1] = ACTIONS(193), + [sym__verbatim_begin] = ACTIONS(195), }, [81] = { - [sym__inline] = STATE(923), - [sym__element] = STATE(7), - [sym_emphasis] = STATE(153), - [sym_emphasis_begin] = STATE(1208), - [sym_strong] = STATE(153), - [sym_strong_begin] = STATE(1209), - [sym_superscript] = STATE(153), - [sym_superscript_begin] = STATE(1210), - [sym_subscript] = STATE(153), - [sym_subscript_begin] = STATE(1211), - [sym_highlighted] = STATE(153), - [sym_highlighted_begin] = STATE(1212), - [sym_insert] = STATE(153), - [sym_insert_begin] = STATE(1213), - [sym_delete] = STATE(153), - [sym_delete_begin] = STATE(1214), - [sym_hard_line_break] = STATE(153), - [sym__smart_punctuation] = STATE(153), - [sym_autolink] = STATE(153), - [sym_footnote_reference] = STATE(153), - [sym_footnote_marker_begin] = STATE(1215), - [sym__image] = STATE(153), - [sym_full_reference_image] = STATE(153), - [sym_collapsed_reference_image] = STATE(153), - [sym_inline_image] = STATE(153), - [sym_image_description] = STATE(707), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(153), - [sym_full_reference_link] = STATE(153), - [sym_collapsed_reference_link] = STATE(153), - [sym_inline_link] = STATE(153), - [sym_link_text] = STATE(705), - [sym_span] = STATE(7), - [sym__bracketed_text_begin] = STATE(1267), - [sym__comment_with_spaces] = STATE(153), - [sym_raw_inline] = STATE(153), - [sym_math] = STATE(153), - [sym_verbatim] = STATE(153), - [sym__todo_highlights] = STATE(153), - [sym_todo] = STATE(153), - [sym_note] = STATE(153), - [sym__symbol_fallback] = STATE(153), - [aux_sym__text] = STATE(134), - [aux_sym__inline_repeat1] = STATE(7), - [anon_sym_LBRACE_] = ACTIONS(97), - [anon_sym__] = ACTIONS(99), - [anon_sym_LBRACE_STAR] = ACTIONS(101), - [anon_sym_STAR] = ACTIONS(103), - [anon_sym_LBRACE_CARET] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [anon_sym_LBRACE_TILDE] = ACTIONS(107), - [anon_sym_TILDE] = ACTIONS(107), - [anon_sym_LBRACE_EQ] = ACTIONS(109), - [anon_sym_LBRACE_PLUS] = ACTIONS(111), - [anon_sym_LBRACE_DASH] = ACTIONS(113), - [anon_sym_BSLASH] = ACTIONS(115), - [sym_quotation_marks] = ACTIONS(117), - [sym_ellipsis] = ACTIONS(117), - [sym_em_dash] = ACTIONS(117), - [sym_en_dash] = ACTIONS(119), - [sym_backslash_escape] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [sym_symbol] = ACTIONS(117), - [anon_sym_LBRACK_CARET] = ACTIONS(123), - [anon_sym_BANG_LBRACK] = ACTIONS(125), - [anon_sym_LBRACK] = ACTIONS(127), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_TODO] = ACTIONS(131), - [anon_sym_WIP] = ACTIONS(131), - [anon_sym_NOTE] = ACTIONS(133), - [anon_sym_INFO] = ACTIONS(133), - [anon_sym_XXX] = ACTIONS(133), - [sym_fixme] = ACTIONS(117), - [sym__whitespace1] = ACTIONS(135), - [sym__newline] = ACTIONS(137), - [aux_sym__text_token1] = ACTIONS(139), - [sym__verbatim_begin] = ACTIONS(141), + [sym__element] = STATE(81), + [sym_emphasis] = STATE(133), + [sym_emphasis_begin] = STATE(1142), + [sym_strong] = STATE(133), + [sym_strong_begin] = STATE(1143), + [sym_superscript] = STATE(133), + [sym_superscript_begin] = STATE(1144), + [sym_subscript] = STATE(133), + [sym_subscript_begin] = STATE(1145), + [sym_highlighted] = STATE(133), + [sym_highlighted_begin] = STATE(1146), + [sym_insert] = STATE(133), + [sym_insert_begin] = STATE(1147), + [sym_delete] = STATE(133), + [sym_delete_begin] = STATE(1148), + [sym_hard_line_break] = STATE(133), + [sym__smart_punctuation] = STATE(133), + [sym_autolink] = STATE(133), + [sym_footnote_reference] = STATE(133), + [sym_footnote_marker_begin] = STATE(1149), + [sym__image] = STATE(133), + [sym_full_reference_image] = STATE(133), + [sym_collapsed_reference_image] = STATE(133), + [sym_inline_image] = STATE(133), + [sym_image_description] = STATE(638), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(133), + [sym_full_reference_link] = STATE(133), + [sym_collapsed_reference_link] = STATE(133), + [sym_inline_link] = STATE(133), + [sym_link_text] = STATE(637), + [sym_span] = STATE(81), + [sym__bracketed_text_begin] = STATE(1188), + [sym__comment_with_spaces] = STATE(133), + [sym_raw_inline] = STATE(133), + [sym_math] = STATE(133), + [sym_verbatim] = STATE(133), + [sym__todo_highlights] = STATE(133), + [sym_todo] = STATE(133), + [sym_note] = STATE(133), + [sym__symbol_fallback] = STATE(133), + [aux_sym__text] = STATE(129), + [aux_sym__inline_repeat1] = STATE(81), + [anon_sym_LBRACE_] = ACTIONS(861), + [anon_sym__] = ACTIONS(864), + [anon_sym_LBRACE_STAR] = ACTIONS(867), + [anon_sym_STAR] = ACTIONS(870), + [anon_sym_LBRACE_CARET] = ACTIONS(873), + [anon_sym_CARET] = ACTIONS(873), + [anon_sym_LBRACE_TILDE] = ACTIONS(876), + [anon_sym_TILDE] = ACTIONS(876), + [anon_sym_LBRACE_EQ] = ACTIONS(879), + [anon_sym_LBRACE_PLUS] = ACTIONS(882), + [anon_sym_LBRACE_DASH] = ACTIONS(885), + [anon_sym_BSLASH] = ACTIONS(888), + [sym_quotation_marks] = ACTIONS(891), + [sym_ellipsis] = ACTIONS(891), + [sym_em_dash] = ACTIONS(891), + [sym_en_dash] = ACTIONS(894), + [sym_backslash_escape] = ACTIONS(894), + [anon_sym_LT] = ACTIONS(897), + [sym_symbol] = ACTIONS(891), + [anon_sym_LBRACK_CARET] = ACTIONS(900), + [anon_sym_BANG_LBRACK] = ACTIONS(903), + [anon_sym_LBRACK] = ACTIONS(906), + [anon_sym_LPAREN] = ACTIONS(909), + [anon_sym_DOLLAR] = ACTIONS(912), + [anon_sym_TODO] = ACTIONS(915), + [anon_sym_WIP] = ACTIONS(915), + [anon_sym_NOTE] = ACTIONS(918), + [anon_sym_INFO] = ACTIONS(918), + [anon_sym_XXX] = ACTIONS(918), + [sym_fixme] = ACTIONS(891), + [sym__whitespace1] = ACTIONS(921), + [sym__newline] = ACTIONS(924), + [aux_sym__text_token1] = ACTIONS(927), + [sym__verbatim_begin] = ACTIONS(930), + [sym_delete_end] = ACTIONS(317), }, [82] = { - [sym__inline] = STATE(924), - [sym__element] = STATE(21), - [sym_emphasis] = STATE(149), - [sym_emphasis_begin] = STATE(1199), - [sym_strong] = STATE(149), - [sym_strong_begin] = STATE(1200), - [sym_superscript] = STATE(149), - [sym_superscript_begin] = STATE(1201), - [sym_subscript] = STATE(149), - [sym_subscript_begin] = STATE(1202), - [sym_highlighted] = STATE(149), - [sym_highlighted_begin] = STATE(1203), - [sym_insert] = STATE(149), - [sym_insert_begin] = STATE(1204), - [sym_delete] = STATE(149), - [sym_delete_begin] = STATE(1205), - [sym_hard_line_break] = STATE(149), - [sym__smart_punctuation] = STATE(149), - [sym_autolink] = STATE(149), - [sym_footnote_reference] = STATE(149), - [sym_footnote_marker_begin] = STATE(1206), - [sym__image] = STATE(149), - [sym_full_reference_image] = STATE(149), - [sym_collapsed_reference_image] = STATE(149), - [sym_inline_image] = STATE(149), - [sym_image_description] = STATE(714), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(149), - [sym_full_reference_link] = STATE(149), - [sym_collapsed_reference_link] = STATE(149), - [sym_inline_link] = STATE(149), - [sym_link_text] = STATE(710), - [sym_span] = STATE(21), - [sym__bracketed_text_begin] = STATE(1266), - [sym__comment_with_spaces] = STATE(149), - [sym_raw_inline] = STATE(149), - [sym_math] = STATE(149), - [sym_verbatim] = STATE(149), - [sym__todo_highlights] = STATE(149), - [sym_todo] = STATE(149), - [sym_note] = STATE(149), - [sym__symbol_fallback] = STATE(149), - [aux_sym__text] = STATE(142), - [aux_sym__inline_repeat1] = STATE(21), - [anon_sym_LBRACE_] = ACTIONS(494), - [anon_sym__] = ACTIONS(496), - [anon_sym_LBRACE_STAR] = ACTIONS(498), - [anon_sym_STAR] = ACTIONS(500), - [anon_sym_LBRACE_CARET] = ACTIONS(502), - [anon_sym_CARET] = ACTIONS(502), - [anon_sym_LBRACE_TILDE] = ACTIONS(504), - [anon_sym_TILDE] = ACTIONS(504), - [anon_sym_LBRACE_EQ] = ACTIONS(506), - [anon_sym_LBRACE_PLUS] = ACTIONS(508), - [anon_sym_LBRACE_DASH] = ACTIONS(510), - [anon_sym_BSLASH] = ACTIONS(512), - [sym_quotation_marks] = ACTIONS(514), - [sym_ellipsis] = ACTIONS(514), - [sym_em_dash] = ACTIONS(514), - [sym_en_dash] = ACTIONS(516), - [sym_backslash_escape] = ACTIONS(516), - [anon_sym_LT] = ACTIONS(518), - [sym_symbol] = ACTIONS(514), - [anon_sym_LBRACK_CARET] = ACTIONS(520), - [anon_sym_BANG_LBRACK] = ACTIONS(522), - [anon_sym_LBRACK] = ACTIONS(524), - [anon_sym_DOLLAR] = ACTIONS(526), - [anon_sym_TODO] = ACTIONS(528), - [anon_sym_WIP] = ACTIONS(528), - [anon_sym_NOTE] = ACTIONS(530), - [anon_sym_INFO] = ACTIONS(530), - [anon_sym_XXX] = ACTIONS(530), - [sym_fixme] = ACTIONS(514), - [sym__whitespace1] = ACTIONS(532), - [sym__newline] = ACTIONS(540), - [aux_sym__text_token1] = ACTIONS(536), - [sym__verbatim_begin] = ACTIONS(538), + [sym__inline] = STATE(866), + [sym__element] = STATE(22), + [sym_emphasis] = STATE(137), + [sym_emphasis_begin] = STATE(1112), + [sym_strong] = STATE(137), + [sym_strong_begin] = STATE(1113), + [sym_superscript] = STATE(137), + [sym_superscript_begin] = STATE(1114), + [sym_subscript] = STATE(137), + [sym_subscript_begin] = STATE(1115), + [sym_highlighted] = STATE(137), + [sym_highlighted_begin] = STATE(1116), + [sym_insert] = STATE(137), + [sym_insert_begin] = STATE(1117), + [sym_delete] = STATE(137), + [sym_delete_begin] = STATE(1118), + [sym_hard_line_break] = STATE(137), + [sym__smart_punctuation] = STATE(137), + [sym_autolink] = STATE(137), + [sym_footnote_reference] = STATE(137), + [sym_footnote_marker_begin] = STATE(1119), + [sym__image] = STATE(137), + [sym_full_reference_image] = STATE(137), + [sym_collapsed_reference_image] = STATE(137), + [sym_inline_image] = STATE(137), + [sym_image_description] = STATE(636), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(137), + [sym_full_reference_link] = STATE(137), + [sym_collapsed_reference_link] = STATE(137), + [sym_inline_link] = STATE(137), + [sym_link_text] = STATE(647), + [sym_span] = STATE(22), + [sym__bracketed_text_begin] = STATE(1185), + [sym__comment_with_spaces] = STATE(137), + [sym_raw_inline] = STATE(137), + [sym_math] = STATE(137), + [sym_verbatim] = STATE(137), + [sym__todo_highlights] = STATE(137), + [sym_todo] = STATE(137), + [sym_note] = STATE(137), + [sym__symbol_fallback] = STATE(137), + [aux_sym__text] = STATE(122), + [aux_sym__inline_repeat1] = STATE(22), + [anon_sym_LBRACE_] = ACTIONS(197), + [anon_sym__] = ACTIONS(199), + [anon_sym_LBRACE_STAR] = ACTIONS(201), + [anon_sym_STAR] = ACTIONS(203), + [anon_sym_LBRACE_CARET] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(205), + [anon_sym_LBRACE_TILDE] = ACTIONS(207), + [anon_sym_TILDE] = ACTIONS(207), + [anon_sym_LBRACE_EQ] = ACTIONS(209), + [anon_sym_LBRACE_PLUS] = ACTIONS(211), + [anon_sym_LBRACE_DASH] = ACTIONS(213), + [anon_sym_BSLASH] = ACTIONS(215), + [sym_quotation_marks] = ACTIONS(217), + [sym_ellipsis] = ACTIONS(217), + [sym_em_dash] = ACTIONS(217), + [sym_en_dash] = ACTIONS(219), + [sym_backslash_escape] = ACTIONS(219), + [anon_sym_LT] = ACTIONS(221), + [sym_symbol] = ACTIONS(217), + [anon_sym_LBRACK_CARET] = ACTIONS(223), + [anon_sym_BANG_LBRACK] = ACTIONS(225), + [anon_sym_LBRACK] = ACTIONS(227), + [anon_sym_LPAREN] = ACTIONS(229), + [anon_sym_DOLLAR] = ACTIONS(231), + [anon_sym_TODO] = ACTIONS(233), + [anon_sym_WIP] = ACTIONS(233), + [anon_sym_NOTE] = ACTIONS(235), + [anon_sym_INFO] = ACTIONS(235), + [anon_sym_XXX] = ACTIONS(235), + [sym_fixme] = ACTIONS(217), + [sym__whitespace1] = ACTIONS(237), + [sym__newline] = ACTIONS(239), + [aux_sym__text_token1] = ACTIONS(241), + [sym__verbatim_begin] = ACTIONS(243), }, [83] = { - [sym__inline] = STATE(925), - [sym__element] = STATE(80), - [sym_emphasis] = STATE(145), - [sym_emphasis_begin] = STATE(1190), - [sym_strong] = STATE(145), - [sym_strong_begin] = STATE(1191), - [sym_superscript] = STATE(145), - [sym_superscript_begin] = STATE(1192), - [sym_subscript] = STATE(145), - [sym_subscript_begin] = STATE(1193), - [sym_highlighted] = STATE(145), - [sym_highlighted_begin] = STATE(1194), - [sym_insert] = STATE(145), - [sym_insert_begin] = STATE(1195), - [sym_delete] = STATE(145), - [sym_delete_begin] = STATE(1196), - [sym_hard_line_break] = STATE(145), - [sym__smart_punctuation] = STATE(145), - [sym_autolink] = STATE(145), - [sym_footnote_reference] = STATE(145), - [sym_footnote_marker_begin] = STATE(1197), - [sym__image] = STATE(145), - [sym_full_reference_image] = STATE(145), - [sym_collapsed_reference_image] = STATE(145), - [sym_inline_image] = STATE(145), - [sym_image_description] = STATE(696), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(145), - [sym_full_reference_link] = STATE(145), - [sym_collapsed_reference_link] = STATE(145), - [sym_inline_link] = STATE(145), - [sym_link_text] = STATE(691), - [sym_span] = STATE(80), - [sym__bracketed_text_begin] = STATE(1265), - [sym__comment_with_spaces] = STATE(145), - [sym_raw_inline] = STATE(145), - [sym_math] = STATE(145), - [sym_verbatim] = STATE(145), - [sym__todo_highlights] = STATE(145), - [sym_todo] = STATE(145), - [sym_note] = STATE(145), - [sym__symbol_fallback] = STATE(145), - [aux_sym__text] = STATE(138), - [aux_sym__inline_repeat1] = STATE(80), - [anon_sym_LBRACE_] = ACTIONS(542), - [anon_sym__] = ACTIONS(544), - [anon_sym_LBRACE_STAR] = ACTIONS(546), - [anon_sym_STAR] = ACTIONS(548), - [anon_sym_LBRACE_CARET] = ACTIONS(550), - [anon_sym_CARET] = ACTIONS(550), - [anon_sym_LBRACE_TILDE] = ACTIONS(552), - [anon_sym_TILDE] = ACTIONS(552), - [anon_sym_LBRACE_EQ] = ACTIONS(554), - [anon_sym_LBRACE_PLUS] = ACTIONS(556), - [anon_sym_LBRACE_DASH] = ACTIONS(558), - [anon_sym_BSLASH] = ACTIONS(560), - [sym_quotation_marks] = ACTIONS(562), - [sym_ellipsis] = ACTIONS(562), - [sym_em_dash] = ACTIONS(562), - [sym_en_dash] = ACTIONS(564), - [sym_backslash_escape] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(566), - [sym_symbol] = ACTIONS(562), - [anon_sym_LBRACK_CARET] = ACTIONS(568), - [anon_sym_BANG_LBRACK] = ACTIONS(570), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_DOLLAR] = ACTIONS(574), - [anon_sym_TODO] = ACTIONS(576), - [anon_sym_WIP] = ACTIONS(576), - [anon_sym_NOTE] = ACTIONS(578), - [anon_sym_INFO] = ACTIONS(578), - [anon_sym_XXX] = ACTIONS(578), - [sym_fixme] = ACTIONS(562), - [sym__whitespace1] = ACTIONS(580), - [sym__newline] = ACTIONS(582), - [aux_sym__text_token1] = ACTIONS(584), - [sym__verbatim_begin] = ACTIONS(586), + [sym__inline] = STATE(868), + [sym__element] = STATE(106), + [sym_emphasis] = STATE(139), + [sym_emphasis_begin] = STATE(1102), + [sym_strong] = STATE(139), + [sym_strong_begin] = STATE(1103), + [sym_superscript] = STATE(139), + [sym_superscript_begin] = STATE(1104), + [sym_subscript] = STATE(139), + [sym_subscript_begin] = STATE(1105), + [sym_highlighted] = STATE(139), + [sym_highlighted_begin] = STATE(1106), + [sym_insert] = STATE(139), + [sym_insert_begin] = STATE(1107), + [sym_delete] = STATE(139), + [sym_delete_begin] = STATE(1108), + [sym_hard_line_break] = STATE(139), + [sym__smart_punctuation] = STATE(139), + [sym_autolink] = STATE(139), + [sym_footnote_reference] = STATE(139), + [sym_footnote_marker_begin] = STATE(1109), + [sym__image] = STATE(139), + [sym_full_reference_image] = STATE(139), + [sym_collapsed_reference_image] = STATE(139), + [sym_inline_image] = STATE(139), + [sym_image_description] = STATE(623), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(139), + [sym_full_reference_link] = STATE(139), + [sym_collapsed_reference_link] = STATE(139), + [sym_inline_link] = STATE(139), + [sym_link_text] = STATE(621), + [sym_span] = STATE(106), + [sym__bracketed_text_begin] = STATE(1184), + [sym__comment_with_spaces] = STATE(139), + [sym_raw_inline] = STATE(139), + [sym_math] = STATE(139), + [sym_verbatim] = STATE(139), + [sym__todo_highlights] = STATE(139), + [sym_todo] = STATE(139), + [sym_note] = STATE(139), + [sym__symbol_fallback] = STATE(139), + [aux_sym__text] = STATE(126), + [aux_sym__inline_repeat1] = STATE(106), + [anon_sym_LBRACE_] = ACTIONS(101), + [anon_sym__] = ACTIONS(103), + [anon_sym_LBRACE_STAR] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(107), + [anon_sym_LBRACE_CARET] = ACTIONS(109), + [anon_sym_CARET] = ACTIONS(109), + [anon_sym_LBRACE_TILDE] = ACTIONS(111), + [anon_sym_TILDE] = ACTIONS(111), + [anon_sym_LBRACE_EQ] = ACTIONS(113), + [anon_sym_LBRACE_PLUS] = ACTIONS(115), + [anon_sym_LBRACE_DASH] = ACTIONS(117), + [anon_sym_BSLASH] = ACTIONS(119), + [sym_quotation_marks] = ACTIONS(121), + [sym_ellipsis] = ACTIONS(121), + [sym_em_dash] = ACTIONS(121), + [sym_en_dash] = ACTIONS(123), + [sym_backslash_escape] = ACTIONS(123), + [anon_sym_LT] = ACTIONS(125), + [sym_symbol] = ACTIONS(121), + [anon_sym_LBRACK_CARET] = ACTIONS(127), + [anon_sym_BANG_LBRACK] = ACTIONS(129), + [anon_sym_LBRACK] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_DOLLAR] = ACTIONS(135), + [anon_sym_TODO] = ACTIONS(137), + [anon_sym_WIP] = ACTIONS(137), + [anon_sym_NOTE] = ACTIONS(139), + [anon_sym_INFO] = ACTIONS(139), + [anon_sym_XXX] = ACTIONS(139), + [sym_fixme] = ACTIONS(121), + [sym__whitespace1] = ACTIONS(141), + [sym__newline] = ACTIONS(143), + [aux_sym__text_token1] = ACTIONS(145), + [sym__verbatim_begin] = ACTIONS(147), }, [84] = { - [sym__element] = STATE(120), - [sym_emphasis] = STATE(146), - [sym_emphasis_begin] = STATE(1226), - [sym_strong] = STATE(146), - [sym_strong_begin] = STATE(1227), - [sym_superscript] = STATE(146), - [sym_superscript_begin] = STATE(1228), - [sym_subscript] = STATE(146), - [sym_subscript_begin] = STATE(1229), - [sym_highlighted] = STATE(146), - [sym_highlighted_begin] = STATE(1230), - [sym_insert] = STATE(146), - [sym_insert_begin] = STATE(1231), - [sym_delete] = STATE(146), - [sym_delete_begin] = STATE(1232), - [sym_hard_line_break] = STATE(146), - [sym__smart_punctuation] = STATE(146), - [sym_autolink] = STATE(146), - [sym_footnote_reference] = STATE(146), - [sym_footnote_marker_begin] = STATE(1233), - [sym__image] = STATE(146), - [sym_full_reference_image] = STATE(146), - [sym_collapsed_reference_image] = STATE(146), - [sym_inline_image] = STATE(146), - [sym_image_description] = STATE(694), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(146), - [sym_full_reference_link] = STATE(146), - [sym_collapsed_reference_link] = STATE(146), - [sym_inline_link] = STATE(146), - [sym_link_text] = STATE(693), - [sym_span] = STATE(120), - [sym__bracketed_text_begin] = STATE(1269), - [sym__comment_with_spaces] = STATE(146), - [sym_raw_inline] = STATE(146), - [sym_math] = STATE(146), - [sym_verbatim] = STATE(146), - [sym__todo_highlights] = STATE(146), - [sym_todo] = STATE(146), - [sym_note] = STATE(146), - [sym__symbol_fallback] = STATE(146), - [aux_sym__text] = STATE(141), - [aux_sym__inline_repeat1] = STATE(120), - [anon_sym_LBRACE_] = ACTIONS(356), - [anon_sym__] = ACTIONS(358), - [anon_sym_LBRACE_STAR] = ACTIONS(360), - [anon_sym_STAR] = ACTIONS(362), - [anon_sym_LBRACE_CARET] = ACTIONS(364), - [anon_sym_CARET] = ACTIONS(364), - [anon_sym_LBRACE_TILDE] = ACTIONS(366), - [anon_sym_TILDE] = ACTIONS(366), - [anon_sym_LBRACE_EQ] = ACTIONS(368), - [anon_sym_LBRACE_PLUS] = ACTIONS(370), - [anon_sym_LBRACE_DASH] = ACTIONS(372), - [anon_sym_BSLASH] = ACTIONS(374), - [sym_quotation_marks] = ACTIONS(376), - [sym_ellipsis] = ACTIONS(376), - [sym_em_dash] = ACTIONS(376), - [sym_en_dash] = ACTIONS(378), - [sym_backslash_escape] = ACTIONS(378), - [anon_sym_LT] = ACTIONS(380), - [sym_symbol] = ACTIONS(376), - [anon_sym_LBRACK_CARET] = ACTIONS(382), - [anon_sym_BANG_LBRACK] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(386), - [anon_sym_RBRACK] = ACTIONS(283), - [anon_sym_DOLLAR] = ACTIONS(388), - [anon_sym_TODO] = ACTIONS(390), - [anon_sym_WIP] = ACTIONS(390), - [anon_sym_NOTE] = ACTIONS(392), - [anon_sym_INFO] = ACTIONS(392), - [anon_sym_XXX] = ACTIONS(392), - [sym_fixme] = ACTIONS(376), - [sym__whitespace1] = ACTIONS(394), - [sym__newline] = ACTIONS(870), - [aux_sym__text_token1] = ACTIONS(398), - [sym__verbatim_begin] = ACTIONS(400), + [sym__inline_without_trailing_space] = STATE(869), + [sym__element] = STATE(536), + [sym_emphasis] = STATE(138), + [sym_emphasis_begin] = STATE(1092), + [sym_strong] = STATE(138), + [sym_strong_begin] = STATE(1093), + [sym_superscript] = STATE(138), + [sym_superscript_begin] = STATE(1094), + [sym_subscript] = STATE(138), + [sym_subscript_begin] = STATE(1095), + [sym_highlighted] = STATE(138), + [sym_highlighted_begin] = STATE(1096), + [sym_insert] = STATE(138), + [sym_insert_begin] = STATE(1097), + [sym_delete] = STATE(138), + [sym_delete_begin] = STATE(1098), + [sym_hard_line_break] = STATE(138), + [sym__smart_punctuation] = STATE(138), + [sym_autolink] = STATE(138), + [sym_footnote_reference] = STATE(138), + [sym_footnote_marker_begin] = STATE(1099), + [sym__image] = STATE(138), + [sym_full_reference_image] = STATE(138), + [sym_collapsed_reference_image] = STATE(138), + [sym_inline_image] = STATE(138), + [sym_image_description] = STATE(626), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(138), + [sym_full_reference_link] = STATE(138), + [sym_collapsed_reference_link] = STATE(138), + [sym_inline_link] = STATE(138), + [sym_link_text] = STATE(627), + [sym_span] = STATE(536), + [sym__bracketed_text_begin] = STATE(1183), + [sym__comment_with_spaces] = STATE(138), + [sym_raw_inline] = STATE(138), + [sym_math] = STATE(138), + [sym_verbatim] = STATE(138), + [sym__todo_highlights] = STATE(138), + [sym_todo] = STATE(138), + [sym_note] = STATE(138), + [sym__symbol_fallback] = STATE(138), + [aux_sym__text] = STATE(127), + [aux_sym__inline_repeat1] = STATE(118), + [anon_sym_LBRACE_] = ACTIONS(149), + [anon_sym__] = ACTIONS(151), + [anon_sym_LBRACE_STAR] = ACTIONS(153), + [anon_sym_STAR] = ACTIONS(155), + [anon_sym_LBRACE_CARET] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_LBRACE_TILDE] = ACTIONS(159), + [anon_sym_TILDE] = ACTIONS(159), + [anon_sym_LBRACE_EQ] = ACTIONS(161), + [anon_sym_LBRACE_PLUS] = ACTIONS(163), + [anon_sym_LBRACE_DASH] = ACTIONS(165), + [anon_sym_BSLASH] = ACTIONS(167), + [sym_quotation_marks] = ACTIONS(169), + [sym_ellipsis] = ACTIONS(169), + [sym_em_dash] = ACTIONS(169), + [sym_en_dash] = ACTIONS(171), + [sym_backslash_escape] = ACTIONS(171), + [anon_sym_LT] = ACTIONS(173), + [sym_symbol] = ACTIONS(169), + [anon_sym_LBRACK_CARET] = ACTIONS(175), + [anon_sym_BANG_LBRACK] = ACTIONS(177), + [anon_sym_LBRACK] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(181), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_TODO] = ACTIONS(185), + [anon_sym_WIP] = ACTIONS(185), + [anon_sym_NOTE] = ACTIONS(187), + [anon_sym_INFO] = ACTIONS(187), + [anon_sym_XXX] = ACTIONS(187), + [sym_fixme] = ACTIONS(169), + [sym__whitespace1] = ACTIONS(189), + [sym__newline] = ACTIONS(191), + [aux_sym__text_token1] = ACTIONS(193), + [sym__verbatim_begin] = ACTIONS(195), }, [85] = { - [sym__inline_without_trailing_space] = STATE(928), - [sym__element] = STATE(570), - [sym_emphasis] = STATE(152), - [sym_emphasis_begin] = STATE(1172), - [sym_strong] = STATE(152), - [sym_strong_begin] = STATE(1173), - [sym_superscript] = STATE(152), - [sym_superscript_begin] = STATE(1174), - [sym_subscript] = STATE(152), - [sym_subscript_begin] = STATE(1175), - [sym_highlighted] = STATE(152), - [sym_highlighted_begin] = STATE(1176), - [sym_insert] = STATE(152), - [sym_insert_begin] = STATE(1177), - [sym_delete] = STATE(152), - [sym_delete_begin] = STATE(1178), - [sym_hard_line_break] = STATE(152), - [sym__smart_punctuation] = STATE(152), - [sym_autolink] = STATE(152), - [sym_footnote_reference] = STATE(152), - [sym_footnote_marker_begin] = STATE(1179), - [sym__image] = STATE(152), - [sym_full_reference_image] = STATE(152), - [sym_collapsed_reference_image] = STATE(152), - [sym_inline_image] = STATE(152), - [sym_image_description] = STATE(704), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(152), - [sym_full_reference_link] = STATE(152), - [sym_collapsed_reference_link] = STATE(152), - [sym_inline_link] = STATE(152), - [sym_link_text] = STATE(706), - [sym_span] = STATE(570), - [sym__bracketed_text_begin] = STATE(1263), - [sym__comment_with_spaces] = STATE(152), - [sym_raw_inline] = STATE(152), - [sym_math] = STATE(152), - [sym_verbatim] = STATE(152), - [sym__todo_highlights] = STATE(152), - [sym_todo] = STATE(152), - [sym_note] = STATE(152), - [sym__symbol_fallback] = STATE(152), - [aux_sym__text] = STATE(133), - [aux_sym__inline_repeat1] = STATE(130), - [anon_sym_LBRACE_] = ACTIONS(448), - [anon_sym__] = ACTIONS(450), - [anon_sym_LBRACE_STAR] = ACTIONS(452), - [anon_sym_STAR] = ACTIONS(454), - [anon_sym_LBRACE_CARET] = ACTIONS(456), - [anon_sym_CARET] = ACTIONS(456), - [anon_sym_LBRACE_TILDE] = ACTIONS(458), - [anon_sym_TILDE] = ACTIONS(458), - [anon_sym_LBRACE_EQ] = ACTIONS(460), - [anon_sym_LBRACE_PLUS] = ACTIONS(462), - [anon_sym_LBRACE_DASH] = ACTIONS(464), - [anon_sym_BSLASH] = ACTIONS(466), - [sym_quotation_marks] = ACTIONS(468), - [sym_ellipsis] = ACTIONS(468), - [sym_em_dash] = ACTIONS(468), - [sym_en_dash] = ACTIONS(470), - [sym_backslash_escape] = ACTIONS(470), - [anon_sym_LT] = ACTIONS(472), - [sym_symbol] = ACTIONS(468), - [anon_sym_LBRACK_CARET] = ACTIONS(474), - [anon_sym_BANG_LBRACK] = ACTIONS(476), - [anon_sym_LBRACK] = ACTIONS(478), - [anon_sym_DOLLAR] = ACTIONS(480), - [anon_sym_TODO] = ACTIONS(482), - [anon_sym_WIP] = ACTIONS(482), - [anon_sym_NOTE] = ACTIONS(484), - [anon_sym_INFO] = ACTIONS(484), - [anon_sym_XXX] = ACTIONS(484), - [sym_fixme] = ACTIONS(468), - [sym__whitespace1] = ACTIONS(486), - [sym__newline] = ACTIONS(488), - [aux_sym__text_token1] = ACTIONS(490), - [sym__verbatim_begin] = ACTIONS(492), + [sym__inline_without_trailing_space] = STATE(870), + [sym__element] = STATE(581), + [sym_emphasis] = STATE(141), + [sym_emphasis_begin] = STATE(1082), + [sym_strong] = STATE(141), + [sym_strong_begin] = STATE(1083), + [sym_superscript] = STATE(141), + [sym_superscript_begin] = STATE(1084), + [sym_subscript] = STATE(141), + [sym_subscript_begin] = STATE(1085), + [sym_highlighted] = STATE(141), + [sym_highlighted_begin] = STATE(1086), + [sym_insert] = STATE(141), + [sym_insert_begin] = STATE(1087), + [sym_delete] = STATE(141), + [sym_delete_begin] = STATE(1088), + [sym_hard_line_break] = STATE(141), + [sym__smart_punctuation] = STATE(141), + [sym_autolink] = STATE(141), + [sym_footnote_reference] = STATE(141), + [sym_footnote_marker_begin] = STATE(1089), + [sym__image] = STATE(141), + [sym_full_reference_image] = STATE(141), + [sym_collapsed_reference_image] = STATE(141), + [sym_inline_image] = STATE(141), + [sym_image_description] = STATE(642), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(141), + [sym_full_reference_link] = STATE(141), + [sym_collapsed_reference_link] = STATE(141), + [sym_inline_link] = STATE(141), + [sym_link_text] = STATE(629), + [sym_span] = STATE(581), + [sym__bracketed_text_begin] = STATE(1182), + [sym__comment_with_spaces] = STATE(141), + [sym_raw_inline] = STATE(141), + [sym_math] = STATE(141), + [sym_verbatim] = STATE(141), + [sym__todo_highlights] = STATE(141), + [sym_todo] = STATE(141), + [sym_note] = STATE(141), + [sym__symbol_fallback] = STATE(141), + [aux_sym__text] = STATE(125), + [aux_sym__inline_repeat1] = STATE(119), + [anon_sym_LBRACE_] = ACTIONS(585), + [anon_sym__] = ACTIONS(587), + [anon_sym_LBRACE_STAR] = ACTIONS(589), + [anon_sym_STAR] = ACTIONS(591), + [anon_sym_LBRACE_CARET] = ACTIONS(593), + [anon_sym_CARET] = ACTIONS(593), + [anon_sym_LBRACE_TILDE] = ACTIONS(595), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_LBRACE_EQ] = ACTIONS(597), + [anon_sym_LBRACE_PLUS] = ACTIONS(599), + [anon_sym_LBRACE_DASH] = ACTIONS(601), + [anon_sym_BSLASH] = ACTIONS(603), + [sym_quotation_marks] = ACTIONS(605), + [sym_ellipsis] = ACTIONS(605), + [sym_em_dash] = ACTIONS(605), + [sym_en_dash] = ACTIONS(607), + [sym_backslash_escape] = ACTIONS(607), + [anon_sym_LT] = ACTIONS(609), + [sym_symbol] = ACTIONS(605), + [anon_sym_LBRACK_CARET] = ACTIONS(611), + [anon_sym_BANG_LBRACK] = ACTIONS(613), + [anon_sym_LBRACK] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [anon_sym_TODO] = ACTIONS(621), + [anon_sym_WIP] = ACTIONS(621), + [anon_sym_NOTE] = ACTIONS(623), + [anon_sym_INFO] = ACTIONS(623), + [anon_sym_XXX] = ACTIONS(623), + [sym_fixme] = ACTIONS(605), + [sym__whitespace1] = ACTIONS(625), + [sym__newline] = ACTIONS(627), + [aux_sym__text_token1] = ACTIONS(629), + [sym__verbatim_begin] = ACTIONS(631), }, [86] = { - [sym__inline_without_trailing_space] = STATE(929), - [sym__element] = STATE(623), - [sym_emphasis] = STATE(148), - [sym_emphasis_begin] = STATE(1163), - [sym_strong] = STATE(148), - [sym_strong_begin] = STATE(1164), - [sym_superscript] = STATE(148), - [sym_superscript_begin] = STATE(1165), - [sym_subscript] = STATE(148), - [sym_subscript_begin] = STATE(1166), - [sym_highlighted] = STATE(148), - [sym_highlighted_begin] = STATE(1167), - [sym_insert] = STATE(148), - [sym_insert_begin] = STATE(1168), - [sym_delete] = STATE(148), - [sym_delete_begin] = STATE(1169), - [sym_hard_line_break] = STATE(148), - [sym__smart_punctuation] = STATE(148), - [sym_autolink] = STATE(148), - [sym_footnote_reference] = STATE(148), - [sym_footnote_marker_begin] = STATE(1170), - [sym__image] = STATE(148), - [sym_full_reference_image] = STATE(148), - [sym_collapsed_reference_image] = STATE(148), - [sym_inline_image] = STATE(148), - [sym_image_description] = STATE(712), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(148), - [sym_full_reference_link] = STATE(148), - [sym_collapsed_reference_link] = STATE(148), - [sym_inline_link] = STATE(148), - [sym_link_text] = STATE(713), - [sym_span] = STATE(623), - [sym__bracketed_text_begin] = STATE(1262), - [sym__comment_with_spaces] = STATE(148), - [sym_raw_inline] = STATE(148), - [sym_math] = STATE(148), - [sym_verbatim] = STATE(148), - [sym__todo_highlights] = STATE(148), - [sym_todo] = STATE(148), - [sym_note] = STATE(148), - [sym__symbol_fallback] = STATE(148), - [aux_sym__text] = STATE(136), - [aux_sym__inline_repeat1] = STATE(129), - [anon_sym_LBRACE_] = ACTIONS(402), - [anon_sym__] = ACTIONS(404), - [anon_sym_LBRACE_STAR] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_LBRACE_CARET] = ACTIONS(410), - [anon_sym_CARET] = ACTIONS(410), - [anon_sym_LBRACE_TILDE] = ACTIONS(412), - [anon_sym_TILDE] = ACTIONS(412), - [anon_sym_LBRACE_EQ] = ACTIONS(414), - [anon_sym_LBRACE_PLUS] = ACTIONS(416), - [anon_sym_LBRACE_DASH] = ACTIONS(418), - [anon_sym_BSLASH] = ACTIONS(420), - [sym_quotation_marks] = ACTIONS(422), - [sym_ellipsis] = ACTIONS(422), - [sym_em_dash] = ACTIONS(422), - [sym_en_dash] = ACTIONS(424), - [sym_backslash_escape] = ACTIONS(424), - [anon_sym_LT] = ACTIONS(426), - [sym_symbol] = ACTIONS(422), - [anon_sym_LBRACK_CARET] = ACTIONS(428), - [anon_sym_BANG_LBRACK] = ACTIONS(430), - [anon_sym_LBRACK] = ACTIONS(432), - [anon_sym_DOLLAR] = ACTIONS(434), - [anon_sym_TODO] = ACTIONS(436), - [anon_sym_WIP] = ACTIONS(436), - [anon_sym_NOTE] = ACTIONS(438), - [anon_sym_INFO] = ACTIONS(438), - [anon_sym_XXX] = ACTIONS(438), - [sym_fixme] = ACTIONS(422), - [sym__whitespace1] = ACTIONS(440), - [sym__newline] = ACTIONS(442), - [aux_sym__text_token1] = ACTIONS(444), - [sym__verbatim_begin] = ACTIONS(446), + [sym__inline] = STATE(896), + [sym__element] = STATE(71), + [sym_emphasis] = STATE(132), + [sym_emphasis_begin] = STATE(1152), + [sym_strong] = STATE(132), + [sym_strong_begin] = STATE(1153), + [sym_superscript] = STATE(132), + [sym_superscript_begin] = STATE(1154), + [sym_subscript] = STATE(132), + [sym_subscript_begin] = STATE(1155), + [sym_highlighted] = STATE(132), + [sym_highlighted_begin] = STATE(1156), + [sym_insert] = STATE(132), + [sym_insert_begin] = STATE(1157), + [sym_delete] = STATE(132), + [sym_delete_begin] = STATE(1158), + [sym_hard_line_break] = STATE(132), + [sym__smart_punctuation] = STATE(132), + [sym_autolink] = STATE(132), + [sym_footnote_reference] = STATE(132), + [sym_footnote_marker_begin] = STATE(1159), + [sym__image] = STATE(132), + [sym_full_reference_image] = STATE(132), + [sym_collapsed_reference_image] = STATE(132), + [sym_inline_image] = STATE(132), + [sym_image_description] = STATE(633), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(132), + [sym_full_reference_link] = STATE(132), + [sym_collapsed_reference_link] = STATE(132), + [sym_inline_link] = STATE(132), + [sym_link_text] = STATE(631), + [sym_span] = STATE(71), + [sym__bracketed_text_begin] = STATE(1189), + [sym__comment_with_spaces] = STATE(132), + [sym_raw_inline] = STATE(132), + [sym_math] = STATE(132), + [sym_verbatim] = STATE(132), + [sym__todo_highlights] = STATE(132), + [sym_todo] = STATE(132), + [sym_note] = STATE(132), + [sym__symbol_fallback] = STATE(132), + [aux_sym__text] = STATE(128), + [aux_sym__inline_repeat1] = STATE(71), + [anon_sym_LBRACE_] = ACTIONS(441), + [anon_sym__] = ACTIONS(443), + [anon_sym_LBRACE_STAR] = ACTIONS(445), + [anon_sym_STAR] = ACTIONS(447), + [anon_sym_LBRACE_CARET] = ACTIONS(449), + [anon_sym_CARET] = ACTIONS(449), + [anon_sym_LBRACE_TILDE] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_LBRACE_EQ] = ACTIONS(453), + [anon_sym_LBRACE_PLUS] = ACTIONS(455), + [anon_sym_LBRACE_DASH] = ACTIONS(457), + [anon_sym_BSLASH] = ACTIONS(459), + [sym_quotation_marks] = ACTIONS(461), + [sym_ellipsis] = ACTIONS(461), + [sym_em_dash] = ACTIONS(461), + [sym_en_dash] = ACTIONS(463), + [sym_backslash_escape] = ACTIONS(463), + [anon_sym_LT] = ACTIONS(465), + [sym_symbol] = ACTIONS(461), + [anon_sym_LBRACK_CARET] = ACTIONS(467), + [anon_sym_BANG_LBRACK] = ACTIONS(469), + [anon_sym_LBRACK] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(473), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_TODO] = ACTIONS(477), + [anon_sym_WIP] = ACTIONS(477), + [anon_sym_NOTE] = ACTIONS(479), + [anon_sym_INFO] = ACTIONS(479), + [anon_sym_XXX] = ACTIONS(479), + [sym_fixme] = ACTIONS(461), + [sym__whitespace1] = ACTIONS(481), + [sym__newline] = ACTIONS(483), + [aux_sym__text_token1] = ACTIONS(485), + [sym__verbatim_begin] = ACTIONS(487), }, [87] = { - [sym__inline] = STATE(957), - [sym__element] = STATE(84), - [sym_emphasis] = STATE(146), - [sym_emphasis_begin] = STATE(1226), - [sym_strong] = STATE(146), - [sym_strong_begin] = STATE(1227), - [sym_superscript] = STATE(146), - [sym_superscript_begin] = STATE(1228), - [sym_subscript] = STATE(146), - [sym_subscript_begin] = STATE(1229), - [sym_highlighted] = STATE(146), - [sym_highlighted_begin] = STATE(1230), - [sym_insert] = STATE(146), - [sym_insert_begin] = STATE(1231), - [sym_delete] = STATE(146), - [sym_delete_begin] = STATE(1232), - [sym_hard_line_break] = STATE(146), - [sym__smart_punctuation] = STATE(146), - [sym_autolink] = STATE(146), - [sym_footnote_reference] = STATE(146), - [sym_footnote_marker_begin] = STATE(1233), - [sym__image] = STATE(146), - [sym_full_reference_image] = STATE(146), - [sym_collapsed_reference_image] = STATE(146), - [sym_inline_image] = STATE(146), - [sym_image_description] = STATE(694), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(146), - [sym_full_reference_link] = STATE(146), - [sym_collapsed_reference_link] = STATE(146), - [sym_inline_link] = STATE(146), - [sym_link_text] = STATE(693), - [sym_span] = STATE(84), - [sym__bracketed_text_begin] = STATE(1269), - [sym__comment_with_spaces] = STATE(146), - [sym_raw_inline] = STATE(146), - [sym_math] = STATE(146), - [sym_verbatim] = STATE(146), - [sym__todo_highlights] = STATE(146), - [sym_todo] = STATE(146), - [sym_note] = STATE(146), - [sym__symbol_fallback] = STATE(146), - [aux_sym__text] = STATE(141), - [aux_sym__inline_repeat1] = STATE(84), - [anon_sym_LBRACE_] = ACTIONS(356), - [anon_sym__] = ACTIONS(358), - [anon_sym_LBRACE_STAR] = ACTIONS(360), - [anon_sym_STAR] = ACTIONS(362), - [anon_sym_LBRACE_CARET] = ACTIONS(364), - [anon_sym_CARET] = ACTIONS(364), - [anon_sym_LBRACE_TILDE] = ACTIONS(366), - [anon_sym_TILDE] = ACTIONS(366), - [anon_sym_LBRACE_EQ] = ACTIONS(368), - [anon_sym_LBRACE_PLUS] = ACTIONS(370), - [anon_sym_LBRACE_DASH] = ACTIONS(372), - [anon_sym_BSLASH] = ACTIONS(374), - [sym_quotation_marks] = ACTIONS(376), - [sym_ellipsis] = ACTIONS(376), - [sym_em_dash] = ACTIONS(376), - [sym_en_dash] = ACTIONS(378), - [sym_backslash_escape] = ACTIONS(378), - [anon_sym_LT] = ACTIONS(380), - [sym_symbol] = ACTIONS(376), - [anon_sym_LBRACK_CARET] = ACTIONS(382), - [anon_sym_BANG_LBRACK] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(386), - [anon_sym_DOLLAR] = ACTIONS(388), - [anon_sym_TODO] = ACTIONS(390), - [anon_sym_WIP] = ACTIONS(390), - [anon_sym_NOTE] = ACTIONS(392), - [anon_sym_INFO] = ACTIONS(392), - [anon_sym_XXX] = ACTIONS(392), - [sym_fixme] = ACTIONS(376), - [sym__whitespace1] = ACTIONS(394), - [sym__newline] = ACTIONS(396), - [aux_sym__text_token1] = ACTIONS(398), - [sym__verbatim_begin] = ACTIONS(400), + [sym__inline] = STATE(898), + [sym__element] = STATE(65), + [sym_emphasis] = STATE(133), + [sym_emphasis_begin] = STATE(1142), + [sym_strong] = STATE(133), + [sym_strong_begin] = STATE(1143), + [sym_superscript] = STATE(133), + [sym_superscript_begin] = STATE(1144), + [sym_subscript] = STATE(133), + [sym_subscript_begin] = STATE(1145), + [sym_highlighted] = STATE(133), + [sym_highlighted_begin] = STATE(1146), + [sym_insert] = STATE(133), + [sym_insert_begin] = STATE(1147), + [sym_delete] = STATE(133), + [sym_delete_begin] = STATE(1148), + [sym_hard_line_break] = STATE(133), + [sym__smart_punctuation] = STATE(133), + [sym_autolink] = STATE(133), + [sym_footnote_reference] = STATE(133), + [sym_footnote_marker_begin] = STATE(1149), + [sym__image] = STATE(133), + [sym_full_reference_image] = STATE(133), + [sym_collapsed_reference_image] = STATE(133), + [sym_inline_image] = STATE(133), + [sym_image_description] = STATE(638), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(133), + [sym_full_reference_link] = STATE(133), + [sym_collapsed_reference_link] = STATE(133), + [sym_inline_link] = STATE(133), + [sym_link_text] = STATE(637), + [sym_span] = STATE(65), + [sym__bracketed_text_begin] = STATE(1188), + [sym__comment_with_spaces] = STATE(133), + [sym_raw_inline] = STATE(133), + [sym_math] = STATE(133), + [sym_verbatim] = STATE(133), + [sym__todo_highlights] = STATE(133), + [sym_todo] = STATE(133), + [sym_note] = STATE(133), + [sym__symbol_fallback] = STATE(133), + [aux_sym__text] = STATE(129), + [aux_sym__inline_repeat1] = STATE(65), + [anon_sym_LBRACE_] = ACTIONS(489), + [anon_sym__] = ACTIONS(491), + [anon_sym_LBRACE_STAR] = ACTIONS(493), + [anon_sym_STAR] = ACTIONS(495), + [anon_sym_LBRACE_CARET] = ACTIONS(497), + [anon_sym_CARET] = ACTIONS(497), + [anon_sym_LBRACE_TILDE] = ACTIONS(499), + [anon_sym_TILDE] = ACTIONS(499), + [anon_sym_LBRACE_EQ] = ACTIONS(501), + [anon_sym_LBRACE_PLUS] = ACTIONS(503), + [anon_sym_LBRACE_DASH] = ACTIONS(505), + [anon_sym_BSLASH] = ACTIONS(507), + [sym_quotation_marks] = ACTIONS(509), + [sym_ellipsis] = ACTIONS(509), + [sym_em_dash] = ACTIONS(509), + [sym_en_dash] = ACTIONS(511), + [sym_backslash_escape] = ACTIONS(511), + [anon_sym_LT] = ACTIONS(513), + [sym_symbol] = ACTIONS(509), + [anon_sym_LBRACK_CARET] = ACTIONS(515), + [anon_sym_BANG_LBRACK] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(519), + [anon_sym_LPAREN] = ACTIONS(521), + [anon_sym_DOLLAR] = ACTIONS(523), + [anon_sym_TODO] = ACTIONS(525), + [anon_sym_WIP] = ACTIONS(525), + [anon_sym_NOTE] = ACTIONS(527), + [anon_sym_INFO] = ACTIONS(527), + [anon_sym_XXX] = ACTIONS(527), + [sym_fixme] = ACTIONS(509), + [sym__whitespace1] = ACTIONS(529), + [sym__newline] = ACTIONS(531), + [aux_sym__text_token1] = ACTIONS(533), + [sym__verbatim_begin] = ACTIONS(535), }, [88] = { - [sym__inline] = STATE(959), - [sym__element] = STATE(46), - [sym_emphasis] = STATE(147), - [sym_emphasis_begin] = STATE(1217), - [sym_strong] = STATE(147), - [sym_strong_begin] = STATE(1218), - [sym_superscript] = STATE(147), - [sym_superscript_begin] = STATE(1219), - [sym_subscript] = STATE(147), - [sym_subscript_begin] = STATE(1220), - [sym_highlighted] = STATE(147), - [sym_highlighted_begin] = STATE(1221), - [sym_insert] = STATE(147), - [sym_insert_begin] = STATE(1222), - [sym_delete] = STATE(147), - [sym_delete_begin] = STATE(1223), - [sym_hard_line_break] = STATE(147), - [sym__smart_punctuation] = STATE(147), - [sym_autolink] = STATE(147), - [sym_footnote_reference] = STATE(147), - [sym_footnote_marker_begin] = STATE(1224), - [sym__image] = STATE(147), - [sym_full_reference_image] = STATE(147), - [sym_collapsed_reference_image] = STATE(147), - [sym_inline_image] = STATE(147), - [sym_image_description] = STATE(699), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(147), - [sym_full_reference_link] = STATE(147), - [sym_collapsed_reference_link] = STATE(147), - [sym_inline_link] = STATE(147), - [sym_link_text] = STATE(698), - [sym_span] = STATE(46), - [sym__bracketed_text_begin] = STATE(1268), - [sym__comment_with_spaces] = STATE(147), - [sym_raw_inline] = STATE(147), - [sym_math] = STATE(147), - [sym_verbatim] = STATE(147), - [sym__todo_highlights] = STATE(147), - [sym_todo] = STATE(147), - [sym_note] = STATE(147), - [sym__symbol_fallback] = STATE(147), - [aux_sym__text] = STATE(132), - [aux_sym__inline_repeat1] = STATE(46), - [anon_sym_LBRACE_] = ACTIONS(189), - [anon_sym__] = ACTIONS(191), - [anon_sym_LBRACE_STAR] = ACTIONS(193), - [anon_sym_STAR] = ACTIONS(195), - [anon_sym_LBRACE_CARET] = ACTIONS(197), - [anon_sym_CARET] = ACTIONS(197), - [anon_sym_LBRACE_TILDE] = ACTIONS(199), - [anon_sym_TILDE] = ACTIONS(199), - [anon_sym_LBRACE_EQ] = ACTIONS(201), - [anon_sym_LBRACE_PLUS] = ACTIONS(203), - [anon_sym_LBRACE_DASH] = ACTIONS(205), - [anon_sym_BSLASH] = ACTIONS(207), - [sym_quotation_marks] = ACTIONS(209), - [sym_ellipsis] = ACTIONS(209), - [sym_em_dash] = ACTIONS(209), - [sym_en_dash] = ACTIONS(211), - [sym_backslash_escape] = ACTIONS(211), - [anon_sym_LT] = ACTIONS(213), - [sym_symbol] = ACTIONS(209), - [anon_sym_LBRACK_CARET] = ACTIONS(215), - [anon_sym_BANG_LBRACK] = ACTIONS(217), - [anon_sym_LBRACK] = ACTIONS(219), - [anon_sym_DOLLAR] = ACTIONS(221), - [anon_sym_TODO] = ACTIONS(223), - [anon_sym_WIP] = ACTIONS(223), - [anon_sym_NOTE] = ACTIONS(225), - [anon_sym_INFO] = ACTIONS(225), - [anon_sym_XXX] = ACTIONS(225), - [sym_fixme] = ACTIONS(209), - [sym__whitespace1] = ACTIONS(227), - [sym__newline] = ACTIONS(229), - [aux_sym__text_token1] = ACTIONS(231), - [sym__verbatim_begin] = ACTIONS(233), + [sym__inline] = STATE(899), + [sym__element] = STATE(37), + [sym_emphasis] = STATE(131), + [sym_emphasis_begin] = STATE(1132), + [sym_strong] = STATE(131), + [sym_strong_begin] = STATE(1133), + [sym_superscript] = STATE(131), + [sym_superscript_begin] = STATE(1134), + [sym_subscript] = STATE(131), + [sym_subscript_begin] = STATE(1135), + [sym_highlighted] = STATE(131), + [sym_highlighted_begin] = STATE(1136), + [sym_insert] = STATE(131), + [sym_insert_begin] = STATE(1137), + [sym_delete] = STATE(131), + [sym_delete_begin] = STATE(1138), + [sym_hard_line_break] = STATE(131), + [sym__smart_punctuation] = STATE(131), + [sym_autolink] = STATE(131), + [sym_footnote_reference] = STATE(131), + [sym_footnote_marker_begin] = STATE(1139), + [sym__image] = STATE(131), + [sym_full_reference_image] = STATE(131), + [sym_collapsed_reference_image] = STATE(131), + [sym_inline_image] = STATE(131), + [sym_image_description] = STATE(643), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(131), + [sym_full_reference_link] = STATE(131), + [sym_collapsed_reference_link] = STATE(131), + [sym_inline_link] = STATE(131), + [sym_link_text] = STATE(619), + [sym_span] = STATE(37), + [sym__bracketed_text_begin] = STATE(1187), + [sym__comment_with_spaces] = STATE(131), + [sym_raw_inline] = STATE(131), + [sym_math] = STATE(131), + [sym_verbatim] = STATE(131), + [sym__todo_highlights] = STATE(131), + [sym_todo] = STATE(131), + [sym_note] = STATE(131), + [sym__symbol_fallback] = STATE(131), + [aux_sym__text] = STATE(123), + [aux_sym__inline_repeat1] = STATE(37), + [anon_sym_LBRACE_] = ACTIONS(537), + [anon_sym__] = ACTIONS(539), + [anon_sym_LBRACE_STAR] = ACTIONS(541), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE_CARET] = ACTIONS(545), + [anon_sym_CARET] = ACTIONS(545), + [anon_sym_LBRACE_TILDE] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(547), + [anon_sym_LBRACE_EQ] = ACTIONS(549), + [anon_sym_LBRACE_PLUS] = ACTIONS(551), + [anon_sym_LBRACE_DASH] = ACTIONS(553), + [anon_sym_BSLASH] = ACTIONS(555), + [sym_quotation_marks] = ACTIONS(557), + [sym_ellipsis] = ACTIONS(557), + [sym_em_dash] = ACTIONS(557), + [sym_en_dash] = ACTIONS(559), + [sym_backslash_escape] = ACTIONS(559), + [anon_sym_LT] = ACTIONS(561), + [sym_symbol] = ACTIONS(557), + [anon_sym_LBRACK_CARET] = ACTIONS(563), + [anon_sym_BANG_LBRACK] = ACTIONS(565), + [anon_sym_LBRACK] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_DOLLAR] = ACTIONS(571), + [anon_sym_TODO] = ACTIONS(573), + [anon_sym_WIP] = ACTIONS(573), + [anon_sym_NOTE] = ACTIONS(575), + [anon_sym_INFO] = ACTIONS(575), + [anon_sym_XXX] = ACTIONS(575), + [sym_fixme] = ACTIONS(557), + [sym__whitespace1] = ACTIONS(577), + [sym__newline] = ACTIONS(579), + [aux_sym__text_token1] = ACTIONS(581), + [sym__verbatim_begin] = ACTIONS(583), }, [89] = { - [sym__inline] = STATE(961), - [sym__element] = STATE(7), - [sym_emphasis] = STATE(153), - [sym_emphasis_begin] = STATE(1208), - [sym_strong] = STATE(153), - [sym_strong_begin] = STATE(1209), - [sym_superscript] = STATE(153), - [sym_superscript_begin] = STATE(1210), - [sym_subscript] = STATE(153), - [sym_subscript_begin] = STATE(1211), - [sym_highlighted] = STATE(153), - [sym_highlighted_begin] = STATE(1212), - [sym_insert] = STATE(153), - [sym_insert_begin] = STATE(1213), - [sym_delete] = STATE(153), - [sym_delete_begin] = STATE(1214), - [sym_hard_line_break] = STATE(153), - [sym__smart_punctuation] = STATE(153), - [sym_autolink] = STATE(153), - [sym_footnote_reference] = STATE(153), - [sym_footnote_marker_begin] = STATE(1215), - [sym__image] = STATE(153), - [sym_full_reference_image] = STATE(153), - [sym_collapsed_reference_image] = STATE(153), - [sym_inline_image] = STATE(153), - [sym_image_description] = STATE(707), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(153), - [sym_full_reference_link] = STATE(153), - [sym_collapsed_reference_link] = STATE(153), - [sym_inline_link] = STATE(153), - [sym_link_text] = STATE(705), - [sym_span] = STATE(7), - [sym__bracketed_text_begin] = STATE(1267), - [sym__comment_with_spaces] = STATE(153), - [sym_raw_inline] = STATE(153), - [sym_math] = STATE(153), - [sym_verbatim] = STATE(153), - [sym__todo_highlights] = STATE(153), - [sym_todo] = STATE(153), - [sym_note] = STATE(153), - [sym__symbol_fallback] = STATE(153), - [aux_sym__text] = STATE(134), - [aux_sym__inline_repeat1] = STATE(7), - [anon_sym_LBRACE_] = ACTIONS(97), - [anon_sym__] = ACTIONS(99), - [anon_sym_LBRACE_STAR] = ACTIONS(101), - [anon_sym_STAR] = ACTIONS(103), - [anon_sym_LBRACE_CARET] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [anon_sym_LBRACE_TILDE] = ACTIONS(107), - [anon_sym_TILDE] = ACTIONS(107), - [anon_sym_LBRACE_EQ] = ACTIONS(109), - [anon_sym_LBRACE_PLUS] = ACTIONS(111), - [anon_sym_LBRACE_DASH] = ACTIONS(113), - [anon_sym_BSLASH] = ACTIONS(115), - [sym_quotation_marks] = ACTIONS(117), - [sym_ellipsis] = ACTIONS(117), - [sym_em_dash] = ACTIONS(117), - [sym_en_dash] = ACTIONS(119), - [sym_backslash_escape] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [sym_symbol] = ACTIONS(117), - [anon_sym_LBRACK_CARET] = ACTIONS(123), - [anon_sym_BANG_LBRACK] = ACTIONS(125), - [anon_sym_LBRACK] = ACTIONS(127), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_TODO] = ACTIONS(131), - [anon_sym_WIP] = ACTIONS(131), - [anon_sym_NOTE] = ACTIONS(133), - [anon_sym_INFO] = ACTIONS(133), - [anon_sym_XXX] = ACTIONS(133), - [sym_fixme] = ACTIONS(117), - [sym__whitespace1] = ACTIONS(135), - [sym__newline] = ACTIONS(137), - [aux_sym__text_token1] = ACTIONS(139), - [sym__verbatim_begin] = ACTIONS(141), + [sym__inline] = STATE(900), + [sym__element] = STATE(14), + [sym_emphasis] = STATE(136), + [sym_emphasis_begin] = STATE(1122), + [sym_strong] = STATE(136), + [sym_strong_begin] = STATE(1123), + [sym_superscript] = STATE(136), + [sym_superscript_begin] = STATE(1124), + [sym_subscript] = STATE(136), + [sym_subscript_begin] = STATE(1125), + [sym_highlighted] = STATE(136), + [sym_highlighted_begin] = STATE(1126), + [sym_insert] = STATE(136), + [sym_insert_begin] = STATE(1127), + [sym_delete] = STATE(136), + [sym_delete_begin] = STATE(1128), + [sym_hard_line_break] = STATE(136), + [sym__smart_punctuation] = STATE(136), + [sym_autolink] = STATE(136), + [sym_footnote_reference] = STATE(136), + [sym_footnote_marker_begin] = STATE(1129), + [sym__image] = STATE(136), + [sym_full_reference_image] = STATE(136), + [sym_collapsed_reference_image] = STATE(136), + [sym_inline_image] = STATE(136), + [sym_image_description] = STATE(651), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(136), + [sym_full_reference_link] = STATE(136), + [sym_collapsed_reference_link] = STATE(136), + [sym_inline_link] = STATE(136), + [sym_link_text] = STATE(650), + [sym_span] = STATE(14), + [sym__bracketed_text_begin] = STATE(1186), + [sym__comment_with_spaces] = STATE(136), + [sym_raw_inline] = STATE(136), + [sym_math] = STATE(136), + [sym_verbatim] = STATE(136), + [sym__todo_highlights] = STATE(136), + [sym_todo] = STATE(136), + [sym_note] = STATE(136), + [sym__symbol_fallback] = STATE(136), + [aux_sym__text] = STATE(130), + [aux_sym__inline_repeat1] = STATE(14), + [anon_sym_LBRACE_] = ACTIONS(319), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_STAR] = ACTIONS(323), + [anon_sym_STAR] = ACTIONS(325), + [anon_sym_LBRACE_CARET] = ACTIONS(327), + [anon_sym_CARET] = ACTIONS(327), + [anon_sym_LBRACE_TILDE] = ACTIONS(329), + [anon_sym_TILDE] = ACTIONS(329), + [anon_sym_LBRACE_EQ] = ACTIONS(331), + [anon_sym_LBRACE_PLUS] = ACTIONS(333), + [anon_sym_LBRACE_DASH] = ACTIONS(335), + [anon_sym_BSLASH] = ACTIONS(337), + [sym_quotation_marks] = ACTIONS(339), + [sym_ellipsis] = ACTIONS(339), + [sym_em_dash] = ACTIONS(339), + [sym_en_dash] = ACTIONS(341), + [sym_backslash_escape] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [sym_symbol] = ACTIONS(339), + [anon_sym_LBRACK_CARET] = ACTIONS(345), + [anon_sym_BANG_LBRACK] = ACTIONS(347), + [anon_sym_LBRACK] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_DOLLAR] = ACTIONS(353), + [anon_sym_TODO] = ACTIONS(355), + [anon_sym_WIP] = ACTIONS(355), + [anon_sym_NOTE] = ACTIONS(357), + [anon_sym_INFO] = ACTIONS(357), + [anon_sym_XXX] = ACTIONS(357), + [sym_fixme] = ACTIONS(339), + [sym__whitespace1] = ACTIONS(359), + [sym__newline] = ACTIONS(635), + [aux_sym__text_token1] = ACTIONS(363), + [sym__verbatim_begin] = ACTIONS(365), }, [90] = { - [sym__inline] = STATE(962), - [sym__element] = STATE(21), - [sym_emphasis] = STATE(149), - [sym_emphasis_begin] = STATE(1199), - [sym_strong] = STATE(149), - [sym_strong_begin] = STATE(1200), - [sym_superscript] = STATE(149), - [sym_superscript_begin] = STATE(1201), - [sym_subscript] = STATE(149), - [sym_subscript_begin] = STATE(1202), - [sym_highlighted] = STATE(149), - [sym_highlighted_begin] = STATE(1203), - [sym_insert] = STATE(149), - [sym_insert_begin] = STATE(1204), - [sym_delete] = STATE(149), - [sym_delete_begin] = STATE(1205), - [sym_hard_line_break] = STATE(149), - [sym__smart_punctuation] = STATE(149), - [sym_autolink] = STATE(149), - [sym_footnote_reference] = STATE(149), - [sym_footnote_marker_begin] = STATE(1206), - [sym__image] = STATE(149), - [sym_full_reference_image] = STATE(149), - [sym_collapsed_reference_image] = STATE(149), - [sym_inline_image] = STATE(149), - [sym_image_description] = STATE(714), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(149), - [sym_full_reference_link] = STATE(149), - [sym_collapsed_reference_link] = STATE(149), - [sym_inline_link] = STATE(149), - [sym_link_text] = STATE(710), - [sym_span] = STATE(21), - [sym__bracketed_text_begin] = STATE(1266), - [sym__comment_with_spaces] = STATE(149), - [sym_raw_inline] = STATE(149), - [sym_math] = STATE(149), - [sym_verbatim] = STATE(149), - [sym__todo_highlights] = STATE(149), - [sym_todo] = STATE(149), - [sym_note] = STATE(149), - [sym__symbol_fallback] = STATE(149), - [aux_sym__text] = STATE(142), - [aux_sym__inline_repeat1] = STATE(21), - [anon_sym_LBRACE_] = ACTIONS(494), - [anon_sym__] = ACTIONS(496), - [anon_sym_LBRACE_STAR] = ACTIONS(498), - [anon_sym_STAR] = ACTIONS(500), - [anon_sym_LBRACE_CARET] = ACTIONS(502), - [anon_sym_CARET] = ACTIONS(502), - [anon_sym_LBRACE_TILDE] = ACTIONS(504), - [anon_sym_TILDE] = ACTIONS(504), - [anon_sym_LBRACE_EQ] = ACTIONS(506), - [anon_sym_LBRACE_PLUS] = ACTIONS(508), - [anon_sym_LBRACE_DASH] = ACTIONS(510), - [anon_sym_BSLASH] = ACTIONS(512), - [sym_quotation_marks] = ACTIONS(514), - [sym_ellipsis] = ACTIONS(514), - [sym_em_dash] = ACTIONS(514), - [sym_en_dash] = ACTIONS(516), - [sym_backslash_escape] = ACTIONS(516), - [anon_sym_LT] = ACTIONS(518), - [sym_symbol] = ACTIONS(514), - [anon_sym_LBRACK_CARET] = ACTIONS(520), - [anon_sym_BANG_LBRACK] = ACTIONS(522), - [anon_sym_LBRACK] = ACTIONS(524), - [anon_sym_DOLLAR] = ACTIONS(526), - [anon_sym_TODO] = ACTIONS(528), - [anon_sym_WIP] = ACTIONS(528), - [anon_sym_NOTE] = ACTIONS(530), - [anon_sym_INFO] = ACTIONS(530), - [anon_sym_XXX] = ACTIONS(530), - [sym_fixme] = ACTIONS(514), - [sym__whitespace1] = ACTIONS(532), - [sym__newline] = ACTIONS(540), - [aux_sym__text_token1] = ACTIONS(536), - [sym__verbatim_begin] = ACTIONS(538), + [sym__inline] = STATE(902), + [sym__element] = STATE(22), + [sym_emphasis] = STATE(137), + [sym_emphasis_begin] = STATE(1112), + [sym_strong] = STATE(137), + [sym_strong_begin] = STATE(1113), + [sym_superscript] = STATE(137), + [sym_superscript_begin] = STATE(1114), + [sym_subscript] = STATE(137), + [sym_subscript_begin] = STATE(1115), + [sym_highlighted] = STATE(137), + [sym_highlighted_begin] = STATE(1116), + [sym_insert] = STATE(137), + [sym_insert_begin] = STATE(1117), + [sym_delete] = STATE(137), + [sym_delete_begin] = STATE(1118), + [sym_hard_line_break] = STATE(137), + [sym__smart_punctuation] = STATE(137), + [sym_autolink] = STATE(137), + [sym_footnote_reference] = STATE(137), + [sym_footnote_marker_begin] = STATE(1119), + [sym__image] = STATE(137), + [sym_full_reference_image] = STATE(137), + [sym_collapsed_reference_image] = STATE(137), + [sym_inline_image] = STATE(137), + [sym_image_description] = STATE(636), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(137), + [sym_full_reference_link] = STATE(137), + [sym_collapsed_reference_link] = STATE(137), + [sym_inline_link] = STATE(137), + [sym_link_text] = STATE(647), + [sym_span] = STATE(22), + [sym__bracketed_text_begin] = STATE(1185), + [sym__comment_with_spaces] = STATE(137), + [sym_raw_inline] = STATE(137), + [sym_math] = STATE(137), + [sym_verbatim] = STATE(137), + [sym__todo_highlights] = STATE(137), + [sym_todo] = STATE(137), + [sym_note] = STATE(137), + [sym__symbol_fallback] = STATE(137), + [aux_sym__text] = STATE(122), + [aux_sym__inline_repeat1] = STATE(22), + [anon_sym_LBRACE_] = ACTIONS(197), + [anon_sym__] = ACTIONS(199), + [anon_sym_LBRACE_STAR] = ACTIONS(201), + [anon_sym_STAR] = ACTIONS(203), + [anon_sym_LBRACE_CARET] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(205), + [anon_sym_LBRACE_TILDE] = ACTIONS(207), + [anon_sym_TILDE] = ACTIONS(207), + [anon_sym_LBRACE_EQ] = ACTIONS(209), + [anon_sym_LBRACE_PLUS] = ACTIONS(211), + [anon_sym_LBRACE_DASH] = ACTIONS(213), + [anon_sym_BSLASH] = ACTIONS(215), + [sym_quotation_marks] = ACTIONS(217), + [sym_ellipsis] = ACTIONS(217), + [sym_em_dash] = ACTIONS(217), + [sym_en_dash] = ACTIONS(219), + [sym_backslash_escape] = ACTIONS(219), + [anon_sym_LT] = ACTIONS(221), + [sym_symbol] = ACTIONS(217), + [anon_sym_LBRACK_CARET] = ACTIONS(223), + [anon_sym_BANG_LBRACK] = ACTIONS(225), + [anon_sym_LBRACK] = ACTIONS(227), + [anon_sym_LPAREN] = ACTIONS(229), + [anon_sym_DOLLAR] = ACTIONS(231), + [anon_sym_TODO] = ACTIONS(233), + [anon_sym_WIP] = ACTIONS(233), + [anon_sym_NOTE] = ACTIONS(235), + [anon_sym_INFO] = ACTIONS(235), + [anon_sym_XXX] = ACTIONS(235), + [sym_fixme] = ACTIONS(217), + [sym__whitespace1] = ACTIONS(237), + [sym__newline] = ACTIONS(239), + [aux_sym__text_token1] = ACTIONS(241), + [sym__verbatim_begin] = ACTIONS(243), }, [91] = { - [sym__inline] = STATE(1261), - [sym__element] = STATE(80), - [sym_emphasis] = STATE(145), - [sym_emphasis_begin] = STATE(1190), - [sym_strong] = STATE(145), - [sym_strong_begin] = STATE(1191), - [sym_superscript] = STATE(145), - [sym_superscript_begin] = STATE(1192), - [sym_subscript] = STATE(145), - [sym_subscript_begin] = STATE(1193), - [sym_highlighted] = STATE(145), - [sym_highlighted_begin] = STATE(1194), - [sym_insert] = STATE(145), - [sym_insert_begin] = STATE(1195), - [sym_delete] = STATE(145), - [sym_delete_begin] = STATE(1196), - [sym_hard_line_break] = STATE(145), - [sym__smart_punctuation] = STATE(145), - [sym_autolink] = STATE(145), - [sym_footnote_reference] = STATE(145), - [sym_footnote_marker_begin] = STATE(1197), - [sym__image] = STATE(145), - [sym_full_reference_image] = STATE(145), - [sym_collapsed_reference_image] = STATE(145), - [sym_inline_image] = STATE(145), - [sym_image_description] = STATE(696), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(145), - [sym_full_reference_link] = STATE(145), - [sym_collapsed_reference_link] = STATE(145), - [sym_inline_link] = STATE(145), - [sym_link_text] = STATE(691), - [sym_span] = STATE(80), - [sym__bracketed_text_begin] = STATE(1265), - [sym__comment_with_spaces] = STATE(145), - [sym_raw_inline] = STATE(145), - [sym_math] = STATE(145), - [sym_verbatim] = STATE(145), - [sym__todo_highlights] = STATE(145), - [sym_todo] = STATE(145), - [sym_note] = STATE(145), - [sym__symbol_fallback] = STATE(145), - [aux_sym__text] = STATE(138), - [aux_sym__inline_repeat1] = STATE(80), - [anon_sym_LBRACE_] = ACTIONS(542), - [anon_sym__] = ACTIONS(544), - [anon_sym_LBRACE_STAR] = ACTIONS(546), - [anon_sym_STAR] = ACTIONS(548), - [anon_sym_LBRACE_CARET] = ACTIONS(550), - [anon_sym_CARET] = ACTIONS(550), - [anon_sym_LBRACE_TILDE] = ACTIONS(552), - [anon_sym_TILDE] = ACTIONS(552), - [anon_sym_LBRACE_EQ] = ACTIONS(554), - [anon_sym_LBRACE_PLUS] = ACTIONS(556), - [anon_sym_LBRACE_DASH] = ACTIONS(558), - [anon_sym_BSLASH] = ACTIONS(560), - [sym_quotation_marks] = ACTIONS(562), - [sym_ellipsis] = ACTIONS(562), - [sym_em_dash] = ACTIONS(562), - [sym_en_dash] = ACTIONS(564), - [sym_backslash_escape] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(566), - [sym_symbol] = ACTIONS(562), - [anon_sym_LBRACK_CARET] = ACTIONS(568), - [anon_sym_BANG_LBRACK] = ACTIONS(570), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_DOLLAR] = ACTIONS(574), - [anon_sym_TODO] = ACTIONS(576), - [anon_sym_WIP] = ACTIONS(576), - [anon_sym_NOTE] = ACTIONS(578), - [anon_sym_INFO] = ACTIONS(578), - [anon_sym_XXX] = ACTIONS(578), - [sym_fixme] = ACTIONS(562), - [sym__whitespace1] = ACTIONS(580), - [sym__newline] = ACTIONS(582), - [aux_sym__text_token1] = ACTIONS(584), - [sym__verbatim_begin] = ACTIONS(586), + [sym__inline] = STATE(903), + [sym__element] = STATE(106), + [sym_emphasis] = STATE(139), + [sym_emphasis_begin] = STATE(1102), + [sym_strong] = STATE(139), + [sym_strong_begin] = STATE(1103), + [sym_superscript] = STATE(139), + [sym_superscript_begin] = STATE(1104), + [sym_subscript] = STATE(139), + [sym_subscript_begin] = STATE(1105), + [sym_highlighted] = STATE(139), + [sym_highlighted_begin] = STATE(1106), + [sym_insert] = STATE(139), + [sym_insert_begin] = STATE(1107), + [sym_delete] = STATE(139), + [sym_delete_begin] = STATE(1108), + [sym_hard_line_break] = STATE(139), + [sym__smart_punctuation] = STATE(139), + [sym_autolink] = STATE(139), + [sym_footnote_reference] = STATE(139), + [sym_footnote_marker_begin] = STATE(1109), + [sym__image] = STATE(139), + [sym_full_reference_image] = STATE(139), + [sym_collapsed_reference_image] = STATE(139), + [sym_inline_image] = STATE(139), + [sym_image_description] = STATE(623), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(139), + [sym_full_reference_link] = STATE(139), + [sym_collapsed_reference_link] = STATE(139), + [sym_inline_link] = STATE(139), + [sym_link_text] = STATE(621), + [sym_span] = STATE(106), + [sym__bracketed_text_begin] = STATE(1184), + [sym__comment_with_spaces] = STATE(139), + [sym_raw_inline] = STATE(139), + [sym_math] = STATE(139), + [sym_verbatim] = STATE(139), + [sym__todo_highlights] = STATE(139), + [sym_todo] = STATE(139), + [sym_note] = STATE(139), + [sym__symbol_fallback] = STATE(139), + [aux_sym__text] = STATE(126), + [aux_sym__inline_repeat1] = STATE(106), + [anon_sym_LBRACE_] = ACTIONS(101), + [anon_sym__] = ACTIONS(103), + [anon_sym_LBRACE_STAR] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(107), + [anon_sym_LBRACE_CARET] = ACTIONS(109), + [anon_sym_CARET] = ACTIONS(109), + [anon_sym_LBRACE_TILDE] = ACTIONS(111), + [anon_sym_TILDE] = ACTIONS(111), + [anon_sym_LBRACE_EQ] = ACTIONS(113), + [anon_sym_LBRACE_PLUS] = ACTIONS(115), + [anon_sym_LBRACE_DASH] = ACTIONS(117), + [anon_sym_BSLASH] = ACTIONS(119), + [sym_quotation_marks] = ACTIONS(121), + [sym_ellipsis] = ACTIONS(121), + [sym_em_dash] = ACTIONS(121), + [sym_en_dash] = ACTIONS(123), + [sym_backslash_escape] = ACTIONS(123), + [anon_sym_LT] = ACTIONS(125), + [sym_symbol] = ACTIONS(121), + [anon_sym_LBRACK_CARET] = ACTIONS(127), + [anon_sym_BANG_LBRACK] = ACTIONS(129), + [anon_sym_LBRACK] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_DOLLAR] = ACTIONS(135), + [anon_sym_TODO] = ACTIONS(137), + [anon_sym_WIP] = ACTIONS(137), + [anon_sym_NOTE] = ACTIONS(139), + [anon_sym_INFO] = ACTIONS(139), + [anon_sym_XXX] = ACTIONS(139), + [sym_fixme] = ACTIONS(121), + [sym__whitespace1] = ACTIONS(141), + [sym__newline] = ACTIONS(143), + [aux_sym__text_token1] = ACTIONS(145), + [sym__verbatim_begin] = ACTIONS(147), }, [92] = { - [sym__inline] = STATE(963), - [sym__element] = STATE(80), - [sym_emphasis] = STATE(145), - [sym_emphasis_begin] = STATE(1190), - [sym_strong] = STATE(145), - [sym_strong_begin] = STATE(1191), - [sym_superscript] = STATE(145), - [sym_superscript_begin] = STATE(1192), - [sym_subscript] = STATE(145), - [sym_subscript_begin] = STATE(1193), - [sym_highlighted] = STATE(145), - [sym_highlighted_begin] = STATE(1194), - [sym_insert] = STATE(145), - [sym_insert_begin] = STATE(1195), - [sym_delete] = STATE(145), - [sym_delete_begin] = STATE(1196), - [sym_hard_line_break] = STATE(145), - [sym__smart_punctuation] = STATE(145), - [sym_autolink] = STATE(145), - [sym_footnote_reference] = STATE(145), - [sym_footnote_marker_begin] = STATE(1197), - [sym__image] = STATE(145), - [sym_full_reference_image] = STATE(145), - [sym_collapsed_reference_image] = STATE(145), - [sym_inline_image] = STATE(145), - [sym_image_description] = STATE(696), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(145), - [sym_full_reference_link] = STATE(145), - [sym_collapsed_reference_link] = STATE(145), - [sym_inline_link] = STATE(145), - [sym_link_text] = STATE(691), - [sym_span] = STATE(80), - [sym__bracketed_text_begin] = STATE(1265), - [sym__comment_with_spaces] = STATE(145), - [sym_raw_inline] = STATE(145), - [sym_math] = STATE(145), - [sym_verbatim] = STATE(145), - [sym__todo_highlights] = STATE(145), - [sym_todo] = STATE(145), - [sym_note] = STATE(145), - [sym__symbol_fallback] = STATE(145), - [aux_sym__text] = STATE(138), - [aux_sym__inline_repeat1] = STATE(80), - [anon_sym_LBRACE_] = ACTIONS(542), - [anon_sym__] = ACTIONS(544), - [anon_sym_LBRACE_STAR] = ACTIONS(546), - [anon_sym_STAR] = ACTIONS(548), - [anon_sym_LBRACE_CARET] = ACTIONS(550), - [anon_sym_CARET] = ACTIONS(550), - [anon_sym_LBRACE_TILDE] = ACTIONS(552), - [anon_sym_TILDE] = ACTIONS(552), - [anon_sym_LBRACE_EQ] = ACTIONS(554), - [anon_sym_LBRACE_PLUS] = ACTIONS(556), - [anon_sym_LBRACE_DASH] = ACTIONS(558), - [anon_sym_BSLASH] = ACTIONS(560), - [sym_quotation_marks] = ACTIONS(562), - [sym_ellipsis] = ACTIONS(562), - [sym_em_dash] = ACTIONS(562), - [sym_en_dash] = ACTIONS(564), - [sym_backslash_escape] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(566), - [sym_symbol] = ACTIONS(562), - [anon_sym_LBRACK_CARET] = ACTIONS(568), - [anon_sym_BANG_LBRACK] = ACTIONS(570), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_DOLLAR] = ACTIONS(574), - [anon_sym_TODO] = ACTIONS(576), - [anon_sym_WIP] = ACTIONS(576), - [anon_sym_NOTE] = ACTIONS(578), - [anon_sym_INFO] = ACTIONS(578), - [anon_sym_XXX] = ACTIONS(578), - [sym_fixme] = ACTIONS(562), - [sym__whitespace1] = ACTIONS(580), - [sym__newline] = ACTIONS(582), - [aux_sym__text_token1] = ACTIONS(584), - [sym__verbatim_begin] = ACTIONS(586), + [sym__inline] = STATE(1131), + [sym__element] = STATE(106), + [sym_emphasis] = STATE(139), + [sym_emphasis_begin] = STATE(1102), + [sym_strong] = STATE(139), + [sym_strong_begin] = STATE(1103), + [sym_superscript] = STATE(139), + [sym_superscript_begin] = STATE(1104), + [sym_subscript] = STATE(139), + [sym_subscript_begin] = STATE(1105), + [sym_highlighted] = STATE(139), + [sym_highlighted_begin] = STATE(1106), + [sym_insert] = STATE(139), + [sym_insert_begin] = STATE(1107), + [sym_delete] = STATE(139), + [sym_delete_begin] = STATE(1108), + [sym_hard_line_break] = STATE(139), + [sym__smart_punctuation] = STATE(139), + [sym_autolink] = STATE(139), + [sym_footnote_reference] = STATE(139), + [sym_footnote_marker_begin] = STATE(1109), + [sym__image] = STATE(139), + [sym_full_reference_image] = STATE(139), + [sym_collapsed_reference_image] = STATE(139), + [sym_inline_image] = STATE(139), + [sym_image_description] = STATE(623), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(139), + [sym_full_reference_link] = STATE(139), + [sym_collapsed_reference_link] = STATE(139), + [sym_inline_link] = STATE(139), + [sym_link_text] = STATE(621), + [sym_span] = STATE(106), + [sym__bracketed_text_begin] = STATE(1184), + [sym__comment_with_spaces] = STATE(139), + [sym_raw_inline] = STATE(139), + [sym_math] = STATE(139), + [sym_verbatim] = STATE(139), + [sym__todo_highlights] = STATE(139), + [sym_todo] = STATE(139), + [sym_note] = STATE(139), + [sym__symbol_fallback] = STATE(139), + [aux_sym__text] = STATE(126), + [aux_sym__inline_repeat1] = STATE(106), + [anon_sym_LBRACE_] = ACTIONS(101), + [anon_sym__] = ACTIONS(103), + [anon_sym_LBRACE_STAR] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(107), + [anon_sym_LBRACE_CARET] = ACTIONS(109), + [anon_sym_CARET] = ACTIONS(109), + [anon_sym_LBRACE_TILDE] = ACTIONS(111), + [anon_sym_TILDE] = ACTIONS(111), + [anon_sym_LBRACE_EQ] = ACTIONS(113), + [anon_sym_LBRACE_PLUS] = ACTIONS(115), + [anon_sym_LBRACE_DASH] = ACTIONS(117), + [anon_sym_BSLASH] = ACTIONS(119), + [sym_quotation_marks] = ACTIONS(121), + [sym_ellipsis] = ACTIONS(121), + [sym_em_dash] = ACTIONS(121), + [sym_en_dash] = ACTIONS(123), + [sym_backslash_escape] = ACTIONS(123), + [anon_sym_LT] = ACTIONS(125), + [sym_symbol] = ACTIONS(121), + [anon_sym_LBRACK_CARET] = ACTIONS(127), + [anon_sym_BANG_LBRACK] = ACTIONS(129), + [anon_sym_LBRACK] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_DOLLAR] = ACTIONS(135), + [anon_sym_TODO] = ACTIONS(137), + [anon_sym_WIP] = ACTIONS(137), + [anon_sym_NOTE] = ACTIONS(139), + [anon_sym_INFO] = ACTIONS(139), + [anon_sym_XXX] = ACTIONS(139), + [sym_fixme] = ACTIONS(121), + [sym__whitespace1] = ACTIONS(141), + [sym__newline] = ACTIONS(143), + [aux_sym__text_token1] = ACTIONS(145), + [sym__verbatim_begin] = ACTIONS(147), }, [93] = { - [sym__inline] = STATE(967), - [sym__element] = STATE(124), - [sym_emphasis] = STATE(151), - [sym_emphasis_begin] = STATE(1181), - [sym_strong] = STATE(151), - [sym_strong_begin] = STATE(1182), - [sym_superscript] = STATE(151), - [sym_superscript_begin] = STATE(1183), - [sym_subscript] = STATE(151), - [sym_subscript_begin] = STATE(1184), - [sym_highlighted] = STATE(151), - [sym_highlighted_begin] = STATE(1185), - [sym_insert] = STATE(151), - [sym_insert_begin] = STATE(1186), - [sym_delete] = STATE(151), - [sym_delete_begin] = STATE(1187), - [sym_hard_line_break] = STATE(151), - [sym__smart_punctuation] = STATE(151), - [sym_autolink] = STATE(151), - [sym_footnote_reference] = STATE(151), - [sym_footnote_marker_begin] = STATE(1188), - [sym__image] = STATE(151), - [sym_full_reference_image] = STATE(151), - [sym_collapsed_reference_image] = STATE(151), - [sym_inline_image] = STATE(151), - [sym_image_description] = STATE(700), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(151), - [sym_full_reference_link] = STATE(151), - [sym_collapsed_reference_link] = STATE(151), - [sym_inline_link] = STATE(151), - [sym_link_text] = STATE(701), - [sym_span] = STATE(124), - [sym__bracketed_text_begin] = STATE(1264), - [sym__comment_with_spaces] = STATE(151), - [sym_raw_inline] = STATE(151), - [sym_math] = STATE(151), - [sym_verbatim] = STATE(151), - [sym__todo_highlights] = STATE(151), - [sym_todo] = STATE(151), - [sym_note] = STATE(151), - [sym__symbol_fallback] = STATE(151), - [aux_sym__text] = STATE(140), - [aux_sym__inline_repeat1] = STATE(124), - [anon_sym_LBRACE_] = ACTIONS(143), - [anon_sym__] = ACTIONS(145), - [anon_sym_LBRACE_STAR] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_LBRACE_CARET] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(151), - [anon_sym_LBRACE_TILDE] = ACTIONS(153), - [anon_sym_TILDE] = ACTIONS(153), - [anon_sym_LBRACE_EQ] = ACTIONS(155), - [anon_sym_LBRACE_PLUS] = ACTIONS(157), - [anon_sym_LBRACE_DASH] = ACTIONS(159), - [anon_sym_BSLASH] = ACTIONS(161), - [sym_quotation_marks] = ACTIONS(163), - [sym_ellipsis] = ACTIONS(163), - [sym_em_dash] = ACTIONS(163), - [sym_en_dash] = ACTIONS(165), - [sym_backslash_escape] = ACTIONS(165), - [anon_sym_LT] = ACTIONS(167), - [sym_symbol] = ACTIONS(163), - [anon_sym_LBRACK_CARET] = ACTIONS(169), - [anon_sym_BANG_LBRACK] = ACTIONS(171), - [anon_sym_LBRACK] = ACTIONS(173), - [anon_sym_DOLLAR] = ACTIONS(175), - [anon_sym_TODO] = ACTIONS(177), - [anon_sym_WIP] = ACTIONS(177), - [anon_sym_NOTE] = ACTIONS(179), - [anon_sym_INFO] = ACTIONS(179), - [anon_sym_XXX] = ACTIONS(179), - [sym_fixme] = ACTIONS(163), - [sym__whitespace1] = ACTIONS(181), - [sym__newline] = ACTIONS(183), - [aux_sym__text_token1] = ACTIONS(185), - [sym__verbatim_begin] = ACTIONS(187), + [sym__inline] = STATE(997), + [sym__element] = STATE(37), + [sym_emphasis] = STATE(131), + [sym_emphasis_begin] = STATE(1132), + [sym_strong] = STATE(131), + [sym_strong_begin] = STATE(1133), + [sym_superscript] = STATE(131), + [sym_superscript_begin] = STATE(1134), + [sym_subscript] = STATE(131), + [sym_subscript_begin] = STATE(1135), + [sym_highlighted] = STATE(131), + [sym_highlighted_begin] = STATE(1136), + [sym_insert] = STATE(131), + [sym_insert_begin] = STATE(1137), + [sym_delete] = STATE(131), + [sym_delete_begin] = STATE(1138), + [sym_hard_line_break] = STATE(131), + [sym__smart_punctuation] = STATE(131), + [sym_autolink] = STATE(131), + [sym_footnote_reference] = STATE(131), + [sym_footnote_marker_begin] = STATE(1139), + [sym__image] = STATE(131), + [sym_full_reference_image] = STATE(131), + [sym_collapsed_reference_image] = STATE(131), + [sym_inline_image] = STATE(131), + [sym_image_description] = STATE(643), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(131), + [sym_full_reference_link] = STATE(131), + [sym_collapsed_reference_link] = STATE(131), + [sym_inline_link] = STATE(131), + [sym_link_text] = STATE(619), + [sym_span] = STATE(37), + [sym__bracketed_text_begin] = STATE(1187), + [sym__comment_with_spaces] = STATE(131), + [sym_raw_inline] = STATE(131), + [sym_math] = STATE(131), + [sym_verbatim] = STATE(131), + [sym__todo_highlights] = STATE(131), + [sym_todo] = STATE(131), + [sym_note] = STATE(131), + [sym__symbol_fallback] = STATE(131), + [aux_sym__text] = STATE(123), + [aux_sym__inline_repeat1] = STATE(37), + [anon_sym_LBRACE_] = ACTIONS(537), + [anon_sym__] = ACTIONS(539), + [anon_sym_LBRACE_STAR] = ACTIONS(541), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE_CARET] = ACTIONS(545), + [anon_sym_CARET] = ACTIONS(545), + [anon_sym_LBRACE_TILDE] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(547), + [anon_sym_LBRACE_EQ] = ACTIONS(549), + [anon_sym_LBRACE_PLUS] = ACTIONS(551), + [anon_sym_LBRACE_DASH] = ACTIONS(553), + [anon_sym_BSLASH] = ACTIONS(555), + [sym_quotation_marks] = ACTIONS(557), + [sym_ellipsis] = ACTIONS(557), + [sym_em_dash] = ACTIONS(557), + [sym_en_dash] = ACTIONS(559), + [sym_backslash_escape] = ACTIONS(559), + [anon_sym_LT] = ACTIONS(561), + [sym_symbol] = ACTIONS(557), + [anon_sym_LBRACK_CARET] = ACTIONS(563), + [anon_sym_BANG_LBRACK] = ACTIONS(565), + [anon_sym_LBRACK] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_DOLLAR] = ACTIONS(571), + [anon_sym_TODO] = ACTIONS(573), + [anon_sym_WIP] = ACTIONS(573), + [anon_sym_NOTE] = ACTIONS(575), + [anon_sym_INFO] = ACTIONS(575), + [anon_sym_XXX] = ACTIONS(575), + [sym_fixme] = ACTIONS(557), + [sym__whitespace1] = ACTIONS(577), + [sym__newline] = ACTIONS(579), + [aux_sym__text_token1] = ACTIONS(581), + [sym__verbatim_begin] = ACTIONS(583), }, [94] = { - [sym__inline_without_trailing_space] = STATE(968), - [sym__element] = STATE(570), - [sym_emphasis] = STATE(152), - [sym_emphasis_begin] = STATE(1172), - [sym_strong] = STATE(152), - [sym_strong_begin] = STATE(1173), - [sym_superscript] = STATE(152), - [sym_superscript_begin] = STATE(1174), - [sym_subscript] = STATE(152), - [sym_subscript_begin] = STATE(1175), - [sym_highlighted] = STATE(152), - [sym_highlighted_begin] = STATE(1176), - [sym_insert] = STATE(152), - [sym_insert_begin] = STATE(1177), - [sym_delete] = STATE(152), - [sym_delete_begin] = STATE(1178), - [sym_hard_line_break] = STATE(152), - [sym__smart_punctuation] = STATE(152), - [sym_autolink] = STATE(152), - [sym_footnote_reference] = STATE(152), - [sym_footnote_marker_begin] = STATE(1179), - [sym__image] = STATE(152), - [sym_full_reference_image] = STATE(152), - [sym_collapsed_reference_image] = STATE(152), - [sym_inline_image] = STATE(152), - [sym_image_description] = STATE(704), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(152), - [sym_full_reference_link] = STATE(152), - [sym_collapsed_reference_link] = STATE(152), - [sym_inline_link] = STATE(152), - [sym_link_text] = STATE(706), - [sym_span] = STATE(570), - [sym__bracketed_text_begin] = STATE(1263), - [sym__comment_with_spaces] = STATE(152), - [sym_raw_inline] = STATE(152), - [sym_math] = STATE(152), - [sym_verbatim] = STATE(152), - [sym__todo_highlights] = STATE(152), - [sym_todo] = STATE(152), - [sym_note] = STATE(152), - [sym__symbol_fallback] = STATE(152), - [aux_sym__text] = STATE(133), - [aux_sym__inline_repeat1] = STATE(130), - [anon_sym_LBRACE_] = ACTIONS(448), - [anon_sym__] = ACTIONS(450), - [anon_sym_LBRACE_STAR] = ACTIONS(452), - [anon_sym_STAR] = ACTIONS(454), - [anon_sym_LBRACE_CARET] = ACTIONS(456), - [anon_sym_CARET] = ACTIONS(456), - [anon_sym_LBRACE_TILDE] = ACTIONS(458), - [anon_sym_TILDE] = ACTIONS(458), - [anon_sym_LBRACE_EQ] = ACTIONS(460), - [anon_sym_LBRACE_PLUS] = ACTIONS(462), - [anon_sym_LBRACE_DASH] = ACTIONS(464), - [anon_sym_BSLASH] = ACTIONS(466), - [sym_quotation_marks] = ACTIONS(468), - [sym_ellipsis] = ACTIONS(468), - [sym_em_dash] = ACTIONS(468), - [sym_en_dash] = ACTIONS(470), - [sym_backslash_escape] = ACTIONS(470), - [anon_sym_LT] = ACTIONS(472), - [sym_symbol] = ACTIONS(468), - [anon_sym_LBRACK_CARET] = ACTIONS(474), - [anon_sym_BANG_LBRACK] = ACTIONS(476), - [anon_sym_LBRACK] = ACTIONS(478), - [anon_sym_DOLLAR] = ACTIONS(480), - [anon_sym_TODO] = ACTIONS(482), - [anon_sym_WIP] = ACTIONS(482), - [anon_sym_NOTE] = ACTIONS(484), - [anon_sym_INFO] = ACTIONS(484), - [anon_sym_XXX] = ACTIONS(484), - [sym_fixme] = ACTIONS(468), - [sym__whitespace1] = ACTIONS(486), - [sym__newline] = ACTIONS(488), - [aux_sym__text_token1] = ACTIONS(490), - [sym__verbatim_begin] = ACTIONS(492), + [sym__inline_without_trailing_space] = STATE(905), + [sym__element] = STATE(581), + [sym_emphasis] = STATE(141), + [sym_emphasis_begin] = STATE(1082), + [sym_strong] = STATE(141), + [sym_strong_begin] = STATE(1083), + [sym_superscript] = STATE(141), + [sym_superscript_begin] = STATE(1084), + [sym_subscript] = STATE(141), + [sym_subscript_begin] = STATE(1085), + [sym_highlighted] = STATE(141), + [sym_highlighted_begin] = STATE(1086), + [sym_insert] = STATE(141), + [sym_insert_begin] = STATE(1087), + [sym_delete] = STATE(141), + [sym_delete_begin] = STATE(1088), + [sym_hard_line_break] = STATE(141), + [sym__smart_punctuation] = STATE(141), + [sym_autolink] = STATE(141), + [sym_footnote_reference] = STATE(141), + [sym_footnote_marker_begin] = STATE(1089), + [sym__image] = STATE(141), + [sym_full_reference_image] = STATE(141), + [sym_collapsed_reference_image] = STATE(141), + [sym_inline_image] = STATE(141), + [sym_image_description] = STATE(642), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(141), + [sym_full_reference_link] = STATE(141), + [sym_collapsed_reference_link] = STATE(141), + [sym_inline_link] = STATE(141), + [sym_link_text] = STATE(629), + [sym_span] = STATE(581), + [sym__bracketed_text_begin] = STATE(1182), + [sym__comment_with_spaces] = STATE(141), + [sym_raw_inline] = STATE(141), + [sym_math] = STATE(141), + [sym_verbatim] = STATE(141), + [sym__todo_highlights] = STATE(141), + [sym_todo] = STATE(141), + [sym_note] = STATE(141), + [sym__symbol_fallback] = STATE(141), + [aux_sym__text] = STATE(125), + [aux_sym__inline_repeat1] = STATE(119), + [anon_sym_LBRACE_] = ACTIONS(585), + [anon_sym__] = ACTIONS(587), + [anon_sym_LBRACE_STAR] = ACTIONS(589), + [anon_sym_STAR] = ACTIONS(591), + [anon_sym_LBRACE_CARET] = ACTIONS(593), + [anon_sym_CARET] = ACTIONS(593), + [anon_sym_LBRACE_TILDE] = ACTIONS(595), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_LBRACE_EQ] = ACTIONS(597), + [anon_sym_LBRACE_PLUS] = ACTIONS(599), + [anon_sym_LBRACE_DASH] = ACTIONS(601), + [anon_sym_BSLASH] = ACTIONS(603), + [sym_quotation_marks] = ACTIONS(605), + [sym_ellipsis] = ACTIONS(605), + [sym_em_dash] = ACTIONS(605), + [sym_en_dash] = ACTIONS(607), + [sym_backslash_escape] = ACTIONS(607), + [anon_sym_LT] = ACTIONS(609), + [sym_symbol] = ACTIONS(605), + [anon_sym_LBRACK_CARET] = ACTIONS(611), + [anon_sym_BANG_LBRACK] = ACTIONS(613), + [anon_sym_LBRACK] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [anon_sym_TODO] = ACTIONS(621), + [anon_sym_WIP] = ACTIONS(621), + [anon_sym_NOTE] = ACTIONS(623), + [anon_sym_INFO] = ACTIONS(623), + [anon_sym_XXX] = ACTIONS(623), + [sym_fixme] = ACTIONS(605), + [sym__whitespace1] = ACTIONS(625), + [sym__newline] = ACTIONS(627), + [aux_sym__text_token1] = ACTIONS(629), + [sym__verbatim_begin] = ACTIONS(631), }, [95] = { - [sym__inline] = STATE(1252), - [sym__element] = STATE(21), - [sym_emphasis] = STATE(149), - [sym_emphasis_begin] = STATE(1199), - [sym_strong] = STATE(149), - [sym_strong_begin] = STATE(1200), - [sym_superscript] = STATE(149), - [sym_superscript_begin] = STATE(1201), - [sym_subscript] = STATE(149), - [sym_subscript_begin] = STATE(1202), - [sym_highlighted] = STATE(149), - [sym_highlighted_begin] = STATE(1203), - [sym_insert] = STATE(149), - [sym_insert_begin] = STATE(1204), - [sym_delete] = STATE(149), - [sym_delete_begin] = STATE(1205), - [sym_hard_line_break] = STATE(149), - [sym__smart_punctuation] = STATE(149), - [sym_autolink] = STATE(149), - [sym_footnote_reference] = STATE(149), - [sym_footnote_marker_begin] = STATE(1206), - [sym__image] = STATE(149), - [sym_full_reference_image] = STATE(149), - [sym_collapsed_reference_image] = STATE(149), - [sym_inline_image] = STATE(149), - [sym_image_description] = STATE(714), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(149), - [sym_full_reference_link] = STATE(149), - [sym_collapsed_reference_link] = STATE(149), - [sym_inline_link] = STATE(149), - [sym_link_text] = STATE(710), - [sym_span] = STATE(21), - [sym__bracketed_text_begin] = STATE(1266), - [sym__comment_with_spaces] = STATE(149), - [sym_raw_inline] = STATE(149), - [sym_math] = STATE(149), - [sym_verbatim] = STATE(149), - [sym__todo_highlights] = STATE(149), - [sym_todo] = STATE(149), - [sym_note] = STATE(149), - [sym__symbol_fallback] = STATE(149), - [aux_sym__text] = STATE(142), - [aux_sym__inline_repeat1] = STATE(21), - [anon_sym_LBRACE_] = ACTIONS(494), - [anon_sym__] = ACTIONS(496), - [anon_sym_LBRACE_STAR] = ACTIONS(498), - [anon_sym_STAR] = ACTIONS(500), - [anon_sym_LBRACE_CARET] = ACTIONS(502), - [anon_sym_CARET] = ACTIONS(502), - [anon_sym_LBRACE_TILDE] = ACTIONS(504), - [anon_sym_TILDE] = ACTIONS(504), - [anon_sym_LBRACE_EQ] = ACTIONS(506), - [anon_sym_LBRACE_PLUS] = ACTIONS(508), - [anon_sym_LBRACE_DASH] = ACTIONS(510), - [anon_sym_BSLASH] = ACTIONS(512), - [sym_quotation_marks] = ACTIONS(514), - [sym_ellipsis] = ACTIONS(514), - [sym_em_dash] = ACTIONS(514), - [sym_en_dash] = ACTIONS(516), - [sym_backslash_escape] = ACTIONS(516), - [anon_sym_LT] = ACTIONS(518), - [sym_symbol] = ACTIONS(514), - [anon_sym_LBRACK_CARET] = ACTIONS(520), - [anon_sym_BANG_LBRACK] = ACTIONS(522), - [anon_sym_LBRACK] = ACTIONS(524), - [anon_sym_DOLLAR] = ACTIONS(526), - [anon_sym_TODO] = ACTIONS(528), - [anon_sym_WIP] = ACTIONS(528), - [anon_sym_NOTE] = ACTIONS(530), - [anon_sym_INFO] = ACTIONS(530), - [anon_sym_XXX] = ACTIONS(530), - [sym_fixme] = ACTIONS(514), - [sym__whitespace1] = ACTIONS(532), - [sym__newline] = ACTIONS(540), - [aux_sym__text_token1] = ACTIONS(536), - [sym__verbatim_begin] = ACTIONS(538), + [sym__inline] = STATE(958), + [sym__element] = STATE(71), + [sym_emphasis] = STATE(132), + [sym_emphasis_begin] = STATE(1152), + [sym_strong] = STATE(132), + [sym_strong_begin] = STATE(1153), + [sym_superscript] = STATE(132), + [sym_superscript_begin] = STATE(1154), + [sym_subscript] = STATE(132), + [sym_subscript_begin] = STATE(1155), + [sym_highlighted] = STATE(132), + [sym_highlighted_begin] = STATE(1156), + [sym_insert] = STATE(132), + [sym_insert_begin] = STATE(1157), + [sym_delete] = STATE(132), + [sym_delete_begin] = STATE(1158), + [sym_hard_line_break] = STATE(132), + [sym__smart_punctuation] = STATE(132), + [sym_autolink] = STATE(132), + [sym_footnote_reference] = STATE(132), + [sym_footnote_marker_begin] = STATE(1159), + [sym__image] = STATE(132), + [sym_full_reference_image] = STATE(132), + [sym_collapsed_reference_image] = STATE(132), + [sym_inline_image] = STATE(132), + [sym_image_description] = STATE(633), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(132), + [sym_full_reference_link] = STATE(132), + [sym_collapsed_reference_link] = STATE(132), + [sym_inline_link] = STATE(132), + [sym_link_text] = STATE(631), + [sym_span] = STATE(71), + [sym__bracketed_text_begin] = STATE(1189), + [sym__comment_with_spaces] = STATE(132), + [sym_raw_inline] = STATE(132), + [sym_math] = STATE(132), + [sym_verbatim] = STATE(132), + [sym__todo_highlights] = STATE(132), + [sym_todo] = STATE(132), + [sym_note] = STATE(132), + [sym__symbol_fallback] = STATE(132), + [aux_sym__text] = STATE(128), + [aux_sym__inline_repeat1] = STATE(71), + [anon_sym_LBRACE_] = ACTIONS(441), + [anon_sym__] = ACTIONS(443), + [anon_sym_LBRACE_STAR] = ACTIONS(445), + [anon_sym_STAR] = ACTIONS(447), + [anon_sym_LBRACE_CARET] = ACTIONS(449), + [anon_sym_CARET] = ACTIONS(449), + [anon_sym_LBRACE_TILDE] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_LBRACE_EQ] = ACTIONS(453), + [anon_sym_LBRACE_PLUS] = ACTIONS(455), + [anon_sym_LBRACE_DASH] = ACTIONS(457), + [anon_sym_BSLASH] = ACTIONS(459), + [sym_quotation_marks] = ACTIONS(461), + [sym_ellipsis] = ACTIONS(461), + [sym_em_dash] = ACTIONS(461), + [sym_en_dash] = ACTIONS(463), + [sym_backslash_escape] = ACTIONS(463), + [anon_sym_LT] = ACTIONS(465), + [sym_symbol] = ACTIONS(461), + [anon_sym_LBRACK_CARET] = ACTIONS(467), + [anon_sym_BANG_LBRACK] = ACTIONS(469), + [anon_sym_LBRACK] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(473), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_TODO] = ACTIONS(477), + [anon_sym_WIP] = ACTIONS(477), + [anon_sym_NOTE] = ACTIONS(479), + [anon_sym_INFO] = ACTIONS(479), + [anon_sym_XXX] = ACTIONS(479), + [sym_fixme] = ACTIONS(461), + [sym__whitespace1] = ACTIONS(481), + [sym__newline] = ACTIONS(483), + [aux_sym__text_token1] = ACTIONS(485), + [sym__verbatim_begin] = ACTIONS(487), }, [96] = { - [sym__inline] = STATE(1243), - [sym__element] = STATE(7), - [sym_emphasis] = STATE(153), - [sym_emphasis_begin] = STATE(1208), - [sym_strong] = STATE(153), - [sym_strong_begin] = STATE(1209), - [sym_superscript] = STATE(153), - [sym_superscript_begin] = STATE(1210), - [sym_subscript] = STATE(153), - [sym_subscript_begin] = STATE(1211), - [sym_highlighted] = STATE(153), - [sym_highlighted_begin] = STATE(1212), - [sym_insert] = STATE(153), - [sym_insert_begin] = STATE(1213), - [sym_delete] = STATE(153), - [sym_delete_begin] = STATE(1214), - [sym_hard_line_break] = STATE(153), - [sym__smart_punctuation] = STATE(153), - [sym_autolink] = STATE(153), - [sym_footnote_reference] = STATE(153), - [sym_footnote_marker_begin] = STATE(1215), - [sym__image] = STATE(153), - [sym_full_reference_image] = STATE(153), - [sym_collapsed_reference_image] = STATE(153), - [sym_inline_image] = STATE(153), - [sym_image_description] = STATE(707), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(153), - [sym_full_reference_link] = STATE(153), - [sym_collapsed_reference_link] = STATE(153), - [sym_inline_link] = STATE(153), - [sym_link_text] = STATE(705), - [sym_span] = STATE(7), - [sym__bracketed_text_begin] = STATE(1267), - [sym__comment_with_spaces] = STATE(153), - [sym_raw_inline] = STATE(153), - [sym_math] = STATE(153), - [sym_verbatim] = STATE(153), - [sym__todo_highlights] = STATE(153), - [sym_todo] = STATE(153), - [sym_note] = STATE(153), - [sym__symbol_fallback] = STATE(153), - [aux_sym__text] = STATE(134), - [aux_sym__inline_repeat1] = STATE(7), - [anon_sym_LBRACE_] = ACTIONS(97), - [anon_sym__] = ACTIONS(99), - [anon_sym_LBRACE_STAR] = ACTIONS(101), - [anon_sym_STAR] = ACTIONS(103), - [anon_sym_LBRACE_CARET] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [anon_sym_LBRACE_TILDE] = ACTIONS(107), - [anon_sym_TILDE] = ACTIONS(107), - [anon_sym_LBRACE_EQ] = ACTIONS(109), - [anon_sym_LBRACE_PLUS] = ACTIONS(111), - [anon_sym_LBRACE_DASH] = ACTIONS(113), - [anon_sym_BSLASH] = ACTIONS(115), - [sym_quotation_marks] = ACTIONS(117), - [sym_ellipsis] = ACTIONS(117), - [sym_em_dash] = ACTIONS(117), - [sym_en_dash] = ACTIONS(119), - [sym_backslash_escape] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [sym_symbol] = ACTIONS(117), - [anon_sym_LBRACK_CARET] = ACTIONS(123), - [anon_sym_BANG_LBRACK] = ACTIONS(125), - [anon_sym_LBRACK] = ACTIONS(127), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_TODO] = ACTIONS(131), - [anon_sym_WIP] = ACTIONS(131), - [anon_sym_NOTE] = ACTIONS(133), - [anon_sym_INFO] = ACTIONS(133), - [anon_sym_XXX] = ACTIONS(133), - [sym_fixme] = ACTIONS(117), - [sym__whitespace1] = ACTIONS(135), - [sym__newline] = ACTIONS(137), - [aux_sym__text_token1] = ACTIONS(139), - [sym__verbatim_begin] = ACTIONS(141), + [sym__inline] = STATE(1121), + [sym__element] = STATE(22), + [sym_emphasis] = STATE(137), + [sym_emphasis_begin] = STATE(1112), + [sym_strong] = STATE(137), + [sym_strong_begin] = STATE(1113), + [sym_superscript] = STATE(137), + [sym_superscript_begin] = STATE(1114), + [sym_subscript] = STATE(137), + [sym_subscript_begin] = STATE(1115), + [sym_highlighted] = STATE(137), + [sym_highlighted_begin] = STATE(1116), + [sym_insert] = STATE(137), + [sym_insert_begin] = STATE(1117), + [sym_delete] = STATE(137), + [sym_delete_begin] = STATE(1118), + [sym_hard_line_break] = STATE(137), + [sym__smart_punctuation] = STATE(137), + [sym_autolink] = STATE(137), + [sym_footnote_reference] = STATE(137), + [sym_footnote_marker_begin] = STATE(1119), + [sym__image] = STATE(137), + [sym_full_reference_image] = STATE(137), + [sym_collapsed_reference_image] = STATE(137), + [sym_inline_image] = STATE(137), + [sym_image_description] = STATE(636), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(137), + [sym_full_reference_link] = STATE(137), + [sym_collapsed_reference_link] = STATE(137), + [sym_inline_link] = STATE(137), + [sym_link_text] = STATE(647), + [sym_span] = STATE(22), + [sym__bracketed_text_begin] = STATE(1185), + [sym__comment_with_spaces] = STATE(137), + [sym_raw_inline] = STATE(137), + [sym_math] = STATE(137), + [sym_verbatim] = STATE(137), + [sym__todo_highlights] = STATE(137), + [sym_todo] = STATE(137), + [sym_note] = STATE(137), + [sym__symbol_fallback] = STATE(137), + [aux_sym__text] = STATE(122), + [aux_sym__inline_repeat1] = STATE(22), + [anon_sym_LBRACE_] = ACTIONS(197), + [anon_sym__] = ACTIONS(199), + [anon_sym_LBRACE_STAR] = ACTIONS(201), + [anon_sym_STAR] = ACTIONS(203), + [anon_sym_LBRACE_CARET] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(205), + [anon_sym_LBRACE_TILDE] = ACTIONS(207), + [anon_sym_TILDE] = ACTIONS(207), + [anon_sym_LBRACE_EQ] = ACTIONS(209), + [anon_sym_LBRACE_PLUS] = ACTIONS(211), + [anon_sym_LBRACE_DASH] = ACTIONS(213), + [anon_sym_BSLASH] = ACTIONS(215), + [sym_quotation_marks] = ACTIONS(217), + [sym_ellipsis] = ACTIONS(217), + [sym_em_dash] = ACTIONS(217), + [sym_en_dash] = ACTIONS(219), + [sym_backslash_escape] = ACTIONS(219), + [anon_sym_LT] = ACTIONS(221), + [sym_symbol] = ACTIONS(217), + [anon_sym_LBRACK_CARET] = ACTIONS(223), + [anon_sym_BANG_LBRACK] = ACTIONS(225), + [anon_sym_LBRACK] = ACTIONS(227), + [anon_sym_LPAREN] = ACTIONS(229), + [anon_sym_DOLLAR] = ACTIONS(231), + [anon_sym_TODO] = ACTIONS(233), + [anon_sym_WIP] = ACTIONS(233), + [anon_sym_NOTE] = ACTIONS(235), + [anon_sym_INFO] = ACTIONS(235), + [anon_sym_XXX] = ACTIONS(235), + [sym_fixme] = ACTIONS(217), + [sym__whitespace1] = ACTIONS(237), + [sym__newline] = ACTIONS(239), + [aux_sym__text_token1] = ACTIONS(241), + [sym__verbatim_begin] = ACTIONS(243), }, [97] = { - [sym__inline_without_trailing_space] = STATE(969), - [sym__element] = STATE(623), - [sym_emphasis] = STATE(148), - [sym_emphasis_begin] = STATE(1163), - [sym_strong] = STATE(148), - [sym_strong_begin] = STATE(1164), - [sym_superscript] = STATE(148), - [sym_superscript_begin] = STATE(1165), - [sym_subscript] = STATE(148), - [sym_subscript_begin] = STATE(1166), - [sym_highlighted] = STATE(148), - [sym_highlighted_begin] = STATE(1167), - [sym_insert] = STATE(148), - [sym_insert_begin] = STATE(1168), - [sym_delete] = STATE(148), - [sym_delete_begin] = STATE(1169), - [sym_hard_line_break] = STATE(148), - [sym__smart_punctuation] = STATE(148), - [sym_autolink] = STATE(148), - [sym_footnote_reference] = STATE(148), - [sym_footnote_marker_begin] = STATE(1170), - [sym__image] = STATE(148), - [sym_full_reference_image] = STATE(148), - [sym_collapsed_reference_image] = STATE(148), - [sym_inline_image] = STATE(148), - [sym_image_description] = STATE(712), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(148), - [sym_full_reference_link] = STATE(148), - [sym_collapsed_reference_link] = STATE(148), - [sym_inline_link] = STATE(148), - [sym_link_text] = STATE(713), - [sym_span] = STATE(623), - [sym__bracketed_text_begin] = STATE(1262), - [sym__comment_with_spaces] = STATE(148), - [sym_raw_inline] = STATE(148), - [sym_math] = STATE(148), - [sym_verbatim] = STATE(148), - [sym__todo_highlights] = STATE(148), - [sym_todo] = STATE(148), - [sym_note] = STATE(148), - [sym__symbol_fallback] = STATE(148), - [aux_sym__text] = STATE(136), - [aux_sym__inline_repeat1] = STATE(129), - [anon_sym_LBRACE_] = ACTIONS(402), - [anon_sym__] = ACTIONS(404), - [anon_sym_LBRACE_STAR] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_LBRACE_CARET] = ACTIONS(410), - [anon_sym_CARET] = ACTIONS(410), - [anon_sym_LBRACE_TILDE] = ACTIONS(412), - [anon_sym_TILDE] = ACTIONS(412), - [anon_sym_LBRACE_EQ] = ACTIONS(414), - [anon_sym_LBRACE_PLUS] = ACTIONS(416), - [anon_sym_LBRACE_DASH] = ACTIONS(418), - [anon_sym_BSLASH] = ACTIONS(420), - [sym_quotation_marks] = ACTIONS(422), - [sym_ellipsis] = ACTIONS(422), - [sym_em_dash] = ACTIONS(422), - [sym_en_dash] = ACTIONS(424), - [sym_backslash_escape] = ACTIONS(424), - [anon_sym_LT] = ACTIONS(426), - [sym_symbol] = ACTIONS(422), - [anon_sym_LBRACK_CARET] = ACTIONS(428), - [anon_sym_BANG_LBRACK] = ACTIONS(430), - [anon_sym_LBRACK] = ACTIONS(432), - [anon_sym_DOLLAR] = ACTIONS(434), - [anon_sym_TODO] = ACTIONS(436), - [anon_sym_WIP] = ACTIONS(436), - [anon_sym_NOTE] = ACTIONS(438), - [anon_sym_INFO] = ACTIONS(438), - [anon_sym_XXX] = ACTIONS(438), - [sym_fixme] = ACTIONS(422), - [sym__whitespace1] = ACTIONS(440), - [sym__newline] = ACTIONS(442), - [aux_sym__text_token1] = ACTIONS(444), - [sym__verbatim_begin] = ACTIONS(446), + [sym__inline] = STATE(1101), + [sym__element] = STATE(14), + [sym_emphasis] = STATE(136), + [sym_emphasis_begin] = STATE(1122), + [sym_strong] = STATE(136), + [sym_strong_begin] = STATE(1123), + [sym_superscript] = STATE(136), + [sym_superscript_begin] = STATE(1124), + [sym_subscript] = STATE(136), + [sym_subscript_begin] = STATE(1125), + [sym_highlighted] = STATE(136), + [sym_highlighted_begin] = STATE(1126), + [sym_insert] = STATE(136), + [sym_insert_begin] = STATE(1127), + [sym_delete] = STATE(136), + [sym_delete_begin] = STATE(1128), + [sym_hard_line_break] = STATE(136), + [sym__smart_punctuation] = STATE(136), + [sym_autolink] = STATE(136), + [sym_footnote_reference] = STATE(136), + [sym_footnote_marker_begin] = STATE(1129), + [sym__image] = STATE(136), + [sym_full_reference_image] = STATE(136), + [sym_collapsed_reference_image] = STATE(136), + [sym_inline_image] = STATE(136), + [sym_image_description] = STATE(651), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(136), + [sym_full_reference_link] = STATE(136), + [sym_collapsed_reference_link] = STATE(136), + [sym_inline_link] = STATE(136), + [sym_link_text] = STATE(650), + [sym_span] = STATE(14), + [sym__bracketed_text_begin] = STATE(1186), + [sym__comment_with_spaces] = STATE(136), + [sym_raw_inline] = STATE(136), + [sym_math] = STATE(136), + [sym_verbatim] = STATE(136), + [sym__todo_highlights] = STATE(136), + [sym_todo] = STATE(136), + [sym_note] = STATE(136), + [sym__symbol_fallback] = STATE(136), + [aux_sym__text] = STATE(130), + [aux_sym__inline_repeat1] = STATE(14), + [anon_sym_LBRACE_] = ACTIONS(319), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_STAR] = ACTIONS(323), + [anon_sym_STAR] = ACTIONS(325), + [anon_sym_LBRACE_CARET] = ACTIONS(327), + [anon_sym_CARET] = ACTIONS(327), + [anon_sym_LBRACE_TILDE] = ACTIONS(329), + [anon_sym_TILDE] = ACTIONS(329), + [anon_sym_LBRACE_EQ] = ACTIONS(331), + [anon_sym_LBRACE_PLUS] = ACTIONS(333), + [anon_sym_LBRACE_DASH] = ACTIONS(335), + [anon_sym_BSLASH] = ACTIONS(337), + [sym_quotation_marks] = ACTIONS(339), + [sym_ellipsis] = ACTIONS(339), + [sym_em_dash] = ACTIONS(339), + [sym_en_dash] = ACTIONS(341), + [sym_backslash_escape] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [sym_symbol] = ACTIONS(339), + [anon_sym_LBRACK_CARET] = ACTIONS(345), + [anon_sym_BANG_LBRACK] = ACTIONS(347), + [anon_sym_LBRACK] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_DOLLAR] = ACTIONS(353), + [anon_sym_TODO] = ACTIONS(355), + [anon_sym_WIP] = ACTIONS(355), + [anon_sym_NOTE] = ACTIONS(357), + [anon_sym_INFO] = ACTIONS(357), + [anon_sym_XXX] = ACTIONS(357), + [sym_fixme] = ACTIONS(339), + [sym__whitespace1] = ACTIONS(359), + [sym__newline] = ACTIONS(635), + [aux_sym__text_token1] = ACTIONS(363), + [sym__verbatim_begin] = ACTIONS(365), }, [98] = { - [sym__inline] = STATE(1234), - [sym__element] = STATE(46), - [sym_emphasis] = STATE(147), - [sym_emphasis_begin] = STATE(1217), - [sym_strong] = STATE(147), - [sym_strong_begin] = STATE(1218), - [sym_superscript] = STATE(147), - [sym_superscript_begin] = STATE(1219), - [sym_subscript] = STATE(147), - [sym_subscript_begin] = STATE(1220), - [sym_highlighted] = STATE(147), - [sym_highlighted_begin] = STATE(1221), - [sym_insert] = STATE(147), - [sym_insert_begin] = STATE(1222), - [sym_delete] = STATE(147), - [sym_delete_begin] = STATE(1223), - [sym_hard_line_break] = STATE(147), - [sym__smart_punctuation] = STATE(147), - [sym_autolink] = STATE(147), - [sym_footnote_reference] = STATE(147), - [sym_footnote_marker_begin] = STATE(1224), - [sym__image] = STATE(147), - [sym_full_reference_image] = STATE(147), - [sym_collapsed_reference_image] = STATE(147), - [sym_inline_image] = STATE(147), - [sym_image_description] = STATE(699), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(147), - [sym_full_reference_link] = STATE(147), - [sym_collapsed_reference_link] = STATE(147), - [sym_inline_link] = STATE(147), - [sym_link_text] = STATE(698), - [sym_span] = STATE(46), - [sym__bracketed_text_begin] = STATE(1268), - [sym__comment_with_spaces] = STATE(147), - [sym_raw_inline] = STATE(147), - [sym_math] = STATE(147), - [sym_verbatim] = STATE(147), - [sym__todo_highlights] = STATE(147), - [sym_todo] = STATE(147), - [sym_note] = STATE(147), - [sym__symbol_fallback] = STATE(147), - [aux_sym__text] = STATE(132), - [aux_sym__inline_repeat1] = STATE(46), - [anon_sym_LBRACE_] = ACTIONS(189), - [anon_sym__] = ACTIONS(191), - [anon_sym_LBRACE_STAR] = ACTIONS(193), - [anon_sym_STAR] = ACTIONS(195), - [anon_sym_LBRACE_CARET] = ACTIONS(197), - [anon_sym_CARET] = ACTIONS(197), - [anon_sym_LBRACE_TILDE] = ACTIONS(199), - [anon_sym_TILDE] = ACTIONS(199), - [anon_sym_LBRACE_EQ] = ACTIONS(201), - [anon_sym_LBRACE_PLUS] = ACTIONS(203), - [anon_sym_LBRACE_DASH] = ACTIONS(205), - [anon_sym_BSLASH] = ACTIONS(207), - [sym_quotation_marks] = ACTIONS(209), - [sym_ellipsis] = ACTIONS(209), - [sym_em_dash] = ACTIONS(209), - [sym_en_dash] = ACTIONS(211), - [sym_backslash_escape] = ACTIONS(211), - [anon_sym_LT] = ACTIONS(213), - [sym_symbol] = ACTIONS(209), - [anon_sym_LBRACK_CARET] = ACTIONS(215), - [anon_sym_BANG_LBRACK] = ACTIONS(217), - [anon_sym_LBRACK] = ACTIONS(219), - [anon_sym_DOLLAR] = ACTIONS(221), - [anon_sym_TODO] = ACTIONS(223), - [anon_sym_WIP] = ACTIONS(223), - [anon_sym_NOTE] = ACTIONS(225), - [anon_sym_INFO] = ACTIONS(225), - [anon_sym_XXX] = ACTIONS(225), - [sym_fixme] = ACTIONS(209), - [sym__whitespace1] = ACTIONS(227), - [sym__newline] = ACTIONS(229), - [aux_sym__text_token1] = ACTIONS(231), - [sym__verbatim_begin] = ACTIONS(233), + [sym__inline] = STATE(961), + [sym__element] = STATE(65), + [sym_emphasis] = STATE(133), + [sym_emphasis_begin] = STATE(1142), + [sym_strong] = STATE(133), + [sym_strong_begin] = STATE(1143), + [sym_superscript] = STATE(133), + [sym_superscript_begin] = STATE(1144), + [sym_subscript] = STATE(133), + [sym_subscript_begin] = STATE(1145), + [sym_highlighted] = STATE(133), + [sym_highlighted_begin] = STATE(1146), + [sym_insert] = STATE(133), + [sym_insert_begin] = STATE(1147), + [sym_delete] = STATE(133), + [sym_delete_begin] = STATE(1148), + [sym_hard_line_break] = STATE(133), + [sym__smart_punctuation] = STATE(133), + [sym_autolink] = STATE(133), + [sym_footnote_reference] = STATE(133), + [sym_footnote_marker_begin] = STATE(1149), + [sym__image] = STATE(133), + [sym_full_reference_image] = STATE(133), + [sym_collapsed_reference_image] = STATE(133), + [sym_inline_image] = STATE(133), + [sym_image_description] = STATE(638), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(133), + [sym_full_reference_link] = STATE(133), + [sym_collapsed_reference_link] = STATE(133), + [sym_inline_link] = STATE(133), + [sym_link_text] = STATE(637), + [sym_span] = STATE(65), + [sym__bracketed_text_begin] = STATE(1188), + [sym__comment_with_spaces] = STATE(133), + [sym_raw_inline] = STATE(133), + [sym_math] = STATE(133), + [sym_verbatim] = STATE(133), + [sym__todo_highlights] = STATE(133), + [sym_todo] = STATE(133), + [sym_note] = STATE(133), + [sym__symbol_fallback] = STATE(133), + [aux_sym__text] = STATE(129), + [aux_sym__inline_repeat1] = STATE(65), + [anon_sym_LBRACE_] = ACTIONS(489), + [anon_sym__] = ACTIONS(491), + [anon_sym_LBRACE_STAR] = ACTIONS(493), + [anon_sym_STAR] = ACTIONS(495), + [anon_sym_LBRACE_CARET] = ACTIONS(497), + [anon_sym_CARET] = ACTIONS(497), + [anon_sym_LBRACE_TILDE] = ACTIONS(499), + [anon_sym_TILDE] = ACTIONS(499), + [anon_sym_LBRACE_EQ] = ACTIONS(501), + [anon_sym_LBRACE_PLUS] = ACTIONS(503), + [anon_sym_LBRACE_DASH] = ACTIONS(505), + [anon_sym_BSLASH] = ACTIONS(507), + [sym_quotation_marks] = ACTIONS(509), + [sym_ellipsis] = ACTIONS(509), + [sym_em_dash] = ACTIONS(509), + [sym_en_dash] = ACTIONS(511), + [sym_backslash_escape] = ACTIONS(511), + [anon_sym_LT] = ACTIONS(513), + [sym_symbol] = ACTIONS(509), + [anon_sym_LBRACK_CARET] = ACTIONS(515), + [anon_sym_BANG_LBRACK] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(519), + [anon_sym_LPAREN] = ACTIONS(521), + [anon_sym_DOLLAR] = ACTIONS(523), + [anon_sym_TODO] = ACTIONS(525), + [anon_sym_WIP] = ACTIONS(525), + [anon_sym_NOTE] = ACTIONS(527), + [anon_sym_INFO] = ACTIONS(527), + [anon_sym_XXX] = ACTIONS(527), + [sym_fixme] = ACTIONS(509), + [sym__whitespace1] = ACTIONS(529), + [sym__newline] = ACTIONS(531), + [aux_sym__text_token1] = ACTIONS(533), + [sym__verbatim_begin] = ACTIONS(535), }, [99] = { - [sym__inline] = STATE(998), - [sym__element] = STATE(84), - [sym_emphasis] = STATE(146), - [sym_emphasis_begin] = STATE(1226), - [sym_strong] = STATE(146), - [sym_strong_begin] = STATE(1227), - [sym_superscript] = STATE(146), - [sym_superscript_begin] = STATE(1228), - [sym_subscript] = STATE(146), - [sym_subscript_begin] = STATE(1229), - [sym_highlighted] = STATE(146), - [sym_highlighted_begin] = STATE(1230), - [sym_insert] = STATE(146), - [sym_insert_begin] = STATE(1231), - [sym_delete] = STATE(146), - [sym_delete_begin] = STATE(1232), - [sym_hard_line_break] = STATE(146), - [sym__smart_punctuation] = STATE(146), - [sym_autolink] = STATE(146), - [sym_footnote_reference] = STATE(146), - [sym_footnote_marker_begin] = STATE(1233), - [sym__image] = STATE(146), - [sym_full_reference_image] = STATE(146), - [sym_collapsed_reference_image] = STATE(146), - [sym_inline_image] = STATE(146), - [sym_image_description] = STATE(694), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(146), - [sym_full_reference_link] = STATE(146), - [sym_collapsed_reference_link] = STATE(146), - [sym_inline_link] = STATE(146), - [sym_link_text] = STATE(693), - [sym_span] = STATE(84), - [sym__bracketed_text_begin] = STATE(1269), - [sym__comment_with_spaces] = STATE(146), - [sym_raw_inline] = STATE(146), - [sym_math] = STATE(146), - [sym_verbatim] = STATE(146), - [sym__todo_highlights] = STATE(146), - [sym_todo] = STATE(146), - [sym_note] = STATE(146), - [sym__symbol_fallback] = STATE(146), - [aux_sym__text] = STATE(141), - [aux_sym__inline_repeat1] = STATE(84), - [anon_sym_LBRACE_] = ACTIONS(356), - [anon_sym__] = ACTIONS(358), - [anon_sym_LBRACE_STAR] = ACTIONS(360), - [anon_sym_STAR] = ACTIONS(362), - [anon_sym_LBRACE_CARET] = ACTIONS(364), - [anon_sym_CARET] = ACTIONS(364), - [anon_sym_LBRACE_TILDE] = ACTIONS(366), - [anon_sym_TILDE] = ACTIONS(366), - [anon_sym_LBRACE_EQ] = ACTIONS(368), - [anon_sym_LBRACE_PLUS] = ACTIONS(370), - [anon_sym_LBRACE_DASH] = ACTIONS(372), - [anon_sym_BSLASH] = ACTIONS(374), - [sym_quotation_marks] = ACTIONS(376), - [sym_ellipsis] = ACTIONS(376), - [sym_em_dash] = ACTIONS(376), - [sym_en_dash] = ACTIONS(378), - [sym_backslash_escape] = ACTIONS(378), - [anon_sym_LT] = ACTIONS(380), - [sym_symbol] = ACTIONS(376), - [anon_sym_LBRACK_CARET] = ACTIONS(382), - [anon_sym_BANG_LBRACK] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(386), - [anon_sym_DOLLAR] = ACTIONS(388), - [anon_sym_TODO] = ACTIONS(390), - [anon_sym_WIP] = ACTIONS(390), - [anon_sym_NOTE] = ACTIONS(392), - [anon_sym_INFO] = ACTIONS(392), - [anon_sym_XXX] = ACTIONS(392), - [sym_fixme] = ACTIONS(376), - [sym__whitespace1] = ACTIONS(394), - [sym__newline] = ACTIONS(396), - [aux_sym__text_token1] = ACTIONS(398), - [sym__verbatim_begin] = ACTIONS(400), + [sym__inline] = STATE(1091), + [sym__element] = STATE(37), + [sym_emphasis] = STATE(131), + [sym_emphasis_begin] = STATE(1132), + [sym_strong] = STATE(131), + [sym_strong_begin] = STATE(1133), + [sym_superscript] = STATE(131), + [sym_superscript_begin] = STATE(1134), + [sym_subscript] = STATE(131), + [sym_subscript_begin] = STATE(1135), + [sym_highlighted] = STATE(131), + [sym_highlighted_begin] = STATE(1136), + [sym_insert] = STATE(131), + [sym_insert_begin] = STATE(1137), + [sym_delete] = STATE(131), + [sym_delete_begin] = STATE(1138), + [sym_hard_line_break] = STATE(131), + [sym__smart_punctuation] = STATE(131), + [sym_autolink] = STATE(131), + [sym_footnote_reference] = STATE(131), + [sym_footnote_marker_begin] = STATE(1139), + [sym__image] = STATE(131), + [sym_full_reference_image] = STATE(131), + [sym_collapsed_reference_image] = STATE(131), + [sym_inline_image] = STATE(131), + [sym_image_description] = STATE(643), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(131), + [sym_full_reference_link] = STATE(131), + [sym_collapsed_reference_link] = STATE(131), + [sym_inline_link] = STATE(131), + [sym_link_text] = STATE(619), + [sym_span] = STATE(37), + [sym__bracketed_text_begin] = STATE(1187), + [sym__comment_with_spaces] = STATE(131), + [sym_raw_inline] = STATE(131), + [sym_math] = STATE(131), + [sym_verbatim] = STATE(131), + [sym__todo_highlights] = STATE(131), + [sym_todo] = STATE(131), + [sym_note] = STATE(131), + [sym__symbol_fallback] = STATE(131), + [aux_sym__text] = STATE(123), + [aux_sym__inline_repeat1] = STATE(37), + [anon_sym_LBRACE_] = ACTIONS(537), + [anon_sym__] = ACTIONS(539), + [anon_sym_LBRACE_STAR] = ACTIONS(541), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE_CARET] = ACTIONS(545), + [anon_sym_CARET] = ACTIONS(545), + [anon_sym_LBRACE_TILDE] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(547), + [anon_sym_LBRACE_EQ] = ACTIONS(549), + [anon_sym_LBRACE_PLUS] = ACTIONS(551), + [anon_sym_LBRACE_DASH] = ACTIONS(553), + [anon_sym_BSLASH] = ACTIONS(555), + [sym_quotation_marks] = ACTIONS(557), + [sym_ellipsis] = ACTIONS(557), + [sym_em_dash] = ACTIONS(557), + [sym_en_dash] = ACTIONS(559), + [sym_backslash_escape] = ACTIONS(559), + [anon_sym_LT] = ACTIONS(561), + [sym_symbol] = ACTIONS(557), + [anon_sym_LBRACK_CARET] = ACTIONS(563), + [anon_sym_BANG_LBRACK] = ACTIONS(565), + [anon_sym_LBRACK] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_DOLLAR] = ACTIONS(571), + [anon_sym_TODO] = ACTIONS(573), + [anon_sym_WIP] = ACTIONS(573), + [anon_sym_NOTE] = ACTIONS(575), + [anon_sym_INFO] = ACTIONS(575), + [anon_sym_XXX] = ACTIONS(575), + [sym_fixme] = ACTIONS(557), + [sym__whitespace1] = ACTIONS(577), + [sym__newline] = ACTIONS(579), + [aux_sym__text_token1] = ACTIONS(581), + [sym__verbatim_begin] = ACTIONS(583), }, [100] = { - [sym__element] = STATE(100), - [sym_emphasis] = STATE(147), - [sym_emphasis_begin] = STATE(1217), - [sym_strong] = STATE(147), - [sym_strong_begin] = STATE(1218), - [sym_superscript] = STATE(147), - [sym_superscript_begin] = STATE(1219), - [sym_subscript] = STATE(147), - [sym_subscript_begin] = STATE(1220), - [sym_highlighted] = STATE(147), - [sym_highlighted_begin] = STATE(1221), - [sym_insert] = STATE(147), - [sym_insert_begin] = STATE(1222), - [sym_delete] = STATE(147), - [sym_delete_begin] = STATE(1223), - [sym_hard_line_break] = STATE(147), - [sym__smart_punctuation] = STATE(147), - [sym_autolink] = STATE(147), - [sym_footnote_reference] = STATE(147), - [sym_footnote_marker_begin] = STATE(1224), - [sym__image] = STATE(147), - [sym_full_reference_image] = STATE(147), - [sym_collapsed_reference_image] = STATE(147), - [sym_inline_image] = STATE(147), - [sym_image_description] = STATE(699), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(147), - [sym_full_reference_link] = STATE(147), - [sym_collapsed_reference_link] = STATE(147), - [sym_inline_link] = STATE(147), - [sym_link_text] = STATE(698), - [sym_span] = STATE(100), - [sym__bracketed_text_begin] = STATE(1268), - [sym__comment_with_spaces] = STATE(147), - [sym_raw_inline] = STATE(147), - [sym_math] = STATE(147), - [sym_verbatim] = STATE(147), - [sym__todo_highlights] = STATE(147), - [sym_todo] = STATE(147), - [sym_note] = STATE(147), - [sym__symbol_fallback] = STATE(147), - [aux_sym__text] = STATE(132), - [aux_sym__inline_repeat1] = STATE(100), - [anon_sym_LBRACE_] = ACTIONS(872), - [anon_sym__] = ACTIONS(875), - [anon_sym_LBRACE_STAR] = ACTIONS(878), - [anon_sym_STAR] = ACTIONS(881), - [anon_sym_LBRACE_CARET] = ACTIONS(884), - [anon_sym_CARET] = ACTIONS(884), - [anon_sym_LBRACE_TILDE] = ACTIONS(887), - [anon_sym_TILDE] = ACTIONS(887), - [anon_sym_LBRACE_EQ] = ACTIONS(890), - [anon_sym_LBRACE_PLUS] = ACTIONS(893), - [anon_sym_LBRACE_DASH] = ACTIONS(896), - [anon_sym_BSLASH] = ACTIONS(899), - [sym_quotation_marks] = ACTIONS(902), - [sym_ellipsis] = ACTIONS(902), - [sym_em_dash] = ACTIONS(902), - [sym_en_dash] = ACTIONS(905), - [sym_backslash_escape] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(908), - [sym_symbol] = ACTIONS(902), - [anon_sym_LBRACK_CARET] = ACTIONS(911), - [anon_sym_BANG_LBRACK] = ACTIONS(914), - [anon_sym_LBRACK] = ACTIONS(917), - [anon_sym_DOLLAR] = ACTIONS(920), - [anon_sym_TODO] = ACTIONS(923), - [anon_sym_WIP] = ACTIONS(923), - [anon_sym_NOTE] = ACTIONS(926), - [anon_sym_INFO] = ACTIONS(926), - [anon_sym_XXX] = ACTIONS(926), - [sym_fixme] = ACTIONS(902), - [sym__whitespace1] = ACTIONS(929), - [sym__newline] = ACTIONS(932), - [aux_sym__text_token1] = ACTIONS(935), - [sym__verbatim_begin] = ACTIONS(938), - [sym_delete_end] = ACTIONS(354), + [sym__inline] = STATE(962), + [sym__element] = STATE(37), + [sym_emphasis] = STATE(131), + [sym_emphasis_begin] = STATE(1132), + [sym_strong] = STATE(131), + [sym_strong_begin] = STATE(1133), + [sym_superscript] = STATE(131), + [sym_superscript_begin] = STATE(1134), + [sym_subscript] = STATE(131), + [sym_subscript_begin] = STATE(1135), + [sym_highlighted] = STATE(131), + [sym_highlighted_begin] = STATE(1136), + [sym_insert] = STATE(131), + [sym_insert_begin] = STATE(1137), + [sym_delete] = STATE(131), + [sym_delete_begin] = STATE(1138), + [sym_hard_line_break] = STATE(131), + [sym__smart_punctuation] = STATE(131), + [sym_autolink] = STATE(131), + [sym_footnote_reference] = STATE(131), + [sym_footnote_marker_begin] = STATE(1139), + [sym__image] = STATE(131), + [sym_full_reference_image] = STATE(131), + [sym_collapsed_reference_image] = STATE(131), + [sym_inline_image] = STATE(131), + [sym_image_description] = STATE(643), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(131), + [sym_full_reference_link] = STATE(131), + [sym_collapsed_reference_link] = STATE(131), + [sym_inline_link] = STATE(131), + [sym_link_text] = STATE(619), + [sym_span] = STATE(37), + [sym__bracketed_text_begin] = STATE(1187), + [sym__comment_with_spaces] = STATE(131), + [sym_raw_inline] = STATE(131), + [sym_math] = STATE(131), + [sym_verbatim] = STATE(131), + [sym__todo_highlights] = STATE(131), + [sym_todo] = STATE(131), + [sym_note] = STATE(131), + [sym__symbol_fallback] = STATE(131), + [aux_sym__text] = STATE(123), + [aux_sym__inline_repeat1] = STATE(37), + [anon_sym_LBRACE_] = ACTIONS(537), + [anon_sym__] = ACTIONS(539), + [anon_sym_LBRACE_STAR] = ACTIONS(541), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE_CARET] = ACTIONS(545), + [anon_sym_CARET] = ACTIONS(545), + [anon_sym_LBRACE_TILDE] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(547), + [anon_sym_LBRACE_EQ] = ACTIONS(549), + [anon_sym_LBRACE_PLUS] = ACTIONS(551), + [anon_sym_LBRACE_DASH] = ACTIONS(553), + [anon_sym_BSLASH] = ACTIONS(555), + [sym_quotation_marks] = ACTIONS(557), + [sym_ellipsis] = ACTIONS(557), + [sym_em_dash] = ACTIONS(557), + [sym_en_dash] = ACTIONS(559), + [sym_backslash_escape] = ACTIONS(559), + [anon_sym_LT] = ACTIONS(561), + [sym_symbol] = ACTIONS(557), + [anon_sym_LBRACK_CARET] = ACTIONS(563), + [anon_sym_BANG_LBRACK] = ACTIONS(565), + [anon_sym_LBRACK] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_DOLLAR] = ACTIONS(571), + [anon_sym_TODO] = ACTIONS(573), + [anon_sym_WIP] = ACTIONS(573), + [anon_sym_NOTE] = ACTIONS(575), + [anon_sym_INFO] = ACTIONS(575), + [anon_sym_XXX] = ACTIONS(575), + [sym_fixme] = ACTIONS(557), + [sym__whitespace1] = ACTIONS(577), + [sym__newline] = ACTIONS(579), + [aux_sym__text_token1] = ACTIONS(581), + [sym__verbatim_begin] = ACTIONS(583), }, [101] = { - [sym__inline] = STATE(1008), - [sym__element] = STATE(46), - [sym_emphasis] = STATE(147), - [sym_emphasis_begin] = STATE(1217), - [sym_strong] = STATE(147), - [sym_strong_begin] = STATE(1218), - [sym_superscript] = STATE(147), - [sym_superscript_begin] = STATE(1219), - [sym_subscript] = STATE(147), - [sym_subscript_begin] = STATE(1220), - [sym_highlighted] = STATE(147), - [sym_highlighted_begin] = STATE(1221), - [sym_insert] = STATE(147), - [sym_insert_begin] = STATE(1222), - [sym_delete] = STATE(147), - [sym_delete_begin] = STATE(1223), - [sym_hard_line_break] = STATE(147), - [sym__smart_punctuation] = STATE(147), - [sym_autolink] = STATE(147), - [sym_footnote_reference] = STATE(147), - [sym_footnote_marker_begin] = STATE(1224), - [sym__image] = STATE(147), - [sym_full_reference_image] = STATE(147), - [sym_collapsed_reference_image] = STATE(147), - [sym_inline_image] = STATE(147), - [sym_image_description] = STATE(699), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(147), - [sym_full_reference_link] = STATE(147), - [sym_collapsed_reference_link] = STATE(147), - [sym_inline_link] = STATE(147), - [sym_link_text] = STATE(698), - [sym_span] = STATE(46), - [sym__bracketed_text_begin] = STATE(1268), - [sym__comment_with_spaces] = STATE(147), - [sym_raw_inline] = STATE(147), - [sym_math] = STATE(147), - [sym_verbatim] = STATE(147), - [sym__todo_highlights] = STATE(147), - [sym_todo] = STATE(147), - [sym_note] = STATE(147), - [sym__symbol_fallback] = STATE(147), - [aux_sym__text] = STATE(132), - [aux_sym__inline_repeat1] = STATE(46), - [anon_sym_LBRACE_] = ACTIONS(189), - [anon_sym__] = ACTIONS(191), - [anon_sym_LBRACE_STAR] = ACTIONS(193), - [anon_sym_STAR] = ACTIONS(195), - [anon_sym_LBRACE_CARET] = ACTIONS(197), - [anon_sym_CARET] = ACTIONS(197), - [anon_sym_LBRACE_TILDE] = ACTIONS(199), - [anon_sym_TILDE] = ACTIONS(199), - [anon_sym_LBRACE_EQ] = ACTIONS(201), - [anon_sym_LBRACE_PLUS] = ACTIONS(203), - [anon_sym_LBRACE_DASH] = ACTIONS(205), - [anon_sym_BSLASH] = ACTIONS(207), - [sym_quotation_marks] = ACTIONS(209), - [sym_ellipsis] = ACTIONS(209), - [sym_em_dash] = ACTIONS(209), - [sym_en_dash] = ACTIONS(211), - [sym_backslash_escape] = ACTIONS(211), - [anon_sym_LT] = ACTIONS(213), - [sym_symbol] = ACTIONS(209), - [anon_sym_LBRACK_CARET] = ACTIONS(215), - [anon_sym_BANG_LBRACK] = ACTIONS(217), - [anon_sym_LBRACK] = ACTIONS(219), - [anon_sym_DOLLAR] = ACTIONS(221), - [anon_sym_TODO] = ACTIONS(223), - [anon_sym_WIP] = ACTIONS(223), - [anon_sym_NOTE] = ACTIONS(225), - [anon_sym_INFO] = ACTIONS(225), - [anon_sym_XXX] = ACTIONS(225), - [sym_fixme] = ACTIONS(209), - [sym__whitespace1] = ACTIONS(227), - [sym__newline] = ACTIONS(229), - [aux_sym__text_token1] = ACTIONS(231), - [sym__verbatim_begin] = ACTIONS(233), + [sym__inline] = STATE(1078), + [sym__element] = STATE(65), + [sym_emphasis] = STATE(133), + [sym_emphasis_begin] = STATE(1142), + [sym_strong] = STATE(133), + [sym_strong_begin] = STATE(1143), + [sym_superscript] = STATE(133), + [sym_superscript_begin] = STATE(1144), + [sym_subscript] = STATE(133), + [sym_subscript_begin] = STATE(1145), + [sym_highlighted] = STATE(133), + [sym_highlighted_begin] = STATE(1146), + [sym_insert] = STATE(133), + [sym_insert_begin] = STATE(1147), + [sym_delete] = STATE(133), + [sym_delete_begin] = STATE(1148), + [sym_hard_line_break] = STATE(133), + [sym__smart_punctuation] = STATE(133), + [sym_autolink] = STATE(133), + [sym_footnote_reference] = STATE(133), + [sym_footnote_marker_begin] = STATE(1149), + [sym__image] = STATE(133), + [sym_full_reference_image] = STATE(133), + [sym_collapsed_reference_image] = STATE(133), + [sym_inline_image] = STATE(133), + [sym_image_description] = STATE(638), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(133), + [sym_full_reference_link] = STATE(133), + [sym_collapsed_reference_link] = STATE(133), + [sym_inline_link] = STATE(133), + [sym_link_text] = STATE(637), + [sym_span] = STATE(65), + [sym__bracketed_text_begin] = STATE(1188), + [sym__comment_with_spaces] = STATE(133), + [sym_raw_inline] = STATE(133), + [sym_math] = STATE(133), + [sym_verbatim] = STATE(133), + [sym__todo_highlights] = STATE(133), + [sym_todo] = STATE(133), + [sym_note] = STATE(133), + [sym__symbol_fallback] = STATE(133), + [aux_sym__text] = STATE(129), + [aux_sym__inline_repeat1] = STATE(65), + [anon_sym_LBRACE_] = ACTIONS(489), + [anon_sym__] = ACTIONS(491), + [anon_sym_LBRACE_STAR] = ACTIONS(493), + [anon_sym_STAR] = ACTIONS(495), + [anon_sym_LBRACE_CARET] = ACTIONS(497), + [anon_sym_CARET] = ACTIONS(497), + [anon_sym_LBRACE_TILDE] = ACTIONS(499), + [anon_sym_TILDE] = ACTIONS(499), + [anon_sym_LBRACE_EQ] = ACTIONS(501), + [anon_sym_LBRACE_PLUS] = ACTIONS(503), + [anon_sym_LBRACE_DASH] = ACTIONS(505), + [anon_sym_BSLASH] = ACTIONS(507), + [sym_quotation_marks] = ACTIONS(509), + [sym_ellipsis] = ACTIONS(509), + [sym_em_dash] = ACTIONS(509), + [sym_en_dash] = ACTIONS(511), + [sym_backslash_escape] = ACTIONS(511), + [anon_sym_LT] = ACTIONS(513), + [sym_symbol] = ACTIONS(509), + [anon_sym_LBRACK_CARET] = ACTIONS(515), + [anon_sym_BANG_LBRACK] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(519), + [anon_sym_LPAREN] = ACTIONS(521), + [anon_sym_DOLLAR] = ACTIONS(523), + [anon_sym_TODO] = ACTIONS(525), + [anon_sym_WIP] = ACTIONS(525), + [anon_sym_NOTE] = ACTIONS(527), + [anon_sym_INFO] = ACTIONS(527), + [anon_sym_XXX] = ACTIONS(527), + [sym_fixme] = ACTIONS(509), + [sym__whitespace1] = ACTIONS(529), + [sym__newline] = ACTIONS(531), + [aux_sym__text_token1] = ACTIONS(533), + [sym__verbatim_begin] = ACTIONS(535), }, [102] = { - [sym__inline] = STATE(1216), - [sym__element] = STATE(84), - [sym_emphasis] = STATE(146), - [sym_emphasis_begin] = STATE(1226), - [sym_strong] = STATE(146), - [sym_strong_begin] = STATE(1227), - [sym_superscript] = STATE(146), - [sym_superscript_begin] = STATE(1228), - [sym_subscript] = STATE(146), - [sym_subscript_begin] = STATE(1229), - [sym_highlighted] = STATE(146), - [sym_highlighted_begin] = STATE(1230), - [sym_insert] = STATE(146), - [sym_insert_begin] = STATE(1231), - [sym_delete] = STATE(146), - [sym_delete_begin] = STATE(1232), - [sym_hard_line_break] = STATE(146), - [sym__smart_punctuation] = STATE(146), - [sym_autolink] = STATE(146), - [sym_footnote_reference] = STATE(146), - [sym_footnote_marker_begin] = STATE(1233), - [sym__image] = STATE(146), - [sym_full_reference_image] = STATE(146), - [sym_collapsed_reference_image] = STATE(146), - [sym_inline_image] = STATE(146), - [sym_image_description] = STATE(694), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(146), - [sym_full_reference_link] = STATE(146), - [sym_collapsed_reference_link] = STATE(146), - [sym_inline_link] = STATE(146), - [sym_link_text] = STATE(693), - [sym_span] = STATE(84), - [sym__bracketed_text_begin] = STATE(1269), - [sym__comment_with_spaces] = STATE(146), - [sym_raw_inline] = STATE(146), - [sym_math] = STATE(146), - [sym_verbatim] = STATE(146), - [sym__todo_highlights] = STATE(146), - [sym_todo] = STATE(146), - [sym_note] = STATE(146), - [sym__symbol_fallback] = STATE(146), - [aux_sym__text] = STATE(141), - [aux_sym__inline_repeat1] = STATE(84), - [anon_sym_LBRACE_] = ACTIONS(356), - [anon_sym__] = ACTIONS(358), - [anon_sym_LBRACE_STAR] = ACTIONS(360), - [anon_sym_STAR] = ACTIONS(362), - [anon_sym_LBRACE_CARET] = ACTIONS(364), - [anon_sym_CARET] = ACTIONS(364), - [anon_sym_LBRACE_TILDE] = ACTIONS(366), - [anon_sym_TILDE] = ACTIONS(366), - [anon_sym_LBRACE_EQ] = ACTIONS(368), - [anon_sym_LBRACE_PLUS] = ACTIONS(370), - [anon_sym_LBRACE_DASH] = ACTIONS(372), - [anon_sym_BSLASH] = ACTIONS(374), - [sym_quotation_marks] = ACTIONS(376), - [sym_ellipsis] = ACTIONS(376), - [sym_em_dash] = ACTIONS(376), - [sym_en_dash] = ACTIONS(378), - [sym_backslash_escape] = ACTIONS(378), - [anon_sym_LT] = ACTIONS(380), - [sym_symbol] = ACTIONS(376), - [anon_sym_LBRACK_CARET] = ACTIONS(382), - [anon_sym_BANG_LBRACK] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(386), - [anon_sym_DOLLAR] = ACTIONS(388), - [anon_sym_TODO] = ACTIONS(390), - [anon_sym_WIP] = ACTIONS(390), - [anon_sym_NOTE] = ACTIONS(392), - [anon_sym_INFO] = ACTIONS(392), - [anon_sym_XXX] = ACTIONS(392), - [sym_fixme] = ACTIONS(376), - [sym__whitespace1] = ACTIONS(394), - [sym__newline] = ACTIONS(396), - [aux_sym__text_token1] = ACTIONS(398), - [sym__verbatim_begin] = ACTIONS(400), + [sym__inline] = STATE(963), + [sym__element] = STATE(14), + [sym_emphasis] = STATE(136), + [sym_emphasis_begin] = STATE(1122), + [sym_strong] = STATE(136), + [sym_strong_begin] = STATE(1123), + [sym_superscript] = STATE(136), + [sym_superscript_begin] = STATE(1124), + [sym_subscript] = STATE(136), + [sym_subscript_begin] = STATE(1125), + [sym_highlighted] = STATE(136), + [sym_highlighted_begin] = STATE(1126), + [sym_insert] = STATE(136), + [sym_insert_begin] = STATE(1127), + [sym_delete] = STATE(136), + [sym_delete_begin] = STATE(1128), + [sym_hard_line_break] = STATE(136), + [sym__smart_punctuation] = STATE(136), + [sym_autolink] = STATE(136), + [sym_footnote_reference] = STATE(136), + [sym_footnote_marker_begin] = STATE(1129), + [sym__image] = STATE(136), + [sym_full_reference_image] = STATE(136), + [sym_collapsed_reference_image] = STATE(136), + [sym_inline_image] = STATE(136), + [sym_image_description] = STATE(651), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(136), + [sym_full_reference_link] = STATE(136), + [sym_collapsed_reference_link] = STATE(136), + [sym_inline_link] = STATE(136), + [sym_link_text] = STATE(650), + [sym_span] = STATE(14), + [sym__bracketed_text_begin] = STATE(1186), + [sym__comment_with_spaces] = STATE(136), + [sym_raw_inline] = STATE(136), + [sym_math] = STATE(136), + [sym_verbatim] = STATE(136), + [sym__todo_highlights] = STATE(136), + [sym_todo] = STATE(136), + [sym_note] = STATE(136), + [sym__symbol_fallback] = STATE(136), + [aux_sym__text] = STATE(130), + [aux_sym__inline_repeat1] = STATE(14), + [anon_sym_LBRACE_] = ACTIONS(319), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_STAR] = ACTIONS(323), + [anon_sym_STAR] = ACTIONS(325), + [anon_sym_LBRACE_CARET] = ACTIONS(327), + [anon_sym_CARET] = ACTIONS(327), + [anon_sym_LBRACE_TILDE] = ACTIONS(329), + [anon_sym_TILDE] = ACTIONS(329), + [anon_sym_LBRACE_EQ] = ACTIONS(331), + [anon_sym_LBRACE_PLUS] = ACTIONS(333), + [anon_sym_LBRACE_DASH] = ACTIONS(335), + [anon_sym_BSLASH] = ACTIONS(337), + [sym_quotation_marks] = ACTIONS(339), + [sym_ellipsis] = ACTIONS(339), + [sym_em_dash] = ACTIONS(339), + [sym_en_dash] = ACTIONS(341), + [sym_backslash_escape] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [sym_symbol] = ACTIONS(339), + [anon_sym_LBRACK_CARET] = ACTIONS(345), + [anon_sym_BANG_LBRACK] = ACTIONS(347), + [anon_sym_LBRACK] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_DOLLAR] = ACTIONS(353), + [anon_sym_TODO] = ACTIONS(355), + [anon_sym_WIP] = ACTIONS(355), + [anon_sym_NOTE] = ACTIONS(357), + [anon_sym_INFO] = ACTIONS(357), + [anon_sym_XXX] = ACTIONS(357), + [sym_fixme] = ACTIONS(339), + [sym__whitespace1] = ACTIONS(359), + [sym__newline] = ACTIONS(635), + [aux_sym__text_token1] = ACTIONS(363), + [sym__verbatim_begin] = ACTIONS(365), }, [103] = { - [sym__inline_without_trailing_space] = STATE(1142), - [sym__element] = STATE(623), - [sym_emphasis] = STATE(148), - [sym_emphasis_begin] = STATE(1163), - [sym_strong] = STATE(148), - [sym_strong_begin] = STATE(1164), - [sym_superscript] = STATE(148), - [sym_superscript_begin] = STATE(1165), - [sym_subscript] = STATE(148), - [sym_subscript_begin] = STATE(1166), - [sym_highlighted] = STATE(148), - [sym_highlighted_begin] = STATE(1167), - [sym_insert] = STATE(148), - [sym_insert_begin] = STATE(1168), - [sym_delete] = STATE(148), - [sym_delete_begin] = STATE(1169), - [sym_hard_line_break] = STATE(148), - [sym__smart_punctuation] = STATE(148), - [sym_autolink] = STATE(148), - [sym_footnote_reference] = STATE(148), - [sym_footnote_marker_begin] = STATE(1170), - [sym__image] = STATE(148), - [sym_full_reference_image] = STATE(148), - [sym_collapsed_reference_image] = STATE(148), - [sym_inline_image] = STATE(148), - [sym_image_description] = STATE(712), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(148), - [sym_full_reference_link] = STATE(148), - [sym_collapsed_reference_link] = STATE(148), - [sym_inline_link] = STATE(148), - [sym_link_text] = STATE(713), - [sym_span] = STATE(623), - [sym__bracketed_text_begin] = STATE(1262), - [sym__comment_with_spaces] = STATE(148), - [sym_raw_inline] = STATE(148), - [sym_math] = STATE(148), - [sym_verbatim] = STATE(148), - [sym__todo_highlights] = STATE(148), - [sym_todo] = STATE(148), - [sym_note] = STATE(148), - [sym__symbol_fallback] = STATE(148), - [aux_sym__text] = STATE(136), - [aux_sym__inline_repeat1] = STATE(129), - [anon_sym_LBRACE_] = ACTIONS(402), - [anon_sym__] = ACTIONS(404), - [anon_sym_LBRACE_STAR] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_LBRACE_CARET] = ACTIONS(410), - [anon_sym_CARET] = ACTIONS(410), - [anon_sym_LBRACE_TILDE] = ACTIONS(412), - [anon_sym_TILDE] = ACTIONS(412), - [anon_sym_LBRACE_EQ] = ACTIONS(414), - [anon_sym_LBRACE_PLUS] = ACTIONS(416), - [anon_sym_LBRACE_DASH] = ACTIONS(418), - [anon_sym_BSLASH] = ACTIONS(420), - [sym_quotation_marks] = ACTIONS(422), - [sym_ellipsis] = ACTIONS(422), - [sym_em_dash] = ACTIONS(422), - [sym_en_dash] = ACTIONS(424), - [sym_backslash_escape] = ACTIONS(424), - [anon_sym_LT] = ACTIONS(426), - [sym_symbol] = ACTIONS(422), - [anon_sym_LBRACK_CARET] = ACTIONS(428), - [anon_sym_BANG_LBRACK] = ACTIONS(430), - [anon_sym_LBRACK] = ACTIONS(432), - [anon_sym_DOLLAR] = ACTIONS(434), - [anon_sym_TODO] = ACTIONS(436), - [anon_sym_WIP] = ACTIONS(436), - [anon_sym_NOTE] = ACTIONS(438), - [anon_sym_INFO] = ACTIONS(438), - [anon_sym_XXX] = ACTIONS(438), - [sym_fixme] = ACTIONS(422), - [sym__whitespace1] = ACTIONS(440), - [sym__newline] = ACTIONS(442), - [aux_sym__text_token1] = ACTIONS(444), - [sym__verbatim_begin] = ACTIONS(446), + [sym__inline] = STATE(1076), + [sym__element] = STATE(71), + [sym_emphasis] = STATE(132), + [sym_emphasis_begin] = STATE(1152), + [sym_strong] = STATE(132), + [sym_strong_begin] = STATE(1153), + [sym_superscript] = STATE(132), + [sym_superscript_begin] = STATE(1154), + [sym_subscript] = STATE(132), + [sym_subscript_begin] = STATE(1155), + [sym_highlighted] = STATE(132), + [sym_highlighted_begin] = STATE(1156), + [sym_insert] = STATE(132), + [sym_insert_begin] = STATE(1157), + [sym_delete] = STATE(132), + [sym_delete_begin] = STATE(1158), + [sym_hard_line_break] = STATE(132), + [sym__smart_punctuation] = STATE(132), + [sym_autolink] = STATE(132), + [sym_footnote_reference] = STATE(132), + [sym_footnote_marker_begin] = STATE(1159), + [sym__image] = STATE(132), + [sym_full_reference_image] = STATE(132), + [sym_collapsed_reference_image] = STATE(132), + [sym_inline_image] = STATE(132), + [sym_image_description] = STATE(633), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(132), + [sym_full_reference_link] = STATE(132), + [sym_collapsed_reference_link] = STATE(132), + [sym_inline_link] = STATE(132), + [sym_link_text] = STATE(631), + [sym_span] = STATE(71), + [sym__bracketed_text_begin] = STATE(1189), + [sym__comment_with_spaces] = STATE(132), + [sym_raw_inline] = STATE(132), + [sym_math] = STATE(132), + [sym_verbatim] = STATE(132), + [sym__todo_highlights] = STATE(132), + [sym_todo] = STATE(132), + [sym_note] = STATE(132), + [sym__symbol_fallback] = STATE(132), + [aux_sym__text] = STATE(128), + [aux_sym__inline_repeat1] = STATE(71), + [anon_sym_LBRACE_] = ACTIONS(441), + [anon_sym__] = ACTIONS(443), + [anon_sym_LBRACE_STAR] = ACTIONS(445), + [anon_sym_STAR] = ACTIONS(447), + [anon_sym_LBRACE_CARET] = ACTIONS(449), + [anon_sym_CARET] = ACTIONS(449), + [anon_sym_LBRACE_TILDE] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_LBRACE_EQ] = ACTIONS(453), + [anon_sym_LBRACE_PLUS] = ACTIONS(455), + [anon_sym_LBRACE_DASH] = ACTIONS(457), + [anon_sym_BSLASH] = ACTIONS(459), + [sym_quotation_marks] = ACTIONS(461), + [sym_ellipsis] = ACTIONS(461), + [sym_em_dash] = ACTIONS(461), + [sym_en_dash] = ACTIONS(463), + [sym_backslash_escape] = ACTIONS(463), + [anon_sym_LT] = ACTIONS(465), + [sym_symbol] = ACTIONS(461), + [anon_sym_LBRACK_CARET] = ACTIONS(467), + [anon_sym_BANG_LBRACK] = ACTIONS(469), + [anon_sym_LBRACK] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(473), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_TODO] = ACTIONS(477), + [anon_sym_WIP] = ACTIONS(477), + [anon_sym_NOTE] = ACTIONS(479), + [anon_sym_INFO] = ACTIONS(479), + [anon_sym_XXX] = ACTIONS(479), + [sym_fixme] = ACTIONS(461), + [sym__whitespace1] = ACTIONS(481), + [sym__newline] = ACTIONS(483), + [aux_sym__text_token1] = ACTIONS(485), + [sym__verbatim_begin] = ACTIONS(487), }, [104] = { - [sym__inline_without_trailing_space] = STATE(1137), - [sym__element] = STATE(570), - [sym_emphasis] = STATE(152), - [sym_emphasis_begin] = STATE(1172), - [sym_strong] = STATE(152), - [sym_strong_begin] = STATE(1173), - [sym_superscript] = STATE(152), - [sym_superscript_begin] = STATE(1174), - [sym_subscript] = STATE(152), - [sym_subscript_begin] = STATE(1175), - [sym_highlighted] = STATE(152), - [sym_highlighted_begin] = STATE(1176), - [sym_insert] = STATE(152), - [sym_insert_begin] = STATE(1177), - [sym_delete] = STATE(152), - [sym_delete_begin] = STATE(1178), - [sym_hard_line_break] = STATE(152), - [sym__smart_punctuation] = STATE(152), - [sym_autolink] = STATE(152), - [sym_footnote_reference] = STATE(152), - [sym_footnote_marker_begin] = STATE(1179), - [sym__image] = STATE(152), - [sym_full_reference_image] = STATE(152), - [sym_collapsed_reference_image] = STATE(152), - [sym_inline_image] = STATE(152), - [sym_image_description] = STATE(704), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(152), - [sym_full_reference_link] = STATE(152), - [sym_collapsed_reference_link] = STATE(152), - [sym_inline_link] = STATE(152), - [sym_link_text] = STATE(706), - [sym_span] = STATE(570), - [sym__bracketed_text_begin] = STATE(1263), - [sym__comment_with_spaces] = STATE(152), - [sym_raw_inline] = STATE(152), - [sym_math] = STATE(152), - [sym_verbatim] = STATE(152), - [sym__todo_highlights] = STATE(152), - [sym_todo] = STATE(152), - [sym_note] = STATE(152), - [sym__symbol_fallback] = STATE(152), - [aux_sym__text] = STATE(133), - [aux_sym__inline_repeat1] = STATE(130), - [anon_sym_LBRACE_] = ACTIONS(448), - [anon_sym__] = ACTIONS(450), - [anon_sym_LBRACE_STAR] = ACTIONS(452), - [anon_sym_STAR] = ACTIONS(454), - [anon_sym_LBRACE_CARET] = ACTIONS(456), - [anon_sym_CARET] = ACTIONS(456), - [anon_sym_LBRACE_TILDE] = ACTIONS(458), - [anon_sym_TILDE] = ACTIONS(458), - [anon_sym_LBRACE_EQ] = ACTIONS(460), - [anon_sym_LBRACE_PLUS] = ACTIONS(462), - [anon_sym_LBRACE_DASH] = ACTIONS(464), - [anon_sym_BSLASH] = ACTIONS(466), - [sym_quotation_marks] = ACTIONS(468), - [sym_ellipsis] = ACTIONS(468), - [sym_em_dash] = ACTIONS(468), - [sym_en_dash] = ACTIONS(470), - [sym_backslash_escape] = ACTIONS(470), - [anon_sym_LT] = ACTIONS(472), - [sym_symbol] = ACTIONS(468), - [anon_sym_LBRACK_CARET] = ACTIONS(474), - [anon_sym_BANG_LBRACK] = ACTIONS(476), - [anon_sym_LBRACK] = ACTIONS(478), - [anon_sym_DOLLAR] = ACTIONS(480), - [anon_sym_TODO] = ACTIONS(482), - [anon_sym_WIP] = ACTIONS(482), - [anon_sym_NOTE] = ACTIONS(484), - [anon_sym_INFO] = ACTIONS(484), - [anon_sym_XXX] = ACTIONS(484), - [sym_fixme] = ACTIONS(468), - [sym__whitespace1] = ACTIONS(486), - [sym__newline] = ACTIONS(488), - [aux_sym__text_token1] = ACTIONS(490), - [sym__verbatim_begin] = ACTIONS(492), + [sym__inline_without_trailing_space] = STATE(1037), + [sym__element] = STATE(581), + [sym_emphasis] = STATE(141), + [sym_emphasis_begin] = STATE(1082), + [sym_strong] = STATE(141), + [sym_strong_begin] = STATE(1083), + [sym_superscript] = STATE(141), + [sym_superscript_begin] = STATE(1084), + [sym_subscript] = STATE(141), + [sym_subscript_begin] = STATE(1085), + [sym_highlighted] = STATE(141), + [sym_highlighted_begin] = STATE(1086), + [sym_insert] = STATE(141), + [sym_insert_begin] = STATE(1087), + [sym_delete] = STATE(141), + [sym_delete_begin] = STATE(1088), + [sym_hard_line_break] = STATE(141), + [sym__smart_punctuation] = STATE(141), + [sym_autolink] = STATE(141), + [sym_footnote_reference] = STATE(141), + [sym_footnote_marker_begin] = STATE(1089), + [sym__image] = STATE(141), + [sym_full_reference_image] = STATE(141), + [sym_collapsed_reference_image] = STATE(141), + [sym_inline_image] = STATE(141), + [sym_image_description] = STATE(642), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(141), + [sym_full_reference_link] = STATE(141), + [sym_collapsed_reference_link] = STATE(141), + [sym_inline_link] = STATE(141), + [sym_link_text] = STATE(629), + [sym_span] = STATE(581), + [sym__bracketed_text_begin] = STATE(1182), + [sym__comment_with_spaces] = STATE(141), + [sym_raw_inline] = STATE(141), + [sym_math] = STATE(141), + [sym_verbatim] = STATE(141), + [sym__todo_highlights] = STATE(141), + [sym_todo] = STATE(141), + [sym_note] = STATE(141), + [sym__symbol_fallback] = STATE(141), + [aux_sym__text] = STATE(125), + [aux_sym__inline_repeat1] = STATE(119), + [anon_sym_LBRACE_] = ACTIONS(585), + [anon_sym__] = ACTIONS(587), + [anon_sym_LBRACE_STAR] = ACTIONS(589), + [anon_sym_STAR] = ACTIONS(591), + [anon_sym_LBRACE_CARET] = ACTIONS(593), + [anon_sym_CARET] = ACTIONS(593), + [anon_sym_LBRACE_TILDE] = ACTIONS(595), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_LBRACE_EQ] = ACTIONS(597), + [anon_sym_LBRACE_PLUS] = ACTIONS(599), + [anon_sym_LBRACE_DASH] = ACTIONS(601), + [anon_sym_BSLASH] = ACTIONS(603), + [sym_quotation_marks] = ACTIONS(605), + [sym_ellipsis] = ACTIONS(605), + [sym_em_dash] = ACTIONS(605), + [sym_en_dash] = ACTIONS(607), + [sym_backslash_escape] = ACTIONS(607), + [anon_sym_LT] = ACTIONS(609), + [sym_symbol] = ACTIONS(605), + [anon_sym_LBRACK_CARET] = ACTIONS(611), + [anon_sym_BANG_LBRACK] = ACTIONS(613), + [anon_sym_LBRACK] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [anon_sym_TODO] = ACTIONS(621), + [anon_sym_WIP] = ACTIONS(621), + [anon_sym_NOTE] = ACTIONS(623), + [anon_sym_INFO] = ACTIONS(623), + [anon_sym_XXX] = ACTIONS(623), + [sym_fixme] = ACTIONS(605), + [sym__whitespace1] = ACTIONS(625), + [sym__newline] = ACTIONS(627), + [aux_sym__text_token1] = ACTIONS(629), + [sym__verbatim_begin] = ACTIONS(631), }, [105] = { - [sym__inline] = STATE(1136), - [sym__element] = STATE(124), - [sym_emphasis] = STATE(151), - [sym_emphasis_begin] = STATE(1181), - [sym_strong] = STATE(151), - [sym_strong_begin] = STATE(1182), - [sym_superscript] = STATE(151), - [sym_superscript_begin] = STATE(1183), - [sym_subscript] = STATE(151), - [sym_subscript_begin] = STATE(1184), - [sym_highlighted] = STATE(151), - [sym_highlighted_begin] = STATE(1185), - [sym_insert] = STATE(151), - [sym_insert_begin] = STATE(1186), - [sym_delete] = STATE(151), - [sym_delete_begin] = STATE(1187), - [sym_hard_line_break] = STATE(151), - [sym__smart_punctuation] = STATE(151), - [sym_autolink] = STATE(151), - [sym_footnote_reference] = STATE(151), - [sym_footnote_marker_begin] = STATE(1188), - [sym__image] = STATE(151), - [sym_full_reference_image] = STATE(151), - [sym_collapsed_reference_image] = STATE(151), - [sym_inline_image] = STATE(151), - [sym_image_description] = STATE(700), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(151), - [sym_full_reference_link] = STATE(151), - [sym_collapsed_reference_link] = STATE(151), - [sym_inline_link] = STATE(151), - [sym_link_text] = STATE(701), - [sym_span] = STATE(124), - [sym__bracketed_text_begin] = STATE(1264), - [sym__comment_with_spaces] = STATE(151), - [sym_raw_inline] = STATE(151), - [sym_math] = STATE(151), - [sym_verbatim] = STATE(151), - [sym__todo_highlights] = STATE(151), - [sym_todo] = STATE(151), - [sym_note] = STATE(151), - [sym__symbol_fallback] = STATE(151), - [aux_sym__text] = STATE(140), - [aux_sym__inline_repeat1] = STATE(124), - [anon_sym_LBRACE_] = ACTIONS(143), - [anon_sym__] = ACTIONS(145), - [anon_sym_LBRACE_STAR] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_LBRACE_CARET] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(151), - [anon_sym_LBRACE_TILDE] = ACTIONS(153), - [anon_sym_TILDE] = ACTIONS(153), - [anon_sym_LBRACE_EQ] = ACTIONS(155), - [anon_sym_LBRACE_PLUS] = ACTIONS(157), - [anon_sym_LBRACE_DASH] = ACTIONS(159), - [anon_sym_BSLASH] = ACTIONS(161), - [sym_quotation_marks] = ACTIONS(163), - [sym_ellipsis] = ACTIONS(163), - [sym_em_dash] = ACTIONS(163), - [sym_en_dash] = ACTIONS(165), - [sym_backslash_escape] = ACTIONS(165), - [anon_sym_LT] = ACTIONS(167), - [sym_symbol] = ACTIONS(163), - [anon_sym_LBRACK_CARET] = ACTIONS(169), - [anon_sym_BANG_LBRACK] = ACTIONS(171), - [anon_sym_LBRACK] = ACTIONS(173), - [anon_sym_DOLLAR] = ACTIONS(175), - [anon_sym_TODO] = ACTIONS(177), - [anon_sym_WIP] = ACTIONS(177), - [anon_sym_NOTE] = ACTIONS(179), - [anon_sym_INFO] = ACTIONS(179), - [anon_sym_XXX] = ACTIONS(179), - [sym_fixme] = ACTIONS(163), - [sym__whitespace1] = ACTIONS(181), - [sym__newline] = ACTIONS(183), - [aux_sym__text_token1] = ACTIONS(185), - [sym__verbatim_begin] = ACTIONS(187), + [sym__inline_without_trailing_space] = STATE(1029), + [sym__element] = STATE(536), + [sym_emphasis] = STATE(138), + [sym_emphasis_begin] = STATE(1092), + [sym_strong] = STATE(138), + [sym_strong_begin] = STATE(1093), + [sym_superscript] = STATE(138), + [sym_superscript_begin] = STATE(1094), + [sym_subscript] = STATE(138), + [sym_subscript_begin] = STATE(1095), + [sym_highlighted] = STATE(138), + [sym_highlighted_begin] = STATE(1096), + [sym_insert] = STATE(138), + [sym_insert_begin] = STATE(1097), + [sym_delete] = STATE(138), + [sym_delete_begin] = STATE(1098), + [sym_hard_line_break] = STATE(138), + [sym__smart_punctuation] = STATE(138), + [sym_autolink] = STATE(138), + [sym_footnote_reference] = STATE(138), + [sym_footnote_marker_begin] = STATE(1099), + [sym__image] = STATE(138), + [sym_full_reference_image] = STATE(138), + [sym_collapsed_reference_image] = STATE(138), + [sym_inline_image] = STATE(138), + [sym_image_description] = STATE(626), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(138), + [sym_full_reference_link] = STATE(138), + [sym_collapsed_reference_link] = STATE(138), + [sym_inline_link] = STATE(138), + [sym_link_text] = STATE(627), + [sym_span] = STATE(536), + [sym__bracketed_text_begin] = STATE(1183), + [sym__comment_with_spaces] = STATE(138), + [sym_raw_inline] = STATE(138), + [sym_math] = STATE(138), + [sym_verbatim] = STATE(138), + [sym__todo_highlights] = STATE(138), + [sym_todo] = STATE(138), + [sym_note] = STATE(138), + [sym__symbol_fallback] = STATE(138), + [aux_sym__text] = STATE(127), + [aux_sym__inline_repeat1] = STATE(118), + [anon_sym_LBRACE_] = ACTIONS(149), + [anon_sym__] = ACTIONS(151), + [anon_sym_LBRACE_STAR] = ACTIONS(153), + [anon_sym_STAR] = ACTIONS(155), + [anon_sym_LBRACE_CARET] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_LBRACE_TILDE] = ACTIONS(159), + [anon_sym_TILDE] = ACTIONS(159), + [anon_sym_LBRACE_EQ] = ACTIONS(161), + [anon_sym_LBRACE_PLUS] = ACTIONS(163), + [anon_sym_LBRACE_DASH] = ACTIONS(165), + [anon_sym_BSLASH] = ACTIONS(167), + [sym_quotation_marks] = ACTIONS(169), + [sym_ellipsis] = ACTIONS(169), + [sym_em_dash] = ACTIONS(169), + [sym_en_dash] = ACTIONS(171), + [sym_backslash_escape] = ACTIONS(171), + [anon_sym_LT] = ACTIONS(173), + [sym_symbol] = ACTIONS(169), + [anon_sym_LBRACK_CARET] = ACTIONS(175), + [anon_sym_BANG_LBRACK] = ACTIONS(177), + [anon_sym_LBRACK] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(181), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_TODO] = ACTIONS(185), + [anon_sym_WIP] = ACTIONS(185), + [anon_sym_NOTE] = ACTIONS(187), + [anon_sym_INFO] = ACTIONS(187), + [anon_sym_XXX] = ACTIONS(187), + [sym_fixme] = ACTIONS(169), + [sym__whitespace1] = ACTIONS(189), + [sym__newline] = ACTIONS(191), + [aux_sym__text_token1] = ACTIONS(193), + [sym__verbatim_begin] = ACTIONS(195), }, [106] = { - [sym__inline] = STATE(1134), - [sym__element] = STATE(80), - [sym_emphasis] = STATE(145), - [sym_emphasis_begin] = STATE(1190), - [sym_strong] = STATE(145), - [sym_strong_begin] = STATE(1191), - [sym_superscript] = STATE(145), - [sym_superscript_begin] = STATE(1192), - [sym_subscript] = STATE(145), - [sym_subscript_begin] = STATE(1193), - [sym_highlighted] = STATE(145), - [sym_highlighted_begin] = STATE(1194), - [sym_insert] = STATE(145), - [sym_insert_begin] = STATE(1195), - [sym_delete] = STATE(145), - [sym_delete_begin] = STATE(1196), - [sym_hard_line_break] = STATE(145), - [sym__smart_punctuation] = STATE(145), - [sym_autolink] = STATE(145), - [sym_footnote_reference] = STATE(145), - [sym_footnote_marker_begin] = STATE(1197), - [sym__image] = STATE(145), - [sym_full_reference_image] = STATE(145), - [sym_collapsed_reference_image] = STATE(145), - [sym_inline_image] = STATE(145), - [sym_image_description] = STATE(696), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(145), - [sym_full_reference_link] = STATE(145), - [sym_collapsed_reference_link] = STATE(145), - [sym_inline_link] = STATE(145), - [sym_link_text] = STATE(691), - [sym_span] = STATE(80), - [sym__bracketed_text_begin] = STATE(1265), - [sym__comment_with_spaces] = STATE(145), - [sym_raw_inline] = STATE(145), - [sym_math] = STATE(145), - [sym_verbatim] = STATE(145), - [sym__todo_highlights] = STATE(145), - [sym_todo] = STATE(145), - [sym_note] = STATE(145), - [sym__symbol_fallback] = STATE(145), - [aux_sym__text] = STATE(138), - [aux_sym__inline_repeat1] = STATE(80), - [anon_sym_LBRACE_] = ACTIONS(542), - [anon_sym__] = ACTIONS(544), - [anon_sym_LBRACE_STAR] = ACTIONS(546), - [anon_sym_STAR] = ACTIONS(548), - [anon_sym_LBRACE_CARET] = ACTIONS(550), - [anon_sym_CARET] = ACTIONS(550), - [anon_sym_LBRACE_TILDE] = ACTIONS(552), - [anon_sym_TILDE] = ACTIONS(552), - [anon_sym_LBRACE_EQ] = ACTIONS(554), - [anon_sym_LBRACE_PLUS] = ACTIONS(556), - [anon_sym_LBRACE_DASH] = ACTIONS(558), - [anon_sym_BSLASH] = ACTIONS(560), - [sym_quotation_marks] = ACTIONS(562), - [sym_ellipsis] = ACTIONS(562), - [sym_em_dash] = ACTIONS(562), - [sym_en_dash] = ACTIONS(564), - [sym_backslash_escape] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(566), - [sym_symbol] = ACTIONS(562), - [anon_sym_LBRACK_CARET] = ACTIONS(568), - [anon_sym_BANG_LBRACK] = ACTIONS(570), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_DOLLAR] = ACTIONS(574), - [anon_sym_TODO] = ACTIONS(576), - [anon_sym_WIP] = ACTIONS(576), - [anon_sym_NOTE] = ACTIONS(578), - [anon_sym_INFO] = ACTIONS(578), - [anon_sym_XXX] = ACTIONS(578), - [sym_fixme] = ACTIONS(562), - [sym__whitespace1] = ACTIONS(580), - [sym__newline] = ACTIONS(582), - [aux_sym__text_token1] = ACTIONS(584), - [sym__verbatim_begin] = ACTIONS(586), + [sym__element] = STATE(7), + [sym_emphasis] = STATE(139), + [sym_emphasis_begin] = STATE(1102), + [sym_strong] = STATE(139), + [sym_strong_begin] = STATE(1103), + [sym_superscript] = STATE(139), + [sym_superscript_begin] = STATE(1104), + [sym_subscript] = STATE(139), + [sym_subscript_begin] = STATE(1105), + [sym_highlighted] = STATE(139), + [sym_highlighted_begin] = STATE(1106), + [sym_insert] = STATE(139), + [sym_insert_begin] = STATE(1107), + [sym_delete] = STATE(139), + [sym_delete_begin] = STATE(1108), + [sym_hard_line_break] = STATE(139), + [sym__smart_punctuation] = STATE(139), + [sym_autolink] = STATE(139), + [sym_footnote_reference] = STATE(139), + [sym_footnote_marker_begin] = STATE(1109), + [sym__image] = STATE(139), + [sym_full_reference_image] = STATE(139), + [sym_collapsed_reference_image] = STATE(139), + [sym_inline_image] = STATE(139), + [sym_image_description] = STATE(623), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(139), + [sym_full_reference_link] = STATE(139), + [sym_collapsed_reference_link] = STATE(139), + [sym_inline_link] = STATE(139), + [sym_link_text] = STATE(621), + [sym_span] = STATE(7), + [sym__bracketed_text_begin] = STATE(1184), + [sym__comment_with_spaces] = STATE(139), + [sym_raw_inline] = STATE(139), + [sym_math] = STATE(139), + [sym_verbatim] = STATE(139), + [sym__todo_highlights] = STATE(139), + [sym_todo] = STATE(139), + [sym_note] = STATE(139), + [sym__symbol_fallback] = STATE(139), + [aux_sym__text] = STATE(126), + [aux_sym__inline_repeat1] = STATE(7), + [anon_sym_LBRACE_] = ACTIONS(101), + [anon_sym__] = ACTIONS(103), + [anon_sym_LBRACE_STAR] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(107), + [anon_sym_LBRACE_CARET] = ACTIONS(109), + [anon_sym_CARET] = ACTIONS(109), + [anon_sym_LBRACE_TILDE] = ACTIONS(111), + [anon_sym_TILDE] = ACTIONS(111), + [anon_sym_LBRACE_EQ] = ACTIONS(113), + [anon_sym_LBRACE_PLUS] = ACTIONS(115), + [anon_sym_LBRACE_DASH] = ACTIONS(117), + [anon_sym_BSLASH] = ACTIONS(119), + [sym_quotation_marks] = ACTIONS(121), + [sym_ellipsis] = ACTIONS(121), + [sym_em_dash] = ACTIONS(121), + [sym_en_dash] = ACTIONS(123), + [sym_backslash_escape] = ACTIONS(123), + [anon_sym_LT] = ACTIONS(125), + [sym_symbol] = ACTIONS(121), + [anon_sym_LBRACK_CARET] = ACTIONS(127), + [anon_sym_BANG_LBRACK] = ACTIONS(129), + [anon_sym_LBRACK] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_DOLLAR] = ACTIONS(135), + [anon_sym_TODO] = ACTIONS(137), + [anon_sym_WIP] = ACTIONS(137), + [anon_sym_NOTE] = ACTIONS(139), + [anon_sym_INFO] = ACTIONS(139), + [anon_sym_XXX] = ACTIONS(139), + [sym_fixme] = ACTIONS(121), + [sym__whitespace1] = ACTIONS(141), + [sym__newline] = ACTIONS(933), + [aux_sym__text_token1] = ACTIONS(145), + [sym__verbatim_begin] = ACTIONS(147), + [sym_superscript_end] = ACTIONS(367), }, [107] = { - [sym__inline] = STATE(1126), - [sym__element] = STATE(21), - [sym_emphasis] = STATE(149), - [sym_emphasis_begin] = STATE(1199), - [sym_strong] = STATE(149), - [sym_strong_begin] = STATE(1200), - [sym_superscript] = STATE(149), - [sym_superscript_begin] = STATE(1201), - [sym_subscript] = STATE(149), - [sym_subscript_begin] = STATE(1202), - [sym_highlighted] = STATE(149), - [sym_highlighted_begin] = STATE(1203), - [sym_insert] = STATE(149), - [sym_insert_begin] = STATE(1204), - [sym_delete] = STATE(149), - [sym_delete_begin] = STATE(1205), - [sym_hard_line_break] = STATE(149), - [sym__smart_punctuation] = STATE(149), - [sym_autolink] = STATE(149), - [sym_footnote_reference] = STATE(149), - [sym_footnote_marker_begin] = STATE(1206), - [sym__image] = STATE(149), - [sym_full_reference_image] = STATE(149), - [sym_collapsed_reference_image] = STATE(149), - [sym_inline_image] = STATE(149), - [sym_image_description] = STATE(714), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(149), - [sym_full_reference_link] = STATE(149), - [sym_collapsed_reference_link] = STATE(149), - [sym_inline_link] = STATE(149), - [sym_link_text] = STATE(710), - [sym_span] = STATE(21), - [sym__bracketed_text_begin] = STATE(1266), - [sym__comment_with_spaces] = STATE(149), - [sym_raw_inline] = STATE(149), - [sym_math] = STATE(149), - [sym_verbatim] = STATE(149), - [sym__todo_highlights] = STATE(149), - [sym_todo] = STATE(149), - [sym_note] = STATE(149), - [sym__symbol_fallback] = STATE(149), - [aux_sym__text] = STATE(142), - [aux_sym__inline_repeat1] = STATE(21), - [anon_sym_LBRACE_] = ACTIONS(494), - [anon_sym__] = ACTIONS(496), - [anon_sym_LBRACE_STAR] = ACTIONS(498), - [anon_sym_STAR] = ACTIONS(500), - [anon_sym_LBRACE_CARET] = ACTIONS(502), - [anon_sym_CARET] = ACTIONS(502), - [anon_sym_LBRACE_TILDE] = ACTIONS(504), - [anon_sym_TILDE] = ACTIONS(504), - [anon_sym_LBRACE_EQ] = ACTIONS(506), - [anon_sym_LBRACE_PLUS] = ACTIONS(508), - [anon_sym_LBRACE_DASH] = ACTIONS(510), - [anon_sym_BSLASH] = ACTIONS(512), - [sym_quotation_marks] = ACTIONS(514), - [sym_ellipsis] = ACTIONS(514), - [sym_em_dash] = ACTIONS(514), - [sym_en_dash] = ACTIONS(516), - [sym_backslash_escape] = ACTIONS(516), - [anon_sym_LT] = ACTIONS(518), - [sym_symbol] = ACTIONS(514), - [anon_sym_LBRACK_CARET] = ACTIONS(520), - [anon_sym_BANG_LBRACK] = ACTIONS(522), - [anon_sym_LBRACK] = ACTIONS(524), - [anon_sym_DOLLAR] = ACTIONS(526), - [anon_sym_TODO] = ACTIONS(528), - [anon_sym_WIP] = ACTIONS(528), - [anon_sym_NOTE] = ACTIONS(530), - [anon_sym_INFO] = ACTIONS(530), - [anon_sym_XXX] = ACTIONS(530), - [sym_fixme] = ACTIONS(514), - [sym__whitespace1] = ACTIONS(532), - [sym__newline] = ACTIONS(540), - [aux_sym__text_token1] = ACTIONS(536), - [sym__verbatim_begin] = ACTIONS(538), + [sym__element] = STATE(115), + [sym_emphasis] = STATE(140), + [sym_emphasis_begin] = STATE(1162), + [sym_strong] = STATE(140), + [sym_strong_begin] = STATE(1163), + [sym_superscript] = STATE(140), + [sym_superscript_begin] = STATE(1164), + [sym_subscript] = STATE(140), + [sym_subscript_begin] = STATE(1165), + [sym_highlighted] = STATE(140), + [sym_highlighted_begin] = STATE(1166), + [sym_insert] = STATE(140), + [sym_insert_begin] = STATE(1167), + [sym_delete] = STATE(140), + [sym_delete_begin] = STATE(1168), + [sym_hard_line_break] = STATE(140), + [sym__smart_punctuation] = STATE(140), + [sym_autolink] = STATE(140), + [sym_footnote_reference] = STATE(140), + [sym_footnote_marker_begin] = STATE(1169), + [sym__image] = STATE(140), + [sym_full_reference_image] = STATE(140), + [sym_collapsed_reference_image] = STATE(140), + [sym_inline_image] = STATE(140), + [sym_image_description] = STATE(625), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(140), + [sym_full_reference_link] = STATE(140), + [sym_collapsed_reference_link] = STATE(140), + [sym_inline_link] = STATE(140), + [sym_link_text] = STATE(624), + [sym_span] = STATE(115), + [sym__bracketed_text_begin] = STATE(1190), + [sym__comment_with_spaces] = STATE(140), + [sym_raw_inline] = STATE(140), + [sym_math] = STATE(140), + [sym_verbatim] = STATE(140), + [sym__todo_highlights] = STATE(140), + [sym_todo] = STATE(140), + [sym_note] = STATE(140), + [sym__symbol_fallback] = STATE(140), + [aux_sym__text] = STATE(124), + [aux_sym__inline_repeat1] = STATE(115), + [anon_sym_LBRACE_] = ACTIONS(51), + [anon_sym__] = ACTIONS(53), + [anon_sym_LBRACE_STAR] = ACTIONS(55), + [anon_sym_STAR] = ACTIONS(57), + [anon_sym_LBRACE_CARET] = ACTIONS(59), + [anon_sym_CARET] = ACTIONS(59), + [anon_sym_LBRACE_TILDE] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(61), + [anon_sym_LBRACE_EQ] = ACTIONS(63), + [anon_sym_LBRACE_PLUS] = ACTIONS(65), + [anon_sym_LBRACE_DASH] = ACTIONS(67), + [anon_sym_BSLASH] = ACTIONS(69), + [sym_quotation_marks] = ACTIONS(71), + [sym_ellipsis] = ACTIONS(71), + [sym_em_dash] = ACTIONS(71), + [sym_en_dash] = ACTIONS(73), + [sym_backslash_escape] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(75), + [sym_symbol] = ACTIONS(71), + [anon_sym_LBRACK_CARET] = ACTIONS(77), + [anon_sym_BANG_LBRACK] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(85), + [anon_sym_TODO] = ACTIONS(87), + [anon_sym_WIP] = ACTIONS(87), + [anon_sym_NOTE] = ACTIONS(89), + [anon_sym_INFO] = ACTIONS(89), + [anon_sym_XXX] = ACTIONS(89), + [sym_fixme] = ACTIONS(71), + [sym__whitespace1] = ACTIONS(91), + [sym__newline] = ACTIONS(935), + [aux_sym__text_token1] = ACTIONS(95), + [sym__verbatim_begin] = ACTIONS(97), + [sym__square_bracket_span_end] = ACTIONS(367), }, [108] = { - [sym__inline] = STATE(1124), - [sym__element] = STATE(7), - [sym_emphasis] = STATE(153), - [sym_emphasis_begin] = STATE(1208), - [sym_strong] = STATE(153), - [sym_strong_begin] = STATE(1209), - [sym_superscript] = STATE(153), - [sym_superscript_begin] = STATE(1210), - [sym_subscript] = STATE(153), - [sym_subscript_begin] = STATE(1211), - [sym_highlighted] = STATE(153), - [sym_highlighted_begin] = STATE(1212), - [sym_insert] = STATE(153), - [sym_insert_begin] = STATE(1213), - [sym_delete] = STATE(153), - [sym_delete_begin] = STATE(1214), - [sym_hard_line_break] = STATE(153), - [sym__smart_punctuation] = STATE(153), - [sym_autolink] = STATE(153), - [sym_footnote_reference] = STATE(153), - [sym_footnote_marker_begin] = STATE(1215), - [sym__image] = STATE(153), - [sym_full_reference_image] = STATE(153), - [sym_collapsed_reference_image] = STATE(153), - [sym_inline_image] = STATE(153), - [sym_image_description] = STATE(707), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(153), - [sym_full_reference_link] = STATE(153), - [sym_collapsed_reference_link] = STATE(153), - [sym_inline_link] = STATE(153), - [sym_link_text] = STATE(705), - [sym_span] = STATE(7), - [sym__bracketed_text_begin] = STATE(1267), - [sym__comment_with_spaces] = STATE(153), - [sym_raw_inline] = STATE(153), - [sym_math] = STATE(153), - [sym_verbatim] = STATE(153), - [sym__todo_highlights] = STATE(153), - [sym_todo] = STATE(153), - [sym_note] = STATE(153), - [sym__symbol_fallback] = STATE(153), - [aux_sym__text] = STATE(134), - [aux_sym__inline_repeat1] = STATE(7), - [anon_sym_LBRACE_] = ACTIONS(97), - [anon_sym__] = ACTIONS(99), - [anon_sym_LBRACE_STAR] = ACTIONS(101), - [anon_sym_STAR] = ACTIONS(103), - [anon_sym_LBRACE_CARET] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [anon_sym_LBRACE_TILDE] = ACTIONS(107), - [anon_sym_TILDE] = ACTIONS(107), - [anon_sym_LBRACE_EQ] = ACTIONS(109), - [anon_sym_LBRACE_PLUS] = ACTIONS(111), - [anon_sym_LBRACE_DASH] = ACTIONS(113), - [anon_sym_BSLASH] = ACTIONS(115), - [sym_quotation_marks] = ACTIONS(117), - [sym_ellipsis] = ACTIONS(117), - [sym_em_dash] = ACTIONS(117), - [sym_en_dash] = ACTIONS(119), - [sym_backslash_escape] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [sym_symbol] = ACTIONS(117), - [anon_sym_LBRACK_CARET] = ACTIONS(123), - [anon_sym_BANG_LBRACK] = ACTIONS(125), - [anon_sym_LBRACK] = ACTIONS(127), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_TODO] = ACTIONS(131), - [anon_sym_WIP] = ACTIONS(131), - [anon_sym_NOTE] = ACTIONS(133), - [anon_sym_INFO] = ACTIONS(133), - [anon_sym_XXX] = ACTIONS(133), - [sym_fixme] = ACTIONS(117), - [sym__whitespace1] = ACTIONS(135), - [sym__newline] = ACTIONS(137), - [aux_sym__text_token1] = ACTIONS(139), - [sym__verbatim_begin] = ACTIONS(141), + [sym__inline] = STATE(845), + [sym__element] = STATE(37), + [sym_emphasis] = STATE(131), + [sym_emphasis_begin] = STATE(1132), + [sym_strong] = STATE(131), + [sym_strong_begin] = STATE(1133), + [sym_superscript] = STATE(131), + [sym_superscript_begin] = STATE(1134), + [sym_subscript] = STATE(131), + [sym_subscript_begin] = STATE(1135), + [sym_highlighted] = STATE(131), + [sym_highlighted_begin] = STATE(1136), + [sym_insert] = STATE(131), + [sym_insert_begin] = STATE(1137), + [sym_delete] = STATE(131), + [sym_delete_begin] = STATE(1138), + [sym_hard_line_break] = STATE(131), + [sym__smart_punctuation] = STATE(131), + [sym_autolink] = STATE(131), + [sym_footnote_reference] = STATE(131), + [sym_footnote_marker_begin] = STATE(1139), + [sym__image] = STATE(131), + [sym_full_reference_image] = STATE(131), + [sym_collapsed_reference_image] = STATE(131), + [sym_inline_image] = STATE(131), + [sym_image_description] = STATE(643), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(131), + [sym_full_reference_link] = STATE(131), + [sym_collapsed_reference_link] = STATE(131), + [sym_inline_link] = STATE(131), + [sym_link_text] = STATE(619), + [sym_span] = STATE(37), + [sym__bracketed_text_begin] = STATE(1187), + [sym__comment_with_spaces] = STATE(131), + [sym_raw_inline] = STATE(131), + [sym_math] = STATE(131), + [sym_verbatim] = STATE(131), + [sym__todo_highlights] = STATE(131), + [sym_todo] = STATE(131), + [sym_note] = STATE(131), + [sym__symbol_fallback] = STATE(131), + [aux_sym__text] = STATE(123), + [aux_sym__inline_repeat1] = STATE(37), + [anon_sym_LBRACE_] = ACTIONS(537), + [anon_sym__] = ACTIONS(539), + [anon_sym_LBRACE_STAR] = ACTIONS(541), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE_CARET] = ACTIONS(545), + [anon_sym_CARET] = ACTIONS(545), + [anon_sym_LBRACE_TILDE] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(547), + [anon_sym_LBRACE_EQ] = ACTIONS(549), + [anon_sym_LBRACE_PLUS] = ACTIONS(551), + [anon_sym_LBRACE_DASH] = ACTIONS(553), + [anon_sym_BSLASH] = ACTIONS(555), + [sym_quotation_marks] = ACTIONS(557), + [sym_ellipsis] = ACTIONS(557), + [sym_em_dash] = ACTIONS(557), + [sym_en_dash] = ACTIONS(559), + [sym_backslash_escape] = ACTIONS(559), + [anon_sym_LT] = ACTIONS(561), + [sym_symbol] = ACTIONS(557), + [anon_sym_LBRACK_CARET] = ACTIONS(563), + [anon_sym_BANG_LBRACK] = ACTIONS(565), + [anon_sym_LBRACK] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_DOLLAR] = ACTIONS(571), + [anon_sym_TODO] = ACTIONS(573), + [anon_sym_WIP] = ACTIONS(573), + [anon_sym_NOTE] = ACTIONS(575), + [anon_sym_INFO] = ACTIONS(575), + [anon_sym_XXX] = ACTIONS(575), + [sym_fixme] = ACTIONS(557), + [sym__whitespace1] = ACTIONS(577), + [sym__newline] = ACTIONS(579), + [aux_sym__text_token1] = ACTIONS(581), + [sym__verbatim_begin] = ACTIONS(583), }, [109] = { - [sym__inline] = STATE(1123), - [sym__element] = STATE(46), - [sym_emphasis] = STATE(147), - [sym_emphasis_begin] = STATE(1217), - [sym_strong] = STATE(147), - [sym_strong_begin] = STATE(1218), - [sym_superscript] = STATE(147), - [sym_superscript_begin] = STATE(1219), - [sym_subscript] = STATE(147), - [sym_subscript_begin] = STATE(1220), - [sym_highlighted] = STATE(147), - [sym_highlighted_begin] = STATE(1221), - [sym_insert] = STATE(147), - [sym_insert_begin] = STATE(1222), - [sym_delete] = STATE(147), - [sym_delete_begin] = STATE(1223), - [sym_hard_line_break] = STATE(147), - [sym__smart_punctuation] = STATE(147), - [sym_autolink] = STATE(147), - [sym_footnote_reference] = STATE(147), - [sym_footnote_marker_begin] = STATE(1224), - [sym__image] = STATE(147), - [sym_full_reference_image] = STATE(147), - [sym_collapsed_reference_image] = STATE(147), - [sym_inline_image] = STATE(147), - [sym_image_description] = STATE(699), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(147), - [sym_full_reference_link] = STATE(147), - [sym_collapsed_reference_link] = STATE(147), - [sym_inline_link] = STATE(147), - [sym_link_text] = STATE(698), - [sym_span] = STATE(46), - [sym__bracketed_text_begin] = STATE(1268), - [sym__comment_with_spaces] = STATE(147), - [sym_raw_inline] = STATE(147), - [sym_math] = STATE(147), - [sym_verbatim] = STATE(147), - [sym__todo_highlights] = STATE(147), - [sym_todo] = STATE(147), - [sym_note] = STATE(147), - [sym__symbol_fallback] = STATE(147), - [aux_sym__text] = STATE(132), - [aux_sym__inline_repeat1] = STATE(46), - [anon_sym_LBRACE_] = ACTIONS(189), - [anon_sym__] = ACTIONS(191), - [anon_sym_LBRACE_STAR] = ACTIONS(193), - [anon_sym_STAR] = ACTIONS(195), - [anon_sym_LBRACE_CARET] = ACTIONS(197), - [anon_sym_CARET] = ACTIONS(197), - [anon_sym_LBRACE_TILDE] = ACTIONS(199), - [anon_sym_TILDE] = ACTIONS(199), - [anon_sym_LBRACE_EQ] = ACTIONS(201), - [anon_sym_LBRACE_PLUS] = ACTIONS(203), - [anon_sym_LBRACE_DASH] = ACTIONS(205), - [anon_sym_BSLASH] = ACTIONS(207), - [sym_quotation_marks] = ACTIONS(209), - [sym_ellipsis] = ACTIONS(209), - [sym_em_dash] = ACTIONS(209), - [sym_en_dash] = ACTIONS(211), - [sym_backslash_escape] = ACTIONS(211), - [anon_sym_LT] = ACTIONS(213), - [sym_symbol] = ACTIONS(209), - [anon_sym_LBRACK_CARET] = ACTIONS(215), - [anon_sym_BANG_LBRACK] = ACTIONS(217), - [anon_sym_LBRACK] = ACTIONS(219), - [anon_sym_DOLLAR] = ACTIONS(221), - [anon_sym_TODO] = ACTIONS(223), - [anon_sym_WIP] = ACTIONS(223), - [anon_sym_NOTE] = ACTIONS(225), - [anon_sym_INFO] = ACTIONS(225), - [anon_sym_XXX] = ACTIONS(225), - [sym_fixme] = ACTIONS(209), - [sym__whitespace1] = ACTIONS(227), - [sym__newline] = ACTIONS(229), - [aux_sym__text_token1] = ACTIONS(231), - [sym__verbatim_begin] = ACTIONS(233), + [sym__inline] = STATE(1064), + [sym__element] = STATE(107), + [sym_emphasis] = STATE(140), + [sym_emphasis_begin] = STATE(1162), + [sym_strong] = STATE(140), + [sym_strong_begin] = STATE(1163), + [sym_superscript] = STATE(140), + [sym_superscript_begin] = STATE(1164), + [sym_subscript] = STATE(140), + [sym_subscript_begin] = STATE(1165), + [sym_highlighted] = STATE(140), + [sym_highlighted_begin] = STATE(1166), + [sym_insert] = STATE(140), + [sym_insert_begin] = STATE(1167), + [sym_delete] = STATE(140), + [sym_delete_begin] = STATE(1168), + [sym_hard_line_break] = STATE(140), + [sym__smart_punctuation] = STATE(140), + [sym_autolink] = STATE(140), + [sym_footnote_reference] = STATE(140), + [sym_footnote_marker_begin] = STATE(1169), + [sym__image] = STATE(140), + [sym_full_reference_image] = STATE(140), + [sym_collapsed_reference_image] = STATE(140), + [sym_inline_image] = STATE(140), + [sym_image_description] = STATE(625), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(140), + [sym_full_reference_link] = STATE(140), + [sym_collapsed_reference_link] = STATE(140), + [sym_inline_link] = STATE(140), + [sym_link_text] = STATE(624), + [sym_span] = STATE(107), + [sym__bracketed_text_begin] = STATE(1190), + [sym__comment_with_spaces] = STATE(140), + [sym_raw_inline] = STATE(140), + [sym_math] = STATE(140), + [sym_verbatim] = STATE(140), + [sym__todo_highlights] = STATE(140), + [sym_todo] = STATE(140), + [sym_note] = STATE(140), + [sym__symbol_fallback] = STATE(140), + [aux_sym__text] = STATE(124), + [aux_sym__inline_repeat1] = STATE(107), + [anon_sym_LBRACE_] = ACTIONS(51), + [anon_sym__] = ACTIONS(53), + [anon_sym_LBRACE_STAR] = ACTIONS(55), + [anon_sym_STAR] = ACTIONS(57), + [anon_sym_LBRACE_CARET] = ACTIONS(59), + [anon_sym_CARET] = ACTIONS(59), + [anon_sym_LBRACE_TILDE] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(61), + [anon_sym_LBRACE_EQ] = ACTIONS(63), + [anon_sym_LBRACE_PLUS] = ACTIONS(65), + [anon_sym_LBRACE_DASH] = ACTIONS(67), + [anon_sym_BSLASH] = ACTIONS(69), + [sym_quotation_marks] = ACTIONS(71), + [sym_ellipsis] = ACTIONS(71), + [sym_em_dash] = ACTIONS(71), + [sym_en_dash] = ACTIONS(73), + [sym_backslash_escape] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(75), + [sym_symbol] = ACTIONS(71), + [anon_sym_LBRACK_CARET] = ACTIONS(77), + [anon_sym_BANG_LBRACK] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(85), + [anon_sym_TODO] = ACTIONS(87), + [anon_sym_WIP] = ACTIONS(87), + [anon_sym_NOTE] = ACTIONS(89), + [anon_sym_INFO] = ACTIONS(89), + [anon_sym_XXX] = ACTIONS(89), + [sym_fixme] = ACTIONS(71), + [sym__whitespace1] = ACTIONS(91), + [sym__newline] = ACTIONS(93), + [aux_sym__text_token1] = ACTIONS(95), + [sym__verbatim_begin] = ACTIONS(97), }, [110] = { - [sym__inline] = STATE(1110), - [sym__element] = STATE(84), - [sym_emphasis] = STATE(146), - [sym_emphasis_begin] = STATE(1226), - [sym_strong] = STATE(146), - [sym_strong_begin] = STATE(1227), - [sym_superscript] = STATE(146), - [sym_superscript_begin] = STATE(1228), - [sym_subscript] = STATE(146), - [sym_subscript_begin] = STATE(1229), - [sym_highlighted] = STATE(146), - [sym_highlighted_begin] = STATE(1230), - [sym_insert] = STATE(146), - [sym_insert_begin] = STATE(1231), - [sym_delete] = STATE(146), - [sym_delete_begin] = STATE(1232), - [sym_hard_line_break] = STATE(146), - [sym__smart_punctuation] = STATE(146), - [sym_autolink] = STATE(146), - [sym_footnote_reference] = STATE(146), - [sym_footnote_marker_begin] = STATE(1233), - [sym__image] = STATE(146), - [sym_full_reference_image] = STATE(146), - [sym_collapsed_reference_image] = STATE(146), - [sym_inline_image] = STATE(146), - [sym_image_description] = STATE(694), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(146), - [sym_full_reference_link] = STATE(146), - [sym_collapsed_reference_link] = STATE(146), - [sym_inline_link] = STATE(146), - [sym_link_text] = STATE(693), - [sym_span] = STATE(84), - [sym__bracketed_text_begin] = STATE(1269), - [sym__comment_with_spaces] = STATE(146), - [sym_raw_inline] = STATE(146), - [sym_math] = STATE(146), - [sym_verbatim] = STATE(146), - [sym__todo_highlights] = STATE(146), - [sym_todo] = STATE(146), - [sym_note] = STATE(146), - [sym__symbol_fallback] = STATE(146), - [aux_sym__text] = STATE(141), - [aux_sym__inline_repeat1] = STATE(84), - [anon_sym_LBRACE_] = ACTIONS(356), - [anon_sym__] = ACTIONS(358), - [anon_sym_LBRACE_STAR] = ACTIONS(360), - [anon_sym_STAR] = ACTIONS(362), - [anon_sym_LBRACE_CARET] = ACTIONS(364), - [anon_sym_CARET] = ACTIONS(364), - [anon_sym_LBRACE_TILDE] = ACTIONS(366), - [anon_sym_TILDE] = ACTIONS(366), - [anon_sym_LBRACE_EQ] = ACTIONS(368), - [anon_sym_LBRACE_PLUS] = ACTIONS(370), - [anon_sym_LBRACE_DASH] = ACTIONS(372), - [anon_sym_BSLASH] = ACTIONS(374), - [sym_quotation_marks] = ACTIONS(376), - [sym_ellipsis] = ACTIONS(376), - [sym_em_dash] = ACTIONS(376), - [sym_en_dash] = ACTIONS(378), - [sym_backslash_escape] = ACTIONS(378), - [anon_sym_LT] = ACTIONS(380), - [sym_symbol] = ACTIONS(376), - [anon_sym_LBRACK_CARET] = ACTIONS(382), - [anon_sym_BANG_LBRACK] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(386), - [anon_sym_DOLLAR] = ACTIONS(388), - [anon_sym_TODO] = ACTIONS(390), - [anon_sym_WIP] = ACTIONS(390), - [anon_sym_NOTE] = ACTIONS(392), - [anon_sym_INFO] = ACTIONS(392), - [anon_sym_XXX] = ACTIONS(392), - [sym_fixme] = ACTIONS(376), - [sym__whitespace1] = ACTIONS(394), - [sym__newline] = ACTIONS(396), - [aux_sym__text_token1] = ACTIONS(398), - [sym__verbatim_begin] = ACTIONS(400), + [sym__element] = STATE(110), + [sym_emphasis] = STATE(132), + [sym_emphasis_begin] = STATE(1152), + [sym_strong] = STATE(132), + [sym_strong_begin] = STATE(1153), + [sym_superscript] = STATE(132), + [sym_superscript_begin] = STATE(1154), + [sym_subscript] = STATE(132), + [sym_subscript_begin] = STATE(1155), + [sym_highlighted] = STATE(132), + [sym_highlighted_begin] = STATE(1156), + [sym_insert] = STATE(132), + [sym_insert_begin] = STATE(1157), + [sym_delete] = STATE(132), + [sym_delete_begin] = STATE(1158), + [sym_hard_line_break] = STATE(132), + [sym__smart_punctuation] = STATE(132), + [sym_autolink] = STATE(132), + [sym_footnote_reference] = STATE(132), + [sym_footnote_marker_begin] = STATE(1159), + [sym__image] = STATE(132), + [sym_full_reference_image] = STATE(132), + [sym_collapsed_reference_image] = STATE(132), + [sym_inline_image] = STATE(132), + [sym_image_description] = STATE(633), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(132), + [sym_full_reference_link] = STATE(132), + [sym_collapsed_reference_link] = STATE(132), + [sym_inline_link] = STATE(132), + [sym_link_text] = STATE(631), + [sym_span] = STATE(110), + [sym__bracketed_text_begin] = STATE(1189), + [sym__comment_with_spaces] = STATE(132), + [sym_raw_inline] = STATE(132), + [sym_math] = STATE(132), + [sym_verbatim] = STATE(132), + [sym__todo_highlights] = STATE(132), + [sym_todo] = STATE(132), + [sym_note] = STATE(132), + [sym__symbol_fallback] = STATE(132), + [aux_sym__text] = STATE(128), + [aux_sym__inline_repeat1] = STATE(110), + [anon_sym_LBRACE_] = ACTIONS(937), + [anon_sym__] = ACTIONS(940), + [anon_sym_LBRACE_STAR] = ACTIONS(943), + [anon_sym_STAR] = ACTIONS(946), + [anon_sym_LBRACE_CARET] = ACTIONS(949), + [anon_sym_CARET] = ACTIONS(949), + [anon_sym_LBRACE_TILDE] = ACTIONS(952), + [anon_sym_TILDE] = ACTIONS(952), + [anon_sym_LBRACE_EQ] = ACTIONS(955), + [anon_sym_LBRACE_PLUS] = ACTIONS(958), + [anon_sym_LBRACE_DASH] = ACTIONS(961), + [anon_sym_BSLASH] = ACTIONS(964), + [sym_quotation_marks] = ACTIONS(967), + [sym_ellipsis] = ACTIONS(967), + [sym_em_dash] = ACTIONS(967), + [sym_en_dash] = ACTIONS(970), + [sym_backslash_escape] = ACTIONS(970), + [anon_sym_LT] = ACTIONS(973), + [sym_symbol] = ACTIONS(967), + [anon_sym_LBRACK_CARET] = ACTIONS(976), + [anon_sym_BANG_LBRACK] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(982), + [anon_sym_RBRACK] = ACTIONS(317), + [anon_sym_LPAREN] = ACTIONS(985), + [anon_sym_DOLLAR] = ACTIONS(988), + [anon_sym_TODO] = ACTIONS(991), + [anon_sym_WIP] = ACTIONS(991), + [anon_sym_NOTE] = ACTIONS(994), + [anon_sym_INFO] = ACTIONS(994), + [anon_sym_XXX] = ACTIONS(994), + [sym_fixme] = ACTIONS(967), + [sym__whitespace1] = ACTIONS(997), + [sym__newline] = ACTIONS(1000), + [aux_sym__text_token1] = ACTIONS(1003), + [sym__verbatim_begin] = ACTIONS(1006), }, [111] = { - [sym__inline_without_trailing_space] = STATE(1071), - [sym__element] = STATE(623), - [sym_emphasis] = STATE(148), - [sym_emphasis_begin] = STATE(1163), - [sym_strong] = STATE(148), - [sym_strong_begin] = STATE(1164), - [sym_superscript] = STATE(148), - [sym_superscript_begin] = STATE(1165), - [sym_subscript] = STATE(148), - [sym_subscript_begin] = STATE(1166), - [sym_highlighted] = STATE(148), - [sym_highlighted_begin] = STATE(1167), - [sym_insert] = STATE(148), - [sym_insert_begin] = STATE(1168), - [sym_delete] = STATE(148), - [sym_delete_begin] = STATE(1169), - [sym_hard_line_break] = STATE(148), - [sym__smart_punctuation] = STATE(148), - [sym_autolink] = STATE(148), - [sym_footnote_reference] = STATE(148), - [sym_footnote_marker_begin] = STATE(1170), - [sym__image] = STATE(148), - [sym_full_reference_image] = STATE(148), - [sym_collapsed_reference_image] = STATE(148), - [sym_inline_image] = STATE(148), - [sym_image_description] = STATE(712), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(148), - [sym_full_reference_link] = STATE(148), - [sym_collapsed_reference_link] = STATE(148), - [sym_inline_link] = STATE(148), - [sym_link_text] = STATE(713), - [sym_span] = STATE(623), - [sym__bracketed_text_begin] = STATE(1262), - [sym__comment_with_spaces] = STATE(148), - [sym_raw_inline] = STATE(148), - [sym_math] = STATE(148), - [sym_verbatim] = STATE(148), - [sym__todo_highlights] = STATE(148), - [sym_todo] = STATE(148), - [sym_note] = STATE(148), - [sym__symbol_fallback] = STATE(148), - [aux_sym__text] = STATE(136), - [aux_sym__inline_repeat1] = STATE(129), - [anon_sym_LBRACE_] = ACTIONS(402), - [anon_sym__] = ACTIONS(404), - [anon_sym_LBRACE_STAR] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_LBRACE_CARET] = ACTIONS(410), - [anon_sym_CARET] = ACTIONS(410), - [anon_sym_LBRACE_TILDE] = ACTIONS(412), - [anon_sym_TILDE] = ACTIONS(412), - [anon_sym_LBRACE_EQ] = ACTIONS(414), - [anon_sym_LBRACE_PLUS] = ACTIONS(416), - [anon_sym_LBRACE_DASH] = ACTIONS(418), - [anon_sym_BSLASH] = ACTIONS(420), - [sym_quotation_marks] = ACTIONS(422), - [sym_ellipsis] = ACTIONS(422), - [sym_em_dash] = ACTIONS(422), - [sym_en_dash] = ACTIONS(424), - [sym_backslash_escape] = ACTIONS(424), - [anon_sym_LT] = ACTIONS(426), - [sym_symbol] = ACTIONS(422), - [anon_sym_LBRACK_CARET] = ACTIONS(428), - [anon_sym_BANG_LBRACK] = ACTIONS(430), - [anon_sym_LBRACK] = ACTIONS(432), - [anon_sym_DOLLAR] = ACTIONS(434), - [anon_sym_TODO] = ACTIONS(436), - [anon_sym_WIP] = ACTIONS(436), - [anon_sym_NOTE] = ACTIONS(438), - [anon_sym_INFO] = ACTIONS(438), - [anon_sym_XXX] = ACTIONS(438), - [sym_fixme] = ACTIONS(422), - [sym__whitespace1] = ACTIONS(440), - [sym__newline] = ACTIONS(442), - [aux_sym__text_token1] = ACTIONS(444), - [sym__verbatim_begin] = ACTIONS(446), + [sym__inline] = STATE(996), + [sym__element] = STATE(65), + [sym_emphasis] = STATE(133), + [sym_emphasis_begin] = STATE(1142), + [sym_strong] = STATE(133), + [sym_strong_begin] = STATE(1143), + [sym_superscript] = STATE(133), + [sym_superscript_begin] = STATE(1144), + [sym_subscript] = STATE(133), + [sym_subscript_begin] = STATE(1145), + [sym_highlighted] = STATE(133), + [sym_highlighted_begin] = STATE(1146), + [sym_insert] = STATE(133), + [sym_insert_begin] = STATE(1147), + [sym_delete] = STATE(133), + [sym_delete_begin] = STATE(1148), + [sym_hard_line_break] = STATE(133), + [sym__smart_punctuation] = STATE(133), + [sym_autolink] = STATE(133), + [sym_footnote_reference] = STATE(133), + [sym_footnote_marker_begin] = STATE(1149), + [sym__image] = STATE(133), + [sym_full_reference_image] = STATE(133), + [sym_collapsed_reference_image] = STATE(133), + [sym_inline_image] = STATE(133), + [sym_image_description] = STATE(638), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(133), + [sym_full_reference_link] = STATE(133), + [sym_collapsed_reference_link] = STATE(133), + [sym_inline_link] = STATE(133), + [sym_link_text] = STATE(637), + [sym_span] = STATE(65), + [sym__bracketed_text_begin] = STATE(1188), + [sym__comment_with_spaces] = STATE(133), + [sym_raw_inline] = STATE(133), + [sym_math] = STATE(133), + [sym_verbatim] = STATE(133), + [sym__todo_highlights] = STATE(133), + [sym_todo] = STATE(133), + [sym_note] = STATE(133), + [sym__symbol_fallback] = STATE(133), + [aux_sym__text] = STATE(129), + [aux_sym__inline_repeat1] = STATE(65), + [anon_sym_LBRACE_] = ACTIONS(489), + [anon_sym__] = ACTIONS(491), + [anon_sym_LBRACE_STAR] = ACTIONS(493), + [anon_sym_STAR] = ACTIONS(495), + [anon_sym_LBRACE_CARET] = ACTIONS(497), + [anon_sym_CARET] = ACTIONS(497), + [anon_sym_LBRACE_TILDE] = ACTIONS(499), + [anon_sym_TILDE] = ACTIONS(499), + [anon_sym_LBRACE_EQ] = ACTIONS(501), + [anon_sym_LBRACE_PLUS] = ACTIONS(503), + [anon_sym_LBRACE_DASH] = ACTIONS(505), + [anon_sym_BSLASH] = ACTIONS(507), + [sym_quotation_marks] = ACTIONS(509), + [sym_ellipsis] = ACTIONS(509), + [sym_em_dash] = ACTIONS(509), + [sym_en_dash] = ACTIONS(511), + [sym_backslash_escape] = ACTIONS(511), + [anon_sym_LT] = ACTIONS(513), + [sym_symbol] = ACTIONS(509), + [anon_sym_LBRACK_CARET] = ACTIONS(515), + [anon_sym_BANG_LBRACK] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(519), + [anon_sym_LPAREN] = ACTIONS(521), + [anon_sym_DOLLAR] = ACTIONS(523), + [anon_sym_TODO] = ACTIONS(525), + [anon_sym_WIP] = ACTIONS(525), + [anon_sym_NOTE] = ACTIONS(527), + [anon_sym_INFO] = ACTIONS(527), + [anon_sym_XXX] = ACTIONS(527), + [sym_fixme] = ACTIONS(509), + [sym__whitespace1] = ACTIONS(529), + [sym__newline] = ACTIONS(531), + [aux_sym__text_token1] = ACTIONS(533), + [sym__verbatim_begin] = ACTIONS(535), }, [112] = { - [sym__inline_without_trailing_space] = STATE(1070), - [sym__element] = STATE(570), - [sym_emphasis] = STATE(152), - [sym_emphasis_begin] = STATE(1172), - [sym_strong] = STATE(152), - [sym_strong_begin] = STATE(1173), - [sym_superscript] = STATE(152), - [sym_superscript_begin] = STATE(1174), - [sym_subscript] = STATE(152), - [sym_subscript_begin] = STATE(1175), - [sym_highlighted] = STATE(152), - [sym_highlighted_begin] = STATE(1176), - [sym_insert] = STATE(152), - [sym_insert_begin] = STATE(1177), - [sym_delete] = STATE(152), - [sym_delete_begin] = STATE(1178), - [sym_hard_line_break] = STATE(152), - [sym__smart_punctuation] = STATE(152), - [sym_autolink] = STATE(152), - [sym_footnote_reference] = STATE(152), - [sym_footnote_marker_begin] = STATE(1179), - [sym__image] = STATE(152), - [sym_full_reference_image] = STATE(152), - [sym_collapsed_reference_image] = STATE(152), - [sym_inline_image] = STATE(152), - [sym_image_description] = STATE(704), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(152), - [sym_full_reference_link] = STATE(152), - [sym_collapsed_reference_link] = STATE(152), - [sym_inline_link] = STATE(152), - [sym_link_text] = STATE(706), - [sym_span] = STATE(570), - [sym__bracketed_text_begin] = STATE(1263), - [sym__comment_with_spaces] = STATE(152), - [sym_raw_inline] = STATE(152), - [sym_math] = STATE(152), - [sym_verbatim] = STATE(152), - [sym__todo_highlights] = STATE(152), - [sym_todo] = STATE(152), - [sym_note] = STATE(152), - [sym__symbol_fallback] = STATE(152), - [aux_sym__text] = STATE(133), - [aux_sym__inline_repeat1] = STATE(130), - [anon_sym_LBRACE_] = ACTIONS(448), - [anon_sym__] = ACTIONS(450), - [anon_sym_LBRACE_STAR] = ACTIONS(452), - [anon_sym_STAR] = ACTIONS(454), - [anon_sym_LBRACE_CARET] = ACTIONS(456), - [anon_sym_CARET] = ACTIONS(456), - [anon_sym_LBRACE_TILDE] = ACTIONS(458), - [anon_sym_TILDE] = ACTIONS(458), - [anon_sym_LBRACE_EQ] = ACTIONS(460), - [anon_sym_LBRACE_PLUS] = ACTIONS(462), - [anon_sym_LBRACE_DASH] = ACTIONS(464), - [anon_sym_BSLASH] = ACTIONS(466), - [sym_quotation_marks] = ACTIONS(468), - [sym_ellipsis] = ACTIONS(468), - [sym_em_dash] = ACTIONS(468), - [sym_en_dash] = ACTIONS(470), - [sym_backslash_escape] = ACTIONS(470), - [anon_sym_LT] = ACTIONS(472), - [sym_symbol] = ACTIONS(468), - [anon_sym_LBRACK_CARET] = ACTIONS(474), - [anon_sym_BANG_LBRACK] = ACTIONS(476), - [anon_sym_LBRACK] = ACTIONS(478), - [anon_sym_DOLLAR] = ACTIONS(480), - [anon_sym_TODO] = ACTIONS(482), - [anon_sym_WIP] = ACTIONS(482), - [anon_sym_NOTE] = ACTIONS(484), - [anon_sym_INFO] = ACTIONS(484), - [anon_sym_XXX] = ACTIONS(484), - [sym_fixme] = ACTIONS(468), - [sym__whitespace1] = ACTIONS(486), - [sym__newline] = ACTIONS(488), - [aux_sym__text_token1] = ACTIONS(490), - [sym__verbatim_begin] = ACTIONS(492), + [sym__inline] = STATE(989), + [sym__element] = STATE(71), + [sym_emphasis] = STATE(132), + [sym_emphasis_begin] = STATE(1152), + [sym_strong] = STATE(132), + [sym_strong_begin] = STATE(1153), + [sym_superscript] = STATE(132), + [sym_superscript_begin] = STATE(1154), + [sym_subscript] = STATE(132), + [sym_subscript_begin] = STATE(1155), + [sym_highlighted] = STATE(132), + [sym_highlighted_begin] = STATE(1156), + [sym_insert] = STATE(132), + [sym_insert_begin] = STATE(1157), + [sym_delete] = STATE(132), + [sym_delete_begin] = STATE(1158), + [sym_hard_line_break] = STATE(132), + [sym__smart_punctuation] = STATE(132), + [sym_autolink] = STATE(132), + [sym_footnote_reference] = STATE(132), + [sym_footnote_marker_begin] = STATE(1159), + [sym__image] = STATE(132), + [sym_full_reference_image] = STATE(132), + [sym_collapsed_reference_image] = STATE(132), + [sym_inline_image] = STATE(132), + [sym_image_description] = STATE(633), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(132), + [sym_full_reference_link] = STATE(132), + [sym_collapsed_reference_link] = STATE(132), + [sym_inline_link] = STATE(132), + [sym_link_text] = STATE(631), + [sym_span] = STATE(71), + [sym__bracketed_text_begin] = STATE(1189), + [sym__comment_with_spaces] = STATE(132), + [sym_raw_inline] = STATE(132), + [sym_math] = STATE(132), + [sym_verbatim] = STATE(132), + [sym__todo_highlights] = STATE(132), + [sym_todo] = STATE(132), + [sym_note] = STATE(132), + [sym__symbol_fallback] = STATE(132), + [aux_sym__text] = STATE(128), + [aux_sym__inline_repeat1] = STATE(71), + [anon_sym_LBRACE_] = ACTIONS(441), + [anon_sym__] = ACTIONS(443), + [anon_sym_LBRACE_STAR] = ACTIONS(445), + [anon_sym_STAR] = ACTIONS(447), + [anon_sym_LBRACE_CARET] = ACTIONS(449), + [anon_sym_CARET] = ACTIONS(449), + [anon_sym_LBRACE_TILDE] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_LBRACE_EQ] = ACTIONS(453), + [anon_sym_LBRACE_PLUS] = ACTIONS(455), + [anon_sym_LBRACE_DASH] = ACTIONS(457), + [anon_sym_BSLASH] = ACTIONS(459), + [sym_quotation_marks] = ACTIONS(461), + [sym_ellipsis] = ACTIONS(461), + [sym_em_dash] = ACTIONS(461), + [sym_en_dash] = ACTIONS(463), + [sym_backslash_escape] = ACTIONS(463), + [anon_sym_LT] = ACTIONS(465), + [sym_symbol] = ACTIONS(461), + [anon_sym_LBRACK_CARET] = ACTIONS(467), + [anon_sym_BANG_LBRACK] = ACTIONS(469), + [anon_sym_LBRACK] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(473), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_TODO] = ACTIONS(477), + [anon_sym_WIP] = ACTIONS(477), + [anon_sym_NOTE] = ACTIONS(479), + [anon_sym_INFO] = ACTIONS(479), + [anon_sym_XXX] = ACTIONS(479), + [sym_fixme] = ACTIONS(461), + [sym__whitespace1] = ACTIONS(481), + [sym__newline] = ACTIONS(483), + [aux_sym__text_token1] = ACTIONS(485), + [sym__verbatim_begin] = ACTIONS(487), }, [113] = { - [sym__inline] = STATE(1063), - [sym__element] = STATE(124), - [sym_emphasis] = STATE(151), - [sym_emphasis_begin] = STATE(1181), - [sym_strong] = STATE(151), - [sym_strong_begin] = STATE(1182), - [sym_superscript] = STATE(151), - [sym_superscript_begin] = STATE(1183), - [sym_subscript] = STATE(151), - [sym_subscript_begin] = STATE(1184), - [sym_highlighted] = STATE(151), - [sym_highlighted_begin] = STATE(1185), - [sym_insert] = STATE(151), - [sym_insert_begin] = STATE(1186), - [sym_delete] = STATE(151), - [sym_delete_begin] = STATE(1187), - [sym_hard_line_break] = STATE(151), - [sym__smart_punctuation] = STATE(151), - [sym_autolink] = STATE(151), - [sym_footnote_reference] = STATE(151), - [sym_footnote_marker_begin] = STATE(1188), - [sym__image] = STATE(151), - [sym_full_reference_image] = STATE(151), - [sym_collapsed_reference_image] = STATE(151), - [sym_inline_image] = STATE(151), - [sym_image_description] = STATE(700), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(151), - [sym_full_reference_link] = STATE(151), - [sym_collapsed_reference_link] = STATE(151), - [sym_inline_link] = STATE(151), - [sym_link_text] = STATE(701), - [sym_span] = STATE(124), - [sym__bracketed_text_begin] = STATE(1264), - [sym__comment_with_spaces] = STATE(151), - [sym_raw_inline] = STATE(151), - [sym_math] = STATE(151), - [sym_verbatim] = STATE(151), - [sym__todo_highlights] = STATE(151), - [sym_todo] = STATE(151), - [sym_note] = STATE(151), - [sym__symbol_fallback] = STATE(151), - [aux_sym__text] = STATE(140), - [aux_sym__inline_repeat1] = STATE(124), - [anon_sym_LBRACE_] = ACTIONS(143), - [anon_sym__] = ACTIONS(145), - [anon_sym_LBRACE_STAR] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_LBRACE_CARET] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(151), - [anon_sym_LBRACE_TILDE] = ACTIONS(153), - [anon_sym_TILDE] = ACTIONS(153), - [anon_sym_LBRACE_EQ] = ACTIONS(155), - [anon_sym_LBRACE_PLUS] = ACTIONS(157), - [anon_sym_LBRACE_DASH] = ACTIONS(159), - [anon_sym_BSLASH] = ACTIONS(161), - [sym_quotation_marks] = ACTIONS(163), - [sym_ellipsis] = ACTIONS(163), - [sym_em_dash] = ACTIONS(163), - [sym_en_dash] = ACTIONS(165), - [sym_backslash_escape] = ACTIONS(165), - [anon_sym_LT] = ACTIONS(167), - [sym_symbol] = ACTIONS(163), - [anon_sym_LBRACK_CARET] = ACTIONS(169), - [anon_sym_BANG_LBRACK] = ACTIONS(171), - [anon_sym_LBRACK] = ACTIONS(173), - [anon_sym_DOLLAR] = ACTIONS(175), - [anon_sym_TODO] = ACTIONS(177), - [anon_sym_WIP] = ACTIONS(177), - [anon_sym_NOTE] = ACTIONS(179), - [anon_sym_INFO] = ACTIONS(179), - [anon_sym_XXX] = ACTIONS(179), - [sym_fixme] = ACTIONS(163), - [sym__whitespace1] = ACTIONS(181), - [sym__newline] = ACTIONS(183), - [aux_sym__text_token1] = ACTIONS(185), - [sym__verbatim_begin] = ACTIONS(187), + [sym__inline_without_trailing_space] = STATE(974), + [sym__element] = STATE(581), + [sym_emphasis] = STATE(141), + [sym_emphasis_begin] = STATE(1082), + [sym_strong] = STATE(141), + [sym_strong_begin] = STATE(1083), + [sym_superscript] = STATE(141), + [sym_superscript_begin] = STATE(1084), + [sym_subscript] = STATE(141), + [sym_subscript_begin] = STATE(1085), + [sym_highlighted] = STATE(141), + [sym_highlighted_begin] = STATE(1086), + [sym_insert] = STATE(141), + [sym_insert_begin] = STATE(1087), + [sym_delete] = STATE(141), + [sym_delete_begin] = STATE(1088), + [sym_hard_line_break] = STATE(141), + [sym__smart_punctuation] = STATE(141), + [sym_autolink] = STATE(141), + [sym_footnote_reference] = STATE(141), + [sym_footnote_marker_begin] = STATE(1089), + [sym__image] = STATE(141), + [sym_full_reference_image] = STATE(141), + [sym_collapsed_reference_image] = STATE(141), + [sym_inline_image] = STATE(141), + [sym_image_description] = STATE(642), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(141), + [sym_full_reference_link] = STATE(141), + [sym_collapsed_reference_link] = STATE(141), + [sym_inline_link] = STATE(141), + [sym_link_text] = STATE(629), + [sym_span] = STATE(581), + [sym__bracketed_text_begin] = STATE(1182), + [sym__comment_with_spaces] = STATE(141), + [sym_raw_inline] = STATE(141), + [sym_math] = STATE(141), + [sym_verbatim] = STATE(141), + [sym__todo_highlights] = STATE(141), + [sym_todo] = STATE(141), + [sym_note] = STATE(141), + [sym__symbol_fallback] = STATE(141), + [aux_sym__text] = STATE(125), + [aux_sym__inline_repeat1] = STATE(119), + [anon_sym_LBRACE_] = ACTIONS(585), + [anon_sym__] = ACTIONS(587), + [anon_sym_LBRACE_STAR] = ACTIONS(589), + [anon_sym_STAR] = ACTIONS(591), + [anon_sym_LBRACE_CARET] = ACTIONS(593), + [anon_sym_CARET] = ACTIONS(593), + [anon_sym_LBRACE_TILDE] = ACTIONS(595), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_LBRACE_EQ] = ACTIONS(597), + [anon_sym_LBRACE_PLUS] = ACTIONS(599), + [anon_sym_LBRACE_DASH] = ACTIONS(601), + [anon_sym_BSLASH] = ACTIONS(603), + [sym_quotation_marks] = ACTIONS(605), + [sym_ellipsis] = ACTIONS(605), + [sym_em_dash] = ACTIONS(605), + [sym_en_dash] = ACTIONS(607), + [sym_backslash_escape] = ACTIONS(607), + [anon_sym_LT] = ACTIONS(609), + [sym_symbol] = ACTIONS(605), + [anon_sym_LBRACK_CARET] = ACTIONS(611), + [anon_sym_BANG_LBRACK] = ACTIONS(613), + [anon_sym_LBRACK] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [anon_sym_TODO] = ACTIONS(621), + [anon_sym_WIP] = ACTIONS(621), + [anon_sym_NOTE] = ACTIONS(623), + [anon_sym_INFO] = ACTIONS(623), + [anon_sym_XXX] = ACTIONS(623), + [sym_fixme] = ACTIONS(605), + [sym__whitespace1] = ACTIONS(625), + [sym__newline] = ACTIONS(627), + [aux_sym__text_token1] = ACTIONS(629), + [sym__verbatim_begin] = ACTIONS(631), }, [114] = { - [sym__inline] = STATE(1062), - [sym__element] = STATE(80), - [sym_emphasis] = STATE(145), - [sym_emphasis_begin] = STATE(1190), - [sym_strong] = STATE(145), - [sym_strong_begin] = STATE(1191), - [sym_superscript] = STATE(145), - [sym_superscript_begin] = STATE(1192), - [sym_subscript] = STATE(145), - [sym_subscript_begin] = STATE(1193), - [sym_highlighted] = STATE(145), - [sym_highlighted_begin] = STATE(1194), - [sym_insert] = STATE(145), - [sym_insert_begin] = STATE(1195), - [sym_delete] = STATE(145), - [sym_delete_begin] = STATE(1196), - [sym_hard_line_break] = STATE(145), - [sym__smart_punctuation] = STATE(145), - [sym_autolink] = STATE(145), - [sym_footnote_reference] = STATE(145), - [sym_footnote_marker_begin] = STATE(1197), - [sym__image] = STATE(145), - [sym_full_reference_image] = STATE(145), - [sym_collapsed_reference_image] = STATE(145), - [sym_inline_image] = STATE(145), - [sym_image_description] = STATE(696), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(145), - [sym_full_reference_link] = STATE(145), - [sym_collapsed_reference_link] = STATE(145), - [sym_inline_link] = STATE(145), - [sym_link_text] = STATE(691), - [sym_span] = STATE(80), - [sym__bracketed_text_begin] = STATE(1265), - [sym__comment_with_spaces] = STATE(145), - [sym_raw_inline] = STATE(145), - [sym_math] = STATE(145), - [sym_verbatim] = STATE(145), - [sym__todo_highlights] = STATE(145), - [sym_todo] = STATE(145), - [sym_note] = STATE(145), - [sym__symbol_fallback] = STATE(145), - [aux_sym__text] = STATE(138), - [aux_sym__inline_repeat1] = STATE(80), - [anon_sym_LBRACE_] = ACTIONS(542), - [anon_sym__] = ACTIONS(544), - [anon_sym_LBRACE_STAR] = ACTIONS(546), - [anon_sym_STAR] = ACTIONS(548), - [anon_sym_LBRACE_CARET] = ACTIONS(550), - [anon_sym_CARET] = ACTIONS(550), - [anon_sym_LBRACE_TILDE] = ACTIONS(552), - [anon_sym_TILDE] = ACTIONS(552), - [anon_sym_LBRACE_EQ] = ACTIONS(554), - [anon_sym_LBRACE_PLUS] = ACTIONS(556), - [anon_sym_LBRACE_DASH] = ACTIONS(558), - [anon_sym_BSLASH] = ACTIONS(560), - [sym_quotation_marks] = ACTIONS(562), - [sym_ellipsis] = ACTIONS(562), - [sym_em_dash] = ACTIONS(562), - [sym_en_dash] = ACTIONS(564), - [sym_backslash_escape] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(566), - [sym_symbol] = ACTIONS(562), - [anon_sym_LBRACK_CARET] = ACTIONS(568), - [anon_sym_BANG_LBRACK] = ACTIONS(570), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_DOLLAR] = ACTIONS(574), - [anon_sym_TODO] = ACTIONS(576), - [anon_sym_WIP] = ACTIONS(576), - [anon_sym_NOTE] = ACTIONS(578), - [anon_sym_INFO] = ACTIONS(578), - [anon_sym_XXX] = ACTIONS(578), - [sym_fixme] = ACTIONS(562), - [sym__whitespace1] = ACTIONS(580), - [sym__newline] = ACTIONS(582), - [aux_sym__text_token1] = ACTIONS(584), - [sym__verbatim_begin] = ACTIONS(586), + [sym__inline_without_trailing_space] = STATE(973), + [sym__element] = STATE(536), + [sym_emphasis] = STATE(138), + [sym_emphasis_begin] = STATE(1092), + [sym_strong] = STATE(138), + [sym_strong_begin] = STATE(1093), + [sym_superscript] = STATE(138), + [sym_superscript_begin] = STATE(1094), + [sym_subscript] = STATE(138), + [sym_subscript_begin] = STATE(1095), + [sym_highlighted] = STATE(138), + [sym_highlighted_begin] = STATE(1096), + [sym_insert] = STATE(138), + [sym_insert_begin] = STATE(1097), + [sym_delete] = STATE(138), + [sym_delete_begin] = STATE(1098), + [sym_hard_line_break] = STATE(138), + [sym__smart_punctuation] = STATE(138), + [sym_autolink] = STATE(138), + [sym_footnote_reference] = STATE(138), + [sym_footnote_marker_begin] = STATE(1099), + [sym__image] = STATE(138), + [sym_full_reference_image] = STATE(138), + [sym_collapsed_reference_image] = STATE(138), + [sym_inline_image] = STATE(138), + [sym_image_description] = STATE(626), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(138), + [sym_full_reference_link] = STATE(138), + [sym_collapsed_reference_link] = STATE(138), + [sym_inline_link] = STATE(138), + [sym_link_text] = STATE(627), + [sym_span] = STATE(536), + [sym__bracketed_text_begin] = STATE(1183), + [sym__comment_with_spaces] = STATE(138), + [sym_raw_inline] = STATE(138), + [sym_math] = STATE(138), + [sym_verbatim] = STATE(138), + [sym__todo_highlights] = STATE(138), + [sym_todo] = STATE(138), + [sym_note] = STATE(138), + [sym__symbol_fallback] = STATE(138), + [aux_sym__text] = STATE(127), + [aux_sym__inline_repeat1] = STATE(118), + [anon_sym_LBRACE_] = ACTIONS(149), + [anon_sym__] = ACTIONS(151), + [anon_sym_LBRACE_STAR] = ACTIONS(153), + [anon_sym_STAR] = ACTIONS(155), + [anon_sym_LBRACE_CARET] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_LBRACE_TILDE] = ACTIONS(159), + [anon_sym_TILDE] = ACTIONS(159), + [anon_sym_LBRACE_EQ] = ACTIONS(161), + [anon_sym_LBRACE_PLUS] = ACTIONS(163), + [anon_sym_LBRACE_DASH] = ACTIONS(165), + [anon_sym_BSLASH] = ACTIONS(167), + [sym_quotation_marks] = ACTIONS(169), + [sym_ellipsis] = ACTIONS(169), + [sym_em_dash] = ACTIONS(169), + [sym_en_dash] = ACTIONS(171), + [sym_backslash_escape] = ACTIONS(171), + [anon_sym_LT] = ACTIONS(173), + [sym_symbol] = ACTIONS(169), + [anon_sym_LBRACK_CARET] = ACTIONS(175), + [anon_sym_BANG_LBRACK] = ACTIONS(177), + [anon_sym_LBRACK] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(181), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_TODO] = ACTIONS(185), + [anon_sym_WIP] = ACTIONS(185), + [anon_sym_NOTE] = ACTIONS(187), + [anon_sym_INFO] = ACTIONS(187), + [anon_sym_XXX] = ACTIONS(187), + [sym_fixme] = ACTIONS(169), + [sym__whitespace1] = ACTIONS(189), + [sym__newline] = ACTIONS(191), + [aux_sym__text_token1] = ACTIONS(193), + [sym__verbatim_begin] = ACTIONS(195), }, [115] = { - [sym__inline] = STATE(1061), - [sym__element] = STATE(21), - [sym_emphasis] = STATE(149), - [sym_emphasis_begin] = STATE(1199), - [sym_strong] = STATE(149), - [sym_strong_begin] = STATE(1200), - [sym_superscript] = STATE(149), - [sym_superscript_begin] = STATE(1201), - [sym_subscript] = STATE(149), - [sym_subscript_begin] = STATE(1202), - [sym_highlighted] = STATE(149), - [sym_highlighted_begin] = STATE(1203), - [sym_insert] = STATE(149), - [sym_insert_begin] = STATE(1204), - [sym_delete] = STATE(149), - [sym_delete_begin] = STATE(1205), - [sym_hard_line_break] = STATE(149), - [sym__smart_punctuation] = STATE(149), - [sym_autolink] = STATE(149), - [sym_footnote_reference] = STATE(149), - [sym_footnote_marker_begin] = STATE(1206), - [sym__image] = STATE(149), - [sym_full_reference_image] = STATE(149), - [sym_collapsed_reference_image] = STATE(149), - [sym_inline_image] = STATE(149), - [sym_image_description] = STATE(714), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(149), - [sym_full_reference_link] = STATE(149), - [sym_collapsed_reference_link] = STATE(149), - [sym_inline_link] = STATE(149), - [sym_link_text] = STATE(710), - [sym_span] = STATE(21), - [sym__bracketed_text_begin] = STATE(1266), - [sym__comment_with_spaces] = STATE(149), - [sym_raw_inline] = STATE(149), - [sym_math] = STATE(149), - [sym_verbatim] = STATE(149), - [sym__todo_highlights] = STATE(149), - [sym_todo] = STATE(149), - [sym_note] = STATE(149), - [sym__symbol_fallback] = STATE(149), - [aux_sym__text] = STATE(142), - [aux_sym__inline_repeat1] = STATE(21), - [anon_sym_LBRACE_] = ACTIONS(494), - [anon_sym__] = ACTIONS(496), - [anon_sym_LBRACE_STAR] = ACTIONS(498), - [anon_sym_STAR] = ACTIONS(500), - [anon_sym_LBRACE_CARET] = ACTIONS(502), - [anon_sym_CARET] = ACTIONS(502), - [anon_sym_LBRACE_TILDE] = ACTIONS(504), - [anon_sym_TILDE] = ACTIONS(504), - [anon_sym_LBRACE_EQ] = ACTIONS(506), - [anon_sym_LBRACE_PLUS] = ACTIONS(508), - [anon_sym_LBRACE_DASH] = ACTIONS(510), - [anon_sym_BSLASH] = ACTIONS(512), - [sym_quotation_marks] = ACTIONS(514), - [sym_ellipsis] = ACTIONS(514), - [sym_em_dash] = ACTIONS(514), - [sym_en_dash] = ACTIONS(516), - [sym_backslash_escape] = ACTIONS(516), - [anon_sym_LT] = ACTIONS(518), - [sym_symbol] = ACTIONS(514), - [anon_sym_LBRACK_CARET] = ACTIONS(520), - [anon_sym_BANG_LBRACK] = ACTIONS(522), - [anon_sym_LBRACK] = ACTIONS(524), - [anon_sym_DOLLAR] = ACTIONS(526), - [anon_sym_TODO] = ACTIONS(528), - [anon_sym_WIP] = ACTIONS(528), - [anon_sym_NOTE] = ACTIONS(530), - [anon_sym_INFO] = ACTIONS(530), - [anon_sym_XXX] = ACTIONS(530), - [sym_fixme] = ACTIONS(514), - [sym__whitespace1] = ACTIONS(532), - [sym__newline] = ACTIONS(540), - [aux_sym__text_token1] = ACTIONS(536), - [sym__verbatim_begin] = ACTIONS(538), + [sym__element] = STATE(115), + [sym_emphasis] = STATE(140), + [sym_emphasis_begin] = STATE(1162), + [sym_strong] = STATE(140), + [sym_strong_begin] = STATE(1163), + [sym_superscript] = STATE(140), + [sym_superscript_begin] = STATE(1164), + [sym_subscript] = STATE(140), + [sym_subscript_begin] = STATE(1165), + [sym_highlighted] = STATE(140), + [sym_highlighted_begin] = STATE(1166), + [sym_insert] = STATE(140), + [sym_insert_begin] = STATE(1167), + [sym_delete] = STATE(140), + [sym_delete_begin] = STATE(1168), + [sym_hard_line_break] = STATE(140), + [sym__smart_punctuation] = STATE(140), + [sym_autolink] = STATE(140), + [sym_footnote_reference] = STATE(140), + [sym_footnote_marker_begin] = STATE(1169), + [sym__image] = STATE(140), + [sym_full_reference_image] = STATE(140), + [sym_collapsed_reference_image] = STATE(140), + [sym_inline_image] = STATE(140), + [sym_image_description] = STATE(625), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(140), + [sym_full_reference_link] = STATE(140), + [sym_collapsed_reference_link] = STATE(140), + [sym_inline_link] = STATE(140), + [sym_link_text] = STATE(624), + [sym_span] = STATE(115), + [sym__bracketed_text_begin] = STATE(1190), + [sym__comment_with_spaces] = STATE(140), + [sym_raw_inline] = STATE(140), + [sym_math] = STATE(140), + [sym_verbatim] = STATE(140), + [sym__todo_highlights] = STATE(140), + [sym_todo] = STATE(140), + [sym_note] = STATE(140), + [sym__symbol_fallback] = STATE(140), + [aux_sym__text] = STATE(124), + [aux_sym__inline_repeat1] = STATE(115), + [anon_sym_LBRACE_] = ACTIONS(1009), + [anon_sym__] = ACTIONS(1012), + [anon_sym_LBRACE_STAR] = ACTIONS(1015), + [anon_sym_STAR] = ACTIONS(1018), + [anon_sym_LBRACE_CARET] = ACTIONS(1021), + [anon_sym_CARET] = ACTIONS(1021), + [anon_sym_LBRACE_TILDE] = ACTIONS(1024), + [anon_sym_TILDE] = ACTIONS(1024), + [anon_sym_LBRACE_EQ] = ACTIONS(1027), + [anon_sym_LBRACE_PLUS] = ACTIONS(1030), + [anon_sym_LBRACE_DASH] = ACTIONS(1033), + [anon_sym_BSLASH] = ACTIONS(1036), + [sym_quotation_marks] = ACTIONS(1039), + [sym_ellipsis] = ACTIONS(1039), + [sym_em_dash] = ACTIONS(1039), + [sym_en_dash] = ACTIONS(1042), + [sym_backslash_escape] = ACTIONS(1042), + [anon_sym_LT] = ACTIONS(1045), + [sym_symbol] = ACTIONS(1039), + [anon_sym_LBRACK_CARET] = ACTIONS(1048), + [anon_sym_BANG_LBRACK] = ACTIONS(1051), + [anon_sym_LBRACK] = ACTIONS(1054), + [anon_sym_LPAREN] = ACTIONS(1057), + [anon_sym_DOLLAR] = ACTIONS(1060), + [anon_sym_TODO] = ACTIONS(1063), + [anon_sym_WIP] = ACTIONS(1063), + [anon_sym_NOTE] = ACTIONS(1066), + [anon_sym_INFO] = ACTIONS(1066), + [anon_sym_XXX] = ACTIONS(1066), + [sym_fixme] = ACTIONS(1039), + [sym__whitespace1] = ACTIONS(1069), + [sym__newline] = ACTIONS(1072), + [aux_sym__text_token1] = ACTIONS(1075), + [sym__verbatim_begin] = ACTIONS(1078), + [sym__square_bracket_span_end] = ACTIONS(317), }, [116] = { - [sym__element] = STATE(122), - [sym_emphasis] = STATE(143), - [sym_emphasis_begin] = STATE(1235), - [sym_strong] = STATE(143), - [sym_strong_begin] = STATE(1236), - [sym_superscript] = STATE(143), - [sym_superscript_begin] = STATE(1237), - [sym_subscript] = STATE(143), - [sym_subscript_begin] = STATE(1238), - [sym_highlighted] = STATE(143), - [sym_highlighted_begin] = STATE(1239), - [sym_insert] = STATE(143), - [sym_insert_begin] = STATE(1240), - [sym_delete] = STATE(143), - [sym_delete_begin] = STATE(1241), - [sym_hard_line_break] = STATE(143), - [sym__smart_punctuation] = STATE(143), - [sym_autolink] = STATE(143), - [sym_footnote_reference] = STATE(143), - [sym_footnote_marker_begin] = STATE(1242), - [sym__image] = STATE(143), - [sym_full_reference_image] = STATE(143), - [sym_collapsed_reference_image] = STATE(143), - [sym_inline_image] = STATE(143), - [sym_image_description] = STATE(689), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(143), - [sym_full_reference_link] = STATE(143), - [sym_collapsed_reference_link] = STATE(143), - [sym_inline_link] = STATE(143), - [sym_link_text] = STATE(702), - [sym_span] = STATE(122), - [sym__bracketed_text_begin] = STATE(1270), - [sym__comment_with_spaces] = STATE(143), - [sym_raw_inline] = STATE(143), - [sym_math] = STATE(143), - [sym_verbatim] = STATE(143), - [sym__todo_highlights] = STATE(143), - [sym_todo] = STATE(143), - [sym_note] = STATE(143), - [sym__symbol_fallback] = STATE(143), - [aux_sym__text] = STATE(135), - [aux_sym__inline_repeat1] = STATE(122), - [anon_sym_LBRACE_] = ACTIONS(49), - [anon_sym__] = ACTIONS(51), - [anon_sym_LBRACE_STAR] = ACTIONS(53), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_LBRACE_CARET] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(57), - [anon_sym_LBRACE_TILDE] = ACTIONS(59), - [anon_sym_TILDE] = ACTIONS(59), - [anon_sym_LBRACE_EQ] = ACTIONS(61), - [anon_sym_LBRACE_PLUS] = ACTIONS(63), - [anon_sym_LBRACE_DASH] = ACTIONS(65), - [anon_sym_BSLASH] = ACTIONS(67), - [sym_quotation_marks] = ACTIONS(69), - [sym_ellipsis] = ACTIONS(69), - [sym_em_dash] = ACTIONS(69), - [sym_en_dash] = ACTIONS(71), - [sym_backslash_escape] = ACTIONS(71), - [anon_sym_LT] = ACTIONS(73), - [sym_symbol] = ACTIONS(69), - [anon_sym_LBRACK_CARET] = ACTIONS(75), - [anon_sym_BANG_LBRACK] = ACTIONS(77), - [anon_sym_LBRACK] = ACTIONS(79), - [anon_sym_DOLLAR] = ACTIONS(81), - [anon_sym_TODO] = ACTIONS(83), - [anon_sym_WIP] = ACTIONS(83), - [anon_sym_NOTE] = ACTIONS(85), - [anon_sym_INFO] = ACTIONS(85), - [anon_sym_XXX] = ACTIONS(85), - [sym_fixme] = ACTIONS(69), - [sym__whitespace1] = ACTIONS(87), - [sym__newline] = ACTIONS(941), - [aux_sym__text_token1] = ACTIONS(91), - [sym__verbatim_begin] = ACTIONS(93), - [sym__image_description_end] = ACTIONS(283), + [sym__inline] = STATE(965), + [sym__element] = STATE(106), + [sym_emphasis] = STATE(139), + [sym_emphasis_begin] = STATE(1102), + [sym_strong] = STATE(139), + [sym_strong_begin] = STATE(1103), + [sym_superscript] = STATE(139), + [sym_superscript_begin] = STATE(1104), + [sym_subscript] = STATE(139), + [sym_subscript_begin] = STATE(1105), + [sym_highlighted] = STATE(139), + [sym_highlighted_begin] = STATE(1106), + [sym_insert] = STATE(139), + [sym_insert_begin] = STATE(1107), + [sym_delete] = STATE(139), + [sym_delete_begin] = STATE(1108), + [sym_hard_line_break] = STATE(139), + [sym__smart_punctuation] = STATE(139), + [sym_autolink] = STATE(139), + [sym_footnote_reference] = STATE(139), + [sym_footnote_marker_begin] = STATE(1109), + [sym__image] = STATE(139), + [sym_full_reference_image] = STATE(139), + [sym_collapsed_reference_image] = STATE(139), + [sym_inline_image] = STATE(139), + [sym_image_description] = STATE(623), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(139), + [sym_full_reference_link] = STATE(139), + [sym_collapsed_reference_link] = STATE(139), + [sym_inline_link] = STATE(139), + [sym_link_text] = STATE(621), + [sym_span] = STATE(106), + [sym__bracketed_text_begin] = STATE(1184), + [sym__comment_with_spaces] = STATE(139), + [sym_raw_inline] = STATE(139), + [sym_math] = STATE(139), + [sym_verbatim] = STATE(139), + [sym__todo_highlights] = STATE(139), + [sym_todo] = STATE(139), + [sym_note] = STATE(139), + [sym__symbol_fallback] = STATE(139), + [aux_sym__text] = STATE(126), + [aux_sym__inline_repeat1] = STATE(106), + [anon_sym_LBRACE_] = ACTIONS(101), + [anon_sym__] = ACTIONS(103), + [anon_sym_LBRACE_STAR] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(107), + [anon_sym_LBRACE_CARET] = ACTIONS(109), + [anon_sym_CARET] = ACTIONS(109), + [anon_sym_LBRACE_TILDE] = ACTIONS(111), + [anon_sym_TILDE] = ACTIONS(111), + [anon_sym_LBRACE_EQ] = ACTIONS(113), + [anon_sym_LBRACE_PLUS] = ACTIONS(115), + [anon_sym_LBRACE_DASH] = ACTIONS(117), + [anon_sym_BSLASH] = ACTIONS(119), + [sym_quotation_marks] = ACTIONS(121), + [sym_ellipsis] = ACTIONS(121), + [sym_em_dash] = ACTIONS(121), + [sym_en_dash] = ACTIONS(123), + [sym_backslash_escape] = ACTIONS(123), + [anon_sym_LT] = ACTIONS(125), + [sym_symbol] = ACTIONS(121), + [anon_sym_LBRACK_CARET] = ACTIONS(127), + [anon_sym_BANG_LBRACK] = ACTIONS(129), + [anon_sym_LBRACK] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_DOLLAR] = ACTIONS(135), + [anon_sym_TODO] = ACTIONS(137), + [anon_sym_WIP] = ACTIONS(137), + [anon_sym_NOTE] = ACTIONS(139), + [anon_sym_INFO] = ACTIONS(139), + [anon_sym_XXX] = ACTIONS(139), + [sym_fixme] = ACTIONS(121), + [sym__whitespace1] = ACTIONS(141), + [sym__newline] = ACTIONS(143), + [aux_sym__text_token1] = ACTIONS(145), + [sym__verbatim_begin] = ACTIONS(147), }, [117] = { - [sym__inline] = STATE(1056), - [sym__element] = STATE(84), - [sym_emphasis] = STATE(146), - [sym_emphasis_begin] = STATE(1226), - [sym_strong] = STATE(146), - [sym_strong_begin] = STATE(1227), - [sym_superscript] = STATE(146), - [sym_superscript_begin] = STATE(1228), - [sym_subscript] = STATE(146), - [sym_subscript_begin] = STATE(1229), - [sym_highlighted] = STATE(146), - [sym_highlighted_begin] = STATE(1230), - [sym_insert] = STATE(146), - [sym_insert_begin] = STATE(1231), - [sym_delete] = STATE(146), - [sym_delete_begin] = STATE(1232), - [sym_hard_line_break] = STATE(146), - [sym__smart_punctuation] = STATE(146), - [sym_autolink] = STATE(146), - [sym_footnote_reference] = STATE(146), - [sym_footnote_marker_begin] = STATE(1233), - [sym__image] = STATE(146), - [sym_full_reference_image] = STATE(146), - [sym_collapsed_reference_image] = STATE(146), - [sym_inline_image] = STATE(146), - [sym_image_description] = STATE(694), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(146), - [sym_full_reference_link] = STATE(146), - [sym_collapsed_reference_link] = STATE(146), - [sym_inline_link] = STATE(146), - [sym_link_text] = STATE(693), - [sym_span] = STATE(84), - [sym__bracketed_text_begin] = STATE(1269), - [sym__comment_with_spaces] = STATE(146), - [sym_raw_inline] = STATE(146), - [sym_math] = STATE(146), - [sym_verbatim] = STATE(146), - [sym__todo_highlights] = STATE(146), - [sym_todo] = STATE(146), - [sym_note] = STATE(146), - [sym__symbol_fallback] = STATE(146), - [aux_sym__text] = STATE(141), - [aux_sym__inline_repeat1] = STATE(84), - [anon_sym_LBRACE_] = ACTIONS(356), - [anon_sym__] = ACTIONS(358), - [anon_sym_LBRACE_STAR] = ACTIONS(360), - [anon_sym_STAR] = ACTIONS(362), - [anon_sym_LBRACE_CARET] = ACTIONS(364), - [anon_sym_CARET] = ACTIONS(364), - [anon_sym_LBRACE_TILDE] = ACTIONS(366), - [anon_sym_TILDE] = ACTIONS(366), - [anon_sym_LBRACE_EQ] = ACTIONS(368), - [anon_sym_LBRACE_PLUS] = ACTIONS(370), - [anon_sym_LBRACE_DASH] = ACTIONS(372), - [anon_sym_BSLASH] = ACTIONS(374), - [sym_quotation_marks] = ACTIONS(376), - [sym_ellipsis] = ACTIONS(376), - [sym_em_dash] = ACTIONS(376), - [sym_en_dash] = ACTIONS(378), - [sym_backslash_escape] = ACTIONS(378), - [anon_sym_LT] = ACTIONS(380), - [sym_symbol] = ACTIONS(376), - [anon_sym_LBRACK_CARET] = ACTIONS(382), - [anon_sym_BANG_LBRACK] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(386), - [anon_sym_DOLLAR] = ACTIONS(388), - [anon_sym_TODO] = ACTIONS(390), - [anon_sym_WIP] = ACTIONS(390), - [anon_sym_NOTE] = ACTIONS(392), - [anon_sym_INFO] = ACTIONS(392), - [anon_sym_XXX] = ACTIONS(392), - [sym_fixme] = ACTIONS(376), - [sym__whitespace1] = ACTIONS(394), - [sym__newline] = ACTIONS(396), - [aux_sym__text_token1] = ACTIONS(398), - [sym__verbatim_begin] = ACTIONS(400), + [sym__inline] = STATE(964), + [sym__element] = STATE(22), + [sym_emphasis] = STATE(137), + [sym_emphasis_begin] = STATE(1112), + [sym_strong] = STATE(137), + [sym_strong_begin] = STATE(1113), + [sym_superscript] = STATE(137), + [sym_superscript_begin] = STATE(1114), + [sym_subscript] = STATE(137), + [sym_subscript_begin] = STATE(1115), + [sym_highlighted] = STATE(137), + [sym_highlighted_begin] = STATE(1116), + [sym_insert] = STATE(137), + [sym_insert_begin] = STATE(1117), + [sym_delete] = STATE(137), + [sym_delete_begin] = STATE(1118), + [sym_hard_line_break] = STATE(137), + [sym__smart_punctuation] = STATE(137), + [sym_autolink] = STATE(137), + [sym_footnote_reference] = STATE(137), + [sym_footnote_marker_begin] = STATE(1119), + [sym__image] = STATE(137), + [sym_full_reference_image] = STATE(137), + [sym_collapsed_reference_image] = STATE(137), + [sym_inline_image] = STATE(137), + [sym_image_description] = STATE(636), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(137), + [sym_full_reference_link] = STATE(137), + [sym_collapsed_reference_link] = STATE(137), + [sym_inline_link] = STATE(137), + [sym_link_text] = STATE(647), + [sym_span] = STATE(22), + [sym__bracketed_text_begin] = STATE(1185), + [sym__comment_with_spaces] = STATE(137), + [sym_raw_inline] = STATE(137), + [sym_math] = STATE(137), + [sym_verbatim] = STATE(137), + [sym__todo_highlights] = STATE(137), + [sym_todo] = STATE(137), + [sym_note] = STATE(137), + [sym__symbol_fallback] = STATE(137), + [aux_sym__text] = STATE(122), + [aux_sym__inline_repeat1] = STATE(22), + [anon_sym_LBRACE_] = ACTIONS(197), + [anon_sym__] = ACTIONS(199), + [anon_sym_LBRACE_STAR] = ACTIONS(201), + [anon_sym_STAR] = ACTIONS(203), + [anon_sym_LBRACE_CARET] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(205), + [anon_sym_LBRACE_TILDE] = ACTIONS(207), + [anon_sym_TILDE] = ACTIONS(207), + [anon_sym_LBRACE_EQ] = ACTIONS(209), + [anon_sym_LBRACE_PLUS] = ACTIONS(211), + [anon_sym_LBRACE_DASH] = ACTIONS(213), + [anon_sym_BSLASH] = ACTIONS(215), + [sym_quotation_marks] = ACTIONS(217), + [sym_ellipsis] = ACTIONS(217), + [sym_em_dash] = ACTIONS(217), + [sym_en_dash] = ACTIONS(219), + [sym_backslash_escape] = ACTIONS(219), + [anon_sym_LT] = ACTIONS(221), + [sym_symbol] = ACTIONS(217), + [anon_sym_LBRACK_CARET] = ACTIONS(223), + [anon_sym_BANG_LBRACK] = ACTIONS(225), + [anon_sym_LBRACK] = ACTIONS(227), + [anon_sym_LPAREN] = ACTIONS(229), + [anon_sym_DOLLAR] = ACTIONS(231), + [anon_sym_TODO] = ACTIONS(233), + [anon_sym_WIP] = ACTIONS(233), + [anon_sym_NOTE] = ACTIONS(235), + [anon_sym_INFO] = ACTIONS(235), + [anon_sym_XXX] = ACTIONS(235), + [sym_fixme] = ACTIONS(217), + [sym__whitespace1] = ACTIONS(237), + [sym__newline] = ACTIONS(239), + [aux_sym__text_token1] = ACTIONS(241), + [sym__verbatim_begin] = ACTIONS(243), }, [118] = { - [sym__inline] = STATE(1145), - [sym__element] = STATE(121), - [sym_emphasis] = STATE(154), - [sym_emphasis_begin] = STATE(1244), - [sym_strong] = STATE(154), - [sym_strong_begin] = STATE(1245), - [sym_superscript] = STATE(154), - [sym_superscript_begin] = STATE(1246), - [sym_subscript] = STATE(154), - [sym_subscript_begin] = STATE(1247), - [sym_highlighted] = STATE(154), - [sym_highlighted_begin] = STATE(1248), - [sym_insert] = STATE(154), - [sym_insert_begin] = STATE(1249), - [sym_delete] = STATE(154), - [sym_delete_begin] = STATE(1250), - [sym_hard_line_break] = STATE(154), - [sym__smart_punctuation] = STATE(154), - [sym_autolink] = STATE(154), - [sym_footnote_reference] = STATE(154), - [sym_footnote_marker_begin] = STATE(1251), - [sym__image] = STATE(154), - [sym_full_reference_image] = STATE(154), - [sym_collapsed_reference_image] = STATE(154), - [sym_inline_image] = STATE(154), - [sym_image_description] = STATE(686), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(154), - [sym_full_reference_link] = STATE(154), - [sym_collapsed_reference_link] = STATE(154), - [sym_inline_link] = STATE(154), - [sym_link_text] = STATE(687), - [sym_span] = STATE(121), - [sym__bracketed_text_begin] = STATE(1271), - [sym__comment_with_spaces] = STATE(154), - [sym_raw_inline] = STATE(154), - [sym_math] = STATE(154), - [sym_verbatim] = STATE(154), - [sym__todo_highlights] = STATE(154), - [sym_todo] = STATE(154), - [sym_note] = STATE(154), - [sym__symbol_fallback] = STATE(154), - [aux_sym__text] = STATE(137), - [aux_sym__inline_repeat1] = STATE(121), - [anon_sym_LBRACE_] = ACTIONS(235), - [anon_sym__] = ACTIONS(237), - [anon_sym_LBRACE_STAR] = ACTIONS(239), - [anon_sym_STAR] = ACTIONS(241), - [anon_sym_LBRACE_CARET] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(243), - [anon_sym_LBRACE_TILDE] = ACTIONS(245), - [anon_sym_TILDE] = ACTIONS(245), - [anon_sym_LBRACE_EQ] = ACTIONS(247), - [anon_sym_LBRACE_PLUS] = ACTIONS(249), - [anon_sym_LBRACE_DASH] = ACTIONS(251), - [anon_sym_BSLASH] = ACTIONS(253), - [sym_quotation_marks] = ACTIONS(255), - [sym_ellipsis] = ACTIONS(255), - [sym_em_dash] = ACTIONS(255), - [sym_en_dash] = ACTIONS(257), - [sym_backslash_escape] = ACTIONS(257), - [anon_sym_LT] = ACTIONS(259), - [sym_symbol] = ACTIONS(255), - [anon_sym_LBRACK_CARET] = ACTIONS(261), - [anon_sym_BANG_LBRACK] = ACTIONS(263), - [anon_sym_LBRACK] = ACTIONS(265), - [anon_sym_DOLLAR] = ACTIONS(267), - [anon_sym_TODO] = ACTIONS(269), - [anon_sym_WIP] = ACTIONS(269), - [anon_sym_NOTE] = ACTIONS(271), - [anon_sym_INFO] = ACTIONS(271), - [anon_sym_XXX] = ACTIONS(271), - [sym_fixme] = ACTIONS(255), - [sym__whitespace1] = ACTIONS(273), - [sym__newline] = ACTIONS(275), - [aux_sym__text_token1] = ACTIONS(277), - [sym__verbatim_begin] = ACTIONS(279), + [sym__element] = STATE(555), + [sym_emphasis] = STATE(138), + [sym_emphasis_begin] = STATE(1092), + [sym_strong] = STATE(138), + [sym_strong_begin] = STATE(1093), + [sym_superscript] = STATE(138), + [sym_superscript_begin] = STATE(1094), + [sym_subscript] = STATE(138), + [sym_subscript_begin] = STATE(1095), + [sym_highlighted] = STATE(138), + [sym_highlighted_begin] = STATE(1096), + [sym_insert] = STATE(138), + [sym_insert_begin] = STATE(1097), + [sym_delete] = STATE(138), + [sym_delete_begin] = STATE(1098), + [sym_hard_line_break] = STATE(138), + [sym__smart_punctuation] = STATE(138), + [sym_autolink] = STATE(138), + [sym_footnote_reference] = STATE(138), + [sym_footnote_marker_begin] = STATE(1099), + [sym__image] = STATE(138), + [sym_full_reference_image] = STATE(138), + [sym_collapsed_reference_image] = STATE(138), + [sym_inline_image] = STATE(138), + [sym_image_description] = STATE(626), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(138), + [sym_full_reference_link] = STATE(138), + [sym_collapsed_reference_link] = STATE(138), + [sym_inline_link] = STATE(138), + [sym_link_text] = STATE(627), + [sym_span] = STATE(555), + [sym__bracketed_text_begin] = STATE(1183), + [sym__comment_with_spaces] = STATE(138), + [sym_raw_inline] = STATE(138), + [sym_math] = STATE(138), + [sym_verbatim] = STATE(138), + [sym__todo_highlights] = STATE(138), + [sym_todo] = STATE(138), + [sym_note] = STATE(138), + [sym__symbol_fallback] = STATE(138), + [aux_sym__text] = STATE(127), + [aux_sym__inline_repeat1] = STATE(120), + [anon_sym_LBRACE_] = ACTIONS(149), + [anon_sym__] = ACTIONS(151), + [anon_sym_LBRACE_STAR] = ACTIONS(153), + [anon_sym_STAR] = ACTIONS(155), + [anon_sym_LBRACE_CARET] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_LBRACE_TILDE] = ACTIONS(159), + [anon_sym_TILDE] = ACTIONS(159), + [anon_sym_LBRACE_EQ] = ACTIONS(161), + [anon_sym_LBRACE_PLUS] = ACTIONS(163), + [anon_sym_LBRACE_DASH] = ACTIONS(165), + [anon_sym_BSLASH] = ACTIONS(167), + [sym_quotation_marks] = ACTIONS(169), + [sym_ellipsis] = ACTIONS(169), + [sym_em_dash] = ACTIONS(169), + [sym_en_dash] = ACTIONS(171), + [sym_backslash_escape] = ACTIONS(171), + [anon_sym_LT] = ACTIONS(173), + [sym_symbol] = ACTIONS(169), + [anon_sym_LBRACK_CARET] = ACTIONS(175), + [anon_sym_BANG_LBRACK] = ACTIONS(177), + [anon_sym_LBRACK] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(181), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_TODO] = ACTIONS(185), + [anon_sym_WIP] = ACTIONS(185), + [anon_sym_NOTE] = ACTIONS(187), + [anon_sym_INFO] = ACTIONS(187), + [anon_sym_XXX] = ACTIONS(187), + [sym_fixme] = ACTIONS(169), + [sym__whitespace1] = ACTIONS(189), + [sym__newline] = ACTIONS(1081), + [aux_sym__text_token1] = ACTIONS(193), + [sym__verbatim_begin] = ACTIONS(195), }, [119] = { - [sym__inline_without_trailing_space] = STATE(1022), - [sym__element] = STATE(623), - [sym_emphasis] = STATE(148), - [sym_emphasis_begin] = STATE(1163), - [sym_strong] = STATE(148), - [sym_strong_begin] = STATE(1164), - [sym_superscript] = STATE(148), - [sym_superscript_begin] = STATE(1165), - [sym_subscript] = STATE(148), - [sym_subscript_begin] = STATE(1166), - [sym_highlighted] = STATE(148), - [sym_highlighted_begin] = STATE(1167), - [sym_insert] = STATE(148), - [sym_insert_begin] = STATE(1168), - [sym_delete] = STATE(148), - [sym_delete_begin] = STATE(1169), - [sym_hard_line_break] = STATE(148), - [sym__smart_punctuation] = STATE(148), - [sym_autolink] = STATE(148), - [sym_footnote_reference] = STATE(148), - [sym_footnote_marker_begin] = STATE(1170), - [sym__image] = STATE(148), - [sym_full_reference_image] = STATE(148), - [sym_collapsed_reference_image] = STATE(148), - [sym_inline_image] = STATE(148), - [sym_image_description] = STATE(712), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(148), - [sym_full_reference_link] = STATE(148), - [sym_collapsed_reference_link] = STATE(148), - [sym_inline_link] = STATE(148), - [sym_link_text] = STATE(713), - [sym_span] = STATE(623), - [sym__bracketed_text_begin] = STATE(1262), - [sym__comment_with_spaces] = STATE(148), - [sym_raw_inline] = STATE(148), - [sym_math] = STATE(148), - [sym_verbatim] = STATE(148), - [sym__todo_highlights] = STATE(148), - [sym_todo] = STATE(148), - [sym_note] = STATE(148), - [sym__symbol_fallback] = STATE(148), - [aux_sym__text] = STATE(136), - [aux_sym__inline_repeat1] = STATE(129), - [anon_sym_LBRACE_] = ACTIONS(402), - [anon_sym__] = ACTIONS(404), - [anon_sym_LBRACE_STAR] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_LBRACE_CARET] = ACTIONS(410), - [anon_sym_CARET] = ACTIONS(410), - [anon_sym_LBRACE_TILDE] = ACTIONS(412), - [anon_sym_TILDE] = ACTIONS(412), - [anon_sym_LBRACE_EQ] = ACTIONS(414), - [anon_sym_LBRACE_PLUS] = ACTIONS(416), - [anon_sym_LBRACE_DASH] = ACTIONS(418), - [anon_sym_BSLASH] = ACTIONS(420), - [sym_quotation_marks] = ACTIONS(422), - [sym_ellipsis] = ACTIONS(422), - [sym_em_dash] = ACTIONS(422), - [sym_en_dash] = ACTIONS(424), - [sym_backslash_escape] = ACTIONS(424), - [anon_sym_LT] = ACTIONS(426), - [sym_symbol] = ACTIONS(422), - [anon_sym_LBRACK_CARET] = ACTIONS(428), - [anon_sym_BANG_LBRACK] = ACTIONS(430), - [anon_sym_LBRACK] = ACTIONS(432), - [anon_sym_DOLLAR] = ACTIONS(434), - [anon_sym_TODO] = ACTIONS(436), - [anon_sym_WIP] = ACTIONS(436), - [anon_sym_NOTE] = ACTIONS(438), - [anon_sym_INFO] = ACTIONS(438), - [anon_sym_XXX] = ACTIONS(438), - [sym_fixme] = ACTIONS(422), - [sym__whitespace1] = ACTIONS(440), - [sym__newline] = ACTIONS(442), - [aux_sym__text_token1] = ACTIONS(444), - [sym__verbatim_begin] = ACTIONS(446), + [sym__element] = STATE(577), + [sym_emphasis] = STATE(141), + [sym_emphasis_begin] = STATE(1082), + [sym_strong] = STATE(141), + [sym_strong_begin] = STATE(1083), + [sym_superscript] = STATE(141), + [sym_superscript_begin] = STATE(1084), + [sym_subscript] = STATE(141), + [sym_subscript_begin] = STATE(1085), + [sym_highlighted] = STATE(141), + [sym_highlighted_begin] = STATE(1086), + [sym_insert] = STATE(141), + [sym_insert_begin] = STATE(1087), + [sym_delete] = STATE(141), + [sym_delete_begin] = STATE(1088), + [sym_hard_line_break] = STATE(141), + [sym__smart_punctuation] = STATE(141), + [sym_autolink] = STATE(141), + [sym_footnote_reference] = STATE(141), + [sym_footnote_marker_begin] = STATE(1089), + [sym__image] = STATE(141), + [sym_full_reference_image] = STATE(141), + [sym_collapsed_reference_image] = STATE(141), + [sym_inline_image] = STATE(141), + [sym_image_description] = STATE(642), + [sym__image_description_begin] = STATE(1057), + [sym__link] = STATE(141), + [sym_full_reference_link] = STATE(141), + [sym_collapsed_reference_link] = STATE(141), + [sym_inline_link] = STATE(141), + [sym_link_text] = STATE(629), + [sym_span] = STATE(577), + [sym__bracketed_text_begin] = STATE(1182), + [sym__comment_with_spaces] = STATE(141), + [sym_raw_inline] = STATE(141), + [sym_math] = STATE(141), + [sym_verbatim] = STATE(141), + [sym__todo_highlights] = STATE(141), + [sym_todo] = STATE(141), + [sym_note] = STATE(141), + [sym__symbol_fallback] = STATE(141), + [aux_sym__text] = STATE(125), + [aux_sym__inline_repeat1] = STATE(120), + [anon_sym_LBRACE_] = ACTIONS(585), + [anon_sym__] = ACTIONS(587), + [anon_sym_LBRACE_STAR] = ACTIONS(589), + [anon_sym_STAR] = ACTIONS(591), + [anon_sym_LBRACE_CARET] = ACTIONS(593), + [anon_sym_CARET] = ACTIONS(593), + [anon_sym_LBRACE_TILDE] = ACTIONS(595), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_LBRACE_EQ] = ACTIONS(597), + [anon_sym_LBRACE_PLUS] = ACTIONS(599), + [anon_sym_LBRACE_DASH] = ACTIONS(601), + [anon_sym_BSLASH] = ACTIONS(603), + [sym_quotation_marks] = ACTIONS(605), + [sym_ellipsis] = ACTIONS(605), + [sym_em_dash] = ACTIONS(605), + [sym_en_dash] = ACTIONS(607), + [sym_backslash_escape] = ACTIONS(607), + [anon_sym_LT] = ACTIONS(609), + [sym_symbol] = ACTIONS(605), + [anon_sym_LBRACK_CARET] = ACTIONS(611), + [anon_sym_BANG_LBRACK] = ACTIONS(613), + [anon_sym_LBRACK] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [anon_sym_TODO] = ACTIONS(621), + [anon_sym_WIP] = ACTIONS(621), + [anon_sym_NOTE] = ACTIONS(623), + [anon_sym_INFO] = ACTIONS(623), + [anon_sym_XXX] = ACTIONS(623), + [sym_fixme] = ACTIONS(605), + [sym__whitespace1] = ACTIONS(625), + [sym__newline] = ACTIONS(1081), + [aux_sym__text_token1] = ACTIONS(629), + [sym__verbatim_begin] = ACTIONS(631), }, [120] = { [sym__element] = STATE(120), - [sym_emphasis] = STATE(146), - [sym_emphasis_begin] = STATE(1226), - [sym_strong] = STATE(146), - [sym_strong_begin] = STATE(1227), - [sym_superscript] = STATE(146), - [sym_superscript_begin] = STATE(1228), - [sym_subscript] = STATE(146), - [sym_subscript_begin] = STATE(1229), - [sym_highlighted] = STATE(146), - [sym_highlighted_begin] = STATE(1230), - [sym_insert] = STATE(146), - [sym_insert_begin] = STATE(1231), - [sym_delete] = STATE(146), - [sym_delete_begin] = STATE(1232), - [sym_hard_line_break] = STATE(146), - [sym__smart_punctuation] = STATE(146), - [sym_autolink] = STATE(146), - [sym_footnote_reference] = STATE(146), - [sym_footnote_marker_begin] = STATE(1233), - [sym__image] = STATE(146), - [sym_full_reference_image] = STATE(146), - [sym_collapsed_reference_image] = STATE(146), - [sym_inline_image] = STATE(146), - [sym_image_description] = STATE(694), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(146), - [sym_full_reference_link] = STATE(146), - [sym_collapsed_reference_link] = STATE(146), - [sym_inline_link] = STATE(146), - [sym_link_text] = STATE(693), - [sym_span] = STATE(120), - [sym__bracketed_text_begin] = STATE(1269), - [sym__comment_with_spaces] = STATE(146), - [sym_raw_inline] = STATE(146), - [sym_math] = STATE(146), - [sym_verbatim] = STATE(146), - [sym__todo_highlights] = STATE(146), - [sym_todo] = STATE(146), - [sym_note] = STATE(146), - [sym__symbol_fallback] = STATE(146), - [aux_sym__text] = STATE(141), - [aux_sym__inline_repeat1] = STATE(120), - [anon_sym_LBRACE_] = ACTIONS(943), - [anon_sym__] = ACTIONS(946), - [anon_sym_LBRACE_STAR] = ACTIONS(949), - [anon_sym_STAR] = ACTIONS(952), - [anon_sym_LBRACE_CARET] = ACTIONS(955), - [anon_sym_CARET] = ACTIONS(955), - [anon_sym_LBRACE_TILDE] = ACTIONS(958), - [anon_sym_TILDE] = ACTIONS(958), - [anon_sym_LBRACE_EQ] = ACTIONS(961), - [anon_sym_LBRACE_PLUS] = ACTIONS(964), - [anon_sym_LBRACE_DASH] = ACTIONS(967), - [anon_sym_BSLASH] = ACTIONS(970), - [sym_quotation_marks] = ACTIONS(973), - [sym_ellipsis] = ACTIONS(973), - [sym_em_dash] = ACTIONS(973), - [sym_en_dash] = ACTIONS(976), - [sym_backslash_escape] = ACTIONS(976), - [anon_sym_LT] = ACTIONS(979), - [sym_symbol] = ACTIONS(973), - [anon_sym_LBRACK_CARET] = ACTIONS(982), - [anon_sym_BANG_LBRACK] = ACTIONS(985), - [anon_sym_LBRACK] = ACTIONS(988), - [anon_sym_RBRACK] = ACTIONS(354), - [anon_sym_DOLLAR] = ACTIONS(991), - [anon_sym_TODO] = ACTIONS(994), - [anon_sym_WIP] = ACTIONS(994), - [anon_sym_NOTE] = ACTIONS(997), - [anon_sym_INFO] = ACTIONS(997), - [anon_sym_XXX] = ACTIONS(997), - [sym_fixme] = ACTIONS(973), - [sym__whitespace1] = ACTIONS(1000), - [sym__newline] = ACTIONS(1003), - [aux_sym__text_token1] = ACTIONS(1006), - [sym__verbatim_begin] = ACTIONS(1009), - }, - [121] = { - [sym__element] = STATE(126), - [sym_emphasis] = STATE(154), - [sym_emphasis_begin] = STATE(1244), - [sym_strong] = STATE(154), - [sym_strong_begin] = STATE(1245), - [sym_superscript] = STATE(154), - [sym_superscript_begin] = STATE(1246), - [sym_subscript] = STATE(154), - [sym_subscript_begin] = STATE(1247), - [sym_highlighted] = STATE(154), - [sym_highlighted_begin] = STATE(1248), - [sym_insert] = STATE(154), - [sym_insert_begin] = STATE(1249), - [sym_delete] = STATE(154), - [sym_delete_begin] = STATE(1250), - [sym_hard_line_break] = STATE(154), - [sym__smart_punctuation] = STATE(154), - [sym_autolink] = STATE(154), - [sym_footnote_reference] = STATE(154), - [sym_footnote_marker_begin] = STATE(1251), - [sym__image] = STATE(154), - [sym_full_reference_image] = STATE(154), - [sym_collapsed_reference_image] = STATE(154), - [sym_inline_image] = STATE(154), - [sym_image_description] = STATE(686), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(154), - [sym_full_reference_link] = STATE(154), - [sym_collapsed_reference_link] = STATE(154), - [sym_inline_link] = STATE(154), - [sym_link_text] = STATE(687), - [sym_span] = STATE(126), - [sym__bracketed_text_begin] = STATE(1271), - [sym__comment_with_spaces] = STATE(154), - [sym_raw_inline] = STATE(154), - [sym_math] = STATE(154), - [sym_verbatim] = STATE(154), - [sym__todo_highlights] = STATE(154), - [sym_todo] = STATE(154), - [sym_note] = STATE(154), - [sym__symbol_fallback] = STATE(154), - [aux_sym__text] = STATE(137), - [aux_sym__inline_repeat1] = STATE(126), - [anon_sym_LBRACE_] = ACTIONS(235), - [anon_sym__] = ACTIONS(237), - [anon_sym_LBRACE_STAR] = ACTIONS(239), - [anon_sym_STAR] = ACTIONS(241), - [anon_sym_LBRACE_CARET] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(243), - [anon_sym_LBRACE_TILDE] = ACTIONS(245), - [anon_sym_TILDE] = ACTIONS(245), - [anon_sym_LBRACE_EQ] = ACTIONS(247), - [anon_sym_LBRACE_PLUS] = ACTIONS(249), - [anon_sym_LBRACE_DASH] = ACTIONS(251), - [anon_sym_BSLASH] = ACTIONS(253), - [sym_quotation_marks] = ACTIONS(255), - [sym_ellipsis] = ACTIONS(255), - [sym_em_dash] = ACTIONS(255), - [sym_en_dash] = ACTIONS(257), - [sym_backslash_escape] = ACTIONS(257), - [anon_sym_LT] = ACTIONS(259), - [sym_symbol] = ACTIONS(255), - [anon_sym_LBRACK_CARET] = ACTIONS(261), - [anon_sym_BANG_LBRACK] = ACTIONS(263), - [anon_sym_LBRACK] = ACTIONS(265), - [anon_sym_DOLLAR] = ACTIONS(267), - [anon_sym_TODO] = ACTIONS(269), - [anon_sym_WIP] = ACTIONS(269), - [anon_sym_NOTE] = ACTIONS(271), - [anon_sym_INFO] = ACTIONS(271), - [anon_sym_XXX] = ACTIONS(271), - [sym_fixme] = ACTIONS(255), - [sym__whitespace1] = ACTIONS(273), - [sym__newline] = ACTIONS(1012), - [aux_sym__text_token1] = ACTIONS(277), - [sym__verbatim_begin] = ACTIONS(279), - [sym__bracketed_text_end] = ACTIONS(283), - }, - [122] = { - [sym__element] = STATE(122), [sym_emphasis] = STATE(143), - [sym_emphasis_begin] = STATE(1235), + [sym_emphasis_begin] = STATE(1172), [sym_strong] = STATE(143), - [sym_strong_begin] = STATE(1236), + [sym_strong_begin] = STATE(1173), [sym_superscript] = STATE(143), - [sym_superscript_begin] = STATE(1237), + [sym_superscript_begin] = STATE(1174), [sym_subscript] = STATE(143), - [sym_subscript_begin] = STATE(1238), + [sym_subscript_begin] = STATE(1175), [sym_highlighted] = STATE(143), - [sym_highlighted_begin] = STATE(1239), + [sym_highlighted_begin] = STATE(1176), [sym_insert] = STATE(143), - [sym_insert_begin] = STATE(1240), + [sym_insert_begin] = STATE(1177), [sym_delete] = STATE(143), - [sym_delete_begin] = STATE(1241), + [sym_delete_begin] = STATE(1178), [sym_hard_line_break] = STATE(143), [sym__smart_punctuation] = STATE(143), [sym_autolink] = STATE(143), [sym_footnote_reference] = STATE(143), - [sym_footnote_marker_begin] = STATE(1242), + [sym_footnote_marker_begin] = STATE(1179), [sym__image] = STATE(143), [sym_full_reference_image] = STATE(143), [sym_collapsed_reference_image] = STATE(143), [sym_inline_image] = STATE(143), - [sym_image_description] = STATE(689), - [sym__image_description_begin] = STATE(1140), + [sym_image_description] = STATE(640), + [sym__image_description_begin] = STATE(1057), [sym__link] = STATE(143), [sym_full_reference_link] = STATE(143), [sym_collapsed_reference_link] = STATE(143), [sym_inline_link] = STATE(143), - [sym_link_text] = STATE(702), - [sym_span] = STATE(122), - [sym__bracketed_text_begin] = STATE(1270), + [sym_link_text] = STATE(630), + [sym_span] = STATE(120), + [sym__bracketed_text_begin] = STATE(1191), [sym__comment_with_spaces] = STATE(143), [sym_raw_inline] = STATE(143), [sym_math] = STATE(143), @@ -14917,773 +14733,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(143), [sym_note] = STATE(143), [sym__symbol_fallback] = STATE(143), - [aux_sym__text] = STATE(135), - [aux_sym__inline_repeat1] = STATE(122), - [anon_sym_LBRACE_] = ACTIONS(1014), - [anon_sym__] = ACTIONS(1017), - [anon_sym_LBRACE_STAR] = ACTIONS(1020), - [anon_sym_STAR] = ACTIONS(1023), - [anon_sym_LBRACE_CARET] = ACTIONS(1026), - [anon_sym_CARET] = ACTIONS(1026), - [anon_sym_LBRACE_TILDE] = ACTIONS(1029), - [anon_sym_TILDE] = ACTIONS(1029), - [anon_sym_LBRACE_EQ] = ACTIONS(1032), - [anon_sym_LBRACE_PLUS] = ACTIONS(1035), - [anon_sym_LBRACE_DASH] = ACTIONS(1038), - [anon_sym_BSLASH] = ACTIONS(1041), - [sym_quotation_marks] = ACTIONS(1044), - [sym_ellipsis] = ACTIONS(1044), - [sym_em_dash] = ACTIONS(1044), - [sym_en_dash] = ACTIONS(1047), - [sym_backslash_escape] = ACTIONS(1047), - [anon_sym_LT] = ACTIONS(1050), - [sym_symbol] = ACTIONS(1044), - [anon_sym_LBRACK_CARET] = ACTIONS(1053), - [anon_sym_BANG_LBRACK] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1059), - [anon_sym_DOLLAR] = ACTIONS(1062), - [anon_sym_TODO] = ACTIONS(1065), - [anon_sym_WIP] = ACTIONS(1065), - [anon_sym_NOTE] = ACTIONS(1068), - [anon_sym_INFO] = ACTIONS(1068), - [anon_sym_XXX] = ACTIONS(1068), - [sym_fixme] = ACTIONS(1044), - [sym__whitespace1] = ACTIONS(1071), - [sym__newline] = ACTIONS(1074), - [aux_sym__text_token1] = ACTIONS(1077), - [sym__verbatim_begin] = ACTIONS(1080), - [sym__image_description_end] = ACTIONS(354), - }, - [123] = { - [sym__inline] = STATE(1010), - [sym__element] = STATE(21), - [sym_emphasis] = STATE(149), - [sym_emphasis_begin] = STATE(1199), - [sym_strong] = STATE(149), - [sym_strong_begin] = STATE(1200), - [sym_superscript] = STATE(149), - [sym_superscript_begin] = STATE(1201), - [sym_subscript] = STATE(149), - [sym_subscript_begin] = STATE(1202), - [sym_highlighted] = STATE(149), - [sym_highlighted_begin] = STATE(1203), - [sym_insert] = STATE(149), - [sym_insert_begin] = STATE(1204), - [sym_delete] = STATE(149), - [sym_delete_begin] = STATE(1205), - [sym_hard_line_break] = STATE(149), - [sym__smart_punctuation] = STATE(149), - [sym_autolink] = STATE(149), - [sym_footnote_reference] = STATE(149), - [sym_footnote_marker_begin] = STATE(1206), - [sym__image] = STATE(149), - [sym_full_reference_image] = STATE(149), - [sym_collapsed_reference_image] = STATE(149), - [sym_inline_image] = STATE(149), - [sym_image_description] = STATE(714), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(149), - [sym_full_reference_link] = STATE(149), - [sym_collapsed_reference_link] = STATE(149), - [sym_inline_link] = STATE(149), - [sym_link_text] = STATE(710), - [sym_span] = STATE(21), - [sym__bracketed_text_begin] = STATE(1266), - [sym__comment_with_spaces] = STATE(149), - [sym_raw_inline] = STATE(149), - [sym_math] = STATE(149), - [sym_verbatim] = STATE(149), - [sym__todo_highlights] = STATE(149), - [sym_todo] = STATE(149), - [sym_note] = STATE(149), - [sym__symbol_fallback] = STATE(149), - [aux_sym__text] = STATE(142), - [aux_sym__inline_repeat1] = STATE(21), - [anon_sym_LBRACE_] = ACTIONS(494), - [anon_sym__] = ACTIONS(496), - [anon_sym_LBRACE_STAR] = ACTIONS(498), - [anon_sym_STAR] = ACTIONS(500), - [anon_sym_LBRACE_CARET] = ACTIONS(502), - [anon_sym_CARET] = ACTIONS(502), - [anon_sym_LBRACE_TILDE] = ACTIONS(504), - [anon_sym_TILDE] = ACTIONS(504), - [anon_sym_LBRACE_EQ] = ACTIONS(506), - [anon_sym_LBRACE_PLUS] = ACTIONS(508), - [anon_sym_LBRACE_DASH] = ACTIONS(510), - [anon_sym_BSLASH] = ACTIONS(512), - [sym_quotation_marks] = ACTIONS(514), - [sym_ellipsis] = ACTIONS(514), - [sym_em_dash] = ACTIONS(514), - [sym_en_dash] = ACTIONS(516), - [sym_backslash_escape] = ACTIONS(516), - [anon_sym_LT] = ACTIONS(518), - [sym_symbol] = ACTIONS(514), - [anon_sym_LBRACK_CARET] = ACTIONS(520), - [anon_sym_BANG_LBRACK] = ACTIONS(522), - [anon_sym_LBRACK] = ACTIONS(524), - [anon_sym_DOLLAR] = ACTIONS(526), - [anon_sym_TODO] = ACTIONS(528), - [anon_sym_WIP] = ACTIONS(528), - [anon_sym_NOTE] = ACTIONS(530), - [anon_sym_INFO] = ACTIONS(530), - [anon_sym_XXX] = ACTIONS(530), - [sym_fixme] = ACTIONS(514), - [sym__whitespace1] = ACTIONS(532), - [sym__newline] = ACTIONS(540), - [aux_sym__text_token1] = ACTIONS(536), - [sym__verbatim_begin] = ACTIONS(538), - }, - [124] = { - [sym__element] = STATE(36), - [sym_emphasis] = STATE(151), - [sym_emphasis_begin] = STATE(1181), - [sym_strong] = STATE(151), - [sym_strong_begin] = STATE(1182), - [sym_superscript] = STATE(151), - [sym_superscript_begin] = STATE(1183), - [sym_subscript] = STATE(151), - [sym_subscript_begin] = STATE(1184), - [sym_highlighted] = STATE(151), - [sym_highlighted_begin] = STATE(1185), - [sym_insert] = STATE(151), - [sym_insert_begin] = STATE(1186), - [sym_delete] = STATE(151), - [sym_delete_begin] = STATE(1187), - [sym_hard_line_break] = STATE(151), - [sym__smart_punctuation] = STATE(151), - [sym_autolink] = STATE(151), - [sym_footnote_reference] = STATE(151), - [sym_footnote_marker_begin] = STATE(1188), - [sym__image] = STATE(151), - [sym_full_reference_image] = STATE(151), - [sym_collapsed_reference_image] = STATE(151), - [sym_inline_image] = STATE(151), - [sym_image_description] = STATE(700), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(151), - [sym_full_reference_link] = STATE(151), - [sym_collapsed_reference_link] = STATE(151), - [sym_inline_link] = STATE(151), - [sym_link_text] = STATE(701), - [sym_span] = STATE(36), - [sym__bracketed_text_begin] = STATE(1264), - [sym__comment_with_spaces] = STATE(151), - [sym_raw_inline] = STATE(151), - [sym_math] = STATE(151), - [sym_verbatim] = STATE(151), - [sym__todo_highlights] = STATE(151), - [sym_todo] = STATE(151), - [sym_note] = STATE(151), - [sym__symbol_fallback] = STATE(151), - [aux_sym__text] = STATE(140), - [aux_sym__inline_repeat1] = STATE(36), - [anon_sym_LBRACE_] = ACTIONS(143), - [anon_sym__] = ACTIONS(145), - [anon_sym_LBRACE_STAR] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_LBRACE_CARET] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(151), - [anon_sym_LBRACE_TILDE] = ACTIONS(153), - [anon_sym_TILDE] = ACTIONS(153), - [anon_sym_LBRACE_EQ] = ACTIONS(155), - [anon_sym_LBRACE_PLUS] = ACTIONS(157), - [anon_sym_LBRACE_DASH] = ACTIONS(159), - [anon_sym_BSLASH] = ACTIONS(161), - [sym_quotation_marks] = ACTIONS(163), - [sym_ellipsis] = ACTIONS(163), - [sym_em_dash] = ACTIONS(163), - [sym_en_dash] = ACTIONS(165), - [sym_backslash_escape] = ACTIONS(165), - [anon_sym_LT] = ACTIONS(167), - [sym_symbol] = ACTIONS(163), - [anon_sym_LBRACK_CARET] = ACTIONS(169), - [anon_sym_BANG_LBRACK] = ACTIONS(171), - [anon_sym_LBRACK] = ACTIONS(173), - [anon_sym_DOLLAR] = ACTIONS(175), - [anon_sym_TODO] = ACTIONS(177), - [anon_sym_WIP] = ACTIONS(177), - [anon_sym_NOTE] = ACTIONS(179), - [anon_sym_INFO] = ACTIONS(179), - [anon_sym_XXX] = ACTIONS(179), - [sym_fixme] = ACTIONS(163), - [sym__whitespace1] = ACTIONS(181), - [sym__newline] = ACTIONS(1083), - [aux_sym__text_token1] = ACTIONS(185), - [sym__verbatim_begin] = ACTIONS(187), - [sym_superscript_end] = ACTIONS(283), - }, - [125] = { - [sym__inline] = STATE(1011), - [sym__element] = STATE(80), - [sym_emphasis] = STATE(145), - [sym_emphasis_begin] = STATE(1190), - [sym_strong] = STATE(145), - [sym_strong_begin] = STATE(1191), - [sym_superscript] = STATE(145), - [sym_superscript_begin] = STATE(1192), - [sym_subscript] = STATE(145), - [sym_subscript_begin] = STATE(1193), - [sym_highlighted] = STATE(145), - [sym_highlighted_begin] = STATE(1194), - [sym_insert] = STATE(145), - [sym_insert_begin] = STATE(1195), - [sym_delete] = STATE(145), - [sym_delete_begin] = STATE(1196), - [sym_hard_line_break] = STATE(145), - [sym__smart_punctuation] = STATE(145), - [sym_autolink] = STATE(145), - [sym_footnote_reference] = STATE(145), - [sym_footnote_marker_begin] = STATE(1197), - [sym__image] = STATE(145), - [sym_full_reference_image] = STATE(145), - [sym_collapsed_reference_image] = STATE(145), - [sym_inline_image] = STATE(145), - [sym_image_description] = STATE(696), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(145), - [sym_full_reference_link] = STATE(145), - [sym_collapsed_reference_link] = STATE(145), - [sym_inline_link] = STATE(145), - [sym_link_text] = STATE(691), - [sym_span] = STATE(80), - [sym__bracketed_text_begin] = STATE(1265), - [sym__comment_with_spaces] = STATE(145), - [sym_raw_inline] = STATE(145), - [sym_math] = STATE(145), - [sym_verbatim] = STATE(145), - [sym__todo_highlights] = STATE(145), - [sym_todo] = STATE(145), - [sym_note] = STATE(145), - [sym__symbol_fallback] = STATE(145), - [aux_sym__text] = STATE(138), - [aux_sym__inline_repeat1] = STATE(80), - [anon_sym_LBRACE_] = ACTIONS(542), - [anon_sym__] = ACTIONS(544), - [anon_sym_LBRACE_STAR] = ACTIONS(546), - [anon_sym_STAR] = ACTIONS(548), - [anon_sym_LBRACE_CARET] = ACTIONS(550), - [anon_sym_CARET] = ACTIONS(550), - [anon_sym_LBRACE_TILDE] = ACTIONS(552), - [anon_sym_TILDE] = ACTIONS(552), - [anon_sym_LBRACE_EQ] = ACTIONS(554), - [anon_sym_LBRACE_PLUS] = ACTIONS(556), - [anon_sym_LBRACE_DASH] = ACTIONS(558), - [anon_sym_BSLASH] = ACTIONS(560), - [sym_quotation_marks] = ACTIONS(562), - [sym_ellipsis] = ACTIONS(562), - [sym_em_dash] = ACTIONS(562), - [sym_en_dash] = ACTIONS(564), - [sym_backslash_escape] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(566), - [sym_symbol] = ACTIONS(562), - [anon_sym_LBRACK_CARET] = ACTIONS(568), - [anon_sym_BANG_LBRACK] = ACTIONS(570), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_DOLLAR] = ACTIONS(574), - [anon_sym_TODO] = ACTIONS(576), - [anon_sym_WIP] = ACTIONS(576), - [anon_sym_NOTE] = ACTIONS(578), - [anon_sym_INFO] = ACTIONS(578), - [anon_sym_XXX] = ACTIONS(578), - [sym_fixme] = ACTIONS(562), - [sym__whitespace1] = ACTIONS(580), - [sym__newline] = ACTIONS(582), - [aux_sym__text_token1] = ACTIONS(584), - [sym__verbatim_begin] = ACTIONS(586), - }, - [126] = { - [sym__element] = STATE(126), - [sym_emphasis] = STATE(154), - [sym_emphasis_begin] = STATE(1244), - [sym_strong] = STATE(154), - [sym_strong_begin] = STATE(1245), - [sym_superscript] = STATE(154), - [sym_superscript_begin] = STATE(1246), - [sym_subscript] = STATE(154), - [sym_subscript_begin] = STATE(1247), - [sym_highlighted] = STATE(154), - [sym_highlighted_begin] = STATE(1248), - [sym_insert] = STATE(154), - [sym_insert_begin] = STATE(1249), - [sym_delete] = STATE(154), - [sym_delete_begin] = STATE(1250), - [sym_hard_line_break] = STATE(154), - [sym__smart_punctuation] = STATE(154), - [sym_autolink] = STATE(154), - [sym_footnote_reference] = STATE(154), - [sym_footnote_marker_begin] = STATE(1251), - [sym__image] = STATE(154), - [sym_full_reference_image] = STATE(154), - [sym_collapsed_reference_image] = STATE(154), - [sym_inline_image] = STATE(154), - [sym_image_description] = STATE(686), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(154), - [sym_full_reference_link] = STATE(154), - [sym_collapsed_reference_link] = STATE(154), - [sym_inline_link] = STATE(154), - [sym_link_text] = STATE(687), - [sym_span] = STATE(126), - [sym__bracketed_text_begin] = STATE(1271), - [sym__comment_with_spaces] = STATE(154), - [sym_raw_inline] = STATE(154), - [sym_math] = STATE(154), - [sym_verbatim] = STATE(154), - [sym__todo_highlights] = STATE(154), - [sym_todo] = STATE(154), - [sym_note] = STATE(154), - [sym__symbol_fallback] = STATE(154), - [aux_sym__text] = STATE(137), - [aux_sym__inline_repeat1] = STATE(126), - [anon_sym_LBRACE_] = ACTIONS(1085), - [anon_sym__] = ACTIONS(1088), - [anon_sym_LBRACE_STAR] = ACTIONS(1091), - [anon_sym_STAR] = ACTIONS(1094), - [anon_sym_LBRACE_CARET] = ACTIONS(1097), - [anon_sym_CARET] = ACTIONS(1097), - [anon_sym_LBRACE_TILDE] = ACTIONS(1100), - [anon_sym_TILDE] = ACTIONS(1100), - [anon_sym_LBRACE_EQ] = ACTIONS(1103), - [anon_sym_LBRACE_PLUS] = ACTIONS(1106), - [anon_sym_LBRACE_DASH] = ACTIONS(1109), - [anon_sym_BSLASH] = ACTIONS(1112), - [sym_quotation_marks] = ACTIONS(1115), - [sym_ellipsis] = ACTIONS(1115), - [sym_em_dash] = ACTIONS(1115), - [sym_en_dash] = ACTIONS(1118), - [sym_backslash_escape] = ACTIONS(1118), - [anon_sym_LT] = ACTIONS(1121), - [sym_symbol] = ACTIONS(1115), - [anon_sym_LBRACK_CARET] = ACTIONS(1124), - [anon_sym_BANG_LBRACK] = ACTIONS(1127), - [anon_sym_LBRACK] = ACTIONS(1130), - [anon_sym_DOLLAR] = ACTIONS(1133), - [anon_sym_TODO] = ACTIONS(1136), - [anon_sym_WIP] = ACTIONS(1136), - [anon_sym_NOTE] = ACTIONS(1139), - [anon_sym_INFO] = ACTIONS(1139), - [anon_sym_XXX] = ACTIONS(1139), - [sym_fixme] = ACTIONS(1115), - [sym__whitespace1] = ACTIONS(1142), - [sym__newline] = ACTIONS(1145), - [aux_sym__text_token1] = ACTIONS(1148), - [sym__verbatim_begin] = ACTIONS(1151), - [sym__bracketed_text_end] = ACTIONS(354), - }, - [127] = { - [sym__inline] = STATE(1012), - [sym__element] = STATE(124), - [sym_emphasis] = STATE(151), - [sym_emphasis_begin] = STATE(1181), - [sym_strong] = STATE(151), - [sym_strong_begin] = STATE(1182), - [sym_superscript] = STATE(151), - [sym_superscript_begin] = STATE(1183), - [sym_subscript] = STATE(151), - [sym_subscript_begin] = STATE(1184), - [sym_highlighted] = STATE(151), - [sym_highlighted_begin] = STATE(1185), - [sym_insert] = STATE(151), - [sym_insert_begin] = STATE(1186), - [sym_delete] = STATE(151), - [sym_delete_begin] = STATE(1187), - [sym_hard_line_break] = STATE(151), - [sym__smart_punctuation] = STATE(151), - [sym_autolink] = STATE(151), - [sym_footnote_reference] = STATE(151), - [sym_footnote_marker_begin] = STATE(1188), - [sym__image] = STATE(151), - [sym_full_reference_image] = STATE(151), - [sym_collapsed_reference_image] = STATE(151), - [sym_inline_image] = STATE(151), - [sym_image_description] = STATE(700), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(151), - [sym_full_reference_link] = STATE(151), - [sym_collapsed_reference_link] = STATE(151), - [sym_inline_link] = STATE(151), - [sym_link_text] = STATE(701), - [sym_span] = STATE(124), - [sym__bracketed_text_begin] = STATE(1264), - [sym__comment_with_spaces] = STATE(151), - [sym_raw_inline] = STATE(151), - [sym_math] = STATE(151), - [sym_verbatim] = STATE(151), - [sym__todo_highlights] = STATE(151), - [sym_todo] = STATE(151), - [sym_note] = STATE(151), - [sym__symbol_fallback] = STATE(151), - [aux_sym__text] = STATE(140), - [aux_sym__inline_repeat1] = STATE(124), - [anon_sym_LBRACE_] = ACTIONS(143), - [anon_sym__] = ACTIONS(145), - [anon_sym_LBRACE_STAR] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_LBRACE_CARET] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(151), - [anon_sym_LBRACE_TILDE] = ACTIONS(153), - [anon_sym_TILDE] = ACTIONS(153), - [anon_sym_LBRACE_EQ] = ACTIONS(155), - [anon_sym_LBRACE_PLUS] = ACTIONS(157), - [anon_sym_LBRACE_DASH] = ACTIONS(159), - [anon_sym_BSLASH] = ACTIONS(161), - [sym_quotation_marks] = ACTIONS(163), - [sym_ellipsis] = ACTIONS(163), - [sym_em_dash] = ACTIONS(163), - [sym_en_dash] = ACTIONS(165), - [sym_backslash_escape] = ACTIONS(165), - [anon_sym_LT] = ACTIONS(167), - [sym_symbol] = ACTIONS(163), - [anon_sym_LBRACK_CARET] = ACTIONS(169), - [anon_sym_BANG_LBRACK] = ACTIONS(171), - [anon_sym_LBRACK] = ACTIONS(173), - [anon_sym_DOLLAR] = ACTIONS(175), - [anon_sym_TODO] = ACTIONS(177), - [anon_sym_WIP] = ACTIONS(177), - [anon_sym_NOTE] = ACTIONS(179), - [anon_sym_INFO] = ACTIONS(179), - [anon_sym_XXX] = ACTIONS(179), - [sym_fixme] = ACTIONS(163), - [sym__whitespace1] = ACTIONS(181), - [sym__newline] = ACTIONS(183), - [aux_sym__text_token1] = ACTIONS(185), - [sym__verbatim_begin] = ACTIONS(187), - }, - [128] = { - [sym__inline_without_trailing_space] = STATE(1014), - [sym__element] = STATE(570), - [sym_emphasis] = STATE(152), - [sym_emphasis_begin] = STATE(1172), - [sym_strong] = STATE(152), - [sym_strong_begin] = STATE(1173), - [sym_superscript] = STATE(152), - [sym_superscript_begin] = STATE(1174), - [sym_subscript] = STATE(152), - [sym_subscript_begin] = STATE(1175), - [sym_highlighted] = STATE(152), - [sym_highlighted_begin] = STATE(1176), - [sym_insert] = STATE(152), - [sym_insert_begin] = STATE(1177), - [sym_delete] = STATE(152), - [sym_delete_begin] = STATE(1178), - [sym_hard_line_break] = STATE(152), - [sym__smart_punctuation] = STATE(152), - [sym_autolink] = STATE(152), - [sym_footnote_reference] = STATE(152), - [sym_footnote_marker_begin] = STATE(1179), - [sym__image] = STATE(152), - [sym_full_reference_image] = STATE(152), - [sym_collapsed_reference_image] = STATE(152), - [sym_inline_image] = STATE(152), - [sym_image_description] = STATE(704), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(152), - [sym_full_reference_link] = STATE(152), - [sym_collapsed_reference_link] = STATE(152), - [sym_inline_link] = STATE(152), - [sym_link_text] = STATE(706), - [sym_span] = STATE(570), - [sym__bracketed_text_begin] = STATE(1263), - [sym__comment_with_spaces] = STATE(152), - [sym_raw_inline] = STATE(152), - [sym_math] = STATE(152), - [sym_verbatim] = STATE(152), - [sym__todo_highlights] = STATE(152), - [sym_todo] = STATE(152), - [sym_note] = STATE(152), - [sym__symbol_fallback] = STATE(152), - [aux_sym__text] = STATE(133), - [aux_sym__inline_repeat1] = STATE(130), - [anon_sym_LBRACE_] = ACTIONS(448), - [anon_sym__] = ACTIONS(450), - [anon_sym_LBRACE_STAR] = ACTIONS(452), - [anon_sym_STAR] = ACTIONS(454), - [anon_sym_LBRACE_CARET] = ACTIONS(456), - [anon_sym_CARET] = ACTIONS(456), - [anon_sym_LBRACE_TILDE] = ACTIONS(458), - [anon_sym_TILDE] = ACTIONS(458), - [anon_sym_LBRACE_EQ] = ACTIONS(460), - [anon_sym_LBRACE_PLUS] = ACTIONS(462), - [anon_sym_LBRACE_DASH] = ACTIONS(464), - [anon_sym_BSLASH] = ACTIONS(466), - [sym_quotation_marks] = ACTIONS(468), - [sym_ellipsis] = ACTIONS(468), - [sym_em_dash] = ACTIONS(468), - [sym_en_dash] = ACTIONS(470), - [sym_backslash_escape] = ACTIONS(470), - [anon_sym_LT] = ACTIONS(472), - [sym_symbol] = ACTIONS(468), - [anon_sym_LBRACK_CARET] = ACTIONS(474), - [anon_sym_BANG_LBRACK] = ACTIONS(476), - [anon_sym_LBRACK] = ACTIONS(478), - [anon_sym_DOLLAR] = ACTIONS(480), - [anon_sym_TODO] = ACTIONS(482), - [anon_sym_WIP] = ACTIONS(482), - [anon_sym_NOTE] = ACTIONS(484), - [anon_sym_INFO] = ACTIONS(484), - [anon_sym_XXX] = ACTIONS(484), - [sym_fixme] = ACTIONS(468), - [sym__whitespace1] = ACTIONS(486), - [sym__newline] = ACTIONS(488), - [aux_sym__text_token1] = ACTIONS(490), - [sym__verbatim_begin] = ACTIONS(492), - }, - [129] = { - [sym__element] = STATE(612), - [sym_emphasis] = STATE(148), - [sym_emphasis_begin] = STATE(1163), - [sym_strong] = STATE(148), - [sym_strong_begin] = STATE(1164), - [sym_superscript] = STATE(148), - [sym_superscript_begin] = STATE(1165), - [sym_subscript] = STATE(148), - [sym_subscript_begin] = STATE(1166), - [sym_highlighted] = STATE(148), - [sym_highlighted_begin] = STATE(1167), - [sym_insert] = STATE(148), - [sym_insert_begin] = STATE(1168), - [sym_delete] = STATE(148), - [sym_delete_begin] = STATE(1169), - [sym_hard_line_break] = STATE(148), - [sym__smart_punctuation] = STATE(148), - [sym_autolink] = STATE(148), - [sym_footnote_reference] = STATE(148), - [sym_footnote_marker_begin] = STATE(1170), - [sym__image] = STATE(148), - [sym_full_reference_image] = STATE(148), - [sym_collapsed_reference_image] = STATE(148), - [sym_inline_image] = STATE(148), - [sym_image_description] = STATE(712), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(148), - [sym_full_reference_link] = STATE(148), - [sym_collapsed_reference_link] = STATE(148), - [sym_inline_link] = STATE(148), - [sym_link_text] = STATE(713), - [sym_span] = STATE(612), - [sym__bracketed_text_begin] = STATE(1262), - [sym__comment_with_spaces] = STATE(148), - [sym_raw_inline] = STATE(148), - [sym_math] = STATE(148), - [sym_verbatim] = STATE(148), - [sym__todo_highlights] = STATE(148), - [sym_todo] = STATE(148), - [sym_note] = STATE(148), - [sym__symbol_fallback] = STATE(148), - [aux_sym__text] = STATE(136), - [aux_sym__inline_repeat1] = STATE(131), - [anon_sym_LBRACE_] = ACTIONS(402), - [anon_sym__] = ACTIONS(404), - [anon_sym_LBRACE_STAR] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_LBRACE_CARET] = ACTIONS(410), - [anon_sym_CARET] = ACTIONS(410), - [anon_sym_LBRACE_TILDE] = ACTIONS(412), - [anon_sym_TILDE] = ACTIONS(412), - [anon_sym_LBRACE_EQ] = ACTIONS(414), - [anon_sym_LBRACE_PLUS] = ACTIONS(416), - [anon_sym_LBRACE_DASH] = ACTIONS(418), - [anon_sym_BSLASH] = ACTIONS(420), - [sym_quotation_marks] = ACTIONS(422), - [sym_ellipsis] = ACTIONS(422), - [sym_em_dash] = ACTIONS(422), - [sym_en_dash] = ACTIONS(424), - [sym_backslash_escape] = ACTIONS(424), - [anon_sym_LT] = ACTIONS(426), - [sym_symbol] = ACTIONS(422), - [anon_sym_LBRACK_CARET] = ACTIONS(428), - [anon_sym_BANG_LBRACK] = ACTIONS(430), - [anon_sym_LBRACK] = ACTIONS(432), - [anon_sym_DOLLAR] = ACTIONS(434), - [anon_sym_TODO] = ACTIONS(436), - [anon_sym_WIP] = ACTIONS(436), - [anon_sym_NOTE] = ACTIONS(438), - [anon_sym_INFO] = ACTIONS(438), - [anon_sym_XXX] = ACTIONS(438), - [sym_fixme] = ACTIONS(422), - [sym__whitespace1] = ACTIONS(440), - [sym__newline] = ACTIONS(1154), - [aux_sym__text_token1] = ACTIONS(444), - [sym__verbatim_begin] = ACTIONS(446), - }, - [130] = { - [sym__element] = STATE(599), - [sym_emphasis] = STATE(152), - [sym_emphasis_begin] = STATE(1172), - [sym_strong] = STATE(152), - [sym_strong_begin] = STATE(1173), - [sym_superscript] = STATE(152), - [sym_superscript_begin] = STATE(1174), - [sym_subscript] = STATE(152), - [sym_subscript_begin] = STATE(1175), - [sym_highlighted] = STATE(152), - [sym_highlighted_begin] = STATE(1176), - [sym_insert] = STATE(152), - [sym_insert_begin] = STATE(1177), - [sym_delete] = STATE(152), - [sym_delete_begin] = STATE(1178), - [sym_hard_line_break] = STATE(152), - [sym__smart_punctuation] = STATE(152), - [sym_autolink] = STATE(152), - [sym_footnote_reference] = STATE(152), - [sym_footnote_marker_begin] = STATE(1179), - [sym__image] = STATE(152), - [sym_full_reference_image] = STATE(152), - [sym_collapsed_reference_image] = STATE(152), - [sym_inline_image] = STATE(152), - [sym_image_description] = STATE(704), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(152), - [sym_full_reference_link] = STATE(152), - [sym_collapsed_reference_link] = STATE(152), - [sym_inline_link] = STATE(152), - [sym_link_text] = STATE(706), - [sym_span] = STATE(599), - [sym__bracketed_text_begin] = STATE(1263), - [sym__comment_with_spaces] = STATE(152), - [sym_raw_inline] = STATE(152), - [sym_math] = STATE(152), - [sym_verbatim] = STATE(152), - [sym__todo_highlights] = STATE(152), - [sym_todo] = STATE(152), - [sym_note] = STATE(152), - [sym__symbol_fallback] = STATE(152), - [aux_sym__text] = STATE(133), - [aux_sym__inline_repeat1] = STATE(131), - [anon_sym_LBRACE_] = ACTIONS(448), - [anon_sym__] = ACTIONS(450), - [anon_sym_LBRACE_STAR] = ACTIONS(452), - [anon_sym_STAR] = ACTIONS(454), - [anon_sym_LBRACE_CARET] = ACTIONS(456), - [anon_sym_CARET] = ACTIONS(456), - [anon_sym_LBRACE_TILDE] = ACTIONS(458), - [anon_sym_TILDE] = ACTIONS(458), - [anon_sym_LBRACE_EQ] = ACTIONS(460), - [anon_sym_LBRACE_PLUS] = ACTIONS(462), - [anon_sym_LBRACE_DASH] = ACTIONS(464), - [anon_sym_BSLASH] = ACTIONS(466), - [sym_quotation_marks] = ACTIONS(468), - [sym_ellipsis] = ACTIONS(468), - [sym_em_dash] = ACTIONS(468), - [sym_en_dash] = ACTIONS(470), - [sym_backslash_escape] = ACTIONS(470), - [anon_sym_LT] = ACTIONS(472), - [sym_symbol] = ACTIONS(468), - [anon_sym_LBRACK_CARET] = ACTIONS(474), - [anon_sym_BANG_LBRACK] = ACTIONS(476), - [anon_sym_LBRACK] = ACTIONS(478), - [anon_sym_DOLLAR] = ACTIONS(480), - [anon_sym_TODO] = ACTIONS(482), - [anon_sym_WIP] = ACTIONS(482), - [anon_sym_NOTE] = ACTIONS(484), - [anon_sym_INFO] = ACTIONS(484), - [anon_sym_XXX] = ACTIONS(484), - [sym_fixme] = ACTIONS(468), - [sym__whitespace1] = ACTIONS(486), - [sym__newline] = ACTIONS(1154), - [aux_sym__text_token1] = ACTIONS(490), - [sym__verbatim_begin] = ACTIONS(492), - }, - [131] = { - [sym__element] = STATE(131), - [sym_emphasis] = STATE(155), - [sym_emphasis_begin] = STATE(1253), - [sym_strong] = STATE(155), - [sym_strong_begin] = STATE(1254), - [sym_superscript] = STATE(155), - [sym_superscript_begin] = STATE(1255), - [sym_subscript] = STATE(155), - [sym_subscript_begin] = STATE(1256), - [sym_highlighted] = STATE(155), - [sym_highlighted_begin] = STATE(1257), - [sym_insert] = STATE(155), - [sym_insert_begin] = STATE(1258), - [sym_delete] = STATE(155), - [sym_delete_begin] = STATE(1259), - [sym_hard_line_break] = STATE(155), - [sym__smart_punctuation] = STATE(155), - [sym_autolink] = STATE(155), - [sym_footnote_reference] = STATE(155), - [sym_footnote_marker_begin] = STATE(1260), - [sym__image] = STATE(155), - [sym_full_reference_image] = STATE(155), - [sym_collapsed_reference_image] = STATE(155), - [sym_inline_image] = STATE(155), - [sym_image_description] = STATE(708), - [sym__image_description_begin] = STATE(1140), - [sym__link] = STATE(155), - [sym_full_reference_link] = STATE(155), - [sym_collapsed_reference_link] = STATE(155), - [sym_inline_link] = STATE(155), - [sym_link_text] = STATE(711), - [sym_span] = STATE(131), - [sym__bracketed_text_begin] = STATE(1272), - [sym__comment_with_spaces] = STATE(155), - [sym_raw_inline] = STATE(155), - [sym_math] = STATE(155), - [sym_verbatim] = STATE(155), - [sym__todo_highlights] = STATE(155), - [sym_todo] = STATE(155), - [sym_note] = STATE(155), - [sym__symbol_fallback] = STATE(155), - [aux_sym__text] = STATE(144), - [aux_sym__inline_repeat1] = STATE(131), - [anon_sym_LBRACE_] = ACTIONS(1156), - [anon_sym__] = ACTIONS(1159), - [anon_sym_LBRACE_STAR] = ACTIONS(1162), - [anon_sym_STAR] = ACTIONS(1165), - [anon_sym_LBRACE_CARET] = ACTIONS(1168), - [anon_sym_CARET] = ACTIONS(1168), - [anon_sym_LBRACE_TILDE] = ACTIONS(1171), - [anon_sym_TILDE] = ACTIONS(1171), - [anon_sym_LBRACE_EQ] = ACTIONS(1174), - [anon_sym_LBRACE_PLUS] = ACTIONS(1177), - [anon_sym_LBRACE_DASH] = ACTIONS(1180), - [anon_sym_BSLASH] = ACTIONS(1183), - [sym_quotation_marks] = ACTIONS(1186), - [sym_ellipsis] = ACTIONS(1186), - [sym_em_dash] = ACTIONS(1186), - [sym_en_dash] = ACTIONS(1189), - [sym_backslash_escape] = ACTIONS(1189), - [anon_sym_LT] = ACTIONS(1192), - [sym_symbol] = ACTIONS(1186), - [anon_sym_LBRACK_CARET] = ACTIONS(1195), - [anon_sym_BANG_LBRACK] = ACTIONS(1198), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_DOLLAR] = ACTIONS(1204), - [anon_sym_TODO] = ACTIONS(1207), - [anon_sym_WIP] = ACTIONS(1207), - [anon_sym_NOTE] = ACTIONS(1210), - [anon_sym_INFO] = ACTIONS(1210), - [anon_sym_XXX] = ACTIONS(1210), - [sym_fixme] = ACTIONS(1186), - [sym__whitespace1] = ACTIONS(1213), - [sym__newline] = ACTIONS(1216), - [aux_sym__text_token1] = ACTIONS(1219), - [sym__verbatim_begin] = ACTIONS(1222), + [aux_sym__text] = STATE(134), + [aux_sym__inline_repeat1] = STATE(120), + [anon_sym_LBRACE_] = ACTIONS(1083), + [anon_sym__] = ACTIONS(1086), + [anon_sym_LBRACE_STAR] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1092), + [anon_sym_LBRACE_CARET] = ACTIONS(1095), + [anon_sym_CARET] = ACTIONS(1095), + [anon_sym_LBRACE_TILDE] = ACTIONS(1098), + [anon_sym_TILDE] = ACTIONS(1098), + [anon_sym_LBRACE_EQ] = ACTIONS(1101), + [anon_sym_LBRACE_PLUS] = ACTIONS(1104), + [anon_sym_LBRACE_DASH] = ACTIONS(1107), + [anon_sym_BSLASH] = ACTIONS(1110), + [sym_quotation_marks] = ACTIONS(1113), + [sym_ellipsis] = ACTIONS(1113), + [sym_em_dash] = ACTIONS(1113), + [sym_en_dash] = ACTIONS(1116), + [sym_backslash_escape] = ACTIONS(1116), + [anon_sym_LT] = ACTIONS(1119), + [sym_symbol] = ACTIONS(1113), + [anon_sym_LBRACK_CARET] = ACTIONS(1122), + [anon_sym_BANG_LBRACK] = ACTIONS(1125), + [anon_sym_LBRACK] = ACTIONS(1128), + [anon_sym_LPAREN] = ACTIONS(1131), + [anon_sym_DOLLAR] = ACTIONS(1134), + [anon_sym_TODO] = ACTIONS(1137), + [anon_sym_WIP] = ACTIONS(1137), + [anon_sym_NOTE] = ACTIONS(1140), + [anon_sym_INFO] = ACTIONS(1140), + [anon_sym_XXX] = ACTIONS(1140), + [sym_fixme] = ACTIONS(1113), + [sym__whitespace1] = ACTIONS(1143), + [sym__newline] = ACTIONS(1146), + [aux_sym__text_token1] = ACTIONS(1149), + [sym__verbatim_begin] = ACTIONS(1152), }, }; static const uint16_t ts_small_parse_table[] = { [0] = 6, - ACTIONS(1229), 1, + ACTIONS(1159), 1, anon_sym_LBRACE, - STATE(169), 1, + STATE(170), 1, aux_sym__text, - STATE(1084), 1, - sym__inline_attribute_begin, - STATE(578), 2, + STATE(1043), 1, + sym__curly_bracket_span_begin, + STATE(518), 2, sym_inline_attribute, - sym__inline_attribute_fallback, - ACTIONS(1227), 5, + sym__curly_bracket_span_fallback, + ACTIONS(1157), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1225), 29, + ACTIONS(1155), 30, sym__verbatim_begin, - sym_delete_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15702,6 +14810,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -15711,25 +14820,25 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [52] = 6, - ACTIONS(1231), 1, + [53] = 6, + ACTIONS(1161), 1, anon_sym_LBRACE, - STATE(206), 1, + STATE(154), 1, aux_sym__text, - STATE(1004), 1, - sym__inline_attribute_begin, - STATE(629), 2, + STATE(971), 1, + sym__curly_bracket_span_begin, + STATE(557), 2, sym_inline_attribute, - sym__inline_attribute_fallback, - ACTIONS(1227), 5, + sym__curly_bracket_span_fallback, + ACTIONS(1157), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1225), 29, + ACTIONS(1155), 30, sym__verbatim_begin, - sym_strong_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15748,6 +14857,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -15757,23 +14867,23 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [104] = 6, - ACTIONS(1233), 1, + [106] = 6, + ACTIONS(1163), 1, anon_sym_LBRACE, - STATE(180), 1, + STATE(162), 1, aux_sym__text, - STATE(1068), 1, - sym__inline_attribute_begin, - STATE(627), 2, + STATE(1003), 1, + sym__curly_bracket_span_begin, + STATE(534), 2, sym_inline_attribute, - sym__inline_attribute_fallback, - ACTIONS(1227), 5, + sym__curly_bracket_span_fallback, + ACTIONS(1157), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1225), 29, + ACTIONS(1155), 30, sym__verbatim_begin, sym_insert_end, anon_sym_LBRACE_, @@ -15794,6 +14904,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -15803,25 +14914,25 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [156] = 6, - ACTIONS(1235), 1, + [159] = 6, + ACTIONS(1165), 1, anon_sym_LBRACE, - STATE(211), 1, + STATE(203), 1, aux_sym__text, - STATE(1116), 1, - sym__inline_attribute_begin, - STATE(560), 2, + STATE(1051), 1, + sym__curly_bracket_span_begin, + STATE(504), 2, sym_inline_attribute, - sym__inline_attribute_fallback, - ACTIONS(1227), 5, + sym__curly_bracket_span_fallback, + ACTIONS(1157), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1225), 29, + ACTIONS(1155), 30, sym__verbatim_begin, - sym__image_description_end, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15840,6 +14951,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -15849,23 +14961,23 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [208] = 6, - ACTIONS(1237), 1, + [212] = 6, + ACTIONS(1167), 1, anon_sym_LBRACE, - STATE(201), 1, + STATE(164), 1, aux_sym__text, - STATE(987), 1, - sym__inline_attribute_begin, - STATE(563), 2, + STATE(922), 1, + sym__curly_bracket_span_begin, + STATE(527), 2, sym_inline_attribute, - sym__inline_attribute_fallback, - ACTIONS(1227), 5, + sym__curly_bracket_span_fallback, + ACTIONS(1157), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1225), 29, + ACTIONS(1155), 30, sym__verbatim_begin, sym_emphasis_end, anon_sym_LBRACE_, @@ -15886,6 +14998,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -15895,25 +15008,25 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [260] = 6, - ACTIONS(1239), 1, + [265] = 6, + ACTIONS(1169), 1, anon_sym_LBRACE, - STATE(202), 1, + STATE(198), 1, aux_sym__text, - STATE(1132), 1, - sym__inline_attribute_begin, - STATE(633), 2, + STATE(955), 1, + sym__curly_bracket_span_begin, + STATE(517), 2, sym_inline_attribute, - sym__inline_attribute_fallback, - ACTIONS(1227), 5, + sym__curly_bracket_span_fallback, + ACTIONS(1157), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1225), 29, + ACTIONS(1155), 30, sym__verbatim_begin, - sym__bracketed_text_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15932,6 +15045,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -15941,25 +15055,25 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [312] = 6, - ACTIONS(1241), 1, + [318] = 6, + ACTIONS(1171), 1, anon_sym_LBRACE, - STATE(213), 1, + STATE(208), 1, aux_sym__text, - STATE(1036), 1, - sym__inline_attribute_begin, - STATE(597), 2, + STATE(939), 1, + sym__curly_bracket_span_begin, + STATE(502), 2, sym_inline_attribute, - sym__inline_attribute_fallback, - ACTIONS(1227), 5, + sym__curly_bracket_span_fallback, + ACTIONS(1157), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1225), 29, + ACTIONS(1155), 30, sym__verbatim_begin, - sym_subscript_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15978,6 +15092,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -15987,25 +15102,24 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [364] = 6, - ACTIONS(1243), 1, + [371] = 6, + ACTIONS(1173), 1, anon_sym_LBRACE, - STATE(225), 1, + STATE(205), 1, aux_sym__text, - STATE(1127), 1, - sym__inline_attribute_begin, - STATE(562), 2, + STATE(1035), 1, + sym__curly_bracket_span_begin, + STATE(513), 2, sym_inline_attribute, - sym__inline_attribute_fallback, - ACTIONS(1227), 5, + sym__curly_bracket_span_fallback, + ACTIONS(1157), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1225), 29, + ACTIONS(1155), 30, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16024,6 +15138,8 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -16033,25 +15149,25 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [416] = 6, - ACTIONS(1245), 1, + [424] = 6, + ACTIONS(1175), 1, anon_sym_LBRACE, - STATE(221), 1, + STATE(169), 1, aux_sym__text, - STATE(1020), 1, - sym__inline_attribute_begin, - STATE(552), 2, + STATE(1019), 1, + sym__curly_bracket_span_begin, + STATE(525), 2, sym_inline_attribute, - sym__inline_attribute_fallback, - ACTIONS(1227), 5, + sym__curly_bracket_span_fallback, + ACTIONS(1157), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1225), 29, + ACTIONS(1155), 30, sym__verbatim_begin, - sym_superscript_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16070,6 +15186,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -16079,24 +15196,25 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [468] = 6, - ACTIONS(1247), 1, + [477] = 6, + ACTIONS(1177), 1, anon_sym_LBRACE, - STATE(194), 1, + STATE(171), 1, aux_sym__text, - STATE(1100), 1, - sym__inline_attribute_begin, - STATE(568), 2, + STATE(987), 1, + sym__curly_bracket_span_begin, + STATE(576), 2, sym_inline_attribute, - sym__inline_attribute_fallback, - ACTIONS(1227), 5, + sym__curly_bracket_span_fallback, + ACTIONS(1157), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1225), 29, + ACTIONS(1155), 30, sym__verbatim_begin, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16115,7 +15233,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -16125,25 +15243,23 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [520] = 6, - ACTIONS(1249), 1, + [530] = 5, + ACTIONS(1163), 1, anon_sym_LBRACE, - STATE(199), 1, - aux_sym__text, - STATE(1052), 1, - sym__inline_attribute_begin, - STATE(625), 2, + STATE(1003), 1, + sym__curly_bracket_span_begin, + STATE(534), 2, sym_inline_attribute, - sym__inline_attribute_fallback, - ACTIONS(1227), 5, + sym__curly_bracket_span_fallback, + ACTIONS(1157), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1225), 29, + ACTIONS(1155), 30, sym__verbatim_begin, - sym_highlighted_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16162,6 +15278,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -16171,23 +15288,22 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [572] = 5, - ACTIONS(1235), 1, + [580] = 5, + ACTIONS(1173), 1, anon_sym_LBRACE, - STATE(1116), 1, - sym__inline_attribute_begin, - STATE(560), 2, + STATE(1035), 1, + sym__curly_bracket_span_begin, + STATE(513), 2, sym_inline_attribute, - sym__inline_attribute_fallback, - ACTIONS(1227), 5, + sym__curly_bracket_span_fallback, + ACTIONS(1157), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1225), 29, + ACTIONS(1155), 30, sym__verbatim_begin, - sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16206,6 +15322,8 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -16215,24 +15333,23 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [621] = 6, - ACTIONS(1251), 1, + [630] = 5, + ACTIONS(1175), 1, anon_sym_LBRACE, - STATE(389), 1, - aux_sym__text, - STATE(1148), 1, - sym__inline_attribute_begin, - STATE(636), 2, + STATE(1019), 1, + sym__curly_bracket_span_begin, + STATE(525), 2, sym_inline_attribute, - sym__inline_attribute_fallback, - ACTIONS(1227), 5, + sym__curly_bracket_span_fallback, + ACTIONS(1157), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1225), 28, + ACTIONS(1155), 30, sym__verbatim_begin, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16251,6 +15368,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -16260,23 +15378,24 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [672] = 5, - ACTIONS(1241), 1, + [680] = 6, + ACTIONS(1179), 1, anon_sym_LBRACE, - STATE(1036), 1, - sym__inline_attribute_begin, - STATE(597), 2, + STATE(344), 1, + aux_sym__text, + STATE(1067), 1, + sym__curly_bracket_span_begin, + STATE(586), 2, sym_inline_attribute, - sym__inline_attribute_fallback, - ACTIONS(1227), 5, + sym__curly_bracket_span_fallback, + ACTIONS(1157), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1225), 29, + ACTIONS(1155), 29, sym__verbatim_begin, - sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16295,6 +15414,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -16304,22 +15424,23 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [721] = 5, - ACTIONS(1247), 1, + [732] = 5, + ACTIONS(1159), 1, anon_sym_LBRACE, - STATE(1100), 1, - sym__inline_attribute_begin, - STATE(568), 2, + STATE(1043), 1, + sym__curly_bracket_span_begin, + STATE(518), 2, sym_inline_attribute, - sym__inline_attribute_fallback, - ACTIONS(1227), 5, + sym__curly_bracket_span_fallback, + ACTIONS(1157), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1225), 29, + ACTIONS(1155), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16338,7 +15459,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -16348,23 +15469,23 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [770] = 5, - ACTIONS(1229), 1, + [782] = 5, + ACTIONS(1177), 1, anon_sym_LBRACE, - STATE(1084), 1, - sym__inline_attribute_begin, - STATE(578), 2, + STATE(987), 1, + sym__curly_bracket_span_begin, + STATE(576), 2, sym_inline_attribute, - sym__inline_attribute_fallback, - ACTIONS(1227), 5, + sym__curly_bracket_span_fallback, + ACTIONS(1157), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1225), 29, + ACTIONS(1155), 30, sym__verbatim_begin, - sym_delete_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16383,6 +15504,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -16392,23 +15514,23 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [819] = 5, - ACTIONS(1237), 1, + [832] = 5, + ACTIONS(1161), 1, anon_sym_LBRACE, - STATE(987), 1, - sym__inline_attribute_begin, - STATE(563), 2, + STATE(971), 1, + sym__curly_bracket_span_begin, + STATE(557), 2, sym_inline_attribute, - sym__inline_attribute_fallback, - ACTIONS(1227), 5, + sym__curly_bracket_span_fallback, + ACTIONS(1157), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1225), 29, + ACTIONS(1155), 30, sym__verbatim_begin, - sym_emphasis_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16427,6 +15549,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -16436,23 +15559,23 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [868] = 5, - ACTIONS(1249), 1, + [882] = 5, + ACTIONS(1171), 1, anon_sym_LBRACE, - STATE(1052), 1, - sym__inline_attribute_begin, - STATE(625), 2, + STATE(939), 1, + sym__curly_bracket_span_begin, + STATE(502), 2, sym_inline_attribute, - sym__inline_attribute_fallback, - ACTIONS(1227), 5, + sym__curly_bracket_span_fallback, + ACTIONS(1157), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1225), 29, + ACTIONS(1155), 30, sym__verbatim_begin, - sym_highlighted_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16471,6 +15594,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -16480,23 +15604,23 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [917] = 5, - ACTIONS(1243), 1, + [932] = 5, + ACTIONS(1169), 1, anon_sym_LBRACE, - STATE(1127), 1, - sym__inline_attribute_begin, - STATE(562), 2, + STATE(955), 1, + sym__curly_bracket_span_begin, + STATE(517), 2, sym_inline_attribute, - sym__inline_attribute_fallback, - ACTIONS(1227), 5, + sym__curly_bracket_span_fallback, + ACTIONS(1157), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1225), 29, + ACTIONS(1155), 30, sym__verbatim_begin, - ts_builtin_sym_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16515,6 +15639,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -16524,23 +15649,23 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [966] = 5, - ACTIONS(1245), 1, + [982] = 5, + ACTIONS(1165), 1, anon_sym_LBRACE, - STATE(1020), 1, - sym__inline_attribute_begin, - STATE(552), 2, + STATE(1051), 1, + sym__curly_bracket_span_begin, + STATE(504), 2, sym_inline_attribute, - sym__inline_attribute_fallback, - ACTIONS(1227), 5, + sym__curly_bracket_span_fallback, + ACTIONS(1157), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1225), 29, + ACTIONS(1155), 30, sym__verbatim_begin, - sym_superscript_end, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16559,6 +15684,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -16568,23 +15694,23 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [1015] = 5, - ACTIONS(1231), 1, + [1032] = 5, + ACTIONS(1167), 1, anon_sym_LBRACE, - STATE(1004), 1, - sym__inline_attribute_begin, - STATE(629), 2, + STATE(922), 1, + sym__curly_bracket_span_begin, + STATE(527), 2, sym_inline_attribute, - sym__inline_attribute_fallback, - ACTIONS(1227), 5, + sym__curly_bracket_span_fallback, + ACTIONS(1157), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1225), 29, + ACTIONS(1155), 30, sym__verbatim_begin, - sym_strong_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16603,6 +15729,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -16612,23 +15739,22 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [1064] = 5, - ACTIONS(1233), 1, - anon_sym_LBRACE, - STATE(1068), 1, - sym__inline_attribute_begin, - STATE(627), 2, - sym_inline_attribute, - sym__inline_attribute_fallback, - ACTIONS(1227), 5, + [1082] = 4, + ACTIONS(1185), 1, + anon_sym_LBRACE_EQ2, + STATE(346), 1, + sym_raw_inline_attribute, + ACTIONS(1183), 7, + anon_sym_LBRACE_EQ, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1225), 29, + ACTIONS(1181), 29, sym__verbatim_begin, - sym_insert_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16637,7 +15763,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, - anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -16647,6 +15772,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -16656,23 +15782,22 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [1113] = 5, - ACTIONS(1239), 1, + [1129] = 5, + ACTIONS(1179), 1, anon_sym_LBRACE, - STATE(1132), 1, - sym__inline_attribute_begin, - STATE(633), 2, + STATE(1067), 1, + sym__curly_bracket_span_begin, + STATE(586), 2, sym_inline_attribute, - sym__inline_attribute_fallback, - ACTIONS(1227), 5, + sym__curly_bracket_span_fallback, + ACTIONS(1157), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1225), 29, + ACTIONS(1155), 29, sym__verbatim_begin, - sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16691,6 +15816,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -16700,22 +15826,22 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [1162] = 5, - ACTIONS(1251), 1, - anon_sym_LBRACE, - STATE(1148), 1, - sym__inline_attribute_begin, - STATE(636), 2, - sym_inline_attribute, - sym__inline_attribute_fallback, - ACTIONS(1227), 5, + [1178] = 4, + ACTIONS(1187), 1, + anon_sym_LBRACE_EQ2, + STATE(451), 1, + sym_raw_inline_attribute, + ACTIONS(1183), 7, + anon_sym_LBRACE_EQ, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1225), 28, + ACTIONS(1181), 29, sym__verbatim_begin, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16724,7 +15850,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, - anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -16734,6 +15859,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -16743,12 +15869,12 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [1210] = 4, - ACTIONS(1257), 1, + [1225] = 4, + ACTIONS(1189), 1, anon_sym_LBRACE_EQ2, - STATE(344), 1, + STATE(390), 1, sym_raw_inline_attribute, - ACTIONS(1255), 7, + ACTIONS(1183), 7, anon_sym_LBRACE_EQ, anon_sym_BSLASH, sym_en_dash, @@ -16756,9 +15882,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1253), 28, + ACTIONS(1181), 29, sym__verbatim_begin, - sym_highlighted_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16776,6 +15902,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -16785,12 +15912,12 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [1256] = 4, - ACTIONS(1259), 1, + [1272] = 4, + ACTIONS(1191), 1, anon_sym_LBRACE_EQ2, - STATE(329), 1, + STATE(477), 1, sym_raw_inline_attribute, - ACTIONS(1255), 7, + ACTIONS(1183), 7, anon_sym_LBRACE_EQ, anon_sym_BSLASH, sym_en_dash, @@ -16798,9 +15925,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1253), 28, + ACTIONS(1181), 29, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16818,6 +15944,8 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -16827,12 +15955,12 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [1302] = 4, - ACTIONS(1261), 1, + [1319] = 4, + ACTIONS(1193), 1, anon_sym_LBRACE_EQ2, - STATE(233), 1, + STATE(302), 1, sym_raw_inline_attribute, - ACTIONS(1255), 7, + ACTIONS(1183), 7, anon_sym_LBRACE_EQ, anon_sym_BSLASH, sym_en_dash, @@ -16840,8 +15968,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1253), 28, + ACTIONS(1181), 29, sym__verbatim_begin, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16859,7 +15988,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -16869,12 +15998,12 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [1348] = 4, - ACTIONS(1263), 1, + [1366] = 4, + ACTIONS(1195), 1, anon_sym_LBRACE_EQ2, - STATE(388), 1, + STATE(434), 1, sym_raw_inline_attribute, - ACTIONS(1255), 7, + ACTIONS(1183), 7, anon_sym_LBRACE_EQ, anon_sym_BSLASH, sym_en_dash, @@ -16882,9 +16011,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1253), 28, + ACTIONS(1181), 29, sym__verbatim_begin, - sym_insert_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16902,6 +16031,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -16911,12 +16041,12 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [1394] = 4, - ACTIONS(1265), 1, + [1413] = 4, + ACTIONS(1197), 1, anon_sym_LBRACE_EQ2, - STATE(432), 1, + STATE(275), 1, sym_raw_inline_attribute, - ACTIONS(1255), 7, + ACTIONS(1183), 7, anon_sym_LBRACE_EQ, anon_sym_BSLASH, sym_en_dash, @@ -16924,9 +16054,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1253), 28, + ACTIONS(1181), 29, sym__verbatim_begin, - sym_delete_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16944,6 +16074,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -16953,12 +16084,12 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [1440] = 4, - ACTIONS(1267), 1, + [1460] = 4, + ACTIONS(1199), 1, anon_sym_LBRACE_EQ2, - STATE(451), 1, + STATE(258), 1, sym_raw_inline_attribute, - ACTIONS(1255), 7, + ACTIONS(1183), 7, anon_sym_LBRACE_EQ, anon_sym_BSLASH, sym_en_dash, @@ -16966,9 +16097,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1253), 28, + ACTIONS(1181), 29, sym__verbatim_begin, - sym_emphasis_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16986,6 +16117,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -16995,12 +16127,12 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [1486] = 4, - ACTIONS(1269), 1, + [1507] = 4, + ACTIONS(1201), 1, anon_sym_LBRACE_EQ2, - STATE(296), 1, + STATE(225), 1, sym_raw_inline_attribute, - ACTIONS(1255), 7, + ACTIONS(1183), 7, anon_sym_LBRACE_EQ, anon_sym_BSLASH, sym_en_dash, @@ -17008,7 +16140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1253), 28, + ACTIONS(1181), 29, sym__verbatim_begin, sym_strong_end, anon_sym_LBRACE_, @@ -17028,6 +16160,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -17037,12 +16170,12 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [1532] = 4, - ACTIONS(1271), 1, + [1554] = 4, + ACTIONS(1203), 1, anon_sym_LBRACE_EQ2, - STATE(257), 1, + STATE(300), 1, sym_raw_inline_attribute, - ACTIONS(1255), 7, + ACTIONS(1183), 7, anon_sym_LBRACE_EQ, anon_sym_BSLASH, sym_en_dash, @@ -17050,9 +16183,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1253), 28, + ACTIONS(1181), 29, sym__verbatim_begin, - sym_superscript_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17070,6 +16203,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -17079,20 +16213,59 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [1578] = 4, - ACTIONS(1273), 1, - anon_sym_LBRACE_EQ2, - STATE(300), 1, - sym_raw_inline_attribute, - ACTIONS(1255), 7, + [1601] = 3, + ACTIONS(1207), 1, + aux_sym_autolink_token1, + ACTIONS(1209), 4, + sym__verbatim_begin, + sym__square_bracket_span_end, + sym__whitespace1, + sym__newline, + ACTIONS(1205), 32, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, anon_sym_BSLASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, sym_en_dash, sym_backslash_escape, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, aux_sym__text_token1, - ACTIONS(1253), 28, + [1645] = 4, + ACTIONS(1215), 1, + aux_sym__text_token1, + STATE(154), 1, + aux_sym__text, + ACTIONS(1213), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE, + ACTIONS(1211), 30, sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, @@ -17103,6 +16276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, + anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -17112,6 +16286,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -17121,22 +16296,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [1624] = 4, - ACTIONS(1275), 1, - anon_sym_LBRACE_EQ2, - STATE(519), 1, - sym_raw_inline_attribute, - ACTIONS(1255), 7, - anon_sym_LBRACE_EQ, + [1691] = 3, + ACTIONS(1218), 1, + sym__non_whitespace_check, + ACTIONS(1205), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1253), 28, + ACTIONS(1209), 30, sym__verbatim_begin, - sym__image_description_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17145,6 +16317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, + anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -17154,6 +16327,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -17163,22 +16337,60 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [1670] = 4, - ACTIONS(1277), 1, - anon_sym_LBRACE_EQ2, - STATE(504), 1, - sym_raw_inline_attribute, - ACTIONS(1255), 7, + [1735] = 3, + ACTIONS(1220), 1, + aux_sym_autolink_token1, + ACTIONS(1209), 4, + sym__verbatim_begin, + sym_superscript_end, + sym__whitespace1, + sym__newline, + ACTIONS(1205), 32, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, anon_sym_BSLASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, sym_en_dash, sym_backslash_escape, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + aux_sym__text_token1, + [1779] = 4, + ACTIONS(1226), 1, + anon_sym_LBRACE, + STATE(464), 1, + sym_comment, + ACTIONS(1224), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1253), 28, + ACTIONS(1222), 30, sym__verbatim_begin, - sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17187,6 +16399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, + anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -17196,6 +16409,8 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -17205,15 +16420,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [1716] = 3, - ACTIONS(1281), 1, + [1825] = 3, + ACTIONS(1228), 1, aux_sym_autolink_token1, - ACTIONS(1283), 4, + ACTIONS(1209), 4, sym__verbatim_begin, - sym_subscript_end, + sym_delete_end, sym__whitespace1, sym__newline, - ACTIONS(1279), 31, + ACTIONS(1205), 32, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17237,6 +16452,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -17245,19 +16461,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, aux_sym__text_token1, - [1759] = 3, - ACTIONS(1285), 1, - sym__non_whitespace_check, - ACTIONS(1279), 6, + [1869] = 3, + ACTIONS(1234), 1, + anon_sym_GT, + ACTIONS(1232), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1283), 29, + ACTIONS(1230), 30, sym__verbatim_begin, - sym__bracketed_text_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17276,6 +16492,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -17285,18 +16502,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [1802] = 4, - ACTIONS(1291), 1, - aux_sym__text_token1, - STATE(169), 1, - aux_sym__text, - ACTIONS(1289), 5, + [1913] = 3, + ACTIONS(1236), 1, + sym__non_whitespace_check, + ACTIONS(1205), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(1287), 29, + aux_sym__text_token1, + ACTIONS(1209), 30, sym__verbatim_begin, sym_delete_end, anon_sym_LBRACE_, @@ -17317,6 +16533,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -17326,17 +16543,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [1847] = 3, - ACTIONS(1298), 1, - anon_sym_GT, - ACTIONS(1296), 6, + [1957] = 3, + ACTIONS(1238), 1, + sym__non_whitespace_check, + ACTIONS(1205), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1294), 29, + ACTIONS(1209), 30, sym__verbatim_begin, sym_delete_end, anon_sym_LBRACE_, @@ -17357,6 +16574,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -17366,19 +16584,20 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [1890] = 3, - ACTIONS(1300), 1, - anon_sym_GT, - ACTIONS(1296), 6, + [2001] = 4, + ACTIONS(1240), 1, + aux_sym__text_token1, + STATE(162), 1, + aux_sym__text, + ACTIONS(1213), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, - aux_sym__text_token1, - ACTIONS(1294), 29, + ACTIONS(1211), 30, sym__verbatim_begin, - sym__bracketed_text_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17397,6 +16616,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -17406,19 +16626,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [1933] = 3, - ACTIONS(1302), 1, - sym__non_whitespace_check, - ACTIONS(1279), 6, + [2047] = 3, + ACTIONS(1243), 1, + anon_sym_GT, + ACTIONS(1232), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1283), 29, + ACTIONS(1230), 30, sym__verbatim_begin, - sym__bracketed_text_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17437,6 +16657,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -17446,19 +16667,20 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [1976] = 4, - ACTIONS(1308), 1, - anon_sym_LBRACE, - STATE(463), 1, - sym_comment, - ACTIONS(1306), 5, + [2091] = 4, + ACTIONS(1245), 1, + aux_sym__text_token1, + STATE(164), 1, + aux_sym__text, + ACTIONS(1213), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - aux_sym__text_token1, - ACTIONS(1304), 29, + anon_sym_LBRACE, + ACTIONS(1211), 30, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17477,7 +16699,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -17487,15 +16709,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [2021] = 3, - ACTIONS(1310), 1, + [2137] = 3, + ACTIONS(1248), 1, aux_sym_autolink_token1, - ACTIONS(1283), 4, + ACTIONS(1209), 4, sym__verbatim_begin, - sym_delete_end, + sym_insert_end, sym__whitespace1, sym__newline, - ACTIONS(1279), 31, + ACTIONS(1205), 32, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17519,6 +16741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -17527,20 +16750,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, aux_sym__text_token1, - [2064] = 4, - ACTIONS(1312), 1, - anon_sym_LBRACE, - STATE(547), 1, - sym_comment, - ACTIONS(1306), 5, + [2181] = 3, + ACTIONS(1250), 1, + sym__non_whitespace_check, + ACTIONS(1205), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1304), 29, + ACTIONS(1209), 30, sym__verbatim_begin, - sym__bracketed_text_end, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17559,6 +16781,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -17568,19 +16791,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [2109] = 3, - ACTIONS(1314), 1, + [2225] = 3, + ACTIONS(1252), 1, sym__non_whitespace_check, - ACTIONS(1279), 6, + ACTIONS(1205), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1283), 29, + ACTIONS(1209), 30, sym__verbatim_begin, - sym_delete_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17599,6 +16822,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -17608,19 +16832,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [2152] = 3, - ACTIONS(1316), 1, + [2269] = 3, + ACTIONS(1254), 1, sym__non_whitespace_check, - ACTIONS(1279), 6, + ACTIONS(1205), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1283), 29, + ACTIONS(1209), 30, sym__verbatim_begin, - sym_delete_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17639,6 +16863,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -17648,15 +16873,20 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [2195] = 3, - ACTIONS(1318), 1, - aux_sym_autolink_token1, - ACTIONS(1283), 4, + [2313] = 4, + ACTIONS(1256), 1, + aux_sym__text_token1, + STATE(169), 1, + aux_sym__text, + ACTIONS(1213), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE, + ACTIONS(1211), 30, sym__verbatim_begin, - sym__image_description_end, - sym__whitespace1, - sym__newline, - ACTIONS(1279), 31, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17668,18 +16898,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, - sym_en_dash, - sym_backslash_escape, anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -17687,20 +16913,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, + sym__whitespace1, + sym__newline, + [2359] = 4, + ACTIONS(1259), 1, aux_sym__text_token1, - [2238] = 3, - ACTIONS(1320), 1, - sym__non_whitespace_check, - ACTIONS(1279), 6, + STATE(170), 1, + aux_sym__text, + ACTIONS(1213), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, - aux_sym__text_token1, - ACTIONS(1283), 29, + ACTIONS(1211), 30, sym__verbatim_begin, - sym_highlighted_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17719,6 +16947,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -17728,20 +16957,20 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [2281] = 4, - ACTIONS(1322), 1, + [2405] = 4, + ACTIONS(1262), 1, aux_sym__text_token1, - STATE(180), 1, + STATE(171), 1, aux_sym__text, - ACTIONS(1289), 5, + ACTIONS(1213), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(1287), 29, + ACTIONS(1211), 30, sym__verbatim_begin, - sym_insert_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17760,6 +16989,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -17769,19 +16999,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [2326] = 3, - ACTIONS(1325), 1, + [2451] = 3, + ACTIONS(1265), 1, anon_sym_GT, - ACTIONS(1296), 6, + ACTIONS(1232), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1294), 29, + ACTIONS(1230), 30, sym__verbatim_begin, - sym_insert_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17800,6 +17030,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -17809,19 +17040,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [2369] = 3, - ACTIONS(1327), 1, - anon_sym_GT, - ACTIONS(1296), 6, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE, - aux_sym__text_token1, - ACTIONS(1294), 29, + [2495] = 3, + ACTIONS(1267), 1, + aux_sym_autolink_token1, + ACTIONS(1209), 4, sym__verbatim_begin, sym_emphasis_end, + sym__whitespace1, + sym__newline, + ACTIONS(1205), 32, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17833,13 +17060,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, + sym_en_dash, + sym_backslash_escape, anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -17847,21 +17080,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - sym__whitespace1, - sym__newline, - [2412] = 3, - ACTIONS(1329), 1, + aux_sym__text_token1, + [2539] = 3, + ACTIONS(1269), 1, sym__non_whitespace_check, - ACTIONS(1279), 6, + ACTIONS(1205), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1283), 29, + ACTIONS(1209), 30, sym__verbatim_begin, - sym__image_description_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17880,6 +17112,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -17889,20 +17122,20 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [2455] = 4, - ACTIONS(1331), 1, + [2583] = 4, + ACTIONS(1271), 1, anon_sym_LBRACE, - STATE(419), 1, + STATE(377), 1, sym_comment, - ACTIONS(1306), 5, + ACTIONS(1224), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1304), 29, + ACTIONS(1222), 30, sym__verbatim_begin, - sym_delete_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17921,6 +17154,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -17930,19 +17164,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [2500] = 3, - ACTIONS(1333), 1, - sym__non_whitespace_check, - ACTIONS(1279), 6, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE, - aux_sym__text_token1, - ACTIONS(1283), 29, + [2629] = 3, + ACTIONS(1273), 1, + aux_sym_autolink_token1, + ACTIONS(1209), 4, sym__verbatim_begin, - sym_strong_end, + sym_highlighted_end, + sym__whitespace1, + sym__newline, + ACTIONS(1205), 32, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17954,13 +17184,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, + sym_en_dash, + sym_backslash_escape, anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -17968,21 +17204,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - sym__whitespace1, - sym__newline, - [2543] = 3, - ACTIONS(1335), 1, + aux_sym__text_token1, + [2673] = 3, + ACTIONS(1275), 1, sym__non_whitespace_check, - ACTIONS(1279), 6, + ACTIONS(1205), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1283), 29, + ACTIONS(1209), 30, sym__verbatim_begin, - sym_strong_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18001,6 +17236,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -18010,19 +17246,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [2586] = 3, - ACTIONS(1337), 1, + [2717] = 3, + ACTIONS(1277), 1, sym__non_whitespace_check, - ACTIONS(1279), 6, + ACTIONS(1205), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1283), 29, + ACTIONS(1209), 30, sym__verbatim_begin, - sym__image_description_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18041,6 +17277,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -18050,15 +17287,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [2629] = 3, - ACTIONS(1339), 1, - aux_sym_autolink_token1, - ACTIONS(1283), 4, + [2761] = 3, + ACTIONS(1279), 1, + sym__non_whitespace_check, + ACTIONS(1205), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE, + aux_sym__text_token1, + ACTIONS(1209), 30, sym__verbatim_begin, - sym_strong_end, - sym__whitespace1, - sym__newline, - ACTIONS(1279), 31, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18070,18 +17311,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, - sym_en_dash, - sym_backslash_escape, anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -18089,16 +17326,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - aux_sym__text_token1, - [2672] = 3, - ACTIONS(1341), 1, - aux_sym_autolink_token1, - ACTIONS(1283), 4, - sym__verbatim_begin, - sym_insert_end, sym__whitespace1, sym__newline, - ACTIONS(1279), 31, + [2805] = 4, + ACTIONS(1281), 1, + anon_sym_LBRACE_EQ2, + STATE(559), 1, + sym_raw_inline_attribute, + ACTIONS(1183), 7, + anon_sym_LBRACE_EQ, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE, + aux_sym__text_token1, + ACTIONS(1181), 28, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18107,21 +17351,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, - anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, - sym_en_dash, - sym_backslash_escape, anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -18129,16 +17368,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - aux_sym__text_token1, - [2715] = 3, - ACTIONS(1343), 1, - aux_sym_autolink_token1, - ACTIONS(1283), 4, - sym__verbatim_begin, - sym__bracketed_text_end, sym__whitespace1, sym__newline, - ACTIONS(1279), 31, + [2851] = 3, + ACTIONS(1283), 1, + anon_sym_GT, + ACTIONS(1232), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE, + aux_sym__text_token1, + ACTIONS(1230), 30, + sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18150,18 +17394,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, - sym_en_dash, - sym_backslash_escape, anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -18169,20 +17409,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - aux_sym__text_token1, - [2758] = 3, - ACTIONS(1345), 1, - sym__non_whitespace_check, - ACTIONS(1279), 6, + sym__whitespace1, + sym__newline, + [2895] = 3, + ACTIONS(1285), 1, + anon_sym_GT, + ACTIONS(1232), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1283), 29, + ACTIONS(1230), 30, sym__verbatim_begin, - sym_insert_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18201,6 +17442,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -18210,20 +17452,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [2801] = 4, - ACTIONS(1347), 1, - anon_sym_LBRACE, - STATE(247), 1, - sym_comment, - ACTIONS(1306), 5, + [2939] = 3, + ACTIONS(1287), 1, + anon_sym_GT, + ACTIONS(1232), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1304), 29, + ACTIONS(1230), 30, sym__verbatim_begin, - sym_superscript_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18242,6 +17483,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -18251,19 +17493,20 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [2846] = 3, - ACTIONS(1349), 1, - sym__non_whitespace_check, - ACTIONS(1279), 6, + [2983] = 4, + ACTIONS(1289), 1, + anon_sym_LBRACE, + STATE(421), 1, + sym_comment, + ACTIONS(1224), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1283), 29, + ACTIONS(1222), 30, sym__verbatim_begin, - sym_emphasis_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18282,6 +17525,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -18291,18 +17535,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [2889] = 4, - ACTIONS(1351), 1, - aux_sym__text_token1, - STATE(194), 1, - aux_sym__text, - ACTIONS(1289), 5, + [3029] = 3, + ACTIONS(1291), 1, + sym__non_whitespace_check, + ACTIONS(1205), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(1287), 29, + aux_sym__text_token1, + ACTIONS(1209), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -18323,6 +17566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -18332,19 +17576,20 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [2934] = 3, - ACTIONS(1354), 1, - sym__non_whitespace_check, - ACTIONS(1279), 6, + [3073] = 4, + ACTIONS(1293), 1, + anon_sym_LBRACE, + STATE(333), 1, + sym_comment, + ACTIONS(1224), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1283), 29, + ACTIONS(1222), 30, sym__verbatim_begin, - sym_insert_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18363,6 +17608,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -18372,18 +17618,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [2977] = 3, - ACTIONS(1356), 1, - anon_sym_GT, - ACTIONS(1296), 6, + [3119] = 3, + ACTIONS(1295), 1, + sym__non_whitespace_check, + ACTIONS(1205), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1294), 29, + ACTIONS(1209), 30, sym__verbatim_begin, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18402,7 +17649,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -18412,19 +17659,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [3020] = 3, - ACTIONS(1358), 1, + [3163] = 3, + ACTIONS(1297), 1, sym__non_whitespace_check, - ACTIONS(1279), 6, + ACTIONS(1205), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1283), 29, + ACTIONS(1209), 30, sym__verbatim_begin, - sym_emphasis_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18443,6 +17690,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -18452,19 +17700,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [3063] = 3, - ACTIONS(1360), 1, - anon_sym_GT, - ACTIONS(1296), 6, + [3207] = 3, + ACTIONS(1299), 1, + sym__non_whitespace_check, + ACTIONS(1205), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1294), 29, + ACTIONS(1209), 30, sym__verbatim_begin, - sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18483,6 +17730,8 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -18492,20 +17741,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [3106] = 4, - ACTIONS(1362), 1, - aux_sym__text_token1, - STATE(199), 1, - aux_sym__text, - ACTIONS(1289), 5, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE, - ACTIONS(1287), 29, + [3251] = 3, + ACTIONS(1301), 1, + aux_sym_autolink_token1, + ACTIONS(1209), 4, sym__verbatim_begin, - sym_highlighted_end, + sym_strong_end, + sym__whitespace1, + sym__newline, + ACTIONS(1205), 32, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18517,13 +17761,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, + sym_en_dash, + sym_backslash_escape, anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -18531,21 +17781,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - sym__whitespace1, - sym__newline, - [3151] = 3, - ACTIONS(1365), 1, - anon_sym_GT, - ACTIONS(1296), 6, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1294), 29, + [3295] = 3, + ACTIONS(1303), 1, + aux_sym_autolink_token1, + ACTIONS(1209), 4, sym__verbatim_begin, - sym_highlighted_end, + sym_subscript_end, + sym__whitespace1, + sym__newline, + ACTIONS(1205), 32, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18557,13 +17802,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, + sym_en_dash, + sym_backslash_escape, anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -18571,22 +17822,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - sym__whitespace1, - sym__newline, - [3194] = 4, - ACTIONS(1367), 1, aux_sym__text_token1, - STATE(201), 1, - aux_sym__text, - ACTIONS(1289), 5, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE, - ACTIONS(1287), 29, + [3339] = 3, + ACTIONS(1305), 1, + aux_sym_autolink_token1, + ACTIONS(1209), 3, sym__verbatim_begin, - sym_emphasis_end, + sym__whitespace1, + sym__newline, + ACTIONS(1205), 33, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18598,13 +17842,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, + sym_en_dash, + sym_backslash_escape, anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -18612,22 +17863,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - sym__whitespace1, - sym__newline, - [3239] = 4, - ACTIONS(1370), 1, aux_sym__text_token1, - STATE(202), 1, - aux_sym__text, - ACTIONS(1289), 5, + [3383] = 3, + ACTIONS(1307), 1, + sym__non_whitespace_check, + ACTIONS(1205), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(1287), 29, + aux_sym__text_token1, + ACTIONS(1209), 30, sym__verbatim_begin, - sym__bracketed_text_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18646,6 +17895,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -18655,20 +17905,20 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [3284] = 4, - ACTIONS(1373), 1, + [3427] = 4, + ACTIONS(1309), 1, anon_sym_LBRACE, - STATE(375), 1, + STATE(248), 1, sym_comment, - ACTIONS(1306), 5, + ACTIONS(1224), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1304), 29, + ACTIONS(1222), 30, sym__verbatim_begin, - sym_insert_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18687,6 +17937,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -18696,15 +17947,20 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [3329] = 3, - ACTIONS(1375), 1, - aux_sym_autolink_token1, - ACTIONS(1283), 4, + [3473] = 4, + ACTIONS(1311), 1, + anon_sym_LBRACE, + STATE(490), 1, + sym_comment, + ACTIONS(1224), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1222), 30, sym__verbatim_begin, - sym_highlighted_end, - sym__whitespace1, - sym__newline, - ACTIONS(1279), 31, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18716,18 +17972,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, - sym_en_dash, - sym_backslash_escape, anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -18735,16 +17987,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - aux_sym__text_token1, - [3372] = 3, - ACTIONS(1377), 1, - aux_sym_autolink_token1, - ACTIONS(1283), 4, - sym__verbatim_begin, - sym_emphasis_end, sym__whitespace1, sym__newline, - ACTIONS(1279), 31, + [3519] = 4, + ACTIONS(1313), 1, + anon_sym_LBRACE, + STATE(256), 1, + sym_comment, + ACTIONS(1224), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1222), 30, + sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18756,18 +18014,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, - sym_en_dash, - sym_backslash_escape, anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -18775,21 +18029,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - aux_sym__text_token1, - [3415] = 4, - ACTIONS(1379), 1, - aux_sym__text_token1, - STATE(206), 1, - aux_sym__text, - ACTIONS(1289), 5, + sym__whitespace1, + sym__newline, + [3565] = 3, + ACTIONS(1315), 1, + sym__non_whitespace_check, + ACTIONS(1205), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(1287), 29, + aux_sym__text_token1, + ACTIONS(1209), 30, sym__verbatim_begin, - sym_strong_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18808,6 +18062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -18817,61 +18072,20 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [3460] = 4, - ACTIONS(1382), 1, - anon_sym_LBRACE_EQ2, - STATE(601), 1, - sym_raw_inline_attribute, - ACTIONS(1255), 7, - anon_sym_LBRACE_EQ, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE, + [3609] = 4, + ACTIONS(1317), 1, aux_sym__text_token1, - ACTIONS(1253), 27, - sym__verbatim_begin, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - sym_symbol, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - sym__whitespace1, - sym__newline, - [3505] = 4, - ACTIONS(1384), 1, - anon_sym_LBRACE, - STATE(506), 1, - sym_comment, - ACTIONS(1306), 5, + STATE(198), 1, + aux_sym__text, + ACTIONS(1213), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - aux_sym__text_token1, - ACTIONS(1304), 29, + anon_sym_LBRACE, + ACTIONS(1211), 30, sym__verbatim_begin, - sym__image_description_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18890,6 +18104,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -18899,14 +18114,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [3550] = 3, - ACTIONS(1386), 1, + [3655] = 3, + ACTIONS(1320), 1, aux_sym_autolink_token1, - ACTIONS(1283), 3, + ACTIONS(1209), 4, sym__verbatim_begin, + ts_builtin_sym_end, sym__whitespace1, sym__newline, - ACTIONS(1279), 32, + ACTIONS(1205), 32, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18930,7 +18146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -18939,19 +18155,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, aux_sym__text_token1, - [3593] = 3, - ACTIONS(1388), 1, - sym__non_whitespace_check, - ACTIONS(1279), 6, + [3699] = 3, + ACTIONS(1322), 1, + anon_sym_GT, + ACTIONS(1232), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1283), 29, + ACTIONS(1230), 30, sym__verbatim_begin, - sym_highlighted_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18970,6 +18186,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -18979,20 +18196,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [3636] = 4, - ACTIONS(1390), 1, - aux_sym__text_token1, - STATE(211), 1, - aux_sym__text, - ACTIONS(1289), 5, + [3743] = 3, + ACTIONS(1324), 1, + anon_sym_GT, + ACTIONS(1232), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(1287), 29, + aux_sym__text_token1, + ACTIONS(1230), 30, sym__verbatim_begin, - sym__image_description_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19011,6 +18227,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -19020,18 +18237,20 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [3681] = 3, - ACTIONS(1393), 1, - sym__non_whitespace_check, - ACTIONS(1279), 6, + [3787] = 4, + ACTIONS(1326), 1, + anon_sym_LBRACE, + STATE(289), 1, + sym_comment, + ACTIONS(1224), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1283), 29, + ACTIONS(1222), 30, sym__verbatim_begin, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19050,7 +18269,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -19060,20 +18279,20 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [3724] = 4, - ACTIONS(1395), 1, + [3833] = 4, + ACTIONS(1328), 1, aux_sym__text_token1, - STATE(213), 1, + STATE(203), 1, aux_sym__text, - ACTIONS(1289), 5, + ACTIONS(1213), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(1287), 29, + ACTIONS(1211), 30, sym__verbatim_begin, - sym_subscript_end, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19092,6 +18311,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -19101,19 +18321,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [3769] = 3, - ACTIONS(1398), 1, + [3879] = 3, + ACTIONS(1331), 1, anon_sym_GT, - ACTIONS(1296), 6, + ACTIONS(1232), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1294), 29, + ACTIONS(1230), 30, sym__verbatim_begin, - sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19132,6 +18351,8 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -19141,17 +18362,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [3812] = 3, - ACTIONS(1400), 1, - sym__non_whitespace_check, - ACTIONS(1279), 6, + [3923] = 4, + ACTIONS(1333), 1, + aux_sym__text_token1, + STATE(205), 1, + aux_sym__text, + ACTIONS(1213), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, - aux_sym__text_token1, - ACTIONS(1283), 29, + ACTIONS(1211), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -19172,6 +18394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -19181,19 +18404,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [3855] = 3, - ACTIONS(1402), 1, - anon_sym_GT, - ACTIONS(1296), 6, + [3969] = 3, + ACTIONS(1336), 1, + sym__non_whitespace_check, + ACTIONS(1205), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1294), 29, + ACTIONS(1209), 30, sym__verbatim_begin, - sym__image_description_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19212,6 +18435,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -19221,20 +18445,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [3898] = 4, - ACTIONS(1404), 1, - anon_sym_LBRACE, - STATE(331), 1, - sym_comment, - ACTIONS(1306), 5, + [4013] = 3, + ACTIONS(1338), 1, + sym__non_whitespace_check, + ACTIONS(1205), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1304), 29, + ACTIONS(1209), 30, sym__verbatim_begin, - sym_highlighted_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19253,6 +18476,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -19262,19 +18486,20 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [3943] = 3, - ACTIONS(1406), 1, - sym__non_whitespace_check, - ACTIONS(1279), 6, + [4057] = 4, + ACTIONS(1340), 1, + aux_sym__text_token1, + STATE(208), 1, + aux_sym__text, + ACTIONS(1213), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, - aux_sym__text_token1, - ACTIONS(1283), 29, + ACTIONS(1211), 30, sym__verbatim_begin, - ts_builtin_sym_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19293,6 +18518,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -19302,17 +18528,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [3986] = 3, - ACTIONS(1408), 1, + [4103] = 3, + ACTIONS(1343), 1, sym__non_whitespace_check, - ACTIONS(1279), 6, + ACTIONS(1205), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1283), 29, + ACTIONS(1209), 30, sym__verbatim_begin, ts_builtin_sym_end, anon_sym_LBRACE_, @@ -19333,6 +18559,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -19342,19 +18569,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4029] = 3, - ACTIONS(1410), 1, - sym__non_whitespace_check, - ACTIONS(1279), 6, + [4147] = 3, + ACTIONS(1345), 1, + anon_sym_GT, + ACTIONS(1232), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1283), 29, + ACTIONS(1230), 30, sym__verbatim_begin, - sym_subscript_end, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19373,6 +18600,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -19382,20 +18610,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4072] = 4, - ACTIONS(1412), 1, - aux_sym__text_token1, - STATE(221), 1, - aux_sym__text, - ACTIONS(1289), 5, + [4191] = 3, + ACTIONS(1347), 1, + sym__non_whitespace_check, + ACTIONS(1205), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(1287), 29, + aux_sym__text_token1, + ACTIONS(1209), 30, sym__verbatim_begin, - sym_superscript_end, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19414,6 +18641,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -19423,19 +18651,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4117] = 3, - ACTIONS(1415), 1, - anon_sym_GT, - ACTIONS(1296), 6, + [4235] = 2, + ACTIONS(1351), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1294), 29, + ACTIONS(1349), 30, sym__verbatim_begin, - sym_superscript_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19454,6 +18680,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -19463,15 +18690,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4160] = 3, - ACTIONS(1417), 1, - aux_sym_autolink_token1, - ACTIONS(1283), 4, + [4276] = 2, + ACTIONS(1355), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE, + aux_sym__text_token1, + ACTIONS(1353), 30, sym__verbatim_begin, - sym_superscript_end, - sym__whitespace1, - sym__newline, - ACTIONS(1279), 31, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19483,18 +18712,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, - sym_en_dash, - sym_backslash_escape, anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -19502,21 +18727,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - aux_sym__text_token1, - [4203] = 4, - ACTIONS(1419), 1, + sym__whitespace1, + sym__newline, + [4317] = 4, + ACTIONS(1357), 1, anon_sym_LBRACE, - STATE(287), 1, + STATE(547), 1, sym_comment, - ACTIONS(1306), 5, + ACTIONS(1224), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1304), 29, + ACTIONS(1222), 29, sym__verbatim_begin, - sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19535,6 +18760,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -19544,20 +18770,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4248] = 4, - ACTIONS(1421), 1, - aux_sym__text_token1, - STATE(225), 1, - aux_sym__text, - ACTIONS(1289), 5, + [4362] = 2, + ACTIONS(1361), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(1287), 29, + aux_sym__text_token1, + ACTIONS(1359), 30, sym__verbatim_begin, - ts_builtin_sym_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19576,6 +18799,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -19585,19 +18809,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4293] = 3, - ACTIONS(1424), 1, - anon_sym_GT, - ACTIONS(1296), 6, + [4403] = 2, + ACTIONS(1365), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1294), 29, + ACTIONS(1363), 30, sym__verbatim_begin, - ts_builtin_sym_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19616,6 +18838,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -19625,20 +18848,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4336] = 4, - ACTIONS(1426), 1, - anon_sym_LBRACE, - STATE(271), 1, - sym_comment, - ACTIONS(1306), 5, + [4444] = 2, + ACTIONS(1369), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1304), 29, + ACTIONS(1367), 30, sym__verbatim_begin, - ts_builtin_sym_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19657,6 +18877,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -19666,19 +18887,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4381] = 3, - ACTIONS(1428), 1, - sym__non_whitespace_check, - ACTIONS(1279), 6, + [4485] = 2, + ACTIONS(1373), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1283), 29, + ACTIONS(1371), 30, sym__verbatim_begin, - sym_subscript_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19697,6 +18916,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -19706,19 +18926,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4424] = 3, - ACTIONS(1430), 1, - sym__non_whitespace_check, - ACTIONS(1279), 6, + [4526] = 2, + ACTIONS(1377), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1283), 29, + ACTIONS(1375), 30, sym__verbatim_begin, - sym_superscript_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19737,6 +18955,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -19746,19 +18965,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4467] = 3, - ACTIONS(1432), 1, - sym__non_whitespace_check, - ACTIONS(1279), 6, + [4567] = 2, + ACTIONS(1381), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1283), 29, + ACTIONS(1379), 30, sym__verbatim_begin, - sym_superscript_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19777,6 +18994,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -19786,15 +19004,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4510] = 3, - ACTIONS(1434), 1, - aux_sym_autolink_token1, - ACTIONS(1283), 4, + [4608] = 2, + ACTIONS(1385), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE, + aux_sym__text_token1, + ACTIONS(1383), 30, sym__verbatim_begin, - ts_builtin_sym_end, - sym__whitespace1, - sym__newline, - ACTIONS(1279), 31, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19806,18 +19026,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, - sym_en_dash, - sym_backslash_escape, anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -19825,18 +19041,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - aux_sym__text_token1, - [4553] = 2, - ACTIONS(1438), 6, + sym__whitespace1, + sym__newline, + [4649] = 2, + ACTIONS(1389), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1436), 29, + ACTIONS(1387), 30, sym__verbatim_begin, - sym_emphasis_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19855,6 +19072,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -19864,16 +19082,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4593] = 2, - ACTIONS(1442), 6, + [4690] = 2, + ACTIONS(1393), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1440), 29, + ACTIONS(1391), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19892,7 +19111,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -19902,15 +19121,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4633] = 2, - ACTIONS(1446), 6, + [4731] = 2, + ACTIONS(1397), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1444), 29, + ACTIONS(1395), 30, sym__verbatim_begin, sym_strong_end, anon_sym_LBRACE_, @@ -19931,6 +19150,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -19940,15 +19160,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4673] = 2, - ACTIONS(1450), 6, + [4772] = 2, + ACTIONS(1401), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1448), 29, + ACTIONS(1399), 30, sym__verbatim_begin, sym_strong_end, anon_sym_LBRACE_, @@ -19969,6 +19189,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -19978,17 +19199,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4713] = 2, - ACTIONS(1454), 6, + [4813] = 2, + ACTIONS(1405), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1452), 29, + ACTIONS(1403), 30, sym__verbatim_begin, - sym_strong_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20007,6 +19228,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -20016,15 +19238,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4753] = 2, - ACTIONS(1438), 6, + [4854] = 2, + ACTIONS(1409), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1436), 29, + ACTIONS(1407), 30, sym__verbatim_begin, sym_strong_end, anon_sym_LBRACE_, @@ -20045,6 +19267,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -20054,19 +19277,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4793] = 4, - ACTIONS(1456), 1, - anon_sym_LBRACE, - STATE(589), 1, - sym_comment, - ACTIONS(1306), 5, + [4895] = 2, + ACTIONS(1355), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1304), 28, + ACTIONS(1353), 30, sym__verbatim_begin, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20085,6 +19306,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -20094,17 +19316,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4837] = 2, - ACTIONS(1460), 6, + [4936] = 2, + ACTIONS(1413), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1458), 29, + ACTIONS(1411), 30, sym__verbatim_begin, - ts_builtin_sym_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20123,6 +19345,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -20132,15 +19355,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4877] = 2, - ACTIONS(1464), 6, + [4977] = 2, + ACTIONS(1417), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1462), 29, + ACTIONS(1415), 30, sym__verbatim_begin, sym_strong_end, anon_sym_LBRACE_, @@ -20161,6 +19384,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -20170,18 +19394,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4917] = 3, - ACTIONS(1466), 1, - sym__verbatim_begin, - ACTIONS(1279), 6, + [5018] = 2, + ACTIONS(1421), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1283), 28, - sym_superscript_end, + ACTIONS(1419), 30, + sym__verbatim_begin, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20200,6 +19423,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -20209,17 +19433,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4959] = 2, - ACTIONS(1460), 6, + [5059] = 2, + ACTIONS(1425), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1458), 29, + ACTIONS(1423), 30, sym__verbatim_begin, - sym_superscript_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20238,6 +19462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -20247,17 +19472,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4999] = 2, - ACTIONS(1471), 6, + [5100] = 2, + ACTIONS(1429), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1469), 29, + ACTIONS(1427), 30, sym__verbatim_begin, - sym_superscript_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20276,6 +19501,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -20285,17 +19511,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5039] = 2, - ACTIONS(1296), 6, + [5141] = 2, + ACTIONS(1433), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1294), 29, + ACTIONS(1431), 30, sym__verbatim_begin, - sym_superscript_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20314,6 +19540,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -20323,17 +19550,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5079] = 2, - ACTIONS(1475), 6, + [5182] = 2, + ACTIONS(1437), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1473), 29, + ACTIONS(1435), 30, sym__verbatim_begin, - sym_superscript_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20352,6 +19579,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -20361,17 +19589,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5119] = 2, - ACTIONS(1471), 6, + [5223] = 2, + ACTIONS(1441), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1469), 29, + ACTIONS(1439), 30, sym__verbatim_begin, - ts_builtin_sym_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20390,6 +19618,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -20399,17 +19628,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5159] = 2, - ACTIONS(1479), 6, + [5264] = 2, + ACTIONS(1445), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1477), 29, + ACTIONS(1443), 30, sym__verbatim_begin, - sym_superscript_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20428,6 +19657,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -20437,17 +19667,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5199] = 2, - ACTIONS(1483), 6, + [5305] = 4, + ACTIONS(1447), 1, + anon_sym_LBRACE, + STATE(215), 1, + sym_comment, + ACTIONS(1224), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1481), 29, + ACTIONS(1222), 29, sym__verbatim_begin, - sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20466,6 +19698,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -20475,17 +19708,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5239] = 2, - ACTIONS(1487), 6, + [5350] = 2, + ACTIONS(1451), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1485), 29, + ACTIONS(1449), 30, sym__verbatim_begin, - sym_superscript_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20504,6 +19737,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -20513,17 +19747,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5279] = 2, - ACTIONS(1491), 6, + [5391] = 2, + ACTIONS(1232), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1489), 29, + ACTIONS(1230), 30, sym__verbatim_begin, - sym_superscript_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20542,6 +19776,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -20551,17 +19786,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5319] = 2, - ACTIONS(1495), 6, + [5432] = 2, + ACTIONS(1455), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1493), 29, + ACTIONS(1453), 30, sym__verbatim_begin, - sym_superscript_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20580,6 +19815,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -20589,16 +19825,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5359] = 2, - ACTIONS(1499), 6, + [5473] = 3, + ACTIONS(1457), 1, + sym__verbatim_begin, + ACTIONS(1205), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1497), 29, - sym__verbatim_begin, + ACTIONS(1209), 29, sym_superscript_end, anon_sym_LBRACE_, anon_sym__, @@ -20618,6 +19855,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -20627,15 +19865,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5399] = 2, - ACTIONS(1503), 6, + [5516] = 2, + ACTIONS(1393), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1501), 29, + ACTIONS(1391), 30, sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, @@ -20656,6 +19894,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -20665,15 +19904,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5439] = 2, - ACTIONS(1507), 6, + [5557] = 2, + ACTIONS(1405), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1505), 29, + ACTIONS(1403), 30, sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, @@ -20694,6 +19933,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -20703,17 +19943,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5479] = 2, - ACTIONS(1296), 6, + [5598] = 2, + ACTIONS(1232), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1294), 29, + ACTIONS(1230), 30, sym__verbatim_begin, - ts_builtin_sym_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20732,6 +19972,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -20741,15 +19982,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5519] = 2, - ACTIONS(1511), 6, + [5639] = 2, + ACTIONS(1351), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1509), 29, + ACTIONS(1349), 30, sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, @@ -20770,6 +20011,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -20779,17 +20021,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5559] = 2, - ACTIONS(1442), 6, + [5680] = 2, + ACTIONS(1351), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1440), 29, + ACTIONS(1349), 30, sym__verbatim_begin, - sym_superscript_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20808,6 +20050,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -20817,17 +20060,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5599] = 2, - ACTIONS(1475), 6, + [5721] = 2, + ACTIONS(1361), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1473), 29, + ACTIONS(1359), 30, sym__verbatim_begin, - ts_builtin_sym_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20846,6 +20089,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -20855,15 +20099,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5639] = 2, - ACTIONS(1515), 6, + [5762] = 2, + ACTIONS(1365), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1513), 29, + ACTIONS(1363), 30, sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, @@ -20884,6 +20128,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -20893,15 +20138,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5679] = 2, - ACTIONS(1519), 6, + [5803] = 2, + ACTIONS(1369), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1517), 29, + ACTIONS(1367), 30, sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, @@ -20922,6 +20167,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -20931,15 +20177,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5719] = 2, - ACTIONS(1523), 6, + [5844] = 2, + ACTIONS(1373), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1521), 29, + ACTIONS(1371), 30, sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, @@ -20960,6 +20206,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -20969,15 +20216,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5759] = 2, - ACTIONS(1527), 6, + [5885] = 2, + ACTIONS(1377), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1525), 29, + ACTIONS(1375), 30, sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, @@ -20998,6 +20245,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -21007,15 +20255,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5799] = 2, - ACTIONS(1531), 6, + [5926] = 2, + ACTIONS(1381), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1529), 29, + ACTIONS(1379), 30, sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, @@ -21036,6 +20284,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -21045,15 +20294,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5839] = 2, - ACTIONS(1535), 6, + [5967] = 2, + ACTIONS(1385), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1533), 29, + ACTIONS(1383), 30, sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, @@ -21074,6 +20323,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -21083,15 +20333,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5879] = 2, - ACTIONS(1539), 6, + [6008] = 2, + ACTIONS(1389), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1537), 29, + ACTIONS(1387), 30, sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, @@ -21112,6 +20362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -21121,17 +20372,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5919] = 2, - ACTIONS(1543), 6, + [6049] = 2, + ACTIONS(1361), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1541), 29, + ACTIONS(1359), 30, sym__verbatim_begin, - sym_superscript_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21150,6 +20401,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -21159,15 +20411,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5959] = 2, - ACTIONS(1446), 6, + [6090] = 2, + ACTIONS(1397), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1444), 29, + ACTIONS(1395), 30, sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, @@ -21188,6 +20440,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -21197,15 +20450,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5999] = 2, - ACTIONS(1450), 6, + [6131] = 2, + ACTIONS(1401), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1448), 29, + ACTIONS(1399), 30, sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, @@ -21226,6 +20479,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -21235,17 +20489,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6039] = 2, - ACTIONS(1454), 6, + [6172] = 2, + ACTIONS(1365), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1452), 29, + ACTIONS(1363), 30, sym__verbatim_begin, - sym_superscript_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21264,6 +20518,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -21273,15 +20528,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6079] = 2, - ACTIONS(1438), 6, + [6213] = 2, + ACTIONS(1409), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1436), 29, + ACTIONS(1407), 30, sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, @@ -21302,6 +20557,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -21311,17 +20567,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6119] = 2, - ACTIONS(1479), 6, + [6254] = 2, + ACTIONS(1355), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1477), 29, + ACTIONS(1353), 30, sym__verbatim_begin, - ts_builtin_sym_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21340,6 +20596,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -21349,17 +20606,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6159] = 2, - ACTIONS(1483), 6, + [6295] = 2, + ACTIONS(1413), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1481), 29, + ACTIONS(1411), 30, sym__verbatim_begin, - ts_builtin_sym_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21378,6 +20635,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -21387,15 +20645,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6199] = 2, - ACTIONS(1464), 6, + [6336] = 2, + ACTIONS(1417), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1462), 29, + ACTIONS(1415), 30, sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, @@ -21416,6 +20674,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -21425,17 +20684,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6239] = 2, - ACTIONS(1515), 6, + [6377] = 2, + ACTIONS(1421), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1513), 29, + ACTIONS(1419), 30, sym__verbatim_begin, - sym_strong_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21454,6 +20713,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -21463,17 +20723,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6279] = 2, - ACTIONS(1539), 6, + [6418] = 2, + ACTIONS(1425), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1537), 29, + ACTIONS(1423), 30, sym__verbatim_begin, - sym_strong_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21492,6 +20752,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -21501,17 +20762,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6319] = 2, - ACTIONS(1535), 6, + [6459] = 2, + ACTIONS(1429), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1533), 29, + ACTIONS(1427), 30, sym__verbatim_begin, - sym_strong_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21530,6 +20791,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -21539,18 +20801,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6359] = 3, - ACTIONS(1545), 1, - sym__verbatim_begin, - ACTIONS(1279), 6, + [6500] = 2, + ACTIONS(1433), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1283), 28, - sym_subscript_end, + ACTIONS(1431), 30, + sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21569,6 +20830,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -21578,17 +20840,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6401] = 2, - ACTIONS(1460), 6, + [6541] = 2, + ACTIONS(1437), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1458), 29, + ACTIONS(1435), 30, sym__verbatim_begin, - sym_subscript_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21607,6 +20869,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -21616,17 +20879,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6441] = 2, - ACTIONS(1471), 6, + [6582] = 2, + ACTIONS(1441), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1469), 29, + ACTIONS(1439), 30, sym__verbatim_begin, - sym_subscript_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21645,6 +20908,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -21654,17 +20918,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6481] = 2, - ACTIONS(1531), 6, + [6623] = 2, + ACTIONS(1445), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1529), 29, + ACTIONS(1443), 30, sym__verbatim_begin, - sym_strong_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21683,6 +20947,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -21692,17 +20957,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6521] = 2, - ACTIONS(1527), 6, + [6664] = 2, + ACTIONS(1369), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1525), 29, + ACTIONS(1367), 30, sym__verbatim_begin, - sym_strong_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21721,6 +20986,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -21730,17 +20996,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6561] = 2, - ACTIONS(1523), 6, + [6705] = 2, + ACTIONS(1451), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1521), 29, + ACTIONS(1449), 30, sym__verbatim_begin, - sym_strong_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21759,6 +21025,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -21768,17 +21035,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6601] = 2, - ACTIONS(1296), 6, + [6746] = 2, + ACTIONS(1373), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1294), 29, + ACTIONS(1371), 30, sym__verbatim_begin, - sym_subscript_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21797,6 +21064,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -21806,17 +21074,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6641] = 2, - ACTIONS(1475), 6, + [6787] = 2, + ACTIONS(1455), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1473), 29, + ACTIONS(1453), 30, sym__verbatim_begin, - sym_subscript_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21835,6 +21103,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -21844,17 +21113,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6681] = 2, - ACTIONS(1487), 6, + [6828] = 2, + ACTIONS(1401), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1485), 29, + ACTIONS(1399), 30, sym__verbatim_begin, - ts_builtin_sym_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21873,6 +21142,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -21882,15 +21152,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6721] = 2, - ACTIONS(1519), 6, + [6869] = 2, + ACTIONS(1232), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1517), 29, + ACTIONS(1230), 30, sym__verbatim_begin, sym_strong_end, anon_sym_LBRACE_, @@ -21911,6 +21181,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -21920,17 +21191,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6761] = 2, - ACTIONS(1479), 6, + [6910] = 2, + ACTIONS(1405), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1477), 29, + ACTIONS(1403), 30, sym__verbatim_begin, - sym_subscript_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21949,6 +21220,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -21958,17 +21230,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6801] = 2, - ACTIONS(1483), 6, + [6951] = 2, + ACTIONS(1393), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1481), 29, + ACTIONS(1391), 30, sym__verbatim_begin, - sym_subscript_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21987,6 +21259,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -21996,16 +21269,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6841] = 2, - ACTIONS(1487), 6, + [6992] = 3, + ACTIONS(1460), 1, + sym__verbatim_begin, + ACTIONS(1205), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1485), 29, - sym__verbatim_begin, + ACTIONS(1209), 29, sym_subscript_end, anon_sym_LBRACE_, anon_sym__, @@ -22025,6 +21299,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -22034,15 +21309,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6881] = 2, - ACTIONS(1491), 6, + [7035] = 2, + ACTIONS(1393), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1489), 29, + ACTIONS(1391), 30, sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, @@ -22063,6 +21338,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -22072,15 +21348,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6921] = 2, - ACTIONS(1495), 6, + [7076] = 2, + ACTIONS(1405), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1493), 29, + ACTIONS(1403), 30, sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, @@ -22101,6 +21377,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -22110,17 +21387,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6961] = 2, - ACTIONS(1499), 6, + [7117] = 3, + ACTIONS(1463), 1, + sym__verbatim_begin, + ACTIONS(1205), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1497), 29, - sym__verbatim_begin, - sym_subscript_end, + ACTIONS(1209), 29, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22139,6 +21417,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -22148,17 +21427,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7001] = 2, - ACTIONS(1503), 6, + [7160] = 2, + ACTIONS(1377), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1501), 29, + ACTIONS(1375), 30, sym__verbatim_begin, - sym_subscript_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22177,6 +21456,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -22186,17 +21466,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7041] = 2, - ACTIONS(1491), 6, + [7201] = 2, + ACTIONS(1455), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1489), 29, + ACTIONS(1453), 30, sym__verbatim_begin, - ts_builtin_sym_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22215,6 +21495,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -22224,17 +21505,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7081] = 2, - ACTIONS(1495), 6, + [7242] = 2, + ACTIONS(1232), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1493), 29, + ACTIONS(1230), 30, sym__verbatim_begin, - ts_builtin_sym_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22253,6 +21534,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -22262,17 +21544,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7121] = 2, - ACTIONS(1442), 6, + [7283] = 2, + ACTIONS(1351), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1440), 29, + ACTIONS(1349), 30, sym__verbatim_begin, - sym_strong_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22291,6 +21573,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -22300,17 +21583,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7161] = 2, - ACTIONS(1507), 6, + [7324] = 2, + ACTIONS(1381), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1505), 29, + ACTIONS(1379), 30, sym__verbatim_begin, - sym_subscript_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22329,6 +21612,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -22338,15 +21622,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7201] = 2, - ACTIONS(1499), 6, + [7365] = 2, + ACTIONS(1385), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1497), 29, + ACTIONS(1383), 30, sym__verbatim_begin, ts_builtin_sym_end, anon_sym_LBRACE_, @@ -22367,6 +21651,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -22376,15 +21661,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7241] = 2, - ACTIONS(1511), 6, + [7406] = 2, + ACTIONS(1361), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1509), 29, + ACTIONS(1359), 30, sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, @@ -22405,6 +21690,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -22414,15 +21700,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7281] = 2, - ACTIONS(1442), 6, + [7447] = 2, + ACTIONS(1365), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1440), 29, + ACTIONS(1363), 30, sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, @@ -22443,6 +21729,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -22452,17 +21739,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7321] = 2, - ACTIONS(1503), 6, + [7488] = 2, + ACTIONS(1369), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1501), 29, + ACTIONS(1367), 30, sym__verbatim_begin, - ts_builtin_sym_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22481,6 +21768,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -22490,15 +21778,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7361] = 2, - ACTIONS(1515), 6, + [7529] = 2, + ACTIONS(1373), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1513), 29, + ACTIONS(1371), 30, sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, @@ -22519,6 +21807,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -22528,15 +21817,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7401] = 2, - ACTIONS(1519), 6, + [7570] = 2, + ACTIONS(1377), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1517), 29, + ACTIONS(1375), 30, sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, @@ -22557,6 +21846,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -22566,15 +21856,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7441] = 2, - ACTIONS(1523), 6, + [7611] = 2, + ACTIONS(1381), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1521), 29, + ACTIONS(1379), 30, sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, @@ -22595,6 +21885,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -22604,15 +21895,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7481] = 2, - ACTIONS(1527), 6, + [7652] = 2, + ACTIONS(1385), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1525), 29, + ACTIONS(1383), 30, sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, @@ -22633,6 +21924,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -22642,17 +21934,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7521] = 2, - ACTIONS(1531), 6, + [7693] = 2, + ACTIONS(1451), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1529), 29, + ACTIONS(1449), 30, sym__verbatim_begin, - sym_subscript_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22671,6 +21963,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -22680,17 +21973,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7561] = 2, - ACTIONS(1535), 6, + [7734] = 2, + ACTIONS(1389), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1533), 29, + ACTIONS(1387), 30, sym__verbatim_begin, - sym_subscript_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22709,6 +22002,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -22718,17 +22012,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7601] = 2, - ACTIONS(1539), 6, + [7775] = 2, + ACTIONS(1397), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1537), 29, + ACTIONS(1395), 30, sym__verbatim_begin, - sym_subscript_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22747,6 +22041,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -22756,15 +22051,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7641] = 2, - ACTIONS(1543), 6, + [7816] = 2, + ACTIONS(1389), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1541), 29, + ACTIONS(1387), 30, sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, @@ -22785,6 +22080,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -22794,17 +22090,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7681] = 2, - ACTIONS(1446), 6, + [7857] = 2, + ACTIONS(1401), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1444), 29, + ACTIONS(1399), 30, sym__verbatim_begin, - sym_subscript_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22823,6 +22119,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -22832,15 +22129,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7721] = 2, - ACTIONS(1450), 6, + [7898] = 2, + ACTIONS(1397), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1448), 29, + ACTIONS(1395), 30, sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, @@ -22861,6 +22158,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -22870,15 +22168,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7761] = 2, - ACTIONS(1454), 6, + [7939] = 2, + ACTIONS(1401), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1452), 29, + ACTIONS(1399), 30, sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, @@ -22899,6 +22197,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -22908,17 +22207,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7801] = 2, - ACTIONS(1438), 6, + [7980] = 2, + ACTIONS(1409), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1436), 29, + ACTIONS(1407), 30, sym__verbatim_begin, - sym_subscript_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22937,6 +22236,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -22946,19 +22246,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7841] = 4, - ACTIONS(1548), 1, - anon_sym_LBRACE, - STATE(339), 1, - sym_comment, - ACTIONS(1306), 5, + [8021] = 2, + ACTIONS(1409), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1304), 28, + ACTIONS(1407), 30, sym__verbatim_begin, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22977,6 +22275,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -22986,17 +22285,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7885] = 2, - ACTIONS(1507), 6, + [8062] = 2, + ACTIONS(1355), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1505), 29, + ACTIONS(1353), 30, sym__verbatim_begin, - ts_builtin_sym_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23015,6 +22314,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -23024,15 +22324,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7925] = 2, - ACTIONS(1464), 6, + [8103] = 2, + ACTIONS(1413), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1462), 29, + ACTIONS(1411), 30, sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, @@ -23053,6 +22353,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -23062,17 +22363,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7965] = 2, - ACTIONS(1511), 6, + [8144] = 2, + ACTIONS(1417), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1509), 29, + ACTIONS(1415), 30, sym__verbatim_begin, - sym_strong_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23091,6 +22392,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -23100,17 +22402,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8005] = 2, - ACTIONS(1511), 6, + [8185] = 2, + ACTIONS(1421), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1509), 29, + ACTIONS(1419), 30, sym__verbatim_begin, - ts_builtin_sym_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23129,6 +22431,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -23138,17 +22441,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8045] = 2, - ACTIONS(1507), 6, + [8226] = 2, + ACTIONS(1425), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1505), 29, + ACTIONS(1423), 30, sym__verbatim_begin, - sym_strong_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23167,6 +22470,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -23176,17 +22480,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8085] = 2, - ACTIONS(1503), 6, + [8267] = 2, + ACTIONS(1429), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1501), 29, + ACTIONS(1427), 30, sym__verbatim_begin, - sym_strong_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23205,6 +22509,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -23214,18 +22519,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8125] = 3, - ACTIONS(1550), 1, - sym__verbatim_begin, - ACTIONS(1279), 6, + [8308] = 2, + ACTIONS(1433), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1283), 28, - sym_highlighted_end, + ACTIONS(1431), 30, + sym__verbatim_begin, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23244,6 +22548,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -23253,17 +22558,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8167] = 2, - ACTIONS(1460), 6, + [8349] = 2, + ACTIONS(1437), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1458), 29, + ACTIONS(1435), 30, sym__verbatim_begin, - sym_highlighted_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23282,6 +22587,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -23291,17 +22597,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8207] = 2, - ACTIONS(1471), 6, + [8390] = 2, + ACTIONS(1441), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1469), 29, + ACTIONS(1439), 30, sym__verbatim_begin, - sym_highlighted_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23320,6 +22626,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -23329,17 +22636,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8247] = 2, - ACTIONS(1499), 6, + [8431] = 2, + ACTIONS(1445), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1497), 29, + ACTIONS(1443), 30, sym__verbatim_begin, - sym_strong_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23358,6 +22665,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -23367,17 +22675,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8287] = 2, - ACTIONS(1495), 6, + [8472] = 2, + ACTIONS(1355), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1493), 29, + ACTIONS(1353), 30, sym__verbatim_begin, - sym_strong_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23396,6 +22704,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -23405,17 +22714,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8327] = 2, - ACTIONS(1491), 6, + [8513] = 2, + ACTIONS(1451), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1489), 29, + ACTIONS(1449), 30, sym__verbatim_begin, - sym_strong_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23434,6 +22743,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -23443,17 +22753,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8367] = 2, - ACTIONS(1296), 6, + [8554] = 2, + ACTIONS(1413), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1294), 29, + ACTIONS(1411), 30, sym__verbatim_begin, - sym_highlighted_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23472,6 +22782,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -23481,17 +22792,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8407] = 2, - ACTIONS(1475), 6, + [8595] = 2, + ACTIONS(1455), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1473), 29, + ACTIONS(1453), 30, sym__verbatim_begin, - sym_highlighted_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23510,6 +22821,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -23519,17 +22831,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8447] = 2, - ACTIONS(1442), 6, + [8636] = 2, + ACTIONS(1445), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1440), 29, + ACTIONS(1443), 30, sym__verbatim_begin, - ts_builtin_sym_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23548,6 +22860,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -23557,17 +22870,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8487] = 2, - ACTIONS(1487), 6, + [8677] = 2, + ACTIONS(1441), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1485), 29, + ACTIONS(1439), 30, sym__verbatim_begin, - sym_strong_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23586,6 +22899,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -23595,17 +22909,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8527] = 2, - ACTIONS(1479), 6, + [8718] = 2, + ACTIONS(1437), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1477), 29, + ACTIONS(1435), 30, sym__verbatim_begin, - sym_highlighted_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23624,6 +22938,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -23633,17 +22948,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8567] = 2, - ACTIONS(1483), 6, + [8759] = 2, + ACTIONS(1433), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1481), 29, + ACTIONS(1431), 30, sym__verbatim_begin, - sym_highlighted_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23662,6 +22977,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -23671,16 +22987,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8607] = 2, - ACTIONS(1487), 6, + [8800] = 3, + ACTIONS(1466), 1, + sym__verbatim_begin, + ACTIONS(1205), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1485), 29, - sym__verbatim_begin, + ACTIONS(1209), 29, sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, @@ -23700,6 +23017,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -23709,15 +23027,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8647] = 2, - ACTIONS(1491), 6, + [8843] = 2, + ACTIONS(1393), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1489), 29, + ACTIONS(1391), 30, sym__verbatim_begin, sym_highlighted_end, anon_sym_LBRACE_, @@ -23738,6 +23056,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -23747,15 +23066,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8687] = 2, - ACTIONS(1495), 6, + [8884] = 2, + ACTIONS(1405), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1493), 29, + ACTIONS(1403), 30, sym__verbatim_begin, sym_highlighted_end, anon_sym_LBRACE_, @@ -23776,6 +23095,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -23785,17 +23105,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8727] = 2, - ACTIONS(1499), 6, + [8925] = 2, + ACTIONS(1429), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1497), 29, + ACTIONS(1427), 30, sym__verbatim_begin, - sym_highlighted_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23814,6 +23134,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -23823,17 +23144,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8767] = 2, - ACTIONS(1503), 6, + [8966] = 2, + ACTIONS(1425), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1501), 29, + ACTIONS(1423), 30, sym__verbatim_begin, - sym_highlighted_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23852,6 +23173,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -23861,17 +23183,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8807] = 2, - ACTIONS(1483), 6, + [9007] = 2, + ACTIONS(1421), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1481), 29, + ACTIONS(1419), 30, sym__verbatim_begin, - sym_strong_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23890,6 +23212,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -23899,17 +23222,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8847] = 2, - ACTIONS(1479), 6, + [9048] = 2, + ACTIONS(1232), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1477), 29, + ACTIONS(1230), 30, sym__verbatim_begin, - sym_strong_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23928,6 +23251,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -23937,15 +23261,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8887] = 2, - ACTIONS(1515), 6, + [9089] = 2, + ACTIONS(1417), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1513), 29, + ACTIONS(1415), 30, sym__verbatim_begin, ts_builtin_sym_end, anon_sym_LBRACE_, @@ -23966,6 +23290,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -23975,17 +23300,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8927] = 2, - ACTIONS(1507), 6, + [9130] = 2, + ACTIONS(1421), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1505), 29, + ACTIONS(1419), 30, sym__verbatim_begin, - sym_highlighted_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24004,6 +23329,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -24013,17 +23339,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8967] = 2, - ACTIONS(1519), 6, + [9171] = 2, + ACTIONS(1417), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1517), 29, + ACTIONS(1415), 30, sym__verbatim_begin, - ts_builtin_sym_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24042,6 +23368,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -24051,15 +23378,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9007] = 2, - ACTIONS(1511), 6, + [9212] = 2, + ACTIONS(1361), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1509), 29, + ACTIONS(1359), 30, sym__verbatim_begin, sym_highlighted_end, anon_sym_LBRACE_, @@ -24080,6 +23407,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -24089,15 +23417,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9047] = 2, - ACTIONS(1442), 6, + [9253] = 2, + ACTIONS(1365), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1440), 29, + ACTIONS(1363), 30, sym__verbatim_begin, sym_highlighted_end, anon_sym_LBRACE_, @@ -24118,6 +23446,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -24127,17 +23456,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9087] = 2, - ACTIONS(1523), 6, + [9294] = 2, + ACTIONS(1369), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1521), 29, + ACTIONS(1367), 30, sym__verbatim_begin, - ts_builtin_sym_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24156,6 +23485,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -24165,15 +23495,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9127] = 2, - ACTIONS(1515), 6, + [9335] = 2, + ACTIONS(1373), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1513), 29, + ACTIONS(1371), 30, sym__verbatim_begin, sym_highlighted_end, anon_sym_LBRACE_, @@ -24194,6 +23524,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -24203,15 +23534,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9167] = 2, - ACTIONS(1519), 6, + [9376] = 2, + ACTIONS(1377), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1517), 29, + ACTIONS(1375), 30, sym__verbatim_begin, sym_highlighted_end, anon_sym_LBRACE_, @@ -24232,6 +23563,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -24241,15 +23573,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9207] = 2, - ACTIONS(1523), 6, + [9417] = 2, + ACTIONS(1381), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1521), 29, + ACTIONS(1379), 30, sym__verbatim_begin, sym_highlighted_end, anon_sym_LBRACE_, @@ -24270,6 +23602,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -24279,15 +23612,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9247] = 2, - ACTIONS(1527), 6, + [9458] = 2, + ACTIONS(1385), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1525), 29, + ACTIONS(1383), 30, sym__verbatim_begin, sym_highlighted_end, anon_sym_LBRACE_, @@ -24308,6 +23641,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -24317,17 +23651,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9287] = 2, - ACTIONS(1531), 6, + [9499] = 2, + ACTIONS(1425), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1529), 29, + ACTIONS(1423), 30, sym__verbatim_begin, - sym_highlighted_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24346,6 +23680,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -24355,17 +23690,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9327] = 2, - ACTIONS(1535), 6, + [9540] = 2, + ACTIONS(1413), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1533), 29, + ACTIONS(1411), 30, sym__verbatim_begin, - sym_highlighted_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24384,6 +23719,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -24393,17 +23729,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9367] = 2, - ACTIONS(1539), 6, + [9581] = 2, + ACTIONS(1355), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1537), 29, + ACTIONS(1353), 30, sym__verbatim_begin, - sym_highlighted_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24422,6 +23758,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -24431,15 +23768,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9407] = 2, - ACTIONS(1543), 6, + [9622] = 2, + ACTIONS(1389), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1541), 29, + ACTIONS(1387), 30, sym__verbatim_begin, sym_highlighted_end, anon_sym_LBRACE_, @@ -24460,6 +23797,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -24469,17 +23807,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9447] = 2, - ACTIONS(1446), 6, + [9663] = 4, + ACTIONS(1469), 1, + aux_sym__text_token1, + STATE(344), 1, + aux_sym__text, + ACTIONS(1213), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, - aux_sym__text_token1, - ACTIONS(1444), 29, + ACTIONS(1211), 29, sym__verbatim_begin, - sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24498,6 +23838,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -24507,15 +23848,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9487] = 2, - ACTIONS(1450), 6, + [9708] = 2, + ACTIONS(1397), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1448), 29, + ACTIONS(1395), 30, sym__verbatim_begin, sym_highlighted_end, anon_sym_LBRACE_, @@ -24536,6 +23877,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -24545,15 +23887,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9527] = 2, - ACTIONS(1454), 6, + [9749] = 2, + ACTIONS(1401), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1452), 29, + ACTIONS(1399), 30, sym__verbatim_begin, sym_highlighted_end, anon_sym_LBRACE_, @@ -24574,6 +23916,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -24583,17 +23926,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9567] = 2, - ACTIONS(1438), 6, + [9790] = 3, + ACTIONS(1472), 1, + anon_sym_GT, + ACTIONS(1232), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1436), 29, + ACTIONS(1230), 29, sym__verbatim_begin, - sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24612,6 +23956,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -24621,17 +23966,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9607] = 2, - ACTIONS(1527), 6, + [9833] = 2, + ACTIONS(1409), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1525), 29, + ACTIONS(1407), 30, sym__verbatim_begin, - ts_builtin_sym_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24650,6 +23995,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -24659,17 +24005,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9647] = 2, - ACTIONS(1531), 6, + [9874] = 2, + ACTIONS(1355), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1529), 29, + ACTIONS(1353), 30, sym__verbatim_begin, - ts_builtin_sym_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24688,6 +24034,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -24697,15 +24044,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9687] = 2, - ACTIONS(1464), 6, + [9915] = 2, + ACTIONS(1413), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1462), 29, + ACTIONS(1411), 30, sym__verbatim_begin, sym_highlighted_end, anon_sym_LBRACE_, @@ -24726,6 +24073,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -24735,17 +24083,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9727] = 2, - ACTIONS(1475), 6, + [9956] = 2, + ACTIONS(1417), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1473), 29, + ACTIONS(1415), 30, sym__verbatim_begin, - sym_strong_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24764,6 +24112,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -24773,17 +24122,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9767] = 2, - ACTIONS(1296), 6, + [9997] = 2, + ACTIONS(1421), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1294), 29, + ACTIONS(1419), 30, sym__verbatim_begin, - sym_strong_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24802,6 +24151,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -24811,17 +24161,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9807] = 2, - ACTIONS(1471), 6, + [10038] = 2, + ACTIONS(1425), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1469), 29, + ACTIONS(1423), 30, sym__verbatim_begin, - sym_strong_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24840,6 +24190,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -24849,17 +24200,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9847] = 2, - ACTIONS(1460), 6, + [10079] = 2, + ACTIONS(1429), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1458), 29, + ACTIONS(1427), 30, sym__verbatim_begin, - sym_strong_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24878,6 +24229,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -24887,18 +24239,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9887] = 3, - ACTIONS(1553), 1, - sym__verbatim_begin, - ACTIONS(1279), 6, + [10120] = 2, + ACTIONS(1433), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1283), 28, - sym_insert_end, + ACTIONS(1431), 30, + sym__verbatim_begin, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24917,6 +24268,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -24926,17 +24278,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9929] = 2, - ACTIONS(1460), 6, + [10161] = 2, + ACTIONS(1437), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1458), 29, + ACTIONS(1435), 30, sym__verbatim_begin, - sym_insert_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24955,6 +24307,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -24964,17 +24317,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9969] = 2, - ACTIONS(1471), 6, + [10202] = 2, + ACTIONS(1441), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1469), 29, + ACTIONS(1439), 30, sym__verbatim_begin, - sym_insert_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24993,6 +24346,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -25002,18 +24356,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10009] = 3, - ACTIONS(1556), 1, - sym__verbatim_begin, - ACTIONS(1279), 6, + [10243] = 2, + ACTIONS(1445), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1283), 28, - sym_strong_end, + ACTIONS(1443), 30, + sym__verbatim_begin, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25032,6 +24385,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -25041,15 +24395,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10051] = 2, - ACTIONS(1535), 6, + [10284] = 2, + ACTIONS(1429), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1533), 29, + ACTIONS(1427), 30, sym__verbatim_begin, ts_builtin_sym_end, anon_sym_LBRACE_, @@ -25070,6 +24424,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -25079,17 +24434,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10091] = 2, - ACTIONS(1464), 6, + [10325] = 2, + ACTIONS(1451), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1462), 29, + ACTIONS(1449), 30, sym__verbatim_begin, - sym_emphasis_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25108,6 +24463,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -25117,17 +24473,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10131] = 2, - ACTIONS(1296), 6, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE, - aux_sym__text_token1, - ACTIONS(1294), 29, + [10366] = 3, + ACTIONS(1474), 1, + aux_sym_autolink_token1, + ACTIONS(1209), 3, sym__verbatim_begin, - sym_insert_end, + sym__whitespace1, + sym__newline, + ACTIONS(1205), 32, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25139,13 +24492,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, + sym_en_dash, + sym_backslash_escape, anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -25153,19 +24512,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - sym__whitespace1, - sym__newline, - [10171] = 2, - ACTIONS(1475), 6, + aux_sym__text_token1, + [10409] = 2, + ACTIONS(1455), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1473), 29, + ACTIONS(1453), 30, sym__verbatim_begin, - sym_insert_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25184,6 +24542,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -25193,17 +24552,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10211] = 2, - ACTIONS(1539), 6, + [10450] = 2, + ACTIONS(1409), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1537), 29, + ACTIONS(1407), 30, sym__verbatim_begin, - ts_builtin_sym_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25222,6 +24581,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -25231,15 +24591,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10251] = 2, - ACTIONS(1543), 6, + [10491] = 2, + ACTIONS(1433), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1541), 29, + ACTIONS(1431), 30, sym__verbatim_begin, ts_builtin_sym_end, anon_sym_LBRACE_, @@ -25260,6 +24620,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -25269,17 +24630,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10291] = 2, - ACTIONS(1479), 6, + [10532] = 2, + ACTIONS(1232), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1477), 29, + ACTIONS(1230), 30, sym__verbatim_begin, - sym_insert_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25298,6 +24659,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -25307,17 +24669,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10331] = 2, - ACTIONS(1483), 6, + [10573] = 3, + ACTIONS(1476), 1, + sym__non_whitespace_check, + ACTIONS(1205), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1481), 29, + ACTIONS(1209), 29, sym__verbatim_begin, - sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25336,6 +24699,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -25345,16 +24709,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10371] = 2, - ACTIONS(1487), 6, + [10616] = 3, + ACTIONS(1478), 1, + sym__verbatim_begin, + ACTIONS(1205), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1485), 29, - sym__verbatim_begin, + ACTIONS(1209), 29, sym_insert_end, anon_sym_LBRACE_, anon_sym__, @@ -25374,6 +24739,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -25383,15 +24749,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10411] = 2, - ACTIONS(1491), 6, + [10659] = 2, + ACTIONS(1393), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1489), 29, + ACTIONS(1391), 30, sym__verbatim_begin, sym_insert_end, anon_sym_LBRACE_, @@ -25412,6 +24778,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -25421,15 +24788,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10451] = 2, - ACTIONS(1495), 6, + [10700] = 2, + ACTIONS(1405), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1493), 29, + ACTIONS(1403), 30, sym__verbatim_begin, sym_insert_end, anon_sym_LBRACE_, @@ -25450,6 +24817,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -25459,17 +24827,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10491] = 2, - ACTIONS(1499), 6, + [10741] = 2, + ACTIONS(1397), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1497), 29, + ACTIONS(1395), 30, sym__verbatim_begin, - sym_insert_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25488,6 +24856,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -25497,17 +24866,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10531] = 2, - ACTIONS(1503), 6, + [10782] = 3, + ACTIONS(1481), 1, + sym__non_whitespace_check, + ACTIONS(1205), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1501), 29, + ACTIONS(1209), 29, sym__verbatim_begin, - sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25526,6 +24896,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -25535,17 +24906,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10571] = 2, - ACTIONS(1446), 6, + [10825] = 2, + ACTIONS(1389), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1444), 29, + ACTIONS(1387), 30, sym__verbatim_begin, - ts_builtin_sym_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25564,6 +24935,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -25573,17 +24945,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10611] = 2, - ACTIONS(1450), 6, + [10866] = 2, + ACTIONS(1232), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1448), 29, + ACTIONS(1230), 30, sym__verbatim_begin, - ts_builtin_sym_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25602,6 +24974,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -25611,17 +24984,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10651] = 2, - ACTIONS(1454), 6, + [10907] = 2, + ACTIONS(1351), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1452), 29, + ACTIONS(1349), 30, sym__verbatim_begin, - ts_builtin_sym_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25640,6 +25013,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -25649,17 +25023,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10691] = 2, - ACTIONS(1507), 6, + [10948] = 2, + ACTIONS(1455), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1505), 29, + ACTIONS(1453), 30, sym__verbatim_begin, - sym_insert_end, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25678,6 +25052,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -25687,17 +25062,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10731] = 2, - ACTIONS(1438), 6, + [10989] = 2, + ACTIONS(1385), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1436), 29, + ACTIONS(1383), 30, sym__verbatim_begin, - ts_builtin_sym_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25716,6 +25091,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -25725,15 +25101,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10771] = 2, - ACTIONS(1511), 6, + [11030] = 2, + ACTIONS(1361), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1509), 29, + ACTIONS(1359), 30, sym__verbatim_begin, sym_insert_end, anon_sym_LBRACE_, @@ -25754,6 +25130,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -25763,15 +25140,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10811] = 2, - ACTIONS(1442), 6, + [11071] = 2, + ACTIONS(1365), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1440), 29, + ACTIONS(1363), 30, sym__verbatim_begin, sym_insert_end, anon_sym_LBRACE_, @@ -25792,6 +25169,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -25801,19 +25179,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10851] = 4, - ACTIONS(1559), 1, - aux_sym__text_token1, - STATE(389), 1, - aux_sym__text, - ACTIONS(1289), 5, + [11112] = 2, + ACTIONS(1369), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(1287), 28, + aux_sym__text_token1, + ACTIONS(1367), 30, sym__verbatim_begin, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25832,6 +25208,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -25841,15 +25218,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10895] = 2, - ACTIONS(1515), 6, + [11153] = 2, + ACTIONS(1373), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1513), 29, + ACTIONS(1371), 30, sym__verbatim_begin, sym_insert_end, anon_sym_LBRACE_, @@ -25870,6 +25247,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -25879,15 +25257,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10935] = 2, - ACTIONS(1519), 6, + [11194] = 2, + ACTIONS(1377), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1517), 29, + ACTIONS(1375), 30, sym__verbatim_begin, sym_insert_end, anon_sym_LBRACE_, @@ -25908,6 +25286,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -25917,15 +25296,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10975] = 2, - ACTIONS(1523), 6, + [11235] = 2, + ACTIONS(1381), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1521), 29, + ACTIONS(1379), 30, sym__verbatim_begin, sym_insert_end, anon_sym_LBRACE_, @@ -25946,6 +25325,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -25955,15 +25335,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11015] = 2, - ACTIONS(1527), 6, + [11276] = 2, + ACTIONS(1385), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1525), 29, + ACTIONS(1383), 30, sym__verbatim_begin, sym_insert_end, anon_sym_LBRACE_, @@ -25984,6 +25364,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -25993,17 +25374,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11055] = 2, - ACTIONS(1531), 6, + [11317] = 2, + ACTIONS(1381), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1529), 29, + ACTIONS(1379), 30, sym__verbatim_begin, - sym_insert_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26022,6 +25403,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -26031,17 +25413,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11095] = 2, - ACTIONS(1535), 6, + [11358] = 2, + ACTIONS(1377), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1533), 29, + ACTIONS(1375), 30, sym__verbatim_begin, - sym_insert_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26060,6 +25442,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -26069,17 +25452,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11135] = 2, - ACTIONS(1539), 6, + [11399] = 2, + ACTIONS(1373), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1537), 29, + ACTIONS(1371), 30, sym__verbatim_begin, - sym_insert_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26098,6 +25481,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -26107,15 +25491,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11175] = 2, - ACTIONS(1543), 6, + [11440] = 2, + ACTIONS(1389), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1541), 29, + ACTIONS(1387), 30, sym__verbatim_begin, sym_insert_end, anon_sym_LBRACE_, @@ -26136,6 +25520,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -26145,17 +25530,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11215] = 2, - ACTIONS(1446), 6, + [11481] = 2, + ACTIONS(1451), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1444), 29, + ACTIONS(1449), 30, sym__verbatim_begin, - sym_insert_end, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26174,6 +25559,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -26183,15 +25569,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11255] = 2, - ACTIONS(1450), 6, + [11522] = 2, + ACTIONS(1397), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1448), 29, + ACTIONS(1395), 30, sym__verbatim_begin, sym_insert_end, anon_sym_LBRACE_, @@ -26212,6 +25598,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -26221,15 +25608,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11295] = 2, - ACTIONS(1454), 6, + [11563] = 2, + ACTIONS(1401), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1452), 29, + ACTIONS(1399), 30, sym__verbatim_begin, sym_insert_end, anon_sym_LBRACE_, @@ -26250,6 +25637,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -26259,17 +25647,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11335] = 2, - ACTIONS(1438), 6, + [11604] = 2, + ACTIONS(1445), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1436), 29, + ACTIONS(1443), 30, sym__verbatim_begin, - sym_insert_end, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26288,6 +25676,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -26297,18 +25686,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11375] = 3, - ACTIONS(1562), 1, - anon_sym_GT, - ACTIONS(1296), 6, + [11645] = 2, + ACTIONS(1409), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1294), 28, + ACTIONS(1407), 30, sym__verbatim_begin, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26327,6 +25715,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -26336,14 +25725,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11417] = 3, - ACTIONS(1564), 1, - aux_sym_autolink_token1, - ACTIONS(1283), 3, + [11686] = 2, + ACTIONS(1355), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE, + aux_sym__text_token1, + ACTIONS(1353), 30, sym__verbatim_begin, - sym__whitespace1, - sym__newline, - ACTIONS(1279), 31, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26355,18 +25747,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, - sym_en_dash, - sym_backslash_escape, anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -26374,16 +25762,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - aux_sym__text_token1, - [11459] = 2, - ACTIONS(1464), 6, + sym__whitespace1, + sym__newline, + [11727] = 2, + ACTIONS(1413), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1462), 29, + ACTIONS(1411), 30, sym__verbatim_begin, sym_insert_end, anon_sym_LBRACE_, @@ -26404,6 +25793,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -26413,17 +25803,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11499] = 2, - ACTIONS(1454), 6, + [11768] = 2, + ACTIONS(1417), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1452), 29, + ACTIONS(1415), 30, sym__verbatim_begin, - sym_emphasis_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26442,6 +25832,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -26451,17 +25842,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11539] = 2, - ACTIONS(1450), 6, + [11809] = 2, + ACTIONS(1421), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1448), 29, + ACTIONS(1419), 30, sym__verbatim_begin, - sym_emphasis_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26480,6 +25871,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -26489,17 +25881,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11579] = 2, - ACTIONS(1446), 6, + [11850] = 2, + ACTIONS(1425), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1444), 29, + ACTIONS(1423), 30, sym__verbatim_begin, - sym_emphasis_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26518,6 +25910,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -26527,17 +25920,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11619] = 2, - ACTIONS(1543), 6, + [11891] = 2, + ACTIONS(1429), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1541), 29, + ACTIONS(1427), 30, sym__verbatim_begin, - sym_emphasis_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26556,6 +25949,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -26565,18 +25959,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11659] = 3, - ACTIONS(1566), 1, - sym__verbatim_begin, - ACTIONS(1279), 6, + [11932] = 2, + ACTIONS(1433), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1283), 28, - sym_delete_end, + ACTIONS(1431), 30, + sym__verbatim_begin, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26595,6 +25988,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -26604,17 +25998,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11701] = 2, - ACTIONS(1460), 6, + [11973] = 2, + ACTIONS(1437), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1458), 29, + ACTIONS(1435), 30, sym__verbatim_begin, - sym_delete_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26633,6 +26027,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -26642,17 +26037,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11741] = 2, - ACTIONS(1471), 6, + [12014] = 2, + ACTIONS(1441), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1469), 29, + ACTIONS(1439), 30, sym__verbatim_begin, - sym_delete_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26671,6 +26066,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -26680,17 +26076,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11781] = 2, - ACTIONS(1539), 6, + [12055] = 2, + ACTIONS(1445), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1537), 29, + ACTIONS(1443), 30, sym__verbatim_begin, - sym_emphasis_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26709,6 +26105,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -26718,17 +26115,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11821] = 2, - ACTIONS(1535), 6, + [12096] = 2, + ACTIONS(1441), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1533), 29, + ACTIONS(1439), 30, sym__verbatim_begin, - sym_emphasis_end, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26747,6 +26144,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -26756,17 +26154,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11861] = 2, - ACTIONS(1531), 6, + [12137] = 2, + ACTIONS(1451), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1529), 29, + ACTIONS(1449), 30, sym__verbatim_begin, - sym_emphasis_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26785,6 +26183,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -26794,17 +26193,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11901] = 2, - ACTIONS(1296), 6, + [12178] = 2, + ACTIONS(1437), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1294), 29, + ACTIONS(1435), 30, sym__verbatim_begin, - sym_delete_end, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26823,6 +26222,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -26832,17 +26232,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11941] = 2, - ACTIONS(1475), 6, + [12219] = 2, + ACTIONS(1455), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1473), 29, + ACTIONS(1453), 30, sym__verbatim_begin, - sym_delete_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26861,6 +26261,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -26870,18 +26271,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11981] = 3, - ACTIONS(1569), 1, - sym__non_whitespace_check, - ACTIONS(1279), 6, + [12260] = 2, + ACTIONS(1369), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1283), 28, + ACTIONS(1367), 30, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26900,6 +26300,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -26909,15 +26310,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12023] = 2, - ACTIONS(1527), 6, + [12301] = 2, + ACTIONS(1365), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1525), 29, + ACTIONS(1363), 30, sym__verbatim_begin, sym_emphasis_end, anon_sym_LBRACE_, @@ -26938,6 +26339,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -26947,17 +26349,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12063] = 2, - ACTIONS(1479), 6, + [12342] = 2, + ACTIONS(1361), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1477), 29, + ACTIONS(1359), 30, sym__verbatim_begin, - sym_delete_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26976,6 +26378,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -26985,17 +26388,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12103] = 2, - ACTIONS(1483), 6, + [12383] = 2, + ACTIONS(1433), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1481), 29, + ACTIONS(1431), 30, sym__verbatim_begin, - sym_delete_end, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27014,6 +26417,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -27023,16 +26427,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12143] = 2, - ACTIONS(1487), 6, + [12424] = 3, + ACTIONS(1483), 1, + sym__verbatim_begin, + ACTIONS(1205), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1485), 29, - sym__verbatim_begin, + ACTIONS(1209), 29, sym_delete_end, anon_sym_LBRACE_, anon_sym__, @@ -27052,6 +26457,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -27061,15 +26467,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12183] = 2, - ACTIONS(1491), 6, + [12467] = 2, + ACTIONS(1393), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1489), 29, + ACTIONS(1391), 30, sym__verbatim_begin, sym_delete_end, anon_sym_LBRACE_, @@ -27090,6 +26496,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -27099,15 +26506,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12223] = 2, - ACTIONS(1495), 6, + [12508] = 2, + ACTIONS(1405), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1493), 29, + ACTIONS(1403), 30, sym__verbatim_begin, sym_delete_end, anon_sym_LBRACE_, @@ -27128,6 +26535,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -27137,17 +26545,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12263] = 2, - ACTIONS(1499), 6, + [12549] = 2, + ACTIONS(1351), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1497), 29, + ACTIONS(1349), 30, sym__verbatim_begin, - sym_delete_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27166,6 +26574,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -27175,17 +26584,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12303] = 2, - ACTIONS(1503), 6, + [12590] = 2, + ACTIONS(1429), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1501), 29, + ACTIONS(1427), 30, sym__verbatim_begin, - sym_delete_end, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27204,6 +26613,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -27213,17 +26623,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12343] = 2, - ACTIONS(1296), 6, + [12631] = 4, + ACTIONS(1486), 1, + anon_sym_LBRACE, + STATE(409), 1, + sym_comment, + ACTIONS(1224), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1294), 29, + ACTIONS(1222), 29, sym__verbatim_begin, - sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27242,6 +26654,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -27251,17 +26664,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12383] = 2, - ACTIONS(1523), 6, + [12676] = 2, + ACTIONS(1232), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1521), 29, + ACTIONS(1230), 30, sym__verbatim_begin, - sym_emphasis_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27280,6 +26693,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -27289,17 +26703,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12423] = 2, - ACTIONS(1519), 6, + [12717] = 2, + ACTIONS(1351), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1517), 29, + ACTIONS(1349), 30, sym__verbatim_begin, - sym_emphasis_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27318,6 +26732,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -27327,17 +26742,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12463] = 2, - ACTIONS(1507), 6, + [12758] = 2, + ACTIONS(1425), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1505), 29, + ACTIONS(1423), 30, sym__verbatim_begin, - sym_delete_end, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27356,6 +26771,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -27365,18 +26781,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12503] = 3, - ACTIONS(1571), 1, - sym__non_whitespace_check, - ACTIONS(1279), 6, + [12799] = 2, + ACTIONS(1405), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1283), 28, + ACTIONS(1403), 30, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27395,6 +26810,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -27404,15 +26820,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12545] = 2, - ACTIONS(1511), 6, + [12840] = 2, + ACTIONS(1361), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1509), 29, + ACTIONS(1359), 30, sym__verbatim_begin, sym_delete_end, anon_sym_LBRACE_, @@ -27433,6 +26849,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -27442,15 +26859,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12585] = 2, - ACTIONS(1442), 6, + [12881] = 2, + ACTIONS(1365), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1440), 29, + ACTIONS(1363), 30, sym__verbatim_begin, sym_delete_end, anon_sym_LBRACE_, @@ -27471,6 +26888,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -27480,17 +26898,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12625] = 2, - ACTIONS(1464), 6, + [12922] = 2, + ACTIONS(1369), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1462), 29, + ACTIONS(1367), 30, sym__verbatim_begin, - sym__bracketed_text_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27509,6 +26927,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -27518,15 +26937,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12665] = 2, - ACTIONS(1515), 6, + [12963] = 2, + ACTIONS(1373), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1513), 29, + ACTIONS(1371), 30, sym__verbatim_begin, sym_delete_end, anon_sym_LBRACE_, @@ -27547,6 +26966,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -27556,15 +26976,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12705] = 2, - ACTIONS(1519), 6, + [13004] = 2, + ACTIONS(1377), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1517), 29, + ACTIONS(1375), 30, sym__verbatim_begin, sym_delete_end, anon_sym_LBRACE_, @@ -27585,6 +27005,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -27594,15 +27015,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12745] = 2, - ACTIONS(1523), 6, + [13045] = 2, + ACTIONS(1381), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1521), 29, + ACTIONS(1379), 30, sym__verbatim_begin, sym_delete_end, anon_sym_LBRACE_, @@ -27623,6 +27044,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -27632,15 +27054,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12785] = 2, - ACTIONS(1527), 6, + [13086] = 2, + ACTIONS(1385), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1525), 29, + ACTIONS(1383), 30, sym__verbatim_begin, sym_delete_end, anon_sym_LBRACE_, @@ -27661,6 +27083,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -27670,17 +27093,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12825] = 2, - ACTIONS(1531), 6, + [13127] = 2, + ACTIONS(1393), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1529), 29, + ACTIONS(1391), 30, sym__verbatim_begin, - sym_delete_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27699,6 +27122,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -27708,17 +27132,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12865] = 2, - ACTIONS(1535), 6, + [13168] = 3, + ACTIONS(1488), 1, + sym__verbatim_begin, + ACTIONS(1205), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1533), 29, - sym__verbatim_begin, - sym_delete_end, + ACTIONS(1209), 29, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27737,6 +27162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -27746,17 +27172,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12905] = 2, - ACTIONS(1539), 6, + [13211] = 2, + ACTIONS(1421), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1537), 29, + ACTIONS(1419), 30, sym__verbatim_begin, - sym_delete_end, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27775,6 +27201,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -27784,15 +27211,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12945] = 2, - ACTIONS(1543), 6, + [13252] = 2, + ACTIONS(1389), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1541), 29, + ACTIONS(1387), 30, sym__verbatim_begin, sym_delete_end, anon_sym_LBRACE_, @@ -27813,6 +27240,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -27822,17 +27250,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12985] = 2, - ACTIONS(1446), 6, + [13293] = 2, + ACTIONS(1417), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1444), 29, + ACTIONS(1415), 30, sym__verbatim_begin, - sym_delete_end, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27851,6 +27279,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -27860,15 +27289,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13025] = 2, - ACTIONS(1450), 6, + [13334] = 2, + ACTIONS(1397), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1448), 29, + ACTIONS(1395), 30, sym__verbatim_begin, sym_delete_end, anon_sym_LBRACE_, @@ -27889,6 +27318,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -27898,15 +27328,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13065] = 2, - ACTIONS(1454), 6, + [13375] = 2, + ACTIONS(1401), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1452), 29, + ACTIONS(1399), 30, sym__verbatim_begin, sym_delete_end, anon_sym_LBRACE_, @@ -27927,6 +27357,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -27936,17 +27367,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13105] = 2, - ACTIONS(1438), 6, + [13416] = 2, + ACTIONS(1413), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1436), 29, + ACTIONS(1411), 30, sym__verbatim_begin, - sym_delete_end, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27965,6 +27396,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -27974,17 +27406,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13145] = 2, - ACTIONS(1438), 6, + [13457] = 2, + ACTIONS(1409), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1436), 29, + ACTIONS(1407), 30, sym__verbatim_begin, - sym__bracketed_text_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28003,6 +27435,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -28012,17 +27445,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13185] = 2, - ACTIONS(1454), 6, + [13498] = 2, + ACTIONS(1351), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1452), 29, + ACTIONS(1349), 30, sym__verbatim_begin, - sym__bracketed_text_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28041,6 +27474,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -28050,15 +27484,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13225] = 2, - ACTIONS(1464), 6, + [13539] = 2, + ACTIONS(1413), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1462), 29, + ACTIONS(1411), 30, sym__verbatim_begin, sym_delete_end, anon_sym_LBRACE_, @@ -28079,6 +27513,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -28088,17 +27523,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13265] = 2, - ACTIONS(1515), 6, + [13580] = 2, + ACTIONS(1417), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1513), 29, + ACTIONS(1415), 30, sym__verbatim_begin, - sym_emphasis_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28117,6 +27552,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -28126,17 +27562,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13305] = 2, - ACTIONS(1450), 6, + [13621] = 2, + ACTIONS(1421), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1448), 29, + ACTIONS(1419), 30, sym__verbatim_begin, - sym__bracketed_text_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28155,6 +27591,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -28164,17 +27601,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13345] = 2, - ACTIONS(1442), 6, + [13662] = 2, + ACTIONS(1425), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1440), 29, + ACTIONS(1423), 30, sym__verbatim_begin, - sym_emphasis_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28193,6 +27630,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -28202,17 +27640,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13385] = 2, - ACTIONS(1446), 6, + [13703] = 2, + ACTIONS(1429), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1444), 29, + ACTIONS(1427), 30, sym__verbatim_begin, - sym__bracketed_text_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28231,6 +27669,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -28240,17 +27679,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13425] = 3, - ACTIONS(1573), 1, - sym__verbatim_begin, - ACTIONS(1279), 6, + [13744] = 2, + ACTIONS(1433), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1283), 28, + ACTIONS(1431), 30, + sym__verbatim_begin, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28269,7 +27708,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -28279,16 +27718,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13467] = 2, - ACTIONS(1460), 6, + [13785] = 2, + ACTIONS(1437), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1458), 29, + ACTIONS(1435), 30, sym__verbatim_begin, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28307,7 +27747,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -28317,16 +27757,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13507] = 2, - ACTIONS(1471), 6, + [13826] = 2, + ACTIONS(1441), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1469), 29, + ACTIONS(1439), 30, sym__verbatim_begin, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28345,7 +27786,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -28355,17 +27796,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13547] = 2, - ACTIONS(1511), 6, + [13867] = 2, + ACTIONS(1445), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1509), 29, + ACTIONS(1443), 30, sym__verbatim_begin, - sym_emphasis_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28384,6 +27825,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -28393,17 +27835,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13587] = 2, - ACTIONS(1543), 6, + [13908] = 2, + ACTIONS(1355), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1541), 29, + ACTIONS(1353), 30, sym__verbatim_begin, - sym__bracketed_text_end, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28422,6 +27864,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -28431,17 +27874,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13627] = 2, - ACTIONS(1507), 6, + [13949] = 2, + ACTIONS(1451), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1505), 29, + ACTIONS(1449), 30, sym__verbatim_begin, - sym_emphasis_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28460,6 +27903,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -28469,16 +27913,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13667] = 2, - ACTIONS(1296), 6, + [13990] = 2, + ACTIONS(1409), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1294), 29, + ACTIONS(1407), 30, sym__verbatim_begin, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28497,7 +27942,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -28507,16 +27952,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13707] = 2, - ACTIONS(1475), 6, + [14031] = 2, + ACTIONS(1455), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1473), 29, + ACTIONS(1453), 30, sym__verbatim_begin, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28535,7 +27981,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -28545,17 +27991,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13747] = 2, - ACTIONS(1539), 6, + [14072] = 2, + ACTIONS(1401), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1537), 29, + ACTIONS(1399), 30, sym__verbatim_begin, - sym__bracketed_text_end, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28574,6 +28020,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -28583,17 +28030,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13787] = 2, - ACTIONS(1503), 6, + [14113] = 2, + ACTIONS(1397), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1501), 29, + ACTIONS(1395), 30, sym__verbatim_begin, - sym_emphasis_end, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28612,6 +28059,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -28621,16 +28069,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13827] = 2, - ACTIONS(1479), 6, + [14154] = 2, + ACTIONS(1389), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1477), 29, + ACTIONS(1387), 30, sym__verbatim_begin, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28649,7 +28098,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -28659,16 +28108,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13867] = 2, - ACTIONS(1483), 6, + [14195] = 2, + ACTIONS(1455), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1481), 29, + ACTIONS(1453), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28687,7 +28137,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -28697,16 +28147,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13907] = 2, - ACTIONS(1487), 6, + [14236] = 3, + ACTIONS(1491), 1, + sym__verbatim_begin, + ACTIONS(1205), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1485), 29, - sym__verbatim_begin, + ACTIONS(1209), 29, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28726,6 +28177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -28735,15 +28187,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13947] = 2, - ACTIONS(1491), 6, + [14279] = 2, + ACTIONS(1393), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1489), 29, + ACTIONS(1391), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -28764,6 +28216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -28773,15 +28226,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13987] = 2, - ACTIONS(1495), 6, + [14320] = 2, + ACTIONS(1405), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1493), 29, + ACTIONS(1403), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -28802,6 +28255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -28811,16 +28265,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14027] = 2, - ACTIONS(1499), 6, + [14361] = 2, + ACTIONS(1437), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1497), 29, + ACTIONS(1435), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28839,7 +28294,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -28849,16 +28304,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14067] = 2, - ACTIONS(1503), 6, + [14402] = 2, + ACTIONS(1451), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1501), 29, + ACTIONS(1449), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28877,7 +28333,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -28887,17 +28343,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14107] = 2, - ACTIONS(1499), 6, + [14443] = 2, + ACTIONS(1232), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1497), 29, + ACTIONS(1230), 30, sym__verbatim_begin, - sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28916,6 +28371,8 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -28925,17 +28382,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14147] = 2, - ACTIONS(1495), 6, + [14484] = 2, + ACTIONS(1351), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1493), 29, + ACTIONS(1349), 30, sym__verbatim_begin, - sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28954,6 +28410,8 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -28963,17 +28421,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14187] = 2, - ACTIONS(1491), 6, + [14525] = 2, + ACTIONS(1441), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1489), 29, + ACTIONS(1439), 30, sym__verbatim_begin, - sym_emphasis_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28992,6 +28450,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -29001,16 +28460,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14227] = 2, - ACTIONS(1507), 6, + [14566] = 2, + ACTIONS(1385), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1505), 29, + ACTIONS(1383), 30, sym__verbatim_begin, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29029,7 +28489,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -29039,17 +28499,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14267] = 2, - ACTIONS(1535), 6, + [14607] = 2, + ACTIONS(1361), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1533), 29, + ACTIONS(1359), 30, sym__verbatim_begin, - sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29068,6 +28527,8 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -29077,15 +28538,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14307] = 2, - ACTIONS(1511), 6, + [14648] = 2, + ACTIONS(1365), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1509), 29, + ACTIONS(1363), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -29106,6 +28567,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -29115,17 +28577,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14347] = 2, - ACTIONS(1543), 6, + [14689] = 2, + ACTIONS(1369), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1541), 29, + ACTIONS(1367), 30, sym__verbatim_begin, - sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29144,6 +28605,8 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -29153,17 +28616,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14387] = 2, - ACTIONS(1531), 6, + [14730] = 2, + ACTIONS(1373), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1529), 29, + ACTIONS(1371), 30, sym__verbatim_begin, - sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29182,6 +28644,8 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -29191,15 +28655,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14427] = 2, - ACTIONS(1515), 6, + [14771] = 2, + ACTIONS(1377), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1513), 29, + ACTIONS(1375), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -29220,6 +28684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -29229,15 +28694,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14467] = 2, - ACTIONS(1519), 6, + [14812] = 2, + ACTIONS(1381), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1517), 29, + ACTIONS(1379), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -29258,6 +28723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -29267,15 +28733,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14507] = 2, - ACTIONS(1523), 6, + [14853] = 2, + ACTIONS(1385), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1521), 29, + ACTIONS(1383), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -29296,6 +28762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -29305,16 +28772,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14547] = 2, - ACTIONS(1527), 6, + [14894] = 2, + ACTIONS(1381), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1525), 29, + ACTIONS(1379), 30, sym__verbatim_begin, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29333,7 +28801,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -29343,16 +28811,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14587] = 2, - ACTIONS(1531), 6, + [14935] = 2, + ACTIONS(1377), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1529), 29, + ACTIONS(1375), 30, sym__verbatim_begin, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29371,7 +28840,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -29381,16 +28850,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14627] = 2, - ACTIONS(1535), 6, + [14976] = 2, + ACTIONS(1373), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1533), 29, + ACTIONS(1371), 30, sym__verbatim_begin, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29409,7 +28879,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -29419,15 +28889,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14667] = 2, - ACTIONS(1539), 6, + [15017] = 2, + ACTIONS(1389), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1537), 29, + ACTIONS(1387), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -29448,6 +28918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -29457,16 +28928,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14707] = 2, - ACTIONS(1543), 6, + [15058] = 2, + ACTIONS(1369), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1541), 29, + ACTIONS(1367), 30, sym__verbatim_begin, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29485,7 +28957,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -29495,15 +28967,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14747] = 2, - ACTIONS(1446), 6, + [15099] = 2, + ACTIONS(1397), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1444), 29, + ACTIONS(1395), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -29524,6 +28996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -29533,15 +29006,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14787] = 2, - ACTIONS(1450), 6, + [15140] = 2, + ACTIONS(1401), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1448), 29, + ACTIONS(1399), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -29562,6 +29035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -29571,16 +29045,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14827] = 2, - ACTIONS(1454), 6, + [15181] = 2, + ACTIONS(1365), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1452), 29, + ACTIONS(1363), 30, sym__verbatim_begin, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29599,7 +29074,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -29609,15 +29084,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14867] = 2, - ACTIONS(1438), 6, + [15222] = 2, + ACTIONS(1409), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1436), 29, + ACTIONS(1407), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -29638,6 +29113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -29647,17 +29123,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14907] = 2, - ACTIONS(1527), 6, + [15263] = 2, + ACTIONS(1355), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1525), 29, + ACTIONS(1353), 30, sym__verbatim_begin, - sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29676,6 +29151,8 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -29685,17 +29162,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14947] = 2, - ACTIONS(1523), 6, + [15304] = 2, + ACTIONS(1413), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1521), 29, + ACTIONS(1411), 30, sym__verbatim_begin, - sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29714,6 +29190,8 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -29723,15 +29201,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14987] = 2, - ACTIONS(1464), 6, + [15345] = 2, + ACTIONS(1417), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1462), 29, + ACTIONS(1415), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -29752,6 +29230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -29761,17 +29240,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15027] = 2, - ACTIONS(1487), 6, + [15386] = 2, + ACTIONS(1421), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1485), 29, + ACTIONS(1419), 30, sym__verbatim_begin, - sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29790,6 +29268,8 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -29799,17 +29279,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15067] = 2, - ACTIONS(1483), 6, + [15427] = 2, + ACTIONS(1425), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1481), 29, + ACTIONS(1423), 30, sym__verbatim_begin, - sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29828,6 +29307,8 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -29837,17 +29318,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15107] = 2, - ACTIONS(1479), 6, + [15468] = 2, + ACTIONS(1429), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1477), 29, + ACTIONS(1427), 30, sym__verbatim_begin, - sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29866,6 +29346,8 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -29875,17 +29357,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15147] = 2, - ACTIONS(1519), 6, + [15509] = 2, + ACTIONS(1433), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1517), 29, + ACTIONS(1431), 30, sym__verbatim_begin, - sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29904,6 +29385,8 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -29913,18 +29396,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15187] = 3, - ACTIONS(1576), 1, - sym__verbatim_begin, - ACTIONS(1279), 6, + [15550] = 2, + ACTIONS(1437), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1283), 28, - sym__image_description_end, + ACTIONS(1435), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29943,6 +29424,8 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -29952,17 +29435,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15229] = 2, - ACTIONS(1460), 6, + [15591] = 2, + ACTIONS(1441), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1458), 29, + ACTIONS(1439), 30, sym__verbatim_begin, - sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29981,6 +29463,8 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -29990,17 +29474,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15269] = 2, - ACTIONS(1471), 6, + [15632] = 2, + ACTIONS(1445), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1469), 29, + ACTIONS(1443), 30, sym__verbatim_begin, - sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30019,6 +29502,8 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -30028,17 +29513,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15309] = 2, - ACTIONS(1475), 6, + [15673] = 2, + ACTIONS(1361), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1473), 29, + ACTIONS(1359), 30, sym__verbatim_begin, - sym_emphasis_end, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30057,6 +29542,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -30066,17 +29552,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15349] = 2, - ACTIONS(1515), 6, + [15714] = 2, + ACTIONS(1451), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1513), 29, + ACTIONS(1449), 30, sym__verbatim_begin, - sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30095,6 +29580,8 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -30104,17 +29591,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15389] = 2, - ACTIONS(1296), 6, + [15755] = 2, + ACTIONS(1445), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1294), 29, + ACTIONS(1443), 30, sym__verbatim_begin, - sym__image_description_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30133,6 +29620,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -30142,17 +29630,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15429] = 2, - ACTIONS(1475), 6, + [15796] = 2, + ACTIONS(1455), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1473), 29, + ACTIONS(1453), 30, sym__verbatim_begin, - sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30171,6 +29658,8 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -30180,17 +29669,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15469] = 2, - ACTIONS(1442), 6, + [15837] = 3, + ACTIONS(1494), 1, + sym__verbatim_begin, + ACTIONS(1205), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1440), 29, - sym__verbatim_begin, - sym__bracketed_text_end, + ACTIONS(1209), 29, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30209,6 +29699,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -30218,19 +29709,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15509] = 4, - ACTIONS(1579), 1, - anon_sym_LBRACE, - STATE(495), 1, - sym_comment, - ACTIONS(1306), 5, + [15880] = 2, + ACTIONS(1351), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1304), 28, + ACTIONS(1349), 30, sym__verbatim_begin, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30249,6 +29738,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -30258,17 +29748,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15553] = 2, - ACTIONS(1479), 6, + [15921] = 2, + ACTIONS(1232), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1477), 29, + ACTIONS(1230), 30, sym__verbatim_begin, - sym__image_description_end, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30287,6 +29777,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -30296,17 +29787,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15593] = 2, - ACTIONS(1483), 6, + [15962] = 2, + ACTIONS(1405), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1481), 29, + ACTIONS(1403), 30, sym__verbatim_begin, - sym__image_description_end, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30325,6 +29816,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -30334,17 +29826,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15633] = 2, - ACTIONS(1487), 6, + [16003] = 3, + ACTIONS(1497), 1, + sym__verbatim_begin, + ACTIONS(1205), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1485), 29, - sym__verbatim_begin, - sym__image_description_end, + ACTIONS(1209), 29, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30363,6 +29856,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -30372,17 +29866,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15673] = 2, - ACTIONS(1491), 6, + [16046] = 2, + ACTIONS(1393), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1489), 29, + ACTIONS(1391), 30, sym__verbatim_begin, - sym__image_description_end, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30401,6 +29895,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -30410,17 +29905,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15713] = 2, - ACTIONS(1495), 6, + [16087] = 2, + ACTIONS(1502), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1493), 29, + ACTIONS(1500), 30, sym__verbatim_begin, - sym__image_description_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30439,6 +29933,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -30448,17 +29943,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15753] = 2, - ACTIONS(1499), 6, + [16127] = 2, + ACTIONS(1232), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1497), 29, + ACTIONS(1230), 29, sym__verbatim_begin, - sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30477,6 +29971,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -30486,17 +29981,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15793] = 2, - ACTIONS(1503), 6, + [16167] = 2, + ACTIONS(1506), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1501), 29, + ACTIONS(1504), 30, sym__verbatim_begin, - sym__image_description_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30515,6 +30009,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -30524,17 +30019,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15833] = 2, - ACTIONS(1471), 6, + [16207] = 2, + ACTIONS(1510), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1469), 29, + ACTIONS(1508), 30, sym__verbatim_begin, - sym_emphasis_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30553,6 +30047,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -30562,17 +30057,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15873] = 2, - ACTIONS(1460), 6, + [16247] = 2, + ACTIONS(1506), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1458), 29, + ACTIONS(1504), 30, sym__verbatim_begin, - sym_emphasis_end, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30591,6 +30085,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -30600,18 +30095,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15913] = 3, - ACTIONS(1581), 1, - sym__verbatim_begin, - ACTIONS(1279), 6, + [16287] = 2, + ACTIONS(1514), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1283), 28, - sym_emphasis_end, + ACTIONS(1512), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30630,6 +30122,8 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -30639,17 +30133,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15955] = 2, - ACTIONS(1507), 6, + [16327] = 2, + ACTIONS(1502), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1505), 29, + ACTIONS(1500), 30, sym__verbatim_begin, - sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30668,6 +30160,8 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -30677,17 +30171,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15995] = 2, - ACTIONS(1511), 6, + [16367] = 2, + ACTIONS(1518), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1509), 29, + ACTIONS(1516), 30, sym__verbatim_begin, - sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30706,6 +30198,8 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -30715,17 +30209,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16035] = 2, - ACTIONS(1511), 6, + [16407] = 2, + ACTIONS(1510), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1509), 29, + ACTIONS(1508), 30, sym__verbatim_begin, - sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30744,6 +30236,8 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -30753,17 +30247,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16075] = 2, - ACTIONS(1442), 6, + [16447] = 2, + ACTIONS(1502), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1440), 29, + ACTIONS(1500), 30, sym__verbatim_begin, - sym__image_description_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30782,6 +30275,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -30791,17 +30285,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16115] = 2, - ACTIONS(1507), 6, + [16487] = 2, + ACTIONS(1518), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1505), 29, + ACTIONS(1516), 30, sym__verbatim_begin, - sym__bracketed_text_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30820,6 +30313,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -30829,17 +30323,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16155] = 2, - ACTIONS(1515), 6, + [16527] = 2, + ACTIONS(1518), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1513), 29, + ACTIONS(1516), 30, sym__verbatim_begin, - sym__image_description_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30858,6 +30351,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -30867,17 +30361,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16195] = 2, - ACTIONS(1519), 6, + [16567] = 2, + ACTIONS(1502), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1517), 29, + ACTIONS(1500), 30, sym__verbatim_begin, - sym__image_description_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30896,6 +30389,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -30905,17 +30399,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16235] = 2, - ACTIONS(1523), 6, + [16607] = 2, + ACTIONS(1506), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1521), 29, + ACTIONS(1504), 30, sym__verbatim_begin, - sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30934,6 +30426,8 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -30943,17 +30437,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16275] = 2, - ACTIONS(1527), 6, + [16647] = 2, + ACTIONS(1514), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1525), 29, + ACTIONS(1512), 30, sym__verbatim_begin, - sym__image_description_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30972,6 +30465,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -30981,17 +30475,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16315] = 2, - ACTIONS(1531), 6, + [16687] = 2, + ACTIONS(1514), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1529), 29, + ACTIONS(1512), 30, sym__verbatim_begin, - sym__image_description_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31010,6 +30503,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -31019,17 +30513,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16355] = 2, - ACTIONS(1535), 6, + [16727] = 2, + ACTIONS(1510), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1533), 29, + ACTIONS(1508), 30, sym__verbatim_begin, - sym__image_description_end, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31048,6 +30541,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -31057,17 +30551,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16395] = 2, - ACTIONS(1539), 6, + [16767] = 2, + ACTIONS(1506), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1537), 29, + ACTIONS(1504), 30, sym__verbatim_begin, - sym__image_description_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31086,6 +30579,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -31095,17 +30589,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16435] = 2, - ACTIONS(1543), 6, + [16807] = 2, + ACTIONS(1506), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1541), 29, + ACTIONS(1504), 30, sym__verbatim_begin, - sym__image_description_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31124,6 +30617,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -31133,17 +30627,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16475] = 2, - ACTIONS(1446), 6, + [16847] = 2, + ACTIONS(1518), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1444), 29, + ACTIONS(1516), 30, sym__verbatim_begin, - sym__image_description_end, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31162,6 +30655,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -31171,17 +30665,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16515] = 2, - ACTIONS(1450), 6, + [16887] = 2, + ACTIONS(1514), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1448), 29, + ACTIONS(1512), 30, sym__verbatim_begin, - sym__image_description_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31200,6 +30693,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -31209,17 +30703,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16555] = 2, - ACTIONS(1454), 6, + [16927] = 2, + ACTIONS(1502), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1452), 29, + ACTIONS(1500), 30, sym__verbatim_begin, - sym__image_description_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31238,6 +30731,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -31247,17 +30741,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16595] = 2, - ACTIONS(1438), 6, + [16967] = 2, + ACTIONS(1518), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1436), 29, + ACTIONS(1516), 30, sym__verbatim_begin, - sym__image_description_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31276,6 +30769,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -31285,18 +30779,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16635] = 3, - ACTIONS(1584), 1, - sym__verbatim_begin, - ACTIONS(1279), 6, + [17007] = 2, + ACTIONS(1510), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1283), 28, - ts_builtin_sym_end, + ACTIONS(1508), 30, + sym__verbatim_begin, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31315,6 +30807,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -31324,17 +30817,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16677] = 2, - ACTIONS(1503), 6, + [17047] = 2, + ACTIONS(1510), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1501), 29, + ACTIONS(1508), 30, sym__verbatim_begin, - sym__bracketed_text_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31353,6 +30845,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -31362,17 +30855,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16717] = 2, - ACTIONS(1464), 6, + [17087] = 2, + ACTIONS(1506), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1462), 29, + ACTIONS(1504), 30, sym__verbatim_begin, - sym__image_description_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31391,6 +30883,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -31400,17 +30893,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16757] = 2, - ACTIONS(1499), 6, + [17127] = 2, + ACTIONS(1518), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1497), 29, + ACTIONS(1516), 30, sym__verbatim_begin, - sym__bracketed_text_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31429,6 +30921,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -31438,17 +30931,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16797] = 2, - ACTIONS(1495), 6, + [17167] = 2, + ACTIONS(1506), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1493), 29, + ACTIONS(1504), 30, sym__verbatim_begin, - sym__bracketed_text_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31467,6 +30959,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -31476,17 +30969,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16837] = 2, - ACTIONS(1491), 6, + [17207] = 2, + ACTIONS(1514), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1489), 29, + ACTIONS(1512), 30, sym__verbatim_begin, - sym__bracketed_text_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31505,6 +30997,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -31514,17 +31007,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16877] = 2, - ACTIONS(1487), 6, + [17247] = 2, + ACTIONS(1502), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1485), 29, + ACTIONS(1500), 30, sym__verbatim_begin, - sym__bracketed_text_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31543,6 +31035,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -31552,18 +31045,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16917] = 3, - ACTIONS(1587), 1, - sym__verbatim_begin, - ACTIONS(1279), 6, + [17287] = 2, + ACTIONS(1518), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1283), 28, - sym__bracketed_text_end, + ACTIONS(1516), 30, + sym__verbatim_begin, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31582,6 +31073,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -31591,17 +31083,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16959] = 2, - ACTIONS(1460), 6, + [17327] = 2, + ACTIONS(1502), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1458), 29, + ACTIONS(1500), 30, sym__verbatim_begin, - sym__bracketed_text_end, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31620,6 +31111,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -31629,17 +31121,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16999] = 2, - ACTIONS(1471), 6, + [17367] = 2, + ACTIONS(1510), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1469), 29, + ACTIONS(1508), 30, sym__verbatim_begin, - sym__bracketed_text_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31658,6 +31149,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -31667,17 +31159,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17039] = 2, - ACTIONS(1464), 6, + [17407] = 2, + ACTIONS(1514), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1462), 29, + ACTIONS(1512), 30, sym__verbatim_begin, - ts_builtin_sym_end, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31696,6 +31187,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -31705,17 +31197,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17079] = 2, - ACTIONS(1296), 6, + [17447] = 2, + ACTIONS(1506), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1294), 29, + ACTIONS(1504), 30, sym__verbatim_begin, - sym__bracketed_text_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31734,6 +31225,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -31743,17 +31235,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17119] = 2, - ACTIONS(1475), 6, + [17487] = 2, + ACTIONS(1510), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1473), 29, + ACTIONS(1508), 30, sym__verbatim_begin, - sym__bracketed_text_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31772,6 +31263,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -31781,17 +31273,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17159] = 2, - ACTIONS(1483), 6, + [17527] = 3, + ACTIONS(1520), 1, + sym_strong_end, + ACTIONS(1224), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1481), 29, + ACTIONS(1222), 29, sym__verbatim_begin, - sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31810,6 +31302,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -31819,17 +31312,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17199] = 2, - ACTIONS(1479), 6, + [17569] = 2, + ACTIONS(1518), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1477), 29, + ACTIONS(1516), 30, sym__verbatim_begin, - sym__bracketed_text_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31848,6 +31340,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -31857,14 +31350,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17239] = 2, - ACTIONS(1592), 5, + [17609] = 2, + ACTIONS(1514), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1590), 29, + ACTIONS(1512), 30, sym__verbatim_begin, sym_highlighted_end, anon_sym_LBRACE_, @@ -31885,6 +31378,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -31894,16 +31388,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17278] = 2, - ACTIONS(1450), 6, + [17649] = 3, + ACTIONS(1522), 1, + sym__verbatim_begin, + ACTIONS(1205), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1448), 28, - sym__verbatim_begin, + ACTIONS(1209), 28, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31922,6 +31417,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -31931,16 +31427,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17317] = 2, - ACTIONS(1592), 5, + [17691] = 2, + ACTIONS(1393), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1590), 29, + ACTIONS(1391), 29, sym__verbatim_begin, - sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31959,6 +31455,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -31968,16 +31465,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17356] = 2, - ACTIONS(1596), 5, + [17731] = 2, + ACTIONS(1405), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1594), 29, + ACTIONS(1403), 29, sym__verbatim_begin, - sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31996,6 +31493,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -32005,16 +31503,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17395] = 2, - ACTIONS(1600), 5, + [17771] = 2, + ACTIONS(1502), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1598), 29, + ACTIONS(1500), 30, sym__verbatim_begin, - sym_superscript_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32033,6 +31531,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -32042,14 +31541,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17434] = 2, - ACTIONS(1604), 5, + [17811] = 2, + ACTIONS(1502), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1602), 29, + ACTIONS(1500), 30, sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, @@ -32070,6 +31569,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -32079,53 +31579,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17473] = 2, - ACTIONS(1596), 5, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - aux_sym__text_token1, - ACTIONS(1594), 29, - sym__verbatim_begin, - sym__image_description_end, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - sym_symbol, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - sym__whitespace1, - sym__newline, - [17512] = 2, - ACTIONS(1592), 5, + [17851] = 2, + ACTIONS(1351), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1590), 29, + ACTIONS(1349), 29, sym__verbatim_begin, - sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32144,6 +31607,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -32153,14 +31617,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17551] = 2, - ACTIONS(1608), 5, + [17891] = 2, + ACTIONS(1514), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1606), 29, + ACTIONS(1512), 30, sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, @@ -32181,6 +31645,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -32190,16 +31655,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17590] = 2, - ACTIONS(1608), 5, + [17931] = 2, + ACTIONS(1518), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1606), 29, + ACTIONS(1516), 30, sym__verbatim_begin, - sym__image_description_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32218,6 +31683,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -32227,16 +31693,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17629] = 2, - ACTIONS(1604), 5, + [17971] = 2, + ACTIONS(1361), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1602), 29, + ACTIONS(1359), 29, sym__verbatim_begin, - sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32255,6 +31721,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -32264,16 +31731,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17668] = 2, - ACTIONS(1604), 5, + [18011] = 2, + ACTIONS(1365), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1602), 29, + ACTIONS(1363), 29, sym__verbatim_begin, - sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32292,6 +31759,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -32301,16 +31769,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17707] = 2, - ACTIONS(1600), 5, + [18051] = 2, + ACTIONS(1369), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1598), 29, + ACTIONS(1367), 29, sym__verbatim_begin, - sym__image_description_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32329,6 +31797,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -32338,16 +31807,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17746] = 2, - ACTIONS(1608), 5, + [18091] = 2, + ACTIONS(1373), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1606), 29, + ACTIONS(1371), 29, sym__verbatim_begin, - sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32366,6 +31835,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -32375,16 +31845,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17785] = 2, - ACTIONS(1600), 5, + [18131] = 2, + ACTIONS(1377), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1598), 29, + ACTIONS(1375), 29, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32403,6 +31873,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -32412,16 +31883,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17824] = 2, - ACTIONS(1600), 5, + [18171] = 2, + ACTIONS(1381), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1598), 29, + ACTIONS(1379), 29, sym__verbatim_begin, - sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32440,6 +31911,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -32449,14 +31921,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17863] = 2, - ACTIONS(1596), 5, + [18211] = 2, + ACTIONS(1385), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1594), 29, + ACTIONS(1383), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32476,7 +31949,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -32486,15 +31959,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17902] = 2, - ACTIONS(1592), 5, + [18251] = 2, + ACTIONS(1510), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1590), 29, + ACTIONS(1508), 30, sym__verbatim_begin, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32513,7 +31987,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -32523,14 +31997,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17941] = 2, - ACTIONS(1608), 5, + [18291] = 3, + ACTIONS(1525), 1, + sym_strong_end, + ACTIONS(1224), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1606), 29, + ACTIONS(1222), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32550,7 +32026,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -32560,14 +32036,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17980] = 2, - ACTIONS(1604), 5, + [18333] = 2, + ACTIONS(1389), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1602), 29, + ACTIONS(1387), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32587,7 +32064,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -32597,15 +32074,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18019] = 2, - ACTIONS(1600), 5, + [18373] = 2, + ACTIONS(1506), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1598), 29, + ACTIONS(1504), 30, sym__verbatim_begin, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32624,7 +32102,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -32634,16 +32112,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18058] = 2, - ACTIONS(1604), 5, + [18413] = 2, + ACTIONS(1397), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1602), 29, + ACTIONS(1395), 29, sym__verbatim_begin, - sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32662,6 +32140,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -32671,16 +32150,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18097] = 3, - ACTIONS(1610), 1, - sym_strong_end, - ACTIONS(1306), 5, + [18453] = 2, + ACTIONS(1401), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1304), 28, + ACTIONS(1399), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32700,6 +32178,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -32709,14 +32188,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18138] = 2, - ACTIONS(1608), 5, + [18493] = 2, + ACTIONS(1514), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1606), 29, + ACTIONS(1512), 30, sym__verbatim_begin, sym_emphasis_end, anon_sym_LBRACE_, @@ -32737,6 +32216,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -32746,53 +32226,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18177] = 2, - ACTIONS(1596), 5, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - aux_sym__text_token1, - ACTIONS(1594), 29, - sym__verbatim_begin, - sym_delete_end, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - sym_symbol, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - sym__whitespace1, - sym__newline, - [18216] = 2, - ACTIONS(1592), 5, + [18533] = 2, + ACTIONS(1409), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1590), 29, + ACTIONS(1407), 29, sym__verbatim_begin, - sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32811,6 +32254,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -32820,16 +32264,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18255] = 2, - ACTIONS(1592), 5, + [18573] = 2, + ACTIONS(1355), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1590), 29, + ACTIONS(1353), 29, sym__verbatim_begin, - sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32848,6 +32292,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -32857,16 +32302,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18294] = 2, - ACTIONS(1596), 5, + [18613] = 2, + ACTIONS(1413), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1594), 29, + ACTIONS(1411), 29, sym__verbatim_begin, - sym__bracketed_text_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32885,6 +32330,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -32894,16 +32340,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18333] = 2, - ACTIONS(1608), 5, + [18653] = 2, + ACTIONS(1417), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1606), 29, + ACTIONS(1415), 29, sym__verbatim_begin, - sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32922,6 +32368,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -32931,16 +32378,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18372] = 2, - ACTIONS(1604), 5, + [18693] = 2, + ACTIONS(1421), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1602), 29, + ACTIONS(1419), 29, sym__verbatim_begin, - sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32959,6 +32406,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -32968,16 +32416,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18411] = 2, - ACTIONS(1600), 5, + [18733] = 2, + ACTIONS(1425), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1598), 29, + ACTIONS(1423), 29, sym__verbatim_begin, - sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32996,6 +32444,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -33005,16 +32454,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18450] = 2, - ACTIONS(1592), 5, + [18773] = 2, + ACTIONS(1429), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1590), 29, + ACTIONS(1427), 29, sym__verbatim_begin, - sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33033,6 +32482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -33042,16 +32492,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18489] = 2, - ACTIONS(1596), 5, + [18813] = 2, + ACTIONS(1433), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1594), 29, + ACTIONS(1431), 29, sym__verbatim_begin, - sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33070,6 +32520,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -33079,17 +32530,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18528] = 3, - ACTIONS(1612), 1, - sym__verbatim_begin, - ACTIONS(1279), 6, + [18853] = 2, + ACTIONS(1437), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1283), 27, + ACTIONS(1435), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33108,6 +32558,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -33117,15 +32568,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18569] = 2, - ACTIONS(1460), 6, + [18893] = 2, + ACTIONS(1441), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1458), 28, + ACTIONS(1439), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -33145,6 +32596,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -33154,15 +32606,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18608] = 2, - ACTIONS(1471), 6, + [18933] = 2, + ACTIONS(1445), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1469), 28, + ACTIONS(1443), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -33182,6 +32634,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -33191,14 +32644,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18647] = 2, - ACTIONS(1592), 5, + [18973] = 2, + ACTIONS(1510), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1590), 29, + ACTIONS(1508), 30, sym__verbatim_begin, ts_builtin_sym_end, anon_sym_LBRACE_, @@ -33219,6 +32672,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -33228,15 +32682,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18686] = 2, - ACTIONS(1296), 6, + [19013] = 2, + ACTIONS(1451), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1294), 28, + ACTIONS(1449), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -33256,6 +32710,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -33265,16 +32720,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18725] = 2, - ACTIONS(1475), 6, + [19053] = 2, + ACTIONS(1502), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1473), 28, + ACTIONS(1500), 30, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33293,6 +32748,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -33302,16 +32758,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18764] = 2, - ACTIONS(1596), 5, + [19093] = 2, + ACTIONS(1455), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1594), 29, + ACTIONS(1453), 29, sym__verbatim_begin, - sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33330,6 +32786,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -33339,16 +32796,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18803] = 2, - ACTIONS(1592), 5, + [19133] = 2, + ACTIONS(1506), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1590), 29, + ACTIONS(1504), 30, sym__verbatim_begin, - sym_insert_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33367,6 +32824,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -33376,15 +32834,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18842] = 2, - ACTIONS(1479), 6, + [19173] = 3, + ACTIONS(1525), 1, + sym_emphasis_end, + ACTIONS(1224), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1477), 28, + ACTIONS(1222), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -33404,6 +32863,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -33413,16 +32873,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18881] = 2, - ACTIONS(1483), 6, + [19215] = 2, + ACTIONS(1514), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1481), 28, + ACTIONS(1512), 30, sym__verbatim_begin, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33441,6 +32901,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -33450,16 +32911,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18920] = 2, - ACTIONS(1487), 6, + [19255] = 2, + ACTIONS(1518), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1485), 28, + ACTIONS(1516), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33478,6 +32939,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -33487,16 +32949,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18959] = 2, - ACTIONS(1596), 5, + [19295] = 2, + ACTIONS(1510), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1594), 29, + ACTIONS(1508), 30, sym__verbatim_begin, - ts_builtin_sym_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33515,6 +32977,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -33524,15 +32987,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18998] = 2, - ACTIONS(1495), 6, + [19335] = 3, + ACTIONS(1520), 1, + sym_emphasis_end, + ACTIONS(1224), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1493), 28, + ACTIONS(1222), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -33552,6 +33016,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -33561,15 +33026,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19037] = 2, - ACTIONS(1499), 6, + [19377] = 2, + ACTIONS(1514), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1497), 28, + ACTIONS(1512), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -33589,6 +33053,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -33598,15 +33063,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19076] = 2, - ACTIONS(1503), 6, + [19416] = 2, + ACTIONS(1502), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1501), 28, + ACTIONS(1500), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -33626,6 +33090,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -33635,16 +33100,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19115] = 2, - ACTIONS(1608), 5, + [19455] = 2, + ACTIONS(1518), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1606), 29, + ACTIONS(1516), 29, sym__verbatim_begin, - sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33663,6 +33127,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -33672,16 +33137,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19154] = 2, - ACTIONS(1600), 5, + [19494] = 2, + ACTIONS(1510), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1598), 29, + ACTIONS(1508), 29, sym__verbatim_begin, - sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33700,6 +33164,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -33709,15 +33174,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19193] = 2, - ACTIONS(1507), 6, + [19533] = 2, + ACTIONS(1506), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1505), 28, + ACTIONS(1504), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -33737,6 +33201,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -33746,7167 +33211,5381 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19232] = 3, - ACTIONS(1615), 1, - sym_strong_end, - ACTIONS(1306), 5, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - aux_sym__text_token1, - ACTIONS(1304), 28, - sym__verbatim_begin, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - sym_symbol, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - sym__whitespace1, - sym__newline, - [19273] = 2, - ACTIONS(1511), 6, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE, - aux_sym__text_token1, - ACTIONS(1509), 28, - sym__verbatim_begin, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - sym_symbol, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - sym__whitespace1, - sym__newline, - [19312] = 2, - ACTIONS(1442), 6, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE, - aux_sym__text_token1, - ACTIONS(1440), 28, - sym__verbatim_begin, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - sym_symbol, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - sym__whitespace1, - sym__newline, - [19351] = 2, - ACTIONS(1608), 5, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - aux_sym__text_token1, - ACTIONS(1606), 29, - sym__verbatim_begin, - sym_strong_end, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - sym_symbol, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - sym__whitespace1, - sym__newline, - [19390] = 2, - ACTIONS(1515), 6, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE, - aux_sym__text_token1, - ACTIONS(1513), 28, - sym__verbatim_begin, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - sym_symbol, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - sym__whitespace1, - sym__newline, - [19429] = 2, - ACTIONS(1519), 6, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE, - aux_sym__text_token1, - ACTIONS(1517), 28, - sym__verbatim_begin, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - sym_symbol, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - sym__whitespace1, - sym__newline, - [19468] = 2, - ACTIONS(1523), 6, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE, - aux_sym__text_token1, - ACTIONS(1521), 28, - sym__verbatim_begin, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - sym_symbol, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - sym__whitespace1, - sym__newline, - [19507] = 2, - ACTIONS(1527), 6, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE, - aux_sym__text_token1, - ACTIONS(1525), 28, - sym__verbatim_begin, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - sym_symbol, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - sym__whitespace1, - sym__newline, - [19546] = 2, - ACTIONS(1531), 6, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE, - aux_sym__text_token1, - ACTIONS(1529), 28, - sym__verbatim_begin, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - sym_symbol, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - sym__whitespace1, - sym__newline, - [19585] = 2, - ACTIONS(1535), 6, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE, - aux_sym__text_token1, - ACTIONS(1533), 28, - sym__verbatim_begin, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - sym_symbol, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - sym__whitespace1, - sym__newline, - [19624] = 2, - ACTIONS(1539), 6, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE, - aux_sym__text_token1, - ACTIONS(1537), 28, - sym__verbatim_begin, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - sym_symbol, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - sym__whitespace1, - sym__newline, - [19663] = 2, - ACTIONS(1543), 6, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE, - aux_sym__text_token1, - ACTIONS(1541), 28, - sym__verbatim_begin, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - sym_symbol, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - sym__whitespace1, - sym__newline, - [19702] = 2, - ACTIONS(1446), 6, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE, - aux_sym__text_token1, - ACTIONS(1444), 28, - sym__verbatim_begin, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - sym_symbol, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - sym__whitespace1, - sym__newline, - [19741] = 3, - ACTIONS(1615), 1, - sym_emphasis_end, - ACTIONS(1306), 5, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - aux_sym__text_token1, - ACTIONS(1304), 28, - sym__verbatim_begin, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - sym_symbol, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - sym__whitespace1, - sym__newline, - [19782] = 2, - ACTIONS(1454), 6, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE, - aux_sym__text_token1, - ACTIONS(1452), 28, - sym__verbatim_begin, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - sym_symbol, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - sym__whitespace1, - sym__newline, - [19821] = 2, - ACTIONS(1438), 6, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE, - aux_sym__text_token1, - ACTIONS(1436), 28, - sym__verbatim_begin, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - sym_symbol, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - sym__whitespace1, - sym__newline, - [19860] = 2, - ACTIONS(1604), 5, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - aux_sym__text_token1, - ACTIONS(1602), 29, - sym__verbatim_begin, - sym_subscript_end, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - sym_symbol, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - sym__whitespace1, - sym__newline, - [19899] = 2, - ACTIONS(1608), 5, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - aux_sym__text_token1, - ACTIONS(1606), 29, - sym__verbatim_begin, - sym_subscript_end, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - sym_symbol, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - sym__whitespace1, - sym__newline, - [19938] = 2, - ACTIONS(1464), 6, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE, - aux_sym__text_token1, - ACTIONS(1462), 28, - sym__verbatim_begin, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - sym_symbol, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - sym__whitespace1, - sym__newline, - [19977] = 2, - ACTIONS(1592), 5, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - aux_sym__text_token1, - ACTIONS(1590), 29, - sym__verbatim_begin, - sym_subscript_end, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - sym_symbol, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - sym__whitespace1, - sym__newline, - [20016] = 2, - ACTIONS(1596), 5, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - aux_sym__text_token1, - ACTIONS(1594), 29, - sym__verbatim_begin, - sym_subscript_end, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - sym_symbol, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - sym__whitespace1, - sym__newline, - [20055] = 2, - ACTIONS(1604), 5, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - aux_sym__text_token1, - ACTIONS(1602), 29, - sym__verbatim_begin, - ts_builtin_sym_end, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - sym_symbol, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - sym__whitespace1, - sym__newline, - [20094] = 2, - ACTIONS(1604), 5, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - aux_sym__text_token1, - ACTIONS(1602), 29, - sym__verbatim_begin, - sym_strong_end, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - sym_symbol, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - sym__whitespace1, - sym__newline, - [20133] = 2, - ACTIONS(1608), 5, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - aux_sym__text_token1, - ACTIONS(1606), 29, - sym__verbatim_begin, - sym_highlighted_end, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - sym_symbol, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - sym__whitespace1, - sym__newline, - [20172] = 3, - ACTIONS(1610), 1, - sym_emphasis_end, - ACTIONS(1306), 5, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - aux_sym__text_token1, - ACTIONS(1304), 28, - sym__verbatim_begin, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - sym_symbol, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - sym__whitespace1, - sym__newline, - [20213] = 2, - ACTIONS(1592), 5, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - aux_sym__text_token1, - ACTIONS(1590), 29, - sym__verbatim_begin, - sym_emphasis_end, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - sym_symbol, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - sym__whitespace1, - sym__newline, - [20252] = 2, - ACTIONS(1600), 5, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - aux_sym__text_token1, - ACTIONS(1598), 29, - sym__verbatim_begin, - sym_highlighted_end, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - sym_symbol, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - sym__whitespace1, - sym__newline, - [20291] = 2, - ACTIONS(1596), 5, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - aux_sym__text_token1, - ACTIONS(1594), 29, - sym__verbatim_begin, - sym_emphasis_end, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - sym_symbol, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - sym__whitespace1, - sym__newline, - [20330] = 2, - ACTIONS(1600), 5, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - aux_sym__text_token1, - ACTIONS(1598), 29, - sym__verbatim_begin, - sym_insert_end, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - sym_symbol, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - sym__whitespace1, - sym__newline, - [20369] = 2, - ACTIONS(1608), 5, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - aux_sym__text_token1, - ACTIONS(1606), 29, - sym__verbatim_begin, - ts_builtin_sym_end, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - sym_symbol, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - sym__whitespace1, - sym__newline, - [20408] = 2, - ACTIONS(1600), 5, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - aux_sym__text_token1, - ACTIONS(1598), 29, - sym__verbatim_begin, - sym_strong_end, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - sym_symbol, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - sym__whitespace1, - sym__newline, - [20447] = 2, - ACTIONS(1604), 5, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - aux_sym__text_token1, - ACTIONS(1602), 29, - sym__verbatim_begin, - sym_highlighted_end, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - sym_symbol, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - sym__whitespace1, - sym__newline, - [20486] = 2, - ACTIONS(1596), 5, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - aux_sym__text_token1, - ACTIONS(1594), 29, - sym__verbatim_begin, - sym_highlighted_end, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - sym_symbol, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - sym__whitespace1, - sym__newline, - [20525] = 2, - ACTIONS(1491), 6, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE, - aux_sym__text_token1, - ACTIONS(1489), 28, - sym__verbatim_begin, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - sym_symbol, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - sym__whitespace1, - sym__newline, - [20564] = 2, - ACTIONS(1600), 5, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - aux_sym__text_token1, - ACTIONS(1598), 29, - sym__verbatim_begin, - sym__bracketed_text_end, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - sym_symbol, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - sym__whitespace1, - sym__newline, - [20603] = 2, - ACTIONS(1604), 5, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - aux_sym__text_token1, - ACTIONS(1602), 29, - sym__verbatim_begin, - sym_insert_end, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - sym_symbol, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - sym__whitespace1, - sym__newline, - [20642] = 2, - ACTIONS(1596), 5, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - aux_sym__text_token1, - ACTIONS(1594), 28, - sym__verbatim_begin, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - sym_symbol, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - sym__whitespace1, - sym__newline, - [20680] = 2, - ACTIONS(1600), 5, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - aux_sym__text_token1, - ACTIONS(1598), 28, - sym__verbatim_begin, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - sym_symbol, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - sym__whitespace1, - sym__newline, - [20718] = 2, - ACTIONS(1604), 5, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - aux_sym__text_token1, - ACTIONS(1602), 28, - sym__verbatim_begin, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - sym_symbol, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - sym__whitespace1, - sym__newline, - [20756] = 2, - ACTIONS(1608), 5, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - aux_sym__text_token1, - ACTIONS(1606), 28, - sym__verbatim_begin, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - sym_symbol, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - sym__whitespace1, - sym__newline, - [20794] = 2, - ACTIONS(1592), 5, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - aux_sym__text_token1, - ACTIONS(1590), 28, - sym__verbatim_begin, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - sym_symbol, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - sym__whitespace1, - sym__newline, - [20832] = 9, - ACTIONS(1617), 1, - sym__id, - ACTIONS(1619), 1, - anon_sym_PERCENT, - ACTIONS(1623), 1, - anon_sym_DOT, - ACTIONS(1625), 1, - sym__inline_attribute_end, - STATE(661), 1, - aux_sym_inline_attribute_repeat1, - STATE(668), 1, - sym__comment_with_newline, - STATE(1079), 1, - sym_key, - STATE(667), 2, - sym_class, - sym_key_value, - ACTIONS(1621), 3, - sym__whitespace1, - sym__newline, - sym_identifier, - [20863] = 9, - ACTIONS(1617), 1, - sym__id, - ACTIONS(1619), 1, - anon_sym_PERCENT, - ACTIONS(1623), 1, - anon_sym_DOT, - ACTIONS(1627), 1, - sym__inline_attribute_end, - STATE(661), 1, - aux_sym_inline_attribute_repeat1, - STATE(668), 1, - sym__comment_with_newline, - STATE(1079), 1, - sym_key, - STATE(667), 2, - sym_class, - sym_key_value, - ACTIONS(1621), 3, - sym__whitespace1, - sym__newline, - sym_identifier, - [20894] = 9, - ACTIONS(1617), 1, - sym__id, - ACTIONS(1619), 1, - anon_sym_PERCENT, - ACTIONS(1623), 1, - anon_sym_DOT, - ACTIONS(1629), 1, - sym__inline_attribute_end, - STATE(652), 1, - aux_sym_inline_attribute_repeat1, - STATE(668), 1, - sym__comment_with_newline, - STATE(1079), 1, - sym_key, - STATE(667), 2, - sym_class, - sym_key_value, - ACTIONS(1621), 3, + [19572] = 9, + ACTIONS(1527), 1, + sym__id, + ACTIONS(1529), 1, + anon_sym_PERCENT, + ACTIONS(1533), 1, + anon_sym_DOT, + ACTIONS(1535), 1, + sym__curly_bracket_span_end, + STATE(592), 1, + aux_sym_inline_attribute_repeat1, + STATE(616), 1, + sym__comment_with_newline, + STATE(995), 1, + sym_key, + STATE(615), 2, + sym_class, + sym_key_value, + ACTIONS(1531), 3, sym__whitespace1, sym__newline, sym_identifier, - [20925] = 9, - ACTIONS(1617), 1, + [19603] = 9, + ACTIONS(1527), 1, sym__id, - ACTIONS(1619), 1, + ACTIONS(1529), 1, anon_sym_PERCENT, - ACTIONS(1623), 1, + ACTIONS(1533), 1, anon_sym_DOT, - ACTIONS(1631), 1, - sym__inline_attribute_end, - STATE(664), 1, + ACTIONS(1537), 1, + sym__curly_bracket_span_end, + STATE(592), 1, aux_sym_inline_attribute_repeat1, - STATE(668), 1, + STATE(616), 1, sym__comment_with_newline, - STATE(1079), 1, + STATE(995), 1, sym_key, - STATE(667), 2, + STATE(615), 2, sym_class, sym_key_value, - ACTIONS(1621), 3, + ACTIONS(1531), 3, sym__whitespace1, sym__newline, sym_identifier, - [20956] = 9, - ACTIONS(1617), 1, + [19634] = 9, + ACTIONS(1527), 1, sym__id, - ACTIONS(1619), 1, + ACTIONS(1529), 1, anon_sym_PERCENT, - ACTIONS(1623), 1, + ACTIONS(1533), 1, anon_sym_DOT, - ACTIONS(1633), 1, - sym__inline_attribute_end, - STATE(661), 1, + ACTIONS(1539), 1, + sym__curly_bracket_span_end, + STATE(590), 1, aux_sym_inline_attribute_repeat1, - STATE(668), 1, + STATE(616), 1, sym__comment_with_newline, - STATE(1079), 1, + STATE(995), 1, sym_key, - STATE(667), 2, + STATE(615), 2, sym_class, sym_key_value, - ACTIONS(1621), 3, + ACTIONS(1531), 3, sym__whitespace1, sym__newline, sym_identifier, - [20987] = 9, - ACTIONS(1617), 1, + [19665] = 9, + ACTIONS(1527), 1, sym__id, - ACTIONS(1619), 1, + ACTIONS(1529), 1, anon_sym_PERCENT, - ACTIONS(1623), 1, + ACTIONS(1533), 1, anon_sym_DOT, - ACTIONS(1635), 1, - sym__inline_attribute_end, - STATE(661), 1, + ACTIONS(1541), 1, + sym__curly_bracket_span_end, + STATE(592), 1, aux_sym_inline_attribute_repeat1, - STATE(668), 1, + STATE(616), 1, sym__comment_with_newline, - STATE(1079), 1, + STATE(995), 1, sym_key, - STATE(667), 2, + STATE(615), 2, sym_class, sym_key_value, - ACTIONS(1621), 3, + ACTIONS(1531), 3, sym__whitespace1, sym__newline, sym_identifier, - [21018] = 9, - ACTIONS(1617), 1, + [19696] = 9, + ACTIONS(1527), 1, sym__id, - ACTIONS(1619), 1, + ACTIONS(1529), 1, anon_sym_PERCENT, - ACTIONS(1623), 1, + ACTIONS(1533), 1, anon_sym_DOT, - ACTIONS(1637), 1, - sym__inline_attribute_end, - STATE(645), 1, + ACTIONS(1543), 1, + sym__curly_bracket_span_end, + STATE(592), 1, aux_sym_inline_attribute_repeat1, - STATE(668), 1, + STATE(616), 1, sym__comment_with_newline, - STATE(1079), 1, + STATE(995), 1, sym_key, - STATE(667), 2, + STATE(615), 2, sym_class, sym_key_value, - ACTIONS(1621), 3, + ACTIONS(1531), 3, sym__whitespace1, sym__newline, sym_identifier, - [21049] = 9, - ACTIONS(1617), 1, + [19727] = 9, + ACTIONS(1545), 1, sym__id, - ACTIONS(1619), 1, + ACTIONS(1548), 1, anon_sym_PERCENT, - ACTIONS(1623), 1, + ACTIONS(1554), 1, anon_sym_DOT, - ACTIONS(1639), 1, - sym__inline_attribute_end, - STATE(641), 1, + ACTIONS(1557), 1, + sym__curly_bracket_span_end, + STATE(592), 1, aux_sym_inline_attribute_repeat1, - STATE(668), 1, + STATE(616), 1, sym__comment_with_newline, - STATE(1079), 1, + STATE(995), 1, sym_key, - STATE(667), 2, + STATE(615), 2, sym_class, sym_key_value, - ACTIONS(1621), 3, + ACTIONS(1551), 3, sym__whitespace1, sym__newline, sym_identifier, - [21080] = 9, - ACTIONS(1617), 1, + [19758] = 9, + ACTIONS(1527), 1, sym__id, - ACTIONS(1619), 1, + ACTIONS(1529), 1, anon_sym_PERCENT, - ACTIONS(1623), 1, + ACTIONS(1533), 1, anon_sym_DOT, - ACTIONS(1641), 1, - sym__inline_attribute_end, - STATE(650), 1, + ACTIONS(1559), 1, + sym__curly_bracket_span_end, + STATE(595), 1, aux_sym_inline_attribute_repeat1, - STATE(668), 1, + STATE(616), 1, sym__comment_with_newline, - STATE(1079), 1, + STATE(995), 1, sym_key, - STATE(667), 2, + STATE(615), 2, sym_class, sym_key_value, - ACTIONS(1621), 3, + ACTIONS(1531), 3, sym__whitespace1, sym__newline, sym_identifier, - [21111] = 9, - ACTIONS(1617), 1, + [19789] = 9, + ACTIONS(1527), 1, sym__id, - ACTIONS(1619), 1, + ACTIONS(1529), 1, anon_sym_PERCENT, - ACTIONS(1623), 1, + ACTIONS(1533), 1, anon_sym_DOT, - ACTIONS(1643), 1, - sym__inline_attribute_end, - STATE(661), 1, + ACTIONS(1561), 1, + sym__curly_bracket_span_end, + STATE(607), 1, aux_sym_inline_attribute_repeat1, - STATE(668), 1, + STATE(616), 1, sym__comment_with_newline, - STATE(1079), 1, + STATE(995), 1, sym_key, - STATE(667), 2, + STATE(615), 2, sym_class, sym_key_value, - ACTIONS(1621), 3, + ACTIONS(1531), 3, sym__whitespace1, sym__newline, sym_identifier, - [21142] = 9, - ACTIONS(1617), 1, + [19820] = 9, + ACTIONS(1527), 1, sym__id, - ACTIONS(1619), 1, + ACTIONS(1529), 1, anon_sym_PERCENT, - ACTIONS(1623), 1, + ACTIONS(1533), 1, anon_sym_DOT, - ACTIONS(1645), 1, - sym__inline_attribute_end, - STATE(661), 1, + ACTIONS(1563), 1, + sym__curly_bracket_span_end, + STATE(592), 1, aux_sym_inline_attribute_repeat1, - STATE(668), 1, + STATE(616), 1, sym__comment_with_newline, - STATE(1079), 1, + STATE(995), 1, sym_key, - STATE(667), 2, + STATE(615), 2, sym_class, sym_key_value, - ACTIONS(1621), 3, + ACTIONS(1531), 3, sym__whitespace1, sym__newline, sym_identifier, - [21173] = 9, - ACTIONS(1617), 1, + [19851] = 9, + ACTIONS(1527), 1, sym__id, - ACTIONS(1619), 1, + ACTIONS(1529), 1, anon_sym_PERCENT, - ACTIONS(1623), 1, + ACTIONS(1533), 1, anon_sym_DOT, - ACTIONS(1647), 1, - sym__inline_attribute_end, - STATE(640), 1, + ACTIONS(1565), 1, + sym__curly_bracket_span_end, + STATE(597), 1, aux_sym_inline_attribute_repeat1, - STATE(668), 1, + STATE(616), 1, sym__comment_with_newline, - STATE(1079), 1, + STATE(995), 1, sym_key, - STATE(667), 2, + STATE(615), 2, sym_class, sym_key_value, - ACTIONS(1621), 3, + ACTIONS(1531), 3, sym__whitespace1, sym__newline, sym_identifier, - [21204] = 9, - ACTIONS(1617), 1, + [19882] = 9, + ACTIONS(1527), 1, sym__id, - ACTIONS(1619), 1, + ACTIONS(1529), 1, anon_sym_PERCENT, - ACTIONS(1623), 1, + ACTIONS(1533), 1, anon_sym_DOT, - ACTIONS(1649), 1, - sym__inline_attribute_end, - STATE(661), 1, + ACTIONS(1567), 1, + sym__curly_bracket_span_end, + STATE(592), 1, aux_sym_inline_attribute_repeat1, - STATE(668), 1, + STATE(616), 1, sym__comment_with_newline, - STATE(1079), 1, + STATE(995), 1, sym_key, - STATE(667), 2, + STATE(615), 2, sym_class, sym_key_value, - ACTIONS(1621), 3, + ACTIONS(1531), 3, sym__whitespace1, sym__newline, sym_identifier, - [21235] = 9, - ACTIONS(1617), 1, + [19913] = 9, + ACTIONS(1527), 1, sym__id, - ACTIONS(1619), 1, + ACTIONS(1529), 1, anon_sym_PERCENT, - ACTIONS(1623), 1, + ACTIONS(1533), 1, anon_sym_DOT, - ACTIONS(1651), 1, - sym__inline_attribute_end, - STATE(649), 1, + ACTIONS(1569), 1, + sym__curly_bracket_span_end, + STATE(591), 1, aux_sym_inline_attribute_repeat1, - STATE(668), 1, + STATE(616), 1, sym__comment_with_newline, - STATE(1079), 1, + STATE(995), 1, sym_key, - STATE(667), 2, + STATE(615), 2, sym_class, sym_key_value, - ACTIONS(1621), 3, + ACTIONS(1531), 3, sym__whitespace1, sym__newline, sym_identifier, - [21266] = 9, - ACTIONS(1617), 1, + [19944] = 9, + ACTIONS(1527), 1, sym__id, - ACTIONS(1619), 1, + ACTIONS(1529), 1, anon_sym_PERCENT, - ACTIONS(1623), 1, + ACTIONS(1533), 1, anon_sym_DOT, - ACTIONS(1653), 1, - sym__inline_attribute_end, - STATE(657), 1, + ACTIONS(1571), 1, + sym__curly_bracket_span_end, + STATE(608), 1, aux_sym_inline_attribute_repeat1, - STATE(668), 1, + STATE(616), 1, sym__comment_with_newline, - STATE(1079), 1, + STATE(995), 1, sym_key, - STATE(667), 2, + STATE(615), 2, sym_class, sym_key_value, - ACTIONS(1621), 3, + ACTIONS(1531), 3, sym__whitespace1, sym__newline, sym_identifier, - [21297] = 9, - ACTIONS(1617), 1, + [19975] = 9, + ACTIONS(1527), 1, sym__id, - ACTIONS(1619), 1, + ACTIONS(1529), 1, anon_sym_PERCENT, - ACTIONS(1623), 1, + ACTIONS(1533), 1, anon_sym_DOT, - ACTIONS(1655), 1, - sym__inline_attribute_end, - STATE(660), 1, + ACTIONS(1573), 1, + sym__curly_bracket_span_end, + STATE(588), 1, aux_sym_inline_attribute_repeat1, - STATE(668), 1, + STATE(616), 1, sym__comment_with_newline, - STATE(1079), 1, + STATE(995), 1, sym_key, - STATE(667), 2, + STATE(615), 2, sym_class, sym_key_value, - ACTIONS(1621), 3, + ACTIONS(1531), 3, sym__whitespace1, sym__newline, sym_identifier, - [21328] = 9, - ACTIONS(1617), 1, + [20006] = 9, + ACTIONS(1527), 1, sym__id, - ACTIONS(1619), 1, + ACTIONS(1529), 1, anon_sym_PERCENT, - ACTIONS(1623), 1, + ACTIONS(1533), 1, anon_sym_DOT, - ACTIONS(1657), 1, - sym__inline_attribute_end, - STATE(661), 1, + ACTIONS(1575), 1, + sym__curly_bracket_span_end, + STATE(592), 1, aux_sym_inline_attribute_repeat1, - STATE(668), 1, + STATE(616), 1, sym__comment_with_newline, - STATE(1079), 1, + STATE(995), 1, sym_key, - STATE(667), 2, + STATE(615), 2, sym_class, sym_key_value, - ACTIONS(1621), 3, + ACTIONS(1531), 3, sym__whitespace1, sym__newline, sym_identifier, - [21359] = 9, - ACTIONS(1617), 1, + [20037] = 9, + ACTIONS(1527), 1, sym__id, - ACTIONS(1619), 1, + ACTIONS(1529), 1, anon_sym_PERCENT, - ACTIONS(1623), 1, + ACTIONS(1533), 1, anon_sym_DOT, - ACTIONS(1659), 1, - sym__inline_attribute_end, - STATE(661), 1, + ACTIONS(1577), 1, + sym__curly_bracket_span_end, + STATE(587), 1, aux_sym_inline_attribute_repeat1, - STATE(668), 1, + STATE(616), 1, sym__comment_with_newline, - STATE(1079), 1, + STATE(995), 1, sym_key, - STATE(667), 2, + STATE(615), 2, sym_class, sym_key_value, - ACTIONS(1621), 3, + ACTIONS(1531), 3, sym__whitespace1, sym__newline, sym_identifier, - [21390] = 9, - ACTIONS(1617), 1, + [20068] = 9, + ACTIONS(1527), 1, sym__id, - ACTIONS(1619), 1, + ACTIONS(1529), 1, anon_sym_PERCENT, - ACTIONS(1623), 1, + ACTIONS(1533), 1, anon_sym_DOT, - ACTIONS(1661), 1, - sym__inline_attribute_end, - STATE(644), 1, + ACTIONS(1579), 1, + sym__curly_bracket_span_end, + STATE(606), 1, aux_sym_inline_attribute_repeat1, - STATE(668), 1, + STATE(616), 1, sym__comment_with_newline, - STATE(1079), 1, + STATE(995), 1, sym_key, - STATE(667), 2, + STATE(615), 2, sym_class, sym_key_value, - ACTIONS(1621), 3, + ACTIONS(1531), 3, sym__whitespace1, sym__newline, sym_identifier, - [21421] = 9, - ACTIONS(1617), 1, + [20099] = 9, + ACTIONS(1527), 1, sym__id, - ACTIONS(1619), 1, + ACTIONS(1529), 1, anon_sym_PERCENT, - ACTIONS(1623), 1, + ACTIONS(1533), 1, anon_sym_DOT, - ACTIONS(1663), 1, - sym__inline_attribute_end, - STATE(662), 1, + ACTIONS(1581), 1, + sym__curly_bracket_span_end, + STATE(601), 1, aux_sym_inline_attribute_repeat1, - STATE(668), 1, + STATE(616), 1, sym__comment_with_newline, - STATE(1079), 1, + STATE(995), 1, sym_key, - STATE(667), 2, + STATE(615), 2, sym_class, sym_key_value, - ACTIONS(1621), 3, + ACTIONS(1531), 3, sym__whitespace1, sym__newline, sym_identifier, - [21452] = 9, - ACTIONS(1617), 1, + [20130] = 9, + ACTIONS(1527), 1, sym__id, - ACTIONS(1619), 1, + ACTIONS(1529), 1, anon_sym_PERCENT, - ACTIONS(1623), 1, + ACTIONS(1533), 1, anon_sym_DOT, - ACTIONS(1665), 1, - sym__inline_attribute_end, - STATE(661), 1, + ACTIONS(1583), 1, + sym__curly_bracket_span_end, + STATE(592), 1, aux_sym_inline_attribute_repeat1, - STATE(668), 1, + STATE(616), 1, sym__comment_with_newline, - STATE(1079), 1, + STATE(995), 1, sym_key, - STATE(667), 2, + STATE(615), 2, sym_class, sym_key_value, - ACTIONS(1621), 3, + ACTIONS(1531), 3, sym__whitespace1, sym__newline, sym_identifier, - [21483] = 9, - ACTIONS(1667), 1, + [20161] = 9, + ACTIONS(1527), 1, sym__id, - ACTIONS(1670), 1, + ACTIONS(1529), 1, anon_sym_PERCENT, - ACTIONS(1676), 1, + ACTIONS(1533), 1, anon_sym_DOT, - ACTIONS(1679), 1, - sym__inline_attribute_end, - STATE(661), 1, + ACTIONS(1585), 1, + sym__curly_bracket_span_end, + STATE(592), 1, aux_sym_inline_attribute_repeat1, - STATE(668), 1, + STATE(616), 1, sym__comment_with_newline, - STATE(1079), 1, + STATE(995), 1, sym_key, - STATE(667), 2, + STATE(615), 2, sym_class, sym_key_value, - ACTIONS(1673), 3, + ACTIONS(1531), 3, sym__whitespace1, sym__newline, sym_identifier, - [21514] = 9, - ACTIONS(1617), 1, + [20192] = 9, + ACTIONS(1527), 1, sym__id, - ACTIONS(1619), 1, + ACTIONS(1529), 1, anon_sym_PERCENT, - ACTIONS(1623), 1, + ACTIONS(1533), 1, anon_sym_DOT, - ACTIONS(1681), 1, - sym__inline_attribute_end, - STATE(661), 1, + ACTIONS(1587), 1, + sym__curly_bracket_span_end, + STATE(592), 1, aux_sym_inline_attribute_repeat1, - STATE(668), 1, + STATE(616), 1, sym__comment_with_newline, - STATE(1079), 1, + STATE(995), 1, sym_key, - STATE(667), 2, + STATE(615), 2, sym_class, sym_key_value, - ACTIONS(1621), 3, + ACTIONS(1531), 3, sym__whitespace1, sym__newline, sym_identifier, - [21545] = 9, - ACTIONS(1617), 1, + [20223] = 9, + ACTIONS(1527), 1, sym__id, - ACTIONS(1619), 1, + ACTIONS(1529), 1, anon_sym_PERCENT, - ACTIONS(1623), 1, + ACTIONS(1533), 1, anon_sym_DOT, - ACTIONS(1683), 1, - sym__inline_attribute_end, - STATE(656), 1, + ACTIONS(1589), 1, + sym__curly_bracket_span_end, + STATE(592), 1, aux_sym_inline_attribute_repeat1, - STATE(668), 1, + STATE(616), 1, sym__comment_with_newline, - STATE(1079), 1, + STATE(995), 1, sym_key, - STATE(667), 2, + STATE(615), 2, sym_class, sym_key_value, - ACTIONS(1621), 3, + ACTIONS(1531), 3, sym__whitespace1, sym__newline, sym_identifier, - [21576] = 9, - ACTIONS(1617), 1, + [20254] = 9, + ACTIONS(1527), 1, sym__id, - ACTIONS(1619), 1, + ACTIONS(1529), 1, anon_sym_PERCENT, - ACTIONS(1623), 1, + ACTIONS(1533), 1, anon_sym_DOT, - ACTIONS(1685), 1, - sym__inline_attribute_end, - STATE(661), 1, + ACTIONS(1591), 1, + sym__curly_bracket_span_end, + STATE(605), 1, aux_sym_inline_attribute_repeat1, - STATE(668), 1, + STATE(616), 1, sym__comment_with_newline, - STATE(1079), 1, + STATE(995), 1, sym_key, - STATE(667), 2, + STATE(615), 2, sym_class, sym_key_value, - ACTIONS(1621), 3, + ACTIONS(1531), 3, sym__whitespace1, sym__newline, sym_identifier, - [21607] = 1, - ACTIONS(1687), 7, - sym__inline_attribute_end, + [20285] = 1, + ACTIONS(1593), 7, + sym__curly_bracket_span_end, sym__id, anon_sym_PERCENT, sym__whitespace1, sym__newline, anon_sym_DOT, sym_identifier, - [21617] = 1, - ACTIONS(1689), 7, - sym__inline_attribute_end, + [20295] = 1, + ACTIONS(1595), 7, + sym__curly_bracket_span_end, sym__id, anon_sym_PERCENT, sym__whitespace1, sym__newline, anon_sym_DOT, sym_identifier, - [21627] = 1, - ACTIONS(1691), 7, - sym__inline_attribute_end, + [20305] = 1, + ACTIONS(1597), 7, + sym__curly_bracket_span_end, sym__id, anon_sym_PERCENT, sym__whitespace1, sym__newline, anon_sym_DOT, sym_identifier, - [21637] = 1, - ACTIONS(1693), 7, - sym__inline_attribute_end, + [20315] = 1, + ACTIONS(1599), 7, + sym__curly_bracket_span_end, sym__id, anon_sym_PERCENT, sym__whitespace1, sym__newline, anon_sym_DOT, sym_identifier, - [21647] = 1, - ACTIONS(1695), 7, - sym__inline_attribute_end, + [20325] = 1, + ACTIONS(1601), 7, + sym__curly_bracket_span_end, sym__id, anon_sym_PERCENT, sym__whitespace1, sym__newline, anon_sym_DOT, sym_identifier, - [21657] = 1, - ACTIONS(1697), 7, - sym__inline_attribute_end, + [20335] = 1, + ACTIONS(1603), 7, + sym__curly_bracket_span_end, sym__id, anon_sym_PERCENT, sym__whitespace1, sym__newline, anon_sym_DOT, sym_identifier, - [21667] = 1, - ACTIONS(1699), 7, - sym__inline_attribute_end, + [20345] = 1, + ACTIONS(1605), 7, + sym__curly_bracket_span_end, sym__id, anon_sym_PERCENT, sym__whitespace1, sym__newline, anon_sym_DOT, sym_identifier, - [21677] = 1, - ACTIONS(1701), 7, - sym__inline_attribute_end, + [20355] = 1, + ACTIONS(1607), 7, + sym__curly_bracket_span_end, sym__id, anon_sym_PERCENT, sym__whitespace1, sym__newline, anon_sym_DOT, sym_identifier, - [21687] = 1, - ACTIONS(1703), 7, - sym__inline_attribute_end, + [20365] = 1, + ACTIONS(1609), 7, + sym__curly_bracket_span_end, sym__id, anon_sym_PERCENT, sym__whitespace1, sym__newline, anon_sym_DOT, sym_identifier, - [21697] = 5, - ACTIONS(1707), 1, - anon_sym_LBRACK, - ACTIONS(1709), 1, - anon_sym_LBRACE, - STATE(575), 1, - sym_inline_attribute, - STATE(1132), 1, - sym__inline_attribute_begin, - ACTIONS(1705), 2, - anon_sym_LBRACK_RBRACK, - anon_sym_LPAREN, - [21714] = 5, - ACTIONS(1707), 1, - anon_sym_LBRACK, - ACTIONS(1711), 1, - anon_sym_LBRACE, - STATE(631), 1, - sym_inline_attribute, - STATE(1052), 1, - sym__inline_attribute_begin, - ACTIONS(1705), 2, - anon_sym_LBRACK_RBRACK, - anon_sym_LPAREN, - [21731] = 5, - ACTIONS(1707), 1, - anon_sym_LBRACK, - ACTIONS(1713), 1, - anon_sym_LBRACE, - STATE(619), 1, - sym_inline_attribute, - STATE(1036), 1, - sym__inline_attribute_begin, - ACTIONS(1705), 2, - anon_sym_LBRACK_RBRACK, - anon_sym_LPAREN, - [21748] = 5, - ACTIONS(1707), 1, - anon_sym_LBRACK, - ACTIONS(1715), 1, - anon_sym_LBRACE, - STATE(587), 1, - sym_inline_attribute, - STATE(1020), 1, - sym__inline_attribute_begin, - ACTIONS(1705), 2, + [20375] = 6, + ACTIONS(1611), 1, anon_sym_LBRACK_RBRACK, - anon_sym_LPAREN, - [21765] = 5, - ACTIONS(1707), 1, + ACTIONS(1613), 1, anon_sym_LBRACK, - ACTIONS(1717), 1, - anon_sym_LBRACE, - STATE(592), 1, - sym_inline_attribute, - STATE(1127), 1, - sym__inline_attribute_begin, - ACTIONS(1705), 2, - anon_sym_LBRACK_RBRACK, + ACTIONS(1615), 1, anon_sym_LPAREN, - [21782] = 5, - ACTIONS(1707), 1, - anon_sym_LBRACK, - ACTIONS(1719), 1, - anon_sym_LBRACE, - STATE(635), 1, - sym_inline_attribute, - STATE(1148), 1, - sym__inline_attribute_begin, - ACTIONS(1705), 2, + STATE(382), 1, + sym__link_label, + STATE(383), 1, + sym_inline_link_destination, + STATE(1140), 1, + sym__parens_span_begin, + [20394] = 6, + ACTIONS(1617), 1, anon_sym_LBRACK_RBRACK, - anon_sym_LPAREN, - [21799] = 5, - ACTIONS(1707), 1, + ACTIONS(1619), 1, anon_sym_LBRACK, - ACTIONS(1721), 1, - anon_sym_LBRACE, - STATE(626), 1, - sym_inline_attribute, - STATE(987), 1, - sym__inline_attribute_begin, - ACTIONS(1705), 2, - anon_sym_LBRACK_RBRACK, + ACTIONS(1621), 1, anon_sym_LPAREN, - [21816] = 5, - ACTIONS(1707), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - STATE(580), 1, - sym_inline_attribute, - STATE(1068), 1, - sym__inline_attribute_begin, - ACTIONS(1705), 2, + STATE(271), 1, + sym__link_label, + STATE(273), 1, + sym_inline_link_destination, + STATE(1039), 1, + sym__parens_span_begin, + [20413] = 6, + ACTIONS(1623), 1, anon_sym_LBRACK_RBRACK, - anon_sym_LPAREN, - [21833] = 5, - ACTIONS(1707), 1, + ACTIONS(1625), 1, anon_sym_LBRACK, - ACTIONS(1725), 1, - anon_sym_LBRACE, - STATE(554), 1, - sym_inline_attribute, - STATE(1116), 1, - sym__inline_attribute_begin, - ACTIONS(1705), 2, - anon_sym_LBRACK_RBRACK, + ACTIONS(1627), 1, anon_sym_LPAREN, - [21850] = 5, - ACTIONS(1707), 1, + STATE(253), 1, + sym__link_label, + STATE(254), 1, + sym_inline_link_destination, + STATE(1110), 1, + sym__parens_span_begin, + [20432] = 5, + ACTIONS(1631), 1, anon_sym_LBRACK, - ACTIONS(1727), 1, + ACTIONS(1633), 1, anon_sym_LBRACE, - STATE(572), 1, + STATE(533), 1, sym_inline_attribute, - STATE(1084), 1, - sym__inline_attribute_begin, - ACTIONS(1705), 2, + STATE(1051), 1, + sym__curly_bracket_span_begin, + ACTIONS(1629), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - [21867] = 5, - ACTIONS(1707), 1, + [20449] = 6, + ACTIONS(1625), 1, anon_sym_LBRACK, - ACTIONS(1729), 1, - anon_sym_LBRACE, - STATE(564), 1, - sym_inline_attribute, - STATE(1100), 1, - sym__inline_attribute_begin, - ACTIONS(1705), 2, - anon_sym_LBRACK_RBRACK, + ACTIONS(1627), 1, anon_sym_LPAREN, - [21884] = 5, - ACTIONS(1707), 1, - anon_sym_LBRACK, - ACTIONS(1731), 1, - anon_sym_LBRACE, - STATE(551), 1, - sym_inline_attribute, - STATE(1004), 1, - sym__inline_attribute_begin, - ACTIONS(1705), 2, + ACTIONS(1635), 1, anon_sym_LBRACK_RBRACK, - anon_sym_LPAREN, - [21901] = 5, - ACTIONS(1733), 1, + STATE(250), 1, + sym__link_label, + STATE(251), 1, + sym_inline_link_destination, + STATE(1110), 1, + sym__parens_span_begin, + [20468] = 6, + ACTIONS(1637), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(1735), 1, + ACTIONS(1639), 1, anon_sym_LBRACK, - ACTIONS(1737), 1, + ACTIONS(1641), 1, anon_sym_LPAREN, - STATE(538), 1, + STATE(463), 1, sym_inline_link_destination, - STATE(539), 1, + STATE(471), 1, sym__link_label, - [21917] = 5, - ACTIONS(1735), 1, + STATE(1170), 1, + sym__parens_span_begin, + [20487] = 6, + ACTIONS(1639), 1, anon_sym_LBRACK, - ACTIONS(1737), 1, + ACTIONS(1641), 1, anon_sym_LPAREN, - ACTIONS(1739), 1, + ACTIONS(1643), 1, anon_sym_LBRACK_RBRACK, - STATE(534), 1, + STATE(473), 1, sym_inline_link_destination, - STATE(536), 1, + STATE(475), 1, sym__link_label, - [21933] = 5, - ACTIONS(1741), 1, + STATE(1170), 1, + sym__parens_span_begin, + [20506] = 6, + ACTIONS(1645), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(1743), 1, + ACTIONS(1647), 1, anon_sym_LBRACK, - ACTIONS(1745), 1, + ACTIONS(1649), 1, anon_sym_LPAREN, - STATE(298), 1, + STATE(217), 1, sym__link_label, - STATE(301), 1, + STATE(218), 1, sym_inline_link_destination, - [21949] = 5, - ACTIONS(1747), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(1749), 1, + STATE(1100), 1, + sym__parens_span_begin, + [20525] = 6, + ACTIONS(1647), 1, anon_sym_LBRACK, - ACTIONS(1751), 1, + ACTIONS(1649), 1, anon_sym_LPAREN, - STATE(508), 1, + ACTIONS(1651), 1, + anon_sym_LBRACK_RBRACK, + STATE(220), 1, sym__link_label, - STATE(509), 1, + STATE(221), 1, sym_inline_link_destination, - [21965] = 5, - ACTIONS(1743), 1, + STATE(1100), 1, + sym__parens_span_begin, + [20544] = 5, + ACTIONS(1631), 1, anon_sym_LBRACK, - ACTIONS(1745), 1, + ACTIONS(1653), 1, + anon_sym_LBRACE, + STATE(505), 1, + sym_inline_attribute, + STATE(1035), 1, + sym__curly_bracket_span_begin, + ACTIONS(1629), 2, + anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - ACTIONS(1753), 1, + [20561] = 6, + ACTIONS(1655), 1, anon_sym_LBRACK_RBRACK, - STATE(285), 1, - sym__link_label, - STATE(294), 1, + ACTIONS(1657), 1, + anon_sym_LBRACK, + ACTIONS(1659), 1, + anon_sym_LPAREN, + STATE(376), 1, sym_inline_link_destination, - [21981] = 5, - ACTIONS(1755), 1, + STATE(384), 1, + sym__link_label, + STATE(1090), 1, + sym__parens_span_begin, + [20580] = 6, + ACTIONS(1661), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(1757), 1, + ACTIONS(1663), 1, anon_sym_LBRACK, - ACTIONS(1759), 1, + ACTIONS(1665), 1, anon_sym_LPAREN, - STATE(292), 1, + STATE(552), 1, sym__link_label, - STATE(293), 1, + STATE(553), 1, sym_inline_link_destination, - [21997] = 3, - ACTIONS(1763), 1, - anon_sym_PERCENT, - STATE(695), 1, - aux_sym__comment_with_newline_repeat1, - ACTIONS(1761), 3, - sym_backslash_escape, - aux_sym__comment_with_newline_token1, - sym__newline, - [22009] = 5, - ACTIONS(1765), 1, + STATE(1180), 1, + sym__parens_span_begin, + [20599] = 6, + ACTIONS(1667), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(1767), 1, + ACTIONS(1669), 1, anon_sym_LBRACK, - ACTIONS(1769), 1, + ACTIONS(1671), 1, anon_sym_LPAREN, - STATE(468), 1, - sym__link_label, STATE(469), 1, + sym__link_label, + STATE(470), 1, sym_inline_link_destination, - [22025] = 5, - ACTIONS(1767), 1, + STATE(1160), 1, + sym__parens_span_begin, + [20618] = 5, + ACTIONS(1631), 1, anon_sym_LBRACK, - ACTIONS(1769), 1, - anon_sym_LPAREN, - ACTIONS(1771), 1, + ACTIONS(1673), 1, + anon_sym_LBRACE, + STATE(582), 1, + sym_inline_attribute, + STATE(1067), 1, + sym__curly_bracket_span_begin, + ACTIONS(1629), 2, anon_sym_LBRACK_RBRACK, - STATE(465), 1, - sym__link_label, - STATE(466), 1, - sym_inline_link_destination, - [22041] = 3, - ACTIONS(1776), 1, - anon_sym_PERCENT, - STATE(695), 1, - aux_sym__comment_with_newline_repeat1, - ACTIONS(1773), 3, - sym_backslash_escape, - aux_sym__comment_with_newline_token1, - sym__newline, - [22053] = 5, - ACTIONS(1757), 1, + anon_sym_LPAREN, + [20635] = 6, + ACTIONS(1669), 1, anon_sym_LBRACK, - ACTIONS(1759), 1, + ACTIONS(1671), 1, anon_sym_LPAREN, - ACTIONS(1778), 1, + ACTIONS(1675), 1, anon_sym_LBRACK_RBRACK, - STATE(289), 1, + STATE(466), 1, sym__link_label, - STATE(290), 1, + STATE(467), 1, sym_inline_link_destination, - [22069] = 3, - ACTIONS(1780), 1, - anon_sym_PERCENT, - STATE(695), 1, - aux_sym__comment_with_newline_repeat1, - ACTIONS(1761), 3, - sym_backslash_escape, - aux_sym__comment_with_newline_token1, - sym__newline, - [22081] = 5, - ACTIONS(1782), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(1784), 1, + STATE(1160), 1, + sym__parens_span_begin, + [20654] = 5, + ACTIONS(1631), 1, anon_sym_LBRACK, - ACTIONS(1786), 1, + ACTIONS(1677), 1, + anon_sym_LBRACE, + STATE(520), 1, + sym_inline_attribute, + STATE(1019), 1, + sym__curly_bracket_span_begin, + ACTIONS(1629), 2, + anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - STATE(424), 1, - sym__link_label, - STATE(425), 1, - sym_inline_link_destination, - [22097] = 5, - ACTIONS(1784), 1, + [20671] = 5, + ACTIONS(1631), 1, anon_sym_LBRACK, - ACTIONS(1786), 1, + ACTIONS(1679), 1, + anon_sym_LBRACE, + STATE(545), 1, + sym_inline_attribute, + STATE(955), 1, + sym__curly_bracket_span_begin, + ACTIONS(1629), 2, + anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - ACTIONS(1788), 1, + [20688] = 6, + ACTIONS(1681), 1, anon_sym_LBRACK_RBRACK, - STATE(421), 1, + ACTIONS(1683), 1, + anon_sym_LBRACK, + ACTIONS(1685), 1, + anon_sym_LPAREN, + STATE(291), 1, sym__link_label, - STATE(422), 1, + STATE(292), 1, sym_inline_link_destination, - [22113] = 5, - ACTIONS(1790), 1, + STATE(1120), 1, + sym__parens_span_begin, + [20707] = 6, + ACTIONS(1687), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(1792), 1, + ACTIONS(1689), 1, anon_sym_LBRACK, - ACTIONS(1794), 1, + ACTIONS(1691), 1, anon_sym_LPAREN, - STATE(249), 1, + STATE(426), 1, sym__link_label, - STATE(250), 1, + STATE(427), 1, sym_inline_link_destination, - [22129] = 5, - ACTIONS(1792), 1, + STATE(1150), 1, + sym__parens_span_begin, + [20726] = 6, + ACTIONS(1689), 1, anon_sym_LBRACK, - ACTIONS(1794), 1, + ACTIONS(1691), 1, anon_sym_LPAREN, - ACTIONS(1796), 1, + ACTIONS(1693), 1, anon_sym_LBRACK_RBRACK, - STATE(252), 1, + STATE(423), 1, sym__link_label, - STATE(253), 1, + STATE(424), 1, sym_inline_link_destination, - [22145] = 5, - ACTIONS(1749), 1, + STATE(1150), 1, + sym__parens_span_begin, + [20745] = 5, + ACTIONS(1631), 1, + anon_sym_LBRACK, + ACTIONS(1695), 1, + anon_sym_LBRACE, + STATE(528), 1, + sym_inline_attribute, + STATE(1003), 1, + sym__curly_bracket_span_begin, + ACTIONS(1629), 2, + anon_sym_LBRACK_RBRACK, + anon_sym_LPAREN, + [20762] = 6, + ACTIONS(1663), 1, anon_sym_LBRACK, - ACTIONS(1751), 1, + ACTIONS(1665), 1, anon_sym_LPAREN, - ACTIONS(1798), 1, + ACTIONS(1697), 1, anon_sym_LBRACK_RBRACK, - STATE(511), 1, + STATE(549), 1, sym__link_label, - STATE(512), 1, + STATE(550), 1, sym_inline_link_destination, - [22161] = 3, - ACTIONS(1800), 1, - anon_sym_PERCENT, - STATE(697), 1, - aux_sym__comment_with_newline_repeat1, - ACTIONS(1761), 3, - sym_backslash_escape, - aux_sym__comment_with_newline_token1, - sym__newline, - [22173] = 5, - ACTIONS(1802), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(1804), 1, + STATE(1180), 1, + sym__parens_span_begin, + [20781] = 5, + ACTIONS(1631), 1, anon_sym_LBRACK, - ACTIONS(1806), 1, - anon_sym_LPAREN, - STATE(326), 1, - sym_inline_link_destination, - STATE(330), 1, - sym__link_label, - [22189] = 5, - ACTIONS(1808), 1, + ACTIONS(1699), 1, + anon_sym_LBRACE, + STATE(560), 1, + sym_inline_attribute, + STATE(922), 1, + sym__curly_bracket_span_begin, + ACTIONS(1629), 2, anon_sym_LBRACK_RBRACK, - ACTIONS(1810), 1, - anon_sym_LBRACK, - ACTIONS(1812), 1, anon_sym_LPAREN, - STATE(380), 1, - sym__link_label, - STATE(381), 1, - sym_inline_link_destination, - [22205] = 5, - ACTIONS(1804), 1, + [20798] = 6, + ACTIONS(1657), 1, anon_sym_LBRACK, - ACTIONS(1806), 1, + ACTIONS(1659), 1, anon_sym_LPAREN, - ACTIONS(1814), 1, + ACTIONS(1701), 1, anon_sym_LBRACK_RBRACK, - STATE(320), 1, + STATE(386), 1, sym_inline_link_destination, - STATE(324), 1, + STATE(407), 1, sym__link_label, - [22221] = 5, - ACTIONS(1810), 1, + STATE(1090), 1, + sym__parens_span_begin, + [20817] = 6, + ACTIONS(1613), 1, anon_sym_LBRACK, - ACTIONS(1812), 1, + ACTIONS(1615), 1, anon_sym_LPAREN, - ACTIONS(1816), 1, - anon_sym_LBRACK_RBRACK, - STATE(377), 1, - sym__link_label, - STATE(378), 1, - sym_inline_link_destination, - [22237] = 5, - ACTIONS(1818), 1, + ACTIONS(1703), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(1820), 1, - anon_sym_LBRACK, - ACTIONS(1822), 1, - anon_sym_LPAREN, - STATE(591), 1, + STATE(379), 1, sym__link_label, - STATE(632), 1, + STATE(380), 1, sym_inline_link_destination, - [22253] = 3, - ACTIONS(1824), 1, - anon_sym_PERCENT, - STATE(692), 1, - aux_sym__comment_with_newline_repeat1, - ACTIONS(1761), 3, - sym_backslash_escape, - aux_sym__comment_with_newline_token1, - sym__newline, - [22265] = 5, - ACTIONS(1826), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(1828), 1, + STATE(1140), 1, + sym__parens_span_begin, + [20836] = 6, + ACTIONS(1619), 1, anon_sym_LBRACK, - ACTIONS(1830), 1, + ACTIONS(1621), 1, anon_sym_LPAREN, - STATE(336), 1, + ACTIONS(1705), 1, + anon_sym_LBRACK_RBRACK, + STATE(287), 1, sym__link_label, - STATE(337), 1, + STATE(288), 1, sym_inline_link_destination, - [22281] = 5, - ACTIONS(1820), 1, + STATE(1039), 1, + sym__parens_span_begin, + [20855] = 5, + ACTIONS(1631), 1, anon_sym_LBRACK, - ACTIONS(1822), 1, + ACTIONS(1707), 1, + anon_sym_LBRACE, + STATE(538), 1, + sym_inline_attribute, + STATE(987), 1, + sym__curly_bracket_span_begin, + ACTIONS(1629), 2, + anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - ACTIONS(1832), 1, + [20872] = 5, + ACTIONS(1631), 1, + anon_sym_LBRACK, + ACTIONS(1709), 1, + anon_sym_LBRACE, + STATE(515), 1, + sym_inline_attribute, + STATE(939), 1, + sym__curly_bracket_span_begin, + ACTIONS(1629), 2, + anon_sym_LBRACK_RBRACK, + anon_sym_LPAREN, + [20889] = 6, + ACTIONS(1683), 1, + anon_sym_LBRACK, + ACTIONS(1685), 1, + anon_sym_LPAREN, + ACTIONS(1711), 1, anon_sym_LBRACK_RBRACK, - STATE(594), 1, + STATE(294), 1, sym__link_label, - STATE(595), 1, + STATE(295), 1, sym_inline_link_destination, - [22297] = 5, - ACTIONS(1834), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(1836), 1, + STATE(1120), 1, + sym__parens_span_begin, + [20908] = 5, + ACTIONS(1631), 1, anon_sym_LBRACK, - ACTIONS(1838), 1, + ACTIONS(1713), 1, + anon_sym_LBRACE, + STATE(514), 1, + sym_inline_attribute, + STATE(1043), 1, + sym__curly_bracket_span_begin, + ACTIONS(1629), 2, + anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - STATE(472), 1, - sym_inline_link_destination, - STATE(493), 1, - sym__link_label, - [22313] = 5, - ACTIONS(1836), 1, + [20925] = 5, + ACTIONS(1631), 1, anon_sym_LBRACK, - ACTIONS(1838), 1, + ACTIONS(1715), 1, + anon_sym_LBRACE, + STATE(578), 1, + sym_inline_attribute, + STATE(971), 1, + sym__curly_bracket_span_begin, + ACTIONS(1629), 2, + anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - ACTIONS(1840), 1, + [20942] = 6, + ACTIONS(1717), 1, anon_sym_LBRACK_RBRACK, - STATE(462), 1, - sym_inline_link_destination, - STATE(470), 1, + ACTIONS(1719), 1, + anon_sym_LBRACK, + ACTIONS(1721), 1, + anon_sym_LPAREN, + STATE(338), 1, sym__link_label, - [22329] = 5, - ACTIONS(1828), 1, + STATE(339), 1, + sym_inline_link_destination, + STATE(1130), 1, + sym__parens_span_begin, + [20961] = 6, + ACTIONS(1719), 1, anon_sym_LBRACK, - ACTIONS(1830), 1, + ACTIONS(1721), 1, anon_sym_LPAREN, - ACTIONS(1842), 1, + ACTIONS(1723), 1, anon_sym_LBRACK_RBRACK, - STATE(333), 1, + STATE(335), 1, sym__link_label, - STATE(334), 1, + STATE(336), 1, sym_inline_link_destination, - [22345] = 1, - ACTIONS(1844), 4, + STATE(1130), 1, + sym__parens_span_begin, + [20980] = 3, + ACTIONS(1728), 1, + anon_sym_PERCENT, + STATE(652), 1, + aux_sym__comment_with_newline_repeat1, + ACTIONS(1725), 3, + sym_backslash_escape, + aux_sym__comment_with_newline_token1, + sym__newline, + [20992] = 3, + ACTIONS(1732), 1, + anon_sym_PERCENT, + STATE(656), 1, + aux_sym__comment_with_newline_repeat1, + ACTIONS(1730), 3, + sym_backslash_escape, + aux_sym__comment_with_newline_token1, + sym__newline, + [21004] = 3, + ACTIONS(1734), 1, + anon_sym_PERCENT, + STATE(655), 1, + aux_sym__comment_with_newline_repeat1, + ACTIONS(1730), 3, + sym_backslash_escape, + aux_sym__comment_with_newline_token1, + sym__newline, + [21016] = 3, + ACTIONS(1736), 1, + anon_sym_PERCENT, + STATE(652), 1, + aux_sym__comment_with_newline_repeat1, + ACTIONS(1730), 3, + sym_backslash_escape, + aux_sym__comment_with_newline_token1, + sym__newline, + [21028] = 3, + ACTIONS(1738), 1, + anon_sym_PERCENT, + STATE(652), 1, + aux_sym__comment_with_newline_repeat1, + ACTIONS(1730), 3, + sym_backslash_escape, + aux_sym__comment_with_newline_token1, + sym__newline, + [21040] = 1, + ACTIONS(1740), 4, sym_backslash_escape, anon_sym_PERCENT, aux_sym__comment_with_newline_token1, sym__newline, - [22352] = 2, - ACTIONS(1848), 1, + [21047] = 3, + ACTIONS(1742), 1, + anon_sym_DQUOTE, + ACTIONS(1744), 1, + aux_sym_value_token2, + STATE(618), 1, + sym_value, + [21057] = 2, + ACTIONS(1748), 1, anon_sym_LBRACK, - ACTIONS(1846), 2, + ACTIONS(1746), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - [22360] = 2, - ACTIONS(1852), 1, + [21065] = 2, + ACTIONS(1752), 1, anon_sym_LBRACK, - ACTIONS(1850), 2, + ACTIONS(1750), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - [22368] = 3, - ACTIONS(1854), 1, - anon_sym_DQUOTE, - ACTIONS(1856), 1, - aux_sym_value_token2, - STATE(670), 1, - sym_value, - [22378] = 2, - ACTIONS(1858), 1, + [21073] = 2, + ACTIONS(1754), 1, + sym__square_bracket_span_begin, + ACTIONS(1757), 1, + sym__in_fallback, + [21080] = 2, + ACTIONS(1759), 1, + sym__emphasis_mark_begin, + ACTIONS(1762), 1, + sym__in_fallback, + [21087] = 1, + ACTIONS(1764), 2, + sym__parens_span_mark_begin, + sym__in_fallback, + [21092] = 2, + ACTIONS(1766), 1, + sym__emphasis_mark_begin, + ACTIONS(1769), 1, + sym__in_fallback, + [21099] = 2, + ACTIONS(1769), 1, + sym__in_fallback, + ACTIONS(1771), 1, sym__strong_mark_begin, - ACTIONS(1861), 1, + [21106] = 2, + ACTIONS(1774), 1, + sym__curly_bracket_span_mark_begin, + ACTIONS(1777), 1, sym__in_fallback, - [22385] = 2, - ACTIONS(1863), 1, - sym__id, - STATE(1024), 1, - sym_reference_label, - [22392] = 2, - ACTIONS(1865), 1, + [21113] = 2, + ACTIONS(1764), 1, + sym__in_fallback, + ACTIONS(1779), 1, + sym__square_bracket_span_begin, + [21120] = 2, + ACTIONS(1782), 1, sym__emphasis_mark_begin, - ACTIONS(1868), 1, + ACTIONS(1785), 1, sym__in_fallback, - [22399] = 2, - ACTIONS(1868), 1, + [21127] = 2, + ACTIONS(1787), 1, + sym__emphasis_mark_begin, + ACTIONS(1790), 1, + sym__in_fallback, + [21134] = 2, + ACTIONS(1790), 1, sym__in_fallback, - ACTIONS(1870), 1, + ACTIONS(1792), 1, sym__strong_mark_begin, - [22406] = 2, - ACTIONS(1868), 1, + [21141] = 2, + ACTIONS(1790), 1, sym__in_fallback, - ACTIONS(1873), 1, + ACTIONS(1795), 1, sym__superscript_mark_begin, - [22413] = 2, - ACTIONS(1868), 1, + [21148] = 2, + ACTIONS(1790), 1, sym__in_fallback, - ACTIONS(1876), 1, + ACTIONS(1798), 1, sym__subscript_mark_begin, - [22420] = 2, - ACTIONS(1868), 1, + [21155] = 2, + ACTIONS(1790), 1, sym__in_fallback, - ACTIONS(1879), 1, + ACTIONS(1801), 1, sym__highlighted_mark_begin, - [22427] = 2, - ACTIONS(1868), 1, + [21162] = 2, + ACTIONS(1790), 1, sym__in_fallback, - ACTIONS(1882), 1, + ACTIONS(1804), 1, sym__insert_mark_begin, - [22434] = 2, - ACTIONS(1868), 1, + [21169] = 2, + ACTIONS(1790), 1, sym__in_fallback, - ACTIONS(1885), 1, + ACTIONS(1807), 1, sym__delete_mark_begin, - [22441] = 2, - ACTIONS(1868), 1, + [21176] = 2, + ACTIONS(1790), 1, sym__in_fallback, - ACTIONS(1888), 1, - sym__footnote_marker_mark_begin, - [22448] = 2, - ACTIONS(1891), 1, - sym__emphasis_mark_begin, - ACTIONS(1894), 1, + ACTIONS(1810), 1, + sym__square_bracket_span_begin, + [21183] = 2, + ACTIONS(1790), 1, sym__in_fallback, - [22455] = 2, - ACTIONS(1894), 1, + ACTIONS(1813), 1, + sym__square_bracket_span_begin, + [21190] = 2, + ACTIONS(1790), 1, sym__in_fallback, - ACTIONS(1896), 1, + ACTIONS(1816), 1, + sym__square_bracket_span_begin, + [21197] = 2, + ACTIONS(1819), 1, + sym__id, + STATE(915), 1, + sym_reference_label, + [21204] = 1, + ACTIONS(1790), 2, + sym__parens_span_mark_begin, + sym__in_fallback, + [21209] = 2, + ACTIONS(1821), 1, + anon_sym_PERCENT, + STATE(907), 1, + sym__comment_with_newline, + [21216] = 2, + ACTIONS(1819), 1, + sym__id, + STATE(881), 1, + sym_reference_label, + [21223] = 2, + ACTIONS(1821), 1, + anon_sym_PERCENT, + STATE(873), 1, + sym__comment_with_newline, + [21230] = 2, + ACTIONS(1785), 1, + sym__in_fallback, + ACTIONS(1823), 1, sym__strong_mark_begin, - [22462] = 2, - ACTIONS(1894), 1, + [21237] = 2, + ACTIONS(1785), 1, sym__in_fallback, - ACTIONS(1899), 1, + ACTIONS(1826), 1, sym__superscript_mark_begin, - [22469] = 2, - ACTIONS(1894), 1, + [21244] = 2, + ACTIONS(1785), 1, sym__in_fallback, - ACTIONS(1902), 1, + ACTIONS(1829), 1, sym__subscript_mark_begin, - [22476] = 2, - ACTIONS(1894), 1, + [21251] = 2, + ACTIONS(1785), 1, sym__in_fallback, - ACTIONS(1905), 1, + ACTIONS(1832), 1, sym__highlighted_mark_begin, - [22483] = 2, - ACTIONS(1894), 1, + [21258] = 2, + ACTIONS(1785), 1, sym__in_fallback, - ACTIONS(1908), 1, + ACTIONS(1835), 1, sym__insert_mark_begin, - [22490] = 2, - ACTIONS(1894), 1, + [21265] = 2, + ACTIONS(1785), 1, sym__in_fallback, - ACTIONS(1911), 1, + ACTIONS(1838), 1, sym__delete_mark_begin, - [22497] = 2, - ACTIONS(1868), 1, - sym__in_fallback, - ACTIONS(1914), 1, - sym__image_description_mark_begin, - [22504] = 2, - ACTIONS(1894), 1, - sym__in_fallback, - ACTIONS(1917), 1, - sym__footnote_marker_mark_begin, - [22511] = 2, - ACTIONS(1894), 1, + [21272] = 2, + ACTIONS(1841), 1, + sym__strong_mark_begin, + ACTIONS(1844), 1, sym__in_fallback, - ACTIONS(1920), 1, - sym__image_description_mark_begin, - [22518] = 2, - ACTIONS(1894), 1, + [21279] = 2, + ACTIONS(1785), 1, sym__in_fallback, - ACTIONS(1923), 1, - sym__bracketed_text_mark_begin, - [22525] = 2, - ACTIONS(1868), 1, + ACTIONS(1846), 1, + sym__square_bracket_span_begin, + [21286] = 2, + ACTIONS(1785), 1, sym__in_fallback, - ACTIONS(1926), 1, - sym__bracketed_text_mark_begin, - [22532] = 2, - ACTIONS(1929), 1, - sym__emphasis_mark_begin, - ACTIONS(1932), 1, + ACTIONS(1849), 1, + sym__square_bracket_span_begin, + [21293] = 2, + ACTIONS(1785), 1, sym__in_fallback, - [22539] = 2, - ACTIONS(1932), 1, + ACTIONS(1852), 1, + sym__square_bracket_span_begin, + [21300] = 1, + ACTIONS(1785), 2, + sym__parens_span_mark_begin, sym__in_fallback, - ACTIONS(1934), 1, - sym__strong_mark_begin, - [22546] = 2, - ACTIONS(1937), 1, - sym__inline_attribute_mark_begin, - ACTIONS(1940), 1, + [21305] = 2, + ACTIONS(1764), 1, sym__in_fallback, - [22553] = 2, - ACTIONS(1863), 1, + ACTIONS(1855), 1, + sym__square_bracket_span_begin, + [21312] = 2, + ACTIONS(1819), 1, sym__id, - STATE(980), 1, + STATE(847), 1, sym_reference_label, - [22560] = 2, - ACTIONS(1942), 1, - anon_sym_PERCENT, - STATE(972), 1, - sym__comment_with_newline, - [22567] = 2, + [21319] = 2, + ACTIONS(1858), 1, + sym__curly_bracket_span_mark_begin, + ACTIONS(1861), 1, + sym__in_fallback, + [21326] = 2, ACTIONS(1863), 1, - sym__id, - STATE(947), 1, - sym_reference_label, - [22574] = 2, - ACTIONS(1944), 1, sym__emphasis_mark_begin, - ACTIONS(1947), 1, + ACTIONS(1866), 1, sym__in_fallback, - [22581] = 2, - ACTIONS(1947), 1, + [21333] = 2, + ACTIONS(1866), 1, sym__in_fallback, - ACTIONS(1949), 1, + ACTIONS(1868), 1, sym__strong_mark_begin, - [22588] = 2, - ACTIONS(1942), 1, + [21340] = 2, + ACTIONS(1871), 1, + sym__curly_bracket_span_mark_begin, + ACTIONS(1874), 1, + sym__in_fallback, + [21347] = 2, + ACTIONS(1764), 1, + sym__in_fallback, + ACTIONS(1876), 1, + sym__delete_mark_begin, + [21354] = 2, + ACTIONS(1821), 1, anon_sym_PERCENT, - STATE(939), 1, + STATE(1028), 1, sym__comment_with_newline, - [22595] = 2, - ACTIONS(1863), 1, + [21361] = 2, + ACTIONS(1819), 1, sym__id, - STATE(914), 1, + STATE(1011), 1, sym_reference_label, - [22602] = 2, - ACTIONS(1942), 1, + [21368] = 2, + ACTIONS(1821), 1, anon_sym_PERCENT, - STATE(1119), 1, + STATE(839), 1, sym__comment_with_newline, - [22609] = 2, - ACTIONS(1863), 1, + [21375] = 2, + ACTIONS(1819), 1, sym__id, - STATE(1095), 1, + STATE(861), 1, sym_reference_label, - [22616] = 2, - ACTIONS(1942), 1, + [21382] = 2, + ACTIONS(1821), 1, anon_sym_PERCENT, - STATE(906), 1, + STATE(871), 1, sym__comment_with_newline, - [22623] = 2, - ACTIONS(1863), 1, + [21389] = 2, + ACTIONS(1819), 1, sym__id, - STATE(921), 1, + STATE(897), 1, sym_reference_label, - [22630] = 2, - ACTIONS(1942), 1, + [21396] = 2, + ACTIONS(1821), 1, anon_sym_PERCENT, - STATE(930), 1, + STATE(917), 1, sym__comment_with_newline, - [22637] = 2, - ACTIONS(1863), 1, + [21403] = 2, + ACTIONS(1819), 1, sym__id, - STATE(958), 1, + STATE(959), 1, sym_reference_label, - [22644] = 2, - ACTIONS(1952), 1, - sym__emphasis_mark_begin, - ACTIONS(1955), 1, - sym__in_fallback, - [22651] = 2, - ACTIONS(1955), 1, - sym__in_fallback, - ACTIONS(1957), 1, - sym__strong_mark_begin, - [22658] = 2, - ACTIONS(1955), 1, - sym__in_fallback, - ACTIONS(1960), 1, - sym__superscript_mark_begin, - [22665] = 2, - ACTIONS(1955), 1, - sym__in_fallback, - ACTIONS(1963), 1, - sym__subscript_mark_begin, - [22672] = 2, - ACTIONS(1955), 1, - sym__in_fallback, - ACTIONS(1966), 1, - sym__highlighted_mark_begin, - [22679] = 2, - ACTIONS(1955), 1, - sym__in_fallback, - ACTIONS(1969), 1, - sym__insert_mark_begin, - [22686] = 2, - ACTIONS(1955), 1, - sym__in_fallback, - ACTIONS(1972), 1, - sym__delete_mark_begin, - [22693] = 2, - ACTIONS(1975), 1, + [21410] = 2, + ACTIONS(1879), 1, sym__id, - STATE(669), 1, + STATE(610), 1, sym_class_name, - [22700] = 2, - ACTIONS(1955), 1, - sym__in_fallback, - ACTIONS(1977), 1, - sym__footnote_marker_mark_begin, - [22707] = 2, - ACTIONS(1955), 1, + [21417] = 2, + ACTIONS(1844), 1, sym__in_fallback, - ACTIONS(1980), 1, - sym__image_description_mark_begin, - [22714] = 2, - ACTIONS(1955), 1, - sym__in_fallback, - ACTIONS(1983), 1, - sym__bracketed_text_mark_begin, - [22721] = 2, - ACTIONS(1942), 1, - anon_sym_PERCENT, - STATE(984), 1, - sym__comment_with_newline, - [22728] = 2, - ACTIONS(1986), 1, + ACTIONS(1881), 1, sym__emphasis_mark_begin, - ACTIONS(1989), 1, - sym__in_fallback, - [22735] = 2, - ACTIONS(1989), 1, - sym__in_fallback, - ACTIONS(1991), 1, - sym__strong_mark_begin, - [22742] = 2, - ACTIONS(1994), 1, - sym__inline_attribute_mark_begin, - ACTIONS(1997), 1, - sym__in_fallback, - [22749] = 2, - ACTIONS(1999), 1, - sym__subscript_mark_begin, - ACTIONS(2002), 1, - sym__in_fallback, - [22756] = 2, - ACTIONS(1863), 1, - sym__id, - STATE(1006), 1, - sym_reference_label, - [22763] = 2, - ACTIONS(2004), 1, - sym__inline_attribute_mark_begin, - ACTIONS(2007), 1, - sym__in_fallback, - [22770] = 2, - ACTIONS(2009), 1, - sym__strong_mark_begin, - ACTIONS(2012), 1, - sym__in_fallback, - [22777] = 2, - ACTIONS(1942), 1, + [21424] = 2, + ACTIONS(1821), 1, anon_sym_PERCENT, - STATE(1028), 1, + STATE(975), 1, sym__comment_with_newline, - [22784] = 2, - ACTIONS(2012), 1, + [21431] = 2, + ACTIONS(1764), 1, sym__in_fallback, - ACTIONS(2014), 1, - sym__superscript_mark_begin, - [22791] = 2, - ACTIONS(1863), 1, + ACTIONS(1884), 1, + sym__insert_mark_begin, + [21438] = 2, + ACTIONS(1819), 1, sym__id, - STATE(1058), 1, + STATE(991), 1, sym_reference_label, - [22798] = 2, - ACTIONS(2012), 1, - sym__in_fallback, - ACTIONS(2017), 1, - sym__subscript_mark_begin, - [22805] = 2, - ACTIONS(2012), 1, + [21445] = 2, + ACTIONS(1764), 1, sym__in_fallback, - ACTIONS(2020), 1, + ACTIONS(1887), 1, sym__highlighted_mark_begin, - [22812] = 2, - ACTIONS(2012), 1, - sym__in_fallback, - ACTIONS(2023), 1, - sym__insert_mark_begin, - [22819] = 2, - ACTIONS(2012), 1, - sym__in_fallback, - ACTIONS(2026), 1, - sym__delete_mark_begin, - [22826] = 2, - ACTIONS(2012), 1, - sym__in_fallback, - ACTIONS(2029), 1, - sym__footnote_marker_mark_begin, - [22833] = 2, - ACTIONS(2012), 1, - sym__in_fallback, - ACTIONS(2032), 1, - sym__image_description_mark_begin, - [22840] = 2, - ACTIONS(1942), 1, - anon_sym_PERCENT, - STATE(1075), 1, - sym__comment_with_newline, - [22847] = 2, - ACTIONS(2012), 1, + [21452] = 2, + ACTIONS(1762), 1, sym__in_fallback, - ACTIONS(2035), 1, - sym__bracketed_text_mark_begin, - [22854] = 2, - ACTIONS(1863), 1, - sym__id, - STATE(1118), 1, - sym_reference_label, - [22861] = 2, - ACTIONS(2038), 1, + ACTIONS(1890), 1, + sym__strong_mark_begin, + [21459] = 2, + ACTIONS(1893), 1, sym__emphasis_mark_begin, - ACTIONS(2041), 1, + ACTIONS(1896), 1, sym__in_fallback, - [22868] = 2, - ACTIONS(2041), 1, + [21466] = 2, + ACTIONS(1896), 1, sym__in_fallback, - ACTIONS(2043), 1, + ACTIONS(1898), 1, sym__strong_mark_begin, - [22875] = 2, - ACTIONS(2041), 1, + [21473] = 2, + ACTIONS(1896), 1, sym__in_fallback, - ACTIONS(2046), 1, + ACTIONS(1901), 1, sym__superscript_mark_begin, - [22882] = 2, - ACTIONS(2041), 1, + [21480] = 2, + ACTIONS(1896), 1, sym__in_fallback, - ACTIONS(2049), 1, + ACTIONS(1904), 1, sym__subscript_mark_begin, - [22889] = 2, - ACTIONS(2041), 1, + [21487] = 2, + ACTIONS(1896), 1, sym__in_fallback, - ACTIONS(2052), 1, + ACTIONS(1907), 1, sym__highlighted_mark_begin, - [22896] = 2, - ACTIONS(2041), 1, + [21494] = 2, + ACTIONS(1896), 1, sym__in_fallback, - ACTIONS(2055), 1, + ACTIONS(1910), 1, sym__insert_mark_begin, - [22903] = 2, - ACTIONS(2041), 1, + [21501] = 2, + ACTIONS(1896), 1, sym__in_fallback, - ACTIONS(2058), 1, + ACTIONS(1913), 1, sym__delete_mark_begin, - [22910] = 2, - ACTIONS(2061), 1, - sym__emphasis_mark_begin, - ACTIONS(2064), 1, + [21508] = 2, + ACTIONS(1762), 1, sym__in_fallback, - [22917] = 2, - ACTIONS(2041), 1, + ACTIONS(1916), 1, + sym__superscript_mark_begin, + [21515] = 2, + ACTIONS(1896), 1, sym__in_fallback, - ACTIONS(2066), 1, - sym__footnote_marker_mark_begin, - [22924] = 2, - ACTIONS(2041), 1, + ACTIONS(1919), 1, + sym__square_bracket_span_begin, + [21522] = 2, + ACTIONS(1896), 1, sym__in_fallback, - ACTIONS(2069), 1, - sym__image_description_mark_begin, - [22931] = 2, - ACTIONS(2041), 1, + ACTIONS(1922), 1, + sym__square_bracket_span_begin, + [21529] = 2, + ACTIONS(1896), 1, sym__in_fallback, - ACTIONS(2072), 1, - sym__bracketed_text_mark_begin, - [22938] = 2, - ACTIONS(2064), 1, + ACTIONS(1925), 1, + sym__square_bracket_span_begin, + [21536] = 1, + ACTIONS(1896), 2, + sym__parens_span_mark_begin, sym__in_fallback, - ACTIONS(2075), 1, - sym__strong_mark_begin, - [22945] = 2, - ACTIONS(2078), 1, - sym__inline_attribute_mark_begin, - ACTIONS(2081), 1, + [21541] = 2, + ACTIONS(1764), 1, sym__in_fallback, - [22952] = 2, - ACTIONS(1942), 1, - anon_sym_PERCENT, - STATE(1150), 1, - sym__comment_with_newline, - [22959] = 2, - ACTIONS(2083), 1, + ACTIONS(1928), 1, + sym__subscript_mark_begin, + [21548] = 2, + ACTIONS(1764), 1, + sym__in_fallback, + ACTIONS(1931), 1, + sym__superscript_mark_begin, + [21555] = 2, + ACTIONS(1762), 1, + sym__in_fallback, + ACTIONS(1934), 1, + sym__subscript_mark_begin, + [21562] = 2, + ACTIONS(1937), 1, sym__emphasis_mark_begin, - ACTIONS(2086), 1, + ACTIONS(1940), 1, sym__in_fallback, - [22966] = 2, - ACTIONS(2086), 1, + [21569] = 2, + ACTIONS(1940), 1, sym__in_fallback, - ACTIONS(2088), 1, + ACTIONS(1942), 1, sym__strong_mark_begin, - [22973] = 2, - ACTIONS(2091), 1, - sym__inline_attribute_mark_begin, - ACTIONS(2094), 1, + [21576] = 2, + ACTIONS(1945), 1, + sym__curly_bracket_span_mark_begin, + ACTIONS(1948), 1, sym__in_fallback, - [22980] = 2, - ACTIONS(2096), 1, - sym__inline_attribute_mark_begin, - ACTIONS(2099), 1, + [21583] = 2, + ACTIONS(1764), 1, sym__in_fallback, - [22987] = 2, - ACTIONS(1863), 1, - sym__id, - STATE(1225), 1, - sym_reference_label, - [22994] = 2, - ACTIONS(2012), 1, + ACTIONS(1950), 1, + sym__strong_mark_begin, + [21590] = 2, + ACTIONS(1762), 1, sym__in_fallback, - ACTIONS(2101), 1, - sym__emphasis_mark_begin, - [23001] = 2, - ACTIONS(1942), 1, + ACTIONS(1953), 1, + sym__highlighted_mark_begin, + [21597] = 2, + ACTIONS(1762), 1, + sym__in_fallback, + ACTIONS(1956), 1, + sym__insert_mark_begin, + [21604] = 2, + ACTIONS(1762), 1, + sym__in_fallback, + ACTIONS(1959), 1, + sym__delete_mark_begin, + [21611] = 2, + ACTIONS(1821), 1, anon_sym_PERCENT, - STATE(1043), 1, + STATE(1040), 1, sym__comment_with_newline, - [23008] = 2, - ACTIONS(1863), 1, + [21618] = 2, + ACTIONS(1819), 1, sym__id, - STATE(931), 1, + STATE(1077), 1, sym_reference_label, - [23015] = 2, - ACTIONS(2104), 1, - sym__emphasis_mark_begin, - ACTIONS(2107), 1, + [21625] = 2, + ACTIONS(1762), 1, sym__in_fallback, - [23022] = 2, - ACTIONS(2107), 1, - sym__in_fallback, - ACTIONS(2109), 1, - sym__strong_mark_begin, - [23029] = 2, - ACTIONS(2107), 1, + ACTIONS(1962), 1, + sym__square_bracket_span_begin, + [21632] = 2, + ACTIONS(1762), 1, sym__in_fallback, - ACTIONS(2112), 1, - sym__superscript_mark_begin, - [23036] = 2, - ACTIONS(2107), 1, + ACTIONS(1965), 1, + sym__square_bracket_span_begin, + [21639] = 2, + ACTIONS(1762), 1, sym__in_fallback, - ACTIONS(2115), 1, - sym__subscript_mark_begin, - [23043] = 2, - ACTIONS(2107), 1, + ACTIONS(1968), 1, + sym__square_bracket_span_begin, + [21646] = 1, + ACTIONS(1762), 2, + sym__parens_span_mark_begin, sym__in_fallback, - ACTIONS(2118), 1, - sym__highlighted_mark_begin, - [23050] = 2, - ACTIONS(1942), 1, - anon_sym_PERCENT, - STATE(970), 1, - sym__comment_with_newline, - [23057] = 2, - ACTIONS(2107), 1, + [21651] = 2, + ACTIONS(1971), 1, + sym__emphasis_mark_begin, + ACTIONS(1974), 1, sym__in_fallback, - ACTIONS(2121), 1, - sym__delete_mark_begin, - [23064] = 2, - ACTIONS(2107), 1, + [21658] = 2, + ACTIONS(1974), 1, sym__in_fallback, - ACTIONS(2124), 1, - sym__footnote_marker_mark_begin, - [23071] = 2, - ACTIONS(2127), 1, + ACTIONS(1976), 1, sym__strong_mark_begin, - ACTIONS(2130), 1, + [21665] = 2, + ACTIONS(1764), 1, sym__in_fallback, - [23078] = 2, - ACTIONS(2130), 1, - sym__in_fallback, - ACTIONS(2132), 1, + ACTIONS(1979), 1, sym__emphasis_mark_begin, - [23085] = 2, - ACTIONS(2107), 1, + [21672] = 2, + ACTIONS(1821), 1, + anon_sym_PERCENT, + STATE(1161), 1, + sym__comment_with_newline, + [21679] = 2, + ACTIONS(1982), 1, + sym__curly_bracket_span_mark_begin, + ACTIONS(1985), 1, sym__in_fallback, - ACTIONS(2135), 1, - sym__image_description_mark_begin, - [23092] = 2, - ACTIONS(2138), 1, + [21686] = 2, + ACTIONS(1819), 1, + sym__id, + STATE(1069), 1, + sym_reference_label, + [21693] = 2, + ACTIONS(1987), 1, sym__emphasis_mark_begin, - ACTIONS(2141), 1, + ACTIONS(1990), 1, sym__in_fallback, - [23099] = 2, - ACTIONS(2141), 1, + [21700] = 2, + ACTIONS(1990), 1, sym__in_fallback, - ACTIONS(2143), 1, + ACTIONS(1992), 1, sym__strong_mark_begin, - [23106] = 2, - ACTIONS(2141), 1, + [21707] = 2, + ACTIONS(1990), 1, sym__in_fallback, - ACTIONS(2146), 1, + ACTIONS(1995), 1, sym__superscript_mark_begin, - [23113] = 2, - ACTIONS(2141), 1, + [21714] = 2, + ACTIONS(1990), 1, sym__in_fallback, - ACTIONS(2149), 1, + ACTIONS(1998), 1, sym__subscript_mark_begin, - [23120] = 2, - ACTIONS(2141), 1, + [21721] = 2, + ACTIONS(1990), 1, sym__in_fallback, - ACTIONS(2152), 1, + ACTIONS(2001), 1, sym__highlighted_mark_begin, - [23127] = 2, - ACTIONS(2141), 1, + [21728] = 2, + ACTIONS(1990), 1, sym__in_fallback, - ACTIONS(2155), 1, + ACTIONS(2004), 1, sym__insert_mark_begin, - [23134] = 2, - ACTIONS(2141), 1, + [21735] = 2, + ACTIONS(1990), 1, sym__in_fallback, - ACTIONS(2158), 1, + ACTIONS(2007), 1, sym__delete_mark_begin, - [23141] = 2, - ACTIONS(2107), 1, - sym__in_fallback, - ACTIONS(2161), 1, - sym__bracketed_text_mark_begin, - [23148] = 2, - ACTIONS(2141), 1, - sym__in_fallback, - ACTIONS(2164), 1, - sym__footnote_marker_mark_begin, - [23155] = 2, - ACTIONS(2141), 1, + [21742] = 2, + ACTIONS(1821), 1, + anon_sym_PERCENT, + STATE(853), 1, + sym__comment_with_newline, + [21749] = 2, + ACTIONS(1990), 1, sym__in_fallback, - ACTIONS(2167), 1, - sym__image_description_mark_begin, - [23162] = 2, - ACTIONS(2141), 1, + ACTIONS(2010), 1, + sym__square_bracket_span_begin, + [21756] = 2, + ACTIONS(1990), 1, sym__in_fallback, - ACTIONS(2170), 1, - sym__bracketed_text_mark_begin, - [23169] = 2, - ACTIONS(2173), 1, - sym__emphasis_mark_begin, - ACTIONS(2176), 1, + ACTIONS(2013), 1, + sym__square_bracket_span_begin, + [21763] = 2, + ACTIONS(1990), 1, sym__in_fallback, - [23176] = 2, - ACTIONS(2002), 1, + ACTIONS(2016), 1, + sym__square_bracket_span_begin, + [21770] = 1, + ACTIONS(1990), 2, + sym__parens_span_mark_begin, sym__in_fallback, - ACTIONS(2178), 1, - sym__bracketed_text_mark_begin, - [23183] = 2, - ACTIONS(2176), 1, + [21775] = 2, + ACTIONS(1819), 1, + sym__id, + STATE(930), 1, + sym_reference_label, + [21782] = 2, + ACTIONS(1764), 1, sym__in_fallback, - ACTIONS(2181), 1, + ACTIONS(2019), 1, + sym__square_bracket_span_begin, + [21789] = 2, + ACTIONS(2022), 1, sym__strong_mark_begin, - [23190] = 2, - ACTIONS(2184), 1, + ACTIONS(2025), 1, + sym__in_fallback, + [21796] = 2, + ACTIONS(2027), 1, sym__emphasis_mark_begin, - ACTIONS(2187), 1, + ACTIONS(2030), 1, sym__in_fallback, - [23197] = 2, - ACTIONS(2187), 1, + [21803] = 2, + ACTIONS(2030), 1, sym__in_fallback, - ACTIONS(2189), 1, + ACTIONS(2032), 1, sym__strong_mark_begin, - [23204] = 2, - ACTIONS(2192), 1, - sym__inline_attribute_mark_begin, - ACTIONS(2195), 1, - sym__in_fallback, - [23211] = 2, - ACTIONS(2002), 1, + [21810] = 2, + ACTIONS(2035), 1, + sym__curly_bracket_span_mark_begin, + ACTIONS(2038), 1, sym__in_fallback, - ACTIONS(2197), 1, - sym__image_description_mark_begin, - [23218] = 2, - ACTIONS(1942), 1, + [21817] = 2, + ACTIONS(1821), 1, anon_sym_PERCENT, - STATE(1040), 1, + STATE(947), 1, sym__comment_with_newline, - [23225] = 2, - ACTIONS(2200), 1, - sym__inline_attribute_mark_begin, - ACTIONS(2203), 1, + [21824] = 2, + ACTIONS(2025), 1, sym__in_fallback, - [23232] = 2, - ACTIONS(2205), 1, - sym__inline_attribute_mark_begin, - ACTIONS(2208), 1, + ACTIONS(2040), 1, + sym__superscript_mark_begin, + [21831] = 2, + ACTIONS(2025), 1, + sym__in_fallback, + ACTIONS(2043), 1, + sym__subscript_mark_begin, + [21838] = 2, + ACTIONS(2025), 1, sym__in_fallback, - [23239] = 2, - ACTIONS(2210), 1, + ACTIONS(2046), 1, + sym__highlighted_mark_begin, + [21845] = 2, + ACTIONS(2049), 1, + sym__curly_bracket_span_mark_begin, + ACTIONS(2052), 1, + sym__in_fallback, + [21852] = 2, + ACTIONS(2054), 1, sym__strong_mark_begin, - ACTIONS(2213), 1, + ACTIONS(2057), 1, sym__in_fallback, - [23246] = 2, - ACTIONS(2213), 1, + [21859] = 2, + ACTIONS(2057), 1, sym__in_fallback, - ACTIONS(2215), 1, + ACTIONS(2059), 1, sym__emphasis_mark_begin, - [23253] = 2, - ACTIONS(1861), 1, + [21866] = 2, + ACTIONS(2025), 1, sym__in_fallback, - ACTIONS(2218), 1, - sym__bracketed_text_mark_begin, - [23260] = 2, - ACTIONS(1861), 1, + ACTIONS(2062), 1, + sym__insert_mark_begin, + [21873] = 2, + ACTIONS(2025), 1, sym__in_fallback, - ACTIONS(2221), 1, - sym__image_description_mark_begin, - [23267] = 2, - ACTIONS(1861), 1, + ACTIONS(2065), 1, + sym__delete_mark_begin, + [21880] = 1, + ACTIONS(1757), 2, + sym__parens_span_mark_begin, sym__in_fallback, - ACTIONS(2224), 1, - sym__footnote_marker_mark_begin, - [23274] = 2, - ACTIONS(1861), 1, + [21885] = 2, + ACTIONS(1757), 1, + sym__in_fallback, + ACTIONS(2068), 1, + sym__square_bracket_span_begin, + [21892] = 2, + ACTIONS(1757), 1, + sym__in_fallback, + ACTIONS(2071), 1, + sym__square_bracket_span_begin, + [21899] = 2, + ACTIONS(1757), 1, sym__in_fallback, - ACTIONS(2227), 1, + ACTIONS(2074), 1, sym__delete_mark_begin, - [23281] = 2, - ACTIONS(1861), 1, + [21906] = 2, + ACTIONS(1757), 1, sym__in_fallback, - ACTIONS(2230), 1, + ACTIONS(2077), 1, sym__insert_mark_begin, - [23288] = 2, - ACTIONS(1861), 1, + [21913] = 2, + ACTIONS(1757), 1, sym__in_fallback, - ACTIONS(2233), 1, + ACTIONS(2080), 1, sym__highlighted_mark_begin, - [23295] = 2, - ACTIONS(1861), 1, + [21920] = 2, + ACTIONS(1757), 1, sym__in_fallback, - ACTIONS(2236), 1, + ACTIONS(2083), 1, sym__subscript_mark_begin, - [23302] = 2, - ACTIONS(2002), 1, - sym__in_fallback, - ACTIONS(2239), 1, - sym__footnote_marker_mark_begin, - [23309] = 2, - ACTIONS(1861), 1, - sym__in_fallback, - ACTIONS(2242), 1, - sym__superscript_mark_begin, - [23316] = 2, - ACTIONS(1861), 1, - sym__in_fallback, - ACTIONS(2245), 1, - sym__emphasis_mark_begin, - [23323] = 2, - ACTIONS(2248), 1, + [21927] = 2, + ACTIONS(2086), 1, sym__emphasis_mark_begin, - ACTIONS(2251), 1, + ACTIONS(2089), 1, sym__in_fallback, - [23330] = 2, - ACTIONS(2251), 1, + [21934] = 2, + ACTIONS(2089), 1, sym__in_fallback, - ACTIONS(2253), 1, + ACTIONS(2091), 1, sym__strong_mark_begin, - [23337] = 2, - ACTIONS(2251), 1, + [21941] = 2, + ACTIONS(2089), 1, sym__in_fallback, - ACTIONS(2256), 1, + ACTIONS(2094), 1, sym__superscript_mark_begin, - [23344] = 2, - ACTIONS(2251), 1, + [21948] = 2, + ACTIONS(2089), 1, sym__in_fallback, - ACTIONS(2259), 1, + ACTIONS(2097), 1, sym__subscript_mark_begin, - [23351] = 2, - ACTIONS(2251), 1, + [21955] = 2, + ACTIONS(2089), 1, sym__in_fallback, - ACTIONS(2262), 1, + ACTIONS(2100), 1, sym__highlighted_mark_begin, - [23358] = 2, - ACTIONS(2251), 1, + [21962] = 2, + ACTIONS(2089), 1, sym__in_fallback, - ACTIONS(2265), 1, + ACTIONS(2103), 1, sym__insert_mark_begin, - [23365] = 2, - ACTIONS(2251), 1, + [21969] = 2, + ACTIONS(2089), 1, sym__in_fallback, - ACTIONS(2268), 1, + ACTIONS(2106), 1, sym__delete_mark_begin, - [23372] = 2, - ACTIONS(2271), 1, - sym__inline_attribute_mark_begin, - ACTIONS(2274), 1, + [21976] = 2, + ACTIONS(1757), 1, sym__in_fallback, - [23379] = 2, - ACTIONS(2251), 1, + ACTIONS(2109), 1, + sym__superscript_mark_begin, + [21983] = 2, + ACTIONS(2089), 1, sym__in_fallback, - ACTIONS(2276), 1, - sym__footnote_marker_mark_begin, - [23386] = 2, - ACTIONS(2251), 1, + ACTIONS(2112), 1, + sym__square_bracket_span_begin, + [21990] = 2, + ACTIONS(2089), 1, sym__in_fallback, - ACTIONS(2279), 1, - sym__image_description_mark_begin, - [23393] = 2, - ACTIONS(2251), 1, + ACTIONS(2115), 1, + sym__square_bracket_span_begin, + [21997] = 2, + ACTIONS(2089), 1, sym__in_fallback, - ACTIONS(2282), 1, - sym__bracketed_text_mark_begin, - [23400] = 2, - ACTIONS(2002), 1, + ACTIONS(2118), 1, + sym__square_bracket_span_begin, + [22004] = 1, + ACTIONS(2089), 2, + sym__parens_span_mark_begin, sym__in_fallback, - ACTIONS(2285), 1, - sym__delete_mark_begin, - [23407] = 2, - ACTIONS(2002), 1, + [22009] = 2, + ACTIONS(1757), 1, sym__in_fallback, - ACTIONS(2288), 1, - sym__insert_mark_begin, - [23414] = 2, - ACTIONS(2291), 1, + ACTIONS(2121), 1, sym__strong_mark_begin, - ACTIONS(2294), 1, + [22016] = 2, + ACTIONS(2025), 1, sym__in_fallback, - [23421] = 2, - ACTIONS(2296), 1, + ACTIONS(2124), 1, sym__emphasis_mark_begin, - ACTIONS(2299), 1, + [22023] = 2, + ACTIONS(1757), 1, sym__in_fallback, - [23428] = 2, - ACTIONS(2299), 1, + ACTIONS(2127), 1, + sym__emphasis_mark_begin, + [22030] = 2, + ACTIONS(2130), 1, + sym__emphasis_mark_begin, + ACTIONS(2133), 1, sym__in_fallback, - ACTIONS(2301), 1, - sym__strong_mark_begin, - [23435] = 2, - ACTIONS(2304), 1, - sym__inline_attribute_mark_begin, - ACTIONS(2307), 1, + [22037] = 2, + ACTIONS(2133), 1, sym__in_fallback, - [23442] = 2, - ACTIONS(2002), 1, + ACTIONS(2135), 1, + sym__strong_mark_begin, + [22044] = 2, + ACTIONS(2138), 1, + sym__curly_bracket_span_mark_begin, + ACTIONS(2141), 1, sym__in_fallback, - ACTIONS(2309), 1, - sym__highlighted_mark_begin, - [23449] = 2, - ACTIONS(2294), 1, + [22051] = 2, + ACTIONS(2025), 1, sym__in_fallback, - ACTIONS(2312), 1, - sym__emphasis_mark_begin, - [23456] = 2, - ACTIONS(2315), 1, - sym__bracketed_text_mark_begin, - ACTIONS(2318), 1, + ACTIONS(2143), 1, + sym__square_bracket_span_begin, + [22058] = 2, + ACTIONS(2025), 1, sym__in_fallback, - [23463] = 2, - ACTIONS(2318), 1, + ACTIONS(2146), 1, + sym__square_bracket_span_begin, + [22065] = 2, + ACTIONS(2025), 1, sym__in_fallback, - ACTIONS(2320), 1, - sym__image_description_mark_begin, - [23470] = 2, - ACTIONS(2318), 1, + ACTIONS(2149), 1, + sym__square_bracket_span_begin, + [22072] = 2, + ACTIONS(2152), 1, + sym__curly_bracket_span_mark_begin, + ACTIONS(2155), 1, sym__in_fallback, - ACTIONS(2323), 1, - sym__footnote_marker_mark_begin, - [23477] = 2, - ACTIONS(2318), 1, + [22079] = 2, + ACTIONS(2157), 1, + sym__strong_mark_begin, + ACTIONS(2160), 1, sym__in_fallback, - ACTIONS(2326), 1, - sym__delete_mark_begin, - [23484] = 2, - ACTIONS(2318), 1, + [22086] = 2, + ACTIONS(2160), 1, sym__in_fallback, - ACTIONS(2329), 1, - sym__insert_mark_begin, - [23491] = 2, - ACTIONS(2318), 1, + ACTIONS(2162), 1, + sym__emphasis_mark_begin, + [22093] = 1, + ACTIONS(2025), 2, + sym__parens_span_mark_begin, sym__in_fallback, - ACTIONS(2332), 1, - sym__highlighted_mark_begin, - [23498] = 2, - ACTIONS(2318), 1, + [22098] = 1, + ACTIONS(2165), 2, + sym__parens_span_mark_begin, sym__in_fallback, - ACTIONS(2335), 1, - sym__subscript_mark_begin, - [23505] = 2, - ACTIONS(2318), 1, + [22103] = 2, + ACTIONS(2165), 1, sym__in_fallback, - ACTIONS(2338), 1, - sym__superscript_mark_begin, - [23512] = 2, - ACTIONS(2318), 1, + ACTIONS(2167), 1, + sym__square_bracket_span_begin, + [22110] = 2, + ACTIONS(2165), 1, sym__in_fallback, - ACTIONS(2341), 1, - sym__strong_mark_begin, - [23519] = 2, - ACTIONS(2318), 1, + ACTIONS(2170), 1, + sym__square_bracket_span_begin, + [22117] = 2, + ACTIONS(2165), 1, sym__in_fallback, - ACTIONS(2344), 1, - sym__emphasis_mark_begin, - [23526] = 2, - ACTIONS(2347), 1, - sym__inline_attribute_mark_begin, - ACTIONS(2350), 1, + ACTIONS(2173), 1, + sym__square_bracket_span_begin, + [22124] = 2, + ACTIONS(2165), 1, sym__in_fallback, - [23533] = 2, - ACTIONS(2107), 1, + ACTIONS(2176), 1, + sym__delete_mark_begin, + [22131] = 2, + ACTIONS(2165), 1, sym__in_fallback, - ACTIONS(2352), 1, + ACTIONS(2179), 1, sym__insert_mark_begin, - [23540] = 2, - ACTIONS(2002), 1, + [22138] = 2, + ACTIONS(2165), 1, sym__in_fallback, - ACTIONS(2355), 1, - sym__superscript_mark_begin, - [23547] = 2, - ACTIONS(2358), 1, - sym__strong_mark_begin, - ACTIONS(2361), 1, + ACTIONS(2182), 1, + sym__highlighted_mark_begin, + [22145] = 2, + ACTIONS(2165), 1, sym__in_fallback, - [23554] = 2, - ACTIONS(2363), 1, + ACTIONS(2185), 1, + sym__subscript_mark_begin, + [22152] = 2, + ACTIONS(2165), 1, + sym__in_fallback, + ACTIONS(2188), 1, + sym__superscript_mark_begin, + [22159] = 2, + ACTIONS(2191), 1, sym__emphasis_mark_begin, - ACTIONS(2366), 1, + ACTIONS(2194), 1, sym__in_fallback, - [23561] = 2, - ACTIONS(2366), 1, + [22166] = 2, + ACTIONS(2194), 1, sym__in_fallback, - ACTIONS(2368), 1, + ACTIONS(2196), 1, sym__strong_mark_begin, - [23568] = 2, - ACTIONS(2366), 1, + [22173] = 2, + ACTIONS(2194), 1, sym__in_fallback, - ACTIONS(2371), 1, + ACTIONS(2199), 1, sym__superscript_mark_begin, - [23575] = 2, - ACTIONS(2366), 1, + [22180] = 2, + ACTIONS(2194), 1, sym__in_fallback, - ACTIONS(2374), 1, + ACTIONS(2202), 1, sym__subscript_mark_begin, - [23582] = 2, - ACTIONS(2366), 1, + [22187] = 2, + ACTIONS(2194), 1, sym__in_fallback, - ACTIONS(2377), 1, + ACTIONS(2205), 1, sym__highlighted_mark_begin, - [23589] = 2, - ACTIONS(2366), 1, + [22194] = 2, + ACTIONS(2194), 1, sym__in_fallback, - ACTIONS(2380), 1, + ACTIONS(2208), 1, sym__insert_mark_begin, - [23596] = 2, - ACTIONS(2366), 1, + [22201] = 2, + ACTIONS(2194), 1, sym__in_fallback, - ACTIONS(2383), 1, + ACTIONS(2211), 1, sym__delete_mark_begin, - [23603] = 2, - ACTIONS(2361), 1, + [22208] = 2, + ACTIONS(2165), 1, + sym__in_fallback, + ACTIONS(2214), 1, + sym__strong_mark_begin, + [22215] = 2, + ACTIONS(2194), 1, + sym__in_fallback, + ACTIONS(2217), 1, + sym__square_bracket_span_begin, + [22222] = 2, + ACTIONS(2194), 1, + sym__in_fallback, + ACTIONS(2220), 1, + sym__square_bracket_span_begin, + [22229] = 2, + ACTIONS(2194), 1, + sym__in_fallback, + ACTIONS(2223), 1, + sym__square_bracket_span_begin, + [22236] = 1, + ACTIONS(2194), 2, + sym__parens_span_mark_begin, sym__in_fallback, - ACTIONS(2386), 1, + [22241] = 2, + ACTIONS(2165), 1, + sym__in_fallback, + ACTIONS(2226), 1, + sym__emphasis_mark_begin, + [22248] = 2, + ACTIONS(2229), 1, sym__emphasis_mark_begin, - [23610] = 2, - ACTIONS(2366), 1, + ACTIONS(2232), 1, sym__in_fallback, - ACTIONS(2389), 1, - sym__footnote_marker_mark_begin, - [23617] = 2, - ACTIONS(2366), 1, + [22255] = 2, + ACTIONS(2232), 1, sym__in_fallback, - ACTIONS(2392), 1, - sym__image_description_mark_begin, - [23624] = 2, - ACTIONS(2366), 1, + ACTIONS(2234), 1, + sym__strong_mark_begin, + [22262] = 2, + ACTIONS(2237), 1, + sym__emphasis_mark_begin, + ACTIONS(2240), 1, sym__in_fallback, - ACTIONS(2395), 1, - sym__bracketed_text_mark_begin, - [23631] = 2, - ACTIONS(2002), 1, + [22269] = 2, + ACTIONS(2240), 1, sym__in_fallback, - ACTIONS(2398), 1, + ACTIONS(2242), 1, sym__strong_mark_begin, - [23638] = 2, - ACTIONS(2002), 1, + [22276] = 2, + ACTIONS(2245), 1, + sym__curly_bracket_span_mark_begin, + ACTIONS(2248), 1, sym__in_fallback, - ACTIONS(2401), 1, - sym__emphasis_mark_begin, - [23645] = 1, - ACTIONS(2404), 1, - sym__verbatim_end, - [23649] = 1, - ACTIONS(2406), 1, - sym__newline, - [23653] = 1, - ACTIONS(2408), 1, - anon_sym_RBRACE, - [23657] = 1, - ACTIONS(2410), 1, - anon_sym_RPAREN, - [23661] = 1, - ACTIONS(2412), 1, - anon_sym_RBRACE, - [23665] = 1, - ACTIONS(2414), 1, + [22283] = 2, + ACTIONS(2250), 1, + sym__curly_bracket_span_mark_begin, + ACTIONS(2253), 1, + sym__in_fallback, + [22290] = 1, + ACTIONS(2255), 1, sym__verbatim_end, - [23669] = 1, - ACTIONS(2416), 1, + [22294] = 1, + ACTIONS(2257), 1, anon_sym_RBRACE, - [23673] = 1, - ACTIONS(2418), 1, + [22298] = 1, + ACTIONS(2259), 1, sym_emphasis_end, - [23677] = 1, - ACTIONS(2420), 1, + [22302] = 1, + ACTIONS(2261), 1, sym_strong_end, - [23681] = 1, - ACTIONS(2422), 1, + [22306] = 1, + ACTIONS(2263), 1, sym_superscript_end, - [23685] = 1, - ACTIONS(2424), 1, + [22310] = 1, + ACTIONS(2265), 1, sym_subscript_end, - [23689] = 1, - ACTIONS(2426), 1, + [22314] = 1, + ACTIONS(2267), 1, sym_highlighted_end, - [23693] = 1, - ACTIONS(2428), 1, + [22318] = 1, + ACTIONS(2269), 1, sym_insert_end, - [23697] = 1, - ACTIONS(2430), 1, + [22322] = 1, + ACTIONS(2271), 1, sym_delete_end, - [23701] = 1, - ACTIONS(2432), 1, - sym_footnote_marker_end, - [23705] = 1, - ACTIONS(2434), 1, + [22326] = 1, + ACTIONS(2273), 1, + sym__square_bracket_span_end, + [22330] = 1, + ACTIONS(2275), 1, anon_sym_RBRACK, - [23709] = 1, - ACTIONS(2436), 1, - anon_sym_RPAREN, - [23713] = 1, - ACTIONS(2438), 1, - anon_sym_RPAREN, - [23717] = 1, - ACTIONS(2440), 1, - anon_sym_RBRACK, - [23721] = 1, - ACTIONS(2442), 1, + [22334] = 1, + ACTIONS(2277), 1, + sym__verbatim_end, + [22338] = 1, + ACTIONS(2279), 1, + sym__parens_span_end, + [22342] = 1, + ACTIONS(2281), 1, + sym__verbatim_end, + [22346] = 1, + ACTIONS(2283), 1, + anon_sym_RBRACE, + [22350] = 1, + ACTIONS(2285), 1, + anon_sym_RBRACE, + [22354] = 1, + ACTIONS(2287), 1, + sym__newline, + [22358] = 1, + ACTIONS(2289), 1, anon_sym_RBRACE, - [23725] = 1, - ACTIONS(2444), 1, + [22362] = 1, + ACTIONS(2291), 1, + sym_emphasis_end, + [22366] = 1, + ACTIONS(2293), 1, + sym__parens_span_end, + [22370] = 1, + ACTIONS(2295), 1, + sym_strong_end, + [22374] = 1, + ACTIONS(2297), 1, anon_sym_RBRACK, - [23729] = 1, - ACTIONS(2446), 1, - sym_footnote_marker_end, - [23733] = 1, - ACTIONS(2448), 1, + [22378] = 1, + ACTIONS(2299), 1, + sym__newline, + [22382] = 1, + ACTIONS(2301), 1, + sym__square_bracket_span_end, + [22386] = 1, + ACTIONS(2303), 1, sym_delete_end, - [23737] = 1, - ACTIONS(2450), 1, + [22390] = 1, + ACTIONS(2305), 1, sym_insert_end, - [23741] = 1, - ACTIONS(2452), 1, + [22394] = 1, + ACTIONS(2307), 1, sym_highlighted_end, - [23745] = 1, - ACTIONS(2454), 1, + [22398] = 1, + ACTIONS(2309), 1, + sym__verbatim_end, + [22402] = 1, + ACTIONS(2311), 1, sym_subscript_end, - [23749] = 1, - ACTIONS(2456), 1, + [22406] = 1, + ACTIONS(2313), 1, + sym__verbatim_end, + [22410] = 1, + ACTIONS(2315), 1, sym_superscript_end, - [23753] = 1, - ACTIONS(2458), 1, - sym__newline, - [23757] = 1, - ACTIONS(2460), 1, + [22414] = 1, + ACTIONS(2317), 1, sym_strong_end, - [23761] = 1, - ACTIONS(2462), 1, + [22418] = 1, + ACTIONS(2319), 1, sym_emphasis_end, - [23765] = 1, - ACTIONS(2464), 1, + [22422] = 1, + ACTIONS(2321), 1, anon_sym_RBRACE, - [23769] = 1, - ACTIONS(2466), 1, - sym_footnote_marker_end, - [23773] = 1, - ACTIONS(2468), 1, - sym_delete_end, - [23777] = 1, - ACTIONS(2470), 1, - sym__verbatim_end, - [23781] = 1, - ACTIONS(2472), 1, - sym__verbatim_end, - [23785] = 1, - ACTIONS(2474), 1, - sym__verbatim_end, - [23789] = 1, - ACTIONS(2476), 1, - sym__newline, - [23793] = 1, - ACTIONS(2478), 1, - sym_insert_end, - [23797] = 1, - ACTIONS(2480), 1, + [22426] = 1, + ACTIONS(2323), 1, sym__verbatim_end, - [23801] = 1, - ACTIONS(2482), 1, + [22430] = 1, + ACTIONS(2325), 1, anon_sym_RBRACE, - [23805] = 1, - ACTIONS(2484), 1, + [22434] = 1, + ACTIONS(2327), 1, sym_emphasis_end, - [23809] = 1, - ACTIONS(2486), 1, + [22438] = 1, + ACTIONS(2329), 1, sym_strong_end, - [23813] = 1, - ACTIONS(2488), 1, + [22442] = 1, + ACTIONS(2331), 1, sym_superscript_end, - [23817] = 1, - ACTIONS(2490), 1, + [22446] = 1, + ACTIONS(2333), 1, sym_subscript_end, - [23821] = 1, - ACTIONS(2492), 1, + [22450] = 1, + ACTIONS(2335), 1, sym_highlighted_end, - [23825] = 1, - ACTIONS(2494), 1, + [22454] = 1, + ACTIONS(2337), 1, sym_insert_end, - [23829] = 1, - ACTIONS(2496), 1, + [22458] = 1, + ACTIONS(2339), 1, sym_delete_end, - [23833] = 1, - ACTIONS(2498), 1, - sym_footnote_marker_end, - [23837] = 1, - ACTIONS(2500), 1, + [22462] = 1, + ACTIONS(2341), 1, + sym__square_bracket_span_end, + [22466] = 1, + ACTIONS(2343), 1, anon_sym_RBRACK, - [23841] = 1, - ACTIONS(2502), 1, - anon_sym_RPAREN, - [23845] = 1, - ACTIONS(2504), 1, - sym_highlighted_end, - [23849] = 1, - ACTIONS(2506), 1, - sym_subscript_end, - [23853] = 1, - ACTIONS(2508), 1, + [22470] = 1, + ACTIONS(2345), 1, + sym__verbatim_end, + [22474] = 1, + ACTIONS(2347), 1, + sym__parens_span_end, + [22478] = 1, + ACTIONS(2349), 1, + sym_superscript_end, + [22482] = 1, + ACTIONS(2351), 1, anon_sym_RBRACE, - [23857] = 1, - ACTIONS(2510), 1, + [22486] = 1, + ACTIONS(2353), 1, + sym__verbatim_end, + [22490] = 1, + ACTIONS(2355), 1, + sym_highlighted_end, + [22494] = 1, + ACTIONS(2357), 1, + sym__newline, + [22498] = 1, + ACTIONS(2359), 1, anon_sym_RBRACE, - [23861] = 1, - ACTIONS(2512), 1, - sym_superscript_end, - [23865] = 1, - ACTIONS(2514), 1, - sym__newline, - [23869] = 1, - ACTIONS(2516), 1, - anon_sym_RPAREN, - [23873] = 1, - ACTIONS(2518), 1, - anon_sym_RBRACK, - [23877] = 1, - ACTIONS(2520), 1, - sym_footnote_marker_end, - [23881] = 1, - ACTIONS(2522), 1, + [22502] = 1, + ACTIONS(2361), 1, + sym_insert_end, + [22506] = 1, + ACTIONS(2363), 1, + sym__parens_span_end, + [22510] = 1, + ACTIONS(2365), 1, sym_delete_end, - [23885] = 1, - ACTIONS(2524), 1, + [22514] = 1, + ACTIONS(2367), 1, sym__newline, - [23889] = 1, - ACTIONS(2526), 1, + [22518] = 1, + ACTIONS(2369), 1, + sym__newline, + [22522] = 1, + ACTIONS(2371), 1, + anon_sym_RBRACK, + [22526] = 1, + ACTIONS(2373), 1, + sym__square_bracket_span_end, + [22530] = 1, + ACTIONS(2375), 1, + sym_delete_end, + [22534] = 1, + ACTIONS(2377), 1, sym_insert_end, - [23893] = 1, - ACTIONS(2528), 1, + [22538] = 1, + ACTIONS(2379), 1, sym_highlighted_end, - [23897] = 1, - ACTIONS(2530), 1, - sym_subscript_end, - [23901] = 1, - ACTIONS(2532), 1, - sym_strong_end, - [23905] = 1, - ACTIONS(2534), 1, - sym_emphasis_end, - [23909] = 1, - ACTIONS(2536), 1, + [22542] = 1, + ACTIONS(2381), 1, sym__verbatim_end, - [23913] = 1, - ACTIONS(2538), 1, + [22546] = 1, + ACTIONS(2383), 1, + sym_subscript_end, + [22550] = 1, + ACTIONS(2385), 1, sym_superscript_end, - [23917] = 1, - ACTIONS(2540), 1, + [22554] = 1, + ACTIONS(2387), 1, sym_strong_end, - [23921] = 1, - ACTIONS(2542), 1, + [22558] = 1, + ACTIONS(2389), 1, sym_emphasis_end, - [23925] = 1, - ACTIONS(2544), 1, - anon_sym_RBRACE, - [23929] = 1, - ACTIONS(2546), 1, + [22562] = 1, + ACTIONS(2391), 1, sym__verbatim_end, - [23933] = 1, - ACTIONS(2548), 1, + [22566] = 1, + ACTIONS(2393), 1, anon_sym_RBRACE, - [23937] = 1, - ACTIONS(2550), 1, + [22570] = 1, + ACTIONS(2395), 1, sym_emphasis_end, - [23941] = 1, - ACTIONS(2552), 1, + [22574] = 1, + ACTIONS(2397), 1, sym_strong_end, - [23945] = 1, - ACTIONS(2554), 1, + [22578] = 1, + ACTIONS(2399), 1, sym_superscript_end, - [23949] = 1, - ACTIONS(2556), 1, + [22582] = 1, + ACTIONS(2401), 1, sym_subscript_end, - [23953] = 1, - ACTIONS(2558), 1, + [22586] = 1, + ACTIONS(2403), 1, sym_highlighted_end, - [23957] = 1, - ACTIONS(2560), 1, + [22590] = 1, + ACTIONS(2405), 1, sym_insert_end, - [23961] = 1, - ACTIONS(2562), 1, + [22594] = 1, + ACTIONS(2407), 1, sym_delete_end, - [23965] = 1, - ACTIONS(2564), 1, - sym_footnote_marker_end, - [23969] = 1, - ACTIONS(2566), 1, + [22598] = 1, + ACTIONS(2409), 1, + sym__square_bracket_span_end, + [22602] = 1, + ACTIONS(2411), 1, anon_sym_RBRACK, - [23973] = 1, - ACTIONS(2568), 1, - anon_sym_RPAREN, - [23977] = 1, - ACTIONS(2570), 1, - sym__verbatim_end, - [23981] = 1, - ACTIONS(2572), 1, + [22606] = 1, + ACTIONS(2413), 1, anon_sym_RBRACE, - [23985] = 1, - ACTIONS(2574), 1, + [22610] = 1, + ACTIONS(2415), 1, + sym__parens_span_end, + [22614] = 1, + ACTIONS(2417), 1, + sym__verbatim_end, + [22618] = 1, + ACTIONS(2419), 1, anon_sym_RBRACE, - [23989] = 1, - ACTIONS(2576), 1, + [22622] = 1, + ACTIONS(2421), 1, sym__verbatim_content, - [23993] = 1, - ACTIONS(2578), 1, - sym__inline_attribute_mark_begin, - [23997] = 1, - ACTIONS(2580), 1, + [22626] = 1, + ACTIONS(2423), 1, + sym__curly_bracket_span_mark_begin, + [22630] = 1, + ACTIONS(2425), 1, sym__verbatim_content, - [24001] = 1, - ACTIONS(2582), 1, - sym__verbatim_end, - [24005] = 1, - ACTIONS(2584), 1, - sym__verbatim_end, - [24009] = 1, - ACTIONS(2586), 1, - sym__verbatim_end, - [24013] = 1, - ACTIONS(2588), 1, + [22634] = 1, + ACTIONS(2427), 1, + sym_subscript_end, + [22638] = 1, + ACTIONS(2429), 1, sym__verbatim_end, - [24017] = 1, - ACTIONS(2590), 1, - sym__newline, - [24021] = 1, - ACTIONS(2592), 1, + [22642] = 1, + ACTIONS(2431), 1, + anon_sym_RBRACK, + [22646] = 1, + ACTIONS(2433), 1, anon_sym_RBRACE, - [24025] = 1, - ACTIONS(2594), 1, - anon_sym_RPAREN, - [24029] = 1, - ACTIONS(2596), 1, - sym__newline, - [24033] = 1, - ACTIONS(2598), 1, - sym_superscript_end, - [24037] = 1, - ACTIONS(2600), 1, + [22650] = 1, + ACTIONS(2435), 1, + sym__parens_span_end, + [22654] = 1, + ACTIONS(2437), 1, anon_sym_RBRACK, - [24041] = 1, - ACTIONS(2602), 1, - aux_sym_inline_link_destination_token1, - [24045] = 1, - ACTIONS(2604), 1, - sym__whitespace, - [24049] = 1, - ACTIONS(2606), 1, - sym__bracketed_text_end, - [24053] = 1, - ACTIONS(2608), 1, - sym_language, - [24057] = 1, - ACTIONS(2610), 1, - sym__verbatim_content, - [24061] = 1, - ACTIONS(2612), 1, - sym__inline_attribute_mark_begin, - [24065] = 1, - ACTIONS(2614), 1, - sym__verbatim_content, - [24069] = 1, - ACTIONS(2616), 1, - sym_footnote_marker_end, - [24073] = 1, - ACTIONS(2618), 1, - sym_subscript_end, - [24077] = 1, - ACTIONS(2620), 1, + [22658] = 1, + ACTIONS(2439), 1, + sym__square_bracket_span_end, + [22662] = 1, + ACTIONS(2441), 1, sym_delete_end, - [24081] = 1, - ACTIONS(2622), 1, + [22666] = 1, + ACTIONS(2443), 1, + sym__parens_span_end, + [22670] = 1, + ACTIONS(2445), 1, sym_insert_end, - [24085] = 1, - ACTIONS(2624), 1, - sym_highlighted_end, - [24089] = 1, - ACTIONS(2626), 1, - sym_subscript_end, - [24093] = 1, - ACTIONS(2628), 1, - sym_superscript_end, - [24097] = 1, - ACTIONS(2630), 1, - anon_sym_RBRACE, - [24101] = 1, - ACTIONS(2632), 1, - sym_strong_end, - [24105] = 1, - ACTIONS(2634), 1, - anon_sym_RPAREN, - [24109] = 1, - ACTIONS(2636), 1, + [22674] = 1, + ACTIONS(2447), 1, + sym__whitespace, + [22678] = 1, + ACTIONS(2449), 1, aux_sym_inline_link_destination_token1, - [24113] = 1, - ACTIONS(2638), 1, - sym__bracketed_text_end, - [24117] = 1, - ACTIONS(2640), 1, + [22682] = 1, + ACTIONS(2451), 1, + sym__square_bracket_span_end, + [22686] = 1, + ACTIONS(2453), 1, sym_language, - [24121] = 1, - ACTIONS(2642), 1, + [22690] = 1, + ACTIONS(2455), 1, sym__verbatim_content, - [24125] = 1, - ACTIONS(2644), 1, - sym__inline_attribute_mark_begin, - [24129] = 1, - ACTIONS(2646), 1, + [22694] = 1, + ACTIONS(2457), 1, + sym__curly_bracket_span_mark_begin, + [22698] = 1, + ACTIONS(2459), 1, sym__verbatim_content, - [24133] = 1, - ACTIONS(2648), 1, - sym_emphasis_end, - [24137] = 1, - ACTIONS(2650), 1, - anon_sym_RBRACK, - [24141] = 1, - ACTIONS(2652), 1, - sym_footnote_marker_end, - [24145] = 1, - ACTIONS(2654), 1, - sym_delete_end, - [24149] = 1, - ACTIONS(2656), 1, - sym_insert_end, - [24153] = 1, - ACTIONS(2658), 1, + [22702] = 1, + ACTIONS(2461), 1, + sym__newline, + [22706] = 1, + ACTIONS(2463), 1, sym_highlighted_end, - [24157] = 1, - ACTIONS(2660), 1, - anon_sym_RBRACE, - [24161] = 1, - ACTIONS(2662), 1, + [22710] = 1, + ACTIONS(2465), 1, + sym_subscript_end, + [22714] = 1, + ACTIONS(2467), 1, sym_superscript_end, - [24165] = 1, - ACTIONS(2664), 1, - sym__verbatim_end, - [24169] = 1, - ACTIONS(2666), 1, + [22718] = 1, + ACTIONS(2469), 1, sym_strong_end, - [24173] = 1, - ACTIONS(2668), 1, - aux_sym_inline_link_destination_token1, - [24177] = 1, - ACTIONS(2670), 1, - sym__bracketed_text_end, - [24181] = 1, - ACTIONS(2672), 1, - sym_language, - [24185] = 1, - ACTIONS(2674), 1, - sym__verbatim_content, - [24189] = 1, - ACTIONS(2676), 1, - sym__inline_attribute_mark_begin, - [24193] = 1, - ACTIONS(2678), 1, - sym__verbatim_content, - [24197] = 1, - ACTIONS(2680), 1, - sym__verbatim_end, - [24201] = 1, - ACTIONS(2682), 1, + [22722] = 1, + ACTIONS(2471), 1, sym_emphasis_end, - [24205] = 1, - ACTIONS(2684), 1, + [22726] = 1, + ACTIONS(2473), 1, anon_sym_RBRACE, - [24209] = 1, - ACTIONS(2686), 1, + [22730] = 1, + ACTIONS(2475), 1, sym__verbatim_end, - [24213] = 1, - ACTIONS(2688), 1, - sym__verbatim_end, - [24217] = 1, - ACTIONS(2690), 1, + [22734] = 1, + ACTIONS(2477), 1, anon_sym_RBRACE, - [24221] = 1, - ACTIONS(2692), 1, - sym__newline, - [24225] = 1, - ACTIONS(2694), 1, - sym__verbatim_end, - [24229] = 1, - ACTIONS(2696), 1, + [22738] = 1, + ACTIONS(2479), 1, anon_sym_RBRACE, - [24233] = 1, - ACTIONS(2698), 1, - sym_emphasis_end, - [24237] = 1, - ACTIONS(2700), 1, + [22742] = 1, + ACTIONS(2481), 1, aux_sym_inline_link_destination_token1, - [24241] = 1, - ACTIONS(2702), 1, - sym__bracketed_text_end, - [24245] = 1, - ACTIONS(2704), 1, + [22746] = 1, + ACTIONS(2483), 1, + sym__square_bracket_span_end, + [22750] = 1, + ACTIONS(2485), 1, sym_language, - [24249] = 1, - ACTIONS(2706), 1, + [22754] = 1, + ACTIONS(2487), 1, sym__verbatim_content, - [24253] = 1, - ACTIONS(2708), 1, - sym__inline_attribute_mark_begin, - [24257] = 1, - ACTIONS(2710), 1, + [22758] = 1, + ACTIONS(2489), 1, + sym__curly_bracket_span_mark_begin, + [22762] = 1, + ACTIONS(2491), 1, sym__verbatim_content, - [24261] = 1, - ACTIONS(2712), 1, - sym_strong_end, - [24265] = 1, - ACTIONS(2714), 1, - anon_sym_RPAREN, - [24269] = 1, - ACTIONS(2716), 1, + [22766] = 1, + ACTIONS(2493), 1, + sym__parens_span_end, + [22770] = 1, + ACTIONS(2495), 1, anon_sym_RBRACK, - [24273] = 1, - ACTIONS(2718), 1, - sym__newline, - [24277] = 1, - ACTIONS(2720), 1, - sym_footnote_marker_end, - [24281] = 1, - ACTIONS(2722), 1, + [22774] = 1, + ACTIONS(2497), 1, + sym__square_bracket_span_end, + [22778] = 1, + ACTIONS(2499), 1, + sym__verbatim_end, + [22782] = 1, + ACTIONS(2501), 1, sym_delete_end, - [24285] = 1, - ACTIONS(2724), 1, + [22786] = 1, + ACTIONS(2503), 1, sym_insert_end, - [24289] = 1, - ACTIONS(2726), 1, + [22790] = 1, + ACTIONS(2505), 1, sym_highlighted_end, - [24293] = 1, - ACTIONS(2728), 1, + [22794] = 1, + ACTIONS(2507), 1, sym_subscript_end, - [24297] = 1, - ACTIONS(2730), 1, + [22798] = 1, + ACTIONS(2509), 1, sym_superscript_end, - [24301] = 1, - ACTIONS(2732), 1, + [22802] = 1, + ACTIONS(2511), 1, + sym__newline, + [22806] = 1, + ACTIONS(2513), 1, aux_sym_inline_link_destination_token1, - [24305] = 1, - ACTIONS(2734), 1, - sym__bracketed_text_end, - [24309] = 1, - ACTIONS(2736), 1, + [22810] = 1, + ACTIONS(2515), 1, + sym__square_bracket_span_end, + [22814] = 1, + ACTIONS(2517), 1, sym_language, - [24313] = 1, - ACTIONS(2738), 1, + [22818] = 1, + ACTIONS(2519), 1, sym__verbatim_content, - [24317] = 1, - ACTIONS(2740), 1, - sym__inline_attribute_mark_begin, - [24321] = 1, - ACTIONS(2742), 1, + [22822] = 1, + ACTIONS(2521), 1, + sym__curly_bracket_span_mark_begin, + [22826] = 1, + ACTIONS(2523), 1, sym__verbatim_content, - [24325] = 1, - ACTIONS(2744), 1, + [22830] = 1, + ACTIONS(2525), 1, sym_strong_end, - [24329] = 1, - ACTIONS(2746), 1, + [22834] = 1, + ACTIONS(2527), 1, sym_emphasis_end, - [24333] = 1, - ACTIONS(2748), 1, + [22838] = 1, + ACTIONS(2529), 1, + anon_sym_RBRACE, + [22842] = 1, + ACTIONS(2531), 1, + sym__verbatim_end, + [22846] = 1, + ACTIONS(2533), 1, + sym__verbatim_end, + [22850] = 1, + ACTIONS(2535), 1, + sym__newline, + [22854] = 1, + ACTIONS(2537), 1, + anon_sym_RBRACE, + [22858] = 1, + ACTIONS(2539), 1, aux_sym_value_token1, - [24337] = 1, - ACTIONS(2750), 1, + [22862] = 1, + ACTIONS(2541), 1, + sym__parens_span_end, + [22866] = 1, + ACTIONS(2543), 1, anon_sym_DQUOTE, - [24341] = 1, - ACTIONS(1703), 1, - anon_sym_RBRACE, - [24345] = 1, - ACTIONS(2752), 1, + [22870] = 1, + ACTIONS(2545), 1, + aux_sym_inline_link_destination_token1, + [22874] = 1, + ACTIONS(2547), 1, + sym__square_bracket_span_end, + [22878] = 1, + ACTIONS(2549), 1, + sym_language, + [22882] = 1, + ACTIONS(2551), 1, + sym__verbatim_content, + [22886] = 1, + ACTIONS(2553), 1, + sym__curly_bracket_span_mark_begin, + [22890] = 1, + ACTIONS(2555), 1, + sym__verbatim_content, + [22894] = 1, + ACTIONS(2557), 1, + anon_sym_RBRACK, + [22898] = 1, + ACTIONS(1601), 1, anon_sym_RBRACE, - [24349] = 1, - ACTIONS(1701), 1, + [22902] = 1, + ACTIONS(2559), 1, + sym__square_bracket_span_end, + [22906] = 1, + ACTIONS(1607), 1, anon_sym_RBRACE, - [24353] = 1, - ACTIONS(2754), 1, + [22910] = 1, + ACTIONS(2561), 1, anon_sym_RBRACE, - [24357] = 1, - ACTIONS(2756), 1, - sym__verbatim_end, - [24361] = 1, - ACTIONS(2758), 1, + [22914] = 1, + ACTIONS(2563), 1, + sym__parens_span_end, + [22918] = 1, + ACTIONS(2565), 1, + anon_sym_EQ, + [22922] = 1, + ACTIONS(2567), 1, + sym_delete_end, + [22926] = 1, + ACTIONS(2569), 1, + sym_insert_end, + [22930] = 1, + ACTIONS(2571), 1, anon_sym_EQ, - [24365] = 1, - ACTIONS(2760), 1, + [22934] = 1, + ACTIONS(2573), 1, aux_sym_inline_link_destination_token1, - [24369] = 1, - ACTIONS(2762), 1, - sym__bracketed_text_end, - [24373] = 1, - ACTIONS(2764), 1, + [22938] = 1, + ACTIONS(2575), 1, + sym__square_bracket_span_end, + [22942] = 1, + ACTIONS(2577), 1, sym_language, - [24377] = 1, - ACTIONS(2766), 1, + [22946] = 1, + ACTIONS(2579), 1, sym__verbatim_content, - [24381] = 1, - ACTIONS(2768), 1, - sym__inline_attribute_mark_begin, - [24385] = 1, - ACTIONS(2770), 1, + [22950] = 1, + ACTIONS(2581), 1, + sym__curly_bracket_span_mark_begin, + [22954] = 1, + ACTIONS(2583), 1, sym__verbatim_content, - [24389] = 1, - ACTIONS(2772), 1, - sym__verbatim_end, - [24393] = 1, - ACTIONS(2774), 1, - sym__newline, - [24397] = 1, - ACTIONS(2776), 1, - anon_sym_EQ, - [24401] = 1, - ACTIONS(2778), 1, + [22958] = 1, + ACTIONS(2585), 1, + sym_highlighted_end, + [22962] = 1, + ACTIONS(2587), 1, sym_language, - [24405] = 1, - ACTIONS(2780), 1, - sym__bracketed_text_end, - [24409] = 1, - ACTIONS(2782), 1, - sym__image_description_end, - [24413] = 1, - ACTIONS(2784), 1, - anon_sym_RPAREN, - [24417] = 1, - ACTIONS(2786), 1, + [22966] = 1, + ACTIONS(2589), 1, + sym__square_bracket_span_end, + [22970] = 1, + ACTIONS(2591), 1, + sym__square_bracket_span_end, + [22974] = 1, + ACTIONS(2593), 1, + aux_sym_inline_link_destination_token1, + [22978] = 1, + ACTIONS(2595), 1, anon_sym_RBRACK, - [24421] = 1, - ACTIONS(2788), 1, - anon_sym_RBRACE, - [24425] = 1, - ACTIONS(2790), 1, - sym_footnote_marker_end, - [24429] = 1, - ACTIONS(2792), 1, + [22982] = 1, + ACTIONS(2597), 1, + sym__square_bracket_span_end, + [22986] = 1, + ACTIONS(2599), 1, + sym__square_bracket_span_end, + [22990] = 1, + ACTIONS(2601), 1, + sym_subscript_end, + [22994] = 1, + ACTIONS(2603), 1, + sym_delete_end, + [22998] = 1, + ACTIONS(2605), 1, aux_sym_inline_link_destination_token1, - [24433] = 1, - ACTIONS(2794), 1, - sym__bracketed_text_end, - [24437] = 1, - ACTIONS(2796), 1, + [23002] = 1, + ACTIONS(2607), 1, + sym__square_bracket_span_end, + [23006] = 1, + ACTIONS(2609), 1, sym_language, - [24441] = 1, - ACTIONS(2798), 1, + [23010] = 1, + ACTIONS(2611), 1, sym__verbatim_content, - [24445] = 1, - ACTIONS(2800), 1, - sym__inline_attribute_mark_begin, - [24449] = 1, - ACTIONS(2802), 1, + [23014] = 1, + ACTIONS(2613), 1, + sym__curly_bracket_span_mark_begin, + [23018] = 1, + ACTIONS(2615), 1, sym__verbatim_content, - [24453] = 1, - ACTIONS(2804), 1, - anon_sym_RPAREN, - [24457] = 1, - ACTIONS(2806), 1, - sym_footnote_marker_end, - [24461] = 1, - ACTIONS(2808), 1, - sym_delete_end, - [24465] = 1, - ACTIONS(2810), 1, + [23022] = 1, + ACTIONS(2617), 1, + sym_superscript_end, + [23026] = 1, + ACTIONS(2619), 1, sym_insert_end, - [24469] = 1, - ACTIONS(2812), 1, + [23030] = 1, + ACTIONS(2621), 1, sym_highlighted_end, - [24473] = 1, - ACTIONS(2814), 1, + [23034] = 1, + ACTIONS(2623), 1, sym_subscript_end, - [24477] = 1, - ACTIONS(2816), 1, + [23038] = 1, + ACTIONS(2625), 1, sym_superscript_end, - [24481] = 1, - ACTIONS(2818), 1, + [23042] = 1, + ACTIONS(2627), 1, sym_strong_end, - [24485] = 1, - ACTIONS(2820), 1, - anon_sym_RBRACK, - [24489] = 1, - ACTIONS(2822), 1, + [23046] = 1, + ACTIONS(2629), 1, sym_emphasis_end, - [24493] = 1, - ACTIONS(2824), 1, + [23050] = 1, + ACTIONS(2631), 1, + anon_sym_RBRACE, + [23054] = 1, + ACTIONS(2633), 1, + sym_strong_end, + [23058] = 1, + ACTIONS(2635), 1, + sym__whitespace, + [23062] = 1, + ACTIONS(2637), 1, aux_sym_inline_link_destination_token1, - [24497] = 1, - ACTIONS(2826), 1, - sym__bracketed_text_end, - [24501] = 1, - ACTIONS(2828), 1, + [23066] = 1, + ACTIONS(2639), 1, + sym__square_bracket_span_end, + [23070] = 1, + ACTIONS(2641), 1, sym_language, - [24505] = 1, - ACTIONS(2830), 1, + [23074] = 1, + ACTIONS(2643), 1, sym__verbatim_content, - [24509] = 1, - ACTIONS(2832), 1, - sym__inline_attribute_mark_begin, - [24513] = 1, - ACTIONS(2834), 1, + [23078] = 1, + ACTIONS(2645), 1, + sym__curly_bracket_span_mark_begin, + [23082] = 1, + ACTIONS(2647), 1, sym__verbatim_content, - [24517] = 1, - ACTIONS(2836), 1, - sym_footnote_marker_end, - [24521] = 1, - ACTIONS(2838), 1, + [23086] = 1, + ACTIONS(2649), 1, + sym_emphasis_end, + [23090] = 1, + ACTIONS(2651), 1, + sym__verbatim_end, + [23094] = 1, + ACTIONS(2653), 1, + sym__parens_span_mark_begin, + [23098] = 1, + ACTIONS(2655), 1, anon_sym_RBRACE, - [24525] = 1, - ACTIONS(2840), 1, - sym__whitespace, - [24529] = 1, - ACTIONS(2842), 1, + [23102] = 1, + ACTIONS(2657), 1, sym__verbatim_end, - [24533] = 1, - ACTIONS(2844), 1, - aux_sym_inline_link_destination_token1, - [24537] = 1, - ACTIONS(2846), 1, - sym_delete_end, - [24541] = 1, - ACTIONS(2848), 1, - sym_insert_end, - [24545] = 1, - ACTIONS(2850), 1, + [23106] = 1, + ACTIONS(2659), 1, sym__verbatim_content, - [24549] = 1, - ACTIONS(2852), 1, - sym_highlighted_end, - [24553] = 1, - ACTIONS(2854), 1, - sym__inline_attribute_mark_begin, - [24557] = 1, - ACTIONS(2856), 1, + [23110] = 1, + ACTIONS(2661), 1, + sym__curly_bracket_span_mark_begin, + [23114] = 1, + ACTIONS(2663), 1, + sym__verbatim_end, + [23118] = 1, + ACTIONS(2665), 1, + sym__newline, + [23122] = 1, + ACTIONS(2667), 1, + sym__newline, + [23126] = 1, + ACTIONS(2669), 1, aux_sym_inline_link_destination_token1, - [24561] = 1, - ACTIONS(2858), 1, - sym__bracketed_text_end, - [24565] = 1, - ACTIONS(2860), 1, + [23130] = 1, + ACTIONS(2671), 1, + sym__square_bracket_span_end, + [23134] = 1, + ACTIONS(2673), 1, sym_language, - [24569] = 1, - ACTIONS(2862), 1, + [23138] = 1, + ACTIONS(2675), 1, sym__verbatim_content, - [24573] = 1, - ACTIONS(2864), 1, - sym__inline_attribute_mark_begin, - [24577] = 1, - ACTIONS(2866), 1, + [23142] = 1, + ACTIONS(2677), 1, + sym__curly_bracket_span_mark_begin, + [23146] = 1, + ACTIONS(2679), 1, sym__verbatim_content, - [24581] = 1, - ACTIONS(2868), 1, - sym_subscript_end, - [24585] = 1, - ACTIONS(2870), 1, + [23150] = 1, + ACTIONS(2681), 1, + anon_sym_RBRACE, + [23154] = 1, + ACTIONS(2683), 1, sym__verbatim_content, - [24589] = 1, - ACTIONS(2872), 1, - sym_superscript_end, - [24593] = 1, - ACTIONS(2874), 1, - sym_strong_end, - [24597] = 1, - ACTIONS(2876), 1, + [23158] = 1, + ACTIONS(2685), 1, sym__verbatim_end, - [24601] = 1, - ACTIONS(2878), 1, - sym__bracketed_text_mark_begin, - [24605] = 1, - ACTIONS(2880), 1, - sym__image_description_mark_begin, - [24609] = 1, - ACTIONS(2882), 1, - sym__footnote_marker_mark_begin, - [24613] = 1, - ACTIONS(2884), 1, - sym_emphasis_end, - [24617] = 1, - ACTIONS(2886), 1, + [23162] = 1, + ACTIONS(2687), 1, + sym__square_bracket_span_begin, + [23166] = 1, + ACTIONS(2689), 1, + sym__square_bracket_span_begin, + [23170] = 1, + ACTIONS(2691), 1, + sym__square_bracket_span_begin, + [23174] = 1, + ACTIONS(2693), 1, sym__delete_mark_begin, - [24621] = 1, - ACTIONS(2888), 1, + [23178] = 1, + ACTIONS(2695), 1, + sym__insert_mark_begin, + [23182] = 1, + ACTIONS(2697), 1, + sym__parens_span_end, + [23186] = 1, + ACTIONS(2699), 1, + sym__highlighted_mark_begin, + [23190] = 1, + ACTIONS(2701), 1, aux_sym_inline_link_destination_token1, - [24625] = 1, - ACTIONS(2890), 1, - sym__bracketed_text_end, - [24629] = 1, - ACTIONS(2892), 1, + [23194] = 1, + ACTIONS(2703), 1, + sym__square_bracket_span_end, + [23198] = 1, + ACTIONS(2705), 1, sym_language, - [24633] = 1, - ACTIONS(2894), 1, + [23202] = 1, + ACTIONS(2707), 1, sym__verbatim_content, - [24637] = 1, - ACTIONS(2896), 1, - sym__inline_attribute_mark_begin, - [24641] = 1, - ACTIONS(2898), 1, + [23206] = 1, + ACTIONS(2709), 1, + sym__curly_bracket_span_mark_begin, + [23210] = 1, + ACTIONS(2711), 1, sym__verbatim_content, - [24645] = 1, - ACTIONS(2900), 1, - anon_sym_RBRACE, - [24649] = 1, - ACTIONS(2902), 1, - sym__insert_mark_begin, - [24653] = 1, - ACTIONS(2904), 1, - sym__highlighted_mark_begin, - [24657] = 1, - ACTIONS(2906), 1, + [23214] = 1, + ACTIONS(2713), 1, + sym__square_bracket_span_end, + [23218] = 1, + ACTIONS(2715), 1, sym__subscript_mark_begin, - [24661] = 1, - ACTIONS(2908), 1, + [23222] = 1, + ACTIONS(2717), 1, sym__superscript_mark_begin, - [24665] = 1, - ACTIONS(2910), 1, + [23226] = 1, + ACTIONS(2719), 1, sym__strong_mark_begin, - [24669] = 1, - ACTIONS(2912), 1, + [23230] = 1, + ACTIONS(2721), 1, sym__emphasis_mark_begin, - [24673] = 1, - ACTIONS(2914), 1, + [23234] = 1, + ACTIONS(2723), 1, ts_builtin_sym_end, - [24677] = 1, - ACTIONS(2916), 1, - sym__verbatim_end, - [24681] = 1, - ACTIONS(2918), 1, + [23238] = 1, + ACTIONS(2725), 1, ts_builtin_sym_end, - [24685] = 1, - ACTIONS(2920), 1, + [23242] = 1, + ACTIONS(2727), 1, + anon_sym_RBRACK, + [23246] = 1, + ACTIONS(2729), 1, + sym__square_bracket_span_end, + [23250] = 1, + ACTIONS(2731), 1, + sym_delete_end, + [23254] = 1, + ACTIONS(2733), 1, aux_sym_inline_link_destination_token1, - [24689] = 1, - ACTIONS(2922), 1, - sym__bracketed_text_end, - [24693] = 1, - ACTIONS(2924), 1, + [23258] = 1, + ACTIONS(2735), 1, + sym__square_bracket_span_end, + [23262] = 1, + ACTIONS(2737), 1, sym_language, - [24697] = 1, - ACTIONS(2926), 1, - sym__emphasis_mark_begin, - [24701] = 1, - ACTIONS(2928), 1, - sym__strong_mark_begin, - [24705] = 1, - ACTIONS(2930), 1, - sym__superscript_mark_begin, - [24709] = 1, - ACTIONS(2932), 1, - sym__subscript_mark_begin, - [24713] = 1, - ACTIONS(2934), 1, - sym__highlighted_mark_begin, - [24717] = 1, - ACTIONS(2936), 1, - sym__insert_mark_begin, - [24721] = 1, - ACTIONS(2938), 1, - sym__delete_mark_begin, - [24725] = 1, - ACTIONS(2940), 1, - sym__footnote_marker_mark_begin, - [24729] = 1, - ACTIONS(2942), 1, - sym__verbatim_end, - [24733] = 1, - ACTIONS(2944), 1, + [23266] = 1, + ACTIONS(2739), 1, sym__emphasis_mark_begin, - [24737] = 1, - ACTIONS(2946), 1, + [23270] = 1, + ACTIONS(2741), 1, sym__strong_mark_begin, - [24741] = 1, - ACTIONS(2948), 1, + [23274] = 1, + ACTIONS(2743), 1, sym__superscript_mark_begin, - [24745] = 1, - ACTIONS(2950), 1, + [23278] = 1, + ACTIONS(2745), 1, sym__subscript_mark_begin, - [24749] = 1, - ACTIONS(2952), 1, + [23282] = 1, + ACTIONS(2747), 1, sym__highlighted_mark_begin, - [24753] = 1, - ACTIONS(2954), 1, + [23286] = 1, + ACTIONS(2749), 1, sym__insert_mark_begin, - [24757] = 1, - ACTIONS(2956), 1, + [23290] = 1, + ACTIONS(2751), 1, sym__delete_mark_begin, - [24761] = 1, - ACTIONS(2958), 1, - sym__footnote_marker_mark_begin, - [24765] = 1, - ACTIONS(2960), 1, - sym__newline, - [24769] = 1, - ACTIONS(2962), 1, + [23294] = 1, + ACTIONS(2753), 1, + sym__square_bracket_span_begin, + [23298] = 1, + ACTIONS(2755), 1, + sym__parens_span_mark_begin, + [23302] = 1, + ACTIONS(2757), 1, + sym_insert_end, + [23306] = 1, + ACTIONS(2759), 1, sym__emphasis_mark_begin, - [24773] = 1, - ACTIONS(2964), 1, + [23310] = 1, + ACTIONS(2761), 1, sym__strong_mark_begin, - [24777] = 1, - ACTIONS(2966), 1, + [23314] = 1, + ACTIONS(2763), 1, sym__superscript_mark_begin, - [24781] = 1, - ACTIONS(2968), 1, + [23318] = 1, + ACTIONS(2765), 1, sym__subscript_mark_begin, - [24785] = 1, - ACTIONS(2970), 1, + [23322] = 1, + ACTIONS(2767), 1, sym__highlighted_mark_begin, - [24789] = 1, - ACTIONS(2972), 1, + [23326] = 1, + ACTIONS(2769), 1, sym__insert_mark_begin, - [24793] = 1, - ACTIONS(2974), 1, + [23330] = 1, + ACTIONS(2771), 1, sym__delete_mark_begin, - [24797] = 1, - ACTIONS(2976), 1, - sym__footnote_marker_mark_begin, - [24801] = 1, - ACTIONS(2978), 1, - anon_sym_RBRACE, - [24805] = 1, - ACTIONS(2980), 1, + [23334] = 1, + ACTIONS(2773), 1, + sym__square_bracket_span_begin, + [23338] = 1, + ACTIONS(2775), 1, + sym__parens_span_mark_begin, + [23342] = 1, + ACTIONS(2777), 1, + sym_highlighted_end, + [23346] = 1, + ACTIONS(2779), 1, sym__emphasis_mark_begin, - [24809] = 1, - ACTIONS(2982), 1, + [23350] = 1, + ACTIONS(2781), 1, sym__strong_mark_begin, - [24813] = 1, - ACTIONS(2984), 1, + [23354] = 1, + ACTIONS(2783), 1, sym__superscript_mark_begin, - [24817] = 1, - ACTIONS(2986), 1, + [23358] = 1, + ACTIONS(2785), 1, sym__subscript_mark_begin, - [24821] = 1, - ACTIONS(2988), 1, + [23362] = 1, + ACTIONS(2787), 1, sym__highlighted_mark_begin, - [24825] = 1, - ACTIONS(2990), 1, + [23366] = 1, + ACTIONS(2789), 1, sym__insert_mark_begin, - [24829] = 1, - ACTIONS(2992), 1, + [23370] = 1, + ACTIONS(2791), 1, sym__delete_mark_begin, - [24833] = 1, - ACTIONS(2994), 1, - sym__footnote_marker_mark_begin, - [24837] = 1, - ACTIONS(2996), 1, - sym__newline, - [24841] = 1, - ACTIONS(2998), 1, + [23374] = 1, + ACTIONS(2793), 1, + sym__square_bracket_span_begin, + [23378] = 1, + ACTIONS(2795), 1, + sym__parens_span_mark_begin, + [23382] = 1, + ACTIONS(2797), 1, + sym__newline, + [23386] = 1, + ACTIONS(2799), 1, sym__emphasis_mark_begin, - [24845] = 1, - ACTIONS(3000), 1, + [23390] = 1, + ACTIONS(2801), 1, sym__strong_mark_begin, - [24849] = 1, - ACTIONS(3002), 1, + [23394] = 1, + ACTIONS(2803), 1, sym__superscript_mark_begin, - [24853] = 1, - ACTIONS(3004), 1, + [23398] = 1, + ACTIONS(2805), 1, sym__subscript_mark_begin, - [24857] = 1, - ACTIONS(3006), 1, + [23402] = 1, + ACTIONS(2807), 1, sym__highlighted_mark_begin, - [24861] = 1, - ACTIONS(3008), 1, + [23406] = 1, + ACTIONS(2809), 1, sym__insert_mark_begin, - [24865] = 1, - ACTIONS(3010), 1, + [23410] = 1, + ACTIONS(2811), 1, sym__delete_mark_begin, - [24869] = 1, - ACTIONS(3012), 1, - sym__footnote_marker_mark_begin, - [24873] = 1, - ACTIONS(3014), 1, - anon_sym_RPAREN, - [24877] = 1, - ACTIONS(3016), 1, + [23414] = 1, + ACTIONS(2813), 1, + sym__square_bracket_span_begin, + [23418] = 1, + ACTIONS(2815), 1, + sym__parens_span_mark_begin, + [23422] = 1, + ACTIONS(2817), 1, + sym_subscript_end, + [23426] = 1, + ACTIONS(2819), 1, sym__emphasis_mark_begin, - [24881] = 1, - ACTIONS(3018), 1, + [23430] = 1, + ACTIONS(2821), 1, sym__strong_mark_begin, - [24885] = 1, - ACTIONS(3020), 1, + [23434] = 1, + ACTIONS(2823), 1, sym__superscript_mark_begin, - [24889] = 1, - ACTIONS(3022), 1, + [23438] = 1, + ACTIONS(2825), 1, sym__subscript_mark_begin, - [24893] = 1, - ACTIONS(3024), 1, + [23442] = 1, + ACTIONS(2827), 1, sym__highlighted_mark_begin, - [24897] = 1, - ACTIONS(3026), 1, + [23446] = 1, + ACTIONS(2829), 1, sym__insert_mark_begin, - [24901] = 1, - ACTIONS(3028), 1, + [23450] = 1, + ACTIONS(2831), 1, sym__delete_mark_begin, - [24905] = 1, - ACTIONS(3030), 1, - sym__footnote_marker_mark_begin, - [24909] = 1, - ACTIONS(3032), 1, - anon_sym_RBRACK, - [24913] = 1, - ACTIONS(3034), 1, + [23454] = 1, + ACTIONS(2833), 1, + sym__square_bracket_span_begin, + [23458] = 1, + ACTIONS(2835), 1, + sym__parens_span_mark_begin, + [23462] = 1, + ACTIONS(2837), 1, + sym_superscript_end, + [23466] = 1, + ACTIONS(2839), 1, sym__emphasis_mark_begin, - [24917] = 1, - ACTIONS(3036), 1, + [23470] = 1, + ACTIONS(2841), 1, sym__strong_mark_begin, - [24921] = 1, - ACTIONS(3038), 1, + [23474] = 1, + ACTIONS(2843), 1, sym__superscript_mark_begin, - [24925] = 1, - ACTIONS(3040), 1, + [23478] = 1, + ACTIONS(2845), 1, sym__subscript_mark_begin, - [24929] = 1, - ACTIONS(3042), 1, + [23482] = 1, + ACTIONS(2847), 1, sym__highlighted_mark_begin, - [24933] = 1, - ACTIONS(3044), 1, + [23486] = 1, + ACTIONS(2849), 1, sym__insert_mark_begin, - [24937] = 1, - ACTIONS(3046), 1, + [23490] = 1, + ACTIONS(2851), 1, sym__delete_mark_begin, - [24941] = 1, - ACTIONS(3048), 1, - sym__footnote_marker_mark_begin, - [24945] = 1, - ACTIONS(3050), 1, - sym_footnote_marker_end, - [24949] = 1, - ACTIONS(3052), 1, + [23494] = 1, + ACTIONS(2853), 1, + sym__square_bracket_span_begin, + [23498] = 1, + ACTIONS(2855), 1, + sym__parens_span_mark_begin, + [23502] = 1, + ACTIONS(2857), 1, + sym_strong_end, + [23506] = 1, + ACTIONS(2859), 1, sym__emphasis_mark_begin, - [24953] = 1, - ACTIONS(3054), 1, + [23510] = 1, + ACTIONS(2861), 1, sym__strong_mark_begin, - [24957] = 1, - ACTIONS(3056), 1, + [23514] = 1, + ACTIONS(2863), 1, sym__superscript_mark_begin, - [24961] = 1, - ACTIONS(3058), 1, + [23518] = 1, + ACTIONS(2865), 1, sym__subscript_mark_begin, - [24965] = 1, - ACTIONS(3060), 1, + [23522] = 1, + ACTIONS(2867), 1, sym__highlighted_mark_begin, - [24969] = 1, - ACTIONS(3062), 1, + [23526] = 1, + ACTIONS(2869), 1, sym__insert_mark_begin, - [24973] = 1, - ACTIONS(3064), 1, + [23530] = 1, + ACTIONS(2871), 1, sym__delete_mark_begin, - [24977] = 1, - ACTIONS(3066), 1, - sym__footnote_marker_mark_begin, - [24981] = 1, - ACTIONS(3068), 1, - sym_delete_end, - [24985] = 1, - ACTIONS(3070), 1, + [23534] = 1, + ACTIONS(2873), 1, + sym__square_bracket_span_begin, + [23538] = 1, + ACTIONS(2875), 1, + sym__parens_span_mark_begin, + [23542] = 1, + ACTIONS(2877), 1, + sym_emphasis_end, + [23546] = 1, + ACTIONS(2879), 1, sym__emphasis_mark_begin, - [24989] = 1, - ACTIONS(3072), 1, + [23550] = 1, + ACTIONS(2881), 1, sym__strong_mark_begin, - [24993] = 1, - ACTIONS(3074), 1, + [23554] = 1, + ACTIONS(2883), 1, sym__superscript_mark_begin, - [24997] = 1, - ACTIONS(3076), 1, + [23558] = 1, + ACTIONS(2885), 1, sym__subscript_mark_begin, - [25001] = 1, - ACTIONS(3078), 1, + [23562] = 1, + ACTIONS(2887), 1, sym__highlighted_mark_begin, - [25005] = 1, - ACTIONS(3080), 1, + [23566] = 1, + ACTIONS(2889), 1, sym__insert_mark_begin, - [25009] = 1, - ACTIONS(3082), 1, + [23570] = 1, + ACTIONS(2891), 1, sym__delete_mark_begin, - [25013] = 1, - ACTIONS(3084), 1, - sym__footnote_marker_mark_begin, - [25017] = 1, - ACTIONS(3086), 1, - sym_insert_end, - [25021] = 1, - ACTIONS(3088), 1, + [23574] = 1, + ACTIONS(2893), 1, + sym__square_bracket_span_begin, + [23578] = 1, + ACTIONS(2895), 1, + sym__parens_span_mark_begin, + [23582] = 1, + ACTIONS(2897), 1, + anon_sym_RBRACE, + [23586] = 1, + ACTIONS(2899), 1, sym__emphasis_mark_begin, - [25025] = 1, - ACTIONS(3090), 1, + [23590] = 1, + ACTIONS(2901), 1, sym__strong_mark_begin, - [25029] = 1, - ACTIONS(3092), 1, + [23594] = 1, + ACTIONS(2903), 1, sym__superscript_mark_begin, - [25033] = 1, - ACTIONS(3094), 1, + [23598] = 1, + ACTIONS(2905), 1, sym__subscript_mark_begin, - [25037] = 1, - ACTIONS(3096), 1, + [23602] = 1, + ACTIONS(2907), 1, sym__highlighted_mark_begin, - [25041] = 1, - ACTIONS(3098), 1, + [23606] = 1, + ACTIONS(2909), 1, sym__insert_mark_begin, - [25045] = 1, - ACTIONS(3100), 1, + [23610] = 1, + ACTIONS(2911), 1, sym__delete_mark_begin, - [25049] = 1, - ACTIONS(3102), 1, - sym__footnote_marker_mark_begin, - [25053] = 1, - ACTIONS(3104), 1, - sym_highlighted_end, - [25057] = 1, - ACTIONS(3106), 1, + [23614] = 1, + ACTIONS(2913), 1, + sym__square_bracket_span_begin, + [23618] = 1, + ACTIONS(2915), 1, + sym__parens_span_mark_begin, + [23622] = 1, + ACTIONS(2917), 1, + sym__verbatim_end, + [23626] = 1, + ACTIONS(2919), 1, sym__emphasis_mark_begin, - [25061] = 1, - ACTIONS(3108), 1, + [23630] = 1, + ACTIONS(2921), 1, sym__strong_mark_begin, - [25065] = 1, - ACTIONS(3110), 1, + [23634] = 1, + ACTIONS(2923), 1, sym__superscript_mark_begin, - [25069] = 1, - ACTIONS(3112), 1, + [23638] = 1, + ACTIONS(2925), 1, sym__subscript_mark_begin, - [25073] = 1, - ACTIONS(3114), 1, + [23642] = 1, + ACTIONS(2927), 1, sym__highlighted_mark_begin, - [25077] = 1, - ACTIONS(3116), 1, + [23646] = 1, + ACTIONS(2929), 1, sym__insert_mark_begin, - [25081] = 1, - ACTIONS(3118), 1, + [23650] = 1, + ACTIONS(2931), 1, sym__delete_mark_begin, - [25085] = 1, - ACTIONS(3120), 1, - sym__footnote_marker_mark_begin, - [25089] = 1, - ACTIONS(3122), 1, - sym_subscript_end, - [25093] = 1, - ACTIONS(3124), 1, - sym__bracketed_text_mark_begin, - [25097] = 1, - ACTIONS(3126), 1, - sym__bracketed_text_mark_begin, - [25101] = 1, - ACTIONS(3128), 1, - sym__bracketed_text_mark_begin, - [25105] = 1, - ACTIONS(3130), 1, - sym__bracketed_text_mark_begin, - [25109] = 1, - ACTIONS(3132), 1, - sym__bracketed_text_mark_begin, - [25113] = 1, - ACTIONS(3134), 1, - sym__bracketed_text_mark_begin, - [25117] = 1, - ACTIONS(3136), 1, - sym__bracketed_text_mark_begin, - [25121] = 1, - ACTIONS(3138), 1, - sym__bracketed_text_mark_begin, - [25125] = 1, - ACTIONS(3140), 1, - sym__bracketed_text_mark_begin, - [25129] = 1, - ACTIONS(3142), 1, - sym__bracketed_text_mark_begin, - [25133] = 1, - ACTIONS(3144), 1, - sym__bracketed_text_mark_begin, + [23654] = 1, + ACTIONS(2933), 1, + sym__square_bracket_span_begin, + [23658] = 1, + ACTIONS(2935), 1, + sym__parens_span_mark_begin, + [23662] = 1, + ACTIONS(2937), 1, + sym__verbatim_end, + [23666] = 1, + ACTIONS(2939), 1, + sym__square_bracket_span_begin, + [23670] = 1, + ACTIONS(2941), 1, + sym__square_bracket_span_begin, + [23674] = 1, + ACTIONS(2943), 1, + sym__square_bracket_span_begin, + [23678] = 1, + ACTIONS(2945), 1, + sym__square_bracket_span_begin, + [23682] = 1, + ACTIONS(2947), 1, + sym__square_bracket_span_begin, + [23686] = 1, + ACTIONS(2949), 1, + sym__square_bracket_span_begin, + [23690] = 1, + ACTIONS(2951), 1, + sym__square_bracket_span_begin, + [23694] = 1, + ACTIONS(2953), 1, + sym__square_bracket_span_begin, + [23698] = 1, + ACTIONS(2955), 1, + sym__square_bracket_span_begin, + [23702] = 1, + ACTIONS(2957), 1, + sym__square_bracket_span_begin, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(132)] = 0, - [SMALL_STATE(133)] = 52, - [SMALL_STATE(134)] = 104, - [SMALL_STATE(135)] = 156, - [SMALL_STATE(136)] = 208, - [SMALL_STATE(137)] = 260, - [SMALL_STATE(138)] = 312, - [SMALL_STATE(139)] = 364, - [SMALL_STATE(140)] = 416, - [SMALL_STATE(141)] = 468, - [SMALL_STATE(142)] = 520, - [SMALL_STATE(143)] = 572, - [SMALL_STATE(144)] = 621, - [SMALL_STATE(145)] = 672, - [SMALL_STATE(146)] = 721, - [SMALL_STATE(147)] = 770, - [SMALL_STATE(148)] = 819, - [SMALL_STATE(149)] = 868, - [SMALL_STATE(150)] = 917, - [SMALL_STATE(151)] = 966, - [SMALL_STATE(152)] = 1015, - [SMALL_STATE(153)] = 1064, - [SMALL_STATE(154)] = 1113, - [SMALL_STATE(155)] = 1162, - [SMALL_STATE(156)] = 1210, - [SMALL_STATE(157)] = 1256, - [SMALL_STATE(158)] = 1302, - [SMALL_STATE(159)] = 1348, - [SMALL_STATE(160)] = 1394, - [SMALL_STATE(161)] = 1440, - [SMALL_STATE(162)] = 1486, - [SMALL_STATE(163)] = 1532, - [SMALL_STATE(164)] = 1578, - [SMALL_STATE(165)] = 1624, - [SMALL_STATE(166)] = 1670, - [SMALL_STATE(167)] = 1716, - [SMALL_STATE(168)] = 1759, - [SMALL_STATE(169)] = 1802, - [SMALL_STATE(170)] = 1847, - [SMALL_STATE(171)] = 1890, - [SMALL_STATE(172)] = 1933, - [SMALL_STATE(173)] = 1976, - [SMALL_STATE(174)] = 2021, - [SMALL_STATE(175)] = 2064, - [SMALL_STATE(176)] = 2109, - [SMALL_STATE(177)] = 2152, - [SMALL_STATE(178)] = 2195, - [SMALL_STATE(179)] = 2238, - [SMALL_STATE(180)] = 2281, - [SMALL_STATE(181)] = 2326, - [SMALL_STATE(182)] = 2369, - [SMALL_STATE(183)] = 2412, - [SMALL_STATE(184)] = 2455, - [SMALL_STATE(185)] = 2500, - [SMALL_STATE(186)] = 2543, - [SMALL_STATE(187)] = 2586, - [SMALL_STATE(188)] = 2629, - [SMALL_STATE(189)] = 2672, - [SMALL_STATE(190)] = 2715, - [SMALL_STATE(191)] = 2758, - [SMALL_STATE(192)] = 2801, - [SMALL_STATE(193)] = 2846, - [SMALL_STATE(194)] = 2889, - [SMALL_STATE(195)] = 2934, - [SMALL_STATE(196)] = 2977, - [SMALL_STATE(197)] = 3020, - [SMALL_STATE(198)] = 3063, - [SMALL_STATE(199)] = 3106, - [SMALL_STATE(200)] = 3151, - [SMALL_STATE(201)] = 3194, - [SMALL_STATE(202)] = 3239, - [SMALL_STATE(203)] = 3284, - [SMALL_STATE(204)] = 3329, - [SMALL_STATE(205)] = 3372, - [SMALL_STATE(206)] = 3415, - [SMALL_STATE(207)] = 3460, - [SMALL_STATE(208)] = 3505, - [SMALL_STATE(209)] = 3550, - [SMALL_STATE(210)] = 3593, - [SMALL_STATE(211)] = 3636, - [SMALL_STATE(212)] = 3681, - [SMALL_STATE(213)] = 3724, - [SMALL_STATE(214)] = 3769, - [SMALL_STATE(215)] = 3812, - [SMALL_STATE(216)] = 3855, - [SMALL_STATE(217)] = 3898, - [SMALL_STATE(218)] = 3943, - [SMALL_STATE(219)] = 3986, - [SMALL_STATE(220)] = 4029, - [SMALL_STATE(221)] = 4072, - [SMALL_STATE(222)] = 4117, - [SMALL_STATE(223)] = 4160, - [SMALL_STATE(224)] = 4203, - [SMALL_STATE(225)] = 4248, - [SMALL_STATE(226)] = 4293, - [SMALL_STATE(227)] = 4336, - [SMALL_STATE(228)] = 4381, - [SMALL_STATE(229)] = 4424, - [SMALL_STATE(230)] = 4467, - [SMALL_STATE(231)] = 4510, - [SMALL_STATE(232)] = 4553, - [SMALL_STATE(233)] = 4593, - [SMALL_STATE(234)] = 4633, - [SMALL_STATE(235)] = 4673, - [SMALL_STATE(236)] = 4713, - [SMALL_STATE(237)] = 4753, - [SMALL_STATE(238)] = 4793, - [SMALL_STATE(239)] = 4837, - [SMALL_STATE(240)] = 4877, - [SMALL_STATE(241)] = 4917, - [SMALL_STATE(242)] = 4959, - [SMALL_STATE(243)] = 4999, - [SMALL_STATE(244)] = 5039, - [SMALL_STATE(245)] = 5079, - [SMALL_STATE(246)] = 5119, - [SMALL_STATE(247)] = 5159, - [SMALL_STATE(248)] = 5199, - [SMALL_STATE(249)] = 5239, - [SMALL_STATE(250)] = 5279, - [SMALL_STATE(251)] = 5319, - [SMALL_STATE(252)] = 5359, - [SMALL_STATE(253)] = 5399, - [SMALL_STATE(254)] = 5439, - [SMALL_STATE(255)] = 5479, - [SMALL_STATE(256)] = 5519, - [SMALL_STATE(257)] = 5559, - [SMALL_STATE(258)] = 5599, - [SMALL_STATE(259)] = 5639, - [SMALL_STATE(260)] = 5679, - [SMALL_STATE(261)] = 5719, - [SMALL_STATE(262)] = 5759, - [SMALL_STATE(263)] = 5799, - [SMALL_STATE(264)] = 5839, - [SMALL_STATE(265)] = 5879, - [SMALL_STATE(266)] = 5919, - [SMALL_STATE(267)] = 5959, - [SMALL_STATE(268)] = 5999, - [SMALL_STATE(269)] = 6039, - [SMALL_STATE(270)] = 6079, - [SMALL_STATE(271)] = 6119, - [SMALL_STATE(272)] = 6159, - [SMALL_STATE(273)] = 6199, - [SMALL_STATE(274)] = 6239, - [SMALL_STATE(275)] = 6279, - [SMALL_STATE(276)] = 6319, - [SMALL_STATE(277)] = 6359, - [SMALL_STATE(278)] = 6401, - [SMALL_STATE(279)] = 6441, - [SMALL_STATE(280)] = 6481, - [SMALL_STATE(281)] = 6521, - [SMALL_STATE(282)] = 6561, - [SMALL_STATE(283)] = 6601, - [SMALL_STATE(284)] = 6641, - [SMALL_STATE(285)] = 6681, - [SMALL_STATE(286)] = 6721, - [SMALL_STATE(287)] = 6761, - [SMALL_STATE(288)] = 6801, - [SMALL_STATE(289)] = 6841, - [SMALL_STATE(290)] = 6881, - [SMALL_STATE(291)] = 6921, - [SMALL_STATE(292)] = 6961, - [SMALL_STATE(293)] = 7001, - [SMALL_STATE(294)] = 7041, - [SMALL_STATE(295)] = 7081, - [SMALL_STATE(296)] = 7121, - [SMALL_STATE(297)] = 7161, - [SMALL_STATE(298)] = 7201, - [SMALL_STATE(299)] = 7241, - [SMALL_STATE(300)] = 7281, - [SMALL_STATE(301)] = 7321, - [SMALL_STATE(302)] = 7361, - [SMALL_STATE(303)] = 7401, - [SMALL_STATE(304)] = 7441, - [SMALL_STATE(305)] = 7481, - [SMALL_STATE(306)] = 7521, - [SMALL_STATE(307)] = 7561, - [SMALL_STATE(308)] = 7601, - [SMALL_STATE(309)] = 7641, - [SMALL_STATE(310)] = 7681, - [SMALL_STATE(311)] = 7721, - [SMALL_STATE(312)] = 7761, - [SMALL_STATE(313)] = 7801, - [SMALL_STATE(314)] = 7841, - [SMALL_STATE(315)] = 7885, - [SMALL_STATE(316)] = 7925, - [SMALL_STATE(317)] = 7965, - [SMALL_STATE(318)] = 8005, - [SMALL_STATE(319)] = 8045, - [SMALL_STATE(320)] = 8085, - [SMALL_STATE(321)] = 8125, - [SMALL_STATE(322)] = 8167, - [SMALL_STATE(323)] = 8207, - [SMALL_STATE(324)] = 8247, - [SMALL_STATE(325)] = 8287, - [SMALL_STATE(326)] = 8327, - [SMALL_STATE(327)] = 8367, - [SMALL_STATE(328)] = 8407, - [SMALL_STATE(329)] = 8447, - [SMALL_STATE(330)] = 8487, - [SMALL_STATE(331)] = 8527, - [SMALL_STATE(332)] = 8567, - [SMALL_STATE(333)] = 8607, - [SMALL_STATE(334)] = 8647, - [SMALL_STATE(335)] = 8687, - [SMALL_STATE(336)] = 8727, - [SMALL_STATE(337)] = 8767, - [SMALL_STATE(338)] = 8807, - [SMALL_STATE(339)] = 8847, - [SMALL_STATE(340)] = 8887, - [SMALL_STATE(341)] = 8927, - [SMALL_STATE(342)] = 8967, - [SMALL_STATE(343)] = 9007, - [SMALL_STATE(344)] = 9047, - [SMALL_STATE(345)] = 9087, - [SMALL_STATE(346)] = 9127, - [SMALL_STATE(347)] = 9167, - [SMALL_STATE(348)] = 9207, - [SMALL_STATE(349)] = 9247, - [SMALL_STATE(350)] = 9287, - [SMALL_STATE(351)] = 9327, - [SMALL_STATE(352)] = 9367, - [SMALL_STATE(353)] = 9407, - [SMALL_STATE(354)] = 9447, - [SMALL_STATE(355)] = 9487, - [SMALL_STATE(356)] = 9527, - [SMALL_STATE(357)] = 9567, - [SMALL_STATE(358)] = 9607, - [SMALL_STATE(359)] = 9647, - [SMALL_STATE(360)] = 9687, - [SMALL_STATE(361)] = 9727, - [SMALL_STATE(362)] = 9767, - [SMALL_STATE(363)] = 9807, - [SMALL_STATE(364)] = 9847, - [SMALL_STATE(365)] = 9887, - [SMALL_STATE(366)] = 9929, - [SMALL_STATE(367)] = 9969, - [SMALL_STATE(368)] = 10009, - [SMALL_STATE(369)] = 10051, - [SMALL_STATE(370)] = 10091, - [SMALL_STATE(371)] = 10131, - [SMALL_STATE(372)] = 10171, - [SMALL_STATE(373)] = 10211, - [SMALL_STATE(374)] = 10251, - [SMALL_STATE(375)] = 10291, - [SMALL_STATE(376)] = 10331, - [SMALL_STATE(377)] = 10371, - [SMALL_STATE(378)] = 10411, - [SMALL_STATE(379)] = 10451, - [SMALL_STATE(380)] = 10491, - [SMALL_STATE(381)] = 10531, - [SMALL_STATE(382)] = 10571, - [SMALL_STATE(383)] = 10611, - [SMALL_STATE(384)] = 10651, - [SMALL_STATE(385)] = 10691, - [SMALL_STATE(386)] = 10731, - [SMALL_STATE(387)] = 10771, - [SMALL_STATE(388)] = 10811, - [SMALL_STATE(389)] = 10851, - [SMALL_STATE(390)] = 10895, - [SMALL_STATE(391)] = 10935, - [SMALL_STATE(392)] = 10975, - [SMALL_STATE(393)] = 11015, - [SMALL_STATE(394)] = 11055, - [SMALL_STATE(395)] = 11095, - [SMALL_STATE(396)] = 11135, - [SMALL_STATE(397)] = 11175, - [SMALL_STATE(398)] = 11215, - [SMALL_STATE(399)] = 11255, - [SMALL_STATE(400)] = 11295, - [SMALL_STATE(401)] = 11335, - [SMALL_STATE(402)] = 11375, - [SMALL_STATE(403)] = 11417, - [SMALL_STATE(404)] = 11459, - [SMALL_STATE(405)] = 11499, - [SMALL_STATE(406)] = 11539, - [SMALL_STATE(407)] = 11579, - [SMALL_STATE(408)] = 11619, - [SMALL_STATE(409)] = 11659, - [SMALL_STATE(410)] = 11701, - [SMALL_STATE(411)] = 11741, - [SMALL_STATE(412)] = 11781, - [SMALL_STATE(413)] = 11821, - [SMALL_STATE(414)] = 11861, - [SMALL_STATE(415)] = 11901, - [SMALL_STATE(416)] = 11941, - [SMALL_STATE(417)] = 11981, - [SMALL_STATE(418)] = 12023, - [SMALL_STATE(419)] = 12063, - [SMALL_STATE(420)] = 12103, - [SMALL_STATE(421)] = 12143, - [SMALL_STATE(422)] = 12183, - [SMALL_STATE(423)] = 12223, - [SMALL_STATE(424)] = 12263, - [SMALL_STATE(425)] = 12303, - [SMALL_STATE(426)] = 12343, - [SMALL_STATE(427)] = 12383, - [SMALL_STATE(428)] = 12423, - [SMALL_STATE(429)] = 12463, - [SMALL_STATE(430)] = 12503, - [SMALL_STATE(431)] = 12545, - [SMALL_STATE(432)] = 12585, - [SMALL_STATE(433)] = 12625, - [SMALL_STATE(434)] = 12665, - [SMALL_STATE(435)] = 12705, - [SMALL_STATE(436)] = 12745, - [SMALL_STATE(437)] = 12785, - [SMALL_STATE(438)] = 12825, - [SMALL_STATE(439)] = 12865, - [SMALL_STATE(440)] = 12905, - [SMALL_STATE(441)] = 12945, - [SMALL_STATE(442)] = 12985, - [SMALL_STATE(443)] = 13025, - [SMALL_STATE(444)] = 13065, - [SMALL_STATE(445)] = 13105, - [SMALL_STATE(446)] = 13145, - [SMALL_STATE(447)] = 13185, - [SMALL_STATE(448)] = 13225, - [SMALL_STATE(449)] = 13265, - [SMALL_STATE(450)] = 13305, - [SMALL_STATE(451)] = 13345, - [SMALL_STATE(452)] = 13385, - [SMALL_STATE(453)] = 13425, - [SMALL_STATE(454)] = 13467, - [SMALL_STATE(455)] = 13507, - [SMALL_STATE(456)] = 13547, - [SMALL_STATE(457)] = 13587, - [SMALL_STATE(458)] = 13627, - [SMALL_STATE(459)] = 13667, - [SMALL_STATE(460)] = 13707, - [SMALL_STATE(461)] = 13747, - [SMALL_STATE(462)] = 13787, - [SMALL_STATE(463)] = 13827, - [SMALL_STATE(464)] = 13867, - [SMALL_STATE(465)] = 13907, - [SMALL_STATE(466)] = 13947, - [SMALL_STATE(467)] = 13987, - [SMALL_STATE(468)] = 14027, - [SMALL_STATE(469)] = 14067, - [SMALL_STATE(470)] = 14107, - [SMALL_STATE(471)] = 14147, - [SMALL_STATE(472)] = 14187, - [SMALL_STATE(473)] = 14227, - [SMALL_STATE(474)] = 14267, - [SMALL_STATE(475)] = 14307, - [SMALL_STATE(476)] = 14347, - [SMALL_STATE(477)] = 14387, - [SMALL_STATE(478)] = 14427, - [SMALL_STATE(479)] = 14467, - [SMALL_STATE(480)] = 14507, - [SMALL_STATE(481)] = 14547, - [SMALL_STATE(482)] = 14587, - [SMALL_STATE(483)] = 14627, - [SMALL_STATE(484)] = 14667, - [SMALL_STATE(485)] = 14707, - [SMALL_STATE(486)] = 14747, - [SMALL_STATE(487)] = 14787, - [SMALL_STATE(488)] = 14827, - [SMALL_STATE(489)] = 14867, - [SMALL_STATE(490)] = 14907, - [SMALL_STATE(491)] = 14947, - [SMALL_STATE(492)] = 14987, - [SMALL_STATE(493)] = 15027, - [SMALL_STATE(494)] = 15067, - [SMALL_STATE(495)] = 15107, - [SMALL_STATE(496)] = 15147, - [SMALL_STATE(497)] = 15187, - [SMALL_STATE(498)] = 15229, - [SMALL_STATE(499)] = 15269, - [SMALL_STATE(500)] = 15309, - [SMALL_STATE(501)] = 15349, - [SMALL_STATE(502)] = 15389, - [SMALL_STATE(503)] = 15429, - [SMALL_STATE(504)] = 15469, - [SMALL_STATE(505)] = 15509, - [SMALL_STATE(506)] = 15553, - [SMALL_STATE(507)] = 15593, - [SMALL_STATE(508)] = 15633, - [SMALL_STATE(509)] = 15673, - [SMALL_STATE(510)] = 15713, - [SMALL_STATE(511)] = 15753, - [SMALL_STATE(512)] = 15793, - [SMALL_STATE(513)] = 15833, - [SMALL_STATE(514)] = 15873, - [SMALL_STATE(515)] = 15913, - [SMALL_STATE(516)] = 15955, - [SMALL_STATE(517)] = 15995, - [SMALL_STATE(518)] = 16035, - [SMALL_STATE(519)] = 16075, - [SMALL_STATE(520)] = 16115, - [SMALL_STATE(521)] = 16155, - [SMALL_STATE(522)] = 16195, - [SMALL_STATE(523)] = 16235, - [SMALL_STATE(524)] = 16275, - [SMALL_STATE(525)] = 16315, - [SMALL_STATE(526)] = 16355, - [SMALL_STATE(527)] = 16395, - [SMALL_STATE(528)] = 16435, - [SMALL_STATE(529)] = 16475, - [SMALL_STATE(530)] = 16515, - [SMALL_STATE(531)] = 16555, - [SMALL_STATE(532)] = 16595, - [SMALL_STATE(533)] = 16635, - [SMALL_STATE(534)] = 16677, - [SMALL_STATE(535)] = 16717, - [SMALL_STATE(536)] = 16757, - [SMALL_STATE(537)] = 16797, - [SMALL_STATE(538)] = 16837, - [SMALL_STATE(539)] = 16877, - [SMALL_STATE(540)] = 16917, - [SMALL_STATE(541)] = 16959, - [SMALL_STATE(542)] = 16999, - [SMALL_STATE(543)] = 17039, - [SMALL_STATE(544)] = 17079, - [SMALL_STATE(545)] = 17119, - [SMALL_STATE(546)] = 17159, - [SMALL_STATE(547)] = 17199, - [SMALL_STATE(548)] = 17239, - [SMALL_STATE(549)] = 17278, - [SMALL_STATE(550)] = 17317, - [SMALL_STATE(551)] = 17356, - [SMALL_STATE(552)] = 17395, - [SMALL_STATE(553)] = 17434, - [SMALL_STATE(554)] = 17473, - [SMALL_STATE(555)] = 17512, - [SMALL_STATE(556)] = 17551, - [SMALL_STATE(557)] = 17590, - [SMALL_STATE(558)] = 17629, - [SMALL_STATE(559)] = 17668, - [SMALL_STATE(560)] = 17707, - [SMALL_STATE(561)] = 17746, - [SMALL_STATE(562)] = 17785, - [SMALL_STATE(563)] = 17824, - [SMALL_STATE(564)] = 17863, - [SMALL_STATE(565)] = 17902, - [SMALL_STATE(566)] = 17941, - [SMALL_STATE(567)] = 17980, - [SMALL_STATE(568)] = 18019, - [SMALL_STATE(569)] = 18058, - [SMALL_STATE(570)] = 18097, - [SMALL_STATE(571)] = 18138, - [SMALL_STATE(572)] = 18177, - [SMALL_STATE(573)] = 18216, - [SMALL_STATE(574)] = 18255, - [SMALL_STATE(575)] = 18294, - [SMALL_STATE(576)] = 18333, - [SMALL_STATE(577)] = 18372, - [SMALL_STATE(578)] = 18411, - [SMALL_STATE(579)] = 18450, - [SMALL_STATE(580)] = 18489, - [SMALL_STATE(581)] = 18528, - [SMALL_STATE(582)] = 18569, - [SMALL_STATE(583)] = 18608, - [SMALL_STATE(584)] = 18647, - [SMALL_STATE(585)] = 18686, - [SMALL_STATE(586)] = 18725, - [SMALL_STATE(587)] = 18764, - [SMALL_STATE(588)] = 18803, - [SMALL_STATE(589)] = 18842, - [SMALL_STATE(590)] = 18881, - [SMALL_STATE(591)] = 18920, - [SMALL_STATE(592)] = 18959, - [SMALL_STATE(593)] = 18998, - [SMALL_STATE(594)] = 19037, - [SMALL_STATE(595)] = 19076, - [SMALL_STATE(596)] = 19115, - [SMALL_STATE(597)] = 19154, - [SMALL_STATE(598)] = 19193, - [SMALL_STATE(599)] = 19232, - [SMALL_STATE(600)] = 19273, - [SMALL_STATE(601)] = 19312, - [SMALL_STATE(602)] = 19351, - [SMALL_STATE(603)] = 19390, - [SMALL_STATE(604)] = 19429, - [SMALL_STATE(605)] = 19468, - [SMALL_STATE(606)] = 19507, - [SMALL_STATE(607)] = 19546, - [SMALL_STATE(608)] = 19585, - [SMALL_STATE(609)] = 19624, - [SMALL_STATE(610)] = 19663, - [SMALL_STATE(611)] = 19702, - [SMALL_STATE(612)] = 19741, - [SMALL_STATE(613)] = 19782, - [SMALL_STATE(614)] = 19821, - [SMALL_STATE(615)] = 19860, - [SMALL_STATE(616)] = 19899, - [SMALL_STATE(617)] = 19938, - [SMALL_STATE(618)] = 19977, - [SMALL_STATE(619)] = 20016, - [SMALL_STATE(620)] = 20055, - [SMALL_STATE(621)] = 20094, - [SMALL_STATE(622)] = 20133, - [SMALL_STATE(623)] = 20172, - [SMALL_STATE(624)] = 20213, - [SMALL_STATE(625)] = 20252, - [SMALL_STATE(626)] = 20291, - [SMALL_STATE(627)] = 20330, - [SMALL_STATE(628)] = 20369, - [SMALL_STATE(629)] = 20408, - [SMALL_STATE(630)] = 20447, - [SMALL_STATE(631)] = 20486, - [SMALL_STATE(632)] = 20525, - [SMALL_STATE(633)] = 20564, - [SMALL_STATE(634)] = 20603, - [SMALL_STATE(635)] = 20642, - [SMALL_STATE(636)] = 20680, - [SMALL_STATE(637)] = 20718, - [SMALL_STATE(638)] = 20756, - [SMALL_STATE(639)] = 20794, - [SMALL_STATE(640)] = 20832, - [SMALL_STATE(641)] = 20863, - [SMALL_STATE(642)] = 20894, - [SMALL_STATE(643)] = 20925, - [SMALL_STATE(644)] = 20956, - [SMALL_STATE(645)] = 20987, - [SMALL_STATE(646)] = 21018, - [SMALL_STATE(647)] = 21049, - [SMALL_STATE(648)] = 21080, - [SMALL_STATE(649)] = 21111, - [SMALL_STATE(650)] = 21142, - [SMALL_STATE(651)] = 21173, - [SMALL_STATE(652)] = 21204, - [SMALL_STATE(653)] = 21235, - [SMALL_STATE(654)] = 21266, - [SMALL_STATE(655)] = 21297, - [SMALL_STATE(656)] = 21328, - [SMALL_STATE(657)] = 21359, - [SMALL_STATE(658)] = 21390, - [SMALL_STATE(659)] = 21421, - [SMALL_STATE(660)] = 21452, - [SMALL_STATE(661)] = 21483, - [SMALL_STATE(662)] = 21514, - [SMALL_STATE(663)] = 21545, - [SMALL_STATE(664)] = 21576, - [SMALL_STATE(665)] = 21607, - [SMALL_STATE(666)] = 21617, - [SMALL_STATE(667)] = 21627, - [SMALL_STATE(668)] = 21637, - [SMALL_STATE(669)] = 21647, - [SMALL_STATE(670)] = 21657, - [SMALL_STATE(671)] = 21667, - [SMALL_STATE(672)] = 21677, - [SMALL_STATE(673)] = 21687, - [SMALL_STATE(674)] = 21697, - [SMALL_STATE(675)] = 21714, - [SMALL_STATE(676)] = 21731, - [SMALL_STATE(677)] = 21748, - [SMALL_STATE(678)] = 21765, - [SMALL_STATE(679)] = 21782, - [SMALL_STATE(680)] = 21799, - [SMALL_STATE(681)] = 21816, - [SMALL_STATE(682)] = 21833, - [SMALL_STATE(683)] = 21850, - [SMALL_STATE(684)] = 21867, - [SMALL_STATE(685)] = 21884, - [SMALL_STATE(686)] = 21901, - [SMALL_STATE(687)] = 21917, - [SMALL_STATE(688)] = 21933, - [SMALL_STATE(689)] = 21949, - [SMALL_STATE(690)] = 21965, - [SMALL_STATE(691)] = 21981, - [SMALL_STATE(692)] = 21997, - [SMALL_STATE(693)] = 22009, - [SMALL_STATE(694)] = 22025, - [SMALL_STATE(695)] = 22041, - [SMALL_STATE(696)] = 22053, - [SMALL_STATE(697)] = 22069, - [SMALL_STATE(698)] = 22081, - [SMALL_STATE(699)] = 22097, - [SMALL_STATE(700)] = 22113, - [SMALL_STATE(701)] = 22129, - [SMALL_STATE(702)] = 22145, - [SMALL_STATE(703)] = 22161, - [SMALL_STATE(704)] = 22173, - [SMALL_STATE(705)] = 22189, - [SMALL_STATE(706)] = 22205, - [SMALL_STATE(707)] = 22221, - [SMALL_STATE(708)] = 22237, - [SMALL_STATE(709)] = 22253, - [SMALL_STATE(710)] = 22265, - [SMALL_STATE(711)] = 22281, - [SMALL_STATE(712)] = 22297, - [SMALL_STATE(713)] = 22313, - [SMALL_STATE(714)] = 22329, - [SMALL_STATE(715)] = 22345, - [SMALL_STATE(716)] = 22352, - [SMALL_STATE(717)] = 22360, - [SMALL_STATE(718)] = 22368, - [SMALL_STATE(719)] = 22378, - [SMALL_STATE(720)] = 22385, - [SMALL_STATE(721)] = 22392, - [SMALL_STATE(722)] = 22399, - [SMALL_STATE(723)] = 22406, - [SMALL_STATE(724)] = 22413, - [SMALL_STATE(725)] = 22420, - [SMALL_STATE(726)] = 22427, - [SMALL_STATE(727)] = 22434, - [SMALL_STATE(728)] = 22441, - [SMALL_STATE(729)] = 22448, - [SMALL_STATE(730)] = 22455, - [SMALL_STATE(731)] = 22462, - [SMALL_STATE(732)] = 22469, - [SMALL_STATE(733)] = 22476, - [SMALL_STATE(734)] = 22483, - [SMALL_STATE(735)] = 22490, - [SMALL_STATE(736)] = 22497, - [SMALL_STATE(737)] = 22504, - [SMALL_STATE(738)] = 22511, - [SMALL_STATE(739)] = 22518, - [SMALL_STATE(740)] = 22525, - [SMALL_STATE(741)] = 22532, - [SMALL_STATE(742)] = 22539, - [SMALL_STATE(743)] = 22546, - [SMALL_STATE(744)] = 22553, - [SMALL_STATE(745)] = 22560, - [SMALL_STATE(746)] = 22567, - [SMALL_STATE(747)] = 22574, - [SMALL_STATE(748)] = 22581, - [SMALL_STATE(749)] = 22588, - [SMALL_STATE(750)] = 22595, - [SMALL_STATE(751)] = 22602, - [SMALL_STATE(752)] = 22609, - [SMALL_STATE(753)] = 22616, - [SMALL_STATE(754)] = 22623, - [SMALL_STATE(755)] = 22630, - [SMALL_STATE(756)] = 22637, - [SMALL_STATE(757)] = 22644, - [SMALL_STATE(758)] = 22651, - [SMALL_STATE(759)] = 22658, - [SMALL_STATE(760)] = 22665, - [SMALL_STATE(761)] = 22672, - [SMALL_STATE(762)] = 22679, - [SMALL_STATE(763)] = 22686, - [SMALL_STATE(764)] = 22693, - [SMALL_STATE(765)] = 22700, - [SMALL_STATE(766)] = 22707, - [SMALL_STATE(767)] = 22714, - [SMALL_STATE(768)] = 22721, - [SMALL_STATE(769)] = 22728, - [SMALL_STATE(770)] = 22735, - [SMALL_STATE(771)] = 22742, - [SMALL_STATE(772)] = 22749, - [SMALL_STATE(773)] = 22756, - [SMALL_STATE(774)] = 22763, - [SMALL_STATE(775)] = 22770, - [SMALL_STATE(776)] = 22777, - [SMALL_STATE(777)] = 22784, - [SMALL_STATE(778)] = 22791, - [SMALL_STATE(779)] = 22798, - [SMALL_STATE(780)] = 22805, - [SMALL_STATE(781)] = 22812, - [SMALL_STATE(782)] = 22819, - [SMALL_STATE(783)] = 22826, - [SMALL_STATE(784)] = 22833, - [SMALL_STATE(785)] = 22840, - [SMALL_STATE(786)] = 22847, - [SMALL_STATE(787)] = 22854, - [SMALL_STATE(788)] = 22861, - [SMALL_STATE(789)] = 22868, - [SMALL_STATE(790)] = 22875, - [SMALL_STATE(791)] = 22882, - [SMALL_STATE(792)] = 22889, - [SMALL_STATE(793)] = 22896, - [SMALL_STATE(794)] = 22903, - [SMALL_STATE(795)] = 22910, - [SMALL_STATE(796)] = 22917, - [SMALL_STATE(797)] = 22924, - [SMALL_STATE(798)] = 22931, - [SMALL_STATE(799)] = 22938, - [SMALL_STATE(800)] = 22945, - [SMALL_STATE(801)] = 22952, - [SMALL_STATE(802)] = 22959, - [SMALL_STATE(803)] = 22966, - [SMALL_STATE(804)] = 22973, - [SMALL_STATE(805)] = 22980, - [SMALL_STATE(806)] = 22987, - [SMALL_STATE(807)] = 22994, - [SMALL_STATE(808)] = 23001, - [SMALL_STATE(809)] = 23008, - [SMALL_STATE(810)] = 23015, - [SMALL_STATE(811)] = 23022, - [SMALL_STATE(812)] = 23029, - [SMALL_STATE(813)] = 23036, - [SMALL_STATE(814)] = 23043, - [SMALL_STATE(815)] = 23050, - [SMALL_STATE(816)] = 23057, - [SMALL_STATE(817)] = 23064, - [SMALL_STATE(818)] = 23071, - [SMALL_STATE(819)] = 23078, - [SMALL_STATE(820)] = 23085, - [SMALL_STATE(821)] = 23092, - [SMALL_STATE(822)] = 23099, - [SMALL_STATE(823)] = 23106, - [SMALL_STATE(824)] = 23113, - [SMALL_STATE(825)] = 23120, - [SMALL_STATE(826)] = 23127, - [SMALL_STATE(827)] = 23134, - [SMALL_STATE(828)] = 23141, - [SMALL_STATE(829)] = 23148, - [SMALL_STATE(830)] = 23155, - [SMALL_STATE(831)] = 23162, - [SMALL_STATE(832)] = 23169, - [SMALL_STATE(833)] = 23176, - [SMALL_STATE(834)] = 23183, - [SMALL_STATE(835)] = 23190, - [SMALL_STATE(836)] = 23197, - [SMALL_STATE(837)] = 23204, - [SMALL_STATE(838)] = 23211, - [SMALL_STATE(839)] = 23218, - [SMALL_STATE(840)] = 23225, - [SMALL_STATE(841)] = 23232, - [SMALL_STATE(842)] = 23239, - [SMALL_STATE(843)] = 23246, - [SMALL_STATE(844)] = 23253, - [SMALL_STATE(845)] = 23260, - [SMALL_STATE(846)] = 23267, - [SMALL_STATE(847)] = 23274, - [SMALL_STATE(848)] = 23281, - [SMALL_STATE(849)] = 23288, - [SMALL_STATE(850)] = 23295, - [SMALL_STATE(851)] = 23302, - [SMALL_STATE(852)] = 23309, - [SMALL_STATE(853)] = 23316, - [SMALL_STATE(854)] = 23323, - [SMALL_STATE(855)] = 23330, - [SMALL_STATE(856)] = 23337, - [SMALL_STATE(857)] = 23344, - [SMALL_STATE(858)] = 23351, - [SMALL_STATE(859)] = 23358, - [SMALL_STATE(860)] = 23365, - [SMALL_STATE(861)] = 23372, - [SMALL_STATE(862)] = 23379, - [SMALL_STATE(863)] = 23386, - [SMALL_STATE(864)] = 23393, - [SMALL_STATE(865)] = 23400, - [SMALL_STATE(866)] = 23407, - [SMALL_STATE(867)] = 23414, - [SMALL_STATE(868)] = 23421, - [SMALL_STATE(869)] = 23428, - [SMALL_STATE(870)] = 23435, - [SMALL_STATE(871)] = 23442, - [SMALL_STATE(872)] = 23449, - [SMALL_STATE(873)] = 23456, - [SMALL_STATE(874)] = 23463, - [SMALL_STATE(875)] = 23470, - [SMALL_STATE(876)] = 23477, - [SMALL_STATE(877)] = 23484, - [SMALL_STATE(878)] = 23491, - [SMALL_STATE(879)] = 23498, - [SMALL_STATE(880)] = 23505, - [SMALL_STATE(881)] = 23512, - [SMALL_STATE(882)] = 23519, - [SMALL_STATE(883)] = 23526, - [SMALL_STATE(884)] = 23533, - [SMALL_STATE(885)] = 23540, - [SMALL_STATE(886)] = 23547, - [SMALL_STATE(887)] = 23554, - [SMALL_STATE(888)] = 23561, - [SMALL_STATE(889)] = 23568, - [SMALL_STATE(890)] = 23575, - [SMALL_STATE(891)] = 23582, - [SMALL_STATE(892)] = 23589, - [SMALL_STATE(893)] = 23596, - [SMALL_STATE(894)] = 23603, - [SMALL_STATE(895)] = 23610, - [SMALL_STATE(896)] = 23617, - [SMALL_STATE(897)] = 23624, - [SMALL_STATE(898)] = 23631, - [SMALL_STATE(899)] = 23638, - [SMALL_STATE(900)] = 23645, - [SMALL_STATE(901)] = 23649, - [SMALL_STATE(902)] = 23653, - [SMALL_STATE(903)] = 23657, - [SMALL_STATE(904)] = 23661, - [SMALL_STATE(905)] = 23665, - [SMALL_STATE(906)] = 23669, - [SMALL_STATE(907)] = 23673, - [SMALL_STATE(908)] = 23677, - [SMALL_STATE(909)] = 23681, - [SMALL_STATE(910)] = 23685, - [SMALL_STATE(911)] = 23689, - [SMALL_STATE(912)] = 23693, - [SMALL_STATE(913)] = 23697, - [SMALL_STATE(914)] = 23701, - [SMALL_STATE(915)] = 23705, - [SMALL_STATE(916)] = 23709, - [SMALL_STATE(917)] = 23713, - [SMALL_STATE(918)] = 23717, - [SMALL_STATE(919)] = 23721, - [SMALL_STATE(920)] = 23725, - [SMALL_STATE(921)] = 23729, - [SMALL_STATE(922)] = 23733, - [SMALL_STATE(923)] = 23737, - [SMALL_STATE(924)] = 23741, - [SMALL_STATE(925)] = 23745, - [SMALL_STATE(926)] = 23749, - [SMALL_STATE(927)] = 23753, - [SMALL_STATE(928)] = 23757, - [SMALL_STATE(929)] = 23761, - [SMALL_STATE(930)] = 23765, - [SMALL_STATE(931)] = 23769, - [SMALL_STATE(932)] = 23773, - [SMALL_STATE(933)] = 23777, - [SMALL_STATE(934)] = 23781, - [SMALL_STATE(935)] = 23785, - [SMALL_STATE(936)] = 23789, - [SMALL_STATE(937)] = 23793, - [SMALL_STATE(938)] = 23797, - [SMALL_STATE(939)] = 23801, - [SMALL_STATE(940)] = 23805, - [SMALL_STATE(941)] = 23809, - [SMALL_STATE(942)] = 23813, - [SMALL_STATE(943)] = 23817, - [SMALL_STATE(944)] = 23821, - [SMALL_STATE(945)] = 23825, - [SMALL_STATE(946)] = 23829, - [SMALL_STATE(947)] = 23833, - [SMALL_STATE(948)] = 23837, - [SMALL_STATE(949)] = 23841, - [SMALL_STATE(950)] = 23845, - [SMALL_STATE(951)] = 23849, - [SMALL_STATE(952)] = 23853, - [SMALL_STATE(953)] = 23857, - [SMALL_STATE(954)] = 23861, - [SMALL_STATE(955)] = 23865, - [SMALL_STATE(956)] = 23869, - [SMALL_STATE(957)] = 23873, - [SMALL_STATE(958)] = 23877, - [SMALL_STATE(959)] = 23881, - [SMALL_STATE(960)] = 23885, - [SMALL_STATE(961)] = 23889, - [SMALL_STATE(962)] = 23893, - [SMALL_STATE(963)] = 23897, - [SMALL_STATE(964)] = 23901, - [SMALL_STATE(965)] = 23905, - [SMALL_STATE(966)] = 23909, - [SMALL_STATE(967)] = 23913, - [SMALL_STATE(968)] = 23917, - [SMALL_STATE(969)] = 23921, - [SMALL_STATE(970)] = 23925, - [SMALL_STATE(971)] = 23929, - [SMALL_STATE(972)] = 23933, - [SMALL_STATE(973)] = 23937, - [SMALL_STATE(974)] = 23941, - [SMALL_STATE(975)] = 23945, - [SMALL_STATE(976)] = 23949, - [SMALL_STATE(977)] = 23953, - [SMALL_STATE(978)] = 23957, - [SMALL_STATE(979)] = 23961, - [SMALL_STATE(980)] = 23965, - [SMALL_STATE(981)] = 23969, - [SMALL_STATE(982)] = 23973, - [SMALL_STATE(983)] = 23977, - [SMALL_STATE(984)] = 23981, - [SMALL_STATE(985)] = 23985, - [SMALL_STATE(986)] = 23989, - [SMALL_STATE(987)] = 23993, - [SMALL_STATE(988)] = 23997, - [SMALL_STATE(989)] = 24001, - [SMALL_STATE(990)] = 24005, - [SMALL_STATE(991)] = 24009, - [SMALL_STATE(992)] = 24013, - [SMALL_STATE(993)] = 24017, - [SMALL_STATE(994)] = 24021, - [SMALL_STATE(995)] = 24025, - [SMALL_STATE(996)] = 24029, - [SMALL_STATE(997)] = 24033, - [SMALL_STATE(998)] = 24037, - [SMALL_STATE(999)] = 24041, - [SMALL_STATE(1000)] = 24045, - [SMALL_STATE(1001)] = 24049, - [SMALL_STATE(1002)] = 24053, - [SMALL_STATE(1003)] = 24057, - [SMALL_STATE(1004)] = 24061, - [SMALL_STATE(1005)] = 24065, - [SMALL_STATE(1006)] = 24069, - [SMALL_STATE(1007)] = 24073, - [SMALL_STATE(1008)] = 24077, - [SMALL_STATE(1009)] = 24081, - [SMALL_STATE(1010)] = 24085, - [SMALL_STATE(1011)] = 24089, - [SMALL_STATE(1012)] = 24093, - [SMALL_STATE(1013)] = 24097, - [SMALL_STATE(1014)] = 24101, - [SMALL_STATE(1015)] = 24105, - [SMALL_STATE(1016)] = 24109, - [SMALL_STATE(1017)] = 24113, - [SMALL_STATE(1018)] = 24117, - [SMALL_STATE(1019)] = 24121, - [SMALL_STATE(1020)] = 24125, - [SMALL_STATE(1021)] = 24129, - [SMALL_STATE(1022)] = 24133, - [SMALL_STATE(1023)] = 24137, - [SMALL_STATE(1024)] = 24141, - [SMALL_STATE(1025)] = 24145, - [SMALL_STATE(1026)] = 24149, - [SMALL_STATE(1027)] = 24153, - [SMALL_STATE(1028)] = 24157, - [SMALL_STATE(1029)] = 24161, - [SMALL_STATE(1030)] = 24165, - [SMALL_STATE(1031)] = 24169, - [SMALL_STATE(1032)] = 24173, - [SMALL_STATE(1033)] = 24177, - [SMALL_STATE(1034)] = 24181, - [SMALL_STATE(1035)] = 24185, - [SMALL_STATE(1036)] = 24189, - [SMALL_STATE(1037)] = 24193, - [SMALL_STATE(1038)] = 24197, - [SMALL_STATE(1039)] = 24201, - [SMALL_STATE(1040)] = 24205, - [SMALL_STATE(1041)] = 24209, - [SMALL_STATE(1042)] = 24213, - [SMALL_STATE(1043)] = 24217, - [SMALL_STATE(1044)] = 24221, - [SMALL_STATE(1045)] = 24225, - [SMALL_STATE(1046)] = 24229, - [SMALL_STATE(1047)] = 24233, - [SMALL_STATE(1048)] = 24237, - [SMALL_STATE(1049)] = 24241, - [SMALL_STATE(1050)] = 24245, - [SMALL_STATE(1051)] = 24249, - [SMALL_STATE(1052)] = 24253, - [SMALL_STATE(1053)] = 24257, - [SMALL_STATE(1054)] = 24261, - [SMALL_STATE(1055)] = 24265, - [SMALL_STATE(1056)] = 24269, - [SMALL_STATE(1057)] = 24273, - [SMALL_STATE(1058)] = 24277, - [SMALL_STATE(1059)] = 24281, - [SMALL_STATE(1060)] = 24285, - [SMALL_STATE(1061)] = 24289, - [SMALL_STATE(1062)] = 24293, - [SMALL_STATE(1063)] = 24297, - [SMALL_STATE(1064)] = 24301, - [SMALL_STATE(1065)] = 24305, - [SMALL_STATE(1066)] = 24309, - [SMALL_STATE(1067)] = 24313, - [SMALL_STATE(1068)] = 24317, - [SMALL_STATE(1069)] = 24321, - [SMALL_STATE(1070)] = 24325, - [SMALL_STATE(1071)] = 24329, - [SMALL_STATE(1072)] = 24333, - [SMALL_STATE(1073)] = 24337, - [SMALL_STATE(1074)] = 24341, - [SMALL_STATE(1075)] = 24345, - [SMALL_STATE(1076)] = 24349, - [SMALL_STATE(1077)] = 24353, - [SMALL_STATE(1078)] = 24357, - [SMALL_STATE(1079)] = 24361, - [SMALL_STATE(1080)] = 24365, - [SMALL_STATE(1081)] = 24369, - [SMALL_STATE(1082)] = 24373, - [SMALL_STATE(1083)] = 24377, - [SMALL_STATE(1084)] = 24381, - [SMALL_STATE(1085)] = 24385, - [SMALL_STATE(1086)] = 24389, - [SMALL_STATE(1087)] = 24393, - [SMALL_STATE(1088)] = 24397, - [SMALL_STATE(1089)] = 24401, - [SMALL_STATE(1090)] = 24405, - [SMALL_STATE(1091)] = 24409, - [SMALL_STATE(1092)] = 24413, - [SMALL_STATE(1093)] = 24417, - [SMALL_STATE(1094)] = 24421, - [SMALL_STATE(1095)] = 24425, - [SMALL_STATE(1096)] = 24429, - [SMALL_STATE(1097)] = 24433, - [SMALL_STATE(1098)] = 24437, - [SMALL_STATE(1099)] = 24441, - [SMALL_STATE(1100)] = 24445, - [SMALL_STATE(1101)] = 24449, - [SMALL_STATE(1102)] = 24453, - [SMALL_STATE(1103)] = 24457, - [SMALL_STATE(1104)] = 24461, - [SMALL_STATE(1105)] = 24465, - [SMALL_STATE(1106)] = 24469, - [SMALL_STATE(1107)] = 24473, - [SMALL_STATE(1108)] = 24477, - [SMALL_STATE(1109)] = 24481, - [SMALL_STATE(1110)] = 24485, - [SMALL_STATE(1111)] = 24489, - [SMALL_STATE(1112)] = 24493, - [SMALL_STATE(1113)] = 24497, - [SMALL_STATE(1114)] = 24501, - [SMALL_STATE(1115)] = 24505, - [SMALL_STATE(1116)] = 24509, - [SMALL_STATE(1117)] = 24513, - [SMALL_STATE(1118)] = 24517, - [SMALL_STATE(1119)] = 24521, - [SMALL_STATE(1120)] = 24525, - [SMALL_STATE(1121)] = 24529, - [SMALL_STATE(1122)] = 24533, - [SMALL_STATE(1123)] = 24537, - [SMALL_STATE(1124)] = 24541, - [SMALL_STATE(1125)] = 24545, - [SMALL_STATE(1126)] = 24549, - [SMALL_STATE(1127)] = 24553, - [SMALL_STATE(1128)] = 24557, - [SMALL_STATE(1129)] = 24561, - [SMALL_STATE(1130)] = 24565, - [SMALL_STATE(1131)] = 24569, - [SMALL_STATE(1132)] = 24573, - [SMALL_STATE(1133)] = 24577, - [SMALL_STATE(1134)] = 24581, - [SMALL_STATE(1135)] = 24585, - [SMALL_STATE(1136)] = 24589, - [SMALL_STATE(1137)] = 24593, - [SMALL_STATE(1138)] = 24597, - [SMALL_STATE(1139)] = 24601, - [SMALL_STATE(1140)] = 24605, - [SMALL_STATE(1141)] = 24609, - [SMALL_STATE(1142)] = 24613, - [SMALL_STATE(1143)] = 24617, - [SMALL_STATE(1144)] = 24621, - [SMALL_STATE(1145)] = 24625, - [SMALL_STATE(1146)] = 24629, - [SMALL_STATE(1147)] = 24633, - [SMALL_STATE(1148)] = 24637, - [SMALL_STATE(1149)] = 24641, - [SMALL_STATE(1150)] = 24645, - [SMALL_STATE(1151)] = 24649, - [SMALL_STATE(1152)] = 24653, - [SMALL_STATE(1153)] = 24657, - [SMALL_STATE(1154)] = 24661, - [SMALL_STATE(1155)] = 24665, - [SMALL_STATE(1156)] = 24669, - [SMALL_STATE(1157)] = 24673, - [SMALL_STATE(1158)] = 24677, - [SMALL_STATE(1159)] = 24681, - [SMALL_STATE(1160)] = 24685, - [SMALL_STATE(1161)] = 24689, - [SMALL_STATE(1162)] = 24693, - [SMALL_STATE(1163)] = 24697, - [SMALL_STATE(1164)] = 24701, - [SMALL_STATE(1165)] = 24705, - [SMALL_STATE(1166)] = 24709, - [SMALL_STATE(1167)] = 24713, - [SMALL_STATE(1168)] = 24717, - [SMALL_STATE(1169)] = 24721, - [SMALL_STATE(1170)] = 24725, - [SMALL_STATE(1171)] = 24729, - [SMALL_STATE(1172)] = 24733, - [SMALL_STATE(1173)] = 24737, - [SMALL_STATE(1174)] = 24741, - [SMALL_STATE(1175)] = 24745, - [SMALL_STATE(1176)] = 24749, - [SMALL_STATE(1177)] = 24753, - [SMALL_STATE(1178)] = 24757, - [SMALL_STATE(1179)] = 24761, - [SMALL_STATE(1180)] = 24765, - [SMALL_STATE(1181)] = 24769, - [SMALL_STATE(1182)] = 24773, - [SMALL_STATE(1183)] = 24777, - [SMALL_STATE(1184)] = 24781, - [SMALL_STATE(1185)] = 24785, - [SMALL_STATE(1186)] = 24789, - [SMALL_STATE(1187)] = 24793, - [SMALL_STATE(1188)] = 24797, - [SMALL_STATE(1189)] = 24801, - [SMALL_STATE(1190)] = 24805, - [SMALL_STATE(1191)] = 24809, - [SMALL_STATE(1192)] = 24813, - [SMALL_STATE(1193)] = 24817, - [SMALL_STATE(1194)] = 24821, - [SMALL_STATE(1195)] = 24825, - [SMALL_STATE(1196)] = 24829, - [SMALL_STATE(1197)] = 24833, - [SMALL_STATE(1198)] = 24837, - [SMALL_STATE(1199)] = 24841, - [SMALL_STATE(1200)] = 24845, - [SMALL_STATE(1201)] = 24849, - [SMALL_STATE(1202)] = 24853, - [SMALL_STATE(1203)] = 24857, - [SMALL_STATE(1204)] = 24861, - [SMALL_STATE(1205)] = 24865, - [SMALL_STATE(1206)] = 24869, - [SMALL_STATE(1207)] = 24873, - [SMALL_STATE(1208)] = 24877, - [SMALL_STATE(1209)] = 24881, - [SMALL_STATE(1210)] = 24885, - [SMALL_STATE(1211)] = 24889, - [SMALL_STATE(1212)] = 24893, - [SMALL_STATE(1213)] = 24897, - [SMALL_STATE(1214)] = 24901, - [SMALL_STATE(1215)] = 24905, - [SMALL_STATE(1216)] = 24909, - [SMALL_STATE(1217)] = 24913, - [SMALL_STATE(1218)] = 24917, - [SMALL_STATE(1219)] = 24921, - [SMALL_STATE(1220)] = 24925, - [SMALL_STATE(1221)] = 24929, - [SMALL_STATE(1222)] = 24933, - [SMALL_STATE(1223)] = 24937, - [SMALL_STATE(1224)] = 24941, - [SMALL_STATE(1225)] = 24945, - [SMALL_STATE(1226)] = 24949, - [SMALL_STATE(1227)] = 24953, - [SMALL_STATE(1228)] = 24957, - [SMALL_STATE(1229)] = 24961, - [SMALL_STATE(1230)] = 24965, - [SMALL_STATE(1231)] = 24969, - [SMALL_STATE(1232)] = 24973, - [SMALL_STATE(1233)] = 24977, - [SMALL_STATE(1234)] = 24981, - [SMALL_STATE(1235)] = 24985, - [SMALL_STATE(1236)] = 24989, - [SMALL_STATE(1237)] = 24993, - [SMALL_STATE(1238)] = 24997, - [SMALL_STATE(1239)] = 25001, - [SMALL_STATE(1240)] = 25005, - [SMALL_STATE(1241)] = 25009, - [SMALL_STATE(1242)] = 25013, - [SMALL_STATE(1243)] = 25017, - [SMALL_STATE(1244)] = 25021, - [SMALL_STATE(1245)] = 25025, - [SMALL_STATE(1246)] = 25029, - [SMALL_STATE(1247)] = 25033, - [SMALL_STATE(1248)] = 25037, - [SMALL_STATE(1249)] = 25041, - [SMALL_STATE(1250)] = 25045, - [SMALL_STATE(1251)] = 25049, - [SMALL_STATE(1252)] = 25053, - [SMALL_STATE(1253)] = 25057, - [SMALL_STATE(1254)] = 25061, - [SMALL_STATE(1255)] = 25065, - [SMALL_STATE(1256)] = 25069, - [SMALL_STATE(1257)] = 25073, - [SMALL_STATE(1258)] = 25077, - [SMALL_STATE(1259)] = 25081, - [SMALL_STATE(1260)] = 25085, - [SMALL_STATE(1261)] = 25089, - [SMALL_STATE(1262)] = 25093, - [SMALL_STATE(1263)] = 25097, - [SMALL_STATE(1264)] = 25101, - [SMALL_STATE(1265)] = 25105, - [SMALL_STATE(1266)] = 25109, - [SMALL_STATE(1267)] = 25113, - [SMALL_STATE(1268)] = 25117, - [SMALL_STATE(1269)] = 25121, - [SMALL_STATE(1270)] = 25125, - [SMALL_STATE(1271)] = 25129, - [SMALL_STATE(1272)] = 25133, + [SMALL_STATE(121)] = 0, + [SMALL_STATE(122)] = 53, + [SMALL_STATE(123)] = 106, + [SMALL_STATE(124)] = 159, + [SMALL_STATE(125)] = 212, + [SMALL_STATE(126)] = 265, + [SMALL_STATE(127)] = 318, + [SMALL_STATE(128)] = 371, + [SMALL_STATE(129)] = 424, + [SMALL_STATE(130)] = 477, + [SMALL_STATE(131)] = 530, + [SMALL_STATE(132)] = 580, + [SMALL_STATE(133)] = 630, + [SMALL_STATE(134)] = 680, + [SMALL_STATE(135)] = 732, + [SMALL_STATE(136)] = 782, + [SMALL_STATE(137)] = 832, + [SMALL_STATE(138)] = 882, + [SMALL_STATE(139)] = 932, + [SMALL_STATE(140)] = 982, + [SMALL_STATE(141)] = 1032, + [SMALL_STATE(142)] = 1082, + [SMALL_STATE(143)] = 1129, + [SMALL_STATE(144)] = 1178, + [SMALL_STATE(145)] = 1225, + [SMALL_STATE(146)] = 1272, + [SMALL_STATE(147)] = 1319, + [SMALL_STATE(148)] = 1366, + [SMALL_STATE(149)] = 1413, + [SMALL_STATE(150)] = 1460, + [SMALL_STATE(151)] = 1507, + [SMALL_STATE(152)] = 1554, + [SMALL_STATE(153)] = 1601, + [SMALL_STATE(154)] = 1645, + [SMALL_STATE(155)] = 1691, + [SMALL_STATE(156)] = 1735, + [SMALL_STATE(157)] = 1779, + [SMALL_STATE(158)] = 1825, + [SMALL_STATE(159)] = 1869, + [SMALL_STATE(160)] = 1913, + [SMALL_STATE(161)] = 1957, + [SMALL_STATE(162)] = 2001, + [SMALL_STATE(163)] = 2047, + [SMALL_STATE(164)] = 2091, + [SMALL_STATE(165)] = 2137, + [SMALL_STATE(166)] = 2181, + [SMALL_STATE(167)] = 2225, + [SMALL_STATE(168)] = 2269, + [SMALL_STATE(169)] = 2313, + [SMALL_STATE(170)] = 2359, + [SMALL_STATE(171)] = 2405, + [SMALL_STATE(172)] = 2451, + [SMALL_STATE(173)] = 2495, + [SMALL_STATE(174)] = 2539, + [SMALL_STATE(175)] = 2583, + [SMALL_STATE(176)] = 2629, + [SMALL_STATE(177)] = 2673, + [SMALL_STATE(178)] = 2717, + [SMALL_STATE(179)] = 2761, + [SMALL_STATE(180)] = 2805, + [SMALL_STATE(181)] = 2851, + [SMALL_STATE(182)] = 2895, + [SMALL_STATE(183)] = 2939, + [SMALL_STATE(184)] = 2983, + [SMALL_STATE(185)] = 3029, + [SMALL_STATE(186)] = 3073, + [SMALL_STATE(187)] = 3119, + [SMALL_STATE(188)] = 3163, + [SMALL_STATE(189)] = 3207, + [SMALL_STATE(190)] = 3251, + [SMALL_STATE(191)] = 3295, + [SMALL_STATE(192)] = 3339, + [SMALL_STATE(193)] = 3383, + [SMALL_STATE(194)] = 3427, + [SMALL_STATE(195)] = 3473, + [SMALL_STATE(196)] = 3519, + [SMALL_STATE(197)] = 3565, + [SMALL_STATE(198)] = 3609, + [SMALL_STATE(199)] = 3655, + [SMALL_STATE(200)] = 3699, + [SMALL_STATE(201)] = 3743, + [SMALL_STATE(202)] = 3787, + [SMALL_STATE(203)] = 3833, + [SMALL_STATE(204)] = 3879, + [SMALL_STATE(205)] = 3923, + [SMALL_STATE(206)] = 3969, + [SMALL_STATE(207)] = 4013, + [SMALL_STATE(208)] = 4057, + [SMALL_STATE(209)] = 4103, + [SMALL_STATE(210)] = 4147, + [SMALL_STATE(211)] = 4191, + [SMALL_STATE(212)] = 4235, + [SMALL_STATE(213)] = 4276, + [SMALL_STATE(214)] = 4317, + [SMALL_STATE(215)] = 4362, + [SMALL_STATE(216)] = 4403, + [SMALL_STATE(217)] = 4444, + [SMALL_STATE(218)] = 4485, + [SMALL_STATE(219)] = 4526, + [SMALL_STATE(220)] = 4567, + [SMALL_STATE(221)] = 4608, + [SMALL_STATE(222)] = 4649, + [SMALL_STATE(223)] = 4690, + [SMALL_STATE(224)] = 4731, + [SMALL_STATE(225)] = 4772, + [SMALL_STATE(226)] = 4813, + [SMALL_STATE(227)] = 4854, + [SMALL_STATE(228)] = 4895, + [SMALL_STATE(229)] = 4936, + [SMALL_STATE(230)] = 4977, + [SMALL_STATE(231)] = 5018, + [SMALL_STATE(232)] = 5059, + [SMALL_STATE(233)] = 5100, + [SMALL_STATE(234)] = 5141, + [SMALL_STATE(235)] = 5182, + [SMALL_STATE(236)] = 5223, + [SMALL_STATE(237)] = 5264, + [SMALL_STATE(238)] = 5305, + [SMALL_STATE(239)] = 5350, + [SMALL_STATE(240)] = 5391, + [SMALL_STATE(241)] = 5432, + [SMALL_STATE(242)] = 5473, + [SMALL_STATE(243)] = 5516, + [SMALL_STATE(244)] = 5557, + [SMALL_STATE(245)] = 5598, + [SMALL_STATE(246)] = 5639, + [SMALL_STATE(247)] = 5680, + [SMALL_STATE(248)] = 5721, + [SMALL_STATE(249)] = 5762, + [SMALL_STATE(250)] = 5803, + [SMALL_STATE(251)] = 5844, + [SMALL_STATE(252)] = 5885, + [SMALL_STATE(253)] = 5926, + [SMALL_STATE(254)] = 5967, + [SMALL_STATE(255)] = 6008, + [SMALL_STATE(256)] = 6049, + [SMALL_STATE(257)] = 6090, + [SMALL_STATE(258)] = 6131, + [SMALL_STATE(259)] = 6172, + [SMALL_STATE(260)] = 6213, + [SMALL_STATE(261)] = 6254, + [SMALL_STATE(262)] = 6295, + [SMALL_STATE(263)] = 6336, + [SMALL_STATE(264)] = 6377, + [SMALL_STATE(265)] = 6418, + [SMALL_STATE(266)] = 6459, + [SMALL_STATE(267)] = 6500, + [SMALL_STATE(268)] = 6541, + [SMALL_STATE(269)] = 6582, + [SMALL_STATE(270)] = 6623, + [SMALL_STATE(271)] = 6664, + [SMALL_STATE(272)] = 6705, + [SMALL_STATE(273)] = 6746, + [SMALL_STATE(274)] = 6787, + [SMALL_STATE(275)] = 6828, + [SMALL_STATE(276)] = 6869, + [SMALL_STATE(277)] = 6910, + [SMALL_STATE(278)] = 6951, + [SMALL_STATE(279)] = 6992, + [SMALL_STATE(280)] = 7035, + [SMALL_STATE(281)] = 7076, + [SMALL_STATE(282)] = 7117, + [SMALL_STATE(283)] = 7160, + [SMALL_STATE(284)] = 7201, + [SMALL_STATE(285)] = 7242, + [SMALL_STATE(286)] = 7283, + [SMALL_STATE(287)] = 7324, + [SMALL_STATE(288)] = 7365, + [SMALL_STATE(289)] = 7406, + [SMALL_STATE(290)] = 7447, + [SMALL_STATE(291)] = 7488, + [SMALL_STATE(292)] = 7529, + [SMALL_STATE(293)] = 7570, + [SMALL_STATE(294)] = 7611, + [SMALL_STATE(295)] = 7652, + [SMALL_STATE(296)] = 7693, + [SMALL_STATE(297)] = 7734, + [SMALL_STATE(298)] = 7775, + [SMALL_STATE(299)] = 7816, + [SMALL_STATE(300)] = 7857, + [SMALL_STATE(301)] = 7898, + [SMALL_STATE(302)] = 7939, + [SMALL_STATE(303)] = 7980, + [SMALL_STATE(304)] = 8021, + [SMALL_STATE(305)] = 8062, + [SMALL_STATE(306)] = 8103, + [SMALL_STATE(307)] = 8144, + [SMALL_STATE(308)] = 8185, + [SMALL_STATE(309)] = 8226, + [SMALL_STATE(310)] = 8267, + [SMALL_STATE(311)] = 8308, + [SMALL_STATE(312)] = 8349, + [SMALL_STATE(313)] = 8390, + [SMALL_STATE(314)] = 8431, + [SMALL_STATE(315)] = 8472, + [SMALL_STATE(316)] = 8513, + [SMALL_STATE(317)] = 8554, + [SMALL_STATE(318)] = 8595, + [SMALL_STATE(319)] = 8636, + [SMALL_STATE(320)] = 8677, + [SMALL_STATE(321)] = 8718, + [SMALL_STATE(322)] = 8759, + [SMALL_STATE(323)] = 8800, + [SMALL_STATE(324)] = 8843, + [SMALL_STATE(325)] = 8884, + [SMALL_STATE(326)] = 8925, + [SMALL_STATE(327)] = 8966, + [SMALL_STATE(328)] = 9007, + [SMALL_STATE(329)] = 9048, + [SMALL_STATE(330)] = 9089, + [SMALL_STATE(331)] = 9130, + [SMALL_STATE(332)] = 9171, + [SMALL_STATE(333)] = 9212, + [SMALL_STATE(334)] = 9253, + [SMALL_STATE(335)] = 9294, + [SMALL_STATE(336)] = 9335, + [SMALL_STATE(337)] = 9376, + [SMALL_STATE(338)] = 9417, + [SMALL_STATE(339)] = 9458, + [SMALL_STATE(340)] = 9499, + [SMALL_STATE(341)] = 9540, + [SMALL_STATE(342)] = 9581, + [SMALL_STATE(343)] = 9622, + [SMALL_STATE(344)] = 9663, + [SMALL_STATE(345)] = 9708, + [SMALL_STATE(346)] = 9749, + [SMALL_STATE(347)] = 9790, + [SMALL_STATE(348)] = 9833, + [SMALL_STATE(349)] = 9874, + [SMALL_STATE(350)] = 9915, + [SMALL_STATE(351)] = 9956, + [SMALL_STATE(352)] = 9997, + [SMALL_STATE(353)] = 10038, + [SMALL_STATE(354)] = 10079, + [SMALL_STATE(355)] = 10120, + [SMALL_STATE(356)] = 10161, + [SMALL_STATE(357)] = 10202, + [SMALL_STATE(358)] = 10243, + [SMALL_STATE(359)] = 10284, + [SMALL_STATE(360)] = 10325, + [SMALL_STATE(361)] = 10366, + [SMALL_STATE(362)] = 10409, + [SMALL_STATE(363)] = 10450, + [SMALL_STATE(364)] = 10491, + [SMALL_STATE(365)] = 10532, + [SMALL_STATE(366)] = 10573, + [SMALL_STATE(367)] = 10616, + [SMALL_STATE(368)] = 10659, + [SMALL_STATE(369)] = 10700, + [SMALL_STATE(370)] = 10741, + [SMALL_STATE(371)] = 10782, + [SMALL_STATE(372)] = 10825, + [SMALL_STATE(373)] = 10866, + [SMALL_STATE(374)] = 10907, + [SMALL_STATE(375)] = 10948, + [SMALL_STATE(376)] = 10989, + [SMALL_STATE(377)] = 11030, + [SMALL_STATE(378)] = 11071, + [SMALL_STATE(379)] = 11112, + [SMALL_STATE(380)] = 11153, + [SMALL_STATE(381)] = 11194, + [SMALL_STATE(382)] = 11235, + [SMALL_STATE(383)] = 11276, + [SMALL_STATE(384)] = 11317, + [SMALL_STATE(385)] = 11358, + [SMALL_STATE(386)] = 11399, + [SMALL_STATE(387)] = 11440, + [SMALL_STATE(388)] = 11481, + [SMALL_STATE(389)] = 11522, + [SMALL_STATE(390)] = 11563, + [SMALL_STATE(391)] = 11604, + [SMALL_STATE(392)] = 11645, + [SMALL_STATE(393)] = 11686, + [SMALL_STATE(394)] = 11727, + [SMALL_STATE(395)] = 11768, + [SMALL_STATE(396)] = 11809, + [SMALL_STATE(397)] = 11850, + [SMALL_STATE(398)] = 11891, + [SMALL_STATE(399)] = 11932, + [SMALL_STATE(400)] = 11973, + [SMALL_STATE(401)] = 12014, + [SMALL_STATE(402)] = 12055, + [SMALL_STATE(403)] = 12096, + [SMALL_STATE(404)] = 12137, + [SMALL_STATE(405)] = 12178, + [SMALL_STATE(406)] = 12219, + [SMALL_STATE(407)] = 12260, + [SMALL_STATE(408)] = 12301, + [SMALL_STATE(409)] = 12342, + [SMALL_STATE(410)] = 12383, + [SMALL_STATE(411)] = 12424, + [SMALL_STATE(412)] = 12467, + [SMALL_STATE(413)] = 12508, + [SMALL_STATE(414)] = 12549, + [SMALL_STATE(415)] = 12590, + [SMALL_STATE(416)] = 12631, + [SMALL_STATE(417)] = 12676, + [SMALL_STATE(418)] = 12717, + [SMALL_STATE(419)] = 12758, + [SMALL_STATE(420)] = 12799, + [SMALL_STATE(421)] = 12840, + [SMALL_STATE(422)] = 12881, + [SMALL_STATE(423)] = 12922, + [SMALL_STATE(424)] = 12963, + [SMALL_STATE(425)] = 13004, + [SMALL_STATE(426)] = 13045, + [SMALL_STATE(427)] = 13086, + [SMALL_STATE(428)] = 13127, + [SMALL_STATE(429)] = 13168, + [SMALL_STATE(430)] = 13211, + [SMALL_STATE(431)] = 13252, + [SMALL_STATE(432)] = 13293, + [SMALL_STATE(433)] = 13334, + [SMALL_STATE(434)] = 13375, + [SMALL_STATE(435)] = 13416, + [SMALL_STATE(436)] = 13457, + [SMALL_STATE(437)] = 13498, + [SMALL_STATE(438)] = 13539, + [SMALL_STATE(439)] = 13580, + [SMALL_STATE(440)] = 13621, + [SMALL_STATE(441)] = 13662, + [SMALL_STATE(442)] = 13703, + [SMALL_STATE(443)] = 13744, + [SMALL_STATE(444)] = 13785, + [SMALL_STATE(445)] = 13826, + [SMALL_STATE(446)] = 13867, + [SMALL_STATE(447)] = 13908, + [SMALL_STATE(448)] = 13949, + [SMALL_STATE(449)] = 13990, + [SMALL_STATE(450)] = 14031, + [SMALL_STATE(451)] = 14072, + [SMALL_STATE(452)] = 14113, + [SMALL_STATE(453)] = 14154, + [SMALL_STATE(454)] = 14195, + [SMALL_STATE(455)] = 14236, + [SMALL_STATE(456)] = 14279, + [SMALL_STATE(457)] = 14320, + [SMALL_STATE(458)] = 14361, + [SMALL_STATE(459)] = 14402, + [SMALL_STATE(460)] = 14443, + [SMALL_STATE(461)] = 14484, + [SMALL_STATE(462)] = 14525, + [SMALL_STATE(463)] = 14566, + [SMALL_STATE(464)] = 14607, + [SMALL_STATE(465)] = 14648, + [SMALL_STATE(466)] = 14689, + [SMALL_STATE(467)] = 14730, + [SMALL_STATE(468)] = 14771, + [SMALL_STATE(469)] = 14812, + [SMALL_STATE(470)] = 14853, + [SMALL_STATE(471)] = 14894, + [SMALL_STATE(472)] = 14935, + [SMALL_STATE(473)] = 14976, + [SMALL_STATE(474)] = 15017, + [SMALL_STATE(475)] = 15058, + [SMALL_STATE(476)] = 15099, + [SMALL_STATE(477)] = 15140, + [SMALL_STATE(478)] = 15181, + [SMALL_STATE(479)] = 15222, + [SMALL_STATE(480)] = 15263, + [SMALL_STATE(481)] = 15304, + [SMALL_STATE(482)] = 15345, + [SMALL_STATE(483)] = 15386, + [SMALL_STATE(484)] = 15427, + [SMALL_STATE(485)] = 15468, + [SMALL_STATE(486)] = 15509, + [SMALL_STATE(487)] = 15550, + [SMALL_STATE(488)] = 15591, + [SMALL_STATE(489)] = 15632, + [SMALL_STATE(490)] = 15673, + [SMALL_STATE(491)] = 15714, + [SMALL_STATE(492)] = 15755, + [SMALL_STATE(493)] = 15796, + [SMALL_STATE(494)] = 15837, + [SMALL_STATE(495)] = 15880, + [SMALL_STATE(496)] = 15921, + [SMALL_STATE(497)] = 15962, + [SMALL_STATE(498)] = 16003, + [SMALL_STATE(499)] = 16046, + [SMALL_STATE(500)] = 16087, + [SMALL_STATE(501)] = 16127, + [SMALL_STATE(502)] = 16167, + [SMALL_STATE(503)] = 16207, + [SMALL_STATE(504)] = 16247, + [SMALL_STATE(505)] = 16287, + [SMALL_STATE(506)] = 16327, + [SMALL_STATE(507)] = 16367, + [SMALL_STATE(508)] = 16407, + [SMALL_STATE(509)] = 16447, + [SMALL_STATE(510)] = 16487, + [SMALL_STATE(511)] = 16527, + [SMALL_STATE(512)] = 16567, + [SMALL_STATE(513)] = 16607, + [SMALL_STATE(514)] = 16647, + [SMALL_STATE(515)] = 16687, + [SMALL_STATE(516)] = 16727, + [SMALL_STATE(517)] = 16767, + [SMALL_STATE(518)] = 16807, + [SMALL_STATE(519)] = 16847, + [SMALL_STATE(520)] = 16887, + [SMALL_STATE(521)] = 16927, + [SMALL_STATE(522)] = 16967, + [SMALL_STATE(523)] = 17007, + [SMALL_STATE(524)] = 17047, + [SMALL_STATE(525)] = 17087, + [SMALL_STATE(526)] = 17127, + [SMALL_STATE(527)] = 17167, + [SMALL_STATE(528)] = 17207, + [SMALL_STATE(529)] = 17247, + [SMALL_STATE(530)] = 17287, + [SMALL_STATE(531)] = 17327, + [SMALL_STATE(532)] = 17367, + [SMALL_STATE(533)] = 17407, + [SMALL_STATE(534)] = 17447, + [SMALL_STATE(535)] = 17487, + [SMALL_STATE(536)] = 17527, + [SMALL_STATE(537)] = 17569, + [SMALL_STATE(538)] = 17609, + [SMALL_STATE(539)] = 17649, + [SMALL_STATE(540)] = 17691, + [SMALL_STATE(541)] = 17731, + [SMALL_STATE(542)] = 17771, + [SMALL_STATE(543)] = 17811, + [SMALL_STATE(544)] = 17851, + [SMALL_STATE(545)] = 17891, + [SMALL_STATE(546)] = 17931, + [SMALL_STATE(547)] = 17971, + [SMALL_STATE(548)] = 18011, + [SMALL_STATE(549)] = 18051, + [SMALL_STATE(550)] = 18091, + [SMALL_STATE(551)] = 18131, + [SMALL_STATE(552)] = 18171, + [SMALL_STATE(553)] = 18211, + [SMALL_STATE(554)] = 18251, + [SMALL_STATE(555)] = 18291, + [SMALL_STATE(556)] = 18333, + [SMALL_STATE(557)] = 18373, + [SMALL_STATE(558)] = 18413, + [SMALL_STATE(559)] = 18453, + [SMALL_STATE(560)] = 18493, + [SMALL_STATE(561)] = 18533, + [SMALL_STATE(562)] = 18573, + [SMALL_STATE(563)] = 18613, + [SMALL_STATE(564)] = 18653, + [SMALL_STATE(565)] = 18693, + [SMALL_STATE(566)] = 18733, + [SMALL_STATE(567)] = 18773, + [SMALL_STATE(568)] = 18813, + [SMALL_STATE(569)] = 18853, + [SMALL_STATE(570)] = 18893, + [SMALL_STATE(571)] = 18933, + [SMALL_STATE(572)] = 18973, + [SMALL_STATE(573)] = 19013, + [SMALL_STATE(574)] = 19053, + [SMALL_STATE(575)] = 19093, + [SMALL_STATE(576)] = 19133, + [SMALL_STATE(577)] = 19173, + [SMALL_STATE(578)] = 19215, + [SMALL_STATE(579)] = 19255, + [SMALL_STATE(580)] = 19295, + [SMALL_STATE(581)] = 19335, + [SMALL_STATE(582)] = 19377, + [SMALL_STATE(583)] = 19416, + [SMALL_STATE(584)] = 19455, + [SMALL_STATE(585)] = 19494, + [SMALL_STATE(586)] = 19533, + [SMALL_STATE(587)] = 19572, + [SMALL_STATE(588)] = 19603, + [SMALL_STATE(589)] = 19634, + [SMALL_STATE(590)] = 19665, + [SMALL_STATE(591)] = 19696, + [SMALL_STATE(592)] = 19727, + [SMALL_STATE(593)] = 19758, + [SMALL_STATE(594)] = 19789, + [SMALL_STATE(595)] = 19820, + [SMALL_STATE(596)] = 19851, + [SMALL_STATE(597)] = 19882, + [SMALL_STATE(598)] = 19913, + [SMALL_STATE(599)] = 19944, + [SMALL_STATE(600)] = 19975, + [SMALL_STATE(601)] = 20006, + [SMALL_STATE(602)] = 20037, + [SMALL_STATE(603)] = 20068, + [SMALL_STATE(604)] = 20099, + [SMALL_STATE(605)] = 20130, + [SMALL_STATE(606)] = 20161, + [SMALL_STATE(607)] = 20192, + [SMALL_STATE(608)] = 20223, + [SMALL_STATE(609)] = 20254, + [SMALL_STATE(610)] = 20285, + [SMALL_STATE(611)] = 20295, + [SMALL_STATE(612)] = 20305, + [SMALL_STATE(613)] = 20315, + [SMALL_STATE(614)] = 20325, + [SMALL_STATE(615)] = 20335, + [SMALL_STATE(616)] = 20345, + [SMALL_STATE(617)] = 20355, + [SMALL_STATE(618)] = 20365, + [SMALL_STATE(619)] = 20375, + [SMALL_STATE(620)] = 20394, + [SMALL_STATE(621)] = 20413, + [SMALL_STATE(622)] = 20432, + [SMALL_STATE(623)] = 20449, + [SMALL_STATE(624)] = 20468, + [SMALL_STATE(625)] = 20487, + [SMALL_STATE(626)] = 20506, + [SMALL_STATE(627)] = 20525, + [SMALL_STATE(628)] = 20544, + [SMALL_STATE(629)] = 20561, + [SMALL_STATE(630)] = 20580, + [SMALL_STATE(631)] = 20599, + [SMALL_STATE(632)] = 20618, + [SMALL_STATE(633)] = 20635, + [SMALL_STATE(634)] = 20654, + [SMALL_STATE(635)] = 20671, + [SMALL_STATE(636)] = 20688, + [SMALL_STATE(637)] = 20707, + [SMALL_STATE(638)] = 20726, + [SMALL_STATE(639)] = 20745, + [SMALL_STATE(640)] = 20762, + [SMALL_STATE(641)] = 20781, + [SMALL_STATE(642)] = 20798, + [SMALL_STATE(643)] = 20817, + [SMALL_STATE(644)] = 20836, + [SMALL_STATE(645)] = 20855, + [SMALL_STATE(646)] = 20872, + [SMALL_STATE(647)] = 20889, + [SMALL_STATE(648)] = 20908, + [SMALL_STATE(649)] = 20925, + [SMALL_STATE(650)] = 20942, + [SMALL_STATE(651)] = 20961, + [SMALL_STATE(652)] = 20980, + [SMALL_STATE(653)] = 20992, + [SMALL_STATE(654)] = 21004, + [SMALL_STATE(655)] = 21016, + [SMALL_STATE(656)] = 21028, + [SMALL_STATE(657)] = 21040, + [SMALL_STATE(658)] = 21047, + [SMALL_STATE(659)] = 21057, + [SMALL_STATE(660)] = 21065, + [SMALL_STATE(661)] = 21073, + [SMALL_STATE(662)] = 21080, + [SMALL_STATE(663)] = 21087, + [SMALL_STATE(664)] = 21092, + [SMALL_STATE(665)] = 21099, + [SMALL_STATE(666)] = 21106, + [SMALL_STATE(667)] = 21113, + [SMALL_STATE(668)] = 21120, + [SMALL_STATE(669)] = 21127, + [SMALL_STATE(670)] = 21134, + [SMALL_STATE(671)] = 21141, + [SMALL_STATE(672)] = 21148, + [SMALL_STATE(673)] = 21155, + [SMALL_STATE(674)] = 21162, + [SMALL_STATE(675)] = 21169, + [SMALL_STATE(676)] = 21176, + [SMALL_STATE(677)] = 21183, + [SMALL_STATE(678)] = 21190, + [SMALL_STATE(679)] = 21197, + [SMALL_STATE(680)] = 21204, + [SMALL_STATE(681)] = 21209, + [SMALL_STATE(682)] = 21216, + [SMALL_STATE(683)] = 21223, + [SMALL_STATE(684)] = 21230, + [SMALL_STATE(685)] = 21237, + [SMALL_STATE(686)] = 21244, + [SMALL_STATE(687)] = 21251, + [SMALL_STATE(688)] = 21258, + [SMALL_STATE(689)] = 21265, + [SMALL_STATE(690)] = 21272, + [SMALL_STATE(691)] = 21279, + [SMALL_STATE(692)] = 21286, + [SMALL_STATE(693)] = 21293, + [SMALL_STATE(694)] = 21300, + [SMALL_STATE(695)] = 21305, + [SMALL_STATE(696)] = 21312, + [SMALL_STATE(697)] = 21319, + [SMALL_STATE(698)] = 21326, + [SMALL_STATE(699)] = 21333, + [SMALL_STATE(700)] = 21340, + [SMALL_STATE(701)] = 21347, + [SMALL_STATE(702)] = 21354, + [SMALL_STATE(703)] = 21361, + [SMALL_STATE(704)] = 21368, + [SMALL_STATE(705)] = 21375, + [SMALL_STATE(706)] = 21382, + [SMALL_STATE(707)] = 21389, + [SMALL_STATE(708)] = 21396, + [SMALL_STATE(709)] = 21403, + [SMALL_STATE(710)] = 21410, + [SMALL_STATE(711)] = 21417, + [SMALL_STATE(712)] = 21424, + [SMALL_STATE(713)] = 21431, + [SMALL_STATE(714)] = 21438, + [SMALL_STATE(715)] = 21445, + [SMALL_STATE(716)] = 21452, + [SMALL_STATE(717)] = 21459, + [SMALL_STATE(718)] = 21466, + [SMALL_STATE(719)] = 21473, + [SMALL_STATE(720)] = 21480, + [SMALL_STATE(721)] = 21487, + [SMALL_STATE(722)] = 21494, + [SMALL_STATE(723)] = 21501, + [SMALL_STATE(724)] = 21508, + [SMALL_STATE(725)] = 21515, + [SMALL_STATE(726)] = 21522, + [SMALL_STATE(727)] = 21529, + [SMALL_STATE(728)] = 21536, + [SMALL_STATE(729)] = 21541, + [SMALL_STATE(730)] = 21548, + [SMALL_STATE(731)] = 21555, + [SMALL_STATE(732)] = 21562, + [SMALL_STATE(733)] = 21569, + [SMALL_STATE(734)] = 21576, + [SMALL_STATE(735)] = 21583, + [SMALL_STATE(736)] = 21590, + [SMALL_STATE(737)] = 21597, + [SMALL_STATE(738)] = 21604, + [SMALL_STATE(739)] = 21611, + [SMALL_STATE(740)] = 21618, + [SMALL_STATE(741)] = 21625, + [SMALL_STATE(742)] = 21632, + [SMALL_STATE(743)] = 21639, + [SMALL_STATE(744)] = 21646, + [SMALL_STATE(745)] = 21651, + [SMALL_STATE(746)] = 21658, + [SMALL_STATE(747)] = 21665, + [SMALL_STATE(748)] = 21672, + [SMALL_STATE(749)] = 21679, + [SMALL_STATE(750)] = 21686, + [SMALL_STATE(751)] = 21693, + [SMALL_STATE(752)] = 21700, + [SMALL_STATE(753)] = 21707, + [SMALL_STATE(754)] = 21714, + [SMALL_STATE(755)] = 21721, + [SMALL_STATE(756)] = 21728, + [SMALL_STATE(757)] = 21735, + [SMALL_STATE(758)] = 21742, + [SMALL_STATE(759)] = 21749, + [SMALL_STATE(760)] = 21756, + [SMALL_STATE(761)] = 21763, + [SMALL_STATE(762)] = 21770, + [SMALL_STATE(763)] = 21775, + [SMALL_STATE(764)] = 21782, + [SMALL_STATE(765)] = 21789, + [SMALL_STATE(766)] = 21796, + [SMALL_STATE(767)] = 21803, + [SMALL_STATE(768)] = 21810, + [SMALL_STATE(769)] = 21817, + [SMALL_STATE(770)] = 21824, + [SMALL_STATE(771)] = 21831, + [SMALL_STATE(772)] = 21838, + [SMALL_STATE(773)] = 21845, + [SMALL_STATE(774)] = 21852, + [SMALL_STATE(775)] = 21859, + [SMALL_STATE(776)] = 21866, + [SMALL_STATE(777)] = 21873, + [SMALL_STATE(778)] = 21880, + [SMALL_STATE(779)] = 21885, + [SMALL_STATE(780)] = 21892, + [SMALL_STATE(781)] = 21899, + [SMALL_STATE(782)] = 21906, + [SMALL_STATE(783)] = 21913, + [SMALL_STATE(784)] = 21920, + [SMALL_STATE(785)] = 21927, + [SMALL_STATE(786)] = 21934, + [SMALL_STATE(787)] = 21941, + [SMALL_STATE(788)] = 21948, + [SMALL_STATE(789)] = 21955, + [SMALL_STATE(790)] = 21962, + [SMALL_STATE(791)] = 21969, + [SMALL_STATE(792)] = 21976, + [SMALL_STATE(793)] = 21983, + [SMALL_STATE(794)] = 21990, + [SMALL_STATE(795)] = 21997, + [SMALL_STATE(796)] = 22004, + [SMALL_STATE(797)] = 22009, + [SMALL_STATE(798)] = 22016, + [SMALL_STATE(799)] = 22023, + [SMALL_STATE(800)] = 22030, + [SMALL_STATE(801)] = 22037, + [SMALL_STATE(802)] = 22044, + [SMALL_STATE(803)] = 22051, + [SMALL_STATE(804)] = 22058, + [SMALL_STATE(805)] = 22065, + [SMALL_STATE(806)] = 22072, + [SMALL_STATE(807)] = 22079, + [SMALL_STATE(808)] = 22086, + [SMALL_STATE(809)] = 22093, + [SMALL_STATE(810)] = 22098, + [SMALL_STATE(811)] = 22103, + [SMALL_STATE(812)] = 22110, + [SMALL_STATE(813)] = 22117, + [SMALL_STATE(814)] = 22124, + [SMALL_STATE(815)] = 22131, + [SMALL_STATE(816)] = 22138, + [SMALL_STATE(817)] = 22145, + [SMALL_STATE(818)] = 22152, + [SMALL_STATE(819)] = 22159, + [SMALL_STATE(820)] = 22166, + [SMALL_STATE(821)] = 22173, + [SMALL_STATE(822)] = 22180, + [SMALL_STATE(823)] = 22187, + [SMALL_STATE(824)] = 22194, + [SMALL_STATE(825)] = 22201, + [SMALL_STATE(826)] = 22208, + [SMALL_STATE(827)] = 22215, + [SMALL_STATE(828)] = 22222, + [SMALL_STATE(829)] = 22229, + [SMALL_STATE(830)] = 22236, + [SMALL_STATE(831)] = 22241, + [SMALL_STATE(832)] = 22248, + [SMALL_STATE(833)] = 22255, + [SMALL_STATE(834)] = 22262, + [SMALL_STATE(835)] = 22269, + [SMALL_STATE(836)] = 22276, + [SMALL_STATE(837)] = 22283, + [SMALL_STATE(838)] = 22290, + [SMALL_STATE(839)] = 22294, + [SMALL_STATE(840)] = 22298, + [SMALL_STATE(841)] = 22302, + [SMALL_STATE(842)] = 22306, + [SMALL_STATE(843)] = 22310, + [SMALL_STATE(844)] = 22314, + [SMALL_STATE(845)] = 22318, + [SMALL_STATE(846)] = 22322, + [SMALL_STATE(847)] = 22326, + [SMALL_STATE(848)] = 22330, + [SMALL_STATE(849)] = 22334, + [SMALL_STATE(850)] = 22338, + [SMALL_STATE(851)] = 22342, + [SMALL_STATE(852)] = 22346, + [SMALL_STATE(853)] = 22350, + [SMALL_STATE(854)] = 22354, + [SMALL_STATE(855)] = 22358, + [SMALL_STATE(856)] = 22362, + [SMALL_STATE(857)] = 22366, + [SMALL_STATE(858)] = 22370, + [SMALL_STATE(859)] = 22374, + [SMALL_STATE(860)] = 22378, + [SMALL_STATE(861)] = 22382, + [SMALL_STATE(862)] = 22386, + [SMALL_STATE(863)] = 22390, + [SMALL_STATE(864)] = 22394, + [SMALL_STATE(865)] = 22398, + [SMALL_STATE(866)] = 22402, + [SMALL_STATE(867)] = 22406, + [SMALL_STATE(868)] = 22410, + [SMALL_STATE(869)] = 22414, + [SMALL_STATE(870)] = 22418, + [SMALL_STATE(871)] = 22422, + [SMALL_STATE(872)] = 22426, + [SMALL_STATE(873)] = 22430, + [SMALL_STATE(874)] = 22434, + [SMALL_STATE(875)] = 22438, + [SMALL_STATE(876)] = 22442, + [SMALL_STATE(877)] = 22446, + [SMALL_STATE(878)] = 22450, + [SMALL_STATE(879)] = 22454, + [SMALL_STATE(880)] = 22458, + [SMALL_STATE(881)] = 22462, + [SMALL_STATE(882)] = 22466, + [SMALL_STATE(883)] = 22470, + [SMALL_STATE(884)] = 22474, + [SMALL_STATE(885)] = 22478, + [SMALL_STATE(886)] = 22482, + [SMALL_STATE(887)] = 22486, + [SMALL_STATE(888)] = 22490, + [SMALL_STATE(889)] = 22494, + [SMALL_STATE(890)] = 22498, + [SMALL_STATE(891)] = 22502, + [SMALL_STATE(892)] = 22506, + [SMALL_STATE(893)] = 22510, + [SMALL_STATE(894)] = 22514, + [SMALL_STATE(895)] = 22518, + [SMALL_STATE(896)] = 22522, + [SMALL_STATE(897)] = 22526, + [SMALL_STATE(898)] = 22530, + [SMALL_STATE(899)] = 22534, + [SMALL_STATE(900)] = 22538, + [SMALL_STATE(901)] = 22542, + [SMALL_STATE(902)] = 22546, + [SMALL_STATE(903)] = 22550, + [SMALL_STATE(904)] = 22554, + [SMALL_STATE(905)] = 22558, + [SMALL_STATE(906)] = 22562, + [SMALL_STATE(907)] = 22566, + [SMALL_STATE(908)] = 22570, + [SMALL_STATE(909)] = 22574, + [SMALL_STATE(910)] = 22578, + [SMALL_STATE(911)] = 22582, + [SMALL_STATE(912)] = 22586, + [SMALL_STATE(913)] = 22590, + [SMALL_STATE(914)] = 22594, + [SMALL_STATE(915)] = 22598, + [SMALL_STATE(916)] = 22602, + [SMALL_STATE(917)] = 22606, + [SMALL_STATE(918)] = 22610, + [SMALL_STATE(919)] = 22614, + [SMALL_STATE(920)] = 22618, + [SMALL_STATE(921)] = 22622, + [SMALL_STATE(922)] = 22626, + [SMALL_STATE(923)] = 22630, + [SMALL_STATE(924)] = 22634, + [SMALL_STATE(925)] = 22638, + [SMALL_STATE(926)] = 22642, + [SMALL_STATE(927)] = 22646, + [SMALL_STATE(928)] = 22650, + [SMALL_STATE(929)] = 22654, + [SMALL_STATE(930)] = 22658, + [SMALL_STATE(931)] = 22662, + [SMALL_STATE(932)] = 22666, + [SMALL_STATE(933)] = 22670, + [SMALL_STATE(934)] = 22674, + [SMALL_STATE(935)] = 22678, + [SMALL_STATE(936)] = 22682, + [SMALL_STATE(937)] = 22686, + [SMALL_STATE(938)] = 22690, + [SMALL_STATE(939)] = 22694, + [SMALL_STATE(940)] = 22698, + [SMALL_STATE(941)] = 22702, + [SMALL_STATE(942)] = 22706, + [SMALL_STATE(943)] = 22710, + [SMALL_STATE(944)] = 22714, + [SMALL_STATE(945)] = 22718, + [SMALL_STATE(946)] = 22722, + [SMALL_STATE(947)] = 22726, + [SMALL_STATE(948)] = 22730, + [SMALL_STATE(949)] = 22734, + [SMALL_STATE(950)] = 22738, + [SMALL_STATE(951)] = 22742, + [SMALL_STATE(952)] = 22746, + [SMALL_STATE(953)] = 22750, + [SMALL_STATE(954)] = 22754, + [SMALL_STATE(955)] = 22758, + [SMALL_STATE(956)] = 22762, + [SMALL_STATE(957)] = 22766, + [SMALL_STATE(958)] = 22770, + [SMALL_STATE(959)] = 22774, + [SMALL_STATE(960)] = 22778, + [SMALL_STATE(961)] = 22782, + [SMALL_STATE(962)] = 22786, + [SMALL_STATE(963)] = 22790, + [SMALL_STATE(964)] = 22794, + [SMALL_STATE(965)] = 22798, + [SMALL_STATE(966)] = 22802, + [SMALL_STATE(967)] = 22806, + [SMALL_STATE(968)] = 22810, + [SMALL_STATE(969)] = 22814, + [SMALL_STATE(970)] = 22818, + [SMALL_STATE(971)] = 22822, + [SMALL_STATE(972)] = 22826, + [SMALL_STATE(973)] = 22830, + [SMALL_STATE(974)] = 22834, + [SMALL_STATE(975)] = 22838, + [SMALL_STATE(976)] = 22842, + [SMALL_STATE(977)] = 22846, + [SMALL_STATE(978)] = 22850, + [SMALL_STATE(979)] = 22854, + [SMALL_STATE(980)] = 22858, + [SMALL_STATE(981)] = 22862, + [SMALL_STATE(982)] = 22866, + [SMALL_STATE(983)] = 22870, + [SMALL_STATE(984)] = 22874, + [SMALL_STATE(985)] = 22878, + [SMALL_STATE(986)] = 22882, + [SMALL_STATE(987)] = 22886, + [SMALL_STATE(988)] = 22890, + [SMALL_STATE(989)] = 22894, + [SMALL_STATE(990)] = 22898, + [SMALL_STATE(991)] = 22902, + [SMALL_STATE(992)] = 22906, + [SMALL_STATE(993)] = 22910, + [SMALL_STATE(994)] = 22914, + [SMALL_STATE(995)] = 22918, + [SMALL_STATE(996)] = 22922, + [SMALL_STATE(997)] = 22926, + [SMALL_STATE(998)] = 22930, + [SMALL_STATE(999)] = 22934, + [SMALL_STATE(1000)] = 22938, + [SMALL_STATE(1001)] = 22942, + [SMALL_STATE(1002)] = 22946, + [SMALL_STATE(1003)] = 22950, + [SMALL_STATE(1004)] = 22954, + [SMALL_STATE(1005)] = 22958, + [SMALL_STATE(1006)] = 22962, + [SMALL_STATE(1007)] = 22966, + [SMALL_STATE(1008)] = 22970, + [SMALL_STATE(1009)] = 22974, + [SMALL_STATE(1010)] = 22978, + [SMALL_STATE(1011)] = 22982, + [SMALL_STATE(1012)] = 22986, + [SMALL_STATE(1013)] = 22990, + [SMALL_STATE(1014)] = 22994, + [SMALL_STATE(1015)] = 22998, + [SMALL_STATE(1016)] = 23002, + [SMALL_STATE(1017)] = 23006, + [SMALL_STATE(1018)] = 23010, + [SMALL_STATE(1019)] = 23014, + [SMALL_STATE(1020)] = 23018, + [SMALL_STATE(1021)] = 23022, + [SMALL_STATE(1022)] = 23026, + [SMALL_STATE(1023)] = 23030, + [SMALL_STATE(1024)] = 23034, + [SMALL_STATE(1025)] = 23038, + [SMALL_STATE(1026)] = 23042, + [SMALL_STATE(1027)] = 23046, + [SMALL_STATE(1028)] = 23050, + [SMALL_STATE(1029)] = 23054, + [SMALL_STATE(1030)] = 23058, + [SMALL_STATE(1031)] = 23062, + [SMALL_STATE(1032)] = 23066, + [SMALL_STATE(1033)] = 23070, + [SMALL_STATE(1034)] = 23074, + [SMALL_STATE(1035)] = 23078, + [SMALL_STATE(1036)] = 23082, + [SMALL_STATE(1037)] = 23086, + [SMALL_STATE(1038)] = 23090, + [SMALL_STATE(1039)] = 23094, + [SMALL_STATE(1040)] = 23098, + [SMALL_STATE(1041)] = 23102, + [SMALL_STATE(1042)] = 23106, + [SMALL_STATE(1043)] = 23110, + [SMALL_STATE(1044)] = 23114, + [SMALL_STATE(1045)] = 23118, + [SMALL_STATE(1046)] = 23122, + [SMALL_STATE(1047)] = 23126, + [SMALL_STATE(1048)] = 23130, + [SMALL_STATE(1049)] = 23134, + [SMALL_STATE(1050)] = 23138, + [SMALL_STATE(1051)] = 23142, + [SMALL_STATE(1052)] = 23146, + [SMALL_STATE(1053)] = 23150, + [SMALL_STATE(1054)] = 23154, + [SMALL_STATE(1055)] = 23158, + [SMALL_STATE(1056)] = 23162, + [SMALL_STATE(1057)] = 23166, + [SMALL_STATE(1058)] = 23170, + [SMALL_STATE(1059)] = 23174, + [SMALL_STATE(1060)] = 23178, + [SMALL_STATE(1061)] = 23182, + [SMALL_STATE(1062)] = 23186, + [SMALL_STATE(1063)] = 23190, + [SMALL_STATE(1064)] = 23194, + [SMALL_STATE(1065)] = 23198, + [SMALL_STATE(1066)] = 23202, + [SMALL_STATE(1067)] = 23206, + [SMALL_STATE(1068)] = 23210, + [SMALL_STATE(1069)] = 23214, + [SMALL_STATE(1070)] = 23218, + [SMALL_STATE(1071)] = 23222, + [SMALL_STATE(1072)] = 23226, + [SMALL_STATE(1073)] = 23230, + [SMALL_STATE(1074)] = 23234, + [SMALL_STATE(1075)] = 23238, + [SMALL_STATE(1076)] = 23242, + [SMALL_STATE(1077)] = 23246, + [SMALL_STATE(1078)] = 23250, + [SMALL_STATE(1079)] = 23254, + [SMALL_STATE(1080)] = 23258, + [SMALL_STATE(1081)] = 23262, + [SMALL_STATE(1082)] = 23266, + [SMALL_STATE(1083)] = 23270, + [SMALL_STATE(1084)] = 23274, + [SMALL_STATE(1085)] = 23278, + [SMALL_STATE(1086)] = 23282, + [SMALL_STATE(1087)] = 23286, + [SMALL_STATE(1088)] = 23290, + [SMALL_STATE(1089)] = 23294, + [SMALL_STATE(1090)] = 23298, + [SMALL_STATE(1091)] = 23302, + [SMALL_STATE(1092)] = 23306, + [SMALL_STATE(1093)] = 23310, + [SMALL_STATE(1094)] = 23314, + [SMALL_STATE(1095)] = 23318, + [SMALL_STATE(1096)] = 23322, + [SMALL_STATE(1097)] = 23326, + [SMALL_STATE(1098)] = 23330, + [SMALL_STATE(1099)] = 23334, + [SMALL_STATE(1100)] = 23338, + [SMALL_STATE(1101)] = 23342, + [SMALL_STATE(1102)] = 23346, + [SMALL_STATE(1103)] = 23350, + [SMALL_STATE(1104)] = 23354, + [SMALL_STATE(1105)] = 23358, + [SMALL_STATE(1106)] = 23362, + [SMALL_STATE(1107)] = 23366, + [SMALL_STATE(1108)] = 23370, + [SMALL_STATE(1109)] = 23374, + [SMALL_STATE(1110)] = 23378, + [SMALL_STATE(1111)] = 23382, + [SMALL_STATE(1112)] = 23386, + [SMALL_STATE(1113)] = 23390, + [SMALL_STATE(1114)] = 23394, + [SMALL_STATE(1115)] = 23398, + [SMALL_STATE(1116)] = 23402, + [SMALL_STATE(1117)] = 23406, + [SMALL_STATE(1118)] = 23410, + [SMALL_STATE(1119)] = 23414, + [SMALL_STATE(1120)] = 23418, + [SMALL_STATE(1121)] = 23422, + [SMALL_STATE(1122)] = 23426, + [SMALL_STATE(1123)] = 23430, + [SMALL_STATE(1124)] = 23434, + [SMALL_STATE(1125)] = 23438, + [SMALL_STATE(1126)] = 23442, + [SMALL_STATE(1127)] = 23446, + [SMALL_STATE(1128)] = 23450, + [SMALL_STATE(1129)] = 23454, + [SMALL_STATE(1130)] = 23458, + [SMALL_STATE(1131)] = 23462, + [SMALL_STATE(1132)] = 23466, + [SMALL_STATE(1133)] = 23470, + [SMALL_STATE(1134)] = 23474, + [SMALL_STATE(1135)] = 23478, + [SMALL_STATE(1136)] = 23482, + [SMALL_STATE(1137)] = 23486, + [SMALL_STATE(1138)] = 23490, + [SMALL_STATE(1139)] = 23494, + [SMALL_STATE(1140)] = 23498, + [SMALL_STATE(1141)] = 23502, + [SMALL_STATE(1142)] = 23506, + [SMALL_STATE(1143)] = 23510, + [SMALL_STATE(1144)] = 23514, + [SMALL_STATE(1145)] = 23518, + [SMALL_STATE(1146)] = 23522, + [SMALL_STATE(1147)] = 23526, + [SMALL_STATE(1148)] = 23530, + [SMALL_STATE(1149)] = 23534, + [SMALL_STATE(1150)] = 23538, + [SMALL_STATE(1151)] = 23542, + [SMALL_STATE(1152)] = 23546, + [SMALL_STATE(1153)] = 23550, + [SMALL_STATE(1154)] = 23554, + [SMALL_STATE(1155)] = 23558, + [SMALL_STATE(1156)] = 23562, + [SMALL_STATE(1157)] = 23566, + [SMALL_STATE(1158)] = 23570, + [SMALL_STATE(1159)] = 23574, + [SMALL_STATE(1160)] = 23578, + [SMALL_STATE(1161)] = 23582, + [SMALL_STATE(1162)] = 23586, + [SMALL_STATE(1163)] = 23590, + [SMALL_STATE(1164)] = 23594, + [SMALL_STATE(1165)] = 23598, + [SMALL_STATE(1166)] = 23602, + [SMALL_STATE(1167)] = 23606, + [SMALL_STATE(1168)] = 23610, + [SMALL_STATE(1169)] = 23614, + [SMALL_STATE(1170)] = 23618, + [SMALL_STATE(1171)] = 23622, + [SMALL_STATE(1172)] = 23626, + [SMALL_STATE(1173)] = 23630, + [SMALL_STATE(1174)] = 23634, + [SMALL_STATE(1175)] = 23638, + [SMALL_STATE(1176)] = 23642, + [SMALL_STATE(1177)] = 23646, + [SMALL_STATE(1178)] = 23650, + [SMALL_STATE(1179)] = 23654, + [SMALL_STATE(1180)] = 23658, + [SMALL_STATE(1181)] = 23662, + [SMALL_STATE(1182)] = 23666, + [SMALL_STATE(1183)] = 23670, + [SMALL_STATE(1184)] = 23674, + [SMALL_STATE(1185)] = 23678, + [SMALL_STATE(1186)] = 23682, + [SMALL_STATE(1187)] = 23686, + [SMALL_STATE(1188)] = 23690, + [SMALL_STATE(1189)] = 23694, + [SMALL_STATE(1190)] = 23698, + [SMALL_STATE(1191)] = 23702, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), - [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), - [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), - [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), - [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), - [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), - [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), - [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), - [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline, 1), - [285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(757), - [288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(210), - [291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(758), - [294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(179), - [297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(759), - [300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(760), - [303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(761), - [306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(762), - [309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(763), - [312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1087), - [315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(149), - [318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(149), - [321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(204), - [324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(765), - [327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(766), - [330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(767), - [333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(321), - [336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(322), - [339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(323), - [342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(217), - [345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(14), - [348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(142), - [351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1051), - [354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), - [356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), - [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), - [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), - [434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), - [468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), - [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), - [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), - [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), - [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), - [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), - [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(899), - [591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(229), - [594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(898), - [597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(230), - [600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(885), - [603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(772), - [606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(871), - [609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(866), - [612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(865), - [615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(955), - [618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(151), - [621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(151), - [624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(223), - [627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(851), - [630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(838), - [633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(833), - [636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(241), - [639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(242), - [642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(243), - [645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(192), - [648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(36), - [651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(140), - [654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1019), - [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(729), - [664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(228), - [667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(730), - [670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(220), - [673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(731), - [676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(732), - [679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(733), - [682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(734), - [685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(735), - [688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1180), - [691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(145), - [694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(145), - [697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(167), - [700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(737), - [703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(738), - [706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(739), - [709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(277), - [712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(278), - [715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(279), - [718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(224), - [721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(68), - [724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(138), - [727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1035), - [730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(721), - [733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(219), - [736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(722), - [739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(218), - [742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(723), - [745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(724), - [748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(725), - [751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(726), - [754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(727), - [757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1198), - [760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(150), - [763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(150), - [766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(231), - [769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(728), - [772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(736), - [775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(740), - [778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(533), - [781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(239), - [784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(246), - [787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(227), - [790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(69), - [793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(139), - [796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1135), - [799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(788), - [802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(195), - [805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(789), - [808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(191), - [811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(790), - [814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(791), - [817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(792), - [820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(793), - [823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(794), - [826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1044), - [829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(153), - [832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(153), - [835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(189), - [838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(796), - [841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(797), - [844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(798), - [847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(365), - [850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(366), - [853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(367), - [856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(203), - [859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(70), - [862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(134), - [865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1067), - [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(821), - [875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(177), - [878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(822), - [881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(176), - [884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(823), - [887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(824), - [890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(825), - [893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(826), - [896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(827), - [899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(993), - [902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(147), - [905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(147), - [908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(174), - [911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(829), - [914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(830), - [917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(831), - [920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(409), - [923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(410), - [926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(411), - [929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(184), - [932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(100), - [935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(132), - [938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1083), - [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(854), - [946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(215), - [949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(855), - [952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(212), - [955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(856), - [958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(857), - [961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(858), - [964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(859), - [967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(860), - [970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(936), - [973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(146), - [976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(146), - [979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(209), - [982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(862), - [985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(863), - [988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(864), - [991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(453), - [994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(454), - [997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(455), - [1000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(173), - [1003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(120), - [1006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(141), - [1009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1099), - [1012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [1014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(887), - [1017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(187), - [1020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(888), - [1023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(183), - [1026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(889), - [1029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(890), - [1032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(891), - [1035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(892), - [1038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(893), - [1041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(901), - [1044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(143), - [1047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(143), - [1050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(178), - [1053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(895), - [1056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(896), - [1059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(897), - [1062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(497), - [1065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(498), - [1068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(499), - [1071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(208), - [1074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(122), - [1077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(135), - [1080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1115), - [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [1085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(882), - [1088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(172), - [1091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(881), - [1094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(168), - [1097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(880), - [1100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(879), - [1103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(878), - [1106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(877), - [1109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(876), - [1112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(927), - [1115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(154), - [1118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(154), - [1121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(190), - [1124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(875), - [1127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(874), - [1130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(873), - [1133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(540), - [1136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(541), - [1139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(542), - [1142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(175), - [1145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(126), - [1148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(137), - [1151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1131), - [1154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [1156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(853), - [1159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(430), - [1162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(719), - [1165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(417), - [1168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(852), - [1171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(850), - [1174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(849), - [1177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(848), - [1180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(847), - [1183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(960), - [1186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(155), - [1189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(155), - [1192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(403), - [1195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(846), - [1198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(845), - [1201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(844), - [1204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(581), - [1207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(582), - [1210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(583), - [1213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(238), - [1216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(131), - [1219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(144), - [1222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1147), - [1225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element, 1), - [1227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__element, 1), - [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), - [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), - [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), - [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), - [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), - [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), - [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), - [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), - [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), - [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), - [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), - [1253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verbatim, 3, .production_id = 1), - [1255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verbatim, 3, .production_id = 1), - [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [1279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), - [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), - [1283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), - [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [1287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__text, 2), - [1289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__text, 2), - [1291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(169), - [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 2), - [1296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 2), - [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [1304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 1), - [1306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), - [1308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), - [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [1312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [1318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [1322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(180), - [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), - [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), - [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), - [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [1351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(194), - [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [1362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(199), - [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [1367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(201), - [1370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(202), - [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), - [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [1379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(206), - [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), - [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [1390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(211), - [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [1395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(213), - [1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [1400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [1402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [1404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), - [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [1408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [1412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(221), - [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), - [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), - [1421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(225), - [1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [1426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), - [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [1434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), - [1436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link_destination, 3), - [1438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link_destination, 3), - [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_inline, 4), - [1442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_inline, 4), - [1444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete, 4, .dynamic_precedence = 1000, .production_id = 4), - [1446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete, 4, .dynamic_precedence = 1000, .production_id = 4), - [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_footnote_reference, 4, .dynamic_precedence = 1000), - [1450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_footnote_reference, 4, .dynamic_precedence = 1000), - [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_label, 3, .production_id = 5), - [1454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_label, 3, .production_id = 5), - [1456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), - [1458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_todo, 1), - [1460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_todo, 1), - [1462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_inline_attribute, 3), - [1464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_inline_attribute, 3), - [1466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1021), - [1469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note, 1), - [1471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_note, 1), - [1473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hard_line_break, 2), - [1475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hard_line_break, 2), - [1477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_with_spaces, 2), - [1479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__comment_with_spaces, 2), - [1481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collapsed_reference_image, 2), - [1483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collapsed_reference_image, 2), - [1485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_reference_image, 2), - [1487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_reference_image, 2), - [1489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_image, 2), - [1491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_image, 2), - [1493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collapsed_reference_link, 2), - [1495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collapsed_reference_link, 2), - [1497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_reference_link, 2), - [1499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_reference_link, 2), - [1501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 2), - [1503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 2), - [1505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 3), - [1507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 3), - [1509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_autolink, 3), - [1511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_autolink, 3), - [1513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math, 4, .production_id = 3), - [1515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math, 4, .production_id = 3), - [1517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 3), - [1519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comment, 3), - [1521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emphasis, 4, .dynamic_precedence = 1000), - [1523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_emphasis, 4, .dynamic_precedence = 1000), - [1525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strong, 4, .dynamic_precedence = 1000), - [1527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strong, 4, .dynamic_precedence = 1000), - [1529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_superscript, 4, .dynamic_precedence = 1000, .production_id = 4), - [1531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_superscript, 4, .dynamic_precedence = 1000, .production_id = 4), - [1533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, .dynamic_precedence = 1000, .production_id = 4), - [1535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, .dynamic_precedence = 1000, .production_id = 4), - [1537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlighted, 4, .dynamic_precedence = 1000, .production_id = 4), - [1539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_highlighted, 4, .dynamic_precedence = 1000, .production_id = 4), - [1541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 4, .dynamic_precedence = 1000, .production_id = 4), - [1543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 4, .dynamic_precedence = 1000, .production_id = 4), - [1545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1037), - [1548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), - [1550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1053), - [1553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1069), - [1556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1005), - [1559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(389), - [1562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [1564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [1566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1085), - [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [1573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1101), - [1576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1117), - [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), - [1581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(988), - [1584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1125), - [1587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1133), - [1590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_attribute, 4, .dynamic_precedence = 1000, .production_id = 8), - [1592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_attribute, 4, .dynamic_precedence = 1000, .production_id = 8), - [1594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_span, 5, .production_id = 9), - [1596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_span, 5, .production_id = 9), - [1598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element, 2), - [1600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__element, 2), - [1602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_attribute_fallback, 2), - [1604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_attribute_fallback, 2), - [1606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_attribute, 3, .dynamic_precedence = 1000), - [1608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_attribute, 3, .dynamic_precedence = 1000), - [1610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_without_trailing_space, 1), - [1612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1149), - [1615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_without_trailing_space, 2), - [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [1667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(1088), - [1670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(1000), - [1673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(667), - [1676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(764), - [1679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), - [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [1687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 3), - [1689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1), - [1691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 1), - [1693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 1, .production_id = 2), - [1695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2), - [1697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value, 3), - [1699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_name, 1), - [1701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_with_newline, 3), - [1703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_with_newline, 4, .production_id = 4), - [1705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_text, 4, .dynamic_precedence = 1000, .production_id = 7), - [1707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_text, 4, .dynamic_precedence = 1000, .production_id = 7), - [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), - [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), - [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), - [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [1757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), - [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), - [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), - [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), - [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [1773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__comment_with_newline_repeat1, 2), SHIFT_REPEAT(715), - [1776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_with_newline_repeat1, 2), - [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [1780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), - [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [1784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), - [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [1792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), - [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [1800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), - [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [1804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), - [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [1810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), - [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [1820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), - [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [1824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), - [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [1828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), - [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [1836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), - [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_with_newline_repeat1, 1), - [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_description, 3, .dynamic_precedence = 1000), - [1848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_description, 3, .dynamic_precedence = 1000), - [1850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_description, 4, .dynamic_precedence = 1000, .production_id = 6), - [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_description, 4, .dynamic_precedence = 1000, .production_id = 6), - [1854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [1858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(585), - [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [1865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(255), - [1868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [1870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(255), - [1873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(255), - [1876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(255), - [1879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(255), - [1882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(255), - [1885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(255), - [1888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(255), - [1891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(283), - [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [1896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(283), - [1899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(283), - [1902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(283), - [1905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(283), - [1908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(283), - [1911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(283), - [1914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(255), - [1917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(283), - [1920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(283), - [1923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(283), - [1926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(255), - [1929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(297), - [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [1934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(297), - [1937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_attribute_begin, 1), SHIFT(615), - [1940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [1944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(315), - [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [1949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(315), - [1952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(327), - [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [1957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(327), - [1960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(327), - [1963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(327), - [1966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(327), - [1969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(327), - [1972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(327), - [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [1977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(327), - [1980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(327), - [1983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(327), - [1986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(341), - [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [1991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(341), - [1994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_attribute_begin, 1), SHIFT(630), - [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [1999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(244), - [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [2004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_attribute_begin, 1), SHIFT(620), - [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [2009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(426), - [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [2014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(426), - [2017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(426), - [2020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(426), - [2023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(426), - [2026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(426), - [2029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(426), - [2032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(426), - [2035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(426), - [2038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(371), - [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [2043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(371), - [2046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(371), - [2049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(371), - [2052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(371), - [2055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(371), - [2058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(371), - [2061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(458), - [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [2066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(371), - [2069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(371), - [2072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(371), - [2075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(458), - [2078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_attribute_begin, 1), SHIFT(569), - [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [2083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(385), - [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [2088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(385), - [2091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_attribute_begin, 1), SHIFT(634), - [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [2096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_attribute_begin, 1), SHIFT(553), - [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [2101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(426), - [2104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(362), - [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [2109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(362), - [2112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(362), - [2115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(362), - [2118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(362), - [2121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(362), - [2124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(362), - [2127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(254), - [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [2132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(254), - [2135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(362), - [2138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(415), - [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [2143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(415), - [2146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(415), - [2149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(415), - [2152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(415), - [2155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(415), - [2158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(415), - [2161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(362), - [2164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(415), - [2167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(415), - [2170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(415), - [2173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(319), - [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [2178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(244), - [2181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(319), - [2184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(429), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [2189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(429), - [2192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_attribute_begin, 1), SHIFT(577), - [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [2197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(244), - [2200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_attribute_begin, 1), SHIFT(621), - [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [2205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_attribute_begin, 1), SHIFT(637), - [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [2210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(598), - [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [2215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(598), - [2218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(585), - [2221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(585), - [2224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(585), - [2227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(585), - [2230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(585), - [2233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(585), - [2236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(585), - [2239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(244), - [2242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(585), - [2245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(585), - [2248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(459), - [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [2253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(459), - [2256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(459), - [2259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(459), - [2262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(459), - [2265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(459), - [2268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(459), - [2271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_attribute_begin, 1), SHIFT(558), - [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [2276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(459), - [2279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(459), - [2282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(459), - [2285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(244), - [2288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(244), - [2291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(520), - [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [2296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(473), - [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [2301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(473), - [2304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_attribute_begin, 1), SHIFT(567), - [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [2309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(244), - [2312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(520), - [2315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(544), - [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [2320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(544), - [2323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(544), - [2326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(544), - [2329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(544), - [2332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(544), - [2335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(544), - [2338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(544), - [2341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(544), - [2344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(544), - [2347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_attribute_begin, 1), SHIFT(559), - [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [2352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(362), - [2355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(244), - [2358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(516), - [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [2363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(502), - [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [2368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(502), - [2371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(502), - [2374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(502), - [2377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(502), - [2380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(502), - [2383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(502), - [2386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(516), - [2389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(502), - [2392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(502), - [2395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(502), - [2398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(244), - [2401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(244), - [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [2776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key, 1), - [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [2806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_label, 1), - [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [2914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline, 1), - [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [2918] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), + [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), + [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), + [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(747), + [248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(206), + [251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(735), + [254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(207), + [257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(730), + [260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(729), + [263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(715), + [266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(713), + [269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(701), + [272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1045), + [275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(139), + [278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(139), + [281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(156), + [284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(695), + [287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(667), + [290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(764), + [293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(663), + [296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(242), + [299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(243), + [302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(244), + [305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(194), + [308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(7), + [311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(126), + [314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(954), + [317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), + [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), + [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), + [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), + [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline, 1), + [369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(668), + [372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(197), + [375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(684), + [378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(193), + [381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(685), + [384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(686), + [387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(687), + [390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(688), + [393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(689), + [396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1046), + [399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(137), + [402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(137), + [405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(191), + [408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(691), + [411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(692), + [414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(693), + [417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(694), + [420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(279), + [423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(280), + [426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(281), + [429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(202), + [432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(15), + [435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(122), + [438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(970), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), + [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), + [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), + [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), + [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(717), + [644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(179), + [647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(718), + [650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(178), + [653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(719), + [656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(720), + [659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(721), + [662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(722), + [665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(723), + [668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(978), + [671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(136), + [674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(136), + [677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(176), + [680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(725), + [683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(726), + [686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(727), + [689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(728), + [692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(323), + [695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(324), + [698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(325), + [701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(186), + [704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(47), + [707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(130), + [710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(986), + [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(751), + [718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(168), + [721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(752), + [724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(167), + [727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(753), + [730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(754), + [733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(755), + [736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(756), + [739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(757), + [742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(941), + [745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(131), + [748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(131), + [751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(165), + [754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(759), + [757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(760), + [760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(761), + [763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(762), + [766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(367), + [769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(368), + [772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(369), + [775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(175), + [778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(69), + [781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(123), + [784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1002), + [787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(669), + [790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(155), + [793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(670), + [796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(209), + [799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(671), + [802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(672), + [805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(673), + [808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(674), + [811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(675), + [814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1111), + [817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(135), + [820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(135), + [823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(199), + [826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(676), + [829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(677), + [832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(678), + [835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(680), + [838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(494), + [841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(223), + [844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(226), + [847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(196), + [850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(70), + [853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(121), + [856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1054), + [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(785), + [864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(161), + [867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(786), + [870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(160), + [873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(787), + [876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(788), + [879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(789), + [882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(790), + [885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(791), + [888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(889), + [891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(133), + [894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(133), + [897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(158), + [900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(793), + [903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(794), + [906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(795), + [909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(796), + [912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(411), + [915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(412), + [918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(413), + [921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(184), + [924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(81), + [927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(129), + [930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1018), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(819), + [940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(185), + [943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(820), + [946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(189), + [949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(821), + [952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(822), + [955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(823), + [958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(824), + [961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(825), + [964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(854), + [967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(132), + [970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(132), + [973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(192), + [976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(827), + [979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(828), + [982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(829), + [985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(830), + [988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(455), + [991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(456), + [994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(457), + [997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(157), + [1000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(110), + [1003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(128), + [1006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1034), + [1009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(831), + [1012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(211), + [1015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(826), + [1018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(166), + [1021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(818), + [1024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(817), + [1027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(816), + [1030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(815), + [1033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(814), + [1036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(860), + [1039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(140), + [1042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(140), + [1045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(153), + [1048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(813), + [1051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(812), + [1054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(811), + [1057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(810), + [1060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(498), + [1063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(499), + [1066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(497), + [1069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(195), + [1072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(115), + [1075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(124), + [1078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1050), + [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [1083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(799), + [1086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(371), + [1089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(797), + [1092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(366), + [1095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(792), + [1098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(784), + [1101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(783), + [1104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(782), + [1107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(781), + [1110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(894), + [1113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(143), + [1116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(143), + [1119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(361), + [1122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(661), + [1125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(780), + [1128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(779), + [1131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(778), + [1134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(539), + [1137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(540), + [1140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(541), + [1143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(214), + [1146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(120), + [1149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(134), + [1152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1066), + [1155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element, 1), + [1157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__element, 1), + [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), + [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), + [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), + [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), + [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), + [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), + [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), + [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), + [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), + [1179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), + [1181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verbatim, 3, .production_id = 1), + [1183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verbatim, 3, .production_id = 1), + [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [1205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), + [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [1209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), + [1211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__text, 2), + [1213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__text, 2), + [1215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(154), + [1218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [1220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [1222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 1), + [1224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), + [1226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), + [1228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [1230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 2), + [1232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 2), + [1234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [1238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [1240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(162), + [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [1245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(164), + [1248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [1256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(169), + [1259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(170), + [1262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(171), + [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), + [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), + [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), + [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), + [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), + [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [1317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(198), + [1320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [1326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), + [1328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(203), + [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [1333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(205), + [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [1340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(208), + [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [1349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hard_line_break, 2), + [1351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hard_line_break, 2), + [1353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 3), + [1355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comment, 3), + [1357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), + [1359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_with_spaces, 2), + [1361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__comment_with_spaces, 2), + [1363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collapsed_reference_image, 2), + [1365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collapsed_reference_image, 2), + [1367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_reference_image, 2), + [1369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_reference_image, 2), + [1371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_image, 2), + [1373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_image, 2), + [1375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collapsed_reference_link, 2), + [1377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collapsed_reference_link, 2), + [1379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_reference_link, 2), + [1381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_reference_link, 2), + [1383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 2), + [1385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 2), + [1387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 3), + [1389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 3), + [1391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_todo, 1), + [1393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_todo, 1), + [1395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_autolink, 3), + [1397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_autolink, 3), + [1399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_inline, 4), + [1401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_inline, 4), + [1403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note, 1), + [1405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_note, 1), + [1407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math, 4, .production_id = 4), + [1409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math, 4, .production_id = 4), + [1411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emphasis, 4, .dynamic_precedence = 1000), + [1413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_emphasis, 4, .dynamic_precedence = 1000), + [1415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strong, 4, .dynamic_precedence = 1000), + [1417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strong, 4, .dynamic_precedence = 1000), + [1419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_superscript, 4, .dynamic_precedence = 1000, .production_id = 5), + [1421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_superscript, 4, .dynamic_precedence = 1000, .production_id = 5), + [1423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, .dynamic_precedence = 1000, .production_id = 5), + [1425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, .dynamic_precedence = 1000, .production_id = 5), + [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlighted, 4, .dynamic_precedence = 1000, .production_id = 5), + [1429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_highlighted, 4, .dynamic_precedence = 1000, .production_id = 5), + [1431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 4, .dynamic_precedence = 1000, .production_id = 5), + [1433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 4, .dynamic_precedence = 1000, .production_id = 5), + [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete, 4, .dynamic_precedence = 1000, .production_id = 5), + [1437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete, 4, .dynamic_precedence = 1000, .production_id = 5), + [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_footnote_reference, 4, .dynamic_precedence = 1000, .production_id = 6), + [1441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_footnote_reference, 4, .dynamic_precedence = 1000, .production_id = 6), + [1443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_label, 3, .production_id = 7), + [1445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_label, 3, .production_id = 7), + [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), + [1449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link_destination, 4), + [1451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link_destination, 4), + [1453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_inline_attribute, 3), + [1455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_inline_attribute, 3), + [1457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(956), + [1460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(972), + [1463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(940), + [1466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(988), + [1469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(344), + [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [1474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [1478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1004), + [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [1483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1020), + [1486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), + [1488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(923), + [1491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1036), + [1494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1042), + [1497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1052), + [1500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_attribute, 4, .dynamic_precedence = 1000, .production_id = 9), + [1502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_attribute, 4, .dynamic_precedence = 1000, .production_id = 9), + [1504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element, 2), + [1506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__element, 2), + [1508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__curly_bracket_span_fallback, 2), + [1510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__curly_bracket_span_fallback, 2), + [1512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_span, 5, .production_id = 10), + [1514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_span, 5, .production_id = 10), + [1516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_attribute, 3, .dynamic_precedence = 1000), + [1518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_attribute, 3, .dynamic_precedence = 1000), + [1520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_without_trailing_space, 1), + [1522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1068), + [1525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_without_trailing_space, 2), + [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [1545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(998), + [1548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(934), + [1551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(615), + [1554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(710), + [1557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), + [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [1593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2), + [1595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 3), + [1597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_name, 1), + [1599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1), + [1601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_with_newline, 4, .production_id = 5), + [1603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 1), + [1605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 1, .production_id = 3), + [1607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_with_newline, 3), + [1609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value, 3), + [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), + [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), + [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [1629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_text, 4, .dynamic_precedence = 1000, .production_id = 8), + [1631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_text, 4, .dynamic_precedence = 1000, .production_id = 8), + [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), + [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), + [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), + [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17), + [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), + [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), + [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), + [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), + [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [1725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__comment_with_newline_repeat1, 2), SHIFT_REPEAT(657), + [1728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_with_newline_repeat1, 2), + [1730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), + [1732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), + [1734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [1736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), + [1738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), + [1740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_with_newline_repeat1, 1), + [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [1746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_description, 4, .dynamic_precedence = 1000, .production_id = 8), + [1748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_description, 4, .dynamic_precedence = 1000, .production_id = 8), + [1750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_description, 3, .dynamic_precedence = 1000, .production_id = 2), + [1752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_description, 3, .dynamic_precedence = 1000, .production_id = 2), + [1754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(501), + [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [1759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(365), + [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [1766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(255), + [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [1771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(255), + [1774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__curly_bracket_span_begin, 1), SHIFT(524), + [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [1779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(245), + [1782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(285), + [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [1787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(240), + [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [1792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(240), + [1795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(240), + [1798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(240), + [1801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(240), + [1804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(240), + [1807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(240), + [1810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(240), + [1813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(240), + [1816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(240), + [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [1823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(285), + [1826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(285), + [1829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(285), + [1832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(285), + [1835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(285), + [1838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(285), + [1841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(297), + [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [1846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(285), + [1849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(285), + [1852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(285), + [1855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(245), + [1858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__curly_bracket_span_begin, 1), SHIFT(572), + [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [1863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(299), + [1866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [1868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(299), + [1871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__curly_bracket_span_begin, 1), SHIFT(580), + [1874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [1876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(245), + [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [1881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(297), + [1884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(245), + [1887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(245), + [1890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(365), + [1893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(329), + [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [1898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(329), + [1901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(329), + [1904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(329), + [1907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(329), + [1910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(329), + [1913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(329), + [1916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(365), + [1919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(329), + [1922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(329), + [1925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(329), + [1928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(245), + [1931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(245), + [1934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(365), + [1937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(343), + [1940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [1942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(343), + [1945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__curly_bracket_span_begin, 1), SHIFT(554), + [1948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [1950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(245), + [1953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(365), + [1956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(365), + [1959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(365), + [1962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(365), + [1965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(365), + [1968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(365), + [1971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(372), + [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [1976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(372), + [1979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(245), + [1982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__curly_bracket_span_begin, 1), SHIFT(535), + [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [1987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(373), + [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [1992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(373), + [1995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(373), + [1998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(373), + [2001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(373), + [2004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(373), + [2007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(373), + [2010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(373), + [2013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(373), + [2016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(373), + [2019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(245), + [2022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(276), + [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [2027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(387), + [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [2032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(387), + [2035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__curly_bracket_span_begin, 1), SHIFT(532), + [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [2040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(276), + [2043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(276), + [2046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(276), + [2049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__curly_bracket_span_begin, 1), SHIFT(585), + [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [2054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(556), + [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [2059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(556), + [2062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(276), + [2065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(276), + [2068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(501), + [2071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(501), + [2074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(501), + [2077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(501), + [2080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(501), + [2083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(501), + [2086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(417), + [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [2091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(417), + [2094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(417), + [2097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(417), + [2100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(417), + [2103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(417), + [2106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(417), + [2109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(501), + [2112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(417), + [2115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(417), + [2118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(417), + [2121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(501), + [2124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(276), + [2127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(501), + [2130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(431), + [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [2135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(431), + [2138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__curly_bracket_span_begin, 1), SHIFT(523), + [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [2143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(276), + [2146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(276), + [2149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(276), + [2152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__curly_bracket_span_begin, 1), SHIFT(516), + [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [2157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(453), + [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [2162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(453), + [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [2167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(496), + [2170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(496), + [2173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(496), + [2176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(496), + [2179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(496), + [2182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(496), + [2185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(496), + [2188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(496), + [2191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(460), + [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [2196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(460), + [2199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(460), + [2202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(460), + [2205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(460), + [2208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(460), + [2211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(460), + [2214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(496), + [2217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(460), + [2220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(460), + [2223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(460), + [2226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(496), + [2229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(222), + [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [2234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(222), + [2237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(474), + [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [2242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(474), + [2245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__curly_bracket_span_begin, 1), SHIFT(508), + [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [2250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__curly_bracket_span_begin, 1), SHIFT(503), + [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [2571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key, 1), + [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [2599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_label, 1), + [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [2723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline, 1), + [2725] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), }; enum ts_external_scanner_symbol_identifiers { @@ -40928,17 +38607,15 @@ enum ts_external_scanner_symbol_identifiers { ts_external_token_insert_end = 15, ts_external_token__delete_mark_begin = 16, ts_external_token_delete_end = 17, - ts_external_token__bracketed_text_mark_begin = 18, - ts_external_token__bracketed_text_end = 19, - ts_external_token__image_description_mark_begin = 20, - ts_external_token__image_description_end = 21, - ts_external_token__inline_attribute_mark_begin = 22, - ts_external_token__inline_attribute_end = 23, - ts_external_token__footnote_marker_mark_begin = 24, - ts_external_token_footnote_marker_end = 25, - ts_external_token__in_fallback = 26, - ts_external_token__non_whitespace_check = 27, - ts_external_token__error = 28, + ts_external_token__parens_span_mark_begin = 18, + ts_external_token__parens_span_end = 19, + ts_external_token__curly_bracket_span_mark_begin = 20, + ts_external_token__curly_bracket_span_end = 21, + ts_external_token__square_bracket_span_begin = 22, + ts_external_token__square_bracket_span_end = 23, + ts_external_token__in_fallback = 24, + ts_external_token__non_whitespace_check = 25, + ts_external_token__error = 26, }; static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { @@ -40960,20 +38637,18 @@ static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { [ts_external_token_insert_end] = sym_insert_end, [ts_external_token__delete_mark_begin] = sym__delete_mark_begin, [ts_external_token_delete_end] = sym_delete_end, - [ts_external_token__bracketed_text_mark_begin] = sym__bracketed_text_mark_begin, - [ts_external_token__bracketed_text_end] = sym__bracketed_text_end, - [ts_external_token__image_description_mark_begin] = sym__image_description_mark_begin, - [ts_external_token__image_description_end] = sym__image_description_end, - [ts_external_token__inline_attribute_mark_begin] = sym__inline_attribute_mark_begin, - [ts_external_token__inline_attribute_end] = sym__inline_attribute_end, - [ts_external_token__footnote_marker_mark_begin] = sym__footnote_marker_mark_begin, - [ts_external_token_footnote_marker_end] = sym_footnote_marker_end, + [ts_external_token__parens_span_mark_begin] = sym__parens_span_mark_begin, + [ts_external_token__parens_span_end] = sym__parens_span_end, + [ts_external_token__curly_bracket_span_mark_begin] = sym__curly_bracket_span_mark_begin, + [ts_external_token__curly_bracket_span_end] = sym__curly_bracket_span_end, + [ts_external_token__square_bracket_span_begin] = sym__square_bracket_span_begin, + [ts_external_token__square_bracket_span_end] = sym__square_bracket_span_end, [ts_external_token__in_fallback] = sym__in_fallback, [ts_external_token__non_whitespace_check] = sym__non_whitespace_check, [ts_external_token__error] = sym__error, }; -static const bool ts_external_scanner_states[57][EXTERNAL_TOKEN_COUNT] = { +static const bool ts_external_scanner_states[52][EXTERNAL_TOKEN_COUNT] = { [1] = { [ts_external_token__ignored] = true, [ts_external_token__verbatim_begin] = true, @@ -40993,14 +38668,12 @@ static const bool ts_external_scanner_states[57][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_insert_end] = true, [ts_external_token__delete_mark_begin] = true, [ts_external_token_delete_end] = true, - [ts_external_token__bracketed_text_mark_begin] = true, - [ts_external_token__bracketed_text_end] = true, - [ts_external_token__image_description_mark_begin] = true, - [ts_external_token__image_description_end] = true, - [ts_external_token__inline_attribute_mark_begin] = true, - [ts_external_token__inline_attribute_end] = true, - [ts_external_token__footnote_marker_mark_begin] = true, - [ts_external_token_footnote_marker_end] = true, + [ts_external_token__parens_span_mark_begin] = true, + [ts_external_token__parens_span_end] = true, + [ts_external_token__curly_bracket_span_mark_begin] = true, + [ts_external_token__curly_bracket_span_end] = true, + [ts_external_token__square_bracket_span_begin] = true, + [ts_external_token__square_bracket_span_end] = true, [ts_external_token__in_fallback] = true, [ts_external_token__non_whitespace_check] = true, [ts_external_token__error] = true, @@ -41010,11 +38683,11 @@ static const bool ts_external_scanner_states[57][EXTERNAL_TOKEN_COUNT] = { }, [3] = { [ts_external_token__verbatim_begin] = true, - [ts_external_token__image_description_end] = true, + [ts_external_token__square_bracket_span_end] = true, }, [4] = { [ts_external_token__verbatim_begin] = true, - [ts_external_token_insert_end] = true, + [ts_external_token_superscript_end] = true, }, [5] = { [ts_external_token__verbatim_begin] = true, @@ -41022,19 +38695,19 @@ static const bool ts_external_scanner_states[57][EXTERNAL_TOKEN_COUNT] = { }, [6] = { [ts_external_token__verbatim_begin] = true, - [ts_external_token_superscript_end] = true, + [ts_external_token_subscript_end] = true, }, [7] = { [ts_external_token__verbatim_begin] = true, - [ts_external_token_delete_end] = true, + [ts_external_token_insert_end] = true, }, [8] = { [ts_external_token__verbatim_begin] = true, - [ts_external_token_subscript_end] = true, + [ts_external_token_delete_end] = true, }, [9] = { [ts_external_token__verbatim_begin] = true, - [ts_external_token__bracketed_text_end] = true, + [ts_external_token_emphasis_end] = true, }, [10] = { [ts_external_token__verbatim_begin] = true, @@ -41042,171 +38715,152 @@ static const bool ts_external_scanner_states[57][EXTERNAL_TOKEN_COUNT] = { }, [11] = { [ts_external_token__verbatim_begin] = true, - [ts_external_token_emphasis_end] = true, + [ts_external_token__non_whitespace_check] = true, }, [12] = { [ts_external_token__verbatim_begin] = true, - [ts_external_token__bracketed_text_end] = true, + [ts_external_token_delete_end] = true, [ts_external_token__non_whitespace_check] = true, }, [13] = { [ts_external_token__verbatim_begin] = true, - [ts_external_token_delete_end] = true, + [ts_external_token__square_bracket_span_end] = true, [ts_external_token__non_whitespace_check] = true, }, [14] = { [ts_external_token__verbatim_begin] = true, - [ts_external_token_highlighted_end] = true, + [ts_external_token_insert_end] = true, [ts_external_token__non_whitespace_check] = true, }, [15] = { [ts_external_token__verbatim_begin] = true, - [ts_external_token__image_description_end] = true, + [ts_external_token_emphasis_end] = true, [ts_external_token__non_whitespace_check] = true, }, [16] = { [ts_external_token__verbatim_begin] = true, - [ts_external_token_strong_end] = true, + [ts_external_token_highlighted_end] = true, [ts_external_token__non_whitespace_check] = true, }, [17] = { [ts_external_token__verbatim_begin] = true, - [ts_external_token_insert_end] = true, + [ts_external_token_strong_end] = true, [ts_external_token__non_whitespace_check] = true, }, [18] = { [ts_external_token__verbatim_begin] = true, - [ts_external_token_emphasis_end] = true, + [ts_external_token_subscript_end] = true, [ts_external_token__non_whitespace_check] = true, }, [19] = { [ts_external_token__verbatim_begin] = true, + [ts_external_token_superscript_end] = true, [ts_external_token__non_whitespace_check] = true, }, [20] = { - [ts_external_token__verbatim_begin] = true, - [ts_external_token_subscript_end] = true, - [ts_external_token__non_whitespace_check] = true, + [ts_external_token__curly_bracket_span_end] = true, }, [21] = { - [ts_external_token__verbatim_begin] = true, - [ts_external_token_superscript_end] = true, - [ts_external_token__non_whitespace_check] = true, + [ts_external_token__square_bracket_span_begin] = true, + [ts_external_token__in_fallback] = true, }, [22] = { - [ts_external_token__inline_attribute_end] = true, + [ts_external_token__emphasis_mark_begin] = true, + [ts_external_token__in_fallback] = true, }, [23] = { - [ts_external_token__strong_mark_begin] = true, + [ts_external_token__parens_span_mark_begin] = true, [ts_external_token__in_fallback] = true, }, [24] = { - [ts_external_token__emphasis_mark_begin] = true, + [ts_external_token__strong_mark_begin] = true, [ts_external_token__in_fallback] = true, }, [25] = { - [ts_external_token__superscript_mark_begin] = true, + [ts_external_token__curly_bracket_span_mark_begin] = true, [ts_external_token__in_fallback] = true, }, [26] = { - [ts_external_token__subscript_mark_begin] = true, + [ts_external_token__superscript_mark_begin] = true, [ts_external_token__in_fallback] = true, }, [27] = { - [ts_external_token__highlighted_mark_begin] = true, + [ts_external_token__subscript_mark_begin] = true, [ts_external_token__in_fallback] = true, }, [28] = { - [ts_external_token__insert_mark_begin] = true, + [ts_external_token__highlighted_mark_begin] = true, [ts_external_token__in_fallback] = true, }, [29] = { - [ts_external_token__delete_mark_begin] = true, + [ts_external_token__insert_mark_begin] = true, [ts_external_token__in_fallback] = true, }, [30] = { - [ts_external_token__footnote_marker_mark_begin] = true, + [ts_external_token__delete_mark_begin] = true, [ts_external_token__in_fallback] = true, }, [31] = { - [ts_external_token__image_description_mark_begin] = true, - [ts_external_token__in_fallback] = true, + [ts_external_token__verbatim_end] = true, }, [32] = { - [ts_external_token__bracketed_text_mark_begin] = true, - [ts_external_token__in_fallback] = true, + [ts_external_token_emphasis_end] = true, }, [33] = { - [ts_external_token__inline_attribute_mark_begin] = true, - [ts_external_token__in_fallback] = true, + [ts_external_token_strong_end] = true, }, [34] = { - [ts_external_token__verbatim_end] = true, + [ts_external_token_superscript_end] = true, }, [35] = { - [ts_external_token_emphasis_end] = true, + [ts_external_token_subscript_end] = true, }, [36] = { - [ts_external_token_strong_end] = true, + [ts_external_token_highlighted_end] = true, }, [37] = { - [ts_external_token_superscript_end] = true, + [ts_external_token_insert_end] = true, }, [38] = { - [ts_external_token_subscript_end] = true, + [ts_external_token_delete_end] = true, }, [39] = { - [ts_external_token_highlighted_end] = true, + [ts_external_token__square_bracket_span_end] = true, }, [40] = { - [ts_external_token_insert_end] = true, + [ts_external_token__parens_span_end] = true, }, [41] = { - [ts_external_token_delete_end] = true, + [ts_external_token__verbatim_content] = true, }, [42] = { - [ts_external_token_footnote_marker_end] = true, + [ts_external_token__curly_bracket_span_mark_begin] = true, }, [43] = { - [ts_external_token__verbatim_content] = true, + [ts_external_token__parens_span_mark_begin] = true, }, [44] = { - [ts_external_token__inline_attribute_mark_begin] = true, + [ts_external_token__square_bracket_span_begin] = true, }, [45] = { - [ts_external_token__bracketed_text_end] = true, - }, - [46] = { - [ts_external_token__image_description_end] = true, - }, - [47] = { - [ts_external_token__bracketed_text_mark_begin] = true, - }, - [48] = { - [ts_external_token__image_description_mark_begin] = true, - }, - [49] = { - [ts_external_token__footnote_marker_mark_begin] = true, - }, - [50] = { [ts_external_token__delete_mark_begin] = true, }, - [51] = { + [46] = { [ts_external_token__insert_mark_begin] = true, }, - [52] = { + [47] = { [ts_external_token__highlighted_mark_begin] = true, }, - [53] = { + [48] = { [ts_external_token__subscript_mark_begin] = true, }, - [54] = { + [49] = { [ts_external_token__superscript_mark_begin] = true, }, - [55] = { + [50] = { [ts_external_token__strong_mark_begin] = true, }, - [56] = { + [51] = { [ts_external_token__emphasis_mark_begin] = true, }, }; diff --git a/tree-sitter-djot-inline/src/scanner.c b/tree-sitter-djot-inline/src/scanner.c index 4e14839..37eb230 100644 --- a/tree-sitter-djot-inline/src/scanner.c +++ b/tree-sitter-djot-inline/src/scanner.c @@ -34,14 +34,12 @@ typedef enum { DELETE_MARK_BEGIN, DELETE_END, - IMAGE_DESCRIPTION_MARK_BEGIN, - IMAGE_DESCRIPTION_END, - BRACKETED_TEXT_MARK_BEGIN, - BRACKETED_TEXT_END, - INLINE_ATTRIBUTE_MARK_BEGIN, - INLINE_ATTRIBUTE_END, - FOOTNOTE_MARKER_MARK_BEGIN, - FOOTNOTE_MARKER_END, + PARENS_SPAN_MARK_BEGIN, + PARENS_SPAN_END, + CURLY_BRACKET_SPAN_MARK_BEGIN, + CURLY_BRACKET_SPAN_END, + SQUARE_BRACKET_SPAN_MARK_BEGIN, + SQUARE_BRACKET_SPAN_END, // If we're scanning a fallback token then we should accept the beginning // markers, but not push anything on the stack. @@ -61,12 +59,11 @@ typedef enum { HIGHLIGHTED, INSERT, DELETE, - // Covers the `![text]` part in images. - IMAGE_DESCRIPTION, - // Covers the initial `[text]` part in spans and links. - BRACKETED_TEXT, - INLINE_ATTRIBUTE, - FOOTNOTE_MARKER, + // Spans where the start token is managed by `grammar.js` + // and the tokens specify the ending token ), }, or ] + PARENS_SPAN, + CURLY_BRACKET_SPAN, + SQUARE_BRACKET_SPAN, } ElementType; // What kind of span we should parse. @@ -457,29 +454,22 @@ static bool parse_delete(Scanner *s, TSLexer *lexer, return parse_span(s, lexer, valid_symbols, DELETE, DELETE_MARK_BEGIN, DELETE_END, '-', SpanBracketed); } -static bool parse_image_description(Scanner *s, TSLexer *lexer, - const bool *valid_symbols) { - return parse_span(s, lexer, valid_symbols, IMAGE_DESCRIPTION, - IMAGE_DESCRIPTION_MARK_BEGIN, IMAGE_DESCRIPTION_END, ']', - SpanSingle); +static bool parse_parens_span(Scanner *s, TSLexer *lexer, + const bool *valid_symbols) { + return parse_span(s, lexer, valid_symbols, PARENS_SPAN, + PARENS_SPAN_MARK_BEGIN, PARENS_SPAN_END, ')', SpanSingle); } -static bool parse_bracketed_text(Scanner *s, TSLexer *lexer, - const bool *valid_symbols) { - return parse_span(s, lexer, valid_symbols, BRACKETED_TEXT, - BRACKETED_TEXT_MARK_BEGIN, BRACKETED_TEXT_END, ']', +static bool parse_curly_bracket_span(Scanner *s, TSLexer *lexer, + const bool *valid_symbols) { + return parse_span(s, lexer, valid_symbols, CURLY_BRACKET_SPAN, + CURLY_BRACKET_SPAN_MARK_BEGIN, CURLY_BRACKET_SPAN_END, '}', SpanSingle); } -static bool parse_inline_attribute(Scanner *s, TSLexer *lexer, - const bool *valid_symbols) { - return parse_span(s, lexer, valid_symbols, INLINE_ATTRIBUTE, - INLINE_ATTRIBUTE_MARK_BEGIN, INLINE_ATTRIBUTE_END, '}', - SpanSingle); -} -static bool parse_footnote_marker(Scanner *s, TSLexer *lexer, - const bool *valid_symbols) { - return parse_span(s, lexer, valid_symbols, FOOTNOTE_MARKER, - FOOTNOTE_MARKER_MARK_BEGIN, FOOTNOTE_MARKER_END, ']', - SpanSingle); +static bool parse_square_bracket_span(Scanner *s, TSLexer *lexer, + const bool *valid_symbols) { + return parse_span(s, lexer, valid_symbols, SQUARE_BRACKET_SPAN, + SQUARE_BRACKET_SPAN_MARK_BEGIN, SQUARE_BRACKET_SPAN_END, + ']', SpanSingle); } static bool check_non_whitespace(Scanner *s, TSLexer *lexer) { @@ -548,16 +538,13 @@ bool tree_sitter_djot_inline_external_scanner_scan(void *payload, if (parse_delete(s, lexer, valid_symbols)) { return true; } - if (parse_image_description(s, lexer, valid_symbols)) { - return true; - } - if (parse_bracketed_text(s, lexer, valid_symbols)) { + if (parse_parens_span(s, lexer, valid_symbols)) { return true; } - if (parse_inline_attribute(s, lexer, valid_symbols)) { + if (parse_curly_bracket_span(s, lexer, valid_symbols)) { return true; } - if (parse_footnote_marker(s, lexer, valid_symbols)) { + if (parse_square_bracket_span(s, lexer, valid_symbols)) { return true; } @@ -651,14 +638,14 @@ static char *token_type_s(TokenType t) { return "IMAGE_DESCRIPTION_MARK_BEGIN"; case IMAGE_DESCRIPTION_END: return "IMAGE_DESCRIPTION_END"; - case BRACKETED_TEXT_MARK_BEGIN: - return "BRACKETED_TEXT_MARK_BEGIN"; - case BRACKETED_TEXT_END: - return "BRACKETED_TEXT_END"; - case INLINE_ATTRIBUTE_MARK_BEGIN: - return "INLINE_ATTRIBUTE_MARK_BEGIN"; - case INLINE_ATTRIBUTE_END: - return "INLINE_ATTRIBUTE_END"; + case SQUARE_BRACKET_SPAN_MARK_BEGIN: + return "SQUARE_BRACKET_SPAN_MARK_BEGIN"; + case SQUARE_BRACKET_SPAN_END: + return "SQUARE_BRACKET_SPAN_END"; + case CURLY_BRACKET_SPAN_MARK_BEGIN: + return "CURLY_BRACKET_SPAN_MARK_BEGIN"; + case CURLY_BRACKET_SPAN_END: + return "CURLY_BRACKET_SPAN_END"; case FOOTNOTE_MARKER_MARK_BEGIN: return "FOOTNOTE_MARKER_MARK_BEGIN"; case FOOTNOTE_MARKER_END: @@ -696,10 +683,10 @@ static char *element_type_s(ElementType t) { return "DELETE"; case IMAGE_DESCRIPTION: return "IMAGE_DESCRIPTION"; - case BRACKETED_TEXT: - return "BRACKETED_TEXT"; - case INLINE_ATTRIBUTE: - return "INLINE_ATTRIBUTE"; + case SQUARE_BRACKET_SPAN: + return "SQUARE_BRACKET_SPAN"; + case CURLY_BRACKET_SPAN: + return "CURLY_BRACKET_SPAN"; case FOOTNOTE_MARKER: return "FOOTNOTE_MARKER"; } diff --git a/tree-sitter-djot-inline/test/corpus/syntax.txt b/tree-sitter-djot-inline/test/corpus/syntax.txt index 043b6b7..5953650 100644 --- a/tree-sitter-djot-inline/test/corpus/syntax.txt +++ b/tree-sitter-djot-inline/test/corpus/syntax.txt @@ -187,6 +187,7 @@ Image: empty inline (inline (inline_image + (image_description) (inline_link_destination))) =============================================================================== @@ -213,7 +214,7 @@ Image: full reference (link_label))) =============================================================================== -Image: precedance +Image: precedence =============================================================================== ![x *](y)* @@ -227,6 +228,10 @@ Image: precedance *![*][] +*![x](y*) + +*![x][y*] + ------------------------------------------------------------------------------- (inline @@ -249,7 +254,58 @@ Image: precedance (strong (strong_begin) (content) - (strong_end))) + (strong_end)) + (inline_image + (image_description) + (inline_link_destination)) + (full_reference_image + (image_description) + (link_label))) + +=============================================================================== +Image: inline +=============================================================================== +![descr](/url) + +------------------------------------------------------------------------------- + +(inline + (inline_image + (image_description) + (inline_link_destination))) + +=============================================================================== +Image: post precedence inline_link +=============================================================================== +![x](y*)* + +------------------------------------------------------------------------------- + +(inline + (inline_image + (image_description) + (inline_link_destination))) + +=============================================================================== +Image: post precedence full_reference_link +=============================================================================== +![x][y*]* + +------------------------------------------------------------------------------- + +(inline + (full_reference_image + (image_description) + (link_label))) + +=============================================================================== +Image: fallback +=============================================================================== +![x](/u + +------------------------------------------------------------------------------- + +(inline) =============================================================================== Emphasis @@ -993,7 +1049,7 @@ With [a reference][ref] (link_label))) =============================================================================== -Link: precedance +Link: precedence =============================================================================== [x *](y)* @@ -1007,6 +1063,10 @@ Link: precedance *[*][] +*[x](y*) + +*[x][y*] + ------------------------------------------------------------------------------- (inline @@ -1029,7 +1089,46 @@ Link: precedance (strong (strong_begin) (content) - (strong_end))) + (strong_end)) + (inline_link + (link_text) + (inline_link_destination)) + (full_reference_link + (link_text) + (link_label))) + +=============================================================================== +Link: post precedence inline_link +=============================================================================== +[x](y*)* + +------------------------------------------------------------------------------- + +(inline + (inline_link + (link_text) + (inline_link_destination))) + +=============================================================================== +Link: post precedence full_reference_link +=============================================================================== +[x][y*]* + +------------------------------------------------------------------------------- + +(inline + (full_reference_link + (link_text) + (link_label))) + +=============================================================================== +Link: fallback +=============================================================================== +[x](/u + +------------------------------------------------------------------------------- + +(inline) =============================================================================== Inline attribute: mixed @@ -1197,6 +1296,7 @@ One [two three]{.class (inline (span + (content) (inline_attribute (args (class) @@ -1224,6 +1324,7 @@ Span: Precedence (content) (strong_end)) (span + (content) (inline_attribute (args (class))))) From b915d05acad6100b2f22f2a01bfe1e4794cb59be Mon Sep 17 00:00:00 2001 From: Jonas Hietala Date: Sun, 8 Sep 2024 09:16:28 +0200 Subject: [PATCH 20/46] Ability to escape `)` in link urls --- tree-sitter-djot-inline/grammar.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tree-sitter-djot-inline/grammar.js b/tree-sitter-djot-inline/grammar.js index 4455704..f44c09d 100644 --- a/tree-sitter-djot-inline/grammar.js +++ b/tree-sitter-djot-inline/grammar.js @@ -259,8 +259,7 @@ module.exports = grammar({ seq( $._parens_span_begin, $._parens_span_mark_begin, - // /[^\)]+/, - // TODO should capture as backslash_escape + // Can escape `)`, but shouldn't capture it. /([^\)]|\\\))+/, alias($._parens_span_end, ")"), ), From aeb47543bcecf03b2b0b62eba9a8b3b1535d8917 Mon Sep 17 00:00:00 2001 From: Jonas Hietala Date: Sun, 8 Sep 2024 14:11:43 +0200 Subject: [PATCH 21/46] Fix dynamic precedence and refactor things a bit --- tree-sitter-djot-inline/grammar.js | 88 +- tree-sitter-djot-inline/src/grammar.json | 250 +- tree-sitter-djot-inline/src/parser.c | 33853 ++++++++-------- .../test/corpus/syntax.txt | 60 +- 4 files changed, 17653 insertions(+), 16598 deletions(-) diff --git a/tree-sitter-djot-inline/grammar.js b/tree-sitter-djot-inline/grammar.js index f44c09d..b23106a 100644 --- a/tree-sitter-djot-inline/grammar.js +++ b/tree-sitter-djot-inline/grammar.js @@ -1,3 +1,5 @@ +const ELEMENT_PRECEDENCE = 100; + module.exports = grammar({ name: "djot_inline", @@ -35,36 +37,60 @@ module.exports = grammar({ _element: ($) => prec.left( choice( + // Span is declared separately because it always parses an `inline_attribute`, + // while the attribute is optional for everything else. + $.span, seq( choice( $.hard_line_break, $._smart_punctuation, $.backslash_escape, + // Elements containing other inline elements needs to have the same precedence level + // so we can choose the element that's closed first. + // + // For example: + // + // *[x](y*) + // + // Should parse a strong element instead of a link because it's closed before the link. + // + // They also need a higher precedence than the fallback tokens so that: + // + // _a_ + // + // Is parsed as emphasis instead of just text with `_symbol_fallback` tokens. + prec.dynamic(ELEMENT_PRECEDENCE, $.emphasis), + prec.dynamic(ELEMENT_PRECEDENCE, $.strong), + prec.dynamic(ELEMENT_PRECEDENCE, $.highlighted), + prec.dynamic(ELEMENT_PRECEDENCE, $.superscript), + prec.dynamic(ELEMENT_PRECEDENCE, $.subscript), + prec.dynamic(ELEMENT_PRECEDENCE, $.insert), + prec.dynamic(ELEMENT_PRECEDENCE, $.delete), + prec.dynamic(ELEMENT_PRECEDENCE, $.footnote_reference), + prec.dynamic(ELEMENT_PRECEDENCE, $._image), + prec.dynamic(ELEMENT_PRECEDENCE, $._link), $.autolink, - $.emphasis, - $.strong, - $.highlighted, - $.superscript, - $.subscript, - $.insert, - $.delete, $.verbatim, $.math, $.raw_inline, - $.footnote_reference, $.symbol, - $._image, - $._link, $._comment_with_spaces, $._todo_highlights, + // Text and the symbol fallback matches everything not matched elsewhere. $._symbol_fallback, $._text, ), optional( - choice($.inline_attribute, $._curly_bracket_span_fallback), + // We need a separate fallback token for the opening `{` + // for the parser to recognize the conflict. + choice( + // Use precedence for inline attribute as well to allow + // closure before other elements. + prec.dynamic(ELEMENT_PRECEDENCE, $.inline_attribute), + $._curly_bracket_span_fallback, + ), ), ), - $.span, ), ), @@ -81,7 +107,7 @@ module.exports = grammar({ $.emphasis_begin, $._emphasis_mark_begin, alias($._inline_without_trailing_space, $.content), - prec.dynamic(1000, $.emphasis_end), + $.emphasis_end, ), emphasis_begin: ($) => choice("{_", seq("_", $._non_whitespace_check)), @@ -90,7 +116,7 @@ module.exports = grammar({ $.strong_begin, $._strong_mark_begin, alias($._inline_without_trailing_space, $.content), - prec.dynamic(1000, $.strong_end), + $.strong_end, ), strong_begin: ($) => choice("{*", seq("*", $._non_whitespace_check)), @@ -101,7 +127,7 @@ module.exports = grammar({ $.superscript_begin, $._superscript_mark_begin, alias($._inline, $.content), - prec.dynamic(1000, $.superscript_end), + $.superscript_end, ), superscript_begin: (_) => choice("{^", "^"), @@ -110,7 +136,7 @@ module.exports = grammar({ $.subscript_begin, $._subscript_mark_begin, alias($._inline, $.content), - prec.dynamic(1000, $.subscript_end), + $.subscript_end, ), subscript_begin: (_) => choice("{~", "~"), @@ -119,7 +145,7 @@ module.exports = grammar({ $.highlighted_begin, $._highlighted_mark_begin, alias($._inline, $.content), - prec.dynamic(1000, $.highlighted_end), + $.highlighted_end, ), highlighted_begin: (_) => "{=", insert: ($) => @@ -127,7 +153,7 @@ module.exports = grammar({ $.insert_begin, $._insert_mark_begin, alias($._inline, $.content), - prec.dynamic(1000, $.insert_end), + $.insert_end, ), insert_begin: (_) => "{+", delete: ($) => @@ -135,7 +161,7 @@ module.exports = grammar({ $.delete_begin, $._delete_mark_begin, alias($._inline, $.content), - prec.dynamic(1000, $.delete_end), + $.delete_end, ), delete_begin: (_) => "{-", @@ -162,10 +188,7 @@ module.exports = grammar({ $.footnote_marker_begin, $._square_bracket_span_begin, $.reference_label, - prec.dynamic( - 1000, - alias($._square_bracket_span_end, $.footnote_marker_end), - ), + alias($._square_bracket_span_end, $.footnote_marker_end), ), footnote_marker_begin: (_) => "[^", @@ -188,7 +211,7 @@ module.exports = grammar({ $._image_description_begin, $._square_bracket_span_begin, optional($._inline), - prec.dynamic(1000, alias($._square_bracket_span_end, "]")), + alias($._square_bracket_span_end, "]"), ), _image_description_begin: (_) => "![", @@ -205,20 +228,19 @@ module.exports = grammar({ $._inline, // Alias to "]" to allow us to highlight it in Neovim. // Maybe some bug, or some undocumented behavior? - prec.dynamic(1000, alias($._square_bracket_span_end, "]")), + alias($._square_bracket_span_end, "]"), ), span: ($) => - // Both bracketed_text and inline_attribute contributes +1000 each, - // so we pull it back to 1000 so it's the same as other spans, - // making precedence work properly. - // prec.dynamic(-1000, seq($._bracketed_text, - seq( $._bracketed_text_begin, $._square_bracket_span_begin, alias($._inline, $.content), - alias($._square_bracket_span_end, "]"), + // Prefer span over regular text + inline attribute. + prec.dynamic( + ELEMENT_PRECEDENCE, + alias($._square_bracket_span_end, "]"), + ), $.inline_attribute, ), @@ -241,7 +263,7 @@ module.exports = grammar({ ), $.args, ), - prec.dynamic(1000, alias($._curly_bracket_span_end, "}")), + alias($._curly_bracket_span_end, "}"), ), _curly_bracket_span_begin: (_) => "{", @@ -250,7 +272,7 @@ module.exports = grammar({ $._bracketed_text_begin, $._square_bracket_span_begin, $._inline, - prec.dynamic(1000, $._square_bracket_span_end), + $._square_bracket_span_end, ), _link_label: ($) => diff --git a/tree-sitter-djot-inline/src/grammar.json b/tree-sitter-djot-inline/src/grammar.json index c39d369..e2c21f4 100644 --- a/tree-sitter-djot-inline/src/grammar.json +++ b/tree-sitter-djot-inline/src/grammar.json @@ -68,6 +68,10 @@ "content": { "type": "CHOICE", "members": [ + { + "type": "SYMBOL", + "name": "span" + }, { "type": "SEQ", "members": [ @@ -87,64 +91,104 @@ "name": "backslash_escape" }, { - "type": "SYMBOL", - "name": "autolink" + "type": "PREC_DYNAMIC", + "value": 100, + "content": { + "type": "SYMBOL", + "name": "emphasis" + } }, { - "type": "SYMBOL", - "name": "emphasis" + "type": "PREC_DYNAMIC", + "value": 100, + "content": { + "type": "SYMBOL", + "name": "strong" + } }, { - "type": "SYMBOL", - "name": "strong" + "type": "PREC_DYNAMIC", + "value": 100, + "content": { + "type": "SYMBOL", + "name": "highlighted" + } }, { - "type": "SYMBOL", - "name": "highlighted" + "type": "PREC_DYNAMIC", + "value": 100, + "content": { + "type": "SYMBOL", + "name": "superscript" + } }, { - "type": "SYMBOL", - "name": "superscript" + "type": "PREC_DYNAMIC", + "value": 100, + "content": { + "type": "SYMBOL", + "name": "subscript" + } }, { - "type": "SYMBOL", - "name": "subscript" + "type": "PREC_DYNAMIC", + "value": 100, + "content": { + "type": "SYMBOL", + "name": "insert" + } }, { - "type": "SYMBOL", - "name": "insert" + "type": "PREC_DYNAMIC", + "value": 100, + "content": { + "type": "SYMBOL", + "name": "delete" + } }, { - "type": "SYMBOL", - "name": "delete" + "type": "PREC_DYNAMIC", + "value": 100, + "content": { + "type": "SYMBOL", + "name": "footnote_reference" + } }, { - "type": "SYMBOL", - "name": "verbatim" + "type": "PREC_DYNAMIC", + "value": 100, + "content": { + "type": "SYMBOL", + "name": "_image" + } }, { - "type": "SYMBOL", - "name": "math" + "type": "PREC_DYNAMIC", + "value": 100, + "content": { + "type": "SYMBOL", + "name": "_link" + } }, { "type": "SYMBOL", - "name": "raw_inline" + "name": "autolink" }, { "type": "SYMBOL", - "name": "footnote_reference" + "name": "verbatim" }, { "type": "SYMBOL", - "name": "symbol" + "name": "math" }, { "type": "SYMBOL", - "name": "_image" + "name": "raw_inline" }, { "type": "SYMBOL", - "name": "_link" + "name": "symbol" }, { "type": "SYMBOL", @@ -171,8 +215,12 @@ "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "inline_attribute" + "type": "PREC_DYNAMIC", + "value": 100, + "content": { + "type": "SYMBOL", + "name": "inline_attribute" + } }, { "type": "SYMBOL", @@ -186,10 +234,6 @@ ] } ] - }, - { - "type": "SYMBOL", - "name": "span" } ] } @@ -215,12 +259,8 @@ "value": "content" }, { - "type": "PREC_DYNAMIC", - "value": 1000, - "content": { - "type": "SYMBOL", - "name": "emphasis_end" - } + "type": "SYMBOL", + "name": "emphasis_end" } ] }, @@ -267,12 +307,8 @@ "value": "content" }, { - "type": "PREC_DYNAMIC", - "value": 1000, - "content": { - "type": "SYMBOL", - "name": "strong_end" - } + "type": "SYMBOL", + "name": "strong_end" } ] }, @@ -319,12 +355,8 @@ "value": "content" }, { - "type": "PREC_DYNAMIC", - "value": 1000, - "content": { - "type": "SYMBOL", - "name": "superscript_end" - } + "type": "SYMBOL", + "name": "superscript_end" } ] }, @@ -362,12 +394,8 @@ "value": "content" }, { - "type": "PREC_DYNAMIC", - "value": 1000, - "content": { - "type": "SYMBOL", - "name": "subscript_end" - } + "type": "SYMBOL", + "name": "subscript_end" } ] }, @@ -405,12 +433,8 @@ "value": "content" }, { - "type": "PREC_DYNAMIC", - "value": 1000, - "content": { - "type": "SYMBOL", - "name": "highlighted_end" - } + "type": "SYMBOL", + "name": "highlighted_end" } ] }, @@ -439,12 +463,8 @@ "value": "content" }, { - "type": "PREC_DYNAMIC", - "value": 1000, - "content": { - "type": "SYMBOL", - "name": "insert_end" - } + "type": "SYMBOL", + "name": "insert_end" } ] }, @@ -473,12 +493,8 @@ "value": "content" }, { - "type": "PREC_DYNAMIC", - "value": 1000, - "content": { - "type": "SYMBOL", - "name": "delete_end" - } + "type": "SYMBOL", + "name": "delete_end" } ] }, @@ -621,17 +637,13 @@ "name": "reference_label" }, { - "type": "PREC_DYNAMIC", - "value": 1000, + "type": "ALIAS", "content": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_square_bracket_span_end" - }, - "named": true, - "value": "footnote_marker_end" - } + "type": "SYMBOL", + "name": "_square_bracket_span_end" + }, + "named": true, + "value": "footnote_marker_end" } ] }, @@ -730,17 +742,13 @@ ] }, { - "type": "PREC_DYNAMIC", - "value": 1000, + "type": "ALIAS", "content": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_square_bracket_span_end" - }, - "named": false, - "value": "]" - } + "type": "SYMBOL", + "name": "_square_bracket_span_end" + }, + "named": false, + "value": "]" } ] }, @@ -823,17 +831,13 @@ "name": "_inline" }, { - "type": "PREC_DYNAMIC", - "value": 1000, + "type": "ALIAS", "content": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_square_bracket_span_end" - }, - "named": false, - "value": "]" - } + "type": "SYMBOL", + "name": "_square_bracket_span_end" + }, + "named": false, + "value": "]" } ] }, @@ -858,13 +862,17 @@ "value": "content" }, { - "type": "ALIAS", + "type": "PREC_DYNAMIC", + "value": 100, "content": { - "type": "SYMBOL", - "name": "_square_bracket_span_end" - }, - "named": false, - "value": "]" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_square_bracket_span_end" + }, + "named": false, + "value": "]" + } }, { "type": "SYMBOL", @@ -930,17 +938,13 @@ "value": "args" }, { - "type": "PREC_DYNAMIC", - "value": 1000, + "type": "ALIAS", "content": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_curly_bracket_span_end" - }, - "named": false, - "value": "}" - } + "type": "SYMBOL", + "name": "_curly_bracket_span_end" + }, + "named": false, + "value": "}" } ] }, @@ -964,12 +968,8 @@ "name": "_inline" }, { - "type": "PREC_DYNAMIC", - "value": 1000, - "content": { - "type": "SYMBOL", - "name": "_square_bracket_span_end" - } + "type": "SYMBOL", + "name": "_square_bracket_span_end" } ] }, diff --git a/tree-sitter-djot-inline/src/parser.c b/tree-sitter-djot-inline/src/parser.c index 134b605..3d448b4 100644 --- a/tree-sitter-djot-inline/src/parser.c +++ b/tree-sitter-djot-inline/src/parser.c @@ -5,7 +5,7 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 1192 +#define STATE_COUNT 1214 #define LARGE_STATE_COUNT 121 #define SYMBOL_COUNT 143 #define ALIAS_COUNT 8 @@ -1143,123 +1143,123 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1] = 1, [2] = 2, [3] = 3, - [4] = 4, + [4] = 3, [5] = 5, [6] = 6, - [7] = 7, - [8] = 6, - [9] = 6, - [10] = 6, - [11] = 6, - [12] = 6, + [7] = 5, + [8] = 5, + [9] = 5, + [10] = 5, + [11] = 5, + [12] = 5, [13] = 6, [14] = 14, - [15] = 7, - [16] = 6, + [15] = 5, + [16] = 16, [17] = 17, - [18] = 18, + [18] = 3, [19] = 19, [20] = 20, - [21] = 4, + [21] = 21, [22] = 14, [23] = 23, - [24] = 5, - [25] = 3, - [26] = 4, + [24] = 24, + [25] = 6, + [26] = 21, [27] = 20, - [28] = 17, - [29] = 18, - [30] = 19, - [31] = 23, - [32] = 5, - [33] = 3, - [34] = 3, - [35] = 5, - [36] = 4, - [37] = 14, - [38] = 14, - [39] = 20, - [40] = 23, - [41] = 17, - [42] = 18, - [43] = 19, - [44] = 23, - [45] = 18, - [46] = 23, - [47] = 7, - [48] = 5, - [49] = 3, - [50] = 17, - [51] = 20, - [52] = 4, - [53] = 3, - [54] = 5, - [55] = 23, - [56] = 19, - [57] = 18, - [58] = 4, - [59] = 20, - [60] = 17, - [61] = 4, - [62] = 3, - [63] = 20, - [64] = 6, - [65] = 14, + [28] = 19, + [29] = 16, + [30] = 14, + [31] = 3, + [32] = 23, + [33] = 24, + [34] = 24, + [35] = 21, + [36] = 23, + [37] = 20, + [38] = 6, + [39] = 14, + [40] = 19, + [41] = 3, + [42] = 16, + [43] = 17, + [44] = 17, + [45] = 3, + [46] = 14, + [47] = 23, + [48] = 19, + [49] = 6, + [50] = 24, + [51] = 21, + [52] = 20, + [53] = 19, + [54] = 20, + [55] = 21, + [56] = 24, + [57] = 23, + [58] = 14, + [59] = 17, + [60] = 20, + [61] = 21, + [62] = 16, + [63] = 24, + [64] = 14, + [65] = 19, [66] = 5, [67] = 23, - [68] = 6, - [69] = 7, - [70] = 7, - [71] = 14, - [72] = 19, - [73] = 18, - [74] = 17, - [75] = 20, - [76] = 17, - [77] = 18, - [78] = 19, - [79] = 23, - [80] = 4, - [81] = 7, - [82] = 5, - [83] = 3, - [84] = 4, - [85] = 20, - [86] = 17, - [87] = 18, - [88] = 19, - [89] = 23, - [90] = 5, - [91] = 3, - [92] = 3, - [93] = 19, - [94] = 20, - [95] = 17, - [96] = 5, - [97] = 23, - [98] = 18, - [99] = 19, - [100] = 19, - [101] = 18, - [102] = 23, - [103] = 17, - [104] = 20, - [105] = 4, - [106] = 14, - [107] = 14, - [108] = 19, - [109] = 6, - [110] = 7, - [111] = 18, - [112] = 17, - [113] = 20, - [114] = 4, - [115] = 7, - [116] = 3, - [117] = 5, - [118] = 118, - [119] = 118, - [120] = 7, + [68] = 3, + [69] = 17, + [70] = 5, + [71] = 6, + [72] = 6, + [73] = 17, + [74] = 16, + [75] = 19, + [76] = 20, + [77] = 21, + [78] = 16, + [79] = 17, + [80] = 3, + [81] = 23, + [82] = 24, + [83] = 16, + [84] = 24, + [85] = 21, + [86] = 20, + [87] = 19, + [88] = 16, + [89] = 17, + [90] = 3, + [91] = 23, + [92] = 24, + [93] = 21, + [94] = 23, + [95] = 20, + [96] = 19, + [97] = 16, + [98] = 5, + [99] = 3, + [100] = 17, + [101] = 17, + [102] = 3, + [103] = 16, + [104] = 23, + [105] = 19, + [106] = 20, + [107] = 21, + [108] = 24, + [109] = 23, + [110] = 14, + [111] = 17, + [112] = 19, + [113] = 16, + [114] = 20, + [115] = 6, + [116] = 21, + [117] = 24, + [118] = 6, + [119] = 119, + [120] = 119, [121] = 121, [122] = 121, [123] = 121, @@ -1271,1066 +1271,1088 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [129] = 121, [130] = 121, [131] = 131, - [132] = 131, - [133] = 131, - [134] = 121, - [135] = 131, - [136] = 131, - [137] = 131, + [132] = 132, + [133] = 132, + [134] = 131, + [135] = 132, + [136] = 132, + [137] = 132, [138] = 131, [139] = 131, [140] = 131, - [141] = 131, - [142] = 142, + [141] = 132, + [142] = 131, [143] = 131, - [144] = 142, - [145] = 142, - [146] = 142, - [147] = 142, - [148] = 142, - [149] = 142, - [150] = 142, - [151] = 142, - [152] = 142, + [144] = 131, + [145] = 131, + [146] = 132, + [147] = 132, + [148] = 132, + [149] = 132, + [150] = 121, + [151] = 131, + [152] = 132, [153] = 153, - [154] = 154, - [155] = 155, + [154] = 153, + [155] = 153, [156] = 153, - [157] = 157, + [157] = 131, [158] = 153, - [159] = 159, - [160] = 160, - [161] = 155, - [162] = 154, - [163] = 159, - [164] = 154, - [165] = 153, - [166] = 160, - [167] = 160, - [168] = 155, - [169] = 154, - [170] = 154, - [171] = 154, - [172] = 159, - [173] = 153, - [174] = 160, - [175] = 157, - [176] = 153, - [177] = 155, - [178] = 160, - [179] = 155, - [180] = 142, - [181] = 159, - [182] = 159, - [183] = 159, - [184] = 157, - [185] = 155, - [186] = 157, - [187] = 155, - [188] = 160, - [189] = 160, - [190] = 153, - [191] = 153, - [192] = 153, - [193] = 160, - [194] = 157, - [195] = 157, - [196] = 157, - [197] = 155, - [198] = 154, - [199] = 153, - [200] = 159, - [201] = 159, - [202] = 157, - [203] = 154, - [204] = 159, - [205] = 154, - [206] = 155, - [207] = 160, - [208] = 154, - [209] = 160, - [210] = 159, - [211] = 155, - [212] = 212, - [213] = 213, - [214] = 157, - [215] = 215, - [216] = 216, - [217] = 217, - [218] = 218, - [219] = 219, - [220] = 220, - [221] = 221, - [222] = 222, + [159] = 153, + [160] = 153, + [161] = 153, + [162] = 153, + [163] = 153, + [164] = 164, + [165] = 165, + [166] = 166, + [167] = 164, + [168] = 164, + [169] = 166, + [170] = 170, + [171] = 166, + [172] = 172, + [173] = 173, + [174] = 170, + [175] = 165, + [176] = 172, + [177] = 166, + [178] = 164, + [179] = 166, + [180] = 153, + [181] = 173, + [182] = 166, + [183] = 173, + [184] = 172, + [185] = 164, + [186] = 170, + [187] = 165, + [188] = 172, + [189] = 170, + [190] = 164, + [191] = 165, + [192] = 170, + [193] = 165, + [194] = 172, + [195] = 166, + [196] = 173, + [197] = 165, + [198] = 173, + [199] = 170, + [200] = 172, + [201] = 172, + [202] = 165, + [203] = 173, + [204] = 172, + [205] = 173, + [206] = 166, + [207] = 170, + [208] = 165, + [209] = 166, + [210] = 165, + [211] = 170, + [212] = 166, + [213] = 172, + [214] = 164, + [215] = 164, + [216] = 165, + [217] = 170, + [218] = 164, + [219] = 170, + [220] = 173, + [221] = 164, + [222] = 172, [223] = 223, [224] = 224, [225] = 225, [226] = 226, [227] = 227, - [228] = 213, + [228] = 228, [229] = 229, - [230] = 230, + [230] = 173, [231] = 231, [232] = 232, [233] = 233, [234] = 234, - [235] = 235, + [235] = 224, [236] = 236, [237] = 237, - [238] = 157, + [238] = 238, [239] = 239, [240] = 240, [241] = 241, [242] = 242, - [243] = 223, - [244] = 226, - [245] = 240, - [246] = 212, - [247] = 212, - [248] = 215, - [249] = 216, - [250] = 217, - [251] = 218, - [252] = 219, - [253] = 220, - [254] = 221, - [255] = 222, - [256] = 215, - [257] = 224, - [258] = 225, - [259] = 216, - [260] = 227, - [261] = 213, - [262] = 229, - [263] = 230, - [264] = 231, - [265] = 232, - [266] = 233, - [267] = 234, - [268] = 235, - [269] = 236, - [270] = 237, - [271] = 217, - [272] = 239, - [273] = 218, - [274] = 241, - [275] = 225, - [276] = 240, - [277] = 226, - [278] = 223, - [279] = 242, - [280] = 223, - [281] = 226, - [282] = 242, - [283] = 219, - [284] = 241, - [285] = 240, - [286] = 212, - [287] = 220, - [288] = 221, - [289] = 215, - [290] = 216, - [291] = 217, - [292] = 218, - [293] = 219, - [294] = 220, - [295] = 221, - [296] = 239, - [297] = 222, - [298] = 224, - [299] = 222, - [300] = 225, - [301] = 224, + [243] = 243, + [244] = 244, + [245] = 245, + [246] = 246, + [247] = 173, + [248] = 248, + [249] = 249, + [250] = 233, + [251] = 245, + [252] = 223, + [253] = 253, + [254] = 223, + [255] = 253, + [256] = 256, + [257] = 257, + [258] = 258, + [259] = 225, + [260] = 226, + [261] = 227, + [262] = 228, + [263] = 229, + [264] = 256, + [265] = 231, + [266] = 232, + [267] = 257, + [268] = 234, + [269] = 224, + [270] = 236, + [271] = 237, + [272] = 238, + [273] = 239, + [274] = 240, + [275] = 241, + [276] = 242, + [277] = 243, + [278] = 244, + [279] = 258, + [280] = 246, + [281] = 225, + [282] = 248, + [283] = 226, + [284] = 257, + [285] = 256, + [286] = 227, + [287] = 249, + [288] = 233, + [289] = 245, + [290] = 228, + [291] = 253, + [292] = 223, + [293] = 245, + [294] = 223, + [295] = 253, + [296] = 229, + [297] = 231, + [298] = 233, + [299] = 256, + [300] = 257, + [301] = 258, [302] = 225, - [303] = 227, + [303] = 226, [304] = 227, - [305] = 213, - [306] = 229, - [307] = 230, - [308] = 231, - [309] = 232, - [310] = 233, - [311] = 234, - [312] = 235, - [313] = 236, - [314] = 237, - [315] = 213, - [316] = 239, - [317] = 229, - [318] = 241, - [319] = 237, - [320] = 236, - [321] = 235, - [322] = 234, - [323] = 242, - [324] = 223, - [325] = 226, - [326] = 233, - [327] = 232, - [328] = 231, - [329] = 240, - [330] = 230, - [331] = 231, - [332] = 230, - [333] = 215, - [334] = 216, - [335] = 217, - [336] = 218, - [337] = 219, - [338] = 220, - [339] = 221, - [340] = 232, - [341] = 229, - [342] = 213, - [343] = 222, - [344] = 154, - [345] = 224, - [346] = 225, - [347] = 159, - [348] = 227, - [349] = 213, - [350] = 229, - [351] = 230, - [352] = 231, - [353] = 232, - [354] = 233, - [355] = 234, - [356] = 235, - [357] = 236, - [358] = 237, - [359] = 233, - [360] = 239, - [361] = 153, - [362] = 241, - [363] = 227, - [364] = 234, - [365] = 240, - [366] = 160, - [367] = 242, - [368] = 223, - [369] = 226, - [370] = 224, - [371] = 155, - [372] = 222, - [373] = 240, - [374] = 212, - [375] = 241, - [376] = 221, - [377] = 215, - [378] = 216, - [379] = 217, - [380] = 218, - [381] = 219, - [382] = 220, - [383] = 221, - [384] = 220, - [385] = 219, - [386] = 218, - [387] = 222, - [388] = 239, - [389] = 224, - [390] = 225, - [391] = 237, - [392] = 227, - [393] = 213, - [394] = 229, - [395] = 230, - [396] = 231, - [397] = 232, - [398] = 233, - [399] = 234, - [400] = 235, - [401] = 236, - [402] = 237, - [403] = 236, - [404] = 239, - [405] = 235, - [406] = 241, - [407] = 217, - [408] = 216, - [409] = 215, - [410] = 234, - [411] = 242, - [412] = 223, - [413] = 226, - [414] = 212, - [415] = 233, - [416] = 157, - [417] = 240, - [418] = 212, - [419] = 232, - [420] = 226, - [421] = 215, - [422] = 216, - [423] = 217, - [424] = 218, - [425] = 219, - [426] = 220, - [427] = 221, - [428] = 223, - [429] = 242, - [430] = 231, - [431] = 222, - [432] = 230, - [433] = 224, - [434] = 225, - [435] = 229, - [436] = 227, - [437] = 212, - [438] = 229, - [439] = 230, - [440] = 231, - [441] = 232, - [442] = 233, - [443] = 234, - [444] = 235, - [445] = 236, - [446] = 237, - [447] = 213, - [448] = 239, - [449] = 227, - [450] = 241, - [451] = 225, - [452] = 224, - [453] = 222, - [454] = 241, - [455] = 242, - [456] = 223, - [457] = 226, - [458] = 235, - [459] = 239, - [460] = 240, - [461] = 212, - [462] = 236, - [463] = 221, - [464] = 215, - [465] = 216, - [466] = 217, - [467] = 218, - [468] = 219, - [469] = 220, - [470] = 221, - [471] = 220, - [472] = 219, - [473] = 218, - [474] = 222, - [475] = 217, - [476] = 224, - [477] = 225, - [478] = 216, - [479] = 227, - [480] = 213, - [481] = 229, - [482] = 230, - [483] = 231, - [484] = 232, - [485] = 233, - [486] = 234, - [487] = 235, - [488] = 236, - [489] = 237, - [490] = 215, - [491] = 239, - [492] = 237, - [493] = 241, - [494] = 242, - [495] = 212, - [496] = 240, - [497] = 226, - [498] = 242, - [499] = 223, - [500] = 500, - [501] = 240, - [502] = 502, - [503] = 503, - [504] = 502, - [505] = 505, - [506] = 500, - [507] = 507, - [508] = 503, - [509] = 500, - [510] = 507, - [511] = 507, - [512] = 500, - [513] = 502, - [514] = 505, - [515] = 505, - [516] = 503, - [517] = 502, - [518] = 502, - [519] = 507, - [520] = 505, - [521] = 500, - [522] = 507, - [523] = 503, - [524] = 503, - [525] = 502, - [526] = 507, - [527] = 502, - [528] = 505, - [529] = 500, - [530] = 507, - [531] = 500, - [532] = 503, - [533] = 505, - [534] = 502, - [535] = 503, - [536] = 536, - [537] = 507, - [538] = 505, - [539] = 242, - [540] = 223, - [541] = 226, - [542] = 500, - [543] = 500, - [544] = 212, - [545] = 505, - [546] = 507, - [547] = 215, - [548] = 216, - [549] = 217, - [550] = 218, - [551] = 219, - [552] = 220, - [553] = 221, - [554] = 503, - [555] = 555, - [556] = 222, - [557] = 502, - [558] = 224, - [559] = 225, - [560] = 505, - [561] = 227, - [562] = 213, - [563] = 229, - [564] = 230, - [565] = 231, - [566] = 232, - [567] = 233, - [568] = 234, - [569] = 235, - [570] = 236, - [571] = 237, - [572] = 503, - [573] = 239, - [574] = 500, - [575] = 241, - [576] = 502, - [577] = 555, - [578] = 505, - [579] = 507, - [580] = 503, - [581] = 536, - [582] = 505, - [583] = 500, - [584] = 507, - [585] = 503, - [586] = 502, - [587] = 587, - [588] = 587, - [589] = 589, - [590] = 587, - [591] = 587, - [592] = 592, - [593] = 589, - [594] = 589, - [595] = 587, - [596] = 589, - [597] = 587, - [598] = 589, - [599] = 589, - [600] = 589, - [601] = 587, - [602] = 589, - [603] = 589, - [604] = 589, - [605] = 587, - [606] = 587, - [607] = 587, - [608] = 587, - [609] = 589, + [305] = 228, + [306] = 249, + [307] = 232, + [308] = 248, + [309] = 229, + [310] = 234, + [311] = 231, + [312] = 232, + [313] = 224, + [314] = 234, + [315] = 224, + [316] = 236, + [317] = 237, + [318] = 238, + [319] = 239, + [320] = 240, + [321] = 241, + [322] = 242, + [323] = 243, + [324] = 244, + [325] = 236, + [326] = 246, + [327] = 237, + [328] = 248, + [329] = 238, + [330] = 246, + [331] = 164, + [332] = 166, + [333] = 249, + [334] = 233, + [335] = 245, + [336] = 244, + [337] = 243, + [338] = 242, + [339] = 241, + [340] = 239, + [341] = 253, + [342] = 240, + [343] = 172, + [344] = 240, + [345] = 256, + [346] = 257, + [347] = 258, + [348] = 225, + [349] = 226, + [350] = 227, + [351] = 228, + [352] = 239, + [353] = 238, + [354] = 237, + [355] = 229, + [356] = 241, + [357] = 231, + [358] = 232, + [359] = 170, + [360] = 234, + [361] = 224, + [362] = 236, + [363] = 237, + [364] = 238, + [365] = 239, + [366] = 240, + [367] = 241, + [368] = 242, + [369] = 243, + [370] = 244, + [371] = 165, + [372] = 246, + [373] = 248, + [374] = 248, + [375] = 246, + [376] = 236, + [377] = 224, + [378] = 234, + [379] = 249, + [380] = 233, + [381] = 245, + [382] = 245, + [383] = 232, + [384] = 244, + [385] = 231, + [386] = 223, + [387] = 253, + [388] = 243, + [389] = 242, + [390] = 241, + [391] = 256, + [392] = 257, + [393] = 258, + [394] = 225, + [395] = 226, + [396] = 227, + [397] = 228, + [398] = 229, + [399] = 228, + [400] = 227, + [401] = 229, + [402] = 240, + [403] = 231, + [404] = 232, + [405] = 239, + [406] = 234, + [407] = 224, + [408] = 236, + [409] = 237, + [410] = 238, + [411] = 239, + [412] = 240, + [413] = 241, + [414] = 242, + [415] = 243, + [416] = 244, + [417] = 238, + [418] = 246, + [419] = 237, + [420] = 248, + [421] = 226, + [422] = 225, + [423] = 258, + [424] = 257, + [425] = 249, + [426] = 233, + [427] = 245, + [428] = 256, + [429] = 236, + [430] = 224, + [431] = 253, + [432] = 223, + [433] = 253, + [434] = 234, + [435] = 232, + [436] = 223, + [437] = 256, + [438] = 257, + [439] = 258, + [440] = 225, + [441] = 226, + [442] = 227, + [443] = 228, + [444] = 173, + [445] = 231, + [446] = 233, + [447] = 229, + [448] = 229, + [449] = 231, + [450] = 232, + [451] = 242, + [452] = 234, + [453] = 258, + [454] = 236, + [455] = 237, + [456] = 238, + [457] = 239, + [458] = 240, + [459] = 241, + [460] = 242, + [461] = 243, + [462] = 244, + [463] = 243, + [464] = 246, + [465] = 228, + [466] = 248, + [467] = 249, + [468] = 227, + [469] = 226, + [470] = 225, + [471] = 249, + [472] = 233, + [473] = 245, + [474] = 258, + [475] = 248, + [476] = 257, + [477] = 223, + [478] = 253, + [479] = 256, + [480] = 244, + [481] = 246, + [482] = 256, + [483] = 257, + [484] = 258, + [485] = 225, + [486] = 226, + [487] = 227, + [488] = 228, + [489] = 253, + [490] = 223, + [491] = 245, + [492] = 229, + [493] = 233, + [494] = 231, + [495] = 232, + [496] = 249, + [497] = 234, + [498] = 224, + [499] = 236, + [500] = 237, + [501] = 238, + [502] = 239, + [503] = 240, + [504] = 241, + [505] = 242, + [506] = 243, + [507] = 244, + [508] = 249, + [509] = 246, + [510] = 248, + [511] = 511, + [512] = 249, + [513] = 513, + [514] = 514, + [515] = 515, + [516] = 514, + [517] = 513, + [518] = 511, + [519] = 519, + [520] = 520, + [521] = 519, + [522] = 520, + [523] = 519, + [524] = 520, + [525] = 520, + [526] = 519, + [527] = 511, + [528] = 513, + [529] = 514, + [530] = 515, + [531] = 511, + [532] = 511, + [533] = 515, + [534] = 514, + [535] = 513, + [536] = 513, + [537] = 515, + [538] = 520, + [539] = 514, + [540] = 519, + [541] = 519, + [542] = 520, + [543] = 511, + [544] = 515, + [545] = 514, + [546] = 513, + [547] = 513, + [548] = 520, + [549] = 519, + [550] = 550, + [551] = 515, + [552] = 552, + [553] = 511, + [554] = 511, + [555] = 515, + [556] = 514, + [557] = 513, + [558] = 520, + [559] = 248, + [560] = 233, + [561] = 245, + [562] = 519, + [563] = 514, + [564] = 223, + [565] = 253, + [566] = 520, + [567] = 246, + [568] = 515, + [569] = 256, + [570] = 257, + [571] = 258, + [572] = 225, + [573] = 226, + [574] = 227, + [575] = 228, + [576] = 519, + [577] = 511, + [578] = 229, + [579] = 513, + [580] = 231, + [581] = 232, + [582] = 520, + [583] = 234, + [584] = 224, + [585] = 236, + [586] = 237, + [587] = 238, + [588] = 239, + [589] = 240, + [590] = 241, + [591] = 242, + [592] = 243, + [593] = 244, + [594] = 550, + [595] = 519, + [596] = 514, + [597] = 515, + [598] = 511, + [599] = 552, + [600] = 515, + [601] = 514, + [602] = 513, + [603] = 515, + [604] = 511, + [605] = 519, + [606] = 520, + [607] = 514, + [608] = 513, + [609] = 609, [610] = 610, - [611] = 611, - [612] = 612, - [613] = 613, - [614] = 614, - [615] = 615, - [616] = 616, - [617] = 617, - [618] = 618, - [619] = 619, - [620] = 620, - [621] = 619, - [622] = 622, - [623] = 620, - [624] = 619, - [625] = 620, - [626] = 620, - [627] = 619, - [628] = 622, - [629] = 619, - [630] = 619, - [631] = 619, - [632] = 622, - [633] = 620, - [634] = 622, - [635] = 622, - [636] = 620, - [637] = 619, - [638] = 620, - [639] = 622, - [640] = 620, - [641] = 622, - [642] = 620, - [643] = 620, - [644] = 619, - [645] = 622, - [646] = 622, - [647] = 619, - [648] = 622, - [649] = 622, - [650] = 619, - [651] = 620, - [652] = 652, - [653] = 653, - [654] = 653, - [655] = 655, - [656] = 655, - [657] = 657, - [658] = 658, - [659] = 659, - [660] = 660, - [661] = 661, - [662] = 662, - [663] = 663, - [664] = 664, - [665] = 665, - [666] = 666, - [667] = 667, - [668] = 662, - [669] = 662, - [670] = 670, - [671] = 671, - [672] = 672, - [673] = 673, + [611] = 610, + [612] = 609, + [613] = 610, + [614] = 610, + [615] = 609, + [616] = 609, + [617] = 610, + [618] = 610, + [619] = 609, + [620] = 610, + [621] = 609, + [622] = 610, + [623] = 609, + [624] = 610, + [625] = 609, + [626] = 610, + [627] = 609, + [628] = 609, + [629] = 610, + [630] = 609, + [631] = 631, + [632] = 632, + [633] = 633, + [634] = 634, + [635] = 635, + [636] = 636, + [637] = 637, + [638] = 638, + [639] = 639, + [640] = 640, + [641] = 641, + [642] = 641, + [643] = 643, + [644] = 641, + [645] = 641, + [646] = 646, + [647] = 643, + [648] = 646, + [649] = 646, + [650] = 643, + [651] = 641, + [652] = 643, + [653] = 641, + [654] = 643, + [655] = 641, + [656] = 646, + [657] = 641, + [658] = 646, + [659] = 643, + [660] = 646, + [661] = 641, + [662] = 643, + [663] = 646, + [664] = 643, + [665] = 646, + [666] = 646, + [667] = 641, + [668] = 641, + [669] = 643, + [670] = 646, + [671] = 643, + [672] = 643, + [673] = 646, [674] = 674, - [675] = 675, - [676] = 661, - [677] = 667, - [678] = 678, + [675] = 674, + [676] = 676, + [677] = 677, + [678] = 676, [679] = 679, - [680] = 663, + [680] = 680, [681] = 681, - [682] = 679, - [683] = 681, - [684] = 670, - [685] = 671, - [686] = 672, - [687] = 673, - [688] = 674, - [689] = 675, - [690] = 665, - [691] = 661, - [692] = 667, - [693] = 678, - [694] = 663, - [695] = 661, - [696] = 679, - [697] = 666, - [698] = 664, - [699] = 665, - [700] = 666, - [701] = 675, - [702] = 681, - [703] = 679, - [704] = 681, - [705] = 679, - [706] = 681, - [707] = 679, - [708] = 681, - [709] = 679, + [682] = 682, + [683] = 683, + [684] = 684, + [685] = 685, + [686] = 686, + [687] = 687, + [688] = 688, + [689] = 684, + [690] = 690, + [691] = 691, + [692] = 685, + [693] = 693, + [694] = 683, + [695] = 695, + [696] = 696, + [697] = 686, + [698] = 698, + [699] = 699, + [700] = 700, + [701] = 687, + [702] = 688, + [703] = 690, + [704] = 691, + [705] = 693, + [706] = 683, + [707] = 695, + [708] = 708, + [709] = 696, [710] = 710, - [711] = 664, - [712] = 681, - [713] = 674, - [714] = 679, - [715] = 673, - [716] = 670, - [717] = 662, - [718] = 670, - [719] = 671, - [720] = 672, - [721] = 673, - [722] = 674, - [723] = 675, - [724] = 671, - [725] = 661, - [726] = 667, - [727] = 678, - [728] = 663, - [729] = 672, - [730] = 671, - [731] = 672, - [732] = 664, - [733] = 665, - [734] = 666, - [735] = 670, - [736] = 673, - [737] = 674, - [738] = 675, - [739] = 681, - [740] = 679, - [741] = 661, - [742] = 667, - [743] = 678, - [744] = 663, - [745] = 664, - [746] = 665, - [747] = 662, - [748] = 681, - [749] = 666, - [750] = 679, - [751] = 662, - [752] = 670, - [753] = 671, - [754] = 672, - [755] = 673, - [756] = 674, - [757] = 675, - [758] = 681, - [759] = 661, - [760] = 667, - [761] = 678, - [762] = 663, - [763] = 679, - [764] = 678, - [765] = 670, - [766] = 664, - [767] = 665, - [768] = 666, - [769] = 681, - [770] = 671, - [771] = 672, - [772] = 673, - [773] = 666, - [774] = 665, - [775] = 664, - [776] = 674, - [777] = 675, - [778] = 663, - [779] = 678, - [780] = 667, - [781] = 675, - [782] = 674, - [783] = 673, - [784] = 672, - [785] = 662, - [786] = 670, - [787] = 671, - [788] = 672, - [789] = 673, - [790] = 674, - [791] = 675, - [792] = 671, - [793] = 661, - [794] = 667, - [795] = 678, - [796] = 663, - [797] = 670, - [798] = 662, - [799] = 662, - [800] = 664, - [801] = 665, - [802] = 666, - [803] = 661, - [804] = 667, - [805] = 678, - [806] = 666, - [807] = 665, - [808] = 664, - [809] = 663, - [810] = 663, - [811] = 678, - [812] = 667, - [813] = 661, - [814] = 675, - [815] = 674, - [816] = 673, - [817] = 672, - [818] = 671, - [819] = 662, - [820] = 670, - [821] = 671, - [822] = 672, - [823] = 673, - [824] = 674, - [825] = 675, - [826] = 670, - [827] = 661, - [828] = 667, - [829] = 678, - [830] = 663, - [831] = 662, - [832] = 664, - [833] = 665, - [834] = 664, - [835] = 665, - [836] = 666, - [837] = 666, - [838] = 838, - [839] = 839, - [840] = 840, - [841] = 841, - [842] = 842, - [843] = 843, - [844] = 844, - [845] = 845, - [846] = 846, - [847] = 847, - [848] = 848, - [849] = 849, - [850] = 850, - [851] = 838, - [852] = 852, - [853] = 839, - [854] = 854, - [855] = 852, - [856] = 840, - [857] = 850, - [858] = 841, - [859] = 848, - [860] = 854, - [861] = 847, - [862] = 846, - [863] = 845, - [864] = 844, - [865] = 849, - [866] = 843, - [867] = 849, - [868] = 842, - [869] = 841, - [870] = 840, - [871] = 839, - [872] = 838, - [873] = 839, - [874] = 840, - [875] = 841, - [876] = 842, - [877] = 843, - [878] = 844, - [879] = 845, - [880] = 846, - [881] = 847, - [882] = 848, - [883] = 838, - [884] = 850, - [885] = 842, - [886] = 852, - [887] = 849, - [888] = 844, - [889] = 854, - [890] = 852, - [891] = 845, - [892] = 850, - [893] = 846, - [894] = 854, - [895] = 854, - [896] = 848, - [897] = 847, - [898] = 846, - [899] = 845, - [900] = 844, - [901] = 849, - [902] = 843, - [903] = 842, - [904] = 841, - [905] = 840, - [906] = 838, - [907] = 839, - [908] = 840, - [909] = 841, - [910] = 842, - [911] = 843, - [912] = 844, - [913] = 845, - [914] = 846, - [915] = 847, - [916] = 848, - [917] = 839, - [918] = 850, - [919] = 838, - [920] = 852, - [921] = 921, - [922] = 922, - [923] = 923, - [924] = 843, - [925] = 849, - [926] = 848, - [927] = 852, - [928] = 850, - [929] = 848, - [930] = 847, - [931] = 846, - [932] = 850, - [933] = 845, - [934] = 934, - [935] = 935, - [936] = 936, - [937] = 937, - [938] = 921, - [939] = 922, - [940] = 923, - [941] = 854, - [942] = 844, - [943] = 843, - [944] = 842, - [945] = 841, - [946] = 840, - [947] = 839, - [948] = 838, - [949] = 852, - [950] = 852, - [951] = 935, - [952] = 936, - [953] = 937, - [954] = 921, - [955] = 922, - [956] = 923, - [957] = 850, - [958] = 848, - [959] = 847, - [960] = 849, - [961] = 846, - [962] = 845, - [963] = 844, - [964] = 843, - [965] = 842, - [966] = 854, - [967] = 935, - [968] = 936, - [969] = 937, - [970] = 921, - [971] = 922, - [972] = 923, - [973] = 841, - [974] = 840, - [975] = 839, - [976] = 838, - [977] = 849, - [978] = 854, - [979] = 852, - [980] = 980, - [981] = 850, - [982] = 982, - [983] = 935, - [984] = 936, - [985] = 937, - [986] = 921, - [987] = 922, - [988] = 923, - [989] = 848, - [990] = 614, - [991] = 847, - [992] = 617, - [993] = 852, - [994] = 850, - [995] = 995, - [996] = 846, - [997] = 845, - [998] = 998, - [999] = 935, - [1000] = 936, - [1001] = 937, - [1002] = 921, - [1003] = 922, - [1004] = 923, - [1005] = 844, - [1006] = 937, - [1007] = 936, - [1008] = 1008, - [1009] = 935, - [1010] = 848, - [1011] = 847, - [1012] = 1012, - [1013] = 843, - [1014] = 846, - [1015] = 935, - [1016] = 936, - [1017] = 937, - [1018] = 921, - [1019] = 922, - [1020] = 923, - [1021] = 842, - [1022] = 845, - [1023] = 844, - [1024] = 843, - [1025] = 842, - [1026] = 841, - [1027] = 840, - [1028] = 839, - [1029] = 841, - [1030] = 934, - [1031] = 935, - [1032] = 936, - [1033] = 937, - [1034] = 921, - [1035] = 922, - [1036] = 923, - [1037] = 840, - [1038] = 838, - [1039] = 1039, - [1040] = 839, - [1041] = 838, - [1042] = 923, - [1043] = 922, - [1044] = 849, - [1045] = 854, - [1046] = 854, - [1047] = 935, - [1048] = 936, - [1049] = 937, - [1050] = 921, - [1051] = 922, - [1052] = 923, - [1053] = 852, - [1054] = 921, - [1055] = 849, - [1056] = 1056, - [1057] = 1057, - [1058] = 1058, - [1059] = 1059, - [1060] = 1060, - [1061] = 850, - [1062] = 1062, - [1063] = 935, - [1064] = 936, - [1065] = 937, - [1066] = 921, - [1067] = 922, - [1068] = 923, - [1069] = 847, - [1070] = 1070, - [1071] = 1071, - [1072] = 1072, - [1073] = 1073, - [1074] = 1074, - [1075] = 1075, - [1076] = 848, - [1077] = 847, - [1078] = 846, - [1079] = 935, - [1080] = 936, - [1081] = 937, - [1082] = 1073, - [1083] = 1072, - [1084] = 1071, - [1085] = 1070, - [1086] = 1062, - [1087] = 1060, - [1088] = 1059, - [1089] = 1058, - [1090] = 1039, - [1091] = 845, - [1092] = 1073, - [1093] = 1072, - [1094] = 1071, - [1095] = 1070, - [1096] = 1062, - [1097] = 1060, - [1098] = 1059, - [1099] = 1058, - [1100] = 1039, - [1101] = 844, - [1102] = 1073, - [1103] = 1072, - [1104] = 1071, - [1105] = 1070, - [1106] = 1062, - [1107] = 1060, - [1108] = 1059, - [1109] = 1058, - [1110] = 1039, - [1111] = 854, - [1112] = 1073, - [1113] = 1072, - [1114] = 1071, - [1115] = 1070, - [1116] = 1062, - [1117] = 1060, - [1118] = 1059, - [1119] = 1058, - [1120] = 1039, - [1121] = 843, - [1122] = 1073, - [1123] = 1072, - [1124] = 1071, - [1125] = 1070, - [1126] = 1062, - [1127] = 1060, - [1128] = 1059, - [1129] = 1058, - [1130] = 1039, - [1131] = 842, - [1132] = 1073, - [1133] = 1072, - [1134] = 1071, - [1135] = 1070, - [1136] = 1062, - [1137] = 1060, - [1138] = 1059, - [1139] = 1058, - [1140] = 1039, - [1141] = 841, - [1142] = 1073, - [1143] = 1072, - [1144] = 1071, - [1145] = 1070, - [1146] = 1062, - [1147] = 1060, - [1148] = 1059, - [1149] = 1058, - [1150] = 1039, - [1151] = 840, - [1152] = 1073, - [1153] = 1072, - [1154] = 1071, - [1155] = 1070, - [1156] = 1062, - [1157] = 1060, - [1158] = 1059, - [1159] = 1058, - [1160] = 1039, - [1161] = 839, - [1162] = 1073, - [1163] = 1072, - [1164] = 1071, - [1165] = 1070, - [1166] = 1062, - [1167] = 1060, - [1168] = 1059, - [1169] = 1058, - [1170] = 1039, - [1171] = 838, - [1172] = 1073, - [1173] = 1072, - [1174] = 1071, - [1175] = 1070, - [1176] = 1062, - [1177] = 1060, - [1178] = 1059, - [1179] = 1058, - [1180] = 1039, - [1181] = 849, - [1182] = 1056, - [1183] = 1056, - [1184] = 1056, - [1185] = 1056, - [1186] = 1056, - [1187] = 1056, - [1188] = 1056, - [1189] = 1056, - [1190] = 1056, - [1191] = 1056, + [711] = 708, + [712] = 710, + [713] = 699, + [714] = 684, + [715] = 685, + [716] = 686, + [717] = 687, + [718] = 688, + [719] = 690, + [720] = 691, + [721] = 708, + [722] = 693, + [723] = 683, + [724] = 695, + [725] = 696, + [726] = 700, + [727] = 698, + [728] = 699, + [729] = 700, + [730] = 710, + [731] = 708, + [732] = 710, + [733] = 708, + [734] = 710, + [735] = 708, + [736] = 710, + [737] = 708, + [738] = 738, + [739] = 698, + [740] = 710, + [741] = 708, + [742] = 685, + [743] = 684, + [744] = 685, + [745] = 686, + [746] = 687, + [747] = 688, + [748] = 690, + [749] = 691, + [750] = 686, + [751] = 693, + [752] = 683, + [753] = 695, + [754] = 696, + [755] = 687, + [756] = 698, + [757] = 699, + [758] = 700, + [759] = 688, + [760] = 690, + [761] = 691, + [762] = 710, + [763] = 708, + [764] = 693, + [765] = 695, + [766] = 696, + [767] = 698, + [768] = 699, + [769] = 700, + [770] = 710, + [771] = 708, + [772] = 710, + [773] = 684, + [774] = 685, + [775] = 686, + [776] = 687, + [777] = 688, + [778] = 690, + [779] = 691, + [780] = 708, + [781] = 693, + [782] = 683, + [783] = 695, + [784] = 696, + [785] = 684, + [786] = 684, + [787] = 686, + [788] = 698, + [789] = 699, + [790] = 700, + [791] = 710, + [792] = 687, + [793] = 688, + [794] = 690, + [795] = 700, + [796] = 699, + [797] = 698, + [798] = 685, + [799] = 696, + [800] = 695, + [801] = 683, + [802] = 693, + [803] = 691, + [804] = 690, + [805] = 688, + [806] = 687, + [807] = 684, + [808] = 685, + [809] = 686, + [810] = 687, + [811] = 688, + [812] = 690, + [813] = 691, + [814] = 686, + [815] = 693, + [816] = 683, + [817] = 695, + [818] = 696, + [819] = 685, + [820] = 691, + [821] = 684, + [822] = 698, + [823] = 699, + [824] = 700, + [825] = 693, + [826] = 683, + [827] = 695, + [828] = 700, + [829] = 699, + [830] = 698, + [831] = 696, + [832] = 696, + [833] = 695, + [834] = 683, + [835] = 693, + [836] = 691, + [837] = 690, + [838] = 688, + [839] = 687, + [840] = 686, + [841] = 684, + [842] = 685, + [843] = 686, + [844] = 687, + [845] = 688, + [846] = 690, + [847] = 691, + [848] = 685, + [849] = 693, + [850] = 683, + [851] = 695, + [852] = 696, + [853] = 684, + [854] = 698, + [855] = 699, + [856] = 698, + [857] = 699, + [858] = 700, + [859] = 700, + [860] = 860, + [861] = 861, + [862] = 862, + [863] = 863, + [864] = 864, + [865] = 865, + [866] = 866, + [867] = 867, + [868] = 868, + [869] = 869, + [870] = 870, + [871] = 871, + [872] = 872, + [873] = 860, + [874] = 874, + [875] = 861, + [876] = 876, + [877] = 874, + [878] = 862, + [879] = 872, + [880] = 863, + [881] = 870, + [882] = 876, + [883] = 869, + [884] = 868, + [885] = 867, + [886] = 866, + [887] = 871, + [888] = 865, + [889] = 871, + [890] = 864, + [891] = 863, + [892] = 862, + [893] = 861, + [894] = 860, + [895] = 861, + [896] = 862, + [897] = 863, + [898] = 864, + [899] = 865, + [900] = 866, + [901] = 867, + [902] = 868, + [903] = 869, + [904] = 870, + [905] = 860, + [906] = 872, + [907] = 864, + [908] = 874, + [909] = 871, + [910] = 866, + [911] = 876, + [912] = 874, + [913] = 867, + [914] = 872, + [915] = 868, + [916] = 876, + [917] = 870, + [918] = 869, + [919] = 868, + [920] = 867, + [921] = 876, + [922] = 866, + [923] = 871, + [924] = 865, + [925] = 864, + [926] = 863, + [927] = 862, + [928] = 860, + [929] = 861, + [930] = 862, + [931] = 863, + [932] = 864, + [933] = 865, + [934] = 866, + [935] = 867, + [936] = 868, + [937] = 869, + [938] = 870, + [939] = 861, + [940] = 872, + [941] = 860, + [942] = 874, + [943] = 943, + [944] = 944, + [945] = 945, + [946] = 869, + [947] = 871, + [948] = 870, + [949] = 872, + [950] = 874, + [951] = 872, + [952] = 870, + [953] = 869, + [954] = 876, + [955] = 868, + [956] = 956, + [957] = 957, + [958] = 958, + [959] = 959, + [960] = 943, + [961] = 944, + [962] = 945, + [963] = 874, + [964] = 867, + [965] = 866, + [966] = 865, + [967] = 864, + [968] = 863, + [969] = 862, + [970] = 861, + [971] = 865, + [972] = 860, + [973] = 957, + [974] = 958, + [975] = 959, + [976] = 943, + [977] = 944, + [978] = 945, + [979] = 872, + [980] = 870, + [981] = 869, + [982] = 868, + [983] = 871, + [984] = 867, + [985] = 866, + [986] = 865, + [987] = 864, + [988] = 876, + [989] = 957, + [990] = 958, + [991] = 959, + [992] = 943, + [993] = 944, + [994] = 945, + [995] = 863, + [996] = 862, + [997] = 861, + [998] = 860, + [999] = 871, + [1000] = 876, + [1001] = 874, + [1002] = 1002, + [1003] = 872, + [1004] = 1004, + [1005] = 957, + [1006] = 958, + [1007] = 959, + [1008] = 943, + [1009] = 944, + [1010] = 945, + [1011] = 870, + [1012] = 635, + [1013] = 869, + [1014] = 636, + [1015] = 874, + [1016] = 872, + [1017] = 1017, + [1018] = 868, + [1019] = 867, + [1020] = 1020, + [1021] = 957, + [1022] = 958, + [1023] = 959, + [1024] = 943, + [1025] = 944, + [1026] = 945, + [1027] = 866, + [1028] = 959, + [1029] = 958, + [1030] = 1030, + [1031] = 957, + [1032] = 870, + [1033] = 869, + [1034] = 1034, + [1035] = 865, + [1036] = 868, + [1037] = 957, + [1038] = 958, + [1039] = 959, + [1040] = 943, + [1041] = 944, + [1042] = 945, + [1043] = 864, + [1044] = 867, + [1045] = 866, + [1046] = 865, + [1047] = 864, + [1048] = 863, + [1049] = 862, + [1050] = 861, + [1051] = 863, + [1052] = 956, + [1053] = 957, + [1054] = 958, + [1055] = 959, + [1056] = 943, + [1057] = 944, + [1058] = 945, + [1059] = 862, + [1060] = 860, + [1061] = 1061, + [1062] = 861, + [1063] = 860, + [1064] = 945, + [1065] = 944, + [1066] = 871, + [1067] = 876, + [1068] = 874, + [1069] = 957, + [1070] = 958, + [1071] = 959, + [1072] = 943, + [1073] = 944, + [1074] = 945, + [1075] = 872, + [1076] = 943, + [1077] = 871, + [1078] = 1078, + [1079] = 1079, + [1080] = 1080, + [1081] = 1081, + [1082] = 1082, + [1083] = 870, + [1084] = 1084, + [1085] = 957, + [1086] = 958, + [1087] = 959, + [1088] = 943, + [1089] = 944, + [1090] = 945, + [1091] = 869, + [1092] = 1092, + [1093] = 1093, + [1094] = 1094, + [1095] = 1095, + [1096] = 1096, + [1097] = 1097, + [1098] = 868, + [1099] = 867, + [1100] = 866, + [1101] = 957, + [1102] = 958, + [1103] = 959, + [1104] = 1095, + [1105] = 1094, + [1106] = 1093, + [1107] = 1092, + [1108] = 1084, + [1109] = 1082, + [1110] = 1081, + [1111] = 1080, + [1112] = 1061, + [1113] = 865, + [1114] = 1095, + [1115] = 1094, + [1116] = 1093, + [1117] = 1092, + [1118] = 1084, + [1119] = 1082, + [1120] = 1081, + [1121] = 1080, + [1122] = 1061, + [1123] = 864, + [1124] = 1095, + [1125] = 1094, + [1126] = 1093, + [1127] = 1092, + [1128] = 1084, + [1129] = 1082, + [1130] = 1081, + [1131] = 1080, + [1132] = 1061, + [1133] = 876, + [1134] = 1095, + [1135] = 1094, + [1136] = 1093, + [1137] = 1092, + [1138] = 1084, + [1139] = 1082, + [1140] = 1081, + [1141] = 1080, + [1142] = 1061, + [1143] = 863, + [1144] = 1095, + [1145] = 1094, + [1146] = 1093, + [1147] = 1092, + [1148] = 1084, + [1149] = 1082, + [1150] = 1081, + [1151] = 1080, + [1152] = 1061, + [1153] = 862, + [1154] = 1095, + [1155] = 1094, + [1156] = 1093, + [1157] = 1092, + [1158] = 1084, + [1159] = 1082, + [1160] = 1081, + [1161] = 1080, + [1162] = 1061, + [1163] = 861, + [1164] = 1095, + [1165] = 1094, + [1166] = 1093, + [1167] = 1092, + [1168] = 1084, + [1169] = 1082, + [1170] = 1081, + [1171] = 1080, + [1172] = 1061, + [1173] = 860, + [1174] = 1095, + [1175] = 1094, + [1176] = 1093, + [1177] = 1092, + [1178] = 1084, + [1179] = 1082, + [1180] = 1081, + [1181] = 1080, + [1182] = 1061, + [1183] = 871, + [1184] = 1095, + [1185] = 1094, + [1186] = 1093, + [1187] = 1092, + [1188] = 1084, + [1189] = 1082, + [1190] = 1081, + [1191] = 1080, + [1192] = 1061, + [1193] = 876, + [1194] = 1095, + [1195] = 1094, + [1196] = 1093, + [1197] = 1092, + [1198] = 1084, + [1199] = 1082, + [1200] = 1081, + [1201] = 1080, + [1202] = 1061, + [1203] = 874, + [1204] = 1078, + [1205] = 1078, + [1206] = 1078, + [1207] = 1078, + [1208] = 1078, + [1209] = 1078, + [1210] = 1078, + [1211] = 1078, + [1212] = 1078, + [1213] = 1078, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -2877,70 +2899,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (eof) ADVANCE(41); if (lookahead == '\n') ADVANCE(153); if (lookahead == '\r') SKIP(35) - if (lookahead == '!') ADVANCE(100); - if (lookahead == '"') ADVANCE(101); - if (lookahead == '$') ADVANCE(136); - if (lookahead == '\'') ADVANCE(101); - if (lookahead == '(') ADVANCE(128); - if (lookahead == '*') ADVANCE(49); - if (lookahead == '-') ADVANCE(79); - if (lookahead == '.') ADVANCE(81); - if (lookahead == ':') ADVANCE(102); - if (lookahead == '<') ADVANCE(78); - if (lookahead == '>') ADVANCE(154); - if (lookahead == 'F') ADVANCE(88); - if (lookahead == 'I') ADVANCE(90); - if (lookahead == 'N') ADVANCE(91); - if (lookahead == 'T') ADVANCE(92); - if (lookahead == 'W') ADVANCE(87); - if (lookahead == 'X') ADVANCE(99); - if (lookahead == '[') ADVANCE(115); - if (lookahead == '\\') ADVANCE(65); - if (lookahead == '^') ADVANCE(53); - if (lookahead == '_') ADVANCE(45); - if (lookahead == '{') ADVANCE(121); - if (lookahead == '~') ADVANCE(57); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(152); - if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(103); - END_STATE(); - case 35: - if (eof) ADVANCE(41); - if (lookahead == '\n') ADVANCE(153); - if (lookahead == '\r') SKIP(35) - if (lookahead == '!') ADVANCE(100); - if (lookahead == '"') ADVANCE(101); - if (lookahead == '$') ADVANCE(136); - if (lookahead == '\'') ADVANCE(101); - if (lookahead == '(') ADVANCE(128); - if (lookahead == '*') ADVANCE(49); - if (lookahead == '-') ADVANCE(79); - if (lookahead == '.') ADVANCE(81); - if (lookahead == ':') ADVANCE(102); - if (lookahead == '<') ADVANCE(78); - if (lookahead == '>') ADVANCE(154); - if (lookahead == 'F') ADVANCE(88); - if (lookahead == 'I') ADVANCE(90); - if (lookahead == 'N') ADVANCE(91); - if (lookahead == 'T') ADVANCE(92); - if (lookahead == 'W') ADVANCE(87); - if (lookahead == 'X') ADVANCE(99); - if (lookahead == '[') ADVANCE(115); - if (lookahead == '\\') ADVANCE(65); - if (lookahead == '^') ADVANCE(53); - if (lookahead == '_') ADVANCE(45); - if (lookahead == '{') ADVANCE(121); - if (lookahead == '~') ADVANCE(57); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(103); - END_STATE(); - case 36: - if (eof) ADVANCE(41); - if (lookahead == '\n') ADVANCE(153); - if (lookahead == '\r') SKIP(37) if (lookahead == '!') ADVANCE(163); if (lookahead == '"') ADVANCE(164); if (lookahead == '$') ADVANCE(135); @@ -2951,6 +2909,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '.') ADVANCE(156); if (lookahead == ':') ADVANCE(166); if (lookahead == '<') ADVANCE(77); + if (lookahead == '>') ADVANCE(104); if (lookahead == 'F') ADVANCE(157); if (lookahead == 'I') ADVANCE(159); if (lookahead == 'N') ADVANCE(160); @@ -2969,10 +2928,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != 11 && lookahead != '\f') ADVANCE(154); END_STATE(); - case 37: + case 35: if (eof) ADVANCE(41); if (lookahead == '\n') ADVANCE(153); - if (lookahead == '\r') SKIP(37) + if (lookahead == '\r') SKIP(35) if (lookahead == '!') ADVANCE(163); if (lookahead == '"') ADVANCE(164); if (lookahead == '$') ADVANCE(135); @@ -2983,6 +2942,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '.') ADVANCE(156); if (lookahead == ':') ADVANCE(166); if (lookahead == '<') ADVANCE(77); + if (lookahead == '>') ADVANCE(104); if (lookahead == 'F') ADVANCE(157); if (lookahead == 'I') ADVANCE(159); if (lookahead == 'N') ADVANCE(160); @@ -2999,7 +2959,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '\t' || '\f' < lookahead) && lookahead != ' ') ADVANCE(154); END_STATE(); - case 38: + case 36: if (eof) ADVANCE(41); if (lookahead == '\n') ADVANCE(153); if (lookahead == '\r') SKIP(37) @@ -3023,7 +2983,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\\') ADVANCE(64); if (lookahead == '^') ADVANCE(52); if (lookahead == '_') ADVANCE(44); - if (lookahead == '{') ADVANCE(119); + if (lookahead == '{') ADVANCE(120); if (lookahead == '~') ADVANCE(56); if (lookahead == '\t' || lookahead == ' ') ADVANCE(152); @@ -3031,10 +2991,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != 11 && lookahead != '\f') ADVANCE(154); END_STATE(); - case 39: + case 37: if (eof) ADVANCE(41); if (lookahead == '\n') ADVANCE(153); - if (lookahead == '\r') SKIP(40) + if (lookahead == '\r') SKIP(37) if (lookahead == '!') ADVANCE(163); if (lookahead == '"') ADVANCE(164); if (lookahead == '$') ADVANCE(135); @@ -3045,7 +3005,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '.') ADVANCE(156); if (lookahead == ':') ADVANCE(166); if (lookahead == '<') ADVANCE(77); - if (lookahead == '>') ADVANCE(104); if (lookahead == 'F') ADVANCE(157); if (lookahead == 'I') ADVANCE(159); if (lookahead == 'N') ADVANCE(160); @@ -3058,16 +3017,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(44); if (lookahead == '{') ADVANCE(120); if (lookahead == '~') ADVANCE(56); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(152); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(154); + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(154); END_STATE(); - case 40: + case 38: if (eof) ADVANCE(41); if (lookahead == '\n') ADVANCE(153); - if (lookahead == '\r') SKIP(40) + if (lookahead == '\r') SKIP(37) if (lookahead == '!') ADVANCE(163); if (lookahead == '"') ADVANCE(164); if (lookahead == '$') ADVANCE(135); @@ -3078,7 +3035,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '.') ADVANCE(156); if (lookahead == ':') ADVANCE(166); if (lookahead == '<') ADVANCE(77); - if (lookahead == '>') ADVANCE(104); if (lookahead == 'F') ADVANCE(157); if (lookahead == 'I') ADVANCE(159); if (lookahead == 'N') ADVANCE(160); @@ -3089,11 +3045,77 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\\') ADVANCE(64); if (lookahead == '^') ADVANCE(52); if (lookahead == '_') ADVANCE(44); - if (lookahead == '{') ADVANCE(120); + if (lookahead == '{') ADVANCE(119); if (lookahead == '~') ADVANCE(56); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(152); + if (lookahead != 0 && + lookahead != 11 && + lookahead != '\f') ADVANCE(154); + END_STATE(); + case 39: + if (eof) ADVANCE(41); + if (lookahead == '\n') ADVANCE(153); + if (lookahead == '\r') SKIP(40) + if (lookahead == '!') ADVANCE(100); + if (lookahead == '"') ADVANCE(101); + if (lookahead == '$') ADVANCE(136); + if (lookahead == '\'') ADVANCE(101); + if (lookahead == '(') ADVANCE(128); + if (lookahead == '*') ADVANCE(49); + if (lookahead == '-') ADVANCE(79); + if (lookahead == '.') ADVANCE(81); + if (lookahead == ':') ADVANCE(102); + if (lookahead == '<') ADVANCE(78); + if (lookahead == '>') ADVANCE(154); + if (lookahead == 'F') ADVANCE(88); + if (lookahead == 'I') ADVANCE(90); + if (lookahead == 'N') ADVANCE(91); + if (lookahead == 'T') ADVANCE(92); + if (lookahead == 'W') ADVANCE(87); + if (lookahead == 'X') ADVANCE(99); + if (lookahead == '[') ADVANCE(115); + if (lookahead == '\\') ADVANCE(65); + if (lookahead == '^') ADVANCE(53); + if (lookahead == '_') ADVANCE(45); + if (lookahead == '{') ADVANCE(121); + if (lookahead == '~') ADVANCE(57); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(152); + if (lookahead != 0 && + lookahead != 11 && + lookahead != '\f') ADVANCE(103); + END_STATE(); + case 40: + if (eof) ADVANCE(41); + if (lookahead == '\n') ADVANCE(153); + if (lookahead == '\r') SKIP(40) + if (lookahead == '!') ADVANCE(100); + if (lookahead == '"') ADVANCE(101); + if (lookahead == '$') ADVANCE(136); + if (lookahead == '\'') ADVANCE(101); + if (lookahead == '(') ADVANCE(128); + if (lookahead == '*') ADVANCE(49); + if (lookahead == '-') ADVANCE(79); + if (lookahead == '.') ADVANCE(81); + if (lookahead == ':') ADVANCE(102); + if (lookahead == '<') ADVANCE(78); + if (lookahead == '>') ADVANCE(154); + if (lookahead == 'F') ADVANCE(88); + if (lookahead == 'I') ADVANCE(90); + if (lookahead == 'N') ADVANCE(91); + if (lookahead == 'T') ADVANCE(92); + if (lookahead == 'W') ADVANCE(87); + if (lookahead == 'X') ADVANCE(99); + if (lookahead == '[') ADVANCE(115); + if (lookahead == '\\') ADVANCE(65); + if (lookahead == '^') ADVANCE(53); + if (lookahead == '_') ADVANCE(45); + if (lookahead == '{') ADVANCE(121); + if (lookahead == '~') ADVANCE(57); if (lookahead != 0 && (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(154); + lookahead != ' ') ADVANCE(103); END_STATE(); case 41: ACCEPT_TOKEN(ts_builtin_sym_end); @@ -3911,16 +3933,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3] = {.lex_state = 32, .external_lex_state = 2}, [4] = {.lex_state = 32, .external_lex_state = 2}, [5] = {.lex_state = 32, .external_lex_state = 2}, - [6] = {.lex_state = 32, .external_lex_state = 2}, - [7] = {.lex_state = 32, .external_lex_state = 4}, + [6] = {.lex_state = 32, .external_lex_state = 4}, + [7] = {.lex_state = 32, .external_lex_state = 2}, [8] = {.lex_state = 32, .external_lex_state = 2}, [9] = {.lex_state = 32, .external_lex_state = 2}, [10] = {.lex_state = 32, .external_lex_state = 2}, [11] = {.lex_state = 32, .external_lex_state = 2}, [12] = {.lex_state = 32, .external_lex_state = 2}, - [13] = {.lex_state = 32, .external_lex_state = 2}, - [14] = {.lex_state = 32, .external_lex_state = 5}, - [15] = {.lex_state = 32, .external_lex_state = 6}, + [13] = {.lex_state = 32, .external_lex_state = 5}, + [14] = {.lex_state = 32, .external_lex_state = 4}, + [15] = {.lex_state = 32, .external_lex_state = 2}, [16] = {.lex_state = 32, .external_lex_state = 2}, [17] = {.lex_state = 32, .external_lex_state = 2}, [18] = {.lex_state = 32, .external_lex_state = 2}, @@ -3930,20 +3952,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [22] = {.lex_state = 32, .external_lex_state = 6}, [23] = {.lex_state = 32, .external_lex_state = 2}, [24] = {.lex_state = 32, .external_lex_state = 2}, - [25] = {.lex_state = 32, .external_lex_state = 2}, + [25] = {.lex_state = 32, .external_lex_state = 7}, [26] = {.lex_state = 32, .external_lex_state = 2}, [27] = {.lex_state = 32, .external_lex_state = 2}, [28] = {.lex_state = 32, .external_lex_state = 2}, [29] = {.lex_state = 32, .external_lex_state = 2}, - [30] = {.lex_state = 32, .external_lex_state = 2}, + [30] = {.lex_state = 32, .external_lex_state = 8}, [31] = {.lex_state = 32, .external_lex_state = 2}, [32] = {.lex_state = 32, .external_lex_state = 2}, [33] = {.lex_state = 32, .external_lex_state = 2}, [34] = {.lex_state = 32, .external_lex_state = 2}, [35] = {.lex_state = 32, .external_lex_state = 2}, [36] = {.lex_state = 32, .external_lex_state = 2}, - [37] = {.lex_state = 32, .external_lex_state = 7}, - [38] = {.lex_state = 32, .external_lex_state = 2}, + [37] = {.lex_state = 32, .external_lex_state = 2}, + [38] = {.lex_state = 32, .external_lex_state = 6}, [39] = {.lex_state = 32, .external_lex_state = 2}, [40] = {.lex_state = 32, .external_lex_state = 2}, [41] = {.lex_state = 32, .external_lex_state = 2}, @@ -3951,10 +3973,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [43] = {.lex_state = 32, .external_lex_state = 2}, [44] = {.lex_state = 32, .external_lex_state = 2}, [45] = {.lex_state = 32, .external_lex_state = 2}, - [46] = {.lex_state = 32, .external_lex_state = 2}, - [47] = {.lex_state = 32, .external_lex_state = 5}, + [46] = {.lex_state = 1, .external_lex_state = 2}, + [47] = {.lex_state = 32, .external_lex_state = 2}, [48] = {.lex_state = 32, .external_lex_state = 2}, - [49] = {.lex_state = 32, .external_lex_state = 2}, + [49] = {.lex_state = 32, .external_lex_state = 8}, [50] = {.lex_state = 32, .external_lex_state = 2}, [51] = {.lex_state = 32, .external_lex_state = 2}, [52] = {.lex_state = 32, .external_lex_state = 2}, @@ -3963,18 +3985,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [55] = {.lex_state = 32, .external_lex_state = 2}, [56] = {.lex_state = 32, .external_lex_state = 2}, [57] = {.lex_state = 32, .external_lex_state = 2}, - [58] = {.lex_state = 32, .external_lex_state = 2}, + [58] = {.lex_state = 32, .external_lex_state = 3}, [59] = {.lex_state = 32, .external_lex_state = 2}, [60] = {.lex_state = 32, .external_lex_state = 2}, [61] = {.lex_state = 32, .external_lex_state = 2}, [62] = {.lex_state = 32, .external_lex_state = 2}, [63] = {.lex_state = 32, .external_lex_state = 2}, - [64] = {.lex_state = 32, .external_lex_state = 2}, - [65] = {.lex_state = 32, .external_lex_state = 8}, + [64] = {.lex_state = 32, .external_lex_state = 5}, + [65] = {.lex_state = 32, .external_lex_state = 2}, [66] = {.lex_state = 32, .external_lex_state = 2}, [67] = {.lex_state = 32, .external_lex_state = 2}, [68] = {.lex_state = 32, .external_lex_state = 2}, - [69] = {.lex_state = 32, .external_lex_state = 7}, + [69] = {.lex_state = 32, .external_lex_state = 2}, [70] = {.lex_state = 32, .external_lex_state = 2}, [71] = {.lex_state = 1, .external_lex_state = 2}, [72] = {.lex_state = 32, .external_lex_state = 2}, @@ -3986,7 +4008,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [78] = {.lex_state = 32, .external_lex_state = 2}, [79] = {.lex_state = 32, .external_lex_state = 2}, [80] = {.lex_state = 32, .external_lex_state = 2}, - [81] = {.lex_state = 32, .external_lex_state = 8}, + [81] = {.lex_state = 32, .external_lex_state = 2}, [82] = {.lex_state = 32, .external_lex_state = 2}, [83] = {.lex_state = 32, .external_lex_state = 2}, [84] = {.lex_state = 32, .external_lex_state = 2}, @@ -4011,11 +4033,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [103] = {.lex_state = 32, .external_lex_state = 2}, [104] = {.lex_state = 32, .external_lex_state = 2}, [105] = {.lex_state = 32, .external_lex_state = 2}, - [106] = {.lex_state = 32, .external_lex_state = 4}, - [107] = {.lex_state = 32, .external_lex_state = 3}, + [106] = {.lex_state = 32, .external_lex_state = 2}, + [107] = {.lex_state = 32, .external_lex_state = 2}, [108] = {.lex_state = 32, .external_lex_state = 2}, [109] = {.lex_state = 32, .external_lex_state = 2}, - [110] = {.lex_state = 1, .external_lex_state = 2}, + [110] = {.lex_state = 32, .external_lex_state = 7}, [111] = {.lex_state = 32, .external_lex_state = 2}, [112] = {.lex_state = 32, .external_lex_state = 2}, [113] = {.lex_state = 32, .external_lex_state = 2}, @@ -4026,367 +4048,367 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [118] = {.lex_state = 32, .external_lex_state = 2}, [119] = {.lex_state = 32, .external_lex_state = 2}, [120] = {.lex_state = 32, .external_lex_state = 2}, - [121] = {.lex_state = 36, .external_lex_state = 2}, - [122] = {.lex_state = 36, .external_lex_state = 6}, - [123] = {.lex_state = 36, .external_lex_state = 7}, - [124] = {.lex_state = 36, .external_lex_state = 3}, - [125] = {.lex_state = 36, .external_lex_state = 9}, - [126] = {.lex_state = 36, .external_lex_state = 4}, - [127] = {.lex_state = 36, .external_lex_state = 10}, - [128] = {.lex_state = 8, .external_lex_state = 2}, - [129] = {.lex_state = 36, .external_lex_state = 8}, - [130] = {.lex_state = 36, .external_lex_state = 5}, - [131] = {.lex_state = 36, .external_lex_state = 7}, - [132] = {.lex_state = 8, .external_lex_state = 2}, - [133] = {.lex_state = 36, .external_lex_state = 8}, - [134] = {.lex_state = 36, .external_lex_state = 2}, - [135] = {.lex_state = 36, .external_lex_state = 2}, - [136] = {.lex_state = 36, .external_lex_state = 5}, - [137] = {.lex_state = 36, .external_lex_state = 6}, - [138] = {.lex_state = 36, .external_lex_state = 10}, - [139] = {.lex_state = 36, .external_lex_state = 4}, - [140] = {.lex_state = 36, .external_lex_state = 3}, - [141] = {.lex_state = 36, .external_lex_state = 9}, - [142] = {.lex_state = 38, .external_lex_state = 5}, - [143] = {.lex_state = 36, .external_lex_state = 2}, - [144] = {.lex_state = 38, .external_lex_state = 3}, - [145] = {.lex_state = 38, .external_lex_state = 7}, - [146] = {.lex_state = 9, .external_lex_state = 2}, - [147] = {.lex_state = 38, .external_lex_state = 6}, - [148] = {.lex_state = 38, .external_lex_state = 8}, - [149] = {.lex_state = 38, .external_lex_state = 9}, - [150] = {.lex_state = 38, .external_lex_state = 4}, - [151] = {.lex_state = 38, .external_lex_state = 10}, - [152] = {.lex_state = 38, .external_lex_state = 2}, - [153] = {.lex_state = 34, .external_lex_state = 3}, - [154] = {.lex_state = 36, .external_lex_state = 6}, - [155] = {.lex_state = 36, .external_lex_state = 11}, - [156] = {.lex_state = 34, .external_lex_state = 4}, - [157] = {.lex_state = 8, .external_lex_state = 2}, - [158] = {.lex_state = 34, .external_lex_state = 8}, - [159] = {.lex_state = 39, .external_lex_state = 9}, - [160] = {.lex_state = 36, .external_lex_state = 12}, - [161] = {.lex_state = 36, .external_lex_state = 12}, - [162] = {.lex_state = 36, .external_lex_state = 7}, - [163] = {.lex_state = 39, .external_lex_state = 7}, - [164] = {.lex_state = 36, .external_lex_state = 9}, - [165] = {.lex_state = 34, .external_lex_state = 7}, - [166] = {.lex_state = 36, .external_lex_state = 13}, - [167] = {.lex_state = 36, .external_lex_state = 14}, - [168] = {.lex_state = 36, .external_lex_state = 14}, - [169] = {.lex_state = 36, .external_lex_state = 8}, - [170] = {.lex_state = 36, .external_lex_state = 2}, - [171] = {.lex_state = 36, .external_lex_state = 5}, - [172] = {.lex_state = 39, .external_lex_state = 5}, - [173] = {.lex_state = 34, .external_lex_state = 9}, - [174] = {.lex_state = 36, .external_lex_state = 15}, - [175] = {.lex_state = 36, .external_lex_state = 7}, - [176] = {.lex_state = 34, .external_lex_state = 5}, - [177] = {.lex_state = 36, .external_lex_state = 15}, - [178] = {.lex_state = 36, .external_lex_state = 16}, - [179] = {.lex_state = 36, .external_lex_state = 16}, + [121] = {.lex_state = 8, .external_lex_state = 2}, + [122] = {.lex_state = 36, .external_lex_state = 5}, + [123] = {.lex_state = 36, .external_lex_state = 3}, + [124] = {.lex_state = 36, .external_lex_state = 6}, + [125] = {.lex_state = 36, .external_lex_state = 2}, + [126] = {.lex_state = 36, .external_lex_state = 8}, + [127] = {.lex_state = 36, .external_lex_state = 9}, + [128] = {.lex_state = 36, .external_lex_state = 7}, + [129] = {.lex_state = 36, .external_lex_state = 4}, + [130] = {.lex_state = 36, .external_lex_state = 10}, + [131] = {.lex_state = 36, .external_lex_state = 10}, + [132] = {.lex_state = 36, .external_lex_state = 8}, + [133] = {.lex_state = 36, .external_lex_state = 5}, + [134] = {.lex_state = 36, .external_lex_state = 4}, + [135] = {.lex_state = 8, .external_lex_state = 2}, + [136] = {.lex_state = 36, .external_lex_state = 4}, + [137] = {.lex_state = 36, .external_lex_state = 10}, + [138] = {.lex_state = 8, .external_lex_state = 2}, + [139] = {.lex_state = 36, .external_lex_state = 3}, + [140] = {.lex_state = 36, .external_lex_state = 5}, + [141] = {.lex_state = 36, .external_lex_state = 2}, + [142] = {.lex_state = 36, .external_lex_state = 8}, + [143] = {.lex_state = 36, .external_lex_state = 9}, + [144] = {.lex_state = 36, .external_lex_state = 7}, + [145] = {.lex_state = 36, .external_lex_state = 6}, + [146] = {.lex_state = 36, .external_lex_state = 7}, + [147] = {.lex_state = 36, .external_lex_state = 6}, + [148] = {.lex_state = 36, .external_lex_state = 3}, + [149] = {.lex_state = 36, .external_lex_state = 9}, + [150] = {.lex_state = 36, .external_lex_state = 2}, + [151] = {.lex_state = 36, .external_lex_state = 2}, + [152] = {.lex_state = 36, .external_lex_state = 2}, + [153] = {.lex_state = 9, .external_lex_state = 2}, + [154] = {.lex_state = 38, .external_lex_state = 3}, + [155] = {.lex_state = 38, .external_lex_state = 10}, + [156] = {.lex_state = 38, .external_lex_state = 7}, + [157] = {.lex_state = 36, .external_lex_state = 2}, + [158] = {.lex_state = 38, .external_lex_state = 8}, + [159] = {.lex_state = 38, .external_lex_state = 4}, + [160] = {.lex_state = 38, .external_lex_state = 5}, + [161] = {.lex_state = 38, .external_lex_state = 6}, + [162] = {.lex_state = 38, .external_lex_state = 9}, + [163] = {.lex_state = 38, .external_lex_state = 2}, + [164] = {.lex_state = 36, .external_lex_state = 8}, + [165] = {.lex_state = 36, .external_lex_state = 11}, + [166] = {.lex_state = 34, .external_lex_state = 2}, + [167] = {.lex_state = 36, .external_lex_state = 6}, + [168] = {.lex_state = 36, .external_lex_state = 9}, + [169] = {.lex_state = 34, .external_lex_state = 6}, + [170] = {.lex_state = 36, .external_lex_state = 12}, + [171] = {.lex_state = 34, .external_lex_state = 3}, + [172] = {.lex_state = 39, .external_lex_state = 6}, + [173] = {.lex_state = 36, .external_lex_state = 8}, + [174] = {.lex_state = 36, .external_lex_state = 13}, + [175] = {.lex_state = 36, .external_lex_state = 13}, + [176] = {.lex_state = 39, .external_lex_state = 8}, + [177] = {.lex_state = 34, .external_lex_state = 9}, + [178] = {.lex_state = 36, .external_lex_state = 7}, + [179] = {.lex_state = 34, .external_lex_state = 7}, [180] = {.lex_state = 38, .external_lex_state = 2}, - [181] = {.lex_state = 39, .external_lex_state = 2}, - [182] = {.lex_state = 39, .external_lex_state = 8}, - [183] = {.lex_state = 39, .external_lex_state = 6}, - [184] = {.lex_state = 36, .external_lex_state = 8}, - [185] = {.lex_state = 8, .external_lex_state = 11}, - [186] = {.lex_state = 36, .external_lex_state = 5}, - [187] = {.lex_state = 36, .external_lex_state = 17}, - [188] = {.lex_state = 36, .external_lex_state = 17}, - [189] = {.lex_state = 8, .external_lex_state = 11}, - [190] = {.lex_state = 34, .external_lex_state = 10}, - [191] = {.lex_state = 34, .external_lex_state = 6}, - [192] = {.lex_state = 3, .external_lex_state = 2}, - [193] = {.lex_state = 36, .external_lex_state = 18}, - [194] = {.lex_state = 36, .external_lex_state = 4}, - [195] = {.lex_state = 36, .external_lex_state = 3}, + [181] = {.lex_state = 8, .external_lex_state = 2}, + [182] = {.lex_state = 34, .external_lex_state = 8}, + [183] = {.lex_state = 36, .external_lex_state = 6}, + [184] = {.lex_state = 39, .external_lex_state = 7}, + [185] = {.lex_state = 36, .external_lex_state = 2}, + [186] = {.lex_state = 36, .external_lex_state = 14}, + [187] = {.lex_state = 36, .external_lex_state = 14}, + [188] = {.lex_state = 39, .external_lex_state = 9}, + [189] = {.lex_state = 36, .external_lex_state = 11}, + [190] = {.lex_state = 36, .external_lex_state = 4}, + [191] = {.lex_state = 36, .external_lex_state = 15}, + [192] = {.lex_state = 36, .external_lex_state = 15}, + [193] = {.lex_state = 36, .external_lex_state = 12}, + [194] = {.lex_state = 39, .external_lex_state = 10}, + [195] = {.lex_state = 34, .external_lex_state = 4}, [196] = {.lex_state = 36, .external_lex_state = 2}, - [197] = {.lex_state = 36, .external_lex_state = 18}, - [198] = {.lex_state = 36, .external_lex_state = 4}, - [199] = {.lex_state = 34, .external_lex_state = 2}, - [200] = {.lex_state = 39, .external_lex_state = 10}, - [201] = {.lex_state = 39, .external_lex_state = 4}, - [202] = {.lex_state = 36, .external_lex_state = 6}, - [203] = {.lex_state = 36, .external_lex_state = 3}, - [204] = {.lex_state = 11, .external_lex_state = 2}, - [205] = {.lex_state = 8, .external_lex_state = 2}, - [206] = {.lex_state = 36, .external_lex_state = 19}, - [207] = {.lex_state = 36, .external_lex_state = 19}, - [208] = {.lex_state = 36, .external_lex_state = 10}, - [209] = {.lex_state = 36, .external_lex_state = 11}, - [210] = {.lex_state = 39, .external_lex_state = 3}, - [211] = {.lex_state = 36, .external_lex_state = 13}, - [212] = {.lex_state = 36, .external_lex_state = 5}, - [213] = {.lex_state = 36, .external_lex_state = 8}, - [214] = {.lex_state = 36, .external_lex_state = 2}, - [215] = {.lex_state = 36, .external_lex_state = 10}, - [216] = {.lex_state = 36, .external_lex_state = 10}, - [217] = {.lex_state = 36, .external_lex_state = 10}, - [218] = {.lex_state = 36, .external_lex_state = 10}, - [219] = {.lex_state = 36, .external_lex_state = 10}, - [220] = {.lex_state = 36, .external_lex_state = 10}, - [221] = {.lex_state = 36, .external_lex_state = 10}, - [222] = {.lex_state = 36, .external_lex_state = 10}, - [223] = {.lex_state = 36, .external_lex_state = 2}, - [224] = {.lex_state = 36, .external_lex_state = 10}, + [197] = {.lex_state = 8, .external_lex_state = 16}, + [198] = {.lex_state = 36, .external_lex_state = 5}, + [199] = {.lex_state = 8, .external_lex_state = 16}, + [200] = {.lex_state = 3, .external_lex_state = 2}, + [201] = {.lex_state = 39, .external_lex_state = 2}, + [202] = {.lex_state = 36, .external_lex_state = 16}, + [203] = {.lex_state = 36, .external_lex_state = 7}, + [204] = {.lex_state = 39, .external_lex_state = 4}, + [205] = {.lex_state = 36, .external_lex_state = 3}, + [206] = {.lex_state = 34, .external_lex_state = 10}, + [207] = {.lex_state = 36, .external_lex_state = 17}, + [208] = {.lex_state = 36, .external_lex_state = 17}, + [209] = {.lex_state = 34, .external_lex_state = 5}, + [210] = {.lex_state = 36, .external_lex_state = 18}, + [211] = {.lex_state = 36, .external_lex_state = 18}, + [212] = {.lex_state = 11, .external_lex_state = 2}, + [213] = {.lex_state = 39, .external_lex_state = 5}, + [214] = {.lex_state = 36, .external_lex_state = 10}, + [215] = {.lex_state = 8, .external_lex_state = 2}, + [216] = {.lex_state = 36, .external_lex_state = 19}, + [217] = {.lex_state = 36, .external_lex_state = 19}, + [218] = {.lex_state = 36, .external_lex_state = 5}, + [219] = {.lex_state = 36, .external_lex_state = 16}, + [220] = {.lex_state = 36, .external_lex_state = 4}, + [221] = {.lex_state = 36, .external_lex_state = 3}, + [222] = {.lex_state = 39, .external_lex_state = 3}, + [223] = {.lex_state = 36, .external_lex_state = 7}, + [224] = {.lex_state = 36, .external_lex_state = 8}, [225] = {.lex_state = 36, .external_lex_state = 10}, - [226] = {.lex_state = 36, .external_lex_state = 2}, + [226] = {.lex_state = 36, .external_lex_state = 10}, [227] = {.lex_state = 36, .external_lex_state = 10}, [228] = {.lex_state = 36, .external_lex_state = 10}, [229] = {.lex_state = 36, .external_lex_state = 10}, - [230] = {.lex_state = 36, .external_lex_state = 10}, + [230] = {.lex_state = 36, .external_lex_state = 2}, [231] = {.lex_state = 36, .external_lex_state = 10}, [232] = {.lex_state = 36, .external_lex_state = 10}, - [233] = {.lex_state = 36, .external_lex_state = 10}, + [233] = {.lex_state = 36, .external_lex_state = 2}, [234] = {.lex_state = 36, .external_lex_state = 10}, [235] = {.lex_state = 36, .external_lex_state = 10}, [236] = {.lex_state = 36, .external_lex_state = 10}, [237] = {.lex_state = 36, .external_lex_state = 10}, - [238] = {.lex_state = 36, .external_lex_state = 2}, + [238] = {.lex_state = 36, .external_lex_state = 10}, [239] = {.lex_state = 36, .external_lex_state = 10}, - [240] = {.lex_state = 36, .external_lex_state = 2}, + [240] = {.lex_state = 36, .external_lex_state = 10}, [241] = {.lex_state = 36, .external_lex_state = 10}, - [242] = {.lex_state = 36, .external_lex_state = 4}, - [243] = {.lex_state = 36, .external_lex_state = 4}, - [244] = {.lex_state = 36, .external_lex_state = 4}, - [245] = {.lex_state = 36, .external_lex_state = 4}, - [246] = {.lex_state = 36, .external_lex_state = 4}, + [242] = {.lex_state = 36, .external_lex_state = 10}, + [243] = {.lex_state = 36, .external_lex_state = 10}, + [244] = {.lex_state = 36, .external_lex_state = 10}, + [245] = {.lex_state = 36, .external_lex_state = 2}, + [246] = {.lex_state = 36, .external_lex_state = 10}, [247] = {.lex_state = 36, .external_lex_state = 2}, - [248] = {.lex_state = 36, .external_lex_state = 4}, - [249] = {.lex_state = 36, .external_lex_state = 4}, - [250] = {.lex_state = 36, .external_lex_state = 4}, - [251] = {.lex_state = 36, .external_lex_state = 4}, - [252] = {.lex_state = 36, .external_lex_state = 4}, - [253] = {.lex_state = 36, .external_lex_state = 4}, - [254] = {.lex_state = 36, .external_lex_state = 4}, - [255] = {.lex_state = 36, .external_lex_state = 4}, - [256] = {.lex_state = 36, .external_lex_state = 2}, - [257] = {.lex_state = 36, .external_lex_state = 4}, - [258] = {.lex_state = 36, .external_lex_state = 4}, - [259] = {.lex_state = 36, .external_lex_state = 2}, - [260] = {.lex_state = 36, .external_lex_state = 4}, - [261] = {.lex_state = 36, .external_lex_state = 4}, - [262] = {.lex_state = 36, .external_lex_state = 4}, - [263] = {.lex_state = 36, .external_lex_state = 4}, - [264] = {.lex_state = 36, .external_lex_state = 4}, - [265] = {.lex_state = 36, .external_lex_state = 4}, - [266] = {.lex_state = 36, .external_lex_state = 4}, - [267] = {.lex_state = 36, .external_lex_state = 4}, - [268] = {.lex_state = 36, .external_lex_state = 4}, - [269] = {.lex_state = 36, .external_lex_state = 4}, - [270] = {.lex_state = 36, .external_lex_state = 4}, - [271] = {.lex_state = 36, .external_lex_state = 2}, - [272] = {.lex_state = 36, .external_lex_state = 4}, - [273] = {.lex_state = 36, .external_lex_state = 2}, - [274] = {.lex_state = 36, .external_lex_state = 4}, - [275] = {.lex_state = 36, .external_lex_state = 9}, - [276] = {.lex_state = 36, .external_lex_state = 10}, - [277] = {.lex_state = 36, .external_lex_state = 10}, - [278] = {.lex_state = 36, .external_lex_state = 10}, - [279] = {.lex_state = 36, .external_lex_state = 6}, - [280] = {.lex_state = 36, .external_lex_state = 6}, - [281] = {.lex_state = 36, .external_lex_state = 6}, - [282] = {.lex_state = 36, .external_lex_state = 10}, + [248] = {.lex_state = 36, .external_lex_state = 10}, + [249] = {.lex_state = 36, .external_lex_state = 5}, + [250] = {.lex_state = 36, .external_lex_state = 5}, + [251] = {.lex_state = 36, .external_lex_state = 5}, + [252] = {.lex_state = 36, .external_lex_state = 5}, + [253] = {.lex_state = 36, .external_lex_state = 5}, + [254] = {.lex_state = 36, .external_lex_state = 2}, + [255] = {.lex_state = 36, .external_lex_state = 2}, + [256] = {.lex_state = 36, .external_lex_state = 5}, + [257] = {.lex_state = 36, .external_lex_state = 5}, + [258] = {.lex_state = 36, .external_lex_state = 5}, + [259] = {.lex_state = 36, .external_lex_state = 5}, + [260] = {.lex_state = 36, .external_lex_state = 5}, + [261] = {.lex_state = 36, .external_lex_state = 5}, + [262] = {.lex_state = 36, .external_lex_state = 5}, + [263] = {.lex_state = 36, .external_lex_state = 5}, + [264] = {.lex_state = 36, .external_lex_state = 2}, + [265] = {.lex_state = 36, .external_lex_state = 5}, + [266] = {.lex_state = 36, .external_lex_state = 5}, + [267] = {.lex_state = 36, .external_lex_state = 2}, + [268] = {.lex_state = 36, .external_lex_state = 5}, + [269] = {.lex_state = 36, .external_lex_state = 5}, + [270] = {.lex_state = 36, .external_lex_state = 5}, + [271] = {.lex_state = 36, .external_lex_state = 5}, + [272] = {.lex_state = 36, .external_lex_state = 5}, + [273] = {.lex_state = 36, .external_lex_state = 5}, + [274] = {.lex_state = 36, .external_lex_state = 5}, + [275] = {.lex_state = 36, .external_lex_state = 5}, + [276] = {.lex_state = 36, .external_lex_state = 5}, + [277] = {.lex_state = 36, .external_lex_state = 5}, + [278] = {.lex_state = 36, .external_lex_state = 5}, + [279] = {.lex_state = 36, .external_lex_state = 2}, + [280] = {.lex_state = 36, .external_lex_state = 5}, + [281] = {.lex_state = 36, .external_lex_state = 2}, + [282] = {.lex_state = 36, .external_lex_state = 5}, [283] = {.lex_state = 36, .external_lex_state = 2}, - [284] = {.lex_state = 36, .external_lex_state = 9}, - [285] = {.lex_state = 36, .external_lex_state = 6}, - [286] = {.lex_state = 36, .external_lex_state = 6}, - [287] = {.lex_state = 36, .external_lex_state = 2}, - [288] = {.lex_state = 36, .external_lex_state = 2}, - [289] = {.lex_state = 36, .external_lex_state = 6}, - [290] = {.lex_state = 36, .external_lex_state = 6}, - [291] = {.lex_state = 36, .external_lex_state = 6}, - [292] = {.lex_state = 36, .external_lex_state = 6}, - [293] = {.lex_state = 36, .external_lex_state = 6}, - [294] = {.lex_state = 36, .external_lex_state = 6}, - [295] = {.lex_state = 36, .external_lex_state = 6}, - [296] = {.lex_state = 36, .external_lex_state = 9}, + [284] = {.lex_state = 36, .external_lex_state = 10}, + [285] = {.lex_state = 36, .external_lex_state = 10}, + [286] = {.lex_state = 36, .external_lex_state = 2}, + [287] = {.lex_state = 36, .external_lex_state = 4}, + [288] = {.lex_state = 36, .external_lex_state = 4}, + [289] = {.lex_state = 36, .external_lex_state = 4}, + [290] = {.lex_state = 36, .external_lex_state = 2}, + [291] = {.lex_state = 36, .external_lex_state = 10}, + [292] = {.lex_state = 36, .external_lex_state = 10}, + [293] = {.lex_state = 36, .external_lex_state = 10}, + [294] = {.lex_state = 36, .external_lex_state = 4}, + [295] = {.lex_state = 36, .external_lex_state = 4}, + [296] = {.lex_state = 36, .external_lex_state = 2}, [297] = {.lex_state = 36, .external_lex_state = 2}, - [298] = {.lex_state = 36, .external_lex_state = 2}, - [299] = {.lex_state = 36, .external_lex_state = 6}, - [300] = {.lex_state = 36, .external_lex_state = 2}, - [301] = {.lex_state = 36, .external_lex_state = 6}, - [302] = {.lex_state = 36, .external_lex_state = 6}, - [303] = {.lex_state = 36, .external_lex_state = 2}, - [304] = {.lex_state = 36, .external_lex_state = 6}, - [305] = {.lex_state = 36, .external_lex_state = 6}, - [306] = {.lex_state = 36, .external_lex_state = 6}, - [307] = {.lex_state = 36, .external_lex_state = 6}, - [308] = {.lex_state = 36, .external_lex_state = 6}, - [309] = {.lex_state = 36, .external_lex_state = 6}, - [310] = {.lex_state = 36, .external_lex_state = 6}, - [311] = {.lex_state = 36, .external_lex_state = 6}, - [312] = {.lex_state = 36, .external_lex_state = 6}, - [313] = {.lex_state = 36, .external_lex_state = 6}, - [314] = {.lex_state = 36, .external_lex_state = 6}, - [315] = {.lex_state = 36, .external_lex_state = 2}, - [316] = {.lex_state = 36, .external_lex_state = 6}, - [317] = {.lex_state = 36, .external_lex_state = 2}, - [318] = {.lex_state = 36, .external_lex_state = 6}, - [319] = {.lex_state = 36, .external_lex_state = 9}, - [320] = {.lex_state = 36, .external_lex_state = 9}, - [321] = {.lex_state = 36, .external_lex_state = 9}, - [322] = {.lex_state = 36, .external_lex_state = 9}, - [323] = {.lex_state = 36, .external_lex_state = 5}, - [324] = {.lex_state = 36, .external_lex_state = 5}, - [325] = {.lex_state = 36, .external_lex_state = 5}, - [326] = {.lex_state = 36, .external_lex_state = 9}, - [327] = {.lex_state = 36, .external_lex_state = 9}, - [328] = {.lex_state = 36, .external_lex_state = 9}, - [329] = {.lex_state = 36, .external_lex_state = 5}, - [330] = {.lex_state = 36, .external_lex_state = 2}, + [298] = {.lex_state = 36, .external_lex_state = 10}, + [299] = {.lex_state = 36, .external_lex_state = 4}, + [300] = {.lex_state = 36, .external_lex_state = 4}, + [301] = {.lex_state = 36, .external_lex_state = 4}, + [302] = {.lex_state = 36, .external_lex_state = 4}, + [303] = {.lex_state = 36, .external_lex_state = 4}, + [304] = {.lex_state = 36, .external_lex_state = 4}, + [305] = {.lex_state = 36, .external_lex_state = 4}, + [306] = {.lex_state = 36, .external_lex_state = 10}, + [307] = {.lex_state = 36, .external_lex_state = 2}, + [308] = {.lex_state = 36, .external_lex_state = 9}, + [309] = {.lex_state = 36, .external_lex_state = 4}, + [310] = {.lex_state = 36, .external_lex_state = 2}, + [311] = {.lex_state = 36, .external_lex_state = 4}, + [312] = {.lex_state = 36, .external_lex_state = 4}, + [313] = {.lex_state = 36, .external_lex_state = 2}, + [314] = {.lex_state = 36, .external_lex_state = 4}, + [315] = {.lex_state = 36, .external_lex_state = 4}, + [316] = {.lex_state = 36, .external_lex_state = 4}, + [317] = {.lex_state = 36, .external_lex_state = 4}, + [318] = {.lex_state = 36, .external_lex_state = 4}, + [319] = {.lex_state = 36, .external_lex_state = 4}, + [320] = {.lex_state = 36, .external_lex_state = 4}, + [321] = {.lex_state = 36, .external_lex_state = 4}, + [322] = {.lex_state = 36, .external_lex_state = 4}, + [323] = {.lex_state = 36, .external_lex_state = 4}, + [324] = {.lex_state = 36, .external_lex_state = 4}, + [325] = {.lex_state = 36, .external_lex_state = 2}, + [326] = {.lex_state = 36, .external_lex_state = 4}, + [327] = {.lex_state = 36, .external_lex_state = 2}, + [328] = {.lex_state = 36, .external_lex_state = 4}, + [329] = {.lex_state = 36, .external_lex_state = 2}, + [330] = {.lex_state = 36, .external_lex_state = 9}, [331] = {.lex_state = 36, .external_lex_state = 2}, - [332] = {.lex_state = 36, .external_lex_state = 9}, - [333] = {.lex_state = 36, .external_lex_state = 5}, - [334] = {.lex_state = 36, .external_lex_state = 5}, - [335] = {.lex_state = 36, .external_lex_state = 5}, - [336] = {.lex_state = 36, .external_lex_state = 5}, - [337] = {.lex_state = 36, .external_lex_state = 5}, - [338] = {.lex_state = 36, .external_lex_state = 5}, - [339] = {.lex_state = 36, .external_lex_state = 5}, + [332] = {.lex_state = 34, .external_lex_state = 2}, + [333] = {.lex_state = 36, .external_lex_state = 7}, + [334] = {.lex_state = 36, .external_lex_state = 7}, + [335] = {.lex_state = 36, .external_lex_state = 7}, + [336] = {.lex_state = 36, .external_lex_state = 9}, + [337] = {.lex_state = 36, .external_lex_state = 9}, + [338] = {.lex_state = 36, .external_lex_state = 9}, + [339] = {.lex_state = 36, .external_lex_state = 9}, [340] = {.lex_state = 36, .external_lex_state = 2}, - [341] = {.lex_state = 36, .external_lex_state = 9}, - [342] = {.lex_state = 36, .external_lex_state = 9}, - [343] = {.lex_state = 36, .external_lex_state = 5}, - [344] = {.lex_state = 36, .external_lex_state = 2}, - [345] = {.lex_state = 36, .external_lex_state = 5}, - [346] = {.lex_state = 36, .external_lex_state = 5}, - [347] = {.lex_state = 39, .external_lex_state = 2}, - [348] = {.lex_state = 36, .external_lex_state = 5}, - [349] = {.lex_state = 36, .external_lex_state = 5}, - [350] = {.lex_state = 36, .external_lex_state = 5}, - [351] = {.lex_state = 36, .external_lex_state = 5}, - [352] = {.lex_state = 36, .external_lex_state = 5}, - [353] = {.lex_state = 36, .external_lex_state = 5}, - [354] = {.lex_state = 36, .external_lex_state = 5}, - [355] = {.lex_state = 36, .external_lex_state = 5}, - [356] = {.lex_state = 36, .external_lex_state = 5}, - [357] = {.lex_state = 36, .external_lex_state = 5}, - [358] = {.lex_state = 36, .external_lex_state = 5}, - [359] = {.lex_state = 36, .external_lex_state = 2}, - [360] = {.lex_state = 36, .external_lex_state = 5}, - [361] = {.lex_state = 34, .external_lex_state = 2}, - [362] = {.lex_state = 36, .external_lex_state = 5}, - [363] = {.lex_state = 36, .external_lex_state = 9}, - [364] = {.lex_state = 36, .external_lex_state = 2}, - [365] = {.lex_state = 36, .external_lex_state = 9}, - [366] = {.lex_state = 36, .external_lex_state = 11}, + [341] = {.lex_state = 36, .external_lex_state = 7}, + [342] = {.lex_state = 36, .external_lex_state = 2}, + [343] = {.lex_state = 39, .external_lex_state = 2}, + [344] = {.lex_state = 36, .external_lex_state = 9}, + [345] = {.lex_state = 36, .external_lex_state = 7}, + [346] = {.lex_state = 36, .external_lex_state = 7}, + [347] = {.lex_state = 36, .external_lex_state = 7}, + [348] = {.lex_state = 36, .external_lex_state = 7}, + [349] = {.lex_state = 36, .external_lex_state = 7}, + [350] = {.lex_state = 36, .external_lex_state = 7}, + [351] = {.lex_state = 36, .external_lex_state = 7}, + [352] = {.lex_state = 36, .external_lex_state = 9}, + [353] = {.lex_state = 36, .external_lex_state = 9}, + [354] = {.lex_state = 36, .external_lex_state = 9}, + [355] = {.lex_state = 36, .external_lex_state = 7}, + [356] = {.lex_state = 36, .external_lex_state = 2}, + [357] = {.lex_state = 36, .external_lex_state = 7}, + [358] = {.lex_state = 36, .external_lex_state = 7}, + [359] = {.lex_state = 36, .external_lex_state = 16}, + [360] = {.lex_state = 36, .external_lex_state = 7}, + [361] = {.lex_state = 36, .external_lex_state = 7}, + [362] = {.lex_state = 36, .external_lex_state = 7}, + [363] = {.lex_state = 36, .external_lex_state = 7}, + [364] = {.lex_state = 36, .external_lex_state = 7}, + [365] = {.lex_state = 36, .external_lex_state = 7}, + [366] = {.lex_state = 36, .external_lex_state = 7}, [367] = {.lex_state = 36, .external_lex_state = 7}, [368] = {.lex_state = 36, .external_lex_state = 7}, [369] = {.lex_state = 36, .external_lex_state = 7}, - [370] = {.lex_state = 36, .external_lex_state = 9}, - [371] = {.lex_state = 36, .external_lex_state = 11}, - [372] = {.lex_state = 36, .external_lex_state = 9}, - [373] = {.lex_state = 36, .external_lex_state = 7}, + [370] = {.lex_state = 36, .external_lex_state = 7}, + [371] = {.lex_state = 36, .external_lex_state = 16}, + [372] = {.lex_state = 36, .external_lex_state = 7}, + [373] = {.lex_state = 36, .external_lex_state = 3}, [374] = {.lex_state = 36, .external_lex_state = 7}, [375] = {.lex_state = 36, .external_lex_state = 3}, [376] = {.lex_state = 36, .external_lex_state = 9}, - [377] = {.lex_state = 36, .external_lex_state = 7}, - [378] = {.lex_state = 36, .external_lex_state = 7}, - [379] = {.lex_state = 36, .external_lex_state = 7}, - [380] = {.lex_state = 36, .external_lex_state = 7}, - [381] = {.lex_state = 36, .external_lex_state = 7}, - [382] = {.lex_state = 36, .external_lex_state = 7}, - [383] = {.lex_state = 36, .external_lex_state = 7}, - [384] = {.lex_state = 36, .external_lex_state = 9}, + [377] = {.lex_state = 36, .external_lex_state = 9}, + [378] = {.lex_state = 36, .external_lex_state = 9}, + [379] = {.lex_state = 36, .external_lex_state = 6}, + [380] = {.lex_state = 36, .external_lex_state = 6}, + [381] = {.lex_state = 36, .external_lex_state = 6}, + [382] = {.lex_state = 36, .external_lex_state = 9}, + [383] = {.lex_state = 36, .external_lex_state = 9}, + [384] = {.lex_state = 36, .external_lex_state = 3}, [385] = {.lex_state = 36, .external_lex_state = 9}, - [386] = {.lex_state = 36, .external_lex_state = 9}, - [387] = {.lex_state = 36, .external_lex_state = 7}, + [386] = {.lex_state = 36, .external_lex_state = 6}, + [387] = {.lex_state = 36, .external_lex_state = 6}, [388] = {.lex_state = 36, .external_lex_state = 3}, - [389] = {.lex_state = 36, .external_lex_state = 7}, - [390] = {.lex_state = 36, .external_lex_state = 7}, - [391] = {.lex_state = 36, .external_lex_state = 3}, - [392] = {.lex_state = 36, .external_lex_state = 7}, - [393] = {.lex_state = 36, .external_lex_state = 7}, - [394] = {.lex_state = 36, .external_lex_state = 7}, - [395] = {.lex_state = 36, .external_lex_state = 7}, - [396] = {.lex_state = 36, .external_lex_state = 7}, - [397] = {.lex_state = 36, .external_lex_state = 7}, - [398] = {.lex_state = 36, .external_lex_state = 7}, - [399] = {.lex_state = 36, .external_lex_state = 7}, - [400] = {.lex_state = 36, .external_lex_state = 7}, - [401] = {.lex_state = 36, .external_lex_state = 7}, - [402] = {.lex_state = 36, .external_lex_state = 7}, - [403] = {.lex_state = 36, .external_lex_state = 3}, - [404] = {.lex_state = 36, .external_lex_state = 7}, + [389] = {.lex_state = 36, .external_lex_state = 3}, + [390] = {.lex_state = 36, .external_lex_state = 3}, + [391] = {.lex_state = 36, .external_lex_state = 6}, + [392] = {.lex_state = 36, .external_lex_state = 6}, + [393] = {.lex_state = 36, .external_lex_state = 6}, + [394] = {.lex_state = 36, .external_lex_state = 6}, + [395] = {.lex_state = 36, .external_lex_state = 6}, + [396] = {.lex_state = 36, .external_lex_state = 6}, + [397] = {.lex_state = 36, .external_lex_state = 6}, + [398] = {.lex_state = 36, .external_lex_state = 9}, + [399] = {.lex_state = 36, .external_lex_state = 9}, + [400] = {.lex_state = 36, .external_lex_state = 9}, + [401] = {.lex_state = 36, .external_lex_state = 6}, + [402] = {.lex_state = 36, .external_lex_state = 3}, + [403] = {.lex_state = 36, .external_lex_state = 6}, + [404] = {.lex_state = 36, .external_lex_state = 6}, [405] = {.lex_state = 36, .external_lex_state = 3}, - [406] = {.lex_state = 36, .external_lex_state = 7}, - [407] = {.lex_state = 36, .external_lex_state = 9}, - [408] = {.lex_state = 36, .external_lex_state = 9}, - [409] = {.lex_state = 36, .external_lex_state = 9}, - [410] = {.lex_state = 36, .external_lex_state = 3}, - [411] = {.lex_state = 36, .external_lex_state = 8}, - [412] = {.lex_state = 36, .external_lex_state = 8}, - [413] = {.lex_state = 36, .external_lex_state = 8}, - [414] = {.lex_state = 36, .external_lex_state = 9}, - [415] = {.lex_state = 36, .external_lex_state = 3}, - [416] = {.lex_state = 36, .external_lex_state = 2}, - [417] = {.lex_state = 36, .external_lex_state = 8}, - [418] = {.lex_state = 36, .external_lex_state = 8}, + [406] = {.lex_state = 36, .external_lex_state = 6}, + [407] = {.lex_state = 36, .external_lex_state = 6}, + [408] = {.lex_state = 36, .external_lex_state = 6}, + [409] = {.lex_state = 36, .external_lex_state = 6}, + [410] = {.lex_state = 36, .external_lex_state = 6}, + [411] = {.lex_state = 36, .external_lex_state = 6}, + [412] = {.lex_state = 36, .external_lex_state = 6}, + [413] = {.lex_state = 36, .external_lex_state = 6}, + [414] = {.lex_state = 36, .external_lex_state = 6}, + [415] = {.lex_state = 36, .external_lex_state = 6}, + [416] = {.lex_state = 36, .external_lex_state = 6}, + [417] = {.lex_state = 36, .external_lex_state = 3}, + [418] = {.lex_state = 36, .external_lex_state = 6}, [419] = {.lex_state = 36, .external_lex_state = 3}, - [420] = {.lex_state = 36, .external_lex_state = 9}, - [421] = {.lex_state = 36, .external_lex_state = 8}, - [422] = {.lex_state = 36, .external_lex_state = 8}, - [423] = {.lex_state = 36, .external_lex_state = 8}, - [424] = {.lex_state = 36, .external_lex_state = 8}, + [420] = {.lex_state = 36, .external_lex_state = 6}, + [421] = {.lex_state = 36, .external_lex_state = 9}, + [422] = {.lex_state = 36, .external_lex_state = 9}, + [423] = {.lex_state = 36, .external_lex_state = 9}, + [424] = {.lex_state = 36, .external_lex_state = 9}, [425] = {.lex_state = 36, .external_lex_state = 8}, [426] = {.lex_state = 36, .external_lex_state = 8}, [427] = {.lex_state = 36, .external_lex_state = 8}, [428] = {.lex_state = 36, .external_lex_state = 9}, - [429] = {.lex_state = 36, .external_lex_state = 9}, + [429] = {.lex_state = 36, .external_lex_state = 3}, [430] = {.lex_state = 36, .external_lex_state = 3}, - [431] = {.lex_state = 36, .external_lex_state = 8}, - [432] = {.lex_state = 36, .external_lex_state = 3}, + [431] = {.lex_state = 36, .external_lex_state = 9}, + [432] = {.lex_state = 36, .external_lex_state = 8}, [433] = {.lex_state = 36, .external_lex_state = 8}, - [434] = {.lex_state = 36, .external_lex_state = 8}, + [434] = {.lex_state = 36, .external_lex_state = 3}, [435] = {.lex_state = 36, .external_lex_state = 3}, - [436] = {.lex_state = 36, .external_lex_state = 8}, - [437] = {.lex_state = 36, .external_lex_state = 10}, + [436] = {.lex_state = 36, .external_lex_state = 9}, + [437] = {.lex_state = 36, .external_lex_state = 8}, [438] = {.lex_state = 36, .external_lex_state = 8}, [439] = {.lex_state = 36, .external_lex_state = 8}, [440] = {.lex_state = 36, .external_lex_state = 8}, [441] = {.lex_state = 36, .external_lex_state = 8}, [442] = {.lex_state = 36, .external_lex_state = 8}, [443] = {.lex_state = 36, .external_lex_state = 8}, - [444] = {.lex_state = 36, .external_lex_state = 8}, - [445] = {.lex_state = 36, .external_lex_state = 8}, - [446] = {.lex_state = 36, .external_lex_state = 8}, - [447] = {.lex_state = 36, .external_lex_state = 3}, - [448] = {.lex_state = 36, .external_lex_state = 8}, - [449] = {.lex_state = 36, .external_lex_state = 3}, + [444] = {.lex_state = 36, .external_lex_state = 2}, + [445] = {.lex_state = 36, .external_lex_state = 3}, + [446] = {.lex_state = 36, .external_lex_state = 9}, + [447] = {.lex_state = 36, .external_lex_state = 8}, + [448] = {.lex_state = 36, .external_lex_state = 3}, + [449] = {.lex_state = 36, .external_lex_state = 8}, [450] = {.lex_state = 36, .external_lex_state = 8}, - [451] = {.lex_state = 36, .external_lex_state = 3}, - [452] = {.lex_state = 36, .external_lex_state = 3}, - [453] = {.lex_state = 36, .external_lex_state = 3}, - [454] = {.lex_state = 36, .external_lex_state = 2}, - [455] = {.lex_state = 8, .external_lex_state = 2}, - [456] = {.lex_state = 8, .external_lex_state = 2}, - [457] = {.lex_state = 8, .external_lex_state = 2}, - [458] = {.lex_state = 36, .external_lex_state = 2}, - [459] = {.lex_state = 36, .external_lex_state = 2}, - [460] = {.lex_state = 8, .external_lex_state = 2}, - [461] = {.lex_state = 8, .external_lex_state = 2}, - [462] = {.lex_state = 36, .external_lex_state = 2}, - [463] = {.lex_state = 36, .external_lex_state = 3}, - [464] = {.lex_state = 8, .external_lex_state = 2}, - [465] = {.lex_state = 8, .external_lex_state = 2}, - [466] = {.lex_state = 8, .external_lex_state = 2}, - [467] = {.lex_state = 8, .external_lex_state = 2}, - [468] = {.lex_state = 8, .external_lex_state = 2}, - [469] = {.lex_state = 8, .external_lex_state = 2}, - [470] = {.lex_state = 8, .external_lex_state = 2}, - [471] = {.lex_state = 36, .external_lex_state = 3}, - [472] = {.lex_state = 36, .external_lex_state = 3}, - [473] = {.lex_state = 36, .external_lex_state = 3}, - [474] = {.lex_state = 8, .external_lex_state = 2}, - [475] = {.lex_state = 36, .external_lex_state = 3}, - [476] = {.lex_state = 8, .external_lex_state = 2}, + [451] = {.lex_state = 36, .external_lex_state = 2}, + [452] = {.lex_state = 36, .external_lex_state = 8}, + [453] = {.lex_state = 36, .external_lex_state = 10}, + [454] = {.lex_state = 36, .external_lex_state = 8}, + [455] = {.lex_state = 36, .external_lex_state = 8}, + [456] = {.lex_state = 36, .external_lex_state = 8}, + [457] = {.lex_state = 36, .external_lex_state = 8}, + [458] = {.lex_state = 36, .external_lex_state = 8}, + [459] = {.lex_state = 36, .external_lex_state = 8}, + [460] = {.lex_state = 36, .external_lex_state = 8}, + [461] = {.lex_state = 36, .external_lex_state = 8}, + [462] = {.lex_state = 36, .external_lex_state = 8}, + [463] = {.lex_state = 36, .external_lex_state = 2}, + [464] = {.lex_state = 36, .external_lex_state = 8}, + [465] = {.lex_state = 36, .external_lex_state = 3}, + [466] = {.lex_state = 36, .external_lex_state = 8}, + [467] = {.lex_state = 36, .external_lex_state = 9}, + [468] = {.lex_state = 36, .external_lex_state = 3}, + [469] = {.lex_state = 36, .external_lex_state = 3}, + [470] = {.lex_state = 36, .external_lex_state = 3}, + [471] = {.lex_state = 8, .external_lex_state = 2}, + [472] = {.lex_state = 8, .external_lex_state = 2}, + [473] = {.lex_state = 8, .external_lex_state = 2}, + [474] = {.lex_state = 36, .external_lex_state = 3}, + [475] = {.lex_state = 36, .external_lex_state = 2}, + [476] = {.lex_state = 36, .external_lex_state = 3}, [477] = {.lex_state = 8, .external_lex_state = 2}, - [478] = {.lex_state = 36, .external_lex_state = 3}, - [479] = {.lex_state = 8, .external_lex_state = 2}, - [480] = {.lex_state = 8, .external_lex_state = 2}, - [481] = {.lex_state = 8, .external_lex_state = 2}, + [478] = {.lex_state = 8, .external_lex_state = 2}, + [479] = {.lex_state = 36, .external_lex_state = 3}, + [480] = {.lex_state = 36, .external_lex_state = 2}, + [481] = {.lex_state = 36, .external_lex_state = 2}, [482] = {.lex_state = 8, .external_lex_state = 2}, [483] = {.lex_state = 8, .external_lex_state = 2}, [484] = {.lex_state = 8, .external_lex_state = 2}, @@ -4394,126 +4416,126 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [486] = {.lex_state = 8, .external_lex_state = 2}, [487] = {.lex_state = 8, .external_lex_state = 2}, [488] = {.lex_state = 8, .external_lex_state = 2}, - [489] = {.lex_state = 8, .external_lex_state = 2}, + [489] = {.lex_state = 36, .external_lex_state = 3}, [490] = {.lex_state = 36, .external_lex_state = 3}, - [491] = {.lex_state = 8, .external_lex_state = 2}, - [492] = {.lex_state = 36, .external_lex_state = 2}, - [493] = {.lex_state = 8, .external_lex_state = 2}, - [494] = {.lex_state = 36, .external_lex_state = 2}, - [495] = {.lex_state = 36, .external_lex_state = 3}, + [491] = {.lex_state = 36, .external_lex_state = 3}, + [492] = {.lex_state = 8, .external_lex_state = 2}, + [493] = {.lex_state = 36, .external_lex_state = 3}, + [494] = {.lex_state = 8, .external_lex_state = 2}, + [495] = {.lex_state = 8, .external_lex_state = 2}, [496] = {.lex_state = 36, .external_lex_state = 3}, - [497] = {.lex_state = 36, .external_lex_state = 3}, - [498] = {.lex_state = 36, .external_lex_state = 3}, - [499] = {.lex_state = 36, .external_lex_state = 3}, - [500] = {.lex_state = 32, .external_lex_state = 6}, - [501] = {.lex_state = 36, .external_lex_state = 2}, - [502] = {.lex_state = 32, .external_lex_state = 10}, - [503] = {.lex_state = 32, .external_lex_state = 10}, - [504] = {.lex_state = 32, .external_lex_state = 3}, - [505] = {.lex_state = 1, .external_lex_state = 2}, - [506] = {.lex_state = 1, .external_lex_state = 2}, - [507] = {.lex_state = 1, .external_lex_state = 2}, - [508] = {.lex_state = 1, .external_lex_state = 2}, - [509] = {.lex_state = 32, .external_lex_state = 2}, - [510] = {.lex_state = 32, .external_lex_state = 6}, - [511] = {.lex_state = 32, .external_lex_state = 10}, - [512] = {.lex_state = 32, .external_lex_state = 10}, - [513] = {.lex_state = 1, .external_lex_state = 2}, - [514] = {.lex_state = 32, .external_lex_state = 2}, + [497] = {.lex_state = 8, .external_lex_state = 2}, + [498] = {.lex_state = 8, .external_lex_state = 2}, + [499] = {.lex_state = 8, .external_lex_state = 2}, + [500] = {.lex_state = 8, .external_lex_state = 2}, + [501] = {.lex_state = 8, .external_lex_state = 2}, + [502] = {.lex_state = 8, .external_lex_state = 2}, + [503] = {.lex_state = 8, .external_lex_state = 2}, + [504] = {.lex_state = 8, .external_lex_state = 2}, + [505] = {.lex_state = 8, .external_lex_state = 2}, + [506] = {.lex_state = 8, .external_lex_state = 2}, + [507] = {.lex_state = 8, .external_lex_state = 2}, + [508] = {.lex_state = 36, .external_lex_state = 2}, + [509] = {.lex_state = 8, .external_lex_state = 2}, + [510] = {.lex_state = 8, .external_lex_state = 2}, + [511] = {.lex_state = 32, .external_lex_state = 4}, + [512] = {.lex_state = 36, .external_lex_state = 2}, + [513] = {.lex_state = 32, .external_lex_state = 10}, + [514] = {.lex_state = 32, .external_lex_state = 10}, [515] = {.lex_state = 32, .external_lex_state = 10}, - [516] = {.lex_state = 32, .external_lex_state = 3}, - [517] = {.lex_state = 32, .external_lex_state = 4}, - [518] = {.lex_state = 32, .external_lex_state = 2}, - [519] = {.lex_state = 32, .external_lex_state = 3}, - [520] = {.lex_state = 32, .external_lex_state = 8}, - [521] = {.lex_state = 32, .external_lex_state = 8}, - [522] = {.lex_state = 32, .external_lex_state = 8}, - [523] = {.lex_state = 32, .external_lex_state = 8}, - [524] = {.lex_state = 32, .external_lex_state = 4}, - [525] = {.lex_state = 32, .external_lex_state = 8}, - [526] = {.lex_state = 32, .external_lex_state = 4}, - [527] = {.lex_state = 32, .external_lex_state = 9}, - [528] = {.lex_state = 32, .external_lex_state = 7}, - [529] = {.lex_state = 32, .external_lex_state = 7}, - [530] = {.lex_state = 32, .external_lex_state = 7}, - [531] = {.lex_state = 32, .external_lex_state = 3}, - [532] = {.lex_state = 32, .external_lex_state = 7}, - [533] = {.lex_state = 32, .external_lex_state = 3}, - [534] = {.lex_state = 32, .external_lex_state = 7}, - [535] = {.lex_state = 32, .external_lex_state = 9}, - [536] = {.lex_state = 32, .external_lex_state = 10}, - [537] = {.lex_state = 32, .external_lex_state = 9}, - [538] = {.lex_state = 32, .external_lex_state = 5}, - [539] = {.lex_state = 36, .external_lex_state = 2}, - [540] = {.lex_state = 36, .external_lex_state = 2}, - [541] = {.lex_state = 36, .external_lex_state = 2}, - [542] = {.lex_state = 32, .external_lex_state = 5}, - [543] = {.lex_state = 32, .external_lex_state = 4}, - [544] = {.lex_state = 36, .external_lex_state = 2}, - [545] = {.lex_state = 32, .external_lex_state = 4}, - [546] = {.lex_state = 32, .external_lex_state = 5}, - [547] = {.lex_state = 36, .external_lex_state = 2}, - [548] = {.lex_state = 36, .external_lex_state = 2}, - [549] = {.lex_state = 36, .external_lex_state = 2}, - [550] = {.lex_state = 36, .external_lex_state = 2}, - [551] = {.lex_state = 36, .external_lex_state = 2}, - [552] = {.lex_state = 36, .external_lex_state = 2}, - [553] = {.lex_state = 36, .external_lex_state = 2}, - [554] = {.lex_state = 32, .external_lex_state = 5}, - [555] = {.lex_state = 32, .external_lex_state = 10}, - [556] = {.lex_state = 36, .external_lex_state = 2}, - [557] = {.lex_state = 32, .external_lex_state = 6}, - [558] = {.lex_state = 36, .external_lex_state = 2}, + [516] = {.lex_state = 1, .external_lex_state = 2}, + [517] = {.lex_state = 1, .external_lex_state = 2}, + [518] = {.lex_state = 32, .external_lex_state = 10}, + [519] = {.lex_state = 32, .external_lex_state = 5}, + [520] = {.lex_state = 32, .external_lex_state = 5}, + [521] = {.lex_state = 32, .external_lex_state = 2}, + [522] = {.lex_state = 32, .external_lex_state = 2}, + [523] = {.lex_state = 32, .external_lex_state = 3}, + [524] = {.lex_state = 32, .external_lex_state = 3}, + [525] = {.lex_state = 1, .external_lex_state = 2}, + [526] = {.lex_state = 1, .external_lex_state = 2}, + [527] = {.lex_state = 32, .external_lex_state = 2}, + [528] = {.lex_state = 32, .external_lex_state = 5}, + [529] = {.lex_state = 32, .external_lex_state = 5}, + [530] = {.lex_state = 32, .external_lex_state = 5}, + [531] = {.lex_state = 32, .external_lex_state = 5}, + [532] = {.lex_state = 32, .external_lex_state = 8}, + [533] = {.lex_state = 32, .external_lex_state = 8}, + [534] = {.lex_state = 32, .external_lex_state = 8}, + [535] = {.lex_state = 32, .external_lex_state = 8}, + [536] = {.lex_state = 32, .external_lex_state = 3}, + [537] = {.lex_state = 32, .external_lex_state = 2}, + [538] = {.lex_state = 32, .external_lex_state = 8}, + [539] = {.lex_state = 32, .external_lex_state = 3}, + [540] = {.lex_state = 32, .external_lex_state = 8}, + [541] = {.lex_state = 32, .external_lex_state = 9}, + [542] = {.lex_state = 32, .external_lex_state = 9}, + [543] = {.lex_state = 32, .external_lex_state = 6}, + [544] = {.lex_state = 32, .external_lex_state = 6}, + [545] = {.lex_state = 32, .external_lex_state = 6}, + [546] = {.lex_state = 32, .external_lex_state = 6}, + [547] = {.lex_state = 32, .external_lex_state = 9}, + [548] = {.lex_state = 32, .external_lex_state = 6}, + [549] = {.lex_state = 32, .external_lex_state = 6}, + [550] = {.lex_state = 32, .external_lex_state = 10}, + [551] = {.lex_state = 32, .external_lex_state = 3}, + [552] = {.lex_state = 32, .external_lex_state = 10}, + [553] = {.lex_state = 32, .external_lex_state = 3}, + [554] = {.lex_state = 32, .external_lex_state = 7}, + [555] = {.lex_state = 32, .external_lex_state = 7}, + [556] = {.lex_state = 32, .external_lex_state = 7}, + [557] = {.lex_state = 32, .external_lex_state = 7}, + [558] = {.lex_state = 32, .external_lex_state = 7}, [559] = {.lex_state = 36, .external_lex_state = 2}, - [560] = {.lex_state = 32, .external_lex_state = 9}, + [560] = {.lex_state = 36, .external_lex_state = 2}, [561] = {.lex_state = 36, .external_lex_state = 2}, - [562] = {.lex_state = 36, .external_lex_state = 2}, - [563] = {.lex_state = 36, .external_lex_state = 2}, + [562] = {.lex_state = 32, .external_lex_state = 7}, + [563] = {.lex_state = 32, .external_lex_state = 9}, [564] = {.lex_state = 36, .external_lex_state = 2}, [565] = {.lex_state = 36, .external_lex_state = 2}, - [566] = {.lex_state = 36, .external_lex_state = 2}, + [566] = {.lex_state = 32, .external_lex_state = 10}, [567] = {.lex_state = 36, .external_lex_state = 2}, - [568] = {.lex_state = 36, .external_lex_state = 2}, + [568] = {.lex_state = 32, .external_lex_state = 9}, [569] = {.lex_state = 36, .external_lex_state = 2}, [570] = {.lex_state = 36, .external_lex_state = 2}, [571] = {.lex_state = 36, .external_lex_state = 2}, - [572] = {.lex_state = 32, .external_lex_state = 2}, + [572] = {.lex_state = 36, .external_lex_state = 2}, [573] = {.lex_state = 36, .external_lex_state = 2}, - [574] = {.lex_state = 32, .external_lex_state = 9}, + [574] = {.lex_state = 36, .external_lex_state = 2}, [575] = {.lex_state = 36, .external_lex_state = 2}, - [576] = {.lex_state = 32, .external_lex_state = 5}, + [576] = {.lex_state = 32, .external_lex_state = 4}, [577] = {.lex_state = 32, .external_lex_state = 9}, - [578] = {.lex_state = 32, .external_lex_state = 6}, + [578] = {.lex_state = 36, .external_lex_state = 2}, [579] = {.lex_state = 32, .external_lex_state = 2}, - [580] = {.lex_state = 32, .external_lex_state = 6}, - [581] = {.lex_state = 32, .external_lex_state = 9}, - [582] = {.lex_state = 32, .external_lex_state = 2}, - [583] = {.lex_state = 32, .external_lex_state = 2}, - [584] = {.lex_state = 32, .external_lex_state = 2}, - [585] = {.lex_state = 32, .external_lex_state = 2}, - [586] = {.lex_state = 32, .external_lex_state = 2}, - [587] = {.lex_state = 5, .external_lex_state = 20}, - [588] = {.lex_state = 5, .external_lex_state = 20}, - [589] = {.lex_state = 5, .external_lex_state = 20}, - [590] = {.lex_state = 5, .external_lex_state = 20}, - [591] = {.lex_state = 5, .external_lex_state = 20}, - [592] = {.lex_state = 5, .external_lex_state = 20}, - [593] = {.lex_state = 5, .external_lex_state = 20}, - [594] = {.lex_state = 5, .external_lex_state = 20}, - [595] = {.lex_state = 5, .external_lex_state = 20}, - [596] = {.lex_state = 5, .external_lex_state = 20}, - [597] = {.lex_state = 5, .external_lex_state = 20}, - [598] = {.lex_state = 5, .external_lex_state = 20}, - [599] = {.lex_state = 5, .external_lex_state = 20}, - [600] = {.lex_state = 5, .external_lex_state = 20}, - [601] = {.lex_state = 5, .external_lex_state = 20}, - [602] = {.lex_state = 5, .external_lex_state = 20}, - [603] = {.lex_state = 5, .external_lex_state = 20}, - [604] = {.lex_state = 5, .external_lex_state = 20}, - [605] = {.lex_state = 5, .external_lex_state = 20}, - [606] = {.lex_state = 5, .external_lex_state = 20}, - [607] = {.lex_state = 5, .external_lex_state = 20}, - [608] = {.lex_state = 5, .external_lex_state = 20}, + [580] = {.lex_state = 36, .external_lex_state = 2}, + [581] = {.lex_state = 36, .external_lex_state = 2}, + [582] = {.lex_state = 32, .external_lex_state = 4}, + [583] = {.lex_state = 36, .external_lex_state = 2}, + [584] = {.lex_state = 36, .external_lex_state = 2}, + [585] = {.lex_state = 36, .external_lex_state = 2}, + [586] = {.lex_state = 36, .external_lex_state = 2}, + [587] = {.lex_state = 36, .external_lex_state = 2}, + [588] = {.lex_state = 36, .external_lex_state = 2}, + [589] = {.lex_state = 36, .external_lex_state = 2}, + [590] = {.lex_state = 36, .external_lex_state = 2}, + [591] = {.lex_state = 36, .external_lex_state = 2}, + [592] = {.lex_state = 36, .external_lex_state = 2}, + [593] = {.lex_state = 36, .external_lex_state = 2}, + [594] = {.lex_state = 32, .external_lex_state = 9}, + [595] = {.lex_state = 32, .external_lex_state = 10}, + [596] = {.lex_state = 32, .external_lex_state = 2}, + [597] = {.lex_state = 1, .external_lex_state = 2}, + [598] = {.lex_state = 1, .external_lex_state = 2}, + [599] = {.lex_state = 32, .external_lex_state = 9}, + [600] = {.lex_state = 32, .external_lex_state = 4}, + [601] = {.lex_state = 32, .external_lex_state = 4}, + [602] = {.lex_state = 32, .external_lex_state = 4}, + [603] = {.lex_state = 32, .external_lex_state = 2}, + [604] = {.lex_state = 32, .external_lex_state = 2}, + [605] = {.lex_state = 32, .external_lex_state = 2}, + [606] = {.lex_state = 32, .external_lex_state = 2}, + [607] = {.lex_state = 32, .external_lex_state = 2}, + [608] = {.lex_state = 32, .external_lex_state = 2}, [609] = {.lex_state = 5, .external_lex_state = 20}, [610] = {.lex_state = 5, .external_lex_state = 20}, [611] = {.lex_state = 5, .external_lex_state = 20}, @@ -4524,28 +4546,28 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [616] = {.lex_state = 5, .external_lex_state = 20}, [617] = {.lex_state = 5, .external_lex_state = 20}, [618] = {.lex_state = 5, .external_lex_state = 20}, - [619] = {.lex_state = 5}, - [620] = {.lex_state = 5}, - [621] = {.lex_state = 5}, - [622] = {.lex_state = 5}, - [623] = {.lex_state = 5}, - [624] = {.lex_state = 5}, - [625] = {.lex_state = 5}, - [626] = {.lex_state = 5}, - [627] = {.lex_state = 5}, - [628] = {.lex_state = 5}, - [629] = {.lex_state = 5}, - [630] = {.lex_state = 5}, - [631] = {.lex_state = 5}, - [632] = {.lex_state = 5}, - [633] = {.lex_state = 5}, - [634] = {.lex_state = 5}, - [635] = {.lex_state = 5}, - [636] = {.lex_state = 5}, - [637] = {.lex_state = 5}, - [638] = {.lex_state = 5}, - [639] = {.lex_state = 5}, - [640] = {.lex_state = 5}, + [619] = {.lex_state = 5, .external_lex_state = 20}, + [620] = {.lex_state = 5, .external_lex_state = 20}, + [621] = {.lex_state = 5, .external_lex_state = 20}, + [622] = {.lex_state = 5, .external_lex_state = 20}, + [623] = {.lex_state = 5, .external_lex_state = 20}, + [624] = {.lex_state = 5, .external_lex_state = 20}, + [625] = {.lex_state = 5, .external_lex_state = 20}, + [626] = {.lex_state = 5, .external_lex_state = 20}, + [627] = {.lex_state = 5, .external_lex_state = 20}, + [628] = {.lex_state = 5, .external_lex_state = 20}, + [629] = {.lex_state = 5, .external_lex_state = 20}, + [630] = {.lex_state = 5, .external_lex_state = 20}, + [631] = {.lex_state = 5, .external_lex_state = 20}, + [632] = {.lex_state = 5, .external_lex_state = 20}, + [633] = {.lex_state = 5, .external_lex_state = 20}, + [634] = {.lex_state = 5, .external_lex_state = 20}, + [635] = {.lex_state = 5, .external_lex_state = 20}, + [636] = {.lex_state = 5, .external_lex_state = 20}, + [637] = {.lex_state = 5, .external_lex_state = 20}, + [638] = {.lex_state = 5, .external_lex_state = 20}, + [639] = {.lex_state = 5, .external_lex_state = 20}, + [640] = {.lex_state = 5, .external_lex_state = 20}, [641] = {.lex_state = 5}, [642] = {.lex_state = 5}, [643] = {.lex_state = 5}, @@ -4557,546 +4579,568 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [649] = {.lex_state = 5}, [650] = {.lex_state = 5}, [651] = {.lex_state = 5}, - [652] = {.lex_state = 7}, - [653] = {.lex_state = 7}, - [654] = {.lex_state = 7}, - [655] = {.lex_state = 7}, - [656] = {.lex_state = 7}, - [657] = {.lex_state = 7}, - [658] = {.lex_state = 13}, + [652] = {.lex_state = 5}, + [653] = {.lex_state = 5}, + [654] = {.lex_state = 5}, + [655] = {.lex_state = 5}, + [656] = {.lex_state = 5}, + [657] = {.lex_state = 5}, + [658] = {.lex_state = 5}, [659] = {.lex_state = 5}, [660] = {.lex_state = 5}, - [661] = {.lex_state = 0, .external_lex_state = 21}, - [662] = {.lex_state = 0, .external_lex_state = 22}, - [663] = {.lex_state = 0, .external_lex_state = 23}, - [664] = {.lex_state = 0, .external_lex_state = 22}, - [665] = {.lex_state = 0, .external_lex_state = 24}, - [666] = {.lex_state = 0, .external_lex_state = 25}, - [667] = {.lex_state = 0, .external_lex_state = 21}, - [668] = {.lex_state = 0, .external_lex_state = 22}, - [669] = {.lex_state = 0, .external_lex_state = 22}, - [670] = {.lex_state = 0, .external_lex_state = 24}, - [671] = {.lex_state = 0, .external_lex_state = 26}, - [672] = {.lex_state = 0, .external_lex_state = 27}, - [673] = {.lex_state = 0, .external_lex_state = 28}, - [674] = {.lex_state = 0, .external_lex_state = 29}, - [675] = {.lex_state = 0, .external_lex_state = 30}, - [676] = {.lex_state = 0, .external_lex_state = 21}, - [677] = {.lex_state = 0, .external_lex_state = 21}, - [678] = {.lex_state = 0, .external_lex_state = 21}, - [679] = {.lex_state = 5}, - [680] = {.lex_state = 0, .external_lex_state = 23}, + [661] = {.lex_state = 5}, + [662] = {.lex_state = 5}, + [663] = {.lex_state = 5}, + [664] = {.lex_state = 5}, + [665] = {.lex_state = 5}, + [666] = {.lex_state = 5}, + [667] = {.lex_state = 5}, + [668] = {.lex_state = 5}, + [669] = {.lex_state = 5}, + [670] = {.lex_state = 5}, + [671] = {.lex_state = 5}, + [672] = {.lex_state = 5}, + [673] = {.lex_state = 5}, + [674] = {.lex_state = 7}, + [675] = {.lex_state = 7}, + [676] = {.lex_state = 7}, + [677] = {.lex_state = 7}, + [678] = {.lex_state = 7}, + [679] = {.lex_state = 7}, + [680] = {.lex_state = 13}, [681] = {.lex_state = 5}, [682] = {.lex_state = 5}, - [683] = {.lex_state = 5}, - [684] = {.lex_state = 0, .external_lex_state = 24}, - [685] = {.lex_state = 0, .external_lex_state = 26}, - [686] = {.lex_state = 0, .external_lex_state = 27}, - [687] = {.lex_state = 0, .external_lex_state = 28}, - [688] = {.lex_state = 0, .external_lex_state = 29}, - [689] = {.lex_state = 0, .external_lex_state = 30}, - [690] = {.lex_state = 0, .external_lex_state = 24}, - [691] = {.lex_state = 0, .external_lex_state = 21}, - [692] = {.lex_state = 0, .external_lex_state = 21}, + [683] = {.lex_state = 0, .external_lex_state = 21}, + [684] = {.lex_state = 0, .external_lex_state = 22}, + [685] = {.lex_state = 0, .external_lex_state = 23}, + [686] = {.lex_state = 0, .external_lex_state = 24}, + [687] = {.lex_state = 0, .external_lex_state = 25}, + [688] = {.lex_state = 0, .external_lex_state = 26}, + [689] = {.lex_state = 0, .external_lex_state = 22}, + [690] = {.lex_state = 0, .external_lex_state = 27}, + [691] = {.lex_state = 0, .external_lex_state = 28}, + [692] = {.lex_state = 0, .external_lex_state = 23}, [693] = {.lex_state = 0, .external_lex_state = 21}, - [694] = {.lex_state = 0, .external_lex_state = 23}, + [694] = {.lex_state = 0, .external_lex_state = 21}, [695] = {.lex_state = 0, .external_lex_state = 21}, - [696] = {.lex_state = 5}, - [697] = {.lex_state = 0, .external_lex_state = 25}, + [696] = {.lex_state = 0, .external_lex_state = 29}, + [697] = {.lex_state = 0, .external_lex_state = 24}, [698] = {.lex_state = 0, .external_lex_state = 22}, - [699] = {.lex_state = 0, .external_lex_state = 24}, - [700] = {.lex_state = 0, .external_lex_state = 25}, - [701] = {.lex_state = 0, .external_lex_state = 30}, - [702] = {.lex_state = 5}, - [703] = {.lex_state = 5}, - [704] = {.lex_state = 5}, - [705] = {.lex_state = 5}, - [706] = {.lex_state = 5}, - [707] = {.lex_state = 5}, + [699] = {.lex_state = 0, .external_lex_state = 23}, + [700] = {.lex_state = 0, .external_lex_state = 30}, + [701] = {.lex_state = 0, .external_lex_state = 25}, + [702] = {.lex_state = 0, .external_lex_state = 26}, + [703] = {.lex_state = 0, .external_lex_state = 27}, + [704] = {.lex_state = 0, .external_lex_state = 28}, + [705] = {.lex_state = 0, .external_lex_state = 21}, + [706] = {.lex_state = 0, .external_lex_state = 21}, + [707] = {.lex_state = 0, .external_lex_state = 21}, [708] = {.lex_state = 5}, - [709] = {.lex_state = 5}, + [709] = {.lex_state = 0, .external_lex_state = 29}, [710] = {.lex_state = 5}, - [711] = {.lex_state = 0, .external_lex_state = 22}, + [711] = {.lex_state = 5}, [712] = {.lex_state = 5}, - [713] = {.lex_state = 0, .external_lex_state = 29}, - [714] = {.lex_state = 5}, - [715] = {.lex_state = 0, .external_lex_state = 28}, + [713] = {.lex_state = 0, .external_lex_state = 23}, + [714] = {.lex_state = 0, .external_lex_state = 22}, + [715] = {.lex_state = 0, .external_lex_state = 23}, [716] = {.lex_state = 0, .external_lex_state = 24}, - [717] = {.lex_state = 0, .external_lex_state = 22}, - [718] = {.lex_state = 0, .external_lex_state = 24}, - [719] = {.lex_state = 0, .external_lex_state = 26}, - [720] = {.lex_state = 0, .external_lex_state = 27}, - [721] = {.lex_state = 0, .external_lex_state = 28}, - [722] = {.lex_state = 0, .external_lex_state = 29}, - [723] = {.lex_state = 0, .external_lex_state = 30}, - [724] = {.lex_state = 0, .external_lex_state = 26}, - [725] = {.lex_state = 0, .external_lex_state = 21}, - [726] = {.lex_state = 0, .external_lex_state = 21}, - [727] = {.lex_state = 0, .external_lex_state = 21}, + [717] = {.lex_state = 0, .external_lex_state = 25}, + [718] = {.lex_state = 0, .external_lex_state = 26}, + [719] = {.lex_state = 0, .external_lex_state = 27}, + [720] = {.lex_state = 0, .external_lex_state = 28}, + [721] = {.lex_state = 5}, + [722] = {.lex_state = 0, .external_lex_state = 21}, + [723] = {.lex_state = 0, .external_lex_state = 21}, + [724] = {.lex_state = 0, .external_lex_state = 21}, + [725] = {.lex_state = 0, .external_lex_state = 29}, + [726] = {.lex_state = 0, .external_lex_state = 30}, + [727] = {.lex_state = 0, .external_lex_state = 22}, [728] = {.lex_state = 0, .external_lex_state = 23}, - [729] = {.lex_state = 0, .external_lex_state = 27}, - [730] = {.lex_state = 0, .external_lex_state = 26}, - [731] = {.lex_state = 0, .external_lex_state = 27}, - [732] = {.lex_state = 0, .external_lex_state = 22}, - [733] = {.lex_state = 0, .external_lex_state = 24}, - [734] = {.lex_state = 0, .external_lex_state = 25}, - [735] = {.lex_state = 0, .external_lex_state = 24}, - [736] = {.lex_state = 0, .external_lex_state = 28}, - [737] = {.lex_state = 0, .external_lex_state = 29}, - [738] = {.lex_state = 0, .external_lex_state = 30}, - [739] = {.lex_state = 5}, + [729] = {.lex_state = 0, .external_lex_state = 30}, + [730] = {.lex_state = 5}, + [731] = {.lex_state = 5}, + [732] = {.lex_state = 5}, + [733] = {.lex_state = 5}, + [734] = {.lex_state = 5}, + [735] = {.lex_state = 5}, + [736] = {.lex_state = 5}, + [737] = {.lex_state = 5}, + [738] = {.lex_state = 5}, + [739] = {.lex_state = 0, .external_lex_state = 22}, [740] = {.lex_state = 5}, - [741] = {.lex_state = 0, .external_lex_state = 21}, - [742] = {.lex_state = 0, .external_lex_state = 21}, - [743] = {.lex_state = 0, .external_lex_state = 21}, + [741] = {.lex_state = 5}, + [742] = {.lex_state = 0, .external_lex_state = 23}, + [743] = {.lex_state = 0, .external_lex_state = 22}, [744] = {.lex_state = 0, .external_lex_state = 23}, - [745] = {.lex_state = 0, .external_lex_state = 22}, - [746] = {.lex_state = 0, .external_lex_state = 24}, - [747] = {.lex_state = 0, .external_lex_state = 22}, - [748] = {.lex_state = 5}, - [749] = {.lex_state = 0, .external_lex_state = 25}, - [750] = {.lex_state = 5}, - [751] = {.lex_state = 0, .external_lex_state = 22}, - [752] = {.lex_state = 0, .external_lex_state = 24}, - [753] = {.lex_state = 0, .external_lex_state = 26}, - [754] = {.lex_state = 0, .external_lex_state = 27}, - [755] = {.lex_state = 0, .external_lex_state = 28}, - [756] = {.lex_state = 0, .external_lex_state = 29}, - [757] = {.lex_state = 0, .external_lex_state = 30}, - [758] = {.lex_state = 5}, - [759] = {.lex_state = 0, .external_lex_state = 21}, - [760] = {.lex_state = 0, .external_lex_state = 21}, - [761] = {.lex_state = 0, .external_lex_state = 21}, - [762] = {.lex_state = 0, .external_lex_state = 23}, + [745] = {.lex_state = 0, .external_lex_state = 24}, + [746] = {.lex_state = 0, .external_lex_state = 25}, + [747] = {.lex_state = 0, .external_lex_state = 26}, + [748] = {.lex_state = 0, .external_lex_state = 27}, + [749] = {.lex_state = 0, .external_lex_state = 28}, + [750] = {.lex_state = 0, .external_lex_state = 24}, + [751] = {.lex_state = 0, .external_lex_state = 21}, + [752] = {.lex_state = 0, .external_lex_state = 21}, + [753] = {.lex_state = 0, .external_lex_state = 21}, + [754] = {.lex_state = 0, .external_lex_state = 29}, + [755] = {.lex_state = 0, .external_lex_state = 25}, + [756] = {.lex_state = 0, .external_lex_state = 22}, + [757] = {.lex_state = 0, .external_lex_state = 23}, + [758] = {.lex_state = 0, .external_lex_state = 30}, + [759] = {.lex_state = 0, .external_lex_state = 26}, + [760] = {.lex_state = 0, .external_lex_state = 27}, + [761] = {.lex_state = 0, .external_lex_state = 28}, + [762] = {.lex_state = 5}, [763] = {.lex_state = 5}, [764] = {.lex_state = 0, .external_lex_state = 21}, - [765] = {.lex_state = 0, .external_lex_state = 24}, - [766] = {.lex_state = 0, .external_lex_state = 22}, - [767] = {.lex_state = 0, .external_lex_state = 24}, - [768] = {.lex_state = 0, .external_lex_state = 25}, - [769] = {.lex_state = 5}, - [770] = {.lex_state = 0, .external_lex_state = 26}, - [771] = {.lex_state = 0, .external_lex_state = 27}, - [772] = {.lex_state = 0, .external_lex_state = 28}, - [773] = {.lex_state = 0, .external_lex_state = 25}, - [774] = {.lex_state = 0, .external_lex_state = 24}, - [775] = {.lex_state = 0, .external_lex_state = 22}, - [776] = {.lex_state = 0, .external_lex_state = 29}, - [777] = {.lex_state = 0, .external_lex_state = 30}, - [778] = {.lex_state = 0, .external_lex_state = 23}, - [779] = {.lex_state = 0, .external_lex_state = 21}, - [780] = {.lex_state = 0, .external_lex_state = 21}, - [781] = {.lex_state = 0, .external_lex_state = 30}, - [782] = {.lex_state = 0, .external_lex_state = 29}, - [783] = {.lex_state = 0, .external_lex_state = 28}, - [784] = {.lex_state = 0, .external_lex_state = 27}, + [765] = {.lex_state = 0, .external_lex_state = 21}, + [766] = {.lex_state = 0, .external_lex_state = 29}, + [767] = {.lex_state = 0, .external_lex_state = 22}, + [768] = {.lex_state = 0, .external_lex_state = 23}, + [769] = {.lex_state = 0, .external_lex_state = 30}, + [770] = {.lex_state = 5}, + [771] = {.lex_state = 5}, + [772] = {.lex_state = 5}, + [773] = {.lex_state = 0, .external_lex_state = 22}, + [774] = {.lex_state = 0, .external_lex_state = 23}, + [775] = {.lex_state = 0, .external_lex_state = 24}, + [776] = {.lex_state = 0, .external_lex_state = 25}, + [777] = {.lex_state = 0, .external_lex_state = 26}, + [778] = {.lex_state = 0, .external_lex_state = 27}, + [779] = {.lex_state = 0, .external_lex_state = 28}, + [780] = {.lex_state = 5}, + [781] = {.lex_state = 0, .external_lex_state = 21}, + [782] = {.lex_state = 0, .external_lex_state = 21}, + [783] = {.lex_state = 0, .external_lex_state = 21}, + [784] = {.lex_state = 0, .external_lex_state = 29}, [785] = {.lex_state = 0, .external_lex_state = 22}, - [786] = {.lex_state = 0, .external_lex_state = 24}, - [787] = {.lex_state = 0, .external_lex_state = 26}, - [788] = {.lex_state = 0, .external_lex_state = 27}, - [789] = {.lex_state = 0, .external_lex_state = 28}, - [790] = {.lex_state = 0, .external_lex_state = 29}, - [791] = {.lex_state = 0, .external_lex_state = 30}, - [792] = {.lex_state = 0, .external_lex_state = 26}, - [793] = {.lex_state = 0, .external_lex_state = 21}, - [794] = {.lex_state = 0, .external_lex_state = 21}, - [795] = {.lex_state = 0, .external_lex_state = 21}, + [786] = {.lex_state = 0, .external_lex_state = 22}, + [787] = {.lex_state = 0, .external_lex_state = 24}, + [788] = {.lex_state = 0, .external_lex_state = 22}, + [789] = {.lex_state = 0, .external_lex_state = 23}, + [790] = {.lex_state = 0, .external_lex_state = 30}, + [791] = {.lex_state = 5}, + [792] = {.lex_state = 0, .external_lex_state = 25}, + [793] = {.lex_state = 0, .external_lex_state = 26}, + [794] = {.lex_state = 0, .external_lex_state = 27}, + [795] = {.lex_state = 0, .external_lex_state = 30}, [796] = {.lex_state = 0, .external_lex_state = 23}, - [797] = {.lex_state = 0, .external_lex_state = 24}, - [798] = {.lex_state = 0, .external_lex_state = 22}, - [799] = {.lex_state = 0, .external_lex_state = 22}, - [800] = {.lex_state = 0, .external_lex_state = 22}, - [801] = {.lex_state = 0, .external_lex_state = 24}, - [802] = {.lex_state = 0, .external_lex_state = 25}, - [803] = {.lex_state = 0, .external_lex_state = 21}, - [804] = {.lex_state = 0, .external_lex_state = 21}, - [805] = {.lex_state = 0, .external_lex_state = 21}, + [797] = {.lex_state = 0, .external_lex_state = 22}, + [798] = {.lex_state = 0, .external_lex_state = 23}, + [799] = {.lex_state = 0, .external_lex_state = 29}, + [800] = {.lex_state = 0, .external_lex_state = 21}, + [801] = {.lex_state = 0, .external_lex_state = 21}, + [802] = {.lex_state = 0, .external_lex_state = 21}, + [803] = {.lex_state = 0, .external_lex_state = 28}, + [804] = {.lex_state = 0, .external_lex_state = 27}, + [805] = {.lex_state = 0, .external_lex_state = 26}, [806] = {.lex_state = 0, .external_lex_state = 25}, - [807] = {.lex_state = 0, .external_lex_state = 24}, - [808] = {.lex_state = 0, .external_lex_state = 22}, - [809] = {.lex_state = 0, .external_lex_state = 23}, - [810] = {.lex_state = 0, .external_lex_state = 23}, - [811] = {.lex_state = 0, .external_lex_state = 21}, - [812] = {.lex_state = 0, .external_lex_state = 21}, - [813] = {.lex_state = 0, .external_lex_state = 21}, - [814] = {.lex_state = 0, .external_lex_state = 30}, - [815] = {.lex_state = 0, .external_lex_state = 29}, - [816] = {.lex_state = 0, .external_lex_state = 28}, - [817] = {.lex_state = 0, .external_lex_state = 27}, - [818] = {.lex_state = 0, .external_lex_state = 26}, - [819] = {.lex_state = 0, .external_lex_state = 22}, - [820] = {.lex_state = 0, .external_lex_state = 24}, - [821] = {.lex_state = 0, .external_lex_state = 26}, - [822] = {.lex_state = 0, .external_lex_state = 27}, - [823] = {.lex_state = 0, .external_lex_state = 28}, - [824] = {.lex_state = 0, .external_lex_state = 29}, - [825] = {.lex_state = 0, .external_lex_state = 30}, - [826] = {.lex_state = 0, .external_lex_state = 24}, + [807] = {.lex_state = 0, .external_lex_state = 22}, + [808] = {.lex_state = 0, .external_lex_state = 23}, + [809] = {.lex_state = 0, .external_lex_state = 24}, + [810] = {.lex_state = 0, .external_lex_state = 25}, + [811] = {.lex_state = 0, .external_lex_state = 26}, + [812] = {.lex_state = 0, .external_lex_state = 27}, + [813] = {.lex_state = 0, .external_lex_state = 28}, + [814] = {.lex_state = 0, .external_lex_state = 24}, + [815] = {.lex_state = 0, .external_lex_state = 21}, + [816] = {.lex_state = 0, .external_lex_state = 21}, + [817] = {.lex_state = 0, .external_lex_state = 21}, + [818] = {.lex_state = 0, .external_lex_state = 29}, + [819] = {.lex_state = 0, .external_lex_state = 23}, + [820] = {.lex_state = 0, .external_lex_state = 28}, + [821] = {.lex_state = 0, .external_lex_state = 22}, + [822] = {.lex_state = 0, .external_lex_state = 22}, + [823] = {.lex_state = 0, .external_lex_state = 23}, + [824] = {.lex_state = 0, .external_lex_state = 30}, + [825] = {.lex_state = 0, .external_lex_state = 21}, + [826] = {.lex_state = 0, .external_lex_state = 21}, [827] = {.lex_state = 0, .external_lex_state = 21}, - [828] = {.lex_state = 0, .external_lex_state = 21}, - [829] = {.lex_state = 0, .external_lex_state = 21}, - [830] = {.lex_state = 0, .external_lex_state = 23}, - [831] = {.lex_state = 0, .external_lex_state = 22}, - [832] = {.lex_state = 0, .external_lex_state = 22}, - [833] = {.lex_state = 0, .external_lex_state = 24}, - [834] = {.lex_state = 0, .external_lex_state = 22}, - [835] = {.lex_state = 0, .external_lex_state = 24}, - [836] = {.lex_state = 0, .external_lex_state = 25}, - [837] = {.lex_state = 0, .external_lex_state = 25}, - [838] = {.lex_state = 0, .external_lex_state = 31}, - [839] = {.lex_state = 5}, - [840] = {.lex_state = 0, .external_lex_state = 32}, - [841] = {.lex_state = 0, .external_lex_state = 33}, - [842] = {.lex_state = 0, .external_lex_state = 34}, - [843] = {.lex_state = 0, .external_lex_state = 35}, - [844] = {.lex_state = 0, .external_lex_state = 36}, - [845] = {.lex_state = 0, .external_lex_state = 37}, - [846] = {.lex_state = 0, .external_lex_state = 38}, - [847] = {.lex_state = 0, .external_lex_state = 39}, - [848] = {.lex_state = 0}, - [849] = {.lex_state = 0, .external_lex_state = 31}, - [850] = {.lex_state = 0, .external_lex_state = 40}, - [851] = {.lex_state = 0, .external_lex_state = 31}, - [852] = {.lex_state = 5}, - [853] = {.lex_state = 5}, - [854] = {.lex_state = 0}, - [855] = {.lex_state = 5}, - [856] = {.lex_state = 0, .external_lex_state = 32}, - [857] = {.lex_state = 0, .external_lex_state = 40}, - [858] = {.lex_state = 0, .external_lex_state = 33}, - [859] = {.lex_state = 0}, - [860] = {.lex_state = 0}, - [861] = {.lex_state = 0, .external_lex_state = 39}, - [862] = {.lex_state = 0, .external_lex_state = 38}, - [863] = {.lex_state = 0, .external_lex_state = 37}, - [864] = {.lex_state = 0, .external_lex_state = 36}, - [865] = {.lex_state = 0, .external_lex_state = 31}, - [866] = {.lex_state = 0, .external_lex_state = 35}, - [867] = {.lex_state = 0, .external_lex_state = 31}, - [868] = {.lex_state = 0, .external_lex_state = 34}, - [869] = {.lex_state = 0, .external_lex_state = 33}, - [870] = {.lex_state = 0, .external_lex_state = 32}, - [871] = {.lex_state = 5}, - [872] = {.lex_state = 0, .external_lex_state = 31}, - [873] = {.lex_state = 5}, - [874] = {.lex_state = 0, .external_lex_state = 32}, - [875] = {.lex_state = 0, .external_lex_state = 33}, - [876] = {.lex_state = 0, .external_lex_state = 34}, - [877] = {.lex_state = 0, .external_lex_state = 35}, - [878] = {.lex_state = 0, .external_lex_state = 36}, - [879] = {.lex_state = 0, .external_lex_state = 37}, - [880] = {.lex_state = 0, .external_lex_state = 38}, - [881] = {.lex_state = 0, .external_lex_state = 39}, + [828] = {.lex_state = 0, .external_lex_state = 30}, + [829] = {.lex_state = 0, .external_lex_state = 23}, + [830] = {.lex_state = 0, .external_lex_state = 22}, + [831] = {.lex_state = 0, .external_lex_state = 29}, + [832] = {.lex_state = 0, .external_lex_state = 29}, + [833] = {.lex_state = 0, .external_lex_state = 21}, + [834] = {.lex_state = 0, .external_lex_state = 21}, + [835] = {.lex_state = 0, .external_lex_state = 21}, + [836] = {.lex_state = 0, .external_lex_state = 28}, + [837] = {.lex_state = 0, .external_lex_state = 27}, + [838] = {.lex_state = 0, .external_lex_state = 26}, + [839] = {.lex_state = 0, .external_lex_state = 25}, + [840] = {.lex_state = 0, .external_lex_state = 24}, + [841] = {.lex_state = 0, .external_lex_state = 22}, + [842] = {.lex_state = 0, .external_lex_state = 23}, + [843] = {.lex_state = 0, .external_lex_state = 24}, + [844] = {.lex_state = 0, .external_lex_state = 25}, + [845] = {.lex_state = 0, .external_lex_state = 26}, + [846] = {.lex_state = 0, .external_lex_state = 27}, + [847] = {.lex_state = 0, .external_lex_state = 28}, + [848] = {.lex_state = 0, .external_lex_state = 23}, + [849] = {.lex_state = 0, .external_lex_state = 21}, + [850] = {.lex_state = 0, .external_lex_state = 21}, + [851] = {.lex_state = 0, .external_lex_state = 21}, + [852] = {.lex_state = 0, .external_lex_state = 29}, + [853] = {.lex_state = 0, .external_lex_state = 22}, + [854] = {.lex_state = 0, .external_lex_state = 22}, + [855] = {.lex_state = 0, .external_lex_state = 23}, + [856] = {.lex_state = 0, .external_lex_state = 22}, + [857] = {.lex_state = 0, .external_lex_state = 23}, + [858] = {.lex_state = 0, .external_lex_state = 30}, + [859] = {.lex_state = 0, .external_lex_state = 30}, + [860] = {.lex_state = 0, .external_lex_state = 31}, + [861] = {.lex_state = 5}, + [862] = {.lex_state = 0, .external_lex_state = 32}, + [863] = {.lex_state = 0, .external_lex_state = 33}, + [864] = {.lex_state = 0, .external_lex_state = 34}, + [865] = {.lex_state = 0, .external_lex_state = 35}, + [866] = {.lex_state = 0, .external_lex_state = 36}, + [867] = {.lex_state = 0, .external_lex_state = 37}, + [868] = {.lex_state = 0, .external_lex_state = 38}, + [869] = {.lex_state = 0, .external_lex_state = 39}, + [870] = {.lex_state = 0}, + [871] = {.lex_state = 0, .external_lex_state = 31}, + [872] = {.lex_state = 0, .external_lex_state = 40}, + [873] = {.lex_state = 0, .external_lex_state = 31}, + [874] = {.lex_state = 5}, + [875] = {.lex_state = 5}, + [876] = {.lex_state = 0}, + [877] = {.lex_state = 5}, + [878] = {.lex_state = 0, .external_lex_state = 32}, + [879] = {.lex_state = 0, .external_lex_state = 40}, + [880] = {.lex_state = 0, .external_lex_state = 33}, + [881] = {.lex_state = 0}, [882] = {.lex_state = 0}, - [883] = {.lex_state = 0, .external_lex_state = 31}, - [884] = {.lex_state = 0, .external_lex_state = 40}, - [885] = {.lex_state = 0, .external_lex_state = 34}, - [886] = {.lex_state = 5}, + [883] = {.lex_state = 0, .external_lex_state = 39}, + [884] = {.lex_state = 0, .external_lex_state = 38}, + [885] = {.lex_state = 0, .external_lex_state = 37}, + [886] = {.lex_state = 0, .external_lex_state = 36}, [887] = {.lex_state = 0, .external_lex_state = 31}, - [888] = {.lex_state = 0, .external_lex_state = 36}, - [889] = {.lex_state = 0}, - [890] = {.lex_state = 5}, - [891] = {.lex_state = 0, .external_lex_state = 37}, - [892] = {.lex_state = 0, .external_lex_state = 40}, - [893] = {.lex_state = 0, .external_lex_state = 38}, - [894] = {.lex_state = 0}, - [895] = {.lex_state = 0}, - [896] = {.lex_state = 0}, - [897] = {.lex_state = 0, .external_lex_state = 39}, - [898] = {.lex_state = 0, .external_lex_state = 38}, - [899] = {.lex_state = 0, .external_lex_state = 37}, + [888] = {.lex_state = 0, .external_lex_state = 35}, + [889] = {.lex_state = 0, .external_lex_state = 31}, + [890] = {.lex_state = 0, .external_lex_state = 34}, + [891] = {.lex_state = 0, .external_lex_state = 33}, + [892] = {.lex_state = 0, .external_lex_state = 32}, + [893] = {.lex_state = 5}, + [894] = {.lex_state = 0, .external_lex_state = 31}, + [895] = {.lex_state = 5}, + [896] = {.lex_state = 0, .external_lex_state = 32}, + [897] = {.lex_state = 0, .external_lex_state = 33}, + [898] = {.lex_state = 0, .external_lex_state = 34}, + [899] = {.lex_state = 0, .external_lex_state = 35}, [900] = {.lex_state = 0, .external_lex_state = 36}, - [901] = {.lex_state = 0, .external_lex_state = 31}, - [902] = {.lex_state = 0, .external_lex_state = 35}, - [903] = {.lex_state = 0, .external_lex_state = 34}, - [904] = {.lex_state = 0, .external_lex_state = 33}, - [905] = {.lex_state = 0, .external_lex_state = 32}, - [906] = {.lex_state = 0, .external_lex_state = 31}, - [907] = {.lex_state = 5}, - [908] = {.lex_state = 0, .external_lex_state = 32}, - [909] = {.lex_state = 0, .external_lex_state = 33}, - [910] = {.lex_state = 0, .external_lex_state = 34}, - [911] = {.lex_state = 0, .external_lex_state = 35}, - [912] = {.lex_state = 0, .external_lex_state = 36}, + [901] = {.lex_state = 0, .external_lex_state = 37}, + [902] = {.lex_state = 0, .external_lex_state = 38}, + [903] = {.lex_state = 0, .external_lex_state = 39}, + [904] = {.lex_state = 0}, + [905] = {.lex_state = 0, .external_lex_state = 31}, + [906] = {.lex_state = 0, .external_lex_state = 40}, + [907] = {.lex_state = 0, .external_lex_state = 34}, + [908] = {.lex_state = 5}, + [909] = {.lex_state = 0, .external_lex_state = 31}, + [910] = {.lex_state = 0, .external_lex_state = 36}, + [911] = {.lex_state = 0}, + [912] = {.lex_state = 5}, [913] = {.lex_state = 0, .external_lex_state = 37}, - [914] = {.lex_state = 0, .external_lex_state = 38}, - [915] = {.lex_state = 0, .external_lex_state = 39}, + [914] = {.lex_state = 0, .external_lex_state = 40}, + [915] = {.lex_state = 0, .external_lex_state = 38}, [916] = {.lex_state = 0}, - [917] = {.lex_state = 5}, - [918] = {.lex_state = 0, .external_lex_state = 40}, - [919] = {.lex_state = 0, .external_lex_state = 31}, - [920] = {.lex_state = 5}, - [921] = {.lex_state = 0, .external_lex_state = 41}, - [922] = {.lex_state = 0, .external_lex_state = 42}, - [923] = {.lex_state = 0, .external_lex_state = 41}, + [917] = {.lex_state = 0}, + [918] = {.lex_state = 0, .external_lex_state = 39}, + [919] = {.lex_state = 0, .external_lex_state = 38}, + [920] = {.lex_state = 0, .external_lex_state = 37}, + [921] = {.lex_state = 0}, + [922] = {.lex_state = 0, .external_lex_state = 36}, + [923] = {.lex_state = 0, .external_lex_state = 31}, [924] = {.lex_state = 0, .external_lex_state = 35}, - [925] = {.lex_state = 0, .external_lex_state = 31}, - [926] = {.lex_state = 0}, - [927] = {.lex_state = 5}, - [928] = {.lex_state = 0, .external_lex_state = 40}, - [929] = {.lex_state = 0}, - [930] = {.lex_state = 0, .external_lex_state = 39}, - [931] = {.lex_state = 0, .external_lex_state = 38}, - [932] = {.lex_state = 0, .external_lex_state = 40}, - [933] = {.lex_state = 0, .external_lex_state = 37}, - [934] = {.lex_state = 151}, - [935] = {.lex_state = 14}, - [936] = {.lex_state = 0, .external_lex_state = 39}, - [937] = {.lex_state = 15}, - [938] = {.lex_state = 0, .external_lex_state = 41}, - [939] = {.lex_state = 0, .external_lex_state = 42}, - [940] = {.lex_state = 0, .external_lex_state = 41}, - [941] = {.lex_state = 0}, - [942] = {.lex_state = 0, .external_lex_state = 36}, - [943] = {.lex_state = 0, .external_lex_state = 35}, - [944] = {.lex_state = 0, .external_lex_state = 34}, - [945] = {.lex_state = 0, .external_lex_state = 33}, - [946] = {.lex_state = 0, .external_lex_state = 32}, - [947] = {.lex_state = 5}, - [948] = {.lex_state = 0, .external_lex_state = 31}, - [949] = {.lex_state = 5}, + [925] = {.lex_state = 0, .external_lex_state = 34}, + [926] = {.lex_state = 0, .external_lex_state = 33}, + [927] = {.lex_state = 0, .external_lex_state = 32}, + [928] = {.lex_state = 0, .external_lex_state = 31}, + [929] = {.lex_state = 5}, + [930] = {.lex_state = 0, .external_lex_state = 32}, + [931] = {.lex_state = 0, .external_lex_state = 33}, + [932] = {.lex_state = 0, .external_lex_state = 34}, + [933] = {.lex_state = 0, .external_lex_state = 35}, + [934] = {.lex_state = 0, .external_lex_state = 36}, + [935] = {.lex_state = 0, .external_lex_state = 37}, + [936] = {.lex_state = 0, .external_lex_state = 38}, + [937] = {.lex_state = 0, .external_lex_state = 39}, + [938] = {.lex_state = 0}, + [939] = {.lex_state = 5}, + [940] = {.lex_state = 0, .external_lex_state = 40}, + [941] = {.lex_state = 0, .external_lex_state = 31}, + [942] = {.lex_state = 5}, + [943] = {.lex_state = 0, .external_lex_state = 41}, + [944] = {.lex_state = 0, .external_lex_state = 42}, + [945] = {.lex_state = 0, .external_lex_state = 41}, + [946] = {.lex_state = 0, .external_lex_state = 39}, + [947] = {.lex_state = 0, .external_lex_state = 31}, + [948] = {.lex_state = 0}, + [949] = {.lex_state = 0, .external_lex_state = 40}, [950] = {.lex_state = 5}, - [951] = {.lex_state = 14}, - [952] = {.lex_state = 0, .external_lex_state = 39}, - [953] = {.lex_state = 15}, - [954] = {.lex_state = 0, .external_lex_state = 41}, - [955] = {.lex_state = 0, .external_lex_state = 42}, - [956] = {.lex_state = 0, .external_lex_state = 41}, - [957] = {.lex_state = 0, .external_lex_state = 40}, - [958] = {.lex_state = 0}, - [959] = {.lex_state = 0, .external_lex_state = 39}, - [960] = {.lex_state = 0, .external_lex_state = 31}, - [961] = {.lex_state = 0, .external_lex_state = 38}, - [962] = {.lex_state = 0, .external_lex_state = 37}, - [963] = {.lex_state = 0, .external_lex_state = 36}, - [964] = {.lex_state = 0, .external_lex_state = 35}, - [965] = {.lex_state = 0, .external_lex_state = 34}, - [966] = {.lex_state = 0}, - [967] = {.lex_state = 14}, - [968] = {.lex_state = 0, .external_lex_state = 39}, - [969] = {.lex_state = 15}, - [970] = {.lex_state = 0, .external_lex_state = 41}, - [971] = {.lex_state = 0, .external_lex_state = 42}, - [972] = {.lex_state = 0, .external_lex_state = 41}, - [973] = {.lex_state = 0, .external_lex_state = 33}, - [974] = {.lex_state = 0, .external_lex_state = 32}, - [975] = {.lex_state = 5}, - [976] = {.lex_state = 0, .external_lex_state = 31}, - [977] = {.lex_state = 0, .external_lex_state = 31}, - [978] = {.lex_state = 0}, - [979] = {.lex_state = 5}, - [980] = {.lex_state = 16}, - [981] = {.lex_state = 0, .external_lex_state = 40}, - [982] = {.lex_state = 5}, - [983] = {.lex_state = 14}, - [984] = {.lex_state = 0, .external_lex_state = 39}, - [985] = {.lex_state = 15}, - [986] = {.lex_state = 0, .external_lex_state = 41}, - [987] = {.lex_state = 0, .external_lex_state = 42}, - [988] = {.lex_state = 0, .external_lex_state = 41}, - [989] = {.lex_state = 0}, - [990] = {.lex_state = 5}, - [991] = {.lex_state = 0, .external_lex_state = 39}, - [992] = {.lex_state = 5}, - [993] = {.lex_state = 5}, - [994] = {.lex_state = 0, .external_lex_state = 40}, - [995] = {.lex_state = 5}, - [996] = {.lex_state = 0, .external_lex_state = 38}, - [997] = {.lex_state = 0, .external_lex_state = 37}, - [998] = {.lex_state = 5}, - [999] = {.lex_state = 14}, - [1000] = {.lex_state = 0, .external_lex_state = 39}, - [1001] = {.lex_state = 15}, - [1002] = {.lex_state = 0, .external_lex_state = 41}, - [1003] = {.lex_state = 0, .external_lex_state = 42}, - [1004] = {.lex_state = 0, .external_lex_state = 41}, - [1005] = {.lex_state = 0, .external_lex_state = 36}, - [1006] = {.lex_state = 15}, - [1007] = {.lex_state = 0, .external_lex_state = 39}, - [1008] = {.lex_state = 0, .external_lex_state = 39}, - [1009] = {.lex_state = 14}, - [1010] = {.lex_state = 0}, - [1011] = {.lex_state = 0, .external_lex_state = 39}, - [1012] = {.lex_state = 0, .external_lex_state = 39}, - [1013] = {.lex_state = 0, .external_lex_state = 35}, - [1014] = {.lex_state = 0, .external_lex_state = 38}, - [1015] = {.lex_state = 14}, - [1016] = {.lex_state = 0, .external_lex_state = 39}, - [1017] = {.lex_state = 15}, - [1018] = {.lex_state = 0, .external_lex_state = 41}, - [1019] = {.lex_state = 0, .external_lex_state = 42}, - [1020] = {.lex_state = 0, .external_lex_state = 41}, - [1021] = {.lex_state = 0, .external_lex_state = 34}, - [1022] = {.lex_state = 0, .external_lex_state = 37}, - [1023] = {.lex_state = 0, .external_lex_state = 36}, - [1024] = {.lex_state = 0, .external_lex_state = 35}, - [1025] = {.lex_state = 0, .external_lex_state = 34}, - [1026] = {.lex_state = 0, .external_lex_state = 33}, - [1027] = {.lex_state = 0, .external_lex_state = 32}, - [1028] = {.lex_state = 5}, - [1029] = {.lex_state = 0, .external_lex_state = 33}, - [1030] = {.lex_state = 151}, + [951] = {.lex_state = 0, .external_lex_state = 40}, + [952] = {.lex_state = 0}, + [953] = {.lex_state = 0, .external_lex_state = 39}, + [954] = {.lex_state = 0}, + [955] = {.lex_state = 0, .external_lex_state = 38}, + [956] = {.lex_state = 151}, + [957] = {.lex_state = 14}, + [958] = {.lex_state = 0, .external_lex_state = 39}, + [959] = {.lex_state = 15}, + [960] = {.lex_state = 0, .external_lex_state = 41}, + [961] = {.lex_state = 0, .external_lex_state = 42}, + [962] = {.lex_state = 0, .external_lex_state = 41}, + [963] = {.lex_state = 5}, + [964] = {.lex_state = 0, .external_lex_state = 37}, + [965] = {.lex_state = 0, .external_lex_state = 36}, + [966] = {.lex_state = 0, .external_lex_state = 35}, + [967] = {.lex_state = 0, .external_lex_state = 34}, + [968] = {.lex_state = 0, .external_lex_state = 33}, + [969] = {.lex_state = 0, .external_lex_state = 32}, + [970] = {.lex_state = 5}, + [971] = {.lex_state = 0, .external_lex_state = 35}, + [972] = {.lex_state = 0, .external_lex_state = 31}, + [973] = {.lex_state = 14}, + [974] = {.lex_state = 0, .external_lex_state = 39}, + [975] = {.lex_state = 15}, + [976] = {.lex_state = 0, .external_lex_state = 41}, + [977] = {.lex_state = 0, .external_lex_state = 42}, + [978] = {.lex_state = 0, .external_lex_state = 41}, + [979] = {.lex_state = 0, .external_lex_state = 40}, + [980] = {.lex_state = 0}, + [981] = {.lex_state = 0, .external_lex_state = 39}, + [982] = {.lex_state = 0, .external_lex_state = 38}, + [983] = {.lex_state = 0, .external_lex_state = 31}, + [984] = {.lex_state = 0, .external_lex_state = 37}, + [985] = {.lex_state = 0, .external_lex_state = 36}, + [986] = {.lex_state = 0, .external_lex_state = 35}, + [987] = {.lex_state = 0, .external_lex_state = 34}, + [988] = {.lex_state = 0}, + [989] = {.lex_state = 14}, + [990] = {.lex_state = 0, .external_lex_state = 39}, + [991] = {.lex_state = 15}, + [992] = {.lex_state = 0, .external_lex_state = 41}, + [993] = {.lex_state = 0, .external_lex_state = 42}, + [994] = {.lex_state = 0, .external_lex_state = 41}, + [995] = {.lex_state = 0, .external_lex_state = 33}, + [996] = {.lex_state = 0, .external_lex_state = 32}, + [997] = {.lex_state = 5}, + [998] = {.lex_state = 0, .external_lex_state = 31}, + [999] = {.lex_state = 0, .external_lex_state = 31}, + [1000] = {.lex_state = 0}, + [1001] = {.lex_state = 5}, + [1002] = {.lex_state = 16}, + [1003] = {.lex_state = 0, .external_lex_state = 40}, + [1004] = {.lex_state = 5}, + [1005] = {.lex_state = 14}, + [1006] = {.lex_state = 0, .external_lex_state = 39}, + [1007] = {.lex_state = 15}, + [1008] = {.lex_state = 0, .external_lex_state = 41}, + [1009] = {.lex_state = 0, .external_lex_state = 42}, + [1010] = {.lex_state = 0, .external_lex_state = 41}, + [1011] = {.lex_state = 0}, + [1012] = {.lex_state = 5}, + [1013] = {.lex_state = 0, .external_lex_state = 39}, + [1014] = {.lex_state = 5}, + [1015] = {.lex_state = 5}, + [1016] = {.lex_state = 0, .external_lex_state = 40}, + [1017] = {.lex_state = 5}, + [1018] = {.lex_state = 0, .external_lex_state = 38}, + [1019] = {.lex_state = 0, .external_lex_state = 37}, + [1020] = {.lex_state = 5}, + [1021] = {.lex_state = 14}, + [1022] = {.lex_state = 0, .external_lex_state = 39}, + [1023] = {.lex_state = 15}, + [1024] = {.lex_state = 0, .external_lex_state = 41}, + [1025] = {.lex_state = 0, .external_lex_state = 42}, + [1026] = {.lex_state = 0, .external_lex_state = 41}, + [1027] = {.lex_state = 0, .external_lex_state = 36}, + [1028] = {.lex_state = 15}, + [1029] = {.lex_state = 0, .external_lex_state = 39}, + [1030] = {.lex_state = 0, .external_lex_state = 39}, [1031] = {.lex_state = 14}, - [1032] = {.lex_state = 0, .external_lex_state = 39}, - [1033] = {.lex_state = 15}, - [1034] = {.lex_state = 0, .external_lex_state = 41}, - [1035] = {.lex_state = 0, .external_lex_state = 42}, - [1036] = {.lex_state = 0, .external_lex_state = 41}, - [1037] = {.lex_state = 0, .external_lex_state = 32}, - [1038] = {.lex_state = 0, .external_lex_state = 31}, - [1039] = {.lex_state = 0, .external_lex_state = 43}, - [1040] = {.lex_state = 5}, - [1041] = {.lex_state = 0, .external_lex_state = 31}, + [1032] = {.lex_state = 0}, + [1033] = {.lex_state = 0, .external_lex_state = 39}, + [1034] = {.lex_state = 0, .external_lex_state = 39}, + [1035] = {.lex_state = 0, .external_lex_state = 35}, + [1036] = {.lex_state = 0, .external_lex_state = 38}, + [1037] = {.lex_state = 14}, + [1038] = {.lex_state = 0, .external_lex_state = 39}, + [1039] = {.lex_state = 15}, + [1040] = {.lex_state = 0, .external_lex_state = 41}, + [1041] = {.lex_state = 0, .external_lex_state = 42}, [1042] = {.lex_state = 0, .external_lex_state = 41}, - [1043] = {.lex_state = 0, .external_lex_state = 42}, - [1044] = {.lex_state = 0, .external_lex_state = 31}, - [1045] = {.lex_state = 0}, - [1046] = {.lex_state = 0}, - [1047] = {.lex_state = 14}, - [1048] = {.lex_state = 0, .external_lex_state = 39}, - [1049] = {.lex_state = 15}, - [1050] = {.lex_state = 0, .external_lex_state = 41}, - [1051] = {.lex_state = 0, .external_lex_state = 42}, - [1052] = {.lex_state = 0, .external_lex_state = 41}, - [1053] = {.lex_state = 5}, - [1054] = {.lex_state = 0, .external_lex_state = 41}, - [1055] = {.lex_state = 0, .external_lex_state = 31}, - [1056] = {.lex_state = 0, .external_lex_state = 44}, - [1057] = {.lex_state = 0, .external_lex_state = 44}, - [1058] = {.lex_state = 0, .external_lex_state = 44}, - [1059] = {.lex_state = 0, .external_lex_state = 45}, - [1060] = {.lex_state = 0, .external_lex_state = 46}, - [1061] = {.lex_state = 0, .external_lex_state = 40}, - [1062] = {.lex_state = 0, .external_lex_state = 47}, - [1063] = {.lex_state = 14}, - [1064] = {.lex_state = 0, .external_lex_state = 39}, - [1065] = {.lex_state = 15}, - [1066] = {.lex_state = 0, .external_lex_state = 41}, - [1067] = {.lex_state = 0, .external_lex_state = 42}, - [1068] = {.lex_state = 0, .external_lex_state = 41}, - [1069] = {.lex_state = 0, .external_lex_state = 39}, - [1070] = {.lex_state = 0, .external_lex_state = 48}, - [1071] = {.lex_state = 0, .external_lex_state = 49}, - [1072] = {.lex_state = 0, .external_lex_state = 50}, - [1073] = {.lex_state = 0, .external_lex_state = 51}, - [1074] = {.lex_state = 0}, - [1075] = {.lex_state = 0}, - [1076] = {.lex_state = 0}, - [1077] = {.lex_state = 0, .external_lex_state = 39}, - [1078] = {.lex_state = 0, .external_lex_state = 38}, - [1079] = {.lex_state = 14}, - [1080] = {.lex_state = 0, .external_lex_state = 39}, - [1081] = {.lex_state = 15}, - [1082] = {.lex_state = 0, .external_lex_state = 51}, - [1083] = {.lex_state = 0, .external_lex_state = 50}, - [1084] = {.lex_state = 0, .external_lex_state = 49}, - [1085] = {.lex_state = 0, .external_lex_state = 48}, - [1086] = {.lex_state = 0, .external_lex_state = 47}, - [1087] = {.lex_state = 0, .external_lex_state = 46}, - [1088] = {.lex_state = 0, .external_lex_state = 45}, - [1089] = {.lex_state = 0, .external_lex_state = 44}, - [1090] = {.lex_state = 0, .external_lex_state = 43}, - [1091] = {.lex_state = 0, .external_lex_state = 37}, - [1092] = {.lex_state = 0, .external_lex_state = 51}, - [1093] = {.lex_state = 0, .external_lex_state = 50}, - [1094] = {.lex_state = 0, .external_lex_state = 49}, - [1095] = {.lex_state = 0, .external_lex_state = 48}, - [1096] = {.lex_state = 0, .external_lex_state = 47}, - [1097] = {.lex_state = 0, .external_lex_state = 46}, - [1098] = {.lex_state = 0, .external_lex_state = 45}, - [1099] = {.lex_state = 0, .external_lex_state = 44}, - [1100] = {.lex_state = 0, .external_lex_state = 43}, - [1101] = {.lex_state = 0, .external_lex_state = 36}, - [1102] = {.lex_state = 0, .external_lex_state = 51}, - [1103] = {.lex_state = 0, .external_lex_state = 50}, - [1104] = {.lex_state = 0, .external_lex_state = 49}, - [1105] = {.lex_state = 0, .external_lex_state = 48}, - [1106] = {.lex_state = 0, .external_lex_state = 47}, - [1107] = {.lex_state = 0, .external_lex_state = 46}, - [1108] = {.lex_state = 0, .external_lex_state = 45}, - [1109] = {.lex_state = 0, .external_lex_state = 44}, - [1110] = {.lex_state = 0, .external_lex_state = 43}, - [1111] = {.lex_state = 0}, - [1112] = {.lex_state = 0, .external_lex_state = 51}, - [1113] = {.lex_state = 0, .external_lex_state = 50}, - [1114] = {.lex_state = 0, .external_lex_state = 49}, - [1115] = {.lex_state = 0, .external_lex_state = 48}, - [1116] = {.lex_state = 0, .external_lex_state = 47}, - [1117] = {.lex_state = 0, .external_lex_state = 46}, - [1118] = {.lex_state = 0, .external_lex_state = 45}, - [1119] = {.lex_state = 0, .external_lex_state = 44}, - [1120] = {.lex_state = 0, .external_lex_state = 43}, - [1121] = {.lex_state = 0, .external_lex_state = 35}, - [1122] = {.lex_state = 0, .external_lex_state = 51}, - [1123] = {.lex_state = 0, .external_lex_state = 50}, - [1124] = {.lex_state = 0, .external_lex_state = 49}, - [1125] = {.lex_state = 0, .external_lex_state = 48}, - [1126] = {.lex_state = 0, .external_lex_state = 47}, - [1127] = {.lex_state = 0, .external_lex_state = 46}, - [1128] = {.lex_state = 0, .external_lex_state = 45}, - [1129] = {.lex_state = 0, .external_lex_state = 44}, - [1130] = {.lex_state = 0, .external_lex_state = 43}, - [1131] = {.lex_state = 0, .external_lex_state = 34}, - [1132] = {.lex_state = 0, .external_lex_state = 51}, - [1133] = {.lex_state = 0, .external_lex_state = 50}, - [1134] = {.lex_state = 0, .external_lex_state = 49}, - [1135] = {.lex_state = 0, .external_lex_state = 48}, - [1136] = {.lex_state = 0, .external_lex_state = 47}, - [1137] = {.lex_state = 0, .external_lex_state = 46}, - [1138] = {.lex_state = 0, .external_lex_state = 45}, - [1139] = {.lex_state = 0, .external_lex_state = 44}, - [1140] = {.lex_state = 0, .external_lex_state = 43}, - [1141] = {.lex_state = 0, .external_lex_state = 33}, - [1142] = {.lex_state = 0, .external_lex_state = 51}, - [1143] = {.lex_state = 0, .external_lex_state = 50}, - [1144] = {.lex_state = 0, .external_lex_state = 49}, - [1145] = {.lex_state = 0, .external_lex_state = 48}, - [1146] = {.lex_state = 0, .external_lex_state = 47}, - [1147] = {.lex_state = 0, .external_lex_state = 46}, - [1148] = {.lex_state = 0, .external_lex_state = 45}, - [1149] = {.lex_state = 0, .external_lex_state = 44}, - [1150] = {.lex_state = 0, .external_lex_state = 43}, - [1151] = {.lex_state = 0, .external_lex_state = 32}, - [1152] = {.lex_state = 0, .external_lex_state = 51}, - [1153] = {.lex_state = 0, .external_lex_state = 50}, - [1154] = {.lex_state = 0, .external_lex_state = 49}, - [1155] = {.lex_state = 0, .external_lex_state = 48}, - [1156] = {.lex_state = 0, .external_lex_state = 47}, - [1157] = {.lex_state = 0, .external_lex_state = 46}, - [1158] = {.lex_state = 0, .external_lex_state = 45}, - [1159] = {.lex_state = 0, .external_lex_state = 44}, - [1160] = {.lex_state = 0, .external_lex_state = 43}, - [1161] = {.lex_state = 5}, - [1162] = {.lex_state = 0, .external_lex_state = 51}, - [1163] = {.lex_state = 0, .external_lex_state = 50}, - [1164] = {.lex_state = 0, .external_lex_state = 49}, - [1165] = {.lex_state = 0, .external_lex_state = 48}, - [1166] = {.lex_state = 0, .external_lex_state = 47}, - [1167] = {.lex_state = 0, .external_lex_state = 46}, - [1168] = {.lex_state = 0, .external_lex_state = 45}, - [1169] = {.lex_state = 0, .external_lex_state = 44}, - [1170] = {.lex_state = 0, .external_lex_state = 43}, - [1171] = {.lex_state = 0, .external_lex_state = 31}, - [1172] = {.lex_state = 0, .external_lex_state = 51}, - [1173] = {.lex_state = 0, .external_lex_state = 50}, - [1174] = {.lex_state = 0, .external_lex_state = 49}, - [1175] = {.lex_state = 0, .external_lex_state = 48}, - [1176] = {.lex_state = 0, .external_lex_state = 47}, - [1177] = {.lex_state = 0, .external_lex_state = 46}, - [1178] = {.lex_state = 0, .external_lex_state = 45}, - [1179] = {.lex_state = 0, .external_lex_state = 44}, - [1180] = {.lex_state = 0, .external_lex_state = 43}, - [1181] = {.lex_state = 0, .external_lex_state = 31}, - [1182] = {.lex_state = 0, .external_lex_state = 44}, - [1183] = {.lex_state = 0, .external_lex_state = 44}, - [1184] = {.lex_state = 0, .external_lex_state = 44}, - [1185] = {.lex_state = 0, .external_lex_state = 44}, - [1186] = {.lex_state = 0, .external_lex_state = 44}, - [1187] = {.lex_state = 0, .external_lex_state = 44}, - [1188] = {.lex_state = 0, .external_lex_state = 44}, - [1189] = {.lex_state = 0, .external_lex_state = 44}, - [1190] = {.lex_state = 0, .external_lex_state = 44}, + [1043] = {.lex_state = 0, .external_lex_state = 34}, + [1044] = {.lex_state = 0, .external_lex_state = 37}, + [1045] = {.lex_state = 0, .external_lex_state = 36}, + [1046] = {.lex_state = 0, .external_lex_state = 35}, + [1047] = {.lex_state = 0, .external_lex_state = 34}, + [1048] = {.lex_state = 0, .external_lex_state = 33}, + [1049] = {.lex_state = 0, .external_lex_state = 32}, + [1050] = {.lex_state = 5}, + [1051] = {.lex_state = 0, .external_lex_state = 33}, + [1052] = {.lex_state = 151}, + [1053] = {.lex_state = 14}, + [1054] = {.lex_state = 0, .external_lex_state = 39}, + [1055] = {.lex_state = 15}, + [1056] = {.lex_state = 0, .external_lex_state = 41}, + [1057] = {.lex_state = 0, .external_lex_state = 42}, + [1058] = {.lex_state = 0, .external_lex_state = 41}, + [1059] = {.lex_state = 0, .external_lex_state = 32}, + [1060] = {.lex_state = 0, .external_lex_state = 31}, + [1061] = {.lex_state = 0, .external_lex_state = 43}, + [1062] = {.lex_state = 5}, + [1063] = {.lex_state = 0, .external_lex_state = 31}, + [1064] = {.lex_state = 0, .external_lex_state = 41}, + [1065] = {.lex_state = 0, .external_lex_state = 42}, + [1066] = {.lex_state = 0, .external_lex_state = 31}, + [1067] = {.lex_state = 0}, + [1068] = {.lex_state = 5}, + [1069] = {.lex_state = 14}, + [1070] = {.lex_state = 0, .external_lex_state = 39}, + [1071] = {.lex_state = 15}, + [1072] = {.lex_state = 0, .external_lex_state = 41}, + [1073] = {.lex_state = 0, .external_lex_state = 42}, + [1074] = {.lex_state = 0, .external_lex_state = 41}, + [1075] = {.lex_state = 0, .external_lex_state = 40}, + [1076] = {.lex_state = 0, .external_lex_state = 41}, + [1077] = {.lex_state = 0, .external_lex_state = 31}, + [1078] = {.lex_state = 0, .external_lex_state = 44}, + [1079] = {.lex_state = 0, .external_lex_state = 44}, + [1080] = {.lex_state = 0, .external_lex_state = 44}, + [1081] = {.lex_state = 0, .external_lex_state = 45}, + [1082] = {.lex_state = 0, .external_lex_state = 46}, + [1083] = {.lex_state = 0}, + [1084] = {.lex_state = 0, .external_lex_state = 47}, + [1085] = {.lex_state = 14}, + [1086] = {.lex_state = 0, .external_lex_state = 39}, + [1087] = {.lex_state = 15}, + [1088] = {.lex_state = 0, .external_lex_state = 41}, + [1089] = {.lex_state = 0, .external_lex_state = 42}, + [1090] = {.lex_state = 0, .external_lex_state = 41}, + [1091] = {.lex_state = 0, .external_lex_state = 39}, + [1092] = {.lex_state = 0, .external_lex_state = 48}, + [1093] = {.lex_state = 0, .external_lex_state = 49}, + [1094] = {.lex_state = 0, .external_lex_state = 50}, + [1095] = {.lex_state = 0, .external_lex_state = 51}, + [1096] = {.lex_state = 0}, + [1097] = {.lex_state = 0}, + [1098] = {.lex_state = 0, .external_lex_state = 38}, + [1099] = {.lex_state = 0, .external_lex_state = 37}, + [1100] = {.lex_state = 0, .external_lex_state = 36}, + [1101] = {.lex_state = 14}, + [1102] = {.lex_state = 0, .external_lex_state = 39}, + [1103] = {.lex_state = 15}, + [1104] = {.lex_state = 0, .external_lex_state = 51}, + [1105] = {.lex_state = 0, .external_lex_state = 50}, + [1106] = {.lex_state = 0, .external_lex_state = 49}, + [1107] = {.lex_state = 0, .external_lex_state = 48}, + [1108] = {.lex_state = 0, .external_lex_state = 47}, + [1109] = {.lex_state = 0, .external_lex_state = 46}, + [1110] = {.lex_state = 0, .external_lex_state = 45}, + [1111] = {.lex_state = 0, .external_lex_state = 44}, + [1112] = {.lex_state = 0, .external_lex_state = 43}, + [1113] = {.lex_state = 0, .external_lex_state = 35}, + [1114] = {.lex_state = 0, .external_lex_state = 51}, + [1115] = {.lex_state = 0, .external_lex_state = 50}, + [1116] = {.lex_state = 0, .external_lex_state = 49}, + [1117] = {.lex_state = 0, .external_lex_state = 48}, + [1118] = {.lex_state = 0, .external_lex_state = 47}, + [1119] = {.lex_state = 0, .external_lex_state = 46}, + [1120] = {.lex_state = 0, .external_lex_state = 45}, + [1121] = {.lex_state = 0, .external_lex_state = 44}, + [1122] = {.lex_state = 0, .external_lex_state = 43}, + [1123] = {.lex_state = 0, .external_lex_state = 34}, + [1124] = {.lex_state = 0, .external_lex_state = 51}, + [1125] = {.lex_state = 0, .external_lex_state = 50}, + [1126] = {.lex_state = 0, .external_lex_state = 49}, + [1127] = {.lex_state = 0, .external_lex_state = 48}, + [1128] = {.lex_state = 0, .external_lex_state = 47}, + [1129] = {.lex_state = 0, .external_lex_state = 46}, + [1130] = {.lex_state = 0, .external_lex_state = 45}, + [1131] = {.lex_state = 0, .external_lex_state = 44}, + [1132] = {.lex_state = 0, .external_lex_state = 43}, + [1133] = {.lex_state = 0}, + [1134] = {.lex_state = 0, .external_lex_state = 51}, + [1135] = {.lex_state = 0, .external_lex_state = 50}, + [1136] = {.lex_state = 0, .external_lex_state = 49}, + [1137] = {.lex_state = 0, .external_lex_state = 48}, + [1138] = {.lex_state = 0, .external_lex_state = 47}, + [1139] = {.lex_state = 0, .external_lex_state = 46}, + [1140] = {.lex_state = 0, .external_lex_state = 45}, + [1141] = {.lex_state = 0, .external_lex_state = 44}, + [1142] = {.lex_state = 0, .external_lex_state = 43}, + [1143] = {.lex_state = 0, .external_lex_state = 33}, + [1144] = {.lex_state = 0, .external_lex_state = 51}, + [1145] = {.lex_state = 0, .external_lex_state = 50}, + [1146] = {.lex_state = 0, .external_lex_state = 49}, + [1147] = {.lex_state = 0, .external_lex_state = 48}, + [1148] = {.lex_state = 0, .external_lex_state = 47}, + [1149] = {.lex_state = 0, .external_lex_state = 46}, + [1150] = {.lex_state = 0, .external_lex_state = 45}, + [1151] = {.lex_state = 0, .external_lex_state = 44}, + [1152] = {.lex_state = 0, .external_lex_state = 43}, + [1153] = {.lex_state = 0, .external_lex_state = 32}, + [1154] = {.lex_state = 0, .external_lex_state = 51}, + [1155] = {.lex_state = 0, .external_lex_state = 50}, + [1156] = {.lex_state = 0, .external_lex_state = 49}, + [1157] = {.lex_state = 0, .external_lex_state = 48}, + [1158] = {.lex_state = 0, .external_lex_state = 47}, + [1159] = {.lex_state = 0, .external_lex_state = 46}, + [1160] = {.lex_state = 0, .external_lex_state = 45}, + [1161] = {.lex_state = 0, .external_lex_state = 44}, + [1162] = {.lex_state = 0, .external_lex_state = 43}, + [1163] = {.lex_state = 5}, + [1164] = {.lex_state = 0, .external_lex_state = 51}, + [1165] = {.lex_state = 0, .external_lex_state = 50}, + [1166] = {.lex_state = 0, .external_lex_state = 49}, + [1167] = {.lex_state = 0, .external_lex_state = 48}, + [1168] = {.lex_state = 0, .external_lex_state = 47}, + [1169] = {.lex_state = 0, .external_lex_state = 46}, + [1170] = {.lex_state = 0, .external_lex_state = 45}, + [1171] = {.lex_state = 0, .external_lex_state = 44}, + [1172] = {.lex_state = 0, .external_lex_state = 43}, + [1173] = {.lex_state = 0, .external_lex_state = 31}, + [1174] = {.lex_state = 0, .external_lex_state = 51}, + [1175] = {.lex_state = 0, .external_lex_state = 50}, + [1176] = {.lex_state = 0, .external_lex_state = 49}, + [1177] = {.lex_state = 0, .external_lex_state = 48}, + [1178] = {.lex_state = 0, .external_lex_state = 47}, + [1179] = {.lex_state = 0, .external_lex_state = 46}, + [1180] = {.lex_state = 0, .external_lex_state = 45}, + [1181] = {.lex_state = 0, .external_lex_state = 44}, + [1182] = {.lex_state = 0, .external_lex_state = 43}, + [1183] = {.lex_state = 0, .external_lex_state = 31}, + [1184] = {.lex_state = 0, .external_lex_state = 51}, + [1185] = {.lex_state = 0, .external_lex_state = 50}, + [1186] = {.lex_state = 0, .external_lex_state = 49}, + [1187] = {.lex_state = 0, .external_lex_state = 48}, + [1188] = {.lex_state = 0, .external_lex_state = 47}, + [1189] = {.lex_state = 0, .external_lex_state = 46}, + [1190] = {.lex_state = 0, .external_lex_state = 45}, [1191] = {.lex_state = 0, .external_lex_state = 44}, + [1192] = {.lex_state = 0, .external_lex_state = 43}, + [1193] = {.lex_state = 0}, + [1194] = {.lex_state = 0, .external_lex_state = 51}, + [1195] = {.lex_state = 0, .external_lex_state = 50}, + [1196] = {.lex_state = 0, .external_lex_state = 49}, + [1197] = {.lex_state = 0, .external_lex_state = 48}, + [1198] = {.lex_state = 0, .external_lex_state = 47}, + [1199] = {.lex_state = 0, .external_lex_state = 46}, + [1200] = {.lex_state = 0, .external_lex_state = 45}, + [1201] = {.lex_state = 0, .external_lex_state = 44}, + [1202] = {.lex_state = 0, .external_lex_state = 43}, + [1203] = {.lex_state = 5}, + [1204] = {.lex_state = 0, .external_lex_state = 44}, + [1205] = {.lex_state = 0, .external_lex_state = 44}, + [1206] = {.lex_state = 0, .external_lex_state = 44}, + [1207] = {.lex_state = 0, .external_lex_state = 44}, + [1208] = {.lex_state = 0, .external_lex_state = 44}, + [1209] = {.lex_state = 0, .external_lex_state = 44}, + [1210] = {.lex_state = 0, .external_lex_state = 44}, + [1211] = {.lex_state = 0, .external_lex_state = 44}, + [1212] = {.lex_state = 0, .external_lex_state = 44}, + [1213] = {.lex_state = 0, .external_lex_state = 44}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -5172,51 +5216,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__error] = ACTIONS(1), }, [1] = { - [sym_inline] = STATE(1075), - [sym__inline] = STATE(1074), - [sym__element] = STATE(38), - [sym_emphasis] = STATE(135), - [sym_emphasis_begin] = STATE(1073), - [sym_strong] = STATE(135), - [sym_strong_begin] = STATE(1072), - [sym_superscript] = STATE(135), - [sym_superscript_begin] = STATE(1071), - [sym_subscript] = STATE(135), - [sym_subscript_begin] = STATE(1070), - [sym_highlighted] = STATE(135), - [sym_highlighted_begin] = STATE(1062), - [sym_insert] = STATE(135), - [sym_insert_begin] = STATE(1060), - [sym_delete] = STATE(135), - [sym_delete_begin] = STATE(1059), - [sym_hard_line_break] = STATE(135), - [sym__smart_punctuation] = STATE(135), - [sym_autolink] = STATE(135), - [sym_footnote_reference] = STATE(135), - [sym_footnote_marker_begin] = STATE(1058), - [sym__image] = STATE(135), - [sym_full_reference_image] = STATE(135), - [sym_collapsed_reference_image] = STATE(135), - [sym_inline_image] = STATE(135), - [sym_image_description] = STATE(620), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(135), - [sym_full_reference_link] = STATE(135), - [sym_collapsed_reference_link] = STATE(135), - [sym_inline_link] = STATE(135), - [sym_link_text] = STATE(644), - [sym_span] = STATE(38), - [sym__bracketed_text_begin] = STATE(1056), - [sym__comment_with_spaces] = STATE(135), - [sym_raw_inline] = STATE(135), - [sym_math] = STATE(135), - [sym_verbatim] = STATE(135), - [sym__todo_highlights] = STATE(135), - [sym_todo] = STATE(135), - [sym_note] = STATE(135), - [sym__symbol_fallback] = STATE(135), - [aux_sym__text] = STATE(121), - [aux_sym__inline_repeat1] = STATE(38), + [sym_inline] = STATE(1097), + [sym__inline] = STATE(1096), + [sym__element] = STATE(39), + [sym_emphasis] = STATE(141), + [sym_emphasis_begin] = STATE(1095), + [sym_strong] = STATE(141), + [sym_strong_begin] = STATE(1094), + [sym_superscript] = STATE(141), + [sym_superscript_begin] = STATE(1093), + [sym_subscript] = STATE(141), + [sym_subscript_begin] = STATE(1092), + [sym_highlighted] = STATE(141), + [sym_highlighted_begin] = STATE(1084), + [sym_insert] = STATE(141), + [sym_insert_begin] = STATE(1082), + [sym_delete] = STATE(141), + [sym_delete_begin] = STATE(1081), + [sym_hard_line_break] = STATE(151), + [sym__smart_punctuation] = STATE(151), + [sym_autolink] = STATE(151), + [sym_footnote_reference] = STATE(141), + [sym_footnote_marker_begin] = STATE(1080), + [sym__image] = STATE(141), + [sym_full_reference_image] = STATE(141), + [sym_collapsed_reference_image] = STATE(141), + [sym_inline_image] = STATE(141), + [sym_image_description] = STATE(666), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(141), + [sym_full_reference_link] = STATE(141), + [sym_collapsed_reference_link] = STATE(141), + [sym_inline_link] = STATE(141), + [sym_link_text] = STATE(652), + [sym_span] = STATE(39), + [sym__bracketed_text_begin] = STATE(1078), + [sym__comment_with_spaces] = STATE(151), + [sym_raw_inline] = STATE(151), + [sym_math] = STATE(151), + [sym_verbatim] = STATE(151), + [sym__todo_highlights] = STATE(151), + [sym_todo] = STATE(151), + [sym_note] = STATE(151), + [sym__symbol_fallback] = STATE(151), + [aux_sym__text] = STATE(125), + [aux_sym__inline_repeat1] = STATE(39), [anon_sym_LBRACE_] = ACTIONS(3), [anon_sym__] = ACTIONS(5), [anon_sym_LBRACE_STAR] = ACTIONS(7), @@ -5253,50 +5297,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(49), }, [2] = { - [sym__inline] = STATE(1008), - [sym__element] = STATE(107), - [sym_emphasis] = STATE(140), - [sym_emphasis_begin] = STATE(1162), - [sym_strong] = STATE(140), - [sym_strong_begin] = STATE(1163), - [sym_superscript] = STATE(140), - [sym_superscript_begin] = STATE(1164), - [sym_subscript] = STATE(140), - [sym_subscript_begin] = STATE(1165), - [sym_highlighted] = STATE(140), - [sym_highlighted_begin] = STATE(1166), - [sym_insert] = STATE(140), - [sym_insert_begin] = STATE(1167), - [sym_delete] = STATE(140), - [sym_delete_begin] = STATE(1168), - [sym_hard_line_break] = STATE(140), - [sym__smart_punctuation] = STATE(140), - [sym_autolink] = STATE(140), - [sym_footnote_reference] = STATE(140), - [sym_footnote_marker_begin] = STATE(1169), - [sym__image] = STATE(140), - [sym_full_reference_image] = STATE(140), - [sym_collapsed_reference_image] = STATE(140), - [sym_inline_image] = STATE(140), - [sym_image_description] = STATE(625), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(140), - [sym_full_reference_link] = STATE(140), - [sym_collapsed_reference_link] = STATE(140), - [sym_inline_link] = STATE(140), - [sym_link_text] = STATE(624), - [sym_span] = STATE(107), - [sym__bracketed_text_begin] = STATE(1190), - [sym__comment_with_spaces] = STATE(140), - [sym_raw_inline] = STATE(140), - [sym_math] = STATE(140), - [sym_verbatim] = STATE(140), - [sym__todo_highlights] = STATE(140), - [sym_todo] = STATE(140), - [sym_note] = STATE(140), - [sym__symbol_fallback] = STATE(140), - [aux_sym__text] = STATE(124), - [aux_sym__inline_repeat1] = STATE(107), + [sym__inline] = STATE(1030), + [sym__element] = STATE(58), + [sym_emphasis] = STATE(148), + [sym_emphasis_begin] = STATE(1184), + [sym_strong] = STATE(148), + [sym_strong_begin] = STATE(1185), + [sym_superscript] = STATE(148), + [sym_superscript_begin] = STATE(1186), + [sym_subscript] = STATE(148), + [sym_subscript_begin] = STATE(1187), + [sym_highlighted] = STATE(148), + [sym_highlighted_begin] = STATE(1188), + [sym_insert] = STATE(148), + [sym_insert_begin] = STATE(1189), + [sym_delete] = STATE(148), + [sym_delete_begin] = STATE(1190), + [sym_hard_line_break] = STATE(139), + [sym__smart_punctuation] = STATE(139), + [sym_autolink] = STATE(139), + [sym_footnote_reference] = STATE(148), + [sym_footnote_marker_begin] = STATE(1191), + [sym__image] = STATE(148), + [sym_full_reference_image] = STATE(148), + [sym_collapsed_reference_image] = STATE(148), + [sym_inline_image] = STATE(148), + [sym_image_description] = STATE(648), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(148), + [sym_full_reference_link] = STATE(148), + [sym_collapsed_reference_link] = STATE(148), + [sym_inline_link] = STATE(148), + [sym_link_text] = STATE(647), + [sym_span] = STATE(58), + [sym__bracketed_text_begin] = STATE(1212), + [sym__comment_with_spaces] = STATE(139), + [sym_raw_inline] = STATE(139), + [sym_math] = STATE(139), + [sym_verbatim] = STATE(139), + [sym__todo_highlights] = STATE(139), + [sym_todo] = STATE(139), + [sym_note] = STATE(139), + [sym__symbol_fallback] = STATE(139), + [aux_sym__text] = STATE(123), + [aux_sym__inline_repeat1] = STATE(58), [anon_sym_LBRACE_] = ACTIONS(51), [anon_sym__] = ACTIONS(53), [anon_sym_LBRACE_STAR] = ACTIONS(55), @@ -5334,50 +5378,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__square_bracket_span_end] = ACTIONS(99), }, [3] = { - [sym__inline] = STATE(1021), - [sym__element] = STATE(106), - [sym_emphasis] = STATE(139), - [sym_emphasis_begin] = STATE(1102), - [sym_strong] = STATE(139), - [sym_strong_begin] = STATE(1103), - [sym_superscript] = STATE(139), - [sym_superscript_begin] = STATE(1104), - [sym_subscript] = STATE(139), - [sym_subscript_begin] = STATE(1105), - [sym_highlighted] = STATE(139), - [sym_highlighted_begin] = STATE(1106), - [sym_insert] = STATE(139), - [sym_insert_begin] = STATE(1107), - [sym_delete] = STATE(139), - [sym_delete_begin] = STATE(1108), - [sym_hard_line_break] = STATE(139), - [sym__smart_punctuation] = STATE(139), - [sym_autolink] = STATE(139), - [sym_footnote_reference] = STATE(139), - [sym_footnote_marker_begin] = STATE(1109), - [sym__image] = STATE(139), - [sym_full_reference_image] = STATE(139), - [sym_collapsed_reference_image] = STATE(139), - [sym_inline_image] = STATE(139), - [sym_image_description] = STATE(623), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(139), - [sym_full_reference_link] = STATE(139), - [sym_collapsed_reference_link] = STATE(139), - [sym_inline_link] = STATE(139), - [sym_link_text] = STATE(621), - [sym_span] = STATE(106), - [sym__bracketed_text_begin] = STATE(1184), - [sym__comment_with_spaces] = STATE(139), - [sym_raw_inline] = STATE(139), - [sym_math] = STATE(139), - [sym_verbatim] = STATE(139), - [sym__todo_highlights] = STATE(139), - [sym_todo] = STATE(139), - [sym_note] = STATE(139), - [sym__symbol_fallback] = STATE(139), - [aux_sym__text] = STATE(126), - [aux_sym__inline_repeat1] = STATE(106), + [sym__inline] = STATE(1019), + [sym__element] = STATE(22), + [sym_emphasis] = STATE(147), + [sym_emphasis_begin] = STATE(1154), + [sym_strong] = STATE(147), + [sym_strong_begin] = STATE(1155), + [sym_superscript] = STATE(147), + [sym_superscript_begin] = STATE(1156), + [sym_subscript] = STATE(147), + [sym_subscript_begin] = STATE(1157), + [sym_highlighted] = STATE(147), + [sym_highlighted_begin] = STATE(1158), + [sym_insert] = STATE(147), + [sym_insert_begin] = STATE(1159), + [sym_delete] = STATE(147), + [sym_delete_begin] = STATE(1160), + [sym_hard_line_break] = STATE(145), + [sym__smart_punctuation] = STATE(145), + [sym_autolink] = STATE(145), + [sym_footnote_reference] = STATE(147), + [sym_footnote_marker_begin] = STATE(1161), + [sym__image] = STATE(147), + [sym_full_reference_image] = STATE(147), + [sym_collapsed_reference_image] = STATE(147), + [sym_inline_image] = STATE(147), + [sym_image_description] = STATE(665), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(147), + [sym_full_reference_link] = STATE(147), + [sym_collapsed_reference_link] = STATE(147), + [sym_inline_link] = STATE(147), + [sym_link_text] = STATE(664), + [sym_span] = STATE(22), + [sym__bracketed_text_begin] = STATE(1209), + [sym__comment_with_spaces] = STATE(145), + [sym_raw_inline] = STATE(145), + [sym_math] = STATE(145), + [sym_verbatim] = STATE(145), + [sym__todo_highlights] = STATE(145), + [sym_todo] = STATE(145), + [sym_note] = STATE(145), + [sym__symbol_fallback] = STATE(145), + [aux_sym__text] = STATE(124), + [aux_sym__inline_repeat1] = STATE(22), [anon_sym_LBRACE_] = ACTIONS(101), [anon_sym__] = ACTIONS(103), [anon_sym_LBRACE_STAR] = ACTIONS(105), @@ -5414,210 +5458,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(147), }, [4] = { - [sym__inline_without_trailing_space] = STATE(904), - [sym__element] = STATE(536), - [sym_emphasis] = STATE(138), - [sym_emphasis_begin] = STATE(1092), - [sym_strong] = STATE(138), - [sym_strong_begin] = STATE(1093), - [sym_superscript] = STATE(138), - [sym_superscript_begin] = STATE(1094), - [sym_subscript] = STATE(138), - [sym_subscript_begin] = STATE(1095), - [sym_highlighted] = STATE(138), - [sym_highlighted_begin] = STATE(1096), - [sym_insert] = STATE(138), - [sym_insert_begin] = STATE(1097), - [sym_delete] = STATE(138), - [sym_delete_begin] = STATE(1098), - [sym_hard_line_break] = STATE(138), - [sym__smart_punctuation] = STATE(138), - [sym_autolink] = STATE(138), - [sym_footnote_reference] = STATE(138), - [sym_footnote_marker_begin] = STATE(1099), - [sym__image] = STATE(138), - [sym_full_reference_image] = STATE(138), - [sym_collapsed_reference_image] = STATE(138), - [sym_inline_image] = STATE(138), - [sym_image_description] = STATE(626), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(138), - [sym_full_reference_link] = STATE(138), - [sym_collapsed_reference_link] = STATE(138), - [sym_inline_link] = STATE(138), - [sym_link_text] = STATE(627), - [sym_span] = STATE(536), - [sym__bracketed_text_begin] = STATE(1183), - [sym__comment_with_spaces] = STATE(138), - [sym_raw_inline] = STATE(138), - [sym_math] = STATE(138), - [sym_verbatim] = STATE(138), - [sym__todo_highlights] = STATE(138), - [sym_todo] = STATE(138), - [sym_note] = STATE(138), - [sym__symbol_fallback] = STATE(138), - [aux_sym__text] = STATE(127), - [aux_sym__inline_repeat1] = STATE(118), - [anon_sym_LBRACE_] = ACTIONS(149), - [anon_sym__] = ACTIONS(151), - [anon_sym_LBRACE_STAR] = ACTIONS(153), - [anon_sym_STAR] = ACTIONS(155), - [anon_sym_LBRACE_CARET] = ACTIONS(157), - [anon_sym_CARET] = ACTIONS(157), - [anon_sym_LBRACE_TILDE] = ACTIONS(159), - [anon_sym_TILDE] = ACTIONS(159), - [anon_sym_LBRACE_EQ] = ACTIONS(161), - [anon_sym_LBRACE_PLUS] = ACTIONS(163), - [anon_sym_LBRACE_DASH] = ACTIONS(165), - [anon_sym_BSLASH] = ACTIONS(167), - [sym_quotation_marks] = ACTIONS(169), - [sym_ellipsis] = ACTIONS(169), - [sym_em_dash] = ACTIONS(169), - [sym_en_dash] = ACTIONS(171), - [sym_backslash_escape] = ACTIONS(171), - [anon_sym_LT] = ACTIONS(173), - [sym_symbol] = ACTIONS(169), - [anon_sym_LBRACK_CARET] = ACTIONS(175), - [anon_sym_BANG_LBRACK] = ACTIONS(177), - [anon_sym_LBRACK] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(181), - [anon_sym_DOLLAR] = ACTIONS(183), - [anon_sym_TODO] = ACTIONS(185), - [anon_sym_WIP] = ACTIONS(185), - [anon_sym_NOTE] = ACTIONS(187), - [anon_sym_INFO] = ACTIONS(187), - [anon_sym_XXX] = ACTIONS(187), - [sym_fixme] = ACTIONS(169), - [sym__whitespace1] = ACTIONS(189), - [sym__newline] = ACTIONS(191), - [aux_sym__text_token1] = ACTIONS(193), - [sym__verbatim_begin] = ACTIONS(195), - }, - [5] = { - [sym__inline] = STATE(1013), + [sym__inline] = STATE(1044), [sym__element] = STATE(22), - [sym_emphasis] = STATE(137), - [sym_emphasis_begin] = STATE(1112), - [sym_strong] = STATE(137), - [sym_strong_begin] = STATE(1113), - [sym_superscript] = STATE(137), - [sym_superscript_begin] = STATE(1114), - [sym_subscript] = STATE(137), - [sym_subscript_begin] = STATE(1115), - [sym_highlighted] = STATE(137), - [sym_highlighted_begin] = STATE(1116), - [sym_insert] = STATE(137), - [sym_insert_begin] = STATE(1117), - [sym_delete] = STATE(137), - [sym_delete_begin] = STATE(1118), - [sym_hard_line_break] = STATE(137), - [sym__smart_punctuation] = STATE(137), - [sym_autolink] = STATE(137), - [sym_footnote_reference] = STATE(137), - [sym_footnote_marker_begin] = STATE(1119), - [sym__image] = STATE(137), - [sym_full_reference_image] = STATE(137), - [sym_collapsed_reference_image] = STATE(137), - [sym_inline_image] = STATE(137), - [sym_image_description] = STATE(636), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(137), - [sym_full_reference_link] = STATE(137), - [sym_collapsed_reference_link] = STATE(137), - [sym_inline_link] = STATE(137), - [sym_link_text] = STATE(647), + [sym_emphasis] = STATE(147), + [sym_emphasis_begin] = STATE(1154), + [sym_strong] = STATE(147), + [sym_strong_begin] = STATE(1155), + [sym_superscript] = STATE(147), + [sym_superscript_begin] = STATE(1156), + [sym_subscript] = STATE(147), + [sym_subscript_begin] = STATE(1157), + [sym_highlighted] = STATE(147), + [sym_highlighted_begin] = STATE(1158), + [sym_insert] = STATE(147), + [sym_insert_begin] = STATE(1159), + [sym_delete] = STATE(147), + [sym_delete_begin] = STATE(1160), + [sym_hard_line_break] = STATE(145), + [sym__smart_punctuation] = STATE(145), + [sym_autolink] = STATE(145), + [sym_footnote_reference] = STATE(147), + [sym_footnote_marker_begin] = STATE(1161), + [sym__image] = STATE(147), + [sym_full_reference_image] = STATE(147), + [sym_collapsed_reference_image] = STATE(147), + [sym_inline_image] = STATE(147), + [sym_image_description] = STATE(665), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(147), + [sym_full_reference_link] = STATE(147), + [sym_collapsed_reference_link] = STATE(147), + [sym_inline_link] = STATE(147), + [sym_link_text] = STATE(664), [sym_span] = STATE(22), - [sym__bracketed_text_begin] = STATE(1185), - [sym__comment_with_spaces] = STATE(137), - [sym_raw_inline] = STATE(137), - [sym_math] = STATE(137), - [sym_verbatim] = STATE(137), - [sym__todo_highlights] = STATE(137), - [sym_todo] = STATE(137), - [sym_note] = STATE(137), - [sym__symbol_fallback] = STATE(137), - [aux_sym__text] = STATE(122), + [sym__bracketed_text_begin] = STATE(1209), + [sym__comment_with_spaces] = STATE(145), + [sym_raw_inline] = STATE(145), + [sym_math] = STATE(145), + [sym_verbatim] = STATE(145), + [sym__todo_highlights] = STATE(145), + [sym_todo] = STATE(145), + [sym_note] = STATE(145), + [sym__symbol_fallback] = STATE(145), + [aux_sym__text] = STATE(124), [aux_sym__inline_repeat1] = STATE(22), - [anon_sym_LBRACE_] = ACTIONS(197), - [anon_sym__] = ACTIONS(199), - [anon_sym_LBRACE_STAR] = ACTIONS(201), - [anon_sym_STAR] = ACTIONS(203), - [anon_sym_LBRACE_CARET] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(205), - [anon_sym_LBRACE_TILDE] = ACTIONS(207), - [anon_sym_TILDE] = ACTIONS(207), - [anon_sym_LBRACE_EQ] = ACTIONS(209), - [anon_sym_LBRACE_PLUS] = ACTIONS(211), - [anon_sym_LBRACE_DASH] = ACTIONS(213), - [anon_sym_BSLASH] = ACTIONS(215), - [sym_quotation_marks] = ACTIONS(217), - [sym_ellipsis] = ACTIONS(217), - [sym_em_dash] = ACTIONS(217), - [sym_en_dash] = ACTIONS(219), - [sym_backslash_escape] = ACTIONS(219), - [anon_sym_LT] = ACTIONS(221), - [sym_symbol] = ACTIONS(217), - [anon_sym_LBRACK_CARET] = ACTIONS(223), - [anon_sym_BANG_LBRACK] = ACTIONS(225), - [anon_sym_LBRACK] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_DOLLAR] = ACTIONS(231), - [anon_sym_TODO] = ACTIONS(233), - [anon_sym_WIP] = ACTIONS(233), - [anon_sym_NOTE] = ACTIONS(235), - [anon_sym_INFO] = ACTIONS(235), - [anon_sym_XXX] = ACTIONS(235), - [sym_fixme] = ACTIONS(217), - [sym__whitespace1] = ACTIONS(237), - [sym__newline] = ACTIONS(239), - [aux_sym__text_token1] = ACTIONS(241), - [sym__verbatim_begin] = ACTIONS(243), + [anon_sym_LBRACE_] = ACTIONS(101), + [anon_sym__] = ACTIONS(103), + [anon_sym_LBRACE_STAR] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(107), + [anon_sym_LBRACE_CARET] = ACTIONS(109), + [anon_sym_CARET] = ACTIONS(109), + [anon_sym_LBRACE_TILDE] = ACTIONS(111), + [anon_sym_TILDE] = ACTIONS(111), + [anon_sym_LBRACE_EQ] = ACTIONS(113), + [anon_sym_LBRACE_PLUS] = ACTIONS(115), + [anon_sym_LBRACE_DASH] = ACTIONS(117), + [anon_sym_BSLASH] = ACTIONS(119), + [sym_quotation_marks] = ACTIONS(121), + [sym_ellipsis] = ACTIONS(121), + [sym_em_dash] = ACTIONS(121), + [sym_en_dash] = ACTIONS(123), + [sym_backslash_escape] = ACTIONS(123), + [anon_sym_LT] = ACTIONS(125), + [sym_symbol] = ACTIONS(121), + [anon_sym_LBRACK_CARET] = ACTIONS(127), + [anon_sym_BANG_LBRACK] = ACTIONS(129), + [anon_sym_LBRACK] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_DOLLAR] = ACTIONS(135), + [anon_sym_TODO] = ACTIONS(137), + [anon_sym_WIP] = ACTIONS(137), + [anon_sym_NOTE] = ACTIONS(139), + [anon_sym_INFO] = ACTIONS(139), + [anon_sym_XXX] = ACTIONS(139), + [sym_fixme] = ACTIONS(121), + [sym__whitespace1] = ACTIONS(141), + [sym__newline] = ACTIONS(143), + [aux_sym__text_token1] = ACTIONS(145), + [sym__verbatim_begin] = ACTIONS(147), }, - [6] = { - [sym__inline] = STATE(1048), - [sym__element] = STATE(107), - [sym_emphasis] = STATE(140), - [sym_emphasis_begin] = STATE(1162), - [sym_strong] = STATE(140), - [sym_strong_begin] = STATE(1163), - [sym_superscript] = STATE(140), - [sym_superscript_begin] = STATE(1164), - [sym_subscript] = STATE(140), - [sym_subscript_begin] = STATE(1165), - [sym_highlighted] = STATE(140), - [sym_highlighted_begin] = STATE(1166), - [sym_insert] = STATE(140), - [sym_insert_begin] = STATE(1167), - [sym_delete] = STATE(140), - [sym_delete_begin] = STATE(1168), - [sym_hard_line_break] = STATE(140), - [sym__smart_punctuation] = STATE(140), - [sym_autolink] = STATE(140), - [sym_footnote_reference] = STATE(140), - [sym_footnote_marker_begin] = STATE(1169), - [sym__image] = STATE(140), - [sym_full_reference_image] = STATE(140), - [sym_collapsed_reference_image] = STATE(140), - [sym_inline_image] = STATE(140), - [sym_image_description] = STATE(625), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(140), - [sym_full_reference_link] = STATE(140), - [sym_collapsed_reference_link] = STATE(140), - [sym_inline_link] = STATE(140), - [sym_link_text] = STATE(624), - [sym_span] = STATE(107), - [sym__bracketed_text_begin] = STATE(1190), - [sym__comment_with_spaces] = STATE(140), - [sym_raw_inline] = STATE(140), - [sym_math] = STATE(140), - [sym_verbatim] = STATE(140), - [sym__todo_highlights] = STATE(140), - [sym_todo] = STATE(140), - [sym_note] = STATE(140), - [sym__symbol_fallback] = STATE(140), - [aux_sym__text] = STATE(124), - [aux_sym__inline_repeat1] = STATE(107), + [5] = { + [sym__inline] = STATE(1070), + [sym__element] = STATE(58), + [sym_emphasis] = STATE(148), + [sym_emphasis_begin] = STATE(1184), + [sym_strong] = STATE(148), + [sym_strong_begin] = STATE(1185), + [sym_superscript] = STATE(148), + [sym_superscript_begin] = STATE(1186), + [sym_subscript] = STATE(148), + [sym_subscript_begin] = STATE(1187), + [sym_highlighted] = STATE(148), + [sym_highlighted_begin] = STATE(1188), + [sym_insert] = STATE(148), + [sym_insert_begin] = STATE(1189), + [sym_delete] = STATE(148), + [sym_delete_begin] = STATE(1190), + [sym_hard_line_break] = STATE(139), + [sym__smart_punctuation] = STATE(139), + [sym_autolink] = STATE(139), + [sym_footnote_reference] = STATE(148), + [sym_footnote_marker_begin] = STATE(1191), + [sym__image] = STATE(148), + [sym_full_reference_image] = STATE(148), + [sym_collapsed_reference_image] = STATE(148), + [sym_inline_image] = STATE(148), + [sym_image_description] = STATE(648), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(148), + [sym_full_reference_link] = STATE(148), + [sym_collapsed_reference_link] = STATE(148), + [sym_inline_link] = STATE(148), + [sym_link_text] = STATE(647), + [sym_span] = STATE(58), + [sym__bracketed_text_begin] = STATE(1212), + [sym__comment_with_spaces] = STATE(139), + [sym_raw_inline] = STATE(139), + [sym_math] = STATE(139), + [sym_verbatim] = STATE(139), + [sym__todo_highlights] = STATE(139), + [sym_todo] = STATE(139), + [sym_note] = STATE(139), + [sym__symbol_fallback] = STATE(139), + [aux_sym__text] = STATE(123), + [aux_sym__inline_repeat1] = STATE(58), [anon_sym_LBRACE_] = ACTIONS(51), [anon_sym__] = ACTIONS(53), [anon_sym_LBRACE_STAR] = ACTIONS(55), @@ -5653,40 +5617,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token1] = ACTIONS(95), [sym__verbatim_begin] = ACTIONS(97), }, + [6] = { + [sym__element] = STATE(6), + [sym_emphasis] = STATE(136), + [sym_emphasis_begin] = STATE(1134), + [sym_strong] = STATE(136), + [sym_strong_begin] = STATE(1135), + [sym_superscript] = STATE(136), + [sym_superscript_begin] = STATE(1136), + [sym_subscript] = STATE(136), + [sym_subscript_begin] = STATE(1137), + [sym_highlighted] = STATE(136), + [sym_highlighted_begin] = STATE(1138), + [sym_insert] = STATE(136), + [sym_insert_begin] = STATE(1139), + [sym_delete] = STATE(136), + [sym_delete_begin] = STATE(1140), + [sym_hard_line_break] = STATE(134), + [sym__smart_punctuation] = STATE(134), + [sym_autolink] = STATE(134), + [sym_footnote_reference] = STATE(136), + [sym_footnote_marker_begin] = STATE(1141), + [sym__image] = STATE(136), + [sym_full_reference_image] = STATE(136), + [sym_collapsed_reference_image] = STATE(136), + [sym_inline_image] = STATE(136), + [sym_image_description] = STATE(670), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(136), + [sym_full_reference_link] = STATE(136), + [sym_collapsed_reference_link] = STATE(136), + [sym_inline_link] = STATE(136), + [sym_link_text] = STATE(671), + [sym_span] = STATE(6), + [sym__bracketed_text_begin] = STATE(1207), + [sym__comment_with_spaces] = STATE(134), + [sym_raw_inline] = STATE(134), + [sym_math] = STATE(134), + [sym_verbatim] = STATE(134), + [sym__todo_highlights] = STATE(134), + [sym_todo] = STATE(134), + [sym_note] = STATE(134), + [sym__symbol_fallback] = STATE(134), + [aux_sym__text] = STATE(129), + [aux_sym__inline_repeat1] = STATE(6), + [anon_sym_LBRACE_] = ACTIONS(149), + [anon_sym__] = ACTIONS(152), + [anon_sym_LBRACE_STAR] = ACTIONS(155), + [anon_sym_STAR] = ACTIONS(158), + [anon_sym_LBRACE_CARET] = ACTIONS(161), + [anon_sym_CARET] = ACTIONS(161), + [anon_sym_LBRACE_TILDE] = ACTIONS(164), + [anon_sym_TILDE] = ACTIONS(164), + [anon_sym_LBRACE_EQ] = ACTIONS(167), + [anon_sym_LBRACE_PLUS] = ACTIONS(170), + [anon_sym_LBRACE_DASH] = ACTIONS(173), + [anon_sym_BSLASH] = ACTIONS(176), + [sym_quotation_marks] = ACTIONS(179), + [sym_ellipsis] = ACTIONS(179), + [sym_em_dash] = ACTIONS(179), + [sym_en_dash] = ACTIONS(182), + [sym_backslash_escape] = ACTIONS(182), + [anon_sym_LT] = ACTIONS(185), + [sym_symbol] = ACTIONS(179), + [anon_sym_LBRACK_CARET] = ACTIONS(188), + [anon_sym_BANG_LBRACK] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(194), + [anon_sym_LPAREN] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(200), + [anon_sym_TODO] = ACTIONS(203), + [anon_sym_WIP] = ACTIONS(203), + [anon_sym_NOTE] = ACTIONS(206), + [anon_sym_INFO] = ACTIONS(206), + [anon_sym_XXX] = ACTIONS(206), + [sym_fixme] = ACTIONS(179), + [sym__whitespace1] = ACTIONS(209), + [sym__newline] = ACTIONS(212), + [aux_sym__text_token1] = ACTIONS(215), + [sym__verbatim_begin] = ACTIONS(218), + [sym_subscript_end] = ACTIONS(221), + }, [7] = { - [sym__element] = STATE(7), - [sym_emphasis] = STATE(139), - [sym_emphasis_begin] = STATE(1102), - [sym_strong] = STATE(139), - [sym_strong_begin] = STATE(1103), - [sym_superscript] = STATE(139), - [sym_superscript_begin] = STATE(1104), - [sym_subscript] = STATE(139), - [sym_subscript_begin] = STATE(1105), - [sym_highlighted] = STATE(139), - [sym_highlighted_begin] = STATE(1106), - [sym_insert] = STATE(139), - [sym_insert_begin] = STATE(1107), - [sym_delete] = STATE(139), - [sym_delete_begin] = STATE(1108), + [sym__inline] = STATE(1054), + [sym__element] = STATE(58), + [sym_emphasis] = STATE(148), + [sym_emphasis_begin] = STATE(1184), + [sym_strong] = STATE(148), + [sym_strong_begin] = STATE(1185), + [sym_superscript] = STATE(148), + [sym_superscript_begin] = STATE(1186), + [sym_subscript] = STATE(148), + [sym_subscript_begin] = STATE(1187), + [sym_highlighted] = STATE(148), + [sym_highlighted_begin] = STATE(1188), + [sym_insert] = STATE(148), + [sym_insert_begin] = STATE(1189), + [sym_delete] = STATE(148), + [sym_delete_begin] = STATE(1190), [sym_hard_line_break] = STATE(139), [sym__smart_punctuation] = STATE(139), [sym_autolink] = STATE(139), - [sym_footnote_reference] = STATE(139), - [sym_footnote_marker_begin] = STATE(1109), - [sym__image] = STATE(139), - [sym_full_reference_image] = STATE(139), - [sym_collapsed_reference_image] = STATE(139), - [sym_inline_image] = STATE(139), - [sym_image_description] = STATE(623), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(139), - [sym_full_reference_link] = STATE(139), - [sym_collapsed_reference_link] = STATE(139), - [sym_inline_link] = STATE(139), - [sym_link_text] = STATE(621), - [sym_span] = STATE(7), - [sym__bracketed_text_begin] = STATE(1184), + [sym_footnote_reference] = STATE(148), + [sym_footnote_marker_begin] = STATE(1191), + [sym__image] = STATE(148), + [sym_full_reference_image] = STATE(148), + [sym_collapsed_reference_image] = STATE(148), + [sym_inline_image] = STATE(148), + [sym_image_description] = STATE(648), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(148), + [sym_full_reference_link] = STATE(148), + [sym_collapsed_reference_link] = STATE(148), + [sym_inline_link] = STATE(148), + [sym_link_text] = STATE(647), + [sym_span] = STATE(58), + [sym__bracketed_text_begin] = STATE(1212), [sym__comment_with_spaces] = STATE(139), [sym_raw_inline] = STATE(139), [sym_math] = STATE(139), @@ -5695,89 +5740,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(139), [sym_note] = STATE(139), [sym__symbol_fallback] = STATE(139), - [aux_sym__text] = STATE(126), - [aux_sym__inline_repeat1] = STATE(7), - [anon_sym_LBRACE_] = ACTIONS(245), - [anon_sym__] = ACTIONS(248), - [anon_sym_LBRACE_STAR] = ACTIONS(251), - [anon_sym_STAR] = ACTIONS(254), - [anon_sym_LBRACE_CARET] = ACTIONS(257), - [anon_sym_CARET] = ACTIONS(257), - [anon_sym_LBRACE_TILDE] = ACTIONS(260), - [anon_sym_TILDE] = ACTIONS(260), - [anon_sym_LBRACE_EQ] = ACTIONS(263), - [anon_sym_LBRACE_PLUS] = ACTIONS(266), - [anon_sym_LBRACE_DASH] = ACTIONS(269), - [anon_sym_BSLASH] = ACTIONS(272), - [sym_quotation_marks] = ACTIONS(275), - [sym_ellipsis] = ACTIONS(275), - [sym_em_dash] = ACTIONS(275), - [sym_en_dash] = ACTIONS(278), - [sym_backslash_escape] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(281), - [sym_symbol] = ACTIONS(275), - [anon_sym_LBRACK_CARET] = ACTIONS(284), - [anon_sym_BANG_LBRACK] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(290), - [anon_sym_LPAREN] = ACTIONS(293), - [anon_sym_DOLLAR] = ACTIONS(296), - [anon_sym_TODO] = ACTIONS(299), - [anon_sym_WIP] = ACTIONS(299), - [anon_sym_NOTE] = ACTIONS(302), - [anon_sym_INFO] = ACTIONS(302), - [anon_sym_XXX] = ACTIONS(302), - [sym_fixme] = ACTIONS(275), - [sym__whitespace1] = ACTIONS(305), - [sym__newline] = ACTIONS(308), - [aux_sym__text_token1] = ACTIONS(311), - [sym__verbatim_begin] = ACTIONS(314), - [sym_superscript_end] = ACTIONS(317), - }, - [8] = { - [sym__inline] = STATE(1032), - [sym__element] = STATE(107), - [sym_emphasis] = STATE(140), - [sym_emphasis_begin] = STATE(1162), - [sym_strong] = STATE(140), - [sym_strong_begin] = STATE(1163), - [sym_superscript] = STATE(140), - [sym_superscript_begin] = STATE(1164), - [sym_subscript] = STATE(140), - [sym_subscript_begin] = STATE(1165), - [sym_highlighted] = STATE(140), - [sym_highlighted_begin] = STATE(1166), - [sym_insert] = STATE(140), - [sym_insert_begin] = STATE(1167), - [sym_delete] = STATE(140), - [sym_delete_begin] = STATE(1168), - [sym_hard_line_break] = STATE(140), - [sym__smart_punctuation] = STATE(140), - [sym_autolink] = STATE(140), - [sym_footnote_reference] = STATE(140), - [sym_footnote_marker_begin] = STATE(1169), - [sym__image] = STATE(140), - [sym_full_reference_image] = STATE(140), - [sym_collapsed_reference_image] = STATE(140), - [sym_inline_image] = STATE(140), - [sym_image_description] = STATE(625), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(140), - [sym_full_reference_link] = STATE(140), - [sym_collapsed_reference_link] = STATE(140), - [sym_inline_link] = STATE(140), - [sym_link_text] = STATE(624), - [sym_span] = STATE(107), - [sym__bracketed_text_begin] = STATE(1190), - [sym__comment_with_spaces] = STATE(140), - [sym_raw_inline] = STATE(140), - [sym_math] = STATE(140), - [sym_verbatim] = STATE(140), - [sym__todo_highlights] = STATE(140), - [sym_todo] = STATE(140), - [sym_note] = STATE(140), - [sym__symbol_fallback] = STATE(140), - [aux_sym__text] = STATE(124), - [aux_sym__inline_repeat1] = STATE(107), + [aux_sym__text] = STATE(123), + [aux_sym__inline_repeat1] = STATE(58), [anon_sym_LBRACE_] = ACTIONS(51), [anon_sym__] = ACTIONS(53), [anon_sym_LBRACE_STAR] = ACTIONS(55), @@ -5813,51 +5777,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token1] = ACTIONS(95), [sym__verbatim_begin] = ACTIONS(97), }, - [9] = { - [sym__inline] = STATE(1016), - [sym__element] = STATE(107), - [sym_emphasis] = STATE(140), - [sym_emphasis_begin] = STATE(1162), - [sym_strong] = STATE(140), - [sym_strong_begin] = STATE(1163), - [sym_superscript] = STATE(140), - [sym_superscript_begin] = STATE(1164), - [sym_subscript] = STATE(140), - [sym_subscript_begin] = STATE(1165), - [sym_highlighted] = STATE(140), - [sym_highlighted_begin] = STATE(1166), - [sym_insert] = STATE(140), - [sym_insert_begin] = STATE(1167), - [sym_delete] = STATE(140), - [sym_delete_begin] = STATE(1168), - [sym_hard_line_break] = STATE(140), - [sym__smart_punctuation] = STATE(140), - [sym_autolink] = STATE(140), - [sym_footnote_reference] = STATE(140), - [sym_footnote_marker_begin] = STATE(1169), - [sym__image] = STATE(140), - [sym_full_reference_image] = STATE(140), - [sym_collapsed_reference_image] = STATE(140), - [sym_inline_image] = STATE(140), - [sym_image_description] = STATE(625), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(140), - [sym_full_reference_link] = STATE(140), - [sym_collapsed_reference_link] = STATE(140), - [sym_inline_link] = STATE(140), - [sym_link_text] = STATE(624), - [sym_span] = STATE(107), - [sym__bracketed_text_begin] = STATE(1190), - [sym__comment_with_spaces] = STATE(140), - [sym_raw_inline] = STATE(140), - [sym_math] = STATE(140), - [sym_verbatim] = STATE(140), - [sym__todo_highlights] = STATE(140), - [sym_todo] = STATE(140), - [sym_note] = STATE(140), - [sym__symbol_fallback] = STATE(140), - [aux_sym__text] = STATE(124), - [aux_sym__inline_repeat1] = STATE(107), + [8] = { + [sym__inline] = STATE(1038), + [sym__element] = STATE(58), + [sym_emphasis] = STATE(148), + [sym_emphasis_begin] = STATE(1184), + [sym_strong] = STATE(148), + [sym_strong_begin] = STATE(1185), + [sym_superscript] = STATE(148), + [sym_superscript_begin] = STATE(1186), + [sym_subscript] = STATE(148), + [sym_subscript_begin] = STATE(1187), + [sym_highlighted] = STATE(148), + [sym_highlighted_begin] = STATE(1188), + [sym_insert] = STATE(148), + [sym_insert_begin] = STATE(1189), + [sym_delete] = STATE(148), + [sym_delete_begin] = STATE(1190), + [sym_hard_line_break] = STATE(139), + [sym__smart_punctuation] = STATE(139), + [sym_autolink] = STATE(139), + [sym_footnote_reference] = STATE(148), + [sym_footnote_marker_begin] = STATE(1191), + [sym__image] = STATE(148), + [sym_full_reference_image] = STATE(148), + [sym_collapsed_reference_image] = STATE(148), + [sym_inline_image] = STATE(148), + [sym_image_description] = STATE(648), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(148), + [sym_full_reference_link] = STATE(148), + [sym_collapsed_reference_link] = STATE(148), + [sym_inline_link] = STATE(148), + [sym_link_text] = STATE(647), + [sym_span] = STATE(58), + [sym__bracketed_text_begin] = STATE(1212), + [sym__comment_with_spaces] = STATE(139), + [sym_raw_inline] = STATE(139), + [sym_math] = STATE(139), + [sym_verbatim] = STATE(139), + [sym__todo_highlights] = STATE(139), + [sym_todo] = STATE(139), + [sym_note] = STATE(139), + [sym__symbol_fallback] = STATE(139), + [aux_sym__text] = STATE(123), + [aux_sym__inline_repeat1] = STATE(58), [anon_sym_LBRACE_] = ACTIONS(51), [anon_sym__] = ACTIONS(53), [anon_sym_LBRACE_STAR] = ACTIONS(55), @@ -5893,51 +5857,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token1] = ACTIONS(95), [sym__verbatim_begin] = ACTIONS(97), }, - [10] = { - [sym__inline] = STATE(1000), - [sym__element] = STATE(107), - [sym_emphasis] = STATE(140), - [sym_emphasis_begin] = STATE(1162), - [sym_strong] = STATE(140), - [sym_strong_begin] = STATE(1163), - [sym_superscript] = STATE(140), - [sym_superscript_begin] = STATE(1164), - [sym_subscript] = STATE(140), - [sym_subscript_begin] = STATE(1165), - [sym_highlighted] = STATE(140), - [sym_highlighted_begin] = STATE(1166), - [sym_insert] = STATE(140), - [sym_insert_begin] = STATE(1167), - [sym_delete] = STATE(140), - [sym_delete_begin] = STATE(1168), - [sym_hard_line_break] = STATE(140), - [sym__smart_punctuation] = STATE(140), - [sym_autolink] = STATE(140), - [sym_footnote_reference] = STATE(140), - [sym_footnote_marker_begin] = STATE(1169), - [sym__image] = STATE(140), - [sym_full_reference_image] = STATE(140), - [sym_collapsed_reference_image] = STATE(140), - [sym_inline_image] = STATE(140), - [sym_image_description] = STATE(625), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(140), - [sym_full_reference_link] = STATE(140), - [sym_collapsed_reference_link] = STATE(140), - [sym_inline_link] = STATE(140), - [sym_link_text] = STATE(624), - [sym_span] = STATE(107), - [sym__bracketed_text_begin] = STATE(1190), - [sym__comment_with_spaces] = STATE(140), - [sym_raw_inline] = STATE(140), - [sym_math] = STATE(140), - [sym_verbatim] = STATE(140), - [sym__todo_highlights] = STATE(140), - [sym_todo] = STATE(140), - [sym_note] = STATE(140), - [sym__symbol_fallback] = STATE(140), - [aux_sym__text] = STATE(124), - [aux_sym__inline_repeat1] = STATE(107), + [9] = { + [sym__inline] = STATE(1022), + [sym__element] = STATE(58), + [sym_emphasis] = STATE(148), + [sym_emphasis_begin] = STATE(1184), + [sym_strong] = STATE(148), + [sym_strong_begin] = STATE(1185), + [sym_superscript] = STATE(148), + [sym_superscript_begin] = STATE(1186), + [sym_subscript] = STATE(148), + [sym_subscript_begin] = STATE(1187), + [sym_highlighted] = STATE(148), + [sym_highlighted_begin] = STATE(1188), + [sym_insert] = STATE(148), + [sym_insert_begin] = STATE(1189), + [sym_delete] = STATE(148), + [sym_delete_begin] = STATE(1190), + [sym_hard_line_break] = STATE(139), + [sym__smart_punctuation] = STATE(139), + [sym_autolink] = STATE(139), + [sym_footnote_reference] = STATE(148), + [sym_footnote_marker_begin] = STATE(1191), + [sym__image] = STATE(148), + [sym_full_reference_image] = STATE(148), + [sym_collapsed_reference_image] = STATE(148), + [sym_inline_image] = STATE(148), + [sym_image_description] = STATE(648), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(148), + [sym_full_reference_link] = STATE(148), + [sym_collapsed_reference_link] = STATE(148), + [sym_inline_link] = STATE(148), + [sym_link_text] = STATE(647), + [sym_span] = STATE(58), + [sym__bracketed_text_begin] = STATE(1212), + [sym__comment_with_spaces] = STATE(139), + [sym_raw_inline] = STATE(139), + [sym_math] = STATE(139), + [sym_verbatim] = STATE(139), + [sym__todo_highlights] = STATE(139), + [sym_todo] = STATE(139), + [sym_note] = STATE(139), + [sym__symbol_fallback] = STATE(139), + [aux_sym__text] = STATE(123), + [aux_sym__inline_repeat1] = STATE(58), [anon_sym_LBRACE_] = ACTIONS(51), [anon_sym__] = ACTIONS(53), [anon_sym_LBRACE_STAR] = ACTIONS(55), @@ -5973,51 +5937,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token1] = ACTIONS(95), [sym__verbatim_begin] = ACTIONS(97), }, - [11] = { - [sym__inline] = STATE(984), - [sym__element] = STATE(107), - [sym_emphasis] = STATE(140), - [sym_emphasis_begin] = STATE(1162), - [sym_strong] = STATE(140), - [sym_strong_begin] = STATE(1163), - [sym_superscript] = STATE(140), - [sym_superscript_begin] = STATE(1164), - [sym_subscript] = STATE(140), - [sym_subscript_begin] = STATE(1165), - [sym_highlighted] = STATE(140), - [sym_highlighted_begin] = STATE(1166), - [sym_insert] = STATE(140), - [sym_insert_begin] = STATE(1167), - [sym_delete] = STATE(140), - [sym_delete_begin] = STATE(1168), - [sym_hard_line_break] = STATE(140), - [sym__smart_punctuation] = STATE(140), - [sym_autolink] = STATE(140), - [sym_footnote_reference] = STATE(140), - [sym_footnote_marker_begin] = STATE(1169), - [sym__image] = STATE(140), - [sym_full_reference_image] = STATE(140), - [sym_collapsed_reference_image] = STATE(140), - [sym_inline_image] = STATE(140), - [sym_image_description] = STATE(625), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(140), - [sym_full_reference_link] = STATE(140), - [sym_collapsed_reference_link] = STATE(140), - [sym_inline_link] = STATE(140), - [sym_link_text] = STATE(624), - [sym_span] = STATE(107), - [sym__bracketed_text_begin] = STATE(1190), - [sym__comment_with_spaces] = STATE(140), - [sym_raw_inline] = STATE(140), - [sym_math] = STATE(140), - [sym_verbatim] = STATE(140), - [sym__todo_highlights] = STATE(140), - [sym_todo] = STATE(140), - [sym_note] = STATE(140), - [sym__symbol_fallback] = STATE(140), - [aux_sym__text] = STATE(124), - [aux_sym__inline_repeat1] = STATE(107), + [10] = { + [sym__inline] = STATE(1006), + [sym__element] = STATE(58), + [sym_emphasis] = STATE(148), + [sym_emphasis_begin] = STATE(1184), + [sym_strong] = STATE(148), + [sym_strong_begin] = STATE(1185), + [sym_superscript] = STATE(148), + [sym_superscript_begin] = STATE(1186), + [sym_subscript] = STATE(148), + [sym_subscript_begin] = STATE(1187), + [sym_highlighted] = STATE(148), + [sym_highlighted_begin] = STATE(1188), + [sym_insert] = STATE(148), + [sym_insert_begin] = STATE(1189), + [sym_delete] = STATE(148), + [sym_delete_begin] = STATE(1190), + [sym_hard_line_break] = STATE(139), + [sym__smart_punctuation] = STATE(139), + [sym_autolink] = STATE(139), + [sym_footnote_reference] = STATE(148), + [sym_footnote_marker_begin] = STATE(1191), + [sym__image] = STATE(148), + [sym_full_reference_image] = STATE(148), + [sym_collapsed_reference_image] = STATE(148), + [sym_inline_image] = STATE(148), + [sym_image_description] = STATE(648), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(148), + [sym_full_reference_link] = STATE(148), + [sym_collapsed_reference_link] = STATE(148), + [sym_inline_link] = STATE(148), + [sym_link_text] = STATE(647), + [sym_span] = STATE(58), + [sym__bracketed_text_begin] = STATE(1212), + [sym__comment_with_spaces] = STATE(139), + [sym_raw_inline] = STATE(139), + [sym_math] = STATE(139), + [sym_verbatim] = STATE(139), + [sym__todo_highlights] = STATE(139), + [sym_todo] = STATE(139), + [sym_note] = STATE(139), + [sym__symbol_fallback] = STATE(139), + [aux_sym__text] = STATE(123), + [aux_sym__inline_repeat1] = STATE(58), [anon_sym_LBRACE_] = ACTIONS(51), [anon_sym__] = ACTIONS(53), [anon_sym_LBRACE_STAR] = ACTIONS(55), @@ -6053,51 +6017,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token1] = ACTIONS(95), [sym__verbatim_begin] = ACTIONS(97), }, - [12] = { - [sym__inline] = STATE(968), - [sym__element] = STATE(107), - [sym_emphasis] = STATE(140), - [sym_emphasis_begin] = STATE(1162), - [sym_strong] = STATE(140), - [sym_strong_begin] = STATE(1163), - [sym_superscript] = STATE(140), - [sym_superscript_begin] = STATE(1164), - [sym_subscript] = STATE(140), - [sym_subscript_begin] = STATE(1165), - [sym_highlighted] = STATE(140), - [sym_highlighted_begin] = STATE(1166), - [sym_insert] = STATE(140), - [sym_insert_begin] = STATE(1167), - [sym_delete] = STATE(140), - [sym_delete_begin] = STATE(1168), - [sym_hard_line_break] = STATE(140), - [sym__smart_punctuation] = STATE(140), - [sym_autolink] = STATE(140), - [sym_footnote_reference] = STATE(140), - [sym_footnote_marker_begin] = STATE(1169), - [sym__image] = STATE(140), - [sym_full_reference_image] = STATE(140), - [sym_collapsed_reference_image] = STATE(140), - [sym_inline_image] = STATE(140), - [sym_image_description] = STATE(625), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(140), - [sym_full_reference_link] = STATE(140), - [sym_collapsed_reference_link] = STATE(140), - [sym_inline_link] = STATE(140), - [sym_link_text] = STATE(624), - [sym_span] = STATE(107), - [sym__bracketed_text_begin] = STATE(1190), - [sym__comment_with_spaces] = STATE(140), - [sym_raw_inline] = STATE(140), - [sym_math] = STATE(140), - [sym_verbatim] = STATE(140), - [sym__todo_highlights] = STATE(140), - [sym_todo] = STATE(140), - [sym_note] = STATE(140), - [sym__symbol_fallback] = STATE(140), - [aux_sym__text] = STATE(124), - [aux_sym__inline_repeat1] = STATE(107), + [11] = { + [sym__inline] = STATE(990), + [sym__element] = STATE(58), + [sym_emphasis] = STATE(148), + [sym_emphasis_begin] = STATE(1184), + [sym_strong] = STATE(148), + [sym_strong_begin] = STATE(1185), + [sym_superscript] = STATE(148), + [sym_superscript_begin] = STATE(1186), + [sym_subscript] = STATE(148), + [sym_subscript_begin] = STATE(1187), + [sym_highlighted] = STATE(148), + [sym_highlighted_begin] = STATE(1188), + [sym_insert] = STATE(148), + [sym_insert_begin] = STATE(1189), + [sym_delete] = STATE(148), + [sym_delete_begin] = STATE(1190), + [sym_hard_line_break] = STATE(139), + [sym__smart_punctuation] = STATE(139), + [sym_autolink] = STATE(139), + [sym_footnote_reference] = STATE(148), + [sym_footnote_marker_begin] = STATE(1191), + [sym__image] = STATE(148), + [sym_full_reference_image] = STATE(148), + [sym_collapsed_reference_image] = STATE(148), + [sym_inline_image] = STATE(148), + [sym_image_description] = STATE(648), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(148), + [sym_full_reference_link] = STATE(148), + [sym_collapsed_reference_link] = STATE(148), + [sym_inline_link] = STATE(148), + [sym_link_text] = STATE(647), + [sym_span] = STATE(58), + [sym__bracketed_text_begin] = STATE(1212), + [sym__comment_with_spaces] = STATE(139), + [sym_raw_inline] = STATE(139), + [sym_math] = STATE(139), + [sym_verbatim] = STATE(139), + [sym__todo_highlights] = STATE(139), + [sym_todo] = STATE(139), + [sym_note] = STATE(139), + [sym__symbol_fallback] = STATE(139), + [aux_sym__text] = STATE(123), + [aux_sym__inline_repeat1] = STATE(58), [anon_sym_LBRACE_] = ACTIONS(51), [anon_sym__] = ACTIONS(53), [anon_sym_LBRACE_STAR] = ACTIONS(55), @@ -6133,51 +6097,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token1] = ACTIONS(95), [sym__verbatim_begin] = ACTIONS(97), }, - [13] = { - [sym__inline] = STATE(952), - [sym__element] = STATE(107), - [sym_emphasis] = STATE(140), - [sym_emphasis_begin] = STATE(1162), - [sym_strong] = STATE(140), - [sym_strong_begin] = STATE(1163), - [sym_superscript] = STATE(140), - [sym_superscript_begin] = STATE(1164), - [sym_subscript] = STATE(140), - [sym_subscript_begin] = STATE(1165), - [sym_highlighted] = STATE(140), - [sym_highlighted_begin] = STATE(1166), - [sym_insert] = STATE(140), - [sym_insert_begin] = STATE(1167), - [sym_delete] = STATE(140), - [sym_delete_begin] = STATE(1168), - [sym_hard_line_break] = STATE(140), - [sym__smart_punctuation] = STATE(140), - [sym_autolink] = STATE(140), - [sym_footnote_reference] = STATE(140), - [sym_footnote_marker_begin] = STATE(1169), - [sym__image] = STATE(140), - [sym_full_reference_image] = STATE(140), - [sym_collapsed_reference_image] = STATE(140), - [sym_inline_image] = STATE(140), - [sym_image_description] = STATE(625), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(140), - [sym_full_reference_link] = STATE(140), - [sym_collapsed_reference_link] = STATE(140), - [sym_inline_link] = STATE(140), - [sym_link_text] = STATE(624), - [sym_span] = STATE(107), - [sym__bracketed_text_begin] = STATE(1190), - [sym__comment_with_spaces] = STATE(140), - [sym_raw_inline] = STATE(140), - [sym_math] = STATE(140), - [sym_verbatim] = STATE(140), - [sym__todo_highlights] = STATE(140), - [sym_todo] = STATE(140), - [sym_note] = STATE(140), - [sym__symbol_fallback] = STATE(140), - [aux_sym__text] = STATE(124), - [aux_sym__inline_repeat1] = STATE(107), + [12] = { + [sym__inline] = STATE(974), + [sym__element] = STATE(58), + [sym_emphasis] = STATE(148), + [sym_emphasis_begin] = STATE(1184), + [sym_strong] = STATE(148), + [sym_strong_begin] = STATE(1185), + [sym_superscript] = STATE(148), + [sym_superscript_begin] = STATE(1186), + [sym_subscript] = STATE(148), + [sym_subscript_begin] = STATE(1187), + [sym_highlighted] = STATE(148), + [sym_highlighted_begin] = STATE(1188), + [sym_insert] = STATE(148), + [sym_insert_begin] = STATE(1189), + [sym_delete] = STATE(148), + [sym_delete_begin] = STATE(1190), + [sym_hard_line_break] = STATE(139), + [sym__smart_punctuation] = STATE(139), + [sym_autolink] = STATE(139), + [sym_footnote_reference] = STATE(148), + [sym_footnote_marker_begin] = STATE(1191), + [sym__image] = STATE(148), + [sym_full_reference_image] = STATE(148), + [sym_collapsed_reference_image] = STATE(148), + [sym_inline_image] = STATE(148), + [sym_image_description] = STATE(648), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(148), + [sym_full_reference_link] = STATE(148), + [sym_collapsed_reference_link] = STATE(148), + [sym_inline_link] = STATE(148), + [sym_link_text] = STATE(647), + [sym_span] = STATE(58), + [sym__bracketed_text_begin] = STATE(1212), + [sym__comment_with_spaces] = STATE(139), + [sym_raw_inline] = STATE(139), + [sym_math] = STATE(139), + [sym_verbatim] = STATE(139), + [sym__todo_highlights] = STATE(139), + [sym_todo] = STATE(139), + [sym_note] = STATE(139), + [sym__symbol_fallback] = STATE(139), + [aux_sym__text] = STATE(123), + [aux_sym__inline_repeat1] = STATE(58), [anon_sym_LBRACE_] = ACTIONS(51), [anon_sym__] = ACTIONS(53), [anon_sym_LBRACE_STAR] = ACTIONS(55), @@ -6213,211 +6177,211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token1] = ACTIONS(95), [sym__verbatim_begin] = ACTIONS(97), }, - [14] = { - [sym__element] = STATE(47), + [13] = { + [sym__element] = STATE(13), + [sym_emphasis] = STATE(133), + [sym_emphasis_begin] = STATE(1124), + [sym_strong] = STATE(133), + [sym_strong_begin] = STATE(1125), + [sym_superscript] = STATE(133), + [sym_superscript_begin] = STATE(1126), + [sym_subscript] = STATE(133), + [sym_subscript_begin] = STATE(1127), + [sym_highlighted] = STATE(133), + [sym_highlighted_begin] = STATE(1128), + [sym_insert] = STATE(133), + [sym_insert_begin] = STATE(1129), + [sym_delete] = STATE(133), + [sym_delete_begin] = STATE(1130), + [sym_hard_line_break] = STATE(140), + [sym__smart_punctuation] = STATE(140), + [sym_autolink] = STATE(140), + [sym_footnote_reference] = STATE(133), + [sym_footnote_marker_begin] = STATE(1131), + [sym__image] = STATE(133), + [sym_full_reference_image] = STATE(133), + [sym_collapsed_reference_image] = STATE(133), + [sym_inline_image] = STATE(133), + [sym_image_description] = STATE(663), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(133), + [sym_full_reference_link] = STATE(133), + [sym_collapsed_reference_link] = STATE(133), + [sym_inline_link] = STATE(133), + [sym_link_text] = STATE(669), + [sym_span] = STATE(13), + [sym__bracketed_text_begin] = STATE(1206), + [sym__comment_with_spaces] = STATE(140), + [sym_raw_inline] = STATE(140), + [sym_math] = STATE(140), + [sym_verbatim] = STATE(140), + [sym__todo_highlights] = STATE(140), + [sym_todo] = STATE(140), + [sym_note] = STATE(140), + [sym__symbol_fallback] = STATE(140), + [aux_sym__text] = STATE(122), + [aux_sym__inline_repeat1] = STATE(13), + [anon_sym_LBRACE_] = ACTIONS(223), + [anon_sym__] = ACTIONS(226), + [anon_sym_LBRACE_STAR] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(232), + [anon_sym_LBRACE_CARET] = ACTIONS(235), + [anon_sym_CARET] = ACTIONS(235), + [anon_sym_LBRACE_TILDE] = ACTIONS(238), + [anon_sym_TILDE] = ACTIONS(238), + [anon_sym_LBRACE_EQ] = ACTIONS(241), + [anon_sym_LBRACE_PLUS] = ACTIONS(244), + [anon_sym_LBRACE_DASH] = ACTIONS(247), + [anon_sym_BSLASH] = ACTIONS(250), + [sym_quotation_marks] = ACTIONS(253), + [sym_ellipsis] = ACTIONS(253), + [sym_em_dash] = ACTIONS(253), + [sym_en_dash] = ACTIONS(256), + [sym_backslash_escape] = ACTIONS(256), + [anon_sym_LT] = ACTIONS(259), + [sym_symbol] = ACTIONS(253), + [anon_sym_LBRACK_CARET] = ACTIONS(262), + [anon_sym_BANG_LBRACK] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(268), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_DOLLAR] = ACTIONS(274), + [anon_sym_TODO] = ACTIONS(277), + [anon_sym_WIP] = ACTIONS(277), + [anon_sym_NOTE] = ACTIONS(280), + [anon_sym_INFO] = ACTIONS(280), + [anon_sym_XXX] = ACTIONS(280), + [sym_fixme] = ACTIONS(253), + [sym__whitespace1] = ACTIONS(283), + [sym__newline] = ACTIONS(286), + [aux_sym__text_token1] = ACTIONS(289), + [sym__verbatim_begin] = ACTIONS(292), + [sym_superscript_end] = ACTIONS(221), + }, + [14] = { + [sym__element] = STATE(6), [sym_emphasis] = STATE(136), - [sym_emphasis_begin] = STATE(1122), + [sym_emphasis_begin] = STATE(1134), [sym_strong] = STATE(136), - [sym_strong_begin] = STATE(1123), + [sym_strong_begin] = STATE(1135), [sym_superscript] = STATE(136), - [sym_superscript_begin] = STATE(1124), + [sym_superscript_begin] = STATE(1136), [sym_subscript] = STATE(136), - [sym_subscript_begin] = STATE(1125), + [sym_subscript_begin] = STATE(1137), [sym_highlighted] = STATE(136), - [sym_highlighted_begin] = STATE(1126), + [sym_highlighted_begin] = STATE(1138), [sym_insert] = STATE(136), - [sym_insert_begin] = STATE(1127), + [sym_insert_begin] = STATE(1139), [sym_delete] = STATE(136), - [sym_delete_begin] = STATE(1128), - [sym_hard_line_break] = STATE(136), - [sym__smart_punctuation] = STATE(136), - [sym_autolink] = STATE(136), + [sym_delete_begin] = STATE(1140), + [sym_hard_line_break] = STATE(134), + [sym__smart_punctuation] = STATE(134), + [sym_autolink] = STATE(134), [sym_footnote_reference] = STATE(136), - [sym_footnote_marker_begin] = STATE(1129), + [sym_footnote_marker_begin] = STATE(1141), [sym__image] = STATE(136), [sym_full_reference_image] = STATE(136), [sym_collapsed_reference_image] = STATE(136), [sym_inline_image] = STATE(136), - [sym_image_description] = STATE(651), - [sym__image_description_begin] = STATE(1057), + [sym_image_description] = STATE(670), + [sym__image_description_begin] = STATE(1079), [sym__link] = STATE(136), [sym_full_reference_link] = STATE(136), [sym_collapsed_reference_link] = STATE(136), [sym_inline_link] = STATE(136), - [sym_link_text] = STATE(650), - [sym_span] = STATE(47), - [sym__bracketed_text_begin] = STATE(1186), - [sym__comment_with_spaces] = STATE(136), - [sym_raw_inline] = STATE(136), - [sym_math] = STATE(136), - [sym_verbatim] = STATE(136), - [sym__todo_highlights] = STATE(136), - [sym_todo] = STATE(136), - [sym_note] = STATE(136), - [sym__symbol_fallback] = STATE(136), - [aux_sym__text] = STATE(130), - [aux_sym__inline_repeat1] = STATE(47), - [anon_sym_LBRACE_] = ACTIONS(319), - [anon_sym__] = ACTIONS(321), - [anon_sym_LBRACE_STAR] = ACTIONS(323), - [anon_sym_STAR] = ACTIONS(325), - [anon_sym_LBRACE_CARET] = ACTIONS(327), - [anon_sym_CARET] = ACTIONS(327), - [anon_sym_LBRACE_TILDE] = ACTIONS(329), - [anon_sym_TILDE] = ACTIONS(329), - [anon_sym_LBRACE_EQ] = ACTIONS(331), - [anon_sym_LBRACE_PLUS] = ACTIONS(333), - [anon_sym_LBRACE_DASH] = ACTIONS(335), - [anon_sym_BSLASH] = ACTIONS(337), - [sym_quotation_marks] = ACTIONS(339), - [sym_ellipsis] = ACTIONS(339), - [sym_em_dash] = ACTIONS(339), - [sym_en_dash] = ACTIONS(341), - [sym_backslash_escape] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(343), - [sym_symbol] = ACTIONS(339), - [anon_sym_LBRACK_CARET] = ACTIONS(345), - [anon_sym_BANG_LBRACK] = ACTIONS(347), - [anon_sym_LBRACK] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(351), - [anon_sym_DOLLAR] = ACTIONS(353), - [anon_sym_TODO] = ACTIONS(355), - [anon_sym_WIP] = ACTIONS(355), - [anon_sym_NOTE] = ACTIONS(357), - [anon_sym_INFO] = ACTIONS(357), - [anon_sym_XXX] = ACTIONS(357), - [sym_fixme] = ACTIONS(339), - [sym__whitespace1] = ACTIONS(359), - [sym__newline] = ACTIONS(361), - [aux_sym__text_token1] = ACTIONS(363), - [sym__verbatim_begin] = ACTIONS(365), - [sym_highlighted_end] = ACTIONS(367), + [sym_link_text] = STATE(671), + [sym_span] = STATE(6), + [sym__bracketed_text_begin] = STATE(1207), + [sym__comment_with_spaces] = STATE(134), + [sym_raw_inline] = STATE(134), + [sym_math] = STATE(134), + [sym_verbatim] = STATE(134), + [sym__todo_highlights] = STATE(134), + [sym_todo] = STATE(134), + [sym_note] = STATE(134), + [sym__symbol_fallback] = STATE(134), + [aux_sym__text] = STATE(129), + [aux_sym__inline_repeat1] = STATE(6), + [anon_sym_LBRACE_] = ACTIONS(295), + [anon_sym__] = ACTIONS(297), + [anon_sym_LBRACE_STAR] = ACTIONS(299), + [anon_sym_STAR] = ACTIONS(301), + [anon_sym_LBRACE_CARET] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(303), + [anon_sym_LBRACE_TILDE] = ACTIONS(305), + [anon_sym_TILDE] = ACTIONS(305), + [anon_sym_LBRACE_EQ] = ACTIONS(307), + [anon_sym_LBRACE_PLUS] = ACTIONS(309), + [anon_sym_LBRACE_DASH] = ACTIONS(311), + [anon_sym_BSLASH] = ACTIONS(313), + [sym_quotation_marks] = ACTIONS(315), + [sym_ellipsis] = ACTIONS(315), + [sym_em_dash] = ACTIONS(315), + [sym_en_dash] = ACTIONS(317), + [sym_backslash_escape] = ACTIONS(317), + [anon_sym_LT] = ACTIONS(319), + [sym_symbol] = ACTIONS(315), + [anon_sym_LBRACK_CARET] = ACTIONS(321), + [anon_sym_BANG_LBRACK] = ACTIONS(323), + [anon_sym_LBRACK] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(327), + [anon_sym_DOLLAR] = ACTIONS(329), + [anon_sym_TODO] = ACTIONS(331), + [anon_sym_WIP] = ACTIONS(331), + [anon_sym_NOTE] = ACTIONS(333), + [anon_sym_INFO] = ACTIONS(333), + [anon_sym_XXX] = ACTIONS(333), + [sym_fixme] = ACTIONS(315), + [sym__whitespace1] = ACTIONS(335), + [sym__newline] = ACTIONS(337), + [aux_sym__text_token1] = ACTIONS(339), + [sym__verbatim_begin] = ACTIONS(341), + [sym_subscript_end] = ACTIONS(343), }, [15] = { - [sym__element] = STATE(15), - [sym_emphasis] = STATE(137), - [sym_emphasis_begin] = STATE(1112), - [sym_strong] = STATE(137), - [sym_strong_begin] = STATE(1113), - [sym_superscript] = STATE(137), - [sym_superscript_begin] = STATE(1114), - [sym_subscript] = STATE(137), - [sym_subscript_begin] = STATE(1115), - [sym_highlighted] = STATE(137), - [sym_highlighted_begin] = STATE(1116), - [sym_insert] = STATE(137), - [sym_insert_begin] = STATE(1117), - [sym_delete] = STATE(137), - [sym_delete_begin] = STATE(1118), - [sym_hard_line_break] = STATE(137), - [sym__smart_punctuation] = STATE(137), - [sym_autolink] = STATE(137), - [sym_footnote_reference] = STATE(137), - [sym_footnote_marker_begin] = STATE(1119), - [sym__image] = STATE(137), - [sym_full_reference_image] = STATE(137), - [sym_collapsed_reference_image] = STATE(137), - [sym_inline_image] = STATE(137), - [sym_image_description] = STATE(636), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(137), - [sym_full_reference_link] = STATE(137), - [sym_collapsed_reference_link] = STATE(137), - [sym_inline_link] = STATE(137), + [sym__inline] = STATE(958), + [sym__element] = STATE(58), + [sym_emphasis] = STATE(148), + [sym_emphasis_begin] = STATE(1184), + [sym_strong] = STATE(148), + [sym_strong_begin] = STATE(1185), + [sym_superscript] = STATE(148), + [sym_superscript_begin] = STATE(1186), + [sym_subscript] = STATE(148), + [sym_subscript_begin] = STATE(1187), + [sym_highlighted] = STATE(148), + [sym_highlighted_begin] = STATE(1188), + [sym_insert] = STATE(148), + [sym_insert_begin] = STATE(1189), + [sym_delete] = STATE(148), + [sym_delete_begin] = STATE(1190), + [sym_hard_line_break] = STATE(139), + [sym__smart_punctuation] = STATE(139), + [sym_autolink] = STATE(139), + [sym_footnote_reference] = STATE(148), + [sym_footnote_marker_begin] = STATE(1191), + [sym__image] = STATE(148), + [sym_full_reference_image] = STATE(148), + [sym_collapsed_reference_image] = STATE(148), + [sym_inline_image] = STATE(148), + [sym_image_description] = STATE(648), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(148), + [sym_full_reference_link] = STATE(148), + [sym_collapsed_reference_link] = STATE(148), + [sym_inline_link] = STATE(148), [sym_link_text] = STATE(647), - [sym_span] = STATE(15), - [sym__bracketed_text_begin] = STATE(1185), - [sym__comment_with_spaces] = STATE(137), - [sym_raw_inline] = STATE(137), - [sym_math] = STATE(137), - [sym_verbatim] = STATE(137), - [sym__todo_highlights] = STATE(137), - [sym_todo] = STATE(137), - [sym_note] = STATE(137), - [sym__symbol_fallback] = STATE(137), - [aux_sym__text] = STATE(122), - [aux_sym__inline_repeat1] = STATE(15), - [anon_sym_LBRACE_] = ACTIONS(369), - [anon_sym__] = ACTIONS(372), - [anon_sym_LBRACE_STAR] = ACTIONS(375), - [anon_sym_STAR] = ACTIONS(378), - [anon_sym_LBRACE_CARET] = ACTIONS(381), - [anon_sym_CARET] = ACTIONS(381), - [anon_sym_LBRACE_TILDE] = ACTIONS(384), - [anon_sym_TILDE] = ACTIONS(384), - [anon_sym_LBRACE_EQ] = ACTIONS(387), - [anon_sym_LBRACE_PLUS] = ACTIONS(390), - [anon_sym_LBRACE_DASH] = ACTIONS(393), - [anon_sym_BSLASH] = ACTIONS(396), - [sym_quotation_marks] = ACTIONS(399), - [sym_ellipsis] = ACTIONS(399), - [sym_em_dash] = ACTIONS(399), - [sym_en_dash] = ACTIONS(402), - [sym_backslash_escape] = ACTIONS(402), - [anon_sym_LT] = ACTIONS(405), - [sym_symbol] = ACTIONS(399), - [anon_sym_LBRACK_CARET] = ACTIONS(408), - [anon_sym_BANG_LBRACK] = ACTIONS(411), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_LPAREN] = ACTIONS(417), - [anon_sym_DOLLAR] = ACTIONS(420), - [anon_sym_TODO] = ACTIONS(423), - [anon_sym_WIP] = ACTIONS(423), - [anon_sym_NOTE] = ACTIONS(426), - [anon_sym_INFO] = ACTIONS(426), - [anon_sym_XXX] = ACTIONS(426), - [sym_fixme] = ACTIONS(399), - [sym__whitespace1] = ACTIONS(429), - [sym__newline] = ACTIONS(432), - [aux_sym__text_token1] = ACTIONS(435), - [sym__verbatim_begin] = ACTIONS(438), - [sym_subscript_end] = ACTIONS(317), - }, - [16] = { - [sym__inline] = STATE(936), - [sym__element] = STATE(107), - [sym_emphasis] = STATE(140), - [sym_emphasis_begin] = STATE(1162), - [sym_strong] = STATE(140), - [sym_strong_begin] = STATE(1163), - [sym_superscript] = STATE(140), - [sym_superscript_begin] = STATE(1164), - [sym_subscript] = STATE(140), - [sym_subscript_begin] = STATE(1165), - [sym_highlighted] = STATE(140), - [sym_highlighted_begin] = STATE(1166), - [sym_insert] = STATE(140), - [sym_insert_begin] = STATE(1167), - [sym_delete] = STATE(140), - [sym_delete_begin] = STATE(1168), - [sym_hard_line_break] = STATE(140), - [sym__smart_punctuation] = STATE(140), - [sym_autolink] = STATE(140), - [sym_footnote_reference] = STATE(140), - [sym_footnote_marker_begin] = STATE(1169), - [sym__image] = STATE(140), - [sym_full_reference_image] = STATE(140), - [sym_collapsed_reference_image] = STATE(140), - [sym_inline_image] = STATE(140), - [sym_image_description] = STATE(625), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(140), - [sym_full_reference_link] = STATE(140), - [sym_collapsed_reference_link] = STATE(140), - [sym_inline_link] = STATE(140), - [sym_link_text] = STATE(624), - [sym_span] = STATE(107), - [sym__bracketed_text_begin] = STATE(1190), - [sym__comment_with_spaces] = STATE(140), - [sym_raw_inline] = STATE(140), - [sym_math] = STATE(140), - [sym_verbatim] = STATE(140), - [sym__todo_highlights] = STATE(140), - [sym_todo] = STATE(140), - [sym_note] = STATE(140), - [sym__symbol_fallback] = STATE(140), - [aux_sym__text] = STATE(124), - [aux_sym__inline_repeat1] = STATE(107), + [sym_span] = STATE(58), + [sym__bracketed_text_begin] = STATE(1212), + [sym__comment_with_spaces] = STATE(139), + [sym_raw_inline] = STATE(139), + [sym_math] = STATE(139), + [sym_verbatim] = STATE(139), + [sym__todo_highlights] = STATE(139), + [sym_todo] = STATE(139), + [sym_note] = STATE(139), + [sym__symbol_fallback] = STATE(139), + [aux_sym__text] = STATE(123), + [aux_sym__inline_repeat1] = STATE(58), [anon_sym_LBRACE_] = ACTIONS(51), [anon_sym__] = ACTIONS(53), [anon_sym_LBRACE_STAR] = ACTIONS(55), @@ -6453,51 +6417,291 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token1] = ACTIONS(95), [sym__verbatim_begin] = ACTIONS(97), }, + [16] = { + [sym__inline] = STATE(938), + [sym__element] = STATE(46), + [sym_emphasis] = STATE(135), + [sym_emphasis_begin] = STATE(1174), + [sym_strong] = STATE(135), + [sym_strong_begin] = STATE(1175), + [sym_superscript] = STATE(135), + [sym_superscript_begin] = STATE(1176), + [sym_subscript] = STATE(135), + [sym_subscript_begin] = STATE(1177), + [sym_highlighted] = STATE(135), + [sym_highlighted_begin] = STATE(1178), + [sym_insert] = STATE(135), + [sym_insert_begin] = STATE(1179), + [sym_delete] = STATE(135), + [sym_delete_begin] = STATE(1180), + [sym_hard_line_break] = STATE(138), + [sym__smart_punctuation] = STATE(138), + [sym_autolink] = STATE(138), + [sym_footnote_reference] = STATE(135), + [sym_footnote_marker_begin] = STATE(1181), + [sym__image] = STATE(135), + [sym_full_reference_image] = STATE(135), + [sym_collapsed_reference_image] = STATE(135), + [sym_inline_image] = STATE(135), + [sym_image_description] = STATE(656), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(135), + [sym_full_reference_link] = STATE(135), + [sym_collapsed_reference_link] = STATE(135), + [sym_inline_link] = STATE(135), + [sym_link_text] = STATE(654), + [sym_span] = STATE(46), + [sym__bracketed_text_begin] = STATE(1211), + [sym__comment_with_spaces] = STATE(138), + [sym_raw_inline] = STATE(138), + [sym_math] = STATE(138), + [sym_verbatim] = STATE(138), + [sym__todo_highlights] = STATE(138), + [sym_todo] = STATE(138), + [sym_note] = STATE(138), + [sym__symbol_fallback] = STATE(138), + [aux_sym__text] = STATE(121), + [aux_sym__inline_repeat1] = STATE(46), + [anon_sym_LBRACE_] = ACTIONS(345), + [anon_sym__] = ACTIONS(347), + [anon_sym_LBRACE_STAR] = ACTIONS(349), + [anon_sym_STAR] = ACTIONS(351), + [anon_sym_LBRACE_CARET] = ACTIONS(353), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_LBRACE_TILDE] = ACTIONS(355), + [anon_sym_TILDE] = ACTIONS(355), + [anon_sym_LBRACE_EQ] = ACTIONS(357), + [anon_sym_LBRACE_PLUS] = ACTIONS(359), + [anon_sym_LBRACE_DASH] = ACTIONS(361), + [anon_sym_BSLASH] = ACTIONS(363), + [sym_quotation_marks] = ACTIONS(365), + [sym_ellipsis] = ACTIONS(365), + [sym_em_dash] = ACTIONS(365), + [sym_en_dash] = ACTIONS(367), + [sym_backslash_escape] = ACTIONS(367), + [anon_sym_LT] = ACTIONS(369), + [sym_symbol] = ACTIONS(365), + [anon_sym_LBRACK_CARET] = ACTIONS(371), + [anon_sym_BANG_LBRACK] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(375), + [anon_sym_LPAREN] = ACTIONS(377), + [anon_sym_DOLLAR] = ACTIONS(379), + [anon_sym_TODO] = ACTIONS(381), + [anon_sym_WIP] = ACTIONS(381), + [anon_sym_NOTE] = ACTIONS(383), + [anon_sym_INFO] = ACTIONS(383), + [anon_sym_XXX] = ACTIONS(383), + [sym_fixme] = ACTIONS(365), + [sym__whitespace1] = ACTIONS(385), + [sym__newline] = ACTIONS(387), + [aux_sym__text_token1] = ACTIONS(389), + [sym__verbatim_begin] = ACTIONS(391), + }, [17] = { - [sym__inline] = STATE(916), - [sym__element] = STATE(71), + [sym__inline] = STATE(936), + [sym__element] = STATE(30), [sym_emphasis] = STATE(132), - [sym_emphasis_begin] = STATE(1152), + [sym_emphasis_begin] = STATE(1164), [sym_strong] = STATE(132), - [sym_strong_begin] = STATE(1153), + [sym_strong_begin] = STATE(1165), [sym_superscript] = STATE(132), - [sym_superscript_begin] = STATE(1154), + [sym_superscript_begin] = STATE(1166), [sym_subscript] = STATE(132), - [sym_subscript_begin] = STATE(1155), + [sym_subscript_begin] = STATE(1167), [sym_highlighted] = STATE(132), - [sym_highlighted_begin] = STATE(1156), + [sym_highlighted_begin] = STATE(1168), [sym_insert] = STATE(132), - [sym_insert_begin] = STATE(1157), + [sym_insert_begin] = STATE(1169), [sym_delete] = STATE(132), - [sym_delete_begin] = STATE(1158), - [sym_hard_line_break] = STATE(132), - [sym__smart_punctuation] = STATE(132), - [sym_autolink] = STATE(132), + [sym_delete_begin] = STATE(1170), + [sym_hard_line_break] = STATE(142), + [sym__smart_punctuation] = STATE(142), + [sym_autolink] = STATE(142), [sym_footnote_reference] = STATE(132), - [sym_footnote_marker_begin] = STATE(1159), + [sym_footnote_marker_begin] = STATE(1171), [sym__image] = STATE(132), [sym_full_reference_image] = STATE(132), [sym_collapsed_reference_image] = STATE(132), [sym_inline_image] = STATE(132), - [sym_image_description] = STATE(633), - [sym__image_description_begin] = STATE(1057), + [sym_image_description] = STATE(660), + [sym__image_description_begin] = STATE(1079), [sym__link] = STATE(132), [sym_full_reference_link] = STATE(132), [sym_collapsed_reference_link] = STATE(132), [sym_inline_link] = STATE(132), - [sym_link_text] = STATE(631), - [sym_span] = STATE(71), - [sym__bracketed_text_begin] = STATE(1189), - [sym__comment_with_spaces] = STATE(132), - [sym_raw_inline] = STATE(132), - [sym_math] = STATE(132), - [sym_verbatim] = STATE(132), - [sym__todo_highlights] = STATE(132), - [sym_todo] = STATE(132), - [sym_note] = STATE(132), - [sym__symbol_fallback] = STATE(132), - [aux_sym__text] = STATE(128), - [aux_sym__inline_repeat1] = STATE(71), + [sym_link_text] = STATE(659), + [sym_span] = STATE(30), + [sym__bracketed_text_begin] = STATE(1210), + [sym__comment_with_spaces] = STATE(142), + [sym_raw_inline] = STATE(142), + [sym_math] = STATE(142), + [sym_verbatim] = STATE(142), + [sym__todo_highlights] = STATE(142), + [sym_todo] = STATE(142), + [sym_note] = STATE(142), + [sym__symbol_fallback] = STATE(142), + [aux_sym__text] = STATE(126), + [aux_sym__inline_repeat1] = STATE(30), + [anon_sym_LBRACE_] = ACTIONS(393), + [anon_sym__] = ACTIONS(395), + [anon_sym_LBRACE_STAR] = ACTIONS(397), + [anon_sym_STAR] = ACTIONS(399), + [anon_sym_LBRACE_CARET] = ACTIONS(401), + [anon_sym_CARET] = ACTIONS(401), + [anon_sym_LBRACE_TILDE] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_LBRACE_EQ] = ACTIONS(405), + [anon_sym_LBRACE_PLUS] = ACTIONS(407), + [anon_sym_LBRACE_DASH] = ACTIONS(409), + [anon_sym_BSLASH] = ACTIONS(411), + [sym_quotation_marks] = ACTIONS(413), + [sym_ellipsis] = ACTIONS(413), + [sym_em_dash] = ACTIONS(413), + [sym_en_dash] = ACTIONS(415), + [sym_backslash_escape] = ACTIONS(415), + [anon_sym_LT] = ACTIONS(417), + [sym_symbol] = ACTIONS(413), + [anon_sym_LBRACK_CARET] = ACTIONS(419), + [anon_sym_BANG_LBRACK] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(423), + [anon_sym_LPAREN] = ACTIONS(425), + [anon_sym_DOLLAR] = ACTIONS(427), + [anon_sym_TODO] = ACTIONS(429), + [anon_sym_WIP] = ACTIONS(429), + [anon_sym_NOTE] = ACTIONS(431), + [anon_sym_INFO] = ACTIONS(431), + [anon_sym_XXX] = ACTIONS(431), + [sym_fixme] = ACTIONS(413), + [sym__whitespace1] = ACTIONS(433), + [sym__newline] = ACTIONS(435), + [aux_sym__text_token1] = ACTIONS(437), + [sym__verbatim_begin] = ACTIONS(439), + }, + [18] = { + [sym__inline] = STATE(935), + [sym__element] = STATE(22), + [sym_emphasis] = STATE(147), + [sym_emphasis_begin] = STATE(1154), + [sym_strong] = STATE(147), + [sym_strong_begin] = STATE(1155), + [sym_superscript] = STATE(147), + [sym_superscript_begin] = STATE(1156), + [sym_subscript] = STATE(147), + [sym_subscript_begin] = STATE(1157), + [sym_highlighted] = STATE(147), + [sym_highlighted_begin] = STATE(1158), + [sym_insert] = STATE(147), + [sym_insert_begin] = STATE(1159), + [sym_delete] = STATE(147), + [sym_delete_begin] = STATE(1160), + [sym_hard_line_break] = STATE(145), + [sym__smart_punctuation] = STATE(145), + [sym_autolink] = STATE(145), + [sym_footnote_reference] = STATE(147), + [sym_footnote_marker_begin] = STATE(1161), + [sym__image] = STATE(147), + [sym_full_reference_image] = STATE(147), + [sym_collapsed_reference_image] = STATE(147), + [sym_inline_image] = STATE(147), + [sym_image_description] = STATE(665), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(147), + [sym_full_reference_link] = STATE(147), + [sym_collapsed_reference_link] = STATE(147), + [sym_inline_link] = STATE(147), + [sym_link_text] = STATE(664), + [sym_span] = STATE(22), + [sym__bracketed_text_begin] = STATE(1209), + [sym__comment_with_spaces] = STATE(145), + [sym_raw_inline] = STATE(145), + [sym_math] = STATE(145), + [sym_verbatim] = STATE(145), + [sym__todo_highlights] = STATE(145), + [sym_todo] = STATE(145), + [sym_note] = STATE(145), + [sym__symbol_fallback] = STATE(145), + [aux_sym__text] = STATE(124), + [aux_sym__inline_repeat1] = STATE(22), + [anon_sym_LBRACE_] = ACTIONS(101), + [anon_sym__] = ACTIONS(103), + [anon_sym_LBRACE_STAR] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(107), + [anon_sym_LBRACE_CARET] = ACTIONS(109), + [anon_sym_CARET] = ACTIONS(109), + [anon_sym_LBRACE_TILDE] = ACTIONS(111), + [anon_sym_TILDE] = ACTIONS(111), + [anon_sym_LBRACE_EQ] = ACTIONS(113), + [anon_sym_LBRACE_PLUS] = ACTIONS(115), + [anon_sym_LBRACE_DASH] = ACTIONS(117), + [anon_sym_BSLASH] = ACTIONS(119), + [sym_quotation_marks] = ACTIONS(121), + [sym_ellipsis] = ACTIONS(121), + [sym_em_dash] = ACTIONS(121), + [sym_en_dash] = ACTIONS(123), + [sym_backslash_escape] = ACTIONS(123), + [anon_sym_LT] = ACTIONS(125), + [sym_symbol] = ACTIONS(121), + [anon_sym_LBRACK_CARET] = ACTIONS(127), + [anon_sym_BANG_LBRACK] = ACTIONS(129), + [anon_sym_LBRACK] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_DOLLAR] = ACTIONS(135), + [anon_sym_TODO] = ACTIONS(137), + [anon_sym_WIP] = ACTIONS(137), + [anon_sym_NOTE] = ACTIONS(139), + [anon_sym_INFO] = ACTIONS(139), + [anon_sym_XXX] = ACTIONS(139), + [sym_fixme] = ACTIONS(121), + [sym__whitespace1] = ACTIONS(141), + [sym__newline] = ACTIONS(143), + [aux_sym__text_token1] = ACTIONS(145), + [sym__verbatim_begin] = ACTIONS(147), + }, + [19] = { + [sym__inline_without_trailing_space] = STATE(969), + [sym__element] = STATE(594), + [sym_emphasis] = STATE(149), + [sym_emphasis_begin] = STATE(1104), + [sym_strong] = STATE(149), + [sym_strong_begin] = STATE(1105), + [sym_superscript] = STATE(149), + [sym_superscript_begin] = STATE(1106), + [sym_subscript] = STATE(149), + [sym_subscript_begin] = STATE(1107), + [sym_highlighted] = STATE(149), + [sym_highlighted_begin] = STATE(1108), + [sym_insert] = STATE(149), + [sym_insert_begin] = STATE(1109), + [sym_delete] = STATE(149), + [sym_delete_begin] = STATE(1110), + [sym_hard_line_break] = STATE(143), + [sym__smart_punctuation] = STATE(143), + [sym_autolink] = STATE(143), + [sym_footnote_reference] = STATE(149), + [sym_footnote_marker_begin] = STATE(1111), + [sym__image] = STATE(149), + [sym_full_reference_image] = STATE(149), + [sym_collapsed_reference_image] = STATE(149), + [sym_inline_image] = STATE(149), + [sym_image_description] = STATE(658), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(149), + [sym_full_reference_link] = STATE(149), + [sym_collapsed_reference_link] = STATE(149), + [sym_inline_link] = STATE(149), + [sym_link_text] = STATE(672), + [sym_span] = STATE(594), + [sym__bracketed_text_begin] = STATE(1204), + [sym__comment_with_spaces] = STATE(143), + [sym_raw_inline] = STATE(143), + [sym_math] = STATE(143), + [sym_verbatim] = STATE(143), + [sym__todo_highlights] = STATE(143), + [sym_todo] = STATE(143), + [sym_note] = STATE(143), + [sym__symbol_fallback] = STATE(143), + [aux_sym__text] = STATE(127), + [aux_sym__inline_repeat1] = STATE(120), [anon_sym_LBRACE_] = ACTIONS(441), [anon_sym__] = ACTIONS(443), [anon_sym_LBRACE_STAR] = ACTIONS(445), @@ -6533,51 +6737,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token1] = ACTIONS(485), [sym__verbatim_begin] = ACTIONS(487), }, - [18] = { - [sym__inline] = STATE(914), - [sym__element] = STATE(65), - [sym_emphasis] = STATE(133), - [sym_emphasis_begin] = STATE(1142), - [sym_strong] = STATE(133), - [sym_strong_begin] = STATE(1143), - [sym_superscript] = STATE(133), - [sym_superscript_begin] = STATE(1144), - [sym_subscript] = STATE(133), - [sym_subscript_begin] = STATE(1145), - [sym_highlighted] = STATE(133), - [sym_highlighted_begin] = STATE(1146), - [sym_insert] = STATE(133), - [sym_insert_begin] = STATE(1147), - [sym_delete] = STATE(133), - [sym_delete_begin] = STATE(1148), - [sym_hard_line_break] = STATE(133), - [sym__smart_punctuation] = STATE(133), - [sym_autolink] = STATE(133), - [sym_footnote_reference] = STATE(133), - [sym_footnote_marker_begin] = STATE(1149), - [sym__image] = STATE(133), - [sym_full_reference_image] = STATE(133), - [sym_collapsed_reference_image] = STATE(133), - [sym_inline_image] = STATE(133), - [sym_image_description] = STATE(638), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(133), - [sym_full_reference_link] = STATE(133), - [sym_collapsed_reference_link] = STATE(133), - [sym_inline_link] = STATE(133), - [sym_link_text] = STATE(637), - [sym_span] = STATE(65), - [sym__bracketed_text_begin] = STATE(1188), - [sym__comment_with_spaces] = STATE(133), - [sym_raw_inline] = STATE(133), - [sym_math] = STATE(133), - [sym_verbatim] = STATE(133), - [sym__todo_highlights] = STATE(133), - [sym_todo] = STATE(133), - [sym_note] = STATE(133), - [sym__symbol_fallback] = STATE(133), - [aux_sym__text] = STATE(129), - [aux_sym__inline_repeat1] = STATE(65), + [20] = { + [sym__inline_without_trailing_space] = STATE(968), + [sym__element] = STATE(550), + [sym_emphasis] = STATE(137), + [sym_emphasis_begin] = STATE(1114), + [sym_strong] = STATE(137), + [sym_strong_begin] = STATE(1115), + [sym_superscript] = STATE(137), + [sym_superscript_begin] = STATE(1116), + [sym_subscript] = STATE(137), + [sym_subscript_begin] = STATE(1117), + [sym_highlighted] = STATE(137), + [sym_highlighted_begin] = STATE(1118), + [sym_insert] = STATE(137), + [sym_insert_begin] = STATE(1119), + [sym_delete] = STATE(137), + [sym_delete_begin] = STATE(1120), + [sym_hard_line_break] = STATE(131), + [sym__smart_punctuation] = STATE(131), + [sym_autolink] = STATE(131), + [sym_footnote_reference] = STATE(137), + [sym_footnote_marker_begin] = STATE(1121), + [sym__image] = STATE(137), + [sym_full_reference_image] = STATE(137), + [sym_collapsed_reference_image] = STATE(137), + [sym_inline_image] = STATE(137), + [sym_image_description] = STATE(649), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(137), + [sym_full_reference_link] = STATE(137), + [sym_collapsed_reference_link] = STATE(137), + [sym_inline_link] = STATE(137), + [sym_link_text] = STATE(650), + [sym_span] = STATE(550), + [sym__bracketed_text_begin] = STATE(1205), + [sym__comment_with_spaces] = STATE(131), + [sym_raw_inline] = STATE(131), + [sym_math] = STATE(131), + [sym_verbatim] = STATE(131), + [sym__todo_highlights] = STATE(131), + [sym_todo] = STATE(131), + [sym_note] = STATE(131), + [sym__symbol_fallback] = STATE(131), + [aux_sym__text] = STATE(130), + [aux_sym__inline_repeat1] = STATE(119), [anon_sym_LBRACE_] = ACTIONS(489), [anon_sym__] = ACTIONS(491), [anon_sym_LBRACE_STAR] = ACTIONS(493), @@ -6613,74 +6817,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token1] = ACTIONS(533), [sym__verbatim_begin] = ACTIONS(535), }, - [19] = { - [sym__inline] = STATE(913), - [sym__element] = STATE(37), - [sym_emphasis] = STATE(131), - [sym_emphasis_begin] = STATE(1132), - [sym_strong] = STATE(131), - [sym_strong_begin] = STATE(1133), - [sym_superscript] = STATE(131), - [sym_superscript_begin] = STATE(1134), - [sym_subscript] = STATE(131), - [sym_subscript_begin] = STATE(1135), - [sym_highlighted] = STATE(131), - [sym_highlighted_begin] = STATE(1136), - [sym_insert] = STATE(131), - [sym_insert_begin] = STATE(1137), - [sym_delete] = STATE(131), - [sym_delete_begin] = STATE(1138), - [sym_hard_line_break] = STATE(131), - [sym__smart_punctuation] = STATE(131), - [sym_autolink] = STATE(131), - [sym_footnote_reference] = STATE(131), - [sym_footnote_marker_begin] = STATE(1139), - [sym__image] = STATE(131), - [sym_full_reference_image] = STATE(131), - [sym_collapsed_reference_image] = STATE(131), - [sym_inline_image] = STATE(131), - [sym_image_description] = STATE(643), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(131), - [sym_full_reference_link] = STATE(131), - [sym_collapsed_reference_link] = STATE(131), - [sym_inline_link] = STATE(131), - [sym_link_text] = STATE(619), - [sym_span] = STATE(37), - [sym__bracketed_text_begin] = STATE(1187), - [sym__comment_with_spaces] = STATE(131), - [sym_raw_inline] = STATE(131), - [sym_math] = STATE(131), - [sym_verbatim] = STATE(131), - [sym__todo_highlights] = STATE(131), - [sym_todo] = STATE(131), - [sym_note] = STATE(131), - [sym__symbol_fallback] = STATE(131), - [aux_sym__text] = STATE(123), - [aux_sym__inline_repeat1] = STATE(37), - [anon_sym_LBRACE_] = ACTIONS(537), - [anon_sym__] = ACTIONS(539), - [anon_sym_LBRACE_STAR] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(543), - [anon_sym_LBRACE_CARET] = ACTIONS(545), - [anon_sym_CARET] = ACTIONS(545), - [anon_sym_LBRACE_TILDE] = ACTIONS(547), - [anon_sym_TILDE] = ACTIONS(547), - [anon_sym_LBRACE_EQ] = ACTIONS(549), - [anon_sym_LBRACE_PLUS] = ACTIONS(551), - [anon_sym_LBRACE_DASH] = ACTIONS(553), - [anon_sym_BSLASH] = ACTIONS(555), - [sym_quotation_marks] = ACTIONS(557), - [sym_ellipsis] = ACTIONS(557), - [sym_em_dash] = ACTIONS(557), - [sym_en_dash] = ACTIONS(559), - [sym_backslash_escape] = ACTIONS(559), - [anon_sym_LT] = ACTIONS(561), - [sym_symbol] = ACTIONS(557), - [anon_sym_LBRACK_CARET] = ACTIONS(563), - [anon_sym_BANG_LBRACK] = ACTIONS(565), - [anon_sym_LBRACK] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), + [21] = { + [sym__inline] = STATE(967), + [sym__element] = STATE(64), + [sym_emphasis] = STATE(133), + [sym_emphasis_begin] = STATE(1124), + [sym_strong] = STATE(133), + [sym_strong_begin] = STATE(1125), + [sym_superscript] = STATE(133), + [sym_superscript_begin] = STATE(1126), + [sym_subscript] = STATE(133), + [sym_subscript_begin] = STATE(1127), + [sym_highlighted] = STATE(133), + [sym_highlighted_begin] = STATE(1128), + [sym_insert] = STATE(133), + [sym_insert_begin] = STATE(1129), + [sym_delete] = STATE(133), + [sym_delete_begin] = STATE(1130), + [sym_hard_line_break] = STATE(140), + [sym__smart_punctuation] = STATE(140), + [sym_autolink] = STATE(140), + [sym_footnote_reference] = STATE(133), + [sym_footnote_marker_begin] = STATE(1131), + [sym__image] = STATE(133), + [sym_full_reference_image] = STATE(133), + [sym_collapsed_reference_image] = STATE(133), + [sym_inline_image] = STATE(133), + [sym_image_description] = STATE(663), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(133), + [sym_full_reference_link] = STATE(133), + [sym_collapsed_reference_link] = STATE(133), + [sym_inline_link] = STATE(133), + [sym_link_text] = STATE(669), + [sym_span] = STATE(64), + [sym__bracketed_text_begin] = STATE(1206), + [sym__comment_with_spaces] = STATE(140), + [sym_raw_inline] = STATE(140), + [sym_math] = STATE(140), + [sym_verbatim] = STATE(140), + [sym__todo_highlights] = STATE(140), + [sym_todo] = STATE(140), + [sym_note] = STATE(140), + [sym__symbol_fallback] = STATE(140), + [aux_sym__text] = STATE(122), + [aux_sym__inline_repeat1] = STATE(64), + [anon_sym_LBRACE_] = ACTIONS(537), + [anon_sym__] = ACTIONS(539), + [anon_sym_LBRACE_STAR] = ACTIONS(541), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE_CARET] = ACTIONS(545), + [anon_sym_CARET] = ACTIONS(545), + [anon_sym_LBRACE_TILDE] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(547), + [anon_sym_LBRACE_EQ] = ACTIONS(549), + [anon_sym_LBRACE_PLUS] = ACTIONS(551), + [anon_sym_LBRACE_DASH] = ACTIONS(553), + [anon_sym_BSLASH] = ACTIONS(555), + [sym_quotation_marks] = ACTIONS(557), + [sym_ellipsis] = ACTIONS(557), + [sym_em_dash] = ACTIONS(557), + [sym_en_dash] = ACTIONS(559), + [sym_backslash_escape] = ACTIONS(559), + [anon_sym_LT] = ACTIONS(561), + [sym_symbol] = ACTIONS(557), + [anon_sym_LBRACK_CARET] = ACTIONS(563), + [anon_sym_BANG_LBRACK] = ACTIONS(565), + [anon_sym_LBRACK] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(569), [anon_sym_DOLLAR] = ACTIONS(571), [anon_sym_TODO] = ACTIONS(573), [anon_sym_WIP] = ACTIONS(573), @@ -6693,691 +6897,531 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token1] = ACTIONS(581), [sym__verbatim_begin] = ACTIONS(583), }, - [20] = { - [sym__inline_without_trailing_space] = STATE(946), - [sym__element] = STATE(581), - [sym_emphasis] = STATE(141), - [sym_emphasis_begin] = STATE(1082), - [sym_strong] = STATE(141), - [sym_strong_begin] = STATE(1083), - [sym_superscript] = STATE(141), - [sym_superscript_begin] = STATE(1084), - [sym_subscript] = STATE(141), - [sym_subscript_begin] = STATE(1085), - [sym_highlighted] = STATE(141), - [sym_highlighted_begin] = STATE(1086), - [sym_insert] = STATE(141), - [sym_insert_begin] = STATE(1087), - [sym_delete] = STATE(141), - [sym_delete_begin] = STATE(1088), - [sym_hard_line_break] = STATE(141), - [sym__smart_punctuation] = STATE(141), - [sym_autolink] = STATE(141), - [sym_footnote_reference] = STATE(141), - [sym_footnote_marker_begin] = STATE(1089), - [sym__image] = STATE(141), - [sym_full_reference_image] = STATE(141), - [sym_collapsed_reference_image] = STATE(141), - [sym_inline_image] = STATE(141), - [sym_image_description] = STATE(642), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(141), - [sym_full_reference_link] = STATE(141), - [sym_collapsed_reference_link] = STATE(141), - [sym_inline_link] = STATE(141), - [sym_link_text] = STATE(629), - [sym_span] = STATE(581), - [sym__bracketed_text_begin] = STATE(1182), - [sym__comment_with_spaces] = STATE(141), - [sym_raw_inline] = STATE(141), - [sym_math] = STATE(141), - [sym_verbatim] = STATE(141), - [sym__todo_highlights] = STATE(141), - [sym_todo] = STATE(141), - [sym_note] = STATE(141), - [sym__symbol_fallback] = STATE(141), - [aux_sym__text] = STATE(125), - [aux_sym__inline_repeat1] = STATE(119), - [anon_sym_LBRACE_] = ACTIONS(585), - [anon_sym__] = ACTIONS(587), - [anon_sym_LBRACE_STAR] = ACTIONS(589), - [anon_sym_STAR] = ACTIONS(591), - [anon_sym_LBRACE_CARET] = ACTIONS(593), - [anon_sym_CARET] = ACTIONS(593), - [anon_sym_LBRACE_TILDE] = ACTIONS(595), - [anon_sym_TILDE] = ACTIONS(595), - [anon_sym_LBRACE_EQ] = ACTIONS(597), - [anon_sym_LBRACE_PLUS] = ACTIONS(599), - [anon_sym_LBRACE_DASH] = ACTIONS(601), - [anon_sym_BSLASH] = ACTIONS(603), - [sym_quotation_marks] = ACTIONS(605), - [sym_ellipsis] = ACTIONS(605), - [sym_em_dash] = ACTIONS(605), - [sym_en_dash] = ACTIONS(607), - [sym_backslash_escape] = ACTIONS(607), - [anon_sym_LT] = ACTIONS(609), - [sym_symbol] = ACTIONS(605), - [anon_sym_LBRACK_CARET] = ACTIONS(611), - [anon_sym_BANG_LBRACK] = ACTIONS(613), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_DOLLAR] = ACTIONS(619), - [anon_sym_TODO] = ACTIONS(621), - [anon_sym_WIP] = ACTIONS(621), - [anon_sym_NOTE] = ACTIONS(623), - [anon_sym_INFO] = ACTIONS(623), - [anon_sym_XXX] = ACTIONS(623), - [sym_fixme] = ACTIONS(605), - [sym__whitespace1] = ACTIONS(625), - [sym__newline] = ACTIONS(627), - [aux_sym__text_token1] = ACTIONS(629), - [sym__verbatim_begin] = ACTIONS(631), - }, - [21] = { - [sym__inline_without_trailing_space] = STATE(945), - [sym__element] = STATE(536), - [sym_emphasis] = STATE(138), - [sym_emphasis_begin] = STATE(1092), - [sym_strong] = STATE(138), - [sym_strong_begin] = STATE(1093), - [sym_superscript] = STATE(138), - [sym_superscript_begin] = STATE(1094), - [sym_subscript] = STATE(138), - [sym_subscript_begin] = STATE(1095), - [sym_highlighted] = STATE(138), - [sym_highlighted_begin] = STATE(1096), - [sym_insert] = STATE(138), - [sym_insert_begin] = STATE(1097), - [sym_delete] = STATE(138), - [sym_delete_begin] = STATE(1098), - [sym_hard_line_break] = STATE(138), - [sym__smart_punctuation] = STATE(138), - [sym_autolink] = STATE(138), - [sym_footnote_reference] = STATE(138), - [sym_footnote_marker_begin] = STATE(1099), - [sym__image] = STATE(138), - [sym_full_reference_image] = STATE(138), - [sym_collapsed_reference_image] = STATE(138), - [sym_inline_image] = STATE(138), - [sym_image_description] = STATE(626), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(138), - [sym_full_reference_link] = STATE(138), - [sym_collapsed_reference_link] = STATE(138), - [sym_inline_link] = STATE(138), - [sym_link_text] = STATE(627), - [sym_span] = STATE(536), - [sym__bracketed_text_begin] = STATE(1183), - [sym__comment_with_spaces] = STATE(138), - [sym_raw_inline] = STATE(138), - [sym_math] = STATE(138), - [sym_verbatim] = STATE(138), - [sym__todo_highlights] = STATE(138), - [sym_todo] = STATE(138), - [sym_note] = STATE(138), - [sym__symbol_fallback] = STATE(138), - [aux_sym__text] = STATE(127), - [aux_sym__inline_repeat1] = STATE(118), - [anon_sym_LBRACE_] = ACTIONS(149), - [anon_sym__] = ACTIONS(151), - [anon_sym_LBRACE_STAR] = ACTIONS(153), - [anon_sym_STAR] = ACTIONS(155), - [anon_sym_LBRACE_CARET] = ACTIONS(157), - [anon_sym_CARET] = ACTIONS(157), - [anon_sym_LBRACE_TILDE] = ACTIONS(159), - [anon_sym_TILDE] = ACTIONS(159), - [anon_sym_LBRACE_EQ] = ACTIONS(161), - [anon_sym_LBRACE_PLUS] = ACTIONS(163), - [anon_sym_LBRACE_DASH] = ACTIONS(165), - [anon_sym_BSLASH] = ACTIONS(167), - [sym_quotation_marks] = ACTIONS(169), - [sym_ellipsis] = ACTIONS(169), - [sym_em_dash] = ACTIONS(169), - [sym_en_dash] = ACTIONS(171), - [sym_backslash_escape] = ACTIONS(171), - [anon_sym_LT] = ACTIONS(173), - [sym_symbol] = ACTIONS(169), - [anon_sym_LBRACK_CARET] = ACTIONS(175), - [anon_sym_BANG_LBRACK] = ACTIONS(177), - [anon_sym_LBRACK] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(181), - [anon_sym_DOLLAR] = ACTIONS(183), - [anon_sym_TODO] = ACTIONS(185), - [anon_sym_WIP] = ACTIONS(185), - [anon_sym_NOTE] = ACTIONS(187), - [anon_sym_INFO] = ACTIONS(187), - [anon_sym_XXX] = ACTIONS(187), - [sym_fixme] = ACTIONS(169), - [sym__whitespace1] = ACTIONS(189), - [sym__newline] = ACTIONS(191), - [aux_sym__text_token1] = ACTIONS(193), - [sym__verbatim_begin] = ACTIONS(195), - }, [22] = { - [sym__element] = STATE(15), - [sym_emphasis] = STATE(137), - [sym_emphasis_begin] = STATE(1112), - [sym_strong] = STATE(137), - [sym_strong_begin] = STATE(1113), - [sym_superscript] = STATE(137), - [sym_superscript_begin] = STATE(1114), - [sym_subscript] = STATE(137), - [sym_subscript_begin] = STATE(1115), - [sym_highlighted] = STATE(137), - [sym_highlighted_begin] = STATE(1116), - [sym_insert] = STATE(137), - [sym_insert_begin] = STATE(1117), - [sym_delete] = STATE(137), - [sym_delete_begin] = STATE(1118), - [sym_hard_line_break] = STATE(137), - [sym__smart_punctuation] = STATE(137), - [sym_autolink] = STATE(137), - [sym_footnote_reference] = STATE(137), - [sym_footnote_marker_begin] = STATE(1119), - [sym__image] = STATE(137), - [sym_full_reference_image] = STATE(137), - [sym_collapsed_reference_image] = STATE(137), - [sym_inline_image] = STATE(137), - [sym_image_description] = STATE(636), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(137), - [sym_full_reference_link] = STATE(137), - [sym_collapsed_reference_link] = STATE(137), - [sym_inline_link] = STATE(137), - [sym_link_text] = STATE(647), - [sym_span] = STATE(15), - [sym__bracketed_text_begin] = STATE(1185), - [sym__comment_with_spaces] = STATE(137), - [sym_raw_inline] = STATE(137), - [sym_math] = STATE(137), - [sym_verbatim] = STATE(137), - [sym__todo_highlights] = STATE(137), - [sym_todo] = STATE(137), - [sym_note] = STATE(137), - [sym__symbol_fallback] = STATE(137), - [aux_sym__text] = STATE(122), - [aux_sym__inline_repeat1] = STATE(15), - [anon_sym_LBRACE_] = ACTIONS(197), - [anon_sym__] = ACTIONS(199), - [anon_sym_LBRACE_STAR] = ACTIONS(201), - [anon_sym_STAR] = ACTIONS(203), - [anon_sym_LBRACE_CARET] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(205), - [anon_sym_LBRACE_TILDE] = ACTIONS(207), - [anon_sym_TILDE] = ACTIONS(207), - [anon_sym_LBRACE_EQ] = ACTIONS(209), - [anon_sym_LBRACE_PLUS] = ACTIONS(211), - [anon_sym_LBRACE_DASH] = ACTIONS(213), - [anon_sym_BSLASH] = ACTIONS(215), - [sym_quotation_marks] = ACTIONS(217), - [sym_ellipsis] = ACTIONS(217), - [sym_em_dash] = ACTIONS(217), - [sym_en_dash] = ACTIONS(219), - [sym_backslash_escape] = ACTIONS(219), - [anon_sym_LT] = ACTIONS(221), - [sym_symbol] = ACTIONS(217), - [anon_sym_LBRACK_CARET] = ACTIONS(223), - [anon_sym_BANG_LBRACK] = ACTIONS(225), - [anon_sym_LBRACK] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_DOLLAR] = ACTIONS(231), - [anon_sym_TODO] = ACTIONS(233), - [anon_sym_WIP] = ACTIONS(233), - [anon_sym_NOTE] = ACTIONS(235), - [anon_sym_INFO] = ACTIONS(235), - [anon_sym_XXX] = ACTIONS(235), - [sym_fixme] = ACTIONS(217), - [sym__whitespace1] = ACTIONS(237), - [sym__newline] = ACTIONS(633), - [aux_sym__text_token1] = ACTIONS(241), - [sym__verbatim_begin] = ACTIONS(243), - [sym_subscript_end] = ACTIONS(367), + [sym__element] = STATE(38), + [sym_emphasis] = STATE(147), + [sym_emphasis_begin] = STATE(1154), + [sym_strong] = STATE(147), + [sym_strong_begin] = STATE(1155), + [sym_superscript] = STATE(147), + [sym_superscript_begin] = STATE(1156), + [sym_subscript] = STATE(147), + [sym_subscript_begin] = STATE(1157), + [sym_highlighted] = STATE(147), + [sym_highlighted_begin] = STATE(1158), + [sym_insert] = STATE(147), + [sym_insert_begin] = STATE(1159), + [sym_delete] = STATE(147), + [sym_delete_begin] = STATE(1160), + [sym_hard_line_break] = STATE(145), + [sym__smart_punctuation] = STATE(145), + [sym_autolink] = STATE(145), + [sym_footnote_reference] = STATE(147), + [sym_footnote_marker_begin] = STATE(1161), + [sym__image] = STATE(147), + [sym_full_reference_image] = STATE(147), + [sym_collapsed_reference_image] = STATE(147), + [sym_inline_image] = STATE(147), + [sym_image_description] = STATE(665), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(147), + [sym_full_reference_link] = STATE(147), + [sym_collapsed_reference_link] = STATE(147), + [sym_inline_link] = STATE(147), + [sym_link_text] = STATE(664), + [sym_span] = STATE(38), + [sym__bracketed_text_begin] = STATE(1209), + [sym__comment_with_spaces] = STATE(145), + [sym_raw_inline] = STATE(145), + [sym_math] = STATE(145), + [sym_verbatim] = STATE(145), + [sym__todo_highlights] = STATE(145), + [sym_todo] = STATE(145), + [sym_note] = STATE(145), + [sym__symbol_fallback] = STATE(145), + [aux_sym__text] = STATE(124), + [aux_sym__inline_repeat1] = STATE(38), + [anon_sym_LBRACE_] = ACTIONS(101), + [anon_sym__] = ACTIONS(103), + [anon_sym_LBRACE_STAR] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(107), + [anon_sym_LBRACE_CARET] = ACTIONS(109), + [anon_sym_CARET] = ACTIONS(109), + [anon_sym_LBRACE_TILDE] = ACTIONS(111), + [anon_sym_TILDE] = ACTIONS(111), + [anon_sym_LBRACE_EQ] = ACTIONS(113), + [anon_sym_LBRACE_PLUS] = ACTIONS(115), + [anon_sym_LBRACE_DASH] = ACTIONS(117), + [anon_sym_BSLASH] = ACTIONS(119), + [sym_quotation_marks] = ACTIONS(121), + [sym_ellipsis] = ACTIONS(121), + [sym_em_dash] = ACTIONS(121), + [sym_en_dash] = ACTIONS(123), + [sym_backslash_escape] = ACTIONS(123), + [anon_sym_LT] = ACTIONS(125), + [sym_symbol] = ACTIONS(121), + [anon_sym_LBRACK_CARET] = ACTIONS(127), + [anon_sym_BANG_LBRACK] = ACTIONS(129), + [anon_sym_LBRACK] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_DOLLAR] = ACTIONS(135), + [anon_sym_TODO] = ACTIONS(137), + [anon_sym_WIP] = ACTIONS(137), + [anon_sym_NOTE] = ACTIONS(139), + [anon_sym_INFO] = ACTIONS(139), + [anon_sym_XXX] = ACTIONS(139), + [sym_fixme] = ACTIONS(121), + [sym__whitespace1] = ACTIONS(141), + [sym__newline] = ACTIONS(585), + [aux_sym__text_token1] = ACTIONS(145), + [sym__verbatim_begin] = ACTIONS(147), + [sym_insert_end] = ACTIONS(343), }, [23] = { - [sym__inline] = STATE(912), + [sym__inline] = STATE(934), + [sym__element] = STATE(110), + [sym_emphasis] = STATE(146), + [sym_emphasis_begin] = STATE(1144), + [sym_strong] = STATE(146), + [sym_strong_begin] = STATE(1145), + [sym_superscript] = STATE(146), + [sym_superscript_begin] = STATE(1146), + [sym_subscript] = STATE(146), + [sym_subscript_begin] = STATE(1147), + [sym_highlighted] = STATE(146), + [sym_highlighted_begin] = STATE(1148), + [sym_insert] = STATE(146), + [sym_insert_begin] = STATE(1149), + [sym_delete] = STATE(146), + [sym_delete_begin] = STATE(1150), + [sym_hard_line_break] = STATE(144), + [sym__smart_punctuation] = STATE(144), + [sym_autolink] = STATE(144), + [sym_footnote_reference] = STATE(146), + [sym_footnote_marker_begin] = STATE(1151), + [sym__image] = STATE(146), + [sym_full_reference_image] = STATE(146), + [sym_collapsed_reference_image] = STATE(146), + [sym_inline_image] = STATE(146), + [sym_image_description] = STATE(673), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(146), + [sym_full_reference_link] = STATE(146), + [sym_collapsed_reference_link] = STATE(146), + [sym_inline_link] = STATE(146), + [sym_link_text] = STATE(662), + [sym_span] = STATE(110), + [sym__bracketed_text_begin] = STATE(1208), + [sym__comment_with_spaces] = STATE(144), + [sym_raw_inline] = STATE(144), + [sym_math] = STATE(144), + [sym_verbatim] = STATE(144), + [sym__todo_highlights] = STATE(144), + [sym_todo] = STATE(144), + [sym_note] = STATE(144), + [sym__symbol_fallback] = STATE(144), + [aux_sym__text] = STATE(128), + [aux_sym__inline_repeat1] = STATE(110), + [anon_sym_LBRACE_] = ACTIONS(587), + [anon_sym__] = ACTIONS(589), + [anon_sym_LBRACE_STAR] = ACTIONS(591), + [anon_sym_STAR] = ACTIONS(593), + [anon_sym_LBRACE_CARET] = ACTIONS(595), + [anon_sym_CARET] = ACTIONS(595), + [anon_sym_LBRACE_TILDE] = ACTIONS(597), + [anon_sym_TILDE] = ACTIONS(597), + [anon_sym_LBRACE_EQ] = ACTIONS(599), + [anon_sym_LBRACE_PLUS] = ACTIONS(601), + [anon_sym_LBRACE_DASH] = ACTIONS(603), + [anon_sym_BSLASH] = ACTIONS(605), + [sym_quotation_marks] = ACTIONS(607), + [sym_ellipsis] = ACTIONS(607), + [sym_em_dash] = ACTIONS(607), + [sym_en_dash] = ACTIONS(609), + [sym_backslash_escape] = ACTIONS(609), + [anon_sym_LT] = ACTIONS(611), + [sym_symbol] = ACTIONS(607), + [anon_sym_LBRACK_CARET] = ACTIONS(613), + [anon_sym_BANG_LBRACK] = ACTIONS(615), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_LPAREN] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [anon_sym_TODO] = ACTIONS(623), + [anon_sym_WIP] = ACTIONS(623), + [anon_sym_NOTE] = ACTIONS(625), + [anon_sym_INFO] = ACTIONS(625), + [anon_sym_XXX] = ACTIONS(625), + [sym_fixme] = ACTIONS(607), + [sym__whitespace1] = ACTIONS(627), + [sym__newline] = ACTIONS(629), + [aux_sym__text_token1] = ACTIONS(631), + [sym__verbatim_begin] = ACTIONS(633), + }, + [24] = { + [sym__inline] = STATE(933), [sym__element] = STATE(14), [sym_emphasis] = STATE(136), - [sym_emphasis_begin] = STATE(1122), + [sym_emphasis_begin] = STATE(1134), [sym_strong] = STATE(136), - [sym_strong_begin] = STATE(1123), + [sym_strong_begin] = STATE(1135), [sym_superscript] = STATE(136), - [sym_superscript_begin] = STATE(1124), + [sym_superscript_begin] = STATE(1136), [sym_subscript] = STATE(136), - [sym_subscript_begin] = STATE(1125), + [sym_subscript_begin] = STATE(1137), [sym_highlighted] = STATE(136), - [sym_highlighted_begin] = STATE(1126), + [sym_highlighted_begin] = STATE(1138), [sym_insert] = STATE(136), - [sym_insert_begin] = STATE(1127), + [sym_insert_begin] = STATE(1139), [sym_delete] = STATE(136), - [sym_delete_begin] = STATE(1128), - [sym_hard_line_break] = STATE(136), - [sym__smart_punctuation] = STATE(136), - [sym_autolink] = STATE(136), + [sym_delete_begin] = STATE(1140), + [sym_hard_line_break] = STATE(134), + [sym__smart_punctuation] = STATE(134), + [sym_autolink] = STATE(134), [sym_footnote_reference] = STATE(136), - [sym_footnote_marker_begin] = STATE(1129), + [sym_footnote_marker_begin] = STATE(1141), [sym__image] = STATE(136), [sym_full_reference_image] = STATE(136), [sym_collapsed_reference_image] = STATE(136), [sym_inline_image] = STATE(136), - [sym_image_description] = STATE(651), - [sym__image_description_begin] = STATE(1057), + [sym_image_description] = STATE(670), + [sym__image_description_begin] = STATE(1079), [sym__link] = STATE(136), [sym_full_reference_link] = STATE(136), [sym_collapsed_reference_link] = STATE(136), [sym_inline_link] = STATE(136), - [sym_link_text] = STATE(650), + [sym_link_text] = STATE(671), [sym_span] = STATE(14), - [sym__bracketed_text_begin] = STATE(1186), - [sym__comment_with_spaces] = STATE(136), - [sym_raw_inline] = STATE(136), - [sym_math] = STATE(136), - [sym_verbatim] = STATE(136), - [sym__todo_highlights] = STATE(136), - [sym_todo] = STATE(136), - [sym_note] = STATE(136), - [sym__symbol_fallback] = STATE(136), - [aux_sym__text] = STATE(130), + [sym__bracketed_text_begin] = STATE(1207), + [sym__comment_with_spaces] = STATE(134), + [sym_raw_inline] = STATE(134), + [sym_math] = STATE(134), + [sym_verbatim] = STATE(134), + [sym__todo_highlights] = STATE(134), + [sym_todo] = STATE(134), + [sym_note] = STATE(134), + [sym__symbol_fallback] = STATE(134), + [aux_sym__text] = STATE(129), [aux_sym__inline_repeat1] = STATE(14), - [anon_sym_LBRACE_] = ACTIONS(319), - [anon_sym__] = ACTIONS(321), - [anon_sym_LBRACE_STAR] = ACTIONS(323), - [anon_sym_STAR] = ACTIONS(325), - [anon_sym_LBRACE_CARET] = ACTIONS(327), - [anon_sym_CARET] = ACTIONS(327), - [anon_sym_LBRACE_TILDE] = ACTIONS(329), - [anon_sym_TILDE] = ACTIONS(329), - [anon_sym_LBRACE_EQ] = ACTIONS(331), - [anon_sym_LBRACE_PLUS] = ACTIONS(333), - [anon_sym_LBRACE_DASH] = ACTIONS(335), - [anon_sym_BSLASH] = ACTIONS(337), - [sym_quotation_marks] = ACTIONS(339), - [sym_ellipsis] = ACTIONS(339), - [sym_em_dash] = ACTIONS(339), - [sym_en_dash] = ACTIONS(341), - [sym_backslash_escape] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(343), - [sym_symbol] = ACTIONS(339), - [anon_sym_LBRACK_CARET] = ACTIONS(345), - [anon_sym_BANG_LBRACK] = ACTIONS(347), - [anon_sym_LBRACK] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(351), - [anon_sym_DOLLAR] = ACTIONS(353), - [anon_sym_TODO] = ACTIONS(355), - [anon_sym_WIP] = ACTIONS(355), - [anon_sym_NOTE] = ACTIONS(357), - [anon_sym_INFO] = ACTIONS(357), - [anon_sym_XXX] = ACTIONS(357), - [sym_fixme] = ACTIONS(339), - [sym__whitespace1] = ACTIONS(359), + [anon_sym_LBRACE_] = ACTIONS(295), + [anon_sym__] = ACTIONS(297), + [anon_sym_LBRACE_STAR] = ACTIONS(299), + [anon_sym_STAR] = ACTIONS(301), + [anon_sym_LBRACE_CARET] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(303), + [anon_sym_LBRACE_TILDE] = ACTIONS(305), + [anon_sym_TILDE] = ACTIONS(305), + [anon_sym_LBRACE_EQ] = ACTIONS(307), + [anon_sym_LBRACE_PLUS] = ACTIONS(309), + [anon_sym_LBRACE_DASH] = ACTIONS(311), + [anon_sym_BSLASH] = ACTIONS(313), + [sym_quotation_marks] = ACTIONS(315), + [sym_ellipsis] = ACTIONS(315), + [sym_em_dash] = ACTIONS(315), + [sym_en_dash] = ACTIONS(317), + [sym_backslash_escape] = ACTIONS(317), + [anon_sym_LT] = ACTIONS(319), + [sym_symbol] = ACTIONS(315), + [anon_sym_LBRACK_CARET] = ACTIONS(321), + [anon_sym_BANG_LBRACK] = ACTIONS(323), + [anon_sym_LBRACK] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(327), + [anon_sym_DOLLAR] = ACTIONS(329), + [anon_sym_TODO] = ACTIONS(331), + [anon_sym_WIP] = ACTIONS(331), + [anon_sym_NOTE] = ACTIONS(333), + [anon_sym_INFO] = ACTIONS(333), + [anon_sym_XXX] = ACTIONS(333), + [sym_fixme] = ACTIONS(315), + [sym__whitespace1] = ACTIONS(335), [sym__newline] = ACTIONS(635), - [aux_sym__text_token1] = ACTIONS(363), - [sym__verbatim_begin] = ACTIONS(365), + [aux_sym__text_token1] = ACTIONS(339), + [sym__verbatim_begin] = ACTIONS(341), }, - [24] = { - [sym__inline] = STATE(911), - [sym__element] = STATE(22), + [25] = { + [sym__element] = STATE(25), + [sym_emphasis] = STATE(146), + [sym_emphasis_begin] = STATE(1144), + [sym_strong] = STATE(146), + [sym_strong_begin] = STATE(1145), + [sym_superscript] = STATE(146), + [sym_superscript_begin] = STATE(1146), + [sym_subscript] = STATE(146), + [sym_subscript_begin] = STATE(1147), + [sym_highlighted] = STATE(146), + [sym_highlighted_begin] = STATE(1148), + [sym_insert] = STATE(146), + [sym_insert_begin] = STATE(1149), + [sym_delete] = STATE(146), + [sym_delete_begin] = STATE(1150), + [sym_hard_line_break] = STATE(144), + [sym__smart_punctuation] = STATE(144), + [sym_autolink] = STATE(144), + [sym_footnote_reference] = STATE(146), + [sym_footnote_marker_begin] = STATE(1151), + [sym__image] = STATE(146), + [sym_full_reference_image] = STATE(146), + [sym_collapsed_reference_image] = STATE(146), + [sym_inline_image] = STATE(146), + [sym_image_description] = STATE(673), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(146), + [sym_full_reference_link] = STATE(146), + [sym_collapsed_reference_link] = STATE(146), + [sym_inline_link] = STATE(146), + [sym_link_text] = STATE(662), + [sym_span] = STATE(25), + [sym__bracketed_text_begin] = STATE(1208), + [sym__comment_with_spaces] = STATE(144), + [sym_raw_inline] = STATE(144), + [sym_math] = STATE(144), + [sym_verbatim] = STATE(144), + [sym__todo_highlights] = STATE(144), + [sym_todo] = STATE(144), + [sym_note] = STATE(144), + [sym__symbol_fallback] = STATE(144), + [aux_sym__text] = STATE(128), + [aux_sym__inline_repeat1] = STATE(25), + [anon_sym_LBRACE_] = ACTIONS(637), + [anon_sym__] = ACTIONS(640), + [anon_sym_LBRACE_STAR] = ACTIONS(643), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_LBRACE_CARET] = ACTIONS(649), + [anon_sym_CARET] = ACTIONS(649), + [anon_sym_LBRACE_TILDE] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(652), + [anon_sym_LBRACE_EQ] = ACTIONS(655), + [anon_sym_LBRACE_PLUS] = ACTIONS(658), + [anon_sym_LBRACE_DASH] = ACTIONS(661), + [anon_sym_BSLASH] = ACTIONS(664), + [sym_quotation_marks] = ACTIONS(667), + [sym_ellipsis] = ACTIONS(667), + [sym_em_dash] = ACTIONS(667), + [sym_en_dash] = ACTIONS(670), + [sym_backslash_escape] = ACTIONS(670), + [anon_sym_LT] = ACTIONS(673), + [sym_symbol] = ACTIONS(667), + [anon_sym_LBRACK_CARET] = ACTIONS(676), + [anon_sym_BANG_LBRACK] = ACTIONS(679), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LPAREN] = ACTIONS(685), + [anon_sym_DOLLAR] = ACTIONS(688), + [anon_sym_TODO] = ACTIONS(691), + [anon_sym_WIP] = ACTIONS(691), + [anon_sym_NOTE] = ACTIONS(694), + [anon_sym_INFO] = ACTIONS(694), + [anon_sym_XXX] = ACTIONS(694), + [sym_fixme] = ACTIONS(667), + [sym__whitespace1] = ACTIONS(697), + [sym__newline] = ACTIONS(700), + [aux_sym__text_token1] = ACTIONS(703), + [sym__verbatim_begin] = ACTIONS(706), + [sym_highlighted_end] = ACTIONS(221), + }, + [26] = { + [sym__inline] = STATE(932), + [sym__element] = STATE(64), + [sym_emphasis] = STATE(133), + [sym_emphasis_begin] = STATE(1124), + [sym_strong] = STATE(133), + [sym_strong_begin] = STATE(1125), + [sym_superscript] = STATE(133), + [sym_superscript_begin] = STATE(1126), + [sym_subscript] = STATE(133), + [sym_subscript_begin] = STATE(1127), + [sym_highlighted] = STATE(133), + [sym_highlighted_begin] = STATE(1128), + [sym_insert] = STATE(133), + [sym_insert_begin] = STATE(1129), + [sym_delete] = STATE(133), + [sym_delete_begin] = STATE(1130), + [sym_hard_line_break] = STATE(140), + [sym__smart_punctuation] = STATE(140), + [sym_autolink] = STATE(140), + [sym_footnote_reference] = STATE(133), + [sym_footnote_marker_begin] = STATE(1131), + [sym__image] = STATE(133), + [sym_full_reference_image] = STATE(133), + [sym_collapsed_reference_image] = STATE(133), + [sym_inline_image] = STATE(133), + [sym_image_description] = STATE(663), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(133), + [sym_full_reference_link] = STATE(133), + [sym_collapsed_reference_link] = STATE(133), + [sym_inline_link] = STATE(133), + [sym_link_text] = STATE(669), + [sym_span] = STATE(64), + [sym__bracketed_text_begin] = STATE(1206), + [sym__comment_with_spaces] = STATE(140), + [sym_raw_inline] = STATE(140), + [sym_math] = STATE(140), + [sym_verbatim] = STATE(140), + [sym__todo_highlights] = STATE(140), + [sym_todo] = STATE(140), + [sym_note] = STATE(140), + [sym__symbol_fallback] = STATE(140), + [aux_sym__text] = STATE(122), + [aux_sym__inline_repeat1] = STATE(64), + [anon_sym_LBRACE_] = ACTIONS(537), + [anon_sym__] = ACTIONS(539), + [anon_sym_LBRACE_STAR] = ACTIONS(541), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE_CARET] = ACTIONS(545), + [anon_sym_CARET] = ACTIONS(545), + [anon_sym_LBRACE_TILDE] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(547), + [anon_sym_LBRACE_EQ] = ACTIONS(549), + [anon_sym_LBRACE_PLUS] = ACTIONS(551), + [anon_sym_LBRACE_DASH] = ACTIONS(553), + [anon_sym_BSLASH] = ACTIONS(555), + [sym_quotation_marks] = ACTIONS(557), + [sym_ellipsis] = ACTIONS(557), + [sym_em_dash] = ACTIONS(557), + [sym_en_dash] = ACTIONS(559), + [sym_backslash_escape] = ACTIONS(559), + [anon_sym_LT] = ACTIONS(561), + [sym_symbol] = ACTIONS(557), + [anon_sym_LBRACK_CARET] = ACTIONS(563), + [anon_sym_BANG_LBRACK] = ACTIONS(565), + [anon_sym_LBRACK] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_DOLLAR] = ACTIONS(571), + [anon_sym_TODO] = ACTIONS(573), + [anon_sym_WIP] = ACTIONS(573), + [anon_sym_NOTE] = ACTIONS(575), + [anon_sym_INFO] = ACTIONS(575), + [anon_sym_XXX] = ACTIONS(575), + [sym_fixme] = ACTIONS(557), + [sym__whitespace1] = ACTIONS(577), + [sym__newline] = ACTIONS(579), + [aux_sym__text_token1] = ACTIONS(581), + [sym__verbatim_begin] = ACTIONS(583), + }, + [27] = { + [sym__inline_without_trailing_space] = STATE(931), + [sym__element] = STATE(550), [sym_emphasis] = STATE(137), - [sym_emphasis_begin] = STATE(1112), + [sym_emphasis_begin] = STATE(1114), [sym_strong] = STATE(137), - [sym_strong_begin] = STATE(1113), + [sym_strong_begin] = STATE(1115), [sym_superscript] = STATE(137), - [sym_superscript_begin] = STATE(1114), + [sym_superscript_begin] = STATE(1116), [sym_subscript] = STATE(137), - [sym_subscript_begin] = STATE(1115), + [sym_subscript_begin] = STATE(1117), [sym_highlighted] = STATE(137), - [sym_highlighted_begin] = STATE(1116), + [sym_highlighted_begin] = STATE(1118), [sym_insert] = STATE(137), - [sym_insert_begin] = STATE(1117), + [sym_insert_begin] = STATE(1119), [sym_delete] = STATE(137), - [sym_delete_begin] = STATE(1118), - [sym_hard_line_break] = STATE(137), - [sym__smart_punctuation] = STATE(137), - [sym_autolink] = STATE(137), + [sym_delete_begin] = STATE(1120), + [sym_hard_line_break] = STATE(131), + [sym__smart_punctuation] = STATE(131), + [sym_autolink] = STATE(131), [sym_footnote_reference] = STATE(137), - [sym_footnote_marker_begin] = STATE(1119), + [sym_footnote_marker_begin] = STATE(1121), [sym__image] = STATE(137), [sym_full_reference_image] = STATE(137), [sym_collapsed_reference_image] = STATE(137), [sym_inline_image] = STATE(137), - [sym_image_description] = STATE(636), - [sym__image_description_begin] = STATE(1057), + [sym_image_description] = STATE(649), + [sym__image_description_begin] = STATE(1079), [sym__link] = STATE(137), [sym_full_reference_link] = STATE(137), [sym_collapsed_reference_link] = STATE(137), [sym_inline_link] = STATE(137), - [sym_link_text] = STATE(647), - [sym_span] = STATE(22), - [sym__bracketed_text_begin] = STATE(1185), - [sym__comment_with_spaces] = STATE(137), - [sym_raw_inline] = STATE(137), - [sym_math] = STATE(137), - [sym_verbatim] = STATE(137), - [sym__todo_highlights] = STATE(137), - [sym_todo] = STATE(137), - [sym_note] = STATE(137), - [sym__symbol_fallback] = STATE(137), - [aux_sym__text] = STATE(122), - [aux_sym__inline_repeat1] = STATE(22), - [anon_sym_LBRACE_] = ACTIONS(197), - [anon_sym__] = ACTIONS(199), - [anon_sym_LBRACE_STAR] = ACTIONS(201), - [anon_sym_STAR] = ACTIONS(203), - [anon_sym_LBRACE_CARET] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(205), - [anon_sym_LBRACE_TILDE] = ACTIONS(207), - [anon_sym_TILDE] = ACTIONS(207), - [anon_sym_LBRACE_EQ] = ACTIONS(209), - [anon_sym_LBRACE_PLUS] = ACTIONS(211), - [anon_sym_LBRACE_DASH] = ACTIONS(213), - [anon_sym_BSLASH] = ACTIONS(215), - [sym_quotation_marks] = ACTIONS(217), - [sym_ellipsis] = ACTIONS(217), - [sym_em_dash] = ACTIONS(217), - [sym_en_dash] = ACTIONS(219), - [sym_backslash_escape] = ACTIONS(219), - [anon_sym_LT] = ACTIONS(221), - [sym_symbol] = ACTIONS(217), - [anon_sym_LBRACK_CARET] = ACTIONS(223), - [anon_sym_BANG_LBRACK] = ACTIONS(225), - [anon_sym_LBRACK] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_DOLLAR] = ACTIONS(231), - [anon_sym_TODO] = ACTIONS(233), - [anon_sym_WIP] = ACTIONS(233), - [anon_sym_NOTE] = ACTIONS(235), - [anon_sym_INFO] = ACTIONS(235), - [anon_sym_XXX] = ACTIONS(235), - [sym_fixme] = ACTIONS(217), - [sym__whitespace1] = ACTIONS(237), - [sym__newline] = ACTIONS(239), - [aux_sym__text_token1] = ACTIONS(241), - [sym__verbatim_begin] = ACTIONS(243), - }, - [25] = { - [sym__inline] = STATE(910), - [sym__element] = STATE(106), - [sym_emphasis] = STATE(139), - [sym_emphasis_begin] = STATE(1102), - [sym_strong] = STATE(139), - [sym_strong_begin] = STATE(1103), - [sym_superscript] = STATE(139), - [sym_superscript_begin] = STATE(1104), - [sym_subscript] = STATE(139), - [sym_subscript_begin] = STATE(1105), - [sym_highlighted] = STATE(139), - [sym_highlighted_begin] = STATE(1106), - [sym_insert] = STATE(139), - [sym_insert_begin] = STATE(1107), - [sym_delete] = STATE(139), - [sym_delete_begin] = STATE(1108), - [sym_hard_line_break] = STATE(139), - [sym__smart_punctuation] = STATE(139), - [sym_autolink] = STATE(139), - [sym_footnote_reference] = STATE(139), - [sym_footnote_marker_begin] = STATE(1109), - [sym__image] = STATE(139), - [sym_full_reference_image] = STATE(139), - [sym_collapsed_reference_image] = STATE(139), - [sym_inline_image] = STATE(139), - [sym_image_description] = STATE(623), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(139), - [sym_full_reference_link] = STATE(139), - [sym_collapsed_reference_link] = STATE(139), - [sym_inline_link] = STATE(139), - [sym_link_text] = STATE(621), - [sym_span] = STATE(106), - [sym__bracketed_text_begin] = STATE(1184), - [sym__comment_with_spaces] = STATE(139), - [sym_raw_inline] = STATE(139), - [sym_math] = STATE(139), - [sym_verbatim] = STATE(139), - [sym__todo_highlights] = STATE(139), - [sym_todo] = STATE(139), - [sym_note] = STATE(139), - [sym__symbol_fallback] = STATE(139), - [aux_sym__text] = STATE(126), - [aux_sym__inline_repeat1] = STATE(106), - [anon_sym_LBRACE_] = ACTIONS(101), - [anon_sym__] = ACTIONS(103), - [anon_sym_LBRACE_STAR] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_LBRACE_CARET] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(109), - [anon_sym_LBRACE_TILDE] = ACTIONS(111), - [anon_sym_TILDE] = ACTIONS(111), - [anon_sym_LBRACE_EQ] = ACTIONS(113), - [anon_sym_LBRACE_PLUS] = ACTIONS(115), - [anon_sym_LBRACE_DASH] = ACTIONS(117), - [anon_sym_BSLASH] = ACTIONS(119), - [sym_quotation_marks] = ACTIONS(121), - [sym_ellipsis] = ACTIONS(121), - [sym_em_dash] = ACTIONS(121), - [sym_en_dash] = ACTIONS(123), - [sym_backslash_escape] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(125), - [sym_symbol] = ACTIONS(121), - [anon_sym_LBRACK_CARET] = ACTIONS(127), - [anon_sym_BANG_LBRACK] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_TODO] = ACTIONS(137), - [anon_sym_WIP] = ACTIONS(137), - [anon_sym_NOTE] = ACTIONS(139), - [anon_sym_INFO] = ACTIONS(139), - [anon_sym_XXX] = ACTIONS(139), - [sym_fixme] = ACTIONS(121), - [sym__whitespace1] = ACTIONS(141), - [sym__newline] = ACTIONS(143), - [aux_sym__text_token1] = ACTIONS(145), - [sym__verbatim_begin] = ACTIONS(147), - }, - [26] = { - [sym__inline_without_trailing_space] = STATE(909), - [sym__element] = STATE(536), - [sym_emphasis] = STATE(138), - [sym_emphasis_begin] = STATE(1092), - [sym_strong] = STATE(138), - [sym_strong_begin] = STATE(1093), - [sym_superscript] = STATE(138), - [sym_superscript_begin] = STATE(1094), - [sym_subscript] = STATE(138), - [sym_subscript_begin] = STATE(1095), - [sym_highlighted] = STATE(138), - [sym_highlighted_begin] = STATE(1096), - [sym_insert] = STATE(138), - [sym_insert_begin] = STATE(1097), - [sym_delete] = STATE(138), - [sym_delete_begin] = STATE(1098), - [sym_hard_line_break] = STATE(138), - [sym__smart_punctuation] = STATE(138), - [sym_autolink] = STATE(138), - [sym_footnote_reference] = STATE(138), - [sym_footnote_marker_begin] = STATE(1099), - [sym__image] = STATE(138), - [sym_full_reference_image] = STATE(138), - [sym_collapsed_reference_image] = STATE(138), - [sym_inline_image] = STATE(138), - [sym_image_description] = STATE(626), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(138), - [sym_full_reference_link] = STATE(138), - [sym_collapsed_reference_link] = STATE(138), - [sym_inline_link] = STATE(138), - [sym_link_text] = STATE(627), - [sym_span] = STATE(536), - [sym__bracketed_text_begin] = STATE(1183), - [sym__comment_with_spaces] = STATE(138), - [sym_raw_inline] = STATE(138), - [sym_math] = STATE(138), - [sym_verbatim] = STATE(138), - [sym__todo_highlights] = STATE(138), - [sym_todo] = STATE(138), - [sym_note] = STATE(138), - [sym__symbol_fallback] = STATE(138), - [aux_sym__text] = STATE(127), - [aux_sym__inline_repeat1] = STATE(118), - [anon_sym_LBRACE_] = ACTIONS(149), - [anon_sym__] = ACTIONS(151), - [anon_sym_LBRACE_STAR] = ACTIONS(153), - [anon_sym_STAR] = ACTIONS(155), - [anon_sym_LBRACE_CARET] = ACTIONS(157), - [anon_sym_CARET] = ACTIONS(157), - [anon_sym_LBRACE_TILDE] = ACTIONS(159), - [anon_sym_TILDE] = ACTIONS(159), - [anon_sym_LBRACE_EQ] = ACTIONS(161), - [anon_sym_LBRACE_PLUS] = ACTIONS(163), - [anon_sym_LBRACE_DASH] = ACTIONS(165), - [anon_sym_BSLASH] = ACTIONS(167), - [sym_quotation_marks] = ACTIONS(169), - [sym_ellipsis] = ACTIONS(169), - [sym_em_dash] = ACTIONS(169), - [sym_en_dash] = ACTIONS(171), - [sym_backslash_escape] = ACTIONS(171), - [anon_sym_LT] = ACTIONS(173), - [sym_symbol] = ACTIONS(169), - [anon_sym_LBRACK_CARET] = ACTIONS(175), - [anon_sym_BANG_LBRACK] = ACTIONS(177), - [anon_sym_LBRACK] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(181), - [anon_sym_DOLLAR] = ACTIONS(183), - [anon_sym_TODO] = ACTIONS(185), - [anon_sym_WIP] = ACTIONS(185), - [anon_sym_NOTE] = ACTIONS(187), - [anon_sym_INFO] = ACTIONS(187), - [anon_sym_XXX] = ACTIONS(187), - [sym_fixme] = ACTIONS(169), - [sym__whitespace1] = ACTIONS(189), - [sym__newline] = ACTIONS(191), - [aux_sym__text_token1] = ACTIONS(193), - [sym__verbatim_begin] = ACTIONS(195), - }, - [27] = { - [sym__inline_without_trailing_space] = STATE(908), - [sym__element] = STATE(581), - [sym_emphasis] = STATE(141), - [sym_emphasis_begin] = STATE(1082), - [sym_strong] = STATE(141), - [sym_strong_begin] = STATE(1083), - [sym_superscript] = STATE(141), - [sym_superscript_begin] = STATE(1084), - [sym_subscript] = STATE(141), - [sym_subscript_begin] = STATE(1085), - [sym_highlighted] = STATE(141), - [sym_highlighted_begin] = STATE(1086), - [sym_insert] = STATE(141), - [sym_insert_begin] = STATE(1087), - [sym_delete] = STATE(141), - [sym_delete_begin] = STATE(1088), - [sym_hard_line_break] = STATE(141), - [sym__smart_punctuation] = STATE(141), - [sym_autolink] = STATE(141), - [sym_footnote_reference] = STATE(141), - [sym_footnote_marker_begin] = STATE(1089), - [sym__image] = STATE(141), - [sym_full_reference_image] = STATE(141), - [sym_collapsed_reference_image] = STATE(141), - [sym_inline_image] = STATE(141), - [sym_image_description] = STATE(642), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(141), - [sym_full_reference_link] = STATE(141), - [sym_collapsed_reference_link] = STATE(141), - [sym_inline_link] = STATE(141), - [sym_link_text] = STATE(629), - [sym_span] = STATE(581), - [sym__bracketed_text_begin] = STATE(1182), - [sym__comment_with_spaces] = STATE(141), - [sym_raw_inline] = STATE(141), - [sym_math] = STATE(141), - [sym_verbatim] = STATE(141), - [sym__todo_highlights] = STATE(141), - [sym_todo] = STATE(141), - [sym_note] = STATE(141), - [sym__symbol_fallback] = STATE(141), - [aux_sym__text] = STATE(125), + [sym_link_text] = STATE(650), + [sym_span] = STATE(550), + [sym__bracketed_text_begin] = STATE(1205), + [sym__comment_with_spaces] = STATE(131), + [sym_raw_inline] = STATE(131), + [sym_math] = STATE(131), + [sym_verbatim] = STATE(131), + [sym__todo_highlights] = STATE(131), + [sym_todo] = STATE(131), + [sym_note] = STATE(131), + [sym__symbol_fallback] = STATE(131), + [aux_sym__text] = STATE(130), [aux_sym__inline_repeat1] = STATE(119), - [anon_sym_LBRACE_] = ACTIONS(585), - [anon_sym__] = ACTIONS(587), - [anon_sym_LBRACE_STAR] = ACTIONS(589), - [anon_sym_STAR] = ACTIONS(591), - [anon_sym_LBRACE_CARET] = ACTIONS(593), - [anon_sym_CARET] = ACTIONS(593), - [anon_sym_LBRACE_TILDE] = ACTIONS(595), - [anon_sym_TILDE] = ACTIONS(595), - [anon_sym_LBRACE_EQ] = ACTIONS(597), - [anon_sym_LBRACE_PLUS] = ACTIONS(599), - [anon_sym_LBRACE_DASH] = ACTIONS(601), - [anon_sym_BSLASH] = ACTIONS(603), - [sym_quotation_marks] = ACTIONS(605), - [sym_ellipsis] = ACTIONS(605), - [sym_em_dash] = ACTIONS(605), - [sym_en_dash] = ACTIONS(607), - [sym_backslash_escape] = ACTIONS(607), - [anon_sym_LT] = ACTIONS(609), - [sym_symbol] = ACTIONS(605), - [anon_sym_LBRACK_CARET] = ACTIONS(611), - [anon_sym_BANG_LBRACK] = ACTIONS(613), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_DOLLAR] = ACTIONS(619), - [anon_sym_TODO] = ACTIONS(621), - [anon_sym_WIP] = ACTIONS(621), - [anon_sym_NOTE] = ACTIONS(623), - [anon_sym_INFO] = ACTIONS(623), - [anon_sym_XXX] = ACTIONS(623), - [sym_fixme] = ACTIONS(605), - [sym__whitespace1] = ACTIONS(625), - [sym__newline] = ACTIONS(627), - [aux_sym__text_token1] = ACTIONS(629), - [sym__verbatim_begin] = ACTIONS(631), + [anon_sym_LBRACE_] = ACTIONS(489), + [anon_sym__] = ACTIONS(491), + [anon_sym_LBRACE_STAR] = ACTIONS(493), + [anon_sym_STAR] = ACTIONS(495), + [anon_sym_LBRACE_CARET] = ACTIONS(497), + [anon_sym_CARET] = ACTIONS(497), + [anon_sym_LBRACE_TILDE] = ACTIONS(499), + [anon_sym_TILDE] = ACTIONS(499), + [anon_sym_LBRACE_EQ] = ACTIONS(501), + [anon_sym_LBRACE_PLUS] = ACTIONS(503), + [anon_sym_LBRACE_DASH] = ACTIONS(505), + [anon_sym_BSLASH] = ACTIONS(507), + [sym_quotation_marks] = ACTIONS(509), + [sym_ellipsis] = ACTIONS(509), + [sym_em_dash] = ACTIONS(509), + [sym_en_dash] = ACTIONS(511), + [sym_backslash_escape] = ACTIONS(511), + [anon_sym_LT] = ACTIONS(513), + [sym_symbol] = ACTIONS(509), + [anon_sym_LBRACK_CARET] = ACTIONS(515), + [anon_sym_BANG_LBRACK] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(519), + [anon_sym_LPAREN] = ACTIONS(521), + [anon_sym_DOLLAR] = ACTIONS(523), + [anon_sym_TODO] = ACTIONS(525), + [anon_sym_WIP] = ACTIONS(525), + [anon_sym_NOTE] = ACTIONS(527), + [anon_sym_INFO] = ACTIONS(527), + [anon_sym_XXX] = ACTIONS(527), + [sym_fixme] = ACTIONS(509), + [sym__whitespace1] = ACTIONS(529), + [sym__newline] = ACTIONS(531), + [aux_sym__text_token1] = ACTIONS(533), + [sym__verbatim_begin] = ACTIONS(535), }, [28] = { - [sym__inline] = STATE(882), - [sym__element] = STATE(71), - [sym_emphasis] = STATE(132), - [sym_emphasis_begin] = STATE(1152), - [sym_strong] = STATE(132), - [sym_strong_begin] = STATE(1153), - [sym_superscript] = STATE(132), - [sym_superscript_begin] = STATE(1154), - [sym_subscript] = STATE(132), - [sym_subscript_begin] = STATE(1155), - [sym_highlighted] = STATE(132), - [sym_highlighted_begin] = STATE(1156), - [sym_insert] = STATE(132), - [sym_insert_begin] = STATE(1157), - [sym_delete] = STATE(132), - [sym_delete_begin] = STATE(1158), - [sym_hard_line_break] = STATE(132), - [sym__smart_punctuation] = STATE(132), - [sym_autolink] = STATE(132), - [sym_footnote_reference] = STATE(132), - [sym_footnote_marker_begin] = STATE(1159), - [sym__image] = STATE(132), - [sym_full_reference_image] = STATE(132), - [sym_collapsed_reference_image] = STATE(132), - [sym_inline_image] = STATE(132), - [sym_image_description] = STATE(633), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(132), - [sym_full_reference_link] = STATE(132), - [sym_collapsed_reference_link] = STATE(132), - [sym_inline_link] = STATE(132), - [sym_link_text] = STATE(631), - [sym_span] = STATE(71), - [sym__bracketed_text_begin] = STATE(1189), - [sym__comment_with_spaces] = STATE(132), - [sym_raw_inline] = STATE(132), - [sym_math] = STATE(132), - [sym_verbatim] = STATE(132), - [sym__todo_highlights] = STATE(132), - [sym_todo] = STATE(132), - [sym_note] = STATE(132), - [sym__symbol_fallback] = STATE(132), - [aux_sym__text] = STATE(128), - [aux_sym__inline_repeat1] = STATE(71), + [sym__inline_without_trailing_space] = STATE(930), + [sym__element] = STATE(594), + [sym_emphasis] = STATE(149), + [sym_emphasis_begin] = STATE(1104), + [sym_strong] = STATE(149), + [sym_strong_begin] = STATE(1105), + [sym_superscript] = STATE(149), + [sym_superscript_begin] = STATE(1106), + [sym_subscript] = STATE(149), + [sym_subscript_begin] = STATE(1107), + [sym_highlighted] = STATE(149), + [sym_highlighted_begin] = STATE(1108), + [sym_insert] = STATE(149), + [sym_insert_begin] = STATE(1109), + [sym_delete] = STATE(149), + [sym_delete_begin] = STATE(1110), + [sym_hard_line_break] = STATE(143), + [sym__smart_punctuation] = STATE(143), + [sym_autolink] = STATE(143), + [sym_footnote_reference] = STATE(149), + [sym_footnote_marker_begin] = STATE(1111), + [sym__image] = STATE(149), + [sym_full_reference_image] = STATE(149), + [sym_collapsed_reference_image] = STATE(149), + [sym_inline_image] = STATE(149), + [sym_image_description] = STATE(658), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(149), + [sym_full_reference_link] = STATE(149), + [sym_collapsed_reference_link] = STATE(149), + [sym_inline_link] = STATE(149), + [sym_link_text] = STATE(672), + [sym_span] = STATE(594), + [sym__bracketed_text_begin] = STATE(1204), + [sym__comment_with_spaces] = STATE(143), + [sym_raw_inline] = STATE(143), + [sym_math] = STATE(143), + [sym_verbatim] = STATE(143), + [sym__todo_highlights] = STATE(143), + [sym_todo] = STATE(143), + [sym_note] = STATE(143), + [sym__symbol_fallback] = STATE(143), + [aux_sym__text] = STATE(127), + [aux_sym__inline_repeat1] = STATE(120), [anon_sym_LBRACE_] = ACTIONS(441), [anon_sym__] = ACTIONS(443), [anon_sym_LBRACE_STAR] = ACTIONS(445), @@ -7414,370 +7458,210 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(487), }, [29] = { - [sym__inline] = STATE(880), - [sym__element] = STATE(65), - [sym_emphasis] = STATE(133), - [sym_emphasis_begin] = STATE(1142), - [sym_strong] = STATE(133), - [sym_strong_begin] = STATE(1143), - [sym_superscript] = STATE(133), - [sym_superscript_begin] = STATE(1144), - [sym_subscript] = STATE(133), - [sym_subscript_begin] = STATE(1145), - [sym_highlighted] = STATE(133), - [sym_highlighted_begin] = STATE(1146), - [sym_insert] = STATE(133), - [sym_insert_begin] = STATE(1147), - [sym_delete] = STATE(133), - [sym_delete_begin] = STATE(1148), - [sym_hard_line_break] = STATE(133), - [sym__smart_punctuation] = STATE(133), - [sym_autolink] = STATE(133), - [sym_footnote_reference] = STATE(133), - [sym_footnote_marker_begin] = STATE(1149), - [sym__image] = STATE(133), - [sym_full_reference_image] = STATE(133), - [sym_collapsed_reference_image] = STATE(133), - [sym_inline_image] = STATE(133), - [sym_image_description] = STATE(638), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(133), - [sym_full_reference_link] = STATE(133), - [sym_collapsed_reference_link] = STATE(133), - [sym_inline_link] = STATE(133), - [sym_link_text] = STATE(637), - [sym_span] = STATE(65), - [sym__bracketed_text_begin] = STATE(1188), - [sym__comment_with_spaces] = STATE(133), - [sym_raw_inline] = STATE(133), - [sym_math] = STATE(133), - [sym_verbatim] = STATE(133), - [sym__todo_highlights] = STATE(133), - [sym_todo] = STATE(133), - [sym_note] = STATE(133), - [sym__symbol_fallback] = STATE(133), - [aux_sym__text] = STATE(129), - [aux_sym__inline_repeat1] = STATE(65), - [anon_sym_LBRACE_] = ACTIONS(489), - [anon_sym__] = ACTIONS(491), - [anon_sym_LBRACE_STAR] = ACTIONS(493), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_LBRACE_CARET] = ACTIONS(497), - [anon_sym_CARET] = ACTIONS(497), - [anon_sym_LBRACE_TILDE] = ACTIONS(499), - [anon_sym_TILDE] = ACTIONS(499), - [anon_sym_LBRACE_EQ] = ACTIONS(501), - [anon_sym_LBRACE_PLUS] = ACTIONS(503), - [anon_sym_LBRACE_DASH] = ACTIONS(505), - [anon_sym_BSLASH] = ACTIONS(507), - [sym_quotation_marks] = ACTIONS(509), - [sym_ellipsis] = ACTIONS(509), - [sym_em_dash] = ACTIONS(509), - [sym_en_dash] = ACTIONS(511), - [sym_backslash_escape] = ACTIONS(511), - [anon_sym_LT] = ACTIONS(513), - [sym_symbol] = ACTIONS(509), - [anon_sym_LBRACK_CARET] = ACTIONS(515), - [anon_sym_BANG_LBRACK] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(519), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_DOLLAR] = ACTIONS(523), - [anon_sym_TODO] = ACTIONS(525), - [anon_sym_WIP] = ACTIONS(525), - [anon_sym_NOTE] = ACTIONS(527), - [anon_sym_INFO] = ACTIONS(527), - [anon_sym_XXX] = ACTIONS(527), - [sym_fixme] = ACTIONS(509), - [sym__whitespace1] = ACTIONS(529), - [sym__newline] = ACTIONS(531), - [aux_sym__text_token1] = ACTIONS(533), - [sym__verbatim_begin] = ACTIONS(535), + [sym__inline] = STATE(904), + [sym__element] = STATE(46), + [sym_emphasis] = STATE(135), + [sym_emphasis_begin] = STATE(1174), + [sym_strong] = STATE(135), + [sym_strong_begin] = STATE(1175), + [sym_superscript] = STATE(135), + [sym_superscript_begin] = STATE(1176), + [sym_subscript] = STATE(135), + [sym_subscript_begin] = STATE(1177), + [sym_highlighted] = STATE(135), + [sym_highlighted_begin] = STATE(1178), + [sym_insert] = STATE(135), + [sym_insert_begin] = STATE(1179), + [sym_delete] = STATE(135), + [sym_delete_begin] = STATE(1180), + [sym_hard_line_break] = STATE(138), + [sym__smart_punctuation] = STATE(138), + [sym_autolink] = STATE(138), + [sym_footnote_reference] = STATE(135), + [sym_footnote_marker_begin] = STATE(1181), + [sym__image] = STATE(135), + [sym_full_reference_image] = STATE(135), + [sym_collapsed_reference_image] = STATE(135), + [sym_inline_image] = STATE(135), + [sym_image_description] = STATE(656), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(135), + [sym_full_reference_link] = STATE(135), + [sym_collapsed_reference_link] = STATE(135), + [sym_inline_link] = STATE(135), + [sym_link_text] = STATE(654), + [sym_span] = STATE(46), + [sym__bracketed_text_begin] = STATE(1211), + [sym__comment_with_spaces] = STATE(138), + [sym_raw_inline] = STATE(138), + [sym_math] = STATE(138), + [sym_verbatim] = STATE(138), + [sym__todo_highlights] = STATE(138), + [sym_todo] = STATE(138), + [sym_note] = STATE(138), + [sym__symbol_fallback] = STATE(138), + [aux_sym__text] = STATE(121), + [aux_sym__inline_repeat1] = STATE(46), + [anon_sym_LBRACE_] = ACTIONS(345), + [anon_sym__] = ACTIONS(347), + [anon_sym_LBRACE_STAR] = ACTIONS(349), + [anon_sym_STAR] = ACTIONS(351), + [anon_sym_LBRACE_CARET] = ACTIONS(353), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_LBRACE_TILDE] = ACTIONS(355), + [anon_sym_TILDE] = ACTIONS(355), + [anon_sym_LBRACE_EQ] = ACTIONS(357), + [anon_sym_LBRACE_PLUS] = ACTIONS(359), + [anon_sym_LBRACE_DASH] = ACTIONS(361), + [anon_sym_BSLASH] = ACTIONS(363), + [sym_quotation_marks] = ACTIONS(365), + [sym_ellipsis] = ACTIONS(365), + [sym_em_dash] = ACTIONS(365), + [sym_en_dash] = ACTIONS(367), + [sym_backslash_escape] = ACTIONS(367), + [anon_sym_LT] = ACTIONS(369), + [sym_symbol] = ACTIONS(365), + [anon_sym_LBRACK_CARET] = ACTIONS(371), + [anon_sym_BANG_LBRACK] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(375), + [anon_sym_LPAREN] = ACTIONS(377), + [anon_sym_DOLLAR] = ACTIONS(379), + [anon_sym_TODO] = ACTIONS(381), + [anon_sym_WIP] = ACTIONS(381), + [anon_sym_NOTE] = ACTIONS(383), + [anon_sym_INFO] = ACTIONS(383), + [anon_sym_XXX] = ACTIONS(383), + [sym_fixme] = ACTIONS(365), + [sym__whitespace1] = ACTIONS(385), + [sym__newline] = ACTIONS(387), + [aux_sym__text_token1] = ACTIONS(389), + [sym__verbatim_begin] = ACTIONS(391), }, [30] = { - [sym__inline] = STATE(879), - [sym__element] = STATE(37), - [sym_emphasis] = STATE(131), - [sym_emphasis_begin] = STATE(1132), - [sym_strong] = STATE(131), - [sym_strong_begin] = STATE(1133), - [sym_superscript] = STATE(131), - [sym_superscript_begin] = STATE(1134), - [sym_subscript] = STATE(131), - [sym_subscript_begin] = STATE(1135), - [sym_highlighted] = STATE(131), - [sym_highlighted_begin] = STATE(1136), - [sym_insert] = STATE(131), - [sym_insert_begin] = STATE(1137), - [sym_delete] = STATE(131), - [sym_delete_begin] = STATE(1138), - [sym_hard_line_break] = STATE(131), - [sym__smart_punctuation] = STATE(131), - [sym_autolink] = STATE(131), - [sym_footnote_reference] = STATE(131), - [sym_footnote_marker_begin] = STATE(1139), - [sym__image] = STATE(131), - [sym_full_reference_image] = STATE(131), - [sym_collapsed_reference_image] = STATE(131), - [sym_inline_image] = STATE(131), - [sym_image_description] = STATE(643), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(131), - [sym_full_reference_link] = STATE(131), - [sym_collapsed_reference_link] = STATE(131), - [sym_inline_link] = STATE(131), - [sym_link_text] = STATE(619), - [sym_span] = STATE(37), - [sym__bracketed_text_begin] = STATE(1187), - [sym__comment_with_spaces] = STATE(131), - [sym_raw_inline] = STATE(131), - [sym_math] = STATE(131), - [sym_verbatim] = STATE(131), - [sym__todo_highlights] = STATE(131), - [sym_todo] = STATE(131), - [sym_note] = STATE(131), - [sym__symbol_fallback] = STATE(131), - [aux_sym__text] = STATE(123), - [aux_sym__inline_repeat1] = STATE(37), - [anon_sym_LBRACE_] = ACTIONS(537), - [anon_sym__] = ACTIONS(539), - [anon_sym_LBRACE_STAR] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(543), - [anon_sym_LBRACE_CARET] = ACTIONS(545), - [anon_sym_CARET] = ACTIONS(545), - [anon_sym_LBRACE_TILDE] = ACTIONS(547), - [anon_sym_TILDE] = ACTIONS(547), - [anon_sym_LBRACE_EQ] = ACTIONS(549), - [anon_sym_LBRACE_PLUS] = ACTIONS(551), - [anon_sym_LBRACE_DASH] = ACTIONS(553), - [anon_sym_BSLASH] = ACTIONS(555), - [sym_quotation_marks] = ACTIONS(557), - [sym_ellipsis] = ACTIONS(557), - [sym_em_dash] = ACTIONS(557), - [sym_en_dash] = ACTIONS(559), - [sym_backslash_escape] = ACTIONS(559), - [anon_sym_LT] = ACTIONS(561), - [sym_symbol] = ACTIONS(557), - [anon_sym_LBRACK_CARET] = ACTIONS(563), - [anon_sym_BANG_LBRACK] = ACTIONS(565), - [anon_sym_LBRACK] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_DOLLAR] = ACTIONS(571), - [anon_sym_TODO] = ACTIONS(573), - [anon_sym_WIP] = ACTIONS(573), - [anon_sym_NOTE] = ACTIONS(575), - [anon_sym_INFO] = ACTIONS(575), - [anon_sym_XXX] = ACTIONS(575), - [sym_fixme] = ACTIONS(557), - [sym__whitespace1] = ACTIONS(577), - [sym__newline] = ACTIONS(579), - [aux_sym__text_token1] = ACTIONS(581), - [sym__verbatim_begin] = ACTIONS(583), + [sym__element] = STATE(49), + [sym_emphasis] = STATE(132), + [sym_emphasis_begin] = STATE(1164), + [sym_strong] = STATE(132), + [sym_strong_begin] = STATE(1165), + [sym_superscript] = STATE(132), + [sym_superscript_begin] = STATE(1166), + [sym_subscript] = STATE(132), + [sym_subscript_begin] = STATE(1167), + [sym_highlighted] = STATE(132), + [sym_highlighted_begin] = STATE(1168), + [sym_insert] = STATE(132), + [sym_insert_begin] = STATE(1169), + [sym_delete] = STATE(132), + [sym_delete_begin] = STATE(1170), + [sym_hard_line_break] = STATE(142), + [sym__smart_punctuation] = STATE(142), + [sym_autolink] = STATE(142), + [sym_footnote_reference] = STATE(132), + [sym_footnote_marker_begin] = STATE(1171), + [sym__image] = STATE(132), + [sym_full_reference_image] = STATE(132), + [sym_collapsed_reference_image] = STATE(132), + [sym_inline_image] = STATE(132), + [sym_image_description] = STATE(660), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(132), + [sym_full_reference_link] = STATE(132), + [sym_collapsed_reference_link] = STATE(132), + [sym_inline_link] = STATE(132), + [sym_link_text] = STATE(659), + [sym_span] = STATE(49), + [sym__bracketed_text_begin] = STATE(1210), + [sym__comment_with_spaces] = STATE(142), + [sym_raw_inline] = STATE(142), + [sym_math] = STATE(142), + [sym_verbatim] = STATE(142), + [sym__todo_highlights] = STATE(142), + [sym_todo] = STATE(142), + [sym_note] = STATE(142), + [sym__symbol_fallback] = STATE(142), + [aux_sym__text] = STATE(126), + [aux_sym__inline_repeat1] = STATE(49), + [anon_sym_LBRACE_] = ACTIONS(393), + [anon_sym__] = ACTIONS(395), + [anon_sym_LBRACE_STAR] = ACTIONS(397), + [anon_sym_STAR] = ACTIONS(399), + [anon_sym_LBRACE_CARET] = ACTIONS(401), + [anon_sym_CARET] = ACTIONS(401), + [anon_sym_LBRACE_TILDE] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_LBRACE_EQ] = ACTIONS(405), + [anon_sym_LBRACE_PLUS] = ACTIONS(407), + [anon_sym_LBRACE_DASH] = ACTIONS(409), + [anon_sym_BSLASH] = ACTIONS(411), + [sym_quotation_marks] = ACTIONS(413), + [sym_ellipsis] = ACTIONS(413), + [sym_em_dash] = ACTIONS(413), + [sym_en_dash] = ACTIONS(415), + [sym_backslash_escape] = ACTIONS(415), + [anon_sym_LT] = ACTIONS(417), + [sym_symbol] = ACTIONS(413), + [anon_sym_LBRACK_CARET] = ACTIONS(419), + [anon_sym_BANG_LBRACK] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(423), + [anon_sym_LPAREN] = ACTIONS(425), + [anon_sym_DOLLAR] = ACTIONS(427), + [anon_sym_TODO] = ACTIONS(429), + [anon_sym_WIP] = ACTIONS(429), + [anon_sym_NOTE] = ACTIONS(431), + [anon_sym_INFO] = ACTIONS(431), + [anon_sym_XXX] = ACTIONS(431), + [sym_fixme] = ACTIONS(413), + [sym__whitespace1] = ACTIONS(433), + [sym__newline] = ACTIONS(709), + [aux_sym__text_token1] = ACTIONS(437), + [sym__verbatim_begin] = ACTIONS(439), + [sym_delete_end] = ACTIONS(343), }, [31] = { - [sym__inline] = STATE(878), - [sym__element] = STATE(14), - [sym_emphasis] = STATE(136), - [sym_emphasis_begin] = STATE(1122), - [sym_strong] = STATE(136), - [sym_strong_begin] = STATE(1123), - [sym_superscript] = STATE(136), - [sym_superscript_begin] = STATE(1124), - [sym_subscript] = STATE(136), - [sym_subscript_begin] = STATE(1125), - [sym_highlighted] = STATE(136), - [sym_highlighted_begin] = STATE(1126), - [sym_insert] = STATE(136), - [sym_insert_begin] = STATE(1127), - [sym_delete] = STATE(136), - [sym_delete_begin] = STATE(1128), - [sym_hard_line_break] = STATE(136), - [sym__smart_punctuation] = STATE(136), - [sym_autolink] = STATE(136), - [sym_footnote_reference] = STATE(136), - [sym_footnote_marker_begin] = STATE(1129), - [sym__image] = STATE(136), - [sym_full_reference_image] = STATE(136), - [sym_collapsed_reference_image] = STATE(136), - [sym_inline_image] = STATE(136), - [sym_image_description] = STATE(651), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(136), - [sym_full_reference_link] = STATE(136), - [sym_collapsed_reference_link] = STATE(136), - [sym_inline_link] = STATE(136), - [sym_link_text] = STATE(650), - [sym_span] = STATE(14), - [sym__bracketed_text_begin] = STATE(1186), - [sym__comment_with_spaces] = STATE(136), - [sym_raw_inline] = STATE(136), - [sym_math] = STATE(136), - [sym_verbatim] = STATE(136), - [sym__todo_highlights] = STATE(136), - [sym_todo] = STATE(136), - [sym_note] = STATE(136), - [sym__symbol_fallback] = STATE(136), - [aux_sym__text] = STATE(130), - [aux_sym__inline_repeat1] = STATE(14), - [anon_sym_LBRACE_] = ACTIONS(319), - [anon_sym__] = ACTIONS(321), - [anon_sym_LBRACE_STAR] = ACTIONS(323), - [anon_sym_STAR] = ACTIONS(325), - [anon_sym_LBRACE_CARET] = ACTIONS(327), - [anon_sym_CARET] = ACTIONS(327), - [anon_sym_LBRACE_TILDE] = ACTIONS(329), - [anon_sym_TILDE] = ACTIONS(329), - [anon_sym_LBRACE_EQ] = ACTIONS(331), - [anon_sym_LBRACE_PLUS] = ACTIONS(333), - [anon_sym_LBRACE_DASH] = ACTIONS(335), - [anon_sym_BSLASH] = ACTIONS(337), - [sym_quotation_marks] = ACTIONS(339), - [sym_ellipsis] = ACTIONS(339), - [sym_em_dash] = ACTIONS(339), - [sym_en_dash] = ACTIONS(341), - [sym_backslash_escape] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(343), - [sym_symbol] = ACTIONS(339), - [anon_sym_LBRACK_CARET] = ACTIONS(345), - [anon_sym_BANG_LBRACK] = ACTIONS(347), - [anon_sym_LBRACK] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(351), - [anon_sym_DOLLAR] = ACTIONS(353), - [anon_sym_TODO] = ACTIONS(355), - [anon_sym_WIP] = ACTIONS(355), - [anon_sym_NOTE] = ACTIONS(357), - [anon_sym_INFO] = ACTIONS(357), - [anon_sym_XXX] = ACTIONS(357), - [sym_fixme] = ACTIONS(339), - [sym__whitespace1] = ACTIONS(359), - [sym__newline] = ACTIONS(635), - [aux_sym__text_token1] = ACTIONS(363), - [sym__verbatim_begin] = ACTIONS(365), - }, - [32] = { - [sym__inline] = STATE(877), + [sym__inline] = STATE(901), [sym__element] = STATE(22), - [sym_emphasis] = STATE(137), - [sym_emphasis_begin] = STATE(1112), - [sym_strong] = STATE(137), - [sym_strong_begin] = STATE(1113), - [sym_superscript] = STATE(137), - [sym_superscript_begin] = STATE(1114), - [sym_subscript] = STATE(137), - [sym_subscript_begin] = STATE(1115), - [sym_highlighted] = STATE(137), - [sym_highlighted_begin] = STATE(1116), - [sym_insert] = STATE(137), - [sym_insert_begin] = STATE(1117), - [sym_delete] = STATE(137), - [sym_delete_begin] = STATE(1118), - [sym_hard_line_break] = STATE(137), - [sym__smart_punctuation] = STATE(137), - [sym_autolink] = STATE(137), - [sym_footnote_reference] = STATE(137), - [sym_footnote_marker_begin] = STATE(1119), - [sym__image] = STATE(137), - [sym_full_reference_image] = STATE(137), - [sym_collapsed_reference_image] = STATE(137), - [sym_inline_image] = STATE(137), - [sym_image_description] = STATE(636), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(137), - [sym_full_reference_link] = STATE(137), - [sym_collapsed_reference_link] = STATE(137), - [sym_inline_link] = STATE(137), - [sym_link_text] = STATE(647), + [sym_emphasis] = STATE(147), + [sym_emphasis_begin] = STATE(1154), + [sym_strong] = STATE(147), + [sym_strong_begin] = STATE(1155), + [sym_superscript] = STATE(147), + [sym_superscript_begin] = STATE(1156), + [sym_subscript] = STATE(147), + [sym_subscript_begin] = STATE(1157), + [sym_highlighted] = STATE(147), + [sym_highlighted_begin] = STATE(1158), + [sym_insert] = STATE(147), + [sym_insert_begin] = STATE(1159), + [sym_delete] = STATE(147), + [sym_delete_begin] = STATE(1160), + [sym_hard_line_break] = STATE(145), + [sym__smart_punctuation] = STATE(145), + [sym_autolink] = STATE(145), + [sym_footnote_reference] = STATE(147), + [sym_footnote_marker_begin] = STATE(1161), + [sym__image] = STATE(147), + [sym_full_reference_image] = STATE(147), + [sym_collapsed_reference_image] = STATE(147), + [sym_inline_image] = STATE(147), + [sym_image_description] = STATE(665), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(147), + [sym_full_reference_link] = STATE(147), + [sym_collapsed_reference_link] = STATE(147), + [sym_inline_link] = STATE(147), + [sym_link_text] = STATE(664), [sym_span] = STATE(22), - [sym__bracketed_text_begin] = STATE(1185), - [sym__comment_with_spaces] = STATE(137), - [sym_raw_inline] = STATE(137), - [sym_math] = STATE(137), - [sym_verbatim] = STATE(137), - [sym__todo_highlights] = STATE(137), - [sym_todo] = STATE(137), - [sym_note] = STATE(137), - [sym__symbol_fallback] = STATE(137), - [aux_sym__text] = STATE(122), + [sym__bracketed_text_begin] = STATE(1209), + [sym__comment_with_spaces] = STATE(145), + [sym_raw_inline] = STATE(145), + [sym_math] = STATE(145), + [sym_verbatim] = STATE(145), + [sym__todo_highlights] = STATE(145), + [sym_todo] = STATE(145), + [sym_note] = STATE(145), + [sym__symbol_fallback] = STATE(145), + [aux_sym__text] = STATE(124), [aux_sym__inline_repeat1] = STATE(22), - [anon_sym_LBRACE_] = ACTIONS(197), - [anon_sym__] = ACTIONS(199), - [anon_sym_LBRACE_STAR] = ACTIONS(201), - [anon_sym_STAR] = ACTIONS(203), - [anon_sym_LBRACE_CARET] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(205), - [anon_sym_LBRACE_TILDE] = ACTIONS(207), - [anon_sym_TILDE] = ACTIONS(207), - [anon_sym_LBRACE_EQ] = ACTIONS(209), - [anon_sym_LBRACE_PLUS] = ACTIONS(211), - [anon_sym_LBRACE_DASH] = ACTIONS(213), - [anon_sym_BSLASH] = ACTIONS(215), - [sym_quotation_marks] = ACTIONS(217), - [sym_ellipsis] = ACTIONS(217), - [sym_em_dash] = ACTIONS(217), - [sym_en_dash] = ACTIONS(219), - [sym_backslash_escape] = ACTIONS(219), - [anon_sym_LT] = ACTIONS(221), - [sym_symbol] = ACTIONS(217), - [anon_sym_LBRACK_CARET] = ACTIONS(223), - [anon_sym_BANG_LBRACK] = ACTIONS(225), - [anon_sym_LBRACK] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_DOLLAR] = ACTIONS(231), - [anon_sym_TODO] = ACTIONS(233), - [anon_sym_WIP] = ACTIONS(233), - [anon_sym_NOTE] = ACTIONS(235), - [anon_sym_INFO] = ACTIONS(235), - [anon_sym_XXX] = ACTIONS(235), - [sym_fixme] = ACTIONS(217), - [sym__whitespace1] = ACTIONS(237), - [sym__newline] = ACTIONS(239), - [aux_sym__text_token1] = ACTIONS(241), - [sym__verbatim_begin] = ACTIONS(243), - }, - [33] = { - [sym__inline] = STATE(944), - [sym__element] = STATE(106), - [sym_emphasis] = STATE(139), - [sym_emphasis_begin] = STATE(1102), - [sym_strong] = STATE(139), - [sym_strong_begin] = STATE(1103), - [sym_superscript] = STATE(139), - [sym_superscript_begin] = STATE(1104), - [sym_subscript] = STATE(139), - [sym_subscript_begin] = STATE(1105), - [sym_highlighted] = STATE(139), - [sym_highlighted_begin] = STATE(1106), - [sym_insert] = STATE(139), - [sym_insert_begin] = STATE(1107), - [sym_delete] = STATE(139), - [sym_delete_begin] = STATE(1108), - [sym_hard_line_break] = STATE(139), - [sym__smart_punctuation] = STATE(139), - [sym_autolink] = STATE(139), - [sym_footnote_reference] = STATE(139), - [sym_footnote_marker_begin] = STATE(1109), - [sym__image] = STATE(139), - [sym_full_reference_image] = STATE(139), - [sym_collapsed_reference_image] = STATE(139), - [sym_inline_image] = STATE(139), - [sym_image_description] = STATE(623), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(139), - [sym_full_reference_link] = STATE(139), - [sym_collapsed_reference_link] = STATE(139), - [sym_inline_link] = STATE(139), - [sym_link_text] = STATE(621), - [sym_span] = STATE(106), - [sym__bracketed_text_begin] = STATE(1184), - [sym__comment_with_spaces] = STATE(139), - [sym_raw_inline] = STATE(139), - [sym_math] = STATE(139), - [sym_verbatim] = STATE(139), - [sym__todo_highlights] = STATE(139), - [sym_todo] = STATE(139), - [sym_note] = STATE(139), - [sym__symbol_fallback] = STATE(139), - [aux_sym__text] = STATE(126), - [aux_sym__inline_repeat1] = STATE(106), [anon_sym_LBRACE_] = ACTIONS(101), [anon_sym__] = ACTIONS(103), [anon_sym_LBRACE_STAR] = ACTIONS(105), @@ -7813,290 +7697,291 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token1] = ACTIONS(145), [sym__verbatim_begin] = ACTIONS(147), }, + [32] = { + [sym__inline] = STATE(900), + [sym__element] = STATE(110), + [sym_emphasis] = STATE(146), + [sym_emphasis_begin] = STATE(1144), + [sym_strong] = STATE(146), + [sym_strong_begin] = STATE(1145), + [sym_superscript] = STATE(146), + [sym_superscript_begin] = STATE(1146), + [sym_subscript] = STATE(146), + [sym_subscript_begin] = STATE(1147), + [sym_highlighted] = STATE(146), + [sym_highlighted_begin] = STATE(1148), + [sym_insert] = STATE(146), + [sym_insert_begin] = STATE(1149), + [sym_delete] = STATE(146), + [sym_delete_begin] = STATE(1150), + [sym_hard_line_break] = STATE(144), + [sym__smart_punctuation] = STATE(144), + [sym_autolink] = STATE(144), + [sym_footnote_reference] = STATE(146), + [sym_footnote_marker_begin] = STATE(1151), + [sym__image] = STATE(146), + [sym_full_reference_image] = STATE(146), + [sym_collapsed_reference_image] = STATE(146), + [sym_inline_image] = STATE(146), + [sym_image_description] = STATE(673), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(146), + [sym_full_reference_link] = STATE(146), + [sym_collapsed_reference_link] = STATE(146), + [sym_inline_link] = STATE(146), + [sym_link_text] = STATE(662), + [sym_span] = STATE(110), + [sym__bracketed_text_begin] = STATE(1208), + [sym__comment_with_spaces] = STATE(144), + [sym_raw_inline] = STATE(144), + [sym_math] = STATE(144), + [sym_verbatim] = STATE(144), + [sym__todo_highlights] = STATE(144), + [sym_todo] = STATE(144), + [sym_note] = STATE(144), + [sym__symbol_fallback] = STATE(144), + [aux_sym__text] = STATE(128), + [aux_sym__inline_repeat1] = STATE(110), + [anon_sym_LBRACE_] = ACTIONS(587), + [anon_sym__] = ACTIONS(589), + [anon_sym_LBRACE_STAR] = ACTIONS(591), + [anon_sym_STAR] = ACTIONS(593), + [anon_sym_LBRACE_CARET] = ACTIONS(595), + [anon_sym_CARET] = ACTIONS(595), + [anon_sym_LBRACE_TILDE] = ACTIONS(597), + [anon_sym_TILDE] = ACTIONS(597), + [anon_sym_LBRACE_EQ] = ACTIONS(599), + [anon_sym_LBRACE_PLUS] = ACTIONS(601), + [anon_sym_LBRACE_DASH] = ACTIONS(603), + [anon_sym_BSLASH] = ACTIONS(605), + [sym_quotation_marks] = ACTIONS(607), + [sym_ellipsis] = ACTIONS(607), + [sym_em_dash] = ACTIONS(607), + [sym_en_dash] = ACTIONS(609), + [sym_backslash_escape] = ACTIONS(609), + [anon_sym_LT] = ACTIONS(611), + [sym_symbol] = ACTIONS(607), + [anon_sym_LBRACK_CARET] = ACTIONS(613), + [anon_sym_BANG_LBRACK] = ACTIONS(615), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_LPAREN] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [anon_sym_TODO] = ACTIONS(623), + [anon_sym_WIP] = ACTIONS(623), + [anon_sym_NOTE] = ACTIONS(625), + [anon_sym_INFO] = ACTIONS(625), + [anon_sym_XXX] = ACTIONS(625), + [sym_fixme] = ACTIONS(607), + [sym__whitespace1] = ACTIONS(627), + [sym__newline] = ACTIONS(629), + [aux_sym__text_token1] = ACTIONS(631), + [sym__verbatim_begin] = ACTIONS(633), + }, + [33] = { + [sym__inline] = STATE(899), + [sym__element] = STATE(14), + [sym_emphasis] = STATE(136), + [sym_emphasis_begin] = STATE(1134), + [sym_strong] = STATE(136), + [sym_strong_begin] = STATE(1135), + [sym_superscript] = STATE(136), + [sym_superscript_begin] = STATE(1136), + [sym_subscript] = STATE(136), + [sym_subscript_begin] = STATE(1137), + [sym_highlighted] = STATE(136), + [sym_highlighted_begin] = STATE(1138), + [sym_insert] = STATE(136), + [sym_insert_begin] = STATE(1139), + [sym_delete] = STATE(136), + [sym_delete_begin] = STATE(1140), + [sym_hard_line_break] = STATE(134), + [sym__smart_punctuation] = STATE(134), + [sym_autolink] = STATE(134), + [sym_footnote_reference] = STATE(136), + [sym_footnote_marker_begin] = STATE(1141), + [sym__image] = STATE(136), + [sym_full_reference_image] = STATE(136), + [sym_collapsed_reference_image] = STATE(136), + [sym_inline_image] = STATE(136), + [sym_image_description] = STATE(670), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(136), + [sym_full_reference_link] = STATE(136), + [sym_collapsed_reference_link] = STATE(136), + [sym_inline_link] = STATE(136), + [sym_link_text] = STATE(671), + [sym_span] = STATE(14), + [sym__bracketed_text_begin] = STATE(1207), + [sym__comment_with_spaces] = STATE(134), + [sym_raw_inline] = STATE(134), + [sym_math] = STATE(134), + [sym_verbatim] = STATE(134), + [sym__todo_highlights] = STATE(134), + [sym_todo] = STATE(134), + [sym_note] = STATE(134), + [sym__symbol_fallback] = STATE(134), + [aux_sym__text] = STATE(129), + [aux_sym__inline_repeat1] = STATE(14), + [anon_sym_LBRACE_] = ACTIONS(295), + [anon_sym__] = ACTIONS(297), + [anon_sym_LBRACE_STAR] = ACTIONS(299), + [anon_sym_STAR] = ACTIONS(301), + [anon_sym_LBRACE_CARET] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(303), + [anon_sym_LBRACE_TILDE] = ACTIONS(305), + [anon_sym_TILDE] = ACTIONS(305), + [anon_sym_LBRACE_EQ] = ACTIONS(307), + [anon_sym_LBRACE_PLUS] = ACTIONS(309), + [anon_sym_LBRACE_DASH] = ACTIONS(311), + [anon_sym_BSLASH] = ACTIONS(313), + [sym_quotation_marks] = ACTIONS(315), + [sym_ellipsis] = ACTIONS(315), + [sym_em_dash] = ACTIONS(315), + [sym_en_dash] = ACTIONS(317), + [sym_backslash_escape] = ACTIONS(317), + [anon_sym_LT] = ACTIONS(319), + [sym_symbol] = ACTIONS(315), + [anon_sym_LBRACK_CARET] = ACTIONS(321), + [anon_sym_BANG_LBRACK] = ACTIONS(323), + [anon_sym_LBRACK] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(327), + [anon_sym_DOLLAR] = ACTIONS(329), + [anon_sym_TODO] = ACTIONS(331), + [anon_sym_WIP] = ACTIONS(331), + [anon_sym_NOTE] = ACTIONS(333), + [anon_sym_INFO] = ACTIONS(333), + [anon_sym_XXX] = ACTIONS(333), + [sym_fixme] = ACTIONS(315), + [sym__whitespace1] = ACTIONS(335), + [sym__newline] = ACTIONS(635), + [aux_sym__text_token1] = ACTIONS(339), + [sym__verbatim_begin] = ACTIONS(341), + }, [34] = { - [sym__inline] = STATE(876), - [sym__element] = STATE(106), - [sym_emphasis] = STATE(139), - [sym_emphasis_begin] = STATE(1102), - [sym_strong] = STATE(139), - [sym_strong_begin] = STATE(1103), - [sym_superscript] = STATE(139), - [sym_superscript_begin] = STATE(1104), - [sym_subscript] = STATE(139), - [sym_subscript_begin] = STATE(1105), - [sym_highlighted] = STATE(139), - [sym_highlighted_begin] = STATE(1106), - [sym_insert] = STATE(139), - [sym_insert_begin] = STATE(1107), - [sym_delete] = STATE(139), - [sym_delete_begin] = STATE(1108), - [sym_hard_line_break] = STATE(139), - [sym__smart_punctuation] = STATE(139), - [sym_autolink] = STATE(139), - [sym_footnote_reference] = STATE(139), - [sym_footnote_marker_begin] = STATE(1109), - [sym__image] = STATE(139), - [sym_full_reference_image] = STATE(139), - [sym_collapsed_reference_image] = STATE(139), - [sym_inline_image] = STATE(139), - [sym_image_description] = STATE(623), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(139), - [sym_full_reference_link] = STATE(139), - [sym_collapsed_reference_link] = STATE(139), - [sym_inline_link] = STATE(139), - [sym_link_text] = STATE(621), - [sym_span] = STATE(106), - [sym__bracketed_text_begin] = STATE(1184), - [sym__comment_with_spaces] = STATE(139), - [sym_raw_inline] = STATE(139), - [sym_math] = STATE(139), - [sym_verbatim] = STATE(139), - [sym__todo_highlights] = STATE(139), - [sym_todo] = STATE(139), - [sym_note] = STATE(139), - [sym__symbol_fallback] = STATE(139), - [aux_sym__text] = STATE(126), - [aux_sym__inline_repeat1] = STATE(106), - [anon_sym_LBRACE_] = ACTIONS(101), - [anon_sym__] = ACTIONS(103), - [anon_sym_LBRACE_STAR] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_LBRACE_CARET] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(109), - [anon_sym_LBRACE_TILDE] = ACTIONS(111), - [anon_sym_TILDE] = ACTIONS(111), - [anon_sym_LBRACE_EQ] = ACTIONS(113), - [anon_sym_LBRACE_PLUS] = ACTIONS(115), - [anon_sym_LBRACE_DASH] = ACTIONS(117), - [anon_sym_BSLASH] = ACTIONS(119), - [sym_quotation_marks] = ACTIONS(121), - [sym_ellipsis] = ACTIONS(121), - [sym_em_dash] = ACTIONS(121), - [sym_en_dash] = ACTIONS(123), - [sym_backslash_escape] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(125), - [sym_symbol] = ACTIONS(121), - [anon_sym_LBRACK_CARET] = ACTIONS(127), - [anon_sym_BANG_LBRACK] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_TODO] = ACTIONS(137), - [anon_sym_WIP] = ACTIONS(137), - [anon_sym_NOTE] = ACTIONS(139), - [anon_sym_INFO] = ACTIONS(139), - [anon_sym_XXX] = ACTIONS(139), - [sym_fixme] = ACTIONS(121), - [sym__whitespace1] = ACTIONS(141), - [sym__newline] = ACTIONS(143), - [aux_sym__text_token1] = ACTIONS(145), - [sym__verbatim_begin] = ACTIONS(147), + [sym__inline] = STATE(966), + [sym__element] = STATE(14), + [sym_emphasis] = STATE(136), + [sym_emphasis_begin] = STATE(1134), + [sym_strong] = STATE(136), + [sym_strong_begin] = STATE(1135), + [sym_superscript] = STATE(136), + [sym_superscript_begin] = STATE(1136), + [sym_subscript] = STATE(136), + [sym_subscript_begin] = STATE(1137), + [sym_highlighted] = STATE(136), + [sym_highlighted_begin] = STATE(1138), + [sym_insert] = STATE(136), + [sym_insert_begin] = STATE(1139), + [sym_delete] = STATE(136), + [sym_delete_begin] = STATE(1140), + [sym_hard_line_break] = STATE(134), + [sym__smart_punctuation] = STATE(134), + [sym_autolink] = STATE(134), + [sym_footnote_reference] = STATE(136), + [sym_footnote_marker_begin] = STATE(1141), + [sym__image] = STATE(136), + [sym_full_reference_image] = STATE(136), + [sym_collapsed_reference_image] = STATE(136), + [sym_inline_image] = STATE(136), + [sym_image_description] = STATE(670), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(136), + [sym_full_reference_link] = STATE(136), + [sym_collapsed_reference_link] = STATE(136), + [sym_inline_link] = STATE(136), + [sym_link_text] = STATE(671), + [sym_span] = STATE(14), + [sym__bracketed_text_begin] = STATE(1207), + [sym__comment_with_spaces] = STATE(134), + [sym_raw_inline] = STATE(134), + [sym_math] = STATE(134), + [sym_verbatim] = STATE(134), + [sym__todo_highlights] = STATE(134), + [sym_todo] = STATE(134), + [sym_note] = STATE(134), + [sym__symbol_fallback] = STATE(134), + [aux_sym__text] = STATE(129), + [aux_sym__inline_repeat1] = STATE(14), + [anon_sym_LBRACE_] = ACTIONS(295), + [anon_sym__] = ACTIONS(297), + [anon_sym_LBRACE_STAR] = ACTIONS(299), + [anon_sym_STAR] = ACTIONS(301), + [anon_sym_LBRACE_CARET] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(303), + [anon_sym_LBRACE_TILDE] = ACTIONS(305), + [anon_sym_TILDE] = ACTIONS(305), + [anon_sym_LBRACE_EQ] = ACTIONS(307), + [anon_sym_LBRACE_PLUS] = ACTIONS(309), + [anon_sym_LBRACE_DASH] = ACTIONS(311), + [anon_sym_BSLASH] = ACTIONS(313), + [sym_quotation_marks] = ACTIONS(315), + [sym_ellipsis] = ACTIONS(315), + [sym_em_dash] = ACTIONS(315), + [sym_en_dash] = ACTIONS(317), + [sym_backslash_escape] = ACTIONS(317), + [anon_sym_LT] = ACTIONS(319), + [sym_symbol] = ACTIONS(315), + [anon_sym_LBRACK_CARET] = ACTIONS(321), + [anon_sym_BANG_LBRACK] = ACTIONS(323), + [anon_sym_LBRACK] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(327), + [anon_sym_DOLLAR] = ACTIONS(329), + [anon_sym_TODO] = ACTIONS(331), + [anon_sym_WIP] = ACTIONS(331), + [anon_sym_NOTE] = ACTIONS(333), + [anon_sym_INFO] = ACTIONS(333), + [anon_sym_XXX] = ACTIONS(333), + [sym_fixme] = ACTIONS(315), + [sym__whitespace1] = ACTIONS(335), + [sym__newline] = ACTIONS(635), + [aux_sym__text_token1] = ACTIONS(339), + [sym__verbatim_begin] = ACTIONS(341), }, [35] = { - [sym__inline] = STATE(943), - [sym__element] = STATE(22), - [sym_emphasis] = STATE(137), - [sym_emphasis_begin] = STATE(1112), - [sym_strong] = STATE(137), - [sym_strong_begin] = STATE(1113), - [sym_superscript] = STATE(137), - [sym_superscript_begin] = STATE(1114), - [sym_subscript] = STATE(137), - [sym_subscript_begin] = STATE(1115), - [sym_highlighted] = STATE(137), - [sym_highlighted_begin] = STATE(1116), - [sym_insert] = STATE(137), - [sym_insert_begin] = STATE(1117), - [sym_delete] = STATE(137), - [sym_delete_begin] = STATE(1118), - [sym_hard_line_break] = STATE(137), - [sym__smart_punctuation] = STATE(137), - [sym_autolink] = STATE(137), - [sym_footnote_reference] = STATE(137), - [sym_footnote_marker_begin] = STATE(1119), - [sym__image] = STATE(137), - [sym_full_reference_image] = STATE(137), - [sym_collapsed_reference_image] = STATE(137), - [sym_inline_image] = STATE(137), - [sym_image_description] = STATE(636), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(137), - [sym_full_reference_link] = STATE(137), - [sym_collapsed_reference_link] = STATE(137), - [sym_inline_link] = STATE(137), - [sym_link_text] = STATE(647), - [sym_span] = STATE(22), - [sym__bracketed_text_begin] = STATE(1185), - [sym__comment_with_spaces] = STATE(137), - [sym_raw_inline] = STATE(137), - [sym_math] = STATE(137), - [sym_verbatim] = STATE(137), - [sym__todo_highlights] = STATE(137), - [sym_todo] = STATE(137), - [sym_note] = STATE(137), - [sym__symbol_fallback] = STATE(137), + [sym__inline] = STATE(898), + [sym__element] = STATE(64), + [sym_emphasis] = STATE(133), + [sym_emphasis_begin] = STATE(1124), + [sym_strong] = STATE(133), + [sym_strong_begin] = STATE(1125), + [sym_superscript] = STATE(133), + [sym_superscript_begin] = STATE(1126), + [sym_subscript] = STATE(133), + [sym_subscript_begin] = STATE(1127), + [sym_highlighted] = STATE(133), + [sym_highlighted_begin] = STATE(1128), + [sym_insert] = STATE(133), + [sym_insert_begin] = STATE(1129), + [sym_delete] = STATE(133), + [sym_delete_begin] = STATE(1130), + [sym_hard_line_break] = STATE(140), + [sym__smart_punctuation] = STATE(140), + [sym_autolink] = STATE(140), + [sym_footnote_reference] = STATE(133), + [sym_footnote_marker_begin] = STATE(1131), + [sym__image] = STATE(133), + [sym_full_reference_image] = STATE(133), + [sym_collapsed_reference_image] = STATE(133), + [sym_inline_image] = STATE(133), + [sym_image_description] = STATE(663), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(133), + [sym_full_reference_link] = STATE(133), + [sym_collapsed_reference_link] = STATE(133), + [sym_inline_link] = STATE(133), + [sym_link_text] = STATE(669), + [sym_span] = STATE(64), + [sym__bracketed_text_begin] = STATE(1206), + [sym__comment_with_spaces] = STATE(140), + [sym_raw_inline] = STATE(140), + [sym_math] = STATE(140), + [sym_verbatim] = STATE(140), + [sym__todo_highlights] = STATE(140), + [sym_todo] = STATE(140), + [sym_note] = STATE(140), + [sym__symbol_fallback] = STATE(140), [aux_sym__text] = STATE(122), - [aux_sym__inline_repeat1] = STATE(22), - [anon_sym_LBRACE_] = ACTIONS(197), - [anon_sym__] = ACTIONS(199), - [anon_sym_LBRACE_STAR] = ACTIONS(201), - [anon_sym_STAR] = ACTIONS(203), - [anon_sym_LBRACE_CARET] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(205), - [anon_sym_LBRACE_TILDE] = ACTIONS(207), - [anon_sym_TILDE] = ACTIONS(207), - [anon_sym_LBRACE_EQ] = ACTIONS(209), - [anon_sym_LBRACE_PLUS] = ACTIONS(211), - [anon_sym_LBRACE_DASH] = ACTIONS(213), - [anon_sym_BSLASH] = ACTIONS(215), - [sym_quotation_marks] = ACTIONS(217), - [sym_ellipsis] = ACTIONS(217), - [sym_em_dash] = ACTIONS(217), - [sym_en_dash] = ACTIONS(219), - [sym_backslash_escape] = ACTIONS(219), - [anon_sym_LT] = ACTIONS(221), - [sym_symbol] = ACTIONS(217), - [anon_sym_LBRACK_CARET] = ACTIONS(223), - [anon_sym_BANG_LBRACK] = ACTIONS(225), - [anon_sym_LBRACK] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_DOLLAR] = ACTIONS(231), - [anon_sym_TODO] = ACTIONS(233), - [anon_sym_WIP] = ACTIONS(233), - [anon_sym_NOTE] = ACTIONS(235), - [anon_sym_INFO] = ACTIONS(235), - [anon_sym_XXX] = ACTIONS(235), - [sym_fixme] = ACTIONS(217), - [sym__whitespace1] = ACTIONS(237), - [sym__newline] = ACTIONS(239), - [aux_sym__text_token1] = ACTIONS(241), - [sym__verbatim_begin] = ACTIONS(243), - }, - [36] = { - [sym__inline_without_trailing_space] = STATE(875), - [sym__element] = STATE(536), - [sym_emphasis] = STATE(138), - [sym_emphasis_begin] = STATE(1092), - [sym_strong] = STATE(138), - [sym_strong_begin] = STATE(1093), - [sym_superscript] = STATE(138), - [sym_superscript_begin] = STATE(1094), - [sym_subscript] = STATE(138), - [sym_subscript_begin] = STATE(1095), - [sym_highlighted] = STATE(138), - [sym_highlighted_begin] = STATE(1096), - [sym_insert] = STATE(138), - [sym_insert_begin] = STATE(1097), - [sym_delete] = STATE(138), - [sym_delete_begin] = STATE(1098), - [sym_hard_line_break] = STATE(138), - [sym__smart_punctuation] = STATE(138), - [sym_autolink] = STATE(138), - [sym_footnote_reference] = STATE(138), - [sym_footnote_marker_begin] = STATE(1099), - [sym__image] = STATE(138), - [sym_full_reference_image] = STATE(138), - [sym_collapsed_reference_image] = STATE(138), - [sym_inline_image] = STATE(138), - [sym_image_description] = STATE(626), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(138), - [sym_full_reference_link] = STATE(138), - [sym_collapsed_reference_link] = STATE(138), - [sym_inline_link] = STATE(138), - [sym_link_text] = STATE(627), - [sym_span] = STATE(536), - [sym__bracketed_text_begin] = STATE(1183), - [sym__comment_with_spaces] = STATE(138), - [sym_raw_inline] = STATE(138), - [sym_math] = STATE(138), - [sym_verbatim] = STATE(138), - [sym__todo_highlights] = STATE(138), - [sym_todo] = STATE(138), - [sym_note] = STATE(138), - [sym__symbol_fallback] = STATE(138), - [aux_sym__text] = STATE(127), - [aux_sym__inline_repeat1] = STATE(118), - [anon_sym_LBRACE_] = ACTIONS(149), - [anon_sym__] = ACTIONS(151), - [anon_sym_LBRACE_STAR] = ACTIONS(153), - [anon_sym_STAR] = ACTIONS(155), - [anon_sym_LBRACE_CARET] = ACTIONS(157), - [anon_sym_CARET] = ACTIONS(157), - [anon_sym_LBRACE_TILDE] = ACTIONS(159), - [anon_sym_TILDE] = ACTIONS(159), - [anon_sym_LBRACE_EQ] = ACTIONS(161), - [anon_sym_LBRACE_PLUS] = ACTIONS(163), - [anon_sym_LBRACE_DASH] = ACTIONS(165), - [anon_sym_BSLASH] = ACTIONS(167), - [sym_quotation_marks] = ACTIONS(169), - [sym_ellipsis] = ACTIONS(169), - [sym_em_dash] = ACTIONS(169), - [sym_en_dash] = ACTIONS(171), - [sym_backslash_escape] = ACTIONS(171), - [anon_sym_LT] = ACTIONS(173), - [sym_symbol] = ACTIONS(169), - [anon_sym_LBRACK_CARET] = ACTIONS(175), - [anon_sym_BANG_LBRACK] = ACTIONS(177), - [anon_sym_LBRACK] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(181), - [anon_sym_DOLLAR] = ACTIONS(183), - [anon_sym_TODO] = ACTIONS(185), - [anon_sym_WIP] = ACTIONS(185), - [anon_sym_NOTE] = ACTIONS(187), - [anon_sym_INFO] = ACTIONS(187), - [anon_sym_XXX] = ACTIONS(187), - [sym_fixme] = ACTIONS(169), - [sym__whitespace1] = ACTIONS(189), - [sym__newline] = ACTIONS(191), - [aux_sym__text_token1] = ACTIONS(193), - [sym__verbatim_begin] = ACTIONS(195), - }, - [37] = { - [sym__element] = STATE(69), - [sym_emphasis] = STATE(131), - [sym_emphasis_begin] = STATE(1132), - [sym_strong] = STATE(131), - [sym_strong_begin] = STATE(1133), - [sym_superscript] = STATE(131), - [sym_superscript_begin] = STATE(1134), - [sym_subscript] = STATE(131), - [sym_subscript_begin] = STATE(1135), - [sym_highlighted] = STATE(131), - [sym_highlighted_begin] = STATE(1136), - [sym_insert] = STATE(131), - [sym_insert_begin] = STATE(1137), - [sym_delete] = STATE(131), - [sym_delete_begin] = STATE(1138), - [sym_hard_line_break] = STATE(131), - [sym__smart_punctuation] = STATE(131), - [sym_autolink] = STATE(131), - [sym_footnote_reference] = STATE(131), - [sym_footnote_marker_begin] = STATE(1139), - [sym__image] = STATE(131), - [sym_full_reference_image] = STATE(131), - [sym_collapsed_reference_image] = STATE(131), - [sym_inline_image] = STATE(131), - [sym_image_description] = STATE(643), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(131), - [sym_full_reference_link] = STATE(131), - [sym_collapsed_reference_link] = STATE(131), - [sym_inline_link] = STATE(131), - [sym_link_text] = STATE(619), - [sym_span] = STATE(69), - [sym__bracketed_text_begin] = STATE(1187), - [sym__comment_with_spaces] = STATE(131), - [sym_raw_inline] = STATE(131), - [sym_math] = STATE(131), - [sym_verbatim] = STATE(131), - [sym__todo_highlights] = STATE(131), - [sym_todo] = STATE(131), - [sym_note] = STATE(131), - [sym__symbol_fallback] = STATE(131), - [aux_sym__text] = STATE(123), - [aux_sym__inline_repeat1] = STATE(69), + [aux_sym__inline_repeat1] = STATE(64), [anon_sym_LBRACE_] = ACTIONS(537), [anon_sym__] = ACTIONS(539), [anon_sym_LBRACE_STAR] = ACTIONS(541), @@ -8128,56 +8013,295 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_XXX] = ACTIONS(575), [sym_fixme] = ACTIONS(557), [sym__whitespace1] = ACTIONS(577), - [sym__newline] = ACTIONS(637), + [sym__newline] = ACTIONS(579), [aux_sym__text_token1] = ACTIONS(581), [sym__verbatim_begin] = ACTIONS(583), - [sym_insert_end] = ACTIONS(367), }, - [38] = { - [sym__element] = STATE(70), - [sym_emphasis] = STATE(135), - [sym_emphasis_begin] = STATE(1073), - [sym_strong] = STATE(135), - [sym_strong_begin] = STATE(1072), - [sym_superscript] = STATE(135), - [sym_superscript_begin] = STATE(1071), - [sym_subscript] = STATE(135), - [sym_subscript_begin] = STATE(1070), - [sym_highlighted] = STATE(135), - [sym_highlighted_begin] = STATE(1062), - [sym_insert] = STATE(135), - [sym_insert_begin] = STATE(1060), - [sym_delete] = STATE(135), - [sym_delete_begin] = STATE(1059), - [sym_hard_line_break] = STATE(135), - [sym__smart_punctuation] = STATE(135), - [sym_autolink] = STATE(135), - [sym_footnote_reference] = STATE(135), - [sym_footnote_marker_begin] = STATE(1058), - [sym__image] = STATE(135), - [sym_full_reference_image] = STATE(135), - [sym_collapsed_reference_image] = STATE(135), - [sym_inline_image] = STATE(135), - [sym_image_description] = STATE(620), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(135), - [sym_full_reference_link] = STATE(135), - [sym_collapsed_reference_link] = STATE(135), - [sym_inline_link] = STATE(135), - [sym_link_text] = STATE(644), - [sym_span] = STATE(70), - [sym__bracketed_text_begin] = STATE(1056), - [sym__comment_with_spaces] = STATE(135), - [sym_raw_inline] = STATE(135), - [sym_math] = STATE(135), - [sym_verbatim] = STATE(135), - [sym__todo_highlights] = STATE(135), - [sym_todo] = STATE(135), - [sym_note] = STATE(135), - [sym__symbol_fallback] = STATE(135), - [aux_sym__text] = STATE(121), - [aux_sym__inline_repeat1] = STATE(70), - [ts_builtin_sym_end] = ACTIONS(367), + [36] = { + [sym__inline] = STATE(965), + [sym__element] = STATE(110), + [sym_emphasis] = STATE(146), + [sym_emphasis_begin] = STATE(1144), + [sym_strong] = STATE(146), + [sym_strong_begin] = STATE(1145), + [sym_superscript] = STATE(146), + [sym_superscript_begin] = STATE(1146), + [sym_subscript] = STATE(146), + [sym_subscript_begin] = STATE(1147), + [sym_highlighted] = STATE(146), + [sym_highlighted_begin] = STATE(1148), + [sym_insert] = STATE(146), + [sym_insert_begin] = STATE(1149), + [sym_delete] = STATE(146), + [sym_delete_begin] = STATE(1150), + [sym_hard_line_break] = STATE(144), + [sym__smart_punctuation] = STATE(144), + [sym_autolink] = STATE(144), + [sym_footnote_reference] = STATE(146), + [sym_footnote_marker_begin] = STATE(1151), + [sym__image] = STATE(146), + [sym_full_reference_image] = STATE(146), + [sym_collapsed_reference_image] = STATE(146), + [sym_inline_image] = STATE(146), + [sym_image_description] = STATE(673), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(146), + [sym_full_reference_link] = STATE(146), + [sym_collapsed_reference_link] = STATE(146), + [sym_inline_link] = STATE(146), + [sym_link_text] = STATE(662), + [sym_span] = STATE(110), + [sym__bracketed_text_begin] = STATE(1208), + [sym__comment_with_spaces] = STATE(144), + [sym_raw_inline] = STATE(144), + [sym_math] = STATE(144), + [sym_verbatim] = STATE(144), + [sym__todo_highlights] = STATE(144), + [sym_todo] = STATE(144), + [sym_note] = STATE(144), + [sym__symbol_fallback] = STATE(144), + [aux_sym__text] = STATE(128), + [aux_sym__inline_repeat1] = STATE(110), + [anon_sym_LBRACE_] = ACTIONS(587), + [anon_sym__] = ACTIONS(589), + [anon_sym_LBRACE_STAR] = ACTIONS(591), + [anon_sym_STAR] = ACTIONS(593), + [anon_sym_LBRACE_CARET] = ACTIONS(595), + [anon_sym_CARET] = ACTIONS(595), + [anon_sym_LBRACE_TILDE] = ACTIONS(597), + [anon_sym_TILDE] = ACTIONS(597), + [anon_sym_LBRACE_EQ] = ACTIONS(599), + [anon_sym_LBRACE_PLUS] = ACTIONS(601), + [anon_sym_LBRACE_DASH] = ACTIONS(603), + [anon_sym_BSLASH] = ACTIONS(605), + [sym_quotation_marks] = ACTIONS(607), + [sym_ellipsis] = ACTIONS(607), + [sym_em_dash] = ACTIONS(607), + [sym_en_dash] = ACTIONS(609), + [sym_backslash_escape] = ACTIONS(609), + [anon_sym_LT] = ACTIONS(611), + [sym_symbol] = ACTIONS(607), + [anon_sym_LBRACK_CARET] = ACTIONS(613), + [anon_sym_BANG_LBRACK] = ACTIONS(615), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_LPAREN] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [anon_sym_TODO] = ACTIONS(623), + [anon_sym_WIP] = ACTIONS(623), + [anon_sym_NOTE] = ACTIONS(625), + [anon_sym_INFO] = ACTIONS(625), + [anon_sym_XXX] = ACTIONS(625), + [sym_fixme] = ACTIONS(607), + [sym__whitespace1] = ACTIONS(627), + [sym__newline] = ACTIONS(629), + [aux_sym__text_token1] = ACTIONS(631), + [sym__verbatim_begin] = ACTIONS(633), + }, + [37] = { + [sym__inline_without_trailing_space] = STATE(897), + [sym__element] = STATE(550), + [sym_emphasis] = STATE(137), + [sym_emphasis_begin] = STATE(1114), + [sym_strong] = STATE(137), + [sym_strong_begin] = STATE(1115), + [sym_superscript] = STATE(137), + [sym_superscript_begin] = STATE(1116), + [sym_subscript] = STATE(137), + [sym_subscript_begin] = STATE(1117), + [sym_highlighted] = STATE(137), + [sym_highlighted_begin] = STATE(1118), + [sym_insert] = STATE(137), + [sym_insert_begin] = STATE(1119), + [sym_delete] = STATE(137), + [sym_delete_begin] = STATE(1120), + [sym_hard_line_break] = STATE(131), + [sym__smart_punctuation] = STATE(131), + [sym_autolink] = STATE(131), + [sym_footnote_reference] = STATE(137), + [sym_footnote_marker_begin] = STATE(1121), + [sym__image] = STATE(137), + [sym_full_reference_image] = STATE(137), + [sym_collapsed_reference_image] = STATE(137), + [sym_inline_image] = STATE(137), + [sym_image_description] = STATE(649), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(137), + [sym_full_reference_link] = STATE(137), + [sym_collapsed_reference_link] = STATE(137), + [sym_inline_link] = STATE(137), + [sym_link_text] = STATE(650), + [sym_span] = STATE(550), + [sym__bracketed_text_begin] = STATE(1205), + [sym__comment_with_spaces] = STATE(131), + [sym_raw_inline] = STATE(131), + [sym_math] = STATE(131), + [sym_verbatim] = STATE(131), + [sym__todo_highlights] = STATE(131), + [sym_todo] = STATE(131), + [sym_note] = STATE(131), + [sym__symbol_fallback] = STATE(131), + [aux_sym__text] = STATE(130), + [aux_sym__inline_repeat1] = STATE(119), + [anon_sym_LBRACE_] = ACTIONS(489), + [anon_sym__] = ACTIONS(491), + [anon_sym_LBRACE_STAR] = ACTIONS(493), + [anon_sym_STAR] = ACTIONS(495), + [anon_sym_LBRACE_CARET] = ACTIONS(497), + [anon_sym_CARET] = ACTIONS(497), + [anon_sym_LBRACE_TILDE] = ACTIONS(499), + [anon_sym_TILDE] = ACTIONS(499), + [anon_sym_LBRACE_EQ] = ACTIONS(501), + [anon_sym_LBRACE_PLUS] = ACTIONS(503), + [anon_sym_LBRACE_DASH] = ACTIONS(505), + [anon_sym_BSLASH] = ACTIONS(507), + [sym_quotation_marks] = ACTIONS(509), + [sym_ellipsis] = ACTIONS(509), + [sym_em_dash] = ACTIONS(509), + [sym_en_dash] = ACTIONS(511), + [sym_backslash_escape] = ACTIONS(511), + [anon_sym_LT] = ACTIONS(513), + [sym_symbol] = ACTIONS(509), + [anon_sym_LBRACK_CARET] = ACTIONS(515), + [anon_sym_BANG_LBRACK] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(519), + [anon_sym_LPAREN] = ACTIONS(521), + [anon_sym_DOLLAR] = ACTIONS(523), + [anon_sym_TODO] = ACTIONS(525), + [anon_sym_WIP] = ACTIONS(525), + [anon_sym_NOTE] = ACTIONS(527), + [anon_sym_INFO] = ACTIONS(527), + [anon_sym_XXX] = ACTIONS(527), + [sym_fixme] = ACTIONS(509), + [sym__whitespace1] = ACTIONS(529), + [sym__newline] = ACTIONS(531), + [aux_sym__text_token1] = ACTIONS(533), + [sym__verbatim_begin] = ACTIONS(535), + }, + [38] = { + [sym__element] = STATE(38), + [sym_emphasis] = STATE(147), + [sym_emphasis_begin] = STATE(1154), + [sym_strong] = STATE(147), + [sym_strong_begin] = STATE(1155), + [sym_superscript] = STATE(147), + [sym_superscript_begin] = STATE(1156), + [sym_subscript] = STATE(147), + [sym_subscript_begin] = STATE(1157), + [sym_highlighted] = STATE(147), + [sym_highlighted_begin] = STATE(1158), + [sym_insert] = STATE(147), + [sym_insert_begin] = STATE(1159), + [sym_delete] = STATE(147), + [sym_delete_begin] = STATE(1160), + [sym_hard_line_break] = STATE(145), + [sym__smart_punctuation] = STATE(145), + [sym_autolink] = STATE(145), + [sym_footnote_reference] = STATE(147), + [sym_footnote_marker_begin] = STATE(1161), + [sym__image] = STATE(147), + [sym_full_reference_image] = STATE(147), + [sym_collapsed_reference_image] = STATE(147), + [sym_inline_image] = STATE(147), + [sym_image_description] = STATE(665), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(147), + [sym_full_reference_link] = STATE(147), + [sym_collapsed_reference_link] = STATE(147), + [sym_inline_link] = STATE(147), + [sym_link_text] = STATE(664), + [sym_span] = STATE(38), + [sym__bracketed_text_begin] = STATE(1209), + [sym__comment_with_spaces] = STATE(145), + [sym_raw_inline] = STATE(145), + [sym_math] = STATE(145), + [sym_verbatim] = STATE(145), + [sym__todo_highlights] = STATE(145), + [sym_todo] = STATE(145), + [sym_note] = STATE(145), + [sym__symbol_fallback] = STATE(145), + [aux_sym__text] = STATE(124), + [aux_sym__inline_repeat1] = STATE(38), + [anon_sym_LBRACE_] = ACTIONS(711), + [anon_sym__] = ACTIONS(714), + [anon_sym_LBRACE_STAR] = ACTIONS(717), + [anon_sym_STAR] = ACTIONS(720), + [anon_sym_LBRACE_CARET] = ACTIONS(723), + [anon_sym_CARET] = ACTIONS(723), + [anon_sym_LBRACE_TILDE] = ACTIONS(726), + [anon_sym_TILDE] = ACTIONS(726), + [anon_sym_LBRACE_EQ] = ACTIONS(729), + [anon_sym_LBRACE_PLUS] = ACTIONS(732), + [anon_sym_LBRACE_DASH] = ACTIONS(735), + [anon_sym_BSLASH] = ACTIONS(738), + [sym_quotation_marks] = ACTIONS(741), + [sym_ellipsis] = ACTIONS(741), + [sym_em_dash] = ACTIONS(741), + [sym_en_dash] = ACTIONS(744), + [sym_backslash_escape] = ACTIONS(744), + [anon_sym_LT] = ACTIONS(747), + [sym_symbol] = ACTIONS(741), + [anon_sym_LBRACK_CARET] = ACTIONS(750), + [anon_sym_BANG_LBRACK] = ACTIONS(753), + [anon_sym_LBRACK] = ACTIONS(756), + [anon_sym_LPAREN] = ACTIONS(759), + [anon_sym_DOLLAR] = ACTIONS(762), + [anon_sym_TODO] = ACTIONS(765), + [anon_sym_WIP] = ACTIONS(765), + [anon_sym_NOTE] = ACTIONS(768), + [anon_sym_INFO] = ACTIONS(768), + [anon_sym_XXX] = ACTIONS(768), + [sym_fixme] = ACTIONS(741), + [sym__whitespace1] = ACTIONS(771), + [sym__newline] = ACTIONS(774), + [aux_sym__text_token1] = ACTIONS(777), + [sym__verbatim_begin] = ACTIONS(780), + [sym_insert_end] = ACTIONS(221), + }, + [39] = { + [sym__element] = STATE(72), + [sym_emphasis] = STATE(141), + [sym_emphasis_begin] = STATE(1095), + [sym_strong] = STATE(141), + [sym_strong_begin] = STATE(1094), + [sym_superscript] = STATE(141), + [sym_superscript_begin] = STATE(1093), + [sym_subscript] = STATE(141), + [sym_subscript_begin] = STATE(1092), + [sym_highlighted] = STATE(141), + [sym_highlighted_begin] = STATE(1084), + [sym_insert] = STATE(141), + [sym_insert_begin] = STATE(1082), + [sym_delete] = STATE(141), + [sym_delete_begin] = STATE(1081), + [sym_hard_line_break] = STATE(151), + [sym__smart_punctuation] = STATE(151), + [sym_autolink] = STATE(151), + [sym_footnote_reference] = STATE(141), + [sym_footnote_marker_begin] = STATE(1080), + [sym__image] = STATE(141), + [sym_full_reference_image] = STATE(141), + [sym_collapsed_reference_image] = STATE(141), + [sym_inline_image] = STATE(141), + [sym_image_description] = STATE(666), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(141), + [sym_full_reference_link] = STATE(141), + [sym_collapsed_reference_link] = STATE(141), + [sym_inline_link] = STATE(141), + [sym_link_text] = STATE(652), + [sym_span] = STATE(72), + [sym__bracketed_text_begin] = STATE(1078), + [sym__comment_with_spaces] = STATE(151), + [sym_raw_inline] = STATE(151), + [sym_math] = STATE(151), + [sym_verbatim] = STATE(151), + [sym__todo_highlights] = STATE(151), + [sym_todo] = STATE(151), + [sym_note] = STATE(151), + [sym__symbol_fallback] = STATE(151), + [aux_sym__text] = STATE(125), + [aux_sym__inline_repeat1] = STATE(72), + [ts_builtin_sym_end] = ACTIONS(343), [anon_sym_LBRACE_] = ACTIONS(3), [anon_sym__] = ACTIONS(5), [anon_sym_LBRACE_STAR] = ACTIONS(7), @@ -8209,215 +8333,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_XXX] = ACTIONS(41), [sym_fixme] = ACTIONS(23), [sym__whitespace1] = ACTIONS(43), - [sym__newline] = ACTIONS(639), + [sym__newline] = ACTIONS(783), [aux_sym__text_token1] = ACTIONS(47), [sym__verbatim_begin] = ACTIONS(49), }, - [39] = { - [sym__inline_without_trailing_space] = STATE(874), - [sym__element] = STATE(581), - [sym_emphasis] = STATE(141), - [sym_emphasis_begin] = STATE(1082), - [sym_strong] = STATE(141), - [sym_strong_begin] = STATE(1083), - [sym_superscript] = STATE(141), - [sym_superscript_begin] = STATE(1084), - [sym_subscript] = STATE(141), - [sym_subscript_begin] = STATE(1085), - [sym_highlighted] = STATE(141), - [sym_highlighted_begin] = STATE(1086), - [sym_insert] = STATE(141), - [sym_insert_begin] = STATE(1087), - [sym_delete] = STATE(141), - [sym_delete_begin] = STATE(1088), - [sym_hard_line_break] = STATE(141), - [sym__smart_punctuation] = STATE(141), - [sym_autolink] = STATE(141), - [sym_footnote_reference] = STATE(141), - [sym_footnote_marker_begin] = STATE(1089), - [sym__image] = STATE(141), - [sym_full_reference_image] = STATE(141), - [sym_collapsed_reference_image] = STATE(141), - [sym_inline_image] = STATE(141), - [sym_image_description] = STATE(642), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(141), - [sym_full_reference_link] = STATE(141), - [sym_collapsed_reference_link] = STATE(141), - [sym_inline_link] = STATE(141), - [sym_link_text] = STATE(629), - [sym_span] = STATE(581), - [sym__bracketed_text_begin] = STATE(1182), - [sym__comment_with_spaces] = STATE(141), - [sym_raw_inline] = STATE(141), - [sym_math] = STATE(141), - [sym_verbatim] = STATE(141), - [sym__todo_highlights] = STATE(141), - [sym_todo] = STATE(141), - [sym_note] = STATE(141), - [sym__symbol_fallback] = STATE(141), - [aux_sym__text] = STATE(125), - [aux_sym__inline_repeat1] = STATE(119), - [anon_sym_LBRACE_] = ACTIONS(585), - [anon_sym__] = ACTIONS(587), - [anon_sym_LBRACE_STAR] = ACTIONS(589), - [anon_sym_STAR] = ACTIONS(591), - [anon_sym_LBRACE_CARET] = ACTIONS(593), - [anon_sym_CARET] = ACTIONS(593), - [anon_sym_LBRACE_TILDE] = ACTIONS(595), - [anon_sym_TILDE] = ACTIONS(595), - [anon_sym_LBRACE_EQ] = ACTIONS(597), - [anon_sym_LBRACE_PLUS] = ACTIONS(599), - [anon_sym_LBRACE_DASH] = ACTIONS(601), - [anon_sym_BSLASH] = ACTIONS(603), - [sym_quotation_marks] = ACTIONS(605), - [sym_ellipsis] = ACTIONS(605), - [sym_em_dash] = ACTIONS(605), - [sym_en_dash] = ACTIONS(607), - [sym_backslash_escape] = ACTIONS(607), - [anon_sym_LT] = ACTIONS(609), - [sym_symbol] = ACTIONS(605), - [anon_sym_LBRACK_CARET] = ACTIONS(611), - [anon_sym_BANG_LBRACK] = ACTIONS(613), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_DOLLAR] = ACTIONS(619), - [anon_sym_TODO] = ACTIONS(621), - [anon_sym_WIP] = ACTIONS(621), - [anon_sym_NOTE] = ACTIONS(623), - [anon_sym_INFO] = ACTIONS(623), - [anon_sym_XXX] = ACTIONS(623), - [sym_fixme] = ACTIONS(605), - [sym__whitespace1] = ACTIONS(625), - [sym__newline] = ACTIONS(627), - [aux_sym__text_token1] = ACTIONS(629), - [sym__verbatim_begin] = ACTIONS(631), - }, [40] = { - [sym__inline] = STATE(942), - [sym__element] = STATE(14), - [sym_emphasis] = STATE(136), - [sym_emphasis_begin] = STATE(1122), - [sym_strong] = STATE(136), - [sym_strong_begin] = STATE(1123), - [sym_superscript] = STATE(136), - [sym_superscript_begin] = STATE(1124), - [sym_subscript] = STATE(136), - [sym_subscript_begin] = STATE(1125), - [sym_highlighted] = STATE(136), - [sym_highlighted_begin] = STATE(1126), - [sym_insert] = STATE(136), - [sym_insert_begin] = STATE(1127), - [sym_delete] = STATE(136), - [sym_delete_begin] = STATE(1128), - [sym_hard_line_break] = STATE(136), - [sym__smart_punctuation] = STATE(136), - [sym_autolink] = STATE(136), - [sym_footnote_reference] = STATE(136), - [sym_footnote_marker_begin] = STATE(1129), - [sym__image] = STATE(136), - [sym_full_reference_image] = STATE(136), - [sym_collapsed_reference_image] = STATE(136), - [sym_inline_image] = STATE(136), - [sym_image_description] = STATE(651), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(136), - [sym_full_reference_link] = STATE(136), - [sym_collapsed_reference_link] = STATE(136), - [sym_inline_link] = STATE(136), - [sym_link_text] = STATE(650), - [sym_span] = STATE(14), - [sym__bracketed_text_begin] = STATE(1186), - [sym__comment_with_spaces] = STATE(136), - [sym_raw_inline] = STATE(136), - [sym_math] = STATE(136), - [sym_verbatim] = STATE(136), - [sym__todo_highlights] = STATE(136), - [sym_todo] = STATE(136), - [sym_note] = STATE(136), - [sym__symbol_fallback] = STATE(136), - [aux_sym__text] = STATE(130), - [aux_sym__inline_repeat1] = STATE(14), - [anon_sym_LBRACE_] = ACTIONS(319), - [anon_sym__] = ACTIONS(321), - [anon_sym_LBRACE_STAR] = ACTIONS(323), - [anon_sym_STAR] = ACTIONS(325), - [anon_sym_LBRACE_CARET] = ACTIONS(327), - [anon_sym_CARET] = ACTIONS(327), - [anon_sym_LBRACE_TILDE] = ACTIONS(329), - [anon_sym_TILDE] = ACTIONS(329), - [anon_sym_LBRACE_EQ] = ACTIONS(331), - [anon_sym_LBRACE_PLUS] = ACTIONS(333), - [anon_sym_LBRACE_DASH] = ACTIONS(335), - [anon_sym_BSLASH] = ACTIONS(337), - [sym_quotation_marks] = ACTIONS(339), - [sym_ellipsis] = ACTIONS(339), - [sym_em_dash] = ACTIONS(339), - [sym_en_dash] = ACTIONS(341), - [sym_backslash_escape] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(343), - [sym_symbol] = ACTIONS(339), - [anon_sym_LBRACK_CARET] = ACTIONS(345), - [anon_sym_BANG_LBRACK] = ACTIONS(347), - [anon_sym_LBRACK] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(351), - [anon_sym_DOLLAR] = ACTIONS(353), - [anon_sym_TODO] = ACTIONS(355), - [anon_sym_WIP] = ACTIONS(355), - [anon_sym_NOTE] = ACTIONS(357), - [anon_sym_INFO] = ACTIONS(357), - [anon_sym_XXX] = ACTIONS(357), - [sym_fixme] = ACTIONS(339), - [sym__whitespace1] = ACTIONS(359), - [sym__newline] = ACTIONS(635), - [aux_sym__text_token1] = ACTIONS(363), - [sym__verbatim_begin] = ACTIONS(365), - }, - [41] = { - [sym__inline] = STATE(848), - [sym__element] = STATE(71), - [sym_emphasis] = STATE(132), - [sym_emphasis_begin] = STATE(1152), - [sym_strong] = STATE(132), - [sym_strong_begin] = STATE(1153), - [sym_superscript] = STATE(132), - [sym_superscript_begin] = STATE(1154), - [sym_subscript] = STATE(132), - [sym_subscript_begin] = STATE(1155), - [sym_highlighted] = STATE(132), - [sym_highlighted_begin] = STATE(1156), - [sym_insert] = STATE(132), - [sym_insert_begin] = STATE(1157), - [sym_delete] = STATE(132), - [sym_delete_begin] = STATE(1158), - [sym_hard_line_break] = STATE(132), - [sym__smart_punctuation] = STATE(132), - [sym_autolink] = STATE(132), - [sym_footnote_reference] = STATE(132), - [sym_footnote_marker_begin] = STATE(1159), - [sym__image] = STATE(132), - [sym_full_reference_image] = STATE(132), - [sym_collapsed_reference_image] = STATE(132), - [sym_inline_image] = STATE(132), - [sym_image_description] = STATE(633), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(132), - [sym_full_reference_link] = STATE(132), - [sym_collapsed_reference_link] = STATE(132), - [sym_inline_link] = STATE(132), - [sym_link_text] = STATE(631), - [sym_span] = STATE(71), - [sym__bracketed_text_begin] = STATE(1189), - [sym__comment_with_spaces] = STATE(132), - [sym_raw_inline] = STATE(132), - [sym_math] = STATE(132), - [sym_verbatim] = STATE(132), - [sym__todo_highlights] = STATE(132), - [sym_todo] = STATE(132), - [sym_note] = STATE(132), - [sym__symbol_fallback] = STATE(132), - [aux_sym__text] = STATE(128), - [aux_sym__inline_repeat1] = STATE(71), + [sym__inline_without_trailing_space] = STATE(896), + [sym__element] = STATE(594), + [sym_emphasis] = STATE(149), + [sym_emphasis_begin] = STATE(1104), + [sym_strong] = STATE(149), + [sym_strong_begin] = STATE(1105), + [sym_superscript] = STATE(149), + [sym_superscript_begin] = STATE(1106), + [sym_subscript] = STATE(149), + [sym_subscript_begin] = STATE(1107), + [sym_highlighted] = STATE(149), + [sym_highlighted_begin] = STATE(1108), + [sym_insert] = STATE(149), + [sym_insert_begin] = STATE(1109), + [sym_delete] = STATE(149), + [sym_delete_begin] = STATE(1110), + [sym_hard_line_break] = STATE(143), + [sym__smart_punctuation] = STATE(143), + [sym_autolink] = STATE(143), + [sym_footnote_reference] = STATE(149), + [sym_footnote_marker_begin] = STATE(1111), + [sym__image] = STATE(149), + [sym_full_reference_image] = STATE(149), + [sym_collapsed_reference_image] = STATE(149), + [sym_inline_image] = STATE(149), + [sym_image_description] = STATE(658), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(149), + [sym_full_reference_link] = STATE(149), + [sym_collapsed_reference_link] = STATE(149), + [sym_inline_link] = STATE(149), + [sym_link_text] = STATE(672), + [sym_span] = STATE(594), + [sym__bracketed_text_begin] = STATE(1204), + [sym__comment_with_spaces] = STATE(143), + [sym_raw_inline] = STATE(143), + [sym_math] = STATE(143), + [sym_verbatim] = STATE(143), + [sym__todo_highlights] = STATE(143), + [sym_todo] = STATE(143), + [sym_note] = STATE(143), + [sym__symbol_fallback] = STATE(143), + [aux_sym__text] = STATE(127), + [aux_sym__inline_repeat1] = STATE(120), [anon_sym_LBRACE_] = ACTIONS(441), [anon_sym__] = ACTIONS(443), [anon_sym_LBRACE_STAR] = ACTIONS(445), @@ -8453,691 +8417,611 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token1] = ACTIONS(485), [sym__verbatim_begin] = ACTIONS(487), }, + [41] = { + [sym__inline] = STATE(964), + [sym__element] = STATE(22), + [sym_emphasis] = STATE(147), + [sym_emphasis_begin] = STATE(1154), + [sym_strong] = STATE(147), + [sym_strong_begin] = STATE(1155), + [sym_superscript] = STATE(147), + [sym_superscript_begin] = STATE(1156), + [sym_subscript] = STATE(147), + [sym_subscript_begin] = STATE(1157), + [sym_highlighted] = STATE(147), + [sym_highlighted_begin] = STATE(1158), + [sym_insert] = STATE(147), + [sym_insert_begin] = STATE(1159), + [sym_delete] = STATE(147), + [sym_delete_begin] = STATE(1160), + [sym_hard_line_break] = STATE(145), + [sym__smart_punctuation] = STATE(145), + [sym_autolink] = STATE(145), + [sym_footnote_reference] = STATE(147), + [sym_footnote_marker_begin] = STATE(1161), + [sym__image] = STATE(147), + [sym_full_reference_image] = STATE(147), + [sym_collapsed_reference_image] = STATE(147), + [sym_inline_image] = STATE(147), + [sym_image_description] = STATE(665), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(147), + [sym_full_reference_link] = STATE(147), + [sym_collapsed_reference_link] = STATE(147), + [sym_inline_link] = STATE(147), + [sym_link_text] = STATE(664), + [sym_span] = STATE(22), + [sym__bracketed_text_begin] = STATE(1209), + [sym__comment_with_spaces] = STATE(145), + [sym_raw_inline] = STATE(145), + [sym_math] = STATE(145), + [sym_verbatim] = STATE(145), + [sym__todo_highlights] = STATE(145), + [sym_todo] = STATE(145), + [sym_note] = STATE(145), + [sym__symbol_fallback] = STATE(145), + [aux_sym__text] = STATE(124), + [aux_sym__inline_repeat1] = STATE(22), + [anon_sym_LBRACE_] = ACTIONS(101), + [anon_sym__] = ACTIONS(103), + [anon_sym_LBRACE_STAR] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(107), + [anon_sym_LBRACE_CARET] = ACTIONS(109), + [anon_sym_CARET] = ACTIONS(109), + [anon_sym_LBRACE_TILDE] = ACTIONS(111), + [anon_sym_TILDE] = ACTIONS(111), + [anon_sym_LBRACE_EQ] = ACTIONS(113), + [anon_sym_LBRACE_PLUS] = ACTIONS(115), + [anon_sym_LBRACE_DASH] = ACTIONS(117), + [anon_sym_BSLASH] = ACTIONS(119), + [sym_quotation_marks] = ACTIONS(121), + [sym_ellipsis] = ACTIONS(121), + [sym_em_dash] = ACTIONS(121), + [sym_en_dash] = ACTIONS(123), + [sym_backslash_escape] = ACTIONS(123), + [anon_sym_LT] = ACTIONS(125), + [sym_symbol] = ACTIONS(121), + [anon_sym_LBRACK_CARET] = ACTIONS(127), + [anon_sym_BANG_LBRACK] = ACTIONS(129), + [anon_sym_LBRACK] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_DOLLAR] = ACTIONS(135), + [anon_sym_TODO] = ACTIONS(137), + [anon_sym_WIP] = ACTIONS(137), + [anon_sym_NOTE] = ACTIONS(139), + [anon_sym_INFO] = ACTIONS(139), + [anon_sym_XXX] = ACTIONS(139), + [sym_fixme] = ACTIONS(121), + [sym__whitespace1] = ACTIONS(141), + [sym__newline] = ACTIONS(143), + [aux_sym__text_token1] = ACTIONS(145), + [sym__verbatim_begin] = ACTIONS(147), + }, [42] = { - [sym__inline] = STATE(846), - [sym__element] = STATE(65), - [sym_emphasis] = STATE(133), - [sym_emphasis_begin] = STATE(1142), - [sym_strong] = STATE(133), - [sym_strong_begin] = STATE(1143), - [sym_superscript] = STATE(133), - [sym_superscript_begin] = STATE(1144), - [sym_subscript] = STATE(133), - [sym_subscript_begin] = STATE(1145), - [sym_highlighted] = STATE(133), - [sym_highlighted_begin] = STATE(1146), - [sym_insert] = STATE(133), - [sym_insert_begin] = STATE(1147), - [sym_delete] = STATE(133), - [sym_delete_begin] = STATE(1148), - [sym_hard_line_break] = STATE(133), - [sym__smart_punctuation] = STATE(133), - [sym_autolink] = STATE(133), - [sym_footnote_reference] = STATE(133), - [sym_footnote_marker_begin] = STATE(1149), - [sym__image] = STATE(133), - [sym_full_reference_image] = STATE(133), - [sym_collapsed_reference_image] = STATE(133), - [sym_inline_image] = STATE(133), - [sym_image_description] = STATE(638), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(133), - [sym_full_reference_link] = STATE(133), - [sym_collapsed_reference_link] = STATE(133), - [sym_inline_link] = STATE(133), - [sym_link_text] = STATE(637), - [sym_span] = STATE(65), - [sym__bracketed_text_begin] = STATE(1188), - [sym__comment_with_spaces] = STATE(133), - [sym_raw_inline] = STATE(133), - [sym_math] = STATE(133), - [sym_verbatim] = STATE(133), - [sym__todo_highlights] = STATE(133), - [sym_todo] = STATE(133), - [sym_note] = STATE(133), - [sym__symbol_fallback] = STATE(133), - [aux_sym__text] = STATE(129), - [aux_sym__inline_repeat1] = STATE(65), - [anon_sym_LBRACE_] = ACTIONS(489), - [anon_sym__] = ACTIONS(491), - [anon_sym_LBRACE_STAR] = ACTIONS(493), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_LBRACE_CARET] = ACTIONS(497), - [anon_sym_CARET] = ACTIONS(497), - [anon_sym_LBRACE_TILDE] = ACTIONS(499), - [anon_sym_TILDE] = ACTIONS(499), - [anon_sym_LBRACE_EQ] = ACTIONS(501), - [anon_sym_LBRACE_PLUS] = ACTIONS(503), - [anon_sym_LBRACE_DASH] = ACTIONS(505), - [anon_sym_BSLASH] = ACTIONS(507), - [sym_quotation_marks] = ACTIONS(509), - [sym_ellipsis] = ACTIONS(509), - [sym_em_dash] = ACTIONS(509), - [sym_en_dash] = ACTIONS(511), - [sym_backslash_escape] = ACTIONS(511), - [anon_sym_LT] = ACTIONS(513), - [sym_symbol] = ACTIONS(509), - [anon_sym_LBRACK_CARET] = ACTIONS(515), - [anon_sym_BANG_LBRACK] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(519), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_DOLLAR] = ACTIONS(523), - [anon_sym_TODO] = ACTIONS(525), - [anon_sym_WIP] = ACTIONS(525), - [anon_sym_NOTE] = ACTIONS(527), - [anon_sym_INFO] = ACTIONS(527), - [anon_sym_XXX] = ACTIONS(527), - [sym_fixme] = ACTIONS(509), - [sym__whitespace1] = ACTIONS(529), - [sym__newline] = ACTIONS(531), - [aux_sym__text_token1] = ACTIONS(533), - [sym__verbatim_begin] = ACTIONS(535), + [sym__inline] = STATE(870), + [sym__element] = STATE(46), + [sym_emphasis] = STATE(135), + [sym_emphasis_begin] = STATE(1174), + [sym_strong] = STATE(135), + [sym_strong_begin] = STATE(1175), + [sym_superscript] = STATE(135), + [sym_superscript_begin] = STATE(1176), + [sym_subscript] = STATE(135), + [sym_subscript_begin] = STATE(1177), + [sym_highlighted] = STATE(135), + [sym_highlighted_begin] = STATE(1178), + [sym_insert] = STATE(135), + [sym_insert_begin] = STATE(1179), + [sym_delete] = STATE(135), + [sym_delete_begin] = STATE(1180), + [sym_hard_line_break] = STATE(138), + [sym__smart_punctuation] = STATE(138), + [sym_autolink] = STATE(138), + [sym_footnote_reference] = STATE(135), + [sym_footnote_marker_begin] = STATE(1181), + [sym__image] = STATE(135), + [sym_full_reference_image] = STATE(135), + [sym_collapsed_reference_image] = STATE(135), + [sym_inline_image] = STATE(135), + [sym_image_description] = STATE(656), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(135), + [sym_full_reference_link] = STATE(135), + [sym_collapsed_reference_link] = STATE(135), + [sym_inline_link] = STATE(135), + [sym_link_text] = STATE(654), + [sym_span] = STATE(46), + [sym__bracketed_text_begin] = STATE(1211), + [sym__comment_with_spaces] = STATE(138), + [sym_raw_inline] = STATE(138), + [sym_math] = STATE(138), + [sym_verbatim] = STATE(138), + [sym__todo_highlights] = STATE(138), + [sym_todo] = STATE(138), + [sym_note] = STATE(138), + [sym__symbol_fallback] = STATE(138), + [aux_sym__text] = STATE(121), + [aux_sym__inline_repeat1] = STATE(46), + [anon_sym_LBRACE_] = ACTIONS(345), + [anon_sym__] = ACTIONS(347), + [anon_sym_LBRACE_STAR] = ACTIONS(349), + [anon_sym_STAR] = ACTIONS(351), + [anon_sym_LBRACE_CARET] = ACTIONS(353), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_LBRACE_TILDE] = ACTIONS(355), + [anon_sym_TILDE] = ACTIONS(355), + [anon_sym_LBRACE_EQ] = ACTIONS(357), + [anon_sym_LBRACE_PLUS] = ACTIONS(359), + [anon_sym_LBRACE_DASH] = ACTIONS(361), + [anon_sym_BSLASH] = ACTIONS(363), + [sym_quotation_marks] = ACTIONS(365), + [sym_ellipsis] = ACTIONS(365), + [sym_em_dash] = ACTIONS(365), + [sym_en_dash] = ACTIONS(367), + [sym_backslash_escape] = ACTIONS(367), + [anon_sym_LT] = ACTIONS(369), + [sym_symbol] = ACTIONS(365), + [anon_sym_LBRACK_CARET] = ACTIONS(371), + [anon_sym_BANG_LBRACK] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(375), + [anon_sym_LPAREN] = ACTIONS(377), + [anon_sym_DOLLAR] = ACTIONS(379), + [anon_sym_TODO] = ACTIONS(381), + [anon_sym_WIP] = ACTIONS(381), + [anon_sym_NOTE] = ACTIONS(383), + [anon_sym_INFO] = ACTIONS(383), + [anon_sym_XXX] = ACTIONS(383), + [sym_fixme] = ACTIONS(365), + [sym__whitespace1] = ACTIONS(385), + [sym__newline] = ACTIONS(387), + [aux_sym__text_token1] = ACTIONS(389), + [sym__verbatim_begin] = ACTIONS(391), }, [43] = { - [sym__inline] = STATE(933), - [sym__element] = STATE(37), - [sym_emphasis] = STATE(131), - [sym_emphasis_begin] = STATE(1132), - [sym_strong] = STATE(131), - [sym_strong_begin] = STATE(1133), - [sym_superscript] = STATE(131), - [sym_superscript_begin] = STATE(1134), - [sym_subscript] = STATE(131), - [sym_subscript_begin] = STATE(1135), - [sym_highlighted] = STATE(131), - [sym_highlighted_begin] = STATE(1136), - [sym_insert] = STATE(131), - [sym_insert_begin] = STATE(1137), - [sym_delete] = STATE(131), - [sym_delete_begin] = STATE(1138), - [sym_hard_line_break] = STATE(131), - [sym__smart_punctuation] = STATE(131), - [sym_autolink] = STATE(131), - [sym_footnote_reference] = STATE(131), - [sym_footnote_marker_begin] = STATE(1139), - [sym__image] = STATE(131), - [sym_full_reference_image] = STATE(131), - [sym_collapsed_reference_image] = STATE(131), - [sym_inline_image] = STATE(131), - [sym_image_description] = STATE(643), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(131), - [sym_full_reference_link] = STATE(131), - [sym_collapsed_reference_link] = STATE(131), - [sym_inline_link] = STATE(131), - [sym_link_text] = STATE(619), - [sym_span] = STATE(37), - [sym__bracketed_text_begin] = STATE(1187), - [sym__comment_with_spaces] = STATE(131), - [sym_raw_inline] = STATE(131), - [sym_math] = STATE(131), - [sym_verbatim] = STATE(131), - [sym__todo_highlights] = STATE(131), - [sym_todo] = STATE(131), - [sym_note] = STATE(131), - [sym__symbol_fallback] = STATE(131), - [aux_sym__text] = STATE(123), - [aux_sym__inline_repeat1] = STATE(37), - [anon_sym_LBRACE_] = ACTIONS(537), - [anon_sym__] = ACTIONS(539), - [anon_sym_LBRACE_STAR] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(543), - [anon_sym_LBRACE_CARET] = ACTIONS(545), - [anon_sym_CARET] = ACTIONS(545), - [anon_sym_LBRACE_TILDE] = ACTIONS(547), - [anon_sym_TILDE] = ACTIONS(547), - [anon_sym_LBRACE_EQ] = ACTIONS(549), - [anon_sym_LBRACE_PLUS] = ACTIONS(551), - [anon_sym_LBRACE_DASH] = ACTIONS(553), - [anon_sym_BSLASH] = ACTIONS(555), - [sym_quotation_marks] = ACTIONS(557), - [sym_ellipsis] = ACTIONS(557), - [sym_em_dash] = ACTIONS(557), - [sym_en_dash] = ACTIONS(559), - [sym_backslash_escape] = ACTIONS(559), - [anon_sym_LT] = ACTIONS(561), - [sym_symbol] = ACTIONS(557), - [anon_sym_LBRACK_CARET] = ACTIONS(563), - [anon_sym_BANG_LBRACK] = ACTIONS(565), - [anon_sym_LBRACK] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_DOLLAR] = ACTIONS(571), - [anon_sym_TODO] = ACTIONS(573), - [anon_sym_WIP] = ACTIONS(573), - [anon_sym_NOTE] = ACTIONS(575), - [anon_sym_INFO] = ACTIONS(575), - [anon_sym_XXX] = ACTIONS(575), - [sym_fixme] = ACTIONS(557), - [sym__whitespace1] = ACTIONS(577), - [sym__newline] = ACTIONS(579), - [aux_sym__text_token1] = ACTIONS(581), - [sym__verbatim_begin] = ACTIONS(583), + [sym__inline] = STATE(868), + [sym__element] = STATE(30), + [sym_emphasis] = STATE(132), + [sym_emphasis_begin] = STATE(1164), + [sym_strong] = STATE(132), + [sym_strong_begin] = STATE(1165), + [sym_superscript] = STATE(132), + [sym_superscript_begin] = STATE(1166), + [sym_subscript] = STATE(132), + [sym_subscript_begin] = STATE(1167), + [sym_highlighted] = STATE(132), + [sym_highlighted_begin] = STATE(1168), + [sym_insert] = STATE(132), + [sym_insert_begin] = STATE(1169), + [sym_delete] = STATE(132), + [sym_delete_begin] = STATE(1170), + [sym_hard_line_break] = STATE(142), + [sym__smart_punctuation] = STATE(142), + [sym_autolink] = STATE(142), + [sym_footnote_reference] = STATE(132), + [sym_footnote_marker_begin] = STATE(1171), + [sym__image] = STATE(132), + [sym_full_reference_image] = STATE(132), + [sym_collapsed_reference_image] = STATE(132), + [sym_inline_image] = STATE(132), + [sym_image_description] = STATE(660), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(132), + [sym_full_reference_link] = STATE(132), + [sym_collapsed_reference_link] = STATE(132), + [sym_inline_link] = STATE(132), + [sym_link_text] = STATE(659), + [sym_span] = STATE(30), + [sym__bracketed_text_begin] = STATE(1210), + [sym__comment_with_spaces] = STATE(142), + [sym_raw_inline] = STATE(142), + [sym_math] = STATE(142), + [sym_verbatim] = STATE(142), + [sym__todo_highlights] = STATE(142), + [sym_todo] = STATE(142), + [sym_note] = STATE(142), + [sym__symbol_fallback] = STATE(142), + [aux_sym__text] = STATE(126), + [aux_sym__inline_repeat1] = STATE(30), + [anon_sym_LBRACE_] = ACTIONS(393), + [anon_sym__] = ACTIONS(395), + [anon_sym_LBRACE_STAR] = ACTIONS(397), + [anon_sym_STAR] = ACTIONS(399), + [anon_sym_LBRACE_CARET] = ACTIONS(401), + [anon_sym_CARET] = ACTIONS(401), + [anon_sym_LBRACE_TILDE] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_LBRACE_EQ] = ACTIONS(405), + [anon_sym_LBRACE_PLUS] = ACTIONS(407), + [anon_sym_LBRACE_DASH] = ACTIONS(409), + [anon_sym_BSLASH] = ACTIONS(411), + [sym_quotation_marks] = ACTIONS(413), + [sym_ellipsis] = ACTIONS(413), + [sym_em_dash] = ACTIONS(413), + [sym_en_dash] = ACTIONS(415), + [sym_backslash_escape] = ACTIONS(415), + [anon_sym_LT] = ACTIONS(417), + [sym_symbol] = ACTIONS(413), + [anon_sym_LBRACK_CARET] = ACTIONS(419), + [anon_sym_BANG_LBRACK] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(423), + [anon_sym_LPAREN] = ACTIONS(425), + [anon_sym_DOLLAR] = ACTIONS(427), + [anon_sym_TODO] = ACTIONS(429), + [anon_sym_WIP] = ACTIONS(429), + [anon_sym_NOTE] = ACTIONS(431), + [anon_sym_INFO] = ACTIONS(431), + [anon_sym_XXX] = ACTIONS(431), + [sym_fixme] = ACTIONS(413), + [sym__whitespace1] = ACTIONS(433), + [sym__newline] = ACTIONS(435), + [aux_sym__text_token1] = ACTIONS(437), + [sym__verbatim_begin] = ACTIONS(439), }, [44] = { - [sym__inline] = STATE(1005), - [sym__element] = STATE(14), - [sym_emphasis] = STATE(136), - [sym_emphasis_begin] = STATE(1122), - [sym_strong] = STATE(136), - [sym_strong_begin] = STATE(1123), - [sym_superscript] = STATE(136), - [sym_superscript_begin] = STATE(1124), - [sym_subscript] = STATE(136), - [sym_subscript_begin] = STATE(1125), - [sym_highlighted] = STATE(136), - [sym_highlighted_begin] = STATE(1126), - [sym_insert] = STATE(136), - [sym_insert_begin] = STATE(1127), - [sym_delete] = STATE(136), - [sym_delete_begin] = STATE(1128), - [sym_hard_line_break] = STATE(136), - [sym__smart_punctuation] = STATE(136), - [sym_autolink] = STATE(136), - [sym_footnote_reference] = STATE(136), - [sym_footnote_marker_begin] = STATE(1129), - [sym__image] = STATE(136), - [sym_full_reference_image] = STATE(136), - [sym_collapsed_reference_image] = STATE(136), - [sym_inline_image] = STATE(136), - [sym_image_description] = STATE(651), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(136), - [sym_full_reference_link] = STATE(136), - [sym_collapsed_reference_link] = STATE(136), - [sym_inline_link] = STATE(136), - [sym_link_text] = STATE(650), - [sym_span] = STATE(14), - [sym__bracketed_text_begin] = STATE(1186), - [sym__comment_with_spaces] = STATE(136), - [sym_raw_inline] = STATE(136), - [sym_math] = STATE(136), - [sym_verbatim] = STATE(136), - [sym__todo_highlights] = STATE(136), - [sym_todo] = STATE(136), - [sym_note] = STATE(136), - [sym__symbol_fallback] = STATE(136), - [aux_sym__text] = STATE(130), - [aux_sym__inline_repeat1] = STATE(14), - [anon_sym_LBRACE_] = ACTIONS(319), - [anon_sym__] = ACTIONS(321), - [anon_sym_LBRACE_STAR] = ACTIONS(323), - [anon_sym_STAR] = ACTIONS(325), - [anon_sym_LBRACE_CARET] = ACTIONS(327), - [anon_sym_CARET] = ACTIONS(327), - [anon_sym_LBRACE_TILDE] = ACTIONS(329), - [anon_sym_TILDE] = ACTIONS(329), - [anon_sym_LBRACE_EQ] = ACTIONS(331), - [anon_sym_LBRACE_PLUS] = ACTIONS(333), - [anon_sym_LBRACE_DASH] = ACTIONS(335), - [anon_sym_BSLASH] = ACTIONS(337), - [sym_quotation_marks] = ACTIONS(339), - [sym_ellipsis] = ACTIONS(339), - [sym_em_dash] = ACTIONS(339), - [sym_en_dash] = ACTIONS(341), - [sym_backslash_escape] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(343), - [sym_symbol] = ACTIONS(339), - [anon_sym_LBRACK_CARET] = ACTIONS(345), - [anon_sym_BANG_LBRACK] = ACTIONS(347), - [anon_sym_LBRACK] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(351), - [anon_sym_DOLLAR] = ACTIONS(353), - [anon_sym_TODO] = ACTIONS(355), - [anon_sym_WIP] = ACTIONS(355), - [anon_sym_NOTE] = ACTIONS(357), - [anon_sym_INFO] = ACTIONS(357), - [anon_sym_XXX] = ACTIONS(357), - [sym_fixme] = ACTIONS(339), - [sym__whitespace1] = ACTIONS(359), - [sym__newline] = ACTIONS(635), - [aux_sym__text_token1] = ACTIONS(363), - [sym__verbatim_begin] = ACTIONS(365), + [sym__inline] = STATE(955), + [sym__element] = STATE(30), + [sym_emphasis] = STATE(132), + [sym_emphasis_begin] = STATE(1164), + [sym_strong] = STATE(132), + [sym_strong_begin] = STATE(1165), + [sym_superscript] = STATE(132), + [sym_superscript_begin] = STATE(1166), + [sym_subscript] = STATE(132), + [sym_subscript_begin] = STATE(1167), + [sym_highlighted] = STATE(132), + [sym_highlighted_begin] = STATE(1168), + [sym_insert] = STATE(132), + [sym_insert_begin] = STATE(1169), + [sym_delete] = STATE(132), + [sym_delete_begin] = STATE(1170), + [sym_hard_line_break] = STATE(142), + [sym__smart_punctuation] = STATE(142), + [sym_autolink] = STATE(142), + [sym_footnote_reference] = STATE(132), + [sym_footnote_marker_begin] = STATE(1171), + [sym__image] = STATE(132), + [sym_full_reference_image] = STATE(132), + [sym_collapsed_reference_image] = STATE(132), + [sym_inline_image] = STATE(132), + [sym_image_description] = STATE(660), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(132), + [sym_full_reference_link] = STATE(132), + [sym_collapsed_reference_link] = STATE(132), + [sym_inline_link] = STATE(132), + [sym_link_text] = STATE(659), + [sym_span] = STATE(30), + [sym__bracketed_text_begin] = STATE(1210), + [sym__comment_with_spaces] = STATE(142), + [sym_raw_inline] = STATE(142), + [sym_math] = STATE(142), + [sym_verbatim] = STATE(142), + [sym__todo_highlights] = STATE(142), + [sym_todo] = STATE(142), + [sym_note] = STATE(142), + [sym__symbol_fallback] = STATE(142), + [aux_sym__text] = STATE(126), + [aux_sym__inline_repeat1] = STATE(30), + [anon_sym_LBRACE_] = ACTIONS(393), + [anon_sym__] = ACTIONS(395), + [anon_sym_LBRACE_STAR] = ACTIONS(397), + [anon_sym_STAR] = ACTIONS(399), + [anon_sym_LBRACE_CARET] = ACTIONS(401), + [anon_sym_CARET] = ACTIONS(401), + [anon_sym_LBRACE_TILDE] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_LBRACE_EQ] = ACTIONS(405), + [anon_sym_LBRACE_PLUS] = ACTIONS(407), + [anon_sym_LBRACE_DASH] = ACTIONS(409), + [anon_sym_BSLASH] = ACTIONS(411), + [sym_quotation_marks] = ACTIONS(413), + [sym_ellipsis] = ACTIONS(413), + [sym_em_dash] = ACTIONS(413), + [sym_en_dash] = ACTIONS(415), + [sym_backslash_escape] = ACTIONS(415), + [anon_sym_LT] = ACTIONS(417), + [sym_symbol] = ACTIONS(413), + [anon_sym_LBRACK_CARET] = ACTIONS(419), + [anon_sym_BANG_LBRACK] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(423), + [anon_sym_LPAREN] = ACTIONS(425), + [anon_sym_DOLLAR] = ACTIONS(427), + [anon_sym_TODO] = ACTIONS(429), + [anon_sym_WIP] = ACTIONS(429), + [anon_sym_NOTE] = ACTIONS(431), + [anon_sym_INFO] = ACTIONS(431), + [anon_sym_XXX] = ACTIONS(431), + [sym_fixme] = ACTIONS(413), + [sym__whitespace1] = ACTIONS(433), + [sym__newline] = ACTIONS(435), + [aux_sym__text_token1] = ACTIONS(437), + [sym__verbatim_begin] = ACTIONS(439), }, [45] = { - [sym__inline] = STATE(931), - [sym__element] = STATE(65), - [sym_emphasis] = STATE(133), - [sym_emphasis_begin] = STATE(1142), - [sym_strong] = STATE(133), - [sym_strong_begin] = STATE(1143), - [sym_superscript] = STATE(133), - [sym_superscript_begin] = STATE(1144), - [sym_subscript] = STATE(133), - [sym_subscript_begin] = STATE(1145), - [sym_highlighted] = STATE(133), - [sym_highlighted_begin] = STATE(1146), - [sym_insert] = STATE(133), - [sym_insert_begin] = STATE(1147), - [sym_delete] = STATE(133), - [sym_delete_begin] = STATE(1148), - [sym_hard_line_break] = STATE(133), - [sym__smart_punctuation] = STATE(133), - [sym_autolink] = STATE(133), - [sym_footnote_reference] = STATE(133), - [sym_footnote_marker_begin] = STATE(1149), - [sym__image] = STATE(133), - [sym_full_reference_image] = STATE(133), - [sym_collapsed_reference_image] = STATE(133), - [sym_inline_image] = STATE(133), - [sym_image_description] = STATE(638), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(133), - [sym_full_reference_link] = STATE(133), - [sym_collapsed_reference_link] = STATE(133), - [sym_inline_link] = STATE(133), - [sym_link_text] = STATE(637), - [sym_span] = STATE(65), - [sym__bracketed_text_begin] = STATE(1188), - [sym__comment_with_spaces] = STATE(133), - [sym_raw_inline] = STATE(133), - [sym_math] = STATE(133), - [sym_verbatim] = STATE(133), - [sym__todo_highlights] = STATE(133), - [sym_todo] = STATE(133), - [sym_note] = STATE(133), - [sym__symbol_fallback] = STATE(133), - [aux_sym__text] = STATE(129), - [aux_sym__inline_repeat1] = STATE(65), - [anon_sym_LBRACE_] = ACTIONS(489), - [anon_sym__] = ACTIONS(491), - [anon_sym_LBRACE_STAR] = ACTIONS(493), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_LBRACE_CARET] = ACTIONS(497), - [anon_sym_CARET] = ACTIONS(497), - [anon_sym_LBRACE_TILDE] = ACTIONS(499), - [anon_sym_TILDE] = ACTIONS(499), - [anon_sym_LBRACE_EQ] = ACTIONS(501), - [anon_sym_LBRACE_PLUS] = ACTIONS(503), - [anon_sym_LBRACE_DASH] = ACTIONS(505), - [anon_sym_BSLASH] = ACTIONS(507), - [sym_quotation_marks] = ACTIONS(509), - [sym_ellipsis] = ACTIONS(509), - [sym_em_dash] = ACTIONS(509), - [sym_en_dash] = ACTIONS(511), - [sym_backslash_escape] = ACTIONS(511), - [anon_sym_LT] = ACTIONS(513), - [sym_symbol] = ACTIONS(509), - [anon_sym_LBRACK_CARET] = ACTIONS(515), - [anon_sym_BANG_LBRACK] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(519), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_DOLLAR] = ACTIONS(523), - [anon_sym_TODO] = ACTIONS(525), - [anon_sym_WIP] = ACTIONS(525), - [anon_sym_NOTE] = ACTIONS(527), - [anon_sym_INFO] = ACTIONS(527), - [anon_sym_XXX] = ACTIONS(527), - [sym_fixme] = ACTIONS(509), - [sym__whitespace1] = ACTIONS(529), - [sym__newline] = ACTIONS(531), - [aux_sym__text_token1] = ACTIONS(533), - [sym__verbatim_begin] = ACTIONS(535), + [sym__inline] = STATE(867), + [sym__element] = STATE(22), + [sym_emphasis] = STATE(147), + [sym_emphasis_begin] = STATE(1154), + [sym_strong] = STATE(147), + [sym_strong_begin] = STATE(1155), + [sym_superscript] = STATE(147), + [sym_superscript_begin] = STATE(1156), + [sym_subscript] = STATE(147), + [sym_subscript_begin] = STATE(1157), + [sym_highlighted] = STATE(147), + [sym_highlighted_begin] = STATE(1158), + [sym_insert] = STATE(147), + [sym_insert_begin] = STATE(1159), + [sym_delete] = STATE(147), + [sym_delete_begin] = STATE(1160), + [sym_hard_line_break] = STATE(145), + [sym__smart_punctuation] = STATE(145), + [sym_autolink] = STATE(145), + [sym_footnote_reference] = STATE(147), + [sym_footnote_marker_begin] = STATE(1161), + [sym__image] = STATE(147), + [sym_full_reference_image] = STATE(147), + [sym_collapsed_reference_image] = STATE(147), + [sym_inline_image] = STATE(147), + [sym_image_description] = STATE(665), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(147), + [sym_full_reference_link] = STATE(147), + [sym_collapsed_reference_link] = STATE(147), + [sym_inline_link] = STATE(147), + [sym_link_text] = STATE(664), + [sym_span] = STATE(22), + [sym__bracketed_text_begin] = STATE(1209), + [sym__comment_with_spaces] = STATE(145), + [sym_raw_inline] = STATE(145), + [sym_math] = STATE(145), + [sym_verbatim] = STATE(145), + [sym__todo_highlights] = STATE(145), + [sym_todo] = STATE(145), + [sym_note] = STATE(145), + [sym__symbol_fallback] = STATE(145), + [aux_sym__text] = STATE(124), + [aux_sym__inline_repeat1] = STATE(22), + [anon_sym_LBRACE_] = ACTIONS(101), + [anon_sym__] = ACTIONS(103), + [anon_sym_LBRACE_STAR] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(107), + [anon_sym_LBRACE_CARET] = ACTIONS(109), + [anon_sym_CARET] = ACTIONS(109), + [anon_sym_LBRACE_TILDE] = ACTIONS(111), + [anon_sym_TILDE] = ACTIONS(111), + [anon_sym_LBRACE_EQ] = ACTIONS(113), + [anon_sym_LBRACE_PLUS] = ACTIONS(115), + [anon_sym_LBRACE_DASH] = ACTIONS(117), + [anon_sym_BSLASH] = ACTIONS(119), + [sym_quotation_marks] = ACTIONS(121), + [sym_ellipsis] = ACTIONS(121), + [sym_em_dash] = ACTIONS(121), + [sym_en_dash] = ACTIONS(123), + [sym_backslash_escape] = ACTIONS(123), + [anon_sym_LT] = ACTIONS(125), + [sym_symbol] = ACTIONS(121), + [anon_sym_LBRACK_CARET] = ACTIONS(127), + [anon_sym_BANG_LBRACK] = ACTIONS(129), + [anon_sym_LBRACK] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_DOLLAR] = ACTIONS(135), + [anon_sym_TODO] = ACTIONS(137), + [anon_sym_WIP] = ACTIONS(137), + [anon_sym_NOTE] = ACTIONS(139), + [anon_sym_INFO] = ACTIONS(139), + [anon_sym_XXX] = ACTIONS(139), + [sym_fixme] = ACTIONS(121), + [sym__whitespace1] = ACTIONS(141), + [sym__newline] = ACTIONS(143), + [aux_sym__text_token1] = ACTIONS(145), + [sym__verbatim_begin] = ACTIONS(147), }, [46] = { - [sym__inline] = STATE(844), - [sym__element] = STATE(14), - [sym_emphasis] = STATE(136), - [sym_emphasis_begin] = STATE(1122), - [sym_strong] = STATE(136), - [sym_strong_begin] = STATE(1123), - [sym_superscript] = STATE(136), - [sym_superscript_begin] = STATE(1124), - [sym_subscript] = STATE(136), - [sym_subscript_begin] = STATE(1125), - [sym_highlighted] = STATE(136), - [sym_highlighted_begin] = STATE(1126), - [sym_insert] = STATE(136), - [sym_insert_begin] = STATE(1127), - [sym_delete] = STATE(136), - [sym_delete_begin] = STATE(1128), - [sym_hard_line_break] = STATE(136), - [sym__smart_punctuation] = STATE(136), - [sym_autolink] = STATE(136), - [sym_footnote_reference] = STATE(136), - [sym_footnote_marker_begin] = STATE(1129), - [sym__image] = STATE(136), - [sym_full_reference_image] = STATE(136), - [sym_collapsed_reference_image] = STATE(136), - [sym_inline_image] = STATE(136), - [sym_image_description] = STATE(651), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(136), - [sym_full_reference_link] = STATE(136), - [sym_collapsed_reference_link] = STATE(136), - [sym_inline_link] = STATE(136), - [sym_link_text] = STATE(650), - [sym_span] = STATE(14), - [sym__bracketed_text_begin] = STATE(1186), - [sym__comment_with_spaces] = STATE(136), - [sym_raw_inline] = STATE(136), - [sym_math] = STATE(136), - [sym_verbatim] = STATE(136), - [sym__todo_highlights] = STATE(136), - [sym_todo] = STATE(136), - [sym_note] = STATE(136), - [sym__symbol_fallback] = STATE(136), - [aux_sym__text] = STATE(130), - [aux_sym__inline_repeat1] = STATE(14), - [anon_sym_LBRACE_] = ACTIONS(319), - [anon_sym__] = ACTIONS(321), - [anon_sym_LBRACE_STAR] = ACTIONS(323), - [anon_sym_STAR] = ACTIONS(325), - [anon_sym_LBRACE_CARET] = ACTIONS(327), - [anon_sym_CARET] = ACTIONS(327), - [anon_sym_LBRACE_TILDE] = ACTIONS(329), - [anon_sym_TILDE] = ACTIONS(329), - [anon_sym_LBRACE_EQ] = ACTIONS(331), - [anon_sym_LBRACE_PLUS] = ACTIONS(333), - [anon_sym_LBRACE_DASH] = ACTIONS(335), - [anon_sym_BSLASH] = ACTIONS(337), - [sym_quotation_marks] = ACTIONS(339), - [sym_ellipsis] = ACTIONS(339), - [sym_em_dash] = ACTIONS(339), - [sym_en_dash] = ACTIONS(341), - [sym_backslash_escape] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(343), - [sym_symbol] = ACTIONS(339), - [anon_sym_LBRACK_CARET] = ACTIONS(345), - [anon_sym_BANG_LBRACK] = ACTIONS(347), - [anon_sym_LBRACK] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(351), - [anon_sym_DOLLAR] = ACTIONS(353), - [anon_sym_TODO] = ACTIONS(355), - [anon_sym_WIP] = ACTIONS(355), - [anon_sym_NOTE] = ACTIONS(357), - [anon_sym_INFO] = ACTIONS(357), - [anon_sym_XXX] = ACTIONS(357), - [sym_fixme] = ACTIONS(339), - [sym__whitespace1] = ACTIONS(359), - [sym__newline] = ACTIONS(635), - [aux_sym__text_token1] = ACTIONS(363), - [sym__verbatim_begin] = ACTIONS(365), + [sym__element] = STATE(71), + [sym_emphasis] = STATE(135), + [sym_emphasis_begin] = STATE(1174), + [sym_strong] = STATE(135), + [sym_strong_begin] = STATE(1175), + [sym_superscript] = STATE(135), + [sym_superscript_begin] = STATE(1176), + [sym_subscript] = STATE(135), + [sym_subscript_begin] = STATE(1177), + [sym_highlighted] = STATE(135), + [sym_highlighted_begin] = STATE(1178), + [sym_insert] = STATE(135), + [sym_insert_begin] = STATE(1179), + [sym_delete] = STATE(135), + [sym_delete_begin] = STATE(1180), + [sym_hard_line_break] = STATE(138), + [sym__smart_punctuation] = STATE(138), + [sym_autolink] = STATE(138), + [sym_footnote_reference] = STATE(135), + [sym_footnote_marker_begin] = STATE(1181), + [sym__image] = STATE(135), + [sym_full_reference_image] = STATE(135), + [sym_collapsed_reference_image] = STATE(135), + [sym_inline_image] = STATE(135), + [sym_image_description] = STATE(656), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(135), + [sym_full_reference_link] = STATE(135), + [sym_collapsed_reference_link] = STATE(135), + [sym_inline_link] = STATE(135), + [sym_link_text] = STATE(654), + [sym_span] = STATE(71), + [sym__bracketed_text_begin] = STATE(1211), + [sym__comment_with_spaces] = STATE(138), + [sym_raw_inline] = STATE(138), + [sym_math] = STATE(138), + [sym_verbatim] = STATE(138), + [sym__todo_highlights] = STATE(138), + [sym_todo] = STATE(138), + [sym_note] = STATE(138), + [sym__symbol_fallback] = STATE(138), + [aux_sym__text] = STATE(121), + [aux_sym__inline_repeat1] = STATE(71), + [anon_sym_LBRACE_] = ACTIONS(345), + [anon_sym__] = ACTIONS(347), + [anon_sym_LBRACE_STAR] = ACTIONS(349), + [anon_sym_STAR] = ACTIONS(351), + [anon_sym_LBRACE_CARET] = ACTIONS(353), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_LBRACE_TILDE] = ACTIONS(355), + [anon_sym_TILDE] = ACTIONS(355), + [anon_sym_LBRACE_EQ] = ACTIONS(357), + [anon_sym_LBRACE_PLUS] = ACTIONS(359), + [anon_sym_LBRACE_DASH] = ACTIONS(361), + [anon_sym_BSLASH] = ACTIONS(363), + [sym_quotation_marks] = ACTIONS(365), + [sym_ellipsis] = ACTIONS(365), + [sym_em_dash] = ACTIONS(365), + [sym_en_dash] = ACTIONS(367), + [sym_backslash_escape] = ACTIONS(367), + [anon_sym_LT] = ACTIONS(369), + [sym_symbol] = ACTIONS(365), + [anon_sym_LBRACK_CARET] = ACTIONS(371), + [anon_sym_BANG_LBRACK] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(375), + [anon_sym_RBRACK] = ACTIONS(343), + [anon_sym_LPAREN] = ACTIONS(377), + [anon_sym_DOLLAR] = ACTIONS(379), + [anon_sym_TODO] = ACTIONS(381), + [anon_sym_WIP] = ACTIONS(381), + [anon_sym_NOTE] = ACTIONS(383), + [anon_sym_INFO] = ACTIONS(383), + [anon_sym_XXX] = ACTIONS(383), + [sym_fixme] = ACTIONS(365), + [sym__whitespace1] = ACTIONS(385), + [sym__newline] = ACTIONS(785), + [aux_sym__text_token1] = ACTIONS(389), + [sym__verbatim_begin] = ACTIONS(391), }, [47] = { - [sym__element] = STATE(47), - [sym_emphasis] = STATE(136), - [sym_emphasis_begin] = STATE(1122), - [sym_strong] = STATE(136), - [sym_strong_begin] = STATE(1123), - [sym_superscript] = STATE(136), - [sym_superscript_begin] = STATE(1124), - [sym_subscript] = STATE(136), - [sym_subscript_begin] = STATE(1125), - [sym_highlighted] = STATE(136), - [sym_highlighted_begin] = STATE(1126), - [sym_insert] = STATE(136), - [sym_insert_begin] = STATE(1127), - [sym_delete] = STATE(136), - [sym_delete_begin] = STATE(1128), - [sym_hard_line_break] = STATE(136), - [sym__smart_punctuation] = STATE(136), - [sym_autolink] = STATE(136), - [sym_footnote_reference] = STATE(136), - [sym_footnote_marker_begin] = STATE(1129), - [sym__image] = STATE(136), - [sym_full_reference_image] = STATE(136), - [sym_collapsed_reference_image] = STATE(136), - [sym_inline_image] = STATE(136), - [sym_image_description] = STATE(651), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(136), - [sym_full_reference_link] = STATE(136), - [sym_collapsed_reference_link] = STATE(136), - [sym_inline_link] = STATE(136), - [sym_link_text] = STATE(650), - [sym_span] = STATE(47), - [sym__bracketed_text_begin] = STATE(1186), - [sym__comment_with_spaces] = STATE(136), - [sym_raw_inline] = STATE(136), - [sym_math] = STATE(136), - [sym_verbatim] = STATE(136), - [sym__todo_highlights] = STATE(136), - [sym_todo] = STATE(136), - [sym_note] = STATE(136), - [sym__symbol_fallback] = STATE(136), - [aux_sym__text] = STATE(130), - [aux_sym__inline_repeat1] = STATE(47), - [anon_sym_LBRACE_] = ACTIONS(641), - [anon_sym__] = ACTIONS(644), - [anon_sym_LBRACE_STAR] = ACTIONS(647), - [anon_sym_STAR] = ACTIONS(650), - [anon_sym_LBRACE_CARET] = ACTIONS(653), - [anon_sym_CARET] = ACTIONS(653), - [anon_sym_LBRACE_TILDE] = ACTIONS(656), - [anon_sym_TILDE] = ACTIONS(656), - [anon_sym_LBRACE_EQ] = ACTIONS(659), - [anon_sym_LBRACE_PLUS] = ACTIONS(662), - [anon_sym_LBRACE_DASH] = ACTIONS(665), - [anon_sym_BSLASH] = ACTIONS(668), - [sym_quotation_marks] = ACTIONS(671), - [sym_ellipsis] = ACTIONS(671), - [sym_em_dash] = ACTIONS(671), - [sym_en_dash] = ACTIONS(674), - [sym_backslash_escape] = ACTIONS(674), - [anon_sym_LT] = ACTIONS(677), - [sym_symbol] = ACTIONS(671), - [anon_sym_LBRACK_CARET] = ACTIONS(680), - [anon_sym_BANG_LBRACK] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_LPAREN] = ACTIONS(689), - [anon_sym_DOLLAR] = ACTIONS(692), - [anon_sym_TODO] = ACTIONS(695), - [anon_sym_WIP] = ACTIONS(695), - [anon_sym_NOTE] = ACTIONS(698), - [anon_sym_INFO] = ACTIONS(698), - [anon_sym_XXX] = ACTIONS(698), - [sym_fixme] = ACTIONS(671), - [sym__whitespace1] = ACTIONS(701), - [sym__newline] = ACTIONS(704), - [aux_sym__text_token1] = ACTIONS(707), - [sym__verbatim_begin] = ACTIONS(710), - [sym_highlighted_end] = ACTIONS(317), + [sym__inline] = STATE(866), + [sym__element] = STATE(110), + [sym_emphasis] = STATE(146), + [sym_emphasis_begin] = STATE(1144), + [sym_strong] = STATE(146), + [sym_strong_begin] = STATE(1145), + [sym_superscript] = STATE(146), + [sym_superscript_begin] = STATE(1146), + [sym_subscript] = STATE(146), + [sym_subscript_begin] = STATE(1147), + [sym_highlighted] = STATE(146), + [sym_highlighted_begin] = STATE(1148), + [sym_insert] = STATE(146), + [sym_insert_begin] = STATE(1149), + [sym_delete] = STATE(146), + [sym_delete_begin] = STATE(1150), + [sym_hard_line_break] = STATE(144), + [sym__smart_punctuation] = STATE(144), + [sym_autolink] = STATE(144), + [sym_footnote_reference] = STATE(146), + [sym_footnote_marker_begin] = STATE(1151), + [sym__image] = STATE(146), + [sym_full_reference_image] = STATE(146), + [sym_collapsed_reference_image] = STATE(146), + [sym_inline_image] = STATE(146), + [sym_image_description] = STATE(673), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(146), + [sym_full_reference_link] = STATE(146), + [sym_collapsed_reference_link] = STATE(146), + [sym_inline_link] = STATE(146), + [sym_link_text] = STATE(662), + [sym_span] = STATE(110), + [sym__bracketed_text_begin] = STATE(1208), + [sym__comment_with_spaces] = STATE(144), + [sym_raw_inline] = STATE(144), + [sym_math] = STATE(144), + [sym_verbatim] = STATE(144), + [sym__todo_highlights] = STATE(144), + [sym_todo] = STATE(144), + [sym_note] = STATE(144), + [sym__symbol_fallback] = STATE(144), + [aux_sym__text] = STATE(128), + [aux_sym__inline_repeat1] = STATE(110), + [anon_sym_LBRACE_] = ACTIONS(587), + [anon_sym__] = ACTIONS(589), + [anon_sym_LBRACE_STAR] = ACTIONS(591), + [anon_sym_STAR] = ACTIONS(593), + [anon_sym_LBRACE_CARET] = ACTIONS(595), + [anon_sym_CARET] = ACTIONS(595), + [anon_sym_LBRACE_TILDE] = ACTIONS(597), + [anon_sym_TILDE] = ACTIONS(597), + [anon_sym_LBRACE_EQ] = ACTIONS(599), + [anon_sym_LBRACE_PLUS] = ACTIONS(601), + [anon_sym_LBRACE_DASH] = ACTIONS(603), + [anon_sym_BSLASH] = ACTIONS(605), + [sym_quotation_marks] = ACTIONS(607), + [sym_ellipsis] = ACTIONS(607), + [sym_em_dash] = ACTIONS(607), + [sym_en_dash] = ACTIONS(609), + [sym_backslash_escape] = ACTIONS(609), + [anon_sym_LT] = ACTIONS(611), + [sym_symbol] = ACTIONS(607), + [anon_sym_LBRACK_CARET] = ACTIONS(613), + [anon_sym_BANG_LBRACK] = ACTIONS(615), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_LPAREN] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [anon_sym_TODO] = ACTIONS(623), + [anon_sym_WIP] = ACTIONS(623), + [anon_sym_NOTE] = ACTIONS(625), + [anon_sym_INFO] = ACTIONS(625), + [anon_sym_XXX] = ACTIONS(625), + [sym_fixme] = ACTIONS(607), + [sym__whitespace1] = ACTIONS(627), + [sym__newline] = ACTIONS(629), + [aux_sym__text_token1] = ACTIONS(631), + [sym__verbatim_begin] = ACTIONS(633), }, [48] = { - [sym__inline] = STATE(843), - [sym__element] = STATE(22), - [sym_emphasis] = STATE(137), - [sym_emphasis_begin] = STATE(1112), - [sym_strong] = STATE(137), - [sym_strong_begin] = STATE(1113), - [sym_superscript] = STATE(137), - [sym_superscript_begin] = STATE(1114), - [sym_subscript] = STATE(137), - [sym_subscript_begin] = STATE(1115), - [sym_highlighted] = STATE(137), - [sym_highlighted_begin] = STATE(1116), - [sym_insert] = STATE(137), - [sym_insert_begin] = STATE(1117), - [sym_delete] = STATE(137), - [sym_delete_begin] = STATE(1118), - [sym_hard_line_break] = STATE(137), - [sym__smart_punctuation] = STATE(137), - [sym_autolink] = STATE(137), - [sym_footnote_reference] = STATE(137), - [sym_footnote_marker_begin] = STATE(1119), - [sym__image] = STATE(137), - [sym_full_reference_image] = STATE(137), - [sym_collapsed_reference_image] = STATE(137), - [sym_inline_image] = STATE(137), - [sym_image_description] = STATE(636), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(137), - [sym_full_reference_link] = STATE(137), - [sym_collapsed_reference_link] = STATE(137), - [sym_inline_link] = STATE(137), - [sym_link_text] = STATE(647), - [sym_span] = STATE(22), - [sym__bracketed_text_begin] = STATE(1185), - [sym__comment_with_spaces] = STATE(137), - [sym_raw_inline] = STATE(137), - [sym_math] = STATE(137), - [sym_verbatim] = STATE(137), - [sym__todo_highlights] = STATE(137), - [sym_todo] = STATE(137), - [sym_note] = STATE(137), - [sym__symbol_fallback] = STATE(137), - [aux_sym__text] = STATE(122), - [aux_sym__inline_repeat1] = STATE(22), - [anon_sym_LBRACE_] = ACTIONS(197), - [anon_sym__] = ACTIONS(199), - [anon_sym_LBRACE_STAR] = ACTIONS(201), - [anon_sym_STAR] = ACTIONS(203), - [anon_sym_LBRACE_CARET] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(205), - [anon_sym_LBRACE_TILDE] = ACTIONS(207), - [anon_sym_TILDE] = ACTIONS(207), - [anon_sym_LBRACE_EQ] = ACTIONS(209), - [anon_sym_LBRACE_PLUS] = ACTIONS(211), - [anon_sym_LBRACE_DASH] = ACTIONS(213), - [anon_sym_BSLASH] = ACTIONS(215), - [sym_quotation_marks] = ACTIONS(217), - [sym_ellipsis] = ACTIONS(217), - [sym_em_dash] = ACTIONS(217), - [sym_en_dash] = ACTIONS(219), - [sym_backslash_escape] = ACTIONS(219), - [anon_sym_LT] = ACTIONS(221), - [sym_symbol] = ACTIONS(217), - [anon_sym_LBRACK_CARET] = ACTIONS(223), - [anon_sym_BANG_LBRACK] = ACTIONS(225), - [anon_sym_LBRACK] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_DOLLAR] = ACTIONS(231), - [anon_sym_TODO] = ACTIONS(233), - [anon_sym_WIP] = ACTIONS(233), - [anon_sym_NOTE] = ACTIONS(235), - [anon_sym_INFO] = ACTIONS(235), - [anon_sym_XXX] = ACTIONS(235), - [sym_fixme] = ACTIONS(217), - [sym__whitespace1] = ACTIONS(237), - [sym__newline] = ACTIONS(239), - [aux_sym__text_token1] = ACTIONS(241), - [sym__verbatim_begin] = ACTIONS(243), - }, - [49] = { - [sym__inline] = STATE(842), - [sym__element] = STATE(106), - [sym_emphasis] = STATE(139), - [sym_emphasis_begin] = STATE(1102), - [sym_strong] = STATE(139), - [sym_strong_begin] = STATE(1103), - [sym_superscript] = STATE(139), - [sym_superscript_begin] = STATE(1104), - [sym_subscript] = STATE(139), - [sym_subscript_begin] = STATE(1105), - [sym_highlighted] = STATE(139), - [sym_highlighted_begin] = STATE(1106), - [sym_insert] = STATE(139), - [sym_insert_begin] = STATE(1107), - [sym_delete] = STATE(139), - [sym_delete_begin] = STATE(1108), - [sym_hard_line_break] = STATE(139), - [sym__smart_punctuation] = STATE(139), - [sym_autolink] = STATE(139), - [sym_footnote_reference] = STATE(139), - [sym_footnote_marker_begin] = STATE(1109), - [sym__image] = STATE(139), - [sym_full_reference_image] = STATE(139), - [sym_collapsed_reference_image] = STATE(139), - [sym_inline_image] = STATE(139), - [sym_image_description] = STATE(623), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(139), - [sym_full_reference_link] = STATE(139), - [sym_collapsed_reference_link] = STATE(139), - [sym_inline_link] = STATE(139), - [sym_link_text] = STATE(621), - [sym_span] = STATE(106), - [sym__bracketed_text_begin] = STATE(1184), - [sym__comment_with_spaces] = STATE(139), - [sym_raw_inline] = STATE(139), - [sym_math] = STATE(139), - [sym_verbatim] = STATE(139), - [sym__todo_highlights] = STATE(139), - [sym_todo] = STATE(139), - [sym_note] = STATE(139), - [sym__symbol_fallback] = STATE(139), - [aux_sym__text] = STATE(126), - [aux_sym__inline_repeat1] = STATE(106), - [anon_sym_LBRACE_] = ACTIONS(101), - [anon_sym__] = ACTIONS(103), - [anon_sym_LBRACE_STAR] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_LBRACE_CARET] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(109), - [anon_sym_LBRACE_TILDE] = ACTIONS(111), - [anon_sym_TILDE] = ACTIONS(111), - [anon_sym_LBRACE_EQ] = ACTIONS(113), - [anon_sym_LBRACE_PLUS] = ACTIONS(115), - [anon_sym_LBRACE_DASH] = ACTIONS(117), - [anon_sym_BSLASH] = ACTIONS(119), - [sym_quotation_marks] = ACTIONS(121), - [sym_ellipsis] = ACTIONS(121), - [sym_em_dash] = ACTIONS(121), - [sym_en_dash] = ACTIONS(123), - [sym_backslash_escape] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(125), - [sym_symbol] = ACTIONS(121), - [anon_sym_LBRACK_CARET] = ACTIONS(127), - [anon_sym_BANG_LBRACK] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_TODO] = ACTIONS(137), - [anon_sym_WIP] = ACTIONS(137), - [anon_sym_NOTE] = ACTIONS(139), - [anon_sym_INFO] = ACTIONS(139), - [anon_sym_XXX] = ACTIONS(139), - [sym_fixme] = ACTIONS(121), - [sym__whitespace1] = ACTIONS(141), - [sym__newline] = ACTIONS(143), - [aux_sym__text_token1] = ACTIONS(145), - [sym__verbatim_begin] = ACTIONS(147), - }, - [50] = { - [sym__inline] = STATE(929), - [sym__element] = STATE(71), - [sym_emphasis] = STATE(132), - [sym_emphasis_begin] = STATE(1152), - [sym_strong] = STATE(132), - [sym_strong_begin] = STATE(1153), - [sym_superscript] = STATE(132), - [sym_superscript_begin] = STATE(1154), - [sym_subscript] = STATE(132), - [sym_subscript_begin] = STATE(1155), - [sym_highlighted] = STATE(132), - [sym_highlighted_begin] = STATE(1156), - [sym_insert] = STATE(132), - [sym_insert_begin] = STATE(1157), - [sym_delete] = STATE(132), - [sym_delete_begin] = STATE(1158), - [sym_hard_line_break] = STATE(132), - [sym__smart_punctuation] = STATE(132), - [sym_autolink] = STATE(132), - [sym_footnote_reference] = STATE(132), - [sym_footnote_marker_begin] = STATE(1159), - [sym__image] = STATE(132), - [sym_full_reference_image] = STATE(132), - [sym_collapsed_reference_image] = STATE(132), - [sym_inline_image] = STATE(132), - [sym_image_description] = STATE(633), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(132), - [sym_full_reference_link] = STATE(132), - [sym_collapsed_reference_link] = STATE(132), - [sym_inline_link] = STATE(132), - [sym_link_text] = STATE(631), - [sym_span] = STATE(71), - [sym__bracketed_text_begin] = STATE(1189), - [sym__comment_with_spaces] = STATE(132), - [sym_raw_inline] = STATE(132), - [sym_math] = STATE(132), - [sym_verbatim] = STATE(132), - [sym__todo_highlights] = STATE(132), - [sym_todo] = STATE(132), - [sym_note] = STATE(132), - [sym__symbol_fallback] = STATE(132), - [aux_sym__text] = STATE(128), - [aux_sym__inline_repeat1] = STATE(71), + [sym__inline_without_trailing_space] = STATE(878), + [sym__element] = STATE(594), + [sym_emphasis] = STATE(149), + [sym_emphasis_begin] = STATE(1104), + [sym_strong] = STATE(149), + [sym_strong_begin] = STATE(1105), + [sym_superscript] = STATE(149), + [sym_superscript_begin] = STATE(1106), + [sym_subscript] = STATE(149), + [sym_subscript_begin] = STATE(1107), + [sym_highlighted] = STATE(149), + [sym_highlighted_begin] = STATE(1108), + [sym_insert] = STATE(149), + [sym_insert_begin] = STATE(1109), + [sym_delete] = STATE(149), + [sym_delete_begin] = STATE(1110), + [sym_hard_line_break] = STATE(143), + [sym__smart_punctuation] = STATE(143), + [sym_autolink] = STATE(143), + [sym_footnote_reference] = STATE(149), + [sym_footnote_marker_begin] = STATE(1111), + [sym__image] = STATE(149), + [sym_full_reference_image] = STATE(149), + [sym_collapsed_reference_image] = STATE(149), + [sym_inline_image] = STATE(149), + [sym_image_description] = STATE(658), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(149), + [sym_full_reference_link] = STATE(149), + [sym_collapsed_reference_link] = STATE(149), + [sym_inline_link] = STATE(149), + [sym_link_text] = STATE(672), + [sym_span] = STATE(594), + [sym__bracketed_text_begin] = STATE(1204), + [sym__comment_with_spaces] = STATE(143), + [sym_raw_inline] = STATE(143), + [sym_math] = STATE(143), + [sym_verbatim] = STATE(143), + [sym__todo_highlights] = STATE(143), + [sym_todo] = STATE(143), + [sym_note] = STATE(143), + [sym__symbol_fallback] = STATE(143), + [aux_sym__text] = STATE(127), + [aux_sym__inline_repeat1] = STATE(120), [anon_sym_LBRACE_] = ACTIONS(441), [anon_sym__] = ACTIONS(443), [anon_sym_LBRACE_STAR] = ACTIONS(445), @@ -9173,451 +9057,211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token1] = ACTIONS(485), [sym__verbatim_begin] = ACTIONS(487), }, - [51] = { - [sym__inline_without_trailing_space] = STATE(1027), - [sym__element] = STATE(581), - [sym_emphasis] = STATE(141), - [sym_emphasis_begin] = STATE(1082), - [sym_strong] = STATE(141), - [sym_strong_begin] = STATE(1083), - [sym_superscript] = STATE(141), - [sym_superscript_begin] = STATE(1084), - [sym_subscript] = STATE(141), - [sym_subscript_begin] = STATE(1085), - [sym_highlighted] = STATE(141), - [sym_highlighted_begin] = STATE(1086), - [sym_insert] = STATE(141), - [sym_insert_begin] = STATE(1087), - [sym_delete] = STATE(141), - [sym_delete_begin] = STATE(1088), - [sym_hard_line_break] = STATE(141), - [sym__smart_punctuation] = STATE(141), - [sym_autolink] = STATE(141), - [sym_footnote_reference] = STATE(141), - [sym_footnote_marker_begin] = STATE(1089), - [sym__image] = STATE(141), - [sym_full_reference_image] = STATE(141), - [sym_collapsed_reference_image] = STATE(141), - [sym_inline_image] = STATE(141), - [sym_image_description] = STATE(642), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(141), - [sym_full_reference_link] = STATE(141), - [sym_collapsed_reference_link] = STATE(141), - [sym_inline_link] = STATE(141), - [sym_link_text] = STATE(629), - [sym_span] = STATE(581), - [sym__bracketed_text_begin] = STATE(1182), - [sym__comment_with_spaces] = STATE(141), - [sym_raw_inline] = STATE(141), - [sym_math] = STATE(141), - [sym_verbatim] = STATE(141), - [sym__todo_highlights] = STATE(141), - [sym_todo] = STATE(141), - [sym_note] = STATE(141), - [sym__symbol_fallback] = STATE(141), - [aux_sym__text] = STATE(125), - [aux_sym__inline_repeat1] = STATE(119), - [anon_sym_LBRACE_] = ACTIONS(585), - [anon_sym__] = ACTIONS(587), - [anon_sym_LBRACE_STAR] = ACTIONS(589), - [anon_sym_STAR] = ACTIONS(591), - [anon_sym_LBRACE_CARET] = ACTIONS(593), - [anon_sym_CARET] = ACTIONS(593), - [anon_sym_LBRACE_TILDE] = ACTIONS(595), - [anon_sym_TILDE] = ACTIONS(595), - [anon_sym_LBRACE_EQ] = ACTIONS(597), - [anon_sym_LBRACE_PLUS] = ACTIONS(599), - [anon_sym_LBRACE_DASH] = ACTIONS(601), - [anon_sym_BSLASH] = ACTIONS(603), - [sym_quotation_marks] = ACTIONS(605), - [sym_ellipsis] = ACTIONS(605), - [sym_em_dash] = ACTIONS(605), - [sym_en_dash] = ACTIONS(607), - [sym_backslash_escape] = ACTIONS(607), - [anon_sym_LT] = ACTIONS(609), - [sym_symbol] = ACTIONS(605), - [anon_sym_LBRACK_CARET] = ACTIONS(611), - [anon_sym_BANG_LBRACK] = ACTIONS(613), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_DOLLAR] = ACTIONS(619), - [anon_sym_TODO] = ACTIONS(621), - [anon_sym_WIP] = ACTIONS(621), - [anon_sym_NOTE] = ACTIONS(623), - [anon_sym_INFO] = ACTIONS(623), - [anon_sym_XXX] = ACTIONS(623), - [sym_fixme] = ACTIONS(605), - [sym__whitespace1] = ACTIONS(625), - [sym__newline] = ACTIONS(627), - [aux_sym__text_token1] = ACTIONS(629), - [sym__verbatim_begin] = ACTIONS(631), - }, - [52] = { - [sym__inline_without_trailing_space] = STATE(1026), - [sym__element] = STATE(536), - [sym_emphasis] = STATE(138), - [sym_emphasis_begin] = STATE(1092), - [sym_strong] = STATE(138), - [sym_strong_begin] = STATE(1093), - [sym_superscript] = STATE(138), - [sym_superscript_begin] = STATE(1094), - [sym_subscript] = STATE(138), - [sym_subscript_begin] = STATE(1095), - [sym_highlighted] = STATE(138), - [sym_highlighted_begin] = STATE(1096), - [sym_insert] = STATE(138), - [sym_insert_begin] = STATE(1097), - [sym_delete] = STATE(138), - [sym_delete_begin] = STATE(1098), - [sym_hard_line_break] = STATE(138), - [sym__smart_punctuation] = STATE(138), - [sym_autolink] = STATE(138), - [sym_footnote_reference] = STATE(138), - [sym_footnote_marker_begin] = STATE(1099), - [sym__image] = STATE(138), - [sym_full_reference_image] = STATE(138), - [sym_collapsed_reference_image] = STATE(138), - [sym_inline_image] = STATE(138), - [sym_image_description] = STATE(626), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(138), - [sym_full_reference_link] = STATE(138), - [sym_collapsed_reference_link] = STATE(138), - [sym_inline_link] = STATE(138), - [sym_link_text] = STATE(627), - [sym_span] = STATE(536), - [sym__bracketed_text_begin] = STATE(1183), - [sym__comment_with_spaces] = STATE(138), - [sym_raw_inline] = STATE(138), - [sym_math] = STATE(138), - [sym_verbatim] = STATE(138), - [sym__todo_highlights] = STATE(138), - [sym_todo] = STATE(138), - [sym_note] = STATE(138), - [sym__symbol_fallback] = STATE(138), - [aux_sym__text] = STATE(127), - [aux_sym__inline_repeat1] = STATE(118), - [anon_sym_LBRACE_] = ACTIONS(149), - [anon_sym__] = ACTIONS(151), - [anon_sym_LBRACE_STAR] = ACTIONS(153), - [anon_sym_STAR] = ACTIONS(155), - [anon_sym_LBRACE_CARET] = ACTIONS(157), - [anon_sym_CARET] = ACTIONS(157), - [anon_sym_LBRACE_TILDE] = ACTIONS(159), - [anon_sym_TILDE] = ACTIONS(159), - [anon_sym_LBRACE_EQ] = ACTIONS(161), - [anon_sym_LBRACE_PLUS] = ACTIONS(163), - [anon_sym_LBRACE_DASH] = ACTIONS(165), - [anon_sym_BSLASH] = ACTIONS(167), - [sym_quotation_marks] = ACTIONS(169), - [sym_ellipsis] = ACTIONS(169), - [sym_em_dash] = ACTIONS(169), - [sym_en_dash] = ACTIONS(171), - [sym_backslash_escape] = ACTIONS(171), - [anon_sym_LT] = ACTIONS(173), - [sym_symbol] = ACTIONS(169), - [anon_sym_LBRACK_CARET] = ACTIONS(175), - [anon_sym_BANG_LBRACK] = ACTIONS(177), - [anon_sym_LBRACK] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(181), - [anon_sym_DOLLAR] = ACTIONS(183), - [anon_sym_TODO] = ACTIONS(185), - [anon_sym_WIP] = ACTIONS(185), - [anon_sym_NOTE] = ACTIONS(187), - [anon_sym_INFO] = ACTIONS(187), - [anon_sym_XXX] = ACTIONS(187), - [sym_fixme] = ACTIONS(169), - [sym__whitespace1] = ACTIONS(189), - [sym__newline] = ACTIONS(191), - [aux_sym__text_token1] = ACTIONS(193), - [sym__verbatim_begin] = ACTIONS(195), - }, - [53] = { - [sym__inline] = STATE(1025), - [sym__element] = STATE(106), - [sym_emphasis] = STATE(139), - [sym_emphasis_begin] = STATE(1102), - [sym_strong] = STATE(139), - [sym_strong_begin] = STATE(1103), - [sym_superscript] = STATE(139), - [sym_superscript_begin] = STATE(1104), - [sym_subscript] = STATE(139), - [sym_subscript_begin] = STATE(1105), - [sym_highlighted] = STATE(139), - [sym_highlighted_begin] = STATE(1106), - [sym_insert] = STATE(139), - [sym_insert_begin] = STATE(1107), - [sym_delete] = STATE(139), - [sym_delete_begin] = STATE(1108), - [sym_hard_line_break] = STATE(139), - [sym__smart_punctuation] = STATE(139), - [sym_autolink] = STATE(139), - [sym_footnote_reference] = STATE(139), - [sym_footnote_marker_begin] = STATE(1109), - [sym__image] = STATE(139), - [sym_full_reference_image] = STATE(139), - [sym_collapsed_reference_image] = STATE(139), - [sym_inline_image] = STATE(139), - [sym_image_description] = STATE(623), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(139), - [sym_full_reference_link] = STATE(139), - [sym_collapsed_reference_link] = STATE(139), - [sym_inline_link] = STATE(139), - [sym_link_text] = STATE(621), - [sym_span] = STATE(106), - [sym__bracketed_text_begin] = STATE(1184), - [sym__comment_with_spaces] = STATE(139), - [sym_raw_inline] = STATE(139), - [sym_math] = STATE(139), - [sym_verbatim] = STATE(139), - [sym__todo_highlights] = STATE(139), - [sym_todo] = STATE(139), - [sym_note] = STATE(139), - [sym__symbol_fallback] = STATE(139), + [49] = { + [sym__element] = STATE(49), + [sym_emphasis] = STATE(132), + [sym_emphasis_begin] = STATE(1164), + [sym_strong] = STATE(132), + [sym_strong_begin] = STATE(1165), + [sym_superscript] = STATE(132), + [sym_superscript_begin] = STATE(1166), + [sym_subscript] = STATE(132), + [sym_subscript_begin] = STATE(1167), + [sym_highlighted] = STATE(132), + [sym_highlighted_begin] = STATE(1168), + [sym_insert] = STATE(132), + [sym_insert_begin] = STATE(1169), + [sym_delete] = STATE(132), + [sym_delete_begin] = STATE(1170), + [sym_hard_line_break] = STATE(142), + [sym__smart_punctuation] = STATE(142), + [sym_autolink] = STATE(142), + [sym_footnote_reference] = STATE(132), + [sym_footnote_marker_begin] = STATE(1171), + [sym__image] = STATE(132), + [sym_full_reference_image] = STATE(132), + [sym_collapsed_reference_image] = STATE(132), + [sym_inline_image] = STATE(132), + [sym_image_description] = STATE(660), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(132), + [sym_full_reference_link] = STATE(132), + [sym_collapsed_reference_link] = STATE(132), + [sym_inline_link] = STATE(132), + [sym_link_text] = STATE(659), + [sym_span] = STATE(49), + [sym__bracketed_text_begin] = STATE(1210), + [sym__comment_with_spaces] = STATE(142), + [sym_raw_inline] = STATE(142), + [sym_math] = STATE(142), + [sym_verbatim] = STATE(142), + [sym__todo_highlights] = STATE(142), + [sym_todo] = STATE(142), + [sym_note] = STATE(142), + [sym__symbol_fallback] = STATE(142), [aux_sym__text] = STATE(126), - [aux_sym__inline_repeat1] = STATE(106), - [anon_sym_LBRACE_] = ACTIONS(101), - [anon_sym__] = ACTIONS(103), - [anon_sym_LBRACE_STAR] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_LBRACE_CARET] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(109), - [anon_sym_LBRACE_TILDE] = ACTIONS(111), - [anon_sym_TILDE] = ACTIONS(111), - [anon_sym_LBRACE_EQ] = ACTIONS(113), - [anon_sym_LBRACE_PLUS] = ACTIONS(115), - [anon_sym_LBRACE_DASH] = ACTIONS(117), - [anon_sym_BSLASH] = ACTIONS(119), - [sym_quotation_marks] = ACTIONS(121), - [sym_ellipsis] = ACTIONS(121), - [sym_em_dash] = ACTIONS(121), - [sym_en_dash] = ACTIONS(123), - [sym_backslash_escape] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(125), - [sym_symbol] = ACTIONS(121), - [anon_sym_LBRACK_CARET] = ACTIONS(127), - [anon_sym_BANG_LBRACK] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_TODO] = ACTIONS(137), - [anon_sym_WIP] = ACTIONS(137), - [anon_sym_NOTE] = ACTIONS(139), - [anon_sym_INFO] = ACTIONS(139), - [anon_sym_XXX] = ACTIONS(139), - [sym_fixme] = ACTIONS(121), - [sym__whitespace1] = ACTIONS(141), - [sym__newline] = ACTIONS(143), - [aux_sym__text_token1] = ACTIONS(145), - [sym__verbatim_begin] = ACTIONS(147), - }, - [54] = { - [sym__inline] = STATE(1024), - [sym__element] = STATE(22), - [sym_emphasis] = STATE(137), - [sym_emphasis_begin] = STATE(1112), - [sym_strong] = STATE(137), - [sym_strong_begin] = STATE(1113), - [sym_superscript] = STATE(137), - [sym_superscript_begin] = STATE(1114), - [sym_subscript] = STATE(137), - [sym_subscript_begin] = STATE(1115), - [sym_highlighted] = STATE(137), - [sym_highlighted_begin] = STATE(1116), - [sym_insert] = STATE(137), - [sym_insert_begin] = STATE(1117), - [sym_delete] = STATE(137), - [sym_delete_begin] = STATE(1118), - [sym_hard_line_break] = STATE(137), - [sym__smart_punctuation] = STATE(137), - [sym_autolink] = STATE(137), - [sym_footnote_reference] = STATE(137), - [sym_footnote_marker_begin] = STATE(1119), - [sym__image] = STATE(137), - [sym_full_reference_image] = STATE(137), - [sym_collapsed_reference_image] = STATE(137), - [sym_inline_image] = STATE(137), - [sym_image_description] = STATE(636), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(137), - [sym_full_reference_link] = STATE(137), - [sym_collapsed_reference_link] = STATE(137), - [sym_inline_link] = STATE(137), - [sym_link_text] = STATE(647), - [sym_span] = STATE(22), - [sym__bracketed_text_begin] = STATE(1185), - [sym__comment_with_spaces] = STATE(137), - [sym_raw_inline] = STATE(137), - [sym_math] = STATE(137), - [sym_verbatim] = STATE(137), - [sym__todo_highlights] = STATE(137), - [sym_todo] = STATE(137), - [sym_note] = STATE(137), - [sym__symbol_fallback] = STATE(137), - [aux_sym__text] = STATE(122), - [aux_sym__inline_repeat1] = STATE(22), - [anon_sym_LBRACE_] = ACTIONS(197), - [anon_sym__] = ACTIONS(199), - [anon_sym_LBRACE_STAR] = ACTIONS(201), - [anon_sym_STAR] = ACTIONS(203), - [anon_sym_LBRACE_CARET] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(205), - [anon_sym_LBRACE_TILDE] = ACTIONS(207), - [anon_sym_TILDE] = ACTIONS(207), - [anon_sym_LBRACE_EQ] = ACTIONS(209), - [anon_sym_LBRACE_PLUS] = ACTIONS(211), - [anon_sym_LBRACE_DASH] = ACTIONS(213), - [anon_sym_BSLASH] = ACTIONS(215), - [sym_quotation_marks] = ACTIONS(217), - [sym_ellipsis] = ACTIONS(217), - [sym_em_dash] = ACTIONS(217), - [sym_en_dash] = ACTIONS(219), - [sym_backslash_escape] = ACTIONS(219), - [anon_sym_LT] = ACTIONS(221), - [sym_symbol] = ACTIONS(217), - [anon_sym_LBRACK_CARET] = ACTIONS(223), - [anon_sym_BANG_LBRACK] = ACTIONS(225), - [anon_sym_LBRACK] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_DOLLAR] = ACTIONS(231), - [anon_sym_TODO] = ACTIONS(233), - [anon_sym_WIP] = ACTIONS(233), - [anon_sym_NOTE] = ACTIONS(235), - [anon_sym_INFO] = ACTIONS(235), - [anon_sym_XXX] = ACTIONS(235), - [sym_fixme] = ACTIONS(217), - [sym__whitespace1] = ACTIONS(237), - [sym__newline] = ACTIONS(239), - [aux_sym__text_token1] = ACTIONS(241), - [sym__verbatim_begin] = ACTIONS(243), + [aux_sym__inline_repeat1] = STATE(49), + [anon_sym_LBRACE_] = ACTIONS(787), + [anon_sym__] = ACTIONS(790), + [anon_sym_LBRACE_STAR] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(796), + [anon_sym_LBRACE_CARET] = ACTIONS(799), + [anon_sym_CARET] = ACTIONS(799), + [anon_sym_LBRACE_TILDE] = ACTIONS(802), + [anon_sym_TILDE] = ACTIONS(802), + [anon_sym_LBRACE_EQ] = ACTIONS(805), + [anon_sym_LBRACE_PLUS] = ACTIONS(808), + [anon_sym_LBRACE_DASH] = ACTIONS(811), + [anon_sym_BSLASH] = ACTIONS(814), + [sym_quotation_marks] = ACTIONS(817), + [sym_ellipsis] = ACTIONS(817), + [sym_em_dash] = ACTIONS(817), + [sym_en_dash] = ACTIONS(820), + [sym_backslash_escape] = ACTIONS(820), + [anon_sym_LT] = ACTIONS(823), + [sym_symbol] = ACTIONS(817), + [anon_sym_LBRACK_CARET] = ACTIONS(826), + [anon_sym_BANG_LBRACK] = ACTIONS(829), + [anon_sym_LBRACK] = ACTIONS(832), + [anon_sym_LPAREN] = ACTIONS(835), + [anon_sym_DOLLAR] = ACTIONS(838), + [anon_sym_TODO] = ACTIONS(841), + [anon_sym_WIP] = ACTIONS(841), + [anon_sym_NOTE] = ACTIONS(844), + [anon_sym_INFO] = ACTIONS(844), + [anon_sym_XXX] = ACTIONS(844), + [sym_fixme] = ACTIONS(817), + [sym__whitespace1] = ACTIONS(847), + [sym__newline] = ACTIONS(850), + [aux_sym__text_token1] = ACTIONS(853), + [sym__verbatim_begin] = ACTIONS(856), + [sym_delete_end] = ACTIONS(221), }, - [55] = { - [sym__inline] = STATE(1023), + [50] = { + [sym__inline] = STATE(865), [sym__element] = STATE(14), [sym_emphasis] = STATE(136), - [sym_emphasis_begin] = STATE(1122), + [sym_emphasis_begin] = STATE(1134), [sym_strong] = STATE(136), - [sym_strong_begin] = STATE(1123), + [sym_strong_begin] = STATE(1135), [sym_superscript] = STATE(136), - [sym_superscript_begin] = STATE(1124), + [sym_superscript_begin] = STATE(1136), [sym_subscript] = STATE(136), - [sym_subscript_begin] = STATE(1125), + [sym_subscript_begin] = STATE(1137), [sym_highlighted] = STATE(136), - [sym_highlighted_begin] = STATE(1126), + [sym_highlighted_begin] = STATE(1138), [sym_insert] = STATE(136), - [sym_insert_begin] = STATE(1127), + [sym_insert_begin] = STATE(1139), [sym_delete] = STATE(136), - [sym_delete_begin] = STATE(1128), - [sym_hard_line_break] = STATE(136), - [sym__smart_punctuation] = STATE(136), - [sym_autolink] = STATE(136), + [sym_delete_begin] = STATE(1140), + [sym_hard_line_break] = STATE(134), + [sym__smart_punctuation] = STATE(134), + [sym_autolink] = STATE(134), [sym_footnote_reference] = STATE(136), - [sym_footnote_marker_begin] = STATE(1129), + [sym_footnote_marker_begin] = STATE(1141), [sym__image] = STATE(136), [sym_full_reference_image] = STATE(136), [sym_collapsed_reference_image] = STATE(136), [sym_inline_image] = STATE(136), - [sym_image_description] = STATE(651), - [sym__image_description_begin] = STATE(1057), + [sym_image_description] = STATE(670), + [sym__image_description_begin] = STATE(1079), [sym__link] = STATE(136), [sym_full_reference_link] = STATE(136), [sym_collapsed_reference_link] = STATE(136), [sym_inline_link] = STATE(136), - [sym_link_text] = STATE(650), + [sym_link_text] = STATE(671), [sym_span] = STATE(14), - [sym__bracketed_text_begin] = STATE(1186), - [sym__comment_with_spaces] = STATE(136), - [sym_raw_inline] = STATE(136), - [sym_math] = STATE(136), - [sym_verbatim] = STATE(136), - [sym__todo_highlights] = STATE(136), - [sym_todo] = STATE(136), - [sym_note] = STATE(136), - [sym__symbol_fallback] = STATE(136), - [aux_sym__text] = STATE(130), + [sym__bracketed_text_begin] = STATE(1207), + [sym__comment_with_spaces] = STATE(134), + [sym_raw_inline] = STATE(134), + [sym_math] = STATE(134), + [sym_verbatim] = STATE(134), + [sym__todo_highlights] = STATE(134), + [sym_todo] = STATE(134), + [sym_note] = STATE(134), + [sym__symbol_fallback] = STATE(134), + [aux_sym__text] = STATE(129), [aux_sym__inline_repeat1] = STATE(14), - [anon_sym_LBRACE_] = ACTIONS(319), - [anon_sym__] = ACTIONS(321), - [anon_sym_LBRACE_STAR] = ACTIONS(323), - [anon_sym_STAR] = ACTIONS(325), - [anon_sym_LBRACE_CARET] = ACTIONS(327), - [anon_sym_CARET] = ACTIONS(327), - [anon_sym_LBRACE_TILDE] = ACTIONS(329), - [anon_sym_TILDE] = ACTIONS(329), - [anon_sym_LBRACE_EQ] = ACTIONS(331), - [anon_sym_LBRACE_PLUS] = ACTIONS(333), - [anon_sym_LBRACE_DASH] = ACTIONS(335), - [anon_sym_BSLASH] = ACTIONS(337), - [sym_quotation_marks] = ACTIONS(339), - [sym_ellipsis] = ACTIONS(339), - [sym_em_dash] = ACTIONS(339), - [sym_en_dash] = ACTIONS(341), - [sym_backslash_escape] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(343), - [sym_symbol] = ACTIONS(339), - [anon_sym_LBRACK_CARET] = ACTIONS(345), - [anon_sym_BANG_LBRACK] = ACTIONS(347), - [anon_sym_LBRACK] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(351), - [anon_sym_DOLLAR] = ACTIONS(353), - [anon_sym_TODO] = ACTIONS(355), - [anon_sym_WIP] = ACTIONS(355), - [anon_sym_NOTE] = ACTIONS(357), - [anon_sym_INFO] = ACTIONS(357), - [anon_sym_XXX] = ACTIONS(357), - [sym_fixme] = ACTIONS(339), - [sym__whitespace1] = ACTIONS(359), + [anon_sym_LBRACE_] = ACTIONS(295), + [anon_sym__] = ACTIONS(297), + [anon_sym_LBRACE_STAR] = ACTIONS(299), + [anon_sym_STAR] = ACTIONS(301), + [anon_sym_LBRACE_CARET] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(303), + [anon_sym_LBRACE_TILDE] = ACTIONS(305), + [anon_sym_TILDE] = ACTIONS(305), + [anon_sym_LBRACE_EQ] = ACTIONS(307), + [anon_sym_LBRACE_PLUS] = ACTIONS(309), + [anon_sym_LBRACE_DASH] = ACTIONS(311), + [anon_sym_BSLASH] = ACTIONS(313), + [sym_quotation_marks] = ACTIONS(315), + [sym_ellipsis] = ACTIONS(315), + [sym_em_dash] = ACTIONS(315), + [sym_en_dash] = ACTIONS(317), + [sym_backslash_escape] = ACTIONS(317), + [anon_sym_LT] = ACTIONS(319), + [sym_symbol] = ACTIONS(315), + [anon_sym_LBRACK_CARET] = ACTIONS(321), + [anon_sym_BANG_LBRACK] = ACTIONS(323), + [anon_sym_LBRACK] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(327), + [anon_sym_DOLLAR] = ACTIONS(329), + [anon_sym_TODO] = ACTIONS(331), + [anon_sym_WIP] = ACTIONS(331), + [anon_sym_NOTE] = ACTIONS(333), + [anon_sym_INFO] = ACTIONS(333), + [anon_sym_XXX] = ACTIONS(333), + [sym_fixme] = ACTIONS(315), + [sym__whitespace1] = ACTIONS(335), [sym__newline] = ACTIONS(635), - [aux_sym__text_token1] = ACTIONS(363), - [sym__verbatim_begin] = ACTIONS(365), + [aux_sym__text_token1] = ACTIONS(339), + [sym__verbatim_begin] = ACTIONS(341), }, - [56] = { - [sym__inline] = STATE(1022), - [sym__element] = STATE(37), - [sym_emphasis] = STATE(131), - [sym_emphasis_begin] = STATE(1132), - [sym_strong] = STATE(131), - [sym_strong_begin] = STATE(1133), - [sym_superscript] = STATE(131), - [sym_superscript_begin] = STATE(1134), - [sym_subscript] = STATE(131), - [sym_subscript_begin] = STATE(1135), - [sym_highlighted] = STATE(131), - [sym_highlighted_begin] = STATE(1136), - [sym_insert] = STATE(131), - [sym_insert_begin] = STATE(1137), - [sym_delete] = STATE(131), - [sym_delete_begin] = STATE(1138), - [sym_hard_line_break] = STATE(131), - [sym__smart_punctuation] = STATE(131), - [sym_autolink] = STATE(131), - [sym_footnote_reference] = STATE(131), - [sym_footnote_marker_begin] = STATE(1139), - [sym__image] = STATE(131), - [sym_full_reference_image] = STATE(131), - [sym_collapsed_reference_image] = STATE(131), - [sym_inline_image] = STATE(131), - [sym_image_description] = STATE(643), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(131), - [sym_full_reference_link] = STATE(131), - [sym_collapsed_reference_link] = STATE(131), - [sym_inline_link] = STATE(131), - [sym_link_text] = STATE(619), - [sym_span] = STATE(37), - [sym__bracketed_text_begin] = STATE(1187), - [sym__comment_with_spaces] = STATE(131), - [sym_raw_inline] = STATE(131), - [sym_math] = STATE(131), - [sym_verbatim] = STATE(131), - [sym__todo_highlights] = STATE(131), - [sym_todo] = STATE(131), - [sym_note] = STATE(131), - [sym__symbol_fallback] = STATE(131), - [aux_sym__text] = STATE(123), - [aux_sym__inline_repeat1] = STATE(37), + [51] = { + [sym__inline] = STATE(864), + [sym__element] = STATE(64), + [sym_emphasis] = STATE(133), + [sym_emphasis_begin] = STATE(1124), + [sym_strong] = STATE(133), + [sym_strong_begin] = STATE(1125), + [sym_superscript] = STATE(133), + [sym_superscript_begin] = STATE(1126), + [sym_subscript] = STATE(133), + [sym_subscript_begin] = STATE(1127), + [sym_highlighted] = STATE(133), + [sym_highlighted_begin] = STATE(1128), + [sym_insert] = STATE(133), + [sym_insert_begin] = STATE(1129), + [sym_delete] = STATE(133), + [sym_delete_begin] = STATE(1130), + [sym_hard_line_break] = STATE(140), + [sym__smart_punctuation] = STATE(140), + [sym_autolink] = STATE(140), + [sym_footnote_reference] = STATE(133), + [sym_footnote_marker_begin] = STATE(1131), + [sym__image] = STATE(133), + [sym_full_reference_image] = STATE(133), + [sym_collapsed_reference_image] = STATE(133), + [sym_inline_image] = STATE(133), + [sym_image_description] = STATE(663), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(133), + [sym_full_reference_link] = STATE(133), + [sym_collapsed_reference_link] = STATE(133), + [sym_inline_link] = STATE(133), + [sym_link_text] = STATE(669), + [sym_span] = STATE(64), + [sym__bracketed_text_begin] = STATE(1206), + [sym__comment_with_spaces] = STATE(140), + [sym_raw_inline] = STATE(140), + [sym_math] = STATE(140), + [sym_verbatim] = STATE(140), + [sym__todo_highlights] = STATE(140), + [sym_todo] = STATE(140), + [sym_note] = STATE(140), + [sym__symbol_fallback] = STATE(140), + [aux_sym__text] = STATE(122), + [aux_sym__inline_repeat1] = STATE(64), [anon_sym_LBRACE_] = ACTIONS(537), [anon_sym__] = ACTIONS(539), [anon_sym_LBRACE_STAR] = ACTIONS(541), @@ -9653,51 +9297,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token1] = ACTIONS(581), [sym__verbatim_begin] = ACTIONS(583), }, - [57] = { - [sym__inline] = STATE(1014), - [sym__element] = STATE(65), - [sym_emphasis] = STATE(133), - [sym_emphasis_begin] = STATE(1142), - [sym_strong] = STATE(133), - [sym_strong_begin] = STATE(1143), - [sym_superscript] = STATE(133), - [sym_superscript_begin] = STATE(1144), - [sym_subscript] = STATE(133), - [sym_subscript_begin] = STATE(1145), - [sym_highlighted] = STATE(133), - [sym_highlighted_begin] = STATE(1146), - [sym_insert] = STATE(133), - [sym_insert_begin] = STATE(1147), - [sym_delete] = STATE(133), - [sym_delete_begin] = STATE(1148), - [sym_hard_line_break] = STATE(133), - [sym__smart_punctuation] = STATE(133), - [sym_autolink] = STATE(133), - [sym_footnote_reference] = STATE(133), - [sym_footnote_marker_begin] = STATE(1149), - [sym__image] = STATE(133), - [sym_full_reference_image] = STATE(133), - [sym_collapsed_reference_image] = STATE(133), - [sym_inline_image] = STATE(133), - [sym_image_description] = STATE(638), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(133), - [sym_full_reference_link] = STATE(133), - [sym_collapsed_reference_link] = STATE(133), - [sym_inline_link] = STATE(133), - [sym_link_text] = STATE(637), - [sym_span] = STATE(65), - [sym__bracketed_text_begin] = STATE(1188), - [sym__comment_with_spaces] = STATE(133), - [sym_raw_inline] = STATE(133), - [sym_math] = STATE(133), - [sym_verbatim] = STATE(133), - [sym__todo_highlights] = STATE(133), - [sym_todo] = STATE(133), - [sym_note] = STATE(133), - [sym__symbol_fallback] = STATE(133), - [aux_sym__text] = STATE(129), - [aux_sym__inline_repeat1] = STATE(65), + [52] = { + [sym__inline_without_trailing_space] = STATE(880), + [sym__element] = STATE(550), + [sym_emphasis] = STATE(137), + [sym_emphasis_begin] = STATE(1114), + [sym_strong] = STATE(137), + [sym_strong_begin] = STATE(1115), + [sym_superscript] = STATE(137), + [sym_superscript_begin] = STATE(1116), + [sym_subscript] = STATE(137), + [sym_subscript_begin] = STATE(1117), + [sym_highlighted] = STATE(137), + [sym_highlighted_begin] = STATE(1118), + [sym_insert] = STATE(137), + [sym_insert_begin] = STATE(1119), + [sym_delete] = STATE(137), + [sym_delete_begin] = STATE(1120), + [sym_hard_line_break] = STATE(131), + [sym__smart_punctuation] = STATE(131), + [sym_autolink] = STATE(131), + [sym_footnote_reference] = STATE(137), + [sym_footnote_marker_begin] = STATE(1121), + [sym__image] = STATE(137), + [sym_full_reference_image] = STATE(137), + [sym_collapsed_reference_image] = STATE(137), + [sym_inline_image] = STATE(137), + [sym_image_description] = STATE(649), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(137), + [sym_full_reference_link] = STATE(137), + [sym_collapsed_reference_link] = STATE(137), + [sym_inline_link] = STATE(137), + [sym_link_text] = STATE(650), + [sym_span] = STATE(550), + [sym__bracketed_text_begin] = STATE(1205), + [sym__comment_with_spaces] = STATE(131), + [sym_raw_inline] = STATE(131), + [sym_math] = STATE(131), + [sym_verbatim] = STATE(131), + [sym__todo_highlights] = STATE(131), + [sym_todo] = STATE(131), + [sym_note] = STATE(131), + [sym__symbol_fallback] = STATE(131), + [aux_sym__text] = STATE(130), + [aux_sym__inline_repeat1] = STATE(119), [anon_sym_LBRACE_] = ACTIONS(489), [anon_sym__] = ACTIONS(491), [anon_sym_LBRACE_STAR] = ACTIONS(493), @@ -9733,211 +9377,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token1] = ACTIONS(533), [sym__verbatim_begin] = ACTIONS(535), }, - [58] = { - [sym__inline_without_trailing_space] = STATE(841), - [sym__element] = STATE(536), - [sym_emphasis] = STATE(138), - [sym_emphasis_begin] = STATE(1092), - [sym_strong] = STATE(138), - [sym_strong_begin] = STATE(1093), - [sym_superscript] = STATE(138), - [sym_superscript_begin] = STATE(1094), - [sym_subscript] = STATE(138), - [sym_subscript_begin] = STATE(1095), - [sym_highlighted] = STATE(138), - [sym_highlighted_begin] = STATE(1096), - [sym_insert] = STATE(138), - [sym_insert_begin] = STATE(1097), - [sym_delete] = STATE(138), - [sym_delete_begin] = STATE(1098), - [sym_hard_line_break] = STATE(138), - [sym__smart_punctuation] = STATE(138), - [sym_autolink] = STATE(138), - [sym_footnote_reference] = STATE(138), - [sym_footnote_marker_begin] = STATE(1099), - [sym__image] = STATE(138), - [sym_full_reference_image] = STATE(138), - [sym_collapsed_reference_image] = STATE(138), - [sym_inline_image] = STATE(138), - [sym_image_description] = STATE(626), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(138), - [sym_full_reference_link] = STATE(138), - [sym_collapsed_reference_link] = STATE(138), - [sym_inline_link] = STATE(138), - [sym_link_text] = STATE(627), - [sym_span] = STATE(536), - [sym__bracketed_text_begin] = STATE(1183), - [sym__comment_with_spaces] = STATE(138), - [sym_raw_inline] = STATE(138), - [sym_math] = STATE(138), - [sym_verbatim] = STATE(138), - [sym__todo_highlights] = STATE(138), - [sym_todo] = STATE(138), - [sym_note] = STATE(138), - [sym__symbol_fallback] = STATE(138), + [53] = { + [sym__inline_without_trailing_space] = STATE(1049), + [sym__element] = STATE(594), + [sym_emphasis] = STATE(149), + [sym_emphasis_begin] = STATE(1104), + [sym_strong] = STATE(149), + [sym_strong_begin] = STATE(1105), + [sym_superscript] = STATE(149), + [sym_superscript_begin] = STATE(1106), + [sym_subscript] = STATE(149), + [sym_subscript_begin] = STATE(1107), + [sym_highlighted] = STATE(149), + [sym_highlighted_begin] = STATE(1108), + [sym_insert] = STATE(149), + [sym_insert_begin] = STATE(1109), + [sym_delete] = STATE(149), + [sym_delete_begin] = STATE(1110), + [sym_hard_line_break] = STATE(143), + [sym__smart_punctuation] = STATE(143), + [sym_autolink] = STATE(143), + [sym_footnote_reference] = STATE(149), + [sym_footnote_marker_begin] = STATE(1111), + [sym__image] = STATE(149), + [sym_full_reference_image] = STATE(149), + [sym_collapsed_reference_image] = STATE(149), + [sym_inline_image] = STATE(149), + [sym_image_description] = STATE(658), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(149), + [sym_full_reference_link] = STATE(149), + [sym_collapsed_reference_link] = STATE(149), + [sym_inline_link] = STATE(149), + [sym_link_text] = STATE(672), + [sym_span] = STATE(594), + [sym__bracketed_text_begin] = STATE(1204), + [sym__comment_with_spaces] = STATE(143), + [sym_raw_inline] = STATE(143), + [sym_math] = STATE(143), + [sym_verbatim] = STATE(143), + [sym__todo_highlights] = STATE(143), + [sym_todo] = STATE(143), + [sym_note] = STATE(143), + [sym__symbol_fallback] = STATE(143), [aux_sym__text] = STATE(127), - [aux_sym__inline_repeat1] = STATE(118), - [anon_sym_LBRACE_] = ACTIONS(149), - [anon_sym__] = ACTIONS(151), - [anon_sym_LBRACE_STAR] = ACTIONS(153), - [anon_sym_STAR] = ACTIONS(155), - [anon_sym_LBRACE_CARET] = ACTIONS(157), - [anon_sym_CARET] = ACTIONS(157), - [anon_sym_LBRACE_TILDE] = ACTIONS(159), - [anon_sym_TILDE] = ACTIONS(159), - [anon_sym_LBRACE_EQ] = ACTIONS(161), - [anon_sym_LBRACE_PLUS] = ACTIONS(163), - [anon_sym_LBRACE_DASH] = ACTIONS(165), - [anon_sym_BSLASH] = ACTIONS(167), - [sym_quotation_marks] = ACTIONS(169), - [sym_ellipsis] = ACTIONS(169), - [sym_em_dash] = ACTIONS(169), - [sym_en_dash] = ACTIONS(171), - [sym_backslash_escape] = ACTIONS(171), - [anon_sym_LT] = ACTIONS(173), - [sym_symbol] = ACTIONS(169), - [anon_sym_LBRACK_CARET] = ACTIONS(175), - [anon_sym_BANG_LBRACK] = ACTIONS(177), - [anon_sym_LBRACK] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(181), - [anon_sym_DOLLAR] = ACTIONS(183), - [anon_sym_TODO] = ACTIONS(185), - [anon_sym_WIP] = ACTIONS(185), - [anon_sym_NOTE] = ACTIONS(187), - [anon_sym_INFO] = ACTIONS(187), - [anon_sym_XXX] = ACTIONS(187), - [sym_fixme] = ACTIONS(169), - [sym__whitespace1] = ACTIONS(189), - [sym__newline] = ACTIONS(191), - [aux_sym__text_token1] = ACTIONS(193), - [sym__verbatim_begin] = ACTIONS(195), - }, - [59] = { - [sym__inline_without_trailing_space] = STATE(856), - [sym__element] = STATE(581), - [sym_emphasis] = STATE(141), - [sym_emphasis_begin] = STATE(1082), - [sym_strong] = STATE(141), - [sym_strong_begin] = STATE(1083), - [sym_superscript] = STATE(141), - [sym_superscript_begin] = STATE(1084), - [sym_subscript] = STATE(141), - [sym_subscript_begin] = STATE(1085), - [sym_highlighted] = STATE(141), - [sym_highlighted_begin] = STATE(1086), - [sym_insert] = STATE(141), - [sym_insert_begin] = STATE(1087), - [sym_delete] = STATE(141), - [sym_delete_begin] = STATE(1088), - [sym_hard_line_break] = STATE(141), - [sym__smart_punctuation] = STATE(141), - [sym_autolink] = STATE(141), - [sym_footnote_reference] = STATE(141), - [sym_footnote_marker_begin] = STATE(1089), - [sym__image] = STATE(141), - [sym_full_reference_image] = STATE(141), - [sym_collapsed_reference_image] = STATE(141), - [sym_inline_image] = STATE(141), - [sym_image_description] = STATE(642), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(141), - [sym_full_reference_link] = STATE(141), - [sym_collapsed_reference_link] = STATE(141), - [sym_inline_link] = STATE(141), - [sym_link_text] = STATE(629), - [sym_span] = STATE(581), - [sym__bracketed_text_begin] = STATE(1182), - [sym__comment_with_spaces] = STATE(141), - [sym_raw_inline] = STATE(141), - [sym_math] = STATE(141), - [sym_verbatim] = STATE(141), - [sym__todo_highlights] = STATE(141), - [sym_todo] = STATE(141), - [sym_note] = STATE(141), - [sym__symbol_fallback] = STATE(141), - [aux_sym__text] = STATE(125), - [aux_sym__inline_repeat1] = STATE(119), - [anon_sym_LBRACE_] = ACTIONS(585), - [anon_sym__] = ACTIONS(587), - [anon_sym_LBRACE_STAR] = ACTIONS(589), - [anon_sym_STAR] = ACTIONS(591), - [anon_sym_LBRACE_CARET] = ACTIONS(593), - [anon_sym_CARET] = ACTIONS(593), - [anon_sym_LBRACE_TILDE] = ACTIONS(595), - [anon_sym_TILDE] = ACTIONS(595), - [anon_sym_LBRACE_EQ] = ACTIONS(597), - [anon_sym_LBRACE_PLUS] = ACTIONS(599), - [anon_sym_LBRACE_DASH] = ACTIONS(601), - [anon_sym_BSLASH] = ACTIONS(603), - [sym_quotation_marks] = ACTIONS(605), - [sym_ellipsis] = ACTIONS(605), - [sym_em_dash] = ACTIONS(605), - [sym_en_dash] = ACTIONS(607), - [sym_backslash_escape] = ACTIONS(607), - [anon_sym_LT] = ACTIONS(609), - [sym_symbol] = ACTIONS(605), - [anon_sym_LBRACK_CARET] = ACTIONS(611), - [anon_sym_BANG_LBRACK] = ACTIONS(613), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_DOLLAR] = ACTIONS(619), - [anon_sym_TODO] = ACTIONS(621), - [anon_sym_WIP] = ACTIONS(621), - [anon_sym_NOTE] = ACTIONS(623), - [anon_sym_INFO] = ACTIONS(623), - [anon_sym_XXX] = ACTIONS(623), - [sym_fixme] = ACTIONS(605), - [sym__whitespace1] = ACTIONS(625), - [sym__newline] = ACTIONS(627), - [aux_sym__text_token1] = ACTIONS(629), - [sym__verbatim_begin] = ACTIONS(631), - }, - [60] = { - [sym__inline] = STATE(1010), - [sym__element] = STATE(71), - [sym_emphasis] = STATE(132), - [sym_emphasis_begin] = STATE(1152), - [sym_strong] = STATE(132), - [sym_strong_begin] = STATE(1153), - [sym_superscript] = STATE(132), - [sym_superscript_begin] = STATE(1154), - [sym_subscript] = STATE(132), - [sym_subscript_begin] = STATE(1155), - [sym_highlighted] = STATE(132), - [sym_highlighted_begin] = STATE(1156), - [sym_insert] = STATE(132), - [sym_insert_begin] = STATE(1157), - [sym_delete] = STATE(132), - [sym_delete_begin] = STATE(1158), - [sym_hard_line_break] = STATE(132), - [sym__smart_punctuation] = STATE(132), - [sym_autolink] = STATE(132), - [sym_footnote_reference] = STATE(132), - [sym_footnote_marker_begin] = STATE(1159), - [sym__image] = STATE(132), - [sym_full_reference_image] = STATE(132), - [sym_collapsed_reference_image] = STATE(132), - [sym_inline_image] = STATE(132), - [sym_image_description] = STATE(633), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(132), - [sym_full_reference_link] = STATE(132), - [sym_collapsed_reference_link] = STATE(132), - [sym_inline_link] = STATE(132), - [sym_link_text] = STATE(631), - [sym_span] = STATE(71), - [sym__bracketed_text_begin] = STATE(1189), - [sym__comment_with_spaces] = STATE(132), - [sym_raw_inline] = STATE(132), - [sym_math] = STATE(132), - [sym_verbatim] = STATE(132), - [sym__todo_highlights] = STATE(132), - [sym_todo] = STATE(132), - [sym_note] = STATE(132), - [sym__symbol_fallback] = STATE(132), - [aux_sym__text] = STATE(128), - [aux_sym__inline_repeat1] = STATE(71), + [aux_sym__inline_repeat1] = STATE(120), [anon_sym_LBRACE_] = ACTIONS(441), [anon_sym__] = ACTIONS(443), [anon_sym_LBRACE_STAR] = ACTIONS(445), @@ -9973,370 +9457,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token1] = ACTIONS(485), [sym__verbatim_begin] = ACTIONS(487), }, - [61] = { - [sym__inline_without_trailing_space] = STATE(858), - [sym__element] = STATE(536), - [sym_emphasis] = STATE(138), - [sym_emphasis_begin] = STATE(1092), - [sym_strong] = STATE(138), - [sym_strong_begin] = STATE(1093), - [sym_superscript] = STATE(138), - [sym_superscript_begin] = STATE(1094), - [sym_subscript] = STATE(138), - [sym_subscript_begin] = STATE(1095), - [sym_highlighted] = STATE(138), - [sym_highlighted_begin] = STATE(1096), - [sym_insert] = STATE(138), - [sym_insert_begin] = STATE(1097), - [sym_delete] = STATE(138), - [sym_delete_begin] = STATE(1098), - [sym_hard_line_break] = STATE(138), - [sym__smart_punctuation] = STATE(138), - [sym_autolink] = STATE(138), - [sym_footnote_reference] = STATE(138), - [sym_footnote_marker_begin] = STATE(1099), - [sym__image] = STATE(138), - [sym_full_reference_image] = STATE(138), - [sym_collapsed_reference_image] = STATE(138), - [sym_inline_image] = STATE(138), - [sym_image_description] = STATE(626), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(138), - [sym_full_reference_link] = STATE(138), - [sym_collapsed_reference_link] = STATE(138), - [sym_inline_link] = STATE(138), - [sym_link_text] = STATE(627), - [sym_span] = STATE(536), - [sym__bracketed_text_begin] = STATE(1183), - [sym__comment_with_spaces] = STATE(138), - [sym_raw_inline] = STATE(138), - [sym_math] = STATE(138), - [sym_verbatim] = STATE(138), - [sym__todo_highlights] = STATE(138), - [sym_todo] = STATE(138), - [sym_note] = STATE(138), - [sym__symbol_fallback] = STATE(138), - [aux_sym__text] = STATE(127), - [aux_sym__inline_repeat1] = STATE(118), - [anon_sym_LBRACE_] = ACTIONS(149), - [anon_sym__] = ACTIONS(151), - [anon_sym_LBRACE_STAR] = ACTIONS(153), - [anon_sym_STAR] = ACTIONS(155), - [anon_sym_LBRACE_CARET] = ACTIONS(157), - [anon_sym_CARET] = ACTIONS(157), - [anon_sym_LBRACE_TILDE] = ACTIONS(159), - [anon_sym_TILDE] = ACTIONS(159), - [anon_sym_LBRACE_EQ] = ACTIONS(161), - [anon_sym_LBRACE_PLUS] = ACTIONS(163), - [anon_sym_LBRACE_DASH] = ACTIONS(165), - [anon_sym_BSLASH] = ACTIONS(167), - [sym_quotation_marks] = ACTIONS(169), - [sym_ellipsis] = ACTIONS(169), - [sym_em_dash] = ACTIONS(169), - [sym_en_dash] = ACTIONS(171), - [sym_backslash_escape] = ACTIONS(171), - [anon_sym_LT] = ACTIONS(173), - [sym_symbol] = ACTIONS(169), - [anon_sym_LBRACK_CARET] = ACTIONS(175), - [anon_sym_BANG_LBRACK] = ACTIONS(177), - [anon_sym_LBRACK] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(181), - [anon_sym_DOLLAR] = ACTIONS(183), - [anon_sym_TODO] = ACTIONS(185), - [anon_sym_WIP] = ACTIONS(185), - [anon_sym_NOTE] = ACTIONS(187), - [anon_sym_INFO] = ACTIONS(187), - [anon_sym_XXX] = ACTIONS(187), - [sym_fixme] = ACTIONS(169), - [sym__whitespace1] = ACTIONS(189), - [sym__newline] = ACTIONS(191), - [aux_sym__text_token1] = ACTIONS(193), - [sym__verbatim_begin] = ACTIONS(195), - }, - [62] = { - [sym__inline] = STATE(885), - [sym__element] = STATE(106), - [sym_emphasis] = STATE(139), - [sym_emphasis_begin] = STATE(1102), - [sym_strong] = STATE(139), - [sym_strong_begin] = STATE(1103), - [sym_superscript] = STATE(139), - [sym_superscript_begin] = STATE(1104), - [sym_subscript] = STATE(139), - [sym_subscript_begin] = STATE(1105), - [sym_highlighted] = STATE(139), - [sym_highlighted_begin] = STATE(1106), - [sym_insert] = STATE(139), - [sym_insert_begin] = STATE(1107), - [sym_delete] = STATE(139), - [sym_delete_begin] = STATE(1108), - [sym_hard_line_break] = STATE(139), - [sym__smart_punctuation] = STATE(139), - [sym_autolink] = STATE(139), - [sym_footnote_reference] = STATE(139), - [sym_footnote_marker_begin] = STATE(1109), - [sym__image] = STATE(139), - [sym_full_reference_image] = STATE(139), - [sym_collapsed_reference_image] = STATE(139), - [sym_inline_image] = STATE(139), - [sym_image_description] = STATE(623), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(139), - [sym_full_reference_link] = STATE(139), - [sym_collapsed_reference_link] = STATE(139), - [sym_inline_link] = STATE(139), - [sym_link_text] = STATE(621), - [sym_span] = STATE(106), - [sym__bracketed_text_begin] = STATE(1184), - [sym__comment_with_spaces] = STATE(139), - [sym_raw_inline] = STATE(139), - [sym_math] = STATE(139), - [sym_verbatim] = STATE(139), - [sym__todo_highlights] = STATE(139), - [sym_todo] = STATE(139), - [sym_note] = STATE(139), - [sym__symbol_fallback] = STATE(139), - [aux_sym__text] = STATE(126), - [aux_sym__inline_repeat1] = STATE(106), - [anon_sym_LBRACE_] = ACTIONS(101), - [anon_sym__] = ACTIONS(103), - [anon_sym_LBRACE_STAR] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_LBRACE_CARET] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(109), - [anon_sym_LBRACE_TILDE] = ACTIONS(111), - [anon_sym_TILDE] = ACTIONS(111), - [anon_sym_LBRACE_EQ] = ACTIONS(113), - [anon_sym_LBRACE_PLUS] = ACTIONS(115), - [anon_sym_LBRACE_DASH] = ACTIONS(117), - [anon_sym_BSLASH] = ACTIONS(119), - [sym_quotation_marks] = ACTIONS(121), - [sym_ellipsis] = ACTIONS(121), - [sym_em_dash] = ACTIONS(121), - [sym_en_dash] = ACTIONS(123), - [sym_backslash_escape] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(125), - [sym_symbol] = ACTIONS(121), - [anon_sym_LBRACK_CARET] = ACTIONS(127), - [anon_sym_BANG_LBRACK] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_TODO] = ACTIONS(137), - [anon_sym_WIP] = ACTIONS(137), - [anon_sym_NOTE] = ACTIONS(139), - [anon_sym_INFO] = ACTIONS(139), - [anon_sym_XXX] = ACTIONS(139), - [sym_fixme] = ACTIONS(121), - [sym__whitespace1] = ACTIONS(141), - [sym__newline] = ACTIONS(143), - [aux_sym__text_token1] = ACTIONS(145), - [sym__verbatim_begin] = ACTIONS(147), - }, - [63] = { - [sym__inline_without_trailing_space] = STATE(840), - [sym__element] = STATE(581), - [sym_emphasis] = STATE(141), - [sym_emphasis_begin] = STATE(1082), - [sym_strong] = STATE(141), - [sym_strong_begin] = STATE(1083), - [sym_superscript] = STATE(141), - [sym_superscript_begin] = STATE(1084), - [sym_subscript] = STATE(141), - [sym_subscript_begin] = STATE(1085), - [sym_highlighted] = STATE(141), - [sym_highlighted_begin] = STATE(1086), - [sym_insert] = STATE(141), - [sym_insert_begin] = STATE(1087), - [sym_delete] = STATE(141), - [sym_delete_begin] = STATE(1088), - [sym_hard_line_break] = STATE(141), - [sym__smart_punctuation] = STATE(141), - [sym_autolink] = STATE(141), - [sym_footnote_reference] = STATE(141), - [sym_footnote_marker_begin] = STATE(1089), - [sym__image] = STATE(141), - [sym_full_reference_image] = STATE(141), - [sym_collapsed_reference_image] = STATE(141), - [sym_inline_image] = STATE(141), - [sym_image_description] = STATE(642), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(141), - [sym_full_reference_link] = STATE(141), - [sym_collapsed_reference_link] = STATE(141), - [sym_inline_link] = STATE(141), - [sym_link_text] = STATE(629), - [sym_span] = STATE(581), - [sym__bracketed_text_begin] = STATE(1182), - [sym__comment_with_spaces] = STATE(141), - [sym_raw_inline] = STATE(141), - [sym_math] = STATE(141), - [sym_verbatim] = STATE(141), - [sym__todo_highlights] = STATE(141), - [sym_todo] = STATE(141), - [sym_note] = STATE(141), - [sym__symbol_fallback] = STATE(141), - [aux_sym__text] = STATE(125), + [54] = { + [sym__inline_without_trailing_space] = STATE(1048), + [sym__element] = STATE(550), + [sym_emphasis] = STATE(137), + [sym_emphasis_begin] = STATE(1114), + [sym_strong] = STATE(137), + [sym_strong_begin] = STATE(1115), + [sym_superscript] = STATE(137), + [sym_superscript_begin] = STATE(1116), + [sym_subscript] = STATE(137), + [sym_subscript_begin] = STATE(1117), + [sym_highlighted] = STATE(137), + [sym_highlighted_begin] = STATE(1118), + [sym_insert] = STATE(137), + [sym_insert_begin] = STATE(1119), + [sym_delete] = STATE(137), + [sym_delete_begin] = STATE(1120), + [sym_hard_line_break] = STATE(131), + [sym__smart_punctuation] = STATE(131), + [sym_autolink] = STATE(131), + [sym_footnote_reference] = STATE(137), + [sym_footnote_marker_begin] = STATE(1121), + [sym__image] = STATE(137), + [sym_full_reference_image] = STATE(137), + [sym_collapsed_reference_image] = STATE(137), + [sym_inline_image] = STATE(137), + [sym_image_description] = STATE(649), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(137), + [sym_full_reference_link] = STATE(137), + [sym_collapsed_reference_link] = STATE(137), + [sym_inline_link] = STATE(137), + [sym_link_text] = STATE(650), + [sym_span] = STATE(550), + [sym__bracketed_text_begin] = STATE(1205), + [sym__comment_with_spaces] = STATE(131), + [sym_raw_inline] = STATE(131), + [sym_math] = STATE(131), + [sym_verbatim] = STATE(131), + [sym__todo_highlights] = STATE(131), + [sym_todo] = STATE(131), + [sym_note] = STATE(131), + [sym__symbol_fallback] = STATE(131), + [aux_sym__text] = STATE(130), [aux_sym__inline_repeat1] = STATE(119), - [anon_sym_LBRACE_] = ACTIONS(585), - [anon_sym__] = ACTIONS(587), - [anon_sym_LBRACE_STAR] = ACTIONS(589), - [anon_sym_STAR] = ACTIONS(591), - [anon_sym_LBRACE_CARET] = ACTIONS(593), - [anon_sym_CARET] = ACTIONS(593), - [anon_sym_LBRACE_TILDE] = ACTIONS(595), - [anon_sym_TILDE] = ACTIONS(595), - [anon_sym_LBRACE_EQ] = ACTIONS(597), - [anon_sym_LBRACE_PLUS] = ACTIONS(599), - [anon_sym_LBRACE_DASH] = ACTIONS(601), - [anon_sym_BSLASH] = ACTIONS(603), - [sym_quotation_marks] = ACTIONS(605), - [sym_ellipsis] = ACTIONS(605), - [sym_em_dash] = ACTIONS(605), - [sym_en_dash] = ACTIONS(607), - [sym_backslash_escape] = ACTIONS(607), - [anon_sym_LT] = ACTIONS(609), - [sym_symbol] = ACTIONS(605), - [anon_sym_LBRACK_CARET] = ACTIONS(611), - [anon_sym_BANG_LBRACK] = ACTIONS(613), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_DOLLAR] = ACTIONS(619), - [anon_sym_TODO] = ACTIONS(621), - [anon_sym_WIP] = ACTIONS(621), - [anon_sym_NOTE] = ACTIONS(623), - [anon_sym_INFO] = ACTIONS(623), - [anon_sym_XXX] = ACTIONS(623), - [sym_fixme] = ACTIONS(605), - [sym__whitespace1] = ACTIONS(625), - [sym__newline] = ACTIONS(627), - [aux_sym__text_token1] = ACTIONS(629), - [sym__verbatim_begin] = ACTIONS(631), - }, - [64] = { - [sym__inline] = STATE(1080), - [sym__element] = STATE(107), - [sym_emphasis] = STATE(140), - [sym_emphasis_begin] = STATE(1162), - [sym_strong] = STATE(140), - [sym_strong_begin] = STATE(1163), - [sym_superscript] = STATE(140), - [sym_superscript_begin] = STATE(1164), - [sym_subscript] = STATE(140), - [sym_subscript_begin] = STATE(1165), - [sym_highlighted] = STATE(140), - [sym_highlighted_begin] = STATE(1166), - [sym_insert] = STATE(140), - [sym_insert_begin] = STATE(1167), - [sym_delete] = STATE(140), - [sym_delete_begin] = STATE(1168), - [sym_hard_line_break] = STATE(140), - [sym__smart_punctuation] = STATE(140), - [sym_autolink] = STATE(140), - [sym_footnote_reference] = STATE(140), - [sym_footnote_marker_begin] = STATE(1169), - [sym__image] = STATE(140), - [sym_full_reference_image] = STATE(140), - [sym_collapsed_reference_image] = STATE(140), - [sym_inline_image] = STATE(140), - [sym_image_description] = STATE(625), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(140), - [sym_full_reference_link] = STATE(140), - [sym_collapsed_reference_link] = STATE(140), - [sym_inline_link] = STATE(140), - [sym_link_text] = STATE(624), - [sym_span] = STATE(107), - [sym__bracketed_text_begin] = STATE(1190), - [sym__comment_with_spaces] = STATE(140), - [sym_raw_inline] = STATE(140), - [sym_math] = STATE(140), - [sym_verbatim] = STATE(140), - [sym__todo_highlights] = STATE(140), - [sym_todo] = STATE(140), - [sym_note] = STATE(140), - [sym__symbol_fallback] = STATE(140), - [aux_sym__text] = STATE(124), - [aux_sym__inline_repeat1] = STATE(107), - [anon_sym_LBRACE_] = ACTIONS(51), - [anon_sym__] = ACTIONS(53), - [anon_sym_LBRACE_STAR] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(57), - [anon_sym_LBRACE_CARET] = ACTIONS(59), - [anon_sym_CARET] = ACTIONS(59), - [anon_sym_LBRACE_TILDE] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(61), - [anon_sym_LBRACE_EQ] = ACTIONS(63), - [anon_sym_LBRACE_PLUS] = ACTIONS(65), - [anon_sym_LBRACE_DASH] = ACTIONS(67), - [anon_sym_BSLASH] = ACTIONS(69), - [sym_quotation_marks] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(71), - [sym_em_dash] = ACTIONS(71), - [sym_en_dash] = ACTIONS(73), - [sym_backslash_escape] = ACTIONS(73), - [anon_sym_LT] = ACTIONS(75), - [sym_symbol] = ACTIONS(71), - [anon_sym_LBRACK_CARET] = ACTIONS(77), - [anon_sym_BANG_LBRACK] = ACTIONS(79), - [anon_sym_LBRACK] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_TODO] = ACTIONS(87), - [anon_sym_WIP] = ACTIONS(87), - [anon_sym_NOTE] = ACTIONS(89), - [anon_sym_INFO] = ACTIONS(89), - [anon_sym_XXX] = ACTIONS(89), - [sym_fixme] = ACTIONS(71), - [sym__whitespace1] = ACTIONS(91), - [sym__newline] = ACTIONS(93), - [aux_sym__text_token1] = ACTIONS(95), - [sym__verbatim_begin] = ACTIONS(97), - }, - [65] = { - [sym__element] = STATE(81), - [sym_emphasis] = STATE(133), - [sym_emphasis_begin] = STATE(1142), - [sym_strong] = STATE(133), - [sym_strong_begin] = STATE(1143), - [sym_superscript] = STATE(133), - [sym_superscript_begin] = STATE(1144), - [sym_subscript] = STATE(133), - [sym_subscript_begin] = STATE(1145), - [sym_highlighted] = STATE(133), - [sym_highlighted_begin] = STATE(1146), - [sym_insert] = STATE(133), - [sym_insert_begin] = STATE(1147), - [sym_delete] = STATE(133), - [sym_delete_begin] = STATE(1148), - [sym_hard_line_break] = STATE(133), - [sym__smart_punctuation] = STATE(133), - [sym_autolink] = STATE(133), - [sym_footnote_reference] = STATE(133), - [sym_footnote_marker_begin] = STATE(1149), - [sym__image] = STATE(133), - [sym_full_reference_image] = STATE(133), - [sym_collapsed_reference_image] = STATE(133), - [sym_inline_image] = STATE(133), - [sym_image_description] = STATE(638), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(133), - [sym_full_reference_link] = STATE(133), - [sym_collapsed_reference_link] = STATE(133), - [sym_inline_link] = STATE(133), - [sym_link_text] = STATE(637), - [sym_span] = STATE(81), - [sym__bracketed_text_begin] = STATE(1188), - [sym__comment_with_spaces] = STATE(133), - [sym_raw_inline] = STATE(133), - [sym_math] = STATE(133), - [sym_verbatim] = STATE(133), - [sym__todo_highlights] = STATE(133), - [sym_todo] = STATE(133), - [sym_note] = STATE(133), - [sym__symbol_fallback] = STATE(133), - [aux_sym__text] = STATE(129), - [aux_sym__inline_repeat1] = STATE(81), [anon_sym_LBRACE_] = ACTIONS(489), [anon_sym__] = ACTIONS(491), [anon_sym_LBRACE_STAR] = ACTIONS(493), @@ -10368,216 +9533,294 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_XXX] = ACTIONS(527), [sym_fixme] = ACTIONS(509), [sym__whitespace1] = ACTIONS(529), - [sym__newline] = ACTIONS(713), + [sym__newline] = ACTIONS(531), [aux_sym__text_token1] = ACTIONS(533), [sym__verbatim_begin] = ACTIONS(535), - [sym_delete_end] = ACTIONS(367), }, - [66] = { - [sym__inline] = STATE(924), - [sym__element] = STATE(22), - [sym_emphasis] = STATE(137), - [sym_emphasis_begin] = STATE(1112), - [sym_strong] = STATE(137), - [sym_strong_begin] = STATE(1113), - [sym_superscript] = STATE(137), - [sym_superscript_begin] = STATE(1114), - [sym_subscript] = STATE(137), - [sym_subscript_begin] = STATE(1115), - [sym_highlighted] = STATE(137), - [sym_highlighted_begin] = STATE(1116), - [sym_insert] = STATE(137), - [sym_insert_begin] = STATE(1117), - [sym_delete] = STATE(137), - [sym_delete_begin] = STATE(1118), - [sym_hard_line_break] = STATE(137), - [sym__smart_punctuation] = STATE(137), - [sym_autolink] = STATE(137), - [sym_footnote_reference] = STATE(137), - [sym_footnote_marker_begin] = STATE(1119), - [sym__image] = STATE(137), - [sym_full_reference_image] = STATE(137), - [sym_collapsed_reference_image] = STATE(137), - [sym_inline_image] = STATE(137), - [sym_image_description] = STATE(636), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(137), - [sym_full_reference_link] = STATE(137), - [sym_collapsed_reference_link] = STATE(137), - [sym_inline_link] = STATE(137), - [sym_link_text] = STATE(647), - [sym_span] = STATE(22), - [sym__bracketed_text_begin] = STATE(1185), - [sym__comment_with_spaces] = STATE(137), - [sym_raw_inline] = STATE(137), - [sym_math] = STATE(137), - [sym_verbatim] = STATE(137), - [sym__todo_highlights] = STATE(137), - [sym_todo] = STATE(137), - [sym_note] = STATE(137), - [sym__symbol_fallback] = STATE(137), + [55] = { + [sym__inline] = STATE(1047), + [sym__element] = STATE(64), + [sym_emphasis] = STATE(133), + [sym_emphasis_begin] = STATE(1124), + [sym_strong] = STATE(133), + [sym_strong_begin] = STATE(1125), + [sym_superscript] = STATE(133), + [sym_superscript_begin] = STATE(1126), + [sym_subscript] = STATE(133), + [sym_subscript_begin] = STATE(1127), + [sym_highlighted] = STATE(133), + [sym_highlighted_begin] = STATE(1128), + [sym_insert] = STATE(133), + [sym_insert_begin] = STATE(1129), + [sym_delete] = STATE(133), + [sym_delete_begin] = STATE(1130), + [sym_hard_line_break] = STATE(140), + [sym__smart_punctuation] = STATE(140), + [sym_autolink] = STATE(140), + [sym_footnote_reference] = STATE(133), + [sym_footnote_marker_begin] = STATE(1131), + [sym__image] = STATE(133), + [sym_full_reference_image] = STATE(133), + [sym_collapsed_reference_image] = STATE(133), + [sym_inline_image] = STATE(133), + [sym_image_description] = STATE(663), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(133), + [sym_full_reference_link] = STATE(133), + [sym_collapsed_reference_link] = STATE(133), + [sym_inline_link] = STATE(133), + [sym_link_text] = STATE(669), + [sym_span] = STATE(64), + [sym__bracketed_text_begin] = STATE(1206), + [sym__comment_with_spaces] = STATE(140), + [sym_raw_inline] = STATE(140), + [sym_math] = STATE(140), + [sym_verbatim] = STATE(140), + [sym__todo_highlights] = STATE(140), + [sym_todo] = STATE(140), + [sym_note] = STATE(140), + [sym__symbol_fallback] = STATE(140), [aux_sym__text] = STATE(122), - [aux_sym__inline_repeat1] = STATE(22), - [anon_sym_LBRACE_] = ACTIONS(197), - [anon_sym__] = ACTIONS(199), - [anon_sym_LBRACE_STAR] = ACTIONS(201), - [anon_sym_STAR] = ACTIONS(203), - [anon_sym_LBRACE_CARET] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(205), - [anon_sym_LBRACE_TILDE] = ACTIONS(207), - [anon_sym_TILDE] = ACTIONS(207), - [anon_sym_LBRACE_EQ] = ACTIONS(209), - [anon_sym_LBRACE_PLUS] = ACTIONS(211), - [anon_sym_LBRACE_DASH] = ACTIONS(213), - [anon_sym_BSLASH] = ACTIONS(215), - [sym_quotation_marks] = ACTIONS(217), - [sym_ellipsis] = ACTIONS(217), - [sym_em_dash] = ACTIONS(217), - [sym_en_dash] = ACTIONS(219), - [sym_backslash_escape] = ACTIONS(219), - [anon_sym_LT] = ACTIONS(221), - [sym_symbol] = ACTIONS(217), - [anon_sym_LBRACK_CARET] = ACTIONS(223), - [anon_sym_BANG_LBRACK] = ACTIONS(225), - [anon_sym_LBRACK] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_DOLLAR] = ACTIONS(231), - [anon_sym_TODO] = ACTIONS(233), - [anon_sym_WIP] = ACTIONS(233), - [anon_sym_NOTE] = ACTIONS(235), - [anon_sym_INFO] = ACTIONS(235), - [anon_sym_XXX] = ACTIONS(235), - [sym_fixme] = ACTIONS(217), - [sym__whitespace1] = ACTIONS(237), - [sym__newline] = ACTIONS(239), - [aux_sym__text_token1] = ACTIONS(241), - [sym__verbatim_begin] = ACTIONS(243), + [aux_sym__inline_repeat1] = STATE(64), + [anon_sym_LBRACE_] = ACTIONS(537), + [anon_sym__] = ACTIONS(539), + [anon_sym_LBRACE_STAR] = ACTIONS(541), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE_CARET] = ACTIONS(545), + [anon_sym_CARET] = ACTIONS(545), + [anon_sym_LBRACE_TILDE] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(547), + [anon_sym_LBRACE_EQ] = ACTIONS(549), + [anon_sym_LBRACE_PLUS] = ACTIONS(551), + [anon_sym_LBRACE_DASH] = ACTIONS(553), + [anon_sym_BSLASH] = ACTIONS(555), + [sym_quotation_marks] = ACTIONS(557), + [sym_ellipsis] = ACTIONS(557), + [sym_em_dash] = ACTIONS(557), + [sym_en_dash] = ACTIONS(559), + [sym_backslash_escape] = ACTIONS(559), + [anon_sym_LT] = ACTIONS(561), + [sym_symbol] = ACTIONS(557), + [anon_sym_LBRACK_CARET] = ACTIONS(563), + [anon_sym_BANG_LBRACK] = ACTIONS(565), + [anon_sym_LBRACK] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_DOLLAR] = ACTIONS(571), + [anon_sym_TODO] = ACTIONS(573), + [anon_sym_WIP] = ACTIONS(573), + [anon_sym_NOTE] = ACTIONS(575), + [anon_sym_INFO] = ACTIONS(575), + [anon_sym_XXX] = ACTIONS(575), + [sym_fixme] = ACTIONS(557), + [sym__whitespace1] = ACTIONS(577), + [sym__newline] = ACTIONS(579), + [aux_sym__text_token1] = ACTIONS(581), + [sym__verbatim_begin] = ACTIONS(583), }, - [67] = { - [sym__inline] = STATE(888), + [56] = { + [sym__inline] = STATE(1046), [sym__element] = STATE(14), [sym_emphasis] = STATE(136), - [sym_emphasis_begin] = STATE(1122), + [sym_emphasis_begin] = STATE(1134), [sym_strong] = STATE(136), - [sym_strong_begin] = STATE(1123), + [sym_strong_begin] = STATE(1135), [sym_superscript] = STATE(136), - [sym_superscript_begin] = STATE(1124), + [sym_superscript_begin] = STATE(1136), [sym_subscript] = STATE(136), - [sym_subscript_begin] = STATE(1125), + [sym_subscript_begin] = STATE(1137), [sym_highlighted] = STATE(136), - [sym_highlighted_begin] = STATE(1126), + [sym_highlighted_begin] = STATE(1138), [sym_insert] = STATE(136), - [sym_insert_begin] = STATE(1127), + [sym_insert_begin] = STATE(1139), [sym_delete] = STATE(136), - [sym_delete_begin] = STATE(1128), - [sym_hard_line_break] = STATE(136), - [sym__smart_punctuation] = STATE(136), - [sym_autolink] = STATE(136), + [sym_delete_begin] = STATE(1140), + [sym_hard_line_break] = STATE(134), + [sym__smart_punctuation] = STATE(134), + [sym_autolink] = STATE(134), [sym_footnote_reference] = STATE(136), - [sym_footnote_marker_begin] = STATE(1129), + [sym_footnote_marker_begin] = STATE(1141), [sym__image] = STATE(136), [sym_full_reference_image] = STATE(136), [sym_collapsed_reference_image] = STATE(136), [sym_inline_image] = STATE(136), - [sym_image_description] = STATE(651), - [sym__image_description_begin] = STATE(1057), + [sym_image_description] = STATE(670), + [sym__image_description_begin] = STATE(1079), [sym__link] = STATE(136), [sym_full_reference_link] = STATE(136), [sym_collapsed_reference_link] = STATE(136), [sym_inline_link] = STATE(136), - [sym_link_text] = STATE(650), + [sym_link_text] = STATE(671), [sym_span] = STATE(14), - [sym__bracketed_text_begin] = STATE(1186), - [sym__comment_with_spaces] = STATE(136), - [sym_raw_inline] = STATE(136), - [sym_math] = STATE(136), - [sym_verbatim] = STATE(136), - [sym__todo_highlights] = STATE(136), - [sym_todo] = STATE(136), - [sym_note] = STATE(136), - [sym__symbol_fallback] = STATE(136), - [aux_sym__text] = STATE(130), + [sym__bracketed_text_begin] = STATE(1207), + [sym__comment_with_spaces] = STATE(134), + [sym_raw_inline] = STATE(134), + [sym_math] = STATE(134), + [sym_verbatim] = STATE(134), + [sym__todo_highlights] = STATE(134), + [sym_todo] = STATE(134), + [sym_note] = STATE(134), + [sym__symbol_fallback] = STATE(134), + [aux_sym__text] = STATE(129), [aux_sym__inline_repeat1] = STATE(14), - [anon_sym_LBRACE_] = ACTIONS(319), - [anon_sym__] = ACTIONS(321), - [anon_sym_LBRACE_STAR] = ACTIONS(323), - [anon_sym_STAR] = ACTIONS(325), - [anon_sym_LBRACE_CARET] = ACTIONS(327), - [anon_sym_CARET] = ACTIONS(327), - [anon_sym_LBRACE_TILDE] = ACTIONS(329), - [anon_sym_TILDE] = ACTIONS(329), - [anon_sym_LBRACE_EQ] = ACTIONS(331), - [anon_sym_LBRACE_PLUS] = ACTIONS(333), - [anon_sym_LBRACE_DASH] = ACTIONS(335), - [anon_sym_BSLASH] = ACTIONS(337), - [sym_quotation_marks] = ACTIONS(339), - [sym_ellipsis] = ACTIONS(339), - [sym_em_dash] = ACTIONS(339), - [sym_en_dash] = ACTIONS(341), - [sym_backslash_escape] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(343), - [sym_symbol] = ACTIONS(339), - [anon_sym_LBRACK_CARET] = ACTIONS(345), - [anon_sym_BANG_LBRACK] = ACTIONS(347), - [anon_sym_LBRACK] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(351), - [anon_sym_DOLLAR] = ACTIONS(353), - [anon_sym_TODO] = ACTIONS(355), - [anon_sym_WIP] = ACTIONS(355), - [anon_sym_NOTE] = ACTIONS(357), - [anon_sym_INFO] = ACTIONS(357), - [anon_sym_XXX] = ACTIONS(357), - [sym_fixme] = ACTIONS(339), - [sym__whitespace1] = ACTIONS(359), + [anon_sym_LBRACE_] = ACTIONS(295), + [anon_sym__] = ACTIONS(297), + [anon_sym_LBRACE_STAR] = ACTIONS(299), + [anon_sym_STAR] = ACTIONS(301), + [anon_sym_LBRACE_CARET] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(303), + [anon_sym_LBRACE_TILDE] = ACTIONS(305), + [anon_sym_TILDE] = ACTIONS(305), + [anon_sym_LBRACE_EQ] = ACTIONS(307), + [anon_sym_LBRACE_PLUS] = ACTIONS(309), + [anon_sym_LBRACE_DASH] = ACTIONS(311), + [anon_sym_BSLASH] = ACTIONS(313), + [sym_quotation_marks] = ACTIONS(315), + [sym_ellipsis] = ACTIONS(315), + [sym_em_dash] = ACTIONS(315), + [sym_en_dash] = ACTIONS(317), + [sym_backslash_escape] = ACTIONS(317), + [anon_sym_LT] = ACTIONS(319), + [sym_symbol] = ACTIONS(315), + [anon_sym_LBRACK_CARET] = ACTIONS(321), + [anon_sym_BANG_LBRACK] = ACTIONS(323), + [anon_sym_LBRACK] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(327), + [anon_sym_DOLLAR] = ACTIONS(329), + [anon_sym_TODO] = ACTIONS(331), + [anon_sym_WIP] = ACTIONS(331), + [anon_sym_NOTE] = ACTIONS(333), + [anon_sym_INFO] = ACTIONS(333), + [anon_sym_XXX] = ACTIONS(333), + [sym_fixme] = ACTIONS(315), + [sym__whitespace1] = ACTIONS(335), [sym__newline] = ACTIONS(635), - [aux_sym__text_token1] = ACTIONS(363), - [sym__verbatim_begin] = ACTIONS(365), + [aux_sym__text_token1] = ACTIONS(339), + [sym__verbatim_begin] = ACTIONS(341), }, - [68] = { - [sym__inline] = STATE(1007), - [sym__element] = STATE(107), - [sym_emphasis] = STATE(140), - [sym_emphasis_begin] = STATE(1162), - [sym_strong] = STATE(140), - [sym_strong_begin] = STATE(1163), - [sym_superscript] = STATE(140), - [sym_superscript_begin] = STATE(1164), - [sym_subscript] = STATE(140), - [sym_subscript_begin] = STATE(1165), - [sym_highlighted] = STATE(140), - [sym_highlighted_begin] = STATE(1166), - [sym_insert] = STATE(140), - [sym_insert_begin] = STATE(1167), - [sym_delete] = STATE(140), - [sym_delete_begin] = STATE(1168), - [sym_hard_line_break] = STATE(140), - [sym__smart_punctuation] = STATE(140), - [sym_autolink] = STATE(140), - [sym_footnote_reference] = STATE(140), - [sym_footnote_marker_begin] = STATE(1169), - [sym__image] = STATE(140), - [sym_full_reference_image] = STATE(140), - [sym_collapsed_reference_image] = STATE(140), - [sym_inline_image] = STATE(140), - [sym_image_description] = STATE(625), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(140), - [sym_full_reference_link] = STATE(140), - [sym_collapsed_reference_link] = STATE(140), - [sym_inline_link] = STATE(140), - [sym_link_text] = STATE(624), - [sym_span] = STATE(107), - [sym__bracketed_text_begin] = STATE(1190), - [sym__comment_with_spaces] = STATE(140), - [sym_raw_inline] = STATE(140), - [sym_math] = STATE(140), - [sym_verbatim] = STATE(140), - [sym__todo_highlights] = STATE(140), - [sym_todo] = STATE(140), - [sym_note] = STATE(140), - [sym__symbol_fallback] = STATE(140), - [aux_sym__text] = STATE(124), - [aux_sym__inline_repeat1] = STATE(107), + [57] = { + [sym__inline] = STATE(1045), + [sym__element] = STATE(110), + [sym_emphasis] = STATE(146), + [sym_emphasis_begin] = STATE(1144), + [sym_strong] = STATE(146), + [sym_strong_begin] = STATE(1145), + [sym_superscript] = STATE(146), + [sym_superscript_begin] = STATE(1146), + [sym_subscript] = STATE(146), + [sym_subscript_begin] = STATE(1147), + [sym_highlighted] = STATE(146), + [sym_highlighted_begin] = STATE(1148), + [sym_insert] = STATE(146), + [sym_insert_begin] = STATE(1149), + [sym_delete] = STATE(146), + [sym_delete_begin] = STATE(1150), + [sym_hard_line_break] = STATE(144), + [sym__smart_punctuation] = STATE(144), + [sym_autolink] = STATE(144), + [sym_footnote_reference] = STATE(146), + [sym_footnote_marker_begin] = STATE(1151), + [sym__image] = STATE(146), + [sym_full_reference_image] = STATE(146), + [sym_collapsed_reference_image] = STATE(146), + [sym_inline_image] = STATE(146), + [sym_image_description] = STATE(673), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(146), + [sym_full_reference_link] = STATE(146), + [sym_collapsed_reference_link] = STATE(146), + [sym_inline_link] = STATE(146), + [sym_link_text] = STATE(662), + [sym_span] = STATE(110), + [sym__bracketed_text_begin] = STATE(1208), + [sym__comment_with_spaces] = STATE(144), + [sym_raw_inline] = STATE(144), + [sym_math] = STATE(144), + [sym_verbatim] = STATE(144), + [sym__todo_highlights] = STATE(144), + [sym_todo] = STATE(144), + [sym_note] = STATE(144), + [sym__symbol_fallback] = STATE(144), + [aux_sym__text] = STATE(128), + [aux_sym__inline_repeat1] = STATE(110), + [anon_sym_LBRACE_] = ACTIONS(587), + [anon_sym__] = ACTIONS(589), + [anon_sym_LBRACE_STAR] = ACTIONS(591), + [anon_sym_STAR] = ACTIONS(593), + [anon_sym_LBRACE_CARET] = ACTIONS(595), + [anon_sym_CARET] = ACTIONS(595), + [anon_sym_LBRACE_TILDE] = ACTIONS(597), + [anon_sym_TILDE] = ACTIONS(597), + [anon_sym_LBRACE_EQ] = ACTIONS(599), + [anon_sym_LBRACE_PLUS] = ACTIONS(601), + [anon_sym_LBRACE_DASH] = ACTIONS(603), + [anon_sym_BSLASH] = ACTIONS(605), + [sym_quotation_marks] = ACTIONS(607), + [sym_ellipsis] = ACTIONS(607), + [sym_em_dash] = ACTIONS(607), + [sym_en_dash] = ACTIONS(609), + [sym_backslash_escape] = ACTIONS(609), + [anon_sym_LT] = ACTIONS(611), + [sym_symbol] = ACTIONS(607), + [anon_sym_LBRACK_CARET] = ACTIONS(613), + [anon_sym_BANG_LBRACK] = ACTIONS(615), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_LPAREN] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [anon_sym_TODO] = ACTIONS(623), + [anon_sym_WIP] = ACTIONS(623), + [anon_sym_NOTE] = ACTIONS(625), + [anon_sym_INFO] = ACTIONS(625), + [anon_sym_XXX] = ACTIONS(625), + [sym_fixme] = ACTIONS(607), + [sym__whitespace1] = ACTIONS(627), + [sym__newline] = ACTIONS(629), + [aux_sym__text_token1] = ACTIONS(631), + [sym__verbatim_begin] = ACTIONS(633), + }, + [58] = { + [sym__element] = STATE(115), + [sym_emphasis] = STATE(148), + [sym_emphasis_begin] = STATE(1184), + [sym_strong] = STATE(148), + [sym_strong_begin] = STATE(1185), + [sym_superscript] = STATE(148), + [sym_superscript_begin] = STATE(1186), + [sym_subscript] = STATE(148), + [sym_subscript_begin] = STATE(1187), + [sym_highlighted] = STATE(148), + [sym_highlighted_begin] = STATE(1188), + [sym_insert] = STATE(148), + [sym_insert_begin] = STATE(1189), + [sym_delete] = STATE(148), + [sym_delete_begin] = STATE(1190), + [sym_hard_line_break] = STATE(139), + [sym__smart_punctuation] = STATE(139), + [sym_autolink] = STATE(139), + [sym_footnote_reference] = STATE(148), + [sym_footnote_marker_begin] = STATE(1191), + [sym__image] = STATE(148), + [sym_full_reference_image] = STATE(148), + [sym_collapsed_reference_image] = STATE(148), + [sym_inline_image] = STATE(148), + [sym_image_description] = STATE(648), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(148), + [sym_full_reference_link] = STATE(148), + [sym_collapsed_reference_link] = STATE(148), + [sym_inline_link] = STATE(148), + [sym_link_text] = STATE(647), + [sym_span] = STATE(115), + [sym__bracketed_text_begin] = STATE(1212), + [sym__comment_with_spaces] = STATE(139), + [sym_raw_inline] = STATE(139), + [sym_math] = STATE(139), + [sym_verbatim] = STATE(139), + [sym__todo_highlights] = STATE(139), + [sym_todo] = STATE(139), + [sym_note] = STATE(139), + [sym__symbol_fallback] = STATE(139), + [aux_sym__text] = STATE(123), + [aux_sym__inline_repeat1] = STATE(115), [anon_sym_LBRACE_] = ACTIONS(51), [anon_sym__] = ACTIONS(53), [anon_sym_LBRACE_STAR] = ACTIONS(55), @@ -10609,285 +9852,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_XXX] = ACTIONS(89), [sym_fixme] = ACTIONS(71), [sym__whitespace1] = ACTIONS(91), - [sym__newline] = ACTIONS(93), + [sym__newline] = ACTIONS(859), [aux_sym__text_token1] = ACTIONS(95), [sym__verbatim_begin] = ACTIONS(97), + [sym__square_bracket_span_end] = ACTIONS(343), }, - [69] = { - [sym__element] = STATE(69), - [sym_emphasis] = STATE(131), - [sym_emphasis_begin] = STATE(1132), - [sym_strong] = STATE(131), - [sym_strong_begin] = STATE(1133), - [sym_superscript] = STATE(131), - [sym_superscript_begin] = STATE(1134), - [sym_subscript] = STATE(131), - [sym_subscript_begin] = STATE(1135), - [sym_highlighted] = STATE(131), - [sym_highlighted_begin] = STATE(1136), - [sym_insert] = STATE(131), - [sym_insert_begin] = STATE(1137), - [sym_delete] = STATE(131), - [sym_delete_begin] = STATE(1138), - [sym_hard_line_break] = STATE(131), - [sym__smart_punctuation] = STATE(131), - [sym_autolink] = STATE(131), - [sym_footnote_reference] = STATE(131), - [sym_footnote_marker_begin] = STATE(1139), - [sym__image] = STATE(131), - [sym_full_reference_image] = STATE(131), - [sym_collapsed_reference_image] = STATE(131), - [sym_inline_image] = STATE(131), - [sym_image_description] = STATE(643), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(131), - [sym_full_reference_link] = STATE(131), - [sym_collapsed_reference_link] = STATE(131), - [sym_inline_link] = STATE(131), - [sym_link_text] = STATE(619), - [sym_span] = STATE(69), - [sym__bracketed_text_begin] = STATE(1187), - [sym__comment_with_spaces] = STATE(131), - [sym_raw_inline] = STATE(131), - [sym_math] = STATE(131), - [sym_verbatim] = STATE(131), - [sym__todo_highlights] = STATE(131), - [sym_todo] = STATE(131), - [sym_note] = STATE(131), - [sym__symbol_fallback] = STATE(131), - [aux_sym__text] = STATE(123), - [aux_sym__inline_repeat1] = STATE(69), - [anon_sym_LBRACE_] = ACTIONS(715), - [anon_sym__] = ACTIONS(718), - [anon_sym_LBRACE_STAR] = ACTIONS(721), - [anon_sym_STAR] = ACTIONS(724), - [anon_sym_LBRACE_CARET] = ACTIONS(727), - [anon_sym_CARET] = ACTIONS(727), - [anon_sym_LBRACE_TILDE] = ACTIONS(730), - [anon_sym_TILDE] = ACTIONS(730), - [anon_sym_LBRACE_EQ] = ACTIONS(733), - [anon_sym_LBRACE_PLUS] = ACTIONS(736), - [anon_sym_LBRACE_DASH] = ACTIONS(739), - [anon_sym_BSLASH] = ACTIONS(742), - [sym_quotation_marks] = ACTIONS(745), - [sym_ellipsis] = ACTIONS(745), - [sym_em_dash] = ACTIONS(745), - [sym_en_dash] = ACTIONS(748), - [sym_backslash_escape] = ACTIONS(748), - [anon_sym_LT] = ACTIONS(751), - [sym_symbol] = ACTIONS(745), - [anon_sym_LBRACK_CARET] = ACTIONS(754), - [anon_sym_BANG_LBRACK] = ACTIONS(757), - [anon_sym_LBRACK] = ACTIONS(760), - [anon_sym_LPAREN] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(766), - [anon_sym_TODO] = ACTIONS(769), - [anon_sym_WIP] = ACTIONS(769), - [anon_sym_NOTE] = ACTIONS(772), - [anon_sym_INFO] = ACTIONS(772), - [anon_sym_XXX] = ACTIONS(772), - [sym_fixme] = ACTIONS(745), - [sym__whitespace1] = ACTIONS(775), - [sym__newline] = ACTIONS(778), - [aux_sym__text_token1] = ACTIONS(781), - [sym__verbatim_begin] = ACTIONS(784), - [sym_insert_end] = ACTIONS(317), - }, - [70] = { - [sym__element] = STATE(70), - [sym_emphasis] = STATE(135), - [sym_emphasis_begin] = STATE(1073), - [sym_strong] = STATE(135), - [sym_strong_begin] = STATE(1072), - [sym_superscript] = STATE(135), - [sym_superscript_begin] = STATE(1071), - [sym_subscript] = STATE(135), - [sym_subscript_begin] = STATE(1070), - [sym_highlighted] = STATE(135), - [sym_highlighted_begin] = STATE(1062), - [sym_insert] = STATE(135), - [sym_insert_begin] = STATE(1060), - [sym_delete] = STATE(135), - [sym_delete_begin] = STATE(1059), - [sym_hard_line_break] = STATE(135), - [sym__smart_punctuation] = STATE(135), - [sym_autolink] = STATE(135), - [sym_footnote_reference] = STATE(135), - [sym_footnote_marker_begin] = STATE(1058), - [sym__image] = STATE(135), - [sym_full_reference_image] = STATE(135), - [sym_collapsed_reference_image] = STATE(135), - [sym_inline_image] = STATE(135), - [sym_image_description] = STATE(620), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(135), - [sym_full_reference_link] = STATE(135), - [sym_collapsed_reference_link] = STATE(135), - [sym_inline_link] = STATE(135), - [sym_link_text] = STATE(644), - [sym_span] = STATE(70), - [sym__bracketed_text_begin] = STATE(1056), - [sym__comment_with_spaces] = STATE(135), - [sym_raw_inline] = STATE(135), - [sym_math] = STATE(135), - [sym_verbatim] = STATE(135), - [sym__todo_highlights] = STATE(135), - [sym_todo] = STATE(135), - [sym_note] = STATE(135), - [sym__symbol_fallback] = STATE(135), - [aux_sym__text] = STATE(121), - [aux_sym__inline_repeat1] = STATE(70), - [ts_builtin_sym_end] = ACTIONS(317), - [anon_sym_LBRACE_] = ACTIONS(787), - [anon_sym__] = ACTIONS(790), - [anon_sym_LBRACE_STAR] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(796), - [anon_sym_LBRACE_CARET] = ACTIONS(799), - [anon_sym_CARET] = ACTIONS(799), - [anon_sym_LBRACE_TILDE] = ACTIONS(802), - [anon_sym_TILDE] = ACTIONS(802), - [anon_sym_LBRACE_EQ] = ACTIONS(805), - [anon_sym_LBRACE_PLUS] = ACTIONS(808), - [anon_sym_LBRACE_DASH] = ACTIONS(811), - [anon_sym_BSLASH] = ACTIONS(814), - [sym_quotation_marks] = ACTIONS(817), - [sym_ellipsis] = ACTIONS(817), - [sym_em_dash] = ACTIONS(817), - [sym_en_dash] = ACTIONS(820), - [sym_backslash_escape] = ACTIONS(820), - [anon_sym_LT] = ACTIONS(823), - [sym_symbol] = ACTIONS(817), - [anon_sym_LBRACK_CARET] = ACTIONS(826), - [anon_sym_BANG_LBRACK] = ACTIONS(829), - [anon_sym_LBRACK] = ACTIONS(832), - [anon_sym_LPAREN] = ACTIONS(835), - [anon_sym_DOLLAR] = ACTIONS(838), - [anon_sym_TODO] = ACTIONS(841), - [anon_sym_WIP] = ACTIONS(841), - [anon_sym_NOTE] = ACTIONS(844), - [anon_sym_INFO] = ACTIONS(844), - [anon_sym_XXX] = ACTIONS(844), - [sym_fixme] = ACTIONS(817), - [sym__whitespace1] = ACTIONS(847), - [sym__newline] = ACTIONS(850), - [aux_sym__text_token1] = ACTIONS(853), - [sym__verbatim_begin] = ACTIONS(856), - }, - [71] = { - [sym__element] = STATE(110), + [59] = { + [sym__inline] = STATE(1036), + [sym__element] = STATE(30), [sym_emphasis] = STATE(132), - [sym_emphasis_begin] = STATE(1152), + [sym_emphasis_begin] = STATE(1164), [sym_strong] = STATE(132), - [sym_strong_begin] = STATE(1153), + [sym_strong_begin] = STATE(1165), [sym_superscript] = STATE(132), - [sym_superscript_begin] = STATE(1154), + [sym_superscript_begin] = STATE(1166), [sym_subscript] = STATE(132), - [sym_subscript_begin] = STATE(1155), + [sym_subscript_begin] = STATE(1167), [sym_highlighted] = STATE(132), - [sym_highlighted_begin] = STATE(1156), + [sym_highlighted_begin] = STATE(1168), [sym_insert] = STATE(132), - [sym_insert_begin] = STATE(1157), + [sym_insert_begin] = STATE(1169), [sym_delete] = STATE(132), - [sym_delete_begin] = STATE(1158), - [sym_hard_line_break] = STATE(132), - [sym__smart_punctuation] = STATE(132), - [sym_autolink] = STATE(132), + [sym_delete_begin] = STATE(1170), + [sym_hard_line_break] = STATE(142), + [sym__smart_punctuation] = STATE(142), + [sym_autolink] = STATE(142), [sym_footnote_reference] = STATE(132), - [sym_footnote_marker_begin] = STATE(1159), + [sym_footnote_marker_begin] = STATE(1171), [sym__image] = STATE(132), [sym_full_reference_image] = STATE(132), [sym_collapsed_reference_image] = STATE(132), [sym_inline_image] = STATE(132), - [sym_image_description] = STATE(633), - [sym__image_description_begin] = STATE(1057), + [sym_image_description] = STATE(660), + [sym__image_description_begin] = STATE(1079), [sym__link] = STATE(132), [sym_full_reference_link] = STATE(132), [sym_collapsed_reference_link] = STATE(132), [sym_inline_link] = STATE(132), - [sym_link_text] = STATE(631), - [sym_span] = STATE(110), - [sym__bracketed_text_begin] = STATE(1189), - [sym__comment_with_spaces] = STATE(132), - [sym_raw_inline] = STATE(132), - [sym_math] = STATE(132), - [sym_verbatim] = STATE(132), - [sym__todo_highlights] = STATE(132), - [sym_todo] = STATE(132), - [sym_note] = STATE(132), - [sym__symbol_fallback] = STATE(132), - [aux_sym__text] = STATE(128), - [aux_sym__inline_repeat1] = STATE(110), - [anon_sym_LBRACE_] = ACTIONS(441), - [anon_sym__] = ACTIONS(443), - [anon_sym_LBRACE_STAR] = ACTIONS(445), - [anon_sym_STAR] = ACTIONS(447), - [anon_sym_LBRACE_CARET] = ACTIONS(449), - [anon_sym_CARET] = ACTIONS(449), - [anon_sym_LBRACE_TILDE] = ACTIONS(451), - [anon_sym_TILDE] = ACTIONS(451), - [anon_sym_LBRACE_EQ] = ACTIONS(453), - [anon_sym_LBRACE_PLUS] = ACTIONS(455), - [anon_sym_LBRACE_DASH] = ACTIONS(457), - [anon_sym_BSLASH] = ACTIONS(459), - [sym_quotation_marks] = ACTIONS(461), - [sym_ellipsis] = ACTIONS(461), - [sym_em_dash] = ACTIONS(461), - [sym_en_dash] = ACTIONS(463), - [sym_backslash_escape] = ACTIONS(463), - [anon_sym_LT] = ACTIONS(465), - [sym_symbol] = ACTIONS(461), - [anon_sym_LBRACK_CARET] = ACTIONS(467), - [anon_sym_BANG_LBRACK] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(471), - [anon_sym_RBRACK] = ACTIONS(367), - [anon_sym_LPAREN] = ACTIONS(473), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_TODO] = ACTIONS(477), - [anon_sym_WIP] = ACTIONS(477), - [anon_sym_NOTE] = ACTIONS(479), - [anon_sym_INFO] = ACTIONS(479), - [anon_sym_XXX] = ACTIONS(479), - [sym_fixme] = ACTIONS(461), - [sym__whitespace1] = ACTIONS(481), - [sym__newline] = ACTIONS(859), - [aux_sym__text_token1] = ACTIONS(485), - [sym__verbatim_begin] = ACTIONS(487), + [sym_link_text] = STATE(659), + [sym_span] = STATE(30), + [sym__bracketed_text_begin] = STATE(1210), + [sym__comment_with_spaces] = STATE(142), + [sym_raw_inline] = STATE(142), + [sym_math] = STATE(142), + [sym_verbatim] = STATE(142), + [sym__todo_highlights] = STATE(142), + [sym_todo] = STATE(142), + [sym_note] = STATE(142), + [sym__symbol_fallback] = STATE(142), + [aux_sym__text] = STATE(126), + [aux_sym__inline_repeat1] = STATE(30), + [anon_sym_LBRACE_] = ACTIONS(393), + [anon_sym__] = ACTIONS(395), + [anon_sym_LBRACE_STAR] = ACTIONS(397), + [anon_sym_STAR] = ACTIONS(399), + [anon_sym_LBRACE_CARET] = ACTIONS(401), + [anon_sym_CARET] = ACTIONS(401), + [anon_sym_LBRACE_TILDE] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_LBRACE_EQ] = ACTIONS(405), + [anon_sym_LBRACE_PLUS] = ACTIONS(407), + [anon_sym_LBRACE_DASH] = ACTIONS(409), + [anon_sym_BSLASH] = ACTIONS(411), + [sym_quotation_marks] = ACTIONS(413), + [sym_ellipsis] = ACTIONS(413), + [sym_em_dash] = ACTIONS(413), + [sym_en_dash] = ACTIONS(415), + [sym_backslash_escape] = ACTIONS(415), + [anon_sym_LT] = ACTIONS(417), + [sym_symbol] = ACTIONS(413), + [anon_sym_LBRACK_CARET] = ACTIONS(419), + [anon_sym_BANG_LBRACK] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(423), + [anon_sym_LPAREN] = ACTIONS(425), + [anon_sym_DOLLAR] = ACTIONS(427), + [anon_sym_TODO] = ACTIONS(429), + [anon_sym_WIP] = ACTIONS(429), + [anon_sym_NOTE] = ACTIONS(431), + [anon_sym_INFO] = ACTIONS(431), + [anon_sym_XXX] = ACTIONS(431), + [sym_fixme] = ACTIONS(413), + [sym__whitespace1] = ACTIONS(433), + [sym__newline] = ACTIONS(435), + [aux_sym__text_token1] = ACTIONS(437), + [sym__verbatim_begin] = ACTIONS(439), }, - [72] = { - [sym__inline] = STATE(891), - [sym__element] = STATE(37), - [sym_emphasis] = STATE(131), - [sym_emphasis_begin] = STATE(1132), - [sym_strong] = STATE(131), - [sym_strong_begin] = STATE(1133), - [sym_superscript] = STATE(131), - [sym_superscript_begin] = STATE(1134), - [sym_subscript] = STATE(131), - [sym_subscript_begin] = STATE(1135), - [sym_highlighted] = STATE(131), - [sym_highlighted_begin] = STATE(1136), - [sym_insert] = STATE(131), - [sym_insert_begin] = STATE(1137), - [sym_delete] = STATE(131), - [sym_delete_begin] = STATE(1138), + [60] = { + [sym__inline_without_trailing_space] = STATE(863), + [sym__element] = STATE(550), + [sym_emphasis] = STATE(137), + [sym_emphasis_begin] = STATE(1114), + [sym_strong] = STATE(137), + [sym_strong_begin] = STATE(1115), + [sym_superscript] = STATE(137), + [sym_superscript_begin] = STATE(1116), + [sym_subscript] = STATE(137), + [sym_subscript_begin] = STATE(1117), + [sym_highlighted] = STATE(137), + [sym_highlighted_begin] = STATE(1118), + [sym_insert] = STATE(137), + [sym_insert_begin] = STATE(1119), + [sym_delete] = STATE(137), + [sym_delete_begin] = STATE(1120), [sym_hard_line_break] = STATE(131), [sym__smart_punctuation] = STATE(131), [sym_autolink] = STATE(131), - [sym_footnote_reference] = STATE(131), - [sym_footnote_marker_begin] = STATE(1139), - [sym__image] = STATE(131), - [sym_full_reference_image] = STATE(131), - [sym_collapsed_reference_image] = STATE(131), - [sym_inline_image] = STATE(131), - [sym_image_description] = STATE(643), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(131), - [sym_full_reference_link] = STATE(131), - [sym_collapsed_reference_link] = STATE(131), - [sym_inline_link] = STATE(131), - [sym_link_text] = STATE(619), - [sym_span] = STATE(37), - [sym__bracketed_text_begin] = STATE(1187), + [sym_footnote_reference] = STATE(137), + [sym_footnote_marker_begin] = STATE(1121), + [sym__image] = STATE(137), + [sym_full_reference_image] = STATE(137), + [sym_collapsed_reference_image] = STATE(137), + [sym_inline_image] = STATE(137), + [sym_image_description] = STATE(649), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(137), + [sym_full_reference_link] = STATE(137), + [sym_collapsed_reference_link] = STATE(137), + [sym_inline_link] = STATE(137), + [sym_link_text] = STATE(650), + [sym_span] = STATE(550), + [sym__bracketed_text_begin] = STATE(1205), [sym__comment_with_spaces] = STATE(131), [sym_raw_inline] = STATE(131), [sym_math] = STATE(131), @@ -10896,88 +9980,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(131), [sym_note] = STATE(131), [sym__symbol_fallback] = STATE(131), - [aux_sym__text] = STATE(123), - [aux_sym__inline_repeat1] = STATE(37), - [anon_sym_LBRACE_] = ACTIONS(537), - [anon_sym__] = ACTIONS(539), - [anon_sym_LBRACE_STAR] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(543), - [anon_sym_LBRACE_CARET] = ACTIONS(545), - [anon_sym_CARET] = ACTIONS(545), - [anon_sym_LBRACE_TILDE] = ACTIONS(547), - [anon_sym_TILDE] = ACTIONS(547), - [anon_sym_LBRACE_EQ] = ACTIONS(549), - [anon_sym_LBRACE_PLUS] = ACTIONS(551), - [anon_sym_LBRACE_DASH] = ACTIONS(553), - [anon_sym_BSLASH] = ACTIONS(555), - [sym_quotation_marks] = ACTIONS(557), - [sym_ellipsis] = ACTIONS(557), - [sym_em_dash] = ACTIONS(557), - [sym_en_dash] = ACTIONS(559), - [sym_backslash_escape] = ACTIONS(559), - [anon_sym_LT] = ACTIONS(561), - [sym_symbol] = ACTIONS(557), - [anon_sym_LBRACK_CARET] = ACTIONS(563), - [anon_sym_BANG_LBRACK] = ACTIONS(565), - [anon_sym_LBRACK] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_DOLLAR] = ACTIONS(571), - [anon_sym_TODO] = ACTIONS(573), - [anon_sym_WIP] = ACTIONS(573), - [anon_sym_NOTE] = ACTIONS(575), - [anon_sym_INFO] = ACTIONS(575), - [anon_sym_XXX] = ACTIONS(575), - [sym_fixme] = ACTIONS(557), - [sym__whitespace1] = ACTIONS(577), - [sym__newline] = ACTIONS(579), - [aux_sym__text_token1] = ACTIONS(581), - [sym__verbatim_begin] = ACTIONS(583), - }, - [73] = { - [sym__inline] = STATE(893), - [sym__element] = STATE(65), - [sym_emphasis] = STATE(133), - [sym_emphasis_begin] = STATE(1142), - [sym_strong] = STATE(133), - [sym_strong_begin] = STATE(1143), - [sym_superscript] = STATE(133), - [sym_superscript_begin] = STATE(1144), - [sym_subscript] = STATE(133), - [sym_subscript_begin] = STATE(1145), - [sym_highlighted] = STATE(133), - [sym_highlighted_begin] = STATE(1146), - [sym_insert] = STATE(133), - [sym_insert_begin] = STATE(1147), - [sym_delete] = STATE(133), - [sym_delete_begin] = STATE(1148), - [sym_hard_line_break] = STATE(133), - [sym__smart_punctuation] = STATE(133), - [sym_autolink] = STATE(133), - [sym_footnote_reference] = STATE(133), - [sym_footnote_marker_begin] = STATE(1149), - [sym__image] = STATE(133), - [sym_full_reference_image] = STATE(133), - [sym_collapsed_reference_image] = STATE(133), - [sym_inline_image] = STATE(133), - [sym_image_description] = STATE(638), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(133), - [sym_full_reference_link] = STATE(133), - [sym_collapsed_reference_link] = STATE(133), - [sym_inline_link] = STATE(133), - [sym_link_text] = STATE(637), - [sym_span] = STATE(65), - [sym__bracketed_text_begin] = STATE(1188), - [sym__comment_with_spaces] = STATE(133), - [sym_raw_inline] = STATE(133), - [sym_math] = STATE(133), - [sym_verbatim] = STATE(133), - [sym__todo_highlights] = STATE(133), - [sym_todo] = STATE(133), - [sym_note] = STATE(133), - [sym__symbol_fallback] = STATE(133), - [aux_sym__text] = STATE(129), - [aux_sym__inline_repeat1] = STATE(65), + [aux_sym__text] = STATE(130), + [aux_sym__inline_repeat1] = STATE(119), [anon_sym_LBRACE_] = ACTIONS(489), [anon_sym__] = ACTIONS(491), [anon_sym_LBRACE_STAR] = ACTIONS(493), @@ -11013,371 +10017,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token1] = ACTIONS(533), [sym__verbatim_begin] = ACTIONS(535), }, - [74] = { - [sym__inline] = STATE(926), - [sym__element] = STATE(71), - [sym_emphasis] = STATE(132), - [sym_emphasis_begin] = STATE(1152), - [sym_strong] = STATE(132), - [sym_strong_begin] = STATE(1153), - [sym_superscript] = STATE(132), - [sym_superscript_begin] = STATE(1154), - [sym_subscript] = STATE(132), - [sym_subscript_begin] = STATE(1155), - [sym_highlighted] = STATE(132), - [sym_highlighted_begin] = STATE(1156), - [sym_insert] = STATE(132), - [sym_insert_begin] = STATE(1157), - [sym_delete] = STATE(132), - [sym_delete_begin] = STATE(1158), - [sym_hard_line_break] = STATE(132), - [sym__smart_punctuation] = STATE(132), - [sym_autolink] = STATE(132), - [sym_footnote_reference] = STATE(132), - [sym_footnote_marker_begin] = STATE(1159), - [sym__image] = STATE(132), - [sym_full_reference_image] = STATE(132), - [sym_collapsed_reference_image] = STATE(132), - [sym_inline_image] = STATE(132), - [sym_image_description] = STATE(633), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(132), - [sym_full_reference_link] = STATE(132), - [sym_collapsed_reference_link] = STATE(132), - [sym_inline_link] = STATE(132), - [sym_link_text] = STATE(631), - [sym_span] = STATE(71), - [sym__bracketed_text_begin] = STATE(1189), - [sym__comment_with_spaces] = STATE(132), - [sym_raw_inline] = STATE(132), - [sym_math] = STATE(132), - [sym_verbatim] = STATE(132), - [sym__todo_highlights] = STATE(132), - [sym_todo] = STATE(132), - [sym_note] = STATE(132), - [sym__symbol_fallback] = STATE(132), - [aux_sym__text] = STATE(128), - [aux_sym__inline_repeat1] = STATE(71), - [anon_sym_LBRACE_] = ACTIONS(441), - [anon_sym__] = ACTIONS(443), - [anon_sym_LBRACE_STAR] = ACTIONS(445), - [anon_sym_STAR] = ACTIONS(447), - [anon_sym_LBRACE_CARET] = ACTIONS(449), - [anon_sym_CARET] = ACTIONS(449), - [anon_sym_LBRACE_TILDE] = ACTIONS(451), - [anon_sym_TILDE] = ACTIONS(451), - [anon_sym_LBRACE_EQ] = ACTIONS(453), - [anon_sym_LBRACE_PLUS] = ACTIONS(455), - [anon_sym_LBRACE_DASH] = ACTIONS(457), - [anon_sym_BSLASH] = ACTIONS(459), - [sym_quotation_marks] = ACTIONS(461), - [sym_ellipsis] = ACTIONS(461), - [sym_em_dash] = ACTIONS(461), - [sym_en_dash] = ACTIONS(463), - [sym_backslash_escape] = ACTIONS(463), - [anon_sym_LT] = ACTIONS(465), - [sym_symbol] = ACTIONS(461), - [anon_sym_LBRACK_CARET] = ACTIONS(467), - [anon_sym_BANG_LBRACK] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(471), - [anon_sym_LPAREN] = ACTIONS(473), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_TODO] = ACTIONS(477), - [anon_sym_WIP] = ACTIONS(477), - [anon_sym_NOTE] = ACTIONS(479), - [anon_sym_INFO] = ACTIONS(479), - [anon_sym_XXX] = ACTIONS(479), - [sym_fixme] = ACTIONS(461), - [sym__whitespace1] = ACTIONS(481), - [sym__newline] = ACTIONS(483), - [aux_sym__text_token1] = ACTIONS(485), - [sym__verbatim_begin] = ACTIONS(487), - }, - [75] = { - [sym__inline_without_trailing_space] = STATE(1151), - [sym__element] = STATE(581), - [sym_emphasis] = STATE(141), - [sym_emphasis_begin] = STATE(1082), - [sym_strong] = STATE(141), - [sym_strong_begin] = STATE(1083), - [sym_superscript] = STATE(141), - [sym_superscript_begin] = STATE(1084), - [sym_subscript] = STATE(141), - [sym_subscript_begin] = STATE(1085), - [sym_highlighted] = STATE(141), - [sym_highlighted_begin] = STATE(1086), - [sym_insert] = STATE(141), - [sym_insert_begin] = STATE(1087), - [sym_delete] = STATE(141), - [sym_delete_begin] = STATE(1088), - [sym_hard_line_break] = STATE(141), - [sym__smart_punctuation] = STATE(141), - [sym_autolink] = STATE(141), - [sym_footnote_reference] = STATE(141), - [sym_footnote_marker_begin] = STATE(1089), - [sym__image] = STATE(141), - [sym_full_reference_image] = STATE(141), - [sym_collapsed_reference_image] = STATE(141), - [sym_inline_image] = STATE(141), - [sym_image_description] = STATE(642), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(141), - [sym_full_reference_link] = STATE(141), - [sym_collapsed_reference_link] = STATE(141), - [sym_inline_link] = STATE(141), - [sym_link_text] = STATE(629), - [sym_span] = STATE(581), - [sym__bracketed_text_begin] = STATE(1182), - [sym__comment_with_spaces] = STATE(141), - [sym_raw_inline] = STATE(141), - [sym_math] = STATE(141), - [sym_verbatim] = STATE(141), - [sym__todo_highlights] = STATE(141), - [sym_todo] = STATE(141), - [sym_note] = STATE(141), - [sym__symbol_fallback] = STATE(141), - [aux_sym__text] = STATE(125), - [aux_sym__inline_repeat1] = STATE(119), - [anon_sym_LBRACE_] = ACTIONS(585), - [anon_sym__] = ACTIONS(587), - [anon_sym_LBRACE_STAR] = ACTIONS(589), - [anon_sym_STAR] = ACTIONS(591), - [anon_sym_LBRACE_CARET] = ACTIONS(593), - [anon_sym_CARET] = ACTIONS(593), - [anon_sym_LBRACE_TILDE] = ACTIONS(595), - [anon_sym_TILDE] = ACTIONS(595), - [anon_sym_LBRACE_EQ] = ACTIONS(597), - [anon_sym_LBRACE_PLUS] = ACTIONS(599), - [anon_sym_LBRACE_DASH] = ACTIONS(601), - [anon_sym_BSLASH] = ACTIONS(603), - [sym_quotation_marks] = ACTIONS(605), - [sym_ellipsis] = ACTIONS(605), - [sym_em_dash] = ACTIONS(605), - [sym_en_dash] = ACTIONS(607), - [sym_backslash_escape] = ACTIONS(607), - [anon_sym_LT] = ACTIONS(609), - [sym_symbol] = ACTIONS(605), - [anon_sym_LBRACK_CARET] = ACTIONS(611), - [anon_sym_BANG_LBRACK] = ACTIONS(613), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_DOLLAR] = ACTIONS(619), - [anon_sym_TODO] = ACTIONS(621), - [anon_sym_WIP] = ACTIONS(621), - [anon_sym_NOTE] = ACTIONS(623), - [anon_sym_INFO] = ACTIONS(623), - [anon_sym_XXX] = ACTIONS(623), - [sym_fixme] = ACTIONS(605), - [sym__whitespace1] = ACTIONS(625), - [sym__newline] = ACTIONS(627), - [aux_sym__text_token1] = ACTIONS(629), - [sym__verbatim_begin] = ACTIONS(631), - }, - [76] = { - [sym__inline] = STATE(859), - [sym__element] = STATE(71), - [sym_emphasis] = STATE(132), - [sym_emphasis_begin] = STATE(1152), - [sym_strong] = STATE(132), - [sym_strong_begin] = STATE(1153), - [sym_superscript] = STATE(132), - [sym_superscript_begin] = STATE(1154), - [sym_subscript] = STATE(132), - [sym_subscript_begin] = STATE(1155), - [sym_highlighted] = STATE(132), - [sym_highlighted_begin] = STATE(1156), - [sym_insert] = STATE(132), - [sym_insert_begin] = STATE(1157), - [sym_delete] = STATE(132), - [sym_delete_begin] = STATE(1158), - [sym_hard_line_break] = STATE(132), - [sym__smart_punctuation] = STATE(132), - [sym_autolink] = STATE(132), - [sym_footnote_reference] = STATE(132), - [sym_footnote_marker_begin] = STATE(1159), - [sym__image] = STATE(132), - [sym_full_reference_image] = STATE(132), - [sym_collapsed_reference_image] = STATE(132), - [sym_inline_image] = STATE(132), - [sym_image_description] = STATE(633), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(132), - [sym_full_reference_link] = STATE(132), - [sym_collapsed_reference_link] = STATE(132), - [sym_inline_link] = STATE(132), - [sym_link_text] = STATE(631), - [sym_span] = STATE(71), - [sym__bracketed_text_begin] = STATE(1189), - [sym__comment_with_spaces] = STATE(132), - [sym_raw_inline] = STATE(132), - [sym_math] = STATE(132), - [sym_verbatim] = STATE(132), - [sym__todo_highlights] = STATE(132), - [sym_todo] = STATE(132), - [sym_note] = STATE(132), - [sym__symbol_fallback] = STATE(132), - [aux_sym__text] = STATE(128), - [aux_sym__inline_repeat1] = STATE(71), - [anon_sym_LBRACE_] = ACTIONS(441), - [anon_sym__] = ACTIONS(443), - [anon_sym_LBRACE_STAR] = ACTIONS(445), - [anon_sym_STAR] = ACTIONS(447), - [anon_sym_LBRACE_CARET] = ACTIONS(449), - [anon_sym_CARET] = ACTIONS(449), - [anon_sym_LBRACE_TILDE] = ACTIONS(451), - [anon_sym_TILDE] = ACTIONS(451), - [anon_sym_LBRACE_EQ] = ACTIONS(453), - [anon_sym_LBRACE_PLUS] = ACTIONS(455), - [anon_sym_LBRACE_DASH] = ACTIONS(457), - [anon_sym_BSLASH] = ACTIONS(459), - [sym_quotation_marks] = ACTIONS(461), - [sym_ellipsis] = ACTIONS(461), - [sym_em_dash] = ACTIONS(461), - [sym_en_dash] = ACTIONS(463), - [sym_backslash_escape] = ACTIONS(463), - [anon_sym_LT] = ACTIONS(465), - [sym_symbol] = ACTIONS(461), - [anon_sym_LBRACK_CARET] = ACTIONS(467), - [anon_sym_BANG_LBRACK] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(471), - [anon_sym_LPAREN] = ACTIONS(473), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_TODO] = ACTIONS(477), - [anon_sym_WIP] = ACTIONS(477), - [anon_sym_NOTE] = ACTIONS(479), - [anon_sym_INFO] = ACTIONS(479), - [anon_sym_XXX] = ACTIONS(479), - [sym_fixme] = ACTIONS(461), - [sym__whitespace1] = ACTIONS(481), - [sym__newline] = ACTIONS(483), - [aux_sym__text_token1] = ACTIONS(485), - [sym__verbatim_begin] = ACTIONS(487), - }, - [77] = { - [sym__inline] = STATE(862), - [sym__element] = STATE(65), + [61] = { + [sym__inline] = STATE(907), + [sym__element] = STATE(64), [sym_emphasis] = STATE(133), - [sym_emphasis_begin] = STATE(1142), + [sym_emphasis_begin] = STATE(1124), [sym_strong] = STATE(133), - [sym_strong_begin] = STATE(1143), + [sym_strong_begin] = STATE(1125), [sym_superscript] = STATE(133), - [sym_superscript_begin] = STATE(1144), + [sym_superscript_begin] = STATE(1126), [sym_subscript] = STATE(133), - [sym_subscript_begin] = STATE(1145), + [sym_subscript_begin] = STATE(1127), [sym_highlighted] = STATE(133), - [sym_highlighted_begin] = STATE(1146), + [sym_highlighted_begin] = STATE(1128), [sym_insert] = STATE(133), - [sym_insert_begin] = STATE(1147), + [sym_insert_begin] = STATE(1129), [sym_delete] = STATE(133), - [sym_delete_begin] = STATE(1148), - [sym_hard_line_break] = STATE(133), - [sym__smart_punctuation] = STATE(133), - [sym_autolink] = STATE(133), + [sym_delete_begin] = STATE(1130), + [sym_hard_line_break] = STATE(140), + [sym__smart_punctuation] = STATE(140), + [sym_autolink] = STATE(140), [sym_footnote_reference] = STATE(133), - [sym_footnote_marker_begin] = STATE(1149), + [sym_footnote_marker_begin] = STATE(1131), [sym__image] = STATE(133), [sym_full_reference_image] = STATE(133), [sym_collapsed_reference_image] = STATE(133), [sym_inline_image] = STATE(133), - [sym_image_description] = STATE(638), - [sym__image_description_begin] = STATE(1057), + [sym_image_description] = STATE(663), + [sym__image_description_begin] = STATE(1079), [sym__link] = STATE(133), [sym_full_reference_link] = STATE(133), [sym_collapsed_reference_link] = STATE(133), [sym_inline_link] = STATE(133), - [sym_link_text] = STATE(637), - [sym_span] = STATE(65), - [sym__bracketed_text_begin] = STATE(1188), - [sym__comment_with_spaces] = STATE(133), - [sym_raw_inline] = STATE(133), - [sym_math] = STATE(133), - [sym_verbatim] = STATE(133), - [sym__todo_highlights] = STATE(133), - [sym_todo] = STATE(133), - [sym_note] = STATE(133), - [sym__symbol_fallback] = STATE(133), - [aux_sym__text] = STATE(129), - [aux_sym__inline_repeat1] = STATE(65), - [anon_sym_LBRACE_] = ACTIONS(489), - [anon_sym__] = ACTIONS(491), - [anon_sym_LBRACE_STAR] = ACTIONS(493), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_LBRACE_CARET] = ACTIONS(497), - [anon_sym_CARET] = ACTIONS(497), - [anon_sym_LBRACE_TILDE] = ACTIONS(499), - [anon_sym_TILDE] = ACTIONS(499), - [anon_sym_LBRACE_EQ] = ACTIONS(501), - [anon_sym_LBRACE_PLUS] = ACTIONS(503), - [anon_sym_LBRACE_DASH] = ACTIONS(505), - [anon_sym_BSLASH] = ACTIONS(507), - [sym_quotation_marks] = ACTIONS(509), - [sym_ellipsis] = ACTIONS(509), - [sym_em_dash] = ACTIONS(509), - [sym_en_dash] = ACTIONS(511), - [sym_backslash_escape] = ACTIONS(511), - [anon_sym_LT] = ACTIONS(513), - [sym_symbol] = ACTIONS(509), - [anon_sym_LBRACK_CARET] = ACTIONS(515), - [anon_sym_BANG_LBRACK] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(519), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_DOLLAR] = ACTIONS(523), - [anon_sym_TODO] = ACTIONS(525), - [anon_sym_WIP] = ACTIONS(525), - [anon_sym_NOTE] = ACTIONS(527), - [anon_sym_INFO] = ACTIONS(527), - [anon_sym_XXX] = ACTIONS(527), - [sym_fixme] = ACTIONS(509), - [sym__whitespace1] = ACTIONS(529), - [sym__newline] = ACTIONS(531), - [aux_sym__text_token1] = ACTIONS(533), - [sym__verbatim_begin] = ACTIONS(535), - }, - [78] = { - [sym__inline] = STATE(863), - [sym__element] = STATE(37), - [sym_emphasis] = STATE(131), - [sym_emphasis_begin] = STATE(1132), - [sym_strong] = STATE(131), - [sym_strong_begin] = STATE(1133), - [sym_superscript] = STATE(131), - [sym_superscript_begin] = STATE(1134), - [sym_subscript] = STATE(131), - [sym_subscript_begin] = STATE(1135), - [sym_highlighted] = STATE(131), - [sym_highlighted_begin] = STATE(1136), - [sym_insert] = STATE(131), - [sym_insert_begin] = STATE(1137), - [sym_delete] = STATE(131), - [sym_delete_begin] = STATE(1138), - [sym_hard_line_break] = STATE(131), - [sym__smart_punctuation] = STATE(131), - [sym_autolink] = STATE(131), - [sym_footnote_reference] = STATE(131), - [sym_footnote_marker_begin] = STATE(1139), - [sym__image] = STATE(131), - [sym_full_reference_image] = STATE(131), - [sym_collapsed_reference_image] = STATE(131), - [sym_inline_image] = STATE(131), - [sym_image_description] = STATE(643), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(131), - [sym_full_reference_link] = STATE(131), - [sym_collapsed_reference_link] = STATE(131), - [sym_inline_link] = STATE(131), - [sym_link_text] = STATE(619), - [sym_span] = STATE(37), - [sym__bracketed_text_begin] = STATE(1187), - [sym__comment_with_spaces] = STATE(131), - [sym_raw_inline] = STATE(131), - [sym_math] = STATE(131), - [sym_verbatim] = STATE(131), - [sym__todo_highlights] = STATE(131), - [sym_todo] = STATE(131), - [sym_note] = STATE(131), - [sym__symbol_fallback] = STATE(131), - [aux_sym__text] = STATE(123), - [aux_sym__inline_repeat1] = STATE(37), + [sym_link_text] = STATE(669), + [sym_span] = STATE(64), + [sym__bracketed_text_begin] = STATE(1206), + [sym__comment_with_spaces] = STATE(140), + [sym_raw_inline] = STATE(140), + [sym_math] = STATE(140), + [sym_verbatim] = STATE(140), + [sym__todo_highlights] = STATE(140), + [sym_todo] = STATE(140), + [sym_note] = STATE(140), + [sym__symbol_fallback] = STATE(140), + [aux_sym__text] = STATE(122), + [aux_sym__inline_repeat1] = STATE(64), [anon_sym_LBRACE_] = ACTIONS(537), [anon_sym__] = ACTIONS(539), [anon_sym_LBRACE_STAR] = ACTIONS(541), @@ -11413,371 +10097,531 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token1] = ACTIONS(581), [sym__verbatim_begin] = ACTIONS(583), }, - [79] = { - [sym__inline] = STATE(864), + [62] = { + [sym__inline] = STATE(1032), + [sym__element] = STATE(46), + [sym_emphasis] = STATE(135), + [sym_emphasis_begin] = STATE(1174), + [sym_strong] = STATE(135), + [sym_strong_begin] = STATE(1175), + [sym_superscript] = STATE(135), + [sym_superscript_begin] = STATE(1176), + [sym_subscript] = STATE(135), + [sym_subscript_begin] = STATE(1177), + [sym_highlighted] = STATE(135), + [sym_highlighted_begin] = STATE(1178), + [sym_insert] = STATE(135), + [sym_insert_begin] = STATE(1179), + [sym_delete] = STATE(135), + [sym_delete_begin] = STATE(1180), + [sym_hard_line_break] = STATE(138), + [sym__smart_punctuation] = STATE(138), + [sym_autolink] = STATE(138), + [sym_footnote_reference] = STATE(135), + [sym_footnote_marker_begin] = STATE(1181), + [sym__image] = STATE(135), + [sym_full_reference_image] = STATE(135), + [sym_collapsed_reference_image] = STATE(135), + [sym_inline_image] = STATE(135), + [sym_image_description] = STATE(656), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(135), + [sym_full_reference_link] = STATE(135), + [sym_collapsed_reference_link] = STATE(135), + [sym_inline_link] = STATE(135), + [sym_link_text] = STATE(654), + [sym_span] = STATE(46), + [sym__bracketed_text_begin] = STATE(1211), + [sym__comment_with_spaces] = STATE(138), + [sym_raw_inline] = STATE(138), + [sym_math] = STATE(138), + [sym_verbatim] = STATE(138), + [sym__todo_highlights] = STATE(138), + [sym_todo] = STATE(138), + [sym_note] = STATE(138), + [sym__symbol_fallback] = STATE(138), + [aux_sym__text] = STATE(121), + [aux_sym__inline_repeat1] = STATE(46), + [anon_sym_LBRACE_] = ACTIONS(345), + [anon_sym__] = ACTIONS(347), + [anon_sym_LBRACE_STAR] = ACTIONS(349), + [anon_sym_STAR] = ACTIONS(351), + [anon_sym_LBRACE_CARET] = ACTIONS(353), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_LBRACE_TILDE] = ACTIONS(355), + [anon_sym_TILDE] = ACTIONS(355), + [anon_sym_LBRACE_EQ] = ACTIONS(357), + [anon_sym_LBRACE_PLUS] = ACTIONS(359), + [anon_sym_LBRACE_DASH] = ACTIONS(361), + [anon_sym_BSLASH] = ACTIONS(363), + [sym_quotation_marks] = ACTIONS(365), + [sym_ellipsis] = ACTIONS(365), + [sym_em_dash] = ACTIONS(365), + [sym_en_dash] = ACTIONS(367), + [sym_backslash_escape] = ACTIONS(367), + [anon_sym_LT] = ACTIONS(369), + [sym_symbol] = ACTIONS(365), + [anon_sym_LBRACK_CARET] = ACTIONS(371), + [anon_sym_BANG_LBRACK] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(375), + [anon_sym_LPAREN] = ACTIONS(377), + [anon_sym_DOLLAR] = ACTIONS(379), + [anon_sym_TODO] = ACTIONS(381), + [anon_sym_WIP] = ACTIONS(381), + [anon_sym_NOTE] = ACTIONS(383), + [anon_sym_INFO] = ACTIONS(383), + [anon_sym_XXX] = ACTIONS(383), + [sym_fixme] = ACTIONS(365), + [sym__whitespace1] = ACTIONS(385), + [sym__newline] = ACTIONS(387), + [aux_sym__text_token1] = ACTIONS(389), + [sym__verbatim_begin] = ACTIONS(391), + }, + [63] = { + [sym__inline] = STATE(971), [sym__element] = STATE(14), [sym_emphasis] = STATE(136), - [sym_emphasis_begin] = STATE(1122), + [sym_emphasis_begin] = STATE(1134), [sym_strong] = STATE(136), - [sym_strong_begin] = STATE(1123), + [sym_strong_begin] = STATE(1135), [sym_superscript] = STATE(136), - [sym_superscript_begin] = STATE(1124), + [sym_superscript_begin] = STATE(1136), [sym_subscript] = STATE(136), - [sym_subscript_begin] = STATE(1125), + [sym_subscript_begin] = STATE(1137), [sym_highlighted] = STATE(136), - [sym_highlighted_begin] = STATE(1126), + [sym_highlighted_begin] = STATE(1138), [sym_insert] = STATE(136), - [sym_insert_begin] = STATE(1127), + [sym_insert_begin] = STATE(1139), [sym_delete] = STATE(136), - [sym_delete_begin] = STATE(1128), - [sym_hard_line_break] = STATE(136), - [sym__smart_punctuation] = STATE(136), - [sym_autolink] = STATE(136), + [sym_delete_begin] = STATE(1140), + [sym_hard_line_break] = STATE(134), + [sym__smart_punctuation] = STATE(134), + [sym_autolink] = STATE(134), [sym_footnote_reference] = STATE(136), - [sym_footnote_marker_begin] = STATE(1129), + [sym_footnote_marker_begin] = STATE(1141), [sym__image] = STATE(136), [sym_full_reference_image] = STATE(136), [sym_collapsed_reference_image] = STATE(136), [sym_inline_image] = STATE(136), - [sym_image_description] = STATE(651), - [sym__image_description_begin] = STATE(1057), + [sym_image_description] = STATE(670), + [sym__image_description_begin] = STATE(1079), [sym__link] = STATE(136), [sym_full_reference_link] = STATE(136), [sym_collapsed_reference_link] = STATE(136), [sym_inline_link] = STATE(136), - [sym_link_text] = STATE(650), + [sym_link_text] = STATE(671), [sym_span] = STATE(14), - [sym__bracketed_text_begin] = STATE(1186), - [sym__comment_with_spaces] = STATE(136), - [sym_raw_inline] = STATE(136), - [sym_math] = STATE(136), - [sym_verbatim] = STATE(136), - [sym__todo_highlights] = STATE(136), - [sym_todo] = STATE(136), - [sym_note] = STATE(136), - [sym__symbol_fallback] = STATE(136), - [aux_sym__text] = STATE(130), + [sym__bracketed_text_begin] = STATE(1207), + [sym__comment_with_spaces] = STATE(134), + [sym_raw_inline] = STATE(134), + [sym_math] = STATE(134), + [sym_verbatim] = STATE(134), + [sym__todo_highlights] = STATE(134), + [sym_todo] = STATE(134), + [sym_note] = STATE(134), + [sym__symbol_fallback] = STATE(134), + [aux_sym__text] = STATE(129), [aux_sym__inline_repeat1] = STATE(14), - [anon_sym_LBRACE_] = ACTIONS(319), - [anon_sym__] = ACTIONS(321), - [anon_sym_LBRACE_STAR] = ACTIONS(323), - [anon_sym_STAR] = ACTIONS(325), - [anon_sym_LBRACE_CARET] = ACTIONS(327), - [anon_sym_CARET] = ACTIONS(327), - [anon_sym_LBRACE_TILDE] = ACTIONS(329), - [anon_sym_TILDE] = ACTIONS(329), - [anon_sym_LBRACE_EQ] = ACTIONS(331), - [anon_sym_LBRACE_PLUS] = ACTIONS(333), - [anon_sym_LBRACE_DASH] = ACTIONS(335), - [anon_sym_BSLASH] = ACTIONS(337), - [sym_quotation_marks] = ACTIONS(339), - [sym_ellipsis] = ACTIONS(339), - [sym_em_dash] = ACTIONS(339), - [sym_en_dash] = ACTIONS(341), - [sym_backslash_escape] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(343), - [sym_symbol] = ACTIONS(339), - [anon_sym_LBRACK_CARET] = ACTIONS(345), - [anon_sym_BANG_LBRACK] = ACTIONS(347), - [anon_sym_LBRACK] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(351), - [anon_sym_DOLLAR] = ACTIONS(353), - [anon_sym_TODO] = ACTIONS(355), - [anon_sym_WIP] = ACTIONS(355), - [anon_sym_NOTE] = ACTIONS(357), - [anon_sym_INFO] = ACTIONS(357), - [anon_sym_XXX] = ACTIONS(357), - [sym_fixme] = ACTIONS(339), - [sym__whitespace1] = ACTIONS(359), + [anon_sym_LBRACE_] = ACTIONS(295), + [anon_sym__] = ACTIONS(297), + [anon_sym_LBRACE_STAR] = ACTIONS(299), + [anon_sym_STAR] = ACTIONS(301), + [anon_sym_LBRACE_CARET] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(303), + [anon_sym_LBRACE_TILDE] = ACTIONS(305), + [anon_sym_TILDE] = ACTIONS(305), + [anon_sym_LBRACE_EQ] = ACTIONS(307), + [anon_sym_LBRACE_PLUS] = ACTIONS(309), + [anon_sym_LBRACE_DASH] = ACTIONS(311), + [anon_sym_BSLASH] = ACTIONS(313), + [sym_quotation_marks] = ACTIONS(315), + [sym_ellipsis] = ACTIONS(315), + [sym_em_dash] = ACTIONS(315), + [sym_en_dash] = ACTIONS(317), + [sym_backslash_escape] = ACTIONS(317), + [anon_sym_LT] = ACTIONS(319), + [sym_symbol] = ACTIONS(315), + [anon_sym_LBRACK_CARET] = ACTIONS(321), + [anon_sym_BANG_LBRACK] = ACTIONS(323), + [anon_sym_LBRACK] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(327), + [anon_sym_DOLLAR] = ACTIONS(329), + [anon_sym_TODO] = ACTIONS(331), + [anon_sym_WIP] = ACTIONS(331), + [anon_sym_NOTE] = ACTIONS(333), + [anon_sym_INFO] = ACTIONS(333), + [anon_sym_XXX] = ACTIONS(333), + [sym_fixme] = ACTIONS(315), + [sym__whitespace1] = ACTIONS(335), [sym__newline] = ACTIONS(635), - [aux_sym__text_token1] = ACTIONS(363), - [sym__verbatim_begin] = ACTIONS(365), - }, - [80] = { - [sym__inline_without_trailing_space] = STATE(1141), - [sym__element] = STATE(536), - [sym_emphasis] = STATE(138), - [sym_emphasis_begin] = STATE(1092), - [sym_strong] = STATE(138), - [sym_strong_begin] = STATE(1093), - [sym_superscript] = STATE(138), - [sym_superscript_begin] = STATE(1094), - [sym_subscript] = STATE(138), - [sym_subscript_begin] = STATE(1095), - [sym_highlighted] = STATE(138), - [sym_highlighted_begin] = STATE(1096), - [sym_insert] = STATE(138), - [sym_insert_begin] = STATE(1097), - [sym_delete] = STATE(138), - [sym_delete_begin] = STATE(1098), - [sym_hard_line_break] = STATE(138), - [sym__smart_punctuation] = STATE(138), - [sym_autolink] = STATE(138), - [sym_footnote_reference] = STATE(138), - [sym_footnote_marker_begin] = STATE(1099), - [sym__image] = STATE(138), - [sym_full_reference_image] = STATE(138), - [sym_collapsed_reference_image] = STATE(138), - [sym_inline_image] = STATE(138), - [sym_image_description] = STATE(626), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(138), - [sym_full_reference_link] = STATE(138), - [sym_collapsed_reference_link] = STATE(138), - [sym_inline_link] = STATE(138), - [sym_link_text] = STATE(627), - [sym_span] = STATE(536), - [sym__bracketed_text_begin] = STATE(1183), - [sym__comment_with_spaces] = STATE(138), - [sym_raw_inline] = STATE(138), - [sym_math] = STATE(138), - [sym_verbatim] = STATE(138), - [sym__todo_highlights] = STATE(138), - [sym_todo] = STATE(138), - [sym_note] = STATE(138), - [sym__symbol_fallback] = STATE(138), - [aux_sym__text] = STATE(127), - [aux_sym__inline_repeat1] = STATE(118), - [anon_sym_LBRACE_] = ACTIONS(149), - [anon_sym__] = ACTIONS(151), - [anon_sym_LBRACE_STAR] = ACTIONS(153), - [anon_sym_STAR] = ACTIONS(155), - [anon_sym_LBRACE_CARET] = ACTIONS(157), - [anon_sym_CARET] = ACTIONS(157), - [anon_sym_LBRACE_TILDE] = ACTIONS(159), - [anon_sym_TILDE] = ACTIONS(159), - [anon_sym_LBRACE_EQ] = ACTIONS(161), - [anon_sym_LBRACE_PLUS] = ACTIONS(163), - [anon_sym_LBRACE_DASH] = ACTIONS(165), - [anon_sym_BSLASH] = ACTIONS(167), - [sym_quotation_marks] = ACTIONS(169), - [sym_ellipsis] = ACTIONS(169), - [sym_em_dash] = ACTIONS(169), - [sym_en_dash] = ACTIONS(171), - [sym_backslash_escape] = ACTIONS(171), - [anon_sym_LT] = ACTIONS(173), - [sym_symbol] = ACTIONS(169), - [anon_sym_LBRACK_CARET] = ACTIONS(175), - [anon_sym_BANG_LBRACK] = ACTIONS(177), - [anon_sym_LBRACK] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(181), - [anon_sym_DOLLAR] = ACTIONS(183), - [anon_sym_TODO] = ACTIONS(185), - [anon_sym_WIP] = ACTIONS(185), - [anon_sym_NOTE] = ACTIONS(187), - [anon_sym_INFO] = ACTIONS(187), - [anon_sym_XXX] = ACTIONS(187), - [sym_fixme] = ACTIONS(169), - [sym__whitespace1] = ACTIONS(189), - [sym__newline] = ACTIONS(191), - [aux_sym__text_token1] = ACTIONS(193), - [sym__verbatim_begin] = ACTIONS(195), + [aux_sym__text_token1] = ACTIONS(339), + [sym__verbatim_begin] = ACTIONS(341), }, - [81] = { - [sym__element] = STATE(81), + [64] = { + [sym__element] = STATE(13), [sym_emphasis] = STATE(133), - [sym_emphasis_begin] = STATE(1142), + [sym_emphasis_begin] = STATE(1124), [sym_strong] = STATE(133), - [sym_strong_begin] = STATE(1143), + [sym_strong_begin] = STATE(1125), [sym_superscript] = STATE(133), - [sym_superscript_begin] = STATE(1144), + [sym_superscript_begin] = STATE(1126), [sym_subscript] = STATE(133), - [sym_subscript_begin] = STATE(1145), + [sym_subscript_begin] = STATE(1127), [sym_highlighted] = STATE(133), - [sym_highlighted_begin] = STATE(1146), + [sym_highlighted_begin] = STATE(1128), [sym_insert] = STATE(133), - [sym_insert_begin] = STATE(1147), + [sym_insert_begin] = STATE(1129), [sym_delete] = STATE(133), - [sym_delete_begin] = STATE(1148), - [sym_hard_line_break] = STATE(133), - [sym__smart_punctuation] = STATE(133), - [sym_autolink] = STATE(133), + [sym_delete_begin] = STATE(1130), + [sym_hard_line_break] = STATE(140), + [sym__smart_punctuation] = STATE(140), + [sym_autolink] = STATE(140), [sym_footnote_reference] = STATE(133), - [sym_footnote_marker_begin] = STATE(1149), + [sym_footnote_marker_begin] = STATE(1131), [sym__image] = STATE(133), [sym_full_reference_image] = STATE(133), [sym_collapsed_reference_image] = STATE(133), [sym_inline_image] = STATE(133), - [sym_image_description] = STATE(638), - [sym__image_description_begin] = STATE(1057), + [sym_image_description] = STATE(663), + [sym__image_description_begin] = STATE(1079), [sym__link] = STATE(133), [sym_full_reference_link] = STATE(133), [sym_collapsed_reference_link] = STATE(133), [sym_inline_link] = STATE(133), - [sym_link_text] = STATE(637), - [sym_span] = STATE(81), - [sym__bracketed_text_begin] = STATE(1188), - [sym__comment_with_spaces] = STATE(133), - [sym_raw_inline] = STATE(133), - [sym_math] = STATE(133), - [sym_verbatim] = STATE(133), - [sym__todo_highlights] = STATE(133), - [sym_todo] = STATE(133), - [sym_note] = STATE(133), - [sym__symbol_fallback] = STATE(133), - [aux_sym__text] = STATE(129), - [aux_sym__inline_repeat1] = STATE(81), - [anon_sym_LBRACE_] = ACTIONS(861), - [anon_sym__] = ACTIONS(864), - [anon_sym_LBRACE_STAR] = ACTIONS(867), - [anon_sym_STAR] = ACTIONS(870), - [anon_sym_LBRACE_CARET] = ACTIONS(873), - [anon_sym_CARET] = ACTIONS(873), - [anon_sym_LBRACE_TILDE] = ACTIONS(876), - [anon_sym_TILDE] = ACTIONS(876), - [anon_sym_LBRACE_EQ] = ACTIONS(879), - [anon_sym_LBRACE_PLUS] = ACTIONS(882), - [anon_sym_LBRACE_DASH] = ACTIONS(885), - [anon_sym_BSLASH] = ACTIONS(888), - [sym_quotation_marks] = ACTIONS(891), - [sym_ellipsis] = ACTIONS(891), - [sym_em_dash] = ACTIONS(891), - [sym_en_dash] = ACTIONS(894), - [sym_backslash_escape] = ACTIONS(894), - [anon_sym_LT] = ACTIONS(897), - [sym_symbol] = ACTIONS(891), - [anon_sym_LBRACK_CARET] = ACTIONS(900), - [anon_sym_BANG_LBRACK] = ACTIONS(903), - [anon_sym_LBRACK] = ACTIONS(906), - [anon_sym_LPAREN] = ACTIONS(909), - [anon_sym_DOLLAR] = ACTIONS(912), - [anon_sym_TODO] = ACTIONS(915), - [anon_sym_WIP] = ACTIONS(915), - [anon_sym_NOTE] = ACTIONS(918), - [anon_sym_INFO] = ACTIONS(918), - [anon_sym_XXX] = ACTIONS(918), - [sym_fixme] = ACTIONS(891), - [sym__whitespace1] = ACTIONS(921), - [sym__newline] = ACTIONS(924), - [aux_sym__text_token1] = ACTIONS(927), - [sym__verbatim_begin] = ACTIONS(930), - [sym_delete_end] = ACTIONS(317), - }, - [82] = { - [sym__inline] = STATE(866), - [sym__element] = STATE(22), - [sym_emphasis] = STATE(137), - [sym_emphasis_begin] = STATE(1112), - [sym_strong] = STATE(137), - [sym_strong_begin] = STATE(1113), - [sym_superscript] = STATE(137), - [sym_superscript_begin] = STATE(1114), - [sym_subscript] = STATE(137), - [sym_subscript_begin] = STATE(1115), - [sym_highlighted] = STATE(137), - [sym_highlighted_begin] = STATE(1116), - [sym_insert] = STATE(137), - [sym_insert_begin] = STATE(1117), - [sym_delete] = STATE(137), - [sym_delete_begin] = STATE(1118), - [sym_hard_line_break] = STATE(137), - [sym__smart_punctuation] = STATE(137), - [sym_autolink] = STATE(137), - [sym_footnote_reference] = STATE(137), - [sym_footnote_marker_begin] = STATE(1119), - [sym__image] = STATE(137), - [sym_full_reference_image] = STATE(137), - [sym_collapsed_reference_image] = STATE(137), - [sym_inline_image] = STATE(137), - [sym_image_description] = STATE(636), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(137), - [sym_full_reference_link] = STATE(137), - [sym_collapsed_reference_link] = STATE(137), - [sym_inline_link] = STATE(137), - [sym_link_text] = STATE(647), - [sym_span] = STATE(22), - [sym__bracketed_text_begin] = STATE(1185), - [sym__comment_with_spaces] = STATE(137), - [sym_raw_inline] = STATE(137), - [sym_math] = STATE(137), - [sym_verbatim] = STATE(137), - [sym__todo_highlights] = STATE(137), - [sym_todo] = STATE(137), - [sym_note] = STATE(137), - [sym__symbol_fallback] = STATE(137), + [sym_link_text] = STATE(669), + [sym_span] = STATE(13), + [sym__bracketed_text_begin] = STATE(1206), + [sym__comment_with_spaces] = STATE(140), + [sym_raw_inline] = STATE(140), + [sym_math] = STATE(140), + [sym_verbatim] = STATE(140), + [sym__todo_highlights] = STATE(140), + [sym_todo] = STATE(140), + [sym_note] = STATE(140), + [sym__symbol_fallback] = STATE(140), [aux_sym__text] = STATE(122), - [aux_sym__inline_repeat1] = STATE(22), - [anon_sym_LBRACE_] = ACTIONS(197), - [anon_sym__] = ACTIONS(199), - [anon_sym_LBRACE_STAR] = ACTIONS(201), - [anon_sym_STAR] = ACTIONS(203), - [anon_sym_LBRACE_CARET] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(205), - [anon_sym_LBRACE_TILDE] = ACTIONS(207), - [anon_sym_TILDE] = ACTIONS(207), - [anon_sym_LBRACE_EQ] = ACTIONS(209), - [anon_sym_LBRACE_PLUS] = ACTIONS(211), - [anon_sym_LBRACE_DASH] = ACTIONS(213), - [anon_sym_BSLASH] = ACTIONS(215), - [sym_quotation_marks] = ACTIONS(217), - [sym_ellipsis] = ACTIONS(217), - [sym_em_dash] = ACTIONS(217), - [sym_en_dash] = ACTIONS(219), - [sym_backslash_escape] = ACTIONS(219), - [anon_sym_LT] = ACTIONS(221), - [sym_symbol] = ACTIONS(217), - [anon_sym_LBRACK_CARET] = ACTIONS(223), - [anon_sym_BANG_LBRACK] = ACTIONS(225), - [anon_sym_LBRACK] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_DOLLAR] = ACTIONS(231), - [anon_sym_TODO] = ACTIONS(233), - [anon_sym_WIP] = ACTIONS(233), - [anon_sym_NOTE] = ACTIONS(235), - [anon_sym_INFO] = ACTIONS(235), - [anon_sym_XXX] = ACTIONS(235), - [sym_fixme] = ACTIONS(217), - [sym__whitespace1] = ACTIONS(237), - [sym__newline] = ACTIONS(239), - [aux_sym__text_token1] = ACTIONS(241), - [sym__verbatim_begin] = ACTIONS(243), - }, - [83] = { - [sym__inline] = STATE(868), - [sym__element] = STATE(106), - [sym_emphasis] = STATE(139), - [sym_emphasis_begin] = STATE(1102), - [sym_strong] = STATE(139), - [sym_strong_begin] = STATE(1103), - [sym_superscript] = STATE(139), - [sym_superscript_begin] = STATE(1104), - [sym_subscript] = STATE(139), - [sym_subscript_begin] = STATE(1105), - [sym_highlighted] = STATE(139), - [sym_highlighted_begin] = STATE(1106), - [sym_insert] = STATE(139), - [sym_insert_begin] = STATE(1107), - [sym_delete] = STATE(139), - [sym_delete_begin] = STATE(1108), - [sym_hard_line_break] = STATE(139), - [sym__smart_punctuation] = STATE(139), - [sym_autolink] = STATE(139), - [sym_footnote_reference] = STATE(139), - [sym_footnote_marker_begin] = STATE(1109), - [sym__image] = STATE(139), - [sym_full_reference_image] = STATE(139), - [sym_collapsed_reference_image] = STATE(139), - [sym_inline_image] = STATE(139), - [sym_image_description] = STATE(623), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(139), - [sym_full_reference_link] = STATE(139), - [sym_collapsed_reference_link] = STATE(139), - [sym_inline_link] = STATE(139), - [sym_link_text] = STATE(621), - [sym_span] = STATE(106), - [sym__bracketed_text_begin] = STATE(1184), - [sym__comment_with_spaces] = STATE(139), - [sym_raw_inline] = STATE(139), + [aux_sym__inline_repeat1] = STATE(13), + [anon_sym_LBRACE_] = ACTIONS(537), + [anon_sym__] = ACTIONS(539), + [anon_sym_LBRACE_STAR] = ACTIONS(541), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE_CARET] = ACTIONS(545), + [anon_sym_CARET] = ACTIONS(545), + [anon_sym_LBRACE_TILDE] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(547), + [anon_sym_LBRACE_EQ] = ACTIONS(549), + [anon_sym_LBRACE_PLUS] = ACTIONS(551), + [anon_sym_LBRACE_DASH] = ACTIONS(553), + [anon_sym_BSLASH] = ACTIONS(555), + [sym_quotation_marks] = ACTIONS(557), + [sym_ellipsis] = ACTIONS(557), + [sym_em_dash] = ACTIONS(557), + [sym_en_dash] = ACTIONS(559), + [sym_backslash_escape] = ACTIONS(559), + [anon_sym_LT] = ACTIONS(561), + [sym_symbol] = ACTIONS(557), + [anon_sym_LBRACK_CARET] = ACTIONS(563), + [anon_sym_BANG_LBRACK] = ACTIONS(565), + [anon_sym_LBRACK] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_DOLLAR] = ACTIONS(571), + [anon_sym_TODO] = ACTIONS(573), + [anon_sym_WIP] = ACTIONS(573), + [anon_sym_NOTE] = ACTIONS(575), + [anon_sym_INFO] = ACTIONS(575), + [anon_sym_XXX] = ACTIONS(575), + [sym_fixme] = ACTIONS(557), + [sym__whitespace1] = ACTIONS(577), + [sym__newline] = ACTIONS(861), + [aux_sym__text_token1] = ACTIONS(581), + [sym__verbatim_begin] = ACTIONS(583), + [sym_superscript_end] = ACTIONS(343), + }, + [65] = { + [sym__inline_without_trailing_space] = STATE(862), + [sym__element] = STATE(594), + [sym_emphasis] = STATE(149), + [sym_emphasis_begin] = STATE(1104), + [sym_strong] = STATE(149), + [sym_strong_begin] = STATE(1105), + [sym_superscript] = STATE(149), + [sym_superscript_begin] = STATE(1106), + [sym_subscript] = STATE(149), + [sym_subscript_begin] = STATE(1107), + [sym_highlighted] = STATE(149), + [sym_highlighted_begin] = STATE(1108), + [sym_insert] = STATE(149), + [sym_insert_begin] = STATE(1109), + [sym_delete] = STATE(149), + [sym_delete_begin] = STATE(1110), + [sym_hard_line_break] = STATE(143), + [sym__smart_punctuation] = STATE(143), + [sym_autolink] = STATE(143), + [sym_footnote_reference] = STATE(149), + [sym_footnote_marker_begin] = STATE(1111), + [sym__image] = STATE(149), + [sym_full_reference_image] = STATE(149), + [sym_collapsed_reference_image] = STATE(149), + [sym_inline_image] = STATE(149), + [sym_image_description] = STATE(658), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(149), + [sym_full_reference_link] = STATE(149), + [sym_collapsed_reference_link] = STATE(149), + [sym_inline_link] = STATE(149), + [sym_link_text] = STATE(672), + [sym_span] = STATE(594), + [sym__bracketed_text_begin] = STATE(1204), + [sym__comment_with_spaces] = STATE(143), + [sym_raw_inline] = STATE(143), + [sym_math] = STATE(143), + [sym_verbatim] = STATE(143), + [sym__todo_highlights] = STATE(143), + [sym_todo] = STATE(143), + [sym_note] = STATE(143), + [sym__symbol_fallback] = STATE(143), + [aux_sym__text] = STATE(127), + [aux_sym__inline_repeat1] = STATE(120), + [anon_sym_LBRACE_] = ACTIONS(441), + [anon_sym__] = ACTIONS(443), + [anon_sym_LBRACE_STAR] = ACTIONS(445), + [anon_sym_STAR] = ACTIONS(447), + [anon_sym_LBRACE_CARET] = ACTIONS(449), + [anon_sym_CARET] = ACTIONS(449), + [anon_sym_LBRACE_TILDE] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_LBRACE_EQ] = ACTIONS(453), + [anon_sym_LBRACE_PLUS] = ACTIONS(455), + [anon_sym_LBRACE_DASH] = ACTIONS(457), + [anon_sym_BSLASH] = ACTIONS(459), + [sym_quotation_marks] = ACTIONS(461), + [sym_ellipsis] = ACTIONS(461), + [sym_em_dash] = ACTIONS(461), + [sym_en_dash] = ACTIONS(463), + [sym_backslash_escape] = ACTIONS(463), + [anon_sym_LT] = ACTIONS(465), + [sym_symbol] = ACTIONS(461), + [anon_sym_LBRACK_CARET] = ACTIONS(467), + [anon_sym_BANG_LBRACK] = ACTIONS(469), + [anon_sym_LBRACK] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(473), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_TODO] = ACTIONS(477), + [anon_sym_WIP] = ACTIONS(477), + [anon_sym_NOTE] = ACTIONS(479), + [anon_sym_INFO] = ACTIONS(479), + [anon_sym_XXX] = ACTIONS(479), + [sym_fixme] = ACTIONS(461), + [sym__whitespace1] = ACTIONS(481), + [sym__newline] = ACTIONS(483), + [aux_sym__text_token1] = ACTIONS(485), + [sym__verbatim_begin] = ACTIONS(487), + }, + [66] = { + [sym__inline] = STATE(1102), + [sym__element] = STATE(58), + [sym_emphasis] = STATE(148), + [sym_emphasis_begin] = STATE(1184), + [sym_strong] = STATE(148), + [sym_strong_begin] = STATE(1185), + [sym_superscript] = STATE(148), + [sym_superscript_begin] = STATE(1186), + [sym_subscript] = STATE(148), + [sym_subscript_begin] = STATE(1187), + [sym_highlighted] = STATE(148), + [sym_highlighted_begin] = STATE(1188), + [sym_insert] = STATE(148), + [sym_insert_begin] = STATE(1189), + [sym_delete] = STATE(148), + [sym_delete_begin] = STATE(1190), + [sym_hard_line_break] = STATE(139), + [sym__smart_punctuation] = STATE(139), + [sym_autolink] = STATE(139), + [sym_footnote_reference] = STATE(148), + [sym_footnote_marker_begin] = STATE(1191), + [sym__image] = STATE(148), + [sym_full_reference_image] = STATE(148), + [sym_collapsed_reference_image] = STATE(148), + [sym_inline_image] = STATE(148), + [sym_image_description] = STATE(648), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(148), + [sym_full_reference_link] = STATE(148), + [sym_collapsed_reference_link] = STATE(148), + [sym_inline_link] = STATE(148), + [sym_link_text] = STATE(647), + [sym_span] = STATE(58), + [sym__bracketed_text_begin] = STATE(1212), + [sym__comment_with_spaces] = STATE(139), + [sym_raw_inline] = STATE(139), [sym_math] = STATE(139), [sym_verbatim] = STATE(139), [sym__todo_highlights] = STATE(139), [sym_todo] = STATE(139), [sym_note] = STATE(139), [sym__symbol_fallback] = STATE(139), - [aux_sym__text] = STATE(126), - [aux_sym__inline_repeat1] = STATE(106), + [aux_sym__text] = STATE(123), + [aux_sym__inline_repeat1] = STATE(58), + [anon_sym_LBRACE_] = ACTIONS(51), + [anon_sym__] = ACTIONS(53), + [anon_sym_LBRACE_STAR] = ACTIONS(55), + [anon_sym_STAR] = ACTIONS(57), + [anon_sym_LBRACE_CARET] = ACTIONS(59), + [anon_sym_CARET] = ACTIONS(59), + [anon_sym_LBRACE_TILDE] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(61), + [anon_sym_LBRACE_EQ] = ACTIONS(63), + [anon_sym_LBRACE_PLUS] = ACTIONS(65), + [anon_sym_LBRACE_DASH] = ACTIONS(67), + [anon_sym_BSLASH] = ACTIONS(69), + [sym_quotation_marks] = ACTIONS(71), + [sym_ellipsis] = ACTIONS(71), + [sym_em_dash] = ACTIONS(71), + [sym_en_dash] = ACTIONS(73), + [sym_backslash_escape] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(75), + [sym_symbol] = ACTIONS(71), + [anon_sym_LBRACK_CARET] = ACTIONS(77), + [anon_sym_BANG_LBRACK] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(85), + [anon_sym_TODO] = ACTIONS(87), + [anon_sym_WIP] = ACTIONS(87), + [anon_sym_NOTE] = ACTIONS(89), + [anon_sym_INFO] = ACTIONS(89), + [anon_sym_XXX] = ACTIONS(89), + [sym_fixme] = ACTIONS(71), + [sym__whitespace1] = ACTIONS(91), + [sym__newline] = ACTIONS(93), + [aux_sym__text_token1] = ACTIONS(95), + [sym__verbatim_begin] = ACTIONS(97), + }, + [67] = { + [sym__inline] = STATE(910), + [sym__element] = STATE(110), + [sym_emphasis] = STATE(146), + [sym_emphasis_begin] = STATE(1144), + [sym_strong] = STATE(146), + [sym_strong_begin] = STATE(1145), + [sym_superscript] = STATE(146), + [sym_superscript_begin] = STATE(1146), + [sym_subscript] = STATE(146), + [sym_subscript_begin] = STATE(1147), + [sym_highlighted] = STATE(146), + [sym_highlighted_begin] = STATE(1148), + [sym_insert] = STATE(146), + [sym_insert_begin] = STATE(1149), + [sym_delete] = STATE(146), + [sym_delete_begin] = STATE(1150), + [sym_hard_line_break] = STATE(144), + [sym__smart_punctuation] = STATE(144), + [sym_autolink] = STATE(144), + [sym_footnote_reference] = STATE(146), + [sym_footnote_marker_begin] = STATE(1151), + [sym__image] = STATE(146), + [sym_full_reference_image] = STATE(146), + [sym_collapsed_reference_image] = STATE(146), + [sym_inline_image] = STATE(146), + [sym_image_description] = STATE(673), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(146), + [sym_full_reference_link] = STATE(146), + [sym_collapsed_reference_link] = STATE(146), + [sym_inline_link] = STATE(146), + [sym_link_text] = STATE(662), + [sym_span] = STATE(110), + [sym__bracketed_text_begin] = STATE(1208), + [sym__comment_with_spaces] = STATE(144), + [sym_raw_inline] = STATE(144), + [sym_math] = STATE(144), + [sym_verbatim] = STATE(144), + [sym__todo_highlights] = STATE(144), + [sym_todo] = STATE(144), + [sym_note] = STATE(144), + [sym__symbol_fallback] = STATE(144), + [aux_sym__text] = STATE(128), + [aux_sym__inline_repeat1] = STATE(110), + [anon_sym_LBRACE_] = ACTIONS(587), + [anon_sym__] = ACTIONS(589), + [anon_sym_LBRACE_STAR] = ACTIONS(591), + [anon_sym_STAR] = ACTIONS(593), + [anon_sym_LBRACE_CARET] = ACTIONS(595), + [anon_sym_CARET] = ACTIONS(595), + [anon_sym_LBRACE_TILDE] = ACTIONS(597), + [anon_sym_TILDE] = ACTIONS(597), + [anon_sym_LBRACE_EQ] = ACTIONS(599), + [anon_sym_LBRACE_PLUS] = ACTIONS(601), + [anon_sym_LBRACE_DASH] = ACTIONS(603), + [anon_sym_BSLASH] = ACTIONS(605), + [sym_quotation_marks] = ACTIONS(607), + [sym_ellipsis] = ACTIONS(607), + [sym_em_dash] = ACTIONS(607), + [sym_en_dash] = ACTIONS(609), + [sym_backslash_escape] = ACTIONS(609), + [anon_sym_LT] = ACTIONS(611), + [sym_symbol] = ACTIONS(607), + [anon_sym_LBRACK_CARET] = ACTIONS(613), + [anon_sym_BANG_LBRACK] = ACTIONS(615), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_LPAREN] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [anon_sym_TODO] = ACTIONS(623), + [anon_sym_WIP] = ACTIONS(623), + [anon_sym_NOTE] = ACTIONS(625), + [anon_sym_INFO] = ACTIONS(625), + [anon_sym_XXX] = ACTIONS(625), + [sym_fixme] = ACTIONS(607), + [sym__whitespace1] = ACTIONS(627), + [sym__newline] = ACTIONS(629), + [aux_sym__text_token1] = ACTIONS(631), + [sym__verbatim_begin] = ACTIONS(633), + }, + [68] = { + [sym__inline] = STATE(913), + [sym__element] = STATE(22), + [sym_emphasis] = STATE(147), + [sym_emphasis_begin] = STATE(1154), + [sym_strong] = STATE(147), + [sym_strong_begin] = STATE(1155), + [sym_superscript] = STATE(147), + [sym_superscript_begin] = STATE(1156), + [sym_subscript] = STATE(147), + [sym_subscript_begin] = STATE(1157), + [sym_highlighted] = STATE(147), + [sym_highlighted_begin] = STATE(1158), + [sym_insert] = STATE(147), + [sym_insert_begin] = STATE(1159), + [sym_delete] = STATE(147), + [sym_delete_begin] = STATE(1160), + [sym_hard_line_break] = STATE(145), + [sym__smart_punctuation] = STATE(145), + [sym_autolink] = STATE(145), + [sym_footnote_reference] = STATE(147), + [sym_footnote_marker_begin] = STATE(1161), + [sym__image] = STATE(147), + [sym_full_reference_image] = STATE(147), + [sym_collapsed_reference_image] = STATE(147), + [sym_inline_image] = STATE(147), + [sym_image_description] = STATE(665), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(147), + [sym_full_reference_link] = STATE(147), + [sym_collapsed_reference_link] = STATE(147), + [sym_inline_link] = STATE(147), + [sym_link_text] = STATE(664), + [sym_span] = STATE(22), + [sym__bracketed_text_begin] = STATE(1209), + [sym__comment_with_spaces] = STATE(145), + [sym_raw_inline] = STATE(145), + [sym_math] = STATE(145), + [sym_verbatim] = STATE(145), + [sym__todo_highlights] = STATE(145), + [sym_todo] = STATE(145), + [sym_note] = STATE(145), + [sym__symbol_fallback] = STATE(145), + [aux_sym__text] = STATE(124), + [aux_sym__inline_repeat1] = STATE(22), [anon_sym_LBRACE_] = ACTIONS(101), [anon_sym__] = ACTIONS(103), [anon_sym_LBRACE_STAR] = ACTIONS(105), @@ -11813,41 +10657,200 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token1] = ACTIONS(145), [sym__verbatim_begin] = ACTIONS(147), }, - [84] = { - [sym__inline_without_trailing_space] = STATE(869), - [sym__element] = STATE(536), - [sym_emphasis] = STATE(138), - [sym_emphasis_begin] = STATE(1092), - [sym_strong] = STATE(138), - [sym_strong_begin] = STATE(1093), - [sym_superscript] = STATE(138), - [sym_superscript_begin] = STATE(1094), - [sym_subscript] = STATE(138), - [sym_subscript_begin] = STATE(1095), - [sym_highlighted] = STATE(138), - [sym_highlighted_begin] = STATE(1096), - [sym_insert] = STATE(138), - [sym_insert_begin] = STATE(1097), - [sym_delete] = STATE(138), - [sym_delete_begin] = STATE(1098), + [69] = { + [sym__inline] = STATE(915), + [sym__element] = STATE(30), + [sym_emphasis] = STATE(132), + [sym_emphasis_begin] = STATE(1164), + [sym_strong] = STATE(132), + [sym_strong_begin] = STATE(1165), + [sym_superscript] = STATE(132), + [sym_superscript_begin] = STATE(1166), + [sym_subscript] = STATE(132), + [sym_subscript_begin] = STATE(1167), + [sym_highlighted] = STATE(132), + [sym_highlighted_begin] = STATE(1168), + [sym_insert] = STATE(132), + [sym_insert_begin] = STATE(1169), + [sym_delete] = STATE(132), + [sym_delete_begin] = STATE(1170), + [sym_hard_line_break] = STATE(142), + [sym__smart_punctuation] = STATE(142), + [sym_autolink] = STATE(142), + [sym_footnote_reference] = STATE(132), + [sym_footnote_marker_begin] = STATE(1171), + [sym__image] = STATE(132), + [sym_full_reference_image] = STATE(132), + [sym_collapsed_reference_image] = STATE(132), + [sym_inline_image] = STATE(132), + [sym_image_description] = STATE(660), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(132), + [sym_full_reference_link] = STATE(132), + [sym_collapsed_reference_link] = STATE(132), + [sym_inline_link] = STATE(132), + [sym_link_text] = STATE(659), + [sym_span] = STATE(30), + [sym__bracketed_text_begin] = STATE(1210), + [sym__comment_with_spaces] = STATE(142), + [sym_raw_inline] = STATE(142), + [sym_math] = STATE(142), + [sym_verbatim] = STATE(142), + [sym__todo_highlights] = STATE(142), + [sym_todo] = STATE(142), + [sym_note] = STATE(142), + [sym__symbol_fallback] = STATE(142), + [aux_sym__text] = STATE(126), + [aux_sym__inline_repeat1] = STATE(30), + [anon_sym_LBRACE_] = ACTIONS(393), + [anon_sym__] = ACTIONS(395), + [anon_sym_LBRACE_STAR] = ACTIONS(397), + [anon_sym_STAR] = ACTIONS(399), + [anon_sym_LBRACE_CARET] = ACTIONS(401), + [anon_sym_CARET] = ACTIONS(401), + [anon_sym_LBRACE_TILDE] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_LBRACE_EQ] = ACTIONS(405), + [anon_sym_LBRACE_PLUS] = ACTIONS(407), + [anon_sym_LBRACE_DASH] = ACTIONS(409), + [anon_sym_BSLASH] = ACTIONS(411), + [sym_quotation_marks] = ACTIONS(413), + [sym_ellipsis] = ACTIONS(413), + [sym_em_dash] = ACTIONS(413), + [sym_en_dash] = ACTIONS(415), + [sym_backslash_escape] = ACTIONS(415), + [anon_sym_LT] = ACTIONS(417), + [sym_symbol] = ACTIONS(413), + [anon_sym_LBRACK_CARET] = ACTIONS(419), + [anon_sym_BANG_LBRACK] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(423), + [anon_sym_LPAREN] = ACTIONS(425), + [anon_sym_DOLLAR] = ACTIONS(427), + [anon_sym_TODO] = ACTIONS(429), + [anon_sym_WIP] = ACTIONS(429), + [anon_sym_NOTE] = ACTIONS(431), + [anon_sym_INFO] = ACTIONS(431), + [anon_sym_XXX] = ACTIONS(431), + [sym_fixme] = ACTIONS(413), + [sym__whitespace1] = ACTIONS(433), + [sym__newline] = ACTIONS(435), + [aux_sym__text_token1] = ACTIONS(437), + [sym__verbatim_begin] = ACTIONS(439), + }, + [70] = { + [sym__inline] = STATE(1029), + [sym__element] = STATE(58), + [sym_emphasis] = STATE(148), + [sym_emphasis_begin] = STATE(1184), + [sym_strong] = STATE(148), + [sym_strong_begin] = STATE(1185), + [sym_superscript] = STATE(148), + [sym_superscript_begin] = STATE(1186), + [sym_subscript] = STATE(148), + [sym_subscript_begin] = STATE(1187), + [sym_highlighted] = STATE(148), + [sym_highlighted_begin] = STATE(1188), + [sym_insert] = STATE(148), + [sym_insert_begin] = STATE(1189), + [sym_delete] = STATE(148), + [sym_delete_begin] = STATE(1190), + [sym_hard_line_break] = STATE(139), + [sym__smart_punctuation] = STATE(139), + [sym_autolink] = STATE(139), + [sym_footnote_reference] = STATE(148), + [sym_footnote_marker_begin] = STATE(1191), + [sym__image] = STATE(148), + [sym_full_reference_image] = STATE(148), + [sym_collapsed_reference_image] = STATE(148), + [sym_inline_image] = STATE(148), + [sym_image_description] = STATE(648), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(148), + [sym_full_reference_link] = STATE(148), + [sym_collapsed_reference_link] = STATE(148), + [sym_inline_link] = STATE(148), + [sym_link_text] = STATE(647), + [sym_span] = STATE(58), + [sym__bracketed_text_begin] = STATE(1212), + [sym__comment_with_spaces] = STATE(139), + [sym_raw_inline] = STATE(139), + [sym_math] = STATE(139), + [sym_verbatim] = STATE(139), + [sym__todo_highlights] = STATE(139), + [sym_todo] = STATE(139), + [sym_note] = STATE(139), + [sym__symbol_fallback] = STATE(139), + [aux_sym__text] = STATE(123), + [aux_sym__inline_repeat1] = STATE(58), + [anon_sym_LBRACE_] = ACTIONS(51), + [anon_sym__] = ACTIONS(53), + [anon_sym_LBRACE_STAR] = ACTIONS(55), + [anon_sym_STAR] = ACTIONS(57), + [anon_sym_LBRACE_CARET] = ACTIONS(59), + [anon_sym_CARET] = ACTIONS(59), + [anon_sym_LBRACE_TILDE] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(61), + [anon_sym_LBRACE_EQ] = ACTIONS(63), + [anon_sym_LBRACE_PLUS] = ACTIONS(65), + [anon_sym_LBRACE_DASH] = ACTIONS(67), + [anon_sym_BSLASH] = ACTIONS(69), + [sym_quotation_marks] = ACTIONS(71), + [sym_ellipsis] = ACTIONS(71), + [sym_em_dash] = ACTIONS(71), + [sym_en_dash] = ACTIONS(73), + [sym_backslash_escape] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(75), + [sym_symbol] = ACTIONS(71), + [anon_sym_LBRACK_CARET] = ACTIONS(77), + [anon_sym_BANG_LBRACK] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(85), + [anon_sym_TODO] = ACTIONS(87), + [anon_sym_WIP] = ACTIONS(87), + [anon_sym_NOTE] = ACTIONS(89), + [anon_sym_INFO] = ACTIONS(89), + [anon_sym_XXX] = ACTIONS(89), + [sym_fixme] = ACTIONS(71), + [sym__whitespace1] = ACTIONS(91), + [sym__newline] = ACTIONS(93), + [aux_sym__text_token1] = ACTIONS(95), + [sym__verbatim_begin] = ACTIONS(97), + }, + [71] = { + [sym__element] = STATE(71), + [sym_emphasis] = STATE(135), + [sym_emphasis_begin] = STATE(1174), + [sym_strong] = STATE(135), + [sym_strong_begin] = STATE(1175), + [sym_superscript] = STATE(135), + [sym_superscript_begin] = STATE(1176), + [sym_subscript] = STATE(135), + [sym_subscript_begin] = STATE(1177), + [sym_highlighted] = STATE(135), + [sym_highlighted_begin] = STATE(1178), + [sym_insert] = STATE(135), + [sym_insert_begin] = STATE(1179), + [sym_delete] = STATE(135), + [sym_delete_begin] = STATE(1180), [sym_hard_line_break] = STATE(138), [sym__smart_punctuation] = STATE(138), [sym_autolink] = STATE(138), - [sym_footnote_reference] = STATE(138), - [sym_footnote_marker_begin] = STATE(1099), - [sym__image] = STATE(138), - [sym_full_reference_image] = STATE(138), - [sym_collapsed_reference_image] = STATE(138), - [sym_inline_image] = STATE(138), - [sym_image_description] = STATE(626), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(138), - [sym_full_reference_link] = STATE(138), - [sym_collapsed_reference_link] = STATE(138), - [sym_inline_link] = STATE(138), - [sym_link_text] = STATE(627), - [sym_span] = STATE(536), - [sym__bracketed_text_begin] = STATE(1183), + [sym_footnote_reference] = STATE(135), + [sym_footnote_marker_begin] = STATE(1181), + [sym__image] = STATE(135), + [sym_full_reference_image] = STATE(135), + [sym_collapsed_reference_image] = STATE(135), + [sym_inline_image] = STATE(135), + [sym_image_description] = STATE(656), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(135), + [sym_full_reference_link] = STATE(135), + [sym_collapsed_reference_link] = STATE(135), + [sym_inline_link] = STATE(135), + [sym_link_text] = STATE(654), + [sym_span] = STATE(71), + [sym__bracketed_text_begin] = STATE(1211), [sym__comment_with_spaces] = STATE(138), [sym_raw_inline] = STATE(138), [sym_math] = STATE(138), @@ -11856,182 +10859,343 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(138), [sym_note] = STATE(138), [sym__symbol_fallback] = STATE(138), - [aux_sym__text] = STATE(127), - [aux_sym__inline_repeat1] = STATE(118), - [anon_sym_LBRACE_] = ACTIONS(149), - [anon_sym__] = ACTIONS(151), - [anon_sym_LBRACE_STAR] = ACTIONS(153), - [anon_sym_STAR] = ACTIONS(155), - [anon_sym_LBRACE_CARET] = ACTIONS(157), - [anon_sym_CARET] = ACTIONS(157), - [anon_sym_LBRACE_TILDE] = ACTIONS(159), - [anon_sym_TILDE] = ACTIONS(159), - [anon_sym_LBRACE_EQ] = ACTIONS(161), - [anon_sym_LBRACE_PLUS] = ACTIONS(163), - [anon_sym_LBRACE_DASH] = ACTIONS(165), - [anon_sym_BSLASH] = ACTIONS(167), - [sym_quotation_marks] = ACTIONS(169), - [sym_ellipsis] = ACTIONS(169), - [sym_em_dash] = ACTIONS(169), - [sym_en_dash] = ACTIONS(171), - [sym_backslash_escape] = ACTIONS(171), - [anon_sym_LT] = ACTIONS(173), - [sym_symbol] = ACTIONS(169), - [anon_sym_LBRACK_CARET] = ACTIONS(175), - [anon_sym_BANG_LBRACK] = ACTIONS(177), - [anon_sym_LBRACK] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(181), - [anon_sym_DOLLAR] = ACTIONS(183), - [anon_sym_TODO] = ACTIONS(185), - [anon_sym_WIP] = ACTIONS(185), - [anon_sym_NOTE] = ACTIONS(187), - [anon_sym_INFO] = ACTIONS(187), - [anon_sym_XXX] = ACTIONS(187), - [sym_fixme] = ACTIONS(169), - [sym__whitespace1] = ACTIONS(189), - [sym__newline] = ACTIONS(191), - [aux_sym__text_token1] = ACTIONS(193), - [sym__verbatim_begin] = ACTIONS(195), + [aux_sym__text] = STATE(121), + [aux_sym__inline_repeat1] = STATE(71), + [anon_sym_LBRACE_] = ACTIONS(863), + [anon_sym__] = ACTIONS(866), + [anon_sym_LBRACE_STAR] = ACTIONS(869), + [anon_sym_STAR] = ACTIONS(872), + [anon_sym_LBRACE_CARET] = ACTIONS(875), + [anon_sym_CARET] = ACTIONS(875), + [anon_sym_LBRACE_TILDE] = ACTIONS(878), + [anon_sym_TILDE] = ACTIONS(878), + [anon_sym_LBRACE_EQ] = ACTIONS(881), + [anon_sym_LBRACE_PLUS] = ACTIONS(884), + [anon_sym_LBRACE_DASH] = ACTIONS(887), + [anon_sym_BSLASH] = ACTIONS(890), + [sym_quotation_marks] = ACTIONS(893), + [sym_ellipsis] = ACTIONS(893), + [sym_em_dash] = ACTIONS(893), + [sym_en_dash] = ACTIONS(896), + [sym_backslash_escape] = ACTIONS(896), + [anon_sym_LT] = ACTIONS(899), + [sym_symbol] = ACTIONS(893), + [anon_sym_LBRACK_CARET] = ACTIONS(902), + [anon_sym_BANG_LBRACK] = ACTIONS(905), + [anon_sym_LBRACK] = ACTIONS(908), + [anon_sym_RBRACK] = ACTIONS(221), + [anon_sym_LPAREN] = ACTIONS(911), + [anon_sym_DOLLAR] = ACTIONS(914), + [anon_sym_TODO] = ACTIONS(917), + [anon_sym_WIP] = ACTIONS(917), + [anon_sym_NOTE] = ACTIONS(920), + [anon_sym_INFO] = ACTIONS(920), + [anon_sym_XXX] = ACTIONS(920), + [sym_fixme] = ACTIONS(893), + [sym__whitespace1] = ACTIONS(923), + [sym__newline] = ACTIONS(926), + [aux_sym__text_token1] = ACTIONS(929), + [sym__verbatim_begin] = ACTIONS(932), }, - [85] = { - [sym__inline_without_trailing_space] = STATE(870), - [sym__element] = STATE(581), + [72] = { + [sym__element] = STATE(72), [sym_emphasis] = STATE(141), - [sym_emphasis_begin] = STATE(1082), + [sym_emphasis_begin] = STATE(1095), [sym_strong] = STATE(141), - [sym_strong_begin] = STATE(1083), + [sym_strong_begin] = STATE(1094), [sym_superscript] = STATE(141), - [sym_superscript_begin] = STATE(1084), + [sym_superscript_begin] = STATE(1093), [sym_subscript] = STATE(141), - [sym_subscript_begin] = STATE(1085), + [sym_subscript_begin] = STATE(1092), [sym_highlighted] = STATE(141), - [sym_highlighted_begin] = STATE(1086), + [sym_highlighted_begin] = STATE(1084), [sym_insert] = STATE(141), - [sym_insert_begin] = STATE(1087), + [sym_insert_begin] = STATE(1082), [sym_delete] = STATE(141), - [sym_delete_begin] = STATE(1088), - [sym_hard_line_break] = STATE(141), - [sym__smart_punctuation] = STATE(141), - [sym_autolink] = STATE(141), + [sym_delete_begin] = STATE(1081), + [sym_hard_line_break] = STATE(151), + [sym__smart_punctuation] = STATE(151), + [sym_autolink] = STATE(151), [sym_footnote_reference] = STATE(141), - [sym_footnote_marker_begin] = STATE(1089), + [sym_footnote_marker_begin] = STATE(1080), [sym__image] = STATE(141), [sym_full_reference_image] = STATE(141), [sym_collapsed_reference_image] = STATE(141), [sym_inline_image] = STATE(141), - [sym_image_description] = STATE(642), - [sym__image_description_begin] = STATE(1057), + [sym_image_description] = STATE(666), + [sym__image_description_begin] = STATE(1079), [sym__link] = STATE(141), [sym_full_reference_link] = STATE(141), [sym_collapsed_reference_link] = STATE(141), [sym_inline_link] = STATE(141), - [sym_link_text] = STATE(629), - [sym_span] = STATE(581), - [sym__bracketed_text_begin] = STATE(1182), - [sym__comment_with_spaces] = STATE(141), - [sym_raw_inline] = STATE(141), - [sym_math] = STATE(141), - [sym_verbatim] = STATE(141), - [sym__todo_highlights] = STATE(141), - [sym_todo] = STATE(141), - [sym_note] = STATE(141), - [sym__symbol_fallback] = STATE(141), + [sym_link_text] = STATE(652), + [sym_span] = STATE(72), + [sym__bracketed_text_begin] = STATE(1078), + [sym__comment_with_spaces] = STATE(151), + [sym_raw_inline] = STATE(151), + [sym_math] = STATE(151), + [sym_verbatim] = STATE(151), + [sym__todo_highlights] = STATE(151), + [sym_todo] = STATE(151), + [sym_note] = STATE(151), + [sym__symbol_fallback] = STATE(151), [aux_sym__text] = STATE(125), - [aux_sym__inline_repeat1] = STATE(119), - [anon_sym_LBRACE_] = ACTIONS(585), - [anon_sym__] = ACTIONS(587), - [anon_sym_LBRACE_STAR] = ACTIONS(589), - [anon_sym_STAR] = ACTIONS(591), - [anon_sym_LBRACE_CARET] = ACTIONS(593), - [anon_sym_CARET] = ACTIONS(593), - [anon_sym_LBRACE_TILDE] = ACTIONS(595), - [anon_sym_TILDE] = ACTIONS(595), - [anon_sym_LBRACE_EQ] = ACTIONS(597), - [anon_sym_LBRACE_PLUS] = ACTIONS(599), - [anon_sym_LBRACE_DASH] = ACTIONS(601), - [anon_sym_BSLASH] = ACTIONS(603), - [sym_quotation_marks] = ACTIONS(605), - [sym_ellipsis] = ACTIONS(605), - [sym_em_dash] = ACTIONS(605), - [sym_en_dash] = ACTIONS(607), - [sym_backslash_escape] = ACTIONS(607), - [anon_sym_LT] = ACTIONS(609), - [sym_symbol] = ACTIONS(605), - [anon_sym_LBRACK_CARET] = ACTIONS(611), - [anon_sym_BANG_LBRACK] = ACTIONS(613), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_DOLLAR] = ACTIONS(619), - [anon_sym_TODO] = ACTIONS(621), - [anon_sym_WIP] = ACTIONS(621), - [anon_sym_NOTE] = ACTIONS(623), - [anon_sym_INFO] = ACTIONS(623), - [anon_sym_XXX] = ACTIONS(623), - [sym_fixme] = ACTIONS(605), - [sym__whitespace1] = ACTIONS(625), - [sym__newline] = ACTIONS(627), - [aux_sym__text_token1] = ACTIONS(629), - [sym__verbatim_begin] = ACTIONS(631), + [aux_sym__inline_repeat1] = STATE(72), + [ts_builtin_sym_end] = ACTIONS(221), + [anon_sym_LBRACE_] = ACTIONS(935), + [anon_sym__] = ACTIONS(938), + [anon_sym_LBRACE_STAR] = ACTIONS(941), + [anon_sym_STAR] = ACTIONS(944), + [anon_sym_LBRACE_CARET] = ACTIONS(947), + [anon_sym_CARET] = ACTIONS(947), + [anon_sym_LBRACE_TILDE] = ACTIONS(950), + [anon_sym_TILDE] = ACTIONS(950), + [anon_sym_LBRACE_EQ] = ACTIONS(953), + [anon_sym_LBRACE_PLUS] = ACTIONS(956), + [anon_sym_LBRACE_DASH] = ACTIONS(959), + [anon_sym_BSLASH] = ACTIONS(962), + [sym_quotation_marks] = ACTIONS(965), + [sym_ellipsis] = ACTIONS(965), + [sym_em_dash] = ACTIONS(965), + [sym_en_dash] = ACTIONS(968), + [sym_backslash_escape] = ACTIONS(968), + [anon_sym_LT] = ACTIONS(971), + [sym_symbol] = ACTIONS(965), + [anon_sym_LBRACK_CARET] = ACTIONS(974), + [anon_sym_BANG_LBRACK] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(980), + [anon_sym_LPAREN] = ACTIONS(983), + [anon_sym_DOLLAR] = ACTIONS(986), + [anon_sym_TODO] = ACTIONS(989), + [anon_sym_WIP] = ACTIONS(989), + [anon_sym_NOTE] = ACTIONS(992), + [anon_sym_INFO] = ACTIONS(992), + [anon_sym_XXX] = ACTIONS(992), + [sym_fixme] = ACTIONS(965), + [sym__whitespace1] = ACTIONS(995), + [sym__newline] = ACTIONS(998), + [aux_sym__text_token1] = ACTIONS(1001), + [sym__verbatim_begin] = ACTIONS(1004), }, - [86] = { - [sym__inline] = STATE(896), - [sym__element] = STATE(71), + [73] = { + [sym__inline] = STATE(1018), + [sym__element] = STATE(30), [sym_emphasis] = STATE(132), - [sym_emphasis_begin] = STATE(1152), + [sym_emphasis_begin] = STATE(1164), [sym_strong] = STATE(132), - [sym_strong_begin] = STATE(1153), + [sym_strong_begin] = STATE(1165), [sym_superscript] = STATE(132), - [sym_superscript_begin] = STATE(1154), + [sym_superscript_begin] = STATE(1166), [sym_subscript] = STATE(132), - [sym_subscript_begin] = STATE(1155), + [sym_subscript_begin] = STATE(1167), [sym_highlighted] = STATE(132), - [sym_highlighted_begin] = STATE(1156), + [sym_highlighted_begin] = STATE(1168), [sym_insert] = STATE(132), - [sym_insert_begin] = STATE(1157), + [sym_insert_begin] = STATE(1169), [sym_delete] = STATE(132), - [sym_delete_begin] = STATE(1158), - [sym_hard_line_break] = STATE(132), - [sym__smart_punctuation] = STATE(132), - [sym_autolink] = STATE(132), + [sym_delete_begin] = STATE(1170), + [sym_hard_line_break] = STATE(142), + [sym__smart_punctuation] = STATE(142), + [sym_autolink] = STATE(142), [sym_footnote_reference] = STATE(132), - [sym_footnote_marker_begin] = STATE(1159), + [sym_footnote_marker_begin] = STATE(1171), [sym__image] = STATE(132), [sym_full_reference_image] = STATE(132), [sym_collapsed_reference_image] = STATE(132), [sym_inline_image] = STATE(132), - [sym_image_description] = STATE(633), - [sym__image_description_begin] = STATE(1057), + [sym_image_description] = STATE(660), + [sym__image_description_begin] = STATE(1079), [sym__link] = STATE(132), [sym_full_reference_link] = STATE(132), [sym_collapsed_reference_link] = STATE(132), [sym_inline_link] = STATE(132), - [sym_link_text] = STATE(631), - [sym_span] = STATE(71), - [sym__bracketed_text_begin] = STATE(1189), - [sym__comment_with_spaces] = STATE(132), - [sym_raw_inline] = STATE(132), - [sym_math] = STATE(132), - [sym_verbatim] = STATE(132), - [sym__todo_highlights] = STATE(132), - [sym_todo] = STATE(132), - [sym_note] = STATE(132), - [sym__symbol_fallback] = STATE(132), - [aux_sym__text] = STATE(128), - [aux_sym__inline_repeat1] = STATE(71), - [anon_sym_LBRACE_] = ACTIONS(441), - [anon_sym__] = ACTIONS(443), - [anon_sym_LBRACE_STAR] = ACTIONS(445), - [anon_sym_STAR] = ACTIONS(447), - [anon_sym_LBRACE_CARET] = ACTIONS(449), - [anon_sym_CARET] = ACTIONS(449), - [anon_sym_LBRACE_TILDE] = ACTIONS(451), - [anon_sym_TILDE] = ACTIONS(451), - [anon_sym_LBRACE_EQ] = ACTIONS(453), - [anon_sym_LBRACE_PLUS] = ACTIONS(455), - [anon_sym_LBRACE_DASH] = ACTIONS(457), - [anon_sym_BSLASH] = ACTIONS(459), - [sym_quotation_marks] = ACTIONS(461), - [sym_ellipsis] = ACTIONS(461), + [sym_link_text] = STATE(659), + [sym_span] = STATE(30), + [sym__bracketed_text_begin] = STATE(1210), + [sym__comment_with_spaces] = STATE(142), + [sym_raw_inline] = STATE(142), + [sym_math] = STATE(142), + [sym_verbatim] = STATE(142), + [sym__todo_highlights] = STATE(142), + [sym_todo] = STATE(142), + [sym_note] = STATE(142), + [sym__symbol_fallback] = STATE(142), + [aux_sym__text] = STATE(126), + [aux_sym__inline_repeat1] = STATE(30), + [anon_sym_LBRACE_] = ACTIONS(393), + [anon_sym__] = ACTIONS(395), + [anon_sym_LBRACE_STAR] = ACTIONS(397), + [anon_sym_STAR] = ACTIONS(399), + [anon_sym_LBRACE_CARET] = ACTIONS(401), + [anon_sym_CARET] = ACTIONS(401), + [anon_sym_LBRACE_TILDE] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_LBRACE_EQ] = ACTIONS(405), + [anon_sym_LBRACE_PLUS] = ACTIONS(407), + [anon_sym_LBRACE_DASH] = ACTIONS(409), + [anon_sym_BSLASH] = ACTIONS(411), + [sym_quotation_marks] = ACTIONS(413), + [sym_ellipsis] = ACTIONS(413), + [sym_em_dash] = ACTIONS(413), + [sym_en_dash] = ACTIONS(415), + [sym_backslash_escape] = ACTIONS(415), + [anon_sym_LT] = ACTIONS(417), + [sym_symbol] = ACTIONS(413), + [anon_sym_LBRACK_CARET] = ACTIONS(419), + [anon_sym_BANG_LBRACK] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(423), + [anon_sym_LPAREN] = ACTIONS(425), + [anon_sym_DOLLAR] = ACTIONS(427), + [anon_sym_TODO] = ACTIONS(429), + [anon_sym_WIP] = ACTIONS(429), + [anon_sym_NOTE] = ACTIONS(431), + [anon_sym_INFO] = ACTIONS(431), + [anon_sym_XXX] = ACTIONS(431), + [sym_fixme] = ACTIONS(413), + [sym__whitespace1] = ACTIONS(433), + [sym__newline] = ACTIONS(435), + [aux_sym__text_token1] = ACTIONS(437), + [sym__verbatim_begin] = ACTIONS(439), + }, + [74] = { + [sym__inline] = STATE(948), + [sym__element] = STATE(46), + [sym_emphasis] = STATE(135), + [sym_emphasis_begin] = STATE(1174), + [sym_strong] = STATE(135), + [sym_strong_begin] = STATE(1175), + [sym_superscript] = STATE(135), + [sym_superscript_begin] = STATE(1176), + [sym_subscript] = STATE(135), + [sym_subscript_begin] = STATE(1177), + [sym_highlighted] = STATE(135), + [sym_highlighted_begin] = STATE(1178), + [sym_insert] = STATE(135), + [sym_insert_begin] = STATE(1179), + [sym_delete] = STATE(135), + [sym_delete_begin] = STATE(1180), + [sym_hard_line_break] = STATE(138), + [sym__smart_punctuation] = STATE(138), + [sym_autolink] = STATE(138), + [sym_footnote_reference] = STATE(135), + [sym_footnote_marker_begin] = STATE(1181), + [sym__image] = STATE(135), + [sym_full_reference_image] = STATE(135), + [sym_collapsed_reference_image] = STATE(135), + [sym_inline_image] = STATE(135), + [sym_image_description] = STATE(656), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(135), + [sym_full_reference_link] = STATE(135), + [sym_collapsed_reference_link] = STATE(135), + [sym_inline_link] = STATE(135), + [sym_link_text] = STATE(654), + [sym_span] = STATE(46), + [sym__bracketed_text_begin] = STATE(1211), + [sym__comment_with_spaces] = STATE(138), + [sym_raw_inline] = STATE(138), + [sym_math] = STATE(138), + [sym_verbatim] = STATE(138), + [sym__todo_highlights] = STATE(138), + [sym_todo] = STATE(138), + [sym_note] = STATE(138), + [sym__symbol_fallback] = STATE(138), + [aux_sym__text] = STATE(121), + [aux_sym__inline_repeat1] = STATE(46), + [anon_sym_LBRACE_] = ACTIONS(345), + [anon_sym__] = ACTIONS(347), + [anon_sym_LBRACE_STAR] = ACTIONS(349), + [anon_sym_STAR] = ACTIONS(351), + [anon_sym_LBRACE_CARET] = ACTIONS(353), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_LBRACE_TILDE] = ACTIONS(355), + [anon_sym_TILDE] = ACTIONS(355), + [anon_sym_LBRACE_EQ] = ACTIONS(357), + [anon_sym_LBRACE_PLUS] = ACTIONS(359), + [anon_sym_LBRACE_DASH] = ACTIONS(361), + [anon_sym_BSLASH] = ACTIONS(363), + [sym_quotation_marks] = ACTIONS(365), + [sym_ellipsis] = ACTIONS(365), + [sym_em_dash] = ACTIONS(365), + [sym_en_dash] = ACTIONS(367), + [sym_backslash_escape] = ACTIONS(367), + [anon_sym_LT] = ACTIONS(369), + [sym_symbol] = ACTIONS(365), + [anon_sym_LBRACK_CARET] = ACTIONS(371), + [anon_sym_BANG_LBRACK] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(375), + [anon_sym_LPAREN] = ACTIONS(377), + [anon_sym_DOLLAR] = ACTIONS(379), + [anon_sym_TODO] = ACTIONS(381), + [anon_sym_WIP] = ACTIONS(381), + [anon_sym_NOTE] = ACTIONS(383), + [anon_sym_INFO] = ACTIONS(383), + [anon_sym_XXX] = ACTIONS(383), + [sym_fixme] = ACTIONS(365), + [sym__whitespace1] = ACTIONS(385), + [sym__newline] = ACTIONS(387), + [aux_sym__text_token1] = ACTIONS(389), + [sym__verbatim_begin] = ACTIONS(391), + }, + [75] = { + [sym__inline_without_trailing_space] = STATE(1153), + [sym__element] = STATE(594), + [sym_emphasis] = STATE(149), + [sym_emphasis_begin] = STATE(1104), + [sym_strong] = STATE(149), + [sym_strong_begin] = STATE(1105), + [sym_superscript] = STATE(149), + [sym_superscript_begin] = STATE(1106), + [sym_subscript] = STATE(149), + [sym_subscript_begin] = STATE(1107), + [sym_highlighted] = STATE(149), + [sym_highlighted_begin] = STATE(1108), + [sym_insert] = STATE(149), + [sym_insert_begin] = STATE(1109), + [sym_delete] = STATE(149), + [sym_delete_begin] = STATE(1110), + [sym_hard_line_break] = STATE(143), + [sym__smart_punctuation] = STATE(143), + [sym_autolink] = STATE(143), + [sym_footnote_reference] = STATE(149), + [sym_footnote_marker_begin] = STATE(1111), + [sym__image] = STATE(149), + [sym_full_reference_image] = STATE(149), + [sym_collapsed_reference_image] = STATE(149), + [sym_inline_image] = STATE(149), + [sym_image_description] = STATE(658), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(149), + [sym_full_reference_link] = STATE(149), + [sym_collapsed_reference_link] = STATE(149), + [sym_inline_link] = STATE(149), + [sym_link_text] = STATE(672), + [sym_span] = STATE(594), + [sym__bracketed_text_begin] = STATE(1204), + [sym__comment_with_spaces] = STATE(143), + [sym_raw_inline] = STATE(143), + [sym_math] = STATE(143), + [sym_verbatim] = STATE(143), + [sym__todo_highlights] = STATE(143), + [sym_todo] = STATE(143), + [sym_note] = STATE(143), + [sym__symbol_fallback] = STATE(143), + [aux_sym__text] = STATE(127), + [aux_sym__inline_repeat1] = STATE(120), + [anon_sym_LBRACE_] = ACTIONS(441), + [anon_sym__] = ACTIONS(443), + [anon_sym_LBRACE_STAR] = ACTIONS(445), + [anon_sym_STAR] = ACTIONS(447), + [anon_sym_LBRACE_CARET] = ACTIONS(449), + [anon_sym_CARET] = ACTIONS(449), + [anon_sym_LBRACE_TILDE] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_LBRACE_EQ] = ACTIONS(453), + [anon_sym_LBRACE_PLUS] = ACTIONS(455), + [anon_sym_LBRACE_DASH] = ACTIONS(457), + [anon_sym_BSLASH] = ACTIONS(459), + [sym_quotation_marks] = ACTIONS(461), + [sym_ellipsis] = ACTIONS(461), [sym_em_dash] = ACTIONS(461), [sym_en_dash] = ACTIONS(463), [sym_backslash_escape] = ACTIONS(463), @@ -12053,51 +11217,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token1] = ACTIONS(485), [sym__verbatim_begin] = ACTIONS(487), }, - [87] = { - [sym__inline] = STATE(898), - [sym__element] = STATE(65), - [sym_emphasis] = STATE(133), - [sym_emphasis_begin] = STATE(1142), - [sym_strong] = STATE(133), - [sym_strong_begin] = STATE(1143), - [sym_superscript] = STATE(133), - [sym_superscript_begin] = STATE(1144), - [sym_subscript] = STATE(133), - [sym_subscript_begin] = STATE(1145), - [sym_highlighted] = STATE(133), - [sym_highlighted_begin] = STATE(1146), - [sym_insert] = STATE(133), - [sym_insert_begin] = STATE(1147), - [sym_delete] = STATE(133), - [sym_delete_begin] = STATE(1148), - [sym_hard_line_break] = STATE(133), - [sym__smart_punctuation] = STATE(133), - [sym_autolink] = STATE(133), - [sym_footnote_reference] = STATE(133), - [sym_footnote_marker_begin] = STATE(1149), - [sym__image] = STATE(133), - [sym_full_reference_image] = STATE(133), - [sym_collapsed_reference_image] = STATE(133), - [sym_inline_image] = STATE(133), - [sym_image_description] = STATE(638), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(133), - [sym_full_reference_link] = STATE(133), - [sym_collapsed_reference_link] = STATE(133), - [sym_inline_link] = STATE(133), - [sym_link_text] = STATE(637), - [sym_span] = STATE(65), - [sym__bracketed_text_begin] = STATE(1188), - [sym__comment_with_spaces] = STATE(133), - [sym_raw_inline] = STATE(133), - [sym_math] = STATE(133), - [sym_verbatim] = STATE(133), - [sym__todo_highlights] = STATE(133), - [sym_todo] = STATE(133), - [sym_note] = STATE(133), - [sym__symbol_fallback] = STATE(133), - [aux_sym__text] = STATE(129), - [aux_sym__inline_repeat1] = STATE(65), + [76] = { + [sym__inline_without_trailing_space] = STATE(1143), + [sym__element] = STATE(550), + [sym_emphasis] = STATE(137), + [sym_emphasis_begin] = STATE(1114), + [sym_strong] = STATE(137), + [sym_strong_begin] = STATE(1115), + [sym_superscript] = STATE(137), + [sym_superscript_begin] = STATE(1116), + [sym_subscript] = STATE(137), + [sym_subscript_begin] = STATE(1117), + [sym_highlighted] = STATE(137), + [sym_highlighted_begin] = STATE(1118), + [sym_insert] = STATE(137), + [sym_insert_begin] = STATE(1119), + [sym_delete] = STATE(137), + [sym_delete_begin] = STATE(1120), + [sym_hard_line_break] = STATE(131), + [sym__smart_punctuation] = STATE(131), + [sym_autolink] = STATE(131), + [sym_footnote_reference] = STATE(137), + [sym_footnote_marker_begin] = STATE(1121), + [sym__image] = STATE(137), + [sym_full_reference_image] = STATE(137), + [sym_collapsed_reference_image] = STATE(137), + [sym_inline_image] = STATE(137), + [sym_image_description] = STATE(649), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(137), + [sym_full_reference_link] = STATE(137), + [sym_collapsed_reference_link] = STATE(137), + [sym_inline_link] = STATE(137), + [sym_link_text] = STATE(650), + [sym_span] = STATE(550), + [sym__bracketed_text_begin] = STATE(1205), + [sym__comment_with_spaces] = STATE(131), + [sym_raw_inline] = STATE(131), + [sym_math] = STATE(131), + [sym_verbatim] = STATE(131), + [sym__todo_highlights] = STATE(131), + [sym_todo] = STATE(131), + [sym_note] = STATE(131), + [sym__symbol_fallback] = STATE(131), + [aux_sym__text] = STATE(130), + [aux_sym__inline_repeat1] = STATE(119), [anon_sym_LBRACE_] = ACTIONS(489), [anon_sym__] = ACTIONS(491), [anon_sym_LBRACE_STAR] = ACTIONS(493), @@ -12133,51 +11297,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token1] = ACTIONS(533), [sym__verbatim_begin] = ACTIONS(535), }, - [88] = { - [sym__inline] = STATE(899), - [sym__element] = STATE(37), - [sym_emphasis] = STATE(131), - [sym_emphasis_begin] = STATE(1132), - [sym_strong] = STATE(131), - [sym_strong_begin] = STATE(1133), - [sym_superscript] = STATE(131), - [sym_superscript_begin] = STATE(1134), - [sym_subscript] = STATE(131), - [sym_subscript_begin] = STATE(1135), - [sym_highlighted] = STATE(131), - [sym_highlighted_begin] = STATE(1136), - [sym_insert] = STATE(131), - [sym_insert_begin] = STATE(1137), - [sym_delete] = STATE(131), - [sym_delete_begin] = STATE(1138), - [sym_hard_line_break] = STATE(131), - [sym__smart_punctuation] = STATE(131), - [sym_autolink] = STATE(131), - [sym_footnote_reference] = STATE(131), - [sym_footnote_marker_begin] = STATE(1139), - [sym__image] = STATE(131), - [sym_full_reference_image] = STATE(131), - [sym_collapsed_reference_image] = STATE(131), - [sym_inline_image] = STATE(131), - [sym_image_description] = STATE(643), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(131), - [sym_full_reference_link] = STATE(131), - [sym_collapsed_reference_link] = STATE(131), - [sym_inline_link] = STATE(131), - [sym_link_text] = STATE(619), - [sym_span] = STATE(37), - [sym__bracketed_text_begin] = STATE(1187), - [sym__comment_with_spaces] = STATE(131), - [sym_raw_inline] = STATE(131), - [sym_math] = STATE(131), - [sym_verbatim] = STATE(131), - [sym__todo_highlights] = STATE(131), - [sym_todo] = STATE(131), - [sym_note] = STATE(131), - [sym__symbol_fallback] = STATE(131), - [aux_sym__text] = STATE(123), - [aux_sym__inline_repeat1] = STATE(37), + [77] = { + [sym__inline] = STATE(1123), + [sym__element] = STATE(64), + [sym_emphasis] = STATE(133), + [sym_emphasis_begin] = STATE(1124), + [sym_strong] = STATE(133), + [sym_strong_begin] = STATE(1125), + [sym_superscript] = STATE(133), + [sym_superscript_begin] = STATE(1126), + [sym_subscript] = STATE(133), + [sym_subscript_begin] = STATE(1127), + [sym_highlighted] = STATE(133), + [sym_highlighted_begin] = STATE(1128), + [sym_insert] = STATE(133), + [sym_insert_begin] = STATE(1129), + [sym_delete] = STATE(133), + [sym_delete_begin] = STATE(1130), + [sym_hard_line_break] = STATE(140), + [sym__smart_punctuation] = STATE(140), + [sym_autolink] = STATE(140), + [sym_footnote_reference] = STATE(133), + [sym_footnote_marker_begin] = STATE(1131), + [sym__image] = STATE(133), + [sym_full_reference_image] = STATE(133), + [sym_collapsed_reference_image] = STATE(133), + [sym_inline_image] = STATE(133), + [sym_image_description] = STATE(663), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(133), + [sym_full_reference_link] = STATE(133), + [sym_collapsed_reference_link] = STATE(133), + [sym_inline_link] = STATE(133), + [sym_link_text] = STATE(669), + [sym_span] = STATE(64), + [sym__bracketed_text_begin] = STATE(1206), + [sym__comment_with_spaces] = STATE(140), + [sym_raw_inline] = STATE(140), + [sym_math] = STATE(140), + [sym_verbatim] = STATE(140), + [sym__todo_highlights] = STATE(140), + [sym_todo] = STATE(140), + [sym_note] = STATE(140), + [sym__symbol_fallback] = STATE(140), + [aux_sym__text] = STATE(122), + [aux_sym__inline_repeat1] = STATE(64), [anon_sym_LBRACE_] = ACTIONS(537), [anon_sym__] = ACTIONS(539), [anon_sym_LBRACE_STAR] = ACTIONS(541), @@ -12213,371 +11377,611 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token1] = ACTIONS(581), [sym__verbatim_begin] = ACTIONS(583), }, - [89] = { - [sym__inline] = STATE(900), + [78] = { + [sym__inline] = STATE(881), + [sym__element] = STATE(46), + [sym_emphasis] = STATE(135), + [sym_emphasis_begin] = STATE(1174), + [sym_strong] = STATE(135), + [sym_strong_begin] = STATE(1175), + [sym_superscript] = STATE(135), + [sym_superscript_begin] = STATE(1176), + [sym_subscript] = STATE(135), + [sym_subscript_begin] = STATE(1177), + [sym_highlighted] = STATE(135), + [sym_highlighted_begin] = STATE(1178), + [sym_insert] = STATE(135), + [sym_insert_begin] = STATE(1179), + [sym_delete] = STATE(135), + [sym_delete_begin] = STATE(1180), + [sym_hard_line_break] = STATE(138), + [sym__smart_punctuation] = STATE(138), + [sym_autolink] = STATE(138), + [sym_footnote_reference] = STATE(135), + [sym_footnote_marker_begin] = STATE(1181), + [sym__image] = STATE(135), + [sym_full_reference_image] = STATE(135), + [sym_collapsed_reference_image] = STATE(135), + [sym_inline_image] = STATE(135), + [sym_image_description] = STATE(656), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(135), + [sym_full_reference_link] = STATE(135), + [sym_collapsed_reference_link] = STATE(135), + [sym_inline_link] = STATE(135), + [sym_link_text] = STATE(654), + [sym_span] = STATE(46), + [sym__bracketed_text_begin] = STATE(1211), + [sym__comment_with_spaces] = STATE(138), + [sym_raw_inline] = STATE(138), + [sym_math] = STATE(138), + [sym_verbatim] = STATE(138), + [sym__todo_highlights] = STATE(138), + [sym_todo] = STATE(138), + [sym_note] = STATE(138), + [sym__symbol_fallback] = STATE(138), + [aux_sym__text] = STATE(121), + [aux_sym__inline_repeat1] = STATE(46), + [anon_sym_LBRACE_] = ACTIONS(345), + [anon_sym__] = ACTIONS(347), + [anon_sym_LBRACE_STAR] = ACTIONS(349), + [anon_sym_STAR] = ACTIONS(351), + [anon_sym_LBRACE_CARET] = ACTIONS(353), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_LBRACE_TILDE] = ACTIONS(355), + [anon_sym_TILDE] = ACTIONS(355), + [anon_sym_LBRACE_EQ] = ACTIONS(357), + [anon_sym_LBRACE_PLUS] = ACTIONS(359), + [anon_sym_LBRACE_DASH] = ACTIONS(361), + [anon_sym_BSLASH] = ACTIONS(363), + [sym_quotation_marks] = ACTIONS(365), + [sym_ellipsis] = ACTIONS(365), + [sym_em_dash] = ACTIONS(365), + [sym_en_dash] = ACTIONS(367), + [sym_backslash_escape] = ACTIONS(367), + [anon_sym_LT] = ACTIONS(369), + [sym_symbol] = ACTIONS(365), + [anon_sym_LBRACK_CARET] = ACTIONS(371), + [anon_sym_BANG_LBRACK] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(375), + [anon_sym_LPAREN] = ACTIONS(377), + [anon_sym_DOLLAR] = ACTIONS(379), + [anon_sym_TODO] = ACTIONS(381), + [anon_sym_WIP] = ACTIONS(381), + [anon_sym_NOTE] = ACTIONS(383), + [anon_sym_INFO] = ACTIONS(383), + [anon_sym_XXX] = ACTIONS(383), + [sym_fixme] = ACTIONS(365), + [sym__whitespace1] = ACTIONS(385), + [sym__newline] = ACTIONS(387), + [aux_sym__text_token1] = ACTIONS(389), + [sym__verbatim_begin] = ACTIONS(391), + }, + [79] = { + [sym__inline] = STATE(884), + [sym__element] = STATE(30), + [sym_emphasis] = STATE(132), + [sym_emphasis_begin] = STATE(1164), + [sym_strong] = STATE(132), + [sym_strong_begin] = STATE(1165), + [sym_superscript] = STATE(132), + [sym_superscript_begin] = STATE(1166), + [sym_subscript] = STATE(132), + [sym_subscript_begin] = STATE(1167), + [sym_highlighted] = STATE(132), + [sym_highlighted_begin] = STATE(1168), + [sym_insert] = STATE(132), + [sym_insert_begin] = STATE(1169), + [sym_delete] = STATE(132), + [sym_delete_begin] = STATE(1170), + [sym_hard_line_break] = STATE(142), + [sym__smart_punctuation] = STATE(142), + [sym_autolink] = STATE(142), + [sym_footnote_reference] = STATE(132), + [sym_footnote_marker_begin] = STATE(1171), + [sym__image] = STATE(132), + [sym_full_reference_image] = STATE(132), + [sym_collapsed_reference_image] = STATE(132), + [sym_inline_image] = STATE(132), + [sym_image_description] = STATE(660), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(132), + [sym_full_reference_link] = STATE(132), + [sym_collapsed_reference_link] = STATE(132), + [sym_inline_link] = STATE(132), + [sym_link_text] = STATE(659), + [sym_span] = STATE(30), + [sym__bracketed_text_begin] = STATE(1210), + [sym__comment_with_spaces] = STATE(142), + [sym_raw_inline] = STATE(142), + [sym_math] = STATE(142), + [sym_verbatim] = STATE(142), + [sym__todo_highlights] = STATE(142), + [sym_todo] = STATE(142), + [sym_note] = STATE(142), + [sym__symbol_fallback] = STATE(142), + [aux_sym__text] = STATE(126), + [aux_sym__inline_repeat1] = STATE(30), + [anon_sym_LBRACE_] = ACTIONS(393), + [anon_sym__] = ACTIONS(395), + [anon_sym_LBRACE_STAR] = ACTIONS(397), + [anon_sym_STAR] = ACTIONS(399), + [anon_sym_LBRACE_CARET] = ACTIONS(401), + [anon_sym_CARET] = ACTIONS(401), + [anon_sym_LBRACE_TILDE] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_LBRACE_EQ] = ACTIONS(405), + [anon_sym_LBRACE_PLUS] = ACTIONS(407), + [anon_sym_LBRACE_DASH] = ACTIONS(409), + [anon_sym_BSLASH] = ACTIONS(411), + [sym_quotation_marks] = ACTIONS(413), + [sym_ellipsis] = ACTIONS(413), + [sym_em_dash] = ACTIONS(413), + [sym_en_dash] = ACTIONS(415), + [sym_backslash_escape] = ACTIONS(415), + [anon_sym_LT] = ACTIONS(417), + [sym_symbol] = ACTIONS(413), + [anon_sym_LBRACK_CARET] = ACTIONS(419), + [anon_sym_BANG_LBRACK] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(423), + [anon_sym_LPAREN] = ACTIONS(425), + [anon_sym_DOLLAR] = ACTIONS(427), + [anon_sym_TODO] = ACTIONS(429), + [anon_sym_WIP] = ACTIONS(429), + [anon_sym_NOTE] = ACTIONS(431), + [anon_sym_INFO] = ACTIONS(431), + [anon_sym_XXX] = ACTIONS(431), + [sym_fixme] = ACTIONS(413), + [sym__whitespace1] = ACTIONS(433), + [sym__newline] = ACTIONS(435), + [aux_sym__text_token1] = ACTIONS(437), + [sym__verbatim_begin] = ACTIONS(439), + }, + [80] = { + [sym__inline] = STATE(885), + [sym__element] = STATE(22), + [sym_emphasis] = STATE(147), + [sym_emphasis_begin] = STATE(1154), + [sym_strong] = STATE(147), + [sym_strong_begin] = STATE(1155), + [sym_superscript] = STATE(147), + [sym_superscript_begin] = STATE(1156), + [sym_subscript] = STATE(147), + [sym_subscript_begin] = STATE(1157), + [sym_highlighted] = STATE(147), + [sym_highlighted_begin] = STATE(1158), + [sym_insert] = STATE(147), + [sym_insert_begin] = STATE(1159), + [sym_delete] = STATE(147), + [sym_delete_begin] = STATE(1160), + [sym_hard_line_break] = STATE(145), + [sym__smart_punctuation] = STATE(145), + [sym_autolink] = STATE(145), + [sym_footnote_reference] = STATE(147), + [sym_footnote_marker_begin] = STATE(1161), + [sym__image] = STATE(147), + [sym_full_reference_image] = STATE(147), + [sym_collapsed_reference_image] = STATE(147), + [sym_inline_image] = STATE(147), + [sym_image_description] = STATE(665), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(147), + [sym_full_reference_link] = STATE(147), + [sym_collapsed_reference_link] = STATE(147), + [sym_inline_link] = STATE(147), + [sym_link_text] = STATE(664), + [sym_span] = STATE(22), + [sym__bracketed_text_begin] = STATE(1209), + [sym__comment_with_spaces] = STATE(145), + [sym_raw_inline] = STATE(145), + [sym_math] = STATE(145), + [sym_verbatim] = STATE(145), + [sym__todo_highlights] = STATE(145), + [sym_todo] = STATE(145), + [sym_note] = STATE(145), + [sym__symbol_fallback] = STATE(145), + [aux_sym__text] = STATE(124), + [aux_sym__inline_repeat1] = STATE(22), + [anon_sym_LBRACE_] = ACTIONS(101), + [anon_sym__] = ACTIONS(103), + [anon_sym_LBRACE_STAR] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(107), + [anon_sym_LBRACE_CARET] = ACTIONS(109), + [anon_sym_CARET] = ACTIONS(109), + [anon_sym_LBRACE_TILDE] = ACTIONS(111), + [anon_sym_TILDE] = ACTIONS(111), + [anon_sym_LBRACE_EQ] = ACTIONS(113), + [anon_sym_LBRACE_PLUS] = ACTIONS(115), + [anon_sym_LBRACE_DASH] = ACTIONS(117), + [anon_sym_BSLASH] = ACTIONS(119), + [sym_quotation_marks] = ACTIONS(121), + [sym_ellipsis] = ACTIONS(121), + [sym_em_dash] = ACTIONS(121), + [sym_en_dash] = ACTIONS(123), + [sym_backslash_escape] = ACTIONS(123), + [anon_sym_LT] = ACTIONS(125), + [sym_symbol] = ACTIONS(121), + [anon_sym_LBRACK_CARET] = ACTIONS(127), + [anon_sym_BANG_LBRACK] = ACTIONS(129), + [anon_sym_LBRACK] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_DOLLAR] = ACTIONS(135), + [anon_sym_TODO] = ACTIONS(137), + [anon_sym_WIP] = ACTIONS(137), + [anon_sym_NOTE] = ACTIONS(139), + [anon_sym_INFO] = ACTIONS(139), + [anon_sym_XXX] = ACTIONS(139), + [sym_fixme] = ACTIONS(121), + [sym__whitespace1] = ACTIONS(141), + [sym__newline] = ACTIONS(143), + [aux_sym__text_token1] = ACTIONS(145), + [sym__verbatim_begin] = ACTIONS(147), + }, + [81] = { + [sym__inline] = STATE(886), + [sym__element] = STATE(110), + [sym_emphasis] = STATE(146), + [sym_emphasis_begin] = STATE(1144), + [sym_strong] = STATE(146), + [sym_strong_begin] = STATE(1145), + [sym_superscript] = STATE(146), + [sym_superscript_begin] = STATE(1146), + [sym_subscript] = STATE(146), + [sym_subscript_begin] = STATE(1147), + [sym_highlighted] = STATE(146), + [sym_highlighted_begin] = STATE(1148), + [sym_insert] = STATE(146), + [sym_insert_begin] = STATE(1149), + [sym_delete] = STATE(146), + [sym_delete_begin] = STATE(1150), + [sym_hard_line_break] = STATE(144), + [sym__smart_punctuation] = STATE(144), + [sym_autolink] = STATE(144), + [sym_footnote_reference] = STATE(146), + [sym_footnote_marker_begin] = STATE(1151), + [sym__image] = STATE(146), + [sym_full_reference_image] = STATE(146), + [sym_collapsed_reference_image] = STATE(146), + [sym_inline_image] = STATE(146), + [sym_image_description] = STATE(673), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(146), + [sym_full_reference_link] = STATE(146), + [sym_collapsed_reference_link] = STATE(146), + [sym_inline_link] = STATE(146), + [sym_link_text] = STATE(662), + [sym_span] = STATE(110), + [sym__bracketed_text_begin] = STATE(1208), + [sym__comment_with_spaces] = STATE(144), + [sym_raw_inline] = STATE(144), + [sym_math] = STATE(144), + [sym_verbatim] = STATE(144), + [sym__todo_highlights] = STATE(144), + [sym_todo] = STATE(144), + [sym_note] = STATE(144), + [sym__symbol_fallback] = STATE(144), + [aux_sym__text] = STATE(128), + [aux_sym__inline_repeat1] = STATE(110), + [anon_sym_LBRACE_] = ACTIONS(587), + [anon_sym__] = ACTIONS(589), + [anon_sym_LBRACE_STAR] = ACTIONS(591), + [anon_sym_STAR] = ACTIONS(593), + [anon_sym_LBRACE_CARET] = ACTIONS(595), + [anon_sym_CARET] = ACTIONS(595), + [anon_sym_LBRACE_TILDE] = ACTIONS(597), + [anon_sym_TILDE] = ACTIONS(597), + [anon_sym_LBRACE_EQ] = ACTIONS(599), + [anon_sym_LBRACE_PLUS] = ACTIONS(601), + [anon_sym_LBRACE_DASH] = ACTIONS(603), + [anon_sym_BSLASH] = ACTIONS(605), + [sym_quotation_marks] = ACTIONS(607), + [sym_ellipsis] = ACTIONS(607), + [sym_em_dash] = ACTIONS(607), + [sym_en_dash] = ACTIONS(609), + [sym_backslash_escape] = ACTIONS(609), + [anon_sym_LT] = ACTIONS(611), + [sym_symbol] = ACTIONS(607), + [anon_sym_LBRACK_CARET] = ACTIONS(613), + [anon_sym_BANG_LBRACK] = ACTIONS(615), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_LPAREN] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [anon_sym_TODO] = ACTIONS(623), + [anon_sym_WIP] = ACTIONS(623), + [anon_sym_NOTE] = ACTIONS(625), + [anon_sym_INFO] = ACTIONS(625), + [anon_sym_XXX] = ACTIONS(625), + [sym_fixme] = ACTIONS(607), + [sym__whitespace1] = ACTIONS(627), + [sym__newline] = ACTIONS(629), + [aux_sym__text_token1] = ACTIONS(631), + [sym__verbatim_begin] = ACTIONS(633), + }, + [82] = { + [sym__inline] = STATE(1113), [sym__element] = STATE(14), [sym_emphasis] = STATE(136), - [sym_emphasis_begin] = STATE(1122), + [sym_emphasis_begin] = STATE(1134), [sym_strong] = STATE(136), - [sym_strong_begin] = STATE(1123), + [sym_strong_begin] = STATE(1135), [sym_superscript] = STATE(136), - [sym_superscript_begin] = STATE(1124), + [sym_superscript_begin] = STATE(1136), [sym_subscript] = STATE(136), - [sym_subscript_begin] = STATE(1125), + [sym_subscript_begin] = STATE(1137), [sym_highlighted] = STATE(136), - [sym_highlighted_begin] = STATE(1126), + [sym_highlighted_begin] = STATE(1138), [sym_insert] = STATE(136), - [sym_insert_begin] = STATE(1127), + [sym_insert_begin] = STATE(1139), [sym_delete] = STATE(136), - [sym_delete_begin] = STATE(1128), - [sym_hard_line_break] = STATE(136), - [sym__smart_punctuation] = STATE(136), - [sym_autolink] = STATE(136), + [sym_delete_begin] = STATE(1140), + [sym_hard_line_break] = STATE(134), + [sym__smart_punctuation] = STATE(134), + [sym_autolink] = STATE(134), [sym_footnote_reference] = STATE(136), - [sym_footnote_marker_begin] = STATE(1129), + [sym_footnote_marker_begin] = STATE(1141), [sym__image] = STATE(136), [sym_full_reference_image] = STATE(136), [sym_collapsed_reference_image] = STATE(136), [sym_inline_image] = STATE(136), - [sym_image_description] = STATE(651), - [sym__image_description_begin] = STATE(1057), + [sym_image_description] = STATE(670), + [sym__image_description_begin] = STATE(1079), [sym__link] = STATE(136), [sym_full_reference_link] = STATE(136), [sym_collapsed_reference_link] = STATE(136), [sym_inline_link] = STATE(136), - [sym_link_text] = STATE(650), + [sym_link_text] = STATE(671), [sym_span] = STATE(14), - [sym__bracketed_text_begin] = STATE(1186), - [sym__comment_with_spaces] = STATE(136), - [sym_raw_inline] = STATE(136), - [sym_math] = STATE(136), - [sym_verbatim] = STATE(136), - [sym__todo_highlights] = STATE(136), - [sym_todo] = STATE(136), - [sym_note] = STATE(136), - [sym__symbol_fallback] = STATE(136), - [aux_sym__text] = STATE(130), + [sym__bracketed_text_begin] = STATE(1207), + [sym__comment_with_spaces] = STATE(134), + [sym_raw_inline] = STATE(134), + [sym_math] = STATE(134), + [sym_verbatim] = STATE(134), + [sym__todo_highlights] = STATE(134), + [sym_todo] = STATE(134), + [sym_note] = STATE(134), + [sym__symbol_fallback] = STATE(134), + [aux_sym__text] = STATE(129), [aux_sym__inline_repeat1] = STATE(14), - [anon_sym_LBRACE_] = ACTIONS(319), - [anon_sym__] = ACTIONS(321), - [anon_sym_LBRACE_STAR] = ACTIONS(323), - [anon_sym_STAR] = ACTIONS(325), - [anon_sym_LBRACE_CARET] = ACTIONS(327), - [anon_sym_CARET] = ACTIONS(327), - [anon_sym_LBRACE_TILDE] = ACTIONS(329), - [anon_sym_TILDE] = ACTIONS(329), - [anon_sym_LBRACE_EQ] = ACTIONS(331), - [anon_sym_LBRACE_PLUS] = ACTIONS(333), - [anon_sym_LBRACE_DASH] = ACTIONS(335), - [anon_sym_BSLASH] = ACTIONS(337), - [sym_quotation_marks] = ACTIONS(339), - [sym_ellipsis] = ACTIONS(339), - [sym_em_dash] = ACTIONS(339), - [sym_en_dash] = ACTIONS(341), - [sym_backslash_escape] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(343), - [sym_symbol] = ACTIONS(339), - [anon_sym_LBRACK_CARET] = ACTIONS(345), - [anon_sym_BANG_LBRACK] = ACTIONS(347), - [anon_sym_LBRACK] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(351), - [anon_sym_DOLLAR] = ACTIONS(353), - [anon_sym_TODO] = ACTIONS(355), - [anon_sym_WIP] = ACTIONS(355), - [anon_sym_NOTE] = ACTIONS(357), - [anon_sym_INFO] = ACTIONS(357), - [anon_sym_XXX] = ACTIONS(357), - [sym_fixme] = ACTIONS(339), - [sym__whitespace1] = ACTIONS(359), + [anon_sym_LBRACE_] = ACTIONS(295), + [anon_sym__] = ACTIONS(297), + [anon_sym_LBRACE_STAR] = ACTIONS(299), + [anon_sym_STAR] = ACTIONS(301), + [anon_sym_LBRACE_CARET] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(303), + [anon_sym_LBRACE_TILDE] = ACTIONS(305), + [anon_sym_TILDE] = ACTIONS(305), + [anon_sym_LBRACE_EQ] = ACTIONS(307), + [anon_sym_LBRACE_PLUS] = ACTIONS(309), + [anon_sym_LBRACE_DASH] = ACTIONS(311), + [anon_sym_BSLASH] = ACTIONS(313), + [sym_quotation_marks] = ACTIONS(315), + [sym_ellipsis] = ACTIONS(315), + [sym_em_dash] = ACTIONS(315), + [sym_en_dash] = ACTIONS(317), + [sym_backslash_escape] = ACTIONS(317), + [anon_sym_LT] = ACTIONS(319), + [sym_symbol] = ACTIONS(315), + [anon_sym_LBRACK_CARET] = ACTIONS(321), + [anon_sym_BANG_LBRACK] = ACTIONS(323), + [anon_sym_LBRACK] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(327), + [anon_sym_DOLLAR] = ACTIONS(329), + [anon_sym_TODO] = ACTIONS(331), + [anon_sym_WIP] = ACTIONS(331), + [anon_sym_NOTE] = ACTIONS(333), + [anon_sym_INFO] = ACTIONS(333), + [anon_sym_XXX] = ACTIONS(333), + [sym_fixme] = ACTIONS(315), + [sym__whitespace1] = ACTIONS(335), [sym__newline] = ACTIONS(635), - [aux_sym__text_token1] = ACTIONS(363), - [sym__verbatim_begin] = ACTIONS(365), + [aux_sym__text_token1] = ACTIONS(339), + [sym__verbatim_begin] = ACTIONS(341), }, - [90] = { - [sym__inline] = STATE(902), - [sym__element] = STATE(22), - [sym_emphasis] = STATE(137), - [sym_emphasis_begin] = STATE(1112), - [sym_strong] = STATE(137), - [sym_strong_begin] = STATE(1113), - [sym_superscript] = STATE(137), - [sym_superscript_begin] = STATE(1114), - [sym_subscript] = STATE(137), - [sym_subscript_begin] = STATE(1115), - [sym_highlighted] = STATE(137), - [sym_highlighted_begin] = STATE(1116), - [sym_insert] = STATE(137), - [sym_insert_begin] = STATE(1117), - [sym_delete] = STATE(137), - [sym_delete_begin] = STATE(1118), - [sym_hard_line_break] = STATE(137), - [sym__smart_punctuation] = STATE(137), - [sym_autolink] = STATE(137), - [sym_footnote_reference] = STATE(137), - [sym_footnote_marker_begin] = STATE(1119), - [sym__image] = STATE(137), - [sym_full_reference_image] = STATE(137), - [sym_collapsed_reference_image] = STATE(137), - [sym_inline_image] = STATE(137), - [sym_image_description] = STATE(636), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(137), - [sym_full_reference_link] = STATE(137), - [sym_collapsed_reference_link] = STATE(137), - [sym_inline_link] = STATE(137), - [sym_link_text] = STATE(647), - [sym_span] = STATE(22), - [sym__bracketed_text_begin] = STATE(1185), - [sym__comment_with_spaces] = STATE(137), - [sym_raw_inline] = STATE(137), - [sym_math] = STATE(137), - [sym_verbatim] = STATE(137), - [sym__todo_highlights] = STATE(137), - [sym_todo] = STATE(137), - [sym_note] = STATE(137), - [sym__symbol_fallback] = STATE(137), - [aux_sym__text] = STATE(122), - [aux_sym__inline_repeat1] = STATE(22), - [anon_sym_LBRACE_] = ACTIONS(197), - [anon_sym__] = ACTIONS(199), - [anon_sym_LBRACE_STAR] = ACTIONS(201), - [anon_sym_STAR] = ACTIONS(203), - [anon_sym_LBRACE_CARET] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(205), - [anon_sym_LBRACE_TILDE] = ACTIONS(207), - [anon_sym_TILDE] = ACTIONS(207), - [anon_sym_LBRACE_EQ] = ACTIONS(209), - [anon_sym_LBRACE_PLUS] = ACTIONS(211), - [anon_sym_LBRACE_DASH] = ACTIONS(213), - [anon_sym_BSLASH] = ACTIONS(215), - [sym_quotation_marks] = ACTIONS(217), - [sym_ellipsis] = ACTIONS(217), - [sym_em_dash] = ACTIONS(217), - [sym_en_dash] = ACTIONS(219), - [sym_backslash_escape] = ACTIONS(219), - [anon_sym_LT] = ACTIONS(221), - [sym_symbol] = ACTIONS(217), - [anon_sym_LBRACK_CARET] = ACTIONS(223), - [anon_sym_BANG_LBRACK] = ACTIONS(225), - [anon_sym_LBRACK] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_DOLLAR] = ACTIONS(231), - [anon_sym_TODO] = ACTIONS(233), - [anon_sym_WIP] = ACTIONS(233), - [anon_sym_NOTE] = ACTIONS(235), - [anon_sym_INFO] = ACTIONS(235), - [anon_sym_XXX] = ACTIONS(235), - [sym_fixme] = ACTIONS(217), - [sym__whitespace1] = ACTIONS(237), - [sym__newline] = ACTIONS(239), - [aux_sym__text_token1] = ACTIONS(241), - [sym__verbatim_begin] = ACTIONS(243), - }, - [91] = { - [sym__inline] = STATE(903), - [sym__element] = STATE(106), - [sym_emphasis] = STATE(139), - [sym_emphasis_begin] = STATE(1102), - [sym_strong] = STATE(139), - [sym_strong_begin] = STATE(1103), - [sym_superscript] = STATE(139), - [sym_superscript_begin] = STATE(1104), - [sym_subscript] = STATE(139), - [sym_subscript_begin] = STATE(1105), - [sym_highlighted] = STATE(139), - [sym_highlighted_begin] = STATE(1106), - [sym_insert] = STATE(139), - [sym_insert_begin] = STATE(1107), - [sym_delete] = STATE(139), - [sym_delete_begin] = STATE(1108), - [sym_hard_line_break] = STATE(139), - [sym__smart_punctuation] = STATE(139), - [sym_autolink] = STATE(139), - [sym_footnote_reference] = STATE(139), - [sym_footnote_marker_begin] = STATE(1109), - [sym__image] = STATE(139), - [sym_full_reference_image] = STATE(139), - [sym_collapsed_reference_image] = STATE(139), - [sym_inline_image] = STATE(139), - [sym_image_description] = STATE(623), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(139), - [sym_full_reference_link] = STATE(139), - [sym_collapsed_reference_link] = STATE(139), - [sym_inline_link] = STATE(139), - [sym_link_text] = STATE(621), - [sym_span] = STATE(106), - [sym__bracketed_text_begin] = STATE(1184), - [sym__comment_with_spaces] = STATE(139), - [sym_raw_inline] = STATE(139), - [sym_math] = STATE(139), - [sym_verbatim] = STATE(139), - [sym__todo_highlights] = STATE(139), - [sym_todo] = STATE(139), - [sym_note] = STATE(139), - [sym__symbol_fallback] = STATE(139), - [aux_sym__text] = STATE(126), - [aux_sym__inline_repeat1] = STATE(106), - [anon_sym_LBRACE_] = ACTIONS(101), - [anon_sym__] = ACTIONS(103), - [anon_sym_LBRACE_STAR] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_LBRACE_CARET] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(109), - [anon_sym_LBRACE_TILDE] = ACTIONS(111), - [anon_sym_TILDE] = ACTIONS(111), - [anon_sym_LBRACE_EQ] = ACTIONS(113), - [anon_sym_LBRACE_PLUS] = ACTIONS(115), - [anon_sym_LBRACE_DASH] = ACTIONS(117), - [anon_sym_BSLASH] = ACTIONS(119), - [sym_quotation_marks] = ACTIONS(121), - [sym_ellipsis] = ACTIONS(121), - [sym_em_dash] = ACTIONS(121), - [sym_en_dash] = ACTIONS(123), - [sym_backslash_escape] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(125), - [sym_symbol] = ACTIONS(121), - [anon_sym_LBRACK_CARET] = ACTIONS(127), - [anon_sym_BANG_LBRACK] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_TODO] = ACTIONS(137), - [anon_sym_WIP] = ACTIONS(137), - [anon_sym_NOTE] = ACTIONS(139), - [anon_sym_INFO] = ACTIONS(139), - [anon_sym_XXX] = ACTIONS(139), - [sym_fixme] = ACTIONS(121), - [sym__whitespace1] = ACTIONS(141), - [sym__newline] = ACTIONS(143), - [aux_sym__text_token1] = ACTIONS(145), - [sym__verbatim_begin] = ACTIONS(147), + [83] = { + [sym__inline] = STATE(1011), + [sym__element] = STATE(46), + [sym_emphasis] = STATE(135), + [sym_emphasis_begin] = STATE(1174), + [sym_strong] = STATE(135), + [sym_strong_begin] = STATE(1175), + [sym_superscript] = STATE(135), + [sym_superscript_begin] = STATE(1176), + [sym_subscript] = STATE(135), + [sym_subscript_begin] = STATE(1177), + [sym_highlighted] = STATE(135), + [sym_highlighted_begin] = STATE(1178), + [sym_insert] = STATE(135), + [sym_insert_begin] = STATE(1179), + [sym_delete] = STATE(135), + [sym_delete_begin] = STATE(1180), + [sym_hard_line_break] = STATE(138), + [sym__smart_punctuation] = STATE(138), + [sym_autolink] = STATE(138), + [sym_footnote_reference] = STATE(135), + [sym_footnote_marker_begin] = STATE(1181), + [sym__image] = STATE(135), + [sym_full_reference_image] = STATE(135), + [sym_collapsed_reference_image] = STATE(135), + [sym_inline_image] = STATE(135), + [sym_image_description] = STATE(656), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(135), + [sym_full_reference_link] = STATE(135), + [sym_collapsed_reference_link] = STATE(135), + [sym_inline_link] = STATE(135), + [sym_link_text] = STATE(654), + [sym_span] = STATE(46), + [sym__bracketed_text_begin] = STATE(1211), + [sym__comment_with_spaces] = STATE(138), + [sym_raw_inline] = STATE(138), + [sym_math] = STATE(138), + [sym_verbatim] = STATE(138), + [sym__todo_highlights] = STATE(138), + [sym_todo] = STATE(138), + [sym_note] = STATE(138), + [sym__symbol_fallback] = STATE(138), + [aux_sym__text] = STATE(121), + [aux_sym__inline_repeat1] = STATE(46), + [anon_sym_LBRACE_] = ACTIONS(345), + [anon_sym__] = ACTIONS(347), + [anon_sym_LBRACE_STAR] = ACTIONS(349), + [anon_sym_STAR] = ACTIONS(351), + [anon_sym_LBRACE_CARET] = ACTIONS(353), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_LBRACE_TILDE] = ACTIONS(355), + [anon_sym_TILDE] = ACTIONS(355), + [anon_sym_LBRACE_EQ] = ACTIONS(357), + [anon_sym_LBRACE_PLUS] = ACTIONS(359), + [anon_sym_LBRACE_DASH] = ACTIONS(361), + [anon_sym_BSLASH] = ACTIONS(363), + [sym_quotation_marks] = ACTIONS(365), + [sym_ellipsis] = ACTIONS(365), + [sym_em_dash] = ACTIONS(365), + [sym_en_dash] = ACTIONS(367), + [sym_backslash_escape] = ACTIONS(367), + [anon_sym_LT] = ACTIONS(369), + [sym_symbol] = ACTIONS(365), + [anon_sym_LBRACK_CARET] = ACTIONS(371), + [anon_sym_BANG_LBRACK] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(375), + [anon_sym_LPAREN] = ACTIONS(377), + [anon_sym_DOLLAR] = ACTIONS(379), + [anon_sym_TODO] = ACTIONS(381), + [anon_sym_WIP] = ACTIONS(381), + [anon_sym_NOTE] = ACTIONS(383), + [anon_sym_INFO] = ACTIONS(383), + [anon_sym_XXX] = ACTIONS(383), + [sym_fixme] = ACTIONS(365), + [sym__whitespace1] = ACTIONS(385), + [sym__newline] = ACTIONS(387), + [aux_sym__text_token1] = ACTIONS(389), + [sym__verbatim_begin] = ACTIONS(391), }, - [92] = { - [sym__inline] = STATE(1131), - [sym__element] = STATE(106), - [sym_emphasis] = STATE(139), - [sym_emphasis_begin] = STATE(1102), - [sym_strong] = STATE(139), - [sym_strong_begin] = STATE(1103), - [sym_superscript] = STATE(139), - [sym_superscript_begin] = STATE(1104), - [sym_subscript] = STATE(139), - [sym_subscript_begin] = STATE(1105), - [sym_highlighted] = STATE(139), - [sym_highlighted_begin] = STATE(1106), - [sym_insert] = STATE(139), - [sym_insert_begin] = STATE(1107), - [sym_delete] = STATE(139), - [sym_delete_begin] = STATE(1108), - [sym_hard_line_break] = STATE(139), - [sym__smart_punctuation] = STATE(139), - [sym_autolink] = STATE(139), - [sym_footnote_reference] = STATE(139), - [sym_footnote_marker_begin] = STATE(1109), - [sym__image] = STATE(139), - [sym_full_reference_image] = STATE(139), - [sym_collapsed_reference_image] = STATE(139), - [sym_inline_image] = STATE(139), - [sym_image_description] = STATE(623), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(139), - [sym_full_reference_link] = STATE(139), - [sym_collapsed_reference_link] = STATE(139), - [sym_inline_link] = STATE(139), - [sym_link_text] = STATE(621), - [sym_span] = STATE(106), - [sym__bracketed_text_begin] = STATE(1184), - [sym__comment_with_spaces] = STATE(139), - [sym_raw_inline] = STATE(139), - [sym_math] = STATE(139), - [sym_verbatim] = STATE(139), - [sym__todo_highlights] = STATE(139), - [sym_todo] = STATE(139), - [sym_note] = STATE(139), - [sym__symbol_fallback] = STATE(139), - [aux_sym__text] = STATE(126), - [aux_sym__inline_repeat1] = STATE(106), - [anon_sym_LBRACE_] = ACTIONS(101), - [anon_sym__] = ACTIONS(103), - [anon_sym_LBRACE_STAR] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_LBRACE_CARET] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(109), - [anon_sym_LBRACE_TILDE] = ACTIONS(111), - [anon_sym_TILDE] = ACTIONS(111), - [anon_sym_LBRACE_EQ] = ACTIONS(113), - [anon_sym_LBRACE_PLUS] = ACTIONS(115), - [anon_sym_LBRACE_DASH] = ACTIONS(117), - [anon_sym_BSLASH] = ACTIONS(119), - [sym_quotation_marks] = ACTIONS(121), - [sym_ellipsis] = ACTIONS(121), - [sym_em_dash] = ACTIONS(121), - [sym_en_dash] = ACTIONS(123), - [sym_backslash_escape] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(125), - [sym_symbol] = ACTIONS(121), - [anon_sym_LBRACK_CARET] = ACTIONS(127), - [anon_sym_BANG_LBRACK] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_TODO] = ACTIONS(137), - [anon_sym_WIP] = ACTIONS(137), - [anon_sym_NOTE] = ACTIONS(139), - [anon_sym_INFO] = ACTIONS(139), - [anon_sym_XXX] = ACTIONS(139), - [sym_fixme] = ACTIONS(121), - [sym__whitespace1] = ACTIONS(141), - [sym__newline] = ACTIONS(143), - [aux_sym__text_token1] = ACTIONS(145), - [sym__verbatim_begin] = ACTIONS(147), + [84] = { + [sym__inline] = STATE(888), + [sym__element] = STATE(14), + [sym_emphasis] = STATE(136), + [sym_emphasis_begin] = STATE(1134), + [sym_strong] = STATE(136), + [sym_strong_begin] = STATE(1135), + [sym_superscript] = STATE(136), + [sym_superscript_begin] = STATE(1136), + [sym_subscript] = STATE(136), + [sym_subscript_begin] = STATE(1137), + [sym_highlighted] = STATE(136), + [sym_highlighted_begin] = STATE(1138), + [sym_insert] = STATE(136), + [sym_insert_begin] = STATE(1139), + [sym_delete] = STATE(136), + [sym_delete_begin] = STATE(1140), + [sym_hard_line_break] = STATE(134), + [sym__smart_punctuation] = STATE(134), + [sym_autolink] = STATE(134), + [sym_footnote_reference] = STATE(136), + [sym_footnote_marker_begin] = STATE(1141), + [sym__image] = STATE(136), + [sym_full_reference_image] = STATE(136), + [sym_collapsed_reference_image] = STATE(136), + [sym_inline_image] = STATE(136), + [sym_image_description] = STATE(670), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(136), + [sym_full_reference_link] = STATE(136), + [sym_collapsed_reference_link] = STATE(136), + [sym_inline_link] = STATE(136), + [sym_link_text] = STATE(671), + [sym_span] = STATE(14), + [sym__bracketed_text_begin] = STATE(1207), + [sym__comment_with_spaces] = STATE(134), + [sym_raw_inline] = STATE(134), + [sym_math] = STATE(134), + [sym_verbatim] = STATE(134), + [sym__todo_highlights] = STATE(134), + [sym_todo] = STATE(134), + [sym_note] = STATE(134), + [sym__symbol_fallback] = STATE(134), + [aux_sym__text] = STATE(129), + [aux_sym__inline_repeat1] = STATE(14), + [anon_sym_LBRACE_] = ACTIONS(295), + [anon_sym__] = ACTIONS(297), + [anon_sym_LBRACE_STAR] = ACTIONS(299), + [anon_sym_STAR] = ACTIONS(301), + [anon_sym_LBRACE_CARET] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(303), + [anon_sym_LBRACE_TILDE] = ACTIONS(305), + [anon_sym_TILDE] = ACTIONS(305), + [anon_sym_LBRACE_EQ] = ACTIONS(307), + [anon_sym_LBRACE_PLUS] = ACTIONS(309), + [anon_sym_LBRACE_DASH] = ACTIONS(311), + [anon_sym_BSLASH] = ACTIONS(313), + [sym_quotation_marks] = ACTIONS(315), + [sym_ellipsis] = ACTIONS(315), + [sym_em_dash] = ACTIONS(315), + [sym_en_dash] = ACTIONS(317), + [sym_backslash_escape] = ACTIONS(317), + [anon_sym_LT] = ACTIONS(319), + [sym_symbol] = ACTIONS(315), + [anon_sym_LBRACK_CARET] = ACTIONS(321), + [anon_sym_BANG_LBRACK] = ACTIONS(323), + [anon_sym_LBRACK] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(327), + [anon_sym_DOLLAR] = ACTIONS(329), + [anon_sym_TODO] = ACTIONS(331), + [anon_sym_WIP] = ACTIONS(331), + [anon_sym_NOTE] = ACTIONS(333), + [anon_sym_INFO] = ACTIONS(333), + [anon_sym_XXX] = ACTIONS(333), + [sym_fixme] = ACTIONS(315), + [sym__whitespace1] = ACTIONS(335), + [sym__newline] = ACTIONS(635), + [aux_sym__text_token1] = ACTIONS(339), + [sym__verbatim_begin] = ACTIONS(341), }, - [93] = { - [sym__inline] = STATE(997), - [sym__element] = STATE(37), - [sym_emphasis] = STATE(131), - [sym_emphasis_begin] = STATE(1132), - [sym_strong] = STATE(131), - [sym_strong_begin] = STATE(1133), - [sym_superscript] = STATE(131), - [sym_superscript_begin] = STATE(1134), - [sym_subscript] = STATE(131), - [sym_subscript_begin] = STATE(1135), - [sym_highlighted] = STATE(131), - [sym_highlighted_begin] = STATE(1136), - [sym_insert] = STATE(131), - [sym_insert_begin] = STATE(1137), - [sym_delete] = STATE(131), - [sym_delete_begin] = STATE(1138), - [sym_hard_line_break] = STATE(131), - [sym__smart_punctuation] = STATE(131), - [sym_autolink] = STATE(131), - [sym_footnote_reference] = STATE(131), - [sym_footnote_marker_begin] = STATE(1139), - [sym__image] = STATE(131), - [sym_full_reference_image] = STATE(131), - [sym_collapsed_reference_image] = STATE(131), - [sym_inline_image] = STATE(131), - [sym_image_description] = STATE(643), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(131), - [sym_full_reference_link] = STATE(131), - [sym_collapsed_reference_link] = STATE(131), - [sym_inline_link] = STATE(131), - [sym_link_text] = STATE(619), - [sym_span] = STATE(37), - [sym__bracketed_text_begin] = STATE(1187), - [sym__comment_with_spaces] = STATE(131), - [sym_raw_inline] = STATE(131), - [sym_math] = STATE(131), - [sym_verbatim] = STATE(131), - [sym__todo_highlights] = STATE(131), - [sym_todo] = STATE(131), - [sym_note] = STATE(131), - [sym__symbol_fallback] = STATE(131), - [aux_sym__text] = STATE(123), - [aux_sym__inline_repeat1] = STATE(37), + [85] = { + [sym__inline] = STATE(890), + [sym__element] = STATE(64), + [sym_emphasis] = STATE(133), + [sym_emphasis_begin] = STATE(1124), + [sym_strong] = STATE(133), + [sym_strong_begin] = STATE(1125), + [sym_superscript] = STATE(133), + [sym_superscript_begin] = STATE(1126), + [sym_subscript] = STATE(133), + [sym_subscript_begin] = STATE(1127), + [sym_highlighted] = STATE(133), + [sym_highlighted_begin] = STATE(1128), + [sym_insert] = STATE(133), + [sym_insert_begin] = STATE(1129), + [sym_delete] = STATE(133), + [sym_delete_begin] = STATE(1130), + [sym_hard_line_break] = STATE(140), + [sym__smart_punctuation] = STATE(140), + [sym_autolink] = STATE(140), + [sym_footnote_reference] = STATE(133), + [sym_footnote_marker_begin] = STATE(1131), + [sym__image] = STATE(133), + [sym_full_reference_image] = STATE(133), + [sym_collapsed_reference_image] = STATE(133), + [sym_inline_image] = STATE(133), + [sym_image_description] = STATE(663), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(133), + [sym_full_reference_link] = STATE(133), + [sym_collapsed_reference_link] = STATE(133), + [sym_inline_link] = STATE(133), + [sym_link_text] = STATE(669), + [sym_span] = STATE(64), + [sym__bracketed_text_begin] = STATE(1206), + [sym__comment_with_spaces] = STATE(140), + [sym_raw_inline] = STATE(140), + [sym_math] = STATE(140), + [sym_verbatim] = STATE(140), + [sym__todo_highlights] = STATE(140), + [sym_todo] = STATE(140), + [sym_note] = STATE(140), + [sym__symbol_fallback] = STATE(140), + [aux_sym__text] = STATE(122), + [aux_sym__inline_repeat1] = STATE(64), [anon_sym_LBRACE_] = ACTIONS(537), [anon_sym__] = ACTIONS(539), [anon_sym_LBRACE_STAR] = ACTIONS(541), @@ -12613,134 +12017,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token1] = ACTIONS(581), [sym__verbatim_begin] = ACTIONS(583), }, - [94] = { - [sym__inline_without_trailing_space] = STATE(905), - [sym__element] = STATE(581), - [sym_emphasis] = STATE(141), - [sym_emphasis_begin] = STATE(1082), - [sym_strong] = STATE(141), - [sym_strong_begin] = STATE(1083), - [sym_superscript] = STATE(141), - [sym_superscript_begin] = STATE(1084), - [sym_subscript] = STATE(141), - [sym_subscript_begin] = STATE(1085), - [sym_highlighted] = STATE(141), - [sym_highlighted_begin] = STATE(1086), - [sym_insert] = STATE(141), - [sym_insert_begin] = STATE(1087), - [sym_delete] = STATE(141), - [sym_delete_begin] = STATE(1088), - [sym_hard_line_break] = STATE(141), - [sym__smart_punctuation] = STATE(141), - [sym_autolink] = STATE(141), - [sym_footnote_reference] = STATE(141), - [sym_footnote_marker_begin] = STATE(1089), - [sym__image] = STATE(141), - [sym_full_reference_image] = STATE(141), - [sym_collapsed_reference_image] = STATE(141), - [sym_inline_image] = STATE(141), - [sym_image_description] = STATE(642), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(141), - [sym_full_reference_link] = STATE(141), - [sym_collapsed_reference_link] = STATE(141), - [sym_inline_link] = STATE(141), - [sym_link_text] = STATE(629), - [sym_span] = STATE(581), - [sym__bracketed_text_begin] = STATE(1182), - [sym__comment_with_spaces] = STATE(141), - [sym_raw_inline] = STATE(141), - [sym_math] = STATE(141), - [sym_verbatim] = STATE(141), - [sym__todo_highlights] = STATE(141), - [sym_todo] = STATE(141), - [sym_note] = STATE(141), - [sym__symbol_fallback] = STATE(141), - [aux_sym__text] = STATE(125), - [aux_sym__inline_repeat1] = STATE(119), - [anon_sym_LBRACE_] = ACTIONS(585), - [anon_sym__] = ACTIONS(587), - [anon_sym_LBRACE_STAR] = ACTIONS(589), - [anon_sym_STAR] = ACTIONS(591), - [anon_sym_LBRACE_CARET] = ACTIONS(593), - [anon_sym_CARET] = ACTIONS(593), - [anon_sym_LBRACE_TILDE] = ACTIONS(595), - [anon_sym_TILDE] = ACTIONS(595), - [anon_sym_LBRACE_EQ] = ACTIONS(597), - [anon_sym_LBRACE_PLUS] = ACTIONS(599), - [anon_sym_LBRACE_DASH] = ACTIONS(601), - [anon_sym_BSLASH] = ACTIONS(603), - [sym_quotation_marks] = ACTIONS(605), - [sym_ellipsis] = ACTIONS(605), - [sym_em_dash] = ACTIONS(605), - [sym_en_dash] = ACTIONS(607), - [sym_backslash_escape] = ACTIONS(607), - [anon_sym_LT] = ACTIONS(609), - [sym_symbol] = ACTIONS(605), - [anon_sym_LBRACK_CARET] = ACTIONS(611), - [anon_sym_BANG_LBRACK] = ACTIONS(613), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_DOLLAR] = ACTIONS(619), - [anon_sym_TODO] = ACTIONS(621), - [anon_sym_WIP] = ACTIONS(621), - [anon_sym_NOTE] = ACTIONS(623), - [anon_sym_INFO] = ACTIONS(623), - [anon_sym_XXX] = ACTIONS(623), - [sym_fixme] = ACTIONS(605), - [sym__whitespace1] = ACTIONS(625), - [sym__newline] = ACTIONS(627), - [aux_sym__text_token1] = ACTIONS(629), - [sym__verbatim_begin] = ACTIONS(631), - }, - [95] = { - [sym__inline] = STATE(958), - [sym__element] = STATE(71), - [sym_emphasis] = STATE(132), - [sym_emphasis_begin] = STATE(1152), - [sym_strong] = STATE(132), - [sym_strong_begin] = STATE(1153), - [sym_superscript] = STATE(132), - [sym_superscript_begin] = STATE(1154), - [sym_subscript] = STATE(132), - [sym_subscript_begin] = STATE(1155), - [sym_highlighted] = STATE(132), - [sym_highlighted_begin] = STATE(1156), - [sym_insert] = STATE(132), - [sym_insert_begin] = STATE(1157), - [sym_delete] = STATE(132), - [sym_delete_begin] = STATE(1158), - [sym_hard_line_break] = STATE(132), - [sym__smart_punctuation] = STATE(132), - [sym_autolink] = STATE(132), - [sym_footnote_reference] = STATE(132), - [sym_footnote_marker_begin] = STATE(1159), - [sym__image] = STATE(132), - [sym_full_reference_image] = STATE(132), - [sym_collapsed_reference_image] = STATE(132), - [sym_inline_image] = STATE(132), - [sym_image_description] = STATE(633), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(132), - [sym_full_reference_link] = STATE(132), - [sym_collapsed_reference_link] = STATE(132), - [sym_inline_link] = STATE(132), - [sym_link_text] = STATE(631), - [sym_span] = STATE(71), - [sym__bracketed_text_begin] = STATE(1189), - [sym__comment_with_spaces] = STATE(132), - [sym_raw_inline] = STATE(132), - [sym_math] = STATE(132), - [sym_verbatim] = STATE(132), - [sym__todo_highlights] = STATE(132), - [sym_todo] = STATE(132), - [sym_note] = STATE(132), - [sym__symbol_fallback] = STATE(132), - [aux_sym__text] = STATE(128), - [aux_sym__inline_repeat1] = STATE(71), - [anon_sym_LBRACE_] = ACTIONS(441), - [anon_sym__] = ACTIONS(443), - [anon_sym_LBRACE_STAR] = ACTIONS(445), + [86] = { + [sym__inline_without_trailing_space] = STATE(891), + [sym__element] = STATE(550), + [sym_emphasis] = STATE(137), + [sym_emphasis_begin] = STATE(1114), + [sym_strong] = STATE(137), + [sym_strong_begin] = STATE(1115), + [sym_superscript] = STATE(137), + [sym_superscript_begin] = STATE(1116), + [sym_subscript] = STATE(137), + [sym_subscript_begin] = STATE(1117), + [sym_highlighted] = STATE(137), + [sym_highlighted_begin] = STATE(1118), + [sym_insert] = STATE(137), + [sym_insert_begin] = STATE(1119), + [sym_delete] = STATE(137), + [sym_delete_begin] = STATE(1120), + [sym_hard_line_break] = STATE(131), + [sym__smart_punctuation] = STATE(131), + [sym_autolink] = STATE(131), + [sym_footnote_reference] = STATE(137), + [sym_footnote_marker_begin] = STATE(1121), + [sym__image] = STATE(137), + [sym_full_reference_image] = STATE(137), + [sym_collapsed_reference_image] = STATE(137), + [sym_inline_image] = STATE(137), + [sym_image_description] = STATE(649), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(137), + [sym_full_reference_link] = STATE(137), + [sym_collapsed_reference_link] = STATE(137), + [sym_inline_link] = STATE(137), + [sym_link_text] = STATE(650), + [sym_span] = STATE(550), + [sym__bracketed_text_begin] = STATE(1205), + [sym__comment_with_spaces] = STATE(131), + [sym_raw_inline] = STATE(131), + [sym_math] = STATE(131), + [sym_verbatim] = STATE(131), + [sym__todo_highlights] = STATE(131), + [sym_todo] = STATE(131), + [sym_note] = STATE(131), + [sym__symbol_fallback] = STATE(131), + [aux_sym__text] = STATE(130), + [aux_sym__inline_repeat1] = STATE(119), + [anon_sym_LBRACE_] = ACTIONS(489), + [anon_sym__] = ACTIONS(491), + [anon_sym_LBRACE_STAR] = ACTIONS(493), + [anon_sym_STAR] = ACTIONS(495), + [anon_sym_LBRACE_CARET] = ACTIONS(497), + [anon_sym_CARET] = ACTIONS(497), + [anon_sym_LBRACE_TILDE] = ACTIONS(499), + [anon_sym_TILDE] = ACTIONS(499), + [anon_sym_LBRACE_EQ] = ACTIONS(501), + [anon_sym_LBRACE_PLUS] = ACTIONS(503), + [anon_sym_LBRACE_DASH] = ACTIONS(505), + [anon_sym_BSLASH] = ACTIONS(507), + [sym_quotation_marks] = ACTIONS(509), + [sym_ellipsis] = ACTIONS(509), + [sym_em_dash] = ACTIONS(509), + [sym_en_dash] = ACTIONS(511), + [sym_backslash_escape] = ACTIONS(511), + [anon_sym_LT] = ACTIONS(513), + [sym_symbol] = ACTIONS(509), + [anon_sym_LBRACK_CARET] = ACTIONS(515), + [anon_sym_BANG_LBRACK] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(519), + [anon_sym_LPAREN] = ACTIONS(521), + [anon_sym_DOLLAR] = ACTIONS(523), + [anon_sym_TODO] = ACTIONS(525), + [anon_sym_WIP] = ACTIONS(525), + [anon_sym_NOTE] = ACTIONS(527), + [anon_sym_INFO] = ACTIONS(527), + [anon_sym_XXX] = ACTIONS(527), + [sym_fixme] = ACTIONS(509), + [sym__whitespace1] = ACTIONS(529), + [sym__newline] = ACTIONS(531), + [aux_sym__text_token1] = ACTIONS(533), + [sym__verbatim_begin] = ACTIONS(535), + }, + [87] = { + [sym__inline_without_trailing_space] = STATE(892), + [sym__element] = STATE(594), + [sym_emphasis] = STATE(149), + [sym_emphasis_begin] = STATE(1104), + [sym_strong] = STATE(149), + [sym_strong_begin] = STATE(1105), + [sym_superscript] = STATE(149), + [sym_superscript_begin] = STATE(1106), + [sym_subscript] = STATE(149), + [sym_subscript_begin] = STATE(1107), + [sym_highlighted] = STATE(149), + [sym_highlighted_begin] = STATE(1108), + [sym_insert] = STATE(149), + [sym_insert_begin] = STATE(1109), + [sym_delete] = STATE(149), + [sym_delete_begin] = STATE(1110), + [sym_hard_line_break] = STATE(143), + [sym__smart_punctuation] = STATE(143), + [sym_autolink] = STATE(143), + [sym_footnote_reference] = STATE(149), + [sym_footnote_marker_begin] = STATE(1111), + [sym__image] = STATE(149), + [sym_full_reference_image] = STATE(149), + [sym_collapsed_reference_image] = STATE(149), + [sym_inline_image] = STATE(149), + [sym_image_description] = STATE(658), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(149), + [sym_full_reference_link] = STATE(149), + [sym_collapsed_reference_link] = STATE(149), + [sym_inline_link] = STATE(149), + [sym_link_text] = STATE(672), + [sym_span] = STATE(594), + [sym__bracketed_text_begin] = STATE(1204), + [sym__comment_with_spaces] = STATE(143), + [sym_raw_inline] = STATE(143), + [sym_math] = STATE(143), + [sym_verbatim] = STATE(143), + [sym__todo_highlights] = STATE(143), + [sym_todo] = STATE(143), + [sym_note] = STATE(143), + [sym__symbol_fallback] = STATE(143), + [aux_sym__text] = STATE(127), + [aux_sym__inline_repeat1] = STATE(120), + [anon_sym_LBRACE_] = ACTIONS(441), + [anon_sym__] = ACTIONS(443), + [anon_sym_LBRACE_STAR] = ACTIONS(445), [anon_sym_STAR] = ACTIONS(447), [anon_sym_LBRACE_CARET] = ACTIONS(449), [anon_sym_CARET] = ACTIONS(449), @@ -12773,294 +12177,454 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token1] = ACTIONS(485), [sym__verbatim_begin] = ACTIONS(487), }, - [96] = { - [sym__inline] = STATE(1121), + [88] = { + [sym__inline] = STATE(917), + [sym__element] = STATE(46), + [sym_emphasis] = STATE(135), + [sym_emphasis_begin] = STATE(1174), + [sym_strong] = STATE(135), + [sym_strong_begin] = STATE(1175), + [sym_superscript] = STATE(135), + [sym_superscript_begin] = STATE(1176), + [sym_subscript] = STATE(135), + [sym_subscript_begin] = STATE(1177), + [sym_highlighted] = STATE(135), + [sym_highlighted_begin] = STATE(1178), + [sym_insert] = STATE(135), + [sym_insert_begin] = STATE(1179), + [sym_delete] = STATE(135), + [sym_delete_begin] = STATE(1180), + [sym_hard_line_break] = STATE(138), + [sym__smart_punctuation] = STATE(138), + [sym_autolink] = STATE(138), + [sym_footnote_reference] = STATE(135), + [sym_footnote_marker_begin] = STATE(1181), + [sym__image] = STATE(135), + [sym_full_reference_image] = STATE(135), + [sym_collapsed_reference_image] = STATE(135), + [sym_inline_image] = STATE(135), + [sym_image_description] = STATE(656), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(135), + [sym_full_reference_link] = STATE(135), + [sym_collapsed_reference_link] = STATE(135), + [sym_inline_link] = STATE(135), + [sym_link_text] = STATE(654), + [sym_span] = STATE(46), + [sym__bracketed_text_begin] = STATE(1211), + [sym__comment_with_spaces] = STATE(138), + [sym_raw_inline] = STATE(138), + [sym_math] = STATE(138), + [sym_verbatim] = STATE(138), + [sym__todo_highlights] = STATE(138), + [sym_todo] = STATE(138), + [sym_note] = STATE(138), + [sym__symbol_fallback] = STATE(138), + [aux_sym__text] = STATE(121), + [aux_sym__inline_repeat1] = STATE(46), + [anon_sym_LBRACE_] = ACTIONS(345), + [anon_sym__] = ACTIONS(347), + [anon_sym_LBRACE_STAR] = ACTIONS(349), + [anon_sym_STAR] = ACTIONS(351), + [anon_sym_LBRACE_CARET] = ACTIONS(353), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_LBRACE_TILDE] = ACTIONS(355), + [anon_sym_TILDE] = ACTIONS(355), + [anon_sym_LBRACE_EQ] = ACTIONS(357), + [anon_sym_LBRACE_PLUS] = ACTIONS(359), + [anon_sym_LBRACE_DASH] = ACTIONS(361), + [anon_sym_BSLASH] = ACTIONS(363), + [sym_quotation_marks] = ACTIONS(365), + [sym_ellipsis] = ACTIONS(365), + [sym_em_dash] = ACTIONS(365), + [sym_en_dash] = ACTIONS(367), + [sym_backslash_escape] = ACTIONS(367), + [anon_sym_LT] = ACTIONS(369), + [sym_symbol] = ACTIONS(365), + [anon_sym_LBRACK_CARET] = ACTIONS(371), + [anon_sym_BANG_LBRACK] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(375), + [anon_sym_LPAREN] = ACTIONS(377), + [anon_sym_DOLLAR] = ACTIONS(379), + [anon_sym_TODO] = ACTIONS(381), + [anon_sym_WIP] = ACTIONS(381), + [anon_sym_NOTE] = ACTIONS(383), + [anon_sym_INFO] = ACTIONS(383), + [anon_sym_XXX] = ACTIONS(383), + [sym_fixme] = ACTIONS(365), + [sym__whitespace1] = ACTIONS(385), + [sym__newline] = ACTIONS(387), + [aux_sym__text_token1] = ACTIONS(389), + [sym__verbatim_begin] = ACTIONS(391), + }, + [89] = { + [sym__inline] = STATE(919), + [sym__element] = STATE(30), + [sym_emphasis] = STATE(132), + [sym_emphasis_begin] = STATE(1164), + [sym_strong] = STATE(132), + [sym_strong_begin] = STATE(1165), + [sym_superscript] = STATE(132), + [sym_superscript_begin] = STATE(1166), + [sym_subscript] = STATE(132), + [sym_subscript_begin] = STATE(1167), + [sym_highlighted] = STATE(132), + [sym_highlighted_begin] = STATE(1168), + [sym_insert] = STATE(132), + [sym_insert_begin] = STATE(1169), + [sym_delete] = STATE(132), + [sym_delete_begin] = STATE(1170), + [sym_hard_line_break] = STATE(142), + [sym__smart_punctuation] = STATE(142), + [sym_autolink] = STATE(142), + [sym_footnote_reference] = STATE(132), + [sym_footnote_marker_begin] = STATE(1171), + [sym__image] = STATE(132), + [sym_full_reference_image] = STATE(132), + [sym_collapsed_reference_image] = STATE(132), + [sym_inline_image] = STATE(132), + [sym_image_description] = STATE(660), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(132), + [sym_full_reference_link] = STATE(132), + [sym_collapsed_reference_link] = STATE(132), + [sym_inline_link] = STATE(132), + [sym_link_text] = STATE(659), + [sym_span] = STATE(30), + [sym__bracketed_text_begin] = STATE(1210), + [sym__comment_with_spaces] = STATE(142), + [sym_raw_inline] = STATE(142), + [sym_math] = STATE(142), + [sym_verbatim] = STATE(142), + [sym__todo_highlights] = STATE(142), + [sym_todo] = STATE(142), + [sym_note] = STATE(142), + [sym__symbol_fallback] = STATE(142), + [aux_sym__text] = STATE(126), + [aux_sym__inline_repeat1] = STATE(30), + [anon_sym_LBRACE_] = ACTIONS(393), + [anon_sym__] = ACTIONS(395), + [anon_sym_LBRACE_STAR] = ACTIONS(397), + [anon_sym_STAR] = ACTIONS(399), + [anon_sym_LBRACE_CARET] = ACTIONS(401), + [anon_sym_CARET] = ACTIONS(401), + [anon_sym_LBRACE_TILDE] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_LBRACE_EQ] = ACTIONS(405), + [anon_sym_LBRACE_PLUS] = ACTIONS(407), + [anon_sym_LBRACE_DASH] = ACTIONS(409), + [anon_sym_BSLASH] = ACTIONS(411), + [sym_quotation_marks] = ACTIONS(413), + [sym_ellipsis] = ACTIONS(413), + [sym_em_dash] = ACTIONS(413), + [sym_en_dash] = ACTIONS(415), + [sym_backslash_escape] = ACTIONS(415), + [anon_sym_LT] = ACTIONS(417), + [sym_symbol] = ACTIONS(413), + [anon_sym_LBRACK_CARET] = ACTIONS(419), + [anon_sym_BANG_LBRACK] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(423), + [anon_sym_LPAREN] = ACTIONS(425), + [anon_sym_DOLLAR] = ACTIONS(427), + [anon_sym_TODO] = ACTIONS(429), + [anon_sym_WIP] = ACTIONS(429), + [anon_sym_NOTE] = ACTIONS(431), + [anon_sym_INFO] = ACTIONS(431), + [anon_sym_XXX] = ACTIONS(431), + [sym_fixme] = ACTIONS(413), + [sym__whitespace1] = ACTIONS(433), + [sym__newline] = ACTIONS(435), + [aux_sym__text_token1] = ACTIONS(437), + [sym__verbatim_begin] = ACTIONS(439), + }, + [90] = { + [sym__inline] = STATE(920), [sym__element] = STATE(22), - [sym_emphasis] = STATE(137), - [sym_emphasis_begin] = STATE(1112), - [sym_strong] = STATE(137), - [sym_strong_begin] = STATE(1113), - [sym_superscript] = STATE(137), - [sym_superscript_begin] = STATE(1114), - [sym_subscript] = STATE(137), - [sym_subscript_begin] = STATE(1115), - [sym_highlighted] = STATE(137), - [sym_highlighted_begin] = STATE(1116), - [sym_insert] = STATE(137), - [sym_insert_begin] = STATE(1117), - [sym_delete] = STATE(137), - [sym_delete_begin] = STATE(1118), - [sym_hard_line_break] = STATE(137), - [sym__smart_punctuation] = STATE(137), - [sym_autolink] = STATE(137), - [sym_footnote_reference] = STATE(137), - [sym_footnote_marker_begin] = STATE(1119), - [sym__image] = STATE(137), - [sym_full_reference_image] = STATE(137), - [sym_collapsed_reference_image] = STATE(137), - [sym_inline_image] = STATE(137), - [sym_image_description] = STATE(636), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(137), - [sym_full_reference_link] = STATE(137), - [sym_collapsed_reference_link] = STATE(137), - [sym_inline_link] = STATE(137), - [sym_link_text] = STATE(647), + [sym_emphasis] = STATE(147), + [sym_emphasis_begin] = STATE(1154), + [sym_strong] = STATE(147), + [sym_strong_begin] = STATE(1155), + [sym_superscript] = STATE(147), + [sym_superscript_begin] = STATE(1156), + [sym_subscript] = STATE(147), + [sym_subscript_begin] = STATE(1157), + [sym_highlighted] = STATE(147), + [sym_highlighted_begin] = STATE(1158), + [sym_insert] = STATE(147), + [sym_insert_begin] = STATE(1159), + [sym_delete] = STATE(147), + [sym_delete_begin] = STATE(1160), + [sym_hard_line_break] = STATE(145), + [sym__smart_punctuation] = STATE(145), + [sym_autolink] = STATE(145), + [sym_footnote_reference] = STATE(147), + [sym_footnote_marker_begin] = STATE(1161), + [sym__image] = STATE(147), + [sym_full_reference_image] = STATE(147), + [sym_collapsed_reference_image] = STATE(147), + [sym_inline_image] = STATE(147), + [sym_image_description] = STATE(665), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(147), + [sym_full_reference_link] = STATE(147), + [sym_collapsed_reference_link] = STATE(147), + [sym_inline_link] = STATE(147), + [sym_link_text] = STATE(664), [sym_span] = STATE(22), - [sym__bracketed_text_begin] = STATE(1185), - [sym__comment_with_spaces] = STATE(137), - [sym_raw_inline] = STATE(137), - [sym_math] = STATE(137), - [sym_verbatim] = STATE(137), - [sym__todo_highlights] = STATE(137), - [sym_todo] = STATE(137), - [sym_note] = STATE(137), - [sym__symbol_fallback] = STATE(137), - [aux_sym__text] = STATE(122), + [sym__bracketed_text_begin] = STATE(1209), + [sym__comment_with_spaces] = STATE(145), + [sym_raw_inline] = STATE(145), + [sym_math] = STATE(145), + [sym_verbatim] = STATE(145), + [sym__todo_highlights] = STATE(145), + [sym_todo] = STATE(145), + [sym_note] = STATE(145), + [sym__symbol_fallback] = STATE(145), + [aux_sym__text] = STATE(124), [aux_sym__inline_repeat1] = STATE(22), - [anon_sym_LBRACE_] = ACTIONS(197), - [anon_sym__] = ACTIONS(199), - [anon_sym_LBRACE_STAR] = ACTIONS(201), - [anon_sym_STAR] = ACTIONS(203), - [anon_sym_LBRACE_CARET] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(205), - [anon_sym_LBRACE_TILDE] = ACTIONS(207), - [anon_sym_TILDE] = ACTIONS(207), - [anon_sym_LBRACE_EQ] = ACTIONS(209), - [anon_sym_LBRACE_PLUS] = ACTIONS(211), - [anon_sym_LBRACE_DASH] = ACTIONS(213), - [anon_sym_BSLASH] = ACTIONS(215), - [sym_quotation_marks] = ACTIONS(217), - [sym_ellipsis] = ACTIONS(217), - [sym_em_dash] = ACTIONS(217), - [sym_en_dash] = ACTIONS(219), - [sym_backslash_escape] = ACTIONS(219), - [anon_sym_LT] = ACTIONS(221), - [sym_symbol] = ACTIONS(217), - [anon_sym_LBRACK_CARET] = ACTIONS(223), - [anon_sym_BANG_LBRACK] = ACTIONS(225), - [anon_sym_LBRACK] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_DOLLAR] = ACTIONS(231), - [anon_sym_TODO] = ACTIONS(233), - [anon_sym_WIP] = ACTIONS(233), - [anon_sym_NOTE] = ACTIONS(235), - [anon_sym_INFO] = ACTIONS(235), - [anon_sym_XXX] = ACTIONS(235), - [sym_fixme] = ACTIONS(217), - [sym__whitespace1] = ACTIONS(237), - [sym__newline] = ACTIONS(239), - [aux_sym__text_token1] = ACTIONS(241), - [sym__verbatim_begin] = ACTIONS(243), + [anon_sym_LBRACE_] = ACTIONS(101), + [anon_sym__] = ACTIONS(103), + [anon_sym_LBRACE_STAR] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(107), + [anon_sym_LBRACE_CARET] = ACTIONS(109), + [anon_sym_CARET] = ACTIONS(109), + [anon_sym_LBRACE_TILDE] = ACTIONS(111), + [anon_sym_TILDE] = ACTIONS(111), + [anon_sym_LBRACE_EQ] = ACTIONS(113), + [anon_sym_LBRACE_PLUS] = ACTIONS(115), + [anon_sym_LBRACE_DASH] = ACTIONS(117), + [anon_sym_BSLASH] = ACTIONS(119), + [sym_quotation_marks] = ACTIONS(121), + [sym_ellipsis] = ACTIONS(121), + [sym_em_dash] = ACTIONS(121), + [sym_en_dash] = ACTIONS(123), + [sym_backslash_escape] = ACTIONS(123), + [anon_sym_LT] = ACTIONS(125), + [sym_symbol] = ACTIONS(121), + [anon_sym_LBRACK_CARET] = ACTIONS(127), + [anon_sym_BANG_LBRACK] = ACTIONS(129), + [anon_sym_LBRACK] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_DOLLAR] = ACTIONS(135), + [anon_sym_TODO] = ACTIONS(137), + [anon_sym_WIP] = ACTIONS(137), + [anon_sym_NOTE] = ACTIONS(139), + [anon_sym_INFO] = ACTIONS(139), + [anon_sym_XXX] = ACTIONS(139), + [sym_fixme] = ACTIONS(121), + [sym__whitespace1] = ACTIONS(141), + [sym__newline] = ACTIONS(143), + [aux_sym__text_token1] = ACTIONS(145), + [sym__verbatim_begin] = ACTIONS(147), }, - [97] = { - [sym__inline] = STATE(1101), + [91] = { + [sym__inline] = STATE(922), + [sym__element] = STATE(110), + [sym_emphasis] = STATE(146), + [sym_emphasis_begin] = STATE(1144), + [sym_strong] = STATE(146), + [sym_strong_begin] = STATE(1145), + [sym_superscript] = STATE(146), + [sym_superscript_begin] = STATE(1146), + [sym_subscript] = STATE(146), + [sym_subscript_begin] = STATE(1147), + [sym_highlighted] = STATE(146), + [sym_highlighted_begin] = STATE(1148), + [sym_insert] = STATE(146), + [sym_insert_begin] = STATE(1149), + [sym_delete] = STATE(146), + [sym_delete_begin] = STATE(1150), + [sym_hard_line_break] = STATE(144), + [sym__smart_punctuation] = STATE(144), + [sym_autolink] = STATE(144), + [sym_footnote_reference] = STATE(146), + [sym_footnote_marker_begin] = STATE(1151), + [sym__image] = STATE(146), + [sym_full_reference_image] = STATE(146), + [sym_collapsed_reference_image] = STATE(146), + [sym_inline_image] = STATE(146), + [sym_image_description] = STATE(673), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(146), + [sym_full_reference_link] = STATE(146), + [sym_collapsed_reference_link] = STATE(146), + [sym_inline_link] = STATE(146), + [sym_link_text] = STATE(662), + [sym_span] = STATE(110), + [sym__bracketed_text_begin] = STATE(1208), + [sym__comment_with_spaces] = STATE(144), + [sym_raw_inline] = STATE(144), + [sym_math] = STATE(144), + [sym_verbatim] = STATE(144), + [sym__todo_highlights] = STATE(144), + [sym_todo] = STATE(144), + [sym_note] = STATE(144), + [sym__symbol_fallback] = STATE(144), + [aux_sym__text] = STATE(128), + [aux_sym__inline_repeat1] = STATE(110), + [anon_sym_LBRACE_] = ACTIONS(587), + [anon_sym__] = ACTIONS(589), + [anon_sym_LBRACE_STAR] = ACTIONS(591), + [anon_sym_STAR] = ACTIONS(593), + [anon_sym_LBRACE_CARET] = ACTIONS(595), + [anon_sym_CARET] = ACTIONS(595), + [anon_sym_LBRACE_TILDE] = ACTIONS(597), + [anon_sym_TILDE] = ACTIONS(597), + [anon_sym_LBRACE_EQ] = ACTIONS(599), + [anon_sym_LBRACE_PLUS] = ACTIONS(601), + [anon_sym_LBRACE_DASH] = ACTIONS(603), + [anon_sym_BSLASH] = ACTIONS(605), + [sym_quotation_marks] = ACTIONS(607), + [sym_ellipsis] = ACTIONS(607), + [sym_em_dash] = ACTIONS(607), + [sym_en_dash] = ACTIONS(609), + [sym_backslash_escape] = ACTIONS(609), + [anon_sym_LT] = ACTIONS(611), + [sym_symbol] = ACTIONS(607), + [anon_sym_LBRACK_CARET] = ACTIONS(613), + [anon_sym_BANG_LBRACK] = ACTIONS(615), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_LPAREN] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [anon_sym_TODO] = ACTIONS(623), + [anon_sym_WIP] = ACTIONS(623), + [anon_sym_NOTE] = ACTIONS(625), + [anon_sym_INFO] = ACTIONS(625), + [anon_sym_XXX] = ACTIONS(625), + [sym_fixme] = ACTIONS(607), + [sym__whitespace1] = ACTIONS(627), + [sym__newline] = ACTIONS(629), + [aux_sym__text_token1] = ACTIONS(631), + [sym__verbatim_begin] = ACTIONS(633), + }, + [92] = { + [sym__inline] = STATE(924), [sym__element] = STATE(14), [sym_emphasis] = STATE(136), - [sym_emphasis_begin] = STATE(1122), + [sym_emphasis_begin] = STATE(1134), [sym_strong] = STATE(136), - [sym_strong_begin] = STATE(1123), + [sym_strong_begin] = STATE(1135), [sym_superscript] = STATE(136), - [sym_superscript_begin] = STATE(1124), + [sym_superscript_begin] = STATE(1136), [sym_subscript] = STATE(136), - [sym_subscript_begin] = STATE(1125), + [sym_subscript_begin] = STATE(1137), [sym_highlighted] = STATE(136), - [sym_highlighted_begin] = STATE(1126), + [sym_highlighted_begin] = STATE(1138), [sym_insert] = STATE(136), - [sym_insert_begin] = STATE(1127), + [sym_insert_begin] = STATE(1139), [sym_delete] = STATE(136), - [sym_delete_begin] = STATE(1128), - [sym_hard_line_break] = STATE(136), - [sym__smart_punctuation] = STATE(136), - [sym_autolink] = STATE(136), + [sym_delete_begin] = STATE(1140), + [sym_hard_line_break] = STATE(134), + [sym__smart_punctuation] = STATE(134), + [sym_autolink] = STATE(134), [sym_footnote_reference] = STATE(136), - [sym_footnote_marker_begin] = STATE(1129), + [sym_footnote_marker_begin] = STATE(1141), [sym__image] = STATE(136), [sym_full_reference_image] = STATE(136), [sym_collapsed_reference_image] = STATE(136), [sym_inline_image] = STATE(136), - [sym_image_description] = STATE(651), - [sym__image_description_begin] = STATE(1057), + [sym_image_description] = STATE(670), + [sym__image_description_begin] = STATE(1079), [sym__link] = STATE(136), [sym_full_reference_link] = STATE(136), [sym_collapsed_reference_link] = STATE(136), [sym_inline_link] = STATE(136), - [sym_link_text] = STATE(650), + [sym_link_text] = STATE(671), [sym_span] = STATE(14), - [sym__bracketed_text_begin] = STATE(1186), - [sym__comment_with_spaces] = STATE(136), - [sym_raw_inline] = STATE(136), - [sym_math] = STATE(136), - [sym_verbatim] = STATE(136), - [sym__todo_highlights] = STATE(136), - [sym_todo] = STATE(136), - [sym_note] = STATE(136), - [sym__symbol_fallback] = STATE(136), - [aux_sym__text] = STATE(130), + [sym__bracketed_text_begin] = STATE(1207), + [sym__comment_with_spaces] = STATE(134), + [sym_raw_inline] = STATE(134), + [sym_math] = STATE(134), + [sym_verbatim] = STATE(134), + [sym__todo_highlights] = STATE(134), + [sym_todo] = STATE(134), + [sym_note] = STATE(134), + [sym__symbol_fallback] = STATE(134), + [aux_sym__text] = STATE(129), [aux_sym__inline_repeat1] = STATE(14), - [anon_sym_LBRACE_] = ACTIONS(319), - [anon_sym__] = ACTIONS(321), - [anon_sym_LBRACE_STAR] = ACTIONS(323), - [anon_sym_STAR] = ACTIONS(325), - [anon_sym_LBRACE_CARET] = ACTIONS(327), - [anon_sym_CARET] = ACTIONS(327), - [anon_sym_LBRACE_TILDE] = ACTIONS(329), - [anon_sym_TILDE] = ACTIONS(329), - [anon_sym_LBRACE_EQ] = ACTIONS(331), - [anon_sym_LBRACE_PLUS] = ACTIONS(333), - [anon_sym_LBRACE_DASH] = ACTIONS(335), - [anon_sym_BSLASH] = ACTIONS(337), - [sym_quotation_marks] = ACTIONS(339), - [sym_ellipsis] = ACTIONS(339), - [sym_em_dash] = ACTIONS(339), - [sym_en_dash] = ACTIONS(341), - [sym_backslash_escape] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(343), - [sym_symbol] = ACTIONS(339), - [anon_sym_LBRACK_CARET] = ACTIONS(345), - [anon_sym_BANG_LBRACK] = ACTIONS(347), - [anon_sym_LBRACK] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(351), - [anon_sym_DOLLAR] = ACTIONS(353), - [anon_sym_TODO] = ACTIONS(355), - [anon_sym_WIP] = ACTIONS(355), - [anon_sym_NOTE] = ACTIONS(357), - [anon_sym_INFO] = ACTIONS(357), - [anon_sym_XXX] = ACTIONS(357), - [sym_fixme] = ACTIONS(339), - [sym__whitespace1] = ACTIONS(359), + [anon_sym_LBRACE_] = ACTIONS(295), + [anon_sym__] = ACTIONS(297), + [anon_sym_LBRACE_STAR] = ACTIONS(299), + [anon_sym_STAR] = ACTIONS(301), + [anon_sym_LBRACE_CARET] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(303), + [anon_sym_LBRACE_TILDE] = ACTIONS(305), + [anon_sym_TILDE] = ACTIONS(305), + [anon_sym_LBRACE_EQ] = ACTIONS(307), + [anon_sym_LBRACE_PLUS] = ACTIONS(309), + [anon_sym_LBRACE_DASH] = ACTIONS(311), + [anon_sym_BSLASH] = ACTIONS(313), + [sym_quotation_marks] = ACTIONS(315), + [sym_ellipsis] = ACTIONS(315), + [sym_em_dash] = ACTIONS(315), + [sym_en_dash] = ACTIONS(317), + [sym_backslash_escape] = ACTIONS(317), + [anon_sym_LT] = ACTIONS(319), + [sym_symbol] = ACTIONS(315), + [anon_sym_LBRACK_CARET] = ACTIONS(321), + [anon_sym_BANG_LBRACK] = ACTIONS(323), + [anon_sym_LBRACK] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(327), + [anon_sym_DOLLAR] = ACTIONS(329), + [anon_sym_TODO] = ACTIONS(331), + [anon_sym_WIP] = ACTIONS(331), + [anon_sym_NOTE] = ACTIONS(333), + [anon_sym_INFO] = ACTIONS(333), + [anon_sym_XXX] = ACTIONS(333), + [sym_fixme] = ACTIONS(315), + [sym__whitespace1] = ACTIONS(335), [sym__newline] = ACTIONS(635), - [aux_sym__text_token1] = ACTIONS(363), - [sym__verbatim_begin] = ACTIONS(365), + [aux_sym__text_token1] = ACTIONS(339), + [sym__verbatim_begin] = ACTIONS(341), }, - [98] = { - [sym__inline] = STATE(961), - [sym__element] = STATE(65), + [93] = { + [sym__inline] = STATE(925), + [sym__element] = STATE(64), [sym_emphasis] = STATE(133), - [sym_emphasis_begin] = STATE(1142), + [sym_emphasis_begin] = STATE(1124), [sym_strong] = STATE(133), - [sym_strong_begin] = STATE(1143), + [sym_strong_begin] = STATE(1125), [sym_superscript] = STATE(133), - [sym_superscript_begin] = STATE(1144), + [sym_superscript_begin] = STATE(1126), [sym_subscript] = STATE(133), - [sym_subscript_begin] = STATE(1145), + [sym_subscript_begin] = STATE(1127), [sym_highlighted] = STATE(133), - [sym_highlighted_begin] = STATE(1146), + [sym_highlighted_begin] = STATE(1128), [sym_insert] = STATE(133), - [sym_insert_begin] = STATE(1147), + [sym_insert_begin] = STATE(1129), [sym_delete] = STATE(133), - [sym_delete_begin] = STATE(1148), - [sym_hard_line_break] = STATE(133), - [sym__smart_punctuation] = STATE(133), - [sym_autolink] = STATE(133), + [sym_delete_begin] = STATE(1130), + [sym_hard_line_break] = STATE(140), + [sym__smart_punctuation] = STATE(140), + [sym_autolink] = STATE(140), [sym_footnote_reference] = STATE(133), - [sym_footnote_marker_begin] = STATE(1149), + [sym_footnote_marker_begin] = STATE(1131), [sym__image] = STATE(133), [sym_full_reference_image] = STATE(133), [sym_collapsed_reference_image] = STATE(133), [sym_inline_image] = STATE(133), - [sym_image_description] = STATE(638), - [sym__image_description_begin] = STATE(1057), + [sym_image_description] = STATE(663), + [sym__image_description_begin] = STATE(1079), [sym__link] = STATE(133), [sym_full_reference_link] = STATE(133), [sym_collapsed_reference_link] = STATE(133), [sym_inline_link] = STATE(133), - [sym_link_text] = STATE(637), - [sym_span] = STATE(65), - [sym__bracketed_text_begin] = STATE(1188), - [sym__comment_with_spaces] = STATE(133), - [sym_raw_inline] = STATE(133), - [sym_math] = STATE(133), - [sym_verbatim] = STATE(133), - [sym__todo_highlights] = STATE(133), - [sym_todo] = STATE(133), - [sym_note] = STATE(133), - [sym__symbol_fallback] = STATE(133), - [aux_sym__text] = STATE(129), - [aux_sym__inline_repeat1] = STATE(65), - [anon_sym_LBRACE_] = ACTIONS(489), - [anon_sym__] = ACTIONS(491), - [anon_sym_LBRACE_STAR] = ACTIONS(493), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_LBRACE_CARET] = ACTIONS(497), - [anon_sym_CARET] = ACTIONS(497), - [anon_sym_LBRACE_TILDE] = ACTIONS(499), - [anon_sym_TILDE] = ACTIONS(499), - [anon_sym_LBRACE_EQ] = ACTIONS(501), - [anon_sym_LBRACE_PLUS] = ACTIONS(503), - [anon_sym_LBRACE_DASH] = ACTIONS(505), - [anon_sym_BSLASH] = ACTIONS(507), - [sym_quotation_marks] = ACTIONS(509), - [sym_ellipsis] = ACTIONS(509), - [sym_em_dash] = ACTIONS(509), - [sym_en_dash] = ACTIONS(511), - [sym_backslash_escape] = ACTIONS(511), - [anon_sym_LT] = ACTIONS(513), - [sym_symbol] = ACTIONS(509), - [anon_sym_LBRACK_CARET] = ACTIONS(515), - [anon_sym_BANG_LBRACK] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(519), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_DOLLAR] = ACTIONS(523), - [anon_sym_TODO] = ACTIONS(525), - [anon_sym_WIP] = ACTIONS(525), - [anon_sym_NOTE] = ACTIONS(527), - [anon_sym_INFO] = ACTIONS(527), - [anon_sym_XXX] = ACTIONS(527), - [sym_fixme] = ACTIONS(509), - [sym__whitespace1] = ACTIONS(529), - [sym__newline] = ACTIONS(531), - [aux_sym__text_token1] = ACTIONS(533), - [sym__verbatim_begin] = ACTIONS(535), - }, - [99] = { - [sym__inline] = STATE(1091), - [sym__element] = STATE(37), - [sym_emphasis] = STATE(131), - [sym_emphasis_begin] = STATE(1132), - [sym_strong] = STATE(131), - [sym_strong_begin] = STATE(1133), - [sym_superscript] = STATE(131), - [sym_superscript_begin] = STATE(1134), - [sym_subscript] = STATE(131), - [sym_subscript_begin] = STATE(1135), - [sym_highlighted] = STATE(131), - [sym_highlighted_begin] = STATE(1136), - [sym_insert] = STATE(131), - [sym_insert_begin] = STATE(1137), - [sym_delete] = STATE(131), - [sym_delete_begin] = STATE(1138), - [sym_hard_line_break] = STATE(131), - [sym__smart_punctuation] = STATE(131), - [sym_autolink] = STATE(131), - [sym_footnote_reference] = STATE(131), - [sym_footnote_marker_begin] = STATE(1139), - [sym__image] = STATE(131), - [sym_full_reference_image] = STATE(131), - [sym_collapsed_reference_image] = STATE(131), - [sym_inline_image] = STATE(131), - [sym_image_description] = STATE(643), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(131), - [sym_full_reference_link] = STATE(131), - [sym_collapsed_reference_link] = STATE(131), - [sym_inline_link] = STATE(131), - [sym_link_text] = STATE(619), - [sym_span] = STATE(37), - [sym__bracketed_text_begin] = STATE(1187), - [sym__comment_with_spaces] = STATE(131), - [sym_raw_inline] = STATE(131), - [sym_math] = STATE(131), - [sym_verbatim] = STATE(131), - [sym__todo_highlights] = STATE(131), - [sym_todo] = STATE(131), - [sym_note] = STATE(131), - [sym__symbol_fallback] = STATE(131), - [aux_sym__text] = STATE(123), - [aux_sym__inline_repeat1] = STATE(37), - [anon_sym_LBRACE_] = ACTIONS(537), - [anon_sym__] = ACTIONS(539), - [anon_sym_LBRACE_STAR] = ACTIONS(541), + [sym_link_text] = STATE(669), + [sym_span] = STATE(64), + [sym__bracketed_text_begin] = STATE(1206), + [sym__comment_with_spaces] = STATE(140), + [sym_raw_inline] = STATE(140), + [sym_math] = STATE(140), + [sym_verbatim] = STATE(140), + [sym__todo_highlights] = STATE(140), + [sym_todo] = STATE(140), + [sym_note] = STATE(140), + [sym__symbol_fallback] = STATE(140), + [aux_sym__text] = STATE(122), + [aux_sym__inline_repeat1] = STATE(64), + [anon_sym_LBRACE_] = ACTIONS(537), + [anon_sym__] = ACTIONS(539), + [anon_sym_LBRACE_STAR] = ACTIONS(541), [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE_CARET] = ACTIONS(545), [anon_sym_CARET] = ACTIONS(545), @@ -13093,41 +12657,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token1] = ACTIONS(581), [sym__verbatim_begin] = ACTIONS(583), }, - [100] = { - [sym__inline] = STATE(962), - [sym__element] = STATE(37), - [sym_emphasis] = STATE(131), - [sym_emphasis_begin] = STATE(1132), - [sym_strong] = STATE(131), - [sym_strong_begin] = STATE(1133), - [sym_superscript] = STATE(131), - [sym_superscript_begin] = STATE(1134), - [sym_subscript] = STATE(131), - [sym_subscript_begin] = STATE(1135), - [sym_highlighted] = STATE(131), - [sym_highlighted_begin] = STATE(1136), - [sym_insert] = STATE(131), - [sym_insert_begin] = STATE(1137), - [sym_delete] = STATE(131), - [sym_delete_begin] = STATE(1138), + [94] = { + [sym__inline] = STATE(1100), + [sym__element] = STATE(110), + [sym_emphasis] = STATE(146), + [sym_emphasis_begin] = STATE(1144), + [sym_strong] = STATE(146), + [sym_strong_begin] = STATE(1145), + [sym_superscript] = STATE(146), + [sym_superscript_begin] = STATE(1146), + [sym_subscript] = STATE(146), + [sym_subscript_begin] = STATE(1147), + [sym_highlighted] = STATE(146), + [sym_highlighted_begin] = STATE(1148), + [sym_insert] = STATE(146), + [sym_insert_begin] = STATE(1149), + [sym_delete] = STATE(146), + [sym_delete_begin] = STATE(1150), + [sym_hard_line_break] = STATE(144), + [sym__smart_punctuation] = STATE(144), + [sym_autolink] = STATE(144), + [sym_footnote_reference] = STATE(146), + [sym_footnote_marker_begin] = STATE(1151), + [sym__image] = STATE(146), + [sym_full_reference_image] = STATE(146), + [sym_collapsed_reference_image] = STATE(146), + [sym_inline_image] = STATE(146), + [sym_image_description] = STATE(673), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(146), + [sym_full_reference_link] = STATE(146), + [sym_collapsed_reference_link] = STATE(146), + [sym_inline_link] = STATE(146), + [sym_link_text] = STATE(662), + [sym_span] = STATE(110), + [sym__bracketed_text_begin] = STATE(1208), + [sym__comment_with_spaces] = STATE(144), + [sym_raw_inline] = STATE(144), + [sym_math] = STATE(144), + [sym_verbatim] = STATE(144), + [sym__todo_highlights] = STATE(144), + [sym_todo] = STATE(144), + [sym_note] = STATE(144), + [sym__symbol_fallback] = STATE(144), + [aux_sym__text] = STATE(128), + [aux_sym__inline_repeat1] = STATE(110), + [anon_sym_LBRACE_] = ACTIONS(587), + [anon_sym__] = ACTIONS(589), + [anon_sym_LBRACE_STAR] = ACTIONS(591), + [anon_sym_STAR] = ACTIONS(593), + [anon_sym_LBRACE_CARET] = ACTIONS(595), + [anon_sym_CARET] = ACTIONS(595), + [anon_sym_LBRACE_TILDE] = ACTIONS(597), + [anon_sym_TILDE] = ACTIONS(597), + [anon_sym_LBRACE_EQ] = ACTIONS(599), + [anon_sym_LBRACE_PLUS] = ACTIONS(601), + [anon_sym_LBRACE_DASH] = ACTIONS(603), + [anon_sym_BSLASH] = ACTIONS(605), + [sym_quotation_marks] = ACTIONS(607), + [sym_ellipsis] = ACTIONS(607), + [sym_em_dash] = ACTIONS(607), + [sym_en_dash] = ACTIONS(609), + [sym_backslash_escape] = ACTIONS(609), + [anon_sym_LT] = ACTIONS(611), + [sym_symbol] = ACTIONS(607), + [anon_sym_LBRACK_CARET] = ACTIONS(613), + [anon_sym_BANG_LBRACK] = ACTIONS(615), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_LPAREN] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [anon_sym_TODO] = ACTIONS(623), + [anon_sym_WIP] = ACTIONS(623), + [anon_sym_NOTE] = ACTIONS(625), + [anon_sym_INFO] = ACTIONS(625), + [anon_sym_XXX] = ACTIONS(625), + [sym_fixme] = ACTIONS(607), + [sym__whitespace1] = ACTIONS(627), + [sym__newline] = ACTIONS(629), + [aux_sym__text_token1] = ACTIONS(631), + [sym__verbatim_begin] = ACTIONS(633), + }, + [95] = { + [sym__inline_without_trailing_space] = STATE(926), + [sym__element] = STATE(550), + [sym_emphasis] = STATE(137), + [sym_emphasis_begin] = STATE(1114), + [sym_strong] = STATE(137), + [sym_strong_begin] = STATE(1115), + [sym_superscript] = STATE(137), + [sym_superscript_begin] = STATE(1116), + [sym_subscript] = STATE(137), + [sym_subscript_begin] = STATE(1117), + [sym_highlighted] = STATE(137), + [sym_highlighted_begin] = STATE(1118), + [sym_insert] = STATE(137), + [sym_insert_begin] = STATE(1119), + [sym_delete] = STATE(137), + [sym_delete_begin] = STATE(1120), [sym_hard_line_break] = STATE(131), [sym__smart_punctuation] = STATE(131), [sym_autolink] = STATE(131), - [sym_footnote_reference] = STATE(131), - [sym_footnote_marker_begin] = STATE(1139), - [sym__image] = STATE(131), - [sym_full_reference_image] = STATE(131), - [sym_collapsed_reference_image] = STATE(131), - [sym_inline_image] = STATE(131), - [sym_image_description] = STATE(643), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(131), - [sym_full_reference_link] = STATE(131), - [sym_collapsed_reference_link] = STATE(131), - [sym_inline_link] = STATE(131), - [sym_link_text] = STATE(619), - [sym_span] = STATE(37), - [sym__bracketed_text_begin] = STATE(1187), + [sym_footnote_reference] = STATE(137), + [sym_footnote_marker_begin] = STATE(1121), + [sym__image] = STATE(137), + [sym_full_reference_image] = STATE(137), + [sym_collapsed_reference_image] = STATE(137), + [sym_inline_image] = STATE(137), + [sym_image_description] = STATE(649), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(137), + [sym_full_reference_link] = STATE(137), + [sym_collapsed_reference_link] = STATE(137), + [sym_inline_link] = STATE(137), + [sym_link_text] = STATE(650), + [sym_span] = STATE(550), + [sym__bracketed_text_begin] = STATE(1205), [sym__comment_with_spaces] = STATE(131), [sym_raw_inline] = STATE(131), [sym_math] = STATE(131), @@ -13136,88 +12780,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(131), [sym_note] = STATE(131), [sym__symbol_fallback] = STATE(131), - [aux_sym__text] = STATE(123), - [aux_sym__inline_repeat1] = STATE(37), - [anon_sym_LBRACE_] = ACTIONS(537), - [anon_sym__] = ACTIONS(539), - [anon_sym_LBRACE_STAR] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(543), - [anon_sym_LBRACE_CARET] = ACTIONS(545), - [anon_sym_CARET] = ACTIONS(545), - [anon_sym_LBRACE_TILDE] = ACTIONS(547), - [anon_sym_TILDE] = ACTIONS(547), - [anon_sym_LBRACE_EQ] = ACTIONS(549), - [anon_sym_LBRACE_PLUS] = ACTIONS(551), - [anon_sym_LBRACE_DASH] = ACTIONS(553), - [anon_sym_BSLASH] = ACTIONS(555), - [sym_quotation_marks] = ACTIONS(557), - [sym_ellipsis] = ACTIONS(557), - [sym_em_dash] = ACTIONS(557), - [sym_en_dash] = ACTIONS(559), - [sym_backslash_escape] = ACTIONS(559), - [anon_sym_LT] = ACTIONS(561), - [sym_symbol] = ACTIONS(557), - [anon_sym_LBRACK_CARET] = ACTIONS(563), - [anon_sym_BANG_LBRACK] = ACTIONS(565), - [anon_sym_LBRACK] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_DOLLAR] = ACTIONS(571), - [anon_sym_TODO] = ACTIONS(573), - [anon_sym_WIP] = ACTIONS(573), - [anon_sym_NOTE] = ACTIONS(575), - [anon_sym_INFO] = ACTIONS(575), - [anon_sym_XXX] = ACTIONS(575), - [sym_fixme] = ACTIONS(557), - [sym__whitespace1] = ACTIONS(577), - [sym__newline] = ACTIONS(579), - [aux_sym__text_token1] = ACTIONS(581), - [sym__verbatim_begin] = ACTIONS(583), - }, - [101] = { - [sym__inline] = STATE(1078), - [sym__element] = STATE(65), - [sym_emphasis] = STATE(133), - [sym_emphasis_begin] = STATE(1142), - [sym_strong] = STATE(133), - [sym_strong_begin] = STATE(1143), - [sym_superscript] = STATE(133), - [sym_superscript_begin] = STATE(1144), - [sym_subscript] = STATE(133), - [sym_subscript_begin] = STATE(1145), - [sym_highlighted] = STATE(133), - [sym_highlighted_begin] = STATE(1146), - [sym_insert] = STATE(133), - [sym_insert_begin] = STATE(1147), - [sym_delete] = STATE(133), - [sym_delete_begin] = STATE(1148), - [sym_hard_line_break] = STATE(133), - [sym__smart_punctuation] = STATE(133), - [sym_autolink] = STATE(133), - [sym_footnote_reference] = STATE(133), - [sym_footnote_marker_begin] = STATE(1149), - [sym__image] = STATE(133), - [sym_full_reference_image] = STATE(133), - [sym_collapsed_reference_image] = STATE(133), - [sym_inline_image] = STATE(133), - [sym_image_description] = STATE(638), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(133), - [sym_full_reference_link] = STATE(133), - [sym_collapsed_reference_link] = STATE(133), - [sym_inline_link] = STATE(133), - [sym_link_text] = STATE(637), - [sym_span] = STATE(65), - [sym__bracketed_text_begin] = STATE(1188), - [sym__comment_with_spaces] = STATE(133), - [sym_raw_inline] = STATE(133), - [sym_math] = STATE(133), - [sym_verbatim] = STATE(133), - [sym__todo_highlights] = STATE(133), - [sym_todo] = STATE(133), - [sym_note] = STATE(133), - [sym__symbol_fallback] = STATE(133), - [aux_sym__text] = STATE(129), - [aux_sym__inline_repeat1] = STATE(65), + [aux_sym__text] = STATE(130), + [aux_sym__inline_repeat1] = STATE(119), [anon_sym_LBRACE_] = ACTIONS(489), [anon_sym__] = ACTIONS(491), [anon_sym_LBRACE_STAR] = ACTIONS(493), @@ -13253,131 +12817,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token1] = ACTIONS(533), [sym__verbatim_begin] = ACTIONS(535), }, - [102] = { - [sym__inline] = STATE(963), - [sym__element] = STATE(14), - [sym_emphasis] = STATE(136), - [sym_emphasis_begin] = STATE(1122), - [sym_strong] = STATE(136), - [sym_strong_begin] = STATE(1123), - [sym_superscript] = STATE(136), - [sym_superscript_begin] = STATE(1124), - [sym_subscript] = STATE(136), - [sym_subscript_begin] = STATE(1125), - [sym_highlighted] = STATE(136), - [sym_highlighted_begin] = STATE(1126), - [sym_insert] = STATE(136), - [sym_insert_begin] = STATE(1127), - [sym_delete] = STATE(136), - [sym_delete_begin] = STATE(1128), - [sym_hard_line_break] = STATE(136), - [sym__smart_punctuation] = STATE(136), - [sym_autolink] = STATE(136), - [sym_footnote_reference] = STATE(136), - [sym_footnote_marker_begin] = STATE(1129), - [sym__image] = STATE(136), - [sym_full_reference_image] = STATE(136), - [sym_collapsed_reference_image] = STATE(136), - [sym_inline_image] = STATE(136), - [sym_image_description] = STATE(651), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(136), - [sym_full_reference_link] = STATE(136), - [sym_collapsed_reference_link] = STATE(136), - [sym_inline_link] = STATE(136), - [sym_link_text] = STATE(650), - [sym_span] = STATE(14), - [sym__bracketed_text_begin] = STATE(1186), - [sym__comment_with_spaces] = STATE(136), - [sym_raw_inline] = STATE(136), - [sym_math] = STATE(136), - [sym_verbatim] = STATE(136), - [sym__todo_highlights] = STATE(136), - [sym_todo] = STATE(136), - [sym_note] = STATE(136), - [sym__symbol_fallback] = STATE(136), - [aux_sym__text] = STATE(130), - [aux_sym__inline_repeat1] = STATE(14), - [anon_sym_LBRACE_] = ACTIONS(319), - [anon_sym__] = ACTIONS(321), - [anon_sym_LBRACE_STAR] = ACTIONS(323), - [anon_sym_STAR] = ACTIONS(325), - [anon_sym_LBRACE_CARET] = ACTIONS(327), - [anon_sym_CARET] = ACTIONS(327), - [anon_sym_LBRACE_TILDE] = ACTIONS(329), - [anon_sym_TILDE] = ACTIONS(329), - [anon_sym_LBRACE_EQ] = ACTIONS(331), - [anon_sym_LBRACE_PLUS] = ACTIONS(333), - [anon_sym_LBRACE_DASH] = ACTIONS(335), - [anon_sym_BSLASH] = ACTIONS(337), - [sym_quotation_marks] = ACTIONS(339), - [sym_ellipsis] = ACTIONS(339), - [sym_em_dash] = ACTIONS(339), - [sym_en_dash] = ACTIONS(341), - [sym_backslash_escape] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(343), - [sym_symbol] = ACTIONS(339), - [anon_sym_LBRACK_CARET] = ACTIONS(345), - [anon_sym_BANG_LBRACK] = ACTIONS(347), - [anon_sym_LBRACK] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(351), - [anon_sym_DOLLAR] = ACTIONS(353), - [anon_sym_TODO] = ACTIONS(355), - [anon_sym_WIP] = ACTIONS(355), - [anon_sym_NOTE] = ACTIONS(357), - [anon_sym_INFO] = ACTIONS(357), - [anon_sym_XXX] = ACTIONS(357), - [sym_fixme] = ACTIONS(339), - [sym__whitespace1] = ACTIONS(359), - [sym__newline] = ACTIONS(635), - [aux_sym__text_token1] = ACTIONS(363), - [sym__verbatim_begin] = ACTIONS(365), - }, - [103] = { - [sym__inline] = STATE(1076), - [sym__element] = STATE(71), - [sym_emphasis] = STATE(132), - [sym_emphasis_begin] = STATE(1152), - [sym_strong] = STATE(132), - [sym_strong_begin] = STATE(1153), - [sym_superscript] = STATE(132), - [sym_superscript_begin] = STATE(1154), - [sym_subscript] = STATE(132), - [sym_subscript_begin] = STATE(1155), - [sym_highlighted] = STATE(132), - [sym_highlighted_begin] = STATE(1156), - [sym_insert] = STATE(132), - [sym_insert_begin] = STATE(1157), - [sym_delete] = STATE(132), - [sym_delete_begin] = STATE(1158), - [sym_hard_line_break] = STATE(132), - [sym__smart_punctuation] = STATE(132), - [sym_autolink] = STATE(132), - [sym_footnote_reference] = STATE(132), - [sym_footnote_marker_begin] = STATE(1159), - [sym__image] = STATE(132), - [sym_full_reference_image] = STATE(132), - [sym_collapsed_reference_image] = STATE(132), - [sym_inline_image] = STATE(132), - [sym_image_description] = STATE(633), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(132), - [sym_full_reference_link] = STATE(132), - [sym_collapsed_reference_link] = STATE(132), - [sym_inline_link] = STATE(132), - [sym_link_text] = STATE(631), - [sym_span] = STATE(71), - [sym__bracketed_text_begin] = STATE(1189), - [sym__comment_with_spaces] = STATE(132), - [sym_raw_inline] = STATE(132), - [sym_math] = STATE(132), - [sym_verbatim] = STATE(132), - [sym__todo_highlights] = STATE(132), - [sym_todo] = STATE(132), - [sym_note] = STATE(132), - [sym__symbol_fallback] = STATE(132), - [aux_sym__text] = STATE(128), - [aux_sym__inline_repeat1] = STATE(71), + [96] = { + [sym__inline_without_trailing_space] = STATE(927), + [sym__element] = STATE(594), + [sym_emphasis] = STATE(149), + [sym_emphasis_begin] = STATE(1104), + [sym_strong] = STATE(149), + [sym_strong_begin] = STATE(1105), + [sym_superscript] = STATE(149), + [sym_superscript_begin] = STATE(1106), + [sym_subscript] = STATE(149), + [sym_subscript_begin] = STATE(1107), + [sym_highlighted] = STATE(149), + [sym_highlighted_begin] = STATE(1108), + [sym_insert] = STATE(149), + [sym_insert_begin] = STATE(1109), + [sym_delete] = STATE(149), + [sym_delete_begin] = STATE(1110), + [sym_hard_line_break] = STATE(143), + [sym__smart_punctuation] = STATE(143), + [sym_autolink] = STATE(143), + [sym_footnote_reference] = STATE(149), + [sym_footnote_marker_begin] = STATE(1111), + [sym__image] = STATE(149), + [sym_full_reference_image] = STATE(149), + [sym_collapsed_reference_image] = STATE(149), + [sym_inline_image] = STATE(149), + [sym_image_description] = STATE(658), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(149), + [sym_full_reference_link] = STATE(149), + [sym_collapsed_reference_link] = STATE(149), + [sym_inline_link] = STATE(149), + [sym_link_text] = STATE(672), + [sym_span] = STATE(594), + [sym__bracketed_text_begin] = STATE(1204), + [sym__comment_with_spaces] = STATE(143), + [sym_raw_inline] = STATE(143), + [sym_math] = STATE(143), + [sym_verbatim] = STATE(143), + [sym__todo_highlights] = STATE(143), + [sym_todo] = STATE(143), + [sym_note] = STATE(143), + [sym__symbol_fallback] = STATE(143), + [aux_sym__text] = STATE(127), + [aux_sym__inline_repeat1] = STATE(120), [anon_sym_LBRACE_] = ACTIONS(441), [anon_sym__] = ACTIONS(443), [anon_sym_LBRACE_STAR] = ACTIONS(445), @@ -13413,121 +12897,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token1] = ACTIONS(485), [sym__verbatim_begin] = ACTIONS(487), }, - [104] = { - [sym__inline_without_trailing_space] = STATE(1037), - [sym__element] = STATE(581), - [sym_emphasis] = STATE(141), - [sym_emphasis_begin] = STATE(1082), - [sym_strong] = STATE(141), - [sym_strong_begin] = STATE(1083), - [sym_superscript] = STATE(141), - [sym_superscript_begin] = STATE(1084), - [sym_subscript] = STATE(141), - [sym_subscript_begin] = STATE(1085), - [sym_highlighted] = STATE(141), - [sym_highlighted_begin] = STATE(1086), - [sym_insert] = STATE(141), - [sym_insert_begin] = STATE(1087), - [sym_delete] = STATE(141), - [sym_delete_begin] = STATE(1088), - [sym_hard_line_break] = STATE(141), - [sym__smart_punctuation] = STATE(141), - [sym_autolink] = STATE(141), - [sym_footnote_reference] = STATE(141), - [sym_footnote_marker_begin] = STATE(1089), - [sym__image] = STATE(141), - [sym_full_reference_image] = STATE(141), - [sym_collapsed_reference_image] = STATE(141), - [sym_inline_image] = STATE(141), - [sym_image_description] = STATE(642), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(141), - [sym_full_reference_link] = STATE(141), - [sym_collapsed_reference_link] = STATE(141), - [sym_inline_link] = STATE(141), - [sym_link_text] = STATE(629), - [sym_span] = STATE(581), - [sym__bracketed_text_begin] = STATE(1182), - [sym__comment_with_spaces] = STATE(141), - [sym_raw_inline] = STATE(141), - [sym_math] = STATE(141), - [sym_verbatim] = STATE(141), - [sym__todo_highlights] = STATE(141), - [sym_todo] = STATE(141), - [sym_note] = STATE(141), - [sym__symbol_fallback] = STATE(141), - [aux_sym__text] = STATE(125), - [aux_sym__inline_repeat1] = STATE(119), - [anon_sym_LBRACE_] = ACTIONS(585), - [anon_sym__] = ACTIONS(587), - [anon_sym_LBRACE_STAR] = ACTIONS(589), - [anon_sym_STAR] = ACTIONS(591), - [anon_sym_LBRACE_CARET] = ACTIONS(593), - [anon_sym_CARET] = ACTIONS(593), - [anon_sym_LBRACE_TILDE] = ACTIONS(595), - [anon_sym_TILDE] = ACTIONS(595), - [anon_sym_LBRACE_EQ] = ACTIONS(597), - [anon_sym_LBRACE_PLUS] = ACTIONS(599), - [anon_sym_LBRACE_DASH] = ACTIONS(601), - [anon_sym_BSLASH] = ACTIONS(603), - [sym_quotation_marks] = ACTIONS(605), - [sym_ellipsis] = ACTIONS(605), - [sym_em_dash] = ACTIONS(605), - [sym_en_dash] = ACTIONS(607), - [sym_backslash_escape] = ACTIONS(607), - [anon_sym_LT] = ACTIONS(609), - [sym_symbol] = ACTIONS(605), - [anon_sym_LBRACK_CARET] = ACTIONS(611), - [anon_sym_BANG_LBRACK] = ACTIONS(613), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_DOLLAR] = ACTIONS(619), - [anon_sym_TODO] = ACTIONS(621), - [anon_sym_WIP] = ACTIONS(621), - [anon_sym_NOTE] = ACTIONS(623), - [anon_sym_INFO] = ACTIONS(623), - [anon_sym_XXX] = ACTIONS(623), - [sym_fixme] = ACTIONS(605), - [sym__whitespace1] = ACTIONS(625), - [sym__newline] = ACTIONS(627), - [aux_sym__text_token1] = ACTIONS(629), - [sym__verbatim_begin] = ACTIONS(631), - }, - [105] = { - [sym__inline_without_trailing_space] = STATE(1029), - [sym__element] = STATE(536), - [sym_emphasis] = STATE(138), - [sym_emphasis_begin] = STATE(1092), - [sym_strong] = STATE(138), - [sym_strong_begin] = STATE(1093), - [sym_superscript] = STATE(138), - [sym_superscript_begin] = STATE(1094), - [sym_subscript] = STATE(138), - [sym_subscript_begin] = STATE(1095), - [sym_highlighted] = STATE(138), - [sym_highlighted_begin] = STATE(1096), - [sym_insert] = STATE(138), - [sym_insert_begin] = STATE(1097), - [sym_delete] = STATE(138), - [sym_delete_begin] = STATE(1098), + [97] = { + [sym__inline] = STATE(980), + [sym__element] = STATE(46), + [sym_emphasis] = STATE(135), + [sym_emphasis_begin] = STATE(1174), + [sym_strong] = STATE(135), + [sym_strong_begin] = STATE(1175), + [sym_superscript] = STATE(135), + [sym_superscript_begin] = STATE(1176), + [sym_subscript] = STATE(135), + [sym_subscript_begin] = STATE(1177), + [sym_highlighted] = STATE(135), + [sym_highlighted_begin] = STATE(1178), + [sym_insert] = STATE(135), + [sym_insert_begin] = STATE(1179), + [sym_delete] = STATE(135), + [sym_delete_begin] = STATE(1180), [sym_hard_line_break] = STATE(138), [sym__smart_punctuation] = STATE(138), [sym_autolink] = STATE(138), - [sym_footnote_reference] = STATE(138), - [sym_footnote_marker_begin] = STATE(1099), - [sym__image] = STATE(138), - [sym_full_reference_image] = STATE(138), - [sym_collapsed_reference_image] = STATE(138), - [sym_inline_image] = STATE(138), - [sym_image_description] = STATE(626), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(138), - [sym_full_reference_link] = STATE(138), - [sym_collapsed_reference_link] = STATE(138), - [sym_inline_link] = STATE(138), - [sym_link_text] = STATE(627), - [sym_span] = STATE(536), - [sym__bracketed_text_begin] = STATE(1183), + [sym_footnote_reference] = STATE(135), + [sym_footnote_marker_begin] = STATE(1181), + [sym__image] = STATE(135), + [sym_full_reference_image] = STATE(135), + [sym_collapsed_reference_image] = STATE(135), + [sym_inline_image] = STATE(135), + [sym_image_description] = STATE(656), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(135), + [sym_full_reference_link] = STATE(135), + [sym_collapsed_reference_link] = STATE(135), + [sym_inline_link] = STATE(135), + [sym_link_text] = STATE(654), + [sym_span] = STATE(46), + [sym__bracketed_text_begin] = STATE(1211), [sym__comment_with_spaces] = STATE(138), [sym_raw_inline] = STATE(138), [sym_math] = STATE(138), @@ -13536,77 +12940,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(138), [sym_note] = STATE(138), [sym__symbol_fallback] = STATE(138), - [aux_sym__text] = STATE(127), - [aux_sym__inline_repeat1] = STATE(118), - [anon_sym_LBRACE_] = ACTIONS(149), - [anon_sym__] = ACTIONS(151), - [anon_sym_LBRACE_STAR] = ACTIONS(153), - [anon_sym_STAR] = ACTIONS(155), - [anon_sym_LBRACE_CARET] = ACTIONS(157), - [anon_sym_CARET] = ACTIONS(157), - [anon_sym_LBRACE_TILDE] = ACTIONS(159), - [anon_sym_TILDE] = ACTIONS(159), - [anon_sym_LBRACE_EQ] = ACTIONS(161), - [anon_sym_LBRACE_PLUS] = ACTIONS(163), - [anon_sym_LBRACE_DASH] = ACTIONS(165), - [anon_sym_BSLASH] = ACTIONS(167), - [sym_quotation_marks] = ACTIONS(169), - [sym_ellipsis] = ACTIONS(169), - [sym_em_dash] = ACTIONS(169), - [sym_en_dash] = ACTIONS(171), - [sym_backslash_escape] = ACTIONS(171), - [anon_sym_LT] = ACTIONS(173), - [sym_symbol] = ACTIONS(169), - [anon_sym_LBRACK_CARET] = ACTIONS(175), - [anon_sym_BANG_LBRACK] = ACTIONS(177), - [anon_sym_LBRACK] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(181), - [anon_sym_DOLLAR] = ACTIONS(183), - [anon_sym_TODO] = ACTIONS(185), - [anon_sym_WIP] = ACTIONS(185), - [anon_sym_NOTE] = ACTIONS(187), - [anon_sym_INFO] = ACTIONS(187), - [anon_sym_XXX] = ACTIONS(187), - [sym_fixme] = ACTIONS(169), - [sym__whitespace1] = ACTIONS(189), - [sym__newline] = ACTIONS(191), - [aux_sym__text_token1] = ACTIONS(193), - [sym__verbatim_begin] = ACTIONS(195), + [aux_sym__text] = STATE(121), + [aux_sym__inline_repeat1] = STATE(46), + [anon_sym_LBRACE_] = ACTIONS(345), + [anon_sym__] = ACTIONS(347), + [anon_sym_LBRACE_STAR] = ACTIONS(349), + [anon_sym_STAR] = ACTIONS(351), + [anon_sym_LBRACE_CARET] = ACTIONS(353), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_LBRACE_TILDE] = ACTIONS(355), + [anon_sym_TILDE] = ACTIONS(355), + [anon_sym_LBRACE_EQ] = ACTIONS(357), + [anon_sym_LBRACE_PLUS] = ACTIONS(359), + [anon_sym_LBRACE_DASH] = ACTIONS(361), + [anon_sym_BSLASH] = ACTIONS(363), + [sym_quotation_marks] = ACTIONS(365), + [sym_ellipsis] = ACTIONS(365), + [sym_em_dash] = ACTIONS(365), + [sym_en_dash] = ACTIONS(367), + [sym_backslash_escape] = ACTIONS(367), + [anon_sym_LT] = ACTIONS(369), + [sym_symbol] = ACTIONS(365), + [anon_sym_LBRACK_CARET] = ACTIONS(371), + [anon_sym_BANG_LBRACK] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(375), + [anon_sym_LPAREN] = ACTIONS(377), + [anon_sym_DOLLAR] = ACTIONS(379), + [anon_sym_TODO] = ACTIONS(381), + [anon_sym_WIP] = ACTIONS(381), + [anon_sym_NOTE] = ACTIONS(383), + [anon_sym_INFO] = ACTIONS(383), + [anon_sym_XXX] = ACTIONS(383), + [sym_fixme] = ACTIONS(365), + [sym__whitespace1] = ACTIONS(385), + [sym__newline] = ACTIONS(387), + [aux_sym__text_token1] = ACTIONS(389), + [sym__verbatim_begin] = ACTIONS(391), }, - [106] = { - [sym__element] = STATE(7), - [sym_emphasis] = STATE(139), - [sym_emphasis_begin] = STATE(1102), - [sym_strong] = STATE(139), - [sym_strong_begin] = STATE(1103), - [sym_superscript] = STATE(139), - [sym_superscript_begin] = STATE(1104), - [sym_subscript] = STATE(139), - [sym_subscript_begin] = STATE(1105), - [sym_highlighted] = STATE(139), - [sym_highlighted_begin] = STATE(1106), - [sym_insert] = STATE(139), - [sym_insert_begin] = STATE(1107), - [sym_delete] = STATE(139), - [sym_delete_begin] = STATE(1108), + [98] = { + [sym__inline] = STATE(1086), + [sym__element] = STATE(58), + [sym_emphasis] = STATE(148), + [sym_emphasis_begin] = STATE(1184), + [sym_strong] = STATE(148), + [sym_strong_begin] = STATE(1185), + [sym_superscript] = STATE(148), + [sym_superscript_begin] = STATE(1186), + [sym_subscript] = STATE(148), + [sym_subscript_begin] = STATE(1187), + [sym_highlighted] = STATE(148), + [sym_highlighted_begin] = STATE(1188), + [sym_insert] = STATE(148), + [sym_insert_begin] = STATE(1189), + [sym_delete] = STATE(148), + [sym_delete_begin] = STATE(1190), [sym_hard_line_break] = STATE(139), [sym__smart_punctuation] = STATE(139), [sym_autolink] = STATE(139), - [sym_footnote_reference] = STATE(139), - [sym_footnote_marker_begin] = STATE(1109), - [sym__image] = STATE(139), - [sym_full_reference_image] = STATE(139), - [sym_collapsed_reference_image] = STATE(139), - [sym_inline_image] = STATE(139), - [sym_image_description] = STATE(623), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(139), - [sym_full_reference_link] = STATE(139), - [sym_collapsed_reference_link] = STATE(139), - [sym_inline_link] = STATE(139), - [sym_link_text] = STATE(621), - [sym_span] = STATE(7), - [sym__bracketed_text_begin] = STATE(1184), + [sym_footnote_reference] = STATE(148), + [sym_footnote_marker_begin] = STATE(1191), + [sym__image] = STATE(148), + [sym_full_reference_image] = STATE(148), + [sym_collapsed_reference_image] = STATE(148), + [sym_inline_image] = STATE(148), + [sym_image_description] = STATE(648), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(148), + [sym_full_reference_link] = STATE(148), + [sym_collapsed_reference_link] = STATE(148), + [sym_inline_link] = STATE(148), + [sym_link_text] = STATE(647), + [sym_span] = STATE(58), + [sym__bracketed_text_begin] = STATE(1212), [sym__comment_with_spaces] = STATE(139), [sym_raw_inline] = STATE(139), [sym_math] = STATE(139), @@ -13615,88 +13020,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(139), [sym_note] = STATE(139), [sym__symbol_fallback] = STATE(139), - [aux_sym__text] = STATE(126), - [aux_sym__inline_repeat1] = STATE(7), - [anon_sym_LBRACE_] = ACTIONS(101), - [anon_sym__] = ACTIONS(103), - [anon_sym_LBRACE_STAR] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_LBRACE_CARET] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(109), - [anon_sym_LBRACE_TILDE] = ACTIONS(111), - [anon_sym_TILDE] = ACTIONS(111), - [anon_sym_LBRACE_EQ] = ACTIONS(113), - [anon_sym_LBRACE_PLUS] = ACTIONS(115), - [anon_sym_LBRACE_DASH] = ACTIONS(117), - [anon_sym_BSLASH] = ACTIONS(119), - [sym_quotation_marks] = ACTIONS(121), - [sym_ellipsis] = ACTIONS(121), - [sym_em_dash] = ACTIONS(121), - [sym_en_dash] = ACTIONS(123), - [sym_backslash_escape] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(125), - [sym_symbol] = ACTIONS(121), - [anon_sym_LBRACK_CARET] = ACTIONS(127), - [anon_sym_BANG_LBRACK] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_TODO] = ACTIONS(137), - [anon_sym_WIP] = ACTIONS(137), - [anon_sym_NOTE] = ACTIONS(139), - [anon_sym_INFO] = ACTIONS(139), - [anon_sym_XXX] = ACTIONS(139), - [sym_fixme] = ACTIONS(121), - [sym__whitespace1] = ACTIONS(141), - [sym__newline] = ACTIONS(933), - [aux_sym__text_token1] = ACTIONS(145), - [sym__verbatim_begin] = ACTIONS(147), - [sym_superscript_end] = ACTIONS(367), - }, - [107] = { - [sym__element] = STATE(115), - [sym_emphasis] = STATE(140), - [sym_emphasis_begin] = STATE(1162), - [sym_strong] = STATE(140), - [sym_strong_begin] = STATE(1163), - [sym_superscript] = STATE(140), - [sym_superscript_begin] = STATE(1164), - [sym_subscript] = STATE(140), - [sym_subscript_begin] = STATE(1165), - [sym_highlighted] = STATE(140), - [sym_highlighted_begin] = STATE(1166), - [sym_insert] = STATE(140), - [sym_insert_begin] = STATE(1167), - [sym_delete] = STATE(140), - [sym_delete_begin] = STATE(1168), - [sym_hard_line_break] = STATE(140), - [sym__smart_punctuation] = STATE(140), - [sym_autolink] = STATE(140), - [sym_footnote_reference] = STATE(140), - [sym_footnote_marker_begin] = STATE(1169), - [sym__image] = STATE(140), - [sym_full_reference_image] = STATE(140), - [sym_collapsed_reference_image] = STATE(140), - [sym_inline_image] = STATE(140), - [sym_image_description] = STATE(625), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(140), - [sym_full_reference_link] = STATE(140), - [sym_collapsed_reference_link] = STATE(140), - [sym_inline_link] = STATE(140), - [sym_link_text] = STATE(624), - [sym_span] = STATE(115), - [sym__bracketed_text_begin] = STATE(1190), - [sym__comment_with_spaces] = STATE(140), - [sym_raw_inline] = STATE(140), - [sym_math] = STATE(140), - [sym_verbatim] = STATE(140), - [sym__todo_highlights] = STATE(140), - [sym_todo] = STATE(140), - [sym_note] = STATE(140), - [sym__symbol_fallback] = STATE(140), - [aux_sym__text] = STATE(124), - [aux_sym__inline_repeat1] = STATE(115), + [aux_sym__text] = STATE(123), + [aux_sym__inline_repeat1] = STATE(58), [anon_sym_LBRACE_] = ACTIONS(51), [anon_sym__] = ACTIONS(53), [anon_sym_LBRACE_STAR] = ACTIONS(55), @@ -13728,696 +13053,295 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_XXX] = ACTIONS(89), [sym_fixme] = ACTIONS(71), [sym__whitespace1] = ACTIONS(91), - [sym__newline] = ACTIONS(935), + [sym__newline] = ACTIONS(93), [aux_sym__text_token1] = ACTIONS(95), [sym__verbatim_begin] = ACTIONS(97), - [sym__square_bracket_span_end] = ACTIONS(367), }, - [108] = { - [sym__inline] = STATE(845), - [sym__element] = STATE(37), - [sym_emphasis] = STATE(131), - [sym_emphasis_begin] = STATE(1132), - [sym_strong] = STATE(131), - [sym_strong_begin] = STATE(1133), - [sym_superscript] = STATE(131), - [sym_superscript_begin] = STATE(1134), - [sym_subscript] = STATE(131), - [sym_subscript_begin] = STATE(1135), - [sym_highlighted] = STATE(131), - [sym_highlighted_begin] = STATE(1136), - [sym_insert] = STATE(131), - [sym_insert_begin] = STATE(1137), - [sym_delete] = STATE(131), - [sym_delete_begin] = STATE(1138), - [sym_hard_line_break] = STATE(131), - [sym__smart_punctuation] = STATE(131), - [sym_autolink] = STATE(131), - [sym_footnote_reference] = STATE(131), - [sym_footnote_marker_begin] = STATE(1139), - [sym__image] = STATE(131), - [sym_full_reference_image] = STATE(131), - [sym_collapsed_reference_image] = STATE(131), - [sym_inline_image] = STATE(131), - [sym_image_description] = STATE(643), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(131), - [sym_full_reference_link] = STATE(131), - [sym_collapsed_reference_link] = STATE(131), - [sym_inline_link] = STATE(131), - [sym_link_text] = STATE(619), - [sym_span] = STATE(37), - [sym__bracketed_text_begin] = STATE(1187), - [sym__comment_with_spaces] = STATE(131), - [sym_raw_inline] = STATE(131), - [sym_math] = STATE(131), - [sym_verbatim] = STATE(131), - [sym__todo_highlights] = STATE(131), - [sym_todo] = STATE(131), - [sym_note] = STATE(131), - [sym__symbol_fallback] = STATE(131), - [aux_sym__text] = STATE(123), - [aux_sym__inline_repeat1] = STATE(37), - [anon_sym_LBRACE_] = ACTIONS(537), - [anon_sym__] = ACTIONS(539), - [anon_sym_LBRACE_STAR] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(543), - [anon_sym_LBRACE_CARET] = ACTIONS(545), - [anon_sym_CARET] = ACTIONS(545), - [anon_sym_LBRACE_TILDE] = ACTIONS(547), - [anon_sym_TILDE] = ACTIONS(547), - [anon_sym_LBRACE_EQ] = ACTIONS(549), - [anon_sym_LBRACE_PLUS] = ACTIONS(551), - [anon_sym_LBRACE_DASH] = ACTIONS(553), - [anon_sym_BSLASH] = ACTIONS(555), - [sym_quotation_marks] = ACTIONS(557), - [sym_ellipsis] = ACTIONS(557), - [sym_em_dash] = ACTIONS(557), - [sym_en_dash] = ACTIONS(559), - [sym_backslash_escape] = ACTIONS(559), - [anon_sym_LT] = ACTIONS(561), - [sym_symbol] = ACTIONS(557), - [anon_sym_LBRACK_CARET] = ACTIONS(563), - [anon_sym_BANG_LBRACK] = ACTIONS(565), - [anon_sym_LBRACK] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_DOLLAR] = ACTIONS(571), - [anon_sym_TODO] = ACTIONS(573), - [anon_sym_WIP] = ACTIONS(573), - [anon_sym_NOTE] = ACTIONS(575), - [anon_sym_INFO] = ACTIONS(575), - [anon_sym_XXX] = ACTIONS(575), - [sym_fixme] = ACTIONS(557), - [sym__whitespace1] = ACTIONS(577), - [sym__newline] = ACTIONS(579), - [aux_sym__text_token1] = ACTIONS(581), - [sym__verbatim_begin] = ACTIONS(583), - }, - [109] = { - [sym__inline] = STATE(1064), - [sym__element] = STATE(107), - [sym_emphasis] = STATE(140), - [sym_emphasis_begin] = STATE(1162), - [sym_strong] = STATE(140), - [sym_strong_begin] = STATE(1163), - [sym_superscript] = STATE(140), - [sym_superscript_begin] = STATE(1164), - [sym_subscript] = STATE(140), - [sym_subscript_begin] = STATE(1165), - [sym_highlighted] = STATE(140), - [sym_highlighted_begin] = STATE(1166), - [sym_insert] = STATE(140), - [sym_insert_begin] = STATE(1167), - [sym_delete] = STATE(140), - [sym_delete_begin] = STATE(1168), - [sym_hard_line_break] = STATE(140), - [sym__smart_punctuation] = STATE(140), - [sym_autolink] = STATE(140), - [sym_footnote_reference] = STATE(140), - [sym_footnote_marker_begin] = STATE(1169), - [sym__image] = STATE(140), - [sym_full_reference_image] = STATE(140), - [sym_collapsed_reference_image] = STATE(140), - [sym_inline_image] = STATE(140), - [sym_image_description] = STATE(625), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(140), - [sym_full_reference_link] = STATE(140), - [sym_collapsed_reference_link] = STATE(140), - [sym_inline_link] = STATE(140), - [sym_link_text] = STATE(624), - [sym_span] = STATE(107), - [sym__bracketed_text_begin] = STATE(1190), - [sym__comment_with_spaces] = STATE(140), - [sym_raw_inline] = STATE(140), - [sym_math] = STATE(140), - [sym_verbatim] = STATE(140), - [sym__todo_highlights] = STATE(140), - [sym_todo] = STATE(140), - [sym_note] = STATE(140), - [sym__symbol_fallback] = STATE(140), + [99] = { + [sym__inline] = STATE(1099), + [sym__element] = STATE(22), + [sym_emphasis] = STATE(147), + [sym_emphasis_begin] = STATE(1154), + [sym_strong] = STATE(147), + [sym_strong_begin] = STATE(1155), + [sym_superscript] = STATE(147), + [sym_superscript_begin] = STATE(1156), + [sym_subscript] = STATE(147), + [sym_subscript_begin] = STATE(1157), + [sym_highlighted] = STATE(147), + [sym_highlighted_begin] = STATE(1158), + [sym_insert] = STATE(147), + [sym_insert_begin] = STATE(1159), + [sym_delete] = STATE(147), + [sym_delete_begin] = STATE(1160), + [sym_hard_line_break] = STATE(145), + [sym__smart_punctuation] = STATE(145), + [sym_autolink] = STATE(145), + [sym_footnote_reference] = STATE(147), + [sym_footnote_marker_begin] = STATE(1161), + [sym__image] = STATE(147), + [sym_full_reference_image] = STATE(147), + [sym_collapsed_reference_image] = STATE(147), + [sym_inline_image] = STATE(147), + [sym_image_description] = STATE(665), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(147), + [sym_full_reference_link] = STATE(147), + [sym_collapsed_reference_link] = STATE(147), + [sym_inline_link] = STATE(147), + [sym_link_text] = STATE(664), + [sym_span] = STATE(22), + [sym__bracketed_text_begin] = STATE(1209), + [sym__comment_with_spaces] = STATE(145), + [sym_raw_inline] = STATE(145), + [sym_math] = STATE(145), + [sym_verbatim] = STATE(145), + [sym__todo_highlights] = STATE(145), + [sym_todo] = STATE(145), + [sym_note] = STATE(145), + [sym__symbol_fallback] = STATE(145), [aux_sym__text] = STATE(124), - [aux_sym__inline_repeat1] = STATE(107), - [anon_sym_LBRACE_] = ACTIONS(51), - [anon_sym__] = ACTIONS(53), - [anon_sym_LBRACE_STAR] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(57), - [anon_sym_LBRACE_CARET] = ACTIONS(59), - [anon_sym_CARET] = ACTIONS(59), - [anon_sym_LBRACE_TILDE] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(61), - [anon_sym_LBRACE_EQ] = ACTIONS(63), - [anon_sym_LBRACE_PLUS] = ACTIONS(65), - [anon_sym_LBRACE_DASH] = ACTIONS(67), - [anon_sym_BSLASH] = ACTIONS(69), - [sym_quotation_marks] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(71), - [sym_em_dash] = ACTIONS(71), - [sym_en_dash] = ACTIONS(73), - [sym_backslash_escape] = ACTIONS(73), - [anon_sym_LT] = ACTIONS(75), - [sym_symbol] = ACTIONS(71), - [anon_sym_LBRACK_CARET] = ACTIONS(77), - [anon_sym_BANG_LBRACK] = ACTIONS(79), - [anon_sym_LBRACK] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_TODO] = ACTIONS(87), - [anon_sym_WIP] = ACTIONS(87), - [anon_sym_NOTE] = ACTIONS(89), - [anon_sym_INFO] = ACTIONS(89), - [anon_sym_XXX] = ACTIONS(89), - [sym_fixme] = ACTIONS(71), - [sym__whitespace1] = ACTIONS(91), - [sym__newline] = ACTIONS(93), - [aux_sym__text_token1] = ACTIONS(95), - [sym__verbatim_begin] = ACTIONS(97), + [aux_sym__inline_repeat1] = STATE(22), + [anon_sym_LBRACE_] = ACTIONS(101), + [anon_sym__] = ACTIONS(103), + [anon_sym_LBRACE_STAR] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(107), + [anon_sym_LBRACE_CARET] = ACTIONS(109), + [anon_sym_CARET] = ACTIONS(109), + [anon_sym_LBRACE_TILDE] = ACTIONS(111), + [anon_sym_TILDE] = ACTIONS(111), + [anon_sym_LBRACE_EQ] = ACTIONS(113), + [anon_sym_LBRACE_PLUS] = ACTIONS(115), + [anon_sym_LBRACE_DASH] = ACTIONS(117), + [anon_sym_BSLASH] = ACTIONS(119), + [sym_quotation_marks] = ACTIONS(121), + [sym_ellipsis] = ACTIONS(121), + [sym_em_dash] = ACTIONS(121), + [sym_en_dash] = ACTIONS(123), + [sym_backslash_escape] = ACTIONS(123), + [anon_sym_LT] = ACTIONS(125), + [sym_symbol] = ACTIONS(121), + [anon_sym_LBRACK_CARET] = ACTIONS(127), + [anon_sym_BANG_LBRACK] = ACTIONS(129), + [anon_sym_LBRACK] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_DOLLAR] = ACTIONS(135), + [anon_sym_TODO] = ACTIONS(137), + [anon_sym_WIP] = ACTIONS(137), + [anon_sym_NOTE] = ACTIONS(139), + [anon_sym_INFO] = ACTIONS(139), + [anon_sym_XXX] = ACTIONS(139), + [sym_fixme] = ACTIONS(121), + [sym__whitespace1] = ACTIONS(141), + [sym__newline] = ACTIONS(143), + [aux_sym__text_token1] = ACTIONS(145), + [sym__verbatim_begin] = ACTIONS(147), }, - [110] = { - [sym__element] = STATE(110), + [100] = { + [sym__inline] = STATE(982), + [sym__element] = STATE(30), [sym_emphasis] = STATE(132), - [sym_emphasis_begin] = STATE(1152), + [sym_emphasis_begin] = STATE(1164), [sym_strong] = STATE(132), - [sym_strong_begin] = STATE(1153), + [sym_strong_begin] = STATE(1165), [sym_superscript] = STATE(132), - [sym_superscript_begin] = STATE(1154), + [sym_superscript_begin] = STATE(1166), [sym_subscript] = STATE(132), - [sym_subscript_begin] = STATE(1155), + [sym_subscript_begin] = STATE(1167), [sym_highlighted] = STATE(132), - [sym_highlighted_begin] = STATE(1156), + [sym_highlighted_begin] = STATE(1168), [sym_insert] = STATE(132), - [sym_insert_begin] = STATE(1157), + [sym_insert_begin] = STATE(1169), [sym_delete] = STATE(132), - [sym_delete_begin] = STATE(1158), - [sym_hard_line_break] = STATE(132), - [sym__smart_punctuation] = STATE(132), - [sym_autolink] = STATE(132), + [sym_delete_begin] = STATE(1170), + [sym_hard_line_break] = STATE(142), + [sym__smart_punctuation] = STATE(142), + [sym_autolink] = STATE(142), [sym_footnote_reference] = STATE(132), - [sym_footnote_marker_begin] = STATE(1159), + [sym_footnote_marker_begin] = STATE(1171), [sym__image] = STATE(132), [sym_full_reference_image] = STATE(132), [sym_collapsed_reference_image] = STATE(132), [sym_inline_image] = STATE(132), - [sym_image_description] = STATE(633), - [sym__image_description_begin] = STATE(1057), + [sym_image_description] = STATE(660), + [sym__image_description_begin] = STATE(1079), [sym__link] = STATE(132), [sym_full_reference_link] = STATE(132), [sym_collapsed_reference_link] = STATE(132), [sym_inline_link] = STATE(132), - [sym_link_text] = STATE(631), - [sym_span] = STATE(110), - [sym__bracketed_text_begin] = STATE(1189), - [sym__comment_with_spaces] = STATE(132), - [sym_raw_inline] = STATE(132), - [sym_math] = STATE(132), - [sym_verbatim] = STATE(132), - [sym__todo_highlights] = STATE(132), - [sym_todo] = STATE(132), - [sym_note] = STATE(132), - [sym__symbol_fallback] = STATE(132), - [aux_sym__text] = STATE(128), - [aux_sym__inline_repeat1] = STATE(110), - [anon_sym_LBRACE_] = ACTIONS(937), - [anon_sym__] = ACTIONS(940), - [anon_sym_LBRACE_STAR] = ACTIONS(943), - [anon_sym_STAR] = ACTIONS(946), - [anon_sym_LBRACE_CARET] = ACTIONS(949), - [anon_sym_CARET] = ACTIONS(949), - [anon_sym_LBRACE_TILDE] = ACTIONS(952), - [anon_sym_TILDE] = ACTIONS(952), - [anon_sym_LBRACE_EQ] = ACTIONS(955), - [anon_sym_LBRACE_PLUS] = ACTIONS(958), - [anon_sym_LBRACE_DASH] = ACTIONS(961), - [anon_sym_BSLASH] = ACTIONS(964), - [sym_quotation_marks] = ACTIONS(967), - [sym_ellipsis] = ACTIONS(967), - [sym_em_dash] = ACTIONS(967), - [sym_en_dash] = ACTIONS(970), - [sym_backslash_escape] = ACTIONS(970), - [anon_sym_LT] = ACTIONS(973), - [sym_symbol] = ACTIONS(967), - [anon_sym_LBRACK_CARET] = ACTIONS(976), - [anon_sym_BANG_LBRACK] = ACTIONS(979), - [anon_sym_LBRACK] = ACTIONS(982), - [anon_sym_RBRACK] = ACTIONS(317), - [anon_sym_LPAREN] = ACTIONS(985), - [anon_sym_DOLLAR] = ACTIONS(988), - [anon_sym_TODO] = ACTIONS(991), - [anon_sym_WIP] = ACTIONS(991), - [anon_sym_NOTE] = ACTIONS(994), - [anon_sym_INFO] = ACTIONS(994), - [anon_sym_XXX] = ACTIONS(994), - [sym_fixme] = ACTIONS(967), - [sym__whitespace1] = ACTIONS(997), - [sym__newline] = ACTIONS(1000), - [aux_sym__text_token1] = ACTIONS(1003), - [sym__verbatim_begin] = ACTIONS(1006), - }, - [111] = { - [sym__inline] = STATE(996), - [sym__element] = STATE(65), - [sym_emphasis] = STATE(133), - [sym_emphasis_begin] = STATE(1142), - [sym_strong] = STATE(133), - [sym_strong_begin] = STATE(1143), - [sym_superscript] = STATE(133), - [sym_superscript_begin] = STATE(1144), - [sym_subscript] = STATE(133), - [sym_subscript_begin] = STATE(1145), - [sym_highlighted] = STATE(133), - [sym_highlighted_begin] = STATE(1146), - [sym_insert] = STATE(133), - [sym_insert_begin] = STATE(1147), - [sym_delete] = STATE(133), - [sym_delete_begin] = STATE(1148), - [sym_hard_line_break] = STATE(133), - [sym__smart_punctuation] = STATE(133), - [sym_autolink] = STATE(133), - [sym_footnote_reference] = STATE(133), - [sym_footnote_marker_begin] = STATE(1149), - [sym__image] = STATE(133), - [sym_full_reference_image] = STATE(133), - [sym_collapsed_reference_image] = STATE(133), - [sym_inline_image] = STATE(133), - [sym_image_description] = STATE(638), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(133), - [sym_full_reference_link] = STATE(133), - [sym_collapsed_reference_link] = STATE(133), - [sym_inline_link] = STATE(133), - [sym_link_text] = STATE(637), - [sym_span] = STATE(65), - [sym__bracketed_text_begin] = STATE(1188), - [sym__comment_with_spaces] = STATE(133), - [sym_raw_inline] = STATE(133), - [sym_math] = STATE(133), - [sym_verbatim] = STATE(133), - [sym__todo_highlights] = STATE(133), - [sym_todo] = STATE(133), - [sym_note] = STATE(133), - [sym__symbol_fallback] = STATE(133), - [aux_sym__text] = STATE(129), - [aux_sym__inline_repeat1] = STATE(65), - [anon_sym_LBRACE_] = ACTIONS(489), - [anon_sym__] = ACTIONS(491), - [anon_sym_LBRACE_STAR] = ACTIONS(493), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_LBRACE_CARET] = ACTIONS(497), - [anon_sym_CARET] = ACTIONS(497), - [anon_sym_LBRACE_TILDE] = ACTIONS(499), - [anon_sym_TILDE] = ACTIONS(499), - [anon_sym_LBRACE_EQ] = ACTIONS(501), - [anon_sym_LBRACE_PLUS] = ACTIONS(503), - [anon_sym_LBRACE_DASH] = ACTIONS(505), - [anon_sym_BSLASH] = ACTIONS(507), - [sym_quotation_marks] = ACTIONS(509), - [sym_ellipsis] = ACTIONS(509), - [sym_em_dash] = ACTIONS(509), - [sym_en_dash] = ACTIONS(511), - [sym_backslash_escape] = ACTIONS(511), - [anon_sym_LT] = ACTIONS(513), - [sym_symbol] = ACTIONS(509), - [anon_sym_LBRACK_CARET] = ACTIONS(515), - [anon_sym_BANG_LBRACK] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(519), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_DOLLAR] = ACTIONS(523), - [anon_sym_TODO] = ACTIONS(525), - [anon_sym_WIP] = ACTIONS(525), - [anon_sym_NOTE] = ACTIONS(527), - [anon_sym_INFO] = ACTIONS(527), - [anon_sym_XXX] = ACTIONS(527), - [sym_fixme] = ACTIONS(509), - [sym__whitespace1] = ACTIONS(529), - [sym__newline] = ACTIONS(531), - [aux_sym__text_token1] = ACTIONS(533), - [sym__verbatim_begin] = ACTIONS(535), + [sym_link_text] = STATE(659), + [sym_span] = STATE(30), + [sym__bracketed_text_begin] = STATE(1210), + [sym__comment_with_spaces] = STATE(142), + [sym_raw_inline] = STATE(142), + [sym_math] = STATE(142), + [sym_verbatim] = STATE(142), + [sym__todo_highlights] = STATE(142), + [sym_todo] = STATE(142), + [sym_note] = STATE(142), + [sym__symbol_fallback] = STATE(142), + [aux_sym__text] = STATE(126), + [aux_sym__inline_repeat1] = STATE(30), + [anon_sym_LBRACE_] = ACTIONS(393), + [anon_sym__] = ACTIONS(395), + [anon_sym_LBRACE_STAR] = ACTIONS(397), + [anon_sym_STAR] = ACTIONS(399), + [anon_sym_LBRACE_CARET] = ACTIONS(401), + [anon_sym_CARET] = ACTIONS(401), + [anon_sym_LBRACE_TILDE] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_LBRACE_EQ] = ACTIONS(405), + [anon_sym_LBRACE_PLUS] = ACTIONS(407), + [anon_sym_LBRACE_DASH] = ACTIONS(409), + [anon_sym_BSLASH] = ACTIONS(411), + [sym_quotation_marks] = ACTIONS(413), + [sym_ellipsis] = ACTIONS(413), + [sym_em_dash] = ACTIONS(413), + [sym_en_dash] = ACTIONS(415), + [sym_backslash_escape] = ACTIONS(415), + [anon_sym_LT] = ACTIONS(417), + [sym_symbol] = ACTIONS(413), + [anon_sym_LBRACK_CARET] = ACTIONS(419), + [anon_sym_BANG_LBRACK] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(423), + [anon_sym_LPAREN] = ACTIONS(425), + [anon_sym_DOLLAR] = ACTIONS(427), + [anon_sym_TODO] = ACTIONS(429), + [anon_sym_WIP] = ACTIONS(429), + [anon_sym_NOTE] = ACTIONS(431), + [anon_sym_INFO] = ACTIONS(431), + [anon_sym_XXX] = ACTIONS(431), + [sym_fixme] = ACTIONS(413), + [sym__whitespace1] = ACTIONS(433), + [sym__newline] = ACTIONS(435), + [aux_sym__text_token1] = ACTIONS(437), + [sym__verbatim_begin] = ACTIONS(439), }, - [112] = { - [sym__inline] = STATE(989), - [sym__element] = STATE(71), + [101] = { + [sym__inline] = STATE(1098), + [sym__element] = STATE(30), [sym_emphasis] = STATE(132), - [sym_emphasis_begin] = STATE(1152), + [sym_emphasis_begin] = STATE(1164), [sym_strong] = STATE(132), - [sym_strong_begin] = STATE(1153), + [sym_strong_begin] = STATE(1165), [sym_superscript] = STATE(132), - [sym_superscript_begin] = STATE(1154), + [sym_superscript_begin] = STATE(1166), [sym_subscript] = STATE(132), - [sym_subscript_begin] = STATE(1155), + [sym_subscript_begin] = STATE(1167), [sym_highlighted] = STATE(132), - [sym_highlighted_begin] = STATE(1156), + [sym_highlighted_begin] = STATE(1168), [sym_insert] = STATE(132), - [sym_insert_begin] = STATE(1157), + [sym_insert_begin] = STATE(1169), [sym_delete] = STATE(132), - [sym_delete_begin] = STATE(1158), - [sym_hard_line_break] = STATE(132), - [sym__smart_punctuation] = STATE(132), - [sym_autolink] = STATE(132), + [sym_delete_begin] = STATE(1170), + [sym_hard_line_break] = STATE(142), + [sym__smart_punctuation] = STATE(142), + [sym_autolink] = STATE(142), [sym_footnote_reference] = STATE(132), - [sym_footnote_marker_begin] = STATE(1159), + [sym_footnote_marker_begin] = STATE(1171), [sym__image] = STATE(132), [sym_full_reference_image] = STATE(132), [sym_collapsed_reference_image] = STATE(132), [sym_inline_image] = STATE(132), - [sym_image_description] = STATE(633), - [sym__image_description_begin] = STATE(1057), + [sym_image_description] = STATE(660), + [sym__image_description_begin] = STATE(1079), [sym__link] = STATE(132), [sym_full_reference_link] = STATE(132), [sym_collapsed_reference_link] = STATE(132), [sym_inline_link] = STATE(132), - [sym_link_text] = STATE(631), - [sym_span] = STATE(71), - [sym__bracketed_text_begin] = STATE(1189), - [sym__comment_with_spaces] = STATE(132), - [sym_raw_inline] = STATE(132), - [sym_math] = STATE(132), - [sym_verbatim] = STATE(132), - [sym__todo_highlights] = STATE(132), - [sym_todo] = STATE(132), - [sym_note] = STATE(132), - [sym__symbol_fallback] = STATE(132), - [aux_sym__text] = STATE(128), - [aux_sym__inline_repeat1] = STATE(71), - [anon_sym_LBRACE_] = ACTIONS(441), - [anon_sym__] = ACTIONS(443), - [anon_sym_LBRACE_STAR] = ACTIONS(445), - [anon_sym_STAR] = ACTIONS(447), - [anon_sym_LBRACE_CARET] = ACTIONS(449), - [anon_sym_CARET] = ACTIONS(449), - [anon_sym_LBRACE_TILDE] = ACTIONS(451), - [anon_sym_TILDE] = ACTIONS(451), - [anon_sym_LBRACE_EQ] = ACTIONS(453), - [anon_sym_LBRACE_PLUS] = ACTIONS(455), - [anon_sym_LBRACE_DASH] = ACTIONS(457), - [anon_sym_BSLASH] = ACTIONS(459), - [sym_quotation_marks] = ACTIONS(461), - [sym_ellipsis] = ACTIONS(461), - [sym_em_dash] = ACTIONS(461), - [sym_en_dash] = ACTIONS(463), - [sym_backslash_escape] = ACTIONS(463), - [anon_sym_LT] = ACTIONS(465), - [sym_symbol] = ACTIONS(461), - [anon_sym_LBRACK_CARET] = ACTIONS(467), - [anon_sym_BANG_LBRACK] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(471), - [anon_sym_LPAREN] = ACTIONS(473), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_TODO] = ACTIONS(477), - [anon_sym_WIP] = ACTIONS(477), - [anon_sym_NOTE] = ACTIONS(479), - [anon_sym_INFO] = ACTIONS(479), - [anon_sym_XXX] = ACTIONS(479), - [sym_fixme] = ACTIONS(461), - [sym__whitespace1] = ACTIONS(481), - [sym__newline] = ACTIONS(483), - [aux_sym__text_token1] = ACTIONS(485), - [sym__verbatim_begin] = ACTIONS(487), - }, - [113] = { - [sym__inline_without_trailing_space] = STATE(974), - [sym__element] = STATE(581), - [sym_emphasis] = STATE(141), - [sym_emphasis_begin] = STATE(1082), - [sym_strong] = STATE(141), - [sym_strong_begin] = STATE(1083), - [sym_superscript] = STATE(141), - [sym_superscript_begin] = STATE(1084), - [sym_subscript] = STATE(141), - [sym_subscript_begin] = STATE(1085), - [sym_highlighted] = STATE(141), - [sym_highlighted_begin] = STATE(1086), - [sym_insert] = STATE(141), - [sym_insert_begin] = STATE(1087), - [sym_delete] = STATE(141), - [sym_delete_begin] = STATE(1088), - [sym_hard_line_break] = STATE(141), - [sym__smart_punctuation] = STATE(141), - [sym_autolink] = STATE(141), - [sym_footnote_reference] = STATE(141), - [sym_footnote_marker_begin] = STATE(1089), - [sym__image] = STATE(141), - [sym_full_reference_image] = STATE(141), - [sym_collapsed_reference_image] = STATE(141), - [sym_inline_image] = STATE(141), - [sym_image_description] = STATE(642), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(141), - [sym_full_reference_link] = STATE(141), - [sym_collapsed_reference_link] = STATE(141), - [sym_inline_link] = STATE(141), - [sym_link_text] = STATE(629), - [sym_span] = STATE(581), - [sym__bracketed_text_begin] = STATE(1182), - [sym__comment_with_spaces] = STATE(141), - [sym_raw_inline] = STATE(141), - [sym_math] = STATE(141), - [sym_verbatim] = STATE(141), - [sym__todo_highlights] = STATE(141), - [sym_todo] = STATE(141), - [sym_note] = STATE(141), - [sym__symbol_fallback] = STATE(141), - [aux_sym__text] = STATE(125), - [aux_sym__inline_repeat1] = STATE(119), - [anon_sym_LBRACE_] = ACTIONS(585), - [anon_sym__] = ACTIONS(587), - [anon_sym_LBRACE_STAR] = ACTIONS(589), - [anon_sym_STAR] = ACTIONS(591), - [anon_sym_LBRACE_CARET] = ACTIONS(593), - [anon_sym_CARET] = ACTIONS(593), - [anon_sym_LBRACE_TILDE] = ACTIONS(595), - [anon_sym_TILDE] = ACTIONS(595), - [anon_sym_LBRACE_EQ] = ACTIONS(597), - [anon_sym_LBRACE_PLUS] = ACTIONS(599), - [anon_sym_LBRACE_DASH] = ACTIONS(601), - [anon_sym_BSLASH] = ACTIONS(603), - [sym_quotation_marks] = ACTIONS(605), - [sym_ellipsis] = ACTIONS(605), - [sym_em_dash] = ACTIONS(605), - [sym_en_dash] = ACTIONS(607), - [sym_backslash_escape] = ACTIONS(607), - [anon_sym_LT] = ACTIONS(609), - [sym_symbol] = ACTIONS(605), - [anon_sym_LBRACK_CARET] = ACTIONS(611), - [anon_sym_BANG_LBRACK] = ACTIONS(613), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_DOLLAR] = ACTIONS(619), - [anon_sym_TODO] = ACTIONS(621), - [anon_sym_WIP] = ACTIONS(621), - [anon_sym_NOTE] = ACTIONS(623), - [anon_sym_INFO] = ACTIONS(623), - [anon_sym_XXX] = ACTIONS(623), - [sym_fixme] = ACTIONS(605), - [sym__whitespace1] = ACTIONS(625), - [sym__newline] = ACTIONS(627), - [aux_sym__text_token1] = ACTIONS(629), - [sym__verbatim_begin] = ACTIONS(631), + [sym_link_text] = STATE(659), + [sym_span] = STATE(30), + [sym__bracketed_text_begin] = STATE(1210), + [sym__comment_with_spaces] = STATE(142), + [sym_raw_inline] = STATE(142), + [sym_math] = STATE(142), + [sym_verbatim] = STATE(142), + [sym__todo_highlights] = STATE(142), + [sym_todo] = STATE(142), + [sym_note] = STATE(142), + [sym__symbol_fallback] = STATE(142), + [aux_sym__text] = STATE(126), + [aux_sym__inline_repeat1] = STATE(30), + [anon_sym_LBRACE_] = ACTIONS(393), + [anon_sym__] = ACTIONS(395), + [anon_sym_LBRACE_STAR] = ACTIONS(397), + [anon_sym_STAR] = ACTIONS(399), + [anon_sym_LBRACE_CARET] = ACTIONS(401), + [anon_sym_CARET] = ACTIONS(401), + [anon_sym_LBRACE_TILDE] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_LBRACE_EQ] = ACTIONS(405), + [anon_sym_LBRACE_PLUS] = ACTIONS(407), + [anon_sym_LBRACE_DASH] = ACTIONS(409), + [anon_sym_BSLASH] = ACTIONS(411), + [sym_quotation_marks] = ACTIONS(413), + [sym_ellipsis] = ACTIONS(413), + [sym_em_dash] = ACTIONS(413), + [sym_en_dash] = ACTIONS(415), + [sym_backslash_escape] = ACTIONS(415), + [anon_sym_LT] = ACTIONS(417), + [sym_symbol] = ACTIONS(413), + [anon_sym_LBRACK_CARET] = ACTIONS(419), + [anon_sym_BANG_LBRACK] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(423), + [anon_sym_LPAREN] = ACTIONS(425), + [anon_sym_DOLLAR] = ACTIONS(427), + [anon_sym_TODO] = ACTIONS(429), + [anon_sym_WIP] = ACTIONS(429), + [anon_sym_NOTE] = ACTIONS(431), + [anon_sym_INFO] = ACTIONS(431), + [anon_sym_XXX] = ACTIONS(431), + [sym_fixme] = ACTIONS(413), + [sym__whitespace1] = ACTIONS(433), + [sym__newline] = ACTIONS(435), + [aux_sym__text_token1] = ACTIONS(437), + [sym__verbatim_begin] = ACTIONS(439), }, - [114] = { - [sym__inline_without_trailing_space] = STATE(973), - [sym__element] = STATE(536), - [sym_emphasis] = STATE(138), - [sym_emphasis_begin] = STATE(1092), - [sym_strong] = STATE(138), - [sym_strong_begin] = STATE(1093), - [sym_superscript] = STATE(138), - [sym_superscript_begin] = STATE(1094), - [sym_subscript] = STATE(138), - [sym_subscript_begin] = STATE(1095), - [sym_highlighted] = STATE(138), - [sym_highlighted_begin] = STATE(1096), - [sym_insert] = STATE(138), - [sym_insert_begin] = STATE(1097), - [sym_delete] = STATE(138), - [sym_delete_begin] = STATE(1098), - [sym_hard_line_break] = STATE(138), - [sym__smart_punctuation] = STATE(138), - [sym_autolink] = STATE(138), - [sym_footnote_reference] = STATE(138), - [sym_footnote_marker_begin] = STATE(1099), - [sym__image] = STATE(138), - [sym_full_reference_image] = STATE(138), - [sym_collapsed_reference_image] = STATE(138), - [sym_inline_image] = STATE(138), - [sym_image_description] = STATE(626), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(138), - [sym_full_reference_link] = STATE(138), - [sym_collapsed_reference_link] = STATE(138), - [sym_inline_link] = STATE(138), - [sym_link_text] = STATE(627), - [sym_span] = STATE(536), - [sym__bracketed_text_begin] = STATE(1183), - [sym__comment_with_spaces] = STATE(138), - [sym_raw_inline] = STATE(138), - [sym_math] = STATE(138), - [sym_verbatim] = STATE(138), - [sym__todo_highlights] = STATE(138), - [sym_todo] = STATE(138), - [sym_note] = STATE(138), - [sym__symbol_fallback] = STATE(138), - [aux_sym__text] = STATE(127), - [aux_sym__inline_repeat1] = STATE(118), - [anon_sym_LBRACE_] = ACTIONS(149), - [anon_sym__] = ACTIONS(151), - [anon_sym_LBRACE_STAR] = ACTIONS(153), - [anon_sym_STAR] = ACTIONS(155), - [anon_sym_LBRACE_CARET] = ACTIONS(157), - [anon_sym_CARET] = ACTIONS(157), - [anon_sym_LBRACE_TILDE] = ACTIONS(159), - [anon_sym_TILDE] = ACTIONS(159), - [anon_sym_LBRACE_EQ] = ACTIONS(161), - [anon_sym_LBRACE_PLUS] = ACTIONS(163), - [anon_sym_LBRACE_DASH] = ACTIONS(165), - [anon_sym_BSLASH] = ACTIONS(167), - [sym_quotation_marks] = ACTIONS(169), - [sym_ellipsis] = ACTIONS(169), - [sym_em_dash] = ACTIONS(169), - [sym_en_dash] = ACTIONS(171), - [sym_backslash_escape] = ACTIONS(171), - [anon_sym_LT] = ACTIONS(173), - [sym_symbol] = ACTIONS(169), - [anon_sym_LBRACK_CARET] = ACTIONS(175), - [anon_sym_BANG_LBRACK] = ACTIONS(177), - [anon_sym_LBRACK] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(181), - [anon_sym_DOLLAR] = ACTIONS(183), - [anon_sym_TODO] = ACTIONS(185), - [anon_sym_WIP] = ACTIONS(185), - [anon_sym_NOTE] = ACTIONS(187), - [anon_sym_INFO] = ACTIONS(187), - [anon_sym_XXX] = ACTIONS(187), - [sym_fixme] = ACTIONS(169), - [sym__whitespace1] = ACTIONS(189), - [sym__newline] = ACTIONS(191), - [aux_sym__text_token1] = ACTIONS(193), - [sym__verbatim_begin] = ACTIONS(195), - }, - [115] = { - [sym__element] = STATE(115), - [sym_emphasis] = STATE(140), - [sym_emphasis_begin] = STATE(1162), - [sym_strong] = STATE(140), - [sym_strong_begin] = STATE(1163), - [sym_superscript] = STATE(140), - [sym_superscript_begin] = STATE(1164), - [sym_subscript] = STATE(140), - [sym_subscript_begin] = STATE(1165), - [sym_highlighted] = STATE(140), - [sym_highlighted_begin] = STATE(1166), - [sym_insert] = STATE(140), - [sym_insert_begin] = STATE(1167), - [sym_delete] = STATE(140), - [sym_delete_begin] = STATE(1168), - [sym_hard_line_break] = STATE(140), - [sym__smart_punctuation] = STATE(140), - [sym_autolink] = STATE(140), - [sym_footnote_reference] = STATE(140), - [sym_footnote_marker_begin] = STATE(1169), - [sym__image] = STATE(140), - [sym_full_reference_image] = STATE(140), - [sym_collapsed_reference_image] = STATE(140), - [sym_inline_image] = STATE(140), - [sym_image_description] = STATE(625), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(140), - [sym_full_reference_link] = STATE(140), - [sym_collapsed_reference_link] = STATE(140), - [sym_inline_link] = STATE(140), - [sym_link_text] = STATE(624), - [sym_span] = STATE(115), - [sym__bracketed_text_begin] = STATE(1190), - [sym__comment_with_spaces] = STATE(140), - [sym_raw_inline] = STATE(140), - [sym_math] = STATE(140), - [sym_verbatim] = STATE(140), - [sym__todo_highlights] = STATE(140), - [sym_todo] = STATE(140), - [sym_note] = STATE(140), - [sym__symbol_fallback] = STATE(140), + [102] = { + [sym__inline] = STATE(984), + [sym__element] = STATE(22), + [sym_emphasis] = STATE(147), + [sym_emphasis_begin] = STATE(1154), + [sym_strong] = STATE(147), + [sym_strong_begin] = STATE(1155), + [sym_superscript] = STATE(147), + [sym_superscript_begin] = STATE(1156), + [sym_subscript] = STATE(147), + [sym_subscript_begin] = STATE(1157), + [sym_highlighted] = STATE(147), + [sym_highlighted_begin] = STATE(1158), + [sym_insert] = STATE(147), + [sym_insert_begin] = STATE(1159), + [sym_delete] = STATE(147), + [sym_delete_begin] = STATE(1160), + [sym_hard_line_break] = STATE(145), + [sym__smart_punctuation] = STATE(145), + [sym_autolink] = STATE(145), + [sym_footnote_reference] = STATE(147), + [sym_footnote_marker_begin] = STATE(1161), + [sym__image] = STATE(147), + [sym_full_reference_image] = STATE(147), + [sym_collapsed_reference_image] = STATE(147), + [sym_inline_image] = STATE(147), + [sym_image_description] = STATE(665), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(147), + [sym_full_reference_link] = STATE(147), + [sym_collapsed_reference_link] = STATE(147), + [sym_inline_link] = STATE(147), + [sym_link_text] = STATE(664), + [sym_span] = STATE(22), + [sym__bracketed_text_begin] = STATE(1209), + [sym__comment_with_spaces] = STATE(145), + [sym_raw_inline] = STATE(145), + [sym_math] = STATE(145), + [sym_verbatim] = STATE(145), + [sym__todo_highlights] = STATE(145), + [sym_todo] = STATE(145), + [sym_note] = STATE(145), + [sym__symbol_fallback] = STATE(145), [aux_sym__text] = STATE(124), - [aux_sym__inline_repeat1] = STATE(115), - [anon_sym_LBRACE_] = ACTIONS(1009), - [anon_sym__] = ACTIONS(1012), - [anon_sym_LBRACE_STAR] = ACTIONS(1015), - [anon_sym_STAR] = ACTIONS(1018), - [anon_sym_LBRACE_CARET] = ACTIONS(1021), - [anon_sym_CARET] = ACTIONS(1021), - [anon_sym_LBRACE_TILDE] = ACTIONS(1024), - [anon_sym_TILDE] = ACTIONS(1024), - [anon_sym_LBRACE_EQ] = ACTIONS(1027), - [anon_sym_LBRACE_PLUS] = ACTIONS(1030), - [anon_sym_LBRACE_DASH] = ACTIONS(1033), - [anon_sym_BSLASH] = ACTIONS(1036), - [sym_quotation_marks] = ACTIONS(1039), - [sym_ellipsis] = ACTIONS(1039), - [sym_em_dash] = ACTIONS(1039), - [sym_en_dash] = ACTIONS(1042), - [sym_backslash_escape] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1045), - [sym_symbol] = ACTIONS(1039), - [anon_sym_LBRACK_CARET] = ACTIONS(1048), - [anon_sym_BANG_LBRACK] = ACTIONS(1051), - [anon_sym_LBRACK] = ACTIONS(1054), - [anon_sym_LPAREN] = ACTIONS(1057), - [anon_sym_DOLLAR] = ACTIONS(1060), - [anon_sym_TODO] = ACTIONS(1063), - [anon_sym_WIP] = ACTIONS(1063), - [anon_sym_NOTE] = ACTIONS(1066), - [anon_sym_INFO] = ACTIONS(1066), - [anon_sym_XXX] = ACTIONS(1066), - [sym_fixme] = ACTIONS(1039), - [sym__whitespace1] = ACTIONS(1069), - [sym__newline] = ACTIONS(1072), - [aux_sym__text_token1] = ACTIONS(1075), - [sym__verbatim_begin] = ACTIONS(1078), - [sym__square_bracket_span_end] = ACTIONS(317), - }, - [116] = { - [sym__inline] = STATE(965), - [sym__element] = STATE(106), - [sym_emphasis] = STATE(139), - [sym_emphasis_begin] = STATE(1102), - [sym_strong] = STATE(139), - [sym_strong_begin] = STATE(1103), - [sym_superscript] = STATE(139), - [sym_superscript_begin] = STATE(1104), - [sym_subscript] = STATE(139), - [sym_subscript_begin] = STATE(1105), - [sym_highlighted] = STATE(139), - [sym_highlighted_begin] = STATE(1106), - [sym_insert] = STATE(139), - [sym_insert_begin] = STATE(1107), - [sym_delete] = STATE(139), - [sym_delete_begin] = STATE(1108), - [sym_hard_line_break] = STATE(139), - [sym__smart_punctuation] = STATE(139), - [sym_autolink] = STATE(139), - [sym_footnote_reference] = STATE(139), - [sym_footnote_marker_begin] = STATE(1109), - [sym__image] = STATE(139), - [sym_full_reference_image] = STATE(139), - [sym_collapsed_reference_image] = STATE(139), - [sym_inline_image] = STATE(139), - [sym_image_description] = STATE(623), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(139), - [sym_full_reference_link] = STATE(139), - [sym_collapsed_reference_link] = STATE(139), - [sym_inline_link] = STATE(139), - [sym_link_text] = STATE(621), - [sym_span] = STATE(106), - [sym__bracketed_text_begin] = STATE(1184), - [sym__comment_with_spaces] = STATE(139), - [sym_raw_inline] = STATE(139), - [sym_math] = STATE(139), - [sym_verbatim] = STATE(139), - [sym__todo_highlights] = STATE(139), - [sym_todo] = STATE(139), - [sym_note] = STATE(139), - [sym__symbol_fallback] = STATE(139), - [aux_sym__text] = STATE(126), - [aux_sym__inline_repeat1] = STATE(106), + [aux_sym__inline_repeat1] = STATE(22), [anon_sym_LBRACE_] = ACTIONS(101), [anon_sym__] = ACTIONS(103), [anon_sym_LBRACE_STAR] = ACTIONS(105), @@ -14453,120 +13377,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token1] = ACTIONS(145), [sym__verbatim_begin] = ACTIONS(147), }, - [117] = { - [sym__inline] = STATE(964), - [sym__element] = STATE(22), - [sym_emphasis] = STATE(137), - [sym_emphasis_begin] = STATE(1112), - [sym_strong] = STATE(137), - [sym_strong_begin] = STATE(1113), - [sym_superscript] = STATE(137), - [sym_superscript_begin] = STATE(1114), - [sym_subscript] = STATE(137), - [sym_subscript_begin] = STATE(1115), - [sym_highlighted] = STATE(137), - [sym_highlighted_begin] = STATE(1116), - [sym_insert] = STATE(137), - [sym_insert_begin] = STATE(1117), - [sym_delete] = STATE(137), - [sym_delete_begin] = STATE(1118), - [sym_hard_line_break] = STATE(137), - [sym__smart_punctuation] = STATE(137), - [sym_autolink] = STATE(137), - [sym_footnote_reference] = STATE(137), - [sym_footnote_marker_begin] = STATE(1119), - [sym__image] = STATE(137), - [sym_full_reference_image] = STATE(137), - [sym_collapsed_reference_image] = STATE(137), - [sym_inline_image] = STATE(137), - [sym_image_description] = STATE(636), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(137), - [sym_full_reference_link] = STATE(137), - [sym_collapsed_reference_link] = STATE(137), - [sym_inline_link] = STATE(137), - [sym_link_text] = STATE(647), - [sym_span] = STATE(22), - [sym__bracketed_text_begin] = STATE(1185), - [sym__comment_with_spaces] = STATE(137), - [sym_raw_inline] = STATE(137), - [sym_math] = STATE(137), - [sym_verbatim] = STATE(137), - [sym__todo_highlights] = STATE(137), - [sym_todo] = STATE(137), - [sym_note] = STATE(137), - [sym__symbol_fallback] = STATE(137), - [aux_sym__text] = STATE(122), - [aux_sym__inline_repeat1] = STATE(22), - [anon_sym_LBRACE_] = ACTIONS(197), - [anon_sym__] = ACTIONS(199), - [anon_sym_LBRACE_STAR] = ACTIONS(201), - [anon_sym_STAR] = ACTIONS(203), - [anon_sym_LBRACE_CARET] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(205), - [anon_sym_LBRACE_TILDE] = ACTIONS(207), - [anon_sym_TILDE] = ACTIONS(207), - [anon_sym_LBRACE_EQ] = ACTIONS(209), - [anon_sym_LBRACE_PLUS] = ACTIONS(211), - [anon_sym_LBRACE_DASH] = ACTIONS(213), - [anon_sym_BSLASH] = ACTIONS(215), - [sym_quotation_marks] = ACTIONS(217), - [sym_ellipsis] = ACTIONS(217), - [sym_em_dash] = ACTIONS(217), - [sym_en_dash] = ACTIONS(219), - [sym_backslash_escape] = ACTIONS(219), - [anon_sym_LT] = ACTIONS(221), - [sym_symbol] = ACTIONS(217), - [anon_sym_LBRACK_CARET] = ACTIONS(223), - [anon_sym_BANG_LBRACK] = ACTIONS(225), - [anon_sym_LBRACK] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_DOLLAR] = ACTIONS(231), - [anon_sym_TODO] = ACTIONS(233), - [anon_sym_WIP] = ACTIONS(233), - [anon_sym_NOTE] = ACTIONS(235), - [anon_sym_INFO] = ACTIONS(235), - [anon_sym_XXX] = ACTIONS(235), - [sym_fixme] = ACTIONS(217), - [sym__whitespace1] = ACTIONS(237), - [sym__newline] = ACTIONS(239), - [aux_sym__text_token1] = ACTIONS(241), - [sym__verbatim_begin] = ACTIONS(243), - }, - [118] = { - [sym__element] = STATE(555), - [sym_emphasis] = STATE(138), - [sym_emphasis_begin] = STATE(1092), - [sym_strong] = STATE(138), - [sym_strong_begin] = STATE(1093), - [sym_superscript] = STATE(138), - [sym_superscript_begin] = STATE(1094), - [sym_subscript] = STATE(138), - [sym_subscript_begin] = STATE(1095), - [sym_highlighted] = STATE(138), - [sym_highlighted_begin] = STATE(1096), - [sym_insert] = STATE(138), - [sym_insert_begin] = STATE(1097), - [sym_delete] = STATE(138), - [sym_delete_begin] = STATE(1098), + [103] = { + [sym__inline] = STATE(1083), + [sym__element] = STATE(46), + [sym_emphasis] = STATE(135), + [sym_emphasis_begin] = STATE(1174), + [sym_strong] = STATE(135), + [sym_strong_begin] = STATE(1175), + [sym_superscript] = STATE(135), + [sym_superscript_begin] = STATE(1176), + [sym_subscript] = STATE(135), + [sym_subscript_begin] = STATE(1177), + [sym_highlighted] = STATE(135), + [sym_highlighted_begin] = STATE(1178), + [sym_insert] = STATE(135), + [sym_insert_begin] = STATE(1179), + [sym_delete] = STATE(135), + [sym_delete_begin] = STATE(1180), [sym_hard_line_break] = STATE(138), [sym__smart_punctuation] = STATE(138), [sym_autolink] = STATE(138), - [sym_footnote_reference] = STATE(138), - [sym_footnote_marker_begin] = STATE(1099), - [sym__image] = STATE(138), - [sym_full_reference_image] = STATE(138), - [sym_collapsed_reference_image] = STATE(138), - [sym_inline_image] = STATE(138), - [sym_image_description] = STATE(626), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(138), - [sym_full_reference_link] = STATE(138), - [sym_collapsed_reference_link] = STATE(138), - [sym_inline_link] = STATE(138), - [sym_link_text] = STATE(627), - [sym_span] = STATE(555), - [sym__bracketed_text_begin] = STATE(1183), + [sym_footnote_reference] = STATE(135), + [sym_footnote_marker_begin] = STATE(1181), + [sym__image] = STATE(135), + [sym_full_reference_image] = STATE(135), + [sym_collapsed_reference_image] = STATE(135), + [sym_inline_image] = STATE(135), + [sym_image_description] = STATE(656), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(135), + [sym_full_reference_link] = STATE(135), + [sym_collapsed_reference_link] = STATE(135), + [sym_inline_link] = STATE(135), + [sym_link_text] = STATE(654), + [sym_span] = STATE(46), + [sym__bracketed_text_begin] = STATE(1211), [sym__comment_with_spaces] = STATE(138), [sym_raw_inline] = STATE(138), [sym_math] = STATE(138), @@ -14575,156 +13420,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(138), [sym_note] = STATE(138), [sym__symbol_fallback] = STATE(138), - [aux_sym__text] = STATE(127), - [aux_sym__inline_repeat1] = STATE(120), - [anon_sym_LBRACE_] = ACTIONS(149), - [anon_sym__] = ACTIONS(151), - [anon_sym_LBRACE_STAR] = ACTIONS(153), - [anon_sym_STAR] = ACTIONS(155), - [anon_sym_LBRACE_CARET] = ACTIONS(157), - [anon_sym_CARET] = ACTIONS(157), - [anon_sym_LBRACE_TILDE] = ACTIONS(159), - [anon_sym_TILDE] = ACTIONS(159), - [anon_sym_LBRACE_EQ] = ACTIONS(161), - [anon_sym_LBRACE_PLUS] = ACTIONS(163), - [anon_sym_LBRACE_DASH] = ACTIONS(165), - [anon_sym_BSLASH] = ACTIONS(167), - [sym_quotation_marks] = ACTIONS(169), - [sym_ellipsis] = ACTIONS(169), - [sym_em_dash] = ACTIONS(169), - [sym_en_dash] = ACTIONS(171), - [sym_backslash_escape] = ACTIONS(171), - [anon_sym_LT] = ACTIONS(173), - [sym_symbol] = ACTIONS(169), - [anon_sym_LBRACK_CARET] = ACTIONS(175), - [anon_sym_BANG_LBRACK] = ACTIONS(177), - [anon_sym_LBRACK] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(181), - [anon_sym_DOLLAR] = ACTIONS(183), - [anon_sym_TODO] = ACTIONS(185), - [anon_sym_WIP] = ACTIONS(185), - [anon_sym_NOTE] = ACTIONS(187), - [anon_sym_INFO] = ACTIONS(187), - [anon_sym_XXX] = ACTIONS(187), - [sym_fixme] = ACTIONS(169), - [sym__whitespace1] = ACTIONS(189), - [sym__newline] = ACTIONS(1081), - [aux_sym__text_token1] = ACTIONS(193), - [sym__verbatim_begin] = ACTIONS(195), + [aux_sym__text] = STATE(121), + [aux_sym__inline_repeat1] = STATE(46), + [anon_sym_LBRACE_] = ACTIONS(345), + [anon_sym__] = ACTIONS(347), + [anon_sym_LBRACE_STAR] = ACTIONS(349), + [anon_sym_STAR] = ACTIONS(351), + [anon_sym_LBRACE_CARET] = ACTIONS(353), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_LBRACE_TILDE] = ACTIONS(355), + [anon_sym_TILDE] = ACTIONS(355), + [anon_sym_LBRACE_EQ] = ACTIONS(357), + [anon_sym_LBRACE_PLUS] = ACTIONS(359), + [anon_sym_LBRACE_DASH] = ACTIONS(361), + [anon_sym_BSLASH] = ACTIONS(363), + [sym_quotation_marks] = ACTIONS(365), + [sym_ellipsis] = ACTIONS(365), + [sym_em_dash] = ACTIONS(365), + [sym_en_dash] = ACTIONS(367), + [sym_backslash_escape] = ACTIONS(367), + [anon_sym_LT] = ACTIONS(369), + [sym_symbol] = ACTIONS(365), + [anon_sym_LBRACK_CARET] = ACTIONS(371), + [anon_sym_BANG_LBRACK] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(375), + [anon_sym_LPAREN] = ACTIONS(377), + [anon_sym_DOLLAR] = ACTIONS(379), + [anon_sym_TODO] = ACTIONS(381), + [anon_sym_WIP] = ACTIONS(381), + [anon_sym_NOTE] = ACTIONS(383), + [anon_sym_INFO] = ACTIONS(383), + [anon_sym_XXX] = ACTIONS(383), + [sym_fixme] = ACTIONS(365), + [sym__whitespace1] = ACTIONS(385), + [sym__newline] = ACTIONS(387), + [aux_sym__text_token1] = ACTIONS(389), + [sym__verbatim_begin] = ACTIONS(391), }, - [119] = { - [sym__element] = STATE(577), - [sym_emphasis] = STATE(141), - [sym_emphasis_begin] = STATE(1082), - [sym_strong] = STATE(141), - [sym_strong_begin] = STATE(1083), - [sym_superscript] = STATE(141), - [sym_superscript_begin] = STATE(1084), - [sym_subscript] = STATE(141), - [sym_subscript_begin] = STATE(1085), - [sym_highlighted] = STATE(141), - [sym_highlighted_begin] = STATE(1086), - [sym_insert] = STATE(141), - [sym_insert_begin] = STATE(1087), - [sym_delete] = STATE(141), - [sym_delete_begin] = STATE(1088), - [sym_hard_line_break] = STATE(141), - [sym__smart_punctuation] = STATE(141), - [sym_autolink] = STATE(141), - [sym_footnote_reference] = STATE(141), - [sym_footnote_marker_begin] = STATE(1089), - [sym__image] = STATE(141), - [sym_full_reference_image] = STATE(141), - [sym_collapsed_reference_image] = STATE(141), - [sym_inline_image] = STATE(141), - [sym_image_description] = STATE(642), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(141), - [sym_full_reference_link] = STATE(141), - [sym_collapsed_reference_link] = STATE(141), - [sym_inline_link] = STATE(141), - [sym_link_text] = STATE(629), - [sym_span] = STATE(577), - [sym__bracketed_text_begin] = STATE(1182), - [sym__comment_with_spaces] = STATE(141), - [sym_raw_inline] = STATE(141), - [sym_math] = STATE(141), - [sym_verbatim] = STATE(141), - [sym__todo_highlights] = STATE(141), - [sym_todo] = STATE(141), - [sym_note] = STATE(141), - [sym__symbol_fallback] = STATE(141), - [aux_sym__text] = STATE(125), - [aux_sym__inline_repeat1] = STATE(120), - [anon_sym_LBRACE_] = ACTIONS(585), - [anon_sym__] = ACTIONS(587), - [anon_sym_LBRACE_STAR] = ACTIONS(589), - [anon_sym_STAR] = ACTIONS(591), - [anon_sym_LBRACE_CARET] = ACTIONS(593), - [anon_sym_CARET] = ACTIONS(593), - [anon_sym_LBRACE_TILDE] = ACTIONS(595), - [anon_sym_TILDE] = ACTIONS(595), - [anon_sym_LBRACE_EQ] = ACTIONS(597), - [anon_sym_LBRACE_PLUS] = ACTIONS(599), - [anon_sym_LBRACE_DASH] = ACTIONS(601), - [anon_sym_BSLASH] = ACTIONS(603), - [sym_quotation_marks] = ACTIONS(605), - [sym_ellipsis] = ACTIONS(605), - [sym_em_dash] = ACTIONS(605), - [sym_en_dash] = ACTIONS(607), - [sym_backslash_escape] = ACTIONS(607), - [anon_sym_LT] = ACTIONS(609), - [sym_symbol] = ACTIONS(605), - [anon_sym_LBRACK_CARET] = ACTIONS(611), - [anon_sym_BANG_LBRACK] = ACTIONS(613), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_DOLLAR] = ACTIONS(619), - [anon_sym_TODO] = ACTIONS(621), - [anon_sym_WIP] = ACTIONS(621), - [anon_sym_NOTE] = ACTIONS(623), - [anon_sym_INFO] = ACTIONS(623), - [anon_sym_XXX] = ACTIONS(623), - [sym_fixme] = ACTIONS(605), - [sym__whitespace1] = ACTIONS(625), - [sym__newline] = ACTIONS(1081), - [aux_sym__text_token1] = ACTIONS(629), - [sym__verbatim_begin] = ACTIONS(631), + [104] = { + [sym__inline] = STATE(985), + [sym__element] = STATE(110), + [sym_emphasis] = STATE(146), + [sym_emphasis_begin] = STATE(1144), + [sym_strong] = STATE(146), + [sym_strong_begin] = STATE(1145), + [sym_superscript] = STATE(146), + [sym_superscript_begin] = STATE(1146), + [sym_subscript] = STATE(146), + [sym_subscript_begin] = STATE(1147), + [sym_highlighted] = STATE(146), + [sym_highlighted_begin] = STATE(1148), + [sym_insert] = STATE(146), + [sym_insert_begin] = STATE(1149), + [sym_delete] = STATE(146), + [sym_delete_begin] = STATE(1150), + [sym_hard_line_break] = STATE(144), + [sym__smart_punctuation] = STATE(144), + [sym_autolink] = STATE(144), + [sym_footnote_reference] = STATE(146), + [sym_footnote_marker_begin] = STATE(1151), + [sym__image] = STATE(146), + [sym_full_reference_image] = STATE(146), + [sym_collapsed_reference_image] = STATE(146), + [sym_inline_image] = STATE(146), + [sym_image_description] = STATE(673), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(146), + [sym_full_reference_link] = STATE(146), + [sym_collapsed_reference_link] = STATE(146), + [sym_inline_link] = STATE(146), + [sym_link_text] = STATE(662), + [sym_span] = STATE(110), + [sym__bracketed_text_begin] = STATE(1208), + [sym__comment_with_spaces] = STATE(144), + [sym_raw_inline] = STATE(144), + [sym_math] = STATE(144), + [sym_verbatim] = STATE(144), + [sym__todo_highlights] = STATE(144), + [sym_todo] = STATE(144), + [sym_note] = STATE(144), + [sym__symbol_fallback] = STATE(144), + [aux_sym__text] = STATE(128), + [aux_sym__inline_repeat1] = STATE(110), + [anon_sym_LBRACE_] = ACTIONS(587), + [anon_sym__] = ACTIONS(589), + [anon_sym_LBRACE_STAR] = ACTIONS(591), + [anon_sym_STAR] = ACTIONS(593), + [anon_sym_LBRACE_CARET] = ACTIONS(595), + [anon_sym_CARET] = ACTIONS(595), + [anon_sym_LBRACE_TILDE] = ACTIONS(597), + [anon_sym_TILDE] = ACTIONS(597), + [anon_sym_LBRACE_EQ] = ACTIONS(599), + [anon_sym_LBRACE_PLUS] = ACTIONS(601), + [anon_sym_LBRACE_DASH] = ACTIONS(603), + [anon_sym_BSLASH] = ACTIONS(605), + [sym_quotation_marks] = ACTIONS(607), + [sym_ellipsis] = ACTIONS(607), + [sym_em_dash] = ACTIONS(607), + [sym_en_dash] = ACTIONS(609), + [sym_backslash_escape] = ACTIONS(609), + [anon_sym_LT] = ACTIONS(611), + [sym_symbol] = ACTIONS(607), + [anon_sym_LBRACK_CARET] = ACTIONS(613), + [anon_sym_BANG_LBRACK] = ACTIONS(615), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_LPAREN] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [anon_sym_TODO] = ACTIONS(623), + [anon_sym_WIP] = ACTIONS(623), + [anon_sym_NOTE] = ACTIONS(625), + [anon_sym_INFO] = ACTIONS(625), + [anon_sym_XXX] = ACTIONS(625), + [sym_fixme] = ACTIONS(607), + [sym__whitespace1] = ACTIONS(627), + [sym__newline] = ACTIONS(629), + [aux_sym__text_token1] = ACTIONS(631), + [sym__verbatim_begin] = ACTIONS(633), }, - [120] = { - [sym__element] = STATE(120), - [sym_emphasis] = STATE(143), - [sym_emphasis_begin] = STATE(1172), - [sym_strong] = STATE(143), - [sym_strong_begin] = STATE(1173), - [sym_superscript] = STATE(143), - [sym_superscript_begin] = STATE(1174), - [sym_subscript] = STATE(143), - [sym_subscript_begin] = STATE(1175), - [sym_highlighted] = STATE(143), - [sym_highlighted_begin] = STATE(1176), - [sym_insert] = STATE(143), - [sym_insert_begin] = STATE(1177), - [sym_delete] = STATE(143), - [sym_delete_begin] = STATE(1178), + [105] = { + [sym__inline_without_trailing_space] = STATE(1059), + [sym__element] = STATE(594), + [sym_emphasis] = STATE(149), + [sym_emphasis_begin] = STATE(1104), + [sym_strong] = STATE(149), + [sym_strong_begin] = STATE(1105), + [sym_superscript] = STATE(149), + [sym_superscript_begin] = STATE(1106), + [sym_subscript] = STATE(149), + [sym_subscript_begin] = STATE(1107), + [sym_highlighted] = STATE(149), + [sym_highlighted_begin] = STATE(1108), + [sym_insert] = STATE(149), + [sym_insert_begin] = STATE(1109), + [sym_delete] = STATE(149), + [sym_delete_begin] = STATE(1110), [sym_hard_line_break] = STATE(143), [sym__smart_punctuation] = STATE(143), [sym_autolink] = STATE(143), - [sym_footnote_reference] = STATE(143), - [sym_footnote_marker_begin] = STATE(1179), - [sym__image] = STATE(143), - [sym_full_reference_image] = STATE(143), - [sym_collapsed_reference_image] = STATE(143), - [sym_inline_image] = STATE(143), - [sym_image_description] = STATE(640), - [sym__image_description_begin] = STATE(1057), - [sym__link] = STATE(143), - [sym_full_reference_link] = STATE(143), - [sym_collapsed_reference_link] = STATE(143), - [sym_inline_link] = STATE(143), - [sym_link_text] = STATE(630), - [sym_span] = STATE(120), - [sym__bracketed_text_begin] = STATE(1191), + [sym_footnote_reference] = STATE(149), + [sym_footnote_marker_begin] = STATE(1111), + [sym__image] = STATE(149), + [sym_full_reference_image] = STATE(149), + [sym_collapsed_reference_image] = STATE(149), + [sym_inline_image] = STATE(149), + [sym_image_description] = STATE(658), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(149), + [sym_full_reference_link] = STATE(149), + [sym_collapsed_reference_link] = STATE(149), + [sym_inline_link] = STATE(149), + [sym_link_text] = STATE(672), + [sym_span] = STATE(594), + [sym__bracketed_text_begin] = STATE(1204), [sym__comment_with_spaces] = STATE(143), [sym_raw_inline] = STATE(143), [sym_math] = STATE(143), @@ -14733,56 +13580,2141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(143), [sym_note] = STATE(143), [sym__symbol_fallback] = STATE(143), - [aux_sym__text] = STATE(134), + [aux_sym__text] = STATE(127), [aux_sym__inline_repeat1] = STATE(120), - [anon_sym_LBRACE_] = ACTIONS(1083), - [anon_sym__] = ACTIONS(1086), - [anon_sym_LBRACE_STAR] = ACTIONS(1089), - [anon_sym_STAR] = ACTIONS(1092), - [anon_sym_LBRACE_CARET] = ACTIONS(1095), - [anon_sym_CARET] = ACTIONS(1095), - [anon_sym_LBRACE_TILDE] = ACTIONS(1098), - [anon_sym_TILDE] = ACTIONS(1098), - [anon_sym_LBRACE_EQ] = ACTIONS(1101), - [anon_sym_LBRACE_PLUS] = ACTIONS(1104), - [anon_sym_LBRACE_DASH] = ACTIONS(1107), - [anon_sym_BSLASH] = ACTIONS(1110), - [sym_quotation_marks] = ACTIONS(1113), - [sym_ellipsis] = ACTIONS(1113), - [sym_em_dash] = ACTIONS(1113), - [sym_en_dash] = ACTIONS(1116), - [sym_backslash_escape] = ACTIONS(1116), - [anon_sym_LT] = ACTIONS(1119), - [sym_symbol] = ACTIONS(1113), - [anon_sym_LBRACK_CARET] = ACTIONS(1122), - [anon_sym_BANG_LBRACK] = ACTIONS(1125), - [anon_sym_LBRACK] = ACTIONS(1128), - [anon_sym_LPAREN] = ACTIONS(1131), - [anon_sym_DOLLAR] = ACTIONS(1134), - [anon_sym_TODO] = ACTIONS(1137), - [anon_sym_WIP] = ACTIONS(1137), - [anon_sym_NOTE] = ACTIONS(1140), - [anon_sym_INFO] = ACTIONS(1140), - [anon_sym_XXX] = ACTIONS(1140), - [sym_fixme] = ACTIONS(1113), - [sym__whitespace1] = ACTIONS(1143), - [sym__newline] = ACTIONS(1146), - [aux_sym__text_token1] = ACTIONS(1149), - [sym__verbatim_begin] = ACTIONS(1152), + [anon_sym_LBRACE_] = ACTIONS(441), + [anon_sym__] = ACTIONS(443), + [anon_sym_LBRACE_STAR] = ACTIONS(445), + [anon_sym_STAR] = ACTIONS(447), + [anon_sym_LBRACE_CARET] = ACTIONS(449), + [anon_sym_CARET] = ACTIONS(449), + [anon_sym_LBRACE_TILDE] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_LBRACE_EQ] = ACTIONS(453), + [anon_sym_LBRACE_PLUS] = ACTIONS(455), + [anon_sym_LBRACE_DASH] = ACTIONS(457), + [anon_sym_BSLASH] = ACTIONS(459), + [sym_quotation_marks] = ACTIONS(461), + [sym_ellipsis] = ACTIONS(461), + [sym_em_dash] = ACTIONS(461), + [sym_en_dash] = ACTIONS(463), + [sym_backslash_escape] = ACTIONS(463), + [anon_sym_LT] = ACTIONS(465), + [sym_symbol] = ACTIONS(461), + [anon_sym_LBRACK_CARET] = ACTIONS(467), + [anon_sym_BANG_LBRACK] = ACTIONS(469), + [anon_sym_LBRACK] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(473), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_TODO] = ACTIONS(477), + [anon_sym_WIP] = ACTIONS(477), + [anon_sym_NOTE] = ACTIONS(479), + [anon_sym_INFO] = ACTIONS(479), + [anon_sym_XXX] = ACTIONS(479), + [sym_fixme] = ACTIONS(461), + [sym__whitespace1] = ACTIONS(481), + [sym__newline] = ACTIONS(483), + [aux_sym__text_token1] = ACTIONS(485), + [sym__verbatim_begin] = ACTIONS(487), }, -}; - -static const uint16_t ts_small_parse_table[] = { - [0] = 6, - ACTIONS(1159), 1, + [106] = { + [sym__inline_without_trailing_space] = STATE(1051), + [sym__element] = STATE(550), + [sym_emphasis] = STATE(137), + [sym_emphasis_begin] = STATE(1114), + [sym_strong] = STATE(137), + [sym_strong_begin] = STATE(1115), + [sym_superscript] = STATE(137), + [sym_superscript_begin] = STATE(1116), + [sym_subscript] = STATE(137), + [sym_subscript_begin] = STATE(1117), + [sym_highlighted] = STATE(137), + [sym_highlighted_begin] = STATE(1118), + [sym_insert] = STATE(137), + [sym_insert_begin] = STATE(1119), + [sym_delete] = STATE(137), + [sym_delete_begin] = STATE(1120), + [sym_hard_line_break] = STATE(131), + [sym__smart_punctuation] = STATE(131), + [sym_autolink] = STATE(131), + [sym_footnote_reference] = STATE(137), + [sym_footnote_marker_begin] = STATE(1121), + [sym__image] = STATE(137), + [sym_full_reference_image] = STATE(137), + [sym_collapsed_reference_image] = STATE(137), + [sym_inline_image] = STATE(137), + [sym_image_description] = STATE(649), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(137), + [sym_full_reference_link] = STATE(137), + [sym_collapsed_reference_link] = STATE(137), + [sym_inline_link] = STATE(137), + [sym_link_text] = STATE(650), + [sym_span] = STATE(550), + [sym__bracketed_text_begin] = STATE(1205), + [sym__comment_with_spaces] = STATE(131), + [sym_raw_inline] = STATE(131), + [sym_math] = STATE(131), + [sym_verbatim] = STATE(131), + [sym__todo_highlights] = STATE(131), + [sym_todo] = STATE(131), + [sym_note] = STATE(131), + [sym__symbol_fallback] = STATE(131), + [aux_sym__text] = STATE(130), + [aux_sym__inline_repeat1] = STATE(119), + [anon_sym_LBRACE_] = ACTIONS(489), + [anon_sym__] = ACTIONS(491), + [anon_sym_LBRACE_STAR] = ACTIONS(493), + [anon_sym_STAR] = ACTIONS(495), + [anon_sym_LBRACE_CARET] = ACTIONS(497), + [anon_sym_CARET] = ACTIONS(497), + [anon_sym_LBRACE_TILDE] = ACTIONS(499), + [anon_sym_TILDE] = ACTIONS(499), + [anon_sym_LBRACE_EQ] = ACTIONS(501), + [anon_sym_LBRACE_PLUS] = ACTIONS(503), + [anon_sym_LBRACE_DASH] = ACTIONS(505), + [anon_sym_BSLASH] = ACTIONS(507), + [sym_quotation_marks] = ACTIONS(509), + [sym_ellipsis] = ACTIONS(509), + [sym_em_dash] = ACTIONS(509), + [sym_en_dash] = ACTIONS(511), + [sym_backslash_escape] = ACTIONS(511), + [anon_sym_LT] = ACTIONS(513), + [sym_symbol] = ACTIONS(509), + [anon_sym_LBRACK_CARET] = ACTIONS(515), + [anon_sym_BANG_LBRACK] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(519), + [anon_sym_LPAREN] = ACTIONS(521), + [anon_sym_DOLLAR] = ACTIONS(523), + [anon_sym_TODO] = ACTIONS(525), + [anon_sym_WIP] = ACTIONS(525), + [anon_sym_NOTE] = ACTIONS(527), + [anon_sym_INFO] = ACTIONS(527), + [anon_sym_XXX] = ACTIONS(527), + [sym_fixme] = ACTIONS(509), + [sym__whitespace1] = ACTIONS(529), + [sym__newline] = ACTIONS(531), + [aux_sym__text_token1] = ACTIONS(533), + [sym__verbatim_begin] = ACTIONS(535), + }, + [107] = { + [sym__inline] = STATE(1043), + [sym__element] = STATE(64), + [sym_emphasis] = STATE(133), + [sym_emphasis_begin] = STATE(1124), + [sym_strong] = STATE(133), + [sym_strong_begin] = STATE(1125), + [sym_superscript] = STATE(133), + [sym_superscript_begin] = STATE(1126), + [sym_subscript] = STATE(133), + [sym_subscript_begin] = STATE(1127), + [sym_highlighted] = STATE(133), + [sym_highlighted_begin] = STATE(1128), + [sym_insert] = STATE(133), + [sym_insert_begin] = STATE(1129), + [sym_delete] = STATE(133), + [sym_delete_begin] = STATE(1130), + [sym_hard_line_break] = STATE(140), + [sym__smart_punctuation] = STATE(140), + [sym_autolink] = STATE(140), + [sym_footnote_reference] = STATE(133), + [sym_footnote_marker_begin] = STATE(1131), + [sym__image] = STATE(133), + [sym_full_reference_image] = STATE(133), + [sym_collapsed_reference_image] = STATE(133), + [sym_inline_image] = STATE(133), + [sym_image_description] = STATE(663), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(133), + [sym_full_reference_link] = STATE(133), + [sym_collapsed_reference_link] = STATE(133), + [sym_inline_link] = STATE(133), + [sym_link_text] = STATE(669), + [sym_span] = STATE(64), + [sym__bracketed_text_begin] = STATE(1206), + [sym__comment_with_spaces] = STATE(140), + [sym_raw_inline] = STATE(140), + [sym_math] = STATE(140), + [sym_verbatim] = STATE(140), + [sym__todo_highlights] = STATE(140), + [sym_todo] = STATE(140), + [sym_note] = STATE(140), + [sym__symbol_fallback] = STATE(140), + [aux_sym__text] = STATE(122), + [aux_sym__inline_repeat1] = STATE(64), + [anon_sym_LBRACE_] = ACTIONS(537), + [anon_sym__] = ACTIONS(539), + [anon_sym_LBRACE_STAR] = ACTIONS(541), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE_CARET] = ACTIONS(545), + [anon_sym_CARET] = ACTIONS(545), + [anon_sym_LBRACE_TILDE] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(547), + [anon_sym_LBRACE_EQ] = ACTIONS(549), + [anon_sym_LBRACE_PLUS] = ACTIONS(551), + [anon_sym_LBRACE_DASH] = ACTIONS(553), + [anon_sym_BSLASH] = ACTIONS(555), + [sym_quotation_marks] = ACTIONS(557), + [sym_ellipsis] = ACTIONS(557), + [sym_em_dash] = ACTIONS(557), + [sym_en_dash] = ACTIONS(559), + [sym_backslash_escape] = ACTIONS(559), + [anon_sym_LT] = ACTIONS(561), + [sym_symbol] = ACTIONS(557), + [anon_sym_LBRACK_CARET] = ACTIONS(563), + [anon_sym_BANG_LBRACK] = ACTIONS(565), + [anon_sym_LBRACK] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_DOLLAR] = ACTIONS(571), + [anon_sym_TODO] = ACTIONS(573), + [anon_sym_WIP] = ACTIONS(573), + [anon_sym_NOTE] = ACTIONS(575), + [anon_sym_INFO] = ACTIONS(575), + [anon_sym_XXX] = ACTIONS(575), + [sym_fixme] = ACTIONS(557), + [sym__whitespace1] = ACTIONS(577), + [sym__newline] = ACTIONS(579), + [aux_sym__text_token1] = ACTIONS(581), + [sym__verbatim_begin] = ACTIONS(583), + }, + [108] = { + [sym__inline] = STATE(1035), + [sym__element] = STATE(14), + [sym_emphasis] = STATE(136), + [sym_emphasis_begin] = STATE(1134), + [sym_strong] = STATE(136), + [sym_strong_begin] = STATE(1135), + [sym_superscript] = STATE(136), + [sym_superscript_begin] = STATE(1136), + [sym_subscript] = STATE(136), + [sym_subscript_begin] = STATE(1137), + [sym_highlighted] = STATE(136), + [sym_highlighted_begin] = STATE(1138), + [sym_insert] = STATE(136), + [sym_insert_begin] = STATE(1139), + [sym_delete] = STATE(136), + [sym_delete_begin] = STATE(1140), + [sym_hard_line_break] = STATE(134), + [sym__smart_punctuation] = STATE(134), + [sym_autolink] = STATE(134), + [sym_footnote_reference] = STATE(136), + [sym_footnote_marker_begin] = STATE(1141), + [sym__image] = STATE(136), + [sym_full_reference_image] = STATE(136), + [sym_collapsed_reference_image] = STATE(136), + [sym_inline_image] = STATE(136), + [sym_image_description] = STATE(670), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(136), + [sym_full_reference_link] = STATE(136), + [sym_collapsed_reference_link] = STATE(136), + [sym_inline_link] = STATE(136), + [sym_link_text] = STATE(671), + [sym_span] = STATE(14), + [sym__bracketed_text_begin] = STATE(1207), + [sym__comment_with_spaces] = STATE(134), + [sym_raw_inline] = STATE(134), + [sym_math] = STATE(134), + [sym_verbatim] = STATE(134), + [sym__todo_highlights] = STATE(134), + [sym_todo] = STATE(134), + [sym_note] = STATE(134), + [sym__symbol_fallback] = STATE(134), + [aux_sym__text] = STATE(129), + [aux_sym__inline_repeat1] = STATE(14), + [anon_sym_LBRACE_] = ACTIONS(295), + [anon_sym__] = ACTIONS(297), + [anon_sym_LBRACE_STAR] = ACTIONS(299), + [anon_sym_STAR] = ACTIONS(301), + [anon_sym_LBRACE_CARET] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(303), + [anon_sym_LBRACE_TILDE] = ACTIONS(305), + [anon_sym_TILDE] = ACTIONS(305), + [anon_sym_LBRACE_EQ] = ACTIONS(307), + [anon_sym_LBRACE_PLUS] = ACTIONS(309), + [anon_sym_LBRACE_DASH] = ACTIONS(311), + [anon_sym_BSLASH] = ACTIONS(313), + [sym_quotation_marks] = ACTIONS(315), + [sym_ellipsis] = ACTIONS(315), + [sym_em_dash] = ACTIONS(315), + [sym_en_dash] = ACTIONS(317), + [sym_backslash_escape] = ACTIONS(317), + [anon_sym_LT] = ACTIONS(319), + [sym_symbol] = ACTIONS(315), + [anon_sym_LBRACK_CARET] = ACTIONS(321), + [anon_sym_BANG_LBRACK] = ACTIONS(323), + [anon_sym_LBRACK] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(327), + [anon_sym_DOLLAR] = ACTIONS(329), + [anon_sym_TODO] = ACTIONS(331), + [anon_sym_WIP] = ACTIONS(331), + [anon_sym_NOTE] = ACTIONS(333), + [anon_sym_INFO] = ACTIONS(333), + [anon_sym_XXX] = ACTIONS(333), + [sym_fixme] = ACTIONS(315), + [sym__whitespace1] = ACTIONS(335), + [sym__newline] = ACTIONS(635), + [aux_sym__text_token1] = ACTIONS(339), + [sym__verbatim_begin] = ACTIONS(341), + }, + [109] = { + [sym__inline] = STATE(1027), + [sym__element] = STATE(110), + [sym_emphasis] = STATE(146), + [sym_emphasis_begin] = STATE(1144), + [sym_strong] = STATE(146), + [sym_strong_begin] = STATE(1145), + [sym_superscript] = STATE(146), + [sym_superscript_begin] = STATE(1146), + [sym_subscript] = STATE(146), + [sym_subscript_begin] = STATE(1147), + [sym_highlighted] = STATE(146), + [sym_highlighted_begin] = STATE(1148), + [sym_insert] = STATE(146), + [sym_insert_begin] = STATE(1149), + [sym_delete] = STATE(146), + [sym_delete_begin] = STATE(1150), + [sym_hard_line_break] = STATE(144), + [sym__smart_punctuation] = STATE(144), + [sym_autolink] = STATE(144), + [sym_footnote_reference] = STATE(146), + [sym_footnote_marker_begin] = STATE(1151), + [sym__image] = STATE(146), + [sym_full_reference_image] = STATE(146), + [sym_collapsed_reference_image] = STATE(146), + [sym_inline_image] = STATE(146), + [sym_image_description] = STATE(673), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(146), + [sym_full_reference_link] = STATE(146), + [sym_collapsed_reference_link] = STATE(146), + [sym_inline_link] = STATE(146), + [sym_link_text] = STATE(662), + [sym_span] = STATE(110), + [sym__bracketed_text_begin] = STATE(1208), + [sym__comment_with_spaces] = STATE(144), + [sym_raw_inline] = STATE(144), + [sym_math] = STATE(144), + [sym_verbatim] = STATE(144), + [sym__todo_highlights] = STATE(144), + [sym_todo] = STATE(144), + [sym_note] = STATE(144), + [sym__symbol_fallback] = STATE(144), + [aux_sym__text] = STATE(128), + [aux_sym__inline_repeat1] = STATE(110), + [anon_sym_LBRACE_] = ACTIONS(587), + [anon_sym__] = ACTIONS(589), + [anon_sym_LBRACE_STAR] = ACTIONS(591), + [anon_sym_STAR] = ACTIONS(593), + [anon_sym_LBRACE_CARET] = ACTIONS(595), + [anon_sym_CARET] = ACTIONS(595), + [anon_sym_LBRACE_TILDE] = ACTIONS(597), + [anon_sym_TILDE] = ACTIONS(597), + [anon_sym_LBRACE_EQ] = ACTIONS(599), + [anon_sym_LBRACE_PLUS] = ACTIONS(601), + [anon_sym_LBRACE_DASH] = ACTIONS(603), + [anon_sym_BSLASH] = ACTIONS(605), + [sym_quotation_marks] = ACTIONS(607), + [sym_ellipsis] = ACTIONS(607), + [sym_em_dash] = ACTIONS(607), + [sym_en_dash] = ACTIONS(609), + [sym_backslash_escape] = ACTIONS(609), + [anon_sym_LT] = ACTIONS(611), + [sym_symbol] = ACTIONS(607), + [anon_sym_LBRACK_CARET] = ACTIONS(613), + [anon_sym_BANG_LBRACK] = ACTIONS(615), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_LPAREN] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [anon_sym_TODO] = ACTIONS(623), + [anon_sym_WIP] = ACTIONS(623), + [anon_sym_NOTE] = ACTIONS(625), + [anon_sym_INFO] = ACTIONS(625), + [anon_sym_XXX] = ACTIONS(625), + [sym_fixme] = ACTIONS(607), + [sym__whitespace1] = ACTIONS(627), + [sym__newline] = ACTIONS(629), + [aux_sym__text_token1] = ACTIONS(631), + [sym__verbatim_begin] = ACTIONS(633), + }, + [110] = { + [sym__element] = STATE(25), + [sym_emphasis] = STATE(146), + [sym_emphasis_begin] = STATE(1144), + [sym_strong] = STATE(146), + [sym_strong_begin] = STATE(1145), + [sym_superscript] = STATE(146), + [sym_superscript_begin] = STATE(1146), + [sym_subscript] = STATE(146), + [sym_subscript_begin] = STATE(1147), + [sym_highlighted] = STATE(146), + [sym_highlighted_begin] = STATE(1148), + [sym_insert] = STATE(146), + [sym_insert_begin] = STATE(1149), + [sym_delete] = STATE(146), + [sym_delete_begin] = STATE(1150), + [sym_hard_line_break] = STATE(144), + [sym__smart_punctuation] = STATE(144), + [sym_autolink] = STATE(144), + [sym_footnote_reference] = STATE(146), + [sym_footnote_marker_begin] = STATE(1151), + [sym__image] = STATE(146), + [sym_full_reference_image] = STATE(146), + [sym_collapsed_reference_image] = STATE(146), + [sym_inline_image] = STATE(146), + [sym_image_description] = STATE(673), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(146), + [sym_full_reference_link] = STATE(146), + [sym_collapsed_reference_link] = STATE(146), + [sym_inline_link] = STATE(146), + [sym_link_text] = STATE(662), + [sym_span] = STATE(25), + [sym__bracketed_text_begin] = STATE(1208), + [sym__comment_with_spaces] = STATE(144), + [sym_raw_inline] = STATE(144), + [sym_math] = STATE(144), + [sym_verbatim] = STATE(144), + [sym__todo_highlights] = STATE(144), + [sym_todo] = STATE(144), + [sym_note] = STATE(144), + [sym__symbol_fallback] = STATE(144), + [aux_sym__text] = STATE(128), + [aux_sym__inline_repeat1] = STATE(25), + [anon_sym_LBRACE_] = ACTIONS(587), + [anon_sym__] = ACTIONS(589), + [anon_sym_LBRACE_STAR] = ACTIONS(591), + [anon_sym_STAR] = ACTIONS(593), + [anon_sym_LBRACE_CARET] = ACTIONS(595), + [anon_sym_CARET] = ACTIONS(595), + [anon_sym_LBRACE_TILDE] = ACTIONS(597), + [anon_sym_TILDE] = ACTIONS(597), + [anon_sym_LBRACE_EQ] = ACTIONS(599), + [anon_sym_LBRACE_PLUS] = ACTIONS(601), + [anon_sym_LBRACE_DASH] = ACTIONS(603), + [anon_sym_BSLASH] = ACTIONS(605), + [sym_quotation_marks] = ACTIONS(607), + [sym_ellipsis] = ACTIONS(607), + [sym_em_dash] = ACTIONS(607), + [sym_en_dash] = ACTIONS(609), + [sym_backslash_escape] = ACTIONS(609), + [anon_sym_LT] = ACTIONS(611), + [sym_symbol] = ACTIONS(607), + [anon_sym_LBRACK_CARET] = ACTIONS(613), + [anon_sym_BANG_LBRACK] = ACTIONS(615), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_LPAREN] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [anon_sym_TODO] = ACTIONS(623), + [anon_sym_WIP] = ACTIONS(623), + [anon_sym_NOTE] = ACTIONS(625), + [anon_sym_INFO] = ACTIONS(625), + [anon_sym_XXX] = ACTIONS(625), + [sym_fixme] = ACTIONS(607), + [sym__whitespace1] = ACTIONS(627), + [sym__newline] = ACTIONS(1007), + [aux_sym__text_token1] = ACTIONS(631), + [sym__verbatim_begin] = ACTIONS(633), + [sym_highlighted_end] = ACTIONS(343), + }, + [111] = { + [sym__inline] = STATE(902), + [sym__element] = STATE(30), + [sym_emphasis] = STATE(132), + [sym_emphasis_begin] = STATE(1164), + [sym_strong] = STATE(132), + [sym_strong_begin] = STATE(1165), + [sym_superscript] = STATE(132), + [sym_superscript_begin] = STATE(1166), + [sym_subscript] = STATE(132), + [sym_subscript_begin] = STATE(1167), + [sym_highlighted] = STATE(132), + [sym_highlighted_begin] = STATE(1168), + [sym_insert] = STATE(132), + [sym_insert_begin] = STATE(1169), + [sym_delete] = STATE(132), + [sym_delete_begin] = STATE(1170), + [sym_hard_line_break] = STATE(142), + [sym__smart_punctuation] = STATE(142), + [sym_autolink] = STATE(142), + [sym_footnote_reference] = STATE(132), + [sym_footnote_marker_begin] = STATE(1171), + [sym__image] = STATE(132), + [sym_full_reference_image] = STATE(132), + [sym_collapsed_reference_image] = STATE(132), + [sym_inline_image] = STATE(132), + [sym_image_description] = STATE(660), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(132), + [sym_full_reference_link] = STATE(132), + [sym_collapsed_reference_link] = STATE(132), + [sym_inline_link] = STATE(132), + [sym_link_text] = STATE(659), + [sym_span] = STATE(30), + [sym__bracketed_text_begin] = STATE(1210), + [sym__comment_with_spaces] = STATE(142), + [sym_raw_inline] = STATE(142), + [sym_math] = STATE(142), + [sym_verbatim] = STATE(142), + [sym__todo_highlights] = STATE(142), + [sym_todo] = STATE(142), + [sym_note] = STATE(142), + [sym__symbol_fallback] = STATE(142), + [aux_sym__text] = STATE(126), + [aux_sym__inline_repeat1] = STATE(30), + [anon_sym_LBRACE_] = ACTIONS(393), + [anon_sym__] = ACTIONS(395), + [anon_sym_LBRACE_STAR] = ACTIONS(397), + [anon_sym_STAR] = ACTIONS(399), + [anon_sym_LBRACE_CARET] = ACTIONS(401), + [anon_sym_CARET] = ACTIONS(401), + [anon_sym_LBRACE_TILDE] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_LBRACE_EQ] = ACTIONS(405), + [anon_sym_LBRACE_PLUS] = ACTIONS(407), + [anon_sym_LBRACE_DASH] = ACTIONS(409), + [anon_sym_BSLASH] = ACTIONS(411), + [sym_quotation_marks] = ACTIONS(413), + [sym_ellipsis] = ACTIONS(413), + [sym_em_dash] = ACTIONS(413), + [sym_en_dash] = ACTIONS(415), + [sym_backslash_escape] = ACTIONS(415), + [anon_sym_LT] = ACTIONS(417), + [sym_symbol] = ACTIONS(413), + [anon_sym_LBRACK_CARET] = ACTIONS(419), + [anon_sym_BANG_LBRACK] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(423), + [anon_sym_LPAREN] = ACTIONS(425), + [anon_sym_DOLLAR] = ACTIONS(427), + [anon_sym_TODO] = ACTIONS(429), + [anon_sym_WIP] = ACTIONS(429), + [anon_sym_NOTE] = ACTIONS(431), + [anon_sym_INFO] = ACTIONS(431), + [anon_sym_XXX] = ACTIONS(431), + [sym_fixme] = ACTIONS(413), + [sym__whitespace1] = ACTIONS(433), + [sym__newline] = ACTIONS(435), + [aux_sym__text_token1] = ACTIONS(437), + [sym__verbatim_begin] = ACTIONS(439), + }, + [112] = { + [sym__inline_without_trailing_space] = STATE(996), + [sym__element] = STATE(594), + [sym_emphasis] = STATE(149), + [sym_emphasis_begin] = STATE(1104), + [sym_strong] = STATE(149), + [sym_strong_begin] = STATE(1105), + [sym_superscript] = STATE(149), + [sym_superscript_begin] = STATE(1106), + [sym_subscript] = STATE(149), + [sym_subscript_begin] = STATE(1107), + [sym_highlighted] = STATE(149), + [sym_highlighted_begin] = STATE(1108), + [sym_insert] = STATE(149), + [sym_insert_begin] = STATE(1109), + [sym_delete] = STATE(149), + [sym_delete_begin] = STATE(1110), + [sym_hard_line_break] = STATE(143), + [sym__smart_punctuation] = STATE(143), + [sym_autolink] = STATE(143), + [sym_footnote_reference] = STATE(149), + [sym_footnote_marker_begin] = STATE(1111), + [sym__image] = STATE(149), + [sym_full_reference_image] = STATE(149), + [sym_collapsed_reference_image] = STATE(149), + [sym_inline_image] = STATE(149), + [sym_image_description] = STATE(658), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(149), + [sym_full_reference_link] = STATE(149), + [sym_collapsed_reference_link] = STATE(149), + [sym_inline_link] = STATE(149), + [sym_link_text] = STATE(672), + [sym_span] = STATE(594), + [sym__bracketed_text_begin] = STATE(1204), + [sym__comment_with_spaces] = STATE(143), + [sym_raw_inline] = STATE(143), + [sym_math] = STATE(143), + [sym_verbatim] = STATE(143), + [sym__todo_highlights] = STATE(143), + [sym_todo] = STATE(143), + [sym_note] = STATE(143), + [sym__symbol_fallback] = STATE(143), + [aux_sym__text] = STATE(127), + [aux_sym__inline_repeat1] = STATE(120), + [anon_sym_LBRACE_] = ACTIONS(441), + [anon_sym__] = ACTIONS(443), + [anon_sym_LBRACE_STAR] = ACTIONS(445), + [anon_sym_STAR] = ACTIONS(447), + [anon_sym_LBRACE_CARET] = ACTIONS(449), + [anon_sym_CARET] = ACTIONS(449), + [anon_sym_LBRACE_TILDE] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_LBRACE_EQ] = ACTIONS(453), + [anon_sym_LBRACE_PLUS] = ACTIONS(455), + [anon_sym_LBRACE_DASH] = ACTIONS(457), + [anon_sym_BSLASH] = ACTIONS(459), + [sym_quotation_marks] = ACTIONS(461), + [sym_ellipsis] = ACTIONS(461), + [sym_em_dash] = ACTIONS(461), + [sym_en_dash] = ACTIONS(463), + [sym_backslash_escape] = ACTIONS(463), + [anon_sym_LT] = ACTIONS(465), + [sym_symbol] = ACTIONS(461), + [anon_sym_LBRACK_CARET] = ACTIONS(467), + [anon_sym_BANG_LBRACK] = ACTIONS(469), + [anon_sym_LBRACK] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(473), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_TODO] = ACTIONS(477), + [anon_sym_WIP] = ACTIONS(477), + [anon_sym_NOTE] = ACTIONS(479), + [anon_sym_INFO] = ACTIONS(479), + [anon_sym_XXX] = ACTIONS(479), + [sym_fixme] = ACTIONS(461), + [sym__whitespace1] = ACTIONS(481), + [sym__newline] = ACTIONS(483), + [aux_sym__text_token1] = ACTIONS(485), + [sym__verbatim_begin] = ACTIONS(487), + }, + [113] = { + [sym__inline] = STATE(952), + [sym__element] = STATE(46), + [sym_emphasis] = STATE(135), + [sym_emphasis_begin] = STATE(1174), + [sym_strong] = STATE(135), + [sym_strong_begin] = STATE(1175), + [sym_superscript] = STATE(135), + [sym_superscript_begin] = STATE(1176), + [sym_subscript] = STATE(135), + [sym_subscript_begin] = STATE(1177), + [sym_highlighted] = STATE(135), + [sym_highlighted_begin] = STATE(1178), + [sym_insert] = STATE(135), + [sym_insert_begin] = STATE(1179), + [sym_delete] = STATE(135), + [sym_delete_begin] = STATE(1180), + [sym_hard_line_break] = STATE(138), + [sym__smart_punctuation] = STATE(138), + [sym_autolink] = STATE(138), + [sym_footnote_reference] = STATE(135), + [sym_footnote_marker_begin] = STATE(1181), + [sym__image] = STATE(135), + [sym_full_reference_image] = STATE(135), + [sym_collapsed_reference_image] = STATE(135), + [sym_inline_image] = STATE(135), + [sym_image_description] = STATE(656), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(135), + [sym_full_reference_link] = STATE(135), + [sym_collapsed_reference_link] = STATE(135), + [sym_inline_link] = STATE(135), + [sym_link_text] = STATE(654), + [sym_span] = STATE(46), + [sym__bracketed_text_begin] = STATE(1211), + [sym__comment_with_spaces] = STATE(138), + [sym_raw_inline] = STATE(138), + [sym_math] = STATE(138), + [sym_verbatim] = STATE(138), + [sym__todo_highlights] = STATE(138), + [sym_todo] = STATE(138), + [sym_note] = STATE(138), + [sym__symbol_fallback] = STATE(138), + [aux_sym__text] = STATE(121), + [aux_sym__inline_repeat1] = STATE(46), + [anon_sym_LBRACE_] = ACTIONS(345), + [anon_sym__] = ACTIONS(347), + [anon_sym_LBRACE_STAR] = ACTIONS(349), + [anon_sym_STAR] = ACTIONS(351), + [anon_sym_LBRACE_CARET] = ACTIONS(353), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_LBRACE_TILDE] = ACTIONS(355), + [anon_sym_TILDE] = ACTIONS(355), + [anon_sym_LBRACE_EQ] = ACTIONS(357), + [anon_sym_LBRACE_PLUS] = ACTIONS(359), + [anon_sym_LBRACE_DASH] = ACTIONS(361), + [anon_sym_BSLASH] = ACTIONS(363), + [sym_quotation_marks] = ACTIONS(365), + [sym_ellipsis] = ACTIONS(365), + [sym_em_dash] = ACTIONS(365), + [sym_en_dash] = ACTIONS(367), + [sym_backslash_escape] = ACTIONS(367), + [anon_sym_LT] = ACTIONS(369), + [sym_symbol] = ACTIONS(365), + [anon_sym_LBRACK_CARET] = ACTIONS(371), + [anon_sym_BANG_LBRACK] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(375), + [anon_sym_LPAREN] = ACTIONS(377), + [anon_sym_DOLLAR] = ACTIONS(379), + [anon_sym_TODO] = ACTIONS(381), + [anon_sym_WIP] = ACTIONS(381), + [anon_sym_NOTE] = ACTIONS(383), + [anon_sym_INFO] = ACTIONS(383), + [anon_sym_XXX] = ACTIONS(383), + [sym_fixme] = ACTIONS(365), + [sym__whitespace1] = ACTIONS(385), + [sym__newline] = ACTIONS(387), + [aux_sym__text_token1] = ACTIONS(389), + [sym__verbatim_begin] = ACTIONS(391), + }, + [114] = { + [sym__inline_without_trailing_space] = STATE(995), + [sym__element] = STATE(550), + [sym_emphasis] = STATE(137), + [sym_emphasis_begin] = STATE(1114), + [sym_strong] = STATE(137), + [sym_strong_begin] = STATE(1115), + [sym_superscript] = STATE(137), + [sym_superscript_begin] = STATE(1116), + [sym_subscript] = STATE(137), + [sym_subscript_begin] = STATE(1117), + [sym_highlighted] = STATE(137), + [sym_highlighted_begin] = STATE(1118), + [sym_insert] = STATE(137), + [sym_insert_begin] = STATE(1119), + [sym_delete] = STATE(137), + [sym_delete_begin] = STATE(1120), + [sym_hard_line_break] = STATE(131), + [sym__smart_punctuation] = STATE(131), + [sym_autolink] = STATE(131), + [sym_footnote_reference] = STATE(137), + [sym_footnote_marker_begin] = STATE(1121), + [sym__image] = STATE(137), + [sym_full_reference_image] = STATE(137), + [sym_collapsed_reference_image] = STATE(137), + [sym_inline_image] = STATE(137), + [sym_image_description] = STATE(649), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(137), + [sym_full_reference_link] = STATE(137), + [sym_collapsed_reference_link] = STATE(137), + [sym_inline_link] = STATE(137), + [sym_link_text] = STATE(650), + [sym_span] = STATE(550), + [sym__bracketed_text_begin] = STATE(1205), + [sym__comment_with_spaces] = STATE(131), + [sym_raw_inline] = STATE(131), + [sym_math] = STATE(131), + [sym_verbatim] = STATE(131), + [sym__todo_highlights] = STATE(131), + [sym_todo] = STATE(131), + [sym_note] = STATE(131), + [sym__symbol_fallback] = STATE(131), + [aux_sym__text] = STATE(130), + [aux_sym__inline_repeat1] = STATE(119), + [anon_sym_LBRACE_] = ACTIONS(489), + [anon_sym__] = ACTIONS(491), + [anon_sym_LBRACE_STAR] = ACTIONS(493), + [anon_sym_STAR] = ACTIONS(495), + [anon_sym_LBRACE_CARET] = ACTIONS(497), + [anon_sym_CARET] = ACTIONS(497), + [anon_sym_LBRACE_TILDE] = ACTIONS(499), + [anon_sym_TILDE] = ACTIONS(499), + [anon_sym_LBRACE_EQ] = ACTIONS(501), + [anon_sym_LBRACE_PLUS] = ACTIONS(503), + [anon_sym_LBRACE_DASH] = ACTIONS(505), + [anon_sym_BSLASH] = ACTIONS(507), + [sym_quotation_marks] = ACTIONS(509), + [sym_ellipsis] = ACTIONS(509), + [sym_em_dash] = ACTIONS(509), + [sym_en_dash] = ACTIONS(511), + [sym_backslash_escape] = ACTIONS(511), + [anon_sym_LT] = ACTIONS(513), + [sym_symbol] = ACTIONS(509), + [anon_sym_LBRACK_CARET] = ACTIONS(515), + [anon_sym_BANG_LBRACK] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(519), + [anon_sym_LPAREN] = ACTIONS(521), + [anon_sym_DOLLAR] = ACTIONS(523), + [anon_sym_TODO] = ACTIONS(525), + [anon_sym_WIP] = ACTIONS(525), + [anon_sym_NOTE] = ACTIONS(527), + [anon_sym_INFO] = ACTIONS(527), + [anon_sym_XXX] = ACTIONS(527), + [sym_fixme] = ACTIONS(509), + [sym__whitespace1] = ACTIONS(529), + [sym__newline] = ACTIONS(531), + [aux_sym__text_token1] = ACTIONS(533), + [sym__verbatim_begin] = ACTIONS(535), + }, + [115] = { + [sym__element] = STATE(115), + [sym_emphasis] = STATE(148), + [sym_emphasis_begin] = STATE(1184), + [sym_strong] = STATE(148), + [sym_strong_begin] = STATE(1185), + [sym_superscript] = STATE(148), + [sym_superscript_begin] = STATE(1186), + [sym_subscript] = STATE(148), + [sym_subscript_begin] = STATE(1187), + [sym_highlighted] = STATE(148), + [sym_highlighted_begin] = STATE(1188), + [sym_insert] = STATE(148), + [sym_insert_begin] = STATE(1189), + [sym_delete] = STATE(148), + [sym_delete_begin] = STATE(1190), + [sym_hard_line_break] = STATE(139), + [sym__smart_punctuation] = STATE(139), + [sym_autolink] = STATE(139), + [sym_footnote_reference] = STATE(148), + [sym_footnote_marker_begin] = STATE(1191), + [sym__image] = STATE(148), + [sym_full_reference_image] = STATE(148), + [sym_collapsed_reference_image] = STATE(148), + [sym_inline_image] = STATE(148), + [sym_image_description] = STATE(648), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(148), + [sym_full_reference_link] = STATE(148), + [sym_collapsed_reference_link] = STATE(148), + [sym_inline_link] = STATE(148), + [sym_link_text] = STATE(647), + [sym_span] = STATE(115), + [sym__bracketed_text_begin] = STATE(1212), + [sym__comment_with_spaces] = STATE(139), + [sym_raw_inline] = STATE(139), + [sym_math] = STATE(139), + [sym_verbatim] = STATE(139), + [sym__todo_highlights] = STATE(139), + [sym_todo] = STATE(139), + [sym_note] = STATE(139), + [sym__symbol_fallback] = STATE(139), + [aux_sym__text] = STATE(123), + [aux_sym__inline_repeat1] = STATE(115), + [anon_sym_LBRACE_] = ACTIONS(1009), + [anon_sym__] = ACTIONS(1012), + [anon_sym_LBRACE_STAR] = ACTIONS(1015), + [anon_sym_STAR] = ACTIONS(1018), + [anon_sym_LBRACE_CARET] = ACTIONS(1021), + [anon_sym_CARET] = ACTIONS(1021), + [anon_sym_LBRACE_TILDE] = ACTIONS(1024), + [anon_sym_TILDE] = ACTIONS(1024), + [anon_sym_LBRACE_EQ] = ACTIONS(1027), + [anon_sym_LBRACE_PLUS] = ACTIONS(1030), + [anon_sym_LBRACE_DASH] = ACTIONS(1033), + [anon_sym_BSLASH] = ACTIONS(1036), + [sym_quotation_marks] = ACTIONS(1039), + [sym_ellipsis] = ACTIONS(1039), + [sym_em_dash] = ACTIONS(1039), + [sym_en_dash] = ACTIONS(1042), + [sym_backslash_escape] = ACTIONS(1042), + [anon_sym_LT] = ACTIONS(1045), + [sym_symbol] = ACTIONS(1039), + [anon_sym_LBRACK_CARET] = ACTIONS(1048), + [anon_sym_BANG_LBRACK] = ACTIONS(1051), + [anon_sym_LBRACK] = ACTIONS(1054), + [anon_sym_LPAREN] = ACTIONS(1057), + [anon_sym_DOLLAR] = ACTIONS(1060), + [anon_sym_TODO] = ACTIONS(1063), + [anon_sym_WIP] = ACTIONS(1063), + [anon_sym_NOTE] = ACTIONS(1066), + [anon_sym_INFO] = ACTIONS(1066), + [anon_sym_XXX] = ACTIONS(1066), + [sym_fixme] = ACTIONS(1039), + [sym__whitespace1] = ACTIONS(1069), + [sym__newline] = ACTIONS(1072), + [aux_sym__text_token1] = ACTIONS(1075), + [sym__verbatim_begin] = ACTIONS(1078), + [sym__square_bracket_span_end] = ACTIONS(221), + }, + [116] = { + [sym__inline] = STATE(987), + [sym__element] = STATE(64), + [sym_emphasis] = STATE(133), + [sym_emphasis_begin] = STATE(1124), + [sym_strong] = STATE(133), + [sym_strong_begin] = STATE(1125), + [sym_superscript] = STATE(133), + [sym_superscript_begin] = STATE(1126), + [sym_subscript] = STATE(133), + [sym_subscript_begin] = STATE(1127), + [sym_highlighted] = STATE(133), + [sym_highlighted_begin] = STATE(1128), + [sym_insert] = STATE(133), + [sym_insert_begin] = STATE(1129), + [sym_delete] = STATE(133), + [sym_delete_begin] = STATE(1130), + [sym_hard_line_break] = STATE(140), + [sym__smart_punctuation] = STATE(140), + [sym_autolink] = STATE(140), + [sym_footnote_reference] = STATE(133), + [sym_footnote_marker_begin] = STATE(1131), + [sym__image] = STATE(133), + [sym_full_reference_image] = STATE(133), + [sym_collapsed_reference_image] = STATE(133), + [sym_inline_image] = STATE(133), + [sym_image_description] = STATE(663), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(133), + [sym_full_reference_link] = STATE(133), + [sym_collapsed_reference_link] = STATE(133), + [sym_inline_link] = STATE(133), + [sym_link_text] = STATE(669), + [sym_span] = STATE(64), + [sym__bracketed_text_begin] = STATE(1206), + [sym__comment_with_spaces] = STATE(140), + [sym_raw_inline] = STATE(140), + [sym_math] = STATE(140), + [sym_verbatim] = STATE(140), + [sym__todo_highlights] = STATE(140), + [sym_todo] = STATE(140), + [sym_note] = STATE(140), + [sym__symbol_fallback] = STATE(140), + [aux_sym__text] = STATE(122), + [aux_sym__inline_repeat1] = STATE(64), + [anon_sym_LBRACE_] = ACTIONS(537), + [anon_sym__] = ACTIONS(539), + [anon_sym_LBRACE_STAR] = ACTIONS(541), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE_CARET] = ACTIONS(545), + [anon_sym_CARET] = ACTIONS(545), + [anon_sym_LBRACE_TILDE] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(547), + [anon_sym_LBRACE_EQ] = ACTIONS(549), + [anon_sym_LBRACE_PLUS] = ACTIONS(551), + [anon_sym_LBRACE_DASH] = ACTIONS(553), + [anon_sym_BSLASH] = ACTIONS(555), + [sym_quotation_marks] = ACTIONS(557), + [sym_ellipsis] = ACTIONS(557), + [sym_em_dash] = ACTIONS(557), + [sym_en_dash] = ACTIONS(559), + [sym_backslash_escape] = ACTIONS(559), + [anon_sym_LT] = ACTIONS(561), + [sym_symbol] = ACTIONS(557), + [anon_sym_LBRACK_CARET] = ACTIONS(563), + [anon_sym_BANG_LBRACK] = ACTIONS(565), + [anon_sym_LBRACK] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_DOLLAR] = ACTIONS(571), + [anon_sym_TODO] = ACTIONS(573), + [anon_sym_WIP] = ACTIONS(573), + [anon_sym_NOTE] = ACTIONS(575), + [anon_sym_INFO] = ACTIONS(575), + [anon_sym_XXX] = ACTIONS(575), + [sym_fixme] = ACTIONS(557), + [sym__whitespace1] = ACTIONS(577), + [sym__newline] = ACTIONS(579), + [aux_sym__text_token1] = ACTIONS(581), + [sym__verbatim_begin] = ACTIONS(583), + }, + [117] = { + [sym__inline] = STATE(986), + [sym__element] = STATE(14), + [sym_emphasis] = STATE(136), + [sym_emphasis_begin] = STATE(1134), + [sym_strong] = STATE(136), + [sym_strong_begin] = STATE(1135), + [sym_superscript] = STATE(136), + [sym_superscript_begin] = STATE(1136), + [sym_subscript] = STATE(136), + [sym_subscript_begin] = STATE(1137), + [sym_highlighted] = STATE(136), + [sym_highlighted_begin] = STATE(1138), + [sym_insert] = STATE(136), + [sym_insert_begin] = STATE(1139), + [sym_delete] = STATE(136), + [sym_delete_begin] = STATE(1140), + [sym_hard_line_break] = STATE(134), + [sym__smart_punctuation] = STATE(134), + [sym_autolink] = STATE(134), + [sym_footnote_reference] = STATE(136), + [sym_footnote_marker_begin] = STATE(1141), + [sym__image] = STATE(136), + [sym_full_reference_image] = STATE(136), + [sym_collapsed_reference_image] = STATE(136), + [sym_inline_image] = STATE(136), + [sym_image_description] = STATE(670), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(136), + [sym_full_reference_link] = STATE(136), + [sym_collapsed_reference_link] = STATE(136), + [sym_inline_link] = STATE(136), + [sym_link_text] = STATE(671), + [sym_span] = STATE(14), + [sym__bracketed_text_begin] = STATE(1207), + [sym__comment_with_spaces] = STATE(134), + [sym_raw_inline] = STATE(134), + [sym_math] = STATE(134), + [sym_verbatim] = STATE(134), + [sym__todo_highlights] = STATE(134), + [sym_todo] = STATE(134), + [sym_note] = STATE(134), + [sym__symbol_fallback] = STATE(134), + [aux_sym__text] = STATE(129), + [aux_sym__inline_repeat1] = STATE(14), + [anon_sym_LBRACE_] = ACTIONS(295), + [anon_sym__] = ACTIONS(297), + [anon_sym_LBRACE_STAR] = ACTIONS(299), + [anon_sym_STAR] = ACTIONS(301), + [anon_sym_LBRACE_CARET] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(303), + [anon_sym_LBRACE_TILDE] = ACTIONS(305), + [anon_sym_TILDE] = ACTIONS(305), + [anon_sym_LBRACE_EQ] = ACTIONS(307), + [anon_sym_LBRACE_PLUS] = ACTIONS(309), + [anon_sym_LBRACE_DASH] = ACTIONS(311), + [anon_sym_BSLASH] = ACTIONS(313), + [sym_quotation_marks] = ACTIONS(315), + [sym_ellipsis] = ACTIONS(315), + [sym_em_dash] = ACTIONS(315), + [sym_en_dash] = ACTIONS(317), + [sym_backslash_escape] = ACTIONS(317), + [anon_sym_LT] = ACTIONS(319), + [sym_symbol] = ACTIONS(315), + [anon_sym_LBRACK_CARET] = ACTIONS(321), + [anon_sym_BANG_LBRACK] = ACTIONS(323), + [anon_sym_LBRACK] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(327), + [anon_sym_DOLLAR] = ACTIONS(329), + [anon_sym_TODO] = ACTIONS(331), + [anon_sym_WIP] = ACTIONS(331), + [anon_sym_NOTE] = ACTIONS(333), + [anon_sym_INFO] = ACTIONS(333), + [anon_sym_XXX] = ACTIONS(333), + [sym_fixme] = ACTIONS(315), + [sym__whitespace1] = ACTIONS(335), + [sym__newline] = ACTIONS(635), + [aux_sym__text_token1] = ACTIONS(339), + [sym__verbatim_begin] = ACTIONS(341), + }, + [118] = { + [sym__element] = STATE(118), + [sym_emphasis] = STATE(152), + [sym_emphasis_begin] = STATE(1194), + [sym_strong] = STATE(152), + [sym_strong_begin] = STATE(1195), + [sym_superscript] = STATE(152), + [sym_superscript_begin] = STATE(1196), + [sym_subscript] = STATE(152), + [sym_subscript_begin] = STATE(1197), + [sym_highlighted] = STATE(152), + [sym_highlighted_begin] = STATE(1198), + [sym_insert] = STATE(152), + [sym_insert_begin] = STATE(1199), + [sym_delete] = STATE(152), + [sym_delete_begin] = STATE(1200), + [sym_hard_line_break] = STATE(157), + [sym__smart_punctuation] = STATE(157), + [sym_autolink] = STATE(157), + [sym_footnote_reference] = STATE(152), + [sym_footnote_marker_begin] = STATE(1201), + [sym__image] = STATE(152), + [sym_full_reference_image] = STATE(152), + [sym_collapsed_reference_image] = STATE(152), + [sym_inline_image] = STATE(152), + [sym_image_description] = STATE(646), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(152), + [sym_full_reference_link] = STATE(152), + [sym_collapsed_reference_link] = STATE(152), + [sym_inline_link] = STATE(152), + [sym_link_text] = STATE(643), + [sym_span] = STATE(118), + [sym__bracketed_text_begin] = STATE(1213), + [sym__comment_with_spaces] = STATE(157), + [sym_raw_inline] = STATE(157), + [sym_math] = STATE(157), + [sym_verbatim] = STATE(157), + [sym__todo_highlights] = STATE(157), + [sym_todo] = STATE(157), + [sym_note] = STATE(157), + [sym__symbol_fallback] = STATE(157), + [aux_sym__text] = STATE(150), + [aux_sym__inline_repeat1] = STATE(118), + [anon_sym_LBRACE_] = ACTIONS(1081), + [anon_sym__] = ACTIONS(1084), + [anon_sym_LBRACE_STAR] = ACTIONS(1087), + [anon_sym_STAR] = ACTIONS(1090), + [anon_sym_LBRACE_CARET] = ACTIONS(1093), + [anon_sym_CARET] = ACTIONS(1093), + [anon_sym_LBRACE_TILDE] = ACTIONS(1096), + [anon_sym_TILDE] = ACTIONS(1096), + [anon_sym_LBRACE_EQ] = ACTIONS(1099), + [anon_sym_LBRACE_PLUS] = ACTIONS(1102), + [anon_sym_LBRACE_DASH] = ACTIONS(1105), + [anon_sym_BSLASH] = ACTIONS(1108), + [sym_quotation_marks] = ACTIONS(1111), + [sym_ellipsis] = ACTIONS(1111), + [sym_em_dash] = ACTIONS(1111), + [sym_en_dash] = ACTIONS(1114), + [sym_backslash_escape] = ACTIONS(1114), + [anon_sym_LT] = ACTIONS(1117), + [sym_symbol] = ACTIONS(1111), + [anon_sym_LBRACK_CARET] = ACTIONS(1120), + [anon_sym_BANG_LBRACK] = ACTIONS(1123), + [anon_sym_LBRACK] = ACTIONS(1126), + [anon_sym_LPAREN] = ACTIONS(1129), + [anon_sym_DOLLAR] = ACTIONS(1132), + [anon_sym_TODO] = ACTIONS(1135), + [anon_sym_WIP] = ACTIONS(1135), + [anon_sym_NOTE] = ACTIONS(1138), + [anon_sym_INFO] = ACTIONS(1138), + [anon_sym_XXX] = ACTIONS(1138), + [sym_fixme] = ACTIONS(1111), + [sym__whitespace1] = ACTIONS(1141), + [sym__newline] = ACTIONS(1144), + [aux_sym__text_token1] = ACTIONS(1147), + [sym__verbatim_begin] = ACTIONS(1150), + }, + [119] = { + [sym__element] = STATE(552), + [sym_emphasis] = STATE(137), + [sym_emphasis_begin] = STATE(1114), + [sym_strong] = STATE(137), + [sym_strong_begin] = STATE(1115), + [sym_superscript] = STATE(137), + [sym_superscript_begin] = STATE(1116), + [sym_subscript] = STATE(137), + [sym_subscript_begin] = STATE(1117), + [sym_highlighted] = STATE(137), + [sym_highlighted_begin] = STATE(1118), + [sym_insert] = STATE(137), + [sym_insert_begin] = STATE(1119), + [sym_delete] = STATE(137), + [sym_delete_begin] = STATE(1120), + [sym_hard_line_break] = STATE(131), + [sym__smart_punctuation] = STATE(131), + [sym_autolink] = STATE(131), + [sym_footnote_reference] = STATE(137), + [sym_footnote_marker_begin] = STATE(1121), + [sym__image] = STATE(137), + [sym_full_reference_image] = STATE(137), + [sym_collapsed_reference_image] = STATE(137), + [sym_inline_image] = STATE(137), + [sym_image_description] = STATE(649), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(137), + [sym_full_reference_link] = STATE(137), + [sym_collapsed_reference_link] = STATE(137), + [sym_inline_link] = STATE(137), + [sym_link_text] = STATE(650), + [sym_span] = STATE(552), + [sym__bracketed_text_begin] = STATE(1205), + [sym__comment_with_spaces] = STATE(131), + [sym_raw_inline] = STATE(131), + [sym_math] = STATE(131), + [sym_verbatim] = STATE(131), + [sym__todo_highlights] = STATE(131), + [sym_todo] = STATE(131), + [sym_note] = STATE(131), + [sym__symbol_fallback] = STATE(131), + [aux_sym__text] = STATE(130), + [aux_sym__inline_repeat1] = STATE(118), + [anon_sym_LBRACE_] = ACTIONS(489), + [anon_sym__] = ACTIONS(491), + [anon_sym_LBRACE_STAR] = ACTIONS(493), + [anon_sym_STAR] = ACTIONS(495), + [anon_sym_LBRACE_CARET] = ACTIONS(497), + [anon_sym_CARET] = ACTIONS(497), + [anon_sym_LBRACE_TILDE] = ACTIONS(499), + [anon_sym_TILDE] = ACTIONS(499), + [anon_sym_LBRACE_EQ] = ACTIONS(501), + [anon_sym_LBRACE_PLUS] = ACTIONS(503), + [anon_sym_LBRACE_DASH] = ACTIONS(505), + [anon_sym_BSLASH] = ACTIONS(507), + [sym_quotation_marks] = ACTIONS(509), + [sym_ellipsis] = ACTIONS(509), + [sym_em_dash] = ACTIONS(509), + [sym_en_dash] = ACTIONS(511), + [sym_backslash_escape] = ACTIONS(511), + [anon_sym_LT] = ACTIONS(513), + [sym_symbol] = ACTIONS(509), + [anon_sym_LBRACK_CARET] = ACTIONS(515), + [anon_sym_BANG_LBRACK] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(519), + [anon_sym_LPAREN] = ACTIONS(521), + [anon_sym_DOLLAR] = ACTIONS(523), + [anon_sym_TODO] = ACTIONS(525), + [anon_sym_WIP] = ACTIONS(525), + [anon_sym_NOTE] = ACTIONS(527), + [anon_sym_INFO] = ACTIONS(527), + [anon_sym_XXX] = ACTIONS(527), + [sym_fixme] = ACTIONS(509), + [sym__whitespace1] = ACTIONS(529), + [sym__newline] = ACTIONS(1153), + [aux_sym__text_token1] = ACTIONS(533), + [sym__verbatim_begin] = ACTIONS(535), + }, + [120] = { + [sym__element] = STATE(599), + [sym_emphasis] = STATE(149), + [sym_emphasis_begin] = STATE(1104), + [sym_strong] = STATE(149), + [sym_strong_begin] = STATE(1105), + [sym_superscript] = STATE(149), + [sym_superscript_begin] = STATE(1106), + [sym_subscript] = STATE(149), + [sym_subscript_begin] = STATE(1107), + [sym_highlighted] = STATE(149), + [sym_highlighted_begin] = STATE(1108), + [sym_insert] = STATE(149), + [sym_insert_begin] = STATE(1109), + [sym_delete] = STATE(149), + [sym_delete_begin] = STATE(1110), + [sym_hard_line_break] = STATE(143), + [sym__smart_punctuation] = STATE(143), + [sym_autolink] = STATE(143), + [sym_footnote_reference] = STATE(149), + [sym_footnote_marker_begin] = STATE(1111), + [sym__image] = STATE(149), + [sym_full_reference_image] = STATE(149), + [sym_collapsed_reference_image] = STATE(149), + [sym_inline_image] = STATE(149), + [sym_image_description] = STATE(658), + [sym__image_description_begin] = STATE(1079), + [sym__link] = STATE(149), + [sym_full_reference_link] = STATE(149), + [sym_collapsed_reference_link] = STATE(149), + [sym_inline_link] = STATE(149), + [sym_link_text] = STATE(672), + [sym_span] = STATE(599), + [sym__bracketed_text_begin] = STATE(1204), + [sym__comment_with_spaces] = STATE(143), + [sym_raw_inline] = STATE(143), + [sym_math] = STATE(143), + [sym_verbatim] = STATE(143), + [sym__todo_highlights] = STATE(143), + [sym_todo] = STATE(143), + [sym_note] = STATE(143), + [sym__symbol_fallback] = STATE(143), + [aux_sym__text] = STATE(127), + [aux_sym__inline_repeat1] = STATE(118), + [anon_sym_LBRACE_] = ACTIONS(441), + [anon_sym__] = ACTIONS(443), + [anon_sym_LBRACE_STAR] = ACTIONS(445), + [anon_sym_STAR] = ACTIONS(447), + [anon_sym_LBRACE_CARET] = ACTIONS(449), + [anon_sym_CARET] = ACTIONS(449), + [anon_sym_LBRACE_TILDE] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_LBRACE_EQ] = ACTIONS(453), + [anon_sym_LBRACE_PLUS] = ACTIONS(455), + [anon_sym_LBRACE_DASH] = ACTIONS(457), + [anon_sym_BSLASH] = ACTIONS(459), + [sym_quotation_marks] = ACTIONS(461), + [sym_ellipsis] = ACTIONS(461), + [sym_em_dash] = ACTIONS(461), + [sym_en_dash] = ACTIONS(463), + [sym_backslash_escape] = ACTIONS(463), + [anon_sym_LT] = ACTIONS(465), + [sym_symbol] = ACTIONS(461), + [anon_sym_LBRACK_CARET] = ACTIONS(467), + [anon_sym_BANG_LBRACK] = ACTIONS(469), + [anon_sym_LBRACK] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(473), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_TODO] = ACTIONS(477), + [anon_sym_WIP] = ACTIONS(477), + [anon_sym_NOTE] = ACTIONS(479), + [anon_sym_INFO] = ACTIONS(479), + [anon_sym_XXX] = ACTIONS(479), + [sym_fixme] = ACTIONS(461), + [sym__whitespace1] = ACTIONS(481), + [sym__newline] = ACTIONS(1153), + [aux_sym__text_token1] = ACTIONS(485), + [sym__verbatim_begin] = ACTIONS(487), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 7, + ACTIONS(1159), 1, + anon_sym_LBRACE, + STATE(215), 1, + aux_sym__text, + STATE(525), 1, + sym__curly_bracket_span_fallback, + STATE(526), 1, + sym_inline_attribute, + STATE(1057), 1, + sym__curly_bracket_span_begin, + ACTIONS(1157), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1155), 30, + sym__verbatim_begin, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + sym__whitespace1, + sym__newline, + [55] = 7, + ACTIONS(1161), 1, + anon_sym_LBRACE, + STATE(218), 1, + aux_sym__text, + STATE(519), 1, + sym_inline_attribute, + STATE(520), 1, + sym__curly_bracket_span_fallback, + STATE(977), 1, + sym__curly_bracket_span_begin, + ACTIONS(1157), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1155), 30, + sym__verbatim_begin, + sym_superscript_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + sym__whitespace1, + sym__newline, + [110] = 7, + ACTIONS(1163), 1, + anon_sym_LBRACE, + STATE(221), 1, + aux_sym__text, + STATE(523), 1, + sym_inline_attribute, + STATE(524), 1, + sym__curly_bracket_span_fallback, + STATE(1073), 1, + sym__curly_bracket_span_begin, + ACTIONS(1157), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1155), 30, + sym__verbatim_begin, + sym__square_bracket_span_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + sym__whitespace1, + sym__newline, + [165] = 7, + ACTIONS(1165), 1, + anon_sym_LBRACE, + STATE(167), 1, + aux_sym__text, + STATE(548), 1, + sym__curly_bracket_span_fallback, + STATE(549), 1, + sym_inline_attribute, + STATE(1025), 1, + sym__curly_bracket_span_begin, + ACTIONS(1157), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1155), 30, + sym__verbatim_begin, + sym_insert_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + sym__whitespace1, + sym__newline, + [220] = 7, + ACTIONS(1167), 1, + anon_sym_LBRACE, + STATE(185), 1, + aux_sym__text, + STATE(521), 1, + sym_inline_attribute, + STATE(522), 1, + sym__curly_bracket_span_fallback, + STATE(1065), 1, + sym__curly_bracket_span_begin, + ACTIONS(1157), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1155), 30, + sym__verbatim_begin, + ts_builtin_sym_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + sym__whitespace1, + sym__newline, + [275] = 7, + ACTIONS(1169), 1, + anon_sym_LBRACE, + STATE(164), 1, + aux_sym__text, + STATE(538), 1, + sym__curly_bracket_span_fallback, + STATE(540), 1, + sym_inline_attribute, + STATE(1041), 1, + sym__curly_bracket_span_begin, + ACTIONS(1157), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1155), 30, + sym__verbatim_begin, + sym_delete_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + sym__whitespace1, + sym__newline, + [330] = 7, + ACTIONS(1171), 1, + anon_sym_LBRACE, + STATE(168), 1, + aux_sym__text, + STATE(541), 1, + sym_inline_attribute, + STATE(542), 1, + sym__curly_bracket_span_fallback, + STATE(944), 1, + sym__curly_bracket_span_begin, + ACTIONS(1157), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1155), 30, + sym__verbatim_begin, + sym_emphasis_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + sym__whitespace1, + sym__newline, + [385] = 7, + ACTIONS(1173), 1, + anon_sym_LBRACE, + STATE(178), 1, + aux_sym__text, + STATE(558), 1, + sym__curly_bracket_span_fallback, + STATE(562), 1, + sym_inline_attribute, + STATE(1009), 1, + sym__curly_bracket_span_begin, + ACTIONS(1157), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1155), 30, + sym__verbatim_begin, + sym_highlighted_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + sym__whitespace1, + sym__newline, + [440] = 7, + ACTIONS(1175), 1, + anon_sym_LBRACE, + STATE(190), 1, + aux_sym__text, + STATE(576), 1, + sym_inline_attribute, + STATE(582), 1, + sym__curly_bracket_span_fallback, + STATE(993), 1, + sym__curly_bracket_span_begin, + ACTIONS(1157), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1155), 30, + sym__verbatim_begin, + sym_subscript_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + sym__whitespace1, + sym__newline, + [495] = 7, + ACTIONS(1177), 1, + anon_sym_LBRACE, + STATE(214), 1, + aux_sym__text, + STATE(566), 1, + sym__curly_bracket_span_fallback, + STATE(595), 1, + sym_inline_attribute, + STATE(961), 1, + sym__curly_bracket_span_begin, + ACTIONS(1157), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1155), 30, + sym__verbatim_begin, + sym_strong_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + sym__whitespace1, + sym__newline, + [550] = 6, + ACTIONS(1177), 1, + anon_sym_LBRACE, + STATE(566), 1, + sym__curly_bracket_span_fallback, + STATE(595), 1, + sym_inline_attribute, + STATE(961), 1, + sym__curly_bracket_span_begin, + ACTIONS(1157), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1155), 30, + sym__verbatim_begin, + sym_strong_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + sym__whitespace1, + sym__newline, + [602] = 5, + ACTIONS(1169), 1, + anon_sym_LBRACE, + STATE(1041), 1, + sym__curly_bracket_span_begin, + STATE(540), 2, + sym_inline_attribute, + sym__curly_bracket_span_fallback, + ACTIONS(1181), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1179), 30, + sym__verbatim_begin, + sym_delete_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + sym__whitespace1, + sym__newline, + [652] = 5, + ACTIONS(1161), 1, + anon_sym_LBRACE, + STATE(977), 1, + sym__curly_bracket_span_begin, + STATE(519), 2, + sym_inline_attribute, + sym__curly_bracket_span_fallback, + ACTIONS(1181), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1179), 30, + sym__verbatim_begin, + sym_superscript_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + sym__whitespace1, + sym__newline, + [702] = 6, + ACTIONS(1175), 1, + anon_sym_LBRACE, + STATE(576), 1, + sym_inline_attribute, + STATE(582), 1, + sym__curly_bracket_span_fallback, + STATE(993), 1, + sym__curly_bracket_span_begin, + ACTIONS(1157), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1155), 30, + sym__verbatim_begin, + sym_subscript_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + sym__whitespace1, + sym__newline, + [754] = 5, + ACTIONS(1159), 1, + anon_sym_LBRACE, + STATE(1057), 1, + sym__curly_bracket_span_begin, + STATE(526), 2, + sym_inline_attribute, + sym__curly_bracket_span_fallback, + ACTIONS(1181), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1179), 30, + sym__verbatim_begin, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + sym__whitespace1, + sym__newline, + [804] = 5, + ACTIONS(1175), 1, + anon_sym_LBRACE, + STATE(993), 1, + sym__curly_bracket_span_begin, + STATE(576), 2, + sym_inline_attribute, + sym__curly_bracket_span_fallback, + ACTIONS(1181), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1179), 30, + sym__verbatim_begin, + sym_subscript_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + sym__whitespace1, + sym__newline, + [854] = 5, + ACTIONS(1177), 1, + anon_sym_LBRACE, + STATE(961), 1, + sym__curly_bracket_span_begin, + STATE(595), 2, + sym_inline_attribute, + sym__curly_bracket_span_fallback, + ACTIONS(1181), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1179), 30, + sym__verbatim_begin, + sym_strong_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + sym__whitespace1, + sym__newline, + [904] = 6, + ACTIONS(1159), 1, + anon_sym_LBRACE, + STATE(525), 1, + sym__curly_bracket_span_fallback, + STATE(526), 1, + sym_inline_attribute, + STATE(1057), 1, + sym__curly_bracket_span_begin, + ACTIONS(1157), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1155), 30, + sym__verbatim_begin, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + sym__whitespace1, + sym__newline, + [956] = 6, + ACTIONS(1163), 1, + anon_sym_LBRACE, + STATE(523), 1, + sym_inline_attribute, + STATE(524), 1, + sym__curly_bracket_span_fallback, + STATE(1073), 1, + sym__curly_bracket_span_begin, + ACTIONS(1157), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1155), 30, + sym__verbatim_begin, + sym__square_bracket_span_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + sym__whitespace1, + sym__newline, + [1008] = 6, + ACTIONS(1161), 1, anon_sym_LBRACE, - STATE(170), 1, - aux_sym__text, - STATE(1043), 1, - sym__curly_bracket_span_begin, - STATE(518), 2, + STATE(519), 1, sym_inline_attribute, + STATE(520), 1, sym__curly_bracket_span_fallback, + STATE(977), 1, + sym__curly_bracket_span_begin, ACTIONS(1157), 5, anon_sym_BSLASH, sym_en_dash, @@ -14791,7 +15723,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__text_token1, ACTIONS(1155), 30, sym__verbatim_begin, - ts_builtin_sym_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -14820,16 +15752,60 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [53] = 6, - ACTIONS(1161), 1, + [1060] = 5, + ACTIONS(1167), 1, anon_sym_LBRACE, - STATE(154), 1, - aux_sym__text, - STATE(971), 1, + STATE(1065), 1, sym__curly_bracket_span_begin, - STATE(557), 2, + STATE(521), 2, sym_inline_attribute, sym__curly_bracket_span_fallback, + ACTIONS(1181), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1179), 30, + sym__verbatim_begin, + ts_builtin_sym_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + sym__whitespace1, + sym__newline, + [1110] = 6, + ACTIONS(1169), 1, + anon_sym_LBRACE, + STATE(538), 1, + sym__curly_bracket_span_fallback, + STATE(540), 1, + sym_inline_attribute, + STATE(1041), 1, + sym__curly_bracket_span_begin, ACTIONS(1157), 5, anon_sym_BSLASH, sym_en_dash, @@ -14838,7 +15814,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__text_token1, ACTIONS(1155), 30, sym__verbatim_begin, - sym_subscript_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -14867,16 +15843,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [106] = 6, - ACTIONS(1163), 1, + [1162] = 6, + ACTIONS(1171), 1, anon_sym_LBRACE, - STATE(162), 1, - aux_sym__text, - STATE(1003), 1, - sym__curly_bracket_span_begin, - STATE(534), 2, + STATE(541), 1, sym_inline_attribute, + STATE(542), 1, sym__curly_bracket_span_fallback, + STATE(944), 1, + sym__curly_bracket_span_begin, ACTIONS(1157), 5, anon_sym_BSLASH, sym_en_dash, @@ -14885,7 +15860,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__text_token1, ACTIONS(1155), 30, sym__verbatim_begin, - sym_insert_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -14914,16 +15889,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [159] = 6, - ACTIONS(1165), 1, + [1214] = 6, + ACTIONS(1173), 1, anon_sym_LBRACE, - STATE(203), 1, - aux_sym__text, - STATE(1051), 1, - sym__curly_bracket_span_begin, - STATE(504), 2, - sym_inline_attribute, + STATE(558), 1, sym__curly_bracket_span_fallback, + STATE(562), 1, + sym_inline_attribute, + STATE(1009), 1, + sym__curly_bracket_span_begin, ACTIONS(1157), 5, anon_sym_BSLASH, sym_en_dash, @@ -14932,7 +15906,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__text_token1, ACTIONS(1155), 30, sym__verbatim_begin, - sym__square_bracket_span_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -14961,16 +15935,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [212] = 6, - ACTIONS(1167), 1, + [1266] = 6, + ACTIONS(1165), 1, anon_sym_LBRACE, - STATE(164), 1, - aux_sym__text, - STATE(922), 1, - sym__curly_bracket_span_begin, - STATE(527), 2, - sym_inline_attribute, + STATE(548), 1, sym__curly_bracket_span_fallback, + STATE(549), 1, + sym_inline_attribute, + STATE(1025), 1, + sym__curly_bracket_span_begin, ACTIONS(1157), 5, anon_sym_BSLASH, sym_en_dash, @@ -14979,7 +15952,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__text_token1, ACTIONS(1155), 30, sym__verbatim_begin, - sym_emphasis_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15008,25 +15981,23 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [265] = 6, - ACTIONS(1169), 1, + [1318] = 5, + ACTIONS(1173), 1, anon_sym_LBRACE, - STATE(198), 1, - aux_sym__text, - STATE(955), 1, + STATE(1009), 1, sym__curly_bracket_span_begin, - STATE(517), 2, + STATE(562), 2, sym_inline_attribute, sym__curly_bracket_span_fallback, - ACTIONS(1157), 5, + ACTIONS(1181), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1155), 30, + ACTIONS(1179), 30, sym__verbatim_begin, - sym_superscript_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15055,25 +16026,23 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [318] = 6, - ACTIONS(1171), 1, + [1368] = 5, + ACTIONS(1165), 1, anon_sym_LBRACE, - STATE(208), 1, - aux_sym__text, - STATE(939), 1, + STATE(1025), 1, sym__curly_bracket_span_begin, - STATE(502), 2, + STATE(549), 2, sym_inline_attribute, sym__curly_bracket_span_fallback, - ACTIONS(1157), 5, + ACTIONS(1181), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1155), 30, + ACTIONS(1179), 30, sym__verbatim_begin, - sym_strong_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15102,24 +16071,23 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [371] = 6, - ACTIONS(1173), 1, + [1418] = 5, + ACTIONS(1163), 1, anon_sym_LBRACE, - STATE(205), 1, - aux_sym__text, - STATE(1035), 1, + STATE(1073), 1, sym__curly_bracket_span_begin, - STATE(513), 2, + STATE(523), 2, sym_inline_attribute, sym__curly_bracket_span_fallback, - ACTIONS(1157), 5, + ACTIONS(1181), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1155), 30, + ACTIONS(1179), 30, sym__verbatim_begin, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15138,7 +16106,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -15149,25 +16116,23 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [424] = 6, - ACTIONS(1175), 1, + [1468] = 5, + ACTIONS(1171), 1, anon_sym_LBRACE, - STATE(169), 1, - aux_sym__text, - STATE(1019), 1, + STATE(944), 1, sym__curly_bracket_span_begin, - STATE(525), 2, + STATE(541), 2, sym_inline_attribute, sym__curly_bracket_span_fallback, - ACTIONS(1157), 5, + ACTIONS(1181), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1155), 30, + ACTIONS(1179), 30, sym__verbatim_begin, - sym_delete_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15196,16 +16161,62 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [477] = 6, - ACTIONS(1177), 1, + [1518] = 7, + ACTIONS(1183), 1, anon_sym_LBRACE, - STATE(171), 1, + STATE(331), 1, aux_sym__text, - STATE(987), 1, + STATE(605), 1, + sym_inline_attribute, + STATE(606), 1, + sym__curly_bracket_span_fallback, + STATE(1089), 1, sym__curly_bracket_span_begin, - STATE(576), 2, + ACTIONS(1157), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1155), 29, + sym__verbatim_begin, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + sym__whitespace1, + sym__newline, + [1572] = 6, + ACTIONS(1167), 1, + anon_sym_LBRACE, + STATE(521), 1, sym_inline_attribute, + STATE(522), 1, sym__curly_bracket_span_fallback, + STATE(1065), 1, + sym__curly_bracket_span_begin, ACTIONS(1157), 5, anon_sym_BSLASH, sym_en_dash, @@ -15214,7 +16225,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__text_token1, ACTIONS(1155), 30, sym__verbatim_begin, - sym_highlighted_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15243,23 +16254,109 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [530] = 5, - ACTIONS(1163), 1, + [1624] = 5, + ACTIONS(1183), 1, anon_sym_LBRACE, - STATE(1003), 1, + STATE(1089), 1, sym__curly_bracket_span_begin, - STATE(534), 2, + STATE(605), 2, sym_inline_attribute, sym__curly_bracket_span_fallback, - ACTIONS(1157), 5, + ACTIONS(1181), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1179), 29, + sym__verbatim_begin, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + sym__whitespace1, + sym__newline, + [1673] = 4, + ACTIONS(1189), 1, + anon_sym_LBRACE_EQ2, + STATE(495), 1, + sym_raw_inline_attribute, + ACTIONS(1187), 7, + anon_sym_LBRACE_EQ, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE, + aux_sym__text_token1, + ACTIONS(1185), 29, + sym__verbatim_begin, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + sym__whitespace1, + sym__newline, + [1720] = 4, + ACTIONS(1191), 1, + anon_sym_LBRACE_EQ2, + STATE(435), 1, + sym_raw_inline_attribute, + ACTIONS(1187), 7, + anon_sym_LBRACE_EQ, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1155), 30, + ACTIONS(1185), 29, sym__verbatim_begin, - sym_insert_end, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15268,7 +16365,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, - anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -15288,22 +16384,22 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [580] = 5, - ACTIONS(1173), 1, - anon_sym_LBRACE, - STATE(1035), 1, - sym__curly_bracket_span_begin, - STATE(513), 2, - sym_inline_attribute, - sym__curly_bracket_span_fallback, - ACTIONS(1157), 5, + [1767] = 4, + ACTIONS(1193), 1, + anon_sym_LBRACE_EQ2, + STATE(232), 1, + sym_raw_inline_attribute, + ACTIONS(1187), 7, + anon_sym_LBRACE_EQ, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1155), 30, + ACTIONS(1185), 29, sym__verbatim_begin, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15312,7 +16408,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, - anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -15322,7 +16417,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -15333,23 +16427,22 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [630] = 5, - ACTIONS(1175), 1, - anon_sym_LBRACE, - STATE(1019), 1, - sym__curly_bracket_span_begin, - STATE(525), 2, - sym_inline_attribute, - sym__curly_bracket_span_fallback, - ACTIONS(1157), 5, + [1814] = 4, + ACTIONS(1195), 1, + anon_sym_LBRACE_EQ2, + STATE(358), 1, + sym_raw_inline_attribute, + ACTIONS(1187), 7, + anon_sym_LBRACE_EQ, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1155), 30, + ACTIONS(1185), 29, sym__verbatim_begin, - sym_delete_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15358,7 +16451,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, - anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -15378,16 +16470,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [680] = 6, - ACTIONS(1179), 1, + [1861] = 6, + ACTIONS(1183), 1, anon_sym_LBRACE, - STATE(344), 1, - aux_sym__text, - STATE(1067), 1, - sym__curly_bracket_span_begin, - STATE(586), 2, + STATE(605), 1, sym_inline_attribute, + STATE(606), 1, sym__curly_bracket_span_fallback, + STATE(1089), 1, + sym__curly_bracket_span_begin, ACTIONS(1157), 5, anon_sym_BSLASH, sym_en_dash, @@ -15424,23 +16515,22 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [732] = 5, - ACTIONS(1159), 1, - anon_sym_LBRACE, - STATE(1043), 1, - sym__curly_bracket_span_begin, - STATE(518), 2, - sym_inline_attribute, - sym__curly_bracket_span_fallback, - ACTIONS(1157), 5, + [1912] = 4, + ACTIONS(1197), 1, + anon_sym_LBRACE_EQ2, + STATE(450), 1, + sym_raw_inline_attribute, + ACTIONS(1187), 7, + anon_sym_LBRACE_EQ, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1155), 30, + ACTIONS(1185), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15449,7 +16539,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, - anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -15469,23 +16558,22 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [782] = 5, - ACTIONS(1177), 1, - anon_sym_LBRACE, - STATE(987), 1, - sym__curly_bracket_span_begin, - STATE(576), 2, - sym_inline_attribute, - sym__curly_bracket_span_fallback, - ACTIONS(1157), 5, + [1959] = 4, + ACTIONS(1199), 1, + anon_sym_LBRACE_EQ2, + STATE(312), 1, + sym_raw_inline_attribute, + ACTIONS(1187), 7, + anon_sym_LBRACE_EQ, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1155), 30, + ACTIONS(1185), 29, sym__verbatim_begin, - sym_highlighted_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15494,7 +16582,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, - anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -15514,23 +16601,22 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [832] = 5, - ACTIONS(1161), 1, - anon_sym_LBRACE, - STATE(971), 1, - sym__curly_bracket_span_begin, - STATE(557), 2, - sym_inline_attribute, - sym__curly_bracket_span_fallback, - ACTIONS(1157), 5, + [2006] = 4, + ACTIONS(1201), 1, + anon_sym_LBRACE_EQ2, + STATE(266), 1, + sym_raw_inline_attribute, + ACTIONS(1187), 7, + anon_sym_LBRACE_EQ, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1155), 30, + ACTIONS(1185), 29, sym__verbatim_begin, - sym_subscript_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15539,7 +16625,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, - anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -15559,23 +16644,22 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [882] = 5, - ACTIONS(1171), 1, - anon_sym_LBRACE, - STATE(939), 1, - sym__curly_bracket_span_begin, - STATE(502), 2, - sym_inline_attribute, - sym__curly_bracket_span_fallback, - ACTIONS(1157), 5, + [2053] = 4, + ACTIONS(1203), 1, + anon_sym_LBRACE_EQ2, + STATE(404), 1, + sym_raw_inline_attribute, + ACTIONS(1187), 7, + anon_sym_LBRACE_EQ, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1155), 30, + ACTIONS(1185), 29, sym__verbatim_begin, - sym_strong_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15584,7 +16668,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, - anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -15604,23 +16687,22 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [932] = 5, - ACTIONS(1169), 1, - anon_sym_LBRACE, - STATE(955), 1, - sym__curly_bracket_span_begin, - STATE(517), 2, - sym_inline_attribute, - sym__curly_bracket_span_fallback, - ACTIONS(1157), 5, + [2100] = 4, + ACTIONS(1205), 1, + anon_sym_LBRACE_EQ2, + STATE(383), 1, + sym_raw_inline_attribute, + ACTIONS(1187), 7, + anon_sym_LBRACE_EQ, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1155), 30, + ACTIONS(1185), 29, sym__verbatim_begin, - sym_superscript_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15629,7 +16711,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, - anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -15649,23 +16730,22 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [982] = 5, - ACTIONS(1165), 1, - anon_sym_LBRACE, - STATE(1051), 1, - sym__curly_bracket_span_begin, - STATE(504), 2, - sym_inline_attribute, - sym__curly_bracket_span_fallback, - ACTIONS(1157), 5, + [2147] = 4, + ACTIONS(1207), 1, + anon_sym_LBRACE_EQ2, + STATE(307), 1, + sym_raw_inline_attribute, + ACTIONS(1187), 7, + anon_sym_LBRACE_EQ, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1155), 30, + ACTIONS(1185), 29, sym__verbatim_begin, - sym__square_bracket_span_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15674,7 +16754,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, - anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -15694,23 +16773,20 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [1032] = 5, - ACTIONS(1167), 1, - anon_sym_LBRACE, - STATE(922), 1, - sym__curly_bracket_span_begin, - STATE(527), 2, - sym_inline_attribute, - sym__curly_bracket_span_fallback, - ACTIONS(1157), 5, + [2194] = 4, + ACTIONS(1213), 1, + aux_sym__text_token1, + STATE(164), 1, + aux_sym__text, + ACTIONS(1211), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - aux_sym__text_token1, - ACTIONS(1155), 30, + anon_sym_LBRACE, + ACTIONS(1209), 30, sym__verbatim_begin, - sym_emphasis_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15739,22 +16815,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [1082] = 4, - ACTIONS(1185), 1, - anon_sym_LBRACE_EQ2, - STATE(346), 1, - sym_raw_inline_attribute, - ACTIONS(1183), 7, - anon_sym_LBRACE_EQ, + [2240] = 3, + ACTIONS(1220), 1, + sym__non_whitespace_check, + ACTIONS(1218), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1181), 29, + ACTIONS(1216), 30, sym__verbatim_begin, - sym_highlighted_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15763,6 +16836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, + anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -15782,22 +16856,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [1129] = 5, - ACTIONS(1179), 1, - anon_sym_LBRACE, - STATE(1067), 1, - sym__curly_bracket_span_begin, - STATE(586), 2, - sym_inline_attribute, - sym__curly_bracket_span_fallback, - ACTIONS(1157), 5, + [2284] = 3, + ACTIONS(1226), 1, + anon_sym_GT, + ACTIONS(1224), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1155), 29, + ACTIONS(1222), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15826,22 +16897,20 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [1178] = 4, - ACTIONS(1187), 1, - anon_sym_LBRACE_EQ2, - STATE(451), 1, - sym_raw_inline_attribute, - ACTIONS(1183), 7, - anon_sym_LBRACE_EQ, + [2328] = 4, + ACTIONS(1228), 1, + aux_sym__text_token1, + STATE(167), 1, + aux_sym__text, + ACTIONS(1211), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, - aux_sym__text_token1, - ACTIONS(1181), 29, + ACTIONS(1209), 30, sym__verbatim_begin, - sym__square_bracket_span_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15850,6 +16919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, + anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -15869,22 +16939,20 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [1225] = 4, - ACTIONS(1189), 1, - anon_sym_LBRACE_EQ2, - STATE(390), 1, - sym_raw_inline_attribute, - ACTIONS(1183), 7, - anon_sym_LBRACE_EQ, + [2374] = 4, + ACTIONS(1231), 1, + aux_sym__text_token1, + STATE(168), 1, + aux_sym__text, + ACTIONS(1211), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, - aux_sym__text_token1, - ACTIONS(1181), 29, + ACTIONS(1209), 30, sym__verbatim_begin, - sym_insert_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15893,6 +16961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, + anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -15912,21 +16981,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [1272] = 4, - ACTIONS(1191), 1, - anon_sym_LBRACE_EQ2, - STATE(477), 1, - sym_raw_inline_attribute, - ACTIONS(1183), 7, - anon_sym_LBRACE_EQ, + [2420] = 3, + ACTIONS(1234), 1, + anon_sym_GT, + ACTIONS(1224), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1181), 29, + ACTIONS(1222), 30, sym__verbatim_begin, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15935,6 +17002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, + anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -15944,7 +17012,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -15955,22 +17022,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [1319] = 4, - ACTIONS(1193), 1, - anon_sym_LBRACE_EQ2, - STATE(302), 1, - sym_raw_inline_attribute, - ACTIONS(1183), 7, - anon_sym_LBRACE_EQ, + [2464] = 3, + ACTIONS(1236), 1, + sym__non_whitespace_check, + ACTIONS(1218), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1181), 29, + ACTIONS(1216), 30, sym__verbatim_begin, - sym_subscript_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15979,6 +17043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, + anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -15998,22 +17063,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [1366] = 4, - ACTIONS(1195), 1, - anon_sym_LBRACE_EQ2, - STATE(434), 1, - sym_raw_inline_attribute, - ACTIONS(1183), 7, - anon_sym_LBRACE_EQ, + [2508] = 3, + ACTIONS(1238), 1, + anon_sym_GT, + ACTIONS(1224), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1181), 29, + ACTIONS(1222), 30, sym__verbatim_begin, - sym_delete_end, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16022,6 +17084,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, + anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -16041,22 +17104,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [1413] = 4, - ACTIONS(1197), 1, - anon_sym_LBRACE_EQ2, - STATE(275), 1, - sym_raw_inline_attribute, - ACTIONS(1183), 7, - anon_sym_LBRACE_EQ, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE, - aux_sym__text_token1, - ACTIONS(1181), 29, + [2552] = 3, + ACTIONS(1240), 1, + aux_sym_autolink_token1, + ACTIONS(1216), 4, sym__verbatim_begin, - sym_emphasis_end, + sym_insert_end, + sym__whitespace1, + sym__newline, + ACTIONS(1218), 32, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16065,15 +17121,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, + anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, + sym_en_dash, + sym_backslash_escape, anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -16082,24 +17144,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - sym__whitespace1, - sym__newline, - [1460] = 4, - ACTIONS(1199), 1, - anon_sym_LBRACE_EQ2, - STATE(258), 1, - sym_raw_inline_attribute, - ACTIONS(1183), 7, - anon_sym_LBRACE_EQ, + aux_sym__text_token1, + [2596] = 4, + ACTIONS(1246), 1, + anon_sym_LBRACE, + STATE(437), 1, + sym_comment, + ACTIONS(1244), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1181), 29, + ACTIONS(1242), 30, sym__verbatim_begin, - sym_superscript_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16108,6 +17167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, + anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -16127,22 +17187,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [1507] = 4, - ACTIONS(1201), 1, - anon_sym_LBRACE_EQ2, - STATE(225), 1, - sym_raw_inline_attribute, - ACTIONS(1183), 7, - anon_sym_LBRACE_EQ, + [2642] = 3, + ACTIONS(1248), 1, + sym__non_whitespace_check, + ACTIONS(1218), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1181), 29, + ACTIONS(1216), 30, sym__verbatim_begin, - sym_strong_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16151,6 +17208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, + anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -16170,22 +17228,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [1554] = 4, - ACTIONS(1203), 1, - anon_sym_LBRACE_EQ2, - STATE(300), 1, - sym_raw_inline_attribute, - ACTIONS(1183), 7, - anon_sym_LBRACE_EQ, + [2686] = 3, + ACTIONS(1250), 1, + sym__non_whitespace_check, + ACTIONS(1218), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1181), 29, + ACTIONS(1216), 30, sym__verbatim_begin, - ts_builtin_sym_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16194,6 +17249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, + anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -16213,15 +17269,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [1601] = 3, - ACTIONS(1207), 1, + [2730] = 3, + ACTIONS(1252), 1, aux_sym_autolink_token1, - ACTIONS(1209), 4, + ACTIONS(1216), 4, sym__verbatim_begin, - sym__square_bracket_span_end, + sym_delete_end, sym__whitespace1, sym__newline, - ACTIONS(1205), 32, + ACTIONS(1218), 32, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16254,20 +17310,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, aux_sym__text_token1, - [1645] = 4, - ACTIONS(1215), 1, - aux_sym__text_token1, - STATE(154), 1, - aux_sym__text, - ACTIONS(1213), 5, + [2774] = 3, + ACTIONS(1254), 1, + anon_sym_GT, + ACTIONS(1224), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(1211), 30, + aux_sym__text_token1, + ACTIONS(1222), 30, sym__verbatim_begin, - sym_subscript_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16296,19 +17351,20 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [1691] = 3, - ACTIONS(1218), 1, - sym__non_whitespace_check, - ACTIONS(1205), 6, + [2818] = 4, + ACTIONS(1256), 1, + aux_sym__text_token1, + STATE(178), 1, + aux_sym__text, + ACTIONS(1211), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, - aux_sym__text_token1, ACTIONS(1209), 30, sym__verbatim_begin, - ts_builtin_sym_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16337,15 +17393,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [1735] = 3, - ACTIONS(1220), 1, - aux_sym_autolink_token1, - ACTIONS(1209), 4, + [2864] = 3, + ACTIONS(1259), 1, + anon_sym_GT, + ACTIONS(1224), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE, + aux_sym__text_token1, + ACTIONS(1222), 30, sym__verbatim_begin, - sym_superscript_end, - sym__whitespace1, - sym__newline, - ACTIONS(1205), 32, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16357,18 +17417,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, - sym_en_dash, - sym_backslash_escape, anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -16377,19 +17432,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - aux_sym__text_token1, - [1779] = 4, - ACTIONS(1226), 1, - anon_sym_LBRACE, - STATE(464), 1, - sym_comment, - ACTIONS(1224), 5, + sym__whitespace1, + sym__newline, + [2908] = 4, + ACTIONS(1261), 1, + anon_sym_LBRACE_EQ2, + STATE(581), 1, + sym_raw_inline_attribute, + ACTIONS(1187), 7, + anon_sym_LBRACE_EQ, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1222), 30, + ACTIONS(1185), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -16399,7 +17457,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, - anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -16409,7 +17466,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -16420,15 +17476,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [1825] = 3, - ACTIONS(1228), 1, - aux_sym_autolink_token1, - ACTIONS(1209), 4, + [2954] = 4, + ACTIONS(1263), 1, + anon_sym_LBRACE, + STATE(482), 1, + sym_comment, + ACTIONS(1244), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1242), 30, sym__verbatim_begin, - sym_delete_end, - sym__whitespace1, - sym__newline, - ACTIONS(1205), 32, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16440,18 +17500,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, - sym_en_dash, - sym_backslash_escape, anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -16460,20 +17516,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - aux_sym__text_token1, - [1869] = 3, - ACTIONS(1234), 1, + sym__whitespace1, + sym__newline, + [3000] = 3, + ACTIONS(1265), 1, anon_sym_GT, - ACTIONS(1232), 6, + ACTIONS(1224), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1230), 30, + ACTIONS(1222), 30, sym__verbatim_begin, - sym_emphasis_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16502,19 +17559,20 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [1913] = 3, - ACTIONS(1236), 1, - sym__non_whitespace_check, - ACTIONS(1205), 6, + [3044] = 4, + ACTIONS(1267), 1, + anon_sym_LBRACE, + STATE(391), 1, + sym_comment, + ACTIONS(1244), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1209), 30, + ACTIONS(1242), 30, sym__verbatim_begin, - sym_delete_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16543,19 +17601,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [1957] = 3, - ACTIONS(1238), 1, - sym__non_whitespace_check, - ACTIONS(1205), 6, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE, - aux_sym__text_token1, - ACTIONS(1209), 30, + [3090] = 3, + ACTIONS(1269), 1, + aux_sym_autolink_token1, + ACTIONS(1216), 4, sym__verbatim_begin, - sym_delete_end, + sym_highlighted_end, + sym__whitespace1, + sym__newline, + ACTIONS(1218), 32, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16567,13 +17621,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, + sym_en_dash, + sym_backslash_escape, anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -16582,22 +17641,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - sym__whitespace1, - sym__newline, - [2001] = 4, - ACTIONS(1240), 1, aux_sym__text_token1, - STATE(162), 1, + [3134] = 4, + ACTIONS(1271), 1, + aux_sym__text_token1, + STATE(185), 1, aux_sym__text, - ACTIONS(1213), 5, + ACTIONS(1211), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(1211), 30, + ACTIONS(1209), 30, sym__verbatim_begin, - sym_insert_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16626,19 +17684,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [2047] = 3, - ACTIONS(1243), 1, - anon_sym_GT, - ACTIONS(1232), 6, + [3180] = 3, + ACTIONS(1274), 1, + sym__non_whitespace_check, + ACTIONS(1218), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1230), 30, + ACTIONS(1216), 30, sym__verbatim_begin, - sym_insert_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16667,20 +17725,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [2091] = 4, - ACTIONS(1245), 1, - aux_sym__text_token1, - STATE(164), 1, - aux_sym__text, - ACTIONS(1213), 5, + [3224] = 3, + ACTIONS(1276), 1, + sym__non_whitespace_check, + ACTIONS(1218), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(1211), 30, + aux_sym__text_token1, + ACTIONS(1216), 30, sym__verbatim_begin, - sym_emphasis_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16709,15 +17766,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [2137] = 3, - ACTIONS(1248), 1, + [3268] = 3, + ACTIONS(1278), 1, aux_sym_autolink_token1, - ACTIONS(1209), 4, + ACTIONS(1216), 4, sym__verbatim_begin, - sym_insert_end, + sym_emphasis_end, sym__whitespace1, sym__newline, - ACTIONS(1205), 32, + ACTIONS(1218), 32, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16750,19 +17807,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, aux_sym__text_token1, - [2181] = 3, - ACTIONS(1250), 1, + [3312] = 3, + ACTIONS(1280), 1, sym__non_whitespace_check, - ACTIONS(1205), 6, + ACTIONS(1218), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1209), 30, + ACTIONS(1216), 30, sym__verbatim_begin, - sym__square_bracket_span_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16791,19 +17848,20 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [2225] = 3, - ACTIONS(1252), 1, - sym__non_whitespace_check, - ACTIONS(1205), 6, + [3356] = 4, + ACTIONS(1282), 1, + aux_sym__text_token1, + STATE(190), 1, + aux_sym__text, + ACTIONS(1211), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, - aux_sym__text_token1, ACTIONS(1209), 30, sym__verbatim_begin, - sym_insert_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16832,19 +17890,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [2269] = 3, - ACTIONS(1254), 1, + [3402] = 3, + ACTIONS(1285), 1, sym__non_whitespace_check, - ACTIONS(1205), 6, + ACTIONS(1218), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1209), 30, + ACTIONS(1216), 30, sym__verbatim_begin, - sym_insert_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16873,20 +17931,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [2313] = 4, - ACTIONS(1256), 1, - aux_sym__text_token1, - STATE(169), 1, - aux_sym__text, - ACTIONS(1213), 5, + [3446] = 3, + ACTIONS(1287), 1, + sym__non_whitespace_check, + ACTIONS(1218), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(1211), 30, + aux_sym__text_token1, + ACTIONS(1216), 30, sym__verbatim_begin, - sym_delete_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16915,20 +17972,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [2359] = 4, - ACTIONS(1259), 1, - aux_sym__text_token1, - STATE(170), 1, - aux_sym__text, - ACTIONS(1213), 5, + [3490] = 3, + ACTIONS(1289), 1, + sym__non_whitespace_check, + ACTIONS(1218), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(1211), 30, + aux_sym__text_token1, + ACTIONS(1216), 30, sym__verbatim_begin, - ts_builtin_sym_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16957,20 +18013,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [2405] = 4, - ACTIONS(1262), 1, - aux_sym__text_token1, - STATE(171), 1, - aux_sym__text, - ACTIONS(1213), 5, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE, - ACTIONS(1211), 30, + [3534] = 3, + ACTIONS(1291), 1, + aux_sym_autolink_token1, + ACTIONS(1216), 4, sym__verbatim_begin, - sym_highlighted_end, + sym_strong_end, + sym__whitespace1, + sym__newline, + ACTIONS(1218), 32, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16982,13 +18033,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, + sym_en_dash, + sym_backslash_escape, anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -16997,21 +18053,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - sym__whitespace1, - sym__newline, - [2451] = 3, - ACTIONS(1265), 1, + aux_sym__text_token1, + [3578] = 3, + ACTIONS(1293), 1, anon_sym_GT, - ACTIONS(1232), 6, + ACTIONS(1224), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1230), 30, + ACTIONS(1222), 30, sym__verbatim_begin, - sym_highlighted_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17040,60 +18095,20 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [2495] = 3, - ACTIONS(1267), 1, - aux_sym_autolink_token1, - ACTIONS(1209), 4, - sym__verbatim_begin, - sym_emphasis_end, - sym__whitespace1, - sym__newline, - ACTIONS(1205), 32, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - anon_sym_BSLASH, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - sym_en_dash, - sym_backslash_escape, - anon_sym_LT, - sym_symbol, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_LBRACK, + [3622] = 4, + ACTIONS(1295), 1, anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - aux_sym__text_token1, - [2539] = 3, - ACTIONS(1269), 1, - sym__non_whitespace_check, - ACTIONS(1205), 6, + STATE(264), 1, + sym_comment, + ACTIONS(1244), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1209), 30, + ACTIONS(1242), 30, sym__verbatim_begin, - sym_emphasis_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17122,20 +18137,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [2583] = 4, - ACTIONS(1271), 1, - anon_sym_LBRACE, - STATE(377), 1, - sym_comment, - ACTIONS(1224), 5, + [3668] = 3, + ACTIONS(1297), 1, + sym__non_whitespace_check, + ACTIONS(1218), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1222), 30, + ACTIONS(1216), 30, sym__verbatim_begin, - sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17154,6 +18167,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -17164,15 +18178,20 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [2629] = 3, - ACTIONS(1273), 1, - aux_sym_autolink_token1, - ACTIONS(1209), 4, + [3712] = 4, + ACTIONS(1299), 1, + anon_sym_LBRACE, + STATE(256), 1, + sym_comment, + ACTIONS(1244), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1242), 30, sym__verbatim_begin, - sym_highlighted_end, - sym__whitespace1, - sym__newline, - ACTIONS(1205), 32, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17184,18 +18203,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, - sym_en_dash, - sym_backslash_escape, anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -17204,20 +18218,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - aux_sym__text_token1, - [2673] = 3, - ACTIONS(1275), 1, + sym__whitespace1, + sym__newline, + [3758] = 3, + ACTIONS(1301), 1, sym__non_whitespace_check, - ACTIONS(1205), 6, + ACTIONS(1218), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1209), 30, + ACTIONS(1216), 30, sym__verbatim_begin, - sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17236,6 +18250,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -17246,19 +18261,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [2717] = 3, - ACTIONS(1277), 1, - sym__non_whitespace_check, - ACTIONS(1205), 6, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE, - aux_sym__text_token1, - ACTIONS(1209), 30, + [3802] = 3, + ACTIONS(1303), 1, + aux_sym_autolink_token1, + ACTIONS(1216), 3, sym__verbatim_begin, - sym_highlighted_end, + sym__whitespace1, + sym__newline, + ACTIONS(1218), 33, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17270,13 +18280,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, + sym_en_dash, + sym_backslash_escape, anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -17285,21 +18301,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - sym__whitespace1, - sym__newline, - [2761] = 3, - ACTIONS(1279), 1, - sym__non_whitespace_check, - ACTIONS(1205), 6, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1209), 30, + [3846] = 3, + ACTIONS(1305), 1, + aux_sym_autolink_token1, + ACTIONS(1216), 4, sym__verbatim_begin, - sym_highlighted_end, + ts_builtin_sym_end, + sym__whitespace1, + sym__newline, + ACTIONS(1218), 32, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17311,13 +18322,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, + sym_en_dash, + sym_backslash_escape, anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -17326,23 +18342,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - sym__whitespace1, - sym__newline, - [2805] = 4, - ACTIONS(1281), 1, - anon_sym_LBRACE_EQ2, - STATE(559), 1, - sym_raw_inline_attribute, - ACTIONS(1183), 7, - anon_sym_LBRACE_EQ, + aux_sym__text_token1, + [3890] = 3, + ACTIONS(1307), 1, + sym__non_whitespace_check, + ACTIONS(1218), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1181), 28, + ACTIONS(1216), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17351,6 +18364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, + anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -17370,19 +18384,20 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [2851] = 3, - ACTIONS(1283), 1, - anon_sym_GT, - ACTIONS(1232), 6, + [3934] = 4, + ACTIONS(1309), 1, + anon_sym_LBRACE, + STATE(345), 1, + sym_comment, + ACTIONS(1244), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1230), 30, + ACTIONS(1242), 30, sym__verbatim_begin, - ts_builtin_sym_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17411,19 +18426,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [2895] = 3, - ACTIONS(1285), 1, - anon_sym_GT, - ACTIONS(1232), 6, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE, - aux_sym__text_token1, - ACTIONS(1230), 30, + [3980] = 3, + ACTIONS(1311), 1, + aux_sym_autolink_token1, + ACTIONS(1216), 4, sym__verbatim_begin, - sym_delete_end, + sym_subscript_end, + sym__whitespace1, + sym__newline, + ACTIONS(1218), 32, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17435,13 +18446,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, + sym_en_dash, + sym_backslash_escape, anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -17450,21 +18466,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - sym__whitespace1, - sym__newline, - [2939] = 3, - ACTIONS(1287), 1, - anon_sym_GT, - ACTIONS(1232), 6, + aux_sym__text_token1, + [4024] = 4, + ACTIONS(1313), 1, + anon_sym_LBRACE, + STATE(479), 1, + sym_comment, + ACTIONS(1244), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1230), 30, + ACTIONS(1242), 30, sym__verbatim_begin, - sym_subscript_end, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17493,20 +18509,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [2983] = 4, - ACTIONS(1289), 1, - anon_sym_LBRACE, - STATE(421), 1, - sym_comment, - ACTIONS(1224), 5, + [4070] = 3, + ACTIONS(1315), 1, + anon_sym_GT, + ACTIONS(1224), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, ACTIONS(1222), 30, sym__verbatim_begin, - sym_delete_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17535,18 +18550,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [3029] = 3, - ACTIONS(1291), 1, + [4114] = 3, + ACTIONS(1317), 1, sym__non_whitespace_check, - ACTIONS(1205), 6, + ACTIONS(1218), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1209), 30, + ACTIONS(1216), 30, sym__verbatim_begin, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17565,7 +18581,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -17576,20 +18591,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [3073] = 4, - ACTIONS(1293), 1, - anon_sym_LBRACE, - STATE(333), 1, - sym_comment, - ACTIONS(1224), 5, + [4158] = 3, + ACTIONS(1319), 1, + sym__non_whitespace_check, + ACTIONS(1218), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1222), 30, + ACTIONS(1216), 30, sym__verbatim_begin, - sym_highlighted_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17618,19 +18632,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [3119] = 3, - ACTIONS(1295), 1, - sym__non_whitespace_check, - ACTIONS(1205), 6, + [4202] = 3, + ACTIONS(1321), 1, + anon_sym_GT, + ACTIONS(1224), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1209), 30, + ACTIONS(1222), 30, sym__verbatim_begin, - sym_strong_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17659,19 +18673,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [3163] = 3, - ACTIONS(1297), 1, + [4246] = 3, + ACTIONS(1323), 1, sym__non_whitespace_check, - ACTIONS(1205), 6, + ACTIONS(1218), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1209), 30, + ACTIONS(1216), 30, sym__verbatim_begin, - sym_strong_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17700,18 +18714,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [3207] = 3, - ACTIONS(1299), 1, + [4290] = 3, + ACTIONS(1325), 1, sym__non_whitespace_check, - ACTIONS(1205), 6, + ACTIONS(1218), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1209), 30, + ACTIONS(1216), 30, sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17730,7 +18745,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -17741,15 +18755,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [3251] = 3, - ACTIONS(1301), 1, - aux_sym_autolink_token1, - ACTIONS(1209), 4, + [4334] = 3, + ACTIONS(1327), 1, + anon_sym_GT, + ACTIONS(1224), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE, + aux_sym__text_token1, + ACTIONS(1222), 30, sym__verbatim_begin, - sym_strong_end, - sym__whitespace1, - sym__newline, - ACTIONS(1205), 32, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17761,18 +18778,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, - sym_en_dash, - sym_backslash_escape, anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -17781,16 +18794,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - aux_sym__text_token1, - [3295] = 3, - ACTIONS(1303), 1, + sym__whitespace1, + sym__newline, + [4378] = 3, + ACTIONS(1329), 1, aux_sym_autolink_token1, - ACTIONS(1209), 4, + ACTIONS(1216), 4, sym__verbatim_begin, - sym_subscript_end, + sym_superscript_end, sym__whitespace1, sym__newline, - ACTIONS(1205), 32, + ACTIONS(1218), 32, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17823,14 +18837,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, aux_sym__text_token1, - [3339] = 3, - ACTIONS(1305), 1, - aux_sym_autolink_token1, - ACTIONS(1209), 3, + [4422] = 4, + ACTIONS(1331), 1, + aux_sym__text_token1, + STATE(214), 1, + aux_sym__text, + ACTIONS(1211), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE, + ACTIONS(1209), 30, sym__verbatim_begin, - sym__whitespace1, - sym__newline, - ACTIONS(1205), 33, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17842,19 +18862,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, - sym_en_dash, - sym_backslash_escape, anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -17863,20 +18877,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, + sym__whitespace1, + sym__newline, + [4468] = 4, + ACTIONS(1334), 1, aux_sym__text_token1, - [3383] = 3, - ACTIONS(1307), 1, - sym__non_whitespace_check, - ACTIONS(1205), 6, + STATE(215), 1, + aux_sym__text, + ACTIONS(1211), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, - aux_sym__text_token1, ACTIONS(1209), 30, sym__verbatim_begin, - sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17895,6 +18910,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -17905,20 +18921,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [3427] = 4, - ACTIONS(1309), 1, - anon_sym_LBRACE, - STATE(248), 1, - sym_comment, - ACTIONS(1224), 5, + [4514] = 3, + ACTIONS(1337), 1, + sym__non_whitespace_check, + ACTIONS(1218), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1222), 30, + ACTIONS(1216), 30, sym__verbatim_begin, - sym_superscript_end, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17947,18 +18962,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [3473] = 4, - ACTIONS(1311), 1, - anon_sym_LBRACE, - STATE(490), 1, - sym_comment, - ACTIONS(1224), 5, + [4558] = 3, + ACTIONS(1339), 1, + sym__non_whitespace_check, + ACTIONS(1218), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1222), 30, + ACTIONS(1216), 30, sym__verbatim_begin, sym__square_bracket_span_end, anon_sym_LBRACE_, @@ -17989,20 +19003,20 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [3519] = 4, - ACTIONS(1313), 1, - anon_sym_LBRACE, - STATE(256), 1, - sym_comment, - ACTIONS(1224), 5, + [4602] = 4, + ACTIONS(1341), 1, + aux_sym__text_token1, + STATE(218), 1, + aux_sym__text, + ACTIONS(1211), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - aux_sym__text_token1, - ACTIONS(1222), 30, + anon_sym_LBRACE, + ACTIONS(1209), 30, sym__verbatim_begin, - ts_builtin_sym_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18031,19 +19045,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [3565] = 3, - ACTIONS(1315), 1, + [4648] = 3, + ACTIONS(1344), 1, sym__non_whitespace_check, - ACTIONS(1205), 6, + ACTIONS(1218), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1209), 30, + ACTIONS(1216), 30, sym__verbatim_begin, - sym_subscript_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18072,20 +19086,20 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [3609] = 4, - ACTIONS(1317), 1, - aux_sym__text_token1, - STATE(198), 1, - aux_sym__text, - ACTIONS(1213), 5, + [4692] = 4, + ACTIONS(1346), 1, + anon_sym_LBRACE, + STATE(299), 1, + sym_comment, + ACTIONS(1244), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, - ACTIONS(1211), 30, + aux_sym__text_token1, + ACTIONS(1242), 30, sym__verbatim_begin, - sym_superscript_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18114,15 +19128,20 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [3655] = 3, - ACTIONS(1320), 1, - aux_sym_autolink_token1, - ACTIONS(1209), 4, + [4738] = 4, + ACTIONS(1348), 1, + aux_sym__text_token1, + STATE(221), 1, + aux_sym__text, + ACTIONS(1211), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE, + ACTIONS(1209), 30, sym__verbatim_begin, - ts_builtin_sym_end, - sym__whitespace1, - sym__newline, - ACTIONS(1205), 32, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18134,18 +19153,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, - sym_en_dash, - sym_backslash_escape, anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -18154,20 +19168,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - aux_sym__text_token1, - [3699] = 3, - ACTIONS(1322), 1, - anon_sym_GT, - ACTIONS(1232), 6, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE, - aux_sym__text_token1, - ACTIONS(1230), 30, + sym__whitespace1, + sym__newline, + [4784] = 3, + ACTIONS(1351), 1, + aux_sym_autolink_token1, + ACTIONS(1216), 4, sym__verbatim_begin, - sym_strong_end, + sym__square_bracket_span_end, + sym__whitespace1, + sym__newline, + ACTIONS(1218), 32, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18179,13 +19190,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, + sym_en_dash, + sym_backslash_escape, anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -18194,21 +19210,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - sym__whitespace1, - sym__newline, - [3743] = 3, - ACTIONS(1324), 1, - anon_sym_GT, - ACTIONS(1232), 6, + aux_sym__text_token1, + [4828] = 2, + ACTIONS(1224), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1230), 30, + ACTIONS(1222), 30, sym__verbatim_begin, - sym_superscript_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18237,20 +19250,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [3787] = 4, - ACTIONS(1326), 1, - anon_sym_LBRACE, - STATE(289), 1, - sym_comment, - ACTIONS(1224), 5, + [4869] = 2, + ACTIONS(1355), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1222), 30, + ACTIONS(1353), 30, sym__verbatim_begin, - sym_subscript_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18279,20 +19289,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [3833] = 4, - ACTIONS(1328), 1, - aux_sym__text_token1, - STATE(203), 1, - aux_sym__text, - ACTIONS(1213), 5, + [4910] = 2, + ACTIONS(1359), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(1211), 30, + aux_sym__text_token1, + ACTIONS(1357), 30, sym__verbatim_begin, - sym__square_bracket_span_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18321,18 +19328,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [3879] = 3, - ACTIONS(1331), 1, - anon_sym_GT, - ACTIONS(1232), 6, + [4951] = 2, + ACTIONS(1363), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1230), 30, + ACTIONS(1361), 30, sym__verbatim_begin, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18351,7 +19357,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -18362,19 +19367,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [3923] = 4, - ACTIONS(1333), 1, - aux_sym__text_token1, - STATE(205), 1, - aux_sym__text, - ACTIONS(1213), 5, + [4992] = 2, + ACTIONS(1367), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(1211), 30, + aux_sym__text_token1, + ACTIONS(1365), 30, sym__verbatim_begin, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18393,7 +19396,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -18404,19 +19406,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [3969] = 3, - ACTIONS(1336), 1, - sym__non_whitespace_check, - ACTIONS(1205), 6, + [5033] = 2, + ACTIONS(1371), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1209), 30, + ACTIONS(1369), 30, sym__verbatim_begin, - sym_superscript_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18445,19 +19445,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4013] = 3, - ACTIONS(1338), 1, - sym__non_whitespace_check, - ACTIONS(1205), 6, + [5074] = 2, + ACTIONS(1375), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1209), 30, + ACTIONS(1373), 30, sym__verbatim_begin, - sym_superscript_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18486,20 +19484,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4057] = 4, - ACTIONS(1340), 1, - aux_sym__text_token1, - STATE(208), 1, - aux_sym__text, - ACTIONS(1213), 5, + [5115] = 4, + ACTIONS(1377), 1, + anon_sym_LBRACE, + STATE(569), 1, + sym_comment, + ACTIONS(1244), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, - ACTIONS(1211), 30, + aux_sym__text_token1, + ACTIONS(1242), 29, sym__verbatim_begin, - sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18528,19 +19525,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4103] = 3, - ACTIONS(1343), 1, - sym__non_whitespace_check, - ACTIONS(1205), 6, + [5160] = 2, + ACTIONS(1381), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1209), 30, + ACTIONS(1379), 30, sym__verbatim_begin, - ts_builtin_sym_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18569,19 +19564,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4147] = 3, - ACTIONS(1345), 1, - anon_sym_GT, - ACTIONS(1232), 6, + [5201] = 2, + ACTIONS(1385), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1230), 30, + ACTIONS(1383), 30, sym__verbatim_begin, - sym__square_bracket_span_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18610,19 +19603,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4191] = 3, - ACTIONS(1347), 1, - sym__non_whitespace_check, - ACTIONS(1205), 6, + [5242] = 2, + ACTIONS(1389), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1209), 30, + ACTIONS(1387), 30, sym__verbatim_begin, - sym__square_bracket_span_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18651,17 +19642,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4235] = 2, - ACTIONS(1351), 6, + [5283] = 2, + ACTIONS(1393), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1349), 30, + ACTIONS(1391), 30, sym__verbatim_begin, - sym_highlighted_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18690,7 +19681,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4276] = 2, + [5324] = 2, ACTIONS(1355), 6, anon_sym_BSLASH, sym_en_dash, @@ -18700,7 +19691,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__text_token1, ACTIONS(1353), 30, sym__verbatim_begin, - sym_delete_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18729,19 +19720,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4317] = 4, - ACTIONS(1357), 1, - anon_sym_LBRACE, - STATE(547), 1, - sym_comment, - ACTIONS(1224), 5, + [5365] = 2, + ACTIONS(1397), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1222), 29, + ACTIONS(1395), 30, sym__verbatim_begin, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18770,15 +19759,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4362] = 2, - ACTIONS(1361), 6, + [5406] = 2, + ACTIONS(1401), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1359), 30, + ACTIONS(1399), 30, sym__verbatim_begin, sym_strong_end, anon_sym_LBRACE_, @@ -18809,15 +19798,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4403] = 2, - ACTIONS(1365), 6, + [5447] = 2, + ACTIONS(1405), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1363), 30, + ACTIONS(1403), 30, sym__verbatim_begin, sym_strong_end, anon_sym_LBRACE_, @@ -18848,15 +19837,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4444] = 2, - ACTIONS(1369), 6, + [5488] = 2, + ACTIONS(1409), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1367), 30, + ACTIONS(1407), 30, sym__verbatim_begin, sym_strong_end, anon_sym_LBRACE_, @@ -18887,15 +19876,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4485] = 2, - ACTIONS(1373), 6, + [5529] = 2, + ACTIONS(1413), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1371), 30, + ACTIONS(1411), 30, sym__verbatim_begin, sym_strong_end, anon_sym_LBRACE_, @@ -18926,15 +19915,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4526] = 2, - ACTIONS(1377), 6, + [5570] = 2, + ACTIONS(1417), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1375), 30, + ACTIONS(1415), 30, sym__verbatim_begin, sym_strong_end, anon_sym_LBRACE_, @@ -18965,15 +19954,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4567] = 2, - ACTIONS(1381), 6, + [5611] = 2, + ACTIONS(1421), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1379), 30, + ACTIONS(1419), 30, sym__verbatim_begin, sym_strong_end, anon_sym_LBRACE_, @@ -19004,15 +19993,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4608] = 2, - ACTIONS(1385), 6, + [5652] = 2, + ACTIONS(1425), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1383), 30, + ACTIONS(1423), 30, sym__verbatim_begin, sym_strong_end, anon_sym_LBRACE_, @@ -19043,15 +20032,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4649] = 2, - ACTIONS(1389), 6, + [5693] = 2, + ACTIONS(1429), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1387), 30, + ACTIONS(1427), 30, sym__verbatim_begin, sym_strong_end, anon_sym_LBRACE_, @@ -19082,15 +20071,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4690] = 2, - ACTIONS(1393), 6, + [5734] = 2, + ACTIONS(1433), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1391), 30, + ACTIONS(1431), 30, sym__verbatim_begin, ts_builtin_sym_end, anon_sym_LBRACE_, @@ -19121,15 +20110,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4731] = 2, - ACTIONS(1397), 6, + [5775] = 2, + ACTIONS(1437), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1395), 30, + ACTIONS(1435), 30, sym__verbatim_begin, sym_strong_end, anon_sym_LBRACE_, @@ -19160,17 +20149,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4772] = 2, - ACTIONS(1401), 6, + [5816] = 4, + ACTIONS(1439), 1, + anon_sym_LBRACE, + STATE(285), 1, + sym_comment, + ACTIONS(1244), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1399), 30, + ACTIONS(1242), 29, sym__verbatim_begin, - sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19199,17 +20190,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4813] = 2, - ACTIONS(1405), 6, + [5861] = 2, + ACTIONS(1443), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1403), 30, + ACTIONS(1441), 30, sym__verbatim_begin, - ts_builtin_sym_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19238,17 +20229,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4854] = 2, - ACTIONS(1409), 6, + [5902] = 3, + ACTIONS(1445), 1, + sym__verbatim_begin, + ACTIONS(1218), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1407), 30, - sym__verbatim_begin, - sym_strong_end, + ACTIONS(1216), 29, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19277,17 +20269,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4895] = 2, - ACTIONS(1355), 6, + [5945] = 2, + ACTIONS(1389), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1353), 30, + ACTIONS(1387), 30, sym__verbatim_begin, - sym_strong_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19316,17 +20308,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4936] = 2, - ACTIONS(1413), 6, + [5986] = 2, + ACTIONS(1433), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1411), 30, + ACTIONS(1431), 30, sym__verbatim_begin, - sym_strong_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19355,17 +20347,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [4977] = 2, - ACTIONS(1417), 6, + [6027] = 2, + ACTIONS(1224), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1415), 30, + ACTIONS(1222), 30, sym__verbatim_begin, - sym_strong_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19394,17 +20386,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5018] = 2, - ACTIONS(1421), 6, + [6068] = 2, + ACTIONS(1450), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1419), 30, + ACTIONS(1448), 30, sym__verbatim_begin, - sym_strong_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19433,17 +20425,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5059] = 2, - ACTIONS(1425), 6, + [6109] = 2, + ACTIONS(1224), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1423), 30, + ACTIONS(1222), 30, sym__verbatim_begin, - sym_strong_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19472,17 +20464,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5100] = 2, - ACTIONS(1429), 6, + [6150] = 2, + ACTIONS(1450), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1427), 30, + ACTIONS(1448), 30, sym__verbatim_begin, - sym_strong_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19511,17 +20503,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5141] = 2, - ACTIONS(1433), 6, + [6191] = 2, + ACTIONS(1454), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1431), 30, + ACTIONS(1452), 30, sym__verbatim_begin, - sym_strong_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19550,17 +20542,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5182] = 2, - ACTIONS(1437), 6, + [6232] = 2, + ACTIONS(1458), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1435), 30, + ACTIONS(1456), 30, sym__verbatim_begin, - sym_strong_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19589,17 +20581,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5223] = 2, - ACTIONS(1441), 6, + [6273] = 2, + ACTIONS(1462), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1439), 30, + ACTIONS(1460), 30, sym__verbatim_begin, - sym_strong_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19628,17 +20620,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5264] = 2, - ACTIONS(1445), 6, + [6314] = 2, + ACTIONS(1359), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1443), 30, + ACTIONS(1357), 30, sym__verbatim_begin, - sym_strong_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19667,19 +20659,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5305] = 4, - ACTIONS(1447), 1, - anon_sym_LBRACE, - STATE(215), 1, - sym_comment, - ACTIONS(1224), 5, + [6355] = 2, + ACTIONS(1363), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1222), 29, + ACTIONS(1361), 30, sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19708,17 +20698,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5350] = 2, - ACTIONS(1451), 6, + [6396] = 2, + ACTIONS(1367), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1449), 30, + ACTIONS(1365), 30, sym__verbatim_begin, - sym_strong_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19747,17 +20737,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5391] = 2, - ACTIONS(1232), 6, + [6437] = 2, + ACTIONS(1371), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1230), 30, + ACTIONS(1369), 30, sym__verbatim_begin, - ts_builtin_sym_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19786,17 +20776,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5432] = 2, - ACTIONS(1455), 6, + [6478] = 2, + ACTIONS(1375), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1453), 30, + ACTIONS(1373), 30, sym__verbatim_begin, - sym_strong_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19825,18 +20815,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5473] = 3, - ACTIONS(1457), 1, - sym__verbatim_begin, - ACTIONS(1205), 6, + [6519] = 2, + ACTIONS(1454), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1209), 29, - sym_superscript_end, + ACTIONS(1452), 30, + sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19865,15 +20854,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5516] = 2, - ACTIONS(1393), 6, + [6560] = 2, + ACTIONS(1381), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1391), 30, + ACTIONS(1379), 30, sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, @@ -19904,15 +20893,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5557] = 2, - ACTIONS(1405), 6, + [6601] = 2, + ACTIONS(1385), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1403), 30, + ACTIONS(1383), 30, sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, @@ -19943,17 +20932,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5598] = 2, - ACTIONS(1232), 6, + [6642] = 2, + ACTIONS(1458), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1230), 30, + ACTIONS(1456), 30, sym__verbatim_begin, - sym_superscript_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19982,15 +20971,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5639] = 2, - ACTIONS(1351), 6, + [6683] = 2, + ACTIONS(1393), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1349), 30, + ACTIONS(1391), 30, sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, @@ -20021,17 +21010,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5680] = 2, - ACTIONS(1351), 6, + [6724] = 2, + ACTIONS(1355), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1349), 30, + ACTIONS(1353), 30, sym__verbatim_begin, - ts_builtin_sym_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20060,15 +21049,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5721] = 2, - ACTIONS(1361), 6, + [6765] = 2, + ACTIONS(1397), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1359), 30, + ACTIONS(1395), 30, sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, @@ -20099,15 +21088,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5762] = 2, - ACTIONS(1365), 6, + [6806] = 2, + ACTIONS(1401), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1363), 30, + ACTIONS(1399), 30, sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, @@ -20138,15 +21127,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5803] = 2, - ACTIONS(1369), 6, + [6847] = 2, + ACTIONS(1405), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1367), 30, + ACTIONS(1403), 30, sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, @@ -20177,15 +21166,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5844] = 2, - ACTIONS(1373), 6, + [6888] = 2, + ACTIONS(1409), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1371), 30, + ACTIONS(1407), 30, sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, @@ -20216,15 +21205,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5885] = 2, - ACTIONS(1377), 6, + [6929] = 2, + ACTIONS(1413), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1375), 30, + ACTIONS(1411), 30, sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, @@ -20255,15 +21244,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5926] = 2, - ACTIONS(1381), 6, + [6970] = 2, + ACTIONS(1417), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1379), 30, + ACTIONS(1415), 30, sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, @@ -20294,15 +21283,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [5967] = 2, - ACTIONS(1385), 6, + [7011] = 2, + ACTIONS(1421), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1383), 30, + ACTIONS(1419), 30, sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, @@ -20333,15 +21322,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6008] = 2, - ACTIONS(1389), 6, + [7052] = 2, + ACTIONS(1425), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1387), 30, + ACTIONS(1423), 30, sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, @@ -20372,17 +21361,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6049] = 2, - ACTIONS(1361), 6, + [7093] = 2, + ACTIONS(1429), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1359), 30, + ACTIONS(1427), 30, sym__verbatim_begin, - ts_builtin_sym_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20411,17 +21400,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6090] = 2, - ACTIONS(1397), 6, + [7134] = 2, + ACTIONS(1462), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1395), 30, + ACTIONS(1460), 30, sym__verbatim_begin, - sym_superscript_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20450,15 +21439,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6131] = 2, - ACTIONS(1401), 6, + [7175] = 2, + ACTIONS(1437), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1399), 30, + ACTIONS(1435), 30, sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, @@ -20489,15 +21478,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6172] = 2, - ACTIONS(1365), 6, + [7216] = 2, + ACTIONS(1359), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1363), 30, + ACTIONS(1357), 30, sym__verbatim_begin, ts_builtin_sym_end, anon_sym_LBRACE_, @@ -20528,15 +21517,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6213] = 2, - ACTIONS(1409), 6, + [7257] = 2, + ACTIONS(1443), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1407), 30, + ACTIONS(1441), 30, sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, @@ -20567,17 +21556,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6254] = 2, - ACTIONS(1355), 6, + [7298] = 2, + ACTIONS(1363), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1353), 30, + ACTIONS(1361), 30, sym__verbatim_begin, - sym_superscript_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20606,17 +21595,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6295] = 2, - ACTIONS(1413), 6, + [7339] = 2, + ACTIONS(1458), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1411), 30, + ACTIONS(1456), 30, sym__verbatim_begin, - sym_superscript_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20645,17 +21634,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6336] = 2, - ACTIONS(1417), 6, + [7380] = 2, + ACTIONS(1454), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1415), 30, + ACTIONS(1452), 30, sym__verbatim_begin, - sym_superscript_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20684,17 +21673,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6377] = 2, - ACTIONS(1421), 6, + [7421] = 2, + ACTIONS(1367), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1419), 30, + ACTIONS(1365), 30, sym__verbatim_begin, - sym_superscript_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20723,17 +21712,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6418] = 2, - ACTIONS(1425), 6, + [7462] = 3, + ACTIONS(1464), 1, + sym__verbatim_begin, + ACTIONS(1218), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1423), 30, - sym__verbatim_begin, - sym_superscript_end, + ACTIONS(1216), 29, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20762,17 +21752,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6459] = 2, - ACTIONS(1429), 6, + [7505] = 2, + ACTIONS(1389), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1427), 30, + ACTIONS(1387), 30, sym__verbatim_begin, - sym_superscript_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20801,7 +21791,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6500] = 2, + [7546] = 2, ACTIONS(1433), 6, anon_sym_BSLASH, sym_en_dash, @@ -20811,7 +21801,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__text_token1, ACTIONS(1431), 30, sym__verbatim_begin, - sym_superscript_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20840,17 +21830,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6541] = 2, - ACTIONS(1437), 6, + [7587] = 2, + ACTIONS(1371), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1435), 30, + ACTIONS(1369), 30, sym__verbatim_begin, - sym_superscript_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20879,17 +21869,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6582] = 2, - ACTIONS(1441), 6, + [7628] = 2, + ACTIONS(1450), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1439), 30, + ACTIONS(1448), 30, sym__verbatim_begin, - sym_superscript_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20918,17 +21908,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6623] = 2, - ACTIONS(1445), 6, + [7669] = 2, + ACTIONS(1224), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1443), 30, + ACTIONS(1222), 30, sym__verbatim_begin, - sym_superscript_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20957,17 +21947,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6664] = 2, - ACTIONS(1369), 6, + [7710] = 2, + ACTIONS(1433), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1367), 30, + ACTIONS(1431), 30, sym__verbatim_begin, - ts_builtin_sym_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20996,17 +21986,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6705] = 2, - ACTIONS(1451), 6, + [7751] = 2, + ACTIONS(1224), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1449), 30, + ACTIONS(1222), 30, sym__verbatim_begin, - sym_superscript_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21035,17 +22025,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6746] = 2, - ACTIONS(1373), 6, + [7792] = 2, + ACTIONS(1450), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1371), 30, + ACTIONS(1448), 30, sym__verbatim_begin, - ts_builtin_sym_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21074,17 +22064,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6787] = 2, - ACTIONS(1455), 6, + [7833] = 2, + ACTIONS(1375), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1453), 30, + ACTIONS(1373), 30, sym__verbatim_begin, - sym_superscript_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21113,17 +22103,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6828] = 2, - ACTIONS(1401), 6, + [7874] = 2, + ACTIONS(1381), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1399), 30, + ACTIONS(1379), 30, sym__verbatim_begin, - sym_emphasis_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21152,15 +22142,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6869] = 2, - ACTIONS(1232), 6, + [7915] = 2, + ACTIONS(1389), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1230), 30, + ACTIONS(1387), 30, sym__verbatim_begin, sym_strong_end, anon_sym_LBRACE_, @@ -21191,17 +22181,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6910] = 2, - ACTIONS(1405), 6, + [7956] = 2, + ACTIONS(1454), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1403), 30, + ACTIONS(1452), 30, sym__verbatim_begin, - sym_strong_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21230,17 +22220,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6951] = 2, - ACTIONS(1393), 6, + [7997] = 2, + ACTIONS(1458), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1391), 30, + ACTIONS(1456), 30, sym__verbatim_begin, - sym_strong_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21269,17 +22259,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [6992] = 3, - ACTIONS(1460), 1, - sym__verbatim_begin, - ACTIONS(1205), 6, + [8038] = 2, + ACTIONS(1462), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1209), 29, + ACTIONS(1460), 30, + sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, anon_sym__, @@ -21309,15 +22298,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7035] = 2, - ACTIONS(1393), 6, + [8079] = 2, + ACTIONS(1359), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1391), 30, + ACTIONS(1357), 30, sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, @@ -21348,15 +22337,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7076] = 2, - ACTIONS(1405), 6, + [8120] = 2, + ACTIONS(1363), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1403), 30, + ACTIONS(1361), 30, sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, @@ -21387,18 +22376,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7117] = 3, - ACTIONS(1463), 1, - sym__verbatim_begin, - ACTIONS(1205), 6, + [8161] = 2, + ACTIONS(1367), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1209), 29, - sym_strong_end, + ACTIONS(1365), 30, + sym__verbatim_begin, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21427,17 +22415,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7160] = 2, - ACTIONS(1377), 6, + [8202] = 2, + ACTIONS(1371), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1375), 30, + ACTIONS(1369), 30, sym__verbatim_begin, - ts_builtin_sym_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21466,17 +22454,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7201] = 2, - ACTIONS(1455), 6, + [8243] = 3, + ACTIONS(1467), 1, + sym__verbatim_begin, + ACTIONS(1218), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1453), 30, - sym__verbatim_begin, - sym_emphasis_end, + ACTIONS(1216), 29, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21505,17 +22494,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7242] = 2, - ACTIONS(1232), 6, + [8286] = 2, + ACTIONS(1385), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1230), 30, + ACTIONS(1383), 30, sym__verbatim_begin, - sym_subscript_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21544,17 +22533,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7283] = 2, - ACTIONS(1351), 6, + [8327] = 2, + ACTIONS(1443), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1349), 30, + ACTIONS(1441), 30, sym__verbatim_begin, - sym_subscript_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21583,17 +22572,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7324] = 2, - ACTIONS(1381), 6, + [8368] = 2, + ACTIONS(1375), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1379), 30, + ACTIONS(1373), 30, sym__verbatim_begin, - ts_builtin_sym_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21622,15 +22611,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7365] = 2, - ACTIONS(1385), 6, + [8409] = 2, + ACTIONS(1393), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1383), 30, + ACTIONS(1391), 30, sym__verbatim_begin, ts_builtin_sym_end, anon_sym_LBRACE_, @@ -21661,15 +22650,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7406] = 2, - ACTIONS(1361), 6, + [8450] = 2, + ACTIONS(1381), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1359), 30, + ACTIONS(1379), 30, sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, @@ -21700,15 +22689,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7447] = 2, - ACTIONS(1365), 6, + [8491] = 2, + ACTIONS(1385), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1363), 30, + ACTIONS(1383), 30, sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, @@ -21739,17 +22728,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7488] = 2, - ACTIONS(1369), 6, + [8532] = 2, + ACTIONS(1355), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1367), 30, + ACTIONS(1353), 30, sym__verbatim_begin, - sym_subscript_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21778,15 +22767,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7529] = 2, - ACTIONS(1373), 6, + [8573] = 2, + ACTIONS(1393), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1371), 30, + ACTIONS(1391), 30, sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, @@ -21817,15 +22806,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7570] = 2, - ACTIONS(1377), 6, + [8614] = 2, + ACTIONS(1355), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1375), 30, + ACTIONS(1353), 30, sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, @@ -21856,15 +22845,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7611] = 2, - ACTIONS(1381), 6, + [8655] = 2, + ACTIONS(1397), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1379), 30, + ACTIONS(1395), 30, sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, @@ -21895,15 +22884,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7652] = 2, - ACTIONS(1385), 6, + [8696] = 2, + ACTIONS(1401), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1383), 30, + ACTIONS(1399), 30, sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, @@ -21934,17 +22923,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7693] = 2, - ACTIONS(1451), 6, + [8737] = 2, + ACTIONS(1405), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1449), 30, + ACTIONS(1403), 30, sym__verbatim_begin, - sym_emphasis_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21973,17 +22962,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7734] = 2, - ACTIONS(1389), 6, + [8778] = 2, + ACTIONS(1409), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1387), 30, + ACTIONS(1407), 30, sym__verbatim_begin, - ts_builtin_sym_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22012,17 +23001,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7775] = 2, - ACTIONS(1397), 6, + [8819] = 2, + ACTIONS(1413), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1395), 30, + ACTIONS(1411), 30, sym__verbatim_begin, - ts_builtin_sym_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22051,15 +23040,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7816] = 2, - ACTIONS(1389), 6, + [8860] = 2, + ACTIONS(1417), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1387), 30, + ACTIONS(1415), 30, sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, @@ -22090,17 +23079,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7857] = 2, - ACTIONS(1401), 6, + [8901] = 2, + ACTIONS(1421), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1399), 30, + ACTIONS(1419), 30, sym__verbatim_begin, - ts_builtin_sym_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22129,15 +23118,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7898] = 2, - ACTIONS(1397), 6, + [8942] = 2, + ACTIONS(1425), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1395), 30, + ACTIONS(1423), 30, sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, @@ -22168,15 +23157,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7939] = 2, - ACTIONS(1401), 6, + [8983] = 2, + ACTIONS(1429), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1399), 30, + ACTIONS(1427), 30, sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, @@ -22207,15 +23196,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [7980] = 2, - ACTIONS(1409), 6, + [9024] = 2, + ACTIONS(1397), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1407), 30, + ACTIONS(1395), 30, sym__verbatim_begin, ts_builtin_sym_end, anon_sym_LBRACE_, @@ -22246,15 +23235,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8021] = 2, - ACTIONS(1409), 6, + [9065] = 2, + ACTIONS(1437), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1407), 30, + ACTIONS(1435), 30, sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, @@ -22285,17 +23274,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8062] = 2, - ACTIONS(1355), 6, + [9106] = 2, + ACTIONS(1401), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1353), 30, + ACTIONS(1399), 30, sym__verbatim_begin, - sym_subscript_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22324,15 +23313,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8103] = 2, - ACTIONS(1413), 6, + [9147] = 2, + ACTIONS(1443), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1411), 30, + ACTIONS(1441), 30, sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, @@ -22363,17 +23352,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8144] = 2, - ACTIONS(1417), 6, + [9188] = 2, + ACTIONS(1405), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1415), 30, + ACTIONS(1403), 30, sym__verbatim_begin, - sym_subscript_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22402,17 +23391,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8185] = 2, - ACTIONS(1421), 6, + [9229] = 2, + ACTIONS(1437), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1419), 30, + ACTIONS(1435), 30, sym__verbatim_begin, - sym_subscript_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22441,17 +23430,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8226] = 2, - ACTIONS(1425), 6, + [9270] = 4, + ACTIONS(1470), 1, + aux_sym__text_token1, + STATE(331), 1, + aux_sym__text, + ACTIONS(1211), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, - aux_sym__text_token1, - ACTIONS(1423), 30, + ACTIONS(1209), 29, sym__verbatim_begin, - sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22480,17 +23471,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8267] = 2, - ACTIONS(1429), 6, + [9315] = 3, + ACTIONS(1473), 1, + anon_sym_GT, + ACTIONS(1224), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1427), 30, + ACTIONS(1222), 29, sym__verbatim_begin, - sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22519,17 +23511,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8308] = 2, - ACTIONS(1433), 6, + [9358] = 3, + ACTIONS(1475), 1, + sym__verbatim_begin, + ACTIONS(1218), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1431), 30, - sym__verbatim_begin, - sym_subscript_end, + ACTIONS(1216), 29, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22558,17 +23551,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8349] = 2, - ACTIONS(1437), 6, + [9401] = 2, + ACTIONS(1389), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1435), 30, + ACTIONS(1387), 30, sym__verbatim_begin, - sym_subscript_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22597,17 +23590,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8390] = 2, - ACTIONS(1441), 6, + [9442] = 2, + ACTIONS(1433), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1439), 30, + ACTIONS(1431), 30, sym__verbatim_begin, - sym_subscript_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22636,17 +23629,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8431] = 2, - ACTIONS(1445), 6, + [9483] = 2, + ACTIONS(1429), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1443), 30, + ACTIONS(1427), 30, sym__verbatim_begin, - sym_subscript_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22675,17 +23668,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8472] = 2, - ACTIONS(1355), 6, + [9524] = 2, + ACTIONS(1425), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1353), 30, + ACTIONS(1423), 30, sym__verbatim_begin, - ts_builtin_sym_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22714,17 +23707,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8513] = 2, - ACTIONS(1451), 6, + [9565] = 2, + ACTIONS(1421), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1449), 30, + ACTIONS(1419), 30, sym__verbatim_begin, - sym_subscript_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22753,17 +23746,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8554] = 2, - ACTIONS(1413), 6, + [9606] = 2, + ACTIONS(1417), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1411), 30, + ACTIONS(1415), 30, sym__verbatim_begin, - ts_builtin_sym_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22792,17 +23785,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8595] = 2, - ACTIONS(1455), 6, + [9647] = 2, + ACTIONS(1409), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1453), 30, + ACTIONS(1407), 30, sym__verbatim_begin, - sym_subscript_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22831,17 +23824,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8636] = 2, - ACTIONS(1445), 6, + [9688] = 2, + ACTIONS(1450), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1443), 30, + ACTIONS(1448), 30, sym__verbatim_begin, - sym_emphasis_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22870,17 +23863,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8677] = 2, - ACTIONS(1441), 6, + [9729] = 2, + ACTIONS(1413), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1439), 30, + ACTIONS(1411), 30, sym__verbatim_begin, - sym_emphasis_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22905,21 +23898,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_WIP, anon_sym_NOTE, anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - sym__whitespace1, - sym__newline, - [8718] = 2, - ACTIONS(1437), 6, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE, - aux_sym__text_token1, - ACTIONS(1435), 30, + anon_sym_XXX, + sym_fixme, + sym__whitespace1, + sym__newline, + [9770] = 3, + ACTIONS(1478), 1, + aux_sym_autolink_token1, + ACTIONS(1216), 3, sym__verbatim_begin, - sym_emphasis_end, + sym__whitespace1, + sym__newline, + ACTIONS(1218), 32, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22931,13 +23921,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, + sym_en_dash, + sym_backslash_escape, anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -22946,17 +23941,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - sym__whitespace1, - sym__newline, - [8759] = 2, - ACTIONS(1433), 6, + aux_sym__text_token1, + [9813] = 2, + ACTIONS(1413), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1431), 30, + ACTIONS(1411), 30, sym__verbatim_begin, sym_emphasis_end, anon_sym_LBRACE_, @@ -22987,17 +23981,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8800] = 3, - ACTIONS(1466), 1, - sym__verbatim_begin, - ACTIONS(1205), 6, + [9854] = 2, + ACTIONS(1454), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1209), 29, + ACTIONS(1452), 30, + sym__verbatim_begin, sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, @@ -23027,15 +24020,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8843] = 2, - ACTIONS(1393), 6, + [9895] = 2, + ACTIONS(1458), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1391), 30, + ACTIONS(1456), 30, sym__verbatim_begin, sym_highlighted_end, anon_sym_LBRACE_, @@ -23066,15 +24059,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8884] = 2, - ACTIONS(1405), 6, + [9936] = 2, + ACTIONS(1462), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1403), 30, + ACTIONS(1460), 30, sym__verbatim_begin, sym_highlighted_end, anon_sym_LBRACE_, @@ -23105,17 +24098,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8925] = 2, - ACTIONS(1429), 6, + [9977] = 2, + ACTIONS(1359), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1427), 30, + ACTIONS(1357), 30, sym__verbatim_begin, - sym_emphasis_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23144,17 +24137,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [8966] = 2, - ACTIONS(1425), 6, + [10018] = 2, + ACTIONS(1363), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1423), 30, + ACTIONS(1361), 30, sym__verbatim_begin, - sym_emphasis_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23183,17 +24176,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9007] = 2, - ACTIONS(1421), 6, + [10059] = 2, + ACTIONS(1367), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1419), 30, + ACTIONS(1365), 30, sym__verbatim_begin, - sym_emphasis_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23222,15 +24215,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9048] = 2, - ACTIONS(1232), 6, + [10100] = 2, + ACTIONS(1371), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1230), 30, + ACTIONS(1369), 30, sym__verbatim_begin, sym_highlighted_end, anon_sym_LBRACE_, @@ -23261,17 +24254,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9089] = 2, - ACTIONS(1417), 6, + [10141] = 2, + ACTIONS(1409), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1415), 30, + ACTIONS(1407), 30, sym__verbatim_begin, - ts_builtin_sym_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23300,17 +24293,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9130] = 2, - ACTIONS(1421), 6, + [10182] = 2, + ACTIONS(1405), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1419), 30, + ACTIONS(1403), 30, sym__verbatim_begin, - ts_builtin_sym_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23339,15 +24332,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9171] = 2, - ACTIONS(1417), 6, + [10223] = 2, + ACTIONS(1401), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1415), 30, + ACTIONS(1399), 30, sym__verbatim_begin, sym_emphasis_end, anon_sym_LBRACE_, @@ -23378,15 +24371,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9212] = 2, - ACTIONS(1361), 6, + [10264] = 2, + ACTIONS(1375), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1359), 30, + ACTIONS(1373), 30, sym__verbatim_begin, sym_highlighted_end, anon_sym_LBRACE_, @@ -23417,17 +24410,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9253] = 2, - ACTIONS(1365), 6, + [10305] = 2, + ACTIONS(1417), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1363), 30, + ACTIONS(1415), 30, sym__verbatim_begin, - sym_highlighted_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23456,15 +24449,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9294] = 2, - ACTIONS(1369), 6, + [10346] = 2, + ACTIONS(1381), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1367), 30, + ACTIONS(1379), 30, sym__verbatim_begin, sym_highlighted_end, anon_sym_LBRACE_, @@ -23495,15 +24488,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9335] = 2, - ACTIONS(1373), 6, + [10387] = 2, + ACTIONS(1385), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1371), 30, + ACTIONS(1383), 30, sym__verbatim_begin, sym_highlighted_end, anon_sym_LBRACE_, @@ -23534,17 +24527,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9376] = 2, - ACTIONS(1377), 6, + [10428] = 3, + ACTIONS(1480), 1, + sym__non_whitespace_check, + ACTIONS(1218), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1375), 30, + ACTIONS(1216), 29, sym__verbatim_begin, - sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23573,15 +24567,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9417] = 2, - ACTIONS(1381), 6, + [10471] = 2, + ACTIONS(1393), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1379), 30, + ACTIONS(1391), 30, sym__verbatim_begin, sym_highlighted_end, anon_sym_LBRACE_, @@ -23612,15 +24606,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9458] = 2, - ACTIONS(1385), 6, + [10512] = 2, + ACTIONS(1355), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1383), 30, + ACTIONS(1353), 30, sym__verbatim_begin, sym_highlighted_end, anon_sym_LBRACE_, @@ -23651,17 +24645,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9499] = 2, - ACTIONS(1425), 6, + [10553] = 2, + ACTIONS(1397), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1423), 30, + ACTIONS(1395), 30, sym__verbatim_begin, - ts_builtin_sym_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23690,17 +24684,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9540] = 2, - ACTIONS(1413), 6, + [10594] = 2, + ACTIONS(1401), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1411), 30, + ACTIONS(1399), 30, sym__verbatim_begin, - sym_emphasis_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23729,17 +24723,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9581] = 2, - ACTIONS(1355), 6, + [10635] = 2, + ACTIONS(1405), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1353), 30, + ACTIONS(1403), 30, sym__verbatim_begin, - sym_emphasis_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23768,15 +24762,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9622] = 2, - ACTIONS(1389), 6, + [10676] = 2, + ACTIONS(1409), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1387), 30, + ACTIONS(1407), 30, sym__verbatim_begin, sym_highlighted_end, anon_sym_LBRACE_, @@ -23807,19 +24801,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9663] = 4, - ACTIONS(1469), 1, - aux_sym__text_token1, - STATE(344), 1, - aux_sym__text, - ACTIONS(1213), 5, + [10717] = 2, + ACTIONS(1413), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(1211), 29, + aux_sym__text_token1, + ACTIONS(1411), 30, sym__verbatim_begin, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23848,15 +24840,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9708] = 2, - ACTIONS(1397), 6, + [10758] = 2, + ACTIONS(1417), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1395), 30, + ACTIONS(1415), 30, sym__verbatim_begin, sym_highlighted_end, anon_sym_LBRACE_, @@ -23887,15 +24879,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9749] = 2, - ACTIONS(1401), 6, + [10799] = 2, + ACTIONS(1421), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1399), 30, + ACTIONS(1419), 30, sym__verbatim_begin, sym_highlighted_end, anon_sym_LBRACE_, @@ -23926,18 +24918,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9790] = 3, - ACTIONS(1472), 1, - anon_sym_GT, - ACTIONS(1232), 6, + [10840] = 2, + ACTIONS(1425), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1230), 29, + ACTIONS(1423), 30, sym__verbatim_begin, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23966,15 +24957,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9833] = 2, - ACTIONS(1409), 6, + [10881] = 2, + ACTIONS(1429), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1407), 30, + ACTIONS(1427), 30, sym__verbatim_begin, sym_highlighted_end, anon_sym_LBRACE_, @@ -24005,17 +24996,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9874] = 2, - ACTIONS(1355), 6, + [10922] = 3, + ACTIONS(1482), 1, + sym__non_whitespace_check, + ACTIONS(1218), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1353), 30, + ACTIONS(1216), 29, sym__verbatim_begin, - sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24044,15 +25036,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9915] = 2, - ACTIONS(1413), 6, + [10965] = 2, + ACTIONS(1437), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1411), 30, + ACTIONS(1435), 30, sym__verbatim_begin, sym_highlighted_end, anon_sym_LBRACE_, @@ -24083,17 +25075,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9956] = 2, - ACTIONS(1417), 6, + [11006] = 2, + ACTIONS(1443), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1415), 30, + ACTIONS(1441), 30, sym__verbatim_begin, - sym_highlighted_end, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24122,15 +25114,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [9997] = 2, - ACTIONS(1421), 6, + [11047] = 2, + ACTIONS(1443), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1419), 30, + ACTIONS(1441), 30, sym__verbatim_begin, sym_highlighted_end, anon_sym_LBRACE_, @@ -24161,17 +25153,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10038] = 2, - ACTIONS(1425), 6, + [11088] = 2, + ACTIONS(1437), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1423), 30, + ACTIONS(1435), 30, sym__verbatim_begin, - sym_highlighted_end, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24200,17 +25192,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10079] = 2, - ACTIONS(1429), 6, + [11129] = 2, + ACTIONS(1397), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1427), 30, + ACTIONS(1395), 30, sym__verbatim_begin, - sym_highlighted_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24239,17 +25231,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10120] = 2, - ACTIONS(1433), 6, + [11170] = 2, + ACTIONS(1355), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1431), 30, + ACTIONS(1353), 30, sym__verbatim_begin, - sym_highlighted_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24278,17 +25270,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10161] = 2, - ACTIONS(1437), 6, + [11211] = 2, + ACTIONS(1393), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1435), 30, + ACTIONS(1391), 30, sym__verbatim_begin, - sym_highlighted_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24317,17 +25309,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10202] = 2, - ACTIONS(1441), 6, + [11252] = 3, + ACTIONS(1484), 1, + sym__verbatim_begin, + ACTIONS(1218), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1439), 30, - sym__verbatim_begin, - sym_highlighted_end, + ACTIONS(1216), 29, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24356,17 +25349,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10243] = 2, - ACTIONS(1445), 6, + [11295] = 2, + ACTIONS(1389), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1443), 30, + ACTIONS(1387), 30, sym__verbatim_begin, - sym_highlighted_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24395,17 +25388,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10284] = 2, - ACTIONS(1429), 6, + [11336] = 2, + ACTIONS(1433), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1427), 30, + ACTIONS(1431), 30, sym__verbatim_begin, - ts_builtin_sym_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24434,17 +25427,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10325] = 2, - ACTIONS(1451), 6, + [11377] = 2, + ACTIONS(1433), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1449), 30, + ACTIONS(1431), 30, sym__verbatim_begin, - sym_highlighted_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24473,14 +25466,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10366] = 3, - ACTIONS(1474), 1, - aux_sym_autolink_token1, - ACTIONS(1209), 3, + [11418] = 2, + ACTIONS(1385), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE, + aux_sym__text_token1, + ACTIONS(1383), 30, sym__verbatim_begin, - sym__whitespace1, - sym__newline, - ACTIONS(1205), 32, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24492,18 +25488,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, - sym_en_dash, - sym_backslash_escape, anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -24512,18 +25503,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - aux_sym__text_token1, - [10409] = 2, - ACTIONS(1455), 6, + sym__whitespace1, + sym__newline, + [11459] = 2, + ACTIONS(1429), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1453), 30, + ACTIONS(1427), 30, sym__verbatim_begin, - sym_highlighted_end, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24552,15 +25544,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10450] = 2, - ACTIONS(1409), 6, + [11500] = 2, + ACTIONS(1381), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1407), 30, + ACTIONS(1379), 30, sym__verbatim_begin, sym_emphasis_end, anon_sym_LBRACE_, @@ -24591,17 +25583,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10491] = 2, - ACTIONS(1433), 6, + [11541] = 2, + ACTIONS(1224), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1431), 30, + ACTIONS(1222), 30, sym__verbatim_begin, - ts_builtin_sym_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24630,17 +25622,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10532] = 2, - ACTIONS(1232), 6, + [11582] = 2, + ACTIONS(1450), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1230), 30, + ACTIONS(1448), 30, sym__verbatim_begin, - sym_emphasis_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24669,18 +25661,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10573] = 3, - ACTIONS(1476), 1, - sym__non_whitespace_check, - ACTIONS(1205), 6, + [11623] = 2, + ACTIONS(1425), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1209), 29, + ACTIONS(1423), 30, sym__verbatim_begin, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24709,18 +25700,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10616] = 3, - ACTIONS(1478), 1, - sym__verbatim_begin, - ACTIONS(1205), 6, + [11664] = 2, + ACTIONS(1421), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1209), 29, - sym_insert_end, + ACTIONS(1419), 30, + sym__verbatim_begin, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24749,17 +25739,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10659] = 2, - ACTIONS(1393), 6, + [11705] = 2, + ACTIONS(1417), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1391), 30, + ACTIONS(1415), 30, sym__verbatim_begin, - sym_insert_end, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24788,15 +25778,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10700] = 2, - ACTIONS(1405), 6, + [11746] = 2, + ACTIONS(1454), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1403), 30, + ACTIONS(1452), 30, sym__verbatim_begin, sym_insert_end, anon_sym_LBRACE_, @@ -24827,17 +25817,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10741] = 2, - ACTIONS(1397), 6, + [11787] = 2, + ACTIONS(1458), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1395), 30, + ACTIONS(1456), 30, sym__verbatim_begin, - sym_emphasis_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24866,18 +25856,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10782] = 3, - ACTIONS(1481), 1, - sym__non_whitespace_check, - ACTIONS(1205), 6, + [11828] = 2, + ACTIONS(1462), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1209), 29, + ACTIONS(1460), 30, sym__verbatim_begin, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24906,17 +25895,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10825] = 2, - ACTIONS(1389), 6, + [11869] = 2, + ACTIONS(1359), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1387), 30, + ACTIONS(1357), 30, sym__verbatim_begin, - sym_emphasis_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24945,15 +25934,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10866] = 2, - ACTIONS(1232), 6, + [11910] = 2, + ACTIONS(1363), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1230), 30, + ACTIONS(1361), 30, sym__verbatim_begin, sym_insert_end, anon_sym_LBRACE_, @@ -24984,15 +25973,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10907] = 2, - ACTIONS(1351), 6, + [11951] = 2, + ACTIONS(1367), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1349), 30, + ACTIONS(1365), 30, sym__verbatim_begin, sym_insert_end, anon_sym_LBRACE_, @@ -25023,17 +26012,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10948] = 2, - ACTIONS(1455), 6, + [11992] = 2, + ACTIONS(1371), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1453), 30, + ACTIONS(1369), 30, sym__verbatim_begin, - sym__square_bracket_span_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25062,15 +26051,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [10989] = 2, - ACTIONS(1385), 6, + [12033] = 2, + ACTIONS(1375), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1383), 30, + ACTIONS(1373), 30, sym__verbatim_begin, sym_emphasis_end, anon_sym_LBRACE_, @@ -25101,17 +26090,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11030] = 2, - ACTIONS(1361), 6, + [12074] = 2, + ACTIONS(1371), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1359), 30, + ACTIONS(1369), 30, sym__verbatim_begin, - sym_insert_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25140,17 +26129,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11071] = 2, - ACTIONS(1365), 6, + [12115] = 2, + ACTIONS(1367), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1363), 30, + ACTIONS(1365), 30, sym__verbatim_begin, - sym_insert_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25179,15 +26168,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11112] = 2, - ACTIONS(1369), 6, + [12156] = 2, + ACTIONS(1375), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1367), 30, + ACTIONS(1373), 30, sym__verbatim_begin, sym_insert_end, anon_sym_LBRACE_, @@ -25218,17 +26207,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11153] = 2, - ACTIONS(1373), 6, + [12197] = 2, + ACTIONS(1413), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1371), 30, + ACTIONS(1411), 30, sym__verbatim_begin, - sym_insert_end, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25257,15 +26246,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11194] = 2, - ACTIONS(1377), 6, + [12238] = 2, + ACTIONS(1381), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1375), 30, + ACTIONS(1379), 30, sym__verbatim_begin, sym_insert_end, anon_sym_LBRACE_, @@ -25296,15 +26285,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11235] = 2, - ACTIONS(1381), 6, + [12279] = 2, + ACTIONS(1385), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1379), 30, + ACTIONS(1383), 30, sym__verbatim_begin, sym_insert_end, anon_sym_LBRACE_, @@ -25335,17 +26324,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11276] = 2, - ACTIONS(1385), 6, + [12320] = 2, + ACTIONS(1409), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1383), 30, + ACTIONS(1407), 30, sym__verbatim_begin, - sym_insert_end, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25374,17 +26363,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11317] = 2, - ACTIONS(1381), 6, + [12361] = 2, + ACTIONS(1393), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1379), 30, + ACTIONS(1391), 30, sym__verbatim_begin, - sym_emphasis_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25413,17 +26402,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11358] = 2, - ACTIONS(1377), 6, + [12402] = 2, + ACTIONS(1355), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1375), 30, + ACTIONS(1353), 30, sym__verbatim_begin, - sym_emphasis_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25452,17 +26441,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11399] = 2, - ACTIONS(1373), 6, + [12443] = 2, + ACTIONS(1397), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1371), 30, + ACTIONS(1395), 30, sym__verbatim_begin, - sym_emphasis_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25491,15 +26480,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11440] = 2, - ACTIONS(1389), 6, + [12484] = 2, + ACTIONS(1401), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1387), 30, + ACTIONS(1399), 30, sym__verbatim_begin, sym_insert_end, anon_sym_LBRACE_, @@ -25530,17 +26519,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11481] = 2, - ACTIONS(1451), 6, + [12525] = 2, + ACTIONS(1405), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1449), 30, + ACTIONS(1403), 30, sym__verbatim_begin, - sym__square_bracket_span_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25569,15 +26558,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11522] = 2, - ACTIONS(1397), 6, + [12566] = 2, + ACTIONS(1409), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1395), 30, + ACTIONS(1407), 30, sym__verbatim_begin, sym_insert_end, anon_sym_LBRACE_, @@ -25608,15 +26597,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11563] = 2, - ACTIONS(1401), 6, + [12607] = 2, + ACTIONS(1413), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1399), 30, + ACTIONS(1411), 30, sym__verbatim_begin, sym_insert_end, anon_sym_LBRACE_, @@ -25647,17 +26636,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11604] = 2, - ACTIONS(1445), 6, + [12648] = 2, + ACTIONS(1417), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1443), 30, + ACTIONS(1415), 30, sym__verbatim_begin, - sym__square_bracket_span_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25686,15 +26675,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11645] = 2, - ACTIONS(1409), 6, + [12689] = 2, + ACTIONS(1421), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1407), 30, + ACTIONS(1419), 30, sym__verbatim_begin, sym_insert_end, anon_sym_LBRACE_, @@ -25725,15 +26714,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11686] = 2, - ACTIONS(1355), 6, + [12730] = 2, + ACTIONS(1425), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1353), 30, + ACTIONS(1423), 30, sym__verbatim_begin, sym_insert_end, anon_sym_LBRACE_, @@ -25764,15 +26753,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11727] = 2, - ACTIONS(1413), 6, + [12771] = 2, + ACTIONS(1429), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1411), 30, + ACTIONS(1427), 30, sym__verbatim_begin, sym_insert_end, anon_sym_LBRACE_, @@ -25803,17 +26792,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11768] = 2, - ACTIONS(1417), 6, + [12812] = 2, + ACTIONS(1405), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1415), 30, + ACTIONS(1403), 30, sym__verbatim_begin, - sym_insert_end, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25842,15 +26831,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11809] = 2, - ACTIONS(1421), 6, + [12853] = 2, + ACTIONS(1437), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1419), 30, + ACTIONS(1435), 30, sym__verbatim_begin, sym_insert_end, anon_sym_LBRACE_, @@ -25881,17 +26870,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11850] = 2, - ACTIONS(1425), 6, + [12894] = 2, + ACTIONS(1401), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1423), 30, + ACTIONS(1399), 30, sym__verbatim_begin, - sym_insert_end, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25920,15 +26909,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11891] = 2, - ACTIONS(1429), 6, + [12935] = 2, + ACTIONS(1443), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1427), 30, + ACTIONS(1441), 30, sym__verbatim_begin, sym_insert_end, anon_sym_LBRACE_, @@ -25959,17 +26948,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11932] = 2, - ACTIONS(1433), 6, + [12976] = 2, + ACTIONS(1363), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1431), 30, + ACTIONS(1361), 30, sym__verbatim_begin, - sym_insert_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25998,17 +26987,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [11973] = 2, - ACTIONS(1437), 6, + [13017] = 2, + ACTIONS(1359), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1435), 30, + ACTIONS(1357), 30, sym__verbatim_begin, - sym_insert_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26037,17 +27026,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12014] = 2, - ACTIONS(1441), 6, + [13058] = 2, + ACTIONS(1462), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1439), 30, + ACTIONS(1460), 30, sym__verbatim_begin, - sym_insert_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26076,17 +27065,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12055] = 2, - ACTIONS(1445), 6, + [13099] = 2, + ACTIONS(1458), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1443), 30, + ACTIONS(1456), 30, sym__verbatim_begin, - sym_insert_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26115,17 +27104,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12096] = 2, - ACTIONS(1441), 6, + [13140] = 3, + ACTIONS(1487), 1, + sym__verbatim_begin, + ACTIONS(1218), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1439), 30, - sym__verbatim_begin, - sym__square_bracket_span_end, + ACTIONS(1216), 29, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26154,17 +27144,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12137] = 2, - ACTIONS(1451), 6, + [13183] = 2, + ACTIONS(1389), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1449), 30, + ACTIONS(1387), 30, sym__verbatim_begin, - sym_insert_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26193,17 +27183,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12178] = 2, - ACTIONS(1437), 6, + [13224] = 2, + ACTIONS(1433), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1435), 30, + ACTIONS(1431), 30, sym__verbatim_begin, - sym__square_bracket_span_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26232,17 +27222,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12219] = 2, - ACTIONS(1455), 6, + [13265] = 2, + ACTIONS(1454), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1453), 30, + ACTIONS(1452), 30, sym__verbatim_begin, - sym_insert_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26271,17 +27261,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12260] = 2, - ACTIONS(1369), 6, + [13306] = 2, + ACTIONS(1397), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1367), 30, + ACTIONS(1395), 30, sym__verbatim_begin, - sym_emphasis_end, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26310,17 +27300,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12301] = 2, - ACTIONS(1365), 6, + [13347] = 2, + ACTIONS(1355), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1363), 30, + ACTIONS(1353), 30, sym__verbatim_begin, - sym_emphasis_end, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26349,15 +27339,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12342] = 2, - ACTIONS(1361), 6, + [13388] = 2, + ACTIONS(1450), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1359), 30, + ACTIONS(1448), 30, sym__verbatim_begin, sym_emphasis_end, anon_sym_LBRACE_, @@ -26388,17 +27378,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12383] = 2, - ACTIONS(1433), 6, + [13429] = 2, + ACTIONS(1224), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1431), 30, + ACTIONS(1222), 30, sym__verbatim_begin, - sym__square_bracket_span_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26427,17 +27417,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12424] = 3, - ACTIONS(1483), 1, - sym__verbatim_begin, - ACTIONS(1205), 6, + [13470] = 2, + ACTIONS(1450), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1209), 29, + ACTIONS(1448), 30, + sym__verbatim_begin, sym_delete_end, anon_sym_LBRACE_, anon_sym__, @@ -26467,7 +27456,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12467] = 2, + [13511] = 2, ACTIONS(1393), 6, anon_sym_BSLASH, sym_en_dash, @@ -26477,7 +27466,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__text_token1, ACTIONS(1391), 30, sym__verbatim_begin, - sym_delete_end, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26506,17 +27495,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12508] = 2, - ACTIONS(1405), 6, + [13552] = 2, + ACTIONS(1385), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1403), 30, + ACTIONS(1383), 30, sym__verbatim_begin, - sym_delete_end, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26545,15 +27534,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12549] = 2, - ACTIONS(1351), 6, + [13593] = 2, + ACTIONS(1224), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1349), 30, + ACTIONS(1222), 30, sym__verbatim_begin, sym_emphasis_end, anon_sym_LBRACE_, @@ -26584,17 +27573,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12590] = 2, - ACTIONS(1429), 6, + [13634] = 2, + ACTIONS(1454), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1427), 30, + ACTIONS(1452), 30, sym__verbatim_begin, - sym__square_bracket_span_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26623,19 +27612,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12631] = 4, - ACTIONS(1486), 1, - anon_sym_LBRACE, - STATE(409), 1, - sym_comment, - ACTIONS(1224), 5, + [13675] = 2, + ACTIONS(1458), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1222), 29, + ACTIONS(1456), 30, sym__verbatim_begin, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26664,15 +27651,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12676] = 2, - ACTIONS(1232), 6, + [13716] = 2, + ACTIONS(1462), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1230), 30, + ACTIONS(1460), 30, sym__verbatim_begin, sym_delete_end, anon_sym_LBRACE_, @@ -26703,15 +27690,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12717] = 2, - ACTIONS(1351), 6, + [13757] = 2, + ACTIONS(1359), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1349), 30, + ACTIONS(1357), 30, sym__verbatim_begin, sym_delete_end, anon_sym_LBRACE_, @@ -26742,17 +27729,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12758] = 2, - ACTIONS(1425), 6, + [13798] = 2, + ACTIONS(1363), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1423), 30, + ACTIONS(1361), 30, sym__verbatim_begin, - sym__square_bracket_span_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26781,17 +27768,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12799] = 2, - ACTIONS(1405), 6, + [13839] = 2, + ACTIONS(1367), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1403), 30, + ACTIONS(1365), 30, sym__verbatim_begin, - sym_emphasis_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26820,15 +27807,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12840] = 2, - ACTIONS(1361), 6, + [13880] = 2, + ACTIONS(1371), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1359), 30, + ACTIONS(1369), 30, sym__verbatim_begin, sym_delete_end, anon_sym_LBRACE_, @@ -26859,17 +27846,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12881] = 2, - ACTIONS(1365), 6, + [13921] = 4, + ACTIONS(1490), 1, + anon_sym_LBRACE, + STATE(428), 1, + sym_comment, + ACTIONS(1244), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1363), 30, + ACTIONS(1242), 29, sym__verbatim_begin, - sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26898,17 +27887,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12922] = 2, - ACTIONS(1369), 6, + [13966] = 2, + ACTIONS(1381), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1367), 30, + ACTIONS(1379), 30, sym__verbatim_begin, - sym_delete_end, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26937,17 +27926,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [12963] = 2, - ACTIONS(1373), 6, + [14007] = 2, + ACTIONS(1389), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1371), 30, + ACTIONS(1387), 30, sym__verbatim_begin, - sym_delete_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26976,15 +27965,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13004] = 2, - ACTIONS(1377), 6, + [14048] = 2, + ACTIONS(1375), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1375), 30, + ACTIONS(1373), 30, sym__verbatim_begin, sym_delete_end, anon_sym_LBRACE_, @@ -27015,17 +28004,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13045] = 2, - ACTIONS(1381), 6, + [14089] = 2, + ACTIONS(1375), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1379), 30, + ACTIONS(1373), 30, sym__verbatim_begin, - sym_delete_end, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27054,15 +28043,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13086] = 2, - ACTIONS(1385), 6, + [14130] = 2, + ACTIONS(1381), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1383), 30, + ACTIONS(1379), 30, sym__verbatim_begin, sym_delete_end, anon_sym_LBRACE_, @@ -27093,17 +28082,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13127] = 2, - ACTIONS(1393), 6, + [14171] = 2, + ACTIONS(1385), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1391), 30, + ACTIONS(1383), 30, sym__verbatim_begin, - sym_emphasis_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27132,18 +28121,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13168] = 3, - ACTIONS(1488), 1, - sym__verbatim_begin, - ACTIONS(1205), 6, + [14212] = 2, + ACTIONS(1421), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1209), 29, - sym_emphasis_end, + ACTIONS(1419), 30, + sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27172,17 +28160,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13211] = 2, - ACTIONS(1421), 6, + [14253] = 2, + ACTIONS(1393), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1419), 30, + ACTIONS(1391), 30, sym__verbatim_begin, - sym__square_bracket_span_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27211,17 +28199,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13252] = 2, - ACTIONS(1389), 6, + [14294] = 2, + ACTIONS(1462), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1387), 30, + ACTIONS(1460), 30, sym__verbatim_begin, - sym_delete_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27250,17 +28238,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13293] = 2, - ACTIONS(1417), 6, + [14335] = 2, + ACTIONS(1397), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1415), 30, + ACTIONS(1395), 30, sym__verbatim_begin, - sym__square_bracket_span_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27289,15 +28277,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13334] = 2, - ACTIONS(1397), 6, + [14376] = 2, + ACTIONS(1401), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1395), 30, + ACTIONS(1399), 30, sym__verbatim_begin, sym_delete_end, anon_sym_LBRACE_, @@ -27328,15 +28316,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13375] = 2, - ACTIONS(1401), 6, + [14417] = 2, + ACTIONS(1405), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1399), 30, + ACTIONS(1403), 30, sym__verbatim_begin, sym_delete_end, anon_sym_LBRACE_, @@ -27367,17 +28355,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13416] = 2, - ACTIONS(1413), 6, + [14458] = 2, + ACTIONS(1409), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1411), 30, + ACTIONS(1407), 30, sym__verbatim_begin, - sym__square_bracket_span_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27406,15 +28394,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13457] = 2, - ACTIONS(1409), 6, + [14499] = 2, + ACTIONS(1413), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1407), 30, + ACTIONS(1411), 30, sym__verbatim_begin, sym_delete_end, anon_sym_LBRACE_, @@ -27445,17 +28433,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13498] = 2, - ACTIONS(1351), 6, + [14540] = 2, + ACTIONS(1417), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1349), 30, + ACTIONS(1415), 30, sym__verbatim_begin, - sym_strong_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27484,15 +28472,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13539] = 2, - ACTIONS(1413), 6, + [14581] = 2, + ACTIONS(1421), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1411), 30, + ACTIONS(1419), 30, sym__verbatim_begin, sym_delete_end, anon_sym_LBRACE_, @@ -27523,15 +28511,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13580] = 2, - ACTIONS(1417), 6, + [14622] = 2, + ACTIONS(1425), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1415), 30, + ACTIONS(1423), 30, sym__verbatim_begin, sym_delete_end, anon_sym_LBRACE_, @@ -27562,15 +28550,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13621] = 2, - ACTIONS(1421), 6, + [14663] = 2, + ACTIONS(1429), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1419), 30, + ACTIONS(1427), 30, sym__verbatim_begin, sym_delete_end, anon_sym_LBRACE_, @@ -27601,7 +28589,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13662] = 2, + [14704] = 2, ACTIONS(1425), 6, anon_sym_BSLASH, sym_en_dash, @@ -27611,7 +28599,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__text_token1, ACTIONS(1423), 30, sym__verbatim_begin, - sym_delete_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27640,15 +28628,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13703] = 2, - ACTIONS(1429), 6, + [14745] = 2, + ACTIONS(1437), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1427), 30, + ACTIONS(1435), 30, sym__verbatim_begin, sym_delete_end, anon_sym_LBRACE_, @@ -27679,17 +28667,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13744] = 2, - ACTIONS(1433), 6, + [14786] = 2, + ACTIONS(1371), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1431), 30, + ACTIONS(1369), 30, sym__verbatim_begin, - sym_delete_end, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27718,15 +28706,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13785] = 2, - ACTIONS(1437), 6, + [14827] = 2, + ACTIONS(1443), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1435), 30, + ACTIONS(1441), 30, sym__verbatim_begin, sym_delete_end, anon_sym_LBRACE_, @@ -27757,17 +28745,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13826] = 2, - ACTIONS(1441), 6, + [14868] = 3, + ACTIONS(1492), 1, + sym__verbatim_begin, + ACTIONS(1218), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1439), 30, - sym__verbatim_begin, - sym_delete_end, + ACTIONS(1216), 29, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27796,17 +28785,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13867] = 2, - ACTIONS(1445), 6, + [14911] = 2, + ACTIONS(1367), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1443), 30, + ACTIONS(1365), 30, sym__verbatim_begin, - sym_delete_end, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27835,15 +28824,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13908] = 2, - ACTIONS(1355), 6, + [14952] = 2, + ACTIONS(1363), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1353), 30, + ACTIONS(1361), 30, sym__verbatim_begin, sym__square_bracket_span_end, anon_sym_LBRACE_, @@ -27874,17 +28863,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13949] = 2, - ACTIONS(1451), 6, + [14993] = 2, + ACTIONS(1359), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1449), 30, + ACTIONS(1357), 30, sym__verbatim_begin, - sym_delete_end, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27913,17 +28902,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [13990] = 2, - ACTIONS(1409), 6, + [15034] = 3, + ACTIONS(1495), 1, + sym__verbatim_begin, + ACTIONS(1218), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1407), 30, - sym__verbatim_begin, - sym__square_bracket_span_end, + ACTIONS(1216), 29, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27942,6 +28931,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -27952,17 +28942,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14031] = 2, - ACTIONS(1455), 6, + [15077] = 2, + ACTIONS(1389), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1453), 30, + ACTIONS(1387), 30, sym__verbatim_begin, - sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27981,6 +28970,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -27991,17 +28981,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14072] = 2, - ACTIONS(1401), 6, + [15118] = 2, + ACTIONS(1433), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1399), 30, + ACTIONS(1431), 30, sym__verbatim_begin, - sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28020,6 +29009,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -28030,15 +29020,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14113] = 2, - ACTIONS(1397), 6, + [15159] = 2, + ACTIONS(1462), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1395), 30, + ACTIONS(1460), 30, sym__verbatim_begin, sym__square_bracket_span_end, anon_sym_LBRACE_, @@ -28069,17 +29059,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14154] = 2, - ACTIONS(1389), 6, + [15200] = 2, + ACTIONS(1443), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1387), 30, + ACTIONS(1441), 30, sym__verbatim_begin, - sym__square_bracket_span_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28108,17 +29098,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14195] = 2, - ACTIONS(1455), 6, + [15241] = 2, + ACTIONS(1458), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1453), 30, + ACTIONS(1456), 30, sym__verbatim_begin, - ts_builtin_sym_end, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28147,17 +29137,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14236] = 3, - ACTIONS(1491), 1, - sym__verbatim_begin, - ACTIONS(1205), 6, + [15282] = 2, + ACTIONS(1224), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1209), 29, + ACTIONS(1222), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28187,15 +29176,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14279] = 2, - ACTIONS(1393), 6, + [15323] = 2, + ACTIONS(1450), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1391), 30, + ACTIONS(1448), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -28226,16 +29215,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14320] = 2, - ACTIONS(1405), 6, + [15364] = 2, + ACTIONS(1454), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1403), 30, + ACTIONS(1452), 30, sym__verbatim_begin, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28254,7 +29244,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -28265,15 +29254,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14361] = 2, - ACTIONS(1437), 6, + [15405] = 2, + ACTIONS(1429), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1435), 30, + ACTIONS(1427), 30, sym__verbatim_begin, ts_builtin_sym_end, anon_sym_LBRACE_, @@ -28304,15 +29293,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14402] = 2, - ACTIONS(1451), 6, + [15446] = 2, + ACTIONS(1437), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1449), 30, + ACTIONS(1435), 30, sym__verbatim_begin, ts_builtin_sym_end, anon_sym_LBRACE_, @@ -28343,15 +29332,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14443] = 2, - ACTIONS(1232), 6, + [15487] = 2, + ACTIONS(1454), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1230), 30, + ACTIONS(1452), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -28382,15 +29371,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14484] = 2, - ACTIONS(1351), 6, + [15528] = 2, + ACTIONS(1458), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1349), 30, + ACTIONS(1456), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -28421,17 +29410,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14525] = 2, - ACTIONS(1441), 6, + [15569] = 2, + ACTIONS(1462), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1439), 30, + ACTIONS(1460), 30, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28450,6 +29438,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -28460,17 +29449,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14566] = 2, - ACTIONS(1385), 6, + [15610] = 2, + ACTIONS(1359), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1383), 30, + ACTIONS(1357), 30, sym__verbatim_begin, - sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28489,6 +29477,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -28499,15 +29488,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14607] = 2, - ACTIONS(1361), 6, + [15651] = 2, + ACTIONS(1363), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1359), 30, + ACTIONS(1361), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -28538,15 +29527,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14648] = 2, - ACTIONS(1365), 6, + [15692] = 2, + ACTIONS(1367), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1363), 30, + ACTIONS(1365), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -28577,15 +29566,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14689] = 2, - ACTIONS(1369), 6, + [15733] = 2, + ACTIONS(1371), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1367), 30, + ACTIONS(1369), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -28616,16 +29605,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14730] = 2, - ACTIONS(1373), 6, + [15774] = 2, + ACTIONS(1450), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1371), 30, + ACTIONS(1448), 30, sym__verbatim_begin, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28644,7 +29634,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -28655,16 +29644,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14771] = 2, - ACTIONS(1377), 6, + [15815] = 2, + ACTIONS(1224), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1375), 30, + ACTIONS(1222), 30, sym__verbatim_begin, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28683,7 +29673,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -28694,16 +29683,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14812] = 2, - ACTIONS(1381), 6, + [15856] = 2, + ACTIONS(1433), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1379), 30, + ACTIONS(1431), 30, sym__verbatim_begin, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28722,7 +29712,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -28733,15 +29722,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14853] = 2, - ACTIONS(1385), 6, + [15897] = 2, + ACTIONS(1375), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1383), 30, + ACTIONS(1373), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -28772,15 +29761,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14894] = 2, - ACTIONS(1381), 6, + [15938] = 2, + ACTIONS(1389), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1379), 30, + ACTIONS(1387), 30, sym__verbatim_begin, sym__square_bracket_span_end, anon_sym_LBRACE_, @@ -28811,17 +29800,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14935] = 2, - ACTIONS(1377), 6, + [15979] = 2, + ACTIONS(1381), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1375), 30, + ACTIONS(1379), 30, sym__verbatim_begin, - sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28840,6 +29828,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -28850,17 +29839,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [14976] = 2, - ACTIONS(1373), 6, + [16020] = 2, + ACTIONS(1385), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1371), 30, + ACTIONS(1383), 30, sym__verbatim_begin, - sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28879,6 +29867,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -28889,16 +29878,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15017] = 2, - ACTIONS(1389), 6, + [16061] = 3, + ACTIONS(1498), 1, + sym__verbatim_begin, + ACTIONS(1218), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1387), 30, - sym__verbatim_begin, + ACTIONS(1216), 29, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28917,7 +29908,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -28928,17 +29918,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15058] = 2, - ACTIONS(1369), 6, + [16104] = 2, + ACTIONS(1393), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1367), 30, + ACTIONS(1391), 30, sym__verbatim_begin, - sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28957,6 +29946,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -28967,15 +29957,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15099] = 2, - ACTIONS(1397), 6, + [16145] = 2, + ACTIONS(1355), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1395), 30, + ACTIONS(1353), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -29006,15 +29996,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15140] = 2, - ACTIONS(1401), 6, + [16186] = 2, + ACTIONS(1397), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1399), 30, + ACTIONS(1395), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -29045,17 +30035,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15181] = 2, - ACTIONS(1365), 6, + [16227] = 2, + ACTIONS(1401), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1363), 30, + ACTIONS(1399), 30, sym__verbatim_begin, - sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29074,6 +30063,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -29084,15 +30074,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15222] = 2, - ACTIONS(1409), 6, + [16268] = 2, + ACTIONS(1405), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1407), 30, + ACTIONS(1403), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -29123,15 +30113,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15263] = 2, - ACTIONS(1355), 6, + [16309] = 2, + ACTIONS(1409), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1353), 30, + ACTIONS(1407), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -29162,7 +30152,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15304] = 2, + [16350] = 2, ACTIONS(1413), 6, anon_sym_BSLASH, sym_en_dash, @@ -29201,7 +30191,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15345] = 2, + [16391] = 2, ACTIONS(1417), 6, anon_sym_BSLASH, sym_en_dash, @@ -29240,7 +30230,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15386] = 2, + [16432] = 2, ACTIONS(1421), 6, anon_sym_BSLASH, sym_en_dash, @@ -29279,7 +30269,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15427] = 2, + [16473] = 2, ACTIONS(1425), 6, anon_sym_BSLASH, sym_en_dash, @@ -29318,7 +30308,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15468] = 2, + [16514] = 2, ACTIONS(1429), 6, anon_sym_BSLASH, sym_en_dash, @@ -29357,16 +30347,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15509] = 2, - ACTIONS(1433), 6, + [16555] = 3, + ACTIONS(1501), 1, + sym__verbatim_begin, + ACTIONS(1218), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1431), 30, - sym__verbatim_begin, + ACTIONS(1216), 29, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29385,7 +30377,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -29396,7 +30387,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15550] = 2, + [16598] = 2, ACTIONS(1437), 6, anon_sym_BSLASH, sym_en_dash, @@ -29435,15 +30426,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15591] = 2, - ACTIONS(1441), 6, + [16639] = 2, + ACTIONS(1443), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1439), 30, + ACTIONS(1441), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -29474,16 +30465,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15632] = 2, - ACTIONS(1445), 6, + [16680] = 2, + ACTIONS(1506), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1443), 30, + ACTIONS(1504), 30, sym__verbatim_begin, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29502,7 +30493,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -29513,17 +30503,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15673] = 2, - ACTIONS(1361), 6, + [16720] = 3, + ACTIONS(1508), 1, + sym__verbatim_begin, + ACTIONS(1218), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1359), 30, - sym__verbatim_begin, - sym__square_bracket_span_end, + ACTIONS(1216), 28, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29552,16 +30542,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15714] = 2, - ACTIONS(1451), 6, + [16762] = 2, + ACTIONS(1513), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1449), 30, + ACTIONS(1511), 30, sym__verbatim_begin, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29580,7 +30570,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -29591,17 +30580,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15755] = 2, - ACTIONS(1445), 6, + [16802] = 2, + ACTIONS(1517), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1443), 30, + ACTIONS(1515), 30, sym__verbatim_begin, - ts_builtin_sym_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29630,16 +30618,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15796] = 2, - ACTIONS(1455), 6, + [16842] = 2, + ACTIONS(1521), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1453), 30, + ACTIONS(1519), 30, sym__verbatim_begin, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29658,7 +30646,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -29669,18 +30656,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15837] = 3, - ACTIONS(1494), 1, - sym__verbatim_begin, - ACTIONS(1205), 6, + [16882] = 2, + ACTIONS(1517), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1209), 29, - ts_builtin_sym_end, + ACTIONS(1515), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29699,6 +30683,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -29709,17 +30694,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15880] = 2, - ACTIONS(1351), 6, + [16922] = 2, + ACTIONS(1513), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1349), 30, + ACTIONS(1511), 30, sym__verbatim_begin, - sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29738,6 +30721,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -29748,17 +30732,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15921] = 2, - ACTIONS(1232), 6, + [16962] = 2, + ACTIONS(1506), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1230), 30, + ACTIONS(1504), 30, sym__verbatim_begin, - sym__square_bracket_span_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29787,17 +30770,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [15962] = 2, - ACTIONS(1405), 6, + [17002] = 2, + ACTIONS(1525), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1403), 30, + ACTIONS(1523), 30, sym__verbatim_begin, - sym__square_bracket_span_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29826,18 +30808,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16003] = 3, - ACTIONS(1497), 1, - sym__verbatim_begin, - ACTIONS(1205), 6, + [17042] = 2, + ACTIONS(1529), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1209), 29, - sym__square_bracket_span_end, + ACTIONS(1527), 30, + sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29866,17 +30846,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16046] = 2, - ACTIONS(1393), 6, + [17082] = 2, + ACTIONS(1525), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1391), 30, + ACTIONS(1523), 30, sym__verbatim_begin, - sym__square_bracket_span_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29905,16 +30884,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16087] = 2, - ACTIONS(1502), 5, + [17122] = 2, + ACTIONS(1529), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1500), 30, + ACTIONS(1527), 30, sym__verbatim_begin, - sym_subscript_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29943,16 +30922,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16127] = 2, - ACTIONS(1232), 6, + [17162] = 2, + ACTIONS(1525), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1230), 29, + ACTIONS(1523), 30, sym__verbatim_begin, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29981,16 +30960,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16167] = 2, - ACTIONS(1506), 5, + [17202] = 2, + ACTIONS(1529), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1504), 30, + ACTIONS(1527), 30, sym__verbatim_begin, - sym_strong_end, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30019,16 +30998,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16207] = 2, - ACTIONS(1510), 5, + [17242] = 2, + ACTIONS(1529), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1508), 30, + ACTIONS(1527), 30, sym__verbatim_begin, - sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30047,6 +31025,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -30057,16 +31036,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16247] = 2, - ACTIONS(1506), 5, + [17282] = 2, + ACTIONS(1525), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1504), 30, + ACTIONS(1523), 30, sym__verbatim_begin, - sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30085,6 +31063,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -30095,15 +31074,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16287] = 2, - ACTIONS(1514), 5, + [17322] = 2, + ACTIONS(1506), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1512), 30, + ACTIONS(1504), 30, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30122,7 +31102,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -30133,15 +31112,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16327] = 2, - ACTIONS(1502), 5, + [17362] = 2, + ACTIONS(1513), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1500), 30, + ACTIONS(1511), 30, sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30160,7 +31140,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -30171,15 +31150,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16367] = 2, - ACTIONS(1518), 5, + [17402] = 2, + ACTIONS(1517), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1516), 30, + ACTIONS(1515), 30, sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30198,7 +31178,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -30209,15 +31188,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16407] = 2, - ACTIONS(1510), 5, + [17442] = 2, + ACTIONS(1521), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1508), 30, + ACTIONS(1519), 30, sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30236,7 +31216,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -30247,16 +31226,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16447] = 2, - ACTIONS(1502), 5, + [17482] = 2, + ACTIONS(1506), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1500), 30, + ACTIONS(1504), 30, sym__verbatim_begin, - ts_builtin_sym_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30285,16 +31264,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16487] = 2, - ACTIONS(1518), 5, + [17522] = 2, + ACTIONS(1506), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1516), 30, + ACTIONS(1504), 30, sym__verbatim_begin, - sym_subscript_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30323,16 +31302,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16527] = 2, - ACTIONS(1518), 5, + [17562] = 2, + ACTIONS(1521), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1516), 30, + ACTIONS(1519), 30, sym__verbatim_begin, - sym_strong_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30361,16 +31340,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16567] = 2, - ACTIONS(1502), 5, + [17602] = 2, + ACTIONS(1517), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1500), 30, + ACTIONS(1515), 30, sym__verbatim_begin, - sym_strong_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30399,15 +31378,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16607] = 2, - ACTIONS(1506), 5, + [17642] = 2, + ACTIONS(1513), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1504), 30, + ACTIONS(1511), 30, sym__verbatim_begin, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30426,7 +31406,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -30437,16 +31416,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16647] = 2, - ACTIONS(1514), 5, + [17682] = 2, + ACTIONS(1513), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1512), 30, + ACTIONS(1511), 30, sym__verbatim_begin, - ts_builtin_sym_end, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30475,16 +31454,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16687] = 2, - ACTIONS(1514), 5, + [17722] = 2, + ACTIONS(1521), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1512), 30, + ACTIONS(1519), 30, sym__verbatim_begin, - sym_strong_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30513,16 +31492,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16727] = 2, - ACTIONS(1510), 5, + [17762] = 2, + ACTIONS(1529), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1508), 30, + ACTIONS(1527), 30, sym__verbatim_begin, - sym__square_bracket_span_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30551,16 +31530,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16767] = 2, - ACTIONS(1506), 5, + [17802] = 2, + ACTIONS(1517), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1504), 30, + ACTIONS(1515), 30, sym__verbatim_begin, - sym_superscript_end, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30589,16 +31568,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16807] = 2, - ACTIONS(1506), 5, + [17842] = 2, + ACTIONS(1525), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1504), 30, + ACTIONS(1523), 30, sym__verbatim_begin, - ts_builtin_sym_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30627,16 +31606,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16847] = 2, - ACTIONS(1518), 5, + [17882] = 2, + ACTIONS(1525), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1516), 30, + ACTIONS(1523), 30, sym__verbatim_begin, - sym__square_bracket_span_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30665,16 +31644,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16887] = 2, - ACTIONS(1514), 5, + [17922] = 2, + ACTIONS(1529), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1512), 30, + ACTIONS(1527), 30, sym__verbatim_begin, - sym_delete_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30703,16 +31682,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16927] = 2, - ACTIONS(1502), 5, + [17962] = 2, + ACTIONS(1506), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1500), 30, + ACTIONS(1504), 30, sym__verbatim_begin, - sym_delete_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30741,16 +31720,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [16967] = 2, - ACTIONS(1518), 5, + [18002] = 2, + ACTIONS(1521), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1516), 30, + ACTIONS(1519), 30, sym__verbatim_begin, - sym_delete_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30779,16 +31758,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17007] = 2, - ACTIONS(1510), 5, + [18042] = 2, + ACTIONS(1517), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1508), 30, + ACTIONS(1515), 30, sym__verbatim_begin, - sym_delete_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30817,16 +31796,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17047] = 2, - ACTIONS(1510), 5, + [18082] = 2, + ACTIONS(1513), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1508), 30, + ACTIONS(1511), 30, sym__verbatim_begin, - sym_superscript_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30855,16 +31834,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17087] = 2, - ACTIONS(1506), 5, + [18122] = 2, + ACTIONS(1513), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1504), 30, + ACTIONS(1511), 30, sym__verbatim_begin, - sym_delete_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30893,16 +31872,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17127] = 2, - ACTIONS(1518), 5, + [18162] = 2, + ACTIONS(1529), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1516), 30, + ACTIONS(1527), 30, sym__verbatim_begin, - sym_superscript_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30931,16 +31910,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17167] = 2, - ACTIONS(1506), 5, + [18202] = 2, + ACTIONS(1525), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1504), 30, + ACTIONS(1523), 30, sym__verbatim_begin, - sym_emphasis_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30969,16 +31948,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17207] = 2, - ACTIONS(1514), 5, + [18242] = 3, + ACTIONS(1531), 1, + sym_strong_end, + ACTIONS(1244), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1512), 30, + ACTIONS(1242), 29, sym__verbatim_begin, - sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31007,16 +31987,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17247] = 2, - ACTIONS(1502), 5, + [18284] = 2, + ACTIONS(1521), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1500), 30, + ACTIONS(1519), 30, sym__verbatim_begin, - sym_insert_end, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31045,16 +32025,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17287] = 2, - ACTIONS(1518), 5, + [18324] = 3, + ACTIONS(1533), 1, + sym_strong_end, + ACTIONS(1244), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1516), 30, + ACTIONS(1242), 29, sym__verbatim_begin, - sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31083,14 +32064,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17327] = 2, - ACTIONS(1502), 5, + [18366] = 2, + ACTIONS(1506), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1500), 30, + ACTIONS(1504), 30, sym__verbatim_begin, sym__square_bracket_span_end, anon_sym_LBRACE_, @@ -31121,16 +32102,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17367] = 2, - ACTIONS(1510), 5, + [18406] = 2, + ACTIONS(1506), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1508), 30, + ACTIONS(1504), 30, sym__verbatim_begin, - sym_insert_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31159,16 +32140,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17407] = 2, - ACTIONS(1514), 5, + [18446] = 2, + ACTIONS(1521), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1512), 30, + ACTIONS(1519), 30, sym__verbatim_begin, - sym__square_bracket_span_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31197,16 +32178,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17447] = 2, - ACTIONS(1506), 5, + [18486] = 2, + ACTIONS(1517), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1504), 30, + ACTIONS(1515), 30, sym__verbatim_begin, - sym_insert_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31235,16 +32216,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17487] = 2, - ACTIONS(1510), 5, + [18526] = 2, + ACTIONS(1513), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1508), 30, + ACTIONS(1511), 30, sym__verbatim_begin, - sym_emphasis_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31273,17 +32254,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17527] = 3, - ACTIONS(1520), 1, - sym_strong_end, - ACTIONS(1224), 5, + [18566] = 2, + ACTIONS(1529), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1222), 29, + ACTIONS(1527), 30, sym__verbatim_begin, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31312,16 +32292,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17569] = 2, - ACTIONS(1518), 5, + [18606] = 2, + ACTIONS(1443), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1516), 30, + ACTIONS(1441), 29, sym__verbatim_begin, - sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31350,16 +32330,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17609] = 2, - ACTIONS(1514), 5, + [18646] = 2, + ACTIONS(1389), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1512), 30, + ACTIONS(1387), 29, sym__verbatim_begin, - sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31388,17 +32368,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17649] = 3, - ACTIONS(1522), 1, - sym__verbatim_begin, - ACTIONS(1205), 6, + [18686] = 2, + ACTIONS(1433), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1209), 28, + ACTIONS(1431), 29, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31427,16 +32406,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17691] = 2, - ACTIONS(1393), 6, + [18726] = 2, + ACTIONS(1525), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1391), 29, + ACTIONS(1523), 30, sym__verbatim_begin, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31465,16 +32444,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17731] = 2, - ACTIONS(1405), 6, + [18766] = 2, + ACTIONS(1517), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1403), 29, + ACTIONS(1515), 30, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31503,16 +32482,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17771] = 2, - ACTIONS(1502), 5, + [18806] = 2, + ACTIONS(1224), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1500), 30, + ACTIONS(1222), 29, sym__verbatim_begin, - sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31541,16 +32520,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17811] = 2, - ACTIONS(1502), 5, + [18846] = 2, + ACTIONS(1450), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1500), 30, + ACTIONS(1448), 29, sym__verbatim_begin, - sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31579,16 +32558,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17851] = 2, - ACTIONS(1351), 6, + [18886] = 2, + ACTIONS(1529), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1349), 29, + ACTIONS(1527), 30, sym__verbatim_begin, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31617,16 +32596,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17891] = 2, - ACTIONS(1514), 5, + [18926] = 2, + ACTIONS(1437), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1512), 30, + ACTIONS(1435), 29, sym__verbatim_begin, - sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31655,16 +32634,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17931] = 2, - ACTIONS(1518), 5, + [18966] = 2, + ACTIONS(1521), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1516), 30, + ACTIONS(1519), 30, sym__verbatim_begin, - sym_highlighted_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31693,15 +32672,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [17971] = 2, - ACTIONS(1361), 6, + [19006] = 2, + ACTIONS(1454), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1359), 29, + ACTIONS(1452), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -31731,15 +32710,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18011] = 2, - ACTIONS(1365), 6, + [19046] = 2, + ACTIONS(1458), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1363), 29, + ACTIONS(1456), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -31769,15 +32748,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18051] = 2, - ACTIONS(1369), 6, + [19086] = 2, + ACTIONS(1462), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1367), 29, + ACTIONS(1460), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -31807,15 +32786,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18091] = 2, - ACTIONS(1373), 6, + [19126] = 2, + ACTIONS(1359), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1371), 29, + ACTIONS(1357), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -31845,15 +32824,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18131] = 2, - ACTIONS(1377), 6, + [19166] = 2, + ACTIONS(1363), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1375), 29, + ACTIONS(1361), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -31883,15 +32862,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18171] = 2, - ACTIONS(1381), 6, + [19206] = 2, + ACTIONS(1367), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1379), 29, + ACTIONS(1365), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -31921,15 +32900,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18211] = 2, - ACTIONS(1385), 6, + [19246] = 2, + ACTIONS(1371), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1383), 29, + ACTIONS(1369), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -31959,16 +32938,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18251] = 2, - ACTIONS(1510), 5, + [19286] = 2, + ACTIONS(1525), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1508), 30, + ACTIONS(1523), 30, sym__verbatim_begin, - sym_highlighted_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31997,17 +32976,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18291] = 3, - ACTIONS(1525), 1, - sym_strong_end, - ACTIONS(1224), 5, + [19326] = 2, + ACTIONS(1506), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1222), 29, + ACTIONS(1504), 30, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32036,15 +33014,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18333] = 2, - ACTIONS(1389), 6, + [19366] = 2, + ACTIONS(1375), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1387), 29, + ACTIONS(1373), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32074,16 +33052,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18373] = 2, - ACTIONS(1506), 5, + [19406] = 2, + ACTIONS(1513), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1504), 30, + ACTIONS(1511), 30, sym__verbatim_begin, - sym_subscript_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32112,15 +33090,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18413] = 2, - ACTIONS(1397), 6, + [19446] = 2, + ACTIONS(1381), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1395), 29, + ACTIONS(1379), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32150,15 +33128,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18453] = 2, - ACTIONS(1401), 6, + [19486] = 2, + ACTIONS(1385), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1399), 29, + ACTIONS(1383), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32188,16 +33166,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18493] = 2, - ACTIONS(1514), 5, + [19526] = 2, + ACTIONS(1529), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1512), 30, + ACTIONS(1527), 30, sym__verbatim_begin, - sym_emphasis_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32226,15 +33204,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18533] = 2, - ACTIONS(1409), 6, + [19566] = 2, + ACTIONS(1393), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1407), 29, + ACTIONS(1391), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32264,7 +33242,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18573] = 2, + [19606] = 2, ACTIONS(1355), 6, anon_sym_BSLASH, sym_en_dash, @@ -32302,15 +33280,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18613] = 2, - ACTIONS(1413), 6, + [19646] = 2, + ACTIONS(1397), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1411), 29, + ACTIONS(1395), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32340,15 +33318,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18653] = 2, - ACTIONS(1417), 6, + [19686] = 2, + ACTIONS(1401), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1415), 29, + ACTIONS(1399), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32378,15 +33356,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18693] = 2, - ACTIONS(1421), 6, + [19726] = 2, + ACTIONS(1405), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1419), 29, + ACTIONS(1403), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32416,15 +33394,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18733] = 2, - ACTIONS(1425), 6, + [19766] = 2, + ACTIONS(1409), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1423), 29, + ACTIONS(1407), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32454,15 +33432,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18773] = 2, - ACTIONS(1429), 6, + [19806] = 2, + ACTIONS(1413), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1427), 29, + ACTIONS(1411), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32492,15 +33470,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18813] = 2, - ACTIONS(1433), 6, + [19846] = 2, + ACTIONS(1417), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1431), 29, + ACTIONS(1415), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32530,15 +33508,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18853] = 2, - ACTIONS(1437), 6, + [19886] = 2, + ACTIONS(1421), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1435), 29, + ACTIONS(1419), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32568,15 +33546,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18893] = 2, - ACTIONS(1441), 6, + [19926] = 2, + ACTIONS(1425), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1439), 29, + ACTIONS(1423), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32606,15 +33584,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18933] = 2, - ACTIONS(1445), 6, + [19966] = 2, + ACTIONS(1429), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1443), 29, + ACTIONS(1427), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32644,16 +33622,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [18973] = 2, - ACTIONS(1510), 5, + [20006] = 3, + ACTIONS(1531), 1, + sym_emphasis_end, + ACTIONS(1244), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1508), 30, + ACTIONS(1242), 29, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32682,16 +33661,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19013] = 2, - ACTIONS(1451), 6, + [20048] = 2, + ACTIONS(1525), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1449), 29, + ACTIONS(1523), 30, sym__verbatim_begin, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32720,16 +33699,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19053] = 2, - ACTIONS(1502), 5, + [20088] = 2, + ACTIONS(1517), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1500), 30, + ACTIONS(1515), 30, sym__verbatim_begin, - sym_emphasis_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32758,15 +33737,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19093] = 2, - ACTIONS(1455), 6, + [20128] = 2, + ACTIONS(1521), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1453), 29, + ACTIONS(1519), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32786,6 +33764,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -32796,7 +33775,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19133] = 2, + [20168] = 2, ACTIONS(1506), 5, anon_sym_BSLASH, sym_en_dash, @@ -32805,7 +33784,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__text_token1, ACTIONS(1504), 30, sym__verbatim_begin, - sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32824,6 +33802,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -32834,16 +33813,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19173] = 3, - ACTIONS(1525), 1, + [20208] = 3, + ACTIONS(1533), 1, sym_emphasis_end, - ACTIONS(1224), 5, + ACTIONS(1244), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1222), 29, + ACTIONS(1242), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32873,14 +33852,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19215] = 2, - ACTIONS(1514), 5, + [20250] = 2, + ACTIONS(1521), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1512), 30, + ACTIONS(1519), 30, sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, @@ -32911,16 +33890,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19255] = 2, - ACTIONS(1518), 5, + [20290] = 2, + ACTIONS(1517), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1516), 30, + ACTIONS(1515), 30, sym__verbatim_begin, - ts_builtin_sym_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32949,14 +33928,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19295] = 2, - ACTIONS(1510), 5, + [20330] = 2, + ACTIONS(1513), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1508), 30, + ACTIONS(1511), 30, sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, @@ -32987,16 +33966,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19335] = 3, - ACTIONS(1520), 1, - sym_emphasis_end, - ACTIONS(1224), 5, + [20370] = 2, + ACTIONS(1521), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1222), 29, + ACTIONS(1519), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -33026,14 +34003,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19377] = 2, - ACTIONS(1514), 5, + [20409] = 2, + ACTIONS(1506), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1512), 29, + ACTIONS(1504), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -33063,14 +34040,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19416] = 2, - ACTIONS(1502), 5, + [20448] = 2, + ACTIONS(1525), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1500), 29, + ACTIONS(1523), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -33100,14 +34077,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19455] = 2, - ACTIONS(1518), 5, + [20487] = 2, + ACTIONS(1529), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1516), 29, + ACTIONS(1527), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -33137,14 +34114,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19494] = 2, - ACTIONS(1510), 5, + [20526] = 2, + ACTIONS(1517), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1508), 29, + ACTIONS(1515), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -33174,14 +34151,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19533] = 2, - ACTIONS(1506), 5, + [20565] = 2, + ACTIONS(1513), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1504), 29, + ACTIONS(1511), 29, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -33211,514 +34188,514 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, sym__newline, - [19572] = 9, - ACTIONS(1527), 1, + [20604] = 9, + ACTIONS(1535), 1, sym__id, - ACTIONS(1529), 1, + ACTIONS(1537), 1, anon_sym_PERCENT, - ACTIONS(1533), 1, + ACTIONS(1541), 1, anon_sym_DOT, - ACTIONS(1535), 1, + ACTIONS(1543), 1, sym__curly_bracket_span_end, - STATE(592), 1, + STATE(610), 1, aux_sym_inline_attribute_repeat1, - STATE(616), 1, + STATE(633), 1, sym__comment_with_newline, - STATE(995), 1, + STATE(1017), 1, sym_key, - STATE(615), 2, + STATE(634), 2, sym_class, sym_key_value, - ACTIONS(1531), 3, + ACTIONS(1539), 3, sym__whitespace1, sym__newline, sym_identifier, - [19603] = 9, - ACTIONS(1527), 1, + [20635] = 9, + ACTIONS(1535), 1, sym__id, - ACTIONS(1529), 1, + ACTIONS(1537), 1, anon_sym_PERCENT, - ACTIONS(1533), 1, + ACTIONS(1541), 1, anon_sym_DOT, - ACTIONS(1537), 1, + ACTIONS(1545), 1, sym__curly_bracket_span_end, - STATE(592), 1, + STATE(631), 1, aux_sym_inline_attribute_repeat1, - STATE(616), 1, + STATE(633), 1, sym__comment_with_newline, - STATE(995), 1, + STATE(1017), 1, sym_key, - STATE(615), 2, + STATE(634), 2, sym_class, sym_key_value, - ACTIONS(1531), 3, + ACTIONS(1539), 3, sym__whitespace1, sym__newline, sym_identifier, - [19634] = 9, - ACTIONS(1527), 1, + [20666] = 9, + ACTIONS(1535), 1, sym__id, - ACTIONS(1529), 1, + ACTIONS(1537), 1, anon_sym_PERCENT, - ACTIONS(1533), 1, + ACTIONS(1541), 1, anon_sym_DOT, - ACTIONS(1539), 1, + ACTIONS(1547), 1, sym__curly_bracket_span_end, - STATE(590), 1, + STATE(631), 1, aux_sym_inline_attribute_repeat1, - STATE(616), 1, + STATE(633), 1, sym__comment_with_newline, - STATE(995), 1, + STATE(1017), 1, sym_key, - STATE(615), 2, + STATE(634), 2, sym_class, sym_key_value, - ACTIONS(1531), 3, + ACTIONS(1539), 3, sym__whitespace1, sym__newline, sym_identifier, - [19665] = 9, - ACTIONS(1527), 1, + [20697] = 9, + ACTIONS(1535), 1, sym__id, - ACTIONS(1529), 1, + ACTIONS(1537), 1, anon_sym_PERCENT, - ACTIONS(1533), 1, - anon_sym_DOT, ACTIONS(1541), 1, + anon_sym_DOT, + ACTIONS(1549), 1, sym__curly_bracket_span_end, - STATE(592), 1, + STATE(611), 1, aux_sym_inline_attribute_repeat1, - STATE(616), 1, + STATE(633), 1, sym__comment_with_newline, - STATE(995), 1, + STATE(1017), 1, sym_key, - STATE(615), 2, + STATE(634), 2, sym_class, sym_key_value, - ACTIONS(1531), 3, + ACTIONS(1539), 3, sym__whitespace1, sym__newline, sym_identifier, - [19696] = 9, - ACTIONS(1527), 1, + [20728] = 9, + ACTIONS(1535), 1, sym__id, - ACTIONS(1529), 1, + ACTIONS(1537), 1, anon_sym_PERCENT, - ACTIONS(1533), 1, + ACTIONS(1541), 1, anon_sym_DOT, - ACTIONS(1543), 1, + ACTIONS(1551), 1, sym__curly_bracket_span_end, - STATE(592), 1, + STATE(631), 1, aux_sym_inline_attribute_repeat1, - STATE(616), 1, + STATE(633), 1, sym__comment_with_newline, - STATE(995), 1, + STATE(1017), 1, sym_key, - STATE(615), 2, + STATE(634), 2, sym_class, sym_key_value, - ACTIONS(1531), 3, + ACTIONS(1539), 3, sym__whitespace1, sym__newline, sym_identifier, - [19727] = 9, - ACTIONS(1545), 1, + [20759] = 9, + ACTIONS(1535), 1, sym__id, - ACTIONS(1548), 1, + ACTIONS(1537), 1, anon_sym_PERCENT, - ACTIONS(1554), 1, + ACTIONS(1541), 1, anon_sym_DOT, - ACTIONS(1557), 1, + ACTIONS(1553), 1, sym__curly_bracket_span_end, - STATE(592), 1, + STATE(631), 1, aux_sym_inline_attribute_repeat1, - STATE(616), 1, + STATE(633), 1, sym__comment_with_newline, - STATE(995), 1, + STATE(1017), 1, sym_key, - STATE(615), 2, + STATE(634), 2, sym_class, sym_key_value, - ACTIONS(1551), 3, + ACTIONS(1539), 3, sym__whitespace1, sym__newline, sym_identifier, - [19758] = 9, - ACTIONS(1527), 1, + [20790] = 9, + ACTIONS(1535), 1, sym__id, - ACTIONS(1529), 1, + ACTIONS(1537), 1, anon_sym_PERCENT, - ACTIONS(1533), 1, + ACTIONS(1541), 1, anon_sym_DOT, - ACTIONS(1559), 1, + ACTIONS(1555), 1, sym__curly_bracket_span_end, - STATE(595), 1, + STATE(618), 1, aux_sym_inline_attribute_repeat1, - STATE(616), 1, + STATE(633), 1, sym__comment_with_newline, - STATE(995), 1, + STATE(1017), 1, sym_key, - STATE(615), 2, + STATE(634), 2, sym_class, sym_key_value, - ACTIONS(1531), 3, + ACTIONS(1539), 3, sym__whitespace1, sym__newline, sym_identifier, - [19789] = 9, - ACTIONS(1527), 1, + [20821] = 9, + ACTIONS(1535), 1, sym__id, - ACTIONS(1529), 1, + ACTIONS(1537), 1, anon_sym_PERCENT, - ACTIONS(1533), 1, + ACTIONS(1541), 1, anon_sym_DOT, - ACTIONS(1561), 1, + ACTIONS(1557), 1, sym__curly_bracket_span_end, - STATE(607), 1, + STATE(629), 1, aux_sym_inline_attribute_repeat1, - STATE(616), 1, + STATE(633), 1, sym__comment_with_newline, - STATE(995), 1, + STATE(1017), 1, sym_key, - STATE(615), 2, + STATE(634), 2, sym_class, sym_key_value, - ACTIONS(1531), 3, + ACTIONS(1539), 3, sym__whitespace1, sym__newline, sym_identifier, - [19820] = 9, - ACTIONS(1527), 1, + [20852] = 9, + ACTIONS(1535), 1, sym__id, - ACTIONS(1529), 1, + ACTIONS(1537), 1, anon_sym_PERCENT, - ACTIONS(1533), 1, + ACTIONS(1541), 1, anon_sym_DOT, - ACTIONS(1563), 1, + ACTIONS(1559), 1, sym__curly_bracket_span_end, - STATE(592), 1, + STATE(631), 1, aux_sym_inline_attribute_repeat1, - STATE(616), 1, + STATE(633), 1, sym__comment_with_newline, - STATE(995), 1, + STATE(1017), 1, sym_key, - STATE(615), 2, + STATE(634), 2, sym_class, sym_key_value, - ACTIONS(1531), 3, + ACTIONS(1539), 3, sym__whitespace1, sym__newline, sym_identifier, - [19851] = 9, - ACTIONS(1527), 1, + [20883] = 9, + ACTIONS(1535), 1, sym__id, - ACTIONS(1529), 1, + ACTIONS(1537), 1, anon_sym_PERCENT, - ACTIONS(1533), 1, + ACTIONS(1541), 1, anon_sym_DOT, - ACTIONS(1565), 1, + ACTIONS(1561), 1, sym__curly_bracket_span_end, - STATE(597), 1, + STATE(631), 1, aux_sym_inline_attribute_repeat1, - STATE(616), 1, + STATE(633), 1, sym__comment_with_newline, - STATE(995), 1, + STATE(1017), 1, sym_key, - STATE(615), 2, + STATE(634), 2, sym_class, sym_key_value, - ACTIONS(1531), 3, + ACTIONS(1539), 3, sym__whitespace1, sym__newline, sym_identifier, - [19882] = 9, - ACTIONS(1527), 1, + [20914] = 9, + ACTIONS(1535), 1, sym__id, - ACTIONS(1529), 1, + ACTIONS(1537), 1, anon_sym_PERCENT, - ACTIONS(1533), 1, + ACTIONS(1541), 1, anon_sym_DOT, - ACTIONS(1567), 1, + ACTIONS(1563), 1, sym__curly_bracket_span_end, - STATE(592), 1, + STATE(620), 1, aux_sym_inline_attribute_repeat1, - STATE(616), 1, + STATE(633), 1, sym__comment_with_newline, - STATE(995), 1, + STATE(1017), 1, sym_key, - STATE(615), 2, + STATE(634), 2, sym_class, sym_key_value, - ACTIONS(1531), 3, + ACTIONS(1539), 3, sym__whitespace1, sym__newline, sym_identifier, - [19913] = 9, - ACTIONS(1527), 1, + [20945] = 9, + ACTIONS(1535), 1, sym__id, - ACTIONS(1529), 1, + ACTIONS(1537), 1, anon_sym_PERCENT, - ACTIONS(1533), 1, + ACTIONS(1541), 1, anon_sym_DOT, - ACTIONS(1569), 1, + ACTIONS(1565), 1, sym__curly_bracket_span_end, - STATE(591), 1, + STATE(631), 1, aux_sym_inline_attribute_repeat1, - STATE(616), 1, + STATE(633), 1, sym__comment_with_newline, - STATE(995), 1, + STATE(1017), 1, sym_key, - STATE(615), 2, + STATE(634), 2, sym_class, sym_key_value, - ACTIONS(1531), 3, + ACTIONS(1539), 3, sym__whitespace1, sym__newline, sym_identifier, - [19944] = 9, - ACTIONS(1527), 1, + [20976] = 9, + ACTIONS(1535), 1, sym__id, - ACTIONS(1529), 1, + ACTIONS(1537), 1, anon_sym_PERCENT, - ACTIONS(1533), 1, + ACTIONS(1541), 1, anon_sym_DOT, - ACTIONS(1571), 1, + ACTIONS(1567), 1, sym__curly_bracket_span_end, - STATE(608), 1, + STATE(622), 1, aux_sym_inline_attribute_repeat1, - STATE(616), 1, + STATE(633), 1, sym__comment_with_newline, - STATE(995), 1, + STATE(1017), 1, sym_key, - STATE(615), 2, + STATE(634), 2, sym_class, sym_key_value, - ACTIONS(1531), 3, + ACTIONS(1539), 3, sym__whitespace1, sym__newline, sym_identifier, - [19975] = 9, - ACTIONS(1527), 1, + [21007] = 9, + ACTIONS(1535), 1, sym__id, - ACTIONS(1529), 1, + ACTIONS(1537), 1, anon_sym_PERCENT, - ACTIONS(1533), 1, + ACTIONS(1541), 1, anon_sym_DOT, - ACTIONS(1573), 1, + ACTIONS(1569), 1, sym__curly_bracket_span_end, - STATE(588), 1, + STATE(631), 1, aux_sym_inline_attribute_repeat1, - STATE(616), 1, + STATE(633), 1, sym__comment_with_newline, - STATE(995), 1, + STATE(1017), 1, sym_key, - STATE(615), 2, + STATE(634), 2, sym_class, sym_key_value, - ACTIONS(1531), 3, + ACTIONS(1539), 3, sym__whitespace1, sym__newline, sym_identifier, - [20006] = 9, - ACTIONS(1527), 1, + [21038] = 9, + ACTIONS(1535), 1, sym__id, - ACTIONS(1529), 1, + ACTIONS(1537), 1, anon_sym_PERCENT, - ACTIONS(1533), 1, + ACTIONS(1541), 1, anon_sym_DOT, - ACTIONS(1575), 1, + ACTIONS(1571), 1, sym__curly_bracket_span_end, - STATE(592), 1, + STATE(614), 1, aux_sym_inline_attribute_repeat1, - STATE(616), 1, + STATE(633), 1, sym__comment_with_newline, - STATE(995), 1, + STATE(1017), 1, sym_key, - STATE(615), 2, + STATE(634), 2, sym_class, sym_key_value, - ACTIONS(1531), 3, + ACTIONS(1539), 3, sym__whitespace1, sym__newline, sym_identifier, - [20037] = 9, - ACTIONS(1527), 1, + [21069] = 9, + ACTIONS(1535), 1, sym__id, - ACTIONS(1529), 1, + ACTIONS(1537), 1, anon_sym_PERCENT, - ACTIONS(1533), 1, + ACTIONS(1541), 1, anon_sym_DOT, - ACTIONS(1577), 1, + ACTIONS(1573), 1, sym__curly_bracket_span_end, - STATE(587), 1, + STATE(631), 1, aux_sym_inline_attribute_repeat1, - STATE(616), 1, + STATE(633), 1, sym__comment_with_newline, - STATE(995), 1, + STATE(1017), 1, sym_key, - STATE(615), 2, + STATE(634), 2, sym_class, sym_key_value, - ACTIONS(1531), 3, + ACTIONS(1539), 3, sym__whitespace1, sym__newline, sym_identifier, - [20068] = 9, - ACTIONS(1527), 1, + [21100] = 9, + ACTIONS(1535), 1, sym__id, - ACTIONS(1529), 1, + ACTIONS(1537), 1, anon_sym_PERCENT, - ACTIONS(1533), 1, + ACTIONS(1541), 1, anon_sym_DOT, - ACTIONS(1579), 1, + ACTIONS(1575), 1, sym__curly_bracket_span_end, - STATE(606), 1, + STATE(626), 1, aux_sym_inline_attribute_repeat1, - STATE(616), 1, + STATE(633), 1, sym__comment_with_newline, - STATE(995), 1, + STATE(1017), 1, sym_key, - STATE(615), 2, + STATE(634), 2, sym_class, sym_key_value, - ACTIONS(1531), 3, + ACTIONS(1539), 3, sym__whitespace1, sym__newline, sym_identifier, - [20099] = 9, - ACTIONS(1527), 1, + [21131] = 9, + ACTIONS(1535), 1, sym__id, - ACTIONS(1529), 1, + ACTIONS(1537), 1, anon_sym_PERCENT, - ACTIONS(1533), 1, + ACTIONS(1541), 1, anon_sym_DOT, - ACTIONS(1581), 1, + ACTIONS(1577), 1, sym__curly_bracket_span_end, - STATE(601), 1, + STATE(631), 1, aux_sym_inline_attribute_repeat1, - STATE(616), 1, + STATE(633), 1, sym__comment_with_newline, - STATE(995), 1, + STATE(1017), 1, sym_key, - STATE(615), 2, + STATE(634), 2, sym_class, sym_key_value, - ACTIONS(1531), 3, + ACTIONS(1539), 3, sym__whitespace1, sym__newline, sym_identifier, - [20130] = 9, - ACTIONS(1527), 1, + [21162] = 9, + ACTIONS(1535), 1, sym__id, - ACTIONS(1529), 1, + ACTIONS(1537), 1, anon_sym_PERCENT, - ACTIONS(1533), 1, + ACTIONS(1541), 1, anon_sym_DOT, - ACTIONS(1583), 1, + ACTIONS(1579), 1, sym__curly_bracket_span_end, - STATE(592), 1, + STATE(624), 1, aux_sym_inline_attribute_repeat1, - STATE(616), 1, + STATE(633), 1, sym__comment_with_newline, - STATE(995), 1, + STATE(1017), 1, sym_key, - STATE(615), 2, + STATE(634), 2, sym_class, sym_key_value, - ACTIONS(1531), 3, + ACTIONS(1539), 3, sym__whitespace1, sym__newline, sym_identifier, - [20161] = 9, - ACTIONS(1527), 1, + [21193] = 9, + ACTIONS(1535), 1, sym__id, - ACTIONS(1529), 1, + ACTIONS(1537), 1, anon_sym_PERCENT, - ACTIONS(1533), 1, + ACTIONS(1541), 1, anon_sym_DOT, - ACTIONS(1585), 1, + ACTIONS(1581), 1, sym__curly_bracket_span_end, - STATE(592), 1, + STATE(617), 1, aux_sym_inline_attribute_repeat1, - STATE(616), 1, + STATE(633), 1, sym__comment_with_newline, - STATE(995), 1, + STATE(1017), 1, sym_key, - STATE(615), 2, + STATE(634), 2, sym_class, sym_key_value, - ACTIONS(1531), 3, + ACTIONS(1539), 3, sym__whitespace1, sym__newline, sym_identifier, - [20192] = 9, - ACTIONS(1527), 1, + [21224] = 9, + ACTIONS(1535), 1, sym__id, - ACTIONS(1529), 1, + ACTIONS(1537), 1, anon_sym_PERCENT, - ACTIONS(1533), 1, + ACTIONS(1541), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1583), 1, sym__curly_bracket_span_end, - STATE(592), 1, + STATE(631), 1, aux_sym_inline_attribute_repeat1, - STATE(616), 1, + STATE(633), 1, sym__comment_with_newline, - STATE(995), 1, + STATE(1017), 1, sym_key, - STATE(615), 2, + STATE(634), 2, sym_class, sym_key_value, - ACTIONS(1531), 3, + ACTIONS(1539), 3, sym__whitespace1, sym__newline, sym_identifier, - [20223] = 9, - ACTIONS(1527), 1, + [21255] = 9, + ACTIONS(1535), 1, sym__id, - ACTIONS(1529), 1, + ACTIONS(1537), 1, anon_sym_PERCENT, - ACTIONS(1533), 1, + ACTIONS(1541), 1, anon_sym_DOT, - ACTIONS(1589), 1, + ACTIONS(1585), 1, sym__curly_bracket_span_end, - STATE(592), 1, + STATE(613), 1, aux_sym_inline_attribute_repeat1, - STATE(616), 1, + STATE(633), 1, sym__comment_with_newline, - STATE(995), 1, + STATE(1017), 1, sym_key, - STATE(615), 2, + STATE(634), 2, sym_class, sym_key_value, - ACTIONS(1531), 3, + ACTIONS(1539), 3, sym__whitespace1, sym__newline, sym_identifier, - [20254] = 9, - ACTIONS(1527), 1, + [21286] = 9, + ACTIONS(1587), 1, sym__id, - ACTIONS(1529), 1, + ACTIONS(1590), 1, anon_sym_PERCENT, - ACTIONS(1533), 1, + ACTIONS(1596), 1, anon_sym_DOT, - ACTIONS(1591), 1, + ACTIONS(1599), 1, sym__curly_bracket_span_end, - STATE(605), 1, + STATE(631), 1, aux_sym_inline_attribute_repeat1, - STATE(616), 1, + STATE(633), 1, sym__comment_with_newline, - STATE(995), 1, + STATE(1017), 1, sym_key, - STATE(615), 2, + STATE(634), 2, sym_class, sym_key_value, - ACTIONS(1531), 3, + ACTIONS(1593), 3, sym__whitespace1, sym__newline, sym_identifier, - [20285] = 1, - ACTIONS(1593), 7, + [21317] = 1, + ACTIONS(1601), 7, sym__curly_bracket_span_end, sym__id, anon_sym_PERCENT, @@ -33726,8 +34703,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_DOT, sym_identifier, - [20295] = 1, - ACTIONS(1595), 7, + [21327] = 1, + ACTIONS(1603), 7, sym__curly_bracket_span_end, sym__id, anon_sym_PERCENT, @@ -33735,8 +34712,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_DOT, sym_identifier, - [20305] = 1, - ACTIONS(1597), 7, + [21337] = 1, + ACTIONS(1605), 7, sym__curly_bracket_span_end, sym__id, anon_sym_PERCENT, @@ -33744,8 +34721,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_DOT, sym_identifier, - [20315] = 1, - ACTIONS(1599), 7, + [21347] = 1, + ACTIONS(1607), 7, sym__curly_bracket_span_end, sym__id, anon_sym_PERCENT, @@ -33753,8 +34730,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_DOT, sym_identifier, - [20325] = 1, - ACTIONS(1601), 7, + [21357] = 1, + ACTIONS(1609), 7, sym__curly_bracket_span_end, sym__id, anon_sym_PERCENT, @@ -33762,8 +34739,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_DOT, sym_identifier, - [20335] = 1, - ACTIONS(1603), 7, + [21367] = 1, + ACTIONS(1611), 7, sym__curly_bracket_span_end, sym__id, anon_sym_PERCENT, @@ -33771,8 +34748,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_DOT, sym_identifier, - [20345] = 1, - ACTIONS(1605), 7, + [21377] = 1, + ACTIONS(1613), 7, sym__curly_bracket_span_end, sym__id, anon_sym_PERCENT, @@ -33780,8 +34757,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_DOT, sym_identifier, - [20355] = 1, - ACTIONS(1607), 7, + [21387] = 1, + ACTIONS(1615), 7, sym__curly_bracket_span_end, sym__id, anon_sym_PERCENT, @@ -33789,8 +34766,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_DOT, sym_identifier, - [20365] = 1, - ACTIONS(1609), 7, + [21397] = 1, + ACTIONS(1617), 7, sym__curly_bracket_span_end, sym__id, anon_sym_PERCENT, @@ -33798,4794 +34775,4820 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_DOT, sym_identifier, - [20375] = 6, - ACTIONS(1611), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(1613), 1, + [21407] = 5, + ACTIONS(1621), 1, anon_sym_LBRACK, - ACTIONS(1615), 1, - anon_sym_LPAREN, - STATE(382), 1, - sym__link_label, - STATE(383), 1, - sym_inline_link_destination, - STATE(1140), 1, - sym__parens_span_begin, - [20394] = 6, - ACTIONS(1617), 1, + ACTIONS(1623), 1, + anon_sym_LBRACE, + STATE(532), 1, + sym_inline_attribute, + STATE(1041), 1, + sym__curly_bracket_span_begin, + ACTIONS(1619), 2, anon_sym_LBRACK_RBRACK, - ACTIONS(1619), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, + [21424] = 5, ACTIONS(1621), 1, + anon_sym_LBRACK, + ACTIONS(1625), 1, + anon_sym_LBRACE, + STATE(531), 1, + sym_inline_attribute, + STATE(977), 1, + sym__curly_bracket_span_begin, + ACTIONS(1619), 2, + anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - STATE(271), 1, - sym__link_label, - STATE(273), 1, - sym_inline_link_destination, - STATE(1039), 1, - sym__parens_span_begin, - [20413] = 6, - ACTIONS(1623), 1, + [21441] = 6, + ACTIONS(1627), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(1625), 1, + ACTIONS(1629), 1, anon_sym_LBRACK, - ACTIONS(1627), 1, + ACTIONS(1631), 1, anon_sym_LPAREN, - STATE(253), 1, + STATE(574), 1, sym__link_label, - STATE(254), 1, + STATE(575), 1, sym_inline_link_destination, - STATE(1110), 1, + STATE(1202), 1, sym__parens_span_begin, - [20432] = 5, - ACTIONS(1631), 1, + [21460] = 5, + ACTIONS(1621), 1, anon_sym_LBRACK, ACTIONS(1633), 1, anon_sym_LBRACE, - STATE(533), 1, + STATE(511), 1, sym_inline_attribute, - STATE(1051), 1, + STATE(993), 1, sym__curly_bracket_span_begin, - ACTIONS(1629), 2, + ACTIONS(1619), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - [20449] = 6, - ACTIONS(1625), 1, + [21477] = 5, + ACTIONS(1621), 1, anon_sym_LBRACK, - ACTIONS(1627), 1, - anon_sym_LPAREN, ACTIONS(1635), 1, + anon_sym_LBRACE, + STATE(553), 1, + sym_inline_attribute, + STATE(1073), 1, + sym__curly_bracket_span_begin, + ACTIONS(1619), 2, + anon_sym_LBRACK_RBRACK, + anon_sym_LPAREN, + [21494] = 6, + ACTIONS(1629), 1, + anon_sym_LBRACK, + ACTIONS(1631), 1, + anon_sym_LPAREN, + ACTIONS(1637), 1, anon_sym_LBRACK_RBRACK, - STATE(250), 1, + STATE(571), 1, sym__link_label, - STATE(251), 1, + STATE(572), 1, sym_inline_link_destination, - STATE(1110), 1, + STATE(1202), 1, sym__parens_span_begin, - [20468] = 6, - ACTIONS(1637), 1, - anon_sym_LBRACK_RBRACK, + [21513] = 6, ACTIONS(1639), 1, - anon_sym_LBRACK, + anon_sym_LBRACK_RBRACK, ACTIONS(1641), 1, + anon_sym_LBRACK, + ACTIONS(1643), 1, anon_sym_LPAREN, - STATE(463), 1, + STATE(465), 1, sym_inline_link_destination, - STATE(471), 1, + STATE(468), 1, sym__link_label, - STATE(1170), 1, + STATE(1192), 1, sym__parens_span_begin, - [20487] = 6, - ACTIONS(1639), 1, - anon_sym_LBRACK, + [21532] = 6, ACTIONS(1641), 1, - anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(1643), 1, + anon_sym_LPAREN, + ACTIONS(1645), 1, anon_sym_LBRACK_RBRACK, - STATE(473), 1, + STATE(470), 1, sym_inline_link_destination, - STATE(475), 1, + STATE(474), 1, sym__link_label, - STATE(1170), 1, + STATE(1192), 1, sym__parens_span_begin, - [20506] = 6, - ACTIONS(1645), 1, - anon_sym_LBRACK_RBRACK, + [21551] = 6, ACTIONS(1647), 1, - anon_sym_LBRACK, + anon_sym_LBRACK_RBRACK, ACTIONS(1649), 1, + anon_sym_LBRACK, + ACTIONS(1651), 1, anon_sym_LPAREN, - STATE(217), 1, - sym__link_label, - STATE(218), 1, + STATE(225), 1, sym_inline_link_destination, - STATE(1100), 1, + STATE(453), 1, + sym__link_label, + STATE(1122), 1, sym__parens_span_begin, - [20525] = 6, - ACTIONS(1647), 1, - anon_sym_LBRACK, + [21570] = 6, ACTIONS(1649), 1, - anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(1651), 1, + anon_sym_LPAREN, + ACTIONS(1653), 1, anon_sym_LBRACK_RBRACK, - STATE(220), 1, + STATE(227), 1, sym__link_label, - STATE(221), 1, + STATE(228), 1, sym_inline_link_destination, - STATE(1100), 1, + STATE(1122), 1, sym__parens_span_begin, - [20544] = 5, - ACTIONS(1631), 1, + [21589] = 5, + ACTIONS(1621), 1, anon_sym_LBRACK, - ACTIONS(1653), 1, + ACTIONS(1655), 1, anon_sym_LBRACE, - STATE(505), 1, + STATE(598), 1, sym_inline_attribute, - STATE(1035), 1, + STATE(1057), 1, sym__curly_bracket_span_begin, - ACTIONS(1629), 2, + ACTIONS(1619), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - [20561] = 6, - ACTIONS(1655), 1, - anon_sym_LBRACK_RBRACK, + [21606] = 6, ACTIONS(1657), 1, - anon_sym_LBRACK, - ACTIONS(1659), 1, - anon_sym_LPAREN, - STATE(376), 1, - sym_inline_link_destination, - STATE(384), 1, - sym__link_label, - STATE(1090), 1, - sym__parens_span_begin, - [20580] = 6, - ACTIONS(1661), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(1663), 1, + ACTIONS(1659), 1, anon_sym_LBRACK, - ACTIONS(1665), 1, + ACTIONS(1661), 1, anon_sym_LPAREN, - STATE(552), 1, + STATE(286), 1, sym__link_label, - STATE(553), 1, + STATE(290), 1, sym_inline_link_destination, - STATE(1180), 1, + STATE(1061), 1, sym__parens_span_begin, - [20599] = 6, - ACTIONS(1667), 1, + [21625] = 5, + ACTIONS(1621), 1, + anon_sym_LBRACK, + ACTIONS(1663), 1, + anon_sym_LBRACE, + STATE(604), 1, + sym_inline_attribute, + STATE(1089), 1, + sym__curly_bracket_span_begin, + ACTIONS(1619), 2, anon_sym_LBRACK_RBRACK, - ACTIONS(1669), 1, + anon_sym_LPAREN, + [21642] = 6, + ACTIONS(1665), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(1667), 1, anon_sym_LBRACK, - ACTIONS(1671), 1, + ACTIONS(1669), 1, anon_sym_LPAREN, - STATE(469), 1, + STATE(487), 1, sym__link_label, - STATE(470), 1, + STATE(488), 1, sym_inline_link_destination, - STATE(1160), 1, + STATE(1182), 1, sym__parens_span_begin, - [20618] = 5, - ACTIONS(1631), 1, + [21661] = 5, + ACTIONS(1621), 1, anon_sym_LBRACK, - ACTIONS(1673), 1, + ACTIONS(1671), 1, anon_sym_LBRACE, - STATE(582), 1, + STATE(577), 1, sym_inline_attribute, - STATE(1067), 1, + STATE(944), 1, sym__curly_bracket_span_begin, - ACTIONS(1629), 2, + ACTIONS(1619), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - [20635] = 6, - ACTIONS(1669), 1, + [21678] = 6, + ACTIONS(1667), 1, anon_sym_LBRACK, - ACTIONS(1671), 1, + ACTIONS(1669), 1, anon_sym_LPAREN, - ACTIONS(1675), 1, + ACTIONS(1673), 1, anon_sym_LBRACK_RBRACK, - STATE(466), 1, + STATE(484), 1, sym__link_label, - STATE(467), 1, + STATE(485), 1, sym_inline_link_destination, - STATE(1160), 1, + STATE(1182), 1, sym__parens_span_begin, - [20654] = 5, - ACTIONS(1631), 1, - anon_sym_LBRACK, - ACTIONS(1677), 1, - anon_sym_LBRACE, - STATE(520), 1, - sym_inline_attribute, - STATE(1019), 1, - sym__curly_bracket_span_begin, - ACTIONS(1629), 2, - anon_sym_LBRACK_RBRACK, - anon_sym_LPAREN, - [20671] = 5, - ACTIONS(1631), 1, + [21697] = 5, + ACTIONS(1621), 1, anon_sym_LBRACK, - ACTIONS(1679), 1, + ACTIONS(1675), 1, anon_sym_LBRACE, - STATE(545), 1, + STATE(527), 1, sym_inline_attribute, - STATE(955), 1, + STATE(1065), 1, sym__curly_bracket_span_begin, - ACTIONS(1629), 2, + ACTIONS(1619), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - [20688] = 6, - ACTIONS(1681), 1, + [21714] = 6, + ACTIONS(1677), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(1683), 1, + ACTIONS(1679), 1, anon_sym_LBRACK, - ACTIONS(1685), 1, + ACTIONS(1681), 1, anon_sym_LPAREN, - STATE(291), 1, - sym__link_label, - STATE(292), 1, + STATE(422), 1, sym_inline_link_destination, - STATE(1120), 1, + STATE(423), 1, + sym__link_label, + STATE(1112), 1, sym__parens_span_begin, - [20707] = 6, - ACTIONS(1687), 1, + [21733] = 6, + ACTIONS(1683), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(1689), 1, + ACTIONS(1685), 1, anon_sym_LBRACK, - ACTIONS(1691), 1, + ACTIONS(1687), 1, anon_sym_LPAREN, - STATE(426), 1, + STATE(442), 1, sym__link_label, - STATE(427), 1, + STATE(443), 1, sym_inline_link_destination, - STATE(1150), 1, + STATE(1172), 1, sym__parens_span_begin, - [20726] = 6, - ACTIONS(1689), 1, + [21752] = 6, + ACTIONS(1685), 1, anon_sym_LBRACK, - ACTIONS(1691), 1, + ACTIONS(1687), 1, anon_sym_LPAREN, - ACTIONS(1693), 1, + ACTIONS(1689), 1, anon_sym_LBRACK_RBRACK, - STATE(423), 1, + STATE(439), 1, sym__link_label, - STATE(424), 1, + STATE(440), 1, sym_inline_link_destination, - STATE(1150), 1, + STATE(1172), 1, sym__parens_span_begin, - [20745] = 5, - ACTIONS(1631), 1, + [21771] = 5, + ACTIONS(1621), 1, anon_sym_LBRACK, - ACTIONS(1695), 1, + ACTIONS(1691), 1, anon_sym_LBRACE, - STATE(528), 1, + STATE(543), 1, sym_inline_attribute, - STATE(1003), 1, + STATE(1025), 1, sym__curly_bracket_span_begin, - ACTIONS(1629), 2, + ACTIONS(1619), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - [20762] = 6, - ACTIONS(1663), 1, + [21788] = 6, + ACTIONS(1693), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(1695), 1, anon_sym_LBRACK, - ACTIONS(1665), 1, - anon_sym_LPAREN, ACTIONS(1697), 1, - anon_sym_LBRACK_RBRACK, - STATE(549), 1, + anon_sym_LPAREN, + STATE(350), 1, sym__link_label, - STATE(550), 1, + STATE(351), 1, sym_inline_link_destination, - STATE(1180), 1, + STATE(1152), 1, sym__parens_span_begin, - [20781] = 5, - ACTIONS(1631), 1, - anon_sym_LBRACK, + [21807] = 6, ACTIONS(1699), 1, - anon_sym_LBRACE, - STATE(560), 1, - sym_inline_attribute, - STATE(922), 1, - sym__curly_bracket_span_begin, - ACTIONS(1629), 2, anon_sym_LBRACK_RBRACK, - anon_sym_LPAREN, - [20798] = 6, - ACTIONS(1657), 1, + ACTIONS(1701), 1, anon_sym_LBRACK, - ACTIONS(1659), 1, + ACTIONS(1703), 1, anon_sym_LPAREN, - ACTIONS(1701), 1, - anon_sym_LBRACK_RBRACK, - STATE(386), 1, + STATE(258), 1, + sym__link_label, + STATE(259), 1, sym_inline_link_destination, - STATE(407), 1, + STATE(1132), 1, + sym__parens_span_begin, + [21826] = 6, + ACTIONS(1705), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(1707), 1, + anon_sym_LBRACK, + ACTIONS(1709), 1, + anon_sym_LPAREN, + STATE(396), 1, sym__link_label, - STATE(1090), 1, + STATE(397), 1, + sym_inline_link_destination, + STATE(1162), 1, sym__parens_span_begin, - [20817] = 6, - ACTIONS(1613), 1, + [21845] = 6, + ACTIONS(1707), 1, anon_sym_LBRACK, - ACTIONS(1615), 1, + ACTIONS(1709), 1, anon_sym_LPAREN, - ACTIONS(1703), 1, + ACTIONS(1711), 1, anon_sym_LBRACK_RBRACK, - STATE(379), 1, + STATE(393), 1, sym__link_label, - STATE(380), 1, + STATE(394), 1, sym_inline_link_destination, - STATE(1140), 1, + STATE(1162), 1, sym__parens_span_begin, - [20836] = 6, - ACTIONS(1619), 1, + [21864] = 6, + ACTIONS(1659), 1, anon_sym_LBRACK, - ACTIONS(1621), 1, + ACTIONS(1661), 1, anon_sym_LPAREN, - ACTIONS(1705), 1, + ACTIONS(1713), 1, anon_sym_LBRACK_RBRACK, - STATE(287), 1, + STATE(279), 1, sym__link_label, - STATE(288), 1, + STATE(281), 1, sym_inline_link_destination, - STATE(1039), 1, + STATE(1061), 1, sym__parens_span_begin, - [20855] = 5, - ACTIONS(1631), 1, + [21883] = 5, + ACTIONS(1621), 1, anon_sym_LBRACK, - ACTIONS(1707), 1, + ACTIONS(1715), 1, anon_sym_LBRACE, - STATE(538), 1, + STATE(554), 1, sym_inline_attribute, - STATE(987), 1, + STATE(1009), 1, sym__curly_bracket_span_begin, - ACTIONS(1629), 2, + ACTIONS(1619), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - [20872] = 5, - ACTIONS(1631), 1, + [21900] = 5, + ACTIONS(1621), 1, anon_sym_LBRACK, - ACTIONS(1709), 1, + ACTIONS(1717), 1, anon_sym_LBRACE, - STATE(515), 1, + STATE(518), 1, sym_inline_attribute, - STATE(939), 1, + STATE(961), 1, sym__curly_bracket_span_begin, - ACTIONS(1629), 2, + ACTIONS(1619), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - [20889] = 6, - ACTIONS(1683), 1, + [21917] = 6, + ACTIONS(1701), 1, anon_sym_LBRACK, - ACTIONS(1685), 1, + ACTIONS(1703), 1, anon_sym_LPAREN, - ACTIONS(1711), 1, + ACTIONS(1719), 1, anon_sym_LBRACK_RBRACK, - STATE(294), 1, + STATE(261), 1, sym__link_label, - STATE(295), 1, + STATE(262), 1, sym_inline_link_destination, - STATE(1120), 1, + STATE(1132), 1, sym__parens_span_begin, - [20908] = 5, - ACTIONS(1631), 1, - anon_sym_LBRACK, - ACTIONS(1713), 1, - anon_sym_LBRACE, - STATE(514), 1, - sym_inline_attribute, - STATE(1043), 1, - sym__curly_bracket_span_begin, - ACTIONS(1629), 2, + [21936] = 6, + ACTIONS(1721), 1, anon_sym_LBRACK_RBRACK, + ACTIONS(1723), 1, + anon_sym_LBRACK, + ACTIONS(1725), 1, anon_sym_LPAREN, - [20925] = 5, - ACTIONS(1631), 1, + STATE(301), 1, + sym__link_label, + STATE(302), 1, + sym_inline_link_destination, + STATE(1142), 1, + sym__parens_span_begin, + [21955] = 6, + ACTIONS(1723), 1, anon_sym_LBRACK, - ACTIONS(1715), 1, - anon_sym_LBRACE, - STATE(578), 1, - sym_inline_attribute, - STATE(971), 1, - sym__curly_bracket_span_begin, - ACTIONS(1629), 2, - anon_sym_LBRACK_RBRACK, + ACTIONS(1725), 1, anon_sym_LPAREN, - [20942] = 6, - ACTIONS(1717), 1, + ACTIONS(1727), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(1719), 1, + STATE(304), 1, + sym__link_label, + STATE(305), 1, + sym_inline_link_destination, + STATE(1142), 1, + sym__parens_span_begin, + [21974] = 6, + ACTIONS(1679), 1, anon_sym_LBRACK, - ACTIONS(1721), 1, + ACTIONS(1681), 1, anon_sym_LPAREN, - STATE(338), 1, - sym__link_label, - STATE(339), 1, + ACTIONS(1729), 1, + anon_sym_LBRACK_RBRACK, + STATE(399), 1, sym_inline_link_destination, - STATE(1130), 1, + STATE(400), 1, + sym__link_label, + STATE(1112), 1, sym__parens_span_begin, - [20961] = 6, - ACTIONS(1719), 1, + [21993] = 6, + ACTIONS(1695), 1, anon_sym_LBRACK, - ACTIONS(1721), 1, + ACTIONS(1697), 1, anon_sym_LPAREN, - ACTIONS(1723), 1, + ACTIONS(1731), 1, anon_sym_LBRACK_RBRACK, - STATE(335), 1, + STATE(347), 1, sym__link_label, - STATE(336), 1, + STATE(348), 1, sym_inline_link_destination, - STATE(1130), 1, + STATE(1152), 1, sym__parens_span_begin, - [20980] = 3, - ACTIONS(1728), 1, + [22012] = 3, + ACTIONS(1735), 1, anon_sym_PERCENT, - STATE(652), 1, + STATE(676), 1, aux_sym__comment_with_newline_repeat1, - ACTIONS(1725), 3, + ACTIONS(1733), 3, sym_backslash_escape, aux_sym__comment_with_newline_token1, sym__newline, - [20992] = 3, - ACTIONS(1732), 1, + [22024] = 3, + ACTIONS(1737), 1, anon_sym_PERCENT, - STATE(656), 1, + STATE(678), 1, aux_sym__comment_with_newline_repeat1, - ACTIONS(1730), 3, + ACTIONS(1733), 3, sym_backslash_escape, aux_sym__comment_with_newline_token1, sym__newline, - [21004] = 3, - ACTIONS(1734), 1, + [22036] = 3, + ACTIONS(1739), 1, anon_sym_PERCENT, - STATE(655), 1, + STATE(677), 1, aux_sym__comment_with_newline_repeat1, - ACTIONS(1730), 3, + ACTIONS(1733), 3, sym_backslash_escape, aux_sym__comment_with_newline_token1, sym__newline, - [21016] = 3, - ACTIONS(1736), 1, + [22048] = 3, + ACTIONS(1744), 1, anon_sym_PERCENT, - STATE(652), 1, + STATE(677), 1, aux_sym__comment_with_newline_repeat1, - ACTIONS(1730), 3, + ACTIONS(1741), 3, sym_backslash_escape, aux_sym__comment_with_newline_token1, sym__newline, - [21028] = 3, - ACTIONS(1738), 1, + [22060] = 3, + ACTIONS(1746), 1, anon_sym_PERCENT, - STATE(652), 1, + STATE(677), 1, aux_sym__comment_with_newline_repeat1, - ACTIONS(1730), 3, + ACTIONS(1733), 3, sym_backslash_escape, aux_sym__comment_with_newline_token1, sym__newline, - [21040] = 1, - ACTIONS(1740), 4, + [22072] = 1, + ACTIONS(1748), 4, sym_backslash_escape, anon_sym_PERCENT, aux_sym__comment_with_newline_token1, sym__newline, - [21047] = 3, - ACTIONS(1742), 1, + [22079] = 3, + ACTIONS(1750), 1, anon_sym_DQUOTE, - ACTIONS(1744), 1, + ACTIONS(1752), 1, aux_sym_value_token2, - STATE(618), 1, + STATE(638), 1, sym_value, - [21057] = 2, - ACTIONS(1748), 1, + [22089] = 2, + ACTIONS(1756), 1, anon_sym_LBRACK, - ACTIONS(1746), 2, + ACTIONS(1754), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - [21065] = 2, - ACTIONS(1752), 1, + [22097] = 2, + ACTIONS(1760), 1, anon_sym_LBRACK, - ACTIONS(1750), 2, + ACTIONS(1758), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - [21073] = 2, - ACTIONS(1754), 1, + [22105] = 2, + ACTIONS(1762), 1, sym__square_bracket_span_begin, - ACTIONS(1757), 1, + ACTIONS(1765), 1, + sym__in_fallback, + [22112] = 2, + ACTIONS(1765), 1, + sym__in_fallback, + ACTIONS(1767), 1, + sym__emphasis_mark_begin, + [22119] = 2, + ACTIONS(1770), 1, + sym__strong_mark_begin, + ACTIONS(1773), 1, + sym__in_fallback, + [22126] = 2, + ACTIONS(1773), 1, + sym__in_fallback, + ACTIONS(1775), 1, + sym__superscript_mark_begin, + [22133] = 2, + ACTIONS(1773), 1, + sym__in_fallback, + ACTIONS(1778), 1, + sym__subscript_mark_begin, + [22140] = 2, + ACTIONS(1773), 1, sym__in_fallback, - [21080] = 2, - ACTIONS(1759), 1, + ACTIONS(1781), 1, + sym__highlighted_mark_begin, + [22147] = 2, + ACTIONS(1784), 1, sym__emphasis_mark_begin, - ACTIONS(1762), 1, + ACTIONS(1787), 1, sym__in_fallback, - [21087] = 1, - ACTIONS(1764), 2, - sym__parens_span_mark_begin, + [22154] = 2, + ACTIONS(1773), 1, sym__in_fallback, - [21092] = 2, - ACTIONS(1766), 1, - sym__emphasis_mark_begin, - ACTIONS(1769), 1, + ACTIONS(1789), 1, + sym__insert_mark_begin, + [22161] = 2, + ACTIONS(1773), 1, sym__in_fallback, - [21099] = 2, - ACTIONS(1769), 1, + ACTIONS(1792), 1, + sym__delete_mark_begin, + [22168] = 2, + ACTIONS(1787), 1, sym__in_fallback, - ACTIONS(1771), 1, + ACTIONS(1795), 1, sym__strong_mark_begin, - [21106] = 2, - ACTIONS(1774), 1, - sym__curly_bracket_span_mark_begin, - ACTIONS(1777), 1, + [22175] = 2, + ACTIONS(1773), 1, sym__in_fallback, - [21113] = 2, - ACTIONS(1764), 1, + ACTIONS(1798), 1, + sym__square_bracket_span_begin, + [22182] = 2, + ACTIONS(1773), 1, sym__in_fallback, - ACTIONS(1779), 1, + ACTIONS(1801), 1, sym__square_bracket_span_begin, - [21120] = 2, - ACTIONS(1782), 1, - sym__emphasis_mark_begin, - ACTIONS(1785), 1, + [22189] = 2, + ACTIONS(1773), 1, + sym__in_fallback, + ACTIONS(1804), 1, + sym__square_bracket_span_begin, + [22196] = 1, + ACTIONS(1773), 2, + sym__parens_span_mark_begin, sym__in_fallback, - [21127] = 2, + [22201] = 2, ACTIONS(1787), 1, + sym__in_fallback, + ACTIONS(1807), 1, + sym__superscript_mark_begin, + [22208] = 2, + ACTIONS(1810), 1, sym__emphasis_mark_begin, - ACTIONS(1790), 1, + ACTIONS(1813), 1, sym__in_fallback, - [21134] = 2, - ACTIONS(1790), 1, + [22215] = 2, + ACTIONS(1813), 1, sym__in_fallback, - ACTIONS(1792), 1, + ACTIONS(1815), 1, sym__strong_mark_begin, - [21141] = 2, - ACTIONS(1790), 1, + [22222] = 2, + ACTIONS(1818), 1, + sym__curly_bracket_span_mark_begin, + ACTIONS(1821), 1, sym__in_fallback, - ACTIONS(1795), 1, - sym__superscript_mark_begin, - [21148] = 2, - ACTIONS(1790), 1, + [22229] = 2, + ACTIONS(1787), 1, sym__in_fallback, - ACTIONS(1798), 1, + ACTIONS(1823), 1, sym__subscript_mark_begin, - [21155] = 2, - ACTIONS(1790), 1, + [22236] = 2, + ACTIONS(1787), 1, sym__in_fallback, - ACTIONS(1801), 1, + ACTIONS(1826), 1, sym__highlighted_mark_begin, - [21162] = 2, - ACTIONS(1790), 1, + [22243] = 2, + ACTIONS(1787), 1, sym__in_fallback, - ACTIONS(1804), 1, + ACTIONS(1829), 1, sym__insert_mark_begin, - [21169] = 2, - ACTIONS(1790), 1, + [22250] = 2, + ACTIONS(1787), 1, sym__in_fallback, - ACTIONS(1807), 1, + ACTIONS(1832), 1, sym__delete_mark_begin, - [21176] = 2, - ACTIONS(1790), 1, + [22257] = 2, + ACTIONS(1787), 1, sym__in_fallback, - ACTIONS(1810), 1, + ACTIONS(1835), 1, sym__square_bracket_span_begin, - [21183] = 2, - ACTIONS(1790), 1, + [22264] = 2, + ACTIONS(1787), 1, sym__in_fallback, - ACTIONS(1813), 1, + ACTIONS(1838), 1, sym__square_bracket_span_begin, - [21190] = 2, - ACTIONS(1790), 1, + [22271] = 2, + ACTIONS(1787), 1, sym__in_fallback, - ACTIONS(1816), 1, + ACTIONS(1841), 1, sym__square_bracket_span_begin, - [21197] = 2, - ACTIONS(1819), 1, + [22278] = 2, + ACTIONS(1844), 1, sym__id, - STATE(915), 1, + STATE(937), 1, sym_reference_label, - [21204] = 1, - ACTIONS(1790), 2, + [22285] = 1, + ACTIONS(1787), 2, sym__parens_span_mark_begin, sym__in_fallback, - [21209] = 2, - ACTIONS(1821), 1, + [22290] = 2, + ACTIONS(1846), 1, anon_sym_PERCENT, - STATE(907), 1, + STATE(929), 1, sym__comment_with_newline, - [21216] = 2, - ACTIONS(1819), 1, + [22297] = 2, + ACTIONS(1844), 1, sym__id, - STATE(881), 1, + STATE(903), 1, sym_reference_label, - [21223] = 2, - ACTIONS(1821), 1, + [22304] = 2, + ACTIONS(1846), 1, anon_sym_PERCENT, - STATE(873), 1, + STATE(895), 1, sym__comment_with_newline, - [21230] = 2, - ACTIONS(1785), 1, + [22311] = 2, + ACTIONS(1848), 1, + sym__strong_mark_begin, + ACTIONS(1851), 1, sym__in_fallback, - ACTIONS(1823), 1, + [22318] = 2, + ACTIONS(1853), 1, + sym__emphasis_mark_begin, + ACTIONS(1856), 1, + sym__in_fallback, + [22325] = 2, + ACTIONS(1856), 1, + sym__in_fallback, + ACTIONS(1858), 1, sym__strong_mark_begin, - [21237] = 2, - ACTIONS(1785), 1, + [22332] = 2, + ACTIONS(1856), 1, sym__in_fallback, - ACTIONS(1826), 1, + ACTIONS(1861), 1, sym__superscript_mark_begin, - [21244] = 2, - ACTIONS(1785), 1, + [22339] = 2, + ACTIONS(1856), 1, sym__in_fallback, - ACTIONS(1829), 1, + ACTIONS(1864), 1, sym__subscript_mark_begin, - [21251] = 2, - ACTIONS(1785), 1, + [22346] = 2, + ACTIONS(1856), 1, sym__in_fallback, - ACTIONS(1832), 1, + ACTIONS(1867), 1, sym__highlighted_mark_begin, - [21258] = 2, - ACTIONS(1785), 1, + [22353] = 2, + ACTIONS(1856), 1, sym__in_fallback, - ACTIONS(1835), 1, + ACTIONS(1870), 1, sym__insert_mark_begin, - [21265] = 2, - ACTIONS(1785), 1, + [22360] = 2, + ACTIONS(1856), 1, sym__in_fallback, - ACTIONS(1838), 1, + ACTIONS(1873), 1, sym__delete_mark_begin, - [21272] = 2, - ACTIONS(1841), 1, - sym__strong_mark_begin, + [22367] = 2, ACTIONS(1844), 1, + sym__id, + STATE(869), 1, + sym_reference_label, + [22374] = 2, + ACTIONS(1856), 1, sym__in_fallback, - [21279] = 2, - ACTIONS(1785), 1, - sym__in_fallback, - ACTIONS(1846), 1, + ACTIONS(1876), 1, sym__square_bracket_span_begin, - [21286] = 2, - ACTIONS(1785), 1, + [22381] = 2, + ACTIONS(1856), 1, sym__in_fallback, - ACTIONS(1849), 1, + ACTIONS(1879), 1, sym__square_bracket_span_begin, - [21293] = 2, - ACTIONS(1785), 1, + [22388] = 2, + ACTIONS(1856), 1, sym__in_fallback, - ACTIONS(1852), 1, + ACTIONS(1882), 1, sym__square_bracket_span_begin, - [21300] = 1, - ACTIONS(1785), 2, + [22395] = 1, + ACTIONS(1856), 2, sym__parens_span_mark_begin, sym__in_fallback, - [21305] = 2, - ACTIONS(1764), 1, - sym__in_fallback, - ACTIONS(1855), 1, - sym__square_bracket_span_begin, - [21312] = 2, - ACTIONS(1819), 1, - sym__id, - STATE(847), 1, - sym_reference_label, - [21319] = 2, - ACTIONS(1858), 1, + [22400] = 2, + ACTIONS(1885), 1, sym__curly_bracket_span_mark_begin, - ACTIONS(1861), 1, + ACTIONS(1888), 1, sym__in_fallback, - [21326] = 2, - ACTIONS(1863), 1, + [22407] = 2, + ACTIONS(1890), 1, sym__emphasis_mark_begin, - ACTIONS(1866), 1, + ACTIONS(1893), 1, sym__in_fallback, - [21333] = 2, - ACTIONS(1866), 1, + [22414] = 2, + ACTIONS(1893), 1, sym__in_fallback, - ACTIONS(1868), 1, + ACTIONS(1895), 1, sym__strong_mark_begin, - [21340] = 2, - ACTIONS(1871), 1, + [22421] = 2, + ACTIONS(1898), 1, sym__curly_bracket_span_mark_begin, - ACTIONS(1874), 1, - sym__in_fallback, - [21347] = 2, - ACTIONS(1764), 1, + ACTIONS(1901), 1, sym__in_fallback, - ACTIONS(1876), 1, - sym__delete_mark_begin, - [21354] = 2, - ACTIONS(1821), 1, + [22428] = 2, + ACTIONS(1846), 1, anon_sym_PERCENT, - STATE(1028), 1, + STATE(1050), 1, sym__comment_with_newline, - [21361] = 2, - ACTIONS(1819), 1, + [22435] = 2, + ACTIONS(1844), 1, sym__id, - STATE(1011), 1, + STATE(1033), 1, sym_reference_label, - [21368] = 2, - ACTIONS(1821), 1, + [22442] = 2, + ACTIONS(1846), 1, anon_sym_PERCENT, - STATE(839), 1, + STATE(861), 1, sym__comment_with_newline, - [21375] = 2, - ACTIONS(1819), 1, + [22449] = 2, + ACTIONS(1844), 1, sym__id, - STATE(861), 1, + STATE(883), 1, sym_reference_label, - [21382] = 2, - ACTIONS(1821), 1, + [22456] = 2, + ACTIONS(1846), 1, anon_sym_PERCENT, - STATE(871), 1, + STATE(893), 1, sym__comment_with_newline, - [21389] = 2, - ACTIONS(1819), 1, + [22463] = 2, + ACTIONS(1844), 1, sym__id, - STATE(897), 1, + STATE(918), 1, sym_reference_label, - [21396] = 2, - ACTIONS(1821), 1, + [22470] = 2, + ACTIONS(1846), 1, anon_sym_PERCENT, - STATE(917), 1, + STATE(939), 1, sym__comment_with_newline, - [21403] = 2, - ACTIONS(1819), 1, + [22477] = 2, + ACTIONS(1844), 1, sym__id, - STATE(959), 1, + STATE(981), 1, sym_reference_label, - [21410] = 2, - ACTIONS(1879), 1, + [22484] = 2, + ACTIONS(1903), 1, sym__id, - STATE(610), 1, + STATE(640), 1, sym_class_name, - [21417] = 2, - ACTIONS(1844), 1, + [22491] = 2, + ACTIONS(1851), 1, sym__in_fallback, - ACTIONS(1881), 1, + ACTIONS(1905), 1, sym__emphasis_mark_begin, - [21424] = 2, - ACTIONS(1821), 1, + [22498] = 2, + ACTIONS(1846), 1, anon_sym_PERCENT, - STATE(975), 1, + STATE(997), 1, sym__comment_with_newline, - [21431] = 2, - ACTIONS(1764), 1, - sym__in_fallback, - ACTIONS(1884), 1, - sym__insert_mark_begin, - [21438] = 2, - ACTIONS(1819), 1, + [22505] = 2, + ACTIONS(1844), 1, sym__id, - STATE(991), 1, + STATE(1013), 1, sym_reference_label, - [21445] = 2, - ACTIONS(1764), 1, - sym__in_fallback, - ACTIONS(1887), 1, - sym__highlighted_mark_begin, - [21452] = 2, - ACTIONS(1762), 1, + [22512] = 2, + ACTIONS(1765), 1, sym__in_fallback, - ACTIONS(1890), 1, + ACTIONS(1908), 1, sym__strong_mark_begin, - [21459] = 2, - ACTIONS(1893), 1, + [22519] = 2, + ACTIONS(1911), 1, sym__emphasis_mark_begin, - ACTIONS(1896), 1, + ACTIONS(1914), 1, sym__in_fallback, - [21466] = 2, - ACTIONS(1896), 1, + [22526] = 2, + ACTIONS(1914), 1, sym__in_fallback, - ACTIONS(1898), 1, + ACTIONS(1916), 1, sym__strong_mark_begin, - [21473] = 2, - ACTIONS(1896), 1, + [22533] = 2, + ACTIONS(1914), 1, sym__in_fallback, - ACTIONS(1901), 1, + ACTIONS(1919), 1, sym__superscript_mark_begin, - [21480] = 2, - ACTIONS(1896), 1, + [22540] = 2, + ACTIONS(1914), 1, sym__in_fallback, - ACTIONS(1904), 1, + ACTIONS(1922), 1, sym__subscript_mark_begin, - [21487] = 2, - ACTIONS(1896), 1, + [22547] = 2, + ACTIONS(1914), 1, sym__in_fallback, - ACTIONS(1907), 1, + ACTIONS(1925), 1, sym__highlighted_mark_begin, - [21494] = 2, - ACTIONS(1896), 1, + [22554] = 2, + ACTIONS(1914), 1, sym__in_fallback, - ACTIONS(1910), 1, + ACTIONS(1928), 1, sym__insert_mark_begin, - [21501] = 2, - ACTIONS(1896), 1, + [22561] = 2, + ACTIONS(1914), 1, sym__in_fallback, - ACTIONS(1913), 1, + ACTIONS(1931), 1, sym__delete_mark_begin, - [21508] = 2, - ACTIONS(1762), 1, + [22568] = 2, + ACTIONS(1765), 1, sym__in_fallback, - ACTIONS(1916), 1, + ACTIONS(1934), 1, sym__superscript_mark_begin, - [21515] = 2, - ACTIONS(1896), 1, + [22575] = 2, + ACTIONS(1914), 1, sym__in_fallback, - ACTIONS(1919), 1, + ACTIONS(1937), 1, sym__square_bracket_span_begin, - [21522] = 2, - ACTIONS(1896), 1, + [22582] = 2, + ACTIONS(1914), 1, sym__in_fallback, - ACTIONS(1922), 1, + ACTIONS(1940), 1, sym__square_bracket_span_begin, - [21529] = 2, - ACTIONS(1896), 1, + [22589] = 2, + ACTIONS(1914), 1, sym__in_fallback, - ACTIONS(1925), 1, + ACTIONS(1943), 1, sym__square_bracket_span_begin, - [21536] = 1, - ACTIONS(1896), 2, + [22596] = 1, + ACTIONS(1914), 2, sym__parens_span_mark_begin, sym__in_fallback, - [21541] = 2, - ACTIONS(1764), 1, - sym__in_fallback, - ACTIONS(1928), 1, - sym__subscript_mark_begin, - [21548] = 2, - ACTIONS(1764), 1, - sym__in_fallback, - ACTIONS(1931), 1, - sym__superscript_mark_begin, - [21555] = 2, - ACTIONS(1762), 1, + [22601] = 2, + ACTIONS(1765), 1, sym__in_fallback, - ACTIONS(1934), 1, + ACTIONS(1946), 1, sym__subscript_mark_begin, - [21562] = 2, - ACTIONS(1937), 1, + [22608] = 2, + ACTIONS(1949), 1, sym__emphasis_mark_begin, - ACTIONS(1940), 1, + ACTIONS(1952), 1, sym__in_fallback, - [21569] = 2, - ACTIONS(1940), 1, + [22615] = 2, + ACTIONS(1952), 1, sym__in_fallback, - ACTIONS(1942), 1, + ACTIONS(1954), 1, sym__strong_mark_begin, - [21576] = 2, - ACTIONS(1945), 1, + [22622] = 2, + ACTIONS(1957), 1, sym__curly_bracket_span_mark_begin, - ACTIONS(1948), 1, - sym__in_fallback, - [21583] = 2, - ACTIONS(1764), 1, + ACTIONS(1960), 1, sym__in_fallback, - ACTIONS(1950), 1, - sym__strong_mark_begin, - [21590] = 2, - ACTIONS(1762), 1, + [22629] = 2, + ACTIONS(1765), 1, sym__in_fallback, - ACTIONS(1953), 1, + ACTIONS(1962), 1, sym__highlighted_mark_begin, - [21597] = 2, - ACTIONS(1762), 1, + [22636] = 2, + ACTIONS(1765), 1, sym__in_fallback, - ACTIONS(1956), 1, + ACTIONS(1965), 1, sym__insert_mark_begin, - [21604] = 2, - ACTIONS(1762), 1, + [22643] = 2, + ACTIONS(1765), 1, sym__in_fallback, - ACTIONS(1959), 1, + ACTIONS(1968), 1, sym__delete_mark_begin, - [21611] = 2, - ACTIONS(1821), 1, + [22650] = 2, + ACTIONS(1846), 1, anon_sym_PERCENT, - STATE(1040), 1, + STATE(1062), 1, sym__comment_with_newline, - [21618] = 2, - ACTIONS(1819), 1, + [22657] = 2, + ACTIONS(1844), 1, sym__id, - STATE(1077), 1, + STATE(1091), 1, sym_reference_label, - [21625] = 2, - ACTIONS(1762), 1, - sym__in_fallback, - ACTIONS(1962), 1, - sym__square_bracket_span_begin, - [21632] = 2, - ACTIONS(1762), 1, + [22664] = 2, + ACTIONS(1765), 1, sym__in_fallback, - ACTIONS(1965), 1, + ACTIONS(1971), 1, sym__square_bracket_span_begin, - [21639] = 2, - ACTIONS(1762), 1, + [22671] = 2, + ACTIONS(1765), 1, sym__in_fallback, - ACTIONS(1968), 1, + ACTIONS(1974), 1, sym__square_bracket_span_begin, - [21646] = 1, - ACTIONS(1762), 2, + [22678] = 1, + ACTIONS(1765), 2, sym__parens_span_mark_begin, sym__in_fallback, - [21651] = 2, - ACTIONS(1971), 1, + [22683] = 2, + ACTIONS(1977), 1, sym__emphasis_mark_begin, - ACTIONS(1974), 1, + ACTIONS(1980), 1, sym__in_fallback, - [21658] = 2, - ACTIONS(1974), 1, + [22690] = 2, + ACTIONS(1980), 1, sym__in_fallback, - ACTIONS(1976), 1, + ACTIONS(1982), 1, sym__strong_mark_begin, - [21665] = 2, - ACTIONS(1764), 1, + [22697] = 2, + ACTIONS(1985), 1, + sym__curly_bracket_span_mark_begin, + ACTIONS(1988), 1, sym__in_fallback, - ACTIONS(1979), 1, - sym__emphasis_mark_begin, - [21672] = 2, - ACTIONS(1821), 1, + [22704] = 2, + ACTIONS(1846), 1, anon_sym_PERCENT, - STATE(1161), 1, + STATE(1163), 1, sym__comment_with_newline, - [21679] = 2, - ACTIONS(1982), 1, - sym__curly_bracket_span_mark_begin, - ACTIONS(1985), 1, - sym__in_fallback, - [21686] = 2, - ACTIONS(1819), 1, + [22711] = 2, + ACTIONS(1844), 1, sym__id, - STATE(1069), 1, + STATE(946), 1, sym_reference_label, - [21693] = 2, - ACTIONS(1987), 1, - sym__emphasis_mark_begin, - ACTIONS(1990), 1, - sym__in_fallback, - [21700] = 2, + [22718] = 2, + ACTIONS(1846), 1, + anon_sym_PERCENT, + STATE(875), 1, + sym__comment_with_newline, + [22725] = 2, ACTIONS(1990), 1, + sym__emphasis_mark_begin, + ACTIONS(1993), 1, sym__in_fallback, - ACTIONS(1992), 1, - sym__strong_mark_begin, - [21707] = 2, - ACTIONS(1990), 1, + [22732] = 2, + ACTIONS(1993), 1, sym__in_fallback, ACTIONS(1995), 1, - sym__superscript_mark_begin, - [21714] = 2, - ACTIONS(1990), 1, + sym__strong_mark_begin, + [22739] = 2, + ACTIONS(1993), 1, sym__in_fallback, ACTIONS(1998), 1, - sym__subscript_mark_begin, - [21721] = 2, - ACTIONS(1990), 1, + sym__superscript_mark_begin, + [22746] = 2, + ACTIONS(1993), 1, sym__in_fallback, ACTIONS(2001), 1, - sym__highlighted_mark_begin, - [21728] = 2, - ACTIONS(1990), 1, + sym__subscript_mark_begin, + [22753] = 2, + ACTIONS(1993), 1, sym__in_fallback, ACTIONS(2004), 1, - sym__insert_mark_begin, - [21735] = 2, - ACTIONS(1990), 1, + sym__highlighted_mark_begin, + [22760] = 2, + ACTIONS(1993), 1, sym__in_fallback, ACTIONS(2007), 1, - sym__delete_mark_begin, - [21742] = 2, - ACTIONS(1821), 1, - anon_sym_PERCENT, - STATE(853), 1, - sym__comment_with_newline, - [21749] = 2, - ACTIONS(1990), 1, + sym__insert_mark_begin, + [22767] = 2, + ACTIONS(1993), 1, sym__in_fallback, ACTIONS(2010), 1, - sym__square_bracket_span_begin, - [21756] = 2, - ACTIONS(1990), 1, + sym__delete_mark_begin, + [22774] = 2, + ACTIONS(1844), 1, + sym__id, + STATE(953), 1, + sym_reference_label, + [22781] = 2, + ACTIONS(1993), 1, sym__in_fallback, ACTIONS(2013), 1, sym__square_bracket_span_begin, - [21763] = 2, - ACTIONS(1990), 1, + [22788] = 2, + ACTIONS(1993), 1, sym__in_fallback, ACTIONS(2016), 1, sym__square_bracket_span_begin, - [21770] = 1, - ACTIONS(1990), 2, - sym__parens_span_mark_begin, - sym__in_fallback, - [21775] = 2, - ACTIONS(1819), 1, - sym__id, - STATE(930), 1, - sym_reference_label, - [21782] = 2, - ACTIONS(1764), 1, + [22795] = 2, + ACTIONS(1993), 1, sym__in_fallback, ACTIONS(2019), 1, sym__square_bracket_span_begin, - [21789] = 2, + [22802] = 1, + ACTIONS(1993), 2, + sym__parens_span_mark_begin, + sym__in_fallback, + [22807] = 2, ACTIONS(2022), 1, - sym__strong_mark_begin, + sym__emphasis_mark_begin, ACTIONS(2025), 1, sym__in_fallback, - [21796] = 2, + [22814] = 2, + ACTIONS(1773), 1, + sym__in_fallback, ACTIONS(2027), 1, sym__emphasis_mark_begin, - ACTIONS(2030), 1, + [22821] = 2, + ACTIONS(2025), 1, sym__in_fallback, - [21803] = 2, ACTIONS(2030), 1, + sym__superscript_mark_begin, + [22828] = 2, + ACTIONS(2033), 1, + sym__emphasis_mark_begin, + ACTIONS(2036), 1, + sym__in_fallback, + [22835] = 2, + ACTIONS(2036), 1, sym__in_fallback, - ACTIONS(2032), 1, + ACTIONS(2038), 1, sym__strong_mark_begin, - [21810] = 2, - ACTIONS(2035), 1, + [22842] = 2, + ACTIONS(2041), 1, sym__curly_bracket_span_mark_begin, - ACTIONS(2038), 1, + ACTIONS(2044), 1, sym__in_fallback, - [21817] = 2, - ACTIONS(1821), 1, + [22849] = 2, + ACTIONS(1846), 1, anon_sym_PERCENT, - STATE(947), 1, + STATE(970), 1, sym__comment_with_newline, - [21824] = 2, - ACTIONS(2025), 1, - sym__in_fallback, - ACTIONS(2040), 1, - sym__superscript_mark_begin, - [21831] = 2, + [22856] = 2, ACTIONS(2025), 1, sym__in_fallback, - ACTIONS(2043), 1, + ACTIONS(2046), 1, sym__subscript_mark_begin, - [21838] = 2, + [22863] = 2, ACTIONS(2025), 1, sym__in_fallback, - ACTIONS(2046), 1, - sym__highlighted_mark_begin, - [21845] = 2, ACTIONS(2049), 1, - sym__curly_bracket_span_mark_begin, + sym__highlighted_mark_begin, + [22870] = 2, + ACTIONS(2025), 1, + sym__in_fallback, ACTIONS(2052), 1, + sym__insert_mark_begin, + [22877] = 2, + ACTIONS(2055), 1, + sym__curly_bracket_span_mark_begin, + ACTIONS(2058), 1, sym__in_fallback, - [21852] = 2, - ACTIONS(2054), 1, + [22884] = 2, + ACTIONS(2060), 1, sym__strong_mark_begin, - ACTIONS(2057), 1, - sym__in_fallback, - [21859] = 2, - ACTIONS(2057), 1, - sym__in_fallback, - ACTIONS(2059), 1, - sym__emphasis_mark_begin, - [21866] = 2, - ACTIONS(2025), 1, + ACTIONS(2063), 1, sym__in_fallback, - ACTIONS(2062), 1, - sym__insert_mark_begin, - [21873] = 2, - ACTIONS(2025), 1, + [22891] = 2, + ACTIONS(2063), 1, sym__in_fallback, ACTIONS(2065), 1, - sym__delete_mark_begin, - [21880] = 1, - ACTIONS(1757), 2, + sym__emphasis_mark_begin, + [22898] = 2, + ACTIONS(2025), 1, + sym__in_fallback, + ACTIONS(2068), 1, + sym__strong_mark_begin, + [22905] = 1, + ACTIONS(2071), 2, sym__parens_span_mark_begin, sym__in_fallback, - [21885] = 2, - ACTIONS(1757), 1, + [22910] = 2, + ACTIONS(2071), 1, sym__in_fallback, - ACTIONS(2068), 1, + ACTIONS(2073), 1, sym__square_bracket_span_begin, - [21892] = 2, - ACTIONS(1757), 1, + [22917] = 2, + ACTIONS(2071), 1, sym__in_fallback, + ACTIONS(2076), 1, + sym__square_bracket_span_begin, + [22924] = 2, ACTIONS(2071), 1, + sym__in_fallback, + ACTIONS(2079), 1, sym__square_bracket_span_begin, - [21899] = 2, - ACTIONS(1757), 1, + [22931] = 2, + ACTIONS(2071), 1, sym__in_fallback, - ACTIONS(2074), 1, + ACTIONS(2082), 1, sym__delete_mark_begin, - [21906] = 2, - ACTIONS(1757), 1, + [22938] = 2, + ACTIONS(2071), 1, sym__in_fallback, - ACTIONS(2077), 1, + ACTIONS(2085), 1, sym__insert_mark_begin, - [21913] = 2, - ACTIONS(1757), 1, + [22945] = 2, + ACTIONS(2071), 1, sym__in_fallback, - ACTIONS(2080), 1, + ACTIONS(2088), 1, sym__highlighted_mark_begin, - [21920] = 2, - ACTIONS(1757), 1, + [22952] = 2, + ACTIONS(2071), 1, sym__in_fallback, - ACTIONS(2083), 1, + ACTIONS(2091), 1, sym__subscript_mark_begin, - [21927] = 2, - ACTIONS(2086), 1, + [22959] = 2, + ACTIONS(2094), 1, sym__emphasis_mark_begin, - ACTIONS(2089), 1, + ACTIONS(2097), 1, sym__in_fallback, - [21934] = 2, - ACTIONS(2089), 1, + [22966] = 2, + ACTIONS(2097), 1, sym__in_fallback, - ACTIONS(2091), 1, + ACTIONS(2099), 1, sym__strong_mark_begin, - [21941] = 2, - ACTIONS(2089), 1, + [22973] = 2, + ACTIONS(2097), 1, sym__in_fallback, - ACTIONS(2094), 1, + ACTIONS(2102), 1, sym__superscript_mark_begin, - [21948] = 2, - ACTIONS(2089), 1, - sym__in_fallback, + [22980] = 2, ACTIONS(2097), 1, + sym__in_fallback, + ACTIONS(2105), 1, sym__subscript_mark_begin, - [21955] = 2, - ACTIONS(2089), 1, + [22987] = 2, + ACTIONS(2097), 1, sym__in_fallback, - ACTIONS(2100), 1, + ACTIONS(2108), 1, sym__highlighted_mark_begin, - [21962] = 2, - ACTIONS(2089), 1, + [22994] = 2, + ACTIONS(2097), 1, sym__in_fallback, - ACTIONS(2103), 1, + ACTIONS(2111), 1, sym__insert_mark_begin, - [21969] = 2, - ACTIONS(2089), 1, + [23001] = 2, + ACTIONS(2097), 1, sym__in_fallback, - ACTIONS(2106), 1, + ACTIONS(2114), 1, sym__delete_mark_begin, - [21976] = 2, - ACTIONS(1757), 1, + [23008] = 2, + ACTIONS(2071), 1, sym__in_fallback, - ACTIONS(2109), 1, + ACTIONS(2117), 1, sym__superscript_mark_begin, - [21983] = 2, - ACTIONS(2089), 1, + [23015] = 2, + ACTIONS(2097), 1, sym__in_fallback, - ACTIONS(2112), 1, + ACTIONS(2120), 1, sym__square_bracket_span_begin, - [21990] = 2, - ACTIONS(2089), 1, + [23022] = 2, + ACTIONS(2097), 1, sym__in_fallback, - ACTIONS(2115), 1, + ACTIONS(2123), 1, sym__square_bracket_span_begin, - [21997] = 2, - ACTIONS(2089), 1, + [23029] = 2, + ACTIONS(2097), 1, sym__in_fallback, - ACTIONS(2118), 1, + ACTIONS(2126), 1, sym__square_bracket_span_begin, - [22004] = 1, - ACTIONS(2089), 2, + [23036] = 1, + ACTIONS(2097), 2, sym__parens_span_mark_begin, sym__in_fallback, - [22009] = 2, - ACTIONS(1757), 1, + [23041] = 2, + ACTIONS(2071), 1, sym__in_fallback, - ACTIONS(2121), 1, + ACTIONS(2129), 1, sym__strong_mark_begin, - [22016] = 2, + [23048] = 2, ACTIONS(2025), 1, sym__in_fallback, - ACTIONS(2124), 1, - sym__emphasis_mark_begin, - [22023] = 2, - ACTIONS(1757), 1, + ACTIONS(2132), 1, + sym__delete_mark_begin, + [23055] = 2, + ACTIONS(2071), 1, sym__in_fallback, - ACTIONS(2127), 1, + ACTIONS(2135), 1, sym__emphasis_mark_begin, - [22030] = 2, - ACTIONS(2130), 1, + [23062] = 2, + ACTIONS(2138), 1, sym__emphasis_mark_begin, - ACTIONS(2133), 1, + ACTIONS(2141), 1, sym__in_fallback, - [22037] = 2, - ACTIONS(2133), 1, + [23069] = 2, + ACTIONS(2141), 1, sym__in_fallback, - ACTIONS(2135), 1, + ACTIONS(2143), 1, sym__strong_mark_begin, - [22044] = 2, - ACTIONS(2138), 1, + [23076] = 2, + ACTIONS(2146), 1, sym__curly_bracket_span_mark_begin, - ACTIONS(2141), 1, + ACTIONS(2149), 1, sym__in_fallback, - [22051] = 2, + [23083] = 2, ACTIONS(2025), 1, sym__in_fallback, - ACTIONS(2143), 1, + ACTIONS(2151), 1, sym__square_bracket_span_begin, - [22058] = 2, + [23090] = 2, ACTIONS(2025), 1, sym__in_fallback, - ACTIONS(2146), 1, + ACTIONS(2154), 1, sym__square_bracket_span_begin, - [22065] = 2, + [23097] = 2, ACTIONS(2025), 1, sym__in_fallback, - ACTIONS(2149), 1, + ACTIONS(2157), 1, sym__square_bracket_span_begin, - [22072] = 2, - ACTIONS(2152), 1, + [23104] = 2, + ACTIONS(2160), 1, sym__curly_bracket_span_mark_begin, - ACTIONS(2155), 1, + ACTIONS(2163), 1, sym__in_fallback, - [22079] = 2, - ACTIONS(2157), 1, + [23111] = 2, + ACTIONS(2165), 1, sym__strong_mark_begin, - ACTIONS(2160), 1, + ACTIONS(2168), 1, sym__in_fallback, - [22086] = 2, - ACTIONS(2160), 1, + [23118] = 2, + ACTIONS(2168), 1, sym__in_fallback, - ACTIONS(2162), 1, + ACTIONS(2170), 1, sym__emphasis_mark_begin, - [22093] = 1, + [23125] = 1, ACTIONS(2025), 2, sym__parens_span_mark_begin, sym__in_fallback, - [22098] = 1, - ACTIONS(2165), 2, + [23130] = 1, + ACTIONS(2173), 2, sym__parens_span_mark_begin, sym__in_fallback, - [22103] = 2, - ACTIONS(2165), 1, + [23135] = 2, + ACTIONS(2173), 1, sym__in_fallback, - ACTIONS(2167), 1, + ACTIONS(2175), 1, sym__square_bracket_span_begin, - [22110] = 2, - ACTIONS(2165), 1, + [23142] = 2, + ACTIONS(2173), 1, sym__in_fallback, - ACTIONS(2170), 1, + ACTIONS(2178), 1, sym__square_bracket_span_begin, - [22117] = 2, - ACTIONS(2165), 1, - sym__in_fallback, + [23149] = 2, ACTIONS(2173), 1, + sym__in_fallback, + ACTIONS(2181), 1, sym__square_bracket_span_begin, - [22124] = 2, - ACTIONS(2165), 1, + [23156] = 2, + ACTIONS(2173), 1, sym__in_fallback, - ACTIONS(2176), 1, + ACTIONS(2184), 1, sym__delete_mark_begin, - [22131] = 2, - ACTIONS(2165), 1, + [23163] = 2, + ACTIONS(2173), 1, sym__in_fallback, - ACTIONS(2179), 1, + ACTIONS(2187), 1, sym__insert_mark_begin, - [22138] = 2, - ACTIONS(2165), 1, + [23170] = 2, + ACTIONS(2173), 1, sym__in_fallback, - ACTIONS(2182), 1, + ACTIONS(2190), 1, sym__highlighted_mark_begin, - [22145] = 2, - ACTIONS(2165), 1, + [23177] = 2, + ACTIONS(2173), 1, sym__in_fallback, - ACTIONS(2185), 1, + ACTIONS(2193), 1, sym__subscript_mark_begin, - [22152] = 2, - ACTIONS(2165), 1, + [23184] = 2, + ACTIONS(2173), 1, sym__in_fallback, - ACTIONS(2188), 1, + ACTIONS(2196), 1, sym__superscript_mark_begin, - [22159] = 2, - ACTIONS(2191), 1, + [23191] = 2, + ACTIONS(2199), 1, sym__emphasis_mark_begin, - ACTIONS(2194), 1, + ACTIONS(2202), 1, sym__in_fallback, - [22166] = 2, - ACTIONS(2194), 1, + [23198] = 2, + ACTIONS(2202), 1, sym__in_fallback, - ACTIONS(2196), 1, + ACTIONS(2204), 1, sym__strong_mark_begin, - [22173] = 2, - ACTIONS(2194), 1, + [23205] = 2, + ACTIONS(2202), 1, sym__in_fallback, - ACTIONS(2199), 1, + ACTIONS(2207), 1, sym__superscript_mark_begin, - [22180] = 2, - ACTIONS(2194), 1, - sym__in_fallback, + [23212] = 2, ACTIONS(2202), 1, + sym__in_fallback, + ACTIONS(2210), 1, sym__subscript_mark_begin, - [22187] = 2, - ACTIONS(2194), 1, + [23219] = 2, + ACTIONS(2202), 1, sym__in_fallback, - ACTIONS(2205), 1, + ACTIONS(2213), 1, sym__highlighted_mark_begin, - [22194] = 2, - ACTIONS(2194), 1, + [23226] = 2, + ACTIONS(2202), 1, sym__in_fallback, - ACTIONS(2208), 1, + ACTIONS(2216), 1, sym__insert_mark_begin, - [22201] = 2, - ACTIONS(2194), 1, + [23233] = 2, + ACTIONS(2202), 1, sym__in_fallback, - ACTIONS(2211), 1, + ACTIONS(2219), 1, sym__delete_mark_begin, - [22208] = 2, - ACTIONS(2165), 1, + [23240] = 2, + ACTIONS(2173), 1, sym__in_fallback, - ACTIONS(2214), 1, + ACTIONS(2222), 1, sym__strong_mark_begin, - [22215] = 2, - ACTIONS(2194), 1, + [23247] = 2, + ACTIONS(2202), 1, sym__in_fallback, - ACTIONS(2217), 1, + ACTIONS(2225), 1, sym__square_bracket_span_begin, - [22222] = 2, - ACTIONS(2194), 1, + [23254] = 2, + ACTIONS(2202), 1, sym__in_fallback, - ACTIONS(2220), 1, + ACTIONS(2228), 1, sym__square_bracket_span_begin, - [22229] = 2, - ACTIONS(2194), 1, + [23261] = 2, + ACTIONS(2202), 1, sym__in_fallback, - ACTIONS(2223), 1, + ACTIONS(2231), 1, sym__square_bracket_span_begin, - [22236] = 1, - ACTIONS(2194), 2, + [23268] = 1, + ACTIONS(2202), 2, sym__parens_span_mark_begin, sym__in_fallback, - [22241] = 2, - ACTIONS(2165), 1, - sym__in_fallback, - ACTIONS(2226), 1, - sym__emphasis_mark_begin, - [22248] = 2, - ACTIONS(2229), 1, - sym__emphasis_mark_begin, - ACTIONS(2232), 1, - sym__in_fallback, - [22255] = 2, - ACTIONS(2232), 1, + [23273] = 2, + ACTIONS(2173), 1, sym__in_fallback, ACTIONS(2234), 1, - sym__strong_mark_begin, - [22262] = 2, + sym__emphasis_mark_begin, + [23280] = 2, ACTIONS(2237), 1, sym__emphasis_mark_begin, ACTIONS(2240), 1, sym__in_fallback, - [22269] = 2, + [23287] = 2, ACTIONS(2240), 1, sym__in_fallback, ACTIONS(2242), 1, sym__strong_mark_begin, - [22276] = 2, + [23294] = 2, ACTIONS(2245), 1, - sym__curly_bracket_span_mark_begin, + sym__emphasis_mark_begin, + ACTIONS(2248), 1, + sym__in_fallback, + [23301] = 2, ACTIONS(2248), 1, sym__in_fallback, - [22283] = 2, ACTIONS(2250), 1, - sym__curly_bracket_span_mark_begin, + sym__strong_mark_begin, + [23308] = 2, ACTIONS(2253), 1, + sym__curly_bracket_span_mark_begin, + ACTIONS(2256), 1, sym__in_fallback, - [22290] = 1, - ACTIONS(2255), 1, - sym__verbatim_end, - [22294] = 1, - ACTIONS(2257), 1, - anon_sym_RBRACE, - [22298] = 1, - ACTIONS(2259), 1, - sym_emphasis_end, - [22302] = 1, + [23315] = 2, + ACTIONS(2258), 1, + sym__curly_bracket_span_mark_begin, ACTIONS(2261), 1, - sym_strong_end, - [22306] = 1, + sym__in_fallback, + [23322] = 1, ACTIONS(2263), 1, - sym_superscript_end, - [22310] = 1, + sym__verbatim_end, + [23326] = 1, ACTIONS(2265), 1, - sym_subscript_end, - [22314] = 1, + anon_sym_RBRACE, + [23330] = 1, ACTIONS(2267), 1, - sym_highlighted_end, - [22318] = 1, + sym_emphasis_end, + [23334] = 1, ACTIONS(2269), 1, - sym_insert_end, - [22322] = 1, + sym_strong_end, + [23338] = 1, ACTIONS(2271), 1, - sym_delete_end, - [22326] = 1, + sym_superscript_end, + [23342] = 1, ACTIONS(2273), 1, - sym__square_bracket_span_end, - [22330] = 1, + sym_subscript_end, + [23346] = 1, ACTIONS(2275), 1, - anon_sym_RBRACK, - [22334] = 1, + sym_highlighted_end, + [23350] = 1, ACTIONS(2277), 1, - sym__verbatim_end, - [22338] = 1, + sym_insert_end, + [23354] = 1, ACTIONS(2279), 1, - sym__parens_span_end, - [22342] = 1, + sym_delete_end, + [23358] = 1, ACTIONS(2281), 1, - sym__verbatim_end, - [22346] = 1, + sym__square_bracket_span_end, + [23362] = 1, ACTIONS(2283), 1, - anon_sym_RBRACE, - [22350] = 1, + anon_sym_RBRACK, + [23366] = 1, ACTIONS(2285), 1, - anon_sym_RBRACE, - [22354] = 1, + sym__verbatim_end, + [23370] = 1, ACTIONS(2287), 1, - sym__newline, - [22358] = 1, + sym__parens_span_end, + [23374] = 1, ACTIONS(2289), 1, - anon_sym_RBRACE, - [22362] = 1, + sym__verbatim_end, + [23378] = 1, ACTIONS(2291), 1, - sym_emphasis_end, - [22366] = 1, + anon_sym_RBRACE, + [23382] = 1, ACTIONS(2293), 1, - sym__parens_span_end, - [22370] = 1, + anon_sym_RBRACE, + [23386] = 1, ACTIONS(2295), 1, - sym_strong_end, - [22374] = 1, + sym__newline, + [23390] = 1, ACTIONS(2297), 1, - anon_sym_RBRACK, - [22378] = 1, + anon_sym_RBRACE, + [23394] = 1, ACTIONS(2299), 1, - sym__newline, - [22382] = 1, + sym_emphasis_end, + [23398] = 1, ACTIONS(2301), 1, - sym__square_bracket_span_end, - [22386] = 1, + sym__parens_span_end, + [23402] = 1, ACTIONS(2303), 1, - sym_delete_end, - [22390] = 1, + sym_strong_end, + [23406] = 1, ACTIONS(2305), 1, - sym_insert_end, - [22394] = 1, + anon_sym_RBRACK, + [23410] = 1, ACTIONS(2307), 1, - sym_highlighted_end, - [22398] = 1, + sym__newline, + [23414] = 1, ACTIONS(2309), 1, - sym__verbatim_end, - [22402] = 1, + sym__square_bracket_span_end, + [23418] = 1, ACTIONS(2311), 1, - sym_subscript_end, - [22406] = 1, + sym_delete_end, + [23422] = 1, ACTIONS(2313), 1, - sym__verbatim_end, - [22410] = 1, + sym_insert_end, + [23426] = 1, ACTIONS(2315), 1, - sym_superscript_end, - [22414] = 1, + sym_highlighted_end, + [23430] = 1, ACTIONS(2317), 1, - sym_strong_end, - [22418] = 1, + sym__verbatim_end, + [23434] = 1, ACTIONS(2319), 1, - sym_emphasis_end, - [22422] = 1, + sym_subscript_end, + [23438] = 1, ACTIONS(2321), 1, - anon_sym_RBRACE, - [22426] = 1, - ACTIONS(2323), 1, sym__verbatim_end, - [22430] = 1, + [23442] = 1, + ACTIONS(2323), 1, + sym_superscript_end, + [23446] = 1, ACTIONS(2325), 1, - anon_sym_RBRACE, - [22434] = 1, + sym_strong_end, + [23450] = 1, ACTIONS(2327), 1, sym_emphasis_end, - [22438] = 1, + [23454] = 1, ACTIONS(2329), 1, - sym_strong_end, - [22442] = 1, + anon_sym_RBRACE, + [23458] = 1, ACTIONS(2331), 1, - sym_superscript_end, - [22446] = 1, + sym__verbatim_end, + [23462] = 1, ACTIONS(2333), 1, - sym_subscript_end, - [22450] = 1, + anon_sym_RBRACE, + [23466] = 1, ACTIONS(2335), 1, - sym_highlighted_end, - [22454] = 1, + sym_emphasis_end, + [23470] = 1, ACTIONS(2337), 1, - sym_insert_end, - [22458] = 1, + sym_strong_end, + [23474] = 1, ACTIONS(2339), 1, - sym_delete_end, - [22462] = 1, + sym_superscript_end, + [23478] = 1, ACTIONS(2341), 1, - sym__square_bracket_span_end, - [22466] = 1, + sym_subscript_end, + [23482] = 1, ACTIONS(2343), 1, - anon_sym_RBRACK, - [22470] = 1, + sym_highlighted_end, + [23486] = 1, ACTIONS(2345), 1, - sym__verbatim_end, - [22474] = 1, + sym_insert_end, + [23490] = 1, ACTIONS(2347), 1, - sym__parens_span_end, - [22478] = 1, + sym_delete_end, + [23494] = 1, ACTIONS(2349), 1, - sym_superscript_end, - [22482] = 1, + sym__square_bracket_span_end, + [23498] = 1, ACTIONS(2351), 1, - anon_sym_RBRACE, - [22486] = 1, + anon_sym_RBRACK, + [23502] = 1, ACTIONS(2353), 1, sym__verbatim_end, - [22490] = 1, + [23506] = 1, ACTIONS(2355), 1, - sym_highlighted_end, - [22494] = 1, + sym__parens_span_end, + [23510] = 1, ACTIONS(2357), 1, - sym__newline, - [22498] = 1, + sym_superscript_end, + [23514] = 1, ACTIONS(2359), 1, anon_sym_RBRACE, - [22502] = 1, + [23518] = 1, ACTIONS(2361), 1, - sym_insert_end, - [22506] = 1, + sym__verbatim_end, + [23522] = 1, ACTIONS(2363), 1, - sym__parens_span_end, - [22510] = 1, + sym_highlighted_end, + [23526] = 1, ACTIONS(2365), 1, - sym_delete_end, - [22514] = 1, - ACTIONS(2367), 1, sym__newline, - [22518] = 1, + [23530] = 1, + ACTIONS(2367), 1, + anon_sym_RBRACE, + [23534] = 1, ACTIONS(2369), 1, - sym__newline, - [22522] = 1, + sym_insert_end, + [23538] = 1, ACTIONS(2371), 1, - anon_sym_RBRACK, - [22526] = 1, + sym__parens_span_end, + [23542] = 1, ACTIONS(2373), 1, - sym__square_bracket_span_end, - [22530] = 1, - ACTIONS(2375), 1, sym_delete_end, - [22534] = 1, + [23546] = 1, + ACTIONS(2375), 1, + sym__newline, + [23550] = 1, ACTIONS(2377), 1, - sym_insert_end, - [22538] = 1, + anon_sym_RBRACK, + [23554] = 1, ACTIONS(2379), 1, - sym_highlighted_end, - [22542] = 1, + sym__square_bracket_span_end, + [23558] = 1, ACTIONS(2381), 1, - sym__verbatim_end, - [22546] = 1, + sym_delete_end, + [23562] = 1, ACTIONS(2383), 1, - sym_subscript_end, - [22550] = 1, + sym_insert_end, + [23566] = 1, ACTIONS(2385), 1, - sym_superscript_end, - [22554] = 1, + sym__newline, + [23570] = 1, ACTIONS(2387), 1, - sym_strong_end, - [22558] = 1, + sym_highlighted_end, + [23574] = 1, ACTIONS(2389), 1, - sym_emphasis_end, - [22562] = 1, - ACTIONS(2391), 1, sym__verbatim_end, - [22566] = 1, + [23578] = 1, + ACTIONS(2391), 1, + sym_subscript_end, + [23582] = 1, ACTIONS(2393), 1, - anon_sym_RBRACE, - [22570] = 1, + sym_superscript_end, + [23586] = 1, ACTIONS(2395), 1, - sym_emphasis_end, - [22574] = 1, - ACTIONS(2397), 1, sym_strong_end, - [22578] = 1, + [23590] = 1, + ACTIONS(2397), 1, + sym_emphasis_end, + [23594] = 1, ACTIONS(2399), 1, - sym_superscript_end, - [22582] = 1, + sym__verbatim_end, + [23598] = 1, ACTIONS(2401), 1, - sym_subscript_end, - [22586] = 1, + anon_sym_RBRACE, + [23602] = 1, ACTIONS(2403), 1, - sym_highlighted_end, - [22590] = 1, + sym_emphasis_end, + [23606] = 1, ACTIONS(2405), 1, - sym_insert_end, - [22594] = 1, + sym_strong_end, + [23610] = 1, ACTIONS(2407), 1, - sym_delete_end, - [22598] = 1, + sym_superscript_end, + [23614] = 1, ACTIONS(2409), 1, - sym__square_bracket_span_end, - [22602] = 1, + sym_subscript_end, + [23618] = 1, ACTIONS(2411), 1, - anon_sym_RBRACK, - [22606] = 1, + sym_highlighted_end, + [23622] = 1, ACTIONS(2413), 1, - anon_sym_RBRACE, - [22610] = 1, + sym_insert_end, + [23626] = 1, ACTIONS(2415), 1, - sym__parens_span_end, - [22614] = 1, + sym_delete_end, + [23630] = 1, ACTIONS(2417), 1, - sym__verbatim_end, - [22618] = 1, + sym__square_bracket_span_end, + [23634] = 1, ACTIONS(2419), 1, - anon_sym_RBRACE, - [22622] = 1, + anon_sym_RBRACK, + [23638] = 1, ACTIONS(2421), 1, - sym__verbatim_content, - [22626] = 1, + anon_sym_RBRACE, + [23642] = 1, ACTIONS(2423), 1, - sym__curly_bracket_span_mark_begin, - [22630] = 1, + sym__parens_span_end, + [23646] = 1, ACTIONS(2425), 1, - sym__verbatim_content, - [22634] = 1, + sym__verbatim_end, + [23650] = 1, ACTIONS(2427), 1, - sym_subscript_end, - [22638] = 1, + anon_sym_RBRACE, + [23654] = 1, ACTIONS(2429), 1, - sym__verbatim_end, - [22642] = 1, + sym__verbatim_content, + [23658] = 1, ACTIONS(2431), 1, - anon_sym_RBRACK, - [22646] = 1, + sym__curly_bracket_span_mark_begin, + [23662] = 1, ACTIONS(2433), 1, - anon_sym_RBRACE, - [22650] = 1, + sym__verbatim_content, + [23666] = 1, ACTIONS(2435), 1, - sym__parens_span_end, - [22654] = 1, + sym__square_bracket_span_end, + [23670] = 1, ACTIONS(2437), 1, - anon_sym_RBRACK, - [22658] = 1, + sym__verbatim_end, + [23674] = 1, ACTIONS(2439), 1, - sym__square_bracket_span_end, - [22662] = 1, + anon_sym_RBRACK, + [23678] = 1, ACTIONS(2441), 1, - sym_delete_end, - [22666] = 1, - ACTIONS(2443), 1, sym__parens_span_end, - [22670] = 1, + [23682] = 1, + ACTIONS(2443), 1, + anon_sym_RBRACE, + [23686] = 1, ACTIONS(2445), 1, - sym_insert_end, - [22674] = 1, + sym__parens_span_end, + [23690] = 1, ACTIONS(2447), 1, - sym__whitespace, - [22678] = 1, + anon_sym_RBRACK, + [23694] = 1, ACTIONS(2449), 1, - aux_sym_inline_link_destination_token1, - [22682] = 1, - ACTIONS(2451), 1, sym__square_bracket_span_end, - [22686] = 1, + [23698] = 1, + ACTIONS(2451), 1, + sym__newline, + [23702] = 1, ACTIONS(2453), 1, - sym_language, - [22690] = 1, + sym_delete_end, + [23706] = 1, ACTIONS(2455), 1, - sym__verbatim_content, - [22694] = 1, + sym__whitespace, + [23710] = 1, ACTIONS(2457), 1, - sym__curly_bracket_span_mark_begin, - [22698] = 1, + aux_sym_inline_link_destination_token1, + [23714] = 1, ACTIONS(2459), 1, - sym__verbatim_content, - [22702] = 1, + sym__square_bracket_span_end, + [23718] = 1, ACTIONS(2461), 1, - sym__newline, - [22706] = 1, + sym_language, + [23722] = 1, ACTIONS(2463), 1, - sym_highlighted_end, - [22710] = 1, + sym__verbatim_content, + [23726] = 1, ACTIONS(2465), 1, - sym_subscript_end, - [22714] = 1, + sym__curly_bracket_span_mark_begin, + [23730] = 1, ACTIONS(2467), 1, - sym_superscript_end, - [22718] = 1, + sym__verbatim_content, + [23734] = 1, ACTIONS(2469), 1, - sym_strong_end, - [22722] = 1, + anon_sym_RBRACE, + [23738] = 1, ACTIONS(2471), 1, - sym_emphasis_end, - [22726] = 1, + sym_insert_end, + [23742] = 1, ACTIONS(2473), 1, - anon_sym_RBRACE, - [22730] = 1, + sym_highlighted_end, + [23746] = 1, ACTIONS(2475), 1, - sym__verbatim_end, - [22734] = 1, + sym_subscript_end, + [23750] = 1, ACTIONS(2477), 1, - anon_sym_RBRACE, - [22738] = 1, + sym_superscript_end, + [23754] = 1, ACTIONS(2479), 1, - anon_sym_RBRACE, - [22742] = 1, + sym_strong_end, + [23758] = 1, ACTIONS(2481), 1, - aux_sym_inline_link_destination_token1, - [22746] = 1, + sym_emphasis_end, + [23762] = 1, ACTIONS(2483), 1, - sym__square_bracket_span_end, - [22750] = 1, + anon_sym_RBRACE, + [23766] = 1, ACTIONS(2485), 1, - sym_language, - [22754] = 1, + sym_subscript_end, + [23770] = 1, ACTIONS(2487), 1, - sym__verbatim_content, - [22758] = 1, + sym__verbatim_end, + [23774] = 1, ACTIONS(2489), 1, - sym__curly_bracket_span_mark_begin, - [22762] = 1, + aux_sym_inline_link_destination_token1, + [23778] = 1, ACTIONS(2491), 1, - sym__verbatim_content, - [22766] = 1, + sym__square_bracket_span_end, + [23782] = 1, ACTIONS(2493), 1, - sym__parens_span_end, - [22770] = 1, + sym_language, + [23786] = 1, ACTIONS(2495), 1, - anon_sym_RBRACK, - [22774] = 1, + sym__verbatim_content, + [23790] = 1, ACTIONS(2497), 1, - sym__square_bracket_span_end, - [22778] = 1, + sym__curly_bracket_span_mark_begin, + [23794] = 1, ACTIONS(2499), 1, - sym__verbatim_end, - [22782] = 1, + sym__verbatim_content, + [23798] = 1, ACTIONS(2501), 1, - sym_delete_end, - [22786] = 1, + sym__parens_span_end, + [23802] = 1, ACTIONS(2503), 1, - sym_insert_end, - [22790] = 1, + anon_sym_RBRACK, + [23806] = 1, ACTIONS(2505), 1, - sym_highlighted_end, - [22794] = 1, + sym__square_bracket_span_end, + [23810] = 1, ACTIONS(2507), 1, - sym_subscript_end, - [22798] = 1, + sym_delete_end, + [23814] = 1, ACTIONS(2509), 1, - sym_superscript_end, - [22802] = 1, + sym__verbatim_end, + [23818] = 1, ACTIONS(2511), 1, - sym__newline, - [22806] = 1, + sym_insert_end, + [23822] = 1, ACTIONS(2513), 1, - aux_sym_inline_link_destination_token1, - [22810] = 1, + sym_highlighted_end, + [23826] = 1, ACTIONS(2515), 1, - sym__square_bracket_span_end, - [22814] = 1, + sym_subscript_end, + [23830] = 1, ACTIONS(2517), 1, - sym_language, - [22818] = 1, + sym_superscript_end, + [23834] = 1, ACTIONS(2519), 1, - sym__verbatim_content, - [22822] = 1, + sym__newline, + [23838] = 1, ACTIONS(2521), 1, - sym__curly_bracket_span_mark_begin, - [22826] = 1, + aux_sym_inline_link_destination_token1, + [23842] = 1, ACTIONS(2523), 1, - sym__verbatim_content, - [22830] = 1, + sym__square_bracket_span_end, + [23846] = 1, ACTIONS(2525), 1, - sym_strong_end, - [22834] = 1, + sym_language, + [23850] = 1, ACTIONS(2527), 1, - sym_emphasis_end, - [22838] = 1, + sym__verbatim_content, + [23854] = 1, ACTIONS(2529), 1, - anon_sym_RBRACE, - [22842] = 1, + sym__curly_bracket_span_mark_begin, + [23858] = 1, ACTIONS(2531), 1, - sym__verbatim_end, - [22846] = 1, + sym__verbatim_content, + [23862] = 1, ACTIONS(2533), 1, - sym__verbatim_end, - [22850] = 1, + sym_strong_end, + [23866] = 1, ACTIONS(2535), 1, - sym__newline, - [22854] = 1, + sym_emphasis_end, + [23870] = 1, ACTIONS(2537), 1, anon_sym_RBRACE, - [22858] = 1, + [23874] = 1, ACTIONS(2539), 1, - aux_sym_value_token1, - [22862] = 1, + sym__verbatim_end, + [23878] = 1, ACTIONS(2541), 1, - sym__parens_span_end, - [22866] = 1, + sym__verbatim_end, + [23882] = 1, ACTIONS(2543), 1, - anon_sym_DQUOTE, - [22870] = 1, + sym__newline, + [23886] = 1, ACTIONS(2545), 1, - aux_sym_inline_link_destination_token1, - [22874] = 1, + anon_sym_RBRACE, + [23890] = 1, ACTIONS(2547), 1, - sym__square_bracket_span_end, - [22878] = 1, + aux_sym_value_token1, + [23894] = 1, ACTIONS(2549), 1, - sym_language, - [22882] = 1, + sym__parens_span_end, + [23898] = 1, ACTIONS(2551), 1, - sym__verbatim_content, - [22886] = 1, + anon_sym_DQUOTE, + [23902] = 1, ACTIONS(2553), 1, - sym__curly_bracket_span_mark_begin, - [22890] = 1, + aux_sym_inline_link_destination_token1, + [23906] = 1, ACTIONS(2555), 1, - sym__verbatim_content, - [22894] = 1, + sym__square_bracket_span_end, + [23910] = 1, ACTIONS(2557), 1, - anon_sym_RBRACK, - [22898] = 1, - ACTIONS(1601), 1, - anon_sym_RBRACE, - [22902] = 1, + sym_language, + [23914] = 1, ACTIONS(2559), 1, - sym__square_bracket_span_end, - [22906] = 1, - ACTIONS(1607), 1, - anon_sym_RBRACE, - [22910] = 1, + sym__verbatim_content, + [23918] = 1, ACTIONS(2561), 1, - anon_sym_RBRACE, - [22914] = 1, + sym__curly_bracket_span_mark_begin, + [23922] = 1, ACTIONS(2563), 1, - sym__parens_span_end, - [22918] = 1, + sym__verbatim_content, + [23926] = 1, ACTIONS(2565), 1, - anon_sym_EQ, - [22922] = 1, + anon_sym_RBRACK, + [23930] = 1, + ACTIONS(1607), 1, + anon_sym_RBRACE, + [23934] = 1, ACTIONS(2567), 1, - sym_delete_end, - [22926] = 1, + sym__square_bracket_span_end, + [23938] = 1, + ACTIONS(1609), 1, + anon_sym_RBRACE, + [23942] = 1, ACTIONS(2569), 1, - sym_insert_end, - [22930] = 1, + anon_sym_RBRACE, + [23946] = 1, ACTIONS(2571), 1, - anon_sym_EQ, - [22934] = 1, + sym__parens_span_end, + [23950] = 1, ACTIONS(2573), 1, - aux_sym_inline_link_destination_token1, - [22938] = 1, + anon_sym_EQ, + [23954] = 1, ACTIONS(2575), 1, - sym__square_bracket_span_end, - [22942] = 1, + sym_delete_end, + [23958] = 1, ACTIONS(2577), 1, - sym_language, - [22946] = 1, + sym_insert_end, + [23962] = 1, ACTIONS(2579), 1, - sym__verbatim_content, - [22950] = 1, + anon_sym_EQ, + [23966] = 1, ACTIONS(2581), 1, - sym__curly_bracket_span_mark_begin, - [22954] = 1, + aux_sym_inline_link_destination_token1, + [23970] = 1, ACTIONS(2583), 1, - sym__verbatim_content, - [22958] = 1, + sym__square_bracket_span_end, + [23974] = 1, ACTIONS(2585), 1, - sym_highlighted_end, - [22962] = 1, - ACTIONS(2587), 1, sym_language, - [22966] = 1, + [23978] = 1, + ACTIONS(2587), 1, + sym__verbatim_content, + [23982] = 1, ACTIONS(2589), 1, - sym__square_bracket_span_end, - [22970] = 1, + sym__curly_bracket_span_mark_begin, + [23986] = 1, ACTIONS(2591), 1, - sym__square_bracket_span_end, - [22974] = 1, + sym__verbatim_content, + [23990] = 1, ACTIONS(2593), 1, - aux_sym_inline_link_destination_token1, - [22978] = 1, + sym_highlighted_end, + [23994] = 1, ACTIONS(2595), 1, - anon_sym_RBRACK, - [22982] = 1, + sym_language, + [23998] = 1, ACTIONS(2597), 1, sym__square_bracket_span_end, - [22986] = 1, + [24002] = 1, ACTIONS(2599), 1, sym__square_bracket_span_end, - [22990] = 1, + [24006] = 1, ACTIONS(2601), 1, - sym_subscript_end, - [22994] = 1, + aux_sym_inline_link_destination_token1, + [24010] = 1, ACTIONS(2603), 1, - sym_delete_end, - [22998] = 1, + anon_sym_RBRACK, + [24014] = 1, ACTIONS(2605), 1, - aux_sym_inline_link_destination_token1, - [23002] = 1, + sym__square_bracket_span_end, + [24018] = 1, ACTIONS(2607), 1, sym__square_bracket_span_end, - [23006] = 1, + [24022] = 1, ACTIONS(2609), 1, - sym_language, - [23010] = 1, + sym_subscript_end, + [24026] = 1, ACTIONS(2611), 1, - sym__verbatim_content, - [23014] = 1, + sym_delete_end, + [24030] = 1, ACTIONS(2613), 1, - sym__curly_bracket_span_mark_begin, - [23018] = 1, + aux_sym_inline_link_destination_token1, + [24034] = 1, ACTIONS(2615), 1, - sym__verbatim_content, - [23022] = 1, + sym__square_bracket_span_end, + [24038] = 1, ACTIONS(2617), 1, - sym_superscript_end, - [23026] = 1, + sym_language, + [24042] = 1, ACTIONS(2619), 1, - sym_insert_end, - [23030] = 1, + sym__verbatim_content, + [24046] = 1, ACTIONS(2621), 1, - sym_highlighted_end, - [23034] = 1, + sym__curly_bracket_span_mark_begin, + [24050] = 1, ACTIONS(2623), 1, - sym_subscript_end, - [23038] = 1, + sym__verbatim_content, + [24054] = 1, ACTIONS(2625), 1, sym_superscript_end, - [23042] = 1, + [24058] = 1, ACTIONS(2627), 1, - sym_strong_end, - [23046] = 1, + sym_insert_end, + [24062] = 1, ACTIONS(2629), 1, - sym_emphasis_end, - [23050] = 1, + sym_highlighted_end, + [24066] = 1, ACTIONS(2631), 1, - anon_sym_RBRACE, - [23054] = 1, + sym_subscript_end, + [24070] = 1, ACTIONS(2633), 1, - sym_strong_end, - [23058] = 1, + sym_superscript_end, + [24074] = 1, ACTIONS(2635), 1, - sym__whitespace, - [23062] = 1, + sym_strong_end, + [24078] = 1, ACTIONS(2637), 1, - aux_sym_inline_link_destination_token1, - [23066] = 1, + sym_emphasis_end, + [24082] = 1, ACTIONS(2639), 1, - sym__square_bracket_span_end, - [23070] = 1, + anon_sym_RBRACE, + [24086] = 1, ACTIONS(2641), 1, - sym_language, - [23074] = 1, + sym_strong_end, + [24090] = 1, ACTIONS(2643), 1, - sym__verbatim_content, - [23078] = 1, + sym__whitespace, + [24094] = 1, ACTIONS(2645), 1, - sym__curly_bracket_span_mark_begin, - [23082] = 1, + aux_sym_inline_link_destination_token1, + [24098] = 1, ACTIONS(2647), 1, - sym__verbatim_content, - [23086] = 1, + sym__square_bracket_span_end, + [24102] = 1, ACTIONS(2649), 1, - sym_emphasis_end, - [23090] = 1, + sym_language, + [24106] = 1, ACTIONS(2651), 1, - sym__verbatim_end, - [23094] = 1, + sym__verbatim_content, + [24110] = 1, ACTIONS(2653), 1, - sym__parens_span_mark_begin, - [23098] = 1, + sym__curly_bracket_span_mark_begin, + [24114] = 1, ACTIONS(2655), 1, - anon_sym_RBRACE, - [23102] = 1, + sym__verbatim_content, + [24118] = 1, ACTIONS(2657), 1, - sym__verbatim_end, - [23106] = 1, + sym_emphasis_end, + [24122] = 1, ACTIONS(2659), 1, - sym__verbatim_content, - [23110] = 1, + sym__verbatim_end, + [24126] = 1, ACTIONS(2661), 1, - sym__curly_bracket_span_mark_begin, - [23114] = 1, + sym__parens_span_mark_begin, + [24130] = 1, ACTIONS(2663), 1, - sym__verbatim_end, - [23118] = 1, + anon_sym_RBRACE, + [24134] = 1, ACTIONS(2665), 1, - sym__newline, - [23122] = 1, + sym__verbatim_end, + [24138] = 1, ACTIONS(2667), 1, - sym__newline, - [23126] = 1, + sym__verbatim_content, + [24142] = 1, ACTIONS(2669), 1, - aux_sym_inline_link_destination_token1, - [23130] = 1, + sym__curly_bracket_span_mark_begin, + [24146] = 1, ACTIONS(2671), 1, - sym__square_bracket_span_end, - [23134] = 1, + sym__verbatim_end, + [24150] = 1, ACTIONS(2673), 1, - sym_language, - [23138] = 1, + sym__newline, + [24154] = 1, ACTIONS(2675), 1, - sym__verbatim_content, - [23142] = 1, + anon_sym_RBRACE, + [24158] = 1, ACTIONS(2677), 1, - sym__curly_bracket_span_mark_begin, - [23146] = 1, + aux_sym_inline_link_destination_token1, + [24162] = 1, ACTIONS(2679), 1, - sym__verbatim_content, - [23150] = 1, + sym__square_bracket_span_end, + [24166] = 1, ACTIONS(2681), 1, - anon_sym_RBRACE, - [23154] = 1, + sym_language, + [24170] = 1, ACTIONS(2683), 1, sym__verbatim_content, - [23158] = 1, + [24174] = 1, ACTIONS(2685), 1, - sym__verbatim_end, - [23162] = 1, + sym__curly_bracket_span_mark_begin, + [24178] = 1, ACTIONS(2687), 1, - sym__square_bracket_span_begin, - [23166] = 1, + sym__verbatim_content, + [24182] = 1, ACTIONS(2689), 1, - sym__square_bracket_span_begin, - [23170] = 1, + sym__parens_span_end, + [24186] = 1, ACTIONS(2691), 1, - sym__square_bracket_span_begin, - [23174] = 1, + sym__verbatim_content, + [24190] = 1, ACTIONS(2693), 1, - sym__delete_mark_begin, - [23178] = 1, + sym__verbatim_end, + [24194] = 1, ACTIONS(2695), 1, - sym__insert_mark_begin, - [23182] = 1, + sym__square_bracket_span_begin, + [24198] = 1, ACTIONS(2697), 1, - sym__parens_span_end, - [23186] = 1, + sym__square_bracket_span_begin, + [24202] = 1, ACTIONS(2699), 1, - sym__highlighted_mark_begin, - [23190] = 1, + sym__square_bracket_span_begin, + [24206] = 1, ACTIONS(2701), 1, - aux_sym_inline_link_destination_token1, - [23194] = 1, + sym__delete_mark_begin, + [24210] = 1, ACTIONS(2703), 1, - sym__square_bracket_span_end, - [23198] = 1, + sym__insert_mark_begin, + [24214] = 1, ACTIONS(2705), 1, - sym_language, - [23202] = 1, + anon_sym_RBRACK, + [24218] = 1, ACTIONS(2707), 1, - sym__verbatim_content, - [23206] = 1, + sym__highlighted_mark_begin, + [24222] = 1, ACTIONS(2709), 1, - sym__curly_bracket_span_mark_begin, - [23210] = 1, + aux_sym_inline_link_destination_token1, + [24226] = 1, ACTIONS(2711), 1, - sym__verbatim_content, - [23214] = 1, - ACTIONS(2713), 1, sym__square_bracket_span_end, - [23218] = 1, + [24230] = 1, + ACTIONS(2713), 1, + sym_language, + [24234] = 1, ACTIONS(2715), 1, - sym__subscript_mark_begin, - [23222] = 1, + sym__verbatim_content, + [24238] = 1, ACTIONS(2717), 1, - sym__superscript_mark_begin, - [23226] = 1, + sym__curly_bracket_span_mark_begin, + [24242] = 1, ACTIONS(2719), 1, - sym__strong_mark_begin, - [23230] = 1, + sym__verbatim_content, + [24246] = 1, ACTIONS(2721), 1, - sym__emphasis_mark_begin, - [23234] = 1, + sym__square_bracket_span_end, + [24250] = 1, ACTIONS(2723), 1, - ts_builtin_sym_end, - [23238] = 1, + sym__subscript_mark_begin, + [24254] = 1, ACTIONS(2725), 1, - ts_builtin_sym_end, - [23242] = 1, + sym__superscript_mark_begin, + [24258] = 1, ACTIONS(2727), 1, - anon_sym_RBRACK, - [23246] = 1, + sym__strong_mark_begin, + [24262] = 1, ACTIONS(2729), 1, - sym__square_bracket_span_end, - [23250] = 1, + sym__emphasis_mark_begin, + [24266] = 1, ACTIONS(2731), 1, - sym_delete_end, - [23254] = 1, + ts_builtin_sym_end, + [24270] = 1, ACTIONS(2733), 1, - aux_sym_inline_link_destination_token1, - [23258] = 1, + ts_builtin_sym_end, + [24274] = 1, ACTIONS(2735), 1, - sym__square_bracket_span_end, - [23262] = 1, + sym_delete_end, + [24278] = 1, ACTIONS(2737), 1, - sym_language, - [23266] = 1, + sym_insert_end, + [24282] = 1, ACTIONS(2739), 1, - sym__emphasis_mark_begin, - [23270] = 1, + sym_highlighted_end, + [24286] = 1, ACTIONS(2741), 1, - sym__strong_mark_begin, - [23274] = 1, + aux_sym_inline_link_destination_token1, + [24290] = 1, ACTIONS(2743), 1, - sym__superscript_mark_begin, - [23278] = 1, + sym__square_bracket_span_end, + [24294] = 1, ACTIONS(2745), 1, - sym__subscript_mark_begin, - [23282] = 1, + sym_language, + [24298] = 1, ACTIONS(2747), 1, - sym__highlighted_mark_begin, - [23286] = 1, + sym__emphasis_mark_begin, + [24302] = 1, ACTIONS(2749), 1, - sym__insert_mark_begin, - [23290] = 1, + sym__strong_mark_begin, + [24306] = 1, ACTIONS(2751), 1, - sym__delete_mark_begin, - [23294] = 1, + sym__superscript_mark_begin, + [24310] = 1, ACTIONS(2753), 1, - sym__square_bracket_span_begin, - [23298] = 1, + sym__subscript_mark_begin, + [24314] = 1, ACTIONS(2755), 1, - sym__parens_span_mark_begin, - [23302] = 1, + sym__highlighted_mark_begin, + [24318] = 1, ACTIONS(2757), 1, - sym_insert_end, - [23306] = 1, + sym__insert_mark_begin, + [24322] = 1, ACTIONS(2759), 1, - sym__emphasis_mark_begin, - [23310] = 1, + sym__delete_mark_begin, + [24326] = 1, ACTIONS(2761), 1, - sym__strong_mark_begin, - [23314] = 1, + sym__square_bracket_span_begin, + [24330] = 1, ACTIONS(2763), 1, - sym__superscript_mark_begin, - [23318] = 1, + sym__parens_span_mark_begin, + [24334] = 1, ACTIONS(2765), 1, - sym__subscript_mark_begin, - [23322] = 1, + sym_subscript_end, + [24338] = 1, ACTIONS(2767), 1, - sym__highlighted_mark_begin, - [23326] = 1, + sym__emphasis_mark_begin, + [24342] = 1, ACTIONS(2769), 1, - sym__insert_mark_begin, - [23330] = 1, + sym__strong_mark_begin, + [24346] = 1, ACTIONS(2771), 1, - sym__delete_mark_begin, - [23334] = 1, + sym__superscript_mark_begin, + [24350] = 1, ACTIONS(2773), 1, - sym__square_bracket_span_begin, - [23338] = 1, + sym__subscript_mark_begin, + [24354] = 1, ACTIONS(2775), 1, - sym__parens_span_mark_begin, - [23342] = 1, + sym__highlighted_mark_begin, + [24358] = 1, ACTIONS(2777), 1, - sym_highlighted_end, - [23346] = 1, + sym__insert_mark_begin, + [24362] = 1, ACTIONS(2779), 1, - sym__emphasis_mark_begin, - [23350] = 1, + sym__delete_mark_begin, + [24366] = 1, ACTIONS(2781), 1, - sym__strong_mark_begin, - [23354] = 1, + sym__square_bracket_span_begin, + [24370] = 1, ACTIONS(2783), 1, - sym__superscript_mark_begin, - [23358] = 1, + sym__parens_span_mark_begin, + [24374] = 1, ACTIONS(2785), 1, - sym__subscript_mark_begin, - [23362] = 1, + sym_superscript_end, + [24378] = 1, ACTIONS(2787), 1, - sym__highlighted_mark_begin, - [23366] = 1, + sym__emphasis_mark_begin, + [24382] = 1, ACTIONS(2789), 1, - sym__insert_mark_begin, - [23370] = 1, + sym__strong_mark_begin, + [24386] = 1, ACTIONS(2791), 1, - sym__delete_mark_begin, - [23374] = 1, + sym__superscript_mark_begin, + [24390] = 1, ACTIONS(2793), 1, - sym__square_bracket_span_begin, - [23378] = 1, + sym__subscript_mark_begin, + [24394] = 1, ACTIONS(2795), 1, - sym__parens_span_mark_begin, - [23382] = 1, + sym__highlighted_mark_begin, + [24398] = 1, ACTIONS(2797), 1, - sym__newline, - [23386] = 1, + sym__insert_mark_begin, + [24402] = 1, ACTIONS(2799), 1, - sym__emphasis_mark_begin, - [23390] = 1, + sym__delete_mark_begin, + [24406] = 1, ACTIONS(2801), 1, - sym__strong_mark_begin, - [23394] = 1, + sym__square_bracket_span_begin, + [24410] = 1, ACTIONS(2803), 1, - sym__superscript_mark_begin, - [23398] = 1, + sym__parens_span_mark_begin, + [24414] = 1, ACTIONS(2805), 1, - sym__subscript_mark_begin, - [23402] = 1, + sym__newline, + [24418] = 1, ACTIONS(2807), 1, - sym__highlighted_mark_begin, - [23406] = 1, + sym__emphasis_mark_begin, + [24422] = 1, ACTIONS(2809), 1, - sym__insert_mark_begin, - [23410] = 1, + sym__strong_mark_begin, + [24426] = 1, ACTIONS(2811), 1, - sym__delete_mark_begin, - [23414] = 1, + sym__superscript_mark_begin, + [24430] = 1, ACTIONS(2813), 1, - sym__square_bracket_span_begin, - [23418] = 1, + sym__subscript_mark_begin, + [24434] = 1, ACTIONS(2815), 1, - sym__parens_span_mark_begin, - [23422] = 1, + sym__highlighted_mark_begin, + [24438] = 1, ACTIONS(2817), 1, - sym_subscript_end, - [23426] = 1, + sym__insert_mark_begin, + [24442] = 1, ACTIONS(2819), 1, - sym__emphasis_mark_begin, - [23430] = 1, + sym__delete_mark_begin, + [24446] = 1, ACTIONS(2821), 1, - sym__strong_mark_begin, - [23434] = 1, + sym__square_bracket_span_begin, + [24450] = 1, ACTIONS(2823), 1, - sym__superscript_mark_begin, - [23438] = 1, + sym__parens_span_mark_begin, + [24454] = 1, ACTIONS(2825), 1, - sym__subscript_mark_begin, - [23442] = 1, + sym_strong_end, + [24458] = 1, ACTIONS(2827), 1, - sym__highlighted_mark_begin, - [23446] = 1, + sym__emphasis_mark_begin, + [24462] = 1, ACTIONS(2829), 1, - sym__insert_mark_begin, - [23450] = 1, + sym__strong_mark_begin, + [24466] = 1, ACTIONS(2831), 1, - sym__delete_mark_begin, - [23454] = 1, + sym__superscript_mark_begin, + [24470] = 1, ACTIONS(2833), 1, - sym__square_bracket_span_begin, - [23458] = 1, + sym__subscript_mark_begin, + [24474] = 1, ACTIONS(2835), 1, - sym__parens_span_mark_begin, - [23462] = 1, + sym__highlighted_mark_begin, + [24478] = 1, ACTIONS(2837), 1, - sym_superscript_end, - [23466] = 1, + sym__insert_mark_begin, + [24482] = 1, ACTIONS(2839), 1, - sym__emphasis_mark_begin, - [23470] = 1, + sym__delete_mark_begin, + [24486] = 1, ACTIONS(2841), 1, - sym__strong_mark_begin, - [23474] = 1, + sym__square_bracket_span_begin, + [24490] = 1, ACTIONS(2843), 1, - sym__superscript_mark_begin, - [23478] = 1, + sym__parens_span_mark_begin, + [24494] = 1, ACTIONS(2845), 1, - sym__subscript_mark_begin, - [23482] = 1, + sym_emphasis_end, + [24498] = 1, ACTIONS(2847), 1, - sym__highlighted_mark_begin, - [23486] = 1, + sym__emphasis_mark_begin, + [24502] = 1, ACTIONS(2849), 1, - sym__insert_mark_begin, - [23490] = 1, + sym__strong_mark_begin, + [24506] = 1, ACTIONS(2851), 1, - sym__delete_mark_begin, - [23494] = 1, + sym__superscript_mark_begin, + [24510] = 1, ACTIONS(2853), 1, - sym__square_bracket_span_begin, - [23498] = 1, + sym__subscript_mark_begin, + [24514] = 1, ACTIONS(2855), 1, - sym__parens_span_mark_begin, - [23502] = 1, + sym__highlighted_mark_begin, + [24518] = 1, ACTIONS(2857), 1, - sym_strong_end, - [23506] = 1, + sym__insert_mark_begin, + [24522] = 1, ACTIONS(2859), 1, - sym__emphasis_mark_begin, - [23510] = 1, + sym__delete_mark_begin, + [24526] = 1, ACTIONS(2861), 1, - sym__strong_mark_begin, - [23514] = 1, + sym__square_bracket_span_begin, + [24530] = 1, ACTIONS(2863), 1, - sym__superscript_mark_begin, - [23518] = 1, + sym__parens_span_mark_begin, + [24534] = 1, ACTIONS(2865), 1, - sym__subscript_mark_begin, - [23522] = 1, + anon_sym_RBRACE, + [24538] = 1, ACTIONS(2867), 1, - sym__highlighted_mark_begin, - [23526] = 1, + sym__emphasis_mark_begin, + [24542] = 1, ACTIONS(2869), 1, - sym__insert_mark_begin, - [23530] = 1, + sym__strong_mark_begin, + [24546] = 1, ACTIONS(2871), 1, - sym__delete_mark_begin, - [23534] = 1, + sym__superscript_mark_begin, + [24550] = 1, ACTIONS(2873), 1, - sym__square_bracket_span_begin, - [23538] = 1, + sym__subscript_mark_begin, + [24554] = 1, ACTIONS(2875), 1, - sym__parens_span_mark_begin, - [23542] = 1, + sym__highlighted_mark_begin, + [24558] = 1, ACTIONS(2877), 1, - sym_emphasis_end, - [23546] = 1, + sym__insert_mark_begin, + [24562] = 1, ACTIONS(2879), 1, - sym__emphasis_mark_begin, - [23550] = 1, + sym__delete_mark_begin, + [24566] = 1, ACTIONS(2881), 1, - sym__strong_mark_begin, - [23554] = 1, + sym__square_bracket_span_begin, + [24570] = 1, ACTIONS(2883), 1, - sym__superscript_mark_begin, - [23558] = 1, + sym__parens_span_mark_begin, + [24574] = 1, ACTIONS(2885), 1, - sym__subscript_mark_begin, - [23562] = 1, + sym__verbatim_end, + [24578] = 1, ACTIONS(2887), 1, - sym__highlighted_mark_begin, - [23566] = 1, + sym__emphasis_mark_begin, + [24582] = 1, ACTIONS(2889), 1, - sym__insert_mark_begin, - [23570] = 1, + sym__strong_mark_begin, + [24586] = 1, ACTIONS(2891), 1, - sym__delete_mark_begin, - [23574] = 1, + sym__superscript_mark_begin, + [24590] = 1, ACTIONS(2893), 1, - sym__square_bracket_span_begin, - [23578] = 1, + sym__subscript_mark_begin, + [24594] = 1, ACTIONS(2895), 1, - sym__parens_span_mark_begin, - [23582] = 1, + sym__highlighted_mark_begin, + [24598] = 1, ACTIONS(2897), 1, - anon_sym_RBRACE, - [23586] = 1, + sym__insert_mark_begin, + [24602] = 1, ACTIONS(2899), 1, - sym__emphasis_mark_begin, - [23590] = 1, + sym__delete_mark_begin, + [24606] = 1, ACTIONS(2901), 1, - sym__strong_mark_begin, - [23594] = 1, + sym__square_bracket_span_begin, + [24610] = 1, ACTIONS(2903), 1, - sym__superscript_mark_begin, - [23598] = 1, + sym__parens_span_mark_begin, + [24614] = 1, ACTIONS(2905), 1, - sym__subscript_mark_begin, - [23602] = 1, + sym__verbatim_end, + [24618] = 1, ACTIONS(2907), 1, - sym__highlighted_mark_begin, - [23606] = 1, + sym__emphasis_mark_begin, + [24622] = 1, ACTIONS(2909), 1, - sym__insert_mark_begin, - [23610] = 1, + sym__strong_mark_begin, + [24626] = 1, ACTIONS(2911), 1, - sym__delete_mark_begin, - [23614] = 1, + sym__superscript_mark_begin, + [24630] = 1, ACTIONS(2913), 1, - sym__square_bracket_span_begin, - [23618] = 1, + sym__subscript_mark_begin, + [24634] = 1, ACTIONS(2915), 1, - sym__parens_span_mark_begin, - [23622] = 1, + sym__highlighted_mark_begin, + [24638] = 1, ACTIONS(2917), 1, - sym__verbatim_end, - [23626] = 1, + sym__insert_mark_begin, + [24642] = 1, ACTIONS(2919), 1, - sym__emphasis_mark_begin, - [23630] = 1, + sym__delete_mark_begin, + [24646] = 1, ACTIONS(2921), 1, - sym__strong_mark_begin, - [23634] = 1, + sym__square_bracket_span_begin, + [24650] = 1, ACTIONS(2923), 1, - sym__superscript_mark_begin, - [23638] = 1, + sym__parens_span_mark_begin, + [24654] = 1, ACTIONS(2925), 1, - sym__subscript_mark_begin, - [23642] = 1, + sym__newline, + [24658] = 1, ACTIONS(2927), 1, - sym__highlighted_mark_begin, - [23646] = 1, + sym__emphasis_mark_begin, + [24662] = 1, ACTIONS(2929), 1, - sym__insert_mark_begin, - [23650] = 1, + sym__strong_mark_begin, + [24666] = 1, ACTIONS(2931), 1, - sym__delete_mark_begin, - [23654] = 1, + sym__superscript_mark_begin, + [24670] = 1, ACTIONS(2933), 1, - sym__square_bracket_span_begin, - [23658] = 1, + sym__subscript_mark_begin, + [24674] = 1, ACTIONS(2935), 1, - sym__parens_span_mark_begin, - [23662] = 1, + sym__highlighted_mark_begin, + [24678] = 1, ACTIONS(2937), 1, - sym__verbatim_end, - [23666] = 1, + sym__insert_mark_begin, + [24682] = 1, ACTIONS(2939), 1, - sym__square_bracket_span_begin, - [23670] = 1, + sym__delete_mark_begin, + [24686] = 1, ACTIONS(2941), 1, sym__square_bracket_span_begin, - [23674] = 1, + [24690] = 1, ACTIONS(2943), 1, - sym__square_bracket_span_begin, - [23678] = 1, + sym__parens_span_mark_begin, + [24694] = 1, ACTIONS(2945), 1, - sym__square_bracket_span_begin, - [23682] = 1, + anon_sym_RBRACE, + [24698] = 1, ACTIONS(2947), 1, sym__square_bracket_span_begin, - [23686] = 1, + [24702] = 1, ACTIONS(2949), 1, sym__square_bracket_span_begin, - [23690] = 1, + [24706] = 1, ACTIONS(2951), 1, sym__square_bracket_span_begin, - [23694] = 1, + [24710] = 1, ACTIONS(2953), 1, sym__square_bracket_span_begin, - [23698] = 1, + [24714] = 1, ACTIONS(2955), 1, sym__square_bracket_span_begin, - [23702] = 1, + [24718] = 1, ACTIONS(2957), 1, sym__square_bracket_span_begin, + [24722] = 1, + ACTIONS(2959), 1, + sym__square_bracket_span_begin, + [24726] = 1, + ACTIONS(2961), 1, + sym__square_bracket_span_begin, + [24730] = 1, + ACTIONS(2963), 1, + sym__square_bracket_span_begin, + [24734] = 1, + ACTIONS(2965), 1, + sym__square_bracket_span_begin, }; static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(121)] = 0, - [SMALL_STATE(122)] = 53, - [SMALL_STATE(123)] = 106, - [SMALL_STATE(124)] = 159, - [SMALL_STATE(125)] = 212, - [SMALL_STATE(126)] = 265, - [SMALL_STATE(127)] = 318, - [SMALL_STATE(128)] = 371, - [SMALL_STATE(129)] = 424, - [SMALL_STATE(130)] = 477, - [SMALL_STATE(131)] = 530, - [SMALL_STATE(132)] = 580, - [SMALL_STATE(133)] = 630, - [SMALL_STATE(134)] = 680, - [SMALL_STATE(135)] = 732, - [SMALL_STATE(136)] = 782, - [SMALL_STATE(137)] = 832, - [SMALL_STATE(138)] = 882, - [SMALL_STATE(139)] = 932, - [SMALL_STATE(140)] = 982, - [SMALL_STATE(141)] = 1032, - [SMALL_STATE(142)] = 1082, - [SMALL_STATE(143)] = 1129, - [SMALL_STATE(144)] = 1178, - [SMALL_STATE(145)] = 1225, - [SMALL_STATE(146)] = 1272, - [SMALL_STATE(147)] = 1319, - [SMALL_STATE(148)] = 1366, - [SMALL_STATE(149)] = 1413, - [SMALL_STATE(150)] = 1460, - [SMALL_STATE(151)] = 1507, - [SMALL_STATE(152)] = 1554, - [SMALL_STATE(153)] = 1601, - [SMALL_STATE(154)] = 1645, - [SMALL_STATE(155)] = 1691, - [SMALL_STATE(156)] = 1735, - [SMALL_STATE(157)] = 1779, - [SMALL_STATE(158)] = 1825, - [SMALL_STATE(159)] = 1869, - [SMALL_STATE(160)] = 1913, - [SMALL_STATE(161)] = 1957, - [SMALL_STATE(162)] = 2001, - [SMALL_STATE(163)] = 2047, - [SMALL_STATE(164)] = 2091, - [SMALL_STATE(165)] = 2137, - [SMALL_STATE(166)] = 2181, - [SMALL_STATE(167)] = 2225, - [SMALL_STATE(168)] = 2269, - [SMALL_STATE(169)] = 2313, - [SMALL_STATE(170)] = 2359, - [SMALL_STATE(171)] = 2405, - [SMALL_STATE(172)] = 2451, - [SMALL_STATE(173)] = 2495, - [SMALL_STATE(174)] = 2539, - [SMALL_STATE(175)] = 2583, - [SMALL_STATE(176)] = 2629, - [SMALL_STATE(177)] = 2673, - [SMALL_STATE(178)] = 2717, - [SMALL_STATE(179)] = 2761, - [SMALL_STATE(180)] = 2805, - [SMALL_STATE(181)] = 2851, - [SMALL_STATE(182)] = 2895, - [SMALL_STATE(183)] = 2939, - [SMALL_STATE(184)] = 2983, - [SMALL_STATE(185)] = 3029, - [SMALL_STATE(186)] = 3073, - [SMALL_STATE(187)] = 3119, - [SMALL_STATE(188)] = 3163, - [SMALL_STATE(189)] = 3207, - [SMALL_STATE(190)] = 3251, - [SMALL_STATE(191)] = 3295, - [SMALL_STATE(192)] = 3339, - [SMALL_STATE(193)] = 3383, - [SMALL_STATE(194)] = 3427, - [SMALL_STATE(195)] = 3473, - [SMALL_STATE(196)] = 3519, - [SMALL_STATE(197)] = 3565, - [SMALL_STATE(198)] = 3609, - [SMALL_STATE(199)] = 3655, - [SMALL_STATE(200)] = 3699, - [SMALL_STATE(201)] = 3743, - [SMALL_STATE(202)] = 3787, - [SMALL_STATE(203)] = 3833, - [SMALL_STATE(204)] = 3879, - [SMALL_STATE(205)] = 3923, - [SMALL_STATE(206)] = 3969, - [SMALL_STATE(207)] = 4013, - [SMALL_STATE(208)] = 4057, - [SMALL_STATE(209)] = 4103, - [SMALL_STATE(210)] = 4147, - [SMALL_STATE(211)] = 4191, - [SMALL_STATE(212)] = 4235, - [SMALL_STATE(213)] = 4276, - [SMALL_STATE(214)] = 4317, - [SMALL_STATE(215)] = 4362, - [SMALL_STATE(216)] = 4403, - [SMALL_STATE(217)] = 4444, - [SMALL_STATE(218)] = 4485, - [SMALL_STATE(219)] = 4526, - [SMALL_STATE(220)] = 4567, - [SMALL_STATE(221)] = 4608, - [SMALL_STATE(222)] = 4649, - [SMALL_STATE(223)] = 4690, - [SMALL_STATE(224)] = 4731, - [SMALL_STATE(225)] = 4772, - [SMALL_STATE(226)] = 4813, - [SMALL_STATE(227)] = 4854, - [SMALL_STATE(228)] = 4895, - [SMALL_STATE(229)] = 4936, - [SMALL_STATE(230)] = 4977, - [SMALL_STATE(231)] = 5018, - [SMALL_STATE(232)] = 5059, - [SMALL_STATE(233)] = 5100, - [SMALL_STATE(234)] = 5141, - [SMALL_STATE(235)] = 5182, - [SMALL_STATE(236)] = 5223, - [SMALL_STATE(237)] = 5264, - [SMALL_STATE(238)] = 5305, - [SMALL_STATE(239)] = 5350, - [SMALL_STATE(240)] = 5391, - [SMALL_STATE(241)] = 5432, - [SMALL_STATE(242)] = 5473, - [SMALL_STATE(243)] = 5516, - [SMALL_STATE(244)] = 5557, - [SMALL_STATE(245)] = 5598, - [SMALL_STATE(246)] = 5639, - [SMALL_STATE(247)] = 5680, - [SMALL_STATE(248)] = 5721, - [SMALL_STATE(249)] = 5762, - [SMALL_STATE(250)] = 5803, - [SMALL_STATE(251)] = 5844, - [SMALL_STATE(252)] = 5885, - [SMALL_STATE(253)] = 5926, - [SMALL_STATE(254)] = 5967, - [SMALL_STATE(255)] = 6008, - [SMALL_STATE(256)] = 6049, - [SMALL_STATE(257)] = 6090, - [SMALL_STATE(258)] = 6131, - [SMALL_STATE(259)] = 6172, - [SMALL_STATE(260)] = 6213, - [SMALL_STATE(261)] = 6254, - [SMALL_STATE(262)] = 6295, - [SMALL_STATE(263)] = 6336, - [SMALL_STATE(264)] = 6377, - [SMALL_STATE(265)] = 6418, - [SMALL_STATE(266)] = 6459, - [SMALL_STATE(267)] = 6500, - [SMALL_STATE(268)] = 6541, - [SMALL_STATE(269)] = 6582, - [SMALL_STATE(270)] = 6623, - [SMALL_STATE(271)] = 6664, - [SMALL_STATE(272)] = 6705, - [SMALL_STATE(273)] = 6746, - [SMALL_STATE(274)] = 6787, - [SMALL_STATE(275)] = 6828, - [SMALL_STATE(276)] = 6869, - [SMALL_STATE(277)] = 6910, - [SMALL_STATE(278)] = 6951, - [SMALL_STATE(279)] = 6992, - [SMALL_STATE(280)] = 7035, - [SMALL_STATE(281)] = 7076, - [SMALL_STATE(282)] = 7117, - [SMALL_STATE(283)] = 7160, - [SMALL_STATE(284)] = 7201, - [SMALL_STATE(285)] = 7242, - [SMALL_STATE(286)] = 7283, - [SMALL_STATE(287)] = 7324, - [SMALL_STATE(288)] = 7365, - [SMALL_STATE(289)] = 7406, - [SMALL_STATE(290)] = 7447, - [SMALL_STATE(291)] = 7488, - [SMALL_STATE(292)] = 7529, - [SMALL_STATE(293)] = 7570, - [SMALL_STATE(294)] = 7611, - [SMALL_STATE(295)] = 7652, - [SMALL_STATE(296)] = 7693, - [SMALL_STATE(297)] = 7734, - [SMALL_STATE(298)] = 7775, - [SMALL_STATE(299)] = 7816, - [SMALL_STATE(300)] = 7857, - [SMALL_STATE(301)] = 7898, - [SMALL_STATE(302)] = 7939, - [SMALL_STATE(303)] = 7980, - [SMALL_STATE(304)] = 8021, - [SMALL_STATE(305)] = 8062, - [SMALL_STATE(306)] = 8103, - [SMALL_STATE(307)] = 8144, - [SMALL_STATE(308)] = 8185, - [SMALL_STATE(309)] = 8226, - [SMALL_STATE(310)] = 8267, - [SMALL_STATE(311)] = 8308, - [SMALL_STATE(312)] = 8349, - [SMALL_STATE(313)] = 8390, - [SMALL_STATE(314)] = 8431, - [SMALL_STATE(315)] = 8472, - [SMALL_STATE(316)] = 8513, - [SMALL_STATE(317)] = 8554, - [SMALL_STATE(318)] = 8595, - [SMALL_STATE(319)] = 8636, - [SMALL_STATE(320)] = 8677, - [SMALL_STATE(321)] = 8718, - [SMALL_STATE(322)] = 8759, - [SMALL_STATE(323)] = 8800, - [SMALL_STATE(324)] = 8843, - [SMALL_STATE(325)] = 8884, - [SMALL_STATE(326)] = 8925, - [SMALL_STATE(327)] = 8966, - [SMALL_STATE(328)] = 9007, - [SMALL_STATE(329)] = 9048, - [SMALL_STATE(330)] = 9089, - [SMALL_STATE(331)] = 9130, - [SMALL_STATE(332)] = 9171, - [SMALL_STATE(333)] = 9212, - [SMALL_STATE(334)] = 9253, - [SMALL_STATE(335)] = 9294, - [SMALL_STATE(336)] = 9335, - [SMALL_STATE(337)] = 9376, - [SMALL_STATE(338)] = 9417, - [SMALL_STATE(339)] = 9458, - [SMALL_STATE(340)] = 9499, - [SMALL_STATE(341)] = 9540, - [SMALL_STATE(342)] = 9581, - [SMALL_STATE(343)] = 9622, - [SMALL_STATE(344)] = 9663, - [SMALL_STATE(345)] = 9708, - [SMALL_STATE(346)] = 9749, - [SMALL_STATE(347)] = 9790, - [SMALL_STATE(348)] = 9833, - [SMALL_STATE(349)] = 9874, - [SMALL_STATE(350)] = 9915, - [SMALL_STATE(351)] = 9956, - [SMALL_STATE(352)] = 9997, - [SMALL_STATE(353)] = 10038, - [SMALL_STATE(354)] = 10079, - [SMALL_STATE(355)] = 10120, - [SMALL_STATE(356)] = 10161, - [SMALL_STATE(357)] = 10202, - [SMALL_STATE(358)] = 10243, - [SMALL_STATE(359)] = 10284, - [SMALL_STATE(360)] = 10325, - [SMALL_STATE(361)] = 10366, - [SMALL_STATE(362)] = 10409, - [SMALL_STATE(363)] = 10450, - [SMALL_STATE(364)] = 10491, - [SMALL_STATE(365)] = 10532, - [SMALL_STATE(366)] = 10573, - [SMALL_STATE(367)] = 10616, - [SMALL_STATE(368)] = 10659, - [SMALL_STATE(369)] = 10700, - [SMALL_STATE(370)] = 10741, - [SMALL_STATE(371)] = 10782, - [SMALL_STATE(372)] = 10825, - [SMALL_STATE(373)] = 10866, - [SMALL_STATE(374)] = 10907, - [SMALL_STATE(375)] = 10948, - [SMALL_STATE(376)] = 10989, - [SMALL_STATE(377)] = 11030, - [SMALL_STATE(378)] = 11071, - [SMALL_STATE(379)] = 11112, - [SMALL_STATE(380)] = 11153, - [SMALL_STATE(381)] = 11194, - [SMALL_STATE(382)] = 11235, - [SMALL_STATE(383)] = 11276, - [SMALL_STATE(384)] = 11317, - [SMALL_STATE(385)] = 11358, - [SMALL_STATE(386)] = 11399, - [SMALL_STATE(387)] = 11440, - [SMALL_STATE(388)] = 11481, - [SMALL_STATE(389)] = 11522, - [SMALL_STATE(390)] = 11563, - [SMALL_STATE(391)] = 11604, - [SMALL_STATE(392)] = 11645, - [SMALL_STATE(393)] = 11686, - [SMALL_STATE(394)] = 11727, - [SMALL_STATE(395)] = 11768, - [SMALL_STATE(396)] = 11809, - [SMALL_STATE(397)] = 11850, - [SMALL_STATE(398)] = 11891, - [SMALL_STATE(399)] = 11932, - [SMALL_STATE(400)] = 11973, - [SMALL_STATE(401)] = 12014, - [SMALL_STATE(402)] = 12055, - [SMALL_STATE(403)] = 12096, - [SMALL_STATE(404)] = 12137, - [SMALL_STATE(405)] = 12178, - [SMALL_STATE(406)] = 12219, - [SMALL_STATE(407)] = 12260, - [SMALL_STATE(408)] = 12301, - [SMALL_STATE(409)] = 12342, - [SMALL_STATE(410)] = 12383, - [SMALL_STATE(411)] = 12424, - [SMALL_STATE(412)] = 12467, - [SMALL_STATE(413)] = 12508, - [SMALL_STATE(414)] = 12549, - [SMALL_STATE(415)] = 12590, - [SMALL_STATE(416)] = 12631, - [SMALL_STATE(417)] = 12676, - [SMALL_STATE(418)] = 12717, - [SMALL_STATE(419)] = 12758, - [SMALL_STATE(420)] = 12799, - [SMALL_STATE(421)] = 12840, - [SMALL_STATE(422)] = 12881, - [SMALL_STATE(423)] = 12922, - [SMALL_STATE(424)] = 12963, - [SMALL_STATE(425)] = 13004, - [SMALL_STATE(426)] = 13045, - [SMALL_STATE(427)] = 13086, - [SMALL_STATE(428)] = 13127, - [SMALL_STATE(429)] = 13168, - [SMALL_STATE(430)] = 13211, - [SMALL_STATE(431)] = 13252, - [SMALL_STATE(432)] = 13293, - [SMALL_STATE(433)] = 13334, - [SMALL_STATE(434)] = 13375, - [SMALL_STATE(435)] = 13416, - [SMALL_STATE(436)] = 13457, - [SMALL_STATE(437)] = 13498, - [SMALL_STATE(438)] = 13539, - [SMALL_STATE(439)] = 13580, - [SMALL_STATE(440)] = 13621, - [SMALL_STATE(441)] = 13662, - [SMALL_STATE(442)] = 13703, - [SMALL_STATE(443)] = 13744, - [SMALL_STATE(444)] = 13785, - [SMALL_STATE(445)] = 13826, - [SMALL_STATE(446)] = 13867, - [SMALL_STATE(447)] = 13908, - [SMALL_STATE(448)] = 13949, - [SMALL_STATE(449)] = 13990, - [SMALL_STATE(450)] = 14031, - [SMALL_STATE(451)] = 14072, - [SMALL_STATE(452)] = 14113, - [SMALL_STATE(453)] = 14154, - [SMALL_STATE(454)] = 14195, - [SMALL_STATE(455)] = 14236, - [SMALL_STATE(456)] = 14279, - [SMALL_STATE(457)] = 14320, - [SMALL_STATE(458)] = 14361, - [SMALL_STATE(459)] = 14402, - [SMALL_STATE(460)] = 14443, - [SMALL_STATE(461)] = 14484, - [SMALL_STATE(462)] = 14525, - [SMALL_STATE(463)] = 14566, - [SMALL_STATE(464)] = 14607, - [SMALL_STATE(465)] = 14648, - [SMALL_STATE(466)] = 14689, - [SMALL_STATE(467)] = 14730, - [SMALL_STATE(468)] = 14771, - [SMALL_STATE(469)] = 14812, - [SMALL_STATE(470)] = 14853, - [SMALL_STATE(471)] = 14894, - [SMALL_STATE(472)] = 14935, - [SMALL_STATE(473)] = 14976, - [SMALL_STATE(474)] = 15017, - [SMALL_STATE(475)] = 15058, - [SMALL_STATE(476)] = 15099, - [SMALL_STATE(477)] = 15140, - [SMALL_STATE(478)] = 15181, - [SMALL_STATE(479)] = 15222, - [SMALL_STATE(480)] = 15263, - [SMALL_STATE(481)] = 15304, - [SMALL_STATE(482)] = 15345, - [SMALL_STATE(483)] = 15386, - [SMALL_STATE(484)] = 15427, - [SMALL_STATE(485)] = 15468, - [SMALL_STATE(486)] = 15509, - [SMALL_STATE(487)] = 15550, - [SMALL_STATE(488)] = 15591, - [SMALL_STATE(489)] = 15632, - [SMALL_STATE(490)] = 15673, - [SMALL_STATE(491)] = 15714, - [SMALL_STATE(492)] = 15755, - [SMALL_STATE(493)] = 15796, - [SMALL_STATE(494)] = 15837, - [SMALL_STATE(495)] = 15880, - [SMALL_STATE(496)] = 15921, - [SMALL_STATE(497)] = 15962, - [SMALL_STATE(498)] = 16003, - [SMALL_STATE(499)] = 16046, - [SMALL_STATE(500)] = 16087, - [SMALL_STATE(501)] = 16127, - [SMALL_STATE(502)] = 16167, - [SMALL_STATE(503)] = 16207, - [SMALL_STATE(504)] = 16247, - [SMALL_STATE(505)] = 16287, - [SMALL_STATE(506)] = 16327, - [SMALL_STATE(507)] = 16367, - [SMALL_STATE(508)] = 16407, - [SMALL_STATE(509)] = 16447, - [SMALL_STATE(510)] = 16487, - [SMALL_STATE(511)] = 16527, - [SMALL_STATE(512)] = 16567, - [SMALL_STATE(513)] = 16607, - [SMALL_STATE(514)] = 16647, - [SMALL_STATE(515)] = 16687, - [SMALL_STATE(516)] = 16727, - [SMALL_STATE(517)] = 16767, - [SMALL_STATE(518)] = 16807, - [SMALL_STATE(519)] = 16847, - [SMALL_STATE(520)] = 16887, - [SMALL_STATE(521)] = 16927, - [SMALL_STATE(522)] = 16967, - [SMALL_STATE(523)] = 17007, - [SMALL_STATE(524)] = 17047, - [SMALL_STATE(525)] = 17087, - [SMALL_STATE(526)] = 17127, - [SMALL_STATE(527)] = 17167, - [SMALL_STATE(528)] = 17207, - [SMALL_STATE(529)] = 17247, - [SMALL_STATE(530)] = 17287, - [SMALL_STATE(531)] = 17327, - [SMALL_STATE(532)] = 17367, - [SMALL_STATE(533)] = 17407, - [SMALL_STATE(534)] = 17447, - [SMALL_STATE(535)] = 17487, - [SMALL_STATE(536)] = 17527, - [SMALL_STATE(537)] = 17569, - [SMALL_STATE(538)] = 17609, - [SMALL_STATE(539)] = 17649, - [SMALL_STATE(540)] = 17691, - [SMALL_STATE(541)] = 17731, - [SMALL_STATE(542)] = 17771, - [SMALL_STATE(543)] = 17811, - [SMALL_STATE(544)] = 17851, - [SMALL_STATE(545)] = 17891, - [SMALL_STATE(546)] = 17931, - [SMALL_STATE(547)] = 17971, - [SMALL_STATE(548)] = 18011, - [SMALL_STATE(549)] = 18051, - [SMALL_STATE(550)] = 18091, - [SMALL_STATE(551)] = 18131, - [SMALL_STATE(552)] = 18171, - [SMALL_STATE(553)] = 18211, - [SMALL_STATE(554)] = 18251, - [SMALL_STATE(555)] = 18291, - [SMALL_STATE(556)] = 18333, - [SMALL_STATE(557)] = 18373, - [SMALL_STATE(558)] = 18413, - [SMALL_STATE(559)] = 18453, - [SMALL_STATE(560)] = 18493, - [SMALL_STATE(561)] = 18533, - [SMALL_STATE(562)] = 18573, - [SMALL_STATE(563)] = 18613, - [SMALL_STATE(564)] = 18653, - [SMALL_STATE(565)] = 18693, - [SMALL_STATE(566)] = 18733, - [SMALL_STATE(567)] = 18773, - [SMALL_STATE(568)] = 18813, - [SMALL_STATE(569)] = 18853, - [SMALL_STATE(570)] = 18893, - [SMALL_STATE(571)] = 18933, - [SMALL_STATE(572)] = 18973, - [SMALL_STATE(573)] = 19013, - [SMALL_STATE(574)] = 19053, - [SMALL_STATE(575)] = 19093, - [SMALL_STATE(576)] = 19133, - [SMALL_STATE(577)] = 19173, - [SMALL_STATE(578)] = 19215, - [SMALL_STATE(579)] = 19255, - [SMALL_STATE(580)] = 19295, - [SMALL_STATE(581)] = 19335, - [SMALL_STATE(582)] = 19377, - [SMALL_STATE(583)] = 19416, - [SMALL_STATE(584)] = 19455, - [SMALL_STATE(585)] = 19494, - [SMALL_STATE(586)] = 19533, - [SMALL_STATE(587)] = 19572, - [SMALL_STATE(588)] = 19603, - [SMALL_STATE(589)] = 19634, - [SMALL_STATE(590)] = 19665, - [SMALL_STATE(591)] = 19696, - [SMALL_STATE(592)] = 19727, - [SMALL_STATE(593)] = 19758, - [SMALL_STATE(594)] = 19789, - [SMALL_STATE(595)] = 19820, - [SMALL_STATE(596)] = 19851, - [SMALL_STATE(597)] = 19882, - [SMALL_STATE(598)] = 19913, - [SMALL_STATE(599)] = 19944, - [SMALL_STATE(600)] = 19975, - [SMALL_STATE(601)] = 20006, - [SMALL_STATE(602)] = 20037, - [SMALL_STATE(603)] = 20068, - [SMALL_STATE(604)] = 20099, - [SMALL_STATE(605)] = 20130, - [SMALL_STATE(606)] = 20161, - [SMALL_STATE(607)] = 20192, - [SMALL_STATE(608)] = 20223, - [SMALL_STATE(609)] = 20254, - [SMALL_STATE(610)] = 20285, - [SMALL_STATE(611)] = 20295, - [SMALL_STATE(612)] = 20305, - [SMALL_STATE(613)] = 20315, - [SMALL_STATE(614)] = 20325, - [SMALL_STATE(615)] = 20335, - [SMALL_STATE(616)] = 20345, - [SMALL_STATE(617)] = 20355, - [SMALL_STATE(618)] = 20365, - [SMALL_STATE(619)] = 20375, - [SMALL_STATE(620)] = 20394, - [SMALL_STATE(621)] = 20413, - [SMALL_STATE(622)] = 20432, - [SMALL_STATE(623)] = 20449, - [SMALL_STATE(624)] = 20468, - [SMALL_STATE(625)] = 20487, - [SMALL_STATE(626)] = 20506, - [SMALL_STATE(627)] = 20525, - [SMALL_STATE(628)] = 20544, - [SMALL_STATE(629)] = 20561, - [SMALL_STATE(630)] = 20580, - [SMALL_STATE(631)] = 20599, - [SMALL_STATE(632)] = 20618, - [SMALL_STATE(633)] = 20635, - [SMALL_STATE(634)] = 20654, - [SMALL_STATE(635)] = 20671, - [SMALL_STATE(636)] = 20688, - [SMALL_STATE(637)] = 20707, - [SMALL_STATE(638)] = 20726, - [SMALL_STATE(639)] = 20745, - [SMALL_STATE(640)] = 20762, - [SMALL_STATE(641)] = 20781, - [SMALL_STATE(642)] = 20798, - [SMALL_STATE(643)] = 20817, - [SMALL_STATE(644)] = 20836, - [SMALL_STATE(645)] = 20855, - [SMALL_STATE(646)] = 20872, - [SMALL_STATE(647)] = 20889, - [SMALL_STATE(648)] = 20908, - [SMALL_STATE(649)] = 20925, - [SMALL_STATE(650)] = 20942, - [SMALL_STATE(651)] = 20961, - [SMALL_STATE(652)] = 20980, - [SMALL_STATE(653)] = 20992, - [SMALL_STATE(654)] = 21004, - [SMALL_STATE(655)] = 21016, - [SMALL_STATE(656)] = 21028, - [SMALL_STATE(657)] = 21040, - [SMALL_STATE(658)] = 21047, - [SMALL_STATE(659)] = 21057, - [SMALL_STATE(660)] = 21065, - [SMALL_STATE(661)] = 21073, - [SMALL_STATE(662)] = 21080, - [SMALL_STATE(663)] = 21087, - [SMALL_STATE(664)] = 21092, - [SMALL_STATE(665)] = 21099, - [SMALL_STATE(666)] = 21106, - [SMALL_STATE(667)] = 21113, - [SMALL_STATE(668)] = 21120, - [SMALL_STATE(669)] = 21127, - [SMALL_STATE(670)] = 21134, - [SMALL_STATE(671)] = 21141, - [SMALL_STATE(672)] = 21148, - [SMALL_STATE(673)] = 21155, - [SMALL_STATE(674)] = 21162, - [SMALL_STATE(675)] = 21169, - [SMALL_STATE(676)] = 21176, - [SMALL_STATE(677)] = 21183, - [SMALL_STATE(678)] = 21190, - [SMALL_STATE(679)] = 21197, - [SMALL_STATE(680)] = 21204, - [SMALL_STATE(681)] = 21209, - [SMALL_STATE(682)] = 21216, - [SMALL_STATE(683)] = 21223, - [SMALL_STATE(684)] = 21230, - [SMALL_STATE(685)] = 21237, - [SMALL_STATE(686)] = 21244, - [SMALL_STATE(687)] = 21251, - [SMALL_STATE(688)] = 21258, - [SMALL_STATE(689)] = 21265, - [SMALL_STATE(690)] = 21272, - [SMALL_STATE(691)] = 21279, - [SMALL_STATE(692)] = 21286, - [SMALL_STATE(693)] = 21293, - [SMALL_STATE(694)] = 21300, - [SMALL_STATE(695)] = 21305, - [SMALL_STATE(696)] = 21312, - [SMALL_STATE(697)] = 21319, - [SMALL_STATE(698)] = 21326, - [SMALL_STATE(699)] = 21333, - [SMALL_STATE(700)] = 21340, - [SMALL_STATE(701)] = 21347, - [SMALL_STATE(702)] = 21354, - [SMALL_STATE(703)] = 21361, - [SMALL_STATE(704)] = 21368, - [SMALL_STATE(705)] = 21375, - [SMALL_STATE(706)] = 21382, - [SMALL_STATE(707)] = 21389, - [SMALL_STATE(708)] = 21396, - [SMALL_STATE(709)] = 21403, - [SMALL_STATE(710)] = 21410, - [SMALL_STATE(711)] = 21417, - [SMALL_STATE(712)] = 21424, - [SMALL_STATE(713)] = 21431, - [SMALL_STATE(714)] = 21438, - [SMALL_STATE(715)] = 21445, - [SMALL_STATE(716)] = 21452, - [SMALL_STATE(717)] = 21459, - [SMALL_STATE(718)] = 21466, - [SMALL_STATE(719)] = 21473, - [SMALL_STATE(720)] = 21480, - [SMALL_STATE(721)] = 21487, - [SMALL_STATE(722)] = 21494, - [SMALL_STATE(723)] = 21501, - [SMALL_STATE(724)] = 21508, - [SMALL_STATE(725)] = 21515, - [SMALL_STATE(726)] = 21522, - [SMALL_STATE(727)] = 21529, - [SMALL_STATE(728)] = 21536, - [SMALL_STATE(729)] = 21541, - [SMALL_STATE(730)] = 21548, - [SMALL_STATE(731)] = 21555, - [SMALL_STATE(732)] = 21562, - [SMALL_STATE(733)] = 21569, - [SMALL_STATE(734)] = 21576, - [SMALL_STATE(735)] = 21583, - [SMALL_STATE(736)] = 21590, - [SMALL_STATE(737)] = 21597, - [SMALL_STATE(738)] = 21604, - [SMALL_STATE(739)] = 21611, - [SMALL_STATE(740)] = 21618, - [SMALL_STATE(741)] = 21625, - [SMALL_STATE(742)] = 21632, - [SMALL_STATE(743)] = 21639, - [SMALL_STATE(744)] = 21646, - [SMALL_STATE(745)] = 21651, - [SMALL_STATE(746)] = 21658, - [SMALL_STATE(747)] = 21665, - [SMALL_STATE(748)] = 21672, - [SMALL_STATE(749)] = 21679, - [SMALL_STATE(750)] = 21686, - [SMALL_STATE(751)] = 21693, - [SMALL_STATE(752)] = 21700, - [SMALL_STATE(753)] = 21707, - [SMALL_STATE(754)] = 21714, - [SMALL_STATE(755)] = 21721, - [SMALL_STATE(756)] = 21728, - [SMALL_STATE(757)] = 21735, - [SMALL_STATE(758)] = 21742, - [SMALL_STATE(759)] = 21749, - [SMALL_STATE(760)] = 21756, - [SMALL_STATE(761)] = 21763, - [SMALL_STATE(762)] = 21770, - [SMALL_STATE(763)] = 21775, - [SMALL_STATE(764)] = 21782, - [SMALL_STATE(765)] = 21789, - [SMALL_STATE(766)] = 21796, - [SMALL_STATE(767)] = 21803, - [SMALL_STATE(768)] = 21810, - [SMALL_STATE(769)] = 21817, - [SMALL_STATE(770)] = 21824, - [SMALL_STATE(771)] = 21831, - [SMALL_STATE(772)] = 21838, - [SMALL_STATE(773)] = 21845, - [SMALL_STATE(774)] = 21852, - [SMALL_STATE(775)] = 21859, - [SMALL_STATE(776)] = 21866, - [SMALL_STATE(777)] = 21873, - [SMALL_STATE(778)] = 21880, - [SMALL_STATE(779)] = 21885, - [SMALL_STATE(780)] = 21892, - [SMALL_STATE(781)] = 21899, - [SMALL_STATE(782)] = 21906, - [SMALL_STATE(783)] = 21913, - [SMALL_STATE(784)] = 21920, - [SMALL_STATE(785)] = 21927, - [SMALL_STATE(786)] = 21934, - [SMALL_STATE(787)] = 21941, - [SMALL_STATE(788)] = 21948, - [SMALL_STATE(789)] = 21955, - [SMALL_STATE(790)] = 21962, - [SMALL_STATE(791)] = 21969, - [SMALL_STATE(792)] = 21976, - [SMALL_STATE(793)] = 21983, - [SMALL_STATE(794)] = 21990, - [SMALL_STATE(795)] = 21997, - [SMALL_STATE(796)] = 22004, - [SMALL_STATE(797)] = 22009, - [SMALL_STATE(798)] = 22016, - [SMALL_STATE(799)] = 22023, - [SMALL_STATE(800)] = 22030, - [SMALL_STATE(801)] = 22037, - [SMALL_STATE(802)] = 22044, - [SMALL_STATE(803)] = 22051, - [SMALL_STATE(804)] = 22058, - [SMALL_STATE(805)] = 22065, - [SMALL_STATE(806)] = 22072, - [SMALL_STATE(807)] = 22079, - [SMALL_STATE(808)] = 22086, - [SMALL_STATE(809)] = 22093, - [SMALL_STATE(810)] = 22098, - [SMALL_STATE(811)] = 22103, - [SMALL_STATE(812)] = 22110, - [SMALL_STATE(813)] = 22117, - [SMALL_STATE(814)] = 22124, - [SMALL_STATE(815)] = 22131, - [SMALL_STATE(816)] = 22138, - [SMALL_STATE(817)] = 22145, - [SMALL_STATE(818)] = 22152, - [SMALL_STATE(819)] = 22159, - [SMALL_STATE(820)] = 22166, - [SMALL_STATE(821)] = 22173, - [SMALL_STATE(822)] = 22180, - [SMALL_STATE(823)] = 22187, - [SMALL_STATE(824)] = 22194, - [SMALL_STATE(825)] = 22201, - [SMALL_STATE(826)] = 22208, - [SMALL_STATE(827)] = 22215, - [SMALL_STATE(828)] = 22222, - [SMALL_STATE(829)] = 22229, - [SMALL_STATE(830)] = 22236, - [SMALL_STATE(831)] = 22241, - [SMALL_STATE(832)] = 22248, - [SMALL_STATE(833)] = 22255, - [SMALL_STATE(834)] = 22262, - [SMALL_STATE(835)] = 22269, - [SMALL_STATE(836)] = 22276, - [SMALL_STATE(837)] = 22283, - [SMALL_STATE(838)] = 22290, - [SMALL_STATE(839)] = 22294, - [SMALL_STATE(840)] = 22298, - [SMALL_STATE(841)] = 22302, - [SMALL_STATE(842)] = 22306, - [SMALL_STATE(843)] = 22310, - [SMALL_STATE(844)] = 22314, - [SMALL_STATE(845)] = 22318, - [SMALL_STATE(846)] = 22322, - [SMALL_STATE(847)] = 22326, - [SMALL_STATE(848)] = 22330, - [SMALL_STATE(849)] = 22334, - [SMALL_STATE(850)] = 22338, - [SMALL_STATE(851)] = 22342, - [SMALL_STATE(852)] = 22346, - [SMALL_STATE(853)] = 22350, - [SMALL_STATE(854)] = 22354, - [SMALL_STATE(855)] = 22358, - [SMALL_STATE(856)] = 22362, - [SMALL_STATE(857)] = 22366, - [SMALL_STATE(858)] = 22370, - [SMALL_STATE(859)] = 22374, - [SMALL_STATE(860)] = 22378, - [SMALL_STATE(861)] = 22382, - [SMALL_STATE(862)] = 22386, - [SMALL_STATE(863)] = 22390, - [SMALL_STATE(864)] = 22394, - [SMALL_STATE(865)] = 22398, - [SMALL_STATE(866)] = 22402, - [SMALL_STATE(867)] = 22406, - [SMALL_STATE(868)] = 22410, - [SMALL_STATE(869)] = 22414, - [SMALL_STATE(870)] = 22418, - [SMALL_STATE(871)] = 22422, - [SMALL_STATE(872)] = 22426, - [SMALL_STATE(873)] = 22430, - [SMALL_STATE(874)] = 22434, - [SMALL_STATE(875)] = 22438, - [SMALL_STATE(876)] = 22442, - [SMALL_STATE(877)] = 22446, - [SMALL_STATE(878)] = 22450, - [SMALL_STATE(879)] = 22454, - [SMALL_STATE(880)] = 22458, - [SMALL_STATE(881)] = 22462, - [SMALL_STATE(882)] = 22466, - [SMALL_STATE(883)] = 22470, - [SMALL_STATE(884)] = 22474, - [SMALL_STATE(885)] = 22478, - [SMALL_STATE(886)] = 22482, - [SMALL_STATE(887)] = 22486, - [SMALL_STATE(888)] = 22490, - [SMALL_STATE(889)] = 22494, - [SMALL_STATE(890)] = 22498, - [SMALL_STATE(891)] = 22502, - [SMALL_STATE(892)] = 22506, - [SMALL_STATE(893)] = 22510, - [SMALL_STATE(894)] = 22514, - [SMALL_STATE(895)] = 22518, - [SMALL_STATE(896)] = 22522, - [SMALL_STATE(897)] = 22526, - [SMALL_STATE(898)] = 22530, - [SMALL_STATE(899)] = 22534, - [SMALL_STATE(900)] = 22538, - [SMALL_STATE(901)] = 22542, - [SMALL_STATE(902)] = 22546, - [SMALL_STATE(903)] = 22550, - [SMALL_STATE(904)] = 22554, - [SMALL_STATE(905)] = 22558, - [SMALL_STATE(906)] = 22562, - [SMALL_STATE(907)] = 22566, - [SMALL_STATE(908)] = 22570, - [SMALL_STATE(909)] = 22574, - [SMALL_STATE(910)] = 22578, - [SMALL_STATE(911)] = 22582, - [SMALL_STATE(912)] = 22586, - [SMALL_STATE(913)] = 22590, - [SMALL_STATE(914)] = 22594, - [SMALL_STATE(915)] = 22598, - [SMALL_STATE(916)] = 22602, - [SMALL_STATE(917)] = 22606, - [SMALL_STATE(918)] = 22610, - [SMALL_STATE(919)] = 22614, - [SMALL_STATE(920)] = 22618, - [SMALL_STATE(921)] = 22622, - [SMALL_STATE(922)] = 22626, - [SMALL_STATE(923)] = 22630, - [SMALL_STATE(924)] = 22634, - [SMALL_STATE(925)] = 22638, - [SMALL_STATE(926)] = 22642, - [SMALL_STATE(927)] = 22646, - [SMALL_STATE(928)] = 22650, - [SMALL_STATE(929)] = 22654, - [SMALL_STATE(930)] = 22658, - [SMALL_STATE(931)] = 22662, - [SMALL_STATE(932)] = 22666, - [SMALL_STATE(933)] = 22670, - [SMALL_STATE(934)] = 22674, - [SMALL_STATE(935)] = 22678, - [SMALL_STATE(936)] = 22682, - [SMALL_STATE(937)] = 22686, - [SMALL_STATE(938)] = 22690, - [SMALL_STATE(939)] = 22694, - [SMALL_STATE(940)] = 22698, - [SMALL_STATE(941)] = 22702, - [SMALL_STATE(942)] = 22706, - [SMALL_STATE(943)] = 22710, - [SMALL_STATE(944)] = 22714, - [SMALL_STATE(945)] = 22718, - [SMALL_STATE(946)] = 22722, - [SMALL_STATE(947)] = 22726, - [SMALL_STATE(948)] = 22730, - [SMALL_STATE(949)] = 22734, - [SMALL_STATE(950)] = 22738, - [SMALL_STATE(951)] = 22742, - [SMALL_STATE(952)] = 22746, - [SMALL_STATE(953)] = 22750, - [SMALL_STATE(954)] = 22754, - [SMALL_STATE(955)] = 22758, - [SMALL_STATE(956)] = 22762, - [SMALL_STATE(957)] = 22766, - [SMALL_STATE(958)] = 22770, - [SMALL_STATE(959)] = 22774, - [SMALL_STATE(960)] = 22778, - [SMALL_STATE(961)] = 22782, - [SMALL_STATE(962)] = 22786, - [SMALL_STATE(963)] = 22790, - [SMALL_STATE(964)] = 22794, - [SMALL_STATE(965)] = 22798, - [SMALL_STATE(966)] = 22802, - [SMALL_STATE(967)] = 22806, - [SMALL_STATE(968)] = 22810, - [SMALL_STATE(969)] = 22814, - [SMALL_STATE(970)] = 22818, - [SMALL_STATE(971)] = 22822, - [SMALL_STATE(972)] = 22826, - [SMALL_STATE(973)] = 22830, - [SMALL_STATE(974)] = 22834, - [SMALL_STATE(975)] = 22838, - [SMALL_STATE(976)] = 22842, - [SMALL_STATE(977)] = 22846, - [SMALL_STATE(978)] = 22850, - [SMALL_STATE(979)] = 22854, - [SMALL_STATE(980)] = 22858, - [SMALL_STATE(981)] = 22862, - [SMALL_STATE(982)] = 22866, - [SMALL_STATE(983)] = 22870, - [SMALL_STATE(984)] = 22874, - [SMALL_STATE(985)] = 22878, - [SMALL_STATE(986)] = 22882, - [SMALL_STATE(987)] = 22886, - [SMALL_STATE(988)] = 22890, - [SMALL_STATE(989)] = 22894, - [SMALL_STATE(990)] = 22898, - [SMALL_STATE(991)] = 22902, - [SMALL_STATE(992)] = 22906, - [SMALL_STATE(993)] = 22910, - [SMALL_STATE(994)] = 22914, - [SMALL_STATE(995)] = 22918, - [SMALL_STATE(996)] = 22922, - [SMALL_STATE(997)] = 22926, - [SMALL_STATE(998)] = 22930, - [SMALL_STATE(999)] = 22934, - [SMALL_STATE(1000)] = 22938, - [SMALL_STATE(1001)] = 22942, - [SMALL_STATE(1002)] = 22946, - [SMALL_STATE(1003)] = 22950, - [SMALL_STATE(1004)] = 22954, - [SMALL_STATE(1005)] = 22958, - [SMALL_STATE(1006)] = 22962, - [SMALL_STATE(1007)] = 22966, - [SMALL_STATE(1008)] = 22970, - [SMALL_STATE(1009)] = 22974, - [SMALL_STATE(1010)] = 22978, - [SMALL_STATE(1011)] = 22982, - [SMALL_STATE(1012)] = 22986, - [SMALL_STATE(1013)] = 22990, - [SMALL_STATE(1014)] = 22994, - [SMALL_STATE(1015)] = 22998, - [SMALL_STATE(1016)] = 23002, - [SMALL_STATE(1017)] = 23006, - [SMALL_STATE(1018)] = 23010, - [SMALL_STATE(1019)] = 23014, - [SMALL_STATE(1020)] = 23018, - [SMALL_STATE(1021)] = 23022, - [SMALL_STATE(1022)] = 23026, - [SMALL_STATE(1023)] = 23030, - [SMALL_STATE(1024)] = 23034, - [SMALL_STATE(1025)] = 23038, - [SMALL_STATE(1026)] = 23042, - [SMALL_STATE(1027)] = 23046, - [SMALL_STATE(1028)] = 23050, - [SMALL_STATE(1029)] = 23054, - [SMALL_STATE(1030)] = 23058, - [SMALL_STATE(1031)] = 23062, - [SMALL_STATE(1032)] = 23066, - [SMALL_STATE(1033)] = 23070, - [SMALL_STATE(1034)] = 23074, - [SMALL_STATE(1035)] = 23078, - [SMALL_STATE(1036)] = 23082, - [SMALL_STATE(1037)] = 23086, - [SMALL_STATE(1038)] = 23090, - [SMALL_STATE(1039)] = 23094, - [SMALL_STATE(1040)] = 23098, - [SMALL_STATE(1041)] = 23102, - [SMALL_STATE(1042)] = 23106, - [SMALL_STATE(1043)] = 23110, - [SMALL_STATE(1044)] = 23114, - [SMALL_STATE(1045)] = 23118, - [SMALL_STATE(1046)] = 23122, - [SMALL_STATE(1047)] = 23126, - [SMALL_STATE(1048)] = 23130, - [SMALL_STATE(1049)] = 23134, - [SMALL_STATE(1050)] = 23138, - [SMALL_STATE(1051)] = 23142, - [SMALL_STATE(1052)] = 23146, - [SMALL_STATE(1053)] = 23150, - [SMALL_STATE(1054)] = 23154, - [SMALL_STATE(1055)] = 23158, - [SMALL_STATE(1056)] = 23162, - [SMALL_STATE(1057)] = 23166, - [SMALL_STATE(1058)] = 23170, - [SMALL_STATE(1059)] = 23174, - [SMALL_STATE(1060)] = 23178, - [SMALL_STATE(1061)] = 23182, - [SMALL_STATE(1062)] = 23186, - [SMALL_STATE(1063)] = 23190, - [SMALL_STATE(1064)] = 23194, - [SMALL_STATE(1065)] = 23198, - [SMALL_STATE(1066)] = 23202, - [SMALL_STATE(1067)] = 23206, - [SMALL_STATE(1068)] = 23210, - [SMALL_STATE(1069)] = 23214, - [SMALL_STATE(1070)] = 23218, - [SMALL_STATE(1071)] = 23222, - [SMALL_STATE(1072)] = 23226, - [SMALL_STATE(1073)] = 23230, - [SMALL_STATE(1074)] = 23234, - [SMALL_STATE(1075)] = 23238, - [SMALL_STATE(1076)] = 23242, - [SMALL_STATE(1077)] = 23246, - [SMALL_STATE(1078)] = 23250, - [SMALL_STATE(1079)] = 23254, - [SMALL_STATE(1080)] = 23258, - [SMALL_STATE(1081)] = 23262, - [SMALL_STATE(1082)] = 23266, - [SMALL_STATE(1083)] = 23270, - [SMALL_STATE(1084)] = 23274, - [SMALL_STATE(1085)] = 23278, - [SMALL_STATE(1086)] = 23282, - [SMALL_STATE(1087)] = 23286, - [SMALL_STATE(1088)] = 23290, - [SMALL_STATE(1089)] = 23294, - [SMALL_STATE(1090)] = 23298, - [SMALL_STATE(1091)] = 23302, - [SMALL_STATE(1092)] = 23306, - [SMALL_STATE(1093)] = 23310, - [SMALL_STATE(1094)] = 23314, - [SMALL_STATE(1095)] = 23318, - [SMALL_STATE(1096)] = 23322, - [SMALL_STATE(1097)] = 23326, - [SMALL_STATE(1098)] = 23330, - [SMALL_STATE(1099)] = 23334, - [SMALL_STATE(1100)] = 23338, - [SMALL_STATE(1101)] = 23342, - [SMALL_STATE(1102)] = 23346, - [SMALL_STATE(1103)] = 23350, - [SMALL_STATE(1104)] = 23354, - [SMALL_STATE(1105)] = 23358, - [SMALL_STATE(1106)] = 23362, - [SMALL_STATE(1107)] = 23366, - [SMALL_STATE(1108)] = 23370, - [SMALL_STATE(1109)] = 23374, - [SMALL_STATE(1110)] = 23378, - [SMALL_STATE(1111)] = 23382, - [SMALL_STATE(1112)] = 23386, - [SMALL_STATE(1113)] = 23390, - [SMALL_STATE(1114)] = 23394, - [SMALL_STATE(1115)] = 23398, - [SMALL_STATE(1116)] = 23402, - [SMALL_STATE(1117)] = 23406, - [SMALL_STATE(1118)] = 23410, - [SMALL_STATE(1119)] = 23414, - [SMALL_STATE(1120)] = 23418, - [SMALL_STATE(1121)] = 23422, - [SMALL_STATE(1122)] = 23426, - [SMALL_STATE(1123)] = 23430, - [SMALL_STATE(1124)] = 23434, - [SMALL_STATE(1125)] = 23438, - [SMALL_STATE(1126)] = 23442, - [SMALL_STATE(1127)] = 23446, - [SMALL_STATE(1128)] = 23450, - [SMALL_STATE(1129)] = 23454, - [SMALL_STATE(1130)] = 23458, - [SMALL_STATE(1131)] = 23462, - [SMALL_STATE(1132)] = 23466, - [SMALL_STATE(1133)] = 23470, - [SMALL_STATE(1134)] = 23474, - [SMALL_STATE(1135)] = 23478, - [SMALL_STATE(1136)] = 23482, - [SMALL_STATE(1137)] = 23486, - [SMALL_STATE(1138)] = 23490, - [SMALL_STATE(1139)] = 23494, - [SMALL_STATE(1140)] = 23498, - [SMALL_STATE(1141)] = 23502, - [SMALL_STATE(1142)] = 23506, - [SMALL_STATE(1143)] = 23510, - [SMALL_STATE(1144)] = 23514, - [SMALL_STATE(1145)] = 23518, - [SMALL_STATE(1146)] = 23522, - [SMALL_STATE(1147)] = 23526, - [SMALL_STATE(1148)] = 23530, - [SMALL_STATE(1149)] = 23534, - [SMALL_STATE(1150)] = 23538, - [SMALL_STATE(1151)] = 23542, - [SMALL_STATE(1152)] = 23546, - [SMALL_STATE(1153)] = 23550, - [SMALL_STATE(1154)] = 23554, - [SMALL_STATE(1155)] = 23558, - [SMALL_STATE(1156)] = 23562, - [SMALL_STATE(1157)] = 23566, - [SMALL_STATE(1158)] = 23570, - [SMALL_STATE(1159)] = 23574, - [SMALL_STATE(1160)] = 23578, - [SMALL_STATE(1161)] = 23582, - [SMALL_STATE(1162)] = 23586, - [SMALL_STATE(1163)] = 23590, - [SMALL_STATE(1164)] = 23594, - [SMALL_STATE(1165)] = 23598, - [SMALL_STATE(1166)] = 23602, - [SMALL_STATE(1167)] = 23606, - [SMALL_STATE(1168)] = 23610, - [SMALL_STATE(1169)] = 23614, - [SMALL_STATE(1170)] = 23618, - [SMALL_STATE(1171)] = 23622, - [SMALL_STATE(1172)] = 23626, - [SMALL_STATE(1173)] = 23630, - [SMALL_STATE(1174)] = 23634, - [SMALL_STATE(1175)] = 23638, - [SMALL_STATE(1176)] = 23642, - [SMALL_STATE(1177)] = 23646, - [SMALL_STATE(1178)] = 23650, - [SMALL_STATE(1179)] = 23654, - [SMALL_STATE(1180)] = 23658, - [SMALL_STATE(1181)] = 23662, - [SMALL_STATE(1182)] = 23666, - [SMALL_STATE(1183)] = 23670, - [SMALL_STATE(1184)] = 23674, - [SMALL_STATE(1185)] = 23678, - [SMALL_STATE(1186)] = 23682, - [SMALL_STATE(1187)] = 23686, - [SMALL_STATE(1188)] = 23690, - [SMALL_STATE(1189)] = 23694, - [SMALL_STATE(1190)] = 23698, - [SMALL_STATE(1191)] = 23702, + [SMALL_STATE(122)] = 55, + [SMALL_STATE(123)] = 110, + [SMALL_STATE(124)] = 165, + [SMALL_STATE(125)] = 220, + [SMALL_STATE(126)] = 275, + [SMALL_STATE(127)] = 330, + [SMALL_STATE(128)] = 385, + [SMALL_STATE(129)] = 440, + [SMALL_STATE(130)] = 495, + [SMALL_STATE(131)] = 550, + [SMALL_STATE(132)] = 602, + [SMALL_STATE(133)] = 652, + [SMALL_STATE(134)] = 702, + [SMALL_STATE(135)] = 754, + [SMALL_STATE(136)] = 804, + [SMALL_STATE(137)] = 854, + [SMALL_STATE(138)] = 904, + [SMALL_STATE(139)] = 956, + [SMALL_STATE(140)] = 1008, + [SMALL_STATE(141)] = 1060, + [SMALL_STATE(142)] = 1110, + [SMALL_STATE(143)] = 1162, + [SMALL_STATE(144)] = 1214, + [SMALL_STATE(145)] = 1266, + [SMALL_STATE(146)] = 1318, + [SMALL_STATE(147)] = 1368, + [SMALL_STATE(148)] = 1418, + [SMALL_STATE(149)] = 1468, + [SMALL_STATE(150)] = 1518, + [SMALL_STATE(151)] = 1572, + [SMALL_STATE(152)] = 1624, + [SMALL_STATE(153)] = 1673, + [SMALL_STATE(154)] = 1720, + [SMALL_STATE(155)] = 1767, + [SMALL_STATE(156)] = 1814, + [SMALL_STATE(157)] = 1861, + [SMALL_STATE(158)] = 1912, + [SMALL_STATE(159)] = 1959, + [SMALL_STATE(160)] = 2006, + [SMALL_STATE(161)] = 2053, + [SMALL_STATE(162)] = 2100, + [SMALL_STATE(163)] = 2147, + [SMALL_STATE(164)] = 2194, + [SMALL_STATE(165)] = 2240, + [SMALL_STATE(166)] = 2284, + [SMALL_STATE(167)] = 2328, + [SMALL_STATE(168)] = 2374, + [SMALL_STATE(169)] = 2420, + [SMALL_STATE(170)] = 2464, + [SMALL_STATE(171)] = 2508, + [SMALL_STATE(172)] = 2552, + [SMALL_STATE(173)] = 2596, + [SMALL_STATE(174)] = 2642, + [SMALL_STATE(175)] = 2686, + [SMALL_STATE(176)] = 2730, + [SMALL_STATE(177)] = 2774, + [SMALL_STATE(178)] = 2818, + [SMALL_STATE(179)] = 2864, + [SMALL_STATE(180)] = 2908, + [SMALL_STATE(181)] = 2954, + [SMALL_STATE(182)] = 3000, + [SMALL_STATE(183)] = 3044, + [SMALL_STATE(184)] = 3090, + [SMALL_STATE(185)] = 3134, + [SMALL_STATE(186)] = 3180, + [SMALL_STATE(187)] = 3224, + [SMALL_STATE(188)] = 3268, + [SMALL_STATE(189)] = 3312, + [SMALL_STATE(190)] = 3356, + [SMALL_STATE(191)] = 3402, + [SMALL_STATE(192)] = 3446, + [SMALL_STATE(193)] = 3490, + [SMALL_STATE(194)] = 3534, + [SMALL_STATE(195)] = 3578, + [SMALL_STATE(196)] = 3622, + [SMALL_STATE(197)] = 3668, + [SMALL_STATE(198)] = 3712, + [SMALL_STATE(199)] = 3758, + [SMALL_STATE(200)] = 3802, + [SMALL_STATE(201)] = 3846, + [SMALL_STATE(202)] = 3890, + [SMALL_STATE(203)] = 3934, + [SMALL_STATE(204)] = 3980, + [SMALL_STATE(205)] = 4024, + [SMALL_STATE(206)] = 4070, + [SMALL_STATE(207)] = 4114, + [SMALL_STATE(208)] = 4158, + [SMALL_STATE(209)] = 4202, + [SMALL_STATE(210)] = 4246, + [SMALL_STATE(211)] = 4290, + [SMALL_STATE(212)] = 4334, + [SMALL_STATE(213)] = 4378, + [SMALL_STATE(214)] = 4422, + [SMALL_STATE(215)] = 4468, + [SMALL_STATE(216)] = 4514, + [SMALL_STATE(217)] = 4558, + [SMALL_STATE(218)] = 4602, + [SMALL_STATE(219)] = 4648, + [SMALL_STATE(220)] = 4692, + [SMALL_STATE(221)] = 4738, + [SMALL_STATE(222)] = 4784, + [SMALL_STATE(223)] = 4828, + [SMALL_STATE(224)] = 4869, + [SMALL_STATE(225)] = 4910, + [SMALL_STATE(226)] = 4951, + [SMALL_STATE(227)] = 4992, + [SMALL_STATE(228)] = 5033, + [SMALL_STATE(229)] = 5074, + [SMALL_STATE(230)] = 5115, + [SMALL_STATE(231)] = 5160, + [SMALL_STATE(232)] = 5201, + [SMALL_STATE(233)] = 5242, + [SMALL_STATE(234)] = 5283, + [SMALL_STATE(235)] = 5324, + [SMALL_STATE(236)] = 5365, + [SMALL_STATE(237)] = 5406, + [SMALL_STATE(238)] = 5447, + [SMALL_STATE(239)] = 5488, + [SMALL_STATE(240)] = 5529, + [SMALL_STATE(241)] = 5570, + [SMALL_STATE(242)] = 5611, + [SMALL_STATE(243)] = 5652, + [SMALL_STATE(244)] = 5693, + [SMALL_STATE(245)] = 5734, + [SMALL_STATE(246)] = 5775, + [SMALL_STATE(247)] = 5816, + [SMALL_STATE(248)] = 5861, + [SMALL_STATE(249)] = 5902, + [SMALL_STATE(250)] = 5945, + [SMALL_STATE(251)] = 5986, + [SMALL_STATE(252)] = 6027, + [SMALL_STATE(253)] = 6068, + [SMALL_STATE(254)] = 6109, + [SMALL_STATE(255)] = 6150, + [SMALL_STATE(256)] = 6191, + [SMALL_STATE(257)] = 6232, + [SMALL_STATE(258)] = 6273, + [SMALL_STATE(259)] = 6314, + [SMALL_STATE(260)] = 6355, + [SMALL_STATE(261)] = 6396, + [SMALL_STATE(262)] = 6437, + [SMALL_STATE(263)] = 6478, + [SMALL_STATE(264)] = 6519, + [SMALL_STATE(265)] = 6560, + [SMALL_STATE(266)] = 6601, + [SMALL_STATE(267)] = 6642, + [SMALL_STATE(268)] = 6683, + [SMALL_STATE(269)] = 6724, + [SMALL_STATE(270)] = 6765, + [SMALL_STATE(271)] = 6806, + [SMALL_STATE(272)] = 6847, + [SMALL_STATE(273)] = 6888, + [SMALL_STATE(274)] = 6929, + [SMALL_STATE(275)] = 6970, + [SMALL_STATE(276)] = 7011, + [SMALL_STATE(277)] = 7052, + [SMALL_STATE(278)] = 7093, + [SMALL_STATE(279)] = 7134, + [SMALL_STATE(280)] = 7175, + [SMALL_STATE(281)] = 7216, + [SMALL_STATE(282)] = 7257, + [SMALL_STATE(283)] = 7298, + [SMALL_STATE(284)] = 7339, + [SMALL_STATE(285)] = 7380, + [SMALL_STATE(286)] = 7421, + [SMALL_STATE(287)] = 7462, + [SMALL_STATE(288)] = 7505, + [SMALL_STATE(289)] = 7546, + [SMALL_STATE(290)] = 7587, + [SMALL_STATE(291)] = 7628, + [SMALL_STATE(292)] = 7669, + [SMALL_STATE(293)] = 7710, + [SMALL_STATE(294)] = 7751, + [SMALL_STATE(295)] = 7792, + [SMALL_STATE(296)] = 7833, + [SMALL_STATE(297)] = 7874, + [SMALL_STATE(298)] = 7915, + [SMALL_STATE(299)] = 7956, + [SMALL_STATE(300)] = 7997, + [SMALL_STATE(301)] = 8038, + [SMALL_STATE(302)] = 8079, + [SMALL_STATE(303)] = 8120, + [SMALL_STATE(304)] = 8161, + [SMALL_STATE(305)] = 8202, + [SMALL_STATE(306)] = 8243, + [SMALL_STATE(307)] = 8286, + [SMALL_STATE(308)] = 8327, + [SMALL_STATE(309)] = 8368, + [SMALL_STATE(310)] = 8409, + [SMALL_STATE(311)] = 8450, + [SMALL_STATE(312)] = 8491, + [SMALL_STATE(313)] = 8532, + [SMALL_STATE(314)] = 8573, + [SMALL_STATE(315)] = 8614, + [SMALL_STATE(316)] = 8655, + [SMALL_STATE(317)] = 8696, + [SMALL_STATE(318)] = 8737, + [SMALL_STATE(319)] = 8778, + [SMALL_STATE(320)] = 8819, + [SMALL_STATE(321)] = 8860, + [SMALL_STATE(322)] = 8901, + [SMALL_STATE(323)] = 8942, + [SMALL_STATE(324)] = 8983, + [SMALL_STATE(325)] = 9024, + [SMALL_STATE(326)] = 9065, + [SMALL_STATE(327)] = 9106, + [SMALL_STATE(328)] = 9147, + [SMALL_STATE(329)] = 9188, + [SMALL_STATE(330)] = 9229, + [SMALL_STATE(331)] = 9270, + [SMALL_STATE(332)] = 9315, + [SMALL_STATE(333)] = 9358, + [SMALL_STATE(334)] = 9401, + [SMALL_STATE(335)] = 9442, + [SMALL_STATE(336)] = 9483, + [SMALL_STATE(337)] = 9524, + [SMALL_STATE(338)] = 9565, + [SMALL_STATE(339)] = 9606, + [SMALL_STATE(340)] = 9647, + [SMALL_STATE(341)] = 9688, + [SMALL_STATE(342)] = 9729, + [SMALL_STATE(343)] = 9770, + [SMALL_STATE(344)] = 9813, + [SMALL_STATE(345)] = 9854, + [SMALL_STATE(346)] = 9895, + [SMALL_STATE(347)] = 9936, + [SMALL_STATE(348)] = 9977, + [SMALL_STATE(349)] = 10018, + [SMALL_STATE(350)] = 10059, + [SMALL_STATE(351)] = 10100, + [SMALL_STATE(352)] = 10141, + [SMALL_STATE(353)] = 10182, + [SMALL_STATE(354)] = 10223, + [SMALL_STATE(355)] = 10264, + [SMALL_STATE(356)] = 10305, + [SMALL_STATE(357)] = 10346, + [SMALL_STATE(358)] = 10387, + [SMALL_STATE(359)] = 10428, + [SMALL_STATE(360)] = 10471, + [SMALL_STATE(361)] = 10512, + [SMALL_STATE(362)] = 10553, + [SMALL_STATE(363)] = 10594, + [SMALL_STATE(364)] = 10635, + [SMALL_STATE(365)] = 10676, + [SMALL_STATE(366)] = 10717, + [SMALL_STATE(367)] = 10758, + [SMALL_STATE(368)] = 10799, + [SMALL_STATE(369)] = 10840, + [SMALL_STATE(370)] = 10881, + [SMALL_STATE(371)] = 10922, + [SMALL_STATE(372)] = 10965, + [SMALL_STATE(373)] = 11006, + [SMALL_STATE(374)] = 11047, + [SMALL_STATE(375)] = 11088, + [SMALL_STATE(376)] = 11129, + [SMALL_STATE(377)] = 11170, + [SMALL_STATE(378)] = 11211, + [SMALL_STATE(379)] = 11252, + [SMALL_STATE(380)] = 11295, + [SMALL_STATE(381)] = 11336, + [SMALL_STATE(382)] = 11377, + [SMALL_STATE(383)] = 11418, + [SMALL_STATE(384)] = 11459, + [SMALL_STATE(385)] = 11500, + [SMALL_STATE(386)] = 11541, + [SMALL_STATE(387)] = 11582, + [SMALL_STATE(388)] = 11623, + [SMALL_STATE(389)] = 11664, + [SMALL_STATE(390)] = 11705, + [SMALL_STATE(391)] = 11746, + [SMALL_STATE(392)] = 11787, + [SMALL_STATE(393)] = 11828, + [SMALL_STATE(394)] = 11869, + [SMALL_STATE(395)] = 11910, + [SMALL_STATE(396)] = 11951, + [SMALL_STATE(397)] = 11992, + [SMALL_STATE(398)] = 12033, + [SMALL_STATE(399)] = 12074, + [SMALL_STATE(400)] = 12115, + [SMALL_STATE(401)] = 12156, + [SMALL_STATE(402)] = 12197, + [SMALL_STATE(403)] = 12238, + [SMALL_STATE(404)] = 12279, + [SMALL_STATE(405)] = 12320, + [SMALL_STATE(406)] = 12361, + [SMALL_STATE(407)] = 12402, + [SMALL_STATE(408)] = 12443, + [SMALL_STATE(409)] = 12484, + [SMALL_STATE(410)] = 12525, + [SMALL_STATE(411)] = 12566, + [SMALL_STATE(412)] = 12607, + [SMALL_STATE(413)] = 12648, + [SMALL_STATE(414)] = 12689, + [SMALL_STATE(415)] = 12730, + [SMALL_STATE(416)] = 12771, + [SMALL_STATE(417)] = 12812, + [SMALL_STATE(418)] = 12853, + [SMALL_STATE(419)] = 12894, + [SMALL_STATE(420)] = 12935, + [SMALL_STATE(421)] = 12976, + [SMALL_STATE(422)] = 13017, + [SMALL_STATE(423)] = 13058, + [SMALL_STATE(424)] = 13099, + [SMALL_STATE(425)] = 13140, + [SMALL_STATE(426)] = 13183, + [SMALL_STATE(427)] = 13224, + [SMALL_STATE(428)] = 13265, + [SMALL_STATE(429)] = 13306, + [SMALL_STATE(430)] = 13347, + [SMALL_STATE(431)] = 13388, + [SMALL_STATE(432)] = 13429, + [SMALL_STATE(433)] = 13470, + [SMALL_STATE(434)] = 13511, + [SMALL_STATE(435)] = 13552, + [SMALL_STATE(436)] = 13593, + [SMALL_STATE(437)] = 13634, + [SMALL_STATE(438)] = 13675, + [SMALL_STATE(439)] = 13716, + [SMALL_STATE(440)] = 13757, + [SMALL_STATE(441)] = 13798, + [SMALL_STATE(442)] = 13839, + [SMALL_STATE(443)] = 13880, + [SMALL_STATE(444)] = 13921, + [SMALL_STATE(445)] = 13966, + [SMALL_STATE(446)] = 14007, + [SMALL_STATE(447)] = 14048, + [SMALL_STATE(448)] = 14089, + [SMALL_STATE(449)] = 14130, + [SMALL_STATE(450)] = 14171, + [SMALL_STATE(451)] = 14212, + [SMALL_STATE(452)] = 14253, + [SMALL_STATE(453)] = 14294, + [SMALL_STATE(454)] = 14335, + [SMALL_STATE(455)] = 14376, + [SMALL_STATE(456)] = 14417, + [SMALL_STATE(457)] = 14458, + [SMALL_STATE(458)] = 14499, + [SMALL_STATE(459)] = 14540, + [SMALL_STATE(460)] = 14581, + [SMALL_STATE(461)] = 14622, + [SMALL_STATE(462)] = 14663, + [SMALL_STATE(463)] = 14704, + [SMALL_STATE(464)] = 14745, + [SMALL_STATE(465)] = 14786, + [SMALL_STATE(466)] = 14827, + [SMALL_STATE(467)] = 14868, + [SMALL_STATE(468)] = 14911, + [SMALL_STATE(469)] = 14952, + [SMALL_STATE(470)] = 14993, + [SMALL_STATE(471)] = 15034, + [SMALL_STATE(472)] = 15077, + [SMALL_STATE(473)] = 15118, + [SMALL_STATE(474)] = 15159, + [SMALL_STATE(475)] = 15200, + [SMALL_STATE(476)] = 15241, + [SMALL_STATE(477)] = 15282, + [SMALL_STATE(478)] = 15323, + [SMALL_STATE(479)] = 15364, + [SMALL_STATE(480)] = 15405, + [SMALL_STATE(481)] = 15446, + [SMALL_STATE(482)] = 15487, + [SMALL_STATE(483)] = 15528, + [SMALL_STATE(484)] = 15569, + [SMALL_STATE(485)] = 15610, + [SMALL_STATE(486)] = 15651, + [SMALL_STATE(487)] = 15692, + [SMALL_STATE(488)] = 15733, + [SMALL_STATE(489)] = 15774, + [SMALL_STATE(490)] = 15815, + [SMALL_STATE(491)] = 15856, + [SMALL_STATE(492)] = 15897, + [SMALL_STATE(493)] = 15938, + [SMALL_STATE(494)] = 15979, + [SMALL_STATE(495)] = 16020, + [SMALL_STATE(496)] = 16061, + [SMALL_STATE(497)] = 16104, + [SMALL_STATE(498)] = 16145, + [SMALL_STATE(499)] = 16186, + [SMALL_STATE(500)] = 16227, + [SMALL_STATE(501)] = 16268, + [SMALL_STATE(502)] = 16309, + [SMALL_STATE(503)] = 16350, + [SMALL_STATE(504)] = 16391, + [SMALL_STATE(505)] = 16432, + [SMALL_STATE(506)] = 16473, + [SMALL_STATE(507)] = 16514, + [SMALL_STATE(508)] = 16555, + [SMALL_STATE(509)] = 16598, + [SMALL_STATE(510)] = 16639, + [SMALL_STATE(511)] = 16680, + [SMALL_STATE(512)] = 16720, + [SMALL_STATE(513)] = 16762, + [SMALL_STATE(514)] = 16802, + [SMALL_STATE(515)] = 16842, + [SMALL_STATE(516)] = 16882, + [SMALL_STATE(517)] = 16922, + [SMALL_STATE(518)] = 16962, + [SMALL_STATE(519)] = 17002, + [SMALL_STATE(520)] = 17042, + [SMALL_STATE(521)] = 17082, + [SMALL_STATE(522)] = 17122, + [SMALL_STATE(523)] = 17162, + [SMALL_STATE(524)] = 17202, + [SMALL_STATE(525)] = 17242, + [SMALL_STATE(526)] = 17282, + [SMALL_STATE(527)] = 17322, + [SMALL_STATE(528)] = 17362, + [SMALL_STATE(529)] = 17402, + [SMALL_STATE(530)] = 17442, + [SMALL_STATE(531)] = 17482, + [SMALL_STATE(532)] = 17522, + [SMALL_STATE(533)] = 17562, + [SMALL_STATE(534)] = 17602, + [SMALL_STATE(535)] = 17642, + [SMALL_STATE(536)] = 17682, + [SMALL_STATE(537)] = 17722, + [SMALL_STATE(538)] = 17762, + [SMALL_STATE(539)] = 17802, + [SMALL_STATE(540)] = 17842, + [SMALL_STATE(541)] = 17882, + [SMALL_STATE(542)] = 17922, + [SMALL_STATE(543)] = 17962, + [SMALL_STATE(544)] = 18002, + [SMALL_STATE(545)] = 18042, + [SMALL_STATE(546)] = 18082, + [SMALL_STATE(547)] = 18122, + [SMALL_STATE(548)] = 18162, + [SMALL_STATE(549)] = 18202, + [SMALL_STATE(550)] = 18242, + [SMALL_STATE(551)] = 18284, + [SMALL_STATE(552)] = 18324, + [SMALL_STATE(553)] = 18366, + [SMALL_STATE(554)] = 18406, + [SMALL_STATE(555)] = 18446, + [SMALL_STATE(556)] = 18486, + [SMALL_STATE(557)] = 18526, + [SMALL_STATE(558)] = 18566, + [SMALL_STATE(559)] = 18606, + [SMALL_STATE(560)] = 18646, + [SMALL_STATE(561)] = 18686, + [SMALL_STATE(562)] = 18726, + [SMALL_STATE(563)] = 18766, + [SMALL_STATE(564)] = 18806, + [SMALL_STATE(565)] = 18846, + [SMALL_STATE(566)] = 18886, + [SMALL_STATE(567)] = 18926, + [SMALL_STATE(568)] = 18966, + [SMALL_STATE(569)] = 19006, + [SMALL_STATE(570)] = 19046, + [SMALL_STATE(571)] = 19086, + [SMALL_STATE(572)] = 19126, + [SMALL_STATE(573)] = 19166, + [SMALL_STATE(574)] = 19206, + [SMALL_STATE(575)] = 19246, + [SMALL_STATE(576)] = 19286, + [SMALL_STATE(577)] = 19326, + [SMALL_STATE(578)] = 19366, + [SMALL_STATE(579)] = 19406, + [SMALL_STATE(580)] = 19446, + [SMALL_STATE(581)] = 19486, + [SMALL_STATE(582)] = 19526, + [SMALL_STATE(583)] = 19566, + [SMALL_STATE(584)] = 19606, + [SMALL_STATE(585)] = 19646, + [SMALL_STATE(586)] = 19686, + [SMALL_STATE(587)] = 19726, + [SMALL_STATE(588)] = 19766, + [SMALL_STATE(589)] = 19806, + [SMALL_STATE(590)] = 19846, + [SMALL_STATE(591)] = 19886, + [SMALL_STATE(592)] = 19926, + [SMALL_STATE(593)] = 19966, + [SMALL_STATE(594)] = 20006, + [SMALL_STATE(595)] = 20048, + [SMALL_STATE(596)] = 20088, + [SMALL_STATE(597)] = 20128, + [SMALL_STATE(598)] = 20168, + [SMALL_STATE(599)] = 20208, + [SMALL_STATE(600)] = 20250, + [SMALL_STATE(601)] = 20290, + [SMALL_STATE(602)] = 20330, + [SMALL_STATE(603)] = 20370, + [SMALL_STATE(604)] = 20409, + [SMALL_STATE(605)] = 20448, + [SMALL_STATE(606)] = 20487, + [SMALL_STATE(607)] = 20526, + [SMALL_STATE(608)] = 20565, + [SMALL_STATE(609)] = 20604, + [SMALL_STATE(610)] = 20635, + [SMALL_STATE(611)] = 20666, + [SMALL_STATE(612)] = 20697, + [SMALL_STATE(613)] = 20728, + [SMALL_STATE(614)] = 20759, + [SMALL_STATE(615)] = 20790, + [SMALL_STATE(616)] = 20821, + [SMALL_STATE(617)] = 20852, + [SMALL_STATE(618)] = 20883, + [SMALL_STATE(619)] = 20914, + [SMALL_STATE(620)] = 20945, + [SMALL_STATE(621)] = 20976, + [SMALL_STATE(622)] = 21007, + [SMALL_STATE(623)] = 21038, + [SMALL_STATE(624)] = 21069, + [SMALL_STATE(625)] = 21100, + [SMALL_STATE(626)] = 21131, + [SMALL_STATE(627)] = 21162, + [SMALL_STATE(628)] = 21193, + [SMALL_STATE(629)] = 21224, + [SMALL_STATE(630)] = 21255, + [SMALL_STATE(631)] = 21286, + [SMALL_STATE(632)] = 21317, + [SMALL_STATE(633)] = 21327, + [SMALL_STATE(634)] = 21337, + [SMALL_STATE(635)] = 21347, + [SMALL_STATE(636)] = 21357, + [SMALL_STATE(637)] = 21367, + [SMALL_STATE(638)] = 21377, + [SMALL_STATE(639)] = 21387, + [SMALL_STATE(640)] = 21397, + [SMALL_STATE(641)] = 21407, + [SMALL_STATE(642)] = 21424, + [SMALL_STATE(643)] = 21441, + [SMALL_STATE(644)] = 21460, + [SMALL_STATE(645)] = 21477, + [SMALL_STATE(646)] = 21494, + [SMALL_STATE(647)] = 21513, + [SMALL_STATE(648)] = 21532, + [SMALL_STATE(649)] = 21551, + [SMALL_STATE(650)] = 21570, + [SMALL_STATE(651)] = 21589, + [SMALL_STATE(652)] = 21606, + [SMALL_STATE(653)] = 21625, + [SMALL_STATE(654)] = 21642, + [SMALL_STATE(655)] = 21661, + [SMALL_STATE(656)] = 21678, + [SMALL_STATE(657)] = 21697, + [SMALL_STATE(658)] = 21714, + [SMALL_STATE(659)] = 21733, + [SMALL_STATE(660)] = 21752, + [SMALL_STATE(661)] = 21771, + [SMALL_STATE(662)] = 21788, + [SMALL_STATE(663)] = 21807, + [SMALL_STATE(664)] = 21826, + [SMALL_STATE(665)] = 21845, + [SMALL_STATE(666)] = 21864, + [SMALL_STATE(667)] = 21883, + [SMALL_STATE(668)] = 21900, + [SMALL_STATE(669)] = 21917, + [SMALL_STATE(670)] = 21936, + [SMALL_STATE(671)] = 21955, + [SMALL_STATE(672)] = 21974, + [SMALL_STATE(673)] = 21993, + [SMALL_STATE(674)] = 22012, + [SMALL_STATE(675)] = 22024, + [SMALL_STATE(676)] = 22036, + [SMALL_STATE(677)] = 22048, + [SMALL_STATE(678)] = 22060, + [SMALL_STATE(679)] = 22072, + [SMALL_STATE(680)] = 22079, + [SMALL_STATE(681)] = 22089, + [SMALL_STATE(682)] = 22097, + [SMALL_STATE(683)] = 22105, + [SMALL_STATE(684)] = 22112, + [SMALL_STATE(685)] = 22119, + [SMALL_STATE(686)] = 22126, + [SMALL_STATE(687)] = 22133, + [SMALL_STATE(688)] = 22140, + [SMALL_STATE(689)] = 22147, + [SMALL_STATE(690)] = 22154, + [SMALL_STATE(691)] = 22161, + [SMALL_STATE(692)] = 22168, + [SMALL_STATE(693)] = 22175, + [SMALL_STATE(694)] = 22182, + [SMALL_STATE(695)] = 22189, + [SMALL_STATE(696)] = 22196, + [SMALL_STATE(697)] = 22201, + [SMALL_STATE(698)] = 22208, + [SMALL_STATE(699)] = 22215, + [SMALL_STATE(700)] = 22222, + [SMALL_STATE(701)] = 22229, + [SMALL_STATE(702)] = 22236, + [SMALL_STATE(703)] = 22243, + [SMALL_STATE(704)] = 22250, + [SMALL_STATE(705)] = 22257, + [SMALL_STATE(706)] = 22264, + [SMALL_STATE(707)] = 22271, + [SMALL_STATE(708)] = 22278, + [SMALL_STATE(709)] = 22285, + [SMALL_STATE(710)] = 22290, + [SMALL_STATE(711)] = 22297, + [SMALL_STATE(712)] = 22304, + [SMALL_STATE(713)] = 22311, + [SMALL_STATE(714)] = 22318, + [SMALL_STATE(715)] = 22325, + [SMALL_STATE(716)] = 22332, + [SMALL_STATE(717)] = 22339, + [SMALL_STATE(718)] = 22346, + [SMALL_STATE(719)] = 22353, + [SMALL_STATE(720)] = 22360, + [SMALL_STATE(721)] = 22367, + [SMALL_STATE(722)] = 22374, + [SMALL_STATE(723)] = 22381, + [SMALL_STATE(724)] = 22388, + [SMALL_STATE(725)] = 22395, + [SMALL_STATE(726)] = 22400, + [SMALL_STATE(727)] = 22407, + [SMALL_STATE(728)] = 22414, + [SMALL_STATE(729)] = 22421, + [SMALL_STATE(730)] = 22428, + [SMALL_STATE(731)] = 22435, + [SMALL_STATE(732)] = 22442, + [SMALL_STATE(733)] = 22449, + [SMALL_STATE(734)] = 22456, + [SMALL_STATE(735)] = 22463, + [SMALL_STATE(736)] = 22470, + [SMALL_STATE(737)] = 22477, + [SMALL_STATE(738)] = 22484, + [SMALL_STATE(739)] = 22491, + [SMALL_STATE(740)] = 22498, + [SMALL_STATE(741)] = 22505, + [SMALL_STATE(742)] = 22512, + [SMALL_STATE(743)] = 22519, + [SMALL_STATE(744)] = 22526, + [SMALL_STATE(745)] = 22533, + [SMALL_STATE(746)] = 22540, + [SMALL_STATE(747)] = 22547, + [SMALL_STATE(748)] = 22554, + [SMALL_STATE(749)] = 22561, + [SMALL_STATE(750)] = 22568, + [SMALL_STATE(751)] = 22575, + [SMALL_STATE(752)] = 22582, + [SMALL_STATE(753)] = 22589, + [SMALL_STATE(754)] = 22596, + [SMALL_STATE(755)] = 22601, + [SMALL_STATE(756)] = 22608, + [SMALL_STATE(757)] = 22615, + [SMALL_STATE(758)] = 22622, + [SMALL_STATE(759)] = 22629, + [SMALL_STATE(760)] = 22636, + [SMALL_STATE(761)] = 22643, + [SMALL_STATE(762)] = 22650, + [SMALL_STATE(763)] = 22657, + [SMALL_STATE(764)] = 22664, + [SMALL_STATE(765)] = 22671, + [SMALL_STATE(766)] = 22678, + [SMALL_STATE(767)] = 22683, + [SMALL_STATE(768)] = 22690, + [SMALL_STATE(769)] = 22697, + [SMALL_STATE(770)] = 22704, + [SMALL_STATE(771)] = 22711, + [SMALL_STATE(772)] = 22718, + [SMALL_STATE(773)] = 22725, + [SMALL_STATE(774)] = 22732, + [SMALL_STATE(775)] = 22739, + [SMALL_STATE(776)] = 22746, + [SMALL_STATE(777)] = 22753, + [SMALL_STATE(778)] = 22760, + [SMALL_STATE(779)] = 22767, + [SMALL_STATE(780)] = 22774, + [SMALL_STATE(781)] = 22781, + [SMALL_STATE(782)] = 22788, + [SMALL_STATE(783)] = 22795, + [SMALL_STATE(784)] = 22802, + [SMALL_STATE(785)] = 22807, + [SMALL_STATE(786)] = 22814, + [SMALL_STATE(787)] = 22821, + [SMALL_STATE(788)] = 22828, + [SMALL_STATE(789)] = 22835, + [SMALL_STATE(790)] = 22842, + [SMALL_STATE(791)] = 22849, + [SMALL_STATE(792)] = 22856, + [SMALL_STATE(793)] = 22863, + [SMALL_STATE(794)] = 22870, + [SMALL_STATE(795)] = 22877, + [SMALL_STATE(796)] = 22884, + [SMALL_STATE(797)] = 22891, + [SMALL_STATE(798)] = 22898, + [SMALL_STATE(799)] = 22905, + [SMALL_STATE(800)] = 22910, + [SMALL_STATE(801)] = 22917, + [SMALL_STATE(802)] = 22924, + [SMALL_STATE(803)] = 22931, + [SMALL_STATE(804)] = 22938, + [SMALL_STATE(805)] = 22945, + [SMALL_STATE(806)] = 22952, + [SMALL_STATE(807)] = 22959, + [SMALL_STATE(808)] = 22966, + [SMALL_STATE(809)] = 22973, + [SMALL_STATE(810)] = 22980, + [SMALL_STATE(811)] = 22987, + [SMALL_STATE(812)] = 22994, + [SMALL_STATE(813)] = 23001, + [SMALL_STATE(814)] = 23008, + [SMALL_STATE(815)] = 23015, + [SMALL_STATE(816)] = 23022, + [SMALL_STATE(817)] = 23029, + [SMALL_STATE(818)] = 23036, + [SMALL_STATE(819)] = 23041, + [SMALL_STATE(820)] = 23048, + [SMALL_STATE(821)] = 23055, + [SMALL_STATE(822)] = 23062, + [SMALL_STATE(823)] = 23069, + [SMALL_STATE(824)] = 23076, + [SMALL_STATE(825)] = 23083, + [SMALL_STATE(826)] = 23090, + [SMALL_STATE(827)] = 23097, + [SMALL_STATE(828)] = 23104, + [SMALL_STATE(829)] = 23111, + [SMALL_STATE(830)] = 23118, + [SMALL_STATE(831)] = 23125, + [SMALL_STATE(832)] = 23130, + [SMALL_STATE(833)] = 23135, + [SMALL_STATE(834)] = 23142, + [SMALL_STATE(835)] = 23149, + [SMALL_STATE(836)] = 23156, + [SMALL_STATE(837)] = 23163, + [SMALL_STATE(838)] = 23170, + [SMALL_STATE(839)] = 23177, + [SMALL_STATE(840)] = 23184, + [SMALL_STATE(841)] = 23191, + [SMALL_STATE(842)] = 23198, + [SMALL_STATE(843)] = 23205, + [SMALL_STATE(844)] = 23212, + [SMALL_STATE(845)] = 23219, + [SMALL_STATE(846)] = 23226, + [SMALL_STATE(847)] = 23233, + [SMALL_STATE(848)] = 23240, + [SMALL_STATE(849)] = 23247, + [SMALL_STATE(850)] = 23254, + [SMALL_STATE(851)] = 23261, + [SMALL_STATE(852)] = 23268, + [SMALL_STATE(853)] = 23273, + [SMALL_STATE(854)] = 23280, + [SMALL_STATE(855)] = 23287, + [SMALL_STATE(856)] = 23294, + [SMALL_STATE(857)] = 23301, + [SMALL_STATE(858)] = 23308, + [SMALL_STATE(859)] = 23315, + [SMALL_STATE(860)] = 23322, + [SMALL_STATE(861)] = 23326, + [SMALL_STATE(862)] = 23330, + [SMALL_STATE(863)] = 23334, + [SMALL_STATE(864)] = 23338, + [SMALL_STATE(865)] = 23342, + [SMALL_STATE(866)] = 23346, + [SMALL_STATE(867)] = 23350, + [SMALL_STATE(868)] = 23354, + [SMALL_STATE(869)] = 23358, + [SMALL_STATE(870)] = 23362, + [SMALL_STATE(871)] = 23366, + [SMALL_STATE(872)] = 23370, + [SMALL_STATE(873)] = 23374, + [SMALL_STATE(874)] = 23378, + [SMALL_STATE(875)] = 23382, + [SMALL_STATE(876)] = 23386, + [SMALL_STATE(877)] = 23390, + [SMALL_STATE(878)] = 23394, + [SMALL_STATE(879)] = 23398, + [SMALL_STATE(880)] = 23402, + [SMALL_STATE(881)] = 23406, + [SMALL_STATE(882)] = 23410, + [SMALL_STATE(883)] = 23414, + [SMALL_STATE(884)] = 23418, + [SMALL_STATE(885)] = 23422, + [SMALL_STATE(886)] = 23426, + [SMALL_STATE(887)] = 23430, + [SMALL_STATE(888)] = 23434, + [SMALL_STATE(889)] = 23438, + [SMALL_STATE(890)] = 23442, + [SMALL_STATE(891)] = 23446, + [SMALL_STATE(892)] = 23450, + [SMALL_STATE(893)] = 23454, + [SMALL_STATE(894)] = 23458, + [SMALL_STATE(895)] = 23462, + [SMALL_STATE(896)] = 23466, + [SMALL_STATE(897)] = 23470, + [SMALL_STATE(898)] = 23474, + [SMALL_STATE(899)] = 23478, + [SMALL_STATE(900)] = 23482, + [SMALL_STATE(901)] = 23486, + [SMALL_STATE(902)] = 23490, + [SMALL_STATE(903)] = 23494, + [SMALL_STATE(904)] = 23498, + [SMALL_STATE(905)] = 23502, + [SMALL_STATE(906)] = 23506, + [SMALL_STATE(907)] = 23510, + [SMALL_STATE(908)] = 23514, + [SMALL_STATE(909)] = 23518, + [SMALL_STATE(910)] = 23522, + [SMALL_STATE(911)] = 23526, + [SMALL_STATE(912)] = 23530, + [SMALL_STATE(913)] = 23534, + [SMALL_STATE(914)] = 23538, + [SMALL_STATE(915)] = 23542, + [SMALL_STATE(916)] = 23546, + [SMALL_STATE(917)] = 23550, + [SMALL_STATE(918)] = 23554, + [SMALL_STATE(919)] = 23558, + [SMALL_STATE(920)] = 23562, + [SMALL_STATE(921)] = 23566, + [SMALL_STATE(922)] = 23570, + [SMALL_STATE(923)] = 23574, + [SMALL_STATE(924)] = 23578, + [SMALL_STATE(925)] = 23582, + [SMALL_STATE(926)] = 23586, + [SMALL_STATE(927)] = 23590, + [SMALL_STATE(928)] = 23594, + [SMALL_STATE(929)] = 23598, + [SMALL_STATE(930)] = 23602, + [SMALL_STATE(931)] = 23606, + [SMALL_STATE(932)] = 23610, + [SMALL_STATE(933)] = 23614, + [SMALL_STATE(934)] = 23618, + [SMALL_STATE(935)] = 23622, + [SMALL_STATE(936)] = 23626, + [SMALL_STATE(937)] = 23630, + [SMALL_STATE(938)] = 23634, + [SMALL_STATE(939)] = 23638, + [SMALL_STATE(940)] = 23642, + [SMALL_STATE(941)] = 23646, + [SMALL_STATE(942)] = 23650, + [SMALL_STATE(943)] = 23654, + [SMALL_STATE(944)] = 23658, + [SMALL_STATE(945)] = 23662, + [SMALL_STATE(946)] = 23666, + [SMALL_STATE(947)] = 23670, + [SMALL_STATE(948)] = 23674, + [SMALL_STATE(949)] = 23678, + [SMALL_STATE(950)] = 23682, + [SMALL_STATE(951)] = 23686, + [SMALL_STATE(952)] = 23690, + [SMALL_STATE(953)] = 23694, + [SMALL_STATE(954)] = 23698, + [SMALL_STATE(955)] = 23702, + [SMALL_STATE(956)] = 23706, + [SMALL_STATE(957)] = 23710, + [SMALL_STATE(958)] = 23714, + [SMALL_STATE(959)] = 23718, + [SMALL_STATE(960)] = 23722, + [SMALL_STATE(961)] = 23726, + [SMALL_STATE(962)] = 23730, + [SMALL_STATE(963)] = 23734, + [SMALL_STATE(964)] = 23738, + [SMALL_STATE(965)] = 23742, + [SMALL_STATE(966)] = 23746, + [SMALL_STATE(967)] = 23750, + [SMALL_STATE(968)] = 23754, + [SMALL_STATE(969)] = 23758, + [SMALL_STATE(970)] = 23762, + [SMALL_STATE(971)] = 23766, + [SMALL_STATE(972)] = 23770, + [SMALL_STATE(973)] = 23774, + [SMALL_STATE(974)] = 23778, + [SMALL_STATE(975)] = 23782, + [SMALL_STATE(976)] = 23786, + [SMALL_STATE(977)] = 23790, + [SMALL_STATE(978)] = 23794, + [SMALL_STATE(979)] = 23798, + [SMALL_STATE(980)] = 23802, + [SMALL_STATE(981)] = 23806, + [SMALL_STATE(982)] = 23810, + [SMALL_STATE(983)] = 23814, + [SMALL_STATE(984)] = 23818, + [SMALL_STATE(985)] = 23822, + [SMALL_STATE(986)] = 23826, + [SMALL_STATE(987)] = 23830, + [SMALL_STATE(988)] = 23834, + [SMALL_STATE(989)] = 23838, + [SMALL_STATE(990)] = 23842, + [SMALL_STATE(991)] = 23846, + [SMALL_STATE(992)] = 23850, + [SMALL_STATE(993)] = 23854, + [SMALL_STATE(994)] = 23858, + [SMALL_STATE(995)] = 23862, + [SMALL_STATE(996)] = 23866, + [SMALL_STATE(997)] = 23870, + [SMALL_STATE(998)] = 23874, + [SMALL_STATE(999)] = 23878, + [SMALL_STATE(1000)] = 23882, + [SMALL_STATE(1001)] = 23886, + [SMALL_STATE(1002)] = 23890, + [SMALL_STATE(1003)] = 23894, + [SMALL_STATE(1004)] = 23898, + [SMALL_STATE(1005)] = 23902, + [SMALL_STATE(1006)] = 23906, + [SMALL_STATE(1007)] = 23910, + [SMALL_STATE(1008)] = 23914, + [SMALL_STATE(1009)] = 23918, + [SMALL_STATE(1010)] = 23922, + [SMALL_STATE(1011)] = 23926, + [SMALL_STATE(1012)] = 23930, + [SMALL_STATE(1013)] = 23934, + [SMALL_STATE(1014)] = 23938, + [SMALL_STATE(1015)] = 23942, + [SMALL_STATE(1016)] = 23946, + [SMALL_STATE(1017)] = 23950, + [SMALL_STATE(1018)] = 23954, + [SMALL_STATE(1019)] = 23958, + [SMALL_STATE(1020)] = 23962, + [SMALL_STATE(1021)] = 23966, + [SMALL_STATE(1022)] = 23970, + [SMALL_STATE(1023)] = 23974, + [SMALL_STATE(1024)] = 23978, + [SMALL_STATE(1025)] = 23982, + [SMALL_STATE(1026)] = 23986, + [SMALL_STATE(1027)] = 23990, + [SMALL_STATE(1028)] = 23994, + [SMALL_STATE(1029)] = 23998, + [SMALL_STATE(1030)] = 24002, + [SMALL_STATE(1031)] = 24006, + [SMALL_STATE(1032)] = 24010, + [SMALL_STATE(1033)] = 24014, + [SMALL_STATE(1034)] = 24018, + [SMALL_STATE(1035)] = 24022, + [SMALL_STATE(1036)] = 24026, + [SMALL_STATE(1037)] = 24030, + [SMALL_STATE(1038)] = 24034, + [SMALL_STATE(1039)] = 24038, + [SMALL_STATE(1040)] = 24042, + [SMALL_STATE(1041)] = 24046, + [SMALL_STATE(1042)] = 24050, + [SMALL_STATE(1043)] = 24054, + [SMALL_STATE(1044)] = 24058, + [SMALL_STATE(1045)] = 24062, + [SMALL_STATE(1046)] = 24066, + [SMALL_STATE(1047)] = 24070, + [SMALL_STATE(1048)] = 24074, + [SMALL_STATE(1049)] = 24078, + [SMALL_STATE(1050)] = 24082, + [SMALL_STATE(1051)] = 24086, + [SMALL_STATE(1052)] = 24090, + [SMALL_STATE(1053)] = 24094, + [SMALL_STATE(1054)] = 24098, + [SMALL_STATE(1055)] = 24102, + [SMALL_STATE(1056)] = 24106, + [SMALL_STATE(1057)] = 24110, + [SMALL_STATE(1058)] = 24114, + [SMALL_STATE(1059)] = 24118, + [SMALL_STATE(1060)] = 24122, + [SMALL_STATE(1061)] = 24126, + [SMALL_STATE(1062)] = 24130, + [SMALL_STATE(1063)] = 24134, + [SMALL_STATE(1064)] = 24138, + [SMALL_STATE(1065)] = 24142, + [SMALL_STATE(1066)] = 24146, + [SMALL_STATE(1067)] = 24150, + [SMALL_STATE(1068)] = 24154, + [SMALL_STATE(1069)] = 24158, + [SMALL_STATE(1070)] = 24162, + [SMALL_STATE(1071)] = 24166, + [SMALL_STATE(1072)] = 24170, + [SMALL_STATE(1073)] = 24174, + [SMALL_STATE(1074)] = 24178, + [SMALL_STATE(1075)] = 24182, + [SMALL_STATE(1076)] = 24186, + [SMALL_STATE(1077)] = 24190, + [SMALL_STATE(1078)] = 24194, + [SMALL_STATE(1079)] = 24198, + [SMALL_STATE(1080)] = 24202, + [SMALL_STATE(1081)] = 24206, + [SMALL_STATE(1082)] = 24210, + [SMALL_STATE(1083)] = 24214, + [SMALL_STATE(1084)] = 24218, + [SMALL_STATE(1085)] = 24222, + [SMALL_STATE(1086)] = 24226, + [SMALL_STATE(1087)] = 24230, + [SMALL_STATE(1088)] = 24234, + [SMALL_STATE(1089)] = 24238, + [SMALL_STATE(1090)] = 24242, + [SMALL_STATE(1091)] = 24246, + [SMALL_STATE(1092)] = 24250, + [SMALL_STATE(1093)] = 24254, + [SMALL_STATE(1094)] = 24258, + [SMALL_STATE(1095)] = 24262, + [SMALL_STATE(1096)] = 24266, + [SMALL_STATE(1097)] = 24270, + [SMALL_STATE(1098)] = 24274, + [SMALL_STATE(1099)] = 24278, + [SMALL_STATE(1100)] = 24282, + [SMALL_STATE(1101)] = 24286, + [SMALL_STATE(1102)] = 24290, + [SMALL_STATE(1103)] = 24294, + [SMALL_STATE(1104)] = 24298, + [SMALL_STATE(1105)] = 24302, + [SMALL_STATE(1106)] = 24306, + [SMALL_STATE(1107)] = 24310, + [SMALL_STATE(1108)] = 24314, + [SMALL_STATE(1109)] = 24318, + [SMALL_STATE(1110)] = 24322, + [SMALL_STATE(1111)] = 24326, + [SMALL_STATE(1112)] = 24330, + [SMALL_STATE(1113)] = 24334, + [SMALL_STATE(1114)] = 24338, + [SMALL_STATE(1115)] = 24342, + [SMALL_STATE(1116)] = 24346, + [SMALL_STATE(1117)] = 24350, + [SMALL_STATE(1118)] = 24354, + [SMALL_STATE(1119)] = 24358, + [SMALL_STATE(1120)] = 24362, + [SMALL_STATE(1121)] = 24366, + [SMALL_STATE(1122)] = 24370, + [SMALL_STATE(1123)] = 24374, + [SMALL_STATE(1124)] = 24378, + [SMALL_STATE(1125)] = 24382, + [SMALL_STATE(1126)] = 24386, + [SMALL_STATE(1127)] = 24390, + [SMALL_STATE(1128)] = 24394, + [SMALL_STATE(1129)] = 24398, + [SMALL_STATE(1130)] = 24402, + [SMALL_STATE(1131)] = 24406, + [SMALL_STATE(1132)] = 24410, + [SMALL_STATE(1133)] = 24414, + [SMALL_STATE(1134)] = 24418, + [SMALL_STATE(1135)] = 24422, + [SMALL_STATE(1136)] = 24426, + [SMALL_STATE(1137)] = 24430, + [SMALL_STATE(1138)] = 24434, + [SMALL_STATE(1139)] = 24438, + [SMALL_STATE(1140)] = 24442, + [SMALL_STATE(1141)] = 24446, + [SMALL_STATE(1142)] = 24450, + [SMALL_STATE(1143)] = 24454, + [SMALL_STATE(1144)] = 24458, + [SMALL_STATE(1145)] = 24462, + [SMALL_STATE(1146)] = 24466, + [SMALL_STATE(1147)] = 24470, + [SMALL_STATE(1148)] = 24474, + [SMALL_STATE(1149)] = 24478, + [SMALL_STATE(1150)] = 24482, + [SMALL_STATE(1151)] = 24486, + [SMALL_STATE(1152)] = 24490, + [SMALL_STATE(1153)] = 24494, + [SMALL_STATE(1154)] = 24498, + [SMALL_STATE(1155)] = 24502, + [SMALL_STATE(1156)] = 24506, + [SMALL_STATE(1157)] = 24510, + [SMALL_STATE(1158)] = 24514, + [SMALL_STATE(1159)] = 24518, + [SMALL_STATE(1160)] = 24522, + [SMALL_STATE(1161)] = 24526, + [SMALL_STATE(1162)] = 24530, + [SMALL_STATE(1163)] = 24534, + [SMALL_STATE(1164)] = 24538, + [SMALL_STATE(1165)] = 24542, + [SMALL_STATE(1166)] = 24546, + [SMALL_STATE(1167)] = 24550, + [SMALL_STATE(1168)] = 24554, + [SMALL_STATE(1169)] = 24558, + [SMALL_STATE(1170)] = 24562, + [SMALL_STATE(1171)] = 24566, + [SMALL_STATE(1172)] = 24570, + [SMALL_STATE(1173)] = 24574, + [SMALL_STATE(1174)] = 24578, + [SMALL_STATE(1175)] = 24582, + [SMALL_STATE(1176)] = 24586, + [SMALL_STATE(1177)] = 24590, + [SMALL_STATE(1178)] = 24594, + [SMALL_STATE(1179)] = 24598, + [SMALL_STATE(1180)] = 24602, + [SMALL_STATE(1181)] = 24606, + [SMALL_STATE(1182)] = 24610, + [SMALL_STATE(1183)] = 24614, + [SMALL_STATE(1184)] = 24618, + [SMALL_STATE(1185)] = 24622, + [SMALL_STATE(1186)] = 24626, + [SMALL_STATE(1187)] = 24630, + [SMALL_STATE(1188)] = 24634, + [SMALL_STATE(1189)] = 24638, + [SMALL_STATE(1190)] = 24642, + [SMALL_STATE(1191)] = 24646, + [SMALL_STATE(1192)] = 24650, + [SMALL_STATE(1193)] = 24654, + [SMALL_STATE(1194)] = 24658, + [SMALL_STATE(1195)] = 24662, + [SMALL_STATE(1196)] = 24666, + [SMALL_STATE(1197)] = 24670, + [SMALL_STATE(1198)] = 24674, + [SMALL_STATE(1199)] = 24678, + [SMALL_STATE(1200)] = 24682, + [SMALL_STATE(1201)] = 24686, + [SMALL_STATE(1202)] = 24690, + [SMALL_STATE(1203)] = 24694, + [SMALL_STATE(1204)] = 24698, + [SMALL_STATE(1205)] = 24702, + [SMALL_STATE(1206)] = 24706, + [SMALL_STATE(1207)] = 24710, + [SMALL_STATE(1208)] = 24714, + [SMALL_STATE(1209)] = 24718, + [SMALL_STATE(1210)] = 24722, + [SMALL_STATE(1211)] = 24726, + [SMALL_STATE(1212)] = 24730, + [SMALL_STATE(1213)] = 24734, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), - [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), - [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), - [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), - [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), - [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), - [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), - [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(747), - [248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(206), - [251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(735), - [254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(207), - [257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(730), - [260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(729), - [263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(715), - [266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(713), - [269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(701), - [272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1045), - [275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(139), - [278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(139), - [281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(156), - [284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(695), - [287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(667), - [290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(764), - [293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(663), - [296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(242), - [299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(243), - [302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(244), - [305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(194), - [308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(7), - [311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(126), - [314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(954), - [317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), - [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), - [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline, 1), - [369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(668), - [372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(197), - [375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(684), - [378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(193), - [381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(685), - [384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(686), - [387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(687), - [390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(688), - [393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(689), - [396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1046), - [399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(137), - [402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(137), - [405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(191), - [408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(691), - [411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(692), - [414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(693), - [417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(694), - [420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(279), - [423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(280), - [426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(281), - [429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(202), - [432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(15), - [435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(122), - [438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(970), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(714), + [152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(208), + [155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(715), + [158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(207), + [161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(716), + [164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(717), + [167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(718), + [170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(719), + [173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(720), + [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1067), + [179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(134), + [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(134), + [185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(204), + [188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(722), + [191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(723), + [194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(724), + [197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(725), + [200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(287), + [203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(288), + [206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(289), + [209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(220), + [212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(6), + [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(129), + [218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(992), + [221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), + [223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(786), + [226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(210), + [229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(685), + [232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(211), + [235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(686), + [238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(687), + [241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(688), + [244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(690), + [247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(691), + [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1193), + [253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(140), + [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(140), + [259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(213), + [262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(693), + [265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(694), + [268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(695), + [271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(696), + [274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(249), + [277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(250), + [280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(251), + [283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(198), + [286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(13), + [289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(122), + [292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(976), + [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), + [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline, 1), + [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), + [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), + [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), - [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), - [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), - [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), - [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), - [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), - [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), - [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), + [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), + [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), + [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(717), - [644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(179), - [647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(718), - [650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(178), - [653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(719), - [656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(720), - [659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(721), - [662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(722), - [665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(723), - [668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(978), - [671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(136), - [674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(136), - [677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(176), - [680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(725), - [683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(726), - [686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(727), - [689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(728), - [692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(323), - [695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(324), - [698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(325), - [701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(186), - [704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(47), - [707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(130), - [710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(986), - [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(751), - [718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(168), - [721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(752), - [724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(167), - [727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(753), - [730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(754), - [733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(755), - [736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(756), - [739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(757), - [742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(941), - [745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(131), - [748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(131), - [751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(165), - [754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(759), - [757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(760), - [760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(761), - [763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(762), - [766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(367), - [769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(368), - [772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(369), - [775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(175), - [778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(69), - [781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(123), - [784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1002), - [787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(669), - [790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(155), - [793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(670), - [796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(209), - [799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(671), - [802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(672), - [805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(673), - [808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(674), - [811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(675), - [814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1111), - [817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(135), - [820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(135), - [823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(199), - [826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(676), - [829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(677), - [832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(678), - [835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(680), - [838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(494), - [841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(223), - [844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(226), - [847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(196), - [850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(70), - [853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(121), - [856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1054), - [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(785), - [864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(161), - [867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(786), - [870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(160), - [873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(787), - [876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(788), - [879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(789), - [882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(790), - [885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(791), - [888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(889), - [891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(133), - [894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(133), - [897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(158), - [900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(793), - [903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(794), - [906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(795), - [909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(796), - [912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(411), - [915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(412), - [918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(413), - [921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(184), - [924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(81), - [927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(129), - [930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1018), - [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(819), - [940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(185), - [943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(820), - [946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(189), - [949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(821), - [952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(822), - [955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(823), - [958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(824), - [961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(825), - [964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(854), - [967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(132), - [970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(132), - [973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(192), - [976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(827), - [979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(828), - [982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(829), - [985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(830), - [988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(455), - [991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(456), - [994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(457), - [997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(157), - [1000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(110), - [1003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(128), - [1006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1034), - [1009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(831), - [1012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(211), - [1015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(826), - [1018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(166), - [1021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(818), - [1024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(817), - [1027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(816), - [1030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(815), - [1033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(814), - [1036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(860), - [1039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(140), - [1042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(140), - [1045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(153), - [1048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(813), - [1051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(812), - [1054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(811), - [1057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(810), - [1060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(498), - [1063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(499), - [1066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(497), - [1069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(195), + [637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(743), + [640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(187), + [643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(744), + [646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(186), + [649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(745), + [652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(746), + [655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(747), + [658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(748), + [661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(749), + [664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1000), + [667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(144), + [670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(144), + [673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(184), + [676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(751), + [679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(752), + [682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(753), + [685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(754), + [688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(333), + [691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(334), + [694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(335), + [697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(203), + [700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(25), + [703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(128), + [706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1008), + [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(773), + [714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(175), + [717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(774), + [720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(174), + [723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(775), + [726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(776), + [729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(777), + [732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(778), + [735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(779), + [738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(954), + [741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(145), + [744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(145), + [747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(172), + [750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(781), + [753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(782), + [756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(783), + [759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(784), + [762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(379), + [765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(380), + [768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(381), + [771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(183), + [774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(38), + [777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(124), + [780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1024), + [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(807), + [790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(193), + [793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(808), + [796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(170), + [799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(809), + [802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(810), + [805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(811), + [808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(812), + [811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(813), + [814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(911), + [817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(142), + [820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(142), + [823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(176), + [826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(815), + [829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(816), + [832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(817), + [835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(818), + [838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(425), + [841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(426), + [844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(427), + [847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(173), + [850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(49), + [853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(126), + [856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1040), + [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(841), + [866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(197), + [869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(842), + [872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(199), + [875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(843), + [878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(844), + [881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(845), + [884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(846), + [887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(847), + [890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(876), + [893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(138), + [896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(138), + [899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(200), + [902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(849), + [905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(850), + [908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(851), + [911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(852), + [914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(471), + [917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(472), + [920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(473), + [923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(181), + [926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(71), + [929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(121), + [932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1056), + [935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(689), + [938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(202), + [941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(692), + [944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(219), + [947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(697), + [950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(701), + [953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(702), + [956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(703), + [959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(704), + [962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1133), + [965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(151), + [968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(151), + [971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(201), + [974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(705), + [977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(706), + [980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(707), + [983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(709), + [986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(508), + [989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(233), + [992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(245), + [995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(196), + [998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(72), + [1001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(125), + [1004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1076), + [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [1009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(853), + [1012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(216), + [1015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(848), + [1018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(217), + [1021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(840), + [1024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(839), + [1027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(838), + [1030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(837), + [1033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(836), + [1036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(882), + [1039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(139), + [1042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(139), + [1045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(222), + [1048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(835), + [1051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(834), + [1054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(833), + [1057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(832), + [1060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(496), + [1063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(493), + [1066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(491), + [1069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(205), [1072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(115), - [1075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(124), - [1078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1050), - [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [1083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(799), - [1086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(371), - [1089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(797), - [1092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(366), - [1095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(792), - [1098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(784), - [1101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(783), - [1104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(782), - [1107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(781), - [1110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(894), - [1113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(143), - [1116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(143), - [1119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(361), - [1122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(661), - [1125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(780), - [1128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(779), - [1131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(778), - [1134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(539), - [1137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(540), - [1140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(541), - [1143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(214), - [1146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(120), - [1149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(134), - [1152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1066), + [1075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(123), + [1078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1072), + [1081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(821), + [1084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(371), + [1087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(819), + [1090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(359), + [1093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(814), + [1096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(806), + [1099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(805), + [1102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(804), + [1105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(803), + [1108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(916), + [1111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(157), + [1114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(157), + [1117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(343), + [1120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(802), + [1123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(801), + [1126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(800), + [1129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(799), + [1132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(512), + [1135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(560), + [1138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(561), + [1141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(230), + [1144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(118), + [1147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(150), + [1150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1088), + [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), [1155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element, 1), [1157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__element, 1), - [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), + [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), - [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), - [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), - [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), - [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), - [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), - [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), - [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), - [1179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), - [1181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verbatim, 3, .production_id = 1), - [1183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verbatim, 3, .production_id = 1), - [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [1205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), - [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), - [1209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), - [1211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__text, 2), - [1213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__text, 2), - [1215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(154), - [1218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [1220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [1222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 1), - [1224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), - [1226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), - [1228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [1230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 2), - [1232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 2), - [1234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [1238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [1240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(162), - [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [1245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(164), - [1248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [1256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(169), - [1259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(170), - [1262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(171), - [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), - [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), - [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), - [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), - [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), - [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), - [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [1317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(198), - [1320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [1326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), - [1328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(203), - [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [1333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(205), - [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [1340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(208), - [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [1349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hard_line_break, 2), - [1351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hard_line_break, 2), + [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), + [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), + [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), + [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), + [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), + [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), + [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [1179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element, 1, .dynamic_precedence = 100), + [1181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__element, 1, .dynamic_precedence = 100), + [1183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [1185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verbatim, 3, .production_id = 1), + [1187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verbatim, 3, .production_id = 1), + [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [1209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__text, 2), + [1211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__text, 2), + [1213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(164), + [1216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), + [1218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), + [1220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [1222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 2), + [1224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 2), + [1226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [1228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(167), + [1231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(168), + [1234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [1238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [1240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 1), + [1244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), + [1246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), + [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [1252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [1256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(178), + [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), + [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), + [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [1271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(185), + [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [1278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [1282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(190), + [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), + [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), + [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), + [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), + [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [1331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(214), + [1334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(215), + [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [1341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(218), + [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [1346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [1348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(221), + [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), [1353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 3), [1355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comment, 3), - [1357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), - [1359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_with_spaces, 2), - [1361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__comment_with_spaces, 2), - [1363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collapsed_reference_image, 2), - [1365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collapsed_reference_image, 2), - [1367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_reference_image, 2), - [1369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_reference_image, 2), - [1371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_image, 2), - [1373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_image, 2), - [1375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collapsed_reference_link, 2), - [1377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collapsed_reference_link, 2), - [1379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_reference_link, 2), - [1381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_reference_link, 2), - [1383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 2), - [1385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 2), - [1387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 3), - [1389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 3), - [1391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_todo, 1), - [1393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_todo, 1), - [1395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_autolink, 3), - [1397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_autolink, 3), - [1399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_inline, 4), - [1401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_inline, 4), - [1403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note, 1), - [1405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_note, 1), - [1407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math, 4, .production_id = 4), - [1409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math, 4, .production_id = 4), - [1411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emphasis, 4, .dynamic_precedence = 1000), - [1413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_emphasis, 4, .dynamic_precedence = 1000), - [1415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strong, 4, .dynamic_precedence = 1000), - [1417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strong, 4, .dynamic_precedence = 1000), - [1419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_superscript, 4, .dynamic_precedence = 1000, .production_id = 5), - [1421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_superscript, 4, .dynamic_precedence = 1000, .production_id = 5), - [1423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, .dynamic_precedence = 1000, .production_id = 5), - [1425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, .dynamic_precedence = 1000, .production_id = 5), - [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlighted, 4, .dynamic_precedence = 1000, .production_id = 5), - [1429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_highlighted, 4, .dynamic_precedence = 1000, .production_id = 5), - [1431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 4, .dynamic_precedence = 1000, .production_id = 5), - [1433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 4, .dynamic_precedence = 1000, .production_id = 5), - [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete, 4, .dynamic_precedence = 1000, .production_id = 5), - [1437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete, 4, .dynamic_precedence = 1000, .production_id = 5), - [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_footnote_reference, 4, .dynamic_precedence = 1000, .production_id = 6), - [1441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_footnote_reference, 4, .dynamic_precedence = 1000, .production_id = 6), - [1443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_label, 3, .production_id = 7), - [1445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_label, 3, .production_id = 7), - [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), - [1449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link_destination, 4), - [1451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link_destination, 4), - [1453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_inline_attribute, 3), - [1455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_inline_attribute, 3), - [1457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(956), - [1460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(972), - [1463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(940), - [1466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(988), - [1469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(344), - [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [1474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), - [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [1478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1004), - [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [1483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1020), - [1486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), - [1488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(923), - [1491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1036), - [1494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1042), - [1497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1052), - [1500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_attribute, 4, .dynamic_precedence = 1000, .production_id = 9), - [1502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_attribute, 4, .dynamic_precedence = 1000, .production_id = 9), - [1504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element, 2), - [1506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__element, 2), - [1508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__curly_bracket_span_fallback, 2), - [1510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__curly_bracket_span_fallback, 2), - [1512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_span, 5, .production_id = 10), - [1514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_span, 5, .production_id = 10), - [1516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_attribute, 3, .dynamic_precedence = 1000), - [1518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_attribute, 3, .dynamic_precedence = 1000), - [1520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_without_trailing_space, 1), - [1522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1068), - [1525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_without_trailing_space, 2), - [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [1545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(998), - [1548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(934), - [1551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(615), - [1554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(710), - [1557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), - [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [1357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_image, 2), + [1359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_image, 2), + [1361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collapsed_reference_link, 2), + [1363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collapsed_reference_link, 2), + [1365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_reference_link, 2), + [1367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_reference_link, 2), + [1369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 2), + [1371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 2), + [1373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 3), + [1375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 3), + [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), + [1379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_autolink, 3), + [1381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_autolink, 3), + [1383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_inline, 4), + [1385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_inline, 4), + [1387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_todo, 1), + [1389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_todo, 1), + [1391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math, 4, .production_id = 4), + [1393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math, 4, .production_id = 4), + [1395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emphasis, 4), + [1397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_emphasis, 4), + [1399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strong, 4), + [1401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strong, 4), + [1403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_superscript, 4, .production_id = 5), + [1405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_superscript, 4, .production_id = 5), + [1407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, .production_id = 5), + [1409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, .production_id = 5), + [1411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlighted, 4, .production_id = 5), + [1413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_highlighted, 4, .production_id = 5), + [1415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 4, .production_id = 5), + [1417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 4, .production_id = 5), + [1419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete, 4, .production_id = 5), + [1421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete, 4, .production_id = 5), + [1423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_footnote_reference, 4, .production_id = 6), + [1425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_footnote_reference, 4, .production_id = 6), + [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_label, 3, .production_id = 7), + [1429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_label, 3, .production_id = 7), + [1431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note, 1), + [1433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_note, 1), + [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link_destination, 4), + [1437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link_destination, 4), + [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), + [1441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_inline_attribute, 3), + [1443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_inline_attribute, 3), + [1445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(978), + [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hard_line_break, 2), + [1450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hard_line_break, 2), + [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_with_spaces, 2), + [1454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__comment_with_spaces, 2), + [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collapsed_reference_image, 2), + [1458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collapsed_reference_image, 2), + [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_reference_image, 2), + [1462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_reference_image, 2), + [1464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(994), + [1467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(962), + [1470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(331), + [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [1475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1010), + [1478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), + [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [1484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1026), + [1487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1042), + [1490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), + [1492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(945), + [1495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1058), + [1498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1074), + [1501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1064), + [1504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_span, 5, .dynamic_precedence = 100, .production_id = 10), + [1506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_span, 5, .dynamic_precedence = 100, .production_id = 10), + [1508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1090), + [1511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__curly_bracket_span_fallback, 2), + [1513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__curly_bracket_span_fallback, 2), + [1515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_attribute, 3), + [1517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_attribute, 3), + [1519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_attribute, 4, .production_id = 9), + [1521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_attribute, 4, .production_id = 9), + [1523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element, 2, .dynamic_precedence = 100), + [1525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__element, 2, .dynamic_precedence = 100), + [1527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element, 2), + [1529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__element, 2), + [1531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_without_trailing_space, 1), + [1533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_without_trailing_space, 2), + [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [1593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2), - [1595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 3), - [1597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_name, 1), - [1599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1), - [1601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_with_newline, 4, .production_id = 5), - [1603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 1), - [1605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 1, .production_id = 3), - [1607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_with_newline, 3), - [1609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value, 3), - [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), - [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), - [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), - [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [1629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_text, 4, .dynamic_precedence = 1000, .production_id = 8), - [1631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_text, 4, .dynamic_precedence = 1000, .production_id = 8), - [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), - [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), - [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), - [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17), - [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), - [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), - [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), - [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), - [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [1725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__comment_with_newline_repeat1, 2), SHIFT_REPEAT(657), - [1728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_with_newline_repeat1, 2), - [1730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), - [1732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), - [1734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), - [1736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), - [1738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), - [1740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_with_newline_repeat1, 1), - [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [1746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_description, 4, .dynamic_precedence = 1000, .production_id = 8), - [1748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_description, 4, .dynamic_precedence = 1000, .production_id = 8), - [1750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_description, 3, .dynamic_precedence = 1000, .production_id = 2), - [1752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_description, 3, .dynamic_precedence = 1000, .production_id = 2), - [1754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(501), - [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [1759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(365), - [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [1766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(255), - [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [1771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(255), - [1774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__curly_bracket_span_begin, 1), SHIFT(524), - [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [1779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(245), - [1782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(285), - [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [1787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(240), - [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [1792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(240), - [1795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(240), - [1798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(240), - [1801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(240), - [1804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(240), - [1807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(240), - [1810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(240), - [1813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(240), - [1816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(240), - [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [1823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(285), - [1826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(285), - [1829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(285), - [1832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(285), - [1835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(285), - [1838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(285), - [1841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(297), - [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [1846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(285), - [1849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(285), - [1852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(285), - [1855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(245), - [1858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__curly_bracket_span_begin, 1), SHIFT(572), - [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [1863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(299), - [1866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [1868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(299), - [1871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__curly_bracket_span_begin, 1), SHIFT(580), - [1874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [1876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(245), - [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [1881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(297), - [1884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(245), - [1887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(245), - [1890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(365), - [1893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(329), - [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [1898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(329), - [1901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(329), - [1904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(329), - [1907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(329), - [1910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(329), - [1913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(329), - [1916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(365), - [1919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(329), - [1922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(329), - [1925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(329), - [1928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(245), - [1931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(245), - [1934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(365), - [1937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(343), - [1940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [1942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(343), - [1945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__curly_bracket_span_begin, 1), SHIFT(554), - [1948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [1950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(245), - [1953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(365), - [1956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(365), - [1959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(365), - [1962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(365), - [1965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(365), - [1968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(365), - [1971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(372), - [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [1976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(372), - [1979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(245), - [1982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__curly_bracket_span_begin, 1), SHIFT(535), - [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [1987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(373), - [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [1992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(373), - [1995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(373), - [1998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(373), - [2001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(373), - [2004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(373), - [2007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(373), - [2010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(373), - [2013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(373), - [2016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(373), - [2019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(245), - [2022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(276), - [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [2027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(387), - [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [2032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(387), - [2035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__curly_bracket_span_begin, 1), SHIFT(532), - [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [2040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(276), - [2043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(276), - [2046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(276), - [2049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__curly_bracket_span_begin, 1), SHIFT(585), - [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [2054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(556), - [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [2059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(556), - [2062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(276), - [2065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(276), - [2068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(501), - [2071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(501), - [2074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(501), - [2077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(501), - [2080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(501), - [2083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(501), - [2086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(417), - [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [2091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(417), - [2094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(417), - [2097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(417), - [2100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(417), - [2103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(417), - [2106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(417), - [2109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(501), - [2112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(417), - [2115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(417), - [2118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(417), - [2121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(501), - [2124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(276), - [2127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(501), - [2130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(431), - [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [2135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(431), - [2138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__curly_bracket_span_begin, 1), SHIFT(523), - [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [2143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(276), - [2146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(276), - [2149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(276), - [2152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__curly_bracket_span_begin, 1), SHIFT(516), - [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [2157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(453), - [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [2162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(453), - [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [2167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(496), - [2170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(496), - [2173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(496), - [2176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(496), - [2179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(496), - [2182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(496), - [2185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(496), - [2188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(496), - [2191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(460), - [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [2196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(460), - [2199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(460), - [2202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(460), - [2205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(460), - [2208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(460), - [2211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(460), - [2214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(496), - [2217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(460), - [2220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(460), - [2223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(460), - [2226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(496), - [2229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(222), - [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [2234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(222), - [2237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(474), - [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [2242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(474), - [2245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__curly_bracket_span_begin, 1), SHIFT(508), - [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [2250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__curly_bracket_span_begin, 1), SHIFT(503), - [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [2571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key, 1), - [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [2599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_label, 1), - [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [2723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline, 1), - [2725] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [1587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(1020), + [1590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(956), + [1593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(634), + [1596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(738), + [1599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), + [1601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1), + [1603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 1, .production_id = 3), + [1605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 1), + [1607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_with_newline, 4, .production_id = 5), + [1609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_with_newline, 3), + [1611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 3), + [1613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value, 3), + [1615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_name, 1), + [1617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2), + [1619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_text, 4, .production_id = 8), + [1621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_text, 4, .production_id = 8), + [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16), + [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), + [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), + [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), + [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), + [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), + [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), + [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), + [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), + [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), + [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), + [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), + [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), + [1737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), + [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), + [1741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__comment_with_newline_repeat1, 2), SHIFT_REPEAT(679), + [1744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_with_newline_repeat1, 2), + [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), + [1748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_with_newline_repeat1, 1), + [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [1754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_description, 3, .production_id = 2), + [1756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_description, 3, .production_id = 2), + [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_description, 4, .production_id = 8), + [1760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_description, 4, .production_id = 8), + [1762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(436), + [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [1767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(436), + [1770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(252), + [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [1775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(252), + [1778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(252), + [1781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(252), + [1784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(254), + [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [1789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(252), + [1792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(252), + [1795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(254), + [1798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(252), + [1801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(252), + [1804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(252), + [1807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(254), + [1810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(263), + [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [1815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(263), + [1818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__curly_bracket_span_begin, 1), SHIFT(528), + [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [1823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(254), + [1826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(254), + [1829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(254), + [1832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(254), + [1835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(254), + [1838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(254), + [1841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(254), + [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [1848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(296), + [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [1853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(294), + [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [1858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(294), + [1861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(294), + [1864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(294), + [1867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(294), + [1870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(294), + [1873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(294), + [1876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(294), + [1879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(294), + [1882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(294), + [1885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__curly_bracket_span_begin, 1), SHIFT(579), + [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [1890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(309), + [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [1895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(309), + [1898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__curly_bracket_span_begin, 1), SHIFT(602), + [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [1905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(296), + [1908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(436), + [1911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(223), + [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [1916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(223), + [1919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(223), + [1922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(223), + [1925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(223), + [1928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(223), + [1931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(223), + [1934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(436), + [1937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(223), + [1940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(223), + [1943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(223), + [1946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(436), + [1949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(355), + [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [1954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(355), + [1957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__curly_bracket_span_begin, 1), SHIFT(557), + [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [1962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(436), + [1965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(436), + [1968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(436), + [1971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(436), + [1974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(436), + [1977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(398), + [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [1982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(398), + [1985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__curly_bracket_span_begin, 1), SHIFT(547), + [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [1990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(386), + [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [1995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(386), + [1998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(386), + [2001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(386), + [2004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(386), + [2007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(386), + [2010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(386), + [2013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(386), + [2016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(386), + [2019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(386), + [2022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(292), + [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [2027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(252), + [2030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(292), + [2033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(401), + [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [2038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(401), + [2041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__curly_bracket_span_begin, 1), SHIFT(546), + [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [2046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(292), + [2049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(292), + [2052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(292), + [2055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__curly_bracket_span_begin, 1), SHIFT(608), + [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [2060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(578), + [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [2065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(578), + [2068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(292), + [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [2073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(564), + [2076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(564), + [2079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(564), + [2082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(564), + [2085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(564), + [2088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(564), + [2091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(564), + [2094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(432), + [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [2099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(432), + [2102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(432), + [2105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(432), + [2108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(432), + [2111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(432), + [2114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(432), + [2117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(564), + [2120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(432), + [2123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(432), + [2126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(432), + [2129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(564), + [2132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(292), + [2135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(564), + [2138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(447), + [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [2143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(447), + [2146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__curly_bracket_span_begin, 1), SHIFT(535), + [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [2151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(292), + [2154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(292), + [2157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(292), + [2160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__curly_bracket_span_begin, 1), SHIFT(536), + [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [2165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(448), + [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [2170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(448), + [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [2175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(490), + [2178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(490), + [2181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(490), + [2184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(490), + [2187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(490), + [2190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(490), + [2193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(490), + [2196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(490), + [2199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(477), + [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [2204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(477), + [2207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(477), + [2210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(477), + [2213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(477), + [2216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(477), + [2219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(477), + [2222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(490), + [2225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(477), + [2228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(477), + [2231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(477), + [2234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(490), + [2237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(229), + [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [2242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(229), + [2245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(492), + [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [2250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(492), + [2253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__curly_bracket_span_begin, 1), SHIFT(517), + [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [2258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__curly_bracket_span_begin, 1), SHIFT(513), + [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [2579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key, 1), + [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [2607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_label, 1), + [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [2731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline, 1), + [2733] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), }; enum ts_external_scanner_symbol_identifiers { @@ -38687,19 +39690,19 @@ static const bool ts_external_scanner_states[52][EXTERNAL_TOKEN_COUNT] = { }, [4] = { [ts_external_token__verbatim_begin] = true, - [ts_external_token_superscript_end] = true, + [ts_external_token_subscript_end] = true, }, [5] = { [ts_external_token__verbatim_begin] = true, - [ts_external_token_highlighted_end] = true, + [ts_external_token_superscript_end] = true, }, [6] = { [ts_external_token__verbatim_begin] = true, - [ts_external_token_subscript_end] = true, + [ts_external_token_insert_end] = true, }, [7] = { [ts_external_token__verbatim_begin] = true, - [ts_external_token_insert_end] = true, + [ts_external_token_highlighted_end] = true, }, [8] = { [ts_external_token__verbatim_begin] = true, @@ -38715,6 +39718,7 @@ static const bool ts_external_scanner_states[52][EXTERNAL_TOKEN_COUNT] = { }, [11] = { [ts_external_token__verbatim_begin] = true, + [ts_external_token_emphasis_end] = true, [ts_external_token__non_whitespace_check] = true, }, [12] = { @@ -38724,37 +39728,36 @@ static const bool ts_external_scanner_states[52][EXTERNAL_TOKEN_COUNT] = { }, [13] = { [ts_external_token__verbatim_begin] = true, - [ts_external_token__square_bracket_span_end] = true, + [ts_external_token_insert_end] = true, [ts_external_token__non_whitespace_check] = true, }, [14] = { [ts_external_token__verbatim_begin] = true, - [ts_external_token_insert_end] = true, + [ts_external_token_highlighted_end] = true, [ts_external_token__non_whitespace_check] = true, }, [15] = { [ts_external_token__verbatim_begin] = true, - [ts_external_token_emphasis_end] = true, + [ts_external_token_strong_end] = true, [ts_external_token__non_whitespace_check] = true, }, [16] = { [ts_external_token__verbatim_begin] = true, - [ts_external_token_highlighted_end] = true, [ts_external_token__non_whitespace_check] = true, }, [17] = { [ts_external_token__verbatim_begin] = true, - [ts_external_token_strong_end] = true, + [ts_external_token_subscript_end] = true, [ts_external_token__non_whitespace_check] = true, }, [18] = { [ts_external_token__verbatim_begin] = true, - [ts_external_token_subscript_end] = true, + [ts_external_token_superscript_end] = true, [ts_external_token__non_whitespace_check] = true, }, [19] = { [ts_external_token__verbatim_begin] = true, - [ts_external_token_superscript_end] = true, + [ts_external_token__square_bracket_span_end] = true, [ts_external_token__non_whitespace_check] = true, }, [20] = { @@ -38769,35 +39772,35 @@ static const bool ts_external_scanner_states[52][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__in_fallback] = true, }, [23] = { - [ts_external_token__parens_span_mark_begin] = true, + [ts_external_token__strong_mark_begin] = true, [ts_external_token__in_fallback] = true, }, [24] = { - [ts_external_token__strong_mark_begin] = true, + [ts_external_token__superscript_mark_begin] = true, [ts_external_token__in_fallback] = true, }, [25] = { - [ts_external_token__curly_bracket_span_mark_begin] = true, + [ts_external_token__subscript_mark_begin] = true, [ts_external_token__in_fallback] = true, }, [26] = { - [ts_external_token__superscript_mark_begin] = true, + [ts_external_token__highlighted_mark_begin] = true, [ts_external_token__in_fallback] = true, }, [27] = { - [ts_external_token__subscript_mark_begin] = true, + [ts_external_token__insert_mark_begin] = true, [ts_external_token__in_fallback] = true, }, [28] = { - [ts_external_token__highlighted_mark_begin] = true, + [ts_external_token__delete_mark_begin] = true, [ts_external_token__in_fallback] = true, }, [29] = { - [ts_external_token__insert_mark_begin] = true, + [ts_external_token__parens_span_mark_begin] = true, [ts_external_token__in_fallback] = true, }, [30] = { - [ts_external_token__delete_mark_begin] = true, + [ts_external_token__curly_bracket_span_mark_begin] = true, [ts_external_token__in_fallback] = true, }, [31] = { diff --git a/tree-sitter-djot-inline/test/corpus/syntax.txt b/tree-sitter-djot-inline/test/corpus/syntax.txt index 5953650..9008146 100644 --- a/tree-sitter-djot-inline/test/corpus/syntax.txt +++ b/tree-sitter-djot-inline/test/corpus/syntax.txt @@ -255,12 +255,14 @@ Image: precedence (strong_begin) (content) (strong_end)) - (inline_image - (image_description) - (inline_link_destination)) - (full_reference_image - (image_description) - (link_label))) + (strong + (strong_begin) + (content) + (strong_end)) + (strong + (strong_begin) + (content) + (strong_end))) =============================================================================== Image: inline @@ -1090,12 +1092,14 @@ Link: precedence (strong_begin) (content) (strong_end)) - (inline_link - (link_text) - (inline_link_destination)) - (full_reference_link - (link_text) - (link_label))) + (strong + (strong_begin) + (content) + (strong_end)) + (strong + (strong_begin) + (content) + (strong_end))) =============================================================================== Link: post precedence inline_link @@ -1309,8 +1313,6 @@ Span: Precedence [*]{.c*} The Djot playground doesn't handle this case properly -[*]{.c}* Should be a span - ------------------------------------------------------------------------------- (inline @@ -1322,13 +1324,41 @@ Span: Precedence (strong (strong_begin) (content) - (strong_end)) + (strong_end))) + +=============================================================================== +Span: Precedence prefer span +:skip +=============================================================================== + +[_]{.c}_ + +------------------------------------------------------------------------------- + +(inline (span (content) (inline_attribute (args (class))))) +=============================================================================== +Span: Precedence choose string with inline attribute +=============================================================================== + +_[_]{.c} + +------------------------------------------------------------------------------- + +(inline + (emphasis + (emphasis_begin) + (content) + (emphasis_end)) + (inline_attribute + (args + (class)))) + =============================================================================== Span: Broken inline attribute =============================================================================== From 631db8f2309c9b02970aa751a6e7c0622e454639 Mon Sep 17 00:00:00 2001 From: Jonas Hietala Date: Sun, 8 Sep 2024 14:18:14 +0200 Subject: [PATCH 22/46] \\ before newline shouldn't be a hard linebreak --- tree-sitter-djot-inline/grammar.js | 4 +- tree-sitter-djot-inline/src/grammar.json | 8 +- tree-sitter-djot-inline/src/parser.c | 10 +- .../test/corpus/syntax.txt | 4 + tree-sitter-djot/src/parser.c | 921 +++++++++--------- tree-sitter-djot/src/tree_sitter/array.h | 9 +- tree-sitter-djot/src/tree_sitter/parser.h | 51 +- 7 files changed, 477 insertions(+), 530 deletions(-) diff --git a/tree-sitter-djot-inline/grammar.js b/tree-sitter-djot-inline/grammar.js index b23106a..a8aed52 100644 --- a/tree-sitter-djot-inline/grammar.js +++ b/tree-sitter-djot-inline/grammar.js @@ -42,9 +42,9 @@ module.exports = grammar({ $.span, seq( choice( - $.hard_line_break, $._smart_punctuation, $.backslash_escape, + $.hard_line_break, // Elements containing other inline elements needs to have the same precedence level // so we can choose the element that's closed first. // @@ -176,7 +176,7 @@ module.exports = grammar({ em_dash: (_) => "---", en_dash: (_) => "--", - backslash_escape: (_) => /\\[^\\\r\n]/, + backslash_escape: (_) => /\\[^\r\n]/, // No backlash escape in an autolink. autolink: (_) => seq("<", /[^>\s]+/, ">"), diff --git a/tree-sitter-djot-inline/src/grammar.json b/tree-sitter-djot-inline/src/grammar.json index e2c21f4..9b05dfe 100644 --- a/tree-sitter-djot-inline/src/grammar.json +++ b/tree-sitter-djot-inline/src/grammar.json @@ -80,15 +80,15 @@ "members": [ { "type": "SYMBOL", - "name": "hard_line_break" + "name": "_smart_punctuation" }, { "type": "SYMBOL", - "name": "_smart_punctuation" + "name": "backslash_escape" }, { "type": "SYMBOL", - "name": "backslash_escape" + "name": "hard_line_break" }, { "type": "PREC_DYNAMIC", @@ -582,7 +582,7 @@ }, "backslash_escape": { "type": "PATTERN", - "value": "\\\\[^\\\\\\r\\n]" + "value": "\\\\[^\\r\\n]" }, "autolink": { "type": "SEQ", diff --git a/tree-sitter-djot-inline/src/parser.c b/tree-sitter-djot-inline/src/parser.c index 3d448b4..32fedea 100644 --- a/tree-sitter-djot-inline/src/parser.c +++ b/tree-sitter-djot-inline/src/parser.c @@ -3236,14 +3236,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\'') ADVANCE(67); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r' && - lookahead != '\\') ADVANCE(75); + lookahead != '\r') ADVANCE(75); END_STATE(); case 65: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '"' || lookahead == '\'') ADVANCE(68); - if (lookahead == '\\') ADVANCE(103); if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || @@ -3256,8 +3254,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r' && - lookahead != '\\') ADVANCE(75); + lookahead != '\r') ADVANCE(75); END_STATE(); case 67: ACCEPT_TOKEN(sym_quotation_marks); @@ -3708,8 +3705,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(aux_sym__comment_with_newline_token1); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r' && - lookahead != '\\') ADVANCE(75); + lookahead != '\r') ADVANCE(75); END_STATE(); case 134: ACCEPT_TOKEN(anon_sym_LBRACE_EQ2); diff --git a/tree-sitter-djot-inline/test/corpus/syntax.txt b/tree-sitter-djot-inline/test/corpus/syntax.txt index 9008146..c5e954a 100644 --- a/tree-sitter-djot-inline/test/corpus/syntax.txt +++ b/tree-sitter-djot-inline/test/corpus/syntax.txt @@ -154,6 +154,8 @@ Regular \.\.\. dots Inside _x\_y_ No \{+insert\*} \> no quote +\\ +\ whitespace ------------------------------------------------------------------------------- @@ -164,6 +166,8 @@ No \{+insert\*} (backslash_escape) (backslash_escape) (backslash_escape) (emphasis (emphasis_begin) (content (backslash_escape)) (emphasis_end)) (backslash_escape) (backslash_escape) + (backslash_escape) + (backslash_escape) (backslash_escape)) =============================================================================== diff --git a/tree-sitter-djot/src/parser.c b/tree-sitter-djot/src/parser.c index c6c70a5..51ad15a 100644 --- a/tree-sitter-djot/src/parser.c +++ b/tree-sitter-djot/src/parser.c @@ -2656,9 +2656,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { switch (state) { case 0: if (eof) ADVANCE(20); - if ((!eof && lookahead == 00)) ADVANCE(32); + if (!eof && (lookahead == 0)) ADVANCE(32); if (lookahead == '\t') ADVANCE(50); - if (lookahead == '\r') SKIP(18); + if (lookahead == '\r') SKIP(18) if (lookahead == ' ') ADVANCE(28); if (lookahead == '"') ADVANCE(45); if (lookahead == '#') ADVANCE(16); @@ -2680,7 +2680,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(48); END_STATE(); case 1: - if ((!eof && lookahead == 00)) ADVANCE(32); + if (!eof && (lookahead == 0)) ADVANCE(32); if (lookahead == '\r') ADVANCE(52); if (lookahead == '[') ADVANCE(21); if (lookahead == '{') ADVANCE(41); @@ -2689,45 +2689,38 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\n') ADVANCE(51); END_STATE(); case 2: - ADVANCE_MAP( - '\n', 14, - '\r', 53, - '-', 30, - ':', 57, - '[', 21, - '{', 41, - '|', 29, - '\t', 58, - 0x0b, 58, - '\f', 58, - ' ', 58, - ); + if (lookahead == '\n') ADVANCE(14); + if (lookahead == '\r') ADVANCE(53); + if (lookahead == '-') ADVANCE(30); + if (lookahead == ':') ADVANCE(57); + if (lookahead == '[') ADVANCE(21); + if (lookahead == '{') ADVANCE(41); + if (lookahead == '|') ADVANCE(29); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') ADVANCE(58); if (lookahead != 0) ADVANCE(51); END_STATE(); case 3: - ADVANCE_MAP( - '\r', 55, - '#', 60, - '%', 64, - '.', 43, - '[', 21, - '{', 41, - '|', 29, - '}', 42, - '\t', 50, - ' ', 50, - ); + if (lookahead == '\r') ADVANCE(55); + if (lookahead == '#') ADVANCE(60); + if (lookahead == '%') ADVANCE(64); + if (lookahead == '.') ADVANCE(43); + if (lookahead == '[') ADVANCE(21); + if (lookahead == '{') ADVANCE(41); + if (lookahead == '|') ADVANCE(29); + if (lookahead == '}') ADVANCE(42); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(50); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(59); if (lookahead != 0 && - lookahead != '\t' && lookahead != '\n') ADVANCE(51); END_STATE(); case 4: - if (lookahead == '\r') SKIP(5); + if (lookahead == '\r') SKIP(5) if (lookahead == '#') ADVANCE(16); if (lookahead == '%') ADVANCE(64); if (lookahead == '.') ADVANCE(43); @@ -2742,7 +2735,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(63); END_STATE(); case 5: - if (lookahead == '\r') SKIP(5); + if (lookahead == '\r') SKIP(5) if (lookahead == '#') ADVANCE(16); if (lookahead == '%') ADVANCE(64); if (lookahead == '.') ADVANCE(43); @@ -2793,7 +2786,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(48); END_STATE(); case 10: - if (lookahead == '\r') SKIP(10); + if (lookahead == '\r') SKIP(10) if (lookahead == ' ') ADVANCE(27); if (lookahead == 'X') ADVANCE(24); if (lookahead == 'x') ADVANCE(22); @@ -2805,9 +2798,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '"') ADVANCE(47); END_STATE(); case 12: - if (lookahead == '\r') SKIP(12); + if (lookahead == '\r') SKIP(12) if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\t' || '\f' < lookahead) && lookahead != ' ') ADVANCE(40); END_STATE(); case 13: @@ -2836,8 +2829,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 18: if (eof) ADVANCE(20); - if ((!eof && lookahead == 00)) ADVANCE(32); - if (lookahead == '\r') SKIP(18); + if (!eof && (lookahead == 0)) ADVANCE(32); + if (lookahead == '\r') SKIP(18) if (lookahead == ' ') ADVANCE(27); if (lookahead == '"') ADVANCE(45); if (lookahead == '#') ADVANCE(16); @@ -3024,7 +3017,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 52: ACCEPT_TOKEN(aux_sym__inline_token1); - if ((!eof && lookahead == 00)) ADVANCE(32); + if (!eof && (lookahead == 0)) ADVANCE(32); if (lookahead == '\r') ADVANCE(52); if (lookahead == '[') ADVANCE(21); if (lookahead == '{') ADVANCE(41); @@ -3034,19 +3027,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 53: ACCEPT_TOKEN(aux_sym__inline_token1); - ADVANCE_MAP( - '\n', 14, - '\r', 53, - '-', 30, - ':', 57, - '[', 21, - '{', 41, - '|', 29, - '\t', 58, - 0x0b, 58, - '\f', 58, - ' ', 58, - ); + if (lookahead == '\n') ADVANCE(14); + if (lookahead == '\r') ADVANCE(53); + if (lookahead == '-') ADVANCE(30); + if (lookahead == ':') ADVANCE(57); + if (lookahead == '[') ADVANCE(21); + if (lookahead == '{') ADVANCE(41); + if (lookahead == '|') ADVANCE(29); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') ADVANCE(58); if (lookahead != 0) ADVANCE(51); END_STATE(); case 54: @@ -3060,16 +3049,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 55: ACCEPT_TOKEN(aux_sym__inline_token1); - ADVANCE_MAP( - '\r', 55, - '#', 60, - '%', 64, - '.', 43, - '[', 21, - '{', 41, - '|', 29, - '}', 42, - ); + if (lookahead == '\r') ADVANCE(55); + if (lookahead == '#') ADVANCE(60); + if (lookahead == '%') ADVANCE(64); + if (lookahead == '.') ADVANCE(43); + if (lookahead == '[') ADVANCE(21); + if (lookahead == '{') ADVANCE(41); + if (lookahead == '|') ADVANCE(29); + if (lookahead == '}') ADVANCE(42); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -27365,7 +27352,7 @@ static const uint32_t ts_small_parse_table_map[] = { static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 0, 0, 0), + [3] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 0), [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), @@ -27399,49 +27386,49 @@ static const TSParseActionEntry ts_parse_actions[] = { [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [71] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 1, 0, 0), - [73] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(324), - [76] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(309), - [79] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(272), - [82] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(366), - [85] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), - [87] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(146), - [90] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(358), - [93] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(753), - [96] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(1039), - [99] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(39), - [102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(46), - [105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(45), - [108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(677), - [111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(297), - [114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(36), - [117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(42), - [120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(30), - [123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(44), - [126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(47), - [129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(51), - [132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(29), - [135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(40), - [138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(37), - [141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(35), - [144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(34), - [147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(33), - [150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(32), - [153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(31), - [156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(41), - [159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(56), - [162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(341), - [165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(144), - [168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(717), - [171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(311), - [174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(294), - [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(273), - [180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(156), - [183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(995), - [186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(55), - [189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(203), - [192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(767), - [195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 2, 0, 0), + [71] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 1), + [73] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(324), + [76] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(309), + [79] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(272), + [82] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(366), + [85] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), + [87] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(146), + [90] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(358), + [93] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(753), + [96] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1039), + [99] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(39), + [102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(46), + [105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(45), + [108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(677), + [111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(297), + [114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(36), + [117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(42), + [120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(30), + [123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(44), + [126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(47), + [129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(51), + [132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(29), + [135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(40), + [138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(37), + [141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(35), + [144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(34), + [147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(33), + [150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(32), + [153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(31), + [156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(41), + [159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(56), + [162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(341), + [165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(144), + [168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(717), + [171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(311), + [174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(294), + [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(273), + [180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(156), + [183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(995), + [186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(55), + [189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(203), + [192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(767), + [195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 2), [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), @@ -27464,43 +27451,43 @@ static const TSParseActionEntry ts_parse_actions[] = { [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(324), - [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(309), - [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(272), - [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(366), - [253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), - [255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(226), - [258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(358), - [261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(753), - [264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(1039), - [267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(39), - [270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(46), - [273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(45), - [276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(677), - [279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(297), - [282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(36), - [285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(42), - [288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(30), - [291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(44), - [294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(47), - [297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(51), - [300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(29), - [303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(40), - [306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(37), - [309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(35), - [312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(34), - [315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(33), - [318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(32), - [321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(31), - [324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(41), - [327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(56), - [330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(61), - [333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(144), - [336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(717), + [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(324), + [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(309), + [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(272), + [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(366), + [253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), + [255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(226), + [258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(358), + [261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(753), + [264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(1039), + [267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(39), + [270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(46), + [273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(45), + [276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(677), + [279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(297), + [282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(36), + [285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(42), + [288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(30), + [291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(44), + [294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(47), + [297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(51), + [300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(29), + [303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(40), + [306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(37), + [309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(35), + [312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(34), + [315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(33), + [318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(32), + [321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(31), + [324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(41), + [327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(56), + [330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(61), + [333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(144), + [336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(717), [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_footnote_content, 1, 0, 0), + [345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_footnote_content, 1), [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), @@ -27510,16 +27497,16 @@ static const TSParseActionEntry ts_parse_actions[] = { [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(326), - [368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(302), - [371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(270), - [374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(265), - [377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(349), - [380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(1046), - [383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(60), - [386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(58), - [389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(233), - [392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(713), + [365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(326), + [368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(302), + [371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(270), + [374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(265), + [377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(349), + [380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(1046), + [383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(60), + [386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(58), + [389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(233), + [392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(713), [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), @@ -27550,8 +27537,8 @@ static const TSParseActionEntry ts_parse_actions[] = { [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 1, 0, 1), - [457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 1, 0, 1), + [455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 1, .production_id = 1), + [457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 1, .production_id = 1), [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), @@ -27563,10 +27550,10 @@ static const TSParseActionEntry ts_parse_actions[] = { [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 1, 0, 0), - [483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 1, 0, 0), SHIFT_REPEAT(341), - [486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 1, 0, 0), - [488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 1, 0, 0), + [481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 1), + [483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 1), SHIFT_REPEAT(341), + [486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 1), + [488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 1), [490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), @@ -27577,73 +27564,73 @@ static const TSParseActionEntry ts_parse_actions[] = { [504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), - [512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), - [514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(360), - [517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(754), - [520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(359), - [523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(357), - [526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_content, 1, 0, 0), - [528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_content, 1, 0, 0), - [530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__table_content, 1, 0, 0), SHIFT(948), - [533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__table_content, 1, 0, 0), SHIFT(754), - [536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__table_content, 1, 0, 0), SHIFT(1011), - [539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__table_content, 1, 0, 0), SHIFT(990), - [542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 2, 0, 0), - [544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 2, 0, 0), - [546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 5, 0, 9), - [548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 5, 0, 9), + [510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2), + [512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_table_repeat1, 2), + [514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(360), + [517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(754), + [520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(359), + [523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(357), + [526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_content, 1), + [528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_content, 1), + [530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__table_content, 1), SHIFT(948), + [533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__table_content, 1), SHIFT(754), + [536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__table_content, 1), SHIFT(1011), + [539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__table_content, 1), SHIFT(990), + [542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 2), + [544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 2), + [546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 5, .production_id = 9), + [548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 5, .production_id = 9), [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 6, 0, 0), - [554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 6, 0, 0), + [552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 6), + [554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 6), [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_separator, 5, 0, 0), - [560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_separator, 5, 0, 0), - [562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 5, 0, 10), - [564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 5, 0, 10), + [558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_separator, 5), + [560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_separator, 5), + [562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 5, .production_id = 10), + [564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 5, .production_id = 10), [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 5, 0, 0), - [570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 5, 0, 0), + [568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 5), + [570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 5), [572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 4, 0, 9), - [576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 4, 0, 9), + [574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 4, .production_id = 9), + [576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 4, .production_id = 9), [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 4, 0, 0), - [582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 4, 0, 0), + [580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 4), + [582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 4), [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_row, 4, 0, 0), - [588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_row, 4, 0, 0), - [590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_separator, 4, 0, 0), - [592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_separator, 4, 0, 0), - [594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 4, 0, 0), - [596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 4, 0, 0), + [586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_row, 4), + [588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_row, 4), + [590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_separator, 4), + [592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_separator, 4), + [594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 4), + [596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 4), [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 3, 0, 0), - [602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 3, 0, 0), + [600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 3), + [602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 3), [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heading, 3, 0, 0), + [606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heading, 3), [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heading, 3, 0, 0), - [612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_or_two_newlines, 1, 0, 0), + [610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heading, 3), + [612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_or_two_newlines, 1), [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_or_two_newlines, 1, 0, 0), - [618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_content, 2, 0, 2), - [620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_content, 2, 0, 2), - [622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 6, 0, 12), - [624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 6, 0, 12), + [616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_or_two_newlines, 1), + [618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_content, 2, .production_id = 2), + [620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_content, 2, .production_id = 2), + [622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 6, .production_id = 12), + [624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 6, .production_id = 12), [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_separator, 6, 0, 0), - [630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_separator, 6, 0, 0), - [632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_row, 6, 0, 0), - [634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_row, 6, 0, 0), + [628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_separator, 6), + [630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_separator, 6), + [632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_row, 6), + [634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_row, 6), [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_row, 5, 0, 0), - [650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_row, 5, 0, 0), + [648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_row, 5), + [650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_row, 5), [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), @@ -27659,113 +27646,113 @@ static const TSParseActionEntry ts_parse_actions[] = { [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_attribute, 3, 0, 0), - [684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_attribute, 3, 0, 0), - [686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 8, 0, 14), - [688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 8, 0, 14), - [690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 8, 0, 0), - [692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 8, 0, 0), - [694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 7, 0, 9), - [696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 7, 0, 9), - [698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_dash, 2, 0, 0), - [700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_dash, 2, 0, 0), - [702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_star, 2, 0, 0), - [704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_star, 2, 0, 0), - [706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_plus, 2, 0, 0), - [708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_plus, 2, 0, 0), - [710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frontmatter, 6, 0, 0), - [712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_frontmatter, 6, 0, 0), - [714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 7, 0, 13), - [716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 7, 0, 13), - [718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 1, 0, 0), - [720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 1, 0, 0), - [722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_task, 2, 0, 0), - [724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_task, 2, 0, 0), - [726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_thematic_break, 1, 0, 0), - [728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_thematic_break, 1, 0, 0), - [730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_definition, 2, 0, 0), - [732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_definition, 2, 0, 0), - [734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 1, 0, 0), - [736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 1, 0, 0), - [738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_decimal_period, 2, 0, 0), - [740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_decimal_period, 2, 0, 0), - [742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 7, 0, 0), - [744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 7, 0, 0), - [746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_decimal_paren, 2, 0, 0), - [748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_decimal_paren, 2, 0, 0), - [750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 5, 0, 0), - [752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 5, 0, 0), - [754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_decimal_parens, 2, 0, 0), - [756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_decimal_parens, 2, 0, 0), - [758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frontmatter, 7, 0, 0), - [760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_frontmatter, 7, 0, 0), - [762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_alpha_period, 2, 0, 0), - [764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_alpha_period, 2, 0, 0), - [766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 2, 0, 0), - [768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 2, 0, 0), - [770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_alpha_paren, 2, 0, 0), - [772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_alpha_paren, 2, 0, 0), - [774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_alpha_parens, 2, 0, 0), - [776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_alpha_parens, 2, 0, 0), - [778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_footnote, 5, 0, 0), - [780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_footnote, 5, 0, 0), - [782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_alpha_period, 2, 0, 0), - [784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_alpha_period, 2, 0, 0), - [786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_or_two_newlines, 2, 0, 0), - [788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_or_two_newlines, 2, 0, 0), - [790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_alpha_paren, 2, 0, 0), - [792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_alpha_paren, 2, 0, 0), - [794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_alpha_parens, 2, 0, 0), - [796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_alpha_parens, 2, 0, 0), - [798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 6, 0, 9), - [800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 6, 0, 9), - [802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_roman_period, 2, 0, 0), - [804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_roman_period, 2, 0, 0), - [806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 6, 0, 0), - [808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 6, 0, 0), - [810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_roman_paren, 2, 0, 0), - [812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_roman_paren, 2, 0, 0), - [814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_roman_parens, 2, 0, 0), - [816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_roman_parens, 2, 0, 0), - [818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__paragraph, 2, 0, 3), - [820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph, 2, 0, 3), - [822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_roman_period, 2, 0, 0), - [824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_roman_period, 2, 0, 0), - [826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_roman_paren, 2, 0, 0), - [828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_roman_paren, 2, 0, 0), - [830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_roman_parens, 2, 0, 0), - [832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_roman_parens, 2, 0, 0), - [834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 8, 0, 0), - [836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 8, 0, 0), - [838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_caption, 3, 0, 7), - [840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_caption, 3, 0, 7), - [842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_with_heading, 2, 0, 0), - [844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_with_heading, 2, 0, 0), - [846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_attribute, 4, 0, 8), - [848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_attribute, 4, 0, 8), - [850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_quote, 3, 0, 0), - [852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_quote, 3, 0, 0), - [854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 3, 0, 0), - [856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 3, 0, 0), - [858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heading, 4, 0, 0), - [860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heading, 4, 0, 0), - [862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 3, 0, 5), - [864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 3, 0, 5), - [866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 1, 0, 0), - [868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 1, 0, 0), - [870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_task, 3, 0, 0), - [872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_task, 3, 0, 0), - [874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), - [876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), - [878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(268), - [881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), + [682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_attribute, 3), + [684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_attribute, 3), + [686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 8, .production_id = 14), + [688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 8, .production_id = 14), + [690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 8), + [692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 8), + [694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 7, .production_id = 9), + [696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 7, .production_id = 9), + [698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_dash, 2), + [700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_dash, 2), + [702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_star, 2), + [704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_star, 2), + [706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_plus, 2), + [708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_plus, 2), + [710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frontmatter, 6), + [712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_frontmatter, 6), + [714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 7, .production_id = 13), + [716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 7, .production_id = 13), + [718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 1), + [720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 1), + [722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_task, 2), + [724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_task, 2), + [726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_thematic_break, 1), + [728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_thematic_break, 1), + [730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_definition, 2), + [732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_definition, 2), + [734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 1), + [736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 1), + [738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_decimal_period, 2), + [740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_decimal_period, 2), + [742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 7), + [744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 7), + [746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_decimal_paren, 2), + [748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_decimal_paren, 2), + [750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 5), + [752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 5), + [754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_decimal_parens, 2), + [756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_decimal_parens, 2), + [758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frontmatter, 7), + [760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_frontmatter, 7), + [762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_alpha_period, 2), + [764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_alpha_period, 2), + [766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 2), + [768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 2), + [770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_alpha_paren, 2), + [772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_alpha_paren, 2), + [774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_alpha_parens, 2), + [776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_alpha_parens, 2), + [778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_footnote, 5), + [780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_footnote, 5), + [782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_alpha_period, 2), + [784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_alpha_period, 2), + [786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_or_two_newlines, 2), + [788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_or_two_newlines, 2), + [790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_alpha_paren, 2), + [792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_alpha_paren, 2), + [794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_alpha_parens, 2), + [796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_alpha_parens, 2), + [798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 6, .production_id = 9), + [800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 6, .production_id = 9), + [802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_roman_period, 2), + [804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_roman_period, 2), + [806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 6), + [808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 6), + [810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_roman_paren, 2), + [812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_roman_paren, 2), + [814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_roman_parens, 2), + [816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_roman_parens, 2), + [818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__paragraph, 2, .production_id = 3), + [820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph, 2, .production_id = 3), + [822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_roman_period, 2), + [824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_roman_period, 2), + [826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_roman_paren, 2), + [828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_roman_paren, 2), + [830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_roman_parens, 2), + [832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_roman_parens, 2), + [834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 8), + [836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 8), + [838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_caption, 3, .production_id = 7), + [840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_caption, 3, .production_id = 7), + [842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_with_heading, 2), + [844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_with_heading, 2), + [846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_attribute, 4, .production_id = 8), + [848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_attribute, 4, .production_id = 8), + [850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_quote, 3), + [852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_quote, 3), + [854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 3), + [856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 3), + [858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heading, 4), + [860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heading, 4), + [862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 3, .production_id = 5), + [864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 3, .production_id = 5), + [866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 1), + [868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 1), + [870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_task, 3), + [872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_task, 3), + [874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), + [876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), + [878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(268), + [881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), [887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), [891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), + [895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), [899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), @@ -27797,21 +27784,21 @@ static const TSParseActionEntry ts_parse_actions[] = { [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(316), + [959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(316), [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), SHIFT(410), + [966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(410), [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 2, 0, 0), SHIFT_REPEAT(388), - [978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 2, 0, 0), - [980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_caption_repeat1, 2, 0, 0), + [975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 2), SHIFT_REPEAT(388), + [978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 2), + [980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_caption_repeat1, 2), [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(334), + [990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(334), [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), @@ -27819,26 +27806,26 @@ static const TSParseActionEntry ts_parse_actions[] = { [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [1007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_quote_prefix, 1, 0, 0), - [1009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_quote_prefix, 1, 0, 0), + [1007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_quote_prefix, 1), + [1009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_quote_prefix, 1), [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), - [1019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), SHIFT(375), + [1019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(375), [1022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), [1024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), [1026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), [1028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), [1030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [1034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(343), - [1037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), - [1039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(849), - [1042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(468), - [1045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(916), - [1048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(514), - [1051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(341), + [1034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(343), + [1037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2), + [1039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2), SHIFT_REPEAT(849), + [1042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2), SHIFT_REPEAT(468), + [1045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2), SHIFT_REPEAT(916), + [1048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2), SHIFT_REPEAT(514), + [1051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(341), [1054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), [1056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), [1058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), @@ -27857,11 +27844,11 @@ static const TSParseActionEntry ts_parse_actions[] = { [1084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), [1086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [1090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(362), - [1093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), - [1095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__table_content, 1, 0, 0), SHIFT(946), + [1090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(362), + [1093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), + [1095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__table_content, 1), SHIFT(946), [1098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), - [1100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline, 1, 0, 0), + [1100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline, 1), [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), [1104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), [1106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), @@ -27873,25 +27860,25 @@ static const TSParseActionEntry ts_parse_actions[] = { [1118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), [1120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), [1122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), - [1124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline, 1, 0, 0), - [1126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__table_content, 1, 0, 0), SHIFT(968), + [1124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline, 1), + [1126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__table_content, 1), SHIFT(968), [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [1133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(380), - [1136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), + [1133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(380), + [1136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), [1138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), [1140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), [1142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), [1144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [1146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(385), + [1146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(385), [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [1159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 2, 0, 0), - [1161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 2, 0, 0), SHIFT_REPEAT(677), - [1164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 2, 0, 0), SHIFT_REPEAT(874), + [1159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 2), + [1161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 2), SHIFT_REPEAT(677), + [1164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 2), SHIFT_REPEAT(874), [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), @@ -27900,39 +27887,39 @@ static const TSParseActionEntry ts_parse_actions[] = { [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [1183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 2, 0, 0), - [1185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 2, 0, 0), SHIFT_REPEAT(39), - [1188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 2, 0, 0), SHIFT_REPEAT(831), - [1191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), - [1193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), SHIFT_REPEAT(46), - [1196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), SHIFT_REPEAT(882), + [1183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 2), + [1185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 2), SHIFT_REPEAT(39), + [1188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 2), SHIFT_REPEAT(831), + [1191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2), + [1193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2), SHIFT_REPEAT(46), + [1196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2), SHIFT_REPEAT(882), [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [1207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), - [1209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), SHIFT_REPEAT(45), - [1212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), SHIFT_REPEAT(711), - [1215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_line, 2, 0, 0), - [1217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_line, 2, 0, 0), - [1219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(465), + [1207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2), + [1209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2), SHIFT_REPEAT(45), + [1212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2), SHIFT_REPEAT(711), + [1215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_line, 2), + [1217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_line, 2), + [1219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(465), [1222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code, 1, 0, 0), + [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code, 1), [1226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), [1228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [1230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(411), + [1230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(411), [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [1237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 1, 0, 0), - [1239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_caption_repeat1, 1, 0, 0), + [1237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 1), + [1239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_caption_repeat1, 1), [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [1251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_repeat1, 2, 0, 0), SHIFT_REPEAT(1053), - [1254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_code_repeat1, 2, 0, 0), - [1256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_repeat1, 2, 0, 0), SHIFT_REPEAT(847), + [1251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_repeat1, 2), SHIFT_REPEAT(1053), + [1254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_code_repeat1, 2), + [1256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_repeat1, 2), SHIFT_REPEAT(847), [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), @@ -27957,72 +27944,72 @@ static const TSParseActionEntry ts_parse_actions[] = { [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [1307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_no_newline, 2, 0, 0), + [1307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_no_newline, 2), [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [1313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, 0, 4), + [1313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, .production_id = 4), [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [1321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 3, 0, 0), + [1321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 3), [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [1335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(52), - [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 2, 0, 0), - [1340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(867), + [1335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 2), SHIFT_REPEAT(52), + [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 2), + [1340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 2), SHIFT_REPEAT(867), [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [1349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 1, 0, 0), - [1351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_name, 1, 0, 0), - [1353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_no_newline, 3, 0, 7), + [1349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 1), + [1351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_name, 1), + [1353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_no_newline, 3, .production_id = 7), [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [1357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1, 0, 0), - [1359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value, 3, 0, 0), + [1357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1), + [1359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value, 3), [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [1367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 2, 0, 0), - [1369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(268), - [1372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_quote_content, 1, 0, 0), + [1367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 2), + [1369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 2), SHIFT_REPEAT(268), + [1372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_quote_content, 1), [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [1376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_quote_content, 2, 0, 0), + [1376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_quote_content, 2), [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_period_repeat1, 2, 0, 0), - [1384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_decimal_period_repeat1, 2, 0, 0), SHIFT_REPEAT(36), - [1387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_paren_repeat1, 2, 0, 0), - [1389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_decimal_paren_repeat1, 2, 0, 0), SHIFT_REPEAT(51), - [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_parens_repeat1, 2, 0, 0), - [1394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_decimal_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(34), - [1397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_period_repeat1, 2, 0, 0), - [1399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_period_repeat1, 2, 0, 0), SHIFT_REPEAT(42), - [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_paren_repeat1, 2, 0, 0), - [1404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_paren_repeat1, 2, 0, 0), SHIFT_REPEAT(29), - [1407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_parens_repeat1, 2, 0, 0), - [1409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(33), - [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_period_repeat1, 2, 0, 0), - [1414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_period_repeat1, 2, 0, 0), SHIFT_REPEAT(30), - [1417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_paren_repeat1, 2, 0, 0), - [1419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_paren_repeat1, 2, 0, 0), SHIFT_REPEAT(40), - [1422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_parens_repeat1, 2, 0, 0), - [1424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(32), - [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_period_repeat1, 2, 0, 0), - [1429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_period_repeat1, 2, 0, 0), SHIFT_REPEAT(44), - [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_paren_repeat1, 2, 0, 0), - [1434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_paren_repeat1, 2, 0, 0), SHIFT_REPEAT(37), - [1437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_parens_repeat1, 2, 0, 0), - [1439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(31), - [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_period_repeat1, 2, 0, 0), - [1444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_period_repeat1, 2, 0, 0), SHIFT_REPEAT(47), - [1447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_paren_repeat1, 2, 0, 0), - [1449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_paren_repeat1, 2, 0, 0), SHIFT_REPEAT(35), - [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_parens_repeat1, 2, 0, 0), - [1454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(41), + [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_period_repeat1, 2), + [1384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_decimal_period_repeat1, 2), SHIFT_REPEAT(36), + [1387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_paren_repeat1, 2), + [1389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_decimal_paren_repeat1, 2), SHIFT_REPEAT(51), + [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_parens_repeat1, 2), + [1394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_decimal_parens_repeat1, 2), SHIFT_REPEAT(34), + [1397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_period_repeat1, 2), + [1399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_period_repeat1, 2), SHIFT_REPEAT(42), + [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_paren_repeat1, 2), + [1404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_paren_repeat1, 2), SHIFT_REPEAT(29), + [1407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_parens_repeat1, 2), + [1409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_parens_repeat1, 2), SHIFT_REPEAT(33), + [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_period_repeat1, 2), + [1414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_period_repeat1, 2), SHIFT_REPEAT(30), + [1417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_paren_repeat1, 2), + [1419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_paren_repeat1, 2), SHIFT_REPEAT(40), + [1422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_parens_repeat1, 2), + [1424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_parens_repeat1, 2), SHIFT_REPEAT(32), + [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_period_repeat1, 2), + [1429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_period_repeat1, 2), SHIFT_REPEAT(44), + [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_paren_repeat1, 2), + [1434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_paren_repeat1, 2), SHIFT_REPEAT(37), + [1437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_parens_repeat1, 2), + [1439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_parens_repeat1, 2), SHIFT_REPEAT(31), + [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_period_repeat1, 2), + [1444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_period_repeat1, 2), SHIFT_REPEAT(47), + [1447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_paren_repeat1, 2), + [1449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_paren_repeat1, 2), SHIFT_REPEAT(35), + [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_parens_repeat1, 2), + [1454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_parens_repeat1, 2), SHIFT_REPEAT(41), [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), @@ -28035,7 +28022,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [1481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frontmatter_content, 1, 0, 0), + [1481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frontmatter_content, 1), [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), @@ -28053,10 +28040,10 @@ static const TSParseActionEntry ts_parse_actions[] = { [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [1517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__comment_no_newline_repeat1, 2, 0, 0), SHIFT_REPEAT(670), - [1520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_no_newline_repeat1, 2, 0, 0), - [1522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_frontmatter_content_repeat1, 2, 0, 0), SHIFT_REPEAT(921), - [1525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_frontmatter_content_repeat1, 2, 0, 0), + [1517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__comment_no_newline_repeat1, 2), SHIFT_REPEAT(670), + [1520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_no_newline_repeat1, 2), + [1522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_frontmatter_content_repeat1, 2), SHIFT_REPEAT(921), + [1525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_frontmatter_content_repeat1, 2), [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), @@ -28129,53 +28116,53 @@ static const TSParseActionEntry ts_parse_actions[] = { [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [1671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_definition_repeat1, 2, 0, 0), - [1673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(297), + [1671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_definition_repeat1, 2), + [1673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_definition_repeat1, 2), SHIFT_REPEAT(297), [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), [1678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [1682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dash, 3, 0, 0), + [1682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dash, 3), [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [1686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_item_content, 3, 0, 0), - [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__heading_content_repeat1, 2, 0, 0), - [1690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__heading_content_repeat1, 2, 0, 0), SHIFT_REPEAT(364), - [1693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(882), + [1686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_item_content, 3), + [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__heading_content_repeat1, 2), + [1690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__heading_content_repeat1, 2), SHIFT_REPEAT(364), + [1693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(882), [1696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [1700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(874), - [1703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_item_content, 2, 0, 0), + [1700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(874), + [1703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_item_content, 2), [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [1707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(754), - [1710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(867), - [1713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__paragraph_content_repeat1, 2, 0, 0), - [1715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__paragraph_content_repeat1, 2, 0, 0), SHIFT_REPEAT(318), + [1707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(754), + [1710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(867), + [1713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__paragraph_content_repeat1, 2), + [1715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__paragraph_content_repeat1, 2), SHIFT_REPEAT(318), [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [1722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_task, 3, 0, 0), - [1724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 3, 0, 0), - [1726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 3, 0, 0), + [1722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_task, 3), + [1724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 3), + [1726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 3), [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line, 2, 0, 0), - [1732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(847), - [1735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_task, 2, 0, 0), + [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line, 2), + [1732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(847), + [1735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_task, 2), [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [1743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_no_newline_repeat1, 1, 0, 0), - [1745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(831), + [1743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_no_newline_repeat1, 1), + [1745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(831), [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [1750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 3, 0, 0), + [1750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 3), [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [1754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heading_content, 2, 0, 0), + [1754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heading_content, 2), [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [1764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 2, 0, 0), - [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 2, 0, 0), - [1768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dash, 2, 0, 0), - [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heading_content, 1, 0, 0), - [1772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(711), + [1764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 2), + [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 2), + [1768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dash, 2), + [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heading_content, 1), + [1772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(711), [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), @@ -28183,15 +28170,15 @@ static const TSParseActionEntry ts_parse_actions[] = { [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [1789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_alpha_parens, 2, 0, 0), + [1789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_alpha_parens, 2), [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [1793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_alpha_parens, 2, 0, 0), + [1793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_alpha_parens, 2), [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [1799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_roman_parens, 2, 0, 0), + [1799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_roman_parens, 2), [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [1805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_roman_parens, 2, 0, 0), + [1805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_roman_parens, 2), [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), @@ -28199,16 +28186,16 @@ static const TSParseActionEntry ts_parse_actions[] = { [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [1821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_content, 2, 0, 0), + [1821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_content, 2), [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [1831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div_marker_begin, 1, 0, 0), + [1831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div_marker_begin, 1), [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [1839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_roman_paren, 2, 0, 0), + [1839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_roman_paren, 2), [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), @@ -28220,7 +28207,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [1863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_definition, 5, 0, 11), + [1863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_definition, 5, .production_id = 11), [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), @@ -28232,21 +28219,21 @@ static const TSParseActionEntry ts_parse_actions[] = { [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [1887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_roman_paren, 2, 0, 0), + [1887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_roman_paren, 2), [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_decimal_period, 2, 0, 0), - [1893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_alpha_period, 2, 0, 0), - [1895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_alpha_period, 2, 0, 0), - [1897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_roman_period, 2, 0, 0), - [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_roman_period, 2, 0, 0), + [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_decimal_period, 2), + [1893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_alpha_period, 2), + [1895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_alpha_period, 2), + [1897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_roman_period, 2), + [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_roman_period, 2), [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [1913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__paragraph_content_repeat1, 3, 0, 0), - [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_content, 4, 0, 0), + [1913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__paragraph_content_repeat1, 3), + [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_content, 4), [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), @@ -28254,24 +28241,24 @@ static const TSParseActionEntry ts_parse_actions[] = { [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_content, 3, 0, 0), + [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_content, 3), [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [1937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_decimal_paren, 2, 0, 0), - [1939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(365), - [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_alpha_paren, 2, 0, 0), - [1944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_alpha_paren, 2, 0, 0), - [1946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_separator_repeat1, 2, 0, 0), SHIFT_REPEAT(988), + [1937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_decimal_paren, 2), + [1939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_row_repeat1, 2), SHIFT_REPEAT(365), + [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_alpha_paren, 2), + [1944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_alpha_paren, 2), + [1946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_separator_repeat1, 2), SHIFT_REPEAT(988), [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [1953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_decimal_parens, 2, 0, 0), + [1953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_decimal_parens, 2), [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [1957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_definition, 4, 0, 0), + [1957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_definition, 4), [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [1963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unchecked, 3, 0, 0), + [1963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unchecked, 3), [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [1967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_checked, 3, 0, 0), + [1967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_checked, 3), [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), @@ -28286,16 +28273,16 @@ static const TSParseActionEntry ts_parse_actions[] = { [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [1997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block_info, 2, 0, 6), + [1997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block_info, 2, .production_id = 6), [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key, 1, 0, 0), - [2005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_separator_repeat1, 2, 0, 0), + [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key, 1), + [2005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_separator_repeat1, 2), [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_row_repeat1, 2, 0, 0), + [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_row_repeat1, 2), [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), @@ -28311,7 +28298,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [2047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_cell, 1, 0, 0), + [2047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_cell, 1), [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), @@ -28350,14 +28337,14 @@ static const TSParseActionEntry ts_parse_actions[] = { [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [2125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div_marker_begin, 3, 0, 0), + [2125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div_marker_begin, 3), [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [2139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_label, 1, 0, 0), + [2139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_label, 1), [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), @@ -28378,7 +28365,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [2181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_label, 1, 0, 0), + [2181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_label, 1), [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), @@ -29425,15 +29412,13 @@ bool tree_sitter_djot_external_scanner_scan(void *, TSLexer *, const bool *); unsigned tree_sitter_djot_external_scanner_serialize(void *, char *); void tree_sitter_djot_external_scanner_deserialize(void *, const char *, unsigned); -#ifdef TREE_SITTER_HIDE_SYMBOLS -#define TS_PUBLIC -#elif defined(_WIN32) +#ifdef _WIN32 #define TS_PUBLIC __declspec(dllexport) #else #define TS_PUBLIC __attribute__((visibility("default"))) #endif -TS_PUBLIC const TSLanguage *tree_sitter_djot(void) { +TS_PUBLIC const TSLanguage *tree_sitter_djot() { static const TSLanguage language = { .version = LANGUAGE_VERSION, .symbol_count = SYMBOL_COUNT, diff --git a/tree-sitter-djot/src/tree_sitter/array.h b/tree-sitter-djot/src/tree_sitter/array.h index 15a3b23..186ba67 100644 --- a/tree-sitter-djot/src/tree_sitter/array.h +++ b/tree-sitter-djot/src/tree_sitter/array.h @@ -66,12 +66,9 @@ extern "C" { /// Increase the array's size by `count` elements. /// New elements are zero-initialized. #define array_grow_by(self, count) \ - do { \ - if ((count) == 0) break; \ - _array__grow((Array *)(self), count, array_elem_size(self)); \ - memset((self)->contents + (self)->size, 0, (count) * array_elem_size(self)); \ - (self)->size += (count); \ - } while (0) + (_array__grow((Array *)(self), count, array_elem_size(self)), \ + memset((self)->contents + (self)->size, 0, (count) * array_elem_size(self)), \ + (self)->size += (count)) /// Append all elements from one array to the end of another. #define array_push_all(self, other) \ diff --git a/tree-sitter-djot/src/tree_sitter/parser.h b/tree-sitter-djot/src/tree_sitter/parser.h index 17f0e94..17b4fde 100644 --- a/tree-sitter-djot/src/tree_sitter/parser.h +++ b/tree-sitter-djot/src/tree_sitter/parser.h @@ -86,11 +86,6 @@ typedef union { } entry; } TSParseActionEntry; -typedef struct { - int32_t start; - int32_t end; -} TSCharacterRange; - struct TSLanguage { uint32_t version; uint32_t symbol_count; @@ -130,24 +125,6 @@ struct TSLanguage { const TSStateId *primary_state_ids; }; -static inline bool set_contains(TSCharacterRange *ranges, uint32_t len, int32_t lookahead) { - uint32_t index = 0; - uint32_t size = len - index; - while (size > 1) { - uint32_t half_size = size / 2; - uint32_t mid_index = index + half_size; - TSCharacterRange *range = &ranges[mid_index]; - if (lookahead >= range->start && lookahead <= range->end) { - return true; - } else if (lookahead > range->end) { - index = mid_index; - } - size -= half_size; - } - TSCharacterRange *range = &ranges[index]; - return (lookahead >= range->start && lookahead <= range->end); -} - /* * Lexer Macros */ @@ -177,17 +154,6 @@ static inline bool set_contains(TSCharacterRange *ranges, uint32_t len, int32_t goto next_state; \ } -#define ADVANCE_MAP(...) \ - { \ - static const uint16_t map[] = { __VA_ARGS__ }; \ - for (uint32_t i = 0; i < sizeof(map) / sizeof(map[0]); i += 2) { \ - if (map[i] == lookahead) { \ - state = map[i + 1]; \ - goto next_state; \ - } \ - } \ - } - #define SKIP(state_value) \ { \ skip = true; \ @@ -237,15 +203,14 @@ static inline bool set_contains(TSCharacterRange *ranges, uint32_t len, int32_t } \ }} -#define REDUCE(symbol_name, children, precedence, prod_id) \ - {{ \ - .reduce = { \ - .type = TSParseActionTypeReduce, \ - .symbol = symbol_name, \ - .child_count = children, \ - .dynamic_precedence = precedence, \ - .production_id = prod_id \ - }, \ +#define REDUCE(symbol_val, child_count_val, ...) \ + {{ \ + .reduce = { \ + .type = TSParseActionTypeReduce, \ + .symbol = symbol_val, \ + .child_count = child_count_val, \ + __VA_ARGS__ \ + }, \ }} #define RECOVER() \ From e4122c27195fc9bffe44c4e1208a7814af9d3369 Mon Sep 17 00:00:00 2001 From: Jonas Hietala Date: Sun, 8 Sep 2024 20:36:49 +0200 Subject: [PATCH 23/46] Fallback for [^foo --- tree-sitter-djot-inline/grammar.js | 18 +- .../test/corpus/syntax.txt | 63 + tree-sitter-djot/grammar.js | 29 +- tree-sitter-djot/src/grammar.json | 86 +- tree-sitter-djot/src/node-types.json | 26 +- tree-sitter-djot/src/parser.c | 36087 ++++++++-------- tree-sitter-djot/src/scanner.c | 30 +- tree-sitter-djot/test/corpus/syntax.txt | 63 +- 8 files changed, 19234 insertions(+), 17168 deletions(-) diff --git a/tree-sitter-djot-inline/grammar.js b/tree-sitter-djot-inline/grammar.js index a8aed52..c09133f 100644 --- a/tree-sitter-djot-inline/grammar.js +++ b/tree-sitter-djot-inline/grammar.js @@ -186,7 +186,7 @@ module.exports = grammar({ footnote_reference: ($) => seq( $.footnote_marker_begin, - $._square_bracket_span_begin, + $._square_bracket_span_mark_begin, $.reference_label, alias($._square_bracket_span_end, $.footnote_marker_end), ), @@ -209,7 +209,7 @@ module.exports = grammar({ image_description: ($) => seq( $._image_description_begin, - $._square_bracket_span_begin, + $._square_bracket_span_mark_begin, optional($._inline), alias($._square_bracket_span_end, "]"), ), @@ -224,7 +224,7 @@ module.exports = grammar({ link_text: ($) => seq( $._bracketed_text_begin, - $._square_bracket_span_begin, + $._square_bracket_span_mark_begin, $._inline, // Alias to "]" to allow us to highlight it in Neovim. // Maybe some bug, or some undocumented behavior? @@ -234,7 +234,7 @@ module.exports = grammar({ span: ($) => seq( $._bracketed_text_begin, - $._square_bracket_span_begin, + $._square_bracket_span_mark_begin, alias($._inline, $.content), // Prefer span over regular text + inline attribute. prec.dynamic( @@ -270,7 +270,7 @@ module.exports = grammar({ _bracketed_text: ($) => seq( $._bracketed_text_begin, - $._square_bracket_span_begin, + $._square_bracket_span_mark_begin, $._inline, $._square_bracket_span_end, ), @@ -371,9 +371,9 @@ module.exports = grammar({ seq("{-", choice($._delete_mark_begin, $._in_fallback)), // Bracketed spans - seq("[^", choice($._square_bracket_span_begin, $._in_fallback)), - seq("![", choice($._square_bracket_span_begin, $._in_fallback)), - seq("[", choice($._square_bracket_span_begin, $._in_fallback)), + seq("[^", choice($._square_bracket_span_mark_begin, $._in_fallback)), + seq("![", choice($._square_bracket_span_mark_begin, $._in_fallback)), + seq("[", choice($._square_bracket_span_mark_begin, $._in_fallback)), seq("(", choice($._parens_span_mark_begin, $._in_fallback)), // Autolink @@ -437,7 +437,7 @@ module.exports = grammar({ $._parens_span_end, $._curly_bracket_span_mark_begin, $._curly_bracket_span_end, - $._square_bracket_span_begin, + $._square_bracket_span_mark_begin, $._square_bracket_span_end, // A signaling token that's used to signal that a fallback token should be scanned, diff --git a/tree-sitter-djot-inline/test/corpus/syntax.txt b/tree-sitter-djot-inline/test/corpus/syntax.txt index c5e954a..391f4cd 100644 --- a/tree-sitter-djot-inline/test/corpus/syntax.txt +++ b/tree-sitter-djot-inline/test/corpus/syntax.txt @@ -1486,3 +1486,66 @@ $1 $a $$$$ (inline) +=============================================================================== +Emphasis: no space next +=============================================================================== +_ x_ + +_x _ + +------------------------------------------------------------------------------- + +(inline) + +=============================================================================== +Strong: no space next +=============================================================================== +* x* + +*x * + +------------------------------------------------------------------------------- + +(inline) + +=============================================================================== +Inline: broken things +=============================================================================== +1 * 2 + +2 _ 1 + +~ x + +{*x + +{=x + +{+x + +{-x + +^x + +:x + +[x + +^ + +| + +: + +- + +) + +[^f + +[x]( + +------------------------------------------------------------------------------- + +(inline) + diff --git a/tree-sitter-djot/grammar.js b/tree-sitter-djot/grammar.js index b0e4786..f9d04f5 100644 --- a/tree-sitter-djot/grammar.js +++ b/tree-sitter-djot/grammar.js @@ -7,6 +7,8 @@ module.exports = grammar({ [$._table_content], [$.link_reference_definition, $._symbol_fallback], [$.table_row, $._symbol_fallback], + [$.block_attribute, $._symbol_fallback], + [$.footnote_marker_begin, $._symbol_fallback], ], rules: { @@ -336,12 +338,14 @@ module.exports = grammar({ footnote: ($) => seq( - alias($._footnote_begin, $.footnote_marker_begin), + $.footnote_marker_begin, + $._footnote_mark_begin, $.reference_label, alias("]:", $.footnote_marker_end), $.footnote_content, $._footnote_end, ), + footnote_marker_begin: (_) => "[^", footnote_content: ($) => repeat1($._block_with_heading), div: ($) => @@ -490,9 +494,24 @@ module.exports = grammar({ _inline: ($) => prec.left(repeat1(choice(/[^\n]/, $._symbol_fallback))), _inline_line: ($) => seq($._inline, $._eof_or_newline), - _symbol_fallback: ($) => prec.dynamic(-1000, choice("[", "{", "{-", "|")), + _symbol_fallback: ($) => + prec.dynamic( + -1000, + choice( + "[", + "{", + "{-", + "|", + ".", + "#", + "%", + // To capture dangling identifiers after `{` + token(seq("#", token.immediate(/[^\s\}]+/))), + seq("[^", choice($._footnote_mark_begin, $._in_fallback)), + ), + ), - backslash_escape: (_) => /\\[^\\\r\n]/, + backslash_escape: (_) => /\\[^\r\n]/, reference_label: ($) => $._id, _id: (_) => /[\w_-]+/, @@ -596,12 +615,14 @@ module.exports = grammar({ $._thematic_break_dash, $._thematic_break_star, // Footnotes have significant whitespace. - $._footnote_begin, + $._footnote_mark_begin, $._footnote_end, // Table captions have significant whitespace. $._table_caption_begin, $._table_caption_end, + $._in_fallback, + // Never valid and is only used to signal an internal scanner error. $._error, ], diff --git a/tree-sitter-djot/src/grammar.json b/tree-sitter-djot/src/grammar.json index 3021c36..ae6fb9c 100644 --- a/tree-sitter-djot/src/grammar.json +++ b/tree-sitter-djot/src/grammar.json @@ -1500,13 +1500,12 @@ "type": "SEQ", "members": [ { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_footnote_begin" - }, - "named": true, - "value": "footnote_marker_begin" + "type": "SYMBOL", + "name": "footnote_marker_begin" + }, + { + "type": "SYMBOL", + "name": "_footnote_mark_begin" }, { "type": "SYMBOL", @@ -1531,6 +1530,10 @@ } ] }, + "footnote_marker_begin": { + "type": "STRING", + "value": "[^" + }, "footnote_content": { "type": "REPEAT1", "content": { @@ -2311,13 +2314,66 @@ { "type": "STRING", "value": "|" + }, + { + "type": "STRING", + "value": "." + }, + { + "type": "STRING", + "value": "#" + }, + { + "type": "STRING", + "value": "%" + }, + { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "#" + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PATTERN", + "value": "[^\\s\\}]+" + } + } + ] + } + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "[^" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_footnote_mark_begin" + }, + { + "type": "SYMBOL", + "name": "_in_fallback" + } + ] + } + ] } ] } }, "backslash_escape": { "type": "PATTERN", - "value": "\\\\[^\\\\\\r\\n]" + "value": "\\\\[^\\r\\n]" }, "reference_label": { "type": "SYMBOL", @@ -2379,6 +2435,14 @@ [ "table_row", "_symbol_fallback" + ], + [ + "block_attribute", + "_symbol_fallback" + ], + [ + "footnote_marker_begin", + "_symbol_fallback" ] ], "precedences": [], @@ -2541,7 +2605,7 @@ }, { "type": "SYMBOL", - "name": "_footnote_begin" + "name": "_footnote_mark_begin" }, { "type": "SYMBOL", @@ -2555,6 +2619,10 @@ "type": "SYMBOL", "name": "_table_caption_end" }, + { + "type": "SYMBOL", + "name": "_in_fallback" + }, { "type": "SYMBOL", "name": "_error" diff --git a/tree-sitter-djot/src/node-types.json b/tree-sitter-djot/src/node-types.json index c22c30a..acd46b2 100644 --- a/tree-sitter-djot/src/node-types.json +++ b/tree-sitter-djot/src/node-types.json @@ -457,6 +457,11 @@ ] } }, + { + "type": "footnote_marker_begin", + "named": true, + "fields": {} + }, { "type": "frontmatter", "named": true, @@ -504,6 +509,11 @@ ] } }, + { + "type": "identifier", + "named": true, + "fields": {} + }, { "type": "key", "named": true, @@ -1050,6 +1060,10 @@ "type": "\"", "named": false }, + { + "type": "#", + "named": false + }, { "type": "%", "named": false @@ -1074,6 +1088,10 @@ "type": "[", "named": false }, + { + "type": "[^", + "named": false + }, { "type": "]", "named": false @@ -1098,10 +1116,6 @@ "type": "div_marker_end", "named": true }, - { - "type": "footnote_marker_begin", - "named": true - }, { "type": "footnote_marker_end", "named": true @@ -1110,10 +1124,6 @@ "type": "frontmatter_marker", "named": true }, - { - "type": "identifier", - "named": true - }, { "type": "language", "named": true diff --git a/tree-sitter-djot/src/parser.c b/tree-sitter-djot/src/parser.c index 51ad15a..b1280b2 100644 --- a/tree-sitter-djot/src/parser.c +++ b/tree-sitter-djot/src/parser.c @@ -5,12 +5,12 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 1081 +#define STATE_COUNT 1096 #define LARGE_STATE_COUNT 64 -#define SYMBOL_COUNT 199 +#define SYMBOL_COUNT 204 #define ALIAS_COUNT 9 -#define TOKEN_COUNT 74 -#define EXTERNAL_TOKEN_COUNT 44 +#define TOKEN_COUNT 77 +#define EXTERNAL_TOKEN_COUNT 45 #define FIELD_COUNT 0 #define MAX_ALIAS_SEQUENCE_LENGTH 8 #define PRODUCTION_ID_COUNT 15 @@ -25,204 +25,209 @@ enum ts_symbol_identifiers { sym_table_cell_alignment = 7, anon_sym_NULL = 8, anon_sym_RBRACK_COLON = 9, - anon_sym_EQ = 10, - sym_language = 11, - aux_sym__line_token1 = 12, - anon_sym_COLON = 13, - sym_link_destination = 14, - anon_sym_LBRACE = 15, - anon_sym_RBRACE = 16, - anon_sym_DOT = 17, - sym_identifier = 18, - anon_sym_DQUOTE = 19, - aux_sym_value_token1 = 20, - aux_sym_value_token2 = 21, - sym__whitespace = 22, - sym__whitespace1 = 23, - aux_sym__inline_token1 = 24, - anon_sym_LBRACE_DASH = 25, - sym_backslash_escape = 26, - sym__id = 27, + anon_sym_LBRACK_CARET = 10, + anon_sym_EQ = 11, + sym_language = 12, + aux_sym__line_token1 = 13, + anon_sym_COLON = 14, + sym_link_destination = 15, + anon_sym_LBRACE = 16, + anon_sym_RBRACE = 17, + anon_sym_DOT = 18, + aux_sym_identifier_token1 = 19, + anon_sym_DQUOTE = 20, + aux_sym_value_token1 = 21, + aux_sym_value_token2 = 22, + sym__whitespace = 23, + sym__whitespace1 = 24, + aux_sym__inline_token1 = 25, + anon_sym_LBRACE_DASH = 26, + anon_sym_POUND = 27, anon_sym_PERCENT = 28, - aux_sym__comment_no_newline_token1 = 29, - sym__ignored = 30, - sym__block_close = 31, - sym__eof_or_newline = 32, - sym__newline = 33, - sym__newline_inline = 34, - sym_frontmatter_marker = 35, - sym__heading_begin = 36, - sym__heading_continuation = 37, - sym__div_begin = 38, - sym__div_end = 39, - sym__code_block_begin = 40, - sym__code_block_end = 41, - sym_list_marker_dash = 42, - sym_list_marker_star = 43, - sym_list_marker_plus = 44, - sym__list_marker_task_begin = 45, - sym_list_marker_definition = 46, - sym_list_marker_decimal_period = 47, - sym_list_marker_lower_alpha_period = 48, - sym_list_marker_upper_alpha_period = 49, - sym_list_marker_lower_roman_period = 50, - sym_list_marker_upper_roman_period = 51, - sym_list_marker_decimal_paren = 52, - sym_list_marker_lower_alpha_paren = 53, - sym_list_marker_upper_alpha_paren = 54, - sym_list_marker_lower_roman_paren = 55, - sym_list_marker_upper_roman_paren = 56, - sym_list_marker_decimal_parens = 57, - sym_list_marker_lower_alpha_parens = 58, - sym_list_marker_upper_alpha_parens = 59, - sym_list_marker_lower_roman_parens = 60, - sym_list_marker_upper_roman_parens = 61, - sym__list_item_continuation = 62, - sym__list_item_end = 63, - sym__close_paragraph = 64, - sym__block_quote_begin = 65, - sym__block_quote_continuation = 66, - sym__thematic_break_dash = 67, - sym__thematic_break_star = 68, - sym__footnote_begin = 69, - sym__footnote_end = 70, - sym__table_caption_begin = 71, - sym__table_caption_end = 72, - sym__error = 73, - sym_document = 74, - sym_frontmatter = 75, - sym_frontmatter_content = 76, - sym__block_with_section = 77, - sym__block_with_heading = 78, - sym__block_element = 79, - sym_section = 80, - sym_heading = 81, - sym__heading_content = 82, - sym_list = 83, - sym__list_dash = 84, - sym__list_item_dash = 85, - sym__list_plus = 86, - sym__list_item_plus = 87, - sym__list_star = 88, - sym__list_item_star = 89, - sym__list_task = 90, - sym__list_item_task = 91, - sym_list_marker_task = 92, - sym_checked = 93, - sym_unchecked = 94, - sym__list_definition = 95, - sym__list_item_definition = 96, - sym__list_decimal_period = 97, - sym__list_item_decimal_period = 98, - sym__list_decimal_paren = 99, - sym__list_item_decimal_paren = 100, - sym__list_decimal_parens = 101, - sym__list_item_decimal_parens = 102, - sym__list_lower_alpha_period = 103, - sym__list_item_lower_alpha_period = 104, - sym__list_lower_alpha_paren = 105, - sym__list_item_lower_alpha_paren = 106, - sym__list_lower_alpha_parens = 107, - sym__list_item_lower_alpha_parens = 108, - sym__list_upper_alpha_period = 109, - sym__list_item_upper_alpha_period = 110, - sym__list_upper_alpha_paren = 111, - sym__list_item_upper_alpha_paren = 112, - sym__list_upper_alpha_parens = 113, - sym__list_item_upper_alpha_parens = 114, - sym__list_lower_roman_period = 115, - sym__list_item_lower_roman_period = 116, - sym__list_lower_roman_paren = 117, - sym__list_item_lower_roman_paren = 118, - sym__list_lower_roman_parens = 119, - sym__list_item_lower_roman_parens = 120, - sym__list_upper_roman_period = 121, - sym__list_item_upper_roman_period = 122, - sym__list_upper_roman_paren = 123, - sym__list_item_upper_roman_paren = 124, - sym__list_upper_roman_parens = 125, - sym__list_item_upper_roman_parens = 126, - sym_list_item_content = 127, - sym_table = 128, - sym__table_content = 129, - sym_table_separator = 130, - sym_table_row = 131, - sym_table_cell = 132, - sym_table_caption = 133, - sym_footnote = 134, - sym_footnote_content = 135, - sym_div = 136, - sym_div_marker_begin = 137, - sym_class_name = 138, - sym_code_block = 139, - sym_raw_block = 140, - sym_raw_block_info = 141, - sym_code = 142, - sym__line = 143, - sym_thematic_break = 144, - sym_block_quote = 145, - sym__block_quote_content = 146, - sym__block_quote_prefix = 147, - sym_link_reference_definition = 148, - sym_link_label = 149, - sym_block_attribute = 150, - sym_class = 151, - sym_key_value = 152, - sym_key = 153, - sym_value = 154, - sym__paragraph = 155, - sym__paragraph_content = 156, - sym__one_or_two_newlines = 157, - sym__inline = 158, - sym__inline_line = 159, - sym__symbol_fallback = 160, - sym_reference_label = 161, - sym__comment_no_newline = 162, - aux_sym_document_repeat1 = 163, - aux_sym_frontmatter_content_repeat1 = 164, - aux_sym__heading_content_repeat1 = 165, - aux_sym__list_dash_repeat1 = 166, - aux_sym__list_plus_repeat1 = 167, - aux_sym__list_star_repeat1 = 168, - aux_sym__list_task_repeat1 = 169, - aux_sym__list_definition_repeat1 = 170, - aux_sym__list_item_definition_repeat1 = 171, - aux_sym__list_decimal_period_repeat1 = 172, - aux_sym__list_decimal_paren_repeat1 = 173, - aux_sym__list_decimal_parens_repeat1 = 174, - aux_sym__list_lower_alpha_period_repeat1 = 175, - aux_sym__list_lower_alpha_paren_repeat1 = 176, - aux_sym__list_lower_alpha_parens_repeat1 = 177, - aux_sym__list_upper_alpha_period_repeat1 = 178, - aux_sym__list_upper_alpha_paren_repeat1 = 179, - aux_sym__list_upper_alpha_parens_repeat1 = 180, - aux_sym__list_lower_roman_period_repeat1 = 181, - aux_sym__list_lower_roman_paren_repeat1 = 182, - aux_sym__list_lower_roman_parens_repeat1 = 183, - aux_sym__list_upper_roman_period_repeat1 = 184, - aux_sym__list_upper_roman_paren_repeat1 = 185, - aux_sym__list_upper_roman_parens_repeat1 = 186, - aux_sym_table_repeat1 = 187, - aux_sym_table_separator_repeat1 = 188, - aux_sym_table_row_repeat1 = 189, - aux_sym_table_caption_repeat1 = 190, - aux_sym_footnote_content_repeat1 = 191, - aux_sym_code_repeat1 = 192, - aux_sym__block_quote_content_repeat1 = 193, - aux_sym__block_quote_prefix_repeat1 = 194, - aux_sym_block_attribute_repeat1 = 195, - aux_sym__paragraph_content_repeat1 = 196, - aux_sym__inline_repeat1 = 197, - aux_sym__comment_no_newline_repeat1 = 198, - alias_sym_args = 199, - anon_alias_sym_class = 200, - alias_sym_definition = 201, - alias_sym_language_marker = 202, - alias_sym_paragraph = 203, - alias_sym_raw_block_marker_begin = 204, - alias_sym_raw_block_marker_end = 205, - alias_sym_section_content = 206, - alias_sym_table_header = 207, + sym_backslash_escape = 29, + sym__id = 30, + aux_sym__comment_no_newline_token1 = 31, + sym__ignored = 32, + sym__block_close = 33, + sym__eof_or_newline = 34, + sym__newline = 35, + sym__newline_inline = 36, + sym_frontmatter_marker = 37, + sym__heading_begin = 38, + sym__heading_continuation = 39, + sym__div_begin = 40, + sym__div_end = 41, + sym__code_block_begin = 42, + sym__code_block_end = 43, + sym_list_marker_dash = 44, + sym_list_marker_star = 45, + sym_list_marker_plus = 46, + sym__list_marker_task_begin = 47, + sym_list_marker_definition = 48, + sym_list_marker_decimal_period = 49, + sym_list_marker_lower_alpha_period = 50, + sym_list_marker_upper_alpha_period = 51, + sym_list_marker_lower_roman_period = 52, + sym_list_marker_upper_roman_period = 53, + sym_list_marker_decimal_paren = 54, + sym_list_marker_lower_alpha_paren = 55, + sym_list_marker_upper_alpha_paren = 56, + sym_list_marker_lower_roman_paren = 57, + sym_list_marker_upper_roman_paren = 58, + sym_list_marker_decimal_parens = 59, + sym_list_marker_lower_alpha_parens = 60, + sym_list_marker_upper_alpha_parens = 61, + sym_list_marker_lower_roman_parens = 62, + sym_list_marker_upper_roman_parens = 63, + sym__list_item_continuation = 64, + sym__list_item_end = 65, + sym__close_paragraph = 66, + sym__block_quote_begin = 67, + sym__block_quote_continuation = 68, + sym__thematic_break_dash = 69, + sym__thematic_break_star = 70, + sym__footnote_mark_begin = 71, + sym__footnote_end = 72, + sym__table_caption_begin = 73, + sym__table_caption_end = 74, + sym__in_fallback = 75, + sym__error = 76, + sym_document = 77, + sym_frontmatter = 78, + sym_frontmatter_content = 79, + sym__block_with_section = 80, + sym__block_with_heading = 81, + sym__block_element = 82, + sym_section = 83, + sym_heading = 84, + sym__heading_content = 85, + sym_list = 86, + sym__list_dash = 87, + sym__list_item_dash = 88, + sym__list_plus = 89, + sym__list_item_plus = 90, + sym__list_star = 91, + sym__list_item_star = 92, + sym__list_task = 93, + sym__list_item_task = 94, + sym_list_marker_task = 95, + sym_checked = 96, + sym_unchecked = 97, + sym__list_definition = 98, + sym__list_item_definition = 99, + sym__list_decimal_period = 100, + sym__list_item_decimal_period = 101, + sym__list_decimal_paren = 102, + sym__list_item_decimal_paren = 103, + sym__list_decimal_parens = 104, + sym__list_item_decimal_parens = 105, + sym__list_lower_alpha_period = 106, + sym__list_item_lower_alpha_period = 107, + sym__list_lower_alpha_paren = 108, + sym__list_item_lower_alpha_paren = 109, + sym__list_lower_alpha_parens = 110, + sym__list_item_lower_alpha_parens = 111, + sym__list_upper_alpha_period = 112, + sym__list_item_upper_alpha_period = 113, + sym__list_upper_alpha_paren = 114, + sym__list_item_upper_alpha_paren = 115, + sym__list_upper_alpha_parens = 116, + sym__list_item_upper_alpha_parens = 117, + sym__list_lower_roman_period = 118, + sym__list_item_lower_roman_period = 119, + sym__list_lower_roman_paren = 120, + sym__list_item_lower_roman_paren = 121, + sym__list_lower_roman_parens = 122, + sym__list_item_lower_roman_parens = 123, + sym__list_upper_roman_period = 124, + sym__list_item_upper_roman_period = 125, + sym__list_upper_roman_paren = 126, + sym__list_item_upper_roman_paren = 127, + sym__list_upper_roman_parens = 128, + sym__list_item_upper_roman_parens = 129, + sym_list_item_content = 130, + sym_table = 131, + sym__table_content = 132, + sym_table_separator = 133, + sym_table_row = 134, + sym_table_cell = 135, + sym_table_caption = 136, + sym_footnote = 137, + sym_footnote_marker_begin = 138, + sym_footnote_content = 139, + sym_div = 140, + sym_div_marker_begin = 141, + sym_class_name = 142, + sym_code_block = 143, + sym_raw_block = 144, + sym_raw_block_info = 145, + sym_code = 146, + sym__line = 147, + sym_thematic_break = 148, + sym_block_quote = 149, + sym__block_quote_content = 150, + sym__block_quote_prefix = 151, + sym_link_reference_definition = 152, + sym_link_label = 153, + sym_block_attribute = 154, + sym_class = 155, + sym_identifier = 156, + sym_key_value = 157, + sym_key = 158, + sym_value = 159, + sym__paragraph = 160, + sym__paragraph_content = 161, + sym__one_or_two_newlines = 162, + sym__inline = 163, + sym__inline_line = 164, + sym__symbol_fallback = 165, + sym_reference_label = 166, + sym__comment_no_newline = 167, + aux_sym_document_repeat1 = 168, + aux_sym_frontmatter_content_repeat1 = 169, + aux_sym__heading_content_repeat1 = 170, + aux_sym__list_dash_repeat1 = 171, + aux_sym__list_plus_repeat1 = 172, + aux_sym__list_star_repeat1 = 173, + aux_sym__list_task_repeat1 = 174, + aux_sym__list_definition_repeat1 = 175, + aux_sym__list_item_definition_repeat1 = 176, + aux_sym__list_decimal_period_repeat1 = 177, + aux_sym__list_decimal_paren_repeat1 = 178, + aux_sym__list_decimal_parens_repeat1 = 179, + aux_sym__list_lower_alpha_period_repeat1 = 180, + aux_sym__list_lower_alpha_paren_repeat1 = 181, + aux_sym__list_lower_alpha_parens_repeat1 = 182, + aux_sym__list_upper_alpha_period_repeat1 = 183, + aux_sym__list_upper_alpha_paren_repeat1 = 184, + aux_sym__list_upper_alpha_parens_repeat1 = 185, + aux_sym__list_lower_roman_period_repeat1 = 186, + aux_sym__list_lower_roman_paren_repeat1 = 187, + aux_sym__list_lower_roman_parens_repeat1 = 188, + aux_sym__list_upper_roman_period_repeat1 = 189, + aux_sym__list_upper_roman_paren_repeat1 = 190, + aux_sym__list_upper_roman_parens_repeat1 = 191, + aux_sym_table_repeat1 = 192, + aux_sym_table_separator_repeat1 = 193, + aux_sym_table_row_repeat1 = 194, + aux_sym_table_caption_repeat1 = 195, + aux_sym_footnote_content_repeat1 = 196, + aux_sym_code_repeat1 = 197, + aux_sym__block_quote_content_repeat1 = 198, + aux_sym__block_quote_prefix_repeat1 = 199, + aux_sym_block_attribute_repeat1 = 200, + aux_sym__paragraph_content_repeat1 = 201, + aux_sym__inline_repeat1 = 202, + aux_sym__comment_no_newline_repeat1 = 203, + alias_sym_args = 204, + anon_alias_sym_class = 205, + alias_sym_definition = 206, + alias_sym_language_marker = 207, + alias_sym_paragraph = 208, + alias_sym_raw_block_marker_begin = 209, + alias_sym_raw_block_marker_end = 210, + alias_sym_section_content = 211, + alias_sym_table_header = 212, }; static const char * const ts_symbol_names[] = { @@ -236,6 +241,7 @@ static const char * const ts_symbol_names[] = { [sym_table_cell_alignment] = "table_cell_alignment", [anon_sym_NULL] = "\0", [anon_sym_RBRACK_COLON] = "footnote_marker_end", + [anon_sym_LBRACK_CARET] = "[^", [anon_sym_EQ] = "=", [sym_language] = "language", [aux_sym__line_token1] = "_line_token1", @@ -244,7 +250,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_LBRACE] = "{", [anon_sym_RBRACE] = "}", [anon_sym_DOT] = ".", - [sym_identifier] = "identifier", + [aux_sym_identifier_token1] = "identifier_token1", [anon_sym_DQUOTE] = "\"", [aux_sym_value_token1] = "value_token1", [aux_sym_value_token2] = "value_token2", @@ -252,9 +258,10 @@ static const char * const ts_symbol_names[] = { [sym__whitespace1] = "_whitespace1", [aux_sym__inline_token1] = "_inline_token1", [anon_sym_LBRACE_DASH] = "{-", + [anon_sym_POUND] = "#", + [anon_sym_PERCENT] = "%", [sym_backslash_escape] = "backslash_escape", [sym__id] = "_id", - [anon_sym_PERCENT] = "%", [aux_sym__comment_no_newline_token1] = "_comment_no_newline_token1", [sym__ignored] = "_ignored", [sym__block_close] = "_block_close", @@ -295,10 +302,11 @@ static const char * const ts_symbol_names[] = { [sym__block_quote_continuation] = "_block_quote_continuation", [sym__thematic_break_dash] = "_thematic_break_dash", [sym__thematic_break_star] = "_thematic_break_star", - [sym__footnote_begin] = "footnote_marker_begin", + [sym__footnote_mark_begin] = "_footnote_mark_begin", [sym__footnote_end] = "_footnote_end", [sym__table_caption_begin] = "marker", [sym__table_caption_end] = "_table_caption_end", + [sym__in_fallback] = "_in_fallback", [sym__error] = "_error", [sym_document] = "document", [sym_frontmatter] = "frontmatter", @@ -361,6 +369,7 @@ static const char * const ts_symbol_names[] = { [sym_table_cell] = "table_cell", [sym_table_caption] = "table_caption", [sym_footnote] = "footnote", + [sym_footnote_marker_begin] = "footnote_marker_begin", [sym_footnote_content] = "footnote_content", [sym_div] = "div", [sym_div_marker_begin] = "div_marker_begin", @@ -378,6 +387,7 @@ static const char * const ts_symbol_names[] = { [sym_link_label] = "link_label", [sym_block_attribute] = "block_attribute", [sym_class] = "class", + [sym_identifier] = "identifier", [sym_key_value] = "key_value", [sym_key] = "key", [sym_value] = "value", @@ -447,6 +457,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_table_cell_alignment] = sym_table_cell_alignment, [anon_sym_NULL] = anon_sym_NULL, [anon_sym_RBRACK_COLON] = anon_sym_RBRACK_COLON, + [anon_sym_LBRACK_CARET] = anon_sym_LBRACK_CARET, [anon_sym_EQ] = anon_sym_EQ, [sym_language] = sym_language, [aux_sym__line_token1] = aux_sym__line_token1, @@ -455,7 +466,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_LBRACE] = anon_sym_LBRACE, [anon_sym_RBRACE] = anon_sym_RBRACE, [anon_sym_DOT] = anon_sym_DOT, - [sym_identifier] = sym_identifier, + [aux_sym_identifier_token1] = aux_sym_identifier_token1, [anon_sym_DQUOTE] = anon_sym_DQUOTE, [aux_sym_value_token1] = aux_sym_value_token1, [aux_sym_value_token2] = aux_sym_value_token2, @@ -463,9 +474,10 @@ static const TSSymbol ts_symbol_map[] = { [sym__whitespace1] = sym__whitespace1, [aux_sym__inline_token1] = aux_sym__inline_token1, [anon_sym_LBRACE_DASH] = anon_sym_LBRACE_DASH, + [anon_sym_POUND] = anon_sym_POUND, + [anon_sym_PERCENT] = anon_sym_PERCENT, [sym_backslash_escape] = sym_backslash_escape, [sym__id] = sym__id, - [anon_sym_PERCENT] = anon_sym_PERCENT, [aux_sym__comment_no_newline_token1] = aux_sym__comment_no_newline_token1, [sym__ignored] = sym__ignored, [sym__block_close] = sym__block_close, @@ -506,10 +518,11 @@ static const TSSymbol ts_symbol_map[] = { [sym__block_quote_continuation] = sym__block_quote_continuation, [sym__thematic_break_dash] = sym__thematic_break_dash, [sym__thematic_break_star] = sym__thematic_break_star, - [sym__footnote_begin] = sym__footnote_begin, + [sym__footnote_mark_begin] = sym__footnote_mark_begin, [sym__footnote_end] = sym__footnote_end, [sym__table_caption_begin] = sym__heading_begin, [sym__table_caption_end] = sym__table_caption_end, + [sym__in_fallback] = sym__in_fallback, [sym__error] = sym__error, [sym_document] = sym_document, [sym_frontmatter] = sym_frontmatter, @@ -572,6 +585,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_table_cell] = sym_table_cell, [sym_table_caption] = sym_table_caption, [sym_footnote] = sym_footnote, + [sym_footnote_marker_begin] = sym_footnote_marker_begin, [sym_footnote_content] = sym_footnote_content, [sym_div] = sym_div, [sym_div_marker_begin] = sym_div_marker_begin, @@ -589,6 +603,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_link_label] = sym_link_label, [sym_block_attribute] = sym_block_attribute, [sym_class] = sym_class, + [sym_identifier] = sym_identifier, [sym_key_value] = sym_key_value, [sym_key] = sym_key, [sym_value] = sym_value, @@ -688,6 +703,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [anon_sym_LBRACK_CARET] = { + .visible = true, + .named = false, + }, [anon_sym_EQ] = { .visible = true, .named = false, @@ -720,9 +739,9 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [sym_identifier] = { - .visible = true, - .named = true, + [aux_sym_identifier_token1] = { + .visible = false, + .named = false, }, [anon_sym_DQUOTE] = { .visible = true, @@ -752,6 +771,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_POUND] = { + .visible = true, + .named = false, + }, + [anon_sym_PERCENT] = { + .visible = true, + .named = false, + }, [sym_backslash_escape] = { .visible = true, .named = true, @@ -760,10 +787,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, - [anon_sym_PERCENT] = { - .visible = true, - .named = false, - }, [aux_sym__comment_no_newline_token1] = { .visible = false, .named = false, @@ -924,8 +947,8 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, - [sym__footnote_begin] = { - .visible = true, + [sym__footnote_mark_begin] = { + .visible = false, .named = true, }, [sym__footnote_end] = { @@ -940,6 +963,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, + [sym__in_fallback] = { + .visible = false, + .named = true, + }, [sym__error] = { .visible = false, .named = true, @@ -1188,6 +1215,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_footnote_marker_begin] = { + .visible = true, + .named = true, + }, [sym_footnote_content] = { .visible = true, .named = true, @@ -1256,6 +1287,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_identifier] = { + .visible = true, + .named = true, + }, [sym_key_value] = { .visible = true, .named = true, @@ -1571,31 +1606,31 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1] = 1, [2] = 2, [3] = 3, - [4] = 3, + [4] = 2, [5] = 5, [6] = 6, [7] = 7, - [8] = 8, - [9] = 6, - [10] = 7, + [8] = 6, + [9] = 9, + [10] = 3, [11] = 11, [12] = 12, - [13] = 13, - [14] = 11, + [13] = 11, + [14] = 12, [15] = 15, - [16] = 16, - [17] = 13, - [18] = 16, - [19] = 11, - [20] = 13, - [21] = 11, - [22] = 16, - [23] = 13, - [24] = 16, - [25] = 13, - [26] = 16, - [27] = 11, - [28] = 12, + [16] = 11, + [17] = 15, + [18] = 12, + [19] = 19, + [20] = 11, + [21] = 15, + [22] = 22, + [23] = 12, + [24] = 15, + [25] = 12, + [26] = 11, + [27] = 15, + [28] = 19, [29] = 29, [30] = 30, [31] = 31, @@ -1624,11 +1659,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [54] = 54, [55] = 55, [56] = 55, - [57] = 55, - [58] = 54, + [57] = 54, + [58] = 55, [59] = 55, - [60] = 55, - [61] = 54, + [60] = 54, + [61] = 55, [62] = 54, [63] = 63, [64] = 64, @@ -1647,192 +1682,192 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [77] = 77, [78] = 78, [79] = 79, - [80] = 80, - [81] = 81, + [80] = 76, + [81] = 77, [82] = 82, [83] = 83, [84] = 84, [85] = 85, [86] = 86, - [87] = 87, - [88] = 88, - [89] = 89, - [90] = 90, + [87] = 78, + [88] = 84, + [89] = 79, + [90] = 85, [91] = 91, - [92] = 92, - [93] = 88, - [94] = 89, - [95] = 88, - [96] = 92, - [97] = 80, - [98] = 90, - [99] = 77, - [100] = 77, - [101] = 101, - [102] = 101, - [103] = 78, + [92] = 82, + [93] = 93, + [94] = 83, + [95] = 95, + [96] = 95, + [97] = 86, + [98] = 77, + [99] = 99, + [100] = 100, + [101] = 76, + [102] = 78, + [103] = 84, [104] = 91, - [105] = 86, - [106] = 81, - [107] = 82, - [108] = 83, - [109] = 84, - [110] = 85, - [111] = 84, - [112] = 85, - [113] = 83, - [114] = 82, - [115] = 86, - [116] = 81, - [117] = 80, - [118] = 79, - [119] = 89, - [120] = 78, - [121] = 101, - [122] = 76, - [123] = 79, - [124] = 90, - [125] = 87, - [126] = 91, - [127] = 92, - [128] = 76, + [105] = 79, + [106] = 85, + [107] = 107, + [108] = 93, + [109] = 99, + [110] = 107, + [111] = 111, + [112] = 112, + [113] = 113, + [114] = 111, + [115] = 112, + [116] = 113, + [117] = 111, + [118] = 113, + [119] = 100, + [120] = 82, + [121] = 91, + [122] = 107, + [123] = 83, + [124] = 99, + [125] = 93, + [126] = 112, + [127] = 100, + [128] = 86, [129] = 129, [130] = 130, [131] = 131, [132] = 132, [133] = 133, [134] = 134, - [135] = 135, + [135] = 132, [136] = 136, [137] = 137, - [138] = 136, - [139] = 135, + [138] = 138, + [139] = 139, [140] = 140, [141] = 141, [142] = 142, - [143] = 141, + [143] = 133, [144] = 144, [145] = 145, [146] = 146, [147] = 147, [148] = 148, - [149] = 149, + [149] = 144, [150] = 150, [151] = 151, [152] = 152, [153] = 153, [154] = 154, - [155] = 155, - [156] = 146, + [155] = 130, + [156] = 156, [157] = 157, [158] = 158, [159] = 159, [160] = 160, - [161] = 161, - [162] = 142, + [161] = 159, + [162] = 162, [163] = 163, - [164] = 164, - [165] = 165, + [164] = 129, + [165] = 157, [166] = 166, [167] = 167, - [168] = 133, + [168] = 168, [169] = 169, [170] = 170, - [171] = 171, - [172] = 145, + [171] = 131, + [172] = 172, [173] = 173, - [174] = 147, - [175] = 175, + [174] = 174, + [175] = 136, [176] = 176, - [177] = 177, - [178] = 149, - [179] = 151, + [177] = 139, + [178] = 178, + [179] = 142, [180] = 180, - [181] = 153, - [182] = 170, - [183] = 160, - [184] = 155, - [185] = 157, - [186] = 159, - [187] = 176, - [188] = 130, - [189] = 161, - [190] = 190, - [191] = 163, - [192] = 131, - [193] = 165, - [194] = 194, - [195] = 167, - [196] = 132, - [197] = 140, - [198] = 148, - [199] = 169, - [200] = 171, - [201] = 173, - [202] = 175, - [203] = 144, - [204] = 164, - [205] = 180, - [206] = 206, + [181] = 181, + [182] = 145, + [183] = 183, + [184] = 148, + [185] = 185, + [186] = 153, + [187] = 150, + [188] = 188, + [189] = 152, + [190] = 151, + [191] = 154, + [192] = 156, + [193] = 158, + [194] = 163, + [195] = 195, + [196] = 160, + [197] = 163, + [198] = 162, + [199] = 129, + [200] = 166, + [201] = 183, + [202] = 159, + [203] = 168, + [204] = 170, + [205] = 178, + [206] = 172, [207] = 207, - [208] = 206, - [209] = 209, - [210] = 166, - [211] = 134, - [212] = 194, - [213] = 177, - [214] = 158, - [215] = 129, - [216] = 150, - [217] = 134, - [218] = 166, - [219] = 164, - [220] = 148, - [221] = 140, - [222] = 150, - [223] = 223, - [224] = 132, - [225] = 131, - [226] = 226, - [227] = 190, - [228] = 154, - [229] = 130, - [230] = 158, - [231] = 176, + [208] = 174, + [209] = 176, + [210] = 176, + [211] = 195, + [212] = 178, + [213] = 174, + [214] = 183, + [215] = 172, + [216] = 195, + [217] = 217, + [218] = 217, + [219] = 170, + [220] = 153, + [221] = 168, + [222] = 217, + [223] = 144, + [224] = 185, + [225] = 173, + [226] = 133, + [227] = 166, + [228] = 132, + [229] = 162, + [230] = 167, + [231] = 134, [232] = 160, - [233] = 144, - [234] = 141, - [235] = 177, - [236] = 170, - [237] = 133, - [238] = 136, - [239] = 135, - [240] = 207, - [241] = 142, - [242] = 194, - [243] = 145, - [244] = 147, - [245] = 149, - [246] = 151, - [247] = 153, - [248] = 209, - [249] = 155, - [250] = 157, - [251] = 159, - [252] = 161, - [253] = 163, - [254] = 165, - [255] = 167, - [256] = 169, - [257] = 171, - [258] = 173, - [259] = 175, - [260] = 223, - [261] = 180, - [262] = 207, - [263] = 206, - [264] = 129, - [265] = 226, + [233] = 207, + [234] = 158, + [235] = 147, + [236] = 156, + [237] = 146, + [238] = 137, + [239] = 181, + [240] = 141, + [241] = 140, + [242] = 138, + [243] = 154, + [244] = 185, + [245] = 152, + [246] = 138, + [247] = 137, + [248] = 169, + [249] = 140, + [250] = 134, + [251] = 251, + [252] = 180, + [253] = 141, + [254] = 157, + [255] = 150, + [256] = 148, + [257] = 151, + [258] = 146, + [259] = 145, + [260] = 142, + [261] = 139, + [262] = 136, + [263] = 147, + [264] = 131, + [265] = 169, [266] = 266, [267] = 267, [268] = 268, @@ -1843,8 +1878,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [273] = 269, [274] = 274, [275] = 275, - [276] = 275, - [277] = 274, + [276] = 274, + [277] = 275, [278] = 274, [279] = 275, [280] = 275, @@ -1856,211 +1891,211 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [286] = 284, [287] = 284, [288] = 284, - [289] = 64, + [289] = 289, [290] = 290, - [291] = 64, - [292] = 267, - [293] = 290, - [294] = 294, + [291] = 266, + [292] = 290, + [293] = 293, + [294] = 290, [295] = 290, - [296] = 296, + [296] = 289, [297] = 297, - [298] = 294, - [299] = 290, - [300] = 67, - [301] = 301, - [302] = 294, - [303] = 301, - [304] = 294, - [305] = 301, - [306] = 290, - [307] = 307, - [308] = 301, - [309] = 294, - [310] = 301, - [311] = 311, - [312] = 312, - [313] = 312, - [314] = 312, - [315] = 67, - [316] = 268, + [298] = 297, + [299] = 297, + [300] = 289, + [301] = 297, + [302] = 302, + [303] = 289, + [304] = 290, + [305] = 305, + [306] = 297, + [307] = 289, + [308] = 266, + [309] = 309, + [310] = 309, + [311] = 309, + [312] = 309, + [313] = 309, + [314] = 268, + [315] = 315, + [316] = 302, [317] = 317, [318] = 318, - [319] = 267, - [320] = 311, - [321] = 312, - [322] = 311, - [323] = 307, - [324] = 311, - [325] = 312, - [326] = 311, - [327] = 327, - [328] = 328, - [329] = 328, - [330] = 330, - [331] = 331, - [332] = 332, - [333] = 330, - [334] = 334, - [335] = 327, - [336] = 328, - [337] = 331, - [338] = 338, - [339] = 332, - [340] = 332, - [341] = 268, - [342] = 330, - [343] = 334, - [344] = 327, - [345] = 332, - [346] = 328, - [347] = 327, - [348] = 331, - [349] = 338, - [350] = 338, - [351] = 330, - [352] = 328, - [353] = 331, - [354] = 332, - [355] = 330, - [356] = 327, - [357] = 334, - [358] = 338, - [359] = 334, - [360] = 334, - [361] = 331, + [319] = 268, + [320] = 320, + [321] = 321, + [322] = 322, + [323] = 320, + [324] = 318, + [325] = 325, + [326] = 326, + [327] = 322, + [328] = 322, + [329] = 317, + [330] = 326, + [331] = 326, + [332] = 317, + [333] = 321, + [334] = 317, + [335] = 318, + [336] = 320, + [337] = 326, + [338] = 320, + [339] = 322, + [340] = 325, + [341] = 321, + [342] = 325, + [343] = 318, + [344] = 325, + [345] = 321, + [346] = 318, + [347] = 320, + [348] = 325, + [349] = 321, + [350] = 322, + [351] = 317, + [352] = 352, + [353] = 353, + [354] = 354, + [355] = 355, + [356] = 354, + [357] = 357, + [358] = 64, + [359] = 354, + [360] = 355, + [361] = 355, [362] = 362, - [363] = 70, + [363] = 363, [364] = 364, - [365] = 365, + [365] = 364, [366] = 366, [367] = 367, - [368] = 367, - [369] = 369, - [370] = 370, - [371] = 371, - [372] = 372, - [373] = 367, - [374] = 370, - [375] = 366, - [376] = 70, - [377] = 377, - [378] = 371, - [379] = 370, - [380] = 362, - [381] = 371, - [382] = 372, - [383] = 367, - [384] = 370, - [385] = 362, - [386] = 372, - [387] = 371, - [388] = 366, - [389] = 371, - [390] = 367, - [391] = 391, - [392] = 372, - [393] = 370, - [394] = 372, - [395] = 395, - [396] = 396, - [397] = 395, - [398] = 398, - [399] = 399, - [400] = 400, - [401] = 395, - [402] = 396, - [403] = 307, - [404] = 404, + [368] = 364, + [369] = 64, + [370] = 364, + [371] = 266, + [372] = 302, + [373] = 67, + [374] = 354, + [375] = 375, + [376] = 355, + [377] = 364, + [378] = 363, + [379] = 67, + [380] = 363, + [381] = 268, + [382] = 363, + [383] = 70, + [384] = 70, + [385] = 385, + [386] = 386, + [387] = 387, + [388] = 385, + [389] = 386, + [390] = 390, + [391] = 390, + [392] = 387, + [393] = 385, + [394] = 387, + [395] = 385, + [396] = 390, + [397] = 390, + [398] = 386, + [399] = 386, + [400] = 386, + [401] = 385, + [402] = 387, + [403] = 387, + [404] = 390, [405] = 405, - [406] = 267, - [407] = 396, - [408] = 408, - [409] = 396, - [410] = 366, - [411] = 362, - [412] = 400, - [413] = 400, - [414] = 414, - [415] = 400, - [416] = 400, - [417] = 396, - [418] = 395, - [419] = 395, - [420] = 420, - [421] = 421, - [422] = 78, - [423] = 421, - [424] = 421, - [425] = 425, - [426] = 425, - [427] = 421, - [428] = 421, - [429] = 425, - [430] = 421, - [431] = 425, - [432] = 421, - [433] = 425, - [434] = 425, - [435] = 421, - [436] = 421, - [437] = 425, - [438] = 425, - [439] = 421, - [440] = 425, - [441] = 421, - [442] = 425, - [443] = 421, - [444] = 444, - [445] = 425, - [446] = 425, - [447] = 447, - [448] = 421, - [449] = 425, - [450] = 91, - [451] = 92, - [452] = 421, - [453] = 453, - [454] = 101, - [455] = 425, - [456] = 456, - [457] = 421, - [458] = 421, - [459] = 425, - [460] = 425, - [461] = 461, - [462] = 83, - [463] = 84, - [464] = 464, - [465] = 268, - [466] = 421, - [467] = 425, - [468] = 468, - [469] = 469, - [470] = 470, - [471] = 421, + [406] = 406, + [407] = 407, + [408] = 407, + [409] = 409, + [410] = 406, + [411] = 411, + [412] = 412, + [413] = 413, + [414] = 409, + [415] = 409, + [416] = 407, + [417] = 406, + [418] = 409, + [419] = 419, + [420] = 409, + [421] = 406, + [422] = 407, + [423] = 423, + [424] = 407, + [425] = 406, + [426] = 78, + [427] = 427, + [428] = 428, + [429] = 428, + [430] = 427, + [431] = 428, + [432] = 427, + [433] = 433, + [434] = 434, + [435] = 428, + [436] = 427, + [437] = 107, + [438] = 428, + [439] = 111, + [440] = 427, + [441] = 427, + [442] = 427, + [443] = 428, + [444] = 428, + [445] = 427, + [446] = 428, + [447] = 427, + [448] = 428, + [449] = 449, + [450] = 450, + [451] = 427, + [452] = 428, + [453] = 427, + [454] = 84, + [455] = 428, + [456] = 427, + [457] = 428, + [458] = 428, + [459] = 83, + [460] = 428, + [461] = 427, + [462] = 86, + [463] = 427, + [464] = 428, + [465] = 427, + [466] = 466, + [467] = 467, + [468] = 428, + [469] = 427, + [470] = 427, + [471] = 428, [472] = 472, - [473] = 473, - [474] = 89, - [475] = 425, - [476] = 421, - [477] = 425, - [478] = 83, - [479] = 91, - [480] = 92, - [481] = 84, - [482] = 73, - [483] = 78, - [484] = 101, - [485] = 485, + [473] = 428, + [474] = 474, + [475] = 475, + [476] = 427, + [477] = 91, + [478] = 428, + [479] = 427, + [480] = 480, + [481] = 481, + [482] = 482, + [483] = 84, + [484] = 78, + [485] = 83, [486] = 486, [487] = 487, - [488] = 89, - [489] = 489, - [490] = 490, + [488] = 73, + [489] = 107, + [490] = 111, [491] = 491, - [492] = 492, - [493] = 493, + [492] = 91, + [493] = 86, [494] = 494, [495] = 495, [496] = 496, @@ -2073,581 +2108,596 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [503] = 503, [504] = 504, [505] = 505, - [506] = 506, + [506] = 495, [507] = 507, - [508] = 506, - [509] = 506, - [510] = 506, - [511] = 511, - [512] = 512, - [513] = 513, - [514] = 514, - [515] = 515, - [516] = 516, - [517] = 517, - [518] = 518, + [508] = 494, + [509] = 509, + [510] = 510, + [511] = 510, + [512] = 501, + [513] = 500, + [514] = 509, + [515] = 494, + [516] = 499, + [517] = 507, + [518] = 495, [519] = 519, - [520] = 520, - [521] = 521, - [522] = 490, - [523] = 523, - [524] = 524, - [525] = 525, + [520] = 505, + [521] = 504, + [522] = 498, + [523] = 497, + [524] = 503, + [525] = 496, [526] = 526, - [527] = 527, - [528] = 73, + [527] = 502, + [528] = 528, [529] = 529, - [530] = 530, - [531] = 489, - [532] = 532, - [533] = 533, - [534] = 515, - [535] = 516, - [536] = 517, - [537] = 518, + [530] = 519, + [531] = 73, + [532] = 502, + [533] = 519, + [534] = 503, + [535] = 504, + [536] = 505, + [537] = 495, [538] = 519, - [539] = 520, - [540] = 521, - [541] = 490, - [542] = 523, - [543] = 524, - [544] = 525, - [545] = 526, - [546] = 527, - [547] = 529, - [548] = 530, - [549] = 489, - [550] = 515, - [551] = 516, - [552] = 517, - [553] = 518, - [554] = 519, - [555] = 520, - [556] = 521, - [557] = 490, - [558] = 523, - [559] = 506, - [560] = 524, - [561] = 525, - [562] = 516, - [563] = 527, - [564] = 529, - [565] = 530, - [566] = 515, - [567] = 516, - [568] = 517, - [569] = 518, - [570] = 519, - [571] = 520, - [572] = 521, - [573] = 490, - [574] = 523, - [575] = 524, - [576] = 525, - [577] = 526, - [578] = 527, - [579] = 529, - [580] = 88, - [581] = 530, - [582] = 489, - [583] = 489, - [584] = 530, - [585] = 529, - [586] = 87, - [587] = 527, - [588] = 90, + [539] = 519, + [540] = 540, + [541] = 507, + [542] = 494, + [543] = 509, + [544] = 544, + [545] = 545, + [546] = 546, + [547] = 547, + [548] = 548, + [549] = 549, + [550] = 550, + [551] = 551, + [552] = 552, + [553] = 553, + [554] = 554, + [555] = 555, + [556] = 510, + [557] = 557, + [558] = 526, + [559] = 496, + [560] = 501, + [561] = 500, + [562] = 82, + [563] = 499, + [564] = 498, + [565] = 497, + [566] = 496, + [567] = 567, + [568] = 526, + [569] = 569, + [570] = 502, + [571] = 100, + [572] = 112, + [573] = 503, + [574] = 113, + [575] = 504, + [576] = 99, + [577] = 93, + [578] = 505, + [579] = 526, + [580] = 85, + [581] = 497, + [582] = 79, + [583] = 507, + [584] = 509, + [585] = 76, + [586] = 510, + [587] = 501, + [588] = 500, [589] = 77, - [590] = 526, - [591] = 76, - [592] = 525, - [593] = 524, - [594] = 79, - [595] = 80, - [596] = 518, - [597] = 523, - [598] = 519, - [599] = 81, - [600] = 82, - [601] = 515, - [602] = 520, - [603] = 526, - [604] = 86, - [605] = 605, - [606] = 85, - [607] = 521, - [608] = 517, - [609] = 609, - [610] = 80, - [611] = 177, - [612] = 612, - [613] = 194, - [614] = 612, - [615] = 209, - [616] = 207, - [617] = 617, - [618] = 129, - [619] = 132, - [620] = 206, - [621] = 158, - [622] = 150, - [623] = 133, - [624] = 134, - [625] = 166, - [626] = 164, - [627] = 148, - [628] = 180, - [629] = 175, - [630] = 140, - [631] = 173, - [632] = 171, - [633] = 169, - [634] = 167, - [635] = 165, - [636] = 163, + [590] = 499, + [591] = 498, + [592] = 497, + [593] = 95, + [594] = 594, + [595] = 498, + [596] = 496, + [597] = 526, + [598] = 598, + [599] = 599, + [600] = 600, + [601] = 601, + [602] = 502, + [603] = 503, + [604] = 504, + [605] = 505, + [606] = 495, + [607] = 507, + [608] = 494, + [609] = 509, + [610] = 510, + [611] = 501, + [612] = 500, + [613] = 499, + [614] = 142, + [615] = 139, + [616] = 136, + [617] = 131, + [618] = 153, + [619] = 266, + [620] = 151, + [621] = 145, + [622] = 148, + [623] = 150, + [624] = 152, + [625] = 154, + [626] = 156, + [627] = 158, + [628] = 160, + [629] = 162, + [630] = 129, + [631] = 166, + [632] = 168, + [633] = 170, + [634] = 172, + [635] = 635, + [636] = 636, [637] = 637, - [638] = 161, - [639] = 159, - [640] = 307, - [641] = 307, - [642] = 267, - [643] = 612, - [644] = 85, - [645] = 86, - [646] = 307, - [647] = 267, - [648] = 648, - [649] = 87, - [650] = 267, - [651] = 307, - [652] = 267, - [653] = 653, - [654] = 654, - [655] = 157, - [656] = 155, - [657] = 657, + [638] = 181, + [639] = 639, + [640] = 640, + [641] = 174, + [642] = 176, + [643] = 183, + [644] = 639, + [645] = 195, + [646] = 93, + [647] = 217, + [648] = 185, + [649] = 302, + [650] = 266, + [651] = 180, + [652] = 302, + [653] = 178, + [654] = 302, + [655] = 266, + [656] = 169, + [657] = 157, [658] = 658, - [659] = 659, - [660] = 153, - [661] = 151, - [662] = 82, - [663] = 663, - [664] = 149, - [665] = 307, - [666] = 267, + [659] = 302, + [660] = 266, + [661] = 163, + [662] = 159, + [663] = 144, + [664] = 664, + [665] = 133, + [666] = 666, [667] = 667, [668] = 668, - [669] = 81, + [669] = 669, [670] = 670, - [671] = 267, - [672] = 672, - [673] = 673, - [674] = 648, - [675] = 190, - [676] = 676, - [677] = 677, - [678] = 678, - [679] = 679, - [680] = 88, - [681] = 681, + [671] = 132, + [672] = 134, + [673] = 302, + [674] = 266, + [675] = 137, + [676] = 138, + [677] = 140, + [678] = 141, + [679] = 146, + [680] = 147, + [681] = 302, [682] = 682, - [683] = 648, - [684] = 612, - [685] = 147, + [683] = 266, + [684] = 684, + [685] = 685, [686] = 686, - [687] = 145, - [688] = 142, - [689] = 135, - [690] = 136, - [691] = 691, - [692] = 131, - [693] = 130, - [694] = 176, - [695] = 307, - [696] = 160, + [687] = 687, + [688] = 688, + [689] = 689, + [690] = 690, + [691] = 639, + [692] = 692, + [693] = 693, + [694] = 692, + [695] = 266, + [696] = 696, [697] = 697, - [698] = 267, - [699] = 141, - [700] = 90, - [701] = 79, - [702] = 307, - [703] = 703, - [704] = 648, - [705] = 144, - [706] = 170, - [707] = 77, - [708] = 76, - [709] = 130, + [698] = 95, + [699] = 639, + [700] = 77, + [701] = 76, + [702] = 692, + [703] = 79, + [704] = 85, + [705] = 692, + [706] = 302, + [707] = 82, + [708] = 100, + [709] = 112, [710] = 710, - [711] = 268, - [712] = 141, - [713] = 713, - [714] = 133, - [715] = 136, - [716] = 177, - [717] = 713, + [711] = 113, + [712] = 712, + [713] = 99, + [714] = 714, + [715] = 154, + [716] = 716, + [717] = 717, [718] = 718, - [719] = 713, + [719] = 159, [720] = 720, [721] = 721, [722] = 722, - [723] = 713, + [723] = 722, [724] = 724, - [725] = 710, - [726] = 158, - [727] = 150, - [728] = 134, - [729] = 729, + [725] = 722, + [726] = 722, + [727] = 727, + [728] = 728, + [729] = 144, [730] = 730, - [731] = 166, - [732] = 164, + [731] = 133, + [732] = 132, [733] = 733, - [734] = 734, - [735] = 148, - [736] = 736, + [734] = 134, + [735] = 137, + [736] = 138, [737] = 737, - [738] = 738, - [739] = 739, - [740] = 740, - [741] = 140, - [742] = 132, - [743] = 131, - [744] = 710, - [745] = 720, + [738] = 718, + [739] = 140, + [740] = 141, + [741] = 741, + [742] = 742, + [743] = 146, + [744] = 147, + [745] = 745, [746] = 746, [747] = 747, [748] = 748, - [749] = 729, - [750] = 648, - [751] = 135, - [752] = 142, + [749] = 749, + [750] = 268, + [751] = 157, + [752] = 169, [753] = 753, - [754] = 268, - [755] = 145, - [756] = 147, + [754] = 728, + [755] = 755, + [756] = 756, [757] = 757, - [758] = 149, - [759] = 151, - [760] = 153, - [761] = 761, - [762] = 762, - [763] = 155, - [764] = 720, - [765] = 612, - [766] = 733, - [767] = 713, - [768] = 734, - [769] = 648, - [770] = 736, - [771] = 737, - [772] = 738, - [773] = 739, - [774] = 722, - [775] = 740, - [776] = 612, - [777] = 405, - [778] = 747, - [779] = 748, - [780] = 176, - [781] = 648, - [782] = 612, - [783] = 733, - [784] = 729, - [785] = 785, - [786] = 734, - [787] = 648, - [788] = 736, - [789] = 738, - [790] = 739, - [791] = 740, - [792] = 612, - [793] = 737, - [794] = 747, - [795] = 748, - [796] = 160, - [797] = 648, - [798] = 733, - [799] = 734, - [800] = 144, - [801] = 720, - [802] = 748, - [803] = 612, - [804] = 648, - [805] = 747, - [806] = 157, - [807] = 807, - [808] = 159, - [809] = 161, - [810] = 810, - [811] = 811, - [812] = 612, - [813] = 813, - [814] = 163, - [815] = 165, - [816] = 816, - [817] = 817, - [818] = 167, - [819] = 648, - [820] = 820, - [821] = 169, - [822] = 736, - [823] = 738, - [824] = 739, - [825] = 740, - [826] = 722, - [827] = 747, - [828] = 612, - [829] = 722, - [830] = 748, - [831] = 268, - [832] = 663, - [833] = 833, - [834] = 834, - [835] = 740, - [836] = 733, - [837] = 734, - [838] = 739, - [839] = 729, - [840] = 648, - [841] = 612, - [842] = 648, - [843] = 612, - [844] = 648, - [845] = 612, - [846] = 648, - [847] = 268, - [848] = 737, - [849] = 849, - [850] = 738, - [851] = 736, - [852] = 612, + [758] = 758, + [759] = 692, + [760] = 639, + [761] = 692, + [762] = 639, + [763] = 692, + [764] = 639, + [765] = 692, + [766] = 639, + [767] = 692, + [768] = 639, + [769] = 692, + [770] = 639, + [771] = 692, + [772] = 639, + [773] = 692, + [774] = 639, + [775] = 720, + [776] = 180, + [777] = 777, + [778] = 692, + [779] = 185, + [780] = 217, + [781] = 745, + [782] = 747, + [783] = 639, + [784] = 730, + [785] = 741, + [786] = 742, + [787] = 195, + [788] = 183, + [789] = 745, + [790] = 747, + [791] = 748, + [792] = 749, + [793] = 718, + [794] = 268, + [795] = 795, + [796] = 692, + [797] = 720, + [798] = 755, + [799] = 756, + [800] = 178, + [801] = 176, + [802] = 802, + [803] = 746, + [804] = 639, + [805] = 741, + [806] = 742, + [807] = 174, + [808] = 172, + [809] = 745, + [810] = 753, + [811] = 728, + [812] = 748, + [813] = 749, + [814] = 730, + [815] = 747, + [816] = 742, + [817] = 741, + [818] = 692, + [819] = 639, + [820] = 268, + [821] = 692, + [822] = 748, + [823] = 639, + [824] = 268, + [825] = 692, + [826] = 639, + [827] = 268, + [828] = 828, + [829] = 658, + [830] = 749, + [831] = 170, + [832] = 720, + [833] = 168, + [834] = 166, + [835] = 755, + [836] = 756, + [837] = 163, + [838] = 838, + [839] = 741, + [840] = 730, + [841] = 742, + [842] = 842, + [843] = 843, + [844] = 745, + [845] = 747, + [846] = 748, + [847] = 749, + [848] = 848, + [849] = 718, + [850] = 367, + [851] = 851, + [852] = 852, [853] = 853, - [854] = 648, - [855] = 710, - [856] = 720, + [854] = 755, + [855] = 756, + [856] = 162, [857] = 857, - [858] = 612, - [859] = 859, + [858] = 858, + [859] = 746, [860] = 860, - [861] = 171, + [861] = 861, [862] = 862, - [863] = 173, - [864] = 175, - [865] = 180, - [866] = 648, - [867] = 268, - [868] = 612, - [869] = 206, - [870] = 129, - [871] = 648, - [872] = 207, - [873] = 209, - [874] = 268, - [875] = 612, - [876] = 194, - [877] = 648, - [878] = 878, - [879] = 879, + [863] = 863, + [864] = 864, + [865] = 865, + [866] = 753, + [867] = 728, + [868] = 868, + [869] = 756, + [870] = 755, + [871] = 871, + [872] = 160, + [873] = 158, + [874] = 746, + [875] = 722, + [876] = 876, + [877] = 877, + [878] = 129, + [879] = 156, [880] = 880, - [881] = 729, - [882] = 268, - [883] = 722, - [884] = 884, - [885] = 885, - [886] = 886, - [887] = 170, - [888] = 710, - [889] = 612, - [890] = 890, - [891] = 891, - [892] = 737, - [893] = 893, - [894] = 894, - [895] = 895, - [896] = 896, - [897] = 897, - [898] = 893, - [899] = 899, - [900] = 900, - [901] = 901, - [902] = 902, + [881] = 753, + [882] = 753, + [883] = 692, + [884] = 639, + [885] = 639, + [886] = 268, + [887] = 268, + [888] = 151, + [889] = 746, + [890] = 728, + [891] = 153, + [892] = 131, + [893] = 136, + [894] = 730, + [895] = 139, + [896] = 152, + [897] = 692, + [898] = 142, + [899] = 145, + [900] = 718, + [901] = 148, + [902] = 150, [903] = 903, [904] = 904, [905] = 905, - [906] = 906, + [906] = 904, [907] = 907, - [908] = 908, + [908] = 903, [909] = 909, [910] = 910, - [911] = 903, + [911] = 911, [912] = 912, [913] = 913, - [914] = 909, + [914] = 914, [915] = 915, [916] = 916, [917] = 917, [918] = 918, [919] = 919, - [920] = 920, - [921] = 921, + [920] = 919, + [921] = 918, [922] = 922, [923] = 923, - [924] = 895, - [925] = 908, - [926] = 907, - [927] = 906, - [928] = 905, - [929] = 904, - [930] = 901, - [931] = 900, - [932] = 899, + [924] = 924, + [925] = 917, + [926] = 916, + [927] = 915, + [928] = 928, + [929] = 929, + [930] = 913, + [931] = 912, + [932] = 932, [933] = 933, - [934] = 915, - [935] = 897, - [936] = 918, - [937] = 895, + [934] = 911, + [935] = 910, + [936] = 936, + [937] = 937, [938] = 938, [939] = 939, - [940] = 903, + [940] = 940, [941] = 941, - [942] = 909, - [943] = 915, - [944] = 944, - [945] = 945, - [946] = 946, - [947] = 947, - [948] = 946, + [942] = 942, + [943] = 943, + [944] = 919, + [945] = 918, + [946] = 917, + [947] = 916, + [948] = 915, [949] = 949, - [950] = 950, - [951] = 951, + [950] = 912, + [951] = 911, [952] = 952, - [953] = 918, - [954] = 919, - [955] = 897, - [956] = 952, - [957] = 893, - [958] = 908, + [953] = 910, + [954] = 909, + [955] = 903, + [956] = 907, + [957] = 913, + [958] = 958, [959] = 959, [960] = 960, [961] = 961, - [962] = 907, - [963] = 941, - [964] = 906, - [965] = 905, - [966] = 904, - [967] = 899, - [968] = 946, - [969] = 950, - [970] = 949, - [971] = 949, - [972] = 950, + [962] = 466, + [963] = 905, + [964] = 964, + [965] = 965, + [966] = 960, + [967] = 967, + [968] = 909, + [969] = 903, + [970] = 970, + [971] = 971, + [972] = 970, [973] = 973, - [974] = 901, - [975] = 900, - [976] = 899, - [977] = 893, + [974] = 952, + [975] = 975, + [976] = 904, + [977] = 942, [978] = 978, - [979] = 897, - [980] = 895, - [981] = 959, - [982] = 469, - [983] = 903, + [979] = 913, + [980] = 936, + [981] = 981, + [982] = 960, + [983] = 961, [984] = 984, - [985] = 941, + [985] = 985, [986] = 986, - [987] = 909, - [988] = 988, - [989] = 989, - [990] = 946, - [991] = 991, - [992] = 992, - [993] = 949, - [994] = 950, + [987] = 919, + [988] = 918, + [989] = 917, + [990] = 916, + [991] = 915, + [992] = 970, + [993] = 912, + [994] = 911, [995] = 995, - [996] = 915, - [997] = 900, - [998] = 901, - [999] = 999, - [1000] = 918, - [1001] = 919, - [1002] = 1002, + [996] = 952, + [997] = 910, + [998] = 909, + [999] = 959, + [1000] = 967, + [1001] = 942, + [1002] = 907, [1003] = 959, - [1004] = 941, - [1005] = 1005, - [1006] = 941, + [1004] = 960, + [1005] = 961, + [1006] = 967, [1007] = 1007, - [1008] = 904, + [1008] = 905, [1009] = 1009, - [1010] = 905, - [1011] = 946, - [1012] = 919, - [1013] = 908, - [1014] = 949, - [1015] = 950, - [1016] = 907, - [1017] = 906, - [1018] = 905, - [1019] = 904, - [1020] = 959, - [1021] = 901, - [1022] = 900, - [1023] = 899, - [1024] = 959, - [1025] = 995, - [1026] = 893, - [1027] = 999, - [1028] = 897, - [1029] = 1005, - [1030] = 933, - [1031] = 984, - [1032] = 995, - [1033] = 906, - [1034] = 999, - [1035] = 895, - [1036] = 1005, - [1037] = 933, - [1038] = 984, - [1039] = 995, - [1040] = 903, - [1041] = 999, - [1042] = 907, - [1043] = 1005, - [1044] = 933, - [1045] = 984, - [1046] = 995, - [1047] = 908, - [1048] = 999, - [1049] = 909, - [1050] = 1005, - [1051] = 933, - [1052] = 984, - [1053] = 921, - [1054] = 915, - [1055] = 951, - [1056] = 913, - [1057] = 918, - [1058] = 919, - [1059] = 951, - [1060] = 913, - [1061] = 1061, - [1062] = 1007, - [1063] = 951, - [1064] = 913, - [1065] = 952, - [1066] = 952, - [1067] = 951, - [1068] = 913, - [1069] = 947, - [1070] = 947, - [1071] = 947, - [1072] = 947, - [1073] = 989, - [1074] = 989, - [1075] = 989, - [1076] = 989, - [1077] = 1077, - [1078] = 1078, - [1079] = 1079, - [1080] = 1080, + [1010] = 1010, + [1011] = 959, + [1012] = 967, + [1013] = 1013, + [1014] = 970, + [1015] = 904, + [1016] = 942, + [1017] = 952, + [1018] = 936, + [1019] = 907, + [1020] = 1020, + [1021] = 919, + [1022] = 913, + [1023] = 918, + [1024] = 917, + [1025] = 960, + [1026] = 961, + [1027] = 916, + [1028] = 915, + [1029] = 1029, + [1030] = 912, + [1031] = 911, + [1032] = 910, + [1033] = 909, + [1034] = 903, + [1035] = 970, + [1036] = 1036, + [1037] = 907, + [1038] = 959, + [1039] = 943, + [1040] = 1007, + [1041] = 1010, + [1042] = 949, + [1043] = 1036, + [1044] = 905, + [1045] = 1020, + [1046] = 943, + [1047] = 1007, + [1048] = 1010, + [1049] = 949, + [1050] = 1036, + [1051] = 905, + [1052] = 961, + [1053] = 943, + [1054] = 1007, + [1055] = 1010, + [1056] = 949, + [1057] = 1036, + [1058] = 967, + [1059] = 1059, + [1060] = 943, + [1061] = 1007, + [1062] = 1010, + [1063] = 949, + [1064] = 1064, + [1065] = 929, + [1066] = 904, + [1067] = 914, + [1068] = 952, + [1069] = 929, + [1070] = 942, + [1071] = 914, + [1072] = 1072, + [1073] = 929, + [1074] = 1074, + [1075] = 914, + [1076] = 1076, + [1077] = 929, + [1078] = 995, + [1079] = 914, + [1080] = 1072, + [1081] = 986, + [1082] = 1072, + [1083] = 986, + [1084] = 1072, + [1085] = 986, + [1086] = 1072, + [1087] = 986, + [1088] = 941, + [1089] = 941, + [1090] = 941, + [1091] = 941, + [1092] = 936, + [1093] = 1093, + [1094] = 1036, + [1095] = 1095, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -2656,209 +2706,222 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { switch (state) { case 0: if (eof) ADVANCE(20); - if (!eof && (lookahead == 0)) ADVANCE(32); - if (lookahead == '\t') ADVANCE(50); + if (!eof && (lookahead == 0)) ADVANCE(33); + if (lookahead == '\t') ADVANCE(52); if (lookahead == '\r') SKIP(18) - if (lookahead == ' ') ADVANCE(28); - if (lookahead == '"') ADVANCE(45); - if (lookahead == '#') ADVANCE(16); + if (lookahead == ' ') ADVANCE(29); + if (lookahead == '"') ADVANCE(47); + if (lookahead == '#') ADVANCE(63); if (lookahead == '%') ADVANCE(64); - if (lookahead == '.') ADVANCE(43); - if (lookahead == ':') ADVANCE(39); - if (lookahead == '=') ADVANCE(34); - if (lookahead == 'X') ADVANCE(25); - if (lookahead == '[') ADVANCE(21); + if (lookahead == '.') ADVANCE(45); + if (lookahead == ':') ADVANCE(41); + if (lookahead == '=') ADVANCE(36); + if (lookahead == 'X') ADVANCE(26); + if (lookahead == '[') ADVANCE(22); if (lookahead == '\\') ADVANCE(17); - if (lookahead == ']') ADVANCE(26); - if (lookahead == 'x') ADVANCE(23); - if (lookahead == '{') ADVANCE(41); - if (lookahead == '|') ADVANCE(29); - if (lookahead == '}') ADVANCE(42); + if (lookahead == ']') ADVANCE(27); + if (lookahead == 'x') ADVANCE(24); + if (lookahead == '{') ADVANCE(43); + if (lookahead == '|') ADVANCE(30); + if (lookahead == '}') ADVANCE(44); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(48); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(50); END_STATE(); case 1: - if (!eof && (lookahead == 0)) ADVANCE(32); - if (lookahead == '\r') ADVANCE(52); - if (lookahead == '[') ADVANCE(21); - if (lookahead == '{') ADVANCE(41); - if (lookahead == '|') ADVANCE(29); + if (!eof && (lookahead == 0)) ADVANCE(33); + if (lookahead == '\r') ADVANCE(54); + if (lookahead == '#') ADVANCE(63); + if (lookahead == '%') ADVANCE(64); + if (lookahead == '.') ADVANCE(45); + if (lookahead == '[') ADVANCE(22); + if (lookahead == '{') ADVANCE(43); + if (lookahead == '|') ADVANCE(30); if (lookahead != 0 && - lookahead != '\n') ADVANCE(51); + lookahead != '\n') ADVANCE(53); END_STATE(); case 2: if (lookahead == '\n') ADVANCE(14); - if (lookahead == '\r') ADVANCE(53); - if (lookahead == '-') ADVANCE(30); - if (lookahead == ':') ADVANCE(57); - if (lookahead == '[') ADVANCE(21); - if (lookahead == '{') ADVANCE(41); - if (lookahead == '|') ADVANCE(29); + if (lookahead == '\r') ADVANCE(55); + if (lookahead == '#') ADVANCE(63); + if (lookahead == '%') ADVANCE(64); + if (lookahead == '-') ADVANCE(31); + if (lookahead == '.') ADVANCE(45); + if (lookahead == ':') ADVANCE(59); + if (lookahead == '[') ADVANCE(22); + if (lookahead == '{') ADVANCE(43); + if (lookahead == '|') ADVANCE(30); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(58); - if (lookahead != 0) ADVANCE(51); + lookahead == ' ') ADVANCE(60); + if (lookahead != 0) ADVANCE(53); END_STATE(); case 3: - if (lookahead == '\r') ADVANCE(55); - if (lookahead == '#') ADVANCE(60); + if (lookahead == '\r') ADVANCE(57); + if (lookahead == '#') ADVANCE(63); if (lookahead == '%') ADVANCE(64); - if (lookahead == '.') ADVANCE(43); - if (lookahead == '[') ADVANCE(21); - if (lookahead == '{') ADVANCE(41); - if (lookahead == '|') ADVANCE(29); - if (lookahead == '}') ADVANCE(42); + if (lookahead == '.') ADVANCE(45); + if (lookahead == '[') ADVANCE(22); + if (lookahead == '{') ADVANCE(43); + if (lookahead == '|') ADVANCE(30); + if (lookahead == '}') ADVANCE(44); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(50); + lookahead == ' ') ADVANCE(52); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(59); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(61); if (lookahead != 0 && - lookahead != '\n') ADVANCE(51); + lookahead != '\n') ADVANCE(53); END_STATE(); case 4: - if (lookahead == '\r') SKIP(5) + if (lookahead == '\r') ADVANCE(58); + if (lookahead == '#') ADVANCE(63); + if (lookahead == '%') ADVANCE(64); + if (lookahead == '.') ADVANCE(45); + if (lookahead == '[') ADVANCE(22); + if (lookahead == ']') ADVANCE(27); + if (lookahead == '{') ADVANCE(43); + if (lookahead == '|') ADVANCE(30); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(53); + END_STATE(); + case 5: + if (lookahead == '\r') SKIP(6) if (lookahead == '#') ADVANCE(16); if (lookahead == '%') ADVANCE(64); - if (lookahead == '.') ADVANCE(43); + if (lookahead == '.') ADVANCE(45); + if (lookahead == '[') ADVANCE(21); if (lookahead == ']') ADVANCE(15); - if (lookahead == '}') ADVANCE(42); + if (lookahead == '}') ADVANCE(44); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(50); + lookahead == ' ') ADVANCE(52); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(63); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(66); END_STATE(); - case 5: - if (lookahead == '\r') SKIP(5) + case 6: + if (lookahead == '\r') SKIP(6) if (lookahead == '#') ADVANCE(16); if (lookahead == '%') ADVANCE(64); - if (lookahead == '.') ADVANCE(43); + if (lookahead == '.') ADVANCE(45); + if (lookahead == '[') ADVANCE(21); if (lookahead == ']') ADVANCE(15); - if (lookahead == '}') ADVANCE(42); + if (lookahead == '}') ADVANCE(44); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(63); - END_STATE(); - case 6: - if (lookahead == '\r') ADVANCE(56); - if (lookahead == '[') ADVANCE(21); - if (lookahead == ']') ADVANCE(26); - if (lookahead == '{') ADVANCE(41); - if (lookahead == '|') ADVANCE(29); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(51); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(66); END_STATE(); case 7: - if (lookahead == '\r') ADVANCE(35); - if (lookahead == '=') ADVANCE(34); + if (lookahead == '\r') ADVANCE(37); + if (lookahead == '=') ADVANCE(36); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && lookahead != '{' && - lookahead != '}') ADVANCE(36); + lookahead != '}') ADVANCE(38); END_STATE(); case 8: - if (lookahead == '\r') ADVANCE(66); + if (lookahead == '\r') ADVANCE(68); if (lookahead == '%') ADVANCE(64); - if (lookahead == '\\') ADVANCE(67); + if (lookahead == '\\') ADVANCE(69); if (lookahead != 0 && - lookahead != '\n') ADVANCE(65); + lookahead != '\n') ADVANCE(67); END_STATE(); case 9: if (lookahead == '\r') ADVANCE(9); - if (lookahead == '"') ADVANCE(45); - if (lookahead == '-') ADVANCE(30); + if (lookahead == '"') ADVANCE(47); + if (lookahead == '-') ADVANCE(31); if (lookahead == ':') ADVANCE(13); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') ADVANCE(14); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(48); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(50); END_STATE(); case 10: if (lookahead == '\r') SKIP(10) - if (lookahead == ' ') ADVANCE(27); - if (lookahead == 'X') ADVANCE(24); - if (lookahead == 'x') ADVANCE(22); + if (lookahead == ' ') ADVANCE(28); + if (lookahead == 'X') ADVANCE(25); + if (lookahead == 'x') ADVANCE(23); END_STATE(); case 11: - if (lookahead == '\r') ADVANCE(46); + if (lookahead == '\r') SKIP(11) if (lookahead != 0 && - lookahead != '\n' && - lookahead != '"') ADVANCE(47); + (lookahead < '\t' || '\f' < lookahead) && + lookahead != ' ') ADVANCE(42); END_STATE(); case 12: - if (lookahead == '\r') SKIP(12) + if (lookahead == '\r') ADVANCE(48); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(40); + lookahead != '\n' && + lookahead != '"') ADVANCE(49); END_STATE(); case 13: - if (lookahead == '-') ADVANCE(30); + if (lookahead == '-') ADVANCE(31); END_STATE(); case 14: - if (lookahead == '-') ADVANCE(30); + if (lookahead == '-') ADVANCE(31); if (lookahead == ':') ADVANCE(13); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') ADVANCE(14); END_STATE(); case 15: - if (lookahead == ':') ADVANCE(33); + if (lookahead == ':') ADVANCE(34); END_STATE(); case 16: if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '}') ADVANCE(44); + lookahead != '}') ADVANCE(46); END_STATE(); case 17: if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r' && - lookahead != '\\') ADVANCE(62); + lookahead != '\r') ADVANCE(65); END_STATE(); case 18: if (eof) ADVANCE(20); - if (!eof && (lookahead == 0)) ADVANCE(32); + if (!eof && (lookahead == 0)) ADVANCE(33); if (lookahead == '\r') SKIP(18) - if (lookahead == ' ') ADVANCE(27); - if (lookahead == '"') ADVANCE(45); - if (lookahead == '#') ADVANCE(16); + if (lookahead == ' ') ADVANCE(28); + if (lookahead == '"') ADVANCE(47); + if (lookahead == '#') ADVANCE(63); if (lookahead == '%') ADVANCE(64); - if (lookahead == '.') ADVANCE(43); - if (lookahead == ':') ADVANCE(39); - if (lookahead == '=') ADVANCE(34); - if (lookahead == 'X') ADVANCE(25); - if (lookahead == '[') ADVANCE(21); + if (lookahead == '.') ADVANCE(45); + if (lookahead == ':') ADVANCE(41); + if (lookahead == '=') ADVANCE(36); + if (lookahead == 'X') ADVANCE(26); + if (lookahead == '[') ADVANCE(22); if (lookahead == '\\') ADVANCE(17); - if (lookahead == ']') ADVANCE(26); - if (lookahead == 'x') ADVANCE(23); - if (lookahead == '{') ADVANCE(41); - if (lookahead == '|') ADVANCE(29); - if (lookahead == '}') ADVANCE(42); + if (lookahead == ']') ADVANCE(27); + if (lookahead == 'x') ADVANCE(24); + if (lookahead == '{') ADVANCE(43); + if (lookahead == '|') ADVANCE(30); + if (lookahead == '}') ADVANCE(44); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(48); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(50); END_STATE(); case 19: if (eof) ADVANCE(20); - if (lookahead == '\r') ADVANCE(54); - if (lookahead == '[') ADVANCE(21); - if (lookahead == '{') ADVANCE(41); - if (lookahead == '|') ADVANCE(29); + if (lookahead == '\r') ADVANCE(56); + if (lookahead == '#') ADVANCE(63); + if (lookahead == '%') ADVANCE(64); + if (lookahead == '.') ADVANCE(45); + if (lookahead == '[') ADVANCE(22); + if (lookahead == '{') ADVANCE(43); + if (lookahead == '|') ADVANCE(30); if (lookahead != 0 && - lookahead != '\n') ADVANCE(51); + lookahead != '\n') ADVANCE(53); END_STATE(); case 20: ACCEPT_TOKEN(ts_builtin_sym_end); @@ -2867,72 +2930,79 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 22: - ACCEPT_TOKEN(anon_sym_x); + ACCEPT_TOKEN(anon_sym_LBRACK); + if (lookahead == '^') ADVANCE(35); END_STATE(); case 23: + ACCEPT_TOKEN(anon_sym_x); + END_STATE(); + case 24: ACCEPT_TOKEN(anon_sym_x); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(48); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(50); END_STATE(); - case 24: + case 25: ACCEPT_TOKEN(anon_sym_X); END_STATE(); - case 25: + case 26: ACCEPT_TOKEN(anon_sym_X); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(48); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(50); END_STATE(); - case 26: + case 27: ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); - case 27: + case 28: ACCEPT_TOKEN(anon_sym_SPACE); END_STATE(); - case 28: + case 29: ACCEPT_TOKEN(anon_sym_SPACE); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(50); + lookahead == ' ') ADVANCE(52); END_STATE(); - case 29: + case 30: ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); - case 30: + case 31: ACCEPT_TOKEN(sym_table_cell_alignment); - if (lookahead == '-') ADVANCE(30); - if (lookahead == ':') ADVANCE(31); + if (lookahead == '-') ADVANCE(31); + if (lookahead == ':') ADVANCE(32); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(31); + lookahead == ' ') ADVANCE(32); END_STATE(); - case 31: + case 32: ACCEPT_TOKEN(sym_table_cell_alignment); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(31); + lookahead == ' ') ADVANCE(32); END_STATE(); - case 32: + case 33: ACCEPT_TOKEN(anon_sym_NULL); END_STATE(); - case 33: + case 34: ACCEPT_TOKEN(anon_sym_RBRACK_COLON); END_STATE(); - case 34: + case 35: + ACCEPT_TOKEN(anon_sym_LBRACK_CARET); + END_STATE(); + case 36: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 35: + case 37: ACCEPT_TOKEN(sym_language); - if (lookahead == '\r') ADVANCE(35); + if (lookahead == '\r') ADVANCE(37); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && lookahead != '=' && lookahead != '{' && - lookahead != '}') ADVANCE(36); + lookahead != '}') ADVANCE(38); END_STATE(); - case 36: + case 38: ACCEPT_TOKEN(sym_language); if (lookahead != 0 && lookahead != '\t' && @@ -2940,201 +3010,212 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ' && lookahead != '=' && lookahead != '{' && - lookahead != '}') ADVANCE(36); + lookahead != '}') ADVANCE(38); END_STATE(); - case 37: + case 39: ACCEPT_TOKEN(aux_sym__line_token1); - if (lookahead == '\r') ADVANCE(37); + if (lookahead == '\r') ADVANCE(39); if (lookahead != 0 && - lookahead != '\n') ADVANCE(38); + lookahead != '\n') ADVANCE(40); END_STATE(); - case 38: + case 40: ACCEPT_TOKEN(aux_sym__line_token1); if (lookahead != 0 && - lookahead != '\n') ADVANCE(38); + lookahead != '\n') ADVANCE(40); END_STATE(); - case 39: + case 41: ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); - case 40: + case 42: ACCEPT_TOKEN(sym_link_destination); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ') ADVANCE(40); + lookahead != ' ') ADVANCE(42); END_STATE(); - case 41: + case 43: ACCEPT_TOKEN(anon_sym_LBRACE); - if (lookahead == '-') ADVANCE(61); + if (lookahead == '-') ADVANCE(62); END_STATE(); - case 42: + case 44: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 43: + case 45: ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); - case 44: - ACCEPT_TOKEN(sym_identifier); + case 46: + ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '}') ADVANCE(44); + lookahead != '}') ADVANCE(46); END_STATE(); - case 45: + case 47: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 46: + case 48: ACCEPT_TOKEN(aux_sym_value_token1); - if (lookahead == '\r') ADVANCE(46); + if (lookahead == '\r') ADVANCE(48); if (lookahead != 0 && lookahead != '\n' && - lookahead != '"') ADVANCE(47); + lookahead != '"') ADVANCE(49); END_STATE(); - case 47: + case 49: ACCEPT_TOKEN(aux_sym_value_token1); if (lookahead != 0 && lookahead != '\n' && - lookahead != '"') ADVANCE(47); + lookahead != '"') ADVANCE(49); END_STATE(); - case 48: + case 50: ACCEPT_TOKEN(aux_sym_value_token2); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(48); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(50); END_STATE(); - case 49: + case 51: ACCEPT_TOKEN(sym__whitespace); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(49); + lookahead == ' ') ADVANCE(51); END_STATE(); - case 50: + case 52: ACCEPT_TOKEN(sym__whitespace1); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(50); + lookahead == ' ') ADVANCE(52); END_STATE(); - case 51: + case 53: ACCEPT_TOKEN(aux_sym__inline_token1); END_STATE(); - case 52: + case 54: ACCEPT_TOKEN(aux_sym__inline_token1); - if (!eof && (lookahead == 0)) ADVANCE(32); - if (lookahead == '\r') ADVANCE(52); - if (lookahead == '[') ADVANCE(21); - if (lookahead == '{') ADVANCE(41); - if (lookahead == '|') ADVANCE(29); + if (!eof && (lookahead == 0)) ADVANCE(33); + if (lookahead == '\r') ADVANCE(54); + if (lookahead == '#') ADVANCE(63); + if (lookahead == '%') ADVANCE(64); + if (lookahead == '.') ADVANCE(45); + if (lookahead == '[') ADVANCE(22); + if (lookahead == '{') ADVANCE(43); + if (lookahead == '|') ADVANCE(30); if (lookahead != 0 && - lookahead != '\n') ADVANCE(51); + lookahead != '\n') ADVANCE(53); END_STATE(); - case 53: + case 55: ACCEPT_TOKEN(aux_sym__inline_token1); if (lookahead == '\n') ADVANCE(14); - if (lookahead == '\r') ADVANCE(53); - if (lookahead == '-') ADVANCE(30); - if (lookahead == ':') ADVANCE(57); - if (lookahead == '[') ADVANCE(21); - if (lookahead == '{') ADVANCE(41); - if (lookahead == '|') ADVANCE(29); + if (lookahead == '\r') ADVANCE(55); + if (lookahead == '#') ADVANCE(63); + if (lookahead == '%') ADVANCE(64); + if (lookahead == '-') ADVANCE(31); + if (lookahead == '.') ADVANCE(45); + if (lookahead == ':') ADVANCE(59); + if (lookahead == '[') ADVANCE(22); + if (lookahead == '{') ADVANCE(43); + if (lookahead == '|') ADVANCE(30); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(58); - if (lookahead != 0) ADVANCE(51); + lookahead == ' ') ADVANCE(60); + if (lookahead != 0) ADVANCE(53); END_STATE(); - case 54: + case 56: ACCEPT_TOKEN(aux_sym__inline_token1); - if (lookahead == '\r') ADVANCE(54); - if (lookahead == '[') ADVANCE(21); - if (lookahead == '{') ADVANCE(41); - if (lookahead == '|') ADVANCE(29); + if (lookahead == '\r') ADVANCE(56); + if (lookahead == '#') ADVANCE(63); + if (lookahead == '%') ADVANCE(64); + if (lookahead == '.') ADVANCE(45); + if (lookahead == '[') ADVANCE(22); + if (lookahead == '{') ADVANCE(43); + if (lookahead == '|') ADVANCE(30); if (lookahead != 0 && - lookahead != '\n') ADVANCE(51); + lookahead != '\n') ADVANCE(53); END_STATE(); - case 55: + case 57: ACCEPT_TOKEN(aux_sym__inline_token1); - if (lookahead == '\r') ADVANCE(55); - if (lookahead == '#') ADVANCE(60); + if (lookahead == '\r') ADVANCE(57); + if (lookahead == '#') ADVANCE(63); if (lookahead == '%') ADVANCE(64); - if (lookahead == '.') ADVANCE(43); - if (lookahead == '[') ADVANCE(21); - if (lookahead == '{') ADVANCE(41); - if (lookahead == '|') ADVANCE(29); - if (lookahead == '}') ADVANCE(42); + if (lookahead == '.') ADVANCE(45); + if (lookahead == '[') ADVANCE(22); + if (lookahead == '{') ADVANCE(43); + if (lookahead == '|') ADVANCE(30); + if (lookahead == '}') ADVANCE(44); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(59); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(61); if (lookahead != 0 && - lookahead != '\n') ADVANCE(51); + lookahead != '\n') ADVANCE(53); END_STATE(); - case 56: + case 58: ACCEPT_TOKEN(aux_sym__inline_token1); - if (lookahead == '\r') ADVANCE(56); - if (lookahead == '[') ADVANCE(21); - if (lookahead == ']') ADVANCE(26); - if (lookahead == '{') ADVANCE(41); - if (lookahead == '|') ADVANCE(29); + if (lookahead == '\r') ADVANCE(58); + if (lookahead == '#') ADVANCE(63); + if (lookahead == '%') ADVANCE(64); + if (lookahead == '.') ADVANCE(45); + if (lookahead == '[') ADVANCE(22); + if (lookahead == ']') ADVANCE(27); + if (lookahead == '{') ADVANCE(43); + if (lookahead == '|') ADVANCE(30); if (lookahead != 0 && - lookahead != '\n') ADVANCE(51); + lookahead != '\n') ADVANCE(53); END_STATE(); - case 57: + case 59: ACCEPT_TOKEN(aux_sym__inline_token1); - if (lookahead == '-') ADVANCE(30); + if (lookahead == '-') ADVANCE(31); END_STATE(); - case 58: + case 60: ACCEPT_TOKEN(aux_sym__inline_token1); - if (lookahead == '-') ADVANCE(30); + if (lookahead == '-') ADVANCE(31); if (lookahead == ':') ADVANCE(13); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') ADVANCE(14); END_STATE(); - case 59: + case 61: ACCEPT_TOKEN(aux_sym__inline_token1); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(63); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(66); END_STATE(); - case 60: - ACCEPT_TOKEN(aux_sym__inline_token1); + case 62: + ACCEPT_TOKEN(anon_sym_LBRACE_DASH); + END_STATE(); + case 63: + ACCEPT_TOKEN(anon_sym_POUND); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '}') ADVANCE(44); + lookahead != '}') ADVANCE(46); END_STATE(); - case 61: - ACCEPT_TOKEN(anon_sym_LBRACE_DASH); + case 64: + ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); - case 62: + case 65: ACCEPT_TOKEN(sym_backslash_escape); END_STATE(); - case 63: + case 66: ACCEPT_TOKEN(sym__id); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(63); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(66); END_STATE(); - case 64: - ACCEPT_TOKEN(anon_sym_PERCENT); - END_STATE(); - case 65: + case 67: ACCEPT_TOKEN(aux_sym__comment_no_newline_token1); END_STATE(); - case 66: + case 68: ACCEPT_TOKEN(aux_sym__comment_no_newline_token1); - if (lookahead == '\r') ADVANCE(66); - if (lookahead == '\\') ADVANCE(67); + if (lookahead == '\r') ADVANCE(68); + if (lookahead == '\\') ADVANCE(69); if (lookahead != 0 && lookahead != '\n' && - lookahead != '%') ADVANCE(65); + lookahead != '%') ADVANCE(67); END_STATE(); - case 67: + case 69: ACCEPT_TOKEN(aux_sym__comment_no_newline_token1); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r' && - lookahead != '\\') ADVANCE(62); + lookahead != '\r') ADVANCE(65); END_STATE(); default: return false; @@ -3145,66 +3226,66 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, [1] = {.lex_state = 19, .external_lex_state = 2}, [2] = {.lex_state = 19, .external_lex_state = 3}, - [3] = {.lex_state = 19, .external_lex_state = 4}, + [3] = {.lex_state = 19, .external_lex_state = 3}, [4] = {.lex_state = 19, .external_lex_state = 3}, - [5] = {.lex_state = 19, .external_lex_state = 3}, - [6] = {.lex_state = 19, .external_lex_state = 4}, + [5] = {.lex_state = 19, .external_lex_state = 4}, + [6] = {.lex_state = 19, .external_lex_state = 3}, [7] = {.lex_state = 19, .external_lex_state = 4}, [8] = {.lex_state = 19, .external_lex_state = 3}, [9] = {.lex_state = 19, .external_lex_state = 4}, [10] = {.lex_state = 19, .external_lex_state = 4}, - [11] = {.lex_state = 19, .external_lex_state = 3}, - [12] = {.lex_state = 19, .external_lex_state = 4}, + [11] = {.lex_state = 19, .external_lex_state = 4}, + [12] = {.lex_state = 19, .external_lex_state = 3}, [13] = {.lex_state = 19, .external_lex_state = 4}, [14] = {.lex_state = 19, .external_lex_state = 3}, - [15] = {.lex_state = 19, .external_lex_state = 5}, + [15] = {.lex_state = 19, .external_lex_state = 3}, [16] = {.lex_state = 19, .external_lex_state = 4}, - [17] = {.lex_state = 19, .external_lex_state = 4}, - [18] = {.lex_state = 19, .external_lex_state = 4}, + [17] = {.lex_state = 19, .external_lex_state = 3}, + [18] = {.lex_state = 19, .external_lex_state = 3}, [19] = {.lex_state = 19, .external_lex_state = 3}, [20] = {.lex_state = 19, .external_lex_state = 4}, [21] = {.lex_state = 19, .external_lex_state = 3}, - [22] = {.lex_state = 19, .external_lex_state = 4}, - [23] = {.lex_state = 19, .external_lex_state = 4}, - [24] = {.lex_state = 19, .external_lex_state = 4}, - [25] = {.lex_state = 19, .external_lex_state = 4}, + [22] = {.lex_state = 19, .external_lex_state = 5}, + [23] = {.lex_state = 19, .external_lex_state = 3}, + [24] = {.lex_state = 19, .external_lex_state = 3}, + [25] = {.lex_state = 19, .external_lex_state = 3}, [26] = {.lex_state = 19, .external_lex_state = 4}, [27] = {.lex_state = 19, .external_lex_state = 3}, [28] = {.lex_state = 19, .external_lex_state = 5}, - [29] = {.lex_state = 19, .external_lex_state = 3}, - [30] = {.lex_state = 19, .external_lex_state = 3}, - [31] = {.lex_state = 19, .external_lex_state = 3}, - [32] = {.lex_state = 19, .external_lex_state = 3}, - [33] = {.lex_state = 19, .external_lex_state = 3}, - [34] = {.lex_state = 19, .external_lex_state = 3}, - [35] = {.lex_state = 19, .external_lex_state = 3}, - [36] = {.lex_state = 19, .external_lex_state = 3}, - [37] = {.lex_state = 19, .external_lex_state = 3}, - [38] = {.lex_state = 19, .external_lex_state = 3}, - [39] = {.lex_state = 19, .external_lex_state = 3}, - [40] = {.lex_state = 19, .external_lex_state = 3}, - [41] = {.lex_state = 19, .external_lex_state = 3}, - [42] = {.lex_state = 19, .external_lex_state = 3}, - [43] = {.lex_state = 19, .external_lex_state = 3}, - [44] = {.lex_state = 19, .external_lex_state = 3}, - [45] = {.lex_state = 19, .external_lex_state = 3}, - [46] = {.lex_state = 19, .external_lex_state = 3}, - [47] = {.lex_state = 19, .external_lex_state = 3}, - [48] = {.lex_state = 19, .external_lex_state = 3}, - [49] = {.lex_state = 19, .external_lex_state = 3}, - [50] = {.lex_state = 19, .external_lex_state = 3}, - [51] = {.lex_state = 19, .external_lex_state = 3}, - [52] = {.lex_state = 19, .external_lex_state = 3}, - [53] = {.lex_state = 19, .external_lex_state = 3}, - [54] = {.lex_state = 19, .external_lex_state = 4}, + [29] = {.lex_state = 19, .external_lex_state = 4}, + [30] = {.lex_state = 19, .external_lex_state = 4}, + [31] = {.lex_state = 19, .external_lex_state = 4}, + [32] = {.lex_state = 19, .external_lex_state = 4}, + [33] = {.lex_state = 19, .external_lex_state = 4}, + [34] = {.lex_state = 19, .external_lex_state = 4}, + [35] = {.lex_state = 19, .external_lex_state = 4}, + [36] = {.lex_state = 19, .external_lex_state = 4}, + [37] = {.lex_state = 19, .external_lex_state = 4}, + [38] = {.lex_state = 19, .external_lex_state = 4}, + [39] = {.lex_state = 19, .external_lex_state = 4}, + [40] = {.lex_state = 19, .external_lex_state = 4}, + [41] = {.lex_state = 19, .external_lex_state = 4}, + [42] = {.lex_state = 19, .external_lex_state = 4}, + [43] = {.lex_state = 19, .external_lex_state = 4}, + [44] = {.lex_state = 19, .external_lex_state = 4}, + [45] = {.lex_state = 19, .external_lex_state = 4}, + [46] = {.lex_state = 19, .external_lex_state = 4}, + [47] = {.lex_state = 19, .external_lex_state = 4}, + [48] = {.lex_state = 19, .external_lex_state = 4}, + [49] = {.lex_state = 19, .external_lex_state = 4}, + [50] = {.lex_state = 19, .external_lex_state = 4}, + [51] = {.lex_state = 19, .external_lex_state = 4}, + [52] = {.lex_state = 19, .external_lex_state = 4}, + [53] = {.lex_state = 19, .external_lex_state = 4}, + [54] = {.lex_state = 19, .external_lex_state = 3}, [55] = {.lex_state = 19, .external_lex_state = 6}, [56] = {.lex_state = 19, .external_lex_state = 6}, - [57] = {.lex_state = 19, .external_lex_state = 6}, - [58] = {.lex_state = 19, .external_lex_state = 3}, + [57] = {.lex_state = 19, .external_lex_state = 4}, + [58] = {.lex_state = 19, .external_lex_state = 6}, [59] = {.lex_state = 19, .external_lex_state = 6}, - [60] = {.lex_state = 19, .external_lex_state = 6}, - [61] = {.lex_state = 19, .external_lex_state = 3}, - [62] = {.lex_state = 19, .external_lex_state = 3}, + [60] = {.lex_state = 19, .external_lex_state = 4}, + [61] = {.lex_state = 19, .external_lex_state = 6}, + [62] = {.lex_state = 19, .external_lex_state = 4}, [63] = {.lex_state = 19, .external_lex_state = 7}, [64] = {.lex_state = 19, .external_lex_state = 8}, [65] = {.lex_state = 19, .external_lex_state = 9}, @@ -3212,9 +3293,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [67] = {.lex_state = 19, .external_lex_state = 8}, [68] = {.lex_state = 19, .external_lex_state = 9}, [69] = {.lex_state = 19, .external_lex_state = 10}, - [70] = {.lex_state = 19, .external_lex_state = 8}, - [71] = {.lex_state = 19, .external_lex_state = 9}, - [72] = {.lex_state = 19, .external_lex_state = 10}, + [70] = {.lex_state = 19, .external_lex_state = 9}, + [71] = {.lex_state = 19, .external_lex_state = 10}, + [72] = {.lex_state = 19, .external_lex_state = 8}, [73] = {.lex_state = 19, .external_lex_state = 9}, [74] = {.lex_state = 19, .external_lex_state = 10}, [75] = {.lex_state = 19, .external_lex_state = 8}, @@ -3222,194 +3303,194 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [77] = {.lex_state = 19, .external_lex_state = 12}, [78] = {.lex_state = 19, .external_lex_state = 10}, [79] = {.lex_state = 19, .external_lex_state = 13}, - [80] = {.lex_state = 19, .external_lex_state = 13}, - [81] = {.lex_state = 19, .external_lex_state = 14}, - [82] = {.lex_state = 19, .external_lex_state = 14}, - [83] = {.lex_state = 19, .external_lex_state = 10}, + [80] = {.lex_state = 19, .external_lex_state = 14}, + [81] = {.lex_state = 19, .external_lex_state = 13}, + [82] = {.lex_state = 19, .external_lex_state = 15}, + [83] = {.lex_state = 19, .external_lex_state = 9}, [84] = {.lex_state = 19, .external_lex_state = 10}, [85] = {.lex_state = 19, .external_lex_state = 13}, - [86] = {.lex_state = 19, .external_lex_state = 14}, - [87] = {.lex_state = 19, .external_lex_state = 15}, - [88] = {.lex_state = 19, .external_lex_state = 15}, - [89] = {.lex_state = 19, .external_lex_state = 10}, - [90] = {.lex_state = 19, .external_lex_state = 13}, - [91] = {.lex_state = 19, .external_lex_state = 10}, - [92] = {.lex_state = 19, .external_lex_state = 10}, - [93] = {.lex_state = 19, .external_lex_state = 16}, - [94] = {.lex_state = 19, .external_lex_state = 9}, - [95] = {.lex_state = 19, .external_lex_state = 17}, - [96] = {.lex_state = 19, .external_lex_state = 8}, - [97] = {.lex_state = 19, .external_lex_state = 18}, + [86] = {.lex_state = 19, .external_lex_state = 9}, + [87] = {.lex_state = 19, .external_lex_state = 9}, + [88] = {.lex_state = 19, .external_lex_state = 9}, + [89] = {.lex_state = 19, .external_lex_state = 12}, + [90] = {.lex_state = 19, .external_lex_state = 12}, + [91] = {.lex_state = 19, .external_lex_state = 8}, + [92] = {.lex_state = 19, .external_lex_state = 16}, + [93] = {.lex_state = 19, .external_lex_state = 11}, + [94] = {.lex_state = 19, .external_lex_state = 10}, + [95] = {.lex_state = 19, .external_lex_state = 16}, + [96] = {.lex_state = 19, .external_lex_state = 17}, + [97] = {.lex_state = 19, .external_lex_state = 10}, [98] = {.lex_state = 19, .external_lex_state = 18}, - [99] = {.lex_state = 19, .external_lex_state = 18}, - [100] = {.lex_state = 19, .external_lex_state = 13}, - [101] = {.lex_state = 19, .external_lex_state = 8}, - [102] = {.lex_state = 19, .external_lex_state = 10}, + [99] = {.lex_state = 19, .external_lex_state = 11}, + [100] = {.lex_state = 19, .external_lex_state = 14}, + [101] = {.lex_state = 19, .external_lex_state = 19}, + [102] = {.lex_state = 19, .external_lex_state = 8}, [103] = {.lex_state = 19, .external_lex_state = 8}, - [104] = {.lex_state = 19, .external_lex_state = 8}, - [105] = {.lex_state = 19, .external_lex_state = 19}, - [106] = {.lex_state = 19, .external_lex_state = 11}, - [107] = {.lex_state = 19, .external_lex_state = 11}, - [108] = {.lex_state = 19, .external_lex_state = 8}, - [109] = {.lex_state = 19, .external_lex_state = 8}, - [110] = {.lex_state = 19, .external_lex_state = 12}, - [111] = {.lex_state = 19, .external_lex_state = 9}, - [112] = {.lex_state = 19, .external_lex_state = 18}, - [113] = {.lex_state = 19, .external_lex_state = 9}, - [114] = {.lex_state = 19, .external_lex_state = 19}, - [115] = {.lex_state = 19, .external_lex_state = 11}, - [116] = {.lex_state = 19, .external_lex_state = 19}, - [117] = {.lex_state = 19, .external_lex_state = 12}, + [104] = {.lex_state = 19, .external_lex_state = 10}, + [105] = {.lex_state = 19, .external_lex_state = 18}, + [106] = {.lex_state = 19, .external_lex_state = 18}, + [107] = {.lex_state = 19, .external_lex_state = 9}, + [108] = {.lex_state = 19, .external_lex_state = 19}, + [109] = {.lex_state = 19, .external_lex_state = 19}, + [110] = {.lex_state = 19, .external_lex_state = 8}, + [111] = {.lex_state = 19, .external_lex_state = 8}, + [112] = {.lex_state = 19, .external_lex_state = 14}, + [113] = {.lex_state = 19, .external_lex_state = 18}, + [114] = {.lex_state = 19, .external_lex_state = 9}, + [115] = {.lex_state = 19, .external_lex_state = 19}, + [116] = {.lex_state = 19, .external_lex_state = 13}, + [117] = {.lex_state = 19, .external_lex_state = 10}, [118] = {.lex_state = 19, .external_lex_state = 12}, - [119] = {.lex_state = 19, .external_lex_state = 8}, - [120] = {.lex_state = 19, .external_lex_state = 9}, + [119] = {.lex_state = 19, .external_lex_state = 19}, + [120] = {.lex_state = 19, .external_lex_state = 17}, [121] = {.lex_state = 19, .external_lex_state = 9}, - [122] = {.lex_state = 19, .external_lex_state = 19}, - [123] = {.lex_state = 19, .external_lex_state = 18}, - [124] = {.lex_state = 19, .external_lex_state = 12}, - [125] = {.lex_state = 19, .external_lex_state = 16}, - [126] = {.lex_state = 19, .external_lex_state = 9}, - [127] = {.lex_state = 19, .external_lex_state = 9}, - [128] = {.lex_state = 19, .external_lex_state = 14}, - [129] = {.lex_state = 19, .external_lex_state = 4}, - [130] = {.lex_state = 19, .external_lex_state = 4}, - [131] = {.lex_state = 19, .external_lex_state = 3}, - [132] = {.lex_state = 19, .external_lex_state = 3}, - [133] = {.lex_state = 19, .external_lex_state = 3}, + [122] = {.lex_state = 19, .external_lex_state = 10}, + [123] = {.lex_state = 19, .external_lex_state = 8}, + [124] = {.lex_state = 19, .external_lex_state = 14}, + [125] = {.lex_state = 19, .external_lex_state = 14}, + [126] = {.lex_state = 19, .external_lex_state = 11}, + [127] = {.lex_state = 19, .external_lex_state = 11}, + [128] = {.lex_state = 19, .external_lex_state = 8}, + [129] = {.lex_state = 19, .external_lex_state = 3}, + [130] = {.lex_state = 19, .external_lex_state = 3}, + [131] = {.lex_state = 19, .external_lex_state = 4}, + [132] = {.lex_state = 19, .external_lex_state = 4}, + [133] = {.lex_state = 19, .external_lex_state = 4}, [134] = {.lex_state = 19, .external_lex_state = 3}, - [135] = {.lex_state = 19, .external_lex_state = 4}, - [136] = {.lex_state = 19, .external_lex_state = 3}, + [135] = {.lex_state = 19, .external_lex_state = 3}, + [136] = {.lex_state = 19, .external_lex_state = 4}, [137] = {.lex_state = 19, .external_lex_state = 3}, - [138] = {.lex_state = 19, .external_lex_state = 4}, - [139] = {.lex_state = 19, .external_lex_state = 3}, + [138] = {.lex_state = 19, .external_lex_state = 3}, + [139] = {.lex_state = 19, .external_lex_state = 4}, [140] = {.lex_state = 19, .external_lex_state = 3}, - [141] = {.lex_state = 19, .external_lex_state = 4}, - [142] = {.lex_state = 19, .external_lex_state = 3}, + [141] = {.lex_state = 19, .external_lex_state = 3}, + [142] = {.lex_state = 19, .external_lex_state = 4}, [143] = {.lex_state = 19, .external_lex_state = 3}, - [144] = {.lex_state = 19, .external_lex_state = 4}, - [145] = {.lex_state = 19, .external_lex_state = 3}, - [146] = {.lex_state = 19, .external_lex_state = 4}, + [144] = {.lex_state = 19, .external_lex_state = 3}, + [145] = {.lex_state = 19, .external_lex_state = 4}, + [146] = {.lex_state = 19, .external_lex_state = 3}, [147] = {.lex_state = 19, .external_lex_state = 3}, - [148] = {.lex_state = 19, .external_lex_state = 3}, - [149] = {.lex_state = 19, .external_lex_state = 3}, - [150] = {.lex_state = 19, .external_lex_state = 3}, - [151] = {.lex_state = 19, .external_lex_state = 3}, - [152] = {.lex_state = 19, .external_lex_state = 3}, - [153] = {.lex_state = 19, .external_lex_state = 3}, + [148] = {.lex_state = 19, .external_lex_state = 4}, + [149] = {.lex_state = 19, .external_lex_state = 4}, + [150] = {.lex_state = 19, .external_lex_state = 4}, + [151] = {.lex_state = 19, .external_lex_state = 5}, + [152] = {.lex_state = 19, .external_lex_state = 4}, + [153] = {.lex_state = 19, .external_lex_state = 5}, [154] = {.lex_state = 19, .external_lex_state = 4}, - [155] = {.lex_state = 19, .external_lex_state = 3}, - [156] = {.lex_state = 19, .external_lex_state = 3}, - [157] = {.lex_state = 19, .external_lex_state = 3}, - [158] = {.lex_state = 19, .external_lex_state = 3}, + [155] = {.lex_state = 19, .external_lex_state = 4}, + [156] = {.lex_state = 19, .external_lex_state = 4}, + [157] = {.lex_state = 19, .external_lex_state = 5}, + [158] = {.lex_state = 19, .external_lex_state = 4}, [159] = {.lex_state = 19, .external_lex_state = 3}, - [160] = {.lex_state = 19, .external_lex_state = 3}, - [161] = {.lex_state = 19, .external_lex_state = 3}, + [160] = {.lex_state = 19, .external_lex_state = 4}, + [161] = {.lex_state = 19, .external_lex_state = 4}, [162] = {.lex_state = 19, .external_lex_state = 4}, [163] = {.lex_state = 19, .external_lex_state = 3}, - [164] = {.lex_state = 19, .external_lex_state = 3}, + [164] = {.lex_state = 19, .external_lex_state = 4}, [165] = {.lex_state = 19, .external_lex_state = 3}, - [166] = {.lex_state = 19, .external_lex_state = 3}, - [167] = {.lex_state = 19, .external_lex_state = 3}, + [166] = {.lex_state = 19, .external_lex_state = 4}, + [167] = {.lex_state = 19, .external_lex_state = 5}, [168] = {.lex_state = 19, .external_lex_state = 4}, [169] = {.lex_state = 19, .external_lex_state = 3}, [170] = {.lex_state = 19, .external_lex_state = 4}, - [171] = {.lex_state = 19, .external_lex_state = 3}, + [171] = {.lex_state = 19, .external_lex_state = 5}, [172] = {.lex_state = 19, .external_lex_state = 4}, [173] = {.lex_state = 19, .external_lex_state = 3}, [174] = {.lex_state = 19, .external_lex_state = 4}, - [175] = {.lex_state = 19, .external_lex_state = 3}, - [176] = {.lex_state = 19, .external_lex_state = 3}, - [177] = {.lex_state = 19, .external_lex_state = 3}, + [175] = {.lex_state = 19, .external_lex_state = 5}, + [176] = {.lex_state = 19, .external_lex_state = 4}, + [177] = {.lex_state = 19, .external_lex_state = 5}, [178] = {.lex_state = 19, .external_lex_state = 4}, - [179] = {.lex_state = 19, .external_lex_state = 4}, - [180] = {.lex_state = 19, .external_lex_state = 3}, - [181] = {.lex_state = 19, .external_lex_state = 4}, - [182] = {.lex_state = 19, .external_lex_state = 3}, - [183] = {.lex_state = 19, .external_lex_state = 5}, - [184] = {.lex_state = 19, .external_lex_state = 4}, - [185] = {.lex_state = 19, .external_lex_state = 4}, - [186] = {.lex_state = 19, .external_lex_state = 4}, + [179] = {.lex_state = 19, .external_lex_state = 5}, + [180] = {.lex_state = 19, .external_lex_state = 5}, + [181] = {.lex_state = 19, .external_lex_state = 3}, + [182] = {.lex_state = 19, .external_lex_state = 5}, + [183] = {.lex_state = 19, .external_lex_state = 4}, + [184] = {.lex_state = 19, .external_lex_state = 5}, + [185] = {.lex_state = 19, .external_lex_state = 3}, + [186] = {.lex_state = 19, .external_lex_state = 3}, [187] = {.lex_state = 19, .external_lex_state = 5}, - [188] = {.lex_state = 19, .external_lex_state = 5}, - [189] = {.lex_state = 19, .external_lex_state = 4}, - [190] = {.lex_state = 19, .external_lex_state = 5}, - [191] = {.lex_state = 19, .external_lex_state = 4}, + [188] = {.lex_state = 19, .external_lex_state = 4}, + [189] = {.lex_state = 19, .external_lex_state = 5}, + [190] = {.lex_state = 19, .external_lex_state = 4}, + [191] = {.lex_state = 19, .external_lex_state = 5}, [192] = {.lex_state = 19, .external_lex_state = 5}, - [193] = {.lex_state = 19, .external_lex_state = 4}, - [194] = {.lex_state = 19, .external_lex_state = 3}, - [195] = {.lex_state = 19, .external_lex_state = 4}, + [193] = {.lex_state = 19, .external_lex_state = 5}, + [194] = {.lex_state = 19, .external_lex_state = 5}, + [195] = {.lex_state = 19, .external_lex_state = 3}, [196] = {.lex_state = 19, .external_lex_state = 5}, - [197] = {.lex_state = 19, .external_lex_state = 5}, + [197] = {.lex_state = 19, .external_lex_state = 4}, [198] = {.lex_state = 19, .external_lex_state = 5}, - [199] = {.lex_state = 19, .external_lex_state = 4}, - [200] = {.lex_state = 19, .external_lex_state = 4}, - [201] = {.lex_state = 19, .external_lex_state = 4}, - [202] = {.lex_state = 19, .external_lex_state = 4}, - [203] = {.lex_state = 19, .external_lex_state = 3}, + [199] = {.lex_state = 19, .external_lex_state = 5}, + [200] = {.lex_state = 19, .external_lex_state = 5}, + [201] = {.lex_state = 19, .external_lex_state = 3}, + [202] = {.lex_state = 19, .external_lex_state = 5}, + [203] = {.lex_state = 19, .external_lex_state = 5}, [204] = {.lex_state = 19, .external_lex_state = 5}, - [205] = {.lex_state = 19, .external_lex_state = 4}, - [206] = {.lex_state = 19, .external_lex_state = 4}, + [205] = {.lex_state = 19, .external_lex_state = 3}, + [206] = {.lex_state = 19, .external_lex_state = 5}, [207] = {.lex_state = 19, .external_lex_state = 4}, - [208] = {.lex_state = 19, .external_lex_state = 3}, - [209] = {.lex_state = 19, .external_lex_state = 5}, + [208] = {.lex_state = 19, .external_lex_state = 5}, + [209] = {.lex_state = 19, .external_lex_state = 3}, [210] = {.lex_state = 19, .external_lex_state = 5}, - [211] = {.lex_state = 19, .external_lex_state = 5}, - [212] = {.lex_state = 19, .external_lex_state = 4}, - [213] = {.lex_state = 19, .external_lex_state = 4}, - [214] = {.lex_state = 19, .external_lex_state = 4}, + [211] = {.lex_state = 19, .external_lex_state = 4}, + [212] = {.lex_state = 19, .external_lex_state = 5}, + [213] = {.lex_state = 19, .external_lex_state = 3}, + [214] = {.lex_state = 19, .external_lex_state = 5}, [215] = {.lex_state = 19, .external_lex_state = 3}, - [216] = {.lex_state = 19, .external_lex_state = 4}, + [216] = {.lex_state = 19, .external_lex_state = 5}, [217] = {.lex_state = 19, .external_lex_state = 4}, - [218] = {.lex_state = 19, .external_lex_state = 4}, - [219] = {.lex_state = 19, .external_lex_state = 4}, + [218] = {.lex_state = 19, .external_lex_state = 5}, + [219] = {.lex_state = 19, .external_lex_state = 3}, [220] = {.lex_state = 19, .external_lex_state = 4}, - [221] = {.lex_state = 19, .external_lex_state = 4}, - [222] = {.lex_state = 19, .external_lex_state = 5}, - [223] = {.lex_state = 19, .external_lex_state = 3}, - [224] = {.lex_state = 19, .external_lex_state = 4}, + [221] = {.lex_state = 19, .external_lex_state = 3}, + [222] = {.lex_state = 19, .external_lex_state = 3}, + [223] = {.lex_state = 19, .external_lex_state = 5}, + [224] = {.lex_state = 19, .external_lex_state = 5}, [225] = {.lex_state = 19, .external_lex_state = 4}, - [226] = {.lex_state = 19, .external_lex_state = 4}, - [227] = {.lex_state = 19, .external_lex_state = 4}, - [228] = {.lex_state = 19, .external_lex_state = 3}, + [226] = {.lex_state = 19, .external_lex_state = 5}, + [227] = {.lex_state = 19, .external_lex_state = 3}, + [228] = {.lex_state = 19, .external_lex_state = 5}, [229] = {.lex_state = 19, .external_lex_state = 3}, - [230] = {.lex_state = 19, .external_lex_state = 5}, - [231] = {.lex_state = 19, .external_lex_state = 4}, - [232] = {.lex_state = 19, .external_lex_state = 4}, - [233] = {.lex_state = 19, .external_lex_state = 5}, - [234] = {.lex_state = 19, .external_lex_state = 5}, - [235] = {.lex_state = 19, .external_lex_state = 5}, - [236] = {.lex_state = 19, .external_lex_state = 5}, - [237] = {.lex_state = 19, .external_lex_state = 5}, + [230] = {.lex_state = 19, .external_lex_state = 3}, + [231] = {.lex_state = 19, .external_lex_state = 5}, + [232] = {.lex_state = 19, .external_lex_state = 3}, + [233] = {.lex_state = 19, .external_lex_state = 3}, + [234] = {.lex_state = 19, .external_lex_state = 3}, + [235] = {.lex_state = 19, .external_lex_state = 4}, + [236] = {.lex_state = 19, .external_lex_state = 3}, + [237] = {.lex_state = 19, .external_lex_state = 4}, [238] = {.lex_state = 19, .external_lex_state = 5}, [239] = {.lex_state = 19, .external_lex_state = 5}, - [240] = {.lex_state = 19, .external_lex_state = 3}, - [241] = {.lex_state = 19, .external_lex_state = 5}, - [242] = {.lex_state = 19, .external_lex_state = 5}, - [243] = {.lex_state = 19, .external_lex_state = 5}, - [244] = {.lex_state = 19, .external_lex_state = 5}, - [245] = {.lex_state = 19, .external_lex_state = 5}, + [240] = {.lex_state = 19, .external_lex_state = 4}, + [241] = {.lex_state = 19, .external_lex_state = 4}, + [242] = {.lex_state = 19, .external_lex_state = 4}, + [243] = {.lex_state = 19, .external_lex_state = 3}, + [244] = {.lex_state = 19, .external_lex_state = 4}, + [245] = {.lex_state = 19, .external_lex_state = 3}, [246] = {.lex_state = 19, .external_lex_state = 5}, - [247] = {.lex_state = 19, .external_lex_state = 5}, - [248] = {.lex_state = 19, .external_lex_state = 4}, + [247] = {.lex_state = 19, .external_lex_state = 4}, + [248] = {.lex_state = 19, .external_lex_state = 5}, [249] = {.lex_state = 19, .external_lex_state = 5}, - [250] = {.lex_state = 19, .external_lex_state = 5}, - [251] = {.lex_state = 19, .external_lex_state = 5}, - [252] = {.lex_state = 19, .external_lex_state = 5}, + [250] = {.lex_state = 19, .external_lex_state = 4}, + [251] = {.lex_state = 19, .external_lex_state = 4}, + [252] = {.lex_state = 19, .external_lex_state = 3}, [253] = {.lex_state = 19, .external_lex_state = 5}, - [254] = {.lex_state = 19, .external_lex_state = 5}, - [255] = {.lex_state = 19, .external_lex_state = 5}, - [256] = {.lex_state = 19, .external_lex_state = 5}, - [257] = {.lex_state = 19, .external_lex_state = 5}, + [254] = {.lex_state = 19, .external_lex_state = 4}, + [255] = {.lex_state = 19, .external_lex_state = 3}, + [256] = {.lex_state = 19, .external_lex_state = 3}, + [257] = {.lex_state = 19, .external_lex_state = 3}, [258] = {.lex_state = 19, .external_lex_state = 5}, - [259] = {.lex_state = 19, .external_lex_state = 5}, - [260] = {.lex_state = 19, .external_lex_state = 4}, - [261] = {.lex_state = 19, .external_lex_state = 5}, - [262] = {.lex_state = 19, .external_lex_state = 5}, + [259] = {.lex_state = 19, .external_lex_state = 3}, + [260] = {.lex_state = 19, .external_lex_state = 3}, + [261] = {.lex_state = 19, .external_lex_state = 3}, + [262] = {.lex_state = 19, .external_lex_state = 3}, [263] = {.lex_state = 19, .external_lex_state = 5}, - [264] = {.lex_state = 19, .external_lex_state = 5}, - [265] = {.lex_state = 19, .external_lex_state = 5}, - [266] = {.lex_state = 19, .external_lex_state = 3}, - [267] = {.lex_state = 19, .external_lex_state = 7}, + [264] = {.lex_state = 19, .external_lex_state = 3}, + [265] = {.lex_state = 19, .external_lex_state = 4}, + [266] = {.lex_state = 19, .external_lex_state = 7}, + [267] = {.lex_state = 19, .external_lex_state = 4}, [268] = {.lex_state = 19, .external_lex_state = 7}, [269] = {.lex_state = 3, .external_lex_state = 20}, [270] = {.lex_state = 3, .external_lex_state = 20}, @@ -3431,337 +3512,337 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [286] = {.lex_state = 19, .external_lex_state = 22}, [287] = {.lex_state = 19, .external_lex_state = 22}, [288] = {.lex_state = 19, .external_lex_state = 22}, - [289] = {.lex_state = 0, .external_lex_state = 23}, - [290] = {.lex_state = 1, .external_lex_state = 24}, - [291] = {.lex_state = 0, .external_lex_state = 25}, - [292] = {.lex_state = 19, .external_lex_state = 26}, - [293] = {.lex_state = 1, .external_lex_state = 24}, - [294] = {.lex_state = 2, .external_lex_state = 20}, - [295] = {.lex_state = 1, .external_lex_state = 24}, - [296] = {.lex_state = 1, .external_lex_state = 24}, - [297] = {.lex_state = 19, .external_lex_state = 27}, + [289] = {.lex_state = 2, .external_lex_state = 20}, + [290] = {.lex_state = 1, .external_lex_state = 23}, + [291] = {.lex_state = 19, .external_lex_state = 24}, + [292] = {.lex_state = 1, .external_lex_state = 23}, + [293] = {.lex_state = 1, .external_lex_state = 23}, + [294] = {.lex_state = 1, .external_lex_state = 23}, + [295] = {.lex_state = 1, .external_lex_state = 23}, + [296] = {.lex_state = 2, .external_lex_state = 20}, + [297] = {.lex_state = 2, .external_lex_state = 20}, [298] = {.lex_state = 2, .external_lex_state = 20}, - [299] = {.lex_state = 1, .external_lex_state = 24}, - [300] = {.lex_state = 0, .external_lex_state = 23}, + [299] = {.lex_state = 2, .external_lex_state = 20}, + [300] = {.lex_state = 2, .external_lex_state = 20}, [301] = {.lex_state = 2, .external_lex_state = 20}, - [302] = {.lex_state = 2, .external_lex_state = 20}, + [302] = {.lex_state = 19, .external_lex_state = 24}, [303] = {.lex_state = 2, .external_lex_state = 20}, - [304] = {.lex_state = 2, .external_lex_state = 20}, - [305] = {.lex_state = 2, .external_lex_state = 20}, - [306] = {.lex_state = 1, .external_lex_state = 24}, - [307] = {.lex_state = 19, .external_lex_state = 26}, - [308] = {.lex_state = 2, .external_lex_state = 20}, - [309] = {.lex_state = 2, .external_lex_state = 20}, - [310] = {.lex_state = 2, .external_lex_state = 20}, + [304] = {.lex_state = 1, .external_lex_state = 23}, + [305] = {.lex_state = 19, .external_lex_state = 25}, + [306] = {.lex_state = 2, .external_lex_state = 20}, + [307] = {.lex_state = 2, .external_lex_state = 20}, + [308] = {.lex_state = 19, .external_lex_state = 26}, + [309] = {.lex_state = 19, .external_lex_state = 20}, + [310] = {.lex_state = 19, .external_lex_state = 20}, [311] = {.lex_state = 19, .external_lex_state = 20}, - [312] = {.lex_state = 4}, - [313] = {.lex_state = 4}, - [314] = {.lex_state = 4}, - [315] = {.lex_state = 0, .external_lex_state = 25}, + [312] = {.lex_state = 19, .external_lex_state = 20}, + [313] = {.lex_state = 19, .external_lex_state = 20}, + [314] = {.lex_state = 19, .external_lex_state = 24}, + [315] = {.lex_state = 19, .external_lex_state = 25}, [316] = {.lex_state = 19, .external_lex_state = 26}, - [317] = {.lex_state = 4}, + [317] = {.lex_state = 2}, [318] = {.lex_state = 19, .external_lex_state = 27}, - [319] = {.lex_state = 19, .external_lex_state = 28}, - [320] = {.lex_state = 19, .external_lex_state = 20}, - [321] = {.lex_state = 4}, - [322] = {.lex_state = 19, .external_lex_state = 20}, - [323] = {.lex_state = 19, .external_lex_state = 28}, - [324] = {.lex_state = 19, .external_lex_state = 20}, - [325] = {.lex_state = 4}, - [326] = {.lex_state = 19, .external_lex_state = 20}, - [327] = {.lex_state = 19, .external_lex_state = 29}, - [328] = {.lex_state = 19, .external_lex_state = 29}, - [329] = {.lex_state = 19, .external_lex_state = 29}, + [319] = {.lex_state = 19, .external_lex_state = 26}, + [320] = {.lex_state = 2}, + [321] = {.lex_state = 19}, + [322] = {.lex_state = 19, .external_lex_state = 27}, + [323] = {.lex_state = 2}, + [324] = {.lex_state = 19, .external_lex_state = 27}, + [325] = {.lex_state = 19, .external_lex_state = 27}, + [326] = {.lex_state = 19}, + [327] = {.lex_state = 19, .external_lex_state = 27}, + [328] = {.lex_state = 19, .external_lex_state = 27}, + [329] = {.lex_state = 2}, [330] = {.lex_state = 19}, - [331] = {.lex_state = 2}, - [332] = {.lex_state = 19, .external_lex_state = 29}, + [331] = {.lex_state = 19}, + [332] = {.lex_state = 2}, [333] = {.lex_state = 19}, [334] = {.lex_state = 2}, - [335] = {.lex_state = 19, .external_lex_state = 29}, - [336] = {.lex_state = 19, .external_lex_state = 29}, - [337] = {.lex_state = 2}, - [338] = {.lex_state = 19}, - [339] = {.lex_state = 19, .external_lex_state = 29}, - [340] = {.lex_state = 19, .external_lex_state = 29}, - [341] = {.lex_state = 19, .external_lex_state = 28}, - [342] = {.lex_state = 19}, - [343] = {.lex_state = 2}, - [344] = {.lex_state = 19, .external_lex_state = 29}, - [345] = {.lex_state = 19, .external_lex_state = 29}, - [346] = {.lex_state = 19, .external_lex_state = 29}, - [347] = {.lex_state = 19, .external_lex_state = 29}, - [348] = {.lex_state = 2}, + [335] = {.lex_state = 19, .external_lex_state = 27}, + [336] = {.lex_state = 2}, + [337] = {.lex_state = 19}, + [338] = {.lex_state = 2}, + [339] = {.lex_state = 19, .external_lex_state = 27}, + [340] = {.lex_state = 19, .external_lex_state = 27}, + [341] = {.lex_state = 19}, + [342] = {.lex_state = 19, .external_lex_state = 27}, + [343] = {.lex_state = 19, .external_lex_state = 27}, + [344] = {.lex_state = 19, .external_lex_state = 27}, + [345] = {.lex_state = 19}, + [346] = {.lex_state = 19, .external_lex_state = 27}, + [347] = {.lex_state = 2}, + [348] = {.lex_state = 19, .external_lex_state = 27}, [349] = {.lex_state = 19}, - [350] = {.lex_state = 19}, - [351] = {.lex_state = 19}, - [352] = {.lex_state = 19, .external_lex_state = 29}, - [353] = {.lex_state = 2}, - [354] = {.lex_state = 19, .external_lex_state = 29}, - [355] = {.lex_state = 19}, - [356] = {.lex_state = 19, .external_lex_state = 29}, - [357] = {.lex_state = 2}, - [358] = {.lex_state = 19}, - [359] = {.lex_state = 2}, - [360] = {.lex_state = 2}, - [361] = {.lex_state = 2}, - [362] = {.lex_state = 19, .external_lex_state = 20}, - [363] = {.lex_state = 0, .external_lex_state = 23}, - [364] = {.lex_state = 19}, - [365] = {.lex_state = 19}, - [366] = {.lex_state = 19, .external_lex_state = 20}, - [367] = {.lex_state = 37, .external_lex_state = 30}, - [368] = {.lex_state = 37, .external_lex_state = 30}, - [369] = {.lex_state = 19}, - [370] = {.lex_state = 37, .external_lex_state = 30}, - [371] = {.lex_state = 0, .external_lex_state = 31}, - [372] = {.lex_state = 37, .external_lex_state = 30}, - [373] = {.lex_state = 37, .external_lex_state = 30}, - [374] = {.lex_state = 37, .external_lex_state = 30}, - [375] = {.lex_state = 6}, - [376] = {.lex_state = 0, .external_lex_state = 25}, - [377] = {.lex_state = 19}, - [378] = {.lex_state = 0, .external_lex_state = 31}, - [379] = {.lex_state = 37, .external_lex_state = 30}, - [380] = {.lex_state = 6}, - [381] = {.lex_state = 0, .external_lex_state = 31}, - [382] = {.lex_state = 37, .external_lex_state = 30}, - [383] = {.lex_state = 37, .external_lex_state = 30}, - [384] = {.lex_state = 37, .external_lex_state = 30}, - [385] = {.lex_state = 19, .external_lex_state = 32}, - [386] = {.lex_state = 37, .external_lex_state = 30}, - [387] = {.lex_state = 0, .external_lex_state = 31}, - [388] = {.lex_state = 19, .external_lex_state = 32}, - [389] = {.lex_state = 0, .external_lex_state = 31}, - [390] = {.lex_state = 37, .external_lex_state = 30}, - [391] = {.lex_state = 0, .external_lex_state = 31}, - [392] = {.lex_state = 37, .external_lex_state = 30}, - [393] = {.lex_state = 37, .external_lex_state = 30}, - [394] = {.lex_state = 37, .external_lex_state = 30}, - [395] = {.lex_state = 0, .external_lex_state = 33}, - [396] = {.lex_state = 0, .external_lex_state = 34}, - [397] = {.lex_state = 0, .external_lex_state = 33}, - [398] = {.lex_state = 0, .external_lex_state = 35}, - [399] = {.lex_state = 0, .external_lex_state = 34}, - [400] = {.lex_state = 0, .external_lex_state = 35}, - [401] = {.lex_state = 0, .external_lex_state = 33}, - [402] = {.lex_state = 0, .external_lex_state = 34}, - [403] = {.lex_state = 19, .external_lex_state = 27}, - [404] = {.lex_state = 0, .external_lex_state = 33}, - [405] = {.lex_state = 1, .external_lex_state = 24}, - [406] = {.lex_state = 19, .external_lex_state = 27}, + [350] = {.lex_state = 19, .external_lex_state = 27}, + [351] = {.lex_state = 2}, + [352] = {.lex_state = 19}, + [353] = {.lex_state = 19}, + [354] = {.lex_state = 19, .external_lex_state = 20}, + [355] = {.lex_state = 19, .external_lex_state = 20}, + [356] = {.lex_state = 19, .external_lex_state = 28}, + [357] = {.lex_state = 19}, + [358] = {.lex_state = 0, .external_lex_state = 29}, + [359] = {.lex_state = 4}, + [360] = {.lex_state = 19, .external_lex_state = 28}, + [361] = {.lex_state = 4}, + [362] = {.lex_state = 19}, + [363] = {.lex_state = 19, .external_lex_state = 20}, + [364] = {.lex_state = 5}, + [365] = {.lex_state = 5}, + [366] = {.lex_state = 1, .external_lex_state = 23}, + [367] = {.lex_state = 1, .external_lex_state = 23}, + [368] = {.lex_state = 5}, + [369] = {.lex_state = 0, .external_lex_state = 30}, + [370] = {.lex_state = 5}, + [371] = {.lex_state = 19, .external_lex_state = 25}, + [372] = {.lex_state = 19, .external_lex_state = 25}, + [373] = {.lex_state = 0, .external_lex_state = 29}, + [374] = {.lex_state = 19}, + [375] = {.lex_state = 5}, + [376] = {.lex_state = 19}, + [377] = {.lex_state = 5}, + [378] = {.lex_state = 19, .external_lex_state = 28}, + [379] = {.lex_state = 0, .external_lex_state = 30}, + [380] = {.lex_state = 4}, + [381] = {.lex_state = 19, .external_lex_state = 25}, + [382] = {.lex_state = 19}, + [383] = {.lex_state = 0, .external_lex_state = 29}, + [384] = {.lex_state = 0, .external_lex_state = 30}, + [385] = {.lex_state = 39, .external_lex_state = 31}, + [386] = {.lex_state = 39, .external_lex_state = 31}, + [387] = {.lex_state = 39, .external_lex_state = 31}, + [388] = {.lex_state = 39, .external_lex_state = 31}, + [389] = {.lex_state = 39, .external_lex_state = 31}, + [390] = {.lex_state = 0, .external_lex_state = 32}, + [391] = {.lex_state = 0, .external_lex_state = 32}, + [392] = {.lex_state = 39, .external_lex_state = 31}, + [393] = {.lex_state = 39, .external_lex_state = 31}, + [394] = {.lex_state = 39, .external_lex_state = 31}, + [395] = {.lex_state = 39, .external_lex_state = 31}, + [396] = {.lex_state = 0, .external_lex_state = 32}, + [397] = {.lex_state = 0, .external_lex_state = 32}, + [398] = {.lex_state = 39, .external_lex_state = 31}, + [399] = {.lex_state = 39, .external_lex_state = 31}, + [400] = {.lex_state = 39, .external_lex_state = 31}, + [401] = {.lex_state = 39, .external_lex_state = 31}, + [402] = {.lex_state = 39, .external_lex_state = 31}, + [403] = {.lex_state = 39, .external_lex_state = 31}, + [404] = {.lex_state = 0, .external_lex_state = 32}, + [405] = {.lex_state = 0, .external_lex_state = 32}, + [406] = {.lex_state = 0, .external_lex_state = 33}, [407] = {.lex_state = 0, .external_lex_state = 34}, - [408] = {.lex_state = 37, .external_lex_state = 30}, - [409] = {.lex_state = 0, .external_lex_state = 34}, - [410] = {.lex_state = 19}, - [411] = {.lex_state = 19}, - [412] = {.lex_state = 0, .external_lex_state = 35}, + [408] = {.lex_state = 0, .external_lex_state = 34}, + [409] = {.lex_state = 0, .external_lex_state = 35}, + [410] = {.lex_state = 0, .external_lex_state = 33}, + [411] = {.lex_state = 0, .external_lex_state = 34}, + [412] = {.lex_state = 0, .external_lex_state = 33}, [413] = {.lex_state = 0, .external_lex_state = 35}, - [414] = {.lex_state = 1, .external_lex_state = 24}, + [414] = {.lex_state = 0, .external_lex_state = 35}, [415] = {.lex_state = 0, .external_lex_state = 35}, - [416] = {.lex_state = 0, .external_lex_state = 35}, - [417] = {.lex_state = 0, .external_lex_state = 34}, - [418] = {.lex_state = 0, .external_lex_state = 33}, - [419] = {.lex_state = 0, .external_lex_state = 33}, - [420] = {.lex_state = 37, .external_lex_state = 30}, - [421] = {.lex_state = 0, .external_lex_state = 36}, - [422] = {.lex_state = 0, .external_lex_state = 23}, - [423] = {.lex_state = 0, .external_lex_state = 36}, - [424] = {.lex_state = 0, .external_lex_state = 36}, - [425] = {.lex_state = 0, .external_lex_state = 36}, - [426] = {.lex_state = 0, .external_lex_state = 36}, + [416] = {.lex_state = 0, .external_lex_state = 34}, + [417] = {.lex_state = 0, .external_lex_state = 33}, + [418] = {.lex_state = 0, .external_lex_state = 35}, + [419] = {.lex_state = 39, .external_lex_state = 31}, + [420] = {.lex_state = 0, .external_lex_state = 35}, + [421] = {.lex_state = 0, .external_lex_state = 33}, + [422] = {.lex_state = 0, .external_lex_state = 34}, + [423] = {.lex_state = 39, .external_lex_state = 31}, + [424] = {.lex_state = 0, .external_lex_state = 34}, + [425] = {.lex_state = 0, .external_lex_state = 33}, + [426] = {.lex_state = 0, .external_lex_state = 29}, [427] = {.lex_state = 0, .external_lex_state = 36}, [428] = {.lex_state = 0, .external_lex_state = 36}, [429] = {.lex_state = 0, .external_lex_state = 36}, [430] = {.lex_state = 0, .external_lex_state = 36}, [431] = {.lex_state = 0, .external_lex_state = 36}, [432] = {.lex_state = 0, .external_lex_state = 36}, - [433] = {.lex_state = 0, .external_lex_state = 36}, - [434] = {.lex_state = 0, .external_lex_state = 36}, + [433] = {.lex_state = 5}, + [434] = {.lex_state = 5}, [435] = {.lex_state = 0, .external_lex_state = 36}, [436] = {.lex_state = 0, .external_lex_state = 36}, - [437] = {.lex_state = 0, .external_lex_state = 36}, + [437] = {.lex_state = 0, .external_lex_state = 29}, [438] = {.lex_state = 0, .external_lex_state = 36}, - [439] = {.lex_state = 0, .external_lex_state = 36}, + [439] = {.lex_state = 0, .external_lex_state = 29}, [440] = {.lex_state = 0, .external_lex_state = 36}, [441] = {.lex_state = 0, .external_lex_state = 36}, [442] = {.lex_state = 0, .external_lex_state = 36}, [443] = {.lex_state = 0, .external_lex_state = 36}, - [444] = {.lex_state = 4}, + [444] = {.lex_state = 0, .external_lex_state = 36}, [445] = {.lex_state = 0, .external_lex_state = 36}, [446] = {.lex_state = 0, .external_lex_state = 36}, - [447] = {.lex_state = 4}, + [447] = {.lex_state = 0, .external_lex_state = 36}, [448] = {.lex_state = 0, .external_lex_state = 36}, - [449] = {.lex_state = 0, .external_lex_state = 36}, - [450] = {.lex_state = 0, .external_lex_state = 23}, - [451] = {.lex_state = 0, .external_lex_state = 23}, + [449] = {.lex_state = 5}, + [450] = {.lex_state = 5}, + [451] = {.lex_state = 0, .external_lex_state = 36}, [452] = {.lex_state = 0, .external_lex_state = 36}, - [453] = {.lex_state = 4}, - [454] = {.lex_state = 0, .external_lex_state = 23}, + [453] = {.lex_state = 0, .external_lex_state = 36}, + [454] = {.lex_state = 0, .external_lex_state = 29}, [455] = {.lex_state = 0, .external_lex_state = 36}, [456] = {.lex_state = 0, .external_lex_state = 36}, [457] = {.lex_state = 0, .external_lex_state = 36}, [458] = {.lex_state = 0, .external_lex_state = 36}, - [459] = {.lex_state = 0, .external_lex_state = 36}, + [459] = {.lex_state = 0, .external_lex_state = 29}, [460] = {.lex_state = 0, .external_lex_state = 36}, [461] = {.lex_state = 0, .external_lex_state = 36}, - [462] = {.lex_state = 0, .external_lex_state = 23}, - [463] = {.lex_state = 0, .external_lex_state = 23}, + [462] = {.lex_state = 0, .external_lex_state = 29}, + [463] = {.lex_state = 0, .external_lex_state = 36}, [464] = {.lex_state = 0, .external_lex_state = 36}, - [465] = {.lex_state = 19, .external_lex_state = 27}, - [466] = {.lex_state = 0, .external_lex_state = 36}, + [465] = {.lex_state = 0, .external_lex_state = 36}, + [466] = {.lex_state = 5}, [467] = {.lex_state = 0, .external_lex_state = 36}, - [468] = {.lex_state = 4}, - [469] = {.lex_state = 4}, - [470] = {.lex_state = 4}, + [468] = {.lex_state = 0, .external_lex_state = 36}, + [469] = {.lex_state = 0, .external_lex_state = 36}, + [470] = {.lex_state = 0, .external_lex_state = 36}, [471] = {.lex_state = 0, .external_lex_state = 36}, - [472] = {.lex_state = 4}, - [473] = {.lex_state = 4}, - [474] = {.lex_state = 0, .external_lex_state = 23}, - [475] = {.lex_state = 0, .external_lex_state = 36}, + [472] = {.lex_state = 0, .external_lex_state = 36}, + [473] = {.lex_state = 0, .external_lex_state = 36}, + [474] = {.lex_state = 5}, + [475] = {.lex_state = 5}, [476] = {.lex_state = 0, .external_lex_state = 36}, - [477] = {.lex_state = 0, .external_lex_state = 36}, - [478] = {.lex_state = 0, .external_lex_state = 25}, - [479] = {.lex_state = 0, .external_lex_state = 25}, - [480] = {.lex_state = 0, .external_lex_state = 25}, - [481] = {.lex_state = 0, .external_lex_state = 25}, - [482] = {.lex_state = 0, .external_lex_state = 37}, - [483] = {.lex_state = 0, .external_lex_state = 25}, - [484] = {.lex_state = 0, .external_lex_state = 25}, + [477] = {.lex_state = 0, .external_lex_state = 29}, + [478] = {.lex_state = 0, .external_lex_state = 36}, + [479] = {.lex_state = 0, .external_lex_state = 36}, + [480] = {.lex_state = 0, .external_lex_state = 36}, + [481] = {.lex_state = 5}, + [482] = {.lex_state = 5}, + [483] = {.lex_state = 0, .external_lex_state = 30}, + [484] = {.lex_state = 0, .external_lex_state = 30}, [485] = {.lex_state = 0, .external_lex_state = 30}, - [486] = {.lex_state = 0, .external_lex_state = 30}, - [487] = {.lex_state = 0, .external_lex_state = 30}, - [488] = {.lex_state = 0, .external_lex_state = 25}, - [489] = {.lex_state = 0, .external_lex_state = 38}, - [490] = {.lex_state = 0, .external_lex_state = 39}, - [491] = {.lex_state = 0, .external_lex_state = 40}, - [492] = {.lex_state = 0, .external_lex_state = 41}, - [493] = {.lex_state = 0, .external_lex_state = 42}, - [494] = {.lex_state = 0, .external_lex_state = 43}, - [495] = {.lex_state = 0, .external_lex_state = 44}, - [496] = {.lex_state = 0, .external_lex_state = 45}, - [497] = {.lex_state = 0, .external_lex_state = 46}, - [498] = {.lex_state = 0, .external_lex_state = 39}, - [499] = {.lex_state = 0, .external_lex_state = 47}, - [500] = {.lex_state = 0, .external_lex_state = 48}, - [501] = {.lex_state = 0, .external_lex_state = 49}, - [502] = {.lex_state = 0, .external_lex_state = 50}, - [503] = {.lex_state = 0, .external_lex_state = 51}, - [504] = {.lex_state = 0, .external_lex_state = 52}, - [505] = {.lex_state = 0, .external_lex_state = 53}, - [506] = {.lex_state = 7, .external_lex_state = 29}, - [507] = {.lex_state = 37}, - [508] = {.lex_state = 7, .external_lex_state = 29}, - [509] = {.lex_state = 7, .external_lex_state = 29}, - [510] = {.lex_state = 7, .external_lex_state = 29}, - [511] = {.lex_state = 8}, - [512] = {.lex_state = 37, .external_lex_state = 54}, - [513] = {.lex_state = 37}, - [514] = {.lex_state = 8}, - [515] = {.lex_state = 0, .external_lex_state = 53}, - [516] = {.lex_state = 0, .external_lex_state = 52}, - [517] = {.lex_state = 0, .external_lex_state = 51}, - [518] = {.lex_state = 0, .external_lex_state = 50}, - [519] = {.lex_state = 0, .external_lex_state = 49}, - [520] = {.lex_state = 0, .external_lex_state = 48}, - [521] = {.lex_state = 0, .external_lex_state = 47}, - [522] = {.lex_state = 0, .external_lex_state = 39}, - [523] = {.lex_state = 0, .external_lex_state = 46}, - [524] = {.lex_state = 0, .external_lex_state = 45}, - [525] = {.lex_state = 0, .external_lex_state = 44}, - [526] = {.lex_state = 0, .external_lex_state = 43}, - [527] = {.lex_state = 0, .external_lex_state = 42}, - [528] = {.lex_state = 0, .external_lex_state = 55}, - [529] = {.lex_state = 0, .external_lex_state = 41}, - [530] = {.lex_state = 0, .external_lex_state = 40}, - [531] = {.lex_state = 0, .external_lex_state = 38}, - [532] = {.lex_state = 8}, - [533] = {.lex_state = 37, .external_lex_state = 54}, - [534] = {.lex_state = 0, .external_lex_state = 53}, - [535] = {.lex_state = 0, .external_lex_state = 52}, - [536] = {.lex_state = 0, .external_lex_state = 51}, - [537] = {.lex_state = 0, .external_lex_state = 50}, - [538] = {.lex_state = 0, .external_lex_state = 49}, - [539] = {.lex_state = 0, .external_lex_state = 48}, - [540] = {.lex_state = 0, .external_lex_state = 47}, - [541] = {.lex_state = 0, .external_lex_state = 39}, - [542] = {.lex_state = 0, .external_lex_state = 46}, - [543] = {.lex_state = 0, .external_lex_state = 45}, - [544] = {.lex_state = 0, .external_lex_state = 44}, - [545] = {.lex_state = 0, .external_lex_state = 43}, - [546] = {.lex_state = 0, .external_lex_state = 42}, - [547] = {.lex_state = 0, .external_lex_state = 41}, - [548] = {.lex_state = 0, .external_lex_state = 40}, - [549] = {.lex_state = 0, .external_lex_state = 38}, - [550] = {.lex_state = 0, .external_lex_state = 53}, - [551] = {.lex_state = 0, .external_lex_state = 52}, - [552] = {.lex_state = 0, .external_lex_state = 51}, - [553] = {.lex_state = 0, .external_lex_state = 50}, - [554] = {.lex_state = 0, .external_lex_state = 49}, - [555] = {.lex_state = 0, .external_lex_state = 48}, - [556] = {.lex_state = 0, .external_lex_state = 47}, - [557] = {.lex_state = 0, .external_lex_state = 39}, - [558] = {.lex_state = 0, .external_lex_state = 46}, - [559] = {.lex_state = 7, .external_lex_state = 29}, + [486] = {.lex_state = 0, .external_lex_state = 31}, + [487] = {.lex_state = 0, .external_lex_state = 31}, + [488] = {.lex_state = 0, .external_lex_state = 37}, + [489] = {.lex_state = 0, .external_lex_state = 30}, + [490] = {.lex_state = 0, .external_lex_state = 30}, + [491] = {.lex_state = 0, .external_lex_state = 31}, + [492] = {.lex_state = 0, .external_lex_state = 30}, + [493] = {.lex_state = 0, .external_lex_state = 30}, + [494] = {.lex_state = 0, .external_lex_state = 38}, + [495] = {.lex_state = 0, .external_lex_state = 39}, + [496] = {.lex_state = 0, .external_lex_state = 40}, + [497] = {.lex_state = 0, .external_lex_state = 41}, + [498] = {.lex_state = 0, .external_lex_state = 42}, + [499] = {.lex_state = 0, .external_lex_state = 43}, + [500] = {.lex_state = 0, .external_lex_state = 44}, + [501] = {.lex_state = 0, .external_lex_state = 45}, + [502] = {.lex_state = 0, .external_lex_state = 46}, + [503] = {.lex_state = 0, .external_lex_state = 47}, + [504] = {.lex_state = 0, .external_lex_state = 48}, + [505] = {.lex_state = 0, .external_lex_state = 49}, + [506] = {.lex_state = 0, .external_lex_state = 39}, + [507] = {.lex_state = 0, .external_lex_state = 50}, + [508] = {.lex_state = 0, .external_lex_state = 38}, + [509] = {.lex_state = 0, .external_lex_state = 51}, + [510] = {.lex_state = 0, .external_lex_state = 52}, + [511] = {.lex_state = 0, .external_lex_state = 52}, + [512] = {.lex_state = 0, .external_lex_state = 45}, + [513] = {.lex_state = 0, .external_lex_state = 44}, + [514] = {.lex_state = 0, .external_lex_state = 51}, + [515] = {.lex_state = 0, .external_lex_state = 38}, + [516] = {.lex_state = 0, .external_lex_state = 43}, + [517] = {.lex_state = 0, .external_lex_state = 50}, + [518] = {.lex_state = 0, .external_lex_state = 39}, + [519] = {.lex_state = 7, .external_lex_state = 27}, + [520] = {.lex_state = 0, .external_lex_state = 49}, + [521] = {.lex_state = 0, .external_lex_state = 48}, + [522] = {.lex_state = 0, .external_lex_state = 42}, + [523] = {.lex_state = 0, .external_lex_state = 41}, + [524] = {.lex_state = 0, .external_lex_state = 47}, + [525] = {.lex_state = 0, .external_lex_state = 40}, + [526] = {.lex_state = 0, .external_lex_state = 53}, + [527] = {.lex_state = 0, .external_lex_state = 46}, + [528] = {.lex_state = 39}, + [529] = {.lex_state = 39, .external_lex_state = 54}, + [530] = {.lex_state = 7, .external_lex_state = 27}, + [531] = {.lex_state = 0, .external_lex_state = 55}, + [532] = {.lex_state = 0, .external_lex_state = 46}, + [533] = {.lex_state = 7, .external_lex_state = 27}, + [534] = {.lex_state = 0, .external_lex_state = 47}, + [535] = {.lex_state = 0, .external_lex_state = 48}, + [536] = {.lex_state = 0, .external_lex_state = 49}, + [537] = {.lex_state = 0, .external_lex_state = 39}, + [538] = {.lex_state = 7, .external_lex_state = 27}, + [539] = {.lex_state = 7, .external_lex_state = 27}, + [540] = {.lex_state = 8}, + [541] = {.lex_state = 0, .external_lex_state = 50}, + [542] = {.lex_state = 0, .external_lex_state = 38}, + [543] = {.lex_state = 0, .external_lex_state = 51}, + [544] = {.lex_state = 0, .external_lex_state = 46}, + [545] = {.lex_state = 0, .external_lex_state = 47}, + [546] = {.lex_state = 0, .external_lex_state = 48}, + [547] = {.lex_state = 0, .external_lex_state = 49}, + [548] = {.lex_state = 0, .external_lex_state = 39}, + [549] = {.lex_state = 0, .external_lex_state = 50}, + [550] = {.lex_state = 0, .external_lex_state = 38}, + [551] = {.lex_state = 0, .external_lex_state = 51}, + [552] = {.lex_state = 0, .external_lex_state = 52}, + [553] = {.lex_state = 0, .external_lex_state = 45}, + [554] = {.lex_state = 0, .external_lex_state = 44}, + [555] = {.lex_state = 0, .external_lex_state = 43}, + [556] = {.lex_state = 0, .external_lex_state = 52}, + [557] = {.lex_state = 0, .external_lex_state = 42}, + [558] = {.lex_state = 0, .external_lex_state = 53}, + [559] = {.lex_state = 0, .external_lex_state = 40}, [560] = {.lex_state = 0, .external_lex_state = 45}, [561] = {.lex_state = 0, .external_lex_state = 44}, - [562] = {.lex_state = 0, .external_lex_state = 52}, - [563] = {.lex_state = 0, .external_lex_state = 42}, - [564] = {.lex_state = 0, .external_lex_state = 41}, - [565] = {.lex_state = 0, .external_lex_state = 40}, - [566] = {.lex_state = 0, .external_lex_state = 53}, - [567] = {.lex_state = 0, .external_lex_state = 52}, - [568] = {.lex_state = 0, .external_lex_state = 51}, - [569] = {.lex_state = 0, .external_lex_state = 50}, - [570] = {.lex_state = 0, .external_lex_state = 49}, - [571] = {.lex_state = 0, .external_lex_state = 48}, - [572] = {.lex_state = 0, .external_lex_state = 47}, - [573] = {.lex_state = 0, .external_lex_state = 39}, - [574] = {.lex_state = 0, .external_lex_state = 46}, - [575] = {.lex_state = 0, .external_lex_state = 45}, - [576] = {.lex_state = 0, .external_lex_state = 44}, - [577] = {.lex_state = 0, .external_lex_state = 43}, - [578] = {.lex_state = 0, .external_lex_state = 42}, - [579] = {.lex_state = 0, .external_lex_state = 41}, - [580] = {.lex_state = 0, .external_lex_state = 56}, - [581] = {.lex_state = 0, .external_lex_state = 40}, - [582] = {.lex_state = 0, .external_lex_state = 38}, - [583] = {.lex_state = 0, .external_lex_state = 38}, - [584] = {.lex_state = 0, .external_lex_state = 40}, - [585] = {.lex_state = 0, .external_lex_state = 41}, - [586] = {.lex_state = 0, .external_lex_state = 56}, - [587] = {.lex_state = 0, .external_lex_state = 42}, - [588] = {.lex_state = 0, .external_lex_state = 57}, - [589] = {.lex_state = 0, .external_lex_state = 57}, + [562] = {.lex_state = 0, .external_lex_state = 56}, + [563] = {.lex_state = 0, .external_lex_state = 43}, + [564] = {.lex_state = 0, .external_lex_state = 42}, + [565] = {.lex_state = 0, .external_lex_state = 41}, + [566] = {.lex_state = 0, .external_lex_state = 40}, + [567] = {.lex_state = 8}, + [568] = {.lex_state = 0, .external_lex_state = 53}, + [569] = {.lex_state = 8}, + [570] = {.lex_state = 0, .external_lex_state = 46}, + [571] = {.lex_state = 0, .external_lex_state = 57}, + [572] = {.lex_state = 0, .external_lex_state = 57}, + [573] = {.lex_state = 0, .external_lex_state = 47}, + [574] = {.lex_state = 0, .external_lex_state = 58}, + [575] = {.lex_state = 0, .external_lex_state = 48}, + [576] = {.lex_state = 0, .external_lex_state = 57}, + [577] = {.lex_state = 0, .external_lex_state = 57}, + [578] = {.lex_state = 0, .external_lex_state = 49}, + [579] = {.lex_state = 0, .external_lex_state = 53}, + [580] = {.lex_state = 0, .external_lex_state = 58}, + [581] = {.lex_state = 0, .external_lex_state = 41}, + [582] = {.lex_state = 0, .external_lex_state = 58}, + [583] = {.lex_state = 0, .external_lex_state = 50}, + [584] = {.lex_state = 0, .external_lex_state = 51}, + [585] = {.lex_state = 0, .external_lex_state = 57}, + [586] = {.lex_state = 0, .external_lex_state = 52}, + [587] = {.lex_state = 0, .external_lex_state = 45}, + [588] = {.lex_state = 0, .external_lex_state = 44}, + [589] = {.lex_state = 0, .external_lex_state = 58}, [590] = {.lex_state = 0, .external_lex_state = 43}, - [591] = {.lex_state = 0, .external_lex_state = 58}, - [592] = {.lex_state = 0, .external_lex_state = 44}, - [593] = {.lex_state = 0, .external_lex_state = 45}, - [594] = {.lex_state = 0, .external_lex_state = 57}, - [595] = {.lex_state = 0, .external_lex_state = 57}, - [596] = {.lex_state = 0, .external_lex_state = 50}, - [597] = {.lex_state = 0, .external_lex_state = 46}, - [598] = {.lex_state = 0, .external_lex_state = 49}, - [599] = {.lex_state = 0, .external_lex_state = 58}, - [600] = {.lex_state = 0, .external_lex_state = 58}, - [601] = {.lex_state = 0, .external_lex_state = 53}, - [602] = {.lex_state = 0, .external_lex_state = 48}, - [603] = {.lex_state = 0, .external_lex_state = 43}, - [604] = {.lex_state = 0, .external_lex_state = 58}, - [605] = {.lex_state = 0, .external_lex_state = 38}, - [606] = {.lex_state = 0, .external_lex_state = 57}, - [607] = {.lex_state = 0, .external_lex_state = 47}, - [608] = {.lex_state = 0, .external_lex_state = 51}, - [609] = {.lex_state = 0, .external_lex_state = 35}, - [610] = {.lex_state = 0, .external_lex_state = 59}, - [611] = {.lex_state = 0, .external_lex_state = 36}, - [612] = {.lex_state = 0, .external_lex_state = 35}, - [613] = {.lex_state = 0, .external_lex_state = 36}, - [614] = {.lex_state = 0, .external_lex_state = 34}, + [591] = {.lex_state = 0, .external_lex_state = 42}, + [592] = {.lex_state = 0, .external_lex_state = 41}, + [593] = {.lex_state = 0, .external_lex_state = 56}, + [594] = {.lex_state = 39, .external_lex_state = 54}, + [595] = {.lex_state = 0, .external_lex_state = 42}, + [596] = {.lex_state = 0, .external_lex_state = 40}, + [597] = {.lex_state = 0, .external_lex_state = 53}, + [598] = {.lex_state = 39}, + [599] = {.lex_state = 0, .external_lex_state = 53}, + [600] = {.lex_state = 0, .external_lex_state = 40}, + [601] = {.lex_state = 0, .external_lex_state = 41}, + [602] = {.lex_state = 0, .external_lex_state = 46}, + [603] = {.lex_state = 0, .external_lex_state = 47}, + [604] = {.lex_state = 0, .external_lex_state = 48}, + [605] = {.lex_state = 0, .external_lex_state = 49}, + [606] = {.lex_state = 0, .external_lex_state = 39}, + [607] = {.lex_state = 0, .external_lex_state = 50}, + [608] = {.lex_state = 0, .external_lex_state = 38}, + [609] = {.lex_state = 0, .external_lex_state = 51}, + [610] = {.lex_state = 0, .external_lex_state = 52}, + [611] = {.lex_state = 0, .external_lex_state = 45}, + [612] = {.lex_state = 0, .external_lex_state = 44}, + [613] = {.lex_state = 0, .external_lex_state = 43}, + [614] = {.lex_state = 0, .external_lex_state = 36}, [615] = {.lex_state = 0, .external_lex_state = 36}, [616] = {.lex_state = 0, .external_lex_state = 36}, [617] = {.lex_state = 0, .external_lex_state = 36}, [618] = {.lex_state = 0, .external_lex_state = 36}, - [619] = {.lex_state = 0, .external_lex_state = 36}, + [619] = {.lex_state = 0, .external_lex_state = 59}, [620] = {.lex_state = 0, .external_lex_state = 36}, [621] = {.lex_state = 0, .external_lex_state = 36}, [622] = {.lex_state = 0, .external_lex_state = 36}, @@ -3777,452 +3858,467 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [632] = {.lex_state = 0, .external_lex_state = 36}, [633] = {.lex_state = 0, .external_lex_state = 36}, [634] = {.lex_state = 0, .external_lex_state = 36}, - [635] = {.lex_state = 0, .external_lex_state = 36}, - [636] = {.lex_state = 0, .external_lex_state = 36}, - [637] = {.lex_state = 0, .external_lex_state = 60}, + [635] = {.lex_state = 0, .external_lex_state = 60}, + [636] = {.lex_state = 0, .external_lex_state = 20}, + [637] = {.lex_state = 0, .external_lex_state = 36}, [638] = {.lex_state = 0, .external_lex_state = 36}, - [639] = {.lex_state = 0, .external_lex_state = 36}, - [640] = {.lex_state = 0, .external_lex_state = 61}, - [641] = {.lex_state = 0, .external_lex_state = 62}, - [642] = {.lex_state = 0, .external_lex_state = 62}, - [643] = {.lex_state = 0, .external_lex_state = 33}, - [644] = {.lex_state = 0, .external_lex_state = 59}, - [645] = {.lex_state = 0, .external_lex_state = 63}, - [646] = {.lex_state = 0, .external_lex_state = 64}, - [647] = {.lex_state = 0, .external_lex_state = 64}, - [648] = {.lex_state = 0, .external_lex_state = 33}, - [649] = {.lex_state = 0, .external_lex_state = 65}, - [650] = {.lex_state = 0, .external_lex_state = 27}, - [651] = {.lex_state = 0, .external_lex_state = 66}, - [652] = {.lex_state = 0, .external_lex_state = 66}, - [653] = {.lex_state = 0, .external_lex_state = 20}, - [654] = {.lex_state = 0, .external_lex_state = 20}, - [655] = {.lex_state = 0, .external_lex_state = 36}, + [639] = {.lex_state = 0, .external_lex_state = 35}, + [640] = {.lex_state = 39, .external_lex_state = 31}, + [641] = {.lex_state = 0, .external_lex_state = 36}, + [642] = {.lex_state = 0, .external_lex_state = 36}, + [643] = {.lex_state = 0, .external_lex_state = 36}, + [644] = {.lex_state = 0, .external_lex_state = 34}, + [645] = {.lex_state = 0, .external_lex_state = 36}, + [646] = {.lex_state = 0, .external_lex_state = 61}, + [647] = {.lex_state = 0, .external_lex_state = 36}, + [648] = {.lex_state = 0, .external_lex_state = 36}, + [649] = {.lex_state = 0, .external_lex_state = 62}, + [650] = {.lex_state = 0, .external_lex_state = 62}, + [651] = {.lex_state = 0, .external_lex_state = 36}, + [652] = {.lex_state = 0, .external_lex_state = 59}, + [653] = {.lex_state = 0, .external_lex_state = 36}, + [654] = {.lex_state = 0, .external_lex_state = 63}, + [655] = {.lex_state = 0, .external_lex_state = 63}, [656] = {.lex_state = 0, .external_lex_state = 36}, - [657] = {.lex_state = 0, .external_lex_state = 31}, - [658] = {.lex_state = 0, .external_lex_state = 33}, - [659] = {.lex_state = 0, .external_lex_state = 34}, - [660] = {.lex_state = 0, .external_lex_state = 36}, + [657] = {.lex_state = 0, .external_lex_state = 36}, + [658] = {.lex_state = 39, .external_lex_state = 31}, + [659] = {.lex_state = 0, .external_lex_state = 64}, + [660] = {.lex_state = 0, .external_lex_state = 64}, [661] = {.lex_state = 0, .external_lex_state = 36}, - [662] = {.lex_state = 0, .external_lex_state = 63}, - [663] = {.lex_state = 37, .external_lex_state = 30}, - [664] = {.lex_state = 0, .external_lex_state = 36}, - [665] = {.lex_state = 37, .external_lex_state = 27}, - [666] = {.lex_state = 37, .external_lex_state = 27}, - [667] = {.lex_state = 0, .external_lex_state = 31}, - [668] = {.lex_state = 9}, - [669] = {.lex_state = 0, .external_lex_state = 63}, - [670] = {.lex_state = 8}, - [671] = {.lex_state = 0, .external_lex_state = 61}, - [672] = {.lex_state = 37, .external_lex_state = 30}, - [673] = {.lex_state = 0, .external_lex_state = 20}, - [674] = {.lex_state = 0, .external_lex_state = 35}, + [662] = {.lex_state = 0, .external_lex_state = 36}, + [663] = {.lex_state = 0, .external_lex_state = 36}, + [664] = {.lex_state = 8}, + [665] = {.lex_state = 0, .external_lex_state = 36}, + [666] = {.lex_state = 9}, + [667] = {.lex_state = 0, .external_lex_state = 35}, + [668] = {.lex_state = 0, .external_lex_state = 34}, + [669] = {.lex_state = 0, .external_lex_state = 33}, + [670] = {.lex_state = 0, .external_lex_state = 32}, + [671] = {.lex_state = 0, .external_lex_state = 36}, + [672] = {.lex_state = 0, .external_lex_state = 36}, + [673] = {.lex_state = 39, .external_lex_state = 25}, + [674] = {.lex_state = 39, .external_lex_state = 25}, [675] = {.lex_state = 0, .external_lex_state = 36}, [676] = {.lex_state = 0, .external_lex_state = 36}, - [677] = {.lex_state = 0}, - [678] = {.lex_state = 0, .external_lex_state = 60}, - [679] = {.lex_state = 0, .external_lex_state = 20}, - [680] = {.lex_state = 0, .external_lex_state = 65}, - [681] = {.lex_state = 10}, - [682] = {.lex_state = 0, .external_lex_state = 33}, - [683] = {.lex_state = 0, .external_lex_state = 31}, - [684] = {.lex_state = 0, .external_lex_state = 31}, - [685] = {.lex_state = 0, .external_lex_state = 36}, - [686] = {.lex_state = 0, .external_lex_state = 34}, - [687] = {.lex_state = 0, .external_lex_state = 36}, - [688] = {.lex_state = 0, .external_lex_state = 36}, - [689] = {.lex_state = 0, .external_lex_state = 36}, - [690] = {.lex_state = 0, .external_lex_state = 36}, - [691] = {.lex_state = 0, .external_lex_state = 35}, - [692] = {.lex_state = 0, .external_lex_state = 36}, - [693] = {.lex_state = 0, .external_lex_state = 36}, - [694] = {.lex_state = 0, .external_lex_state = 36}, - [695] = {.lex_state = 0, .external_lex_state = 67}, + [677] = {.lex_state = 0, .external_lex_state = 36}, + [678] = {.lex_state = 0, .external_lex_state = 36}, + [679] = {.lex_state = 0, .external_lex_state = 36}, + [680] = {.lex_state = 0, .external_lex_state = 36}, + [681] = {.lex_state = 0, .external_lex_state = 25}, + [682] = {.lex_state = 0, .external_lex_state = 20}, + [683] = {.lex_state = 0, .external_lex_state = 65}, + [684] = {.lex_state = 0, .external_lex_state = 32}, + [685] = {.lex_state = 10}, + [686] = {.lex_state = 0, .external_lex_state = 33}, + [687] = {.lex_state = 0, .external_lex_state = 34}, + [688] = {.lex_state = 0, .external_lex_state = 35}, + [689] = {.lex_state = 0, .external_lex_state = 60}, + [690] = {.lex_state = 0, .external_lex_state = 20}, + [691] = {.lex_state = 0, .external_lex_state = 32}, + [692] = {.lex_state = 0, .external_lex_state = 32}, + [693] = {.lex_state = 0, .external_lex_state = 20}, + [694] = {.lex_state = 0, .external_lex_state = 35}, + [695] = {.lex_state = 0, .external_lex_state = 25}, [696] = {.lex_state = 0, .external_lex_state = 36}, [697] = {.lex_state = 0, .external_lex_state = 60}, - [698] = {.lex_state = 0, .external_lex_state = 67}, - [699] = {.lex_state = 0, .external_lex_state = 36}, - [700] = {.lex_state = 0, .external_lex_state = 59}, - [701] = {.lex_state = 0, .external_lex_state = 59}, - [702] = {.lex_state = 0, .external_lex_state = 27}, - [703] = {.lex_state = 0, .external_lex_state = 20}, - [704] = {.lex_state = 0, .external_lex_state = 34}, - [705] = {.lex_state = 0, .external_lex_state = 36}, - [706] = {.lex_state = 0, .external_lex_state = 36}, - [707] = {.lex_state = 0, .external_lex_state = 59}, - [708] = {.lex_state = 0, .external_lex_state = 63}, - [709] = {.lex_state = 0, .external_lex_state = 30}, - [710] = {.lex_state = 0, .external_lex_state = 32}, + [698] = {.lex_state = 0, .external_lex_state = 66}, + [699] = {.lex_state = 0, .external_lex_state = 33}, + [700] = {.lex_state = 0, .external_lex_state = 67}, + [701] = {.lex_state = 0, .external_lex_state = 61}, + [702] = {.lex_state = 0, .external_lex_state = 33}, + [703] = {.lex_state = 0, .external_lex_state = 67}, + [704] = {.lex_state = 0, .external_lex_state = 67}, + [705] = {.lex_state = 0, .external_lex_state = 34}, + [706] = {.lex_state = 0, .external_lex_state = 65}, + [707] = {.lex_state = 0, .external_lex_state = 66}, + [708] = {.lex_state = 0, .external_lex_state = 61}, + [709] = {.lex_state = 0, .external_lex_state = 61}, + [710] = {.lex_state = 0, .external_lex_state = 20}, [711] = {.lex_state = 0, .external_lex_state = 67}, - [712] = {.lex_state = 0, .external_lex_state = 30}, - [713] = {.lex_state = 4}, - [714] = {.lex_state = 0, .external_lex_state = 30}, - [715] = {.lex_state = 0, .external_lex_state = 30}, - [716] = {.lex_state = 0, .external_lex_state = 30}, - [717] = {.lex_state = 4}, - [718] = {.lex_state = 0, .external_lex_state = 45}, - [719] = {.lex_state = 4}, + [712] = {.lex_state = 5}, + [713] = {.lex_state = 0, .external_lex_state = 61}, + [714] = {.lex_state = 0, .external_lex_state = 20}, + [715] = {.lex_state = 0, .external_lex_state = 31}, + [716] = {.lex_state = 3, .external_lex_state = 27}, + [717] = {.lex_state = 0}, + [718] = {.lex_state = 9, .external_lex_state = 27}, + [719] = {.lex_state = 0, .external_lex_state = 31}, [720] = {.lex_state = 0, .external_lex_state = 68}, - [721] = {.lex_state = 0, .external_lex_state = 47}, - [722] = {.lex_state = 9, .external_lex_state = 29}, - [723] = {.lex_state = 4}, - [724] = {.lex_state = 0, .external_lex_state = 50}, - [725] = {.lex_state = 0, .external_lex_state = 32}, - [726] = {.lex_state = 0, .external_lex_state = 30}, - [727] = {.lex_state = 0, .external_lex_state = 30}, - [728] = {.lex_state = 0, .external_lex_state = 30}, - [729] = {.lex_state = 9, .external_lex_state = 29}, - [730] = {.lex_state = 0, .external_lex_state = 53}, - [731] = {.lex_state = 0, .external_lex_state = 30}, - [732] = {.lex_state = 0, .external_lex_state = 30}, - [733] = {.lex_state = 0}, - [734] = {.lex_state = 0}, - [735] = {.lex_state = 0, .external_lex_state = 30}, - [736] = {.lex_state = 0}, - [737] = {.lex_state = 9, .external_lex_state = 29}, - [738] = {.lex_state = 0}, - [739] = {.lex_state = 0}, - [740] = {.lex_state = 0}, - [741] = {.lex_state = 0, .external_lex_state = 30}, - [742] = {.lex_state = 0, .external_lex_state = 30}, - [743] = {.lex_state = 0, .external_lex_state = 30}, - [744] = {.lex_state = 0, .external_lex_state = 32}, - [745] = {.lex_state = 0, .external_lex_state = 68}, - [746] = {.lex_state = 0, .external_lex_state = 68}, + [721] = {.lex_state = 0, .external_lex_state = 68}, + [722] = {.lex_state = 5}, + [723] = {.lex_state = 5}, + [724] = {.lex_state = 0, .external_lex_state = 31}, + [725] = {.lex_state = 5}, + [726] = {.lex_state = 5}, + [727] = {.lex_state = 0, .external_lex_state = 46}, + [728] = {.lex_state = 0, .external_lex_state = 69}, + [729] = {.lex_state = 0, .external_lex_state = 31}, + [730] = {.lex_state = 9, .external_lex_state = 27}, + [731] = {.lex_state = 0, .external_lex_state = 31}, + [732] = {.lex_state = 0, .external_lex_state = 31}, + [733] = {.lex_state = 39}, + [734] = {.lex_state = 0, .external_lex_state = 31}, + [735] = {.lex_state = 0, .external_lex_state = 31}, + [736] = {.lex_state = 0, .external_lex_state = 31}, + [737] = {.lex_state = 0, .external_lex_state = 60}, + [738] = {.lex_state = 9, .external_lex_state = 27}, + [739] = {.lex_state = 0, .external_lex_state = 31}, + [740] = {.lex_state = 0, .external_lex_state = 31}, + [741] = {.lex_state = 0}, + [742] = {.lex_state = 0}, + [743] = {.lex_state = 0, .external_lex_state = 31}, + [744] = {.lex_state = 0, .external_lex_state = 31}, + [745] = {.lex_state = 0}, + [746] = {.lex_state = 9, .external_lex_state = 27}, [747] = {.lex_state = 0}, [748] = {.lex_state = 0}, - [749] = {.lex_state = 9, .external_lex_state = 29}, - [750] = {.lex_state = 0, .external_lex_state = 43}, - [751] = {.lex_state = 0, .external_lex_state = 30}, - [752] = {.lex_state = 0, .external_lex_state = 30}, - [753] = {.lex_state = 3, .external_lex_state = 29}, - [754] = {.lex_state = 0, .external_lex_state = 27}, - [755] = {.lex_state = 0, .external_lex_state = 30}, - [756] = {.lex_state = 0, .external_lex_state = 30}, - [757] = {.lex_state = 4}, - [758] = {.lex_state = 0, .external_lex_state = 30}, - [759] = {.lex_state = 0, .external_lex_state = 30}, - [760] = {.lex_state = 0, .external_lex_state = 30}, - [761] = {.lex_state = 7, .external_lex_state = 29}, - [762] = {.lex_state = 0, .external_lex_state = 52}, - [763] = {.lex_state = 0, .external_lex_state = 30}, - [764] = {.lex_state = 0, .external_lex_state = 68}, - [765] = {.lex_state = 0, .external_lex_state = 53}, - [766] = {.lex_state = 0}, - [767] = {.lex_state = 4}, - [768] = {.lex_state = 0}, - [769] = {.lex_state = 0, .external_lex_state = 53}, - [770] = {.lex_state = 0}, - [771] = {.lex_state = 9, .external_lex_state = 29}, - [772] = {.lex_state = 0}, - [773] = {.lex_state = 0}, - [774] = {.lex_state = 9, .external_lex_state = 29}, - [775] = {.lex_state = 0}, - [776] = {.lex_state = 0, .external_lex_state = 50}, - [777] = {.lex_state = 0, .external_lex_state = 60}, - [778] = {.lex_state = 0}, - [779] = {.lex_state = 0}, - [780] = {.lex_state = 0, .external_lex_state = 30}, - [781] = {.lex_state = 0, .external_lex_state = 50}, - [782] = {.lex_state = 0, .external_lex_state = 47}, - [783] = {.lex_state = 0}, - [784] = {.lex_state = 9, .external_lex_state = 29}, - [785] = {.lex_state = 0, .external_lex_state = 38}, + [749] = {.lex_state = 0}, + [750] = {.lex_state = 0, .external_lex_state = 65}, + [751] = {.lex_state = 0, .external_lex_state = 31}, + [752] = {.lex_state = 0, .external_lex_state = 31}, + [753] = {.lex_state = 0, .external_lex_state = 28}, + [754] = {.lex_state = 0, .external_lex_state = 69}, + [755] = {.lex_state = 0}, + [756] = {.lex_state = 0}, + [757] = {.lex_state = 0, .external_lex_state = 20}, + [758] = {.lex_state = 0}, + [759] = {.lex_state = 0, .external_lex_state = 53}, + [760] = {.lex_state = 0, .external_lex_state = 53}, + [761] = {.lex_state = 0, .external_lex_state = 42}, + [762] = {.lex_state = 0, .external_lex_state = 42}, + [763] = {.lex_state = 0, .external_lex_state = 45}, + [764] = {.lex_state = 0, .external_lex_state = 45}, + [765] = {.lex_state = 0, .external_lex_state = 38}, + [766] = {.lex_state = 0, .external_lex_state = 38}, + [767] = {.lex_state = 0, .external_lex_state = 49}, + [768] = {.lex_state = 0, .external_lex_state = 49}, + [769] = {.lex_state = 0, .external_lex_state = 40}, + [770] = {.lex_state = 0, .external_lex_state = 40}, + [771] = {.lex_state = 0, .external_lex_state = 43}, + [772] = {.lex_state = 0, .external_lex_state = 43}, + [773] = {.lex_state = 0, .external_lex_state = 52}, + [774] = {.lex_state = 0, .external_lex_state = 52}, + [775] = {.lex_state = 0, .external_lex_state = 68}, + [776] = {.lex_state = 0, .external_lex_state = 31}, + [777] = {.lex_state = 0, .external_lex_state = 69}, + [778] = {.lex_state = 0, .external_lex_state = 50}, + [779] = {.lex_state = 0, .external_lex_state = 31}, + [780] = {.lex_state = 0, .external_lex_state = 31}, + [781] = {.lex_state = 0}, + [782] = {.lex_state = 0}, + [783] = {.lex_state = 0, .external_lex_state = 50}, + [784] = {.lex_state = 9, .external_lex_state = 27}, + [785] = {.lex_state = 0}, [786] = {.lex_state = 0}, - [787] = {.lex_state = 0, .external_lex_state = 47}, - [788] = {.lex_state = 0}, + [787] = {.lex_state = 0, .external_lex_state = 31}, + [788] = {.lex_state = 0, .external_lex_state = 31}, [789] = {.lex_state = 0}, [790] = {.lex_state = 0}, [791] = {.lex_state = 0}, - [792] = {.lex_state = 0, .external_lex_state = 45}, - [793] = {.lex_state = 9, .external_lex_state = 29}, - [794] = {.lex_state = 0}, - [795] = {.lex_state = 0}, - [796] = {.lex_state = 0, .external_lex_state = 30}, - [797] = {.lex_state = 0, .external_lex_state = 45}, + [792] = {.lex_state = 0}, + [793] = {.lex_state = 9, .external_lex_state = 27}, + [794] = {.lex_state = 39, .external_lex_state = 25}, + [795] = {.lex_state = 7, .external_lex_state = 27}, + [796] = {.lex_state = 0, .external_lex_state = 48}, + [797] = {.lex_state = 0, .external_lex_state = 68}, [798] = {.lex_state = 0}, [799] = {.lex_state = 0}, - [800] = {.lex_state = 0, .external_lex_state = 30}, - [801] = {.lex_state = 0, .external_lex_state = 68}, - [802] = {.lex_state = 0}, - [803] = {.lex_state = 0, .external_lex_state = 42}, - [804] = {.lex_state = 0, .external_lex_state = 42}, + [800] = {.lex_state = 0, .external_lex_state = 31}, + [801] = {.lex_state = 0, .external_lex_state = 31}, + [802] = {.lex_state = 5}, + [803] = {.lex_state = 9, .external_lex_state = 27}, + [804] = {.lex_state = 0, .external_lex_state = 48}, [805] = {.lex_state = 0}, - [806] = {.lex_state = 0, .external_lex_state = 30}, - [807] = {.lex_state = 0, .external_lex_state = 49}, - [808] = {.lex_state = 0, .external_lex_state = 30}, - [809] = {.lex_state = 0, .external_lex_state = 30}, - [810] = {.lex_state = 0, .external_lex_state = 68}, - [811] = {.lex_state = 0, .external_lex_state = 40}, - [812] = {.lex_state = 0, .external_lex_state = 40}, - [813] = {.lex_state = 0, .external_lex_state = 43}, - [814] = {.lex_state = 0, .external_lex_state = 30}, - [815] = {.lex_state = 0, .external_lex_state = 30}, - [816] = {.lex_state = 0, .external_lex_state = 46}, - [817] = {.lex_state = 0, .external_lex_state = 48}, - [818] = {.lex_state = 0, .external_lex_state = 30}, - [819] = {.lex_state = 0, .external_lex_state = 40}, - [820] = {.lex_state = 0, .external_lex_state = 51}, - [821] = {.lex_state = 0, .external_lex_state = 30}, + [806] = {.lex_state = 0}, + [807] = {.lex_state = 0, .external_lex_state = 31}, + [808] = {.lex_state = 0, .external_lex_state = 31}, + [809] = {.lex_state = 0}, + [810] = {.lex_state = 0, .external_lex_state = 28}, + [811] = {.lex_state = 0, .external_lex_state = 69}, + [812] = {.lex_state = 0}, + [813] = {.lex_state = 0}, + [814] = {.lex_state = 9, .external_lex_state = 27}, + [815] = {.lex_state = 0}, + [816] = {.lex_state = 0}, + [817] = {.lex_state = 0}, + [818] = {.lex_state = 0, .external_lex_state = 41}, + [819] = {.lex_state = 0, .external_lex_state = 41}, + [820] = {.lex_state = 0, .external_lex_state = 64}, + [821] = {.lex_state = 0, .external_lex_state = 44}, [822] = {.lex_state = 0}, - [823] = {.lex_state = 0}, - [824] = {.lex_state = 0}, - [825] = {.lex_state = 0}, - [826] = {.lex_state = 9, .external_lex_state = 29}, - [827] = {.lex_state = 0}, - [828] = {.lex_state = 0, .external_lex_state = 52}, - [829] = {.lex_state = 9, .external_lex_state = 29}, + [823] = {.lex_state = 0, .external_lex_state = 44}, + [824] = {.lex_state = 0, .external_lex_state = 63}, + [825] = {.lex_state = 0, .external_lex_state = 51}, + [826] = {.lex_state = 0, .external_lex_state = 51}, + [827] = {.lex_state = 0, .external_lex_state = 62}, + [828] = {.lex_state = 0, .external_lex_state = 69}, + [829] = {.lex_state = 39, .external_lex_state = 54}, [830] = {.lex_state = 0}, - [831] = {.lex_state = 0, .external_lex_state = 61}, - [832] = {.lex_state = 37, .external_lex_state = 54}, - [833] = {.lex_state = 0, .external_lex_state = 20}, - [834] = {.lex_state = 0, .external_lex_state = 68}, + [831] = {.lex_state = 0, .external_lex_state = 31}, + [832] = {.lex_state = 0, .external_lex_state = 68}, + [833] = {.lex_state = 0, .external_lex_state = 31}, + [834] = {.lex_state = 0, .external_lex_state = 31}, [835] = {.lex_state = 0}, [836] = {.lex_state = 0}, - [837] = {.lex_state = 0}, - [838] = {.lex_state = 0}, - [839] = {.lex_state = 9, .external_lex_state = 29}, - [840] = {.lex_state = 0, .external_lex_state = 52}, - [841] = {.lex_state = 0, .external_lex_state = 49}, - [842] = {.lex_state = 0, .external_lex_state = 49}, - [843] = {.lex_state = 0, .external_lex_state = 39}, - [844] = {.lex_state = 0, .external_lex_state = 39}, - [845] = {.lex_state = 0, .external_lex_state = 44}, - [846] = {.lex_state = 0, .external_lex_state = 44}, - [847] = {.lex_state = 37, .external_lex_state = 27}, - [848] = {.lex_state = 9, .external_lex_state = 29}, - [849] = {.lex_state = 4}, - [850] = {.lex_state = 0}, - [851] = {.lex_state = 0}, + [837] = {.lex_state = 0, .external_lex_state = 31}, + [838] = {.lex_state = 0, .external_lex_state = 69}, + [839] = {.lex_state = 0}, + [840] = {.lex_state = 9, .external_lex_state = 27}, + [841] = {.lex_state = 0}, + [842] = {.lex_state = 0, .external_lex_state = 39}, + [843] = {.lex_state = 0, .external_lex_state = 51}, + [844] = {.lex_state = 0}, + [845] = {.lex_state = 0}, + [846] = {.lex_state = 0}, + [847] = {.lex_state = 0}, + [848] = {.lex_state = 0, .external_lex_state = 46}, + [849] = {.lex_state = 9, .external_lex_state = 27}, + [850] = {.lex_state = 0, .external_lex_state = 60}, + [851] = {.lex_state = 0, .external_lex_state = 44}, [852] = {.lex_state = 0, .external_lex_state = 41}, - [853] = {.lex_state = 0, .external_lex_state = 68}, - [854] = {.lex_state = 0, .external_lex_state = 41}, - [855] = {.lex_state = 0, .external_lex_state = 32}, - [856] = {.lex_state = 0, .external_lex_state = 68}, - [857] = {.lex_state = 0, .external_lex_state = 20}, - [858] = {.lex_state = 0, .external_lex_state = 51}, - [859] = {.lex_state = 0, .external_lex_state = 41}, - [860] = {.lex_state = 0}, - [861] = {.lex_state = 0, .external_lex_state = 30}, - [862] = {.lex_state = 0, .external_lex_state = 44}, - [863] = {.lex_state = 0, .external_lex_state = 30}, - [864] = {.lex_state = 0, .external_lex_state = 30}, - [865] = {.lex_state = 0, .external_lex_state = 30}, - [866] = {.lex_state = 0, .external_lex_state = 51}, - [867] = {.lex_state = 0, .external_lex_state = 66}, - [868] = {.lex_state = 0, .external_lex_state = 48}, - [869] = {.lex_state = 0, .external_lex_state = 30}, - [870] = {.lex_state = 0, .external_lex_state = 30}, - [871] = {.lex_state = 0, .external_lex_state = 48}, - [872] = {.lex_state = 0, .external_lex_state = 30}, - [873] = {.lex_state = 0, .external_lex_state = 30}, - [874] = {.lex_state = 0, .external_lex_state = 64}, - [875] = {.lex_state = 0, .external_lex_state = 46}, - [876] = {.lex_state = 0, .external_lex_state = 30}, - [877] = {.lex_state = 0, .external_lex_state = 46}, - [878] = {.lex_state = 0, .external_lex_state = 39}, - [879] = {.lex_state = 0, .external_lex_state = 60}, - [880] = {.lex_state = 0}, - [881] = {.lex_state = 9, .external_lex_state = 29}, - [882] = {.lex_state = 0, .external_lex_state = 62}, - [883] = {.lex_state = 9, .external_lex_state = 29}, - [884] = {.lex_state = 0, .external_lex_state = 42}, - [885] = {.lex_state = 37}, - [886] = {.lex_state = 0, .external_lex_state = 69}, - [887] = {.lex_state = 0, .external_lex_state = 30}, - [888] = {.lex_state = 0, .external_lex_state = 32}, - [889] = {.lex_state = 0, .external_lex_state = 43}, - [890] = {.lex_state = 0, .external_lex_state = 30}, - [891] = {.lex_state = 0, .external_lex_state = 38}, - [892] = {.lex_state = 9, .external_lex_state = 29}, - [893] = {.lex_state = 0, .external_lex_state = 70}, - [894] = {.lex_state = 3}, - [895] = {.lex_state = 0, .external_lex_state = 29}, - [896] = {.lex_state = 3}, - [897] = {.lex_state = 0, .external_lex_state = 29}, - [898] = {.lex_state = 0, .external_lex_state = 70}, - [899] = {.lex_state = 0, .external_lex_state = 70}, - [900] = {.lex_state = 0, .external_lex_state = 29}, - [901] = {.lex_state = 0, .external_lex_state = 29}, - [902] = {.lex_state = 0}, + [853] = {.lex_state = 0, .external_lex_state = 48}, + [854] = {.lex_state = 0}, + [855] = {.lex_state = 0}, + [856] = {.lex_state = 0, .external_lex_state = 31}, + [857] = {.lex_state = 0, .external_lex_state = 50}, + [858] = {.lex_state = 0, .external_lex_state = 52}, + [859] = {.lex_state = 9, .external_lex_state = 27}, + [860] = {.lex_state = 0, .external_lex_state = 43}, + [861] = {.lex_state = 0, .external_lex_state = 40}, + [862] = {.lex_state = 0, .external_lex_state = 49}, + [863] = {.lex_state = 0, .external_lex_state = 38}, + [864] = {.lex_state = 0, .external_lex_state = 45}, + [865] = {.lex_state = 0, .external_lex_state = 42}, + [866] = {.lex_state = 0, .external_lex_state = 28}, + [867] = {.lex_state = 0, .external_lex_state = 69}, + [868] = {.lex_state = 0, .external_lex_state = 53}, + [869] = {.lex_state = 0}, + [870] = {.lex_state = 0}, + [871] = {.lex_state = 5}, + [872] = {.lex_state = 0, .external_lex_state = 31}, + [873] = {.lex_state = 0, .external_lex_state = 31}, + [874] = {.lex_state = 9, .external_lex_state = 27}, + [875] = {.lex_state = 5}, + [876] = {.lex_state = 0, .external_lex_state = 47}, + [877] = {.lex_state = 0, .external_lex_state = 69}, + [878] = {.lex_state = 0, .external_lex_state = 31}, + [879] = {.lex_state = 0, .external_lex_state = 31}, + [880] = {.lex_state = 0, .external_lex_state = 70}, + [881] = {.lex_state = 0, .external_lex_state = 28}, + [882] = {.lex_state = 0, .external_lex_state = 28}, + [883] = {.lex_state = 0, .external_lex_state = 39}, + [884] = {.lex_state = 0, .external_lex_state = 39}, + [885] = {.lex_state = 0, .external_lex_state = 47}, + [886] = {.lex_state = 0, .external_lex_state = 59}, + [887] = {.lex_state = 0, .external_lex_state = 25}, + [888] = {.lex_state = 0, .external_lex_state = 31}, + [889] = {.lex_state = 9, .external_lex_state = 27}, + [890] = {.lex_state = 0, .external_lex_state = 69}, + [891] = {.lex_state = 0, .external_lex_state = 31}, + [892] = {.lex_state = 0, .external_lex_state = 31}, + [893] = {.lex_state = 0, .external_lex_state = 31}, + [894] = {.lex_state = 9, .external_lex_state = 27}, + [895] = {.lex_state = 0, .external_lex_state = 31}, + [896] = {.lex_state = 0, .external_lex_state = 31}, + [897] = {.lex_state = 0, .external_lex_state = 47}, + [898] = {.lex_state = 0, .external_lex_state = 31}, + [899] = {.lex_state = 0, .external_lex_state = 31}, + [900] = {.lex_state = 9, .external_lex_state = 27}, + [901] = {.lex_state = 0, .external_lex_state = 31}, + [902] = {.lex_state = 0, .external_lex_state = 31}, [903] = {.lex_state = 0, .external_lex_state = 71}, - [904] = {.lex_state = 0, .external_lex_state = 29}, - [905] = {.lex_state = 0, .external_lex_state = 29}, - [906] = {.lex_state = 0, .external_lex_state = 29}, - [907] = {.lex_state = 0, .external_lex_state = 29}, - [908] = {.lex_state = 0, .external_lex_state = 29}, - [909] = {.lex_state = 0, .external_lex_state = 70}, - [910] = {.lex_state = 0}, - [911] = {.lex_state = 0, .external_lex_state = 71}, - [912] = {.lex_state = 0, .external_lex_state = 29}, - [913] = {.lex_state = 3}, - [914] = {.lex_state = 0, .external_lex_state = 70}, - [915] = {.lex_state = 0, .external_lex_state = 29}, - [916] = {.lex_state = 0}, - [917] = {.lex_state = 0}, - [918] = {.lex_state = 0, .external_lex_state = 29}, - [919] = {.lex_state = 0, .external_lex_state = 70}, - [920] = {.lex_state = 0, .external_lex_state = 54}, - [921] = {.lex_state = 0, .external_lex_state = 29}, - [922] = {.lex_state = 0}, - [923] = {.lex_state = 11}, - [924] = {.lex_state = 0, .external_lex_state = 29}, - [925] = {.lex_state = 0, .external_lex_state = 29}, - [926] = {.lex_state = 0, .external_lex_state = 29}, - [927] = {.lex_state = 0, .external_lex_state = 29}, - [928] = {.lex_state = 0, .external_lex_state = 29}, - [929] = {.lex_state = 0, .external_lex_state = 29}, - [930] = {.lex_state = 0, .external_lex_state = 29}, - [931] = {.lex_state = 0, .external_lex_state = 29}, - [932] = {.lex_state = 0, .external_lex_state = 70}, - [933] = {.lex_state = 9}, - [934] = {.lex_state = 0, .external_lex_state = 29}, - [935] = {.lex_state = 0, .external_lex_state = 29}, - [936] = {.lex_state = 0, .external_lex_state = 29}, - [937] = {.lex_state = 0, .external_lex_state = 29}, + [904] = {.lex_state = 0, .external_lex_state = 27}, + [905] = {.lex_state = 0, .external_lex_state = 71}, + [906] = {.lex_state = 0, .external_lex_state = 27}, + [907] = {.lex_state = 0, .external_lex_state = 27}, + [908] = {.lex_state = 0, .external_lex_state = 71}, + [909] = {.lex_state = 0, .external_lex_state = 71}, + [910] = {.lex_state = 0, .external_lex_state = 72}, + [911] = {.lex_state = 0, .external_lex_state = 27}, + [912] = {.lex_state = 0, .external_lex_state = 27}, + [913] = {.lex_state = 9}, + [914] = {.lex_state = 3}, + [915] = {.lex_state = 0, .external_lex_state = 27}, + [916] = {.lex_state = 0, .external_lex_state = 27}, + [917] = {.lex_state = 0, .external_lex_state = 27}, + [918] = {.lex_state = 0, .external_lex_state = 27}, + [919] = {.lex_state = 0, .external_lex_state = 27}, + [920] = {.lex_state = 0, .external_lex_state = 27}, + [921] = {.lex_state = 0, .external_lex_state = 27}, + [922] = {.lex_state = 0, .external_lex_state = 73}, + [923] = {.lex_state = 0, .external_lex_state = 74}, + [924] = {.lex_state = 0, .external_lex_state = 75}, + [925] = {.lex_state = 0, .external_lex_state = 27}, + [926] = {.lex_state = 0, .external_lex_state = 27}, + [927] = {.lex_state = 0, .external_lex_state = 27}, + [928] = {.lex_state = 0, .external_lex_state = 27}, + [929] = {.lex_state = 0}, + [930] = {.lex_state = 9}, + [931] = {.lex_state = 0, .external_lex_state = 27}, + [932] = {.lex_state = 0}, + [933] = {.lex_state = 0}, + [934] = {.lex_state = 0, .external_lex_state = 27}, + [935] = {.lex_state = 0, .external_lex_state = 72}, + [936] = {.lex_state = 0, .external_lex_state = 71}, + [937] = {.lex_state = 0}, [938] = {.lex_state = 0}, - [939] = {.lex_state = 49}, - [940] = {.lex_state = 0, .external_lex_state = 71}, - [941] = {.lex_state = 0, .external_lex_state = 29}, - [942] = {.lex_state = 0, .external_lex_state = 70}, - [943] = {.lex_state = 0, .external_lex_state = 29}, - [944] = {.lex_state = 0, .external_lex_state = 29}, - [945] = {.lex_state = 0}, - [946] = {.lex_state = 9}, - [947] = {.lex_state = 0}, - [948] = {.lex_state = 9}, - [949] = {.lex_state = 0, .external_lex_state = 29}, - [950] = {.lex_state = 0, .external_lex_state = 29}, - [951] = {.lex_state = 0}, - [952] = {.lex_state = 0, .external_lex_state = 70}, - [953] = {.lex_state = 0, .external_lex_state = 29}, - [954] = {.lex_state = 0, .external_lex_state = 70}, - [955] = {.lex_state = 0, .external_lex_state = 29}, - [956] = {.lex_state = 0, .external_lex_state = 70}, - [957] = {.lex_state = 0, .external_lex_state = 70}, - [958] = {.lex_state = 0, .external_lex_state = 29}, - [959] = {.lex_state = 49}, - [960] = {.lex_state = 0}, - [961] = {.lex_state = 0, .external_lex_state = 72}, - [962] = {.lex_state = 0, .external_lex_state = 29}, - [963] = {.lex_state = 0, .external_lex_state = 29}, - [964] = {.lex_state = 0, .external_lex_state = 29}, - [965] = {.lex_state = 0, .external_lex_state = 29}, - [966] = {.lex_state = 0, .external_lex_state = 29}, - [967] = {.lex_state = 0, .external_lex_state = 70}, - [968] = {.lex_state = 9}, - [969] = {.lex_state = 0, .external_lex_state = 29}, - [970] = {.lex_state = 0, .external_lex_state = 29}, - [971] = {.lex_state = 0, .external_lex_state = 29}, - [972] = {.lex_state = 0, .external_lex_state = 29}, - [973] = {.lex_state = 7}, - [974] = {.lex_state = 0, .external_lex_state = 29}, - [975] = {.lex_state = 0, .external_lex_state = 29}, - [976] = {.lex_state = 0, .external_lex_state = 70}, - [977] = {.lex_state = 0, .external_lex_state = 70}, - [978] = {.lex_state = 0, .external_lex_state = 29}, - [979] = {.lex_state = 0, .external_lex_state = 29}, - [980] = {.lex_state = 0, .external_lex_state = 29}, - [981] = {.lex_state = 49}, - [982] = {.lex_state = 0, .external_lex_state = 29}, - [983] = {.lex_state = 0, .external_lex_state = 71}, - [984] = {.lex_state = 12}, - [985] = {.lex_state = 0, .external_lex_state = 29}, + [939] = {.lex_state = 9}, + [940] = {.lex_state = 0}, + [941] = {.lex_state = 0}, + [942] = {.lex_state = 0, .external_lex_state = 71}, + [943] = {.lex_state = 0}, + [944] = {.lex_state = 0, .external_lex_state = 27}, + [945] = {.lex_state = 0, .external_lex_state = 27}, + [946] = {.lex_state = 0, .external_lex_state = 27}, + [947] = {.lex_state = 0, .external_lex_state = 27}, + [948] = {.lex_state = 0, .external_lex_state = 27}, + [949] = {.lex_state = 11}, + [950] = {.lex_state = 0, .external_lex_state = 27}, + [951] = {.lex_state = 0, .external_lex_state = 27}, + [952] = {.lex_state = 0, .external_lex_state = 27}, + [953] = {.lex_state = 0, .external_lex_state = 72}, + [954] = {.lex_state = 0, .external_lex_state = 71}, + [955] = {.lex_state = 0, .external_lex_state = 71}, + [956] = {.lex_state = 0, .external_lex_state = 27}, + [957] = {.lex_state = 9}, + [958] = {.lex_state = 0, .external_lex_state = 27}, + [959] = {.lex_state = 0, .external_lex_state = 27}, + [960] = {.lex_state = 0, .external_lex_state = 27}, + [961] = {.lex_state = 0, .external_lex_state = 27}, + [962] = {.lex_state = 0, .external_lex_state = 27}, + [963] = {.lex_state = 0, .external_lex_state = 71}, + [964] = {.lex_state = 0, .external_lex_state = 27}, + [965] = {.lex_state = 7}, + [966] = {.lex_state = 0, .external_lex_state = 27}, + [967] = {.lex_state = 0, .external_lex_state = 27}, + [968] = {.lex_state = 0, .external_lex_state = 71}, + [969] = {.lex_state = 0, .external_lex_state = 71}, + [970] = {.lex_state = 51}, + [971] = {.lex_state = 51}, + [972] = {.lex_state = 51}, + [973] = {.lex_state = 3}, + [974] = {.lex_state = 0, .external_lex_state = 27}, + [975] = {.lex_state = 0, .external_lex_state = 76}, + [976] = {.lex_state = 0, .external_lex_state = 27}, + [977] = {.lex_state = 0, .external_lex_state = 71}, + [978] = {.lex_state = 0}, + [979] = {.lex_state = 9}, + [980] = {.lex_state = 0, .external_lex_state = 71}, + [981] = {.lex_state = 0, .external_lex_state = 54}, + [982] = {.lex_state = 0, .external_lex_state = 27}, + [983] = {.lex_state = 0, .external_lex_state = 27}, + [984] = {.lex_state = 0, .external_lex_state = 27}, + [985] = {.lex_state = 0}, [986] = {.lex_state = 0}, - [987] = {.lex_state = 0, .external_lex_state = 70}, - [988] = {.lex_state = 9}, - [989] = {.lex_state = 0}, - [990] = {.lex_state = 9}, - [991] = {.lex_state = 0}, - [992] = {.lex_state = 0, .external_lex_state = 29}, - [993] = {.lex_state = 0, .external_lex_state = 29}, - [994] = {.lex_state = 0, .external_lex_state = 29}, - [995] = {.lex_state = 49}, - [996] = {.lex_state = 0, .external_lex_state = 29}, - [997] = {.lex_state = 0, .external_lex_state = 29}, - [998] = {.lex_state = 0, .external_lex_state = 29}, - [999] = {.lex_state = 4}, - [1000] = {.lex_state = 0, .external_lex_state = 29}, - [1001] = {.lex_state = 0, .external_lex_state = 70}, - [1002] = {.lex_state = 0, .external_lex_state = 29}, - [1003] = {.lex_state = 49}, - [1004] = {.lex_state = 0, .external_lex_state = 29}, - [1005] = {.lex_state = 0}, - [1006] = {.lex_state = 0, .external_lex_state = 29}, - [1007] = {.lex_state = 0, .external_lex_state = 32}, - [1008] = {.lex_state = 0, .external_lex_state = 29}, - [1009] = {.lex_state = 4}, - [1010] = {.lex_state = 0, .external_lex_state = 29}, - [1011] = {.lex_state = 9}, - [1012] = {.lex_state = 0, .external_lex_state = 70}, - [1013] = {.lex_state = 0, .external_lex_state = 29}, - [1014] = {.lex_state = 0, .external_lex_state = 29}, - [1015] = {.lex_state = 0, .external_lex_state = 29}, - [1016] = {.lex_state = 0, .external_lex_state = 29}, - [1017] = {.lex_state = 0, .external_lex_state = 29}, - [1018] = {.lex_state = 0, .external_lex_state = 29}, - [1019] = {.lex_state = 0, .external_lex_state = 29}, - [1020] = {.lex_state = 49}, - [1021] = {.lex_state = 0, .external_lex_state = 29}, - [1022] = {.lex_state = 0, .external_lex_state = 29}, - [1023] = {.lex_state = 0, .external_lex_state = 70}, - [1024] = {.lex_state = 49}, - [1025] = {.lex_state = 49}, - [1026] = {.lex_state = 0, .external_lex_state = 70}, - [1027] = {.lex_state = 4}, - [1028] = {.lex_state = 0, .external_lex_state = 29}, - [1029] = {.lex_state = 0}, - [1030] = {.lex_state = 9}, - [1031] = {.lex_state = 12}, - [1032] = {.lex_state = 49}, - [1033] = {.lex_state = 0, .external_lex_state = 29}, - [1034] = {.lex_state = 4}, - [1035] = {.lex_state = 0, .external_lex_state = 29}, - [1036] = {.lex_state = 0}, - [1037] = {.lex_state = 9}, - [1038] = {.lex_state = 12}, - [1039] = {.lex_state = 49}, - [1040] = {.lex_state = 0, .external_lex_state = 71}, - [1041] = {.lex_state = 4}, - [1042] = {.lex_state = 0, .external_lex_state = 29}, - [1043] = {.lex_state = 0}, - [1044] = {.lex_state = 9}, - [1045] = {.lex_state = 12}, - [1046] = {.lex_state = 49}, - [1047] = {.lex_state = 0, .external_lex_state = 29}, - [1048] = {.lex_state = 4}, - [1049] = {.lex_state = 0, .external_lex_state = 70}, - [1050] = {.lex_state = 0}, - [1051] = {.lex_state = 9}, - [1052] = {.lex_state = 12}, - [1053] = {.lex_state = 0, .external_lex_state = 29}, - [1054] = {.lex_state = 0, .external_lex_state = 29}, - [1055] = {.lex_state = 0}, - [1056] = {.lex_state = 3}, - [1057] = {.lex_state = 0, .external_lex_state = 29}, - [1058] = {.lex_state = 0, .external_lex_state = 70}, - [1059] = {.lex_state = 0}, - [1060] = {.lex_state = 3}, - [1061] = {.lex_state = 0, .external_lex_state = 54}, - [1062] = {.lex_state = 0, .external_lex_state = 32}, - [1063] = {.lex_state = 0}, + [987] = {.lex_state = 0, .external_lex_state = 27}, + [988] = {.lex_state = 0, .external_lex_state = 27}, + [989] = {.lex_state = 0, .external_lex_state = 27}, + [990] = {.lex_state = 0, .external_lex_state = 27}, + [991] = {.lex_state = 0, .external_lex_state = 27}, + [992] = {.lex_state = 51}, + [993] = {.lex_state = 0, .external_lex_state = 27}, + [994] = {.lex_state = 0, .external_lex_state = 27}, + [995] = {.lex_state = 0, .external_lex_state = 28}, + [996] = {.lex_state = 0, .external_lex_state = 27}, + [997] = {.lex_state = 0, .external_lex_state = 72}, + [998] = {.lex_state = 0, .external_lex_state = 71}, + [999] = {.lex_state = 0, .external_lex_state = 27}, + [1000] = {.lex_state = 0, .external_lex_state = 27}, + [1001] = {.lex_state = 0, .external_lex_state = 71}, + [1002] = {.lex_state = 0, .external_lex_state = 27}, + [1003] = {.lex_state = 0, .external_lex_state = 27}, + [1004] = {.lex_state = 0, .external_lex_state = 27}, + [1005] = {.lex_state = 0, .external_lex_state = 27}, + [1006] = {.lex_state = 0, .external_lex_state = 27}, + [1007] = {.lex_state = 9}, + [1008] = {.lex_state = 0, .external_lex_state = 71}, + [1009] = {.lex_state = 5}, + [1010] = {.lex_state = 5}, + [1011] = {.lex_state = 0, .external_lex_state = 27}, + [1012] = {.lex_state = 0, .external_lex_state = 27}, + [1013] = {.lex_state = 12}, + [1014] = {.lex_state = 51}, + [1015] = {.lex_state = 0, .external_lex_state = 27}, + [1016] = {.lex_state = 0, .external_lex_state = 71}, + [1017] = {.lex_state = 0, .external_lex_state = 27}, + [1018] = {.lex_state = 0, .external_lex_state = 71}, + [1019] = {.lex_state = 0, .external_lex_state = 27}, + [1020] = {.lex_state = 0, .external_lex_state = 27}, + [1021] = {.lex_state = 0, .external_lex_state = 27}, + [1022] = {.lex_state = 9}, + [1023] = {.lex_state = 0, .external_lex_state = 27}, + [1024] = {.lex_state = 0, .external_lex_state = 27}, + [1025] = {.lex_state = 0, .external_lex_state = 27}, + [1026] = {.lex_state = 0, .external_lex_state = 27}, + [1027] = {.lex_state = 0, .external_lex_state = 27}, + [1028] = {.lex_state = 0, .external_lex_state = 27}, + [1029] = {.lex_state = 0, .external_lex_state = 54}, + [1030] = {.lex_state = 0, .external_lex_state = 27}, + [1031] = {.lex_state = 0, .external_lex_state = 27}, + [1032] = {.lex_state = 0, .external_lex_state = 72}, + [1033] = {.lex_state = 0, .external_lex_state = 71}, + [1034] = {.lex_state = 0, .external_lex_state = 71}, + [1035] = {.lex_state = 51}, + [1036] = {.lex_state = 51}, + [1037] = {.lex_state = 0, .external_lex_state = 27}, + [1038] = {.lex_state = 0, .external_lex_state = 27}, + [1039] = {.lex_state = 0}, + [1040] = {.lex_state = 9}, + [1041] = {.lex_state = 5}, + [1042] = {.lex_state = 11}, + [1043] = {.lex_state = 51}, + [1044] = {.lex_state = 0, .external_lex_state = 71}, + [1045] = {.lex_state = 0, .external_lex_state = 27}, + [1046] = {.lex_state = 0}, + [1047] = {.lex_state = 9}, + [1048] = {.lex_state = 5}, + [1049] = {.lex_state = 11}, + [1050] = {.lex_state = 51}, + [1051] = {.lex_state = 0, .external_lex_state = 71}, + [1052] = {.lex_state = 0, .external_lex_state = 27}, + [1053] = {.lex_state = 0}, + [1054] = {.lex_state = 9}, + [1055] = {.lex_state = 5}, + [1056] = {.lex_state = 11}, + [1057] = {.lex_state = 51}, + [1058] = {.lex_state = 0, .external_lex_state = 27}, + [1059] = {.lex_state = 3}, + [1060] = {.lex_state = 0}, + [1061] = {.lex_state = 9}, + [1062] = {.lex_state = 5}, + [1063] = {.lex_state = 11}, [1064] = {.lex_state = 3}, - [1065] = {.lex_state = 0, .external_lex_state = 70}, - [1066] = {.lex_state = 0, .external_lex_state = 70}, - [1067] = {.lex_state = 0}, - [1068] = {.lex_state = 3}, + [1065] = {.lex_state = 0}, + [1066] = {.lex_state = 0, .external_lex_state = 27}, + [1067] = {.lex_state = 3}, + [1068] = {.lex_state = 0, .external_lex_state = 27}, [1069] = {.lex_state = 0}, - [1070] = {.lex_state = 0}, - [1071] = {.lex_state = 0}, - [1072] = {.lex_state = 0}, + [1070] = {.lex_state = 0, .external_lex_state = 71}, + [1071] = {.lex_state = 3}, + [1072] = {.lex_state = 0, .external_lex_state = 77}, [1073] = {.lex_state = 0}, - [1074] = {.lex_state = 0}, - [1075] = {.lex_state = 0}, + [1074] = {.lex_state = 0, .external_lex_state = 27}, + [1075] = {.lex_state = 3}, [1076] = {.lex_state = 0}, - [1077] = {.lex_state = 3}, - [1078] = {.lex_state = 0, .external_lex_state = 73}, - [1079] = {.lex_state = 0, .external_lex_state = 74}, - [1080] = {.lex_state = 0, .external_lex_state = 75}, + [1077] = {.lex_state = 0}, + [1078] = {.lex_state = 0, .external_lex_state = 28}, + [1079] = {.lex_state = 3}, + [1080] = {.lex_state = 0, .external_lex_state = 77}, + [1081] = {.lex_state = 0}, + [1082] = {.lex_state = 0, .external_lex_state = 77}, + [1083] = {.lex_state = 0}, + [1084] = {.lex_state = 0, .external_lex_state = 77}, + [1085] = {.lex_state = 0}, + [1086] = {.lex_state = 0, .external_lex_state = 77}, + [1087] = {.lex_state = 0}, + [1088] = {.lex_state = 0}, + [1089] = {.lex_state = 0}, + [1090] = {.lex_state = 0}, + [1091] = {.lex_state = 0}, + [1092] = {.lex_state = 0, .external_lex_state = 71}, + [1093] = {.lex_state = 0}, + [1094] = {.lex_state = 51}, + [1095] = {.lex_state = 0}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -4235,18 +4331,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SPACE] = ACTIONS(1), [anon_sym_PIPE] = ACTIONS(1), [anon_sym_NULL] = ACTIONS(1), + [anon_sym_LBRACK_CARET] = ACTIONS(1), [anon_sym_EQ] = ACTIONS(1), [anon_sym_COLON] = ACTIONS(1), [anon_sym_LBRACE] = ACTIONS(1), [anon_sym_RBRACE] = ACTIONS(1), [anon_sym_DOT] = ACTIONS(1), - [sym_identifier] = ACTIONS(1), + [aux_sym_identifier_token1] = ACTIONS(1), [anon_sym_DQUOTE] = ACTIONS(1), [aux_sym_value_token2] = ACTIONS(1), [sym__whitespace1] = ACTIONS(1), [anon_sym_LBRACE_DASH] = ACTIONS(1), - [sym_backslash_escape] = ACTIONS(1), + [anon_sym_POUND] = ACTIONS(1), [anon_sym_PERCENT] = ACTIONS(1), + [sym_backslash_escape] = ACTIONS(1), [sym__ignored] = ACTIONS(1), [sym__block_close] = ACTIONS(1), [sym__eof_or_newline] = ACTIONS(1), @@ -4286,7809 +4384,8131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block_quote_continuation] = ACTIONS(1), [sym__thematic_break_dash] = ACTIONS(1), [sym__thematic_break_star] = ACTIONS(1), - [sym__footnote_begin] = ACTIONS(1), + [sym__footnote_mark_begin] = ACTIONS(1), [sym__footnote_end] = ACTIONS(1), [sym__table_caption_begin] = ACTIONS(1), [sym__table_caption_end] = ACTIONS(1), + [sym__in_fallback] = ACTIONS(1), [sym__error] = ACTIONS(1), }, [1] = { - [sym_document] = STATE(902), - [sym_frontmatter] = STATE(2), - [sym__block_with_section] = STATE(156), - [sym__block_element] = STATE(156), - [sym_section] = STATE(156), - [sym_heading] = STATE(10), - [sym_list] = STATE(156), - [sym__list_dash] = STATE(143), - [sym__list_item_dash] = STATE(412), - [sym__list_plus] = STATE(143), - [sym__list_item_plus] = STATE(397), - [sym__list_star] = STATE(143), - [sym__list_item_star] = STATE(396), - [sym__list_task] = STATE(143), - [sym__list_item_task] = STATE(378), + [sym_document] = STATE(1076), + [sym_frontmatter] = STATE(5), + [sym__block_with_section] = STATE(207), + [sym__block_element] = STATE(207), + [sym_section] = STATE(207), + [sym_heading] = STATE(6), + [sym_list] = STATE(207), + [sym__list_dash] = STATE(220), + [sym__list_item_dash] = STATE(414), + [sym__list_plus] = STATE(220), + [sym__list_item_plus] = STATE(425), + [sym__list_star] = STATE(220), + [sym__list_item_star] = STATE(424), + [sym__list_task] = STATE(220), + [sym__list_item_task] = STATE(397), [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(143), - [sym__list_item_definition] = STATE(583), - [sym__list_decimal_period] = STATE(143), - [sym__list_item_decimal_period] = STATE(584), - [sym__list_decimal_paren] = STATE(143), - [sym__list_item_decimal_paren] = STATE(585), - [sym__list_decimal_parens] = STATE(143), - [sym__list_item_decimal_parens] = STATE(587), - [sym__list_lower_alpha_period] = STATE(143), - [sym__list_item_lower_alpha_period] = STATE(590), - [sym__list_lower_alpha_paren] = STATE(143), - [sym__list_item_lower_alpha_paren] = STATE(592), - [sym__list_lower_alpha_parens] = STATE(143), - [sym__list_item_lower_alpha_parens] = STATE(593), - [sym__list_upper_alpha_period] = STATE(143), - [sym__list_item_upper_alpha_period] = STATE(597), - [sym__list_upper_alpha_paren] = STATE(143), - [sym__list_item_upper_alpha_paren] = STATE(490), - [sym__list_upper_alpha_parens] = STATE(143), - [sym__list_item_upper_alpha_parens] = STATE(607), - [sym__list_lower_roman_period] = STATE(143), - [sym__list_item_lower_roman_period] = STATE(602), - [sym__list_lower_roman_paren] = STATE(143), - [sym__list_item_lower_roman_paren] = STATE(598), - [sym__list_lower_roman_parens] = STATE(143), - [sym__list_item_lower_roman_parens] = STATE(596), - [sym__list_upper_roman_period] = STATE(143), - [sym__list_item_upper_roman_period] = STATE(608), - [sym__list_upper_roman_paren] = STATE(143), - [sym__list_item_upper_roman_paren] = STATE(562), - [sym__list_upper_roman_parens] = STATE(143), - [sym__list_item_upper_roman_parens] = STATE(601), - [sym_table] = STATE(156), - [sym__table_content] = STATE(64), - [sym_table_separator] = STATE(64), + [sym__list_definition] = STATE(220), + [sym__list_item_definition] = STATE(502), + [sym__list_decimal_period] = STATE(220), + [sym__list_item_decimal_period] = STATE(503), + [sym__list_decimal_paren] = STATE(220), + [sym__list_item_decimal_paren] = STATE(504), + [sym__list_decimal_parens] = STATE(220), + [sym__list_item_decimal_parens] = STATE(505), + [sym__list_lower_alpha_period] = STATE(220), + [sym__list_item_lower_alpha_period] = STATE(506), + [sym__list_lower_alpha_paren] = STATE(220), + [sym__list_item_lower_alpha_paren] = STATE(507), + [sym__list_lower_alpha_parens] = STATE(220), + [sym__list_item_lower_alpha_parens] = STATE(508), + [sym__list_upper_alpha_period] = STATE(220), + [sym__list_item_upper_alpha_period] = STATE(509), + [sym__list_upper_alpha_paren] = STATE(220), + [sym__list_item_upper_alpha_paren] = STATE(511), + [sym__list_upper_alpha_parens] = STATE(220), + [sym__list_item_upper_alpha_parens] = STATE(512), + [sym__list_lower_roman_period] = STATE(220), + [sym__list_item_lower_roman_period] = STATE(513), + [sym__list_lower_roman_paren] = STATE(220), + [sym__list_item_lower_roman_paren] = STATE(516), + [sym__list_lower_roman_parens] = STATE(220), + [sym__list_item_lower_roman_parens] = STATE(522), + [sym__list_upper_roman_period] = STATE(220), + [sym__list_item_upper_roman_period] = STATE(523), + [sym__list_upper_roman_paren] = STATE(220), + [sym__list_item_upper_roman_paren] = STATE(525), + [sym__list_upper_roman_parens] = STATE(220), + [sym__list_item_upper_roman_parens] = STATE(526), + [sym_table] = STATE(207), + [sym__table_content] = STATE(65), + [sym_table_separator] = STATE(65), [sym_table_row] = STATE(70), - [sym_footnote] = STATE(156), - [sym_div] = STATE(156), - [sym_div_marker_begin] = STATE(1004), - [sym_code_block] = STATE(156), - [sym_raw_block] = STATE(156), - [sym_thematic_break] = STATE(156), - [sym_block_quote] = STATE(156), + [sym_footnote] = STATE(207), + [sym_footnote_marker_begin] = STATE(1072), + [sym_div] = STATE(207), + [sym_div_marker_begin] = STATE(1068), + [sym_code_block] = STATE(207), + [sym_raw_block] = STATE(207), + [sym_thematic_break] = STATE(207), + [sym_block_quote] = STATE(207), [sym__block_quote_prefix] = STATE(284), - [sym_link_reference_definition] = STATE(156), - [sym_block_attribute] = STATE(156), - [sym__paragraph] = STATE(156), - [sym__paragraph_content] = STATE(720), - [sym__inline] = STATE(703), - [sym__symbol_fallback] = STATE(366), - [aux_sym_document_repeat1] = STATE(8), - [aux_sym__list_dash_repeat1] = STATE(412), - [aux_sym__list_plus_repeat1] = STATE(397), - [aux_sym__list_star_repeat1] = STATE(396), - [aux_sym__list_task_repeat1] = STATE(378), - [aux_sym__list_definition_repeat1] = STATE(583), - [aux_sym__list_decimal_period_repeat1] = STATE(584), - [aux_sym__list_decimal_paren_repeat1] = STATE(585), - [aux_sym__list_decimal_parens_repeat1] = STATE(587), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(590), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(592), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(593), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(597), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(490), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(607), - [aux_sym__list_lower_roman_period_repeat1] = STATE(602), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(598), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(596), - [aux_sym__list_upper_roman_period_repeat1] = STATE(608), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(562), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(601), - [aux_sym_table_repeat1] = STATE(64), - [aux_sym__block_quote_prefix_repeat1] = STATE(323), - [aux_sym__inline_repeat1] = STATE(366), + [sym_link_reference_definition] = STATE(207), + [sym_block_attribute] = STATE(207), + [sym__paragraph] = STATE(207), + [sym__paragraph_content] = STATE(728), + [sym__inline] = STATE(710), + [sym__symbol_fallback] = STATE(355), + [aux_sym_document_repeat1] = STATE(7), + [aux_sym__list_dash_repeat1] = STATE(414), + [aux_sym__list_plus_repeat1] = STATE(425), + [aux_sym__list_star_repeat1] = STATE(424), + [aux_sym__list_task_repeat1] = STATE(397), + [aux_sym__list_definition_repeat1] = STATE(502), + [aux_sym__list_decimal_period_repeat1] = STATE(503), + [aux_sym__list_decimal_paren_repeat1] = STATE(504), + [aux_sym__list_decimal_parens_repeat1] = STATE(505), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(506), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(507), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(508), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(509), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(511), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(512), + [aux_sym__list_lower_roman_period_repeat1] = STATE(513), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(516), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(522), + [aux_sym__list_upper_roman_period_repeat1] = STATE(523), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(525), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(526), + [aux_sym_table_repeat1] = STATE(65), + [aux_sym__block_quote_prefix_repeat1] = STATE(316), + [aux_sym__inline_repeat1] = STATE(355), [ts_builtin_sym_end] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(5), [anon_sym_PIPE] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(9), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__newline] = ACTIONS(13), - [sym_frontmatter_marker] = ACTIONS(15), - [sym__heading_begin] = ACTIONS(17), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(21), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(63), - [sym__block_quote_continuation] = ACTIONS(65), - [sym__thematic_break_dash] = ACTIONS(67), - [sym__thematic_break_star] = ACTIONS(67), - [sym__footnote_begin] = ACTIONS(69), + [anon_sym_LBRACK_CARET] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(13), + [aux_sym__inline_token1] = ACTIONS(13), + [anon_sym_LBRACE_DASH] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(13), + [anon_sym_PERCENT] = ACTIONS(13), + [sym__newline] = ACTIONS(15), + [sym_frontmatter_marker] = ACTIONS(17), + [sym__heading_begin] = ACTIONS(19), + [sym__div_begin] = ACTIONS(21), + [sym__code_block_begin] = ACTIONS(23), + [sym_list_marker_dash] = ACTIONS(25), + [sym_list_marker_star] = ACTIONS(27), + [sym_list_marker_plus] = ACTIONS(29), + [sym__list_marker_task_begin] = ACTIONS(31), + [sym_list_marker_definition] = ACTIONS(33), + [sym_list_marker_decimal_period] = ACTIONS(35), + [sym_list_marker_lower_alpha_period] = ACTIONS(37), + [sym_list_marker_upper_alpha_period] = ACTIONS(39), + [sym_list_marker_lower_roman_period] = ACTIONS(41), + [sym_list_marker_upper_roman_period] = ACTIONS(43), + [sym_list_marker_decimal_paren] = ACTIONS(45), + [sym_list_marker_lower_alpha_paren] = ACTIONS(47), + [sym_list_marker_upper_alpha_paren] = ACTIONS(49), + [sym_list_marker_lower_roman_paren] = ACTIONS(51), + [sym_list_marker_upper_roman_paren] = ACTIONS(53), + [sym_list_marker_decimal_parens] = ACTIONS(55), + [sym_list_marker_lower_alpha_parens] = ACTIONS(57), + [sym_list_marker_upper_alpha_parens] = ACTIONS(59), + [sym_list_marker_lower_roman_parens] = ACTIONS(61), + [sym_list_marker_upper_roman_parens] = ACTIONS(63), + [sym__block_quote_begin] = ACTIONS(65), + [sym__block_quote_continuation] = ACTIONS(67), + [sym__thematic_break_dash] = ACTIONS(69), + [sym__thematic_break_star] = ACTIONS(69), }, [2] = { - [sym__block_with_section] = STATE(156), - [sym__block_element] = STATE(156), - [sym_section] = STATE(156), - [sym_heading] = STATE(10), - [sym_list] = STATE(156), - [sym__list_dash] = STATE(143), - [sym__list_item_dash] = STATE(412), - [sym__list_plus] = STATE(143), - [sym__list_item_plus] = STATE(397), - [sym__list_star] = STATE(143), - [sym__list_item_star] = STATE(396), - [sym__list_task] = STATE(143), - [sym__list_item_task] = STATE(378), + [sym__block_with_section] = STATE(233), + [sym__block_element] = STATE(233), + [sym_section] = STATE(233), + [sym_heading] = STATE(8), + [sym_list] = STATE(233), + [sym__list_dash] = STATE(186), + [sym__list_item_dash] = STATE(415), + [sym__list_plus] = STATE(186), + [sym__list_item_plus] = STATE(406), + [sym__list_star] = STATE(186), + [sym__list_item_star] = STATE(408), + [sym__list_task] = STATE(186), + [sym__list_item_task] = STATE(391), [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(143), - [sym__list_item_definition] = STATE(583), - [sym__list_decimal_period] = STATE(143), - [sym__list_item_decimal_period] = STATE(584), - [sym__list_decimal_paren] = STATE(143), - [sym__list_item_decimal_paren] = STATE(585), - [sym__list_decimal_parens] = STATE(143), - [sym__list_item_decimal_parens] = STATE(587), - [sym__list_lower_alpha_period] = STATE(143), - [sym__list_item_lower_alpha_period] = STATE(590), - [sym__list_lower_alpha_paren] = STATE(143), - [sym__list_item_lower_alpha_paren] = STATE(592), - [sym__list_lower_alpha_parens] = STATE(143), - [sym__list_item_lower_alpha_parens] = STATE(593), - [sym__list_upper_alpha_period] = STATE(143), - [sym__list_item_upper_alpha_period] = STATE(597), - [sym__list_upper_alpha_paren] = STATE(143), - [sym__list_item_upper_alpha_paren] = STATE(490), - [sym__list_upper_alpha_parens] = STATE(143), - [sym__list_item_upper_alpha_parens] = STATE(607), - [sym__list_lower_roman_period] = STATE(143), - [sym__list_item_lower_roman_period] = STATE(602), - [sym__list_lower_roman_paren] = STATE(143), - [sym__list_item_lower_roman_paren] = STATE(598), - [sym__list_lower_roman_parens] = STATE(143), - [sym__list_item_lower_roman_parens] = STATE(596), - [sym__list_upper_roman_period] = STATE(143), - [sym__list_item_upper_roman_period] = STATE(608), - [sym__list_upper_roman_paren] = STATE(143), - [sym__list_item_upper_roman_paren] = STATE(562), - [sym__list_upper_roman_parens] = STATE(143), - [sym__list_item_upper_roman_parens] = STATE(601), - [sym_table] = STATE(156), + [sym__list_definition] = STATE(186), + [sym__list_item_definition] = STATE(570), + [sym__list_decimal_period] = STATE(186), + [sym__list_item_decimal_period] = STATE(573), + [sym__list_decimal_paren] = STATE(186), + [sym__list_item_decimal_paren] = STATE(575), + [sym__list_decimal_parens] = STATE(186), + [sym__list_item_decimal_parens] = STATE(578), + [sym__list_lower_alpha_period] = STATE(186), + [sym__list_item_lower_alpha_period] = STATE(495), + [sym__list_lower_alpha_paren] = STATE(186), + [sym__list_item_lower_alpha_paren] = STATE(583), + [sym__list_lower_alpha_parens] = STATE(186), + [sym__list_item_lower_alpha_parens] = STATE(494), + [sym__list_upper_alpha_period] = STATE(186), + [sym__list_item_upper_alpha_period] = STATE(584), + [sym__list_upper_alpha_paren] = STATE(186), + [sym__list_item_upper_alpha_paren] = STATE(586), + [sym__list_upper_alpha_parens] = STATE(186), + [sym__list_item_upper_alpha_parens] = STATE(587), + [sym__list_lower_roman_period] = STATE(186), + [sym__list_item_lower_roman_period] = STATE(588), + [sym__list_lower_roman_paren] = STATE(186), + [sym__list_item_lower_roman_paren] = STATE(590), + [sym__list_lower_roman_parens] = STATE(186), + [sym__list_item_lower_roman_parens] = STATE(591), + [sym__list_upper_roman_period] = STATE(186), + [sym__list_item_upper_roman_period] = STATE(592), + [sym__list_upper_roman_paren] = STATE(186), + [sym__list_item_upper_roman_paren] = STATE(596), + [sym__list_upper_roman_parens] = STATE(186), + [sym__list_item_upper_roman_parens] = STATE(597), + [sym_table] = STATE(233), [sym__table_content] = STATE(64), [sym_table_separator] = STATE(64), - [sym_table_row] = STATE(70), - [sym_footnote] = STATE(156), - [sym_div] = STATE(156), - [sym_div_marker_begin] = STATE(1004), - [sym_code_block] = STATE(156), - [sym_raw_block] = STATE(156), - [sym_thematic_break] = STATE(156), - [sym_block_quote] = STATE(156), - [sym__block_quote_prefix] = STATE(284), - [sym_link_reference_definition] = STATE(156), - [sym_block_attribute] = STATE(156), - [sym__paragraph] = STATE(156), - [sym__paragraph_content] = STATE(720), - [sym__inline] = STATE(703), - [sym__symbol_fallback] = STATE(366), - [aux_sym_document_repeat1] = STATE(5), - [aux_sym__list_dash_repeat1] = STATE(412), - [aux_sym__list_plus_repeat1] = STATE(397), - [aux_sym__list_star_repeat1] = STATE(396), - [aux_sym__list_task_repeat1] = STATE(378), - [aux_sym__list_definition_repeat1] = STATE(583), - [aux_sym__list_decimal_period_repeat1] = STATE(584), - [aux_sym__list_decimal_paren_repeat1] = STATE(585), - [aux_sym__list_decimal_parens_repeat1] = STATE(587), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(590), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(592), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(593), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(597), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(490), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(607), - [aux_sym__list_lower_roman_period_repeat1] = STATE(602), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(598), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(596), - [aux_sym__list_upper_roman_period_repeat1] = STATE(608), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(562), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(601), + [sym_table_row] = STATE(72), + [sym_footnote] = STATE(233), + [sym_footnote_marker_begin] = STATE(1084), + [sym_div] = STATE(233), + [sym_div_marker_begin] = STATE(996), + [sym_code_block] = STATE(233), + [sym_raw_block] = STATE(233), + [sym_thematic_break] = STATE(233), + [sym_block_quote] = STATE(233), + [sym__block_quote_prefix] = STATE(287), + [sym_link_reference_definition] = STATE(233), + [sym_block_attribute] = STATE(233), + [sym__paragraph] = STATE(233), + [sym__paragraph_content] = STATE(811), + [sym__inline] = STATE(710), + [sym__symbol_fallback] = STATE(355), + [aux_sym_document_repeat1] = STATE(3), + [aux_sym__list_dash_repeat1] = STATE(415), + [aux_sym__list_plus_repeat1] = STATE(406), + [aux_sym__list_star_repeat1] = STATE(408), + [aux_sym__list_task_repeat1] = STATE(391), + [aux_sym__list_definition_repeat1] = STATE(570), + [aux_sym__list_decimal_period_repeat1] = STATE(573), + [aux_sym__list_decimal_paren_repeat1] = STATE(575), + [aux_sym__list_decimal_parens_repeat1] = STATE(578), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(495), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(583), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(494), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(584), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(586), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(587), + [aux_sym__list_lower_roman_period_repeat1] = STATE(588), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(590), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(591), + [aux_sym__list_upper_roman_period_repeat1] = STATE(592), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(596), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(597), [aux_sym_table_repeat1] = STATE(64), - [aux_sym__block_quote_prefix_repeat1] = STATE(323), - [aux_sym__inline_repeat1] = STATE(366), - [ts_builtin_sym_end] = ACTIONS(71), - [anon_sym_LBRACK] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(9), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__newline] = ACTIONS(13), - [sym__heading_begin] = ACTIONS(17), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(21), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(63), - [sym__block_quote_continuation] = ACTIONS(65), - [sym__thematic_break_dash] = ACTIONS(67), - [sym__thematic_break_star] = ACTIONS(67), - [sym__footnote_begin] = ACTIONS(69), + [aux_sym__block_quote_prefix_repeat1] = STATE(316), + [aux_sym__inline_repeat1] = STATE(355), + [anon_sym_LBRACK] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(73), + [anon_sym_LBRACK_CARET] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DOT] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(13), + [aux_sym__inline_token1] = ACTIONS(13), + [anon_sym_LBRACE_DASH] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(13), + [anon_sym_PERCENT] = ACTIONS(13), + [sym__block_close] = ACTIONS(77), + [sym__newline] = ACTIONS(79), + [sym__heading_begin] = ACTIONS(19), + [sym__div_begin] = ACTIONS(21), + [sym__code_block_begin] = ACTIONS(81), + [sym_list_marker_dash] = ACTIONS(25), + [sym_list_marker_star] = ACTIONS(27), + [sym_list_marker_plus] = ACTIONS(29), + [sym__list_marker_task_begin] = ACTIONS(31), + [sym_list_marker_definition] = ACTIONS(33), + [sym_list_marker_decimal_period] = ACTIONS(35), + [sym_list_marker_lower_alpha_period] = ACTIONS(37), + [sym_list_marker_upper_alpha_period] = ACTIONS(39), + [sym_list_marker_lower_roman_period] = ACTIONS(41), + [sym_list_marker_upper_roman_period] = ACTIONS(43), + [sym_list_marker_decimal_paren] = ACTIONS(45), + [sym_list_marker_lower_alpha_paren] = ACTIONS(47), + [sym_list_marker_upper_alpha_paren] = ACTIONS(49), + [sym_list_marker_lower_roman_paren] = ACTIONS(51), + [sym_list_marker_upper_roman_paren] = ACTIONS(53), + [sym_list_marker_decimal_parens] = ACTIONS(55), + [sym_list_marker_lower_alpha_parens] = ACTIONS(57), + [sym_list_marker_upper_alpha_parens] = ACTIONS(59), + [sym_list_marker_lower_roman_parens] = ACTIONS(61), + [sym_list_marker_upper_roman_parens] = ACTIONS(63), + [sym__block_quote_begin] = ACTIONS(83), + [sym__block_quote_continuation] = ACTIONS(67), + [sym__thematic_break_dash] = ACTIONS(85), + [sym__thematic_break_star] = ACTIONS(85), }, [3] = { - [sym__block_with_section] = STATE(146), - [sym__block_element] = STATE(146), - [sym_section] = STATE(146), - [sym_heading] = STATE(7), - [sym_list] = STATE(146), - [sym__list_dash] = STATE(141), - [sym__list_item_dash] = STATE(416), - [sym__list_plus] = STATE(141), - [sym__list_item_plus] = STATE(419), - [sym__list_star] = STATE(141), - [sym__list_item_star] = STATE(407), - [sym__list_task] = STATE(141), - [sym__list_item_task] = STATE(371), + [sym__block_with_section] = STATE(233), + [sym__block_element] = STATE(233), + [sym_section] = STATE(233), + [sym_heading] = STATE(8), + [sym_list] = STATE(233), + [sym__list_dash] = STATE(186), + [sym__list_item_dash] = STATE(415), + [sym__list_plus] = STATE(186), + [sym__list_item_plus] = STATE(406), + [sym__list_star] = STATE(186), + [sym__list_item_star] = STATE(408), + [sym__list_task] = STATE(186), + [sym__list_item_task] = STATE(391), [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(141), - [sym__list_item_definition] = STATE(549), - [sym__list_decimal_period] = STATE(141), - [sym__list_item_decimal_period] = STATE(548), - [sym__list_decimal_paren] = STATE(141), - [sym__list_item_decimal_paren] = STATE(547), - [sym__list_decimal_parens] = STATE(141), - [sym__list_item_decimal_parens] = STATE(546), - [sym__list_lower_alpha_period] = STATE(141), - [sym__list_item_lower_alpha_period] = STATE(545), - [sym__list_lower_alpha_paren] = STATE(141), - [sym__list_item_lower_alpha_paren] = STATE(544), - [sym__list_lower_alpha_parens] = STATE(141), - [sym__list_item_lower_alpha_parens] = STATE(543), - [sym__list_upper_alpha_period] = STATE(141), - [sym__list_item_upper_alpha_period] = STATE(542), - [sym__list_upper_alpha_paren] = STATE(141), - [sym__list_item_upper_alpha_paren] = STATE(541), - [sym__list_upper_alpha_parens] = STATE(141), - [sym__list_item_upper_alpha_parens] = STATE(540), - [sym__list_lower_roman_period] = STATE(141), - [sym__list_item_lower_roman_period] = STATE(539), - [sym__list_lower_roman_paren] = STATE(141), - [sym__list_item_lower_roman_paren] = STATE(538), - [sym__list_lower_roman_parens] = STATE(141), - [sym__list_item_lower_roman_parens] = STATE(537), - [sym__list_upper_roman_period] = STATE(141), - [sym__list_item_upper_roman_period] = STATE(536), - [sym__list_upper_roman_paren] = STATE(141), - [sym__list_item_upper_roman_paren] = STATE(535), - [sym__list_upper_roman_parens] = STATE(141), - [sym__list_item_upper_roman_parens] = STATE(534), - [sym_table] = STATE(146), - [sym__table_content] = STATE(66), - [sym_table_separator] = STATE(66), + [sym__list_definition] = STATE(186), + [sym__list_item_definition] = STATE(570), + [sym__list_decimal_period] = STATE(186), + [sym__list_item_decimal_period] = STATE(573), + [sym__list_decimal_paren] = STATE(186), + [sym__list_item_decimal_paren] = STATE(575), + [sym__list_decimal_parens] = STATE(186), + [sym__list_item_decimal_parens] = STATE(578), + [sym__list_lower_alpha_period] = STATE(186), + [sym__list_item_lower_alpha_period] = STATE(495), + [sym__list_lower_alpha_paren] = STATE(186), + [sym__list_item_lower_alpha_paren] = STATE(583), + [sym__list_lower_alpha_parens] = STATE(186), + [sym__list_item_lower_alpha_parens] = STATE(494), + [sym__list_upper_alpha_period] = STATE(186), + [sym__list_item_upper_alpha_period] = STATE(584), + [sym__list_upper_alpha_paren] = STATE(186), + [sym__list_item_upper_alpha_paren] = STATE(586), + [sym__list_upper_alpha_parens] = STATE(186), + [sym__list_item_upper_alpha_parens] = STATE(587), + [sym__list_lower_roman_period] = STATE(186), + [sym__list_item_lower_roman_period] = STATE(588), + [sym__list_lower_roman_paren] = STATE(186), + [sym__list_item_lower_roman_paren] = STATE(590), + [sym__list_lower_roman_parens] = STATE(186), + [sym__list_item_lower_roman_parens] = STATE(591), + [sym__list_upper_roman_period] = STATE(186), + [sym__list_item_upper_roman_period] = STATE(592), + [sym__list_upper_roman_paren] = STATE(186), + [sym__list_item_upper_roman_paren] = STATE(596), + [sym__list_upper_roman_parens] = STATE(186), + [sym__list_item_upper_roman_parens] = STATE(597), + [sym_table] = STATE(233), + [sym__table_content] = STATE(64), + [sym_table_separator] = STATE(64), [sym_table_row] = STATE(72), - [sym_footnote] = STATE(146), - [sym_div] = STATE(146), - [sym_div_marker_begin] = STATE(985), - [sym_code_block] = STATE(146), - [sym_raw_block] = STATE(146), - [sym_thematic_break] = STATE(146), - [sym_block_quote] = STATE(146), - [sym__block_quote_prefix] = STATE(286), - [sym_link_reference_definition] = STATE(146), - [sym_block_attribute] = STATE(146), - [sym__paragraph] = STATE(146), - [sym__paragraph_content] = STATE(801), - [sym__inline] = STATE(703), - [sym__symbol_fallback] = STATE(366), + [sym_footnote] = STATE(233), + [sym_footnote_marker_begin] = STATE(1084), + [sym_div] = STATE(233), + [sym_div_marker_begin] = STATE(996), + [sym_code_block] = STATE(233), + [sym_raw_block] = STATE(233), + [sym_thematic_break] = STATE(233), + [sym_block_quote] = STATE(233), + [sym__block_quote_prefix] = STATE(287), + [sym_link_reference_definition] = STATE(233), + [sym_block_attribute] = STATE(233), + [sym__paragraph] = STATE(233), + [sym__paragraph_content] = STATE(811), + [sym__inline] = STATE(710), + [sym__symbol_fallback] = STATE(355), [aux_sym_document_repeat1] = STATE(3), - [aux_sym__list_dash_repeat1] = STATE(416), - [aux_sym__list_plus_repeat1] = STATE(419), - [aux_sym__list_star_repeat1] = STATE(407), - [aux_sym__list_task_repeat1] = STATE(371), - [aux_sym__list_definition_repeat1] = STATE(549), - [aux_sym__list_decimal_period_repeat1] = STATE(548), - [aux_sym__list_decimal_paren_repeat1] = STATE(547), - [aux_sym__list_decimal_parens_repeat1] = STATE(546), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(545), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(544), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(543), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(542), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(541), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(540), - [aux_sym__list_lower_roman_period_repeat1] = STATE(539), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(538), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(537), - [aux_sym__list_upper_roman_period_repeat1] = STATE(536), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(535), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(534), - [aux_sym_table_repeat1] = STATE(66), - [aux_sym__block_quote_prefix_repeat1] = STATE(323), - [aux_sym__inline_repeat1] = STATE(366), - [anon_sym_LBRACK] = ACTIONS(73), - [anon_sym_PIPE] = ACTIONS(76), - [anon_sym_LBRACE] = ACTIONS(79), - [aux_sym__inline_token1] = ACTIONS(82), - [anon_sym_LBRACE_DASH] = ACTIONS(82), - [sym__block_close] = ACTIONS(85), - [sym__newline] = ACTIONS(87), - [sym__heading_begin] = ACTIONS(90), - [sym__div_begin] = ACTIONS(93), - [sym__code_block_begin] = ACTIONS(96), - [sym_list_marker_dash] = ACTIONS(99), - [sym_list_marker_star] = ACTIONS(102), - [sym_list_marker_plus] = ACTIONS(105), - [sym__list_marker_task_begin] = ACTIONS(108), - [sym_list_marker_definition] = ACTIONS(111), - [sym_list_marker_decimal_period] = ACTIONS(114), - [sym_list_marker_lower_alpha_period] = ACTIONS(117), - [sym_list_marker_upper_alpha_period] = ACTIONS(120), - [sym_list_marker_lower_roman_period] = ACTIONS(123), - [sym_list_marker_upper_roman_period] = ACTIONS(126), - [sym_list_marker_decimal_paren] = ACTIONS(129), - [sym_list_marker_lower_alpha_paren] = ACTIONS(132), - [sym_list_marker_upper_alpha_paren] = ACTIONS(135), - [sym_list_marker_lower_roman_paren] = ACTIONS(138), - [sym_list_marker_upper_roman_paren] = ACTIONS(141), - [sym_list_marker_decimal_parens] = ACTIONS(144), - [sym_list_marker_lower_alpha_parens] = ACTIONS(147), - [sym_list_marker_upper_alpha_parens] = ACTIONS(150), - [sym_list_marker_lower_roman_parens] = ACTIONS(153), - [sym_list_marker_upper_roman_parens] = ACTIONS(156), - [sym__block_quote_begin] = ACTIONS(159), - [sym__block_quote_continuation] = ACTIONS(162), - [sym__thematic_break_dash] = ACTIONS(165), - [sym__thematic_break_star] = ACTIONS(165), - [sym__footnote_begin] = ACTIONS(168), + [aux_sym__list_dash_repeat1] = STATE(415), + [aux_sym__list_plus_repeat1] = STATE(406), + [aux_sym__list_star_repeat1] = STATE(408), + [aux_sym__list_task_repeat1] = STATE(391), + [aux_sym__list_definition_repeat1] = STATE(570), + [aux_sym__list_decimal_period_repeat1] = STATE(573), + [aux_sym__list_decimal_paren_repeat1] = STATE(575), + [aux_sym__list_decimal_parens_repeat1] = STATE(578), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(495), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(583), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(494), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(584), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(586), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(587), + [aux_sym__list_lower_roman_period_repeat1] = STATE(588), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(590), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(591), + [aux_sym__list_upper_roman_period_repeat1] = STATE(592), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(596), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(597), + [aux_sym_table_repeat1] = STATE(64), + [aux_sym__block_quote_prefix_repeat1] = STATE(316), + [aux_sym__inline_repeat1] = STATE(355), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_PIPE] = ACTIONS(90), + [anon_sym_LBRACK_CARET] = ACTIONS(93), + [anon_sym_LBRACE] = ACTIONS(96), + [anon_sym_DOT] = ACTIONS(99), + [aux_sym_identifier_token1] = ACTIONS(99), + [aux_sym__inline_token1] = ACTIONS(99), + [anon_sym_LBRACE_DASH] = ACTIONS(99), + [anon_sym_POUND] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(99), + [sym__block_close] = ACTIONS(102), + [sym__newline] = ACTIONS(104), + [sym__heading_begin] = ACTIONS(107), + [sym__div_begin] = ACTIONS(110), + [sym__code_block_begin] = ACTIONS(113), + [sym_list_marker_dash] = ACTIONS(116), + [sym_list_marker_star] = ACTIONS(119), + [sym_list_marker_plus] = ACTIONS(122), + [sym__list_marker_task_begin] = ACTIONS(125), + [sym_list_marker_definition] = ACTIONS(128), + [sym_list_marker_decimal_period] = ACTIONS(131), + [sym_list_marker_lower_alpha_period] = ACTIONS(134), + [sym_list_marker_upper_alpha_period] = ACTIONS(137), + [sym_list_marker_lower_roman_period] = ACTIONS(140), + [sym_list_marker_upper_roman_period] = ACTIONS(143), + [sym_list_marker_decimal_paren] = ACTIONS(146), + [sym_list_marker_lower_alpha_paren] = ACTIONS(149), + [sym_list_marker_upper_alpha_paren] = ACTIONS(152), + [sym_list_marker_lower_roman_paren] = ACTIONS(155), + [sym_list_marker_upper_roman_paren] = ACTIONS(158), + [sym_list_marker_decimal_parens] = ACTIONS(161), + [sym_list_marker_lower_alpha_parens] = ACTIONS(164), + [sym_list_marker_upper_alpha_parens] = ACTIONS(167), + [sym_list_marker_lower_roman_parens] = ACTIONS(170), + [sym_list_marker_upper_roman_parens] = ACTIONS(173), + [sym__block_quote_begin] = ACTIONS(176), + [sym__block_quote_continuation] = ACTIONS(179), + [sym__thematic_break_dash] = ACTIONS(182), + [sym__thematic_break_star] = ACTIONS(182), }, [4] = { - [sym__block_with_section] = STATE(156), - [sym__block_element] = STATE(156), - [sym_section] = STATE(156), - [sym_heading] = STATE(10), - [sym_list] = STATE(156), - [sym__list_dash] = STATE(143), - [sym__list_item_dash] = STATE(412), - [sym__list_plus] = STATE(143), - [sym__list_item_plus] = STATE(397), - [sym__list_star] = STATE(143), - [sym__list_item_star] = STATE(396), - [sym__list_task] = STATE(143), - [sym__list_item_task] = STATE(378), + [sym__block_with_section] = STATE(233), + [sym__block_element] = STATE(233), + [sym_section] = STATE(233), + [sym_heading] = STATE(8), + [sym_list] = STATE(233), + [sym__list_dash] = STATE(186), + [sym__list_item_dash] = STATE(415), + [sym__list_plus] = STATE(186), + [sym__list_item_plus] = STATE(406), + [sym__list_star] = STATE(186), + [sym__list_item_star] = STATE(408), + [sym__list_task] = STATE(186), + [sym__list_item_task] = STATE(391), [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(143), - [sym__list_item_definition] = STATE(583), - [sym__list_decimal_period] = STATE(143), - [sym__list_item_decimal_period] = STATE(584), - [sym__list_decimal_paren] = STATE(143), - [sym__list_item_decimal_paren] = STATE(585), - [sym__list_decimal_parens] = STATE(143), - [sym__list_item_decimal_parens] = STATE(587), - [sym__list_lower_alpha_period] = STATE(143), - [sym__list_item_lower_alpha_period] = STATE(590), - [sym__list_lower_alpha_paren] = STATE(143), - [sym__list_item_lower_alpha_paren] = STATE(592), - [sym__list_lower_alpha_parens] = STATE(143), - [sym__list_item_lower_alpha_parens] = STATE(593), - [sym__list_upper_alpha_period] = STATE(143), - [sym__list_item_upper_alpha_period] = STATE(597), - [sym__list_upper_alpha_paren] = STATE(143), - [sym__list_item_upper_alpha_paren] = STATE(490), - [sym__list_upper_alpha_parens] = STATE(143), - [sym__list_item_upper_alpha_parens] = STATE(607), - [sym__list_lower_roman_period] = STATE(143), - [sym__list_item_lower_roman_period] = STATE(602), - [sym__list_lower_roman_paren] = STATE(143), - [sym__list_item_lower_roman_paren] = STATE(598), - [sym__list_lower_roman_parens] = STATE(143), - [sym__list_item_lower_roman_parens] = STATE(596), - [sym__list_upper_roman_period] = STATE(143), - [sym__list_item_upper_roman_period] = STATE(608), - [sym__list_upper_roman_paren] = STATE(143), - [sym__list_item_upper_roman_paren] = STATE(562), - [sym__list_upper_roman_parens] = STATE(143), - [sym__list_item_upper_roman_parens] = STATE(601), - [sym_table] = STATE(156), + [sym__list_definition] = STATE(186), + [sym__list_item_definition] = STATE(570), + [sym__list_decimal_period] = STATE(186), + [sym__list_item_decimal_period] = STATE(573), + [sym__list_decimal_paren] = STATE(186), + [sym__list_item_decimal_paren] = STATE(575), + [sym__list_decimal_parens] = STATE(186), + [sym__list_item_decimal_parens] = STATE(578), + [sym__list_lower_alpha_period] = STATE(186), + [sym__list_item_lower_alpha_period] = STATE(495), + [sym__list_lower_alpha_paren] = STATE(186), + [sym__list_item_lower_alpha_paren] = STATE(583), + [sym__list_lower_alpha_parens] = STATE(186), + [sym__list_item_lower_alpha_parens] = STATE(494), + [sym__list_upper_alpha_period] = STATE(186), + [sym__list_item_upper_alpha_period] = STATE(584), + [sym__list_upper_alpha_paren] = STATE(186), + [sym__list_item_upper_alpha_paren] = STATE(586), + [sym__list_upper_alpha_parens] = STATE(186), + [sym__list_item_upper_alpha_parens] = STATE(587), + [sym__list_lower_roman_period] = STATE(186), + [sym__list_item_lower_roman_period] = STATE(588), + [sym__list_lower_roman_paren] = STATE(186), + [sym__list_item_lower_roman_paren] = STATE(590), + [sym__list_lower_roman_parens] = STATE(186), + [sym__list_item_lower_roman_parens] = STATE(591), + [sym__list_upper_roman_period] = STATE(186), + [sym__list_item_upper_roman_period] = STATE(592), + [sym__list_upper_roman_paren] = STATE(186), + [sym__list_item_upper_roman_paren] = STATE(596), + [sym__list_upper_roman_parens] = STATE(186), + [sym__list_item_upper_roman_parens] = STATE(597), + [sym_table] = STATE(233), [sym__table_content] = STATE(64), [sym_table_separator] = STATE(64), - [sym_table_row] = STATE(70), - [sym_footnote] = STATE(156), - [sym_div] = STATE(156), - [sym_div_marker_begin] = STATE(1004), - [sym_code_block] = STATE(156), - [sym_raw_block] = STATE(156), - [sym_thematic_break] = STATE(156), - [sym_block_quote] = STATE(156), - [sym__block_quote_prefix] = STATE(284), - [sym_link_reference_definition] = STATE(156), - [sym_block_attribute] = STATE(156), - [sym__paragraph] = STATE(156), - [sym__paragraph_content] = STATE(720), - [sym__inline] = STATE(703), - [sym__symbol_fallback] = STATE(366), - [aux_sym_document_repeat1] = STATE(4), - [aux_sym__list_dash_repeat1] = STATE(412), - [aux_sym__list_plus_repeat1] = STATE(397), - [aux_sym__list_star_repeat1] = STATE(396), - [aux_sym__list_task_repeat1] = STATE(378), - [aux_sym__list_definition_repeat1] = STATE(583), - [aux_sym__list_decimal_period_repeat1] = STATE(584), - [aux_sym__list_decimal_paren_repeat1] = STATE(585), - [aux_sym__list_decimal_parens_repeat1] = STATE(587), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(590), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(592), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(593), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(597), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(490), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(607), - [aux_sym__list_lower_roman_period_repeat1] = STATE(602), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(598), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(596), - [aux_sym__list_upper_roman_period_repeat1] = STATE(608), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(562), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(601), + [sym_table_row] = STATE(72), + [sym_footnote] = STATE(233), + [sym_footnote_marker_begin] = STATE(1084), + [sym_div] = STATE(233), + [sym_div_marker_begin] = STATE(996), + [sym_code_block] = STATE(233), + [sym_raw_block] = STATE(233), + [sym_thematic_break] = STATE(233), + [sym_block_quote] = STATE(233), + [sym__block_quote_prefix] = STATE(287), + [sym_link_reference_definition] = STATE(233), + [sym_block_attribute] = STATE(233), + [sym__paragraph] = STATE(233), + [sym__paragraph_content] = STATE(811), + [sym__inline] = STATE(710), + [sym__symbol_fallback] = STATE(355), + [aux_sym_document_repeat1] = STATE(3), + [aux_sym__list_dash_repeat1] = STATE(415), + [aux_sym__list_plus_repeat1] = STATE(406), + [aux_sym__list_star_repeat1] = STATE(408), + [aux_sym__list_task_repeat1] = STATE(391), + [aux_sym__list_definition_repeat1] = STATE(570), + [aux_sym__list_decimal_period_repeat1] = STATE(573), + [aux_sym__list_decimal_paren_repeat1] = STATE(575), + [aux_sym__list_decimal_parens_repeat1] = STATE(578), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(495), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(583), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(494), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(584), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(586), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(587), + [aux_sym__list_lower_roman_period_repeat1] = STATE(588), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(590), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(591), + [aux_sym__list_upper_roman_period_repeat1] = STATE(592), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(596), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(597), [aux_sym_table_repeat1] = STATE(64), - [aux_sym__block_quote_prefix_repeat1] = STATE(323), - [aux_sym__inline_repeat1] = STATE(366), - [ts_builtin_sym_end] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(171), - [anon_sym_PIPE] = ACTIONS(174), - [anon_sym_LBRACE] = ACTIONS(177), - [aux_sym__inline_token1] = ACTIONS(82), - [anon_sym_LBRACE_DASH] = ACTIONS(82), - [sym__newline] = ACTIONS(180), - [sym__heading_begin] = ACTIONS(90), - [sym__div_begin] = ACTIONS(93), - [sym__code_block_begin] = ACTIONS(183), - [sym_list_marker_dash] = ACTIONS(99), - [sym_list_marker_star] = ACTIONS(102), - [sym_list_marker_plus] = ACTIONS(105), - [sym__list_marker_task_begin] = ACTIONS(108), - [sym_list_marker_definition] = ACTIONS(111), - [sym_list_marker_decimal_period] = ACTIONS(114), - [sym_list_marker_lower_alpha_period] = ACTIONS(117), - [sym_list_marker_upper_alpha_period] = ACTIONS(120), - [sym_list_marker_lower_roman_period] = ACTIONS(123), - [sym_list_marker_upper_roman_period] = ACTIONS(126), - [sym_list_marker_decimal_paren] = ACTIONS(129), - [sym_list_marker_lower_alpha_paren] = ACTIONS(132), - [sym_list_marker_upper_alpha_paren] = ACTIONS(135), - [sym_list_marker_lower_roman_paren] = ACTIONS(138), - [sym_list_marker_upper_roman_paren] = ACTIONS(141), - [sym_list_marker_decimal_parens] = ACTIONS(144), - [sym_list_marker_lower_alpha_parens] = ACTIONS(147), - [sym_list_marker_upper_alpha_parens] = ACTIONS(150), - [sym_list_marker_lower_roman_parens] = ACTIONS(153), - [sym_list_marker_upper_roman_parens] = ACTIONS(156), - [sym__block_quote_begin] = ACTIONS(186), - [sym__block_quote_continuation] = ACTIONS(162), - [sym__thematic_break_dash] = ACTIONS(189), - [sym__thematic_break_star] = ACTIONS(189), - [sym__footnote_begin] = ACTIONS(192), + [aux_sym__block_quote_prefix_repeat1] = STATE(316), + [aux_sym__inline_repeat1] = STATE(355), + [anon_sym_LBRACK] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(73), + [anon_sym_LBRACK_CARET] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DOT] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(13), + [aux_sym__inline_token1] = ACTIONS(13), + [anon_sym_LBRACE_DASH] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(13), + [anon_sym_PERCENT] = ACTIONS(13), + [sym__block_close] = ACTIONS(185), + [sym__newline] = ACTIONS(79), + [sym__heading_begin] = ACTIONS(19), + [sym__div_begin] = ACTIONS(21), + [sym__code_block_begin] = ACTIONS(81), + [sym_list_marker_dash] = ACTIONS(25), + [sym_list_marker_star] = ACTIONS(27), + [sym_list_marker_plus] = ACTIONS(29), + [sym__list_marker_task_begin] = ACTIONS(31), + [sym_list_marker_definition] = ACTIONS(33), + [sym_list_marker_decimal_period] = ACTIONS(35), + [sym_list_marker_lower_alpha_period] = ACTIONS(37), + [sym_list_marker_upper_alpha_period] = ACTIONS(39), + [sym_list_marker_lower_roman_period] = ACTIONS(41), + [sym_list_marker_upper_roman_period] = ACTIONS(43), + [sym_list_marker_decimal_paren] = ACTIONS(45), + [sym_list_marker_lower_alpha_paren] = ACTIONS(47), + [sym_list_marker_upper_alpha_paren] = ACTIONS(49), + [sym_list_marker_lower_roman_paren] = ACTIONS(51), + [sym_list_marker_upper_roman_paren] = ACTIONS(53), + [sym_list_marker_decimal_parens] = ACTIONS(55), + [sym_list_marker_lower_alpha_parens] = ACTIONS(57), + [sym_list_marker_upper_alpha_parens] = ACTIONS(59), + [sym_list_marker_lower_roman_parens] = ACTIONS(61), + [sym_list_marker_upper_roman_parens] = ACTIONS(63), + [sym__block_quote_begin] = ACTIONS(83), + [sym__block_quote_continuation] = ACTIONS(67), + [sym__thematic_break_dash] = ACTIONS(85), + [sym__thematic_break_star] = ACTIONS(85), }, [5] = { - [sym__block_with_section] = STATE(156), - [sym__block_element] = STATE(156), - [sym_section] = STATE(156), - [sym_heading] = STATE(10), - [sym_list] = STATE(156), - [sym__list_dash] = STATE(143), - [sym__list_item_dash] = STATE(412), - [sym__list_plus] = STATE(143), - [sym__list_item_plus] = STATE(397), - [sym__list_star] = STATE(143), - [sym__list_item_star] = STATE(396), - [sym__list_task] = STATE(143), - [sym__list_item_task] = STATE(378), + [sym__block_with_section] = STATE(207), + [sym__block_element] = STATE(207), + [sym_section] = STATE(207), + [sym_heading] = STATE(6), + [sym_list] = STATE(207), + [sym__list_dash] = STATE(220), + [sym__list_item_dash] = STATE(414), + [sym__list_plus] = STATE(220), + [sym__list_item_plus] = STATE(425), + [sym__list_star] = STATE(220), + [sym__list_item_star] = STATE(424), + [sym__list_task] = STATE(220), + [sym__list_item_task] = STATE(397), [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(143), - [sym__list_item_definition] = STATE(583), - [sym__list_decimal_period] = STATE(143), - [sym__list_item_decimal_period] = STATE(584), - [sym__list_decimal_paren] = STATE(143), - [sym__list_item_decimal_paren] = STATE(585), - [sym__list_decimal_parens] = STATE(143), - [sym__list_item_decimal_parens] = STATE(587), - [sym__list_lower_alpha_period] = STATE(143), - [sym__list_item_lower_alpha_period] = STATE(590), - [sym__list_lower_alpha_paren] = STATE(143), - [sym__list_item_lower_alpha_paren] = STATE(592), - [sym__list_lower_alpha_parens] = STATE(143), - [sym__list_item_lower_alpha_parens] = STATE(593), - [sym__list_upper_alpha_period] = STATE(143), - [sym__list_item_upper_alpha_period] = STATE(597), - [sym__list_upper_alpha_paren] = STATE(143), - [sym__list_item_upper_alpha_paren] = STATE(490), - [sym__list_upper_alpha_parens] = STATE(143), - [sym__list_item_upper_alpha_parens] = STATE(607), - [sym__list_lower_roman_period] = STATE(143), - [sym__list_item_lower_roman_period] = STATE(602), - [sym__list_lower_roman_paren] = STATE(143), - [sym__list_item_lower_roman_paren] = STATE(598), - [sym__list_lower_roman_parens] = STATE(143), - [sym__list_item_lower_roman_parens] = STATE(596), - [sym__list_upper_roman_period] = STATE(143), - [sym__list_item_upper_roman_period] = STATE(608), - [sym__list_upper_roman_paren] = STATE(143), - [sym__list_item_upper_roman_paren] = STATE(562), - [sym__list_upper_roman_parens] = STATE(143), - [sym__list_item_upper_roman_parens] = STATE(601), - [sym_table] = STATE(156), - [sym__table_content] = STATE(64), - [sym_table_separator] = STATE(64), + [sym__list_definition] = STATE(220), + [sym__list_item_definition] = STATE(502), + [sym__list_decimal_period] = STATE(220), + [sym__list_item_decimal_period] = STATE(503), + [sym__list_decimal_paren] = STATE(220), + [sym__list_item_decimal_paren] = STATE(504), + [sym__list_decimal_parens] = STATE(220), + [sym__list_item_decimal_parens] = STATE(505), + [sym__list_lower_alpha_period] = STATE(220), + [sym__list_item_lower_alpha_period] = STATE(506), + [sym__list_lower_alpha_paren] = STATE(220), + [sym__list_item_lower_alpha_paren] = STATE(507), + [sym__list_lower_alpha_parens] = STATE(220), + [sym__list_item_lower_alpha_parens] = STATE(508), + [sym__list_upper_alpha_period] = STATE(220), + [sym__list_item_upper_alpha_period] = STATE(509), + [sym__list_upper_alpha_paren] = STATE(220), + [sym__list_item_upper_alpha_paren] = STATE(511), + [sym__list_upper_alpha_parens] = STATE(220), + [sym__list_item_upper_alpha_parens] = STATE(512), + [sym__list_lower_roman_period] = STATE(220), + [sym__list_item_lower_roman_period] = STATE(513), + [sym__list_lower_roman_paren] = STATE(220), + [sym__list_item_lower_roman_paren] = STATE(516), + [sym__list_lower_roman_parens] = STATE(220), + [sym__list_item_lower_roman_parens] = STATE(522), + [sym__list_upper_roman_period] = STATE(220), + [sym__list_item_upper_roman_period] = STATE(523), + [sym__list_upper_roman_paren] = STATE(220), + [sym__list_item_upper_roman_paren] = STATE(525), + [sym__list_upper_roman_parens] = STATE(220), + [sym__list_item_upper_roman_parens] = STATE(526), + [sym_table] = STATE(207), + [sym__table_content] = STATE(65), + [sym_table_separator] = STATE(65), [sym_table_row] = STATE(70), - [sym_footnote] = STATE(156), - [sym_div] = STATE(156), - [sym_div_marker_begin] = STATE(1004), - [sym_code_block] = STATE(156), - [sym_raw_block] = STATE(156), - [sym_thematic_break] = STATE(156), - [sym_block_quote] = STATE(156), + [sym_footnote] = STATE(207), + [sym_footnote_marker_begin] = STATE(1072), + [sym_div] = STATE(207), + [sym_div_marker_begin] = STATE(1068), + [sym_code_block] = STATE(207), + [sym_raw_block] = STATE(207), + [sym_thematic_break] = STATE(207), + [sym_block_quote] = STATE(207), [sym__block_quote_prefix] = STATE(284), - [sym_link_reference_definition] = STATE(156), - [sym_block_attribute] = STATE(156), - [sym__paragraph] = STATE(156), - [sym__paragraph_content] = STATE(720), - [sym__inline] = STATE(703), - [sym__symbol_fallback] = STATE(366), - [aux_sym_document_repeat1] = STATE(4), - [aux_sym__list_dash_repeat1] = STATE(412), - [aux_sym__list_plus_repeat1] = STATE(397), - [aux_sym__list_star_repeat1] = STATE(396), - [aux_sym__list_task_repeat1] = STATE(378), - [aux_sym__list_definition_repeat1] = STATE(583), - [aux_sym__list_decimal_period_repeat1] = STATE(584), - [aux_sym__list_decimal_paren_repeat1] = STATE(585), - [aux_sym__list_decimal_parens_repeat1] = STATE(587), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(590), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(592), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(593), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(597), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(490), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(607), - [aux_sym__list_lower_roman_period_repeat1] = STATE(602), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(598), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(596), - [aux_sym__list_upper_roman_period_repeat1] = STATE(608), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(562), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(601), - [aux_sym_table_repeat1] = STATE(64), - [aux_sym__block_quote_prefix_repeat1] = STATE(323), - [aux_sym__inline_repeat1] = STATE(366), - [ts_builtin_sym_end] = ACTIONS(195), + [sym_link_reference_definition] = STATE(207), + [sym_block_attribute] = STATE(207), + [sym__paragraph] = STATE(207), + [sym__paragraph_content] = STATE(728), + [sym__inline] = STATE(710), + [sym__symbol_fallback] = STATE(355), + [aux_sym_document_repeat1] = STATE(9), + [aux_sym__list_dash_repeat1] = STATE(414), + [aux_sym__list_plus_repeat1] = STATE(425), + [aux_sym__list_star_repeat1] = STATE(424), + [aux_sym__list_task_repeat1] = STATE(397), + [aux_sym__list_definition_repeat1] = STATE(502), + [aux_sym__list_decimal_period_repeat1] = STATE(503), + [aux_sym__list_decimal_paren_repeat1] = STATE(504), + [aux_sym__list_decimal_parens_repeat1] = STATE(505), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(506), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(507), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(508), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(509), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(511), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(512), + [aux_sym__list_lower_roman_period_repeat1] = STATE(513), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(516), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(522), + [aux_sym__list_upper_roman_period_repeat1] = STATE(523), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(525), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(526), + [aux_sym_table_repeat1] = STATE(65), + [aux_sym__block_quote_prefix_repeat1] = STATE(316), + [aux_sym__inline_repeat1] = STATE(355), + [ts_builtin_sym_end] = ACTIONS(187), [anon_sym_LBRACK] = ACTIONS(5), [anon_sym_PIPE] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(9), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__newline] = ACTIONS(13), - [sym__heading_begin] = ACTIONS(17), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(21), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(63), - [sym__block_quote_continuation] = ACTIONS(65), - [sym__thematic_break_dash] = ACTIONS(67), - [sym__thematic_break_star] = ACTIONS(67), - [sym__footnote_begin] = ACTIONS(69), + [anon_sym_LBRACK_CARET] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(13), + [aux_sym__inline_token1] = ACTIONS(13), + [anon_sym_LBRACE_DASH] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(13), + [anon_sym_PERCENT] = ACTIONS(13), + [sym__newline] = ACTIONS(15), + [sym__heading_begin] = ACTIONS(19), + [sym__div_begin] = ACTIONS(21), + [sym__code_block_begin] = ACTIONS(23), + [sym_list_marker_dash] = ACTIONS(25), + [sym_list_marker_star] = ACTIONS(27), + [sym_list_marker_plus] = ACTIONS(29), + [sym__list_marker_task_begin] = ACTIONS(31), + [sym_list_marker_definition] = ACTIONS(33), + [sym_list_marker_decimal_period] = ACTIONS(35), + [sym_list_marker_lower_alpha_period] = ACTIONS(37), + [sym_list_marker_upper_alpha_period] = ACTIONS(39), + [sym_list_marker_lower_roman_period] = ACTIONS(41), + [sym_list_marker_upper_roman_period] = ACTIONS(43), + [sym_list_marker_decimal_paren] = ACTIONS(45), + [sym_list_marker_lower_alpha_paren] = ACTIONS(47), + [sym_list_marker_upper_alpha_paren] = ACTIONS(49), + [sym_list_marker_lower_roman_paren] = ACTIONS(51), + [sym_list_marker_upper_roman_paren] = ACTIONS(53), + [sym_list_marker_decimal_parens] = ACTIONS(55), + [sym_list_marker_lower_alpha_parens] = ACTIONS(57), + [sym_list_marker_upper_alpha_parens] = ACTIONS(59), + [sym_list_marker_lower_roman_parens] = ACTIONS(61), + [sym_list_marker_upper_roman_parens] = ACTIONS(63), + [sym__block_quote_begin] = ACTIONS(65), + [sym__block_quote_continuation] = ACTIONS(67), + [sym__thematic_break_dash] = ACTIONS(69), + [sym__thematic_break_star] = ACTIONS(69), }, [6] = { - [sym__block_with_section] = STATE(146), - [sym__block_element] = STATE(146), - [sym_section] = STATE(146), - [sym_heading] = STATE(7), - [sym_list] = STATE(146), - [sym__list_dash] = STATE(141), - [sym__list_item_dash] = STATE(416), - [sym__list_plus] = STATE(141), - [sym__list_item_plus] = STATE(419), - [sym__list_star] = STATE(141), - [sym__list_item_star] = STATE(407), - [sym__list_task] = STATE(141), - [sym__list_item_task] = STATE(371), + [sym__block_with_section] = STATE(233), + [sym__block_element] = STATE(233), + [sym_section] = STATE(233), + [sym_heading] = STATE(8), + [sym_list] = STATE(233), + [sym__list_dash] = STATE(186), + [sym__list_item_dash] = STATE(415), + [sym__list_plus] = STATE(186), + [sym__list_item_plus] = STATE(406), + [sym__list_star] = STATE(186), + [sym__list_item_star] = STATE(408), + [sym__list_task] = STATE(186), + [sym__list_item_task] = STATE(391), [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(141), - [sym__list_item_definition] = STATE(549), - [sym__list_decimal_period] = STATE(141), - [sym__list_item_decimal_period] = STATE(548), - [sym__list_decimal_paren] = STATE(141), - [sym__list_item_decimal_paren] = STATE(547), - [sym__list_decimal_parens] = STATE(141), - [sym__list_item_decimal_parens] = STATE(546), - [sym__list_lower_alpha_period] = STATE(141), - [sym__list_item_lower_alpha_period] = STATE(545), - [sym__list_lower_alpha_paren] = STATE(141), - [sym__list_item_lower_alpha_paren] = STATE(544), - [sym__list_lower_alpha_parens] = STATE(141), - [sym__list_item_lower_alpha_parens] = STATE(543), - [sym__list_upper_alpha_period] = STATE(141), - [sym__list_item_upper_alpha_period] = STATE(542), - [sym__list_upper_alpha_paren] = STATE(141), - [sym__list_item_upper_alpha_paren] = STATE(541), - [sym__list_upper_alpha_parens] = STATE(141), - [sym__list_item_upper_alpha_parens] = STATE(540), - [sym__list_lower_roman_period] = STATE(141), - [sym__list_item_lower_roman_period] = STATE(539), - [sym__list_lower_roman_paren] = STATE(141), - [sym__list_item_lower_roman_paren] = STATE(538), - [sym__list_lower_roman_parens] = STATE(141), - [sym__list_item_lower_roman_parens] = STATE(537), - [sym__list_upper_roman_period] = STATE(141), - [sym__list_item_upper_roman_period] = STATE(536), - [sym__list_upper_roman_paren] = STATE(141), - [sym__list_item_upper_roman_paren] = STATE(535), - [sym__list_upper_roman_parens] = STATE(141), - [sym__list_item_upper_roman_parens] = STATE(534), - [sym_table] = STATE(146), - [sym__table_content] = STATE(66), - [sym_table_separator] = STATE(66), - [sym_table_row] = STATE(72), - [sym_footnote] = STATE(146), - [sym_div] = STATE(146), - [sym_div_marker_begin] = STATE(985), - [sym_code_block] = STATE(146), - [sym_raw_block] = STATE(146), - [sym_thematic_break] = STATE(146), - [sym_block_quote] = STATE(146), - [sym__block_quote_prefix] = STATE(286), - [sym_link_reference_definition] = STATE(146), - [sym_block_attribute] = STATE(146), - [sym__paragraph] = STATE(146), - [sym__paragraph_content] = STATE(801), - [sym__inline] = STATE(703), - [sym__symbol_fallback] = STATE(366), - [aux_sym_document_repeat1] = STATE(3), - [aux_sym__list_dash_repeat1] = STATE(416), - [aux_sym__list_plus_repeat1] = STATE(419), - [aux_sym__list_star_repeat1] = STATE(407), - [aux_sym__list_task_repeat1] = STATE(371), - [aux_sym__list_definition_repeat1] = STATE(549), - [aux_sym__list_decimal_period_repeat1] = STATE(548), - [aux_sym__list_decimal_paren_repeat1] = STATE(547), - [aux_sym__list_decimal_parens_repeat1] = STATE(546), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(545), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(544), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(543), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(542), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(541), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(540), - [aux_sym__list_lower_roman_period_repeat1] = STATE(539), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(538), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(537), - [aux_sym__list_upper_roman_period_repeat1] = STATE(536), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(535), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(534), - [aux_sym_table_repeat1] = STATE(66), - [aux_sym__block_quote_prefix_repeat1] = STATE(323), - [aux_sym__inline_repeat1] = STATE(366), - [anon_sym_LBRACK] = ACTIONS(197), - [anon_sym_PIPE] = ACTIONS(199), - [anon_sym_LBRACE] = ACTIONS(201), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__block_close] = ACTIONS(203), - [sym__newline] = ACTIONS(205), - [sym__heading_begin] = ACTIONS(17), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(207), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(209), - [sym__block_quote_continuation] = ACTIONS(65), - [sym__thematic_break_dash] = ACTIONS(211), - [sym__thematic_break_star] = ACTIONS(211), - [sym__footnote_begin] = ACTIONS(213), + [sym__list_definition] = STATE(186), + [sym__list_item_definition] = STATE(570), + [sym__list_decimal_period] = STATE(186), + [sym__list_item_decimal_period] = STATE(573), + [sym__list_decimal_paren] = STATE(186), + [sym__list_item_decimal_paren] = STATE(575), + [sym__list_decimal_parens] = STATE(186), + [sym__list_item_decimal_parens] = STATE(578), + [sym__list_lower_alpha_period] = STATE(186), + [sym__list_item_lower_alpha_period] = STATE(495), + [sym__list_lower_alpha_paren] = STATE(186), + [sym__list_item_lower_alpha_paren] = STATE(583), + [sym__list_lower_alpha_parens] = STATE(186), + [sym__list_item_lower_alpha_parens] = STATE(494), + [sym__list_upper_alpha_period] = STATE(186), + [sym__list_item_upper_alpha_period] = STATE(584), + [sym__list_upper_alpha_paren] = STATE(186), + [sym__list_item_upper_alpha_paren] = STATE(586), + [sym__list_upper_alpha_parens] = STATE(186), + [sym__list_item_upper_alpha_parens] = STATE(587), + [sym__list_lower_roman_period] = STATE(186), + [sym__list_item_lower_roman_period] = STATE(588), + [sym__list_lower_roman_paren] = STATE(186), + [sym__list_item_lower_roman_paren] = STATE(590), + [sym__list_lower_roman_parens] = STATE(186), + [sym__list_item_lower_roman_parens] = STATE(591), + [sym__list_upper_roman_period] = STATE(186), + [sym__list_item_upper_roman_period] = STATE(592), + [sym__list_upper_roman_paren] = STATE(186), + [sym__list_item_upper_roman_paren] = STATE(596), + [sym__list_upper_roman_parens] = STATE(186), + [sym__list_item_upper_roman_parens] = STATE(597), + [sym_table] = STATE(233), + [sym__table_content] = STATE(64), + [sym_table_separator] = STATE(64), + [sym_table_row] = STATE(72), + [sym_footnote] = STATE(233), + [sym_footnote_marker_begin] = STATE(1084), + [sym_div] = STATE(233), + [sym_div_marker_begin] = STATE(996), + [sym_code_block] = STATE(233), + [sym_raw_block] = STATE(233), + [sym_thematic_break] = STATE(233), + [sym_block_quote] = STATE(233), + [sym__block_quote_prefix] = STATE(287), + [sym_link_reference_definition] = STATE(233), + [sym_block_attribute] = STATE(233), + [sym__paragraph] = STATE(233), + [sym__paragraph_content] = STATE(811), + [sym__inline] = STATE(710), + [sym__symbol_fallback] = STATE(355), + [aux_sym_document_repeat1] = STATE(4), + [aux_sym__list_dash_repeat1] = STATE(415), + [aux_sym__list_plus_repeat1] = STATE(406), + [aux_sym__list_star_repeat1] = STATE(408), + [aux_sym__list_task_repeat1] = STATE(391), + [aux_sym__list_definition_repeat1] = STATE(570), + [aux_sym__list_decimal_period_repeat1] = STATE(573), + [aux_sym__list_decimal_paren_repeat1] = STATE(575), + [aux_sym__list_decimal_parens_repeat1] = STATE(578), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(495), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(583), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(494), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(584), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(586), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(587), + [aux_sym__list_lower_roman_period_repeat1] = STATE(588), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(590), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(591), + [aux_sym__list_upper_roman_period_repeat1] = STATE(592), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(596), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(597), + [aux_sym_table_repeat1] = STATE(64), + [aux_sym__block_quote_prefix_repeat1] = STATE(316), + [aux_sym__inline_repeat1] = STATE(355), + [anon_sym_LBRACK] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(73), + [anon_sym_LBRACK_CARET] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DOT] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(13), + [aux_sym__inline_token1] = ACTIONS(13), + [anon_sym_LBRACE_DASH] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(13), + [anon_sym_PERCENT] = ACTIONS(13), + [sym__block_close] = ACTIONS(189), + [sym__newline] = ACTIONS(79), + [sym__heading_begin] = ACTIONS(19), + [sym__div_begin] = ACTIONS(21), + [sym__code_block_begin] = ACTIONS(81), + [sym_list_marker_dash] = ACTIONS(25), + [sym_list_marker_star] = ACTIONS(27), + [sym_list_marker_plus] = ACTIONS(29), + [sym__list_marker_task_begin] = ACTIONS(31), + [sym_list_marker_definition] = ACTIONS(33), + [sym_list_marker_decimal_period] = ACTIONS(35), + [sym_list_marker_lower_alpha_period] = ACTIONS(37), + [sym_list_marker_upper_alpha_period] = ACTIONS(39), + [sym_list_marker_lower_roman_period] = ACTIONS(41), + [sym_list_marker_upper_roman_period] = ACTIONS(43), + [sym_list_marker_decimal_paren] = ACTIONS(45), + [sym_list_marker_lower_alpha_paren] = ACTIONS(47), + [sym_list_marker_upper_alpha_paren] = ACTIONS(49), + [sym_list_marker_lower_roman_paren] = ACTIONS(51), + [sym_list_marker_upper_roman_paren] = ACTIONS(53), + [sym_list_marker_decimal_parens] = ACTIONS(55), + [sym_list_marker_lower_alpha_parens] = ACTIONS(57), + [sym_list_marker_upper_alpha_parens] = ACTIONS(59), + [sym_list_marker_lower_roman_parens] = ACTIONS(61), + [sym_list_marker_upper_roman_parens] = ACTIONS(63), + [sym__block_quote_begin] = ACTIONS(83), + [sym__block_quote_continuation] = ACTIONS(67), + [sym__thematic_break_dash] = ACTIONS(85), + [sym__thematic_break_star] = ACTIONS(85), }, [7] = { - [sym__block_with_section] = STATE(146), - [sym__block_element] = STATE(146), - [sym_section] = STATE(146), - [sym_heading] = STATE(7), - [sym_list] = STATE(146), - [sym__list_dash] = STATE(141), - [sym__list_item_dash] = STATE(416), - [sym__list_plus] = STATE(141), - [sym__list_item_plus] = STATE(419), - [sym__list_star] = STATE(141), - [sym__list_item_star] = STATE(407), - [sym__list_task] = STATE(141), - [sym__list_item_task] = STATE(371), + [sym__block_with_section] = STATE(207), + [sym__block_element] = STATE(207), + [sym_section] = STATE(207), + [sym_heading] = STATE(6), + [sym_list] = STATE(207), + [sym__list_dash] = STATE(220), + [sym__list_item_dash] = STATE(414), + [sym__list_plus] = STATE(220), + [sym__list_item_plus] = STATE(425), + [sym__list_star] = STATE(220), + [sym__list_item_star] = STATE(424), + [sym__list_task] = STATE(220), + [sym__list_item_task] = STATE(397), [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(141), - [sym__list_item_definition] = STATE(549), - [sym__list_decimal_period] = STATE(141), - [sym__list_item_decimal_period] = STATE(548), - [sym__list_decimal_paren] = STATE(141), - [sym__list_item_decimal_paren] = STATE(547), - [sym__list_decimal_parens] = STATE(141), - [sym__list_item_decimal_parens] = STATE(546), - [sym__list_lower_alpha_period] = STATE(141), - [sym__list_item_lower_alpha_period] = STATE(545), - [sym__list_lower_alpha_paren] = STATE(141), - [sym__list_item_lower_alpha_paren] = STATE(544), - [sym__list_lower_alpha_parens] = STATE(141), - [sym__list_item_lower_alpha_parens] = STATE(543), - [sym__list_upper_alpha_period] = STATE(141), - [sym__list_item_upper_alpha_period] = STATE(542), - [sym__list_upper_alpha_paren] = STATE(141), - [sym__list_item_upper_alpha_paren] = STATE(541), - [sym__list_upper_alpha_parens] = STATE(141), - [sym__list_item_upper_alpha_parens] = STATE(540), - [sym__list_lower_roman_period] = STATE(141), - [sym__list_item_lower_roman_period] = STATE(539), - [sym__list_lower_roman_paren] = STATE(141), - [sym__list_item_lower_roman_paren] = STATE(538), - [sym__list_lower_roman_parens] = STATE(141), - [sym__list_item_lower_roman_parens] = STATE(537), - [sym__list_upper_roman_period] = STATE(141), - [sym__list_item_upper_roman_period] = STATE(536), - [sym__list_upper_roman_paren] = STATE(141), - [sym__list_item_upper_roman_paren] = STATE(535), - [sym__list_upper_roman_parens] = STATE(141), - [sym__list_item_upper_roman_parens] = STATE(534), - [sym_table] = STATE(146), - [sym__table_content] = STATE(66), - [sym_table_separator] = STATE(66), - [sym_table_row] = STATE(72), - [sym_footnote] = STATE(146), - [sym_div] = STATE(146), - [sym_div_marker_begin] = STATE(985), - [sym_code_block] = STATE(146), - [sym_raw_block] = STATE(146), - [sym_thematic_break] = STATE(146), - [sym_block_quote] = STATE(146), - [sym__block_quote_prefix] = STATE(286), - [sym_link_reference_definition] = STATE(146), - [sym_block_attribute] = STATE(146), - [sym__paragraph] = STATE(146), - [sym__paragraph_content] = STATE(801), - [sym__inline] = STATE(703), - [sym__symbol_fallback] = STATE(366), - [aux_sym_document_repeat1] = STATE(9), - [aux_sym__list_dash_repeat1] = STATE(416), - [aux_sym__list_plus_repeat1] = STATE(419), - [aux_sym__list_star_repeat1] = STATE(407), - [aux_sym__list_task_repeat1] = STATE(371), - [aux_sym__list_definition_repeat1] = STATE(549), - [aux_sym__list_decimal_period_repeat1] = STATE(548), - [aux_sym__list_decimal_paren_repeat1] = STATE(547), - [aux_sym__list_decimal_parens_repeat1] = STATE(546), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(545), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(544), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(543), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(542), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(541), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(540), - [aux_sym__list_lower_roman_period_repeat1] = STATE(539), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(538), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(537), - [aux_sym__list_upper_roman_period_repeat1] = STATE(536), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(535), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(534), - [aux_sym_table_repeat1] = STATE(66), - [aux_sym__block_quote_prefix_repeat1] = STATE(323), - [aux_sym__inline_repeat1] = STATE(366), - [anon_sym_LBRACK] = ACTIONS(197), - [anon_sym_PIPE] = ACTIONS(199), - [anon_sym_LBRACE] = ACTIONS(201), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__block_close] = ACTIONS(215), - [sym__newline] = ACTIONS(205), - [sym__heading_begin] = ACTIONS(17), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(207), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(209), - [sym__block_quote_continuation] = ACTIONS(65), - [sym__thematic_break_dash] = ACTIONS(211), - [sym__thematic_break_star] = ACTIONS(211), - [sym__footnote_begin] = ACTIONS(213), + [sym__list_definition] = STATE(220), + [sym__list_item_definition] = STATE(502), + [sym__list_decimal_period] = STATE(220), + [sym__list_item_decimal_period] = STATE(503), + [sym__list_decimal_paren] = STATE(220), + [sym__list_item_decimal_paren] = STATE(504), + [sym__list_decimal_parens] = STATE(220), + [sym__list_item_decimal_parens] = STATE(505), + [sym__list_lower_alpha_period] = STATE(220), + [sym__list_item_lower_alpha_period] = STATE(506), + [sym__list_lower_alpha_paren] = STATE(220), + [sym__list_item_lower_alpha_paren] = STATE(507), + [sym__list_lower_alpha_parens] = STATE(220), + [sym__list_item_lower_alpha_parens] = STATE(508), + [sym__list_upper_alpha_period] = STATE(220), + [sym__list_item_upper_alpha_period] = STATE(509), + [sym__list_upper_alpha_paren] = STATE(220), + [sym__list_item_upper_alpha_paren] = STATE(511), + [sym__list_upper_alpha_parens] = STATE(220), + [sym__list_item_upper_alpha_parens] = STATE(512), + [sym__list_lower_roman_period] = STATE(220), + [sym__list_item_lower_roman_period] = STATE(513), + [sym__list_lower_roman_paren] = STATE(220), + [sym__list_item_lower_roman_paren] = STATE(516), + [sym__list_lower_roman_parens] = STATE(220), + [sym__list_item_lower_roman_parens] = STATE(522), + [sym__list_upper_roman_period] = STATE(220), + [sym__list_item_upper_roman_period] = STATE(523), + [sym__list_upper_roman_paren] = STATE(220), + [sym__list_item_upper_roman_paren] = STATE(525), + [sym__list_upper_roman_parens] = STATE(220), + [sym__list_item_upper_roman_parens] = STATE(526), + [sym_table] = STATE(207), + [sym__table_content] = STATE(65), + [sym_table_separator] = STATE(65), + [sym_table_row] = STATE(70), + [sym_footnote] = STATE(207), + [sym_footnote_marker_begin] = STATE(1072), + [sym_div] = STATE(207), + [sym_div_marker_begin] = STATE(1068), + [sym_code_block] = STATE(207), + [sym_raw_block] = STATE(207), + [sym_thematic_break] = STATE(207), + [sym_block_quote] = STATE(207), + [sym__block_quote_prefix] = STATE(284), + [sym_link_reference_definition] = STATE(207), + [sym_block_attribute] = STATE(207), + [sym__paragraph] = STATE(207), + [sym__paragraph_content] = STATE(728), + [sym__inline] = STATE(710), + [sym__symbol_fallback] = STATE(355), + [aux_sym_document_repeat1] = STATE(10), + [aux_sym__list_dash_repeat1] = STATE(414), + [aux_sym__list_plus_repeat1] = STATE(425), + [aux_sym__list_star_repeat1] = STATE(424), + [aux_sym__list_task_repeat1] = STATE(397), + [aux_sym__list_definition_repeat1] = STATE(502), + [aux_sym__list_decimal_period_repeat1] = STATE(503), + [aux_sym__list_decimal_paren_repeat1] = STATE(504), + [aux_sym__list_decimal_parens_repeat1] = STATE(505), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(506), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(507), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(508), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(509), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(511), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(512), + [aux_sym__list_lower_roman_period_repeat1] = STATE(513), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(516), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(522), + [aux_sym__list_upper_roman_period_repeat1] = STATE(523), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(525), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(526), + [aux_sym_table_repeat1] = STATE(65), + [aux_sym__block_quote_prefix_repeat1] = STATE(316), + [aux_sym__inline_repeat1] = STATE(355), + [ts_builtin_sym_end] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_LBRACK_CARET] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(13), + [aux_sym__inline_token1] = ACTIONS(13), + [anon_sym_LBRACE_DASH] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(13), + [anon_sym_PERCENT] = ACTIONS(13), + [sym__newline] = ACTIONS(15), + [sym__heading_begin] = ACTIONS(19), + [sym__div_begin] = ACTIONS(21), + [sym__code_block_begin] = ACTIONS(23), + [sym_list_marker_dash] = ACTIONS(25), + [sym_list_marker_star] = ACTIONS(27), + [sym_list_marker_plus] = ACTIONS(29), + [sym__list_marker_task_begin] = ACTIONS(31), + [sym_list_marker_definition] = ACTIONS(33), + [sym_list_marker_decimal_period] = ACTIONS(35), + [sym_list_marker_lower_alpha_period] = ACTIONS(37), + [sym_list_marker_upper_alpha_period] = ACTIONS(39), + [sym_list_marker_lower_roman_period] = ACTIONS(41), + [sym_list_marker_upper_roman_period] = ACTIONS(43), + [sym_list_marker_decimal_paren] = ACTIONS(45), + [sym_list_marker_lower_alpha_paren] = ACTIONS(47), + [sym_list_marker_upper_alpha_paren] = ACTIONS(49), + [sym_list_marker_lower_roman_paren] = ACTIONS(51), + [sym_list_marker_upper_roman_paren] = ACTIONS(53), + [sym_list_marker_decimal_parens] = ACTIONS(55), + [sym_list_marker_lower_alpha_parens] = ACTIONS(57), + [sym_list_marker_upper_alpha_parens] = ACTIONS(59), + [sym_list_marker_lower_roman_parens] = ACTIONS(61), + [sym_list_marker_upper_roman_parens] = ACTIONS(63), + [sym__block_quote_begin] = ACTIONS(65), + [sym__block_quote_continuation] = ACTIONS(67), + [sym__thematic_break_dash] = ACTIONS(69), + [sym__thematic_break_star] = ACTIONS(69), }, [8] = { - [sym__block_with_section] = STATE(156), - [sym__block_element] = STATE(156), - [sym_section] = STATE(156), - [sym_heading] = STATE(10), - [sym_list] = STATE(156), - [sym__list_dash] = STATE(143), - [sym__list_item_dash] = STATE(412), - [sym__list_plus] = STATE(143), - [sym__list_item_plus] = STATE(397), - [sym__list_star] = STATE(143), - [sym__list_item_star] = STATE(396), - [sym__list_task] = STATE(143), - [sym__list_item_task] = STATE(378), + [sym__block_with_section] = STATE(233), + [sym__block_element] = STATE(233), + [sym_section] = STATE(233), + [sym_heading] = STATE(8), + [sym_list] = STATE(233), + [sym__list_dash] = STATE(186), + [sym__list_item_dash] = STATE(415), + [sym__list_plus] = STATE(186), + [sym__list_item_plus] = STATE(406), + [sym__list_star] = STATE(186), + [sym__list_item_star] = STATE(408), + [sym__list_task] = STATE(186), + [sym__list_item_task] = STATE(391), [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(143), - [sym__list_item_definition] = STATE(583), - [sym__list_decimal_period] = STATE(143), - [sym__list_item_decimal_period] = STATE(584), - [sym__list_decimal_paren] = STATE(143), - [sym__list_item_decimal_paren] = STATE(585), - [sym__list_decimal_parens] = STATE(143), - [sym__list_item_decimal_parens] = STATE(587), - [sym__list_lower_alpha_period] = STATE(143), - [sym__list_item_lower_alpha_period] = STATE(590), - [sym__list_lower_alpha_paren] = STATE(143), - [sym__list_item_lower_alpha_paren] = STATE(592), - [sym__list_lower_alpha_parens] = STATE(143), - [sym__list_item_lower_alpha_parens] = STATE(593), - [sym__list_upper_alpha_period] = STATE(143), - [sym__list_item_upper_alpha_period] = STATE(597), - [sym__list_upper_alpha_paren] = STATE(143), - [sym__list_item_upper_alpha_paren] = STATE(490), - [sym__list_upper_alpha_parens] = STATE(143), - [sym__list_item_upper_alpha_parens] = STATE(607), - [sym__list_lower_roman_period] = STATE(143), - [sym__list_item_lower_roman_period] = STATE(602), - [sym__list_lower_roman_paren] = STATE(143), - [sym__list_item_lower_roman_paren] = STATE(598), - [sym__list_lower_roman_parens] = STATE(143), - [sym__list_item_lower_roman_parens] = STATE(596), - [sym__list_upper_roman_period] = STATE(143), - [sym__list_item_upper_roman_period] = STATE(608), - [sym__list_upper_roman_paren] = STATE(143), - [sym__list_item_upper_roman_paren] = STATE(562), - [sym__list_upper_roman_parens] = STATE(143), - [sym__list_item_upper_roman_parens] = STATE(601), - [sym_table] = STATE(156), + [sym__list_definition] = STATE(186), + [sym__list_item_definition] = STATE(570), + [sym__list_decimal_period] = STATE(186), + [sym__list_item_decimal_period] = STATE(573), + [sym__list_decimal_paren] = STATE(186), + [sym__list_item_decimal_paren] = STATE(575), + [sym__list_decimal_parens] = STATE(186), + [sym__list_item_decimal_parens] = STATE(578), + [sym__list_lower_alpha_period] = STATE(186), + [sym__list_item_lower_alpha_period] = STATE(495), + [sym__list_lower_alpha_paren] = STATE(186), + [sym__list_item_lower_alpha_paren] = STATE(583), + [sym__list_lower_alpha_parens] = STATE(186), + [sym__list_item_lower_alpha_parens] = STATE(494), + [sym__list_upper_alpha_period] = STATE(186), + [sym__list_item_upper_alpha_period] = STATE(584), + [sym__list_upper_alpha_paren] = STATE(186), + [sym__list_item_upper_alpha_paren] = STATE(586), + [sym__list_upper_alpha_parens] = STATE(186), + [sym__list_item_upper_alpha_parens] = STATE(587), + [sym__list_lower_roman_period] = STATE(186), + [sym__list_item_lower_roman_period] = STATE(588), + [sym__list_lower_roman_paren] = STATE(186), + [sym__list_item_lower_roman_paren] = STATE(590), + [sym__list_lower_roman_parens] = STATE(186), + [sym__list_item_lower_roman_parens] = STATE(591), + [sym__list_upper_roman_period] = STATE(186), + [sym__list_item_upper_roman_period] = STATE(592), + [sym__list_upper_roman_paren] = STATE(186), + [sym__list_item_upper_roman_paren] = STATE(596), + [sym__list_upper_roman_parens] = STATE(186), + [sym__list_item_upper_roman_parens] = STATE(597), + [sym_table] = STATE(233), [sym__table_content] = STATE(64), [sym_table_separator] = STATE(64), + [sym_table_row] = STATE(72), + [sym_footnote] = STATE(233), + [sym_footnote_marker_begin] = STATE(1084), + [sym_div] = STATE(233), + [sym_div_marker_begin] = STATE(996), + [sym_code_block] = STATE(233), + [sym_raw_block] = STATE(233), + [sym_thematic_break] = STATE(233), + [sym_block_quote] = STATE(233), + [sym__block_quote_prefix] = STATE(287), + [sym_link_reference_definition] = STATE(233), + [sym_block_attribute] = STATE(233), + [sym__paragraph] = STATE(233), + [sym__paragraph_content] = STATE(811), + [sym__inline] = STATE(710), + [sym__symbol_fallback] = STATE(355), + [aux_sym_document_repeat1] = STATE(2), + [aux_sym__list_dash_repeat1] = STATE(415), + [aux_sym__list_plus_repeat1] = STATE(406), + [aux_sym__list_star_repeat1] = STATE(408), + [aux_sym__list_task_repeat1] = STATE(391), + [aux_sym__list_definition_repeat1] = STATE(570), + [aux_sym__list_decimal_period_repeat1] = STATE(573), + [aux_sym__list_decimal_paren_repeat1] = STATE(575), + [aux_sym__list_decimal_parens_repeat1] = STATE(578), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(495), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(583), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(494), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(584), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(586), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(587), + [aux_sym__list_lower_roman_period_repeat1] = STATE(588), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(590), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(591), + [aux_sym__list_upper_roman_period_repeat1] = STATE(592), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(596), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(597), + [aux_sym_table_repeat1] = STATE(64), + [aux_sym__block_quote_prefix_repeat1] = STATE(316), + [aux_sym__inline_repeat1] = STATE(355), + [anon_sym_LBRACK] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(73), + [anon_sym_LBRACK_CARET] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DOT] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(13), + [aux_sym__inline_token1] = ACTIONS(13), + [anon_sym_LBRACE_DASH] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(13), + [anon_sym_PERCENT] = ACTIONS(13), + [sym__block_close] = ACTIONS(191), + [sym__newline] = ACTIONS(79), + [sym__heading_begin] = ACTIONS(19), + [sym__div_begin] = ACTIONS(21), + [sym__code_block_begin] = ACTIONS(81), + [sym_list_marker_dash] = ACTIONS(25), + [sym_list_marker_star] = ACTIONS(27), + [sym_list_marker_plus] = ACTIONS(29), + [sym__list_marker_task_begin] = ACTIONS(31), + [sym_list_marker_definition] = ACTIONS(33), + [sym_list_marker_decimal_period] = ACTIONS(35), + [sym_list_marker_lower_alpha_period] = ACTIONS(37), + [sym_list_marker_upper_alpha_period] = ACTIONS(39), + [sym_list_marker_lower_roman_period] = ACTIONS(41), + [sym_list_marker_upper_roman_period] = ACTIONS(43), + [sym_list_marker_decimal_paren] = ACTIONS(45), + [sym_list_marker_lower_alpha_paren] = ACTIONS(47), + [sym_list_marker_upper_alpha_paren] = ACTIONS(49), + [sym_list_marker_lower_roman_paren] = ACTIONS(51), + [sym_list_marker_upper_roman_paren] = ACTIONS(53), + [sym_list_marker_decimal_parens] = ACTIONS(55), + [sym_list_marker_lower_alpha_parens] = ACTIONS(57), + [sym_list_marker_upper_alpha_parens] = ACTIONS(59), + [sym_list_marker_lower_roman_parens] = ACTIONS(61), + [sym_list_marker_upper_roman_parens] = ACTIONS(63), + [sym__block_quote_begin] = ACTIONS(83), + [sym__block_quote_continuation] = ACTIONS(67), + [sym__thematic_break_dash] = ACTIONS(85), + [sym__thematic_break_star] = ACTIONS(85), + }, + [9] = { + [sym__block_with_section] = STATE(207), + [sym__block_element] = STATE(207), + [sym_section] = STATE(207), + [sym_heading] = STATE(6), + [sym_list] = STATE(207), + [sym__list_dash] = STATE(220), + [sym__list_item_dash] = STATE(414), + [sym__list_plus] = STATE(220), + [sym__list_item_plus] = STATE(425), + [sym__list_star] = STATE(220), + [sym__list_item_star] = STATE(424), + [sym__list_task] = STATE(220), + [sym__list_item_task] = STATE(397), + [sym_list_marker_task] = STATE(38), + [sym__list_definition] = STATE(220), + [sym__list_item_definition] = STATE(502), + [sym__list_decimal_period] = STATE(220), + [sym__list_item_decimal_period] = STATE(503), + [sym__list_decimal_paren] = STATE(220), + [sym__list_item_decimal_paren] = STATE(504), + [sym__list_decimal_parens] = STATE(220), + [sym__list_item_decimal_parens] = STATE(505), + [sym__list_lower_alpha_period] = STATE(220), + [sym__list_item_lower_alpha_period] = STATE(506), + [sym__list_lower_alpha_paren] = STATE(220), + [sym__list_item_lower_alpha_paren] = STATE(507), + [sym__list_lower_alpha_parens] = STATE(220), + [sym__list_item_lower_alpha_parens] = STATE(508), + [sym__list_upper_alpha_period] = STATE(220), + [sym__list_item_upper_alpha_period] = STATE(509), + [sym__list_upper_alpha_paren] = STATE(220), + [sym__list_item_upper_alpha_paren] = STATE(511), + [sym__list_upper_alpha_parens] = STATE(220), + [sym__list_item_upper_alpha_parens] = STATE(512), + [sym__list_lower_roman_period] = STATE(220), + [sym__list_item_lower_roman_period] = STATE(513), + [sym__list_lower_roman_paren] = STATE(220), + [sym__list_item_lower_roman_paren] = STATE(516), + [sym__list_lower_roman_parens] = STATE(220), + [sym__list_item_lower_roman_parens] = STATE(522), + [sym__list_upper_roman_period] = STATE(220), + [sym__list_item_upper_roman_period] = STATE(523), + [sym__list_upper_roman_paren] = STATE(220), + [sym__list_item_upper_roman_paren] = STATE(525), + [sym__list_upper_roman_parens] = STATE(220), + [sym__list_item_upper_roman_parens] = STATE(526), + [sym_table] = STATE(207), + [sym__table_content] = STATE(65), + [sym_table_separator] = STATE(65), [sym_table_row] = STATE(70), - [sym_footnote] = STATE(156), - [sym_div] = STATE(156), - [sym_div_marker_begin] = STATE(1004), - [sym_code_block] = STATE(156), - [sym_raw_block] = STATE(156), - [sym_thematic_break] = STATE(156), - [sym_block_quote] = STATE(156), + [sym_footnote] = STATE(207), + [sym_footnote_marker_begin] = STATE(1072), + [sym_div] = STATE(207), + [sym_div_marker_begin] = STATE(1068), + [sym_code_block] = STATE(207), + [sym_raw_block] = STATE(207), + [sym_thematic_break] = STATE(207), + [sym_block_quote] = STATE(207), [sym__block_quote_prefix] = STATE(284), - [sym_link_reference_definition] = STATE(156), - [sym_block_attribute] = STATE(156), - [sym__paragraph] = STATE(156), - [sym__paragraph_content] = STATE(720), - [sym__inline] = STATE(703), - [sym__symbol_fallback] = STATE(366), - [aux_sym_document_repeat1] = STATE(4), - [aux_sym__list_dash_repeat1] = STATE(412), - [aux_sym__list_plus_repeat1] = STATE(397), - [aux_sym__list_star_repeat1] = STATE(396), - [aux_sym__list_task_repeat1] = STATE(378), - [aux_sym__list_definition_repeat1] = STATE(583), - [aux_sym__list_decimal_period_repeat1] = STATE(584), - [aux_sym__list_decimal_paren_repeat1] = STATE(585), - [aux_sym__list_decimal_parens_repeat1] = STATE(587), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(590), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(592), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(593), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(597), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(490), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(607), - [aux_sym__list_lower_roman_period_repeat1] = STATE(602), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(598), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(596), - [aux_sym__list_upper_roman_period_repeat1] = STATE(608), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(562), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(601), - [aux_sym_table_repeat1] = STATE(64), - [aux_sym__block_quote_prefix_repeat1] = STATE(323), - [aux_sym__inline_repeat1] = STATE(366), - [ts_builtin_sym_end] = ACTIONS(71), + [sym_link_reference_definition] = STATE(207), + [sym_block_attribute] = STATE(207), + [sym__paragraph] = STATE(207), + [sym__paragraph_content] = STATE(728), + [sym__inline] = STATE(710), + [sym__symbol_fallback] = STATE(355), + [aux_sym_document_repeat1] = STATE(10), + [aux_sym__list_dash_repeat1] = STATE(414), + [aux_sym__list_plus_repeat1] = STATE(425), + [aux_sym__list_star_repeat1] = STATE(424), + [aux_sym__list_task_repeat1] = STATE(397), + [aux_sym__list_definition_repeat1] = STATE(502), + [aux_sym__list_decimal_period_repeat1] = STATE(503), + [aux_sym__list_decimal_paren_repeat1] = STATE(504), + [aux_sym__list_decimal_parens_repeat1] = STATE(505), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(506), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(507), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(508), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(509), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(511), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(512), + [aux_sym__list_lower_roman_period_repeat1] = STATE(513), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(516), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(522), + [aux_sym__list_upper_roman_period_repeat1] = STATE(523), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(525), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(526), + [aux_sym_table_repeat1] = STATE(65), + [aux_sym__block_quote_prefix_repeat1] = STATE(316), + [aux_sym__inline_repeat1] = STATE(355), + [ts_builtin_sym_end] = ACTIONS(193), [anon_sym_LBRACK] = ACTIONS(5), [anon_sym_PIPE] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(9), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__newline] = ACTIONS(13), - [sym__heading_begin] = ACTIONS(17), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(21), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(63), - [sym__block_quote_continuation] = ACTIONS(65), - [sym__thematic_break_dash] = ACTIONS(67), - [sym__thematic_break_star] = ACTIONS(67), - [sym__footnote_begin] = ACTIONS(69), + [anon_sym_LBRACK_CARET] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(13), + [aux_sym__inline_token1] = ACTIONS(13), + [anon_sym_LBRACE_DASH] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(13), + [anon_sym_PERCENT] = ACTIONS(13), + [sym__newline] = ACTIONS(15), + [sym__heading_begin] = ACTIONS(19), + [sym__div_begin] = ACTIONS(21), + [sym__code_block_begin] = ACTIONS(23), + [sym_list_marker_dash] = ACTIONS(25), + [sym_list_marker_star] = ACTIONS(27), + [sym_list_marker_plus] = ACTIONS(29), + [sym__list_marker_task_begin] = ACTIONS(31), + [sym_list_marker_definition] = ACTIONS(33), + [sym_list_marker_decimal_period] = ACTIONS(35), + [sym_list_marker_lower_alpha_period] = ACTIONS(37), + [sym_list_marker_upper_alpha_period] = ACTIONS(39), + [sym_list_marker_lower_roman_period] = ACTIONS(41), + [sym_list_marker_upper_roman_period] = ACTIONS(43), + [sym_list_marker_decimal_paren] = ACTIONS(45), + [sym_list_marker_lower_alpha_paren] = ACTIONS(47), + [sym_list_marker_upper_alpha_paren] = ACTIONS(49), + [sym_list_marker_lower_roman_paren] = ACTIONS(51), + [sym_list_marker_upper_roman_paren] = ACTIONS(53), + [sym_list_marker_decimal_parens] = ACTIONS(55), + [sym_list_marker_lower_alpha_parens] = ACTIONS(57), + [sym_list_marker_upper_alpha_parens] = ACTIONS(59), + [sym_list_marker_lower_roman_parens] = ACTIONS(61), + [sym_list_marker_upper_roman_parens] = ACTIONS(63), + [sym__block_quote_begin] = ACTIONS(65), + [sym__block_quote_continuation] = ACTIONS(67), + [sym__thematic_break_dash] = ACTIONS(69), + [sym__thematic_break_star] = ACTIONS(69), }, - [9] = { - [sym__block_with_section] = STATE(146), - [sym__block_element] = STATE(146), - [sym_section] = STATE(146), - [sym_heading] = STATE(7), - [sym_list] = STATE(146), - [sym__list_dash] = STATE(141), - [sym__list_item_dash] = STATE(416), - [sym__list_plus] = STATE(141), - [sym__list_item_plus] = STATE(419), - [sym__list_star] = STATE(141), - [sym__list_item_star] = STATE(407), - [sym__list_task] = STATE(141), - [sym__list_item_task] = STATE(371), + [10] = { + [sym__block_with_section] = STATE(207), + [sym__block_element] = STATE(207), + [sym_section] = STATE(207), + [sym_heading] = STATE(6), + [sym_list] = STATE(207), + [sym__list_dash] = STATE(220), + [sym__list_item_dash] = STATE(414), + [sym__list_plus] = STATE(220), + [sym__list_item_plus] = STATE(425), + [sym__list_star] = STATE(220), + [sym__list_item_star] = STATE(424), + [sym__list_task] = STATE(220), + [sym__list_item_task] = STATE(397), [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(141), - [sym__list_item_definition] = STATE(549), - [sym__list_decimal_period] = STATE(141), - [sym__list_item_decimal_period] = STATE(548), - [sym__list_decimal_paren] = STATE(141), - [sym__list_item_decimal_paren] = STATE(547), - [sym__list_decimal_parens] = STATE(141), - [sym__list_item_decimal_parens] = STATE(546), - [sym__list_lower_alpha_period] = STATE(141), - [sym__list_item_lower_alpha_period] = STATE(545), - [sym__list_lower_alpha_paren] = STATE(141), - [sym__list_item_lower_alpha_paren] = STATE(544), - [sym__list_lower_alpha_parens] = STATE(141), - [sym__list_item_lower_alpha_parens] = STATE(543), - [sym__list_upper_alpha_period] = STATE(141), - [sym__list_item_upper_alpha_period] = STATE(542), - [sym__list_upper_alpha_paren] = STATE(141), - [sym__list_item_upper_alpha_paren] = STATE(541), - [sym__list_upper_alpha_parens] = STATE(141), - [sym__list_item_upper_alpha_parens] = STATE(540), - [sym__list_lower_roman_period] = STATE(141), - [sym__list_item_lower_roman_period] = STATE(539), - [sym__list_lower_roman_paren] = STATE(141), - [sym__list_item_lower_roman_paren] = STATE(538), - [sym__list_lower_roman_parens] = STATE(141), - [sym__list_item_lower_roman_parens] = STATE(537), - [sym__list_upper_roman_period] = STATE(141), - [sym__list_item_upper_roman_period] = STATE(536), - [sym__list_upper_roman_paren] = STATE(141), - [sym__list_item_upper_roman_paren] = STATE(535), - [sym__list_upper_roman_parens] = STATE(141), - [sym__list_item_upper_roman_parens] = STATE(534), - [sym_table] = STATE(146), - [sym__table_content] = STATE(66), - [sym_table_separator] = STATE(66), - [sym_table_row] = STATE(72), - [sym_footnote] = STATE(146), - [sym_div] = STATE(146), - [sym_div_marker_begin] = STATE(985), - [sym_code_block] = STATE(146), - [sym_raw_block] = STATE(146), - [sym_thematic_break] = STATE(146), - [sym_block_quote] = STATE(146), - [sym__block_quote_prefix] = STATE(286), - [sym_link_reference_definition] = STATE(146), - [sym_block_attribute] = STATE(146), - [sym__paragraph] = STATE(146), - [sym__paragraph_content] = STATE(801), - [sym__inline] = STATE(703), - [sym__symbol_fallback] = STATE(366), - [aux_sym_document_repeat1] = STATE(3), - [aux_sym__list_dash_repeat1] = STATE(416), - [aux_sym__list_plus_repeat1] = STATE(419), - [aux_sym__list_star_repeat1] = STATE(407), - [aux_sym__list_task_repeat1] = STATE(371), - [aux_sym__list_definition_repeat1] = STATE(549), - [aux_sym__list_decimal_period_repeat1] = STATE(548), - [aux_sym__list_decimal_paren_repeat1] = STATE(547), - [aux_sym__list_decimal_parens_repeat1] = STATE(546), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(545), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(544), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(543), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(542), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(541), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(540), - [aux_sym__list_lower_roman_period_repeat1] = STATE(539), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(538), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(537), - [aux_sym__list_upper_roman_period_repeat1] = STATE(536), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(535), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(534), - [aux_sym_table_repeat1] = STATE(66), - [aux_sym__block_quote_prefix_repeat1] = STATE(323), - [aux_sym__inline_repeat1] = STATE(366), - [anon_sym_LBRACK] = ACTIONS(197), - [anon_sym_PIPE] = ACTIONS(199), + [sym__list_definition] = STATE(220), + [sym__list_item_definition] = STATE(502), + [sym__list_decimal_period] = STATE(220), + [sym__list_item_decimal_period] = STATE(503), + [sym__list_decimal_paren] = STATE(220), + [sym__list_item_decimal_paren] = STATE(504), + [sym__list_decimal_parens] = STATE(220), + [sym__list_item_decimal_parens] = STATE(505), + [sym__list_lower_alpha_period] = STATE(220), + [sym__list_item_lower_alpha_period] = STATE(506), + [sym__list_lower_alpha_paren] = STATE(220), + [sym__list_item_lower_alpha_paren] = STATE(507), + [sym__list_lower_alpha_parens] = STATE(220), + [sym__list_item_lower_alpha_parens] = STATE(508), + [sym__list_upper_alpha_period] = STATE(220), + [sym__list_item_upper_alpha_period] = STATE(509), + [sym__list_upper_alpha_paren] = STATE(220), + [sym__list_item_upper_alpha_paren] = STATE(511), + [sym__list_upper_alpha_parens] = STATE(220), + [sym__list_item_upper_alpha_parens] = STATE(512), + [sym__list_lower_roman_period] = STATE(220), + [sym__list_item_lower_roman_period] = STATE(513), + [sym__list_lower_roman_paren] = STATE(220), + [sym__list_item_lower_roman_paren] = STATE(516), + [sym__list_lower_roman_parens] = STATE(220), + [sym__list_item_lower_roman_parens] = STATE(522), + [sym__list_upper_roman_period] = STATE(220), + [sym__list_item_upper_roman_period] = STATE(523), + [sym__list_upper_roman_paren] = STATE(220), + [sym__list_item_upper_roman_paren] = STATE(525), + [sym__list_upper_roman_parens] = STATE(220), + [sym__list_item_upper_roman_parens] = STATE(526), + [sym_table] = STATE(207), + [sym__table_content] = STATE(65), + [sym_table_separator] = STATE(65), + [sym_table_row] = STATE(70), + [sym_footnote] = STATE(207), + [sym_footnote_marker_begin] = STATE(1072), + [sym_div] = STATE(207), + [sym_div_marker_begin] = STATE(1068), + [sym_code_block] = STATE(207), + [sym_raw_block] = STATE(207), + [sym_thematic_break] = STATE(207), + [sym_block_quote] = STATE(207), + [sym__block_quote_prefix] = STATE(284), + [sym_link_reference_definition] = STATE(207), + [sym_block_attribute] = STATE(207), + [sym__paragraph] = STATE(207), + [sym__paragraph_content] = STATE(728), + [sym__inline] = STATE(710), + [sym__symbol_fallback] = STATE(355), + [aux_sym_document_repeat1] = STATE(10), + [aux_sym__list_dash_repeat1] = STATE(414), + [aux_sym__list_plus_repeat1] = STATE(425), + [aux_sym__list_star_repeat1] = STATE(424), + [aux_sym__list_task_repeat1] = STATE(397), + [aux_sym__list_definition_repeat1] = STATE(502), + [aux_sym__list_decimal_period_repeat1] = STATE(503), + [aux_sym__list_decimal_paren_repeat1] = STATE(504), + [aux_sym__list_decimal_parens_repeat1] = STATE(505), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(506), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(507), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(508), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(509), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(511), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(512), + [aux_sym__list_lower_roman_period_repeat1] = STATE(513), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(516), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(522), + [aux_sym__list_upper_roman_period_repeat1] = STATE(523), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(525), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(526), + [aux_sym_table_repeat1] = STATE(65), + [aux_sym__block_quote_prefix_repeat1] = STATE(316), + [aux_sym__inline_repeat1] = STATE(355), + [ts_builtin_sym_end] = ACTIONS(102), + [anon_sym_LBRACK] = ACTIONS(195), + [anon_sym_PIPE] = ACTIONS(198), + [anon_sym_LBRACK_CARET] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(201), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__block_close] = ACTIONS(217), - [sym__newline] = ACTIONS(205), - [sym__heading_begin] = ACTIONS(17), - [sym__div_begin] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(99), + [aux_sym_identifier_token1] = ACTIONS(99), + [aux_sym__inline_token1] = ACTIONS(99), + [anon_sym_LBRACE_DASH] = ACTIONS(99), + [anon_sym_POUND] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(99), + [sym__newline] = ACTIONS(204), + [sym__heading_begin] = ACTIONS(107), + [sym__div_begin] = ACTIONS(110), [sym__code_block_begin] = ACTIONS(207), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(209), - [sym__block_quote_continuation] = ACTIONS(65), - [sym__thematic_break_dash] = ACTIONS(211), - [sym__thematic_break_star] = ACTIONS(211), - [sym__footnote_begin] = ACTIONS(213), + [sym_list_marker_dash] = ACTIONS(116), + [sym_list_marker_star] = ACTIONS(119), + [sym_list_marker_plus] = ACTIONS(122), + [sym__list_marker_task_begin] = ACTIONS(125), + [sym_list_marker_definition] = ACTIONS(128), + [sym_list_marker_decimal_period] = ACTIONS(131), + [sym_list_marker_lower_alpha_period] = ACTIONS(134), + [sym_list_marker_upper_alpha_period] = ACTIONS(137), + [sym_list_marker_lower_roman_period] = ACTIONS(140), + [sym_list_marker_upper_roman_period] = ACTIONS(143), + [sym_list_marker_decimal_paren] = ACTIONS(146), + [sym_list_marker_lower_alpha_paren] = ACTIONS(149), + [sym_list_marker_upper_alpha_paren] = ACTIONS(152), + [sym_list_marker_lower_roman_paren] = ACTIONS(155), + [sym_list_marker_upper_roman_paren] = ACTIONS(158), + [sym_list_marker_decimal_parens] = ACTIONS(161), + [sym_list_marker_lower_alpha_parens] = ACTIONS(164), + [sym_list_marker_upper_alpha_parens] = ACTIONS(167), + [sym_list_marker_lower_roman_parens] = ACTIONS(170), + [sym_list_marker_upper_roman_parens] = ACTIONS(173), + [sym__block_quote_begin] = ACTIONS(210), + [sym__block_quote_continuation] = ACTIONS(179), + [sym__thematic_break_dash] = ACTIONS(213), + [sym__thematic_break_star] = ACTIONS(213), }, - [10] = { - [sym__block_with_section] = STATE(146), - [sym__block_element] = STATE(146), - [sym_section] = STATE(146), - [sym_heading] = STATE(7), - [sym_list] = STATE(146), - [sym__list_dash] = STATE(141), - [sym__list_item_dash] = STATE(416), - [sym__list_plus] = STATE(141), - [sym__list_item_plus] = STATE(419), - [sym__list_star] = STATE(141), + [11] = { + [sym__block_with_heading] = STATE(167), + [sym__block_element] = STATE(167), + [sym_heading] = STATE(167), + [sym_list] = STATE(167), + [sym__list_dash] = STATE(153), + [sym__list_item_dash] = STATE(409), + [sym__list_plus] = STATE(153), + [sym__list_item_plus] = STATE(410), + [sym__list_star] = STATE(153), [sym__list_item_star] = STATE(407), - [sym__list_task] = STATE(141), - [sym__list_item_task] = STATE(371), + [sym__list_task] = STATE(153), + [sym__list_item_task] = STATE(396), [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(141), - [sym__list_item_definition] = STATE(549), - [sym__list_decimal_period] = STATE(141), - [sym__list_item_decimal_period] = STATE(548), - [sym__list_decimal_paren] = STATE(141), - [sym__list_item_decimal_paren] = STATE(547), - [sym__list_decimal_parens] = STATE(141), - [sym__list_item_decimal_parens] = STATE(546), - [sym__list_lower_alpha_period] = STATE(141), - [sym__list_item_lower_alpha_period] = STATE(545), - [sym__list_lower_alpha_paren] = STATE(141), - [sym__list_item_lower_alpha_paren] = STATE(544), - [sym__list_lower_alpha_parens] = STATE(141), - [sym__list_item_lower_alpha_parens] = STATE(543), - [sym__list_upper_alpha_period] = STATE(141), - [sym__list_item_upper_alpha_period] = STATE(542), - [sym__list_upper_alpha_paren] = STATE(141), - [sym__list_item_upper_alpha_paren] = STATE(541), - [sym__list_upper_alpha_parens] = STATE(141), - [sym__list_item_upper_alpha_parens] = STATE(540), - [sym__list_lower_roman_period] = STATE(141), - [sym__list_item_lower_roman_period] = STATE(539), - [sym__list_lower_roman_paren] = STATE(141), - [sym__list_item_lower_roman_paren] = STATE(538), - [sym__list_lower_roman_parens] = STATE(141), - [sym__list_item_lower_roman_parens] = STATE(537), - [sym__list_upper_roman_period] = STATE(141), - [sym__list_item_upper_roman_period] = STATE(536), - [sym__list_upper_roman_paren] = STATE(141), - [sym__list_item_upper_roman_paren] = STATE(535), - [sym__list_upper_roman_parens] = STATE(141), - [sym__list_item_upper_roman_parens] = STATE(534), - [sym_table] = STATE(146), + [sym__list_definition] = STATE(153), + [sym__list_item_definition] = STATE(602), + [sym__list_decimal_period] = STATE(153), + [sym__list_item_decimal_period] = STATE(603), + [sym__list_decimal_paren] = STATE(153), + [sym__list_item_decimal_paren] = STATE(604), + [sym__list_decimal_parens] = STATE(153), + [sym__list_item_decimal_parens] = STATE(605), + [sym__list_lower_alpha_period] = STATE(153), + [sym__list_item_lower_alpha_period] = STATE(606), + [sym__list_lower_alpha_paren] = STATE(153), + [sym__list_item_lower_alpha_paren] = STATE(607), + [sym__list_lower_alpha_parens] = STATE(153), + [sym__list_item_lower_alpha_parens] = STATE(608), + [sym__list_upper_alpha_period] = STATE(153), + [sym__list_item_upper_alpha_period] = STATE(609), + [sym__list_upper_alpha_paren] = STATE(153), + [sym__list_item_upper_alpha_paren] = STATE(610), + [sym__list_upper_alpha_parens] = STATE(153), + [sym__list_item_upper_alpha_parens] = STATE(611), + [sym__list_lower_roman_period] = STATE(153), + [sym__list_item_lower_roman_period] = STATE(612), + [sym__list_lower_roman_paren] = STATE(153), + [sym__list_item_lower_roman_paren] = STATE(613), + [sym__list_lower_roman_parens] = STATE(153), + [sym__list_item_lower_roman_parens] = STATE(595), + [sym__list_upper_roman_period] = STATE(153), + [sym__list_item_upper_roman_period] = STATE(581), + [sym__list_upper_roman_paren] = STATE(153), + [sym__list_item_upper_roman_paren] = STATE(559), + [sym__list_upper_roman_parens] = STATE(153), + [sym__list_item_upper_roman_parens] = STATE(558), + [sym_table] = STATE(167), [sym__table_content] = STATE(66), [sym_table_separator] = STATE(66), - [sym_table_row] = STATE(72), - [sym_footnote] = STATE(146), - [sym_div] = STATE(146), - [sym_div_marker_begin] = STATE(985), - [sym_code_block] = STATE(146), - [sym_raw_block] = STATE(146), - [sym_thematic_break] = STATE(146), - [sym_block_quote] = STATE(146), + [sym_table_row] = STATE(71), + [sym_footnote] = STATE(167), + [sym_footnote_marker_begin] = STATE(1086), + [sym_footnote_content] = STATE(910), + [sym_div] = STATE(167), + [sym_div_marker_begin] = STATE(1017), + [sym_code_block] = STATE(167), + [sym_raw_block] = STATE(167), + [sym_thematic_break] = STATE(167), + [sym_block_quote] = STATE(167), [sym__block_quote_prefix] = STATE(286), - [sym_link_reference_definition] = STATE(146), - [sym_block_attribute] = STATE(146), - [sym__paragraph] = STATE(146), - [sym__paragraph_content] = STATE(801), - [sym__inline] = STATE(703), - [sym__symbol_fallback] = STATE(366), - [aux_sym_document_repeat1] = STATE(6), - [aux_sym__list_dash_repeat1] = STATE(416), - [aux_sym__list_plus_repeat1] = STATE(419), + [sym_link_reference_definition] = STATE(167), + [sym_block_attribute] = STATE(167), + [sym__paragraph] = STATE(167), + [sym__paragraph_content] = STATE(867), + [sym__inline] = STATE(710), + [sym__symbol_fallback] = STATE(355), + [aux_sym__list_dash_repeat1] = STATE(409), + [aux_sym__list_plus_repeat1] = STATE(410), [aux_sym__list_star_repeat1] = STATE(407), - [aux_sym__list_task_repeat1] = STATE(371), - [aux_sym__list_definition_repeat1] = STATE(549), - [aux_sym__list_decimal_period_repeat1] = STATE(548), - [aux_sym__list_decimal_paren_repeat1] = STATE(547), - [aux_sym__list_decimal_parens_repeat1] = STATE(546), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(545), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(544), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(543), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(542), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(541), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(540), - [aux_sym__list_lower_roman_period_repeat1] = STATE(539), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(538), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(537), - [aux_sym__list_upper_roman_period_repeat1] = STATE(536), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(535), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(534), + [aux_sym__list_task_repeat1] = STATE(396), + [aux_sym__list_definition_repeat1] = STATE(602), + [aux_sym__list_decimal_period_repeat1] = STATE(603), + [aux_sym__list_decimal_paren_repeat1] = STATE(604), + [aux_sym__list_decimal_parens_repeat1] = STATE(605), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(606), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(607), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(608), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(609), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(610), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(611), + [aux_sym__list_lower_roman_period_repeat1] = STATE(612), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(613), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(595), + [aux_sym__list_upper_roman_period_repeat1] = STATE(581), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(559), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(558), [aux_sym_table_repeat1] = STATE(66), - [aux_sym__block_quote_prefix_repeat1] = STATE(323), - [aux_sym__inline_repeat1] = STATE(366), - [anon_sym_LBRACK] = ACTIONS(197), - [anon_sym_PIPE] = ACTIONS(199), - [anon_sym_LBRACE] = ACTIONS(201), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__block_close] = ACTIONS(219), - [sym__newline] = ACTIONS(205), - [sym__heading_begin] = ACTIONS(17), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(207), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(209), - [sym__block_quote_continuation] = ACTIONS(65), - [sym__thematic_break_dash] = ACTIONS(211), - [sym__thematic_break_star] = ACTIONS(211), - [sym__footnote_begin] = ACTIONS(213), - }, - [11] = { - [sym__block_with_heading] = STATE(265), - [sym__block_element] = STATE(265), - [sym_heading] = STATE(265), - [sym_list] = STATE(265), - [sym__list_dash] = STATE(234), - [sym__list_item_dash] = STATE(415), - [sym__list_plus] = STATE(234), - [sym__list_item_plus] = STATE(395), - [sym__list_star] = STATE(234), - [sym__list_item_star] = STATE(409), - [sym__list_task] = STATE(234), - [sym__list_item_task] = STATE(389), - [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(234), - [sym__list_item_definition] = STATE(531), - [sym__list_decimal_period] = STATE(234), - [sym__list_item_decimal_period] = STATE(530), - [sym__list_decimal_paren] = STATE(234), - [sym__list_item_decimal_paren] = STATE(529), - [sym__list_decimal_parens] = STATE(234), - [sym__list_item_decimal_parens] = STATE(527), - [sym__list_lower_alpha_period] = STATE(234), - [sym__list_item_lower_alpha_period] = STATE(526), - [sym__list_lower_alpha_paren] = STATE(234), - [sym__list_item_lower_alpha_paren] = STATE(525), - [sym__list_lower_alpha_parens] = STATE(234), - [sym__list_item_lower_alpha_parens] = STATE(524), - [sym__list_upper_alpha_period] = STATE(234), - [sym__list_item_upper_alpha_period] = STATE(523), - [sym__list_upper_alpha_paren] = STATE(234), - [sym__list_item_upper_alpha_paren] = STATE(522), - [sym__list_upper_alpha_parens] = STATE(234), - [sym__list_item_upper_alpha_parens] = STATE(521), - [sym__list_lower_roman_period] = STATE(234), - [sym__list_item_lower_roman_period] = STATE(520), - [sym__list_lower_roman_paren] = STATE(234), - [sym__list_item_lower_roman_paren] = STATE(519), - [sym__list_lower_roman_parens] = STATE(234), - [sym__list_item_lower_roman_parens] = STATE(518), - [sym__list_upper_roman_period] = STATE(234), - [sym__list_item_upper_roman_period] = STATE(517), - [sym__list_upper_roman_paren] = STATE(234), - [sym__list_item_upper_roman_paren] = STATE(516), - [sym__list_upper_roman_parens] = STATE(234), - [sym__list_item_upper_roman_parens] = STATE(515), - [sym_table] = STATE(265), - [sym__table_content] = STATE(65), - [sym_table_separator] = STATE(65), - [sym_table_row] = STATE(71), - [sym_footnote] = STATE(265), - [sym_footnote_content] = STATE(911), - [sym_div] = STATE(265), - [sym_div_marker_begin] = STATE(1006), - [sym_code_block] = STATE(265), - [sym_raw_block] = STATE(265), - [sym_thematic_break] = STATE(265), - [sym_block_quote] = STATE(265), - [sym__block_quote_prefix] = STATE(285), - [sym_link_reference_definition] = STATE(265), - [sym_block_attribute] = STATE(265), - [sym__paragraph] = STATE(265), - [sym__paragraph_content] = STATE(856), - [sym__inline] = STATE(703), - [sym__symbol_fallback] = STATE(366), - [aux_sym__list_dash_repeat1] = STATE(415), - [aux_sym__list_plus_repeat1] = STATE(395), - [aux_sym__list_star_repeat1] = STATE(409), - [aux_sym__list_task_repeat1] = STATE(389), - [aux_sym__list_definition_repeat1] = STATE(531), - [aux_sym__list_decimal_period_repeat1] = STATE(530), - [aux_sym__list_decimal_paren_repeat1] = STATE(529), - [aux_sym__list_decimal_parens_repeat1] = STATE(527), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(526), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(525), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(524), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(523), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(522), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(521), - [aux_sym__list_lower_roman_period_repeat1] = STATE(520), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(519), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(518), - [aux_sym__list_upper_roman_period_repeat1] = STATE(517), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(516), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(515), - [aux_sym_table_repeat1] = STATE(65), - [aux_sym_footnote_content_repeat1] = STATE(15), - [aux_sym__block_quote_prefix_repeat1] = STATE(323), - [aux_sym__inline_repeat1] = STATE(366), - [anon_sym_LBRACK] = ACTIONS(221), - [anon_sym_PIPE] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(225), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__newline] = ACTIONS(227), - [sym__heading_begin] = ACTIONS(229), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(231), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(233), - [sym__block_quote_continuation] = ACTIONS(235), - [sym__thematic_break_dash] = ACTIONS(237), - [sym__thematic_break_star] = ACTIONS(237), - [sym__footnote_begin] = ACTIONS(239), + [aux_sym_footnote_content_repeat1] = STATE(22), + [aux_sym__block_quote_prefix_repeat1] = STATE(316), + [aux_sym__inline_repeat1] = STATE(355), + [anon_sym_LBRACK] = ACTIONS(216), + [anon_sym_PIPE] = ACTIONS(218), + [anon_sym_LBRACK_CARET] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(220), + [anon_sym_DOT] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(13), + [aux_sym__inline_token1] = ACTIONS(13), + [anon_sym_LBRACE_DASH] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(13), + [anon_sym_PERCENT] = ACTIONS(13), + [sym__newline] = ACTIONS(222), + [sym__heading_begin] = ACTIONS(224), + [sym__div_begin] = ACTIONS(21), + [sym__code_block_begin] = ACTIONS(226), + [sym_list_marker_dash] = ACTIONS(25), + [sym_list_marker_star] = ACTIONS(27), + [sym_list_marker_plus] = ACTIONS(29), + [sym__list_marker_task_begin] = ACTIONS(31), + [sym_list_marker_definition] = ACTIONS(33), + [sym_list_marker_decimal_period] = ACTIONS(35), + [sym_list_marker_lower_alpha_period] = ACTIONS(37), + [sym_list_marker_upper_alpha_period] = ACTIONS(39), + [sym_list_marker_lower_roman_period] = ACTIONS(41), + [sym_list_marker_upper_roman_period] = ACTIONS(43), + [sym_list_marker_decimal_paren] = ACTIONS(45), + [sym_list_marker_lower_alpha_paren] = ACTIONS(47), + [sym_list_marker_upper_alpha_paren] = ACTIONS(49), + [sym_list_marker_lower_roman_paren] = ACTIONS(51), + [sym_list_marker_upper_roman_paren] = ACTIONS(53), + [sym_list_marker_decimal_parens] = ACTIONS(55), + [sym_list_marker_lower_alpha_parens] = ACTIONS(57), + [sym_list_marker_upper_alpha_parens] = ACTIONS(59), + [sym_list_marker_lower_roman_parens] = ACTIONS(61), + [sym_list_marker_upper_roman_parens] = ACTIONS(63), + [sym__block_quote_begin] = ACTIONS(228), + [sym__block_quote_continuation] = ACTIONS(230), + [sym__thematic_break_dash] = ACTIONS(232), + [sym__thematic_break_star] = ACTIONS(232), }, [12] = { - [sym__block_with_heading] = STATE(226), - [sym__block_element] = STATE(226), - [sym_heading] = STATE(226), - [sym_list] = STATE(226), - [sym__list_dash] = STATE(141), - [sym__list_item_dash] = STATE(416), - [sym__list_plus] = STATE(141), - [sym__list_item_plus] = STATE(419), - [sym__list_star] = STATE(141), - [sym__list_item_star] = STATE(407), - [sym__list_task] = STATE(141), - [sym__list_item_task] = STATE(371), + [sym__block_with_heading] = STATE(230), + [sym__block_element] = STATE(230), + [sym_heading] = STATE(230), + [sym_list] = STATE(230), + [sym__list_dash] = STATE(186), + [sym__list_item_dash] = STATE(415), + [sym__list_plus] = STATE(186), + [sym__list_item_plus] = STATE(406), + [sym__list_star] = STATE(186), + [sym__list_item_star] = STATE(408), + [sym__list_task] = STATE(186), + [sym__list_item_task] = STATE(391), [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(141), - [sym__list_item_definition] = STATE(549), - [sym__list_decimal_period] = STATE(141), - [sym__list_item_decimal_period] = STATE(548), - [sym__list_decimal_paren] = STATE(141), - [sym__list_item_decimal_paren] = STATE(547), - [sym__list_decimal_parens] = STATE(141), - [sym__list_item_decimal_parens] = STATE(546), - [sym__list_lower_alpha_period] = STATE(141), - [sym__list_item_lower_alpha_period] = STATE(545), - [sym__list_lower_alpha_paren] = STATE(141), - [sym__list_item_lower_alpha_paren] = STATE(544), - [sym__list_lower_alpha_parens] = STATE(141), - [sym__list_item_lower_alpha_parens] = STATE(543), - [sym__list_upper_alpha_period] = STATE(141), - [sym__list_item_upper_alpha_period] = STATE(542), - [sym__list_upper_alpha_paren] = STATE(141), - [sym__list_item_upper_alpha_paren] = STATE(541), - [sym__list_upper_alpha_parens] = STATE(141), - [sym__list_item_upper_alpha_parens] = STATE(540), - [sym__list_lower_roman_period] = STATE(141), - [sym__list_item_lower_roman_period] = STATE(539), - [sym__list_lower_roman_paren] = STATE(141), - [sym__list_item_lower_roman_paren] = STATE(538), - [sym__list_lower_roman_parens] = STATE(141), - [sym__list_item_lower_roman_parens] = STATE(537), - [sym__list_upper_roman_period] = STATE(141), - [sym__list_item_upper_roman_period] = STATE(536), - [sym__list_upper_roman_paren] = STATE(141), - [sym__list_item_upper_roman_paren] = STATE(535), - [sym__list_upper_roman_parens] = STATE(141), - [sym__list_item_upper_roman_parens] = STATE(534), - [sym_table] = STATE(226), - [sym__table_content] = STATE(66), - [sym_table_separator] = STATE(66), + [sym__list_definition] = STATE(186), + [sym__list_item_definition] = STATE(570), + [sym__list_decimal_period] = STATE(186), + [sym__list_item_decimal_period] = STATE(573), + [sym__list_decimal_paren] = STATE(186), + [sym__list_item_decimal_paren] = STATE(575), + [sym__list_decimal_parens] = STATE(186), + [sym__list_item_decimal_parens] = STATE(578), + [sym__list_lower_alpha_period] = STATE(186), + [sym__list_item_lower_alpha_period] = STATE(495), + [sym__list_lower_alpha_paren] = STATE(186), + [sym__list_item_lower_alpha_paren] = STATE(583), + [sym__list_lower_alpha_parens] = STATE(186), + [sym__list_item_lower_alpha_parens] = STATE(494), + [sym__list_upper_alpha_period] = STATE(186), + [sym__list_item_upper_alpha_period] = STATE(584), + [sym__list_upper_alpha_paren] = STATE(186), + [sym__list_item_upper_alpha_paren] = STATE(586), + [sym__list_upper_alpha_parens] = STATE(186), + [sym__list_item_upper_alpha_parens] = STATE(587), + [sym__list_lower_roman_period] = STATE(186), + [sym__list_item_lower_roman_period] = STATE(588), + [sym__list_lower_roman_paren] = STATE(186), + [sym__list_item_lower_roman_paren] = STATE(590), + [sym__list_lower_roman_parens] = STATE(186), + [sym__list_item_lower_roman_parens] = STATE(591), + [sym__list_upper_roman_period] = STATE(186), + [sym__list_item_upper_roman_period] = STATE(592), + [sym__list_upper_roman_paren] = STATE(186), + [sym__list_item_upper_roman_paren] = STATE(596), + [sym__list_upper_roman_parens] = STATE(186), + [sym__list_item_upper_roman_parens] = STATE(597), + [sym_table] = STATE(230), + [sym__table_content] = STATE(64), + [sym_table_separator] = STATE(64), [sym_table_row] = STATE(72), - [sym_footnote] = STATE(226), - [sym_div] = STATE(226), - [sym_div_marker_begin] = STATE(985), - [sym_code_block] = STATE(226), - [sym_raw_block] = STATE(226), - [sym_thematic_break] = STATE(226), - [sym_block_quote] = STATE(226), - [sym__block_quote_prefix] = STATE(286), - [sym_link_reference_definition] = STATE(226), - [sym_block_attribute] = STATE(226), - [sym__paragraph] = STATE(226), - [sym__paragraph_content] = STATE(801), - [sym__inline] = STATE(703), - [sym__symbol_fallback] = STATE(366), - [aux_sym__list_dash_repeat1] = STATE(416), - [aux_sym__list_plus_repeat1] = STATE(419), - [aux_sym__list_star_repeat1] = STATE(407), - [aux_sym__list_task_repeat1] = STATE(371), - [aux_sym__list_definition_repeat1] = STATE(549), - [aux_sym__list_decimal_period_repeat1] = STATE(548), - [aux_sym__list_decimal_paren_repeat1] = STATE(547), - [aux_sym__list_decimal_parens_repeat1] = STATE(546), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(545), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(544), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(543), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(542), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(541), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(540), - [aux_sym__list_lower_roman_period_repeat1] = STATE(539), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(538), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(537), - [aux_sym__list_upper_roman_period_repeat1] = STATE(536), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(535), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(534), - [aux_sym_table_repeat1] = STATE(66), - [aux_sym_footnote_content_repeat1] = STATE(12), - [aux_sym__block_quote_prefix_repeat1] = STATE(323), - [aux_sym__inline_repeat1] = STATE(366), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_PIPE] = ACTIONS(244), - [anon_sym_LBRACE] = ACTIONS(247), - [aux_sym__inline_token1] = ACTIONS(250), - [anon_sym_LBRACE_DASH] = ACTIONS(250), - [sym__block_close] = ACTIONS(253), - [sym__newline] = ACTIONS(255), - [sym__heading_begin] = ACTIONS(258), - [sym__div_begin] = ACTIONS(261), - [sym__code_block_begin] = ACTIONS(264), - [sym_list_marker_dash] = ACTIONS(267), - [sym_list_marker_star] = ACTIONS(270), - [sym_list_marker_plus] = ACTIONS(273), - [sym__list_marker_task_begin] = ACTIONS(276), - [sym_list_marker_definition] = ACTIONS(279), - [sym_list_marker_decimal_period] = ACTIONS(282), - [sym_list_marker_lower_alpha_period] = ACTIONS(285), - [sym_list_marker_upper_alpha_period] = ACTIONS(288), - [sym_list_marker_lower_roman_period] = ACTIONS(291), - [sym_list_marker_upper_roman_period] = ACTIONS(294), - [sym_list_marker_decimal_paren] = ACTIONS(297), - [sym_list_marker_lower_alpha_paren] = ACTIONS(300), - [sym_list_marker_upper_alpha_paren] = ACTIONS(303), - [sym_list_marker_lower_roman_paren] = ACTIONS(306), - [sym_list_marker_upper_roman_paren] = ACTIONS(309), - [sym_list_marker_decimal_parens] = ACTIONS(312), - [sym_list_marker_lower_alpha_parens] = ACTIONS(315), - [sym_list_marker_upper_alpha_parens] = ACTIONS(318), - [sym_list_marker_lower_roman_parens] = ACTIONS(321), - [sym_list_marker_upper_roman_parens] = ACTIONS(324), - [sym__block_quote_begin] = ACTIONS(327), - [sym__block_quote_continuation] = ACTIONS(330), - [sym__thematic_break_dash] = ACTIONS(333), - [sym__thematic_break_star] = ACTIONS(333), - [sym__footnote_begin] = ACTIONS(336), + [sym_footnote] = STATE(230), + [sym_footnote_marker_begin] = STATE(1084), + [sym_div] = STATE(230), + [sym_div_marker_begin] = STATE(996), + [sym_code_block] = STATE(230), + [sym_raw_block] = STATE(230), + [sym_thematic_break] = STATE(230), + [sym_block_quote] = STATE(230), + [sym__block_quote_prefix] = STATE(274), + [sym_link_reference_definition] = STATE(230), + [sym_block_attribute] = STATE(230), + [sym__paragraph] = STATE(230), + [sym__paragraph_content] = STATE(811), + [sym__inline] = STATE(710), + [sym__symbol_fallback] = STATE(355), + [aux_sym__list_dash_repeat1] = STATE(415), + [aux_sym__list_plus_repeat1] = STATE(406), + [aux_sym__list_star_repeat1] = STATE(408), + [aux_sym__list_task_repeat1] = STATE(391), + [aux_sym__list_definition_repeat1] = STATE(570), + [aux_sym__list_decimal_period_repeat1] = STATE(573), + [aux_sym__list_decimal_paren_repeat1] = STATE(575), + [aux_sym__list_decimal_parens_repeat1] = STATE(578), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(495), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(583), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(494), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(584), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(586), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(587), + [aux_sym__list_lower_roman_period_repeat1] = STATE(588), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(590), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(591), + [aux_sym__list_upper_roman_period_repeat1] = STATE(592), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(596), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(597), + [aux_sym_table_repeat1] = STATE(64), + [aux_sym_footnote_content_repeat1] = STATE(27), + [aux_sym__block_quote_prefix_repeat1] = STATE(302), + [aux_sym__inline_repeat1] = STATE(355), + [anon_sym_LBRACK] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(73), + [anon_sym_LBRACK_CARET] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DOT] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(13), + [aux_sym__inline_token1] = ACTIONS(13), + [anon_sym_LBRACE_DASH] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(13), + [anon_sym_PERCENT] = ACTIONS(13), + [sym__block_close] = ACTIONS(234), + [sym__newline] = ACTIONS(236), + [sym__heading_begin] = ACTIONS(19), + [sym__div_begin] = ACTIONS(21), + [sym__code_block_begin] = ACTIONS(81), + [sym_list_marker_dash] = ACTIONS(25), + [sym_list_marker_star] = ACTIONS(27), + [sym_list_marker_plus] = ACTIONS(29), + [sym__list_marker_task_begin] = ACTIONS(31), + [sym_list_marker_definition] = ACTIONS(33), + [sym_list_marker_decimal_period] = ACTIONS(35), + [sym_list_marker_lower_alpha_period] = ACTIONS(37), + [sym_list_marker_upper_alpha_period] = ACTIONS(39), + [sym_list_marker_lower_roman_period] = ACTIONS(41), + [sym_list_marker_upper_roman_period] = ACTIONS(43), + [sym_list_marker_decimal_paren] = ACTIONS(45), + [sym_list_marker_lower_alpha_paren] = ACTIONS(47), + [sym_list_marker_upper_alpha_paren] = ACTIONS(49), + [sym_list_marker_lower_roman_paren] = ACTIONS(51), + [sym_list_marker_upper_roman_paren] = ACTIONS(53), + [sym_list_marker_decimal_parens] = ACTIONS(55), + [sym_list_marker_lower_alpha_parens] = ACTIONS(57), + [sym_list_marker_upper_alpha_parens] = ACTIONS(59), + [sym_list_marker_lower_roman_parens] = ACTIONS(61), + [sym_list_marker_upper_roman_parens] = ACTIONS(63), + [sym__block_quote_begin] = ACTIONS(83), + [sym__block_quote_continuation] = ACTIONS(238), + [sym__thematic_break_dash] = ACTIONS(85), + [sym__thematic_break_star] = ACTIONS(85), }, [13] = { - [sym__block_with_heading] = STATE(226), - [sym__block_element] = STATE(226), - [sym_heading] = STATE(226), - [sym_list] = STATE(226), - [sym__list_dash] = STATE(141), - [sym__list_item_dash] = STATE(416), - [sym__list_plus] = STATE(141), - [sym__list_item_plus] = STATE(419), - [sym__list_star] = STATE(141), + [sym__block_with_heading] = STATE(167), + [sym__block_element] = STATE(167), + [sym_heading] = STATE(167), + [sym_list] = STATE(167), + [sym__list_dash] = STATE(153), + [sym__list_item_dash] = STATE(409), + [sym__list_plus] = STATE(153), + [sym__list_item_plus] = STATE(410), + [sym__list_star] = STATE(153), [sym__list_item_star] = STATE(407), - [sym__list_task] = STATE(141), - [sym__list_item_task] = STATE(371), + [sym__list_task] = STATE(153), + [sym__list_item_task] = STATE(396), [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(141), - [sym__list_item_definition] = STATE(549), - [sym__list_decimal_period] = STATE(141), - [sym__list_item_decimal_period] = STATE(548), - [sym__list_decimal_paren] = STATE(141), - [sym__list_item_decimal_paren] = STATE(547), - [sym__list_decimal_parens] = STATE(141), - [sym__list_item_decimal_parens] = STATE(546), - [sym__list_lower_alpha_period] = STATE(141), - [sym__list_item_lower_alpha_period] = STATE(545), - [sym__list_lower_alpha_paren] = STATE(141), - [sym__list_item_lower_alpha_paren] = STATE(544), - [sym__list_lower_alpha_parens] = STATE(141), - [sym__list_item_lower_alpha_parens] = STATE(543), - [sym__list_upper_alpha_period] = STATE(141), - [sym__list_item_upper_alpha_period] = STATE(542), - [sym__list_upper_alpha_paren] = STATE(141), - [sym__list_item_upper_alpha_paren] = STATE(541), - [sym__list_upper_alpha_parens] = STATE(141), - [sym__list_item_upper_alpha_parens] = STATE(540), - [sym__list_lower_roman_period] = STATE(141), - [sym__list_item_lower_roman_period] = STATE(539), - [sym__list_lower_roman_paren] = STATE(141), - [sym__list_item_lower_roman_paren] = STATE(538), - [sym__list_lower_roman_parens] = STATE(141), - [sym__list_item_lower_roman_parens] = STATE(537), - [sym__list_upper_roman_period] = STATE(141), - [sym__list_item_upper_roman_period] = STATE(536), - [sym__list_upper_roman_paren] = STATE(141), - [sym__list_item_upper_roman_paren] = STATE(535), - [sym__list_upper_roman_parens] = STATE(141), - [sym__list_item_upper_roman_parens] = STATE(534), - [sym_table] = STATE(226), + [sym__list_definition] = STATE(153), + [sym__list_item_definition] = STATE(602), + [sym__list_decimal_period] = STATE(153), + [sym__list_item_decimal_period] = STATE(603), + [sym__list_decimal_paren] = STATE(153), + [sym__list_item_decimal_paren] = STATE(604), + [sym__list_decimal_parens] = STATE(153), + [sym__list_item_decimal_parens] = STATE(605), + [sym__list_lower_alpha_period] = STATE(153), + [sym__list_item_lower_alpha_period] = STATE(606), + [sym__list_lower_alpha_paren] = STATE(153), + [sym__list_item_lower_alpha_paren] = STATE(607), + [sym__list_lower_alpha_parens] = STATE(153), + [sym__list_item_lower_alpha_parens] = STATE(608), + [sym__list_upper_alpha_period] = STATE(153), + [sym__list_item_upper_alpha_period] = STATE(609), + [sym__list_upper_alpha_paren] = STATE(153), + [sym__list_item_upper_alpha_paren] = STATE(610), + [sym__list_upper_alpha_parens] = STATE(153), + [sym__list_item_upper_alpha_parens] = STATE(611), + [sym__list_lower_roman_period] = STATE(153), + [sym__list_item_lower_roman_period] = STATE(612), + [sym__list_lower_roman_paren] = STATE(153), + [sym__list_item_lower_roman_paren] = STATE(613), + [sym__list_lower_roman_parens] = STATE(153), + [sym__list_item_lower_roman_parens] = STATE(595), + [sym__list_upper_roman_period] = STATE(153), + [sym__list_item_upper_roman_period] = STATE(581), + [sym__list_upper_roman_paren] = STATE(153), + [sym__list_item_upper_roman_paren] = STATE(559), + [sym__list_upper_roman_parens] = STATE(153), + [sym__list_item_upper_roman_parens] = STATE(558), + [sym_table] = STATE(167), [sym__table_content] = STATE(66), [sym_table_separator] = STATE(66), - [sym_table_row] = STATE(72), - [sym_footnote] = STATE(226), - [sym_div] = STATE(226), - [sym_div_marker_begin] = STATE(985), - [sym_code_block] = STATE(226), - [sym_raw_block] = STATE(226), - [sym_thematic_break] = STATE(226), - [sym_block_quote] = STATE(226), - [sym__block_quote_prefix] = STATE(275), - [sym_link_reference_definition] = STATE(226), - [sym_block_attribute] = STATE(226), - [sym__paragraph] = STATE(226), - [sym__paragraph_content] = STATE(801), - [sym__inline] = STATE(703), - [sym__symbol_fallback] = STATE(366), - [aux_sym__list_dash_repeat1] = STATE(416), - [aux_sym__list_plus_repeat1] = STATE(419), + [sym_table_row] = STATE(71), + [sym_footnote] = STATE(167), + [sym_footnote_marker_begin] = STATE(1086), + [sym_footnote_content] = STATE(1032), + [sym_div] = STATE(167), + [sym_div_marker_begin] = STATE(1017), + [sym_code_block] = STATE(167), + [sym_raw_block] = STATE(167), + [sym_thematic_break] = STATE(167), + [sym_block_quote] = STATE(167), + [sym__block_quote_prefix] = STATE(286), + [sym_link_reference_definition] = STATE(167), + [sym_block_attribute] = STATE(167), + [sym__paragraph] = STATE(167), + [sym__paragraph_content] = STATE(867), + [sym__inline] = STATE(710), + [sym__symbol_fallback] = STATE(355), + [aux_sym__list_dash_repeat1] = STATE(409), + [aux_sym__list_plus_repeat1] = STATE(410), [aux_sym__list_star_repeat1] = STATE(407), - [aux_sym__list_task_repeat1] = STATE(371), - [aux_sym__list_definition_repeat1] = STATE(549), - [aux_sym__list_decimal_period_repeat1] = STATE(548), - [aux_sym__list_decimal_paren_repeat1] = STATE(547), - [aux_sym__list_decimal_parens_repeat1] = STATE(546), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(545), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(544), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(543), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(542), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(541), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(540), - [aux_sym__list_lower_roman_period_repeat1] = STATE(539), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(538), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(537), - [aux_sym__list_upper_roman_period_repeat1] = STATE(536), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(535), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(534), + [aux_sym__list_task_repeat1] = STATE(396), + [aux_sym__list_definition_repeat1] = STATE(602), + [aux_sym__list_decimal_period_repeat1] = STATE(603), + [aux_sym__list_decimal_paren_repeat1] = STATE(604), + [aux_sym__list_decimal_parens_repeat1] = STATE(605), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(606), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(607), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(608), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(609), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(610), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(611), + [aux_sym__list_lower_roman_period_repeat1] = STATE(612), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(613), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(595), + [aux_sym__list_upper_roman_period_repeat1] = STATE(581), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(559), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(558), [aux_sym_table_repeat1] = STATE(66), - [aux_sym_footnote_content_repeat1] = STATE(16), - [aux_sym__block_quote_prefix_repeat1] = STATE(307), - [aux_sym__inline_repeat1] = STATE(366), - [anon_sym_LBRACK] = ACTIONS(197), - [anon_sym_PIPE] = ACTIONS(199), - [anon_sym_LBRACE] = ACTIONS(201), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__block_close] = ACTIONS(339), - [sym__newline] = ACTIONS(341), - [sym__heading_begin] = ACTIONS(17), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(207), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(209), - [sym__block_quote_continuation] = ACTIONS(343), - [sym__thematic_break_dash] = ACTIONS(211), - [sym__thematic_break_star] = ACTIONS(211), - [sym__footnote_begin] = ACTIONS(213), + [aux_sym_footnote_content_repeat1] = STATE(22), + [aux_sym__block_quote_prefix_repeat1] = STATE(316), + [aux_sym__inline_repeat1] = STATE(355), + [anon_sym_LBRACK] = ACTIONS(216), + [anon_sym_PIPE] = ACTIONS(218), + [anon_sym_LBRACK_CARET] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(220), + [anon_sym_DOT] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(13), + [aux_sym__inline_token1] = ACTIONS(13), + [anon_sym_LBRACE_DASH] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(13), + [anon_sym_PERCENT] = ACTIONS(13), + [sym__newline] = ACTIONS(222), + [sym__heading_begin] = ACTIONS(224), + [sym__div_begin] = ACTIONS(21), + [sym__code_block_begin] = ACTIONS(226), + [sym_list_marker_dash] = ACTIONS(25), + [sym_list_marker_star] = ACTIONS(27), + [sym_list_marker_plus] = ACTIONS(29), + [sym__list_marker_task_begin] = ACTIONS(31), + [sym_list_marker_definition] = ACTIONS(33), + [sym_list_marker_decimal_period] = ACTIONS(35), + [sym_list_marker_lower_alpha_period] = ACTIONS(37), + [sym_list_marker_upper_alpha_period] = ACTIONS(39), + [sym_list_marker_lower_roman_period] = ACTIONS(41), + [sym_list_marker_upper_roman_period] = ACTIONS(43), + [sym_list_marker_decimal_paren] = ACTIONS(45), + [sym_list_marker_lower_alpha_paren] = ACTIONS(47), + [sym_list_marker_upper_alpha_paren] = ACTIONS(49), + [sym_list_marker_lower_roman_paren] = ACTIONS(51), + [sym_list_marker_upper_roman_paren] = ACTIONS(53), + [sym_list_marker_decimal_parens] = ACTIONS(55), + [sym_list_marker_lower_alpha_parens] = ACTIONS(57), + [sym_list_marker_upper_alpha_parens] = ACTIONS(59), + [sym_list_marker_lower_roman_parens] = ACTIONS(61), + [sym_list_marker_upper_roman_parens] = ACTIONS(63), + [sym__block_quote_begin] = ACTIONS(228), + [sym__block_quote_continuation] = ACTIONS(230), + [sym__thematic_break_dash] = ACTIONS(232), + [sym__thematic_break_star] = ACTIONS(232), }, [14] = { - [sym__block_with_heading] = STATE(265), - [sym__block_element] = STATE(265), - [sym_heading] = STATE(265), - [sym_list] = STATE(265), - [sym__list_dash] = STATE(234), + [sym__block_with_heading] = STATE(230), + [sym__block_element] = STATE(230), + [sym_heading] = STATE(230), + [sym_list] = STATE(230), + [sym__list_dash] = STATE(186), [sym__list_item_dash] = STATE(415), - [sym__list_plus] = STATE(234), - [sym__list_item_plus] = STATE(395), - [sym__list_star] = STATE(234), - [sym__list_item_star] = STATE(409), - [sym__list_task] = STATE(234), - [sym__list_item_task] = STATE(389), + [sym__list_plus] = STATE(186), + [sym__list_item_plus] = STATE(406), + [sym__list_star] = STATE(186), + [sym__list_item_star] = STATE(408), + [sym__list_task] = STATE(186), + [sym__list_item_task] = STATE(391), [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(234), - [sym__list_item_definition] = STATE(531), - [sym__list_decimal_period] = STATE(234), - [sym__list_item_decimal_period] = STATE(530), - [sym__list_decimal_paren] = STATE(234), - [sym__list_item_decimal_paren] = STATE(529), - [sym__list_decimal_parens] = STATE(234), - [sym__list_item_decimal_parens] = STATE(527), - [sym__list_lower_alpha_period] = STATE(234), - [sym__list_item_lower_alpha_period] = STATE(526), - [sym__list_lower_alpha_paren] = STATE(234), - [sym__list_item_lower_alpha_paren] = STATE(525), - [sym__list_lower_alpha_parens] = STATE(234), - [sym__list_item_lower_alpha_parens] = STATE(524), - [sym__list_upper_alpha_period] = STATE(234), - [sym__list_item_upper_alpha_period] = STATE(523), - [sym__list_upper_alpha_paren] = STATE(234), - [sym__list_item_upper_alpha_paren] = STATE(522), - [sym__list_upper_alpha_parens] = STATE(234), - [sym__list_item_upper_alpha_parens] = STATE(521), - [sym__list_lower_roman_period] = STATE(234), - [sym__list_item_lower_roman_period] = STATE(520), - [sym__list_lower_roman_paren] = STATE(234), - [sym__list_item_lower_roman_paren] = STATE(519), - [sym__list_lower_roman_parens] = STATE(234), - [sym__list_item_lower_roman_parens] = STATE(518), - [sym__list_upper_roman_period] = STATE(234), - [sym__list_item_upper_roman_period] = STATE(517), - [sym__list_upper_roman_paren] = STATE(234), - [sym__list_item_upper_roman_paren] = STATE(516), - [sym__list_upper_roman_parens] = STATE(234), - [sym__list_item_upper_roman_parens] = STATE(515), - [sym_table] = STATE(265), - [sym__table_content] = STATE(65), - [sym_table_separator] = STATE(65), - [sym_table_row] = STATE(71), - [sym_footnote] = STATE(265), - [sym_footnote_content] = STATE(983), - [sym_div] = STATE(265), - [sym_div_marker_begin] = STATE(1006), - [sym_code_block] = STATE(265), - [sym_raw_block] = STATE(265), - [sym_thematic_break] = STATE(265), - [sym_block_quote] = STATE(265), - [sym__block_quote_prefix] = STATE(285), - [sym_link_reference_definition] = STATE(265), - [sym_block_attribute] = STATE(265), - [sym__paragraph] = STATE(265), - [sym__paragraph_content] = STATE(856), - [sym__inline] = STATE(703), - [sym__symbol_fallback] = STATE(366), + [sym__list_definition] = STATE(186), + [sym__list_item_definition] = STATE(570), + [sym__list_decimal_period] = STATE(186), + [sym__list_item_decimal_period] = STATE(573), + [sym__list_decimal_paren] = STATE(186), + [sym__list_item_decimal_paren] = STATE(575), + [sym__list_decimal_parens] = STATE(186), + [sym__list_item_decimal_parens] = STATE(578), + [sym__list_lower_alpha_period] = STATE(186), + [sym__list_item_lower_alpha_period] = STATE(495), + [sym__list_lower_alpha_paren] = STATE(186), + [sym__list_item_lower_alpha_paren] = STATE(583), + [sym__list_lower_alpha_parens] = STATE(186), + [sym__list_item_lower_alpha_parens] = STATE(494), + [sym__list_upper_alpha_period] = STATE(186), + [sym__list_item_upper_alpha_period] = STATE(584), + [sym__list_upper_alpha_paren] = STATE(186), + [sym__list_item_upper_alpha_paren] = STATE(586), + [sym__list_upper_alpha_parens] = STATE(186), + [sym__list_item_upper_alpha_parens] = STATE(587), + [sym__list_lower_roman_period] = STATE(186), + [sym__list_item_lower_roman_period] = STATE(588), + [sym__list_lower_roman_paren] = STATE(186), + [sym__list_item_lower_roman_paren] = STATE(590), + [sym__list_lower_roman_parens] = STATE(186), + [sym__list_item_lower_roman_parens] = STATE(591), + [sym__list_upper_roman_period] = STATE(186), + [sym__list_item_upper_roman_period] = STATE(592), + [sym__list_upper_roman_paren] = STATE(186), + [sym__list_item_upper_roman_paren] = STATE(596), + [sym__list_upper_roman_parens] = STATE(186), + [sym__list_item_upper_roman_parens] = STATE(597), + [sym_table] = STATE(230), + [sym__table_content] = STATE(64), + [sym_table_separator] = STATE(64), + [sym_table_row] = STATE(72), + [sym_footnote] = STATE(230), + [sym_footnote_marker_begin] = STATE(1084), + [sym_div] = STATE(230), + [sym_div_marker_begin] = STATE(996), + [sym_code_block] = STATE(230), + [sym_raw_block] = STATE(230), + [sym_thematic_break] = STATE(230), + [sym_block_quote] = STATE(230), + [sym__block_quote_prefix] = STATE(281), + [sym_link_reference_definition] = STATE(230), + [sym_block_attribute] = STATE(230), + [sym__paragraph] = STATE(230), + [sym__paragraph_content] = STATE(811), + [sym__inline] = STATE(710), + [sym__symbol_fallback] = STATE(355), [aux_sym__list_dash_repeat1] = STATE(415), - [aux_sym__list_plus_repeat1] = STATE(395), - [aux_sym__list_star_repeat1] = STATE(409), - [aux_sym__list_task_repeat1] = STATE(389), - [aux_sym__list_definition_repeat1] = STATE(531), - [aux_sym__list_decimal_period_repeat1] = STATE(530), - [aux_sym__list_decimal_paren_repeat1] = STATE(529), - [aux_sym__list_decimal_parens_repeat1] = STATE(527), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(526), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(525), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(524), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(523), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(522), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(521), - [aux_sym__list_lower_roman_period_repeat1] = STATE(520), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(519), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(518), - [aux_sym__list_upper_roman_period_repeat1] = STATE(517), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(516), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(515), - [aux_sym_table_repeat1] = STATE(65), - [aux_sym_footnote_content_repeat1] = STATE(15), - [aux_sym__block_quote_prefix_repeat1] = STATE(323), - [aux_sym__inline_repeat1] = STATE(366), - [anon_sym_LBRACK] = ACTIONS(221), - [anon_sym_PIPE] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(225), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__newline] = ACTIONS(227), - [sym__heading_begin] = ACTIONS(229), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(231), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(233), - [sym__block_quote_continuation] = ACTIONS(235), - [sym__thematic_break_dash] = ACTIONS(237), - [sym__thematic_break_star] = ACTIONS(237), - [sym__footnote_begin] = ACTIONS(239), + [aux_sym__list_plus_repeat1] = STATE(406), + [aux_sym__list_star_repeat1] = STATE(408), + [aux_sym__list_task_repeat1] = STATE(391), + [aux_sym__list_definition_repeat1] = STATE(570), + [aux_sym__list_decimal_period_repeat1] = STATE(573), + [aux_sym__list_decimal_paren_repeat1] = STATE(575), + [aux_sym__list_decimal_parens_repeat1] = STATE(578), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(495), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(583), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(494), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(584), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(586), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(587), + [aux_sym__list_lower_roman_period_repeat1] = STATE(588), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(590), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(591), + [aux_sym__list_upper_roman_period_repeat1] = STATE(592), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(596), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(597), + [aux_sym_table_repeat1] = STATE(64), + [aux_sym_footnote_content_repeat1] = STATE(17), + [aux_sym__block_quote_prefix_repeat1] = STATE(302), + [aux_sym__inline_repeat1] = STATE(355), + [anon_sym_LBRACK] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(73), + [anon_sym_LBRACK_CARET] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DOT] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(13), + [aux_sym__inline_token1] = ACTIONS(13), + [anon_sym_LBRACE_DASH] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(13), + [anon_sym_PERCENT] = ACTIONS(13), + [sym__block_close] = ACTIONS(240), + [sym__newline] = ACTIONS(236), + [sym__heading_begin] = ACTIONS(19), + [sym__div_begin] = ACTIONS(21), + [sym__code_block_begin] = ACTIONS(81), + [sym_list_marker_dash] = ACTIONS(25), + [sym_list_marker_star] = ACTIONS(27), + [sym_list_marker_plus] = ACTIONS(29), + [sym__list_marker_task_begin] = ACTIONS(31), + [sym_list_marker_definition] = ACTIONS(33), + [sym_list_marker_decimal_period] = ACTIONS(35), + [sym_list_marker_lower_alpha_period] = ACTIONS(37), + [sym_list_marker_upper_alpha_period] = ACTIONS(39), + [sym_list_marker_lower_roman_period] = ACTIONS(41), + [sym_list_marker_upper_roman_period] = ACTIONS(43), + [sym_list_marker_decimal_paren] = ACTIONS(45), + [sym_list_marker_lower_alpha_paren] = ACTIONS(47), + [sym_list_marker_upper_alpha_paren] = ACTIONS(49), + [sym_list_marker_lower_roman_paren] = ACTIONS(51), + [sym_list_marker_upper_roman_paren] = ACTIONS(53), + [sym_list_marker_decimal_parens] = ACTIONS(55), + [sym_list_marker_lower_alpha_parens] = ACTIONS(57), + [sym_list_marker_upper_alpha_parens] = ACTIONS(59), + [sym_list_marker_lower_roman_parens] = ACTIONS(61), + [sym_list_marker_upper_roman_parens] = ACTIONS(63), + [sym__block_quote_begin] = ACTIONS(83), + [sym__block_quote_continuation] = ACTIONS(238), + [sym__thematic_break_dash] = ACTIONS(85), + [sym__thematic_break_star] = ACTIONS(85), }, [15] = { - [sym__block_with_heading] = STATE(265), - [sym__block_element] = STATE(265), - [sym_heading] = STATE(265), - [sym_list] = STATE(265), - [sym__list_dash] = STATE(234), + [sym__block_with_heading] = STATE(230), + [sym__block_element] = STATE(230), + [sym_heading] = STATE(230), + [sym_list] = STATE(230), + [sym__list_dash] = STATE(186), [sym__list_item_dash] = STATE(415), - [sym__list_plus] = STATE(234), - [sym__list_item_plus] = STATE(395), - [sym__list_star] = STATE(234), - [sym__list_item_star] = STATE(409), - [sym__list_task] = STATE(234), - [sym__list_item_task] = STATE(389), + [sym__list_plus] = STATE(186), + [sym__list_item_plus] = STATE(406), + [sym__list_star] = STATE(186), + [sym__list_item_star] = STATE(408), + [sym__list_task] = STATE(186), + [sym__list_item_task] = STATE(391), [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(234), - [sym__list_item_definition] = STATE(531), - [sym__list_decimal_period] = STATE(234), - [sym__list_item_decimal_period] = STATE(530), - [sym__list_decimal_paren] = STATE(234), - [sym__list_item_decimal_paren] = STATE(529), - [sym__list_decimal_parens] = STATE(234), - [sym__list_item_decimal_parens] = STATE(527), - [sym__list_lower_alpha_period] = STATE(234), - [sym__list_item_lower_alpha_period] = STATE(526), - [sym__list_lower_alpha_paren] = STATE(234), - [sym__list_item_lower_alpha_paren] = STATE(525), - [sym__list_lower_alpha_parens] = STATE(234), - [sym__list_item_lower_alpha_parens] = STATE(524), - [sym__list_upper_alpha_period] = STATE(234), - [sym__list_item_upper_alpha_period] = STATE(523), - [sym__list_upper_alpha_paren] = STATE(234), - [sym__list_item_upper_alpha_paren] = STATE(522), - [sym__list_upper_alpha_parens] = STATE(234), - [sym__list_item_upper_alpha_parens] = STATE(521), - [sym__list_lower_roman_period] = STATE(234), - [sym__list_item_lower_roman_period] = STATE(520), - [sym__list_lower_roman_paren] = STATE(234), - [sym__list_item_lower_roman_paren] = STATE(519), - [sym__list_lower_roman_parens] = STATE(234), - [sym__list_item_lower_roman_parens] = STATE(518), - [sym__list_upper_roman_period] = STATE(234), - [sym__list_item_upper_roman_period] = STATE(517), - [sym__list_upper_roman_paren] = STATE(234), - [sym__list_item_upper_roman_paren] = STATE(516), - [sym__list_upper_roman_parens] = STATE(234), - [sym__list_item_upper_roman_parens] = STATE(515), - [sym_table] = STATE(265), - [sym__table_content] = STATE(65), - [sym_table_separator] = STATE(65), - [sym_table_row] = STATE(71), - [sym_footnote] = STATE(265), - [sym_div] = STATE(265), - [sym_div_marker_begin] = STATE(1006), - [sym_code_block] = STATE(265), - [sym_raw_block] = STATE(265), - [sym_thematic_break] = STATE(265), - [sym_block_quote] = STATE(265), - [sym__block_quote_prefix] = STATE(285), - [sym_link_reference_definition] = STATE(265), - [sym_block_attribute] = STATE(265), - [sym__paragraph] = STATE(265), - [sym__paragraph_content] = STATE(856), - [sym__inline] = STATE(703), - [sym__symbol_fallback] = STATE(366), + [sym__list_definition] = STATE(186), + [sym__list_item_definition] = STATE(570), + [sym__list_decimal_period] = STATE(186), + [sym__list_item_decimal_period] = STATE(573), + [sym__list_decimal_paren] = STATE(186), + [sym__list_item_decimal_paren] = STATE(575), + [sym__list_decimal_parens] = STATE(186), + [sym__list_item_decimal_parens] = STATE(578), + [sym__list_lower_alpha_period] = STATE(186), + [sym__list_item_lower_alpha_period] = STATE(495), + [sym__list_lower_alpha_paren] = STATE(186), + [sym__list_item_lower_alpha_paren] = STATE(583), + [sym__list_lower_alpha_parens] = STATE(186), + [sym__list_item_lower_alpha_parens] = STATE(494), + [sym__list_upper_alpha_period] = STATE(186), + [sym__list_item_upper_alpha_period] = STATE(584), + [sym__list_upper_alpha_paren] = STATE(186), + [sym__list_item_upper_alpha_paren] = STATE(586), + [sym__list_upper_alpha_parens] = STATE(186), + [sym__list_item_upper_alpha_parens] = STATE(587), + [sym__list_lower_roman_period] = STATE(186), + [sym__list_item_lower_roman_period] = STATE(588), + [sym__list_lower_roman_paren] = STATE(186), + [sym__list_item_lower_roman_paren] = STATE(590), + [sym__list_lower_roman_parens] = STATE(186), + [sym__list_item_lower_roman_parens] = STATE(591), + [sym__list_upper_roman_period] = STATE(186), + [sym__list_item_upper_roman_period] = STATE(592), + [sym__list_upper_roman_paren] = STATE(186), + [sym__list_item_upper_roman_paren] = STATE(596), + [sym__list_upper_roman_parens] = STATE(186), + [sym__list_item_upper_roman_parens] = STATE(597), + [sym_table] = STATE(230), + [sym__table_content] = STATE(64), + [sym_table_separator] = STATE(64), + [sym_table_row] = STATE(72), + [sym_footnote] = STATE(230), + [sym_footnote_marker_begin] = STATE(1084), + [sym_div] = STATE(230), + [sym_div_marker_begin] = STATE(996), + [sym_code_block] = STATE(230), + [sym_raw_block] = STATE(230), + [sym_thematic_break] = STATE(230), + [sym_block_quote] = STATE(230), + [sym__block_quote_prefix] = STATE(280), + [sym_link_reference_definition] = STATE(230), + [sym_block_attribute] = STATE(230), + [sym__paragraph] = STATE(230), + [sym__paragraph_content] = STATE(811), + [sym__inline] = STATE(710), + [sym__symbol_fallback] = STATE(355), [aux_sym__list_dash_repeat1] = STATE(415), - [aux_sym__list_plus_repeat1] = STATE(395), - [aux_sym__list_star_repeat1] = STATE(409), - [aux_sym__list_task_repeat1] = STATE(389), - [aux_sym__list_definition_repeat1] = STATE(531), - [aux_sym__list_decimal_period_repeat1] = STATE(530), - [aux_sym__list_decimal_paren_repeat1] = STATE(529), - [aux_sym__list_decimal_parens_repeat1] = STATE(527), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(526), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(525), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(524), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(523), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(522), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(521), - [aux_sym__list_lower_roman_period_repeat1] = STATE(520), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(519), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(518), - [aux_sym__list_upper_roman_period_repeat1] = STATE(517), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(516), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(515), - [aux_sym_table_repeat1] = STATE(65), - [aux_sym_footnote_content_repeat1] = STATE(28), - [aux_sym__block_quote_prefix_repeat1] = STATE(323), - [aux_sym__inline_repeat1] = STATE(366), - [anon_sym_LBRACK] = ACTIONS(221), - [anon_sym_PIPE] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(225), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__newline] = ACTIONS(227), - [sym__heading_begin] = ACTIONS(229), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(231), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(233), - [sym__block_quote_continuation] = ACTIONS(235), - [sym__thematic_break_dash] = ACTIONS(237), - [sym__thematic_break_star] = ACTIONS(237), - [sym__footnote_begin] = ACTIONS(239), - [sym__footnote_end] = ACTIONS(345), + [aux_sym__list_plus_repeat1] = STATE(406), + [aux_sym__list_star_repeat1] = STATE(408), + [aux_sym__list_task_repeat1] = STATE(391), + [aux_sym__list_definition_repeat1] = STATE(570), + [aux_sym__list_decimal_period_repeat1] = STATE(573), + [aux_sym__list_decimal_paren_repeat1] = STATE(575), + [aux_sym__list_decimal_parens_repeat1] = STATE(578), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(495), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(583), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(494), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(584), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(586), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(587), + [aux_sym__list_lower_roman_period_repeat1] = STATE(588), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(590), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(591), + [aux_sym__list_upper_roman_period_repeat1] = STATE(592), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(596), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(597), + [aux_sym_table_repeat1] = STATE(64), + [aux_sym_footnote_content_repeat1] = STATE(19), + [aux_sym__block_quote_prefix_repeat1] = STATE(302), + [aux_sym__inline_repeat1] = STATE(355), + [anon_sym_LBRACK] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(73), + [anon_sym_LBRACK_CARET] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DOT] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(13), + [aux_sym__inline_token1] = ACTIONS(13), + [anon_sym_LBRACE_DASH] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(13), + [anon_sym_PERCENT] = ACTIONS(13), + [sym__block_close] = ACTIONS(242), + [sym__newline] = ACTIONS(236), + [sym__heading_begin] = ACTIONS(19), + [sym__div_begin] = ACTIONS(21), + [sym__code_block_begin] = ACTIONS(81), + [sym_list_marker_dash] = ACTIONS(25), + [sym_list_marker_star] = ACTIONS(27), + [sym_list_marker_plus] = ACTIONS(29), + [sym__list_marker_task_begin] = ACTIONS(31), + [sym_list_marker_definition] = ACTIONS(33), + [sym_list_marker_decimal_period] = ACTIONS(35), + [sym_list_marker_lower_alpha_period] = ACTIONS(37), + [sym_list_marker_upper_alpha_period] = ACTIONS(39), + [sym_list_marker_lower_roman_period] = ACTIONS(41), + [sym_list_marker_upper_roman_period] = ACTIONS(43), + [sym_list_marker_decimal_paren] = ACTIONS(45), + [sym_list_marker_lower_alpha_paren] = ACTIONS(47), + [sym_list_marker_upper_alpha_paren] = ACTIONS(49), + [sym_list_marker_lower_roman_paren] = ACTIONS(51), + [sym_list_marker_upper_roman_paren] = ACTIONS(53), + [sym_list_marker_decimal_parens] = ACTIONS(55), + [sym_list_marker_lower_alpha_parens] = ACTIONS(57), + [sym_list_marker_upper_alpha_parens] = ACTIONS(59), + [sym_list_marker_lower_roman_parens] = ACTIONS(61), + [sym_list_marker_upper_roman_parens] = ACTIONS(63), + [sym__block_quote_begin] = ACTIONS(83), + [sym__block_quote_continuation] = ACTIONS(238), + [sym__thematic_break_dash] = ACTIONS(85), + [sym__thematic_break_star] = ACTIONS(85), }, [16] = { - [sym__block_with_heading] = STATE(226), - [sym__block_element] = STATE(226), - [sym_heading] = STATE(226), - [sym_list] = STATE(226), - [sym__list_dash] = STATE(141), - [sym__list_item_dash] = STATE(416), - [sym__list_plus] = STATE(141), - [sym__list_item_plus] = STATE(419), - [sym__list_star] = STATE(141), + [sym__block_with_heading] = STATE(167), + [sym__block_element] = STATE(167), + [sym_heading] = STATE(167), + [sym_list] = STATE(167), + [sym__list_dash] = STATE(153), + [sym__list_item_dash] = STATE(409), + [sym__list_plus] = STATE(153), + [sym__list_item_plus] = STATE(410), + [sym__list_star] = STATE(153), [sym__list_item_star] = STATE(407), - [sym__list_task] = STATE(141), - [sym__list_item_task] = STATE(371), + [sym__list_task] = STATE(153), + [sym__list_item_task] = STATE(396), [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(141), - [sym__list_item_definition] = STATE(549), - [sym__list_decimal_period] = STATE(141), - [sym__list_item_decimal_period] = STATE(548), - [sym__list_decimal_paren] = STATE(141), - [sym__list_item_decimal_paren] = STATE(547), - [sym__list_decimal_parens] = STATE(141), - [sym__list_item_decimal_parens] = STATE(546), - [sym__list_lower_alpha_period] = STATE(141), - [sym__list_item_lower_alpha_period] = STATE(545), - [sym__list_lower_alpha_paren] = STATE(141), - [sym__list_item_lower_alpha_paren] = STATE(544), - [sym__list_lower_alpha_parens] = STATE(141), - [sym__list_item_lower_alpha_parens] = STATE(543), - [sym__list_upper_alpha_period] = STATE(141), - [sym__list_item_upper_alpha_period] = STATE(542), - [sym__list_upper_alpha_paren] = STATE(141), - [sym__list_item_upper_alpha_paren] = STATE(541), - [sym__list_upper_alpha_parens] = STATE(141), - [sym__list_item_upper_alpha_parens] = STATE(540), - [sym__list_lower_roman_period] = STATE(141), - [sym__list_item_lower_roman_period] = STATE(539), - [sym__list_lower_roman_paren] = STATE(141), - [sym__list_item_lower_roman_paren] = STATE(538), - [sym__list_lower_roman_parens] = STATE(141), - [sym__list_item_lower_roman_parens] = STATE(537), - [sym__list_upper_roman_period] = STATE(141), - [sym__list_item_upper_roman_period] = STATE(536), - [sym__list_upper_roman_paren] = STATE(141), - [sym__list_item_upper_roman_paren] = STATE(535), - [sym__list_upper_roman_parens] = STATE(141), - [sym__list_item_upper_roman_parens] = STATE(534), - [sym_table] = STATE(226), + [sym__list_definition] = STATE(153), + [sym__list_item_definition] = STATE(602), + [sym__list_decimal_period] = STATE(153), + [sym__list_item_decimal_period] = STATE(603), + [sym__list_decimal_paren] = STATE(153), + [sym__list_item_decimal_paren] = STATE(604), + [sym__list_decimal_parens] = STATE(153), + [sym__list_item_decimal_parens] = STATE(605), + [sym__list_lower_alpha_period] = STATE(153), + [sym__list_item_lower_alpha_period] = STATE(606), + [sym__list_lower_alpha_paren] = STATE(153), + [sym__list_item_lower_alpha_paren] = STATE(607), + [sym__list_lower_alpha_parens] = STATE(153), + [sym__list_item_lower_alpha_parens] = STATE(608), + [sym__list_upper_alpha_period] = STATE(153), + [sym__list_item_upper_alpha_period] = STATE(609), + [sym__list_upper_alpha_paren] = STATE(153), + [sym__list_item_upper_alpha_paren] = STATE(610), + [sym__list_upper_alpha_parens] = STATE(153), + [sym__list_item_upper_alpha_parens] = STATE(611), + [sym__list_lower_roman_period] = STATE(153), + [sym__list_item_lower_roman_period] = STATE(612), + [sym__list_lower_roman_paren] = STATE(153), + [sym__list_item_lower_roman_paren] = STATE(613), + [sym__list_lower_roman_parens] = STATE(153), + [sym__list_item_lower_roman_parens] = STATE(595), + [sym__list_upper_roman_period] = STATE(153), + [sym__list_item_upper_roman_period] = STATE(581), + [sym__list_upper_roman_paren] = STATE(153), + [sym__list_item_upper_roman_paren] = STATE(559), + [sym__list_upper_roman_parens] = STATE(153), + [sym__list_item_upper_roman_parens] = STATE(558), + [sym_table] = STATE(167), [sym__table_content] = STATE(66), [sym_table_separator] = STATE(66), - [sym_table_row] = STATE(72), - [sym_footnote] = STATE(226), - [sym_div] = STATE(226), - [sym_div_marker_begin] = STATE(985), - [sym_code_block] = STATE(226), - [sym_raw_block] = STATE(226), - [sym_thematic_break] = STATE(226), - [sym_block_quote] = STATE(226), - [sym__block_quote_prefix] = STATE(282), - [sym_link_reference_definition] = STATE(226), - [sym_block_attribute] = STATE(226), - [sym__paragraph] = STATE(226), - [sym__paragraph_content] = STATE(801), - [sym__inline] = STATE(703), - [sym__symbol_fallback] = STATE(366), - [aux_sym__list_dash_repeat1] = STATE(416), - [aux_sym__list_plus_repeat1] = STATE(419), + [sym_table_row] = STATE(71), + [sym_footnote] = STATE(167), + [sym_footnote_marker_begin] = STATE(1086), + [sym_footnote_content] = STATE(935), + [sym_div] = STATE(167), + [sym_div_marker_begin] = STATE(1017), + [sym_code_block] = STATE(167), + [sym_raw_block] = STATE(167), + [sym_thematic_break] = STATE(167), + [sym_block_quote] = STATE(167), + [sym__block_quote_prefix] = STATE(286), + [sym_link_reference_definition] = STATE(167), + [sym_block_attribute] = STATE(167), + [sym__paragraph] = STATE(167), + [sym__paragraph_content] = STATE(867), + [sym__inline] = STATE(710), + [sym__symbol_fallback] = STATE(355), + [aux_sym__list_dash_repeat1] = STATE(409), + [aux_sym__list_plus_repeat1] = STATE(410), [aux_sym__list_star_repeat1] = STATE(407), - [aux_sym__list_task_repeat1] = STATE(371), - [aux_sym__list_definition_repeat1] = STATE(549), - [aux_sym__list_decimal_period_repeat1] = STATE(548), - [aux_sym__list_decimal_paren_repeat1] = STATE(547), - [aux_sym__list_decimal_parens_repeat1] = STATE(546), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(545), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(544), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(543), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(542), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(541), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(540), - [aux_sym__list_lower_roman_period_repeat1] = STATE(539), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(538), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(537), - [aux_sym__list_upper_roman_period_repeat1] = STATE(536), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(535), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(534), + [aux_sym__list_task_repeat1] = STATE(396), + [aux_sym__list_definition_repeat1] = STATE(602), + [aux_sym__list_decimal_period_repeat1] = STATE(603), + [aux_sym__list_decimal_paren_repeat1] = STATE(604), + [aux_sym__list_decimal_parens_repeat1] = STATE(605), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(606), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(607), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(608), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(609), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(610), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(611), + [aux_sym__list_lower_roman_period_repeat1] = STATE(612), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(613), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(595), + [aux_sym__list_upper_roman_period_repeat1] = STATE(581), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(559), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(558), [aux_sym_table_repeat1] = STATE(66), - [aux_sym_footnote_content_repeat1] = STATE(12), - [aux_sym__block_quote_prefix_repeat1] = STATE(307), - [aux_sym__inline_repeat1] = STATE(366), - [anon_sym_LBRACK] = ACTIONS(197), - [anon_sym_PIPE] = ACTIONS(199), - [anon_sym_LBRACE] = ACTIONS(201), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__block_close] = ACTIONS(347), - [sym__newline] = ACTIONS(341), - [sym__heading_begin] = ACTIONS(17), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(207), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(209), - [sym__block_quote_continuation] = ACTIONS(343), - [sym__thematic_break_dash] = ACTIONS(211), - [sym__thematic_break_star] = ACTIONS(211), - [sym__footnote_begin] = ACTIONS(213), + [aux_sym_footnote_content_repeat1] = STATE(22), + [aux_sym__block_quote_prefix_repeat1] = STATE(316), + [aux_sym__inline_repeat1] = STATE(355), + [anon_sym_LBRACK] = ACTIONS(216), + [anon_sym_PIPE] = ACTIONS(218), + [anon_sym_LBRACK_CARET] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(220), + [anon_sym_DOT] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(13), + [aux_sym__inline_token1] = ACTIONS(13), + [anon_sym_LBRACE_DASH] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(13), + [anon_sym_PERCENT] = ACTIONS(13), + [sym__newline] = ACTIONS(222), + [sym__heading_begin] = ACTIONS(224), + [sym__div_begin] = ACTIONS(21), + [sym__code_block_begin] = ACTIONS(226), + [sym_list_marker_dash] = ACTIONS(25), + [sym_list_marker_star] = ACTIONS(27), + [sym_list_marker_plus] = ACTIONS(29), + [sym__list_marker_task_begin] = ACTIONS(31), + [sym_list_marker_definition] = ACTIONS(33), + [sym_list_marker_decimal_period] = ACTIONS(35), + [sym_list_marker_lower_alpha_period] = ACTIONS(37), + [sym_list_marker_upper_alpha_period] = ACTIONS(39), + [sym_list_marker_lower_roman_period] = ACTIONS(41), + [sym_list_marker_upper_roman_period] = ACTIONS(43), + [sym_list_marker_decimal_paren] = ACTIONS(45), + [sym_list_marker_lower_alpha_paren] = ACTIONS(47), + [sym_list_marker_upper_alpha_paren] = ACTIONS(49), + [sym_list_marker_lower_roman_paren] = ACTIONS(51), + [sym_list_marker_upper_roman_paren] = ACTIONS(53), + [sym_list_marker_decimal_parens] = ACTIONS(55), + [sym_list_marker_lower_alpha_parens] = ACTIONS(57), + [sym_list_marker_upper_alpha_parens] = ACTIONS(59), + [sym_list_marker_lower_roman_parens] = ACTIONS(61), + [sym_list_marker_upper_roman_parens] = ACTIONS(63), + [sym__block_quote_begin] = ACTIONS(228), + [sym__block_quote_continuation] = ACTIONS(230), + [sym__thematic_break_dash] = ACTIONS(232), + [sym__thematic_break_star] = ACTIONS(232), }, [17] = { - [sym__block_with_heading] = STATE(226), - [sym__block_element] = STATE(226), - [sym_heading] = STATE(226), - [sym_list] = STATE(226), - [sym__list_dash] = STATE(141), - [sym__list_item_dash] = STATE(416), - [sym__list_plus] = STATE(141), - [sym__list_item_plus] = STATE(419), - [sym__list_star] = STATE(141), - [sym__list_item_star] = STATE(407), - [sym__list_task] = STATE(141), - [sym__list_item_task] = STATE(371), + [sym__block_with_heading] = STATE(230), + [sym__block_element] = STATE(230), + [sym_heading] = STATE(230), + [sym_list] = STATE(230), + [sym__list_dash] = STATE(186), + [sym__list_item_dash] = STATE(415), + [sym__list_plus] = STATE(186), + [sym__list_item_plus] = STATE(406), + [sym__list_star] = STATE(186), + [sym__list_item_star] = STATE(408), + [sym__list_task] = STATE(186), + [sym__list_item_task] = STATE(391), [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(141), - [sym__list_item_definition] = STATE(549), - [sym__list_decimal_period] = STATE(141), - [sym__list_item_decimal_period] = STATE(548), - [sym__list_decimal_paren] = STATE(141), - [sym__list_item_decimal_paren] = STATE(547), - [sym__list_decimal_parens] = STATE(141), - [sym__list_item_decimal_parens] = STATE(546), - [sym__list_lower_alpha_period] = STATE(141), - [sym__list_item_lower_alpha_period] = STATE(545), - [sym__list_lower_alpha_paren] = STATE(141), - [sym__list_item_lower_alpha_paren] = STATE(544), - [sym__list_lower_alpha_parens] = STATE(141), - [sym__list_item_lower_alpha_parens] = STATE(543), - [sym__list_upper_alpha_period] = STATE(141), - [sym__list_item_upper_alpha_period] = STATE(542), - [sym__list_upper_alpha_paren] = STATE(141), - [sym__list_item_upper_alpha_paren] = STATE(541), - [sym__list_upper_alpha_parens] = STATE(141), - [sym__list_item_upper_alpha_parens] = STATE(540), - [sym__list_lower_roman_period] = STATE(141), - [sym__list_item_lower_roman_period] = STATE(539), - [sym__list_lower_roman_paren] = STATE(141), - [sym__list_item_lower_roman_paren] = STATE(538), - [sym__list_lower_roman_parens] = STATE(141), - [sym__list_item_lower_roman_parens] = STATE(537), - [sym__list_upper_roman_period] = STATE(141), - [sym__list_item_upper_roman_period] = STATE(536), - [sym__list_upper_roman_paren] = STATE(141), - [sym__list_item_upper_roman_paren] = STATE(535), - [sym__list_upper_roman_parens] = STATE(141), - [sym__list_item_upper_roman_parens] = STATE(534), - [sym_table] = STATE(226), - [sym__table_content] = STATE(66), - [sym_table_separator] = STATE(66), + [sym__list_definition] = STATE(186), + [sym__list_item_definition] = STATE(570), + [sym__list_decimal_period] = STATE(186), + [sym__list_item_decimal_period] = STATE(573), + [sym__list_decimal_paren] = STATE(186), + [sym__list_item_decimal_paren] = STATE(575), + [sym__list_decimal_parens] = STATE(186), + [sym__list_item_decimal_parens] = STATE(578), + [sym__list_lower_alpha_period] = STATE(186), + [sym__list_item_lower_alpha_period] = STATE(495), + [sym__list_lower_alpha_paren] = STATE(186), + [sym__list_item_lower_alpha_paren] = STATE(583), + [sym__list_lower_alpha_parens] = STATE(186), + [sym__list_item_lower_alpha_parens] = STATE(494), + [sym__list_upper_alpha_period] = STATE(186), + [sym__list_item_upper_alpha_period] = STATE(584), + [sym__list_upper_alpha_paren] = STATE(186), + [sym__list_item_upper_alpha_paren] = STATE(586), + [sym__list_upper_alpha_parens] = STATE(186), + [sym__list_item_upper_alpha_parens] = STATE(587), + [sym__list_lower_roman_period] = STATE(186), + [sym__list_item_lower_roman_period] = STATE(588), + [sym__list_lower_roman_paren] = STATE(186), + [sym__list_item_lower_roman_paren] = STATE(590), + [sym__list_lower_roman_parens] = STATE(186), + [sym__list_item_lower_roman_parens] = STATE(591), + [sym__list_upper_roman_period] = STATE(186), + [sym__list_item_upper_roman_period] = STATE(592), + [sym__list_upper_roman_paren] = STATE(186), + [sym__list_item_upper_roman_paren] = STATE(596), + [sym__list_upper_roman_parens] = STATE(186), + [sym__list_item_upper_roman_parens] = STATE(597), + [sym_table] = STATE(230), + [sym__table_content] = STATE(64), + [sym_table_separator] = STATE(64), [sym_table_row] = STATE(72), - [sym_footnote] = STATE(226), - [sym_div] = STATE(226), - [sym_div_marker_begin] = STATE(985), - [sym_code_block] = STATE(226), - [sym_raw_block] = STATE(226), - [sym_thematic_break] = STATE(226), - [sym_block_quote] = STATE(226), - [sym__block_quote_prefix] = STATE(279), - [sym_link_reference_definition] = STATE(226), - [sym_block_attribute] = STATE(226), - [sym__paragraph] = STATE(226), - [sym__paragraph_content] = STATE(801), - [sym__inline] = STATE(703), - [sym__symbol_fallback] = STATE(366), - [aux_sym__list_dash_repeat1] = STATE(416), - [aux_sym__list_plus_repeat1] = STATE(419), - [aux_sym__list_star_repeat1] = STATE(407), - [aux_sym__list_task_repeat1] = STATE(371), - [aux_sym__list_definition_repeat1] = STATE(549), - [aux_sym__list_decimal_period_repeat1] = STATE(548), - [aux_sym__list_decimal_paren_repeat1] = STATE(547), - [aux_sym__list_decimal_parens_repeat1] = STATE(546), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(545), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(544), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(543), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(542), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(541), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(540), - [aux_sym__list_lower_roman_period_repeat1] = STATE(539), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(538), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(537), - [aux_sym__list_upper_roman_period_repeat1] = STATE(536), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(535), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(534), - [aux_sym_table_repeat1] = STATE(66), - [aux_sym_footnote_content_repeat1] = STATE(18), - [aux_sym__block_quote_prefix_repeat1] = STATE(307), - [aux_sym__inline_repeat1] = STATE(366), - [anon_sym_LBRACK] = ACTIONS(197), - [anon_sym_PIPE] = ACTIONS(199), - [anon_sym_LBRACE] = ACTIONS(201), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__block_close] = ACTIONS(349), - [sym__newline] = ACTIONS(341), - [sym__heading_begin] = ACTIONS(17), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(207), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(209), - [sym__block_quote_continuation] = ACTIONS(343), - [sym__thematic_break_dash] = ACTIONS(211), - [sym__thematic_break_star] = ACTIONS(211), - [sym__footnote_begin] = ACTIONS(213), + [sym_footnote] = STATE(230), + [sym_footnote_marker_begin] = STATE(1084), + [sym_div] = STATE(230), + [sym_div_marker_begin] = STATE(996), + [sym_code_block] = STATE(230), + [sym_raw_block] = STATE(230), + [sym_thematic_break] = STATE(230), + [sym_block_quote] = STATE(230), + [sym__block_quote_prefix] = STATE(283), + [sym_link_reference_definition] = STATE(230), + [sym_block_attribute] = STATE(230), + [sym__paragraph] = STATE(230), + [sym__paragraph_content] = STATE(811), + [sym__inline] = STATE(710), + [sym__symbol_fallback] = STATE(355), + [aux_sym__list_dash_repeat1] = STATE(415), + [aux_sym__list_plus_repeat1] = STATE(406), + [aux_sym__list_star_repeat1] = STATE(408), + [aux_sym__list_task_repeat1] = STATE(391), + [aux_sym__list_definition_repeat1] = STATE(570), + [aux_sym__list_decimal_period_repeat1] = STATE(573), + [aux_sym__list_decimal_paren_repeat1] = STATE(575), + [aux_sym__list_decimal_parens_repeat1] = STATE(578), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(495), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(583), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(494), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(584), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(586), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(587), + [aux_sym__list_lower_roman_period_repeat1] = STATE(588), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(590), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(591), + [aux_sym__list_upper_roman_period_repeat1] = STATE(592), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(596), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(597), + [aux_sym_table_repeat1] = STATE(64), + [aux_sym_footnote_content_repeat1] = STATE(19), + [aux_sym__block_quote_prefix_repeat1] = STATE(302), + [aux_sym__inline_repeat1] = STATE(355), + [anon_sym_LBRACK] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(73), + [anon_sym_LBRACK_CARET] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DOT] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(13), + [aux_sym__inline_token1] = ACTIONS(13), + [anon_sym_LBRACE_DASH] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(13), + [anon_sym_PERCENT] = ACTIONS(13), + [sym__block_close] = ACTIONS(244), + [sym__newline] = ACTIONS(236), + [sym__heading_begin] = ACTIONS(19), + [sym__div_begin] = ACTIONS(21), + [sym__code_block_begin] = ACTIONS(81), + [sym_list_marker_dash] = ACTIONS(25), + [sym_list_marker_star] = ACTIONS(27), + [sym_list_marker_plus] = ACTIONS(29), + [sym__list_marker_task_begin] = ACTIONS(31), + [sym_list_marker_definition] = ACTIONS(33), + [sym_list_marker_decimal_period] = ACTIONS(35), + [sym_list_marker_lower_alpha_period] = ACTIONS(37), + [sym_list_marker_upper_alpha_period] = ACTIONS(39), + [sym_list_marker_lower_roman_period] = ACTIONS(41), + [sym_list_marker_upper_roman_period] = ACTIONS(43), + [sym_list_marker_decimal_paren] = ACTIONS(45), + [sym_list_marker_lower_alpha_paren] = ACTIONS(47), + [sym_list_marker_upper_alpha_paren] = ACTIONS(49), + [sym_list_marker_lower_roman_paren] = ACTIONS(51), + [sym_list_marker_upper_roman_paren] = ACTIONS(53), + [sym_list_marker_decimal_parens] = ACTIONS(55), + [sym_list_marker_lower_alpha_parens] = ACTIONS(57), + [sym_list_marker_upper_alpha_parens] = ACTIONS(59), + [sym_list_marker_lower_roman_parens] = ACTIONS(61), + [sym_list_marker_upper_roman_parens] = ACTIONS(63), + [sym__block_quote_begin] = ACTIONS(83), + [sym__block_quote_continuation] = ACTIONS(238), + [sym__thematic_break_dash] = ACTIONS(85), + [sym__thematic_break_star] = ACTIONS(85), }, [18] = { - [sym__block_with_heading] = STATE(226), - [sym__block_element] = STATE(226), - [sym_heading] = STATE(226), - [sym_list] = STATE(226), - [sym__list_dash] = STATE(141), - [sym__list_item_dash] = STATE(416), - [sym__list_plus] = STATE(141), - [sym__list_item_plus] = STATE(419), - [sym__list_star] = STATE(141), - [sym__list_item_star] = STATE(407), - [sym__list_task] = STATE(141), - [sym__list_item_task] = STATE(371), + [sym__block_with_heading] = STATE(230), + [sym__block_element] = STATE(230), + [sym_heading] = STATE(230), + [sym_list] = STATE(230), + [sym__list_dash] = STATE(186), + [sym__list_item_dash] = STATE(415), + [sym__list_plus] = STATE(186), + [sym__list_item_plus] = STATE(406), + [sym__list_star] = STATE(186), + [sym__list_item_star] = STATE(408), + [sym__list_task] = STATE(186), + [sym__list_item_task] = STATE(391), [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(141), - [sym__list_item_definition] = STATE(549), - [sym__list_decimal_period] = STATE(141), - [sym__list_item_decimal_period] = STATE(548), - [sym__list_decimal_paren] = STATE(141), - [sym__list_item_decimal_paren] = STATE(547), - [sym__list_decimal_parens] = STATE(141), - [sym__list_item_decimal_parens] = STATE(546), - [sym__list_lower_alpha_period] = STATE(141), - [sym__list_item_lower_alpha_period] = STATE(545), - [sym__list_lower_alpha_paren] = STATE(141), - [sym__list_item_lower_alpha_paren] = STATE(544), - [sym__list_lower_alpha_parens] = STATE(141), - [sym__list_item_lower_alpha_parens] = STATE(543), - [sym__list_upper_alpha_period] = STATE(141), - [sym__list_item_upper_alpha_period] = STATE(542), - [sym__list_upper_alpha_paren] = STATE(141), - [sym__list_item_upper_alpha_paren] = STATE(541), - [sym__list_upper_alpha_parens] = STATE(141), - [sym__list_item_upper_alpha_parens] = STATE(540), - [sym__list_lower_roman_period] = STATE(141), - [sym__list_item_lower_roman_period] = STATE(539), - [sym__list_lower_roman_paren] = STATE(141), - [sym__list_item_lower_roman_paren] = STATE(538), - [sym__list_lower_roman_parens] = STATE(141), - [sym__list_item_lower_roman_parens] = STATE(537), - [sym__list_upper_roman_period] = STATE(141), - [sym__list_item_upper_roman_period] = STATE(536), - [sym__list_upper_roman_paren] = STATE(141), - [sym__list_item_upper_roman_paren] = STATE(535), - [sym__list_upper_roman_parens] = STATE(141), - [sym__list_item_upper_roman_parens] = STATE(534), - [sym_table] = STATE(226), - [sym__table_content] = STATE(66), - [sym_table_separator] = STATE(66), + [sym__list_definition] = STATE(186), + [sym__list_item_definition] = STATE(570), + [sym__list_decimal_period] = STATE(186), + [sym__list_item_decimal_period] = STATE(573), + [sym__list_decimal_paren] = STATE(186), + [sym__list_item_decimal_paren] = STATE(575), + [sym__list_decimal_parens] = STATE(186), + [sym__list_item_decimal_parens] = STATE(578), + [sym__list_lower_alpha_period] = STATE(186), + [sym__list_item_lower_alpha_period] = STATE(495), + [sym__list_lower_alpha_paren] = STATE(186), + [sym__list_item_lower_alpha_paren] = STATE(583), + [sym__list_lower_alpha_parens] = STATE(186), + [sym__list_item_lower_alpha_parens] = STATE(494), + [sym__list_upper_alpha_period] = STATE(186), + [sym__list_item_upper_alpha_period] = STATE(584), + [sym__list_upper_alpha_paren] = STATE(186), + [sym__list_item_upper_alpha_paren] = STATE(586), + [sym__list_upper_alpha_parens] = STATE(186), + [sym__list_item_upper_alpha_parens] = STATE(587), + [sym__list_lower_roman_period] = STATE(186), + [sym__list_item_lower_roman_period] = STATE(588), + [sym__list_lower_roman_paren] = STATE(186), + [sym__list_item_lower_roman_paren] = STATE(590), + [sym__list_lower_roman_parens] = STATE(186), + [sym__list_item_lower_roman_parens] = STATE(591), + [sym__list_upper_roman_period] = STATE(186), + [sym__list_item_upper_roman_period] = STATE(592), + [sym__list_upper_roman_paren] = STATE(186), + [sym__list_item_upper_roman_paren] = STATE(596), + [sym__list_upper_roman_parens] = STATE(186), + [sym__list_item_upper_roman_parens] = STATE(597), + [sym_table] = STATE(230), + [sym__table_content] = STATE(64), + [sym_table_separator] = STATE(64), [sym_table_row] = STATE(72), - [sym_footnote] = STATE(226), - [sym_div] = STATE(226), - [sym_div_marker_begin] = STATE(985), - [sym_code_block] = STATE(226), - [sym_raw_block] = STATE(226), - [sym_thematic_break] = STATE(226), - [sym_block_quote] = STATE(226), + [sym_footnote] = STATE(230), + [sym_footnote_marker_begin] = STATE(1084), + [sym_div] = STATE(230), + [sym_div_marker_begin] = STATE(996), + [sym_code_block] = STATE(230), + [sym_raw_block] = STATE(230), + [sym_thematic_break] = STATE(230), + [sym_block_quote] = STATE(230), [sym__block_quote_prefix] = STATE(278), - [sym_link_reference_definition] = STATE(226), - [sym_block_attribute] = STATE(226), - [sym__paragraph] = STATE(226), - [sym__paragraph_content] = STATE(801), - [sym__inline] = STATE(703), - [sym__symbol_fallback] = STATE(366), - [aux_sym__list_dash_repeat1] = STATE(416), - [aux_sym__list_plus_repeat1] = STATE(419), - [aux_sym__list_star_repeat1] = STATE(407), - [aux_sym__list_task_repeat1] = STATE(371), - [aux_sym__list_definition_repeat1] = STATE(549), - [aux_sym__list_decimal_period_repeat1] = STATE(548), - [aux_sym__list_decimal_paren_repeat1] = STATE(547), - [aux_sym__list_decimal_parens_repeat1] = STATE(546), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(545), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(544), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(543), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(542), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(541), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(540), - [aux_sym__list_lower_roman_period_repeat1] = STATE(539), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(538), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(537), - [aux_sym__list_upper_roman_period_repeat1] = STATE(536), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(535), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(534), - [aux_sym_table_repeat1] = STATE(66), - [aux_sym_footnote_content_repeat1] = STATE(12), - [aux_sym__block_quote_prefix_repeat1] = STATE(307), - [aux_sym__inline_repeat1] = STATE(366), - [anon_sym_LBRACK] = ACTIONS(197), - [anon_sym_PIPE] = ACTIONS(199), - [anon_sym_LBRACE] = ACTIONS(201), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__block_close] = ACTIONS(351), - [sym__newline] = ACTIONS(341), - [sym__heading_begin] = ACTIONS(17), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(207), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(209), - [sym__block_quote_continuation] = ACTIONS(343), - [sym__thematic_break_dash] = ACTIONS(211), - [sym__thematic_break_star] = ACTIONS(211), - [sym__footnote_begin] = ACTIONS(213), + [sym_link_reference_definition] = STATE(230), + [sym_block_attribute] = STATE(230), + [sym__paragraph] = STATE(230), + [sym__paragraph_content] = STATE(811), + [sym__inline] = STATE(710), + [sym__symbol_fallback] = STATE(355), + [aux_sym__list_dash_repeat1] = STATE(415), + [aux_sym__list_plus_repeat1] = STATE(406), + [aux_sym__list_star_repeat1] = STATE(408), + [aux_sym__list_task_repeat1] = STATE(391), + [aux_sym__list_definition_repeat1] = STATE(570), + [aux_sym__list_decimal_period_repeat1] = STATE(573), + [aux_sym__list_decimal_paren_repeat1] = STATE(575), + [aux_sym__list_decimal_parens_repeat1] = STATE(578), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(495), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(583), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(494), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(584), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(586), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(587), + [aux_sym__list_lower_roman_period_repeat1] = STATE(588), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(590), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(591), + [aux_sym__list_upper_roman_period_repeat1] = STATE(592), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(596), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(597), + [aux_sym_table_repeat1] = STATE(64), + [aux_sym_footnote_content_repeat1] = STATE(21), + [aux_sym__block_quote_prefix_repeat1] = STATE(302), + [aux_sym__inline_repeat1] = STATE(355), + [anon_sym_LBRACK] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(73), + [anon_sym_LBRACK_CARET] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DOT] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(13), + [aux_sym__inline_token1] = ACTIONS(13), + [anon_sym_LBRACE_DASH] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(13), + [anon_sym_PERCENT] = ACTIONS(13), + [sym__block_close] = ACTIONS(246), + [sym__newline] = ACTIONS(236), + [sym__heading_begin] = ACTIONS(19), + [sym__div_begin] = ACTIONS(21), + [sym__code_block_begin] = ACTIONS(81), + [sym_list_marker_dash] = ACTIONS(25), + [sym_list_marker_star] = ACTIONS(27), + [sym_list_marker_plus] = ACTIONS(29), + [sym__list_marker_task_begin] = ACTIONS(31), + [sym_list_marker_definition] = ACTIONS(33), + [sym_list_marker_decimal_period] = ACTIONS(35), + [sym_list_marker_lower_alpha_period] = ACTIONS(37), + [sym_list_marker_upper_alpha_period] = ACTIONS(39), + [sym_list_marker_lower_roman_period] = ACTIONS(41), + [sym_list_marker_upper_roman_period] = ACTIONS(43), + [sym_list_marker_decimal_paren] = ACTIONS(45), + [sym_list_marker_lower_alpha_paren] = ACTIONS(47), + [sym_list_marker_upper_alpha_paren] = ACTIONS(49), + [sym_list_marker_lower_roman_paren] = ACTIONS(51), + [sym_list_marker_upper_roman_paren] = ACTIONS(53), + [sym_list_marker_decimal_parens] = ACTIONS(55), + [sym_list_marker_lower_alpha_parens] = ACTIONS(57), + [sym_list_marker_upper_alpha_parens] = ACTIONS(59), + [sym_list_marker_lower_roman_parens] = ACTIONS(61), + [sym_list_marker_upper_roman_parens] = ACTIONS(63), + [sym__block_quote_begin] = ACTIONS(83), + [sym__block_quote_continuation] = ACTIONS(238), + [sym__thematic_break_dash] = ACTIONS(85), + [sym__thematic_break_star] = ACTIONS(85), }, [19] = { - [sym__block_with_heading] = STATE(265), - [sym__block_element] = STATE(265), - [sym_heading] = STATE(265), - [sym_list] = STATE(265), - [sym__list_dash] = STATE(234), + [sym__block_with_heading] = STATE(230), + [sym__block_element] = STATE(230), + [sym_heading] = STATE(230), + [sym_list] = STATE(230), + [sym__list_dash] = STATE(186), [sym__list_item_dash] = STATE(415), - [sym__list_plus] = STATE(234), - [sym__list_item_plus] = STATE(395), - [sym__list_star] = STATE(234), - [sym__list_item_star] = STATE(409), - [sym__list_task] = STATE(234), - [sym__list_item_task] = STATE(389), + [sym__list_plus] = STATE(186), + [sym__list_item_plus] = STATE(406), + [sym__list_star] = STATE(186), + [sym__list_item_star] = STATE(408), + [sym__list_task] = STATE(186), + [sym__list_item_task] = STATE(391), [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(234), - [sym__list_item_definition] = STATE(531), - [sym__list_decimal_period] = STATE(234), - [sym__list_item_decimal_period] = STATE(530), - [sym__list_decimal_paren] = STATE(234), - [sym__list_item_decimal_paren] = STATE(529), - [sym__list_decimal_parens] = STATE(234), - [sym__list_item_decimal_parens] = STATE(527), - [sym__list_lower_alpha_period] = STATE(234), - [sym__list_item_lower_alpha_period] = STATE(526), - [sym__list_lower_alpha_paren] = STATE(234), - [sym__list_item_lower_alpha_paren] = STATE(525), - [sym__list_lower_alpha_parens] = STATE(234), - [sym__list_item_lower_alpha_parens] = STATE(524), - [sym__list_upper_alpha_period] = STATE(234), - [sym__list_item_upper_alpha_period] = STATE(523), - [sym__list_upper_alpha_paren] = STATE(234), - [sym__list_item_upper_alpha_paren] = STATE(522), - [sym__list_upper_alpha_parens] = STATE(234), - [sym__list_item_upper_alpha_parens] = STATE(521), - [sym__list_lower_roman_period] = STATE(234), - [sym__list_item_lower_roman_period] = STATE(520), - [sym__list_lower_roman_paren] = STATE(234), - [sym__list_item_lower_roman_paren] = STATE(519), - [sym__list_lower_roman_parens] = STATE(234), - [sym__list_item_lower_roman_parens] = STATE(518), - [sym__list_upper_roman_period] = STATE(234), - [sym__list_item_upper_roman_period] = STATE(517), - [sym__list_upper_roman_paren] = STATE(234), - [sym__list_item_upper_roman_paren] = STATE(516), - [sym__list_upper_roman_parens] = STATE(234), - [sym__list_item_upper_roman_parens] = STATE(515), - [sym_table] = STATE(265), - [sym__table_content] = STATE(65), - [sym_table_separator] = STATE(65), - [sym_table_row] = STATE(71), - [sym_footnote] = STATE(265), - [sym_footnote_content] = STATE(940), - [sym_div] = STATE(265), - [sym_div_marker_begin] = STATE(1006), - [sym_code_block] = STATE(265), - [sym_raw_block] = STATE(265), - [sym_thematic_break] = STATE(265), - [sym_block_quote] = STATE(265), - [sym__block_quote_prefix] = STATE(285), - [sym_link_reference_definition] = STATE(265), - [sym_block_attribute] = STATE(265), - [sym__paragraph] = STATE(265), - [sym__paragraph_content] = STATE(856), - [sym__inline] = STATE(703), - [sym__symbol_fallback] = STATE(366), + [sym__list_definition] = STATE(186), + [sym__list_item_definition] = STATE(570), + [sym__list_decimal_period] = STATE(186), + [sym__list_item_decimal_period] = STATE(573), + [sym__list_decimal_paren] = STATE(186), + [sym__list_item_decimal_paren] = STATE(575), + [sym__list_decimal_parens] = STATE(186), + [sym__list_item_decimal_parens] = STATE(578), + [sym__list_lower_alpha_period] = STATE(186), + [sym__list_item_lower_alpha_period] = STATE(495), + [sym__list_lower_alpha_paren] = STATE(186), + [sym__list_item_lower_alpha_paren] = STATE(583), + [sym__list_lower_alpha_parens] = STATE(186), + [sym__list_item_lower_alpha_parens] = STATE(494), + [sym__list_upper_alpha_period] = STATE(186), + [sym__list_item_upper_alpha_period] = STATE(584), + [sym__list_upper_alpha_paren] = STATE(186), + [sym__list_item_upper_alpha_paren] = STATE(586), + [sym__list_upper_alpha_parens] = STATE(186), + [sym__list_item_upper_alpha_parens] = STATE(587), + [sym__list_lower_roman_period] = STATE(186), + [sym__list_item_lower_roman_period] = STATE(588), + [sym__list_lower_roman_paren] = STATE(186), + [sym__list_item_lower_roman_paren] = STATE(590), + [sym__list_lower_roman_parens] = STATE(186), + [sym__list_item_lower_roman_parens] = STATE(591), + [sym__list_upper_roman_period] = STATE(186), + [sym__list_item_upper_roman_period] = STATE(592), + [sym__list_upper_roman_paren] = STATE(186), + [sym__list_item_upper_roman_paren] = STATE(596), + [sym__list_upper_roman_parens] = STATE(186), + [sym__list_item_upper_roman_parens] = STATE(597), + [sym_table] = STATE(230), + [sym__table_content] = STATE(64), + [sym_table_separator] = STATE(64), + [sym_table_row] = STATE(72), + [sym_footnote] = STATE(230), + [sym_footnote_marker_begin] = STATE(1084), + [sym_div] = STATE(230), + [sym_div_marker_begin] = STATE(996), + [sym_code_block] = STATE(230), + [sym_raw_block] = STATE(230), + [sym_thematic_break] = STATE(230), + [sym_block_quote] = STATE(230), + [sym__block_quote_prefix] = STATE(287), + [sym_link_reference_definition] = STATE(230), + [sym_block_attribute] = STATE(230), + [sym__paragraph] = STATE(230), + [sym__paragraph_content] = STATE(811), + [sym__inline] = STATE(710), + [sym__symbol_fallback] = STATE(355), [aux_sym__list_dash_repeat1] = STATE(415), - [aux_sym__list_plus_repeat1] = STATE(395), - [aux_sym__list_star_repeat1] = STATE(409), - [aux_sym__list_task_repeat1] = STATE(389), - [aux_sym__list_definition_repeat1] = STATE(531), - [aux_sym__list_decimal_period_repeat1] = STATE(530), - [aux_sym__list_decimal_paren_repeat1] = STATE(529), - [aux_sym__list_decimal_parens_repeat1] = STATE(527), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(526), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(525), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(524), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(523), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(522), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(521), - [aux_sym__list_lower_roman_period_repeat1] = STATE(520), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(519), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(518), - [aux_sym__list_upper_roman_period_repeat1] = STATE(517), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(516), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(515), - [aux_sym_table_repeat1] = STATE(65), - [aux_sym_footnote_content_repeat1] = STATE(15), - [aux_sym__block_quote_prefix_repeat1] = STATE(323), - [aux_sym__inline_repeat1] = STATE(366), - [anon_sym_LBRACK] = ACTIONS(221), - [anon_sym_PIPE] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(225), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__newline] = ACTIONS(227), - [sym__heading_begin] = ACTIONS(229), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(231), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(233), - [sym__block_quote_continuation] = ACTIONS(235), - [sym__thematic_break_dash] = ACTIONS(237), - [sym__thematic_break_star] = ACTIONS(237), - [sym__footnote_begin] = ACTIONS(239), + [aux_sym__list_plus_repeat1] = STATE(406), + [aux_sym__list_star_repeat1] = STATE(408), + [aux_sym__list_task_repeat1] = STATE(391), + [aux_sym__list_definition_repeat1] = STATE(570), + [aux_sym__list_decimal_period_repeat1] = STATE(573), + [aux_sym__list_decimal_paren_repeat1] = STATE(575), + [aux_sym__list_decimal_parens_repeat1] = STATE(578), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(495), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(583), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(494), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(584), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(586), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(587), + [aux_sym__list_lower_roman_period_repeat1] = STATE(588), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(590), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(591), + [aux_sym__list_upper_roman_period_repeat1] = STATE(592), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(596), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(597), + [aux_sym_table_repeat1] = STATE(64), + [aux_sym_footnote_content_repeat1] = STATE(19), + [aux_sym__block_quote_prefix_repeat1] = STATE(316), + [aux_sym__inline_repeat1] = STATE(355), + [anon_sym_LBRACK] = ACTIONS(248), + [anon_sym_PIPE] = ACTIONS(251), + [anon_sym_LBRACK_CARET] = ACTIONS(254), + [anon_sym_LBRACE] = ACTIONS(257), + [anon_sym_DOT] = ACTIONS(260), + [aux_sym_identifier_token1] = ACTIONS(260), + [aux_sym__inline_token1] = ACTIONS(260), + [anon_sym_LBRACE_DASH] = ACTIONS(260), + [anon_sym_POUND] = ACTIONS(260), + [anon_sym_PERCENT] = ACTIONS(260), + [sym__block_close] = ACTIONS(263), + [sym__newline] = ACTIONS(265), + [sym__heading_begin] = ACTIONS(268), + [sym__div_begin] = ACTIONS(271), + [sym__code_block_begin] = ACTIONS(274), + [sym_list_marker_dash] = ACTIONS(277), + [sym_list_marker_star] = ACTIONS(280), + [sym_list_marker_plus] = ACTIONS(283), + [sym__list_marker_task_begin] = ACTIONS(286), + [sym_list_marker_definition] = ACTIONS(289), + [sym_list_marker_decimal_period] = ACTIONS(292), + [sym_list_marker_lower_alpha_period] = ACTIONS(295), + [sym_list_marker_upper_alpha_period] = ACTIONS(298), + [sym_list_marker_lower_roman_period] = ACTIONS(301), + [sym_list_marker_upper_roman_period] = ACTIONS(304), + [sym_list_marker_decimal_paren] = ACTIONS(307), + [sym_list_marker_lower_alpha_paren] = ACTIONS(310), + [sym_list_marker_upper_alpha_paren] = ACTIONS(313), + [sym_list_marker_lower_roman_paren] = ACTIONS(316), + [sym_list_marker_upper_roman_paren] = ACTIONS(319), + [sym_list_marker_decimal_parens] = ACTIONS(322), + [sym_list_marker_lower_alpha_parens] = ACTIONS(325), + [sym_list_marker_upper_alpha_parens] = ACTIONS(328), + [sym_list_marker_lower_roman_parens] = ACTIONS(331), + [sym_list_marker_upper_roman_parens] = ACTIONS(334), + [sym__block_quote_begin] = ACTIONS(337), + [sym__block_quote_continuation] = ACTIONS(340), + [sym__thematic_break_dash] = ACTIONS(343), + [sym__thematic_break_star] = ACTIONS(343), }, [20] = { - [sym__block_with_heading] = STATE(226), - [sym__block_element] = STATE(226), - [sym_heading] = STATE(226), - [sym_list] = STATE(226), - [sym__list_dash] = STATE(141), - [sym__list_item_dash] = STATE(416), - [sym__list_plus] = STATE(141), - [sym__list_item_plus] = STATE(419), - [sym__list_star] = STATE(141), + [sym__block_with_heading] = STATE(167), + [sym__block_element] = STATE(167), + [sym_heading] = STATE(167), + [sym_list] = STATE(167), + [sym__list_dash] = STATE(153), + [sym__list_item_dash] = STATE(409), + [sym__list_plus] = STATE(153), + [sym__list_item_plus] = STATE(410), + [sym__list_star] = STATE(153), [sym__list_item_star] = STATE(407), - [sym__list_task] = STATE(141), - [sym__list_item_task] = STATE(371), + [sym__list_task] = STATE(153), + [sym__list_item_task] = STATE(396), [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(141), - [sym__list_item_definition] = STATE(549), - [sym__list_decimal_period] = STATE(141), - [sym__list_item_decimal_period] = STATE(548), - [sym__list_decimal_paren] = STATE(141), - [sym__list_item_decimal_paren] = STATE(547), - [sym__list_decimal_parens] = STATE(141), - [sym__list_item_decimal_parens] = STATE(546), - [sym__list_lower_alpha_period] = STATE(141), - [sym__list_item_lower_alpha_period] = STATE(545), - [sym__list_lower_alpha_paren] = STATE(141), - [sym__list_item_lower_alpha_paren] = STATE(544), - [sym__list_lower_alpha_parens] = STATE(141), - [sym__list_item_lower_alpha_parens] = STATE(543), - [sym__list_upper_alpha_period] = STATE(141), - [sym__list_item_upper_alpha_period] = STATE(542), - [sym__list_upper_alpha_paren] = STATE(141), - [sym__list_item_upper_alpha_paren] = STATE(541), - [sym__list_upper_alpha_parens] = STATE(141), - [sym__list_item_upper_alpha_parens] = STATE(540), - [sym__list_lower_roman_period] = STATE(141), - [sym__list_item_lower_roman_period] = STATE(539), - [sym__list_lower_roman_paren] = STATE(141), - [sym__list_item_lower_roman_paren] = STATE(538), - [sym__list_lower_roman_parens] = STATE(141), - [sym__list_item_lower_roman_parens] = STATE(537), - [sym__list_upper_roman_period] = STATE(141), - [sym__list_item_upper_roman_period] = STATE(536), - [sym__list_upper_roman_paren] = STATE(141), - [sym__list_item_upper_roman_paren] = STATE(535), - [sym__list_upper_roman_parens] = STATE(141), - [sym__list_item_upper_roman_parens] = STATE(534), - [sym_table] = STATE(226), + [sym__list_definition] = STATE(153), + [sym__list_item_definition] = STATE(602), + [sym__list_decimal_period] = STATE(153), + [sym__list_item_decimal_period] = STATE(603), + [sym__list_decimal_paren] = STATE(153), + [sym__list_item_decimal_paren] = STATE(604), + [sym__list_decimal_parens] = STATE(153), + [sym__list_item_decimal_parens] = STATE(605), + [sym__list_lower_alpha_period] = STATE(153), + [sym__list_item_lower_alpha_period] = STATE(606), + [sym__list_lower_alpha_paren] = STATE(153), + [sym__list_item_lower_alpha_paren] = STATE(607), + [sym__list_lower_alpha_parens] = STATE(153), + [sym__list_item_lower_alpha_parens] = STATE(608), + [sym__list_upper_alpha_period] = STATE(153), + [sym__list_item_upper_alpha_period] = STATE(609), + [sym__list_upper_alpha_paren] = STATE(153), + [sym__list_item_upper_alpha_paren] = STATE(610), + [sym__list_upper_alpha_parens] = STATE(153), + [sym__list_item_upper_alpha_parens] = STATE(611), + [sym__list_lower_roman_period] = STATE(153), + [sym__list_item_lower_roman_period] = STATE(612), + [sym__list_lower_roman_paren] = STATE(153), + [sym__list_item_lower_roman_paren] = STATE(613), + [sym__list_lower_roman_parens] = STATE(153), + [sym__list_item_lower_roman_parens] = STATE(595), + [sym__list_upper_roman_period] = STATE(153), + [sym__list_item_upper_roman_period] = STATE(581), + [sym__list_upper_roman_paren] = STATE(153), + [sym__list_item_upper_roman_paren] = STATE(559), + [sym__list_upper_roman_parens] = STATE(153), + [sym__list_item_upper_roman_parens] = STATE(558), + [sym_table] = STATE(167), [sym__table_content] = STATE(66), [sym_table_separator] = STATE(66), - [sym_table_row] = STATE(72), - [sym_footnote] = STATE(226), - [sym_div] = STATE(226), - [sym_div_marker_begin] = STATE(985), - [sym_code_block] = STATE(226), - [sym_raw_block] = STATE(226), - [sym_thematic_break] = STATE(226), - [sym_block_quote] = STATE(226), - [sym__block_quote_prefix] = STATE(276), - [sym_link_reference_definition] = STATE(226), - [sym_block_attribute] = STATE(226), - [sym__paragraph] = STATE(226), - [sym__paragraph_content] = STATE(801), - [sym__inline] = STATE(703), - [sym__symbol_fallback] = STATE(366), - [aux_sym__list_dash_repeat1] = STATE(416), - [aux_sym__list_plus_repeat1] = STATE(419), + [sym_table_row] = STATE(71), + [sym_footnote] = STATE(167), + [sym_footnote_marker_begin] = STATE(1086), + [sym_footnote_content] = STATE(953), + [sym_div] = STATE(167), + [sym_div_marker_begin] = STATE(1017), + [sym_code_block] = STATE(167), + [sym_raw_block] = STATE(167), + [sym_thematic_break] = STATE(167), + [sym_block_quote] = STATE(167), + [sym__block_quote_prefix] = STATE(286), + [sym_link_reference_definition] = STATE(167), + [sym_block_attribute] = STATE(167), + [sym__paragraph] = STATE(167), + [sym__paragraph_content] = STATE(867), + [sym__inline] = STATE(710), + [sym__symbol_fallback] = STATE(355), + [aux_sym__list_dash_repeat1] = STATE(409), + [aux_sym__list_plus_repeat1] = STATE(410), [aux_sym__list_star_repeat1] = STATE(407), - [aux_sym__list_task_repeat1] = STATE(371), - [aux_sym__list_definition_repeat1] = STATE(549), - [aux_sym__list_decimal_period_repeat1] = STATE(548), - [aux_sym__list_decimal_paren_repeat1] = STATE(547), - [aux_sym__list_decimal_parens_repeat1] = STATE(546), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(545), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(544), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(543), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(542), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(541), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(540), - [aux_sym__list_lower_roman_period_repeat1] = STATE(539), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(538), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(537), - [aux_sym__list_upper_roman_period_repeat1] = STATE(536), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(535), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(534), + [aux_sym__list_task_repeat1] = STATE(396), + [aux_sym__list_definition_repeat1] = STATE(602), + [aux_sym__list_decimal_period_repeat1] = STATE(603), + [aux_sym__list_decimal_paren_repeat1] = STATE(604), + [aux_sym__list_decimal_parens_repeat1] = STATE(605), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(606), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(607), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(608), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(609), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(610), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(611), + [aux_sym__list_lower_roman_period_repeat1] = STATE(612), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(613), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(595), + [aux_sym__list_upper_roman_period_repeat1] = STATE(581), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(559), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(558), [aux_sym_table_repeat1] = STATE(66), [aux_sym_footnote_content_repeat1] = STATE(22), - [aux_sym__block_quote_prefix_repeat1] = STATE(307), - [aux_sym__inline_repeat1] = STATE(366), - [anon_sym_LBRACK] = ACTIONS(197), - [anon_sym_PIPE] = ACTIONS(199), - [anon_sym_LBRACE] = ACTIONS(201), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__block_close] = ACTIONS(353), - [sym__newline] = ACTIONS(341), - [sym__heading_begin] = ACTIONS(17), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(207), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(209), - [sym__block_quote_continuation] = ACTIONS(343), - [sym__thematic_break_dash] = ACTIONS(211), - [sym__thematic_break_star] = ACTIONS(211), - [sym__footnote_begin] = ACTIONS(213), + [aux_sym__block_quote_prefix_repeat1] = STATE(316), + [aux_sym__inline_repeat1] = STATE(355), + [anon_sym_LBRACK] = ACTIONS(216), + [anon_sym_PIPE] = ACTIONS(218), + [anon_sym_LBRACK_CARET] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(220), + [anon_sym_DOT] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(13), + [aux_sym__inline_token1] = ACTIONS(13), + [anon_sym_LBRACE_DASH] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(13), + [anon_sym_PERCENT] = ACTIONS(13), + [sym__newline] = ACTIONS(222), + [sym__heading_begin] = ACTIONS(224), + [sym__div_begin] = ACTIONS(21), + [sym__code_block_begin] = ACTIONS(226), + [sym_list_marker_dash] = ACTIONS(25), + [sym_list_marker_star] = ACTIONS(27), + [sym_list_marker_plus] = ACTIONS(29), + [sym__list_marker_task_begin] = ACTIONS(31), + [sym_list_marker_definition] = ACTIONS(33), + [sym_list_marker_decimal_period] = ACTIONS(35), + [sym_list_marker_lower_alpha_period] = ACTIONS(37), + [sym_list_marker_upper_alpha_period] = ACTIONS(39), + [sym_list_marker_lower_roman_period] = ACTIONS(41), + [sym_list_marker_upper_roman_period] = ACTIONS(43), + [sym_list_marker_decimal_paren] = ACTIONS(45), + [sym_list_marker_lower_alpha_paren] = ACTIONS(47), + [sym_list_marker_upper_alpha_paren] = ACTIONS(49), + [sym_list_marker_lower_roman_paren] = ACTIONS(51), + [sym_list_marker_upper_roman_paren] = ACTIONS(53), + [sym_list_marker_decimal_parens] = ACTIONS(55), + [sym_list_marker_lower_alpha_parens] = ACTIONS(57), + [sym_list_marker_upper_alpha_parens] = ACTIONS(59), + [sym_list_marker_lower_roman_parens] = ACTIONS(61), + [sym_list_marker_upper_roman_parens] = ACTIONS(63), + [sym__block_quote_begin] = ACTIONS(228), + [sym__block_quote_continuation] = ACTIONS(230), + [sym__thematic_break_dash] = ACTIONS(232), + [sym__thematic_break_star] = ACTIONS(232), }, [21] = { - [sym__block_with_heading] = STATE(265), - [sym__block_element] = STATE(265), - [sym_heading] = STATE(265), - [sym_list] = STATE(265), - [sym__list_dash] = STATE(234), + [sym__block_with_heading] = STATE(230), + [sym__block_element] = STATE(230), + [sym_heading] = STATE(230), + [sym_list] = STATE(230), + [sym__list_dash] = STATE(186), [sym__list_item_dash] = STATE(415), - [sym__list_plus] = STATE(234), - [sym__list_item_plus] = STATE(395), - [sym__list_star] = STATE(234), - [sym__list_item_star] = STATE(409), - [sym__list_task] = STATE(234), - [sym__list_item_task] = STATE(389), + [sym__list_plus] = STATE(186), + [sym__list_item_plus] = STATE(406), + [sym__list_star] = STATE(186), + [sym__list_item_star] = STATE(408), + [sym__list_task] = STATE(186), + [sym__list_item_task] = STATE(391), [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(234), - [sym__list_item_definition] = STATE(531), - [sym__list_decimal_period] = STATE(234), - [sym__list_item_decimal_period] = STATE(530), - [sym__list_decimal_paren] = STATE(234), - [sym__list_item_decimal_paren] = STATE(529), - [sym__list_decimal_parens] = STATE(234), - [sym__list_item_decimal_parens] = STATE(527), - [sym__list_lower_alpha_period] = STATE(234), - [sym__list_item_lower_alpha_period] = STATE(526), - [sym__list_lower_alpha_paren] = STATE(234), - [sym__list_item_lower_alpha_paren] = STATE(525), - [sym__list_lower_alpha_parens] = STATE(234), - [sym__list_item_lower_alpha_parens] = STATE(524), - [sym__list_upper_alpha_period] = STATE(234), - [sym__list_item_upper_alpha_period] = STATE(523), - [sym__list_upper_alpha_paren] = STATE(234), - [sym__list_item_upper_alpha_paren] = STATE(522), - [sym__list_upper_alpha_parens] = STATE(234), - [sym__list_item_upper_alpha_parens] = STATE(521), - [sym__list_lower_roman_period] = STATE(234), - [sym__list_item_lower_roman_period] = STATE(520), - [sym__list_lower_roman_paren] = STATE(234), - [sym__list_item_lower_roman_paren] = STATE(519), - [sym__list_lower_roman_parens] = STATE(234), - [sym__list_item_lower_roman_parens] = STATE(518), - [sym__list_upper_roman_period] = STATE(234), - [sym__list_item_upper_roman_period] = STATE(517), - [sym__list_upper_roman_paren] = STATE(234), - [sym__list_item_upper_roman_paren] = STATE(516), - [sym__list_upper_roman_parens] = STATE(234), - [sym__list_item_upper_roman_parens] = STATE(515), - [sym_table] = STATE(265), - [sym__table_content] = STATE(65), - [sym_table_separator] = STATE(65), - [sym_table_row] = STATE(71), - [sym_footnote] = STATE(265), - [sym_footnote_content] = STATE(903), - [sym_div] = STATE(265), - [sym_div_marker_begin] = STATE(1006), - [sym_code_block] = STATE(265), - [sym_raw_block] = STATE(265), - [sym_thematic_break] = STATE(265), - [sym_block_quote] = STATE(265), - [sym__block_quote_prefix] = STATE(285), - [sym_link_reference_definition] = STATE(265), - [sym_block_attribute] = STATE(265), - [sym__paragraph] = STATE(265), - [sym__paragraph_content] = STATE(856), - [sym__inline] = STATE(703), - [sym__symbol_fallback] = STATE(366), + [sym__list_definition] = STATE(186), + [sym__list_item_definition] = STATE(570), + [sym__list_decimal_period] = STATE(186), + [sym__list_item_decimal_period] = STATE(573), + [sym__list_decimal_paren] = STATE(186), + [sym__list_item_decimal_paren] = STATE(575), + [sym__list_decimal_parens] = STATE(186), + [sym__list_item_decimal_parens] = STATE(578), + [sym__list_lower_alpha_period] = STATE(186), + [sym__list_item_lower_alpha_period] = STATE(495), + [sym__list_lower_alpha_paren] = STATE(186), + [sym__list_item_lower_alpha_paren] = STATE(583), + [sym__list_lower_alpha_parens] = STATE(186), + [sym__list_item_lower_alpha_parens] = STATE(494), + [sym__list_upper_alpha_period] = STATE(186), + [sym__list_item_upper_alpha_period] = STATE(584), + [sym__list_upper_alpha_paren] = STATE(186), + [sym__list_item_upper_alpha_paren] = STATE(586), + [sym__list_upper_alpha_parens] = STATE(186), + [sym__list_item_upper_alpha_parens] = STATE(587), + [sym__list_lower_roman_period] = STATE(186), + [sym__list_item_lower_roman_period] = STATE(588), + [sym__list_lower_roman_paren] = STATE(186), + [sym__list_item_lower_roman_paren] = STATE(590), + [sym__list_lower_roman_parens] = STATE(186), + [sym__list_item_lower_roman_parens] = STATE(591), + [sym__list_upper_roman_period] = STATE(186), + [sym__list_item_upper_roman_period] = STATE(592), + [sym__list_upper_roman_paren] = STATE(186), + [sym__list_item_upper_roman_paren] = STATE(596), + [sym__list_upper_roman_parens] = STATE(186), + [sym__list_item_upper_roman_parens] = STATE(597), + [sym_table] = STATE(230), + [sym__table_content] = STATE(64), + [sym_table_separator] = STATE(64), + [sym_table_row] = STATE(72), + [sym_footnote] = STATE(230), + [sym_footnote_marker_begin] = STATE(1084), + [sym_div] = STATE(230), + [sym_div_marker_begin] = STATE(996), + [sym_code_block] = STATE(230), + [sym_raw_block] = STATE(230), + [sym_thematic_break] = STATE(230), + [sym_block_quote] = STATE(230), + [sym__block_quote_prefix] = STATE(277), + [sym_link_reference_definition] = STATE(230), + [sym_block_attribute] = STATE(230), + [sym__paragraph] = STATE(230), + [sym__paragraph_content] = STATE(811), + [sym__inline] = STATE(710), + [sym__symbol_fallback] = STATE(355), [aux_sym__list_dash_repeat1] = STATE(415), - [aux_sym__list_plus_repeat1] = STATE(395), - [aux_sym__list_star_repeat1] = STATE(409), - [aux_sym__list_task_repeat1] = STATE(389), - [aux_sym__list_definition_repeat1] = STATE(531), - [aux_sym__list_decimal_period_repeat1] = STATE(530), - [aux_sym__list_decimal_paren_repeat1] = STATE(529), - [aux_sym__list_decimal_parens_repeat1] = STATE(527), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(526), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(525), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(524), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(523), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(522), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(521), - [aux_sym__list_lower_roman_period_repeat1] = STATE(520), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(519), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(518), - [aux_sym__list_upper_roman_period_repeat1] = STATE(517), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(516), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(515), - [aux_sym_table_repeat1] = STATE(65), - [aux_sym_footnote_content_repeat1] = STATE(15), - [aux_sym__block_quote_prefix_repeat1] = STATE(323), - [aux_sym__inline_repeat1] = STATE(366), - [anon_sym_LBRACK] = ACTIONS(221), - [anon_sym_PIPE] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(225), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__newline] = ACTIONS(227), - [sym__heading_begin] = ACTIONS(229), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(231), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(233), - [sym__block_quote_continuation] = ACTIONS(235), - [sym__thematic_break_dash] = ACTIONS(237), - [sym__thematic_break_star] = ACTIONS(237), - [sym__footnote_begin] = ACTIONS(239), + [aux_sym__list_plus_repeat1] = STATE(406), + [aux_sym__list_star_repeat1] = STATE(408), + [aux_sym__list_task_repeat1] = STATE(391), + [aux_sym__list_definition_repeat1] = STATE(570), + [aux_sym__list_decimal_period_repeat1] = STATE(573), + [aux_sym__list_decimal_paren_repeat1] = STATE(575), + [aux_sym__list_decimal_parens_repeat1] = STATE(578), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(495), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(583), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(494), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(584), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(586), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(587), + [aux_sym__list_lower_roman_period_repeat1] = STATE(588), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(590), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(591), + [aux_sym__list_upper_roman_period_repeat1] = STATE(592), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(596), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(597), + [aux_sym_table_repeat1] = STATE(64), + [aux_sym_footnote_content_repeat1] = STATE(19), + [aux_sym__block_quote_prefix_repeat1] = STATE(302), + [aux_sym__inline_repeat1] = STATE(355), + [anon_sym_LBRACK] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(73), + [anon_sym_LBRACK_CARET] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DOT] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(13), + [aux_sym__inline_token1] = ACTIONS(13), + [anon_sym_LBRACE_DASH] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(13), + [anon_sym_PERCENT] = ACTIONS(13), + [sym__block_close] = ACTIONS(346), + [sym__newline] = ACTIONS(236), + [sym__heading_begin] = ACTIONS(19), + [sym__div_begin] = ACTIONS(21), + [sym__code_block_begin] = ACTIONS(81), + [sym_list_marker_dash] = ACTIONS(25), + [sym_list_marker_star] = ACTIONS(27), + [sym_list_marker_plus] = ACTIONS(29), + [sym__list_marker_task_begin] = ACTIONS(31), + [sym_list_marker_definition] = ACTIONS(33), + [sym_list_marker_decimal_period] = ACTIONS(35), + [sym_list_marker_lower_alpha_period] = ACTIONS(37), + [sym_list_marker_upper_alpha_period] = ACTIONS(39), + [sym_list_marker_lower_roman_period] = ACTIONS(41), + [sym_list_marker_upper_roman_period] = ACTIONS(43), + [sym_list_marker_decimal_paren] = ACTIONS(45), + [sym_list_marker_lower_alpha_paren] = ACTIONS(47), + [sym_list_marker_upper_alpha_paren] = ACTIONS(49), + [sym_list_marker_lower_roman_paren] = ACTIONS(51), + [sym_list_marker_upper_roman_paren] = ACTIONS(53), + [sym_list_marker_decimal_parens] = ACTIONS(55), + [sym_list_marker_lower_alpha_parens] = ACTIONS(57), + [sym_list_marker_upper_alpha_parens] = ACTIONS(59), + [sym_list_marker_lower_roman_parens] = ACTIONS(61), + [sym_list_marker_upper_roman_parens] = ACTIONS(63), + [sym__block_quote_begin] = ACTIONS(83), + [sym__block_quote_continuation] = ACTIONS(238), + [sym__thematic_break_dash] = ACTIONS(85), + [sym__thematic_break_star] = ACTIONS(85), }, [22] = { - [sym__block_with_heading] = STATE(226), - [sym__block_element] = STATE(226), - [sym_heading] = STATE(226), - [sym_list] = STATE(226), - [sym__list_dash] = STATE(141), - [sym__list_item_dash] = STATE(416), - [sym__list_plus] = STATE(141), - [sym__list_item_plus] = STATE(419), - [sym__list_star] = STATE(141), + [sym__block_with_heading] = STATE(167), + [sym__block_element] = STATE(167), + [sym_heading] = STATE(167), + [sym_list] = STATE(167), + [sym__list_dash] = STATE(153), + [sym__list_item_dash] = STATE(409), + [sym__list_plus] = STATE(153), + [sym__list_item_plus] = STATE(410), + [sym__list_star] = STATE(153), [sym__list_item_star] = STATE(407), - [sym__list_task] = STATE(141), - [sym__list_item_task] = STATE(371), + [sym__list_task] = STATE(153), + [sym__list_item_task] = STATE(396), [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(141), - [sym__list_item_definition] = STATE(549), - [sym__list_decimal_period] = STATE(141), - [sym__list_item_decimal_period] = STATE(548), - [sym__list_decimal_paren] = STATE(141), - [sym__list_item_decimal_paren] = STATE(547), - [sym__list_decimal_parens] = STATE(141), - [sym__list_item_decimal_parens] = STATE(546), - [sym__list_lower_alpha_period] = STATE(141), - [sym__list_item_lower_alpha_period] = STATE(545), - [sym__list_lower_alpha_paren] = STATE(141), - [sym__list_item_lower_alpha_paren] = STATE(544), - [sym__list_lower_alpha_parens] = STATE(141), - [sym__list_item_lower_alpha_parens] = STATE(543), - [sym__list_upper_alpha_period] = STATE(141), - [sym__list_item_upper_alpha_period] = STATE(542), - [sym__list_upper_alpha_paren] = STATE(141), - [sym__list_item_upper_alpha_paren] = STATE(541), - [sym__list_upper_alpha_parens] = STATE(141), - [sym__list_item_upper_alpha_parens] = STATE(540), - [sym__list_lower_roman_period] = STATE(141), - [sym__list_item_lower_roman_period] = STATE(539), - [sym__list_lower_roman_paren] = STATE(141), - [sym__list_item_lower_roman_paren] = STATE(538), - [sym__list_lower_roman_parens] = STATE(141), - [sym__list_item_lower_roman_parens] = STATE(537), - [sym__list_upper_roman_period] = STATE(141), - [sym__list_item_upper_roman_period] = STATE(536), - [sym__list_upper_roman_paren] = STATE(141), - [sym__list_item_upper_roman_paren] = STATE(535), - [sym__list_upper_roman_parens] = STATE(141), - [sym__list_item_upper_roman_parens] = STATE(534), - [sym_table] = STATE(226), + [sym__list_definition] = STATE(153), + [sym__list_item_definition] = STATE(602), + [sym__list_decimal_period] = STATE(153), + [sym__list_item_decimal_period] = STATE(603), + [sym__list_decimal_paren] = STATE(153), + [sym__list_item_decimal_paren] = STATE(604), + [sym__list_decimal_parens] = STATE(153), + [sym__list_item_decimal_parens] = STATE(605), + [sym__list_lower_alpha_period] = STATE(153), + [sym__list_item_lower_alpha_period] = STATE(606), + [sym__list_lower_alpha_paren] = STATE(153), + [sym__list_item_lower_alpha_paren] = STATE(607), + [sym__list_lower_alpha_parens] = STATE(153), + [sym__list_item_lower_alpha_parens] = STATE(608), + [sym__list_upper_alpha_period] = STATE(153), + [sym__list_item_upper_alpha_period] = STATE(609), + [sym__list_upper_alpha_paren] = STATE(153), + [sym__list_item_upper_alpha_paren] = STATE(610), + [sym__list_upper_alpha_parens] = STATE(153), + [sym__list_item_upper_alpha_parens] = STATE(611), + [sym__list_lower_roman_period] = STATE(153), + [sym__list_item_lower_roman_period] = STATE(612), + [sym__list_lower_roman_paren] = STATE(153), + [sym__list_item_lower_roman_paren] = STATE(613), + [sym__list_lower_roman_parens] = STATE(153), + [sym__list_item_lower_roman_parens] = STATE(595), + [sym__list_upper_roman_period] = STATE(153), + [sym__list_item_upper_roman_period] = STATE(581), + [sym__list_upper_roman_paren] = STATE(153), + [sym__list_item_upper_roman_paren] = STATE(559), + [sym__list_upper_roman_parens] = STATE(153), + [sym__list_item_upper_roman_parens] = STATE(558), + [sym_table] = STATE(167), [sym__table_content] = STATE(66), [sym_table_separator] = STATE(66), - [sym_table_row] = STATE(72), - [sym_footnote] = STATE(226), - [sym_div] = STATE(226), - [sym_div_marker_begin] = STATE(985), - [sym_code_block] = STATE(226), - [sym_raw_block] = STATE(226), - [sym_thematic_break] = STATE(226), - [sym_block_quote] = STATE(226), - [sym__block_quote_prefix] = STATE(277), - [sym_link_reference_definition] = STATE(226), - [sym_block_attribute] = STATE(226), - [sym__paragraph] = STATE(226), - [sym__paragraph_content] = STATE(801), - [sym__inline] = STATE(703), - [sym__symbol_fallback] = STATE(366), - [aux_sym__list_dash_repeat1] = STATE(416), - [aux_sym__list_plus_repeat1] = STATE(419), + [sym_table_row] = STATE(71), + [sym_footnote] = STATE(167), + [sym_footnote_marker_begin] = STATE(1086), + [sym_div] = STATE(167), + [sym_div_marker_begin] = STATE(1017), + [sym_code_block] = STATE(167), + [sym_raw_block] = STATE(167), + [sym_thematic_break] = STATE(167), + [sym_block_quote] = STATE(167), + [sym__block_quote_prefix] = STATE(286), + [sym_link_reference_definition] = STATE(167), + [sym_block_attribute] = STATE(167), + [sym__paragraph] = STATE(167), + [sym__paragraph_content] = STATE(867), + [sym__inline] = STATE(710), + [sym__symbol_fallback] = STATE(355), + [aux_sym__list_dash_repeat1] = STATE(409), + [aux_sym__list_plus_repeat1] = STATE(410), [aux_sym__list_star_repeat1] = STATE(407), - [aux_sym__list_task_repeat1] = STATE(371), - [aux_sym__list_definition_repeat1] = STATE(549), - [aux_sym__list_decimal_period_repeat1] = STATE(548), - [aux_sym__list_decimal_paren_repeat1] = STATE(547), - [aux_sym__list_decimal_parens_repeat1] = STATE(546), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(545), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(544), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(543), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(542), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(541), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(540), - [aux_sym__list_lower_roman_period_repeat1] = STATE(539), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(538), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(537), - [aux_sym__list_upper_roman_period_repeat1] = STATE(536), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(535), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(534), + [aux_sym__list_task_repeat1] = STATE(396), + [aux_sym__list_definition_repeat1] = STATE(602), + [aux_sym__list_decimal_period_repeat1] = STATE(603), + [aux_sym__list_decimal_paren_repeat1] = STATE(604), + [aux_sym__list_decimal_parens_repeat1] = STATE(605), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(606), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(607), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(608), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(609), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(610), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(611), + [aux_sym__list_lower_roman_period_repeat1] = STATE(612), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(613), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(595), + [aux_sym__list_upper_roman_period_repeat1] = STATE(581), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(559), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(558), [aux_sym_table_repeat1] = STATE(66), - [aux_sym_footnote_content_repeat1] = STATE(12), - [aux_sym__block_quote_prefix_repeat1] = STATE(307), - [aux_sym__inline_repeat1] = STATE(366), - [anon_sym_LBRACK] = ACTIONS(197), - [anon_sym_PIPE] = ACTIONS(199), - [anon_sym_LBRACE] = ACTIONS(201), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__block_close] = ACTIONS(355), - [sym__newline] = ACTIONS(341), - [sym__heading_begin] = ACTIONS(17), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(207), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(209), - [sym__block_quote_continuation] = ACTIONS(343), - [sym__thematic_break_dash] = ACTIONS(211), - [sym__thematic_break_star] = ACTIONS(211), - [sym__footnote_begin] = ACTIONS(213), + [aux_sym_footnote_content_repeat1] = STATE(28), + [aux_sym__block_quote_prefix_repeat1] = STATE(316), + [aux_sym__inline_repeat1] = STATE(355), + [anon_sym_LBRACK] = ACTIONS(216), + [anon_sym_PIPE] = ACTIONS(218), + [anon_sym_LBRACK_CARET] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(220), + [anon_sym_DOT] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(13), + [aux_sym__inline_token1] = ACTIONS(13), + [anon_sym_LBRACE_DASH] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(13), + [anon_sym_PERCENT] = ACTIONS(13), + [sym__newline] = ACTIONS(222), + [sym__heading_begin] = ACTIONS(224), + [sym__div_begin] = ACTIONS(21), + [sym__code_block_begin] = ACTIONS(226), + [sym_list_marker_dash] = ACTIONS(25), + [sym_list_marker_star] = ACTIONS(27), + [sym_list_marker_plus] = ACTIONS(29), + [sym__list_marker_task_begin] = ACTIONS(31), + [sym_list_marker_definition] = ACTIONS(33), + [sym_list_marker_decimal_period] = ACTIONS(35), + [sym_list_marker_lower_alpha_period] = ACTIONS(37), + [sym_list_marker_upper_alpha_period] = ACTIONS(39), + [sym_list_marker_lower_roman_period] = ACTIONS(41), + [sym_list_marker_upper_roman_period] = ACTIONS(43), + [sym_list_marker_decimal_paren] = ACTIONS(45), + [sym_list_marker_lower_alpha_paren] = ACTIONS(47), + [sym_list_marker_upper_alpha_paren] = ACTIONS(49), + [sym_list_marker_lower_roman_paren] = ACTIONS(51), + [sym_list_marker_upper_roman_paren] = ACTIONS(53), + [sym_list_marker_decimal_parens] = ACTIONS(55), + [sym_list_marker_lower_alpha_parens] = ACTIONS(57), + [sym_list_marker_upper_alpha_parens] = ACTIONS(59), + [sym_list_marker_lower_roman_parens] = ACTIONS(61), + [sym_list_marker_upper_roman_parens] = ACTIONS(63), + [sym__block_quote_begin] = ACTIONS(228), + [sym__block_quote_continuation] = ACTIONS(230), + [sym__thematic_break_dash] = ACTIONS(232), + [sym__thematic_break_star] = ACTIONS(232), + [sym__footnote_end] = ACTIONS(348), }, [23] = { - [sym__block_with_heading] = STATE(226), - [sym__block_element] = STATE(226), - [sym_heading] = STATE(226), - [sym_list] = STATE(226), - [sym__list_dash] = STATE(141), - [sym__list_item_dash] = STATE(416), - [sym__list_plus] = STATE(141), - [sym__list_item_plus] = STATE(419), - [sym__list_star] = STATE(141), - [sym__list_item_star] = STATE(407), - [sym__list_task] = STATE(141), - [sym__list_item_task] = STATE(371), + [sym__block_with_heading] = STATE(230), + [sym__block_element] = STATE(230), + [sym_heading] = STATE(230), + [sym_list] = STATE(230), + [sym__list_dash] = STATE(186), + [sym__list_item_dash] = STATE(415), + [sym__list_plus] = STATE(186), + [sym__list_item_plus] = STATE(406), + [sym__list_star] = STATE(186), + [sym__list_item_star] = STATE(408), + [sym__list_task] = STATE(186), + [sym__list_item_task] = STATE(391), [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(141), - [sym__list_item_definition] = STATE(549), - [sym__list_decimal_period] = STATE(141), - [sym__list_item_decimal_period] = STATE(548), - [sym__list_decimal_paren] = STATE(141), - [sym__list_item_decimal_paren] = STATE(547), - [sym__list_decimal_parens] = STATE(141), - [sym__list_item_decimal_parens] = STATE(546), - [sym__list_lower_alpha_period] = STATE(141), - [sym__list_item_lower_alpha_period] = STATE(545), - [sym__list_lower_alpha_paren] = STATE(141), - [sym__list_item_lower_alpha_paren] = STATE(544), - [sym__list_lower_alpha_parens] = STATE(141), - [sym__list_item_lower_alpha_parens] = STATE(543), - [sym__list_upper_alpha_period] = STATE(141), - [sym__list_item_upper_alpha_period] = STATE(542), - [sym__list_upper_alpha_paren] = STATE(141), - [sym__list_item_upper_alpha_paren] = STATE(541), - [sym__list_upper_alpha_parens] = STATE(141), - [sym__list_item_upper_alpha_parens] = STATE(540), - [sym__list_lower_roman_period] = STATE(141), - [sym__list_item_lower_roman_period] = STATE(539), - [sym__list_lower_roman_paren] = STATE(141), - [sym__list_item_lower_roman_paren] = STATE(538), - [sym__list_lower_roman_parens] = STATE(141), - [sym__list_item_lower_roman_parens] = STATE(537), - [sym__list_upper_roman_period] = STATE(141), - [sym__list_item_upper_roman_period] = STATE(536), - [sym__list_upper_roman_paren] = STATE(141), - [sym__list_item_upper_roman_paren] = STATE(535), - [sym__list_upper_roman_parens] = STATE(141), - [sym__list_item_upper_roman_parens] = STATE(534), - [sym_table] = STATE(226), - [sym__table_content] = STATE(66), - [sym_table_separator] = STATE(66), + [sym__list_definition] = STATE(186), + [sym__list_item_definition] = STATE(570), + [sym__list_decimal_period] = STATE(186), + [sym__list_item_decimal_period] = STATE(573), + [sym__list_decimal_paren] = STATE(186), + [sym__list_item_decimal_paren] = STATE(575), + [sym__list_decimal_parens] = STATE(186), + [sym__list_item_decimal_parens] = STATE(578), + [sym__list_lower_alpha_period] = STATE(186), + [sym__list_item_lower_alpha_period] = STATE(495), + [sym__list_lower_alpha_paren] = STATE(186), + [sym__list_item_lower_alpha_paren] = STATE(583), + [sym__list_lower_alpha_parens] = STATE(186), + [sym__list_item_lower_alpha_parens] = STATE(494), + [sym__list_upper_alpha_period] = STATE(186), + [sym__list_item_upper_alpha_period] = STATE(584), + [sym__list_upper_alpha_paren] = STATE(186), + [sym__list_item_upper_alpha_paren] = STATE(586), + [sym__list_upper_alpha_parens] = STATE(186), + [sym__list_item_upper_alpha_parens] = STATE(587), + [sym__list_lower_roman_period] = STATE(186), + [sym__list_item_lower_roman_period] = STATE(588), + [sym__list_lower_roman_paren] = STATE(186), + [sym__list_item_lower_roman_paren] = STATE(590), + [sym__list_lower_roman_parens] = STATE(186), + [sym__list_item_lower_roman_parens] = STATE(591), + [sym__list_upper_roman_period] = STATE(186), + [sym__list_item_upper_roman_period] = STATE(592), + [sym__list_upper_roman_paren] = STATE(186), + [sym__list_item_upper_roman_paren] = STATE(596), + [sym__list_upper_roman_parens] = STATE(186), + [sym__list_item_upper_roman_parens] = STATE(597), + [sym_table] = STATE(230), + [sym__table_content] = STATE(64), + [sym_table_separator] = STATE(64), [sym_table_row] = STATE(72), - [sym_footnote] = STATE(226), - [sym_div] = STATE(226), - [sym_div_marker_begin] = STATE(985), - [sym_code_block] = STATE(226), - [sym_raw_block] = STATE(226), - [sym_thematic_break] = STATE(226), - [sym_block_quote] = STATE(226), - [sym__block_quote_prefix] = STATE(283), - [sym_link_reference_definition] = STATE(226), - [sym_block_attribute] = STATE(226), - [sym__paragraph] = STATE(226), - [sym__paragraph_content] = STATE(801), - [sym__inline] = STATE(703), - [sym__symbol_fallback] = STATE(366), - [aux_sym__list_dash_repeat1] = STATE(416), - [aux_sym__list_plus_repeat1] = STATE(419), - [aux_sym__list_star_repeat1] = STATE(407), - [aux_sym__list_task_repeat1] = STATE(371), - [aux_sym__list_definition_repeat1] = STATE(549), - [aux_sym__list_decimal_period_repeat1] = STATE(548), - [aux_sym__list_decimal_paren_repeat1] = STATE(547), - [aux_sym__list_decimal_parens_repeat1] = STATE(546), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(545), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(544), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(543), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(542), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(541), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(540), - [aux_sym__list_lower_roman_period_repeat1] = STATE(539), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(538), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(537), - [aux_sym__list_upper_roman_period_repeat1] = STATE(536), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(535), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(534), - [aux_sym_table_repeat1] = STATE(66), + [sym_footnote] = STATE(230), + [sym_footnote_marker_begin] = STATE(1084), + [sym_div] = STATE(230), + [sym_div_marker_begin] = STATE(996), + [sym_code_block] = STATE(230), + [sym_raw_block] = STATE(230), + [sym_thematic_break] = STATE(230), + [sym_block_quote] = STATE(230), + [sym__block_quote_prefix] = STATE(276), + [sym_link_reference_definition] = STATE(230), + [sym_block_attribute] = STATE(230), + [sym__paragraph] = STATE(230), + [sym__paragraph_content] = STATE(811), + [sym__inline] = STATE(710), + [sym__symbol_fallback] = STATE(355), + [aux_sym__list_dash_repeat1] = STATE(415), + [aux_sym__list_plus_repeat1] = STATE(406), + [aux_sym__list_star_repeat1] = STATE(408), + [aux_sym__list_task_repeat1] = STATE(391), + [aux_sym__list_definition_repeat1] = STATE(570), + [aux_sym__list_decimal_period_repeat1] = STATE(573), + [aux_sym__list_decimal_paren_repeat1] = STATE(575), + [aux_sym__list_decimal_parens_repeat1] = STATE(578), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(495), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(583), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(494), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(584), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(586), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(587), + [aux_sym__list_lower_roman_period_repeat1] = STATE(588), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(590), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(591), + [aux_sym__list_upper_roman_period_repeat1] = STATE(592), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(596), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(597), + [aux_sym_table_repeat1] = STATE(64), [aux_sym_footnote_content_repeat1] = STATE(24), - [aux_sym__block_quote_prefix_repeat1] = STATE(307), - [aux_sym__inline_repeat1] = STATE(366), - [anon_sym_LBRACK] = ACTIONS(197), - [anon_sym_PIPE] = ACTIONS(199), - [anon_sym_LBRACE] = ACTIONS(201), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__block_close] = ACTIONS(357), - [sym__newline] = ACTIONS(341), - [sym__heading_begin] = ACTIONS(17), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(207), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(209), - [sym__block_quote_continuation] = ACTIONS(343), - [sym__thematic_break_dash] = ACTIONS(211), - [sym__thematic_break_star] = ACTIONS(211), - [sym__footnote_begin] = ACTIONS(213), + [aux_sym__block_quote_prefix_repeat1] = STATE(302), + [aux_sym__inline_repeat1] = STATE(355), + [anon_sym_LBRACK] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(73), + [anon_sym_LBRACK_CARET] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DOT] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(13), + [aux_sym__inline_token1] = ACTIONS(13), + [anon_sym_LBRACE_DASH] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(13), + [anon_sym_PERCENT] = ACTIONS(13), + [sym__block_close] = ACTIONS(350), + [sym__newline] = ACTIONS(236), + [sym__heading_begin] = ACTIONS(19), + [sym__div_begin] = ACTIONS(21), + [sym__code_block_begin] = ACTIONS(81), + [sym_list_marker_dash] = ACTIONS(25), + [sym_list_marker_star] = ACTIONS(27), + [sym_list_marker_plus] = ACTIONS(29), + [sym__list_marker_task_begin] = ACTIONS(31), + [sym_list_marker_definition] = ACTIONS(33), + [sym_list_marker_decimal_period] = ACTIONS(35), + [sym_list_marker_lower_alpha_period] = ACTIONS(37), + [sym_list_marker_upper_alpha_period] = ACTIONS(39), + [sym_list_marker_lower_roman_period] = ACTIONS(41), + [sym_list_marker_upper_roman_period] = ACTIONS(43), + [sym_list_marker_decimal_paren] = ACTIONS(45), + [sym_list_marker_lower_alpha_paren] = ACTIONS(47), + [sym_list_marker_upper_alpha_paren] = ACTIONS(49), + [sym_list_marker_lower_roman_paren] = ACTIONS(51), + [sym_list_marker_upper_roman_paren] = ACTIONS(53), + [sym_list_marker_decimal_parens] = ACTIONS(55), + [sym_list_marker_lower_alpha_parens] = ACTIONS(57), + [sym_list_marker_upper_alpha_parens] = ACTIONS(59), + [sym_list_marker_lower_roman_parens] = ACTIONS(61), + [sym_list_marker_upper_roman_parens] = ACTIONS(63), + [sym__block_quote_begin] = ACTIONS(83), + [sym__block_quote_continuation] = ACTIONS(238), + [sym__thematic_break_dash] = ACTIONS(85), + [sym__thematic_break_star] = ACTIONS(85), }, [24] = { - [sym__block_with_heading] = STATE(226), - [sym__block_element] = STATE(226), - [sym_heading] = STATE(226), - [sym_list] = STATE(226), - [sym__list_dash] = STATE(141), - [sym__list_item_dash] = STATE(416), - [sym__list_plus] = STATE(141), - [sym__list_item_plus] = STATE(419), - [sym__list_star] = STATE(141), - [sym__list_item_star] = STATE(407), - [sym__list_task] = STATE(141), - [sym__list_item_task] = STATE(371), + [sym__block_with_heading] = STATE(230), + [sym__block_element] = STATE(230), + [sym_heading] = STATE(230), + [sym_list] = STATE(230), + [sym__list_dash] = STATE(186), + [sym__list_item_dash] = STATE(415), + [sym__list_plus] = STATE(186), + [sym__list_item_plus] = STATE(406), + [sym__list_star] = STATE(186), + [sym__list_item_star] = STATE(408), + [sym__list_task] = STATE(186), + [sym__list_item_task] = STATE(391), [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(141), - [sym__list_item_definition] = STATE(549), - [sym__list_decimal_period] = STATE(141), - [sym__list_item_decimal_period] = STATE(548), - [sym__list_decimal_paren] = STATE(141), - [sym__list_item_decimal_paren] = STATE(547), - [sym__list_decimal_parens] = STATE(141), - [sym__list_item_decimal_parens] = STATE(546), - [sym__list_lower_alpha_period] = STATE(141), - [sym__list_item_lower_alpha_period] = STATE(545), - [sym__list_lower_alpha_paren] = STATE(141), - [sym__list_item_lower_alpha_paren] = STATE(544), - [sym__list_lower_alpha_parens] = STATE(141), - [sym__list_item_lower_alpha_parens] = STATE(543), - [sym__list_upper_alpha_period] = STATE(141), - [sym__list_item_upper_alpha_period] = STATE(542), - [sym__list_upper_alpha_paren] = STATE(141), - [sym__list_item_upper_alpha_paren] = STATE(541), - [sym__list_upper_alpha_parens] = STATE(141), - [sym__list_item_upper_alpha_parens] = STATE(540), - [sym__list_lower_roman_period] = STATE(141), - [sym__list_item_lower_roman_period] = STATE(539), - [sym__list_lower_roman_paren] = STATE(141), - [sym__list_item_lower_roman_paren] = STATE(538), - [sym__list_lower_roman_parens] = STATE(141), - [sym__list_item_lower_roman_parens] = STATE(537), - [sym__list_upper_roman_period] = STATE(141), - [sym__list_item_upper_roman_period] = STATE(536), - [sym__list_upper_roman_paren] = STATE(141), - [sym__list_item_upper_roman_paren] = STATE(535), - [sym__list_upper_roman_parens] = STATE(141), - [sym__list_item_upper_roman_parens] = STATE(534), - [sym_table] = STATE(226), - [sym__table_content] = STATE(66), - [sym_table_separator] = STATE(66), + [sym__list_definition] = STATE(186), + [sym__list_item_definition] = STATE(570), + [sym__list_decimal_period] = STATE(186), + [sym__list_item_decimal_period] = STATE(573), + [sym__list_decimal_paren] = STATE(186), + [sym__list_item_decimal_paren] = STATE(575), + [sym__list_decimal_parens] = STATE(186), + [sym__list_item_decimal_parens] = STATE(578), + [sym__list_lower_alpha_period] = STATE(186), + [sym__list_item_lower_alpha_period] = STATE(495), + [sym__list_lower_alpha_paren] = STATE(186), + [sym__list_item_lower_alpha_paren] = STATE(583), + [sym__list_lower_alpha_parens] = STATE(186), + [sym__list_item_lower_alpha_parens] = STATE(494), + [sym__list_upper_alpha_period] = STATE(186), + [sym__list_item_upper_alpha_period] = STATE(584), + [sym__list_upper_alpha_paren] = STATE(186), + [sym__list_item_upper_alpha_paren] = STATE(586), + [sym__list_upper_alpha_parens] = STATE(186), + [sym__list_item_upper_alpha_parens] = STATE(587), + [sym__list_lower_roman_period] = STATE(186), + [sym__list_item_lower_roman_period] = STATE(588), + [sym__list_lower_roman_paren] = STATE(186), + [sym__list_item_lower_roman_paren] = STATE(590), + [sym__list_lower_roman_parens] = STATE(186), + [sym__list_item_lower_roman_parens] = STATE(591), + [sym__list_upper_roman_period] = STATE(186), + [sym__list_item_upper_roman_period] = STATE(592), + [sym__list_upper_roman_paren] = STATE(186), + [sym__list_item_upper_roman_paren] = STATE(596), + [sym__list_upper_roman_parens] = STATE(186), + [sym__list_item_upper_roman_parens] = STATE(597), + [sym_table] = STATE(230), + [sym__table_content] = STATE(64), + [sym_table_separator] = STATE(64), [sym_table_row] = STATE(72), - [sym_footnote] = STATE(226), - [sym_div] = STATE(226), - [sym_div_marker_begin] = STATE(985), - [sym_code_block] = STATE(226), - [sym_raw_block] = STATE(226), - [sym_thematic_break] = STATE(226), - [sym_block_quote] = STATE(226), - [sym__block_quote_prefix] = STATE(281), - [sym_link_reference_definition] = STATE(226), - [sym_block_attribute] = STATE(226), - [sym__paragraph] = STATE(226), - [sym__paragraph_content] = STATE(801), - [sym__inline] = STATE(703), - [sym__symbol_fallback] = STATE(366), - [aux_sym__list_dash_repeat1] = STATE(416), - [aux_sym__list_plus_repeat1] = STATE(419), - [aux_sym__list_star_repeat1] = STATE(407), - [aux_sym__list_task_repeat1] = STATE(371), - [aux_sym__list_definition_repeat1] = STATE(549), - [aux_sym__list_decimal_period_repeat1] = STATE(548), - [aux_sym__list_decimal_paren_repeat1] = STATE(547), - [aux_sym__list_decimal_parens_repeat1] = STATE(546), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(545), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(544), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(543), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(542), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(541), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(540), - [aux_sym__list_lower_roman_period_repeat1] = STATE(539), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(538), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(537), - [aux_sym__list_upper_roman_period_repeat1] = STATE(536), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(535), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(534), - [aux_sym_table_repeat1] = STATE(66), - [aux_sym_footnote_content_repeat1] = STATE(12), - [aux_sym__block_quote_prefix_repeat1] = STATE(307), - [aux_sym__inline_repeat1] = STATE(366), - [anon_sym_LBRACK] = ACTIONS(197), - [anon_sym_PIPE] = ACTIONS(199), - [anon_sym_LBRACE] = ACTIONS(201), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__block_close] = ACTIONS(359), - [sym__newline] = ACTIONS(341), - [sym__heading_begin] = ACTIONS(17), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(207), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(209), - [sym__block_quote_continuation] = ACTIONS(343), - [sym__thematic_break_dash] = ACTIONS(211), - [sym__thematic_break_star] = ACTIONS(211), - [sym__footnote_begin] = ACTIONS(213), + [sym_footnote] = STATE(230), + [sym_footnote_marker_begin] = STATE(1084), + [sym_div] = STATE(230), + [sym_div_marker_begin] = STATE(996), + [sym_code_block] = STATE(230), + [sym_raw_block] = STATE(230), + [sym_thematic_break] = STATE(230), + [sym_block_quote] = STATE(230), + [sym__block_quote_prefix] = STATE(275), + [sym_link_reference_definition] = STATE(230), + [sym_block_attribute] = STATE(230), + [sym__paragraph] = STATE(230), + [sym__paragraph_content] = STATE(811), + [sym__inline] = STATE(710), + [sym__symbol_fallback] = STATE(355), + [aux_sym__list_dash_repeat1] = STATE(415), + [aux_sym__list_plus_repeat1] = STATE(406), + [aux_sym__list_star_repeat1] = STATE(408), + [aux_sym__list_task_repeat1] = STATE(391), + [aux_sym__list_definition_repeat1] = STATE(570), + [aux_sym__list_decimal_period_repeat1] = STATE(573), + [aux_sym__list_decimal_paren_repeat1] = STATE(575), + [aux_sym__list_decimal_parens_repeat1] = STATE(578), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(495), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(583), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(494), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(584), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(586), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(587), + [aux_sym__list_lower_roman_period_repeat1] = STATE(588), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(590), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(591), + [aux_sym__list_upper_roman_period_repeat1] = STATE(592), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(596), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(597), + [aux_sym_table_repeat1] = STATE(64), + [aux_sym_footnote_content_repeat1] = STATE(19), + [aux_sym__block_quote_prefix_repeat1] = STATE(302), + [aux_sym__inline_repeat1] = STATE(355), + [anon_sym_LBRACK] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(73), + [anon_sym_LBRACK_CARET] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DOT] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(13), + [aux_sym__inline_token1] = ACTIONS(13), + [anon_sym_LBRACE_DASH] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(13), + [anon_sym_PERCENT] = ACTIONS(13), + [sym__block_close] = ACTIONS(352), + [sym__newline] = ACTIONS(236), + [sym__heading_begin] = ACTIONS(19), + [sym__div_begin] = ACTIONS(21), + [sym__code_block_begin] = ACTIONS(81), + [sym_list_marker_dash] = ACTIONS(25), + [sym_list_marker_star] = ACTIONS(27), + [sym_list_marker_plus] = ACTIONS(29), + [sym__list_marker_task_begin] = ACTIONS(31), + [sym_list_marker_definition] = ACTIONS(33), + [sym_list_marker_decimal_period] = ACTIONS(35), + [sym_list_marker_lower_alpha_period] = ACTIONS(37), + [sym_list_marker_upper_alpha_period] = ACTIONS(39), + [sym_list_marker_lower_roman_period] = ACTIONS(41), + [sym_list_marker_upper_roman_period] = ACTIONS(43), + [sym_list_marker_decimal_paren] = ACTIONS(45), + [sym_list_marker_lower_alpha_paren] = ACTIONS(47), + [sym_list_marker_upper_alpha_paren] = ACTIONS(49), + [sym_list_marker_lower_roman_paren] = ACTIONS(51), + [sym_list_marker_upper_roman_paren] = ACTIONS(53), + [sym_list_marker_decimal_parens] = ACTIONS(55), + [sym_list_marker_lower_alpha_parens] = ACTIONS(57), + [sym_list_marker_upper_alpha_parens] = ACTIONS(59), + [sym_list_marker_lower_roman_parens] = ACTIONS(61), + [sym_list_marker_upper_roman_parens] = ACTIONS(63), + [sym__block_quote_begin] = ACTIONS(83), + [sym__block_quote_continuation] = ACTIONS(238), + [sym__thematic_break_dash] = ACTIONS(85), + [sym__thematic_break_star] = ACTIONS(85), }, [25] = { - [sym__block_with_heading] = STATE(226), - [sym__block_element] = STATE(226), - [sym_heading] = STATE(226), - [sym_list] = STATE(226), - [sym__list_dash] = STATE(141), - [sym__list_item_dash] = STATE(416), - [sym__list_plus] = STATE(141), - [sym__list_item_plus] = STATE(419), - [sym__list_star] = STATE(141), - [sym__list_item_star] = STATE(407), - [sym__list_task] = STATE(141), - [sym__list_item_task] = STATE(371), + [sym__block_with_heading] = STATE(230), + [sym__block_element] = STATE(230), + [sym_heading] = STATE(230), + [sym_list] = STATE(230), + [sym__list_dash] = STATE(186), + [sym__list_item_dash] = STATE(415), + [sym__list_plus] = STATE(186), + [sym__list_item_plus] = STATE(406), + [sym__list_star] = STATE(186), + [sym__list_item_star] = STATE(408), + [sym__list_task] = STATE(186), + [sym__list_item_task] = STATE(391), [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(141), - [sym__list_item_definition] = STATE(549), - [sym__list_decimal_period] = STATE(141), - [sym__list_item_decimal_period] = STATE(548), - [sym__list_decimal_paren] = STATE(141), - [sym__list_item_decimal_paren] = STATE(547), - [sym__list_decimal_parens] = STATE(141), - [sym__list_item_decimal_parens] = STATE(546), - [sym__list_lower_alpha_period] = STATE(141), - [sym__list_item_lower_alpha_period] = STATE(545), - [sym__list_lower_alpha_paren] = STATE(141), - [sym__list_item_lower_alpha_paren] = STATE(544), - [sym__list_lower_alpha_parens] = STATE(141), - [sym__list_item_lower_alpha_parens] = STATE(543), - [sym__list_upper_alpha_period] = STATE(141), - [sym__list_item_upper_alpha_period] = STATE(542), - [sym__list_upper_alpha_paren] = STATE(141), - [sym__list_item_upper_alpha_paren] = STATE(541), - [sym__list_upper_alpha_parens] = STATE(141), - [sym__list_item_upper_alpha_parens] = STATE(540), - [sym__list_lower_roman_period] = STATE(141), - [sym__list_item_lower_roman_period] = STATE(539), - [sym__list_lower_roman_paren] = STATE(141), - [sym__list_item_lower_roman_paren] = STATE(538), - [sym__list_lower_roman_parens] = STATE(141), - [sym__list_item_lower_roman_parens] = STATE(537), - [sym__list_upper_roman_period] = STATE(141), - [sym__list_item_upper_roman_period] = STATE(536), - [sym__list_upper_roman_paren] = STATE(141), - [sym__list_item_upper_roman_paren] = STATE(535), - [sym__list_upper_roman_parens] = STATE(141), - [sym__list_item_upper_roman_parens] = STATE(534), - [sym_table] = STATE(226), - [sym__table_content] = STATE(66), - [sym_table_separator] = STATE(66), + [sym__list_definition] = STATE(186), + [sym__list_item_definition] = STATE(570), + [sym__list_decimal_period] = STATE(186), + [sym__list_item_decimal_period] = STATE(573), + [sym__list_decimal_paren] = STATE(186), + [sym__list_item_decimal_paren] = STATE(575), + [sym__list_decimal_parens] = STATE(186), + [sym__list_item_decimal_parens] = STATE(578), + [sym__list_lower_alpha_period] = STATE(186), + [sym__list_item_lower_alpha_period] = STATE(495), + [sym__list_lower_alpha_paren] = STATE(186), + [sym__list_item_lower_alpha_paren] = STATE(583), + [sym__list_lower_alpha_parens] = STATE(186), + [sym__list_item_lower_alpha_parens] = STATE(494), + [sym__list_upper_alpha_period] = STATE(186), + [sym__list_item_upper_alpha_period] = STATE(584), + [sym__list_upper_alpha_paren] = STATE(186), + [sym__list_item_upper_alpha_paren] = STATE(586), + [sym__list_upper_alpha_parens] = STATE(186), + [sym__list_item_upper_alpha_parens] = STATE(587), + [sym__list_lower_roman_period] = STATE(186), + [sym__list_item_lower_roman_period] = STATE(588), + [sym__list_lower_roman_paren] = STATE(186), + [sym__list_item_lower_roman_paren] = STATE(590), + [sym__list_lower_roman_parens] = STATE(186), + [sym__list_item_lower_roman_parens] = STATE(591), + [sym__list_upper_roman_period] = STATE(186), + [sym__list_item_upper_roman_period] = STATE(592), + [sym__list_upper_roman_paren] = STATE(186), + [sym__list_item_upper_roman_paren] = STATE(596), + [sym__list_upper_roman_parens] = STATE(186), + [sym__list_item_upper_roman_parens] = STATE(597), + [sym_table] = STATE(230), + [sym__table_content] = STATE(64), + [sym_table_separator] = STATE(64), [sym_table_row] = STATE(72), - [sym_footnote] = STATE(226), - [sym_div] = STATE(226), - [sym_div_marker_begin] = STATE(985), - [sym_code_block] = STATE(226), - [sym_raw_block] = STATE(226), - [sym_thematic_break] = STATE(226), - [sym_block_quote] = STATE(226), - [sym__block_quote_prefix] = STATE(280), - [sym_link_reference_definition] = STATE(226), - [sym_block_attribute] = STATE(226), - [sym__paragraph] = STATE(226), - [sym__paragraph_content] = STATE(801), - [sym__inline] = STATE(703), - [sym__symbol_fallback] = STATE(366), - [aux_sym__list_dash_repeat1] = STATE(416), - [aux_sym__list_plus_repeat1] = STATE(419), - [aux_sym__list_star_repeat1] = STATE(407), - [aux_sym__list_task_repeat1] = STATE(371), - [aux_sym__list_definition_repeat1] = STATE(549), - [aux_sym__list_decimal_period_repeat1] = STATE(548), - [aux_sym__list_decimal_paren_repeat1] = STATE(547), - [aux_sym__list_decimal_parens_repeat1] = STATE(546), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(545), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(544), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(543), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(542), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(541), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(540), - [aux_sym__list_lower_roman_period_repeat1] = STATE(539), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(538), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(537), - [aux_sym__list_upper_roman_period_repeat1] = STATE(536), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(535), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(534), - [aux_sym_table_repeat1] = STATE(66), - [aux_sym_footnote_content_repeat1] = STATE(26), - [aux_sym__block_quote_prefix_repeat1] = STATE(307), - [aux_sym__inline_repeat1] = STATE(366), - [anon_sym_LBRACK] = ACTIONS(197), - [anon_sym_PIPE] = ACTIONS(199), - [anon_sym_LBRACE] = ACTIONS(201), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__block_close] = ACTIONS(361), - [sym__newline] = ACTIONS(341), - [sym__heading_begin] = ACTIONS(17), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(207), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(209), - [sym__block_quote_continuation] = ACTIONS(343), - [sym__thematic_break_dash] = ACTIONS(211), - [sym__thematic_break_star] = ACTIONS(211), - [sym__footnote_begin] = ACTIONS(213), + [sym_footnote] = STATE(230), + [sym_footnote_marker_begin] = STATE(1084), + [sym_div] = STATE(230), + [sym_div_marker_begin] = STATE(996), + [sym_code_block] = STATE(230), + [sym_raw_block] = STATE(230), + [sym_thematic_break] = STATE(230), + [sym_block_quote] = STATE(230), + [sym__block_quote_prefix] = STATE(282), + [sym_link_reference_definition] = STATE(230), + [sym_block_attribute] = STATE(230), + [sym__paragraph] = STATE(230), + [sym__paragraph_content] = STATE(811), + [sym__inline] = STATE(710), + [sym__symbol_fallback] = STATE(355), + [aux_sym__list_dash_repeat1] = STATE(415), + [aux_sym__list_plus_repeat1] = STATE(406), + [aux_sym__list_star_repeat1] = STATE(408), + [aux_sym__list_task_repeat1] = STATE(391), + [aux_sym__list_definition_repeat1] = STATE(570), + [aux_sym__list_decimal_period_repeat1] = STATE(573), + [aux_sym__list_decimal_paren_repeat1] = STATE(575), + [aux_sym__list_decimal_parens_repeat1] = STATE(578), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(495), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(583), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(494), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(584), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(586), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(587), + [aux_sym__list_lower_roman_period_repeat1] = STATE(588), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(590), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(591), + [aux_sym__list_upper_roman_period_repeat1] = STATE(592), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(596), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(597), + [aux_sym_table_repeat1] = STATE(64), + [aux_sym_footnote_content_repeat1] = STATE(15), + [aux_sym__block_quote_prefix_repeat1] = STATE(302), + [aux_sym__inline_repeat1] = STATE(355), + [anon_sym_LBRACK] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(73), + [anon_sym_LBRACK_CARET] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DOT] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(13), + [aux_sym__inline_token1] = ACTIONS(13), + [anon_sym_LBRACE_DASH] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(13), + [anon_sym_PERCENT] = ACTIONS(13), + [sym__block_close] = ACTIONS(354), + [sym__newline] = ACTIONS(236), + [sym__heading_begin] = ACTIONS(19), + [sym__div_begin] = ACTIONS(21), + [sym__code_block_begin] = ACTIONS(81), + [sym_list_marker_dash] = ACTIONS(25), + [sym_list_marker_star] = ACTIONS(27), + [sym_list_marker_plus] = ACTIONS(29), + [sym__list_marker_task_begin] = ACTIONS(31), + [sym_list_marker_definition] = ACTIONS(33), + [sym_list_marker_decimal_period] = ACTIONS(35), + [sym_list_marker_lower_alpha_period] = ACTIONS(37), + [sym_list_marker_upper_alpha_period] = ACTIONS(39), + [sym_list_marker_lower_roman_period] = ACTIONS(41), + [sym_list_marker_upper_roman_period] = ACTIONS(43), + [sym_list_marker_decimal_paren] = ACTIONS(45), + [sym_list_marker_lower_alpha_paren] = ACTIONS(47), + [sym_list_marker_upper_alpha_paren] = ACTIONS(49), + [sym_list_marker_lower_roman_paren] = ACTIONS(51), + [sym_list_marker_upper_roman_paren] = ACTIONS(53), + [sym_list_marker_decimal_parens] = ACTIONS(55), + [sym_list_marker_lower_alpha_parens] = ACTIONS(57), + [sym_list_marker_upper_alpha_parens] = ACTIONS(59), + [sym_list_marker_lower_roman_parens] = ACTIONS(61), + [sym_list_marker_upper_roman_parens] = ACTIONS(63), + [sym__block_quote_begin] = ACTIONS(83), + [sym__block_quote_continuation] = ACTIONS(238), + [sym__thematic_break_dash] = ACTIONS(85), + [sym__thematic_break_star] = ACTIONS(85), }, [26] = { - [sym__block_with_heading] = STATE(226), - [sym__block_element] = STATE(226), - [sym_heading] = STATE(226), - [sym_list] = STATE(226), - [sym__list_dash] = STATE(141), - [sym__list_item_dash] = STATE(416), - [sym__list_plus] = STATE(141), - [sym__list_item_plus] = STATE(419), - [sym__list_star] = STATE(141), + [sym__block_with_heading] = STATE(167), + [sym__block_element] = STATE(167), + [sym_heading] = STATE(167), + [sym_list] = STATE(167), + [sym__list_dash] = STATE(153), + [sym__list_item_dash] = STATE(409), + [sym__list_plus] = STATE(153), + [sym__list_item_plus] = STATE(410), + [sym__list_star] = STATE(153), [sym__list_item_star] = STATE(407), - [sym__list_task] = STATE(141), - [sym__list_item_task] = STATE(371), + [sym__list_task] = STATE(153), + [sym__list_item_task] = STATE(396), [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(141), - [sym__list_item_definition] = STATE(549), - [sym__list_decimal_period] = STATE(141), - [sym__list_item_decimal_period] = STATE(548), - [sym__list_decimal_paren] = STATE(141), - [sym__list_item_decimal_paren] = STATE(547), - [sym__list_decimal_parens] = STATE(141), - [sym__list_item_decimal_parens] = STATE(546), - [sym__list_lower_alpha_period] = STATE(141), - [sym__list_item_lower_alpha_period] = STATE(545), - [sym__list_lower_alpha_paren] = STATE(141), - [sym__list_item_lower_alpha_paren] = STATE(544), - [sym__list_lower_alpha_parens] = STATE(141), - [sym__list_item_lower_alpha_parens] = STATE(543), - [sym__list_upper_alpha_period] = STATE(141), - [sym__list_item_upper_alpha_period] = STATE(542), - [sym__list_upper_alpha_paren] = STATE(141), - [sym__list_item_upper_alpha_paren] = STATE(541), - [sym__list_upper_alpha_parens] = STATE(141), - [sym__list_item_upper_alpha_parens] = STATE(540), - [sym__list_lower_roman_period] = STATE(141), - [sym__list_item_lower_roman_period] = STATE(539), - [sym__list_lower_roman_paren] = STATE(141), - [sym__list_item_lower_roman_paren] = STATE(538), - [sym__list_lower_roman_parens] = STATE(141), - [sym__list_item_lower_roman_parens] = STATE(537), - [sym__list_upper_roman_period] = STATE(141), - [sym__list_item_upper_roman_period] = STATE(536), - [sym__list_upper_roman_paren] = STATE(141), - [sym__list_item_upper_roman_paren] = STATE(535), - [sym__list_upper_roman_parens] = STATE(141), - [sym__list_item_upper_roman_parens] = STATE(534), - [sym_table] = STATE(226), + [sym__list_definition] = STATE(153), + [sym__list_item_definition] = STATE(602), + [sym__list_decimal_period] = STATE(153), + [sym__list_item_decimal_period] = STATE(603), + [sym__list_decimal_paren] = STATE(153), + [sym__list_item_decimal_paren] = STATE(604), + [sym__list_decimal_parens] = STATE(153), + [sym__list_item_decimal_parens] = STATE(605), + [sym__list_lower_alpha_period] = STATE(153), + [sym__list_item_lower_alpha_period] = STATE(606), + [sym__list_lower_alpha_paren] = STATE(153), + [sym__list_item_lower_alpha_paren] = STATE(607), + [sym__list_lower_alpha_parens] = STATE(153), + [sym__list_item_lower_alpha_parens] = STATE(608), + [sym__list_upper_alpha_period] = STATE(153), + [sym__list_item_upper_alpha_period] = STATE(609), + [sym__list_upper_alpha_paren] = STATE(153), + [sym__list_item_upper_alpha_paren] = STATE(610), + [sym__list_upper_alpha_parens] = STATE(153), + [sym__list_item_upper_alpha_parens] = STATE(611), + [sym__list_lower_roman_period] = STATE(153), + [sym__list_item_lower_roman_period] = STATE(612), + [sym__list_lower_roman_paren] = STATE(153), + [sym__list_item_lower_roman_paren] = STATE(613), + [sym__list_lower_roman_parens] = STATE(153), + [sym__list_item_lower_roman_parens] = STATE(595), + [sym__list_upper_roman_period] = STATE(153), + [sym__list_item_upper_roman_period] = STATE(581), + [sym__list_upper_roman_paren] = STATE(153), + [sym__list_item_upper_roman_paren] = STATE(559), + [sym__list_upper_roman_parens] = STATE(153), + [sym__list_item_upper_roman_parens] = STATE(558), + [sym_table] = STATE(167), [sym__table_content] = STATE(66), [sym_table_separator] = STATE(66), - [sym_table_row] = STATE(72), - [sym_footnote] = STATE(226), - [sym_div] = STATE(226), - [sym_div_marker_begin] = STATE(985), - [sym_code_block] = STATE(226), - [sym_raw_block] = STATE(226), - [sym_thematic_break] = STATE(226), - [sym_block_quote] = STATE(226), - [sym__block_quote_prefix] = STATE(274), - [sym_link_reference_definition] = STATE(226), - [sym_block_attribute] = STATE(226), - [sym__paragraph] = STATE(226), - [sym__paragraph_content] = STATE(801), - [sym__inline] = STATE(703), - [sym__symbol_fallback] = STATE(366), - [aux_sym__list_dash_repeat1] = STATE(416), - [aux_sym__list_plus_repeat1] = STATE(419), + [sym_table_row] = STATE(71), + [sym_footnote] = STATE(167), + [sym_footnote_marker_begin] = STATE(1086), + [sym_footnote_content] = STATE(997), + [sym_div] = STATE(167), + [sym_div_marker_begin] = STATE(1017), + [sym_code_block] = STATE(167), + [sym_raw_block] = STATE(167), + [sym_thematic_break] = STATE(167), + [sym_block_quote] = STATE(167), + [sym__block_quote_prefix] = STATE(286), + [sym_link_reference_definition] = STATE(167), + [sym_block_attribute] = STATE(167), + [sym__paragraph] = STATE(167), + [sym__paragraph_content] = STATE(867), + [sym__inline] = STATE(710), + [sym__symbol_fallback] = STATE(355), + [aux_sym__list_dash_repeat1] = STATE(409), + [aux_sym__list_plus_repeat1] = STATE(410), [aux_sym__list_star_repeat1] = STATE(407), - [aux_sym__list_task_repeat1] = STATE(371), - [aux_sym__list_definition_repeat1] = STATE(549), - [aux_sym__list_decimal_period_repeat1] = STATE(548), - [aux_sym__list_decimal_paren_repeat1] = STATE(547), - [aux_sym__list_decimal_parens_repeat1] = STATE(546), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(545), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(544), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(543), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(542), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(541), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(540), - [aux_sym__list_lower_roman_period_repeat1] = STATE(539), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(538), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(537), - [aux_sym__list_upper_roman_period_repeat1] = STATE(536), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(535), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(534), + [aux_sym__list_task_repeat1] = STATE(396), + [aux_sym__list_definition_repeat1] = STATE(602), + [aux_sym__list_decimal_period_repeat1] = STATE(603), + [aux_sym__list_decimal_paren_repeat1] = STATE(604), + [aux_sym__list_decimal_parens_repeat1] = STATE(605), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(606), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(607), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(608), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(609), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(610), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(611), + [aux_sym__list_lower_roman_period_repeat1] = STATE(612), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(613), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(595), + [aux_sym__list_upper_roman_period_repeat1] = STATE(581), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(559), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(558), [aux_sym_table_repeat1] = STATE(66), - [aux_sym_footnote_content_repeat1] = STATE(12), - [aux_sym__block_quote_prefix_repeat1] = STATE(307), - [aux_sym__inline_repeat1] = STATE(366), - [anon_sym_LBRACK] = ACTIONS(197), - [anon_sym_PIPE] = ACTIONS(199), - [anon_sym_LBRACE] = ACTIONS(201), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__block_close] = ACTIONS(363), - [sym__newline] = ACTIONS(341), - [sym__heading_begin] = ACTIONS(17), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(207), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(209), - [sym__block_quote_continuation] = ACTIONS(343), - [sym__thematic_break_dash] = ACTIONS(211), - [sym__thematic_break_star] = ACTIONS(211), - [sym__footnote_begin] = ACTIONS(213), + [aux_sym_footnote_content_repeat1] = STATE(22), + [aux_sym__block_quote_prefix_repeat1] = STATE(316), + [aux_sym__inline_repeat1] = STATE(355), + [anon_sym_LBRACK] = ACTIONS(216), + [anon_sym_PIPE] = ACTIONS(218), + [anon_sym_LBRACK_CARET] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(220), + [anon_sym_DOT] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(13), + [aux_sym__inline_token1] = ACTIONS(13), + [anon_sym_LBRACE_DASH] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(13), + [anon_sym_PERCENT] = ACTIONS(13), + [sym__newline] = ACTIONS(222), + [sym__heading_begin] = ACTIONS(224), + [sym__div_begin] = ACTIONS(21), + [sym__code_block_begin] = ACTIONS(226), + [sym_list_marker_dash] = ACTIONS(25), + [sym_list_marker_star] = ACTIONS(27), + [sym_list_marker_plus] = ACTIONS(29), + [sym__list_marker_task_begin] = ACTIONS(31), + [sym_list_marker_definition] = ACTIONS(33), + [sym_list_marker_decimal_period] = ACTIONS(35), + [sym_list_marker_lower_alpha_period] = ACTIONS(37), + [sym_list_marker_upper_alpha_period] = ACTIONS(39), + [sym_list_marker_lower_roman_period] = ACTIONS(41), + [sym_list_marker_upper_roman_period] = ACTIONS(43), + [sym_list_marker_decimal_paren] = ACTIONS(45), + [sym_list_marker_lower_alpha_paren] = ACTIONS(47), + [sym_list_marker_upper_alpha_paren] = ACTIONS(49), + [sym_list_marker_lower_roman_paren] = ACTIONS(51), + [sym_list_marker_upper_roman_paren] = ACTIONS(53), + [sym_list_marker_decimal_parens] = ACTIONS(55), + [sym_list_marker_lower_alpha_parens] = ACTIONS(57), + [sym_list_marker_upper_alpha_parens] = ACTIONS(59), + [sym_list_marker_lower_roman_parens] = ACTIONS(61), + [sym_list_marker_upper_roman_parens] = ACTIONS(63), + [sym__block_quote_begin] = ACTIONS(228), + [sym__block_quote_continuation] = ACTIONS(230), + [sym__thematic_break_dash] = ACTIONS(232), + [sym__thematic_break_star] = ACTIONS(232), }, [27] = { - [sym__block_with_heading] = STATE(265), - [sym__block_element] = STATE(265), - [sym_heading] = STATE(265), - [sym_list] = STATE(265), - [sym__list_dash] = STATE(234), + [sym__block_with_heading] = STATE(230), + [sym__block_element] = STATE(230), + [sym_heading] = STATE(230), + [sym_list] = STATE(230), + [sym__list_dash] = STATE(186), [sym__list_item_dash] = STATE(415), - [sym__list_plus] = STATE(234), - [sym__list_item_plus] = STATE(395), - [sym__list_star] = STATE(234), - [sym__list_item_star] = STATE(409), - [sym__list_task] = STATE(234), - [sym__list_item_task] = STATE(389), + [sym__list_plus] = STATE(186), + [sym__list_item_plus] = STATE(406), + [sym__list_star] = STATE(186), + [sym__list_item_star] = STATE(408), + [sym__list_task] = STATE(186), + [sym__list_item_task] = STATE(391), [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(234), - [sym__list_item_definition] = STATE(531), - [sym__list_decimal_period] = STATE(234), - [sym__list_item_decimal_period] = STATE(530), - [sym__list_decimal_paren] = STATE(234), - [sym__list_item_decimal_paren] = STATE(529), - [sym__list_decimal_parens] = STATE(234), - [sym__list_item_decimal_parens] = STATE(527), - [sym__list_lower_alpha_period] = STATE(234), - [sym__list_item_lower_alpha_period] = STATE(526), - [sym__list_lower_alpha_paren] = STATE(234), - [sym__list_item_lower_alpha_paren] = STATE(525), - [sym__list_lower_alpha_parens] = STATE(234), - [sym__list_item_lower_alpha_parens] = STATE(524), - [sym__list_upper_alpha_period] = STATE(234), - [sym__list_item_upper_alpha_period] = STATE(523), - [sym__list_upper_alpha_paren] = STATE(234), - [sym__list_item_upper_alpha_paren] = STATE(522), - [sym__list_upper_alpha_parens] = STATE(234), - [sym__list_item_upper_alpha_parens] = STATE(521), - [sym__list_lower_roman_period] = STATE(234), - [sym__list_item_lower_roman_period] = STATE(520), - [sym__list_lower_roman_paren] = STATE(234), - [sym__list_item_lower_roman_paren] = STATE(519), - [sym__list_lower_roman_parens] = STATE(234), - [sym__list_item_lower_roman_parens] = STATE(518), - [sym__list_upper_roman_period] = STATE(234), - [sym__list_item_upper_roman_period] = STATE(517), - [sym__list_upper_roman_paren] = STATE(234), - [sym__list_item_upper_roman_paren] = STATE(516), - [sym__list_upper_roman_parens] = STATE(234), - [sym__list_item_upper_roman_parens] = STATE(515), - [sym_table] = STATE(265), - [sym__table_content] = STATE(65), - [sym_table_separator] = STATE(65), - [sym_table_row] = STATE(71), - [sym_footnote] = STATE(265), - [sym_footnote_content] = STATE(1040), - [sym_div] = STATE(265), - [sym_div_marker_begin] = STATE(1006), - [sym_code_block] = STATE(265), - [sym_raw_block] = STATE(265), - [sym_thematic_break] = STATE(265), - [sym_block_quote] = STATE(265), - [sym__block_quote_prefix] = STATE(285), - [sym_link_reference_definition] = STATE(265), - [sym_block_attribute] = STATE(265), - [sym__paragraph] = STATE(265), - [sym__paragraph_content] = STATE(856), - [sym__inline] = STATE(703), - [sym__symbol_fallback] = STATE(366), + [sym__list_definition] = STATE(186), + [sym__list_item_definition] = STATE(570), + [sym__list_decimal_period] = STATE(186), + [sym__list_item_decimal_period] = STATE(573), + [sym__list_decimal_paren] = STATE(186), + [sym__list_item_decimal_paren] = STATE(575), + [sym__list_decimal_parens] = STATE(186), + [sym__list_item_decimal_parens] = STATE(578), + [sym__list_lower_alpha_period] = STATE(186), + [sym__list_item_lower_alpha_period] = STATE(495), + [sym__list_lower_alpha_paren] = STATE(186), + [sym__list_item_lower_alpha_paren] = STATE(583), + [sym__list_lower_alpha_parens] = STATE(186), + [sym__list_item_lower_alpha_parens] = STATE(494), + [sym__list_upper_alpha_period] = STATE(186), + [sym__list_item_upper_alpha_period] = STATE(584), + [sym__list_upper_alpha_paren] = STATE(186), + [sym__list_item_upper_alpha_paren] = STATE(586), + [sym__list_upper_alpha_parens] = STATE(186), + [sym__list_item_upper_alpha_parens] = STATE(587), + [sym__list_lower_roman_period] = STATE(186), + [sym__list_item_lower_roman_period] = STATE(588), + [sym__list_lower_roman_paren] = STATE(186), + [sym__list_item_lower_roman_paren] = STATE(590), + [sym__list_lower_roman_parens] = STATE(186), + [sym__list_item_lower_roman_parens] = STATE(591), + [sym__list_upper_roman_period] = STATE(186), + [sym__list_item_upper_roman_period] = STATE(592), + [sym__list_upper_roman_paren] = STATE(186), + [sym__list_item_upper_roman_paren] = STATE(596), + [sym__list_upper_roman_parens] = STATE(186), + [sym__list_item_upper_roman_parens] = STATE(597), + [sym_table] = STATE(230), + [sym__table_content] = STATE(64), + [sym_table_separator] = STATE(64), + [sym_table_row] = STATE(72), + [sym_footnote] = STATE(230), + [sym_footnote_marker_begin] = STATE(1084), + [sym_div] = STATE(230), + [sym_div_marker_begin] = STATE(996), + [sym_code_block] = STATE(230), + [sym_raw_block] = STATE(230), + [sym_thematic_break] = STATE(230), + [sym_block_quote] = STATE(230), + [sym__block_quote_prefix] = STATE(279), + [sym_link_reference_definition] = STATE(230), + [sym_block_attribute] = STATE(230), + [sym__paragraph] = STATE(230), + [sym__paragraph_content] = STATE(811), + [sym__inline] = STATE(710), + [sym__symbol_fallback] = STATE(355), [aux_sym__list_dash_repeat1] = STATE(415), - [aux_sym__list_plus_repeat1] = STATE(395), - [aux_sym__list_star_repeat1] = STATE(409), - [aux_sym__list_task_repeat1] = STATE(389), - [aux_sym__list_definition_repeat1] = STATE(531), - [aux_sym__list_decimal_period_repeat1] = STATE(530), - [aux_sym__list_decimal_paren_repeat1] = STATE(529), - [aux_sym__list_decimal_parens_repeat1] = STATE(527), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(526), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(525), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(524), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(523), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(522), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(521), - [aux_sym__list_lower_roman_period_repeat1] = STATE(520), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(519), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(518), - [aux_sym__list_upper_roman_period_repeat1] = STATE(517), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(516), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(515), - [aux_sym_table_repeat1] = STATE(65), - [aux_sym_footnote_content_repeat1] = STATE(15), - [aux_sym__block_quote_prefix_repeat1] = STATE(323), - [aux_sym__inline_repeat1] = STATE(366), - [anon_sym_LBRACK] = ACTIONS(221), - [anon_sym_PIPE] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(225), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__newline] = ACTIONS(227), - [sym__heading_begin] = ACTIONS(229), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(231), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(233), - [sym__block_quote_continuation] = ACTIONS(235), - [sym__thematic_break_dash] = ACTIONS(237), - [sym__thematic_break_star] = ACTIONS(237), - [sym__footnote_begin] = ACTIONS(239), + [aux_sym__list_plus_repeat1] = STATE(406), + [aux_sym__list_star_repeat1] = STATE(408), + [aux_sym__list_task_repeat1] = STATE(391), + [aux_sym__list_definition_repeat1] = STATE(570), + [aux_sym__list_decimal_period_repeat1] = STATE(573), + [aux_sym__list_decimal_paren_repeat1] = STATE(575), + [aux_sym__list_decimal_parens_repeat1] = STATE(578), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(495), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(583), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(494), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(584), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(586), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(587), + [aux_sym__list_lower_roman_period_repeat1] = STATE(588), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(590), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(591), + [aux_sym__list_upper_roman_period_repeat1] = STATE(592), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(596), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(597), + [aux_sym_table_repeat1] = STATE(64), + [aux_sym_footnote_content_repeat1] = STATE(19), + [aux_sym__block_quote_prefix_repeat1] = STATE(302), + [aux_sym__inline_repeat1] = STATE(355), + [anon_sym_LBRACK] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(73), + [anon_sym_LBRACK_CARET] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DOT] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(13), + [aux_sym__inline_token1] = ACTIONS(13), + [anon_sym_LBRACE_DASH] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(13), + [anon_sym_PERCENT] = ACTIONS(13), + [sym__block_close] = ACTIONS(356), + [sym__newline] = ACTIONS(236), + [sym__heading_begin] = ACTIONS(19), + [sym__div_begin] = ACTIONS(21), + [sym__code_block_begin] = ACTIONS(81), + [sym_list_marker_dash] = ACTIONS(25), + [sym_list_marker_star] = ACTIONS(27), + [sym_list_marker_plus] = ACTIONS(29), + [sym__list_marker_task_begin] = ACTIONS(31), + [sym_list_marker_definition] = ACTIONS(33), + [sym_list_marker_decimal_period] = ACTIONS(35), + [sym_list_marker_lower_alpha_period] = ACTIONS(37), + [sym_list_marker_upper_alpha_period] = ACTIONS(39), + [sym_list_marker_lower_roman_period] = ACTIONS(41), + [sym_list_marker_upper_roman_period] = ACTIONS(43), + [sym_list_marker_decimal_paren] = ACTIONS(45), + [sym_list_marker_lower_alpha_paren] = ACTIONS(47), + [sym_list_marker_upper_alpha_paren] = ACTIONS(49), + [sym_list_marker_lower_roman_paren] = ACTIONS(51), + [sym_list_marker_upper_roman_paren] = ACTIONS(53), + [sym_list_marker_decimal_parens] = ACTIONS(55), + [sym_list_marker_lower_alpha_parens] = ACTIONS(57), + [sym_list_marker_upper_alpha_parens] = ACTIONS(59), + [sym_list_marker_lower_roman_parens] = ACTIONS(61), + [sym_list_marker_upper_roman_parens] = ACTIONS(63), + [sym__block_quote_begin] = ACTIONS(83), + [sym__block_quote_continuation] = ACTIONS(238), + [sym__thematic_break_dash] = ACTIONS(85), + [sym__thematic_break_star] = ACTIONS(85), }, [28] = { - [sym__block_with_heading] = STATE(265), - [sym__block_element] = STATE(265), - [sym_heading] = STATE(265), - [sym_list] = STATE(265), - [sym__list_dash] = STATE(234), - [sym__list_item_dash] = STATE(415), - [sym__list_plus] = STATE(234), - [sym__list_item_plus] = STATE(395), - [sym__list_star] = STATE(234), - [sym__list_item_star] = STATE(409), - [sym__list_task] = STATE(234), - [sym__list_item_task] = STATE(389), + [sym__block_with_heading] = STATE(167), + [sym__block_element] = STATE(167), + [sym_heading] = STATE(167), + [sym_list] = STATE(167), + [sym__list_dash] = STATE(153), + [sym__list_item_dash] = STATE(409), + [sym__list_plus] = STATE(153), + [sym__list_item_plus] = STATE(410), + [sym__list_star] = STATE(153), + [sym__list_item_star] = STATE(407), + [sym__list_task] = STATE(153), + [sym__list_item_task] = STATE(396), [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(234), - [sym__list_item_definition] = STATE(531), - [sym__list_decimal_period] = STATE(234), - [sym__list_item_decimal_period] = STATE(530), - [sym__list_decimal_paren] = STATE(234), - [sym__list_item_decimal_paren] = STATE(529), - [sym__list_decimal_parens] = STATE(234), - [sym__list_item_decimal_parens] = STATE(527), - [sym__list_lower_alpha_period] = STATE(234), - [sym__list_item_lower_alpha_period] = STATE(526), - [sym__list_lower_alpha_paren] = STATE(234), - [sym__list_item_lower_alpha_paren] = STATE(525), - [sym__list_lower_alpha_parens] = STATE(234), - [sym__list_item_lower_alpha_parens] = STATE(524), - [sym__list_upper_alpha_period] = STATE(234), - [sym__list_item_upper_alpha_period] = STATE(523), - [sym__list_upper_alpha_paren] = STATE(234), - [sym__list_item_upper_alpha_paren] = STATE(522), - [sym__list_upper_alpha_parens] = STATE(234), - [sym__list_item_upper_alpha_parens] = STATE(521), - [sym__list_lower_roman_period] = STATE(234), - [sym__list_item_lower_roman_period] = STATE(520), - [sym__list_lower_roman_paren] = STATE(234), - [sym__list_item_lower_roman_paren] = STATE(519), - [sym__list_lower_roman_parens] = STATE(234), - [sym__list_item_lower_roman_parens] = STATE(518), - [sym__list_upper_roman_period] = STATE(234), - [sym__list_item_upper_roman_period] = STATE(517), - [sym__list_upper_roman_paren] = STATE(234), - [sym__list_item_upper_roman_paren] = STATE(516), - [sym__list_upper_roman_parens] = STATE(234), - [sym__list_item_upper_roman_parens] = STATE(515), - [sym_table] = STATE(265), - [sym__table_content] = STATE(65), - [sym_table_separator] = STATE(65), + [sym__list_definition] = STATE(153), + [sym__list_item_definition] = STATE(602), + [sym__list_decimal_period] = STATE(153), + [sym__list_item_decimal_period] = STATE(603), + [sym__list_decimal_paren] = STATE(153), + [sym__list_item_decimal_paren] = STATE(604), + [sym__list_decimal_parens] = STATE(153), + [sym__list_item_decimal_parens] = STATE(605), + [sym__list_lower_alpha_period] = STATE(153), + [sym__list_item_lower_alpha_period] = STATE(606), + [sym__list_lower_alpha_paren] = STATE(153), + [sym__list_item_lower_alpha_paren] = STATE(607), + [sym__list_lower_alpha_parens] = STATE(153), + [sym__list_item_lower_alpha_parens] = STATE(608), + [sym__list_upper_alpha_period] = STATE(153), + [sym__list_item_upper_alpha_period] = STATE(609), + [sym__list_upper_alpha_paren] = STATE(153), + [sym__list_item_upper_alpha_paren] = STATE(610), + [sym__list_upper_alpha_parens] = STATE(153), + [sym__list_item_upper_alpha_parens] = STATE(611), + [sym__list_lower_roman_period] = STATE(153), + [sym__list_item_lower_roman_period] = STATE(612), + [sym__list_lower_roman_paren] = STATE(153), + [sym__list_item_lower_roman_paren] = STATE(613), + [sym__list_lower_roman_parens] = STATE(153), + [sym__list_item_lower_roman_parens] = STATE(595), + [sym__list_upper_roman_period] = STATE(153), + [sym__list_item_upper_roman_period] = STATE(581), + [sym__list_upper_roman_paren] = STATE(153), + [sym__list_item_upper_roman_paren] = STATE(559), + [sym__list_upper_roman_parens] = STATE(153), + [sym__list_item_upper_roman_parens] = STATE(558), + [sym_table] = STATE(167), + [sym__table_content] = STATE(66), + [sym_table_separator] = STATE(66), [sym_table_row] = STATE(71), - [sym_footnote] = STATE(265), - [sym_div] = STATE(265), - [sym_div_marker_begin] = STATE(1006), - [sym_code_block] = STATE(265), - [sym_raw_block] = STATE(265), - [sym_thematic_break] = STATE(265), - [sym_block_quote] = STATE(265), - [sym__block_quote_prefix] = STATE(285), - [sym_link_reference_definition] = STATE(265), - [sym_block_attribute] = STATE(265), - [sym__paragraph] = STATE(265), - [sym__paragraph_content] = STATE(856), - [sym__inline] = STATE(703), - [sym__symbol_fallback] = STATE(366), - [aux_sym__list_dash_repeat1] = STATE(415), - [aux_sym__list_plus_repeat1] = STATE(395), - [aux_sym__list_star_repeat1] = STATE(409), - [aux_sym__list_task_repeat1] = STATE(389), - [aux_sym__list_definition_repeat1] = STATE(531), - [aux_sym__list_decimal_period_repeat1] = STATE(530), - [aux_sym__list_decimal_paren_repeat1] = STATE(529), - [aux_sym__list_decimal_parens_repeat1] = STATE(527), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(526), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(525), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(524), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(523), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(522), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(521), - [aux_sym__list_lower_roman_period_repeat1] = STATE(520), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(519), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(518), - [aux_sym__list_upper_roman_period_repeat1] = STATE(517), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(516), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(515), - [aux_sym_table_repeat1] = STATE(65), + [sym_footnote] = STATE(167), + [sym_footnote_marker_begin] = STATE(1086), + [sym_div] = STATE(167), + [sym_div_marker_begin] = STATE(1017), + [sym_code_block] = STATE(167), + [sym_raw_block] = STATE(167), + [sym_thematic_break] = STATE(167), + [sym_block_quote] = STATE(167), + [sym__block_quote_prefix] = STATE(286), + [sym_link_reference_definition] = STATE(167), + [sym_block_attribute] = STATE(167), + [sym__paragraph] = STATE(167), + [sym__paragraph_content] = STATE(867), + [sym__inline] = STATE(710), + [sym__symbol_fallback] = STATE(355), + [aux_sym__list_dash_repeat1] = STATE(409), + [aux_sym__list_plus_repeat1] = STATE(410), + [aux_sym__list_star_repeat1] = STATE(407), + [aux_sym__list_task_repeat1] = STATE(396), + [aux_sym__list_definition_repeat1] = STATE(602), + [aux_sym__list_decimal_period_repeat1] = STATE(603), + [aux_sym__list_decimal_paren_repeat1] = STATE(604), + [aux_sym__list_decimal_parens_repeat1] = STATE(605), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(606), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(607), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(608), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(609), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(610), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(611), + [aux_sym__list_lower_roman_period_repeat1] = STATE(612), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(613), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(595), + [aux_sym__list_upper_roman_period_repeat1] = STATE(581), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(559), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(558), + [aux_sym_table_repeat1] = STATE(66), [aux_sym_footnote_content_repeat1] = STATE(28), - [aux_sym__block_quote_prefix_repeat1] = STATE(323), - [aux_sym__inline_repeat1] = STATE(366), - [anon_sym_LBRACK] = ACTIONS(365), - [anon_sym_PIPE] = ACTIONS(368), - [anon_sym_LBRACE] = ACTIONS(371), - [aux_sym__inline_token1] = ACTIONS(250), - [anon_sym_LBRACE_DASH] = ACTIONS(250), - [sym__newline] = ACTIONS(374), - [sym__heading_begin] = ACTIONS(377), - [sym__div_begin] = ACTIONS(261), - [sym__code_block_begin] = ACTIONS(380), - [sym_list_marker_dash] = ACTIONS(267), - [sym_list_marker_star] = ACTIONS(270), - [sym_list_marker_plus] = ACTIONS(273), - [sym__list_marker_task_begin] = ACTIONS(276), - [sym_list_marker_definition] = ACTIONS(279), - [sym_list_marker_decimal_period] = ACTIONS(282), - [sym_list_marker_lower_alpha_period] = ACTIONS(285), - [sym_list_marker_upper_alpha_period] = ACTIONS(288), - [sym_list_marker_lower_roman_period] = ACTIONS(291), - [sym_list_marker_upper_roman_period] = ACTIONS(294), - [sym_list_marker_decimal_paren] = ACTIONS(297), - [sym_list_marker_lower_alpha_paren] = ACTIONS(300), - [sym_list_marker_upper_alpha_paren] = ACTIONS(303), - [sym_list_marker_lower_roman_paren] = ACTIONS(306), - [sym_list_marker_upper_roman_paren] = ACTIONS(309), - [sym_list_marker_decimal_parens] = ACTIONS(312), - [sym_list_marker_lower_alpha_parens] = ACTIONS(315), - [sym_list_marker_upper_alpha_parens] = ACTIONS(318), - [sym_list_marker_lower_roman_parens] = ACTIONS(321), - [sym_list_marker_upper_roman_parens] = ACTIONS(324), - [sym__block_quote_begin] = ACTIONS(383), - [sym__block_quote_continuation] = ACTIONS(386), - [sym__thematic_break_dash] = ACTIONS(389), - [sym__thematic_break_star] = ACTIONS(389), - [sym__footnote_begin] = ACTIONS(392), - [sym__footnote_end] = ACTIONS(253), + [aux_sym__block_quote_prefix_repeat1] = STATE(316), + [aux_sym__inline_repeat1] = STATE(355), + [anon_sym_LBRACK] = ACTIONS(358), + [anon_sym_PIPE] = ACTIONS(361), + [anon_sym_LBRACK_CARET] = ACTIONS(254), + [anon_sym_LBRACE] = ACTIONS(364), + [anon_sym_DOT] = ACTIONS(260), + [aux_sym_identifier_token1] = ACTIONS(260), + [aux_sym__inline_token1] = ACTIONS(260), + [anon_sym_LBRACE_DASH] = ACTIONS(260), + [anon_sym_POUND] = ACTIONS(260), + [anon_sym_PERCENT] = ACTIONS(260), + [sym__newline] = ACTIONS(367), + [sym__heading_begin] = ACTIONS(370), + [sym__div_begin] = ACTIONS(271), + [sym__code_block_begin] = ACTIONS(373), + [sym_list_marker_dash] = ACTIONS(277), + [sym_list_marker_star] = ACTIONS(280), + [sym_list_marker_plus] = ACTIONS(283), + [sym__list_marker_task_begin] = ACTIONS(286), + [sym_list_marker_definition] = ACTIONS(289), + [sym_list_marker_decimal_period] = ACTIONS(292), + [sym_list_marker_lower_alpha_period] = ACTIONS(295), + [sym_list_marker_upper_alpha_period] = ACTIONS(298), + [sym_list_marker_lower_roman_period] = ACTIONS(301), + [sym_list_marker_upper_roman_period] = ACTIONS(304), + [sym_list_marker_decimal_paren] = ACTIONS(307), + [sym_list_marker_lower_alpha_paren] = ACTIONS(310), + [sym_list_marker_upper_alpha_paren] = ACTIONS(313), + [sym_list_marker_lower_roman_paren] = ACTIONS(316), + [sym_list_marker_upper_roman_paren] = ACTIONS(319), + [sym_list_marker_decimal_parens] = ACTIONS(322), + [sym_list_marker_lower_alpha_parens] = ACTIONS(325), + [sym_list_marker_upper_alpha_parens] = ACTIONS(328), + [sym_list_marker_lower_roman_parens] = ACTIONS(331), + [sym_list_marker_upper_roman_parens] = ACTIONS(334), + [sym__block_quote_begin] = ACTIONS(376), + [sym__block_quote_continuation] = ACTIONS(379), + [sym__thematic_break_dash] = ACTIONS(382), + [sym__thematic_break_star] = ACTIONS(382), + [sym__footnote_end] = ACTIONS(263), }, [29] = { - [sym__block_with_heading] = STATE(433), - [sym__block_element] = STATE(433), - [sym_heading] = STATE(433), - [sym_list] = STATE(433), - [sym__list_dash] = STATE(699), - [sym__list_item_dash] = STATE(413), - [sym__list_plus] = STATE(699), - [sym__list_item_plus] = STATE(418), - [sym__list_star] = STATE(699), - [sym__list_item_star] = STATE(417), - [sym__list_task] = STATE(699), - [sym__list_item_task] = STATE(381), + [sym__block_with_heading] = STATE(432), + [sym__block_element] = STATE(432), + [sym_heading] = STATE(432), + [sym_list] = STATE(432), + [sym__list_dash] = STATE(618), + [sym__list_item_dash] = STATE(420), + [sym__list_plus] = STATE(618), + [sym__list_item_plus] = STATE(421), + [sym__list_star] = STATE(618), + [sym__list_item_star] = STATE(422), + [sym__list_task] = STATE(618), + [sym__list_item_task] = STATE(404), [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(699), - [sym__list_item_definition] = STATE(582), - [sym__list_decimal_period] = STATE(699), - [sym__list_item_decimal_period] = STATE(581), - [sym__list_decimal_paren] = STATE(699), - [sym__list_item_decimal_paren] = STATE(579), - [sym__list_decimal_parens] = STATE(699), - [sym__list_item_decimal_parens] = STATE(578), - [sym__list_lower_alpha_period] = STATE(699), - [sym__list_item_lower_alpha_period] = STATE(577), - [sym__list_lower_alpha_paren] = STATE(699), - [sym__list_item_lower_alpha_paren] = STATE(576), - [sym__list_lower_alpha_parens] = STATE(699), - [sym__list_item_lower_alpha_parens] = STATE(575), - [sym__list_upper_alpha_period] = STATE(699), - [sym__list_item_upper_alpha_period] = STATE(574), - [sym__list_upper_alpha_paren] = STATE(699), - [sym__list_item_upper_alpha_paren] = STATE(573), - [sym__list_upper_alpha_parens] = STATE(699), - [sym__list_item_upper_alpha_parens] = STATE(572), - [sym__list_lower_roman_period] = STATE(699), - [sym__list_item_lower_roman_period] = STATE(571), - [sym__list_lower_roman_paren] = STATE(699), - [sym__list_item_lower_roman_paren] = STATE(570), - [sym__list_lower_roman_parens] = STATE(699), - [sym__list_item_lower_roman_parens] = STATE(569), - [sym__list_upper_roman_period] = STATE(699), - [sym__list_item_upper_roman_period] = STATE(568), - [sym__list_upper_roman_paren] = STATE(699), - [sym__list_item_upper_roman_paren] = STATE(567), - [sym__list_upper_roman_parens] = STATE(699), - [sym__list_item_upper_roman_parens] = STATE(566), - [sym_list_item_content] = STATE(862), - [sym_table] = STATE(433), - [sym__table_content] = STATE(289), - [sym_table_separator] = STATE(289), - [sym_table_row] = STATE(363), - [sym_footnote] = STATE(433), - [sym_div] = STATE(433), - [sym_div_marker_begin] = STATE(941), - [sym_code_block] = STATE(433), - [sym_raw_block] = STATE(433), - [sym_thematic_break] = STATE(433), - [sym_block_quote] = STATE(433), - [sym__block_quote_prefix] = STATE(288), - [sym_link_reference_definition] = STATE(433), - [sym_block_attribute] = STATE(433), - [sym__paragraph] = STATE(433), - [sym__paragraph_content] = STATE(764), - [sym__inline] = STATE(703), - [sym__symbol_fallback] = STATE(366), - [aux_sym__list_dash_repeat1] = STATE(413), - [aux_sym__list_plus_repeat1] = STATE(418), - [aux_sym__list_star_repeat1] = STATE(417), - [aux_sym__list_task_repeat1] = STATE(381), - [aux_sym__list_definition_repeat1] = STATE(582), - [aux_sym__list_decimal_period_repeat1] = STATE(581), - [aux_sym__list_decimal_paren_repeat1] = STATE(579), - [aux_sym__list_decimal_parens_repeat1] = STATE(578), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(577), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(576), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(575), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(574), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(573), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(572), - [aux_sym__list_lower_roman_period_repeat1] = STATE(571), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(570), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(569), - [aux_sym__list_upper_roman_period_repeat1] = STATE(568), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(567), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(566), - [aux_sym_table_repeat1] = STATE(289), - [aux_sym__block_quote_prefix_repeat1] = STATE(323), - [aux_sym__inline_repeat1] = STATE(366), - [anon_sym_LBRACK] = ACTIONS(395), - [anon_sym_PIPE] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(399), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__newline] = ACTIONS(401), - [sym__heading_begin] = ACTIONS(403), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(405), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(407), - [sym__block_quote_continuation] = ACTIONS(409), - [sym__thematic_break_dash] = ACTIONS(411), - [sym__thematic_break_star] = ACTIONS(411), - [sym__footnote_begin] = ACTIONS(413), + [sym__list_definition] = STATE(618), + [sym__list_item_definition] = STATE(527), + [sym__list_decimal_period] = STATE(618), + [sym__list_item_decimal_period] = STATE(524), + [sym__list_decimal_paren] = STATE(618), + [sym__list_item_decimal_paren] = STATE(521), + [sym__list_decimal_parens] = STATE(618), + [sym__list_item_decimal_parens] = STATE(520), + [sym__list_lower_alpha_period] = STATE(618), + [sym__list_item_lower_alpha_period] = STATE(518), + [sym__list_lower_alpha_paren] = STATE(618), + [sym__list_item_lower_alpha_paren] = STATE(517), + [sym__list_lower_alpha_parens] = STATE(618), + [sym__list_item_lower_alpha_parens] = STATE(515), + [sym__list_upper_alpha_period] = STATE(618), + [sym__list_item_upper_alpha_period] = STATE(514), + [sym__list_upper_alpha_paren] = STATE(618), + [sym__list_item_upper_alpha_paren] = STATE(510), + [sym__list_upper_alpha_parens] = STATE(618), + [sym__list_item_upper_alpha_parens] = STATE(501), + [sym__list_lower_roman_period] = STATE(618), + [sym__list_item_lower_roman_period] = STATE(500), + [sym__list_lower_roman_paren] = STATE(618), + [sym__list_item_lower_roman_paren] = STATE(499), + [sym__list_lower_roman_parens] = STATE(618), + [sym__list_item_lower_roman_parens] = STATE(498), + [sym__list_upper_roman_period] = STATE(618), + [sym__list_item_upper_roman_period] = STATE(497), + [sym__list_upper_roman_paren] = STATE(618), + [sym__list_item_upper_roman_paren] = STATE(496), + [sym__list_upper_roman_parens] = STATE(618), + [sym__list_item_upper_roman_parens] = STATE(579), + [sym_list_item_content] = STATE(860), + [sym_table] = STATE(432), + [sym__table_content] = STATE(358), + [sym_table_separator] = STATE(358), + [sym_table_row] = STATE(383), + [sym_footnote] = STATE(432), + [sym_footnote_marker_begin] = STATE(1080), + [sym_div] = STATE(432), + [sym_div_marker_begin] = STATE(952), + [sym_code_block] = STATE(432), + [sym_raw_block] = STATE(432), + [sym_thematic_break] = STATE(432), + [sym_block_quote] = STATE(432), + [sym__block_quote_prefix] = STATE(285), + [sym_link_reference_definition] = STATE(432), + [sym_block_attribute] = STATE(432), + [sym__paragraph] = STATE(432), + [sym__paragraph_content] = STATE(890), + [sym__inline] = STATE(710), + [sym__symbol_fallback] = STATE(355), + [aux_sym__list_dash_repeat1] = STATE(420), + [aux_sym__list_plus_repeat1] = STATE(421), + [aux_sym__list_star_repeat1] = STATE(422), + [aux_sym__list_task_repeat1] = STATE(404), + [aux_sym__list_definition_repeat1] = STATE(527), + [aux_sym__list_decimal_period_repeat1] = STATE(524), + [aux_sym__list_decimal_paren_repeat1] = STATE(521), + [aux_sym__list_decimal_parens_repeat1] = STATE(520), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(518), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(515), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(514), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(510), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(501), + [aux_sym__list_lower_roman_period_repeat1] = STATE(500), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(499), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(498), + [aux_sym__list_upper_roman_period_repeat1] = STATE(497), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(579), + [aux_sym_table_repeat1] = STATE(358), + [aux_sym__block_quote_prefix_repeat1] = STATE(316), + [aux_sym__inline_repeat1] = STATE(355), + [anon_sym_LBRACK] = ACTIONS(385), + [anon_sym_PIPE] = ACTIONS(387), + [anon_sym_LBRACK_CARET] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_DOT] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(13), + [aux_sym__inline_token1] = ACTIONS(13), + [anon_sym_LBRACE_DASH] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(13), + [anon_sym_PERCENT] = ACTIONS(13), + [sym__newline] = ACTIONS(391), + [sym__heading_begin] = ACTIONS(393), + [sym__div_begin] = ACTIONS(21), + [sym__code_block_begin] = ACTIONS(395), + [sym_list_marker_dash] = ACTIONS(25), + [sym_list_marker_star] = ACTIONS(27), + [sym_list_marker_plus] = ACTIONS(29), + [sym__list_marker_task_begin] = ACTIONS(31), + [sym_list_marker_definition] = ACTIONS(33), + [sym_list_marker_decimal_period] = ACTIONS(35), + [sym_list_marker_lower_alpha_period] = ACTIONS(37), + [sym_list_marker_upper_alpha_period] = ACTIONS(39), + [sym_list_marker_lower_roman_period] = ACTIONS(41), + [sym_list_marker_upper_roman_period] = ACTIONS(43), + [sym_list_marker_decimal_paren] = ACTIONS(45), + [sym_list_marker_lower_alpha_paren] = ACTIONS(47), + [sym_list_marker_upper_alpha_paren] = ACTIONS(49), + [sym_list_marker_lower_roman_paren] = ACTIONS(51), + [sym_list_marker_upper_roman_paren] = ACTIONS(53), + [sym_list_marker_decimal_parens] = ACTIONS(55), + [sym_list_marker_lower_alpha_parens] = ACTIONS(57), + [sym_list_marker_upper_alpha_parens] = ACTIONS(59), + [sym_list_marker_lower_roman_parens] = ACTIONS(61), + [sym_list_marker_upper_roman_parens] = ACTIONS(63), + [sym__block_quote_begin] = ACTIONS(397), + [sym__block_quote_continuation] = ACTIONS(399), + [sym__thematic_break_dash] = ACTIONS(401), + [sym__thematic_break_star] = ACTIONS(401), }, [30] = { - [sym__block_with_heading] = STATE(460), - [sym__block_element] = STATE(460), - [sym_heading] = STATE(460), - [sym_list] = STATE(460), - [sym__list_dash] = STATE(699), - [sym__list_item_dash] = STATE(413), - [sym__list_plus] = STATE(699), - [sym__list_item_plus] = STATE(418), - [sym__list_star] = STATE(699), - [sym__list_item_star] = STATE(417), - [sym__list_task] = STATE(699), - [sym__list_item_task] = STATE(381), + [sym__block_with_heading] = STATE(479), + [sym__block_element] = STATE(479), + [sym_heading] = STATE(479), + [sym_list] = STATE(479), + [sym__list_dash] = STATE(618), + [sym__list_item_dash] = STATE(420), + [sym__list_plus] = STATE(618), + [sym__list_item_plus] = STATE(421), + [sym__list_star] = STATE(618), + [sym__list_item_star] = STATE(422), + [sym__list_task] = STATE(618), + [sym__list_item_task] = STATE(404), [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(699), - [sym__list_item_definition] = STATE(582), - [sym__list_decimal_period] = STATE(699), - [sym__list_item_decimal_period] = STATE(581), - [sym__list_decimal_paren] = STATE(699), - [sym__list_item_decimal_paren] = STATE(579), - [sym__list_decimal_parens] = STATE(699), - [sym__list_item_decimal_parens] = STATE(578), - [sym__list_lower_alpha_period] = STATE(699), - [sym__list_item_lower_alpha_period] = STATE(577), - [sym__list_lower_alpha_paren] = STATE(699), - [sym__list_item_lower_alpha_paren] = STATE(576), - [sym__list_lower_alpha_parens] = STATE(699), - [sym__list_item_lower_alpha_parens] = STATE(575), - [sym__list_upper_alpha_period] = STATE(699), - [sym__list_item_upper_alpha_period] = STATE(574), - [sym__list_upper_alpha_paren] = STATE(699), - [sym__list_item_upper_alpha_paren] = STATE(573), - [sym__list_upper_alpha_parens] = STATE(699), - [sym__list_item_upper_alpha_parens] = STATE(572), - [sym__list_lower_roman_period] = STATE(699), - [sym__list_item_lower_roman_period] = STATE(571), - [sym__list_lower_roman_paren] = STATE(699), - [sym__list_item_lower_roman_paren] = STATE(570), - [sym__list_lower_roman_parens] = STATE(699), - [sym__list_item_lower_roman_parens] = STATE(569), - [sym__list_upper_roman_period] = STATE(699), - [sym__list_item_upper_roman_period] = STATE(568), - [sym__list_upper_roman_paren] = STATE(699), - [sym__list_item_upper_roman_paren] = STATE(567), - [sym__list_upper_roman_parens] = STATE(699), - [sym__list_item_upper_roman_parens] = STATE(566), - [sym_list_item_content] = STATE(816), - [sym_table] = STATE(460), - [sym__table_content] = STATE(289), - [sym_table_separator] = STATE(289), - [sym_table_row] = STATE(363), - [sym_footnote] = STATE(460), - [sym_div] = STATE(460), - [sym_div_marker_begin] = STATE(941), - [sym_code_block] = STATE(460), - [sym_raw_block] = STATE(460), - [sym_thematic_break] = STATE(460), - [sym_block_quote] = STATE(460), - [sym__block_quote_prefix] = STATE(288), - [sym_link_reference_definition] = STATE(460), - [sym_block_attribute] = STATE(460), - [sym__paragraph] = STATE(460), - [sym__paragraph_content] = STATE(764), - [sym__inline] = STATE(703), - [sym__symbol_fallback] = STATE(366), - [aux_sym__list_dash_repeat1] = STATE(413), - [aux_sym__list_plus_repeat1] = STATE(418), - [aux_sym__list_star_repeat1] = STATE(417), - [aux_sym__list_task_repeat1] = STATE(381), - [aux_sym__list_definition_repeat1] = STATE(582), - [aux_sym__list_decimal_period_repeat1] = STATE(581), - [aux_sym__list_decimal_paren_repeat1] = STATE(579), - [aux_sym__list_decimal_parens_repeat1] = STATE(578), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(577), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(576), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(575), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(574), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(573), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(572), - [aux_sym__list_lower_roman_period_repeat1] = STATE(571), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(570), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(569), - [aux_sym__list_upper_roman_period_repeat1] = STATE(568), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(567), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(566), - [aux_sym_table_repeat1] = STATE(289), - [aux_sym__block_quote_prefix_repeat1] = STATE(323), - [aux_sym__inline_repeat1] = STATE(366), - [anon_sym_LBRACK] = ACTIONS(395), - [anon_sym_PIPE] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(399), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__newline] = ACTIONS(415), - [sym__heading_begin] = ACTIONS(403), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(405), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(407), - [sym__block_quote_continuation] = ACTIONS(409), - [sym__thematic_break_dash] = ACTIONS(411), - [sym__thematic_break_star] = ACTIONS(411), - [sym__footnote_begin] = ACTIONS(413), + [sym__list_definition] = STATE(618), + [sym__list_item_definition] = STATE(527), + [sym__list_decimal_period] = STATE(618), + [sym__list_item_decimal_period] = STATE(524), + [sym__list_decimal_paren] = STATE(618), + [sym__list_item_decimal_paren] = STATE(521), + [sym__list_decimal_parens] = STATE(618), + [sym__list_item_decimal_parens] = STATE(520), + [sym__list_lower_alpha_period] = STATE(618), + [sym__list_item_lower_alpha_period] = STATE(518), + [sym__list_lower_alpha_paren] = STATE(618), + [sym__list_item_lower_alpha_paren] = STATE(517), + [sym__list_lower_alpha_parens] = STATE(618), + [sym__list_item_lower_alpha_parens] = STATE(515), + [sym__list_upper_alpha_period] = STATE(618), + [sym__list_item_upper_alpha_period] = STATE(514), + [sym__list_upper_alpha_paren] = STATE(618), + [sym__list_item_upper_alpha_paren] = STATE(510), + [sym__list_upper_alpha_parens] = STATE(618), + [sym__list_item_upper_alpha_parens] = STATE(501), + [sym__list_lower_roman_period] = STATE(618), + [sym__list_item_lower_roman_period] = STATE(500), + [sym__list_lower_roman_paren] = STATE(618), + [sym__list_item_lower_roman_paren] = STATE(499), + [sym__list_lower_roman_parens] = STATE(618), + [sym__list_item_lower_roman_parens] = STATE(498), + [sym__list_upper_roman_period] = STATE(618), + [sym__list_item_upper_roman_period] = STATE(497), + [sym__list_upper_roman_paren] = STATE(618), + [sym__list_item_upper_roman_paren] = STATE(496), + [sym__list_upper_roman_parens] = STATE(618), + [sym__list_item_upper_roman_parens] = STATE(579), + [sym_list_item_content] = STATE(686), + [sym_table] = STATE(479), + [sym__table_content] = STATE(358), + [sym_table_separator] = STATE(358), + [sym_table_row] = STATE(383), + [sym_footnote] = STATE(479), + [sym_footnote_marker_begin] = STATE(1080), + [sym_div] = STATE(479), + [sym_div_marker_begin] = STATE(952), + [sym_code_block] = STATE(479), + [sym_raw_block] = STATE(479), + [sym_thematic_break] = STATE(479), + [sym_block_quote] = STATE(479), + [sym__block_quote_prefix] = STATE(285), + [sym_link_reference_definition] = STATE(479), + [sym_block_attribute] = STATE(479), + [sym__paragraph] = STATE(479), + [sym__paragraph_content] = STATE(890), + [sym__inline] = STATE(710), + [sym__symbol_fallback] = STATE(355), + [aux_sym__list_dash_repeat1] = STATE(420), + [aux_sym__list_plus_repeat1] = STATE(421), + [aux_sym__list_star_repeat1] = STATE(422), + [aux_sym__list_task_repeat1] = STATE(404), + [aux_sym__list_definition_repeat1] = STATE(527), + [aux_sym__list_decimal_period_repeat1] = STATE(524), + [aux_sym__list_decimal_paren_repeat1] = STATE(521), + [aux_sym__list_decimal_parens_repeat1] = STATE(520), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(518), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(515), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(514), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(510), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(501), + [aux_sym__list_lower_roman_period_repeat1] = STATE(500), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(499), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(498), + [aux_sym__list_upper_roman_period_repeat1] = STATE(497), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(579), + [aux_sym_table_repeat1] = STATE(358), + [aux_sym__block_quote_prefix_repeat1] = STATE(316), + [aux_sym__inline_repeat1] = STATE(355), + [anon_sym_LBRACK] = ACTIONS(385), + [anon_sym_PIPE] = ACTIONS(387), + [anon_sym_LBRACK_CARET] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_DOT] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(13), + [aux_sym__inline_token1] = ACTIONS(13), + [anon_sym_LBRACE_DASH] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(13), + [anon_sym_PERCENT] = ACTIONS(13), + [sym__newline] = ACTIONS(403), + [sym__heading_begin] = ACTIONS(393), + [sym__div_begin] = ACTIONS(21), + [sym__code_block_begin] = ACTIONS(395), + [sym_list_marker_dash] = ACTIONS(25), + [sym_list_marker_star] = ACTIONS(27), + [sym_list_marker_plus] = ACTIONS(29), + [sym__list_marker_task_begin] = ACTIONS(31), + [sym_list_marker_definition] = ACTIONS(33), + [sym_list_marker_decimal_period] = ACTIONS(35), + [sym_list_marker_lower_alpha_period] = ACTIONS(37), + [sym_list_marker_upper_alpha_period] = ACTIONS(39), + [sym_list_marker_lower_roman_period] = ACTIONS(41), + [sym_list_marker_upper_roman_period] = ACTIONS(43), + [sym_list_marker_decimal_paren] = ACTIONS(45), + [sym_list_marker_lower_alpha_paren] = ACTIONS(47), + [sym_list_marker_upper_alpha_paren] = ACTIONS(49), + [sym_list_marker_lower_roman_paren] = ACTIONS(51), + [sym_list_marker_upper_roman_paren] = ACTIONS(53), + [sym_list_marker_decimal_parens] = ACTIONS(55), + [sym_list_marker_lower_alpha_parens] = ACTIONS(57), + [sym_list_marker_upper_alpha_parens] = ACTIONS(59), + [sym_list_marker_lower_roman_parens] = ACTIONS(61), + [sym_list_marker_upper_roman_parens] = ACTIONS(63), + [sym__block_quote_begin] = ACTIONS(397), + [sym__block_quote_continuation] = ACTIONS(399), + [sym__thematic_break_dash] = ACTIONS(401), + [sym__thematic_break_star] = ACTIONS(401), }, [31] = { - [sym__block_with_heading] = STATE(440), - [sym__block_element] = STATE(440), - [sym_heading] = STATE(440), - [sym_list] = STATE(440), - [sym__list_dash] = STATE(699), - [sym__list_item_dash] = STATE(413), - [sym__list_plus] = STATE(699), - [sym__list_item_plus] = STATE(418), - [sym__list_star] = STATE(699), - [sym__list_item_star] = STATE(417), - [sym__list_task] = STATE(699), - [sym__list_item_task] = STATE(381), + [sym__block_with_heading] = STATE(447), + [sym__block_element] = STATE(447), + [sym_heading] = STATE(447), + [sym_list] = STATE(447), + [sym__list_dash] = STATE(618), + [sym__list_item_dash] = STATE(420), + [sym__list_plus] = STATE(618), + [sym__list_item_plus] = STATE(421), + [sym__list_star] = STATE(618), + [sym__list_item_star] = STATE(422), + [sym__list_task] = STATE(618), + [sym__list_item_task] = STATE(404), [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(699), - [sym__list_item_definition] = STATE(582), - [sym__list_decimal_period] = STATE(699), - [sym__list_item_decimal_period] = STATE(581), - [sym__list_decimal_paren] = STATE(699), - [sym__list_item_decimal_paren] = STATE(579), - [sym__list_decimal_parens] = STATE(699), - [sym__list_item_decimal_parens] = STATE(578), - [sym__list_lower_alpha_period] = STATE(699), - [sym__list_item_lower_alpha_period] = STATE(577), - [sym__list_lower_alpha_paren] = STATE(699), - [sym__list_item_lower_alpha_paren] = STATE(576), - [sym__list_lower_alpha_parens] = STATE(699), - [sym__list_item_lower_alpha_parens] = STATE(575), - [sym__list_upper_alpha_period] = STATE(699), - [sym__list_item_upper_alpha_period] = STATE(574), - [sym__list_upper_alpha_paren] = STATE(699), - [sym__list_item_upper_alpha_paren] = STATE(573), - [sym__list_upper_alpha_parens] = STATE(699), - [sym__list_item_upper_alpha_parens] = STATE(572), - [sym__list_lower_roman_period] = STATE(699), - [sym__list_item_lower_roman_period] = STATE(571), - [sym__list_lower_roman_paren] = STATE(699), - [sym__list_item_lower_roman_paren] = STATE(570), - [sym__list_lower_roman_parens] = STATE(699), - [sym__list_item_lower_roman_parens] = STATE(569), - [sym__list_upper_roman_period] = STATE(699), - [sym__list_item_upper_roman_period] = STATE(568), - [sym__list_upper_roman_paren] = STATE(699), - [sym__list_item_upper_roman_paren] = STATE(567), - [sym__list_upper_roman_parens] = STATE(699), - [sym__list_item_upper_roman_parens] = STATE(566), - [sym_list_item_content] = STATE(724), - [sym_table] = STATE(440), - [sym__table_content] = STATE(289), - [sym_table_separator] = STATE(289), - [sym_table_row] = STATE(363), - [sym_footnote] = STATE(440), - [sym_div] = STATE(440), - [sym_div_marker_begin] = STATE(941), - [sym_code_block] = STATE(440), - [sym_raw_block] = STATE(440), - [sym_thematic_break] = STATE(440), - [sym_block_quote] = STATE(440), - [sym__block_quote_prefix] = STATE(288), - [sym_link_reference_definition] = STATE(440), - [sym_block_attribute] = STATE(440), - [sym__paragraph] = STATE(440), - [sym__paragraph_content] = STATE(764), - [sym__inline] = STATE(703), - [sym__symbol_fallback] = STATE(366), - [aux_sym__list_dash_repeat1] = STATE(413), - [aux_sym__list_plus_repeat1] = STATE(418), - [aux_sym__list_star_repeat1] = STATE(417), - [aux_sym__list_task_repeat1] = STATE(381), - [aux_sym__list_definition_repeat1] = STATE(582), - [aux_sym__list_decimal_period_repeat1] = STATE(581), - [aux_sym__list_decimal_paren_repeat1] = STATE(579), - [aux_sym__list_decimal_parens_repeat1] = STATE(578), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(577), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(576), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(575), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(574), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(573), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(572), - [aux_sym__list_lower_roman_period_repeat1] = STATE(571), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(570), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(569), - [aux_sym__list_upper_roman_period_repeat1] = STATE(568), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(567), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(566), - [aux_sym_table_repeat1] = STATE(289), - [aux_sym__block_quote_prefix_repeat1] = STATE(323), - [aux_sym__inline_repeat1] = STATE(366), - [anon_sym_LBRACK] = ACTIONS(395), - [anon_sym_PIPE] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(399), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__newline] = ACTIONS(417), - [sym__heading_begin] = ACTIONS(403), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(405), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(407), - [sym__block_quote_continuation] = ACTIONS(409), - [sym__thematic_break_dash] = ACTIONS(411), - [sym__thematic_break_star] = ACTIONS(411), - [sym__footnote_begin] = ACTIONS(413), + [sym__list_definition] = STATE(618), + [sym__list_item_definition] = STATE(527), + [sym__list_decimal_period] = STATE(618), + [sym__list_item_decimal_period] = STATE(524), + [sym__list_decimal_paren] = STATE(618), + [sym__list_item_decimal_paren] = STATE(521), + [sym__list_decimal_parens] = STATE(618), + [sym__list_item_decimal_parens] = STATE(520), + [sym__list_lower_alpha_period] = STATE(618), + [sym__list_item_lower_alpha_period] = STATE(518), + [sym__list_lower_alpha_paren] = STATE(618), + [sym__list_item_lower_alpha_paren] = STATE(517), + [sym__list_lower_alpha_parens] = STATE(618), + [sym__list_item_lower_alpha_parens] = STATE(515), + [sym__list_upper_alpha_period] = STATE(618), + [sym__list_item_upper_alpha_period] = STATE(514), + [sym__list_upper_alpha_paren] = STATE(618), + [sym__list_item_upper_alpha_paren] = STATE(510), + [sym__list_upper_alpha_parens] = STATE(618), + [sym__list_item_upper_alpha_parens] = STATE(501), + [sym__list_lower_roman_period] = STATE(618), + [sym__list_item_lower_roman_period] = STATE(500), + [sym__list_lower_roman_paren] = STATE(618), + [sym__list_item_lower_roman_paren] = STATE(499), + [sym__list_lower_roman_parens] = STATE(618), + [sym__list_item_lower_roman_parens] = STATE(498), + [sym__list_upper_roman_period] = STATE(618), + [sym__list_item_upper_roman_period] = STATE(497), + [sym__list_upper_roman_paren] = STATE(618), + [sym__list_item_upper_roman_paren] = STATE(496), + [sym__list_upper_roman_parens] = STATE(618), + [sym__list_item_upper_roman_parens] = STATE(579), + [sym_list_item_content] = STATE(864), + [sym_table] = STATE(447), + [sym__table_content] = STATE(358), + [sym_table_separator] = STATE(358), + [sym_table_row] = STATE(383), + [sym_footnote] = STATE(447), + [sym_footnote_marker_begin] = STATE(1080), + [sym_div] = STATE(447), + [sym_div_marker_begin] = STATE(952), + [sym_code_block] = STATE(447), + [sym_raw_block] = STATE(447), + [sym_thematic_break] = STATE(447), + [sym_block_quote] = STATE(447), + [sym__block_quote_prefix] = STATE(285), + [sym_link_reference_definition] = STATE(447), + [sym_block_attribute] = STATE(447), + [sym__paragraph] = STATE(447), + [sym__paragraph_content] = STATE(890), + [sym__inline] = STATE(710), + [sym__symbol_fallback] = STATE(355), + [aux_sym__list_dash_repeat1] = STATE(420), + [aux_sym__list_plus_repeat1] = STATE(421), + [aux_sym__list_star_repeat1] = STATE(422), + [aux_sym__list_task_repeat1] = STATE(404), + [aux_sym__list_definition_repeat1] = STATE(527), + [aux_sym__list_decimal_period_repeat1] = STATE(524), + [aux_sym__list_decimal_paren_repeat1] = STATE(521), + [aux_sym__list_decimal_parens_repeat1] = STATE(520), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(518), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(515), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(514), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(510), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(501), + [aux_sym__list_lower_roman_period_repeat1] = STATE(500), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(499), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(498), + [aux_sym__list_upper_roman_period_repeat1] = STATE(497), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(579), + [aux_sym_table_repeat1] = STATE(358), + [aux_sym__block_quote_prefix_repeat1] = STATE(316), + [aux_sym__inline_repeat1] = STATE(355), + [anon_sym_LBRACK] = ACTIONS(385), + [anon_sym_PIPE] = ACTIONS(387), + [anon_sym_LBRACK_CARET] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_DOT] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(13), + [aux_sym__inline_token1] = ACTIONS(13), + [anon_sym_LBRACE_DASH] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(13), + [anon_sym_PERCENT] = ACTIONS(13), + [sym__newline] = ACTIONS(405), + [sym__heading_begin] = ACTIONS(393), + [sym__div_begin] = ACTIONS(21), + [sym__code_block_begin] = ACTIONS(395), + [sym_list_marker_dash] = ACTIONS(25), + [sym_list_marker_star] = ACTIONS(27), + [sym_list_marker_plus] = ACTIONS(29), + [sym__list_marker_task_begin] = ACTIONS(31), + [sym_list_marker_definition] = ACTIONS(33), + [sym_list_marker_decimal_period] = ACTIONS(35), + [sym_list_marker_lower_alpha_period] = ACTIONS(37), + [sym_list_marker_upper_alpha_period] = ACTIONS(39), + [sym_list_marker_lower_roman_period] = ACTIONS(41), + [sym_list_marker_upper_roman_period] = ACTIONS(43), + [sym_list_marker_decimal_paren] = ACTIONS(45), + [sym_list_marker_lower_alpha_paren] = ACTIONS(47), + [sym_list_marker_upper_alpha_paren] = ACTIONS(49), + [sym_list_marker_lower_roman_paren] = ACTIONS(51), + [sym_list_marker_upper_roman_paren] = ACTIONS(53), + [sym_list_marker_decimal_parens] = ACTIONS(55), + [sym_list_marker_lower_alpha_parens] = ACTIONS(57), + [sym_list_marker_upper_alpha_parens] = ACTIONS(59), + [sym_list_marker_lower_roman_parens] = ACTIONS(61), + [sym_list_marker_upper_roman_parens] = ACTIONS(63), + [sym__block_quote_begin] = ACTIONS(397), + [sym__block_quote_continuation] = ACTIONS(399), + [sym__thematic_break_dash] = ACTIONS(401), + [sym__thematic_break_star] = ACTIONS(401), }, [32] = { - [sym__block_with_heading] = STATE(438), - [sym__block_element] = STATE(438), - [sym_heading] = STATE(438), - [sym_list] = STATE(438), - [sym__list_dash] = STATE(699), - [sym__list_item_dash] = STATE(413), - [sym__list_plus] = STATE(699), - [sym__list_item_plus] = STATE(418), - [sym__list_star] = STATE(699), - [sym__list_item_star] = STATE(417), - [sym__list_task] = STATE(699), - [sym__list_item_task] = STATE(381), + [sym__block_with_heading] = STATE(451), + [sym__block_element] = STATE(451), + [sym_heading] = STATE(451), + [sym_list] = STATE(451), + [sym__list_dash] = STATE(618), + [sym__list_item_dash] = STATE(420), + [sym__list_plus] = STATE(618), + [sym__list_item_plus] = STATE(421), + [sym__list_star] = STATE(618), + [sym__list_item_star] = STATE(422), + [sym__list_task] = STATE(618), + [sym__list_item_task] = STATE(404), [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(699), - [sym__list_item_definition] = STATE(582), - [sym__list_decimal_period] = STATE(699), - [sym__list_item_decimal_period] = STATE(581), - [sym__list_decimal_paren] = STATE(699), - [sym__list_item_decimal_paren] = STATE(579), - [sym__list_decimal_parens] = STATE(699), - [sym__list_item_decimal_parens] = STATE(578), - [sym__list_lower_alpha_period] = STATE(699), - [sym__list_item_lower_alpha_period] = STATE(577), - [sym__list_lower_alpha_paren] = STATE(699), - [sym__list_item_lower_alpha_paren] = STATE(576), - [sym__list_lower_alpha_parens] = STATE(699), - [sym__list_item_lower_alpha_parens] = STATE(575), - [sym__list_upper_alpha_period] = STATE(699), - [sym__list_item_upper_alpha_period] = STATE(574), - [sym__list_upper_alpha_paren] = STATE(699), - [sym__list_item_upper_alpha_paren] = STATE(573), - [sym__list_upper_alpha_parens] = STATE(699), - [sym__list_item_upper_alpha_parens] = STATE(572), - [sym__list_lower_roman_period] = STATE(699), - [sym__list_item_lower_roman_period] = STATE(571), - [sym__list_lower_roman_paren] = STATE(699), - [sym__list_item_lower_roman_paren] = STATE(570), - [sym__list_lower_roman_parens] = STATE(699), - [sym__list_item_lower_roman_parens] = STATE(569), - [sym__list_upper_roman_period] = STATE(699), - [sym__list_item_upper_roman_period] = STATE(568), - [sym__list_upper_roman_paren] = STATE(699), - [sym__list_item_upper_roman_paren] = STATE(567), - [sym__list_upper_roman_parens] = STATE(699), - [sym__list_item_upper_roman_parens] = STATE(566), - [sym_list_item_content] = STATE(721), - [sym_table] = STATE(438), - [sym__table_content] = STATE(289), - [sym_table_separator] = STATE(289), - [sym_table_row] = STATE(363), - [sym_footnote] = STATE(438), - [sym_div] = STATE(438), - [sym_div_marker_begin] = STATE(941), - [sym_code_block] = STATE(438), - [sym_raw_block] = STATE(438), - [sym_thematic_break] = STATE(438), - [sym_block_quote] = STATE(438), - [sym__block_quote_prefix] = STATE(288), - [sym_link_reference_definition] = STATE(438), - [sym_block_attribute] = STATE(438), - [sym__paragraph] = STATE(438), - [sym__paragraph_content] = STATE(764), - [sym__inline] = STATE(703), - [sym__symbol_fallback] = STATE(366), - [aux_sym__list_dash_repeat1] = STATE(413), - [aux_sym__list_plus_repeat1] = STATE(418), - [aux_sym__list_star_repeat1] = STATE(417), - [aux_sym__list_task_repeat1] = STATE(381), - [aux_sym__list_definition_repeat1] = STATE(582), - [aux_sym__list_decimal_period_repeat1] = STATE(581), - [aux_sym__list_decimal_paren_repeat1] = STATE(579), - [aux_sym__list_decimal_parens_repeat1] = STATE(578), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(577), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(576), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(575), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(574), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(573), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(572), - [aux_sym__list_lower_roman_period_repeat1] = STATE(571), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(570), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(569), - [aux_sym__list_upper_roman_period_repeat1] = STATE(568), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(567), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(566), - [aux_sym_table_repeat1] = STATE(289), - [aux_sym__block_quote_prefix_repeat1] = STATE(323), - [aux_sym__inline_repeat1] = STATE(366), - [anon_sym_LBRACK] = ACTIONS(395), - [anon_sym_PIPE] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(399), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__newline] = ACTIONS(419), - [sym__heading_begin] = ACTIONS(403), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(405), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(407), - [sym__block_quote_continuation] = ACTIONS(409), - [sym__thematic_break_dash] = ACTIONS(411), - [sym__thematic_break_star] = ACTIONS(411), - [sym__footnote_begin] = ACTIONS(413), + [sym__list_definition] = STATE(618), + [sym__list_item_definition] = STATE(527), + [sym__list_decimal_period] = STATE(618), + [sym__list_item_decimal_period] = STATE(524), + [sym__list_decimal_paren] = STATE(618), + [sym__list_item_decimal_paren] = STATE(521), + [sym__list_decimal_parens] = STATE(618), + [sym__list_item_decimal_parens] = STATE(520), + [sym__list_lower_alpha_period] = STATE(618), + [sym__list_item_lower_alpha_period] = STATE(518), + [sym__list_lower_alpha_paren] = STATE(618), + [sym__list_item_lower_alpha_paren] = STATE(517), + [sym__list_lower_alpha_parens] = STATE(618), + [sym__list_item_lower_alpha_parens] = STATE(515), + [sym__list_upper_alpha_period] = STATE(618), + [sym__list_item_upper_alpha_period] = STATE(514), + [sym__list_upper_alpha_paren] = STATE(618), + [sym__list_item_upper_alpha_paren] = STATE(510), + [sym__list_upper_alpha_parens] = STATE(618), + [sym__list_item_upper_alpha_parens] = STATE(501), + [sym__list_lower_roman_period] = STATE(618), + [sym__list_item_lower_roman_period] = STATE(500), + [sym__list_lower_roman_paren] = STATE(618), + [sym__list_item_lower_roman_paren] = STATE(499), + [sym__list_lower_roman_parens] = STATE(618), + [sym__list_item_lower_roman_parens] = STATE(498), + [sym__list_upper_roman_period] = STATE(618), + [sym__list_item_upper_roman_period] = STATE(497), + [sym__list_upper_roman_paren] = STATE(618), + [sym__list_item_upper_roman_paren] = STATE(496), + [sym__list_upper_roman_parens] = STATE(618), + [sym__list_item_upper_roman_parens] = STATE(579), + [sym_list_item_content] = STATE(865), + [sym_table] = STATE(451), + [sym__table_content] = STATE(358), + [sym_table_separator] = STATE(358), + [sym_table_row] = STATE(383), + [sym_footnote] = STATE(451), + [sym_footnote_marker_begin] = STATE(1080), + [sym_div] = STATE(451), + [sym_div_marker_begin] = STATE(952), + [sym_code_block] = STATE(451), + [sym_raw_block] = STATE(451), + [sym_thematic_break] = STATE(451), + [sym_block_quote] = STATE(451), + [sym__block_quote_prefix] = STATE(285), + [sym_link_reference_definition] = STATE(451), + [sym_block_attribute] = STATE(451), + [sym__paragraph] = STATE(451), + [sym__paragraph_content] = STATE(890), + [sym__inline] = STATE(710), + [sym__symbol_fallback] = STATE(355), + [aux_sym__list_dash_repeat1] = STATE(420), + [aux_sym__list_plus_repeat1] = STATE(421), + [aux_sym__list_star_repeat1] = STATE(422), + [aux_sym__list_task_repeat1] = STATE(404), + [aux_sym__list_definition_repeat1] = STATE(527), + [aux_sym__list_decimal_period_repeat1] = STATE(524), + [aux_sym__list_decimal_paren_repeat1] = STATE(521), + [aux_sym__list_decimal_parens_repeat1] = STATE(520), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(518), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(515), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(514), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(510), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(501), + [aux_sym__list_lower_roman_period_repeat1] = STATE(500), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(499), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(498), + [aux_sym__list_upper_roman_period_repeat1] = STATE(497), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(579), + [aux_sym_table_repeat1] = STATE(358), + [aux_sym__block_quote_prefix_repeat1] = STATE(316), + [aux_sym__inline_repeat1] = STATE(355), + [anon_sym_LBRACK] = ACTIONS(385), + [anon_sym_PIPE] = ACTIONS(387), + [anon_sym_LBRACK_CARET] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_DOT] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(13), + [aux_sym__inline_token1] = ACTIONS(13), + [anon_sym_LBRACE_DASH] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(13), + [anon_sym_PERCENT] = ACTIONS(13), + [sym__newline] = ACTIONS(407), + [sym__heading_begin] = ACTIONS(393), + [sym__div_begin] = ACTIONS(21), + [sym__code_block_begin] = ACTIONS(395), + [sym_list_marker_dash] = ACTIONS(25), + [sym_list_marker_star] = ACTIONS(27), + [sym_list_marker_plus] = ACTIONS(29), + [sym__list_marker_task_begin] = ACTIONS(31), + [sym_list_marker_definition] = ACTIONS(33), + [sym_list_marker_decimal_period] = ACTIONS(35), + [sym_list_marker_lower_alpha_period] = ACTIONS(37), + [sym_list_marker_upper_alpha_period] = ACTIONS(39), + [sym_list_marker_lower_roman_period] = ACTIONS(41), + [sym_list_marker_upper_roman_period] = ACTIONS(43), + [sym_list_marker_decimal_paren] = ACTIONS(45), + [sym_list_marker_lower_alpha_paren] = ACTIONS(47), + [sym_list_marker_upper_alpha_paren] = ACTIONS(49), + [sym_list_marker_lower_roman_paren] = ACTIONS(51), + [sym_list_marker_upper_roman_paren] = ACTIONS(53), + [sym_list_marker_decimal_parens] = ACTIONS(55), + [sym_list_marker_lower_alpha_parens] = ACTIONS(57), + [sym_list_marker_upper_alpha_parens] = ACTIONS(59), + [sym_list_marker_lower_roman_parens] = ACTIONS(61), + [sym_list_marker_upper_roman_parens] = ACTIONS(63), + [sym__block_quote_begin] = ACTIONS(397), + [sym__block_quote_continuation] = ACTIONS(399), + [sym__thematic_break_dash] = ACTIONS(401), + [sym__thematic_break_star] = ACTIONS(401), }, [33] = { - [sym__block_with_heading] = STATE(434), - [sym__block_element] = STATE(434), - [sym_heading] = STATE(434), - [sym_list] = STATE(434), - [sym__list_dash] = STATE(699), - [sym__list_item_dash] = STATE(413), - [sym__list_plus] = STATE(699), - [sym__list_item_plus] = STATE(418), - [sym__list_star] = STATE(699), - [sym__list_item_star] = STATE(417), - [sym__list_task] = STATE(699), - [sym__list_item_task] = STATE(381), + [sym__block_with_heading] = STATE(453), + [sym__block_element] = STATE(453), + [sym_heading] = STATE(453), + [sym_list] = STATE(453), + [sym__list_dash] = STATE(618), + [sym__list_item_dash] = STATE(420), + [sym__list_plus] = STATE(618), + [sym__list_item_plus] = STATE(421), + [sym__list_star] = STATE(618), + [sym__list_item_star] = STATE(422), + [sym__list_task] = STATE(618), + [sym__list_item_task] = STATE(404), [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(699), - [sym__list_item_definition] = STATE(582), - [sym__list_decimal_period] = STATE(699), - [sym__list_item_decimal_period] = STATE(581), - [sym__list_decimal_paren] = STATE(699), - [sym__list_item_decimal_paren] = STATE(579), - [sym__list_decimal_parens] = STATE(699), - [sym__list_item_decimal_parens] = STATE(578), - [sym__list_lower_alpha_period] = STATE(699), - [sym__list_item_lower_alpha_period] = STATE(577), - [sym__list_lower_alpha_paren] = STATE(699), - [sym__list_item_lower_alpha_paren] = STATE(576), - [sym__list_lower_alpha_parens] = STATE(699), - [sym__list_item_lower_alpha_parens] = STATE(575), - [sym__list_upper_alpha_period] = STATE(699), - [sym__list_item_upper_alpha_period] = STATE(574), - [sym__list_upper_alpha_paren] = STATE(699), - [sym__list_item_upper_alpha_paren] = STATE(573), - [sym__list_upper_alpha_parens] = STATE(699), - [sym__list_item_upper_alpha_parens] = STATE(572), - [sym__list_lower_roman_period] = STATE(699), - [sym__list_item_lower_roman_period] = STATE(571), - [sym__list_lower_roman_paren] = STATE(699), - [sym__list_item_lower_roman_paren] = STATE(570), - [sym__list_lower_roman_parens] = STATE(699), - [sym__list_item_lower_roman_parens] = STATE(569), - [sym__list_upper_roman_period] = STATE(699), - [sym__list_item_upper_roman_period] = STATE(568), - [sym__list_upper_roman_paren] = STATE(699), - [sym__list_item_upper_roman_paren] = STATE(567), - [sym__list_upper_roman_parens] = STATE(699), - [sym__list_item_upper_roman_parens] = STATE(566), - [sym_list_item_content] = STATE(718), - [sym_table] = STATE(434), - [sym__table_content] = STATE(289), - [sym_table_separator] = STATE(289), - [sym_table_row] = STATE(363), - [sym_footnote] = STATE(434), - [sym_div] = STATE(434), - [sym_div_marker_begin] = STATE(941), - [sym_code_block] = STATE(434), - [sym_raw_block] = STATE(434), - [sym_thematic_break] = STATE(434), - [sym_block_quote] = STATE(434), - [sym__block_quote_prefix] = STATE(288), - [sym_link_reference_definition] = STATE(434), - [sym_block_attribute] = STATE(434), - [sym__paragraph] = STATE(434), - [sym__paragraph_content] = STATE(764), - [sym__inline] = STATE(703), - [sym__symbol_fallback] = STATE(366), - [aux_sym__list_dash_repeat1] = STATE(413), - [aux_sym__list_plus_repeat1] = STATE(418), - [aux_sym__list_star_repeat1] = STATE(417), - [aux_sym__list_task_repeat1] = STATE(381), - [aux_sym__list_definition_repeat1] = STATE(582), - [aux_sym__list_decimal_period_repeat1] = STATE(581), - [aux_sym__list_decimal_paren_repeat1] = STATE(579), - [aux_sym__list_decimal_parens_repeat1] = STATE(578), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(577), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(576), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(575), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(574), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(573), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(572), - [aux_sym__list_lower_roman_period_repeat1] = STATE(571), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(570), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(569), - [aux_sym__list_upper_roman_period_repeat1] = STATE(568), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(567), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(566), - [aux_sym_table_repeat1] = STATE(289), - [aux_sym__block_quote_prefix_repeat1] = STATE(323), - [aux_sym__inline_repeat1] = STATE(366), - [anon_sym_LBRACK] = ACTIONS(395), - [anon_sym_PIPE] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(399), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__newline] = ACTIONS(421), - [sym__heading_begin] = ACTIONS(403), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(405), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(407), - [sym__block_quote_continuation] = ACTIONS(409), - [sym__thematic_break_dash] = ACTIONS(411), - [sym__thematic_break_star] = ACTIONS(411), - [sym__footnote_begin] = ACTIONS(413), + [sym__list_definition] = STATE(618), + [sym__list_item_definition] = STATE(527), + [sym__list_decimal_period] = STATE(618), + [sym__list_item_decimal_period] = STATE(524), + [sym__list_decimal_paren] = STATE(618), + [sym__list_item_decimal_paren] = STATE(521), + [sym__list_decimal_parens] = STATE(618), + [sym__list_item_decimal_parens] = STATE(520), + [sym__list_lower_alpha_period] = STATE(618), + [sym__list_item_lower_alpha_period] = STATE(518), + [sym__list_lower_alpha_paren] = STATE(618), + [sym__list_item_lower_alpha_paren] = STATE(517), + [sym__list_lower_alpha_parens] = STATE(618), + [sym__list_item_lower_alpha_parens] = STATE(515), + [sym__list_upper_alpha_period] = STATE(618), + [sym__list_item_upper_alpha_period] = STATE(514), + [sym__list_upper_alpha_paren] = STATE(618), + [sym__list_item_upper_alpha_paren] = STATE(510), + [sym__list_upper_alpha_parens] = STATE(618), + [sym__list_item_upper_alpha_parens] = STATE(501), + [sym__list_lower_roman_period] = STATE(618), + [sym__list_item_lower_roman_period] = STATE(500), + [sym__list_lower_roman_paren] = STATE(618), + [sym__list_item_lower_roman_paren] = STATE(499), + [sym__list_lower_roman_parens] = STATE(618), + [sym__list_item_lower_roman_parens] = STATE(498), + [sym__list_upper_roman_period] = STATE(618), + [sym__list_item_upper_roman_period] = STATE(497), + [sym__list_upper_roman_paren] = STATE(618), + [sym__list_item_upper_roman_paren] = STATE(496), + [sym__list_upper_roman_parens] = STATE(618), + [sym__list_item_upper_roman_parens] = STATE(579), + [sym_list_item_content] = STATE(868), + [sym_table] = STATE(453), + [sym__table_content] = STATE(358), + [sym_table_separator] = STATE(358), + [sym_table_row] = STATE(383), + [sym_footnote] = STATE(453), + [sym_footnote_marker_begin] = STATE(1080), + [sym_div] = STATE(453), + [sym_div_marker_begin] = STATE(952), + [sym_code_block] = STATE(453), + [sym_raw_block] = STATE(453), + [sym_thematic_break] = STATE(453), + [sym_block_quote] = STATE(453), + [sym__block_quote_prefix] = STATE(285), + [sym_link_reference_definition] = STATE(453), + [sym_block_attribute] = STATE(453), + [sym__paragraph] = STATE(453), + [sym__paragraph_content] = STATE(890), + [sym__inline] = STATE(710), + [sym__symbol_fallback] = STATE(355), + [aux_sym__list_dash_repeat1] = STATE(420), + [aux_sym__list_plus_repeat1] = STATE(421), + [aux_sym__list_star_repeat1] = STATE(422), + [aux_sym__list_task_repeat1] = STATE(404), + [aux_sym__list_definition_repeat1] = STATE(527), + [aux_sym__list_decimal_period_repeat1] = STATE(524), + [aux_sym__list_decimal_paren_repeat1] = STATE(521), + [aux_sym__list_decimal_parens_repeat1] = STATE(520), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(518), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(515), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(514), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(510), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(501), + [aux_sym__list_lower_roman_period_repeat1] = STATE(500), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(499), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(498), + [aux_sym__list_upper_roman_period_repeat1] = STATE(497), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(579), + [aux_sym_table_repeat1] = STATE(358), + [aux_sym__block_quote_prefix_repeat1] = STATE(316), + [aux_sym__inline_repeat1] = STATE(355), + [anon_sym_LBRACK] = ACTIONS(385), + [anon_sym_PIPE] = ACTIONS(387), + [anon_sym_LBRACK_CARET] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_DOT] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(13), + [aux_sym__inline_token1] = ACTIONS(13), + [anon_sym_LBRACE_DASH] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(13), + [anon_sym_PERCENT] = ACTIONS(13), + [sym__newline] = ACTIONS(409), + [sym__heading_begin] = ACTIONS(393), + [sym__div_begin] = ACTIONS(21), + [sym__code_block_begin] = ACTIONS(395), + [sym_list_marker_dash] = ACTIONS(25), + [sym_list_marker_star] = ACTIONS(27), + [sym_list_marker_plus] = ACTIONS(29), + [sym__list_marker_task_begin] = ACTIONS(31), + [sym_list_marker_definition] = ACTIONS(33), + [sym_list_marker_decimal_period] = ACTIONS(35), + [sym_list_marker_lower_alpha_period] = ACTIONS(37), + [sym_list_marker_upper_alpha_period] = ACTIONS(39), + [sym_list_marker_lower_roman_period] = ACTIONS(41), + [sym_list_marker_upper_roman_period] = ACTIONS(43), + [sym_list_marker_decimal_paren] = ACTIONS(45), + [sym_list_marker_lower_alpha_paren] = ACTIONS(47), + [sym_list_marker_upper_alpha_paren] = ACTIONS(49), + [sym_list_marker_lower_roman_paren] = ACTIONS(51), + [sym_list_marker_upper_roman_paren] = ACTIONS(53), + [sym_list_marker_decimal_parens] = ACTIONS(55), + [sym_list_marker_lower_alpha_parens] = ACTIONS(57), + [sym_list_marker_upper_alpha_parens] = ACTIONS(59), + [sym_list_marker_lower_roman_parens] = ACTIONS(61), + [sym_list_marker_upper_roman_parens] = ACTIONS(63), + [sym__block_quote_begin] = ACTIONS(397), + [sym__block_quote_continuation] = ACTIONS(399), + [sym__thematic_break_dash] = ACTIONS(401), + [sym__thematic_break_star] = ACTIONS(401), }, [34] = { - [sym__block_with_heading] = STATE(431), - [sym__block_element] = STATE(431), - [sym_heading] = STATE(431), - [sym_list] = STATE(431), - [sym__list_dash] = STATE(699), - [sym__list_item_dash] = STATE(413), - [sym__list_plus] = STATE(699), - [sym__list_item_plus] = STATE(418), - [sym__list_star] = STATE(699), - [sym__list_item_star] = STATE(417), - [sym__list_task] = STATE(699), - [sym__list_item_task] = STATE(381), + [sym__block_with_heading] = STATE(463), + [sym__block_element] = STATE(463), + [sym_heading] = STATE(463), + [sym_list] = STATE(463), + [sym__list_dash] = STATE(618), + [sym__list_item_dash] = STATE(420), + [sym__list_plus] = STATE(618), + [sym__list_item_plus] = STATE(421), + [sym__list_star] = STATE(618), + [sym__list_item_star] = STATE(422), + [sym__list_task] = STATE(618), + [sym__list_item_task] = STATE(404), [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(699), - [sym__list_item_definition] = STATE(582), - [sym__list_decimal_period] = STATE(699), - [sym__list_item_decimal_period] = STATE(581), - [sym__list_decimal_paren] = STATE(699), - [sym__list_item_decimal_paren] = STATE(579), - [sym__list_decimal_parens] = STATE(699), - [sym__list_item_decimal_parens] = STATE(578), - [sym__list_lower_alpha_period] = STATE(699), - [sym__list_item_lower_alpha_period] = STATE(577), - [sym__list_lower_alpha_paren] = STATE(699), - [sym__list_item_lower_alpha_paren] = STATE(576), - [sym__list_lower_alpha_parens] = STATE(699), - [sym__list_item_lower_alpha_parens] = STATE(575), - [sym__list_upper_alpha_period] = STATE(699), - [sym__list_item_upper_alpha_period] = STATE(574), - [sym__list_upper_alpha_paren] = STATE(699), - [sym__list_item_upper_alpha_paren] = STATE(573), - [sym__list_upper_alpha_parens] = STATE(699), - [sym__list_item_upper_alpha_parens] = STATE(572), - [sym__list_lower_roman_period] = STATE(699), - [sym__list_item_lower_roman_period] = STATE(571), - [sym__list_lower_roman_paren] = STATE(699), - [sym__list_item_lower_roman_paren] = STATE(570), - [sym__list_lower_roman_parens] = STATE(699), - [sym__list_item_lower_roman_parens] = STATE(569), - [sym__list_upper_roman_period] = STATE(699), - [sym__list_item_upper_roman_period] = STATE(568), - [sym__list_upper_roman_paren] = STATE(699), - [sym__list_item_upper_roman_paren] = STATE(567), - [sym__list_upper_roman_parens] = STATE(699), - [sym__list_item_upper_roman_parens] = STATE(566), - [sym_list_item_content] = STATE(884), - [sym_table] = STATE(431), - [sym__table_content] = STATE(289), - [sym_table_separator] = STATE(289), - [sym_table_row] = STATE(363), - [sym_footnote] = STATE(431), - [sym_div] = STATE(431), - [sym_div_marker_begin] = STATE(941), - [sym_code_block] = STATE(431), - [sym_raw_block] = STATE(431), - [sym_thematic_break] = STATE(431), - [sym_block_quote] = STATE(431), - [sym__block_quote_prefix] = STATE(288), - [sym_link_reference_definition] = STATE(431), - [sym_block_attribute] = STATE(431), - [sym__paragraph] = STATE(431), - [sym__paragraph_content] = STATE(764), - [sym__inline] = STATE(703), - [sym__symbol_fallback] = STATE(366), - [aux_sym__list_dash_repeat1] = STATE(413), - [aux_sym__list_plus_repeat1] = STATE(418), - [aux_sym__list_star_repeat1] = STATE(417), - [aux_sym__list_task_repeat1] = STATE(381), - [aux_sym__list_definition_repeat1] = STATE(582), - [aux_sym__list_decimal_period_repeat1] = STATE(581), - [aux_sym__list_decimal_paren_repeat1] = STATE(579), - [aux_sym__list_decimal_parens_repeat1] = STATE(578), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(577), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(576), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(575), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(574), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(573), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(572), - [aux_sym__list_lower_roman_period_repeat1] = STATE(571), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(570), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(569), - [aux_sym__list_upper_roman_period_repeat1] = STATE(568), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(567), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(566), - [aux_sym_table_repeat1] = STATE(289), - [aux_sym__block_quote_prefix_repeat1] = STATE(323), - [aux_sym__inline_repeat1] = STATE(366), - [anon_sym_LBRACK] = ACTIONS(395), - [anon_sym_PIPE] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(399), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__newline] = ACTIONS(423), - [sym__heading_begin] = ACTIONS(403), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(405), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(407), - [sym__block_quote_continuation] = ACTIONS(409), - [sym__thematic_break_dash] = ACTIONS(411), - [sym__thematic_break_star] = ACTIONS(411), - [sym__footnote_begin] = ACTIONS(413), + [sym__list_definition] = STATE(618), + [sym__list_item_definition] = STATE(527), + [sym__list_decimal_period] = STATE(618), + [sym__list_item_decimal_period] = STATE(524), + [sym__list_decimal_paren] = STATE(618), + [sym__list_item_decimal_paren] = STATE(521), + [sym__list_decimal_parens] = STATE(618), + [sym__list_item_decimal_parens] = STATE(520), + [sym__list_lower_alpha_period] = STATE(618), + [sym__list_item_lower_alpha_period] = STATE(518), + [sym__list_lower_alpha_paren] = STATE(618), + [sym__list_item_lower_alpha_paren] = STATE(517), + [sym__list_lower_alpha_parens] = STATE(618), + [sym__list_item_lower_alpha_parens] = STATE(515), + [sym__list_upper_alpha_period] = STATE(618), + [sym__list_item_upper_alpha_period] = STATE(514), + [sym__list_upper_alpha_paren] = STATE(618), + [sym__list_item_upper_alpha_paren] = STATE(510), + [sym__list_upper_alpha_parens] = STATE(618), + [sym__list_item_upper_alpha_parens] = STATE(501), + [sym__list_lower_roman_period] = STATE(618), + [sym__list_item_lower_roman_period] = STATE(500), + [sym__list_lower_roman_paren] = STATE(618), + [sym__list_item_lower_roman_paren] = STATE(499), + [sym__list_lower_roman_parens] = STATE(618), + [sym__list_item_lower_roman_parens] = STATE(498), + [sym__list_upper_roman_period] = STATE(618), + [sym__list_item_upper_roman_period] = STATE(497), + [sym__list_upper_roman_paren] = STATE(618), + [sym__list_item_upper_roman_paren] = STATE(496), + [sym__list_upper_roman_parens] = STATE(618), + [sym__list_item_upper_roman_parens] = STATE(579), + [sym_list_item_content] = STATE(668), + [sym_table] = STATE(463), + [sym__table_content] = STATE(358), + [sym_table_separator] = STATE(358), + [sym_table_row] = STATE(383), + [sym_footnote] = STATE(463), + [sym_footnote_marker_begin] = STATE(1080), + [sym_div] = STATE(463), + [sym_div_marker_begin] = STATE(952), + [sym_code_block] = STATE(463), + [sym_raw_block] = STATE(463), + [sym_thematic_break] = STATE(463), + [sym_block_quote] = STATE(463), + [sym__block_quote_prefix] = STATE(285), + [sym_link_reference_definition] = STATE(463), + [sym_block_attribute] = STATE(463), + [sym__paragraph] = STATE(463), + [sym__paragraph_content] = STATE(890), + [sym__inline] = STATE(710), + [sym__symbol_fallback] = STATE(355), + [aux_sym__list_dash_repeat1] = STATE(420), + [aux_sym__list_plus_repeat1] = STATE(421), + [aux_sym__list_star_repeat1] = STATE(422), + [aux_sym__list_task_repeat1] = STATE(404), + [aux_sym__list_definition_repeat1] = STATE(527), + [aux_sym__list_decimal_period_repeat1] = STATE(524), + [aux_sym__list_decimal_paren_repeat1] = STATE(521), + [aux_sym__list_decimal_parens_repeat1] = STATE(520), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(518), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(515), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(514), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(510), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(501), + [aux_sym__list_lower_roman_period_repeat1] = STATE(500), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(499), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(498), + [aux_sym__list_upper_roman_period_repeat1] = STATE(497), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(579), + [aux_sym_table_repeat1] = STATE(358), + [aux_sym__block_quote_prefix_repeat1] = STATE(316), + [aux_sym__inline_repeat1] = STATE(355), + [anon_sym_LBRACK] = ACTIONS(385), + [anon_sym_PIPE] = ACTIONS(387), + [anon_sym_LBRACK_CARET] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_DOT] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(13), + [aux_sym__inline_token1] = ACTIONS(13), + [anon_sym_LBRACE_DASH] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(13), + [anon_sym_PERCENT] = ACTIONS(13), + [sym__newline] = ACTIONS(411), + [sym__heading_begin] = ACTIONS(393), + [sym__div_begin] = ACTIONS(21), + [sym__code_block_begin] = ACTIONS(395), + [sym_list_marker_dash] = ACTIONS(25), + [sym_list_marker_star] = ACTIONS(27), + [sym_list_marker_plus] = ACTIONS(29), + [sym__list_marker_task_begin] = ACTIONS(31), + [sym_list_marker_definition] = ACTIONS(33), + [sym_list_marker_decimal_period] = ACTIONS(35), + [sym_list_marker_lower_alpha_period] = ACTIONS(37), + [sym_list_marker_upper_alpha_period] = ACTIONS(39), + [sym_list_marker_lower_roman_period] = ACTIONS(41), + [sym_list_marker_upper_roman_period] = ACTIONS(43), + [sym_list_marker_decimal_paren] = ACTIONS(45), + [sym_list_marker_lower_alpha_paren] = ACTIONS(47), + [sym_list_marker_upper_alpha_paren] = ACTIONS(49), + [sym_list_marker_lower_roman_paren] = ACTIONS(51), + [sym_list_marker_upper_roman_paren] = ACTIONS(53), + [sym_list_marker_decimal_parens] = ACTIONS(55), + [sym_list_marker_lower_alpha_parens] = ACTIONS(57), + [sym_list_marker_upper_alpha_parens] = ACTIONS(59), + [sym_list_marker_lower_roman_parens] = ACTIONS(61), + [sym_list_marker_upper_roman_parens] = ACTIONS(63), + [sym__block_quote_begin] = ACTIONS(397), + [sym__block_quote_continuation] = ACTIONS(399), + [sym__thematic_break_dash] = ACTIONS(401), + [sym__thematic_break_star] = ACTIONS(401), }, [35] = { - [sym__block_with_heading] = STATE(429), - [sym__block_element] = STATE(429), - [sym_heading] = STATE(429), - [sym_list] = STATE(429), - [sym__list_dash] = STATE(699), - [sym__list_item_dash] = STATE(413), - [sym__list_plus] = STATE(699), - [sym__list_item_plus] = STATE(418), - [sym__list_star] = STATE(699), - [sym__list_item_star] = STATE(417), - [sym__list_task] = STATE(699), - [sym__list_item_task] = STATE(381), + [sym__block_with_heading] = STATE(469), + [sym__block_element] = STATE(469), + [sym_heading] = STATE(469), + [sym_list] = STATE(469), + [sym__list_dash] = STATE(618), + [sym__list_item_dash] = STATE(420), + [sym__list_plus] = STATE(618), + [sym__list_item_plus] = STATE(421), + [sym__list_star] = STATE(618), + [sym__list_item_star] = STATE(422), + [sym__list_task] = STATE(618), + [sym__list_item_task] = STATE(404), [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(699), - [sym__list_item_definition] = STATE(582), - [sym__list_decimal_period] = STATE(699), - [sym__list_item_decimal_period] = STATE(581), - [sym__list_decimal_paren] = STATE(699), - [sym__list_item_decimal_paren] = STATE(579), - [sym__list_decimal_parens] = STATE(699), - [sym__list_item_decimal_parens] = STATE(578), - [sym__list_lower_alpha_period] = STATE(699), - [sym__list_item_lower_alpha_period] = STATE(577), - [sym__list_lower_alpha_paren] = STATE(699), - [sym__list_item_lower_alpha_paren] = STATE(576), - [sym__list_lower_alpha_parens] = STATE(699), - [sym__list_item_lower_alpha_parens] = STATE(575), - [sym__list_upper_alpha_period] = STATE(699), - [sym__list_item_upper_alpha_period] = STATE(574), - [sym__list_upper_alpha_paren] = STATE(699), - [sym__list_item_upper_alpha_paren] = STATE(573), - [sym__list_upper_alpha_parens] = STATE(699), - [sym__list_item_upper_alpha_parens] = STATE(572), - [sym__list_lower_roman_period] = STATE(699), - [sym__list_item_lower_roman_period] = STATE(571), - [sym__list_lower_roman_paren] = STATE(699), - [sym__list_item_lower_roman_paren] = STATE(570), - [sym__list_lower_roman_parens] = STATE(699), - [sym__list_item_lower_roman_parens] = STATE(569), - [sym__list_upper_roman_period] = STATE(699), - [sym__list_item_upper_roman_period] = STATE(568), - [sym__list_upper_roman_paren] = STATE(699), - [sym__list_item_upper_roman_paren] = STATE(567), - [sym__list_upper_roman_parens] = STATE(699), - [sym__list_item_upper_roman_parens] = STATE(566), - [sym_list_item_content] = STATE(762), - [sym_table] = STATE(429), - [sym__table_content] = STATE(289), - [sym_table_separator] = STATE(289), - [sym_table_row] = STATE(363), - [sym_footnote] = STATE(429), - [sym_div] = STATE(429), - [sym_div_marker_begin] = STATE(941), - [sym_code_block] = STATE(429), - [sym_raw_block] = STATE(429), - [sym_thematic_break] = STATE(429), - [sym_block_quote] = STATE(429), - [sym__block_quote_prefix] = STATE(288), - [sym_link_reference_definition] = STATE(429), - [sym_block_attribute] = STATE(429), - [sym__paragraph] = STATE(429), - [sym__paragraph_content] = STATE(764), - [sym__inline] = STATE(703), - [sym__symbol_fallback] = STATE(366), - [aux_sym__list_dash_repeat1] = STATE(413), - [aux_sym__list_plus_repeat1] = STATE(418), - [aux_sym__list_star_repeat1] = STATE(417), - [aux_sym__list_task_repeat1] = STATE(381), - [aux_sym__list_definition_repeat1] = STATE(582), - [aux_sym__list_decimal_period_repeat1] = STATE(581), - [aux_sym__list_decimal_paren_repeat1] = STATE(579), - [aux_sym__list_decimal_parens_repeat1] = STATE(578), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(577), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(576), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(575), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(574), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(573), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(572), - [aux_sym__list_lower_roman_period_repeat1] = STATE(571), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(570), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(569), - [aux_sym__list_upper_roman_period_repeat1] = STATE(568), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(567), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(566), - [aux_sym_table_repeat1] = STATE(289), - [aux_sym__block_quote_prefix_repeat1] = STATE(323), - [aux_sym__inline_repeat1] = STATE(366), - [anon_sym_LBRACK] = ACTIONS(395), - [anon_sym_PIPE] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(399), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__newline] = ACTIONS(425), - [sym__heading_begin] = ACTIONS(403), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(405), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(407), - [sym__block_quote_continuation] = ACTIONS(409), - [sym__thematic_break_dash] = ACTIONS(411), - [sym__thematic_break_star] = ACTIONS(411), - [sym__footnote_begin] = ACTIONS(413), + [sym__list_definition] = STATE(618), + [sym__list_item_definition] = STATE(527), + [sym__list_decimal_period] = STATE(618), + [sym__list_item_decimal_period] = STATE(524), + [sym__list_decimal_paren] = STATE(618), + [sym__list_item_decimal_paren] = STATE(521), + [sym__list_decimal_parens] = STATE(618), + [sym__list_item_decimal_parens] = STATE(520), + [sym__list_lower_alpha_period] = STATE(618), + [sym__list_item_lower_alpha_period] = STATE(518), + [sym__list_lower_alpha_paren] = STATE(618), + [sym__list_item_lower_alpha_paren] = STATE(517), + [sym__list_lower_alpha_parens] = STATE(618), + [sym__list_item_lower_alpha_parens] = STATE(515), + [sym__list_upper_alpha_period] = STATE(618), + [sym__list_item_upper_alpha_period] = STATE(514), + [sym__list_upper_alpha_paren] = STATE(618), + [sym__list_item_upper_alpha_paren] = STATE(510), + [sym__list_upper_alpha_parens] = STATE(618), + [sym__list_item_upper_alpha_parens] = STATE(501), + [sym__list_lower_roman_period] = STATE(618), + [sym__list_item_lower_roman_period] = STATE(500), + [sym__list_lower_roman_paren] = STATE(618), + [sym__list_item_lower_roman_paren] = STATE(499), + [sym__list_lower_roman_parens] = STATE(618), + [sym__list_item_lower_roman_parens] = STATE(498), + [sym__list_upper_roman_period] = STATE(618), + [sym__list_item_upper_roman_period] = STATE(497), + [sym__list_upper_roman_paren] = STATE(618), + [sym__list_item_upper_roman_paren] = STATE(496), + [sym__list_upper_roman_parens] = STATE(618), + [sym__list_item_upper_roman_parens] = STATE(579), + [sym_list_item_content] = STATE(667), + [sym_table] = STATE(469), + [sym__table_content] = STATE(358), + [sym_table_separator] = STATE(358), + [sym_table_row] = STATE(383), + [sym_footnote] = STATE(469), + [sym_footnote_marker_begin] = STATE(1080), + [sym_div] = STATE(469), + [sym_div_marker_begin] = STATE(952), + [sym_code_block] = STATE(469), + [sym_raw_block] = STATE(469), + [sym_thematic_break] = STATE(469), + [sym_block_quote] = STATE(469), + [sym__block_quote_prefix] = STATE(285), + [sym_link_reference_definition] = STATE(469), + [sym_block_attribute] = STATE(469), + [sym__paragraph] = STATE(469), + [sym__paragraph_content] = STATE(890), + [sym__inline] = STATE(710), + [sym__symbol_fallback] = STATE(355), + [aux_sym__list_dash_repeat1] = STATE(420), + [aux_sym__list_plus_repeat1] = STATE(421), + [aux_sym__list_star_repeat1] = STATE(422), + [aux_sym__list_task_repeat1] = STATE(404), + [aux_sym__list_definition_repeat1] = STATE(527), + [aux_sym__list_decimal_period_repeat1] = STATE(524), + [aux_sym__list_decimal_paren_repeat1] = STATE(521), + [aux_sym__list_decimal_parens_repeat1] = STATE(520), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(518), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(515), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(514), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(510), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(501), + [aux_sym__list_lower_roman_period_repeat1] = STATE(500), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(499), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(498), + [aux_sym__list_upper_roman_period_repeat1] = STATE(497), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(579), + [aux_sym_table_repeat1] = STATE(358), + [aux_sym__block_quote_prefix_repeat1] = STATE(316), + [aux_sym__inline_repeat1] = STATE(355), + [anon_sym_LBRACK] = ACTIONS(385), + [anon_sym_PIPE] = ACTIONS(387), + [anon_sym_LBRACK_CARET] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_DOT] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(13), + [aux_sym__inline_token1] = ACTIONS(13), + [anon_sym_LBRACE_DASH] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(13), + [anon_sym_PERCENT] = ACTIONS(13), + [sym__newline] = ACTIONS(413), + [sym__heading_begin] = ACTIONS(393), + [sym__div_begin] = ACTIONS(21), + [sym__code_block_begin] = ACTIONS(395), + [sym_list_marker_dash] = ACTIONS(25), + [sym_list_marker_star] = ACTIONS(27), + [sym_list_marker_plus] = ACTIONS(29), + [sym__list_marker_task_begin] = ACTIONS(31), + [sym_list_marker_definition] = ACTIONS(33), + [sym_list_marker_decimal_period] = ACTIONS(35), + [sym_list_marker_lower_alpha_period] = ACTIONS(37), + [sym_list_marker_upper_alpha_period] = ACTIONS(39), + [sym_list_marker_lower_roman_period] = ACTIONS(41), + [sym_list_marker_upper_roman_period] = ACTIONS(43), + [sym_list_marker_decimal_paren] = ACTIONS(45), + [sym_list_marker_lower_alpha_paren] = ACTIONS(47), + [sym_list_marker_upper_alpha_paren] = ACTIONS(49), + [sym_list_marker_lower_roman_paren] = ACTIONS(51), + [sym_list_marker_upper_roman_paren] = ACTIONS(53), + [sym_list_marker_decimal_parens] = ACTIONS(55), + [sym_list_marker_lower_alpha_parens] = ACTIONS(57), + [sym_list_marker_upper_alpha_parens] = ACTIONS(59), + [sym_list_marker_lower_roman_parens] = ACTIONS(61), + [sym_list_marker_upper_roman_parens] = ACTIONS(63), + [sym__block_quote_begin] = ACTIONS(397), + [sym__block_quote_continuation] = ACTIONS(399), + [sym__thematic_break_dash] = ACTIONS(401), + [sym__thematic_break_star] = ACTIONS(401), }, [36] = { - [sym__block_with_heading] = STATE(477), - [sym__block_element] = STATE(477), - [sym_heading] = STATE(477), - [sym_list] = STATE(477), - [sym__list_dash] = STATE(699), - [sym__list_item_dash] = STATE(413), - [sym__list_plus] = STATE(699), - [sym__list_item_plus] = STATE(418), - [sym__list_star] = STATE(699), - [sym__list_item_star] = STATE(417), - [sym__list_task] = STATE(699), - [sym__list_item_task] = STATE(381), + [sym__block_with_heading] = STATE(469), + [sym__block_element] = STATE(469), + [sym_heading] = STATE(469), + [sym_list] = STATE(469), + [sym__list_dash] = STATE(618), + [sym__list_item_dash] = STATE(420), + [sym__list_plus] = STATE(618), + [sym__list_item_plus] = STATE(421), + [sym__list_star] = STATE(618), + [sym__list_item_star] = STATE(422), + [sym__list_task] = STATE(618), + [sym__list_item_task] = STATE(404), [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(699), - [sym__list_item_definition] = STATE(582), - [sym__list_decimal_period] = STATE(699), - [sym__list_item_decimal_period] = STATE(581), - [sym__list_decimal_paren] = STATE(699), - [sym__list_item_decimal_paren] = STATE(579), - [sym__list_decimal_parens] = STATE(699), - [sym__list_item_decimal_parens] = STATE(578), - [sym__list_lower_alpha_period] = STATE(699), - [sym__list_item_lower_alpha_period] = STATE(577), - [sym__list_lower_alpha_paren] = STATE(699), - [sym__list_item_lower_alpha_paren] = STATE(576), - [sym__list_lower_alpha_parens] = STATE(699), - [sym__list_item_lower_alpha_parens] = STATE(575), - [sym__list_upper_alpha_period] = STATE(699), - [sym__list_item_upper_alpha_period] = STATE(574), - [sym__list_upper_alpha_paren] = STATE(699), - [sym__list_item_upper_alpha_paren] = STATE(573), - [sym__list_upper_alpha_parens] = STATE(699), - [sym__list_item_upper_alpha_parens] = STATE(572), - [sym__list_lower_roman_period] = STATE(699), - [sym__list_item_lower_roman_period] = STATE(571), - [sym__list_lower_roman_paren] = STATE(699), - [sym__list_item_lower_roman_paren] = STATE(570), - [sym__list_lower_roman_parens] = STATE(699), - [sym__list_item_lower_roman_parens] = STATE(569), - [sym__list_upper_roman_period] = STATE(699), - [sym__list_item_upper_roman_period] = STATE(568), - [sym__list_upper_roman_paren] = STATE(699), - [sym__list_item_upper_roman_paren] = STATE(567), - [sym__list_upper_roman_parens] = STATE(699), - [sym__list_item_upper_roman_parens] = STATE(566), - [sym_list_item_content] = STATE(811), - [sym_table] = STATE(477), - [sym__table_content] = STATE(289), - [sym_table_separator] = STATE(289), - [sym_table_row] = STATE(363), - [sym_footnote] = STATE(477), - [sym_div] = STATE(477), - [sym_div_marker_begin] = STATE(941), - [sym_code_block] = STATE(477), - [sym_raw_block] = STATE(477), - [sym_thematic_break] = STATE(477), - [sym_block_quote] = STATE(477), - [sym__block_quote_prefix] = STATE(288), - [sym_link_reference_definition] = STATE(477), - [sym_block_attribute] = STATE(477), - [sym__paragraph] = STATE(477), - [sym__paragraph_content] = STATE(764), - [sym__inline] = STATE(703), - [sym__symbol_fallback] = STATE(366), - [aux_sym__list_dash_repeat1] = STATE(413), - [aux_sym__list_plus_repeat1] = STATE(418), - [aux_sym__list_star_repeat1] = STATE(417), - [aux_sym__list_task_repeat1] = STATE(381), - [aux_sym__list_definition_repeat1] = STATE(582), - [aux_sym__list_decimal_period_repeat1] = STATE(581), - [aux_sym__list_decimal_paren_repeat1] = STATE(579), - [aux_sym__list_decimal_parens_repeat1] = STATE(578), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(577), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(576), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(575), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(574), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(573), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(572), - [aux_sym__list_lower_roman_period_repeat1] = STATE(571), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(570), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(569), - [aux_sym__list_upper_roman_period_repeat1] = STATE(568), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(567), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(566), - [aux_sym_table_repeat1] = STATE(289), - [aux_sym__block_quote_prefix_repeat1] = STATE(323), - [aux_sym__inline_repeat1] = STATE(366), - [anon_sym_LBRACK] = ACTIONS(395), - [anon_sym_PIPE] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(399), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__newline] = ACTIONS(427), - [sym__heading_begin] = ACTIONS(403), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(405), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(407), - [sym__block_quote_continuation] = ACTIONS(409), - [sym__thematic_break_dash] = ACTIONS(411), - [sym__thematic_break_star] = ACTIONS(411), - [sym__footnote_begin] = ACTIONS(413), + [sym__list_definition] = STATE(618), + [sym__list_item_definition] = STATE(527), + [sym__list_decimal_period] = STATE(618), + [sym__list_item_decimal_period] = STATE(524), + [sym__list_decimal_paren] = STATE(618), + [sym__list_item_decimal_paren] = STATE(521), + [sym__list_decimal_parens] = STATE(618), + [sym__list_item_decimal_parens] = STATE(520), + [sym__list_lower_alpha_period] = STATE(618), + [sym__list_item_lower_alpha_period] = STATE(518), + [sym__list_lower_alpha_paren] = STATE(618), + [sym__list_item_lower_alpha_paren] = STATE(517), + [sym__list_lower_alpha_parens] = STATE(618), + [sym__list_item_lower_alpha_parens] = STATE(515), + [sym__list_upper_alpha_period] = STATE(618), + [sym__list_item_upper_alpha_period] = STATE(514), + [sym__list_upper_alpha_paren] = STATE(618), + [sym__list_item_upper_alpha_paren] = STATE(510), + [sym__list_upper_alpha_parens] = STATE(618), + [sym__list_item_upper_alpha_parens] = STATE(501), + [sym__list_lower_roman_period] = STATE(618), + [sym__list_item_lower_roman_period] = STATE(500), + [sym__list_lower_roman_paren] = STATE(618), + [sym__list_item_lower_roman_paren] = STATE(499), + [sym__list_lower_roman_parens] = STATE(618), + [sym__list_item_lower_roman_parens] = STATE(498), + [sym__list_upper_roman_period] = STATE(618), + [sym__list_item_upper_roman_period] = STATE(497), + [sym__list_upper_roman_paren] = STATE(618), + [sym__list_item_upper_roman_paren] = STATE(496), + [sym__list_upper_roman_parens] = STATE(618), + [sym__list_item_upper_roman_parens] = STATE(579), + [sym_list_item_content] = STATE(688), + [sym_table] = STATE(469), + [sym__table_content] = STATE(358), + [sym_table_separator] = STATE(358), + [sym_table_row] = STATE(383), + [sym_footnote] = STATE(469), + [sym_footnote_marker_begin] = STATE(1080), + [sym_div] = STATE(469), + [sym_div_marker_begin] = STATE(952), + [sym_code_block] = STATE(469), + [sym_raw_block] = STATE(469), + [sym_thematic_break] = STATE(469), + [sym_block_quote] = STATE(469), + [sym__block_quote_prefix] = STATE(285), + [sym_link_reference_definition] = STATE(469), + [sym_block_attribute] = STATE(469), + [sym__paragraph] = STATE(469), + [sym__paragraph_content] = STATE(890), + [sym__inline] = STATE(710), + [sym__symbol_fallback] = STATE(355), + [aux_sym__list_dash_repeat1] = STATE(420), + [aux_sym__list_plus_repeat1] = STATE(421), + [aux_sym__list_star_repeat1] = STATE(422), + [aux_sym__list_task_repeat1] = STATE(404), + [aux_sym__list_definition_repeat1] = STATE(527), + [aux_sym__list_decimal_period_repeat1] = STATE(524), + [aux_sym__list_decimal_paren_repeat1] = STATE(521), + [aux_sym__list_decimal_parens_repeat1] = STATE(520), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(518), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(515), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(514), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(510), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(501), + [aux_sym__list_lower_roman_period_repeat1] = STATE(500), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(499), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(498), + [aux_sym__list_upper_roman_period_repeat1] = STATE(497), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(579), + [aux_sym_table_repeat1] = STATE(358), + [aux_sym__block_quote_prefix_repeat1] = STATE(316), + [aux_sym__inline_repeat1] = STATE(355), + [anon_sym_LBRACK] = ACTIONS(385), + [anon_sym_PIPE] = ACTIONS(387), + [anon_sym_LBRACK_CARET] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_DOT] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(13), + [aux_sym__inline_token1] = ACTIONS(13), + [anon_sym_LBRACE_DASH] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(13), + [anon_sym_PERCENT] = ACTIONS(13), + [sym__newline] = ACTIONS(413), + [sym__heading_begin] = ACTIONS(393), + [sym__div_begin] = ACTIONS(21), + [sym__code_block_begin] = ACTIONS(395), + [sym_list_marker_dash] = ACTIONS(25), + [sym_list_marker_star] = ACTIONS(27), + [sym_list_marker_plus] = ACTIONS(29), + [sym__list_marker_task_begin] = ACTIONS(31), + [sym_list_marker_definition] = ACTIONS(33), + [sym_list_marker_decimal_period] = ACTIONS(35), + [sym_list_marker_lower_alpha_period] = ACTIONS(37), + [sym_list_marker_upper_alpha_period] = ACTIONS(39), + [sym_list_marker_lower_roman_period] = ACTIONS(41), + [sym_list_marker_upper_roman_period] = ACTIONS(43), + [sym_list_marker_decimal_paren] = ACTIONS(45), + [sym_list_marker_lower_alpha_paren] = ACTIONS(47), + [sym_list_marker_upper_alpha_paren] = ACTIONS(49), + [sym_list_marker_lower_roman_paren] = ACTIONS(51), + [sym_list_marker_upper_roman_paren] = ACTIONS(53), + [sym_list_marker_decimal_parens] = ACTIONS(55), + [sym_list_marker_lower_alpha_parens] = ACTIONS(57), + [sym_list_marker_upper_alpha_parens] = ACTIONS(59), + [sym_list_marker_lower_roman_parens] = ACTIONS(61), + [sym_list_marker_upper_roman_parens] = ACTIONS(63), + [sym__block_quote_begin] = ACTIONS(397), + [sym__block_quote_continuation] = ACTIONS(399), + [sym__thematic_break_dash] = ACTIONS(401), + [sym__thematic_break_star] = ACTIONS(401), }, [37] = { - [sym__block_with_heading] = STATE(425), - [sym__block_element] = STATE(425), - [sym_heading] = STATE(425), - [sym_list] = STATE(425), - [sym__list_dash] = STATE(699), - [sym__list_item_dash] = STATE(413), - [sym__list_plus] = STATE(699), - [sym__list_item_plus] = STATE(418), - [sym__list_star] = STATE(699), - [sym__list_item_star] = STATE(417), - [sym__list_task] = STATE(699), - [sym__list_item_task] = STATE(381), + [sym__block_with_heading] = STATE(463), + [sym__block_element] = STATE(463), + [sym_heading] = STATE(463), + [sym_list] = STATE(463), + [sym__list_dash] = STATE(618), + [sym__list_item_dash] = STATE(420), + [sym__list_plus] = STATE(618), + [sym__list_item_plus] = STATE(421), + [sym__list_star] = STATE(618), + [sym__list_item_star] = STATE(422), + [sym__list_task] = STATE(618), + [sym__list_item_task] = STATE(404), [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(699), - [sym__list_item_definition] = STATE(582), - [sym__list_decimal_period] = STATE(699), - [sym__list_item_decimal_period] = STATE(581), - [sym__list_decimal_paren] = STATE(699), - [sym__list_item_decimal_paren] = STATE(579), - [sym__list_decimal_parens] = STATE(699), - [sym__list_item_decimal_parens] = STATE(578), - [sym__list_lower_alpha_period] = STATE(699), - [sym__list_item_lower_alpha_period] = STATE(577), - [sym__list_lower_alpha_paren] = STATE(699), - [sym__list_item_lower_alpha_paren] = STATE(576), - [sym__list_lower_alpha_parens] = STATE(699), - [sym__list_item_lower_alpha_parens] = STATE(575), - [sym__list_upper_alpha_period] = STATE(699), - [sym__list_item_upper_alpha_period] = STATE(574), - [sym__list_upper_alpha_paren] = STATE(699), - [sym__list_item_upper_alpha_paren] = STATE(573), - [sym__list_upper_alpha_parens] = STATE(699), - [sym__list_item_upper_alpha_parens] = STATE(572), - [sym__list_lower_roman_period] = STATE(699), - [sym__list_item_lower_roman_period] = STATE(571), - [sym__list_lower_roman_paren] = STATE(699), - [sym__list_item_lower_roman_paren] = STATE(570), - [sym__list_lower_roman_parens] = STATE(699), - [sym__list_item_lower_roman_parens] = STATE(569), - [sym__list_upper_roman_period] = STATE(699), - [sym__list_item_upper_roman_period] = STATE(568), - [sym__list_upper_roman_paren] = STATE(699), - [sym__list_item_upper_roman_paren] = STATE(567), - [sym__list_upper_roman_parens] = STATE(699), - [sym__list_item_upper_roman_parens] = STATE(566), - [sym_list_item_content] = STATE(807), - [sym_table] = STATE(425), - [sym__table_content] = STATE(289), - [sym_table_separator] = STATE(289), - [sym_table_row] = STATE(363), - [sym_footnote] = STATE(425), - [sym_div] = STATE(425), - [sym_div_marker_begin] = STATE(941), - [sym_code_block] = STATE(425), - [sym_raw_block] = STATE(425), - [sym_thematic_break] = STATE(425), - [sym_block_quote] = STATE(425), - [sym__block_quote_prefix] = STATE(288), - [sym_link_reference_definition] = STATE(425), - [sym_block_attribute] = STATE(425), - [sym__paragraph] = STATE(425), - [sym__paragraph_content] = STATE(764), - [sym__inline] = STATE(703), - [sym__symbol_fallback] = STATE(366), - [aux_sym__list_dash_repeat1] = STATE(413), - [aux_sym__list_plus_repeat1] = STATE(418), - [aux_sym__list_star_repeat1] = STATE(417), - [aux_sym__list_task_repeat1] = STATE(381), - [aux_sym__list_definition_repeat1] = STATE(582), - [aux_sym__list_decimal_period_repeat1] = STATE(581), - [aux_sym__list_decimal_paren_repeat1] = STATE(579), - [aux_sym__list_decimal_parens_repeat1] = STATE(578), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(577), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(576), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(575), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(574), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(573), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(572), - [aux_sym__list_lower_roman_period_repeat1] = STATE(571), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(570), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(569), - [aux_sym__list_upper_roman_period_repeat1] = STATE(568), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(567), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(566), - [aux_sym_table_repeat1] = STATE(289), - [aux_sym__block_quote_prefix_repeat1] = STATE(323), - [aux_sym__inline_repeat1] = STATE(366), - [anon_sym_LBRACK] = ACTIONS(395), - [anon_sym_PIPE] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(399), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__newline] = ACTIONS(429), - [sym__heading_begin] = ACTIONS(403), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(405), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(407), - [sym__block_quote_continuation] = ACTIONS(409), - [sym__thematic_break_dash] = ACTIONS(411), - [sym__thematic_break_star] = ACTIONS(411), - [sym__footnote_begin] = ACTIONS(413), + [sym__list_definition] = STATE(618), + [sym__list_item_definition] = STATE(527), + [sym__list_decimal_period] = STATE(618), + [sym__list_item_decimal_period] = STATE(524), + [sym__list_decimal_paren] = STATE(618), + [sym__list_item_decimal_paren] = STATE(521), + [sym__list_decimal_parens] = STATE(618), + [sym__list_item_decimal_parens] = STATE(520), + [sym__list_lower_alpha_period] = STATE(618), + [sym__list_item_lower_alpha_period] = STATE(518), + [sym__list_lower_alpha_paren] = STATE(618), + [sym__list_item_lower_alpha_paren] = STATE(517), + [sym__list_lower_alpha_parens] = STATE(618), + [sym__list_item_lower_alpha_parens] = STATE(515), + [sym__list_upper_alpha_period] = STATE(618), + [sym__list_item_upper_alpha_period] = STATE(514), + [sym__list_upper_alpha_paren] = STATE(618), + [sym__list_item_upper_alpha_paren] = STATE(510), + [sym__list_upper_alpha_parens] = STATE(618), + [sym__list_item_upper_alpha_parens] = STATE(501), + [sym__list_lower_roman_period] = STATE(618), + [sym__list_item_lower_roman_period] = STATE(500), + [sym__list_lower_roman_paren] = STATE(618), + [sym__list_item_lower_roman_paren] = STATE(499), + [sym__list_lower_roman_parens] = STATE(618), + [sym__list_item_lower_roman_parens] = STATE(498), + [sym__list_upper_roman_period] = STATE(618), + [sym__list_item_upper_roman_period] = STATE(497), + [sym__list_upper_roman_paren] = STATE(618), + [sym__list_item_upper_roman_paren] = STATE(496), + [sym__list_upper_roman_parens] = STATE(618), + [sym__list_item_upper_roman_parens] = STATE(579), + [sym_list_item_content] = STATE(687), + [sym_table] = STATE(463), + [sym__table_content] = STATE(358), + [sym_table_separator] = STATE(358), + [sym_table_row] = STATE(383), + [sym_footnote] = STATE(463), + [sym_footnote_marker_begin] = STATE(1080), + [sym_div] = STATE(463), + [sym_div_marker_begin] = STATE(952), + [sym_code_block] = STATE(463), + [sym_raw_block] = STATE(463), + [sym_thematic_break] = STATE(463), + [sym_block_quote] = STATE(463), + [sym__block_quote_prefix] = STATE(285), + [sym_link_reference_definition] = STATE(463), + [sym_block_attribute] = STATE(463), + [sym__paragraph] = STATE(463), + [sym__paragraph_content] = STATE(890), + [sym__inline] = STATE(710), + [sym__symbol_fallback] = STATE(355), + [aux_sym__list_dash_repeat1] = STATE(420), + [aux_sym__list_plus_repeat1] = STATE(421), + [aux_sym__list_star_repeat1] = STATE(422), + [aux_sym__list_task_repeat1] = STATE(404), + [aux_sym__list_definition_repeat1] = STATE(527), + [aux_sym__list_decimal_period_repeat1] = STATE(524), + [aux_sym__list_decimal_paren_repeat1] = STATE(521), + [aux_sym__list_decimal_parens_repeat1] = STATE(520), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(518), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(515), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(514), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(510), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(501), + [aux_sym__list_lower_roman_period_repeat1] = STATE(500), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(499), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(498), + [aux_sym__list_upper_roman_period_repeat1] = STATE(497), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(579), + [aux_sym_table_repeat1] = STATE(358), + [aux_sym__block_quote_prefix_repeat1] = STATE(316), + [aux_sym__inline_repeat1] = STATE(355), + [anon_sym_LBRACK] = ACTIONS(385), + [anon_sym_PIPE] = ACTIONS(387), + [anon_sym_LBRACK_CARET] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_DOT] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(13), + [aux_sym__inline_token1] = ACTIONS(13), + [anon_sym_LBRACE_DASH] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(13), + [anon_sym_PERCENT] = ACTIONS(13), + [sym__newline] = ACTIONS(411), + [sym__heading_begin] = ACTIONS(393), + [sym__div_begin] = ACTIONS(21), + [sym__code_block_begin] = ACTIONS(395), + [sym_list_marker_dash] = ACTIONS(25), + [sym_list_marker_star] = ACTIONS(27), + [sym_list_marker_plus] = ACTIONS(29), + [sym__list_marker_task_begin] = ACTIONS(31), + [sym_list_marker_definition] = ACTIONS(33), + [sym_list_marker_decimal_period] = ACTIONS(35), + [sym_list_marker_lower_alpha_period] = ACTIONS(37), + [sym_list_marker_upper_alpha_period] = ACTIONS(39), + [sym_list_marker_lower_roman_period] = ACTIONS(41), + [sym_list_marker_upper_roman_period] = ACTIONS(43), + [sym_list_marker_decimal_paren] = ACTIONS(45), + [sym_list_marker_lower_alpha_paren] = ACTIONS(47), + [sym_list_marker_upper_alpha_paren] = ACTIONS(49), + [sym_list_marker_lower_roman_paren] = ACTIONS(51), + [sym_list_marker_upper_roman_paren] = ACTIONS(53), + [sym_list_marker_decimal_parens] = ACTIONS(55), + [sym_list_marker_lower_alpha_parens] = ACTIONS(57), + [sym_list_marker_upper_alpha_parens] = ACTIONS(59), + [sym_list_marker_lower_roman_parens] = ACTIONS(61), + [sym_list_marker_upper_roman_parens] = ACTIONS(63), + [sym__block_quote_begin] = ACTIONS(397), + [sym__block_quote_continuation] = ACTIONS(399), + [sym__thematic_break_dash] = ACTIONS(401), + [sym__thematic_break_star] = ACTIONS(401), }, [38] = { - [sym__block_with_heading] = STATE(446), - [sym__block_element] = STATE(446), - [sym_heading] = STATE(446), - [sym_list] = STATE(446), - [sym__list_dash] = STATE(699), - [sym__list_item_dash] = STATE(413), - [sym__list_plus] = STATE(699), - [sym__list_item_plus] = STATE(418), - [sym__list_star] = STATE(699), - [sym__list_item_star] = STATE(417), - [sym__list_task] = STATE(699), - [sym__list_item_task] = STATE(381), + [sym__block_with_heading] = STATE(456), + [sym__block_element] = STATE(456), + [sym_heading] = STATE(456), + [sym_list] = STATE(456), + [sym__list_dash] = STATE(618), + [sym__list_item_dash] = STATE(420), + [sym__list_plus] = STATE(618), + [sym__list_item_plus] = STATE(421), + [sym__list_star] = STATE(618), + [sym__list_item_star] = STATE(422), + [sym__list_task] = STATE(618), + [sym__list_item_task] = STATE(404), [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(699), - [sym__list_item_definition] = STATE(582), - [sym__list_decimal_period] = STATE(699), - [sym__list_item_decimal_period] = STATE(581), - [sym__list_decimal_paren] = STATE(699), - [sym__list_item_decimal_paren] = STATE(579), - [sym__list_decimal_parens] = STATE(699), - [sym__list_item_decimal_parens] = STATE(578), - [sym__list_lower_alpha_period] = STATE(699), - [sym__list_item_lower_alpha_period] = STATE(577), - [sym__list_lower_alpha_paren] = STATE(699), - [sym__list_item_lower_alpha_paren] = STATE(576), - [sym__list_lower_alpha_parens] = STATE(699), - [sym__list_item_lower_alpha_parens] = STATE(575), - [sym__list_upper_alpha_period] = STATE(699), - [sym__list_item_upper_alpha_period] = STATE(574), - [sym__list_upper_alpha_paren] = STATE(699), - [sym__list_item_upper_alpha_paren] = STATE(573), - [sym__list_upper_alpha_parens] = STATE(699), - [sym__list_item_upper_alpha_parens] = STATE(572), - [sym__list_lower_roman_period] = STATE(699), - [sym__list_item_lower_roman_period] = STATE(571), - [sym__list_lower_roman_paren] = STATE(699), - [sym__list_item_lower_roman_paren] = STATE(570), - [sym__list_lower_roman_parens] = STATE(699), - [sym__list_item_lower_roman_parens] = STATE(569), - [sym__list_upper_roman_period] = STATE(699), - [sym__list_item_upper_roman_period] = STATE(568), - [sym__list_upper_roman_paren] = STATE(699), - [sym__list_item_upper_roman_paren] = STATE(567), - [sym__list_upper_roman_parens] = STATE(699), - [sym__list_item_upper_roman_parens] = STATE(566), - [sym_list_item_content] = STATE(667), - [sym_table] = STATE(446), - [sym__table_content] = STATE(289), - [sym_table_separator] = STATE(289), - [sym_table_row] = STATE(363), - [sym_footnote] = STATE(446), - [sym_div] = STATE(446), - [sym_div_marker_begin] = STATE(941), - [sym_code_block] = STATE(446), - [sym_raw_block] = STATE(446), - [sym_thematic_break] = STATE(446), - [sym_block_quote] = STATE(446), - [sym__block_quote_prefix] = STATE(288), - [sym_link_reference_definition] = STATE(446), - [sym_block_attribute] = STATE(446), - [sym__paragraph] = STATE(446), - [sym__paragraph_content] = STATE(764), - [sym__inline] = STATE(703), - [sym__symbol_fallback] = STATE(366), - [aux_sym__list_dash_repeat1] = STATE(413), - [aux_sym__list_plus_repeat1] = STATE(418), - [aux_sym__list_star_repeat1] = STATE(417), - [aux_sym__list_task_repeat1] = STATE(381), - [aux_sym__list_definition_repeat1] = STATE(582), - [aux_sym__list_decimal_period_repeat1] = STATE(581), - [aux_sym__list_decimal_paren_repeat1] = STATE(579), - [aux_sym__list_decimal_parens_repeat1] = STATE(578), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(577), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(576), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(575), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(574), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(573), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(572), - [aux_sym__list_lower_roman_period_repeat1] = STATE(571), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(570), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(569), - [aux_sym__list_upper_roman_period_repeat1] = STATE(568), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(567), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(566), - [aux_sym_table_repeat1] = STATE(289), - [aux_sym__block_quote_prefix_repeat1] = STATE(323), - [aux_sym__inline_repeat1] = STATE(366), - [anon_sym_LBRACK] = ACTIONS(395), - [anon_sym_PIPE] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(399), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__newline] = ACTIONS(431), - [sym__heading_begin] = ACTIONS(403), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(405), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(407), - [sym__block_quote_continuation] = ACTIONS(409), - [sym__thematic_break_dash] = ACTIONS(411), - [sym__thematic_break_star] = ACTIONS(411), - [sym__footnote_begin] = ACTIONS(413), + [sym__list_definition] = STATE(618), + [sym__list_item_definition] = STATE(527), + [sym__list_decimal_period] = STATE(618), + [sym__list_item_decimal_period] = STATE(524), + [sym__list_decimal_paren] = STATE(618), + [sym__list_item_decimal_paren] = STATE(521), + [sym__list_decimal_parens] = STATE(618), + [sym__list_item_decimal_parens] = STATE(520), + [sym__list_lower_alpha_period] = STATE(618), + [sym__list_item_lower_alpha_period] = STATE(518), + [sym__list_lower_alpha_paren] = STATE(618), + [sym__list_item_lower_alpha_paren] = STATE(517), + [sym__list_lower_alpha_parens] = STATE(618), + [sym__list_item_lower_alpha_parens] = STATE(515), + [sym__list_upper_alpha_period] = STATE(618), + [sym__list_item_upper_alpha_period] = STATE(514), + [sym__list_upper_alpha_paren] = STATE(618), + [sym__list_item_upper_alpha_paren] = STATE(510), + [sym__list_upper_alpha_parens] = STATE(618), + [sym__list_item_upper_alpha_parens] = STATE(501), + [sym__list_lower_roman_period] = STATE(618), + [sym__list_item_lower_roman_period] = STATE(500), + [sym__list_lower_roman_paren] = STATE(618), + [sym__list_item_lower_roman_paren] = STATE(499), + [sym__list_lower_roman_parens] = STATE(618), + [sym__list_item_lower_roman_parens] = STATE(498), + [sym__list_upper_roman_period] = STATE(618), + [sym__list_item_upper_roman_period] = STATE(497), + [sym__list_upper_roman_paren] = STATE(618), + [sym__list_item_upper_roman_paren] = STATE(496), + [sym__list_upper_roman_parens] = STATE(618), + [sym__list_item_upper_roman_parens] = STATE(579), + [sym_list_item_content] = STATE(684), + [sym_table] = STATE(456), + [sym__table_content] = STATE(358), + [sym_table_separator] = STATE(358), + [sym_table_row] = STATE(383), + [sym_footnote] = STATE(456), + [sym_footnote_marker_begin] = STATE(1080), + [sym_div] = STATE(456), + [sym_div_marker_begin] = STATE(952), + [sym_code_block] = STATE(456), + [sym_raw_block] = STATE(456), + [sym_thematic_break] = STATE(456), + [sym_block_quote] = STATE(456), + [sym__block_quote_prefix] = STATE(285), + [sym_link_reference_definition] = STATE(456), + [sym_block_attribute] = STATE(456), + [sym__paragraph] = STATE(456), + [sym__paragraph_content] = STATE(890), + [sym__inline] = STATE(710), + [sym__symbol_fallback] = STATE(355), + [aux_sym__list_dash_repeat1] = STATE(420), + [aux_sym__list_plus_repeat1] = STATE(421), + [aux_sym__list_star_repeat1] = STATE(422), + [aux_sym__list_task_repeat1] = STATE(404), + [aux_sym__list_definition_repeat1] = STATE(527), + [aux_sym__list_decimal_period_repeat1] = STATE(524), + [aux_sym__list_decimal_paren_repeat1] = STATE(521), + [aux_sym__list_decimal_parens_repeat1] = STATE(520), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(518), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(515), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(514), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(510), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(501), + [aux_sym__list_lower_roman_period_repeat1] = STATE(500), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(499), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(498), + [aux_sym__list_upper_roman_period_repeat1] = STATE(497), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(579), + [aux_sym_table_repeat1] = STATE(358), + [aux_sym__block_quote_prefix_repeat1] = STATE(316), + [aux_sym__inline_repeat1] = STATE(355), + [anon_sym_LBRACK] = ACTIONS(385), + [anon_sym_PIPE] = ACTIONS(387), + [anon_sym_LBRACK_CARET] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_DOT] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(13), + [aux_sym__inline_token1] = ACTIONS(13), + [anon_sym_LBRACE_DASH] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(13), + [anon_sym_PERCENT] = ACTIONS(13), + [sym__newline] = ACTIONS(415), + [sym__heading_begin] = ACTIONS(393), + [sym__div_begin] = ACTIONS(21), + [sym__code_block_begin] = ACTIONS(395), + [sym_list_marker_dash] = ACTIONS(25), + [sym_list_marker_star] = ACTIONS(27), + [sym_list_marker_plus] = ACTIONS(29), + [sym__list_marker_task_begin] = ACTIONS(31), + [sym_list_marker_definition] = ACTIONS(33), + [sym_list_marker_decimal_period] = ACTIONS(35), + [sym_list_marker_lower_alpha_period] = ACTIONS(37), + [sym_list_marker_upper_alpha_period] = ACTIONS(39), + [sym_list_marker_lower_roman_period] = ACTIONS(41), + [sym_list_marker_upper_roman_period] = ACTIONS(43), + [sym_list_marker_decimal_paren] = ACTIONS(45), + [sym_list_marker_lower_alpha_paren] = ACTIONS(47), + [sym_list_marker_upper_alpha_paren] = ACTIONS(49), + [sym_list_marker_lower_roman_paren] = ACTIONS(51), + [sym_list_marker_upper_roman_paren] = ACTIONS(53), + [sym_list_marker_decimal_parens] = ACTIONS(55), + [sym_list_marker_lower_alpha_parens] = ACTIONS(57), + [sym_list_marker_upper_alpha_parens] = ACTIONS(59), + [sym_list_marker_lower_roman_parens] = ACTIONS(61), + [sym_list_marker_upper_roman_parens] = ACTIONS(63), + [sym__block_quote_begin] = ACTIONS(397), + [sym__block_quote_continuation] = ACTIONS(399), + [sym__thematic_break_dash] = ACTIONS(401), + [sym__thematic_break_star] = ACTIONS(401), }, [39] = { + [sym__block_with_heading] = STATE(456), + [sym__block_element] = STATE(456), + [sym_heading] = STATE(456), + [sym_list] = STATE(456), + [sym__list_dash] = STATE(618), + [sym__list_item_dash] = STATE(420), + [sym__list_plus] = STATE(618), + [sym__list_item_plus] = STATE(421), + [sym__list_star] = STATE(618), + [sym__list_item_star] = STATE(422), + [sym__list_task] = STATE(618), + [sym__list_item_task] = STATE(404), + [sym_list_marker_task] = STATE(38), + [sym__list_definition] = STATE(618), + [sym__list_item_definition] = STATE(527), + [sym__list_decimal_period] = STATE(618), + [sym__list_item_decimal_period] = STATE(524), + [sym__list_decimal_paren] = STATE(618), + [sym__list_item_decimal_paren] = STATE(521), + [sym__list_decimal_parens] = STATE(618), + [sym__list_item_decimal_parens] = STATE(520), + [sym__list_lower_alpha_period] = STATE(618), + [sym__list_item_lower_alpha_period] = STATE(518), + [sym__list_lower_alpha_paren] = STATE(618), + [sym__list_item_lower_alpha_paren] = STATE(517), + [sym__list_lower_alpha_parens] = STATE(618), + [sym__list_item_lower_alpha_parens] = STATE(515), + [sym__list_upper_alpha_period] = STATE(618), + [sym__list_item_upper_alpha_period] = STATE(514), + [sym__list_upper_alpha_paren] = STATE(618), + [sym__list_item_upper_alpha_paren] = STATE(510), + [sym__list_upper_alpha_parens] = STATE(618), + [sym__list_item_upper_alpha_parens] = STATE(501), + [sym__list_lower_roman_period] = STATE(618), + [sym__list_item_lower_roman_period] = STATE(500), + [sym__list_lower_roman_paren] = STATE(618), + [sym__list_item_lower_roman_paren] = STATE(499), + [sym__list_lower_roman_parens] = STATE(618), + [sym__list_item_lower_roman_parens] = STATE(498), + [sym__list_upper_roman_period] = STATE(618), + [sym__list_item_upper_roman_period] = STATE(497), + [sym__list_upper_roman_paren] = STATE(618), + [sym__list_item_upper_roman_paren] = STATE(496), + [sym__list_upper_roman_parens] = STATE(618), + [sym__list_item_upper_roman_parens] = STATE(579), + [sym_list_item_content] = STATE(670), + [sym_table] = STATE(456), + [sym__table_content] = STATE(358), + [sym_table_separator] = STATE(358), + [sym_table_row] = STATE(383), + [sym_footnote] = STATE(456), + [sym_footnote_marker_begin] = STATE(1080), + [sym_div] = STATE(456), + [sym_div_marker_begin] = STATE(952), + [sym_code_block] = STATE(456), + [sym_raw_block] = STATE(456), + [sym_thematic_break] = STATE(456), + [sym_block_quote] = STATE(456), + [sym__block_quote_prefix] = STATE(285), + [sym_link_reference_definition] = STATE(456), + [sym_block_attribute] = STATE(456), + [sym__paragraph] = STATE(456), + [sym__paragraph_content] = STATE(890), + [sym__inline] = STATE(710), + [sym__symbol_fallback] = STATE(355), + [aux_sym__list_dash_repeat1] = STATE(420), + [aux_sym__list_plus_repeat1] = STATE(421), + [aux_sym__list_star_repeat1] = STATE(422), + [aux_sym__list_task_repeat1] = STATE(404), + [aux_sym__list_definition_repeat1] = STATE(527), + [aux_sym__list_decimal_period_repeat1] = STATE(524), + [aux_sym__list_decimal_paren_repeat1] = STATE(521), + [aux_sym__list_decimal_parens_repeat1] = STATE(520), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(518), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(515), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(514), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(510), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(501), + [aux_sym__list_lower_roman_period_repeat1] = STATE(500), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(499), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(498), + [aux_sym__list_upper_roman_period_repeat1] = STATE(497), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(579), + [aux_sym_table_repeat1] = STATE(358), + [aux_sym__block_quote_prefix_repeat1] = STATE(316), + [aux_sym__inline_repeat1] = STATE(355), + [anon_sym_LBRACK] = ACTIONS(385), + [anon_sym_PIPE] = ACTIONS(387), + [anon_sym_LBRACK_CARET] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_DOT] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(13), + [aux_sym__inline_token1] = ACTIONS(13), + [anon_sym_LBRACE_DASH] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(13), + [anon_sym_PERCENT] = ACTIONS(13), + [sym__newline] = ACTIONS(415), + [sym__heading_begin] = ACTIONS(393), + [sym__div_begin] = ACTIONS(21), + [sym__code_block_begin] = ACTIONS(395), + [sym_list_marker_dash] = ACTIONS(25), + [sym_list_marker_star] = ACTIONS(27), + [sym_list_marker_plus] = ACTIONS(29), + [sym__list_marker_task_begin] = ACTIONS(31), + [sym_list_marker_definition] = ACTIONS(33), + [sym_list_marker_decimal_period] = ACTIONS(35), + [sym_list_marker_lower_alpha_period] = ACTIONS(37), + [sym_list_marker_upper_alpha_period] = ACTIONS(39), + [sym_list_marker_lower_roman_period] = ACTIONS(41), + [sym_list_marker_upper_roman_period] = ACTIONS(43), + [sym_list_marker_decimal_paren] = ACTIONS(45), + [sym_list_marker_lower_alpha_paren] = ACTIONS(47), + [sym_list_marker_upper_alpha_paren] = ACTIONS(49), + [sym_list_marker_lower_roman_paren] = ACTIONS(51), + [sym_list_marker_upper_roman_paren] = ACTIONS(53), + [sym_list_marker_decimal_parens] = ACTIONS(55), + [sym_list_marker_lower_alpha_parens] = ACTIONS(57), + [sym_list_marker_upper_alpha_parens] = ACTIONS(59), + [sym_list_marker_lower_roman_parens] = ACTIONS(61), + [sym_list_marker_upper_roman_parens] = ACTIONS(63), + [sym__block_quote_begin] = ACTIONS(397), + [sym__block_quote_continuation] = ACTIONS(399), + [sym__thematic_break_dash] = ACTIONS(401), + [sym__thematic_break_star] = ACTIONS(401), + }, + [40] = { [sym__block_with_heading] = STATE(445), [sym__block_element] = STATE(445), [sym_heading] = STATE(445), [sym_list] = STATE(445), - [sym__list_dash] = STATE(699), - [sym__list_item_dash] = STATE(413), - [sym__list_plus] = STATE(699), - [sym__list_item_plus] = STATE(418), - [sym__list_star] = STATE(699), - [sym__list_item_star] = STATE(417), - [sym__list_task] = STATE(699), - [sym__list_item_task] = STATE(381), + [sym__list_dash] = STATE(618), + [sym__list_item_dash] = STATE(420), + [sym__list_plus] = STATE(618), + [sym__list_item_plus] = STATE(421), + [sym__list_star] = STATE(618), + [sym__list_item_star] = STATE(422), + [sym__list_task] = STATE(618), + [sym__list_item_task] = STATE(404), [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(699), - [sym__list_item_definition] = STATE(582), - [sym__list_decimal_period] = STATE(699), - [sym__list_item_decimal_period] = STATE(581), - [sym__list_decimal_paren] = STATE(699), - [sym__list_item_decimal_paren] = STATE(579), - [sym__list_decimal_parens] = STATE(699), - [sym__list_item_decimal_parens] = STATE(578), - [sym__list_lower_alpha_period] = STATE(699), - [sym__list_item_lower_alpha_period] = STATE(577), - [sym__list_lower_alpha_paren] = STATE(699), - [sym__list_item_lower_alpha_paren] = STATE(576), - [sym__list_lower_alpha_parens] = STATE(699), - [sym__list_item_lower_alpha_parens] = STATE(575), - [sym__list_upper_alpha_period] = STATE(699), - [sym__list_item_upper_alpha_period] = STATE(574), - [sym__list_upper_alpha_paren] = STATE(699), - [sym__list_item_upper_alpha_paren] = STATE(573), - [sym__list_upper_alpha_parens] = STATE(699), - [sym__list_item_upper_alpha_parens] = STATE(572), - [sym__list_lower_roman_period] = STATE(699), - [sym__list_item_lower_roman_period] = STATE(571), - [sym__list_lower_roman_paren] = STATE(699), - [sym__list_item_lower_roman_paren] = STATE(570), - [sym__list_lower_roman_parens] = STATE(699), - [sym__list_item_lower_roman_parens] = STATE(569), - [sym__list_upper_roman_period] = STATE(699), - [sym__list_item_upper_roman_period] = STATE(568), - [sym__list_upper_roman_paren] = STATE(699), - [sym__list_item_upper_roman_paren] = STATE(567), - [sym__list_upper_roman_parens] = STATE(699), - [sym__list_item_upper_roman_parens] = STATE(566), - [sym_list_item_content] = STATE(691), + [sym__list_definition] = STATE(618), + [sym__list_item_definition] = STATE(527), + [sym__list_decimal_period] = STATE(618), + [sym__list_item_decimal_period] = STATE(524), + [sym__list_decimal_paren] = STATE(618), + [sym__list_item_decimal_paren] = STATE(521), + [sym__list_decimal_parens] = STATE(618), + [sym__list_item_decimal_parens] = STATE(520), + [sym__list_lower_alpha_period] = STATE(618), + [sym__list_item_lower_alpha_period] = STATE(518), + [sym__list_lower_alpha_paren] = STATE(618), + [sym__list_item_lower_alpha_paren] = STATE(517), + [sym__list_lower_alpha_parens] = STATE(618), + [sym__list_item_lower_alpha_parens] = STATE(515), + [sym__list_upper_alpha_period] = STATE(618), + [sym__list_item_upper_alpha_period] = STATE(514), + [sym__list_upper_alpha_paren] = STATE(618), + [sym__list_item_upper_alpha_paren] = STATE(510), + [sym__list_upper_alpha_parens] = STATE(618), + [sym__list_item_upper_alpha_parens] = STATE(501), + [sym__list_lower_roman_period] = STATE(618), + [sym__list_item_lower_roman_period] = STATE(500), + [sym__list_lower_roman_paren] = STATE(618), + [sym__list_item_lower_roman_paren] = STATE(499), + [sym__list_lower_roman_parens] = STATE(618), + [sym__list_item_lower_roman_parens] = STATE(498), + [sym__list_upper_roman_period] = STATE(618), + [sym__list_item_upper_roman_period] = STATE(497), + [sym__list_upper_roman_paren] = STATE(618), + [sym__list_item_upper_roman_paren] = STATE(496), + [sym__list_upper_roman_parens] = STATE(618), + [sym__list_item_upper_roman_parens] = STATE(579), + [sym_list_item_content] = STATE(863), [sym_table] = STATE(445), - [sym__table_content] = STATE(289), - [sym_table_separator] = STATE(289), - [sym_table_row] = STATE(363), + [sym__table_content] = STATE(358), + [sym_table_separator] = STATE(358), + [sym_table_row] = STATE(383), [sym_footnote] = STATE(445), + [sym_footnote_marker_begin] = STATE(1080), [sym_div] = STATE(445), - [sym_div_marker_begin] = STATE(941), + [sym_div_marker_begin] = STATE(952), [sym_code_block] = STATE(445), [sym_raw_block] = STATE(445), [sym_thematic_break] = STATE(445), [sym_block_quote] = STATE(445), - [sym__block_quote_prefix] = STATE(288), + [sym__block_quote_prefix] = STATE(285), [sym_link_reference_definition] = STATE(445), [sym_block_attribute] = STATE(445), [sym__paragraph] = STATE(445), - [sym__paragraph_content] = STATE(764), - [sym__inline] = STATE(703), - [sym__symbol_fallback] = STATE(366), - [aux_sym__list_dash_repeat1] = STATE(413), - [aux_sym__list_plus_repeat1] = STATE(418), - [aux_sym__list_star_repeat1] = STATE(417), - [aux_sym__list_task_repeat1] = STATE(381), - [aux_sym__list_definition_repeat1] = STATE(582), - [aux_sym__list_decimal_period_repeat1] = STATE(581), - [aux_sym__list_decimal_paren_repeat1] = STATE(579), - [aux_sym__list_decimal_parens_repeat1] = STATE(578), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(577), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(576), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(575), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(574), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(573), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(572), - [aux_sym__list_lower_roman_period_repeat1] = STATE(571), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(570), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(569), - [aux_sym__list_upper_roman_period_repeat1] = STATE(568), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(567), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(566), - [aux_sym_table_repeat1] = STATE(289), - [aux_sym__block_quote_prefix_repeat1] = STATE(323), - [aux_sym__inline_repeat1] = STATE(366), - [anon_sym_LBRACK] = ACTIONS(395), - [anon_sym_PIPE] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(399), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__newline] = ACTIONS(433), - [sym__heading_begin] = ACTIONS(403), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(405), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(407), - [sym__block_quote_continuation] = ACTIONS(409), - [sym__thematic_break_dash] = ACTIONS(411), - [sym__thematic_break_star] = ACTIONS(411), - [sym__footnote_begin] = ACTIONS(413), + [sym__paragraph_content] = STATE(890), + [sym__inline] = STATE(710), + [sym__symbol_fallback] = STATE(355), + [aux_sym__list_dash_repeat1] = STATE(420), + [aux_sym__list_plus_repeat1] = STATE(421), + [aux_sym__list_star_repeat1] = STATE(422), + [aux_sym__list_task_repeat1] = STATE(404), + [aux_sym__list_definition_repeat1] = STATE(527), + [aux_sym__list_decimal_period_repeat1] = STATE(524), + [aux_sym__list_decimal_paren_repeat1] = STATE(521), + [aux_sym__list_decimal_parens_repeat1] = STATE(520), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(518), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(515), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(514), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(510), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(501), + [aux_sym__list_lower_roman_period_repeat1] = STATE(500), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(499), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(498), + [aux_sym__list_upper_roman_period_repeat1] = STATE(497), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(579), + [aux_sym_table_repeat1] = STATE(358), + [aux_sym__block_quote_prefix_repeat1] = STATE(316), + [aux_sym__inline_repeat1] = STATE(355), + [anon_sym_LBRACK] = ACTIONS(385), + [anon_sym_PIPE] = ACTIONS(387), + [anon_sym_LBRACK_CARET] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_DOT] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(13), + [aux_sym__inline_token1] = ACTIONS(13), + [anon_sym_LBRACE_DASH] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(13), + [anon_sym_PERCENT] = ACTIONS(13), + [sym__newline] = ACTIONS(417), + [sym__heading_begin] = ACTIONS(393), + [sym__div_begin] = ACTIONS(21), + [sym__code_block_begin] = ACTIONS(395), + [sym_list_marker_dash] = ACTIONS(25), + [sym_list_marker_star] = ACTIONS(27), + [sym_list_marker_plus] = ACTIONS(29), + [sym__list_marker_task_begin] = ACTIONS(31), + [sym_list_marker_definition] = ACTIONS(33), + [sym_list_marker_decimal_period] = ACTIONS(35), + [sym_list_marker_lower_alpha_period] = ACTIONS(37), + [sym_list_marker_upper_alpha_period] = ACTIONS(39), + [sym_list_marker_lower_roman_period] = ACTIONS(41), + [sym_list_marker_upper_roman_period] = ACTIONS(43), + [sym_list_marker_decimal_paren] = ACTIONS(45), + [sym_list_marker_lower_alpha_paren] = ACTIONS(47), + [sym_list_marker_upper_alpha_paren] = ACTIONS(49), + [sym_list_marker_lower_roman_paren] = ACTIONS(51), + [sym_list_marker_upper_roman_paren] = ACTIONS(53), + [sym_list_marker_decimal_parens] = ACTIONS(55), + [sym_list_marker_lower_alpha_parens] = ACTIONS(57), + [sym_list_marker_upper_alpha_parens] = ACTIONS(59), + [sym_list_marker_lower_roman_parens] = ACTIONS(61), + [sym_list_marker_upper_roman_parens] = ACTIONS(63), + [sym__block_quote_begin] = ACTIONS(397), + [sym__block_quote_continuation] = ACTIONS(399), + [sym__thematic_break_dash] = ACTIONS(401), + [sym__thematic_break_star] = ACTIONS(401), }, - [40] = { - [sym__block_with_heading] = STATE(449), - [sym__block_element] = STATE(449), - [sym_heading] = STATE(449), - [sym_list] = STATE(449), - [sym__list_dash] = STATE(699), - [sym__list_item_dash] = STATE(413), - [sym__list_plus] = STATE(699), - [sym__list_item_plus] = STATE(418), - [sym__list_star] = STATE(699), - [sym__list_item_star] = STATE(417), - [sym__list_task] = STATE(699), - [sym__list_item_task] = STATE(381), + [41] = { + [sym__block_with_heading] = STATE(470), + [sym__block_element] = STATE(470), + [sym_heading] = STATE(470), + [sym_list] = STATE(470), + [sym__list_dash] = STATE(618), + [sym__list_item_dash] = STATE(420), + [sym__list_plus] = STATE(618), + [sym__list_item_plus] = STATE(421), + [sym__list_star] = STATE(618), + [sym__list_item_star] = STATE(422), + [sym__list_task] = STATE(618), + [sym__list_item_task] = STATE(404), [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(699), - [sym__list_item_definition] = STATE(582), - [sym__list_decimal_period] = STATE(699), - [sym__list_item_decimal_period] = STATE(581), - [sym__list_decimal_paren] = STATE(699), - [sym__list_item_decimal_paren] = STATE(579), - [sym__list_decimal_parens] = STATE(699), - [sym__list_item_decimal_parens] = STATE(578), - [sym__list_lower_alpha_period] = STATE(699), - [sym__list_item_lower_alpha_period] = STATE(577), - [sym__list_lower_alpha_paren] = STATE(699), - [sym__list_item_lower_alpha_paren] = STATE(576), - [sym__list_lower_alpha_parens] = STATE(699), - [sym__list_item_lower_alpha_parens] = STATE(575), - [sym__list_upper_alpha_period] = STATE(699), - [sym__list_item_upper_alpha_period] = STATE(574), - [sym__list_upper_alpha_paren] = STATE(699), - [sym__list_item_upper_alpha_paren] = STATE(573), - [sym__list_upper_alpha_parens] = STATE(699), - [sym__list_item_upper_alpha_parens] = STATE(572), - [sym__list_lower_roman_period] = STATE(699), - [sym__list_item_lower_roman_period] = STATE(571), - [sym__list_lower_roman_paren] = STATE(699), - [sym__list_item_lower_roman_paren] = STATE(570), - [sym__list_lower_roman_parens] = STATE(699), - [sym__list_item_lower_roman_parens] = STATE(569), - [sym__list_upper_roman_period] = STATE(699), - [sym__list_item_upper_roman_period] = STATE(568), - [sym__list_upper_roman_paren] = STATE(699), - [sym__list_item_upper_roman_paren] = STATE(567), - [sym__list_upper_roman_parens] = STATE(699), - [sym__list_item_upper_roman_parens] = STATE(566), - [sym_list_item_content] = STATE(878), - [sym_table] = STATE(449), - [sym__table_content] = STATE(289), - [sym_table_separator] = STATE(289), - [sym_table_row] = STATE(363), - [sym_footnote] = STATE(449), - [sym_div] = STATE(449), - [sym_div_marker_begin] = STATE(941), - [sym_code_block] = STATE(449), - [sym_raw_block] = STATE(449), - [sym_thematic_break] = STATE(449), - [sym_block_quote] = STATE(449), - [sym__block_quote_prefix] = STATE(288), - [sym_link_reference_definition] = STATE(449), - [sym_block_attribute] = STATE(449), - [sym__paragraph] = STATE(449), - [sym__paragraph_content] = STATE(764), - [sym__inline] = STATE(703), - [sym__symbol_fallback] = STATE(366), - [aux_sym__list_dash_repeat1] = STATE(413), - [aux_sym__list_plus_repeat1] = STATE(418), - [aux_sym__list_star_repeat1] = STATE(417), - [aux_sym__list_task_repeat1] = STATE(381), - [aux_sym__list_definition_repeat1] = STATE(582), - [aux_sym__list_decimal_period_repeat1] = STATE(581), - [aux_sym__list_decimal_paren_repeat1] = STATE(579), - [aux_sym__list_decimal_parens_repeat1] = STATE(578), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(577), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(576), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(575), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(574), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(573), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(572), - [aux_sym__list_lower_roman_period_repeat1] = STATE(571), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(570), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(569), - [aux_sym__list_upper_roman_period_repeat1] = STATE(568), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(567), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(566), - [aux_sym_table_repeat1] = STATE(289), - [aux_sym__block_quote_prefix_repeat1] = STATE(323), - [aux_sym__inline_repeat1] = STATE(366), - [anon_sym_LBRACK] = ACTIONS(395), - [anon_sym_PIPE] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(399), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__newline] = ACTIONS(435), - [sym__heading_begin] = ACTIONS(403), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(405), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(407), - [sym__block_quote_continuation] = ACTIONS(409), - [sym__thematic_break_dash] = ACTIONS(411), - [sym__thematic_break_star] = ACTIONS(411), - [sym__footnote_begin] = ACTIONS(413), + [sym__list_definition] = STATE(618), + [sym__list_item_definition] = STATE(527), + [sym__list_decimal_period] = STATE(618), + [sym__list_item_decimal_period] = STATE(524), + [sym__list_decimal_paren] = STATE(618), + [sym__list_item_decimal_paren] = STATE(521), + [sym__list_decimal_parens] = STATE(618), + [sym__list_item_decimal_parens] = STATE(520), + [sym__list_lower_alpha_period] = STATE(618), + [sym__list_item_lower_alpha_period] = STATE(518), + [sym__list_lower_alpha_paren] = STATE(618), + [sym__list_item_lower_alpha_paren] = STATE(517), + [sym__list_lower_alpha_parens] = STATE(618), + [sym__list_item_lower_alpha_parens] = STATE(515), + [sym__list_upper_alpha_period] = STATE(618), + [sym__list_item_upper_alpha_period] = STATE(514), + [sym__list_upper_alpha_paren] = STATE(618), + [sym__list_item_upper_alpha_paren] = STATE(510), + [sym__list_upper_alpha_parens] = STATE(618), + [sym__list_item_upper_alpha_parens] = STATE(501), + [sym__list_lower_roman_period] = STATE(618), + [sym__list_item_lower_roman_period] = STATE(500), + [sym__list_lower_roman_paren] = STATE(618), + [sym__list_item_lower_roman_paren] = STATE(499), + [sym__list_lower_roman_parens] = STATE(618), + [sym__list_item_lower_roman_parens] = STATE(498), + [sym__list_upper_roman_period] = STATE(618), + [sym__list_item_upper_roman_period] = STATE(497), + [sym__list_upper_roman_paren] = STATE(618), + [sym__list_item_upper_roman_paren] = STATE(496), + [sym__list_upper_roman_parens] = STATE(618), + [sym__list_item_upper_roman_parens] = STATE(579), + [sym_list_item_content] = STATE(876), + [sym_table] = STATE(470), + [sym__table_content] = STATE(358), + [sym_table_separator] = STATE(358), + [sym_table_row] = STATE(383), + [sym_footnote] = STATE(470), + [sym_footnote_marker_begin] = STATE(1080), + [sym_div] = STATE(470), + [sym_div_marker_begin] = STATE(952), + [sym_code_block] = STATE(470), + [sym_raw_block] = STATE(470), + [sym_thematic_break] = STATE(470), + [sym_block_quote] = STATE(470), + [sym__block_quote_prefix] = STATE(285), + [sym_link_reference_definition] = STATE(470), + [sym_block_attribute] = STATE(470), + [sym__paragraph] = STATE(470), + [sym__paragraph_content] = STATE(890), + [sym__inline] = STATE(710), + [sym__symbol_fallback] = STATE(355), + [aux_sym__list_dash_repeat1] = STATE(420), + [aux_sym__list_plus_repeat1] = STATE(421), + [aux_sym__list_star_repeat1] = STATE(422), + [aux_sym__list_task_repeat1] = STATE(404), + [aux_sym__list_definition_repeat1] = STATE(527), + [aux_sym__list_decimal_period_repeat1] = STATE(524), + [aux_sym__list_decimal_paren_repeat1] = STATE(521), + [aux_sym__list_decimal_parens_repeat1] = STATE(520), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(518), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(515), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(514), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(510), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(501), + [aux_sym__list_lower_roman_period_repeat1] = STATE(500), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(499), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(498), + [aux_sym__list_upper_roman_period_repeat1] = STATE(497), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(579), + [aux_sym_table_repeat1] = STATE(358), + [aux_sym__block_quote_prefix_repeat1] = STATE(316), + [aux_sym__inline_repeat1] = STATE(355), + [anon_sym_LBRACK] = ACTIONS(385), + [anon_sym_PIPE] = ACTIONS(387), + [anon_sym_LBRACK_CARET] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_DOT] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(13), + [aux_sym__inline_token1] = ACTIONS(13), + [anon_sym_LBRACE_DASH] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(13), + [anon_sym_PERCENT] = ACTIONS(13), + [sym__newline] = ACTIONS(419), + [sym__heading_begin] = ACTIONS(393), + [sym__div_begin] = ACTIONS(21), + [sym__code_block_begin] = ACTIONS(395), + [sym_list_marker_dash] = ACTIONS(25), + [sym_list_marker_star] = ACTIONS(27), + [sym_list_marker_plus] = ACTIONS(29), + [sym__list_marker_task_begin] = ACTIONS(31), + [sym_list_marker_definition] = ACTIONS(33), + [sym_list_marker_decimal_period] = ACTIONS(35), + [sym_list_marker_lower_alpha_period] = ACTIONS(37), + [sym_list_marker_upper_alpha_period] = ACTIONS(39), + [sym_list_marker_lower_roman_period] = ACTIONS(41), + [sym_list_marker_upper_roman_period] = ACTIONS(43), + [sym_list_marker_decimal_paren] = ACTIONS(45), + [sym_list_marker_lower_alpha_paren] = ACTIONS(47), + [sym_list_marker_upper_alpha_paren] = ACTIONS(49), + [sym_list_marker_lower_roman_paren] = ACTIONS(51), + [sym_list_marker_upper_roman_paren] = ACTIONS(53), + [sym_list_marker_decimal_parens] = ACTIONS(55), + [sym_list_marker_lower_alpha_parens] = ACTIONS(57), + [sym_list_marker_upper_alpha_parens] = ACTIONS(59), + [sym_list_marker_lower_roman_parens] = ACTIONS(61), + [sym_list_marker_upper_roman_parens] = ACTIONS(63), + [sym__block_quote_begin] = ACTIONS(397), + [sym__block_quote_continuation] = ACTIONS(399), + [sym__thematic_break_dash] = ACTIONS(401), + [sym__thematic_break_star] = ACTIONS(401), }, - [41] = { + [42] = { + [sym__block_with_heading] = STATE(479), + [sym__block_element] = STATE(479), + [sym_heading] = STATE(479), + [sym_list] = STATE(479), + [sym__list_dash] = STATE(618), + [sym__list_item_dash] = STATE(420), + [sym__list_plus] = STATE(618), + [sym__list_item_plus] = STATE(421), + [sym__list_star] = STATE(618), + [sym__list_item_star] = STATE(422), + [sym__list_task] = STATE(618), + [sym__list_item_task] = STATE(404), + [sym_list_marker_task] = STATE(38), + [sym__list_definition] = STATE(618), + [sym__list_item_definition] = STATE(527), + [sym__list_decimal_period] = STATE(618), + [sym__list_item_decimal_period] = STATE(524), + [sym__list_decimal_paren] = STATE(618), + [sym__list_item_decimal_paren] = STATE(521), + [sym__list_decimal_parens] = STATE(618), + [sym__list_item_decimal_parens] = STATE(520), + [sym__list_lower_alpha_period] = STATE(618), + [sym__list_item_lower_alpha_period] = STATE(518), + [sym__list_lower_alpha_paren] = STATE(618), + [sym__list_item_lower_alpha_paren] = STATE(517), + [sym__list_lower_alpha_parens] = STATE(618), + [sym__list_item_lower_alpha_parens] = STATE(515), + [sym__list_upper_alpha_period] = STATE(618), + [sym__list_item_upper_alpha_period] = STATE(514), + [sym__list_upper_alpha_paren] = STATE(618), + [sym__list_item_upper_alpha_paren] = STATE(510), + [sym__list_upper_alpha_parens] = STATE(618), + [sym__list_item_upper_alpha_parens] = STATE(501), + [sym__list_lower_roman_period] = STATE(618), + [sym__list_item_lower_roman_period] = STATE(500), + [sym__list_lower_roman_paren] = STATE(618), + [sym__list_item_lower_roman_paren] = STATE(499), + [sym__list_lower_roman_parens] = STATE(618), + [sym__list_item_lower_roman_parens] = STATE(498), + [sym__list_upper_roman_period] = STATE(618), + [sym__list_item_upper_roman_period] = STATE(497), + [sym__list_upper_roman_paren] = STATE(618), + [sym__list_item_upper_roman_paren] = STATE(496), + [sym__list_upper_roman_parens] = STATE(618), + [sym__list_item_upper_roman_parens] = STATE(579), + [sym_list_item_content] = STATE(669), + [sym_table] = STATE(479), + [sym__table_content] = STATE(358), + [sym_table_separator] = STATE(358), + [sym_table_row] = STATE(383), + [sym_footnote] = STATE(479), + [sym_footnote_marker_begin] = STATE(1080), + [sym_div] = STATE(479), + [sym_div_marker_begin] = STATE(952), + [sym_code_block] = STATE(479), + [sym_raw_block] = STATE(479), + [sym_thematic_break] = STATE(479), + [sym_block_quote] = STATE(479), + [sym__block_quote_prefix] = STATE(285), + [sym_link_reference_definition] = STATE(479), + [sym_block_attribute] = STATE(479), + [sym__paragraph] = STATE(479), + [sym__paragraph_content] = STATE(890), + [sym__inline] = STATE(710), + [sym__symbol_fallback] = STATE(355), + [aux_sym__list_dash_repeat1] = STATE(420), + [aux_sym__list_plus_repeat1] = STATE(421), + [aux_sym__list_star_repeat1] = STATE(422), + [aux_sym__list_task_repeat1] = STATE(404), + [aux_sym__list_definition_repeat1] = STATE(527), + [aux_sym__list_decimal_period_repeat1] = STATE(524), + [aux_sym__list_decimal_paren_repeat1] = STATE(521), + [aux_sym__list_decimal_parens_repeat1] = STATE(520), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(518), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(515), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(514), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(510), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(501), + [aux_sym__list_lower_roman_period_repeat1] = STATE(500), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(499), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(498), + [aux_sym__list_upper_roman_period_repeat1] = STATE(497), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(579), + [aux_sym_table_repeat1] = STATE(358), + [aux_sym__block_quote_prefix_repeat1] = STATE(316), + [aux_sym__inline_repeat1] = STATE(355), + [anon_sym_LBRACK] = ACTIONS(385), + [anon_sym_PIPE] = ACTIONS(387), + [anon_sym_LBRACK_CARET] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_DOT] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(13), + [aux_sym__inline_token1] = ACTIONS(13), + [anon_sym_LBRACE_DASH] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(13), + [anon_sym_PERCENT] = ACTIONS(13), + [sym__newline] = ACTIONS(403), + [sym__heading_begin] = ACTIONS(393), + [sym__div_begin] = ACTIONS(21), + [sym__code_block_begin] = ACTIONS(395), + [sym_list_marker_dash] = ACTIONS(25), + [sym_list_marker_star] = ACTIONS(27), + [sym_list_marker_plus] = ACTIONS(29), + [sym__list_marker_task_begin] = ACTIONS(31), + [sym_list_marker_definition] = ACTIONS(33), + [sym_list_marker_decimal_period] = ACTIONS(35), + [sym_list_marker_lower_alpha_period] = ACTIONS(37), + [sym_list_marker_upper_alpha_period] = ACTIONS(39), + [sym_list_marker_lower_roman_period] = ACTIONS(41), + [sym_list_marker_upper_roman_period] = ACTIONS(43), + [sym_list_marker_decimal_paren] = ACTIONS(45), + [sym_list_marker_lower_alpha_paren] = ACTIONS(47), + [sym_list_marker_upper_alpha_paren] = ACTIONS(49), + [sym_list_marker_lower_roman_paren] = ACTIONS(51), + [sym_list_marker_upper_roman_paren] = ACTIONS(53), + [sym_list_marker_decimal_parens] = ACTIONS(55), + [sym_list_marker_lower_alpha_parens] = ACTIONS(57), + [sym_list_marker_upper_alpha_parens] = ACTIONS(59), + [sym_list_marker_lower_roman_parens] = ACTIONS(61), + [sym_list_marker_upper_roman_parens] = ACTIONS(63), + [sym__block_quote_begin] = ACTIONS(397), + [sym__block_quote_continuation] = ACTIONS(399), + [sym__thematic_break_dash] = ACTIONS(401), + [sym__thematic_break_star] = ACTIONS(401), + }, + [43] = { + [sym__block_with_heading] = STATE(465), + [sym__block_element] = STATE(465), + [sym_heading] = STATE(465), + [sym_list] = STATE(465), + [sym__list_dash] = STATE(618), + [sym__list_item_dash] = STATE(420), + [sym__list_plus] = STATE(618), + [sym__list_item_plus] = STATE(421), + [sym__list_star] = STATE(618), + [sym__list_item_star] = STATE(422), + [sym__list_task] = STATE(618), + [sym__list_item_task] = STATE(404), + [sym_list_marker_task] = STATE(38), + [sym__list_definition] = STATE(618), + [sym__list_item_definition] = STATE(527), + [sym__list_decimal_period] = STATE(618), + [sym__list_item_decimal_period] = STATE(524), + [sym__list_decimal_paren] = STATE(618), + [sym__list_item_decimal_paren] = STATE(521), + [sym__list_decimal_parens] = STATE(618), + [sym__list_item_decimal_parens] = STATE(520), + [sym__list_lower_alpha_period] = STATE(618), + [sym__list_item_lower_alpha_period] = STATE(518), + [sym__list_lower_alpha_paren] = STATE(618), + [sym__list_item_lower_alpha_paren] = STATE(517), + [sym__list_lower_alpha_parens] = STATE(618), + [sym__list_item_lower_alpha_parens] = STATE(515), + [sym__list_upper_alpha_period] = STATE(618), + [sym__list_item_upper_alpha_period] = STATE(514), + [sym__list_upper_alpha_paren] = STATE(618), + [sym__list_item_upper_alpha_paren] = STATE(510), + [sym__list_upper_alpha_parens] = STATE(618), + [sym__list_item_upper_alpha_parens] = STATE(501), + [sym__list_lower_roman_period] = STATE(618), + [sym__list_item_lower_roman_period] = STATE(500), + [sym__list_lower_roman_paren] = STATE(618), + [sym__list_item_lower_roman_paren] = STATE(499), + [sym__list_lower_roman_parens] = STATE(618), + [sym__list_item_lower_roman_parens] = STATE(498), + [sym__list_upper_roman_period] = STATE(618), + [sym__list_item_upper_roman_period] = STATE(497), + [sym__list_upper_roman_paren] = STATE(618), + [sym__list_item_upper_roman_paren] = STATE(496), + [sym__list_upper_roman_parens] = STATE(618), + [sym__list_item_upper_roman_parens] = STATE(579), + [sym_list_item_content] = STATE(842), + [sym_table] = STATE(465), + [sym__table_content] = STATE(358), + [sym_table_separator] = STATE(358), + [sym_table_row] = STATE(383), + [sym_footnote] = STATE(465), + [sym_footnote_marker_begin] = STATE(1080), + [sym_div] = STATE(465), + [sym_div_marker_begin] = STATE(952), + [sym_code_block] = STATE(465), + [sym_raw_block] = STATE(465), + [sym_thematic_break] = STATE(465), + [sym_block_quote] = STATE(465), + [sym__block_quote_prefix] = STATE(285), + [sym_link_reference_definition] = STATE(465), + [sym_block_attribute] = STATE(465), + [sym__paragraph] = STATE(465), + [sym__paragraph_content] = STATE(890), + [sym__inline] = STATE(710), + [sym__symbol_fallback] = STATE(355), + [aux_sym__list_dash_repeat1] = STATE(420), + [aux_sym__list_plus_repeat1] = STATE(421), + [aux_sym__list_star_repeat1] = STATE(422), + [aux_sym__list_task_repeat1] = STATE(404), + [aux_sym__list_definition_repeat1] = STATE(527), + [aux_sym__list_decimal_period_repeat1] = STATE(524), + [aux_sym__list_decimal_paren_repeat1] = STATE(521), + [aux_sym__list_decimal_parens_repeat1] = STATE(520), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(518), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(515), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(514), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(510), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(501), + [aux_sym__list_lower_roman_period_repeat1] = STATE(500), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(499), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(498), + [aux_sym__list_upper_roman_period_repeat1] = STATE(497), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(579), + [aux_sym_table_repeat1] = STATE(358), + [aux_sym__block_quote_prefix_repeat1] = STATE(316), + [aux_sym__inline_repeat1] = STATE(355), + [anon_sym_LBRACK] = ACTIONS(385), + [anon_sym_PIPE] = ACTIONS(387), + [anon_sym_LBRACK_CARET] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_DOT] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(13), + [aux_sym__inline_token1] = ACTIONS(13), + [anon_sym_LBRACE_DASH] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(13), + [anon_sym_PERCENT] = ACTIONS(13), + [sym__newline] = ACTIONS(421), + [sym__heading_begin] = ACTIONS(393), + [sym__div_begin] = ACTIONS(21), + [sym__code_block_begin] = ACTIONS(395), + [sym_list_marker_dash] = ACTIONS(25), + [sym_list_marker_star] = ACTIONS(27), + [sym_list_marker_plus] = ACTIONS(29), + [sym__list_marker_task_begin] = ACTIONS(31), + [sym_list_marker_definition] = ACTIONS(33), + [sym_list_marker_decimal_period] = ACTIONS(35), + [sym_list_marker_lower_alpha_period] = ACTIONS(37), + [sym_list_marker_upper_alpha_period] = ACTIONS(39), + [sym_list_marker_lower_roman_period] = ACTIONS(41), + [sym_list_marker_upper_roman_period] = ACTIONS(43), + [sym_list_marker_decimal_paren] = ACTIONS(45), + [sym_list_marker_lower_alpha_paren] = ACTIONS(47), + [sym_list_marker_upper_alpha_paren] = ACTIONS(49), + [sym_list_marker_lower_roman_paren] = ACTIONS(51), + [sym_list_marker_upper_roman_paren] = ACTIONS(53), + [sym_list_marker_decimal_parens] = ACTIONS(55), + [sym_list_marker_lower_alpha_parens] = ACTIONS(57), + [sym_list_marker_upper_alpha_parens] = ACTIONS(59), + [sym_list_marker_lower_roman_parens] = ACTIONS(61), + [sym_list_marker_upper_roman_parens] = ACTIONS(63), + [sym__block_quote_begin] = ACTIONS(397), + [sym__block_quote_continuation] = ACTIONS(399), + [sym__thematic_break_dash] = ACTIONS(401), + [sym__thematic_break_star] = ACTIONS(401), + }, + [44] = { + [sym__block_with_heading] = STATE(440), + [sym__block_element] = STATE(440), + [sym_heading] = STATE(440), + [sym_list] = STATE(440), + [sym__list_dash] = STATE(618), + [sym__list_item_dash] = STATE(420), + [sym__list_plus] = STATE(618), + [sym__list_item_plus] = STATE(421), + [sym__list_star] = STATE(618), + [sym__list_item_star] = STATE(422), + [sym__list_task] = STATE(618), + [sym__list_item_task] = STATE(404), + [sym_list_marker_task] = STATE(38), + [sym__list_definition] = STATE(618), + [sym__list_item_definition] = STATE(527), + [sym__list_decimal_period] = STATE(618), + [sym__list_item_decimal_period] = STATE(524), + [sym__list_decimal_paren] = STATE(618), + [sym__list_item_decimal_paren] = STATE(521), + [sym__list_decimal_parens] = STATE(618), + [sym__list_item_decimal_parens] = STATE(520), + [sym__list_lower_alpha_period] = STATE(618), + [sym__list_item_lower_alpha_period] = STATE(518), + [sym__list_lower_alpha_paren] = STATE(618), + [sym__list_item_lower_alpha_paren] = STATE(517), + [sym__list_lower_alpha_parens] = STATE(618), + [sym__list_item_lower_alpha_parens] = STATE(515), + [sym__list_upper_alpha_period] = STATE(618), + [sym__list_item_upper_alpha_period] = STATE(514), + [sym__list_upper_alpha_paren] = STATE(618), + [sym__list_item_upper_alpha_paren] = STATE(510), + [sym__list_upper_alpha_parens] = STATE(618), + [sym__list_item_upper_alpha_parens] = STATE(501), + [sym__list_lower_roman_period] = STATE(618), + [sym__list_item_lower_roman_period] = STATE(500), + [sym__list_lower_roman_paren] = STATE(618), + [sym__list_item_lower_roman_paren] = STATE(499), + [sym__list_lower_roman_parens] = STATE(618), + [sym__list_item_lower_roman_parens] = STATE(498), + [sym__list_upper_roman_period] = STATE(618), + [sym__list_item_upper_roman_period] = STATE(497), + [sym__list_upper_roman_paren] = STATE(618), + [sym__list_item_upper_roman_paren] = STATE(496), + [sym__list_upper_roman_parens] = STATE(618), + [sym__list_item_upper_roman_parens] = STATE(579), + [sym_list_item_content] = STATE(843), + [sym_table] = STATE(440), + [sym__table_content] = STATE(358), + [sym_table_separator] = STATE(358), + [sym_table_row] = STATE(383), + [sym_footnote] = STATE(440), + [sym_footnote_marker_begin] = STATE(1080), + [sym_div] = STATE(440), + [sym_div_marker_begin] = STATE(952), + [sym_code_block] = STATE(440), + [sym_raw_block] = STATE(440), + [sym_thematic_break] = STATE(440), + [sym_block_quote] = STATE(440), + [sym__block_quote_prefix] = STATE(285), + [sym_link_reference_definition] = STATE(440), + [sym_block_attribute] = STATE(440), + [sym__paragraph] = STATE(440), + [sym__paragraph_content] = STATE(890), + [sym__inline] = STATE(710), + [sym__symbol_fallback] = STATE(355), + [aux_sym__list_dash_repeat1] = STATE(420), + [aux_sym__list_plus_repeat1] = STATE(421), + [aux_sym__list_star_repeat1] = STATE(422), + [aux_sym__list_task_repeat1] = STATE(404), + [aux_sym__list_definition_repeat1] = STATE(527), + [aux_sym__list_decimal_period_repeat1] = STATE(524), + [aux_sym__list_decimal_paren_repeat1] = STATE(521), + [aux_sym__list_decimal_parens_repeat1] = STATE(520), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(518), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(515), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(514), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(510), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(501), + [aux_sym__list_lower_roman_period_repeat1] = STATE(500), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(499), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(498), + [aux_sym__list_upper_roman_period_repeat1] = STATE(497), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(579), + [aux_sym_table_repeat1] = STATE(358), + [aux_sym__block_quote_prefix_repeat1] = STATE(316), + [aux_sym__inline_repeat1] = STATE(355), + [anon_sym_LBRACK] = ACTIONS(385), + [anon_sym_PIPE] = ACTIONS(387), + [anon_sym_LBRACK_CARET] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_DOT] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(13), + [aux_sym__inline_token1] = ACTIONS(13), + [anon_sym_LBRACE_DASH] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(13), + [anon_sym_PERCENT] = ACTIONS(13), + [sym__newline] = ACTIONS(423), + [sym__heading_begin] = ACTIONS(393), + [sym__div_begin] = ACTIONS(21), + [sym__code_block_begin] = ACTIONS(395), + [sym_list_marker_dash] = ACTIONS(25), + [sym_list_marker_star] = ACTIONS(27), + [sym_list_marker_plus] = ACTIONS(29), + [sym__list_marker_task_begin] = ACTIONS(31), + [sym_list_marker_definition] = ACTIONS(33), + [sym_list_marker_decimal_period] = ACTIONS(35), + [sym_list_marker_lower_alpha_period] = ACTIONS(37), + [sym_list_marker_upper_alpha_period] = ACTIONS(39), + [sym_list_marker_lower_roman_period] = ACTIONS(41), + [sym_list_marker_upper_roman_period] = ACTIONS(43), + [sym_list_marker_decimal_paren] = ACTIONS(45), + [sym_list_marker_lower_alpha_paren] = ACTIONS(47), + [sym_list_marker_upper_alpha_paren] = ACTIONS(49), + [sym_list_marker_lower_roman_paren] = ACTIONS(51), + [sym_list_marker_upper_roman_paren] = ACTIONS(53), + [sym_list_marker_decimal_parens] = ACTIONS(55), + [sym_list_marker_lower_alpha_parens] = ACTIONS(57), + [sym_list_marker_upper_alpha_parens] = ACTIONS(59), + [sym_list_marker_lower_roman_parens] = ACTIONS(61), + [sym_list_marker_upper_roman_parens] = ACTIONS(63), + [sym__block_quote_begin] = ACTIONS(397), + [sym__block_quote_continuation] = ACTIONS(399), + [sym__thematic_break_dash] = ACTIONS(401), + [sym__thematic_break_star] = ACTIONS(401), + }, + [45] = { + [sym__block_with_heading] = STATE(441), + [sym__block_element] = STATE(441), + [sym_heading] = STATE(441), + [sym_list] = STATE(441), + [sym__list_dash] = STATE(618), + [sym__list_item_dash] = STATE(420), + [sym__list_plus] = STATE(618), + [sym__list_item_plus] = STATE(421), + [sym__list_star] = STATE(618), + [sym__list_item_star] = STATE(422), + [sym__list_task] = STATE(618), + [sym__list_item_task] = STATE(404), + [sym_list_marker_task] = STATE(38), + [sym__list_definition] = STATE(618), + [sym__list_item_definition] = STATE(527), + [sym__list_decimal_period] = STATE(618), + [sym__list_item_decimal_period] = STATE(524), + [sym__list_decimal_paren] = STATE(618), + [sym__list_item_decimal_paren] = STATE(521), + [sym__list_decimal_parens] = STATE(618), + [sym__list_item_decimal_parens] = STATE(520), + [sym__list_lower_alpha_period] = STATE(618), + [sym__list_item_lower_alpha_period] = STATE(518), + [sym__list_lower_alpha_paren] = STATE(618), + [sym__list_item_lower_alpha_paren] = STATE(517), + [sym__list_lower_alpha_parens] = STATE(618), + [sym__list_item_lower_alpha_parens] = STATE(515), + [sym__list_upper_alpha_period] = STATE(618), + [sym__list_item_upper_alpha_period] = STATE(514), + [sym__list_upper_alpha_paren] = STATE(618), + [sym__list_item_upper_alpha_paren] = STATE(510), + [sym__list_upper_alpha_parens] = STATE(618), + [sym__list_item_upper_alpha_parens] = STATE(501), + [sym__list_lower_roman_period] = STATE(618), + [sym__list_item_lower_roman_period] = STATE(500), + [sym__list_lower_roman_paren] = STATE(618), + [sym__list_item_lower_roman_paren] = STATE(499), + [sym__list_lower_roman_parens] = STATE(618), + [sym__list_item_lower_roman_parens] = STATE(498), + [sym__list_upper_roman_period] = STATE(618), + [sym__list_item_upper_roman_period] = STATE(497), + [sym__list_upper_roman_paren] = STATE(618), + [sym__list_item_upper_roman_paren] = STATE(496), + [sym__list_upper_roman_parens] = STATE(618), + [sym__list_item_upper_roman_parens] = STATE(579), + [sym_list_item_content] = STATE(862), + [sym_table] = STATE(441), + [sym__table_content] = STATE(358), + [sym_table_separator] = STATE(358), + [sym_table_row] = STATE(383), + [sym_footnote] = STATE(441), + [sym_footnote_marker_begin] = STATE(1080), + [sym_div] = STATE(441), + [sym_div_marker_begin] = STATE(952), + [sym_code_block] = STATE(441), + [sym_raw_block] = STATE(441), + [sym_thematic_break] = STATE(441), + [sym_block_quote] = STATE(441), + [sym__block_quote_prefix] = STATE(285), + [sym_link_reference_definition] = STATE(441), + [sym_block_attribute] = STATE(441), + [sym__paragraph] = STATE(441), + [sym__paragraph_content] = STATE(890), + [sym__inline] = STATE(710), + [sym__symbol_fallback] = STATE(355), + [aux_sym__list_dash_repeat1] = STATE(420), + [aux_sym__list_plus_repeat1] = STATE(421), + [aux_sym__list_star_repeat1] = STATE(422), + [aux_sym__list_task_repeat1] = STATE(404), + [aux_sym__list_definition_repeat1] = STATE(527), + [aux_sym__list_decimal_period_repeat1] = STATE(524), + [aux_sym__list_decimal_paren_repeat1] = STATE(521), + [aux_sym__list_decimal_parens_repeat1] = STATE(520), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(518), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(515), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(514), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(510), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(501), + [aux_sym__list_lower_roman_period_repeat1] = STATE(500), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(499), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(498), + [aux_sym__list_upper_roman_period_repeat1] = STATE(497), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(579), + [aux_sym_table_repeat1] = STATE(358), + [aux_sym__block_quote_prefix_repeat1] = STATE(316), + [aux_sym__inline_repeat1] = STATE(355), + [anon_sym_LBRACK] = ACTIONS(385), + [anon_sym_PIPE] = ACTIONS(387), + [anon_sym_LBRACK_CARET] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_DOT] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(13), + [aux_sym__inline_token1] = ACTIONS(13), + [anon_sym_LBRACE_DASH] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(13), + [anon_sym_PERCENT] = ACTIONS(13), + [sym__newline] = ACTIONS(425), + [sym__heading_begin] = ACTIONS(393), + [sym__div_begin] = ACTIONS(21), + [sym__code_block_begin] = ACTIONS(395), + [sym_list_marker_dash] = ACTIONS(25), + [sym_list_marker_star] = ACTIONS(27), + [sym_list_marker_plus] = ACTIONS(29), + [sym__list_marker_task_begin] = ACTIONS(31), + [sym_list_marker_definition] = ACTIONS(33), + [sym_list_marker_decimal_period] = ACTIONS(35), + [sym_list_marker_lower_alpha_period] = ACTIONS(37), + [sym_list_marker_upper_alpha_period] = ACTIONS(39), + [sym_list_marker_lower_roman_period] = ACTIONS(41), + [sym_list_marker_upper_roman_period] = ACTIONS(43), + [sym_list_marker_decimal_paren] = ACTIONS(45), + [sym_list_marker_lower_alpha_paren] = ACTIONS(47), + [sym_list_marker_upper_alpha_paren] = ACTIONS(49), + [sym_list_marker_lower_roman_paren] = ACTIONS(51), + [sym_list_marker_upper_roman_paren] = ACTIONS(53), + [sym_list_marker_decimal_parens] = ACTIONS(55), + [sym_list_marker_lower_alpha_parens] = ACTIONS(57), + [sym_list_marker_upper_alpha_parens] = ACTIONS(59), + [sym_list_marker_lower_roman_parens] = ACTIONS(61), + [sym_list_marker_upper_roman_parens] = ACTIONS(63), + [sym__block_quote_begin] = ACTIONS(397), + [sym__block_quote_continuation] = ACTIONS(399), + [sym__thematic_break_dash] = ACTIONS(401), + [sym__thematic_break_star] = ACTIONS(401), + }, + [46] = { + [sym__block_with_heading] = STATE(436), + [sym__block_element] = STATE(436), + [sym_heading] = STATE(436), + [sym_list] = STATE(436), + [sym__list_dash] = STATE(618), + [sym__list_item_dash] = STATE(420), + [sym__list_plus] = STATE(618), + [sym__list_item_plus] = STATE(421), + [sym__list_star] = STATE(618), + [sym__list_item_star] = STATE(422), + [sym__list_task] = STATE(618), + [sym__list_item_task] = STATE(404), + [sym_list_marker_task] = STATE(38), + [sym__list_definition] = STATE(618), + [sym__list_item_definition] = STATE(527), + [sym__list_decimal_period] = STATE(618), + [sym__list_item_decimal_period] = STATE(524), + [sym__list_decimal_paren] = STATE(618), + [sym__list_item_decimal_paren] = STATE(521), + [sym__list_decimal_parens] = STATE(618), + [sym__list_item_decimal_parens] = STATE(520), + [sym__list_lower_alpha_period] = STATE(618), + [sym__list_item_lower_alpha_period] = STATE(518), + [sym__list_lower_alpha_paren] = STATE(618), + [sym__list_item_lower_alpha_paren] = STATE(517), + [sym__list_lower_alpha_parens] = STATE(618), + [sym__list_item_lower_alpha_parens] = STATE(515), + [sym__list_upper_alpha_period] = STATE(618), + [sym__list_item_upper_alpha_period] = STATE(514), + [sym__list_upper_alpha_paren] = STATE(618), + [sym__list_item_upper_alpha_paren] = STATE(510), + [sym__list_upper_alpha_parens] = STATE(618), + [sym__list_item_upper_alpha_parens] = STATE(501), + [sym__list_lower_roman_period] = STATE(618), + [sym__list_item_lower_roman_period] = STATE(500), + [sym__list_lower_roman_paren] = STATE(618), + [sym__list_item_lower_roman_paren] = STATE(499), + [sym__list_lower_roman_parens] = STATE(618), + [sym__list_item_lower_roman_parens] = STATE(498), + [sym__list_upper_roman_period] = STATE(618), + [sym__list_item_upper_roman_period] = STATE(497), + [sym__list_upper_roman_paren] = STATE(618), + [sym__list_item_upper_roman_paren] = STATE(496), + [sym__list_upper_roman_parens] = STATE(618), + [sym__list_item_upper_roman_parens] = STATE(579), + [sym_list_item_content] = STATE(861), + [sym_table] = STATE(436), + [sym__table_content] = STATE(358), + [sym_table_separator] = STATE(358), + [sym_table_row] = STATE(383), + [sym_footnote] = STATE(436), + [sym_footnote_marker_begin] = STATE(1080), + [sym_div] = STATE(436), + [sym_div_marker_begin] = STATE(952), + [sym_code_block] = STATE(436), + [sym_raw_block] = STATE(436), + [sym_thematic_break] = STATE(436), + [sym_block_quote] = STATE(436), + [sym__block_quote_prefix] = STATE(285), + [sym_link_reference_definition] = STATE(436), + [sym_block_attribute] = STATE(436), + [sym__paragraph] = STATE(436), + [sym__paragraph_content] = STATE(890), + [sym__inline] = STATE(710), + [sym__symbol_fallback] = STATE(355), + [aux_sym__list_dash_repeat1] = STATE(420), + [aux_sym__list_plus_repeat1] = STATE(421), + [aux_sym__list_star_repeat1] = STATE(422), + [aux_sym__list_task_repeat1] = STATE(404), + [aux_sym__list_definition_repeat1] = STATE(527), + [aux_sym__list_decimal_period_repeat1] = STATE(524), + [aux_sym__list_decimal_paren_repeat1] = STATE(521), + [aux_sym__list_decimal_parens_repeat1] = STATE(520), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(518), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(515), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(514), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(510), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(501), + [aux_sym__list_lower_roman_period_repeat1] = STATE(500), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(499), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(498), + [aux_sym__list_upper_roman_period_repeat1] = STATE(497), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(579), + [aux_sym_table_repeat1] = STATE(358), + [aux_sym__block_quote_prefix_repeat1] = STATE(316), + [aux_sym__inline_repeat1] = STATE(355), + [anon_sym_LBRACK] = ACTIONS(385), + [anon_sym_PIPE] = ACTIONS(387), + [anon_sym_LBRACK_CARET] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_DOT] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(13), + [aux_sym__inline_token1] = ACTIONS(13), + [anon_sym_LBRACE_DASH] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(13), + [anon_sym_PERCENT] = ACTIONS(13), + [sym__newline] = ACTIONS(427), + [sym__heading_begin] = ACTIONS(393), + [sym__div_begin] = ACTIONS(21), + [sym__code_block_begin] = ACTIONS(395), + [sym_list_marker_dash] = ACTIONS(25), + [sym_list_marker_star] = ACTIONS(27), + [sym_list_marker_plus] = ACTIONS(29), + [sym__list_marker_task_begin] = ACTIONS(31), + [sym_list_marker_definition] = ACTIONS(33), + [sym_list_marker_decimal_period] = ACTIONS(35), + [sym_list_marker_lower_alpha_period] = ACTIONS(37), + [sym_list_marker_upper_alpha_period] = ACTIONS(39), + [sym_list_marker_lower_roman_period] = ACTIONS(41), + [sym_list_marker_upper_roman_period] = ACTIONS(43), + [sym_list_marker_decimal_paren] = ACTIONS(45), + [sym_list_marker_lower_alpha_paren] = ACTIONS(47), + [sym_list_marker_upper_alpha_paren] = ACTIONS(49), + [sym_list_marker_lower_roman_paren] = ACTIONS(51), + [sym_list_marker_upper_roman_paren] = ACTIONS(53), + [sym_list_marker_decimal_parens] = ACTIONS(55), + [sym_list_marker_lower_alpha_parens] = ACTIONS(57), + [sym_list_marker_upper_alpha_parens] = ACTIONS(59), + [sym_list_marker_lower_roman_parens] = ACTIONS(61), + [sym_list_marker_upper_roman_parens] = ACTIONS(63), + [sym__block_quote_begin] = ACTIONS(397), + [sym__block_quote_continuation] = ACTIONS(399), + [sym__thematic_break_dash] = ACTIONS(401), + [sym__thematic_break_star] = ACTIONS(401), + }, + [47] = { [sym__block_with_heading] = STATE(442), [sym__block_element] = STATE(442), [sym_heading] = STATE(442), [sym_list] = STATE(442), - [sym__list_dash] = STATE(699), - [sym__list_item_dash] = STATE(413), - [sym__list_plus] = STATE(699), - [sym__list_item_plus] = STATE(418), - [sym__list_star] = STATE(699), - [sym__list_item_star] = STATE(417), - [sym__list_task] = STATE(699), - [sym__list_item_task] = STATE(381), + [sym__list_dash] = STATE(618), + [sym__list_item_dash] = STATE(420), + [sym__list_plus] = STATE(618), + [sym__list_item_plus] = STATE(421), + [sym__list_star] = STATE(618), + [sym__list_item_star] = STATE(422), + [sym__list_task] = STATE(618), + [sym__list_item_task] = STATE(404), [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(699), - [sym__list_item_definition] = STATE(582), - [sym__list_decimal_period] = STATE(699), - [sym__list_item_decimal_period] = STATE(581), - [sym__list_decimal_paren] = STATE(699), - [sym__list_item_decimal_paren] = STATE(579), - [sym__list_decimal_parens] = STATE(699), - [sym__list_item_decimal_parens] = STATE(578), - [sym__list_lower_alpha_period] = STATE(699), - [sym__list_item_lower_alpha_period] = STATE(577), - [sym__list_lower_alpha_paren] = STATE(699), - [sym__list_item_lower_alpha_paren] = STATE(576), - [sym__list_lower_alpha_parens] = STATE(699), - [sym__list_item_lower_alpha_parens] = STATE(575), - [sym__list_upper_alpha_period] = STATE(699), - [sym__list_item_upper_alpha_period] = STATE(574), - [sym__list_upper_alpha_paren] = STATE(699), - [sym__list_item_upper_alpha_paren] = STATE(573), - [sym__list_upper_alpha_parens] = STATE(699), - [sym__list_item_upper_alpha_parens] = STATE(572), - [sym__list_lower_roman_period] = STATE(699), - [sym__list_item_lower_roman_period] = STATE(571), - [sym__list_lower_roman_paren] = STATE(699), - [sym__list_item_lower_roman_paren] = STATE(570), - [sym__list_lower_roman_parens] = STATE(699), - [sym__list_item_lower_roman_parens] = STATE(569), - [sym__list_upper_roman_period] = STATE(699), - [sym__list_item_upper_roman_period] = STATE(568), - [sym__list_upper_roman_paren] = STATE(699), - [sym__list_item_upper_roman_paren] = STATE(567), - [sym__list_upper_roman_parens] = STATE(699), - [sym__list_item_upper_roman_parens] = STATE(566), - [sym_list_item_content] = STATE(730), + [sym__list_definition] = STATE(618), + [sym__list_item_definition] = STATE(527), + [sym__list_decimal_period] = STATE(618), + [sym__list_item_decimal_period] = STATE(524), + [sym__list_decimal_paren] = STATE(618), + [sym__list_item_decimal_paren] = STATE(521), + [sym__list_decimal_parens] = STATE(618), + [sym__list_item_decimal_parens] = STATE(520), + [sym__list_lower_alpha_period] = STATE(618), + [sym__list_item_lower_alpha_period] = STATE(518), + [sym__list_lower_alpha_paren] = STATE(618), + [sym__list_item_lower_alpha_paren] = STATE(517), + [sym__list_lower_alpha_parens] = STATE(618), + [sym__list_item_lower_alpha_parens] = STATE(515), + [sym__list_upper_alpha_period] = STATE(618), + [sym__list_item_upper_alpha_period] = STATE(514), + [sym__list_upper_alpha_paren] = STATE(618), + [sym__list_item_upper_alpha_paren] = STATE(510), + [sym__list_upper_alpha_parens] = STATE(618), + [sym__list_item_upper_alpha_parens] = STATE(501), + [sym__list_lower_roman_period] = STATE(618), + [sym__list_item_lower_roman_period] = STATE(500), + [sym__list_lower_roman_paren] = STATE(618), + [sym__list_item_lower_roman_paren] = STATE(499), + [sym__list_lower_roman_parens] = STATE(618), + [sym__list_item_lower_roman_parens] = STATE(498), + [sym__list_upper_roman_period] = STATE(618), + [sym__list_item_upper_roman_period] = STATE(497), + [sym__list_upper_roman_paren] = STATE(618), + [sym__list_item_upper_roman_paren] = STATE(496), + [sym__list_upper_roman_parens] = STATE(618), + [sym__list_item_upper_roman_parens] = STATE(579), + [sym_list_item_content] = STATE(851), [sym_table] = STATE(442), - [sym__table_content] = STATE(289), - [sym_table_separator] = STATE(289), - [sym_table_row] = STATE(363), + [sym__table_content] = STATE(358), + [sym_table_separator] = STATE(358), + [sym_table_row] = STATE(383), [sym_footnote] = STATE(442), + [sym_footnote_marker_begin] = STATE(1080), [sym_div] = STATE(442), - [sym_div_marker_begin] = STATE(941), + [sym_div_marker_begin] = STATE(952), [sym_code_block] = STATE(442), [sym_raw_block] = STATE(442), [sym_thematic_break] = STATE(442), [sym_block_quote] = STATE(442), - [sym__block_quote_prefix] = STATE(288), + [sym__block_quote_prefix] = STATE(285), [sym_link_reference_definition] = STATE(442), [sym_block_attribute] = STATE(442), [sym__paragraph] = STATE(442), - [sym__paragraph_content] = STATE(764), - [sym__inline] = STATE(703), - [sym__symbol_fallback] = STATE(366), - [aux_sym__list_dash_repeat1] = STATE(413), - [aux_sym__list_plus_repeat1] = STATE(418), - [aux_sym__list_star_repeat1] = STATE(417), - [aux_sym__list_task_repeat1] = STATE(381), - [aux_sym__list_definition_repeat1] = STATE(582), - [aux_sym__list_decimal_period_repeat1] = STATE(581), - [aux_sym__list_decimal_paren_repeat1] = STATE(579), - [aux_sym__list_decimal_parens_repeat1] = STATE(578), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(577), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(576), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(575), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(574), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(573), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(572), - [aux_sym__list_lower_roman_period_repeat1] = STATE(571), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(570), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(569), - [aux_sym__list_upper_roman_period_repeat1] = STATE(568), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(567), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(566), - [aux_sym_table_repeat1] = STATE(289), - [aux_sym__block_quote_prefix_repeat1] = STATE(323), - [aux_sym__inline_repeat1] = STATE(366), - [anon_sym_LBRACK] = ACTIONS(395), - [anon_sym_PIPE] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(399), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), + [sym__paragraph_content] = STATE(890), + [sym__inline] = STATE(710), + [sym__symbol_fallback] = STATE(355), + [aux_sym__list_dash_repeat1] = STATE(420), + [aux_sym__list_plus_repeat1] = STATE(421), + [aux_sym__list_star_repeat1] = STATE(422), + [aux_sym__list_task_repeat1] = STATE(404), + [aux_sym__list_definition_repeat1] = STATE(527), + [aux_sym__list_decimal_period_repeat1] = STATE(524), + [aux_sym__list_decimal_paren_repeat1] = STATE(521), + [aux_sym__list_decimal_parens_repeat1] = STATE(520), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(518), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(515), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(514), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(510), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(501), + [aux_sym__list_lower_roman_period_repeat1] = STATE(500), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(499), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(498), + [aux_sym__list_upper_roman_period_repeat1] = STATE(497), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(579), + [aux_sym_table_repeat1] = STATE(358), + [aux_sym__block_quote_prefix_repeat1] = STATE(316), + [aux_sym__inline_repeat1] = STATE(355), + [anon_sym_LBRACK] = ACTIONS(385), + [anon_sym_PIPE] = ACTIONS(387), + [anon_sym_LBRACK_CARET] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_DOT] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(13), + [aux_sym__inline_token1] = ACTIONS(13), + [anon_sym_LBRACE_DASH] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(13), + [anon_sym_PERCENT] = ACTIONS(13), + [sym__newline] = ACTIONS(429), + [sym__heading_begin] = ACTIONS(393), + [sym__div_begin] = ACTIONS(21), + [sym__code_block_begin] = ACTIONS(395), + [sym_list_marker_dash] = ACTIONS(25), + [sym_list_marker_star] = ACTIONS(27), + [sym_list_marker_plus] = ACTIONS(29), + [sym__list_marker_task_begin] = ACTIONS(31), + [sym_list_marker_definition] = ACTIONS(33), + [sym_list_marker_decimal_period] = ACTIONS(35), + [sym_list_marker_lower_alpha_period] = ACTIONS(37), + [sym_list_marker_upper_alpha_period] = ACTIONS(39), + [sym_list_marker_lower_roman_period] = ACTIONS(41), + [sym_list_marker_upper_roman_period] = ACTIONS(43), + [sym_list_marker_decimal_paren] = ACTIONS(45), + [sym_list_marker_lower_alpha_paren] = ACTIONS(47), + [sym_list_marker_upper_alpha_paren] = ACTIONS(49), + [sym_list_marker_lower_roman_paren] = ACTIONS(51), + [sym_list_marker_upper_roman_paren] = ACTIONS(53), + [sym_list_marker_decimal_parens] = ACTIONS(55), + [sym_list_marker_lower_alpha_parens] = ACTIONS(57), + [sym_list_marker_upper_alpha_parens] = ACTIONS(59), + [sym_list_marker_lower_roman_parens] = ACTIONS(61), + [sym_list_marker_upper_roman_parens] = ACTIONS(63), + [sym__block_quote_begin] = ACTIONS(397), + [sym__block_quote_continuation] = ACTIONS(399), + [sym__thematic_break_dash] = ACTIONS(401), + [sym__thematic_break_star] = ACTIONS(401), + }, + [48] = { + [sym__block_with_heading] = STATE(476), + [sym__block_element] = STATE(476), + [sym_heading] = STATE(476), + [sym_list] = STATE(476), + [sym__list_dash] = STATE(618), + [sym__list_item_dash] = STATE(420), + [sym__list_plus] = STATE(618), + [sym__list_item_plus] = STATE(421), + [sym__list_star] = STATE(618), + [sym__list_item_star] = STATE(422), + [sym__list_task] = STATE(618), + [sym__list_item_task] = STATE(404), + [sym_list_marker_task] = STATE(38), + [sym__list_definition] = STATE(618), + [sym__list_item_definition] = STATE(527), + [sym__list_decimal_period] = STATE(618), + [sym__list_item_decimal_period] = STATE(524), + [sym__list_decimal_paren] = STATE(618), + [sym__list_item_decimal_paren] = STATE(521), + [sym__list_decimal_parens] = STATE(618), + [sym__list_item_decimal_parens] = STATE(520), + [sym__list_lower_alpha_period] = STATE(618), + [sym__list_item_lower_alpha_period] = STATE(518), + [sym__list_lower_alpha_paren] = STATE(618), + [sym__list_item_lower_alpha_paren] = STATE(517), + [sym__list_lower_alpha_parens] = STATE(618), + [sym__list_item_lower_alpha_parens] = STATE(515), + [sym__list_upper_alpha_period] = STATE(618), + [sym__list_item_upper_alpha_period] = STATE(514), + [sym__list_upper_alpha_paren] = STATE(618), + [sym__list_item_upper_alpha_paren] = STATE(510), + [sym__list_upper_alpha_parens] = STATE(618), + [sym__list_item_upper_alpha_parens] = STATE(501), + [sym__list_lower_roman_period] = STATE(618), + [sym__list_item_lower_roman_period] = STATE(500), + [sym__list_lower_roman_paren] = STATE(618), + [sym__list_item_lower_roman_paren] = STATE(499), + [sym__list_lower_roman_parens] = STATE(618), + [sym__list_item_lower_roman_parens] = STATE(498), + [sym__list_upper_roman_period] = STATE(618), + [sym__list_item_upper_roman_period] = STATE(497), + [sym__list_upper_roman_paren] = STATE(618), + [sym__list_item_upper_roman_paren] = STATE(496), + [sym__list_upper_roman_parens] = STATE(618), + [sym__list_item_upper_roman_parens] = STATE(579), + [sym_list_item_content] = STATE(852), + [sym_table] = STATE(476), + [sym__table_content] = STATE(358), + [sym_table_separator] = STATE(358), + [sym_table_row] = STATE(383), + [sym_footnote] = STATE(476), + [sym_footnote_marker_begin] = STATE(1080), + [sym_div] = STATE(476), + [sym_div_marker_begin] = STATE(952), + [sym_code_block] = STATE(476), + [sym_raw_block] = STATE(476), + [sym_thematic_break] = STATE(476), + [sym_block_quote] = STATE(476), + [sym__block_quote_prefix] = STATE(285), + [sym_link_reference_definition] = STATE(476), + [sym_block_attribute] = STATE(476), + [sym__paragraph] = STATE(476), + [sym__paragraph_content] = STATE(890), + [sym__inline] = STATE(710), + [sym__symbol_fallback] = STATE(355), + [aux_sym__list_dash_repeat1] = STATE(420), + [aux_sym__list_plus_repeat1] = STATE(421), + [aux_sym__list_star_repeat1] = STATE(422), + [aux_sym__list_task_repeat1] = STATE(404), + [aux_sym__list_definition_repeat1] = STATE(527), + [aux_sym__list_decimal_period_repeat1] = STATE(524), + [aux_sym__list_decimal_paren_repeat1] = STATE(521), + [aux_sym__list_decimal_parens_repeat1] = STATE(520), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(518), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(515), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(514), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(510), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(501), + [aux_sym__list_lower_roman_period_repeat1] = STATE(500), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(499), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(498), + [aux_sym__list_upper_roman_period_repeat1] = STATE(497), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(579), + [aux_sym_table_repeat1] = STATE(358), + [aux_sym__block_quote_prefix_repeat1] = STATE(316), + [aux_sym__inline_repeat1] = STATE(355), + [anon_sym_LBRACK] = ACTIONS(385), + [anon_sym_PIPE] = ACTIONS(387), + [anon_sym_LBRACK_CARET] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_DOT] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(13), + [aux_sym__inline_token1] = ACTIONS(13), + [anon_sym_LBRACE_DASH] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(13), + [anon_sym_PERCENT] = ACTIONS(13), + [sym__newline] = ACTIONS(431), + [sym__heading_begin] = ACTIONS(393), + [sym__div_begin] = ACTIONS(21), + [sym__code_block_begin] = ACTIONS(395), + [sym_list_marker_dash] = ACTIONS(25), + [sym_list_marker_star] = ACTIONS(27), + [sym_list_marker_plus] = ACTIONS(29), + [sym__list_marker_task_begin] = ACTIONS(31), + [sym_list_marker_definition] = ACTIONS(33), + [sym_list_marker_decimal_period] = ACTIONS(35), + [sym_list_marker_lower_alpha_period] = ACTIONS(37), + [sym_list_marker_upper_alpha_period] = ACTIONS(39), + [sym_list_marker_lower_roman_period] = ACTIONS(41), + [sym_list_marker_upper_roman_period] = ACTIONS(43), + [sym_list_marker_decimal_paren] = ACTIONS(45), + [sym_list_marker_lower_alpha_paren] = ACTIONS(47), + [sym_list_marker_upper_alpha_paren] = ACTIONS(49), + [sym_list_marker_lower_roman_paren] = ACTIONS(51), + [sym_list_marker_upper_roman_paren] = ACTIONS(53), + [sym_list_marker_decimal_parens] = ACTIONS(55), + [sym_list_marker_lower_alpha_parens] = ACTIONS(57), + [sym_list_marker_upper_alpha_parens] = ACTIONS(59), + [sym_list_marker_lower_roman_parens] = ACTIONS(61), + [sym_list_marker_upper_roman_parens] = ACTIONS(63), + [sym__block_quote_begin] = ACTIONS(397), + [sym__block_quote_continuation] = ACTIONS(399), + [sym__thematic_break_dash] = ACTIONS(401), + [sym__thematic_break_star] = ACTIONS(401), + }, + [49] = { + [sym__block_with_heading] = STATE(427), + [sym__block_element] = STATE(427), + [sym_heading] = STATE(427), + [sym_list] = STATE(427), + [sym__list_dash] = STATE(618), + [sym__list_item_dash] = STATE(420), + [sym__list_plus] = STATE(618), + [sym__list_item_plus] = STATE(421), + [sym__list_star] = STATE(618), + [sym__list_item_star] = STATE(422), + [sym__list_task] = STATE(618), + [sym__list_item_task] = STATE(404), + [sym_list_marker_task] = STATE(38), + [sym__list_definition] = STATE(618), + [sym__list_item_definition] = STATE(527), + [sym__list_decimal_period] = STATE(618), + [sym__list_item_decimal_period] = STATE(524), + [sym__list_decimal_paren] = STATE(618), + [sym__list_item_decimal_paren] = STATE(521), + [sym__list_decimal_parens] = STATE(618), + [sym__list_item_decimal_parens] = STATE(520), + [sym__list_lower_alpha_period] = STATE(618), + [sym__list_item_lower_alpha_period] = STATE(518), + [sym__list_lower_alpha_paren] = STATE(618), + [sym__list_item_lower_alpha_paren] = STATE(517), + [sym__list_lower_alpha_parens] = STATE(618), + [sym__list_item_lower_alpha_parens] = STATE(515), + [sym__list_upper_alpha_period] = STATE(618), + [sym__list_item_upper_alpha_period] = STATE(514), + [sym__list_upper_alpha_paren] = STATE(618), + [sym__list_item_upper_alpha_paren] = STATE(510), + [sym__list_upper_alpha_parens] = STATE(618), + [sym__list_item_upper_alpha_parens] = STATE(501), + [sym__list_lower_roman_period] = STATE(618), + [sym__list_item_lower_roman_period] = STATE(500), + [sym__list_lower_roman_paren] = STATE(618), + [sym__list_item_lower_roman_paren] = STATE(499), + [sym__list_lower_roman_parens] = STATE(618), + [sym__list_item_lower_roman_parens] = STATE(498), + [sym__list_upper_roman_period] = STATE(618), + [sym__list_item_upper_roman_period] = STATE(497), + [sym__list_upper_roman_paren] = STATE(618), + [sym__list_item_upper_roman_paren] = STATE(496), + [sym__list_upper_roman_parens] = STATE(618), + [sym__list_item_upper_roman_parens] = STATE(579), + [sym_list_item_content] = STATE(853), + [sym_table] = STATE(427), + [sym__table_content] = STATE(358), + [sym_table_separator] = STATE(358), + [sym_table_row] = STATE(383), + [sym_footnote] = STATE(427), + [sym_footnote_marker_begin] = STATE(1080), + [sym_div] = STATE(427), + [sym_div_marker_begin] = STATE(952), + [sym_code_block] = STATE(427), + [sym_raw_block] = STATE(427), + [sym_thematic_break] = STATE(427), + [sym_block_quote] = STATE(427), + [sym__block_quote_prefix] = STATE(285), + [sym_link_reference_definition] = STATE(427), + [sym_block_attribute] = STATE(427), + [sym__paragraph] = STATE(427), + [sym__paragraph_content] = STATE(890), + [sym__inline] = STATE(710), + [sym__symbol_fallback] = STATE(355), + [aux_sym__list_dash_repeat1] = STATE(420), + [aux_sym__list_plus_repeat1] = STATE(421), + [aux_sym__list_star_repeat1] = STATE(422), + [aux_sym__list_task_repeat1] = STATE(404), + [aux_sym__list_definition_repeat1] = STATE(527), + [aux_sym__list_decimal_period_repeat1] = STATE(524), + [aux_sym__list_decimal_paren_repeat1] = STATE(521), + [aux_sym__list_decimal_parens_repeat1] = STATE(520), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(518), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(515), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(514), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(510), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(501), + [aux_sym__list_lower_roman_period_repeat1] = STATE(500), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(499), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(498), + [aux_sym__list_upper_roman_period_repeat1] = STATE(497), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(579), + [aux_sym_table_repeat1] = STATE(358), + [aux_sym__block_quote_prefix_repeat1] = STATE(316), + [aux_sym__inline_repeat1] = STATE(355), + [anon_sym_LBRACK] = ACTIONS(385), + [anon_sym_PIPE] = ACTIONS(387), + [anon_sym_LBRACK_CARET] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_DOT] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(13), + [aux_sym__inline_token1] = ACTIONS(13), + [anon_sym_LBRACE_DASH] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(13), + [anon_sym_PERCENT] = ACTIONS(13), + [sym__newline] = ACTIONS(433), + [sym__heading_begin] = ACTIONS(393), + [sym__div_begin] = ACTIONS(21), + [sym__code_block_begin] = ACTIONS(395), + [sym_list_marker_dash] = ACTIONS(25), + [sym_list_marker_star] = ACTIONS(27), + [sym_list_marker_plus] = ACTIONS(29), + [sym__list_marker_task_begin] = ACTIONS(31), + [sym_list_marker_definition] = ACTIONS(33), + [sym_list_marker_decimal_period] = ACTIONS(35), + [sym_list_marker_lower_alpha_period] = ACTIONS(37), + [sym_list_marker_upper_alpha_period] = ACTIONS(39), + [sym_list_marker_lower_roman_period] = ACTIONS(41), + [sym_list_marker_upper_roman_period] = ACTIONS(43), + [sym_list_marker_decimal_paren] = ACTIONS(45), + [sym_list_marker_lower_alpha_paren] = ACTIONS(47), + [sym_list_marker_upper_alpha_paren] = ACTIONS(49), + [sym_list_marker_lower_roman_paren] = ACTIONS(51), + [sym_list_marker_upper_roman_paren] = ACTIONS(53), + [sym_list_marker_decimal_parens] = ACTIONS(55), + [sym_list_marker_lower_alpha_parens] = ACTIONS(57), + [sym_list_marker_upper_alpha_parens] = ACTIONS(59), + [sym_list_marker_lower_roman_parens] = ACTIONS(61), + [sym_list_marker_upper_roman_parens] = ACTIONS(63), + [sym__block_quote_begin] = ACTIONS(397), + [sym__block_quote_continuation] = ACTIONS(399), + [sym__thematic_break_dash] = ACTIONS(401), + [sym__thematic_break_star] = ACTIONS(401), + }, + [50] = { + [sym__block_with_heading] = STATE(430), + [sym__block_element] = STATE(430), + [sym_heading] = STATE(430), + [sym_list] = STATE(430), + [sym__list_dash] = STATE(618), + [sym__list_item_dash] = STATE(420), + [sym__list_plus] = STATE(618), + [sym__list_item_plus] = STATE(421), + [sym__list_star] = STATE(618), + [sym__list_item_star] = STATE(422), + [sym__list_task] = STATE(618), + [sym__list_item_task] = STATE(404), + [sym_list_marker_task] = STATE(38), + [sym__list_definition] = STATE(618), + [sym__list_item_definition] = STATE(527), + [sym__list_decimal_period] = STATE(618), + [sym__list_item_decimal_period] = STATE(524), + [sym__list_decimal_paren] = STATE(618), + [sym__list_item_decimal_paren] = STATE(521), + [sym__list_decimal_parens] = STATE(618), + [sym__list_item_decimal_parens] = STATE(520), + [sym__list_lower_alpha_period] = STATE(618), + [sym__list_item_lower_alpha_period] = STATE(518), + [sym__list_lower_alpha_paren] = STATE(618), + [sym__list_item_lower_alpha_paren] = STATE(517), + [sym__list_lower_alpha_parens] = STATE(618), + [sym__list_item_lower_alpha_parens] = STATE(515), + [sym__list_upper_alpha_period] = STATE(618), + [sym__list_item_upper_alpha_period] = STATE(514), + [sym__list_upper_alpha_paren] = STATE(618), + [sym__list_item_upper_alpha_paren] = STATE(510), + [sym__list_upper_alpha_parens] = STATE(618), + [sym__list_item_upper_alpha_parens] = STATE(501), + [sym__list_lower_roman_period] = STATE(618), + [sym__list_item_lower_roman_period] = STATE(500), + [sym__list_lower_roman_paren] = STATE(618), + [sym__list_item_lower_roman_paren] = STATE(499), + [sym__list_lower_roman_parens] = STATE(618), + [sym__list_item_lower_roman_parens] = STATE(498), + [sym__list_upper_roman_period] = STATE(618), + [sym__list_item_upper_roman_period] = STATE(497), + [sym__list_upper_roman_paren] = STATE(618), + [sym__list_item_upper_roman_paren] = STATE(496), + [sym__list_upper_roman_parens] = STATE(618), + [sym__list_item_upper_roman_parens] = STATE(579), + [sym_list_item_content] = STATE(858), + [sym_table] = STATE(430), + [sym__table_content] = STATE(358), + [sym_table_separator] = STATE(358), + [sym_table_row] = STATE(383), + [sym_footnote] = STATE(430), + [sym_footnote_marker_begin] = STATE(1080), + [sym_div] = STATE(430), + [sym_div_marker_begin] = STATE(952), + [sym_code_block] = STATE(430), + [sym_raw_block] = STATE(430), + [sym_thematic_break] = STATE(430), + [sym_block_quote] = STATE(430), + [sym__block_quote_prefix] = STATE(285), + [sym_link_reference_definition] = STATE(430), + [sym_block_attribute] = STATE(430), + [sym__paragraph] = STATE(430), + [sym__paragraph_content] = STATE(890), + [sym__inline] = STATE(710), + [sym__symbol_fallback] = STATE(355), + [aux_sym__list_dash_repeat1] = STATE(420), + [aux_sym__list_plus_repeat1] = STATE(421), + [aux_sym__list_star_repeat1] = STATE(422), + [aux_sym__list_task_repeat1] = STATE(404), + [aux_sym__list_definition_repeat1] = STATE(527), + [aux_sym__list_decimal_period_repeat1] = STATE(524), + [aux_sym__list_decimal_paren_repeat1] = STATE(521), + [aux_sym__list_decimal_parens_repeat1] = STATE(520), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(518), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(515), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(514), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(510), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(501), + [aux_sym__list_lower_roman_period_repeat1] = STATE(500), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(499), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(498), + [aux_sym__list_upper_roman_period_repeat1] = STATE(497), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(579), + [aux_sym_table_repeat1] = STATE(358), + [aux_sym__block_quote_prefix_repeat1] = STATE(316), + [aux_sym__inline_repeat1] = STATE(355), + [anon_sym_LBRACK] = ACTIONS(385), + [anon_sym_PIPE] = ACTIONS(387), + [anon_sym_LBRACK_CARET] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_DOT] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(13), + [aux_sym__inline_token1] = ACTIONS(13), + [anon_sym_LBRACE_DASH] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(13), + [anon_sym_PERCENT] = ACTIONS(13), + [sym__newline] = ACTIONS(435), + [sym__heading_begin] = ACTIONS(393), + [sym__div_begin] = ACTIONS(21), + [sym__code_block_begin] = ACTIONS(395), + [sym_list_marker_dash] = ACTIONS(25), + [sym_list_marker_star] = ACTIONS(27), + [sym_list_marker_plus] = ACTIONS(29), + [sym__list_marker_task_begin] = ACTIONS(31), + [sym_list_marker_definition] = ACTIONS(33), + [sym_list_marker_decimal_period] = ACTIONS(35), + [sym_list_marker_lower_alpha_period] = ACTIONS(37), + [sym_list_marker_upper_alpha_period] = ACTIONS(39), + [sym_list_marker_lower_roman_period] = ACTIONS(41), + [sym_list_marker_upper_roman_period] = ACTIONS(43), + [sym_list_marker_decimal_paren] = ACTIONS(45), + [sym_list_marker_lower_alpha_paren] = ACTIONS(47), + [sym_list_marker_upper_alpha_paren] = ACTIONS(49), + [sym_list_marker_lower_roman_paren] = ACTIONS(51), + [sym_list_marker_upper_roman_paren] = ACTIONS(53), + [sym_list_marker_decimal_parens] = ACTIONS(55), + [sym_list_marker_lower_alpha_parens] = ACTIONS(57), + [sym_list_marker_upper_alpha_parens] = ACTIONS(59), + [sym_list_marker_lower_roman_parens] = ACTIONS(61), + [sym_list_marker_upper_roman_parens] = ACTIONS(63), + [sym__block_quote_begin] = ACTIONS(397), + [sym__block_quote_continuation] = ACTIONS(399), + [sym__thematic_break_dash] = ACTIONS(401), + [sym__thematic_break_star] = ACTIONS(401), + }, + [51] = { + [sym__block_with_heading] = STATE(461), + [sym__block_element] = STATE(461), + [sym_heading] = STATE(461), + [sym_list] = STATE(461), + [sym__list_dash] = STATE(618), + [sym__list_item_dash] = STATE(420), + [sym__list_plus] = STATE(618), + [sym__list_item_plus] = STATE(421), + [sym__list_star] = STATE(618), + [sym__list_item_star] = STATE(422), + [sym__list_task] = STATE(618), + [sym__list_item_task] = STATE(404), + [sym_list_marker_task] = STATE(38), + [sym__list_definition] = STATE(618), + [sym__list_item_definition] = STATE(527), + [sym__list_decimal_period] = STATE(618), + [sym__list_item_decimal_period] = STATE(524), + [sym__list_decimal_paren] = STATE(618), + [sym__list_item_decimal_paren] = STATE(521), + [sym__list_decimal_parens] = STATE(618), + [sym__list_item_decimal_parens] = STATE(520), + [sym__list_lower_alpha_period] = STATE(618), + [sym__list_item_lower_alpha_period] = STATE(518), + [sym__list_lower_alpha_paren] = STATE(618), + [sym__list_item_lower_alpha_paren] = STATE(517), + [sym__list_lower_alpha_parens] = STATE(618), + [sym__list_item_lower_alpha_parens] = STATE(515), + [sym__list_upper_alpha_period] = STATE(618), + [sym__list_item_upper_alpha_period] = STATE(514), + [sym__list_upper_alpha_paren] = STATE(618), + [sym__list_item_upper_alpha_paren] = STATE(510), + [sym__list_upper_alpha_parens] = STATE(618), + [sym__list_item_upper_alpha_parens] = STATE(501), + [sym__list_lower_roman_period] = STATE(618), + [sym__list_item_lower_roman_period] = STATE(500), + [sym__list_lower_roman_paren] = STATE(618), + [sym__list_item_lower_roman_paren] = STATE(499), + [sym__list_lower_roman_parens] = STATE(618), + [sym__list_item_lower_roman_parens] = STATE(498), + [sym__list_upper_roman_period] = STATE(618), + [sym__list_item_upper_roman_period] = STATE(497), + [sym__list_upper_roman_paren] = STATE(618), + [sym__list_item_upper_roman_paren] = STATE(496), + [sym__list_upper_roman_parens] = STATE(618), + [sym__list_item_upper_roman_parens] = STATE(579), + [sym_list_item_content] = STATE(857), + [sym_table] = STATE(461), + [sym__table_content] = STATE(358), + [sym_table_separator] = STATE(358), + [sym_table_row] = STATE(383), + [sym_footnote] = STATE(461), + [sym_footnote_marker_begin] = STATE(1080), + [sym_div] = STATE(461), + [sym_div_marker_begin] = STATE(952), + [sym_code_block] = STATE(461), + [sym_raw_block] = STATE(461), + [sym_thematic_break] = STATE(461), + [sym_block_quote] = STATE(461), + [sym__block_quote_prefix] = STATE(285), + [sym_link_reference_definition] = STATE(461), + [sym_block_attribute] = STATE(461), + [sym__paragraph] = STATE(461), + [sym__paragraph_content] = STATE(890), + [sym__inline] = STATE(710), + [sym__symbol_fallback] = STATE(355), + [aux_sym__list_dash_repeat1] = STATE(420), + [aux_sym__list_plus_repeat1] = STATE(421), + [aux_sym__list_star_repeat1] = STATE(422), + [aux_sym__list_task_repeat1] = STATE(404), + [aux_sym__list_definition_repeat1] = STATE(527), + [aux_sym__list_decimal_period_repeat1] = STATE(524), + [aux_sym__list_decimal_paren_repeat1] = STATE(521), + [aux_sym__list_decimal_parens_repeat1] = STATE(520), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(518), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(515), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(514), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(510), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(501), + [aux_sym__list_lower_roman_period_repeat1] = STATE(500), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(499), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(498), + [aux_sym__list_upper_roman_period_repeat1] = STATE(497), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(579), + [aux_sym_table_repeat1] = STATE(358), + [aux_sym__block_quote_prefix_repeat1] = STATE(316), + [aux_sym__inline_repeat1] = STATE(355), + [anon_sym_LBRACK] = ACTIONS(385), + [anon_sym_PIPE] = ACTIONS(387), + [anon_sym_LBRACK_CARET] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_DOT] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(13), + [aux_sym__inline_token1] = ACTIONS(13), + [anon_sym_LBRACE_DASH] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(13), + [anon_sym_PERCENT] = ACTIONS(13), [sym__newline] = ACTIONS(437), - [sym__heading_begin] = ACTIONS(403), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(405), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(407), - [sym__block_quote_continuation] = ACTIONS(409), - [sym__thematic_break_dash] = ACTIONS(411), - [sym__thematic_break_star] = ACTIONS(411), - [sym__footnote_begin] = ACTIONS(413), + [sym__heading_begin] = ACTIONS(393), + [sym__div_begin] = ACTIONS(21), + [sym__code_block_begin] = ACTIONS(395), + [sym_list_marker_dash] = ACTIONS(25), + [sym_list_marker_star] = ACTIONS(27), + [sym_list_marker_plus] = ACTIONS(29), + [sym__list_marker_task_begin] = ACTIONS(31), + [sym_list_marker_definition] = ACTIONS(33), + [sym_list_marker_decimal_period] = ACTIONS(35), + [sym_list_marker_lower_alpha_period] = ACTIONS(37), + [sym_list_marker_upper_alpha_period] = ACTIONS(39), + [sym_list_marker_lower_roman_period] = ACTIONS(41), + [sym_list_marker_upper_roman_period] = ACTIONS(43), + [sym_list_marker_decimal_paren] = ACTIONS(45), + [sym_list_marker_lower_alpha_paren] = ACTIONS(47), + [sym_list_marker_upper_alpha_paren] = ACTIONS(49), + [sym_list_marker_lower_roman_paren] = ACTIONS(51), + [sym_list_marker_upper_roman_paren] = ACTIONS(53), + [sym_list_marker_decimal_parens] = ACTIONS(55), + [sym_list_marker_lower_alpha_parens] = ACTIONS(57), + [sym_list_marker_upper_alpha_parens] = ACTIONS(59), + [sym_list_marker_lower_roman_parens] = ACTIONS(61), + [sym_list_marker_upper_roman_parens] = ACTIONS(63), + [sym__block_quote_begin] = ACTIONS(397), + [sym__block_quote_continuation] = ACTIONS(399), + [sym__thematic_break_dash] = ACTIONS(401), + [sym__thematic_break_star] = ACTIONS(401), }, - [42] = { - [sym__block_with_heading] = STATE(467), - [sym__block_element] = STATE(467), - [sym_heading] = STATE(467), - [sym_list] = STATE(467), - [sym__list_dash] = STATE(699), - [sym__list_item_dash] = STATE(413), - [sym__list_plus] = STATE(699), - [sym__list_item_plus] = STATE(418), - [sym__list_star] = STATE(699), - [sym__list_item_star] = STATE(417), - [sym__list_task] = STATE(699), - [sym__list_item_task] = STATE(381), + [52] = { + [sym__block_with_heading] = STATE(696), + [sym__block_element] = STATE(696), + [sym_heading] = STATE(696), + [sym_list] = STATE(696), + [sym__list_dash] = STATE(618), + [sym__list_item_dash] = STATE(420), + [sym__list_plus] = STATE(618), + [sym__list_item_plus] = STATE(421), + [sym__list_star] = STATE(618), + [sym__list_item_star] = STATE(422), + [sym__list_task] = STATE(618), + [sym__list_item_task] = STATE(404), [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(699), - [sym__list_item_definition] = STATE(582), - [sym__list_decimal_period] = STATE(699), - [sym__list_item_decimal_period] = STATE(581), - [sym__list_decimal_paren] = STATE(699), - [sym__list_item_decimal_paren] = STATE(579), - [sym__list_decimal_parens] = STATE(699), - [sym__list_item_decimal_parens] = STATE(578), - [sym__list_lower_alpha_period] = STATE(699), - [sym__list_item_lower_alpha_period] = STATE(577), - [sym__list_lower_alpha_paren] = STATE(699), - [sym__list_item_lower_alpha_paren] = STATE(576), - [sym__list_lower_alpha_parens] = STATE(699), - [sym__list_item_lower_alpha_parens] = STATE(575), - [sym__list_upper_alpha_period] = STATE(699), - [sym__list_item_upper_alpha_period] = STATE(574), - [sym__list_upper_alpha_paren] = STATE(699), - [sym__list_item_upper_alpha_paren] = STATE(573), - [sym__list_upper_alpha_parens] = STATE(699), - [sym__list_item_upper_alpha_parens] = STATE(572), - [sym__list_lower_roman_period] = STATE(699), - [sym__list_item_lower_roman_period] = STATE(571), - [sym__list_lower_roman_paren] = STATE(699), - [sym__list_item_lower_roman_paren] = STATE(570), - [sym__list_lower_roman_parens] = STATE(699), - [sym__list_item_lower_roman_parens] = STATE(569), - [sym__list_upper_roman_period] = STATE(699), - [sym__list_item_upper_roman_period] = STATE(568), - [sym__list_upper_roman_paren] = STATE(699), - [sym__list_item_upper_roman_paren] = STATE(567), - [sym__list_upper_roman_parens] = STATE(699), - [sym__list_item_upper_roman_parens] = STATE(566), - [sym_list_item_content] = STATE(813), - [sym_table] = STATE(467), - [sym__table_content] = STATE(289), - [sym_table_separator] = STATE(289), - [sym_table_row] = STATE(363), - [sym_footnote] = STATE(467), - [sym_div] = STATE(467), - [sym_div_marker_begin] = STATE(941), - [sym_code_block] = STATE(467), - [sym_raw_block] = STATE(467), - [sym_thematic_break] = STATE(467), - [sym_block_quote] = STATE(467), - [sym__block_quote_prefix] = STATE(288), - [sym_link_reference_definition] = STATE(467), - [sym_block_attribute] = STATE(467), - [sym__paragraph] = STATE(467), - [sym__paragraph_content] = STATE(764), - [sym__inline] = STATE(703), - [sym__symbol_fallback] = STATE(366), - [aux_sym__list_dash_repeat1] = STATE(413), - [aux_sym__list_plus_repeat1] = STATE(418), - [aux_sym__list_star_repeat1] = STATE(417), - [aux_sym__list_task_repeat1] = STATE(381), - [aux_sym__list_definition_repeat1] = STATE(582), - [aux_sym__list_decimal_period_repeat1] = STATE(581), - [aux_sym__list_decimal_paren_repeat1] = STATE(579), - [aux_sym__list_decimal_parens_repeat1] = STATE(578), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(577), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(576), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(575), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(574), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(573), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(572), - [aux_sym__list_lower_roman_period_repeat1] = STATE(571), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(570), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(569), - [aux_sym__list_upper_roman_period_repeat1] = STATE(568), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(567), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(566), - [aux_sym_table_repeat1] = STATE(289), - [aux_sym__block_quote_prefix_repeat1] = STATE(323), - [aux_sym__inline_repeat1] = STATE(366), - [anon_sym_LBRACK] = ACTIONS(395), - [anon_sym_PIPE] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(399), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), + [sym__list_definition] = STATE(618), + [sym__list_item_definition] = STATE(527), + [sym__list_decimal_period] = STATE(618), + [sym__list_item_decimal_period] = STATE(524), + [sym__list_decimal_paren] = STATE(618), + [sym__list_item_decimal_paren] = STATE(521), + [sym__list_decimal_parens] = STATE(618), + [sym__list_item_decimal_parens] = STATE(520), + [sym__list_lower_alpha_period] = STATE(618), + [sym__list_item_lower_alpha_period] = STATE(518), + [sym__list_lower_alpha_paren] = STATE(618), + [sym__list_item_lower_alpha_paren] = STATE(517), + [sym__list_lower_alpha_parens] = STATE(618), + [sym__list_item_lower_alpha_parens] = STATE(515), + [sym__list_upper_alpha_period] = STATE(618), + [sym__list_item_upper_alpha_period] = STATE(514), + [sym__list_upper_alpha_paren] = STATE(618), + [sym__list_item_upper_alpha_paren] = STATE(510), + [sym__list_upper_alpha_parens] = STATE(618), + [sym__list_item_upper_alpha_parens] = STATE(501), + [sym__list_lower_roman_period] = STATE(618), + [sym__list_item_lower_roman_period] = STATE(500), + [sym__list_lower_roman_paren] = STATE(618), + [sym__list_item_lower_roman_paren] = STATE(499), + [sym__list_lower_roman_parens] = STATE(618), + [sym__list_item_lower_roman_parens] = STATE(498), + [sym__list_upper_roman_period] = STATE(618), + [sym__list_item_upper_roman_period] = STATE(497), + [sym__list_upper_roman_paren] = STATE(618), + [sym__list_item_upper_roman_paren] = STATE(496), + [sym__list_upper_roman_parens] = STATE(618), + [sym__list_item_upper_roman_parens] = STATE(579), + [sym_table] = STATE(696), + [sym__table_content] = STATE(358), + [sym_table_separator] = STATE(358), + [sym_table_row] = STATE(383), + [sym_footnote] = STATE(696), + [sym_footnote_marker_begin] = STATE(1080), + [sym_div] = STATE(696), + [sym_div_marker_begin] = STATE(952), + [sym_code_block] = STATE(696), + [sym_raw_block] = STATE(696), + [sym_thematic_break] = STATE(696), + [sym_block_quote] = STATE(696), + [sym__block_quote_prefix] = STATE(285), + [sym_link_reference_definition] = STATE(696), + [sym_block_attribute] = STATE(696), + [sym__paragraph] = STATE(696), + [sym__paragraph_content] = STATE(890), + [sym__inline] = STATE(710), + [sym__symbol_fallback] = STATE(355), + [aux_sym__list_dash_repeat1] = STATE(420), + [aux_sym__list_plus_repeat1] = STATE(421), + [aux_sym__list_star_repeat1] = STATE(422), + [aux_sym__list_task_repeat1] = STATE(404), + [aux_sym__list_definition_repeat1] = STATE(527), + [aux_sym__list_decimal_period_repeat1] = STATE(524), + [aux_sym__list_decimal_paren_repeat1] = STATE(521), + [aux_sym__list_decimal_parens_repeat1] = STATE(520), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(518), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(515), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(514), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(510), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(501), + [aux_sym__list_lower_roman_period_repeat1] = STATE(500), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(499), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(498), + [aux_sym__list_upper_roman_period_repeat1] = STATE(497), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(579), + [aux_sym_table_repeat1] = STATE(358), + [aux_sym__block_quote_prefix_repeat1] = STATE(316), + [aux_sym__inline_repeat1] = STATE(355), + [anon_sym_LBRACK] = ACTIONS(385), + [anon_sym_PIPE] = ACTIONS(387), + [anon_sym_LBRACK_CARET] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_DOT] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(13), + [aux_sym__inline_token1] = ACTIONS(13), + [anon_sym_LBRACE_DASH] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(13), + [anon_sym_PERCENT] = ACTIONS(13), [sym__newline] = ACTIONS(439), - [sym__heading_begin] = ACTIONS(403), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(405), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(407), - [sym__block_quote_continuation] = ACTIONS(409), - [sym__thematic_break_dash] = ACTIONS(411), - [sym__thematic_break_star] = ACTIONS(411), - [sym__footnote_begin] = ACTIONS(413), + [sym__heading_begin] = ACTIONS(393), + [sym__div_begin] = ACTIONS(21), + [sym__code_block_begin] = ACTIONS(395), + [sym_list_marker_dash] = ACTIONS(25), + [sym_list_marker_star] = ACTIONS(27), + [sym_list_marker_plus] = ACTIONS(29), + [sym__list_marker_task_begin] = ACTIONS(31), + [sym_list_marker_definition] = ACTIONS(33), + [sym_list_marker_decimal_period] = ACTIONS(35), + [sym_list_marker_lower_alpha_period] = ACTIONS(37), + [sym_list_marker_upper_alpha_period] = ACTIONS(39), + [sym_list_marker_lower_roman_period] = ACTIONS(41), + [sym_list_marker_upper_roman_period] = ACTIONS(43), + [sym_list_marker_decimal_paren] = ACTIONS(45), + [sym_list_marker_lower_alpha_paren] = ACTIONS(47), + [sym_list_marker_upper_alpha_paren] = ACTIONS(49), + [sym_list_marker_lower_roman_paren] = ACTIONS(51), + [sym_list_marker_upper_roman_paren] = ACTIONS(53), + [sym_list_marker_decimal_parens] = ACTIONS(55), + [sym_list_marker_lower_alpha_parens] = ACTIONS(57), + [sym_list_marker_upper_alpha_parens] = ACTIONS(59), + [sym_list_marker_lower_roman_parens] = ACTIONS(61), + [sym_list_marker_upper_roman_parens] = ACTIONS(63), + [sym__block_quote_begin] = ACTIONS(397), + [sym__block_quote_continuation] = ACTIONS(399), + [sym__thematic_break_dash] = ACTIONS(401), + [sym__thematic_break_star] = ACTIONS(401), }, - [43] = { - [sym__block_with_heading] = STATE(446), - [sym__block_element] = STATE(446), - [sym_heading] = STATE(446), - [sym_list] = STATE(446), - [sym__list_dash] = STATE(699), - [sym__list_item_dash] = STATE(413), - [sym__list_plus] = STATE(699), - [sym__list_item_plus] = STATE(418), - [sym__list_star] = STATE(699), - [sym__list_item_star] = STATE(417), - [sym__list_task] = STATE(699), - [sym__list_item_task] = STATE(381), + [53] = { + [sym__block_with_heading] = STATE(637), + [sym__block_element] = STATE(637), + [sym_heading] = STATE(637), + [sym_list] = STATE(637), + [sym__list_dash] = STATE(618), + [sym__list_item_dash] = STATE(420), + [sym__list_plus] = STATE(618), + [sym__list_item_plus] = STATE(421), + [sym__list_star] = STATE(618), + [sym__list_item_star] = STATE(422), + [sym__list_task] = STATE(618), + [sym__list_item_task] = STATE(404), + [sym_list_marker_task] = STATE(38), + [sym__list_definition] = STATE(618), + [sym__list_item_definition] = STATE(527), + [sym__list_decimal_period] = STATE(618), + [sym__list_item_decimal_period] = STATE(524), + [sym__list_decimal_paren] = STATE(618), + [sym__list_item_decimal_paren] = STATE(521), + [sym__list_decimal_parens] = STATE(618), + [sym__list_item_decimal_parens] = STATE(520), + [sym__list_lower_alpha_period] = STATE(618), + [sym__list_item_lower_alpha_period] = STATE(518), + [sym__list_lower_alpha_paren] = STATE(618), + [sym__list_item_lower_alpha_paren] = STATE(517), + [sym__list_lower_alpha_parens] = STATE(618), + [sym__list_item_lower_alpha_parens] = STATE(515), + [sym__list_upper_alpha_period] = STATE(618), + [sym__list_item_upper_alpha_period] = STATE(514), + [sym__list_upper_alpha_paren] = STATE(618), + [sym__list_item_upper_alpha_paren] = STATE(510), + [sym__list_upper_alpha_parens] = STATE(618), + [sym__list_item_upper_alpha_parens] = STATE(501), + [sym__list_lower_roman_period] = STATE(618), + [sym__list_item_lower_roman_period] = STATE(500), + [sym__list_lower_roman_paren] = STATE(618), + [sym__list_item_lower_roman_paren] = STATE(499), + [sym__list_lower_roman_parens] = STATE(618), + [sym__list_item_lower_roman_parens] = STATE(498), + [sym__list_upper_roman_period] = STATE(618), + [sym__list_item_upper_roman_period] = STATE(497), + [sym__list_upper_roman_paren] = STATE(618), + [sym__list_item_upper_roman_paren] = STATE(496), + [sym__list_upper_roman_parens] = STATE(618), + [sym__list_item_upper_roman_parens] = STATE(579), + [sym_table] = STATE(637), + [sym__table_content] = STATE(358), + [sym_table_separator] = STATE(358), + [sym_table_row] = STATE(383), + [sym_footnote] = STATE(637), + [sym_footnote_marker_begin] = STATE(1080), + [sym_div] = STATE(637), + [sym_div_marker_begin] = STATE(952), + [sym_code_block] = STATE(637), + [sym_raw_block] = STATE(637), + [sym_thematic_break] = STATE(637), + [sym_block_quote] = STATE(637), + [sym__block_quote_prefix] = STATE(285), + [sym_link_reference_definition] = STATE(637), + [sym_block_attribute] = STATE(637), + [sym__paragraph] = STATE(637), + [sym__paragraph_content] = STATE(890), + [sym__inline] = STATE(710), + [sym__symbol_fallback] = STATE(355), + [aux_sym__list_dash_repeat1] = STATE(420), + [aux_sym__list_plus_repeat1] = STATE(421), + [aux_sym__list_star_repeat1] = STATE(422), + [aux_sym__list_task_repeat1] = STATE(404), + [aux_sym__list_definition_repeat1] = STATE(527), + [aux_sym__list_decimal_period_repeat1] = STATE(524), + [aux_sym__list_decimal_paren_repeat1] = STATE(521), + [aux_sym__list_decimal_parens_repeat1] = STATE(520), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(518), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(515), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(514), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(510), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(501), + [aux_sym__list_lower_roman_period_repeat1] = STATE(500), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(499), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(498), + [aux_sym__list_upper_roman_period_repeat1] = STATE(497), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(579), + [aux_sym_table_repeat1] = STATE(358), + [aux_sym__block_quote_prefix_repeat1] = STATE(316), + [aux_sym__inline_repeat1] = STATE(355), + [anon_sym_LBRACK] = ACTIONS(385), + [anon_sym_PIPE] = ACTIONS(387), + [anon_sym_LBRACK_CARET] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_DOT] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(13), + [aux_sym__inline_token1] = ACTIONS(13), + [anon_sym_LBRACE_DASH] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(13), + [anon_sym_PERCENT] = ACTIONS(13), + [sym__newline] = ACTIONS(441), + [sym__heading_begin] = ACTIONS(393), + [sym__div_begin] = ACTIONS(21), + [sym__code_block_begin] = ACTIONS(395), + [sym_list_marker_dash] = ACTIONS(25), + [sym_list_marker_star] = ACTIONS(27), + [sym_list_marker_plus] = ACTIONS(29), + [sym__list_marker_task_begin] = ACTIONS(31), + [sym_list_marker_definition] = ACTIONS(33), + [sym_list_marker_decimal_period] = ACTIONS(35), + [sym_list_marker_lower_alpha_period] = ACTIONS(37), + [sym_list_marker_upper_alpha_period] = ACTIONS(39), + [sym_list_marker_lower_roman_period] = ACTIONS(41), + [sym_list_marker_upper_roman_period] = ACTIONS(43), + [sym_list_marker_decimal_paren] = ACTIONS(45), + [sym_list_marker_lower_alpha_paren] = ACTIONS(47), + [sym_list_marker_upper_alpha_paren] = ACTIONS(49), + [sym_list_marker_lower_roman_paren] = ACTIONS(51), + [sym_list_marker_upper_roman_paren] = ACTIONS(53), + [sym_list_marker_decimal_parens] = ACTIONS(55), + [sym_list_marker_lower_alpha_parens] = ACTIONS(57), + [sym_list_marker_upper_alpha_parens] = ACTIONS(59), + [sym_list_marker_lower_roman_parens] = ACTIONS(61), + [sym_list_marker_upper_roman_parens] = ACTIONS(63), + [sym__block_quote_begin] = ACTIONS(397), + [sym__block_quote_continuation] = ACTIONS(399), + [sym__thematic_break_dash] = ACTIONS(401), + [sym__thematic_break_star] = ACTIONS(401), + }, + [54] = { + [sym__block_element] = STATE(181), + [sym_heading] = STATE(181), + [sym_list] = STATE(181), + [sym__list_dash] = STATE(186), + [sym__list_item_dash] = STATE(415), + [sym__list_plus] = STATE(186), + [sym__list_item_plus] = STATE(406), + [sym__list_star] = STATE(186), + [sym__list_item_star] = STATE(408), + [sym__list_task] = STATE(186), + [sym__list_item_task] = STATE(391), [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(699), - [sym__list_item_definition] = STATE(582), - [sym__list_decimal_period] = STATE(699), - [sym__list_item_decimal_period] = STATE(581), - [sym__list_decimal_paren] = STATE(699), - [sym__list_item_decimal_paren] = STATE(579), - [sym__list_decimal_parens] = STATE(699), + [sym__list_definition] = STATE(186), + [sym__list_item_definition] = STATE(570), + [sym__list_decimal_period] = STATE(186), + [sym__list_item_decimal_period] = STATE(573), + [sym__list_decimal_paren] = STATE(186), + [sym__list_item_decimal_paren] = STATE(575), + [sym__list_decimal_parens] = STATE(186), [sym__list_item_decimal_parens] = STATE(578), - [sym__list_lower_alpha_period] = STATE(699), - [sym__list_item_lower_alpha_period] = STATE(577), - [sym__list_lower_alpha_paren] = STATE(699), - [sym__list_item_lower_alpha_paren] = STATE(576), - [sym__list_lower_alpha_parens] = STATE(699), - [sym__list_item_lower_alpha_parens] = STATE(575), - [sym__list_upper_alpha_period] = STATE(699), - [sym__list_item_upper_alpha_period] = STATE(574), - [sym__list_upper_alpha_paren] = STATE(699), - [sym__list_item_upper_alpha_paren] = STATE(573), - [sym__list_upper_alpha_parens] = STATE(699), - [sym__list_item_upper_alpha_parens] = STATE(572), - [sym__list_lower_roman_period] = STATE(699), - [sym__list_item_lower_roman_period] = STATE(571), - [sym__list_lower_roman_paren] = STATE(699), - [sym__list_item_lower_roman_paren] = STATE(570), - [sym__list_lower_roman_parens] = STATE(699), - [sym__list_item_lower_roman_parens] = STATE(569), - [sym__list_upper_roman_period] = STATE(699), - [sym__list_item_upper_roman_period] = STATE(568), - [sym__list_upper_roman_paren] = STATE(699), - [sym__list_item_upper_roman_paren] = STATE(567), - [sym__list_upper_roman_parens] = STATE(699), - [sym__list_item_upper_roman_parens] = STATE(566), - [sym_list_item_content] = STATE(657), - [sym_table] = STATE(446), - [sym__table_content] = STATE(289), - [sym_table_separator] = STATE(289), - [sym_table_row] = STATE(363), - [sym_footnote] = STATE(446), - [sym_div] = STATE(446), - [sym_div_marker_begin] = STATE(941), - [sym_code_block] = STATE(446), - [sym_raw_block] = STATE(446), - [sym_thematic_break] = STATE(446), - [sym_block_quote] = STATE(446), - [sym__block_quote_prefix] = STATE(288), - [sym_link_reference_definition] = STATE(446), - [sym_block_attribute] = STATE(446), - [sym__paragraph] = STATE(446), - [sym__paragraph_content] = STATE(764), - [sym__inline] = STATE(703), - [sym__symbol_fallback] = STATE(366), - [aux_sym__list_dash_repeat1] = STATE(413), - [aux_sym__list_plus_repeat1] = STATE(418), - [aux_sym__list_star_repeat1] = STATE(417), - [aux_sym__list_task_repeat1] = STATE(381), - [aux_sym__list_definition_repeat1] = STATE(582), - [aux_sym__list_decimal_period_repeat1] = STATE(581), - [aux_sym__list_decimal_paren_repeat1] = STATE(579), + [sym__list_lower_alpha_period] = STATE(186), + [sym__list_item_lower_alpha_period] = STATE(495), + [sym__list_lower_alpha_paren] = STATE(186), + [sym__list_item_lower_alpha_paren] = STATE(583), + [sym__list_lower_alpha_parens] = STATE(186), + [sym__list_item_lower_alpha_parens] = STATE(494), + [sym__list_upper_alpha_period] = STATE(186), + [sym__list_item_upper_alpha_period] = STATE(584), + [sym__list_upper_alpha_paren] = STATE(186), + [sym__list_item_upper_alpha_paren] = STATE(586), + [sym__list_upper_alpha_parens] = STATE(186), + [sym__list_item_upper_alpha_parens] = STATE(587), + [sym__list_lower_roman_period] = STATE(186), + [sym__list_item_lower_roman_period] = STATE(588), + [sym__list_lower_roman_paren] = STATE(186), + [sym__list_item_lower_roman_paren] = STATE(590), + [sym__list_lower_roman_parens] = STATE(186), + [sym__list_item_lower_roman_parens] = STATE(591), + [sym__list_upper_roman_period] = STATE(186), + [sym__list_item_upper_roman_period] = STATE(592), + [sym__list_upper_roman_paren] = STATE(186), + [sym__list_item_upper_roman_paren] = STATE(596), + [sym__list_upper_roman_parens] = STATE(186), + [sym__list_item_upper_roman_parens] = STATE(597), + [sym_table] = STATE(181), + [sym__table_content] = STATE(64), + [sym_table_separator] = STATE(64), + [sym_table_row] = STATE(72), + [sym_footnote] = STATE(181), + [sym_footnote_marker_begin] = STATE(1084), + [sym_div] = STATE(181), + [sym_div_marker_begin] = STATE(996), + [sym_code_block] = STATE(181), + [sym_raw_block] = STATE(181), + [sym_thematic_break] = STATE(181), + [sym_block_quote] = STATE(181), + [sym__block_quote_prefix] = STATE(287), + [sym_link_reference_definition] = STATE(181), + [sym_block_attribute] = STATE(181), + [sym__paragraph] = STATE(181), + [sym__paragraph_content] = STATE(811), + [sym__inline] = STATE(710), + [sym__symbol_fallback] = STATE(355), + [aux_sym__list_dash_repeat1] = STATE(415), + [aux_sym__list_plus_repeat1] = STATE(406), + [aux_sym__list_star_repeat1] = STATE(408), + [aux_sym__list_task_repeat1] = STATE(391), + [aux_sym__list_definition_repeat1] = STATE(570), + [aux_sym__list_decimal_period_repeat1] = STATE(573), + [aux_sym__list_decimal_paren_repeat1] = STATE(575), [aux_sym__list_decimal_parens_repeat1] = STATE(578), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(577), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(576), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(575), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(574), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(573), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(572), - [aux_sym__list_lower_roman_period_repeat1] = STATE(571), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(570), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(569), - [aux_sym__list_upper_roman_period_repeat1] = STATE(568), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(567), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(566), - [aux_sym_table_repeat1] = STATE(289), - [aux_sym__block_quote_prefix_repeat1] = STATE(323), - [aux_sym__inline_repeat1] = STATE(366), - [anon_sym_LBRACK] = ACTIONS(395), - [anon_sym_PIPE] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(399), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__newline] = ACTIONS(431), - [sym__heading_begin] = ACTIONS(403), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(405), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(407), - [sym__block_quote_continuation] = ACTIONS(409), - [sym__thematic_break_dash] = ACTIONS(411), - [sym__thematic_break_star] = ACTIONS(411), - [sym__footnote_begin] = ACTIONS(413), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(495), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(583), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(494), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(584), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(586), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(587), + [aux_sym__list_lower_roman_period_repeat1] = STATE(588), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(590), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(591), + [aux_sym__list_upper_roman_period_repeat1] = STATE(592), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(596), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(597), + [aux_sym_table_repeat1] = STATE(64), + [aux_sym__block_quote_prefix_repeat1] = STATE(316), + [aux_sym__inline_repeat1] = STATE(355), + [anon_sym_LBRACK] = ACTIONS(443), + [anon_sym_PIPE] = ACTIONS(443), + [anon_sym_LBRACK_CARET] = ACTIONS(443), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_DOT] = ACTIONS(443), + [aux_sym_identifier_token1] = ACTIONS(443), + [aux_sym__inline_token1] = ACTIONS(443), + [anon_sym_LBRACE_DASH] = ACTIONS(443), + [anon_sym_POUND] = ACTIONS(443), + [anon_sym_PERCENT] = ACTIONS(443), + [sym__block_close] = ACTIONS(445), + [sym__newline] = ACTIONS(447), + [sym__heading_begin] = ACTIONS(19), + [sym__div_begin] = ACTIONS(21), + [sym__code_block_begin] = ACTIONS(81), + [sym_list_marker_dash] = ACTIONS(445), + [sym_list_marker_star] = ACTIONS(445), + [sym_list_marker_plus] = ACTIONS(445), + [sym__list_marker_task_begin] = ACTIONS(445), + [sym_list_marker_definition] = ACTIONS(33), + [sym_list_marker_decimal_period] = ACTIONS(35), + [sym_list_marker_lower_alpha_period] = ACTIONS(37), + [sym_list_marker_upper_alpha_period] = ACTIONS(39), + [sym_list_marker_lower_roman_period] = ACTIONS(41), + [sym_list_marker_upper_roman_period] = ACTIONS(43), + [sym_list_marker_decimal_paren] = ACTIONS(45), + [sym_list_marker_lower_alpha_paren] = ACTIONS(47), + [sym_list_marker_upper_alpha_paren] = ACTIONS(49), + [sym_list_marker_lower_roman_paren] = ACTIONS(51), + [sym_list_marker_upper_roman_paren] = ACTIONS(53), + [sym_list_marker_decimal_parens] = ACTIONS(55), + [sym_list_marker_lower_alpha_parens] = ACTIONS(57), + [sym_list_marker_upper_alpha_parens] = ACTIONS(59), + [sym_list_marker_lower_roman_parens] = ACTIONS(61), + [sym_list_marker_upper_roman_parens] = ACTIONS(63), + [sym__block_quote_begin] = ACTIONS(83), + [sym__block_quote_continuation] = ACTIONS(445), + [sym__thematic_break_dash] = ACTIONS(85), + [sym__thematic_break_star] = ACTIONS(85), }, - [44] = { - [sym__block_with_heading] = STATE(459), - [sym__block_element] = STATE(459), - [sym_heading] = STATE(459), - [sym_list] = STATE(459), - [sym__list_dash] = STATE(699), - [sym__list_item_dash] = STATE(413), - [sym__list_plus] = STATE(699), - [sym__list_item_plus] = STATE(418), - [sym__list_star] = STATE(699), - [sym__list_item_star] = STATE(417), - [sym__list_task] = STATE(699), - [sym__list_item_task] = STATE(381), + [55] = { + [sym__block_element] = STATE(491), + [sym_heading] = STATE(491), + [sym_list] = STATE(491), + [sym__list_dash] = STATE(891), + [sym__list_item_dash] = STATE(418), + [sym__list_plus] = STATE(891), + [sym__list_item_plus] = STATE(417), + [sym__list_star] = STATE(891), + [sym__list_item_star] = STATE(416), + [sym__list_task] = STATE(891), + [sym__list_item_task] = STATE(390), [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(699), - [sym__list_item_definition] = STATE(582), - [sym__list_decimal_period] = STATE(699), - [sym__list_item_decimal_period] = STATE(581), - [sym__list_decimal_paren] = STATE(699), - [sym__list_item_decimal_paren] = STATE(579), - [sym__list_decimal_parens] = STATE(699), - [sym__list_item_decimal_parens] = STATE(578), - [sym__list_lower_alpha_period] = STATE(699), - [sym__list_item_lower_alpha_period] = STATE(577), - [sym__list_lower_alpha_paren] = STATE(699), - [sym__list_item_lower_alpha_paren] = STATE(576), - [sym__list_lower_alpha_parens] = STATE(699), - [sym__list_item_lower_alpha_parens] = STATE(575), - [sym__list_upper_alpha_period] = STATE(699), - [sym__list_item_upper_alpha_period] = STATE(574), - [sym__list_upper_alpha_paren] = STATE(699), - [sym__list_item_upper_alpha_paren] = STATE(573), - [sym__list_upper_alpha_parens] = STATE(699), - [sym__list_item_upper_alpha_parens] = STATE(572), - [sym__list_lower_roman_period] = STATE(699), - [sym__list_item_lower_roman_period] = STATE(571), - [sym__list_lower_roman_paren] = STATE(699), - [sym__list_item_lower_roman_paren] = STATE(570), - [sym__list_lower_roman_parens] = STATE(699), - [sym__list_item_lower_roman_parens] = STATE(569), - [sym__list_upper_roman_period] = STATE(699), - [sym__list_item_upper_roman_period] = STATE(568), - [sym__list_upper_roman_paren] = STATE(699), - [sym__list_item_upper_roman_paren] = STATE(567), - [sym__list_upper_roman_parens] = STATE(699), - [sym__list_item_upper_roman_parens] = STATE(566), - [sym_list_item_content] = STATE(817), - [sym_table] = STATE(459), - [sym__table_content] = STATE(289), - [sym_table_separator] = STATE(289), - [sym_table_row] = STATE(363), - [sym_footnote] = STATE(459), - [sym_div] = STATE(459), - [sym_div_marker_begin] = STATE(941), - [sym_code_block] = STATE(459), - [sym_raw_block] = STATE(459), - [sym_thematic_break] = STATE(459), - [sym_block_quote] = STATE(459), + [sym__list_definition] = STATE(891), + [sym__list_item_definition] = STATE(532), + [sym__list_decimal_period] = STATE(891), + [sym__list_item_decimal_period] = STATE(534), + [sym__list_decimal_paren] = STATE(891), + [sym__list_item_decimal_paren] = STATE(535), + [sym__list_decimal_parens] = STATE(891), + [sym__list_item_decimal_parens] = STATE(536), + [sym__list_lower_alpha_period] = STATE(891), + [sym__list_item_lower_alpha_period] = STATE(537), + [sym__list_lower_alpha_paren] = STATE(891), + [sym__list_item_lower_alpha_paren] = STATE(541), + [sym__list_lower_alpha_parens] = STATE(891), + [sym__list_item_lower_alpha_parens] = STATE(542), + [sym__list_upper_alpha_period] = STATE(891), + [sym__list_item_upper_alpha_period] = STATE(543), + [sym__list_upper_alpha_paren] = STATE(891), + [sym__list_item_upper_alpha_paren] = STATE(556), + [sym__list_upper_alpha_parens] = STATE(891), + [sym__list_item_upper_alpha_parens] = STATE(560), + [sym__list_lower_roman_period] = STATE(891), + [sym__list_item_lower_roman_period] = STATE(561), + [sym__list_lower_roman_paren] = STATE(891), + [sym__list_item_lower_roman_paren] = STATE(563), + [sym__list_lower_roman_parens] = STATE(891), + [sym__list_item_lower_roman_parens] = STATE(564), + [sym__list_upper_roman_period] = STATE(891), + [sym__list_item_upper_roman_period] = STATE(565), + [sym__list_upper_roman_paren] = STATE(891), + [sym__list_item_upper_roman_paren] = STATE(566), + [sym__list_upper_roman_parens] = STATE(891), + [sym__list_item_upper_roman_parens] = STATE(568), + [sym_table] = STATE(491), + [sym__table_content] = STATE(369), + [sym_table_separator] = STATE(369), + [sym_table_row] = STATE(384), + [sym_footnote] = STATE(491), + [sym_footnote_marker_begin] = STATE(1082), + [sym_div] = STATE(491), + [sym_div_marker_begin] = STATE(974), + [sym_code_block] = STATE(491), + [sym_raw_block] = STATE(491), + [sym_thematic_break] = STATE(491), + [sym_block_quote] = STATE(491), + [sym__block_quote_content] = STATE(942), [sym__block_quote_prefix] = STATE(288), - [sym_link_reference_definition] = STATE(459), - [sym_block_attribute] = STATE(459), - [sym__paragraph] = STATE(459), - [sym__paragraph_content] = STATE(764), - [sym__inline] = STATE(703), - [sym__symbol_fallback] = STATE(366), - [aux_sym__list_dash_repeat1] = STATE(413), - [aux_sym__list_plus_repeat1] = STATE(418), - [aux_sym__list_star_repeat1] = STATE(417), - [aux_sym__list_task_repeat1] = STATE(381), - [aux_sym__list_definition_repeat1] = STATE(582), - [aux_sym__list_decimal_period_repeat1] = STATE(581), - [aux_sym__list_decimal_paren_repeat1] = STATE(579), - [aux_sym__list_decimal_parens_repeat1] = STATE(578), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(577), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(576), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(575), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(574), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(573), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(572), - [aux_sym__list_lower_roman_period_repeat1] = STATE(571), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(570), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(569), - [aux_sym__list_upper_roman_period_repeat1] = STATE(568), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(567), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(566), - [aux_sym_table_repeat1] = STATE(289), - [aux_sym__block_quote_prefix_repeat1] = STATE(323), - [aux_sym__inline_repeat1] = STATE(366), - [anon_sym_LBRACK] = ACTIONS(395), - [anon_sym_PIPE] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(399), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__newline] = ACTIONS(441), - [sym__heading_begin] = ACTIONS(403), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(405), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(407), - [sym__block_quote_continuation] = ACTIONS(409), - [sym__thematic_break_dash] = ACTIONS(411), - [sym__thematic_break_star] = ACTIONS(411), - [sym__footnote_begin] = ACTIONS(413), + [sym_link_reference_definition] = STATE(491), + [sym_block_attribute] = STATE(491), + [sym__paragraph] = STATE(491), + [sym__paragraph_content] = STATE(754), + [sym__inline] = STATE(710), + [sym__symbol_fallback] = STATE(355), + [aux_sym__list_dash_repeat1] = STATE(418), + [aux_sym__list_plus_repeat1] = STATE(417), + [aux_sym__list_star_repeat1] = STATE(416), + [aux_sym__list_task_repeat1] = STATE(390), + [aux_sym__list_definition_repeat1] = STATE(532), + [aux_sym__list_decimal_period_repeat1] = STATE(534), + [aux_sym__list_decimal_paren_repeat1] = STATE(535), + [aux_sym__list_decimal_parens_repeat1] = STATE(536), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(537), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(541), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(542), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(543), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(556), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(560), + [aux_sym__list_lower_roman_period_repeat1] = STATE(561), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(563), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(564), + [aux_sym__list_upper_roman_period_repeat1] = STATE(565), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(566), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(568), + [aux_sym_table_repeat1] = STATE(369), + [aux_sym__block_quote_prefix_repeat1] = STATE(316), + [aux_sym__inline_repeat1] = STATE(355), + [anon_sym_LBRACK] = ACTIONS(449), + [anon_sym_PIPE] = ACTIONS(451), + [anon_sym_LBRACK_CARET] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(453), + [anon_sym_DOT] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(13), + [aux_sym__inline_token1] = ACTIONS(13), + [anon_sym_LBRACE_DASH] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(13), + [anon_sym_PERCENT] = ACTIONS(13), + [sym__heading_begin] = ACTIONS(455), + [sym__div_begin] = ACTIONS(21), + [sym__code_block_begin] = ACTIONS(457), + [sym_list_marker_dash] = ACTIONS(25), + [sym_list_marker_star] = ACTIONS(27), + [sym_list_marker_plus] = ACTIONS(29), + [sym__list_marker_task_begin] = ACTIONS(31), + [sym_list_marker_definition] = ACTIONS(33), + [sym_list_marker_decimal_period] = ACTIONS(35), + [sym_list_marker_lower_alpha_period] = ACTIONS(37), + [sym_list_marker_upper_alpha_period] = ACTIONS(39), + [sym_list_marker_lower_roman_period] = ACTIONS(41), + [sym_list_marker_upper_roman_period] = ACTIONS(43), + [sym_list_marker_decimal_paren] = ACTIONS(45), + [sym_list_marker_lower_alpha_paren] = ACTIONS(47), + [sym_list_marker_upper_alpha_paren] = ACTIONS(49), + [sym_list_marker_lower_roman_paren] = ACTIONS(51), + [sym_list_marker_upper_roman_paren] = ACTIONS(53), + [sym_list_marker_decimal_parens] = ACTIONS(55), + [sym_list_marker_lower_alpha_parens] = ACTIONS(57), + [sym_list_marker_upper_alpha_parens] = ACTIONS(59), + [sym_list_marker_lower_roman_parens] = ACTIONS(61), + [sym_list_marker_upper_roman_parens] = ACTIONS(63), + [sym__block_quote_begin] = ACTIONS(459), + [sym__block_quote_continuation] = ACTIONS(67), + [sym__thematic_break_dash] = ACTIONS(461), + [sym__thematic_break_star] = ACTIONS(461), }, - [45] = { - [sym__block_with_heading] = STATE(437), - [sym__block_element] = STATE(437), - [sym_heading] = STATE(437), - [sym_list] = STATE(437), - [sym__list_dash] = STATE(699), - [sym__list_item_dash] = STATE(413), - [sym__list_plus] = STATE(699), - [sym__list_item_plus] = STATE(418), - [sym__list_star] = STATE(699), - [sym__list_item_star] = STATE(417), - [sym__list_task] = STATE(699), - [sym__list_item_task] = STATE(381), + [56] = { + [sym__block_element] = STATE(491), + [sym_heading] = STATE(491), + [sym_list] = STATE(491), + [sym__list_dash] = STATE(891), + [sym__list_item_dash] = STATE(418), + [sym__list_plus] = STATE(891), + [sym__list_item_plus] = STATE(417), + [sym__list_star] = STATE(891), + [sym__list_item_star] = STATE(416), + [sym__list_task] = STATE(891), + [sym__list_item_task] = STATE(390), [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(699), - [sym__list_item_definition] = STATE(582), - [sym__list_decimal_period] = STATE(699), - [sym__list_item_decimal_period] = STATE(581), - [sym__list_decimal_paren] = STATE(699), - [sym__list_item_decimal_paren] = STATE(579), - [sym__list_decimal_parens] = STATE(699), - [sym__list_item_decimal_parens] = STATE(578), - [sym__list_lower_alpha_period] = STATE(699), - [sym__list_item_lower_alpha_period] = STATE(577), - [sym__list_lower_alpha_paren] = STATE(699), - [sym__list_item_lower_alpha_paren] = STATE(576), - [sym__list_lower_alpha_parens] = STATE(699), - [sym__list_item_lower_alpha_parens] = STATE(575), - [sym__list_upper_alpha_period] = STATE(699), - [sym__list_item_upper_alpha_period] = STATE(574), - [sym__list_upper_alpha_paren] = STATE(699), - [sym__list_item_upper_alpha_paren] = STATE(573), - [sym__list_upper_alpha_parens] = STATE(699), - [sym__list_item_upper_alpha_parens] = STATE(572), - [sym__list_lower_roman_period] = STATE(699), - [sym__list_item_lower_roman_period] = STATE(571), - [sym__list_lower_roman_paren] = STATE(699), - [sym__list_item_lower_roman_paren] = STATE(570), - [sym__list_lower_roman_parens] = STATE(699), - [sym__list_item_lower_roman_parens] = STATE(569), - [sym__list_upper_roman_period] = STATE(699), - [sym__list_item_upper_roman_period] = STATE(568), - [sym__list_upper_roman_paren] = STATE(699), - [sym__list_item_upper_roman_paren] = STATE(567), - [sym__list_upper_roman_parens] = STATE(699), - [sym__list_item_upper_roman_parens] = STATE(566), - [sym_list_item_content] = STATE(682), - [sym_table] = STATE(437), - [sym__table_content] = STATE(289), - [sym_table_separator] = STATE(289), - [sym_table_row] = STATE(363), - [sym_footnote] = STATE(437), - [sym_div] = STATE(437), - [sym_div_marker_begin] = STATE(941), - [sym_code_block] = STATE(437), - [sym_raw_block] = STATE(437), - [sym_thematic_break] = STATE(437), - [sym_block_quote] = STATE(437), + [sym__list_definition] = STATE(891), + [sym__list_item_definition] = STATE(532), + [sym__list_decimal_period] = STATE(891), + [sym__list_item_decimal_period] = STATE(534), + [sym__list_decimal_paren] = STATE(891), + [sym__list_item_decimal_paren] = STATE(535), + [sym__list_decimal_parens] = STATE(891), + [sym__list_item_decimal_parens] = STATE(536), + [sym__list_lower_alpha_period] = STATE(891), + [sym__list_item_lower_alpha_period] = STATE(537), + [sym__list_lower_alpha_paren] = STATE(891), + [sym__list_item_lower_alpha_paren] = STATE(541), + [sym__list_lower_alpha_parens] = STATE(891), + [sym__list_item_lower_alpha_parens] = STATE(542), + [sym__list_upper_alpha_period] = STATE(891), + [sym__list_item_upper_alpha_period] = STATE(543), + [sym__list_upper_alpha_paren] = STATE(891), + [sym__list_item_upper_alpha_paren] = STATE(556), + [sym__list_upper_alpha_parens] = STATE(891), + [sym__list_item_upper_alpha_parens] = STATE(560), + [sym__list_lower_roman_period] = STATE(891), + [sym__list_item_lower_roman_period] = STATE(561), + [sym__list_lower_roman_paren] = STATE(891), + [sym__list_item_lower_roman_paren] = STATE(563), + [sym__list_lower_roman_parens] = STATE(891), + [sym__list_item_lower_roman_parens] = STATE(564), + [sym__list_upper_roman_period] = STATE(891), + [sym__list_item_upper_roman_period] = STATE(565), + [sym__list_upper_roman_paren] = STATE(891), + [sym__list_item_upper_roman_paren] = STATE(566), + [sym__list_upper_roman_parens] = STATE(891), + [sym__list_item_upper_roman_parens] = STATE(568), + [sym_table] = STATE(491), + [sym__table_content] = STATE(369), + [sym_table_separator] = STATE(369), + [sym_table_row] = STATE(384), + [sym_footnote] = STATE(491), + [sym_footnote_marker_begin] = STATE(1082), + [sym_div] = STATE(491), + [sym_div_marker_begin] = STATE(974), + [sym_code_block] = STATE(491), + [sym_raw_block] = STATE(491), + [sym_thematic_break] = STATE(491), + [sym_block_quote] = STATE(491), + [sym__block_quote_content] = STATE(1016), [sym__block_quote_prefix] = STATE(288), - [sym_link_reference_definition] = STATE(437), - [sym_block_attribute] = STATE(437), - [sym__paragraph] = STATE(437), - [sym__paragraph_content] = STATE(764), - [sym__inline] = STATE(703), - [sym__symbol_fallback] = STATE(366), - [aux_sym__list_dash_repeat1] = STATE(413), - [aux_sym__list_plus_repeat1] = STATE(418), - [aux_sym__list_star_repeat1] = STATE(417), - [aux_sym__list_task_repeat1] = STATE(381), - [aux_sym__list_definition_repeat1] = STATE(582), - [aux_sym__list_decimal_period_repeat1] = STATE(581), - [aux_sym__list_decimal_paren_repeat1] = STATE(579), - [aux_sym__list_decimal_parens_repeat1] = STATE(578), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(577), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(576), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(575), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(574), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(573), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(572), - [aux_sym__list_lower_roman_period_repeat1] = STATE(571), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(570), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(569), - [aux_sym__list_upper_roman_period_repeat1] = STATE(568), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(567), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(566), - [aux_sym_table_repeat1] = STATE(289), - [aux_sym__block_quote_prefix_repeat1] = STATE(323), - [aux_sym__inline_repeat1] = STATE(366), - [anon_sym_LBRACK] = ACTIONS(395), - [anon_sym_PIPE] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(399), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__newline] = ACTIONS(443), - [sym__heading_begin] = ACTIONS(403), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(405), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(407), - [sym__block_quote_continuation] = ACTIONS(409), - [sym__thematic_break_dash] = ACTIONS(411), - [sym__thematic_break_star] = ACTIONS(411), - [sym__footnote_begin] = ACTIONS(413), + [sym_link_reference_definition] = STATE(491), + [sym_block_attribute] = STATE(491), + [sym__paragraph] = STATE(491), + [sym__paragraph_content] = STATE(754), + [sym__inline] = STATE(710), + [sym__symbol_fallback] = STATE(355), + [aux_sym__list_dash_repeat1] = STATE(418), + [aux_sym__list_plus_repeat1] = STATE(417), + [aux_sym__list_star_repeat1] = STATE(416), + [aux_sym__list_task_repeat1] = STATE(390), + [aux_sym__list_definition_repeat1] = STATE(532), + [aux_sym__list_decimal_period_repeat1] = STATE(534), + [aux_sym__list_decimal_paren_repeat1] = STATE(535), + [aux_sym__list_decimal_parens_repeat1] = STATE(536), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(537), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(541), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(542), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(543), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(556), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(560), + [aux_sym__list_lower_roman_period_repeat1] = STATE(561), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(563), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(564), + [aux_sym__list_upper_roman_period_repeat1] = STATE(565), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(566), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(568), + [aux_sym_table_repeat1] = STATE(369), + [aux_sym__block_quote_prefix_repeat1] = STATE(316), + [aux_sym__inline_repeat1] = STATE(355), + [anon_sym_LBRACK] = ACTIONS(449), + [anon_sym_PIPE] = ACTIONS(451), + [anon_sym_LBRACK_CARET] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(453), + [anon_sym_DOT] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(13), + [aux_sym__inline_token1] = ACTIONS(13), + [anon_sym_LBRACE_DASH] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(13), + [anon_sym_PERCENT] = ACTIONS(13), + [sym__heading_begin] = ACTIONS(455), + [sym__div_begin] = ACTIONS(21), + [sym__code_block_begin] = ACTIONS(457), + [sym_list_marker_dash] = ACTIONS(25), + [sym_list_marker_star] = ACTIONS(27), + [sym_list_marker_plus] = ACTIONS(29), + [sym__list_marker_task_begin] = ACTIONS(31), + [sym_list_marker_definition] = ACTIONS(33), + [sym_list_marker_decimal_period] = ACTIONS(35), + [sym_list_marker_lower_alpha_period] = ACTIONS(37), + [sym_list_marker_upper_alpha_period] = ACTIONS(39), + [sym_list_marker_lower_roman_period] = ACTIONS(41), + [sym_list_marker_upper_roman_period] = ACTIONS(43), + [sym_list_marker_decimal_paren] = ACTIONS(45), + [sym_list_marker_lower_alpha_paren] = ACTIONS(47), + [sym_list_marker_upper_alpha_paren] = ACTIONS(49), + [sym_list_marker_lower_roman_paren] = ACTIONS(51), + [sym_list_marker_upper_roman_paren] = ACTIONS(53), + [sym_list_marker_decimal_parens] = ACTIONS(55), + [sym_list_marker_lower_alpha_parens] = ACTIONS(57), + [sym_list_marker_upper_alpha_parens] = ACTIONS(59), + [sym_list_marker_lower_roman_parens] = ACTIONS(61), + [sym_list_marker_upper_roman_parens] = ACTIONS(63), + [sym__block_quote_begin] = ACTIONS(459), + [sym__block_quote_continuation] = ACTIONS(67), + [sym__thematic_break_dash] = ACTIONS(461), + [sym__thematic_break_star] = ACTIONS(461), }, - [46] = { - [sym__block_with_heading] = STATE(475), - [sym__block_element] = STATE(475), - [sym_heading] = STATE(475), - [sym_list] = STATE(475), - [sym__list_dash] = STATE(699), - [sym__list_item_dash] = STATE(413), - [sym__list_plus] = STATE(699), - [sym__list_item_plus] = STATE(418), - [sym__list_star] = STATE(699), - [sym__list_item_star] = STATE(417), - [sym__list_task] = STATE(699), - [sym__list_item_task] = STATE(381), + [57] = { + [sym__block_element] = STATE(239), + [sym_heading] = STATE(239), + [sym_list] = STATE(239), + [sym__list_dash] = STATE(153), + [sym__list_item_dash] = STATE(409), + [sym__list_plus] = STATE(153), + [sym__list_item_plus] = STATE(410), + [sym__list_star] = STATE(153), + [sym__list_item_star] = STATE(407), + [sym__list_task] = STATE(153), + [sym__list_item_task] = STATE(396), [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(699), - [sym__list_item_definition] = STATE(582), - [sym__list_decimal_period] = STATE(699), - [sym__list_item_decimal_period] = STATE(581), - [sym__list_decimal_paren] = STATE(699), - [sym__list_item_decimal_paren] = STATE(579), - [sym__list_decimal_parens] = STATE(699), - [sym__list_item_decimal_parens] = STATE(578), - [sym__list_lower_alpha_period] = STATE(699), - [sym__list_item_lower_alpha_period] = STATE(577), - [sym__list_lower_alpha_paren] = STATE(699), - [sym__list_item_lower_alpha_paren] = STATE(576), - [sym__list_lower_alpha_parens] = STATE(699), - [sym__list_item_lower_alpha_parens] = STATE(575), - [sym__list_upper_alpha_period] = STATE(699), - [sym__list_item_upper_alpha_period] = STATE(574), - [sym__list_upper_alpha_paren] = STATE(699), - [sym__list_item_upper_alpha_paren] = STATE(573), - [sym__list_upper_alpha_parens] = STATE(699), - [sym__list_item_upper_alpha_parens] = STATE(572), - [sym__list_lower_roman_period] = STATE(699), - [sym__list_item_lower_roman_period] = STATE(571), - [sym__list_lower_roman_paren] = STATE(699), - [sym__list_item_lower_roman_paren] = STATE(570), - [sym__list_lower_roman_parens] = STATE(699), - [sym__list_item_lower_roman_parens] = STATE(569), - [sym__list_upper_roman_period] = STATE(699), - [sym__list_item_upper_roman_period] = STATE(568), - [sym__list_upper_roman_paren] = STATE(699), - [sym__list_item_upper_roman_paren] = STATE(567), - [sym__list_upper_roman_parens] = STATE(699), - [sym__list_item_upper_roman_parens] = STATE(566), - [sym_list_item_content] = STATE(686), - [sym_table] = STATE(475), - [sym__table_content] = STATE(289), - [sym_table_separator] = STATE(289), - [sym_table_row] = STATE(363), - [sym_footnote] = STATE(475), - [sym_div] = STATE(475), - [sym_div_marker_begin] = STATE(941), - [sym_code_block] = STATE(475), - [sym_raw_block] = STATE(475), - [sym_thematic_break] = STATE(475), - [sym_block_quote] = STATE(475), + [sym__list_definition] = STATE(153), + [sym__list_item_definition] = STATE(602), + [sym__list_decimal_period] = STATE(153), + [sym__list_item_decimal_period] = STATE(603), + [sym__list_decimal_paren] = STATE(153), + [sym__list_item_decimal_paren] = STATE(604), + [sym__list_decimal_parens] = STATE(153), + [sym__list_item_decimal_parens] = STATE(605), + [sym__list_lower_alpha_period] = STATE(153), + [sym__list_item_lower_alpha_period] = STATE(606), + [sym__list_lower_alpha_paren] = STATE(153), + [sym__list_item_lower_alpha_paren] = STATE(607), + [sym__list_lower_alpha_parens] = STATE(153), + [sym__list_item_lower_alpha_parens] = STATE(608), + [sym__list_upper_alpha_period] = STATE(153), + [sym__list_item_upper_alpha_period] = STATE(609), + [sym__list_upper_alpha_paren] = STATE(153), + [sym__list_item_upper_alpha_paren] = STATE(610), + [sym__list_upper_alpha_parens] = STATE(153), + [sym__list_item_upper_alpha_parens] = STATE(611), + [sym__list_lower_roman_period] = STATE(153), + [sym__list_item_lower_roman_period] = STATE(612), + [sym__list_lower_roman_paren] = STATE(153), + [sym__list_item_lower_roman_paren] = STATE(613), + [sym__list_lower_roman_parens] = STATE(153), + [sym__list_item_lower_roman_parens] = STATE(595), + [sym__list_upper_roman_period] = STATE(153), + [sym__list_item_upper_roman_period] = STATE(581), + [sym__list_upper_roman_paren] = STATE(153), + [sym__list_item_upper_roman_paren] = STATE(559), + [sym__list_upper_roman_parens] = STATE(153), + [sym__list_item_upper_roman_parens] = STATE(558), + [sym_table] = STATE(239), + [sym__table_content] = STATE(66), + [sym_table_separator] = STATE(66), + [sym_table_row] = STATE(71), + [sym_footnote] = STATE(239), + [sym_footnote_marker_begin] = STATE(1086), + [sym_div] = STATE(239), + [sym_div_marker_begin] = STATE(1017), + [sym_code_block] = STATE(239), + [sym_raw_block] = STATE(239), + [sym_thematic_break] = STATE(239), + [sym_block_quote] = STATE(239), + [sym__block_quote_prefix] = STATE(286), + [sym_link_reference_definition] = STATE(239), + [sym_block_attribute] = STATE(239), + [sym__paragraph] = STATE(239), + [sym__paragraph_content] = STATE(867), + [sym__inline] = STATE(710), + [sym__symbol_fallback] = STATE(355), + [aux_sym__list_dash_repeat1] = STATE(409), + [aux_sym__list_plus_repeat1] = STATE(410), + [aux_sym__list_star_repeat1] = STATE(407), + [aux_sym__list_task_repeat1] = STATE(396), + [aux_sym__list_definition_repeat1] = STATE(602), + [aux_sym__list_decimal_period_repeat1] = STATE(603), + [aux_sym__list_decimal_paren_repeat1] = STATE(604), + [aux_sym__list_decimal_parens_repeat1] = STATE(605), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(606), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(607), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(608), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(609), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(610), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(611), + [aux_sym__list_lower_roman_period_repeat1] = STATE(612), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(613), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(595), + [aux_sym__list_upper_roman_period_repeat1] = STATE(581), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(559), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(558), + [aux_sym_table_repeat1] = STATE(66), + [aux_sym__block_quote_prefix_repeat1] = STATE(316), + [aux_sym__inline_repeat1] = STATE(355), + [anon_sym_LBRACK] = ACTIONS(443), + [anon_sym_PIPE] = ACTIONS(443), + [anon_sym_LBRACK_CARET] = ACTIONS(443), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_DOT] = ACTIONS(443), + [aux_sym_identifier_token1] = ACTIONS(443), + [aux_sym__inline_token1] = ACTIONS(443), + [anon_sym_LBRACE_DASH] = ACTIONS(443), + [anon_sym_POUND] = ACTIONS(443), + [anon_sym_PERCENT] = ACTIONS(443), + [sym__newline] = ACTIONS(463), + [sym__heading_begin] = ACTIONS(224), + [sym__div_begin] = ACTIONS(21), + [sym__code_block_begin] = ACTIONS(226), + [sym_list_marker_dash] = ACTIONS(445), + [sym_list_marker_star] = ACTIONS(445), + [sym_list_marker_plus] = ACTIONS(445), + [sym__list_marker_task_begin] = ACTIONS(445), + [sym_list_marker_definition] = ACTIONS(33), + [sym_list_marker_decimal_period] = ACTIONS(35), + [sym_list_marker_lower_alpha_period] = ACTIONS(37), + [sym_list_marker_upper_alpha_period] = ACTIONS(39), + [sym_list_marker_lower_roman_period] = ACTIONS(41), + [sym_list_marker_upper_roman_period] = ACTIONS(43), + [sym_list_marker_decimal_paren] = ACTIONS(45), + [sym_list_marker_lower_alpha_paren] = ACTIONS(47), + [sym_list_marker_upper_alpha_paren] = ACTIONS(49), + [sym_list_marker_lower_roman_paren] = ACTIONS(51), + [sym_list_marker_upper_roman_paren] = ACTIONS(53), + [sym_list_marker_decimal_parens] = ACTIONS(55), + [sym_list_marker_lower_alpha_parens] = ACTIONS(57), + [sym_list_marker_upper_alpha_parens] = ACTIONS(59), + [sym_list_marker_lower_roman_parens] = ACTIONS(61), + [sym_list_marker_upper_roman_parens] = ACTIONS(63), + [sym__block_quote_begin] = ACTIONS(228), + [sym__block_quote_continuation] = ACTIONS(445), + [sym__thematic_break_dash] = ACTIONS(232), + [sym__thematic_break_star] = ACTIONS(232), + }, + [58] = { + [sym__block_element] = STATE(491), + [sym_heading] = STATE(491), + [sym_list] = STATE(491), + [sym__list_dash] = STATE(891), + [sym__list_item_dash] = STATE(418), + [sym__list_plus] = STATE(891), + [sym__list_item_plus] = STATE(417), + [sym__list_star] = STATE(891), + [sym__list_item_star] = STATE(416), + [sym__list_task] = STATE(891), + [sym__list_item_task] = STATE(390), + [sym_list_marker_task] = STATE(38), + [sym__list_definition] = STATE(891), + [sym__list_item_definition] = STATE(532), + [sym__list_decimal_period] = STATE(891), + [sym__list_item_decimal_period] = STATE(534), + [sym__list_decimal_paren] = STATE(891), + [sym__list_item_decimal_paren] = STATE(535), + [sym__list_decimal_parens] = STATE(891), + [sym__list_item_decimal_parens] = STATE(536), + [sym__list_lower_alpha_period] = STATE(891), + [sym__list_item_lower_alpha_period] = STATE(537), + [sym__list_lower_alpha_paren] = STATE(891), + [sym__list_item_lower_alpha_paren] = STATE(541), + [sym__list_lower_alpha_parens] = STATE(891), + [sym__list_item_lower_alpha_parens] = STATE(542), + [sym__list_upper_alpha_period] = STATE(891), + [sym__list_item_upper_alpha_period] = STATE(543), + [sym__list_upper_alpha_paren] = STATE(891), + [sym__list_item_upper_alpha_paren] = STATE(556), + [sym__list_upper_alpha_parens] = STATE(891), + [sym__list_item_upper_alpha_parens] = STATE(560), + [sym__list_lower_roman_period] = STATE(891), + [sym__list_item_lower_roman_period] = STATE(561), + [sym__list_lower_roman_paren] = STATE(891), + [sym__list_item_lower_roman_paren] = STATE(563), + [sym__list_lower_roman_parens] = STATE(891), + [sym__list_item_lower_roman_parens] = STATE(564), + [sym__list_upper_roman_period] = STATE(891), + [sym__list_item_upper_roman_period] = STATE(565), + [sym__list_upper_roman_paren] = STATE(891), + [sym__list_item_upper_roman_paren] = STATE(566), + [sym__list_upper_roman_parens] = STATE(891), + [sym__list_item_upper_roman_parens] = STATE(568), + [sym_table] = STATE(491), + [sym__table_content] = STATE(369), + [sym_table_separator] = STATE(369), + [sym_table_row] = STATE(384), + [sym_footnote] = STATE(491), + [sym_footnote_marker_begin] = STATE(1082), + [sym_div] = STATE(491), + [sym_div_marker_begin] = STATE(974), + [sym_code_block] = STATE(491), + [sym_raw_block] = STATE(491), + [sym_thematic_break] = STATE(491), + [sym_block_quote] = STATE(491), + [sym__block_quote_content] = STATE(1070), [sym__block_quote_prefix] = STATE(288), - [sym_link_reference_definition] = STATE(475), - [sym_block_attribute] = STATE(475), - [sym__paragraph] = STATE(475), - [sym__paragraph_content] = STATE(764), - [sym__inline] = STATE(703), - [sym__symbol_fallback] = STATE(366), - [aux_sym__list_dash_repeat1] = STATE(413), - [aux_sym__list_plus_repeat1] = STATE(418), - [aux_sym__list_star_repeat1] = STATE(417), - [aux_sym__list_task_repeat1] = STATE(381), - [aux_sym__list_definition_repeat1] = STATE(582), - [aux_sym__list_decimal_period_repeat1] = STATE(581), - [aux_sym__list_decimal_paren_repeat1] = STATE(579), - [aux_sym__list_decimal_parens_repeat1] = STATE(578), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(577), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(576), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(575), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(574), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(573), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(572), - [aux_sym__list_lower_roman_period_repeat1] = STATE(571), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(570), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(569), - [aux_sym__list_upper_roman_period_repeat1] = STATE(568), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(567), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(566), - [aux_sym_table_repeat1] = STATE(289), - [aux_sym__block_quote_prefix_repeat1] = STATE(323), - [aux_sym__inline_repeat1] = STATE(366), - [anon_sym_LBRACK] = ACTIONS(395), - [anon_sym_PIPE] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(399), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__newline] = ACTIONS(445), - [sym__heading_begin] = ACTIONS(403), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(405), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(407), - [sym__block_quote_continuation] = ACTIONS(409), - [sym__thematic_break_dash] = ACTIONS(411), - [sym__thematic_break_star] = ACTIONS(411), - [sym__footnote_begin] = ACTIONS(413), + [sym_link_reference_definition] = STATE(491), + [sym_block_attribute] = STATE(491), + [sym__paragraph] = STATE(491), + [sym__paragraph_content] = STATE(754), + [sym__inline] = STATE(710), + [sym__symbol_fallback] = STATE(355), + [aux_sym__list_dash_repeat1] = STATE(418), + [aux_sym__list_plus_repeat1] = STATE(417), + [aux_sym__list_star_repeat1] = STATE(416), + [aux_sym__list_task_repeat1] = STATE(390), + [aux_sym__list_definition_repeat1] = STATE(532), + [aux_sym__list_decimal_period_repeat1] = STATE(534), + [aux_sym__list_decimal_paren_repeat1] = STATE(535), + [aux_sym__list_decimal_parens_repeat1] = STATE(536), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(537), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(541), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(542), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(543), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(556), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(560), + [aux_sym__list_lower_roman_period_repeat1] = STATE(561), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(563), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(564), + [aux_sym__list_upper_roman_period_repeat1] = STATE(565), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(566), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(568), + [aux_sym_table_repeat1] = STATE(369), + [aux_sym__block_quote_prefix_repeat1] = STATE(316), + [aux_sym__inline_repeat1] = STATE(355), + [anon_sym_LBRACK] = ACTIONS(449), + [anon_sym_PIPE] = ACTIONS(451), + [anon_sym_LBRACK_CARET] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(453), + [anon_sym_DOT] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(13), + [aux_sym__inline_token1] = ACTIONS(13), + [anon_sym_LBRACE_DASH] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(13), + [anon_sym_PERCENT] = ACTIONS(13), + [sym__heading_begin] = ACTIONS(455), + [sym__div_begin] = ACTIONS(21), + [sym__code_block_begin] = ACTIONS(457), + [sym_list_marker_dash] = ACTIONS(25), + [sym_list_marker_star] = ACTIONS(27), + [sym_list_marker_plus] = ACTIONS(29), + [sym__list_marker_task_begin] = ACTIONS(31), + [sym_list_marker_definition] = ACTIONS(33), + [sym_list_marker_decimal_period] = ACTIONS(35), + [sym_list_marker_lower_alpha_period] = ACTIONS(37), + [sym_list_marker_upper_alpha_period] = ACTIONS(39), + [sym_list_marker_lower_roman_period] = ACTIONS(41), + [sym_list_marker_upper_roman_period] = ACTIONS(43), + [sym_list_marker_decimal_paren] = ACTIONS(45), + [sym_list_marker_lower_alpha_paren] = ACTIONS(47), + [sym_list_marker_upper_alpha_paren] = ACTIONS(49), + [sym_list_marker_lower_roman_paren] = ACTIONS(51), + [sym_list_marker_upper_roman_paren] = ACTIONS(53), + [sym_list_marker_decimal_parens] = ACTIONS(55), + [sym_list_marker_lower_alpha_parens] = ACTIONS(57), + [sym_list_marker_upper_alpha_parens] = ACTIONS(59), + [sym_list_marker_lower_roman_parens] = ACTIONS(61), + [sym_list_marker_upper_roman_parens] = ACTIONS(63), + [sym__block_quote_begin] = ACTIONS(459), + [sym__block_quote_continuation] = ACTIONS(67), + [sym__thematic_break_dash] = ACTIONS(461), + [sym__thematic_break_star] = ACTIONS(461), }, - [47] = { - [sym__block_with_heading] = STATE(455), - [sym__block_element] = STATE(455), - [sym_heading] = STATE(455), - [sym_list] = STATE(455), - [sym__list_dash] = STATE(699), - [sym__list_item_dash] = STATE(413), - [sym__list_plus] = STATE(699), - [sym__list_item_plus] = STATE(418), - [sym__list_star] = STATE(699), - [sym__list_item_star] = STATE(417), - [sym__list_task] = STATE(699), - [sym__list_item_task] = STATE(381), + [59] = { + [sym__block_element] = STATE(491), + [sym_heading] = STATE(491), + [sym_list] = STATE(491), + [sym__list_dash] = STATE(891), + [sym__list_item_dash] = STATE(418), + [sym__list_plus] = STATE(891), + [sym__list_item_plus] = STATE(417), + [sym__list_star] = STATE(891), + [sym__list_item_star] = STATE(416), + [sym__list_task] = STATE(891), + [sym__list_item_task] = STATE(390), [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(699), - [sym__list_item_definition] = STATE(582), - [sym__list_decimal_period] = STATE(699), - [sym__list_item_decimal_period] = STATE(581), - [sym__list_decimal_paren] = STATE(699), - [sym__list_item_decimal_paren] = STATE(579), - [sym__list_decimal_parens] = STATE(699), - [sym__list_item_decimal_parens] = STATE(578), - [sym__list_lower_alpha_period] = STATE(699), - [sym__list_item_lower_alpha_period] = STATE(577), - [sym__list_lower_alpha_paren] = STATE(699), - [sym__list_item_lower_alpha_paren] = STATE(576), - [sym__list_lower_alpha_parens] = STATE(699), - [sym__list_item_lower_alpha_parens] = STATE(575), - [sym__list_upper_alpha_period] = STATE(699), - [sym__list_item_upper_alpha_period] = STATE(574), - [sym__list_upper_alpha_paren] = STATE(699), - [sym__list_item_upper_alpha_paren] = STATE(573), - [sym__list_upper_alpha_parens] = STATE(699), - [sym__list_item_upper_alpha_parens] = STATE(572), - [sym__list_lower_roman_period] = STATE(699), - [sym__list_item_lower_roman_period] = STATE(571), - [sym__list_lower_roman_paren] = STATE(699), - [sym__list_item_lower_roman_paren] = STATE(570), - [sym__list_lower_roman_parens] = STATE(699), - [sym__list_item_lower_roman_parens] = STATE(569), - [sym__list_upper_roman_period] = STATE(699), - [sym__list_item_upper_roman_period] = STATE(568), - [sym__list_upper_roman_paren] = STATE(699), - [sym__list_item_upper_roman_paren] = STATE(567), - [sym__list_upper_roman_parens] = STATE(699), - [sym__list_item_upper_roman_parens] = STATE(566), - [sym_list_item_content] = STATE(820), - [sym_table] = STATE(455), - [sym__table_content] = STATE(289), - [sym_table_separator] = STATE(289), - [sym_table_row] = STATE(363), - [sym_footnote] = STATE(455), - [sym_div] = STATE(455), - [sym_div_marker_begin] = STATE(941), - [sym_code_block] = STATE(455), - [sym_raw_block] = STATE(455), - [sym_thematic_break] = STATE(455), - [sym_block_quote] = STATE(455), + [sym__list_definition] = STATE(891), + [sym__list_item_definition] = STATE(532), + [sym__list_decimal_period] = STATE(891), + [sym__list_item_decimal_period] = STATE(534), + [sym__list_decimal_paren] = STATE(891), + [sym__list_item_decimal_paren] = STATE(535), + [sym__list_decimal_parens] = STATE(891), + [sym__list_item_decimal_parens] = STATE(536), + [sym__list_lower_alpha_period] = STATE(891), + [sym__list_item_lower_alpha_period] = STATE(537), + [sym__list_lower_alpha_paren] = STATE(891), + [sym__list_item_lower_alpha_paren] = STATE(541), + [sym__list_lower_alpha_parens] = STATE(891), + [sym__list_item_lower_alpha_parens] = STATE(542), + [sym__list_upper_alpha_period] = STATE(891), + [sym__list_item_upper_alpha_period] = STATE(543), + [sym__list_upper_alpha_paren] = STATE(891), + [sym__list_item_upper_alpha_paren] = STATE(556), + [sym__list_upper_alpha_parens] = STATE(891), + [sym__list_item_upper_alpha_parens] = STATE(560), + [sym__list_lower_roman_period] = STATE(891), + [sym__list_item_lower_roman_period] = STATE(561), + [sym__list_lower_roman_paren] = STATE(891), + [sym__list_item_lower_roman_paren] = STATE(563), + [sym__list_lower_roman_parens] = STATE(891), + [sym__list_item_lower_roman_parens] = STATE(564), + [sym__list_upper_roman_period] = STATE(891), + [sym__list_item_upper_roman_period] = STATE(565), + [sym__list_upper_roman_paren] = STATE(891), + [sym__list_item_upper_roman_paren] = STATE(566), + [sym__list_upper_roman_parens] = STATE(891), + [sym__list_item_upper_roman_parens] = STATE(568), + [sym_table] = STATE(491), + [sym__table_content] = STATE(369), + [sym_table_separator] = STATE(369), + [sym_table_row] = STATE(384), + [sym_footnote] = STATE(491), + [sym_footnote_marker_begin] = STATE(1082), + [sym_div] = STATE(491), + [sym_div_marker_begin] = STATE(974), + [sym_code_block] = STATE(491), + [sym_raw_block] = STATE(491), + [sym_thematic_break] = STATE(491), + [sym_block_quote] = STATE(491), + [sym__block_quote_content] = STATE(1001), [sym__block_quote_prefix] = STATE(288), - [sym_link_reference_definition] = STATE(455), - [sym_block_attribute] = STATE(455), - [sym__paragraph] = STATE(455), - [sym__paragraph_content] = STATE(764), - [sym__inline] = STATE(703), - [sym__symbol_fallback] = STATE(366), - [aux_sym__list_dash_repeat1] = STATE(413), - [aux_sym__list_plus_repeat1] = STATE(418), - [aux_sym__list_star_repeat1] = STATE(417), - [aux_sym__list_task_repeat1] = STATE(381), - [aux_sym__list_definition_repeat1] = STATE(582), - [aux_sym__list_decimal_period_repeat1] = STATE(581), - [aux_sym__list_decimal_paren_repeat1] = STATE(579), - [aux_sym__list_decimal_parens_repeat1] = STATE(578), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(577), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(576), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(575), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(574), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(573), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(572), - [aux_sym__list_lower_roman_period_repeat1] = STATE(571), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(570), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(569), - [aux_sym__list_upper_roman_period_repeat1] = STATE(568), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(567), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(566), - [aux_sym_table_repeat1] = STATE(289), - [aux_sym__block_quote_prefix_repeat1] = STATE(323), - [aux_sym__inline_repeat1] = STATE(366), - [anon_sym_LBRACK] = ACTIONS(395), - [anon_sym_PIPE] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(399), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__newline] = ACTIONS(447), - [sym__heading_begin] = ACTIONS(403), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(405), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(407), - [sym__block_quote_continuation] = ACTIONS(409), - [sym__thematic_break_dash] = ACTIONS(411), - [sym__thematic_break_star] = ACTIONS(411), - [sym__footnote_begin] = ACTIONS(413), + [sym_link_reference_definition] = STATE(491), + [sym_block_attribute] = STATE(491), + [sym__paragraph] = STATE(491), + [sym__paragraph_content] = STATE(754), + [sym__inline] = STATE(710), + [sym__symbol_fallback] = STATE(355), + [aux_sym__list_dash_repeat1] = STATE(418), + [aux_sym__list_plus_repeat1] = STATE(417), + [aux_sym__list_star_repeat1] = STATE(416), + [aux_sym__list_task_repeat1] = STATE(390), + [aux_sym__list_definition_repeat1] = STATE(532), + [aux_sym__list_decimal_period_repeat1] = STATE(534), + [aux_sym__list_decimal_paren_repeat1] = STATE(535), + [aux_sym__list_decimal_parens_repeat1] = STATE(536), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(537), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(541), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(542), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(543), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(556), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(560), + [aux_sym__list_lower_roman_period_repeat1] = STATE(561), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(563), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(564), + [aux_sym__list_upper_roman_period_repeat1] = STATE(565), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(566), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(568), + [aux_sym_table_repeat1] = STATE(369), + [aux_sym__block_quote_prefix_repeat1] = STATE(316), + [aux_sym__inline_repeat1] = STATE(355), + [anon_sym_LBRACK] = ACTIONS(449), + [anon_sym_PIPE] = ACTIONS(451), + [anon_sym_LBRACK_CARET] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(453), + [anon_sym_DOT] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(13), + [aux_sym__inline_token1] = ACTIONS(13), + [anon_sym_LBRACE_DASH] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(13), + [anon_sym_PERCENT] = ACTIONS(13), + [sym__heading_begin] = ACTIONS(455), + [sym__div_begin] = ACTIONS(21), + [sym__code_block_begin] = ACTIONS(457), + [sym_list_marker_dash] = ACTIONS(25), + [sym_list_marker_star] = ACTIONS(27), + [sym_list_marker_plus] = ACTIONS(29), + [sym__list_marker_task_begin] = ACTIONS(31), + [sym_list_marker_definition] = ACTIONS(33), + [sym_list_marker_decimal_period] = ACTIONS(35), + [sym_list_marker_lower_alpha_period] = ACTIONS(37), + [sym_list_marker_upper_alpha_period] = ACTIONS(39), + [sym_list_marker_lower_roman_period] = ACTIONS(41), + [sym_list_marker_upper_roman_period] = ACTIONS(43), + [sym_list_marker_decimal_paren] = ACTIONS(45), + [sym_list_marker_lower_alpha_paren] = ACTIONS(47), + [sym_list_marker_upper_alpha_paren] = ACTIONS(49), + [sym_list_marker_lower_roman_paren] = ACTIONS(51), + [sym_list_marker_upper_roman_paren] = ACTIONS(53), + [sym_list_marker_decimal_parens] = ACTIONS(55), + [sym_list_marker_lower_alpha_parens] = ACTIONS(57), + [sym_list_marker_upper_alpha_parens] = ACTIONS(59), + [sym_list_marker_lower_roman_parens] = ACTIONS(61), + [sym_list_marker_upper_roman_parens] = ACTIONS(63), + [sym__block_quote_begin] = ACTIONS(459), + [sym__block_quote_continuation] = ACTIONS(67), + [sym__thematic_break_dash] = ACTIONS(461), + [sym__thematic_break_star] = ACTIONS(461), }, - [48] = { - [sym__block_with_heading] = STATE(437), - [sym__block_element] = STATE(437), - [sym_heading] = STATE(437), - [sym_list] = STATE(437), - [sym__list_dash] = STATE(699), - [sym__list_item_dash] = STATE(413), - [sym__list_plus] = STATE(699), - [sym__list_item_plus] = STATE(418), - [sym__list_star] = STATE(699), - [sym__list_item_star] = STATE(417), - [sym__list_task] = STATE(699), - [sym__list_item_task] = STATE(381), + [60] = { + [sym__block_element] = STATE(181), + [sym_heading] = STATE(181), + [sym_list] = STATE(181), + [sym__list_dash] = STATE(186), + [sym__list_item_dash] = STATE(415), + [sym__list_plus] = STATE(186), + [sym__list_item_plus] = STATE(406), + [sym__list_star] = STATE(186), + [sym__list_item_star] = STATE(408), + [sym__list_task] = STATE(186), + [sym__list_item_task] = STATE(391), [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(699), - [sym__list_item_definition] = STATE(582), - [sym__list_decimal_period] = STATE(699), - [sym__list_item_decimal_period] = STATE(581), - [sym__list_decimal_paren] = STATE(699), - [sym__list_item_decimal_paren] = STATE(579), - [sym__list_decimal_parens] = STATE(699), + [sym__list_definition] = STATE(186), + [sym__list_item_definition] = STATE(570), + [sym__list_decimal_period] = STATE(186), + [sym__list_item_decimal_period] = STATE(573), + [sym__list_decimal_paren] = STATE(186), + [sym__list_item_decimal_paren] = STATE(575), + [sym__list_decimal_parens] = STATE(186), [sym__list_item_decimal_parens] = STATE(578), - [sym__list_lower_alpha_period] = STATE(699), - [sym__list_item_lower_alpha_period] = STATE(577), - [sym__list_lower_alpha_paren] = STATE(699), - [sym__list_item_lower_alpha_paren] = STATE(576), - [sym__list_lower_alpha_parens] = STATE(699), - [sym__list_item_lower_alpha_parens] = STATE(575), - [sym__list_upper_alpha_period] = STATE(699), - [sym__list_item_upper_alpha_period] = STATE(574), - [sym__list_upper_alpha_paren] = STATE(699), - [sym__list_item_upper_alpha_paren] = STATE(573), - [sym__list_upper_alpha_parens] = STATE(699), - [sym__list_item_upper_alpha_parens] = STATE(572), - [sym__list_lower_roman_period] = STATE(699), - [sym__list_item_lower_roman_period] = STATE(571), - [sym__list_lower_roman_paren] = STATE(699), - [sym__list_item_lower_roman_paren] = STATE(570), - [sym__list_lower_roman_parens] = STATE(699), - [sym__list_item_lower_roman_parens] = STATE(569), - [sym__list_upper_roman_period] = STATE(699), - [sym__list_item_upper_roman_period] = STATE(568), - [sym__list_upper_roman_paren] = STATE(699), - [sym__list_item_upper_roman_paren] = STATE(567), - [sym__list_upper_roman_parens] = STATE(699), - [sym__list_item_upper_roman_parens] = STATE(566), - [sym_list_item_content] = STATE(658), - [sym_table] = STATE(437), - [sym__table_content] = STATE(289), - [sym_table_separator] = STATE(289), - [sym_table_row] = STATE(363), - [sym_footnote] = STATE(437), - [sym_div] = STATE(437), - [sym_div_marker_begin] = STATE(941), - [sym_code_block] = STATE(437), - [sym_raw_block] = STATE(437), - [sym_thematic_break] = STATE(437), - [sym_block_quote] = STATE(437), - [sym__block_quote_prefix] = STATE(288), - [sym_link_reference_definition] = STATE(437), - [sym_block_attribute] = STATE(437), - [sym__paragraph] = STATE(437), - [sym__paragraph_content] = STATE(764), - [sym__inline] = STATE(703), - [sym__symbol_fallback] = STATE(366), - [aux_sym__list_dash_repeat1] = STATE(413), - [aux_sym__list_plus_repeat1] = STATE(418), - [aux_sym__list_star_repeat1] = STATE(417), - [aux_sym__list_task_repeat1] = STATE(381), - [aux_sym__list_definition_repeat1] = STATE(582), - [aux_sym__list_decimal_period_repeat1] = STATE(581), - [aux_sym__list_decimal_paren_repeat1] = STATE(579), + [sym__list_lower_alpha_period] = STATE(186), + [sym__list_item_lower_alpha_period] = STATE(495), + [sym__list_lower_alpha_paren] = STATE(186), + [sym__list_item_lower_alpha_paren] = STATE(583), + [sym__list_lower_alpha_parens] = STATE(186), + [sym__list_item_lower_alpha_parens] = STATE(494), + [sym__list_upper_alpha_period] = STATE(186), + [sym__list_item_upper_alpha_period] = STATE(584), + [sym__list_upper_alpha_paren] = STATE(186), + [sym__list_item_upper_alpha_paren] = STATE(586), + [sym__list_upper_alpha_parens] = STATE(186), + [sym__list_item_upper_alpha_parens] = STATE(587), + [sym__list_lower_roman_period] = STATE(186), + [sym__list_item_lower_roman_period] = STATE(588), + [sym__list_lower_roman_paren] = STATE(186), + [sym__list_item_lower_roman_paren] = STATE(590), + [sym__list_lower_roman_parens] = STATE(186), + [sym__list_item_lower_roman_parens] = STATE(591), + [sym__list_upper_roman_period] = STATE(186), + [sym__list_item_upper_roman_period] = STATE(592), + [sym__list_upper_roman_paren] = STATE(186), + [sym__list_item_upper_roman_paren] = STATE(596), + [sym__list_upper_roman_parens] = STATE(186), + [sym__list_item_upper_roman_parens] = STATE(597), + [sym_table] = STATE(181), + [sym__table_content] = STATE(64), + [sym_table_separator] = STATE(64), + [sym_table_row] = STATE(72), + [sym_footnote] = STATE(181), + [sym_footnote_marker_begin] = STATE(1084), + [sym_div] = STATE(181), + [sym_div_marker_begin] = STATE(996), + [sym_code_block] = STATE(181), + [sym_raw_block] = STATE(181), + [sym_thematic_break] = STATE(181), + [sym_block_quote] = STATE(181), + [sym__block_quote_prefix] = STATE(287), + [sym_link_reference_definition] = STATE(181), + [sym_block_attribute] = STATE(181), + [sym__paragraph] = STATE(181), + [sym__paragraph_content] = STATE(811), + [sym__inline] = STATE(710), + [sym__symbol_fallback] = STATE(355), + [aux_sym__list_dash_repeat1] = STATE(415), + [aux_sym__list_plus_repeat1] = STATE(406), + [aux_sym__list_star_repeat1] = STATE(408), + [aux_sym__list_task_repeat1] = STATE(391), + [aux_sym__list_definition_repeat1] = STATE(570), + [aux_sym__list_decimal_period_repeat1] = STATE(573), + [aux_sym__list_decimal_paren_repeat1] = STATE(575), [aux_sym__list_decimal_parens_repeat1] = STATE(578), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(577), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(576), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(575), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(574), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(573), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(572), - [aux_sym__list_lower_roman_period_repeat1] = STATE(571), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(570), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(569), - [aux_sym__list_upper_roman_period_repeat1] = STATE(568), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(567), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(566), - [aux_sym_table_repeat1] = STATE(289), - [aux_sym__block_quote_prefix_repeat1] = STATE(323), - [aux_sym__inline_repeat1] = STATE(366), - [anon_sym_LBRACK] = ACTIONS(395), - [anon_sym_PIPE] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(399), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__newline] = ACTIONS(443), - [sym__heading_begin] = ACTIONS(403), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(405), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(407), - [sym__block_quote_continuation] = ACTIONS(409), - [sym__thematic_break_dash] = ACTIONS(411), - [sym__thematic_break_star] = ACTIONS(411), - [sym__footnote_begin] = ACTIONS(413), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(495), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(583), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(494), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(584), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(586), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(587), + [aux_sym__list_lower_roman_period_repeat1] = STATE(588), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(590), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(591), + [aux_sym__list_upper_roman_period_repeat1] = STATE(592), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(596), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(597), + [aux_sym_table_repeat1] = STATE(64), + [aux_sym__block_quote_prefix_repeat1] = STATE(316), + [aux_sym__inline_repeat1] = STATE(355), + [anon_sym_LBRACK] = ACTIONS(443), + [anon_sym_PIPE] = ACTIONS(443), + [anon_sym_LBRACK_CARET] = ACTIONS(443), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_DOT] = ACTIONS(443), + [aux_sym_identifier_token1] = ACTIONS(443), + [aux_sym__inline_token1] = ACTIONS(443), + [anon_sym_LBRACE_DASH] = ACTIONS(443), + [anon_sym_POUND] = ACTIONS(443), + [anon_sym_PERCENT] = ACTIONS(443), + [sym__newline] = ACTIONS(447), + [sym__heading_begin] = ACTIONS(19), + [sym__div_begin] = ACTIONS(21), + [sym__code_block_begin] = ACTIONS(81), + [sym_list_marker_dash] = ACTIONS(445), + [sym_list_marker_star] = ACTIONS(445), + [sym_list_marker_plus] = ACTIONS(445), + [sym__list_marker_task_begin] = ACTIONS(445), + [sym_list_marker_definition] = ACTIONS(33), + [sym_list_marker_decimal_period] = ACTIONS(35), + [sym_list_marker_lower_alpha_period] = ACTIONS(37), + [sym_list_marker_upper_alpha_period] = ACTIONS(39), + [sym_list_marker_lower_roman_period] = ACTIONS(41), + [sym_list_marker_upper_roman_period] = ACTIONS(43), + [sym_list_marker_decimal_paren] = ACTIONS(45), + [sym_list_marker_lower_alpha_paren] = ACTIONS(47), + [sym_list_marker_upper_alpha_paren] = ACTIONS(49), + [sym_list_marker_lower_roman_paren] = ACTIONS(51), + [sym_list_marker_upper_roman_paren] = ACTIONS(53), + [sym_list_marker_decimal_parens] = ACTIONS(55), + [sym_list_marker_lower_alpha_parens] = ACTIONS(57), + [sym_list_marker_upper_alpha_parens] = ACTIONS(59), + [sym_list_marker_lower_roman_parens] = ACTIONS(61), + [sym_list_marker_upper_roman_parens] = ACTIONS(63), + [sym__block_quote_begin] = ACTIONS(83), + [sym__block_quote_continuation] = ACTIONS(445), + [sym__thematic_break_dash] = ACTIONS(85), + [sym__thematic_break_star] = ACTIONS(85), }, - [49] = { - [sym__block_with_heading] = STATE(475), - [sym__block_element] = STATE(475), - [sym_heading] = STATE(475), - [sym_list] = STATE(475), - [sym__list_dash] = STATE(699), - [sym__list_item_dash] = STATE(413), - [sym__list_plus] = STATE(699), - [sym__list_item_plus] = STATE(418), - [sym__list_star] = STATE(699), - [sym__list_item_star] = STATE(417), - [sym__list_task] = STATE(699), - [sym__list_item_task] = STATE(381), + [61] = { + [sym__block_element] = STATE(491), + [sym_heading] = STATE(491), + [sym_list] = STATE(491), + [sym__list_dash] = STATE(891), + [sym__list_item_dash] = STATE(418), + [sym__list_plus] = STATE(891), + [sym__list_item_plus] = STATE(417), + [sym__list_star] = STATE(891), + [sym__list_item_star] = STATE(416), + [sym__list_task] = STATE(891), + [sym__list_item_task] = STATE(390), [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(699), - [sym__list_item_definition] = STATE(582), - [sym__list_decimal_period] = STATE(699), - [sym__list_item_decimal_period] = STATE(581), - [sym__list_decimal_paren] = STATE(699), - [sym__list_item_decimal_paren] = STATE(579), - [sym__list_decimal_parens] = STATE(699), - [sym__list_item_decimal_parens] = STATE(578), - [sym__list_lower_alpha_period] = STATE(699), - [sym__list_item_lower_alpha_period] = STATE(577), - [sym__list_lower_alpha_paren] = STATE(699), - [sym__list_item_lower_alpha_paren] = STATE(576), - [sym__list_lower_alpha_parens] = STATE(699), - [sym__list_item_lower_alpha_parens] = STATE(575), - [sym__list_upper_alpha_period] = STATE(699), - [sym__list_item_upper_alpha_period] = STATE(574), - [sym__list_upper_alpha_paren] = STATE(699), - [sym__list_item_upper_alpha_paren] = STATE(573), - [sym__list_upper_alpha_parens] = STATE(699), - [sym__list_item_upper_alpha_parens] = STATE(572), - [sym__list_lower_roman_period] = STATE(699), - [sym__list_item_lower_roman_period] = STATE(571), - [sym__list_lower_roman_paren] = STATE(699), - [sym__list_item_lower_roman_paren] = STATE(570), - [sym__list_lower_roman_parens] = STATE(699), - [sym__list_item_lower_roman_parens] = STATE(569), - [sym__list_upper_roman_period] = STATE(699), - [sym__list_item_upper_roman_period] = STATE(568), - [sym__list_upper_roman_paren] = STATE(699), - [sym__list_item_upper_roman_paren] = STATE(567), - [sym__list_upper_roman_parens] = STATE(699), - [sym__list_item_upper_roman_parens] = STATE(566), - [sym_list_item_content] = STATE(659), - [sym_table] = STATE(475), - [sym__table_content] = STATE(289), - [sym_table_separator] = STATE(289), - [sym_table_row] = STATE(363), - [sym_footnote] = STATE(475), - [sym_div] = STATE(475), - [sym_div_marker_begin] = STATE(941), - [sym_code_block] = STATE(475), - [sym_raw_block] = STATE(475), - [sym_thematic_break] = STATE(475), - [sym_block_quote] = STATE(475), + [sym__list_definition] = STATE(891), + [sym__list_item_definition] = STATE(532), + [sym__list_decimal_period] = STATE(891), + [sym__list_item_decimal_period] = STATE(534), + [sym__list_decimal_paren] = STATE(891), + [sym__list_item_decimal_paren] = STATE(535), + [sym__list_decimal_parens] = STATE(891), + [sym__list_item_decimal_parens] = STATE(536), + [sym__list_lower_alpha_period] = STATE(891), + [sym__list_item_lower_alpha_period] = STATE(537), + [sym__list_lower_alpha_paren] = STATE(891), + [sym__list_item_lower_alpha_paren] = STATE(541), + [sym__list_lower_alpha_parens] = STATE(891), + [sym__list_item_lower_alpha_parens] = STATE(542), + [sym__list_upper_alpha_period] = STATE(891), + [sym__list_item_upper_alpha_period] = STATE(543), + [sym__list_upper_alpha_paren] = STATE(891), + [sym__list_item_upper_alpha_paren] = STATE(556), + [sym__list_upper_alpha_parens] = STATE(891), + [sym__list_item_upper_alpha_parens] = STATE(560), + [sym__list_lower_roman_period] = STATE(891), + [sym__list_item_lower_roman_period] = STATE(561), + [sym__list_lower_roman_paren] = STATE(891), + [sym__list_item_lower_roman_paren] = STATE(563), + [sym__list_lower_roman_parens] = STATE(891), + [sym__list_item_lower_roman_parens] = STATE(564), + [sym__list_upper_roman_period] = STATE(891), + [sym__list_item_upper_roman_period] = STATE(565), + [sym__list_upper_roman_paren] = STATE(891), + [sym__list_item_upper_roman_paren] = STATE(566), + [sym__list_upper_roman_parens] = STATE(891), + [sym__list_item_upper_roman_parens] = STATE(568), + [sym_table] = STATE(491), + [sym__table_content] = STATE(369), + [sym_table_separator] = STATE(369), + [sym_table_row] = STATE(384), + [sym_footnote] = STATE(491), + [sym_footnote_marker_begin] = STATE(1082), + [sym_div] = STATE(491), + [sym_div_marker_begin] = STATE(974), + [sym_code_block] = STATE(491), + [sym_raw_block] = STATE(491), + [sym_thematic_break] = STATE(491), + [sym_block_quote] = STATE(491), + [sym__block_quote_content] = STATE(977), [sym__block_quote_prefix] = STATE(288), - [sym_link_reference_definition] = STATE(475), - [sym_block_attribute] = STATE(475), - [sym__paragraph] = STATE(475), - [sym__paragraph_content] = STATE(764), - [sym__inline] = STATE(703), - [sym__symbol_fallback] = STATE(366), - [aux_sym__list_dash_repeat1] = STATE(413), - [aux_sym__list_plus_repeat1] = STATE(418), - [aux_sym__list_star_repeat1] = STATE(417), - [aux_sym__list_task_repeat1] = STATE(381), - [aux_sym__list_definition_repeat1] = STATE(582), - [aux_sym__list_decimal_period_repeat1] = STATE(581), - [aux_sym__list_decimal_paren_repeat1] = STATE(579), - [aux_sym__list_decimal_parens_repeat1] = STATE(578), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(577), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(576), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(575), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(574), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(573), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(572), - [aux_sym__list_lower_roman_period_repeat1] = STATE(571), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(570), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(569), - [aux_sym__list_upper_roman_period_repeat1] = STATE(568), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(567), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(566), - [aux_sym_table_repeat1] = STATE(289), - [aux_sym__block_quote_prefix_repeat1] = STATE(323), - [aux_sym__inline_repeat1] = STATE(366), - [anon_sym_LBRACK] = ACTIONS(395), - [anon_sym_PIPE] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(399), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__newline] = ACTIONS(445), - [sym__heading_begin] = ACTIONS(403), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(405), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(407), - [sym__block_quote_continuation] = ACTIONS(409), - [sym__thematic_break_dash] = ACTIONS(411), - [sym__thematic_break_star] = ACTIONS(411), - [sym__footnote_begin] = ACTIONS(413), + [sym_link_reference_definition] = STATE(491), + [sym_block_attribute] = STATE(491), + [sym__paragraph] = STATE(491), + [sym__paragraph_content] = STATE(754), + [sym__inline] = STATE(710), + [sym__symbol_fallback] = STATE(355), + [aux_sym__list_dash_repeat1] = STATE(418), + [aux_sym__list_plus_repeat1] = STATE(417), + [aux_sym__list_star_repeat1] = STATE(416), + [aux_sym__list_task_repeat1] = STATE(390), + [aux_sym__list_definition_repeat1] = STATE(532), + [aux_sym__list_decimal_period_repeat1] = STATE(534), + [aux_sym__list_decimal_paren_repeat1] = STATE(535), + [aux_sym__list_decimal_parens_repeat1] = STATE(536), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(537), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(541), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(542), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(543), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(556), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(560), + [aux_sym__list_lower_roman_period_repeat1] = STATE(561), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(563), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(564), + [aux_sym__list_upper_roman_period_repeat1] = STATE(565), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(566), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(568), + [aux_sym_table_repeat1] = STATE(369), + [aux_sym__block_quote_prefix_repeat1] = STATE(316), + [aux_sym__inline_repeat1] = STATE(355), + [anon_sym_LBRACK] = ACTIONS(449), + [anon_sym_PIPE] = ACTIONS(451), + [anon_sym_LBRACK_CARET] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(453), + [anon_sym_DOT] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(13), + [aux_sym__inline_token1] = ACTIONS(13), + [anon_sym_LBRACE_DASH] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(13), + [anon_sym_PERCENT] = ACTIONS(13), + [sym__heading_begin] = ACTIONS(455), + [sym__div_begin] = ACTIONS(21), + [sym__code_block_begin] = ACTIONS(457), + [sym_list_marker_dash] = ACTIONS(25), + [sym_list_marker_star] = ACTIONS(27), + [sym_list_marker_plus] = ACTIONS(29), + [sym__list_marker_task_begin] = ACTIONS(31), + [sym_list_marker_definition] = ACTIONS(33), + [sym_list_marker_decimal_period] = ACTIONS(35), + [sym_list_marker_lower_alpha_period] = ACTIONS(37), + [sym_list_marker_upper_alpha_period] = ACTIONS(39), + [sym_list_marker_lower_roman_period] = ACTIONS(41), + [sym_list_marker_upper_roman_period] = ACTIONS(43), + [sym_list_marker_decimal_paren] = ACTIONS(45), + [sym_list_marker_lower_alpha_paren] = ACTIONS(47), + [sym_list_marker_upper_alpha_paren] = ACTIONS(49), + [sym_list_marker_lower_roman_paren] = ACTIONS(51), + [sym_list_marker_upper_roman_paren] = ACTIONS(53), + [sym_list_marker_decimal_parens] = ACTIONS(55), + [sym_list_marker_lower_alpha_parens] = ACTIONS(57), + [sym_list_marker_upper_alpha_parens] = ACTIONS(59), + [sym_list_marker_lower_roman_parens] = ACTIONS(61), + [sym_list_marker_upper_roman_parens] = ACTIONS(63), + [sym__block_quote_begin] = ACTIONS(459), + [sym__block_quote_continuation] = ACTIONS(67), + [sym__thematic_break_dash] = ACTIONS(461), + [sym__thematic_break_star] = ACTIONS(461), }, - [50] = { - [sym__block_with_heading] = STATE(445), - [sym__block_element] = STATE(445), - [sym_heading] = STATE(445), - [sym_list] = STATE(445), - [sym__list_dash] = STATE(699), - [sym__list_item_dash] = STATE(413), - [sym__list_plus] = STATE(699), - [sym__list_item_plus] = STATE(418), - [sym__list_star] = STATE(699), - [sym__list_item_star] = STATE(417), - [sym__list_task] = STATE(699), - [sym__list_item_task] = STATE(381), + [62] = { + [sym__block_element] = STATE(638), + [sym_heading] = STATE(638), + [sym_list] = STATE(638), + [sym__list_dash] = STATE(618), + [sym__list_item_dash] = STATE(420), + [sym__list_plus] = STATE(618), + [sym__list_item_plus] = STATE(421), + [sym__list_star] = STATE(618), + [sym__list_item_star] = STATE(422), + [sym__list_task] = STATE(618), + [sym__list_item_task] = STATE(404), [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(699), - [sym__list_item_definition] = STATE(582), - [sym__list_decimal_period] = STATE(699), - [sym__list_item_decimal_period] = STATE(581), - [sym__list_decimal_paren] = STATE(699), - [sym__list_item_decimal_paren] = STATE(579), - [sym__list_decimal_parens] = STATE(699), - [sym__list_item_decimal_parens] = STATE(578), - [sym__list_lower_alpha_period] = STATE(699), - [sym__list_item_lower_alpha_period] = STATE(577), - [sym__list_lower_alpha_paren] = STATE(699), - [sym__list_item_lower_alpha_paren] = STATE(576), - [sym__list_lower_alpha_parens] = STATE(699), - [sym__list_item_lower_alpha_parens] = STATE(575), - [sym__list_upper_alpha_period] = STATE(699), - [sym__list_item_upper_alpha_period] = STATE(574), - [sym__list_upper_alpha_paren] = STATE(699), - [sym__list_item_upper_alpha_paren] = STATE(573), - [sym__list_upper_alpha_parens] = STATE(699), - [sym__list_item_upper_alpha_parens] = STATE(572), - [sym__list_lower_roman_period] = STATE(699), - [sym__list_item_lower_roman_period] = STATE(571), - [sym__list_lower_roman_paren] = STATE(699), - [sym__list_item_lower_roman_paren] = STATE(570), - [sym__list_lower_roman_parens] = STATE(699), - [sym__list_item_lower_roman_parens] = STATE(569), - [sym__list_upper_roman_period] = STATE(699), - [sym__list_item_upper_roman_period] = STATE(568), - [sym__list_upper_roman_paren] = STATE(699), - [sym__list_item_upper_roman_paren] = STATE(567), - [sym__list_upper_roman_parens] = STATE(699), - [sym__list_item_upper_roman_parens] = STATE(566), - [sym_list_item_content] = STATE(609), - [sym_table] = STATE(445), - [sym__table_content] = STATE(289), - [sym_table_separator] = STATE(289), - [sym_table_row] = STATE(363), - [sym_footnote] = STATE(445), - [sym_div] = STATE(445), - [sym_div_marker_begin] = STATE(941), - [sym_code_block] = STATE(445), - [sym_raw_block] = STATE(445), - [sym_thematic_break] = STATE(445), - [sym_block_quote] = STATE(445), - [sym__block_quote_prefix] = STATE(288), - [sym_link_reference_definition] = STATE(445), - [sym_block_attribute] = STATE(445), - [sym__paragraph] = STATE(445), - [sym__paragraph_content] = STATE(764), - [sym__inline] = STATE(703), - [sym__symbol_fallback] = STATE(366), - [aux_sym__list_dash_repeat1] = STATE(413), - [aux_sym__list_plus_repeat1] = STATE(418), - [aux_sym__list_star_repeat1] = STATE(417), - [aux_sym__list_task_repeat1] = STATE(381), - [aux_sym__list_definition_repeat1] = STATE(582), - [aux_sym__list_decimal_period_repeat1] = STATE(581), - [aux_sym__list_decimal_paren_repeat1] = STATE(579), - [aux_sym__list_decimal_parens_repeat1] = STATE(578), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(577), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(576), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(575), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(574), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(573), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(572), - [aux_sym__list_lower_roman_period_repeat1] = STATE(571), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(570), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(569), - [aux_sym__list_upper_roman_period_repeat1] = STATE(568), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(567), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(566), - [aux_sym_table_repeat1] = STATE(289), - [aux_sym__block_quote_prefix_repeat1] = STATE(323), - [aux_sym__inline_repeat1] = STATE(366), - [anon_sym_LBRACK] = ACTIONS(395), - [anon_sym_PIPE] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(399), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__newline] = ACTIONS(433), - [sym__heading_begin] = ACTIONS(403), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(405), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(407), - [sym__block_quote_continuation] = ACTIONS(409), - [sym__thematic_break_dash] = ACTIONS(411), - [sym__thematic_break_star] = ACTIONS(411), - [sym__footnote_begin] = ACTIONS(413), - }, - [51] = { - [sym__block_with_heading] = STATE(426), - [sym__block_element] = STATE(426), - [sym_heading] = STATE(426), - [sym_list] = STATE(426), - [sym__list_dash] = STATE(699), - [sym__list_item_dash] = STATE(413), - [sym__list_plus] = STATE(699), - [sym__list_item_plus] = STATE(418), - [sym__list_star] = STATE(699), - [sym__list_item_star] = STATE(417), - [sym__list_task] = STATE(699), - [sym__list_item_task] = STATE(381), - [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(699), - [sym__list_item_definition] = STATE(582), - [sym__list_decimal_period] = STATE(699), - [sym__list_item_decimal_period] = STATE(581), - [sym__list_decimal_paren] = STATE(699), - [sym__list_item_decimal_paren] = STATE(579), - [sym__list_decimal_parens] = STATE(699), - [sym__list_item_decimal_parens] = STATE(578), - [sym__list_lower_alpha_period] = STATE(699), - [sym__list_item_lower_alpha_period] = STATE(577), - [sym__list_lower_alpha_paren] = STATE(699), - [sym__list_item_lower_alpha_paren] = STATE(576), - [sym__list_lower_alpha_parens] = STATE(699), - [sym__list_item_lower_alpha_parens] = STATE(575), - [sym__list_upper_alpha_period] = STATE(699), - [sym__list_item_upper_alpha_period] = STATE(574), - [sym__list_upper_alpha_paren] = STATE(699), - [sym__list_item_upper_alpha_paren] = STATE(573), - [sym__list_upper_alpha_parens] = STATE(699), - [sym__list_item_upper_alpha_parens] = STATE(572), - [sym__list_lower_roman_period] = STATE(699), - [sym__list_item_lower_roman_period] = STATE(571), - [sym__list_lower_roman_paren] = STATE(699), - [sym__list_item_lower_roman_paren] = STATE(570), - [sym__list_lower_roman_parens] = STATE(699), - [sym__list_item_lower_roman_parens] = STATE(569), - [sym__list_upper_roman_period] = STATE(699), - [sym__list_item_upper_roman_period] = STATE(568), - [sym__list_upper_roman_paren] = STATE(699), - [sym__list_item_upper_roman_paren] = STATE(567), - [sym__list_upper_roman_parens] = STATE(699), - [sym__list_item_upper_roman_parens] = STATE(566), - [sym_list_item_content] = STATE(859), - [sym_table] = STATE(426), - [sym__table_content] = STATE(289), - [sym_table_separator] = STATE(289), - [sym_table_row] = STATE(363), - [sym_footnote] = STATE(426), - [sym_div] = STATE(426), - [sym_div_marker_begin] = STATE(941), - [sym_code_block] = STATE(426), - [sym_raw_block] = STATE(426), - [sym_thematic_break] = STATE(426), - [sym_block_quote] = STATE(426), - [sym__block_quote_prefix] = STATE(288), - [sym_link_reference_definition] = STATE(426), - [sym_block_attribute] = STATE(426), - [sym__paragraph] = STATE(426), - [sym__paragraph_content] = STATE(764), - [sym__inline] = STATE(703), - [sym__symbol_fallback] = STATE(366), - [aux_sym__list_dash_repeat1] = STATE(413), - [aux_sym__list_plus_repeat1] = STATE(418), - [aux_sym__list_star_repeat1] = STATE(417), - [aux_sym__list_task_repeat1] = STATE(381), - [aux_sym__list_definition_repeat1] = STATE(582), - [aux_sym__list_decimal_period_repeat1] = STATE(581), - [aux_sym__list_decimal_paren_repeat1] = STATE(579), - [aux_sym__list_decimal_parens_repeat1] = STATE(578), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(577), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(576), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(575), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(574), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(573), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(572), - [aux_sym__list_lower_roman_period_repeat1] = STATE(571), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(570), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(569), - [aux_sym__list_upper_roman_period_repeat1] = STATE(568), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(567), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(566), - [aux_sym_table_repeat1] = STATE(289), - [aux_sym__block_quote_prefix_repeat1] = STATE(323), - [aux_sym__inline_repeat1] = STATE(366), - [anon_sym_LBRACK] = ACTIONS(395), - [anon_sym_PIPE] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(399), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__newline] = ACTIONS(449), - [sym__heading_begin] = ACTIONS(403), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(405), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(407), - [sym__block_quote_continuation] = ACTIONS(409), - [sym__thematic_break_dash] = ACTIONS(411), - [sym__thematic_break_star] = ACTIONS(411), - [sym__footnote_begin] = ACTIONS(413), - }, - [52] = { - [sym__block_with_heading] = STATE(617), - [sym__block_element] = STATE(617), - [sym_heading] = STATE(617), - [sym_list] = STATE(617), - [sym__list_dash] = STATE(699), - [sym__list_item_dash] = STATE(413), - [sym__list_plus] = STATE(699), - [sym__list_item_plus] = STATE(418), - [sym__list_star] = STATE(699), - [sym__list_item_star] = STATE(417), - [sym__list_task] = STATE(699), - [sym__list_item_task] = STATE(381), - [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(699), - [sym__list_item_definition] = STATE(582), - [sym__list_decimal_period] = STATE(699), - [sym__list_item_decimal_period] = STATE(581), - [sym__list_decimal_paren] = STATE(699), - [sym__list_item_decimal_paren] = STATE(579), - [sym__list_decimal_parens] = STATE(699), - [sym__list_item_decimal_parens] = STATE(578), - [sym__list_lower_alpha_period] = STATE(699), - [sym__list_item_lower_alpha_period] = STATE(577), - [sym__list_lower_alpha_paren] = STATE(699), - [sym__list_item_lower_alpha_paren] = STATE(576), - [sym__list_lower_alpha_parens] = STATE(699), - [sym__list_item_lower_alpha_parens] = STATE(575), - [sym__list_upper_alpha_period] = STATE(699), - [sym__list_item_upper_alpha_period] = STATE(574), - [sym__list_upper_alpha_paren] = STATE(699), - [sym__list_item_upper_alpha_paren] = STATE(573), - [sym__list_upper_alpha_parens] = STATE(699), - [sym__list_item_upper_alpha_parens] = STATE(572), - [sym__list_lower_roman_period] = STATE(699), - [sym__list_item_lower_roman_period] = STATE(571), - [sym__list_lower_roman_paren] = STATE(699), - [sym__list_item_lower_roman_paren] = STATE(570), - [sym__list_lower_roman_parens] = STATE(699), - [sym__list_item_lower_roman_parens] = STATE(569), - [sym__list_upper_roman_period] = STATE(699), - [sym__list_item_upper_roman_period] = STATE(568), - [sym__list_upper_roman_paren] = STATE(699), - [sym__list_item_upper_roman_paren] = STATE(567), - [sym__list_upper_roman_parens] = STATE(699), - [sym__list_item_upper_roman_parens] = STATE(566), - [sym_table] = STATE(617), - [sym__table_content] = STATE(289), - [sym_table_separator] = STATE(289), - [sym_table_row] = STATE(363), - [sym_footnote] = STATE(617), - [sym_div] = STATE(617), - [sym_div_marker_begin] = STATE(941), - [sym_code_block] = STATE(617), - [sym_raw_block] = STATE(617), - [sym_thematic_break] = STATE(617), - [sym_block_quote] = STATE(617), - [sym__block_quote_prefix] = STATE(288), - [sym_link_reference_definition] = STATE(617), - [sym_block_attribute] = STATE(617), - [sym__paragraph] = STATE(617), - [sym__paragraph_content] = STATE(764), - [sym__inline] = STATE(703), - [sym__symbol_fallback] = STATE(366), - [aux_sym__list_dash_repeat1] = STATE(413), - [aux_sym__list_plus_repeat1] = STATE(418), - [aux_sym__list_star_repeat1] = STATE(417), - [aux_sym__list_task_repeat1] = STATE(381), - [aux_sym__list_definition_repeat1] = STATE(582), - [aux_sym__list_decimal_period_repeat1] = STATE(581), - [aux_sym__list_decimal_paren_repeat1] = STATE(579), - [aux_sym__list_decimal_parens_repeat1] = STATE(578), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(577), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(576), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(575), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(574), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(573), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(572), - [aux_sym__list_lower_roman_period_repeat1] = STATE(571), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(570), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(569), - [aux_sym__list_upper_roman_period_repeat1] = STATE(568), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(567), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(566), - [aux_sym_table_repeat1] = STATE(289), - [aux_sym__block_quote_prefix_repeat1] = STATE(323), - [aux_sym__inline_repeat1] = STATE(366), - [anon_sym_LBRACK] = ACTIONS(395), - [anon_sym_PIPE] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(399), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__newline] = ACTIONS(451), - [sym__heading_begin] = ACTIONS(403), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(405), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(407), - [sym__block_quote_continuation] = ACTIONS(409), - [sym__thematic_break_dash] = ACTIONS(411), - [sym__thematic_break_star] = ACTIONS(411), - [sym__footnote_begin] = ACTIONS(413), - }, - [53] = { - [sym__block_with_heading] = STATE(676), - [sym__block_element] = STATE(676), - [sym_heading] = STATE(676), - [sym_list] = STATE(676), - [sym__list_dash] = STATE(699), - [sym__list_item_dash] = STATE(413), - [sym__list_plus] = STATE(699), - [sym__list_item_plus] = STATE(418), - [sym__list_star] = STATE(699), - [sym__list_item_star] = STATE(417), - [sym__list_task] = STATE(699), - [sym__list_item_task] = STATE(381), - [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(699), - [sym__list_item_definition] = STATE(582), - [sym__list_decimal_period] = STATE(699), - [sym__list_item_decimal_period] = STATE(581), - [sym__list_decimal_paren] = STATE(699), - [sym__list_item_decimal_paren] = STATE(579), - [sym__list_decimal_parens] = STATE(699), - [sym__list_item_decimal_parens] = STATE(578), - [sym__list_lower_alpha_period] = STATE(699), - [sym__list_item_lower_alpha_period] = STATE(577), - [sym__list_lower_alpha_paren] = STATE(699), - [sym__list_item_lower_alpha_paren] = STATE(576), - [sym__list_lower_alpha_parens] = STATE(699), - [sym__list_item_lower_alpha_parens] = STATE(575), - [sym__list_upper_alpha_period] = STATE(699), - [sym__list_item_upper_alpha_period] = STATE(574), - [sym__list_upper_alpha_paren] = STATE(699), - [sym__list_item_upper_alpha_paren] = STATE(573), - [sym__list_upper_alpha_parens] = STATE(699), - [sym__list_item_upper_alpha_parens] = STATE(572), - [sym__list_lower_roman_period] = STATE(699), - [sym__list_item_lower_roman_period] = STATE(571), - [sym__list_lower_roman_paren] = STATE(699), - [sym__list_item_lower_roman_paren] = STATE(570), - [sym__list_lower_roman_parens] = STATE(699), - [sym__list_item_lower_roman_parens] = STATE(569), - [sym__list_upper_roman_period] = STATE(699), - [sym__list_item_upper_roman_period] = STATE(568), - [sym__list_upper_roman_paren] = STATE(699), - [sym__list_item_upper_roman_paren] = STATE(567), - [sym__list_upper_roman_parens] = STATE(699), - [sym__list_item_upper_roman_parens] = STATE(566), - [sym_table] = STATE(676), - [sym__table_content] = STATE(289), - [sym_table_separator] = STATE(289), - [sym_table_row] = STATE(363), - [sym_footnote] = STATE(676), - [sym_div] = STATE(676), - [sym_div_marker_begin] = STATE(941), - [sym_code_block] = STATE(676), - [sym_raw_block] = STATE(676), - [sym_thematic_break] = STATE(676), - [sym_block_quote] = STATE(676), - [sym__block_quote_prefix] = STATE(288), - [sym_link_reference_definition] = STATE(676), - [sym_block_attribute] = STATE(676), - [sym__paragraph] = STATE(676), - [sym__paragraph_content] = STATE(764), - [sym__inline] = STATE(703), - [sym__symbol_fallback] = STATE(366), - [aux_sym__list_dash_repeat1] = STATE(413), - [aux_sym__list_plus_repeat1] = STATE(418), - [aux_sym__list_star_repeat1] = STATE(417), - [aux_sym__list_task_repeat1] = STATE(381), - [aux_sym__list_definition_repeat1] = STATE(582), - [aux_sym__list_decimal_period_repeat1] = STATE(581), - [aux_sym__list_decimal_paren_repeat1] = STATE(579), - [aux_sym__list_decimal_parens_repeat1] = STATE(578), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(577), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(576), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(575), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(574), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(573), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(572), - [aux_sym__list_lower_roman_period_repeat1] = STATE(571), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(570), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(569), - [aux_sym__list_upper_roman_period_repeat1] = STATE(568), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(567), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(566), - [aux_sym_table_repeat1] = STATE(289), - [aux_sym__block_quote_prefix_repeat1] = STATE(323), - [aux_sym__inline_repeat1] = STATE(366), - [anon_sym_LBRACK] = ACTIONS(395), - [anon_sym_PIPE] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(399), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__newline] = ACTIONS(453), - [sym__heading_begin] = ACTIONS(403), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(405), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(407), - [sym__block_quote_continuation] = ACTIONS(409), - [sym__thematic_break_dash] = ACTIONS(411), - [sym__thematic_break_star] = ACTIONS(411), - [sym__footnote_begin] = ACTIONS(413), - }, - [54] = { - [sym__block_element] = STATE(227), - [sym_heading] = STATE(227), - [sym_list] = STATE(227), - [sym__list_dash] = STATE(141), - [sym__list_item_dash] = STATE(416), - [sym__list_plus] = STATE(141), - [sym__list_item_plus] = STATE(419), - [sym__list_star] = STATE(141), - [sym__list_item_star] = STATE(407), - [sym__list_task] = STATE(141), - [sym__list_item_task] = STATE(371), - [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(141), - [sym__list_item_definition] = STATE(549), - [sym__list_decimal_period] = STATE(141), - [sym__list_item_decimal_period] = STATE(548), - [sym__list_decimal_paren] = STATE(141), - [sym__list_item_decimal_paren] = STATE(547), - [sym__list_decimal_parens] = STATE(141), - [sym__list_item_decimal_parens] = STATE(546), - [sym__list_lower_alpha_period] = STATE(141), - [sym__list_item_lower_alpha_period] = STATE(545), - [sym__list_lower_alpha_paren] = STATE(141), - [sym__list_item_lower_alpha_paren] = STATE(544), - [sym__list_lower_alpha_parens] = STATE(141), - [sym__list_item_lower_alpha_parens] = STATE(543), - [sym__list_upper_alpha_period] = STATE(141), - [sym__list_item_upper_alpha_period] = STATE(542), - [sym__list_upper_alpha_paren] = STATE(141), - [sym__list_item_upper_alpha_paren] = STATE(541), - [sym__list_upper_alpha_parens] = STATE(141), - [sym__list_item_upper_alpha_parens] = STATE(540), - [sym__list_lower_roman_period] = STATE(141), - [sym__list_item_lower_roman_period] = STATE(539), - [sym__list_lower_roman_paren] = STATE(141), - [sym__list_item_lower_roman_paren] = STATE(538), - [sym__list_lower_roman_parens] = STATE(141), - [sym__list_item_lower_roman_parens] = STATE(537), - [sym__list_upper_roman_period] = STATE(141), - [sym__list_item_upper_roman_period] = STATE(536), - [sym__list_upper_roman_paren] = STATE(141), - [sym__list_item_upper_roman_paren] = STATE(535), - [sym__list_upper_roman_parens] = STATE(141), - [sym__list_item_upper_roman_parens] = STATE(534), - [sym_table] = STATE(227), - [sym__table_content] = STATE(66), - [sym_table_separator] = STATE(66), - [sym_table_row] = STATE(72), - [sym_footnote] = STATE(227), - [sym_div] = STATE(227), - [sym_div_marker_begin] = STATE(985), - [sym_code_block] = STATE(227), - [sym_raw_block] = STATE(227), - [sym_thematic_break] = STATE(227), - [sym_block_quote] = STATE(227), - [sym__block_quote_prefix] = STATE(286), - [sym_link_reference_definition] = STATE(227), - [sym_block_attribute] = STATE(227), - [sym__paragraph] = STATE(227), - [sym__paragraph_content] = STATE(801), - [sym__inline] = STATE(703), - [sym__symbol_fallback] = STATE(366), - [aux_sym__list_dash_repeat1] = STATE(416), - [aux_sym__list_plus_repeat1] = STATE(419), - [aux_sym__list_star_repeat1] = STATE(407), - [aux_sym__list_task_repeat1] = STATE(371), - [aux_sym__list_definition_repeat1] = STATE(549), - [aux_sym__list_decimal_period_repeat1] = STATE(548), - [aux_sym__list_decimal_paren_repeat1] = STATE(547), - [aux_sym__list_decimal_parens_repeat1] = STATE(546), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(545), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(544), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(543), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(542), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(541), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(540), - [aux_sym__list_lower_roman_period_repeat1] = STATE(539), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(538), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(537), - [aux_sym__list_upper_roman_period_repeat1] = STATE(536), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(535), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(534), - [aux_sym_table_repeat1] = STATE(66), - [aux_sym__block_quote_prefix_repeat1] = STATE(323), - [aux_sym__inline_repeat1] = STATE(366), - [anon_sym_LBRACK] = ACTIONS(455), - [anon_sym_PIPE] = ACTIONS(455), - [anon_sym_LBRACE] = ACTIONS(455), - [aux_sym__inline_token1] = ACTIONS(455), - [anon_sym_LBRACE_DASH] = ACTIONS(455), - [sym__block_close] = ACTIONS(457), - [sym__newline] = ACTIONS(459), - [sym__heading_begin] = ACTIONS(17), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(207), - [sym_list_marker_dash] = ACTIONS(457), - [sym_list_marker_star] = ACTIONS(457), - [sym_list_marker_plus] = ACTIONS(457), - [sym__list_marker_task_begin] = ACTIONS(457), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(209), - [sym__block_quote_continuation] = ACTIONS(457), - [sym__thematic_break_dash] = ACTIONS(211), - [sym__thematic_break_star] = ACTIONS(211), - [sym__footnote_begin] = ACTIONS(213), - }, - [55] = { - [sym__block_element] = STATE(486), - [sym_heading] = STATE(486), - [sym_list] = STATE(486), - [sym__list_dash] = STATE(712), - [sym__list_item_dash] = STATE(400), - [sym__list_plus] = STATE(712), - [sym__list_item_plus] = STATE(401), - [sym__list_star] = STATE(712), - [sym__list_item_star] = STATE(402), - [sym__list_task] = STATE(712), - [sym__list_item_task] = STATE(387), - [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(712), - [sym__list_item_definition] = STATE(489), - [sym__list_decimal_period] = STATE(712), - [sym__list_item_decimal_period] = STATE(565), - [sym__list_decimal_paren] = STATE(712), - [sym__list_item_decimal_paren] = STATE(564), - [sym__list_decimal_parens] = STATE(712), - [sym__list_item_decimal_parens] = STATE(563), - [sym__list_lower_alpha_period] = STATE(712), - [sym__list_item_lower_alpha_period] = STATE(603), - [sym__list_lower_alpha_paren] = STATE(712), - [sym__list_item_lower_alpha_paren] = STATE(561), - [sym__list_lower_alpha_parens] = STATE(712), - [sym__list_item_lower_alpha_parens] = STATE(560), - [sym__list_upper_alpha_period] = STATE(712), - [sym__list_item_upper_alpha_period] = STATE(558), - [sym__list_upper_alpha_paren] = STATE(712), - [sym__list_item_upper_alpha_paren] = STATE(557), - [sym__list_upper_alpha_parens] = STATE(712), - [sym__list_item_upper_alpha_parens] = STATE(556), - [sym__list_lower_roman_period] = STATE(712), - [sym__list_item_lower_roman_period] = STATE(555), - [sym__list_lower_roman_paren] = STATE(712), - [sym__list_item_lower_roman_paren] = STATE(554), - [sym__list_lower_roman_parens] = STATE(712), - [sym__list_item_lower_roman_parens] = STATE(553), - [sym__list_upper_roman_period] = STATE(712), - [sym__list_item_upper_roman_period] = STATE(552), - [sym__list_upper_roman_paren] = STATE(712), - [sym__list_item_upper_roman_paren] = STATE(551), - [sym__list_upper_roman_parens] = STATE(712), - [sym__list_item_upper_roman_parens] = STATE(550), - [sym_table] = STATE(486), - [sym__table_content] = STATE(291), - [sym_table_separator] = STATE(291), - [sym_table_row] = STATE(376), - [sym_footnote] = STATE(486), - [sym_div] = STATE(486), - [sym_div_marker_begin] = STATE(963), - [sym_code_block] = STATE(486), - [sym_raw_block] = STATE(486), - [sym_thematic_break] = STATE(486), - [sym_block_quote] = STATE(486), - [sym__block_quote_content] = STATE(1012), - [sym__block_quote_prefix] = STATE(287), - [sym_link_reference_definition] = STATE(486), - [sym_block_attribute] = STATE(486), - [sym__paragraph] = STATE(486), - [sym__paragraph_content] = STATE(745), - [sym__inline] = STATE(703), - [sym__symbol_fallback] = STATE(366), - [aux_sym__list_dash_repeat1] = STATE(400), - [aux_sym__list_plus_repeat1] = STATE(401), - [aux_sym__list_star_repeat1] = STATE(402), - [aux_sym__list_task_repeat1] = STATE(387), - [aux_sym__list_definition_repeat1] = STATE(489), - [aux_sym__list_decimal_period_repeat1] = STATE(565), - [aux_sym__list_decimal_paren_repeat1] = STATE(564), - [aux_sym__list_decimal_parens_repeat1] = STATE(563), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(603), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(561), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(560), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(558), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(557), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(556), - [aux_sym__list_lower_roman_period_repeat1] = STATE(555), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(554), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(553), - [aux_sym__list_upper_roman_period_repeat1] = STATE(552), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(551), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(550), - [aux_sym_table_repeat1] = STATE(291), - [aux_sym__block_quote_prefix_repeat1] = STATE(323), - [aux_sym__inline_repeat1] = STATE(366), - [anon_sym_LBRACK] = ACTIONS(461), - [anon_sym_PIPE] = ACTIONS(463), - [anon_sym_LBRACE] = ACTIONS(465), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__heading_begin] = ACTIONS(467), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(469), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(471), - [sym__block_quote_continuation] = ACTIONS(65), - [sym__thematic_break_dash] = ACTIONS(473), - [sym__thematic_break_star] = ACTIONS(473), - [sym__footnote_begin] = ACTIONS(475), - }, - [56] = { - [sym__block_element] = STATE(486), - [sym_heading] = STATE(486), - [sym_list] = STATE(486), - [sym__list_dash] = STATE(712), - [sym__list_item_dash] = STATE(400), - [sym__list_plus] = STATE(712), - [sym__list_item_plus] = STATE(401), - [sym__list_star] = STATE(712), - [sym__list_item_star] = STATE(402), - [sym__list_task] = STATE(712), - [sym__list_item_task] = STATE(387), - [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(712), - [sym__list_item_definition] = STATE(489), - [sym__list_decimal_period] = STATE(712), - [sym__list_item_decimal_period] = STATE(565), - [sym__list_decimal_paren] = STATE(712), - [sym__list_item_decimal_paren] = STATE(564), - [sym__list_decimal_parens] = STATE(712), - [sym__list_item_decimal_parens] = STATE(563), - [sym__list_lower_alpha_period] = STATE(712), - [sym__list_item_lower_alpha_period] = STATE(603), - [sym__list_lower_alpha_paren] = STATE(712), - [sym__list_item_lower_alpha_paren] = STATE(561), - [sym__list_lower_alpha_parens] = STATE(712), - [sym__list_item_lower_alpha_parens] = STATE(560), - [sym__list_upper_alpha_period] = STATE(712), - [sym__list_item_upper_alpha_period] = STATE(558), - [sym__list_upper_alpha_paren] = STATE(712), - [sym__list_item_upper_alpha_paren] = STATE(557), - [sym__list_upper_alpha_parens] = STATE(712), - [sym__list_item_upper_alpha_parens] = STATE(556), - [sym__list_lower_roman_period] = STATE(712), - [sym__list_item_lower_roman_period] = STATE(555), - [sym__list_lower_roman_paren] = STATE(712), - [sym__list_item_lower_roman_paren] = STATE(554), - [sym__list_lower_roman_parens] = STATE(712), - [sym__list_item_lower_roman_parens] = STATE(553), - [sym__list_upper_roman_period] = STATE(712), - [sym__list_item_upper_roman_period] = STATE(552), - [sym__list_upper_roman_paren] = STATE(712), - [sym__list_item_upper_roman_paren] = STATE(551), - [sym__list_upper_roman_parens] = STATE(712), - [sym__list_item_upper_roman_parens] = STATE(550), - [sym_table] = STATE(486), - [sym__table_content] = STATE(291), - [sym_table_separator] = STATE(291), - [sym_table_row] = STATE(376), - [sym_footnote] = STATE(486), - [sym_div] = STATE(486), - [sym_div_marker_begin] = STATE(963), - [sym_code_block] = STATE(486), - [sym_raw_block] = STATE(486), - [sym_thematic_break] = STATE(486), - [sym_block_quote] = STATE(486), - [sym__block_quote_content] = STATE(954), - [sym__block_quote_prefix] = STATE(287), - [sym_link_reference_definition] = STATE(486), - [sym_block_attribute] = STATE(486), - [sym__paragraph] = STATE(486), - [sym__paragraph_content] = STATE(745), - [sym__inline] = STATE(703), - [sym__symbol_fallback] = STATE(366), - [aux_sym__list_dash_repeat1] = STATE(400), - [aux_sym__list_plus_repeat1] = STATE(401), - [aux_sym__list_star_repeat1] = STATE(402), - [aux_sym__list_task_repeat1] = STATE(387), - [aux_sym__list_definition_repeat1] = STATE(489), - [aux_sym__list_decimal_period_repeat1] = STATE(565), - [aux_sym__list_decimal_paren_repeat1] = STATE(564), - [aux_sym__list_decimal_parens_repeat1] = STATE(563), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(603), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(561), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(560), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(558), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(557), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(556), - [aux_sym__list_lower_roman_period_repeat1] = STATE(555), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(554), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(553), - [aux_sym__list_upper_roman_period_repeat1] = STATE(552), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(551), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(550), - [aux_sym_table_repeat1] = STATE(291), - [aux_sym__block_quote_prefix_repeat1] = STATE(323), - [aux_sym__inline_repeat1] = STATE(366), - [anon_sym_LBRACK] = ACTIONS(461), - [anon_sym_PIPE] = ACTIONS(463), - [anon_sym_LBRACE] = ACTIONS(465), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__heading_begin] = ACTIONS(467), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(469), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(471), - [sym__block_quote_continuation] = ACTIONS(65), - [sym__thematic_break_dash] = ACTIONS(473), - [sym__thematic_break_star] = ACTIONS(473), - [sym__footnote_begin] = ACTIONS(475), - }, - [57] = { - [sym__block_element] = STATE(486), - [sym_heading] = STATE(486), - [sym_list] = STATE(486), - [sym__list_dash] = STATE(712), - [sym__list_item_dash] = STATE(400), - [sym__list_plus] = STATE(712), - [sym__list_item_plus] = STATE(401), - [sym__list_star] = STATE(712), - [sym__list_item_star] = STATE(402), - [sym__list_task] = STATE(712), - [sym__list_item_task] = STATE(387), - [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(712), - [sym__list_item_definition] = STATE(489), - [sym__list_decimal_period] = STATE(712), - [sym__list_item_decimal_period] = STATE(565), - [sym__list_decimal_paren] = STATE(712), - [sym__list_item_decimal_paren] = STATE(564), - [sym__list_decimal_parens] = STATE(712), - [sym__list_item_decimal_parens] = STATE(563), - [sym__list_lower_alpha_period] = STATE(712), - [sym__list_item_lower_alpha_period] = STATE(603), - [sym__list_lower_alpha_paren] = STATE(712), - [sym__list_item_lower_alpha_paren] = STATE(561), - [sym__list_lower_alpha_parens] = STATE(712), - [sym__list_item_lower_alpha_parens] = STATE(560), - [sym__list_upper_alpha_period] = STATE(712), - [sym__list_item_upper_alpha_period] = STATE(558), - [sym__list_upper_alpha_paren] = STATE(712), - [sym__list_item_upper_alpha_paren] = STATE(557), - [sym__list_upper_alpha_parens] = STATE(712), - [sym__list_item_upper_alpha_parens] = STATE(556), - [sym__list_lower_roman_period] = STATE(712), - [sym__list_item_lower_roman_period] = STATE(555), - [sym__list_lower_roman_paren] = STATE(712), - [sym__list_item_lower_roman_paren] = STATE(554), - [sym__list_lower_roman_parens] = STATE(712), - [sym__list_item_lower_roman_parens] = STATE(553), - [sym__list_upper_roman_period] = STATE(712), - [sym__list_item_upper_roman_period] = STATE(552), - [sym__list_upper_roman_paren] = STATE(712), - [sym__list_item_upper_roman_paren] = STATE(551), - [sym__list_upper_roman_parens] = STATE(712), - [sym__list_item_upper_roman_parens] = STATE(550), - [sym_table] = STATE(486), - [sym__table_content] = STATE(291), - [sym_table_separator] = STATE(291), - [sym_table_row] = STATE(376), - [sym_footnote] = STATE(486), - [sym_div] = STATE(486), - [sym_div_marker_begin] = STATE(963), - [sym_code_block] = STATE(486), - [sym_raw_block] = STATE(486), - [sym_thematic_break] = STATE(486), - [sym_block_quote] = STATE(486), - [sym__block_quote_content] = STATE(1058), - [sym__block_quote_prefix] = STATE(287), - [sym_link_reference_definition] = STATE(486), - [sym_block_attribute] = STATE(486), - [sym__paragraph] = STATE(486), - [sym__paragraph_content] = STATE(745), - [sym__inline] = STATE(703), - [sym__symbol_fallback] = STATE(366), - [aux_sym__list_dash_repeat1] = STATE(400), - [aux_sym__list_plus_repeat1] = STATE(401), - [aux_sym__list_star_repeat1] = STATE(402), - [aux_sym__list_task_repeat1] = STATE(387), - [aux_sym__list_definition_repeat1] = STATE(489), - [aux_sym__list_decimal_period_repeat1] = STATE(565), - [aux_sym__list_decimal_paren_repeat1] = STATE(564), - [aux_sym__list_decimal_parens_repeat1] = STATE(563), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(603), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(561), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(560), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(558), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(557), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(556), - [aux_sym__list_lower_roman_period_repeat1] = STATE(555), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(554), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(553), - [aux_sym__list_upper_roman_period_repeat1] = STATE(552), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(551), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(550), - [aux_sym_table_repeat1] = STATE(291), - [aux_sym__block_quote_prefix_repeat1] = STATE(323), - [aux_sym__inline_repeat1] = STATE(366), - [anon_sym_LBRACK] = ACTIONS(461), - [anon_sym_PIPE] = ACTIONS(463), - [anon_sym_LBRACE] = ACTIONS(465), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__heading_begin] = ACTIONS(467), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(469), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(471), - [sym__block_quote_continuation] = ACTIONS(65), - [sym__thematic_break_dash] = ACTIONS(473), - [sym__thematic_break_star] = ACTIONS(473), - [sym__footnote_begin] = ACTIONS(475), - }, - [58] = { - [sym__block_element] = STATE(190), - [sym_heading] = STATE(190), - [sym_list] = STATE(190), - [sym__list_dash] = STATE(234), - [sym__list_item_dash] = STATE(415), - [sym__list_plus] = STATE(234), - [sym__list_item_plus] = STATE(395), - [sym__list_star] = STATE(234), - [sym__list_item_star] = STATE(409), - [sym__list_task] = STATE(234), - [sym__list_item_task] = STATE(389), - [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(234), - [sym__list_item_definition] = STATE(531), - [sym__list_decimal_period] = STATE(234), - [sym__list_item_decimal_period] = STATE(530), - [sym__list_decimal_paren] = STATE(234), - [sym__list_item_decimal_paren] = STATE(529), - [sym__list_decimal_parens] = STATE(234), - [sym__list_item_decimal_parens] = STATE(527), - [sym__list_lower_alpha_period] = STATE(234), - [sym__list_item_lower_alpha_period] = STATE(526), - [sym__list_lower_alpha_paren] = STATE(234), - [sym__list_item_lower_alpha_paren] = STATE(525), - [sym__list_lower_alpha_parens] = STATE(234), - [sym__list_item_lower_alpha_parens] = STATE(524), - [sym__list_upper_alpha_period] = STATE(234), - [sym__list_item_upper_alpha_period] = STATE(523), - [sym__list_upper_alpha_paren] = STATE(234), - [sym__list_item_upper_alpha_paren] = STATE(522), - [sym__list_upper_alpha_parens] = STATE(234), - [sym__list_item_upper_alpha_parens] = STATE(521), - [sym__list_lower_roman_period] = STATE(234), - [sym__list_item_lower_roman_period] = STATE(520), - [sym__list_lower_roman_paren] = STATE(234), - [sym__list_item_lower_roman_paren] = STATE(519), - [sym__list_lower_roman_parens] = STATE(234), - [sym__list_item_lower_roman_parens] = STATE(518), - [sym__list_upper_roman_period] = STATE(234), - [sym__list_item_upper_roman_period] = STATE(517), - [sym__list_upper_roman_paren] = STATE(234), - [sym__list_item_upper_roman_paren] = STATE(516), - [sym__list_upper_roman_parens] = STATE(234), - [sym__list_item_upper_roman_parens] = STATE(515), - [sym_table] = STATE(190), - [sym__table_content] = STATE(65), - [sym_table_separator] = STATE(65), - [sym_table_row] = STATE(71), - [sym_footnote] = STATE(190), - [sym_div] = STATE(190), - [sym_div_marker_begin] = STATE(1006), - [sym_code_block] = STATE(190), - [sym_raw_block] = STATE(190), - [sym_thematic_break] = STATE(190), - [sym_block_quote] = STATE(190), + [sym__list_definition] = STATE(618), + [sym__list_item_definition] = STATE(527), + [sym__list_decimal_period] = STATE(618), + [sym__list_item_decimal_period] = STATE(524), + [sym__list_decimal_paren] = STATE(618), + [sym__list_item_decimal_paren] = STATE(521), + [sym__list_decimal_parens] = STATE(618), + [sym__list_item_decimal_parens] = STATE(520), + [sym__list_lower_alpha_period] = STATE(618), + [sym__list_item_lower_alpha_period] = STATE(518), + [sym__list_lower_alpha_paren] = STATE(618), + [sym__list_item_lower_alpha_paren] = STATE(517), + [sym__list_lower_alpha_parens] = STATE(618), + [sym__list_item_lower_alpha_parens] = STATE(515), + [sym__list_upper_alpha_period] = STATE(618), + [sym__list_item_upper_alpha_period] = STATE(514), + [sym__list_upper_alpha_paren] = STATE(618), + [sym__list_item_upper_alpha_paren] = STATE(510), + [sym__list_upper_alpha_parens] = STATE(618), + [sym__list_item_upper_alpha_parens] = STATE(501), + [sym__list_lower_roman_period] = STATE(618), + [sym__list_item_lower_roman_period] = STATE(500), + [sym__list_lower_roman_paren] = STATE(618), + [sym__list_item_lower_roman_paren] = STATE(499), + [sym__list_lower_roman_parens] = STATE(618), + [sym__list_item_lower_roman_parens] = STATE(498), + [sym__list_upper_roman_period] = STATE(618), + [sym__list_item_upper_roman_period] = STATE(497), + [sym__list_upper_roman_paren] = STATE(618), + [sym__list_item_upper_roman_paren] = STATE(496), + [sym__list_upper_roman_parens] = STATE(618), + [sym__list_item_upper_roman_parens] = STATE(579), + [sym_table] = STATE(638), + [sym__table_content] = STATE(358), + [sym_table_separator] = STATE(358), + [sym_table_row] = STATE(383), + [sym_footnote] = STATE(638), + [sym_footnote_marker_begin] = STATE(1080), + [sym_div] = STATE(638), + [sym_div_marker_begin] = STATE(952), + [sym_code_block] = STATE(638), + [sym_raw_block] = STATE(638), + [sym_thematic_break] = STATE(638), + [sym_block_quote] = STATE(638), [sym__block_quote_prefix] = STATE(285), - [sym_link_reference_definition] = STATE(190), - [sym_block_attribute] = STATE(190), - [sym__paragraph] = STATE(190), - [sym__paragraph_content] = STATE(856), - [sym__inline] = STATE(703), - [sym__symbol_fallback] = STATE(366), - [aux_sym__list_dash_repeat1] = STATE(415), - [aux_sym__list_plus_repeat1] = STATE(395), - [aux_sym__list_star_repeat1] = STATE(409), - [aux_sym__list_task_repeat1] = STATE(389), - [aux_sym__list_definition_repeat1] = STATE(531), - [aux_sym__list_decimal_period_repeat1] = STATE(530), - [aux_sym__list_decimal_paren_repeat1] = STATE(529), - [aux_sym__list_decimal_parens_repeat1] = STATE(527), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(526), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(525), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(524), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(523), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(522), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(521), - [aux_sym__list_lower_roman_period_repeat1] = STATE(520), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(519), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(518), - [aux_sym__list_upper_roman_period_repeat1] = STATE(517), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(516), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(515), - [aux_sym_table_repeat1] = STATE(65), - [aux_sym__block_quote_prefix_repeat1] = STATE(323), - [aux_sym__inline_repeat1] = STATE(366), - [anon_sym_LBRACK] = ACTIONS(455), - [anon_sym_PIPE] = ACTIONS(455), - [anon_sym_LBRACE] = ACTIONS(455), - [aux_sym__inline_token1] = ACTIONS(455), - [anon_sym_LBRACE_DASH] = ACTIONS(455), - [sym__newline] = ACTIONS(477), - [sym__heading_begin] = ACTIONS(229), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(231), - [sym_list_marker_dash] = ACTIONS(457), - [sym_list_marker_star] = ACTIONS(457), - [sym_list_marker_plus] = ACTIONS(457), - [sym__list_marker_task_begin] = ACTIONS(457), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(233), - [sym__block_quote_continuation] = ACTIONS(457), - [sym__thematic_break_dash] = ACTIONS(237), - [sym__thematic_break_star] = ACTIONS(237), - [sym__footnote_begin] = ACTIONS(239), - }, - [59] = { - [sym__block_element] = STATE(486), - [sym_heading] = STATE(486), - [sym_list] = STATE(486), - [sym__list_dash] = STATE(712), - [sym__list_item_dash] = STATE(400), - [sym__list_plus] = STATE(712), - [sym__list_item_plus] = STATE(401), - [sym__list_star] = STATE(712), - [sym__list_item_star] = STATE(402), - [sym__list_task] = STATE(712), - [sym__list_item_task] = STATE(387), - [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(712), - [sym__list_item_definition] = STATE(489), - [sym__list_decimal_period] = STATE(712), - [sym__list_item_decimal_period] = STATE(565), - [sym__list_decimal_paren] = STATE(712), - [sym__list_item_decimal_paren] = STATE(564), - [sym__list_decimal_parens] = STATE(712), - [sym__list_item_decimal_parens] = STATE(563), - [sym__list_lower_alpha_period] = STATE(712), - [sym__list_item_lower_alpha_period] = STATE(603), - [sym__list_lower_alpha_paren] = STATE(712), - [sym__list_item_lower_alpha_paren] = STATE(561), - [sym__list_lower_alpha_parens] = STATE(712), - [sym__list_item_lower_alpha_parens] = STATE(560), - [sym__list_upper_alpha_period] = STATE(712), - [sym__list_item_upper_alpha_period] = STATE(558), - [sym__list_upper_alpha_paren] = STATE(712), - [sym__list_item_upper_alpha_paren] = STATE(557), - [sym__list_upper_alpha_parens] = STATE(712), - [sym__list_item_upper_alpha_parens] = STATE(556), - [sym__list_lower_roman_period] = STATE(712), - [sym__list_item_lower_roman_period] = STATE(555), - [sym__list_lower_roman_paren] = STATE(712), - [sym__list_item_lower_roman_paren] = STATE(554), - [sym__list_lower_roman_parens] = STATE(712), - [sym__list_item_lower_roman_parens] = STATE(553), - [sym__list_upper_roman_period] = STATE(712), - [sym__list_item_upper_roman_period] = STATE(552), - [sym__list_upper_roman_paren] = STATE(712), - [sym__list_item_upper_roman_paren] = STATE(551), - [sym__list_upper_roman_parens] = STATE(712), - [sym__list_item_upper_roman_parens] = STATE(550), - [sym_table] = STATE(486), - [sym__table_content] = STATE(291), - [sym_table_separator] = STATE(291), - [sym_table_row] = STATE(376), - [sym_footnote] = STATE(486), - [sym_div] = STATE(486), - [sym_div_marker_begin] = STATE(963), - [sym_code_block] = STATE(486), - [sym_raw_block] = STATE(486), - [sym_thematic_break] = STATE(486), - [sym_block_quote] = STATE(486), - [sym__block_quote_content] = STATE(1001), - [sym__block_quote_prefix] = STATE(287), - [sym_link_reference_definition] = STATE(486), - [sym_block_attribute] = STATE(486), - [sym__paragraph] = STATE(486), - [sym__paragraph_content] = STATE(745), - [sym__inline] = STATE(703), - [sym__symbol_fallback] = STATE(366), - [aux_sym__list_dash_repeat1] = STATE(400), - [aux_sym__list_plus_repeat1] = STATE(401), - [aux_sym__list_star_repeat1] = STATE(402), - [aux_sym__list_task_repeat1] = STATE(387), - [aux_sym__list_definition_repeat1] = STATE(489), - [aux_sym__list_decimal_period_repeat1] = STATE(565), - [aux_sym__list_decimal_paren_repeat1] = STATE(564), - [aux_sym__list_decimal_parens_repeat1] = STATE(563), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(603), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(561), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(560), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(558), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(557), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(556), - [aux_sym__list_lower_roman_period_repeat1] = STATE(555), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(554), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(553), - [aux_sym__list_upper_roman_period_repeat1] = STATE(552), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(551), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(550), - [aux_sym_table_repeat1] = STATE(291), - [aux_sym__block_quote_prefix_repeat1] = STATE(323), - [aux_sym__inline_repeat1] = STATE(366), - [anon_sym_LBRACK] = ACTIONS(461), - [anon_sym_PIPE] = ACTIONS(463), - [anon_sym_LBRACE] = ACTIONS(465), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__heading_begin] = ACTIONS(467), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(469), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(471), - [sym__block_quote_continuation] = ACTIONS(65), - [sym__thematic_break_dash] = ACTIONS(473), - [sym__thematic_break_star] = ACTIONS(473), - [sym__footnote_begin] = ACTIONS(475), - }, - [60] = { - [sym__block_element] = STATE(486), - [sym_heading] = STATE(486), - [sym_list] = STATE(486), - [sym__list_dash] = STATE(712), - [sym__list_item_dash] = STATE(400), - [sym__list_plus] = STATE(712), - [sym__list_item_plus] = STATE(401), - [sym__list_star] = STATE(712), - [sym__list_item_star] = STATE(402), - [sym__list_task] = STATE(712), - [sym__list_item_task] = STATE(387), - [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(712), - [sym__list_item_definition] = STATE(489), - [sym__list_decimal_period] = STATE(712), - [sym__list_item_decimal_period] = STATE(565), - [sym__list_decimal_paren] = STATE(712), - [sym__list_item_decimal_paren] = STATE(564), - [sym__list_decimal_parens] = STATE(712), - [sym__list_item_decimal_parens] = STATE(563), - [sym__list_lower_alpha_period] = STATE(712), - [sym__list_item_lower_alpha_period] = STATE(603), - [sym__list_lower_alpha_paren] = STATE(712), - [sym__list_item_lower_alpha_paren] = STATE(561), - [sym__list_lower_alpha_parens] = STATE(712), - [sym__list_item_lower_alpha_parens] = STATE(560), - [sym__list_upper_alpha_period] = STATE(712), - [sym__list_item_upper_alpha_period] = STATE(558), - [sym__list_upper_alpha_paren] = STATE(712), - [sym__list_item_upper_alpha_paren] = STATE(557), - [sym__list_upper_alpha_parens] = STATE(712), - [sym__list_item_upper_alpha_parens] = STATE(556), - [sym__list_lower_roman_period] = STATE(712), - [sym__list_item_lower_roman_period] = STATE(555), - [sym__list_lower_roman_paren] = STATE(712), - [sym__list_item_lower_roman_paren] = STATE(554), - [sym__list_lower_roman_parens] = STATE(712), - [sym__list_item_lower_roman_parens] = STATE(553), - [sym__list_upper_roman_period] = STATE(712), - [sym__list_item_upper_roman_period] = STATE(552), - [sym__list_upper_roman_paren] = STATE(712), - [sym__list_item_upper_roman_paren] = STATE(551), - [sym__list_upper_roman_parens] = STATE(712), - [sym__list_item_upper_roman_parens] = STATE(550), - [sym_table] = STATE(486), - [sym__table_content] = STATE(291), - [sym_table_separator] = STATE(291), - [sym_table_row] = STATE(376), - [sym_footnote] = STATE(486), - [sym_div] = STATE(486), - [sym_div_marker_begin] = STATE(963), - [sym_code_block] = STATE(486), - [sym_raw_block] = STATE(486), - [sym_thematic_break] = STATE(486), - [sym_block_quote] = STATE(486), - [sym__block_quote_content] = STATE(919), - [sym__block_quote_prefix] = STATE(287), - [sym_link_reference_definition] = STATE(486), - [sym_block_attribute] = STATE(486), - [sym__paragraph] = STATE(486), - [sym__paragraph_content] = STATE(745), - [sym__inline] = STATE(703), - [sym__symbol_fallback] = STATE(366), - [aux_sym__list_dash_repeat1] = STATE(400), - [aux_sym__list_plus_repeat1] = STATE(401), - [aux_sym__list_star_repeat1] = STATE(402), - [aux_sym__list_task_repeat1] = STATE(387), - [aux_sym__list_definition_repeat1] = STATE(489), - [aux_sym__list_decimal_period_repeat1] = STATE(565), - [aux_sym__list_decimal_paren_repeat1] = STATE(564), - [aux_sym__list_decimal_parens_repeat1] = STATE(563), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(603), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(561), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(560), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(558), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(557), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(556), - [aux_sym__list_lower_roman_period_repeat1] = STATE(555), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(554), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(553), - [aux_sym__list_upper_roman_period_repeat1] = STATE(552), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(551), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(550), - [aux_sym_table_repeat1] = STATE(291), - [aux_sym__block_quote_prefix_repeat1] = STATE(323), - [aux_sym__inline_repeat1] = STATE(366), - [anon_sym_LBRACK] = ACTIONS(461), - [anon_sym_PIPE] = ACTIONS(463), - [anon_sym_LBRACE] = ACTIONS(465), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__heading_begin] = ACTIONS(467), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(469), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(471), - [sym__block_quote_continuation] = ACTIONS(65), - [sym__thematic_break_dash] = ACTIONS(473), - [sym__thematic_break_star] = ACTIONS(473), - [sym__footnote_begin] = ACTIONS(475), - }, - [61] = { - [sym__block_element] = STATE(227), - [sym_heading] = STATE(227), - [sym_list] = STATE(227), - [sym__list_dash] = STATE(141), - [sym__list_item_dash] = STATE(416), - [sym__list_plus] = STATE(141), - [sym__list_item_plus] = STATE(419), - [sym__list_star] = STATE(141), - [sym__list_item_star] = STATE(407), - [sym__list_task] = STATE(141), - [sym__list_item_task] = STATE(371), - [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(141), - [sym__list_item_definition] = STATE(549), - [sym__list_decimal_period] = STATE(141), - [sym__list_item_decimal_period] = STATE(548), - [sym__list_decimal_paren] = STATE(141), - [sym__list_item_decimal_paren] = STATE(547), - [sym__list_decimal_parens] = STATE(141), - [sym__list_item_decimal_parens] = STATE(546), - [sym__list_lower_alpha_period] = STATE(141), - [sym__list_item_lower_alpha_period] = STATE(545), - [sym__list_lower_alpha_paren] = STATE(141), - [sym__list_item_lower_alpha_paren] = STATE(544), - [sym__list_lower_alpha_parens] = STATE(141), - [sym__list_item_lower_alpha_parens] = STATE(543), - [sym__list_upper_alpha_period] = STATE(141), - [sym__list_item_upper_alpha_period] = STATE(542), - [sym__list_upper_alpha_paren] = STATE(141), - [sym__list_item_upper_alpha_paren] = STATE(541), - [sym__list_upper_alpha_parens] = STATE(141), - [sym__list_item_upper_alpha_parens] = STATE(540), - [sym__list_lower_roman_period] = STATE(141), - [sym__list_item_lower_roman_period] = STATE(539), - [sym__list_lower_roman_paren] = STATE(141), - [sym__list_item_lower_roman_paren] = STATE(538), - [sym__list_lower_roman_parens] = STATE(141), - [sym__list_item_lower_roman_parens] = STATE(537), - [sym__list_upper_roman_period] = STATE(141), - [sym__list_item_upper_roman_period] = STATE(536), - [sym__list_upper_roman_paren] = STATE(141), - [sym__list_item_upper_roman_paren] = STATE(535), - [sym__list_upper_roman_parens] = STATE(141), - [sym__list_item_upper_roman_parens] = STATE(534), - [sym_table] = STATE(227), - [sym__table_content] = STATE(66), - [sym_table_separator] = STATE(66), - [sym_table_row] = STATE(72), - [sym_footnote] = STATE(227), - [sym_div] = STATE(227), - [sym_div_marker_begin] = STATE(985), - [sym_code_block] = STATE(227), - [sym_raw_block] = STATE(227), - [sym_thematic_break] = STATE(227), - [sym_block_quote] = STATE(227), - [sym__block_quote_prefix] = STATE(286), - [sym_link_reference_definition] = STATE(227), - [sym_block_attribute] = STATE(227), - [sym__paragraph] = STATE(227), - [sym__paragraph_content] = STATE(801), - [sym__inline] = STATE(703), - [sym__symbol_fallback] = STATE(366), - [aux_sym__list_dash_repeat1] = STATE(416), - [aux_sym__list_plus_repeat1] = STATE(419), - [aux_sym__list_star_repeat1] = STATE(407), - [aux_sym__list_task_repeat1] = STATE(371), - [aux_sym__list_definition_repeat1] = STATE(549), - [aux_sym__list_decimal_period_repeat1] = STATE(548), - [aux_sym__list_decimal_paren_repeat1] = STATE(547), - [aux_sym__list_decimal_parens_repeat1] = STATE(546), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(545), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(544), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(543), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(542), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(541), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(540), - [aux_sym__list_lower_roman_period_repeat1] = STATE(539), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(538), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(537), - [aux_sym__list_upper_roman_period_repeat1] = STATE(536), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(535), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(534), - [aux_sym_table_repeat1] = STATE(66), - [aux_sym__block_quote_prefix_repeat1] = STATE(323), - [aux_sym__inline_repeat1] = STATE(366), - [anon_sym_LBRACK] = ACTIONS(455), - [anon_sym_PIPE] = ACTIONS(455), - [anon_sym_LBRACE] = ACTIONS(455), - [aux_sym__inline_token1] = ACTIONS(455), - [anon_sym_LBRACE_DASH] = ACTIONS(455), - [sym__newline] = ACTIONS(459), - [sym__heading_begin] = ACTIONS(17), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(207), - [sym_list_marker_dash] = ACTIONS(457), - [sym_list_marker_star] = ACTIONS(457), - [sym_list_marker_plus] = ACTIONS(457), - [sym__list_marker_task_begin] = ACTIONS(457), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(209), - [sym__block_quote_continuation] = ACTIONS(457), - [sym__thematic_break_dash] = ACTIONS(211), - [sym__thematic_break_star] = ACTIONS(211), - [sym__footnote_begin] = ACTIONS(213), - }, - [62] = { - [sym__block_element] = STATE(675), - [sym_heading] = STATE(675), - [sym_list] = STATE(675), - [sym__list_dash] = STATE(699), - [sym__list_item_dash] = STATE(413), - [sym__list_plus] = STATE(699), - [sym__list_item_plus] = STATE(418), - [sym__list_star] = STATE(699), - [sym__list_item_star] = STATE(417), - [sym__list_task] = STATE(699), - [sym__list_item_task] = STATE(381), - [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(699), - [sym__list_item_definition] = STATE(582), - [sym__list_decimal_period] = STATE(699), - [sym__list_item_decimal_period] = STATE(581), - [sym__list_decimal_paren] = STATE(699), - [sym__list_item_decimal_paren] = STATE(579), - [sym__list_decimal_parens] = STATE(699), - [sym__list_item_decimal_parens] = STATE(578), - [sym__list_lower_alpha_period] = STATE(699), - [sym__list_item_lower_alpha_period] = STATE(577), - [sym__list_lower_alpha_paren] = STATE(699), - [sym__list_item_lower_alpha_paren] = STATE(576), - [sym__list_lower_alpha_parens] = STATE(699), - [sym__list_item_lower_alpha_parens] = STATE(575), - [sym__list_upper_alpha_period] = STATE(699), - [sym__list_item_upper_alpha_period] = STATE(574), - [sym__list_upper_alpha_paren] = STATE(699), - [sym__list_item_upper_alpha_paren] = STATE(573), - [sym__list_upper_alpha_parens] = STATE(699), - [sym__list_item_upper_alpha_parens] = STATE(572), - [sym__list_lower_roman_period] = STATE(699), - [sym__list_item_lower_roman_period] = STATE(571), - [sym__list_lower_roman_paren] = STATE(699), - [sym__list_item_lower_roman_paren] = STATE(570), - [sym__list_lower_roman_parens] = STATE(699), - [sym__list_item_lower_roman_parens] = STATE(569), - [sym__list_upper_roman_period] = STATE(699), - [sym__list_item_upper_roman_period] = STATE(568), - [sym__list_upper_roman_paren] = STATE(699), - [sym__list_item_upper_roman_paren] = STATE(567), - [sym__list_upper_roman_parens] = STATE(699), - [sym__list_item_upper_roman_parens] = STATE(566), - [sym_table] = STATE(675), - [sym__table_content] = STATE(289), - [sym_table_separator] = STATE(289), - [sym_table_row] = STATE(363), - [sym_footnote] = STATE(675), - [sym_div] = STATE(675), - [sym_div_marker_begin] = STATE(941), - [sym_code_block] = STATE(675), - [sym_raw_block] = STATE(675), - [sym_thematic_break] = STATE(675), - [sym_block_quote] = STATE(675), - [sym__block_quote_prefix] = STATE(288), - [sym_link_reference_definition] = STATE(675), - [sym_block_attribute] = STATE(675), - [sym__paragraph] = STATE(675), - [sym__paragraph_content] = STATE(764), - [sym__inline] = STATE(703), - [sym__symbol_fallback] = STATE(366), - [aux_sym__list_dash_repeat1] = STATE(413), - [aux_sym__list_plus_repeat1] = STATE(418), - [aux_sym__list_star_repeat1] = STATE(417), - [aux_sym__list_task_repeat1] = STATE(381), - [aux_sym__list_definition_repeat1] = STATE(582), - [aux_sym__list_decimal_period_repeat1] = STATE(581), - [aux_sym__list_decimal_paren_repeat1] = STATE(579), - [aux_sym__list_decimal_parens_repeat1] = STATE(578), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(577), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(576), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(575), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(574), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(573), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(572), - [aux_sym__list_lower_roman_period_repeat1] = STATE(571), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(570), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(569), - [aux_sym__list_upper_roman_period_repeat1] = STATE(568), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(567), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(566), - [aux_sym_table_repeat1] = STATE(289), - [aux_sym__block_quote_prefix_repeat1] = STATE(323), - [aux_sym__inline_repeat1] = STATE(366), - [anon_sym_LBRACK] = ACTIONS(455), - [anon_sym_PIPE] = ACTIONS(455), - [anon_sym_LBRACE] = ACTIONS(455), - [aux_sym__inline_token1] = ACTIONS(455), - [anon_sym_LBRACE_DASH] = ACTIONS(455), - [sym__newline] = ACTIONS(479), - [sym__heading_begin] = ACTIONS(403), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(405), - [sym_list_marker_dash] = ACTIONS(457), - [sym_list_marker_star] = ACTIONS(457), - [sym_list_marker_plus] = ACTIONS(457), - [sym__list_marker_task_begin] = ACTIONS(457), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(407), - [sym__block_quote_continuation] = ACTIONS(457), - [sym__thematic_break_dash] = ACTIONS(411), - [sym__thematic_break_star] = ACTIONS(411), - [sym__footnote_begin] = ACTIONS(413), + [sym_link_reference_definition] = STATE(638), + [sym_block_attribute] = STATE(638), + [sym__paragraph] = STATE(638), + [sym__paragraph_content] = STATE(890), + [sym__inline] = STATE(710), + [sym__symbol_fallback] = STATE(355), + [aux_sym__list_dash_repeat1] = STATE(420), + [aux_sym__list_plus_repeat1] = STATE(421), + [aux_sym__list_star_repeat1] = STATE(422), + [aux_sym__list_task_repeat1] = STATE(404), + [aux_sym__list_definition_repeat1] = STATE(527), + [aux_sym__list_decimal_period_repeat1] = STATE(524), + [aux_sym__list_decimal_paren_repeat1] = STATE(521), + [aux_sym__list_decimal_parens_repeat1] = STATE(520), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(518), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(515), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(514), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(510), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(501), + [aux_sym__list_lower_roman_period_repeat1] = STATE(500), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(499), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(498), + [aux_sym__list_upper_roman_period_repeat1] = STATE(497), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(579), + [aux_sym_table_repeat1] = STATE(358), + [aux_sym__block_quote_prefix_repeat1] = STATE(316), + [aux_sym__inline_repeat1] = STATE(355), + [anon_sym_LBRACK] = ACTIONS(443), + [anon_sym_PIPE] = ACTIONS(443), + [anon_sym_LBRACK_CARET] = ACTIONS(443), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_DOT] = ACTIONS(443), + [aux_sym_identifier_token1] = ACTIONS(443), + [aux_sym__inline_token1] = ACTIONS(443), + [anon_sym_LBRACE_DASH] = ACTIONS(443), + [anon_sym_POUND] = ACTIONS(443), + [anon_sym_PERCENT] = ACTIONS(443), + [sym__newline] = ACTIONS(465), + [sym__heading_begin] = ACTIONS(393), + [sym__div_begin] = ACTIONS(21), + [sym__code_block_begin] = ACTIONS(395), + [sym_list_marker_dash] = ACTIONS(445), + [sym_list_marker_star] = ACTIONS(445), + [sym_list_marker_plus] = ACTIONS(445), + [sym__list_marker_task_begin] = ACTIONS(445), + [sym_list_marker_definition] = ACTIONS(33), + [sym_list_marker_decimal_period] = ACTIONS(35), + [sym_list_marker_lower_alpha_period] = ACTIONS(37), + [sym_list_marker_upper_alpha_period] = ACTIONS(39), + [sym_list_marker_lower_roman_period] = ACTIONS(41), + [sym_list_marker_upper_roman_period] = ACTIONS(43), + [sym_list_marker_decimal_paren] = ACTIONS(45), + [sym_list_marker_lower_alpha_paren] = ACTIONS(47), + [sym_list_marker_upper_alpha_paren] = ACTIONS(49), + [sym_list_marker_lower_roman_paren] = ACTIONS(51), + [sym_list_marker_upper_roman_paren] = ACTIONS(53), + [sym_list_marker_decimal_parens] = ACTIONS(55), + [sym_list_marker_lower_alpha_parens] = ACTIONS(57), + [sym_list_marker_upper_alpha_parens] = ACTIONS(59), + [sym_list_marker_lower_roman_parens] = ACTIONS(61), + [sym_list_marker_upper_roman_parens] = ACTIONS(63), + [sym__block_quote_begin] = ACTIONS(397), + [sym__block_quote_continuation] = ACTIONS(445), + [sym__thematic_break_dash] = ACTIONS(401), + [sym__thematic_break_star] = ACTIONS(401), }, [63] = { - [sym__block_element] = STATE(890), - [sym_list] = STATE(890), - [sym__list_dash] = STATE(712), - [sym__list_item_dash] = STATE(400), - [sym__list_plus] = STATE(712), - [sym__list_item_plus] = STATE(401), - [sym__list_star] = STATE(712), - [sym__list_item_star] = STATE(402), - [sym__list_task] = STATE(712), - [sym__list_item_task] = STATE(387), + [sym__block_element] = STATE(724), + [sym_list] = STATE(724), + [sym__list_dash] = STATE(891), + [sym__list_item_dash] = STATE(418), + [sym__list_plus] = STATE(891), + [sym__list_item_plus] = STATE(417), + [sym__list_star] = STATE(891), + [sym__list_item_star] = STATE(416), + [sym__list_task] = STATE(891), + [sym__list_item_task] = STATE(390), [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(712), - [sym__list_item_definition] = STATE(489), - [sym__list_decimal_period] = STATE(712), - [sym__list_item_decimal_period] = STATE(565), - [sym__list_decimal_paren] = STATE(712), - [sym__list_item_decimal_paren] = STATE(564), - [sym__list_decimal_parens] = STATE(712), - [sym__list_item_decimal_parens] = STATE(563), - [sym__list_lower_alpha_period] = STATE(712), - [sym__list_item_lower_alpha_period] = STATE(603), - [sym__list_lower_alpha_paren] = STATE(712), - [sym__list_item_lower_alpha_paren] = STATE(561), - [sym__list_lower_alpha_parens] = STATE(712), - [sym__list_item_lower_alpha_parens] = STATE(560), - [sym__list_upper_alpha_period] = STATE(712), - [sym__list_item_upper_alpha_period] = STATE(558), - [sym__list_upper_alpha_paren] = STATE(712), - [sym__list_item_upper_alpha_paren] = STATE(557), - [sym__list_upper_alpha_parens] = STATE(712), - [sym__list_item_upper_alpha_parens] = STATE(556), - [sym__list_lower_roman_period] = STATE(712), - [sym__list_item_lower_roman_period] = STATE(555), - [sym__list_lower_roman_paren] = STATE(712), - [sym__list_item_lower_roman_paren] = STATE(554), - [sym__list_lower_roman_parens] = STATE(712), - [sym__list_item_lower_roman_parens] = STATE(553), - [sym__list_upper_roman_period] = STATE(712), - [sym__list_item_upper_roman_period] = STATE(552), - [sym__list_upper_roman_paren] = STATE(712), - [sym__list_item_upper_roman_paren] = STATE(551), - [sym__list_upper_roman_parens] = STATE(712), - [sym__list_item_upper_roman_parens] = STATE(550), - [sym_table] = STATE(890), - [sym__table_content] = STATE(291), - [sym_table_separator] = STATE(291), - [sym_table_row] = STATE(376), - [sym_footnote] = STATE(890), - [sym_div] = STATE(890), - [sym_div_marker_begin] = STATE(963), - [sym_code_block] = STATE(890), - [sym_raw_block] = STATE(890), - [sym_thematic_break] = STATE(890), - [sym_block_quote] = STATE(890), - [sym__block_quote_prefix] = STATE(287), - [sym_link_reference_definition] = STATE(890), - [sym_block_attribute] = STATE(890), - [sym__paragraph] = STATE(890), - [sym__paragraph_content] = STATE(745), - [sym__inline] = STATE(703), - [sym__symbol_fallback] = STATE(366), - [aux_sym__list_dash_repeat1] = STATE(400), - [aux_sym__list_plus_repeat1] = STATE(401), - [aux_sym__list_star_repeat1] = STATE(402), - [aux_sym__list_task_repeat1] = STATE(387), - [aux_sym__list_definition_repeat1] = STATE(489), - [aux_sym__list_decimal_period_repeat1] = STATE(565), - [aux_sym__list_decimal_paren_repeat1] = STATE(564), - [aux_sym__list_decimal_parens_repeat1] = STATE(563), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(603), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(561), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(560), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(558), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(557), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(556), - [aux_sym__list_lower_roman_period_repeat1] = STATE(555), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(554), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(553), - [aux_sym__list_upper_roman_period_repeat1] = STATE(552), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(551), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(550), - [aux_sym_table_repeat1] = STATE(291), - [aux_sym__block_quote_prefix_repeat1] = STATE(323), - [aux_sym__inline_repeat1] = STATE(366), - [anon_sym_LBRACK] = ACTIONS(461), - [anon_sym_PIPE] = ACTIONS(463), - [anon_sym_LBRACE] = ACTIONS(465), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [sym__block_close] = ACTIONS(481), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(469), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(471), - [sym__block_quote_continuation] = ACTIONS(483), - [sym__thematic_break_dash] = ACTIONS(473), - [sym__thematic_break_star] = ACTIONS(473), - [sym__footnote_begin] = ACTIONS(475), + [sym__list_definition] = STATE(891), + [sym__list_item_definition] = STATE(532), + [sym__list_decimal_period] = STATE(891), + [sym__list_item_decimal_period] = STATE(534), + [sym__list_decimal_paren] = STATE(891), + [sym__list_item_decimal_paren] = STATE(535), + [sym__list_decimal_parens] = STATE(891), + [sym__list_item_decimal_parens] = STATE(536), + [sym__list_lower_alpha_period] = STATE(891), + [sym__list_item_lower_alpha_period] = STATE(537), + [sym__list_lower_alpha_paren] = STATE(891), + [sym__list_item_lower_alpha_paren] = STATE(541), + [sym__list_lower_alpha_parens] = STATE(891), + [sym__list_item_lower_alpha_parens] = STATE(542), + [sym__list_upper_alpha_period] = STATE(891), + [sym__list_item_upper_alpha_period] = STATE(543), + [sym__list_upper_alpha_paren] = STATE(891), + [sym__list_item_upper_alpha_paren] = STATE(556), + [sym__list_upper_alpha_parens] = STATE(891), + [sym__list_item_upper_alpha_parens] = STATE(560), + [sym__list_lower_roman_period] = STATE(891), + [sym__list_item_lower_roman_period] = STATE(561), + [sym__list_lower_roman_paren] = STATE(891), + [sym__list_item_lower_roman_paren] = STATE(563), + [sym__list_lower_roman_parens] = STATE(891), + [sym__list_item_lower_roman_parens] = STATE(564), + [sym__list_upper_roman_period] = STATE(891), + [sym__list_item_upper_roman_period] = STATE(565), + [sym__list_upper_roman_paren] = STATE(891), + [sym__list_item_upper_roman_paren] = STATE(566), + [sym__list_upper_roman_parens] = STATE(891), + [sym__list_item_upper_roman_parens] = STATE(568), + [sym_table] = STATE(724), + [sym__table_content] = STATE(369), + [sym_table_separator] = STATE(369), + [sym_table_row] = STATE(384), + [sym_footnote] = STATE(724), + [sym_footnote_marker_begin] = STATE(1082), + [sym_div] = STATE(724), + [sym_div_marker_begin] = STATE(974), + [sym_code_block] = STATE(724), + [sym_raw_block] = STATE(724), + [sym_thematic_break] = STATE(724), + [sym_block_quote] = STATE(724), + [sym__block_quote_prefix] = STATE(288), + [sym_link_reference_definition] = STATE(724), + [sym_block_attribute] = STATE(724), + [sym__paragraph] = STATE(724), + [sym__paragraph_content] = STATE(754), + [sym__inline] = STATE(710), + [sym__symbol_fallback] = STATE(355), + [aux_sym__list_dash_repeat1] = STATE(418), + [aux_sym__list_plus_repeat1] = STATE(417), + [aux_sym__list_star_repeat1] = STATE(416), + [aux_sym__list_task_repeat1] = STATE(390), + [aux_sym__list_definition_repeat1] = STATE(532), + [aux_sym__list_decimal_period_repeat1] = STATE(534), + [aux_sym__list_decimal_paren_repeat1] = STATE(535), + [aux_sym__list_decimal_parens_repeat1] = STATE(536), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(537), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(541), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(542), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(543), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(556), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(560), + [aux_sym__list_lower_roman_period_repeat1] = STATE(561), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(563), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(564), + [aux_sym__list_upper_roman_period_repeat1] = STATE(565), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(566), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(568), + [aux_sym_table_repeat1] = STATE(369), + [aux_sym__block_quote_prefix_repeat1] = STATE(316), + [aux_sym__inline_repeat1] = STATE(355), + [anon_sym_LBRACK] = ACTIONS(449), + [anon_sym_PIPE] = ACTIONS(451), + [anon_sym_LBRACK_CARET] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(453), + [anon_sym_DOT] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(13), + [aux_sym__inline_token1] = ACTIONS(13), + [anon_sym_LBRACE_DASH] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(13), + [anon_sym_PERCENT] = ACTIONS(13), + [sym__block_close] = ACTIONS(467), + [sym__div_begin] = ACTIONS(21), + [sym__code_block_begin] = ACTIONS(457), + [sym_list_marker_dash] = ACTIONS(25), + [sym_list_marker_star] = ACTIONS(27), + [sym_list_marker_plus] = ACTIONS(29), + [sym__list_marker_task_begin] = ACTIONS(31), + [sym_list_marker_definition] = ACTIONS(33), + [sym_list_marker_decimal_period] = ACTIONS(35), + [sym_list_marker_lower_alpha_period] = ACTIONS(37), + [sym_list_marker_upper_alpha_period] = ACTIONS(39), + [sym_list_marker_lower_roman_period] = ACTIONS(41), + [sym_list_marker_upper_roman_period] = ACTIONS(43), + [sym_list_marker_decimal_paren] = ACTIONS(45), + [sym_list_marker_lower_alpha_paren] = ACTIONS(47), + [sym_list_marker_upper_alpha_paren] = ACTIONS(49), + [sym_list_marker_lower_roman_paren] = ACTIONS(51), + [sym_list_marker_upper_roman_paren] = ACTIONS(53), + [sym_list_marker_decimal_parens] = ACTIONS(55), + [sym_list_marker_lower_alpha_parens] = ACTIONS(57), + [sym_list_marker_upper_alpha_parens] = ACTIONS(59), + [sym_list_marker_lower_roman_parens] = ACTIONS(61), + [sym_list_marker_upper_roman_parens] = ACTIONS(63), + [sym__block_quote_begin] = ACTIONS(459), + [sym__block_quote_continuation] = ACTIONS(469), + [sym__thematic_break_dash] = ACTIONS(461), + [sym__thematic_break_star] = ACTIONS(461), }, }; static const uint16_t ts_small_parse_table[] = { [0] = 11, - ACTIONS(490), 1, + ACTIONS(474), 1, anon_sym_PIPE, - ACTIONS(492), 1, + ACTIONS(478), 1, sym__newline, - ACTIONS(494), 1, + ACTIONS(480), 1, sym__block_quote_continuation, - ACTIONS(496), 1, + ACTIONS(482), 1, sym__table_caption_begin, - STATE(70), 1, + STATE(72), 1, sym_table_row, - STATE(180), 1, + STATE(201), 1, sym_table_caption, - STATE(702), 1, + STATE(681), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1005), 1, + STATE(1053), 1, sym__block_quote_prefix, STATE(67), 3, sym__table_content, sym_table_separator, aux_sym_table_repeat1, - ACTIONS(488), 4, + ACTIONS(472), 9, anon_sym_LBRACK, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(486), 28, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(476), 27, + sym__block_close, sym__heading_begin, sym__div_begin, sym__code_block_begin, @@ -12115,35 +12535,38 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_begin, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - ts_builtin_sym_end, - [66] = 11, - ACTIONS(494), 1, + [70] = 11, + ACTIONS(480), 1, sym__block_quote_continuation, - ACTIONS(498), 1, + ACTIONS(484), 1, anon_sym_PIPE, - ACTIONS(500), 1, + ACTIONS(486), 1, sym__newline, - ACTIONS(502), 1, + ACTIONS(488), 1, sym__table_caption_begin, - STATE(71), 1, + STATE(70), 1, sym_table_row, - STATE(261), 1, + STATE(183), 1, sym_table_caption, - STATE(702), 1, + STATE(681), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1050), 1, + STATE(943), 1, sym__block_quote_prefix, STATE(68), 3, sym__table_content, sym_table_separator, aux_sym_table_repeat1, - ACTIONS(488), 4, + ACTIONS(472), 9, anon_sym_LBRACK, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(486), 28, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(476), 27, sym__heading_begin, sym__div_begin, sym__code_block_begin, @@ -12170,36 +12593,39 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_begin, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - sym__footnote_end, - [132] = 11, - ACTIONS(494), 1, + ts_builtin_sym_end, + [140] = 11, + ACTIONS(480), 1, sym__block_quote_continuation, - ACTIONS(504), 1, + ACTIONS(490), 1, anon_sym_PIPE, - ACTIONS(506), 1, + ACTIONS(492), 1, sym__newline, - ACTIONS(508), 1, + ACTIONS(494), 1, sym__table_caption_begin, - STATE(72), 1, + STATE(71), 1, sym_table_row, - STATE(205), 1, + STATE(214), 1, sym_table_caption, - STATE(702), 1, + STATE(681), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1043), 1, + STATE(1060), 1, sym__block_quote_prefix, STATE(69), 3, sym__table_content, sym_table_separator, aux_sym_table_repeat1, - ACTIONS(488), 4, + ACTIONS(472), 9, anon_sym_LBRACK, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(486), 28, - sym__block_close, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(476), 27, sym__heading_begin, sym__div_begin, sym__code_block_begin, @@ -12226,28 +12652,34 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_begin, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - [198] = 8, - ACTIONS(514), 1, + sym__footnote_end, + [210] = 8, + ACTIONS(498), 1, anon_sym_PIPE, - ACTIONS(517), 1, + ACTIONS(503), 1, sym__block_quote_continuation, - STATE(70), 1, + STATE(72), 1, sym_table_row, - STATE(702), 1, + STATE(681), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1005), 1, + STATE(1053), 1, sym__block_quote_prefix, STATE(67), 3, sym__table_content, sym_table_separator, aux_sym_table_repeat1, - ACTIONS(512), 4, + ACTIONS(496), 9, anon_sym_LBRACK, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(510), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(501), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -12275,30 +12707,33 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_begin, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, sym__table_caption_begin, - ts_builtin_sym_end, - [257] = 8, - ACTIONS(517), 1, + [273] = 8, + ACTIONS(503), 1, sym__block_quote_continuation, - ACTIONS(520), 1, + ACTIONS(506), 1, anon_sym_PIPE, - STATE(71), 1, + STATE(70), 1, sym_table_row, - STATE(702), 1, + STATE(681), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1050), 1, + STATE(943), 1, sym__block_quote_prefix, STATE(68), 3, sym__table_content, sym_table_separator, aux_sym_table_repeat1, - ACTIONS(512), 4, + ACTIONS(496), 9, anon_sym_LBRACK, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(510), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(501), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -12326,31 +12761,34 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_begin, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - sym__footnote_end, sym__table_caption_begin, - [316] = 8, - ACTIONS(517), 1, + ts_builtin_sym_end, + [336] = 8, + ACTIONS(503), 1, sym__block_quote_continuation, - ACTIONS(523), 1, + ACTIONS(509), 1, anon_sym_PIPE, - STATE(72), 1, + STATE(71), 1, sym_table_row, - STATE(702), 1, + STATE(681), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1043), 1, + STATE(1060), 1, sym__block_quote_prefix, STATE(69), 3, sym__table_content, sym_table_separator, aux_sym_table_repeat1, - ACTIONS(512), 4, + ACTIONS(496), 9, anon_sym_LBRACK, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(510), 30, - sym__block_close, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(501), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -12378,25 +12816,30 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_begin, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, + sym__footnote_end, sym__table_caption_begin, - [375] = 7, - ACTIONS(530), 1, + [399] = 7, + ACTIONS(516), 1, anon_sym_PIPE, - ACTIONS(533), 1, + ACTIONS(519), 1, sym__block_quote_continuation, - STATE(119), 1, + STATE(121), 1, sym_table_separator, - STATE(702), 1, + STATE(681), 1, aux_sym__block_quote_prefix_repeat1, - STATE(951), 1, + STATE(929), 1, sym__block_quote_prefix, - ACTIONS(528), 4, + ACTIONS(514), 9, anon_sym_LBRACK, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(526), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(512), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -12424,26 +12867,30 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_begin, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, sym__table_caption_begin, ts_builtin_sym_end, - [429] = 7, - ACTIONS(533), 1, + [457] = 7, + ACTIONS(519), 1, sym__block_quote_continuation, - ACTIONS(536), 1, + ACTIONS(522), 1, anon_sym_PIPE, - STATE(94), 1, + STATE(104), 1, sym_table_separator, - STATE(702), 1, + STATE(681), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1067), 1, + STATE(1077), 1, sym__block_quote_prefix, - ACTIONS(528), 4, + ACTIONS(514), 9, anon_sym_LBRACK, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(526), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(512), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -12471,26 +12918,30 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_begin, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, sym__footnote_end, sym__table_caption_begin, - [483] = 7, - ACTIONS(533), 1, + [515] = 7, + ACTIONS(519), 1, sym__block_quote_continuation, - ACTIONS(539), 1, + ACTIONS(525), 1, anon_sym_PIPE, - STATE(89), 1, + STATE(91), 1, sym_table_separator, - STATE(702), 1, + STATE(681), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1063), 1, + STATE(1073), 1, sym__block_quote_prefix, - ACTIONS(528), 4, + ACTIONS(514), 9, anon_sym_LBRACK, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(526), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(512), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -12519,20 +12970,24 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_begin, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, sym__table_caption_begin, - [537] = 4, - ACTIONS(502), 1, + [573] = 4, + ACTIONS(488), 1, sym__table_caption_begin, - STATE(262), 1, + STATE(244), 1, sym_table_caption, - ACTIONS(542), 5, + ACTIONS(530), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(544), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(528), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -12561,21 +13016,24 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - sym__footnote_end, - [583] = 4, - ACTIONS(508), 1, + ts_builtin_sym_end, + [623] = 4, + ACTIONS(494), 1, sym__table_caption_begin, - STATE(207), 1, + STATE(224), 1, sym_table_caption, - ACTIONS(542), 5, + ACTIONS(530), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(544), 30, - sym__block_close, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(528), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -12604,19 +13062,25 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - [629] = 4, - ACTIONS(496), 1, + sym__footnote_end, + [673] = 4, + ACTIONS(482), 1, sym__table_caption_begin, - STATE(240), 1, + STATE(185), 1, sym_table_caption, - ACTIONS(542), 5, + ACTIONS(530), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(544), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(528), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -12645,18 +13109,21 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - ts_builtin_sym_end, - [675] = 3, - ACTIONS(550), 1, - sym__div_end, - ACTIONS(548), 5, + [723] = 3, + ACTIONS(536), 1, + sym__code_block_end, + ACTIONS(534), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(546), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(532), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -12685,18 +13152,22 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, ts_builtin_sym_end, - [718] = 3, - ACTIONS(556), 1, - sym__code_block_end, - ACTIONS(552), 5, + [770] = 3, + ACTIONS(542), 1, + sym__div_end, + ACTIONS(540), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(554), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(538), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -12725,17 +13196,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - sym__footnote_end, - [761] = 2, - ACTIONS(558), 5, + ts_builtin_sym_end, + [817] = 2, + ACTIONS(544), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(560), 31, - sym__block_close, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(546), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -12764,19 +13238,23 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, + sym__footnote_end, sym__table_caption_begin, - [802] = 3, - ACTIONS(566), 1, - sym__code_block_end, - ACTIONS(562), 5, + [862] = 3, + ACTIONS(552), 1, + sym__div_end, + ACTIONS(548), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(564), 30, - sym__block_close, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(550), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -12805,18 +13283,22 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - [845] = 3, - ACTIONS(572), 1, + sym__footnote_end, + [909] = 3, + ACTIONS(554), 1, sym__code_block_end, - ACTIONS(568), 5, + ACTIONS(534), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(570), 30, - sym__block_close, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(532), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -12845,18 +13327,22 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - [888] = 3, - ACTIONS(578), 1, + sym__footnote_end, + [956] = 3, + ACTIONS(556), 1, sym__div_end, - ACTIONS(574), 5, + ACTIONS(540), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(576), 30, - sym__block_close, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(538), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -12885,18 +13371,22 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - [931] = 3, - ACTIONS(584), 1, - sym__div_end, - ACTIONS(580), 5, + sym__footnote_end, + [1003] = 3, + ACTIONS(562), 1, + sym__eof_or_newline, + ACTIONS(560), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(582), 30, - sym__block_close, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(558), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -12925,16 +13415,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - [974] = 2, - ACTIONS(586), 5, + ts_builtin_sym_end, + [1050] = 2, + ACTIONS(566), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(588), 31, - sym__block_close, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(564), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -12963,17 +13457,21 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, sym__table_caption_begin, - [1015] = 2, - ACTIONS(590), 5, + ts_builtin_sym_end, + [1095] = 2, + ACTIONS(568), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(592), 31, - sym__block_close, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(570), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -13002,19 +13500,23 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, + sym__footnote_end, sym__table_caption_begin, - [1056] = 3, - ACTIONS(598), 1, - sym__code_block_end, - ACTIONS(594), 5, + [1140] = 3, + ACTIONS(576), 1, + sym__div_end, + ACTIONS(572), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(596), 30, - sym__block_close, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(574), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -13043,18 +13545,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - [1099] = 3, - ACTIONS(604), 1, - sym__div_end, - ACTIONS(600), 5, + sym__footnote_end, + [1187] = 2, + ACTIONS(580), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(602), 30, - sym__block_close, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(578), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -13083,17 +13587,21 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - [1142] = 3, - ACTIONS(608), 1, - sym__eof_or_newline, - ACTIONS(606), 5, + sym__table_caption_begin, + ts_builtin_sym_end, + [1232] = 2, + ACTIONS(544), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(610), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(546), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -13122,18 +13630,21 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - sym__footnote_end, - [1185] = 3, - ACTIONS(614), 1, - sym__eof_or_newline, - ACTIONS(612), 5, + sym__table_caption_begin, + ts_builtin_sym_end, + [1277] = 2, + ACTIONS(568), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(616), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(570), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -13162,17 +13673,23 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - sym__footnote_end, - [1228] = 2, - ACTIONS(618), 5, + sym__table_caption_begin, + ts_builtin_sym_end, + [1322] = 3, + ACTIONS(582), 1, + sym__div_end, + ACTIONS(548), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(620), 31, - sym__block_close, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(550), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -13201,19 +13718,22 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - sym__table_caption_begin, - [1269] = 3, - ACTIONS(626), 1, - sym__code_block_end, - ACTIONS(622), 5, + ts_builtin_sym_end, + [1369] = 3, + ACTIONS(584), 1, + sym__div_end, + ACTIONS(572), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(624), 30, - sym__block_close, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(574), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -13242,15 +13762,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - [1312] = 2, - ACTIONS(628), 5, + ts_builtin_sym_end, + [1416] = 2, + ACTIONS(586), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(630), 31, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(588), 30, sym__block_close, sym__newline, sym__heading_begin, @@ -13280,17 +13805,22 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, sym__table_caption_begin, - [1353] = 2, - ACTIONS(632), 5, + [1461] = 3, + ACTIONS(590), 1, + sym__eof_or_newline, + ACTIONS(560), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(634), 31, - sym__block_close, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(558), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -13319,19 +13849,22 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - sym__table_caption_begin, - [1394] = 3, - ACTIONS(636), 1, - sym__eof_or_newline, - ACTIONS(612), 5, + sym__footnote_end, + [1508] = 3, + ACTIONS(596), 1, + sym__code_block_end, + ACTIONS(594), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(616), 30, - sym__block_close, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(592), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -13360,15 +13893,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - [1437] = 2, - ACTIONS(618), 5, + ts_builtin_sym_end, + [1555] = 2, + ACTIONS(566), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(620), 31, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(564), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -13397,19 +13935,23 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, sym__footnote_end, sym__table_caption_begin, - [1478] = 3, - ACTIONS(638), 1, + [1600] = 3, + ACTIONS(600), 1, sym__eof_or_newline, - ACTIONS(612), 5, + ACTIONS(598), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(616), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(602), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -13438,16 +13980,23 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - ts_builtin_sym_end, - [1521] = 2, - ACTIONS(632), 5, + sym__footnote_end, + [1647] = 3, + ACTIONS(604), 1, + sym__eof_or_newline, + ACTIONS(598), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(634), 31, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(602), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -13476,19 +14025,19 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - sym__table_caption_begin, - ts_builtin_sym_end, - [1562] = 3, - ACTIONS(640), 1, - sym__code_block_end, - ACTIONS(568), 5, + [1694] = 2, + ACTIONS(580), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(570), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(578), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -13517,18 +14066,24 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - ts_builtin_sym_end, - [1605] = 3, - ACTIONS(642), 1, - sym__code_block_end, - ACTIONS(622), 5, + sym__footnote_end, + sym__table_caption_begin, + [1739] = 3, + ACTIONS(606), 1, + sym__div_end, + ACTIONS(540), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(624), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(538), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -13557,18 +14112,21 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - ts_builtin_sym_end, - [1648] = 3, - ACTIONS(644), 1, + [1786] = 3, + ACTIONS(612), 1, sym__code_block_end, - ACTIONS(552), 5, + ACTIONS(610), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(554), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(608), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -13597,19 +14155,22 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, ts_builtin_sym_end, - [1691] = 3, - ACTIONS(646), 1, + [1833] = 3, + ACTIONS(618), 1, sym__code_block_end, - ACTIONS(552), 5, + ACTIONS(614), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(554), 30, - sym__block_close, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(616), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -13638,15 +14199,23 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - [1734] = 2, - ACTIONS(650), 5, + sym__footnote_end, + [1880] = 3, + ACTIONS(620), 1, + sym__code_block_end, + ACTIONS(534), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(648), 31, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(532), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -13675,17 +14244,19 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - sym__table_caption_begin, - ts_builtin_sym_end, - [1775] = 2, - ACTIONS(650), 5, + [1927] = 2, + ACTIONS(544), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(648), 31, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(546), 30, sym__block_close, sym__newline, sym__heading_begin, @@ -13715,16 +14286,21 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, sym__table_caption_begin, - [1816] = 2, - ACTIONS(558), 5, + [1972] = 2, + ACTIONS(568), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(560), 31, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(570), 30, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -13753,17 +14329,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, sym__table_caption_begin, - ts_builtin_sym_end, - [1857] = 2, - ACTIONS(628), 5, + [2017] = 2, + ACTIONS(586), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(630), 31, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(588), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -13792,19 +14371,24 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, + sym__footnote_end, sym__table_caption_begin, - ts_builtin_sym_end, - [1898] = 3, - ACTIONS(652), 1, + [2062] = 3, + ACTIONS(622), 1, sym__div_end, - ACTIONS(600), 5, + ACTIONS(548), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(602), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(550), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -13833,18 +14417,22 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - sym__footnote_end, - [1941] = 3, - ACTIONS(654), 1, + [2109] = 3, + ACTIONS(624), 1, sym__div_end, - ACTIONS(574), 5, + ACTIONS(572), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(576), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(574), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -13873,18 +14461,19 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - ts_builtin_sym_end, - [1984] = 3, - ACTIONS(656), 1, - sym__div_end, - ACTIONS(580), 5, + [2156] = 2, + ACTIONS(628), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(582), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(626), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -13913,16 +14502,24 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, + sym__table_caption_begin, ts_builtin_sym_end, - [2027] = 2, - ACTIONS(586), 5, + [2201] = 3, + ACTIONS(630), 1, + sym__code_block_end, + ACTIONS(594), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(588), 31, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(592), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -13951,17 +14548,22 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - sym__table_caption_begin, - ts_builtin_sym_end, - [2068] = 2, - ACTIONS(590), 5, + [2248] = 3, + ACTIONS(632), 1, + sym__code_block_end, + ACTIONS(610), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(592), 31, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(608), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -13990,19 +14592,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - sym__table_caption_begin, - ts_builtin_sym_end, - [2109] = 3, - ACTIONS(658), 1, - sym__code_block_end, - ACTIONS(594), 5, + [2295] = 2, + ACTIONS(628), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(596), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(626), 30, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -14031,16 +14634,21 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - sym__footnote_end, - [2152] = 2, - ACTIONS(590), 5, + sym__table_caption_begin, + [2340] = 2, + ACTIONS(634), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(592), 31, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(636), 30, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -14069,19 +14677,22 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - sym__footnote_end, sym__table_caption_begin, - [2193] = 3, - ACTIONS(660), 1, + [2385] = 3, + ACTIONS(642), 1, sym__code_block_end, - ACTIONS(594), 5, + ACTIONS(638), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(596), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(640), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -14110,16 +14721,23 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - ts_builtin_sym_end, - [2236] = 2, - ACTIONS(586), 5, + sym__footnote_end, + [2432] = 3, + ACTIONS(648), 1, + sym__div_end, + ACTIONS(644), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(588), 31, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(646), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -14148,19 +14766,19 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - sym__footnote_end, - sym__table_caption_begin, - [2277] = 3, - ACTIONS(662), 1, - sym__div_end, - ACTIONS(580), 5, + [2479] = 2, + ACTIONS(634), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(582), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(636), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -14189,18 +14807,24 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - sym__footnote_end, - [2320] = 3, - ACTIONS(664), 1, - sym__div_end, - ACTIONS(600), 5, + sym__table_caption_begin, + ts_builtin_sym_end, + [2524] = 3, + ACTIONS(650), 1, + sym__code_block_end, + ACTIONS(638), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(602), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(640), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -14229,18 +14853,21 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - ts_builtin_sym_end, - [2363] = 3, - ACTIONS(666), 1, + [2571] = 3, + ACTIONS(652), 1, sym__div_end, - ACTIONS(574), 5, + ACTIONS(644), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(576), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(646), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -14269,18 +14896,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, sym__footnote_end, - [2406] = 3, - ACTIONS(668), 1, - sym__code_block_end, - ACTIONS(568), 5, + [2618] = 2, + ACTIONS(634), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(570), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(636), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -14309,18 +14938,23 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, sym__footnote_end, - [2449] = 3, - ACTIONS(670), 1, - sym__code_block_end, - ACTIONS(562), 5, + sym__table_caption_begin, + [2663] = 3, + ACTIONS(654), 1, + sym__div_end, + ACTIONS(644), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(564), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(646), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -14349,16 +14983,23 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - sym__footnote_end, - [2492] = 2, - ACTIONS(618), 5, + ts_builtin_sym_end, + [2710] = 3, + ACTIONS(656), 1, + sym__code_block_end, + ACTIONS(614), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(620), 31, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(616), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -14387,17 +15028,22 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - sym__table_caption_begin, - ts_builtin_sym_end, - [2533] = 2, - ACTIONS(558), 5, + [2757] = 3, + ACTIONS(658), 1, + sym__eof_or_newline, + ACTIONS(560), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(560), 31, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(558), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -14426,17 +15072,19 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - sym__footnote_end, - sym__table_caption_begin, - [2574] = 2, - ACTIONS(650), 5, + [2804] = 2, + ACTIONS(586), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(648), 31, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(588), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -14465,19 +15113,21 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - sym__footnote_end, sym__table_caption_begin, - [2615] = 3, - ACTIONS(672), 1, - sym__div_end, - ACTIONS(548), 5, + ts_builtin_sym_end, + [2849] = 2, + ACTIONS(628), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(546), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(626), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -14506,18 +15156,22 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, sym__footnote_end, - [2658] = 3, - ACTIONS(674), 1, - sym__code_block_end, - ACTIONS(562), 5, + sym__table_caption_begin, + [2894] = 2, + ACTIONS(566), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, + anon_sym_POUND, + anon_sym_PERCENT, ACTIONS(564), 30, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -14546,18 +15200,22 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - ts_builtin_sym_end, - [2701] = 3, - ACTIONS(676), 1, + sym__table_caption_begin, + [2939] = 3, + ACTIONS(660), 1, sym__code_block_end, - ACTIONS(622), 5, + ACTIONS(610), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(624), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(608), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -14586,19 +15244,22 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, sym__footnote_end, - [2744] = 3, - ACTIONS(678), 1, - sym__eof_or_newline, - ACTIONS(606), 5, + [2986] = 3, + ACTIONS(662), 1, + sym__code_block_end, + ACTIONS(594), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(610), 30, - sym__block_close, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(592), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -14627,15 +15288,22 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - [2787] = 2, - ACTIONS(628), 5, + sym__footnote_end, + [3033] = 3, + ACTIONS(664), 1, + sym__code_block_end, + ACTIONS(638), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(630), 31, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(640), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -14664,17 +15332,22 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - sym__footnote_end, - sym__table_caption_begin, - [2828] = 2, - ACTIONS(632), 5, + ts_builtin_sym_end, + [3080] = 3, + ACTIONS(666), 1, + sym__code_block_end, + ACTIONS(614), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(634), 31, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(616), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -14703,19 +15376,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - sym__footnote_end, - sym__table_caption_begin, - [2869] = 3, - ACTIONS(680), 1, - sym__div_end, - ACTIONS(548), 5, + ts_builtin_sym_end, + [3127] = 2, + ACTIONS(580), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(546), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(578), 30, sym__block_close, sym__newline, sym__heading_begin, @@ -14745,15 +15419,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - [2912] = 2, - ACTIONS(682), 5, + sym__table_caption_begin, + [3172] = 2, + ACTIONS(668), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(684), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(670), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -14783,15 +15462,19 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - [2952] = 2, - ACTIONS(686), 5, + [3216] = 2, + ACTIONS(672), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(688), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(674), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -14821,15 +15504,19 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - [2992] = 2, - ACTIONS(692), 5, + [3260] = 2, + ACTIONS(678), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(690), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(676), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -14858,16 +15545,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, ts_builtin_sym_end, - [3032] = 2, - ACTIONS(696), 5, + [3304] = 2, + ACTIONS(682), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(694), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(680), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -14896,16 +15587,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, ts_builtin_sym_end, - [3072] = 2, - ACTIONS(700), 5, + [3348] = 2, + ACTIONS(686), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(698), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(684), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -14934,16 +15629,21 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, ts_builtin_sym_end, - [3112] = 2, - ACTIONS(552), 5, + [3392] = 2, + ACTIONS(688), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(554), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(690), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -14972,16 +15672,19 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - ts_builtin_sym_end, - [3152] = 2, - ACTIONS(702), 5, + [3436] = 2, + ACTIONS(682), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(704), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(680), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -15011,15 +15714,19 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - [3192] = 2, - ACTIONS(708), 5, + [3480] = 2, + ACTIONS(694), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(706), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(692), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -15048,16 +15755,21 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, ts_builtin_sym_end, - [3232] = 2, - ACTIONS(712), 5, + [3524] = 2, + ACTIONS(696), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(710), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(698), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -15086,16 +15798,19 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - ts_builtin_sym_end, - [3272] = 2, - ACTIONS(708), 5, + [3568] = 2, + ACTIONS(700), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(706), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(702), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -15125,15 +15840,19 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - [3312] = 2, - ACTIONS(702), 5, + [3612] = 2, + ACTIONS(706), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(704), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(704), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -15162,16 +15881,21 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, ts_builtin_sym_end, - [3352] = 2, - ACTIONS(716), 5, + [3656] = 2, + ACTIONS(708), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(714), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(710), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -15200,16 +15924,19 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - ts_builtin_sym_end, - [3392] = 2, - ACTIONS(718), 5, + [3700] = 2, + ACTIONS(712), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(720), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(714), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -15239,15 +15966,19 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - [3432] = 2, - ACTIONS(724), 5, + [3744] = 2, + ACTIONS(718), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(722), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(716), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -15276,16 +16007,21 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, ts_builtin_sym_end, - [3472] = 2, - ACTIONS(718), 5, + [3788] = 2, + ACTIONS(686), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(720), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(684), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -15314,16 +16050,19 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - ts_builtin_sym_end, - [3512] = 2, - ACTIONS(726), 5, + [3832] = 2, + ACTIONS(720), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(728), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(722), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -15353,15 +16092,19 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - [3552] = 2, - ACTIONS(732), 5, + [3876] = 2, + ACTIONS(726), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(730), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(724), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -15390,16 +16133,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, ts_builtin_sym_end, - [3592] = 2, - ACTIONS(734), 5, + [3920] = 2, + ACTIONS(728), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(736), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(730), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -15429,16 +16176,21 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - [3632] = 2, - ACTIONS(740), 5, + [3964] = 2, + ACTIONS(732), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(738), 30, - sym__newline, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(734), 29, + sym__block_close, + sym__newline, sym__heading_begin, sym__div_begin, sym__code_block_begin, @@ -15466,16 +16218,19 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - ts_builtin_sym_end, - [3672] = 2, - ACTIONS(744), 5, + [4008] = 2, + ACTIONS(738), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(742), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(736), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -15504,16 +16259,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, ts_builtin_sym_end, - [3712] = 2, - ACTIONS(748), 5, + [4052] = 2, + ACTIONS(720), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(746), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(722), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -15542,16 +16301,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, ts_builtin_sym_end, - [3752] = 2, - ACTIONS(752), 5, + [4096] = 2, + ACTIONS(742), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(750), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(740), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -15580,16 +16343,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, ts_builtin_sym_end, - [3792] = 2, - ACTIONS(756), 5, + [4140] = 2, + ACTIONS(744), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(754), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(746), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -15618,16 +16385,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - ts_builtin_sym_end, - [3832] = 2, - ACTIONS(760), 5, + sym__footnote_end, + [4184] = 2, + ACTIONS(750), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(758), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(748), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -15656,16 +16427,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, ts_builtin_sym_end, - [3872] = 2, - ACTIONS(764), 5, + [4228] = 2, + ACTIONS(752), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(762), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(754), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -15694,17 +16469,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - ts_builtin_sym_end, - [3912] = 2, - ACTIONS(766), 5, + sym__footnote_end, + [4272] = 2, + ACTIONS(758), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(768), 30, - sym__block_close, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(756), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -15733,15 +16511,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - [3952] = 2, - ACTIONS(772), 5, + ts_builtin_sym_end, + [4316] = 2, + ACTIONS(672), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(770), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(674), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -15770,16 +16553,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, ts_builtin_sym_end, - [3992] = 2, - ACTIONS(734), 5, + [4360] = 2, + ACTIONS(762), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(736), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(760), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -15808,16 +16595,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, ts_builtin_sym_end, - [4032] = 2, - ACTIONS(776), 5, + [4404] = 2, + ACTIONS(764), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(774), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(766), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -15846,16 +16637,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - ts_builtin_sym_end, - [4072] = 2, - ACTIONS(780), 5, + sym__footnote_end, + [4448] = 2, + ACTIONS(770), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(778), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(768), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -15884,16 +16679,21 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, ts_builtin_sym_end, - [4112] = 2, - ACTIONS(784), 5, + [4492] = 2, + ACTIONS(638), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(782), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(640), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -15922,16 +16722,19 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - ts_builtin_sym_end, - [4152] = 2, - ACTIONS(788), 5, + [4536] = 2, + ACTIONS(774), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(786), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(772), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -15960,16 +16763,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, ts_builtin_sym_end, - [4192] = 2, - ACTIONS(792), 5, + [4580] = 2, + ACTIONS(638), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(790), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(640), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -15998,17 +16805,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, ts_builtin_sym_end, - [4232] = 2, - ACTIONS(724), 5, + [4624] = 2, + ACTIONS(778), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(722), 30, - sym__block_close, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(776), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -16037,15 +16847,21 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - [4272] = 2, - ACTIONS(796), 5, + ts_builtin_sym_end, + [4668] = 2, + ACTIONS(780), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(794), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(782), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -16074,16 +16890,19 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - ts_builtin_sym_end, - [4312] = 2, - ACTIONS(800), 5, + [4712] = 2, + ACTIONS(668), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(798), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(670), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -16112,16 +16931,21 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, ts_builtin_sym_end, - [4352] = 2, - ACTIONS(804), 5, + [4756] = 2, + ACTIONS(764), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(802), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(766), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -16150,16 +16974,19 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - ts_builtin_sym_end, - [4392] = 2, - ACTIONS(808), 5, + [4800] = 2, + ACTIONS(786), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(806), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(784), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -16188,16 +17015,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, ts_builtin_sym_end, - [4432] = 2, - ACTIONS(812), 5, + [4844] = 2, + ACTIONS(788), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(810), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(790), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -16226,17 +17057,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - ts_builtin_sym_end, - [4472] = 2, - ACTIONS(700), 5, + sym__footnote_end, + [4888] = 2, + ACTIONS(794), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(698), 30, - sym__block_close, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(792), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -16265,15 +17099,21 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - [4512] = 2, - ACTIONS(816), 5, + ts_builtin_sym_end, + [4932] = 2, + ACTIONS(796), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(814), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(798), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -16302,17 +17142,19 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - ts_builtin_sym_end, - [4552] = 2, - ACTIONS(818), 5, + [4976] = 2, + ACTIONS(802), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(820), 30, - sym__block_close, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(800), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -16341,15 +17183,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - [4592] = 2, - ACTIONS(824), 5, + ts_builtin_sym_end, + [5020] = 2, + ACTIONS(678), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(822), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(676), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -16378,17 +17225,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - ts_builtin_sym_end, - [4632] = 2, - ACTIONS(732), 5, + sym__footnote_end, + [5064] = 2, + ACTIONS(806), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(730), 30, - sym__block_close, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(804), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -16417,15 +17267,21 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - [4672] = 2, - ACTIONS(828), 5, + ts_builtin_sym_end, + [5108] = 2, + ACTIONS(808), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(826), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(810), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -16454,17 +17310,19 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - ts_builtin_sym_end, - [4712] = 2, - ACTIONS(740), 5, + [5152] = 2, + ACTIONS(814), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(738), 30, - sym__block_close, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(812), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -16493,15 +17351,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - [4752] = 2, - ACTIONS(832), 5, + ts_builtin_sym_end, + [5196] = 2, + ACTIONS(694), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(830), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(692), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -16530,16 +17393,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - ts_builtin_sym_end, - [4792] = 2, - ACTIONS(836), 5, + sym__footnote_end, + [5240] = 2, + ACTIONS(818), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(834), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(816), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -16568,16 +17435,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, ts_builtin_sym_end, - [4832] = 2, - ACTIONS(840), 5, + [5284] = 2, + ACTIONS(706), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(838), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(704), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -16606,17 +17477,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - ts_builtin_sym_end, - [4872] = 2, - ACTIONS(748), 5, + sym__footnote_end, + [5328] = 2, + ACTIONS(822), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(746), 30, - sym__block_close, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(820), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -16645,16 +17519,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - [4912] = 2, - ACTIONS(756), 5, + ts_builtin_sym_end, + [5372] = 2, + ACTIONS(718), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(754), 30, - sym__block_close, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(716), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -16683,15 +17561,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - [4952] = 2, - ACTIONS(542), 5, + sym__footnote_end, + [5416] = 2, + ACTIONS(824), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(544), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(826), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -16720,16 +17603,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - ts_builtin_sym_end, - [4992] = 2, - ACTIONS(764), 5, + sym__footnote_end, + [5460] = 2, + ACTIONS(828), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(762), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(830), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -16759,15 +17646,19 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - [5032] = 2, - ACTIONS(818), 5, + [5504] = 2, + ACTIONS(726), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(820), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(724), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -16796,16 +17687,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - ts_builtin_sym_end, - [5072] = 2, - ACTIONS(788), 5, + sym__footnote_end, + [5548] = 2, + ACTIONS(530), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(786), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(528), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -16834,17 +17729,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - sym__footnote_end, - [5112] = 2, - ACTIONS(772), 5, + ts_builtin_sym_end, + [5592] = 2, + ACTIONS(738), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(770), 30, - sym__block_close, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(736), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -16873,15 +17771,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - [5152] = 2, - ACTIONS(776), 5, + sym__footnote_end, + [5636] = 2, + ACTIONS(832), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(774), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(834), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -16911,15 +17814,19 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - [5192] = 2, - ACTIONS(784), 5, + [5680] = 2, + ACTIONS(752), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(782), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(754), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -16949,15 +17856,19 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - [5232] = 2, - ACTIONS(836), 5, + [5724] = 2, + ACTIONS(742), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(834), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(740), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -16986,16 +17897,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, sym__footnote_end, - [5272] = 2, - ACTIONS(686), 5, + [5768] = 2, + ACTIONS(838), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(688), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(836), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -17024,17 +17939,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - sym__footnote_end, - [5312] = 2, - ACTIONS(792), 5, + ts_builtin_sym_end, + [5812] = 2, + ACTIONS(750), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(790), 30, - sym__block_close, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(748), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -17063,15 +17981,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - [5352] = 2, - ACTIONS(842), 5, + sym__footnote_end, + [5856] = 2, + ACTIONS(744), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(844), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(746), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -17100,17 +18023,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - sym__footnote_end, - [5392] = 2, - ACTIONS(796), 5, + ts_builtin_sym_end, + [5900] = 2, + ACTIONS(758), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(794), 30, - sym__block_close, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(756), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -17139,15 +18065,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - [5432] = 2, - ACTIONS(692), 5, + sym__footnote_end, + [5944] = 2, + ACTIONS(762), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(690), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(760), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -17176,17 +18107,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, sym__footnote_end, - [5472] = 2, - ACTIONS(804), 5, + [5988] = 2, + ACTIONS(770), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(802), 30, - sym__block_close, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(768), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -17215,15 +18149,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - [5512] = 2, - ACTIONS(848), 5, + sym__footnote_end, + [6032] = 2, + ACTIONS(780), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(846), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(782), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -17252,16 +18191,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - ts_builtin_sym_end, - [5552] = 2, - ACTIONS(812), 5, + sym__footnote_end, + [6076] = 2, + ACTIONS(840), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(810), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(842), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -17291,15 +18234,19 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - [5592] = 2, - ACTIONS(696), 5, + [6120] = 2, + ACTIONS(774), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(694), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(772), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -17328,16 +18275,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, sym__footnote_end, - [5632] = 2, - ACTIONS(716), 5, + [6164] = 2, + ACTIONS(780), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(714), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(782), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -17366,16 +18317,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - sym__footnote_end, - [5672] = 2, - ACTIONS(744), 5, + ts_builtin_sym_end, + [6208] = 2, + ACTIONS(778), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(742), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(776), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -17404,17 +18359,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, sym__footnote_end, - [5712] = 2, - ACTIONS(816), 5, + [6252] = 2, + ACTIONS(668), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(814), 30, - sym__block_close, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(670), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -17443,16 +18401,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - [5752] = 2, - ACTIONS(824), 5, + sym__footnote_end, + [6296] = 2, + ACTIONS(786), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(822), 30, - sym__block_close, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(784), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -17481,15 +18443,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - [5792] = 2, - ACTIONS(828), 5, + sym__footnote_end, + [6340] = 2, + ACTIONS(530), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(826), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(528), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -17519,16 +18486,19 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - [5832] = 2, - ACTIONS(832), 5, + [6384] = 2, + ACTIONS(638), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(830), 30, - sym__block_close, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(640), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -17557,15 +18527,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - [5872] = 2, - ACTIONS(726), 5, + sym__footnote_end, + [6428] = 2, + ACTIONS(794), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(728), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(792), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -17594,16 +18569,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - ts_builtin_sym_end, - [5912] = 2, - ACTIONS(800), 5, + sym__footnote_end, + [6472] = 2, + ACTIONS(802), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(798), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(800), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -17632,16 +18611,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, sym__footnote_end, - [5952] = 2, - ACTIONS(542), 5, + [6516] = 2, + ACTIONS(822), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(544), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(820), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -17671,16 +18654,19 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - [5992] = 2, - ACTIONS(850), 5, + [6560] = 2, + ACTIONS(806), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(852), 30, - sym__block_close, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(804), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -17709,16 +18695,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - [6032] = 2, - ACTIONS(854), 5, + sym__footnote_end, + [6604] = 2, + ACTIONS(846), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(856), 30, - sym__block_close, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(844), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -17747,15 +18737,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - [6072] = 2, - ACTIONS(850), 5, + ts_builtin_sym_end, + [6648] = 2, + ACTIONS(814), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(852), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(812), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -17784,16 +18779,21 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - ts_builtin_sym_end, - [6112] = 2, - ACTIONS(858), 5, + sym__footnote_end, + [6692] = 2, + ACTIONS(818), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(860), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(816), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -17822,16 +18822,19 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - sym__footnote_end, - [6152] = 2, - ACTIONS(808), 5, + [6736] = 2, + ACTIONS(818), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(806), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(816), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -17860,16 +18863,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, sym__footnote_end, - [6192] = 2, - ACTIONS(552), 5, + [6780] = 2, + ACTIONS(840), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(554), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(842), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -17898,17 +18905,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - sym__footnote_end, - [6232] = 2, - ACTIONS(848), 5, + ts_builtin_sym_end, + [6824] = 2, + ACTIONS(822), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(846), 30, - sym__block_close, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(820), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -17937,15 +18947,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - [6272] = 2, - ACTIONS(840), 5, + sym__footnote_end, + [6868] = 2, + ACTIONS(814), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(838), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(812), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -17975,16 +18990,19 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - [6312] = 2, - ACTIONS(780), 5, + [6912] = 2, + ACTIONS(530), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(778), 30, - sym__block_close, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(528), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -18013,15 +19031,21 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - [6352] = 2, - ACTIONS(682), 5, + sym__footnote_end, + [6956] = 2, + ACTIONS(806), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(684), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(804), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -18050,17 +19074,19 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - ts_builtin_sym_end, - [6392] = 2, - ACTIONS(752), 5, + [7000] = 2, + ACTIONS(840), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(750), 30, - sym__block_close, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(842), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -18089,16 +19115,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - [6432] = 2, - ACTIONS(552), 5, + sym__footnote_end, + [7044] = 2, + ACTIONS(850), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(554), 30, - sym__block_close, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(848), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -18127,16 +19157,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - [6472] = 2, - ACTIONS(808), 5, + ts_builtin_sym_end, + [7088] = 2, + ACTIONS(850), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(806), 30, - sym__block_close, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(848), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -18165,15 +19199,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - [6512] = 2, - ACTIONS(800), 5, + sym__footnote_end, + [7132] = 2, + ACTIONS(802), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(798), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(800), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -18203,16 +19242,19 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - [6552] = 2, - ACTIONS(744), 5, + [7176] = 2, + ACTIONS(752), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(742), 30, - sym__block_close, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(754), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -18241,15 +19283,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - [6592] = 2, - ACTIONS(716), 5, + ts_builtin_sym_end, + [7220] = 2, + ACTIONS(794), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(714), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(792), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -18279,15 +19326,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - [6632] = 2, - ACTIONS(752), 5, + [7264] = 2, + ACTIONS(850), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(750), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(848), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -18316,16 +19368,19 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - sym__footnote_end, - [6672] = 2, - ACTIONS(864), 5, + [7308] = 2, + ACTIONS(720), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(862), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(722), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -18354,17 +19409,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - ts_builtin_sym_end, - [6712] = 2, - ACTIONS(696), 5, + sym__footnote_end, + [7352] = 2, + ACTIONS(832), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(694), 30, - sym__block_close, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(834), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -18393,16 +19451,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - [6752] = 2, - ACTIONS(692), 5, + sym__footnote_end, + [7396] = 2, + ACTIONS(808), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(690), 30, - sym__block_close, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(810), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -18431,16 +19493,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - [6792] = 2, - ACTIONS(866), 5, + ts_builtin_sym_end, + [7440] = 2, + ACTIONS(686), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(868), 30, - sym__block_close, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(684), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -18469,15 +19535,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - [6832] = 2, - ACTIONS(842), 5, + sym__footnote_end, + [7484] = 2, + ACTIONS(786), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(844), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(784), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -18507,15 +19578,19 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - [6872] = 2, - ACTIONS(766), 5, + [7528] = 2, + ACTIONS(682), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(768), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(680), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -18544,16 +19619,21 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - ts_builtin_sym_end, - [6912] = 2, - ACTIONS(686), 5, + sym__footnote_end, + [7572] = 2, + ACTIONS(778), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(688), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(776), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -18582,16 +19662,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - ts_builtin_sym_end, - [6952] = 2, - ACTIONS(780), 5, + [7616] = 2, + ACTIONS(788), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(778), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(790), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -18620,17 +19704,19 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - sym__footnote_end, - [6992] = 2, - ACTIONS(836), 5, + [7660] = 2, + ACTIONS(688), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(834), 30, - sym__block_close, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(690), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -18659,15 +19745,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - [7032] = 2, - ACTIONS(788), 5, + sym__footnote_end, + [7704] = 2, + ACTIONS(774), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(786), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(772), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -18697,15 +19788,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - [7072] = 2, - ACTIONS(726), 5, + [7748] = 2, + ACTIONS(846), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(728), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(844), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -18734,16 +19830,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - sym__footnote_end, - [7112] = 2, - ACTIONS(718), 5, + [7792] = 2, + ACTIONS(770), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(720), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(768), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -18772,16 +19872,19 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - sym__footnote_end, - [7152] = 2, - ACTIONS(840), 5, + [7836] = 2, + ACTIONS(732), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(838), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(734), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -18810,16 +19913,21 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - sym__footnote_end, - [7192] = 2, - ACTIONS(818), 5, + ts_builtin_sym_end, + [7880] = 2, + ACTIONS(762), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(820), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(760), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -18848,16 +19956,19 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - sym__footnote_end, - [7232] = 2, - ACTIONS(700), 5, + [7924] = 2, + ACTIONS(728), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(698), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(730), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -18886,16 +19997,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - sym__footnote_end, - [7272] = 2, - ACTIONS(708), 5, + ts_builtin_sym_end, + [7968] = 2, + ACTIONS(696), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(706), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(698), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -18924,16 +20039,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, sym__footnote_end, - [7312] = 2, - ACTIONS(702), 5, + [8012] = 2, + ACTIONS(828), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(704), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(830), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -18962,16 +20081,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, sym__footnote_end, - [7352] = 2, - ACTIONS(854), 5, + [8056] = 2, + ACTIONS(712), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(856), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(714), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -19000,16 +20123,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, ts_builtin_sym_end, - [7392] = 2, - ACTIONS(724), 5, + [8100] = 2, + ACTIONS(708), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(722), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(710), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -19038,16 +20165,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - sym__footnote_end, - [7432] = 2, - ACTIONS(848), 5, + ts_builtin_sym_end, + [8144] = 2, + ACTIONS(700), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(846), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(702), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -19076,16 +20207,21 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - sym__footnote_end, - [7472] = 2, - ACTIONS(732), 5, + ts_builtin_sym_end, + [8188] = 2, + ACTIONS(758), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(730), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(756), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -19114,16 +20250,19 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - sym__footnote_end, - [7512] = 2, - ACTIONS(740), 5, + [8232] = 2, + ACTIONS(832), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(738), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(834), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -19152,16 +20291,21 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - sym__footnote_end, - [7552] = 2, - ACTIONS(748), 5, + ts_builtin_sym_end, + [8276] = 2, + ACTIONS(750), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(746), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(748), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -19190,16 +20334,19 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - sym__footnote_end, - [7592] = 2, - ACTIONS(756), 5, + [8320] = 2, + ACTIONS(700), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(754), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(702), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -19228,16 +20375,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, sym__footnote_end, - [7632] = 2, - ACTIONS(764), 5, + [8364] = 2, + ACTIONS(696), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(762), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(698), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -19266,17 +20417,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - sym__footnote_end, - [7672] = 2, - ACTIONS(858), 5, + ts_builtin_sym_end, + [8408] = 2, + ACTIONS(796), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(860), 30, - sym__block_close, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(798), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -19305,15 +20459,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - [7712] = 2, - ACTIONS(772), 5, + sym__footnote_end, + [8452] = 2, + ACTIONS(708), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(770), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(710), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -19342,16 +20501,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, sym__footnote_end, - [7752] = 2, - ACTIONS(776), 5, + [8496] = 2, + ACTIONS(688), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(774), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(690), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -19380,16 +20543,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - sym__footnote_end, - [7792] = 2, - ACTIONS(784), 5, + ts_builtin_sym_end, + [8540] = 2, + ACTIONS(854), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(782), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(852), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -19418,16 +20585,21 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - sym__footnote_end, - [7832] = 2, - ACTIONS(792), 5, + ts_builtin_sym_end, + [8584] = 2, + ACTIONS(824), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(790), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(826), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -19456,16 +20628,19 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - sym__footnote_end, - [7872] = 2, - ACTIONS(796), 5, + [8628] = 2, + ACTIONS(712), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(794), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(714), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -19494,16 +20669,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, sym__footnote_end, - [7912] = 2, - ACTIONS(804), 5, + [8672] = 2, + ACTIONS(764), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(802), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(766), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -19532,16 +20711,21 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - sym__footnote_end, - [7952] = 2, - ACTIONS(812), 5, + ts_builtin_sym_end, + [8716] = 2, + ACTIONS(742), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(810), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(740), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -19570,16 +20754,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - sym__footnote_end, - [7992] = 2, - ACTIONS(816), 5, + [8760] = 2, + ACTIONS(738), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(814), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(736), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -19608,16 +20796,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - sym__footnote_end, - [8032] = 2, - ACTIONS(824), 5, + [8804] = 2, + ACTIONS(744), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(822), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(746), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -19646,16 +20838,19 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - sym__footnote_end, - [8072] = 2, - ACTIONS(828), 5, + [8848] = 2, + ACTIONS(728), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(826), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(730), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -19684,16 +20879,21 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, sym__footnote_end, - [8112] = 2, - ACTIONS(832), 5, + [8892] = 2, + ACTIONS(726), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(830), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(724), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -19722,16 +20922,19 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - sym__footnote_end, - [8152] = 2, - ACTIONS(864), 5, + [8936] = 2, + ACTIONS(718), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(862), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(716), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -19761,15 +20964,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - [8192] = 2, - ACTIONS(542), 5, + [8980] = 2, + ACTIONS(706), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(544), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(704), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -19798,16 +21006,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - sym__footnote_end, - [8232] = 2, - ACTIONS(854), 5, + [9024] = 2, + ACTIONS(694), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(856), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(692), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -19836,16 +21048,19 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - sym__footnote_end, - [8272] = 2, - ACTIONS(850), 5, + [9068] = 2, + ACTIONS(732), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(852), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(734), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -19874,16 +21089,21 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, sym__footnote_end, - [8312] = 2, - ACTIONS(682), 5, + [9112] = 2, + ACTIONS(678), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(684), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(676), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -19912,16 +21132,19 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - sym__footnote_end, - [8352] = 2, - ACTIONS(866), 5, + [9156] = 2, + ACTIONS(796), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(868), 30, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(798), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -19950,18 +21173,25 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - sym__footnote_end, - [8392] = 2, - ACTIONS(870), 5, + ts_builtin_sym_end, + [9200] = 4, + ACTIONS(860), 1, + sym__block_quote_continuation, + STATE(266), 1, + aux_sym__block_quote_prefix_repeat1, + ACTIONS(856), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(872), 29, - sym__newline, - sym__heading_begin, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(858), 26, + sym__block_close, sym__div_begin, sym__code_block_begin, sym_list_marker_dash, @@ -19985,23 +21215,23 @@ static const uint16_t ts_small_parse_table[] = { sym_list_marker_lower_roman_parens, sym_list_marker_upper_roman_parens, sym__block_quote_begin, - sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - [8431] = 4, - ACTIONS(878), 1, - sym__block_quote_continuation, - STATE(267), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(874), 5, + [9247] = 2, + ACTIONS(863), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(876), 27, - sym__block_close, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(865), 28, + sym__newline, + sym__heading_begin, sym__div_begin, sym__code_block_begin, sym_list_marker_dash, @@ -20025,17 +21255,22 @@ static const uint16_t ts_small_parse_table[] = { sym_list_marker_lower_roman_parens, sym_list_marker_upper_roman_parens, sym__block_quote_begin, + sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - [8474] = 2, - ACTIONS(455), 5, + [9290] = 2, + ACTIONS(443), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(457), 28, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(445), 27, sym__block_close, sym__div_begin, sym__code_block_begin, @@ -20063,7290 +21298,7988 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_begin, - [8512] = 11, - ACTIONS(883), 1, + [9332] = 11, + ACTIONS(869), 1, anon_sym_RBRACE, - ACTIONS(885), 1, + ACTIONS(871), 1, anon_sym_DOT, - ACTIONS(887), 1, - sym_identifier, - ACTIONS(889), 1, + ACTIONS(874), 1, + aux_sym_identifier_token1, + ACTIONS(877), 1, sym__whitespace1, - ACTIONS(891), 1, - sym__id, - ACTIONS(893), 1, + ACTIONS(879), 1, anon_sym_PERCENT, - STATE(314), 1, + ACTIONS(882), 1, + sym__id, + STATE(365), 1, aux_sym_block_attribute_repeat1, - STATE(945), 1, + STATE(932), 1, sym_key, - ACTIONS(895), 2, + ACTIONS(884), 2, sym__eof_or_newline, sym__newline_inline, - STATE(468), 3, + STATE(433), 4, sym_class, + sym_identifier, sym_key_value, sym__comment_no_newline, - ACTIONS(881), 5, + ACTIONS(867), 7, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [8553] = 11, - ACTIONS(885), 1, + anon_sym_POUND, + [9376] = 11, + ACTIONS(871), 1, anon_sym_DOT, - ACTIONS(887), 1, - sym_identifier, - ACTIONS(889), 1, + ACTIONS(874), 1, + aux_sym_identifier_token1, + ACTIONS(877), 1, sym__whitespace1, - ACTIONS(891), 1, - sym__id, - ACTIONS(893), 1, + ACTIONS(879), 1, anon_sym_PERCENT, - ACTIONS(897), 1, + ACTIONS(882), 1, + sym__id, + ACTIONS(886), 1, anon_sym_RBRACE, - STATE(312), 1, + STATE(377), 1, aux_sym_block_attribute_repeat1, - STATE(945), 1, + STATE(932), 1, sym_key, - ACTIONS(895), 2, + ACTIONS(884), 2, sym__eof_or_newline, sym__newline_inline, - STATE(468), 3, + STATE(433), 4, sym_class, + sym_identifier, sym_key_value, sym__comment_no_newline, - ACTIONS(881), 5, + ACTIONS(867), 7, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [8594] = 11, - ACTIONS(885), 1, + anon_sym_POUND, + [9420] = 11, + ACTIONS(871), 1, anon_sym_DOT, - ACTIONS(887), 1, - sym_identifier, - ACTIONS(889), 1, + ACTIONS(874), 1, + aux_sym_identifier_token1, + ACTIONS(877), 1, sym__whitespace1, - ACTIONS(891), 1, - sym__id, - ACTIONS(893), 1, + ACTIONS(879), 1, anon_sym_PERCENT, - ACTIONS(899), 1, + ACTIONS(882), 1, + sym__id, + ACTIONS(888), 1, anon_sym_RBRACE, - STATE(313), 1, + STATE(364), 1, aux_sym_block_attribute_repeat1, - STATE(945), 1, + STATE(932), 1, sym_key, - ACTIONS(895), 2, + ACTIONS(884), 2, sym__eof_or_newline, sym__newline_inline, - STATE(468), 3, + STATE(433), 4, sym_class, + sym_identifier, sym_key_value, sym__comment_no_newline, - ACTIONS(881), 5, + ACTIONS(867), 7, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [8635] = 11, - ACTIONS(885), 1, + anon_sym_POUND, + [9464] = 11, + ACTIONS(871), 1, anon_sym_DOT, - ACTIONS(887), 1, - sym_identifier, - ACTIONS(889), 1, + ACTIONS(874), 1, + aux_sym_identifier_token1, + ACTIONS(877), 1, sym__whitespace1, - ACTIONS(891), 1, - sym__id, - ACTIONS(893), 1, + ACTIONS(879), 1, anon_sym_PERCENT, - ACTIONS(901), 1, + ACTIONS(882), 1, + sym__id, + ACTIONS(890), 1, anon_sym_RBRACE, - STATE(321), 1, + STATE(370), 1, aux_sym_block_attribute_repeat1, - STATE(945), 1, + STATE(932), 1, sym_key, - ACTIONS(895), 2, + ACTIONS(884), 2, sym__eof_or_newline, sym__newline_inline, - STATE(468), 3, + STATE(433), 4, sym_class, + sym_identifier, sym_key_value, sym__comment_no_newline, - ACTIONS(881), 5, + ACTIONS(867), 7, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [8676] = 11, - ACTIONS(885), 1, + anon_sym_POUND, + [9508] = 11, + ACTIONS(871), 1, anon_sym_DOT, - ACTIONS(887), 1, - sym_identifier, - ACTIONS(889), 1, + ACTIONS(874), 1, + aux_sym_identifier_token1, + ACTIONS(877), 1, sym__whitespace1, - ACTIONS(891), 1, - sym__id, - ACTIONS(893), 1, + ACTIONS(879), 1, anon_sym_PERCENT, - ACTIONS(903), 1, + ACTIONS(882), 1, + sym__id, + ACTIONS(892), 1, anon_sym_RBRACE, - STATE(325), 1, + STATE(368), 1, aux_sym_block_attribute_repeat1, - STATE(945), 1, + STATE(932), 1, sym_key, - ACTIONS(895), 2, + ACTIONS(884), 2, sym__eof_or_newline, sym__newline_inline, - STATE(468), 3, + STATE(433), 4, sym_class, + sym_identifier, sym_key_value, sym__comment_no_newline, - ACTIONS(881), 5, + ACTIONS(867), 7, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [8717] = 10, - ACTIONS(29), 1, + anon_sym_POUND, + [9552] = 11, + ACTIONS(31), 1, sym__list_marker_task_begin, - ACTIONS(905), 1, + ACTIONS(894), 1, anon_sym_PIPE, - ACTIONS(907), 1, + ACTIONS(896), 1, + anon_sym_LBRACK_CARET, + ACTIONS(898), 1, sym__block_close, - ACTIONS(909), 1, + ACTIONS(900), 1, sym_list_marker_dash, - ACTIONS(911), 1, + ACTIONS(902), 1, sym_list_marker_star, - ACTIONS(913), 1, + ACTIONS(904), 1, sym_list_marker_plus, - STATE(43), 1, + STATE(39), 1, sym_list_marker_task, - STATE(679), 1, + STATE(636), 1, sym__inline, - STATE(366), 2, + STATE(355), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(11), 4, + ACTIONS(13), 8, anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [8752] = 10, - ACTIONS(29), 1, + anon_sym_POUND, + anon_sym_PERCENT, + [9594] = 11, + ACTIONS(31), 1, sym__list_marker_task_begin, - ACTIONS(905), 1, + ACTIONS(894), 1, anon_sym_PIPE, - ACTIONS(909), 1, + ACTIONS(896), 1, + anon_sym_LBRACK_CARET, + ACTIONS(900), 1, sym_list_marker_dash, - ACTIONS(911), 1, + ACTIONS(902), 1, sym_list_marker_star, - ACTIONS(913), 1, + ACTIONS(904), 1, sym_list_marker_plus, - ACTIONS(915), 1, + ACTIONS(906), 1, sym__block_close, - STATE(43), 1, + STATE(39), 1, sym_list_marker_task, - STATE(679), 1, + STATE(636), 1, sym__inline, - STATE(366), 2, + STATE(355), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(11), 4, + ACTIONS(13), 8, anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [8787] = 10, - ACTIONS(29), 1, + anon_sym_POUND, + anon_sym_PERCENT, + [9636] = 11, + ACTIONS(31), 1, sym__list_marker_task_begin, - ACTIONS(905), 1, + ACTIONS(894), 1, anon_sym_PIPE, - ACTIONS(909), 1, + ACTIONS(896), 1, + anon_sym_LBRACK_CARET, + ACTIONS(900), 1, sym_list_marker_dash, - ACTIONS(911), 1, + ACTIONS(902), 1, sym_list_marker_star, - ACTIONS(913), 1, + ACTIONS(904), 1, sym_list_marker_plus, - ACTIONS(917), 1, + ACTIONS(908), 1, sym__block_close, - STATE(43), 1, + STATE(39), 1, sym_list_marker_task, - STATE(679), 1, + STATE(636), 1, sym__inline, - STATE(366), 2, + STATE(355), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(11), 4, + ACTIONS(13), 8, anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [8822] = 10, - ACTIONS(29), 1, + anon_sym_POUND, + anon_sym_PERCENT, + [9678] = 11, + ACTIONS(31), 1, sym__list_marker_task_begin, - ACTIONS(905), 1, + ACTIONS(894), 1, anon_sym_PIPE, - ACTIONS(909), 1, + ACTIONS(896), 1, + anon_sym_LBRACK_CARET, + ACTIONS(900), 1, sym_list_marker_dash, - ACTIONS(911), 1, + ACTIONS(902), 1, sym_list_marker_star, - ACTIONS(913), 1, + ACTIONS(904), 1, sym_list_marker_plus, - ACTIONS(919), 1, + ACTIONS(910), 1, sym__block_close, - STATE(43), 1, + STATE(39), 1, sym_list_marker_task, - STATE(679), 1, + STATE(636), 1, sym__inline, - STATE(366), 2, + STATE(355), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(11), 4, + ACTIONS(13), 8, anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [8857] = 10, - ACTIONS(29), 1, + anon_sym_POUND, + anon_sym_PERCENT, + [9720] = 11, + ACTIONS(31), 1, sym__list_marker_task_begin, - ACTIONS(905), 1, + ACTIONS(894), 1, anon_sym_PIPE, - ACTIONS(909), 1, + ACTIONS(896), 1, + anon_sym_LBRACK_CARET, + ACTIONS(900), 1, sym_list_marker_dash, - ACTIONS(911), 1, + ACTIONS(902), 1, sym_list_marker_star, - ACTIONS(913), 1, + ACTIONS(904), 1, sym_list_marker_plus, - ACTIONS(921), 1, + ACTIONS(912), 1, sym__block_close, - STATE(43), 1, + STATE(39), 1, sym_list_marker_task, - STATE(679), 1, + STATE(636), 1, sym__inline, - STATE(366), 2, + STATE(355), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(11), 4, + ACTIONS(13), 8, anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [8892] = 10, - ACTIONS(29), 1, + anon_sym_POUND, + anon_sym_PERCENT, + [9762] = 11, + ACTIONS(31), 1, sym__list_marker_task_begin, - ACTIONS(905), 1, + ACTIONS(894), 1, anon_sym_PIPE, - ACTIONS(909), 1, + ACTIONS(896), 1, + anon_sym_LBRACK_CARET, + ACTIONS(900), 1, sym_list_marker_dash, - ACTIONS(911), 1, + ACTIONS(902), 1, sym_list_marker_star, - ACTIONS(913), 1, + ACTIONS(904), 1, sym_list_marker_plus, - ACTIONS(923), 1, + ACTIONS(914), 1, sym__block_close, - STATE(43), 1, + STATE(39), 1, sym_list_marker_task, - STATE(679), 1, + STATE(636), 1, sym__inline, - STATE(366), 2, + STATE(355), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(11), 4, + ACTIONS(13), 8, anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [8927] = 10, - ACTIONS(29), 1, + anon_sym_POUND, + anon_sym_PERCENT, + [9804] = 11, + ACTIONS(31), 1, sym__list_marker_task_begin, - ACTIONS(905), 1, + ACTIONS(894), 1, anon_sym_PIPE, - ACTIONS(909), 1, + ACTIONS(896), 1, + anon_sym_LBRACK_CARET, + ACTIONS(900), 1, sym_list_marker_dash, - ACTIONS(911), 1, + ACTIONS(902), 1, sym_list_marker_star, - ACTIONS(913), 1, + ACTIONS(904), 1, sym_list_marker_plus, - ACTIONS(925), 1, + ACTIONS(916), 1, sym__block_close, - STATE(43), 1, + STATE(39), 1, sym_list_marker_task, - STATE(679), 1, + STATE(636), 1, sym__inline, - STATE(366), 2, + STATE(355), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(11), 4, + ACTIONS(13), 8, anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [8962] = 10, - ACTIONS(29), 1, + anon_sym_POUND, + anon_sym_PERCENT, + [9846] = 11, + ACTIONS(31), 1, sym__list_marker_task_begin, - ACTIONS(905), 1, + ACTIONS(894), 1, anon_sym_PIPE, - ACTIONS(909), 1, + ACTIONS(896), 1, + anon_sym_LBRACK_CARET, + ACTIONS(900), 1, sym_list_marker_dash, - ACTIONS(911), 1, + ACTIONS(902), 1, sym_list_marker_star, - ACTIONS(913), 1, + ACTIONS(904), 1, sym_list_marker_plus, - ACTIONS(927), 1, + ACTIONS(918), 1, sym__block_close, - STATE(43), 1, + STATE(39), 1, sym_list_marker_task, - STATE(679), 1, + STATE(636), 1, sym__inline, - STATE(366), 2, + STATE(355), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(11), 4, + ACTIONS(13), 8, anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [8997] = 10, - ACTIONS(29), 1, + anon_sym_POUND, + anon_sym_PERCENT, + [9888] = 11, + ACTIONS(31), 1, sym__list_marker_task_begin, - ACTIONS(905), 1, + ACTIONS(894), 1, anon_sym_PIPE, - ACTIONS(909), 1, + ACTIONS(896), 1, + anon_sym_LBRACK_CARET, + ACTIONS(900), 1, sym_list_marker_dash, - ACTIONS(911), 1, + ACTIONS(902), 1, sym_list_marker_star, - ACTIONS(913), 1, + ACTIONS(904), 1, sym_list_marker_plus, - ACTIONS(929), 1, + ACTIONS(920), 1, sym__block_close, - STATE(43), 1, + STATE(39), 1, sym_list_marker_task, - STATE(679), 1, + STATE(636), 1, sym__inline, - STATE(366), 2, + STATE(355), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(11), 4, + ACTIONS(13), 8, anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [9032] = 10, - ACTIONS(29), 1, + anon_sym_POUND, + anon_sym_PERCENT, + [9930] = 11, + ACTIONS(31), 1, sym__list_marker_task_begin, - ACTIONS(905), 1, + ACTIONS(894), 1, anon_sym_PIPE, - ACTIONS(909), 1, + ACTIONS(896), 1, + anon_sym_LBRACK_CARET, + ACTIONS(900), 1, sym_list_marker_dash, - ACTIONS(911), 1, + ACTIONS(902), 1, sym_list_marker_star, - ACTIONS(913), 1, + ACTIONS(904), 1, sym_list_marker_plus, - ACTIONS(931), 1, + ACTIONS(922), 1, sym__block_close, - STATE(43), 1, + STATE(39), 1, sym_list_marker_task, - STATE(679), 1, + STATE(636), 1, sym__inline, - STATE(366), 2, + STATE(355), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(11), 4, + ACTIONS(13), 8, anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [9067] = 9, - ACTIONS(29), 1, + anon_sym_POUND, + anon_sym_PERCENT, + [9972] = 10, + ACTIONS(31), 1, sym__list_marker_task_begin, - ACTIONS(909), 1, + ACTIONS(896), 1, + anon_sym_LBRACK_CARET, + ACTIONS(900), 1, sym_list_marker_dash, - ACTIONS(911), 1, + ACTIONS(902), 1, sym_list_marker_star, - ACTIONS(913), 1, + ACTIONS(904), 1, sym_list_marker_plus, - ACTIONS(933), 1, + ACTIONS(924), 1, anon_sym_PIPE, - STATE(43), 1, + STATE(39), 1, sym_list_marker_task, - STATE(679), 1, + STATE(636), 1, sym__inline, - STATE(366), 2, + STATE(355), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(11), 4, + ACTIONS(13), 8, anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [9099] = 9, - ACTIONS(29), 1, + anon_sym_POUND, + anon_sym_PERCENT, + [10011] = 10, + ACTIONS(31), 1, sym__list_marker_task_begin, - ACTIONS(909), 1, + ACTIONS(896), 1, + anon_sym_LBRACK_CARET, + ACTIONS(900), 1, sym_list_marker_dash, - ACTIONS(911), 1, + ACTIONS(902), 1, sym_list_marker_star, - ACTIONS(913), 1, + ACTIONS(904), 1, sym_list_marker_plus, - ACTIONS(935), 1, + ACTIONS(926), 1, anon_sym_PIPE, - STATE(43), 1, + STATE(39), 1, sym_list_marker_task, - STATE(679), 1, + STATE(636), 1, sym__inline, - STATE(366), 2, + STATE(355), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(11), 4, + ACTIONS(13), 8, anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [9131] = 9, - ACTIONS(29), 1, + anon_sym_POUND, + anon_sym_PERCENT, + [10050] = 10, + ACTIONS(31), 1, sym__list_marker_task_begin, - ACTIONS(905), 1, - anon_sym_PIPE, - ACTIONS(909), 1, + ACTIONS(896), 1, + anon_sym_LBRACK_CARET, + ACTIONS(900), 1, sym_list_marker_dash, - ACTIONS(911), 1, + ACTIONS(902), 1, sym_list_marker_star, - ACTIONS(913), 1, + ACTIONS(904), 1, sym_list_marker_plus, - STATE(43), 1, + ACTIONS(928), 1, + anon_sym_PIPE, + STATE(39), 1, sym_list_marker_task, - STATE(679), 1, + STATE(636), 1, sym__inline, - STATE(366), 2, + STATE(355), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(11), 4, + ACTIONS(13), 8, anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [9163] = 9, - ACTIONS(29), 1, + anon_sym_POUND, + anon_sym_PERCENT, + [10089] = 10, + ACTIONS(31), 1, sym__list_marker_task_begin, - ACTIONS(909), 1, + ACTIONS(894), 1, + anon_sym_PIPE, + ACTIONS(896), 1, + anon_sym_LBRACK_CARET, + ACTIONS(900), 1, sym_list_marker_dash, - ACTIONS(911), 1, + ACTIONS(902), 1, sym_list_marker_star, - ACTIONS(913), 1, + ACTIONS(904), 1, sym_list_marker_plus, - ACTIONS(937), 1, - anon_sym_PIPE, - STATE(43), 1, + STATE(39), 1, sym_list_marker_task, - STATE(679), 1, + STATE(636), 1, sym__inline, - STATE(366), 2, + STATE(355), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(11), 4, + ACTIONS(13), 8, anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [9195] = 9, - ACTIONS(29), 1, + anon_sym_POUND, + anon_sym_PERCENT, + [10128] = 10, + ACTIONS(31), 1, sym__list_marker_task_begin, - ACTIONS(909), 1, + ACTIONS(896), 1, + anon_sym_LBRACK_CARET, + ACTIONS(900), 1, sym_list_marker_dash, - ACTIONS(911), 1, + ACTIONS(902), 1, sym_list_marker_star, - ACTIONS(913), 1, + ACTIONS(904), 1, sym_list_marker_plus, - ACTIONS(939), 1, + ACTIONS(930), 1, anon_sym_PIPE, - STATE(43), 1, + STATE(39), 1, sym_list_marker_task, - STATE(679), 1, + STATE(636), 1, sym__inline, - STATE(366), 2, + STATE(355), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(11), 4, + ACTIONS(13), 8, anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [9227] = 10, - ACTIONS(494), 1, - sym__block_quote_continuation, - ACTIONS(941), 1, + anon_sym_POUND, + anon_sym_PERCENT, + [10167] = 7, + ACTIONS(935), 1, + sym_table_cell_alignment, + ACTIONS(937), 1, + anon_sym_LBRACK_CARET, + STATE(798), 1, + sym_table_cell, + STATE(937), 1, + sym__inline, + ACTIONS(884), 2, + sym__eof_or_newline, + sym__newline_inline, + STATE(376), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(932), 9, + anon_sym_LBRACK, anon_sym_PIPE, - ACTIONS(943), 1, - sym__newline, - ACTIONS(945), 1, - sym__table_caption_begin, - STATE(363), 1, - sym_table_row, - STATE(628), 1, - sym_table_caption, - STATE(702), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(1029), 1, - sym__block_quote_prefix, - ACTIONS(486), 2, - sym__list_item_continuation, - sym__list_item_end, - STATE(300), 3, - sym__table_content, - sym_table_separator, - aux_sym_table_repeat1, - [9261] = 7, - ACTIONS(949), 1, + anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + anon_sym_POUND, + anon_sym_PERCENT, + [10199] = 8, + ACTIONS(942), 1, anon_sym_NULL, - ACTIONS(951), 1, + ACTIONS(944), 1, + anon_sym_LBRACK_CARET, + ACTIONS(946), 1, sym__table_caption_end, - STATE(296), 1, + STATE(293), 1, aux_sym_table_caption_repeat1, - STATE(414), 1, + STATE(366), 1, sym__inline_line, - STATE(1062), 1, + STATE(1078), 1, sym__inline, - STATE(388), 2, + STATE(360), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(947), 5, + ACTIONS(940), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [9288] = 10, - ACTIONS(486), 1, - sym__block_close, - ACTIONS(494), 1, - sym__block_quote_continuation, - ACTIONS(953), 1, - anon_sym_PIPE, - ACTIONS(955), 1, - sym__newline, - ACTIONS(957), 1, - sym__table_caption_begin, - STATE(376), 1, - sym_table_row, - STATE(702), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(865), 1, - sym_table_caption, - STATE(1036), 1, - sym__block_quote_prefix, - STATE(315), 3, - sym__table_content, - sym_table_separator, - aux_sym_table_repeat1, - [9321] = 4, - ACTIONS(959), 1, + anon_sym_POUND, + anon_sym_PERCENT, + [10233] = 4, + ACTIONS(948), 1, sym__block_quote_continuation, - STATE(292), 1, + STATE(291), 1, aux_sym__block_quote_prefix_repeat1, - ACTIONS(874), 5, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACE, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - ACTIONS(876), 5, + ACTIONS(858), 5, sym__block_close, sym_list_marker_dash, sym_list_marker_star, sym_list_marker_plus, sym__list_marker_task_begin, - [9342] = 7, - ACTIONS(962), 1, - anon_sym_NULL, - ACTIONS(964), 1, - sym__table_caption_end, - STATE(296), 1, - aux_sym_table_caption_repeat1, - STATE(414), 1, - sym__inline_line, - STATE(1062), 1, - sym__inline, - STATE(388), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(947), 5, + ACTIONS(856), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [9369] = 6, - ACTIONS(969), 1, - sym_table_cell_alignment, - STATE(805), 1, - sym_table_cell, - STATE(938), 1, + anon_sym_POUND, + anon_sym_PERCENT, + [10259] = 8, + ACTIONS(944), 1, + anon_sym_LBRACK_CARET, + ACTIONS(951), 1, + anon_sym_NULL, + ACTIONS(953), 1, + sym__table_caption_end, + STATE(293), 1, + aux_sym_table_caption_repeat1, + STATE(366), 1, + sym__inline_line, + STATE(1078), 1, sym__inline, - ACTIONS(895), 2, - sym__eof_or_newline, - sym__newline_inline, - STATE(410), 2, + STATE(360), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(966), 5, + ACTIONS(940), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [9394] = 7, - ACTIONS(971), 1, + anon_sym_POUND, + anon_sym_PERCENT, + [10293] = 8, + ACTIONS(958), 1, anon_sym_NULL, - ACTIONS(973), 1, + ACTIONS(960), 1, + anon_sym_LBRACK_CARET, + ACTIONS(963), 1, sym__table_caption_end, - STATE(296), 1, + STATE(293), 1, aux_sym_table_caption_repeat1, - STATE(414), 1, + STATE(366), 1, sym__inline_line, - STATE(1062), 1, + STATE(1078), 1, sym__inline, - STATE(388), 2, + STATE(360), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(947), 5, + ACTIONS(955), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [9421] = 7, - ACTIONS(978), 1, + anon_sym_POUND, + anon_sym_PERCENT, + [10327] = 8, + ACTIONS(944), 1, + anon_sym_LBRACK_CARET, + ACTIONS(965), 1, anon_sym_NULL, - ACTIONS(980), 1, + ACTIONS(967), 1, sym__table_caption_end, - STATE(296), 1, + STATE(293), 1, aux_sym_table_caption_repeat1, - STATE(414), 1, + STATE(366), 1, sym__inline_line, - STATE(1062), 1, + STATE(1078), 1, sym__inline, - STATE(388), 2, + STATE(360), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(975), 5, + ACTIONS(940), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [9448] = 7, - ACTIONS(982), 1, - sym__block_quote_continuation, - STATE(369), 1, - sym__block_quote_prefix, - STATE(403), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(703), 1, + anon_sym_POUND, + anon_sym_PERCENT, + [10361] = 8, + ACTIONS(944), 1, + anon_sym_LBRACK_CARET, + ACTIONS(969), 1, + anon_sym_NULL, + ACTIONS(971), 1, + sym__table_caption_end, + STATE(293), 1, + aux_sym_table_caption_repeat1, + STATE(366), 1, + sym__inline_line, + STATE(1078), 1, sym__inline, - STATE(810), 1, - sym__paragraph_content, - STATE(366), 2, + STATE(360), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(11), 5, + ACTIONS(940), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [9475] = 6, - ACTIONS(984), 1, + anon_sym_POUND, + anon_sym_PERCENT, + [10395] = 7, + ACTIONS(937), 1, + anon_sym_LBRACK_CARET, + ACTIONS(973), 1, sym_table_cell_alignment, - STATE(794), 1, + STATE(854), 1, sym_table_cell, - STATE(938), 1, + STATE(937), 1, sym__inline, - ACTIONS(895), 2, + ACTIONS(884), 2, sym__eof_or_newline, sym__newline_inline, - STATE(410), 2, + STATE(376), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(966), 5, + ACTIONS(932), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [9500] = 7, - ACTIONS(986), 1, - anon_sym_NULL, - ACTIONS(988), 1, - sym__table_caption_end, - STATE(296), 1, - aux_sym_table_caption_repeat1, - STATE(414), 1, - sym__inline_line, - STATE(1062), 1, + anon_sym_POUND, + anon_sym_PERCENT, + [10427] = 7, + ACTIONS(937), 1, + anon_sym_LBRACK_CARET, + ACTIONS(975), 1, + sym_table_cell_alignment, + STATE(745), 1, + sym_table_cell, + STATE(937), 1, sym__inline, - STATE(388), 2, + ACTIONS(884), 2, + sym__eof_or_newline, + sym__newline_inline, + STATE(376), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(947), 5, + ACTIONS(932), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [9527] = 7, - ACTIONS(517), 1, - sym__block_quote_continuation, - ACTIONS(990), 1, - anon_sym_PIPE, - STATE(363), 1, - sym_table_row, - STATE(702), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(1029), 1, - sym__block_quote_prefix, - STATE(300), 3, - sym__table_content, - sym_table_separator, - aux_sym_table_repeat1, - ACTIONS(510), 4, - sym__newline, - sym__list_item_continuation, - sym__list_item_end, - sym__table_caption_begin, - [9554] = 6, - ACTIONS(993), 1, + anon_sym_POUND, + anon_sym_PERCENT, + [10459] = 7, + ACTIONS(937), 1, + anon_sym_LBRACK_CARET, + ACTIONS(977), 1, sym_table_cell_alignment, - STATE(736), 1, + STATE(844), 1, sym_table_cell, - STATE(938), 1, + STATE(937), 1, sym__inline, - ACTIONS(895), 2, + ACTIONS(884), 2, sym__eof_or_newline, sym__newline_inline, - STATE(410), 2, + STATE(376), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(966), 5, + ACTIONS(932), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [9579] = 6, - ACTIONS(995), 1, + anon_sym_POUND, + anon_sym_PERCENT, + [10491] = 7, + ACTIONS(937), 1, + anon_sym_LBRACK_CARET, + ACTIONS(979), 1, sym_table_cell_alignment, - STATE(747), 1, + STATE(789), 1, sym_table_cell, - STATE(938), 1, + STATE(937), 1, sym__inline, - ACTIONS(895), 2, + ACTIONS(884), 2, sym__eof_or_newline, sym__newline_inline, - STATE(410), 2, + STATE(376), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(966), 5, + ACTIONS(932), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [9604] = 6, - ACTIONS(997), 1, + anon_sym_POUND, + anon_sym_PERCENT, + [10523] = 7, + ACTIONS(937), 1, + anon_sym_LBRACK_CARET, + ACTIONS(981), 1, sym_table_cell_alignment, - STATE(770), 1, + STATE(755), 1, sym_table_cell, - STATE(938), 1, + STATE(937), 1, sym__inline, - ACTIONS(895), 2, + ACTIONS(884), 2, sym__eof_or_newline, sym__newline_inline, - STATE(410), 2, + STATE(376), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(966), 5, + ACTIONS(932), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [9629] = 6, - ACTIONS(999), 1, + anon_sym_POUND, + anon_sym_PERCENT, + [10555] = 7, + ACTIONS(937), 1, + anon_sym_LBRACK_CARET, + ACTIONS(983), 1, sym_table_cell_alignment, - STATE(827), 1, + STATE(781), 1, sym_table_cell, - STATE(938), 1, + STATE(937), 1, sym__inline, - ACTIONS(895), 2, + ACTIONS(884), 2, sym__eof_or_newline, sym__newline_inline, - STATE(410), 2, + STATE(376), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(966), 5, + ACTIONS(932), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [9654] = 6, - ACTIONS(1001), 1, + anon_sym_POUND, + anon_sym_PERCENT, + [10587] = 4, + ACTIONS(989), 1, + sym__block_quote_continuation, + STATE(291), 1, + aux_sym__block_quote_prefix_repeat1, + ACTIONS(987), 5, + sym__block_close, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + ACTIONS(985), 10, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACK_CARET, + anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + anon_sym_POUND, + anon_sym_PERCENT, + [10613] = 7, + ACTIONS(937), 1, + anon_sym_LBRACK_CARET, + ACTIONS(991), 1, sym_table_cell_alignment, - STATE(822), 1, + STATE(870), 1, sym_table_cell, - STATE(938), 1, + STATE(937), 1, sym__inline, - ACTIONS(895), 2, + ACTIONS(884), 2, sym__eof_or_newline, sym__newline_inline, - STATE(410), 2, + STATE(376), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(966), 5, + ACTIONS(932), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [9679] = 7, - ACTIONS(1003), 1, + anon_sym_POUND, + anon_sym_PERCENT, + [10645] = 8, + ACTIONS(944), 1, + anon_sym_LBRACK_CARET, + ACTIONS(993), 1, anon_sym_NULL, - ACTIONS(1005), 1, + ACTIONS(995), 1, sym__table_caption_end, - STATE(296), 1, + STATE(293), 1, aux_sym_table_caption_repeat1, - STATE(414), 1, + STATE(366), 1, sym__inline_line, - STATE(1062), 1, + STATE(1078), 1, sym__inline, - STATE(388), 2, + STATE(360), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(947), 5, + ACTIONS(940), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [9706] = 4, - ACTIONS(1011), 1, + anon_sym_POUND, + anon_sym_PERCENT, + [10679] = 8, + ACTIONS(896), 1, + anon_sym_LBRACK_CARET, + ACTIONS(997), 1, sym__block_quote_continuation, - STATE(292), 1, + STATE(357), 1, + sym__block_quote_prefix, + STATE(372), 1, aux_sym__block_quote_prefix_repeat1, - ACTIONS(1007), 5, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACE, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - ACTIONS(1009), 5, - sym__block_close, - sym_list_marker_dash, - sym_list_marker_star, - sym_list_marker_plus, - sym__list_marker_task_begin, - [9727] = 6, - ACTIONS(1013), 1, - sym_table_cell_alignment, - STATE(788), 1, - sym_table_cell, - STATE(938), 1, + STATE(710), 1, sym__inline, - ACTIONS(895), 2, - sym__eof_or_newline, - sym__newline_inline, - STATE(410), 2, + STATE(838), 1, + sym__paragraph_content, + STATE(355), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(966), 5, + ACTIONS(13), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [9752] = 6, - ACTIONS(1015), 1, + anon_sym_POUND, + anon_sym_PERCENT, + [10713] = 7, + ACTIONS(937), 1, + anon_sym_LBRACK_CARET, + ACTIONS(999), 1, sym_table_cell_alignment, - STATE(778), 1, + STATE(809), 1, sym_table_cell, - STATE(938), 1, + STATE(937), 1, sym__inline, - ACTIONS(895), 2, + ACTIONS(884), 2, sym__eof_or_newline, sym__newline_inline, - STATE(410), 2, + STATE(376), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(966), 5, + ACTIONS(932), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [9777] = 6, - ACTIONS(1017), 1, + anon_sym_POUND, + anon_sym_PERCENT, + [10745] = 7, + ACTIONS(937), 1, + anon_sym_LBRACK_CARET, + ACTIONS(1001), 1, sym_table_cell_alignment, - STATE(851), 1, + STATE(835), 1, sym_table_cell, - STATE(938), 1, + STATE(937), 1, sym__inline, - ACTIONS(895), 2, + ACTIONS(884), 2, sym__eof_or_newline, sym__newline_inline, - STATE(410), 2, + STATE(376), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(966), 5, + ACTIONS(932), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [9802] = 5, - STATE(986), 1, - sym__inline, - STATE(989), 1, - sym_link_label, - ACTIONS(895), 2, - sym__eof_or_newline, - sym__newline_inline, - STATE(375), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(1019), 5, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACE, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - [9824] = 8, - ACTIONS(1022), 1, - anon_sym_RBRACE, - ACTIONS(1024), 1, - anon_sym_DOT, - ACTIONS(1026), 1, - sym__id, - ACTIONS(1028), 1, - anon_sym_PERCENT, - STATE(317), 1, - aux_sym_block_attribute_repeat1, - STATE(945), 1, - sym_key, - ACTIONS(889), 2, - sym_identifier, - sym__whitespace1, - STATE(468), 3, - sym_class, - sym_key_value, - sym__comment_no_newline, - [9852] = 8, - ACTIONS(1024), 1, - anon_sym_DOT, - ACTIONS(1026), 1, - sym__id, - ACTIONS(1028), 1, - anon_sym_PERCENT, - ACTIONS(1030), 1, - anon_sym_RBRACE, - STATE(317), 1, - aux_sym_block_attribute_repeat1, - STATE(945), 1, - sym_key, - ACTIONS(889), 2, - sym_identifier, - sym__whitespace1, - STATE(468), 3, - sym_class, - sym_key_value, - sym__comment_no_newline, - [9880] = 8, - ACTIONS(1024), 1, - anon_sym_DOT, - ACTIONS(1026), 1, - sym__id, - ACTIONS(1028), 1, - anon_sym_PERCENT, - ACTIONS(1032), 1, - anon_sym_RBRACE, - STATE(317), 1, - aux_sym_block_attribute_repeat1, - STATE(945), 1, - sym_key, - ACTIONS(889), 2, - sym_identifier, - sym__whitespace1, - STATE(468), 3, - sym_class, - sym_key_value, - sym__comment_no_newline, - [9908] = 7, - ACTIONS(517), 1, - sym__block_quote_continuation, - ACTIONS(1034), 1, - anon_sym_PIPE, - STATE(376), 1, - sym_table_row, - STATE(702), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(1036), 1, - sym__block_quote_prefix, - ACTIONS(510), 3, - sym__block_close, - sym__newline, - sym__table_caption_begin, - STATE(315), 3, - sym__table_content, - sym_table_separator, - aux_sym_table_repeat1, - [9934] = 2, - ACTIONS(455), 5, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACE, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - ACTIONS(457), 6, - sym__block_close, - sym_list_marker_dash, - sym_list_marker_star, - sym_list_marker_plus, - sym__list_marker_task_begin, - sym__block_quote_continuation, - [9950] = 8, - ACTIONS(1037), 1, - anon_sym_RBRACE, - ACTIONS(1039), 1, - anon_sym_DOT, - ACTIONS(1045), 1, - sym__id, - ACTIONS(1048), 1, + anon_sym_POUND, anon_sym_PERCENT, - STATE(317), 1, - aux_sym_block_attribute_repeat1, - STATE(945), 1, - sym_key, - ACTIONS(1042), 2, - sym_identifier, - sym__whitespace1, - STATE(468), 3, - sym_class, - sym_key_value, - sym__comment_no_newline, - [9978] = 6, - ACTIONS(982), 1, - sym__block_quote_continuation, - STATE(377), 1, - sym__block_quote_prefix, - STATE(403), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(857), 1, - sym__inline, - STATE(366), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(11), 5, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACE, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - [10002] = 4, - ACTIONS(1051), 1, + [10777] = 4, + ACTIONS(1003), 1, sym__block_quote_continuation, - STATE(319), 1, + STATE(308), 1, aux_sym__block_quote_prefix_repeat1, - ACTIONS(876), 4, + ACTIONS(858), 4, sym_list_marker_dash, sym_list_marker_star, sym_list_marker_plus, sym__list_marker_task_begin, - ACTIONS(874), 5, + ACTIONS(856), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [10022] = 5, - STATE(986), 1, + anon_sym_POUND, + anon_sym_PERCENT, + [10802] = 6, + ACTIONS(1009), 1, + anon_sym_LBRACK_CARET, + STATE(940), 1, sym__inline, - STATE(1073), 1, + STATE(1091), 1, sym_link_label, - ACTIONS(895), 2, + ACTIONS(884), 2, sym__eof_or_newline, sym__newline_inline, - STATE(375), 2, + STATE(361), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1019), 5, + ACTIONS(1006), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [10044] = 8, - ACTIONS(1024), 1, - anon_sym_DOT, - ACTIONS(1026), 1, - sym__id, - ACTIONS(1028), 1, + anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(1054), 1, - anon_sym_RBRACE, - STATE(317), 1, - aux_sym_block_attribute_repeat1, - STATE(945), 1, - sym_key, - ACTIONS(889), 2, - sym_identifier, - sym__whitespace1, - STATE(468), 3, - sym_class, - sym_key_value, - sym__comment_no_newline, - [10072] = 5, - STATE(986), 1, + [10831] = 6, + ACTIONS(1009), 1, + anon_sym_LBRACK_CARET, + STATE(940), 1, sym__inline, - STATE(1074), 1, + STATE(1088), 1, sym_link_label, - ACTIONS(895), 2, + ACTIONS(884), 2, sym__eof_or_newline, sym__newline_inline, - STATE(375), 2, + STATE(361), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1019), 5, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACE, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - [10094] = 4, - ACTIONS(65), 1, - sym__block_quote_continuation, - STATE(319), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(1009), 4, - sym_list_marker_dash, - sym_list_marker_star, - sym_list_marker_plus, - sym__list_marker_task_begin, - ACTIONS(1007), 5, + ACTIONS(1006), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [10114] = 5, - STATE(986), 1, + anon_sym_POUND, + anon_sym_PERCENT, + [10860] = 6, + ACTIONS(1009), 1, + anon_sym_LBRACK_CARET, + STATE(940), 1, sym__inline, - STATE(1075), 1, + STATE(941), 1, sym_link_label, - ACTIONS(895), 2, + ACTIONS(884), 2, sym__eof_or_newline, sym__newline_inline, - STATE(375), 2, + STATE(361), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1019), 5, + ACTIONS(1006), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [10136] = 8, - ACTIONS(1024), 1, - anon_sym_DOT, - ACTIONS(1026), 1, - sym__id, - ACTIONS(1028), 1, + anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(1056), 1, - anon_sym_RBRACE, - STATE(317), 1, - aux_sym_block_attribute_repeat1, - STATE(945), 1, - sym_key, - ACTIONS(889), 2, - sym_identifier, - sym__whitespace1, - STATE(468), 3, - sym_class, - sym_key_value, - sym__comment_no_newline, - [10164] = 5, - STATE(986), 1, + [10889] = 6, + ACTIONS(1009), 1, + anon_sym_LBRACK_CARET, + STATE(940), 1, sym__inline, - STATE(1076), 1, + STATE(1089), 1, sym_link_label, - ACTIONS(895), 2, + ACTIONS(884), 2, sym__eof_or_newline, sym__newline_inline, - STATE(375), 2, + STATE(361), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1019), 5, + ACTIONS(1006), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [10186] = 5, - ACTIONS(1060), 1, - sym__newline, - STATE(922), 1, - sym_table_cell, - STATE(938), 1, + anon_sym_POUND, + anon_sym_PERCENT, + [10918] = 6, + ACTIONS(1009), 1, + anon_sym_LBRACK_CARET, + STATE(940), 1, sym__inline, - STATE(410), 2, + STATE(1090), 1, + sym_link_label, + ACTIONS(884), 2, + sym__eof_or_newline, + sym__newline_inline, + STATE(361), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1058), 5, + ACTIONS(1006), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [10207] = 5, - ACTIONS(1062), 1, - sym__newline, - STATE(922), 1, - sym_table_cell, - STATE(938), 1, - sym__inline, - STATE(410), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(1058), 5, + anon_sym_POUND, + anon_sym_PERCENT, + [10947] = 2, + ACTIONS(445), 6, + sym__block_close, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym__block_quote_continuation, + ACTIONS(443), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [10228] = 5, - ACTIONS(1064), 1, - sym__newline, - STATE(922), 1, - sym_table_cell, - STATE(938), 1, + anon_sym_POUND, + anon_sym_PERCENT, + [10968] = 7, + ACTIONS(896), 1, + anon_sym_LBRACK_CARET, + ACTIONS(997), 1, + sym__block_quote_continuation, + STATE(362), 1, + sym__block_quote_prefix, + STATE(372), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(757), 1, sym__inline, - STATE(410), 2, + STATE(355), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1058), 5, + ACTIONS(13), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [10249] = 5, - STATE(299), 1, - aux_sym_table_caption_repeat1, - STATE(414), 1, - sym__inline_line, - STATE(1062), 1, - sym__inline, - STATE(388), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(947), 5, + anon_sym_POUND, + anon_sym_PERCENT, + [10999] = 4, + ACTIONS(67), 1, + sym__block_quote_continuation, + STATE(308), 1, + aux_sym__block_quote_prefix_repeat1, + ACTIONS(987), 4, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + ACTIONS(985), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [10270] = 5, - ACTIONS(1017), 1, + anon_sym_POUND, + anon_sym_PERCENT, + [11024] = 6, + ACTIONS(983), 1, sym_table_cell_alignment, - STATE(851), 1, + ACTIONS(1014), 1, + anon_sym_LBRACK_CARET, + STATE(781), 1, sym_table_cell, - STATE(938), 1, + STATE(937), 1, sym__inline, - STATE(410), 2, + STATE(376), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1058), 5, + ACTIONS(1012), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [10291] = 5, - ACTIONS(1066), 1, + anon_sym_POUND, + anon_sym_PERCENT, + [11052] = 6, + ACTIONS(1014), 1, + anon_sym_LBRACK_CARET, + ACTIONS(1016), 1, sym__newline, - STATE(922), 1, - sym_table_cell, - STATE(938), 1, + STATE(937), 1, sym__inline, - STATE(410), 2, + STATE(1095), 1, + sym_table_cell, + STATE(376), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1058), 5, + ACTIONS(1012), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [10312] = 5, - STATE(293), 1, - aux_sym_table_caption_repeat1, - STATE(414), 1, - sym__inline_line, - STATE(1062), 1, - sym__inline, - STATE(388), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(947), 5, + anon_sym_POUND, + anon_sym_PERCENT, + [11080] = 2, + ACTIONS(445), 5, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym__block_quote_continuation, + ACTIONS(443), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [10333] = 5, - ACTIONS(999), 1, + anon_sym_POUND, + anon_sym_PERCENT, + [11100] = 6, + ACTIONS(973), 1, sym_table_cell_alignment, - STATE(827), 1, + ACTIONS(1014), 1, + anon_sym_LBRACK_CARET, + STATE(854), 1, sym_table_cell, - STATE(938), 1, + STATE(937), 1, sym__inline, - STATE(410), 2, + STATE(376), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1058), 5, + ACTIONS(1012), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [10354] = 5, - ACTIONS(1068), 1, - sym__newline, - STATE(922), 1, - sym_table_cell, - STATE(938), 1, + anon_sym_POUND, + anon_sym_PERCENT, + [11128] = 6, + ACTIONS(944), 1, + anon_sym_LBRACK_CARET, + STATE(295), 1, + aux_sym_table_caption_repeat1, + STATE(366), 1, + sym__inline_line, + STATE(1078), 1, sym__inline, - STATE(410), 2, + STATE(360), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1058), 5, + ACTIONS(940), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [10375] = 5, - ACTIONS(1070), 1, + anon_sym_POUND, + anon_sym_PERCENT, + [11156] = 6, + ACTIONS(1014), 1, + anon_sym_LBRACK_CARET, + ACTIONS(1018), 1, sym__newline, - STATE(922), 1, - sym_table_cell, - STATE(938), 1, + STATE(937), 1, sym__inline, - STATE(410), 2, + STATE(1095), 1, + sym_table_cell, + STATE(376), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1058), 5, + ACTIONS(1012), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [10396] = 5, + anon_sym_POUND, + anon_sym_PERCENT, + [11184] = 6, ACTIONS(1001), 1, sym_table_cell_alignment, - STATE(822), 1, + ACTIONS(1014), 1, + anon_sym_LBRACK_CARET, + STATE(835), 1, sym_table_cell, - STATE(938), 1, + STATE(937), 1, sym__inline, - STATE(410), 2, + STATE(376), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1058), 5, + ACTIONS(1012), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [10417] = 5, - STATE(697), 1, - sym__inline_line, - STATE(952), 1, - sym__heading_content, - STATE(1007), 1, + anon_sym_POUND, + anon_sym_PERCENT, + [11212] = 6, + ACTIONS(1014), 1, + anon_sym_LBRACK_CARET, + ACTIONS(1020), 1, + sym__newline, + STATE(937), 1, sym__inline, - STATE(388), 2, + STATE(1095), 1, + sym_table_cell, + STATE(376), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(947), 5, + ACTIONS(1012), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [10438] = 5, - ACTIONS(1072), 1, + anon_sym_POUND, + anon_sym_PERCENT, + [11240] = 6, + ACTIONS(1014), 1, + anon_sym_LBRACK_CARET, + ACTIONS(1022), 1, sym__newline, - STATE(922), 1, - sym_table_cell, - STATE(938), 1, + STATE(937), 1, sym__inline, - STATE(410), 2, + STATE(1095), 1, + sym_table_cell, + STATE(376), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1058), 5, + ACTIONS(1012), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [10459] = 5, - ACTIONS(1074), 1, - sym__newline, - STATE(922), 1, - sym_table_cell, - STATE(938), 1, + anon_sym_POUND, + anon_sym_PERCENT, + [11268] = 6, + ACTIONS(944), 1, + anon_sym_LBRACK_CARET, + STATE(689), 1, + sym__inline_line, + STATE(995), 1, sym__inline, - STATE(410), 2, + STATE(1092), 1, + sym__heading_content, + STATE(360), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1058), 5, + ACTIONS(940), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [10480] = 2, - ACTIONS(455), 5, + anon_sym_POUND, + anon_sym_PERCENT, + [11296] = 6, + ACTIONS(1014), 1, + anon_sym_LBRACK_CARET, + ACTIONS(1024), 1, + sym__newline, + STATE(937), 1, + sym__inline, + STATE(1095), 1, + sym_table_cell, + STATE(376), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(1012), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - ACTIONS(457), 5, - sym_list_marker_dash, - sym_list_marker_star, - sym_list_marker_plus, - sym__list_marker_task_begin, - sym__block_quote_continuation, - [10495] = 5, - STATE(290), 1, - aux_sym_table_caption_repeat1, - STATE(414), 1, - sym__inline_line, - STATE(1062), 1, + anon_sym_POUND, + anon_sym_PERCENT, + [11324] = 6, + ACTIONS(1014), 1, + anon_sym_LBRACK_CARET, + ACTIONS(1026), 1, + sym__newline, + STATE(937), 1, sym__inline, - STATE(388), 2, + STATE(1095), 1, + sym_table_cell, + STATE(376), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(947), 5, + ACTIONS(1012), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [10516] = 5, - ACTIONS(984), 1, + anon_sym_POUND, + anon_sym_PERCENT, + [11352] = 6, + ACTIONS(999), 1, sym_table_cell_alignment, - STATE(794), 1, + ACTIONS(1014), 1, + anon_sym_LBRACK_CARET, + STATE(809), 1, sym_table_cell, - STATE(938), 1, + STATE(937), 1, sym__inline, - STATE(410), 2, + STATE(376), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1058), 5, + ACTIONS(1012), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [10537] = 5, - ACTIONS(1076), 1, - sym__newline, - STATE(922), 1, - sym_table_cell, - STATE(938), 1, + anon_sym_POUND, + anon_sym_PERCENT, + [11380] = 6, + ACTIONS(944), 1, + anon_sym_LBRACK_CARET, + STATE(689), 1, + sym__inline_line, + STATE(995), 1, + sym__inline, + STATE(1018), 1, + sym__heading_content, + STATE(360), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(940), 9, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + anon_sym_POUND, + anon_sym_PERCENT, + [11408] = 6, + ACTIONS(944), 1, + anon_sym_LBRACK_CARET, + STATE(689), 1, + sym__inline_line, + STATE(980), 1, + sym__heading_content, + STATE(995), 1, sym__inline, - STATE(410), 2, + STATE(360), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1058), 5, + ACTIONS(940), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [10558] = 5, - ACTIONS(1078), 1, - sym__newline, - STATE(922), 1, + anon_sym_POUND, + anon_sym_PERCENT, + [11436] = 6, + ACTIONS(977), 1, + sym_table_cell_alignment, + ACTIONS(1014), 1, + anon_sym_LBRACK_CARET, + STATE(844), 1, sym_table_cell, - STATE(938), 1, + STATE(937), 1, sym__inline, - STATE(410), 2, + STATE(376), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1058), 5, + ACTIONS(1012), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [10579] = 5, - ACTIONS(1080), 1, - sym__newline, - STATE(922), 1, + anon_sym_POUND, + anon_sym_PERCENT, + [11464] = 6, + ACTIONS(944), 1, + anon_sym_LBRACK_CARET, + STATE(294), 1, + aux_sym_table_caption_repeat1, + STATE(366), 1, + sym__inline_line, + STATE(1078), 1, + sym__inline, + STATE(360), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(940), 9, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + anon_sym_POUND, + anon_sym_PERCENT, + [11492] = 6, + ACTIONS(975), 1, + sym_table_cell_alignment, + ACTIONS(1014), 1, + anon_sym_LBRACK_CARET, + STATE(745), 1, sym_table_cell, - STATE(938), 1, + STATE(937), 1, sym__inline, - STATE(410), 2, + STATE(376), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1058), 5, + ACTIONS(1012), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [10600] = 5, - ACTIONS(1082), 1, + anon_sym_POUND, + anon_sym_PERCENT, + [11520] = 6, + ACTIONS(1014), 1, + anon_sym_LBRACK_CARET, + ACTIONS(1028), 1, sym__newline, - STATE(922), 1, - sym_table_cell, - STATE(938), 1, + STATE(937), 1, sym__inline, - STATE(410), 2, + STATE(1095), 1, + sym_table_cell, + STATE(376), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1058), 5, + ACTIONS(1012), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [10621] = 5, - ACTIONS(1013), 1, + anon_sym_POUND, + anon_sym_PERCENT, + [11548] = 6, + ACTIONS(991), 1, sym_table_cell_alignment, - STATE(788), 1, + ACTIONS(1014), 1, + anon_sym_LBRACK_CARET, + STATE(870), 1, sym_table_cell, - STATE(938), 1, + STATE(937), 1, sym__inline, - STATE(410), 2, + STATE(376), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1058), 5, + ACTIONS(1012), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [10642] = 5, - STATE(697), 1, + anon_sym_POUND, + anon_sym_PERCENT, + [11576] = 6, + ACTIONS(944), 1, + anon_sym_LBRACK_CARET, + STATE(689), 1, sym__inline_line, - STATE(956), 1, + STATE(936), 1, sym__heading_content, - STATE(1007), 1, + STATE(995), 1, sym__inline, - STATE(388), 2, + STATE(360), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(947), 5, + ACTIONS(940), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [10663] = 5, - STATE(697), 1, - sym__inline_line, - STATE(1007), 1, + anon_sym_POUND, + anon_sym_PERCENT, + [11604] = 6, + ACTIONS(981), 1, + sym_table_cell_alignment, + ACTIONS(1014), 1, + anon_sym_LBRACK_CARET, + STATE(755), 1, + sym_table_cell, + STATE(937), 1, sym__inline, - STATE(1065), 1, - sym__heading_content, - STATE(388), 2, + STATE(376), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(947), 5, + ACTIONS(1012), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [10684] = 5, - STATE(306), 1, - aux_sym_table_caption_repeat1, - STATE(414), 1, - sym__inline_line, - STATE(1062), 1, + anon_sym_POUND, + anon_sym_PERCENT, + [11632] = 6, + ACTIONS(1014), 1, + anon_sym_LBRACK_CARET, + ACTIONS(1030), 1, + sym__newline, + STATE(937), 1, sym__inline, - STATE(388), 2, + STATE(1095), 1, + sym_table_cell, + STATE(376), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(947), 5, + ACTIONS(1012), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [10705] = 5, - ACTIONS(1084), 1, + anon_sym_POUND, + anon_sym_PERCENT, + [11660] = 6, + ACTIONS(1014), 1, + anon_sym_LBRACK_CARET, + ACTIONS(1032), 1, sym__newline, - STATE(922), 1, + STATE(937), 1, + sym__inline, + STATE(1095), 1, sym_table_cell, - STATE(938), 1, + STATE(376), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(1012), 9, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + anon_sym_POUND, + anon_sym_PERCENT, + [11688] = 6, + ACTIONS(944), 1, + anon_sym_LBRACK_CARET, + STATE(290), 1, + aux_sym_table_caption_repeat1, + STATE(366), 1, + sym__inline_line, + STATE(1078), 1, sym__inline, - STATE(410), 2, + STATE(360), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1058), 5, + ACTIONS(940), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [10726] = 5, - ACTIONS(993), 1, - sym_table_cell_alignment, - STATE(736), 1, - sym_table_cell, - STATE(938), 1, + anon_sym_POUND, + anon_sym_PERCENT, + [11716] = 6, + ACTIONS(1014), 1, + anon_sym_LBRACK_CARET, + ACTIONS(1034), 1, + sym__newline, + STATE(937), 1, sym__inline, - STATE(410), 2, + STATE(1095), 1, + sym_table_cell, + STATE(376), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1058), 5, + ACTIONS(1012), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [10747] = 5, - ACTIONS(1086), 1, + anon_sym_POUND, + anon_sym_PERCENT, + [11744] = 6, + ACTIONS(1014), 1, + anon_sym_LBRACK_CARET, + ACTIONS(1036), 1, sym__newline, - STATE(922), 1, + STATE(937), 1, + sym__inline, + STATE(1095), 1, sym_table_cell, - STATE(938), 1, + STATE(376), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(1012), 9, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + anon_sym_POUND, + anon_sym_PERCENT, + [11772] = 6, + ACTIONS(1014), 1, + anon_sym_LBRACK_CARET, + ACTIONS(1038), 1, + sym__newline, + STATE(937), 1, sym__inline, - STATE(410), 2, + STATE(1095), 1, + sym_table_cell, + STATE(376), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1058), 5, + ACTIONS(1012), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [10768] = 5, - STATE(295), 1, + anon_sym_POUND, + anon_sym_PERCENT, + [11800] = 6, + ACTIONS(944), 1, + anon_sym_LBRACK_CARET, + STATE(304), 1, aux_sym_table_caption_repeat1, - STATE(414), 1, + STATE(366), 1, sym__inline_line, - STATE(1062), 1, + STATE(1078), 1, sym__inline, - STATE(388), 2, + STATE(360), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(947), 5, + ACTIONS(940), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [10789] = 5, - ACTIONS(1088), 1, + anon_sym_POUND, + anon_sym_PERCENT, + [11828] = 6, + ACTIONS(1014), 1, + anon_sym_LBRACK_CARET, + ACTIONS(1040), 1, sym__newline, - STATE(922), 1, - sym_table_cell, - STATE(938), 1, + STATE(937), 1, sym__inline, - STATE(410), 2, + STATE(1095), 1, + sym_table_cell, + STATE(376), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1058), 5, + ACTIONS(1012), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [10810] = 5, - ACTIONS(1015), 1, + anon_sym_POUND, + anon_sym_PERCENT, + [11856] = 6, + ACTIONS(935), 1, sym_table_cell_alignment, - STATE(778), 1, + ACTIONS(1014), 1, + anon_sym_LBRACK_CARET, + STATE(798), 1, sym_table_cell, - STATE(938), 1, + STATE(937), 1, sym__inline, - STATE(410), 2, + STATE(376), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1058), 5, + ACTIONS(1012), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [10831] = 5, - STATE(697), 1, - sym__inline_line, - STATE(1007), 1, + anon_sym_POUND, + anon_sym_PERCENT, + [11884] = 6, + ACTIONS(1014), 1, + anon_sym_LBRACK_CARET, + ACTIONS(1042), 1, + sym__newline, + STATE(937), 1, sym__inline, - STATE(1066), 1, - sym__heading_content, - STATE(388), 2, + STATE(1095), 1, + sym_table_cell, + STATE(376), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(947), 5, + ACTIONS(1012), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [10852] = 5, - ACTIONS(995), 1, - sym_table_cell_alignment, - STATE(747), 1, - sym_table_cell, - STATE(938), 1, + anon_sym_POUND, + anon_sym_PERCENT, + [11912] = 6, + ACTIONS(944), 1, + anon_sym_LBRACK_CARET, + STATE(292), 1, + aux_sym_table_caption_repeat1, + STATE(366), 1, + sym__inline_line, + STATE(1078), 1, sym__inline, - STATE(410), 2, + STATE(360), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1058), 5, + ACTIONS(940), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [10873] = 5, - ACTIONS(969), 1, - sym_table_cell_alignment, - STATE(805), 1, - sym_table_cell, - STATE(938), 1, + anon_sym_POUND, + anon_sym_PERCENT, + [11940] = 6, + ACTIONS(1014), 1, + anon_sym_LBRACK_CARET, + ACTIONS(1044), 1, + sym__newline, + STATE(937), 1, sym__inline, - STATE(410), 2, + STATE(1095), 1, + sym_table_cell, + STATE(376), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1058), 5, + ACTIONS(1012), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [10894] = 5, - ACTIONS(997), 1, + anon_sym_POUND, + anon_sym_PERCENT, + [11968] = 6, + ACTIONS(979), 1, sym_table_cell_alignment, - STATE(770), 1, + ACTIONS(1014), 1, + anon_sym_LBRACK_CARET, + STATE(789), 1, sym_table_cell, - STATE(938), 1, + STATE(937), 1, sym__inline, - STATE(410), 2, + STATE(376), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1058), 5, + ACTIONS(1012), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [10915] = 3, - ACTIONS(1093), 2, - sym__eof_or_newline, - sym__newline_inline, - STATE(362), 2, + anon_sym_POUND, + anon_sym_PERCENT, + [11996] = 5, + ACTIONS(944), 1, + anon_sym_LBRACK_CARET, + STATE(737), 1, + sym__inline_line, + STATE(995), 1, + sym__inline, + STATE(360), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1090), 5, + ACTIONS(940), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [10931] = 6, - ACTIONS(533), 1, - sym__block_quote_continuation, - ACTIONS(1095), 1, - anon_sym_PIPE, - STATE(474), 1, - sym_table_separator, - STATE(702), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(1055), 1, - sym__block_quote_prefix, - ACTIONS(526), 4, - sym__newline, - sym__list_item_continuation, - sym__list_item_end, - sym__table_caption_begin, - [10953] = 4, - STATE(879), 1, - sym__inline_line, - STATE(1007), 1, + anon_sym_POUND, + anon_sym_PERCENT, + [12021] = 5, + ACTIONS(1014), 1, + anon_sym_LBRACK_CARET, + STATE(937), 1, sym__inline, - STATE(388), 2, + STATE(1095), 1, + sym_table_cell, + STATE(376), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(947), 5, + ACTIONS(1012), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [10971] = 4, - STATE(922), 1, - sym_table_cell, - STATE(938), 1, - sym__inline, - STATE(410), 2, + anon_sym_POUND, + anon_sym_PERCENT, + [12046] = 4, + ACTIONS(1049), 1, + anon_sym_LBRACK_CARET, + ACTIONS(1052), 2, + sym__eof_or_newline, + sym__newline_inline, + STATE(354), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1058), 5, + ACTIONS(1046), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [10989] = 3, - ACTIONS(1100), 2, + anon_sym_POUND, + anon_sym_PERCENT, + [12069] = 4, + ACTIONS(896), 1, + anon_sym_LBRACK_CARET, + ACTIONS(1056), 2, sym__eof_or_newline, sym__newline_inline, - STATE(362), 2, + STATE(354), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1098), 5, + ACTIONS(1054), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [11005] = 7, - ACTIONS(1102), 1, - aux_sym__line_token1, - ACTIONS(1104), 1, - sym__block_close, - ACTIONS(1106), 1, - sym__block_quote_continuation, - STATE(665), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(885), 1, - sym__block_quote_prefix, - STATE(1026), 1, - sym_code, - STATE(408), 2, - sym__line, - aux_sym_code_repeat1, - [11028] = 7, - ACTIONS(1102), 1, - aux_sym__line_token1, - ACTIONS(1106), 1, - sym__block_quote_continuation, - ACTIONS(1108), 1, - sym__block_close, - STATE(665), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(885), 1, - sym__block_quote_prefix, - STATE(977), 1, - sym_code, - STATE(408), 2, - sym__line, - aux_sym_code_repeat1, - [11051] = 3, - STATE(679), 1, + anon_sym_POUND, + anon_sym_PERCENT, + [12092] = 4, + ACTIONS(1052), 1, + sym__eof_or_newline, + ACTIONS(1061), 1, + anon_sym_LBRACK_CARET, + STATE(356), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(1058), 9, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + anon_sym_POUND, + anon_sym_PERCENT, + [12114] = 4, + ACTIONS(896), 1, + anon_sym_LBRACK_CARET, + STATE(636), 1, sym__inline, - STATE(366), 2, + STATE(355), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(11), 5, + ACTIONS(13), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [11066] = 7, - ACTIONS(1102), 1, - aux_sym__line_token1, - ACTIONS(1106), 1, + anon_sym_POUND, + anon_sym_PERCENT, + [12136] = 10, + ACTIONS(480), 1, sym__block_quote_continuation, - ACTIONS(1110), 1, - sym__block_close, - STATE(665), 1, + ACTIONS(1064), 1, + anon_sym_PIPE, + ACTIONS(1066), 1, + sym__newline, + ACTIONS(1068), 1, + sym__table_caption_begin, + STATE(383), 1, + sym_table_row, + STATE(643), 1, + sym_table_caption, + STATE(681), 1, aux_sym__block_quote_prefix_repeat1, - STATE(885), 1, + STATE(1039), 1, sym__block_quote_prefix, - STATE(899), 1, - sym_code, - STATE(408), 2, - sym__line, - aux_sym_code_repeat1, - [11089] = 7, - ACTIONS(29), 1, - sym__list_marker_task_begin, - ACTIONS(1112), 1, - sym__block_close, - ACTIONS(1114), 1, - sym__block_quote_continuation, - STATE(38), 1, - sym_list_marker_task, - STATE(646), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(886), 1, - sym__block_quote_prefix, - STATE(391), 2, - sym__list_item_task, - aux_sym__list_task_repeat1, - [11112] = 7, - ACTIONS(1102), 1, - aux_sym__line_token1, - ACTIONS(1106), 1, - sym__block_quote_continuation, - ACTIONS(1116), 1, - sym__block_close, - STATE(665), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(885), 1, - sym__block_quote_prefix, - STATE(942), 1, - sym_code, - STATE(408), 2, - sym__line, - aux_sym_code_repeat1, - [11135] = 7, - ACTIONS(1102), 1, - aux_sym__line_token1, - ACTIONS(1106), 1, - sym__block_quote_continuation, - ACTIONS(1118), 1, - sym__block_close, - STATE(665), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(885), 1, - sym__block_quote_prefix, - STATE(893), 1, - sym_code, - STATE(408), 2, - sym__line, - aux_sym_code_repeat1, - [11158] = 7, - ACTIONS(1102), 1, - aux_sym__line_token1, - ACTIONS(1106), 1, - sym__block_quote_continuation, - ACTIONS(1120), 1, - sym__block_close, - STATE(665), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(885), 1, - sym__block_quote_prefix, - STATE(932), 1, - sym_code, - STATE(408), 2, - sym__line, - aux_sym_code_repeat1, - [11181] = 3, - ACTIONS(1124), 1, + ACTIONS(476), 2, + sym__list_item_continuation, + sym__list_item_end, + STATE(373), 3, + sym__table_content, + sym_table_separator, + aux_sym_table_repeat1, + [12170] = 4, + ACTIONS(1073), 1, anon_sym_RBRACK, - STATE(380), 2, + ACTIONS(1075), 1, + anon_sym_LBRACK_CARET, + STATE(359), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1122), 5, + ACTIONS(1070), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [11196] = 6, - ACTIONS(533), 1, - sym__block_quote_continuation, - ACTIONS(1126), 1, - anon_sym_PIPE, - STATE(488), 1, - sym_table_separator, - STATE(702), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(1059), 1, - sym__block_quote_prefix, - ACTIONS(526), 3, - sym__block_close, - sym__newline, - sym__table_caption_begin, - [11217] = 3, - STATE(833), 1, - sym__inline, - STATE(366), 2, + anon_sym_POUND, + anon_sym_PERCENT, + [12192] = 4, + ACTIONS(944), 1, + anon_sym_LBRACK_CARET, + ACTIONS(1056), 1, + sym__eof_or_newline, + STATE(356), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(11), 5, + ACTIONS(1078), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [11232] = 7, - ACTIONS(29), 1, - sym__list_marker_task_begin, - ACTIONS(1114), 1, - sym__block_quote_continuation, - ACTIONS(1129), 1, - sym__block_close, - STATE(38), 1, - sym_list_marker_task, - STATE(646), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(886), 1, - sym__block_quote_prefix, - STATE(391), 2, - sym__list_item_task, - aux_sym__list_task_repeat1, - [11255] = 7, - ACTIONS(1102), 1, - aux_sym__line_token1, - ACTIONS(1106), 1, - sym__block_quote_continuation, - ACTIONS(1131), 1, - sym__block_close, - STATE(665), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(885), 1, - sym__block_quote_prefix, - STATE(976), 1, - sym_code, - STATE(408), 2, - sym__line, - aux_sym_code_repeat1, - [11278] = 3, - ACTIONS(1136), 1, + anon_sym_POUND, + anon_sym_PERCENT, + [12214] = 4, + ACTIONS(1082), 1, anon_sym_RBRACK, - STATE(380), 2, + ACTIONS(1084), 1, + anon_sym_LBRACK_CARET, + STATE(359), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1133), 5, + ACTIONS(1080), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [11293] = 7, - ACTIONS(29), 1, - sym__list_marker_task_begin, - ACTIONS(1114), 1, - sym__block_quote_continuation, - ACTIONS(1138), 1, - sym__block_close, - STATE(38), 1, - sym_list_marker_task, - STATE(646), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(886), 1, - sym__block_quote_prefix, - STATE(391), 2, - sym__list_item_task, - aux_sym__list_task_repeat1, - [11316] = 7, - ACTIONS(1102), 1, - aux_sym__line_token1, - ACTIONS(1106), 1, - sym__block_quote_continuation, - ACTIONS(1140), 1, + anon_sym_POUND, + anon_sym_PERCENT, + [12236] = 4, + ACTIONS(896), 1, + anon_sym_LBRACK_CARET, + STATE(714), 1, + sym__inline, + STATE(355), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(13), 9, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + anon_sym_POUND, + anon_sym_PERCENT, + [12258] = 2, + ACTIONS(1088), 2, + sym__eof_or_newline, + sym__newline_inline, + ACTIONS(1086), 10, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACK_CARET, + anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + anon_sym_POUND, + anon_sym_PERCENT, + [12275] = 9, + ACTIONS(877), 1, + sym__whitespace1, + ACTIONS(1090), 1, + anon_sym_RBRACE, + ACTIONS(1092), 1, + anon_sym_DOT, + ACTIONS(1094), 1, + aux_sym_identifier_token1, + ACTIONS(1096), 1, + anon_sym_PERCENT, + ACTIONS(1098), 1, + sym__id, + STATE(375), 1, + aux_sym_block_attribute_repeat1, + STATE(932), 1, + sym_key, + STATE(433), 4, + sym_class, + sym_identifier, + sym_key_value, + sym__comment_no_newline, + [12306] = 9, + ACTIONS(877), 1, + sym__whitespace1, + ACTIONS(1092), 1, + anon_sym_DOT, + ACTIONS(1094), 1, + aux_sym_identifier_token1, + ACTIONS(1096), 1, + anon_sym_PERCENT, + ACTIONS(1098), 1, + sym__id, + ACTIONS(1100), 1, + anon_sym_RBRACE, + STATE(375), 1, + aux_sym_block_attribute_repeat1, + STATE(932), 1, + sym_key, + STATE(433), 4, + sym_class, + sym_identifier, + sym_key_value, + sym__comment_no_newline, + [12337] = 2, + ACTIONS(1104), 1, + sym__table_caption_end, + ACTIONS(1102), 11, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_NULL, + anon_sym_LBRACK_CARET, + anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + anon_sym_POUND, + anon_sym_PERCENT, + [12354] = 2, + ACTIONS(1108), 1, + sym__table_caption_end, + ACTIONS(1106), 11, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_NULL, + anon_sym_LBRACK_CARET, + anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + anon_sym_POUND, + anon_sym_PERCENT, + [12371] = 9, + ACTIONS(877), 1, + sym__whitespace1, + ACTIONS(1092), 1, + anon_sym_DOT, + ACTIONS(1094), 1, + aux_sym_identifier_token1, + ACTIONS(1096), 1, + anon_sym_PERCENT, + ACTIONS(1098), 1, + sym__id, + ACTIONS(1110), 1, + anon_sym_RBRACE, + STATE(375), 1, + aux_sym_block_attribute_repeat1, + STATE(932), 1, + sym_key, + STATE(433), 4, + sym_class, + sym_identifier, + sym_key_value, + sym__comment_no_newline, + [12402] = 10, + ACTIONS(476), 1, sym__block_close, - STATE(665), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(885), 1, - sym__block_quote_prefix, - STATE(987), 1, - sym_code, - STATE(408), 2, - sym__line, - aux_sym_code_repeat1, - [11339] = 7, - ACTIONS(1102), 1, - aux_sym__line_token1, - ACTIONS(1106), 1, + ACTIONS(480), 1, sym__block_quote_continuation, - ACTIONS(1142), 1, - sym__block_close, - STATE(665), 1, + ACTIONS(1112), 1, + anon_sym_PIPE, + ACTIONS(1114), 1, + sym__newline, + ACTIONS(1116), 1, + sym__table_caption_begin, + STATE(384), 1, + sym_table_row, + STATE(681), 1, aux_sym__block_quote_prefix_repeat1, - STATE(885), 1, + STATE(788), 1, + sym_table_caption, + STATE(1046), 1, sym__block_quote_prefix, - STATE(957), 1, - sym_code, - STATE(408), 2, - sym__line, - aux_sym_code_repeat1, - [11362] = 7, - ACTIONS(1102), 1, - aux_sym__line_token1, - ACTIONS(1106), 1, + STATE(379), 3, + sym__table_content, + sym_table_separator, + aux_sym_table_repeat1, + [12435] = 9, + ACTIONS(877), 1, + sym__whitespace1, + ACTIONS(1092), 1, + anon_sym_DOT, + ACTIONS(1094), 1, + aux_sym_identifier_token1, + ACTIONS(1096), 1, + anon_sym_PERCENT, + ACTIONS(1098), 1, + sym__id, + ACTIONS(1118), 1, + anon_sym_RBRACE, + STATE(375), 1, + aux_sym_block_attribute_repeat1, + STATE(932), 1, + sym_key, + STATE(433), 4, + sym_class, + sym_identifier, + sym_key_value, + sym__comment_no_newline, + [12466] = 3, + ACTIONS(1120), 1, sym__block_quote_continuation, - ACTIONS(1144), 1, - sym__block_close, - STATE(665), 1, + STATE(371), 1, aux_sym__block_quote_prefix_repeat1, - STATE(885), 1, - sym__block_quote_prefix, - STATE(967), 1, - sym_code, - STATE(408), 2, - sym__line, - aux_sym_code_repeat1, - [11385] = 3, - ACTIONS(1093), 1, - sym__eof_or_newline, - STATE(385), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(1146), 5, + ACTIONS(856), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [11400] = 7, - ACTIONS(1102), 1, - aux_sym__line_token1, - ACTIONS(1106), 1, - sym__block_quote_continuation, - ACTIONS(1149), 1, - sym__block_close, - STATE(665), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(885), 1, - sym__block_quote_prefix, - STATE(1049), 1, - sym_code, - STATE(408), 2, - sym__line, - aux_sym_code_repeat1, - [11423] = 7, - ACTIONS(29), 1, - sym__list_marker_task_begin, - ACTIONS(1114), 1, + anon_sym_POUND, + anon_sym_PERCENT, + [12485] = 3, + ACTIONS(997), 1, sym__block_quote_continuation, - ACTIONS(1151), 1, - sym__block_close, - STATE(38), 1, - sym_list_marker_task, - STATE(646), 1, + STATE(371), 1, aux_sym__block_quote_prefix_repeat1, - STATE(886), 1, - sym__block_quote_prefix, - STATE(391), 2, - sym__list_item_task, - aux_sym__list_task_repeat1, - [11446] = 3, - ACTIONS(1100), 1, - sym__eof_or_newline, - STATE(385), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(1153), 5, + ACTIONS(985), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, - [11461] = 7, - ACTIONS(29), 1, - sym__list_marker_task_begin, - ACTIONS(1114), 1, + anon_sym_POUND, + anon_sym_PERCENT, + [12504] = 7, + ACTIONS(503), 1, sym__block_quote_continuation, - ACTIONS(1155), 1, - sym__block_close, - STATE(38), 1, - sym_list_marker_task, - STATE(646), 1, + ACTIONS(1123), 1, + anon_sym_PIPE, + STATE(383), 1, + sym_table_row, + STATE(681), 1, aux_sym__block_quote_prefix_repeat1, - STATE(886), 1, + STATE(1039), 1, sym__block_quote_prefix, - STATE(391), 2, - sym__list_item_task, - aux_sym__list_task_repeat1, - [11484] = 7, - ACTIONS(1102), 1, - aux_sym__line_token1, - ACTIONS(1106), 1, + STATE(373), 3, + sym__table_content, + sym_table_separator, + aux_sym_table_repeat1, + ACTIONS(501), 4, + sym__newline, + sym__list_item_continuation, + sym__list_item_end, + sym__table_caption_begin, + [12531] = 3, + ACTIONS(1129), 1, + anon_sym_LBRACK_CARET, + STATE(374), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(1126), 9, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + anon_sym_POUND, + anon_sym_PERCENT, + [12550] = 9, + ACTIONS(1132), 1, + anon_sym_RBRACE, + ACTIONS(1134), 1, + anon_sym_DOT, + ACTIONS(1137), 1, + aux_sym_identifier_token1, + ACTIONS(1140), 1, + sym__whitespace1, + ACTIONS(1143), 1, + anon_sym_PERCENT, + ACTIONS(1146), 1, + sym__id, + STATE(375), 1, + aux_sym_block_attribute_repeat1, + STATE(932), 1, + sym_key, + STATE(433), 4, + sym_class, + sym_identifier, + sym_key_value, + sym__comment_no_newline, + [12581] = 4, + ACTIONS(1014), 1, + anon_sym_LBRACK_CARET, + ACTIONS(1082), 1, + anon_sym_PIPE, + STATE(374), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(1149), 8, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + anon_sym_POUND, + anon_sym_PERCENT, + [12602] = 9, + ACTIONS(877), 1, + sym__whitespace1, + ACTIONS(1092), 1, + anon_sym_DOT, + ACTIONS(1094), 1, + aux_sym_identifier_token1, + ACTIONS(1096), 1, + anon_sym_PERCENT, + ACTIONS(1098), 1, + sym__id, + ACTIONS(1151), 1, + anon_sym_RBRACE, + STATE(375), 1, + aux_sym_block_attribute_repeat1, + STATE(932), 1, + sym_key, + STATE(433), 4, + sym_class, + sym_identifier, + sym_key_value, + sym__comment_no_newline, + [12633] = 2, + ACTIONS(1088), 1, + sym__eof_or_newline, + ACTIONS(1086), 10, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACK_CARET, + anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + anon_sym_POUND, + anon_sym_PERCENT, + [12649] = 7, + ACTIONS(503), 1, sym__block_quote_continuation, - ACTIONS(1157), 1, + ACTIONS(1153), 1, + anon_sym_PIPE, + STATE(384), 1, + sym_table_row, + STATE(681), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(1046), 1, + sym__block_quote_prefix, + ACTIONS(501), 3, sym__block_close, - STATE(665), 1, + sym__newline, + sym__table_caption_begin, + STATE(379), 3, + sym__table_content, + sym_table_separator, + aux_sym_table_repeat1, + [12675] = 1, + ACTIONS(1086), 11, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_LBRACK_CARET, + anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + anon_sym_POUND, + anon_sym_PERCENT, + [12689] = 2, + ACTIONS(445), 1, + sym__block_quote_continuation, + ACTIONS(443), 10, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACK_CARET, + anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + anon_sym_POUND, + anon_sym_PERCENT, + [12705] = 1, + ACTIONS(1086), 10, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACK_CARET, + anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + anon_sym_POUND, + anon_sym_PERCENT, + [12718] = 6, + ACTIONS(519), 1, + sym__block_quote_continuation, + ACTIONS(1156), 1, + anon_sym_PIPE, + STATE(477), 1, + sym_table_separator, + STATE(681), 1, aux_sym__block_quote_prefix_repeat1, - STATE(885), 1, + STATE(1065), 1, sym__block_quote_prefix, - STATE(898), 1, - sym_code, - STATE(408), 2, - sym__line, - aux_sym_code_repeat1, - [11507] = 7, + ACTIONS(512), 4, + sym__newline, + sym__list_item_continuation, + sym__list_item_end, + sym__table_caption_begin, + [12740] = 6, + ACTIONS(519), 1, + sym__block_quote_continuation, ACTIONS(1159), 1, + anon_sym_PIPE, + STATE(492), 1, + sym_table_separator, + STATE(681), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(1069), 1, + sym__block_quote_prefix, + ACTIONS(512), 3, sym__block_close, - ACTIONS(1161), 1, - sym__list_marker_task_begin, + sym__newline, + sym__table_caption_begin, + [12761] = 7, + ACTIONS(1162), 1, + aux_sym__line_token1, ACTIONS(1164), 1, + sym__block_close, + ACTIONS(1166), 1, sym__block_quote_continuation, - STATE(38), 1, - sym_list_marker_task, - STATE(646), 1, + STATE(673), 1, aux_sym__block_quote_prefix_repeat1, - STATE(886), 1, + STATE(733), 1, sym__block_quote_prefix, - STATE(391), 2, - sym__list_item_task, - aux_sym__list_task_repeat1, - [11530] = 7, - ACTIONS(1102), 1, + STATE(969), 1, + sym_code, + STATE(419), 2, + sym__line, + aux_sym_code_repeat1, + [12784] = 7, + ACTIONS(1162), 1, aux_sym__line_token1, - ACTIONS(1106), 1, + ACTIONS(1166), 1, sym__block_quote_continuation, - ACTIONS(1167), 1, + ACTIONS(1168), 1, sym__block_close, - STATE(665), 1, + STATE(673), 1, aux_sym__block_quote_prefix_repeat1, - STATE(885), 1, + STATE(733), 1, sym__block_quote_prefix, - STATE(909), 1, + STATE(963), 1, sym_code, - STATE(408), 2, + STATE(419), 2, sym__line, aux_sym_code_repeat1, - [11553] = 7, - ACTIONS(1102), 1, + [12807] = 7, + ACTIONS(1162), 1, aux_sym__line_token1, - ACTIONS(1106), 1, + ACTIONS(1166), 1, sym__block_quote_continuation, - ACTIONS(1169), 1, + ACTIONS(1170), 1, sym__block_close, - STATE(665), 1, + STATE(673), 1, aux_sym__block_quote_prefix_repeat1, - STATE(885), 1, + STATE(733), 1, sym__block_quote_prefix, - STATE(1023), 1, + STATE(954), 1, sym_code, - STATE(408), 2, + STATE(419), 2, sym__line, aux_sym_code_repeat1, - [11576] = 7, - ACTIONS(1102), 1, + [12830] = 7, + ACTIONS(1162), 1, aux_sym__line_token1, - ACTIONS(1106), 1, + ACTIONS(1166), 1, sym__block_quote_continuation, - ACTIONS(1171), 1, + ACTIONS(1172), 1, sym__block_close, - STATE(665), 1, + STATE(673), 1, aux_sym__block_quote_prefix_repeat1, - STATE(885), 1, + STATE(733), 1, sym__block_quote_prefix, - STATE(914), 1, + STATE(903), 1, sym_code, - STATE(408), 2, + STATE(419), 2, sym__line, aux_sym_code_repeat1, - [11599] = 6, - ACTIONS(27), 1, - sym_list_marker_plus, - ACTIONS(1173), 1, - sym__block_close, - ACTIONS(1175), 1, + [12853] = 7, + ACTIONS(1162), 1, + aux_sym__line_token1, + ACTIONS(1166), 1, sym__block_quote_continuation, - STATE(695), 1, + ACTIONS(1174), 1, + sym__block_close, + STATE(673), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1079), 1, + STATE(733), 1, sym__block_quote_prefix, - STATE(404), 2, - sym__list_item_plus, - aux_sym__list_plus_repeat1, - [11619] = 6, - ACTIONS(25), 1, - sym_list_marker_star, - ACTIONS(1177), 1, + STATE(1008), 1, + sym_code, + STATE(419), 2, + sym__line, + aux_sym_code_repeat1, + [12876] = 7, + ACTIONS(31), 1, + sym__list_marker_task_begin, + ACTIONS(1176), 1, sym__block_close, - ACTIONS(1179), 1, + ACTIONS(1178), 1, sym__block_quote_continuation, - STATE(641), 1, + STATE(38), 1, + sym_list_marker_task, + STATE(654), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1078), 1, + STATE(880), 1, sym__block_quote_prefix, - STATE(399), 2, - sym__list_item_star, - aux_sym__list_star_repeat1, - [11639] = 6, - ACTIONS(27), 1, - sym_list_marker_plus, - ACTIONS(1175), 1, + STATE(405), 2, + sym__list_item_task, + aux_sym__list_task_repeat1, + [12899] = 7, + ACTIONS(31), 1, + sym__list_marker_task_begin, + ACTIONS(1178), 1, sym__block_quote_continuation, - ACTIONS(1181), 1, + ACTIONS(1180), 1, sym__block_close, - STATE(695), 1, + STATE(38), 1, + sym_list_marker_task, + STATE(654), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1079), 1, + STATE(880), 1, sym__block_quote_prefix, - STATE(404), 2, - sym__list_item_plus, - aux_sym__list_plus_repeat1, - [11659] = 6, - ACTIONS(1183), 1, - sym__block_close, - ACTIONS(1185), 1, - sym_list_marker_dash, - ACTIONS(1188), 1, + STATE(405), 2, + sym__list_item_task, + aux_sym__list_task_repeat1, + [12922] = 7, + ACTIONS(1162), 1, + aux_sym__line_token1, + ACTIONS(1166), 1, sym__block_quote_continuation, - STATE(640), 1, + ACTIONS(1182), 1, + sym__block_close, + STATE(673), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1080), 1, + STATE(733), 1, sym__block_quote_prefix, - STATE(398), 2, - sym__list_item_dash, - aux_sym__list_dash_repeat1, - [11679] = 6, - ACTIONS(1191), 1, - sym__block_close, - ACTIONS(1193), 1, - sym_list_marker_star, - ACTIONS(1196), 1, + STATE(1033), 1, + sym_code, + STATE(419), 2, + sym__line, + aux_sym_code_repeat1, + [12945] = 7, + ACTIONS(1162), 1, + aux_sym__line_token1, + ACTIONS(1166), 1, sym__block_quote_continuation, - STATE(641), 1, + ACTIONS(1184), 1, + sym__block_close, + STATE(673), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1078), 1, + STATE(733), 1, sym__block_quote_prefix, - STATE(399), 2, - sym__list_item_star, - aux_sym__list_star_repeat1, - [11699] = 6, - ACTIONS(23), 1, - sym_list_marker_dash, - ACTIONS(1199), 1, - sym__block_close, - ACTIONS(1201), 1, + STATE(1034), 1, + sym_code, + STATE(419), 2, + sym__line, + aux_sym_code_repeat1, + [12968] = 7, + ACTIONS(1162), 1, + aux_sym__line_token1, + ACTIONS(1166), 1, sym__block_quote_continuation, - STATE(640), 1, + ACTIONS(1186), 1, + sym__block_close, + STATE(673), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1080), 1, + STATE(733), 1, sym__block_quote_prefix, - STATE(398), 2, - sym__list_item_dash, - aux_sym__list_dash_repeat1, - [11719] = 6, - ACTIONS(27), 1, - sym_list_marker_plus, - ACTIONS(1175), 1, + STATE(998), 1, + sym_code, + STATE(419), 2, + sym__line, + aux_sym_code_repeat1, + [12991] = 7, + ACTIONS(1162), 1, + aux_sym__line_token1, + ACTIONS(1166), 1, sym__block_quote_continuation, - ACTIONS(1203), 1, + ACTIONS(1188), 1, sym__block_close, - STATE(695), 1, + STATE(673), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1079), 1, + STATE(733), 1, sym__block_quote_prefix, - STATE(404), 2, - sym__list_item_plus, - aux_sym__list_plus_repeat1, - [11739] = 6, - ACTIONS(25), 1, - sym_list_marker_star, - ACTIONS(1179), 1, + STATE(955), 1, + sym_code, + STATE(419), 2, + sym__line, + aux_sym_code_repeat1, + [13014] = 7, + ACTIONS(31), 1, + sym__list_marker_task_begin, + ACTIONS(1178), 1, sym__block_quote_continuation, - ACTIONS(1205), 1, + ACTIONS(1190), 1, sym__block_close, - STATE(641), 1, + STATE(38), 1, + sym_list_marker_task, + STATE(654), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1078), 1, + STATE(880), 1, sym__block_quote_prefix, - STATE(399), 2, - sym__list_item_star, - aux_sym__list_star_repeat1, - [11759] = 3, - ACTIONS(982), 1, + STATE(405), 2, + sym__list_item_task, + aux_sym__list_task_repeat1, + [13037] = 7, + ACTIONS(31), 1, + sym__list_marker_task_begin, + ACTIONS(1178), 1, sym__block_quote_continuation, - STATE(406), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(1007), 5, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACE, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - [11773] = 6, - ACTIONS(1207), 1, + ACTIONS(1192), 1, sym__block_close, - ACTIONS(1209), 1, - sym_list_marker_plus, - ACTIONS(1212), 1, - sym__block_quote_continuation, - STATE(695), 1, + STATE(38), 1, + sym_list_marker_task, + STATE(654), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1079), 1, + STATE(880), 1, sym__block_quote_prefix, - STATE(404), 2, - sym__list_item_plus, - aux_sym__list_plus_repeat1, - [11793] = 2, - ACTIONS(1217), 1, - sym__table_caption_end, - ACTIONS(1215), 6, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_NULL, - anon_sym_LBRACE, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - [11805] = 3, - ACTIONS(1219), 1, + STATE(405), 2, + sym__list_item_task, + aux_sym__list_task_repeat1, + [13060] = 7, + ACTIONS(1162), 1, + aux_sym__line_token1, + ACTIONS(1166), 1, sym__block_quote_continuation, - STATE(406), 1, + ACTIONS(1194), 1, + sym__block_close, + STATE(673), 1, aux_sym__block_quote_prefix_repeat1, - ACTIONS(874), 5, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACE, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - [11819] = 6, - ACTIONS(25), 1, - sym_list_marker_star, - ACTIONS(1179), 1, + STATE(733), 1, + sym__block_quote_prefix, + STATE(905), 1, + sym_code, + STATE(419), 2, + sym__line, + aux_sym_code_repeat1, + [13083] = 7, + ACTIONS(1162), 1, + aux_sym__line_token1, + ACTIONS(1166), 1, sym__block_quote_continuation, - ACTIONS(1222), 1, + ACTIONS(1196), 1, sym__block_close, - STATE(641), 1, + STATE(673), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1078), 1, + STATE(733), 1, sym__block_quote_prefix, - STATE(399), 2, - sym__list_item_star, - aux_sym__list_star_repeat1, - [11839] = 6, - ACTIONS(1102), 1, + STATE(1044), 1, + sym_code, + STATE(419), 2, + sym__line, + aux_sym_code_repeat1, + [13106] = 7, + ACTIONS(1162), 1, aux_sym__line_token1, - ACTIONS(1106), 1, + ACTIONS(1166), 1, sym__block_quote_continuation, - ACTIONS(1224), 1, + ACTIONS(1198), 1, sym__block_close, - STATE(665), 1, + STATE(673), 1, aux_sym__block_quote_prefix_repeat1, - STATE(885), 1, + STATE(733), 1, sym__block_quote_prefix, - STATE(420), 2, + STATE(1051), 1, + sym_code, + STATE(419), 2, sym__line, aux_sym_code_repeat1, - [11859] = 6, - ACTIONS(25), 1, - sym_list_marker_star, - ACTIONS(1179), 1, + [13129] = 7, + ACTIONS(1162), 1, + aux_sym__line_token1, + ACTIONS(1166), 1, sym__block_quote_continuation, - ACTIONS(1226), 1, + ACTIONS(1200), 1, sym__block_close, - STATE(641), 1, + STATE(673), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1078), 1, + STATE(733), 1, + sym__block_quote_prefix, + STATE(908), 1, + sym_code, + STATE(419), 2, + sym__line, + aux_sym_code_repeat1, + [13152] = 7, + ACTIONS(1162), 1, + aux_sym__line_token1, + ACTIONS(1166), 1, + sym__block_quote_continuation, + ACTIONS(1202), 1, + sym__block_close, + STATE(673), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(733), 1, + sym__block_quote_prefix, + STATE(968), 1, + sym_code, + STATE(419), 2, + sym__line, + aux_sym_code_repeat1, + [13175] = 7, + ACTIONS(1162), 1, + aux_sym__line_token1, + ACTIONS(1166), 1, + sym__block_quote_continuation, + ACTIONS(1204), 1, + sym__block_close, + STATE(673), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(733), 1, + sym__block_quote_prefix, + STATE(909), 1, + sym_code, + STATE(419), 2, + sym__line, + aux_sym_code_repeat1, + [13198] = 7, + ACTIONS(31), 1, + sym__list_marker_task_begin, + ACTIONS(1178), 1, + sym__block_quote_continuation, + ACTIONS(1206), 1, + sym__block_close, + STATE(38), 1, + sym_list_marker_task, + STATE(654), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(880), 1, + sym__block_quote_prefix, + STATE(405), 2, + sym__list_item_task, + aux_sym__list_task_repeat1, + [13221] = 7, + ACTIONS(1208), 1, + sym__block_close, + ACTIONS(1210), 1, + sym__list_marker_task_begin, + ACTIONS(1213), 1, + sym__block_quote_continuation, + STATE(38), 1, + sym_list_marker_task, + STATE(654), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(880), 1, + sym__block_quote_prefix, + STATE(405), 2, + sym__list_item_task, + aux_sym__list_task_repeat1, + [13244] = 6, + ACTIONS(29), 1, + sym_list_marker_plus, + ACTIONS(1216), 1, + sym__block_close, + ACTIONS(1218), 1, + sym__block_quote_continuation, + STATE(652), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(923), 1, + sym__block_quote_prefix, + STATE(412), 2, + sym__list_item_plus, + aux_sym__list_plus_repeat1, + [13264] = 6, + ACTIONS(27), 1, + sym_list_marker_star, + ACTIONS(1220), 1, + sym__block_close, + ACTIONS(1222), 1, + sym__block_quote_continuation, + STATE(649), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(922), 1, sym__block_quote_prefix, - STATE(399), 2, + STATE(411), 2, sym__list_item_star, aux_sym__list_star_repeat1, - [11879] = 3, - ACTIONS(1124), 1, - anon_sym_PIPE, - STATE(411), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(1228), 4, - anon_sym_LBRACK, - anon_sym_LBRACE, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - [11893] = 2, + [13284] = 6, + ACTIONS(27), 1, + sym_list_marker_star, + ACTIONS(1222), 1, + sym__block_quote_continuation, + ACTIONS(1224), 1, + sym__block_close, + STATE(649), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(922), 1, + sym__block_quote_prefix, STATE(411), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(1230), 5, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACE, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - [11905] = 6, - ACTIONS(23), 1, + sym__list_item_star, + aux_sym__list_star_repeat1, + [13304] = 6, + ACTIONS(25), 1, sym_list_marker_dash, - ACTIONS(1201), 1, - sym__block_quote_continuation, - ACTIONS(1233), 1, + ACTIONS(1226), 1, sym__block_close, - STATE(640), 1, + ACTIONS(1228), 1, + sym__block_quote_continuation, + STATE(706), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1080), 1, + STATE(924), 1, sym__block_quote_prefix, - STATE(398), 2, + STATE(413), 2, sym__list_item_dash, aux_sym__list_dash_repeat1, - [11925] = 6, - ACTIONS(23), 1, - sym_list_marker_dash, - ACTIONS(1201), 1, + [13324] = 6, + ACTIONS(29), 1, + sym_list_marker_plus, + ACTIONS(1218), 1, sym__block_quote_continuation, - ACTIONS(1235), 1, + ACTIONS(1230), 1, sym__block_close, - STATE(640), 1, + STATE(652), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(923), 1, + sym__block_quote_prefix, + STATE(412), 2, + sym__list_item_plus, + aux_sym__list_plus_repeat1, + [13344] = 6, + ACTIONS(1232), 1, + sym__block_close, + ACTIONS(1234), 1, + sym_list_marker_star, + ACTIONS(1237), 1, + sym__block_quote_continuation, + STATE(649), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(922), 1, + sym__block_quote_prefix, + STATE(411), 2, + sym__list_item_star, + aux_sym__list_star_repeat1, + [13364] = 6, + ACTIONS(1240), 1, + sym__block_close, + ACTIONS(1242), 1, + sym_list_marker_plus, + ACTIONS(1245), 1, + sym__block_quote_continuation, + STATE(652), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(923), 1, + sym__block_quote_prefix, + STATE(412), 2, + sym__list_item_plus, + aux_sym__list_plus_repeat1, + [13384] = 6, + ACTIONS(1248), 1, + sym__block_close, + ACTIONS(1250), 1, + sym_list_marker_dash, + ACTIONS(1253), 1, + sym__block_quote_continuation, + STATE(706), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1080), 1, + STATE(924), 1, sym__block_quote_prefix, - STATE(398), 2, + STATE(413), 2, sym__list_item_dash, aux_sym__list_dash_repeat1, - [11945] = 2, - ACTIONS(1239), 1, - sym__table_caption_end, - ACTIONS(1237), 6, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_NULL, - anon_sym_LBRACE, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - [11957] = 6, - ACTIONS(23), 1, + [13404] = 6, + ACTIONS(25), 1, sym_list_marker_dash, - ACTIONS(1201), 1, + ACTIONS(1228), 1, sym__block_quote_continuation, - ACTIONS(1241), 1, + ACTIONS(1256), 1, sym__block_close, - STATE(640), 1, + STATE(706), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1080), 1, + STATE(924), 1, sym__block_quote_prefix, - STATE(398), 2, + STATE(413), 2, sym__list_item_dash, aux_sym__list_dash_repeat1, - [11977] = 6, - ACTIONS(23), 1, + [13424] = 6, + ACTIONS(25), 1, sym_list_marker_dash, - ACTIONS(1201), 1, + ACTIONS(1228), 1, sym__block_quote_continuation, - ACTIONS(1243), 1, + ACTIONS(1258), 1, sym__block_close, - STATE(640), 1, + STATE(706), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1080), 1, + STATE(924), 1, sym__block_quote_prefix, - STATE(398), 2, + STATE(413), 2, sym__list_item_dash, aux_sym__list_dash_repeat1, - [11997] = 6, - ACTIONS(25), 1, + [13444] = 6, + ACTIONS(27), 1, sym_list_marker_star, - ACTIONS(1179), 1, + ACTIONS(1222), 1, sym__block_quote_continuation, - ACTIONS(1245), 1, + ACTIONS(1260), 1, sym__block_close, - STATE(641), 1, + STATE(649), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1078), 1, + STATE(922), 1, sym__block_quote_prefix, - STATE(399), 2, + STATE(411), 2, sym__list_item_star, aux_sym__list_star_repeat1, - [12017] = 6, - ACTIONS(27), 1, + [13464] = 6, + ACTIONS(29), 1, sym_list_marker_plus, - ACTIONS(1175), 1, + ACTIONS(1218), 1, sym__block_quote_continuation, - ACTIONS(1247), 1, + ACTIONS(1262), 1, sym__block_close, - STATE(695), 1, + STATE(652), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1079), 1, + STATE(923), 1, sym__block_quote_prefix, - STATE(404), 2, + STATE(412), 2, sym__list_item_plus, aux_sym__list_plus_repeat1, - [12037] = 6, - ACTIONS(27), 1, - sym_list_marker_plus, - ACTIONS(1175), 1, + [13484] = 6, + ACTIONS(25), 1, + sym_list_marker_dash, + ACTIONS(1228), 1, sym__block_quote_continuation, - ACTIONS(1249), 1, + ACTIONS(1264), 1, sym__block_close, - STATE(695), 1, + STATE(706), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1079), 1, + STATE(924), 1, sym__block_quote_prefix, - STATE(404), 2, - sym__list_item_plus, - aux_sym__list_plus_repeat1, - [12057] = 6, - ACTIONS(1251), 1, + STATE(413), 2, + sym__list_item_dash, + aux_sym__list_dash_repeat1, + [13504] = 6, + ACTIONS(1162), 1, aux_sym__line_token1, - ACTIONS(1254), 1, - sym__block_close, - ACTIONS(1256), 1, + ACTIONS(1166), 1, sym__block_quote_continuation, - STATE(665), 1, + ACTIONS(1266), 1, + sym__block_close, + STATE(673), 1, aux_sym__block_quote_prefix_repeat1, - STATE(885), 1, + STATE(733), 1, sym__block_quote_prefix, - STATE(420), 2, + STATE(423), 2, sym__line, aux_sym_code_repeat1, - [12077] = 6, - ACTIONS(1259), 1, - sym__list_item_continuation, - ACTIONS(1261), 1, - sym__list_item_end, - ACTIONS(1263), 1, + [13524] = 6, + ACTIONS(25), 1, + sym_list_marker_dash, + ACTIONS(1228), 1, sym__block_quote_continuation, - STATE(461), 1, - aux_sym__list_item_definition_repeat1, - STATE(651), 1, + ACTIONS(1268), 1, + sym__block_close, + STATE(706), 1, aux_sym__block_quote_prefix_repeat1, - STATE(961), 1, + STATE(924), 1, sym__block_quote_prefix, - [12096] = 1, - ACTIONS(560), 6, - sym__newline, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - sym__table_caption_begin, - anon_sym_PIPE, - [12105] = 6, - ACTIONS(1259), 1, - sym__list_item_continuation, - ACTIONS(1263), 1, + STATE(413), 2, + sym__list_item_dash, + aux_sym__list_dash_repeat1, + [13544] = 6, + ACTIONS(29), 1, + sym_list_marker_plus, + ACTIONS(1218), 1, sym__block_quote_continuation, - ACTIONS(1265), 1, - sym__list_item_end, - STATE(461), 1, - aux_sym__list_item_definition_repeat1, - STATE(651), 1, + ACTIONS(1270), 1, + sym__block_close, + STATE(652), 1, aux_sym__block_quote_prefix_repeat1, - STATE(961), 1, + STATE(923), 1, sym__block_quote_prefix, - [12124] = 6, - ACTIONS(1259), 1, - sym__list_item_continuation, - ACTIONS(1263), 1, + STATE(412), 2, + sym__list_item_plus, + aux_sym__list_plus_repeat1, + [13564] = 6, + ACTIONS(27), 1, + sym_list_marker_star, + ACTIONS(1222), 1, sym__block_quote_continuation, - ACTIONS(1267), 1, - sym__list_item_end, - STATE(461), 1, - aux_sym__list_item_definition_repeat1, - STATE(651), 1, + ACTIONS(1272), 1, + sym__block_close, + STATE(649), 1, aux_sym__block_quote_prefix_repeat1, - STATE(961), 1, + STATE(922), 1, sym__block_quote_prefix, - [12143] = 6, - ACTIONS(1259), 1, - sym__list_item_continuation, - ACTIONS(1263), 1, + STATE(411), 2, + sym__list_item_star, + aux_sym__list_star_repeat1, + [13584] = 6, + ACTIONS(1274), 1, + aux_sym__line_token1, + ACTIONS(1277), 1, + sym__block_close, + ACTIONS(1279), 1, sym__block_quote_continuation, - ACTIONS(1269), 1, - sym__list_item_end, - STATE(427), 1, - aux_sym__list_item_definition_repeat1, - STATE(651), 1, + STATE(673), 1, aux_sym__block_quote_prefix_repeat1, - STATE(961), 1, + STATE(733), 1, sym__block_quote_prefix, - [12162] = 6, - ACTIONS(1259), 1, + STATE(423), 2, + sym__line, + aux_sym_code_repeat1, + [13604] = 6, + ACTIONS(27), 1, + sym_list_marker_star, + ACTIONS(1222), 1, + sym__block_quote_continuation, + ACTIONS(1282), 1, + sym__block_close, + STATE(649), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(922), 1, + sym__block_quote_prefix, + STATE(411), 2, + sym__list_item_star, + aux_sym__list_star_repeat1, + [13624] = 6, + ACTIONS(29), 1, + sym_list_marker_plus, + ACTIONS(1218), 1, + sym__block_quote_continuation, + ACTIONS(1284), 1, + sym__block_close, + STATE(652), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(923), 1, + sym__block_quote_prefix, + STATE(412), 2, + sym__list_item_plus, + aux_sym__list_plus_repeat1, + [13644] = 1, + ACTIONS(546), 6, + sym__newline, sym__list_item_continuation, - ACTIONS(1263), 1, + sym__list_item_end, sym__block_quote_continuation, - ACTIONS(1271), 1, + sym__table_caption_begin, + anon_sym_PIPE, + [13653] = 6, + ACTIONS(1286), 1, + sym__list_item_continuation, + ACTIONS(1288), 1, sym__list_item_end, - STATE(428), 1, + ACTIONS(1290), 1, + sym__block_quote_continuation, + STATE(460), 1, aux_sym__list_item_definition_repeat1, - STATE(651), 1, + STATE(659), 1, aux_sym__block_quote_prefix_repeat1, - STATE(961), 1, + STATE(975), 1, sym__block_quote_prefix, - [12181] = 6, - ACTIONS(1259), 1, + [13672] = 6, + ACTIONS(1286), 1, sym__list_item_continuation, - ACTIONS(1263), 1, + ACTIONS(1290), 1, sym__block_quote_continuation, - ACTIONS(1273), 1, + ACTIONS(1292), 1, sym__list_item_end, - STATE(461), 1, + STATE(480), 1, aux_sym__list_item_definition_repeat1, - STATE(651), 1, + STATE(659), 1, aux_sym__block_quote_prefix_repeat1, - STATE(961), 1, + STATE(975), 1, sym__block_quote_prefix, - [12200] = 6, - ACTIONS(1259), 1, + [13691] = 6, + ACTIONS(1286), 1, sym__list_item_continuation, - ACTIONS(1263), 1, + ACTIONS(1290), 1, sym__block_quote_continuation, - ACTIONS(1275), 1, + ACTIONS(1294), 1, sym__list_item_end, - STATE(461), 1, + STATE(480), 1, aux_sym__list_item_definition_repeat1, - STATE(651), 1, + STATE(659), 1, aux_sym__block_quote_prefix_repeat1, - STATE(961), 1, + STATE(975), 1, sym__block_quote_prefix, - [12219] = 6, - ACTIONS(1259), 1, + [13710] = 6, + ACTIONS(1286), 1, sym__list_item_continuation, - ACTIONS(1263), 1, + ACTIONS(1290), 1, sym__block_quote_continuation, - ACTIONS(1277), 1, + ACTIONS(1296), 1, sym__list_item_end, - STATE(430), 1, + STATE(431), 1, aux_sym__list_item_definition_repeat1, - STATE(651), 1, + STATE(659), 1, aux_sym__block_quote_prefix_repeat1, - STATE(961), 1, + STATE(975), 1, sym__block_quote_prefix, - [12238] = 6, - ACTIONS(1259), 1, + [13729] = 6, + ACTIONS(1286), 1, sym__list_item_continuation, - ACTIONS(1263), 1, + ACTIONS(1290), 1, sym__block_quote_continuation, - ACTIONS(1279), 1, + ACTIONS(1298), 1, sym__list_item_end, - STATE(461), 1, + STATE(480), 1, aux_sym__list_item_definition_repeat1, - STATE(651), 1, + STATE(659), 1, aux_sym__block_quote_prefix_repeat1, - STATE(961), 1, + STATE(975), 1, sym__block_quote_prefix, - [12257] = 6, - ACTIONS(1259), 1, + [13748] = 6, + ACTIONS(1286), 1, sym__list_item_continuation, - ACTIONS(1263), 1, + ACTIONS(1290), 1, sym__block_quote_continuation, - ACTIONS(1281), 1, + ACTIONS(1300), 1, sym__list_item_end, - STATE(432), 1, + STATE(435), 1, aux_sym__list_item_definition_repeat1, - STATE(651), 1, + STATE(659), 1, aux_sym__block_quote_prefix_repeat1, - STATE(961), 1, + STATE(975), 1, sym__block_quote_prefix, - [12276] = 6, - ACTIONS(1259), 1, + [13767] = 1, + ACTIONS(1302), 6, + anon_sym_RBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + sym__whitespace1, + anon_sym_PERCENT, + sym__id, + [13776] = 1, + ACTIONS(1304), 6, + anon_sym_RBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + sym__whitespace1, + anon_sym_PERCENT, + sym__id, + [13785] = 6, + ACTIONS(1286), 1, sym__list_item_continuation, - ACTIONS(1263), 1, + ACTIONS(1290), 1, sym__block_quote_continuation, - ACTIONS(1283), 1, + ACTIONS(1306), 1, sym__list_item_end, - STATE(461), 1, + STATE(480), 1, aux_sym__list_item_definition_repeat1, - STATE(651), 1, + STATE(659), 1, aux_sym__block_quote_prefix_repeat1, - STATE(961), 1, + STATE(975), 1, sym__block_quote_prefix, - [12295] = 6, - ACTIONS(1259), 1, + [13804] = 6, + ACTIONS(1286), 1, sym__list_item_continuation, - ACTIONS(1263), 1, + ACTIONS(1290), 1, sym__block_quote_continuation, - ACTIONS(1285), 1, + ACTIONS(1308), 1, sym__list_item_end, - STATE(436), 1, + STATE(438), 1, aux_sym__list_item_definition_repeat1, - STATE(651), 1, + STATE(659), 1, aux_sym__block_quote_prefix_repeat1, - STATE(961), 1, + STATE(975), 1, sym__block_quote_prefix, - [12314] = 6, - ACTIONS(1259), 1, + [13823] = 1, + ACTIONS(626), 6, + sym__newline, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + sym__table_caption_begin, + anon_sym_PIPE, + [13832] = 6, + ACTIONS(1286), 1, sym__list_item_continuation, - ACTIONS(1263), 1, + ACTIONS(1290), 1, sym__block_quote_continuation, - ACTIONS(1287), 1, + ACTIONS(1310), 1, sym__list_item_end, - STATE(435), 1, + STATE(480), 1, aux_sym__list_item_definition_repeat1, - STATE(651), 1, + STATE(659), 1, aux_sym__block_quote_prefix_repeat1, - STATE(961), 1, + STATE(975), 1, sym__block_quote_prefix, - [12333] = 6, - ACTIONS(1259), 1, + [13851] = 1, + ACTIONS(636), 6, + sym__newline, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + sym__table_caption_begin, + anon_sym_PIPE, + [13860] = 6, + ACTIONS(1286), 1, sym__list_item_continuation, - ACTIONS(1263), 1, + ACTIONS(1290), 1, sym__block_quote_continuation, - ACTIONS(1289), 1, + ACTIONS(1312), 1, sym__list_item_end, - STATE(461), 1, + STATE(429), 1, aux_sym__list_item_definition_repeat1, - STATE(651), 1, + STATE(659), 1, aux_sym__block_quote_prefix_repeat1, - STATE(961), 1, + STATE(975), 1, sym__block_quote_prefix, - [12352] = 6, - ACTIONS(1259), 1, + [13879] = 6, + ACTIONS(1286), 1, sym__list_item_continuation, - ACTIONS(1263), 1, + ACTIONS(1290), 1, sym__block_quote_continuation, - ACTIONS(1291), 1, + ACTIONS(1314), 1, sym__list_item_end, - STATE(461), 1, + STATE(444), 1, aux_sym__list_item_definition_repeat1, - STATE(651), 1, + STATE(659), 1, aux_sym__block_quote_prefix_repeat1, - STATE(961), 1, + STATE(975), 1, sym__block_quote_prefix, - [12371] = 6, - ACTIONS(1259), 1, + [13898] = 6, + ACTIONS(1286), 1, sym__list_item_continuation, - ACTIONS(1263), 1, + ACTIONS(1290), 1, sym__block_quote_continuation, - ACTIONS(1293), 1, + ACTIONS(1316), 1, sym__list_item_end, - STATE(452), 1, + STATE(443), 1, aux_sym__list_item_definition_repeat1, - STATE(651), 1, + STATE(659), 1, aux_sym__block_quote_prefix_repeat1, - STATE(961), 1, + STATE(975), 1, sym__block_quote_prefix, - [12390] = 6, - ACTIONS(1259), 1, + [13917] = 6, + ACTIONS(1286), 1, sym__list_item_continuation, - ACTIONS(1263), 1, + ACTIONS(1290), 1, sym__block_quote_continuation, - ACTIONS(1295), 1, + ACTIONS(1318), 1, sym__list_item_end, - STATE(439), 1, + STATE(480), 1, aux_sym__list_item_definition_repeat1, - STATE(651), 1, + STATE(659), 1, aux_sym__block_quote_prefix_repeat1, - STATE(961), 1, + STATE(975), 1, sym__block_quote_prefix, - [12409] = 6, - ACTIONS(1259), 1, + [13936] = 6, + ACTIONS(1286), 1, sym__list_item_continuation, - ACTIONS(1263), 1, + ACTIONS(1290), 1, sym__block_quote_continuation, - ACTIONS(1297), 1, + ACTIONS(1320), 1, sym__list_item_end, - STATE(461), 1, + STATE(480), 1, aux_sym__list_item_definition_repeat1, - STATE(651), 1, + STATE(659), 1, aux_sym__block_quote_prefix_repeat1, - STATE(961), 1, + STATE(975), 1, sym__block_quote_prefix, - [12428] = 6, - ACTIONS(1259), 1, + [13955] = 6, + ACTIONS(1286), 1, sym__list_item_continuation, - ACTIONS(1263), 1, + ACTIONS(1290), 1, sym__block_quote_continuation, - ACTIONS(1299), 1, + ACTIONS(1322), 1, sym__list_item_end, - STATE(441), 1, + STATE(446), 1, aux_sym__list_item_definition_repeat1, - STATE(651), 1, + STATE(659), 1, aux_sym__block_quote_prefix_repeat1, - STATE(961), 1, + STATE(975), 1, sym__block_quote_prefix, - [12447] = 6, - ACTIONS(1259), 1, + [13974] = 6, + ACTIONS(1286), 1, sym__list_item_continuation, - ACTIONS(1263), 1, + ACTIONS(1290), 1, sym__block_quote_continuation, - ACTIONS(1301), 1, + ACTIONS(1324), 1, sym__list_item_end, - STATE(461), 1, + STATE(480), 1, aux_sym__list_item_definition_repeat1, - STATE(651), 1, + STATE(659), 1, aux_sym__block_quote_prefix_repeat1, - STATE(961), 1, + STATE(975), 1, sym__block_quote_prefix, - [12466] = 6, - ACTIONS(1259), 1, + [13993] = 6, + ACTIONS(1286), 1, sym__list_item_continuation, - ACTIONS(1263), 1, + ACTIONS(1290), 1, sym__block_quote_continuation, - ACTIONS(1303), 1, + ACTIONS(1326), 1, sym__list_item_end, - STATE(443), 1, + STATE(448), 1, aux_sym__list_item_definition_repeat1, - STATE(651), 1, + STATE(659), 1, aux_sym__block_quote_prefix_repeat1, - STATE(961), 1, + STATE(975), 1, sym__block_quote_prefix, - [12485] = 6, - ACTIONS(1259), 1, + [14012] = 6, + ACTIONS(1286), 1, sym__list_item_continuation, - ACTIONS(1263), 1, + ACTIONS(1290), 1, sym__block_quote_continuation, - ACTIONS(1305), 1, + ACTIONS(1328), 1, sym__list_item_end, - STATE(461), 1, + STATE(480), 1, aux_sym__list_item_definition_repeat1, - STATE(651), 1, + STATE(659), 1, aux_sym__block_quote_prefix_repeat1, - STATE(961), 1, + STATE(975), 1, sym__block_quote_prefix, - [12504] = 1, - ACTIONS(1307), 6, + [14031] = 1, + ACTIONS(1330), 6, anon_sym_RBRACE, anon_sym_DOT, - sym_identifier, + aux_sym_identifier_token1, sym__whitespace1, + anon_sym_PERCENT, sym__id, + [14040] = 1, + ACTIONS(1332), 6, + anon_sym_RBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + sym__whitespace1, anon_sym_PERCENT, - [12513] = 6, - ACTIONS(1259), 1, + sym__id, + [14049] = 6, + ACTIONS(1286), 1, sym__list_item_continuation, - ACTIONS(1263), 1, + ACTIONS(1290), 1, sym__block_quote_continuation, - ACTIONS(1309), 1, + ACTIONS(1334), 1, sym__list_item_end, - STATE(458), 1, + STATE(452), 1, aux_sym__list_item_definition_repeat1, - STATE(651), 1, + STATE(659), 1, aux_sym__block_quote_prefix_repeat1, - STATE(961), 1, + STATE(975), 1, sym__block_quote_prefix, - [12532] = 6, - ACTIONS(1259), 1, + [14068] = 6, + ACTIONS(1286), 1, sym__list_item_continuation, - ACTIONS(1263), 1, + ACTIONS(1290), 1, sym__block_quote_continuation, - ACTIONS(1311), 1, + ACTIONS(1336), 1, sym__list_item_end, - STATE(448), 1, + STATE(480), 1, aux_sym__list_item_definition_repeat1, - STATE(651), 1, + STATE(659), 1, aux_sym__block_quote_prefix_repeat1, - STATE(961), 1, + STATE(975), 1, sym__block_quote_prefix, - [12551] = 1, - ACTIONS(1313), 6, - anon_sym_RBRACE, - anon_sym_DOT, - sym_identifier, - sym__whitespace1, - sym__id, - anon_sym_PERCENT, - [12560] = 6, - ACTIONS(1259), 1, + [14087] = 6, + ACTIONS(1286), 1, sym__list_item_continuation, - ACTIONS(1263), 1, + ACTIONS(1290), 1, sym__block_quote_continuation, - ACTIONS(1315), 1, + ACTIONS(1338), 1, sym__list_item_end, - STATE(461), 1, + STATE(455), 1, aux_sym__list_item_definition_repeat1, - STATE(651), 1, + STATE(659), 1, aux_sym__block_quote_prefix_repeat1, - STATE(961), 1, + STATE(975), 1, sym__block_quote_prefix, - [12579] = 6, - ACTIONS(1259), 1, + [14106] = 1, + ACTIONS(570), 6, + sym__newline, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + sym__table_caption_begin, + anon_sym_PIPE, + [14115] = 6, + ACTIONS(1286), 1, sym__list_item_continuation, - ACTIONS(1263), 1, + ACTIONS(1290), 1, sym__block_quote_continuation, - ACTIONS(1317), 1, + ACTIONS(1340), 1, sym__list_item_end, - STATE(424), 1, + STATE(480), 1, aux_sym__list_item_definition_repeat1, - STATE(651), 1, + STATE(659), 1, aux_sym__block_quote_prefix_repeat1, - STATE(961), 1, + STATE(975), 1, sym__block_quote_prefix, - [12598] = 1, - ACTIONS(630), 6, - sym__newline, + [14134] = 6, + ACTIONS(1286), 1, sym__list_item_continuation, + ACTIONS(1290), 1, + sym__block_quote_continuation, + ACTIONS(1342), 1, sym__list_item_end, + STATE(457), 1, + aux_sym__list_item_definition_repeat1, + STATE(659), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(975), 1, + sym__block_quote_prefix, + [14153] = 6, + ACTIONS(1286), 1, + sym__list_item_continuation, + ACTIONS(1290), 1, sym__block_quote_continuation, - sym__table_caption_begin, - anon_sym_PIPE, - [12607] = 1, - ACTIONS(634), 6, + ACTIONS(1344), 1, + sym__list_item_end, + STATE(480), 1, + aux_sym__list_item_definition_repeat1, + STATE(659), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(975), 1, + sym__block_quote_prefix, + [14172] = 6, + ACTIONS(1286), 1, + sym__list_item_continuation, + ACTIONS(1290), 1, + sym__block_quote_continuation, + ACTIONS(1346), 1, + sym__list_item_end, + STATE(480), 1, + aux_sym__list_item_definition_repeat1, + STATE(659), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(975), 1, + sym__block_quote_prefix, + [14191] = 1, + ACTIONS(564), 6, sym__newline, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, sym__table_caption_begin, anon_sym_PIPE, - [12616] = 6, - ACTIONS(1259), 1, + [14200] = 6, + ACTIONS(1286), 1, sym__list_item_continuation, - ACTIONS(1263), 1, + ACTIONS(1290), 1, sym__block_quote_continuation, - ACTIONS(1319), 1, + ACTIONS(1348), 1, sym__list_item_end, - STATE(461), 1, + STATE(480), 1, aux_sym__list_item_definition_repeat1, - STATE(651), 1, + STATE(659), 1, aux_sym__block_quote_prefix_repeat1, - STATE(961), 1, + STATE(975), 1, sym__block_quote_prefix, - [12635] = 1, - ACTIONS(1321), 6, - anon_sym_RBRACE, - anon_sym_DOT, - sym_identifier, - sym__whitespace1, - sym__id, - anon_sym_PERCENT, - [12644] = 1, - ACTIONS(648), 6, + [14219] = 6, + ACTIONS(1286), 1, + sym__list_item_continuation, + ACTIONS(1290), 1, + sym__block_quote_continuation, + ACTIONS(1350), 1, + sym__list_item_end, + STATE(428), 1, + aux_sym__list_item_definition_repeat1, + STATE(659), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(975), 1, + sym__block_quote_prefix, + [14238] = 1, + ACTIONS(578), 6, sym__newline, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, sym__table_caption_begin, anon_sym_PIPE, - [12653] = 6, - ACTIONS(1259), 1, + [14247] = 6, + ACTIONS(1286), 1, sym__list_item_continuation, - ACTIONS(1263), 1, + ACTIONS(1290), 1, sym__block_quote_continuation, - ACTIONS(1323), 1, + ACTIONS(1352), 1, sym__list_item_end, - STATE(423), 1, + STATE(473), 1, aux_sym__list_item_definition_repeat1, - STATE(651), 1, + STATE(659), 1, aux_sym__block_quote_prefix_repeat1, - STATE(961), 1, + STATE(975), 1, sym__block_quote_prefix, - [12672] = 6, - ACTIONS(1259), 1, + [14266] = 6, + ACTIONS(1286), 1, sym__list_item_continuation, - ACTIONS(1263), 1, + ACTIONS(1290), 1, sym__block_quote_continuation, - ACTIONS(1325), 1, + ACTIONS(1354), 1, sym__list_item_end, - STATE(464), 1, + STATE(480), 1, aux_sym__list_item_definition_repeat1, - STATE(651), 1, + STATE(659), 1, aux_sym__block_quote_prefix_repeat1, - STATE(961), 1, + STATE(975), 1, sym__block_quote_prefix, - [12691] = 6, - ACTIONS(1259), 1, + [14285] = 6, + ACTIONS(1286), 1, sym__list_item_continuation, - ACTIONS(1263), 1, + ACTIONS(1290), 1, sym__block_quote_continuation, - ACTIONS(1327), 1, + ACTIONS(1356), 1, sym__list_item_end, - STATE(461), 1, + STATE(464), 1, aux_sym__list_item_definition_repeat1, - STATE(651), 1, + STATE(659), 1, aux_sym__block_quote_prefix_repeat1, - STATE(961), 1, + STATE(975), 1, sym__block_quote_prefix, - [12710] = 6, - ACTIONS(1259), 1, + [14304] = 1, + ACTIONS(1358), 6, + anon_sym_RBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + sym__whitespace1, + anon_sym_PERCENT, + sym__id, + [14313] = 6, + ACTIONS(1286), 1, sym__list_item_continuation, - ACTIONS(1263), 1, + ACTIONS(1290), 1, sym__block_quote_continuation, - ACTIONS(1329), 1, + ACTIONS(1360), 1, sym__list_item_end, - STATE(461), 1, + STATE(480), 1, aux_sym__list_item_definition_repeat1, - STATE(651), 1, + STATE(659), 1, aux_sym__block_quote_prefix_repeat1, - STATE(961), 1, + STATE(975), 1, sym__block_quote_prefix, - [12729] = 6, - ACTIONS(1259), 1, + [14332] = 6, + ACTIONS(1286), 1, sym__list_item_continuation, - ACTIONS(1263), 1, + ACTIONS(1290), 1, sym__block_quote_continuation, - ACTIONS(1331), 1, + ACTIONS(1362), 1, sym__list_item_end, - STATE(457), 1, + STATE(480), 1, aux_sym__list_item_definition_repeat1, - STATE(651), 1, + STATE(659), 1, aux_sym__block_quote_prefix_repeat1, - STATE(961), 1, + STATE(975), 1, sym__block_quote_prefix, - [12748] = 6, - ACTIONS(1259), 1, + [14351] = 6, + ACTIONS(1286), 1, sym__list_item_continuation, - ACTIONS(1263), 1, + ACTIONS(1290), 1, sym__block_quote_continuation, - ACTIONS(1333), 1, + ACTIONS(1364), 1, sym__list_item_end, - STATE(421), 1, + STATE(471), 1, aux_sym__list_item_definition_repeat1, - STATE(651), 1, + STATE(659), 1, aux_sym__block_quote_prefix_repeat1, - STATE(961), 1, + STATE(975), 1, sym__block_quote_prefix, - [12767] = 6, - ACTIONS(1335), 1, + [14370] = 6, + ACTIONS(1286), 1, sym__list_item_continuation, - ACTIONS(1338), 1, - sym__list_item_end, - ACTIONS(1340), 1, + ACTIONS(1290), 1, sym__block_quote_continuation, - STATE(461), 1, + ACTIONS(1366), 1, + sym__list_item_end, + STATE(468), 1, aux_sym__list_item_definition_repeat1, - STATE(651), 1, + STATE(659), 1, aux_sym__block_quote_prefix_repeat1, - STATE(961), 1, + STATE(975), 1, sym__block_quote_prefix, - [12786] = 1, - ACTIONS(588), 6, - sym__newline, + [14389] = 6, + ACTIONS(1286), 1, sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - sym__table_caption_begin, - anon_sym_PIPE, - [12795] = 1, - ACTIONS(592), 6, - sym__newline, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - sym__table_caption_begin, - anon_sym_PIPE, - [12804] = 6, - ACTIONS(1259), 1, - sym__list_item_continuation, - ACTIONS(1263), 1, + ACTIONS(1290), 1, sym__block_quote_continuation, - ACTIONS(1343), 1, + ACTIONS(1368), 1, sym__list_item_end, - STATE(461), 1, + STATE(480), 1, aux_sym__list_item_definition_repeat1, - STATE(651), 1, + STATE(659), 1, aux_sym__block_quote_prefix_repeat1, - STATE(961), 1, + STATE(975), 1, sym__block_quote_prefix, - [12823] = 2, - ACTIONS(457), 1, - sym__block_quote_continuation, - ACTIONS(455), 5, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACE, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - [12834] = 6, - ACTIONS(1259), 1, + [14408] = 6, + ACTIONS(1286), 1, sym__list_item_continuation, - ACTIONS(1263), 1, + ACTIONS(1290), 1, sym__block_quote_continuation, - ACTIONS(1345), 1, + ACTIONS(1370), 1, sym__list_item_end, - STATE(461), 1, + STATE(467), 1, aux_sym__list_item_definition_repeat1, - STATE(651), 1, + STATE(659), 1, aux_sym__block_quote_prefix_repeat1, - STATE(961), 1, + STATE(975), 1, sym__block_quote_prefix, - [12853] = 6, - ACTIONS(1259), 1, + [14427] = 6, + ACTIONS(1286), 1, sym__list_item_continuation, - ACTIONS(1263), 1, + ACTIONS(1290), 1, sym__block_quote_continuation, - ACTIONS(1347), 1, + ACTIONS(1372), 1, sym__list_item_end, - STATE(466), 1, + STATE(480), 1, aux_sym__list_item_definition_repeat1, - STATE(651), 1, + STATE(659), 1, aux_sym__block_quote_prefix_repeat1, - STATE(961), 1, + STATE(975), 1, sym__block_quote_prefix, - [12872] = 1, - ACTIONS(1349), 6, + [14446] = 1, + ACTIONS(1374), 6, anon_sym_RBRACE, anon_sym_DOT, - sym_identifier, + aux_sym_identifier_token1, sym__whitespace1, - sym__id, anon_sym_PERCENT, - [12881] = 1, - ACTIONS(1351), 6, - anon_sym_RBRACE, - anon_sym_DOT, - sym_identifier, - sym__whitespace1, sym__id, - anon_sym_PERCENT, - [12890] = 1, - ACTIONS(1353), 6, + [14455] = 1, + ACTIONS(1376), 6, anon_sym_RBRACE, anon_sym_DOT, - sym_identifier, + aux_sym_identifier_token1, sym__whitespace1, - sym__id, anon_sym_PERCENT, - [12899] = 6, - ACTIONS(1259), 1, + sym__id, + [14464] = 6, + ACTIONS(1286), 1, sym__list_item_continuation, - ACTIONS(1263), 1, + ACTIONS(1290), 1, sym__block_quote_continuation, - ACTIONS(1355), 1, + ACTIONS(1378), 1, sym__list_item_end, - STATE(461), 1, + STATE(458), 1, aux_sym__list_item_definition_repeat1, - STATE(651), 1, + STATE(659), 1, aux_sym__block_quote_prefix_repeat1, - STATE(961), 1, + STATE(975), 1, sym__block_quote_prefix, - [12918] = 1, - ACTIONS(1357), 6, - anon_sym_RBRACE, - anon_sym_DOT, - sym_identifier, - sym__whitespace1, - sym__id, - anon_sym_PERCENT, - [12927] = 1, - ACTIONS(1359), 6, - anon_sym_RBRACE, - anon_sym_DOT, - sym_identifier, - sym__whitespace1, - sym__id, - anon_sym_PERCENT, - [12936] = 1, - ACTIONS(620), 6, + [14483] = 1, + ACTIONS(588), 6, sym__newline, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, sym__table_caption_begin, anon_sym_PIPE, - [12945] = 6, - ACTIONS(1259), 1, + [14492] = 6, + ACTIONS(1286), 1, sym__list_item_continuation, - ACTIONS(1263), 1, + ACTIONS(1290), 1, sym__block_quote_continuation, - ACTIONS(1361), 1, + ACTIONS(1380), 1, sym__list_item_end, - STATE(471), 1, + STATE(480), 1, aux_sym__list_item_definition_repeat1, - STATE(651), 1, + STATE(659), 1, aux_sym__block_quote_prefix_repeat1, - STATE(961), 1, + STATE(975), 1, sym__block_quote_prefix, - [12964] = 6, - ACTIONS(1259), 1, + [14511] = 6, + ACTIONS(1286), 1, sym__list_item_continuation, - ACTIONS(1263), 1, + ACTIONS(1290), 1, sym__block_quote_continuation, - ACTIONS(1363), 1, + ACTIONS(1382), 1, sym__list_item_end, - STATE(461), 1, + STATE(478), 1, aux_sym__list_item_definition_repeat1, - STATE(651), 1, + STATE(659), 1, aux_sym__block_quote_prefix_repeat1, - STATE(961), 1, + STATE(975), 1, sym__block_quote_prefix, - [12983] = 6, - ACTIONS(1259), 1, + [14530] = 6, + ACTIONS(1384), 1, sym__list_item_continuation, - ACTIONS(1263), 1, - sym__block_quote_continuation, - ACTIONS(1365), 1, + ACTIONS(1387), 1, sym__list_item_end, - STATE(476), 1, + ACTIONS(1389), 1, + sym__block_quote_continuation, + STATE(480), 1, aux_sym__list_item_definition_repeat1, - STATE(651), 1, + STATE(659), 1, aux_sym__block_quote_prefix_repeat1, - STATE(961), 1, + STATE(975), 1, sym__block_quote_prefix, - [13002] = 1, - ACTIONS(588), 5, + [14549] = 1, + ACTIONS(1392), 6, + anon_sym_RBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + sym__whitespace1, + anon_sym_PERCENT, + sym__id, + [14558] = 1, + ACTIONS(1394), 6, + anon_sym_RBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + sym__whitespace1, + anon_sym_PERCENT, + sym__id, + [14567] = 1, + ACTIONS(570), 5, sym__block_close, sym__newline, sym__block_quote_continuation, sym__table_caption_begin, anon_sym_PIPE, - [13010] = 1, - ACTIONS(630), 5, + [14575] = 1, + ACTIONS(546), 5, sym__block_close, sym__newline, sym__block_quote_continuation, sym__table_caption_begin, anon_sym_PIPE, - [13018] = 1, - ACTIONS(634), 5, + [14583] = 1, + ACTIONS(564), 5, sym__block_close, sym__newline, sym__block_quote_continuation, sym__table_caption_begin, anon_sym_PIPE, - [13026] = 1, - ACTIONS(592), 5, + [14591] = 4, + ACTIONS(1396), 1, sym__block_close, - sym__newline, + ACTIONS(1398), 1, sym__block_quote_continuation, + STATE(486), 1, + aux_sym__block_quote_content_repeat1, + STATE(63), 2, + sym__block_quote_prefix, + aux_sym__block_quote_prefix_repeat1, + [14605] = 4, + ACTIONS(1401), 1, + sym__block_close, + ACTIONS(1403), 1, + sym__block_quote_continuation, + STATE(486), 1, + aux_sym__block_quote_content_repeat1, + STATE(63), 2, + sym__block_quote_prefix, + aux_sym__block_quote_prefix_repeat1, + [14619] = 3, + ACTIONS(1068), 1, sym__table_caption_begin, - anon_sym_PIPE, - [13034] = 3, - ACTIONS(945), 1, - sym__table_caption_begin, - STATE(616), 1, + STATE(648), 1, sym_table_caption, - ACTIONS(544), 3, + ACTIONS(528), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13046] = 1, - ACTIONS(560), 5, + [14631] = 1, + ACTIONS(626), 5, sym__block_close, sym__newline, sym__block_quote_continuation, sym__table_caption_begin, anon_sym_PIPE, - [13054] = 1, - ACTIONS(648), 5, + [14639] = 1, + ACTIONS(636), 5, sym__block_close, sym__newline, sym__block_quote_continuation, sym__table_caption_begin, anon_sym_PIPE, - [13062] = 4, - ACTIONS(1367), 1, - sym__block_close, - ACTIONS(1369), 1, + [14647] = 4, + ACTIONS(1403), 1, sym__block_quote_continuation, - STATE(485), 1, - aux_sym__block_quote_content_repeat1, - STATE(63), 2, - sym__block_quote_prefix, - aux_sym__block_quote_prefix_repeat1, - [13076] = 4, - ACTIONS(1372), 1, + ACTIONS(1405), 1, sym__block_close, - ACTIONS(1374), 1, - sym__block_quote_continuation, STATE(487), 1, aux_sym__block_quote_content_repeat1, STATE(63), 2, sym__block_quote_prefix, aux_sym__block_quote_prefix_repeat1, - [13090] = 4, - ACTIONS(1374), 1, + [14661] = 1, + ACTIONS(588), 5, + sym__block_close, + sym__newline, sym__block_quote_continuation, - ACTIONS(1376), 1, - sym__block_close, - STATE(485), 1, - aux_sym__block_quote_content_repeat1, - STATE(63), 2, - sym__block_quote_prefix, - aux_sym__block_quote_prefix_repeat1, - [13104] = 1, - ACTIONS(620), 5, + sym__table_caption_begin, + anon_sym_PIPE, + [14669] = 1, + ACTIONS(578), 5, sym__block_close, sym__newline, sym__block_quote_continuation, sym__table_caption_begin, anon_sym_PIPE, - [13112] = 3, - ACTIONS(31), 1, + [14677] = 3, + ACTIONS(57), 1, + sym_list_marker_lower_alpha_parens, + ACTIONS(1407), 1, + sym__block_close, + STATE(550), 2, + sym__list_item_lower_alpha_parens, + aux_sym__list_lower_alpha_parens_repeat1, + [14688] = 3, + ACTIONS(37), 1, + sym_list_marker_lower_alpha_period, + ACTIONS(1409), 1, + sym__block_close, + STATE(548), 2, + sym__list_item_lower_alpha_period, + aux_sym__list_lower_alpha_period_repeat1, + [14699] = 3, + ACTIONS(53), 1, + sym_list_marker_upper_roman_paren, + ACTIONS(1411), 1, + sym__block_close, + STATE(600), 2, + sym__list_item_upper_roman_paren, + aux_sym__list_upper_roman_paren_repeat1, + [14710] = 3, + ACTIONS(43), 1, + sym_list_marker_upper_roman_period, + ACTIONS(1413), 1, + sym__block_close, + STATE(601), 2, + sym__list_item_upper_roman_period, + aux_sym__list_upper_roman_period_repeat1, + [14721] = 3, + ACTIONS(61), 1, + sym_list_marker_lower_roman_parens, + ACTIONS(1415), 1, + sym__block_close, + STATE(557), 2, + sym__list_item_lower_roman_parens, + aux_sym__list_lower_roman_parens_repeat1, + [14732] = 3, + ACTIONS(51), 1, + sym_list_marker_lower_roman_paren, + ACTIONS(1417), 1, + sym__block_close, + STATE(555), 2, + sym__list_item_lower_roman_paren, + aux_sym__list_lower_roman_paren_repeat1, + [14743] = 3, + ACTIONS(41), 1, + sym_list_marker_lower_roman_period, + ACTIONS(1419), 1, + sym__block_close, + STATE(554), 2, + sym__list_item_lower_roman_period, + aux_sym__list_lower_roman_period_repeat1, + [14754] = 3, + ACTIONS(59), 1, + sym_list_marker_upper_alpha_parens, + ACTIONS(1421), 1, + sym__block_close, + STATE(553), 2, + sym__list_item_upper_alpha_parens, + aux_sym__list_upper_alpha_parens_repeat1, + [14765] = 3, + ACTIONS(33), 1, sym_list_marker_definition, - ACTIONS(1378), 1, + ACTIONS(1423), 1, sym__block_close, - STATE(605), 2, + STATE(544), 2, sym__list_item_definition, aux_sym__list_definition_repeat1, - [13123] = 3, - ACTIONS(47), 1, - sym_list_marker_upper_alpha_paren, - ACTIONS(1380), 1, - sym__block_close, - STATE(498), 2, - sym__list_item_upper_alpha_paren, - aux_sym__list_upper_alpha_paren_repeat1, - [13134] = 3, - ACTIONS(1382), 1, - sym__block_close, - ACTIONS(1384), 1, + [14776] = 3, + ACTIONS(35), 1, sym_list_marker_decimal_period, - STATE(491), 2, + ACTIONS(1425), 1, + sym__block_close, + STATE(545), 2, sym__list_item_decimal_period, aux_sym__list_decimal_period_repeat1, - [13145] = 3, - ACTIONS(1387), 1, - sym__block_close, - ACTIONS(1389), 1, + [14787] = 3, + ACTIONS(45), 1, sym_list_marker_decimal_paren, - STATE(492), 2, + ACTIONS(1427), 1, + sym__block_close, + STATE(546), 2, sym__list_item_decimal_paren, aux_sym__list_decimal_paren_repeat1, - [13156] = 3, - ACTIONS(1392), 1, - sym__block_close, - ACTIONS(1394), 1, + [14798] = 3, + ACTIONS(55), 1, sym_list_marker_decimal_parens, - STATE(493), 2, + ACTIONS(1429), 1, + sym__block_close, + STATE(547), 2, sym__list_item_decimal_parens, aux_sym__list_decimal_parens_repeat1, - [13167] = 3, - ACTIONS(1397), 1, - sym__block_close, - ACTIONS(1399), 1, + [14809] = 3, + ACTIONS(37), 1, sym_list_marker_lower_alpha_period, - STATE(494), 2, + ACTIONS(1431), 1, + sym__block_close, + STATE(548), 2, sym__list_item_lower_alpha_period, aux_sym__list_lower_alpha_period_repeat1, - [13178] = 3, - ACTIONS(1402), 1, - sym__block_close, - ACTIONS(1404), 1, + [14820] = 3, + ACTIONS(47), 1, sym_list_marker_lower_alpha_paren, - STATE(495), 2, + ACTIONS(1433), 1, + sym__block_close, + STATE(549), 2, sym__list_item_lower_alpha_paren, aux_sym__list_lower_alpha_paren_repeat1, - [13189] = 3, - ACTIONS(1407), 1, - sym__block_close, - ACTIONS(1409), 1, + [14831] = 3, + ACTIONS(57), 1, sym_list_marker_lower_alpha_parens, - STATE(496), 2, + ACTIONS(1435), 1, + sym__block_close, + STATE(550), 2, sym__list_item_lower_alpha_parens, aux_sym__list_lower_alpha_parens_repeat1, - [13200] = 3, - ACTIONS(1412), 1, - sym__block_close, - ACTIONS(1414), 1, + [14842] = 3, + ACTIONS(39), 1, sym_list_marker_upper_alpha_period, - STATE(497), 2, + ACTIONS(1437), 1, + sym__block_close, + STATE(551), 2, sym__list_item_upper_alpha_period, aux_sym__list_upper_alpha_period_repeat1, - [13211] = 3, - ACTIONS(1417), 1, - sym__block_close, - ACTIONS(1419), 1, + [14853] = 3, + ACTIONS(49), 1, sym_list_marker_upper_alpha_paren, - STATE(498), 2, + ACTIONS(1439), 1, + sym__block_close, + STATE(552), 2, sym__list_item_upper_alpha_paren, aux_sym__list_upper_alpha_paren_repeat1, - [13222] = 3, - ACTIONS(1422), 1, + [14864] = 3, + ACTIONS(49), 1, + sym_list_marker_upper_alpha_paren, + ACTIONS(1441), 1, sym__block_close, - ACTIONS(1424), 1, + STATE(552), 2, + sym__list_item_upper_alpha_paren, + aux_sym__list_upper_alpha_paren_repeat1, + [14875] = 3, + ACTIONS(59), 1, sym_list_marker_upper_alpha_parens, - STATE(499), 2, + ACTIONS(1443), 1, + sym__block_close, + STATE(553), 2, sym__list_item_upper_alpha_parens, aux_sym__list_upper_alpha_parens_repeat1, - [13233] = 3, - ACTIONS(1427), 1, - sym__block_close, - ACTIONS(1429), 1, + [14886] = 3, + ACTIONS(41), 1, sym_list_marker_lower_roman_period, - STATE(500), 2, + ACTIONS(1445), 1, + sym__block_close, + STATE(554), 2, sym__list_item_lower_roman_period, aux_sym__list_lower_roman_period_repeat1, - [13244] = 3, - ACTIONS(1432), 1, + [14897] = 3, + ACTIONS(39), 1, + sym_list_marker_upper_alpha_period, + ACTIONS(1447), 1, + sym__block_close, + STATE(551), 2, + sym__list_item_upper_alpha_period, + aux_sym__list_upper_alpha_period_repeat1, + [14908] = 3, + ACTIONS(57), 1, + sym_list_marker_lower_alpha_parens, + ACTIONS(1449), 1, sym__block_close, - ACTIONS(1434), 1, + STATE(550), 2, + sym__list_item_lower_alpha_parens, + aux_sym__list_lower_alpha_parens_repeat1, + [14919] = 3, + ACTIONS(51), 1, sym_list_marker_lower_roman_paren, - STATE(501), 2, + ACTIONS(1451), 1, + sym__block_close, + STATE(555), 2, sym__list_item_lower_roman_paren, aux_sym__list_lower_roman_paren_repeat1, - [13255] = 3, - ACTIONS(1437), 1, + [14930] = 3, + ACTIONS(47), 1, + sym_list_marker_lower_alpha_paren, + ACTIONS(1453), 1, sym__block_close, - ACTIONS(1439), 1, + STATE(549), 2, + sym__list_item_lower_alpha_paren, + aux_sym__list_lower_alpha_paren_repeat1, + [14941] = 3, + ACTIONS(37), 1, + sym_list_marker_lower_alpha_period, + ACTIONS(1455), 1, + sym__block_close, + STATE(548), 2, + sym__list_item_lower_alpha_period, + aux_sym__list_lower_alpha_period_repeat1, + [14952] = 4, + ACTIONS(1457), 1, + anon_sym_EQ, + ACTIONS(1459), 1, + sym_language, + ACTIONS(1461), 1, + sym__newline, + STATE(1026), 1, + sym_raw_block_info, + [14965] = 3, + ACTIONS(55), 1, + sym_list_marker_decimal_parens, + ACTIONS(1463), 1, + sym__block_close, + STATE(547), 2, + sym__list_item_decimal_parens, + aux_sym__list_decimal_parens_repeat1, + [14976] = 3, + ACTIONS(45), 1, + sym_list_marker_decimal_paren, + ACTIONS(1465), 1, + sym__block_close, + STATE(546), 2, + sym__list_item_decimal_paren, + aux_sym__list_decimal_paren_repeat1, + [14987] = 3, + ACTIONS(61), 1, sym_list_marker_lower_roman_parens, - STATE(502), 2, + ACTIONS(1467), 1, + sym__block_close, + STATE(557), 2, sym__list_item_lower_roman_parens, aux_sym__list_lower_roman_parens_repeat1, - [13266] = 3, - ACTIONS(1442), 1, - sym__block_close, - ACTIONS(1444), 1, + [14998] = 3, + ACTIONS(43), 1, sym_list_marker_upper_roman_period, - STATE(503), 2, + ACTIONS(1469), 1, + sym__block_close, + STATE(601), 2, sym__list_item_upper_roman_period, aux_sym__list_upper_roman_period_repeat1, - [13277] = 3, - ACTIONS(1447), 1, + [15009] = 3, + ACTIONS(35), 1, + sym_list_marker_decimal_period, + ACTIONS(1471), 1, sym__block_close, - ACTIONS(1449), 1, + STATE(545), 2, + sym__list_item_decimal_period, + aux_sym__list_decimal_period_repeat1, + [15020] = 3, + ACTIONS(53), 1, sym_list_marker_upper_roman_paren, - STATE(504), 2, + ACTIONS(1473), 1, + sym__block_close, + STATE(600), 2, sym__list_item_upper_roman_paren, aux_sym__list_upper_roman_paren_repeat1, - [13288] = 3, - ACTIONS(1452), 1, - sym__block_close, - ACTIONS(1454), 1, + [15031] = 3, + ACTIONS(63), 1, sym_list_marker_upper_roman_parens, - STATE(505), 2, + ACTIONS(1475), 1, + sym__block_close, + STATE(599), 2, sym__list_item_upper_roman_parens, aux_sym__list_upper_roman_parens_repeat1, - [13299] = 4, + [15042] = 3, + ACTIONS(33), 1, + sym_list_marker_definition, + ACTIONS(1477), 1, + sym__block_close, + STATE(544), 2, + sym__list_item_definition, + aux_sym__list_definition_repeat1, + [15053] = 3, + ACTIONS(1479), 1, + aux_sym__line_token1, + STATE(981), 1, + sym_frontmatter_content, + STATE(529), 2, + sym__line, + aux_sym_frontmatter_content_repeat1, + [15064] = 3, + ACTIONS(1479), 1, + aux_sym__line_token1, + ACTIONS(1481), 1, + sym_frontmatter_marker, + STATE(594), 2, + sym__line, + aux_sym_frontmatter_content_repeat1, + [15075] = 4, ACTIONS(1457), 1, anon_sym_EQ, - ACTIONS(1459), 1, + ACTIONS(1483), 1, sym_language, - ACTIONS(1461), 1, + ACTIONS(1485), 1, sym__newline, - STATE(1015), 1, + STATE(1005), 1, sym_raw_block_info, - [13312] = 3, - ACTIONS(1463), 1, - aux_sym__line_token1, - STATE(920), 1, - sym_frontmatter_content, - STATE(512), 2, - sym__line, - aux_sym_frontmatter_content_repeat1, - [13323] = 4, + [15088] = 3, + ACTIONS(1116), 1, + sym__table_caption_begin, + STATE(779), 1, + sym_table_caption, + ACTIONS(528), 2, + sym__block_close, + sym__block_quote_continuation, + [15099] = 3, + ACTIONS(33), 1, + sym_list_marker_definition, + ACTIONS(1487), 1, + sym__block_close, + STATE(544), 2, + sym__list_item_definition, + aux_sym__list_definition_repeat1, + [15110] = 4, ACTIONS(1457), 1, anon_sym_EQ, - ACTIONS(1465), 1, + ACTIONS(1489), 1, sym_language, - ACTIONS(1467), 1, + ACTIONS(1491), 1, sym__newline, - STATE(994), 1, + STATE(1052), 1, sym_raw_block_info, - [13336] = 4, + [15123] = 3, + ACTIONS(35), 1, + sym_list_marker_decimal_period, + ACTIONS(1493), 1, + sym__block_close, + STATE(545), 2, + sym__list_item_decimal_period, + aux_sym__list_decimal_period_repeat1, + [15134] = 3, + ACTIONS(45), 1, + sym_list_marker_decimal_paren, + ACTIONS(1495), 1, + sym__block_close, + STATE(546), 2, + sym__list_item_decimal_paren, + aux_sym__list_decimal_paren_repeat1, + [15145] = 3, + ACTIONS(55), 1, + sym_list_marker_decimal_parens, + ACTIONS(1497), 1, + sym__block_close, + STATE(547), 2, + sym__list_item_decimal_parens, + aux_sym__list_decimal_parens_repeat1, + [15156] = 3, + ACTIONS(37), 1, + sym_list_marker_lower_alpha_period, + ACTIONS(1499), 1, + sym__block_close, + STATE(548), 2, + sym__list_item_lower_alpha_period, + aux_sym__list_lower_alpha_period_repeat1, + [15167] = 4, ACTIONS(1457), 1, anon_sym_EQ, - ACTIONS(1469), 1, + ACTIONS(1501), 1, sym_language, - ACTIONS(1471), 1, + ACTIONS(1503), 1, sym__newline, - STATE(972), 1, + STATE(983), 1, sym_raw_block_info, - [13349] = 4, + [15180] = 4, ACTIONS(1457), 1, anon_sym_EQ, - ACTIONS(1473), 1, + ACTIONS(1505), 1, sym_language, - ACTIONS(1475), 1, + ACTIONS(1507), 1, sym__newline, - STATE(950), 1, + STATE(961), 1, sym_raw_block_info, - [13362] = 3, - ACTIONS(1479), 1, + [15193] = 3, + ACTIONS(1509), 1, anon_sym_PERCENT, - STATE(532), 1, + STATE(569), 1, aux_sym__comment_no_newline_repeat1, - ACTIONS(1477), 2, + ACTIONS(1511), 2, sym_backslash_escape, aux_sym__comment_no_newline_token1, - [13373] = 3, - ACTIONS(1463), 1, - aux_sym__line_token1, - ACTIONS(1481), 1, - sym_frontmatter_marker, - STATE(533), 2, - sym__line, - aux_sym_frontmatter_content_repeat1, - [13384] = 3, - ACTIONS(1463), 1, - aux_sym__line_token1, - STATE(1061), 1, - sym_frontmatter_content, - STATE(512), 2, - sym__line, - aux_sym_frontmatter_content_repeat1, - [13395] = 3, - ACTIONS(1483), 1, - anon_sym_PERCENT, - STATE(511), 1, - aux_sym__comment_no_newline_repeat1, - ACTIONS(1477), 2, - sym_backslash_escape, - aux_sym__comment_no_newline_token1, - [13406] = 3, - ACTIONS(61), 1, - sym_list_marker_upper_roman_parens, - ACTIONS(1485), 1, - sym__block_close, - STATE(505), 2, - sym__list_item_upper_roman_parens, - aux_sym__list_upper_roman_parens_repeat1, - [13417] = 3, - ACTIONS(51), 1, - sym_list_marker_upper_roman_paren, - ACTIONS(1487), 1, - sym__block_close, - STATE(504), 2, - sym__list_item_upper_roman_paren, - aux_sym__list_upper_roman_paren_repeat1, - [13428] = 3, - ACTIONS(41), 1, - sym_list_marker_upper_roman_period, - ACTIONS(1489), 1, - sym__block_close, - STATE(503), 2, - sym__list_item_upper_roman_period, - aux_sym__list_upper_roman_period_repeat1, - [13439] = 3, - ACTIONS(59), 1, - sym_list_marker_lower_roman_parens, - ACTIONS(1491), 1, - sym__block_close, - STATE(502), 2, - sym__list_item_lower_roman_parens, - aux_sym__list_lower_roman_parens_repeat1, - [13450] = 3, - ACTIONS(49), 1, - sym_list_marker_lower_roman_paren, - ACTIONS(1493), 1, - sym__block_close, - STATE(501), 2, - sym__list_item_lower_roman_paren, - aux_sym__list_lower_roman_paren_repeat1, - [13461] = 3, - ACTIONS(39), 1, - sym_list_marker_lower_roman_period, - ACTIONS(1495), 1, - sym__block_close, - STATE(500), 2, - sym__list_item_lower_roman_period, - aux_sym__list_lower_roman_period_repeat1, - [13472] = 3, - ACTIONS(57), 1, - sym_list_marker_upper_alpha_parens, - ACTIONS(1497), 1, - sym__block_close, - STATE(499), 2, - sym__list_item_upper_alpha_parens, - aux_sym__list_upper_alpha_parens_repeat1, - [13483] = 3, + [15204] = 3, ACTIONS(47), 1, - sym_list_marker_upper_alpha_paren, - ACTIONS(1499), 1, - sym__block_close, - STATE(498), 2, - sym__list_item_upper_alpha_paren, - aux_sym__list_upper_alpha_paren_repeat1, - [13494] = 3, - ACTIONS(37), 1, - sym_list_marker_upper_alpha_period, - ACTIONS(1501), 1, - sym__block_close, - STATE(497), 2, - sym__list_item_upper_alpha_period, - aux_sym__list_upper_alpha_period_repeat1, - [13505] = 3, - ACTIONS(55), 1, - sym_list_marker_lower_alpha_parens, - ACTIONS(1503), 1, - sym__block_close, - STATE(496), 2, - sym__list_item_lower_alpha_parens, - aux_sym__list_lower_alpha_parens_repeat1, - [13516] = 3, - ACTIONS(45), 1, sym_list_marker_lower_alpha_paren, - ACTIONS(1505), 1, + ACTIONS(1513), 1, sym__block_close, - STATE(495), 2, + STATE(549), 2, sym__list_item_lower_alpha_paren, aux_sym__list_lower_alpha_paren_repeat1, - [13527] = 3, - ACTIONS(35), 1, - sym_list_marker_lower_alpha_period, - ACTIONS(1507), 1, - sym__block_close, - STATE(494), 2, - sym__list_item_lower_alpha_period, - aux_sym__list_lower_alpha_period_repeat1, - [13538] = 3, - ACTIONS(53), 1, - sym_list_marker_decimal_parens, - ACTIONS(1509), 1, - sym__block_close, - STATE(493), 2, - sym__list_item_decimal_parens, - aux_sym__list_decimal_parens_repeat1, - [13549] = 3, - ACTIONS(957), 1, - sym__table_caption_begin, - STATE(872), 1, - sym_table_caption, - ACTIONS(544), 2, + [15215] = 3, + ACTIONS(57), 1, + sym_list_marker_lower_alpha_parens, + ACTIONS(1515), 1, sym__block_close, - sym__block_quote_continuation, - [13560] = 3, - ACTIONS(43), 1, - sym_list_marker_decimal_paren, - ACTIONS(1511), 1, + STATE(550), 2, + sym__list_item_lower_alpha_parens, + aux_sym__list_lower_alpha_parens_repeat1, + [15226] = 3, + ACTIONS(39), 1, + sym_list_marker_upper_alpha_period, + ACTIONS(1517), 1, sym__block_close, - STATE(492), 2, - sym__list_item_decimal_paren, - aux_sym__list_decimal_paren_repeat1, - [13571] = 3, - ACTIONS(33), 1, - sym_list_marker_decimal_period, - ACTIONS(1513), 1, + STATE(551), 2, + sym__list_item_upper_alpha_period, + aux_sym__list_upper_alpha_period_repeat1, + [15237] = 3, + ACTIONS(1519), 1, sym__block_close, - STATE(491), 2, - sym__list_item_decimal_period, - aux_sym__list_decimal_period_repeat1, - [13582] = 3, - ACTIONS(31), 1, + ACTIONS(1521), 1, sym_list_marker_definition, - ACTIONS(1515), 1, - sym__block_close, - STATE(605), 2, + STATE(544), 2, sym__list_item_definition, aux_sym__list_definition_repeat1, - [13593] = 3, - ACTIONS(1520), 1, - anon_sym_PERCENT, - STATE(532), 1, - aux_sym__comment_no_newline_repeat1, - ACTIONS(1517), 2, - sym_backslash_escape, - aux_sym__comment_no_newline_token1, - [13604] = 3, - ACTIONS(1522), 1, - aux_sym__line_token1, - ACTIONS(1525), 1, - sym_frontmatter_marker, - STATE(533), 2, - sym__line, - aux_sym_frontmatter_content_repeat1, - [13615] = 3, - ACTIONS(61), 1, - sym_list_marker_upper_roman_parens, - ACTIONS(1527), 1, + [15248] = 3, + ACTIONS(1524), 1, sym__block_close, - STATE(505), 2, - sym__list_item_upper_roman_parens, - aux_sym__list_upper_roman_parens_repeat1, - [13626] = 3, - ACTIONS(51), 1, - sym_list_marker_upper_roman_paren, + ACTIONS(1526), 1, + sym_list_marker_decimal_period, + STATE(545), 2, + sym__list_item_decimal_period, + aux_sym__list_decimal_period_repeat1, + [15259] = 3, ACTIONS(1529), 1, sym__block_close, - STATE(504), 2, - sym__list_item_upper_roman_paren, - aux_sym__list_upper_roman_paren_repeat1, - [13637] = 3, - ACTIONS(41), 1, - sym_list_marker_upper_roman_period, ACTIONS(1531), 1, + sym_list_marker_decimal_paren, + STATE(546), 2, + sym__list_item_decimal_paren, + aux_sym__list_decimal_paren_repeat1, + [15270] = 3, + ACTIONS(1534), 1, sym__block_close, - STATE(503), 2, - sym__list_item_upper_roman_period, - aux_sym__list_upper_roman_period_repeat1, - [13648] = 3, - ACTIONS(59), 1, - sym_list_marker_lower_roman_parens, - ACTIONS(1533), 1, - sym__block_close, - STATE(502), 2, - sym__list_item_lower_roman_parens, - aux_sym__list_lower_roman_parens_repeat1, - [13659] = 3, - ACTIONS(49), 1, - sym_list_marker_lower_roman_paren, - ACTIONS(1535), 1, - sym__block_close, - STATE(501), 2, - sym__list_item_lower_roman_paren, - aux_sym__list_lower_roman_paren_repeat1, - [13670] = 3, - ACTIONS(39), 1, - sym_list_marker_lower_roman_period, - ACTIONS(1537), 1, - sym__block_close, - STATE(500), 2, - sym__list_item_lower_roman_period, - aux_sym__list_lower_roman_period_repeat1, - [13681] = 3, - ACTIONS(57), 1, - sym_list_marker_upper_alpha_parens, + ACTIONS(1536), 1, + sym_list_marker_decimal_parens, + STATE(547), 2, + sym__list_item_decimal_parens, + aux_sym__list_decimal_parens_repeat1, + [15281] = 3, ACTIONS(1539), 1, sym__block_close, - STATE(499), 2, - sym__list_item_upper_alpha_parens, - aux_sym__list_upper_alpha_parens_repeat1, - [13692] = 3, - ACTIONS(47), 1, - sym_list_marker_upper_alpha_paren, ACTIONS(1541), 1, + sym_list_marker_lower_alpha_period, + STATE(548), 2, + sym__list_item_lower_alpha_period, + aux_sym__list_lower_alpha_period_repeat1, + [15292] = 3, + ACTIONS(1544), 1, sym__block_close, - STATE(498), 2, - sym__list_item_upper_alpha_paren, - aux_sym__list_upper_alpha_paren_repeat1, - [13703] = 3, - ACTIONS(37), 1, - sym_list_marker_upper_alpha_period, - ACTIONS(1543), 1, - sym__block_close, - STATE(497), 2, - sym__list_item_upper_alpha_period, - aux_sym__list_upper_alpha_period_repeat1, - [13714] = 3, - ACTIONS(55), 1, - sym_list_marker_lower_alpha_parens, - ACTIONS(1545), 1, - sym__block_close, - STATE(496), 2, - sym__list_item_lower_alpha_parens, - aux_sym__list_lower_alpha_parens_repeat1, - [13725] = 3, - ACTIONS(45), 1, + ACTIONS(1546), 1, sym_list_marker_lower_alpha_paren, - ACTIONS(1547), 1, - sym__block_close, - STATE(495), 2, + STATE(549), 2, sym__list_item_lower_alpha_paren, aux_sym__list_lower_alpha_paren_repeat1, - [13736] = 3, - ACTIONS(35), 1, - sym_list_marker_lower_alpha_period, + [15303] = 3, ACTIONS(1549), 1, sym__block_close, - STATE(494), 2, - sym__list_item_lower_alpha_period, - aux_sym__list_lower_alpha_period_repeat1, - [13747] = 3, - ACTIONS(53), 1, - sym_list_marker_decimal_parens, ACTIONS(1551), 1, + sym_list_marker_lower_alpha_parens, + STATE(550), 2, + sym__list_item_lower_alpha_parens, + aux_sym__list_lower_alpha_parens_repeat1, + [15314] = 3, + ACTIONS(1554), 1, sym__block_close, - STATE(493), 2, - sym__list_item_decimal_parens, - aux_sym__list_decimal_parens_repeat1, - [13758] = 3, - ACTIONS(43), 1, - sym_list_marker_decimal_paren, - ACTIONS(1553), 1, + ACTIONS(1556), 1, + sym_list_marker_upper_alpha_period, + STATE(551), 2, + sym__list_item_upper_alpha_period, + aux_sym__list_upper_alpha_period_repeat1, + [15325] = 3, + ACTIONS(1559), 1, sym__block_close, - STATE(492), 2, - sym__list_item_decimal_paren, - aux_sym__list_decimal_paren_repeat1, - [13769] = 3, - ACTIONS(33), 1, - sym_list_marker_decimal_period, - ACTIONS(1555), 1, + ACTIONS(1561), 1, + sym_list_marker_upper_alpha_paren, + STATE(552), 2, + sym__list_item_upper_alpha_paren, + aux_sym__list_upper_alpha_paren_repeat1, + [15336] = 3, + ACTIONS(1564), 1, sym__block_close, - STATE(491), 2, - sym__list_item_decimal_period, - aux_sym__list_decimal_period_repeat1, - [13780] = 3, - ACTIONS(31), 1, - sym_list_marker_definition, - ACTIONS(1557), 1, + ACTIONS(1566), 1, + sym_list_marker_upper_alpha_parens, + STATE(553), 2, + sym__list_item_upper_alpha_parens, + aux_sym__list_upper_alpha_parens_repeat1, + [15347] = 3, + ACTIONS(1569), 1, sym__block_close, - STATE(605), 2, - sym__list_item_definition, - aux_sym__list_definition_repeat1, - [13791] = 3, - ACTIONS(61), 1, + ACTIONS(1571), 1, + sym_list_marker_lower_roman_period, + STATE(554), 2, + sym__list_item_lower_roman_period, + aux_sym__list_lower_roman_period_repeat1, + [15358] = 3, + ACTIONS(1574), 1, + sym__block_close, + ACTIONS(1576), 1, + sym_list_marker_lower_roman_paren, + STATE(555), 2, + sym__list_item_lower_roman_paren, + aux_sym__list_lower_roman_paren_repeat1, + [15369] = 3, + ACTIONS(49), 1, + sym_list_marker_upper_alpha_paren, + ACTIONS(1579), 1, + sym__block_close, + STATE(552), 2, + sym__list_item_upper_alpha_paren, + aux_sym__list_upper_alpha_paren_repeat1, + [15380] = 3, + ACTIONS(1581), 1, + sym__block_close, + ACTIONS(1583), 1, + sym_list_marker_lower_roman_parens, + STATE(557), 2, + sym__list_item_lower_roman_parens, + aux_sym__list_lower_roman_parens_repeat1, + [15391] = 3, + ACTIONS(63), 1, sym_list_marker_upper_roman_parens, - ACTIONS(1559), 1, + ACTIONS(1586), 1, sym__block_close, - STATE(505), 2, + STATE(599), 2, sym__list_item_upper_roman_parens, aux_sym__list_upper_roman_parens_repeat1, - [13802] = 3, - ACTIONS(51), 1, + [15402] = 3, + ACTIONS(53), 1, sym_list_marker_upper_roman_paren, - ACTIONS(1561), 1, + ACTIONS(1588), 1, sym__block_close, - STATE(504), 2, + STATE(600), 2, sym__list_item_upper_roman_paren, aux_sym__list_upper_roman_paren_repeat1, - [13813] = 3, - ACTIONS(41), 1, - sym_list_marker_upper_roman_period, - ACTIONS(1563), 1, - sym__block_close, - STATE(503), 2, - sym__list_item_upper_roman_period, - aux_sym__list_upper_roman_period_repeat1, - [13824] = 3, + [15413] = 3, ACTIONS(59), 1, - sym_list_marker_lower_roman_parens, - ACTIONS(1565), 1, - sym__block_close, - STATE(502), 2, - sym__list_item_lower_roman_parens, - aux_sym__list_lower_roman_parens_repeat1, - [13835] = 3, - ACTIONS(49), 1, - sym_list_marker_lower_roman_paren, - ACTIONS(1567), 1, - sym__block_close, - STATE(501), 2, - sym__list_item_lower_roman_paren, - aux_sym__list_lower_roman_paren_repeat1, - [13846] = 3, - ACTIONS(39), 1, - sym_list_marker_lower_roman_period, - ACTIONS(1569), 1, - sym__block_close, - STATE(500), 2, - sym__list_item_lower_roman_period, - aux_sym__list_lower_roman_period_repeat1, - [13857] = 3, - ACTIONS(57), 1, sym_list_marker_upper_alpha_parens, - ACTIONS(1571), 1, + ACTIONS(1590), 1, sym__block_close, - STATE(499), 2, + STATE(553), 2, sym__list_item_upper_alpha_parens, aux_sym__list_upper_alpha_parens_repeat1, - [13868] = 3, - ACTIONS(47), 1, - sym_list_marker_upper_alpha_paren, - ACTIONS(1573), 1, + [15424] = 3, + ACTIONS(41), 1, + sym_list_marker_lower_roman_period, + ACTIONS(1592), 1, sym__block_close, - STATE(498), 2, - sym__list_item_upper_alpha_paren, - aux_sym__list_upper_alpha_paren_repeat1, - [13879] = 3, - ACTIONS(37), 1, - sym_list_marker_upper_alpha_period, - ACTIONS(1575), 1, + STATE(554), 2, + sym__list_item_lower_roman_period, + aux_sym__list_lower_roman_period_repeat1, + [15435] = 2, + ACTIONS(1594), 1, + sym__eof_or_newline, + ACTIONS(558), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [15444] = 3, + ACTIONS(51), 1, + sym_list_marker_lower_roman_paren, + ACTIONS(1596), 1, sym__block_close, - STATE(497), 2, - sym__list_item_upper_alpha_period, - aux_sym__list_upper_alpha_period_repeat1, - [13890] = 4, - ACTIONS(1457), 1, - anon_sym_EQ, - ACTIONS(1577), 1, - sym_language, - ACTIONS(1579), 1, - sym__newline, - STATE(969), 1, - sym_raw_block_info, - [13903] = 3, - ACTIONS(55), 1, - sym_list_marker_lower_alpha_parens, - ACTIONS(1581), 1, + STATE(555), 2, + sym__list_item_lower_roman_paren, + aux_sym__list_lower_roman_paren_repeat1, + [15455] = 3, + ACTIONS(61), 1, + sym_list_marker_lower_roman_parens, + ACTIONS(1598), 1, sym__block_close, - STATE(496), 2, - sym__list_item_lower_alpha_parens, - aux_sym__list_lower_alpha_parens_repeat1, - [13914] = 3, - ACTIONS(45), 1, - sym_list_marker_lower_alpha_paren, - ACTIONS(1583), 1, + STATE(557), 2, + sym__list_item_lower_roman_parens, + aux_sym__list_lower_roman_parens_repeat1, + [15466] = 3, + ACTIONS(43), 1, + sym_list_marker_upper_roman_period, + ACTIONS(1600), 1, sym__block_close, - STATE(495), 2, - sym__list_item_lower_alpha_paren, - aux_sym__list_lower_alpha_paren_repeat1, - [13925] = 3, - ACTIONS(51), 1, + STATE(601), 2, + sym__list_item_upper_roman_period, + aux_sym__list_upper_roman_period_repeat1, + [15477] = 3, + ACTIONS(53), 1, sym_list_marker_upper_roman_paren, - ACTIONS(1585), 1, + ACTIONS(1602), 1, sym__block_close, - STATE(504), 2, + STATE(600), 2, sym__list_item_upper_roman_paren, aux_sym__list_upper_roman_paren_repeat1, - [13936] = 3, - ACTIONS(53), 1, + [15488] = 3, + ACTIONS(1604), 1, + anon_sym_PERCENT, + STATE(567), 1, + aux_sym__comment_no_newline_repeat1, + ACTIONS(1606), 2, + sym_backslash_escape, + aux_sym__comment_no_newline_token1, + [15499] = 3, + ACTIONS(63), 1, + sym_list_marker_upper_roman_parens, + ACTIONS(1609), 1, + sym__block_close, + STATE(599), 2, + sym__list_item_upper_roman_parens, + aux_sym__list_upper_roman_parens_repeat1, + [15510] = 3, + ACTIONS(1611), 1, + anon_sym_PERCENT, + STATE(567), 1, + aux_sym__comment_no_newline_repeat1, + ACTIONS(1511), 2, + sym_backslash_escape, + aux_sym__comment_no_newline_token1, + [15521] = 3, + ACTIONS(33), 1, + sym_list_marker_definition, + ACTIONS(1613), 1, + sym__block_close, + STATE(544), 2, + sym__list_item_definition, + aux_sym__list_definition_repeat1, + [15532] = 2, + ACTIONS(1615), 1, + sym__code_block_end, + ACTIONS(616), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [15541] = 2, + ACTIONS(1617), 1, + sym__code_block_end, + ACTIONS(640), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [15550] = 3, + ACTIONS(35), 1, + sym_list_marker_decimal_period, + ACTIONS(1619), 1, + sym__block_close, + STATE(545), 2, + sym__list_item_decimal_period, + aux_sym__list_decimal_period_repeat1, + [15561] = 2, + ACTIONS(1621), 1, + sym__div_end, + ACTIONS(646), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [15570] = 3, + ACTIONS(45), 1, + sym_list_marker_decimal_paren, + ACTIONS(1623), 1, + sym__block_close, + STATE(546), 2, + sym__list_item_decimal_paren, + aux_sym__list_decimal_paren_repeat1, + [15581] = 2, + ACTIONS(1625), 1, + sym__code_block_end, + ACTIONS(608), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [15590] = 2, + ACTIONS(1627), 1, + sym__code_block_end, + ACTIONS(592), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [15599] = 3, + ACTIONS(55), 1, sym_list_marker_decimal_parens, - ACTIONS(1587), 1, + ACTIONS(1629), 1, sym__block_close, - STATE(493), 2, + STATE(547), 2, sym__list_item_decimal_parens, aux_sym__list_decimal_parens_repeat1, - [13947] = 3, - ACTIONS(43), 1, - sym_list_marker_decimal_paren, - ACTIONS(1589), 1, - sym__block_close, - STATE(492), 2, - sym__list_item_decimal_paren, - aux_sym__list_decimal_paren_repeat1, - [13958] = 3, - ACTIONS(33), 1, - sym_list_marker_decimal_period, - ACTIONS(1591), 1, - sym__block_close, - STATE(491), 2, - sym__list_item_decimal_period, - aux_sym__list_decimal_period_repeat1, - [13969] = 3, - ACTIONS(61), 1, + [15610] = 3, + ACTIONS(63), 1, sym_list_marker_upper_roman_parens, - ACTIONS(1593), 1, + ACTIONS(1631), 1, sym__block_close, - STATE(505), 2, + STATE(599), 2, sym__list_item_upper_roman_parens, aux_sym__list_upper_roman_parens_repeat1, - [13980] = 3, - ACTIONS(51), 1, - sym_list_marker_upper_roman_paren, - ACTIONS(1595), 1, - sym__block_close, - STATE(504), 2, - sym__list_item_upper_roman_paren, - aux_sym__list_upper_roman_paren_repeat1, - [13991] = 3, - ACTIONS(41), 1, + [15621] = 2, + ACTIONS(1633), 1, + sym__div_end, + ACTIONS(574), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [15630] = 3, + ACTIONS(43), 1, sym_list_marker_upper_roman_period, - ACTIONS(1597), 1, + ACTIONS(1635), 1, sym__block_close, - STATE(503), 2, + STATE(601), 2, sym__list_item_upper_roman_period, aux_sym__list_upper_roman_period_repeat1, - [14002] = 3, - ACTIONS(59), 1, - sym_list_marker_lower_roman_parens, - ACTIONS(1599), 1, - sym__block_close, - STATE(502), 2, - sym__list_item_lower_roman_parens, - aux_sym__list_lower_roman_parens_repeat1, - [14013] = 3, - ACTIONS(49), 1, - sym_list_marker_lower_roman_paren, - ACTIONS(1601), 1, + [15641] = 2, + ACTIONS(1637), 1, + sym__div_end, + ACTIONS(550), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [15650] = 3, + ACTIONS(47), 1, + sym_list_marker_lower_alpha_paren, + ACTIONS(1639), 1, sym__block_close, - STATE(501), 2, - sym__list_item_lower_roman_paren, - aux_sym__list_lower_roman_paren_repeat1, - [14024] = 3, + STATE(549), 2, + sym__list_item_lower_alpha_paren, + aux_sym__list_lower_alpha_paren_repeat1, + [15661] = 3, ACTIONS(39), 1, - sym_list_marker_lower_roman_period, - ACTIONS(1603), 1, - sym__block_close, - STATE(500), 2, - sym__list_item_lower_roman_period, - aux_sym__list_lower_roman_period_repeat1, - [14035] = 3, - ACTIONS(57), 1, - sym_list_marker_upper_alpha_parens, - ACTIONS(1605), 1, + sym_list_marker_upper_alpha_period, + ACTIONS(1641), 1, sym__block_close, - STATE(499), 2, - sym__list_item_upper_alpha_parens, - aux_sym__list_upper_alpha_parens_repeat1, - [14046] = 3, - ACTIONS(47), 1, + STATE(551), 2, + sym__list_item_upper_alpha_period, + aux_sym__list_upper_alpha_period_repeat1, + [15672] = 2, + ACTIONS(1643), 1, + sym__code_block_end, + ACTIONS(532), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [15681] = 3, + ACTIONS(49), 1, sym_list_marker_upper_alpha_paren, - ACTIONS(1607), 1, + ACTIONS(1645), 1, sym__block_close, - STATE(498), 2, + STATE(552), 2, sym__list_item_upper_alpha_paren, aux_sym__list_upper_alpha_paren_repeat1, - [14057] = 3, - ACTIONS(37), 1, - sym_list_marker_upper_alpha_period, - ACTIONS(1609), 1, - sym__block_close, - STATE(497), 2, - sym__list_item_upper_alpha_period, - aux_sym__list_upper_alpha_period_repeat1, - [14068] = 3, - ACTIONS(55), 1, - sym_list_marker_lower_alpha_parens, - ACTIONS(1611), 1, + [15692] = 3, + ACTIONS(59), 1, + sym_list_marker_upper_alpha_parens, + ACTIONS(1647), 1, sym__block_close, - STATE(496), 2, - sym__list_item_lower_alpha_parens, - aux_sym__list_lower_alpha_parens_repeat1, - [14079] = 3, - ACTIONS(45), 1, - sym_list_marker_lower_alpha_paren, - ACTIONS(1613), 1, + STATE(553), 2, + sym__list_item_upper_alpha_parens, + aux_sym__list_upper_alpha_parens_repeat1, + [15703] = 3, + ACTIONS(41), 1, + sym_list_marker_lower_roman_period, + ACTIONS(1649), 1, sym__block_close, - STATE(495), 2, - sym__list_item_lower_alpha_paren, - aux_sym__list_lower_alpha_paren_repeat1, - [14090] = 3, - ACTIONS(35), 1, - sym_list_marker_lower_alpha_period, - ACTIONS(1615), 1, + STATE(554), 2, + sym__list_item_lower_roman_period, + aux_sym__list_lower_roman_period_repeat1, + [15714] = 2, + ACTIONS(1651), 1, + sym__div_end, + ACTIONS(538), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [15723] = 3, + ACTIONS(51), 1, + sym_list_marker_lower_roman_paren, + ACTIONS(1653), 1, sym__block_close, - STATE(494), 2, - sym__list_item_lower_alpha_period, - aux_sym__list_lower_alpha_period_repeat1, - [14101] = 3, - ACTIONS(53), 1, - sym_list_marker_decimal_parens, - ACTIONS(1617), 1, + STATE(555), 2, + sym__list_item_lower_roman_paren, + aux_sym__list_lower_roman_paren_repeat1, + [15734] = 3, + ACTIONS(61), 1, + sym_list_marker_lower_roman_parens, + ACTIONS(1655), 1, sym__block_close, - STATE(493), 2, - sym__list_item_decimal_parens, - aux_sym__list_decimal_parens_repeat1, - [14112] = 3, + STATE(557), 2, + sym__list_item_lower_roman_parens, + aux_sym__list_lower_roman_parens_repeat1, + [15745] = 3, ACTIONS(43), 1, - sym_list_marker_decimal_paren, - ACTIONS(1619), 1, + sym_list_marker_upper_roman_period, + ACTIONS(1657), 1, sym__block_close, - STATE(492), 2, - sym__list_item_decimal_paren, - aux_sym__list_decimal_paren_repeat1, - [14123] = 2, - ACTIONS(1621), 1, + STATE(601), 2, + sym__list_item_upper_roman_period, + aux_sym__list_upper_roman_period_repeat1, + [15756] = 2, + ACTIONS(1659), 1, sym__eof_or_newline, - ACTIONS(616), 3, + ACTIONS(602), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14132] = 3, - ACTIONS(33), 1, - sym_list_marker_decimal_period, - ACTIONS(1623), 1, + [15765] = 3, + ACTIONS(1661), 1, + aux_sym__line_token1, + ACTIONS(1664), 1, + sym_frontmatter_marker, + STATE(594), 2, + sym__line, + aux_sym_frontmatter_content_repeat1, + [15776] = 3, + ACTIONS(61), 1, + sym_list_marker_lower_roman_parens, + ACTIONS(1666), 1, sym__block_close, - STATE(491), 2, - sym__list_item_decimal_period, - aux_sym__list_decimal_period_repeat1, - [14143] = 3, - ACTIONS(31), 1, - sym_list_marker_definition, - ACTIONS(1625), 1, + STATE(557), 2, + sym__list_item_lower_roman_parens, + aux_sym__list_lower_roman_parens_repeat1, + [15787] = 3, + ACTIONS(53), 1, + sym_list_marker_upper_roman_paren, + ACTIONS(1668), 1, sym__block_close, - STATE(605), 2, - sym__list_item_definition, - aux_sym__list_definition_repeat1, - [14154] = 3, - ACTIONS(31), 1, + STATE(600), 2, + sym__list_item_upper_roman_paren, + aux_sym__list_upper_roman_paren_repeat1, + [15798] = 3, + ACTIONS(63), 1, + sym_list_marker_upper_roman_parens, + ACTIONS(1670), 1, + sym__block_close, + STATE(599), 2, + sym__list_item_upper_roman_parens, + aux_sym__list_upper_roman_parens_repeat1, + [15809] = 3, + ACTIONS(1479), 1, + aux_sym__line_token1, + STATE(1029), 1, + sym_frontmatter_content, + STATE(529), 2, + sym__line, + aux_sym_frontmatter_content_repeat1, + [15820] = 3, + ACTIONS(1672), 1, + sym__block_close, + ACTIONS(1674), 1, + sym_list_marker_upper_roman_parens, + STATE(599), 2, + sym__list_item_upper_roman_parens, + aux_sym__list_upper_roman_parens_repeat1, + [15831] = 3, + ACTIONS(1677), 1, + sym__block_close, + ACTIONS(1679), 1, + sym_list_marker_upper_roman_paren, + STATE(600), 2, + sym__list_item_upper_roman_paren, + aux_sym__list_upper_roman_paren_repeat1, + [15842] = 3, + ACTIONS(1682), 1, + sym__block_close, + ACTIONS(1684), 1, + sym_list_marker_upper_roman_period, + STATE(601), 2, + sym__list_item_upper_roman_period, + aux_sym__list_upper_roman_period_repeat1, + [15853] = 3, + ACTIONS(33), 1, sym_list_marker_definition, - ACTIONS(1627), 1, + ACTIONS(1687), 1, sym__block_close, - STATE(605), 2, + STATE(544), 2, sym__list_item_definition, aux_sym__list_definition_repeat1, - [14165] = 3, - ACTIONS(33), 1, + [15864] = 3, + ACTIONS(35), 1, sym_list_marker_decimal_period, - ACTIONS(1629), 1, + ACTIONS(1689), 1, sym__block_close, - STATE(491), 2, + STATE(545), 2, sym__list_item_decimal_period, aux_sym__list_decimal_period_repeat1, - [14176] = 3, - ACTIONS(43), 1, + [15875] = 3, + ACTIONS(45), 1, sym_list_marker_decimal_paren, - ACTIONS(1631), 1, + ACTIONS(1691), 1, sym__block_close, - STATE(492), 2, + STATE(546), 2, sym__list_item_decimal_paren, aux_sym__list_decimal_paren_repeat1, - [14187] = 2, - ACTIONS(1633), 1, - sym__eof_or_newline, - ACTIONS(610), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [14196] = 3, - ACTIONS(53), 1, + [15886] = 3, + ACTIONS(55), 1, sym_list_marker_decimal_parens, - ACTIONS(1635), 1, + ACTIONS(1693), 1, sym__block_close, - STATE(493), 2, + STATE(547), 2, sym__list_item_decimal_parens, aux_sym__list_decimal_parens_repeat1, - [14207] = 2, - ACTIONS(1637), 1, - sym__code_block_end, - ACTIONS(624), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [14216] = 2, - ACTIONS(1639), 1, - sym__code_block_end, - ACTIONS(554), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [14225] = 3, - ACTIONS(35), 1, + [15897] = 3, + ACTIONS(37), 1, sym_list_marker_lower_alpha_period, - ACTIONS(1641), 1, + ACTIONS(1695), 1, sym__block_close, - STATE(494), 2, + STATE(548), 2, sym__list_item_lower_alpha_period, aux_sym__list_lower_alpha_period_repeat1, - [14236] = 2, - ACTIONS(1643), 1, - sym__div_end, - ACTIONS(546), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [14245] = 3, - ACTIONS(45), 1, + [15908] = 3, + ACTIONS(47), 1, sym_list_marker_lower_alpha_paren, - ACTIONS(1645), 1, + ACTIONS(1697), 1, sym__block_close, - STATE(495), 2, + STATE(549), 2, sym__list_item_lower_alpha_paren, aux_sym__list_lower_alpha_paren_repeat1, - [14256] = 3, - ACTIONS(55), 1, + [15919] = 3, + ACTIONS(57), 1, sym_list_marker_lower_alpha_parens, - ACTIONS(1647), 1, + ACTIONS(1699), 1, sym__block_close, - STATE(496), 2, + STATE(550), 2, sym__list_item_lower_alpha_parens, aux_sym__list_lower_alpha_parens_repeat1, - [14267] = 2, - ACTIONS(1649), 1, - sym__code_block_end, - ACTIONS(564), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [14276] = 2, - ACTIONS(1651), 1, - sym__code_block_end, - ACTIONS(570), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [14285] = 3, - ACTIONS(59), 1, - sym_list_marker_lower_roman_parens, - ACTIONS(1653), 1, - sym__block_close, - STATE(502), 2, - sym__list_item_lower_roman_parens, - aux_sym__list_lower_roman_parens_repeat1, - [14296] = 3, - ACTIONS(37), 1, + [15930] = 3, + ACTIONS(39), 1, sym_list_marker_upper_alpha_period, - ACTIONS(1655), 1, + ACTIONS(1701), 1, sym__block_close, - STATE(497), 2, + STATE(551), 2, sym__list_item_upper_alpha_period, aux_sym__list_upper_alpha_period_repeat1, - [14307] = 3, + [15941] = 3, ACTIONS(49), 1, + sym_list_marker_upper_alpha_paren, + ACTIONS(1703), 1, + sym__block_close, + STATE(552), 2, + sym__list_item_upper_alpha_paren, + aux_sym__list_upper_alpha_paren_repeat1, + [15952] = 3, + ACTIONS(59), 1, + sym_list_marker_upper_alpha_parens, + ACTIONS(1705), 1, + sym__block_close, + STATE(553), 2, + sym__list_item_upper_alpha_parens, + aux_sym__list_upper_alpha_parens_repeat1, + [15963] = 3, + ACTIONS(41), 1, + sym_list_marker_lower_roman_period, + ACTIONS(1707), 1, + sym__block_close, + STATE(554), 2, + sym__list_item_lower_roman_period, + aux_sym__list_lower_roman_period_repeat1, + [15974] = 3, + ACTIONS(51), 1, sym_list_marker_lower_roman_paren, - ACTIONS(1657), 1, + ACTIONS(1709), 1, sym__block_close, - STATE(501), 2, + STATE(555), 2, sym__list_item_lower_roman_paren, aux_sym__list_lower_roman_paren_repeat1, - [14318] = 2, - ACTIONS(1659), 1, - sym__div_end, - ACTIONS(576), 3, + [15985] = 1, + ACTIONS(716), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14327] = 2, - ACTIONS(1661), 1, - sym__div_end, - ACTIONS(582), 3, + [15991] = 1, + ACTIONS(704), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14336] = 3, - ACTIONS(61), 1, - sym_list_marker_upper_roman_parens, - ACTIONS(1663), 1, - sym__block_close, - STATE(505), 2, - sym__list_item_upper_roman_parens, - aux_sym__list_upper_roman_parens_repeat1, - [14347] = 3, - ACTIONS(39), 1, - sym_list_marker_lower_roman_period, - ACTIONS(1665), 1, - sym__block_close, - STATE(500), 2, - sym__list_item_lower_roman_period, - aux_sym__list_lower_roman_period_repeat1, - [14358] = 3, - ACTIONS(35), 1, - sym_list_marker_lower_alpha_period, - ACTIONS(1667), 1, - sym__block_close, - STATE(494), 2, - sym__list_item_lower_alpha_period, - aux_sym__list_lower_alpha_period_repeat1, - [14369] = 2, - ACTIONS(1669), 1, - sym__div_end, - ACTIONS(602), 3, + [15997] = 1, + ACTIONS(692), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14378] = 3, - ACTIONS(1671), 1, - sym__block_close, - ACTIONS(1673), 1, - sym_list_marker_definition, - STATE(605), 2, - sym__list_item_definition, - aux_sym__list_definition_repeat1, - [14389] = 2, - ACTIONS(1676), 1, - sym__code_block_end, - ACTIONS(596), 3, + [16003] = 1, + ACTIONS(676), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14398] = 3, - ACTIONS(57), 1, - sym_list_marker_upper_alpha_parens, - ACTIONS(1678), 1, - sym__block_close, - STATE(499), 2, - sym__list_item_upper_alpha_parens, - aux_sym__list_upper_alpha_parens_repeat1, - [14409] = 3, - ACTIONS(41), 1, - sym_list_marker_upper_roman_period, - ACTIONS(1680), 1, - sym__block_close, - STATE(503), 2, - sym__list_item_upper_roman_period, - aux_sym__list_upper_roman_period_repeat1, - [14420] = 1, - ACTIONS(1682), 3, - sym__block_close, - sym_list_marker_dash, - sym__block_quote_continuation, - [14426] = 2, - ACTIONS(1684), 1, - sym__code_block_end, - ACTIONS(570), 2, - sym__block_close, - sym__block_quote_continuation, - [14434] = 1, - ACTIONS(838), 3, + [16009] = 1, + ACTIONS(754), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14440] = 1, - ACTIONS(1686), 3, - sym__block_close, - sym_list_marker_dash, + [16015] = 3, + ACTIONS(858), 1, + sym_list_marker_plus, + ACTIONS(1711), 1, sym__block_quote_continuation, - [14446] = 1, - ACTIONS(846), 3, + STATE(619), 1, + aux_sym__block_quote_prefix_repeat1, + [16025] = 1, + ACTIONS(746), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14452] = 1, - ACTIONS(1686), 3, - sym__block_close, - sym_list_marker_star, - sym__block_quote_continuation, - [14458] = 1, - ACTIONS(860), 3, + [16031] = 1, + ACTIONS(724), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14464] = 1, - ACTIONS(856), 3, + [16037] = 1, + ACTIONS(736), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14470] = 1, - ACTIONS(1338), 3, + [16043] = 1, + ACTIONS(740), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14476] = 1, - ACTIONS(684), 3, + [16049] = 1, + ACTIONS(748), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14482] = 1, - ACTIONS(694), 3, + [16055] = 1, + ACTIONS(756), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14488] = 1, - ACTIONS(852), 3, + [16061] = 1, + ACTIONS(760), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14494] = 1, - ACTIONS(778), 3, + [16067] = 1, + ACTIONS(768), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14500] = 1, - ACTIONS(750), 3, + [16073] = 1, + ACTIONS(772), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14506] = 1, - ACTIONS(698), 3, + [16079] = 1, + ACTIONS(776), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14512] = 1, - ACTIONS(554), 3, + [16085] = 1, + ACTIONS(670), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14518] = 1, - ACTIONS(806), 3, + [16091] = 1, + ACTIONS(784), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14524] = 1, - ACTIONS(798), 3, + [16097] = 1, + ACTIONS(792), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14530] = 1, - ACTIONS(742), 3, + [16103] = 1, + ACTIONS(800), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14536] = 1, - ACTIONS(544), 3, + [16109] = 1, + ACTIONS(804), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14542] = 1, - ACTIONS(830), 3, + [16115] = 3, + ACTIONS(1714), 1, + sym__block_close, + ACTIONS(1716), 1, + sym__heading_continuation, + STATE(697), 1, + aux_sym__heading_content_repeat1, + [16125] = 3, + ACTIONS(1718), 1, + sym__eof_or_newline, + ACTIONS(1720), 1, + sym__newline_inline, + STATE(690), 1, + aux_sym__paragraph_content_repeat1, + [16135] = 1, + ACTIONS(1722), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14548] = 1, - ACTIONS(714), 3, + [16141] = 1, + ACTIONS(830), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14554] = 1, - ACTIONS(826), 3, - sym__list_item_continuation, - sym__list_item_end, + [16147] = 1, + ACTIONS(1724), 3, + sym__block_close, + sym_list_marker_dash, sym__block_quote_continuation, - [14560] = 1, - ACTIONS(822), 3, - sym__list_item_continuation, - sym__list_item_end, + [16153] = 1, + ACTIONS(1277), 3, + sym__block_close, sym__block_quote_continuation, - [14566] = 1, - ACTIONS(814), 3, + aux_sym__line_token1, + [16159] = 1, + ACTIONS(812), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14572] = 1, - ACTIONS(810), 3, + [16165] = 1, + ACTIONS(816), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14578] = 1, - ACTIONS(802), 3, + [16171] = 1, + ACTIONS(528), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14584] = 1, - ACTIONS(794), 3, + [16177] = 1, + ACTIONS(1724), 3, + sym__block_close, + sym_list_marker_star, + sym__block_quote_continuation, + [16183] = 1, + ACTIONS(842), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14590] = 3, - ACTIONS(1688), 1, + [16189] = 2, + ACTIONS(1726), 1, + sym__code_block_end, + ACTIONS(592), 2, sym__block_close, - ACTIONS(1690), 1, - sym__heading_continuation, - STATE(637), 1, - aux_sym__heading_content_repeat1, - [14600] = 1, - ACTIONS(790), 3, + sym__block_quote_continuation, + [16197] = 1, + ACTIONS(848), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14606] = 1, - ACTIONS(782), 3, + [16203] = 1, + ACTIONS(834), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14612] = 3, - ACTIONS(1009), 1, - sym_list_marker_dash, - ACTIONS(1201), 1, - sym__block_quote_continuation, - STATE(671), 1, - aux_sym__block_quote_prefix_repeat1, - [14622] = 3, - ACTIONS(1009), 1, + [16209] = 3, + ACTIONS(987), 1, sym_list_marker_star, - ACTIONS(1179), 1, + ACTIONS(1222), 1, sym__block_quote_continuation, - STATE(642), 1, + STATE(650), 1, aux_sym__block_quote_prefix_repeat1, - [14632] = 3, - ACTIONS(876), 1, + [16219] = 3, + ACTIONS(858), 1, sym_list_marker_star, - ACTIONS(1693), 1, + ACTIONS(1728), 1, sym__block_quote_continuation, - STATE(642), 1, + STATE(650), 1, aux_sym__block_quote_prefix_repeat1, - [14642] = 1, - ACTIONS(1686), 3, - sym__block_close, - sym_list_marker_plus, + [16229] = 1, + ACTIONS(826), 3, + sym__list_item_continuation, + sym__list_item_end, sym__block_quote_continuation, - [14648] = 2, - ACTIONS(1696), 1, - sym__code_block_end, - ACTIONS(596), 2, - sym__block_close, + [16235] = 3, + ACTIONS(987), 1, + sym_list_marker_plus, + ACTIONS(1218), 1, sym__block_quote_continuation, - [14656] = 2, - ACTIONS(1698), 1, - sym__div_end, - ACTIONS(602), 2, - sym__block_close, + STATE(619), 1, + aux_sym__block_quote_prefix_repeat1, + [16245] = 1, + ACTIONS(820), 3, + sym__list_item_continuation, + sym__list_item_end, sym__block_quote_continuation, - [14664] = 3, - ACTIONS(1009), 1, + [16251] = 3, + ACTIONS(987), 1, sym__list_marker_task_begin, - ACTIONS(1114), 1, + ACTIONS(1178), 1, sym__block_quote_continuation, - STATE(647), 1, + STATE(655), 1, aux_sym__block_quote_prefix_repeat1, - [14674] = 3, - ACTIONS(876), 1, + [16261] = 3, + ACTIONS(858), 1, sym__list_marker_task_begin, - ACTIONS(1700), 1, + ACTIONS(1731), 1, sym__block_quote_continuation, - STATE(647), 1, + STATE(655), 1, aux_sym__block_quote_prefix_repeat1, - [14684] = 1, - ACTIONS(1703), 3, - sym__block_close, - sym_list_marker_plus, + [16271] = 1, + ACTIONS(798), 3, + sym__list_item_continuation, + sym__list_item_end, sym__block_quote_continuation, - [14690] = 2, - ACTIONS(1705), 1, - sym__eof_or_newline, - ACTIONS(610), 2, + [16277] = 1, + ACTIONS(766), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [16283] = 1, + ACTIONS(1734), 3, sym__block_close, sym__block_quote_continuation, - [14698] = 3, - ACTIONS(876), 1, - anon_sym_PIPE, - ACTIONS(1707), 1, + aux_sym__line_token1, + [16289] = 3, + ACTIONS(987), 1, + sym__list_item_continuation, + ACTIONS(1290), 1, sym__block_quote_continuation, - STATE(650), 1, + STATE(660), 1, aux_sym__block_quote_prefix_repeat1, - [14708] = 3, - ACTIONS(1009), 1, + [16299] = 3, + ACTIONS(858), 1, sym__list_item_continuation, - ACTIONS(1263), 1, + ACTIONS(1736), 1, sym__block_quote_continuation, - STATE(652), 1, + STATE(660), 1, aux_sym__block_quote_prefix_repeat1, - [14718] = 3, - ACTIONS(876), 1, + [16309] = 1, + ACTIONS(782), 3, sym__list_item_continuation, - ACTIONS(1710), 1, + sym__list_item_end, sym__block_quote_continuation, - STATE(652), 1, - aux_sym__block_quote_prefix_repeat1, - [14728] = 3, - ACTIONS(1713), 1, - sym__eof_or_newline, - ACTIONS(1715), 1, - sym__newline_inline, - STATE(653), 1, - aux_sym__paragraph_content_repeat1, - [14738] = 3, - ACTIONS(1718), 1, - sym__eof_or_newline, - ACTIONS(1720), 1, - sym__newline_inline, - STATE(653), 1, - aux_sym__paragraph_content_repeat1, - [14748] = 1, - ACTIONS(774), 3, + [16315] = 1, + ACTIONS(640), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14754] = 1, - ACTIONS(770), 3, + [16321] = 1, + ACTIONS(722), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14760] = 1, - ACTIONS(1722), 3, - sym__block_close, - sym__list_marker_task_begin, + [16327] = 1, + ACTIONS(1739), 3, + anon_sym_PERCENT, + sym_backslash_escape, + aux_sym__comment_no_newline_token1, + [16333] = 1, + ACTIONS(684), 3, + sym__list_item_continuation, + sym__list_item_end, sym__block_quote_continuation, - [14766] = 1, - ACTIONS(1724), 3, + [16339] = 3, + ACTIONS(1741), 1, + anon_sym_DQUOTE, + ACTIONS(1743), 1, + aux_sym_value_token2, + STATE(450), 1, + sym_value, + [16349] = 1, + ACTIONS(1745), 3, sym__block_close, - sym_list_marker_plus, + sym_list_marker_dash, sym__block_quote_continuation, - [14772] = 1, - ACTIONS(1726), 3, + [16355] = 1, + ACTIONS(1747), 3, sym__block_close, sym_list_marker_star, sym__block_quote_continuation, - [14778] = 1, - ACTIONS(762), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [14784] = 1, - ACTIONS(754), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [14790] = 2, - ACTIONS(1728), 1, - sym__div_end, - ACTIONS(582), 2, + [16361] = 1, + ACTIONS(1749), 3, sym__block_close, + sym_list_marker_plus, sym__block_quote_continuation, - [14798] = 1, - ACTIONS(1730), 3, + [16367] = 1, + ACTIONS(1751), 3, sym__block_close, + sym__list_marker_task_begin, sym__block_quote_continuation, - aux_sym__line_token1, - [14804] = 1, - ACTIONS(746), 3, + [16373] = 1, + ACTIONS(680), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14810] = 3, - ACTIONS(1009), 1, + [16379] = 1, + ACTIONS(690), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [16385] = 3, + ACTIONS(987), 1, aux_sym__line_token1, - ACTIONS(1106), 1, + ACTIONS(1166), 1, sym__block_quote_continuation, - STATE(666), 1, + STATE(674), 1, aux_sym__block_quote_prefix_repeat1, - [14820] = 3, - ACTIONS(876), 1, + [16395] = 3, + ACTIONS(858), 1, aux_sym__line_token1, - ACTIONS(1732), 1, + ACTIONS(1753), 1, sym__block_quote_continuation, - STATE(666), 1, + STATE(674), 1, aux_sym__block_quote_prefix_repeat1, - [14830] = 1, - ACTIONS(1735), 3, - sym__block_close, - sym__list_marker_task_begin, - sym__block_quote_continuation, - [14836] = 3, - ACTIONS(1737), 1, - anon_sym_DQUOTE, - ACTIONS(1739), 1, - aux_sym_value_token2, - STATE(473), 1, - sym_value, - [14846] = 2, - ACTIONS(1741), 1, - sym__div_end, - ACTIONS(576), 2, - sym__block_close, + [16405] = 1, + ACTIONS(698), 3, + sym__list_item_continuation, + sym__list_item_end, sym__block_quote_continuation, - [14854] = 1, - ACTIONS(1743), 3, - sym_backslash_escape, - anon_sym_PERCENT, - aux_sym__comment_no_newline_token1, - [14860] = 3, - ACTIONS(876), 1, - sym_list_marker_dash, - ACTIONS(1745), 1, + [16411] = 1, + ACTIONS(702), 3, + sym__list_item_continuation, + sym__list_item_end, sym__block_quote_continuation, - STATE(671), 1, - aux_sym__block_quote_prefix_repeat1, - [14870] = 1, - ACTIONS(1254), 3, - sym__block_close, + [16417] = 1, + ACTIONS(710), 3, + sym__list_item_continuation, + sym__list_item_end, sym__block_quote_continuation, - aux_sym__line_token1, - [14876] = 3, - ACTIONS(1720), 1, - sym__newline_inline, - ACTIONS(1748), 1, - sym__eof_or_newline, - STATE(653), 1, - aux_sym__paragraph_content_repeat1, - [14886] = 1, - ACTIONS(1703), 3, - sym__block_close, - sym_list_marker_dash, + [16423] = 1, + ACTIONS(714), 3, + sym__list_item_continuation, + sym__list_item_end, sym__block_quote_continuation, - [14892] = 1, - ACTIONS(844), 3, + [16429] = 1, + ACTIONS(730), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14898] = 1, - ACTIONS(1750), 3, + [16435] = 1, + ACTIONS(734), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14904] = 2, - ACTIONS(1752), 1, - anon_sym_LBRACK, - STATE(1077), 2, - sym_checked, - sym_unchecked, - [14912] = 3, - ACTIONS(1754), 1, - sym__block_close, - ACTIONS(1756), 1, - sym__heading_continuation, - STATE(637), 1, - aux_sym__heading_content_repeat1, - [14922] = 3, + [16441] = 3, + ACTIONS(480), 1, + sym__block_quote_continuation, + ACTIONS(987), 1, + anon_sym_PIPE, + STATE(695), 1, + aux_sym__block_quote_prefix_repeat1, + [16451] = 3, + ACTIONS(1718), 1, + sym__eof_or_newline, ACTIONS(1720), 1, sym__newline_inline, - ACTIONS(1748), 1, - sym__eof_or_newline, - STATE(654), 1, + STATE(693), 1, aux_sym__paragraph_content_repeat1, - [14932] = 2, - ACTIONS(1758), 1, - sym__eof_or_newline, - ACTIONS(616), 2, + [16461] = 3, + ACTIONS(858), 1, + sym_list_marker_dash, + ACTIONS(1756), 1, + sym__block_quote_continuation, + STATE(683), 1, + aux_sym__block_quote_prefix_repeat1, + [16471] = 1, + ACTIONS(1759), 3, sym__block_close, + sym__list_marker_task_begin, sym__block_quote_continuation, - [14940] = 2, - ACTIONS(1762), 1, + [16477] = 2, + ACTIONS(1763), 1, anon_sym_SPACE, - ACTIONS(1760), 2, + ACTIONS(1761), 2, anon_sym_x, anon_sym_X, - [14948] = 1, - ACTIONS(1764), 3, + [16485] = 1, + ACTIONS(1765), 3, sym__block_close, sym_list_marker_plus, sym__block_quote_continuation, - [14954] = 1, - ACTIONS(1703), 3, + [16491] = 1, + ACTIONS(1767), 3, + sym__block_close, + sym_list_marker_star, + sym__block_quote_continuation, + [16497] = 1, + ACTIONS(1769), 3, + sym__block_close, + sym_list_marker_dash, + sym__block_quote_continuation, + [16503] = 3, + ACTIONS(1716), 1, + sym__heading_continuation, + ACTIONS(1771), 1, + sym__block_close, + STATE(635), 1, + aux_sym__heading_content_repeat1, + [16513] = 3, + ACTIONS(1720), 1, + sym__newline_inline, + ACTIONS(1773), 1, + sym__eof_or_newline, + STATE(693), 1, + aux_sym__paragraph_content_repeat1, + [16523] = 1, + ACTIONS(1724), 3, sym__block_close, sym__list_marker_task_begin, sym__block_quote_continuation, - [14960] = 1, - ACTIONS(1686), 3, + [16529] = 1, + ACTIONS(1775), 3, sym__block_close, sym__list_marker_task_begin, sym__block_quote_continuation, - [14966] = 1, - ACTIONS(738), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [14972] = 1, - ACTIONS(1766), 3, + [16535] = 3, + ACTIONS(1777), 1, + sym__eof_or_newline, + ACTIONS(1779), 1, + sym__newline_inline, + STATE(693), 1, + aux_sym__paragraph_content_repeat1, + [16545] = 1, + ACTIONS(1775), 3, sym__block_close, - sym_list_marker_star, - sym__block_quote_continuation, - [14978] = 1, - ACTIONS(730), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [14984] = 1, - ACTIONS(722), 3, - sym__list_item_continuation, - sym__list_item_end, + sym_list_marker_dash, sym__block_quote_continuation, - [14990] = 1, - ACTIONS(704), 3, - sym__list_item_continuation, - sym__list_item_end, + [16551] = 3, + ACTIONS(858), 1, + anon_sym_PIPE, + ACTIONS(1782), 1, sym__block_quote_continuation, - [14996] = 1, - ACTIONS(706), 3, + STATE(695), 1, + aux_sym__block_quote_prefix_repeat1, + [16561] = 1, + ACTIONS(1387), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [15002] = 1, - ACTIONS(1768), 3, + [16567] = 3, + ACTIONS(1785), 1, + sym__block_close, + ACTIONS(1787), 1, + sym__heading_continuation, + STATE(697), 1, + aux_sym__heading_content_repeat1, + [16577] = 2, + ACTIONS(1790), 1, + sym__eof_or_newline, + ACTIONS(602), 2, sym__block_close, - sym_list_marker_dash, sym__block_quote_continuation, - [15008] = 1, - ACTIONS(690), 3, - sym__list_item_continuation, - sym__list_item_end, + [16585] = 1, + ACTIONS(1724), 3, + sym__block_close, + sym_list_marker_plus, sym__block_quote_continuation, - [15014] = 1, - ACTIONS(688), 3, - sym__list_item_continuation, - sym__list_item_end, + [16591] = 2, + ACTIONS(1792), 1, + sym__div_end, + ACTIONS(538), 2, + sym__block_close, sym__block_quote_continuation, - [15020] = 1, - ACTIONS(834), 3, - sym__list_item_continuation, - sym__list_item_end, + [16599] = 2, + ACTIONS(1794), 1, + sym__code_block_end, + ACTIONS(532), 2, + sym__block_close, sym__block_quote_continuation, - [15026] = 3, - ACTIONS(1009), 1, + [16607] = 1, + ACTIONS(1775), 3, + sym__block_close, sym_list_marker_plus, - ACTIONS(1175), 1, sym__block_quote_continuation, - STATE(698), 1, - aux_sym__block_quote_prefix_repeat1, - [15036] = 1, - ACTIONS(786), 3, - sym__list_item_continuation, - sym__list_item_end, + [16613] = 2, + ACTIONS(1796), 1, + sym__div_end, + ACTIONS(550), 2, + sym__block_close, sym__block_quote_continuation, - [15042] = 3, - ACTIONS(1756), 1, - sym__heading_continuation, - ACTIONS(1770), 1, + [16621] = 2, + ACTIONS(1798), 1, + sym__div_end, + ACTIONS(574), 2, sym__block_close, - STATE(678), 1, - aux_sym__heading_content_repeat1, - [15052] = 3, - ACTIONS(876), 1, - sym_list_marker_plus, - ACTIONS(1772), 1, sym__block_quote_continuation, - STATE(698), 1, + [16629] = 1, + ACTIONS(1775), 3, + sym__block_close, + sym_list_marker_star, + sym__block_quote_continuation, + [16635] = 3, + ACTIONS(987), 1, + sym_list_marker_dash, + ACTIONS(1228), 1, + sym__block_quote_continuation, + STATE(683), 1, aux_sym__block_quote_prefix_repeat1, - [15062] = 1, - ACTIONS(720), 3, - sym__list_item_continuation, - sym__list_item_end, + [16645] = 2, + ACTIONS(1800), 1, + sym__eof_or_newline, + ACTIONS(558), 2, + sym__block_close, sym__block_quote_continuation, - [15068] = 2, - ACTIONS(1775), 1, + [16653] = 2, + ACTIONS(1802), 1, sym__code_block_end, - ACTIONS(624), 2, + ACTIONS(616), 2, sym__block_close, sym__block_quote_continuation, - [15076] = 2, - ACTIONS(1777), 1, + [16661] = 2, + ACTIONS(1804), 1, sym__code_block_end, - ACTIONS(564), 2, + ACTIONS(640), 2, sym__block_close, sym__block_quote_continuation, - [15084] = 3, - ACTIONS(494), 1, - sym__block_quote_continuation, - ACTIONS(1009), 1, - anon_sym_PIPE, - STATE(650), 1, - aux_sym__block_quote_prefix_repeat1, - [15094] = 3, + [16669] = 3, ACTIONS(1720), 1, sym__newline_inline, - ACTIONS(1779), 1, + ACTIONS(1806), 1, sym__eof_or_newline, - STATE(673), 1, + STATE(682), 1, aux_sym__paragraph_content_repeat1, - [15104] = 1, - ACTIONS(1703), 3, + [16679] = 2, + ACTIONS(1808), 1, + sym__div_end, + ACTIONS(646), 2, sym__block_close, - sym_list_marker_star, - sym__block_quote_continuation, - [15110] = 1, - ACTIONS(728), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [15116] = 1, - ACTIONS(820), 3, - sym__list_item_continuation, - sym__list_item_end, sym__block_quote_continuation, - [15122] = 2, - ACTIONS(1781), 1, + [16687] = 2, + ACTIONS(1810), 1, + anon_sym_LBRACK, + STATE(973), 2, + sym_checked, + sym_unchecked, + [16695] = 2, + ACTIONS(1812), 1, sym__code_block_end, - ACTIONS(554), 2, + ACTIONS(608), 2, sym__block_close, sym__block_quote_continuation, - [15130] = 2, - ACTIONS(1783), 1, - sym__div_end, - ACTIONS(546), 2, + [16703] = 1, + ACTIONS(1814), 2, + sym__eof_or_newline, + sym__newline_inline, + [16708] = 1, + ACTIONS(756), 2, sym__block_close, sym__block_quote_continuation, - [15138] = 1, - ACTIONS(688), 2, + [16713] = 2, + ACTIONS(1816), 1, + sym__whitespace1, + ACTIONS(1818), 1, + sym__newline, + [16720] = 2, + ACTIONS(1820), 1, + anon_sym_PIPE, + STATE(717), 1, + aux_sym_table_separator_repeat1, + [16727] = 2, + ACTIONS(1823), 1, + sym_table_cell_alignment, + ACTIONS(1825), 1, + sym__newline, + [16734] = 1, + ACTIONS(640), 2, sym__block_close, sym__block_quote_continuation, - [15143] = 2, - ACTIONS(1785), 1, - sym__eof_or_newline, - STATE(780), 1, - sym__one_or_two_newlines, - [15150] = 1, - ACTIONS(457), 2, - sym_list_marker_plus, - sym__block_quote_continuation, - [15155] = 1, - ACTIONS(720), 2, + [16739] = 1, + ACTIONS(1827), 2, + sym__footnote_mark_begin, + sym__in_fallback, + [16744] = 2, + ACTIONS(1827), 1, + sym__in_fallback, + ACTIONS(1829), 1, + sym__footnote_mark_begin, + [16751] = 2, + ACTIONS(1832), 1, + sym__id, + STATE(1062), 1, + sym_reference_label, + [16758] = 2, + ACTIONS(1832), 1, + sym__id, + STATE(1055), 1, + sym_reference_label, + [16765] = 1, + ACTIONS(1396), 2, sym__block_close, sym__block_quote_continuation, - [15160] = 2, - ACTIONS(1787), 1, + [16770] = 2, + ACTIONS(1832), 1, sym__id, STATE(1048), 1, sym_reference_label, - [15167] = 1, - ACTIONS(698), 2, - sym__block_close, - sym__block_quote_continuation, - [15172] = 1, - ACTIONS(706), 2, - sym__block_close, - sym__block_quote_continuation, - [15177] = 1, - ACTIONS(838), 2, - sym__block_close, - sym__block_quote_continuation, - [15182] = 2, - ACTIONS(1787), 1, + [16777] = 2, + ACTIONS(1832), 1, sym__id, STATE(1041), 1, sym_reference_label, - [15189] = 1, - ACTIONS(1789), 2, + [16784] = 1, + ACTIONS(1834), 2, sym__block_close, - sym_list_marker_lower_alpha_parens, - [15194] = 2, - ACTIONS(1787), 1, - sym__id, - STATE(1034), 1, - sym_reference_label, - [15201] = 1, - ACTIONS(1791), 2, + sym_list_marker_definition, + [16789] = 1, + ACTIONS(1836), 2, sym__eof_or_newline, sym__close_paragraph, - [15206] = 1, - ACTIONS(1793), 2, + [16794] = 1, + ACTIONS(722), 2, sym__block_close, - sym_list_marker_upper_alpha_parens, - [15211] = 2, - ACTIONS(1795), 1, + sym__block_quote_continuation, + [16799] = 2, + ACTIONS(1823), 1, sym_table_cell_alignment, - ACTIONS(1797), 1, + ACTIONS(1838), 1, sym__newline, - [15218] = 2, - ACTIONS(1787), 1, - sym__id, - STATE(1027), 1, - sym_reference_label, - [15225] = 1, - ACTIONS(1799), 2, + [16806] = 1, + ACTIONS(684), 2, sym__block_close, - sym_list_marker_lower_roman_parens, - [15230] = 2, - ACTIONS(1801), 1, - sym__eof_or_newline, - STATE(176), 1, - sym__one_or_two_newlines, - [15237] = 1, - ACTIONS(778), 2, + sym__block_quote_continuation, + [16811] = 1, + ACTIONS(680), 2, + sym__block_close, + sym__block_quote_continuation, + [16816] = 2, + ACTIONS(1162), 1, + aux_sym__line_token1, + STATE(640), 1, + sym__line, + [16823] = 1, + ACTIONS(690), 2, sym__block_close, sym__block_quote_continuation, - [15242] = 1, - ACTIONS(750), 2, + [16828] = 1, + ACTIONS(698), 2, sym__block_close, sym__block_quote_continuation, - [15247] = 1, - ACTIONS(554), 2, + [16833] = 1, + ACTIONS(702), 2, sym__block_close, sym__block_quote_continuation, - [15252] = 2, - ACTIONS(1795), 1, + [16838] = 1, + ACTIONS(1785), 2, + sym__block_close, + sym__heading_continuation, + [16843] = 2, + ACTIONS(1823), 1, sym_table_cell_alignment, - ACTIONS(1803), 1, + ACTIONS(1840), 1, sym__newline, - [15259] = 1, - ACTIONS(1805), 2, - sym__block_close, - sym_list_marker_upper_roman_parens, - [15264] = 1, - ACTIONS(806), 2, + [16850] = 1, + ACTIONS(710), 2, sym__block_close, sym__block_quote_continuation, - [15269] = 1, - ACTIONS(798), 2, + [16855] = 1, + ACTIONS(714), 2, sym__block_close, sym__block_quote_continuation, - [15274] = 2, - ACTIONS(1807), 1, + [16860] = 2, + ACTIONS(1842), 1, anon_sym_PIPE, - STATE(860), 1, + STATE(758), 1, aux_sym_table_row_repeat1, - [15281] = 2, - ACTIONS(1809), 1, + [16867] = 2, + ACTIONS(1844), 1, anon_sym_PIPE, - STATE(880), 1, + STATE(717), 1, aux_sym_table_separator_repeat1, - [15288] = 1, - ACTIONS(742), 2, + [16874] = 1, + ACTIONS(730), 2, + sym__block_close, + sym__block_quote_continuation, + [16879] = 1, + ACTIONS(734), 2, sym__block_close, sym__block_quote_continuation, - [15293] = 2, - ACTIONS(1811), 1, + [16884] = 2, + ACTIONS(1846), 1, anon_sym_PIPE, - STATE(733), 1, + STATE(741), 1, aux_sym_table_row_repeat1, - [15300] = 2, - ACTIONS(1795), 1, + [16891] = 2, + ACTIONS(1823), 1, sym_table_cell_alignment, - ACTIONS(1813), 1, + ACTIONS(1848), 1, sym__newline, - [15307] = 2, - ACTIONS(1815), 1, + [16898] = 2, + ACTIONS(1850), 1, anon_sym_PIPE, - STATE(734), 1, + STATE(742), 1, aux_sym_table_separator_repeat1, - [15314] = 2, - ACTIONS(1811), 1, + [16905] = 2, + ACTIONS(1846), 1, anon_sym_PIPE, - STATE(860), 1, + STATE(758), 1, aux_sym_table_row_repeat1, - [15321] = 2, - ACTIONS(1815), 1, + [16912] = 2, + ACTIONS(1850), 1, anon_sym_PIPE, - STATE(880), 1, + STATE(717), 1, aux_sym_table_separator_repeat1, - [15328] = 1, - ACTIONS(714), 2, - sym__block_close, + [16919] = 1, + ACTIONS(445), 2, + sym_list_marker_dash, sym__block_quote_continuation, - [15333] = 1, - ACTIONS(694), 2, + [16924] = 1, + ACTIONS(766), 2, sym__block_close, sym__block_quote_continuation, - [15338] = 1, - ACTIONS(690), 2, + [16929] = 1, + ACTIONS(798), 2, sym__block_close, sym__block_quote_continuation, - [15343] = 2, - ACTIONS(1817), 1, + [16934] = 2, + ACTIONS(1852), 1, sym__eof_or_newline, - STATE(694), 1, + STATE(679), 1, sym__one_or_two_newlines, - [15350] = 1, - ACTIONS(1819), 2, - sym__eof_or_newline, - sym__close_paragraph, - [15355] = 1, - ACTIONS(1821), 2, + [16941] = 1, + ACTIONS(1854), 2, sym__eof_or_newline, sym__close_paragraph, - [15360] = 2, - ACTIONS(1823), 1, + [16946] = 2, + ACTIONS(1856), 1, anon_sym_PIPE, - STATE(739), 1, + STATE(748), 1, aux_sym_table_row_repeat1, - [15367] = 2, - ACTIONS(1825), 1, + [16953] = 2, + ACTIONS(1858), 1, anon_sym_PIPE, - STATE(740), 1, + STATE(749), 1, aux_sym_table_separator_repeat1, - [15374] = 2, - ACTIONS(1795), 1, - sym_table_cell_alignment, - ACTIONS(1827), 1, - sym__newline, - [15381] = 1, - ACTIONS(1703), 2, + [16960] = 1, + ACTIONS(1777), 2, + sym__eof_or_newline, + sym__newline_inline, + [16965] = 2, + ACTIONS(1860), 1, + anon_sym_PIPE, + STATE(758), 1, + aux_sym_table_row_repeat1, + [16972] = 1, + ACTIONS(1775), 2, sym__block_close, - sym_list_marker_lower_alpha_period, - [15386] = 1, - ACTIONS(704), 2, + sym_list_marker_upper_roman_parens, + [16977] = 1, + ACTIONS(1724), 2, sym__block_close, - sym__block_quote_continuation, - [15391] = 1, - ACTIONS(722), 2, + sym_list_marker_upper_roman_parens, + [16982] = 1, + ACTIONS(1775), 2, sym__block_close, - sym__block_quote_continuation, - [15396] = 2, - ACTIONS(1829), 1, - sym__whitespace1, - ACTIONS(1831), 1, - sym__newline, - [15403] = 1, - ACTIONS(457), 2, - sym__block_quote_continuation, - anon_sym_PIPE, - [15408] = 1, - ACTIONS(730), 2, + sym_list_marker_lower_roman_parens, + [16987] = 1, + ACTIONS(1724), 2, sym__block_close, - sym__block_quote_continuation, - [15413] = 1, - ACTIONS(738), 2, + sym_list_marker_lower_roman_parens, + [16992] = 1, + ACTIONS(1775), 2, sym__block_close, - sym__block_quote_continuation, - [15418] = 2, - ACTIONS(1833), 1, - sym__id, - STATE(978), 1, - sym_class_name, - [15425] = 1, - ACTIONS(746), 2, + sym_list_marker_upper_alpha_parens, + [16997] = 1, + ACTIONS(1724), 2, sym__block_close, - sym__block_quote_continuation, - [15430] = 1, - ACTIONS(754), 2, + sym_list_marker_upper_alpha_parens, + [17002] = 1, + ACTIONS(1775), 2, sym__block_close, - sym__block_quote_continuation, - [15435] = 1, - ACTIONS(762), 2, + sym_list_marker_lower_alpha_parens, + [17007] = 1, + ACTIONS(1724), 2, sym__block_close, - sym__block_quote_continuation, - [15440] = 2, - ACTIONS(1835), 1, - sym_language, - ACTIONS(1837), 1, - sym__newline, - [15447] = 1, - ACTIONS(1839), 2, + sym_list_marker_lower_alpha_parens, + [17012] = 1, + ACTIONS(1775), 2, + sym__block_close, + sym_list_marker_decimal_parens, + [17017] = 1, + ACTIONS(1724), 2, + sym__block_close, + sym_list_marker_decimal_parens, + [17022] = 1, + ACTIONS(1775), 2, sym__block_close, sym_list_marker_upper_roman_paren, - [15452] = 1, - ACTIONS(770), 2, + [17027] = 1, + ACTIONS(1724), 2, + sym__block_close, + sym_list_marker_upper_roman_paren, + [17032] = 1, + ACTIONS(1775), 2, + sym__block_close, + sym_list_marker_lower_roman_paren, + [17037] = 1, + ACTIONS(1724), 2, + sym__block_close, + sym_list_marker_lower_roman_paren, + [17042] = 1, + ACTIONS(1775), 2, + sym__block_close, + sym_list_marker_upper_alpha_paren, + [17047] = 1, + ACTIONS(1724), 2, + sym__block_close, + sym_list_marker_upper_alpha_paren, + [17052] = 1, + ACTIONS(1863), 2, + sym__footnote_mark_begin, + sym__in_fallback, + [17057] = 1, + ACTIONS(826), 2, sym__block_close, sym__block_quote_continuation, - [15457] = 1, - ACTIONS(1841), 2, + [17062] = 1, + ACTIONS(1865), 2, sym__eof_or_newline, sym__close_paragraph, - [15462] = 1, - ACTIONS(1686), 2, + [17067] = 1, + ACTIONS(1775), 2, sym__block_close, - sym_list_marker_upper_roman_parens, - [15467] = 2, - ACTIONS(1843), 1, + sym_list_marker_lower_alpha_paren, + [17072] = 1, + ACTIONS(834), 2, + sym__block_close, + sym__block_quote_continuation, + [17077] = 1, + ACTIONS(848), 2, + sym__block_close, + sym__block_quote_continuation, + [17082] = 2, + ACTIONS(1867), 1, anon_sym_PIPE, - STATE(860), 1, + STATE(817), 1, aux_sym_table_row_repeat1, - [15474] = 2, - ACTIONS(1787), 1, - sym__id, - STATE(999), 1, - sym_reference_label, - [15481] = 2, - ACTIONS(1845), 1, + [17089] = 2, + ACTIONS(1869), 1, + anon_sym_PIPE, + STATE(816), 1, + aux_sym_table_separator_repeat1, + [17096] = 1, + ACTIONS(1724), 2, + sym__block_close, + sym_list_marker_lower_alpha_paren, + [17101] = 2, + ACTIONS(1823), 1, + sym_table_cell_alignment, + ACTIONS(1871), 1, + sym__newline, + [17108] = 2, + ACTIONS(1873), 1, + anon_sym_PIPE, + STATE(758), 1, + aux_sym_table_row_repeat1, + [17115] = 2, + ACTIONS(1875), 1, anon_sym_PIPE, - STATE(880), 1, + STATE(717), 1, aux_sym_table_separator_repeat1, - [15488] = 1, - ACTIONS(1703), 2, + [17122] = 1, + ACTIONS(842), 2, sym__block_close, - sym_list_marker_upper_roman_parens, - [15493] = 2, - ACTIONS(1847), 1, + sym__block_quote_continuation, + [17127] = 1, + ACTIONS(528), 2, + sym__block_close, + sym__block_quote_continuation, + [17132] = 2, + ACTIONS(1877), 1, anon_sym_PIPE, - STATE(766), 1, + STATE(785), 1, aux_sym_table_row_repeat1, - [15500] = 2, - ACTIONS(1795), 1, - sym_table_cell_alignment, - ACTIONS(1849), 1, - sym__newline, - [15507] = 2, - ACTIONS(1851), 1, + [17139] = 2, + ACTIONS(1879), 1, anon_sym_PIPE, - STATE(768), 1, + STATE(786), 1, aux_sym_table_separator_repeat1, - [15514] = 2, - ACTIONS(1847), 1, + [17146] = 2, + ACTIONS(1877), 1, anon_sym_PIPE, - STATE(860), 1, + STATE(758), 1, aux_sym_table_row_repeat1, - [15521] = 2, - ACTIONS(1795), 1, - sym_table_cell_alignment, - ACTIONS(1853), 1, - sym__newline, - [15528] = 2, - ACTIONS(1851), 1, + [17153] = 2, + ACTIONS(1879), 1, anon_sym_PIPE, - STATE(880), 1, + STATE(717), 1, aux_sym_table_separator_repeat1, - [15535] = 1, - ACTIONS(1686), 2, - sym__block_close, - sym_list_marker_lower_roman_parens, - [15540] = 1, - ACTIONS(1217), 2, + [17160] = 2, + ACTIONS(1823), 1, + sym_table_cell_alignment, + ACTIONS(1881), 1, + sym__newline, + [17167] = 1, + ACTIONS(445), 2, + sym__block_quote_continuation, + aux_sym__line_token1, + [17172] = 2, + ACTIONS(1883), 1, + sym_language, + ACTIONS(1885), 1, + sym__newline, + [17179] = 1, + ACTIONS(1775), 2, sym__block_close, - sym__heading_continuation, - [15545] = 2, - ACTIONS(1855), 1, + sym_list_marker_decimal_paren, + [17184] = 1, + ACTIONS(1887), 2, + sym__footnote_mark_begin, + sym__in_fallback, + [17189] = 2, + ACTIONS(1889), 1, anon_sym_PIPE, - STATE(773), 1, + STATE(791), 1, aux_sym_table_row_repeat1, - [15552] = 2, - ACTIONS(1857), 1, + [17196] = 2, + ACTIONS(1891), 1, anon_sym_PIPE, - STATE(775), 1, + STATE(792), 1, aux_sym_table_separator_repeat1, - [15559] = 1, - ACTIONS(834), 2, + [17203] = 1, + ACTIONS(820), 2, sym__block_close, sym__block_quote_continuation, - [15564] = 1, - ACTIONS(1703), 2, + [17208] = 1, + ACTIONS(816), 2, sym__block_close, - sym_list_marker_lower_roman_parens, - [15569] = 1, - ACTIONS(1686), 2, - sym__block_close, - sym_list_marker_upper_alpha_parens, - [15574] = 2, - ACTIONS(1859), 1, - anon_sym_PIPE, - STATE(860), 1, - aux_sym_table_row_repeat1, - [15581] = 2, - ACTIONS(1795), 1, + sym__block_quote_continuation, + [17213] = 2, + ACTIONS(1893), 1, + sym__id, + STATE(964), 1, + sym_class_name, + [17220] = 2, + ACTIONS(1823), 1, sym_table_cell_alignment, - ACTIONS(1861), 1, + ACTIONS(1895), 1, sym__newline, - [15588] = 1, - ACTIONS(1863), 2, + [17227] = 1, + ACTIONS(1724), 2, sym__block_close, - sym_list_marker_definition, - [15593] = 2, - ACTIONS(1865), 1, + sym_list_marker_decimal_paren, + [17232] = 2, + ACTIONS(1897), 1, anon_sym_PIPE, - STATE(880), 1, + STATE(758), 1, + aux_sym_table_row_repeat1, + [17239] = 2, + ACTIONS(1899), 1, + anon_sym_PIPE, + STATE(717), 1, aux_sym_table_separator_repeat1, - [15600] = 1, - ACTIONS(1703), 2, + [17246] = 1, + ACTIONS(812), 2, sym__block_close, - sym_list_marker_upper_alpha_parens, - [15605] = 2, - ACTIONS(1867), 1, + sym__block_quote_continuation, + [17251] = 1, + ACTIONS(804), 2, + sym__block_close, + sym__block_quote_continuation, + [17256] = 2, + ACTIONS(1901), 1, anon_sym_PIPE, - STATE(783), 1, + STATE(805), 1, aux_sym_table_row_repeat1, - [15612] = 2, - ACTIONS(1869), 1, - anon_sym_PIPE, - STATE(786), 1, - aux_sym_table_separator_repeat1, - [15619] = 2, + [17263] = 2, + ACTIONS(1903), 1, + sym__eof_or_newline, + STATE(743), 1, + sym__one_or_two_newlines, + [17270] = 1, + ACTIONS(1905), 2, + sym__eof_or_newline, + sym__close_paragraph, + [17275] = 2, ACTIONS(1867), 1, anon_sym_PIPE, - STATE(860), 1, + STATE(758), 1, aux_sym_table_row_repeat1, - [15626] = 2, + [17282] = 2, ACTIONS(1869), 1, anon_sym_PIPE, - STATE(880), 1, + STATE(717), 1, aux_sym_table_separator_repeat1, - [15633] = 1, - ACTIONS(1686), 2, - sym__block_close, - sym_list_marker_lower_alpha_parens, - [15638] = 2, - ACTIONS(1795), 1, + [17289] = 2, + ACTIONS(1823), 1, sym_table_cell_alignment, - ACTIONS(1871), 1, + ACTIONS(1907), 1, sym__newline, - [15645] = 2, - ACTIONS(1873), 1, + [17296] = 2, + ACTIONS(1909), 1, anon_sym_PIPE, - STATE(790), 1, - aux_sym_table_row_repeat1, - [15652] = 2, - ACTIONS(1875), 1, + STATE(806), 1, + aux_sym_table_separator_repeat1, + [17303] = 2, + ACTIONS(1911), 1, anon_sym_PIPE, - STATE(791), 1, + STATE(717), 1, aux_sym_table_separator_repeat1, - [15659] = 1, - ACTIONS(786), 2, - sym__block_close, - sym__block_quote_continuation, - [15664] = 1, - ACTIONS(1703), 2, - sym__block_close, - sym_list_marker_lower_alpha_parens, - [15669] = 2, - ACTIONS(1877), 1, + [17310] = 2, + ACTIONS(1913), 1, anon_sym_PIPE, - STATE(860), 1, + STATE(758), 1, aux_sym_table_row_repeat1, - [15676] = 2, - ACTIONS(1879), 1, - anon_sym_PIPE, - STATE(880), 1, - aux_sym_table_separator_repeat1, - [15683] = 1, - ACTIONS(728), 2, + [17317] = 1, + ACTIONS(1775), 2, sym__block_close, - sym__block_quote_continuation, - [15688] = 1, - ACTIONS(1881), 2, - sym__eof_or_newline, - sym__close_paragraph, - [15693] = 2, - ACTIONS(1883), 1, - anon_sym_PIPE, - STATE(835), 1, - aux_sym_table_separator_repeat1, - [15700] = 1, - ACTIONS(1686), 2, + sym_list_marker_upper_roman_period, + [17322] = 1, + ACTIONS(1724), 2, sym__block_close, - sym_list_marker_decimal_parens, - [15705] = 1, - ACTIONS(1703), 2, + sym_list_marker_upper_roman_period, + [17327] = 1, + ACTIONS(445), 2, + sym__list_item_continuation, + sym__block_quote_continuation, + [17332] = 1, + ACTIONS(1775), 2, sym__block_close, - sym_list_marker_decimal_parens, - [15710] = 2, - ACTIONS(1885), 1, + sym_list_marker_lower_roman_period, + [17337] = 2, + ACTIONS(1901), 1, anon_sym_PIPE, - STATE(838), 1, + STATE(758), 1, aux_sym_table_row_repeat1, - [15717] = 1, - ACTIONS(774), 2, + [17344] = 1, + ACTIONS(1724), 2, sym__block_close, + sym_list_marker_lower_roman_period, + [17349] = 1, + ACTIONS(445), 2, + sym__list_marker_task_begin, sym__block_quote_continuation, - [15722] = 1, - ACTIONS(1887), 2, - sym__block_close, - sym_list_marker_lower_roman_paren, - [15727] = 1, - ACTIONS(782), 2, + [17354] = 1, + ACTIONS(1775), 2, sym__block_close, - sym__block_quote_continuation, - [15732] = 1, - ACTIONS(790), 2, + sym_list_marker_upper_alpha_period, + [17359] = 1, + ACTIONS(1724), 2, sym__block_close, + sym_list_marker_upper_alpha_period, + [17364] = 1, + ACTIONS(445), 2, + sym_list_marker_star, sym__block_quote_continuation, - [15737] = 1, - ACTIONS(1889), 2, + [17369] = 1, + ACTIONS(1915), 2, sym__eof_or_newline, sym__close_paragraph, - [15742] = 1, - ACTIONS(1891), 2, - sym__block_close, - sym_list_marker_decimal_period, - [15747] = 1, - ACTIONS(1686), 2, - sym__block_close, - sym_list_marker_decimal_period, - [15752] = 1, - ACTIONS(1893), 2, - sym__block_close, - sym_list_marker_lower_alpha_period, - [15757] = 1, - ACTIONS(794), 2, - sym__block_close, - sym__block_quote_continuation, - [15762] = 1, - ACTIONS(802), 2, + [17374] = 1, + ACTIONS(1734), 2, + sym_frontmatter_marker, + aux_sym__line_token1, + [17379] = 2, + ACTIONS(1909), 1, + anon_sym_PIPE, + STATE(717), 1, + aux_sym_table_separator_repeat1, + [17386] = 1, + ACTIONS(800), 2, sym__block_close, sym__block_quote_continuation, - [15767] = 1, - ACTIONS(1895), 2, - sym__block_close, - sym_list_marker_upper_alpha_period, - [15772] = 1, - ACTIONS(1897), 2, - sym__block_close, - sym_list_marker_lower_roman_period, - [15777] = 1, - ACTIONS(810), 2, + [17391] = 1, + ACTIONS(1917), 2, + sym__footnote_mark_begin, + sym__in_fallback, + [17396] = 1, + ACTIONS(792), 2, sym__block_close, sym__block_quote_continuation, - [15782] = 1, - ACTIONS(1703), 2, - sym__block_close, - sym_list_marker_decimal_period, - [15787] = 1, - ACTIONS(1899), 2, - sym__block_close, - sym_list_marker_upper_roman_period, - [15792] = 1, - ACTIONS(814), 2, + [17401] = 1, + ACTIONS(784), 2, sym__block_close, sym__block_quote_continuation, - [15797] = 2, - ACTIONS(1901), 1, + [17406] = 2, + ACTIONS(1919), 1, anon_sym_PIPE, - STATE(798), 1, + STATE(822), 1, aux_sym_table_row_repeat1, - [15804] = 2, - ACTIONS(1903), 1, + [17413] = 2, + ACTIONS(1921), 1, anon_sym_PIPE, - STATE(799), 1, + STATE(830), 1, aux_sym_table_separator_repeat1, - [15811] = 2, - ACTIONS(1901), 1, + [17420] = 1, + ACTIONS(782), 2, + sym__block_close, + sym__block_quote_continuation, + [17425] = 1, + ACTIONS(1923), 2, + sym__eof_or_newline, + sym__close_paragraph, + [17430] = 2, + ACTIONS(1925), 1, anon_sym_PIPE, - STATE(860), 1, + STATE(758), 1, aux_sym_table_row_repeat1, - [15818] = 2, - ACTIONS(1903), 1, - anon_sym_PIPE, - STATE(880), 1, - aux_sym_table_separator_repeat1, - [15825] = 2, - ACTIONS(1795), 1, + [17437] = 2, + ACTIONS(1823), 1, sym_table_cell_alignment, - ACTIONS(1905), 1, + ACTIONS(1927), 1, sym__newline, - [15832] = 2, - ACTIONS(1907), 1, + [17444] = 2, + ACTIONS(1929), 1, anon_sym_PIPE, - STATE(824), 1, - aux_sym_table_row_repeat1, - [15839] = 1, - ACTIONS(1686), 2, + STATE(717), 1, + aux_sym_table_separator_repeat1, + [17451] = 1, + ACTIONS(1931), 2, sym__block_close, - sym_list_marker_upper_roman_paren, - [15844] = 2, - ACTIONS(1795), 1, - sym_table_cell_alignment, - ACTIONS(1909), 1, - sym__newline, - [15851] = 2, - ACTIONS(1911), 1, + sym_list_marker_lower_alpha_period, + [17456] = 1, + ACTIONS(1933), 2, + sym__block_close, + sym_list_marker_upper_alpha_period, + [17461] = 2, + ACTIONS(1935), 1, anon_sym_PIPE, - STATE(825), 1, - aux_sym_table_separator_repeat1, - [15858] = 1, - ACTIONS(457), 2, - sym_list_marker_dash, - sym__block_quote_continuation, - [15863] = 1, - ACTIONS(1730), 2, - sym_frontmatter_marker, - aux_sym__line_token1, - [15868] = 1, - ACTIONS(1913), 2, - sym__eof_or_newline, - sym__newline_inline, - [15873] = 1, - ACTIONS(1915), 2, - sym__eof_or_newline, - sym__close_paragraph, - [15878] = 2, - ACTIONS(1917), 1, + STATE(839), 1, + aux_sym_table_row_repeat1, + [17468] = 2, + ACTIONS(1937), 1, anon_sym_PIPE, - STATE(880), 1, + STATE(841), 1, aux_sym_table_separator_repeat1, - [15885] = 2, - ACTIONS(1919), 1, + [17475] = 2, + ACTIONS(1935), 1, anon_sym_PIPE, - STATE(860), 1, + STATE(758), 1, aux_sym_table_row_repeat1, - [15892] = 2, - ACTIONS(1921), 1, + [17482] = 2, + ACTIONS(1937), 1, anon_sym_PIPE, - STATE(880), 1, + STATE(717), 1, aux_sym_table_separator_repeat1, - [15899] = 2, - ACTIONS(1923), 1, - anon_sym_PIPE, - STATE(860), 1, - aux_sym_table_row_repeat1, - [15906] = 2, - ACTIONS(1795), 1, + [17489] = 1, + ACTIONS(1939), 2, + sym__block_close, + sym_list_marker_definition, + [17494] = 2, + ACTIONS(1823), 1, sym_table_cell_alignment, - ACTIONS(1925), 1, + ACTIONS(1941), 1, sym__newline, - [15913] = 1, - ACTIONS(1703), 2, + [17501] = 1, + ACTIONS(1108), 2, sym__block_close, - sym_list_marker_upper_roman_paren, - [15918] = 1, - ACTIONS(1686), 2, + sym__heading_continuation, + [17506] = 1, + ACTIONS(1943), 2, sym__block_close, - sym_list_marker_lower_roman_paren, - [15923] = 1, - ACTIONS(1703), 2, + sym_list_marker_lower_roman_period, + [17511] = 1, + ACTIONS(1945), 2, sym__block_close, - sym_list_marker_lower_roman_paren, - [15928] = 1, - ACTIONS(1686), 2, + sym_list_marker_upper_roman_period, + [17516] = 1, + ACTIONS(1947), 2, sym__block_close, - sym_list_marker_upper_alpha_paren, - [15933] = 1, - ACTIONS(1703), 2, + sym_list_marker_decimal_paren, + [17521] = 2, + ACTIONS(1949), 1, + anon_sym_PIPE, + STATE(846), 1, + aux_sym_table_row_repeat1, + [17528] = 2, + ACTIONS(1951), 1, + anon_sym_PIPE, + STATE(847), 1, + aux_sym_table_separator_repeat1, + [17535] = 1, + ACTIONS(776), 2, sym__block_close, - sym_list_marker_upper_alpha_paren, - [15938] = 1, - ACTIONS(1686), 2, + sym__block_quote_continuation, + [17540] = 1, + ACTIONS(1953), 2, sym__block_close, sym_list_marker_lower_alpha_paren, - [15943] = 1, - ACTIONS(1703), 2, + [17545] = 1, + ACTIONS(1955), 2, sym__block_close, - sym_list_marker_lower_alpha_paren, - [15948] = 1, - ACTIONS(457), 2, - sym__block_quote_continuation, - aux_sym__line_token1, - [15953] = 2, - ACTIONS(1795), 1, + sym_list_marker_upper_alpha_paren, + [17550] = 2, + ACTIONS(1823), 1, sym_table_cell_alignment, - ACTIONS(1927), 1, + ACTIONS(1957), 1, sym__newline, - [15960] = 2, - ACTIONS(1929), 1, - sym__id, - STATE(447), 1, - sym_class_name, - [15967] = 2, - ACTIONS(1917), 1, - anon_sym_PIPE, - STATE(837), 1, - aux_sym_table_separator_repeat1, - [15974] = 2, - ACTIONS(1923), 1, - anon_sym_PIPE, - STATE(836), 1, - aux_sym_table_row_repeat1, - [15981] = 1, - ACTIONS(1686), 2, + [17557] = 1, + ACTIONS(1959), 2, sym__block_close, - sym_list_marker_decimal_paren, - [15986] = 1, - ACTIONS(1931), 2, - sym__eof_or_newline, - sym__close_paragraph, - [15991] = 1, - ACTIONS(1703), 2, + sym_list_marker_lower_roman_paren, + [17562] = 1, + ACTIONS(1961), 2, sym__block_close, - sym_list_marker_decimal_paren, - [15996] = 2, - ACTIONS(1933), 1, + sym_list_marker_upper_roman_paren, + [17567] = 1, + ACTIONS(1963), 2, + sym__block_close, + sym_list_marker_decimal_parens, + [17572] = 1, + ACTIONS(1965), 2, + sym__block_close, + sym_list_marker_lower_alpha_parens, + [17577] = 1, + ACTIONS(1967), 2, + sym__block_close, + sym_list_marker_upper_alpha_parens, + [17582] = 1, + ACTIONS(1969), 2, + sym__block_close, + sym_list_marker_lower_roman_parens, + [17587] = 2, + ACTIONS(1971), 1, sym__eof_or_newline, - STATE(231), 1, + STATE(146), 1, sym__one_or_two_newlines, - [16003] = 1, - ACTIONS(1935), 2, + [17594] = 1, + ACTIONS(1973), 2, sym__eof_or_newline, sym__close_paragraph, - [16008] = 1, - ACTIONS(1713), 2, - sym__eof_or_newline, - sym__newline_inline, - [16013] = 1, - ACTIONS(1686), 2, - sym__block_close, - sym_list_marker_upper_roman_period, - [16018] = 1, - ACTIONS(1937), 2, + [17599] = 1, + ACTIONS(1975), 2, sym__block_close, - sym_list_marker_decimal_paren, - [16023] = 2, - ACTIONS(1939), 1, + sym_list_marker_upper_roman_parens, + [17604] = 2, + ACTIONS(1977), 1, + anon_sym_PIPE, + STATE(813), 1, + aux_sym_table_separator_repeat1, + [17611] = 2, + ACTIONS(1979), 1, anon_sym_PIPE, - STATE(860), 1, + STATE(812), 1, aux_sym_table_row_repeat1, - [16030] = 1, - ACTIONS(822), 2, - sym__block_close, - sym__block_quote_continuation, - [16035] = 1, - ACTIONS(1942), 2, - sym__block_close, - sym_list_marker_lower_alpha_paren, - [16040] = 1, - ACTIONS(826), 2, - sym__block_close, - sym__block_quote_continuation, - [16045] = 1, - ACTIONS(830), 2, - sym__block_close, - sym__block_quote_continuation, - [16050] = 1, - ACTIONS(544), 2, + [17618] = 2, + ACTIONS(1981), 1, + sym__id, + STATE(474), 1, + sym_class_name, + [17625] = 1, + ACTIONS(772), 2, sym__block_close, sym__block_quote_continuation, - [16055] = 1, - ACTIONS(1703), 2, + [17630] = 1, + ACTIONS(768), 2, sym__block_close, - sym_list_marker_upper_roman_period, - [16060] = 1, - ACTIONS(457), 2, - sym__list_item_continuation, sym__block_quote_continuation, - [16065] = 1, - ACTIONS(1686), 2, + [17635] = 2, + ACTIONS(1823), 1, + sym_table_cell_alignment, + ACTIONS(1983), 1, + sym__newline, + [17642] = 2, + ACTIONS(1832), 1, + sym__id, + STATE(1010), 1, + sym_reference_label, + [17649] = 1, + ACTIONS(1985), 2, sym__block_close, - sym_list_marker_lower_roman_period, - [16070] = 1, - ACTIONS(852), 2, + sym_list_marker_decimal_period, + [17654] = 1, + ACTIONS(1987), 2, + sym__eof_or_newline, + sym__close_paragraph, + [17659] = 1, + ACTIONS(670), 2, sym__block_close, sym__block_quote_continuation, - [16075] = 1, - ACTIONS(684), 2, + [17664] = 1, + ACTIONS(760), 2, sym__block_close, sym__block_quote_continuation, - [16080] = 1, - ACTIONS(1703), 2, + [17669] = 2, + ACTIONS(31), 1, + sym__list_marker_task_begin, + STATE(39), 1, + sym_list_marker_task, + [17676] = 2, + ACTIONS(1989), 1, + sym__eof_or_newline, + STATE(258), 1, + sym__one_or_two_newlines, + [17683] = 2, + ACTIONS(1991), 1, + sym__eof_or_newline, + STATE(237), 1, + sym__one_or_two_newlines, + [17690] = 1, + ACTIONS(1775), 2, sym__block_close, - sym_list_marker_lower_roman_period, - [16085] = 1, - ACTIONS(856), 2, + sym_list_marker_lower_alpha_period, + [17695] = 1, + ACTIONS(1724), 2, sym__block_close, - sym__block_quote_continuation, - [16090] = 1, - ACTIONS(860), 2, + sym_list_marker_lower_alpha_period, + [17700] = 1, + ACTIONS(1724), 2, sym__block_close, + sym_list_marker_decimal_period, + [17705] = 1, + ACTIONS(445), 2, + sym_list_marker_plus, sym__block_quote_continuation, - [16095] = 1, - ACTIONS(457), 2, - sym__list_marker_task_begin, + [17710] = 1, + ACTIONS(445), 2, sym__block_quote_continuation, - [16100] = 1, - ACTIONS(1686), 2, - sym__block_close, - sym_list_marker_upper_alpha_period, - [16105] = 1, - ACTIONS(846), 2, + anon_sym_PIPE, + [17715] = 1, + ACTIONS(746), 2, sym__block_close, sym__block_quote_continuation, - [16110] = 1, - ACTIONS(1703), 2, + [17720] = 2, + ACTIONS(1823), 1, + sym_table_cell_alignment, + ACTIONS(1993), 1, + sym__newline, + [17727] = 1, + ACTIONS(1995), 2, + sym__eof_or_newline, + sym__close_paragraph, + [17732] = 1, + ACTIONS(754), 2, sym__block_close, - sym_list_marker_upper_alpha_period, - [16115] = 1, - ACTIONS(1944), 2, + sym__block_quote_continuation, + [17737] = 1, + ACTIONS(676), 2, sym__block_close, - sym_list_marker_upper_alpha_paren, - [16120] = 1, - ACTIONS(1688), 2, + sym__block_quote_continuation, + [17742] = 1, + ACTIONS(692), 2, sym__block_close, - sym__heading_continuation, - [16125] = 2, - ACTIONS(1946), 1, - anon_sym_PIPE, - STATE(880), 1, - aux_sym_table_separator_repeat1, - [16132] = 2, - ACTIONS(1795), 1, - sym_table_cell_alignment, - ACTIONS(1949), 1, - sym__newline, - [16139] = 1, - ACTIONS(457), 2, - sym_list_marker_star, sym__block_quote_continuation, - [16144] = 2, - ACTIONS(1795), 1, + [17747] = 2, + ACTIONS(1823), 1, sym_table_cell_alignment, - ACTIONS(1951), 1, + ACTIONS(1997), 1, sym__newline, - [16151] = 1, - ACTIONS(1953), 2, + [17754] = 1, + ACTIONS(704), 2, sym__block_close, - sym_list_marker_decimal_parens, - [16156] = 2, - ACTIONS(1102), 1, - aux_sym__line_token1, - STATE(672), 1, - sym__line, - [16163] = 2, - ACTIONS(29), 1, - sym__list_marker_task_begin, - STATE(43), 1, - sym_list_marker_task, - [16170] = 1, - ACTIONS(820), 2, + sym__block_quote_continuation, + [17759] = 1, + ACTIONS(748), 2, sym__block_close, sym__block_quote_continuation, - [16175] = 2, - ACTIONS(1955), 1, - sym__eof_or_newline, - STATE(187), 1, - sym__one_or_two_newlines, - [16182] = 1, - ACTIONS(1686), 2, + [17764] = 1, + ACTIONS(1775), 2, sym__block_close, - sym_list_marker_lower_alpha_period, - [16187] = 1, - ACTIONS(1367), 2, + sym_list_marker_decimal_period, + [17769] = 1, + ACTIONS(716), 2, sym__block_close, sym__block_quote_continuation, - [16192] = 1, - ACTIONS(1957), 2, + [17774] = 1, + ACTIONS(724), 2, sym__block_close, - sym_list_marker_definition, - [16197] = 2, - ACTIONS(1795), 1, + sym__block_quote_continuation, + [17779] = 2, + ACTIONS(1823), 1, sym_table_cell_alignment, - ACTIONS(1959), 1, - sym__newline, - [16204] = 1, - ACTIONS(1961), 1, - sym__block_close, - [16208] = 1, - ACTIONS(1963), 1, - sym__whitespace1, - [16212] = 1, - ACTIONS(1965), 1, - sym__newline, - [16216] = 1, - ACTIONS(1967), 1, - sym__whitespace1, - [16220] = 1, - ACTIONS(1969), 1, + ACTIONS(1999), 1, sym__newline, - [16224] = 1, - ACTIONS(1971), 1, + [17786] = 1, + ACTIONS(736), 2, sym__block_close, - [16228] = 1, - ACTIONS(1973), 1, + sym__block_quote_continuation, + [17791] = 1, + ACTIONS(740), 2, sym__block_close, - [16232] = 1, - ACTIONS(1975), 1, - sym__newline, - [16236] = 1, - ACTIONS(1977), 1, - sym__newline, - [16240] = 1, - ACTIONS(1979), 1, - ts_builtin_sym_end, - [16244] = 1, - ACTIONS(1981), 1, - sym__footnote_end, - [16248] = 1, - ACTIONS(1983), 1, - sym__newline, - [16252] = 1, - ACTIONS(1985), 1, - sym__newline, - [16256] = 1, - ACTIONS(1987), 1, - sym__newline, - [16260] = 1, - ACTIONS(1989), 1, - sym__newline, - [16264] = 1, - ACTIONS(1991), 1, - sym__newline, - [16268] = 1, - ACTIONS(1157), 1, + sym__block_quote_continuation, + [17796] = 1, + ACTIONS(2001), 1, sym__block_close, - [16272] = 1, - ACTIONS(1993), 1, - anon_sym_RBRACK, - [16276] = 1, - ACTIONS(1995), 1, - sym__footnote_end, - [16280] = 1, - ACTIONS(1997), 1, + [17800] = 1, + ACTIONS(2003), 1, sym__newline, - [16284] = 1, - ACTIONS(1999), 1, - sym__whitespace1, - [16288] = 1, - ACTIONS(1142), 1, + [17804] = 1, + ACTIONS(1200), 1, sym__block_close, - [16292] = 1, - ACTIONS(2001), 1, - sym__newline, - [16296] = 1, - ACTIONS(2003), 1, - anon_sym_EQ, - [16300] = 1, + [17808] = 1, ACTIONS(2005), 1, - anon_sym_PIPE, - [16304] = 1, + sym__newline, + [17812] = 1, ACTIONS(2007), 1, sym__newline, - [16308] = 1, + [17816] = 1, ACTIONS(2009), 1, sym__block_close, - [16312] = 1, + [17820] = 1, ACTIONS(2011), 1, - sym_frontmatter_marker, - [16316] = 1, + sym__block_close, + [17824] = 1, ACTIONS(2013), 1, - sym__newline, - [16320] = 1, + sym__footnote_end, + [17828] = 1, ACTIONS(2015), 1, - anon_sym_PIPE, - [16324] = 1, + sym__newline, + [17832] = 1, ACTIONS(2017), 1, - aux_sym_value_token1, - [16328] = 1, - ACTIONS(2019), 1, sym__newline, - [16332] = 1, + [17836] = 1, + ACTIONS(2019), 1, + sym_table_cell_alignment, + [17840] = 1, ACTIONS(2021), 1, - sym__newline, - [16336] = 1, + sym__whitespace1, + [17844] = 1, ACTIONS(2023), 1, sym__newline, - [16340] = 1, + [17848] = 1, ACTIONS(2025), 1, sym__newline, - [16344] = 1, + [17852] = 1, ACTIONS(2027), 1, sym__newline, - [16348] = 1, + [17856] = 1, ACTIONS(2029), 1, sym__newline, - [16352] = 1, + [17860] = 1, ACTIONS(2031), 1, sym__newline, - [16356] = 1, + [17864] = 1, ACTIONS(2033), 1, sym__newline, - [16360] = 1, + [17868] = 1, ACTIONS(2035), 1, - sym__block_close, - [16364] = 1, + sym__newline, + [17872] = 1, + ACTIONS(902), 1, + sym_list_marker_star, + [17876] = 1, + ACTIONS(904), 1, + sym_list_marker_plus, + [17880] = 1, + ACTIONS(900), 1, + sym_list_marker_dash, + [17884] = 1, ACTIONS(2037), 1, - sym_table_cell_alignment, - [16368] = 1, + sym__newline, + [17888] = 1, ACTIONS(2039), 1, sym__newline, - [16372] = 1, + [17892] = 1, ACTIONS(2041), 1, sym__newline, - [16376] = 1, + [17896] = 1, ACTIONS(2043), 1, sym__newline, - [16380] = 1, + [17900] = 1, ACTIONS(2045), 1, - sym__newline, - [16384] = 1, - ACTIONS(2047), 1, anon_sym_PIPE, - [16388] = 1, + [17904] = 1, + ACTIONS(2047), 1, + sym_table_cell_alignment, + [17908] = 1, ACTIONS(2049), 1, - sym__whitespace, - [16392] = 1, + sym__newline, + [17912] = 1, ACTIONS(2051), 1, - sym__footnote_end, - [16396] = 1, + anon_sym_EQ, + [17916] = 1, ACTIONS(2053), 1, - sym__newline, - [16400] = 1, - ACTIONS(1118), 1, - sym__block_close, - [16404] = 1, + anon_sym_EQ, + [17920] = 1, ACTIONS(2055), 1, sym__newline, - [16408] = 1, + [17924] = 1, ACTIONS(2057), 1, - sym__newline, - [16412] = 1, + sym__footnote_end, + [17928] = 1, ACTIONS(2059), 1, - anon_sym_EQ, - [16416] = 1, + sym__block_close, + [17932] = 1, ACTIONS(2061), 1, - sym_table_cell_alignment, - [16420] = 1, + anon_sym_PIPE, + [17936] = 1, ACTIONS(2063), 1, - anon_sym_COLON, - [16424] = 1, - ACTIONS(2065), 1, + anon_sym_DQUOTE, + [17940] = 1, + ACTIONS(1823), 1, sym_table_cell_alignment, - [16428] = 1, + [17944] = 1, + ACTIONS(2065), 1, + anon_sym_RBRACK, + [17948] = 1, ACTIONS(2067), 1, - sym__newline, - [16432] = 1, + anon_sym_RBRACK, + [17952] = 1, ACTIONS(2069), 1, - sym__newline, - [16436] = 1, + sym__block_close, + [17956] = 1, ACTIONS(2071), 1, anon_sym_PIPE, - [16440] = 1, + [17960] = 1, ACTIONS(2073), 1, - sym__block_close, - [16444] = 1, + sym__newline, + [17964] = 1, ACTIONS(2075), 1, sym__newline, - [16448] = 1, + [17968] = 1, ACTIONS(2077), 1, - sym__block_close, - [16452] = 1, + sym__newline, + [17972] = 1, ACTIONS(2079), 1, sym__newline, - [16456] = 1, + [17976] = 1, ACTIONS(2081), 1, - sym__block_close, - [16460] = 1, + sym__newline, + [17980] = 1, ACTIONS(2083), 1, - sym__block_close, - [16464] = 1, + sym_link_destination, + [17984] = 1, ACTIONS(2085), 1, sym__newline, - [16468] = 1, + [17988] = 1, ACTIONS(2087), 1, - sym__whitespace, - [16472] = 1, + sym__newline, + [17992] = 1, ACTIONS(2089), 1, - anon_sym_RBRACK, - [16476] = 1, + sym__newline, + [17996] = 1, ACTIONS(2091), 1, - sym__list_item_continuation, - [16480] = 1, + sym__footnote_end, + [18000] = 1, ACTIONS(2093), 1, - sym__newline, - [16484] = 1, + sym__block_close, + [18004] = 1, ACTIONS(2095), 1, - sym__newline, - [16488] = 1, + sym__block_close, + [18008] = 1, ACTIONS(2097), 1, sym__newline, - [16492] = 1, + [18012] = 1, ACTIONS(2099), 1, - sym__newline, - [16496] = 1, + sym_table_cell_alignment, + [18016] = 1, ACTIONS(2101), 1, sym__newline, - [16500] = 1, + [18020] = 1, ACTIONS(2103), 1, - sym__block_close, - [16504] = 1, + sym__newline, + [18024] = 1, ACTIONS(2105), 1, - sym_table_cell_alignment, - [16508] = 1, + sym__newline, + [18028] = 1, ACTIONS(2107), 1, sym__newline, - [16512] = 1, + [18032] = 1, + ACTIONS(1358), 1, + sym__newline, + [18036] = 1, + ACTIONS(1188), 1, + sym__block_close, + [18040] = 1, ACTIONS(2109), 1, sym__newline, - [16516] = 1, + [18044] = 1, ACTIONS(2111), 1, - sym__newline, - [16520] = 1, + sym_language, + [18048] = 1, ACTIONS(2113), 1, sym__newline, - [16524] = 1, + [18052] = 1, ACTIONS(2115), 1, - sym_language, - [16528] = 1, - ACTIONS(2117), 1, sym__newline, - [16532] = 1, + [18056] = 1, + ACTIONS(2117), 1, + sym__block_close, + [18060] = 1, ACTIONS(2119), 1, - sym__newline, - [16536] = 1, - ACTIONS(2121), 1, sym__block_close, - [16540] = 1, + [18064] = 1, + ACTIONS(2121), 1, + sym__whitespace, + [18068] = 1, ACTIONS(2123), 1, - sym__block_close, - [16544] = 1, + sym__whitespace, + [18072] = 1, ACTIONS(2125), 1, - sym__newline, - [16548] = 1, + sym__whitespace, + [18076] = 1, ACTIONS(2127), 1, - sym__newline, - [16552] = 1, + sym__whitespace1, + [18080] = 1, ACTIONS(2129), 1, sym__newline, - [16556] = 1, + [18084] = 1, ACTIONS(2131), 1, - sym__whitespace, - [16560] = 1, - ACTIONS(1351), 1, - sym__newline, - [16564] = 1, + sym__list_item_continuation, + [18088] = 1, ACTIONS(2133), 1, - sym__footnote_end, - [16568] = 1, + sym__newline, + [18092] = 1, ACTIONS(2135), 1, - sym_link_destination, - [16572] = 1, + sym__block_close, + [18096] = 1, ACTIONS(2137), 1, - sym__newline, - [16576] = 1, - ACTIONS(2139), 1, anon_sym_RBRACK, - [16580] = 1, - ACTIONS(1108), 1, - sym__block_close, - [16584] = 1, - ACTIONS(1795), 1, + [18100] = 1, + ACTIONS(2139), 1, sym_table_cell_alignment, - [16588] = 1, + [18104] = 1, ACTIONS(2141), 1, - anon_sym_RBRACK, - [16592] = 1, + sym__block_close, + [18108] = 1, ACTIONS(2143), 1, - sym_table_cell_alignment, - [16596] = 1, + sym_frontmatter_marker, + [18112] = 1, ACTIONS(2145), 1, - anon_sym_DQUOTE, - [16600] = 1, + sym__newline, + [18116] = 1, ACTIONS(2147), 1, sym__newline, - [16604] = 1, + [18120] = 1, ACTIONS(2149), 1, sym__newline, - [16608] = 1, + [18124] = 1, ACTIONS(2151), 1, - sym__newline, - [16612] = 1, + anon_sym_RBRACK, + [18128] = 1, ACTIONS(2153), 1, - sym__whitespace, - [16616] = 1, + anon_sym_COLON, + [18132] = 1, ACTIONS(2155), 1, sym__newline, - [16620] = 1, + [18136] = 1, ACTIONS(2157), 1, sym__newline, - [16624] = 1, + [18140] = 1, ACTIONS(2159), 1, sym__newline, - [16628] = 1, + [18144] = 1, ACTIONS(2161), 1, - anon_sym_RBRACK_COLON, - [16632] = 1, + sym__newline, + [18148] = 1, ACTIONS(2163), 1, sym__newline, - [16636] = 1, + [18152] = 1, ACTIONS(2165), 1, - sym__block_close, - [16640] = 1, + sym__whitespace, + [18156] = 1, ACTIONS(2167), 1, sym__newline, - [16644] = 1, + [18160] = 1, ACTIONS(2169), 1, - sym__whitespace, - [16648] = 1, - ACTIONS(2171), 1, sym__newline, - [16652] = 1, + [18164] = 1, + ACTIONS(2171), 1, + sym__eof_or_newline, + [18168] = 1, ACTIONS(2173), 1, - anon_sym_PIPE, - [16656] = 1, - ACTIONS(2175), 1, sym__newline, - [16660] = 1, + [18172] = 1, + ACTIONS(2175), 1, + sym__footnote_end, + [18176] = 1, ACTIONS(2177), 1, - sym__eof_or_newline, - [16664] = 1, + sym__block_close, + [18180] = 1, ACTIONS(2179), 1, sym__newline, - [16668] = 1, + [18184] = 1, ACTIONS(2181), 1, - anon_sym_RBRACK_COLON, - [16672] = 1, - ACTIONS(2183), 1, sym__newline, - [16676] = 1, + [18188] = 1, + ACTIONS(2183), 1, + sym__block_close, + [18192] = 1, ACTIONS(2185), 1, - sym_table_cell_alignment, - [16680] = 1, + sym__newline, + [18196] = 1, ACTIONS(2187), 1, - sym__block_close, - [16684] = 1, + sym__newline, + [18200] = 1, ACTIONS(2189), 1, sym__newline, - [16688] = 1, + [18204] = 1, ACTIONS(2191), 1, sym__newline, - [16692] = 1, + [18208] = 1, ACTIONS(2193), 1, sym__newline, - [16696] = 1, + [18212] = 1, ACTIONS(2195), 1, - sym__newline, - [16700] = 1, + sym_table_cell_alignment, + [18216] = 1, + ACTIONS(1172), 1, + sym__block_close, + [18220] = 1, ACTIONS(2197), 1, - sym__newline, - [16704] = 1, + anon_sym_RBRACK_COLON, + [18224] = 1, ACTIONS(2199), 1, - sym__newline, - [16708] = 1, + anon_sym_RBRACK_COLON, + [18228] = 1, ACTIONS(2201), 1, sym__newline, - [16712] = 1, + [18232] = 1, ACTIONS(2203), 1, - sym__whitespace, - [16716] = 1, - ACTIONS(2205), 1, sym__newline, - [16720] = 1, + [18236] = 1, + ACTIONS(2205), 1, + aux_sym_value_token1, + [18240] = 1, ACTIONS(2207), 1, - sym__newline, - [16724] = 1, + sym__whitespace, + [18244] = 1, ACTIONS(2209), 1, - sym__block_close, - [16728] = 1, + sym__newline, + [18248] = 1, ACTIONS(2211), 1, - sym__whitespace, - [16732] = 1, + sym__block_close, + [18252] = 1, ACTIONS(2213), 1, - sym__whitespace, - [16736] = 1, + sym__newline, + [18256] = 1, ACTIONS(2215), 1, sym__block_close, - [16740] = 1, + [18260] = 1, ACTIONS(2217), 1, - anon_sym_RBRACK_COLON, - [16744] = 1, + sym__newline, + [18264] = 1, ACTIONS(2219), 1, sym__newline, - [16748] = 1, + [18268] = 1, ACTIONS(2221), 1, - anon_sym_PIPE, - [16752] = 1, + sym__newline, + [18272] = 1, ACTIONS(2223), 1, sym_table_cell_alignment, - [16756] = 1, + [18276] = 1, ACTIONS(2225), 1, - sym_link_destination, - [16760] = 1, + sym__newline, + [18280] = 1, ACTIONS(2227), 1, - sym__whitespace, - [16764] = 1, + sym__newline, + [18284] = 1, ACTIONS(2229), 1, sym__newline, - [16768] = 1, + [18288] = 1, ACTIONS(2231), 1, - anon_sym_RBRACK_COLON, - [16772] = 1, + sym__newline, + [18292] = 1, ACTIONS(2233), 1, sym__newline, - [16776] = 1, + [18296] = 1, ACTIONS(2235), 1, - anon_sym_PIPE, - [16780] = 1, + sym__newline, + [18300] = 1, ACTIONS(2237), 1, - sym_table_cell_alignment, - [16784] = 1, + sym_frontmatter_marker, + [18304] = 1, ACTIONS(2239), 1, - sym_link_destination, - [16788] = 1, + sym__newline, + [18308] = 1, ACTIONS(2241), 1, - sym__whitespace, - [16792] = 1, + sym__newline, + [18312] = 1, ACTIONS(2243), 1, sym__footnote_end, - [16796] = 1, + [18316] = 1, ACTIONS(2245), 1, - anon_sym_RBRACK_COLON, - [16800] = 1, + sym__block_close, + [18320] = 1, ACTIONS(2247), 1, - sym__newline, - [16804] = 1, + sym__block_close, + [18324] = 1, ACTIONS(2249), 1, - anon_sym_PIPE, - [16808] = 1, + sym__whitespace, + [18328] = 1, ACTIONS(2251), 1, - sym_table_cell_alignment, - [16812] = 1, + sym__whitespace, + [18332] = 1, ACTIONS(2253), 1, - sym_link_destination, - [16816] = 1, + sym__newline, + [18336] = 1, ACTIONS(2255), 1, - sym__whitespace, - [16820] = 1, - ACTIONS(2257), 1, sym__newline, - [16824] = 1, + [18340] = 1, + ACTIONS(2257), 1, + anon_sym_PIPE, + [18344] = 1, ACTIONS(2259), 1, - anon_sym_RBRACK_COLON, - [16828] = 1, - ACTIONS(1104), 1, - sym__block_close, - [16832] = 1, + sym_table_cell_alignment, + [18348] = 1, ACTIONS(2261), 1, - anon_sym_PIPE, - [16836] = 1, + anon_sym_RBRACK_COLON, + [18352] = 1, ACTIONS(2263), 1, - sym_table_cell_alignment, - [16840] = 1, - ACTIONS(2265), 1, sym_link_destination, - [16844] = 1, + [18356] = 1, + ACTIONS(2265), 1, + sym__whitespace, + [18360] = 1, + ACTIONS(1184), 1, + sym__block_close, + [18364] = 1, ACTIONS(2267), 1, sym__newline, - [16848] = 1, + [18368] = 1, ACTIONS(2269), 1, - sym__newline, - [16852] = 1, - ACTIONS(2271), 1, anon_sym_PIPE, - [16856] = 1, + [18372] = 1, + ACTIONS(2271), 1, + sym_table_cell_alignment, + [18376] = 1, ACTIONS(2273), 1, - sym__whitespace1, - [16860] = 1, + anon_sym_RBRACK_COLON, + [18380] = 1, ACTIONS(2275), 1, - sym__newline, - [16864] = 1, + sym_link_destination, + [18384] = 1, ACTIONS(2277), 1, + sym__whitespace, + [18388] = 1, + ACTIONS(1164), 1, sym__block_close, - [16868] = 1, + [18392] = 1, ACTIONS(2279), 1, - anon_sym_PIPE, - [16872] = 1, + sym__newline, + [18396] = 1, ACTIONS(2281), 1, - sym__whitespace1, - [16876] = 1, + anon_sym_PIPE, + [18400] = 1, ACTIONS(2283), 1, - sym_frontmatter_marker, - [16880] = 1, + sym_table_cell_alignment, + [18404] = 1, ACTIONS(2285), 1, - sym__eof_or_newline, - [16884] = 1, + anon_sym_RBRACK_COLON, + [18408] = 1, ACTIONS(2287), 1, - anon_sym_PIPE, - [16888] = 1, + sym_link_destination, + [18412] = 1, ACTIONS(2289), 1, - sym__whitespace1, - [16892] = 1, + sym__whitespace, + [18416] = 1, ACTIONS(2291), 1, - sym__block_close, - [16896] = 1, + sym__newline, + [18420] = 1, ACTIONS(2293), 1, - sym__block_close, - [16900] = 1, + sym__whitespace1, + [18424] = 1, ACTIONS(2295), 1, anon_sym_PIPE, - [16904] = 1, + [18428] = 1, ACTIONS(2297), 1, - sym__whitespace1, - [16908] = 1, + sym_table_cell_alignment, + [18432] = 1, ACTIONS(2299), 1, - anon_sym_COLON, - [16912] = 1, + anon_sym_RBRACK_COLON, + [18436] = 1, ACTIONS(2301), 1, - anon_sym_COLON, - [16916] = 1, + sym_link_destination, + [18440] = 1, ACTIONS(2303), 1, - anon_sym_COLON, - [16920] = 1, + sym__whitespace1, + [18444] = 1, ACTIONS(2305), 1, - anon_sym_COLON, - [16924] = 1, + anon_sym_PIPE, + [18448] = 1, ACTIONS(2307), 1, - anon_sym_RBRACK, - [16928] = 1, + sym__newline, + [18452] = 1, ACTIONS(2309), 1, - anon_sym_RBRACK, - [16932] = 1, + sym__whitespace1, + [18456] = 1, ACTIONS(2311), 1, - anon_sym_RBRACK, - [16936] = 1, + sym__newline, + [18460] = 1, ACTIONS(2313), 1, - anon_sym_RBRACK, - [16940] = 1, + anon_sym_PIPE, + [18464] = 1, ACTIONS(2315), 1, + sym__block_close, + [18468] = 1, + ACTIONS(2317), 1, sym__whitespace1, - [16944] = 1, - ACTIONS(911), 1, - sym_list_marker_star, - [16948] = 1, - ACTIONS(913), 1, - sym_list_marker_plus, - [16952] = 1, - ACTIONS(909), 1, - sym_list_marker_dash, + [18472] = 1, + ACTIONS(2319), 1, + sym__footnote_mark_begin, + [18476] = 1, + ACTIONS(2321), 1, + anon_sym_PIPE, + [18480] = 1, + ACTIONS(2323), 1, + sym__newline, + [18484] = 1, + ACTIONS(2325), 1, + sym__whitespace1, + [18488] = 1, + ACTIONS(2327), 1, + ts_builtin_sym_end, + [18492] = 1, + ACTIONS(2329), 1, + anon_sym_PIPE, + [18496] = 1, + ACTIONS(2331), 1, + sym__eof_or_newline, + [18500] = 1, + ACTIONS(2333), 1, + sym__whitespace1, + [18504] = 1, + ACTIONS(2335), 1, + sym__footnote_mark_begin, + [18508] = 1, + ACTIONS(2337), 1, + anon_sym_COLON, + [18512] = 1, + ACTIONS(2339), 1, + sym__footnote_mark_begin, + [18516] = 1, + ACTIONS(2341), 1, + anon_sym_COLON, + [18520] = 1, + ACTIONS(2343), 1, + sym__footnote_mark_begin, + [18524] = 1, + ACTIONS(2345), 1, + anon_sym_COLON, + [18528] = 1, + ACTIONS(2347), 1, + sym__footnote_mark_begin, + [18532] = 1, + ACTIONS(2349), 1, + anon_sym_COLON, + [18536] = 1, + ACTIONS(2351), 1, + anon_sym_RBRACK, + [18540] = 1, + ACTIONS(2353), 1, + anon_sym_RBRACK, + [18544] = 1, + ACTIONS(2355), 1, + anon_sym_RBRACK, + [18548] = 1, + ACTIONS(2357), 1, + anon_sym_RBRACK, + [18552] = 1, + ACTIONS(2359), 1, + sym__block_close, + [18556] = 1, + ACTIONS(2361), 1, + anon_sym_PIPE, + [18560] = 1, + ACTIONS(2363), 1, + sym__whitespace, + [18564] = 1, + ACTIONS(2365), 1, + anon_sym_PIPE, }; static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(64)] = 0, - [SMALL_STATE(65)] = 66, - [SMALL_STATE(66)] = 132, - [SMALL_STATE(67)] = 198, - [SMALL_STATE(68)] = 257, - [SMALL_STATE(69)] = 316, - [SMALL_STATE(70)] = 375, - [SMALL_STATE(71)] = 429, - [SMALL_STATE(72)] = 483, - [SMALL_STATE(73)] = 537, - [SMALL_STATE(74)] = 583, - [SMALL_STATE(75)] = 629, - [SMALL_STATE(76)] = 675, - [SMALL_STATE(77)] = 718, - [SMALL_STATE(78)] = 761, - [SMALL_STATE(79)] = 802, - [SMALL_STATE(80)] = 845, - [SMALL_STATE(81)] = 888, - [SMALL_STATE(82)] = 931, - [SMALL_STATE(83)] = 974, - [SMALL_STATE(84)] = 1015, - [SMALL_STATE(85)] = 1056, - [SMALL_STATE(86)] = 1099, - [SMALL_STATE(87)] = 1142, - [SMALL_STATE(88)] = 1185, - [SMALL_STATE(89)] = 1228, - [SMALL_STATE(90)] = 1269, - [SMALL_STATE(91)] = 1312, - [SMALL_STATE(92)] = 1353, - [SMALL_STATE(93)] = 1394, - [SMALL_STATE(94)] = 1437, - [SMALL_STATE(95)] = 1478, - [SMALL_STATE(96)] = 1521, - [SMALL_STATE(97)] = 1562, - [SMALL_STATE(98)] = 1605, - [SMALL_STATE(99)] = 1648, - [SMALL_STATE(100)] = 1691, - [SMALL_STATE(101)] = 1734, - [SMALL_STATE(102)] = 1775, - [SMALL_STATE(103)] = 1816, - [SMALL_STATE(104)] = 1857, - [SMALL_STATE(105)] = 1898, - [SMALL_STATE(106)] = 1941, - [SMALL_STATE(107)] = 1984, - [SMALL_STATE(108)] = 2027, - [SMALL_STATE(109)] = 2068, - [SMALL_STATE(110)] = 2109, - [SMALL_STATE(111)] = 2152, - [SMALL_STATE(112)] = 2193, - [SMALL_STATE(113)] = 2236, - [SMALL_STATE(114)] = 2277, - [SMALL_STATE(115)] = 2320, - [SMALL_STATE(116)] = 2363, - [SMALL_STATE(117)] = 2406, - [SMALL_STATE(118)] = 2449, - [SMALL_STATE(119)] = 2492, - [SMALL_STATE(120)] = 2533, - [SMALL_STATE(121)] = 2574, - [SMALL_STATE(122)] = 2615, - [SMALL_STATE(123)] = 2658, - [SMALL_STATE(124)] = 2701, - [SMALL_STATE(125)] = 2744, - [SMALL_STATE(126)] = 2787, - [SMALL_STATE(127)] = 2828, - [SMALL_STATE(128)] = 2869, - [SMALL_STATE(129)] = 2912, - [SMALL_STATE(130)] = 2952, - [SMALL_STATE(131)] = 2992, - [SMALL_STATE(132)] = 3032, - [SMALL_STATE(133)] = 3072, - [SMALL_STATE(134)] = 3112, - [SMALL_STATE(135)] = 3152, - [SMALL_STATE(136)] = 3192, - [SMALL_STATE(137)] = 3232, - [SMALL_STATE(138)] = 3272, - [SMALL_STATE(139)] = 3312, - [SMALL_STATE(140)] = 3352, - [SMALL_STATE(141)] = 3392, - [SMALL_STATE(142)] = 3432, - [SMALL_STATE(143)] = 3472, - [SMALL_STATE(144)] = 3512, - [SMALL_STATE(145)] = 3552, - [SMALL_STATE(146)] = 3592, - [SMALL_STATE(147)] = 3632, - [SMALL_STATE(148)] = 3672, - [SMALL_STATE(149)] = 3712, - [SMALL_STATE(150)] = 3752, - [SMALL_STATE(151)] = 3792, - [SMALL_STATE(152)] = 3832, - [SMALL_STATE(153)] = 3872, - [SMALL_STATE(154)] = 3912, - [SMALL_STATE(155)] = 3952, - [SMALL_STATE(156)] = 3992, - [SMALL_STATE(157)] = 4032, - [SMALL_STATE(158)] = 4072, - [SMALL_STATE(159)] = 4112, - [SMALL_STATE(160)] = 4152, - [SMALL_STATE(161)] = 4192, - [SMALL_STATE(162)] = 4232, - [SMALL_STATE(163)] = 4272, - [SMALL_STATE(164)] = 4312, - [SMALL_STATE(165)] = 4352, - [SMALL_STATE(166)] = 4392, - [SMALL_STATE(167)] = 4432, - [SMALL_STATE(168)] = 4472, - [SMALL_STATE(169)] = 4512, - [SMALL_STATE(170)] = 4552, - [SMALL_STATE(171)] = 4592, - [SMALL_STATE(172)] = 4632, - [SMALL_STATE(173)] = 4672, - [SMALL_STATE(174)] = 4712, - [SMALL_STATE(175)] = 4752, - [SMALL_STATE(176)] = 4792, - [SMALL_STATE(177)] = 4832, - [SMALL_STATE(178)] = 4872, - [SMALL_STATE(179)] = 4912, - [SMALL_STATE(180)] = 4952, - [SMALL_STATE(181)] = 4992, - [SMALL_STATE(182)] = 5032, - [SMALL_STATE(183)] = 5072, - [SMALL_STATE(184)] = 5112, - [SMALL_STATE(185)] = 5152, - [SMALL_STATE(186)] = 5192, - [SMALL_STATE(187)] = 5232, - [SMALL_STATE(188)] = 5272, - [SMALL_STATE(189)] = 5312, - [SMALL_STATE(190)] = 5352, - [SMALL_STATE(191)] = 5392, - [SMALL_STATE(192)] = 5432, - [SMALL_STATE(193)] = 5472, - [SMALL_STATE(194)] = 5512, - [SMALL_STATE(195)] = 5552, - [SMALL_STATE(196)] = 5592, - [SMALL_STATE(197)] = 5632, - [SMALL_STATE(198)] = 5672, - [SMALL_STATE(199)] = 5712, - [SMALL_STATE(200)] = 5752, - [SMALL_STATE(201)] = 5792, - [SMALL_STATE(202)] = 5832, - [SMALL_STATE(203)] = 5872, - [SMALL_STATE(204)] = 5912, - [SMALL_STATE(205)] = 5952, - [SMALL_STATE(206)] = 5992, - [SMALL_STATE(207)] = 6032, - [SMALL_STATE(208)] = 6072, - [SMALL_STATE(209)] = 6112, - [SMALL_STATE(210)] = 6152, - [SMALL_STATE(211)] = 6192, - [SMALL_STATE(212)] = 6232, - [SMALL_STATE(213)] = 6272, - [SMALL_STATE(214)] = 6312, - [SMALL_STATE(215)] = 6352, - [SMALL_STATE(216)] = 6392, - [SMALL_STATE(217)] = 6432, - [SMALL_STATE(218)] = 6472, - [SMALL_STATE(219)] = 6512, - [SMALL_STATE(220)] = 6552, - [SMALL_STATE(221)] = 6592, - [SMALL_STATE(222)] = 6632, - [SMALL_STATE(223)] = 6672, - [SMALL_STATE(224)] = 6712, - [SMALL_STATE(225)] = 6752, - [SMALL_STATE(226)] = 6792, - [SMALL_STATE(227)] = 6832, - [SMALL_STATE(228)] = 6872, - [SMALL_STATE(229)] = 6912, - [SMALL_STATE(230)] = 6952, - [SMALL_STATE(231)] = 6992, - [SMALL_STATE(232)] = 7032, - [SMALL_STATE(233)] = 7072, - [SMALL_STATE(234)] = 7112, - [SMALL_STATE(235)] = 7152, - [SMALL_STATE(236)] = 7192, - [SMALL_STATE(237)] = 7232, - [SMALL_STATE(238)] = 7272, - [SMALL_STATE(239)] = 7312, - [SMALL_STATE(240)] = 7352, - [SMALL_STATE(241)] = 7392, - [SMALL_STATE(242)] = 7432, - [SMALL_STATE(243)] = 7472, - [SMALL_STATE(244)] = 7512, - [SMALL_STATE(245)] = 7552, - [SMALL_STATE(246)] = 7592, - [SMALL_STATE(247)] = 7632, - [SMALL_STATE(248)] = 7672, - [SMALL_STATE(249)] = 7712, - [SMALL_STATE(250)] = 7752, - [SMALL_STATE(251)] = 7792, - [SMALL_STATE(252)] = 7832, - [SMALL_STATE(253)] = 7872, - [SMALL_STATE(254)] = 7912, - [SMALL_STATE(255)] = 7952, - [SMALL_STATE(256)] = 7992, - [SMALL_STATE(257)] = 8032, - [SMALL_STATE(258)] = 8072, - [SMALL_STATE(259)] = 8112, - [SMALL_STATE(260)] = 8152, - [SMALL_STATE(261)] = 8192, - [SMALL_STATE(262)] = 8232, - [SMALL_STATE(263)] = 8272, - [SMALL_STATE(264)] = 8312, - [SMALL_STATE(265)] = 8352, - [SMALL_STATE(266)] = 8392, - [SMALL_STATE(267)] = 8431, - [SMALL_STATE(268)] = 8474, - [SMALL_STATE(269)] = 8512, - [SMALL_STATE(270)] = 8553, - [SMALL_STATE(271)] = 8594, - [SMALL_STATE(272)] = 8635, - [SMALL_STATE(273)] = 8676, - [SMALL_STATE(274)] = 8717, - [SMALL_STATE(275)] = 8752, - [SMALL_STATE(276)] = 8787, - [SMALL_STATE(277)] = 8822, - [SMALL_STATE(278)] = 8857, - [SMALL_STATE(279)] = 8892, - [SMALL_STATE(280)] = 8927, - [SMALL_STATE(281)] = 8962, - [SMALL_STATE(282)] = 8997, - [SMALL_STATE(283)] = 9032, - [SMALL_STATE(284)] = 9067, - [SMALL_STATE(285)] = 9099, - [SMALL_STATE(286)] = 9131, - [SMALL_STATE(287)] = 9163, - [SMALL_STATE(288)] = 9195, - [SMALL_STATE(289)] = 9227, - [SMALL_STATE(290)] = 9261, - [SMALL_STATE(291)] = 9288, - [SMALL_STATE(292)] = 9321, - [SMALL_STATE(293)] = 9342, - [SMALL_STATE(294)] = 9369, - [SMALL_STATE(295)] = 9394, - [SMALL_STATE(296)] = 9421, - [SMALL_STATE(297)] = 9448, - [SMALL_STATE(298)] = 9475, - [SMALL_STATE(299)] = 9500, - [SMALL_STATE(300)] = 9527, - [SMALL_STATE(301)] = 9554, - [SMALL_STATE(302)] = 9579, - [SMALL_STATE(303)] = 9604, - [SMALL_STATE(304)] = 9629, - [SMALL_STATE(305)] = 9654, - [SMALL_STATE(306)] = 9679, - [SMALL_STATE(307)] = 9706, - [SMALL_STATE(308)] = 9727, - [SMALL_STATE(309)] = 9752, - [SMALL_STATE(310)] = 9777, - [SMALL_STATE(311)] = 9802, - [SMALL_STATE(312)] = 9824, - [SMALL_STATE(313)] = 9852, - [SMALL_STATE(314)] = 9880, - [SMALL_STATE(315)] = 9908, - [SMALL_STATE(316)] = 9934, - [SMALL_STATE(317)] = 9950, - [SMALL_STATE(318)] = 9978, - [SMALL_STATE(319)] = 10002, - [SMALL_STATE(320)] = 10022, - [SMALL_STATE(321)] = 10044, - [SMALL_STATE(322)] = 10072, - [SMALL_STATE(323)] = 10094, - [SMALL_STATE(324)] = 10114, - [SMALL_STATE(325)] = 10136, - [SMALL_STATE(326)] = 10164, - [SMALL_STATE(327)] = 10186, - [SMALL_STATE(328)] = 10207, - [SMALL_STATE(329)] = 10228, - [SMALL_STATE(330)] = 10249, - [SMALL_STATE(331)] = 10270, - [SMALL_STATE(332)] = 10291, - [SMALL_STATE(333)] = 10312, - [SMALL_STATE(334)] = 10333, - [SMALL_STATE(335)] = 10354, - [SMALL_STATE(336)] = 10375, - [SMALL_STATE(337)] = 10396, - [SMALL_STATE(338)] = 10417, - [SMALL_STATE(339)] = 10438, - [SMALL_STATE(340)] = 10459, - [SMALL_STATE(341)] = 10480, - [SMALL_STATE(342)] = 10495, - [SMALL_STATE(343)] = 10516, - [SMALL_STATE(344)] = 10537, - [SMALL_STATE(345)] = 10558, - [SMALL_STATE(346)] = 10579, - [SMALL_STATE(347)] = 10600, - [SMALL_STATE(348)] = 10621, - [SMALL_STATE(349)] = 10642, - [SMALL_STATE(350)] = 10663, - [SMALL_STATE(351)] = 10684, - [SMALL_STATE(352)] = 10705, - [SMALL_STATE(353)] = 10726, - [SMALL_STATE(354)] = 10747, - [SMALL_STATE(355)] = 10768, - [SMALL_STATE(356)] = 10789, - [SMALL_STATE(357)] = 10810, - [SMALL_STATE(358)] = 10831, - [SMALL_STATE(359)] = 10852, - [SMALL_STATE(360)] = 10873, - [SMALL_STATE(361)] = 10894, - [SMALL_STATE(362)] = 10915, - [SMALL_STATE(363)] = 10931, - [SMALL_STATE(364)] = 10953, - [SMALL_STATE(365)] = 10971, - [SMALL_STATE(366)] = 10989, - [SMALL_STATE(367)] = 11005, - [SMALL_STATE(368)] = 11028, - [SMALL_STATE(369)] = 11051, - [SMALL_STATE(370)] = 11066, - [SMALL_STATE(371)] = 11089, - [SMALL_STATE(372)] = 11112, - [SMALL_STATE(373)] = 11135, - [SMALL_STATE(374)] = 11158, - [SMALL_STATE(375)] = 11181, - [SMALL_STATE(376)] = 11196, - [SMALL_STATE(377)] = 11217, - [SMALL_STATE(378)] = 11232, - [SMALL_STATE(379)] = 11255, - [SMALL_STATE(380)] = 11278, - [SMALL_STATE(381)] = 11293, - [SMALL_STATE(382)] = 11316, - [SMALL_STATE(383)] = 11339, - [SMALL_STATE(384)] = 11362, - [SMALL_STATE(385)] = 11385, - [SMALL_STATE(386)] = 11400, - [SMALL_STATE(387)] = 11423, - [SMALL_STATE(388)] = 11446, - [SMALL_STATE(389)] = 11461, - [SMALL_STATE(390)] = 11484, - [SMALL_STATE(391)] = 11507, - [SMALL_STATE(392)] = 11530, - [SMALL_STATE(393)] = 11553, - [SMALL_STATE(394)] = 11576, - [SMALL_STATE(395)] = 11599, - [SMALL_STATE(396)] = 11619, - [SMALL_STATE(397)] = 11639, - [SMALL_STATE(398)] = 11659, - [SMALL_STATE(399)] = 11679, - [SMALL_STATE(400)] = 11699, - [SMALL_STATE(401)] = 11719, - [SMALL_STATE(402)] = 11739, - [SMALL_STATE(403)] = 11759, - [SMALL_STATE(404)] = 11773, - [SMALL_STATE(405)] = 11793, - [SMALL_STATE(406)] = 11805, - [SMALL_STATE(407)] = 11819, - [SMALL_STATE(408)] = 11839, - [SMALL_STATE(409)] = 11859, - [SMALL_STATE(410)] = 11879, - [SMALL_STATE(411)] = 11893, - [SMALL_STATE(412)] = 11905, - [SMALL_STATE(413)] = 11925, - [SMALL_STATE(414)] = 11945, - [SMALL_STATE(415)] = 11957, - [SMALL_STATE(416)] = 11977, - [SMALL_STATE(417)] = 11997, - [SMALL_STATE(418)] = 12017, - [SMALL_STATE(419)] = 12037, - [SMALL_STATE(420)] = 12057, - [SMALL_STATE(421)] = 12077, - [SMALL_STATE(422)] = 12096, - [SMALL_STATE(423)] = 12105, - [SMALL_STATE(424)] = 12124, - [SMALL_STATE(425)] = 12143, - [SMALL_STATE(426)] = 12162, - [SMALL_STATE(427)] = 12181, - [SMALL_STATE(428)] = 12200, - [SMALL_STATE(429)] = 12219, - [SMALL_STATE(430)] = 12238, - [SMALL_STATE(431)] = 12257, - [SMALL_STATE(432)] = 12276, - [SMALL_STATE(433)] = 12295, - [SMALL_STATE(434)] = 12314, - [SMALL_STATE(435)] = 12333, - [SMALL_STATE(436)] = 12352, - [SMALL_STATE(437)] = 12371, - [SMALL_STATE(438)] = 12390, - [SMALL_STATE(439)] = 12409, - [SMALL_STATE(440)] = 12428, - [SMALL_STATE(441)] = 12447, - [SMALL_STATE(442)] = 12466, - [SMALL_STATE(443)] = 12485, - [SMALL_STATE(444)] = 12504, - [SMALL_STATE(445)] = 12513, - [SMALL_STATE(446)] = 12532, - [SMALL_STATE(447)] = 12551, - [SMALL_STATE(448)] = 12560, - [SMALL_STATE(449)] = 12579, - [SMALL_STATE(450)] = 12598, - [SMALL_STATE(451)] = 12607, - [SMALL_STATE(452)] = 12616, - [SMALL_STATE(453)] = 12635, - [SMALL_STATE(454)] = 12644, - [SMALL_STATE(455)] = 12653, - [SMALL_STATE(456)] = 12672, - [SMALL_STATE(457)] = 12691, - [SMALL_STATE(458)] = 12710, - [SMALL_STATE(459)] = 12729, - [SMALL_STATE(460)] = 12748, - [SMALL_STATE(461)] = 12767, - [SMALL_STATE(462)] = 12786, - [SMALL_STATE(463)] = 12795, - [SMALL_STATE(464)] = 12804, - [SMALL_STATE(465)] = 12823, - [SMALL_STATE(466)] = 12834, - [SMALL_STATE(467)] = 12853, - [SMALL_STATE(468)] = 12872, - [SMALL_STATE(469)] = 12881, - [SMALL_STATE(470)] = 12890, - [SMALL_STATE(471)] = 12899, - [SMALL_STATE(472)] = 12918, - [SMALL_STATE(473)] = 12927, - [SMALL_STATE(474)] = 12936, - [SMALL_STATE(475)] = 12945, - [SMALL_STATE(476)] = 12964, - [SMALL_STATE(477)] = 12983, - [SMALL_STATE(478)] = 13002, - [SMALL_STATE(479)] = 13010, - [SMALL_STATE(480)] = 13018, - [SMALL_STATE(481)] = 13026, - [SMALL_STATE(482)] = 13034, - [SMALL_STATE(483)] = 13046, - [SMALL_STATE(484)] = 13054, - [SMALL_STATE(485)] = 13062, - [SMALL_STATE(486)] = 13076, - [SMALL_STATE(487)] = 13090, - [SMALL_STATE(488)] = 13104, - [SMALL_STATE(489)] = 13112, - [SMALL_STATE(490)] = 13123, - [SMALL_STATE(491)] = 13134, - [SMALL_STATE(492)] = 13145, - [SMALL_STATE(493)] = 13156, - [SMALL_STATE(494)] = 13167, - [SMALL_STATE(495)] = 13178, - [SMALL_STATE(496)] = 13189, - [SMALL_STATE(497)] = 13200, - [SMALL_STATE(498)] = 13211, - [SMALL_STATE(499)] = 13222, - [SMALL_STATE(500)] = 13233, - [SMALL_STATE(501)] = 13244, - [SMALL_STATE(502)] = 13255, - [SMALL_STATE(503)] = 13266, - [SMALL_STATE(504)] = 13277, - [SMALL_STATE(505)] = 13288, - [SMALL_STATE(506)] = 13299, - [SMALL_STATE(507)] = 13312, - [SMALL_STATE(508)] = 13323, - [SMALL_STATE(509)] = 13336, - [SMALL_STATE(510)] = 13349, - [SMALL_STATE(511)] = 13362, - [SMALL_STATE(512)] = 13373, - [SMALL_STATE(513)] = 13384, - [SMALL_STATE(514)] = 13395, - [SMALL_STATE(515)] = 13406, - [SMALL_STATE(516)] = 13417, - [SMALL_STATE(517)] = 13428, - [SMALL_STATE(518)] = 13439, - [SMALL_STATE(519)] = 13450, - [SMALL_STATE(520)] = 13461, - [SMALL_STATE(521)] = 13472, - [SMALL_STATE(522)] = 13483, - [SMALL_STATE(523)] = 13494, - [SMALL_STATE(524)] = 13505, - [SMALL_STATE(525)] = 13516, - [SMALL_STATE(526)] = 13527, - [SMALL_STATE(527)] = 13538, - [SMALL_STATE(528)] = 13549, - [SMALL_STATE(529)] = 13560, - [SMALL_STATE(530)] = 13571, - [SMALL_STATE(531)] = 13582, - [SMALL_STATE(532)] = 13593, - [SMALL_STATE(533)] = 13604, - [SMALL_STATE(534)] = 13615, - [SMALL_STATE(535)] = 13626, - [SMALL_STATE(536)] = 13637, - [SMALL_STATE(537)] = 13648, - [SMALL_STATE(538)] = 13659, - [SMALL_STATE(539)] = 13670, - [SMALL_STATE(540)] = 13681, - [SMALL_STATE(541)] = 13692, - [SMALL_STATE(542)] = 13703, - [SMALL_STATE(543)] = 13714, - [SMALL_STATE(544)] = 13725, - [SMALL_STATE(545)] = 13736, - [SMALL_STATE(546)] = 13747, - [SMALL_STATE(547)] = 13758, - [SMALL_STATE(548)] = 13769, - [SMALL_STATE(549)] = 13780, - [SMALL_STATE(550)] = 13791, - [SMALL_STATE(551)] = 13802, - [SMALL_STATE(552)] = 13813, - [SMALL_STATE(553)] = 13824, - [SMALL_STATE(554)] = 13835, - [SMALL_STATE(555)] = 13846, - [SMALL_STATE(556)] = 13857, - [SMALL_STATE(557)] = 13868, - [SMALL_STATE(558)] = 13879, - [SMALL_STATE(559)] = 13890, - [SMALL_STATE(560)] = 13903, - [SMALL_STATE(561)] = 13914, - [SMALL_STATE(562)] = 13925, - [SMALL_STATE(563)] = 13936, - [SMALL_STATE(564)] = 13947, - [SMALL_STATE(565)] = 13958, - [SMALL_STATE(566)] = 13969, - [SMALL_STATE(567)] = 13980, - [SMALL_STATE(568)] = 13991, - [SMALL_STATE(569)] = 14002, - [SMALL_STATE(570)] = 14013, - [SMALL_STATE(571)] = 14024, - [SMALL_STATE(572)] = 14035, - [SMALL_STATE(573)] = 14046, - [SMALL_STATE(574)] = 14057, - [SMALL_STATE(575)] = 14068, - [SMALL_STATE(576)] = 14079, - [SMALL_STATE(577)] = 14090, - [SMALL_STATE(578)] = 14101, - [SMALL_STATE(579)] = 14112, - [SMALL_STATE(580)] = 14123, - [SMALL_STATE(581)] = 14132, - [SMALL_STATE(582)] = 14143, - [SMALL_STATE(583)] = 14154, - [SMALL_STATE(584)] = 14165, - [SMALL_STATE(585)] = 14176, - [SMALL_STATE(586)] = 14187, - [SMALL_STATE(587)] = 14196, - [SMALL_STATE(588)] = 14207, - [SMALL_STATE(589)] = 14216, - [SMALL_STATE(590)] = 14225, - [SMALL_STATE(591)] = 14236, - [SMALL_STATE(592)] = 14245, - [SMALL_STATE(593)] = 14256, - [SMALL_STATE(594)] = 14267, - [SMALL_STATE(595)] = 14276, - [SMALL_STATE(596)] = 14285, - [SMALL_STATE(597)] = 14296, - [SMALL_STATE(598)] = 14307, - [SMALL_STATE(599)] = 14318, - [SMALL_STATE(600)] = 14327, - [SMALL_STATE(601)] = 14336, - [SMALL_STATE(602)] = 14347, - [SMALL_STATE(603)] = 14358, - [SMALL_STATE(604)] = 14369, - [SMALL_STATE(605)] = 14378, - [SMALL_STATE(606)] = 14389, - [SMALL_STATE(607)] = 14398, - [SMALL_STATE(608)] = 14409, - [SMALL_STATE(609)] = 14420, - [SMALL_STATE(610)] = 14426, - [SMALL_STATE(611)] = 14434, - [SMALL_STATE(612)] = 14440, - [SMALL_STATE(613)] = 14446, - [SMALL_STATE(614)] = 14452, - [SMALL_STATE(615)] = 14458, - [SMALL_STATE(616)] = 14464, - [SMALL_STATE(617)] = 14470, - [SMALL_STATE(618)] = 14476, - [SMALL_STATE(619)] = 14482, - [SMALL_STATE(620)] = 14488, - [SMALL_STATE(621)] = 14494, - [SMALL_STATE(622)] = 14500, - [SMALL_STATE(623)] = 14506, - [SMALL_STATE(624)] = 14512, - [SMALL_STATE(625)] = 14518, - [SMALL_STATE(626)] = 14524, - [SMALL_STATE(627)] = 14530, - [SMALL_STATE(628)] = 14536, - [SMALL_STATE(629)] = 14542, - [SMALL_STATE(630)] = 14548, - [SMALL_STATE(631)] = 14554, - [SMALL_STATE(632)] = 14560, - [SMALL_STATE(633)] = 14566, - [SMALL_STATE(634)] = 14572, - [SMALL_STATE(635)] = 14578, - [SMALL_STATE(636)] = 14584, - [SMALL_STATE(637)] = 14590, - [SMALL_STATE(638)] = 14600, - [SMALL_STATE(639)] = 14606, - [SMALL_STATE(640)] = 14612, - [SMALL_STATE(641)] = 14622, - [SMALL_STATE(642)] = 14632, - [SMALL_STATE(643)] = 14642, - [SMALL_STATE(644)] = 14648, - [SMALL_STATE(645)] = 14656, - [SMALL_STATE(646)] = 14664, - [SMALL_STATE(647)] = 14674, - [SMALL_STATE(648)] = 14684, - [SMALL_STATE(649)] = 14690, - [SMALL_STATE(650)] = 14698, - [SMALL_STATE(651)] = 14708, - [SMALL_STATE(652)] = 14718, - [SMALL_STATE(653)] = 14728, - [SMALL_STATE(654)] = 14738, - [SMALL_STATE(655)] = 14748, - [SMALL_STATE(656)] = 14754, - [SMALL_STATE(657)] = 14760, - [SMALL_STATE(658)] = 14766, - [SMALL_STATE(659)] = 14772, - [SMALL_STATE(660)] = 14778, - [SMALL_STATE(661)] = 14784, - [SMALL_STATE(662)] = 14790, - [SMALL_STATE(663)] = 14798, - [SMALL_STATE(664)] = 14804, - [SMALL_STATE(665)] = 14810, - [SMALL_STATE(666)] = 14820, - [SMALL_STATE(667)] = 14830, - [SMALL_STATE(668)] = 14836, - [SMALL_STATE(669)] = 14846, - [SMALL_STATE(670)] = 14854, - [SMALL_STATE(671)] = 14860, - [SMALL_STATE(672)] = 14870, - [SMALL_STATE(673)] = 14876, - [SMALL_STATE(674)] = 14886, - [SMALL_STATE(675)] = 14892, - [SMALL_STATE(676)] = 14898, - [SMALL_STATE(677)] = 14904, - [SMALL_STATE(678)] = 14912, - [SMALL_STATE(679)] = 14922, - [SMALL_STATE(680)] = 14932, - [SMALL_STATE(681)] = 14940, - [SMALL_STATE(682)] = 14948, - [SMALL_STATE(683)] = 14954, - [SMALL_STATE(684)] = 14960, - [SMALL_STATE(685)] = 14966, - [SMALL_STATE(686)] = 14972, - [SMALL_STATE(687)] = 14978, - [SMALL_STATE(688)] = 14984, - [SMALL_STATE(689)] = 14990, - [SMALL_STATE(690)] = 14996, - [SMALL_STATE(691)] = 15002, - [SMALL_STATE(692)] = 15008, - [SMALL_STATE(693)] = 15014, - [SMALL_STATE(694)] = 15020, - [SMALL_STATE(695)] = 15026, - [SMALL_STATE(696)] = 15036, - [SMALL_STATE(697)] = 15042, - [SMALL_STATE(698)] = 15052, - [SMALL_STATE(699)] = 15062, - [SMALL_STATE(700)] = 15068, - [SMALL_STATE(701)] = 15076, - [SMALL_STATE(702)] = 15084, - [SMALL_STATE(703)] = 15094, - [SMALL_STATE(704)] = 15104, - [SMALL_STATE(705)] = 15110, - [SMALL_STATE(706)] = 15116, - [SMALL_STATE(707)] = 15122, - [SMALL_STATE(708)] = 15130, - [SMALL_STATE(709)] = 15138, - [SMALL_STATE(710)] = 15143, - [SMALL_STATE(711)] = 15150, - [SMALL_STATE(712)] = 15155, - [SMALL_STATE(713)] = 15160, - [SMALL_STATE(714)] = 15167, - [SMALL_STATE(715)] = 15172, - [SMALL_STATE(716)] = 15177, - [SMALL_STATE(717)] = 15182, - [SMALL_STATE(718)] = 15189, - [SMALL_STATE(719)] = 15194, - [SMALL_STATE(720)] = 15201, - [SMALL_STATE(721)] = 15206, - [SMALL_STATE(722)] = 15211, - [SMALL_STATE(723)] = 15218, - [SMALL_STATE(724)] = 15225, - [SMALL_STATE(725)] = 15230, - [SMALL_STATE(726)] = 15237, - [SMALL_STATE(727)] = 15242, - [SMALL_STATE(728)] = 15247, - [SMALL_STATE(729)] = 15252, - [SMALL_STATE(730)] = 15259, - [SMALL_STATE(731)] = 15264, - [SMALL_STATE(732)] = 15269, - [SMALL_STATE(733)] = 15274, - [SMALL_STATE(734)] = 15281, - [SMALL_STATE(735)] = 15288, - [SMALL_STATE(736)] = 15293, - [SMALL_STATE(737)] = 15300, - [SMALL_STATE(738)] = 15307, - [SMALL_STATE(739)] = 15314, - [SMALL_STATE(740)] = 15321, - [SMALL_STATE(741)] = 15328, - [SMALL_STATE(742)] = 15333, - [SMALL_STATE(743)] = 15338, - [SMALL_STATE(744)] = 15343, - [SMALL_STATE(745)] = 15350, - [SMALL_STATE(746)] = 15355, - [SMALL_STATE(747)] = 15360, - [SMALL_STATE(748)] = 15367, - [SMALL_STATE(749)] = 15374, - [SMALL_STATE(750)] = 15381, - [SMALL_STATE(751)] = 15386, - [SMALL_STATE(752)] = 15391, - [SMALL_STATE(753)] = 15396, - [SMALL_STATE(754)] = 15403, - [SMALL_STATE(755)] = 15408, - [SMALL_STATE(756)] = 15413, - [SMALL_STATE(757)] = 15418, - [SMALL_STATE(758)] = 15425, - [SMALL_STATE(759)] = 15430, - [SMALL_STATE(760)] = 15435, - [SMALL_STATE(761)] = 15440, - [SMALL_STATE(762)] = 15447, - [SMALL_STATE(763)] = 15452, - [SMALL_STATE(764)] = 15457, - [SMALL_STATE(765)] = 15462, - [SMALL_STATE(766)] = 15467, - [SMALL_STATE(767)] = 15474, - [SMALL_STATE(768)] = 15481, - [SMALL_STATE(769)] = 15488, - [SMALL_STATE(770)] = 15493, - [SMALL_STATE(771)] = 15500, - [SMALL_STATE(772)] = 15507, - [SMALL_STATE(773)] = 15514, - [SMALL_STATE(774)] = 15521, - [SMALL_STATE(775)] = 15528, - [SMALL_STATE(776)] = 15535, - [SMALL_STATE(777)] = 15540, - [SMALL_STATE(778)] = 15545, - [SMALL_STATE(779)] = 15552, - [SMALL_STATE(780)] = 15559, - [SMALL_STATE(781)] = 15564, - [SMALL_STATE(782)] = 15569, - [SMALL_STATE(783)] = 15574, - [SMALL_STATE(784)] = 15581, - [SMALL_STATE(785)] = 15588, - [SMALL_STATE(786)] = 15593, - [SMALL_STATE(787)] = 15600, - [SMALL_STATE(788)] = 15605, - [SMALL_STATE(789)] = 15612, - [SMALL_STATE(790)] = 15619, - [SMALL_STATE(791)] = 15626, - [SMALL_STATE(792)] = 15633, - [SMALL_STATE(793)] = 15638, - [SMALL_STATE(794)] = 15645, - [SMALL_STATE(795)] = 15652, - [SMALL_STATE(796)] = 15659, - [SMALL_STATE(797)] = 15664, - [SMALL_STATE(798)] = 15669, - [SMALL_STATE(799)] = 15676, - [SMALL_STATE(800)] = 15683, - [SMALL_STATE(801)] = 15688, - [SMALL_STATE(802)] = 15693, - [SMALL_STATE(803)] = 15700, - [SMALL_STATE(804)] = 15705, - [SMALL_STATE(805)] = 15710, - [SMALL_STATE(806)] = 15717, - [SMALL_STATE(807)] = 15722, - [SMALL_STATE(808)] = 15727, - [SMALL_STATE(809)] = 15732, - [SMALL_STATE(810)] = 15737, - [SMALL_STATE(811)] = 15742, - [SMALL_STATE(812)] = 15747, - [SMALL_STATE(813)] = 15752, - [SMALL_STATE(814)] = 15757, - [SMALL_STATE(815)] = 15762, - [SMALL_STATE(816)] = 15767, - [SMALL_STATE(817)] = 15772, - [SMALL_STATE(818)] = 15777, - [SMALL_STATE(819)] = 15782, - [SMALL_STATE(820)] = 15787, - [SMALL_STATE(821)] = 15792, - [SMALL_STATE(822)] = 15797, - [SMALL_STATE(823)] = 15804, - [SMALL_STATE(824)] = 15811, - [SMALL_STATE(825)] = 15818, - [SMALL_STATE(826)] = 15825, - [SMALL_STATE(827)] = 15832, - [SMALL_STATE(828)] = 15839, - [SMALL_STATE(829)] = 15844, - [SMALL_STATE(830)] = 15851, - [SMALL_STATE(831)] = 15858, - [SMALL_STATE(832)] = 15863, - [SMALL_STATE(833)] = 15868, - [SMALL_STATE(834)] = 15873, - [SMALL_STATE(835)] = 15878, - [SMALL_STATE(836)] = 15885, - [SMALL_STATE(837)] = 15892, - [SMALL_STATE(838)] = 15899, - [SMALL_STATE(839)] = 15906, - [SMALL_STATE(840)] = 15913, - [SMALL_STATE(841)] = 15918, - [SMALL_STATE(842)] = 15923, - [SMALL_STATE(843)] = 15928, - [SMALL_STATE(844)] = 15933, - [SMALL_STATE(845)] = 15938, - [SMALL_STATE(846)] = 15943, - [SMALL_STATE(847)] = 15948, - [SMALL_STATE(848)] = 15953, - [SMALL_STATE(849)] = 15960, - [SMALL_STATE(850)] = 15967, - [SMALL_STATE(851)] = 15974, - [SMALL_STATE(852)] = 15981, - [SMALL_STATE(853)] = 15986, - [SMALL_STATE(854)] = 15991, - [SMALL_STATE(855)] = 15996, - [SMALL_STATE(856)] = 16003, - [SMALL_STATE(857)] = 16008, - [SMALL_STATE(858)] = 16013, - [SMALL_STATE(859)] = 16018, - [SMALL_STATE(860)] = 16023, - [SMALL_STATE(861)] = 16030, - [SMALL_STATE(862)] = 16035, - [SMALL_STATE(863)] = 16040, - [SMALL_STATE(864)] = 16045, - [SMALL_STATE(865)] = 16050, - [SMALL_STATE(866)] = 16055, - [SMALL_STATE(867)] = 16060, - [SMALL_STATE(868)] = 16065, - [SMALL_STATE(869)] = 16070, - [SMALL_STATE(870)] = 16075, - [SMALL_STATE(871)] = 16080, - [SMALL_STATE(872)] = 16085, - [SMALL_STATE(873)] = 16090, - [SMALL_STATE(874)] = 16095, - [SMALL_STATE(875)] = 16100, - [SMALL_STATE(876)] = 16105, - [SMALL_STATE(877)] = 16110, - [SMALL_STATE(878)] = 16115, - [SMALL_STATE(879)] = 16120, - [SMALL_STATE(880)] = 16125, - [SMALL_STATE(881)] = 16132, - [SMALL_STATE(882)] = 16139, - [SMALL_STATE(883)] = 16144, - [SMALL_STATE(884)] = 16151, - [SMALL_STATE(885)] = 16156, - [SMALL_STATE(886)] = 16163, - [SMALL_STATE(887)] = 16170, - [SMALL_STATE(888)] = 16175, - [SMALL_STATE(889)] = 16182, - [SMALL_STATE(890)] = 16187, - [SMALL_STATE(891)] = 16192, - [SMALL_STATE(892)] = 16197, - [SMALL_STATE(893)] = 16204, - [SMALL_STATE(894)] = 16208, - [SMALL_STATE(895)] = 16212, - [SMALL_STATE(896)] = 16216, - [SMALL_STATE(897)] = 16220, - [SMALL_STATE(898)] = 16224, - [SMALL_STATE(899)] = 16228, - [SMALL_STATE(900)] = 16232, - [SMALL_STATE(901)] = 16236, - [SMALL_STATE(902)] = 16240, - [SMALL_STATE(903)] = 16244, - [SMALL_STATE(904)] = 16248, - [SMALL_STATE(905)] = 16252, - [SMALL_STATE(906)] = 16256, - [SMALL_STATE(907)] = 16260, - [SMALL_STATE(908)] = 16264, - [SMALL_STATE(909)] = 16268, - [SMALL_STATE(910)] = 16272, - [SMALL_STATE(911)] = 16276, - [SMALL_STATE(912)] = 16280, - [SMALL_STATE(913)] = 16284, - [SMALL_STATE(914)] = 16288, - [SMALL_STATE(915)] = 16292, - [SMALL_STATE(916)] = 16296, - [SMALL_STATE(917)] = 16300, - [SMALL_STATE(918)] = 16304, - [SMALL_STATE(919)] = 16308, - [SMALL_STATE(920)] = 16312, - [SMALL_STATE(921)] = 16316, - [SMALL_STATE(922)] = 16320, - [SMALL_STATE(923)] = 16324, - [SMALL_STATE(924)] = 16328, - [SMALL_STATE(925)] = 16332, - [SMALL_STATE(926)] = 16336, - [SMALL_STATE(927)] = 16340, - [SMALL_STATE(928)] = 16344, - [SMALL_STATE(929)] = 16348, - [SMALL_STATE(930)] = 16352, - [SMALL_STATE(931)] = 16356, - [SMALL_STATE(932)] = 16360, - [SMALL_STATE(933)] = 16364, - [SMALL_STATE(934)] = 16368, - [SMALL_STATE(935)] = 16372, - [SMALL_STATE(936)] = 16376, - [SMALL_STATE(937)] = 16380, - [SMALL_STATE(938)] = 16384, - [SMALL_STATE(939)] = 16388, - [SMALL_STATE(940)] = 16392, - [SMALL_STATE(941)] = 16396, - [SMALL_STATE(942)] = 16400, - [SMALL_STATE(943)] = 16404, - [SMALL_STATE(944)] = 16408, - [SMALL_STATE(945)] = 16412, - [SMALL_STATE(946)] = 16416, - [SMALL_STATE(947)] = 16420, - [SMALL_STATE(948)] = 16424, - [SMALL_STATE(949)] = 16428, - [SMALL_STATE(950)] = 16432, - [SMALL_STATE(951)] = 16436, - [SMALL_STATE(952)] = 16440, - [SMALL_STATE(953)] = 16444, - [SMALL_STATE(954)] = 16448, - [SMALL_STATE(955)] = 16452, - [SMALL_STATE(956)] = 16456, - [SMALL_STATE(957)] = 16460, - [SMALL_STATE(958)] = 16464, - [SMALL_STATE(959)] = 16468, - [SMALL_STATE(960)] = 16472, - [SMALL_STATE(961)] = 16476, - [SMALL_STATE(962)] = 16480, - [SMALL_STATE(963)] = 16484, - [SMALL_STATE(964)] = 16488, - [SMALL_STATE(965)] = 16492, - [SMALL_STATE(966)] = 16496, - [SMALL_STATE(967)] = 16500, - [SMALL_STATE(968)] = 16504, - [SMALL_STATE(969)] = 16508, - [SMALL_STATE(970)] = 16512, - [SMALL_STATE(971)] = 16516, - [SMALL_STATE(972)] = 16520, - [SMALL_STATE(973)] = 16524, - [SMALL_STATE(974)] = 16528, - [SMALL_STATE(975)] = 16532, - [SMALL_STATE(976)] = 16536, - [SMALL_STATE(977)] = 16540, - [SMALL_STATE(978)] = 16544, - [SMALL_STATE(979)] = 16548, - [SMALL_STATE(980)] = 16552, - [SMALL_STATE(981)] = 16556, - [SMALL_STATE(982)] = 16560, - [SMALL_STATE(983)] = 16564, - [SMALL_STATE(984)] = 16568, - [SMALL_STATE(985)] = 16572, - [SMALL_STATE(986)] = 16576, - [SMALL_STATE(987)] = 16580, - [SMALL_STATE(988)] = 16584, - [SMALL_STATE(989)] = 16588, - [SMALL_STATE(990)] = 16592, - [SMALL_STATE(991)] = 16596, - [SMALL_STATE(992)] = 16600, - [SMALL_STATE(993)] = 16604, - [SMALL_STATE(994)] = 16608, - [SMALL_STATE(995)] = 16612, - [SMALL_STATE(996)] = 16616, - [SMALL_STATE(997)] = 16620, - [SMALL_STATE(998)] = 16624, - [SMALL_STATE(999)] = 16628, - [SMALL_STATE(1000)] = 16632, - [SMALL_STATE(1001)] = 16636, - [SMALL_STATE(1002)] = 16640, - [SMALL_STATE(1003)] = 16644, - [SMALL_STATE(1004)] = 16648, - [SMALL_STATE(1005)] = 16652, - [SMALL_STATE(1006)] = 16656, - [SMALL_STATE(1007)] = 16660, - [SMALL_STATE(1008)] = 16664, - [SMALL_STATE(1009)] = 16668, - [SMALL_STATE(1010)] = 16672, - [SMALL_STATE(1011)] = 16676, - [SMALL_STATE(1012)] = 16680, - [SMALL_STATE(1013)] = 16684, - [SMALL_STATE(1014)] = 16688, - [SMALL_STATE(1015)] = 16692, - [SMALL_STATE(1016)] = 16696, - [SMALL_STATE(1017)] = 16700, - [SMALL_STATE(1018)] = 16704, - [SMALL_STATE(1019)] = 16708, - [SMALL_STATE(1020)] = 16712, - [SMALL_STATE(1021)] = 16716, - [SMALL_STATE(1022)] = 16720, - [SMALL_STATE(1023)] = 16724, - [SMALL_STATE(1024)] = 16728, - [SMALL_STATE(1025)] = 16732, - [SMALL_STATE(1026)] = 16736, - [SMALL_STATE(1027)] = 16740, - [SMALL_STATE(1028)] = 16744, - [SMALL_STATE(1029)] = 16748, - [SMALL_STATE(1030)] = 16752, - [SMALL_STATE(1031)] = 16756, - [SMALL_STATE(1032)] = 16760, - [SMALL_STATE(1033)] = 16764, - [SMALL_STATE(1034)] = 16768, - [SMALL_STATE(1035)] = 16772, - [SMALL_STATE(1036)] = 16776, - [SMALL_STATE(1037)] = 16780, - [SMALL_STATE(1038)] = 16784, - [SMALL_STATE(1039)] = 16788, - [SMALL_STATE(1040)] = 16792, - [SMALL_STATE(1041)] = 16796, - [SMALL_STATE(1042)] = 16800, - [SMALL_STATE(1043)] = 16804, - [SMALL_STATE(1044)] = 16808, - [SMALL_STATE(1045)] = 16812, - [SMALL_STATE(1046)] = 16816, - [SMALL_STATE(1047)] = 16820, - [SMALL_STATE(1048)] = 16824, - [SMALL_STATE(1049)] = 16828, - [SMALL_STATE(1050)] = 16832, - [SMALL_STATE(1051)] = 16836, - [SMALL_STATE(1052)] = 16840, - [SMALL_STATE(1053)] = 16844, - [SMALL_STATE(1054)] = 16848, - [SMALL_STATE(1055)] = 16852, - [SMALL_STATE(1056)] = 16856, - [SMALL_STATE(1057)] = 16860, - [SMALL_STATE(1058)] = 16864, - [SMALL_STATE(1059)] = 16868, - [SMALL_STATE(1060)] = 16872, - [SMALL_STATE(1061)] = 16876, - [SMALL_STATE(1062)] = 16880, - [SMALL_STATE(1063)] = 16884, - [SMALL_STATE(1064)] = 16888, - [SMALL_STATE(1065)] = 16892, - [SMALL_STATE(1066)] = 16896, - [SMALL_STATE(1067)] = 16900, - [SMALL_STATE(1068)] = 16904, - [SMALL_STATE(1069)] = 16908, - [SMALL_STATE(1070)] = 16912, - [SMALL_STATE(1071)] = 16916, - [SMALL_STATE(1072)] = 16920, - [SMALL_STATE(1073)] = 16924, - [SMALL_STATE(1074)] = 16928, - [SMALL_STATE(1075)] = 16932, - [SMALL_STATE(1076)] = 16936, - [SMALL_STATE(1077)] = 16940, - [SMALL_STATE(1078)] = 16944, - [SMALL_STATE(1079)] = 16948, - [SMALL_STATE(1080)] = 16952, + [SMALL_STATE(65)] = 70, + [SMALL_STATE(66)] = 140, + [SMALL_STATE(67)] = 210, + [SMALL_STATE(68)] = 273, + [SMALL_STATE(69)] = 336, + [SMALL_STATE(70)] = 399, + [SMALL_STATE(71)] = 457, + [SMALL_STATE(72)] = 515, + [SMALL_STATE(73)] = 573, + [SMALL_STATE(74)] = 623, + [SMALL_STATE(75)] = 673, + [SMALL_STATE(76)] = 723, + [SMALL_STATE(77)] = 770, + [SMALL_STATE(78)] = 817, + [SMALL_STATE(79)] = 862, + [SMALL_STATE(80)] = 909, + [SMALL_STATE(81)] = 956, + [SMALL_STATE(82)] = 1003, + [SMALL_STATE(83)] = 1050, + [SMALL_STATE(84)] = 1095, + [SMALL_STATE(85)] = 1140, + [SMALL_STATE(86)] = 1187, + [SMALL_STATE(87)] = 1232, + [SMALL_STATE(88)] = 1277, + [SMALL_STATE(89)] = 1322, + [SMALL_STATE(90)] = 1369, + [SMALL_STATE(91)] = 1416, + [SMALL_STATE(92)] = 1461, + [SMALL_STATE(93)] = 1508, + [SMALL_STATE(94)] = 1555, + [SMALL_STATE(95)] = 1600, + [SMALL_STATE(96)] = 1647, + [SMALL_STATE(97)] = 1694, + [SMALL_STATE(98)] = 1739, + [SMALL_STATE(99)] = 1786, + [SMALL_STATE(100)] = 1833, + [SMALL_STATE(101)] = 1880, + [SMALL_STATE(102)] = 1927, + [SMALL_STATE(103)] = 1972, + [SMALL_STATE(104)] = 2017, + [SMALL_STATE(105)] = 2062, + [SMALL_STATE(106)] = 2109, + [SMALL_STATE(107)] = 2156, + [SMALL_STATE(108)] = 2201, + [SMALL_STATE(109)] = 2248, + [SMALL_STATE(110)] = 2295, + [SMALL_STATE(111)] = 2340, + [SMALL_STATE(112)] = 2385, + [SMALL_STATE(113)] = 2432, + [SMALL_STATE(114)] = 2479, + [SMALL_STATE(115)] = 2524, + [SMALL_STATE(116)] = 2571, + [SMALL_STATE(117)] = 2618, + [SMALL_STATE(118)] = 2663, + [SMALL_STATE(119)] = 2710, + [SMALL_STATE(120)] = 2757, + [SMALL_STATE(121)] = 2804, + [SMALL_STATE(122)] = 2849, + [SMALL_STATE(123)] = 2894, + [SMALL_STATE(124)] = 2939, + [SMALL_STATE(125)] = 2986, + [SMALL_STATE(126)] = 3033, + [SMALL_STATE(127)] = 3080, + [SMALL_STATE(128)] = 3127, + [SMALL_STATE(129)] = 3172, + [SMALL_STATE(130)] = 3216, + [SMALL_STATE(131)] = 3260, + [SMALL_STATE(132)] = 3304, + [SMALL_STATE(133)] = 3348, + [SMALL_STATE(134)] = 3392, + [SMALL_STATE(135)] = 3436, + [SMALL_STATE(136)] = 3480, + [SMALL_STATE(137)] = 3524, + [SMALL_STATE(138)] = 3568, + [SMALL_STATE(139)] = 3612, + [SMALL_STATE(140)] = 3656, + [SMALL_STATE(141)] = 3700, + [SMALL_STATE(142)] = 3744, + [SMALL_STATE(143)] = 3788, + [SMALL_STATE(144)] = 3832, + [SMALL_STATE(145)] = 3876, + [SMALL_STATE(146)] = 3920, + [SMALL_STATE(147)] = 3964, + [SMALL_STATE(148)] = 4008, + [SMALL_STATE(149)] = 4052, + [SMALL_STATE(150)] = 4096, + [SMALL_STATE(151)] = 4140, + [SMALL_STATE(152)] = 4184, + [SMALL_STATE(153)] = 4228, + [SMALL_STATE(154)] = 4272, + [SMALL_STATE(155)] = 4316, + [SMALL_STATE(156)] = 4360, + [SMALL_STATE(157)] = 4404, + [SMALL_STATE(158)] = 4448, + [SMALL_STATE(159)] = 4492, + [SMALL_STATE(160)] = 4536, + [SMALL_STATE(161)] = 4580, + [SMALL_STATE(162)] = 4624, + [SMALL_STATE(163)] = 4668, + [SMALL_STATE(164)] = 4712, + [SMALL_STATE(165)] = 4756, + [SMALL_STATE(166)] = 4800, + [SMALL_STATE(167)] = 4844, + [SMALL_STATE(168)] = 4888, + [SMALL_STATE(169)] = 4932, + [SMALL_STATE(170)] = 4976, + [SMALL_STATE(171)] = 5020, + [SMALL_STATE(172)] = 5064, + [SMALL_STATE(173)] = 5108, + [SMALL_STATE(174)] = 5152, + [SMALL_STATE(175)] = 5196, + [SMALL_STATE(176)] = 5240, + [SMALL_STATE(177)] = 5284, + [SMALL_STATE(178)] = 5328, + [SMALL_STATE(179)] = 5372, + [SMALL_STATE(180)] = 5416, + [SMALL_STATE(181)] = 5460, + [SMALL_STATE(182)] = 5504, + [SMALL_STATE(183)] = 5548, + [SMALL_STATE(184)] = 5592, + [SMALL_STATE(185)] = 5636, + [SMALL_STATE(186)] = 5680, + [SMALL_STATE(187)] = 5724, + [SMALL_STATE(188)] = 5768, + [SMALL_STATE(189)] = 5812, + [SMALL_STATE(190)] = 5856, + [SMALL_STATE(191)] = 5900, + [SMALL_STATE(192)] = 5944, + [SMALL_STATE(193)] = 5988, + [SMALL_STATE(194)] = 6032, + [SMALL_STATE(195)] = 6076, + [SMALL_STATE(196)] = 6120, + [SMALL_STATE(197)] = 6164, + [SMALL_STATE(198)] = 6208, + [SMALL_STATE(199)] = 6252, + [SMALL_STATE(200)] = 6296, + [SMALL_STATE(201)] = 6340, + [SMALL_STATE(202)] = 6384, + [SMALL_STATE(203)] = 6428, + [SMALL_STATE(204)] = 6472, + [SMALL_STATE(205)] = 6516, + [SMALL_STATE(206)] = 6560, + [SMALL_STATE(207)] = 6604, + [SMALL_STATE(208)] = 6648, + [SMALL_STATE(209)] = 6692, + [SMALL_STATE(210)] = 6736, + [SMALL_STATE(211)] = 6780, + [SMALL_STATE(212)] = 6824, + [SMALL_STATE(213)] = 6868, + [SMALL_STATE(214)] = 6912, + [SMALL_STATE(215)] = 6956, + [SMALL_STATE(216)] = 7000, + [SMALL_STATE(217)] = 7044, + [SMALL_STATE(218)] = 7088, + [SMALL_STATE(219)] = 7132, + [SMALL_STATE(220)] = 7176, + [SMALL_STATE(221)] = 7220, + [SMALL_STATE(222)] = 7264, + [SMALL_STATE(223)] = 7308, + [SMALL_STATE(224)] = 7352, + [SMALL_STATE(225)] = 7396, + [SMALL_STATE(226)] = 7440, + [SMALL_STATE(227)] = 7484, + [SMALL_STATE(228)] = 7528, + [SMALL_STATE(229)] = 7572, + [SMALL_STATE(230)] = 7616, + [SMALL_STATE(231)] = 7660, + [SMALL_STATE(232)] = 7704, + [SMALL_STATE(233)] = 7748, + [SMALL_STATE(234)] = 7792, + [SMALL_STATE(235)] = 7836, + [SMALL_STATE(236)] = 7880, + [SMALL_STATE(237)] = 7924, + [SMALL_STATE(238)] = 7968, + [SMALL_STATE(239)] = 8012, + [SMALL_STATE(240)] = 8056, + [SMALL_STATE(241)] = 8100, + [SMALL_STATE(242)] = 8144, + [SMALL_STATE(243)] = 8188, + [SMALL_STATE(244)] = 8232, + [SMALL_STATE(245)] = 8276, + [SMALL_STATE(246)] = 8320, + [SMALL_STATE(247)] = 8364, + [SMALL_STATE(248)] = 8408, + [SMALL_STATE(249)] = 8452, + [SMALL_STATE(250)] = 8496, + [SMALL_STATE(251)] = 8540, + [SMALL_STATE(252)] = 8584, + [SMALL_STATE(253)] = 8628, + [SMALL_STATE(254)] = 8672, + [SMALL_STATE(255)] = 8716, + [SMALL_STATE(256)] = 8760, + [SMALL_STATE(257)] = 8804, + [SMALL_STATE(258)] = 8848, + [SMALL_STATE(259)] = 8892, + [SMALL_STATE(260)] = 8936, + [SMALL_STATE(261)] = 8980, + [SMALL_STATE(262)] = 9024, + [SMALL_STATE(263)] = 9068, + [SMALL_STATE(264)] = 9112, + [SMALL_STATE(265)] = 9156, + [SMALL_STATE(266)] = 9200, + [SMALL_STATE(267)] = 9247, + [SMALL_STATE(268)] = 9290, + [SMALL_STATE(269)] = 9332, + [SMALL_STATE(270)] = 9376, + [SMALL_STATE(271)] = 9420, + [SMALL_STATE(272)] = 9464, + [SMALL_STATE(273)] = 9508, + [SMALL_STATE(274)] = 9552, + [SMALL_STATE(275)] = 9594, + [SMALL_STATE(276)] = 9636, + [SMALL_STATE(277)] = 9678, + [SMALL_STATE(278)] = 9720, + [SMALL_STATE(279)] = 9762, + [SMALL_STATE(280)] = 9804, + [SMALL_STATE(281)] = 9846, + [SMALL_STATE(282)] = 9888, + [SMALL_STATE(283)] = 9930, + [SMALL_STATE(284)] = 9972, + [SMALL_STATE(285)] = 10011, + [SMALL_STATE(286)] = 10050, + [SMALL_STATE(287)] = 10089, + [SMALL_STATE(288)] = 10128, + [SMALL_STATE(289)] = 10167, + [SMALL_STATE(290)] = 10199, + [SMALL_STATE(291)] = 10233, + [SMALL_STATE(292)] = 10259, + [SMALL_STATE(293)] = 10293, + [SMALL_STATE(294)] = 10327, + [SMALL_STATE(295)] = 10361, + [SMALL_STATE(296)] = 10395, + [SMALL_STATE(297)] = 10427, + [SMALL_STATE(298)] = 10459, + [SMALL_STATE(299)] = 10491, + [SMALL_STATE(300)] = 10523, + [SMALL_STATE(301)] = 10555, + [SMALL_STATE(302)] = 10587, + [SMALL_STATE(303)] = 10613, + [SMALL_STATE(304)] = 10645, + [SMALL_STATE(305)] = 10679, + [SMALL_STATE(306)] = 10713, + [SMALL_STATE(307)] = 10745, + [SMALL_STATE(308)] = 10777, + [SMALL_STATE(309)] = 10802, + [SMALL_STATE(310)] = 10831, + [SMALL_STATE(311)] = 10860, + [SMALL_STATE(312)] = 10889, + [SMALL_STATE(313)] = 10918, + [SMALL_STATE(314)] = 10947, + [SMALL_STATE(315)] = 10968, + [SMALL_STATE(316)] = 10999, + [SMALL_STATE(317)] = 11024, + [SMALL_STATE(318)] = 11052, + [SMALL_STATE(319)] = 11080, + [SMALL_STATE(320)] = 11100, + [SMALL_STATE(321)] = 11128, + [SMALL_STATE(322)] = 11156, + [SMALL_STATE(323)] = 11184, + [SMALL_STATE(324)] = 11212, + [SMALL_STATE(325)] = 11240, + [SMALL_STATE(326)] = 11268, + [SMALL_STATE(327)] = 11296, + [SMALL_STATE(328)] = 11324, + [SMALL_STATE(329)] = 11352, + [SMALL_STATE(330)] = 11380, + [SMALL_STATE(331)] = 11408, + [SMALL_STATE(332)] = 11436, + [SMALL_STATE(333)] = 11464, + [SMALL_STATE(334)] = 11492, + [SMALL_STATE(335)] = 11520, + [SMALL_STATE(336)] = 11548, + [SMALL_STATE(337)] = 11576, + [SMALL_STATE(338)] = 11604, + [SMALL_STATE(339)] = 11632, + [SMALL_STATE(340)] = 11660, + [SMALL_STATE(341)] = 11688, + [SMALL_STATE(342)] = 11716, + [SMALL_STATE(343)] = 11744, + [SMALL_STATE(344)] = 11772, + [SMALL_STATE(345)] = 11800, + [SMALL_STATE(346)] = 11828, + [SMALL_STATE(347)] = 11856, + [SMALL_STATE(348)] = 11884, + [SMALL_STATE(349)] = 11912, + [SMALL_STATE(350)] = 11940, + [SMALL_STATE(351)] = 11968, + [SMALL_STATE(352)] = 11996, + [SMALL_STATE(353)] = 12021, + [SMALL_STATE(354)] = 12046, + [SMALL_STATE(355)] = 12069, + [SMALL_STATE(356)] = 12092, + [SMALL_STATE(357)] = 12114, + [SMALL_STATE(358)] = 12136, + [SMALL_STATE(359)] = 12170, + [SMALL_STATE(360)] = 12192, + [SMALL_STATE(361)] = 12214, + [SMALL_STATE(362)] = 12236, + [SMALL_STATE(363)] = 12258, + [SMALL_STATE(364)] = 12275, + [SMALL_STATE(365)] = 12306, + [SMALL_STATE(366)] = 12337, + [SMALL_STATE(367)] = 12354, + [SMALL_STATE(368)] = 12371, + [SMALL_STATE(369)] = 12402, + [SMALL_STATE(370)] = 12435, + [SMALL_STATE(371)] = 12466, + [SMALL_STATE(372)] = 12485, + [SMALL_STATE(373)] = 12504, + [SMALL_STATE(374)] = 12531, + [SMALL_STATE(375)] = 12550, + [SMALL_STATE(376)] = 12581, + [SMALL_STATE(377)] = 12602, + [SMALL_STATE(378)] = 12633, + [SMALL_STATE(379)] = 12649, + [SMALL_STATE(380)] = 12675, + [SMALL_STATE(381)] = 12689, + [SMALL_STATE(382)] = 12705, + [SMALL_STATE(383)] = 12718, + [SMALL_STATE(384)] = 12740, + [SMALL_STATE(385)] = 12761, + [SMALL_STATE(386)] = 12784, + [SMALL_STATE(387)] = 12807, + [SMALL_STATE(388)] = 12830, + [SMALL_STATE(389)] = 12853, + [SMALL_STATE(390)] = 12876, + [SMALL_STATE(391)] = 12899, + [SMALL_STATE(392)] = 12922, + [SMALL_STATE(393)] = 12945, + [SMALL_STATE(394)] = 12968, + [SMALL_STATE(395)] = 12991, + [SMALL_STATE(396)] = 13014, + [SMALL_STATE(397)] = 13037, + [SMALL_STATE(398)] = 13060, + [SMALL_STATE(399)] = 13083, + [SMALL_STATE(400)] = 13106, + [SMALL_STATE(401)] = 13129, + [SMALL_STATE(402)] = 13152, + [SMALL_STATE(403)] = 13175, + [SMALL_STATE(404)] = 13198, + [SMALL_STATE(405)] = 13221, + [SMALL_STATE(406)] = 13244, + [SMALL_STATE(407)] = 13264, + [SMALL_STATE(408)] = 13284, + [SMALL_STATE(409)] = 13304, + [SMALL_STATE(410)] = 13324, + [SMALL_STATE(411)] = 13344, + [SMALL_STATE(412)] = 13364, + [SMALL_STATE(413)] = 13384, + [SMALL_STATE(414)] = 13404, + [SMALL_STATE(415)] = 13424, + [SMALL_STATE(416)] = 13444, + [SMALL_STATE(417)] = 13464, + [SMALL_STATE(418)] = 13484, + [SMALL_STATE(419)] = 13504, + [SMALL_STATE(420)] = 13524, + [SMALL_STATE(421)] = 13544, + [SMALL_STATE(422)] = 13564, + [SMALL_STATE(423)] = 13584, + [SMALL_STATE(424)] = 13604, + [SMALL_STATE(425)] = 13624, + [SMALL_STATE(426)] = 13644, + [SMALL_STATE(427)] = 13653, + [SMALL_STATE(428)] = 13672, + [SMALL_STATE(429)] = 13691, + [SMALL_STATE(430)] = 13710, + [SMALL_STATE(431)] = 13729, + [SMALL_STATE(432)] = 13748, + [SMALL_STATE(433)] = 13767, + [SMALL_STATE(434)] = 13776, + [SMALL_STATE(435)] = 13785, + [SMALL_STATE(436)] = 13804, + [SMALL_STATE(437)] = 13823, + [SMALL_STATE(438)] = 13832, + [SMALL_STATE(439)] = 13851, + [SMALL_STATE(440)] = 13860, + [SMALL_STATE(441)] = 13879, + [SMALL_STATE(442)] = 13898, + [SMALL_STATE(443)] = 13917, + [SMALL_STATE(444)] = 13936, + [SMALL_STATE(445)] = 13955, + [SMALL_STATE(446)] = 13974, + [SMALL_STATE(447)] = 13993, + [SMALL_STATE(448)] = 14012, + [SMALL_STATE(449)] = 14031, + [SMALL_STATE(450)] = 14040, + [SMALL_STATE(451)] = 14049, + [SMALL_STATE(452)] = 14068, + [SMALL_STATE(453)] = 14087, + [SMALL_STATE(454)] = 14106, + [SMALL_STATE(455)] = 14115, + [SMALL_STATE(456)] = 14134, + [SMALL_STATE(457)] = 14153, + [SMALL_STATE(458)] = 14172, + [SMALL_STATE(459)] = 14191, + [SMALL_STATE(460)] = 14200, + [SMALL_STATE(461)] = 14219, + [SMALL_STATE(462)] = 14238, + [SMALL_STATE(463)] = 14247, + [SMALL_STATE(464)] = 14266, + [SMALL_STATE(465)] = 14285, + [SMALL_STATE(466)] = 14304, + [SMALL_STATE(467)] = 14313, + [SMALL_STATE(468)] = 14332, + [SMALL_STATE(469)] = 14351, + [SMALL_STATE(470)] = 14370, + [SMALL_STATE(471)] = 14389, + [SMALL_STATE(472)] = 14408, + [SMALL_STATE(473)] = 14427, + [SMALL_STATE(474)] = 14446, + [SMALL_STATE(475)] = 14455, + [SMALL_STATE(476)] = 14464, + [SMALL_STATE(477)] = 14483, + [SMALL_STATE(478)] = 14492, + [SMALL_STATE(479)] = 14511, + [SMALL_STATE(480)] = 14530, + [SMALL_STATE(481)] = 14549, + [SMALL_STATE(482)] = 14558, + [SMALL_STATE(483)] = 14567, + [SMALL_STATE(484)] = 14575, + [SMALL_STATE(485)] = 14583, + [SMALL_STATE(486)] = 14591, + [SMALL_STATE(487)] = 14605, + [SMALL_STATE(488)] = 14619, + [SMALL_STATE(489)] = 14631, + [SMALL_STATE(490)] = 14639, + [SMALL_STATE(491)] = 14647, + [SMALL_STATE(492)] = 14661, + [SMALL_STATE(493)] = 14669, + [SMALL_STATE(494)] = 14677, + [SMALL_STATE(495)] = 14688, + [SMALL_STATE(496)] = 14699, + [SMALL_STATE(497)] = 14710, + [SMALL_STATE(498)] = 14721, + [SMALL_STATE(499)] = 14732, + [SMALL_STATE(500)] = 14743, + [SMALL_STATE(501)] = 14754, + [SMALL_STATE(502)] = 14765, + [SMALL_STATE(503)] = 14776, + [SMALL_STATE(504)] = 14787, + [SMALL_STATE(505)] = 14798, + [SMALL_STATE(506)] = 14809, + [SMALL_STATE(507)] = 14820, + [SMALL_STATE(508)] = 14831, + [SMALL_STATE(509)] = 14842, + [SMALL_STATE(510)] = 14853, + [SMALL_STATE(511)] = 14864, + [SMALL_STATE(512)] = 14875, + [SMALL_STATE(513)] = 14886, + [SMALL_STATE(514)] = 14897, + [SMALL_STATE(515)] = 14908, + [SMALL_STATE(516)] = 14919, + [SMALL_STATE(517)] = 14930, + [SMALL_STATE(518)] = 14941, + [SMALL_STATE(519)] = 14952, + [SMALL_STATE(520)] = 14965, + [SMALL_STATE(521)] = 14976, + [SMALL_STATE(522)] = 14987, + [SMALL_STATE(523)] = 14998, + [SMALL_STATE(524)] = 15009, + [SMALL_STATE(525)] = 15020, + [SMALL_STATE(526)] = 15031, + [SMALL_STATE(527)] = 15042, + [SMALL_STATE(528)] = 15053, + [SMALL_STATE(529)] = 15064, + [SMALL_STATE(530)] = 15075, + [SMALL_STATE(531)] = 15088, + [SMALL_STATE(532)] = 15099, + [SMALL_STATE(533)] = 15110, + [SMALL_STATE(534)] = 15123, + [SMALL_STATE(535)] = 15134, + [SMALL_STATE(536)] = 15145, + [SMALL_STATE(537)] = 15156, + [SMALL_STATE(538)] = 15167, + [SMALL_STATE(539)] = 15180, + [SMALL_STATE(540)] = 15193, + [SMALL_STATE(541)] = 15204, + [SMALL_STATE(542)] = 15215, + [SMALL_STATE(543)] = 15226, + [SMALL_STATE(544)] = 15237, + [SMALL_STATE(545)] = 15248, + [SMALL_STATE(546)] = 15259, + [SMALL_STATE(547)] = 15270, + [SMALL_STATE(548)] = 15281, + [SMALL_STATE(549)] = 15292, + [SMALL_STATE(550)] = 15303, + [SMALL_STATE(551)] = 15314, + [SMALL_STATE(552)] = 15325, + [SMALL_STATE(553)] = 15336, + [SMALL_STATE(554)] = 15347, + [SMALL_STATE(555)] = 15358, + [SMALL_STATE(556)] = 15369, + [SMALL_STATE(557)] = 15380, + [SMALL_STATE(558)] = 15391, + [SMALL_STATE(559)] = 15402, + [SMALL_STATE(560)] = 15413, + [SMALL_STATE(561)] = 15424, + [SMALL_STATE(562)] = 15435, + [SMALL_STATE(563)] = 15444, + [SMALL_STATE(564)] = 15455, + [SMALL_STATE(565)] = 15466, + [SMALL_STATE(566)] = 15477, + [SMALL_STATE(567)] = 15488, + [SMALL_STATE(568)] = 15499, + [SMALL_STATE(569)] = 15510, + [SMALL_STATE(570)] = 15521, + [SMALL_STATE(571)] = 15532, + [SMALL_STATE(572)] = 15541, + [SMALL_STATE(573)] = 15550, + [SMALL_STATE(574)] = 15561, + [SMALL_STATE(575)] = 15570, + [SMALL_STATE(576)] = 15581, + [SMALL_STATE(577)] = 15590, + [SMALL_STATE(578)] = 15599, + [SMALL_STATE(579)] = 15610, + [SMALL_STATE(580)] = 15621, + [SMALL_STATE(581)] = 15630, + [SMALL_STATE(582)] = 15641, + [SMALL_STATE(583)] = 15650, + [SMALL_STATE(584)] = 15661, + [SMALL_STATE(585)] = 15672, + [SMALL_STATE(586)] = 15681, + [SMALL_STATE(587)] = 15692, + [SMALL_STATE(588)] = 15703, + [SMALL_STATE(589)] = 15714, + [SMALL_STATE(590)] = 15723, + [SMALL_STATE(591)] = 15734, + [SMALL_STATE(592)] = 15745, + [SMALL_STATE(593)] = 15756, + [SMALL_STATE(594)] = 15765, + [SMALL_STATE(595)] = 15776, + [SMALL_STATE(596)] = 15787, + [SMALL_STATE(597)] = 15798, + [SMALL_STATE(598)] = 15809, + [SMALL_STATE(599)] = 15820, + [SMALL_STATE(600)] = 15831, + [SMALL_STATE(601)] = 15842, + [SMALL_STATE(602)] = 15853, + [SMALL_STATE(603)] = 15864, + [SMALL_STATE(604)] = 15875, + [SMALL_STATE(605)] = 15886, + [SMALL_STATE(606)] = 15897, + [SMALL_STATE(607)] = 15908, + [SMALL_STATE(608)] = 15919, + [SMALL_STATE(609)] = 15930, + [SMALL_STATE(610)] = 15941, + [SMALL_STATE(611)] = 15952, + [SMALL_STATE(612)] = 15963, + [SMALL_STATE(613)] = 15974, + [SMALL_STATE(614)] = 15985, + [SMALL_STATE(615)] = 15991, + [SMALL_STATE(616)] = 15997, + [SMALL_STATE(617)] = 16003, + [SMALL_STATE(618)] = 16009, + [SMALL_STATE(619)] = 16015, + [SMALL_STATE(620)] = 16025, + [SMALL_STATE(621)] = 16031, + [SMALL_STATE(622)] = 16037, + [SMALL_STATE(623)] = 16043, + [SMALL_STATE(624)] = 16049, + [SMALL_STATE(625)] = 16055, + [SMALL_STATE(626)] = 16061, + [SMALL_STATE(627)] = 16067, + [SMALL_STATE(628)] = 16073, + [SMALL_STATE(629)] = 16079, + [SMALL_STATE(630)] = 16085, + [SMALL_STATE(631)] = 16091, + [SMALL_STATE(632)] = 16097, + [SMALL_STATE(633)] = 16103, + [SMALL_STATE(634)] = 16109, + [SMALL_STATE(635)] = 16115, + [SMALL_STATE(636)] = 16125, + [SMALL_STATE(637)] = 16135, + [SMALL_STATE(638)] = 16141, + [SMALL_STATE(639)] = 16147, + [SMALL_STATE(640)] = 16153, + [SMALL_STATE(641)] = 16159, + [SMALL_STATE(642)] = 16165, + [SMALL_STATE(643)] = 16171, + [SMALL_STATE(644)] = 16177, + [SMALL_STATE(645)] = 16183, + [SMALL_STATE(646)] = 16189, + [SMALL_STATE(647)] = 16197, + [SMALL_STATE(648)] = 16203, + [SMALL_STATE(649)] = 16209, + [SMALL_STATE(650)] = 16219, + [SMALL_STATE(651)] = 16229, + [SMALL_STATE(652)] = 16235, + [SMALL_STATE(653)] = 16245, + [SMALL_STATE(654)] = 16251, + [SMALL_STATE(655)] = 16261, + [SMALL_STATE(656)] = 16271, + [SMALL_STATE(657)] = 16277, + [SMALL_STATE(658)] = 16283, + [SMALL_STATE(659)] = 16289, + [SMALL_STATE(660)] = 16299, + [SMALL_STATE(661)] = 16309, + [SMALL_STATE(662)] = 16315, + [SMALL_STATE(663)] = 16321, + [SMALL_STATE(664)] = 16327, + [SMALL_STATE(665)] = 16333, + [SMALL_STATE(666)] = 16339, + [SMALL_STATE(667)] = 16349, + [SMALL_STATE(668)] = 16355, + [SMALL_STATE(669)] = 16361, + [SMALL_STATE(670)] = 16367, + [SMALL_STATE(671)] = 16373, + [SMALL_STATE(672)] = 16379, + [SMALL_STATE(673)] = 16385, + [SMALL_STATE(674)] = 16395, + [SMALL_STATE(675)] = 16405, + [SMALL_STATE(676)] = 16411, + [SMALL_STATE(677)] = 16417, + [SMALL_STATE(678)] = 16423, + [SMALL_STATE(679)] = 16429, + [SMALL_STATE(680)] = 16435, + [SMALL_STATE(681)] = 16441, + [SMALL_STATE(682)] = 16451, + [SMALL_STATE(683)] = 16461, + [SMALL_STATE(684)] = 16471, + [SMALL_STATE(685)] = 16477, + [SMALL_STATE(686)] = 16485, + [SMALL_STATE(687)] = 16491, + [SMALL_STATE(688)] = 16497, + [SMALL_STATE(689)] = 16503, + [SMALL_STATE(690)] = 16513, + [SMALL_STATE(691)] = 16523, + [SMALL_STATE(692)] = 16529, + [SMALL_STATE(693)] = 16535, + [SMALL_STATE(694)] = 16545, + [SMALL_STATE(695)] = 16551, + [SMALL_STATE(696)] = 16561, + [SMALL_STATE(697)] = 16567, + [SMALL_STATE(698)] = 16577, + [SMALL_STATE(699)] = 16585, + [SMALL_STATE(700)] = 16591, + [SMALL_STATE(701)] = 16599, + [SMALL_STATE(702)] = 16607, + [SMALL_STATE(703)] = 16613, + [SMALL_STATE(704)] = 16621, + [SMALL_STATE(705)] = 16629, + [SMALL_STATE(706)] = 16635, + [SMALL_STATE(707)] = 16645, + [SMALL_STATE(708)] = 16653, + [SMALL_STATE(709)] = 16661, + [SMALL_STATE(710)] = 16669, + [SMALL_STATE(711)] = 16679, + [SMALL_STATE(712)] = 16687, + [SMALL_STATE(713)] = 16695, + [SMALL_STATE(714)] = 16703, + [SMALL_STATE(715)] = 16708, + [SMALL_STATE(716)] = 16713, + [SMALL_STATE(717)] = 16720, + [SMALL_STATE(718)] = 16727, + [SMALL_STATE(719)] = 16734, + [SMALL_STATE(720)] = 16739, + [SMALL_STATE(721)] = 16744, + [SMALL_STATE(722)] = 16751, + [SMALL_STATE(723)] = 16758, + [SMALL_STATE(724)] = 16765, + [SMALL_STATE(725)] = 16770, + [SMALL_STATE(726)] = 16777, + [SMALL_STATE(727)] = 16784, + [SMALL_STATE(728)] = 16789, + [SMALL_STATE(729)] = 16794, + [SMALL_STATE(730)] = 16799, + [SMALL_STATE(731)] = 16806, + [SMALL_STATE(732)] = 16811, + [SMALL_STATE(733)] = 16816, + [SMALL_STATE(734)] = 16823, + [SMALL_STATE(735)] = 16828, + [SMALL_STATE(736)] = 16833, + [SMALL_STATE(737)] = 16838, + [SMALL_STATE(738)] = 16843, + [SMALL_STATE(739)] = 16850, + [SMALL_STATE(740)] = 16855, + [SMALL_STATE(741)] = 16860, + [SMALL_STATE(742)] = 16867, + [SMALL_STATE(743)] = 16874, + [SMALL_STATE(744)] = 16879, + [SMALL_STATE(745)] = 16884, + [SMALL_STATE(746)] = 16891, + [SMALL_STATE(747)] = 16898, + [SMALL_STATE(748)] = 16905, + [SMALL_STATE(749)] = 16912, + [SMALL_STATE(750)] = 16919, + [SMALL_STATE(751)] = 16924, + [SMALL_STATE(752)] = 16929, + [SMALL_STATE(753)] = 16934, + [SMALL_STATE(754)] = 16941, + [SMALL_STATE(755)] = 16946, + [SMALL_STATE(756)] = 16953, + [SMALL_STATE(757)] = 16960, + [SMALL_STATE(758)] = 16965, + [SMALL_STATE(759)] = 16972, + [SMALL_STATE(760)] = 16977, + [SMALL_STATE(761)] = 16982, + [SMALL_STATE(762)] = 16987, + [SMALL_STATE(763)] = 16992, + [SMALL_STATE(764)] = 16997, + [SMALL_STATE(765)] = 17002, + [SMALL_STATE(766)] = 17007, + [SMALL_STATE(767)] = 17012, + [SMALL_STATE(768)] = 17017, + [SMALL_STATE(769)] = 17022, + [SMALL_STATE(770)] = 17027, + [SMALL_STATE(771)] = 17032, + [SMALL_STATE(772)] = 17037, + [SMALL_STATE(773)] = 17042, + [SMALL_STATE(774)] = 17047, + [SMALL_STATE(775)] = 17052, + [SMALL_STATE(776)] = 17057, + [SMALL_STATE(777)] = 17062, + [SMALL_STATE(778)] = 17067, + [SMALL_STATE(779)] = 17072, + [SMALL_STATE(780)] = 17077, + [SMALL_STATE(781)] = 17082, + [SMALL_STATE(782)] = 17089, + [SMALL_STATE(783)] = 17096, + [SMALL_STATE(784)] = 17101, + [SMALL_STATE(785)] = 17108, + [SMALL_STATE(786)] = 17115, + [SMALL_STATE(787)] = 17122, + [SMALL_STATE(788)] = 17127, + [SMALL_STATE(789)] = 17132, + [SMALL_STATE(790)] = 17139, + [SMALL_STATE(791)] = 17146, + [SMALL_STATE(792)] = 17153, + [SMALL_STATE(793)] = 17160, + [SMALL_STATE(794)] = 17167, + [SMALL_STATE(795)] = 17172, + [SMALL_STATE(796)] = 17179, + [SMALL_STATE(797)] = 17184, + [SMALL_STATE(798)] = 17189, + [SMALL_STATE(799)] = 17196, + [SMALL_STATE(800)] = 17203, + [SMALL_STATE(801)] = 17208, + [SMALL_STATE(802)] = 17213, + [SMALL_STATE(803)] = 17220, + [SMALL_STATE(804)] = 17227, + [SMALL_STATE(805)] = 17232, + [SMALL_STATE(806)] = 17239, + [SMALL_STATE(807)] = 17246, + [SMALL_STATE(808)] = 17251, + [SMALL_STATE(809)] = 17256, + [SMALL_STATE(810)] = 17263, + [SMALL_STATE(811)] = 17270, + [SMALL_STATE(812)] = 17275, + [SMALL_STATE(813)] = 17282, + [SMALL_STATE(814)] = 17289, + [SMALL_STATE(815)] = 17296, + [SMALL_STATE(816)] = 17303, + [SMALL_STATE(817)] = 17310, + [SMALL_STATE(818)] = 17317, + [SMALL_STATE(819)] = 17322, + [SMALL_STATE(820)] = 17327, + [SMALL_STATE(821)] = 17332, + [SMALL_STATE(822)] = 17337, + [SMALL_STATE(823)] = 17344, + [SMALL_STATE(824)] = 17349, + [SMALL_STATE(825)] = 17354, + [SMALL_STATE(826)] = 17359, + [SMALL_STATE(827)] = 17364, + [SMALL_STATE(828)] = 17369, + [SMALL_STATE(829)] = 17374, + [SMALL_STATE(830)] = 17379, + [SMALL_STATE(831)] = 17386, + [SMALL_STATE(832)] = 17391, + [SMALL_STATE(833)] = 17396, + [SMALL_STATE(834)] = 17401, + [SMALL_STATE(835)] = 17406, + [SMALL_STATE(836)] = 17413, + [SMALL_STATE(837)] = 17420, + [SMALL_STATE(838)] = 17425, + [SMALL_STATE(839)] = 17430, + [SMALL_STATE(840)] = 17437, + [SMALL_STATE(841)] = 17444, + [SMALL_STATE(842)] = 17451, + [SMALL_STATE(843)] = 17456, + [SMALL_STATE(844)] = 17461, + [SMALL_STATE(845)] = 17468, + [SMALL_STATE(846)] = 17475, + [SMALL_STATE(847)] = 17482, + [SMALL_STATE(848)] = 17489, + [SMALL_STATE(849)] = 17494, + [SMALL_STATE(850)] = 17501, + [SMALL_STATE(851)] = 17506, + [SMALL_STATE(852)] = 17511, + [SMALL_STATE(853)] = 17516, + [SMALL_STATE(854)] = 17521, + [SMALL_STATE(855)] = 17528, + [SMALL_STATE(856)] = 17535, + [SMALL_STATE(857)] = 17540, + [SMALL_STATE(858)] = 17545, + [SMALL_STATE(859)] = 17550, + [SMALL_STATE(860)] = 17557, + [SMALL_STATE(861)] = 17562, + [SMALL_STATE(862)] = 17567, + [SMALL_STATE(863)] = 17572, + [SMALL_STATE(864)] = 17577, + [SMALL_STATE(865)] = 17582, + [SMALL_STATE(866)] = 17587, + [SMALL_STATE(867)] = 17594, + [SMALL_STATE(868)] = 17599, + [SMALL_STATE(869)] = 17604, + [SMALL_STATE(870)] = 17611, + [SMALL_STATE(871)] = 17618, + [SMALL_STATE(872)] = 17625, + [SMALL_STATE(873)] = 17630, + [SMALL_STATE(874)] = 17635, + [SMALL_STATE(875)] = 17642, + [SMALL_STATE(876)] = 17649, + [SMALL_STATE(877)] = 17654, + [SMALL_STATE(878)] = 17659, + [SMALL_STATE(879)] = 17664, + [SMALL_STATE(880)] = 17669, + [SMALL_STATE(881)] = 17676, + [SMALL_STATE(882)] = 17683, + [SMALL_STATE(883)] = 17690, + [SMALL_STATE(884)] = 17695, + [SMALL_STATE(885)] = 17700, + [SMALL_STATE(886)] = 17705, + [SMALL_STATE(887)] = 17710, + [SMALL_STATE(888)] = 17715, + [SMALL_STATE(889)] = 17720, + [SMALL_STATE(890)] = 17727, + [SMALL_STATE(891)] = 17732, + [SMALL_STATE(892)] = 17737, + [SMALL_STATE(893)] = 17742, + [SMALL_STATE(894)] = 17747, + [SMALL_STATE(895)] = 17754, + [SMALL_STATE(896)] = 17759, + [SMALL_STATE(897)] = 17764, + [SMALL_STATE(898)] = 17769, + [SMALL_STATE(899)] = 17774, + [SMALL_STATE(900)] = 17779, + [SMALL_STATE(901)] = 17786, + [SMALL_STATE(902)] = 17791, + [SMALL_STATE(903)] = 17796, + [SMALL_STATE(904)] = 17800, + [SMALL_STATE(905)] = 17804, + [SMALL_STATE(906)] = 17808, + [SMALL_STATE(907)] = 17812, + [SMALL_STATE(908)] = 17816, + [SMALL_STATE(909)] = 17820, + [SMALL_STATE(910)] = 17824, + [SMALL_STATE(911)] = 17828, + [SMALL_STATE(912)] = 17832, + [SMALL_STATE(913)] = 17836, + [SMALL_STATE(914)] = 17840, + [SMALL_STATE(915)] = 17844, + [SMALL_STATE(916)] = 17848, + [SMALL_STATE(917)] = 17852, + [SMALL_STATE(918)] = 17856, + [SMALL_STATE(919)] = 17860, + [SMALL_STATE(920)] = 17864, + [SMALL_STATE(921)] = 17868, + [SMALL_STATE(922)] = 17872, + [SMALL_STATE(923)] = 17876, + [SMALL_STATE(924)] = 17880, + [SMALL_STATE(925)] = 17884, + [SMALL_STATE(926)] = 17888, + [SMALL_STATE(927)] = 17892, + [SMALL_STATE(928)] = 17896, + [SMALL_STATE(929)] = 17900, + [SMALL_STATE(930)] = 17904, + [SMALL_STATE(931)] = 17908, + [SMALL_STATE(932)] = 17912, + [SMALL_STATE(933)] = 17916, + [SMALL_STATE(934)] = 17920, + [SMALL_STATE(935)] = 17924, + [SMALL_STATE(936)] = 17928, + [SMALL_STATE(937)] = 17932, + [SMALL_STATE(938)] = 17936, + [SMALL_STATE(939)] = 17940, + [SMALL_STATE(940)] = 17944, + [SMALL_STATE(941)] = 17948, + [SMALL_STATE(942)] = 17952, + [SMALL_STATE(943)] = 17956, + [SMALL_STATE(944)] = 17960, + [SMALL_STATE(945)] = 17964, + [SMALL_STATE(946)] = 17968, + [SMALL_STATE(947)] = 17972, + [SMALL_STATE(948)] = 17976, + [SMALL_STATE(949)] = 17980, + [SMALL_STATE(950)] = 17984, + [SMALL_STATE(951)] = 17988, + [SMALL_STATE(952)] = 17992, + [SMALL_STATE(953)] = 17996, + [SMALL_STATE(954)] = 18000, + [SMALL_STATE(955)] = 18004, + [SMALL_STATE(956)] = 18008, + [SMALL_STATE(957)] = 18012, + [SMALL_STATE(958)] = 18016, + [SMALL_STATE(959)] = 18020, + [SMALL_STATE(960)] = 18024, + [SMALL_STATE(961)] = 18028, + [SMALL_STATE(962)] = 18032, + [SMALL_STATE(963)] = 18036, + [SMALL_STATE(964)] = 18040, + [SMALL_STATE(965)] = 18044, + [SMALL_STATE(966)] = 18048, + [SMALL_STATE(967)] = 18052, + [SMALL_STATE(968)] = 18056, + [SMALL_STATE(969)] = 18060, + [SMALL_STATE(970)] = 18064, + [SMALL_STATE(971)] = 18068, + [SMALL_STATE(972)] = 18072, + [SMALL_STATE(973)] = 18076, + [SMALL_STATE(974)] = 18080, + [SMALL_STATE(975)] = 18084, + [SMALL_STATE(976)] = 18088, + [SMALL_STATE(977)] = 18092, + [SMALL_STATE(978)] = 18096, + [SMALL_STATE(979)] = 18100, + [SMALL_STATE(980)] = 18104, + [SMALL_STATE(981)] = 18108, + [SMALL_STATE(982)] = 18112, + [SMALL_STATE(983)] = 18116, + [SMALL_STATE(984)] = 18120, + [SMALL_STATE(985)] = 18124, + [SMALL_STATE(986)] = 18128, + [SMALL_STATE(987)] = 18132, + [SMALL_STATE(988)] = 18136, + [SMALL_STATE(989)] = 18140, + [SMALL_STATE(990)] = 18144, + [SMALL_STATE(991)] = 18148, + [SMALL_STATE(992)] = 18152, + [SMALL_STATE(993)] = 18156, + [SMALL_STATE(994)] = 18160, + [SMALL_STATE(995)] = 18164, + [SMALL_STATE(996)] = 18168, + [SMALL_STATE(997)] = 18172, + [SMALL_STATE(998)] = 18176, + [SMALL_STATE(999)] = 18180, + [SMALL_STATE(1000)] = 18184, + [SMALL_STATE(1001)] = 18188, + [SMALL_STATE(1002)] = 18192, + [SMALL_STATE(1003)] = 18196, + [SMALL_STATE(1004)] = 18200, + [SMALL_STATE(1005)] = 18204, + [SMALL_STATE(1006)] = 18208, + [SMALL_STATE(1007)] = 18212, + [SMALL_STATE(1008)] = 18216, + [SMALL_STATE(1009)] = 18220, + [SMALL_STATE(1010)] = 18224, + [SMALL_STATE(1011)] = 18228, + [SMALL_STATE(1012)] = 18232, + [SMALL_STATE(1013)] = 18236, + [SMALL_STATE(1014)] = 18240, + [SMALL_STATE(1015)] = 18244, + [SMALL_STATE(1016)] = 18248, + [SMALL_STATE(1017)] = 18252, + [SMALL_STATE(1018)] = 18256, + [SMALL_STATE(1019)] = 18260, + [SMALL_STATE(1020)] = 18264, + [SMALL_STATE(1021)] = 18268, + [SMALL_STATE(1022)] = 18272, + [SMALL_STATE(1023)] = 18276, + [SMALL_STATE(1024)] = 18280, + [SMALL_STATE(1025)] = 18284, + [SMALL_STATE(1026)] = 18288, + [SMALL_STATE(1027)] = 18292, + [SMALL_STATE(1028)] = 18296, + [SMALL_STATE(1029)] = 18300, + [SMALL_STATE(1030)] = 18304, + [SMALL_STATE(1031)] = 18308, + [SMALL_STATE(1032)] = 18312, + [SMALL_STATE(1033)] = 18316, + [SMALL_STATE(1034)] = 18320, + [SMALL_STATE(1035)] = 18324, + [SMALL_STATE(1036)] = 18328, + [SMALL_STATE(1037)] = 18332, + [SMALL_STATE(1038)] = 18336, + [SMALL_STATE(1039)] = 18340, + [SMALL_STATE(1040)] = 18344, + [SMALL_STATE(1041)] = 18348, + [SMALL_STATE(1042)] = 18352, + [SMALL_STATE(1043)] = 18356, + [SMALL_STATE(1044)] = 18360, + [SMALL_STATE(1045)] = 18364, + [SMALL_STATE(1046)] = 18368, + [SMALL_STATE(1047)] = 18372, + [SMALL_STATE(1048)] = 18376, + [SMALL_STATE(1049)] = 18380, + [SMALL_STATE(1050)] = 18384, + [SMALL_STATE(1051)] = 18388, + [SMALL_STATE(1052)] = 18392, + [SMALL_STATE(1053)] = 18396, + [SMALL_STATE(1054)] = 18400, + [SMALL_STATE(1055)] = 18404, + [SMALL_STATE(1056)] = 18408, + [SMALL_STATE(1057)] = 18412, + [SMALL_STATE(1058)] = 18416, + [SMALL_STATE(1059)] = 18420, + [SMALL_STATE(1060)] = 18424, + [SMALL_STATE(1061)] = 18428, + [SMALL_STATE(1062)] = 18432, + [SMALL_STATE(1063)] = 18436, + [SMALL_STATE(1064)] = 18440, + [SMALL_STATE(1065)] = 18444, + [SMALL_STATE(1066)] = 18448, + [SMALL_STATE(1067)] = 18452, + [SMALL_STATE(1068)] = 18456, + [SMALL_STATE(1069)] = 18460, + [SMALL_STATE(1070)] = 18464, + [SMALL_STATE(1071)] = 18468, + [SMALL_STATE(1072)] = 18472, + [SMALL_STATE(1073)] = 18476, + [SMALL_STATE(1074)] = 18480, + [SMALL_STATE(1075)] = 18484, + [SMALL_STATE(1076)] = 18488, + [SMALL_STATE(1077)] = 18492, + [SMALL_STATE(1078)] = 18496, + [SMALL_STATE(1079)] = 18500, + [SMALL_STATE(1080)] = 18504, + [SMALL_STATE(1081)] = 18508, + [SMALL_STATE(1082)] = 18512, + [SMALL_STATE(1083)] = 18516, + [SMALL_STATE(1084)] = 18520, + [SMALL_STATE(1085)] = 18524, + [SMALL_STATE(1086)] = 18528, + [SMALL_STATE(1087)] = 18532, + [SMALL_STATE(1088)] = 18536, + [SMALL_STATE(1089)] = 18540, + [SMALL_STATE(1090)] = 18544, + [SMALL_STATE(1091)] = 18548, + [SMALL_STATE(1092)] = 18552, + [SMALL_STATE(1093)] = 18556, + [SMALL_STATE(1094)] = 18560, + [SMALL_STATE(1095)] = 18564, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -27354,1085 +29287,1105 @@ static const TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 0), [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [71] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 1), - [73] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(324), - [76] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(309), - [79] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(272), - [82] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(366), - [85] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), - [87] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(146), - [90] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(358), - [93] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(753), - [96] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1039), - [99] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(39), - [102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(46), - [105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(45), - [108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(677), - [111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(297), - [114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(36), - [117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(42), - [120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(30), - [123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(44), - [126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(47), - [129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(51), - [132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(29), - [135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(40), - [138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(37), - [141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(35), - [144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(34), - [147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(33), - [150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(32), - [153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(31), - [156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(41), - [159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(56), - [162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(341), - [165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(144), - [168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(717), - [171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(311), - [174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(294), - [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(273), - [180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(156), - [183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(995), - [186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(55), - [189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(203), - [192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(767), - [195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 2), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), - [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(324), - [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(309), - [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(272), - [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(366), - [253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), - [255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(226), - [258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(358), - [261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(753), - [264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(1039), - [267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(39), - [270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(46), - [273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(45), - [276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(677), - [279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(297), - [282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(36), - [285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(42), - [288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(30), - [291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(44), - [294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(47), - [297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(51), - [300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(29), - [303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(40), - [306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(37), - [309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(35), - [312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(34), - [315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(33), - [318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(32), - [321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(31), - [324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(41), - [327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(56), - [330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(61), - [333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(144), - [336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(717), - [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_footnote_content, 1), - [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(326), - [368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(302), - [371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(270), - [374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(265), - [377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(349), - [380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(1046), - [383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(60), - [386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(58), - [389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(233), - [392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(713), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), - [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 1, .production_id = 1), - [457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 1, .production_id = 1), - [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), - [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 1), - [483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 1), SHIFT_REPEAT(341), - [486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 1), - [488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 1), - [490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), - [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), - [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2), - [512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_table_repeat1, 2), - [514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(360), - [517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(754), - [520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(359), - [523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(357), - [526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_content, 1), - [528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_content, 1), - [530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__table_content, 1), SHIFT(948), - [533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__table_content, 1), SHIFT(754), - [536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__table_content, 1), SHIFT(1011), - [539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__table_content, 1), SHIFT(990), - [542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 2), - [544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 2), - [546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 5, .production_id = 9), - [548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 5, .production_id = 9), - [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 6), - [554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 6), - [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_separator, 5), - [560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_separator, 5), - [562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 5, .production_id = 10), - [564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 5, .production_id = 10), - [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 5), - [570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 5), - [572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 4, .production_id = 9), - [576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 4, .production_id = 9), - [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 4), - [582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 4), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [87] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(313), + [90] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(289), + [93] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(721), + [96] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(273), + [99] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(355), + [102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), + [104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(233), + [107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(337), + [110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(716), + [113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1050), + [116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(36), + [119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(37), + [122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(30), + [125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(712), + [128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(305), + [131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(41), + [134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(43), + [137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(44), + [140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(47), + [143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(48), + [146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(49), + [149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(51), + [152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(50), + [155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(29), + [158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(46), + [161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(45), + [164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(40), + [167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(31), + [170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(32), + [173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(33), + [176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(61), + [179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(319), + [182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(257), + [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 1), + [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 2), + [195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(311), + [198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(303), + [201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(269), + [204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(207), + [207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1094), + [210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(55), + [213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(190), + [216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(313), + [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(289), + [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(721), + [257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(273), + [260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(355), + [263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), + [265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(230), + [268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(337), + [271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(716), + [274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(1050), + [277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(36), + [280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(37), + [283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(30), + [286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(712), + [289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(305), + [292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(41), + [295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(43), + [298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(44), + [301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(47), + [304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(48), + [307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(49), + [310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(51), + [313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(50), + [316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(29), + [319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(46), + [322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(45), + [325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(40), + [328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(31), + [331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(32), + [334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(33), + [337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(61), + [340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(60), + [343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(257), + [346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_footnote_content, 1), + [350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(309), + [361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(300), + [364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(271), + [367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(167), + [370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(331), + [373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(1057), + [376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(59), + [379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(57), + [382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(151), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 1, .production_id = 1), + [445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 1, .production_id = 1), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), + [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 1), + [469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 1), SHIFT_REPEAT(319), + [472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 1), + [474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 1), + [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_table_repeat1, 2), + [498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(347), + [501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2), + [503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(887), + [506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(336), + [509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(338), + [512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_content, 1), + [514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_content, 1), + [516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__table_content, 1), SHIFT(930), + [519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__table_content, 1), SHIFT(887), + [522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__table_content, 1), SHIFT(1022), + [525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__table_content, 1), SHIFT(913), + [528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 2), + [530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 2), + [532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 4), + [534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 4), + [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 3), + [540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 3), + [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_separator, 4), + [546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_separator, 4), + [548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 4), + [550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 4), + [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_or_two_newlines, 1), + [560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_or_two_newlines, 1), + [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_row, 6), + [566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_row, 6), + [568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_row, 4), + [570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_row, 4), + [572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 4, .production_id = 9), + [574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 4, .production_id = 9), + [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_separator, 6), + [580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_separator, 6), + [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_row, 4), - [588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_row, 4), - [590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_separator, 4), - [592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_separator, 4), - [594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 4), - [596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 4), - [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 3), - [602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 3), - [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heading, 3), - [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heading, 3), - [612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_or_two_newlines, 1), - [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_or_two_newlines, 1), - [618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_content, 2, .production_id = 2), - [620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_content, 2, .production_id = 2), - [622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 6, .production_id = 12), - [624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 6, .production_id = 12), - [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_separator, 6), - [630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_separator, 6), - [632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_row, 6), - [634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_row, 6), - [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_row, 5), - [650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_row, 5), - [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_attribute, 3), - [684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_attribute, 3), - [686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 8, .production_id = 14), - [688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 8, .production_id = 14), - [690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 8), - [692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 8), - [694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 7, .production_id = 9), - [696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 7, .production_id = 9), - [698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_dash, 2), - [700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_dash, 2), - [702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_star, 2), - [704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_star, 2), - [706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_plus, 2), - [708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_plus, 2), - [710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frontmatter, 6), - [712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_frontmatter, 6), - [714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 7, .production_id = 13), - [716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 7, .production_id = 13), - [718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 1), - [720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 1), - [722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_task, 2), - [724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_task, 2), - [726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_thematic_break, 1), - [728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_thematic_break, 1), - [730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_definition, 2), - [732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_definition, 2), - [734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 1), - [736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 1), - [738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_decimal_period, 2), - [740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_decimal_period, 2), - [742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 7), - [744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 7), - [746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_decimal_paren, 2), - [748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_decimal_paren, 2), - [750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 5), - [752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 5), - [754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_decimal_parens, 2), - [756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_decimal_parens, 2), - [758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frontmatter, 7), - [760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_frontmatter, 7), - [762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_alpha_period, 2), - [764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_alpha_period, 2), - [766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 2), - [768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 2), - [770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_alpha_paren, 2), - [772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_alpha_paren, 2), - [774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_alpha_parens, 2), - [776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_alpha_parens, 2), - [778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_footnote, 5), - [780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_footnote, 5), - [782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_alpha_period, 2), - [784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_alpha_period, 2), - [786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_or_two_newlines, 2), - [788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_or_two_newlines, 2), - [790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_alpha_paren, 2), - [792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_alpha_paren, 2), - [794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_alpha_parens, 2), - [796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_alpha_parens, 2), - [798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 6, .production_id = 9), - [800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 6, .production_id = 9), - [802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_roman_period, 2), - [804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_roman_period, 2), - [806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 6), - [808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 6), - [810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_roman_paren, 2), - [812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_roman_paren, 2), - [814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_roman_parens, 2), - [816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_roman_parens, 2), - [818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__paragraph, 2, .production_id = 3), - [820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph, 2, .production_id = 3), - [822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_roman_period, 2), - [824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_roman_period, 2), - [826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_roman_paren, 2), - [828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_roman_paren, 2), - [830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_roman_parens, 2), - [832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_roman_parens, 2), - [834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 8), - [836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 8), - [838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_caption, 3, .production_id = 7), - [840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_caption, 3, .production_id = 7), - [842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_with_heading, 2), - [844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_with_heading, 2), - [846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_attribute, 4, .production_id = 8), - [848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_attribute, 4, .production_id = 8), - [850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_quote, 3), - [852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_quote, 3), - [854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 3), - [856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 3), - [858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heading, 4), - [860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heading, 4), - [862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 3, .production_id = 5), - [864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 3, .production_id = 5), - [866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 1), - [868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 1), - [870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_task, 3), - [872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_task, 3), - [874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), - [876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), - [878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(268), - [881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), - [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), - [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), - [887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), - [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), - [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), - [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), - [899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), - [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), - [905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), - [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), - [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), - [949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), - [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(316), - [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), - [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(410), - [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), - [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), - [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 2), SHIFT_REPEAT(388), - [978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 2), - [980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_caption_repeat1, 2), - [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), - [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(334), - [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), - [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), - [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), - [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), - [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), - [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [1007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_quote_prefix, 1), - [1009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_quote_prefix, 1), - [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), - [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), - [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), - [1019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(375), - [1022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [1024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [1026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [1028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [1030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [1034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(343), - [1037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2), - [1039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2), SHIFT_REPEAT(849), - [1042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2), SHIFT_REPEAT(468), - [1045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2), SHIFT_REPEAT(916), - [1048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2), SHIFT_REPEAT(514), - [1051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(341), - [1054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [1056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [1058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [1062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [1064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [1066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [1068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [1070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [1072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [1074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [1078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [1080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [1082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [1084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [1086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [1090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(362), - [1093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), - [1095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__table_content, 1), SHIFT(946), - [1098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), - [1100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline, 1), - [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [1104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [1106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [1108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [1110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [1112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [1114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [1116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [1118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [1120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [1122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), - [1124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline, 1), - [1126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__table_content, 1), SHIFT(968), - [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [1133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(380), - [1136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), - [1138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [1140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [1142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [1144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [1146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(385), - [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), - [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [1159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 2), - [1161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 2), SHIFT_REPEAT(677), - [1164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 2), SHIFT_REPEAT(874), - [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [1183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 2), - [1185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 2), SHIFT_REPEAT(39), - [1188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 2), SHIFT_REPEAT(831), - [1191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2), - [1193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2), SHIFT_REPEAT(46), - [1196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2), SHIFT_REPEAT(882), - [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [1207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2), - [1209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2), SHIFT_REPEAT(45), - [1212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2), SHIFT_REPEAT(711), - [1215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_line, 2), - [1217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_line, 2), - [1219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(465), - [1222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code, 1), - [1226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [1228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [1230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(411), - [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [1237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 1), - [1239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_caption_repeat1, 1), - [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [1251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_repeat1, 2), SHIFT_REPEAT(1053), - [1254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_code_repeat1, 2), - [1256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_repeat1, 2), SHIFT_REPEAT(847), - [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [1307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_no_newline, 2), - [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [1313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, .production_id = 4), - [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [1321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 3), - [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [1335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 2), SHIFT_REPEAT(52), - [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 2), - [1340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 2), SHIFT_REPEAT(867), - [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [1349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 1), - [1351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_name, 1), - [1353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_no_newline, 3, .production_id = 7), - [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [1357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1), - [1359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value, 3), - [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [1367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 2), - [1369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 2), SHIFT_REPEAT(268), - [1372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_quote_content, 1), - [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [1376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_quote_content, 2), - [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_period_repeat1, 2), - [1384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_decimal_period_repeat1, 2), SHIFT_REPEAT(36), - [1387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_paren_repeat1, 2), - [1389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_decimal_paren_repeat1, 2), SHIFT_REPEAT(51), - [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_parens_repeat1, 2), - [1394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_decimal_parens_repeat1, 2), SHIFT_REPEAT(34), - [1397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_period_repeat1, 2), - [1399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_period_repeat1, 2), SHIFT_REPEAT(42), - [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_paren_repeat1, 2), - [1404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_paren_repeat1, 2), SHIFT_REPEAT(29), - [1407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_parens_repeat1, 2), - [1409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_parens_repeat1, 2), SHIFT_REPEAT(33), - [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_period_repeat1, 2), - [1414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_period_repeat1, 2), SHIFT_REPEAT(30), - [1417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_paren_repeat1, 2), - [1419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_paren_repeat1, 2), SHIFT_REPEAT(40), - [1422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_parens_repeat1, 2), - [1424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_parens_repeat1, 2), SHIFT_REPEAT(32), - [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_period_repeat1, 2), - [1429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_period_repeat1, 2), SHIFT_REPEAT(44), - [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_paren_repeat1, 2), - [1434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_paren_repeat1, 2), SHIFT_REPEAT(37), - [1437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_parens_repeat1, 2), - [1439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_parens_repeat1, 2), SHIFT_REPEAT(31), - [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_period_repeat1, 2), - [1444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_period_repeat1, 2), SHIFT_REPEAT(47), - [1447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_paren_repeat1, 2), - [1449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_paren_repeat1, 2), SHIFT_REPEAT(35), - [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_parens_repeat1, 2), - [1454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_parens_repeat1, 2), SHIFT_REPEAT(41), - [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), - [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), - [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_content, 2, .production_id = 2), + [588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_content, 2, .production_id = 2), + [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 5), + [594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 5), + [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heading, 3), + [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heading, 3), + [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 5, .production_id = 10), + [610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 5, .production_id = 10), + [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 6, .production_id = 12), + [616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 6, .production_id = 12), + [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_separator, 5), + [628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_separator, 5), + [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_row, 5), + [636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_row, 5), + [638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 6), + [640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 6), + [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 5, .production_id = 9), + [646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 5, .production_id = 9), + [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_alpha_paren, 2), + [670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_alpha_paren, 2), + [672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 2), + [674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 2), + [676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph, 2, .production_id = 3), + [678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__paragraph, 2, .production_id = 3), + [680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 6, .production_id = 9), + [682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 6, .production_id = 9), + [684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 6), + [686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 6), + [688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 7), + [690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 7), + [692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_dash, 2), + [694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_dash, 2), + [696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 7, .production_id = 13), + [698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 7, .production_id = 13), + [700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 7, .production_id = 9), + [702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 7, .production_id = 9), + [704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_plus, 2), + [706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_plus, 2), + [708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 8), + [710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 8), + [712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 8, .production_id = 14), + [714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 8, .production_id = 14), + [716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_star, 2), + [718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_star, 2), + [720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_footnote, 6), + [722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_footnote, 6), + [724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_task, 2), + [726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_task, 2), + [728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 8), + [730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 8), + [732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_or_two_newlines, 2), + [734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_or_two_newlines, 2), + [736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_definition, 2), + [738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_definition, 2), + [740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_decimal_period, 2), + [742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_decimal_period, 2), + [744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_thematic_break, 1), + [746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_thematic_break, 1), + [748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_decimal_paren, 2), + [750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_decimal_paren, 2), + [752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 1), + [754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 1), + [756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_decimal_parens, 2), + [758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_decimal_parens, 2), + [760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_alpha_period, 2), + [762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_alpha_period, 2), + [764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_caption, 3, .production_id = 7), + [766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_caption, 3, .production_id = 7), + [768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_alpha_paren, 2), + [770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_alpha_paren, 2), + [772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_alpha_parens, 2), + [774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_alpha_parens, 2), + [776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_alpha_period, 2), + [778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_alpha_period, 2), + [780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 5), + [782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 5), + [784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_alpha_parens, 2), + [786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_alpha_parens, 2), + [788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 1), + [790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 1), + [792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_roman_period, 2), + [794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_roman_period, 2), + [796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_attribute, 4, .production_id = 8), + [798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_attribute, 4, .production_id = 8), + [800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_roman_paren, 2), + [802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_roman_paren, 2), + [804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_roman_parens, 2), + [806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_roman_parens, 2), + [808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 3, .production_id = 5), + [810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 3, .production_id = 5), + [812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_roman_period, 2), + [814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_roman_period, 2), + [816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_roman_paren, 2), + [818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_roman_paren, 2), + [820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_roman_parens, 2), + [822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_roman_parens, 2), + [824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heading, 4), + [826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heading, 4), + [828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_with_heading, 2), + [830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_with_heading, 2), + [832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 3), + [834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 3), + [836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frontmatter, 6), + [838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_frontmatter, 6), + [840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_quote, 3), + [842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_quote, 3), + [844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 1), + [846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 1), + [848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_attribute, 3), + [850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_attribute, 3), + [852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frontmatter, 7), + [854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_frontmatter, 7), + [856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), + [858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), + [860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(268), + [863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_task, 3), + [865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_task, 3), + [867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), + [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), + [871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(871), + [874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(434), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(540), + [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), + [884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), + [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), + [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), + [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), + [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), + [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), + [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), + [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), + [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(376), + [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), + [937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(832), + [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), + [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), + [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(314), + [951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), + [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 2), SHIFT_REPEAT(360), + [958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 2), + [960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 2), SHIFT_REPEAT(797), + [963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_caption_repeat1, 2), + [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), + [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), + [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), + [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), + [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), + [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), + [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), + [985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_quote_prefix, 1), + [987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_quote_prefix, 1), + [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), + [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), + [1003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(319), + [1006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(361), + [1009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(775), + [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [1014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), + [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [1018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [1020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [1022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [1024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [1026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [1028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [1030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [1034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [1036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [1038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [1040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [1042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [1044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [1046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(354), + [1049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(720), + [1052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), + [1054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [1056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline, 1), + [1058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(356), + [1061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(797), + [1064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [1066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [1068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [1070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(359), + [1073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), + [1075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(775), + [1078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), + [1080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [1082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline, 1), + [1084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), + [1086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 2, .dynamic_precedence = -1000), + [1088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 2, .dynamic_precedence = -1000), + [1090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [1094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [1096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [1098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [1100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [1102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 1), + [1104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_caption_repeat1, 1), + [1106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_line, 2), + [1108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_line, 2), + [1110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [1112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [1114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [1116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [1118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [1120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(381), + [1123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(320), + [1126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(374), + [1129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(832), + [1132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2), + [1134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2), SHIFT_REPEAT(871), + [1137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2), SHIFT_REPEAT(434), + [1140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2), SHIFT_REPEAT(433), + [1143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2), SHIFT_REPEAT(540), + [1146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2), SHIFT_REPEAT(933), + [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), + [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [1153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(323), + [1156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__table_content, 1), SHIFT(957), + [1159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__table_content, 1), SHIFT(979), + [1162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [1164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [1170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [1176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [1178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [1180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [1184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [1188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [1192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [1194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [1196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [1198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [1200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [1202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [1204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [1206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [1208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 2), + [1210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 2), SHIFT_REPEAT(712), + [1213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 2), SHIFT_REPEAT(824), + [1216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [1218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [1220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [1222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [1224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [1226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [1228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2), + [1234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2), SHIFT_REPEAT(37), + [1237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2), SHIFT_REPEAT(827), + [1240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2), + [1242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2), SHIFT_REPEAT(30), + [1245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2), SHIFT_REPEAT(886), + [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 2), + [1250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 2), SHIFT_REPEAT(36), + [1253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 2), SHIFT_REPEAT(750), + [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [1266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code, 1), + [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [1274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_repeat1, 2), SHIFT_REPEAT(1045), + [1277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_code_repeat1, 2), + [1279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_repeat1, 2), SHIFT_REPEAT(794), + [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [1292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [1294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [1296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 1), + [1304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1), + [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1), + [1332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value, 3), + [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_name, 1), + [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, .production_id = 4), + [1376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_no_newline, 2), + [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [1384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 2), SHIFT_REPEAT(52), + [1387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 2), + [1389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 2), SHIFT_REPEAT(820), + [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 3), + [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_no_newline, 3, .production_id = 7), + [1396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 2), + [1398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 2), SHIFT_REPEAT(268), + [1401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_quote_content, 2), + [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [1405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_quote_content, 1), + [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), + [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), [1481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frontmatter_content, 1), - [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), - [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [1517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__comment_no_newline_repeat1, 2), SHIFT_REPEAT(670), - [1520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_no_newline_repeat1, 2), - [1522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_frontmatter_content_repeat1, 2), SHIFT_REPEAT(921), - [1525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_frontmatter_content_repeat1, 2), - [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [1671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_definition_repeat1, 2), - [1673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_definition_repeat1, 2), SHIFT_REPEAT(297), - [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [1678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [1682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dash, 3), - [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [1686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_item_content, 3), - [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__heading_content_repeat1, 2), - [1690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__heading_content_repeat1, 2), SHIFT_REPEAT(364), - [1693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(882), - [1696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [1700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(874), - [1703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_item_content, 2), - [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [1707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(754), - [1710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(867), - [1713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__paragraph_content_repeat1, 2), - [1715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__paragraph_content_repeat1, 2), SHIFT_REPEAT(318), - [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [1722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_task, 3), - [1724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 3), - [1726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 3), - [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line, 2), - [1732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(847), - [1735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_task, 2), - [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [1743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_no_newline_repeat1, 1), - [1745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(831), - [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [1750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 3), - [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [1754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heading_content, 2), - [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [1764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 2), - [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 2), - [1768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dash, 2), - [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heading_content, 1), - [1772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(711), - [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [1789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_alpha_parens, 2), - [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [1793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_alpha_parens, 2), - [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [1799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_roman_parens, 2), - [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [1805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_roman_parens, 2), - [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [1821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_content, 2), - [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [1831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div_marker_begin, 1), - [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [1839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_roman_paren, 2), - [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [1863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_definition, 5, .production_id = 11), - [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [1887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_roman_paren, 2), - [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_decimal_period, 2), - [1893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_alpha_period, 2), - [1895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_alpha_period, 2), - [1897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_roman_period, 2), - [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_roman_period, 2), - [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [1913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__paragraph_content_repeat1, 3), + [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), + [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [1519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_definition_repeat1, 2), + [1521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_definition_repeat1, 2), SHIFT_REPEAT(305), + [1524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_period_repeat1, 2), + [1526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_decimal_period_repeat1, 2), SHIFT_REPEAT(41), + [1529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_paren_repeat1, 2), + [1531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_decimal_paren_repeat1, 2), SHIFT_REPEAT(49), + [1534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_parens_repeat1, 2), + [1536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_decimal_parens_repeat1, 2), SHIFT_REPEAT(45), + [1539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_period_repeat1, 2), + [1541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_period_repeat1, 2), SHIFT_REPEAT(43), + [1544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_paren_repeat1, 2), + [1546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_paren_repeat1, 2), SHIFT_REPEAT(51), + [1549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_parens_repeat1, 2), + [1551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_parens_repeat1, 2), SHIFT_REPEAT(40), + [1554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_period_repeat1, 2), + [1556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_period_repeat1, 2), SHIFT_REPEAT(44), + [1559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_paren_repeat1, 2), + [1561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_paren_repeat1, 2), SHIFT_REPEAT(50), + [1564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_parens_repeat1, 2), + [1566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_parens_repeat1, 2), SHIFT_REPEAT(31), + [1569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_period_repeat1, 2), + [1571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_period_repeat1, 2), SHIFT_REPEAT(47), + [1574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_paren_repeat1, 2), + [1576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_paren_repeat1, 2), SHIFT_REPEAT(29), + [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [1581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_parens_repeat1, 2), + [1583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_parens_repeat1, 2), SHIFT_REPEAT(32), + [1586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [1598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [1604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_no_newline_repeat1, 2), + [1606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__comment_no_newline_repeat1, 2), SHIFT_REPEAT(664), + [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), + [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [1661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_frontmatter_content_repeat1, 2), SHIFT_REPEAT(1020), + [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_frontmatter_content_repeat1, 2), + [1666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [1670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [1672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_parens_repeat1, 2), + [1674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_parens_repeat1, 2), SHIFT_REPEAT(33), + [1677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_paren_repeat1, 2), + [1679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_paren_repeat1, 2), SHIFT_REPEAT(46), + [1682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_period_repeat1, 2), + [1684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_period_repeat1, 2), SHIFT_REPEAT(48), + [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [1711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(886), + [1714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heading_content, 2), + [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [1722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 3), + [1724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_item_content, 2), + [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [1728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(827), + [1731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(824), + [1734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line, 2), + [1736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(820), + [1739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_no_newline_repeat1, 1), + [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [1745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dash, 3), + [1747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 3), + [1749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 3), + [1751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_task, 3), + [1753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(794), + [1756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(750), + [1759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_task, 2), + [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [1765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 2), + [1767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 2), + [1769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dash, 2), + [1771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heading_content, 1), + [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [1775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_item_content, 3), + [1777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__paragraph_content_repeat1, 2), + [1779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__paragraph_content_repeat1, 2), SHIFT_REPEAT(315), + [1782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(887), + [1785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__heading_content_repeat1, 2), + [1787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__heading_content_repeat1, 2), SHIFT_REPEAT(352), + [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__paragraph_content_repeat1, 3), + [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [1818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div_marker_begin, 1), + [1820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_separator_repeat1, 2), SHIFT_REPEAT(939), + [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [1829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(363), + [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_definition, 4), + [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [1852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [1854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [1858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [1860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_row_repeat1, 2), SHIFT_REPEAT(353), + [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [1865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_content, 3), + [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_content, 4), - [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_content, 3), - [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [1937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_decimal_paren, 2), - [1939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_row_repeat1, 2), SHIFT_REPEAT(365), - [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_alpha_paren, 2), - [1944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_alpha_paren, 2), - [1946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_separator_repeat1, 2), SHIFT_REPEAT(988), - [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [1953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_decimal_parens, 2), - [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [1957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_definition, 4), - [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [1963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unchecked, 3), - [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [1967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_checked, 3), - [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [1979] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [1997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block_info, 2, .production_id = 6), - [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key, 1), - [2005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_separator_repeat1, 2), - [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_row_repeat1, 2), - [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [2047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_cell, 1), - [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [2125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div_marker_begin, 3), - [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [2139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_label, 1), - [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [2181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_label, 1), - [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_alpha_period, 2), + [1933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_alpha_period, 2), + [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [1939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_definition, 5, .production_id = 11), + [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [1943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_roman_period, 2), + [1945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_roman_period, 2), + [1947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_decimal_paren, 2), + [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [1953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_alpha_paren, 2), + [1955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_alpha_paren, 2), + [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [1959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_roman_paren, 2), + [1961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_roman_paren, 2), + [1963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_decimal_parens, 2), + [1965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_alpha_parens, 2), + [1967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_alpha_parens, 2), + [1969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_roman_parens, 2), + [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [1975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_roman_parens, 2), + [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [1985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_decimal_period, 2), + [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_content, 2), + [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [2053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key, 1), + [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [2061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_cell, 1), + [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [2065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_label, 1), + [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [2109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div_marker_begin, 3), + [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [2197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_label, 1), + [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [2293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_checked, 3), + [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [2303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unchecked, 3), + [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [2323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block_info, 2, .production_id = 6), + [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [2327] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [2361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_separator_repeat1, 2), + [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [2365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_row_repeat1, 2), }; enum ts_external_scanner_symbol_identifiers { @@ -28475,11 +30428,12 @@ enum ts_external_scanner_symbol_identifiers { ts_external_token__block_quote_continuation = 36, ts_external_token__thematic_break_dash = 37, ts_external_token__thematic_break_star = 38, - ts_external_token__footnote_begin = 39, + ts_external_token__footnote_mark_begin = 39, ts_external_token__footnote_end = 40, ts_external_token__table_caption_begin = 41, ts_external_token__table_caption_end = 42, - ts_external_token__error = 43, + ts_external_token__in_fallback = 43, + ts_external_token__error = 44, }; static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { @@ -28522,14 +30476,15 @@ static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { [ts_external_token__block_quote_continuation] = sym__block_quote_continuation, [ts_external_token__thematic_break_dash] = sym__thematic_break_dash, [ts_external_token__thematic_break_star] = sym__thematic_break_star, - [ts_external_token__footnote_begin] = sym__footnote_begin, + [ts_external_token__footnote_mark_begin] = sym__footnote_mark_begin, [ts_external_token__footnote_end] = sym__footnote_end, [ts_external_token__table_caption_begin] = sym__table_caption_begin, [ts_external_token__table_caption_end] = sym__table_caption_end, + [ts_external_token__in_fallback] = sym__in_fallback, [ts_external_token__error] = sym__error, }; -static const bool ts_external_scanner_states[76][EXTERNAL_TOKEN_COUNT] = { +static const bool ts_external_scanner_states[78][EXTERNAL_TOKEN_COUNT] = { [1] = { [ts_external_token__ignored] = true, [ts_external_token__block_close] = true, @@ -28570,10 +30525,11 @@ static const bool ts_external_scanner_states[76][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__block_quote_continuation] = true, [ts_external_token__thematic_break_dash] = true, [ts_external_token__thematic_break_star] = true, - [ts_external_token__footnote_begin] = true, + [ts_external_token__footnote_mark_begin] = true, [ts_external_token__footnote_end] = true, [ts_external_token__table_caption_begin] = true, [ts_external_token__table_caption_end] = true, + [ts_external_token__in_fallback] = true, [ts_external_token__error] = true, }, [2] = { @@ -28606,9 +30562,9 @@ static const bool ts_external_scanner_states[76][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__block_quote_continuation] = true, [ts_external_token__thematic_break_dash] = true, [ts_external_token__thematic_break_star] = true, - [ts_external_token__footnote_begin] = true, }, [3] = { + [ts_external_token__block_close] = true, [ts_external_token__newline] = true, [ts_external_token__heading_begin] = true, [ts_external_token__div_begin] = true, @@ -28637,10 +30593,8 @@ static const bool ts_external_scanner_states[76][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__block_quote_continuation] = true, [ts_external_token__thematic_break_dash] = true, [ts_external_token__thematic_break_star] = true, - [ts_external_token__footnote_begin] = true, }, [4] = { - [ts_external_token__block_close] = true, [ts_external_token__newline] = true, [ts_external_token__heading_begin] = true, [ts_external_token__div_begin] = true, @@ -28669,7 +30623,6 @@ static const bool ts_external_scanner_states[76][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__block_quote_continuation] = true, [ts_external_token__thematic_break_dash] = true, [ts_external_token__thematic_break_star] = true, - [ts_external_token__footnote_begin] = true, }, [5] = { [ts_external_token__newline] = true, @@ -28700,7 +30653,6 @@ static const bool ts_external_scanner_states[76][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__block_quote_continuation] = true, [ts_external_token__thematic_break_dash] = true, [ts_external_token__thematic_break_star] = true, - [ts_external_token__footnote_begin] = true, [ts_external_token__footnote_end] = true, }, [6] = { @@ -28731,7 +30683,6 @@ static const bool ts_external_scanner_states[76][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__block_quote_continuation] = true, [ts_external_token__thematic_break_dash] = true, [ts_external_token__thematic_break_star] = true, - [ts_external_token__footnote_begin] = true, }, [7] = { [ts_external_token__block_close] = true, @@ -28761,9 +30712,9 @@ static const bool ts_external_scanner_states[76][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__block_quote_continuation] = true, [ts_external_token__thematic_break_dash] = true, [ts_external_token__thematic_break_star] = true, - [ts_external_token__footnote_begin] = true, }, [8] = { + [ts_external_token__block_close] = true, [ts_external_token__newline] = true, [ts_external_token__heading_begin] = true, [ts_external_token__div_begin] = true, @@ -28792,7 +30743,6 @@ static const bool ts_external_scanner_states[76][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__block_quote_continuation] = true, [ts_external_token__thematic_break_dash] = true, [ts_external_token__thematic_break_star] = true, - [ts_external_token__footnote_begin] = true, [ts_external_token__table_caption_begin] = true, }, [9] = { @@ -28824,12 +30774,9 @@ static const bool ts_external_scanner_states[76][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__block_quote_continuation] = true, [ts_external_token__thematic_break_dash] = true, [ts_external_token__thematic_break_star] = true, - [ts_external_token__footnote_begin] = true, - [ts_external_token__footnote_end] = true, [ts_external_token__table_caption_begin] = true, }, [10] = { - [ts_external_token__block_close] = true, [ts_external_token__newline] = true, [ts_external_token__heading_begin] = true, [ts_external_token__div_begin] = true, @@ -28858,15 +30805,15 @@ static const bool ts_external_scanner_states[76][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__block_quote_continuation] = true, [ts_external_token__thematic_break_dash] = true, [ts_external_token__thematic_break_star] = true, - [ts_external_token__footnote_begin] = true, + [ts_external_token__footnote_end] = true, [ts_external_token__table_caption_begin] = true, }, [11] = { [ts_external_token__newline] = true, [ts_external_token__heading_begin] = true, [ts_external_token__div_begin] = true, - [ts_external_token__div_end] = true, [ts_external_token__code_block_begin] = true, + [ts_external_token__code_block_end] = true, [ts_external_token_list_marker_dash] = true, [ts_external_token_list_marker_star] = true, [ts_external_token_list_marker_plus] = true, @@ -28891,14 +30838,13 @@ static const bool ts_external_scanner_states[76][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__block_quote_continuation] = true, [ts_external_token__thematic_break_dash] = true, [ts_external_token__thematic_break_star] = true, - [ts_external_token__footnote_begin] = true, }, [12] = { [ts_external_token__newline] = true, [ts_external_token__heading_begin] = true, [ts_external_token__div_begin] = true, + [ts_external_token__div_end] = true, [ts_external_token__code_block_begin] = true, - [ts_external_token__code_block_end] = true, [ts_external_token_list_marker_dash] = true, [ts_external_token_list_marker_star] = true, [ts_external_token_list_marker_plus] = true, @@ -28923,16 +30869,13 @@ static const bool ts_external_scanner_states[76][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__block_quote_continuation] = true, [ts_external_token__thematic_break_dash] = true, [ts_external_token__thematic_break_star] = true, - [ts_external_token__footnote_begin] = true, - [ts_external_token__footnote_end] = true, }, [13] = { - [ts_external_token__block_close] = true, [ts_external_token__newline] = true, [ts_external_token__heading_begin] = true, [ts_external_token__div_begin] = true, + [ts_external_token__div_end] = true, [ts_external_token__code_block_begin] = true, - [ts_external_token__code_block_end] = true, [ts_external_token_list_marker_dash] = true, [ts_external_token_list_marker_star] = true, [ts_external_token_list_marker_plus] = true, @@ -28957,15 +30900,14 @@ static const bool ts_external_scanner_states[76][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__block_quote_continuation] = true, [ts_external_token__thematic_break_dash] = true, [ts_external_token__thematic_break_star] = true, - [ts_external_token__footnote_begin] = true, + [ts_external_token__footnote_end] = true, }, [14] = { - [ts_external_token__block_close] = true, [ts_external_token__newline] = true, [ts_external_token__heading_begin] = true, [ts_external_token__div_begin] = true, - [ts_external_token__div_end] = true, [ts_external_token__code_block_begin] = true, + [ts_external_token__code_block_end] = true, [ts_external_token_list_marker_dash] = true, [ts_external_token_list_marker_star] = true, [ts_external_token_list_marker_plus] = true, @@ -28990,7 +30932,7 @@ static const bool ts_external_scanner_states[76][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__block_quote_continuation] = true, [ts_external_token__thematic_break_dash] = true, [ts_external_token__thematic_break_star] = true, - [ts_external_token__footnote_begin] = true, + [ts_external_token__footnote_end] = true, }, [15] = { [ts_external_token__eof_or_newline] = true, @@ -29022,11 +30964,8 @@ static const bool ts_external_scanner_states[76][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__block_quote_continuation] = true, [ts_external_token__thematic_break_dash] = true, [ts_external_token__thematic_break_star] = true, - [ts_external_token__footnote_begin] = true, - [ts_external_token__footnote_end] = true, }, [16] = { - [ts_external_token__block_close] = true, [ts_external_token__eof_or_newline] = true, [ts_external_token__newline] = true, [ts_external_token__heading_begin] = true, @@ -29056,9 +30995,10 @@ static const bool ts_external_scanner_states[76][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__block_quote_continuation] = true, [ts_external_token__thematic_break_dash] = true, [ts_external_token__thematic_break_star] = true, - [ts_external_token__footnote_begin] = true, + [ts_external_token__footnote_end] = true, }, [17] = { + [ts_external_token__block_close] = true, [ts_external_token__eof_or_newline] = true, [ts_external_token__newline] = true, [ts_external_token__heading_begin] = true, @@ -29088,14 +31028,14 @@ static const bool ts_external_scanner_states[76][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__block_quote_continuation] = true, [ts_external_token__thematic_break_dash] = true, [ts_external_token__thematic_break_star] = true, - [ts_external_token__footnote_begin] = true, }, [18] = { + [ts_external_token__block_close] = true, [ts_external_token__newline] = true, [ts_external_token__heading_begin] = true, [ts_external_token__div_begin] = true, + [ts_external_token__div_end] = true, [ts_external_token__code_block_begin] = true, - [ts_external_token__code_block_end] = true, [ts_external_token_list_marker_dash] = true, [ts_external_token_list_marker_star] = true, [ts_external_token_list_marker_plus] = true, @@ -29120,14 +31060,14 @@ static const bool ts_external_scanner_states[76][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__block_quote_continuation] = true, [ts_external_token__thematic_break_dash] = true, [ts_external_token__thematic_break_star] = true, - [ts_external_token__footnote_begin] = true, }, [19] = { + [ts_external_token__block_close] = true, [ts_external_token__newline] = true, [ts_external_token__heading_begin] = true, [ts_external_token__div_begin] = true, - [ts_external_token__div_end] = true, [ts_external_token__code_block_begin] = true, + [ts_external_token__code_block_end] = true, [ts_external_token_list_marker_dash] = true, [ts_external_token_list_marker_star] = true, [ts_external_token_list_marker_plus] = true, @@ -29152,8 +31092,6 @@ static const bool ts_external_scanner_states[76][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__block_quote_continuation] = true, [ts_external_token__thematic_break_dash] = true, [ts_external_token__thematic_break_star] = true, - [ts_external_token__footnote_begin] = true, - [ts_external_token__footnote_end] = true, }, [20] = { [ts_external_token__eof_or_newline] = true, @@ -29173,22 +31111,9 @@ static const bool ts_external_scanner_states[76][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__list_marker_task_begin] = true, }, [23] = { - [ts_external_token__newline] = true, - [ts_external_token__list_item_continuation] = true, - [ts_external_token__list_item_end] = true, - [ts_external_token__block_quote_continuation] = true, - [ts_external_token__table_caption_begin] = true, - }, - [24] = { [ts_external_token__table_caption_end] = true, }, - [25] = { - [ts_external_token__block_close] = true, - [ts_external_token__newline] = true, - [ts_external_token__block_quote_continuation] = true, - [ts_external_token__table_caption_begin] = true, - }, - [26] = { + [24] = { [ts_external_token__block_close] = true, [ts_external_token_list_marker_dash] = true, [ts_external_token_list_marker_star] = true, @@ -29196,30 +31121,43 @@ static const bool ts_external_scanner_states[76][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__list_marker_task_begin] = true, [ts_external_token__block_quote_continuation] = true, }, - [27] = { + [25] = { [ts_external_token__block_quote_continuation] = true, }, - [28] = { + [26] = { [ts_external_token_list_marker_dash] = true, [ts_external_token_list_marker_star] = true, [ts_external_token_list_marker_plus] = true, [ts_external_token__list_marker_task_begin] = true, [ts_external_token__block_quote_continuation] = true, }, + [27] = { + [ts_external_token__newline] = true, + }, + [28] = { + [ts_external_token__eof_or_newline] = true, + }, [29] = { [ts_external_token__newline] = true, + [ts_external_token__list_item_continuation] = true, + [ts_external_token__list_item_end] = true, + [ts_external_token__block_quote_continuation] = true, + [ts_external_token__table_caption_begin] = true, }, [30] = { [ts_external_token__block_close] = true, + [ts_external_token__newline] = true, [ts_external_token__block_quote_continuation] = true, + [ts_external_token__table_caption_begin] = true, }, [31] = { [ts_external_token__block_close] = true, - [ts_external_token__list_marker_task_begin] = true, [ts_external_token__block_quote_continuation] = true, }, [32] = { - [ts_external_token__eof_or_newline] = true, + [ts_external_token__block_close] = true, + [ts_external_token__list_marker_task_begin] = true, + [ts_external_token__block_quote_continuation] = true, }, [33] = { [ts_external_token__block_close] = true, @@ -29249,63 +31187,63 @@ static const bool ts_external_scanner_states[76][EXTERNAL_TOKEN_COUNT] = { }, [38] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_definition] = true, + [ts_external_token_list_marker_lower_alpha_parens] = true, }, [39] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_upper_alpha_paren] = true, + [ts_external_token_list_marker_lower_alpha_period] = true, }, [40] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_decimal_period] = true, + [ts_external_token_list_marker_upper_roman_paren] = true, }, [41] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_decimal_paren] = true, + [ts_external_token_list_marker_upper_roman_period] = true, }, [42] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_decimal_parens] = true, + [ts_external_token_list_marker_lower_roman_parens] = true, }, [43] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_lower_alpha_period] = true, + [ts_external_token_list_marker_lower_roman_paren] = true, }, [44] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_lower_alpha_paren] = true, + [ts_external_token_list_marker_lower_roman_period] = true, }, [45] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_lower_alpha_parens] = true, + [ts_external_token_list_marker_upper_alpha_parens] = true, }, [46] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_upper_alpha_period] = true, + [ts_external_token_list_marker_definition] = true, }, [47] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_upper_alpha_parens] = true, + [ts_external_token_list_marker_decimal_period] = true, }, [48] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_lower_roman_period] = true, + [ts_external_token_list_marker_decimal_paren] = true, }, [49] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_lower_roman_paren] = true, + [ts_external_token_list_marker_decimal_parens] = true, }, [50] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_lower_roman_parens] = true, + [ts_external_token_list_marker_lower_alpha_paren] = true, }, [51] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_upper_roman_period] = true, + [ts_external_token_list_marker_upper_alpha_period] = true, }, [52] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_upper_roman_paren] = true, + [ts_external_token_list_marker_upper_alpha_paren] = true, }, [53] = { [ts_external_token__block_close] = true, @@ -29338,8 +31276,7 @@ static const bool ts_external_scanner_states[76][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__block_quote_continuation] = true, }, [59] = { - [ts_external_token__block_close] = true, - [ts_external_token__code_block_end] = true, + [ts_external_token_list_marker_plus] = true, [ts_external_token__block_quote_continuation] = true, }, [60] = { @@ -29347,7 +31284,8 @@ static const bool ts_external_scanner_states[76][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__heading_continuation] = true, }, [61] = { - [ts_external_token_list_marker_dash] = true, + [ts_external_token__block_close] = true, + [ts_external_token__code_block_end] = true, [ts_external_token__block_quote_continuation] = true, }, [62] = { @@ -29355,42 +31293,43 @@ static const bool ts_external_scanner_states[76][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__block_quote_continuation] = true, }, [63] = { - [ts_external_token__block_close] = true, - [ts_external_token__div_end] = true, + [ts_external_token__list_marker_task_begin] = true, [ts_external_token__block_quote_continuation] = true, }, [64] = { - [ts_external_token__list_marker_task_begin] = true, + [ts_external_token__list_item_continuation] = true, [ts_external_token__block_quote_continuation] = true, }, [65] = { - [ts_external_token__block_close] = true, - [ts_external_token__eof_or_newline] = true, + [ts_external_token_list_marker_dash] = true, [ts_external_token__block_quote_continuation] = true, }, [66] = { - [ts_external_token__list_item_continuation] = true, + [ts_external_token__block_close] = true, + [ts_external_token__eof_or_newline] = true, [ts_external_token__block_quote_continuation] = true, }, [67] = { - [ts_external_token_list_marker_plus] = true, + [ts_external_token__block_close] = true, + [ts_external_token__div_end] = true, [ts_external_token__block_quote_continuation] = true, }, [68] = { - [ts_external_token__eof_or_newline] = true, - [ts_external_token__close_paragraph] = true, + [ts_external_token__footnote_mark_begin] = true, + [ts_external_token__in_fallback] = true, }, [69] = { - [ts_external_token__list_marker_task_begin] = true, + [ts_external_token__eof_or_newline] = true, + [ts_external_token__close_paragraph] = true, }, [70] = { - [ts_external_token__block_close] = true, + [ts_external_token__list_marker_task_begin] = true, }, [71] = { - [ts_external_token__footnote_end] = true, + [ts_external_token__block_close] = true, }, [72] = { - [ts_external_token__list_item_continuation] = true, + [ts_external_token__footnote_end] = true, }, [73] = { [ts_external_token_list_marker_star] = true, @@ -29401,6 +31340,12 @@ static const bool ts_external_scanner_states[76][EXTERNAL_TOKEN_COUNT] = { [75] = { [ts_external_token_list_marker_dash] = true, }, + [76] = { + [ts_external_token__list_item_continuation] = true, + }, + [77] = { + [ts_external_token__footnote_mark_begin] = true, + }, }; #ifdef __cplusplus diff --git a/tree-sitter-djot/src/scanner.c b/tree-sitter-djot/src/scanner.c index bdf5338..e7730a2 100644 --- a/tree-sitter-djot/src/scanner.c +++ b/tree-sitter-djot/src/scanner.c @@ -54,11 +54,13 @@ typedef enum { BLOCK_QUOTE_CONTINUATION, THEMATIC_BREAK_DASH, THEMATIC_BREAK_STAR, - FOOTNOTE_BEGIN, + FOOTNOTE_MARK_BEGIN, FOOTNOTE_END, TABLE_CAPTION_BEGIN, TABLE_CAPTION_END, + IN_FALLBACK, + ERROR, } TokenType; @@ -1344,20 +1346,18 @@ static bool parse_heading(Scanner *s, TSLexer *lexer, return false; } -static bool parse_open_bracket(Scanner *s, TSLexer *lexer, - const bool *valid_symbols) { - if (!valid_symbols[FOOTNOTE_BEGIN]) { +static bool parse_footnote_begin(Scanner *s, TSLexer *lexer, + const bool *valid_symbols) { + if (!valid_symbols[FOOTNOTE_MARK_BEGIN]) { return false; } - advance(s, lexer); - if (lexer->lookahead != '^') { - return false; + if (!valid_symbols[IN_FALLBACK]) { + push_block(s, FOOTNOTE, s->indent + 2); } - advance(s, lexer); - push_block(s, FOOTNOTE, s->indent + 2); - lexer->mark_end(lexer); - lexer->result_symbol = FOOTNOTE_BEGIN; + + lexer->result_symbol = FOOTNOTE_MARK_BEGIN; + return true; } @@ -1627,6 +1627,9 @@ bool tree_sitter_djot_external_scanner_scan(void *payload, TSLexer *lexer, if (parse_footnote_end(s, lexer, valid_symbols)) { return true; } + if (parse_footnote_begin(s, lexer, valid_symbols)) { + return true; + } if (valid_symbols[BLOCK_CLOSE] && close_list_nested_block_if_needed(s, lexer, !is_newline)) { @@ -1672,11 +1675,6 @@ bool tree_sitter_djot_external_scanner_scan(void *payload, TSLexer *lexer, return true; } break; - case '[': - if (parse_open_bracket(s, lexer, valid_symbols)) { - return true; - } - break; case '\n': if (parse_newline(s, lexer, valid_symbols)) { return true; diff --git a/tree-sitter-djot/test/corpus/syntax.txt b/tree-sitter-djot/test/corpus/syntax.txt index b9782f2..22c7e1d 100644 --- a/tree-sitter-djot/test/corpus/syntax.txt +++ b/tree-sitter-djot/test/corpus/syntax.txt @@ -2672,72 +2672,33 @@ Footnote: With block quote =============================================================================== Paragraph: broken things =============================================================================== -1 * 2 - -2 _ 1 - -1 ^ 2 - -~ x - -{*x - -{=x - -{+x - -{-x - -^x - -{^x - -:x - -_ x _ - -_x _ - -_ x_ +| -x * x * +- -x *x * ++ -x * x* +* -[x +[x]: -^ +[^f -| +{.a -` +{#a -: +{a=1 -- +{% -[x]( +{% a -) +{% a % ------------------------------------------------------------------------------- (document - (paragraph) - (paragraph) - (paragraph) - (paragraph) - (paragraph) - (paragraph) - (paragraph) - (paragraph) - (paragraph) - (paragraph) - (paragraph) - (paragraph) - (paragraph) (paragraph) (paragraph) (paragraph) From 34928cff2d012597640e49e3cea555b8def405ec Mon Sep 17 00:00:00 2001 From: Jonas Hietala Date: Sun, 8 Sep 2024 20:41:38 +0200 Subject: [PATCH 24/46] Remove locals, not sure what to do with a split parser --- tree-sitter-djot/queries/locals.scm | 17 ----------------- tree-sitter-djot/test/corpus/syntax.txt | 3 ++- 2 files changed, 2 insertions(+), 18 deletions(-) delete mode 100644 tree-sitter-djot/queries/locals.scm diff --git a/tree-sitter-djot/queries/locals.scm b/tree-sitter-djot/queries/locals.scm deleted file mode 100644 index 1ac2752..0000000 --- a/tree-sitter-djot/queries/locals.scm +++ /dev/null @@ -1,17 +0,0 @@ -(link_reference_definition - (link_label) @local.definition) - -(footnote - (reference_label) @local.definition) - -(collapsed_reference_link - (link_text) @local.reference) - -(full_reference_link - (link_label) @local.reference) - -(full_reference_image - (link_label) @local.reference) - -(footnote_reference - (reference_label) @local.reference) diff --git a/tree-sitter-djot/test/corpus/syntax.txt b/tree-sitter-djot/test/corpus/syntax.txt index 22c7e1d..22cf3f8 100644 --- a/tree-sitter-djot/test/corpus/syntax.txt +++ b/tree-sitter-djot/test/corpus/syntax.txt @@ -457,7 +457,8 @@ Block quote: with hard line break (block_quote (block_quote_marker) (content - (paragraph)))) + (paragraph + (block_quote_marker))))) =============================================================================== Block quote: contain code block From 63dc0412fcc17f1c975da58d2faaa0261caa8c87 Mon Sep 17 00:00:00 2001 From: Jonas Hietala Date: Sat, 5 Oct 2024 20:44:34 +0200 Subject: [PATCH 25/46] Fix highlights --- tree-sitter-djot/queries/highlights.scm | 32 +++++++++++++++---------- 1 file changed, 19 insertions(+), 13 deletions(-) diff --git a/tree-sitter-djot/queries/highlights.scm b/tree-sitter-djot/queries/highlights.scm index 8fe0037..b399571 100644 --- a/tree-sitter-djot/queries/highlights.scm +++ b/tree-sitter-djot/queries/highlights.scm @@ -21,12 +21,23 @@ (heading) @markup.heading -((heading) @markup.heading.1 (#match? @markup.heading.1 "^# ")) -((heading) @markup.heading.2 (#match? @markup.heading.2 "^## ")) -((heading) @markup.heading.3 (#match? @markup.heading.3 "^### ")) -((heading) @markup.heading.4 (#match? @markup.heading.4 "^#### ")) -((heading) @markup.heading.5 (#match? @markup.heading.5 "^##### ")) -((heading) @markup.heading.6 (#match? @markup.heading.6 "^###### ")) +((heading) @markup.heading.1 + (#match? @markup.heading.1 "^# ")) + +((heading) @markup.heading.2 + (#match? @markup.heading.2 "^## ")) + +((heading) @markup.heading.3 + (#match? @markup.heading.3 "^### ")) + +((heading) @markup.heading.4 + (#match? @markup.heading.4 "^#### ")) + +((heading) @markup.heading.5 + (#match? @markup.heading.5 "^##### ")) + +((heading) @markup.heading.6 + (#match? @markup.heading.6 "^###### ")) (thematic_break) @string.special @@ -59,8 +70,7 @@ (language) @attribute -((language_marker) @punctuation.delimiter - (#set! conceal "")) +(language_marker) @punctuation.delimiter [ (block_quote) @@ -155,10 +165,7 @@ (link_reference_definition (link_label) @markup.link.label) -[ - (link_reference_definition) -] @markup.link.url - +(link_reference_definition) @markup.link.url (footnote (reference_label) @markup.link.label) @@ -167,4 +174,3 @@ (footnote_marker_begin) (footnote_marker_end) ] @punctuation.bracket - From fa74cc49c2ebaf35a408eae2b87866a7f5f6d14f Mon Sep 17 00:00:00 2001 From: Jonas Hietala Date: Thu, 9 Jan 2025 09:06:18 +0100 Subject: [PATCH 26/46] feat: Stop elements inside inline urls and update to 0.24.6 --- tree-sitter-djot-inline/grammar.js | 24 +- tree-sitter-djot-inline/package.json | 14 +- tree-sitter-djot-inline/src/grammar.json | 70 +- tree-sitter-djot-inline/src/node-types.json | 5 + tree-sitter-djot-inline/src/parser.c | 40811 ++++++++-------- tree-sitter-djot-inline/src/scanner.c | 87 +- .../src/tree_sitter/alloc.h | 8 +- .../src/tree_sitter/array.h | 12 +- .../src/tree_sitter/parser.h | 52 +- .../test/corpus/syntax.txt | 243 +- tree-sitter-djot-inline/tree-sitter.json | 34 + 11 files changed, 21535 insertions(+), 19825 deletions(-) create mode 100644 tree-sitter-djot-inline/tree-sitter.json diff --git a/tree-sitter-djot-inline/grammar.js b/tree-sitter-djot-inline/grammar.js index c09133f..00c7353 100644 --- a/tree-sitter-djot-inline/grammar.js +++ b/tree-sitter-djot-inline/grammar.js @@ -17,6 +17,7 @@ module.exports = grammar({ [$._image_description_begin, $._symbol_fallback], [$.footnote_marker_begin, $._symbol_fallback], [$.math, $._symbol_fallback], + [$.link_text, $._symbol_fallback], [$._curly_bracket_span_begin, $._curly_bracket_span_fallback], ], @@ -222,13 +223,19 @@ module.exports = grammar({ inline_link: ($) => seq($.link_text, $.inline_link_destination), link_text: ($) => - seq( - $._bracketed_text_begin, - $._square_bracket_span_mark_begin, - $._inline, - // Alias to "]" to allow us to highlight it in Neovim. - // Maybe some bug, or some undocumented behavior? - alias($._square_bracket_span_end, "]"), + choice( + seq( + $._bracketed_text_begin, + $._square_bracket_span_mark_begin, + $._inline, + // Alias to "]" to allow us to highlight it in Neovim. + // Maybe some bug, or some undocumented behavior? + alias($._square_bracket_span_end, "]"), + ), + // Required as we track fallback characters between bracketed begin and end, + // but when it's empty it skips blocks the inline link destination. + // This is an easy workaround for that special case. + "[]", ), span: ($) => @@ -382,6 +389,9 @@ module.exports = grammar({ // Math "$", + + // Empty link text + "[]", ), // Used to branch on inline attributes that may follow any element. diff --git a/tree-sitter-djot-inline/package.json b/tree-sitter-djot-inline/package.json index 7d08a79..560d07b 100644 --- a/tree-sitter-djot-inline/package.json +++ b/tree-sitter-djot-inline/package.json @@ -1,6 +1,6 @@ { "name": "tree-sitter-djot-inline", - "version": "1.0.0", + "version": "1.1.0", "description": "", "main": "bindings/node", "types": "bindings/node", @@ -30,18 +30,6 @@ "tree-sitter-cli": "^0.22.1", "prebuildify": "^6.0.0" }, - "tree-sitter": [ - { - "scope": "text.djot_inline", - "injection-regex": "djot_inline", - "highlights": [ - "queries/highlights.scm" - ], - "injections": [ - "queries/injections.scm" - ] - } - ], "files": [ "grammar.js", "binding.gyp", diff --git a/tree-sitter-djot-inline/src/grammar.json b/tree-sitter-djot-inline/src/grammar.json index 9b05dfe..ea17109 100644 --- a/tree-sitter-djot-inline/src/grammar.json +++ b/tree-sitter-djot-inline/src/grammar.json @@ -1,4 +1,5 @@ { + "$schema": "https://tree-sitter.github.io/tree-sitter/assets/schemas/grammar.schema.json", "name": "djot_inline", "rules": { "inline": { @@ -630,7 +631,7 @@ }, { "type": "SYMBOL", - "name": "_square_bracket_span_begin" + "name": "_square_bracket_span_mark_begin" }, { "type": "SYMBOL", @@ -727,7 +728,7 @@ }, { "type": "SYMBOL", - "name": "_square_bracket_span_begin" + "name": "_square_bracket_span_mark_begin" }, { "type": "CHOICE", @@ -816,28 +817,37 @@ ] }, "link_text": { - "type": "SEQ", + "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "_bracketed_text_begin" - }, - { - "type": "SYMBOL", - "name": "_square_bracket_span_begin" - }, - { - "type": "SYMBOL", - "name": "_inline" + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_bracketed_text_begin" + }, + { + "type": "SYMBOL", + "name": "_square_bracket_span_mark_begin" + }, + { + "type": "SYMBOL", + "name": "_inline" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_square_bracket_span_end" + }, + "named": false, + "value": "]" + } + ] }, { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_square_bracket_span_end" - }, - "named": false, - "value": "]" + "type": "STRING", + "value": "[]" } ] }, @@ -850,7 +860,7 @@ }, { "type": "SYMBOL", - "name": "_square_bracket_span_begin" + "name": "_square_bracket_span_mark_begin" }, { "type": "ALIAS", @@ -961,7 +971,7 @@ }, { "type": "SYMBOL", - "name": "_square_bracket_span_begin" + "name": "_square_bracket_span_mark_begin" }, { "type": "SYMBOL", @@ -1545,7 +1555,7 @@ "members": [ { "type": "SYMBOL", - "name": "_square_bracket_span_begin" + "name": "_square_bracket_span_mark_begin" }, { "type": "SYMBOL", @@ -1567,7 +1577,7 @@ "members": [ { "type": "SYMBOL", - "name": "_square_bracket_span_begin" + "name": "_square_bracket_span_mark_begin" }, { "type": "SYMBOL", @@ -1589,7 +1599,7 @@ "members": [ { "type": "SYMBOL", - "name": "_square_bracket_span_begin" + "name": "_square_bracket_span_mark_begin" }, { "type": "SYMBOL", @@ -1641,6 +1651,10 @@ { "type": "STRING", "value": "$" + }, + { + "type": "STRING", + "value": "[]" } ] }, @@ -1835,6 +1849,10 @@ "math", "_symbol_fallback" ], + [ + "link_text", + "_symbol_fallback" + ], [ "_curly_bracket_span_begin", "_curly_bracket_span_fallback" @@ -1932,7 +1950,7 @@ }, { "type": "SYMBOL", - "name": "_square_bracket_span_begin" + "name": "_square_bracket_span_mark_begin" }, { "type": "SYMBOL", diff --git a/tree-sitter-djot-inline/src/node-types.json b/tree-sitter-djot-inline/src/node-types.json index 1819203..f8ae9e2 100644 --- a/tree-sitter-djot-inline/src/node-types.json +++ b/tree-sitter-djot-inline/src/node-types.json @@ -509,6 +509,7 @@ { "type": "inline", "named": true, + "root": true, "fields": {}, "children": { "multiple": true, @@ -1236,6 +1237,10 @@ ] } }, + { + "type": "\n", + "named": false + }, { "type": "![", "named": false diff --git a/tree-sitter-djot-inline/src/parser.c b/tree-sitter-djot-inline/src/parser.c index 32fedea..c821941 100644 --- a/tree-sitter-djot-inline/src/parser.c +++ b/tree-sitter-djot-inline/src/parser.c @@ -5,15 +5,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 1214 +#define STATE_COUNT 1225 #define LARGE_STATE_COUNT 121 -#define SYMBOL_COUNT 143 +#define SYMBOL_COUNT 145 #define ALIAS_COUNT 8 -#define TOKEN_COUNT 80 +#define TOKEN_COUNT 81 #define EXTERNAL_TOKEN_COUNT 27 #define FIELD_COUNT 0 #define MAX_ALIAS_SEQUENCE_LENGTH 5 -#define PRODUCTION_ID_COUNT 11 +#define PRODUCTION_ID_COUNT 8 enum ts_symbol_identifiers { anon_sym_LBRACE_ = 1, @@ -41,131 +41,133 @@ enum ts_symbol_identifiers { sym__id = 23, anon_sym_LBRACK_RBRACK = 24, anon_sym_BANG_LBRACK = 25, - anon_sym_LBRACK = 26, - anon_sym_LBRACE = 27, - anon_sym_RBRACK = 28, - aux_sym_inline_link_destination_token1 = 29, - anon_sym_LPAREN = 30, - anon_sym_RBRACE = 31, - anon_sym_PERCENT = 32, - aux_sym__comment_with_newline_token1 = 33, - anon_sym_LBRACE_EQ2 = 34, - anon_sym_DOLLAR = 35, - anon_sym_TODO = 36, - anon_sym_WIP = 37, - anon_sym_NOTE = 38, - anon_sym_INFO = 39, - anon_sym_XXX = 40, - sym_fixme = 41, - sym_language = 42, - sym__whitespace = 43, - sym__whitespace1 = 44, - sym__newline = 45, - aux_sym__text_token1 = 46, - anon_sym_DOT = 47, - sym_identifier = 48, - anon_sym_EQ = 49, - anon_sym_DQUOTE = 50, - aux_sym_value_token1 = 51, - aux_sym_value_token2 = 52, - sym__ignored = 53, - sym__verbatim_begin = 54, - sym__verbatim_end = 55, - sym__verbatim_content = 56, - sym__emphasis_mark_begin = 57, - sym_emphasis_end = 58, - sym__strong_mark_begin = 59, - sym_strong_end = 60, - sym__superscript_mark_begin = 61, - sym_superscript_end = 62, - sym__subscript_mark_begin = 63, - sym_subscript_end = 64, - sym__highlighted_mark_begin = 65, - sym_highlighted_end = 66, - sym__insert_mark_begin = 67, - sym_insert_end = 68, - sym__delete_mark_begin = 69, - sym_delete_end = 70, - sym__parens_span_mark_begin = 71, - sym__parens_span_end = 72, - sym__curly_bracket_span_mark_begin = 73, - sym__curly_bracket_span_end = 74, - sym__square_bracket_span_begin = 75, - sym__square_bracket_span_end = 76, - sym__in_fallback = 77, - sym__non_whitespace_check = 78, - sym__error = 79, - sym_inline = 80, - sym__inline = 81, - sym__inline_without_trailing_space = 82, - sym__element = 83, - sym_emphasis = 84, - sym_emphasis_begin = 85, - sym_strong = 86, - sym_strong_begin = 87, - sym_superscript = 88, - sym_superscript_begin = 89, - sym_subscript = 90, - sym_subscript_begin = 91, - sym_highlighted = 92, - sym_highlighted_begin = 93, - sym_insert = 94, - sym_insert_begin = 95, - sym_delete = 96, - sym_delete_begin = 97, - sym_hard_line_break = 98, - sym__smart_punctuation = 99, - sym_autolink = 100, - sym_footnote_reference = 101, - sym_footnote_marker_begin = 102, - sym_reference_label = 103, - sym__image = 104, - sym_full_reference_image = 105, - sym_collapsed_reference_image = 106, - sym_inline_image = 107, - sym_image_description = 108, - sym__image_description_begin = 109, - sym__link = 110, - sym_full_reference_link = 111, - sym_collapsed_reference_link = 112, - sym_inline_link = 113, - sym_link_text = 114, - sym_span = 115, - sym__bracketed_text_begin = 116, - sym_inline_attribute = 117, - sym__curly_bracket_span_begin = 118, - sym__link_label = 119, - sym_inline_link_destination = 120, - sym__parens_span_begin = 121, - sym_comment = 122, - sym__comment_with_spaces = 123, - sym__comment_with_newline = 124, - sym_raw_inline = 125, - sym_raw_inline_attribute = 126, - sym_math = 127, - sym_verbatim = 128, - sym__todo_highlights = 129, - sym_todo = 130, - sym_note = 131, - sym__symbol_fallback = 132, - sym__curly_bracket_span_fallback = 133, - aux_sym__text = 134, - sym_class_name = 135, - sym_class = 136, - sym_key_value = 137, - sym_key = 138, - sym_value = 139, - aux_sym__inline_repeat1 = 140, - aux_sym_inline_attribute_repeat1 = 141, - aux_sym__comment_with_newline_repeat1 = 142, - alias_sym_args = 143, - alias_sym_footnote_marker_end = 144, - alias_sym_link_label = 145, - alias_sym_math_marker = 146, - alias_sym_math_marker_begin = 147, - alias_sym_math_marker_end = 148, - alias_sym_verbatim_marker_begin = 149, - alias_sym_verbatim_marker_end = 150, + anon_sym_LBRACK_RBRACK2 = 26, + anon_sym_LBRACK = 27, + anon_sym_LBRACE = 28, + anon_sym_RBRACK = 29, + aux_sym_inline_link_destination_token1 = 30, + anon_sym_LPAREN = 31, + anon_sym_RBRACE = 32, + anon_sym_PERCENT = 33, + aux_sym__comment_with_newline_token1 = 34, + anon_sym_LBRACE_EQ2 = 35, + anon_sym_DOLLAR = 36, + anon_sym_TODO = 37, + anon_sym_WIP = 38, + anon_sym_NOTE = 39, + anon_sym_INFO = 40, + anon_sym_XXX = 41, + sym_fixme = 42, + sym_language = 43, + sym__whitespace = 44, + sym__whitespace1 = 45, + anon_sym_LF = 46, + aux_sym__text_token1 = 47, + anon_sym_DOT = 48, + sym_identifier = 49, + anon_sym_EQ = 50, + anon_sym_DQUOTE = 51, + aux_sym_value_token1 = 52, + aux_sym_value_token2 = 53, + sym__ignored = 54, + sym__verbatim_begin = 55, + sym__verbatim_end = 56, + sym__verbatim_content = 57, + sym__emphasis_mark_begin = 58, + sym_emphasis_end = 59, + sym__strong_mark_begin = 60, + sym_strong_end = 61, + sym__superscript_mark_begin = 62, + sym_superscript_end = 63, + sym__subscript_mark_begin = 64, + sym_subscript_end = 65, + sym__highlighted_mark_begin = 66, + sym_highlighted_end = 67, + sym__insert_mark_begin = 68, + sym_insert_end = 69, + sym__delete_mark_begin = 70, + sym_delete_end = 71, + sym__parens_span_mark_begin = 72, + sym__parens_span_end = 73, + sym__curly_bracket_span_mark_begin = 74, + sym__curly_bracket_span_end = 75, + sym__square_bracket_span_mark_begin = 76, + sym__square_bracket_span_end = 77, + sym__in_fallback = 78, + sym__non_whitespace_check = 79, + sym__error = 80, + sym_inline = 81, + sym__inline = 82, + sym__inline_without_trailing_space = 83, + sym__element = 84, + sym_emphasis = 85, + sym_emphasis_begin = 86, + sym_strong = 87, + sym_strong_begin = 88, + sym_superscript = 89, + sym_superscript_begin = 90, + sym_subscript = 91, + sym_subscript_begin = 92, + sym_highlighted = 93, + sym_highlighted_begin = 94, + sym_insert = 95, + sym_insert_begin = 96, + sym_delete = 97, + sym_delete_begin = 98, + sym_hard_line_break = 99, + sym__smart_punctuation = 100, + sym_autolink = 101, + sym_footnote_reference = 102, + sym_footnote_marker_begin = 103, + sym_reference_label = 104, + sym__image = 105, + sym_full_reference_image = 106, + sym_collapsed_reference_image = 107, + sym_inline_image = 108, + sym_image_description = 109, + sym__image_description_begin = 110, + sym__link = 111, + sym_full_reference_link = 112, + sym_collapsed_reference_link = 113, + sym_inline_link = 114, + sym_link_text = 115, + sym_span = 116, + sym__bracketed_text_begin = 117, + sym_inline_attribute = 118, + sym__curly_bracket_span_begin = 119, + sym__link_label = 120, + sym_inline_link_destination = 121, + sym__parens_span_begin = 122, + sym_comment = 123, + sym__comment_with_spaces = 124, + sym__comment_with_newline = 125, + sym_raw_inline = 126, + sym_raw_inline_attribute = 127, + sym_math = 128, + sym_verbatim = 129, + sym__todo_highlights = 130, + sym_todo = 131, + sym_note = 132, + sym__symbol_fallback = 133, + sym__curly_bracket_span_fallback = 134, + sym__newline = 135, + aux_sym__text = 136, + sym_class_name = 137, + sym_class = 138, + sym_key_value = 139, + sym_key = 140, + sym_value = 141, + aux_sym__inline_repeat1 = 142, + aux_sym_inline_attribute_repeat1 = 143, + aux_sym__comment_with_newline_repeat1 = 144, + alias_sym_args = 145, + alias_sym_footnote_marker_end = 146, + alias_sym_link_label = 147, + alias_sym_math_marker = 148, + alias_sym_math_marker_begin = 149, + alias_sym_math_marker_end = 150, + alias_sym_verbatim_marker_begin = 151, + alias_sym_verbatim_marker_end = 152, }; static const char * const ts_symbol_names[] = { @@ -195,6 +197,7 @@ static const char * const ts_symbol_names[] = { [sym__id] = "_id", [anon_sym_LBRACK_RBRACK] = "[]", [anon_sym_BANG_LBRACK] = "![", + [anon_sym_LBRACK_RBRACK2] = "[]", [anon_sym_LBRACK] = "[", [anon_sym_LBRACE] = "{", [anon_sym_RBRACK] = "]", @@ -214,7 +217,7 @@ static const char * const ts_symbol_names[] = { [sym_language] = "language", [sym__whitespace] = "_whitespace", [sym__whitespace1] = "_whitespace1", - [sym__newline] = "_newline", + [anon_sym_LF] = "\n", [aux_sym__text_token1] = "_text_token1", [anon_sym_DOT] = ".", [sym_identifier] = "identifier", @@ -244,8 +247,8 @@ static const char * const ts_symbol_names[] = { [sym__parens_span_end] = ")", [sym__curly_bracket_span_mark_begin] = "_curly_bracket_span_mark_begin", [sym__curly_bracket_span_end] = "}", - [sym__square_bracket_span_begin] = "_square_bracket_span_begin", - [sym__square_bracket_span_end] = "_square_bracket_span_end", + [sym__square_bracket_span_mark_begin] = "_square_bracket_span_mark_begin", + [sym__square_bracket_span_end] = "]", [sym__in_fallback] = "_in_fallback", [sym__non_whitespace_check] = "_non_whitespace_check", [sym__error] = "_error", @@ -303,6 +306,7 @@ static const char * const ts_symbol_names[] = { [sym_note] = "note", [sym__symbol_fallback] = "_symbol_fallback", [sym__curly_bracket_span_fallback] = "_curly_bracket_span_fallback", + [sym__newline] = "_newline", [aux_sym__text] = "_text", [sym_class_name] = "class", [sym_class] = "class", @@ -349,6 +353,7 @@ static const TSSymbol ts_symbol_map[] = { [sym__id] = sym__id, [anon_sym_LBRACK_RBRACK] = anon_sym_LBRACK_RBRACK, [anon_sym_BANG_LBRACK] = anon_sym_BANG_LBRACK, + [anon_sym_LBRACK_RBRACK2] = anon_sym_LBRACK_RBRACK, [anon_sym_LBRACK] = anon_sym_LBRACK, [anon_sym_LBRACE] = anon_sym_LBRACE, [anon_sym_RBRACK] = anon_sym_RBRACK, @@ -368,7 +373,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_language] = sym_language, [sym__whitespace] = sym__whitespace, [sym__whitespace1] = sym__whitespace1, - [sym__newline] = sym__newline, + [anon_sym_LF] = anon_sym_LF, [aux_sym__text_token1] = aux_sym__text_token1, [anon_sym_DOT] = anon_sym_DOT, [sym_identifier] = sym_identifier, @@ -398,8 +403,8 @@ static const TSSymbol ts_symbol_map[] = { [sym__parens_span_end] = sym__parens_span_end, [sym__curly_bracket_span_mark_begin] = sym__curly_bracket_span_mark_begin, [sym__curly_bracket_span_end] = anon_sym_RBRACE, - [sym__square_bracket_span_begin] = sym__square_bracket_span_begin, - [sym__square_bracket_span_end] = sym__square_bracket_span_end, + [sym__square_bracket_span_mark_begin] = sym__square_bracket_span_mark_begin, + [sym__square_bracket_span_end] = anon_sym_RBRACK, [sym__in_fallback] = sym__in_fallback, [sym__non_whitespace_check] = sym__non_whitespace_check, [sym__error] = sym__error, @@ -457,6 +462,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_note] = sym_note, [sym__symbol_fallback] = sym__symbol_fallback, [sym__curly_bracket_span_fallback] = sym__curly_bracket_span_fallback, + [sym__newline] = sym__newline, [aux_sym__text] = aux_sym__text, [sym_class_name] = sym_class_name, [sym_class] = sym_class, @@ -581,6 +587,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_LBRACK_RBRACK2] = { + .visible = true, + .named = false, + }, [anon_sym_LBRACK] = { .visible = true, .named = false, @@ -657,9 +667,9 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, - [sym__newline] = { - .visible = false, - .named = true, + [anon_sym_LF] = { + .visible = true, + .named = false, }, [aux_sym__text_token1] = { .visible = false, @@ -777,13 +787,13 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [sym__square_bracket_span_begin] = { + [sym__square_bracket_span_mark_begin] = { .visible = false, .named = true, }, [sym__square_bracket_span_end] = { - .visible = false, - .named = true, + .visible = true, + .named = false, }, [sym__in_fallback] = { .visible = false, @@ -1013,6 +1023,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, + [sym__newline] = { + .visible = false, + .named = true, + }, [aux_sym__text] = { .visible = false, .named = false, @@ -1090,35 +1104,25 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [2] = alias_sym_verbatim_marker_end, }, [2] = { - [2] = anon_sym_RBRACK, - }, - [3] = { [0] = sym_comment, }, - [4] = { + [3] = { [0] = alias_sym_math_marker, [1] = alias_sym_math_marker_begin, [3] = alias_sym_math_marker_end, }, - [5] = { + [4] = { [2] = sym__verbatim_content, }, - [6] = { + [5] = { [3] = alias_sym_footnote_marker_end, }, - [7] = { + [6] = { [1] = alias_sym_link_label, }, - [8] = { - [3] = anon_sym_RBRACK, - }, - [9] = { + [7] = { [2] = alias_sym_args, }, - [10] = { - [2] = sym__verbatim_content, - [3] = anon_sym_RBRACK, - }, }; static const uint16_t ts_non_terminal_alias_map[] = { @@ -1143,123 +1147,123 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1] = 1, [2] = 2, [3] = 3, - [4] = 3, + [4] = 4, [5] = 5, [6] = 6, - [7] = 5, - [8] = 5, - [9] = 5, - [10] = 5, - [11] = 5, - [12] = 5, - [13] = 6, + [7] = 7, + [8] = 8, + [9] = 9, + [10] = 10, + [11] = 11, + [12] = 12, + [13] = 4, [14] = 14, [15] = 5, - [16] = 16, - [17] = 17, - [18] = 3, - [19] = 19, - [20] = 20, - [21] = 21, - [22] = 14, - [23] = 23, - [24] = 24, - [25] = 6, - [26] = 21, - [27] = 20, - [28] = 19, - [29] = 16, - [30] = 14, + [16] = 5, + [17] = 14, + [18] = 5, + [19] = 14, + [20] = 5, + [21] = 14, + [22] = 5, + [23] = 14, + [24] = 5, + [25] = 14, + [26] = 5, + [27] = 14, + [28] = 14, + [29] = 6, + [30] = 7, [31] = 3, - [32] = 23, - [33] = 24, - [34] = 24, - [35] = 21, - [36] = 23, - [37] = 20, - [38] = 6, - [39] = 14, - [40] = 19, - [41] = 3, - [42] = 16, - [43] = 17, - [44] = 17, - [45] = 3, - [46] = 14, - [47] = 23, - [48] = 19, - [49] = 6, - [50] = 24, - [51] = 21, - [52] = 20, - [53] = 19, - [54] = 20, - [55] = 21, - [56] = 24, - [57] = 23, - [58] = 14, - [59] = 17, - [60] = 20, - [61] = 21, - [62] = 16, - [63] = 24, - [64] = 14, - [65] = 19, - [66] = 5, - [67] = 23, - [68] = 3, - [69] = 17, - [70] = 5, - [71] = 6, - [72] = 6, - [73] = 17, - [74] = 16, - [75] = 19, - [76] = 20, - [77] = 21, - [78] = 16, - [79] = 17, - [80] = 3, - [81] = 23, - [82] = 24, - [83] = 16, - [84] = 24, - [85] = 21, - [86] = 20, - [87] = 19, - [88] = 16, - [89] = 17, - [90] = 3, - [91] = 23, - [92] = 24, - [93] = 21, - [94] = 23, - [95] = 20, - [96] = 19, - [97] = 16, - [98] = 5, - [99] = 3, - [100] = 17, - [101] = 17, - [102] = 3, - [103] = 16, - [104] = 23, - [105] = 19, - [106] = 20, - [107] = 21, - [108] = 24, - [109] = 23, - [110] = 14, - [111] = 17, - [112] = 19, - [113] = 16, - [114] = 20, - [115] = 6, - [116] = 21, - [117] = 24, - [118] = 6, - [119] = 119, - [120] = 119, + [32] = 8, + [33] = 9, + [34] = 10, + [35] = 11, + [36] = 12, + [37] = 6, + [38] = 7, + [39] = 3, + [40] = 8, + [41] = 9, + [42] = 10, + [43] = 11, + [44] = 12, + [45] = 6, + [46] = 4, + [47] = 3, + [48] = 8, + [49] = 9, + [50] = 10, + [51] = 11, + [52] = 12, + [53] = 6, + [54] = 7, + [55] = 3, + [56] = 8, + [57] = 9, + [58] = 10, + [59] = 11, + [60] = 12, + [61] = 6, + [62] = 7, + [63] = 3, + [64] = 8, + [65] = 9, + [66] = 10, + [67] = 11, + [68] = 12, + [69] = 6, + [70] = 7, + [71] = 3, + [72] = 8, + [73] = 9, + [74] = 10, + [75] = 11, + [76] = 12, + [77] = 6, + [78] = 7, + [79] = 3, + [80] = 8, + [81] = 9, + [82] = 10, + [83] = 11, + [84] = 12, + [85] = 6, + [86] = 7, + [87] = 3, + [88] = 8, + [89] = 9, + [90] = 10, + [91] = 11, + [92] = 12, + [93] = 6, + [94] = 7, + [95] = 3, + [96] = 8, + [97] = 9, + [98] = 10, + [99] = 11, + [100] = 12, + [101] = 6, + [102] = 7, + [103] = 3, + [104] = 8, + [105] = 9, + [106] = 10, + [107] = 11, + [108] = 12, + [109] = 4, + [110] = 4, + [111] = 4, + [112] = 4, + [113] = 4, + [114] = 4, + [115] = 4, + [116] = 4, + [117] = 7, + [118] = 118, + [119] = 118, + [120] = 14, [121] = 121, [122] = 121, [123] = 121, @@ -1271,1088 +1275,1099 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [129] = 121, [130] = 121, [131] = 131, - [132] = 132, - [133] = 132, - [134] = 131, - [135] = 132, - [136] = 132, - [137] = 132, - [138] = 131, - [139] = 131, + [132] = 131, + [133] = 133, + [134] = 133, + [135] = 131, + [136] = 131, + [137] = 133, + [138] = 133, + [139] = 133, [140] = 131, - [141] = 132, + [141] = 133, [142] = 131, [143] = 131, - [144] = 131, - [145] = 131, - [146] = 132, - [147] = 132, - [148] = 132, - [149] = 132, - [150] = 121, - [151] = 131, - [152] = 132, - [153] = 153, - [154] = 153, - [155] = 153, - [156] = 153, - [157] = 131, - [158] = 153, - [159] = 153, - [160] = 153, - [161] = 153, - [162] = 153, - [163] = 153, + [144] = 133, + [145] = 133, + [146] = 131, + [147] = 133, + [148] = 133, + [149] = 131, + [150] = 131, + [151] = 121, + [152] = 152, + [153] = 152, + [154] = 152, + [155] = 152, + [156] = 152, + [157] = 152, + [158] = 152, + [159] = 152, + [160] = 152, + [161] = 152, + [162] = 133, + [163] = 131, [164] = 164, - [165] = 165, + [165] = 164, [166] = 166, - [167] = 164, + [167] = 166, [168] = 164, [169] = 166, [170] = 170, - [171] = 166, + [171] = 171, [172] = 172, [173] = 173, - [174] = 170, - [175] = 165, - [176] = 172, - [177] = 166, - [178] = 164, - [179] = 166, - [180] = 153, - [181] = 173, - [182] = 166, - [183] = 173, - [184] = 172, - [185] = 164, - [186] = 170, - [187] = 165, - [188] = 172, - [189] = 170, - [190] = 164, - [191] = 165, - [192] = 170, - [193] = 165, - [194] = 172, - [195] = 166, - [196] = 173, - [197] = 165, - [198] = 173, - [199] = 170, + [174] = 174, + [175] = 164, + [176] = 173, + [177] = 170, + [178] = 174, + [179] = 170, + [180] = 166, + [181] = 166, + [182] = 164, + [183] = 164, + [184] = 170, + [185] = 171, + [186] = 172, + [187] = 170, + [188] = 170, + [189] = 173, + [190] = 174, + [191] = 171, + [192] = 172, + [193] = 166, + [194] = 164, + [195] = 171, + [196] = 170, + [197] = 171, + [198] = 172, + [199] = 171, [200] = 172, - [201] = 172, - [202] = 165, - [203] = 173, - [204] = 172, - [205] = 173, - [206] = 166, - [207] = 170, - [208] = 165, - [209] = 166, - [210] = 165, + [201] = 174, + [202] = 173, + [203] = 174, + [204] = 173, + [205] = 174, + [206] = 152, + [207] = 171, + [208] = 166, + [209] = 164, + [210] = 173, [211] = 170, - [212] = 166, + [212] = 171, [213] = 172, - [214] = 164, - [215] = 164, - [216] = 165, - [217] = 170, - [218] = 164, - [219] = 170, - [220] = 173, - [221] = 164, - [222] = 172, - [223] = 223, - [224] = 224, - [225] = 225, - [226] = 226, - [227] = 227, - [228] = 228, - [229] = 229, + [214] = 174, + [215] = 166, + [216] = 173, + [217] = 173, + [218] = 174, + [219] = 166, + [220] = 164, + [221] = 166, + [222] = 164, + [223] = 174, + [224] = 170, + [225] = 171, + [226] = 172, + [227] = 170, + [228] = 171, + [229] = 172, [230] = 173, - [231] = 231, - [232] = 232, + [231] = 174, + [232] = 173, [233] = 233, [234] = 234, - [235] = 224, + [235] = 235, [236] = 236, [237] = 237, [238] = 238, [239] = 239, [240] = 240, - [241] = 241, + [241] = 233, [242] = 242, [243] = 243, [244] = 244, [245] = 245, [246] = 246, - [247] = 173, + [247] = 247, [248] = 248, [249] = 249, - [250] = 233, - [251] = 245, - [252] = 223, + [250] = 250, + [251] = 251, + [252] = 252, [253] = 253, - [254] = 223, - [255] = 253, + [254] = 254, + [255] = 255, [256] = 256, [257] = 257, [258] = 258, - [259] = 225, - [260] = 226, - [261] = 227, - [262] = 228, - [263] = 229, - [264] = 256, - [265] = 231, - [266] = 232, - [267] = 257, - [268] = 234, - [269] = 224, - [270] = 236, - [271] = 237, - [272] = 238, - [273] = 239, - [274] = 240, - [275] = 241, - [276] = 242, - [277] = 243, - [278] = 244, - [279] = 258, - [280] = 246, - [281] = 225, - [282] = 248, - [283] = 226, - [284] = 257, - [285] = 256, - [286] = 227, - [287] = 249, - [288] = 233, - [289] = 245, - [290] = 228, - [291] = 253, - [292] = 223, - [293] = 245, - [294] = 223, - [295] = 253, - [296] = 229, - [297] = 231, - [298] = 233, - [299] = 256, - [300] = 257, - [301] = 258, - [302] = 225, - [303] = 226, - [304] = 227, - [305] = 228, - [306] = 249, - [307] = 232, - [308] = 248, - [309] = 229, - [310] = 234, - [311] = 231, - [312] = 232, - [313] = 224, - [314] = 234, - [315] = 224, - [316] = 236, - [317] = 237, - [318] = 238, - [319] = 239, - [320] = 240, - [321] = 241, - [322] = 242, - [323] = 243, - [324] = 244, - [325] = 236, - [326] = 246, - [327] = 237, - [328] = 248, - [329] = 238, - [330] = 246, - [331] = 164, - [332] = 166, - [333] = 249, - [334] = 233, - [335] = 245, - [336] = 244, + [259] = 244, + [260] = 260, + [261] = 260, + [262] = 262, + [263] = 263, + [264] = 234, + [265] = 235, + [266] = 236, + [267] = 238, + [268] = 235, + [269] = 236, + [270] = 237, + [271] = 238, + [272] = 239, + [273] = 240, + [274] = 233, + [275] = 242, + [276] = 243, + [277] = 262, + [278] = 263, + [279] = 234, + [280] = 245, + [281] = 246, + [282] = 247, + [283] = 248, + [284] = 249, + [285] = 250, + [286] = 251, + [287] = 252, + [288] = 253, + [289] = 254, + [290] = 255, + [291] = 256, + [292] = 257, + [293] = 258, + [294] = 244, + [295] = 260, + [296] = 172, + [297] = 239, + [298] = 240, + [299] = 263, + [300] = 235, + [301] = 262, + [302] = 263, + [303] = 234, + [304] = 236, + [305] = 233, + [306] = 235, + [307] = 236, + [308] = 237, + [309] = 237, + [310] = 238, + [311] = 239, + [312] = 240, + [313] = 233, + [314] = 242, + [315] = 243, + [316] = 238, + [317] = 239, + [318] = 240, + [319] = 245, + [320] = 246, + [321] = 247, + [322] = 248, + [323] = 249, + [324] = 250, + [325] = 251, + [326] = 252, + [327] = 253, + [328] = 254, + [329] = 255, + [330] = 256, + [331] = 257, + [332] = 258, + [333] = 244, + [334] = 260, + [335] = 233, + [336] = 242, [337] = 243, [338] = 242, - [339] = 241, - [340] = 239, - [341] = 253, - [342] = 240, - [343] = 172, - [344] = 240, - [345] = 256, - [346] = 257, - [347] = 258, - [348] = 225, - [349] = 226, - [350] = 227, - [351] = 228, - [352] = 239, - [353] = 238, - [354] = 237, - [355] = 229, - [356] = 241, - [357] = 231, - [358] = 232, - [359] = 170, - [360] = 234, - [361] = 224, - [362] = 236, - [363] = 237, - [364] = 238, - [365] = 239, - [366] = 240, - [367] = 241, - [368] = 242, - [369] = 243, - [370] = 244, - [371] = 165, - [372] = 246, - [373] = 248, - [374] = 248, - [375] = 246, - [376] = 236, - [377] = 224, - [378] = 234, - [379] = 249, - [380] = 233, - [381] = 245, - [382] = 245, - [383] = 232, - [384] = 244, - [385] = 231, - [386] = 223, - [387] = 253, - [388] = 243, - [389] = 242, - [390] = 241, - [391] = 256, - [392] = 257, + [339] = 243, + [340] = 262, + [341] = 263, + [342] = 234, + [343] = 237, + [344] = 245, + [345] = 246, + [346] = 235, + [347] = 236, + [348] = 237, + [349] = 238, + [350] = 239, + [351] = 240, + [352] = 247, + [353] = 242, + [354] = 243, + [355] = 248, + [356] = 249, + [357] = 245, + [358] = 246, + [359] = 247, + [360] = 248, + [361] = 249, + [362] = 250, + [363] = 251, + [364] = 252, + [365] = 253, + [366] = 254, + [367] = 255, + [368] = 256, + [369] = 257, + [370] = 258, + [371] = 244, + [372] = 260, + [373] = 250, + [374] = 251, + [375] = 252, + [376] = 253, + [377] = 262, + [378] = 263, + [379] = 234, + [380] = 254, + [381] = 255, + [382] = 256, + [383] = 235, + [384] = 236, + [385] = 257, + [386] = 237, + [387] = 238, + [388] = 239, + [389] = 240, + [390] = 233, + [391] = 242, + [392] = 243, [393] = 258, - [394] = 225, - [395] = 226, - [396] = 227, - [397] = 228, - [398] = 229, - [399] = 228, - [400] = 227, - [401] = 229, - [402] = 240, - [403] = 231, - [404] = 232, - [405] = 239, - [406] = 234, - [407] = 224, - [408] = 236, - [409] = 237, - [410] = 238, - [411] = 239, - [412] = 240, - [413] = 241, - [414] = 242, - [415] = 243, - [416] = 244, - [417] = 238, - [418] = 246, - [419] = 237, - [420] = 248, - [421] = 226, - [422] = 225, - [423] = 258, - [424] = 257, - [425] = 249, - [426] = 233, - [427] = 245, - [428] = 256, - [429] = 236, - [430] = 224, - [431] = 253, - [432] = 223, - [433] = 253, - [434] = 234, - [435] = 232, - [436] = 223, + [394] = 245, + [395] = 246, + [396] = 247, + [397] = 248, + [398] = 249, + [399] = 250, + [400] = 251, + [401] = 252, + [402] = 253, + [403] = 254, + [404] = 255, + [405] = 256, + [406] = 257, + [407] = 258, + [408] = 244, + [409] = 260, + [410] = 244, + [411] = 262, + [412] = 263, + [413] = 234, + [414] = 234, + [415] = 235, + [416] = 236, + [417] = 245, + [418] = 237, + [419] = 238, + [420] = 239, + [421] = 240, + [422] = 233, + [423] = 242, + [424] = 243, + [425] = 262, + [426] = 245, + [427] = 246, + [428] = 247, + [429] = 248, + [430] = 249, + [431] = 250, + [432] = 251, + [433] = 252, + [434] = 253, + [435] = 254, + [436] = 255, [437] = 256, [438] = 257, [439] = 258, - [440] = 225, - [441] = 226, - [442] = 227, - [443] = 228, - [444] = 173, - [445] = 231, - [446] = 233, - [447] = 229, - [448] = 229, - [449] = 231, - [450] = 232, - [451] = 242, - [452] = 234, - [453] = 258, - [454] = 236, - [455] = 237, - [456] = 238, - [457] = 239, - [458] = 240, - [459] = 241, - [460] = 242, - [461] = 243, - [462] = 244, - [463] = 243, - [464] = 246, - [465] = 228, - [466] = 248, - [467] = 249, - [468] = 227, - [469] = 226, - [470] = 225, - [471] = 249, - [472] = 233, - [473] = 245, - [474] = 258, - [475] = 248, + [440] = 244, + [441] = 260, + [442] = 166, + [443] = 164, + [444] = 263, + [445] = 170, + [446] = 171, + [447] = 234, + [448] = 173, + [449] = 174, + [450] = 246, + [451] = 262, + [452] = 172, + [453] = 172, + [454] = 235, + [455] = 236, + [456] = 237, + [457] = 238, + [458] = 239, + [459] = 240, + [460] = 233, + [461] = 242, + [462] = 243, + [463] = 247, + [464] = 245, + [465] = 246, + [466] = 247, + [467] = 248, + [468] = 249, + [469] = 250, + [470] = 251, + [471] = 252, + [472] = 253, + [473] = 254, + [474] = 255, + [475] = 256, [476] = 257, - [477] = 223, - [478] = 253, - [479] = 256, - [480] = 244, - [481] = 246, - [482] = 256, - [483] = 257, - [484] = 258, - [485] = 225, - [486] = 226, - [487] = 227, - [488] = 228, - [489] = 253, - [490] = 223, - [491] = 245, - [492] = 229, - [493] = 233, - [494] = 231, - [495] = 232, - [496] = 249, - [497] = 234, - [498] = 224, - [499] = 236, - [500] = 237, - [501] = 238, - [502] = 239, - [503] = 240, - [504] = 241, - [505] = 242, - [506] = 243, - [507] = 244, - [508] = 249, - [509] = 246, - [510] = 248, - [511] = 511, - [512] = 249, - [513] = 513, - [514] = 514, - [515] = 515, - [516] = 514, - [517] = 513, - [518] = 511, - [519] = 519, - [520] = 520, - [521] = 519, - [522] = 520, - [523] = 519, - [524] = 520, - [525] = 520, - [526] = 519, - [527] = 511, - [528] = 513, - [529] = 514, - [530] = 515, - [531] = 511, - [532] = 511, - [533] = 515, - [534] = 514, - [535] = 513, - [536] = 513, - [537] = 515, - [538] = 520, - [539] = 514, - [540] = 519, - [541] = 519, - [542] = 520, - [543] = 511, - [544] = 515, - [545] = 514, - [546] = 513, - [547] = 513, - [548] = 520, - [549] = 519, - [550] = 550, - [551] = 515, - [552] = 552, - [553] = 511, - [554] = 511, - [555] = 515, - [556] = 514, - [557] = 513, - [558] = 520, - [559] = 248, - [560] = 233, - [561] = 245, - [562] = 519, - [563] = 514, - [564] = 223, - [565] = 253, - [566] = 520, - [567] = 246, - [568] = 515, - [569] = 256, - [570] = 257, - [571] = 258, - [572] = 225, - [573] = 226, - [574] = 227, - [575] = 228, - [576] = 519, - [577] = 511, - [578] = 229, - [579] = 513, - [580] = 231, - [581] = 232, - [582] = 520, - [583] = 234, - [584] = 224, - [585] = 236, - [586] = 237, - [587] = 238, - [588] = 239, - [589] = 240, - [590] = 241, - [591] = 242, - [592] = 243, - [593] = 244, - [594] = 550, - [595] = 519, - [596] = 514, - [597] = 515, - [598] = 511, - [599] = 552, - [600] = 515, - [601] = 514, - [602] = 513, - [603] = 515, - [604] = 511, - [605] = 519, - [606] = 520, - [607] = 514, - [608] = 513, - [609] = 609, - [610] = 610, - [611] = 610, - [612] = 609, - [613] = 610, - [614] = 610, - [615] = 609, - [616] = 609, - [617] = 610, - [618] = 610, - [619] = 609, - [620] = 610, - [621] = 609, - [622] = 610, - [623] = 609, - [624] = 610, - [625] = 609, - [626] = 610, - [627] = 609, - [628] = 609, - [629] = 610, - [630] = 609, - [631] = 631, - [632] = 632, - [633] = 633, - [634] = 634, - [635] = 635, - [636] = 636, - [637] = 637, - [638] = 638, - [639] = 639, - [640] = 640, - [641] = 641, - [642] = 641, + [477] = 258, + [478] = 244, + [479] = 260, + [480] = 248, + [481] = 249, + [482] = 262, + [483] = 263, + [484] = 234, + [485] = 250, + [486] = 251, + [487] = 252, + [488] = 235, + [489] = 236, + [490] = 253, + [491] = 237, + [492] = 238, + [493] = 239, + [494] = 240, + [495] = 233, + [496] = 242, + [497] = 243, + [498] = 254, + [499] = 255, + [500] = 256, + [501] = 245, + [502] = 246, + [503] = 247, + [504] = 248, + [505] = 249, + [506] = 250, + [507] = 251, + [508] = 252, + [509] = 253, + [510] = 254, + [511] = 255, + [512] = 256, + [513] = 257, + [514] = 258, + [515] = 244, + [516] = 260, + [517] = 257, + [518] = 258, + [519] = 262, + [520] = 263, + [521] = 260, + [522] = 522, + [523] = 242, + [524] = 243, + [525] = 525, + [526] = 526, + [527] = 245, + [528] = 246, + [529] = 233, + [530] = 248, + [531] = 249, + [532] = 250, + [533] = 251, + [534] = 252, + [535] = 253, + [536] = 254, + [537] = 255, + [538] = 256, + [539] = 257, + [540] = 258, + [541] = 244, + [542] = 260, + [543] = 543, + [544] = 526, + [545] = 526, + [546] = 525, + [547] = 525, + [548] = 548, + [549] = 526, + [550] = 526, + [551] = 525, + [552] = 548, + [553] = 525, + [554] = 554, + [555] = 525, + [556] = 556, + [557] = 548, + [558] = 554, + [559] = 559, + [560] = 525, + [561] = 522, + [562] = 526, + [563] = 556, + [564] = 556, + [565] = 556, + [566] = 522, + [567] = 548, + [568] = 526, + [569] = 525, + [570] = 543, + [571] = 556, + [572] = 548, + [573] = 522, + [574] = 556, + [575] = 526, + [576] = 559, + [577] = 554, + [578] = 554, + [579] = 554, + [580] = 556, + [581] = 522, + [582] = 526, + [583] = 522, + [584] = 554, + [585] = 554, + [586] = 522, + [587] = 548, + [588] = 556, + [589] = 548, + [590] = 556, + [591] = 525, + [592] = 556, + [593] = 526, + [594] = 548, + [595] = 554, + [596] = 554, + [597] = 554, + [598] = 522, + [599] = 522, + [600] = 262, + [601] = 263, + [602] = 234, + [603] = 548, + [604] = 235, + [605] = 236, + [606] = 548, + [607] = 525, + [608] = 522, + [609] = 237, + [610] = 238, + [611] = 239, + [612] = 240, + [613] = 247, + [614] = 554, + [615] = 525, + [616] = 556, + [617] = 548, + [618] = 522, + [619] = 526, + [620] = 620, + [621] = 620, + [622] = 620, + [623] = 623, + [624] = 620, + [625] = 625, + [626] = 623, + [627] = 623, + [628] = 620, + [629] = 623, + [630] = 623, + [631] = 623, + [632] = 623, + [633] = 620, + [634] = 623, + [635] = 620, + [636] = 623, + [637] = 620, + [638] = 620, + [639] = 620, + [640] = 620, + [641] = 623, + [642] = 623, [643] = 643, - [644] = 641, - [645] = 641, + [644] = 644, + [645] = 645, [646] = 646, - [647] = 643, - [648] = 646, - [649] = 646, - [650] = 643, - [651] = 641, - [652] = 643, - [653] = 641, - [654] = 643, - [655] = 641, - [656] = 646, - [657] = 641, - [658] = 646, - [659] = 643, - [660] = 646, - [661] = 641, - [662] = 643, - [663] = 646, - [664] = 643, - [665] = 646, - [666] = 646, - [667] = 641, - [668] = 641, - [669] = 643, - [670] = 646, - [671] = 643, - [672] = 643, - [673] = 646, - [674] = 674, - [675] = 674, - [676] = 676, - [677] = 677, - [678] = 676, - [679] = 679, - [680] = 680, - [681] = 681, - [682] = 682, - [683] = 683, - [684] = 684, - [685] = 685, - [686] = 686, - [687] = 687, - [688] = 688, - [689] = 684, + [647] = 647, + [648] = 648, + [649] = 649, + [650] = 650, + [651] = 651, + [652] = 652, + [653] = 652, + [654] = 654, + [655] = 655, + [656] = 654, + [657] = 654, + [658] = 658, + [659] = 652, + [660] = 655, + [661] = 654, + [662] = 655, + [663] = 654, + [664] = 658, + [665] = 665, + [666] = 652, + [667] = 655, + [668] = 654, + [669] = 652, + [670] = 652, + [671] = 655, + [672] = 654, + [673] = 673, + [674] = 652, + [675] = 652, + [676] = 652, + [677] = 655, + [678] = 655, + [679] = 654, + [680] = 654, + [681] = 655, + [682] = 655, + [683] = 652, + [684] = 652, + [685] = 655, + [686] = 654, + [687] = 655, + [688] = 673, + [689] = 654, [690] = 690, [691] = 691, - [692] = 685, + [692] = 692, [693] = 693, - [694] = 683, - [695] = 695, + [694] = 694, + [695] = 694, [696] = 696, - [697] = 686, + [697] = 697, [698] = 698, [699] = 699, [700] = 700, - [701] = 687, - [702] = 688, - [703] = 690, - [704] = 691, - [705] = 693, - [706] = 683, - [707] = 695, + [701] = 701, + [702] = 702, + [703] = 703, + [704] = 704, + [705] = 705, + [706] = 706, + [707] = 707, [708] = 708, - [709] = 696, - [710] = 710, - [711] = 708, - [712] = 710, + [709] = 709, + [710] = 696, + [711] = 697, + [712] = 698, [713] = 699, - [714] = 684, - [715] = 685, - [716] = 686, - [717] = 687, - [718] = 688, - [719] = 690, - [720] = 691, - [721] = 708, - [722] = 693, - [723] = 683, - [724] = 695, - [725] = 696, - [726] = 700, - [727] = 698, - [728] = 699, - [729] = 700, - [730] = 710, - [731] = 708, - [732] = 710, - [733] = 708, - [734] = 710, - [735] = 708, - [736] = 710, - [737] = 708, - [738] = 738, - [739] = 698, - [740] = 710, - [741] = 708, - [742] = 685, - [743] = 684, - [744] = 685, - [745] = 686, - [746] = 687, - [747] = 688, - [748] = 690, - [749] = 691, - [750] = 686, - [751] = 693, - [752] = 683, - [753] = 695, - [754] = 696, - [755] = 687, - [756] = 698, - [757] = 699, - [758] = 700, - [759] = 688, - [760] = 690, - [761] = 691, - [762] = 710, - [763] = 708, - [764] = 693, - [765] = 695, - [766] = 696, - [767] = 698, - [768] = 699, - [769] = 700, - [770] = 710, - [771] = 708, - [772] = 710, - [773] = 684, - [774] = 685, - [775] = 686, - [776] = 687, - [777] = 688, - [778] = 690, - [779] = 691, - [780] = 708, - [781] = 693, - [782] = 683, - [783] = 695, - [784] = 696, - [785] = 684, - [786] = 684, - [787] = 686, - [788] = 698, - [789] = 699, - [790] = 700, - [791] = 710, - [792] = 687, - [793] = 688, - [794] = 690, - [795] = 700, - [796] = 699, + [714] = 700, + [715] = 701, + [716] = 702, + [717] = 703, + [718] = 704, + [719] = 705, + [720] = 706, + [721] = 707, + [722] = 708, + [723] = 709, + [724] = 694, + [725] = 709, + [726] = 696, + [727] = 697, + [728] = 698, + [729] = 699, + [730] = 700, + [731] = 701, + [732] = 702, + [733] = 703, + [734] = 704, + [735] = 705, + [736] = 706, + [737] = 707, + [738] = 708, + [739] = 709, + [740] = 694, + [741] = 694, + [742] = 696, + [743] = 697, + [744] = 698, + [745] = 701, + [746] = 746, + [747] = 699, + [748] = 700, + [749] = 701, + [750] = 702, + [751] = 703, + [752] = 704, + [753] = 705, + [754] = 706, + [755] = 707, + [756] = 708, + [757] = 709, + [758] = 694, + [759] = 759, + [760] = 696, + [761] = 697, + [762] = 698, + [763] = 702, + [764] = 703, + [765] = 704, + [766] = 699, + [767] = 700, + [768] = 701, + [769] = 702, + [770] = 703, + [771] = 704, + [772] = 705, + [773] = 706, + [774] = 707, + [775] = 708, + [776] = 709, + [777] = 694, + [778] = 696, + [779] = 697, + [780] = 698, + [781] = 705, + [782] = 699, + [783] = 700, + [784] = 701, + [785] = 702, + [786] = 703, + [787] = 704, + [788] = 705, + [789] = 706, + [790] = 707, + [791] = 708, + [792] = 709, + [793] = 694, + [794] = 794, + [795] = 696, + [796] = 697, [797] = 698, - [798] = 685, - [799] = 696, - [800] = 695, - [801] = 683, - [802] = 693, - [803] = 691, - [804] = 690, - [805] = 688, - [806] = 687, - [807] = 684, - [808] = 685, - [809] = 686, - [810] = 687, - [811] = 688, - [812] = 690, - [813] = 691, - [814] = 686, - [815] = 693, - [816] = 683, - [817] = 695, - [818] = 696, - [819] = 685, - [820] = 691, - [821] = 684, - [822] = 698, - [823] = 699, - [824] = 700, - [825] = 693, - [826] = 683, - [827] = 695, - [828] = 700, - [829] = 699, - [830] = 698, - [831] = 696, + [798] = 699, + [799] = 700, + [800] = 701, + [801] = 702, + [802] = 703, + [803] = 704, + [804] = 705, + [805] = 706, + [806] = 707, + [807] = 708, + [808] = 709, + [809] = 694, + [810] = 696, + [811] = 697, + [812] = 698, + [813] = 759, + [814] = 706, + [815] = 699, + [816] = 700, + [817] = 701, + [818] = 794, + [819] = 702, + [820] = 759, + [821] = 703, + [822] = 704, + [823] = 705, + [824] = 706, + [825] = 707, + [826] = 708, + [827] = 709, + [828] = 794, + [829] = 700, + [830] = 759, + [831] = 707, [832] = 696, - [833] = 695, - [834] = 683, - [835] = 693, - [836] = 691, - [837] = 690, - [838] = 688, - [839] = 687, - [840] = 686, - [841] = 684, - [842] = 685, - [843] = 686, - [844] = 687, - [845] = 688, - [846] = 690, - [847] = 691, - [848] = 685, - [849] = 693, - [850] = 683, - [851] = 695, - [852] = 696, - [853] = 684, - [854] = 698, - [855] = 699, - [856] = 698, - [857] = 699, - [858] = 700, - [859] = 700, - [860] = 860, - [861] = 861, - [862] = 862, - [863] = 863, - [864] = 864, - [865] = 865, - [866] = 866, - [867] = 867, - [868] = 868, - [869] = 869, - [870] = 870, - [871] = 871, - [872] = 872, - [873] = 860, - [874] = 874, - [875] = 861, - [876] = 876, - [877] = 874, - [878] = 862, - [879] = 872, - [880] = 863, - [881] = 870, - [882] = 876, - [883] = 869, - [884] = 868, - [885] = 867, - [886] = 866, - [887] = 871, - [888] = 865, - [889] = 871, - [890] = 864, - [891] = 863, - [892] = 862, - [893] = 861, - [894] = 860, - [895] = 861, - [896] = 862, - [897] = 863, - [898] = 864, - [899] = 865, - [900] = 866, - [901] = 867, - [902] = 868, - [903] = 869, - [904] = 870, - [905] = 860, - [906] = 872, - [907] = 864, - [908] = 874, - [909] = 871, - [910] = 866, - [911] = 876, - [912] = 874, - [913] = 867, - [914] = 872, - [915] = 868, - [916] = 876, - [917] = 870, - [918] = 869, - [919] = 868, - [920] = 867, - [921] = 876, - [922] = 866, - [923] = 871, - [924] = 865, - [925] = 864, - [926] = 863, - [927] = 862, - [928] = 860, - [929] = 861, - [930] = 862, - [931] = 863, - [932] = 864, - [933] = 865, - [934] = 866, - [935] = 867, - [936] = 868, - [937] = 869, - [938] = 870, - [939] = 861, - [940] = 872, - [941] = 860, - [942] = 874, - [943] = 943, - [944] = 944, - [945] = 945, - [946] = 869, - [947] = 871, - [948] = 870, - [949] = 872, - [950] = 874, - [951] = 872, - [952] = 870, - [953] = 869, - [954] = 876, - [955] = 868, - [956] = 956, - [957] = 957, + [833] = 697, + [834] = 698, + [835] = 794, + [836] = 759, + [837] = 708, + [838] = 794, + [839] = 759, + [840] = 696, + [841] = 697, + [842] = 794, + [843] = 759, + [844] = 699, + [845] = 700, + [846] = 701, + [847] = 702, + [848] = 703, + [849] = 794, + [850] = 704, + [851] = 759, + [852] = 705, + [853] = 706, + [854] = 707, + [855] = 708, + [856] = 709, + [857] = 694, + [858] = 794, + [859] = 759, + [860] = 696, + [861] = 697, + [862] = 698, + [863] = 794, + [864] = 759, + [865] = 794, + [866] = 759, + [867] = 699, + [868] = 698, + [869] = 699, + [870] = 700, + [871] = 794, + [872] = 701, + [873] = 702, + [874] = 703, + [875] = 704, + [876] = 705, + [877] = 706, + [878] = 707, + [879] = 708, + [880] = 709, + [881] = 694, + [882] = 882, + [883] = 883, + [884] = 884, + [885] = 884, + [886] = 886, + [887] = 887, + [888] = 882, + [889] = 889, + [890] = 890, + [891] = 891, + [892] = 892, + [893] = 893, + [894] = 894, + [895] = 895, + [896] = 896, + [897] = 882, + [898] = 898, + [899] = 886, + [900] = 900, + [901] = 901, + [902] = 886, + [903] = 903, + [904] = 891, + [905] = 892, + [906] = 893, + [907] = 894, + [908] = 895, + [909] = 896, + [910] = 882, + [911] = 900, + [912] = 912, + [913] = 890, + [914] = 887, + [915] = 915, + [916] = 889, + [917] = 917, + [918] = 884, + [919] = 912, + [920] = 890, + [921] = 887, + [922] = 887, + [923] = 891, + [924] = 892, + [925] = 893, + [926] = 894, + [927] = 895, + [928] = 896, + [929] = 882, + [930] = 900, + [931] = 889, + [932] = 932, + [933] = 886, + [934] = 912, + [935] = 890, + [936] = 887, + [937] = 937, + [938] = 891, + [939] = 892, + [940] = 893, + [941] = 894, + [942] = 895, + [943] = 896, + [944] = 882, + [945] = 900, + [946] = 912, + [947] = 890, + [948] = 887, + [949] = 884, + [950] = 889, + [951] = 951, + [952] = 884, + [953] = 953, + [954] = 954, + [955] = 955, + [956] = 889, + [957] = 889, [958] = 958, - [959] = 959, - [960] = 943, - [961] = 944, - [962] = 945, - [963] = 874, - [964] = 867, - [965] = 866, - [966] = 865, - [967] = 864, - [968] = 863, - [969] = 862, - [970] = 861, - [971] = 865, - [972] = 860, - [973] = 957, - [974] = 958, - [975] = 959, - [976] = 943, - [977] = 944, - [978] = 945, - [979] = 872, - [980] = 870, - [981] = 869, - [982] = 868, - [983] = 871, - [984] = 867, - [985] = 866, - [986] = 865, - [987] = 864, - [988] = 876, - [989] = 957, - [990] = 958, - [991] = 959, - [992] = 943, - [993] = 944, - [994] = 945, - [995] = 863, - [996] = 862, - [997] = 861, - [998] = 860, - [999] = 871, - [1000] = 876, - [1001] = 874, - [1002] = 1002, - [1003] = 872, - [1004] = 1004, - [1005] = 957, - [1006] = 958, - [1007] = 959, - [1008] = 943, - [1009] = 944, - [1010] = 945, - [1011] = 870, - [1012] = 635, - [1013] = 869, - [1014] = 636, - [1015] = 874, - [1016] = 872, - [1017] = 1017, - [1018] = 868, - [1019] = 867, - [1020] = 1020, - [1021] = 957, - [1022] = 958, - [1023] = 959, - [1024] = 943, - [1025] = 944, - [1026] = 945, - [1027] = 866, - [1028] = 959, - [1029] = 958, - [1030] = 1030, - [1031] = 957, - [1032] = 870, - [1033] = 869, - [1034] = 1034, - [1035] = 865, - [1036] = 868, - [1037] = 957, - [1038] = 958, - [1039] = 959, - [1040] = 943, - [1041] = 944, - [1042] = 945, - [1043] = 864, - [1044] = 867, - [1045] = 866, - [1046] = 865, - [1047] = 864, - [1048] = 863, - [1049] = 862, - [1050] = 861, - [1051] = 863, - [1052] = 956, - [1053] = 957, - [1054] = 958, - [1055] = 959, - [1056] = 943, - [1057] = 944, - [1058] = 945, - [1059] = 862, - [1060] = 860, - [1061] = 1061, - [1062] = 861, - [1063] = 860, - [1064] = 945, - [1065] = 944, - [1066] = 871, - [1067] = 876, - [1068] = 874, - [1069] = 957, - [1070] = 958, - [1071] = 959, - [1072] = 943, - [1073] = 944, - [1074] = 945, - [1075] = 872, - [1076] = 943, - [1077] = 871, - [1078] = 1078, - [1079] = 1079, - [1080] = 1080, - [1081] = 1081, - [1082] = 1082, - [1083] = 870, - [1084] = 1084, - [1085] = 957, - [1086] = 958, - [1087] = 959, - [1088] = 943, - [1089] = 944, - [1090] = 945, - [1091] = 869, - [1092] = 1092, - [1093] = 1093, - [1094] = 1094, - [1095] = 1095, - [1096] = 1096, - [1097] = 1097, - [1098] = 868, - [1099] = 867, - [1100] = 866, - [1101] = 957, - [1102] = 958, - [1103] = 959, - [1104] = 1095, - [1105] = 1094, - [1106] = 1093, - [1107] = 1092, - [1108] = 1084, - [1109] = 1082, - [1110] = 1081, - [1111] = 1080, - [1112] = 1061, - [1113] = 865, - [1114] = 1095, - [1115] = 1094, - [1116] = 1093, - [1117] = 1092, - [1118] = 1084, - [1119] = 1082, - [1120] = 1081, - [1121] = 1080, - [1122] = 1061, - [1123] = 864, - [1124] = 1095, - [1125] = 1094, - [1126] = 1093, - [1127] = 1092, - [1128] = 1084, - [1129] = 1082, - [1130] = 1081, - [1131] = 1080, - [1132] = 1061, - [1133] = 876, - [1134] = 1095, - [1135] = 1094, - [1136] = 1093, - [1137] = 1092, - [1138] = 1084, - [1139] = 1082, - [1140] = 1081, - [1141] = 1080, - [1142] = 1061, - [1143] = 863, - [1144] = 1095, - [1145] = 1094, - [1146] = 1093, - [1147] = 1092, - [1148] = 1084, - [1149] = 1082, - [1150] = 1081, - [1151] = 1080, - [1152] = 1061, - [1153] = 862, - [1154] = 1095, - [1155] = 1094, - [1156] = 1093, - [1157] = 1092, - [1158] = 1084, - [1159] = 1082, - [1160] = 1081, - [1161] = 1080, - [1162] = 1061, - [1163] = 861, - [1164] = 1095, - [1165] = 1094, - [1166] = 1093, - [1167] = 1092, - [1168] = 1084, - [1169] = 1082, - [1170] = 1081, - [1171] = 1080, - [1172] = 1061, - [1173] = 860, - [1174] = 1095, - [1175] = 1094, - [1176] = 1093, - [1177] = 1092, - [1178] = 1084, - [1179] = 1082, - [1180] = 1081, - [1181] = 1080, - [1182] = 1061, - [1183] = 871, - [1184] = 1095, - [1185] = 1094, - [1186] = 1093, - [1187] = 1092, - [1188] = 1084, - [1189] = 1082, - [1190] = 1081, - [1191] = 1080, - [1192] = 1061, - [1193] = 876, - [1194] = 1095, - [1195] = 1094, - [1196] = 1093, - [1197] = 1092, - [1198] = 1084, - [1199] = 1082, - [1200] = 1081, - [1201] = 1080, - [1202] = 1061, - [1203] = 874, - [1204] = 1078, - [1205] = 1078, - [1206] = 1078, - [1207] = 1078, - [1208] = 1078, - [1209] = 1078, - [1210] = 1078, - [1211] = 1078, - [1212] = 1078, - [1213] = 1078, + [959] = 953, + [960] = 960, + [961] = 955, + [962] = 884, + [963] = 963, + [964] = 884, + [965] = 900, + [966] = 966, + [967] = 963, + [968] = 968, + [969] = 969, + [970] = 953, + [971] = 954, + [972] = 955, + [973] = 884, + [974] = 896, + [975] = 891, + [976] = 892, + [977] = 893, + [978] = 894, + [979] = 895, + [980] = 896, + [981] = 882, + [982] = 982, + [983] = 963, + [984] = 968, + [985] = 969, + [986] = 953, + [987] = 954, + [988] = 955, + [989] = 900, + [990] = 648, + [991] = 886, + [992] = 886, + [993] = 912, + [994] = 890, + [995] = 995, + [996] = 886, + [997] = 886, + [998] = 891, + [999] = 963, + [1000] = 968, + [1001] = 969, + [1002] = 953, + [1003] = 954, + [1004] = 955, + [1005] = 891, + [1006] = 892, + [1007] = 893, + [1008] = 892, + [1009] = 894, + [1010] = 895, + [1011] = 896, + [1012] = 882, + [1013] = 893, + [1014] = 900, + [1015] = 963, + [1016] = 968, + [1017] = 969, + [1018] = 953, + [1019] = 954, + [1020] = 955, + [1021] = 894, + [1022] = 912, + [1023] = 890, + [1024] = 887, + [1025] = 895, + [1026] = 1026, + [1027] = 889, + [1028] = 896, + [1029] = 882, + [1030] = 884, + [1031] = 963, + [1032] = 968, + [1033] = 969, + [1034] = 953, + [1035] = 954, + [1036] = 955, + [1037] = 900, + [1038] = 891, + [1039] = 643, + [1040] = 912, + [1041] = 890, + [1042] = 887, + [1043] = 895, + [1044] = 889, + [1045] = 912, + [1046] = 884, + [1047] = 963, + [1048] = 968, + [1049] = 969, + [1050] = 953, + [1051] = 954, + [1052] = 955, + [1053] = 1053, + [1054] = 968, + [1055] = 891, + [1056] = 892, + [1057] = 893, + [1058] = 894, + [1059] = 895, + [1060] = 966, + [1061] = 896, + [1062] = 1062, + [1063] = 963, + [1064] = 968, + [1065] = 969, + [1066] = 953, + [1067] = 954, + [1068] = 955, + [1069] = 886, + [1070] = 889, + [1071] = 900, + [1072] = 912, + [1073] = 890, + [1074] = 892, + [1075] = 891, + [1076] = 892, + [1077] = 1077, + [1078] = 893, + [1079] = 963, + [1080] = 968, + [1081] = 969, + [1082] = 953, + [1083] = 954, + [1084] = 955, + [1085] = 1085, + [1086] = 894, + [1087] = 895, + [1088] = 896, + [1089] = 882, + [1090] = 900, + [1091] = 912, + [1092] = 890, + [1093] = 886, + [1094] = 887, + [1095] = 963, + [1096] = 968, + [1097] = 969, + [1098] = 953, + [1099] = 954, + [1100] = 955, + [1101] = 887, + [1102] = 893, + [1103] = 889, + [1104] = 969, + [1105] = 884, + [1106] = 889, + [1107] = 954, + [1108] = 891, + [1109] = 892, + [1110] = 893, + [1111] = 963, + [1112] = 968, + [1113] = 969, + [1114] = 1114, + [1115] = 883, + [1116] = 898, + [1117] = 903, + [1118] = 915, + [1119] = 917, + [1120] = 937, + [1121] = 951, + [1122] = 932, + [1123] = 894, + [1124] = 1114, + [1125] = 883, + [1126] = 898, + [1127] = 903, + [1128] = 915, + [1129] = 917, + [1130] = 937, + [1131] = 951, + [1132] = 932, + [1133] = 895, + [1134] = 1114, + [1135] = 883, + [1136] = 898, + [1137] = 903, + [1138] = 915, + [1139] = 917, + [1140] = 937, + [1141] = 951, + [1142] = 932, + [1143] = 896, + [1144] = 1114, + [1145] = 883, + [1146] = 898, + [1147] = 903, + [1148] = 915, + [1149] = 917, + [1150] = 937, + [1151] = 951, + [1152] = 932, + [1153] = 882, + [1154] = 1114, + [1155] = 883, + [1156] = 898, + [1157] = 903, + [1158] = 915, + [1159] = 917, + [1160] = 937, + [1161] = 951, + [1162] = 932, + [1163] = 900, + [1164] = 1114, + [1165] = 883, + [1166] = 898, + [1167] = 903, + [1168] = 915, + [1169] = 917, + [1170] = 937, + [1171] = 951, + [1172] = 932, + [1173] = 912, + [1174] = 1114, + [1175] = 883, + [1176] = 898, + [1177] = 903, + [1178] = 915, + [1179] = 917, + [1180] = 937, + [1181] = 951, + [1182] = 932, + [1183] = 890, + [1184] = 1114, + [1185] = 883, + [1186] = 898, + [1187] = 903, + [1188] = 915, + [1189] = 917, + [1190] = 937, + [1191] = 951, + [1192] = 932, + [1193] = 887, + [1194] = 1114, + [1195] = 883, + [1196] = 898, + [1197] = 903, + [1198] = 915, + [1199] = 917, + [1200] = 937, + [1201] = 951, + [1202] = 932, + [1203] = 1114, + [1204] = 1114, + [1205] = 883, + [1206] = 898, + [1207] = 903, + [1208] = 915, + [1209] = 917, + [1210] = 937, + [1211] = 951, + [1212] = 932, + [1213] = 894, + [1214] = 960, + [1215] = 960, + [1216] = 960, + [1217] = 960, + [1218] = 960, + [1219] = 960, + [1220] = 960, + [1221] = 960, + [1222] = 960, + [1223] = 960, + [1224] = 886, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -2360,1438 +2375,1512 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(41); - if (lookahead == '\n') ADVANCE(153); - if (lookahead == '\r') SKIP(31) - if (lookahead == '!') ADVANCE(163); - if (lookahead == '"') ADVANCE(171); - if (lookahead == '$') ADVANCE(135); - if (lookahead == '%') ADVANCE(130); - if (lookahead == '(') ADVANCE(127); - if (lookahead == '*') ADVANCE(48); - if (lookahead == '-') ADVANCE(155); - if (lookahead == '.') ADVANCE(168); - if (lookahead == ':') ADVANCE(166); - if (lookahead == '<') ADVANCE(77); - if (lookahead == '=') ADVANCE(170); - if (lookahead == '>') ADVANCE(104); - if (lookahead == 'F') ADVANCE(157); - if (lookahead == 'I') ADVANCE(159); - if (lookahead == 'N') ADVANCE(160); - if (lookahead == 'T') ADVANCE(161); - if (lookahead == 'W') ADVANCE(158); - if (lookahead == 'X') ADVANCE(162); - if (lookahead == '[') ADVANCE(114); - if (lookahead == '\\') ADVANCE(66); - if (lookahead == ']') ADVANCE(122); - if (lookahead == '^') ADVANCE(52); - if (lookahead == '_') ADVANCE(44); - if (lookahead == '{') ADVANCE(117); - if (lookahead == '}') ADVANCE(129); - if (lookahead == '~') ADVANCE(56); + if (eof) ADVANCE(43); + if (lookahead == '\n') ADVANCE(158); + if (lookahead == '\r') SKIP(32); + if (lookahead == '!') ADVANCE(169); + if (lookahead == '"') ADVANCE(176); + if (lookahead == '$') ADVANCE(140); + if (lookahead == '%') ADVANCE(135); + if (lookahead == '(') ADVANCE(132); + if (lookahead == '*') ADVANCE(50); + if (lookahead == '-') ADVANCE(161); + if (lookahead == '.') ADVANCE(173); + if (lookahead == ':') ADVANCE(171); + if (lookahead == '<') ADVANCE(79); + if (lookahead == '=') ADVANCE(175); + if (lookahead == '>') ADVANCE(106); + if (lookahead == 'F') ADVANCE(163); + if (lookahead == 'I') ADVANCE(165); + if (lookahead == 'N') ADVANCE(166); + if (lookahead == 'T') ADVANCE(167); + if (lookahead == 'W') ADVANCE(164); + if (lookahead == 'X') ADVANCE(168); + if (lookahead == '[') ADVANCE(118); + if (lookahead == '\\') ADVANCE(68); + if (lookahead == ']') ADVANCE(127); + if (lookahead == '^') ADVANCE(54); + if (lookahead == '_') ADVANCE(46); + if (lookahead == '{') ADVANCE(122); + if (lookahead == '}') ADVANCE(134); + if (lookahead == '~') ADVANCE(58); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(152); + lookahead == ' ') ADVANCE(157); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(154); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(159); END_STATE(); case 1: - if (lookahead == '\n') ADVANCE(153); - if (lookahead == '\r') SKIP(2) - if (lookahead == '!') ADVANCE(163); - if (lookahead == '"') ADVANCE(164); - if (lookahead == '$') ADVANCE(135); - if (lookahead == '\'') ADVANCE(164); - if (lookahead == '(') ADVANCE(127); - if (lookahead == '*') ADVANCE(48); - if (lookahead == '-') ADVANCE(155); - if (lookahead == '.') ADVANCE(156); - if (lookahead == ':') ADVANCE(166); - if (lookahead == '<') ADVANCE(77); - if (lookahead == 'F') ADVANCE(157); - if (lookahead == 'I') ADVANCE(159); - if (lookahead == 'N') ADVANCE(160); - if (lookahead == 'T') ADVANCE(161); - if (lookahead == 'W') ADVANCE(158); - if (lookahead == 'X') ADVANCE(162); - if (lookahead == '[') ADVANCE(114); - if (lookahead == '\\') ADVANCE(64); - if (lookahead == ']') ADVANCE(122); - if (lookahead == '^') ADVANCE(52); - if (lookahead == '_') ADVANCE(44); - if (lookahead == '{') ADVANCE(165); - if (lookahead == '~') ADVANCE(56); + if (lookahead == '\n') ADVANCE(158); + if (lookahead == '\r') SKIP(2); + if (lookahead == '!') ADVANCE(169); + if (lookahead == '"') ADVANCE(170); + if (lookahead == '$') ADVANCE(140); + if (lookahead == '\'') ADVANCE(170); + if (lookahead == '(') ADVANCE(132); + if (lookahead == '*') ADVANCE(50); + if (lookahead == '-') ADVANCE(161); + if (lookahead == '.') ADVANCE(162); + if (lookahead == ':') ADVANCE(171); + if (lookahead == '<') ADVANCE(79); + if (lookahead == 'F') ADVANCE(163); + if (lookahead == 'I') ADVANCE(165); + if (lookahead == 'N') ADVANCE(166); + if (lookahead == 'T') ADVANCE(167); + if (lookahead == 'W') ADVANCE(164); + if (lookahead == 'X') ADVANCE(168); + if (lookahead == '[') ADVANCE(119); + if (lookahead == '\\') ADVANCE(66); + if (lookahead == ']') ADVANCE(127); + if (lookahead == '^') ADVANCE(54); + if (lookahead == '_') ADVANCE(46); + if (lookahead == '{') ADVANCE(160); + if (lookahead == '~') ADVANCE(58); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(152); + lookahead == ' ') ADVANCE(157); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(154); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(159); END_STATE(); case 2: - if (lookahead == '\n') ADVANCE(153); - if (lookahead == '\r') SKIP(2) - if (lookahead == '!') ADVANCE(163); - if (lookahead == '"') ADVANCE(164); - if (lookahead == '$') ADVANCE(135); - if (lookahead == '\'') ADVANCE(164); - if (lookahead == '(') ADVANCE(127); - if (lookahead == '*') ADVANCE(48); - if (lookahead == '-') ADVANCE(155); - if (lookahead == '.') ADVANCE(156); - if (lookahead == ':') ADVANCE(166); - if (lookahead == '<') ADVANCE(77); - if (lookahead == 'F') ADVANCE(157); - if (lookahead == 'I') ADVANCE(159); - if (lookahead == 'N') ADVANCE(160); - if (lookahead == 'T') ADVANCE(161); - if (lookahead == 'W') ADVANCE(158); - if (lookahead == 'X') ADVANCE(162); - if (lookahead == '[') ADVANCE(114); - if (lookahead == '\\') ADVANCE(64); - if (lookahead == '^') ADVANCE(52); - if (lookahead == '_') ADVANCE(44); - if (lookahead == '{') ADVANCE(165); - if (lookahead == '~') ADVANCE(56); + if (lookahead == '\n') ADVANCE(158); + if (lookahead == '\r') SKIP(2); + if (lookahead == '!') ADVANCE(169); + if (lookahead == '"') ADVANCE(170); + if (lookahead == '$') ADVANCE(140); + if (lookahead == '\'') ADVANCE(170); + if (lookahead == '(') ADVANCE(132); + if (lookahead == '*') ADVANCE(50); + if (lookahead == '-') ADVANCE(161); + if (lookahead == '.') ADVANCE(162); + if (lookahead == ':') ADVANCE(171); + if (lookahead == '<') ADVANCE(79); + if (lookahead == 'F') ADVANCE(163); + if (lookahead == 'I') ADVANCE(165); + if (lookahead == 'N') ADVANCE(166); + if (lookahead == 'T') ADVANCE(167); + if (lookahead == 'W') ADVANCE(164); + if (lookahead == 'X') ADVANCE(168); + if (lookahead == '[') ADVANCE(119); + if (lookahead == '\\') ADVANCE(66); + if (lookahead == '^') ADVANCE(54); + if (lookahead == '_') ADVANCE(46); + if (lookahead == '{') ADVANCE(160); + if (lookahead == '~') ADVANCE(58); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(154); + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '"' < lookahead)) ADVANCE(159); END_STATE(); case 3: - if (lookahead == '\n') ADVANCE(153); - if (lookahead == '\r') SKIP(4) - if (lookahead == '!') ADVANCE(100); - if (lookahead == '"') ADVANCE(101); - if (lookahead == '$') ADVANCE(136); - if (lookahead == '\'') ADVANCE(101); - if (lookahead == '(') ADVANCE(128); - if (lookahead == '*') ADVANCE(49); - if (lookahead == '-') ADVANCE(79); - if (lookahead == '.') ADVANCE(81); - if (lookahead == ':') ADVANCE(102); - if (lookahead == '<') ADVANCE(78); - if (lookahead == '>') ADVANCE(154); - if (lookahead == 'F') ADVANCE(88); - if (lookahead == 'I') ADVANCE(90); - if (lookahead == 'N') ADVANCE(91); - if (lookahead == 'T') ADVANCE(92); - if (lookahead == 'W') ADVANCE(87); - if (lookahead == 'X') ADVANCE(99); - if (lookahead == '[') ADVANCE(115); - if (lookahead == '\\') ADVANCE(65); - if (lookahead == ']') ADVANCE(123); - if (lookahead == '^') ADVANCE(53); - if (lookahead == '_') ADVANCE(45); - if (lookahead == '{') ADVANCE(121); - if (lookahead == '~') ADVANCE(57); + if (lookahead == '\n') ADVANCE(158); + if (lookahead == '\r') SKIP(4); + if (lookahead == '!') ADVANCE(102); + if (lookahead == '"') ADVANCE(103); + if (lookahead == '$') ADVANCE(141); + if (lookahead == '\'') ADVANCE(103); + if (lookahead == '(') ADVANCE(133); + if (lookahead == '*') ADVANCE(51); + if (lookahead == '-') ADVANCE(81); + if (lookahead == '.') ADVANCE(83); + if (lookahead == ':') ADVANCE(104); + if (lookahead == '<') ADVANCE(80); + if (lookahead == '>') ADVANCE(159); + if (lookahead == 'F') ADVANCE(90); + if (lookahead == 'I') ADVANCE(92); + if (lookahead == 'N') ADVANCE(93); + if (lookahead == 'T') ADVANCE(94); + if (lookahead == 'W') ADVANCE(89); + if (lookahead == 'X') ADVANCE(101); + if (lookahead == '[') ADVANCE(120); + if (lookahead == '\\') ADVANCE(67); + if (lookahead == ']') ADVANCE(128); + if (lookahead == '^') ADVANCE(55); + if (lookahead == '_') ADVANCE(47); + if (lookahead == '{') ADVANCE(126); + if (lookahead == '~') ADVANCE(59); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(152); + lookahead == ' ') ADVANCE(157); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(103); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(105); END_STATE(); case 4: - if (lookahead == '\n') ADVANCE(153); - if (lookahead == '\r') SKIP(4) - if (lookahead == '!') ADVANCE(100); - if (lookahead == '"') ADVANCE(101); - if (lookahead == '$') ADVANCE(136); - if (lookahead == '\'') ADVANCE(101); - if (lookahead == '(') ADVANCE(128); - if (lookahead == '*') ADVANCE(49); - if (lookahead == '-') ADVANCE(79); - if (lookahead == '.') ADVANCE(81); - if (lookahead == ':') ADVANCE(102); - if (lookahead == '<') ADVANCE(78); - if (lookahead == '>') ADVANCE(154); - if (lookahead == 'F') ADVANCE(88); - if (lookahead == 'I') ADVANCE(90); - if (lookahead == 'N') ADVANCE(91); - if (lookahead == 'T') ADVANCE(92); - if (lookahead == 'W') ADVANCE(87); - if (lookahead == 'X') ADVANCE(99); - if (lookahead == '[') ADVANCE(115); - if (lookahead == '\\') ADVANCE(65); - if (lookahead == '^') ADVANCE(53); - if (lookahead == '_') ADVANCE(45); - if (lookahead == '{') ADVANCE(121); - if (lookahead == '~') ADVANCE(57); + if (lookahead == '\n') ADVANCE(158); + if (lookahead == '\r') SKIP(4); + if (lookahead == '!') ADVANCE(102); + if (lookahead == '"') ADVANCE(103); + if (lookahead == '$') ADVANCE(141); + if (lookahead == '\'') ADVANCE(103); + if (lookahead == '(') ADVANCE(133); + if (lookahead == '*') ADVANCE(51); + if (lookahead == '-') ADVANCE(81); + if (lookahead == '.') ADVANCE(83); + if (lookahead == ':') ADVANCE(104); + if (lookahead == '<') ADVANCE(80); + if (lookahead == '>') ADVANCE(159); + if (lookahead == 'F') ADVANCE(90); + if (lookahead == 'I') ADVANCE(92); + if (lookahead == 'N') ADVANCE(93); + if (lookahead == 'T') ADVANCE(94); + if (lookahead == 'W') ADVANCE(89); + if (lookahead == 'X') ADVANCE(101); + if (lookahead == '[') ADVANCE(120); + if (lookahead == '\\') ADVANCE(67); + if (lookahead == '^') ADVANCE(55); + if (lookahead == '_') ADVANCE(47); + if (lookahead == '{') ADVANCE(126); + if (lookahead == '~') ADVANCE(59); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(103); + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '"' < lookahead)) ADVANCE(105); END_STATE(); case 5: - if (lookahead == '\n') ADVANCE(153); - if (lookahead == '\r') SKIP(6) - if (lookahead == '"') ADVANCE(171); - if (lookahead == '#') ADVANCE(30); - if (lookahead == '%') ADVANCE(130); - if (lookahead == '(') ADVANCE(127); - if (lookahead == '.') ADVANCE(167); - if (lookahead == '=') ADVANCE(170); - if (lookahead == '[') ADVANCE(113); - if (lookahead == '{') ADVANCE(116); - if (lookahead == '}') ADVANCE(129); + if (lookahead == '\n') ADVANCE(158); + if (lookahead == '\r') SKIP(6); + if (lookahead == '"') ADVANCE(176); + if (lookahead == '#') ADVANCE(31); + if (lookahead == '%') ADVANCE(135); + if (lookahead == '(') ADVANCE(132); + if (lookahead == '.') ADVANCE(172); + if (lookahead == '=') ADVANCE(175); + if (lookahead == '[') ADVANCE(117); + if (lookahead == '{') ADVANCE(121); + if (lookahead == '}') ADVANCE(134); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(152); + lookahead == ' ') ADVANCE(157); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(108); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); case 6: - if (lookahead == '\n') ADVANCE(153); - if (lookahead == '\r') SKIP(6) - if (lookahead == '"') ADVANCE(171); - if (lookahead == '#') ADVANCE(30); - if (lookahead == '%') ADVANCE(130); - if (lookahead == '(') ADVANCE(127); - if (lookahead == '.') ADVANCE(167); - if (lookahead == '=') ADVANCE(170); - if (lookahead == '[') ADVANCE(112); - if (lookahead == '{') ADVANCE(116); - if (lookahead == '}') ADVANCE(129); + if (lookahead == '\n') ADVANCE(158); + if (lookahead == '\r') SKIP(6); + if (lookahead == '"') ADVANCE(176); + if (lookahead == '#') ADVANCE(31); + if (lookahead == '%') ADVANCE(135); + if (lookahead == '(') ADVANCE(132); + if (lookahead == '.') ADVANCE(172); + if (lookahead == '=') ADVANCE(175); + if (lookahead == '[') ADVANCE(116); + if (lookahead == '{') ADVANCE(121); + if (lookahead == '}') ADVANCE(134); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(108); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); case 7: - if (lookahead == '\n') ADVANCE(153); - if (lookahead == '\r') ADVANCE(132); - if (lookahead == '%') ADVANCE(130); - if (lookahead == '\\') ADVANCE(133); - if (lookahead != 0) ADVANCE(131); + if (lookahead == '\n') ADVANCE(158); + if (lookahead == '\r') ADVANCE(137); + if (lookahead == '%') ADVANCE(135); + if (lookahead == '\\') ADVANCE(138); + if (lookahead != 0) ADVANCE(136); END_STATE(); case 8: - if (lookahead == '\n') ADVANCE(153); - if (lookahead == '\r') SKIP(10) - if (lookahead == '!') ADVANCE(163); - if (lookahead == '"') ADVANCE(164); - if (lookahead == '$') ADVANCE(135); - if (lookahead == '\'') ADVANCE(164); - if (lookahead == '(') ADVANCE(127); - if (lookahead == '*') ADVANCE(48); - if (lookahead == '-') ADVANCE(155); - if (lookahead == '.') ADVANCE(156); - if (lookahead == ':') ADVANCE(166); - if (lookahead == '<') ADVANCE(77); - if (lookahead == 'F') ADVANCE(157); - if (lookahead == 'I') ADVANCE(159); - if (lookahead == 'N') ADVANCE(160); - if (lookahead == 'T') ADVANCE(161); - if (lookahead == 'W') ADVANCE(158); - if (lookahead == 'X') ADVANCE(162); - if (lookahead == '[') ADVANCE(114); - if (lookahead == '\\') ADVANCE(64); - if (lookahead == ']') ADVANCE(122); - if (lookahead == '^') ADVANCE(52); - if (lookahead == '_') ADVANCE(44); - if (lookahead == '{') ADVANCE(120); - if (lookahead == '~') ADVANCE(56); + if (lookahead == '\n') ADVANCE(158); + if (lookahead == '\r') SKIP(11); + if (lookahead == '!') ADVANCE(169); + if (lookahead == '"') ADVANCE(170); + if (lookahead == '$') ADVANCE(140); + if (lookahead == '\'') ADVANCE(170); + if (lookahead == '(') ADVANCE(132); + if (lookahead == '*') ADVANCE(50); + if (lookahead == '-') ADVANCE(161); + if (lookahead == '.') ADVANCE(162); + if (lookahead == ':') ADVANCE(171); + if (lookahead == '<') ADVANCE(79); + if (lookahead == 'F') ADVANCE(163); + if (lookahead == 'I') ADVANCE(165); + if (lookahead == 'N') ADVANCE(166); + if (lookahead == 'T') ADVANCE(167); + if (lookahead == 'W') ADVANCE(164); + if (lookahead == 'X') ADVANCE(168); + if (lookahead == '[') ADVANCE(118); + if (lookahead == '\\') ADVANCE(66); + if (lookahead == ']') ADVANCE(127); + if (lookahead == '^') ADVANCE(54); + if (lookahead == '_') ADVANCE(46); + if (lookahead == '{') ADVANCE(125); + if (lookahead == '~') ADVANCE(58); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(152); + lookahead == ' ') ADVANCE(157); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(154); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(159); END_STATE(); case 9: - if (lookahead == '\n') ADVANCE(153); - if (lookahead == '\r') SKIP(10) - if (lookahead == '!') ADVANCE(163); - if (lookahead == '"') ADVANCE(164); - if (lookahead == '$') ADVANCE(135); - if (lookahead == '\'') ADVANCE(164); - if (lookahead == '(') ADVANCE(127); - if (lookahead == '*') ADVANCE(48); - if (lookahead == '-') ADVANCE(155); - if (lookahead == '.') ADVANCE(156); - if (lookahead == ':') ADVANCE(166); - if (lookahead == '<') ADVANCE(77); - if (lookahead == 'F') ADVANCE(157); - if (lookahead == 'I') ADVANCE(159); - if (lookahead == 'N') ADVANCE(160); - if (lookahead == 'T') ADVANCE(161); - if (lookahead == 'W') ADVANCE(158); - if (lookahead == 'X') ADVANCE(162); - if (lookahead == '[') ADVANCE(114); - if (lookahead == '\\') ADVANCE(64); - if (lookahead == ']') ADVANCE(122); - if (lookahead == '^') ADVANCE(52); - if (lookahead == '_') ADVANCE(44); - if (lookahead == '{') ADVANCE(119); - if (lookahead == '~') ADVANCE(56); + if (lookahead == '\n') ADVANCE(158); + if (lookahead == '\r') SKIP(11); + if (lookahead == '!') ADVANCE(169); + if (lookahead == '"') ADVANCE(170); + if (lookahead == '$') ADVANCE(140); + if (lookahead == '\'') ADVANCE(170); + if (lookahead == '(') ADVANCE(132); + if (lookahead == '*') ADVANCE(50); + if (lookahead == '-') ADVANCE(161); + if (lookahead == '.') ADVANCE(162); + if (lookahead == ':') ADVANCE(171); + if (lookahead == '<') ADVANCE(79); + if (lookahead == 'F') ADVANCE(163); + if (lookahead == 'I') ADVANCE(165); + if (lookahead == 'N') ADVANCE(166); + if (lookahead == 'T') ADVANCE(167); + if (lookahead == 'W') ADVANCE(164); + if (lookahead == 'X') ADVANCE(168); + if (lookahead == '[') ADVANCE(119); + if (lookahead == '\\') ADVANCE(66); + if (lookahead == ']') ADVANCE(127); + if (lookahead == '^') ADVANCE(54); + if (lookahead == '_') ADVANCE(46); + if (lookahead == '{') ADVANCE(125); + if (lookahead == '~') ADVANCE(58); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(152); + lookahead == ' ') ADVANCE(157); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(154); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(159); END_STATE(); case 10: - if (lookahead == '\n') ADVANCE(153); - if (lookahead == '\r') SKIP(10) - if (lookahead == '!') ADVANCE(163); - if (lookahead == '"') ADVANCE(164); - if (lookahead == '$') ADVANCE(135); - if (lookahead == '\'') ADVANCE(164); - if (lookahead == '(') ADVANCE(127); - if (lookahead == '*') ADVANCE(48); - if (lookahead == '-') ADVANCE(155); - if (lookahead == '.') ADVANCE(156); - if (lookahead == ':') ADVANCE(166); - if (lookahead == '<') ADVANCE(77); - if (lookahead == 'F') ADVANCE(157); - if (lookahead == 'I') ADVANCE(159); - if (lookahead == 'N') ADVANCE(160); - if (lookahead == 'T') ADVANCE(161); - if (lookahead == 'W') ADVANCE(158); - if (lookahead == 'X') ADVANCE(162); - if (lookahead == '[') ADVANCE(114); - if (lookahead == '\\') ADVANCE(64); - if (lookahead == '^') ADVANCE(52); - if (lookahead == '_') ADVANCE(44); - if (lookahead == '{') ADVANCE(120); - if (lookahead == '~') ADVANCE(56); + if (lookahead == '\n') ADVANCE(158); + if (lookahead == '\r') SKIP(11); + if (lookahead == '!') ADVANCE(169); + if (lookahead == '"') ADVANCE(170); + if (lookahead == '$') ADVANCE(140); + if (lookahead == '\'') ADVANCE(170); + if (lookahead == '(') ADVANCE(132); + if (lookahead == '*') ADVANCE(50); + if (lookahead == '-') ADVANCE(161); + if (lookahead == '.') ADVANCE(162); + if (lookahead == ':') ADVANCE(171); + if (lookahead == '<') ADVANCE(79); + if (lookahead == 'F') ADVANCE(163); + if (lookahead == 'I') ADVANCE(165); + if (lookahead == 'N') ADVANCE(166); + if (lookahead == 'T') ADVANCE(167); + if (lookahead == 'W') ADVANCE(164); + if (lookahead == 'X') ADVANCE(168); + if (lookahead == '[') ADVANCE(119); + if (lookahead == '\\') ADVANCE(66); + if (lookahead == ']') ADVANCE(127); + if (lookahead == '^') ADVANCE(54); + if (lookahead == '_') ADVANCE(46); + if (lookahead == '{') ADVANCE(123); + if (lookahead == '~') ADVANCE(58); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(157); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(154); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(159); END_STATE(); case 11: - if (lookahead == '\n') ADVANCE(153); - if (lookahead == '\r') SKIP(12) - if (lookahead == '!') ADVANCE(163); - if (lookahead == '"') ADVANCE(164); - if (lookahead == '$') ADVANCE(135); - if (lookahead == '\'') ADVANCE(164); - if (lookahead == '(') ADVANCE(127); - if (lookahead == '*') ADVANCE(48); - if (lookahead == '-') ADVANCE(155); - if (lookahead == '.') ADVANCE(156); - if (lookahead == ':') ADVANCE(166); - if (lookahead == '<') ADVANCE(77); - if (lookahead == '>') ADVANCE(104); - if (lookahead == 'F') ADVANCE(157); - if (lookahead == 'I') ADVANCE(159); - if (lookahead == 'N') ADVANCE(160); - if (lookahead == 'T') ADVANCE(161); - if (lookahead == 'W') ADVANCE(158); - if (lookahead == 'X') ADVANCE(162); - if (lookahead == '[') ADVANCE(114); - if (lookahead == '\\') ADVANCE(64); - if (lookahead == ']') ADVANCE(122); - if (lookahead == '^') ADVANCE(52); - if (lookahead == '_') ADVANCE(44); - if (lookahead == '{') ADVANCE(120); - if (lookahead == '~') ADVANCE(56); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(152); + if (lookahead == '\n') ADVANCE(158); + if (lookahead == '\r') SKIP(11); + if (lookahead == '!') ADVANCE(169); + if (lookahead == '"') ADVANCE(170); + if (lookahead == '$') ADVANCE(140); + if (lookahead == '\'') ADVANCE(170); + if (lookahead == '(') ADVANCE(132); + if (lookahead == '*') ADVANCE(50); + if (lookahead == '-') ADVANCE(161); + if (lookahead == '.') ADVANCE(162); + if (lookahead == ':') ADVANCE(171); + if (lookahead == '<') ADVANCE(79); + if (lookahead == 'F') ADVANCE(163); + if (lookahead == 'I') ADVANCE(165); + if (lookahead == 'N') ADVANCE(166); + if (lookahead == 'T') ADVANCE(167); + if (lookahead == 'W') ADVANCE(164); + if (lookahead == 'X') ADVANCE(168); + if (lookahead == '[') ADVANCE(119); + if (lookahead == '\\') ADVANCE(66); + if (lookahead == '^') ADVANCE(54); + if (lookahead == '_') ADVANCE(46); + if (lookahead == '{') ADVANCE(125); + if (lookahead == '~') ADVANCE(58); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(154); + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '"' < lookahead)) ADVANCE(159); END_STATE(); case 12: - if (lookahead == '\n') ADVANCE(153); - if (lookahead == '\r') SKIP(12) - if (lookahead == '!') ADVANCE(163); - if (lookahead == '"') ADVANCE(164); - if (lookahead == '$') ADVANCE(135); - if (lookahead == '\'') ADVANCE(164); - if (lookahead == '(') ADVANCE(127); - if (lookahead == '*') ADVANCE(48); - if (lookahead == '-') ADVANCE(155); - if (lookahead == '.') ADVANCE(156); - if (lookahead == ':') ADVANCE(166); - if (lookahead == '<') ADVANCE(77); - if (lookahead == '>') ADVANCE(104); - if (lookahead == 'F') ADVANCE(157); - if (lookahead == 'I') ADVANCE(159); - if (lookahead == 'N') ADVANCE(160); - if (lookahead == 'T') ADVANCE(161); - if (lookahead == 'W') ADVANCE(158); - if (lookahead == 'X') ADVANCE(162); - if (lookahead == '[') ADVANCE(114); - if (lookahead == '\\') ADVANCE(64); - if (lookahead == '^') ADVANCE(52); - if (lookahead == '_') ADVANCE(44); - if (lookahead == '{') ADVANCE(120); - if (lookahead == '~') ADVANCE(56); + if (lookahead == '\n') ADVANCE(158); + if (lookahead == '\r') SKIP(13); + if (lookahead == '!') ADVANCE(169); + if (lookahead == '"') ADVANCE(170); + if (lookahead == '$') ADVANCE(140); + if (lookahead == '\'') ADVANCE(170); + if (lookahead == '(') ADVANCE(132); + if (lookahead == '*') ADVANCE(50); + if (lookahead == '-') ADVANCE(161); + if (lookahead == '.') ADVANCE(162); + if (lookahead == ':') ADVANCE(171); + if (lookahead == '<') ADVANCE(79); + if (lookahead == '>') ADVANCE(106); + if (lookahead == 'F') ADVANCE(163); + if (lookahead == 'I') ADVANCE(165); + if (lookahead == 'N') ADVANCE(166); + if (lookahead == 'T') ADVANCE(167); + if (lookahead == 'W') ADVANCE(164); + if (lookahead == 'X') ADVANCE(168); + if (lookahead == '[') ADVANCE(119); + if (lookahead == '\\') ADVANCE(66); + if (lookahead == ']') ADVANCE(127); + if (lookahead == '^') ADVANCE(54); + if (lookahead == '_') ADVANCE(46); + if (lookahead == '{') ADVANCE(125); + if (lookahead == '~') ADVANCE(58); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(157); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(154); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(159); END_STATE(); case 13: - if (lookahead == '\r') SKIP(13) - if (lookahead == '"') ADVANCE(171); + if (lookahead == '\n') ADVANCE(158); + if (lookahead == '\r') SKIP(13); + if (lookahead == '!') ADVANCE(169); + if (lookahead == '"') ADVANCE(170); + if (lookahead == '$') ADVANCE(140); + if (lookahead == '\'') ADVANCE(170); + if (lookahead == '(') ADVANCE(132); + if (lookahead == '*') ADVANCE(50); + if (lookahead == '-') ADVANCE(161); + if (lookahead == '.') ADVANCE(162); + if (lookahead == ':') ADVANCE(171); + if (lookahead == '<') ADVANCE(79); + if (lookahead == '>') ADVANCE(106); + if (lookahead == 'F') ADVANCE(163); + if (lookahead == 'I') ADVANCE(165); + if (lookahead == 'N') ADVANCE(166); + if (lookahead == 'T') ADVANCE(167); + if (lookahead == 'W') ADVANCE(164); + if (lookahead == 'X') ADVANCE(168); + if (lookahead == '[') ADVANCE(119); + if (lookahead == '\\') ADVANCE(66); + if (lookahead == '^') ADVANCE(54); + if (lookahead == '_') ADVANCE(46); + if (lookahead == '{') ADVANCE(125); + if (lookahead == '~') ADVANCE(58); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '"' < lookahead)) ADVANCE(159); + END_STATE(); + case 14: + if (lookahead == '\r') SKIP(14); + if (lookahead == '"') ADVANCE(176); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(174); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(179); END_STATE(); - case 14: - if (lookahead == '\r') ADVANCE(124); - if (lookahead == '\\') ADVANCE(126); + case 15: + if (lookahead == '\r') ADVANCE(129); + if (lookahead == '\\') ADVANCE(131); if (lookahead != 0 && - lookahead != ')') ADVANCE(125); + lookahead != ')') ADVANCE(130); END_STATE(); - case 15: - if (lookahead == '\r') ADVANCE(149); + case 16: + if (lookahead == '\r') ADVANCE(154); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && lookahead != '=' && lookahead != '{' && - lookahead != '}') ADVANCE(150); + lookahead != '}') ADVANCE(155); END_STATE(); - case 16: - if (lookahead == '\r') ADVANCE(172); + case 17: + if (lookahead == '\r') ADVANCE(177); if (lookahead != 0 && lookahead != '\n' && - lookahead != '"') ADVANCE(173); - END_STATE(); - case 17: - if (lookahead == '.') ADVANCE(69); + lookahead != '"') ADVANCE(178); END_STATE(); case 18: - if (lookahead == ':') ADVANCE(105); + if (lookahead == '.') ADVANCE(71); + END_STATE(); + case 19: + if (lookahead == ':') ADVANCE(107); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(18); - END_STATE(); - case 19: - if (lookahead == 'D') ADVANCE(25); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(19); END_STATE(); case 20: - if (lookahead == 'E') ADVANCE(141); + if (lookahead == 'D') ADVANCE(26); END_STATE(); case 21: - if (lookahead == 'E') ADVANCE(147); + if (lookahead == 'E') ADVANCE(146); END_STATE(); case 22: - if (lookahead == 'F') ADVANCE(24); + if (lookahead == 'E') ADVANCE(152); END_STATE(); case 23: - if (lookahead == 'M') ADVANCE(21); + if (lookahead == 'F') ADVANCE(25); END_STATE(); case 24: - if (lookahead == 'O') ADVANCE(143); + if (lookahead == 'M') ADVANCE(22); END_STATE(); case 25: - if (lookahead == 'O') ADVANCE(137); + if (lookahead == 'O') ADVANCE(148); END_STATE(); case 26: - if (lookahead == 'P') ADVANCE(139); + if (lookahead == 'O') ADVANCE(142); END_STATE(); case 27: - if (lookahead == 'T') ADVANCE(20); + if (lookahead == 'P') ADVANCE(144); END_STATE(); case 28: - if (lookahead == 'X') ADVANCE(23); + if (lookahead == 'T') ADVANCE(21); END_STATE(); case 29: - if (lookahead == 'X') ADVANCE(145); + if (lookahead == 'X') ADVANCE(24); END_STATE(); case 30: - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '}') ADVANCE(169); + if (lookahead == 'X') ADVANCE(150); END_STATE(); case 31: - if (eof) ADVANCE(41); - if (lookahead == '\n') ADVANCE(153); - if (lookahead == '\r') SKIP(31) - if (lookahead == '!') ADVANCE(163); - if (lookahead == '"') ADVANCE(171); - if (lookahead == '$') ADVANCE(135); - if (lookahead == '%') ADVANCE(130); - if (lookahead == '(') ADVANCE(127); - if (lookahead == '*') ADVANCE(48); - if (lookahead == '-') ADVANCE(155); - if (lookahead == '.') ADVANCE(168); - if (lookahead == ':') ADVANCE(166); - if (lookahead == '<') ADVANCE(77); - if (lookahead == '=') ADVANCE(170); - if (lookahead == '>') ADVANCE(104); - if (lookahead == 'F') ADVANCE(157); - if (lookahead == 'I') ADVANCE(159); - if (lookahead == 'N') ADVANCE(160); - if (lookahead == 'T') ADVANCE(161); - if (lookahead == 'W') ADVANCE(158); - if (lookahead == 'X') ADVANCE(162); - if (lookahead == '[') ADVANCE(114); - if (lookahead == '\\') ADVANCE(66); - if (lookahead == '^') ADVANCE(52); - if (lookahead == '_') ADVANCE(44); - if (lookahead == '{') ADVANCE(118); - if (lookahead == '}') ADVANCE(129); - if (lookahead == '~') ADVANCE(56); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(154); + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '}') ADVANCE(174); END_STATE(); case 32: - if (eof) ADVANCE(41); - if (lookahead == '\n') ADVANCE(153); - if (lookahead == '\r') SKIP(33) - if (lookahead == '!') ADVANCE(163); - if (lookahead == '"') ADVANCE(164); - if (lookahead == '$') ADVANCE(135); - if (lookahead == '\'') ADVANCE(164); - if (lookahead == '(') ADVANCE(127); - if (lookahead == '*') ADVANCE(48); - if (lookahead == '-') ADVANCE(155); - if (lookahead == '.') ADVANCE(156); - if (lookahead == ':') ADVANCE(166); - if (lookahead == '<') ADVANCE(77); - if (lookahead == 'F') ADVANCE(157); - if (lookahead == 'I') ADVANCE(159); - if (lookahead == 'N') ADVANCE(160); - if (lookahead == 'T') ADVANCE(161); - if (lookahead == 'W') ADVANCE(158); - if (lookahead == 'X') ADVANCE(162); - if (lookahead == '[') ADVANCE(114); - if (lookahead == '\\') ADVANCE(64); - if (lookahead == '^') ADVANCE(52); - if (lookahead == '_') ADVANCE(44); - if (lookahead == '{') ADVANCE(165); - if (lookahead == '~') ADVANCE(56); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(152); + if (eof) ADVANCE(43); + if (lookahead == '\n') ADVANCE(158); + if (lookahead == '\r') SKIP(32); + if (lookahead == '!') ADVANCE(169); + if (lookahead == '"') ADVANCE(176); + if (lookahead == '$') ADVANCE(140); + if (lookahead == '%') ADVANCE(135); + if (lookahead == '(') ADVANCE(132); + if (lookahead == '*') ADVANCE(50); + if (lookahead == '-') ADVANCE(161); + if (lookahead == '.') ADVANCE(173); + if (lookahead == ':') ADVANCE(171); + if (lookahead == '<') ADVANCE(79); + if (lookahead == '=') ADVANCE(175); + if (lookahead == '>') ADVANCE(106); + if (lookahead == 'F') ADVANCE(163); + if (lookahead == 'I') ADVANCE(165); + if (lookahead == 'N') ADVANCE(166); + if (lookahead == 'T') ADVANCE(167); + if (lookahead == 'W') ADVANCE(164); + if (lookahead == 'X') ADVANCE(168); + if (lookahead == '[') ADVANCE(119); + if (lookahead == '\\') ADVANCE(68); + if (lookahead == '^') ADVANCE(54); + if (lookahead == '_') ADVANCE(46); + if (lookahead == '{') ADVANCE(124); + if (lookahead == '}') ADVANCE(134); + if (lookahead == '~') ADVANCE(58); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(154); + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '"' < lookahead)) ADVANCE(159); END_STATE(); case 33: - if (eof) ADVANCE(41); - if (lookahead == '\n') ADVANCE(153); - if (lookahead == '\r') SKIP(33) - if (lookahead == '!') ADVANCE(163); - if (lookahead == '"') ADVANCE(164); - if (lookahead == '$') ADVANCE(135); - if (lookahead == '\'') ADVANCE(164); - if (lookahead == '(') ADVANCE(127); - if (lookahead == '*') ADVANCE(48); - if (lookahead == '-') ADVANCE(155); - if (lookahead == '.') ADVANCE(156); - if (lookahead == ':') ADVANCE(166); - if (lookahead == '<') ADVANCE(77); - if (lookahead == 'F') ADVANCE(157); - if (lookahead == 'I') ADVANCE(159); - if (lookahead == 'N') ADVANCE(160); - if (lookahead == 'T') ADVANCE(161); - if (lookahead == 'W') ADVANCE(158); - if (lookahead == 'X') ADVANCE(162); - if (lookahead == '[') ADVANCE(114); - if (lookahead == '\\') ADVANCE(64); - if (lookahead == '^') ADVANCE(52); - if (lookahead == '_') ADVANCE(44); - if (lookahead == '{') ADVANCE(165); - if (lookahead == '~') ADVANCE(56); + if (eof) ADVANCE(43); + if (lookahead == '\n') ADVANCE(158); + if (lookahead == '\r') SKIP(34); + if (lookahead == '!') ADVANCE(169); + if (lookahead == '"') ADVANCE(170); + if (lookahead == '$') ADVANCE(140); + if (lookahead == '\'') ADVANCE(170); + if (lookahead == '(') ADVANCE(132); + if (lookahead == '*') ADVANCE(50); + if (lookahead == '-') ADVANCE(161); + if (lookahead == '.') ADVANCE(162); + if (lookahead == ':') ADVANCE(171); + if (lookahead == '<') ADVANCE(79); + if (lookahead == 'F') ADVANCE(163); + if (lookahead == 'I') ADVANCE(165); + if (lookahead == 'N') ADVANCE(166); + if (lookahead == 'T') ADVANCE(167); + if (lookahead == 'W') ADVANCE(164); + if (lookahead == 'X') ADVANCE(168); + if (lookahead == '[') ADVANCE(119); + if (lookahead == '\\') ADVANCE(66); + if (lookahead == '^') ADVANCE(54); + if (lookahead == '_') ADVANCE(46); + if (lookahead == '{') ADVANCE(160); + if (lookahead == '~') ADVANCE(58); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(157); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(154); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(159); END_STATE(); case 34: - if (eof) ADVANCE(41); - if (lookahead == '\n') ADVANCE(153); - if (lookahead == '\r') SKIP(35) - if (lookahead == '!') ADVANCE(163); - if (lookahead == '"') ADVANCE(164); - if (lookahead == '$') ADVANCE(135); - if (lookahead == '\'') ADVANCE(164); - if (lookahead == '(') ADVANCE(127); - if (lookahead == '*') ADVANCE(48); - if (lookahead == '-') ADVANCE(155); - if (lookahead == '.') ADVANCE(156); - if (lookahead == ':') ADVANCE(166); - if (lookahead == '<') ADVANCE(77); - if (lookahead == '>') ADVANCE(104); - if (lookahead == 'F') ADVANCE(157); - if (lookahead == 'I') ADVANCE(159); - if (lookahead == 'N') ADVANCE(160); - if (lookahead == 'T') ADVANCE(161); - if (lookahead == 'W') ADVANCE(158); - if (lookahead == 'X') ADVANCE(162); - if (lookahead == '[') ADVANCE(114); - if (lookahead == '\\') ADVANCE(64); - if (lookahead == '^') ADVANCE(52); - if (lookahead == '_') ADVANCE(44); - if (lookahead == '{') ADVANCE(120); - if (lookahead == '~') ADVANCE(56); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(152); + if (eof) ADVANCE(43); + if (lookahead == '\n') ADVANCE(158); + if (lookahead == '\r') SKIP(34); + if (lookahead == '!') ADVANCE(169); + if (lookahead == '"') ADVANCE(170); + if (lookahead == '$') ADVANCE(140); + if (lookahead == '\'') ADVANCE(170); + if (lookahead == '(') ADVANCE(132); + if (lookahead == '*') ADVANCE(50); + if (lookahead == '-') ADVANCE(161); + if (lookahead == '.') ADVANCE(162); + if (lookahead == ':') ADVANCE(171); + if (lookahead == '<') ADVANCE(79); + if (lookahead == 'F') ADVANCE(163); + if (lookahead == 'I') ADVANCE(165); + if (lookahead == 'N') ADVANCE(166); + if (lookahead == 'T') ADVANCE(167); + if (lookahead == 'W') ADVANCE(164); + if (lookahead == 'X') ADVANCE(168); + if (lookahead == '[') ADVANCE(119); + if (lookahead == '\\') ADVANCE(66); + if (lookahead == '^') ADVANCE(54); + if (lookahead == '_') ADVANCE(46); + if (lookahead == '{') ADVANCE(160); + if (lookahead == '~') ADVANCE(58); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(154); + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '"' < lookahead)) ADVANCE(159); END_STATE(); case 35: - if (eof) ADVANCE(41); - if (lookahead == '\n') ADVANCE(153); - if (lookahead == '\r') SKIP(35) - if (lookahead == '!') ADVANCE(163); - if (lookahead == '"') ADVANCE(164); - if (lookahead == '$') ADVANCE(135); - if (lookahead == '\'') ADVANCE(164); - if (lookahead == '(') ADVANCE(127); - if (lookahead == '*') ADVANCE(48); - if (lookahead == '-') ADVANCE(155); - if (lookahead == '.') ADVANCE(156); - if (lookahead == ':') ADVANCE(166); - if (lookahead == '<') ADVANCE(77); - if (lookahead == '>') ADVANCE(104); - if (lookahead == 'F') ADVANCE(157); - if (lookahead == 'I') ADVANCE(159); - if (lookahead == 'N') ADVANCE(160); - if (lookahead == 'T') ADVANCE(161); - if (lookahead == 'W') ADVANCE(158); - if (lookahead == 'X') ADVANCE(162); - if (lookahead == '[') ADVANCE(114); - if (lookahead == '\\') ADVANCE(64); - if (lookahead == '^') ADVANCE(52); - if (lookahead == '_') ADVANCE(44); - if (lookahead == '{') ADVANCE(120); - if (lookahead == '~') ADVANCE(56); + if (eof) ADVANCE(43); + if (lookahead == '\n') ADVANCE(158); + if (lookahead == '\r') SKIP(36); + if (lookahead == '!') ADVANCE(102); + if (lookahead == '"') ADVANCE(103); + if (lookahead == '$') ADVANCE(141); + if (lookahead == '\'') ADVANCE(103); + if (lookahead == '(') ADVANCE(133); + if (lookahead == '*') ADVANCE(51); + if (lookahead == '-') ADVANCE(81); + if (lookahead == '.') ADVANCE(83); + if (lookahead == ':') ADVANCE(104); + if (lookahead == '<') ADVANCE(80); + if (lookahead == '>') ADVANCE(159); + if (lookahead == 'F') ADVANCE(90); + if (lookahead == 'I') ADVANCE(92); + if (lookahead == 'N') ADVANCE(93); + if (lookahead == 'T') ADVANCE(94); + if (lookahead == 'W') ADVANCE(89); + if (lookahead == 'X') ADVANCE(101); + if (lookahead == '[') ADVANCE(120); + if (lookahead == '\\') ADVANCE(67); + if (lookahead == '^') ADVANCE(55); + if (lookahead == '_') ADVANCE(47); + if (lookahead == '{') ADVANCE(126); + if (lookahead == '~') ADVANCE(59); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(157); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(154); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(105); END_STATE(); case 36: - if (eof) ADVANCE(41); - if (lookahead == '\n') ADVANCE(153); - if (lookahead == '\r') SKIP(37) - if (lookahead == '!') ADVANCE(163); - if (lookahead == '"') ADVANCE(164); - if (lookahead == '$') ADVANCE(135); - if (lookahead == '\'') ADVANCE(164); - if (lookahead == '(') ADVANCE(127); - if (lookahead == '*') ADVANCE(48); - if (lookahead == '-') ADVANCE(155); - if (lookahead == '.') ADVANCE(156); - if (lookahead == ':') ADVANCE(166); - if (lookahead == '<') ADVANCE(77); - if (lookahead == 'F') ADVANCE(157); - if (lookahead == 'I') ADVANCE(159); - if (lookahead == 'N') ADVANCE(160); - if (lookahead == 'T') ADVANCE(161); - if (lookahead == 'W') ADVANCE(158); - if (lookahead == 'X') ADVANCE(162); - if (lookahead == '[') ADVANCE(114); - if (lookahead == '\\') ADVANCE(64); - if (lookahead == '^') ADVANCE(52); - if (lookahead == '_') ADVANCE(44); - if (lookahead == '{') ADVANCE(120); - if (lookahead == '~') ADVANCE(56); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(152); + if (eof) ADVANCE(43); + if (lookahead == '\n') ADVANCE(158); + if (lookahead == '\r') SKIP(36); + if (lookahead == '!') ADVANCE(102); + if (lookahead == '"') ADVANCE(103); + if (lookahead == '$') ADVANCE(141); + if (lookahead == '\'') ADVANCE(103); + if (lookahead == '(') ADVANCE(133); + if (lookahead == '*') ADVANCE(51); + if (lookahead == '-') ADVANCE(81); + if (lookahead == '.') ADVANCE(83); + if (lookahead == ':') ADVANCE(104); + if (lookahead == '<') ADVANCE(80); + if (lookahead == '>') ADVANCE(159); + if (lookahead == 'F') ADVANCE(90); + if (lookahead == 'I') ADVANCE(92); + if (lookahead == 'N') ADVANCE(93); + if (lookahead == 'T') ADVANCE(94); + if (lookahead == 'W') ADVANCE(89); + if (lookahead == 'X') ADVANCE(101); + if (lookahead == '[') ADVANCE(120); + if (lookahead == '\\') ADVANCE(67); + if (lookahead == '^') ADVANCE(55); + if (lookahead == '_') ADVANCE(47); + if (lookahead == '{') ADVANCE(126); + if (lookahead == '~') ADVANCE(59); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(154); + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '"' < lookahead)) ADVANCE(105); END_STATE(); case 37: - if (eof) ADVANCE(41); - if (lookahead == '\n') ADVANCE(153); - if (lookahead == '\r') SKIP(37) - if (lookahead == '!') ADVANCE(163); - if (lookahead == '"') ADVANCE(164); - if (lookahead == '$') ADVANCE(135); - if (lookahead == '\'') ADVANCE(164); - if (lookahead == '(') ADVANCE(127); - if (lookahead == '*') ADVANCE(48); - if (lookahead == '-') ADVANCE(155); - if (lookahead == '.') ADVANCE(156); - if (lookahead == ':') ADVANCE(166); - if (lookahead == '<') ADVANCE(77); - if (lookahead == 'F') ADVANCE(157); - if (lookahead == 'I') ADVANCE(159); - if (lookahead == 'N') ADVANCE(160); - if (lookahead == 'T') ADVANCE(161); - if (lookahead == 'W') ADVANCE(158); - if (lookahead == 'X') ADVANCE(162); - if (lookahead == '[') ADVANCE(114); - if (lookahead == '\\') ADVANCE(64); - if (lookahead == '^') ADVANCE(52); - if (lookahead == '_') ADVANCE(44); - if (lookahead == '{') ADVANCE(120); - if (lookahead == '~') ADVANCE(56); + if (eof) ADVANCE(43); + if (lookahead == '\n') ADVANCE(158); + if (lookahead == '\r') SKIP(39); + if (lookahead == '!') ADVANCE(169); + if (lookahead == '"') ADVANCE(170); + if (lookahead == '$') ADVANCE(140); + if (lookahead == '\'') ADVANCE(170); + if (lookahead == '(') ADVANCE(132); + if (lookahead == '*') ADVANCE(50); + if (lookahead == '-') ADVANCE(161); + if (lookahead == '.') ADVANCE(162); + if (lookahead == ':') ADVANCE(171); + if (lookahead == '<') ADVANCE(79); + if (lookahead == 'F') ADVANCE(163); + if (lookahead == 'I') ADVANCE(165); + if (lookahead == 'N') ADVANCE(166); + if (lookahead == 'T') ADVANCE(167); + if (lookahead == 'W') ADVANCE(164); + if (lookahead == 'X') ADVANCE(168); + if (lookahead == '[') ADVANCE(118); + if (lookahead == '\\') ADVANCE(66); + if (lookahead == '^') ADVANCE(54); + if (lookahead == '_') ADVANCE(46); + if (lookahead == '{') ADVANCE(125); + if (lookahead == '~') ADVANCE(58); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(157); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(154); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(159); END_STATE(); case 38: - if (eof) ADVANCE(41); - if (lookahead == '\n') ADVANCE(153); - if (lookahead == '\r') SKIP(37) - if (lookahead == '!') ADVANCE(163); - if (lookahead == '"') ADVANCE(164); - if (lookahead == '$') ADVANCE(135); - if (lookahead == '\'') ADVANCE(164); - if (lookahead == '(') ADVANCE(127); - if (lookahead == '*') ADVANCE(48); - if (lookahead == '-') ADVANCE(155); - if (lookahead == '.') ADVANCE(156); - if (lookahead == ':') ADVANCE(166); - if (lookahead == '<') ADVANCE(77); - if (lookahead == 'F') ADVANCE(157); - if (lookahead == 'I') ADVANCE(159); - if (lookahead == 'N') ADVANCE(160); - if (lookahead == 'T') ADVANCE(161); - if (lookahead == 'W') ADVANCE(158); - if (lookahead == 'X') ADVANCE(162); - if (lookahead == '[') ADVANCE(114); - if (lookahead == '\\') ADVANCE(64); - if (lookahead == '^') ADVANCE(52); - if (lookahead == '_') ADVANCE(44); - if (lookahead == '{') ADVANCE(119); - if (lookahead == '~') ADVANCE(56); + if (eof) ADVANCE(43); + if (lookahead == '\n') ADVANCE(158); + if (lookahead == '\r') SKIP(39); + if (lookahead == '!') ADVANCE(169); + if (lookahead == '"') ADVANCE(170); + if (lookahead == '$') ADVANCE(140); + if (lookahead == '\'') ADVANCE(170); + if (lookahead == '(') ADVANCE(132); + if (lookahead == '*') ADVANCE(50); + if (lookahead == '-') ADVANCE(161); + if (lookahead == '.') ADVANCE(162); + if (lookahead == ':') ADVANCE(171); + if (lookahead == '<') ADVANCE(79); + if (lookahead == 'F') ADVANCE(163); + if (lookahead == 'I') ADVANCE(165); + if (lookahead == 'N') ADVANCE(166); + if (lookahead == 'T') ADVANCE(167); + if (lookahead == 'W') ADVANCE(164); + if (lookahead == 'X') ADVANCE(168); + if (lookahead == '[') ADVANCE(119); + if (lookahead == '\\') ADVANCE(66); + if (lookahead == '^') ADVANCE(54); + if (lookahead == '_') ADVANCE(46); + if (lookahead == '{') ADVANCE(125); + if (lookahead == '~') ADVANCE(58); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(152); + lookahead == ' ') ADVANCE(157); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(154); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(159); END_STATE(); case 39: - if (eof) ADVANCE(41); - if (lookahead == '\n') ADVANCE(153); - if (lookahead == '\r') SKIP(40) - if (lookahead == '!') ADVANCE(100); - if (lookahead == '"') ADVANCE(101); - if (lookahead == '$') ADVANCE(136); - if (lookahead == '\'') ADVANCE(101); - if (lookahead == '(') ADVANCE(128); - if (lookahead == '*') ADVANCE(49); - if (lookahead == '-') ADVANCE(79); - if (lookahead == '.') ADVANCE(81); - if (lookahead == ':') ADVANCE(102); - if (lookahead == '<') ADVANCE(78); - if (lookahead == '>') ADVANCE(154); - if (lookahead == 'F') ADVANCE(88); - if (lookahead == 'I') ADVANCE(90); - if (lookahead == 'N') ADVANCE(91); - if (lookahead == 'T') ADVANCE(92); - if (lookahead == 'W') ADVANCE(87); - if (lookahead == 'X') ADVANCE(99); - if (lookahead == '[') ADVANCE(115); - if (lookahead == '\\') ADVANCE(65); - if (lookahead == '^') ADVANCE(53); - if (lookahead == '_') ADVANCE(45); - if (lookahead == '{') ADVANCE(121); - if (lookahead == '~') ADVANCE(57); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(152); + if (eof) ADVANCE(43); + if (lookahead == '\n') ADVANCE(158); + if (lookahead == '\r') SKIP(39); + if (lookahead == '!') ADVANCE(169); + if (lookahead == '"') ADVANCE(170); + if (lookahead == '$') ADVANCE(140); + if (lookahead == '\'') ADVANCE(170); + if (lookahead == '(') ADVANCE(132); + if (lookahead == '*') ADVANCE(50); + if (lookahead == '-') ADVANCE(161); + if (lookahead == '.') ADVANCE(162); + if (lookahead == ':') ADVANCE(171); + if (lookahead == '<') ADVANCE(79); + if (lookahead == 'F') ADVANCE(163); + if (lookahead == 'I') ADVANCE(165); + if (lookahead == 'N') ADVANCE(166); + if (lookahead == 'T') ADVANCE(167); + if (lookahead == 'W') ADVANCE(164); + if (lookahead == 'X') ADVANCE(168); + if (lookahead == '[') ADVANCE(119); + if (lookahead == '\\') ADVANCE(66); + if (lookahead == '^') ADVANCE(54); + if (lookahead == '_') ADVANCE(46); + if (lookahead == '{') ADVANCE(125); + if (lookahead == '~') ADVANCE(58); if (lookahead != 0 && - lookahead != 11 && - lookahead != '\f') ADVANCE(103); + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '"' < lookahead)) ADVANCE(159); END_STATE(); case 40: - if (eof) ADVANCE(41); - if (lookahead == '\n') ADVANCE(153); - if (lookahead == '\r') SKIP(40) - if (lookahead == '!') ADVANCE(100); - if (lookahead == '"') ADVANCE(101); - if (lookahead == '$') ADVANCE(136); - if (lookahead == '\'') ADVANCE(101); - if (lookahead == '(') ADVANCE(128); - if (lookahead == '*') ADVANCE(49); - if (lookahead == '-') ADVANCE(79); - if (lookahead == '.') ADVANCE(81); - if (lookahead == ':') ADVANCE(102); - if (lookahead == '<') ADVANCE(78); - if (lookahead == '>') ADVANCE(154); - if (lookahead == 'F') ADVANCE(88); - if (lookahead == 'I') ADVANCE(90); - if (lookahead == 'N') ADVANCE(91); - if (lookahead == 'T') ADVANCE(92); - if (lookahead == 'W') ADVANCE(87); - if (lookahead == 'X') ADVANCE(99); - if (lookahead == '[') ADVANCE(115); - if (lookahead == '\\') ADVANCE(65); - if (lookahead == '^') ADVANCE(53); - if (lookahead == '_') ADVANCE(45); - if (lookahead == '{') ADVANCE(121); - if (lookahead == '~') ADVANCE(57); + if (eof) ADVANCE(43); + if (lookahead == '\n') ADVANCE(158); + if (lookahead == '\r') SKIP(39); + if (lookahead == '!') ADVANCE(169); + if (lookahead == '"') ADVANCE(170); + if (lookahead == '$') ADVANCE(140); + if (lookahead == '\'') ADVANCE(170); + if (lookahead == '(') ADVANCE(132); + if (lookahead == '*') ADVANCE(50); + if (lookahead == '-') ADVANCE(161); + if (lookahead == '.') ADVANCE(162); + if (lookahead == ':') ADVANCE(171); + if (lookahead == '<') ADVANCE(79); + if (lookahead == 'F') ADVANCE(163); + if (lookahead == 'I') ADVANCE(165); + if (lookahead == 'N') ADVANCE(166); + if (lookahead == 'T') ADVANCE(167); + if (lookahead == 'W') ADVANCE(164); + if (lookahead == 'X') ADVANCE(168); + if (lookahead == '[') ADVANCE(119); + if (lookahead == '\\') ADVANCE(66); + if (lookahead == '^') ADVANCE(54); + if (lookahead == '_') ADVANCE(46); + if (lookahead == '{') ADVANCE(123); + if (lookahead == '~') ADVANCE(58); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(157); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(103); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(159); END_STATE(); case 41: - ACCEPT_TOKEN(ts_builtin_sym_end); + if (eof) ADVANCE(43); + if (lookahead == '\n') ADVANCE(158); + if (lookahead == '\r') SKIP(42); + if (lookahead == '!') ADVANCE(169); + if (lookahead == '"') ADVANCE(170); + if (lookahead == '$') ADVANCE(140); + if (lookahead == '\'') ADVANCE(170); + if (lookahead == '(') ADVANCE(132); + if (lookahead == '*') ADVANCE(50); + if (lookahead == '-') ADVANCE(161); + if (lookahead == '.') ADVANCE(162); + if (lookahead == ':') ADVANCE(171); + if (lookahead == '<') ADVANCE(79); + if (lookahead == '>') ADVANCE(106); + if (lookahead == 'F') ADVANCE(163); + if (lookahead == 'I') ADVANCE(165); + if (lookahead == 'N') ADVANCE(166); + if (lookahead == 'T') ADVANCE(167); + if (lookahead == 'W') ADVANCE(164); + if (lookahead == 'X') ADVANCE(168); + if (lookahead == '[') ADVANCE(119); + if (lookahead == '\\') ADVANCE(66); + if (lookahead == '^') ADVANCE(54); + if (lookahead == '_') ADVANCE(46); + if (lookahead == '{') ADVANCE(125); + if (lookahead == '~') ADVANCE(58); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(157); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(159); END_STATE(); case 42: - ACCEPT_TOKEN(anon_sym_LBRACE_); + if (eof) ADVANCE(43); + if (lookahead == '\n') ADVANCE(158); + if (lookahead == '\r') SKIP(42); + if (lookahead == '!') ADVANCE(169); + if (lookahead == '"') ADVANCE(170); + if (lookahead == '$') ADVANCE(140); + if (lookahead == '\'') ADVANCE(170); + if (lookahead == '(') ADVANCE(132); + if (lookahead == '*') ADVANCE(50); + if (lookahead == '-') ADVANCE(161); + if (lookahead == '.') ADVANCE(162); + if (lookahead == ':') ADVANCE(171); + if (lookahead == '<') ADVANCE(79); + if (lookahead == '>') ADVANCE(106); + if (lookahead == 'F') ADVANCE(163); + if (lookahead == 'I') ADVANCE(165); + if (lookahead == 'N') ADVANCE(166); + if (lookahead == 'T') ADVANCE(167); + if (lookahead == 'W') ADVANCE(164); + if (lookahead == 'X') ADVANCE(168); + if (lookahead == '[') ADVANCE(119); + if (lookahead == '\\') ADVANCE(66); + if (lookahead == '^') ADVANCE(54); + if (lookahead == '_') ADVANCE(46); + if (lookahead == '{') ADVANCE(125); + if (lookahead == '~') ADVANCE(58); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '"' < lookahead)) ADVANCE(159); END_STATE(); case 43: + ACCEPT_TOKEN(ts_builtin_sym_end); + END_STATE(); + case 44: + ACCEPT_TOKEN(anon_sym_LBRACE_); + END_STATE(); + case 45: ACCEPT_TOKEN(anon_sym_LBRACE_); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(103); + lookahead != '>') ADVANCE(105); END_STATE(); - case 44: + case 46: ACCEPT_TOKEN(anon_sym__); END_STATE(); - case 45: + case 47: ACCEPT_TOKEN(anon_sym__); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(103); + lookahead != '>') ADVANCE(105); END_STATE(); - case 46: + case 48: ACCEPT_TOKEN(anon_sym_LBRACE_STAR); END_STATE(); - case 47: + case 49: ACCEPT_TOKEN(anon_sym_LBRACE_STAR); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(103); + lookahead != '>') ADVANCE(105); END_STATE(); - case 48: + case 50: ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); - case 49: + case 51: ACCEPT_TOKEN(anon_sym_STAR); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(103); + lookahead != '>') ADVANCE(105); END_STATE(); - case 50: + case 52: ACCEPT_TOKEN(anon_sym_LBRACE_CARET); END_STATE(); - case 51: + case 53: ACCEPT_TOKEN(anon_sym_LBRACE_CARET); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(103); + lookahead != '>') ADVANCE(105); END_STATE(); - case 52: + case 54: ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); - case 53: + case 55: ACCEPT_TOKEN(anon_sym_CARET); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(103); + lookahead != '>') ADVANCE(105); END_STATE(); - case 54: + case 56: ACCEPT_TOKEN(anon_sym_LBRACE_TILDE); END_STATE(); - case 55: + case 57: ACCEPT_TOKEN(anon_sym_LBRACE_TILDE); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(103); + lookahead != '>') ADVANCE(105); END_STATE(); - case 56: + case 58: ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); - case 57: + case 59: ACCEPT_TOKEN(anon_sym_TILDE); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(103); + lookahead != '>') ADVANCE(105); END_STATE(); - case 58: + case 60: ACCEPT_TOKEN(anon_sym_LBRACE_EQ); END_STATE(); - case 59: + case 61: ACCEPT_TOKEN(anon_sym_LBRACE_EQ); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(103); + lookahead != '>') ADVANCE(105); END_STATE(); - case 60: + case 62: ACCEPT_TOKEN(anon_sym_LBRACE_PLUS); END_STATE(); - case 61: + case 63: ACCEPT_TOKEN(anon_sym_LBRACE_PLUS); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(103); + lookahead != '>') ADVANCE(105); END_STATE(); - case 62: + case 64: ACCEPT_TOKEN(anon_sym_LBRACE_DASH); END_STATE(); - case 63: + case 65: ACCEPT_TOKEN(anon_sym_LBRACE_DASH); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(103); + lookahead != '>') ADVANCE(105); END_STATE(); - case 64: + case 66: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '"' || - lookahead == '\'') ADVANCE(67); + lookahead == '\'') ADVANCE(69); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(75); + lookahead != '\r') ADVANCE(77); END_STATE(); - case 65: + case 67: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '"' || - lookahead == '\'') ADVANCE(68); + lookahead == '\'') ADVANCE(70); if (lookahead == '\t' || - lookahead == 11 || + lookahead == 0x0b || lookahead == '\f' || lookahead == ' ' || - lookahead == '>') ADVANCE(75); + lookahead == '>') ADVANCE(77); if (lookahead != 0 && - (lookahead < '\n' || '\r' < lookahead)) ADVANCE(76); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(78); END_STATE(); - case 66: + case 68: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(75); + lookahead != '\r') ADVANCE(77); END_STATE(); - case 67: + case 69: ACCEPT_TOKEN(sym_quotation_marks); END_STATE(); - case 68: + case 70: ACCEPT_TOKEN(sym_quotation_marks); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(103); + lookahead != '>') ADVANCE(105); END_STATE(); - case 69: + case 71: ACCEPT_TOKEN(sym_ellipsis); END_STATE(); - case 70: + case 72: ACCEPT_TOKEN(sym_ellipsis); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(103); + lookahead != '>') ADVANCE(105); END_STATE(); - case 71: + case 73: ACCEPT_TOKEN(sym_em_dash); END_STATE(); - case 72: + case 74: ACCEPT_TOKEN(sym_em_dash); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(103); + lookahead != '>') ADVANCE(105); END_STATE(); - case 73: + case 75: ACCEPT_TOKEN(sym_en_dash); - if (lookahead == '-') ADVANCE(71); + if (lookahead == '-') ADVANCE(73); END_STATE(); - case 74: + case 76: ACCEPT_TOKEN(sym_en_dash); - if (lookahead == '-') ADVANCE(72); + if (lookahead == '-') ADVANCE(74); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(103); + lookahead != '>') ADVANCE(105); END_STATE(); - case 75: + case 77: ACCEPT_TOKEN(sym_backslash_escape); END_STATE(); - case 76: + case 78: ACCEPT_TOKEN(sym_backslash_escape); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(103); + lookahead != '>') ADVANCE(105); END_STATE(); - case 77: + case 79: ACCEPT_TOKEN(anon_sym_LT); END_STATE(); - case 78: + case 80: ACCEPT_TOKEN(anon_sym_LT); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(103); + lookahead != '>') ADVANCE(105); END_STATE(); - case 79: + case 81: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == '-') ADVANCE(74); + if (lookahead == '-') ADVANCE(76); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(103); + lookahead != '>') ADVANCE(105); END_STATE(); - case 80: + case 82: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == '.') ADVANCE(70); + if (lookahead == '.') ADVANCE(72); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(103); + lookahead != '>') ADVANCE(105); END_STATE(); - case 81: + case 83: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == '.') ADVANCE(80); + if (lookahead == '.') ADVANCE(82); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(103); + lookahead != '>') ADVANCE(105); END_STATE(); - case 82: + case 84: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == ':') ADVANCE(103); + if (lookahead == ':') ADVANCE(105); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(82); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(103); - END_STATE(); - case 83: - ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'D') ADVANCE(94); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '>') ADVANCE(103); - END_STATE(); - case 84: - ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'E') ADVANCE(142); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(84); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(103); + lookahead != '>') ADVANCE(105); END_STATE(); case 85: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'E') ADVANCE(148); + if (lookahead == 'D') ADVANCE(96); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(103); + lookahead != '>') ADVANCE(105); END_STATE(); case 86: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'F') ADVANCE(93); + if (lookahead == 'E') ADVANCE(147); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(103); + lookahead != '>') ADVANCE(105); END_STATE(); case 87: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'I') ADVANCE(95); + if (lookahead == 'E') ADVANCE(153); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(103); + lookahead != '>') ADVANCE(105); END_STATE(); case 88: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'I') ADVANCE(97); + if (lookahead == 'F') ADVANCE(95); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(103); + lookahead != '>') ADVANCE(105); END_STATE(); case 89: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'M') ADVANCE(85); + if (lookahead == 'I') ADVANCE(97); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(103); + lookahead != '>') ADVANCE(105); END_STATE(); case 90: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'N') ADVANCE(86); + if (lookahead == 'I') ADVANCE(99); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(103); + lookahead != '>') ADVANCE(105); END_STATE(); case 91: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'O') ADVANCE(96); + if (lookahead == 'M') ADVANCE(87); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(103); + lookahead != '>') ADVANCE(105); END_STATE(); case 92: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'O') ADVANCE(83); + if (lookahead == 'N') ADVANCE(88); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(103); + lookahead != '>') ADVANCE(105); END_STATE(); case 93: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'O') ADVANCE(144); + if (lookahead == 'O') ADVANCE(98); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(103); + lookahead != '>') ADVANCE(105); END_STATE(); case 94: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'O') ADVANCE(138); + if (lookahead == 'O') ADVANCE(85); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(103); + lookahead != '>') ADVANCE(105); END_STATE(); case 95: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'P') ADVANCE(140); + if (lookahead == 'O') ADVANCE(149); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(103); + lookahead != '>') ADVANCE(105); END_STATE(); case 96: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'T') ADVANCE(84); + if (lookahead == 'O') ADVANCE(143); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(103); + lookahead != '>') ADVANCE(105); END_STATE(); case 97: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'X') ADVANCE(89); + if (lookahead == 'P') ADVANCE(145); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(103); + lookahead != '>') ADVANCE(105); END_STATE(); case 98: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'X') ADVANCE(146); + if (lookahead == 'T') ADVANCE(86); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(103); + lookahead != '>') ADVANCE(105); END_STATE(); case 99: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == 'X') ADVANCE(98); + if (lookahead == 'X') ADVANCE(91); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(103); + lookahead != '>') ADVANCE(105); END_STATE(); case 100: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == '[') ADVANCE(111); + if (lookahead == 'X') ADVANCE(151); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(103); + lookahead != '>') ADVANCE(105); END_STATE(); case 101: ACCEPT_TOKEN(aux_sym_autolink_token1); - if (lookahead == '}') ADVANCE(68); + if (lookahead == 'X') ADVANCE(100); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(103); + lookahead != '>') ADVANCE(105); END_STATE(); case 102: + ACCEPT_TOKEN(aux_sym_autolink_token1); + if (lookahead == '[') ADVANCE(113); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(105); + END_STATE(); + case 103: + ACCEPT_TOKEN(aux_sym_autolink_token1); + if (lookahead == '}') ADVANCE(70); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(105); + END_STATE(); + case 104: ACCEPT_TOKEN(aux_sym_autolink_token1); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(82); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(84); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(103); + lookahead != '>') ADVANCE(105); END_STATE(); - case 103: + case 105: ACCEPT_TOKEN(aux_sym_autolink_token1); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(103); + lookahead != '>') ADVANCE(105); END_STATE(); - case 104: + case 106: ACCEPT_TOKEN(anon_sym_GT); END_STATE(); - case 105: + case 107: ACCEPT_TOKEN(sym_symbol); END_STATE(); - case 106: + case 108: ACCEPT_TOKEN(anon_sym_LBRACK_CARET); END_STATE(); - case 107: + case 109: ACCEPT_TOKEN(anon_sym_LBRACK_CARET); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(103); + lookahead != '>') ADVANCE(105); END_STATE(); - case 108: + case 110: ACCEPT_TOKEN(sym__id); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(108); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); - case 109: + case 111: ACCEPT_TOKEN(anon_sym_LBRACK_RBRACK); END_STATE(); - case 110: + case 112: ACCEPT_TOKEN(anon_sym_BANG_LBRACK); END_STATE(); - case 111: + case 113: ACCEPT_TOKEN(anon_sym_BANG_LBRACK); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(103); + lookahead != '>') ADVANCE(105); END_STATE(); - case 112: + case 114: + ACCEPT_TOKEN(anon_sym_LBRACK_RBRACK2); + END_STATE(); + case 115: + ACCEPT_TOKEN(anon_sym_LBRACK_RBRACK2); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '>') ADVANCE(105); + END_STATE(); + case 116: ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); - case 113: + case 117: ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == ']') ADVANCE(109); + if (lookahead == ']') ADVANCE(111); END_STATE(); - case 114: + case 118: ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '^') ADVANCE(106); + if (lookahead == ']') ADVANCE(111); + if (lookahead == '^') ADVANCE(108); END_STATE(); - case 115: + case 119: + ACCEPT_TOKEN(anon_sym_LBRACK); + if (lookahead == ']') ADVANCE(114); + if (lookahead == '^') ADVANCE(108); + END_STATE(); + case 120: ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '^') ADVANCE(107); + if (lookahead == ']') ADVANCE(115); + if (lookahead == '^') ADVANCE(109); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(103); + lookahead != '>') ADVANCE(105); END_STATE(); - case 116: + case 121: ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 117: + case 122: ACCEPT_TOKEN(anon_sym_LBRACE); - if (lookahead == '*') ADVANCE(46); - if (lookahead == '+') ADVANCE(60); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '=') ADVANCE(134); - if (lookahead == '^') ADVANCE(50); - if (lookahead == '_') ADVANCE(42); - if (lookahead == '~') ADVANCE(54); + if (lookahead == '*') ADVANCE(48); + if (lookahead == '+') ADVANCE(62); + if (lookahead == '-') ADVANCE(64); + if (lookahead == '=') ADVANCE(139); + if (lookahead == '^') ADVANCE(52); + if (lookahead == '_') ADVANCE(44); + if (lookahead == '~') ADVANCE(56); END_STATE(); - case 118: + case 123: ACCEPT_TOKEN(anon_sym_LBRACE); - if (lookahead == '*') ADVANCE(46); - if (lookahead == '+') ADVANCE(60); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '=') ADVANCE(58); - if (lookahead == '^') ADVANCE(50); - if (lookahead == '_') ADVANCE(42); - if (lookahead == '~') ADVANCE(54); + ADVANCE_MAP( + '*', 48, + '+', 62, + '-', 64, + '=', 139, + '^', 52, + '_', 44, + '~', 56, + '"', 69, + '\'', 69, + ); END_STATE(); - case 119: + case 124: ACCEPT_TOKEN(anon_sym_LBRACE); - if (lookahead == '"' || - lookahead == '\'') ADVANCE(67); - if (lookahead == '*') ADVANCE(46); - if (lookahead == '+') ADVANCE(60); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '=') ADVANCE(134); - if (lookahead == '^') ADVANCE(50); - if (lookahead == '_') ADVANCE(42); - if (lookahead == '~') ADVANCE(54); + if (lookahead == '*') ADVANCE(48); + if (lookahead == '+') ADVANCE(62); + if (lookahead == '-') ADVANCE(64); + if (lookahead == '=') ADVANCE(60); + if (lookahead == '^') ADVANCE(52); + if (lookahead == '_') ADVANCE(44); + if (lookahead == '~') ADVANCE(56); END_STATE(); - case 120: + case 125: ACCEPT_TOKEN(anon_sym_LBRACE); - if (lookahead == '"' || - lookahead == '\'') ADVANCE(67); - if (lookahead == '*') ADVANCE(46); - if (lookahead == '+') ADVANCE(60); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '=') ADVANCE(58); - if (lookahead == '^') ADVANCE(50); - if (lookahead == '_') ADVANCE(42); - if (lookahead == '~') ADVANCE(54); + ADVANCE_MAP( + '*', 48, + '+', 62, + '-', 64, + '=', 60, + '^', 52, + '_', 44, + '~', 56, + '"', 69, + '\'', 69, + ); END_STATE(); - case 121: + case 126: ACCEPT_TOKEN(anon_sym_LBRACE); - if (lookahead == '"' || - lookahead == '\'') ADVANCE(68); - if (lookahead == '*') ADVANCE(47); - if (lookahead == '+') ADVANCE(61); - if (lookahead == '-') ADVANCE(63); - if (lookahead == '=') ADVANCE(59); - if (lookahead == '^') ADVANCE(51); - if (lookahead == '_') ADVANCE(43); - if (lookahead == '~') ADVANCE(55); + ADVANCE_MAP( + '*', 49, + '+', 63, + '-', 65, + '=', 61, + '^', 53, + '_', 45, + '~', 57, + '"', 70, + '\'', 70, + ); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(103); + lookahead != '=' && + lookahead != '>') ADVANCE(105); END_STATE(); - case 122: + case 127: ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); - case 123: + case 128: ACCEPT_TOKEN(anon_sym_RBRACK); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(103); + lookahead != '>') ADVANCE(105); END_STATE(); - case 124: + case 129: ACCEPT_TOKEN(aux_sym_inline_link_destination_token1); - if (lookahead == '\r') ADVANCE(124); - if (lookahead == '\\') ADVANCE(126); + if (lookahead == '\r') ADVANCE(129); + if (lookahead == '\\') ADVANCE(131); if (lookahead != 0 && - lookahead != ')') ADVANCE(125); + lookahead != ')') ADVANCE(130); END_STATE(); - case 125: + case 130: ACCEPT_TOKEN(aux_sym_inline_link_destination_token1); - if (lookahead == '\\') ADVANCE(126); + if (lookahead == '\\') ADVANCE(131); if (lookahead != 0 && - lookahead != ')') ADVANCE(125); + lookahead != ')') ADVANCE(130); END_STATE(); - case 126: + case 131: ACCEPT_TOKEN(aux_sym_inline_link_destination_token1); - if (lookahead != 0 && - lookahead != '\\') ADVANCE(125); - if (lookahead == '\\') ADVANCE(126); + if (lookahead == '\\') ADVANCE(131); + if (lookahead != 0) ADVANCE(130); END_STATE(); - case 127: + case 132: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 128: + case 133: ACCEPT_TOKEN(anon_sym_LPAREN); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(103); + lookahead != '>') ADVANCE(105); END_STATE(); - case 129: + case 134: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 130: + case 135: ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); - case 131: + case 136: ACCEPT_TOKEN(aux_sym__comment_with_newline_token1); END_STATE(); - case 132: + case 137: ACCEPT_TOKEN(aux_sym__comment_with_newline_token1); - if (lookahead == '\r') ADVANCE(132); - if (lookahead == '\\') ADVANCE(133); + if (lookahead == '\r') ADVANCE(137); + if (lookahead == '\\') ADVANCE(138); if (lookahead != 0 && lookahead != '\n' && - lookahead != '%') ADVANCE(131); + lookahead != '%') ADVANCE(136); END_STATE(); - case 133: + case 138: ACCEPT_TOKEN(aux_sym__comment_with_newline_token1); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(75); + lookahead != '\r') ADVANCE(77); END_STATE(); - case 134: + case 139: ACCEPT_TOKEN(anon_sym_LBRACE_EQ2); END_STATE(); - case 135: + case 140: ACCEPT_TOKEN(anon_sym_DOLLAR); END_STATE(); - case 136: + case 141: ACCEPT_TOKEN(anon_sym_DOLLAR); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(103); + lookahead != '>') ADVANCE(105); END_STATE(); - case 137: + case 142: ACCEPT_TOKEN(anon_sym_TODO); END_STATE(); - case 138: + case 143: ACCEPT_TOKEN(anon_sym_TODO); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(103); + lookahead != '>') ADVANCE(105); END_STATE(); - case 139: + case 144: ACCEPT_TOKEN(anon_sym_WIP); END_STATE(); - case 140: + case 145: ACCEPT_TOKEN(anon_sym_WIP); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(103); + lookahead != '>') ADVANCE(105); END_STATE(); - case 141: + case 146: ACCEPT_TOKEN(anon_sym_NOTE); END_STATE(); - case 142: + case 147: ACCEPT_TOKEN(anon_sym_NOTE); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(103); + lookahead != '>') ADVANCE(105); END_STATE(); - case 143: + case 148: ACCEPT_TOKEN(anon_sym_INFO); END_STATE(); - case 144: + case 149: ACCEPT_TOKEN(anon_sym_INFO); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(103); + lookahead != '>') ADVANCE(105); END_STATE(); - case 145: + case 150: ACCEPT_TOKEN(anon_sym_XXX); END_STATE(); - case 146: + case 151: ACCEPT_TOKEN(anon_sym_XXX); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(103); + lookahead != '>') ADVANCE(105); END_STATE(); - case 147: + case 152: ACCEPT_TOKEN(sym_fixme); END_STATE(); - case 148: + case 153: ACCEPT_TOKEN(sym_fixme); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '>') ADVANCE(103); + lookahead != '>') ADVANCE(105); END_STATE(); - case 149: + case 154: ACCEPT_TOKEN(sym_language); - if (lookahead == '\r') ADVANCE(149); + if (lookahead == '\r') ADVANCE(154); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && lookahead != '=' && lookahead != '{' && - lookahead != '}') ADVANCE(150); + lookahead != '}') ADVANCE(155); END_STATE(); - case 150: + case 155: ACCEPT_TOKEN(sym_language); if (lookahead != 0 && lookahead != '\t' && @@ -3799,123 +3888,125 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ' && lookahead != '=' && lookahead != '{' && - lookahead != '}') ADVANCE(150); + lookahead != '}') ADVANCE(155); END_STATE(); - case 151: + case 156: ACCEPT_TOKEN(sym__whitespace); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(151); + lookahead == ' ') ADVANCE(156); END_STATE(); - case 152: + case 157: ACCEPT_TOKEN(sym__whitespace1); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(152); + lookahead == ' ') ADVANCE(157); END_STATE(); - case 153: - ACCEPT_TOKEN(sym__newline); + case 158: + ACCEPT_TOKEN(anon_sym_LF); END_STATE(); - case 154: + case 159: ACCEPT_TOKEN(aux_sym__text_token1); END_STATE(); - case 155: + case 160: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == '-') ADVANCE(73); + ADVANCE_MAP( + '*', 48, + '+', 62, + '-', 64, + '=', 60, + '^', 52, + '_', 44, + '~', 56, + '"', 69, + '\'', 69, + ); END_STATE(); - case 156: + case 161: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == '.') ADVANCE(17); + if (lookahead == '-') ADVANCE(75); END_STATE(); - case 157: + case 162: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'I') ADVANCE(28); + if (lookahead == '.') ADVANCE(18); END_STATE(); - case 158: + case 163: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'I') ADVANCE(26); + if (lookahead == 'I') ADVANCE(29); END_STATE(); - case 159: + case 164: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'N') ADVANCE(22); + if (lookahead == 'I') ADVANCE(27); END_STATE(); - case 160: + case 165: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'O') ADVANCE(27); + if (lookahead == 'N') ADVANCE(23); END_STATE(); - case 161: + case 166: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'O') ADVANCE(19); + if (lookahead == 'O') ADVANCE(28); END_STATE(); - case 162: + case 167: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'X') ADVANCE(29); + if (lookahead == 'O') ADVANCE(20); END_STATE(); - case 163: + case 168: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == '[') ADVANCE(110); + if (lookahead == 'X') ADVANCE(30); END_STATE(); - case 164: + case 169: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == '}') ADVANCE(67); + if (lookahead == '[') ADVANCE(112); END_STATE(); - case 165: + case 170: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == '"' || - lookahead == '\'') ADVANCE(67); - if (lookahead == '*') ADVANCE(46); - if (lookahead == '+') ADVANCE(60); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '=') ADVANCE(58); - if (lookahead == '^') ADVANCE(50); - if (lookahead == '_') ADVANCE(42); - if (lookahead == '~') ADVANCE(54); + if (lookahead == '}') ADVANCE(69); END_STATE(); - case 166: + case 171: ACCEPT_TOKEN(aux_sym__text_token1); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(18); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(19); END_STATE(); - case 167: + case 172: ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); - case 168: + case 173: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(17); + if (lookahead == '.') ADVANCE(18); END_STATE(); - case 169: + case 174: ACCEPT_TOKEN(sym_identifier); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '}') ADVANCE(169); + lookahead != '}') ADVANCE(174); END_STATE(); - case 170: + case 175: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 171: + case 176: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 172: + case 177: ACCEPT_TOKEN(aux_sym_value_token1); - if (lookahead == '\r') ADVANCE(172); + if (lookahead == '\r') ADVANCE(177); if (lookahead != 0 && lookahead != '\n' && - lookahead != '"') ADVANCE(173); + lookahead != '"') ADVANCE(178); END_STATE(); - case 173: + case 178: ACCEPT_TOKEN(aux_sym_value_token1); if (lookahead != 0 && lookahead != '\n' && - lookahead != '"') ADVANCE(173); + lookahead != '"') ADVANCE(178); END_STATE(); - case 174: + case 179: ACCEPT_TOKEN(aux_sym_value_token2); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(174); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(179); END_STATE(); default: return false; @@ -3924,625 +4015,625 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 32, .external_lex_state = 2}, - [2] = {.lex_state = 32, .external_lex_state = 3}, - [3] = {.lex_state = 32, .external_lex_state = 2}, - [4] = {.lex_state = 32, .external_lex_state = 2}, - [5] = {.lex_state = 32, .external_lex_state = 2}, - [6] = {.lex_state = 32, .external_lex_state = 4}, - [7] = {.lex_state = 32, .external_lex_state = 2}, - [8] = {.lex_state = 32, .external_lex_state = 2}, - [9] = {.lex_state = 32, .external_lex_state = 2}, - [10] = {.lex_state = 32, .external_lex_state = 2}, - [11] = {.lex_state = 32, .external_lex_state = 2}, - [12] = {.lex_state = 32, .external_lex_state = 2}, - [13] = {.lex_state = 32, .external_lex_state = 5}, - [14] = {.lex_state = 32, .external_lex_state = 4}, - [15] = {.lex_state = 32, .external_lex_state = 2}, - [16] = {.lex_state = 32, .external_lex_state = 2}, - [17] = {.lex_state = 32, .external_lex_state = 2}, - [18] = {.lex_state = 32, .external_lex_state = 2}, - [19] = {.lex_state = 32, .external_lex_state = 2}, - [20] = {.lex_state = 32, .external_lex_state = 2}, - [21] = {.lex_state = 32, .external_lex_state = 2}, - [22] = {.lex_state = 32, .external_lex_state = 6}, - [23] = {.lex_state = 32, .external_lex_state = 2}, - [24] = {.lex_state = 32, .external_lex_state = 2}, - [25] = {.lex_state = 32, .external_lex_state = 7}, - [26] = {.lex_state = 32, .external_lex_state = 2}, - [27] = {.lex_state = 32, .external_lex_state = 2}, - [28] = {.lex_state = 32, .external_lex_state = 2}, - [29] = {.lex_state = 32, .external_lex_state = 2}, - [30] = {.lex_state = 32, .external_lex_state = 8}, - [31] = {.lex_state = 32, .external_lex_state = 2}, - [32] = {.lex_state = 32, .external_lex_state = 2}, - [33] = {.lex_state = 32, .external_lex_state = 2}, - [34] = {.lex_state = 32, .external_lex_state = 2}, - [35] = {.lex_state = 32, .external_lex_state = 2}, - [36] = {.lex_state = 32, .external_lex_state = 2}, - [37] = {.lex_state = 32, .external_lex_state = 2}, - [38] = {.lex_state = 32, .external_lex_state = 6}, - [39] = {.lex_state = 32, .external_lex_state = 2}, - [40] = {.lex_state = 32, .external_lex_state = 2}, - [41] = {.lex_state = 32, .external_lex_state = 2}, - [42] = {.lex_state = 32, .external_lex_state = 2}, - [43] = {.lex_state = 32, .external_lex_state = 2}, - [44] = {.lex_state = 32, .external_lex_state = 2}, - [45] = {.lex_state = 32, .external_lex_state = 2}, - [46] = {.lex_state = 1, .external_lex_state = 2}, - [47] = {.lex_state = 32, .external_lex_state = 2}, - [48] = {.lex_state = 32, .external_lex_state = 2}, - [49] = {.lex_state = 32, .external_lex_state = 8}, - [50] = {.lex_state = 32, .external_lex_state = 2}, - [51] = {.lex_state = 32, .external_lex_state = 2}, - [52] = {.lex_state = 32, .external_lex_state = 2}, - [53] = {.lex_state = 32, .external_lex_state = 2}, - [54] = {.lex_state = 32, .external_lex_state = 2}, - [55] = {.lex_state = 32, .external_lex_state = 2}, - [56] = {.lex_state = 32, .external_lex_state = 2}, - [57] = {.lex_state = 32, .external_lex_state = 2}, - [58] = {.lex_state = 32, .external_lex_state = 3}, - [59] = {.lex_state = 32, .external_lex_state = 2}, - [60] = {.lex_state = 32, .external_lex_state = 2}, - [61] = {.lex_state = 32, .external_lex_state = 2}, - [62] = {.lex_state = 32, .external_lex_state = 2}, - [63] = {.lex_state = 32, .external_lex_state = 2}, - [64] = {.lex_state = 32, .external_lex_state = 5}, - [65] = {.lex_state = 32, .external_lex_state = 2}, - [66] = {.lex_state = 32, .external_lex_state = 2}, - [67] = {.lex_state = 32, .external_lex_state = 2}, - [68] = {.lex_state = 32, .external_lex_state = 2}, - [69] = {.lex_state = 32, .external_lex_state = 2}, - [70] = {.lex_state = 32, .external_lex_state = 2}, - [71] = {.lex_state = 1, .external_lex_state = 2}, - [72] = {.lex_state = 32, .external_lex_state = 2}, - [73] = {.lex_state = 32, .external_lex_state = 2}, - [74] = {.lex_state = 32, .external_lex_state = 2}, - [75] = {.lex_state = 32, .external_lex_state = 2}, - [76] = {.lex_state = 32, .external_lex_state = 2}, - [77] = {.lex_state = 32, .external_lex_state = 2}, - [78] = {.lex_state = 32, .external_lex_state = 2}, - [79] = {.lex_state = 32, .external_lex_state = 2}, - [80] = {.lex_state = 32, .external_lex_state = 2}, - [81] = {.lex_state = 32, .external_lex_state = 2}, - [82] = {.lex_state = 32, .external_lex_state = 2}, - [83] = {.lex_state = 32, .external_lex_state = 2}, - [84] = {.lex_state = 32, .external_lex_state = 2}, - [85] = {.lex_state = 32, .external_lex_state = 2}, - [86] = {.lex_state = 32, .external_lex_state = 2}, - [87] = {.lex_state = 32, .external_lex_state = 2}, - [88] = {.lex_state = 32, .external_lex_state = 2}, - [89] = {.lex_state = 32, .external_lex_state = 2}, - [90] = {.lex_state = 32, .external_lex_state = 2}, - [91] = {.lex_state = 32, .external_lex_state = 2}, - [92] = {.lex_state = 32, .external_lex_state = 2}, - [93] = {.lex_state = 32, .external_lex_state = 2}, - [94] = {.lex_state = 32, .external_lex_state = 2}, - [95] = {.lex_state = 32, .external_lex_state = 2}, - [96] = {.lex_state = 32, .external_lex_state = 2}, - [97] = {.lex_state = 32, .external_lex_state = 2}, - [98] = {.lex_state = 32, .external_lex_state = 2}, - [99] = {.lex_state = 32, .external_lex_state = 2}, - [100] = {.lex_state = 32, .external_lex_state = 2}, - [101] = {.lex_state = 32, .external_lex_state = 2}, - [102] = {.lex_state = 32, .external_lex_state = 2}, - [103] = {.lex_state = 32, .external_lex_state = 2}, - [104] = {.lex_state = 32, .external_lex_state = 2}, - [105] = {.lex_state = 32, .external_lex_state = 2}, - [106] = {.lex_state = 32, .external_lex_state = 2}, - [107] = {.lex_state = 32, .external_lex_state = 2}, - [108] = {.lex_state = 32, .external_lex_state = 2}, - [109] = {.lex_state = 32, .external_lex_state = 2}, - [110] = {.lex_state = 32, .external_lex_state = 7}, - [111] = {.lex_state = 32, .external_lex_state = 2}, - [112] = {.lex_state = 32, .external_lex_state = 2}, - [113] = {.lex_state = 32, .external_lex_state = 2}, - [114] = {.lex_state = 32, .external_lex_state = 2}, - [115] = {.lex_state = 32, .external_lex_state = 3}, - [116] = {.lex_state = 32, .external_lex_state = 2}, - [117] = {.lex_state = 32, .external_lex_state = 2}, - [118] = {.lex_state = 32, .external_lex_state = 2}, - [119] = {.lex_state = 32, .external_lex_state = 2}, - [120] = {.lex_state = 32, .external_lex_state = 2}, - [121] = {.lex_state = 8, .external_lex_state = 2}, - [122] = {.lex_state = 36, .external_lex_state = 5}, - [123] = {.lex_state = 36, .external_lex_state = 3}, - [124] = {.lex_state = 36, .external_lex_state = 6}, - [125] = {.lex_state = 36, .external_lex_state = 2}, - [126] = {.lex_state = 36, .external_lex_state = 8}, - [127] = {.lex_state = 36, .external_lex_state = 9}, - [128] = {.lex_state = 36, .external_lex_state = 7}, - [129] = {.lex_state = 36, .external_lex_state = 4}, - [130] = {.lex_state = 36, .external_lex_state = 10}, - [131] = {.lex_state = 36, .external_lex_state = 10}, - [132] = {.lex_state = 36, .external_lex_state = 8}, - [133] = {.lex_state = 36, .external_lex_state = 5}, - [134] = {.lex_state = 36, .external_lex_state = 4}, - [135] = {.lex_state = 8, .external_lex_state = 2}, - [136] = {.lex_state = 36, .external_lex_state = 4}, - [137] = {.lex_state = 36, .external_lex_state = 10}, - [138] = {.lex_state = 8, .external_lex_state = 2}, - [139] = {.lex_state = 36, .external_lex_state = 3}, - [140] = {.lex_state = 36, .external_lex_state = 5}, - [141] = {.lex_state = 36, .external_lex_state = 2}, - [142] = {.lex_state = 36, .external_lex_state = 8}, - [143] = {.lex_state = 36, .external_lex_state = 9}, - [144] = {.lex_state = 36, .external_lex_state = 7}, - [145] = {.lex_state = 36, .external_lex_state = 6}, - [146] = {.lex_state = 36, .external_lex_state = 7}, - [147] = {.lex_state = 36, .external_lex_state = 6}, - [148] = {.lex_state = 36, .external_lex_state = 3}, - [149] = {.lex_state = 36, .external_lex_state = 9}, - [150] = {.lex_state = 36, .external_lex_state = 2}, - [151] = {.lex_state = 36, .external_lex_state = 2}, - [152] = {.lex_state = 36, .external_lex_state = 2}, - [153] = {.lex_state = 9, .external_lex_state = 2}, - [154] = {.lex_state = 38, .external_lex_state = 3}, - [155] = {.lex_state = 38, .external_lex_state = 10}, - [156] = {.lex_state = 38, .external_lex_state = 7}, - [157] = {.lex_state = 36, .external_lex_state = 2}, - [158] = {.lex_state = 38, .external_lex_state = 8}, - [159] = {.lex_state = 38, .external_lex_state = 4}, - [160] = {.lex_state = 38, .external_lex_state = 5}, - [161] = {.lex_state = 38, .external_lex_state = 6}, - [162] = {.lex_state = 38, .external_lex_state = 9}, + [1] = {.lex_state = 33, .external_lex_state = 2}, + [2] = {.lex_state = 33, .external_lex_state = 3}, + [3] = {.lex_state = 33, .external_lex_state = 2}, + [4] = {.lex_state = 33, .external_lex_state = 2}, + [5] = {.lex_state = 33, .external_lex_state = 2}, + [6] = {.lex_state = 33, .external_lex_state = 2}, + [7] = {.lex_state = 33, .external_lex_state = 2}, + [8] = {.lex_state = 33, .external_lex_state = 2}, + [9] = {.lex_state = 33, .external_lex_state = 2}, + [10] = {.lex_state = 33, .external_lex_state = 2}, + [11] = {.lex_state = 33, .external_lex_state = 2}, + [12] = {.lex_state = 33, .external_lex_state = 2}, + [13] = {.lex_state = 33, .external_lex_state = 2}, + [14] = {.lex_state = 33, .external_lex_state = 2}, + [15] = {.lex_state = 33, .external_lex_state = 4}, + [16] = {.lex_state = 33, .external_lex_state = 5}, + [17] = {.lex_state = 33, .external_lex_state = 4}, + [18] = {.lex_state = 33, .external_lex_state = 6}, + [19] = {.lex_state = 33, .external_lex_state = 5}, + [20] = {.lex_state = 33, .external_lex_state = 7}, + [21] = {.lex_state = 33, .external_lex_state = 6}, + [22] = {.lex_state = 33, .external_lex_state = 8}, + [23] = {.lex_state = 33, .external_lex_state = 7}, + [24] = {.lex_state = 1, .external_lex_state = 2}, + [25] = {.lex_state = 33, .external_lex_state = 8}, + [26] = {.lex_state = 33, .external_lex_state = 3}, + [27] = {.lex_state = 1, .external_lex_state = 2}, + [28] = {.lex_state = 33, .external_lex_state = 3}, + [29] = {.lex_state = 33, .external_lex_state = 2}, + [30] = {.lex_state = 33, .external_lex_state = 2}, + [31] = {.lex_state = 33, .external_lex_state = 2}, + [32] = {.lex_state = 33, .external_lex_state = 2}, + [33] = {.lex_state = 33, .external_lex_state = 2}, + [34] = {.lex_state = 33, .external_lex_state = 2}, + [35] = {.lex_state = 33, .external_lex_state = 2}, + [36] = {.lex_state = 33, .external_lex_state = 2}, + [37] = {.lex_state = 33, .external_lex_state = 2}, + [38] = {.lex_state = 33, .external_lex_state = 2}, + [39] = {.lex_state = 33, .external_lex_state = 2}, + [40] = {.lex_state = 33, .external_lex_state = 2}, + [41] = {.lex_state = 33, .external_lex_state = 2}, + [42] = {.lex_state = 33, .external_lex_state = 2}, + [43] = {.lex_state = 33, .external_lex_state = 2}, + [44] = {.lex_state = 33, .external_lex_state = 2}, + [45] = {.lex_state = 33, .external_lex_state = 2}, + [46] = {.lex_state = 33, .external_lex_state = 2}, + [47] = {.lex_state = 33, .external_lex_state = 2}, + [48] = {.lex_state = 33, .external_lex_state = 2}, + [49] = {.lex_state = 33, .external_lex_state = 2}, + [50] = {.lex_state = 33, .external_lex_state = 2}, + [51] = {.lex_state = 33, .external_lex_state = 2}, + [52] = {.lex_state = 33, .external_lex_state = 2}, + [53] = {.lex_state = 33, .external_lex_state = 2}, + [54] = {.lex_state = 33, .external_lex_state = 2}, + [55] = {.lex_state = 33, .external_lex_state = 2}, + [56] = {.lex_state = 33, .external_lex_state = 2}, + [57] = {.lex_state = 33, .external_lex_state = 2}, + [58] = {.lex_state = 33, .external_lex_state = 2}, + [59] = {.lex_state = 33, .external_lex_state = 2}, + [60] = {.lex_state = 33, .external_lex_state = 2}, + [61] = {.lex_state = 33, .external_lex_state = 2}, + [62] = {.lex_state = 33, .external_lex_state = 2}, + [63] = {.lex_state = 33, .external_lex_state = 2}, + [64] = {.lex_state = 33, .external_lex_state = 2}, + [65] = {.lex_state = 33, .external_lex_state = 2}, + [66] = {.lex_state = 33, .external_lex_state = 2}, + [67] = {.lex_state = 33, .external_lex_state = 2}, + [68] = {.lex_state = 33, .external_lex_state = 2}, + [69] = {.lex_state = 33, .external_lex_state = 2}, + [70] = {.lex_state = 33, .external_lex_state = 2}, + [71] = {.lex_state = 33, .external_lex_state = 2}, + [72] = {.lex_state = 33, .external_lex_state = 2}, + [73] = {.lex_state = 33, .external_lex_state = 2}, + [74] = {.lex_state = 33, .external_lex_state = 2}, + [75] = {.lex_state = 33, .external_lex_state = 2}, + [76] = {.lex_state = 33, .external_lex_state = 2}, + [77] = {.lex_state = 33, .external_lex_state = 2}, + [78] = {.lex_state = 33, .external_lex_state = 2}, + [79] = {.lex_state = 33, .external_lex_state = 2}, + [80] = {.lex_state = 33, .external_lex_state = 2}, + [81] = {.lex_state = 33, .external_lex_state = 2}, + [82] = {.lex_state = 33, .external_lex_state = 2}, + [83] = {.lex_state = 33, .external_lex_state = 2}, + [84] = {.lex_state = 33, .external_lex_state = 2}, + [85] = {.lex_state = 33, .external_lex_state = 2}, + [86] = {.lex_state = 33, .external_lex_state = 2}, + [87] = {.lex_state = 33, .external_lex_state = 2}, + [88] = {.lex_state = 33, .external_lex_state = 2}, + [89] = {.lex_state = 33, .external_lex_state = 2}, + [90] = {.lex_state = 33, .external_lex_state = 2}, + [91] = {.lex_state = 33, .external_lex_state = 2}, + [92] = {.lex_state = 33, .external_lex_state = 2}, + [93] = {.lex_state = 33, .external_lex_state = 2}, + [94] = {.lex_state = 33, .external_lex_state = 2}, + [95] = {.lex_state = 33, .external_lex_state = 2}, + [96] = {.lex_state = 33, .external_lex_state = 2}, + [97] = {.lex_state = 33, .external_lex_state = 2}, + [98] = {.lex_state = 33, .external_lex_state = 2}, + [99] = {.lex_state = 33, .external_lex_state = 2}, + [100] = {.lex_state = 33, .external_lex_state = 2}, + [101] = {.lex_state = 33, .external_lex_state = 2}, + [102] = {.lex_state = 33, .external_lex_state = 2}, + [103] = {.lex_state = 33, .external_lex_state = 2}, + [104] = {.lex_state = 33, .external_lex_state = 2}, + [105] = {.lex_state = 33, .external_lex_state = 2}, + [106] = {.lex_state = 33, .external_lex_state = 2}, + [107] = {.lex_state = 33, .external_lex_state = 2}, + [108] = {.lex_state = 33, .external_lex_state = 2}, + [109] = {.lex_state = 33, .external_lex_state = 2}, + [110] = {.lex_state = 33, .external_lex_state = 2}, + [111] = {.lex_state = 33, .external_lex_state = 2}, + [112] = {.lex_state = 33, .external_lex_state = 2}, + [113] = {.lex_state = 33, .external_lex_state = 2}, + [114] = {.lex_state = 33, .external_lex_state = 2}, + [115] = {.lex_state = 33, .external_lex_state = 2}, + [116] = {.lex_state = 33, .external_lex_state = 2}, + [117] = {.lex_state = 33, .external_lex_state = 2}, + [118] = {.lex_state = 33, .external_lex_state = 2}, + [119] = {.lex_state = 33, .external_lex_state = 2}, + [120] = {.lex_state = 33, .external_lex_state = 2}, + [121] = {.lex_state = 38, .external_lex_state = 4}, + [122] = {.lex_state = 38, .external_lex_state = 9}, + [123] = {.lex_state = 38, .external_lex_state = 6}, + [124] = {.lex_state = 38, .external_lex_state = 2}, + [125] = {.lex_state = 38, .external_lex_state = 5}, + [126] = {.lex_state = 38, .external_lex_state = 7}, + [127] = {.lex_state = 38, .external_lex_state = 8}, + [128] = {.lex_state = 38, .external_lex_state = 10}, + [129] = {.lex_state = 9, .external_lex_state = 2}, + [130] = {.lex_state = 38, .external_lex_state = 3}, + [131] = {.lex_state = 9, .external_lex_state = 2}, + [132] = {.lex_state = 38, .external_lex_state = 4}, + [133] = {.lex_state = 38, .external_lex_state = 9}, + [134] = {.lex_state = 38, .external_lex_state = 6}, + [135] = {.lex_state = 38, .external_lex_state = 6}, + [136] = {.lex_state = 38, .external_lex_state = 7}, + [137] = {.lex_state = 38, .external_lex_state = 10}, + [138] = {.lex_state = 38, .external_lex_state = 7}, + [139] = {.lex_state = 38, .external_lex_state = 8}, + [140] = {.lex_state = 38, .external_lex_state = 8}, + [141] = {.lex_state = 38, .external_lex_state = 5}, + [142] = {.lex_state = 38, .external_lex_state = 10}, + [143] = {.lex_state = 38, .external_lex_state = 5}, + [144] = {.lex_state = 38, .external_lex_state = 2}, + [145] = {.lex_state = 9, .external_lex_state = 2}, + [146] = {.lex_state = 38, .external_lex_state = 2}, + [147] = {.lex_state = 38, .external_lex_state = 4}, + [148] = {.lex_state = 38, .external_lex_state = 3}, + [149] = {.lex_state = 38, .external_lex_state = 3}, + [150] = {.lex_state = 38, .external_lex_state = 9}, + [151] = {.lex_state = 38, .external_lex_state = 2}, + [152] = {.lex_state = 40, .external_lex_state = 10}, + [153] = {.lex_state = 40, .external_lex_state = 2}, + [154] = {.lex_state = 40, .external_lex_state = 6}, + [155] = {.lex_state = 40, .external_lex_state = 4}, + [156] = {.lex_state = 40, .external_lex_state = 5}, + [157] = {.lex_state = 40, .external_lex_state = 9}, + [158] = {.lex_state = 40, .external_lex_state = 7}, + [159] = {.lex_state = 40, .external_lex_state = 8}, + [160] = {.lex_state = 10, .external_lex_state = 2}, + [161] = {.lex_state = 40, .external_lex_state = 3}, + [162] = {.lex_state = 38, .external_lex_state = 2}, [163] = {.lex_state = 38, .external_lex_state = 2}, - [164] = {.lex_state = 36, .external_lex_state = 8}, - [165] = {.lex_state = 36, .external_lex_state = 11}, - [166] = {.lex_state = 34, .external_lex_state = 2}, - [167] = {.lex_state = 36, .external_lex_state = 6}, - [168] = {.lex_state = 36, .external_lex_state = 9}, - [169] = {.lex_state = 34, .external_lex_state = 6}, - [170] = {.lex_state = 36, .external_lex_state = 12}, - [171] = {.lex_state = 34, .external_lex_state = 3}, - [172] = {.lex_state = 39, .external_lex_state = 6}, - [173] = {.lex_state = 36, .external_lex_state = 8}, - [174] = {.lex_state = 36, .external_lex_state = 13}, - [175] = {.lex_state = 36, .external_lex_state = 13}, - [176] = {.lex_state = 39, .external_lex_state = 8}, - [177] = {.lex_state = 34, .external_lex_state = 9}, - [178] = {.lex_state = 36, .external_lex_state = 7}, - [179] = {.lex_state = 34, .external_lex_state = 7}, - [180] = {.lex_state = 38, .external_lex_state = 2}, - [181] = {.lex_state = 8, .external_lex_state = 2}, - [182] = {.lex_state = 34, .external_lex_state = 8}, - [183] = {.lex_state = 36, .external_lex_state = 6}, - [184] = {.lex_state = 39, .external_lex_state = 7}, - [185] = {.lex_state = 36, .external_lex_state = 2}, - [186] = {.lex_state = 36, .external_lex_state = 14}, - [187] = {.lex_state = 36, .external_lex_state = 14}, - [188] = {.lex_state = 39, .external_lex_state = 9}, - [189] = {.lex_state = 36, .external_lex_state = 11}, - [190] = {.lex_state = 36, .external_lex_state = 4}, - [191] = {.lex_state = 36, .external_lex_state = 15}, - [192] = {.lex_state = 36, .external_lex_state = 15}, - [193] = {.lex_state = 36, .external_lex_state = 12}, - [194] = {.lex_state = 39, .external_lex_state = 10}, - [195] = {.lex_state = 34, .external_lex_state = 4}, - [196] = {.lex_state = 36, .external_lex_state = 2}, - [197] = {.lex_state = 8, .external_lex_state = 16}, - [198] = {.lex_state = 36, .external_lex_state = 5}, - [199] = {.lex_state = 8, .external_lex_state = 16}, - [200] = {.lex_state = 3, .external_lex_state = 2}, - [201] = {.lex_state = 39, .external_lex_state = 2}, - [202] = {.lex_state = 36, .external_lex_state = 16}, - [203] = {.lex_state = 36, .external_lex_state = 7}, - [204] = {.lex_state = 39, .external_lex_state = 4}, - [205] = {.lex_state = 36, .external_lex_state = 3}, - [206] = {.lex_state = 34, .external_lex_state = 10}, - [207] = {.lex_state = 36, .external_lex_state = 17}, - [208] = {.lex_state = 36, .external_lex_state = 17}, - [209] = {.lex_state = 34, .external_lex_state = 5}, - [210] = {.lex_state = 36, .external_lex_state = 18}, - [211] = {.lex_state = 36, .external_lex_state = 18}, - [212] = {.lex_state = 11, .external_lex_state = 2}, - [213] = {.lex_state = 39, .external_lex_state = 5}, - [214] = {.lex_state = 36, .external_lex_state = 10}, - [215] = {.lex_state = 8, .external_lex_state = 2}, - [216] = {.lex_state = 36, .external_lex_state = 19}, - [217] = {.lex_state = 36, .external_lex_state = 19}, - [218] = {.lex_state = 36, .external_lex_state = 5}, - [219] = {.lex_state = 36, .external_lex_state = 16}, - [220] = {.lex_state = 36, .external_lex_state = 4}, - [221] = {.lex_state = 36, .external_lex_state = 3}, - [222] = {.lex_state = 39, .external_lex_state = 3}, - [223] = {.lex_state = 36, .external_lex_state = 7}, - [224] = {.lex_state = 36, .external_lex_state = 8}, - [225] = {.lex_state = 36, .external_lex_state = 10}, - [226] = {.lex_state = 36, .external_lex_state = 10}, - [227] = {.lex_state = 36, .external_lex_state = 10}, - [228] = {.lex_state = 36, .external_lex_state = 10}, - [229] = {.lex_state = 36, .external_lex_state = 10}, - [230] = {.lex_state = 36, .external_lex_state = 2}, - [231] = {.lex_state = 36, .external_lex_state = 10}, - [232] = {.lex_state = 36, .external_lex_state = 10}, - [233] = {.lex_state = 36, .external_lex_state = 2}, - [234] = {.lex_state = 36, .external_lex_state = 10}, - [235] = {.lex_state = 36, .external_lex_state = 10}, - [236] = {.lex_state = 36, .external_lex_state = 10}, - [237] = {.lex_state = 36, .external_lex_state = 10}, - [238] = {.lex_state = 36, .external_lex_state = 10}, - [239] = {.lex_state = 36, .external_lex_state = 10}, - [240] = {.lex_state = 36, .external_lex_state = 10}, - [241] = {.lex_state = 36, .external_lex_state = 10}, - [242] = {.lex_state = 36, .external_lex_state = 10}, - [243] = {.lex_state = 36, .external_lex_state = 10}, - [244] = {.lex_state = 36, .external_lex_state = 10}, - [245] = {.lex_state = 36, .external_lex_state = 2}, - [246] = {.lex_state = 36, .external_lex_state = 10}, - [247] = {.lex_state = 36, .external_lex_state = 2}, - [248] = {.lex_state = 36, .external_lex_state = 10}, - [249] = {.lex_state = 36, .external_lex_state = 5}, - [250] = {.lex_state = 36, .external_lex_state = 5}, - [251] = {.lex_state = 36, .external_lex_state = 5}, - [252] = {.lex_state = 36, .external_lex_state = 5}, - [253] = {.lex_state = 36, .external_lex_state = 5}, - [254] = {.lex_state = 36, .external_lex_state = 2}, - [255] = {.lex_state = 36, .external_lex_state = 2}, - [256] = {.lex_state = 36, .external_lex_state = 5}, - [257] = {.lex_state = 36, .external_lex_state = 5}, - [258] = {.lex_state = 36, .external_lex_state = 5}, - [259] = {.lex_state = 36, .external_lex_state = 5}, - [260] = {.lex_state = 36, .external_lex_state = 5}, - [261] = {.lex_state = 36, .external_lex_state = 5}, - [262] = {.lex_state = 36, .external_lex_state = 5}, - [263] = {.lex_state = 36, .external_lex_state = 5}, - [264] = {.lex_state = 36, .external_lex_state = 2}, - [265] = {.lex_state = 36, .external_lex_state = 5}, - [266] = {.lex_state = 36, .external_lex_state = 5}, - [267] = {.lex_state = 36, .external_lex_state = 2}, - [268] = {.lex_state = 36, .external_lex_state = 5}, - [269] = {.lex_state = 36, .external_lex_state = 5}, - [270] = {.lex_state = 36, .external_lex_state = 5}, - [271] = {.lex_state = 36, .external_lex_state = 5}, - [272] = {.lex_state = 36, .external_lex_state = 5}, - [273] = {.lex_state = 36, .external_lex_state = 5}, - [274] = {.lex_state = 36, .external_lex_state = 5}, - [275] = {.lex_state = 36, .external_lex_state = 5}, - [276] = {.lex_state = 36, .external_lex_state = 5}, - [277] = {.lex_state = 36, .external_lex_state = 5}, - [278] = {.lex_state = 36, .external_lex_state = 5}, - [279] = {.lex_state = 36, .external_lex_state = 2}, - [280] = {.lex_state = 36, .external_lex_state = 5}, - [281] = {.lex_state = 36, .external_lex_state = 2}, - [282] = {.lex_state = 36, .external_lex_state = 5}, - [283] = {.lex_state = 36, .external_lex_state = 2}, - [284] = {.lex_state = 36, .external_lex_state = 10}, - [285] = {.lex_state = 36, .external_lex_state = 10}, - [286] = {.lex_state = 36, .external_lex_state = 2}, - [287] = {.lex_state = 36, .external_lex_state = 4}, - [288] = {.lex_state = 36, .external_lex_state = 4}, - [289] = {.lex_state = 36, .external_lex_state = 4}, - [290] = {.lex_state = 36, .external_lex_state = 2}, - [291] = {.lex_state = 36, .external_lex_state = 10}, - [292] = {.lex_state = 36, .external_lex_state = 10}, - [293] = {.lex_state = 36, .external_lex_state = 10}, - [294] = {.lex_state = 36, .external_lex_state = 4}, - [295] = {.lex_state = 36, .external_lex_state = 4}, - [296] = {.lex_state = 36, .external_lex_state = 2}, - [297] = {.lex_state = 36, .external_lex_state = 2}, - [298] = {.lex_state = 36, .external_lex_state = 10}, - [299] = {.lex_state = 36, .external_lex_state = 4}, - [300] = {.lex_state = 36, .external_lex_state = 4}, - [301] = {.lex_state = 36, .external_lex_state = 4}, - [302] = {.lex_state = 36, .external_lex_state = 4}, - [303] = {.lex_state = 36, .external_lex_state = 4}, - [304] = {.lex_state = 36, .external_lex_state = 4}, - [305] = {.lex_state = 36, .external_lex_state = 4}, - [306] = {.lex_state = 36, .external_lex_state = 10}, - [307] = {.lex_state = 36, .external_lex_state = 2}, - [308] = {.lex_state = 36, .external_lex_state = 9}, - [309] = {.lex_state = 36, .external_lex_state = 4}, - [310] = {.lex_state = 36, .external_lex_state = 2}, - [311] = {.lex_state = 36, .external_lex_state = 4}, - [312] = {.lex_state = 36, .external_lex_state = 4}, - [313] = {.lex_state = 36, .external_lex_state = 2}, - [314] = {.lex_state = 36, .external_lex_state = 4}, - [315] = {.lex_state = 36, .external_lex_state = 4}, - [316] = {.lex_state = 36, .external_lex_state = 4}, - [317] = {.lex_state = 36, .external_lex_state = 4}, - [318] = {.lex_state = 36, .external_lex_state = 4}, - [319] = {.lex_state = 36, .external_lex_state = 4}, - [320] = {.lex_state = 36, .external_lex_state = 4}, - [321] = {.lex_state = 36, .external_lex_state = 4}, - [322] = {.lex_state = 36, .external_lex_state = 4}, - [323] = {.lex_state = 36, .external_lex_state = 4}, - [324] = {.lex_state = 36, .external_lex_state = 4}, - [325] = {.lex_state = 36, .external_lex_state = 2}, - [326] = {.lex_state = 36, .external_lex_state = 4}, - [327] = {.lex_state = 36, .external_lex_state = 2}, - [328] = {.lex_state = 36, .external_lex_state = 4}, - [329] = {.lex_state = 36, .external_lex_state = 2}, - [330] = {.lex_state = 36, .external_lex_state = 9}, - [331] = {.lex_state = 36, .external_lex_state = 2}, - [332] = {.lex_state = 34, .external_lex_state = 2}, - [333] = {.lex_state = 36, .external_lex_state = 7}, - [334] = {.lex_state = 36, .external_lex_state = 7}, - [335] = {.lex_state = 36, .external_lex_state = 7}, - [336] = {.lex_state = 36, .external_lex_state = 9}, - [337] = {.lex_state = 36, .external_lex_state = 9}, - [338] = {.lex_state = 36, .external_lex_state = 9}, - [339] = {.lex_state = 36, .external_lex_state = 9}, - [340] = {.lex_state = 36, .external_lex_state = 2}, - [341] = {.lex_state = 36, .external_lex_state = 7}, - [342] = {.lex_state = 36, .external_lex_state = 2}, - [343] = {.lex_state = 39, .external_lex_state = 2}, - [344] = {.lex_state = 36, .external_lex_state = 9}, - [345] = {.lex_state = 36, .external_lex_state = 7}, - [346] = {.lex_state = 36, .external_lex_state = 7}, - [347] = {.lex_state = 36, .external_lex_state = 7}, - [348] = {.lex_state = 36, .external_lex_state = 7}, - [349] = {.lex_state = 36, .external_lex_state = 7}, - [350] = {.lex_state = 36, .external_lex_state = 7}, - [351] = {.lex_state = 36, .external_lex_state = 7}, - [352] = {.lex_state = 36, .external_lex_state = 9}, - [353] = {.lex_state = 36, .external_lex_state = 9}, - [354] = {.lex_state = 36, .external_lex_state = 9}, - [355] = {.lex_state = 36, .external_lex_state = 7}, - [356] = {.lex_state = 36, .external_lex_state = 2}, - [357] = {.lex_state = 36, .external_lex_state = 7}, - [358] = {.lex_state = 36, .external_lex_state = 7}, - [359] = {.lex_state = 36, .external_lex_state = 16}, - [360] = {.lex_state = 36, .external_lex_state = 7}, - [361] = {.lex_state = 36, .external_lex_state = 7}, - [362] = {.lex_state = 36, .external_lex_state = 7}, - [363] = {.lex_state = 36, .external_lex_state = 7}, - [364] = {.lex_state = 36, .external_lex_state = 7}, - [365] = {.lex_state = 36, .external_lex_state = 7}, - [366] = {.lex_state = 36, .external_lex_state = 7}, - [367] = {.lex_state = 36, .external_lex_state = 7}, - [368] = {.lex_state = 36, .external_lex_state = 7}, - [369] = {.lex_state = 36, .external_lex_state = 7}, - [370] = {.lex_state = 36, .external_lex_state = 7}, - [371] = {.lex_state = 36, .external_lex_state = 16}, - [372] = {.lex_state = 36, .external_lex_state = 7}, - [373] = {.lex_state = 36, .external_lex_state = 3}, - [374] = {.lex_state = 36, .external_lex_state = 7}, - [375] = {.lex_state = 36, .external_lex_state = 3}, - [376] = {.lex_state = 36, .external_lex_state = 9}, - [377] = {.lex_state = 36, .external_lex_state = 9}, - [378] = {.lex_state = 36, .external_lex_state = 9}, - [379] = {.lex_state = 36, .external_lex_state = 6}, - [380] = {.lex_state = 36, .external_lex_state = 6}, - [381] = {.lex_state = 36, .external_lex_state = 6}, - [382] = {.lex_state = 36, .external_lex_state = 9}, - [383] = {.lex_state = 36, .external_lex_state = 9}, - [384] = {.lex_state = 36, .external_lex_state = 3}, - [385] = {.lex_state = 36, .external_lex_state = 9}, - [386] = {.lex_state = 36, .external_lex_state = 6}, - [387] = {.lex_state = 36, .external_lex_state = 6}, - [388] = {.lex_state = 36, .external_lex_state = 3}, - [389] = {.lex_state = 36, .external_lex_state = 3}, - [390] = {.lex_state = 36, .external_lex_state = 3}, - [391] = {.lex_state = 36, .external_lex_state = 6}, - [392] = {.lex_state = 36, .external_lex_state = 6}, - [393] = {.lex_state = 36, .external_lex_state = 6}, - [394] = {.lex_state = 36, .external_lex_state = 6}, - [395] = {.lex_state = 36, .external_lex_state = 6}, - [396] = {.lex_state = 36, .external_lex_state = 6}, - [397] = {.lex_state = 36, .external_lex_state = 6}, - [398] = {.lex_state = 36, .external_lex_state = 9}, - [399] = {.lex_state = 36, .external_lex_state = 9}, - [400] = {.lex_state = 36, .external_lex_state = 9}, - [401] = {.lex_state = 36, .external_lex_state = 6}, - [402] = {.lex_state = 36, .external_lex_state = 3}, - [403] = {.lex_state = 36, .external_lex_state = 6}, - [404] = {.lex_state = 36, .external_lex_state = 6}, - [405] = {.lex_state = 36, .external_lex_state = 3}, - [406] = {.lex_state = 36, .external_lex_state = 6}, - [407] = {.lex_state = 36, .external_lex_state = 6}, - [408] = {.lex_state = 36, .external_lex_state = 6}, - [409] = {.lex_state = 36, .external_lex_state = 6}, - [410] = {.lex_state = 36, .external_lex_state = 6}, - [411] = {.lex_state = 36, .external_lex_state = 6}, - [412] = {.lex_state = 36, .external_lex_state = 6}, - [413] = {.lex_state = 36, .external_lex_state = 6}, - [414] = {.lex_state = 36, .external_lex_state = 6}, - [415] = {.lex_state = 36, .external_lex_state = 6}, - [416] = {.lex_state = 36, .external_lex_state = 6}, - [417] = {.lex_state = 36, .external_lex_state = 3}, - [418] = {.lex_state = 36, .external_lex_state = 6}, - [419] = {.lex_state = 36, .external_lex_state = 3}, - [420] = {.lex_state = 36, .external_lex_state = 6}, - [421] = {.lex_state = 36, .external_lex_state = 9}, - [422] = {.lex_state = 36, .external_lex_state = 9}, - [423] = {.lex_state = 36, .external_lex_state = 9}, - [424] = {.lex_state = 36, .external_lex_state = 9}, - [425] = {.lex_state = 36, .external_lex_state = 8}, - [426] = {.lex_state = 36, .external_lex_state = 8}, - [427] = {.lex_state = 36, .external_lex_state = 8}, - [428] = {.lex_state = 36, .external_lex_state = 9}, - [429] = {.lex_state = 36, .external_lex_state = 3}, - [430] = {.lex_state = 36, .external_lex_state = 3}, - [431] = {.lex_state = 36, .external_lex_state = 9}, - [432] = {.lex_state = 36, .external_lex_state = 8}, - [433] = {.lex_state = 36, .external_lex_state = 8}, - [434] = {.lex_state = 36, .external_lex_state = 3}, - [435] = {.lex_state = 36, .external_lex_state = 3}, - [436] = {.lex_state = 36, .external_lex_state = 9}, - [437] = {.lex_state = 36, .external_lex_state = 8}, - [438] = {.lex_state = 36, .external_lex_state = 8}, - [439] = {.lex_state = 36, .external_lex_state = 8}, - [440] = {.lex_state = 36, .external_lex_state = 8}, - [441] = {.lex_state = 36, .external_lex_state = 8}, - [442] = {.lex_state = 36, .external_lex_state = 8}, - [443] = {.lex_state = 36, .external_lex_state = 8}, - [444] = {.lex_state = 36, .external_lex_state = 2}, - [445] = {.lex_state = 36, .external_lex_state = 3}, - [446] = {.lex_state = 36, .external_lex_state = 9}, - [447] = {.lex_state = 36, .external_lex_state = 8}, - [448] = {.lex_state = 36, .external_lex_state = 3}, - [449] = {.lex_state = 36, .external_lex_state = 8}, - [450] = {.lex_state = 36, .external_lex_state = 8}, - [451] = {.lex_state = 36, .external_lex_state = 2}, - [452] = {.lex_state = 36, .external_lex_state = 8}, - [453] = {.lex_state = 36, .external_lex_state = 10}, - [454] = {.lex_state = 36, .external_lex_state = 8}, - [455] = {.lex_state = 36, .external_lex_state = 8}, - [456] = {.lex_state = 36, .external_lex_state = 8}, - [457] = {.lex_state = 36, .external_lex_state = 8}, - [458] = {.lex_state = 36, .external_lex_state = 8}, - [459] = {.lex_state = 36, .external_lex_state = 8}, - [460] = {.lex_state = 36, .external_lex_state = 8}, - [461] = {.lex_state = 36, .external_lex_state = 8}, - [462] = {.lex_state = 36, .external_lex_state = 8}, - [463] = {.lex_state = 36, .external_lex_state = 2}, - [464] = {.lex_state = 36, .external_lex_state = 8}, - [465] = {.lex_state = 36, .external_lex_state = 3}, - [466] = {.lex_state = 36, .external_lex_state = 8}, - [467] = {.lex_state = 36, .external_lex_state = 9}, - [468] = {.lex_state = 36, .external_lex_state = 3}, - [469] = {.lex_state = 36, .external_lex_state = 3}, - [470] = {.lex_state = 36, .external_lex_state = 3}, - [471] = {.lex_state = 8, .external_lex_state = 2}, - [472] = {.lex_state = 8, .external_lex_state = 2}, - [473] = {.lex_state = 8, .external_lex_state = 2}, - [474] = {.lex_state = 36, .external_lex_state = 3}, - [475] = {.lex_state = 36, .external_lex_state = 2}, - [476] = {.lex_state = 36, .external_lex_state = 3}, - [477] = {.lex_state = 8, .external_lex_state = 2}, - [478] = {.lex_state = 8, .external_lex_state = 2}, - [479] = {.lex_state = 36, .external_lex_state = 3}, - [480] = {.lex_state = 36, .external_lex_state = 2}, - [481] = {.lex_state = 36, .external_lex_state = 2}, - [482] = {.lex_state = 8, .external_lex_state = 2}, - [483] = {.lex_state = 8, .external_lex_state = 2}, - [484] = {.lex_state = 8, .external_lex_state = 2}, - [485] = {.lex_state = 8, .external_lex_state = 2}, - [486] = {.lex_state = 8, .external_lex_state = 2}, - [487] = {.lex_state = 8, .external_lex_state = 2}, - [488] = {.lex_state = 8, .external_lex_state = 2}, - [489] = {.lex_state = 36, .external_lex_state = 3}, - [490] = {.lex_state = 36, .external_lex_state = 3}, - [491] = {.lex_state = 36, .external_lex_state = 3}, - [492] = {.lex_state = 8, .external_lex_state = 2}, - [493] = {.lex_state = 36, .external_lex_state = 3}, - [494] = {.lex_state = 8, .external_lex_state = 2}, - [495] = {.lex_state = 8, .external_lex_state = 2}, - [496] = {.lex_state = 36, .external_lex_state = 3}, - [497] = {.lex_state = 8, .external_lex_state = 2}, - [498] = {.lex_state = 8, .external_lex_state = 2}, - [499] = {.lex_state = 8, .external_lex_state = 2}, - [500] = {.lex_state = 8, .external_lex_state = 2}, - [501] = {.lex_state = 8, .external_lex_state = 2}, - [502] = {.lex_state = 8, .external_lex_state = 2}, - [503] = {.lex_state = 8, .external_lex_state = 2}, - [504] = {.lex_state = 8, .external_lex_state = 2}, - [505] = {.lex_state = 8, .external_lex_state = 2}, - [506] = {.lex_state = 8, .external_lex_state = 2}, - [507] = {.lex_state = 8, .external_lex_state = 2}, - [508] = {.lex_state = 36, .external_lex_state = 2}, - [509] = {.lex_state = 8, .external_lex_state = 2}, - [510] = {.lex_state = 8, .external_lex_state = 2}, - [511] = {.lex_state = 32, .external_lex_state = 4}, - [512] = {.lex_state = 36, .external_lex_state = 2}, - [513] = {.lex_state = 32, .external_lex_state = 10}, - [514] = {.lex_state = 32, .external_lex_state = 10}, - [515] = {.lex_state = 32, .external_lex_state = 10}, - [516] = {.lex_state = 1, .external_lex_state = 2}, - [517] = {.lex_state = 1, .external_lex_state = 2}, - [518] = {.lex_state = 32, .external_lex_state = 10}, - [519] = {.lex_state = 32, .external_lex_state = 5}, - [520] = {.lex_state = 32, .external_lex_state = 5}, - [521] = {.lex_state = 32, .external_lex_state = 2}, - [522] = {.lex_state = 32, .external_lex_state = 2}, - [523] = {.lex_state = 32, .external_lex_state = 3}, - [524] = {.lex_state = 32, .external_lex_state = 3}, - [525] = {.lex_state = 1, .external_lex_state = 2}, - [526] = {.lex_state = 1, .external_lex_state = 2}, - [527] = {.lex_state = 32, .external_lex_state = 2}, - [528] = {.lex_state = 32, .external_lex_state = 5}, - [529] = {.lex_state = 32, .external_lex_state = 5}, - [530] = {.lex_state = 32, .external_lex_state = 5}, - [531] = {.lex_state = 32, .external_lex_state = 5}, - [532] = {.lex_state = 32, .external_lex_state = 8}, - [533] = {.lex_state = 32, .external_lex_state = 8}, - [534] = {.lex_state = 32, .external_lex_state = 8}, - [535] = {.lex_state = 32, .external_lex_state = 8}, - [536] = {.lex_state = 32, .external_lex_state = 3}, - [537] = {.lex_state = 32, .external_lex_state = 2}, - [538] = {.lex_state = 32, .external_lex_state = 8}, - [539] = {.lex_state = 32, .external_lex_state = 3}, - [540] = {.lex_state = 32, .external_lex_state = 8}, - [541] = {.lex_state = 32, .external_lex_state = 9}, - [542] = {.lex_state = 32, .external_lex_state = 9}, - [543] = {.lex_state = 32, .external_lex_state = 6}, - [544] = {.lex_state = 32, .external_lex_state = 6}, - [545] = {.lex_state = 32, .external_lex_state = 6}, - [546] = {.lex_state = 32, .external_lex_state = 6}, - [547] = {.lex_state = 32, .external_lex_state = 9}, - [548] = {.lex_state = 32, .external_lex_state = 6}, - [549] = {.lex_state = 32, .external_lex_state = 6}, - [550] = {.lex_state = 32, .external_lex_state = 10}, - [551] = {.lex_state = 32, .external_lex_state = 3}, - [552] = {.lex_state = 32, .external_lex_state = 10}, - [553] = {.lex_state = 32, .external_lex_state = 3}, - [554] = {.lex_state = 32, .external_lex_state = 7}, - [555] = {.lex_state = 32, .external_lex_state = 7}, - [556] = {.lex_state = 32, .external_lex_state = 7}, - [557] = {.lex_state = 32, .external_lex_state = 7}, - [558] = {.lex_state = 32, .external_lex_state = 7}, - [559] = {.lex_state = 36, .external_lex_state = 2}, - [560] = {.lex_state = 36, .external_lex_state = 2}, - [561] = {.lex_state = 36, .external_lex_state = 2}, - [562] = {.lex_state = 32, .external_lex_state = 7}, - [563] = {.lex_state = 32, .external_lex_state = 9}, - [564] = {.lex_state = 36, .external_lex_state = 2}, - [565] = {.lex_state = 36, .external_lex_state = 2}, - [566] = {.lex_state = 32, .external_lex_state = 10}, - [567] = {.lex_state = 36, .external_lex_state = 2}, - [568] = {.lex_state = 32, .external_lex_state = 9}, - [569] = {.lex_state = 36, .external_lex_state = 2}, - [570] = {.lex_state = 36, .external_lex_state = 2}, - [571] = {.lex_state = 36, .external_lex_state = 2}, - [572] = {.lex_state = 36, .external_lex_state = 2}, - [573] = {.lex_state = 36, .external_lex_state = 2}, - [574] = {.lex_state = 36, .external_lex_state = 2}, - [575] = {.lex_state = 36, .external_lex_state = 2}, - [576] = {.lex_state = 32, .external_lex_state = 4}, - [577] = {.lex_state = 32, .external_lex_state = 9}, - [578] = {.lex_state = 36, .external_lex_state = 2}, - [579] = {.lex_state = 32, .external_lex_state = 2}, - [580] = {.lex_state = 36, .external_lex_state = 2}, - [581] = {.lex_state = 36, .external_lex_state = 2}, - [582] = {.lex_state = 32, .external_lex_state = 4}, - [583] = {.lex_state = 36, .external_lex_state = 2}, - [584] = {.lex_state = 36, .external_lex_state = 2}, - [585] = {.lex_state = 36, .external_lex_state = 2}, - [586] = {.lex_state = 36, .external_lex_state = 2}, - [587] = {.lex_state = 36, .external_lex_state = 2}, - [588] = {.lex_state = 36, .external_lex_state = 2}, - [589] = {.lex_state = 36, .external_lex_state = 2}, - [590] = {.lex_state = 36, .external_lex_state = 2}, - [591] = {.lex_state = 36, .external_lex_state = 2}, - [592] = {.lex_state = 36, .external_lex_state = 2}, - [593] = {.lex_state = 36, .external_lex_state = 2}, - [594] = {.lex_state = 32, .external_lex_state = 9}, - [595] = {.lex_state = 32, .external_lex_state = 10}, - [596] = {.lex_state = 32, .external_lex_state = 2}, - [597] = {.lex_state = 1, .external_lex_state = 2}, - [598] = {.lex_state = 1, .external_lex_state = 2}, - [599] = {.lex_state = 32, .external_lex_state = 9}, - [600] = {.lex_state = 32, .external_lex_state = 4}, - [601] = {.lex_state = 32, .external_lex_state = 4}, - [602] = {.lex_state = 32, .external_lex_state = 4}, - [603] = {.lex_state = 32, .external_lex_state = 2}, - [604] = {.lex_state = 32, .external_lex_state = 2}, - [605] = {.lex_state = 32, .external_lex_state = 2}, - [606] = {.lex_state = 32, .external_lex_state = 2}, - [607] = {.lex_state = 32, .external_lex_state = 2}, - [608] = {.lex_state = 32, .external_lex_state = 2}, - [609] = {.lex_state = 5, .external_lex_state = 20}, - [610] = {.lex_state = 5, .external_lex_state = 20}, - [611] = {.lex_state = 5, .external_lex_state = 20}, - [612] = {.lex_state = 5, .external_lex_state = 20}, - [613] = {.lex_state = 5, .external_lex_state = 20}, - [614] = {.lex_state = 5, .external_lex_state = 20}, - [615] = {.lex_state = 5, .external_lex_state = 20}, - [616] = {.lex_state = 5, .external_lex_state = 20}, - [617] = {.lex_state = 5, .external_lex_state = 20}, - [618] = {.lex_state = 5, .external_lex_state = 20}, - [619] = {.lex_state = 5, .external_lex_state = 20}, + [164] = {.lex_state = 38, .external_lex_state = 11}, + [165] = {.lex_state = 38, .external_lex_state = 12}, + [166] = {.lex_state = 38, .external_lex_state = 13}, + [167] = {.lex_state = 38, .external_lex_state = 14}, + [168] = {.lex_state = 38, .external_lex_state = 14}, + [169] = {.lex_state = 38, .external_lex_state = 15}, + [170] = {.lex_state = 35, .external_lex_state = 8}, + [171] = {.lex_state = 37, .external_lex_state = 8}, + [172] = {.lex_state = 9, .external_lex_state = 2}, + [173] = {.lex_state = 41, .external_lex_state = 4}, + [174] = {.lex_state = 38, .external_lex_state = 4}, + [175] = {.lex_state = 38, .external_lex_state = 15}, + [176] = {.lex_state = 41, .external_lex_state = 8}, + [177] = {.lex_state = 35, .external_lex_state = 2}, + [178] = {.lex_state = 38, .external_lex_state = 8}, + [179] = {.lex_state = 35, .external_lex_state = 9}, + [180] = {.lex_state = 38, .external_lex_state = 16}, + [181] = {.lex_state = 9, .external_lex_state = 13}, + [182] = {.lex_state = 9, .external_lex_state = 13}, + [183] = {.lex_state = 38, .external_lex_state = 16}, + [184] = {.lex_state = 3, .external_lex_state = 2}, + [185] = {.lex_state = 8, .external_lex_state = 2}, + [186] = {.lex_state = 38, .external_lex_state = 3}, + [187] = {.lex_state = 35, .external_lex_state = 10}, + [188] = {.lex_state = 35, .external_lex_state = 5}, + [189] = {.lex_state = 12, .external_lex_state = 2}, + [190] = {.lex_state = 9, .external_lex_state = 2}, + [191] = {.lex_state = 37, .external_lex_state = 5}, + [192] = {.lex_state = 38, .external_lex_state = 6}, + [193] = {.lex_state = 38, .external_lex_state = 11}, + [194] = {.lex_state = 38, .external_lex_state = 13}, + [195] = {.lex_state = 37, .external_lex_state = 10}, + [196] = {.lex_state = 35, .external_lex_state = 3}, + [197] = {.lex_state = 37, .external_lex_state = 3}, + [198] = {.lex_state = 38, .external_lex_state = 4}, + [199] = {.lex_state = 37, .external_lex_state = 9}, + [200] = {.lex_state = 38, .external_lex_state = 2}, + [201] = {.lex_state = 38, .external_lex_state = 3}, + [202] = {.lex_state = 41, .external_lex_state = 5}, + [203] = {.lex_state = 38, .external_lex_state = 5}, + [204] = {.lex_state = 41, .external_lex_state = 2}, + [205] = {.lex_state = 38, .external_lex_state = 2}, + [206] = {.lex_state = 40, .external_lex_state = 2}, + [207] = {.lex_state = 37, .external_lex_state = 2}, + [208] = {.lex_state = 38, .external_lex_state = 17}, + [209] = {.lex_state = 38, .external_lex_state = 17}, + [210] = {.lex_state = 41, .external_lex_state = 10}, + [211] = {.lex_state = 35, .external_lex_state = 6}, + [212] = {.lex_state = 37, .external_lex_state = 6}, + [213] = {.lex_state = 38, .external_lex_state = 7}, + [214] = {.lex_state = 38, .external_lex_state = 10}, + [215] = {.lex_state = 38, .external_lex_state = 12}, + [216] = {.lex_state = 41, .external_lex_state = 9}, + [217] = {.lex_state = 41, .external_lex_state = 6}, + [218] = {.lex_state = 38, .external_lex_state = 6}, + [219] = {.lex_state = 38, .external_lex_state = 18}, + [220] = {.lex_state = 38, .external_lex_state = 18}, + [221] = {.lex_state = 38, .external_lex_state = 19}, + [222] = {.lex_state = 38, .external_lex_state = 19}, + [223] = {.lex_state = 38, .external_lex_state = 9}, + [224] = {.lex_state = 35, .external_lex_state = 7}, + [225] = {.lex_state = 37, .external_lex_state = 7}, + [226] = {.lex_state = 38, .external_lex_state = 8}, + [227] = {.lex_state = 35, .external_lex_state = 4}, + [228] = {.lex_state = 37, .external_lex_state = 4}, + [229] = {.lex_state = 38, .external_lex_state = 5}, + [230] = {.lex_state = 41, .external_lex_state = 7}, + [231] = {.lex_state = 38, .external_lex_state = 7}, + [232] = {.lex_state = 41, .external_lex_state = 3}, + [233] = {.lex_state = 38, .external_lex_state = 8}, + [234] = {.lex_state = 38, .external_lex_state = 5}, + [235] = {.lex_state = 38, .external_lex_state = 5}, + [236] = {.lex_state = 38, .external_lex_state = 5}, + [237] = {.lex_state = 38, .external_lex_state = 5}, + [238] = {.lex_state = 38, .external_lex_state = 5}, + [239] = {.lex_state = 38, .external_lex_state = 5}, + [240] = {.lex_state = 38, .external_lex_state = 5}, + [241] = {.lex_state = 38, .external_lex_state = 5}, + [242] = {.lex_state = 38, .external_lex_state = 5}, + [243] = {.lex_state = 38, .external_lex_state = 5}, + [244] = {.lex_state = 38, .external_lex_state = 2}, + [245] = {.lex_state = 38, .external_lex_state = 5}, + [246] = {.lex_state = 38, .external_lex_state = 5}, + [247] = {.lex_state = 38, .external_lex_state = 5}, + [248] = {.lex_state = 38, .external_lex_state = 5}, + [249] = {.lex_state = 38, .external_lex_state = 5}, + [250] = {.lex_state = 38, .external_lex_state = 5}, + [251] = {.lex_state = 38, .external_lex_state = 5}, + [252] = {.lex_state = 38, .external_lex_state = 5}, + [253] = {.lex_state = 38, .external_lex_state = 5}, + [254] = {.lex_state = 38, .external_lex_state = 5}, + [255] = {.lex_state = 38, .external_lex_state = 5}, + [256] = {.lex_state = 38, .external_lex_state = 5}, + [257] = {.lex_state = 38, .external_lex_state = 5}, + [258] = {.lex_state = 38, .external_lex_state = 5}, + [259] = {.lex_state = 38, .external_lex_state = 5}, + [260] = {.lex_state = 38, .external_lex_state = 5}, + [261] = {.lex_state = 38, .external_lex_state = 2}, + [262] = {.lex_state = 38, .external_lex_state = 6}, + [263] = {.lex_state = 38, .external_lex_state = 6}, + [264] = {.lex_state = 38, .external_lex_state = 6}, + [265] = {.lex_state = 38, .external_lex_state = 2}, + [266] = {.lex_state = 38, .external_lex_state = 2}, + [267] = {.lex_state = 38, .external_lex_state = 2}, + [268] = {.lex_state = 38, .external_lex_state = 6}, + [269] = {.lex_state = 38, .external_lex_state = 6}, + [270] = {.lex_state = 38, .external_lex_state = 6}, + [271] = {.lex_state = 38, .external_lex_state = 6}, + [272] = {.lex_state = 38, .external_lex_state = 6}, + [273] = {.lex_state = 38, .external_lex_state = 6}, + [274] = {.lex_state = 38, .external_lex_state = 6}, + [275] = {.lex_state = 38, .external_lex_state = 6}, + [276] = {.lex_state = 38, .external_lex_state = 6}, + [277] = {.lex_state = 38, .external_lex_state = 9}, + [278] = {.lex_state = 38, .external_lex_state = 9}, + [279] = {.lex_state = 38, .external_lex_state = 9}, + [280] = {.lex_state = 38, .external_lex_state = 6}, + [281] = {.lex_state = 38, .external_lex_state = 6}, + [282] = {.lex_state = 38, .external_lex_state = 6}, + [283] = {.lex_state = 38, .external_lex_state = 6}, + [284] = {.lex_state = 38, .external_lex_state = 6}, + [285] = {.lex_state = 38, .external_lex_state = 6}, + [286] = {.lex_state = 38, .external_lex_state = 6}, + [287] = {.lex_state = 38, .external_lex_state = 6}, + [288] = {.lex_state = 38, .external_lex_state = 6}, + [289] = {.lex_state = 38, .external_lex_state = 6}, + [290] = {.lex_state = 38, .external_lex_state = 6}, + [291] = {.lex_state = 38, .external_lex_state = 6}, + [292] = {.lex_state = 38, .external_lex_state = 6}, + [293] = {.lex_state = 38, .external_lex_state = 6}, + [294] = {.lex_state = 38, .external_lex_state = 6}, + [295] = {.lex_state = 38, .external_lex_state = 6}, + [296] = {.lex_state = 38, .external_lex_state = 2}, + [297] = {.lex_state = 38, .external_lex_state = 2}, + [298] = {.lex_state = 38, .external_lex_state = 2}, + [299] = {.lex_state = 38, .external_lex_state = 2}, + [300] = {.lex_state = 38, .external_lex_state = 9}, + [301] = {.lex_state = 38, .external_lex_state = 7}, + [302] = {.lex_state = 38, .external_lex_state = 7}, + [303] = {.lex_state = 38, .external_lex_state = 7}, + [304] = {.lex_state = 38, .external_lex_state = 9}, + [305] = {.lex_state = 38, .external_lex_state = 2}, + [306] = {.lex_state = 38, .external_lex_state = 7}, + [307] = {.lex_state = 38, .external_lex_state = 7}, + [308] = {.lex_state = 38, .external_lex_state = 9}, + [309] = {.lex_state = 38, .external_lex_state = 7}, + [310] = {.lex_state = 38, .external_lex_state = 7}, + [311] = {.lex_state = 38, .external_lex_state = 7}, + [312] = {.lex_state = 38, .external_lex_state = 7}, + [313] = {.lex_state = 38, .external_lex_state = 7}, + [314] = {.lex_state = 38, .external_lex_state = 7}, + [315] = {.lex_state = 38, .external_lex_state = 7}, + [316] = {.lex_state = 38, .external_lex_state = 9}, + [317] = {.lex_state = 38, .external_lex_state = 9}, + [318] = {.lex_state = 38, .external_lex_state = 9}, + [319] = {.lex_state = 38, .external_lex_state = 7}, + [320] = {.lex_state = 38, .external_lex_state = 7}, + [321] = {.lex_state = 38, .external_lex_state = 7}, + [322] = {.lex_state = 38, .external_lex_state = 7}, + [323] = {.lex_state = 38, .external_lex_state = 7}, + [324] = {.lex_state = 38, .external_lex_state = 7}, + [325] = {.lex_state = 38, .external_lex_state = 7}, + [326] = {.lex_state = 38, .external_lex_state = 7}, + [327] = {.lex_state = 38, .external_lex_state = 7}, + [328] = {.lex_state = 38, .external_lex_state = 7}, + [329] = {.lex_state = 38, .external_lex_state = 7}, + [330] = {.lex_state = 38, .external_lex_state = 7}, + [331] = {.lex_state = 38, .external_lex_state = 7}, + [332] = {.lex_state = 38, .external_lex_state = 7}, + [333] = {.lex_state = 38, .external_lex_state = 7}, + [334] = {.lex_state = 38, .external_lex_state = 7}, + [335] = {.lex_state = 38, .external_lex_state = 9}, + [336] = {.lex_state = 38, .external_lex_state = 9}, + [337] = {.lex_state = 38, .external_lex_state = 9}, + [338] = {.lex_state = 38, .external_lex_state = 2}, + [339] = {.lex_state = 38, .external_lex_state = 2}, + [340] = {.lex_state = 38, .external_lex_state = 8}, + [341] = {.lex_state = 38, .external_lex_state = 8}, + [342] = {.lex_state = 38, .external_lex_state = 8}, + [343] = {.lex_state = 38, .external_lex_state = 2}, + [344] = {.lex_state = 38, .external_lex_state = 9}, + [345] = {.lex_state = 38, .external_lex_state = 9}, + [346] = {.lex_state = 38, .external_lex_state = 8}, + [347] = {.lex_state = 38, .external_lex_state = 8}, + [348] = {.lex_state = 38, .external_lex_state = 8}, + [349] = {.lex_state = 38, .external_lex_state = 8}, + [350] = {.lex_state = 38, .external_lex_state = 8}, + [351] = {.lex_state = 38, .external_lex_state = 8}, + [352] = {.lex_state = 38, .external_lex_state = 9}, + [353] = {.lex_state = 38, .external_lex_state = 8}, + [354] = {.lex_state = 38, .external_lex_state = 8}, + [355] = {.lex_state = 38, .external_lex_state = 9}, + [356] = {.lex_state = 38, .external_lex_state = 9}, + [357] = {.lex_state = 38, .external_lex_state = 8}, + [358] = {.lex_state = 38, .external_lex_state = 8}, + [359] = {.lex_state = 38, .external_lex_state = 8}, + [360] = {.lex_state = 38, .external_lex_state = 8}, + [361] = {.lex_state = 38, .external_lex_state = 8}, + [362] = {.lex_state = 38, .external_lex_state = 8}, + [363] = {.lex_state = 38, .external_lex_state = 8}, + [364] = {.lex_state = 38, .external_lex_state = 8}, + [365] = {.lex_state = 38, .external_lex_state = 8}, + [366] = {.lex_state = 38, .external_lex_state = 8}, + [367] = {.lex_state = 38, .external_lex_state = 8}, + [368] = {.lex_state = 38, .external_lex_state = 8}, + [369] = {.lex_state = 38, .external_lex_state = 8}, + [370] = {.lex_state = 38, .external_lex_state = 8}, + [371] = {.lex_state = 38, .external_lex_state = 8}, + [372] = {.lex_state = 38, .external_lex_state = 8}, + [373] = {.lex_state = 38, .external_lex_state = 9}, + [374] = {.lex_state = 38, .external_lex_state = 9}, + [375] = {.lex_state = 38, .external_lex_state = 9}, + [376] = {.lex_state = 38, .external_lex_state = 9}, + [377] = {.lex_state = 9, .external_lex_state = 2}, + [378] = {.lex_state = 9, .external_lex_state = 2}, + [379] = {.lex_state = 9, .external_lex_state = 2}, + [380] = {.lex_state = 38, .external_lex_state = 9}, + [381] = {.lex_state = 38, .external_lex_state = 9}, + [382] = {.lex_state = 38, .external_lex_state = 9}, + [383] = {.lex_state = 9, .external_lex_state = 2}, + [384] = {.lex_state = 9, .external_lex_state = 2}, + [385] = {.lex_state = 38, .external_lex_state = 9}, + [386] = {.lex_state = 9, .external_lex_state = 2}, + [387] = {.lex_state = 9, .external_lex_state = 2}, + [388] = {.lex_state = 9, .external_lex_state = 2}, + [389] = {.lex_state = 9, .external_lex_state = 2}, + [390] = {.lex_state = 9, .external_lex_state = 2}, + [391] = {.lex_state = 9, .external_lex_state = 2}, + [392] = {.lex_state = 9, .external_lex_state = 2}, + [393] = {.lex_state = 38, .external_lex_state = 9}, + [394] = {.lex_state = 9, .external_lex_state = 2}, + [395] = {.lex_state = 9, .external_lex_state = 2}, + [396] = {.lex_state = 9, .external_lex_state = 2}, + [397] = {.lex_state = 9, .external_lex_state = 2}, + [398] = {.lex_state = 9, .external_lex_state = 2}, + [399] = {.lex_state = 9, .external_lex_state = 2}, + [400] = {.lex_state = 9, .external_lex_state = 2}, + [401] = {.lex_state = 9, .external_lex_state = 2}, + [402] = {.lex_state = 9, .external_lex_state = 2}, + [403] = {.lex_state = 9, .external_lex_state = 2}, + [404] = {.lex_state = 9, .external_lex_state = 2}, + [405] = {.lex_state = 9, .external_lex_state = 2}, + [406] = {.lex_state = 9, .external_lex_state = 2}, + [407] = {.lex_state = 9, .external_lex_state = 2}, + [408] = {.lex_state = 9, .external_lex_state = 2}, + [409] = {.lex_state = 9, .external_lex_state = 2}, + [410] = {.lex_state = 38, .external_lex_state = 9}, + [411] = {.lex_state = 38, .external_lex_state = 3}, + [412] = {.lex_state = 38, .external_lex_state = 3}, + [413] = {.lex_state = 38, .external_lex_state = 3}, + [414] = {.lex_state = 38, .external_lex_state = 2}, + [415] = {.lex_state = 38, .external_lex_state = 3}, + [416] = {.lex_state = 38, .external_lex_state = 3}, + [417] = {.lex_state = 38, .external_lex_state = 2}, + [418] = {.lex_state = 38, .external_lex_state = 3}, + [419] = {.lex_state = 38, .external_lex_state = 3}, + [420] = {.lex_state = 38, .external_lex_state = 3}, + [421] = {.lex_state = 38, .external_lex_state = 3}, + [422] = {.lex_state = 38, .external_lex_state = 3}, + [423] = {.lex_state = 38, .external_lex_state = 3}, + [424] = {.lex_state = 38, .external_lex_state = 3}, + [425] = {.lex_state = 38, .external_lex_state = 10}, + [426] = {.lex_state = 38, .external_lex_state = 3}, + [427] = {.lex_state = 38, .external_lex_state = 3}, + [428] = {.lex_state = 38, .external_lex_state = 3}, + [429] = {.lex_state = 38, .external_lex_state = 3}, + [430] = {.lex_state = 38, .external_lex_state = 3}, + [431] = {.lex_state = 38, .external_lex_state = 3}, + [432] = {.lex_state = 38, .external_lex_state = 3}, + [433] = {.lex_state = 38, .external_lex_state = 3}, + [434] = {.lex_state = 38, .external_lex_state = 3}, + [435] = {.lex_state = 38, .external_lex_state = 3}, + [436] = {.lex_state = 38, .external_lex_state = 3}, + [437] = {.lex_state = 38, .external_lex_state = 3}, + [438] = {.lex_state = 38, .external_lex_state = 3}, + [439] = {.lex_state = 38, .external_lex_state = 3}, + [440] = {.lex_state = 38, .external_lex_state = 3}, + [441] = {.lex_state = 38, .external_lex_state = 3}, + [442] = {.lex_state = 38, .external_lex_state = 13}, + [443] = {.lex_state = 38, .external_lex_state = 13}, + [444] = {.lex_state = 38, .external_lex_state = 10}, + [445] = {.lex_state = 35, .external_lex_state = 2}, + [446] = {.lex_state = 37, .external_lex_state = 2}, + [447] = {.lex_state = 38, .external_lex_state = 10}, + [448] = {.lex_state = 41, .external_lex_state = 2}, + [449] = {.lex_state = 38, .external_lex_state = 2}, + [450] = {.lex_state = 38, .external_lex_state = 2}, + [451] = {.lex_state = 38, .external_lex_state = 2}, + [452] = {.lex_state = 38, .external_lex_state = 2}, + [453] = {.lex_state = 38, .external_lex_state = 2}, + [454] = {.lex_state = 38, .external_lex_state = 10}, + [455] = {.lex_state = 38, .external_lex_state = 10}, + [456] = {.lex_state = 38, .external_lex_state = 10}, + [457] = {.lex_state = 38, .external_lex_state = 10}, + [458] = {.lex_state = 38, .external_lex_state = 10}, + [459] = {.lex_state = 38, .external_lex_state = 10}, + [460] = {.lex_state = 38, .external_lex_state = 10}, + [461] = {.lex_state = 38, .external_lex_state = 10}, + [462] = {.lex_state = 38, .external_lex_state = 10}, + [463] = {.lex_state = 38, .external_lex_state = 2}, + [464] = {.lex_state = 38, .external_lex_state = 10}, + [465] = {.lex_state = 38, .external_lex_state = 10}, + [466] = {.lex_state = 38, .external_lex_state = 10}, + [467] = {.lex_state = 38, .external_lex_state = 10}, + [468] = {.lex_state = 38, .external_lex_state = 10}, + [469] = {.lex_state = 38, .external_lex_state = 10}, + [470] = {.lex_state = 38, .external_lex_state = 10}, + [471] = {.lex_state = 38, .external_lex_state = 10}, + [472] = {.lex_state = 38, .external_lex_state = 10}, + [473] = {.lex_state = 38, .external_lex_state = 10}, + [474] = {.lex_state = 38, .external_lex_state = 10}, + [475] = {.lex_state = 38, .external_lex_state = 10}, + [476] = {.lex_state = 38, .external_lex_state = 10}, + [477] = {.lex_state = 38, .external_lex_state = 10}, + [478] = {.lex_state = 38, .external_lex_state = 10}, + [479] = {.lex_state = 38, .external_lex_state = 10}, + [480] = {.lex_state = 38, .external_lex_state = 2}, + [481] = {.lex_state = 38, .external_lex_state = 2}, + [482] = {.lex_state = 38, .external_lex_state = 4}, + [483] = {.lex_state = 38, .external_lex_state = 4}, + [484] = {.lex_state = 38, .external_lex_state = 4}, + [485] = {.lex_state = 38, .external_lex_state = 2}, + [486] = {.lex_state = 38, .external_lex_state = 2}, + [487] = {.lex_state = 38, .external_lex_state = 2}, + [488] = {.lex_state = 38, .external_lex_state = 4}, + [489] = {.lex_state = 38, .external_lex_state = 4}, + [490] = {.lex_state = 38, .external_lex_state = 2}, + [491] = {.lex_state = 38, .external_lex_state = 4}, + [492] = {.lex_state = 38, .external_lex_state = 4}, + [493] = {.lex_state = 38, .external_lex_state = 4}, + [494] = {.lex_state = 38, .external_lex_state = 4}, + [495] = {.lex_state = 38, .external_lex_state = 4}, + [496] = {.lex_state = 38, .external_lex_state = 4}, + [497] = {.lex_state = 38, .external_lex_state = 4}, + [498] = {.lex_state = 38, .external_lex_state = 2}, + [499] = {.lex_state = 38, .external_lex_state = 2}, + [500] = {.lex_state = 38, .external_lex_state = 2}, + [501] = {.lex_state = 38, .external_lex_state = 4}, + [502] = {.lex_state = 38, .external_lex_state = 4}, + [503] = {.lex_state = 38, .external_lex_state = 4}, + [504] = {.lex_state = 38, .external_lex_state = 4}, + [505] = {.lex_state = 38, .external_lex_state = 4}, + [506] = {.lex_state = 38, .external_lex_state = 4}, + [507] = {.lex_state = 38, .external_lex_state = 4}, + [508] = {.lex_state = 38, .external_lex_state = 4}, + [509] = {.lex_state = 38, .external_lex_state = 4}, + [510] = {.lex_state = 38, .external_lex_state = 4}, + [511] = {.lex_state = 38, .external_lex_state = 4}, + [512] = {.lex_state = 38, .external_lex_state = 4}, + [513] = {.lex_state = 38, .external_lex_state = 4}, + [514] = {.lex_state = 38, .external_lex_state = 4}, + [515] = {.lex_state = 38, .external_lex_state = 4}, + [516] = {.lex_state = 38, .external_lex_state = 4}, + [517] = {.lex_state = 38, .external_lex_state = 2}, + [518] = {.lex_state = 38, .external_lex_state = 2}, + [519] = {.lex_state = 38, .external_lex_state = 5}, + [520] = {.lex_state = 38, .external_lex_state = 5}, + [521] = {.lex_state = 38, .external_lex_state = 9}, + [522] = {.lex_state = 33, .external_lex_state = 10}, + [523] = {.lex_state = 38, .external_lex_state = 2}, + [524] = {.lex_state = 38, .external_lex_state = 2}, + [525] = {.lex_state = 33, .external_lex_state = 7}, + [526] = {.lex_state = 33, .external_lex_state = 7}, + [527] = {.lex_state = 38, .external_lex_state = 2}, + [528] = {.lex_state = 38, .external_lex_state = 2}, + [529] = {.lex_state = 38, .external_lex_state = 2}, + [530] = {.lex_state = 38, .external_lex_state = 2}, + [531] = {.lex_state = 38, .external_lex_state = 2}, + [532] = {.lex_state = 38, .external_lex_state = 2}, + [533] = {.lex_state = 38, .external_lex_state = 2}, + [534] = {.lex_state = 38, .external_lex_state = 2}, + [535] = {.lex_state = 38, .external_lex_state = 2}, + [536] = {.lex_state = 38, .external_lex_state = 2}, + [537] = {.lex_state = 38, .external_lex_state = 2}, + [538] = {.lex_state = 38, .external_lex_state = 2}, + [539] = {.lex_state = 38, .external_lex_state = 2}, + [540] = {.lex_state = 38, .external_lex_state = 2}, + [541] = {.lex_state = 38, .external_lex_state = 2}, + [542] = {.lex_state = 38, .external_lex_state = 2}, + [543] = {.lex_state = 33, .external_lex_state = 9}, + [544] = {.lex_state = 33, .external_lex_state = 6}, + [545] = {.lex_state = 33, .external_lex_state = 2}, + [546] = {.lex_state = 33, .external_lex_state = 5}, + [547] = {.lex_state = 33, .external_lex_state = 2}, + [548] = {.lex_state = 1, .external_lex_state = 2}, + [549] = {.lex_state = 33, .external_lex_state = 10}, + [550] = {.lex_state = 33, .external_lex_state = 5}, + [551] = {.lex_state = 1, .external_lex_state = 2}, + [552] = {.lex_state = 33, .external_lex_state = 8}, + [553] = {.lex_state = 33, .external_lex_state = 9}, + [554] = {.lex_state = 33, .external_lex_state = 2}, + [555] = {.lex_state = 33, .external_lex_state = 8}, + [556] = {.lex_state = 33, .external_lex_state = 10}, + [557] = {.lex_state = 33, .external_lex_state = 6}, + [558] = {.lex_state = 33, .external_lex_state = 10}, + [559] = {.lex_state = 33, .external_lex_state = 10}, + [560] = {.lex_state = 33, .external_lex_state = 6}, + [561] = {.lex_state = 33, .external_lex_state = 3}, + [562] = {.lex_state = 33, .external_lex_state = 3}, + [563] = {.lex_state = 33, .external_lex_state = 9}, + [564] = {.lex_state = 33, .external_lex_state = 5}, + [565] = {.lex_state = 33, .external_lex_state = 7}, + [566] = {.lex_state = 33, .external_lex_state = 8}, + [567] = {.lex_state = 33, .external_lex_state = 10}, + [568] = {.lex_state = 33, .external_lex_state = 8}, + [569] = {.lex_state = 33, .external_lex_state = 10}, + [570] = {.lex_state = 33, .external_lex_state = 10}, + [571] = {.lex_state = 33, .external_lex_state = 2}, + [572] = {.lex_state = 33, .external_lex_state = 2}, + [573] = {.lex_state = 1, .external_lex_state = 2}, + [574] = {.lex_state = 33, .external_lex_state = 3}, + [575] = {.lex_state = 1, .external_lex_state = 2}, + [576] = {.lex_state = 33, .external_lex_state = 9}, + [577] = {.lex_state = 33, .external_lex_state = 7}, + [578] = {.lex_state = 33, .external_lex_state = 3}, + [579] = {.lex_state = 33, .external_lex_state = 5}, + [580] = {.lex_state = 33, .external_lex_state = 6}, + [581] = {.lex_state = 33, .external_lex_state = 4}, + [582] = {.lex_state = 33, .external_lex_state = 4}, + [583] = {.lex_state = 33, .external_lex_state = 2}, + [584] = {.lex_state = 33, .external_lex_state = 9}, + [585] = {.lex_state = 33, .external_lex_state = 6}, + [586] = {.lex_state = 33, .external_lex_state = 9}, + [587] = {.lex_state = 33, .external_lex_state = 9}, + [588] = {.lex_state = 33, .external_lex_state = 8}, + [589] = {.lex_state = 33, .external_lex_state = 3}, + [590] = {.lex_state = 1, .external_lex_state = 2}, + [591] = {.lex_state = 33, .external_lex_state = 3}, + [592] = {.lex_state = 33, .external_lex_state = 4}, + [593] = {.lex_state = 33, .external_lex_state = 9}, + [594] = {.lex_state = 33, .external_lex_state = 5}, + [595] = {.lex_state = 33, .external_lex_state = 4}, + [596] = {.lex_state = 1, .external_lex_state = 2}, + [597] = {.lex_state = 33, .external_lex_state = 8}, + [598] = {.lex_state = 33, .external_lex_state = 5}, + [599] = {.lex_state = 33, .external_lex_state = 6}, + [600] = {.lex_state = 38, .external_lex_state = 2}, + [601] = {.lex_state = 38, .external_lex_state = 2}, + [602] = {.lex_state = 38, .external_lex_state = 2}, + [603] = {.lex_state = 33, .external_lex_state = 7}, + [604] = {.lex_state = 38, .external_lex_state = 2}, + [605] = {.lex_state = 38, .external_lex_state = 2}, + [606] = {.lex_state = 33, .external_lex_state = 4}, + [607] = {.lex_state = 33, .external_lex_state = 4}, + [608] = {.lex_state = 33, .external_lex_state = 7}, + [609] = {.lex_state = 38, .external_lex_state = 2}, + [610] = {.lex_state = 38, .external_lex_state = 2}, + [611] = {.lex_state = 38, .external_lex_state = 2}, + [612] = {.lex_state = 38, .external_lex_state = 2}, + [613] = {.lex_state = 38, .external_lex_state = 2}, + [614] = {.lex_state = 33, .external_lex_state = 2}, + [615] = {.lex_state = 33, .external_lex_state = 2}, + [616] = {.lex_state = 33, .external_lex_state = 2}, + [617] = {.lex_state = 33, .external_lex_state = 2}, + [618] = {.lex_state = 33, .external_lex_state = 2}, + [619] = {.lex_state = 33, .external_lex_state = 2}, [620] = {.lex_state = 5, .external_lex_state = 20}, [621] = {.lex_state = 5, .external_lex_state = 20}, [622] = {.lex_state = 5, .external_lex_state = 20}, @@ -4564,31 +4655,31 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [638] = {.lex_state = 5, .external_lex_state = 20}, [639] = {.lex_state = 5, .external_lex_state = 20}, [640] = {.lex_state = 5, .external_lex_state = 20}, - [641] = {.lex_state = 5}, - [642] = {.lex_state = 5}, - [643] = {.lex_state = 5}, - [644] = {.lex_state = 5}, - [645] = {.lex_state = 5}, - [646] = {.lex_state = 5}, - [647] = {.lex_state = 5}, - [648] = {.lex_state = 5}, - [649] = {.lex_state = 5}, - [650] = {.lex_state = 5}, - [651] = {.lex_state = 5}, + [641] = {.lex_state = 5, .external_lex_state = 20}, + [642] = {.lex_state = 5, .external_lex_state = 20}, + [643] = {.lex_state = 5, .external_lex_state = 20}, + [644] = {.lex_state = 5, .external_lex_state = 20}, + [645] = {.lex_state = 5, .external_lex_state = 20}, + [646] = {.lex_state = 5, .external_lex_state = 20}, + [647] = {.lex_state = 5, .external_lex_state = 20}, + [648] = {.lex_state = 5, .external_lex_state = 20}, + [649] = {.lex_state = 5, .external_lex_state = 20}, + [650] = {.lex_state = 5, .external_lex_state = 20}, + [651] = {.lex_state = 5, .external_lex_state = 20}, [652] = {.lex_state = 5}, [653] = {.lex_state = 5}, [654] = {.lex_state = 5}, [655] = {.lex_state = 5}, [656] = {.lex_state = 5}, [657] = {.lex_state = 5}, - [658] = {.lex_state = 5}, + [658] = {.lex_state = 7}, [659] = {.lex_state = 5}, [660] = {.lex_state = 5}, [661] = {.lex_state = 5}, [662] = {.lex_state = 5}, [663] = {.lex_state = 5}, - [664] = {.lex_state = 5}, - [665] = {.lex_state = 5}, + [664] = {.lex_state = 7}, + [665] = {.lex_state = 7}, [666] = {.lex_state = 5}, [667] = {.lex_state = 5}, [668] = {.lex_state = 5}, @@ -4596,547 +4687,558 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [670] = {.lex_state = 5}, [671] = {.lex_state = 5}, [672] = {.lex_state = 5}, - [673] = {.lex_state = 5}, - [674] = {.lex_state = 7}, - [675] = {.lex_state = 7}, - [676] = {.lex_state = 7}, - [677] = {.lex_state = 7}, - [678] = {.lex_state = 7}, - [679] = {.lex_state = 7}, - [680] = {.lex_state = 13}, + [673] = {.lex_state = 7}, + [674] = {.lex_state = 5}, + [675] = {.lex_state = 5}, + [676] = {.lex_state = 5}, + [677] = {.lex_state = 5}, + [678] = {.lex_state = 5}, + [679] = {.lex_state = 5}, + [680] = {.lex_state = 5}, [681] = {.lex_state = 5}, [682] = {.lex_state = 5}, - [683] = {.lex_state = 0, .external_lex_state = 21}, - [684] = {.lex_state = 0, .external_lex_state = 22}, - [685] = {.lex_state = 0, .external_lex_state = 23}, - [686] = {.lex_state = 0, .external_lex_state = 24}, - [687] = {.lex_state = 0, .external_lex_state = 25}, - [688] = {.lex_state = 0, .external_lex_state = 26}, - [689] = {.lex_state = 0, .external_lex_state = 22}, - [690] = {.lex_state = 0, .external_lex_state = 27}, - [691] = {.lex_state = 0, .external_lex_state = 28}, - [692] = {.lex_state = 0, .external_lex_state = 23}, - [693] = {.lex_state = 0, .external_lex_state = 21}, + [683] = {.lex_state = 5}, + [684] = {.lex_state = 5}, + [685] = {.lex_state = 5}, + [686] = {.lex_state = 5}, + [687] = {.lex_state = 5}, + [688] = {.lex_state = 7}, + [689] = {.lex_state = 5}, + [690] = {.lex_state = 7}, + [691] = {.lex_state = 14}, + [692] = {.lex_state = 5}, + [693] = {.lex_state = 5}, [694] = {.lex_state = 0, .external_lex_state = 21}, [695] = {.lex_state = 0, .external_lex_state = 21}, - [696] = {.lex_state = 0, .external_lex_state = 29}, - [697] = {.lex_state = 0, .external_lex_state = 24}, - [698] = {.lex_state = 0, .external_lex_state = 22}, - [699] = {.lex_state = 0, .external_lex_state = 23}, - [700] = {.lex_state = 0, .external_lex_state = 30}, + [696] = {.lex_state = 0, .external_lex_state = 22}, + [697] = {.lex_state = 0, .external_lex_state = 23}, + [698] = {.lex_state = 0, .external_lex_state = 24}, + [699] = {.lex_state = 0, .external_lex_state = 22}, + [700] = {.lex_state = 0, .external_lex_state = 23}, [701] = {.lex_state = 0, .external_lex_state = 25}, [702] = {.lex_state = 0, .external_lex_state = 26}, [703] = {.lex_state = 0, .external_lex_state = 27}, [704] = {.lex_state = 0, .external_lex_state = 28}, - [705] = {.lex_state = 0, .external_lex_state = 21}, - [706] = {.lex_state = 0, .external_lex_state = 21}, - [707] = {.lex_state = 0, .external_lex_state = 21}, - [708] = {.lex_state = 5}, - [709] = {.lex_state = 0, .external_lex_state = 29}, - [710] = {.lex_state = 5}, - [711] = {.lex_state = 5}, - [712] = {.lex_state = 5}, - [713] = {.lex_state = 0, .external_lex_state = 23}, - [714] = {.lex_state = 0, .external_lex_state = 22}, - [715] = {.lex_state = 0, .external_lex_state = 23}, - [716] = {.lex_state = 0, .external_lex_state = 24}, - [717] = {.lex_state = 0, .external_lex_state = 25}, - [718] = {.lex_state = 0, .external_lex_state = 26}, - [719] = {.lex_state = 0, .external_lex_state = 27}, - [720] = {.lex_state = 0, .external_lex_state = 28}, - [721] = {.lex_state = 5}, - [722] = {.lex_state = 0, .external_lex_state = 21}, - [723] = {.lex_state = 0, .external_lex_state = 21}, + [705] = {.lex_state = 0, .external_lex_state = 29}, + [706] = {.lex_state = 0}, + [707] = {.lex_state = 0, .external_lex_state = 30}, + [708] = {.lex_state = 0, .external_lex_state = 30}, + [709] = {.lex_state = 0, .external_lex_state = 30}, + [710] = {.lex_state = 0, .external_lex_state = 22}, + [711] = {.lex_state = 0, .external_lex_state = 23}, + [712] = {.lex_state = 0, .external_lex_state = 24}, + [713] = {.lex_state = 0, .external_lex_state = 22}, + [714] = {.lex_state = 0, .external_lex_state = 23}, + [715] = {.lex_state = 0, .external_lex_state = 25}, + [716] = {.lex_state = 0, .external_lex_state = 26}, + [717] = {.lex_state = 0, .external_lex_state = 27}, + [718] = {.lex_state = 0, .external_lex_state = 28}, + [719] = {.lex_state = 0, .external_lex_state = 29}, + [720] = {.lex_state = 0}, + [721] = {.lex_state = 0, .external_lex_state = 30}, + [722] = {.lex_state = 0, .external_lex_state = 30}, + [723] = {.lex_state = 0, .external_lex_state = 30}, [724] = {.lex_state = 0, .external_lex_state = 21}, - [725] = {.lex_state = 0, .external_lex_state = 29}, - [726] = {.lex_state = 0, .external_lex_state = 30}, - [727] = {.lex_state = 0, .external_lex_state = 22}, - [728] = {.lex_state = 0, .external_lex_state = 23}, - [729] = {.lex_state = 0, .external_lex_state = 30}, - [730] = {.lex_state = 5}, - [731] = {.lex_state = 5}, - [732] = {.lex_state = 5}, - [733] = {.lex_state = 5}, - [734] = {.lex_state = 5}, - [735] = {.lex_state = 5}, - [736] = {.lex_state = 5}, - [737] = {.lex_state = 5}, - [738] = {.lex_state = 5}, - [739] = {.lex_state = 0, .external_lex_state = 22}, - [740] = {.lex_state = 5}, - [741] = {.lex_state = 5}, - [742] = {.lex_state = 0, .external_lex_state = 23}, - [743] = {.lex_state = 0, .external_lex_state = 22}, - [744] = {.lex_state = 0, .external_lex_state = 23}, - [745] = {.lex_state = 0, .external_lex_state = 24}, - [746] = {.lex_state = 0, .external_lex_state = 25}, - [747] = {.lex_state = 0, .external_lex_state = 26}, - [748] = {.lex_state = 0, .external_lex_state = 27}, - [749] = {.lex_state = 0, .external_lex_state = 28}, - [750] = {.lex_state = 0, .external_lex_state = 24}, - [751] = {.lex_state = 0, .external_lex_state = 21}, - [752] = {.lex_state = 0, .external_lex_state = 21}, - [753] = {.lex_state = 0, .external_lex_state = 21}, - [754] = {.lex_state = 0, .external_lex_state = 29}, - [755] = {.lex_state = 0, .external_lex_state = 25}, - [756] = {.lex_state = 0, .external_lex_state = 22}, - [757] = {.lex_state = 0, .external_lex_state = 23}, - [758] = {.lex_state = 0, .external_lex_state = 30}, - [759] = {.lex_state = 0, .external_lex_state = 26}, - [760] = {.lex_state = 0, .external_lex_state = 27}, - [761] = {.lex_state = 0, .external_lex_state = 28}, - [762] = {.lex_state = 5}, - [763] = {.lex_state = 5}, - [764] = {.lex_state = 0, .external_lex_state = 21}, - [765] = {.lex_state = 0, .external_lex_state = 21}, - [766] = {.lex_state = 0, .external_lex_state = 29}, - [767] = {.lex_state = 0, .external_lex_state = 22}, - [768] = {.lex_state = 0, .external_lex_state = 23}, - [769] = {.lex_state = 0, .external_lex_state = 30}, - [770] = {.lex_state = 5}, - [771] = {.lex_state = 5}, - [772] = {.lex_state = 5}, - [773] = {.lex_state = 0, .external_lex_state = 22}, - [774] = {.lex_state = 0, .external_lex_state = 23}, - [775] = {.lex_state = 0, .external_lex_state = 24}, - [776] = {.lex_state = 0, .external_lex_state = 25}, - [777] = {.lex_state = 0, .external_lex_state = 26}, - [778] = {.lex_state = 0, .external_lex_state = 27}, - [779] = {.lex_state = 0, .external_lex_state = 28}, - [780] = {.lex_state = 5}, - [781] = {.lex_state = 0, .external_lex_state = 21}, - [782] = {.lex_state = 0, .external_lex_state = 21}, - [783] = {.lex_state = 0, .external_lex_state = 21}, - [784] = {.lex_state = 0, .external_lex_state = 29}, - [785] = {.lex_state = 0, .external_lex_state = 22}, - [786] = {.lex_state = 0, .external_lex_state = 22}, - [787] = {.lex_state = 0, .external_lex_state = 24}, - [788] = {.lex_state = 0, .external_lex_state = 22}, - [789] = {.lex_state = 0, .external_lex_state = 23}, + [725] = {.lex_state = 0, .external_lex_state = 30}, + [726] = {.lex_state = 0, .external_lex_state = 22}, + [727] = {.lex_state = 0, .external_lex_state = 23}, + [728] = {.lex_state = 0, .external_lex_state = 24}, + [729] = {.lex_state = 0, .external_lex_state = 22}, + [730] = {.lex_state = 0, .external_lex_state = 23}, + [731] = {.lex_state = 0, .external_lex_state = 25}, + [732] = {.lex_state = 0, .external_lex_state = 26}, + [733] = {.lex_state = 0, .external_lex_state = 27}, + [734] = {.lex_state = 0, .external_lex_state = 28}, + [735] = {.lex_state = 0, .external_lex_state = 29}, + [736] = {.lex_state = 0}, + [737] = {.lex_state = 0, .external_lex_state = 30}, + [738] = {.lex_state = 0, .external_lex_state = 30}, + [739] = {.lex_state = 0, .external_lex_state = 30}, + [740] = {.lex_state = 0, .external_lex_state = 21}, + [741] = {.lex_state = 0, .external_lex_state = 21}, + [742] = {.lex_state = 0, .external_lex_state = 22}, + [743] = {.lex_state = 0, .external_lex_state = 23}, + [744] = {.lex_state = 0, .external_lex_state = 24}, + [745] = {.lex_state = 0, .external_lex_state = 25}, + [746] = {.lex_state = 5}, + [747] = {.lex_state = 0, .external_lex_state = 22}, + [748] = {.lex_state = 0, .external_lex_state = 23}, + [749] = {.lex_state = 0, .external_lex_state = 25}, + [750] = {.lex_state = 0, .external_lex_state = 26}, + [751] = {.lex_state = 0, .external_lex_state = 27}, + [752] = {.lex_state = 0, .external_lex_state = 28}, + [753] = {.lex_state = 0, .external_lex_state = 29}, + [754] = {.lex_state = 0}, + [755] = {.lex_state = 0, .external_lex_state = 30}, + [756] = {.lex_state = 0, .external_lex_state = 30}, + [757] = {.lex_state = 0, .external_lex_state = 30}, + [758] = {.lex_state = 0, .external_lex_state = 21}, + [759] = {.lex_state = 5}, + [760] = {.lex_state = 0, .external_lex_state = 22}, + [761] = {.lex_state = 0, .external_lex_state = 23}, + [762] = {.lex_state = 0, .external_lex_state = 24}, + [763] = {.lex_state = 0, .external_lex_state = 26}, + [764] = {.lex_state = 0, .external_lex_state = 27}, + [765] = {.lex_state = 0, .external_lex_state = 28}, + [766] = {.lex_state = 0, .external_lex_state = 22}, + [767] = {.lex_state = 0, .external_lex_state = 23}, + [768] = {.lex_state = 0, .external_lex_state = 25}, + [769] = {.lex_state = 0, .external_lex_state = 26}, + [770] = {.lex_state = 0, .external_lex_state = 27}, + [771] = {.lex_state = 0, .external_lex_state = 28}, + [772] = {.lex_state = 0, .external_lex_state = 29}, + [773] = {.lex_state = 0}, + [774] = {.lex_state = 0, .external_lex_state = 30}, + [775] = {.lex_state = 0, .external_lex_state = 30}, + [776] = {.lex_state = 0, .external_lex_state = 30}, + [777] = {.lex_state = 0, .external_lex_state = 21}, + [778] = {.lex_state = 0, .external_lex_state = 22}, + [779] = {.lex_state = 0, .external_lex_state = 23}, + [780] = {.lex_state = 0, .external_lex_state = 24}, + [781] = {.lex_state = 0, .external_lex_state = 29}, + [782] = {.lex_state = 0, .external_lex_state = 22}, + [783] = {.lex_state = 0, .external_lex_state = 23}, + [784] = {.lex_state = 0, .external_lex_state = 25}, + [785] = {.lex_state = 0, .external_lex_state = 26}, + [786] = {.lex_state = 0, .external_lex_state = 27}, + [787] = {.lex_state = 0, .external_lex_state = 28}, + [788] = {.lex_state = 0, .external_lex_state = 29}, + [789] = {.lex_state = 0}, [790] = {.lex_state = 0, .external_lex_state = 30}, - [791] = {.lex_state = 5}, - [792] = {.lex_state = 0, .external_lex_state = 25}, - [793] = {.lex_state = 0, .external_lex_state = 26}, - [794] = {.lex_state = 0, .external_lex_state = 27}, - [795] = {.lex_state = 0, .external_lex_state = 30}, + [791] = {.lex_state = 0, .external_lex_state = 30}, + [792] = {.lex_state = 0, .external_lex_state = 30}, + [793] = {.lex_state = 0, .external_lex_state = 21}, + [794] = {.lex_state = 5}, + [795] = {.lex_state = 0, .external_lex_state = 22}, [796] = {.lex_state = 0, .external_lex_state = 23}, - [797] = {.lex_state = 0, .external_lex_state = 22}, - [798] = {.lex_state = 0, .external_lex_state = 23}, - [799] = {.lex_state = 0, .external_lex_state = 29}, - [800] = {.lex_state = 0, .external_lex_state = 21}, - [801] = {.lex_state = 0, .external_lex_state = 21}, - [802] = {.lex_state = 0, .external_lex_state = 21}, + [797] = {.lex_state = 0, .external_lex_state = 24}, + [798] = {.lex_state = 0, .external_lex_state = 22}, + [799] = {.lex_state = 0, .external_lex_state = 23}, + [800] = {.lex_state = 0, .external_lex_state = 25}, + [801] = {.lex_state = 0, .external_lex_state = 26}, + [802] = {.lex_state = 0, .external_lex_state = 27}, [803] = {.lex_state = 0, .external_lex_state = 28}, - [804] = {.lex_state = 0, .external_lex_state = 27}, - [805] = {.lex_state = 0, .external_lex_state = 26}, - [806] = {.lex_state = 0, .external_lex_state = 25}, - [807] = {.lex_state = 0, .external_lex_state = 22}, - [808] = {.lex_state = 0, .external_lex_state = 23}, - [809] = {.lex_state = 0, .external_lex_state = 24}, - [810] = {.lex_state = 0, .external_lex_state = 25}, - [811] = {.lex_state = 0, .external_lex_state = 26}, - [812] = {.lex_state = 0, .external_lex_state = 27}, - [813] = {.lex_state = 0, .external_lex_state = 28}, - [814] = {.lex_state = 0, .external_lex_state = 24}, - [815] = {.lex_state = 0, .external_lex_state = 21}, - [816] = {.lex_state = 0, .external_lex_state = 21}, - [817] = {.lex_state = 0, .external_lex_state = 21}, - [818] = {.lex_state = 0, .external_lex_state = 29}, - [819] = {.lex_state = 0, .external_lex_state = 23}, - [820] = {.lex_state = 0, .external_lex_state = 28}, - [821] = {.lex_state = 0, .external_lex_state = 22}, - [822] = {.lex_state = 0, .external_lex_state = 22}, - [823] = {.lex_state = 0, .external_lex_state = 23}, - [824] = {.lex_state = 0, .external_lex_state = 30}, - [825] = {.lex_state = 0, .external_lex_state = 21}, - [826] = {.lex_state = 0, .external_lex_state = 21}, - [827] = {.lex_state = 0, .external_lex_state = 21}, - [828] = {.lex_state = 0, .external_lex_state = 30}, + [804] = {.lex_state = 0, .external_lex_state = 29}, + [805] = {.lex_state = 0}, + [806] = {.lex_state = 0, .external_lex_state = 30}, + [807] = {.lex_state = 0, .external_lex_state = 30}, + [808] = {.lex_state = 0, .external_lex_state = 30}, + [809] = {.lex_state = 0, .external_lex_state = 21}, + [810] = {.lex_state = 0, .external_lex_state = 22}, + [811] = {.lex_state = 0, .external_lex_state = 23}, + [812] = {.lex_state = 0, .external_lex_state = 24}, + [813] = {.lex_state = 5}, + [814] = {.lex_state = 0}, + [815] = {.lex_state = 0, .external_lex_state = 22}, + [816] = {.lex_state = 0, .external_lex_state = 23}, + [817] = {.lex_state = 0, .external_lex_state = 25}, + [818] = {.lex_state = 5}, + [819] = {.lex_state = 0, .external_lex_state = 26}, + [820] = {.lex_state = 5}, + [821] = {.lex_state = 0, .external_lex_state = 27}, + [822] = {.lex_state = 0, .external_lex_state = 28}, + [823] = {.lex_state = 0, .external_lex_state = 29}, + [824] = {.lex_state = 0}, + [825] = {.lex_state = 0, .external_lex_state = 30}, + [826] = {.lex_state = 0, .external_lex_state = 30}, + [827] = {.lex_state = 0, .external_lex_state = 30}, + [828] = {.lex_state = 5}, [829] = {.lex_state = 0, .external_lex_state = 23}, - [830] = {.lex_state = 0, .external_lex_state = 22}, - [831] = {.lex_state = 0, .external_lex_state = 29}, - [832] = {.lex_state = 0, .external_lex_state = 29}, - [833] = {.lex_state = 0, .external_lex_state = 21}, - [834] = {.lex_state = 0, .external_lex_state = 21}, - [835] = {.lex_state = 0, .external_lex_state = 21}, - [836] = {.lex_state = 0, .external_lex_state = 28}, - [837] = {.lex_state = 0, .external_lex_state = 27}, - [838] = {.lex_state = 0, .external_lex_state = 26}, - [839] = {.lex_state = 0, .external_lex_state = 25}, - [840] = {.lex_state = 0, .external_lex_state = 24}, - [841] = {.lex_state = 0, .external_lex_state = 22}, - [842] = {.lex_state = 0, .external_lex_state = 23}, - [843] = {.lex_state = 0, .external_lex_state = 24}, - [844] = {.lex_state = 0, .external_lex_state = 25}, - [845] = {.lex_state = 0, .external_lex_state = 26}, - [846] = {.lex_state = 0, .external_lex_state = 27}, - [847] = {.lex_state = 0, .external_lex_state = 28}, - [848] = {.lex_state = 0, .external_lex_state = 23}, - [849] = {.lex_state = 0, .external_lex_state = 21}, - [850] = {.lex_state = 0, .external_lex_state = 21}, - [851] = {.lex_state = 0, .external_lex_state = 21}, + [830] = {.lex_state = 5}, + [831] = {.lex_state = 0, .external_lex_state = 30}, + [832] = {.lex_state = 0, .external_lex_state = 22}, + [833] = {.lex_state = 0, .external_lex_state = 23}, + [834] = {.lex_state = 0, .external_lex_state = 24}, + [835] = {.lex_state = 5}, + [836] = {.lex_state = 5}, + [837] = {.lex_state = 0, .external_lex_state = 30}, + [838] = {.lex_state = 5}, + [839] = {.lex_state = 5}, + [840] = {.lex_state = 0, .external_lex_state = 22}, + [841] = {.lex_state = 0, .external_lex_state = 23}, + [842] = {.lex_state = 5}, + [843] = {.lex_state = 5}, + [844] = {.lex_state = 0, .external_lex_state = 22}, + [845] = {.lex_state = 0, .external_lex_state = 23}, + [846] = {.lex_state = 0, .external_lex_state = 25}, + [847] = {.lex_state = 0, .external_lex_state = 26}, + [848] = {.lex_state = 0, .external_lex_state = 27}, + [849] = {.lex_state = 5}, + [850] = {.lex_state = 0, .external_lex_state = 28}, + [851] = {.lex_state = 5}, [852] = {.lex_state = 0, .external_lex_state = 29}, - [853] = {.lex_state = 0, .external_lex_state = 22}, - [854] = {.lex_state = 0, .external_lex_state = 22}, - [855] = {.lex_state = 0, .external_lex_state = 23}, - [856] = {.lex_state = 0, .external_lex_state = 22}, - [857] = {.lex_state = 0, .external_lex_state = 23}, - [858] = {.lex_state = 0, .external_lex_state = 30}, - [859] = {.lex_state = 0, .external_lex_state = 30}, - [860] = {.lex_state = 0, .external_lex_state = 31}, - [861] = {.lex_state = 5}, - [862] = {.lex_state = 0, .external_lex_state = 32}, - [863] = {.lex_state = 0, .external_lex_state = 33}, - [864] = {.lex_state = 0, .external_lex_state = 34}, - [865] = {.lex_state = 0, .external_lex_state = 35}, - [866] = {.lex_state = 0, .external_lex_state = 36}, - [867] = {.lex_state = 0, .external_lex_state = 37}, - [868] = {.lex_state = 0, .external_lex_state = 38}, - [869] = {.lex_state = 0, .external_lex_state = 39}, - [870] = {.lex_state = 0}, - [871] = {.lex_state = 0, .external_lex_state = 31}, - [872] = {.lex_state = 0, .external_lex_state = 40}, - [873] = {.lex_state = 0, .external_lex_state = 31}, - [874] = {.lex_state = 5}, - [875] = {.lex_state = 5}, - [876] = {.lex_state = 0}, - [877] = {.lex_state = 5}, - [878] = {.lex_state = 0, .external_lex_state = 32}, - [879] = {.lex_state = 0, .external_lex_state = 40}, - [880] = {.lex_state = 0, .external_lex_state = 33}, - [881] = {.lex_state = 0}, - [882] = {.lex_state = 0}, - [883] = {.lex_state = 0, .external_lex_state = 39}, - [884] = {.lex_state = 0, .external_lex_state = 38}, - [885] = {.lex_state = 0, .external_lex_state = 37}, - [886] = {.lex_state = 0, .external_lex_state = 36}, - [887] = {.lex_state = 0, .external_lex_state = 31}, - [888] = {.lex_state = 0, .external_lex_state = 35}, - [889] = {.lex_state = 0, .external_lex_state = 31}, - [890] = {.lex_state = 0, .external_lex_state = 34}, + [853] = {.lex_state = 0}, + [854] = {.lex_state = 0, .external_lex_state = 30}, + [855] = {.lex_state = 0, .external_lex_state = 30}, + [856] = {.lex_state = 0, .external_lex_state = 30}, + [857] = {.lex_state = 0, .external_lex_state = 21}, + [858] = {.lex_state = 5}, + [859] = {.lex_state = 5}, + [860] = {.lex_state = 0, .external_lex_state = 22}, + [861] = {.lex_state = 0, .external_lex_state = 23}, + [862] = {.lex_state = 0, .external_lex_state = 24}, + [863] = {.lex_state = 5}, + [864] = {.lex_state = 5}, + [865] = {.lex_state = 5}, + [866] = {.lex_state = 5}, + [867] = {.lex_state = 0, .external_lex_state = 22}, + [868] = {.lex_state = 0, .external_lex_state = 24}, + [869] = {.lex_state = 0, .external_lex_state = 22}, + [870] = {.lex_state = 0, .external_lex_state = 23}, + [871] = {.lex_state = 5}, + [872] = {.lex_state = 0, .external_lex_state = 25}, + [873] = {.lex_state = 0, .external_lex_state = 26}, + [874] = {.lex_state = 0, .external_lex_state = 27}, + [875] = {.lex_state = 0, .external_lex_state = 28}, + [876] = {.lex_state = 0, .external_lex_state = 29}, + [877] = {.lex_state = 0}, + [878] = {.lex_state = 0, .external_lex_state = 30}, + [879] = {.lex_state = 0, .external_lex_state = 30}, + [880] = {.lex_state = 0, .external_lex_state = 30}, + [881] = {.lex_state = 0, .external_lex_state = 21}, + [882] = {.lex_state = 0, .external_lex_state = 31}, + [883] = {.lex_state = 0, .external_lex_state = 32}, + [884] = {.lex_state = 5}, + [885] = {.lex_state = 5}, + [886] = {.lex_state = 0, .external_lex_state = 33}, + [887] = {.lex_state = 0}, + [888] = {.lex_state = 0, .external_lex_state = 31}, + [889] = {.lex_state = 0, .external_lex_state = 34}, + [890] = {.lex_state = 0, .external_lex_state = 35}, [891] = {.lex_state = 0, .external_lex_state = 33}, - [892] = {.lex_state = 0, .external_lex_state = 32}, - [893] = {.lex_state = 5}, - [894] = {.lex_state = 0, .external_lex_state = 31}, - [895] = {.lex_state = 5}, - [896] = {.lex_state = 0, .external_lex_state = 32}, - [897] = {.lex_state = 0, .external_lex_state = 33}, - [898] = {.lex_state = 0, .external_lex_state = 34}, - [899] = {.lex_state = 0, .external_lex_state = 35}, - [900] = {.lex_state = 0, .external_lex_state = 36}, - [901] = {.lex_state = 0, .external_lex_state = 37}, - [902] = {.lex_state = 0, .external_lex_state = 38}, - [903] = {.lex_state = 0, .external_lex_state = 39}, - [904] = {.lex_state = 0}, - [905] = {.lex_state = 0, .external_lex_state = 31}, - [906] = {.lex_state = 0, .external_lex_state = 40}, - [907] = {.lex_state = 0, .external_lex_state = 34}, - [908] = {.lex_state = 5}, - [909] = {.lex_state = 0, .external_lex_state = 31}, - [910] = {.lex_state = 0, .external_lex_state = 36}, - [911] = {.lex_state = 0}, - [912] = {.lex_state = 5}, - [913] = {.lex_state = 0, .external_lex_state = 37}, - [914] = {.lex_state = 0, .external_lex_state = 40}, - [915] = {.lex_state = 0, .external_lex_state = 38}, - [916] = {.lex_state = 0}, - [917] = {.lex_state = 0}, - [918] = {.lex_state = 0, .external_lex_state = 39}, - [919] = {.lex_state = 0, .external_lex_state = 38}, - [920] = {.lex_state = 0, .external_lex_state = 37}, + [892] = {.lex_state = 5}, + [893] = {.lex_state = 0, .external_lex_state = 36}, + [894] = {.lex_state = 0, .external_lex_state = 37}, + [895] = {.lex_state = 0, .external_lex_state = 38}, + [896] = {.lex_state = 0, .external_lex_state = 39}, + [897] = {.lex_state = 0, .external_lex_state = 31}, + [898] = {.lex_state = 0, .external_lex_state = 40}, + [899] = {.lex_state = 0, .external_lex_state = 33}, + [900] = {.lex_state = 0, .external_lex_state = 41}, + [901] = {.lex_state = 5}, + [902] = {.lex_state = 0, .external_lex_state = 33}, + [903] = {.lex_state = 0, .external_lex_state = 42}, + [904] = {.lex_state = 0, .external_lex_state = 33}, + [905] = {.lex_state = 5}, + [906] = {.lex_state = 0, .external_lex_state = 36}, + [907] = {.lex_state = 0, .external_lex_state = 37}, + [908] = {.lex_state = 0, .external_lex_state = 38}, + [909] = {.lex_state = 0, .external_lex_state = 39}, + [910] = {.lex_state = 0, .external_lex_state = 31}, + [911] = {.lex_state = 0, .external_lex_state = 41}, + [912] = {.lex_state = 0, .external_lex_state = 43}, + [913] = {.lex_state = 0, .external_lex_state = 35}, + [914] = {.lex_state = 0}, + [915] = {.lex_state = 0, .external_lex_state = 44}, + [916] = {.lex_state = 0, .external_lex_state = 34}, + [917] = {.lex_state = 0, .external_lex_state = 45}, + [918] = {.lex_state = 5}, + [919] = {.lex_state = 0, .external_lex_state = 43}, + [920] = {.lex_state = 0, .external_lex_state = 35}, [921] = {.lex_state = 0}, - [922] = {.lex_state = 0, .external_lex_state = 36}, - [923] = {.lex_state = 0, .external_lex_state = 31}, - [924] = {.lex_state = 0, .external_lex_state = 35}, - [925] = {.lex_state = 0, .external_lex_state = 34}, - [926] = {.lex_state = 0, .external_lex_state = 33}, - [927] = {.lex_state = 0, .external_lex_state = 32}, - [928] = {.lex_state = 0, .external_lex_state = 31}, - [929] = {.lex_state = 5}, - [930] = {.lex_state = 0, .external_lex_state = 32}, - [931] = {.lex_state = 0, .external_lex_state = 33}, - [932] = {.lex_state = 0, .external_lex_state = 34}, - [933] = {.lex_state = 0, .external_lex_state = 35}, - [934] = {.lex_state = 0, .external_lex_state = 36}, - [935] = {.lex_state = 0, .external_lex_state = 37}, - [936] = {.lex_state = 0, .external_lex_state = 38}, - [937] = {.lex_state = 0, .external_lex_state = 39}, - [938] = {.lex_state = 0}, + [922] = {.lex_state = 0}, + [923] = {.lex_state = 0, .external_lex_state = 33}, + [924] = {.lex_state = 5}, + [925] = {.lex_state = 0, .external_lex_state = 36}, + [926] = {.lex_state = 0, .external_lex_state = 37}, + [927] = {.lex_state = 0, .external_lex_state = 38}, + [928] = {.lex_state = 0, .external_lex_state = 39}, + [929] = {.lex_state = 0, .external_lex_state = 31}, + [930] = {.lex_state = 0, .external_lex_state = 41}, + [931] = {.lex_state = 0, .external_lex_state = 34}, + [932] = {.lex_state = 0, .external_lex_state = 46}, + [933] = {.lex_state = 0, .external_lex_state = 33}, + [934] = {.lex_state = 0, .external_lex_state = 43}, + [935] = {.lex_state = 0, .external_lex_state = 35}, + [936] = {.lex_state = 0}, + [937] = {.lex_state = 0, .external_lex_state = 47}, + [938] = {.lex_state = 0, .external_lex_state = 33}, [939] = {.lex_state = 5}, - [940] = {.lex_state = 0, .external_lex_state = 40}, - [941] = {.lex_state = 0, .external_lex_state = 31}, - [942] = {.lex_state = 5}, - [943] = {.lex_state = 0, .external_lex_state = 41}, - [944] = {.lex_state = 0, .external_lex_state = 42}, + [940] = {.lex_state = 0, .external_lex_state = 36}, + [941] = {.lex_state = 0, .external_lex_state = 37}, + [942] = {.lex_state = 0, .external_lex_state = 38}, + [943] = {.lex_state = 0, .external_lex_state = 39}, + [944] = {.lex_state = 0, .external_lex_state = 31}, [945] = {.lex_state = 0, .external_lex_state = 41}, - [946] = {.lex_state = 0, .external_lex_state = 39}, - [947] = {.lex_state = 0, .external_lex_state = 31}, + [946] = {.lex_state = 0, .external_lex_state = 43}, + [947] = {.lex_state = 0, .external_lex_state = 35}, [948] = {.lex_state = 0}, - [949] = {.lex_state = 0, .external_lex_state = 40}, - [950] = {.lex_state = 5}, - [951] = {.lex_state = 0, .external_lex_state = 40}, - [952] = {.lex_state = 0}, - [953] = {.lex_state = 0, .external_lex_state = 39}, - [954] = {.lex_state = 0}, - [955] = {.lex_state = 0, .external_lex_state = 38}, - [956] = {.lex_state = 151}, - [957] = {.lex_state = 14}, - [958] = {.lex_state = 0, .external_lex_state = 39}, - [959] = {.lex_state = 15}, - [960] = {.lex_state = 0, .external_lex_state = 41}, - [961] = {.lex_state = 0, .external_lex_state = 42}, - [962] = {.lex_state = 0, .external_lex_state = 41}, - [963] = {.lex_state = 5}, - [964] = {.lex_state = 0, .external_lex_state = 37}, - [965] = {.lex_state = 0, .external_lex_state = 36}, - [966] = {.lex_state = 0, .external_lex_state = 35}, - [967] = {.lex_state = 0, .external_lex_state = 34}, - [968] = {.lex_state = 0, .external_lex_state = 33}, - [969] = {.lex_state = 0, .external_lex_state = 32}, - [970] = {.lex_state = 5}, - [971] = {.lex_state = 0, .external_lex_state = 35}, - [972] = {.lex_state = 0, .external_lex_state = 31}, - [973] = {.lex_state = 14}, + [949] = {.lex_state = 5}, + [950] = {.lex_state = 0, .external_lex_state = 34}, + [951] = {.lex_state = 0, .external_lex_state = 48}, + [952] = {.lex_state = 5}, + [953] = {.lex_state = 0, .external_lex_state = 49}, + [954] = {.lex_state = 0, .external_lex_state = 50}, + [955] = {.lex_state = 0, .external_lex_state = 49}, + [956] = {.lex_state = 0, .external_lex_state = 34}, + [957] = {.lex_state = 0, .external_lex_state = 34}, + [958] = {.lex_state = 0, .external_lex_state = 48}, + [959] = {.lex_state = 0, .external_lex_state = 49}, + [960] = {.lex_state = 0, .external_lex_state = 48}, + [961] = {.lex_state = 0, .external_lex_state = 49}, + [962] = {.lex_state = 5}, + [963] = {.lex_state = 15}, + [964] = {.lex_state = 5}, + [965] = {.lex_state = 0, .external_lex_state = 41}, + [966] = {.lex_state = 156}, + [967] = {.lex_state = 15}, + [968] = {.lex_state = 0, .external_lex_state = 35}, + [969] = {.lex_state = 16}, + [970] = {.lex_state = 0, .external_lex_state = 49}, + [971] = {.lex_state = 0, .external_lex_state = 50}, + [972] = {.lex_state = 0, .external_lex_state = 49}, + [973] = {.lex_state = 5}, [974] = {.lex_state = 0, .external_lex_state = 39}, - [975] = {.lex_state = 15}, - [976] = {.lex_state = 0, .external_lex_state = 41}, - [977] = {.lex_state = 0, .external_lex_state = 42}, - [978] = {.lex_state = 0, .external_lex_state = 41}, - [979] = {.lex_state = 0, .external_lex_state = 40}, - [980] = {.lex_state = 0}, - [981] = {.lex_state = 0, .external_lex_state = 39}, - [982] = {.lex_state = 0, .external_lex_state = 38}, - [983] = {.lex_state = 0, .external_lex_state = 31}, - [984] = {.lex_state = 0, .external_lex_state = 37}, - [985] = {.lex_state = 0, .external_lex_state = 36}, - [986] = {.lex_state = 0, .external_lex_state = 35}, - [987] = {.lex_state = 0, .external_lex_state = 34}, - [988] = {.lex_state = 0}, - [989] = {.lex_state = 14}, - [990] = {.lex_state = 0, .external_lex_state = 39}, - [991] = {.lex_state = 15}, - [992] = {.lex_state = 0, .external_lex_state = 41}, - [993] = {.lex_state = 0, .external_lex_state = 42}, - [994] = {.lex_state = 0, .external_lex_state = 41}, - [995] = {.lex_state = 0, .external_lex_state = 33}, - [996] = {.lex_state = 0, .external_lex_state = 32}, - [997] = {.lex_state = 5}, - [998] = {.lex_state = 0, .external_lex_state = 31}, - [999] = {.lex_state = 0, .external_lex_state = 31}, - [1000] = {.lex_state = 0}, - [1001] = {.lex_state = 5}, - [1002] = {.lex_state = 16}, - [1003] = {.lex_state = 0, .external_lex_state = 40}, - [1004] = {.lex_state = 5}, - [1005] = {.lex_state = 14}, - [1006] = {.lex_state = 0, .external_lex_state = 39}, - [1007] = {.lex_state = 15}, - [1008] = {.lex_state = 0, .external_lex_state = 41}, - [1009] = {.lex_state = 0, .external_lex_state = 42}, - [1010] = {.lex_state = 0, .external_lex_state = 41}, - [1011] = {.lex_state = 0}, - [1012] = {.lex_state = 5}, - [1013] = {.lex_state = 0, .external_lex_state = 39}, - [1014] = {.lex_state = 5}, - [1015] = {.lex_state = 5}, - [1016] = {.lex_state = 0, .external_lex_state = 40}, - [1017] = {.lex_state = 5}, - [1018] = {.lex_state = 0, .external_lex_state = 38}, - [1019] = {.lex_state = 0, .external_lex_state = 37}, - [1020] = {.lex_state = 5}, - [1021] = {.lex_state = 14}, - [1022] = {.lex_state = 0, .external_lex_state = 39}, - [1023] = {.lex_state = 15}, - [1024] = {.lex_state = 0, .external_lex_state = 41}, - [1025] = {.lex_state = 0, .external_lex_state = 42}, - [1026] = {.lex_state = 0, .external_lex_state = 41}, - [1027] = {.lex_state = 0, .external_lex_state = 36}, - [1028] = {.lex_state = 15}, - [1029] = {.lex_state = 0, .external_lex_state = 39}, - [1030] = {.lex_state = 0, .external_lex_state = 39}, - [1031] = {.lex_state = 14}, - [1032] = {.lex_state = 0}, - [1033] = {.lex_state = 0, .external_lex_state = 39}, - [1034] = {.lex_state = 0, .external_lex_state = 39}, - [1035] = {.lex_state = 0, .external_lex_state = 35}, - [1036] = {.lex_state = 0, .external_lex_state = 38}, - [1037] = {.lex_state = 14}, - [1038] = {.lex_state = 0, .external_lex_state = 39}, - [1039] = {.lex_state = 15}, - [1040] = {.lex_state = 0, .external_lex_state = 41}, - [1041] = {.lex_state = 0, .external_lex_state = 42}, - [1042] = {.lex_state = 0, .external_lex_state = 41}, - [1043] = {.lex_state = 0, .external_lex_state = 34}, - [1044] = {.lex_state = 0, .external_lex_state = 37}, - [1045] = {.lex_state = 0, .external_lex_state = 36}, - [1046] = {.lex_state = 0, .external_lex_state = 35}, - [1047] = {.lex_state = 0, .external_lex_state = 34}, - [1048] = {.lex_state = 0, .external_lex_state = 33}, - [1049] = {.lex_state = 0, .external_lex_state = 32}, - [1050] = {.lex_state = 5}, - [1051] = {.lex_state = 0, .external_lex_state = 33}, - [1052] = {.lex_state = 151}, - [1053] = {.lex_state = 14}, - [1054] = {.lex_state = 0, .external_lex_state = 39}, - [1055] = {.lex_state = 15}, - [1056] = {.lex_state = 0, .external_lex_state = 41}, - [1057] = {.lex_state = 0, .external_lex_state = 42}, - [1058] = {.lex_state = 0, .external_lex_state = 41}, - [1059] = {.lex_state = 0, .external_lex_state = 32}, - [1060] = {.lex_state = 0, .external_lex_state = 31}, - [1061] = {.lex_state = 0, .external_lex_state = 43}, + [975] = {.lex_state = 0, .external_lex_state = 33}, + [976] = {.lex_state = 5}, + [977] = {.lex_state = 0, .external_lex_state = 36}, + [978] = {.lex_state = 0, .external_lex_state = 37}, + [979] = {.lex_state = 0, .external_lex_state = 38}, + [980] = {.lex_state = 0, .external_lex_state = 39}, + [981] = {.lex_state = 0, .external_lex_state = 31}, + [982] = {.lex_state = 5}, + [983] = {.lex_state = 15}, + [984] = {.lex_state = 0, .external_lex_state = 35}, + [985] = {.lex_state = 16}, + [986] = {.lex_state = 0, .external_lex_state = 49}, + [987] = {.lex_state = 0, .external_lex_state = 50}, + [988] = {.lex_state = 0, .external_lex_state = 49}, + [989] = {.lex_state = 0, .external_lex_state = 41}, + [990] = {.lex_state = 5}, + [991] = {.lex_state = 0, .external_lex_state = 33}, + [992] = {.lex_state = 0, .external_lex_state = 33}, + [993] = {.lex_state = 0, .external_lex_state = 43}, + [994] = {.lex_state = 0, .external_lex_state = 35}, + [995] = {.lex_state = 0, .external_lex_state = 35}, + [996] = {.lex_state = 0, .external_lex_state = 33}, + [997] = {.lex_state = 0, .external_lex_state = 33}, + [998] = {.lex_state = 0, .external_lex_state = 33}, + [999] = {.lex_state = 15}, + [1000] = {.lex_state = 0, .external_lex_state = 35}, + [1001] = {.lex_state = 16}, + [1002] = {.lex_state = 0, .external_lex_state = 49}, + [1003] = {.lex_state = 0, .external_lex_state = 50}, + [1004] = {.lex_state = 0, .external_lex_state = 49}, + [1005] = {.lex_state = 0, .external_lex_state = 33}, + [1006] = {.lex_state = 5}, + [1007] = {.lex_state = 0, .external_lex_state = 36}, + [1008] = {.lex_state = 5}, + [1009] = {.lex_state = 0, .external_lex_state = 37}, + [1010] = {.lex_state = 0, .external_lex_state = 38}, + [1011] = {.lex_state = 0, .external_lex_state = 39}, + [1012] = {.lex_state = 0, .external_lex_state = 31}, + [1013] = {.lex_state = 0, .external_lex_state = 36}, + [1014] = {.lex_state = 0, .external_lex_state = 41}, + [1015] = {.lex_state = 15}, + [1016] = {.lex_state = 0, .external_lex_state = 35}, + [1017] = {.lex_state = 16}, + [1018] = {.lex_state = 0, .external_lex_state = 49}, + [1019] = {.lex_state = 0, .external_lex_state = 50}, + [1020] = {.lex_state = 0, .external_lex_state = 49}, + [1021] = {.lex_state = 0, .external_lex_state = 37}, + [1022] = {.lex_state = 0, .external_lex_state = 43}, + [1023] = {.lex_state = 0, .external_lex_state = 35}, + [1024] = {.lex_state = 0}, + [1025] = {.lex_state = 0, .external_lex_state = 38}, + [1026] = {.lex_state = 17}, + [1027] = {.lex_state = 0, .external_lex_state = 34}, + [1028] = {.lex_state = 0, .external_lex_state = 39}, + [1029] = {.lex_state = 0, .external_lex_state = 31}, + [1030] = {.lex_state = 5}, + [1031] = {.lex_state = 15}, + [1032] = {.lex_state = 0, .external_lex_state = 35}, + [1033] = {.lex_state = 16}, + [1034] = {.lex_state = 0, .external_lex_state = 49}, + [1035] = {.lex_state = 0, .external_lex_state = 50}, + [1036] = {.lex_state = 0, .external_lex_state = 49}, + [1037] = {.lex_state = 0, .external_lex_state = 41}, + [1038] = {.lex_state = 0, .external_lex_state = 33}, + [1039] = {.lex_state = 5}, + [1040] = {.lex_state = 0, .external_lex_state = 43}, + [1041] = {.lex_state = 0, .external_lex_state = 35}, + [1042] = {.lex_state = 0}, + [1043] = {.lex_state = 0, .external_lex_state = 38}, + [1044] = {.lex_state = 0, .external_lex_state = 34}, + [1045] = {.lex_state = 0, .external_lex_state = 43}, + [1046] = {.lex_state = 5}, + [1047] = {.lex_state = 15}, + [1048] = {.lex_state = 0, .external_lex_state = 35}, + [1049] = {.lex_state = 16}, + [1050] = {.lex_state = 0, .external_lex_state = 49}, + [1051] = {.lex_state = 0, .external_lex_state = 50}, + [1052] = {.lex_state = 0, .external_lex_state = 49}, + [1053] = {.lex_state = 0, .external_lex_state = 35}, + [1054] = {.lex_state = 0, .external_lex_state = 35}, + [1055] = {.lex_state = 0, .external_lex_state = 33}, + [1056] = {.lex_state = 5}, + [1057] = {.lex_state = 0, .external_lex_state = 36}, + [1058] = {.lex_state = 0, .external_lex_state = 37}, + [1059] = {.lex_state = 0, .external_lex_state = 38}, + [1060] = {.lex_state = 156}, + [1061] = {.lex_state = 0, .external_lex_state = 39}, [1062] = {.lex_state = 5}, - [1063] = {.lex_state = 0, .external_lex_state = 31}, - [1064] = {.lex_state = 0, .external_lex_state = 41}, - [1065] = {.lex_state = 0, .external_lex_state = 42}, - [1066] = {.lex_state = 0, .external_lex_state = 31}, - [1067] = {.lex_state = 0}, - [1068] = {.lex_state = 5}, - [1069] = {.lex_state = 14}, - [1070] = {.lex_state = 0, .external_lex_state = 39}, - [1071] = {.lex_state = 15}, - [1072] = {.lex_state = 0, .external_lex_state = 41}, - [1073] = {.lex_state = 0, .external_lex_state = 42}, - [1074] = {.lex_state = 0, .external_lex_state = 41}, - [1075] = {.lex_state = 0, .external_lex_state = 40}, - [1076] = {.lex_state = 0, .external_lex_state = 41}, - [1077] = {.lex_state = 0, .external_lex_state = 31}, - [1078] = {.lex_state = 0, .external_lex_state = 44}, - [1079] = {.lex_state = 0, .external_lex_state = 44}, - [1080] = {.lex_state = 0, .external_lex_state = 44}, - [1081] = {.lex_state = 0, .external_lex_state = 45}, - [1082] = {.lex_state = 0, .external_lex_state = 46}, - [1083] = {.lex_state = 0}, - [1084] = {.lex_state = 0, .external_lex_state = 47}, - [1085] = {.lex_state = 14}, - [1086] = {.lex_state = 0, .external_lex_state = 39}, - [1087] = {.lex_state = 15}, - [1088] = {.lex_state = 0, .external_lex_state = 41}, - [1089] = {.lex_state = 0, .external_lex_state = 42}, + [1063] = {.lex_state = 15}, + [1064] = {.lex_state = 0, .external_lex_state = 35}, + [1065] = {.lex_state = 16}, + [1066] = {.lex_state = 0, .external_lex_state = 49}, + [1067] = {.lex_state = 0, .external_lex_state = 50}, + [1068] = {.lex_state = 0, .external_lex_state = 49}, + [1069] = {.lex_state = 0, .external_lex_state = 33}, + [1070] = {.lex_state = 0, .external_lex_state = 34}, + [1071] = {.lex_state = 0, .external_lex_state = 41}, + [1072] = {.lex_state = 0, .external_lex_state = 43}, + [1073] = {.lex_state = 0, .external_lex_state = 35}, + [1074] = {.lex_state = 5}, + [1075] = {.lex_state = 0, .external_lex_state = 33}, + [1076] = {.lex_state = 5}, + [1077] = {.lex_state = 0}, + [1078] = {.lex_state = 0, .external_lex_state = 36}, + [1079] = {.lex_state = 15}, + [1080] = {.lex_state = 0, .external_lex_state = 35}, + [1081] = {.lex_state = 16}, + [1082] = {.lex_state = 0, .external_lex_state = 49}, + [1083] = {.lex_state = 0, .external_lex_state = 50}, + [1084] = {.lex_state = 0, .external_lex_state = 49}, + [1085] = {.lex_state = 0}, + [1086] = {.lex_state = 0, .external_lex_state = 37}, + [1087] = {.lex_state = 0, .external_lex_state = 38}, + [1088] = {.lex_state = 0, .external_lex_state = 39}, + [1089] = {.lex_state = 0, .external_lex_state = 31}, [1090] = {.lex_state = 0, .external_lex_state = 41}, - [1091] = {.lex_state = 0, .external_lex_state = 39}, - [1092] = {.lex_state = 0, .external_lex_state = 48}, - [1093] = {.lex_state = 0, .external_lex_state = 49}, - [1094] = {.lex_state = 0, .external_lex_state = 50}, - [1095] = {.lex_state = 0, .external_lex_state = 51}, - [1096] = {.lex_state = 0}, - [1097] = {.lex_state = 0}, - [1098] = {.lex_state = 0, .external_lex_state = 38}, - [1099] = {.lex_state = 0, .external_lex_state = 37}, - [1100] = {.lex_state = 0, .external_lex_state = 36}, - [1101] = {.lex_state = 14}, - [1102] = {.lex_state = 0, .external_lex_state = 39}, - [1103] = {.lex_state = 15}, - [1104] = {.lex_state = 0, .external_lex_state = 51}, - [1105] = {.lex_state = 0, .external_lex_state = 50}, - [1106] = {.lex_state = 0, .external_lex_state = 49}, - [1107] = {.lex_state = 0, .external_lex_state = 48}, - [1108] = {.lex_state = 0, .external_lex_state = 47}, - [1109] = {.lex_state = 0, .external_lex_state = 46}, - [1110] = {.lex_state = 0, .external_lex_state = 45}, - [1111] = {.lex_state = 0, .external_lex_state = 44}, - [1112] = {.lex_state = 0, .external_lex_state = 43}, - [1113] = {.lex_state = 0, .external_lex_state = 35}, + [1091] = {.lex_state = 0, .external_lex_state = 43}, + [1092] = {.lex_state = 0, .external_lex_state = 35}, + [1093] = {.lex_state = 0, .external_lex_state = 33}, + [1094] = {.lex_state = 0}, + [1095] = {.lex_state = 15}, + [1096] = {.lex_state = 0, .external_lex_state = 35}, + [1097] = {.lex_state = 16}, + [1098] = {.lex_state = 0, .external_lex_state = 49}, + [1099] = {.lex_state = 0, .external_lex_state = 50}, + [1100] = {.lex_state = 0, .external_lex_state = 49}, + [1101] = {.lex_state = 0}, + [1102] = {.lex_state = 0, .external_lex_state = 36}, + [1103] = {.lex_state = 0, .external_lex_state = 34}, + [1104] = {.lex_state = 16}, + [1105] = {.lex_state = 5}, + [1106] = {.lex_state = 0, .external_lex_state = 34}, + [1107] = {.lex_state = 0, .external_lex_state = 50}, + [1108] = {.lex_state = 0, .external_lex_state = 33}, + [1109] = {.lex_state = 5}, + [1110] = {.lex_state = 0, .external_lex_state = 36}, + [1111] = {.lex_state = 15}, + [1112] = {.lex_state = 0, .external_lex_state = 35}, + [1113] = {.lex_state = 16}, [1114] = {.lex_state = 0, .external_lex_state = 51}, - [1115] = {.lex_state = 0, .external_lex_state = 50}, - [1116] = {.lex_state = 0, .external_lex_state = 49}, - [1117] = {.lex_state = 0, .external_lex_state = 48}, - [1118] = {.lex_state = 0, .external_lex_state = 47}, - [1119] = {.lex_state = 0, .external_lex_state = 46}, - [1120] = {.lex_state = 0, .external_lex_state = 45}, - [1121] = {.lex_state = 0, .external_lex_state = 44}, - [1122] = {.lex_state = 0, .external_lex_state = 43}, - [1123] = {.lex_state = 0, .external_lex_state = 34}, + [1115] = {.lex_state = 0, .external_lex_state = 32}, + [1116] = {.lex_state = 0, .external_lex_state = 40}, + [1117] = {.lex_state = 0, .external_lex_state = 42}, + [1118] = {.lex_state = 0, .external_lex_state = 44}, + [1119] = {.lex_state = 0, .external_lex_state = 45}, + [1120] = {.lex_state = 0, .external_lex_state = 47}, + [1121] = {.lex_state = 0, .external_lex_state = 48}, + [1122] = {.lex_state = 0, .external_lex_state = 46}, + [1123] = {.lex_state = 0, .external_lex_state = 37}, [1124] = {.lex_state = 0, .external_lex_state = 51}, - [1125] = {.lex_state = 0, .external_lex_state = 50}, - [1126] = {.lex_state = 0, .external_lex_state = 49}, - [1127] = {.lex_state = 0, .external_lex_state = 48}, - [1128] = {.lex_state = 0, .external_lex_state = 47}, - [1129] = {.lex_state = 0, .external_lex_state = 46}, - [1130] = {.lex_state = 0, .external_lex_state = 45}, - [1131] = {.lex_state = 0, .external_lex_state = 44}, - [1132] = {.lex_state = 0, .external_lex_state = 43}, - [1133] = {.lex_state = 0}, + [1125] = {.lex_state = 0, .external_lex_state = 32}, + [1126] = {.lex_state = 0, .external_lex_state = 40}, + [1127] = {.lex_state = 0, .external_lex_state = 42}, + [1128] = {.lex_state = 0, .external_lex_state = 44}, + [1129] = {.lex_state = 0, .external_lex_state = 45}, + [1130] = {.lex_state = 0, .external_lex_state = 47}, + [1131] = {.lex_state = 0, .external_lex_state = 48}, + [1132] = {.lex_state = 0, .external_lex_state = 46}, + [1133] = {.lex_state = 0, .external_lex_state = 38}, [1134] = {.lex_state = 0, .external_lex_state = 51}, - [1135] = {.lex_state = 0, .external_lex_state = 50}, - [1136] = {.lex_state = 0, .external_lex_state = 49}, - [1137] = {.lex_state = 0, .external_lex_state = 48}, - [1138] = {.lex_state = 0, .external_lex_state = 47}, - [1139] = {.lex_state = 0, .external_lex_state = 46}, - [1140] = {.lex_state = 0, .external_lex_state = 45}, - [1141] = {.lex_state = 0, .external_lex_state = 44}, - [1142] = {.lex_state = 0, .external_lex_state = 43}, - [1143] = {.lex_state = 0, .external_lex_state = 33}, + [1135] = {.lex_state = 0, .external_lex_state = 32}, + [1136] = {.lex_state = 0, .external_lex_state = 40}, + [1137] = {.lex_state = 0, .external_lex_state = 42}, + [1138] = {.lex_state = 0, .external_lex_state = 44}, + [1139] = {.lex_state = 0, .external_lex_state = 45}, + [1140] = {.lex_state = 0, .external_lex_state = 47}, + [1141] = {.lex_state = 0, .external_lex_state = 48}, + [1142] = {.lex_state = 0, .external_lex_state = 46}, + [1143] = {.lex_state = 0, .external_lex_state = 39}, [1144] = {.lex_state = 0, .external_lex_state = 51}, - [1145] = {.lex_state = 0, .external_lex_state = 50}, - [1146] = {.lex_state = 0, .external_lex_state = 49}, - [1147] = {.lex_state = 0, .external_lex_state = 48}, - [1148] = {.lex_state = 0, .external_lex_state = 47}, - [1149] = {.lex_state = 0, .external_lex_state = 46}, - [1150] = {.lex_state = 0, .external_lex_state = 45}, - [1151] = {.lex_state = 0, .external_lex_state = 44}, - [1152] = {.lex_state = 0, .external_lex_state = 43}, - [1153] = {.lex_state = 0, .external_lex_state = 32}, + [1145] = {.lex_state = 0, .external_lex_state = 32}, + [1146] = {.lex_state = 0, .external_lex_state = 40}, + [1147] = {.lex_state = 0, .external_lex_state = 42}, + [1148] = {.lex_state = 0, .external_lex_state = 44}, + [1149] = {.lex_state = 0, .external_lex_state = 45}, + [1150] = {.lex_state = 0, .external_lex_state = 47}, + [1151] = {.lex_state = 0, .external_lex_state = 48}, + [1152] = {.lex_state = 0, .external_lex_state = 46}, + [1153] = {.lex_state = 0, .external_lex_state = 31}, [1154] = {.lex_state = 0, .external_lex_state = 51}, - [1155] = {.lex_state = 0, .external_lex_state = 50}, - [1156] = {.lex_state = 0, .external_lex_state = 49}, - [1157] = {.lex_state = 0, .external_lex_state = 48}, - [1158] = {.lex_state = 0, .external_lex_state = 47}, - [1159] = {.lex_state = 0, .external_lex_state = 46}, - [1160] = {.lex_state = 0, .external_lex_state = 45}, - [1161] = {.lex_state = 0, .external_lex_state = 44}, - [1162] = {.lex_state = 0, .external_lex_state = 43}, - [1163] = {.lex_state = 5}, + [1155] = {.lex_state = 0, .external_lex_state = 32}, + [1156] = {.lex_state = 0, .external_lex_state = 40}, + [1157] = {.lex_state = 0, .external_lex_state = 42}, + [1158] = {.lex_state = 0, .external_lex_state = 44}, + [1159] = {.lex_state = 0, .external_lex_state = 45}, + [1160] = {.lex_state = 0, .external_lex_state = 47}, + [1161] = {.lex_state = 0, .external_lex_state = 48}, + [1162] = {.lex_state = 0, .external_lex_state = 46}, + [1163] = {.lex_state = 0, .external_lex_state = 41}, [1164] = {.lex_state = 0, .external_lex_state = 51}, - [1165] = {.lex_state = 0, .external_lex_state = 50}, - [1166] = {.lex_state = 0, .external_lex_state = 49}, - [1167] = {.lex_state = 0, .external_lex_state = 48}, - [1168] = {.lex_state = 0, .external_lex_state = 47}, - [1169] = {.lex_state = 0, .external_lex_state = 46}, - [1170] = {.lex_state = 0, .external_lex_state = 45}, - [1171] = {.lex_state = 0, .external_lex_state = 44}, - [1172] = {.lex_state = 0, .external_lex_state = 43}, - [1173] = {.lex_state = 0, .external_lex_state = 31}, + [1165] = {.lex_state = 0, .external_lex_state = 32}, + [1166] = {.lex_state = 0, .external_lex_state = 40}, + [1167] = {.lex_state = 0, .external_lex_state = 42}, + [1168] = {.lex_state = 0, .external_lex_state = 44}, + [1169] = {.lex_state = 0, .external_lex_state = 45}, + [1170] = {.lex_state = 0, .external_lex_state = 47}, + [1171] = {.lex_state = 0, .external_lex_state = 48}, + [1172] = {.lex_state = 0, .external_lex_state = 46}, + [1173] = {.lex_state = 0, .external_lex_state = 43}, [1174] = {.lex_state = 0, .external_lex_state = 51}, - [1175] = {.lex_state = 0, .external_lex_state = 50}, - [1176] = {.lex_state = 0, .external_lex_state = 49}, - [1177] = {.lex_state = 0, .external_lex_state = 48}, - [1178] = {.lex_state = 0, .external_lex_state = 47}, - [1179] = {.lex_state = 0, .external_lex_state = 46}, - [1180] = {.lex_state = 0, .external_lex_state = 45}, - [1181] = {.lex_state = 0, .external_lex_state = 44}, - [1182] = {.lex_state = 0, .external_lex_state = 43}, - [1183] = {.lex_state = 0, .external_lex_state = 31}, + [1175] = {.lex_state = 0, .external_lex_state = 32}, + [1176] = {.lex_state = 0, .external_lex_state = 40}, + [1177] = {.lex_state = 0, .external_lex_state = 42}, + [1178] = {.lex_state = 0, .external_lex_state = 44}, + [1179] = {.lex_state = 0, .external_lex_state = 45}, + [1180] = {.lex_state = 0, .external_lex_state = 47}, + [1181] = {.lex_state = 0, .external_lex_state = 48}, + [1182] = {.lex_state = 0, .external_lex_state = 46}, + [1183] = {.lex_state = 0, .external_lex_state = 35}, [1184] = {.lex_state = 0, .external_lex_state = 51}, - [1185] = {.lex_state = 0, .external_lex_state = 50}, - [1186] = {.lex_state = 0, .external_lex_state = 49}, - [1187] = {.lex_state = 0, .external_lex_state = 48}, - [1188] = {.lex_state = 0, .external_lex_state = 47}, - [1189] = {.lex_state = 0, .external_lex_state = 46}, - [1190] = {.lex_state = 0, .external_lex_state = 45}, - [1191] = {.lex_state = 0, .external_lex_state = 44}, - [1192] = {.lex_state = 0, .external_lex_state = 43}, + [1185] = {.lex_state = 0, .external_lex_state = 32}, + [1186] = {.lex_state = 0, .external_lex_state = 40}, + [1187] = {.lex_state = 0, .external_lex_state = 42}, + [1188] = {.lex_state = 0, .external_lex_state = 44}, + [1189] = {.lex_state = 0, .external_lex_state = 45}, + [1190] = {.lex_state = 0, .external_lex_state = 47}, + [1191] = {.lex_state = 0, .external_lex_state = 48}, + [1192] = {.lex_state = 0, .external_lex_state = 46}, [1193] = {.lex_state = 0}, [1194] = {.lex_state = 0, .external_lex_state = 51}, - [1195] = {.lex_state = 0, .external_lex_state = 50}, - [1196] = {.lex_state = 0, .external_lex_state = 49}, - [1197] = {.lex_state = 0, .external_lex_state = 48}, - [1198] = {.lex_state = 0, .external_lex_state = 47}, - [1199] = {.lex_state = 0, .external_lex_state = 46}, - [1200] = {.lex_state = 0, .external_lex_state = 45}, - [1201] = {.lex_state = 0, .external_lex_state = 44}, - [1202] = {.lex_state = 0, .external_lex_state = 43}, - [1203] = {.lex_state = 5}, - [1204] = {.lex_state = 0, .external_lex_state = 44}, - [1205] = {.lex_state = 0, .external_lex_state = 44}, - [1206] = {.lex_state = 0, .external_lex_state = 44}, - [1207] = {.lex_state = 0, .external_lex_state = 44}, + [1195] = {.lex_state = 0, .external_lex_state = 32}, + [1196] = {.lex_state = 0, .external_lex_state = 40}, + [1197] = {.lex_state = 0, .external_lex_state = 42}, + [1198] = {.lex_state = 0, .external_lex_state = 44}, + [1199] = {.lex_state = 0, .external_lex_state = 45}, + [1200] = {.lex_state = 0, .external_lex_state = 47}, + [1201] = {.lex_state = 0, .external_lex_state = 48}, + [1202] = {.lex_state = 0, .external_lex_state = 46}, + [1203] = {.lex_state = 0, .external_lex_state = 51}, + [1204] = {.lex_state = 0, .external_lex_state = 51}, + [1205] = {.lex_state = 0, .external_lex_state = 32}, + [1206] = {.lex_state = 0, .external_lex_state = 40}, + [1207] = {.lex_state = 0, .external_lex_state = 42}, [1208] = {.lex_state = 0, .external_lex_state = 44}, - [1209] = {.lex_state = 0, .external_lex_state = 44}, - [1210] = {.lex_state = 0, .external_lex_state = 44}, - [1211] = {.lex_state = 0, .external_lex_state = 44}, - [1212] = {.lex_state = 0, .external_lex_state = 44}, - [1213] = {.lex_state = 0, .external_lex_state = 44}, + [1209] = {.lex_state = 0, .external_lex_state = 45}, + [1210] = {.lex_state = 0, .external_lex_state = 47}, + [1211] = {.lex_state = 0, .external_lex_state = 48}, + [1212] = {.lex_state = 0, .external_lex_state = 46}, + [1213] = {.lex_state = 0, .external_lex_state = 37}, + [1214] = {.lex_state = 0, .external_lex_state = 48}, + [1215] = {.lex_state = 0, .external_lex_state = 48}, + [1216] = {.lex_state = 0, .external_lex_state = 48}, + [1217] = {.lex_state = 0, .external_lex_state = 48}, + [1218] = {.lex_state = 0, .external_lex_state = 48}, + [1219] = {.lex_state = 0, .external_lex_state = 48}, + [1220] = {.lex_state = 0, .external_lex_state = 48}, + [1221] = {.lex_state = 0, .external_lex_state = 48}, + [1222] = {.lex_state = 0, .external_lex_state = 48}, + [1223] = {.lex_state = 0, .external_lex_state = 48}, + [1224] = {.lex_state = 0, .external_lex_state = 33}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -5162,7 +5264,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(1), [sym_symbol] = ACTIONS(1), [anon_sym_LBRACK_CARET] = ACTIONS(1), + [anon_sym_LBRACK_RBRACK] = ACTIONS(1), [anon_sym_BANG_LBRACK] = ACTIONS(1), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(1), [anon_sym_LBRACK] = ACTIONS(1), [anon_sym_LBRACE] = ACTIONS(1), [anon_sym_RBRACK] = ACTIONS(1), @@ -5178,7 +5282,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_XXX] = ACTIONS(1), [sym_fixme] = ACTIONS(1), [sym__whitespace1] = ACTIONS(1), - [sym__newline] = ACTIONS(1), + [anon_sym_LF] = ACTIONS(1), [aux_sym__text_token1] = ACTIONS(1), [anon_sym_DOT] = ACTIONS(1), [anon_sym_EQ] = ACTIONS(1), @@ -5205,58 +5309,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__parens_span_end] = ACTIONS(1), [sym__curly_bracket_span_mark_begin] = ACTIONS(1), [sym__curly_bracket_span_end] = ACTIONS(1), - [sym__square_bracket_span_begin] = ACTIONS(1), + [sym__square_bracket_span_mark_begin] = ACTIONS(1), [sym__square_bracket_span_end] = ACTIONS(1), [sym__in_fallback] = ACTIONS(1), [sym__non_whitespace_check] = ACTIONS(1), [sym__error] = ACTIONS(1), }, [1] = { - [sym_inline] = STATE(1097), - [sym__inline] = STATE(1096), - [sym__element] = STATE(39), - [sym_emphasis] = STATE(141), - [sym_emphasis_begin] = STATE(1095), - [sym_strong] = STATE(141), - [sym_strong_begin] = STATE(1094), - [sym_superscript] = STATE(141), - [sym_superscript_begin] = STATE(1093), - [sym_subscript] = STATE(141), - [sym_subscript_begin] = STATE(1092), - [sym_highlighted] = STATE(141), - [sym_highlighted_begin] = STATE(1084), - [sym_insert] = STATE(141), - [sym_insert_begin] = STATE(1082), - [sym_delete] = STATE(141), - [sym_delete_begin] = STATE(1081), - [sym_hard_line_break] = STATE(151), - [sym__smart_punctuation] = STATE(151), - [sym_autolink] = STATE(151), - [sym_footnote_reference] = STATE(141), - [sym_footnote_marker_begin] = STATE(1080), - [sym__image] = STATE(141), - [sym_full_reference_image] = STATE(141), - [sym_collapsed_reference_image] = STATE(141), - [sym_inline_image] = STATE(141), - [sym_image_description] = STATE(666), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(141), - [sym_full_reference_link] = STATE(141), - [sym_collapsed_reference_link] = STATE(141), - [sym_inline_link] = STATE(141), - [sym_link_text] = STATE(652), - [sym_span] = STATE(39), - [sym__bracketed_text_begin] = STATE(1078), - [sym__comment_with_spaces] = STATE(151), - [sym_raw_inline] = STATE(151), - [sym_math] = STATE(151), - [sym_verbatim] = STATE(151), - [sym__todo_highlights] = STATE(151), - [sym_todo] = STATE(151), - [sym_note] = STATE(151), - [sym__symbol_fallback] = STATE(151), - [aux_sym__text] = STATE(125), - [aux_sym__inline_repeat1] = STATE(39), + [sym_inline] = STATE(1077), + [sym__inline] = STATE(1085), + [sym__element] = STATE(5), + [sym_emphasis] = STATE(146), + [sym_emphasis_begin] = STATE(1203), + [sym_strong] = STATE(146), + [sym_strong_begin] = STATE(883), + [sym_superscript] = STATE(146), + [sym_superscript_begin] = STATE(898), + [sym_subscript] = STATE(146), + [sym_subscript_begin] = STATE(903), + [sym_highlighted] = STATE(146), + [sym_highlighted_begin] = STATE(915), + [sym_insert] = STATE(146), + [sym_insert_begin] = STATE(917), + [sym_delete] = STATE(146), + [sym_delete_begin] = STATE(937), + [sym_hard_line_break] = STATE(144), + [sym__smart_punctuation] = STATE(144), + [sym_autolink] = STATE(144), + [sym_footnote_reference] = STATE(146), + [sym_footnote_marker_begin] = STATE(951), + [sym__image] = STATE(146), + [sym_full_reference_image] = STATE(146), + [sym_collapsed_reference_image] = STATE(146), + [sym_inline_image] = STATE(146), + [sym_image_description] = STATE(681), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(146), + [sym_full_reference_link] = STATE(146), + [sym_collapsed_reference_link] = STATE(146), + [sym_inline_link] = STATE(146), + [sym_link_text] = STATE(657), + [sym_span] = STATE(5), + [sym__bracketed_text_begin] = STATE(960), + [sym__comment_with_spaces] = STATE(144), + [sym_raw_inline] = STATE(144), + [sym_math] = STATE(144), + [sym_verbatim] = STATE(144), + [sym__todo_highlights] = STATE(144), + [sym_todo] = STATE(144), + [sym_note] = STATE(144), + [sym__symbol_fallback] = STATE(144), + [sym__newline] = STATE(5), + [aux_sym__text] = STATE(124), + [aux_sym__inline_repeat1] = STATE(5), [anon_sym_LBRACE_] = ACTIONS(3), [anon_sym__] = ACTIONS(5), [anon_sym_LBRACE_STAR] = ACTIONS(7), @@ -5278,1895 +5383,302 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_symbol] = ACTIONS(23), [anon_sym_LBRACK_CARET] = ACTIONS(29), [anon_sym_BANG_LBRACK] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(37), - [anon_sym_TODO] = ACTIONS(39), - [anon_sym_WIP] = ACTIONS(39), - [anon_sym_NOTE] = ACTIONS(41), - [anon_sym_INFO] = ACTIONS(41), - [anon_sym_XXX] = ACTIONS(41), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(39), + [anon_sym_TODO] = ACTIONS(41), + [anon_sym_WIP] = ACTIONS(41), + [anon_sym_NOTE] = ACTIONS(43), + [anon_sym_INFO] = ACTIONS(43), + [anon_sym_XXX] = ACTIONS(43), [sym_fixme] = ACTIONS(23), - [sym__whitespace1] = ACTIONS(43), - [sym__newline] = ACTIONS(45), - [aux_sym__text_token1] = ACTIONS(47), - [sym__verbatim_begin] = ACTIONS(49), + [sym__whitespace1] = ACTIONS(45), + [anon_sym_LF] = ACTIONS(47), + [aux_sym__text_token1] = ACTIONS(49), + [sym__verbatim_begin] = ACTIONS(51), }, [2] = { - [sym__inline] = STATE(1030), - [sym__element] = STATE(58), - [sym_emphasis] = STATE(148), - [sym_emphasis_begin] = STATE(1184), - [sym_strong] = STATE(148), - [sym_strong_begin] = STATE(1185), - [sym_superscript] = STATE(148), - [sym_superscript_begin] = STATE(1186), - [sym_subscript] = STATE(148), - [sym_subscript_begin] = STATE(1187), - [sym_highlighted] = STATE(148), - [sym_highlighted_begin] = STATE(1188), - [sym_insert] = STATE(148), - [sym_insert_begin] = STATE(1189), - [sym_delete] = STATE(148), - [sym_delete_begin] = STATE(1190), - [sym_hard_line_break] = STATE(139), - [sym__smart_punctuation] = STATE(139), - [sym_autolink] = STATE(139), - [sym_footnote_reference] = STATE(148), - [sym_footnote_marker_begin] = STATE(1191), - [sym__image] = STATE(148), - [sym_full_reference_image] = STATE(148), - [sym_collapsed_reference_image] = STATE(148), - [sym_inline_image] = STATE(148), - [sym_image_description] = STATE(648), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(148), - [sym_full_reference_link] = STATE(148), - [sym_collapsed_reference_link] = STATE(148), - [sym_inline_link] = STATE(148), - [sym_link_text] = STATE(647), - [sym_span] = STATE(58), - [sym__bracketed_text_begin] = STATE(1212), - [sym__comment_with_spaces] = STATE(139), - [sym_raw_inline] = STATE(139), - [sym_math] = STATE(139), - [sym_verbatim] = STATE(139), - [sym__todo_highlights] = STATE(139), - [sym_todo] = STATE(139), - [sym_note] = STATE(139), - [sym__symbol_fallback] = STATE(139), - [aux_sym__text] = STATE(123), - [aux_sym__inline_repeat1] = STATE(58), - [anon_sym_LBRACE_] = ACTIONS(51), - [anon_sym__] = ACTIONS(53), - [anon_sym_LBRACE_STAR] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(57), - [anon_sym_LBRACE_CARET] = ACTIONS(59), - [anon_sym_CARET] = ACTIONS(59), - [anon_sym_LBRACE_TILDE] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(61), - [anon_sym_LBRACE_EQ] = ACTIONS(63), - [anon_sym_LBRACE_PLUS] = ACTIONS(65), - [anon_sym_LBRACE_DASH] = ACTIONS(67), - [anon_sym_BSLASH] = ACTIONS(69), - [sym_quotation_marks] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(71), - [sym_em_dash] = ACTIONS(71), - [sym_en_dash] = ACTIONS(73), - [sym_backslash_escape] = ACTIONS(73), - [anon_sym_LT] = ACTIONS(75), - [sym_symbol] = ACTIONS(71), - [anon_sym_LBRACK_CARET] = ACTIONS(77), - [anon_sym_BANG_LBRACK] = ACTIONS(79), - [anon_sym_LBRACK] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_TODO] = ACTIONS(87), - [anon_sym_WIP] = ACTIONS(87), - [anon_sym_NOTE] = ACTIONS(89), - [anon_sym_INFO] = ACTIONS(89), - [anon_sym_XXX] = ACTIONS(89), - [sym_fixme] = ACTIONS(71), - [sym__whitespace1] = ACTIONS(91), - [sym__newline] = ACTIONS(93), - [aux_sym__text_token1] = ACTIONS(95), - [sym__verbatim_begin] = ACTIONS(97), - [sym__square_bracket_span_end] = ACTIONS(99), - }, - [3] = { - [sym__inline] = STATE(1019), - [sym__element] = STATE(22), - [sym_emphasis] = STATE(147), - [sym_emphasis_begin] = STATE(1154), - [sym_strong] = STATE(147), - [sym_strong_begin] = STATE(1155), - [sym_superscript] = STATE(147), - [sym_superscript_begin] = STATE(1156), - [sym_subscript] = STATE(147), - [sym_subscript_begin] = STATE(1157), - [sym_highlighted] = STATE(147), - [sym_highlighted_begin] = STATE(1158), - [sym_insert] = STATE(147), - [sym_insert_begin] = STATE(1159), - [sym_delete] = STATE(147), - [sym_delete_begin] = STATE(1160), - [sym_hard_line_break] = STATE(145), - [sym__smart_punctuation] = STATE(145), - [sym_autolink] = STATE(145), - [sym_footnote_reference] = STATE(147), - [sym_footnote_marker_begin] = STATE(1161), - [sym__image] = STATE(147), - [sym_full_reference_image] = STATE(147), - [sym_collapsed_reference_image] = STATE(147), - [sym_inline_image] = STATE(147), - [sym_image_description] = STATE(665), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(147), - [sym_full_reference_link] = STATE(147), - [sym_collapsed_reference_link] = STATE(147), - [sym_inline_link] = STATE(147), - [sym_link_text] = STATE(664), - [sym_span] = STATE(22), - [sym__bracketed_text_begin] = STATE(1209), - [sym__comment_with_spaces] = STATE(145), - [sym_raw_inline] = STATE(145), - [sym_math] = STATE(145), - [sym_verbatim] = STATE(145), - [sym__todo_highlights] = STATE(145), - [sym_todo] = STATE(145), - [sym_note] = STATE(145), - [sym__symbol_fallback] = STATE(145), - [aux_sym__text] = STATE(124), - [aux_sym__inline_repeat1] = STATE(22), - [anon_sym_LBRACE_] = ACTIONS(101), - [anon_sym__] = ACTIONS(103), - [anon_sym_LBRACE_STAR] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_LBRACE_CARET] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(109), - [anon_sym_LBRACE_TILDE] = ACTIONS(111), - [anon_sym_TILDE] = ACTIONS(111), - [anon_sym_LBRACE_EQ] = ACTIONS(113), - [anon_sym_LBRACE_PLUS] = ACTIONS(115), - [anon_sym_LBRACE_DASH] = ACTIONS(117), - [anon_sym_BSLASH] = ACTIONS(119), - [sym_quotation_marks] = ACTIONS(121), - [sym_ellipsis] = ACTIONS(121), - [sym_em_dash] = ACTIONS(121), - [sym_en_dash] = ACTIONS(123), - [sym_backslash_escape] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(125), - [sym_symbol] = ACTIONS(121), - [anon_sym_LBRACK_CARET] = ACTIONS(127), - [anon_sym_BANG_LBRACK] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_TODO] = ACTIONS(137), - [anon_sym_WIP] = ACTIONS(137), - [anon_sym_NOTE] = ACTIONS(139), - [anon_sym_INFO] = ACTIONS(139), - [anon_sym_XXX] = ACTIONS(139), - [sym_fixme] = ACTIONS(121), - [sym__whitespace1] = ACTIONS(141), - [sym__newline] = ACTIONS(143), - [aux_sym__text_token1] = ACTIONS(145), - [sym__verbatim_begin] = ACTIONS(147), - }, - [4] = { - [sym__inline] = STATE(1044), - [sym__element] = STATE(22), - [sym_emphasis] = STATE(147), - [sym_emphasis_begin] = STATE(1154), - [sym_strong] = STATE(147), - [sym_strong_begin] = STATE(1155), - [sym_superscript] = STATE(147), - [sym_superscript_begin] = STATE(1156), - [sym_subscript] = STATE(147), - [sym_subscript_begin] = STATE(1157), - [sym_highlighted] = STATE(147), - [sym_highlighted_begin] = STATE(1158), - [sym_insert] = STATE(147), - [sym_insert_begin] = STATE(1159), - [sym_delete] = STATE(147), - [sym_delete_begin] = STATE(1160), - [sym_hard_line_break] = STATE(145), - [sym__smart_punctuation] = STATE(145), - [sym_autolink] = STATE(145), - [sym_footnote_reference] = STATE(147), - [sym_footnote_marker_begin] = STATE(1161), - [sym__image] = STATE(147), - [sym_full_reference_image] = STATE(147), - [sym_collapsed_reference_image] = STATE(147), - [sym_inline_image] = STATE(147), - [sym_image_description] = STATE(665), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(147), - [sym_full_reference_link] = STATE(147), - [sym_collapsed_reference_link] = STATE(147), - [sym_inline_link] = STATE(147), - [sym_link_text] = STATE(664), - [sym_span] = STATE(22), - [sym__bracketed_text_begin] = STATE(1209), - [sym__comment_with_spaces] = STATE(145), - [sym_raw_inline] = STATE(145), - [sym_math] = STATE(145), - [sym_verbatim] = STATE(145), - [sym__todo_highlights] = STATE(145), - [sym_todo] = STATE(145), - [sym_note] = STATE(145), - [sym__symbol_fallback] = STATE(145), - [aux_sym__text] = STATE(124), - [aux_sym__inline_repeat1] = STATE(22), - [anon_sym_LBRACE_] = ACTIONS(101), - [anon_sym__] = ACTIONS(103), - [anon_sym_LBRACE_STAR] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_LBRACE_CARET] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(109), - [anon_sym_LBRACE_TILDE] = ACTIONS(111), - [anon_sym_TILDE] = ACTIONS(111), - [anon_sym_LBRACE_EQ] = ACTIONS(113), - [anon_sym_LBRACE_PLUS] = ACTIONS(115), - [anon_sym_LBRACE_DASH] = ACTIONS(117), - [anon_sym_BSLASH] = ACTIONS(119), - [sym_quotation_marks] = ACTIONS(121), - [sym_ellipsis] = ACTIONS(121), - [sym_em_dash] = ACTIONS(121), - [sym_en_dash] = ACTIONS(123), - [sym_backslash_escape] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(125), - [sym_symbol] = ACTIONS(121), - [anon_sym_LBRACK_CARET] = ACTIONS(127), - [anon_sym_BANG_LBRACK] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_TODO] = ACTIONS(137), - [anon_sym_WIP] = ACTIONS(137), - [anon_sym_NOTE] = ACTIONS(139), - [anon_sym_INFO] = ACTIONS(139), - [anon_sym_XXX] = ACTIONS(139), - [sym_fixme] = ACTIONS(121), - [sym__whitespace1] = ACTIONS(141), - [sym__newline] = ACTIONS(143), - [aux_sym__text_token1] = ACTIONS(145), - [sym__verbatim_begin] = ACTIONS(147), - }, - [5] = { - [sym__inline] = STATE(1070), - [sym__element] = STATE(58), - [sym_emphasis] = STATE(148), - [sym_emphasis_begin] = STATE(1184), - [sym_strong] = STATE(148), - [sym_strong_begin] = STATE(1185), - [sym_superscript] = STATE(148), - [sym_superscript_begin] = STATE(1186), - [sym_subscript] = STATE(148), - [sym_subscript_begin] = STATE(1187), - [sym_highlighted] = STATE(148), - [sym_highlighted_begin] = STATE(1188), - [sym_insert] = STATE(148), - [sym_insert_begin] = STATE(1189), - [sym_delete] = STATE(148), - [sym_delete_begin] = STATE(1190), - [sym_hard_line_break] = STATE(139), - [sym__smart_punctuation] = STATE(139), - [sym_autolink] = STATE(139), - [sym_footnote_reference] = STATE(148), - [sym_footnote_marker_begin] = STATE(1191), - [sym__image] = STATE(148), - [sym_full_reference_image] = STATE(148), - [sym_collapsed_reference_image] = STATE(148), - [sym_inline_image] = STATE(148), - [sym_image_description] = STATE(648), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(148), - [sym_full_reference_link] = STATE(148), - [sym_collapsed_reference_link] = STATE(148), - [sym_inline_link] = STATE(148), - [sym_link_text] = STATE(647), - [sym_span] = STATE(58), - [sym__bracketed_text_begin] = STATE(1212), - [sym__comment_with_spaces] = STATE(139), - [sym_raw_inline] = STATE(139), - [sym_math] = STATE(139), - [sym_verbatim] = STATE(139), - [sym__todo_highlights] = STATE(139), - [sym_todo] = STATE(139), - [sym_note] = STATE(139), - [sym__symbol_fallback] = STATE(139), - [aux_sym__text] = STATE(123), - [aux_sym__inline_repeat1] = STATE(58), - [anon_sym_LBRACE_] = ACTIONS(51), - [anon_sym__] = ACTIONS(53), - [anon_sym_LBRACE_STAR] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(57), - [anon_sym_LBRACE_CARET] = ACTIONS(59), - [anon_sym_CARET] = ACTIONS(59), - [anon_sym_LBRACE_TILDE] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(61), - [anon_sym_LBRACE_EQ] = ACTIONS(63), - [anon_sym_LBRACE_PLUS] = ACTIONS(65), - [anon_sym_LBRACE_DASH] = ACTIONS(67), - [anon_sym_BSLASH] = ACTIONS(69), - [sym_quotation_marks] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(71), - [sym_em_dash] = ACTIONS(71), - [sym_en_dash] = ACTIONS(73), - [sym_backslash_escape] = ACTIONS(73), - [anon_sym_LT] = ACTIONS(75), - [sym_symbol] = ACTIONS(71), - [anon_sym_LBRACK_CARET] = ACTIONS(77), - [anon_sym_BANG_LBRACK] = ACTIONS(79), - [anon_sym_LBRACK] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_TODO] = ACTIONS(87), - [anon_sym_WIP] = ACTIONS(87), - [anon_sym_NOTE] = ACTIONS(89), - [anon_sym_INFO] = ACTIONS(89), - [anon_sym_XXX] = ACTIONS(89), - [sym_fixme] = ACTIONS(71), - [sym__whitespace1] = ACTIONS(91), - [sym__newline] = ACTIONS(93), - [aux_sym__text_token1] = ACTIONS(95), - [sym__verbatim_begin] = ACTIONS(97), - }, - [6] = { - [sym__element] = STATE(6), - [sym_emphasis] = STATE(136), - [sym_emphasis_begin] = STATE(1134), - [sym_strong] = STATE(136), - [sym_strong_begin] = STATE(1135), - [sym_superscript] = STATE(136), - [sym_superscript_begin] = STATE(1136), - [sym_subscript] = STATE(136), - [sym_subscript_begin] = STATE(1137), - [sym_highlighted] = STATE(136), - [sym_highlighted_begin] = STATE(1138), - [sym_insert] = STATE(136), - [sym_insert_begin] = STATE(1139), - [sym_delete] = STATE(136), - [sym_delete_begin] = STATE(1140), - [sym_hard_line_break] = STATE(134), - [sym__smart_punctuation] = STATE(134), - [sym_autolink] = STATE(134), - [sym_footnote_reference] = STATE(136), - [sym_footnote_marker_begin] = STATE(1141), - [sym__image] = STATE(136), - [sym_full_reference_image] = STATE(136), - [sym_collapsed_reference_image] = STATE(136), - [sym_inline_image] = STATE(136), - [sym_image_description] = STATE(670), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(136), - [sym_full_reference_link] = STATE(136), - [sym_collapsed_reference_link] = STATE(136), - [sym_inline_link] = STATE(136), - [sym_link_text] = STATE(671), - [sym_span] = STATE(6), - [sym__bracketed_text_begin] = STATE(1207), - [sym__comment_with_spaces] = STATE(134), - [sym_raw_inline] = STATE(134), - [sym_math] = STATE(134), - [sym_verbatim] = STATE(134), - [sym__todo_highlights] = STATE(134), - [sym_todo] = STATE(134), - [sym_note] = STATE(134), - [sym__symbol_fallback] = STATE(134), - [aux_sym__text] = STATE(129), - [aux_sym__inline_repeat1] = STATE(6), - [anon_sym_LBRACE_] = ACTIONS(149), - [anon_sym__] = ACTIONS(152), - [anon_sym_LBRACE_STAR] = ACTIONS(155), - [anon_sym_STAR] = ACTIONS(158), - [anon_sym_LBRACE_CARET] = ACTIONS(161), - [anon_sym_CARET] = ACTIONS(161), - [anon_sym_LBRACE_TILDE] = ACTIONS(164), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_LBRACE_EQ] = ACTIONS(167), - [anon_sym_LBRACE_PLUS] = ACTIONS(170), - [anon_sym_LBRACE_DASH] = ACTIONS(173), - [anon_sym_BSLASH] = ACTIONS(176), - [sym_quotation_marks] = ACTIONS(179), - [sym_ellipsis] = ACTIONS(179), - [sym_em_dash] = ACTIONS(179), - [sym_en_dash] = ACTIONS(182), - [sym_backslash_escape] = ACTIONS(182), - [anon_sym_LT] = ACTIONS(185), - [sym_symbol] = ACTIONS(179), - [anon_sym_LBRACK_CARET] = ACTIONS(188), - [anon_sym_BANG_LBRACK] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(194), - [anon_sym_LPAREN] = ACTIONS(197), - [anon_sym_DOLLAR] = ACTIONS(200), - [anon_sym_TODO] = ACTIONS(203), - [anon_sym_WIP] = ACTIONS(203), - [anon_sym_NOTE] = ACTIONS(206), - [anon_sym_INFO] = ACTIONS(206), - [anon_sym_XXX] = ACTIONS(206), - [sym_fixme] = ACTIONS(179), - [sym__whitespace1] = ACTIONS(209), - [sym__newline] = ACTIONS(212), - [aux_sym__text_token1] = ACTIONS(215), - [sym__verbatim_begin] = ACTIONS(218), - [sym_subscript_end] = ACTIONS(221), - }, - [7] = { - [sym__inline] = STATE(1054), - [sym__element] = STATE(58), - [sym_emphasis] = STATE(148), - [sym_emphasis_begin] = STATE(1184), - [sym_strong] = STATE(148), - [sym_strong_begin] = STATE(1185), - [sym_superscript] = STATE(148), - [sym_superscript_begin] = STATE(1186), - [sym_subscript] = STATE(148), - [sym_subscript_begin] = STATE(1187), - [sym_highlighted] = STATE(148), - [sym_highlighted_begin] = STATE(1188), - [sym_insert] = STATE(148), - [sym_insert_begin] = STATE(1189), - [sym_delete] = STATE(148), - [sym_delete_begin] = STATE(1190), - [sym_hard_line_break] = STATE(139), - [sym__smart_punctuation] = STATE(139), - [sym_autolink] = STATE(139), - [sym_footnote_reference] = STATE(148), - [sym_footnote_marker_begin] = STATE(1191), - [sym__image] = STATE(148), - [sym_full_reference_image] = STATE(148), - [sym_collapsed_reference_image] = STATE(148), - [sym_inline_image] = STATE(148), - [sym_image_description] = STATE(648), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(148), - [sym_full_reference_link] = STATE(148), - [sym_collapsed_reference_link] = STATE(148), - [sym_inline_link] = STATE(148), - [sym_link_text] = STATE(647), - [sym_span] = STATE(58), - [sym__bracketed_text_begin] = STATE(1212), - [sym__comment_with_spaces] = STATE(139), - [sym_raw_inline] = STATE(139), - [sym_math] = STATE(139), - [sym_verbatim] = STATE(139), - [sym__todo_highlights] = STATE(139), - [sym_todo] = STATE(139), - [sym_note] = STATE(139), - [sym__symbol_fallback] = STATE(139), - [aux_sym__text] = STATE(123), - [aux_sym__inline_repeat1] = STATE(58), - [anon_sym_LBRACE_] = ACTIONS(51), - [anon_sym__] = ACTIONS(53), - [anon_sym_LBRACE_STAR] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(57), - [anon_sym_LBRACE_CARET] = ACTIONS(59), - [anon_sym_CARET] = ACTIONS(59), - [anon_sym_LBRACE_TILDE] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(61), - [anon_sym_LBRACE_EQ] = ACTIONS(63), - [anon_sym_LBRACE_PLUS] = ACTIONS(65), - [anon_sym_LBRACE_DASH] = ACTIONS(67), - [anon_sym_BSLASH] = ACTIONS(69), - [sym_quotation_marks] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(71), - [sym_em_dash] = ACTIONS(71), - [sym_en_dash] = ACTIONS(73), - [sym_backslash_escape] = ACTIONS(73), - [anon_sym_LT] = ACTIONS(75), - [sym_symbol] = ACTIONS(71), - [anon_sym_LBRACK_CARET] = ACTIONS(77), - [anon_sym_BANG_LBRACK] = ACTIONS(79), - [anon_sym_LBRACK] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_TODO] = ACTIONS(87), - [anon_sym_WIP] = ACTIONS(87), - [anon_sym_NOTE] = ACTIONS(89), - [anon_sym_INFO] = ACTIONS(89), - [anon_sym_XXX] = ACTIONS(89), - [sym_fixme] = ACTIONS(71), - [sym__whitespace1] = ACTIONS(91), - [sym__newline] = ACTIONS(93), - [aux_sym__text_token1] = ACTIONS(95), - [sym__verbatim_begin] = ACTIONS(97), - }, - [8] = { - [sym__inline] = STATE(1038), - [sym__element] = STATE(58), - [sym_emphasis] = STATE(148), - [sym_emphasis_begin] = STATE(1184), - [sym_strong] = STATE(148), - [sym_strong_begin] = STATE(1185), - [sym_superscript] = STATE(148), - [sym_superscript_begin] = STATE(1186), - [sym_subscript] = STATE(148), - [sym_subscript_begin] = STATE(1187), - [sym_highlighted] = STATE(148), - [sym_highlighted_begin] = STATE(1188), - [sym_insert] = STATE(148), - [sym_insert_begin] = STATE(1189), - [sym_delete] = STATE(148), - [sym_delete_begin] = STATE(1190), - [sym_hard_line_break] = STATE(139), - [sym__smart_punctuation] = STATE(139), - [sym_autolink] = STATE(139), - [sym_footnote_reference] = STATE(148), - [sym_footnote_marker_begin] = STATE(1191), - [sym__image] = STATE(148), - [sym_full_reference_image] = STATE(148), - [sym_collapsed_reference_image] = STATE(148), - [sym_inline_image] = STATE(148), - [sym_image_description] = STATE(648), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(148), - [sym_full_reference_link] = STATE(148), - [sym_collapsed_reference_link] = STATE(148), - [sym_inline_link] = STATE(148), - [sym_link_text] = STATE(647), - [sym_span] = STATE(58), - [sym__bracketed_text_begin] = STATE(1212), - [sym__comment_with_spaces] = STATE(139), - [sym_raw_inline] = STATE(139), - [sym_math] = STATE(139), - [sym_verbatim] = STATE(139), - [sym__todo_highlights] = STATE(139), - [sym_todo] = STATE(139), - [sym_note] = STATE(139), - [sym__symbol_fallback] = STATE(139), - [aux_sym__text] = STATE(123), - [aux_sym__inline_repeat1] = STATE(58), - [anon_sym_LBRACE_] = ACTIONS(51), - [anon_sym__] = ACTIONS(53), - [anon_sym_LBRACE_STAR] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(57), - [anon_sym_LBRACE_CARET] = ACTIONS(59), - [anon_sym_CARET] = ACTIONS(59), - [anon_sym_LBRACE_TILDE] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(61), - [anon_sym_LBRACE_EQ] = ACTIONS(63), - [anon_sym_LBRACE_PLUS] = ACTIONS(65), - [anon_sym_LBRACE_DASH] = ACTIONS(67), - [anon_sym_BSLASH] = ACTIONS(69), - [sym_quotation_marks] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(71), - [sym_em_dash] = ACTIONS(71), - [sym_en_dash] = ACTIONS(73), - [sym_backslash_escape] = ACTIONS(73), - [anon_sym_LT] = ACTIONS(75), - [sym_symbol] = ACTIONS(71), - [anon_sym_LBRACK_CARET] = ACTIONS(77), - [anon_sym_BANG_LBRACK] = ACTIONS(79), - [anon_sym_LBRACK] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_TODO] = ACTIONS(87), - [anon_sym_WIP] = ACTIONS(87), - [anon_sym_NOTE] = ACTIONS(89), - [anon_sym_INFO] = ACTIONS(89), - [anon_sym_XXX] = ACTIONS(89), - [sym_fixme] = ACTIONS(71), - [sym__whitespace1] = ACTIONS(91), - [sym__newline] = ACTIONS(93), - [aux_sym__text_token1] = ACTIONS(95), - [sym__verbatim_begin] = ACTIONS(97), - }, - [9] = { - [sym__inline] = STATE(1022), - [sym__element] = STATE(58), - [sym_emphasis] = STATE(148), - [sym_emphasis_begin] = STATE(1184), - [sym_strong] = STATE(148), - [sym_strong_begin] = STATE(1185), - [sym_superscript] = STATE(148), - [sym_superscript_begin] = STATE(1186), - [sym_subscript] = STATE(148), - [sym_subscript_begin] = STATE(1187), - [sym_highlighted] = STATE(148), - [sym_highlighted_begin] = STATE(1188), - [sym_insert] = STATE(148), - [sym_insert_begin] = STATE(1189), - [sym_delete] = STATE(148), - [sym_delete_begin] = STATE(1190), - [sym_hard_line_break] = STATE(139), - [sym__smart_punctuation] = STATE(139), - [sym_autolink] = STATE(139), - [sym_footnote_reference] = STATE(148), - [sym_footnote_marker_begin] = STATE(1191), - [sym__image] = STATE(148), - [sym_full_reference_image] = STATE(148), - [sym_collapsed_reference_image] = STATE(148), - [sym_inline_image] = STATE(148), - [sym_image_description] = STATE(648), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(148), - [sym_full_reference_link] = STATE(148), - [sym_collapsed_reference_link] = STATE(148), - [sym_inline_link] = STATE(148), - [sym_link_text] = STATE(647), - [sym_span] = STATE(58), - [sym__bracketed_text_begin] = STATE(1212), - [sym__comment_with_spaces] = STATE(139), - [sym_raw_inline] = STATE(139), - [sym_math] = STATE(139), - [sym_verbatim] = STATE(139), - [sym__todo_highlights] = STATE(139), - [sym_todo] = STATE(139), - [sym_note] = STATE(139), - [sym__symbol_fallback] = STATE(139), - [aux_sym__text] = STATE(123), - [aux_sym__inline_repeat1] = STATE(58), - [anon_sym_LBRACE_] = ACTIONS(51), - [anon_sym__] = ACTIONS(53), - [anon_sym_LBRACE_STAR] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(57), - [anon_sym_LBRACE_CARET] = ACTIONS(59), - [anon_sym_CARET] = ACTIONS(59), - [anon_sym_LBRACE_TILDE] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(61), - [anon_sym_LBRACE_EQ] = ACTIONS(63), - [anon_sym_LBRACE_PLUS] = ACTIONS(65), - [anon_sym_LBRACE_DASH] = ACTIONS(67), - [anon_sym_BSLASH] = ACTIONS(69), - [sym_quotation_marks] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(71), - [sym_em_dash] = ACTIONS(71), - [sym_en_dash] = ACTIONS(73), - [sym_backslash_escape] = ACTIONS(73), - [anon_sym_LT] = ACTIONS(75), - [sym_symbol] = ACTIONS(71), - [anon_sym_LBRACK_CARET] = ACTIONS(77), - [anon_sym_BANG_LBRACK] = ACTIONS(79), - [anon_sym_LBRACK] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_TODO] = ACTIONS(87), - [anon_sym_WIP] = ACTIONS(87), - [anon_sym_NOTE] = ACTIONS(89), - [anon_sym_INFO] = ACTIONS(89), - [anon_sym_XXX] = ACTIONS(89), - [sym_fixme] = ACTIONS(71), - [sym__whitespace1] = ACTIONS(91), - [sym__newline] = ACTIONS(93), - [aux_sym__text_token1] = ACTIONS(95), - [sym__verbatim_begin] = ACTIONS(97), - }, - [10] = { - [sym__inline] = STATE(1006), - [sym__element] = STATE(58), - [sym_emphasis] = STATE(148), - [sym_emphasis_begin] = STATE(1184), - [sym_strong] = STATE(148), - [sym_strong_begin] = STATE(1185), - [sym_superscript] = STATE(148), - [sym_superscript_begin] = STATE(1186), - [sym_subscript] = STATE(148), - [sym_subscript_begin] = STATE(1187), - [sym_highlighted] = STATE(148), - [sym_highlighted_begin] = STATE(1188), - [sym_insert] = STATE(148), - [sym_insert_begin] = STATE(1189), - [sym_delete] = STATE(148), - [sym_delete_begin] = STATE(1190), - [sym_hard_line_break] = STATE(139), - [sym__smart_punctuation] = STATE(139), - [sym_autolink] = STATE(139), - [sym_footnote_reference] = STATE(148), - [sym_footnote_marker_begin] = STATE(1191), - [sym__image] = STATE(148), - [sym_full_reference_image] = STATE(148), - [sym_collapsed_reference_image] = STATE(148), - [sym_inline_image] = STATE(148), - [sym_image_description] = STATE(648), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(148), - [sym_full_reference_link] = STATE(148), - [sym_collapsed_reference_link] = STATE(148), - [sym_inline_link] = STATE(148), - [sym_link_text] = STATE(647), - [sym_span] = STATE(58), - [sym__bracketed_text_begin] = STATE(1212), - [sym__comment_with_spaces] = STATE(139), - [sym_raw_inline] = STATE(139), - [sym_math] = STATE(139), - [sym_verbatim] = STATE(139), - [sym__todo_highlights] = STATE(139), - [sym_todo] = STATE(139), - [sym_note] = STATE(139), - [sym__symbol_fallback] = STATE(139), - [aux_sym__text] = STATE(123), - [aux_sym__inline_repeat1] = STATE(58), - [anon_sym_LBRACE_] = ACTIONS(51), - [anon_sym__] = ACTIONS(53), - [anon_sym_LBRACE_STAR] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(57), - [anon_sym_LBRACE_CARET] = ACTIONS(59), - [anon_sym_CARET] = ACTIONS(59), - [anon_sym_LBRACE_TILDE] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(61), - [anon_sym_LBRACE_EQ] = ACTIONS(63), - [anon_sym_LBRACE_PLUS] = ACTIONS(65), - [anon_sym_LBRACE_DASH] = ACTIONS(67), - [anon_sym_BSLASH] = ACTIONS(69), - [sym_quotation_marks] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(71), - [sym_em_dash] = ACTIONS(71), - [sym_en_dash] = ACTIONS(73), - [sym_backslash_escape] = ACTIONS(73), - [anon_sym_LT] = ACTIONS(75), - [sym_symbol] = ACTIONS(71), - [anon_sym_LBRACK_CARET] = ACTIONS(77), - [anon_sym_BANG_LBRACK] = ACTIONS(79), - [anon_sym_LBRACK] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_TODO] = ACTIONS(87), - [anon_sym_WIP] = ACTIONS(87), - [anon_sym_NOTE] = ACTIONS(89), - [anon_sym_INFO] = ACTIONS(89), - [anon_sym_XXX] = ACTIONS(89), - [sym_fixme] = ACTIONS(71), - [sym__whitespace1] = ACTIONS(91), - [sym__newline] = ACTIONS(93), - [aux_sym__text_token1] = ACTIONS(95), - [sym__verbatim_begin] = ACTIONS(97), - }, - [11] = { - [sym__inline] = STATE(990), - [sym__element] = STATE(58), - [sym_emphasis] = STATE(148), - [sym_emphasis_begin] = STATE(1184), - [sym_strong] = STATE(148), - [sym_strong_begin] = STATE(1185), - [sym_superscript] = STATE(148), - [sym_superscript_begin] = STATE(1186), - [sym_subscript] = STATE(148), - [sym_subscript_begin] = STATE(1187), - [sym_highlighted] = STATE(148), - [sym_highlighted_begin] = STATE(1188), - [sym_insert] = STATE(148), - [sym_insert_begin] = STATE(1189), - [sym_delete] = STATE(148), - [sym_delete_begin] = STATE(1190), - [sym_hard_line_break] = STATE(139), - [sym__smart_punctuation] = STATE(139), - [sym_autolink] = STATE(139), - [sym_footnote_reference] = STATE(148), - [sym_footnote_marker_begin] = STATE(1191), - [sym__image] = STATE(148), - [sym_full_reference_image] = STATE(148), - [sym_collapsed_reference_image] = STATE(148), - [sym_inline_image] = STATE(148), - [sym_image_description] = STATE(648), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(148), - [sym_full_reference_link] = STATE(148), - [sym_collapsed_reference_link] = STATE(148), - [sym_inline_link] = STATE(148), - [sym_link_text] = STATE(647), - [sym_span] = STATE(58), - [sym__bracketed_text_begin] = STATE(1212), - [sym__comment_with_spaces] = STATE(139), - [sym_raw_inline] = STATE(139), - [sym_math] = STATE(139), - [sym_verbatim] = STATE(139), - [sym__todo_highlights] = STATE(139), - [sym_todo] = STATE(139), - [sym_note] = STATE(139), - [sym__symbol_fallback] = STATE(139), - [aux_sym__text] = STATE(123), - [aux_sym__inline_repeat1] = STATE(58), - [anon_sym_LBRACE_] = ACTIONS(51), - [anon_sym__] = ACTIONS(53), - [anon_sym_LBRACE_STAR] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(57), - [anon_sym_LBRACE_CARET] = ACTIONS(59), - [anon_sym_CARET] = ACTIONS(59), - [anon_sym_LBRACE_TILDE] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(61), - [anon_sym_LBRACE_EQ] = ACTIONS(63), - [anon_sym_LBRACE_PLUS] = ACTIONS(65), - [anon_sym_LBRACE_DASH] = ACTIONS(67), - [anon_sym_BSLASH] = ACTIONS(69), - [sym_quotation_marks] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(71), - [sym_em_dash] = ACTIONS(71), - [sym_en_dash] = ACTIONS(73), - [sym_backslash_escape] = ACTIONS(73), - [anon_sym_LT] = ACTIONS(75), - [sym_symbol] = ACTIONS(71), - [anon_sym_LBRACK_CARET] = ACTIONS(77), - [anon_sym_BANG_LBRACK] = ACTIONS(79), - [anon_sym_LBRACK] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_TODO] = ACTIONS(87), - [anon_sym_WIP] = ACTIONS(87), - [anon_sym_NOTE] = ACTIONS(89), - [anon_sym_INFO] = ACTIONS(89), - [anon_sym_XXX] = ACTIONS(89), - [sym_fixme] = ACTIONS(71), - [sym__whitespace1] = ACTIONS(91), - [sym__newline] = ACTIONS(93), - [aux_sym__text_token1] = ACTIONS(95), - [sym__verbatim_begin] = ACTIONS(97), - }, - [12] = { - [sym__inline] = STATE(974), - [sym__element] = STATE(58), - [sym_emphasis] = STATE(148), - [sym_emphasis_begin] = STATE(1184), - [sym_strong] = STATE(148), - [sym_strong_begin] = STATE(1185), - [sym_superscript] = STATE(148), - [sym_superscript_begin] = STATE(1186), - [sym_subscript] = STATE(148), - [sym_subscript_begin] = STATE(1187), - [sym_highlighted] = STATE(148), - [sym_highlighted_begin] = STATE(1188), - [sym_insert] = STATE(148), - [sym_insert_begin] = STATE(1189), - [sym_delete] = STATE(148), - [sym_delete_begin] = STATE(1190), - [sym_hard_line_break] = STATE(139), - [sym__smart_punctuation] = STATE(139), - [sym_autolink] = STATE(139), - [sym_footnote_reference] = STATE(148), - [sym_footnote_marker_begin] = STATE(1191), - [sym__image] = STATE(148), - [sym_full_reference_image] = STATE(148), - [sym_collapsed_reference_image] = STATE(148), - [sym_inline_image] = STATE(148), - [sym_image_description] = STATE(648), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(148), - [sym_full_reference_link] = STATE(148), - [sym_collapsed_reference_link] = STATE(148), - [sym_inline_link] = STATE(148), - [sym_link_text] = STATE(647), - [sym_span] = STATE(58), - [sym__bracketed_text_begin] = STATE(1212), - [sym__comment_with_spaces] = STATE(139), - [sym_raw_inline] = STATE(139), - [sym_math] = STATE(139), - [sym_verbatim] = STATE(139), - [sym__todo_highlights] = STATE(139), - [sym_todo] = STATE(139), - [sym_note] = STATE(139), - [sym__symbol_fallback] = STATE(139), - [aux_sym__text] = STATE(123), - [aux_sym__inline_repeat1] = STATE(58), - [anon_sym_LBRACE_] = ACTIONS(51), - [anon_sym__] = ACTIONS(53), - [anon_sym_LBRACE_STAR] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(57), - [anon_sym_LBRACE_CARET] = ACTIONS(59), - [anon_sym_CARET] = ACTIONS(59), - [anon_sym_LBRACE_TILDE] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(61), - [anon_sym_LBRACE_EQ] = ACTIONS(63), - [anon_sym_LBRACE_PLUS] = ACTIONS(65), - [anon_sym_LBRACE_DASH] = ACTIONS(67), - [anon_sym_BSLASH] = ACTIONS(69), - [sym_quotation_marks] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(71), - [sym_em_dash] = ACTIONS(71), - [sym_en_dash] = ACTIONS(73), - [sym_backslash_escape] = ACTIONS(73), - [anon_sym_LT] = ACTIONS(75), - [sym_symbol] = ACTIONS(71), - [anon_sym_LBRACK_CARET] = ACTIONS(77), - [anon_sym_BANG_LBRACK] = ACTIONS(79), - [anon_sym_LBRACK] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_TODO] = ACTIONS(87), - [anon_sym_WIP] = ACTIONS(87), - [anon_sym_NOTE] = ACTIONS(89), - [anon_sym_INFO] = ACTIONS(89), - [anon_sym_XXX] = ACTIONS(89), - [sym_fixme] = ACTIONS(71), - [sym__whitespace1] = ACTIONS(91), - [sym__newline] = ACTIONS(93), - [aux_sym__text_token1] = ACTIONS(95), - [sym__verbatim_begin] = ACTIONS(97), - }, - [13] = { - [sym__element] = STATE(13), - [sym_emphasis] = STATE(133), - [sym_emphasis_begin] = STATE(1124), - [sym_strong] = STATE(133), - [sym_strong_begin] = STATE(1125), - [sym_superscript] = STATE(133), - [sym_superscript_begin] = STATE(1126), - [sym_subscript] = STATE(133), - [sym_subscript_begin] = STATE(1127), - [sym_highlighted] = STATE(133), - [sym_highlighted_begin] = STATE(1128), - [sym_insert] = STATE(133), - [sym_insert_begin] = STATE(1129), - [sym_delete] = STATE(133), - [sym_delete_begin] = STATE(1130), - [sym_hard_line_break] = STATE(140), - [sym__smart_punctuation] = STATE(140), - [sym_autolink] = STATE(140), - [sym_footnote_reference] = STATE(133), - [sym_footnote_marker_begin] = STATE(1131), - [sym__image] = STATE(133), - [sym_full_reference_image] = STATE(133), - [sym_collapsed_reference_image] = STATE(133), - [sym_inline_image] = STATE(133), - [sym_image_description] = STATE(663), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(133), - [sym_full_reference_link] = STATE(133), - [sym_collapsed_reference_link] = STATE(133), - [sym_inline_link] = STATE(133), - [sym_link_text] = STATE(669), - [sym_span] = STATE(13), - [sym__bracketed_text_begin] = STATE(1206), - [sym__comment_with_spaces] = STATE(140), - [sym_raw_inline] = STATE(140), - [sym_math] = STATE(140), - [sym_verbatim] = STATE(140), - [sym__todo_highlights] = STATE(140), - [sym_todo] = STATE(140), - [sym_note] = STATE(140), - [sym__symbol_fallback] = STATE(140), - [aux_sym__text] = STATE(122), - [aux_sym__inline_repeat1] = STATE(13), - [anon_sym_LBRACE_] = ACTIONS(223), - [anon_sym__] = ACTIONS(226), - [anon_sym_LBRACE_STAR] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(232), - [anon_sym_LBRACE_CARET] = ACTIONS(235), - [anon_sym_CARET] = ACTIONS(235), - [anon_sym_LBRACE_TILDE] = ACTIONS(238), - [anon_sym_TILDE] = ACTIONS(238), - [anon_sym_LBRACE_EQ] = ACTIONS(241), - [anon_sym_LBRACE_PLUS] = ACTIONS(244), - [anon_sym_LBRACE_DASH] = ACTIONS(247), - [anon_sym_BSLASH] = ACTIONS(250), - [sym_quotation_marks] = ACTIONS(253), - [sym_ellipsis] = ACTIONS(253), - [sym_em_dash] = ACTIONS(253), - [sym_en_dash] = ACTIONS(256), - [sym_backslash_escape] = ACTIONS(256), - [anon_sym_LT] = ACTIONS(259), - [sym_symbol] = ACTIONS(253), - [anon_sym_LBRACK_CARET] = ACTIONS(262), - [anon_sym_BANG_LBRACK] = ACTIONS(265), - [anon_sym_LBRACK] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_DOLLAR] = ACTIONS(274), - [anon_sym_TODO] = ACTIONS(277), - [anon_sym_WIP] = ACTIONS(277), - [anon_sym_NOTE] = ACTIONS(280), - [anon_sym_INFO] = ACTIONS(280), - [anon_sym_XXX] = ACTIONS(280), - [sym_fixme] = ACTIONS(253), - [sym__whitespace1] = ACTIONS(283), - [sym__newline] = ACTIONS(286), - [aux_sym__text_token1] = ACTIONS(289), - [sym__verbatim_begin] = ACTIONS(292), - [sym_superscript_end] = ACTIONS(221), - }, - [14] = { - [sym__element] = STATE(6), - [sym_emphasis] = STATE(136), - [sym_emphasis_begin] = STATE(1134), - [sym_strong] = STATE(136), - [sym_strong_begin] = STATE(1135), - [sym_superscript] = STATE(136), - [sym_superscript_begin] = STATE(1136), - [sym_subscript] = STATE(136), - [sym_subscript_begin] = STATE(1137), - [sym_highlighted] = STATE(136), - [sym_highlighted_begin] = STATE(1138), - [sym_insert] = STATE(136), - [sym_insert_begin] = STATE(1139), - [sym_delete] = STATE(136), - [sym_delete_begin] = STATE(1140), - [sym_hard_line_break] = STATE(134), - [sym__smart_punctuation] = STATE(134), - [sym_autolink] = STATE(134), - [sym_footnote_reference] = STATE(136), - [sym_footnote_marker_begin] = STATE(1141), - [sym__image] = STATE(136), - [sym_full_reference_image] = STATE(136), - [sym_collapsed_reference_image] = STATE(136), - [sym_inline_image] = STATE(136), - [sym_image_description] = STATE(670), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(136), - [sym_full_reference_link] = STATE(136), - [sym_collapsed_reference_link] = STATE(136), - [sym_inline_link] = STATE(136), - [sym_link_text] = STATE(671), - [sym_span] = STATE(6), - [sym__bracketed_text_begin] = STATE(1207), - [sym__comment_with_spaces] = STATE(134), - [sym_raw_inline] = STATE(134), - [sym_math] = STATE(134), - [sym_verbatim] = STATE(134), - [sym__todo_highlights] = STATE(134), - [sym_todo] = STATE(134), - [sym_note] = STATE(134), - [sym__symbol_fallback] = STATE(134), - [aux_sym__text] = STATE(129), - [aux_sym__inline_repeat1] = STATE(6), - [anon_sym_LBRACE_] = ACTIONS(295), - [anon_sym__] = ACTIONS(297), - [anon_sym_LBRACE_STAR] = ACTIONS(299), - [anon_sym_STAR] = ACTIONS(301), - [anon_sym_LBRACE_CARET] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(303), - [anon_sym_LBRACE_TILDE] = ACTIONS(305), - [anon_sym_TILDE] = ACTIONS(305), - [anon_sym_LBRACE_EQ] = ACTIONS(307), - [anon_sym_LBRACE_PLUS] = ACTIONS(309), - [anon_sym_LBRACE_DASH] = ACTIONS(311), - [anon_sym_BSLASH] = ACTIONS(313), - [sym_quotation_marks] = ACTIONS(315), - [sym_ellipsis] = ACTIONS(315), - [sym_em_dash] = ACTIONS(315), - [sym_en_dash] = ACTIONS(317), - [sym_backslash_escape] = ACTIONS(317), - [anon_sym_LT] = ACTIONS(319), - [sym_symbol] = ACTIONS(315), - [anon_sym_LBRACK_CARET] = ACTIONS(321), - [anon_sym_BANG_LBRACK] = ACTIONS(323), - [anon_sym_LBRACK] = ACTIONS(325), - [anon_sym_LPAREN] = ACTIONS(327), - [anon_sym_DOLLAR] = ACTIONS(329), - [anon_sym_TODO] = ACTIONS(331), - [anon_sym_WIP] = ACTIONS(331), - [anon_sym_NOTE] = ACTIONS(333), - [anon_sym_INFO] = ACTIONS(333), - [anon_sym_XXX] = ACTIONS(333), - [sym_fixme] = ACTIONS(315), - [sym__whitespace1] = ACTIONS(335), - [sym__newline] = ACTIONS(337), - [aux_sym__text_token1] = ACTIONS(339), - [sym__verbatim_begin] = ACTIONS(341), - [sym_subscript_end] = ACTIONS(343), - }, - [15] = { - [sym__inline] = STATE(958), - [sym__element] = STATE(58), - [sym_emphasis] = STATE(148), - [sym_emphasis_begin] = STATE(1184), - [sym_strong] = STATE(148), - [sym_strong_begin] = STATE(1185), - [sym_superscript] = STATE(148), - [sym_superscript_begin] = STATE(1186), - [sym_subscript] = STATE(148), - [sym_subscript_begin] = STATE(1187), - [sym_highlighted] = STATE(148), - [sym_highlighted_begin] = STATE(1188), - [sym_insert] = STATE(148), - [sym_insert_begin] = STATE(1189), - [sym_delete] = STATE(148), - [sym_delete_begin] = STATE(1190), - [sym_hard_line_break] = STATE(139), - [sym__smart_punctuation] = STATE(139), - [sym_autolink] = STATE(139), - [sym_footnote_reference] = STATE(148), - [sym_footnote_marker_begin] = STATE(1191), - [sym__image] = STATE(148), - [sym_full_reference_image] = STATE(148), - [sym_collapsed_reference_image] = STATE(148), - [sym_inline_image] = STATE(148), - [sym_image_description] = STATE(648), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(148), - [sym_full_reference_link] = STATE(148), - [sym_collapsed_reference_link] = STATE(148), - [sym_inline_link] = STATE(148), - [sym_link_text] = STATE(647), - [sym_span] = STATE(58), - [sym__bracketed_text_begin] = STATE(1212), - [sym__comment_with_spaces] = STATE(139), - [sym_raw_inline] = STATE(139), - [sym_math] = STATE(139), - [sym_verbatim] = STATE(139), - [sym__todo_highlights] = STATE(139), - [sym_todo] = STATE(139), - [sym_note] = STATE(139), - [sym__symbol_fallback] = STATE(139), - [aux_sym__text] = STATE(123), - [aux_sym__inline_repeat1] = STATE(58), - [anon_sym_LBRACE_] = ACTIONS(51), - [anon_sym__] = ACTIONS(53), - [anon_sym_LBRACE_STAR] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(57), - [anon_sym_LBRACE_CARET] = ACTIONS(59), - [anon_sym_CARET] = ACTIONS(59), - [anon_sym_LBRACE_TILDE] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(61), - [anon_sym_LBRACE_EQ] = ACTIONS(63), - [anon_sym_LBRACE_PLUS] = ACTIONS(65), - [anon_sym_LBRACE_DASH] = ACTIONS(67), - [anon_sym_BSLASH] = ACTIONS(69), - [sym_quotation_marks] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(71), - [sym_em_dash] = ACTIONS(71), - [sym_en_dash] = ACTIONS(73), - [sym_backslash_escape] = ACTIONS(73), - [anon_sym_LT] = ACTIONS(75), - [sym_symbol] = ACTIONS(71), - [anon_sym_LBRACK_CARET] = ACTIONS(77), - [anon_sym_BANG_LBRACK] = ACTIONS(79), - [anon_sym_LBRACK] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_TODO] = ACTIONS(87), - [anon_sym_WIP] = ACTIONS(87), - [anon_sym_NOTE] = ACTIONS(89), - [anon_sym_INFO] = ACTIONS(89), - [anon_sym_XXX] = ACTIONS(89), - [sym_fixme] = ACTIONS(71), - [sym__whitespace1] = ACTIONS(91), - [sym__newline] = ACTIONS(93), - [aux_sym__text_token1] = ACTIONS(95), - [sym__verbatim_begin] = ACTIONS(97), - }, - [16] = { - [sym__inline] = STATE(938), - [sym__element] = STATE(46), - [sym_emphasis] = STATE(135), - [sym_emphasis_begin] = STATE(1174), - [sym_strong] = STATE(135), - [sym_strong_begin] = STATE(1175), - [sym_superscript] = STATE(135), - [sym_superscript_begin] = STATE(1176), - [sym_subscript] = STATE(135), - [sym_subscript_begin] = STATE(1177), - [sym_highlighted] = STATE(135), - [sym_highlighted_begin] = STATE(1178), - [sym_insert] = STATE(135), - [sym_insert_begin] = STATE(1179), - [sym_delete] = STATE(135), - [sym_delete_begin] = STATE(1180), - [sym_hard_line_break] = STATE(138), - [sym__smart_punctuation] = STATE(138), - [sym_autolink] = STATE(138), - [sym_footnote_reference] = STATE(135), - [sym_footnote_marker_begin] = STATE(1181), - [sym__image] = STATE(135), - [sym_full_reference_image] = STATE(135), - [sym_collapsed_reference_image] = STATE(135), - [sym_inline_image] = STATE(135), - [sym_image_description] = STATE(656), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(135), - [sym_full_reference_link] = STATE(135), - [sym_collapsed_reference_link] = STATE(135), - [sym_inline_link] = STATE(135), - [sym_link_text] = STATE(654), - [sym_span] = STATE(46), - [sym__bracketed_text_begin] = STATE(1211), - [sym__comment_with_spaces] = STATE(138), - [sym_raw_inline] = STATE(138), - [sym_math] = STATE(138), - [sym_verbatim] = STATE(138), - [sym__todo_highlights] = STATE(138), - [sym_todo] = STATE(138), - [sym_note] = STATE(138), - [sym__symbol_fallback] = STATE(138), - [aux_sym__text] = STATE(121), - [aux_sym__inline_repeat1] = STATE(46), - [anon_sym_LBRACE_] = ACTIONS(345), - [anon_sym__] = ACTIONS(347), - [anon_sym_LBRACE_STAR] = ACTIONS(349), - [anon_sym_STAR] = ACTIONS(351), - [anon_sym_LBRACE_CARET] = ACTIONS(353), - [anon_sym_CARET] = ACTIONS(353), - [anon_sym_LBRACE_TILDE] = ACTIONS(355), - [anon_sym_TILDE] = ACTIONS(355), - [anon_sym_LBRACE_EQ] = ACTIONS(357), - [anon_sym_LBRACE_PLUS] = ACTIONS(359), - [anon_sym_LBRACE_DASH] = ACTIONS(361), - [anon_sym_BSLASH] = ACTIONS(363), - [sym_quotation_marks] = ACTIONS(365), - [sym_ellipsis] = ACTIONS(365), - [sym_em_dash] = ACTIONS(365), - [sym_en_dash] = ACTIONS(367), - [sym_backslash_escape] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(369), - [sym_symbol] = ACTIONS(365), - [anon_sym_LBRACK_CARET] = ACTIONS(371), - [anon_sym_BANG_LBRACK] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LPAREN] = ACTIONS(377), - [anon_sym_DOLLAR] = ACTIONS(379), - [anon_sym_TODO] = ACTIONS(381), - [anon_sym_WIP] = ACTIONS(381), - [anon_sym_NOTE] = ACTIONS(383), - [anon_sym_INFO] = ACTIONS(383), - [anon_sym_XXX] = ACTIONS(383), - [sym_fixme] = ACTIONS(365), - [sym__whitespace1] = ACTIONS(385), - [sym__newline] = ACTIONS(387), - [aux_sym__text_token1] = ACTIONS(389), - [sym__verbatim_begin] = ACTIONS(391), - }, - [17] = { - [sym__inline] = STATE(936), - [sym__element] = STATE(30), - [sym_emphasis] = STATE(132), - [sym_emphasis_begin] = STATE(1164), - [sym_strong] = STATE(132), - [sym_strong_begin] = STATE(1165), - [sym_superscript] = STATE(132), - [sym_superscript_begin] = STATE(1166), - [sym_subscript] = STATE(132), - [sym_subscript_begin] = STATE(1167), - [sym_highlighted] = STATE(132), - [sym_highlighted_begin] = STATE(1168), - [sym_insert] = STATE(132), - [sym_insert_begin] = STATE(1169), - [sym_delete] = STATE(132), - [sym_delete_begin] = STATE(1170), - [sym_hard_line_break] = STATE(142), - [sym__smart_punctuation] = STATE(142), - [sym_autolink] = STATE(142), - [sym_footnote_reference] = STATE(132), - [sym_footnote_marker_begin] = STATE(1171), - [sym__image] = STATE(132), - [sym_full_reference_image] = STATE(132), - [sym_collapsed_reference_image] = STATE(132), - [sym_inline_image] = STATE(132), - [sym_image_description] = STATE(660), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(132), - [sym_full_reference_link] = STATE(132), - [sym_collapsed_reference_link] = STATE(132), - [sym_inline_link] = STATE(132), - [sym_link_text] = STATE(659), - [sym_span] = STATE(30), - [sym__bracketed_text_begin] = STATE(1210), - [sym__comment_with_spaces] = STATE(142), - [sym_raw_inline] = STATE(142), - [sym_math] = STATE(142), - [sym_verbatim] = STATE(142), - [sym__todo_highlights] = STATE(142), - [sym_todo] = STATE(142), - [sym_note] = STATE(142), - [sym__symbol_fallback] = STATE(142), - [aux_sym__text] = STATE(126), - [aux_sym__inline_repeat1] = STATE(30), - [anon_sym_LBRACE_] = ACTIONS(393), - [anon_sym__] = ACTIONS(395), - [anon_sym_LBRACE_STAR] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(399), - [anon_sym_LBRACE_CARET] = ACTIONS(401), - [anon_sym_CARET] = ACTIONS(401), - [anon_sym_LBRACE_TILDE] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_LBRACE_EQ] = ACTIONS(405), - [anon_sym_LBRACE_PLUS] = ACTIONS(407), - [anon_sym_LBRACE_DASH] = ACTIONS(409), - [anon_sym_BSLASH] = ACTIONS(411), - [sym_quotation_marks] = ACTIONS(413), - [sym_ellipsis] = ACTIONS(413), - [sym_em_dash] = ACTIONS(413), - [sym_en_dash] = ACTIONS(415), - [sym_backslash_escape] = ACTIONS(415), - [anon_sym_LT] = ACTIONS(417), - [sym_symbol] = ACTIONS(413), - [anon_sym_LBRACK_CARET] = ACTIONS(419), - [anon_sym_BANG_LBRACK] = ACTIONS(421), - [anon_sym_LBRACK] = ACTIONS(423), - [anon_sym_LPAREN] = ACTIONS(425), - [anon_sym_DOLLAR] = ACTIONS(427), - [anon_sym_TODO] = ACTIONS(429), - [anon_sym_WIP] = ACTIONS(429), - [anon_sym_NOTE] = ACTIONS(431), - [anon_sym_INFO] = ACTIONS(431), - [anon_sym_XXX] = ACTIONS(431), - [sym_fixme] = ACTIONS(413), - [sym__whitespace1] = ACTIONS(433), - [sym__newline] = ACTIONS(435), - [aux_sym__text_token1] = ACTIONS(437), - [sym__verbatim_begin] = ACTIONS(439), - }, - [18] = { - [sym__inline] = STATE(935), - [sym__element] = STATE(22), - [sym_emphasis] = STATE(147), - [sym_emphasis_begin] = STATE(1154), - [sym_strong] = STATE(147), - [sym_strong_begin] = STATE(1155), - [sym_superscript] = STATE(147), - [sym_superscript_begin] = STATE(1156), - [sym_subscript] = STATE(147), - [sym_subscript_begin] = STATE(1157), - [sym_highlighted] = STATE(147), - [sym_highlighted_begin] = STATE(1158), - [sym_insert] = STATE(147), - [sym_insert_begin] = STATE(1159), - [sym_delete] = STATE(147), - [sym_delete_begin] = STATE(1160), - [sym_hard_line_break] = STATE(145), - [sym__smart_punctuation] = STATE(145), - [sym_autolink] = STATE(145), - [sym_footnote_reference] = STATE(147), - [sym_footnote_marker_begin] = STATE(1161), - [sym__image] = STATE(147), - [sym_full_reference_image] = STATE(147), - [sym_collapsed_reference_image] = STATE(147), - [sym_inline_image] = STATE(147), - [sym_image_description] = STATE(665), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(147), - [sym_full_reference_link] = STATE(147), - [sym_collapsed_reference_link] = STATE(147), - [sym_inline_link] = STATE(147), - [sym_link_text] = STATE(664), - [sym_span] = STATE(22), - [sym__bracketed_text_begin] = STATE(1209), - [sym__comment_with_spaces] = STATE(145), - [sym_raw_inline] = STATE(145), - [sym_math] = STATE(145), - [sym_verbatim] = STATE(145), - [sym__todo_highlights] = STATE(145), - [sym_todo] = STATE(145), - [sym_note] = STATE(145), - [sym__symbol_fallback] = STATE(145), - [aux_sym__text] = STATE(124), - [aux_sym__inline_repeat1] = STATE(22), - [anon_sym_LBRACE_] = ACTIONS(101), - [anon_sym__] = ACTIONS(103), - [anon_sym_LBRACE_STAR] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_LBRACE_CARET] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(109), - [anon_sym_LBRACE_TILDE] = ACTIONS(111), - [anon_sym_TILDE] = ACTIONS(111), - [anon_sym_LBRACE_EQ] = ACTIONS(113), - [anon_sym_LBRACE_PLUS] = ACTIONS(115), - [anon_sym_LBRACE_DASH] = ACTIONS(117), - [anon_sym_BSLASH] = ACTIONS(119), - [sym_quotation_marks] = ACTIONS(121), - [sym_ellipsis] = ACTIONS(121), - [sym_em_dash] = ACTIONS(121), - [sym_en_dash] = ACTIONS(123), - [sym_backslash_escape] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(125), - [sym_symbol] = ACTIONS(121), - [anon_sym_LBRACK_CARET] = ACTIONS(127), - [anon_sym_BANG_LBRACK] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_TODO] = ACTIONS(137), - [anon_sym_WIP] = ACTIONS(137), - [anon_sym_NOTE] = ACTIONS(139), - [anon_sym_INFO] = ACTIONS(139), - [anon_sym_XXX] = ACTIONS(139), - [sym_fixme] = ACTIONS(121), - [sym__whitespace1] = ACTIONS(141), - [sym__newline] = ACTIONS(143), - [aux_sym__text_token1] = ACTIONS(145), - [sym__verbatim_begin] = ACTIONS(147), - }, - [19] = { - [sym__inline_without_trailing_space] = STATE(969), - [sym__element] = STATE(594), + [sym__inline] = STATE(995), + [sym__element] = STATE(26), [sym_emphasis] = STATE(149), - [sym_emphasis_begin] = STATE(1104), + [sym_emphasis_begin] = STATE(1194), [sym_strong] = STATE(149), - [sym_strong_begin] = STATE(1105), + [sym_strong_begin] = STATE(1195), [sym_superscript] = STATE(149), - [sym_superscript_begin] = STATE(1106), + [sym_superscript_begin] = STATE(1196), [sym_subscript] = STATE(149), - [sym_subscript_begin] = STATE(1107), + [sym_subscript_begin] = STATE(1197), [sym_highlighted] = STATE(149), - [sym_highlighted_begin] = STATE(1108), + [sym_highlighted_begin] = STATE(1198), [sym_insert] = STATE(149), - [sym_insert_begin] = STATE(1109), + [sym_insert_begin] = STATE(1199), [sym_delete] = STATE(149), - [sym_delete_begin] = STATE(1110), - [sym_hard_line_break] = STATE(143), - [sym__smart_punctuation] = STATE(143), - [sym_autolink] = STATE(143), + [sym_delete_begin] = STATE(1200), + [sym_hard_line_break] = STATE(148), + [sym__smart_punctuation] = STATE(148), + [sym_autolink] = STATE(148), [sym_footnote_reference] = STATE(149), - [sym_footnote_marker_begin] = STATE(1111), + [sym_footnote_marker_begin] = STATE(1201), [sym__image] = STATE(149), [sym_full_reference_image] = STATE(149), [sym_collapsed_reference_image] = STATE(149), [sym_inline_image] = STATE(149), - [sym_image_description] = STATE(658), - [sym__image_description_begin] = STATE(1079), + [sym_image_description] = STATE(667), + [sym__image_description_begin] = STATE(958), [sym__link] = STATE(149), [sym_full_reference_link] = STATE(149), [sym_collapsed_reference_link] = STATE(149), [sym_inline_link] = STATE(149), - [sym_link_text] = STATE(672), - [sym_span] = STATE(594), - [sym__bracketed_text_begin] = STATE(1204), - [sym__comment_with_spaces] = STATE(143), - [sym_raw_inline] = STATE(143), - [sym_math] = STATE(143), - [sym_verbatim] = STATE(143), - [sym__todo_highlights] = STATE(143), - [sym_todo] = STATE(143), - [sym_note] = STATE(143), - [sym__symbol_fallback] = STATE(143), - [aux_sym__text] = STATE(127), - [aux_sym__inline_repeat1] = STATE(120), - [anon_sym_LBRACE_] = ACTIONS(441), - [anon_sym__] = ACTIONS(443), - [anon_sym_LBRACE_STAR] = ACTIONS(445), - [anon_sym_STAR] = ACTIONS(447), - [anon_sym_LBRACE_CARET] = ACTIONS(449), - [anon_sym_CARET] = ACTIONS(449), - [anon_sym_LBRACE_TILDE] = ACTIONS(451), - [anon_sym_TILDE] = ACTIONS(451), - [anon_sym_LBRACE_EQ] = ACTIONS(453), - [anon_sym_LBRACE_PLUS] = ACTIONS(455), - [anon_sym_LBRACE_DASH] = ACTIONS(457), - [anon_sym_BSLASH] = ACTIONS(459), - [sym_quotation_marks] = ACTIONS(461), - [sym_ellipsis] = ACTIONS(461), - [sym_em_dash] = ACTIONS(461), - [sym_en_dash] = ACTIONS(463), - [sym_backslash_escape] = ACTIONS(463), - [anon_sym_LT] = ACTIONS(465), - [sym_symbol] = ACTIONS(461), - [anon_sym_LBRACK_CARET] = ACTIONS(467), - [anon_sym_BANG_LBRACK] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(471), - [anon_sym_LPAREN] = ACTIONS(473), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_TODO] = ACTIONS(477), - [anon_sym_WIP] = ACTIONS(477), - [anon_sym_NOTE] = ACTIONS(479), - [anon_sym_INFO] = ACTIONS(479), - [anon_sym_XXX] = ACTIONS(479), - [sym_fixme] = ACTIONS(461), - [sym__whitespace1] = ACTIONS(481), - [sym__newline] = ACTIONS(483), - [aux_sym__text_token1] = ACTIONS(485), - [sym__verbatim_begin] = ACTIONS(487), - }, - [20] = { - [sym__inline_without_trailing_space] = STATE(968), - [sym__element] = STATE(550), - [sym_emphasis] = STATE(137), - [sym_emphasis_begin] = STATE(1114), - [sym_strong] = STATE(137), - [sym_strong_begin] = STATE(1115), - [sym_superscript] = STATE(137), - [sym_superscript_begin] = STATE(1116), - [sym_subscript] = STATE(137), - [sym_subscript_begin] = STATE(1117), - [sym_highlighted] = STATE(137), - [sym_highlighted_begin] = STATE(1118), - [sym_insert] = STATE(137), - [sym_insert_begin] = STATE(1119), - [sym_delete] = STATE(137), - [sym_delete_begin] = STATE(1120), - [sym_hard_line_break] = STATE(131), - [sym__smart_punctuation] = STATE(131), - [sym_autolink] = STATE(131), - [sym_footnote_reference] = STATE(137), - [sym_footnote_marker_begin] = STATE(1121), - [sym__image] = STATE(137), - [sym_full_reference_image] = STATE(137), - [sym_collapsed_reference_image] = STATE(137), - [sym_inline_image] = STATE(137), - [sym_image_description] = STATE(649), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(137), - [sym_full_reference_link] = STATE(137), - [sym_collapsed_reference_link] = STATE(137), - [sym_inline_link] = STATE(137), - [sym_link_text] = STATE(650), - [sym_span] = STATE(550), - [sym__bracketed_text_begin] = STATE(1205), - [sym__comment_with_spaces] = STATE(131), - [sym_raw_inline] = STATE(131), - [sym_math] = STATE(131), - [sym_verbatim] = STATE(131), - [sym__todo_highlights] = STATE(131), - [sym_todo] = STATE(131), - [sym_note] = STATE(131), - [sym__symbol_fallback] = STATE(131), + [sym_link_text] = STATE(668), + [sym_span] = STATE(26), + [sym__bracketed_text_begin] = STATE(1222), + [sym__comment_with_spaces] = STATE(148), + [sym_raw_inline] = STATE(148), + [sym_math] = STATE(148), + [sym_verbatim] = STATE(148), + [sym__todo_highlights] = STATE(148), + [sym_todo] = STATE(148), + [sym_note] = STATE(148), + [sym__symbol_fallback] = STATE(148), + [sym__newline] = STATE(26), [aux_sym__text] = STATE(130), - [aux_sym__inline_repeat1] = STATE(119), - [anon_sym_LBRACE_] = ACTIONS(489), - [anon_sym__] = ACTIONS(491), - [anon_sym_LBRACE_STAR] = ACTIONS(493), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_LBRACE_CARET] = ACTIONS(497), - [anon_sym_CARET] = ACTIONS(497), - [anon_sym_LBRACE_TILDE] = ACTIONS(499), - [anon_sym_TILDE] = ACTIONS(499), - [anon_sym_LBRACE_EQ] = ACTIONS(501), - [anon_sym_LBRACE_PLUS] = ACTIONS(503), - [anon_sym_LBRACE_DASH] = ACTIONS(505), - [anon_sym_BSLASH] = ACTIONS(507), - [sym_quotation_marks] = ACTIONS(509), - [sym_ellipsis] = ACTIONS(509), - [sym_em_dash] = ACTIONS(509), - [sym_en_dash] = ACTIONS(511), - [sym_backslash_escape] = ACTIONS(511), - [anon_sym_LT] = ACTIONS(513), - [sym_symbol] = ACTIONS(509), - [anon_sym_LBRACK_CARET] = ACTIONS(515), - [anon_sym_BANG_LBRACK] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(519), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_DOLLAR] = ACTIONS(523), - [anon_sym_TODO] = ACTIONS(525), - [anon_sym_WIP] = ACTIONS(525), - [anon_sym_NOTE] = ACTIONS(527), - [anon_sym_INFO] = ACTIONS(527), - [anon_sym_XXX] = ACTIONS(527), - [sym_fixme] = ACTIONS(509), - [sym__whitespace1] = ACTIONS(529), - [sym__newline] = ACTIONS(531), - [aux_sym__text_token1] = ACTIONS(533), - [sym__verbatim_begin] = ACTIONS(535), - }, - [21] = { - [sym__inline] = STATE(967), - [sym__element] = STATE(64), - [sym_emphasis] = STATE(133), - [sym_emphasis_begin] = STATE(1124), - [sym_strong] = STATE(133), - [sym_strong_begin] = STATE(1125), - [sym_superscript] = STATE(133), - [sym_superscript_begin] = STATE(1126), - [sym_subscript] = STATE(133), - [sym_subscript_begin] = STATE(1127), - [sym_highlighted] = STATE(133), - [sym_highlighted_begin] = STATE(1128), - [sym_insert] = STATE(133), - [sym_insert_begin] = STATE(1129), - [sym_delete] = STATE(133), - [sym_delete_begin] = STATE(1130), - [sym_hard_line_break] = STATE(140), - [sym__smart_punctuation] = STATE(140), - [sym_autolink] = STATE(140), - [sym_footnote_reference] = STATE(133), - [sym_footnote_marker_begin] = STATE(1131), - [sym__image] = STATE(133), - [sym_full_reference_image] = STATE(133), - [sym_collapsed_reference_image] = STATE(133), - [sym_inline_image] = STATE(133), - [sym_image_description] = STATE(663), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(133), - [sym_full_reference_link] = STATE(133), - [sym_collapsed_reference_link] = STATE(133), - [sym_inline_link] = STATE(133), - [sym_link_text] = STATE(669), - [sym_span] = STATE(64), - [sym__bracketed_text_begin] = STATE(1206), - [sym__comment_with_spaces] = STATE(140), - [sym_raw_inline] = STATE(140), - [sym_math] = STATE(140), - [sym_verbatim] = STATE(140), - [sym__todo_highlights] = STATE(140), - [sym_todo] = STATE(140), - [sym_note] = STATE(140), - [sym__symbol_fallback] = STATE(140), - [aux_sym__text] = STATE(122), - [aux_sym__inline_repeat1] = STATE(64), - [anon_sym_LBRACE_] = ACTIONS(537), - [anon_sym__] = ACTIONS(539), - [anon_sym_LBRACE_STAR] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(543), - [anon_sym_LBRACE_CARET] = ACTIONS(545), - [anon_sym_CARET] = ACTIONS(545), - [anon_sym_LBRACE_TILDE] = ACTIONS(547), - [anon_sym_TILDE] = ACTIONS(547), - [anon_sym_LBRACE_EQ] = ACTIONS(549), - [anon_sym_LBRACE_PLUS] = ACTIONS(551), - [anon_sym_LBRACE_DASH] = ACTIONS(553), - [anon_sym_BSLASH] = ACTIONS(555), - [sym_quotation_marks] = ACTIONS(557), - [sym_ellipsis] = ACTIONS(557), - [sym_em_dash] = ACTIONS(557), - [sym_en_dash] = ACTIONS(559), - [sym_backslash_escape] = ACTIONS(559), - [anon_sym_LT] = ACTIONS(561), - [sym_symbol] = ACTIONS(557), - [anon_sym_LBRACK_CARET] = ACTIONS(563), - [anon_sym_BANG_LBRACK] = ACTIONS(565), - [anon_sym_LBRACK] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_DOLLAR] = ACTIONS(571), - [anon_sym_TODO] = ACTIONS(573), - [anon_sym_WIP] = ACTIONS(573), - [anon_sym_NOTE] = ACTIONS(575), - [anon_sym_INFO] = ACTIONS(575), - [anon_sym_XXX] = ACTIONS(575), - [sym_fixme] = ACTIONS(557), - [sym__whitespace1] = ACTIONS(577), - [sym__newline] = ACTIONS(579), - [aux_sym__text_token1] = ACTIONS(581), - [sym__verbatim_begin] = ACTIONS(583), - }, - [22] = { - [sym__element] = STATE(38), - [sym_emphasis] = STATE(147), - [sym_emphasis_begin] = STATE(1154), - [sym_strong] = STATE(147), - [sym_strong_begin] = STATE(1155), - [sym_superscript] = STATE(147), - [sym_superscript_begin] = STATE(1156), - [sym_subscript] = STATE(147), - [sym_subscript_begin] = STATE(1157), - [sym_highlighted] = STATE(147), - [sym_highlighted_begin] = STATE(1158), - [sym_insert] = STATE(147), - [sym_insert_begin] = STATE(1159), - [sym_delete] = STATE(147), - [sym_delete_begin] = STATE(1160), - [sym_hard_line_break] = STATE(145), - [sym__smart_punctuation] = STATE(145), - [sym_autolink] = STATE(145), - [sym_footnote_reference] = STATE(147), - [sym_footnote_marker_begin] = STATE(1161), - [sym__image] = STATE(147), - [sym_full_reference_image] = STATE(147), - [sym_collapsed_reference_image] = STATE(147), - [sym_inline_image] = STATE(147), - [sym_image_description] = STATE(665), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(147), - [sym_full_reference_link] = STATE(147), - [sym_collapsed_reference_link] = STATE(147), - [sym_inline_link] = STATE(147), - [sym_link_text] = STATE(664), - [sym_span] = STATE(38), - [sym__bracketed_text_begin] = STATE(1209), - [sym__comment_with_spaces] = STATE(145), - [sym_raw_inline] = STATE(145), - [sym_math] = STATE(145), - [sym_verbatim] = STATE(145), - [sym__todo_highlights] = STATE(145), - [sym_todo] = STATE(145), - [sym_note] = STATE(145), - [sym__symbol_fallback] = STATE(145), - [aux_sym__text] = STATE(124), - [aux_sym__inline_repeat1] = STATE(38), - [anon_sym_LBRACE_] = ACTIONS(101), - [anon_sym__] = ACTIONS(103), - [anon_sym_LBRACE_STAR] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_LBRACE_CARET] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(109), - [anon_sym_LBRACE_TILDE] = ACTIONS(111), - [anon_sym_TILDE] = ACTIONS(111), - [anon_sym_LBRACE_EQ] = ACTIONS(113), - [anon_sym_LBRACE_PLUS] = ACTIONS(115), - [anon_sym_LBRACE_DASH] = ACTIONS(117), - [anon_sym_BSLASH] = ACTIONS(119), - [sym_quotation_marks] = ACTIONS(121), - [sym_ellipsis] = ACTIONS(121), - [sym_em_dash] = ACTIONS(121), - [sym_en_dash] = ACTIONS(123), - [sym_backslash_escape] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(125), - [sym_symbol] = ACTIONS(121), - [anon_sym_LBRACK_CARET] = ACTIONS(127), - [anon_sym_BANG_LBRACK] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_TODO] = ACTIONS(137), - [anon_sym_WIP] = ACTIONS(137), - [anon_sym_NOTE] = ACTIONS(139), - [anon_sym_INFO] = ACTIONS(139), - [anon_sym_XXX] = ACTIONS(139), - [sym_fixme] = ACTIONS(121), - [sym__whitespace1] = ACTIONS(141), - [sym__newline] = ACTIONS(585), - [aux_sym__text_token1] = ACTIONS(145), - [sym__verbatim_begin] = ACTIONS(147), - [sym_insert_end] = ACTIONS(343), - }, - [23] = { - [sym__inline] = STATE(934), - [sym__element] = STATE(110), - [sym_emphasis] = STATE(146), - [sym_emphasis_begin] = STATE(1144), - [sym_strong] = STATE(146), - [sym_strong_begin] = STATE(1145), - [sym_superscript] = STATE(146), - [sym_superscript_begin] = STATE(1146), - [sym_subscript] = STATE(146), - [sym_subscript_begin] = STATE(1147), - [sym_highlighted] = STATE(146), - [sym_highlighted_begin] = STATE(1148), - [sym_insert] = STATE(146), - [sym_insert_begin] = STATE(1149), - [sym_delete] = STATE(146), - [sym_delete_begin] = STATE(1150), - [sym_hard_line_break] = STATE(144), - [sym__smart_punctuation] = STATE(144), - [sym_autolink] = STATE(144), - [sym_footnote_reference] = STATE(146), - [sym_footnote_marker_begin] = STATE(1151), - [sym__image] = STATE(146), - [sym_full_reference_image] = STATE(146), - [sym_collapsed_reference_image] = STATE(146), - [sym_inline_image] = STATE(146), - [sym_image_description] = STATE(673), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(146), - [sym_full_reference_link] = STATE(146), - [sym_collapsed_reference_link] = STATE(146), - [sym_inline_link] = STATE(146), - [sym_link_text] = STATE(662), - [sym_span] = STATE(110), - [sym__bracketed_text_begin] = STATE(1208), - [sym__comment_with_spaces] = STATE(144), - [sym_raw_inline] = STATE(144), - [sym_math] = STATE(144), - [sym_verbatim] = STATE(144), - [sym__todo_highlights] = STATE(144), - [sym_todo] = STATE(144), - [sym_note] = STATE(144), - [sym__symbol_fallback] = STATE(144), - [aux_sym__text] = STATE(128), - [aux_sym__inline_repeat1] = STATE(110), - [anon_sym_LBRACE_] = ACTIONS(587), - [anon_sym__] = ACTIONS(589), - [anon_sym_LBRACE_STAR] = ACTIONS(591), - [anon_sym_STAR] = ACTIONS(593), - [anon_sym_LBRACE_CARET] = ACTIONS(595), - [anon_sym_CARET] = ACTIONS(595), - [anon_sym_LBRACE_TILDE] = ACTIONS(597), - [anon_sym_TILDE] = ACTIONS(597), - [anon_sym_LBRACE_EQ] = ACTIONS(599), - [anon_sym_LBRACE_PLUS] = ACTIONS(601), - [anon_sym_LBRACE_DASH] = ACTIONS(603), - [anon_sym_BSLASH] = ACTIONS(605), - [sym_quotation_marks] = ACTIONS(607), - [sym_ellipsis] = ACTIONS(607), - [sym_em_dash] = ACTIONS(607), - [sym_en_dash] = ACTIONS(609), - [sym_backslash_escape] = ACTIONS(609), - [anon_sym_LT] = ACTIONS(611), - [sym_symbol] = ACTIONS(607), - [anon_sym_LBRACK_CARET] = ACTIONS(613), - [anon_sym_BANG_LBRACK] = ACTIONS(615), - [anon_sym_LBRACK] = ACTIONS(617), - [anon_sym_LPAREN] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [anon_sym_TODO] = ACTIONS(623), - [anon_sym_WIP] = ACTIONS(623), - [anon_sym_NOTE] = ACTIONS(625), - [anon_sym_INFO] = ACTIONS(625), - [anon_sym_XXX] = ACTIONS(625), - [sym_fixme] = ACTIONS(607), - [sym__whitespace1] = ACTIONS(627), - [sym__newline] = ACTIONS(629), - [aux_sym__text_token1] = ACTIONS(631), - [sym__verbatim_begin] = ACTIONS(633), + [aux_sym__inline_repeat1] = STATE(26), + [anon_sym_LBRACE_] = ACTIONS(53), + [anon_sym__] = ACTIONS(55), + [anon_sym_LBRACE_STAR] = ACTIONS(57), + [anon_sym_STAR] = ACTIONS(59), + [anon_sym_LBRACE_CARET] = ACTIONS(61), + [anon_sym_CARET] = ACTIONS(61), + [anon_sym_LBRACE_TILDE] = ACTIONS(63), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_LBRACE_EQ] = ACTIONS(65), + [anon_sym_LBRACE_PLUS] = ACTIONS(67), + [anon_sym_LBRACE_DASH] = ACTIONS(69), + [anon_sym_BSLASH] = ACTIONS(71), + [sym_quotation_marks] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(73), + [sym_em_dash] = ACTIONS(73), + [sym_en_dash] = ACTIONS(75), + [sym_backslash_escape] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [sym_symbol] = ACTIONS(73), + [anon_sym_LBRACK_CARET] = ACTIONS(79), + [anon_sym_BANG_LBRACK] = ACTIONS(81), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), + [anon_sym_DOLLAR] = ACTIONS(89), + [anon_sym_TODO] = ACTIONS(91), + [anon_sym_WIP] = ACTIONS(91), + [anon_sym_NOTE] = ACTIONS(93), + [anon_sym_INFO] = ACTIONS(93), + [anon_sym_XXX] = ACTIONS(93), + [sym_fixme] = ACTIONS(73), + [sym__whitespace1] = ACTIONS(95), + [anon_sym_LF] = ACTIONS(97), + [aux_sym__text_token1] = ACTIONS(99), + [sym__verbatim_begin] = ACTIONS(101), + [sym__square_bracket_span_end] = ACTIONS(103), }, - [24] = { - [sym__inline] = STATE(933), - [sym__element] = STATE(14), - [sym_emphasis] = STATE(136), + [3] = { + [sym__inline] = STATE(1043), + [sym__element] = STATE(15), + [sym_emphasis] = STATE(132), [sym_emphasis_begin] = STATE(1134), - [sym_strong] = STATE(136), + [sym_strong] = STATE(132), [sym_strong_begin] = STATE(1135), - [sym_superscript] = STATE(136), + [sym_superscript] = STATE(132), [sym_superscript_begin] = STATE(1136), - [sym_subscript] = STATE(136), + [sym_subscript] = STATE(132), [sym_subscript_begin] = STATE(1137), - [sym_highlighted] = STATE(136), + [sym_highlighted] = STATE(132), [sym_highlighted_begin] = STATE(1138), - [sym_insert] = STATE(136), + [sym_insert] = STATE(132), [sym_insert_begin] = STATE(1139), - [sym_delete] = STATE(136), + [sym_delete] = STATE(132), [sym_delete_begin] = STATE(1140), - [sym_hard_line_break] = STATE(134), - [sym__smart_punctuation] = STATE(134), - [sym_autolink] = STATE(134), - [sym_footnote_reference] = STATE(136), + [sym_hard_line_break] = STATE(147), + [sym__smart_punctuation] = STATE(147), + [sym_autolink] = STATE(147), + [sym_footnote_reference] = STATE(132), [sym_footnote_marker_begin] = STATE(1141), - [sym__image] = STATE(136), - [sym_full_reference_image] = STATE(136), - [sym_collapsed_reference_image] = STATE(136), - [sym_inline_image] = STATE(136), - [sym_image_description] = STATE(670), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(136), - [sym_full_reference_link] = STATE(136), - [sym_collapsed_reference_link] = STATE(136), - [sym_inline_link] = STATE(136), - [sym_link_text] = STATE(671), - [sym_span] = STATE(14), - [sym__bracketed_text_begin] = STATE(1207), - [sym__comment_with_spaces] = STATE(134), - [sym_raw_inline] = STATE(134), - [sym_math] = STATE(134), - [sym_verbatim] = STATE(134), - [sym__todo_highlights] = STATE(134), - [sym_todo] = STATE(134), - [sym_note] = STATE(134), - [sym__symbol_fallback] = STATE(134), - [aux_sym__text] = STATE(129), - [aux_sym__inline_repeat1] = STATE(14), - [anon_sym_LBRACE_] = ACTIONS(295), - [anon_sym__] = ACTIONS(297), - [anon_sym_LBRACE_STAR] = ACTIONS(299), - [anon_sym_STAR] = ACTIONS(301), - [anon_sym_LBRACE_CARET] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(303), - [anon_sym_LBRACE_TILDE] = ACTIONS(305), - [anon_sym_TILDE] = ACTIONS(305), - [anon_sym_LBRACE_EQ] = ACTIONS(307), - [anon_sym_LBRACE_PLUS] = ACTIONS(309), - [anon_sym_LBRACE_DASH] = ACTIONS(311), - [anon_sym_BSLASH] = ACTIONS(313), - [sym_quotation_marks] = ACTIONS(315), - [sym_ellipsis] = ACTIONS(315), - [sym_em_dash] = ACTIONS(315), - [sym_en_dash] = ACTIONS(317), - [sym_backslash_escape] = ACTIONS(317), - [anon_sym_LT] = ACTIONS(319), - [sym_symbol] = ACTIONS(315), - [anon_sym_LBRACK_CARET] = ACTIONS(321), - [anon_sym_BANG_LBRACK] = ACTIONS(323), - [anon_sym_LBRACK] = ACTIONS(325), - [anon_sym_LPAREN] = ACTIONS(327), - [anon_sym_DOLLAR] = ACTIONS(329), - [anon_sym_TODO] = ACTIONS(331), - [anon_sym_WIP] = ACTIONS(331), - [anon_sym_NOTE] = ACTIONS(333), - [anon_sym_INFO] = ACTIONS(333), - [anon_sym_XXX] = ACTIONS(333), - [sym_fixme] = ACTIONS(315), - [sym__whitespace1] = ACTIONS(335), - [sym__newline] = ACTIONS(635), - [aux_sym__text_token1] = ACTIONS(339), - [sym__verbatim_begin] = ACTIONS(341), + [sym__image] = STATE(132), + [sym_full_reference_image] = STATE(132), + [sym_collapsed_reference_image] = STATE(132), + [sym_inline_image] = STATE(132), + [sym_image_description] = STATE(682), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(132), + [sym_full_reference_link] = STATE(132), + [sym_collapsed_reference_link] = STATE(132), + [sym_inline_link] = STATE(132), + [sym_link_text] = STATE(689), + [sym_span] = STATE(15), + [sym__bracketed_text_begin] = STATE(1216), + [sym__comment_with_spaces] = STATE(147), + [sym_raw_inline] = STATE(147), + [sym_math] = STATE(147), + [sym_verbatim] = STATE(147), + [sym__todo_highlights] = STATE(147), + [sym_todo] = STATE(147), + [sym_note] = STATE(147), + [sym__symbol_fallback] = STATE(147), + [sym__newline] = STATE(15), + [aux_sym__text] = STATE(121), + [aux_sym__inline_repeat1] = STATE(15), + [anon_sym_LBRACE_] = ACTIONS(105), + [anon_sym__] = ACTIONS(107), + [anon_sym_LBRACE_STAR] = ACTIONS(109), + [anon_sym_STAR] = ACTIONS(111), + [anon_sym_LBRACE_CARET] = ACTIONS(113), + [anon_sym_CARET] = ACTIONS(113), + [anon_sym_LBRACE_TILDE] = ACTIONS(115), + [anon_sym_TILDE] = ACTIONS(115), + [anon_sym_LBRACE_EQ] = ACTIONS(117), + [anon_sym_LBRACE_PLUS] = ACTIONS(119), + [anon_sym_LBRACE_DASH] = ACTIONS(121), + [anon_sym_BSLASH] = ACTIONS(123), + [sym_quotation_marks] = ACTIONS(125), + [sym_ellipsis] = ACTIONS(125), + [sym_em_dash] = ACTIONS(125), + [sym_en_dash] = ACTIONS(127), + [sym_backslash_escape] = ACTIONS(127), + [anon_sym_LT] = ACTIONS(129), + [sym_symbol] = ACTIONS(125), + [anon_sym_LBRACK_CARET] = ACTIONS(131), + [anon_sym_BANG_LBRACK] = ACTIONS(133), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(135), + [anon_sym_LBRACK] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_TODO] = ACTIONS(143), + [anon_sym_WIP] = ACTIONS(143), + [anon_sym_NOTE] = ACTIONS(145), + [anon_sym_INFO] = ACTIONS(145), + [anon_sym_XXX] = ACTIONS(145), + [sym_fixme] = ACTIONS(125), + [sym__whitespace1] = ACTIONS(147), + [anon_sym_LF] = ACTIONS(149), + [aux_sym__text_token1] = ACTIONS(151), + [sym__verbatim_begin] = ACTIONS(153), }, - [25] = { - [sym__element] = STATE(25), + [4] = { + [sym__inline] = STATE(1096), + [sym__element] = STATE(26), + [sym_emphasis] = STATE(149), + [sym_emphasis_begin] = STATE(1194), + [sym_strong] = STATE(149), + [sym_strong_begin] = STATE(1195), + [sym_superscript] = STATE(149), + [sym_superscript_begin] = STATE(1196), + [sym_subscript] = STATE(149), + [sym_subscript_begin] = STATE(1197), + [sym_highlighted] = STATE(149), + [sym_highlighted_begin] = STATE(1198), + [sym_insert] = STATE(149), + [sym_insert_begin] = STATE(1199), + [sym_delete] = STATE(149), + [sym_delete_begin] = STATE(1200), + [sym_hard_line_break] = STATE(148), + [sym__smart_punctuation] = STATE(148), + [sym_autolink] = STATE(148), + [sym_footnote_reference] = STATE(149), + [sym_footnote_marker_begin] = STATE(1201), + [sym__image] = STATE(149), + [sym_full_reference_image] = STATE(149), + [sym_collapsed_reference_image] = STATE(149), + [sym_inline_image] = STATE(149), + [sym_image_description] = STATE(667), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(149), + [sym_full_reference_link] = STATE(149), + [sym_collapsed_reference_link] = STATE(149), + [sym_inline_link] = STATE(149), + [sym_link_text] = STATE(668), + [sym_span] = STATE(26), + [sym__bracketed_text_begin] = STATE(1222), + [sym__comment_with_spaces] = STATE(148), + [sym_raw_inline] = STATE(148), + [sym_math] = STATE(148), + [sym_verbatim] = STATE(148), + [sym__todo_highlights] = STATE(148), + [sym_todo] = STATE(148), + [sym_note] = STATE(148), + [sym__symbol_fallback] = STATE(148), + [sym__newline] = STATE(26), + [aux_sym__text] = STATE(130), + [aux_sym__inline_repeat1] = STATE(26), + [anon_sym_LBRACE_] = ACTIONS(53), + [anon_sym__] = ACTIONS(55), + [anon_sym_LBRACE_STAR] = ACTIONS(57), + [anon_sym_STAR] = ACTIONS(59), + [anon_sym_LBRACE_CARET] = ACTIONS(61), + [anon_sym_CARET] = ACTIONS(61), + [anon_sym_LBRACE_TILDE] = ACTIONS(63), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_LBRACE_EQ] = ACTIONS(65), + [anon_sym_LBRACE_PLUS] = ACTIONS(67), + [anon_sym_LBRACE_DASH] = ACTIONS(69), + [anon_sym_BSLASH] = ACTIONS(71), + [sym_quotation_marks] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(73), + [sym_em_dash] = ACTIONS(73), + [sym_en_dash] = ACTIONS(75), + [sym_backslash_escape] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [sym_symbol] = ACTIONS(73), + [anon_sym_LBRACK_CARET] = ACTIONS(79), + [anon_sym_BANG_LBRACK] = ACTIONS(81), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), + [anon_sym_DOLLAR] = ACTIONS(89), + [anon_sym_TODO] = ACTIONS(91), + [anon_sym_WIP] = ACTIONS(91), + [anon_sym_NOTE] = ACTIONS(93), + [anon_sym_INFO] = ACTIONS(93), + [anon_sym_XXX] = ACTIONS(93), + [sym_fixme] = ACTIONS(73), + [sym__whitespace1] = ACTIONS(95), + [anon_sym_LF] = ACTIONS(97), + [aux_sym__text_token1] = ACTIONS(99), + [sym__verbatim_begin] = ACTIONS(101), + }, + [5] = { + [sym__element] = STATE(14), [sym_emphasis] = STATE(146), - [sym_emphasis_begin] = STATE(1144), + [sym_emphasis_begin] = STATE(1203), [sym_strong] = STATE(146), - [sym_strong_begin] = STATE(1145), + [sym_strong_begin] = STATE(883), [sym_superscript] = STATE(146), - [sym_superscript_begin] = STATE(1146), + [sym_superscript_begin] = STATE(898), [sym_subscript] = STATE(146), - [sym_subscript_begin] = STATE(1147), + [sym_subscript_begin] = STATE(903), [sym_highlighted] = STATE(146), - [sym_highlighted_begin] = STATE(1148), + [sym_highlighted_begin] = STATE(915), [sym_insert] = STATE(146), - [sym_insert_begin] = STATE(1149), + [sym_insert_begin] = STATE(917), [sym_delete] = STATE(146), - [sym_delete_begin] = STATE(1150), + [sym_delete_begin] = STATE(937), [sym_hard_line_break] = STATE(144), [sym__smart_punctuation] = STATE(144), [sym_autolink] = STATE(144), [sym_footnote_reference] = STATE(146), - [sym_footnote_marker_begin] = STATE(1151), + [sym_footnote_marker_begin] = STATE(951), [sym__image] = STATE(146), [sym_full_reference_image] = STATE(146), [sym_collapsed_reference_image] = STATE(146), [sym_inline_image] = STATE(146), - [sym_image_description] = STATE(673), - [sym__image_description_begin] = STATE(1079), + [sym_image_description] = STATE(681), + [sym__image_description_begin] = STATE(958), [sym__link] = STATE(146), [sym_full_reference_link] = STATE(146), [sym_collapsed_reference_link] = STATE(146), [sym_inline_link] = STATE(146), - [sym_link_text] = STATE(662), - [sym_span] = STATE(25), - [sym__bracketed_text_begin] = STATE(1208), + [sym_link_text] = STATE(657), + [sym_span] = STATE(14), + [sym__bracketed_text_begin] = STATE(960), [sym__comment_with_spaces] = STATE(144), [sym_raw_inline] = STATE(144), [sym_math] = STATE(144), @@ -7175,479 +5687,573 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(144), [sym_note] = STATE(144), [sym__symbol_fallback] = STATE(144), - [aux_sym__text] = STATE(128), - [aux_sym__inline_repeat1] = STATE(25), - [anon_sym_LBRACE_] = ACTIONS(637), - [anon_sym__] = ACTIONS(640), - [anon_sym_LBRACE_STAR] = ACTIONS(643), - [anon_sym_STAR] = ACTIONS(646), - [anon_sym_LBRACE_CARET] = ACTIONS(649), - [anon_sym_CARET] = ACTIONS(649), - [anon_sym_LBRACE_TILDE] = ACTIONS(652), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_LBRACE_EQ] = ACTIONS(655), - [anon_sym_LBRACE_PLUS] = ACTIONS(658), - [anon_sym_LBRACE_DASH] = ACTIONS(661), - [anon_sym_BSLASH] = ACTIONS(664), - [sym_quotation_marks] = ACTIONS(667), - [sym_ellipsis] = ACTIONS(667), - [sym_em_dash] = ACTIONS(667), - [sym_en_dash] = ACTIONS(670), - [sym_backslash_escape] = ACTIONS(670), - [anon_sym_LT] = ACTIONS(673), - [sym_symbol] = ACTIONS(667), - [anon_sym_LBRACK_CARET] = ACTIONS(676), - [anon_sym_BANG_LBRACK] = ACTIONS(679), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_LPAREN] = ACTIONS(685), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_TODO] = ACTIONS(691), - [anon_sym_WIP] = ACTIONS(691), - [anon_sym_NOTE] = ACTIONS(694), - [anon_sym_INFO] = ACTIONS(694), - [anon_sym_XXX] = ACTIONS(694), - [sym_fixme] = ACTIONS(667), - [sym__whitespace1] = ACTIONS(697), - [sym__newline] = ACTIONS(700), - [aux_sym__text_token1] = ACTIONS(703), - [sym__verbatim_begin] = ACTIONS(706), - [sym_highlighted_end] = ACTIONS(221), - }, - [26] = { - [sym__inline] = STATE(932), - [sym__element] = STATE(64), - [sym_emphasis] = STATE(133), - [sym_emphasis_begin] = STATE(1124), - [sym_strong] = STATE(133), - [sym_strong_begin] = STATE(1125), - [sym_superscript] = STATE(133), - [sym_superscript_begin] = STATE(1126), - [sym_subscript] = STATE(133), - [sym_subscript_begin] = STATE(1127), - [sym_highlighted] = STATE(133), - [sym_highlighted_begin] = STATE(1128), - [sym_insert] = STATE(133), - [sym_insert_begin] = STATE(1129), - [sym_delete] = STATE(133), - [sym_delete_begin] = STATE(1130), - [sym_hard_line_break] = STATE(140), - [sym__smart_punctuation] = STATE(140), - [sym_autolink] = STATE(140), - [sym_footnote_reference] = STATE(133), - [sym_footnote_marker_begin] = STATE(1131), - [sym__image] = STATE(133), - [sym_full_reference_image] = STATE(133), - [sym_collapsed_reference_image] = STATE(133), - [sym_inline_image] = STATE(133), - [sym_image_description] = STATE(663), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(133), - [sym_full_reference_link] = STATE(133), - [sym_collapsed_reference_link] = STATE(133), - [sym_inline_link] = STATE(133), - [sym_link_text] = STATE(669), - [sym_span] = STATE(64), - [sym__bracketed_text_begin] = STATE(1206), - [sym__comment_with_spaces] = STATE(140), - [sym_raw_inline] = STATE(140), - [sym_math] = STATE(140), - [sym_verbatim] = STATE(140), - [sym__todo_highlights] = STATE(140), - [sym_todo] = STATE(140), - [sym_note] = STATE(140), - [sym__symbol_fallback] = STATE(140), - [aux_sym__text] = STATE(122), - [aux_sym__inline_repeat1] = STATE(64), - [anon_sym_LBRACE_] = ACTIONS(537), - [anon_sym__] = ACTIONS(539), - [anon_sym_LBRACE_STAR] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(543), - [anon_sym_LBRACE_CARET] = ACTIONS(545), - [anon_sym_CARET] = ACTIONS(545), - [anon_sym_LBRACE_TILDE] = ACTIONS(547), - [anon_sym_TILDE] = ACTIONS(547), - [anon_sym_LBRACE_EQ] = ACTIONS(549), - [anon_sym_LBRACE_PLUS] = ACTIONS(551), - [anon_sym_LBRACE_DASH] = ACTIONS(553), - [anon_sym_BSLASH] = ACTIONS(555), - [sym_quotation_marks] = ACTIONS(557), - [sym_ellipsis] = ACTIONS(557), - [sym_em_dash] = ACTIONS(557), - [sym_en_dash] = ACTIONS(559), - [sym_backslash_escape] = ACTIONS(559), - [anon_sym_LT] = ACTIONS(561), - [sym_symbol] = ACTIONS(557), - [anon_sym_LBRACK_CARET] = ACTIONS(563), - [anon_sym_BANG_LBRACK] = ACTIONS(565), - [anon_sym_LBRACK] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_DOLLAR] = ACTIONS(571), - [anon_sym_TODO] = ACTIONS(573), - [anon_sym_WIP] = ACTIONS(573), - [anon_sym_NOTE] = ACTIONS(575), - [anon_sym_INFO] = ACTIONS(575), - [anon_sym_XXX] = ACTIONS(575), - [sym_fixme] = ACTIONS(557), - [sym__whitespace1] = ACTIONS(577), - [sym__newline] = ACTIONS(579), - [aux_sym__text_token1] = ACTIONS(581), - [sym__verbatim_begin] = ACTIONS(583), + [sym__newline] = STATE(14), + [aux_sym__text] = STATE(124), + [aux_sym__inline_repeat1] = STATE(14), + [ts_builtin_sym_end] = ACTIONS(155), + [anon_sym_LBRACE_] = ACTIONS(3), + [anon_sym__] = ACTIONS(5), + [anon_sym_LBRACE_STAR] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(9), + [anon_sym_LBRACE_CARET] = ACTIONS(11), + [anon_sym_CARET] = ACTIONS(11), + [anon_sym_LBRACE_TILDE] = ACTIONS(13), + [anon_sym_TILDE] = ACTIONS(13), + [anon_sym_LBRACE_EQ] = ACTIONS(15), + [anon_sym_LBRACE_PLUS] = ACTIONS(17), + [anon_sym_LBRACE_DASH] = ACTIONS(19), + [anon_sym_BSLASH] = ACTIONS(21), + [sym_quotation_marks] = ACTIONS(23), + [sym_ellipsis] = ACTIONS(23), + [sym_em_dash] = ACTIONS(23), + [sym_en_dash] = ACTIONS(25), + [sym_backslash_escape] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(27), + [sym_symbol] = ACTIONS(23), + [anon_sym_LBRACK_CARET] = ACTIONS(29), + [anon_sym_BANG_LBRACK] = ACTIONS(31), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(39), + [anon_sym_TODO] = ACTIONS(41), + [anon_sym_WIP] = ACTIONS(41), + [anon_sym_NOTE] = ACTIONS(43), + [anon_sym_INFO] = ACTIONS(43), + [anon_sym_XXX] = ACTIONS(43), + [sym_fixme] = ACTIONS(23), + [sym__whitespace1] = ACTIONS(45), + [anon_sym_LF] = ACTIONS(157), + [aux_sym__text_token1] = ACTIONS(49), + [sym__verbatim_begin] = ACTIONS(51), }, - [27] = { - [sym__inline_without_trailing_space] = STATE(931), - [sym__element] = STATE(550), - [sym_emphasis] = STATE(137), + [6] = { + [sym__inline_without_trailing_space] = STATE(1102), + [sym__element] = STATE(543), + [sym_emphasis] = STATE(150), [sym_emphasis_begin] = STATE(1114), - [sym_strong] = STATE(137), + [sym_strong] = STATE(150), [sym_strong_begin] = STATE(1115), - [sym_superscript] = STATE(137), + [sym_superscript] = STATE(150), [sym_superscript_begin] = STATE(1116), - [sym_subscript] = STATE(137), + [sym_subscript] = STATE(150), [sym_subscript_begin] = STATE(1117), - [sym_highlighted] = STATE(137), + [sym_highlighted] = STATE(150), [sym_highlighted_begin] = STATE(1118), - [sym_insert] = STATE(137), + [sym_insert] = STATE(150), [sym_insert_begin] = STATE(1119), - [sym_delete] = STATE(137), + [sym_delete] = STATE(150), [sym_delete_begin] = STATE(1120), - [sym_hard_line_break] = STATE(131), - [sym__smart_punctuation] = STATE(131), - [sym_autolink] = STATE(131), - [sym_footnote_reference] = STATE(137), + [sym_hard_line_break] = STATE(133), + [sym__smart_punctuation] = STATE(133), + [sym_autolink] = STATE(133), + [sym_footnote_reference] = STATE(150), [sym_footnote_marker_begin] = STATE(1121), - [sym__image] = STATE(137), - [sym_full_reference_image] = STATE(137), - [sym_collapsed_reference_image] = STATE(137), - [sym_inline_image] = STATE(137), - [sym_image_description] = STATE(649), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(137), - [sym_full_reference_link] = STATE(137), - [sym_collapsed_reference_link] = STATE(137), - [sym_inline_link] = STATE(137), - [sym_link_text] = STATE(650), - [sym_span] = STATE(550), - [sym__bracketed_text_begin] = STATE(1205), - [sym__comment_with_spaces] = STATE(131), - [sym_raw_inline] = STATE(131), - [sym_math] = STATE(131), - [sym_verbatim] = STATE(131), - [sym__todo_highlights] = STATE(131), - [sym_todo] = STATE(131), - [sym_note] = STATE(131), - [sym__symbol_fallback] = STATE(131), - [aux_sym__text] = STATE(130), + [sym__image] = STATE(150), + [sym_full_reference_image] = STATE(150), + [sym_collapsed_reference_image] = STATE(150), + [sym_inline_image] = STATE(150), + [sym_image_description] = STATE(678), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(150), + [sym_full_reference_link] = STATE(150), + [sym_collapsed_reference_link] = STATE(150), + [sym_inline_link] = STATE(150), + [sym_link_text] = STATE(679), + [sym_span] = STATE(543), + [sym__bracketed_text_begin] = STATE(1214), + [sym__comment_with_spaces] = STATE(133), + [sym_raw_inline] = STATE(133), + [sym_math] = STATE(133), + [sym_verbatim] = STATE(133), + [sym__todo_highlights] = STATE(133), + [sym_todo] = STATE(133), + [sym_note] = STATE(133), + [sym__symbol_fallback] = STATE(133), + [sym__newline] = STATE(119), + [aux_sym__text] = STATE(122), [aux_sym__inline_repeat1] = STATE(119), - [anon_sym_LBRACE_] = ACTIONS(489), - [anon_sym__] = ACTIONS(491), - [anon_sym_LBRACE_STAR] = ACTIONS(493), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_LBRACE_CARET] = ACTIONS(497), - [anon_sym_CARET] = ACTIONS(497), - [anon_sym_LBRACE_TILDE] = ACTIONS(499), - [anon_sym_TILDE] = ACTIONS(499), - [anon_sym_LBRACE_EQ] = ACTIONS(501), - [anon_sym_LBRACE_PLUS] = ACTIONS(503), - [anon_sym_LBRACE_DASH] = ACTIONS(505), - [anon_sym_BSLASH] = ACTIONS(507), - [sym_quotation_marks] = ACTIONS(509), - [sym_ellipsis] = ACTIONS(509), - [sym_em_dash] = ACTIONS(509), - [sym_en_dash] = ACTIONS(511), - [sym_backslash_escape] = ACTIONS(511), - [anon_sym_LT] = ACTIONS(513), - [sym_symbol] = ACTIONS(509), - [anon_sym_LBRACK_CARET] = ACTIONS(515), - [anon_sym_BANG_LBRACK] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(519), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_DOLLAR] = ACTIONS(523), - [anon_sym_TODO] = ACTIONS(525), - [anon_sym_WIP] = ACTIONS(525), - [anon_sym_NOTE] = ACTIONS(527), - [anon_sym_INFO] = ACTIONS(527), - [anon_sym_XXX] = ACTIONS(527), - [sym_fixme] = ACTIONS(509), - [sym__whitespace1] = ACTIONS(529), - [sym__newline] = ACTIONS(531), - [aux_sym__text_token1] = ACTIONS(533), - [sym__verbatim_begin] = ACTIONS(535), + [anon_sym_LBRACE_] = ACTIONS(159), + [anon_sym__] = ACTIONS(161), + [anon_sym_LBRACE_STAR] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(165), + [anon_sym_LBRACE_CARET] = ACTIONS(167), + [anon_sym_CARET] = ACTIONS(167), + [anon_sym_LBRACE_TILDE] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(169), + [anon_sym_LBRACE_EQ] = ACTIONS(171), + [anon_sym_LBRACE_PLUS] = ACTIONS(173), + [anon_sym_LBRACE_DASH] = ACTIONS(175), + [anon_sym_BSLASH] = ACTIONS(177), + [sym_quotation_marks] = ACTIONS(179), + [sym_ellipsis] = ACTIONS(179), + [sym_em_dash] = ACTIONS(179), + [sym_en_dash] = ACTIONS(181), + [sym_backslash_escape] = ACTIONS(181), + [anon_sym_LT] = ACTIONS(183), + [sym_symbol] = ACTIONS(179), + [anon_sym_LBRACK_CARET] = ACTIONS(185), + [anon_sym_BANG_LBRACK] = ACTIONS(187), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(189), + [anon_sym_LBRACK] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(195), + [anon_sym_TODO] = ACTIONS(197), + [anon_sym_WIP] = ACTIONS(197), + [anon_sym_NOTE] = ACTIONS(199), + [anon_sym_INFO] = ACTIONS(199), + [anon_sym_XXX] = ACTIONS(199), + [sym_fixme] = ACTIONS(179), + [sym__whitespace1] = ACTIONS(201), + [anon_sym_LF] = ACTIONS(203), + [aux_sym__text_token1] = ACTIONS(205), + [sym__verbatim_begin] = ACTIONS(207), }, - [28] = { - [sym__inline_without_trailing_space] = STATE(930), - [sym__element] = STATE(594), - [sym_emphasis] = STATE(149), - [sym_emphasis_begin] = STATE(1104), - [sym_strong] = STATE(149), - [sym_strong_begin] = STATE(1105), - [sym_superscript] = STATE(149), - [sym_superscript_begin] = STATE(1106), - [sym_subscript] = STATE(149), - [sym_subscript_begin] = STATE(1107), - [sym_highlighted] = STATE(149), - [sym_highlighted_begin] = STATE(1108), - [sym_insert] = STATE(149), - [sym_insert_begin] = STATE(1109), - [sym_delete] = STATE(149), - [sym_delete_begin] = STATE(1110), - [sym_hard_line_break] = STATE(143), - [sym__smart_punctuation] = STATE(143), - [sym_autolink] = STATE(143), - [sym_footnote_reference] = STATE(149), - [sym_footnote_marker_begin] = STATE(1111), - [sym__image] = STATE(149), - [sym_full_reference_image] = STATE(149), - [sym_collapsed_reference_image] = STATE(149), - [sym_inline_image] = STATE(149), - [sym_image_description] = STATE(658), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(149), - [sym_full_reference_link] = STATE(149), - [sym_collapsed_reference_link] = STATE(149), - [sym_inline_link] = STATE(149), - [sym_link_text] = STATE(672), - [sym_span] = STATE(594), - [sym__bracketed_text_begin] = STATE(1204), - [sym__comment_with_spaces] = STATE(143), - [sym_raw_inline] = STATE(143), - [sym_math] = STATE(143), - [sym_verbatim] = STATE(143), - [sym__todo_highlights] = STATE(143), - [sym_todo] = STATE(143), - [sym_note] = STATE(143), - [sym__symbol_fallback] = STATE(143), - [aux_sym__text] = STATE(127), - [aux_sym__inline_repeat1] = STATE(120), - [anon_sym_LBRACE_] = ACTIONS(441), - [anon_sym__] = ACTIONS(443), - [anon_sym_LBRACE_STAR] = ACTIONS(445), - [anon_sym_STAR] = ACTIONS(447), - [anon_sym_LBRACE_CARET] = ACTIONS(449), - [anon_sym_CARET] = ACTIONS(449), - [anon_sym_LBRACE_TILDE] = ACTIONS(451), - [anon_sym_TILDE] = ACTIONS(451), - [anon_sym_LBRACE_EQ] = ACTIONS(453), - [anon_sym_LBRACE_PLUS] = ACTIONS(455), - [anon_sym_LBRACE_DASH] = ACTIONS(457), - [anon_sym_BSLASH] = ACTIONS(459), - [sym_quotation_marks] = ACTIONS(461), - [sym_ellipsis] = ACTIONS(461), - [sym_em_dash] = ACTIONS(461), - [sym_en_dash] = ACTIONS(463), - [sym_backslash_escape] = ACTIONS(463), - [anon_sym_LT] = ACTIONS(465), - [sym_symbol] = ACTIONS(461), - [anon_sym_LBRACK_CARET] = ACTIONS(467), - [anon_sym_BANG_LBRACK] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(471), - [anon_sym_LPAREN] = ACTIONS(473), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_TODO] = ACTIONS(477), - [anon_sym_WIP] = ACTIONS(477), - [anon_sym_NOTE] = ACTIONS(479), - [anon_sym_INFO] = ACTIONS(479), - [anon_sym_XXX] = ACTIONS(479), - [sym_fixme] = ACTIONS(461), - [sym__whitespace1] = ACTIONS(481), - [sym__newline] = ACTIONS(483), - [aux_sym__text_token1] = ACTIONS(485), - [sym__verbatim_begin] = ACTIONS(487), + [7] = { + [sym__inline_without_trailing_space] = STATE(1213), + [sym__element] = STATE(570), + [sym_emphasis] = STATE(142), + [sym_emphasis_begin] = STATE(1124), + [sym_strong] = STATE(142), + [sym_strong_begin] = STATE(1125), + [sym_superscript] = STATE(142), + [sym_superscript_begin] = STATE(1126), + [sym_subscript] = STATE(142), + [sym_subscript_begin] = STATE(1127), + [sym_highlighted] = STATE(142), + [sym_highlighted_begin] = STATE(1128), + [sym_insert] = STATE(142), + [sym_insert_begin] = STATE(1129), + [sym_delete] = STATE(142), + [sym_delete_begin] = STATE(1130), + [sym_hard_line_break] = STATE(137), + [sym__smart_punctuation] = STATE(137), + [sym_autolink] = STATE(137), + [sym_footnote_reference] = STATE(142), + [sym_footnote_marker_begin] = STATE(1131), + [sym__image] = STATE(142), + [sym_full_reference_image] = STATE(142), + [sym_collapsed_reference_image] = STATE(142), + [sym_inline_image] = STATE(142), + [sym_image_description] = STATE(687), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(142), + [sym_full_reference_link] = STATE(142), + [sym_collapsed_reference_link] = STATE(142), + [sym_inline_link] = STATE(142), + [sym_link_text] = STATE(654), + [sym_span] = STATE(570), + [sym__bracketed_text_begin] = STATE(1215), + [sym__comment_with_spaces] = STATE(137), + [sym_raw_inline] = STATE(137), + [sym_math] = STATE(137), + [sym_verbatim] = STATE(137), + [sym__todo_highlights] = STATE(137), + [sym_todo] = STATE(137), + [sym_note] = STATE(137), + [sym__symbol_fallback] = STATE(137), + [sym__newline] = STATE(118), + [aux_sym__text] = STATE(128), + [aux_sym__inline_repeat1] = STATE(118), + [anon_sym_LBRACE_] = ACTIONS(209), + [anon_sym__] = ACTIONS(211), + [anon_sym_LBRACE_STAR] = ACTIONS(213), + [anon_sym_STAR] = ACTIONS(215), + [anon_sym_LBRACE_CARET] = ACTIONS(217), + [anon_sym_CARET] = ACTIONS(217), + [anon_sym_LBRACE_TILDE] = ACTIONS(219), + [anon_sym_TILDE] = ACTIONS(219), + [anon_sym_LBRACE_EQ] = ACTIONS(221), + [anon_sym_LBRACE_PLUS] = ACTIONS(223), + [anon_sym_LBRACE_DASH] = ACTIONS(225), + [anon_sym_BSLASH] = ACTIONS(227), + [sym_quotation_marks] = ACTIONS(229), + [sym_ellipsis] = ACTIONS(229), + [sym_em_dash] = ACTIONS(229), + [sym_en_dash] = ACTIONS(231), + [sym_backslash_escape] = ACTIONS(231), + [anon_sym_LT] = ACTIONS(233), + [sym_symbol] = ACTIONS(229), + [anon_sym_LBRACK_CARET] = ACTIONS(235), + [anon_sym_BANG_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_LPAREN] = ACTIONS(243), + [anon_sym_DOLLAR] = ACTIONS(245), + [anon_sym_TODO] = ACTIONS(247), + [anon_sym_WIP] = ACTIONS(247), + [anon_sym_NOTE] = ACTIONS(249), + [anon_sym_INFO] = ACTIONS(249), + [anon_sym_XXX] = ACTIONS(249), + [sym_fixme] = ACTIONS(229), + [sym__whitespace1] = ACTIONS(251), + [anon_sym_LF] = ACTIONS(253), + [aux_sym__text_token1] = ACTIONS(255), + [sym__verbatim_begin] = ACTIONS(257), }, - [29] = { - [sym__inline] = STATE(904), - [sym__element] = STATE(46), + [8] = { + [sym__inline] = STATE(974), + [sym__element] = STATE(16), + [sym_emphasis] = STATE(143), + [sym_emphasis_begin] = STATE(1144), + [sym_strong] = STATE(143), + [sym_strong_begin] = STATE(1145), + [sym_superscript] = STATE(143), + [sym_superscript_begin] = STATE(1146), + [sym_subscript] = STATE(143), + [sym_subscript_begin] = STATE(1147), + [sym_highlighted] = STATE(143), + [sym_highlighted_begin] = STATE(1148), + [sym_insert] = STATE(143), + [sym_insert_begin] = STATE(1149), + [sym_delete] = STATE(143), + [sym_delete_begin] = STATE(1150), + [sym_hard_line_break] = STATE(141), + [sym__smart_punctuation] = STATE(141), + [sym_autolink] = STATE(141), + [sym_footnote_reference] = STATE(143), + [sym_footnote_marker_begin] = STATE(1151), + [sym__image] = STATE(143), + [sym_full_reference_image] = STATE(143), + [sym_collapsed_reference_image] = STATE(143), + [sym_inline_image] = STATE(143), + [sym_image_description] = STATE(660), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(143), + [sym_full_reference_link] = STATE(143), + [sym_collapsed_reference_link] = STATE(143), + [sym_inline_link] = STATE(143), + [sym_link_text] = STATE(661), + [sym_span] = STATE(16), + [sym__bracketed_text_begin] = STATE(1217), + [sym__comment_with_spaces] = STATE(141), + [sym_raw_inline] = STATE(141), + [sym_math] = STATE(141), + [sym_verbatim] = STATE(141), + [sym__todo_highlights] = STATE(141), + [sym_todo] = STATE(141), + [sym_note] = STATE(141), + [sym__symbol_fallback] = STATE(141), + [sym__newline] = STATE(16), + [aux_sym__text] = STATE(125), + [aux_sym__inline_repeat1] = STATE(16), + [anon_sym_LBRACE_] = ACTIONS(259), + [anon_sym__] = ACTIONS(261), + [anon_sym_LBRACE_STAR] = ACTIONS(263), + [anon_sym_STAR] = ACTIONS(265), + [anon_sym_LBRACE_CARET] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_LBRACE_TILDE] = ACTIONS(269), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_LBRACE_EQ] = ACTIONS(271), + [anon_sym_LBRACE_PLUS] = ACTIONS(273), + [anon_sym_LBRACE_DASH] = ACTIONS(275), + [anon_sym_BSLASH] = ACTIONS(277), + [sym_quotation_marks] = ACTIONS(279), + [sym_ellipsis] = ACTIONS(279), + [sym_em_dash] = ACTIONS(279), + [sym_en_dash] = ACTIONS(281), + [sym_backslash_escape] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(283), + [sym_symbol] = ACTIONS(279), + [anon_sym_LBRACK_CARET] = ACTIONS(285), + [anon_sym_BANG_LBRACK] = ACTIONS(287), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_DOLLAR] = ACTIONS(295), + [anon_sym_TODO] = ACTIONS(297), + [anon_sym_WIP] = ACTIONS(297), + [anon_sym_NOTE] = ACTIONS(299), + [anon_sym_INFO] = ACTIONS(299), + [anon_sym_XXX] = ACTIONS(299), + [sym_fixme] = ACTIONS(279), + [sym__whitespace1] = ACTIONS(301), + [anon_sym_LF] = ACTIONS(303), + [aux_sym__text_token1] = ACTIONS(305), + [sym__verbatim_begin] = ACTIONS(307), + }, + [9] = { + [sym__inline] = STATE(888), + [sym__element] = STATE(18), [sym_emphasis] = STATE(135), - [sym_emphasis_begin] = STATE(1174), + [sym_emphasis_begin] = STATE(1154), [sym_strong] = STATE(135), - [sym_strong_begin] = STATE(1175), + [sym_strong_begin] = STATE(1155), [sym_superscript] = STATE(135), - [sym_superscript_begin] = STATE(1176), + [sym_superscript_begin] = STATE(1156), [sym_subscript] = STATE(135), - [sym_subscript_begin] = STATE(1177), + [sym_subscript_begin] = STATE(1157), [sym_highlighted] = STATE(135), - [sym_highlighted_begin] = STATE(1178), + [sym_highlighted_begin] = STATE(1158), [sym_insert] = STATE(135), - [sym_insert_begin] = STATE(1179), + [sym_insert_begin] = STATE(1159), [sym_delete] = STATE(135), - [sym_delete_begin] = STATE(1180), - [sym_hard_line_break] = STATE(138), - [sym__smart_punctuation] = STATE(138), - [sym_autolink] = STATE(138), + [sym_delete_begin] = STATE(1160), + [sym_hard_line_break] = STATE(134), + [sym__smart_punctuation] = STATE(134), + [sym_autolink] = STATE(134), [sym_footnote_reference] = STATE(135), - [sym_footnote_marker_begin] = STATE(1181), + [sym_footnote_marker_begin] = STATE(1161), [sym__image] = STATE(135), [sym_full_reference_image] = STATE(135), [sym_collapsed_reference_image] = STATE(135), [sym_inline_image] = STATE(135), - [sym_image_description] = STATE(656), - [sym__image_description_begin] = STATE(1079), + [sym_image_description] = STATE(677), + [sym__image_description_begin] = STATE(958), [sym__link] = STATE(135), [sym_full_reference_link] = STATE(135), [sym_collapsed_reference_link] = STATE(135), [sym_inline_link] = STATE(135), - [sym_link_text] = STATE(654), - [sym_span] = STATE(46), - [sym__bracketed_text_begin] = STATE(1211), - [sym__comment_with_spaces] = STATE(138), - [sym_raw_inline] = STATE(138), - [sym_math] = STATE(138), - [sym_verbatim] = STATE(138), - [sym__todo_highlights] = STATE(138), - [sym_todo] = STATE(138), - [sym_note] = STATE(138), - [sym__symbol_fallback] = STATE(138), - [aux_sym__text] = STATE(121), - [aux_sym__inline_repeat1] = STATE(46), - [anon_sym_LBRACE_] = ACTIONS(345), - [anon_sym__] = ACTIONS(347), - [anon_sym_LBRACE_STAR] = ACTIONS(349), - [anon_sym_STAR] = ACTIONS(351), - [anon_sym_LBRACE_CARET] = ACTIONS(353), - [anon_sym_CARET] = ACTIONS(353), - [anon_sym_LBRACE_TILDE] = ACTIONS(355), - [anon_sym_TILDE] = ACTIONS(355), - [anon_sym_LBRACE_EQ] = ACTIONS(357), - [anon_sym_LBRACE_PLUS] = ACTIONS(359), - [anon_sym_LBRACE_DASH] = ACTIONS(361), - [anon_sym_BSLASH] = ACTIONS(363), - [sym_quotation_marks] = ACTIONS(365), - [sym_ellipsis] = ACTIONS(365), - [sym_em_dash] = ACTIONS(365), - [sym_en_dash] = ACTIONS(367), - [sym_backslash_escape] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(369), - [sym_symbol] = ACTIONS(365), - [anon_sym_LBRACK_CARET] = ACTIONS(371), - [anon_sym_BANG_LBRACK] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LPAREN] = ACTIONS(377), - [anon_sym_DOLLAR] = ACTIONS(379), - [anon_sym_TODO] = ACTIONS(381), - [anon_sym_WIP] = ACTIONS(381), - [anon_sym_NOTE] = ACTIONS(383), - [anon_sym_INFO] = ACTIONS(383), - [anon_sym_XXX] = ACTIONS(383), - [sym_fixme] = ACTIONS(365), - [sym__whitespace1] = ACTIONS(385), - [sym__newline] = ACTIONS(387), - [aux_sym__text_token1] = ACTIONS(389), - [sym__verbatim_begin] = ACTIONS(391), + [sym_link_text] = STATE(680), + [sym_span] = STATE(18), + [sym__bracketed_text_begin] = STATE(1218), + [sym__comment_with_spaces] = STATE(134), + [sym_raw_inline] = STATE(134), + [sym_math] = STATE(134), + [sym_verbatim] = STATE(134), + [sym__todo_highlights] = STATE(134), + [sym_todo] = STATE(134), + [sym_note] = STATE(134), + [sym__symbol_fallback] = STATE(134), + [sym__newline] = STATE(18), + [aux_sym__text] = STATE(123), + [aux_sym__inline_repeat1] = STATE(18), + [anon_sym_LBRACE_] = ACTIONS(309), + [anon_sym__] = ACTIONS(311), + [anon_sym_LBRACE_STAR] = ACTIONS(313), + [anon_sym_STAR] = ACTIONS(315), + [anon_sym_LBRACE_CARET] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_LBRACE_TILDE] = ACTIONS(319), + [anon_sym_TILDE] = ACTIONS(319), + [anon_sym_LBRACE_EQ] = ACTIONS(321), + [anon_sym_LBRACE_PLUS] = ACTIONS(323), + [anon_sym_LBRACE_DASH] = ACTIONS(325), + [anon_sym_BSLASH] = ACTIONS(327), + [sym_quotation_marks] = ACTIONS(329), + [sym_ellipsis] = ACTIONS(329), + [sym_em_dash] = ACTIONS(329), + [sym_en_dash] = ACTIONS(331), + [sym_backslash_escape] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [sym_symbol] = ACTIONS(329), + [anon_sym_LBRACK_CARET] = ACTIONS(335), + [anon_sym_BANG_LBRACK] = ACTIONS(337), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(339), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_DOLLAR] = ACTIONS(345), + [anon_sym_TODO] = ACTIONS(347), + [anon_sym_WIP] = ACTIONS(347), + [anon_sym_NOTE] = ACTIONS(349), + [anon_sym_INFO] = ACTIONS(349), + [anon_sym_XXX] = ACTIONS(349), + [sym_fixme] = ACTIONS(329), + [sym__whitespace1] = ACTIONS(351), + [anon_sym_LF] = ACTIONS(353), + [aux_sym__text_token1] = ACTIONS(355), + [sym__verbatim_begin] = ACTIONS(357), }, - [30] = { - [sym__element] = STATE(49), - [sym_emphasis] = STATE(132), + [10] = { + [sym__inline] = STATE(965), + [sym__element] = STATE(20), + [sym_emphasis] = STATE(136), [sym_emphasis_begin] = STATE(1164), - [sym_strong] = STATE(132), + [sym_strong] = STATE(136), [sym_strong_begin] = STATE(1165), - [sym_superscript] = STATE(132), + [sym_superscript] = STATE(136), [sym_superscript_begin] = STATE(1166), - [sym_subscript] = STATE(132), + [sym_subscript] = STATE(136), [sym_subscript_begin] = STATE(1167), - [sym_highlighted] = STATE(132), + [sym_highlighted] = STATE(136), [sym_highlighted_begin] = STATE(1168), - [sym_insert] = STATE(132), + [sym_insert] = STATE(136), [sym_insert_begin] = STATE(1169), - [sym_delete] = STATE(132), + [sym_delete] = STATE(136), [sym_delete_begin] = STATE(1170), - [sym_hard_line_break] = STATE(142), - [sym__smart_punctuation] = STATE(142), - [sym_autolink] = STATE(142), - [sym_footnote_reference] = STATE(132), + [sym_hard_line_break] = STATE(138), + [sym__smart_punctuation] = STATE(138), + [sym_autolink] = STATE(138), + [sym_footnote_reference] = STATE(136), [sym_footnote_marker_begin] = STATE(1171), - [sym__image] = STATE(132), - [sym_full_reference_image] = STATE(132), - [sym_collapsed_reference_image] = STATE(132), - [sym_inline_image] = STATE(132), - [sym_image_description] = STATE(660), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(132), - [sym_full_reference_link] = STATE(132), - [sym_collapsed_reference_link] = STATE(132), - [sym_inline_link] = STATE(132), - [sym_link_text] = STATE(659), - [sym_span] = STATE(49), - [sym__bracketed_text_begin] = STATE(1210), - [sym__comment_with_spaces] = STATE(142), - [sym_raw_inline] = STATE(142), - [sym_math] = STATE(142), - [sym_verbatim] = STATE(142), - [sym__todo_highlights] = STATE(142), - [sym_todo] = STATE(142), - [sym_note] = STATE(142), - [sym__symbol_fallback] = STATE(142), + [sym__image] = STATE(136), + [sym_full_reference_image] = STATE(136), + [sym_collapsed_reference_image] = STATE(136), + [sym_inline_image] = STATE(136), + [sym_image_description] = STATE(685), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(136), + [sym_full_reference_link] = STATE(136), + [sym_collapsed_reference_link] = STATE(136), + [sym_inline_link] = STATE(136), + [sym_link_text] = STATE(686), + [sym_span] = STATE(20), + [sym__bracketed_text_begin] = STATE(1219), + [sym__comment_with_spaces] = STATE(138), + [sym_raw_inline] = STATE(138), + [sym_math] = STATE(138), + [sym_verbatim] = STATE(138), + [sym__todo_highlights] = STATE(138), + [sym_todo] = STATE(138), + [sym_note] = STATE(138), + [sym__symbol_fallback] = STATE(138), + [sym__newline] = STATE(20), [aux_sym__text] = STATE(126), - [aux_sym__inline_repeat1] = STATE(49), - [anon_sym_LBRACE_] = ACTIONS(393), - [anon_sym__] = ACTIONS(395), - [anon_sym_LBRACE_STAR] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(399), - [anon_sym_LBRACE_CARET] = ACTIONS(401), - [anon_sym_CARET] = ACTIONS(401), - [anon_sym_LBRACE_TILDE] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_LBRACE_EQ] = ACTIONS(405), - [anon_sym_LBRACE_PLUS] = ACTIONS(407), - [anon_sym_LBRACE_DASH] = ACTIONS(409), - [anon_sym_BSLASH] = ACTIONS(411), - [sym_quotation_marks] = ACTIONS(413), - [sym_ellipsis] = ACTIONS(413), - [sym_em_dash] = ACTIONS(413), - [sym_en_dash] = ACTIONS(415), - [sym_backslash_escape] = ACTIONS(415), - [anon_sym_LT] = ACTIONS(417), - [sym_symbol] = ACTIONS(413), - [anon_sym_LBRACK_CARET] = ACTIONS(419), - [anon_sym_BANG_LBRACK] = ACTIONS(421), - [anon_sym_LBRACK] = ACTIONS(423), - [anon_sym_LPAREN] = ACTIONS(425), - [anon_sym_DOLLAR] = ACTIONS(427), - [anon_sym_TODO] = ACTIONS(429), - [anon_sym_WIP] = ACTIONS(429), - [anon_sym_NOTE] = ACTIONS(431), - [anon_sym_INFO] = ACTIONS(431), - [anon_sym_XXX] = ACTIONS(431), - [sym_fixme] = ACTIONS(413), - [sym__whitespace1] = ACTIONS(433), - [sym__newline] = ACTIONS(709), - [aux_sym__text_token1] = ACTIONS(437), - [sym__verbatim_begin] = ACTIONS(439), - [sym_delete_end] = ACTIONS(343), + [aux_sym__inline_repeat1] = STATE(20), + [anon_sym_LBRACE_] = ACTIONS(359), + [anon_sym__] = ACTIONS(361), + [anon_sym_LBRACE_STAR] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(365), + [anon_sym_LBRACE_CARET] = ACTIONS(367), + [anon_sym_CARET] = ACTIONS(367), + [anon_sym_LBRACE_TILDE] = ACTIONS(369), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_LBRACE_EQ] = ACTIONS(371), + [anon_sym_LBRACE_PLUS] = ACTIONS(373), + [anon_sym_LBRACE_DASH] = ACTIONS(375), + [anon_sym_BSLASH] = ACTIONS(377), + [sym_quotation_marks] = ACTIONS(379), + [sym_ellipsis] = ACTIONS(379), + [sym_em_dash] = ACTIONS(379), + [sym_en_dash] = ACTIONS(381), + [sym_backslash_escape] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(383), + [sym_symbol] = ACTIONS(379), + [anon_sym_LBRACK_CARET] = ACTIONS(385), + [anon_sym_BANG_LBRACK] = ACTIONS(387), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(393), + [anon_sym_DOLLAR] = ACTIONS(395), + [anon_sym_TODO] = ACTIONS(397), + [anon_sym_WIP] = ACTIONS(397), + [anon_sym_NOTE] = ACTIONS(399), + [anon_sym_INFO] = ACTIONS(399), + [anon_sym_XXX] = ACTIONS(399), + [sym_fixme] = ACTIONS(379), + [sym__whitespace1] = ACTIONS(401), + [anon_sym_LF] = ACTIONS(403), + [aux_sym__text_token1] = ACTIONS(405), + [sym__verbatim_begin] = ACTIONS(407), }, - [31] = { - [sym__inline] = STATE(901), + [11] = { + [sym__inline] = STATE(1045), [sym__element] = STATE(22), - [sym_emphasis] = STATE(147), - [sym_emphasis_begin] = STATE(1154), - [sym_strong] = STATE(147), - [sym_strong_begin] = STATE(1155), - [sym_superscript] = STATE(147), - [sym_superscript_begin] = STATE(1156), - [sym_subscript] = STATE(147), - [sym_subscript_begin] = STATE(1157), - [sym_highlighted] = STATE(147), - [sym_highlighted_begin] = STATE(1158), - [sym_insert] = STATE(147), - [sym_insert_begin] = STATE(1159), - [sym_delete] = STATE(147), - [sym_delete_begin] = STATE(1160), + [sym_emphasis] = STATE(140), + [sym_emphasis_begin] = STATE(1174), + [sym_strong] = STATE(140), + [sym_strong_begin] = STATE(1175), + [sym_superscript] = STATE(140), + [sym_superscript_begin] = STATE(1176), + [sym_subscript] = STATE(140), + [sym_subscript_begin] = STATE(1177), + [sym_highlighted] = STATE(140), + [sym_highlighted_begin] = STATE(1178), + [sym_insert] = STATE(140), + [sym_insert_begin] = STATE(1179), + [sym_delete] = STATE(140), + [sym_delete_begin] = STATE(1180), + [sym_hard_line_break] = STATE(139), + [sym__smart_punctuation] = STATE(139), + [sym_autolink] = STATE(139), + [sym_footnote_reference] = STATE(140), + [sym_footnote_marker_begin] = STATE(1181), + [sym__image] = STATE(140), + [sym_full_reference_image] = STATE(140), + [sym_collapsed_reference_image] = STATE(140), + [sym_inline_image] = STATE(140), + [sym_image_description] = STATE(655), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(140), + [sym_full_reference_link] = STATE(140), + [sym_collapsed_reference_link] = STATE(140), + [sym_inline_link] = STATE(140), + [sym_link_text] = STATE(656), + [sym_span] = STATE(22), + [sym__bracketed_text_begin] = STATE(1220), + [sym__comment_with_spaces] = STATE(139), + [sym_raw_inline] = STATE(139), + [sym_math] = STATE(139), + [sym_verbatim] = STATE(139), + [sym__todo_highlights] = STATE(139), + [sym_todo] = STATE(139), + [sym_note] = STATE(139), + [sym__symbol_fallback] = STATE(139), + [sym__newline] = STATE(22), + [aux_sym__text] = STATE(127), + [aux_sym__inline_repeat1] = STATE(22), + [anon_sym_LBRACE_] = ACTIONS(409), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_STAR] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(415), + [anon_sym_LBRACE_CARET] = ACTIONS(417), + [anon_sym_CARET] = ACTIONS(417), + [anon_sym_LBRACE_TILDE] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(419), + [anon_sym_LBRACE_EQ] = ACTIONS(421), + [anon_sym_LBRACE_PLUS] = ACTIONS(423), + [anon_sym_LBRACE_DASH] = ACTIONS(425), + [anon_sym_BSLASH] = ACTIONS(427), + [sym_quotation_marks] = ACTIONS(429), + [sym_ellipsis] = ACTIONS(429), + [sym_em_dash] = ACTIONS(429), + [sym_en_dash] = ACTIONS(431), + [sym_backslash_escape] = ACTIONS(431), + [anon_sym_LT] = ACTIONS(433), + [sym_symbol] = ACTIONS(429), + [anon_sym_LBRACK_CARET] = ACTIONS(435), + [anon_sym_BANG_LBRACK] = ACTIONS(437), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(439), + [anon_sym_LBRACK] = ACTIONS(441), + [anon_sym_LPAREN] = ACTIONS(443), + [anon_sym_DOLLAR] = ACTIONS(445), + [anon_sym_TODO] = ACTIONS(447), + [anon_sym_WIP] = ACTIONS(447), + [anon_sym_NOTE] = ACTIONS(449), + [anon_sym_INFO] = ACTIONS(449), + [anon_sym_XXX] = ACTIONS(449), + [sym_fixme] = ACTIONS(429), + [sym__whitespace1] = ACTIONS(451), + [anon_sym_LF] = ACTIONS(453), + [aux_sym__text_token1] = ACTIONS(455), + [sym__verbatim_begin] = ACTIONS(457), + }, + [12] = { + [sym__inline] = STATE(922), + [sym__element] = STATE(24), + [sym_emphasis] = STATE(131), + [sym_emphasis_begin] = STATE(1184), + [sym_strong] = STATE(131), + [sym_strong_begin] = STATE(1185), + [sym_superscript] = STATE(131), + [sym_superscript_begin] = STATE(1186), + [sym_subscript] = STATE(131), + [sym_subscript_begin] = STATE(1187), + [sym_highlighted] = STATE(131), + [sym_highlighted_begin] = STATE(1188), + [sym_insert] = STATE(131), + [sym_insert_begin] = STATE(1189), + [sym_delete] = STATE(131), + [sym_delete_begin] = STATE(1190), [sym_hard_line_break] = STATE(145), [sym__smart_punctuation] = STATE(145), [sym_autolink] = STATE(145), - [sym_footnote_reference] = STATE(147), - [sym_footnote_marker_begin] = STATE(1161), - [sym__image] = STATE(147), - [sym_full_reference_image] = STATE(147), - [sym_collapsed_reference_image] = STATE(147), - [sym_inline_image] = STATE(147), - [sym_image_description] = STATE(665), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(147), - [sym_full_reference_link] = STATE(147), - [sym_collapsed_reference_link] = STATE(147), - [sym_inline_link] = STATE(147), - [sym_link_text] = STATE(664), - [sym_span] = STATE(22), - [sym__bracketed_text_begin] = STATE(1209), + [sym_footnote_reference] = STATE(131), + [sym_footnote_marker_begin] = STATE(1191), + [sym__image] = STATE(131), + [sym_full_reference_image] = STATE(131), + [sym_collapsed_reference_image] = STATE(131), + [sym_inline_image] = STATE(131), + [sym_image_description] = STATE(662), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(131), + [sym_full_reference_link] = STATE(131), + [sym_collapsed_reference_link] = STATE(131), + [sym_inline_link] = STATE(131), + [sym_link_text] = STATE(663), + [sym_span] = STATE(24), + [sym__bracketed_text_begin] = STATE(1221), [sym__comment_with_spaces] = STATE(145), [sym_raw_inline] = STATE(145), [sym_math] = STATE(145), @@ -7656,78 +6262,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(145), [sym_note] = STATE(145), [sym__symbol_fallback] = STATE(145), - [aux_sym__text] = STATE(124), - [aux_sym__inline_repeat1] = STATE(22), - [anon_sym_LBRACE_] = ACTIONS(101), - [anon_sym__] = ACTIONS(103), - [anon_sym_LBRACE_STAR] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_LBRACE_CARET] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(109), - [anon_sym_LBRACE_TILDE] = ACTIONS(111), - [anon_sym_TILDE] = ACTIONS(111), - [anon_sym_LBRACE_EQ] = ACTIONS(113), - [anon_sym_LBRACE_PLUS] = ACTIONS(115), - [anon_sym_LBRACE_DASH] = ACTIONS(117), - [anon_sym_BSLASH] = ACTIONS(119), - [sym_quotation_marks] = ACTIONS(121), - [sym_ellipsis] = ACTIONS(121), - [sym_em_dash] = ACTIONS(121), - [sym_en_dash] = ACTIONS(123), - [sym_backslash_escape] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(125), - [sym_symbol] = ACTIONS(121), - [anon_sym_LBRACK_CARET] = ACTIONS(127), - [anon_sym_BANG_LBRACK] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_TODO] = ACTIONS(137), - [anon_sym_WIP] = ACTIONS(137), - [anon_sym_NOTE] = ACTIONS(139), - [anon_sym_INFO] = ACTIONS(139), - [anon_sym_XXX] = ACTIONS(139), - [sym_fixme] = ACTIONS(121), - [sym__whitespace1] = ACTIONS(141), - [sym__newline] = ACTIONS(143), - [aux_sym__text_token1] = ACTIONS(145), - [sym__verbatim_begin] = ACTIONS(147), + [sym__newline] = STATE(24), + [aux_sym__text] = STATE(129), + [aux_sym__inline_repeat1] = STATE(24), + [anon_sym_LBRACE_] = ACTIONS(459), + [anon_sym__] = ACTIONS(461), + [anon_sym_LBRACE_STAR] = ACTIONS(463), + [anon_sym_STAR] = ACTIONS(465), + [anon_sym_LBRACE_CARET] = ACTIONS(467), + [anon_sym_CARET] = ACTIONS(467), + [anon_sym_LBRACE_TILDE] = ACTIONS(469), + [anon_sym_TILDE] = ACTIONS(469), + [anon_sym_LBRACE_EQ] = ACTIONS(471), + [anon_sym_LBRACE_PLUS] = ACTIONS(473), + [anon_sym_LBRACE_DASH] = ACTIONS(475), + [anon_sym_BSLASH] = ACTIONS(477), + [sym_quotation_marks] = ACTIONS(479), + [sym_ellipsis] = ACTIONS(479), + [sym_em_dash] = ACTIONS(479), + [sym_en_dash] = ACTIONS(481), + [sym_backslash_escape] = ACTIONS(481), + [anon_sym_LT] = ACTIONS(483), + [sym_symbol] = ACTIONS(479), + [anon_sym_LBRACK_CARET] = ACTIONS(485), + [anon_sym_BANG_LBRACK] = ACTIONS(487), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(489), + [anon_sym_LBRACK] = ACTIONS(491), + [anon_sym_LPAREN] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(495), + [anon_sym_TODO] = ACTIONS(497), + [anon_sym_WIP] = ACTIONS(497), + [anon_sym_NOTE] = ACTIONS(499), + [anon_sym_INFO] = ACTIONS(499), + [anon_sym_XXX] = ACTIONS(499), + [sym_fixme] = ACTIONS(479), + [sym__whitespace1] = ACTIONS(501), + [anon_sym_LF] = ACTIONS(503), + [aux_sym__text_token1] = ACTIONS(505), + [sym__verbatim_begin] = ACTIONS(507), }, - [32] = { - [sym__inline] = STATE(900), - [sym__element] = STATE(110), + [13] = { + [sym__inline] = STATE(1054), + [sym__element] = STATE(26), + [sym_emphasis] = STATE(149), + [sym_emphasis_begin] = STATE(1194), + [sym_strong] = STATE(149), + [sym_strong_begin] = STATE(1195), + [sym_superscript] = STATE(149), + [sym_superscript_begin] = STATE(1196), + [sym_subscript] = STATE(149), + [sym_subscript_begin] = STATE(1197), + [sym_highlighted] = STATE(149), + [sym_highlighted_begin] = STATE(1198), + [sym_insert] = STATE(149), + [sym_insert_begin] = STATE(1199), + [sym_delete] = STATE(149), + [sym_delete_begin] = STATE(1200), + [sym_hard_line_break] = STATE(148), + [sym__smart_punctuation] = STATE(148), + [sym_autolink] = STATE(148), + [sym_footnote_reference] = STATE(149), + [sym_footnote_marker_begin] = STATE(1201), + [sym__image] = STATE(149), + [sym_full_reference_image] = STATE(149), + [sym_collapsed_reference_image] = STATE(149), + [sym_inline_image] = STATE(149), + [sym_image_description] = STATE(667), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(149), + [sym_full_reference_link] = STATE(149), + [sym_collapsed_reference_link] = STATE(149), + [sym_inline_link] = STATE(149), + [sym_link_text] = STATE(668), + [sym_span] = STATE(26), + [sym__bracketed_text_begin] = STATE(1222), + [sym__comment_with_spaces] = STATE(148), + [sym_raw_inline] = STATE(148), + [sym_math] = STATE(148), + [sym_verbatim] = STATE(148), + [sym__todo_highlights] = STATE(148), + [sym_todo] = STATE(148), + [sym_note] = STATE(148), + [sym__symbol_fallback] = STATE(148), + [sym__newline] = STATE(26), + [aux_sym__text] = STATE(130), + [aux_sym__inline_repeat1] = STATE(26), + [anon_sym_LBRACE_] = ACTIONS(53), + [anon_sym__] = ACTIONS(55), + [anon_sym_LBRACE_STAR] = ACTIONS(57), + [anon_sym_STAR] = ACTIONS(59), + [anon_sym_LBRACE_CARET] = ACTIONS(61), + [anon_sym_CARET] = ACTIONS(61), + [anon_sym_LBRACE_TILDE] = ACTIONS(63), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_LBRACE_EQ] = ACTIONS(65), + [anon_sym_LBRACE_PLUS] = ACTIONS(67), + [anon_sym_LBRACE_DASH] = ACTIONS(69), + [anon_sym_BSLASH] = ACTIONS(71), + [sym_quotation_marks] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(73), + [sym_em_dash] = ACTIONS(73), + [sym_en_dash] = ACTIONS(75), + [sym_backslash_escape] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [sym_symbol] = ACTIONS(73), + [anon_sym_LBRACK_CARET] = ACTIONS(79), + [anon_sym_BANG_LBRACK] = ACTIONS(81), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), + [anon_sym_DOLLAR] = ACTIONS(89), + [anon_sym_TODO] = ACTIONS(91), + [anon_sym_WIP] = ACTIONS(91), + [anon_sym_NOTE] = ACTIONS(93), + [anon_sym_INFO] = ACTIONS(93), + [anon_sym_XXX] = ACTIONS(93), + [sym_fixme] = ACTIONS(73), + [sym__whitespace1] = ACTIONS(95), + [anon_sym_LF] = ACTIONS(97), + [aux_sym__text_token1] = ACTIONS(99), + [sym__verbatim_begin] = ACTIONS(101), + }, + [14] = { + [sym__element] = STATE(14), [sym_emphasis] = STATE(146), - [sym_emphasis_begin] = STATE(1144), + [sym_emphasis_begin] = STATE(1203), [sym_strong] = STATE(146), - [sym_strong_begin] = STATE(1145), + [sym_strong_begin] = STATE(883), [sym_superscript] = STATE(146), - [sym_superscript_begin] = STATE(1146), + [sym_superscript_begin] = STATE(898), [sym_subscript] = STATE(146), - [sym_subscript_begin] = STATE(1147), + [sym_subscript_begin] = STATE(903), [sym_highlighted] = STATE(146), - [sym_highlighted_begin] = STATE(1148), + [sym_highlighted_begin] = STATE(915), [sym_insert] = STATE(146), - [sym_insert_begin] = STATE(1149), + [sym_insert_begin] = STATE(917), [sym_delete] = STATE(146), - [sym_delete_begin] = STATE(1150), + [sym_delete_begin] = STATE(937), [sym_hard_line_break] = STATE(144), [sym__smart_punctuation] = STATE(144), [sym_autolink] = STATE(144), [sym_footnote_reference] = STATE(146), - [sym_footnote_marker_begin] = STATE(1151), + [sym_footnote_marker_begin] = STATE(951), [sym__image] = STATE(146), [sym_full_reference_image] = STATE(146), [sym_collapsed_reference_image] = STATE(146), [sym_inline_image] = STATE(146), - [sym_image_description] = STATE(673), - [sym__image_description_begin] = STATE(1079), + [sym_image_description] = STATE(681), + [sym__image_description_begin] = STATE(958), [sym__link] = STATE(146), [sym_full_reference_link] = STATE(146), [sym_collapsed_reference_link] = STATE(146), [sym_inline_link] = STATE(146), - [sym_link_text] = STATE(662), - [sym_span] = STATE(110), - [sym__bracketed_text_begin] = STATE(1208), + [sym_link_text] = STATE(657), + [sym_span] = STATE(14), + [sym__bracketed_text_begin] = STATE(960), [sym__comment_with_spaces] = STATE(144), [sym_raw_inline] = STATE(144), [sym_math] = STATE(144), @@ -7736,78 +6425,572 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(144), [sym_note] = STATE(144), [sym__symbol_fallback] = STATE(144), - [aux_sym__text] = STATE(128), - [aux_sym__inline_repeat1] = STATE(110), - [anon_sym_LBRACE_] = ACTIONS(587), - [anon_sym__] = ACTIONS(589), - [anon_sym_LBRACE_STAR] = ACTIONS(591), - [anon_sym_STAR] = ACTIONS(593), - [anon_sym_LBRACE_CARET] = ACTIONS(595), - [anon_sym_CARET] = ACTIONS(595), - [anon_sym_LBRACE_TILDE] = ACTIONS(597), - [anon_sym_TILDE] = ACTIONS(597), - [anon_sym_LBRACE_EQ] = ACTIONS(599), - [anon_sym_LBRACE_PLUS] = ACTIONS(601), - [anon_sym_LBRACE_DASH] = ACTIONS(603), - [anon_sym_BSLASH] = ACTIONS(605), - [sym_quotation_marks] = ACTIONS(607), - [sym_ellipsis] = ACTIONS(607), - [sym_em_dash] = ACTIONS(607), - [sym_en_dash] = ACTIONS(609), - [sym_backslash_escape] = ACTIONS(609), - [anon_sym_LT] = ACTIONS(611), - [sym_symbol] = ACTIONS(607), - [anon_sym_LBRACK_CARET] = ACTIONS(613), - [anon_sym_BANG_LBRACK] = ACTIONS(615), - [anon_sym_LBRACK] = ACTIONS(617), - [anon_sym_LPAREN] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [anon_sym_TODO] = ACTIONS(623), - [anon_sym_WIP] = ACTIONS(623), - [anon_sym_NOTE] = ACTIONS(625), - [anon_sym_INFO] = ACTIONS(625), - [anon_sym_XXX] = ACTIONS(625), - [sym_fixme] = ACTIONS(607), - [sym__whitespace1] = ACTIONS(627), - [sym__newline] = ACTIONS(629), - [aux_sym__text_token1] = ACTIONS(631), - [sym__verbatim_begin] = ACTIONS(633), + [sym__newline] = STATE(14), + [aux_sym__text] = STATE(124), + [aux_sym__inline_repeat1] = STATE(14), + [ts_builtin_sym_end] = ACTIONS(509), + [anon_sym_LBRACE_] = ACTIONS(511), + [anon_sym__] = ACTIONS(514), + [anon_sym_LBRACE_STAR] = ACTIONS(517), + [anon_sym_STAR] = ACTIONS(520), + [anon_sym_LBRACE_CARET] = ACTIONS(523), + [anon_sym_CARET] = ACTIONS(523), + [anon_sym_LBRACE_TILDE] = ACTIONS(526), + [anon_sym_TILDE] = ACTIONS(526), + [anon_sym_LBRACE_EQ] = ACTIONS(529), + [anon_sym_LBRACE_PLUS] = ACTIONS(532), + [anon_sym_LBRACE_DASH] = ACTIONS(535), + [anon_sym_BSLASH] = ACTIONS(538), + [sym_quotation_marks] = ACTIONS(541), + [sym_ellipsis] = ACTIONS(541), + [sym_em_dash] = ACTIONS(541), + [sym_en_dash] = ACTIONS(544), + [sym_backslash_escape] = ACTIONS(544), + [anon_sym_LT] = ACTIONS(547), + [sym_symbol] = ACTIONS(541), + [anon_sym_LBRACK_CARET] = ACTIONS(550), + [anon_sym_BANG_LBRACK] = ACTIONS(553), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(556), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LPAREN] = ACTIONS(562), + [anon_sym_DOLLAR] = ACTIONS(565), + [anon_sym_TODO] = ACTIONS(568), + [anon_sym_WIP] = ACTIONS(568), + [anon_sym_NOTE] = ACTIONS(571), + [anon_sym_INFO] = ACTIONS(571), + [anon_sym_XXX] = ACTIONS(571), + [sym_fixme] = ACTIONS(541), + [sym__whitespace1] = ACTIONS(574), + [anon_sym_LF] = ACTIONS(577), + [aux_sym__text_token1] = ACTIONS(580), + [sym__verbatim_begin] = ACTIONS(583), }, - [33] = { - [sym__inline] = STATE(899), - [sym__element] = STATE(14), - [sym_emphasis] = STATE(136), + [15] = { + [sym__element] = STATE(17), + [sym_emphasis] = STATE(132), [sym_emphasis_begin] = STATE(1134), - [sym_strong] = STATE(136), + [sym_strong] = STATE(132), [sym_strong_begin] = STATE(1135), - [sym_superscript] = STATE(136), + [sym_superscript] = STATE(132), [sym_superscript_begin] = STATE(1136), - [sym_subscript] = STATE(136), + [sym_subscript] = STATE(132), [sym_subscript_begin] = STATE(1137), - [sym_highlighted] = STATE(136), + [sym_highlighted] = STATE(132), [sym_highlighted_begin] = STATE(1138), - [sym_insert] = STATE(136), + [sym_insert] = STATE(132), [sym_insert_begin] = STATE(1139), - [sym_delete] = STATE(136), + [sym_delete] = STATE(132), + [sym_delete_begin] = STATE(1140), + [sym_hard_line_break] = STATE(147), + [sym__smart_punctuation] = STATE(147), + [sym_autolink] = STATE(147), + [sym_footnote_reference] = STATE(132), + [sym_footnote_marker_begin] = STATE(1141), + [sym__image] = STATE(132), + [sym_full_reference_image] = STATE(132), + [sym_collapsed_reference_image] = STATE(132), + [sym_inline_image] = STATE(132), + [sym_image_description] = STATE(682), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(132), + [sym_full_reference_link] = STATE(132), + [sym_collapsed_reference_link] = STATE(132), + [sym_inline_link] = STATE(132), + [sym_link_text] = STATE(689), + [sym_span] = STATE(17), + [sym__bracketed_text_begin] = STATE(1216), + [sym__comment_with_spaces] = STATE(147), + [sym_raw_inline] = STATE(147), + [sym_math] = STATE(147), + [sym_verbatim] = STATE(147), + [sym__todo_highlights] = STATE(147), + [sym_todo] = STATE(147), + [sym_note] = STATE(147), + [sym__symbol_fallback] = STATE(147), + [sym__newline] = STATE(17), + [aux_sym__text] = STATE(121), + [aux_sym__inline_repeat1] = STATE(17), + [anon_sym_LBRACE_] = ACTIONS(105), + [anon_sym__] = ACTIONS(107), + [anon_sym_LBRACE_STAR] = ACTIONS(109), + [anon_sym_STAR] = ACTIONS(111), + [anon_sym_LBRACE_CARET] = ACTIONS(113), + [anon_sym_CARET] = ACTIONS(113), + [anon_sym_LBRACE_TILDE] = ACTIONS(115), + [anon_sym_TILDE] = ACTIONS(115), + [anon_sym_LBRACE_EQ] = ACTIONS(117), + [anon_sym_LBRACE_PLUS] = ACTIONS(119), + [anon_sym_LBRACE_DASH] = ACTIONS(121), + [anon_sym_BSLASH] = ACTIONS(123), + [sym_quotation_marks] = ACTIONS(125), + [sym_ellipsis] = ACTIONS(125), + [sym_em_dash] = ACTIONS(125), + [sym_en_dash] = ACTIONS(127), + [sym_backslash_escape] = ACTIONS(127), + [anon_sym_LT] = ACTIONS(129), + [sym_symbol] = ACTIONS(125), + [anon_sym_LBRACK_CARET] = ACTIONS(131), + [anon_sym_BANG_LBRACK] = ACTIONS(133), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(135), + [anon_sym_LBRACK] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_TODO] = ACTIONS(143), + [anon_sym_WIP] = ACTIONS(143), + [anon_sym_NOTE] = ACTIONS(145), + [anon_sym_INFO] = ACTIONS(145), + [anon_sym_XXX] = ACTIONS(145), + [sym_fixme] = ACTIONS(125), + [sym__whitespace1] = ACTIONS(147), + [anon_sym_LF] = ACTIONS(586), + [aux_sym__text_token1] = ACTIONS(151), + [sym__verbatim_begin] = ACTIONS(153), + [sym_superscript_end] = ACTIONS(155), + }, + [16] = { + [sym__element] = STATE(19), + [sym_emphasis] = STATE(143), + [sym_emphasis_begin] = STATE(1144), + [sym_strong] = STATE(143), + [sym_strong_begin] = STATE(1145), + [sym_superscript] = STATE(143), + [sym_superscript_begin] = STATE(1146), + [sym_subscript] = STATE(143), + [sym_subscript_begin] = STATE(1147), + [sym_highlighted] = STATE(143), + [sym_highlighted_begin] = STATE(1148), + [sym_insert] = STATE(143), + [sym_insert_begin] = STATE(1149), + [sym_delete] = STATE(143), + [sym_delete_begin] = STATE(1150), + [sym_hard_line_break] = STATE(141), + [sym__smart_punctuation] = STATE(141), + [sym_autolink] = STATE(141), + [sym_footnote_reference] = STATE(143), + [sym_footnote_marker_begin] = STATE(1151), + [sym__image] = STATE(143), + [sym_full_reference_image] = STATE(143), + [sym_collapsed_reference_image] = STATE(143), + [sym_inline_image] = STATE(143), + [sym_image_description] = STATE(660), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(143), + [sym_full_reference_link] = STATE(143), + [sym_collapsed_reference_link] = STATE(143), + [sym_inline_link] = STATE(143), + [sym_link_text] = STATE(661), + [sym_span] = STATE(19), + [sym__bracketed_text_begin] = STATE(1217), + [sym__comment_with_spaces] = STATE(141), + [sym_raw_inline] = STATE(141), + [sym_math] = STATE(141), + [sym_verbatim] = STATE(141), + [sym__todo_highlights] = STATE(141), + [sym_todo] = STATE(141), + [sym_note] = STATE(141), + [sym__symbol_fallback] = STATE(141), + [sym__newline] = STATE(19), + [aux_sym__text] = STATE(125), + [aux_sym__inline_repeat1] = STATE(19), + [anon_sym_LBRACE_] = ACTIONS(259), + [anon_sym__] = ACTIONS(261), + [anon_sym_LBRACE_STAR] = ACTIONS(263), + [anon_sym_STAR] = ACTIONS(265), + [anon_sym_LBRACE_CARET] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_LBRACE_TILDE] = ACTIONS(269), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_LBRACE_EQ] = ACTIONS(271), + [anon_sym_LBRACE_PLUS] = ACTIONS(273), + [anon_sym_LBRACE_DASH] = ACTIONS(275), + [anon_sym_BSLASH] = ACTIONS(277), + [sym_quotation_marks] = ACTIONS(279), + [sym_ellipsis] = ACTIONS(279), + [sym_em_dash] = ACTIONS(279), + [sym_en_dash] = ACTIONS(281), + [sym_backslash_escape] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(283), + [sym_symbol] = ACTIONS(279), + [anon_sym_LBRACK_CARET] = ACTIONS(285), + [anon_sym_BANG_LBRACK] = ACTIONS(287), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_DOLLAR] = ACTIONS(295), + [anon_sym_TODO] = ACTIONS(297), + [anon_sym_WIP] = ACTIONS(297), + [anon_sym_NOTE] = ACTIONS(299), + [anon_sym_INFO] = ACTIONS(299), + [anon_sym_XXX] = ACTIONS(299), + [sym_fixme] = ACTIONS(279), + [sym__whitespace1] = ACTIONS(301), + [anon_sym_LF] = ACTIONS(588), + [aux_sym__text_token1] = ACTIONS(305), + [sym__verbatim_begin] = ACTIONS(307), + [sym_subscript_end] = ACTIONS(155), + }, + [17] = { + [sym__element] = STATE(17), + [sym_emphasis] = STATE(132), + [sym_emphasis_begin] = STATE(1134), + [sym_strong] = STATE(132), + [sym_strong_begin] = STATE(1135), + [sym_superscript] = STATE(132), + [sym_superscript_begin] = STATE(1136), + [sym_subscript] = STATE(132), + [sym_subscript_begin] = STATE(1137), + [sym_highlighted] = STATE(132), + [sym_highlighted_begin] = STATE(1138), + [sym_insert] = STATE(132), + [sym_insert_begin] = STATE(1139), + [sym_delete] = STATE(132), [sym_delete_begin] = STATE(1140), + [sym_hard_line_break] = STATE(147), + [sym__smart_punctuation] = STATE(147), + [sym_autolink] = STATE(147), + [sym_footnote_reference] = STATE(132), + [sym_footnote_marker_begin] = STATE(1141), + [sym__image] = STATE(132), + [sym_full_reference_image] = STATE(132), + [sym_collapsed_reference_image] = STATE(132), + [sym_inline_image] = STATE(132), + [sym_image_description] = STATE(682), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(132), + [sym_full_reference_link] = STATE(132), + [sym_collapsed_reference_link] = STATE(132), + [sym_inline_link] = STATE(132), + [sym_link_text] = STATE(689), + [sym_span] = STATE(17), + [sym__bracketed_text_begin] = STATE(1216), + [sym__comment_with_spaces] = STATE(147), + [sym_raw_inline] = STATE(147), + [sym_math] = STATE(147), + [sym_verbatim] = STATE(147), + [sym__todo_highlights] = STATE(147), + [sym_todo] = STATE(147), + [sym_note] = STATE(147), + [sym__symbol_fallback] = STATE(147), + [sym__newline] = STATE(17), + [aux_sym__text] = STATE(121), + [aux_sym__inline_repeat1] = STATE(17), + [anon_sym_LBRACE_] = ACTIONS(590), + [anon_sym__] = ACTIONS(593), + [anon_sym_LBRACE_STAR] = ACTIONS(596), + [anon_sym_STAR] = ACTIONS(599), + [anon_sym_LBRACE_CARET] = ACTIONS(602), + [anon_sym_CARET] = ACTIONS(602), + [anon_sym_LBRACE_TILDE] = ACTIONS(605), + [anon_sym_TILDE] = ACTIONS(605), + [anon_sym_LBRACE_EQ] = ACTIONS(608), + [anon_sym_LBRACE_PLUS] = ACTIONS(611), + [anon_sym_LBRACE_DASH] = ACTIONS(614), + [anon_sym_BSLASH] = ACTIONS(617), + [sym_quotation_marks] = ACTIONS(620), + [sym_ellipsis] = ACTIONS(620), + [sym_em_dash] = ACTIONS(620), + [sym_en_dash] = ACTIONS(623), + [sym_backslash_escape] = ACTIONS(623), + [anon_sym_LT] = ACTIONS(626), + [sym_symbol] = ACTIONS(620), + [anon_sym_LBRACK_CARET] = ACTIONS(629), + [anon_sym_BANG_LBRACK] = ACTIONS(632), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(635), + [anon_sym_LBRACK] = ACTIONS(638), + [anon_sym_LPAREN] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(644), + [anon_sym_TODO] = ACTIONS(647), + [anon_sym_WIP] = ACTIONS(647), + [anon_sym_NOTE] = ACTIONS(650), + [anon_sym_INFO] = ACTIONS(650), + [anon_sym_XXX] = ACTIONS(650), + [sym_fixme] = ACTIONS(620), + [sym__whitespace1] = ACTIONS(653), + [anon_sym_LF] = ACTIONS(656), + [aux_sym__text_token1] = ACTIONS(659), + [sym__verbatim_begin] = ACTIONS(662), + [sym_superscript_end] = ACTIONS(509), + }, + [18] = { + [sym__element] = STATE(21), + [sym_emphasis] = STATE(135), + [sym_emphasis_begin] = STATE(1154), + [sym_strong] = STATE(135), + [sym_strong_begin] = STATE(1155), + [sym_superscript] = STATE(135), + [sym_superscript_begin] = STATE(1156), + [sym_subscript] = STATE(135), + [sym_subscript_begin] = STATE(1157), + [sym_highlighted] = STATE(135), + [sym_highlighted_begin] = STATE(1158), + [sym_insert] = STATE(135), + [sym_insert_begin] = STATE(1159), + [sym_delete] = STATE(135), + [sym_delete_begin] = STATE(1160), [sym_hard_line_break] = STATE(134), [sym__smart_punctuation] = STATE(134), [sym_autolink] = STATE(134), + [sym_footnote_reference] = STATE(135), + [sym_footnote_marker_begin] = STATE(1161), + [sym__image] = STATE(135), + [sym_full_reference_image] = STATE(135), + [sym_collapsed_reference_image] = STATE(135), + [sym_inline_image] = STATE(135), + [sym_image_description] = STATE(677), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(135), + [sym_full_reference_link] = STATE(135), + [sym_collapsed_reference_link] = STATE(135), + [sym_inline_link] = STATE(135), + [sym_link_text] = STATE(680), + [sym_span] = STATE(21), + [sym__bracketed_text_begin] = STATE(1218), + [sym__comment_with_spaces] = STATE(134), + [sym_raw_inline] = STATE(134), + [sym_math] = STATE(134), + [sym_verbatim] = STATE(134), + [sym__todo_highlights] = STATE(134), + [sym_todo] = STATE(134), + [sym_note] = STATE(134), + [sym__symbol_fallback] = STATE(134), + [sym__newline] = STATE(21), + [aux_sym__text] = STATE(123), + [aux_sym__inline_repeat1] = STATE(21), + [anon_sym_LBRACE_] = ACTIONS(309), + [anon_sym__] = ACTIONS(311), + [anon_sym_LBRACE_STAR] = ACTIONS(313), + [anon_sym_STAR] = ACTIONS(315), + [anon_sym_LBRACE_CARET] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_LBRACE_TILDE] = ACTIONS(319), + [anon_sym_TILDE] = ACTIONS(319), + [anon_sym_LBRACE_EQ] = ACTIONS(321), + [anon_sym_LBRACE_PLUS] = ACTIONS(323), + [anon_sym_LBRACE_DASH] = ACTIONS(325), + [anon_sym_BSLASH] = ACTIONS(327), + [sym_quotation_marks] = ACTIONS(329), + [sym_ellipsis] = ACTIONS(329), + [sym_em_dash] = ACTIONS(329), + [sym_en_dash] = ACTIONS(331), + [sym_backslash_escape] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [sym_symbol] = ACTIONS(329), + [anon_sym_LBRACK_CARET] = ACTIONS(335), + [anon_sym_BANG_LBRACK] = ACTIONS(337), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(339), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_DOLLAR] = ACTIONS(345), + [anon_sym_TODO] = ACTIONS(347), + [anon_sym_WIP] = ACTIONS(347), + [anon_sym_NOTE] = ACTIONS(349), + [anon_sym_INFO] = ACTIONS(349), + [anon_sym_XXX] = ACTIONS(349), + [sym_fixme] = ACTIONS(329), + [sym__whitespace1] = ACTIONS(351), + [anon_sym_LF] = ACTIONS(665), + [aux_sym__text_token1] = ACTIONS(355), + [sym__verbatim_begin] = ACTIONS(357), + [sym_highlighted_end] = ACTIONS(155), + }, + [19] = { + [sym__element] = STATE(19), + [sym_emphasis] = STATE(143), + [sym_emphasis_begin] = STATE(1144), + [sym_strong] = STATE(143), + [sym_strong_begin] = STATE(1145), + [sym_superscript] = STATE(143), + [sym_superscript_begin] = STATE(1146), + [sym_subscript] = STATE(143), + [sym_subscript_begin] = STATE(1147), + [sym_highlighted] = STATE(143), + [sym_highlighted_begin] = STATE(1148), + [sym_insert] = STATE(143), + [sym_insert_begin] = STATE(1149), + [sym_delete] = STATE(143), + [sym_delete_begin] = STATE(1150), + [sym_hard_line_break] = STATE(141), + [sym__smart_punctuation] = STATE(141), + [sym_autolink] = STATE(141), + [sym_footnote_reference] = STATE(143), + [sym_footnote_marker_begin] = STATE(1151), + [sym__image] = STATE(143), + [sym_full_reference_image] = STATE(143), + [sym_collapsed_reference_image] = STATE(143), + [sym_inline_image] = STATE(143), + [sym_image_description] = STATE(660), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(143), + [sym_full_reference_link] = STATE(143), + [sym_collapsed_reference_link] = STATE(143), + [sym_inline_link] = STATE(143), + [sym_link_text] = STATE(661), + [sym_span] = STATE(19), + [sym__bracketed_text_begin] = STATE(1217), + [sym__comment_with_spaces] = STATE(141), + [sym_raw_inline] = STATE(141), + [sym_math] = STATE(141), + [sym_verbatim] = STATE(141), + [sym__todo_highlights] = STATE(141), + [sym_todo] = STATE(141), + [sym_note] = STATE(141), + [sym__symbol_fallback] = STATE(141), + [sym__newline] = STATE(19), + [aux_sym__text] = STATE(125), + [aux_sym__inline_repeat1] = STATE(19), + [anon_sym_LBRACE_] = ACTIONS(667), + [anon_sym__] = ACTIONS(670), + [anon_sym_LBRACE_STAR] = ACTIONS(673), + [anon_sym_STAR] = ACTIONS(676), + [anon_sym_LBRACE_CARET] = ACTIONS(679), + [anon_sym_CARET] = ACTIONS(679), + [anon_sym_LBRACE_TILDE] = ACTIONS(682), + [anon_sym_TILDE] = ACTIONS(682), + [anon_sym_LBRACE_EQ] = ACTIONS(685), + [anon_sym_LBRACE_PLUS] = ACTIONS(688), + [anon_sym_LBRACE_DASH] = ACTIONS(691), + [anon_sym_BSLASH] = ACTIONS(694), + [sym_quotation_marks] = ACTIONS(697), + [sym_ellipsis] = ACTIONS(697), + [sym_em_dash] = ACTIONS(697), + [sym_en_dash] = ACTIONS(700), + [sym_backslash_escape] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(703), + [sym_symbol] = ACTIONS(697), + [anon_sym_LBRACK_CARET] = ACTIONS(706), + [anon_sym_BANG_LBRACK] = ACTIONS(709), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(712), + [anon_sym_LBRACK] = ACTIONS(715), + [anon_sym_LPAREN] = ACTIONS(718), + [anon_sym_DOLLAR] = ACTIONS(721), + [anon_sym_TODO] = ACTIONS(724), + [anon_sym_WIP] = ACTIONS(724), + [anon_sym_NOTE] = ACTIONS(727), + [anon_sym_INFO] = ACTIONS(727), + [anon_sym_XXX] = ACTIONS(727), + [sym_fixme] = ACTIONS(697), + [sym__whitespace1] = ACTIONS(730), + [anon_sym_LF] = ACTIONS(733), + [aux_sym__text_token1] = ACTIONS(736), + [sym__verbatim_begin] = ACTIONS(739), + [sym_subscript_end] = ACTIONS(509), + }, + [20] = { + [sym__element] = STATE(23), + [sym_emphasis] = STATE(136), + [sym_emphasis_begin] = STATE(1164), + [sym_strong] = STATE(136), + [sym_strong_begin] = STATE(1165), + [sym_superscript] = STATE(136), + [sym_superscript_begin] = STATE(1166), + [sym_subscript] = STATE(136), + [sym_subscript_begin] = STATE(1167), + [sym_highlighted] = STATE(136), + [sym_highlighted_begin] = STATE(1168), + [sym_insert] = STATE(136), + [sym_insert_begin] = STATE(1169), + [sym_delete] = STATE(136), + [sym_delete_begin] = STATE(1170), + [sym_hard_line_break] = STATE(138), + [sym__smart_punctuation] = STATE(138), + [sym_autolink] = STATE(138), [sym_footnote_reference] = STATE(136), - [sym_footnote_marker_begin] = STATE(1141), + [sym_footnote_marker_begin] = STATE(1171), [sym__image] = STATE(136), [sym_full_reference_image] = STATE(136), [sym_collapsed_reference_image] = STATE(136), [sym_inline_image] = STATE(136), - [sym_image_description] = STATE(670), - [sym__image_description_begin] = STATE(1079), + [sym_image_description] = STATE(685), + [sym__image_description_begin] = STATE(958), [sym__link] = STATE(136), [sym_full_reference_link] = STATE(136), [sym_collapsed_reference_link] = STATE(136), [sym_inline_link] = STATE(136), - [sym_link_text] = STATE(671), - [sym_span] = STATE(14), - [sym__bracketed_text_begin] = STATE(1207), + [sym_link_text] = STATE(686), + [sym_span] = STATE(23), + [sym__bracketed_text_begin] = STATE(1219), + [sym__comment_with_spaces] = STATE(138), + [sym_raw_inline] = STATE(138), + [sym_math] = STATE(138), + [sym_verbatim] = STATE(138), + [sym__todo_highlights] = STATE(138), + [sym_todo] = STATE(138), + [sym_note] = STATE(138), + [sym__symbol_fallback] = STATE(138), + [sym__newline] = STATE(23), + [aux_sym__text] = STATE(126), + [aux_sym__inline_repeat1] = STATE(23), + [anon_sym_LBRACE_] = ACTIONS(359), + [anon_sym__] = ACTIONS(361), + [anon_sym_LBRACE_STAR] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(365), + [anon_sym_LBRACE_CARET] = ACTIONS(367), + [anon_sym_CARET] = ACTIONS(367), + [anon_sym_LBRACE_TILDE] = ACTIONS(369), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_LBRACE_EQ] = ACTIONS(371), + [anon_sym_LBRACE_PLUS] = ACTIONS(373), + [anon_sym_LBRACE_DASH] = ACTIONS(375), + [anon_sym_BSLASH] = ACTIONS(377), + [sym_quotation_marks] = ACTIONS(379), + [sym_ellipsis] = ACTIONS(379), + [sym_em_dash] = ACTIONS(379), + [sym_en_dash] = ACTIONS(381), + [sym_backslash_escape] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(383), + [sym_symbol] = ACTIONS(379), + [anon_sym_LBRACK_CARET] = ACTIONS(385), + [anon_sym_BANG_LBRACK] = ACTIONS(387), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(393), + [anon_sym_DOLLAR] = ACTIONS(395), + [anon_sym_TODO] = ACTIONS(397), + [anon_sym_WIP] = ACTIONS(397), + [anon_sym_NOTE] = ACTIONS(399), + [anon_sym_INFO] = ACTIONS(399), + [anon_sym_XXX] = ACTIONS(399), + [sym_fixme] = ACTIONS(379), + [sym__whitespace1] = ACTIONS(401), + [anon_sym_LF] = ACTIONS(742), + [aux_sym__text_token1] = ACTIONS(405), + [sym__verbatim_begin] = ACTIONS(407), + [sym_insert_end] = ACTIONS(155), + }, + [21] = { + [sym__element] = STATE(21), + [sym_emphasis] = STATE(135), + [sym_emphasis_begin] = STATE(1154), + [sym_strong] = STATE(135), + [sym_strong_begin] = STATE(1155), + [sym_superscript] = STATE(135), + [sym_superscript_begin] = STATE(1156), + [sym_subscript] = STATE(135), + [sym_subscript_begin] = STATE(1157), + [sym_highlighted] = STATE(135), + [sym_highlighted_begin] = STATE(1158), + [sym_insert] = STATE(135), + [sym_insert_begin] = STATE(1159), + [sym_delete] = STATE(135), + [sym_delete_begin] = STATE(1160), + [sym_hard_line_break] = STATE(134), + [sym__smart_punctuation] = STATE(134), + [sym_autolink] = STATE(134), + [sym_footnote_reference] = STATE(135), + [sym_footnote_marker_begin] = STATE(1161), + [sym__image] = STATE(135), + [sym_full_reference_image] = STATE(135), + [sym_collapsed_reference_image] = STATE(135), + [sym_inline_image] = STATE(135), + [sym_image_description] = STATE(677), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(135), + [sym_full_reference_link] = STATE(135), + [sym_collapsed_reference_link] = STATE(135), + [sym_inline_link] = STATE(135), + [sym_link_text] = STATE(680), + [sym_span] = STATE(21), + [sym__bracketed_text_begin] = STATE(1218), [sym__comment_with_spaces] = STATE(134), [sym_raw_inline] = STATE(134), [sym_math] = STATE(134), @@ -7816,397 +6999,244 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(134), [sym_note] = STATE(134), [sym__symbol_fallback] = STATE(134), - [aux_sym__text] = STATE(129), - [aux_sym__inline_repeat1] = STATE(14), - [anon_sym_LBRACE_] = ACTIONS(295), - [anon_sym__] = ACTIONS(297), - [anon_sym_LBRACE_STAR] = ACTIONS(299), - [anon_sym_STAR] = ACTIONS(301), - [anon_sym_LBRACE_CARET] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(303), - [anon_sym_LBRACE_TILDE] = ACTIONS(305), - [anon_sym_TILDE] = ACTIONS(305), - [anon_sym_LBRACE_EQ] = ACTIONS(307), - [anon_sym_LBRACE_PLUS] = ACTIONS(309), - [anon_sym_LBRACE_DASH] = ACTIONS(311), - [anon_sym_BSLASH] = ACTIONS(313), - [sym_quotation_marks] = ACTIONS(315), - [sym_ellipsis] = ACTIONS(315), - [sym_em_dash] = ACTIONS(315), - [sym_en_dash] = ACTIONS(317), - [sym_backslash_escape] = ACTIONS(317), - [anon_sym_LT] = ACTIONS(319), - [sym_symbol] = ACTIONS(315), - [anon_sym_LBRACK_CARET] = ACTIONS(321), - [anon_sym_BANG_LBRACK] = ACTIONS(323), - [anon_sym_LBRACK] = ACTIONS(325), - [anon_sym_LPAREN] = ACTIONS(327), - [anon_sym_DOLLAR] = ACTIONS(329), - [anon_sym_TODO] = ACTIONS(331), - [anon_sym_WIP] = ACTIONS(331), - [anon_sym_NOTE] = ACTIONS(333), - [anon_sym_INFO] = ACTIONS(333), - [anon_sym_XXX] = ACTIONS(333), - [sym_fixme] = ACTIONS(315), - [sym__whitespace1] = ACTIONS(335), - [sym__newline] = ACTIONS(635), - [aux_sym__text_token1] = ACTIONS(339), - [sym__verbatim_begin] = ACTIONS(341), + [sym__newline] = STATE(21), + [aux_sym__text] = STATE(123), + [aux_sym__inline_repeat1] = STATE(21), + [anon_sym_LBRACE_] = ACTIONS(744), + [anon_sym__] = ACTIONS(747), + [anon_sym_LBRACE_STAR] = ACTIONS(750), + [anon_sym_STAR] = ACTIONS(753), + [anon_sym_LBRACE_CARET] = ACTIONS(756), + [anon_sym_CARET] = ACTIONS(756), + [anon_sym_LBRACE_TILDE] = ACTIONS(759), + [anon_sym_TILDE] = ACTIONS(759), + [anon_sym_LBRACE_EQ] = ACTIONS(762), + [anon_sym_LBRACE_PLUS] = ACTIONS(765), + [anon_sym_LBRACE_DASH] = ACTIONS(768), + [anon_sym_BSLASH] = ACTIONS(771), + [sym_quotation_marks] = ACTIONS(774), + [sym_ellipsis] = ACTIONS(774), + [sym_em_dash] = ACTIONS(774), + [sym_en_dash] = ACTIONS(777), + [sym_backslash_escape] = ACTIONS(777), + [anon_sym_LT] = ACTIONS(780), + [sym_symbol] = ACTIONS(774), + [anon_sym_LBRACK_CARET] = ACTIONS(783), + [anon_sym_BANG_LBRACK] = ACTIONS(786), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(789), + [anon_sym_LBRACK] = ACTIONS(792), + [anon_sym_LPAREN] = ACTIONS(795), + [anon_sym_DOLLAR] = ACTIONS(798), + [anon_sym_TODO] = ACTIONS(801), + [anon_sym_WIP] = ACTIONS(801), + [anon_sym_NOTE] = ACTIONS(804), + [anon_sym_INFO] = ACTIONS(804), + [anon_sym_XXX] = ACTIONS(804), + [sym_fixme] = ACTIONS(774), + [sym__whitespace1] = ACTIONS(807), + [anon_sym_LF] = ACTIONS(810), + [aux_sym__text_token1] = ACTIONS(813), + [sym__verbatim_begin] = ACTIONS(816), + [sym_highlighted_end] = ACTIONS(509), + }, + [22] = { + [sym__element] = STATE(25), + [sym_emphasis] = STATE(140), + [sym_emphasis_begin] = STATE(1174), + [sym_strong] = STATE(140), + [sym_strong_begin] = STATE(1175), + [sym_superscript] = STATE(140), + [sym_superscript_begin] = STATE(1176), + [sym_subscript] = STATE(140), + [sym_subscript_begin] = STATE(1177), + [sym_highlighted] = STATE(140), + [sym_highlighted_begin] = STATE(1178), + [sym_insert] = STATE(140), + [sym_insert_begin] = STATE(1179), + [sym_delete] = STATE(140), + [sym_delete_begin] = STATE(1180), + [sym_hard_line_break] = STATE(139), + [sym__smart_punctuation] = STATE(139), + [sym_autolink] = STATE(139), + [sym_footnote_reference] = STATE(140), + [sym_footnote_marker_begin] = STATE(1181), + [sym__image] = STATE(140), + [sym_full_reference_image] = STATE(140), + [sym_collapsed_reference_image] = STATE(140), + [sym_inline_image] = STATE(140), + [sym_image_description] = STATE(655), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(140), + [sym_full_reference_link] = STATE(140), + [sym_collapsed_reference_link] = STATE(140), + [sym_inline_link] = STATE(140), + [sym_link_text] = STATE(656), + [sym_span] = STATE(25), + [sym__bracketed_text_begin] = STATE(1220), + [sym__comment_with_spaces] = STATE(139), + [sym_raw_inline] = STATE(139), + [sym_math] = STATE(139), + [sym_verbatim] = STATE(139), + [sym__todo_highlights] = STATE(139), + [sym_todo] = STATE(139), + [sym_note] = STATE(139), + [sym__symbol_fallback] = STATE(139), + [sym__newline] = STATE(25), + [aux_sym__text] = STATE(127), + [aux_sym__inline_repeat1] = STATE(25), + [anon_sym_LBRACE_] = ACTIONS(409), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_STAR] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(415), + [anon_sym_LBRACE_CARET] = ACTIONS(417), + [anon_sym_CARET] = ACTIONS(417), + [anon_sym_LBRACE_TILDE] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(419), + [anon_sym_LBRACE_EQ] = ACTIONS(421), + [anon_sym_LBRACE_PLUS] = ACTIONS(423), + [anon_sym_LBRACE_DASH] = ACTIONS(425), + [anon_sym_BSLASH] = ACTIONS(427), + [sym_quotation_marks] = ACTIONS(429), + [sym_ellipsis] = ACTIONS(429), + [sym_em_dash] = ACTIONS(429), + [sym_en_dash] = ACTIONS(431), + [sym_backslash_escape] = ACTIONS(431), + [anon_sym_LT] = ACTIONS(433), + [sym_symbol] = ACTIONS(429), + [anon_sym_LBRACK_CARET] = ACTIONS(435), + [anon_sym_BANG_LBRACK] = ACTIONS(437), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(439), + [anon_sym_LBRACK] = ACTIONS(441), + [anon_sym_LPAREN] = ACTIONS(443), + [anon_sym_DOLLAR] = ACTIONS(445), + [anon_sym_TODO] = ACTIONS(447), + [anon_sym_WIP] = ACTIONS(447), + [anon_sym_NOTE] = ACTIONS(449), + [anon_sym_INFO] = ACTIONS(449), + [anon_sym_XXX] = ACTIONS(449), + [sym_fixme] = ACTIONS(429), + [sym__whitespace1] = ACTIONS(451), + [anon_sym_LF] = ACTIONS(819), + [aux_sym__text_token1] = ACTIONS(455), + [sym__verbatim_begin] = ACTIONS(457), + [sym_delete_end] = ACTIONS(155), }, - [34] = { - [sym__inline] = STATE(966), - [sym__element] = STATE(14), + [23] = { + [sym__element] = STATE(23), [sym_emphasis] = STATE(136), - [sym_emphasis_begin] = STATE(1134), + [sym_emphasis_begin] = STATE(1164), [sym_strong] = STATE(136), - [sym_strong_begin] = STATE(1135), + [sym_strong_begin] = STATE(1165), [sym_superscript] = STATE(136), - [sym_superscript_begin] = STATE(1136), + [sym_superscript_begin] = STATE(1166), [sym_subscript] = STATE(136), - [sym_subscript_begin] = STATE(1137), + [sym_subscript_begin] = STATE(1167), [sym_highlighted] = STATE(136), - [sym_highlighted_begin] = STATE(1138), + [sym_highlighted_begin] = STATE(1168), [sym_insert] = STATE(136), - [sym_insert_begin] = STATE(1139), + [sym_insert_begin] = STATE(1169), [sym_delete] = STATE(136), - [sym_delete_begin] = STATE(1140), - [sym_hard_line_break] = STATE(134), - [sym__smart_punctuation] = STATE(134), - [sym_autolink] = STATE(134), + [sym_delete_begin] = STATE(1170), + [sym_hard_line_break] = STATE(138), + [sym__smart_punctuation] = STATE(138), + [sym_autolink] = STATE(138), [sym_footnote_reference] = STATE(136), - [sym_footnote_marker_begin] = STATE(1141), + [sym_footnote_marker_begin] = STATE(1171), [sym__image] = STATE(136), [sym_full_reference_image] = STATE(136), [sym_collapsed_reference_image] = STATE(136), [sym_inline_image] = STATE(136), - [sym_image_description] = STATE(670), - [sym__image_description_begin] = STATE(1079), + [sym_image_description] = STATE(685), + [sym__image_description_begin] = STATE(958), [sym__link] = STATE(136), [sym_full_reference_link] = STATE(136), [sym_collapsed_reference_link] = STATE(136), [sym_inline_link] = STATE(136), - [sym_link_text] = STATE(671), - [sym_span] = STATE(14), - [sym__bracketed_text_begin] = STATE(1207), - [sym__comment_with_spaces] = STATE(134), - [sym_raw_inline] = STATE(134), - [sym_math] = STATE(134), - [sym_verbatim] = STATE(134), - [sym__todo_highlights] = STATE(134), - [sym_todo] = STATE(134), - [sym_note] = STATE(134), - [sym__symbol_fallback] = STATE(134), - [aux_sym__text] = STATE(129), - [aux_sym__inline_repeat1] = STATE(14), - [anon_sym_LBRACE_] = ACTIONS(295), - [anon_sym__] = ACTIONS(297), - [anon_sym_LBRACE_STAR] = ACTIONS(299), - [anon_sym_STAR] = ACTIONS(301), - [anon_sym_LBRACE_CARET] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(303), - [anon_sym_LBRACE_TILDE] = ACTIONS(305), - [anon_sym_TILDE] = ACTIONS(305), - [anon_sym_LBRACE_EQ] = ACTIONS(307), - [anon_sym_LBRACE_PLUS] = ACTIONS(309), - [anon_sym_LBRACE_DASH] = ACTIONS(311), - [anon_sym_BSLASH] = ACTIONS(313), - [sym_quotation_marks] = ACTIONS(315), - [sym_ellipsis] = ACTIONS(315), - [sym_em_dash] = ACTIONS(315), - [sym_en_dash] = ACTIONS(317), - [sym_backslash_escape] = ACTIONS(317), - [anon_sym_LT] = ACTIONS(319), - [sym_symbol] = ACTIONS(315), - [anon_sym_LBRACK_CARET] = ACTIONS(321), - [anon_sym_BANG_LBRACK] = ACTIONS(323), - [anon_sym_LBRACK] = ACTIONS(325), - [anon_sym_LPAREN] = ACTIONS(327), - [anon_sym_DOLLAR] = ACTIONS(329), - [anon_sym_TODO] = ACTIONS(331), - [anon_sym_WIP] = ACTIONS(331), - [anon_sym_NOTE] = ACTIONS(333), - [anon_sym_INFO] = ACTIONS(333), - [anon_sym_XXX] = ACTIONS(333), - [sym_fixme] = ACTIONS(315), - [sym__whitespace1] = ACTIONS(335), - [sym__newline] = ACTIONS(635), - [aux_sym__text_token1] = ACTIONS(339), - [sym__verbatim_begin] = ACTIONS(341), - }, - [35] = { - [sym__inline] = STATE(898), - [sym__element] = STATE(64), - [sym_emphasis] = STATE(133), - [sym_emphasis_begin] = STATE(1124), - [sym_strong] = STATE(133), - [sym_strong_begin] = STATE(1125), - [sym_superscript] = STATE(133), - [sym_superscript_begin] = STATE(1126), - [sym_subscript] = STATE(133), - [sym_subscript_begin] = STATE(1127), - [sym_highlighted] = STATE(133), - [sym_highlighted_begin] = STATE(1128), - [sym_insert] = STATE(133), - [sym_insert_begin] = STATE(1129), - [sym_delete] = STATE(133), - [sym_delete_begin] = STATE(1130), - [sym_hard_line_break] = STATE(140), - [sym__smart_punctuation] = STATE(140), - [sym_autolink] = STATE(140), - [sym_footnote_reference] = STATE(133), - [sym_footnote_marker_begin] = STATE(1131), - [sym__image] = STATE(133), - [sym_full_reference_image] = STATE(133), - [sym_collapsed_reference_image] = STATE(133), - [sym_inline_image] = STATE(133), - [sym_image_description] = STATE(663), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(133), - [sym_full_reference_link] = STATE(133), - [sym_collapsed_reference_link] = STATE(133), - [sym_inline_link] = STATE(133), - [sym_link_text] = STATE(669), - [sym_span] = STATE(64), - [sym__bracketed_text_begin] = STATE(1206), - [sym__comment_with_spaces] = STATE(140), - [sym_raw_inline] = STATE(140), - [sym_math] = STATE(140), - [sym_verbatim] = STATE(140), - [sym__todo_highlights] = STATE(140), - [sym_todo] = STATE(140), - [sym_note] = STATE(140), - [sym__symbol_fallback] = STATE(140), - [aux_sym__text] = STATE(122), - [aux_sym__inline_repeat1] = STATE(64), - [anon_sym_LBRACE_] = ACTIONS(537), - [anon_sym__] = ACTIONS(539), - [anon_sym_LBRACE_STAR] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(543), - [anon_sym_LBRACE_CARET] = ACTIONS(545), - [anon_sym_CARET] = ACTIONS(545), - [anon_sym_LBRACE_TILDE] = ACTIONS(547), - [anon_sym_TILDE] = ACTIONS(547), - [anon_sym_LBRACE_EQ] = ACTIONS(549), - [anon_sym_LBRACE_PLUS] = ACTIONS(551), - [anon_sym_LBRACE_DASH] = ACTIONS(553), - [anon_sym_BSLASH] = ACTIONS(555), - [sym_quotation_marks] = ACTIONS(557), - [sym_ellipsis] = ACTIONS(557), - [sym_em_dash] = ACTIONS(557), - [sym_en_dash] = ACTIONS(559), - [sym_backslash_escape] = ACTIONS(559), - [anon_sym_LT] = ACTIONS(561), - [sym_symbol] = ACTIONS(557), - [anon_sym_LBRACK_CARET] = ACTIONS(563), - [anon_sym_BANG_LBRACK] = ACTIONS(565), - [anon_sym_LBRACK] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_DOLLAR] = ACTIONS(571), - [anon_sym_TODO] = ACTIONS(573), - [anon_sym_WIP] = ACTIONS(573), - [anon_sym_NOTE] = ACTIONS(575), - [anon_sym_INFO] = ACTIONS(575), - [anon_sym_XXX] = ACTIONS(575), - [sym_fixme] = ACTIONS(557), - [sym__whitespace1] = ACTIONS(577), - [sym__newline] = ACTIONS(579), - [aux_sym__text_token1] = ACTIONS(581), - [sym__verbatim_begin] = ACTIONS(583), - }, - [36] = { - [sym__inline] = STATE(965), - [sym__element] = STATE(110), - [sym_emphasis] = STATE(146), - [sym_emphasis_begin] = STATE(1144), - [sym_strong] = STATE(146), - [sym_strong_begin] = STATE(1145), - [sym_superscript] = STATE(146), - [sym_superscript_begin] = STATE(1146), - [sym_subscript] = STATE(146), - [sym_subscript_begin] = STATE(1147), - [sym_highlighted] = STATE(146), - [sym_highlighted_begin] = STATE(1148), - [sym_insert] = STATE(146), - [sym_insert_begin] = STATE(1149), - [sym_delete] = STATE(146), - [sym_delete_begin] = STATE(1150), - [sym_hard_line_break] = STATE(144), - [sym__smart_punctuation] = STATE(144), - [sym_autolink] = STATE(144), - [sym_footnote_reference] = STATE(146), - [sym_footnote_marker_begin] = STATE(1151), - [sym__image] = STATE(146), - [sym_full_reference_image] = STATE(146), - [sym_collapsed_reference_image] = STATE(146), - [sym_inline_image] = STATE(146), - [sym_image_description] = STATE(673), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(146), - [sym_full_reference_link] = STATE(146), - [sym_collapsed_reference_link] = STATE(146), - [sym_inline_link] = STATE(146), - [sym_link_text] = STATE(662), - [sym_span] = STATE(110), - [sym__bracketed_text_begin] = STATE(1208), - [sym__comment_with_spaces] = STATE(144), - [sym_raw_inline] = STATE(144), - [sym_math] = STATE(144), - [sym_verbatim] = STATE(144), - [sym__todo_highlights] = STATE(144), - [sym_todo] = STATE(144), - [sym_note] = STATE(144), - [sym__symbol_fallback] = STATE(144), - [aux_sym__text] = STATE(128), - [aux_sym__inline_repeat1] = STATE(110), - [anon_sym_LBRACE_] = ACTIONS(587), - [anon_sym__] = ACTIONS(589), - [anon_sym_LBRACE_STAR] = ACTIONS(591), - [anon_sym_STAR] = ACTIONS(593), - [anon_sym_LBRACE_CARET] = ACTIONS(595), - [anon_sym_CARET] = ACTIONS(595), - [anon_sym_LBRACE_TILDE] = ACTIONS(597), - [anon_sym_TILDE] = ACTIONS(597), - [anon_sym_LBRACE_EQ] = ACTIONS(599), - [anon_sym_LBRACE_PLUS] = ACTIONS(601), - [anon_sym_LBRACE_DASH] = ACTIONS(603), - [anon_sym_BSLASH] = ACTIONS(605), - [sym_quotation_marks] = ACTIONS(607), - [sym_ellipsis] = ACTIONS(607), - [sym_em_dash] = ACTIONS(607), - [sym_en_dash] = ACTIONS(609), - [sym_backslash_escape] = ACTIONS(609), - [anon_sym_LT] = ACTIONS(611), - [sym_symbol] = ACTIONS(607), - [anon_sym_LBRACK_CARET] = ACTIONS(613), - [anon_sym_BANG_LBRACK] = ACTIONS(615), - [anon_sym_LBRACK] = ACTIONS(617), - [anon_sym_LPAREN] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [anon_sym_TODO] = ACTIONS(623), - [anon_sym_WIP] = ACTIONS(623), - [anon_sym_NOTE] = ACTIONS(625), - [anon_sym_INFO] = ACTIONS(625), - [anon_sym_XXX] = ACTIONS(625), - [sym_fixme] = ACTIONS(607), - [sym__whitespace1] = ACTIONS(627), - [sym__newline] = ACTIONS(629), - [aux_sym__text_token1] = ACTIONS(631), - [sym__verbatim_begin] = ACTIONS(633), - }, - [37] = { - [sym__inline_without_trailing_space] = STATE(897), - [sym__element] = STATE(550), - [sym_emphasis] = STATE(137), - [sym_emphasis_begin] = STATE(1114), - [sym_strong] = STATE(137), - [sym_strong_begin] = STATE(1115), - [sym_superscript] = STATE(137), - [sym_superscript_begin] = STATE(1116), - [sym_subscript] = STATE(137), - [sym_subscript_begin] = STATE(1117), - [sym_highlighted] = STATE(137), - [sym_highlighted_begin] = STATE(1118), - [sym_insert] = STATE(137), - [sym_insert_begin] = STATE(1119), - [sym_delete] = STATE(137), - [sym_delete_begin] = STATE(1120), - [sym_hard_line_break] = STATE(131), - [sym__smart_punctuation] = STATE(131), - [sym_autolink] = STATE(131), - [sym_footnote_reference] = STATE(137), - [sym_footnote_marker_begin] = STATE(1121), - [sym__image] = STATE(137), - [sym_full_reference_image] = STATE(137), - [sym_collapsed_reference_image] = STATE(137), - [sym_inline_image] = STATE(137), - [sym_image_description] = STATE(649), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(137), - [sym_full_reference_link] = STATE(137), - [sym_collapsed_reference_link] = STATE(137), - [sym_inline_link] = STATE(137), - [sym_link_text] = STATE(650), - [sym_span] = STATE(550), - [sym__bracketed_text_begin] = STATE(1205), - [sym__comment_with_spaces] = STATE(131), - [sym_raw_inline] = STATE(131), - [sym_math] = STATE(131), - [sym_verbatim] = STATE(131), - [sym__todo_highlights] = STATE(131), - [sym_todo] = STATE(131), - [sym_note] = STATE(131), - [sym__symbol_fallback] = STATE(131), - [aux_sym__text] = STATE(130), - [aux_sym__inline_repeat1] = STATE(119), - [anon_sym_LBRACE_] = ACTIONS(489), - [anon_sym__] = ACTIONS(491), - [anon_sym_LBRACE_STAR] = ACTIONS(493), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_LBRACE_CARET] = ACTIONS(497), - [anon_sym_CARET] = ACTIONS(497), - [anon_sym_LBRACE_TILDE] = ACTIONS(499), - [anon_sym_TILDE] = ACTIONS(499), - [anon_sym_LBRACE_EQ] = ACTIONS(501), - [anon_sym_LBRACE_PLUS] = ACTIONS(503), - [anon_sym_LBRACE_DASH] = ACTIONS(505), - [anon_sym_BSLASH] = ACTIONS(507), - [sym_quotation_marks] = ACTIONS(509), - [sym_ellipsis] = ACTIONS(509), - [sym_em_dash] = ACTIONS(509), - [sym_en_dash] = ACTIONS(511), - [sym_backslash_escape] = ACTIONS(511), - [anon_sym_LT] = ACTIONS(513), - [sym_symbol] = ACTIONS(509), - [anon_sym_LBRACK_CARET] = ACTIONS(515), - [anon_sym_BANG_LBRACK] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(519), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_DOLLAR] = ACTIONS(523), - [anon_sym_TODO] = ACTIONS(525), - [anon_sym_WIP] = ACTIONS(525), - [anon_sym_NOTE] = ACTIONS(527), - [anon_sym_INFO] = ACTIONS(527), - [anon_sym_XXX] = ACTIONS(527), - [sym_fixme] = ACTIONS(509), - [sym__whitespace1] = ACTIONS(529), - [sym__newline] = ACTIONS(531), - [aux_sym__text_token1] = ACTIONS(533), - [sym__verbatim_begin] = ACTIONS(535), + [sym_link_text] = STATE(686), + [sym_span] = STATE(23), + [sym__bracketed_text_begin] = STATE(1219), + [sym__comment_with_spaces] = STATE(138), + [sym_raw_inline] = STATE(138), + [sym_math] = STATE(138), + [sym_verbatim] = STATE(138), + [sym__todo_highlights] = STATE(138), + [sym_todo] = STATE(138), + [sym_note] = STATE(138), + [sym__symbol_fallback] = STATE(138), + [sym__newline] = STATE(23), + [aux_sym__text] = STATE(126), + [aux_sym__inline_repeat1] = STATE(23), + [anon_sym_LBRACE_] = ACTIONS(821), + [anon_sym__] = ACTIONS(824), + [anon_sym_LBRACE_STAR] = ACTIONS(827), + [anon_sym_STAR] = ACTIONS(830), + [anon_sym_LBRACE_CARET] = ACTIONS(833), + [anon_sym_CARET] = ACTIONS(833), + [anon_sym_LBRACE_TILDE] = ACTIONS(836), + [anon_sym_TILDE] = ACTIONS(836), + [anon_sym_LBRACE_EQ] = ACTIONS(839), + [anon_sym_LBRACE_PLUS] = ACTIONS(842), + [anon_sym_LBRACE_DASH] = ACTIONS(845), + [anon_sym_BSLASH] = ACTIONS(848), + [sym_quotation_marks] = ACTIONS(851), + [sym_ellipsis] = ACTIONS(851), + [sym_em_dash] = ACTIONS(851), + [sym_en_dash] = ACTIONS(854), + [sym_backslash_escape] = ACTIONS(854), + [anon_sym_LT] = ACTIONS(857), + [sym_symbol] = ACTIONS(851), + [anon_sym_LBRACK_CARET] = ACTIONS(860), + [anon_sym_BANG_LBRACK] = ACTIONS(863), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(866), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_DOLLAR] = ACTIONS(875), + [anon_sym_TODO] = ACTIONS(878), + [anon_sym_WIP] = ACTIONS(878), + [anon_sym_NOTE] = ACTIONS(881), + [anon_sym_INFO] = ACTIONS(881), + [anon_sym_XXX] = ACTIONS(881), + [sym_fixme] = ACTIONS(851), + [sym__whitespace1] = ACTIONS(884), + [anon_sym_LF] = ACTIONS(887), + [aux_sym__text_token1] = ACTIONS(890), + [sym__verbatim_begin] = ACTIONS(893), + [sym_insert_end] = ACTIONS(509), }, - [38] = { - [sym__element] = STATE(38), - [sym_emphasis] = STATE(147), - [sym_emphasis_begin] = STATE(1154), - [sym_strong] = STATE(147), - [sym_strong_begin] = STATE(1155), - [sym_superscript] = STATE(147), - [sym_superscript_begin] = STATE(1156), - [sym_subscript] = STATE(147), - [sym_subscript_begin] = STATE(1157), - [sym_highlighted] = STATE(147), - [sym_highlighted_begin] = STATE(1158), - [sym_insert] = STATE(147), - [sym_insert_begin] = STATE(1159), - [sym_delete] = STATE(147), - [sym_delete_begin] = STATE(1160), + [24] = { + [sym__element] = STATE(27), + [sym_emphasis] = STATE(131), + [sym_emphasis_begin] = STATE(1184), + [sym_strong] = STATE(131), + [sym_strong_begin] = STATE(1185), + [sym_superscript] = STATE(131), + [sym_superscript_begin] = STATE(1186), + [sym_subscript] = STATE(131), + [sym_subscript_begin] = STATE(1187), + [sym_highlighted] = STATE(131), + [sym_highlighted_begin] = STATE(1188), + [sym_insert] = STATE(131), + [sym_insert_begin] = STATE(1189), + [sym_delete] = STATE(131), + [sym_delete_begin] = STATE(1190), [sym_hard_line_break] = STATE(145), [sym__smart_punctuation] = STATE(145), [sym_autolink] = STATE(145), - [sym_footnote_reference] = STATE(147), - [sym_footnote_marker_begin] = STATE(1161), - [sym__image] = STATE(147), - [sym_full_reference_image] = STATE(147), - [sym_collapsed_reference_image] = STATE(147), - [sym_inline_image] = STATE(147), - [sym_image_description] = STATE(665), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(147), - [sym_full_reference_link] = STATE(147), - [sym_collapsed_reference_link] = STATE(147), - [sym_inline_link] = STATE(147), - [sym_link_text] = STATE(664), - [sym_span] = STATE(38), - [sym__bracketed_text_begin] = STATE(1209), + [sym_footnote_reference] = STATE(131), + [sym_footnote_marker_begin] = STATE(1191), + [sym__image] = STATE(131), + [sym_full_reference_image] = STATE(131), + [sym_collapsed_reference_image] = STATE(131), + [sym_inline_image] = STATE(131), + [sym_image_description] = STATE(662), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(131), + [sym_full_reference_link] = STATE(131), + [sym_collapsed_reference_link] = STATE(131), + [sym_inline_link] = STATE(131), + [sym_link_text] = STATE(663), + [sym_span] = STATE(27), + [sym__bracketed_text_begin] = STATE(1221), [sym__comment_with_spaces] = STATE(145), [sym_raw_inline] = STATE(145), [sym_math] = STATE(145), @@ -8215,239 +7245,244 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(145), [sym_note] = STATE(145), [sym__symbol_fallback] = STATE(145), - [aux_sym__text] = STATE(124), - [aux_sym__inline_repeat1] = STATE(38), - [anon_sym_LBRACE_] = ACTIONS(711), - [anon_sym__] = ACTIONS(714), - [anon_sym_LBRACE_STAR] = ACTIONS(717), - [anon_sym_STAR] = ACTIONS(720), - [anon_sym_LBRACE_CARET] = ACTIONS(723), - [anon_sym_CARET] = ACTIONS(723), - [anon_sym_LBRACE_TILDE] = ACTIONS(726), - [anon_sym_TILDE] = ACTIONS(726), - [anon_sym_LBRACE_EQ] = ACTIONS(729), - [anon_sym_LBRACE_PLUS] = ACTIONS(732), - [anon_sym_LBRACE_DASH] = ACTIONS(735), - [anon_sym_BSLASH] = ACTIONS(738), - [sym_quotation_marks] = ACTIONS(741), - [sym_ellipsis] = ACTIONS(741), - [sym_em_dash] = ACTIONS(741), - [sym_en_dash] = ACTIONS(744), - [sym_backslash_escape] = ACTIONS(744), - [anon_sym_LT] = ACTIONS(747), - [sym_symbol] = ACTIONS(741), - [anon_sym_LBRACK_CARET] = ACTIONS(750), - [anon_sym_BANG_LBRACK] = ACTIONS(753), - [anon_sym_LBRACK] = ACTIONS(756), - [anon_sym_LPAREN] = ACTIONS(759), - [anon_sym_DOLLAR] = ACTIONS(762), - [anon_sym_TODO] = ACTIONS(765), - [anon_sym_WIP] = ACTIONS(765), - [anon_sym_NOTE] = ACTIONS(768), - [anon_sym_INFO] = ACTIONS(768), - [anon_sym_XXX] = ACTIONS(768), - [sym_fixme] = ACTIONS(741), - [sym__whitespace1] = ACTIONS(771), - [sym__newline] = ACTIONS(774), - [aux_sym__text_token1] = ACTIONS(777), - [sym__verbatim_begin] = ACTIONS(780), - [sym_insert_end] = ACTIONS(221), + [sym__newline] = STATE(27), + [aux_sym__text] = STATE(129), + [aux_sym__inline_repeat1] = STATE(27), + [anon_sym_LBRACE_] = ACTIONS(459), + [anon_sym__] = ACTIONS(461), + [anon_sym_LBRACE_STAR] = ACTIONS(463), + [anon_sym_STAR] = ACTIONS(465), + [anon_sym_LBRACE_CARET] = ACTIONS(467), + [anon_sym_CARET] = ACTIONS(467), + [anon_sym_LBRACE_TILDE] = ACTIONS(469), + [anon_sym_TILDE] = ACTIONS(469), + [anon_sym_LBRACE_EQ] = ACTIONS(471), + [anon_sym_LBRACE_PLUS] = ACTIONS(473), + [anon_sym_LBRACE_DASH] = ACTIONS(475), + [anon_sym_BSLASH] = ACTIONS(477), + [sym_quotation_marks] = ACTIONS(479), + [sym_ellipsis] = ACTIONS(479), + [sym_em_dash] = ACTIONS(479), + [sym_en_dash] = ACTIONS(481), + [sym_backslash_escape] = ACTIONS(481), + [anon_sym_LT] = ACTIONS(483), + [sym_symbol] = ACTIONS(479), + [anon_sym_LBRACK_CARET] = ACTIONS(485), + [anon_sym_BANG_LBRACK] = ACTIONS(487), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(489), + [anon_sym_LBRACK] = ACTIONS(491), + [anon_sym_RBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(495), + [anon_sym_TODO] = ACTIONS(497), + [anon_sym_WIP] = ACTIONS(497), + [anon_sym_NOTE] = ACTIONS(499), + [anon_sym_INFO] = ACTIONS(499), + [anon_sym_XXX] = ACTIONS(499), + [sym_fixme] = ACTIONS(479), + [sym__whitespace1] = ACTIONS(501), + [anon_sym_LF] = ACTIONS(896), + [aux_sym__text_token1] = ACTIONS(505), + [sym__verbatim_begin] = ACTIONS(507), }, - [39] = { - [sym__element] = STATE(72), - [sym_emphasis] = STATE(141), - [sym_emphasis_begin] = STATE(1095), - [sym_strong] = STATE(141), - [sym_strong_begin] = STATE(1094), - [sym_superscript] = STATE(141), - [sym_superscript_begin] = STATE(1093), - [sym_subscript] = STATE(141), - [sym_subscript_begin] = STATE(1092), - [sym_highlighted] = STATE(141), - [sym_highlighted_begin] = STATE(1084), - [sym_insert] = STATE(141), - [sym_insert_begin] = STATE(1082), - [sym_delete] = STATE(141), - [sym_delete_begin] = STATE(1081), - [sym_hard_line_break] = STATE(151), - [sym__smart_punctuation] = STATE(151), - [sym_autolink] = STATE(151), - [sym_footnote_reference] = STATE(141), - [sym_footnote_marker_begin] = STATE(1080), - [sym__image] = STATE(141), - [sym_full_reference_image] = STATE(141), - [sym_collapsed_reference_image] = STATE(141), - [sym_inline_image] = STATE(141), - [sym_image_description] = STATE(666), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(141), - [sym_full_reference_link] = STATE(141), - [sym_collapsed_reference_link] = STATE(141), - [sym_inline_link] = STATE(141), - [sym_link_text] = STATE(652), - [sym_span] = STATE(72), - [sym__bracketed_text_begin] = STATE(1078), - [sym__comment_with_spaces] = STATE(151), - [sym_raw_inline] = STATE(151), - [sym_math] = STATE(151), - [sym_verbatim] = STATE(151), - [sym__todo_highlights] = STATE(151), - [sym_todo] = STATE(151), - [sym_note] = STATE(151), - [sym__symbol_fallback] = STATE(151), - [aux_sym__text] = STATE(125), - [aux_sym__inline_repeat1] = STATE(72), - [ts_builtin_sym_end] = ACTIONS(343), - [anon_sym_LBRACE_] = ACTIONS(3), - [anon_sym__] = ACTIONS(5), - [anon_sym_LBRACE_STAR] = ACTIONS(7), - [anon_sym_STAR] = ACTIONS(9), - [anon_sym_LBRACE_CARET] = ACTIONS(11), - [anon_sym_CARET] = ACTIONS(11), - [anon_sym_LBRACE_TILDE] = ACTIONS(13), - [anon_sym_TILDE] = ACTIONS(13), - [anon_sym_LBRACE_EQ] = ACTIONS(15), - [anon_sym_LBRACE_PLUS] = ACTIONS(17), - [anon_sym_LBRACE_DASH] = ACTIONS(19), - [anon_sym_BSLASH] = ACTIONS(21), - [sym_quotation_marks] = ACTIONS(23), - [sym_ellipsis] = ACTIONS(23), - [sym_em_dash] = ACTIONS(23), - [sym_en_dash] = ACTIONS(25), - [sym_backslash_escape] = ACTIONS(25), - [anon_sym_LT] = ACTIONS(27), - [sym_symbol] = ACTIONS(23), - [anon_sym_LBRACK_CARET] = ACTIONS(29), - [anon_sym_BANG_LBRACK] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(37), - [anon_sym_TODO] = ACTIONS(39), - [anon_sym_WIP] = ACTIONS(39), - [anon_sym_NOTE] = ACTIONS(41), - [anon_sym_INFO] = ACTIONS(41), - [anon_sym_XXX] = ACTIONS(41), - [sym_fixme] = ACTIONS(23), - [sym__whitespace1] = ACTIONS(43), - [sym__newline] = ACTIONS(783), - [aux_sym__text_token1] = ACTIONS(47), - [sym__verbatim_begin] = ACTIONS(49), + [25] = { + [sym__element] = STATE(25), + [sym_emphasis] = STATE(140), + [sym_emphasis_begin] = STATE(1174), + [sym_strong] = STATE(140), + [sym_strong_begin] = STATE(1175), + [sym_superscript] = STATE(140), + [sym_superscript_begin] = STATE(1176), + [sym_subscript] = STATE(140), + [sym_subscript_begin] = STATE(1177), + [sym_highlighted] = STATE(140), + [sym_highlighted_begin] = STATE(1178), + [sym_insert] = STATE(140), + [sym_insert_begin] = STATE(1179), + [sym_delete] = STATE(140), + [sym_delete_begin] = STATE(1180), + [sym_hard_line_break] = STATE(139), + [sym__smart_punctuation] = STATE(139), + [sym_autolink] = STATE(139), + [sym_footnote_reference] = STATE(140), + [sym_footnote_marker_begin] = STATE(1181), + [sym__image] = STATE(140), + [sym_full_reference_image] = STATE(140), + [sym_collapsed_reference_image] = STATE(140), + [sym_inline_image] = STATE(140), + [sym_image_description] = STATE(655), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(140), + [sym_full_reference_link] = STATE(140), + [sym_collapsed_reference_link] = STATE(140), + [sym_inline_link] = STATE(140), + [sym_link_text] = STATE(656), + [sym_span] = STATE(25), + [sym__bracketed_text_begin] = STATE(1220), + [sym__comment_with_spaces] = STATE(139), + [sym_raw_inline] = STATE(139), + [sym_math] = STATE(139), + [sym_verbatim] = STATE(139), + [sym__todo_highlights] = STATE(139), + [sym_todo] = STATE(139), + [sym_note] = STATE(139), + [sym__symbol_fallback] = STATE(139), + [sym__newline] = STATE(25), + [aux_sym__text] = STATE(127), + [aux_sym__inline_repeat1] = STATE(25), + [anon_sym_LBRACE_] = ACTIONS(898), + [anon_sym__] = ACTIONS(901), + [anon_sym_LBRACE_STAR] = ACTIONS(904), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_LBRACE_CARET] = ACTIONS(910), + [anon_sym_CARET] = ACTIONS(910), + [anon_sym_LBRACE_TILDE] = ACTIONS(913), + [anon_sym_TILDE] = ACTIONS(913), + [anon_sym_LBRACE_EQ] = ACTIONS(916), + [anon_sym_LBRACE_PLUS] = ACTIONS(919), + [anon_sym_LBRACE_DASH] = ACTIONS(922), + [anon_sym_BSLASH] = ACTIONS(925), + [sym_quotation_marks] = ACTIONS(928), + [sym_ellipsis] = ACTIONS(928), + [sym_em_dash] = ACTIONS(928), + [sym_en_dash] = ACTIONS(931), + [sym_backslash_escape] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(934), + [sym_symbol] = ACTIONS(928), + [anon_sym_LBRACK_CARET] = ACTIONS(937), + [anon_sym_BANG_LBRACK] = ACTIONS(940), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(943), + [anon_sym_LBRACK] = ACTIONS(946), + [anon_sym_LPAREN] = ACTIONS(949), + [anon_sym_DOLLAR] = ACTIONS(952), + [anon_sym_TODO] = ACTIONS(955), + [anon_sym_WIP] = ACTIONS(955), + [anon_sym_NOTE] = ACTIONS(958), + [anon_sym_INFO] = ACTIONS(958), + [anon_sym_XXX] = ACTIONS(958), + [sym_fixme] = ACTIONS(928), + [sym__whitespace1] = ACTIONS(961), + [anon_sym_LF] = ACTIONS(964), + [aux_sym__text_token1] = ACTIONS(967), + [sym__verbatim_begin] = ACTIONS(970), + [sym_delete_end] = ACTIONS(509), }, - [40] = { - [sym__inline_without_trailing_space] = STATE(896), - [sym__element] = STATE(594), + [26] = { + [sym__element] = STATE(28), [sym_emphasis] = STATE(149), - [sym_emphasis_begin] = STATE(1104), + [sym_emphasis_begin] = STATE(1194), [sym_strong] = STATE(149), - [sym_strong_begin] = STATE(1105), + [sym_strong_begin] = STATE(1195), [sym_superscript] = STATE(149), - [sym_superscript_begin] = STATE(1106), + [sym_superscript_begin] = STATE(1196), [sym_subscript] = STATE(149), - [sym_subscript_begin] = STATE(1107), + [sym_subscript_begin] = STATE(1197), [sym_highlighted] = STATE(149), - [sym_highlighted_begin] = STATE(1108), + [sym_highlighted_begin] = STATE(1198), [sym_insert] = STATE(149), - [sym_insert_begin] = STATE(1109), + [sym_insert_begin] = STATE(1199), [sym_delete] = STATE(149), - [sym_delete_begin] = STATE(1110), - [sym_hard_line_break] = STATE(143), - [sym__smart_punctuation] = STATE(143), - [sym_autolink] = STATE(143), + [sym_delete_begin] = STATE(1200), + [sym_hard_line_break] = STATE(148), + [sym__smart_punctuation] = STATE(148), + [sym_autolink] = STATE(148), [sym_footnote_reference] = STATE(149), - [sym_footnote_marker_begin] = STATE(1111), + [sym_footnote_marker_begin] = STATE(1201), [sym__image] = STATE(149), [sym_full_reference_image] = STATE(149), [sym_collapsed_reference_image] = STATE(149), [sym_inline_image] = STATE(149), - [sym_image_description] = STATE(658), - [sym__image_description_begin] = STATE(1079), + [sym_image_description] = STATE(667), + [sym__image_description_begin] = STATE(958), [sym__link] = STATE(149), [sym_full_reference_link] = STATE(149), [sym_collapsed_reference_link] = STATE(149), [sym_inline_link] = STATE(149), - [sym_link_text] = STATE(672), - [sym_span] = STATE(594), - [sym__bracketed_text_begin] = STATE(1204), - [sym__comment_with_spaces] = STATE(143), - [sym_raw_inline] = STATE(143), - [sym_math] = STATE(143), - [sym_verbatim] = STATE(143), - [sym__todo_highlights] = STATE(143), - [sym_todo] = STATE(143), - [sym_note] = STATE(143), - [sym__symbol_fallback] = STATE(143), - [aux_sym__text] = STATE(127), - [aux_sym__inline_repeat1] = STATE(120), - [anon_sym_LBRACE_] = ACTIONS(441), - [anon_sym__] = ACTIONS(443), - [anon_sym_LBRACE_STAR] = ACTIONS(445), - [anon_sym_STAR] = ACTIONS(447), - [anon_sym_LBRACE_CARET] = ACTIONS(449), - [anon_sym_CARET] = ACTIONS(449), - [anon_sym_LBRACE_TILDE] = ACTIONS(451), - [anon_sym_TILDE] = ACTIONS(451), - [anon_sym_LBRACE_EQ] = ACTIONS(453), - [anon_sym_LBRACE_PLUS] = ACTIONS(455), - [anon_sym_LBRACE_DASH] = ACTIONS(457), - [anon_sym_BSLASH] = ACTIONS(459), - [sym_quotation_marks] = ACTIONS(461), - [sym_ellipsis] = ACTIONS(461), - [sym_em_dash] = ACTIONS(461), - [sym_en_dash] = ACTIONS(463), - [sym_backslash_escape] = ACTIONS(463), - [anon_sym_LT] = ACTIONS(465), - [sym_symbol] = ACTIONS(461), - [anon_sym_LBRACK_CARET] = ACTIONS(467), - [anon_sym_BANG_LBRACK] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(471), - [anon_sym_LPAREN] = ACTIONS(473), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_TODO] = ACTIONS(477), - [anon_sym_WIP] = ACTIONS(477), - [anon_sym_NOTE] = ACTIONS(479), - [anon_sym_INFO] = ACTIONS(479), - [anon_sym_XXX] = ACTIONS(479), - [sym_fixme] = ACTIONS(461), - [sym__whitespace1] = ACTIONS(481), - [sym__newline] = ACTIONS(483), - [aux_sym__text_token1] = ACTIONS(485), - [sym__verbatim_begin] = ACTIONS(487), + [sym_link_text] = STATE(668), + [sym_span] = STATE(28), + [sym__bracketed_text_begin] = STATE(1222), + [sym__comment_with_spaces] = STATE(148), + [sym_raw_inline] = STATE(148), + [sym_math] = STATE(148), + [sym_verbatim] = STATE(148), + [sym__todo_highlights] = STATE(148), + [sym_todo] = STATE(148), + [sym_note] = STATE(148), + [sym__symbol_fallback] = STATE(148), + [sym__newline] = STATE(28), + [aux_sym__text] = STATE(130), + [aux_sym__inline_repeat1] = STATE(28), + [anon_sym_LBRACE_] = ACTIONS(53), + [anon_sym__] = ACTIONS(55), + [anon_sym_LBRACE_STAR] = ACTIONS(57), + [anon_sym_STAR] = ACTIONS(59), + [anon_sym_LBRACE_CARET] = ACTIONS(61), + [anon_sym_CARET] = ACTIONS(61), + [anon_sym_LBRACE_TILDE] = ACTIONS(63), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_LBRACE_EQ] = ACTIONS(65), + [anon_sym_LBRACE_PLUS] = ACTIONS(67), + [anon_sym_LBRACE_DASH] = ACTIONS(69), + [anon_sym_BSLASH] = ACTIONS(71), + [sym_quotation_marks] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(73), + [sym_em_dash] = ACTIONS(73), + [sym_en_dash] = ACTIONS(75), + [sym_backslash_escape] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [sym_symbol] = ACTIONS(73), + [anon_sym_LBRACK_CARET] = ACTIONS(79), + [anon_sym_BANG_LBRACK] = ACTIONS(81), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), + [anon_sym_DOLLAR] = ACTIONS(89), + [anon_sym_TODO] = ACTIONS(91), + [anon_sym_WIP] = ACTIONS(91), + [anon_sym_NOTE] = ACTIONS(93), + [anon_sym_INFO] = ACTIONS(93), + [anon_sym_XXX] = ACTIONS(93), + [sym_fixme] = ACTIONS(73), + [sym__whitespace1] = ACTIONS(95), + [anon_sym_LF] = ACTIONS(973), + [aux_sym__text_token1] = ACTIONS(99), + [sym__verbatim_begin] = ACTIONS(101), + [sym__square_bracket_span_end] = ACTIONS(155), }, - [41] = { - [sym__inline] = STATE(964), - [sym__element] = STATE(22), - [sym_emphasis] = STATE(147), - [sym_emphasis_begin] = STATE(1154), - [sym_strong] = STATE(147), - [sym_strong_begin] = STATE(1155), - [sym_superscript] = STATE(147), - [sym_superscript_begin] = STATE(1156), - [sym_subscript] = STATE(147), - [sym_subscript_begin] = STATE(1157), - [sym_highlighted] = STATE(147), - [sym_highlighted_begin] = STATE(1158), - [sym_insert] = STATE(147), - [sym_insert_begin] = STATE(1159), - [sym_delete] = STATE(147), - [sym_delete_begin] = STATE(1160), + [27] = { + [sym__element] = STATE(27), + [sym_emphasis] = STATE(131), + [sym_emphasis_begin] = STATE(1184), + [sym_strong] = STATE(131), + [sym_strong_begin] = STATE(1185), + [sym_superscript] = STATE(131), + [sym_superscript_begin] = STATE(1186), + [sym_subscript] = STATE(131), + [sym_subscript_begin] = STATE(1187), + [sym_highlighted] = STATE(131), + [sym_highlighted_begin] = STATE(1188), + [sym_insert] = STATE(131), + [sym_insert_begin] = STATE(1189), + [sym_delete] = STATE(131), + [sym_delete_begin] = STATE(1190), [sym_hard_line_break] = STATE(145), [sym__smart_punctuation] = STATE(145), [sym_autolink] = STATE(145), - [sym_footnote_reference] = STATE(147), - [sym_footnote_marker_begin] = STATE(1161), - [sym__image] = STATE(147), - [sym_full_reference_image] = STATE(147), - [sym_collapsed_reference_image] = STATE(147), - [sym_inline_image] = STATE(147), - [sym_image_description] = STATE(665), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(147), - [sym_full_reference_link] = STATE(147), - [sym_collapsed_reference_link] = STATE(147), - [sym_inline_link] = STATE(147), - [sym_link_text] = STATE(664), - [sym_span] = STATE(22), - [sym__bracketed_text_begin] = STATE(1209), + [sym_footnote_reference] = STATE(131), + [sym_footnote_marker_begin] = STATE(1191), + [sym__image] = STATE(131), + [sym_full_reference_image] = STATE(131), + [sym_collapsed_reference_image] = STATE(131), + [sym_inline_image] = STATE(131), + [sym_image_description] = STATE(662), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(131), + [sym_full_reference_link] = STATE(131), + [sym_collapsed_reference_link] = STATE(131), + [sym_inline_link] = STATE(131), + [sym_link_text] = STATE(663), + [sym_span] = STATE(27), + [sym__bracketed_text_begin] = STATE(1221), [sym__comment_with_spaces] = STATE(145), [sym_raw_inline] = STATE(145), [sym_math] = STATE(145), @@ -8456,397 +7491,573 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(145), [sym_note] = STATE(145), [sym__symbol_fallback] = STATE(145), - [aux_sym__text] = STATE(124), - [aux_sym__inline_repeat1] = STATE(22), - [anon_sym_LBRACE_] = ACTIONS(101), - [anon_sym__] = ACTIONS(103), - [anon_sym_LBRACE_STAR] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_LBRACE_CARET] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(109), - [anon_sym_LBRACE_TILDE] = ACTIONS(111), - [anon_sym_TILDE] = ACTIONS(111), - [anon_sym_LBRACE_EQ] = ACTIONS(113), - [anon_sym_LBRACE_PLUS] = ACTIONS(115), - [anon_sym_LBRACE_DASH] = ACTIONS(117), - [anon_sym_BSLASH] = ACTIONS(119), - [sym_quotation_marks] = ACTIONS(121), - [sym_ellipsis] = ACTIONS(121), - [sym_em_dash] = ACTIONS(121), - [sym_en_dash] = ACTIONS(123), - [sym_backslash_escape] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(125), - [sym_symbol] = ACTIONS(121), - [anon_sym_LBRACK_CARET] = ACTIONS(127), - [anon_sym_BANG_LBRACK] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_TODO] = ACTIONS(137), - [anon_sym_WIP] = ACTIONS(137), - [anon_sym_NOTE] = ACTIONS(139), - [anon_sym_INFO] = ACTIONS(139), - [anon_sym_XXX] = ACTIONS(139), - [sym_fixme] = ACTIONS(121), - [sym__whitespace1] = ACTIONS(141), - [sym__newline] = ACTIONS(143), - [aux_sym__text_token1] = ACTIONS(145), - [sym__verbatim_begin] = ACTIONS(147), + [sym__newline] = STATE(27), + [aux_sym__text] = STATE(129), + [aux_sym__inline_repeat1] = STATE(27), + [anon_sym_LBRACE_] = ACTIONS(975), + [anon_sym__] = ACTIONS(978), + [anon_sym_LBRACE_STAR] = ACTIONS(981), + [anon_sym_STAR] = ACTIONS(984), + [anon_sym_LBRACE_CARET] = ACTIONS(987), + [anon_sym_CARET] = ACTIONS(987), + [anon_sym_LBRACE_TILDE] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(990), + [anon_sym_LBRACE_EQ] = ACTIONS(993), + [anon_sym_LBRACE_PLUS] = ACTIONS(996), + [anon_sym_LBRACE_DASH] = ACTIONS(999), + [anon_sym_BSLASH] = ACTIONS(1002), + [sym_quotation_marks] = ACTIONS(1005), + [sym_ellipsis] = ACTIONS(1005), + [sym_em_dash] = ACTIONS(1005), + [sym_en_dash] = ACTIONS(1008), + [sym_backslash_escape] = ACTIONS(1008), + [anon_sym_LT] = ACTIONS(1011), + [sym_symbol] = ACTIONS(1005), + [anon_sym_LBRACK_CARET] = ACTIONS(1014), + [anon_sym_BANG_LBRACK] = ACTIONS(1017), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(1020), + [anon_sym_LBRACK] = ACTIONS(1023), + [anon_sym_RBRACK] = ACTIONS(509), + [anon_sym_LPAREN] = ACTIONS(1026), + [anon_sym_DOLLAR] = ACTIONS(1029), + [anon_sym_TODO] = ACTIONS(1032), + [anon_sym_WIP] = ACTIONS(1032), + [anon_sym_NOTE] = ACTIONS(1035), + [anon_sym_INFO] = ACTIONS(1035), + [anon_sym_XXX] = ACTIONS(1035), + [sym_fixme] = ACTIONS(1005), + [sym__whitespace1] = ACTIONS(1038), + [anon_sym_LF] = ACTIONS(1041), + [aux_sym__text_token1] = ACTIONS(1044), + [sym__verbatim_begin] = ACTIONS(1047), + }, + [28] = { + [sym__element] = STATE(28), + [sym_emphasis] = STATE(149), + [sym_emphasis_begin] = STATE(1194), + [sym_strong] = STATE(149), + [sym_strong_begin] = STATE(1195), + [sym_superscript] = STATE(149), + [sym_superscript_begin] = STATE(1196), + [sym_subscript] = STATE(149), + [sym_subscript_begin] = STATE(1197), + [sym_highlighted] = STATE(149), + [sym_highlighted_begin] = STATE(1198), + [sym_insert] = STATE(149), + [sym_insert_begin] = STATE(1199), + [sym_delete] = STATE(149), + [sym_delete_begin] = STATE(1200), + [sym_hard_line_break] = STATE(148), + [sym__smart_punctuation] = STATE(148), + [sym_autolink] = STATE(148), + [sym_footnote_reference] = STATE(149), + [sym_footnote_marker_begin] = STATE(1201), + [sym__image] = STATE(149), + [sym_full_reference_image] = STATE(149), + [sym_collapsed_reference_image] = STATE(149), + [sym_inline_image] = STATE(149), + [sym_image_description] = STATE(667), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(149), + [sym_full_reference_link] = STATE(149), + [sym_collapsed_reference_link] = STATE(149), + [sym_inline_link] = STATE(149), + [sym_link_text] = STATE(668), + [sym_span] = STATE(28), + [sym__bracketed_text_begin] = STATE(1222), + [sym__comment_with_spaces] = STATE(148), + [sym_raw_inline] = STATE(148), + [sym_math] = STATE(148), + [sym_verbatim] = STATE(148), + [sym__todo_highlights] = STATE(148), + [sym_todo] = STATE(148), + [sym_note] = STATE(148), + [sym__symbol_fallback] = STATE(148), + [sym__newline] = STATE(28), + [aux_sym__text] = STATE(130), + [aux_sym__inline_repeat1] = STATE(28), + [anon_sym_LBRACE_] = ACTIONS(1050), + [anon_sym__] = ACTIONS(1053), + [anon_sym_LBRACE_STAR] = ACTIONS(1056), + [anon_sym_STAR] = ACTIONS(1059), + [anon_sym_LBRACE_CARET] = ACTIONS(1062), + [anon_sym_CARET] = ACTIONS(1062), + [anon_sym_LBRACE_TILDE] = ACTIONS(1065), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LBRACE_EQ] = ACTIONS(1068), + [anon_sym_LBRACE_PLUS] = ACTIONS(1071), + [anon_sym_LBRACE_DASH] = ACTIONS(1074), + [anon_sym_BSLASH] = ACTIONS(1077), + [sym_quotation_marks] = ACTIONS(1080), + [sym_ellipsis] = ACTIONS(1080), + [sym_em_dash] = ACTIONS(1080), + [sym_en_dash] = ACTIONS(1083), + [sym_backslash_escape] = ACTIONS(1083), + [anon_sym_LT] = ACTIONS(1086), + [sym_symbol] = ACTIONS(1080), + [anon_sym_LBRACK_CARET] = ACTIONS(1089), + [anon_sym_BANG_LBRACK] = ACTIONS(1092), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(1095), + [anon_sym_LBRACK] = ACTIONS(1098), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_DOLLAR] = ACTIONS(1104), + [anon_sym_TODO] = ACTIONS(1107), + [anon_sym_WIP] = ACTIONS(1107), + [anon_sym_NOTE] = ACTIONS(1110), + [anon_sym_INFO] = ACTIONS(1110), + [anon_sym_XXX] = ACTIONS(1110), + [sym_fixme] = ACTIONS(1080), + [sym__whitespace1] = ACTIONS(1113), + [anon_sym_LF] = ACTIONS(1116), + [aux_sym__text_token1] = ACTIONS(1119), + [sym__verbatim_begin] = ACTIONS(1122), + [sym__square_bracket_span_end] = ACTIONS(509), + }, + [29] = { + [sym__inline_without_trailing_space] = STATE(1007), + [sym__element] = STATE(543), + [sym_emphasis] = STATE(150), + [sym_emphasis_begin] = STATE(1114), + [sym_strong] = STATE(150), + [sym_strong_begin] = STATE(1115), + [sym_superscript] = STATE(150), + [sym_superscript_begin] = STATE(1116), + [sym_subscript] = STATE(150), + [sym_subscript_begin] = STATE(1117), + [sym_highlighted] = STATE(150), + [sym_highlighted_begin] = STATE(1118), + [sym_insert] = STATE(150), + [sym_insert_begin] = STATE(1119), + [sym_delete] = STATE(150), + [sym_delete_begin] = STATE(1120), + [sym_hard_line_break] = STATE(133), + [sym__smart_punctuation] = STATE(133), + [sym_autolink] = STATE(133), + [sym_footnote_reference] = STATE(150), + [sym_footnote_marker_begin] = STATE(1121), + [sym__image] = STATE(150), + [sym_full_reference_image] = STATE(150), + [sym_collapsed_reference_image] = STATE(150), + [sym_inline_image] = STATE(150), + [sym_image_description] = STATE(678), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(150), + [sym_full_reference_link] = STATE(150), + [sym_collapsed_reference_link] = STATE(150), + [sym_inline_link] = STATE(150), + [sym_link_text] = STATE(679), + [sym_span] = STATE(543), + [sym__bracketed_text_begin] = STATE(1214), + [sym__comment_with_spaces] = STATE(133), + [sym_raw_inline] = STATE(133), + [sym_math] = STATE(133), + [sym_verbatim] = STATE(133), + [sym__todo_highlights] = STATE(133), + [sym_todo] = STATE(133), + [sym_note] = STATE(133), + [sym__symbol_fallback] = STATE(133), + [sym__newline] = STATE(119), + [aux_sym__text] = STATE(122), + [aux_sym__inline_repeat1] = STATE(119), + [anon_sym_LBRACE_] = ACTIONS(159), + [anon_sym__] = ACTIONS(161), + [anon_sym_LBRACE_STAR] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(165), + [anon_sym_LBRACE_CARET] = ACTIONS(167), + [anon_sym_CARET] = ACTIONS(167), + [anon_sym_LBRACE_TILDE] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(169), + [anon_sym_LBRACE_EQ] = ACTIONS(171), + [anon_sym_LBRACE_PLUS] = ACTIONS(173), + [anon_sym_LBRACE_DASH] = ACTIONS(175), + [anon_sym_BSLASH] = ACTIONS(177), + [sym_quotation_marks] = ACTIONS(179), + [sym_ellipsis] = ACTIONS(179), + [sym_em_dash] = ACTIONS(179), + [sym_en_dash] = ACTIONS(181), + [sym_backslash_escape] = ACTIONS(181), + [anon_sym_LT] = ACTIONS(183), + [sym_symbol] = ACTIONS(179), + [anon_sym_LBRACK_CARET] = ACTIONS(185), + [anon_sym_BANG_LBRACK] = ACTIONS(187), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(189), + [anon_sym_LBRACK] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(195), + [anon_sym_TODO] = ACTIONS(197), + [anon_sym_WIP] = ACTIONS(197), + [anon_sym_NOTE] = ACTIONS(199), + [anon_sym_INFO] = ACTIONS(199), + [anon_sym_XXX] = ACTIONS(199), + [sym_fixme] = ACTIONS(179), + [sym__whitespace1] = ACTIONS(201), + [anon_sym_LF] = ACTIONS(203), + [aux_sym__text_token1] = ACTIONS(205), + [sym__verbatim_begin] = ACTIONS(207), }, - [42] = { - [sym__inline] = STATE(870), - [sym__element] = STATE(46), - [sym_emphasis] = STATE(135), - [sym_emphasis_begin] = STATE(1174), - [sym_strong] = STATE(135), - [sym_strong_begin] = STATE(1175), - [sym_superscript] = STATE(135), - [sym_superscript_begin] = STATE(1176), - [sym_subscript] = STATE(135), - [sym_subscript_begin] = STATE(1177), - [sym_highlighted] = STATE(135), - [sym_highlighted_begin] = STATE(1178), - [sym_insert] = STATE(135), - [sym_insert_begin] = STATE(1179), - [sym_delete] = STATE(135), - [sym_delete_begin] = STATE(1180), - [sym_hard_line_break] = STATE(138), - [sym__smart_punctuation] = STATE(138), - [sym_autolink] = STATE(138), - [sym_footnote_reference] = STATE(135), - [sym_footnote_marker_begin] = STATE(1181), - [sym__image] = STATE(135), - [sym_full_reference_image] = STATE(135), - [sym_collapsed_reference_image] = STATE(135), - [sym_inline_image] = STATE(135), - [sym_image_description] = STATE(656), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(135), - [sym_full_reference_link] = STATE(135), - [sym_collapsed_reference_link] = STATE(135), - [sym_inline_link] = STATE(135), + [30] = { + [sym__inline_without_trailing_space] = STATE(1009), + [sym__element] = STATE(570), + [sym_emphasis] = STATE(142), + [sym_emphasis_begin] = STATE(1124), + [sym_strong] = STATE(142), + [sym_strong_begin] = STATE(1125), + [sym_superscript] = STATE(142), + [sym_superscript_begin] = STATE(1126), + [sym_subscript] = STATE(142), + [sym_subscript_begin] = STATE(1127), + [sym_highlighted] = STATE(142), + [sym_highlighted_begin] = STATE(1128), + [sym_insert] = STATE(142), + [sym_insert_begin] = STATE(1129), + [sym_delete] = STATE(142), + [sym_delete_begin] = STATE(1130), + [sym_hard_line_break] = STATE(137), + [sym__smart_punctuation] = STATE(137), + [sym_autolink] = STATE(137), + [sym_footnote_reference] = STATE(142), + [sym_footnote_marker_begin] = STATE(1131), + [sym__image] = STATE(142), + [sym_full_reference_image] = STATE(142), + [sym_collapsed_reference_image] = STATE(142), + [sym_inline_image] = STATE(142), + [sym_image_description] = STATE(687), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(142), + [sym_full_reference_link] = STATE(142), + [sym_collapsed_reference_link] = STATE(142), + [sym_inline_link] = STATE(142), [sym_link_text] = STATE(654), - [sym_span] = STATE(46), - [sym__bracketed_text_begin] = STATE(1211), - [sym__comment_with_spaces] = STATE(138), - [sym_raw_inline] = STATE(138), - [sym_math] = STATE(138), - [sym_verbatim] = STATE(138), - [sym__todo_highlights] = STATE(138), - [sym_todo] = STATE(138), - [sym_note] = STATE(138), - [sym__symbol_fallback] = STATE(138), - [aux_sym__text] = STATE(121), - [aux_sym__inline_repeat1] = STATE(46), - [anon_sym_LBRACE_] = ACTIONS(345), - [anon_sym__] = ACTIONS(347), - [anon_sym_LBRACE_STAR] = ACTIONS(349), - [anon_sym_STAR] = ACTIONS(351), - [anon_sym_LBRACE_CARET] = ACTIONS(353), - [anon_sym_CARET] = ACTIONS(353), - [anon_sym_LBRACE_TILDE] = ACTIONS(355), - [anon_sym_TILDE] = ACTIONS(355), - [anon_sym_LBRACE_EQ] = ACTIONS(357), - [anon_sym_LBRACE_PLUS] = ACTIONS(359), - [anon_sym_LBRACE_DASH] = ACTIONS(361), - [anon_sym_BSLASH] = ACTIONS(363), - [sym_quotation_marks] = ACTIONS(365), - [sym_ellipsis] = ACTIONS(365), - [sym_em_dash] = ACTIONS(365), - [sym_en_dash] = ACTIONS(367), - [sym_backslash_escape] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(369), - [sym_symbol] = ACTIONS(365), - [anon_sym_LBRACK_CARET] = ACTIONS(371), - [anon_sym_BANG_LBRACK] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LPAREN] = ACTIONS(377), - [anon_sym_DOLLAR] = ACTIONS(379), - [anon_sym_TODO] = ACTIONS(381), - [anon_sym_WIP] = ACTIONS(381), - [anon_sym_NOTE] = ACTIONS(383), - [anon_sym_INFO] = ACTIONS(383), - [anon_sym_XXX] = ACTIONS(383), - [sym_fixme] = ACTIONS(365), - [sym__whitespace1] = ACTIONS(385), - [sym__newline] = ACTIONS(387), - [aux_sym__text_token1] = ACTIONS(389), - [sym__verbatim_begin] = ACTIONS(391), + [sym_span] = STATE(570), + [sym__bracketed_text_begin] = STATE(1215), + [sym__comment_with_spaces] = STATE(137), + [sym_raw_inline] = STATE(137), + [sym_math] = STATE(137), + [sym_verbatim] = STATE(137), + [sym__todo_highlights] = STATE(137), + [sym_todo] = STATE(137), + [sym_note] = STATE(137), + [sym__symbol_fallback] = STATE(137), + [sym__newline] = STATE(118), + [aux_sym__text] = STATE(128), + [aux_sym__inline_repeat1] = STATE(118), + [anon_sym_LBRACE_] = ACTIONS(209), + [anon_sym__] = ACTIONS(211), + [anon_sym_LBRACE_STAR] = ACTIONS(213), + [anon_sym_STAR] = ACTIONS(215), + [anon_sym_LBRACE_CARET] = ACTIONS(217), + [anon_sym_CARET] = ACTIONS(217), + [anon_sym_LBRACE_TILDE] = ACTIONS(219), + [anon_sym_TILDE] = ACTIONS(219), + [anon_sym_LBRACE_EQ] = ACTIONS(221), + [anon_sym_LBRACE_PLUS] = ACTIONS(223), + [anon_sym_LBRACE_DASH] = ACTIONS(225), + [anon_sym_BSLASH] = ACTIONS(227), + [sym_quotation_marks] = ACTIONS(229), + [sym_ellipsis] = ACTIONS(229), + [sym_em_dash] = ACTIONS(229), + [sym_en_dash] = ACTIONS(231), + [sym_backslash_escape] = ACTIONS(231), + [anon_sym_LT] = ACTIONS(233), + [sym_symbol] = ACTIONS(229), + [anon_sym_LBRACK_CARET] = ACTIONS(235), + [anon_sym_BANG_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_LPAREN] = ACTIONS(243), + [anon_sym_DOLLAR] = ACTIONS(245), + [anon_sym_TODO] = ACTIONS(247), + [anon_sym_WIP] = ACTIONS(247), + [anon_sym_NOTE] = ACTIONS(249), + [anon_sym_INFO] = ACTIONS(249), + [anon_sym_XXX] = ACTIONS(249), + [sym_fixme] = ACTIONS(229), + [sym__whitespace1] = ACTIONS(251), + [anon_sym_LF] = ACTIONS(253), + [aux_sym__text_token1] = ACTIONS(255), + [sym__verbatim_begin] = ACTIONS(257), }, - [43] = { - [sym__inline] = STATE(868), - [sym__element] = STATE(30), + [31] = { + [sym__inline] = STATE(1010), + [sym__element] = STATE(15), [sym_emphasis] = STATE(132), - [sym_emphasis_begin] = STATE(1164), + [sym_emphasis_begin] = STATE(1134), [sym_strong] = STATE(132), - [sym_strong_begin] = STATE(1165), + [sym_strong_begin] = STATE(1135), [sym_superscript] = STATE(132), - [sym_superscript_begin] = STATE(1166), + [sym_superscript_begin] = STATE(1136), [sym_subscript] = STATE(132), - [sym_subscript_begin] = STATE(1167), + [sym_subscript_begin] = STATE(1137), [sym_highlighted] = STATE(132), - [sym_highlighted_begin] = STATE(1168), + [sym_highlighted_begin] = STATE(1138), [sym_insert] = STATE(132), - [sym_insert_begin] = STATE(1169), + [sym_insert_begin] = STATE(1139), [sym_delete] = STATE(132), - [sym_delete_begin] = STATE(1170), - [sym_hard_line_break] = STATE(142), - [sym__smart_punctuation] = STATE(142), - [sym_autolink] = STATE(142), + [sym_delete_begin] = STATE(1140), + [sym_hard_line_break] = STATE(147), + [sym__smart_punctuation] = STATE(147), + [sym_autolink] = STATE(147), [sym_footnote_reference] = STATE(132), - [sym_footnote_marker_begin] = STATE(1171), + [sym_footnote_marker_begin] = STATE(1141), [sym__image] = STATE(132), [sym_full_reference_image] = STATE(132), [sym_collapsed_reference_image] = STATE(132), [sym_inline_image] = STATE(132), - [sym_image_description] = STATE(660), - [sym__image_description_begin] = STATE(1079), + [sym_image_description] = STATE(682), + [sym__image_description_begin] = STATE(958), [sym__link] = STATE(132), [sym_full_reference_link] = STATE(132), [sym_collapsed_reference_link] = STATE(132), [sym_inline_link] = STATE(132), - [sym_link_text] = STATE(659), - [sym_span] = STATE(30), - [sym__bracketed_text_begin] = STATE(1210), - [sym__comment_with_spaces] = STATE(142), - [sym_raw_inline] = STATE(142), - [sym_math] = STATE(142), - [sym_verbatim] = STATE(142), - [sym__todo_highlights] = STATE(142), - [sym_todo] = STATE(142), - [sym_note] = STATE(142), - [sym__symbol_fallback] = STATE(142), - [aux_sym__text] = STATE(126), - [aux_sym__inline_repeat1] = STATE(30), - [anon_sym_LBRACE_] = ACTIONS(393), - [anon_sym__] = ACTIONS(395), - [anon_sym_LBRACE_STAR] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(399), - [anon_sym_LBRACE_CARET] = ACTIONS(401), - [anon_sym_CARET] = ACTIONS(401), - [anon_sym_LBRACE_TILDE] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_LBRACE_EQ] = ACTIONS(405), - [anon_sym_LBRACE_PLUS] = ACTIONS(407), - [anon_sym_LBRACE_DASH] = ACTIONS(409), - [anon_sym_BSLASH] = ACTIONS(411), - [sym_quotation_marks] = ACTIONS(413), - [sym_ellipsis] = ACTIONS(413), - [sym_em_dash] = ACTIONS(413), - [sym_en_dash] = ACTIONS(415), - [sym_backslash_escape] = ACTIONS(415), - [anon_sym_LT] = ACTIONS(417), - [sym_symbol] = ACTIONS(413), - [anon_sym_LBRACK_CARET] = ACTIONS(419), - [anon_sym_BANG_LBRACK] = ACTIONS(421), - [anon_sym_LBRACK] = ACTIONS(423), - [anon_sym_LPAREN] = ACTIONS(425), - [anon_sym_DOLLAR] = ACTIONS(427), - [anon_sym_TODO] = ACTIONS(429), - [anon_sym_WIP] = ACTIONS(429), - [anon_sym_NOTE] = ACTIONS(431), - [anon_sym_INFO] = ACTIONS(431), - [anon_sym_XXX] = ACTIONS(431), - [sym_fixme] = ACTIONS(413), - [sym__whitespace1] = ACTIONS(433), - [sym__newline] = ACTIONS(435), - [aux_sym__text_token1] = ACTIONS(437), - [sym__verbatim_begin] = ACTIONS(439), + [sym_link_text] = STATE(689), + [sym_span] = STATE(15), + [sym__bracketed_text_begin] = STATE(1216), + [sym__comment_with_spaces] = STATE(147), + [sym_raw_inline] = STATE(147), + [sym_math] = STATE(147), + [sym_verbatim] = STATE(147), + [sym__todo_highlights] = STATE(147), + [sym_todo] = STATE(147), + [sym_note] = STATE(147), + [sym__symbol_fallback] = STATE(147), + [sym__newline] = STATE(15), + [aux_sym__text] = STATE(121), + [aux_sym__inline_repeat1] = STATE(15), + [anon_sym_LBRACE_] = ACTIONS(105), + [anon_sym__] = ACTIONS(107), + [anon_sym_LBRACE_STAR] = ACTIONS(109), + [anon_sym_STAR] = ACTIONS(111), + [anon_sym_LBRACE_CARET] = ACTIONS(113), + [anon_sym_CARET] = ACTIONS(113), + [anon_sym_LBRACE_TILDE] = ACTIONS(115), + [anon_sym_TILDE] = ACTIONS(115), + [anon_sym_LBRACE_EQ] = ACTIONS(117), + [anon_sym_LBRACE_PLUS] = ACTIONS(119), + [anon_sym_LBRACE_DASH] = ACTIONS(121), + [anon_sym_BSLASH] = ACTIONS(123), + [sym_quotation_marks] = ACTIONS(125), + [sym_ellipsis] = ACTIONS(125), + [sym_em_dash] = ACTIONS(125), + [sym_en_dash] = ACTIONS(127), + [sym_backslash_escape] = ACTIONS(127), + [anon_sym_LT] = ACTIONS(129), + [sym_symbol] = ACTIONS(125), + [anon_sym_LBRACK_CARET] = ACTIONS(131), + [anon_sym_BANG_LBRACK] = ACTIONS(133), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(135), + [anon_sym_LBRACK] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_TODO] = ACTIONS(143), + [anon_sym_WIP] = ACTIONS(143), + [anon_sym_NOTE] = ACTIONS(145), + [anon_sym_INFO] = ACTIONS(145), + [anon_sym_XXX] = ACTIONS(145), + [sym_fixme] = ACTIONS(125), + [sym__whitespace1] = ACTIONS(147), + [anon_sym_LF] = ACTIONS(149), + [aux_sym__text_token1] = ACTIONS(151), + [sym__verbatim_begin] = ACTIONS(153), }, - [44] = { - [sym__inline] = STATE(955), - [sym__element] = STATE(30), - [sym_emphasis] = STATE(132), - [sym_emphasis_begin] = STATE(1164), - [sym_strong] = STATE(132), - [sym_strong_begin] = STATE(1165), - [sym_superscript] = STATE(132), - [sym_superscript_begin] = STATE(1166), - [sym_subscript] = STATE(132), - [sym_subscript_begin] = STATE(1167), - [sym_highlighted] = STATE(132), - [sym_highlighted_begin] = STATE(1168), - [sym_insert] = STATE(132), - [sym_insert_begin] = STATE(1169), - [sym_delete] = STATE(132), - [sym_delete_begin] = STATE(1170), - [sym_hard_line_break] = STATE(142), - [sym__smart_punctuation] = STATE(142), - [sym_autolink] = STATE(142), - [sym_footnote_reference] = STATE(132), - [sym_footnote_marker_begin] = STATE(1171), - [sym__image] = STATE(132), - [sym_full_reference_image] = STATE(132), - [sym_collapsed_reference_image] = STATE(132), - [sym_inline_image] = STATE(132), + [32] = { + [sym__inline] = STATE(1011), + [sym__element] = STATE(16), + [sym_emphasis] = STATE(143), + [sym_emphasis_begin] = STATE(1144), + [sym_strong] = STATE(143), + [sym_strong_begin] = STATE(1145), + [sym_superscript] = STATE(143), + [sym_superscript_begin] = STATE(1146), + [sym_subscript] = STATE(143), + [sym_subscript_begin] = STATE(1147), + [sym_highlighted] = STATE(143), + [sym_highlighted_begin] = STATE(1148), + [sym_insert] = STATE(143), + [sym_insert_begin] = STATE(1149), + [sym_delete] = STATE(143), + [sym_delete_begin] = STATE(1150), + [sym_hard_line_break] = STATE(141), + [sym__smart_punctuation] = STATE(141), + [sym_autolink] = STATE(141), + [sym_footnote_reference] = STATE(143), + [sym_footnote_marker_begin] = STATE(1151), + [sym__image] = STATE(143), + [sym_full_reference_image] = STATE(143), + [sym_collapsed_reference_image] = STATE(143), + [sym_inline_image] = STATE(143), [sym_image_description] = STATE(660), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(132), - [sym_full_reference_link] = STATE(132), - [sym_collapsed_reference_link] = STATE(132), - [sym_inline_link] = STATE(132), - [sym_link_text] = STATE(659), - [sym_span] = STATE(30), - [sym__bracketed_text_begin] = STATE(1210), - [sym__comment_with_spaces] = STATE(142), - [sym_raw_inline] = STATE(142), - [sym_math] = STATE(142), - [sym_verbatim] = STATE(142), - [sym__todo_highlights] = STATE(142), - [sym_todo] = STATE(142), - [sym_note] = STATE(142), - [sym__symbol_fallback] = STATE(142), - [aux_sym__text] = STATE(126), - [aux_sym__inline_repeat1] = STATE(30), - [anon_sym_LBRACE_] = ACTIONS(393), - [anon_sym__] = ACTIONS(395), - [anon_sym_LBRACE_STAR] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(399), - [anon_sym_LBRACE_CARET] = ACTIONS(401), - [anon_sym_CARET] = ACTIONS(401), - [anon_sym_LBRACE_TILDE] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_LBRACE_EQ] = ACTIONS(405), - [anon_sym_LBRACE_PLUS] = ACTIONS(407), - [anon_sym_LBRACE_DASH] = ACTIONS(409), - [anon_sym_BSLASH] = ACTIONS(411), - [sym_quotation_marks] = ACTIONS(413), - [sym_ellipsis] = ACTIONS(413), - [sym_em_dash] = ACTIONS(413), - [sym_en_dash] = ACTIONS(415), - [sym_backslash_escape] = ACTIONS(415), - [anon_sym_LT] = ACTIONS(417), - [sym_symbol] = ACTIONS(413), - [anon_sym_LBRACK_CARET] = ACTIONS(419), - [anon_sym_BANG_LBRACK] = ACTIONS(421), - [anon_sym_LBRACK] = ACTIONS(423), - [anon_sym_LPAREN] = ACTIONS(425), - [anon_sym_DOLLAR] = ACTIONS(427), - [anon_sym_TODO] = ACTIONS(429), - [anon_sym_WIP] = ACTIONS(429), - [anon_sym_NOTE] = ACTIONS(431), - [anon_sym_INFO] = ACTIONS(431), - [anon_sym_XXX] = ACTIONS(431), - [sym_fixme] = ACTIONS(413), - [sym__whitespace1] = ACTIONS(433), - [sym__newline] = ACTIONS(435), - [aux_sym__text_token1] = ACTIONS(437), - [sym__verbatim_begin] = ACTIONS(439), - }, - [45] = { - [sym__inline] = STATE(867), - [sym__element] = STATE(22), - [sym_emphasis] = STATE(147), - [sym_emphasis_begin] = STATE(1154), - [sym_strong] = STATE(147), - [sym_strong_begin] = STATE(1155), - [sym_superscript] = STATE(147), - [sym_superscript_begin] = STATE(1156), - [sym_subscript] = STATE(147), - [sym_subscript_begin] = STATE(1157), - [sym_highlighted] = STATE(147), - [sym_highlighted_begin] = STATE(1158), - [sym_insert] = STATE(147), - [sym_insert_begin] = STATE(1159), - [sym_delete] = STATE(147), - [sym_delete_begin] = STATE(1160), - [sym_hard_line_break] = STATE(145), - [sym__smart_punctuation] = STATE(145), - [sym_autolink] = STATE(145), - [sym_footnote_reference] = STATE(147), - [sym_footnote_marker_begin] = STATE(1161), - [sym__image] = STATE(147), - [sym_full_reference_image] = STATE(147), - [sym_collapsed_reference_image] = STATE(147), - [sym_inline_image] = STATE(147), - [sym_image_description] = STATE(665), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(147), - [sym_full_reference_link] = STATE(147), - [sym_collapsed_reference_link] = STATE(147), - [sym_inline_link] = STATE(147), - [sym_link_text] = STATE(664), - [sym_span] = STATE(22), - [sym__bracketed_text_begin] = STATE(1209), - [sym__comment_with_spaces] = STATE(145), - [sym_raw_inline] = STATE(145), - [sym_math] = STATE(145), - [sym_verbatim] = STATE(145), - [sym__todo_highlights] = STATE(145), - [sym_todo] = STATE(145), - [sym_note] = STATE(145), - [sym__symbol_fallback] = STATE(145), - [aux_sym__text] = STATE(124), - [aux_sym__inline_repeat1] = STATE(22), - [anon_sym_LBRACE_] = ACTIONS(101), - [anon_sym__] = ACTIONS(103), - [anon_sym_LBRACE_STAR] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_LBRACE_CARET] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(109), - [anon_sym_LBRACE_TILDE] = ACTIONS(111), - [anon_sym_TILDE] = ACTIONS(111), - [anon_sym_LBRACE_EQ] = ACTIONS(113), - [anon_sym_LBRACE_PLUS] = ACTIONS(115), - [anon_sym_LBRACE_DASH] = ACTIONS(117), - [anon_sym_BSLASH] = ACTIONS(119), - [sym_quotation_marks] = ACTIONS(121), - [sym_ellipsis] = ACTIONS(121), - [sym_em_dash] = ACTIONS(121), - [sym_en_dash] = ACTIONS(123), - [sym_backslash_escape] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(125), - [sym_symbol] = ACTIONS(121), - [anon_sym_LBRACK_CARET] = ACTIONS(127), - [anon_sym_BANG_LBRACK] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_TODO] = ACTIONS(137), - [anon_sym_WIP] = ACTIONS(137), - [anon_sym_NOTE] = ACTIONS(139), - [anon_sym_INFO] = ACTIONS(139), - [anon_sym_XXX] = ACTIONS(139), - [sym_fixme] = ACTIONS(121), - [sym__whitespace1] = ACTIONS(141), - [sym__newline] = ACTIONS(143), - [aux_sym__text_token1] = ACTIONS(145), - [sym__verbatim_begin] = ACTIONS(147), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(143), + [sym_full_reference_link] = STATE(143), + [sym_collapsed_reference_link] = STATE(143), + [sym_inline_link] = STATE(143), + [sym_link_text] = STATE(661), + [sym_span] = STATE(16), + [sym__bracketed_text_begin] = STATE(1217), + [sym__comment_with_spaces] = STATE(141), + [sym_raw_inline] = STATE(141), + [sym_math] = STATE(141), + [sym_verbatim] = STATE(141), + [sym__todo_highlights] = STATE(141), + [sym_todo] = STATE(141), + [sym_note] = STATE(141), + [sym__symbol_fallback] = STATE(141), + [sym__newline] = STATE(16), + [aux_sym__text] = STATE(125), + [aux_sym__inline_repeat1] = STATE(16), + [anon_sym_LBRACE_] = ACTIONS(259), + [anon_sym__] = ACTIONS(261), + [anon_sym_LBRACE_STAR] = ACTIONS(263), + [anon_sym_STAR] = ACTIONS(265), + [anon_sym_LBRACE_CARET] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_LBRACE_TILDE] = ACTIONS(269), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_LBRACE_EQ] = ACTIONS(271), + [anon_sym_LBRACE_PLUS] = ACTIONS(273), + [anon_sym_LBRACE_DASH] = ACTIONS(275), + [anon_sym_BSLASH] = ACTIONS(277), + [sym_quotation_marks] = ACTIONS(279), + [sym_ellipsis] = ACTIONS(279), + [sym_em_dash] = ACTIONS(279), + [sym_en_dash] = ACTIONS(281), + [sym_backslash_escape] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(283), + [sym_symbol] = ACTIONS(279), + [anon_sym_LBRACK_CARET] = ACTIONS(285), + [anon_sym_BANG_LBRACK] = ACTIONS(287), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_DOLLAR] = ACTIONS(295), + [anon_sym_TODO] = ACTIONS(297), + [anon_sym_WIP] = ACTIONS(297), + [anon_sym_NOTE] = ACTIONS(299), + [anon_sym_INFO] = ACTIONS(299), + [anon_sym_XXX] = ACTIONS(299), + [sym_fixme] = ACTIONS(279), + [sym__whitespace1] = ACTIONS(301), + [anon_sym_LF] = ACTIONS(303), + [aux_sym__text_token1] = ACTIONS(305), + [sym__verbatim_begin] = ACTIONS(307), }, - [46] = { - [sym__element] = STATE(71), + [33] = { + [sym__inline] = STATE(1012), + [sym__element] = STATE(18), [sym_emphasis] = STATE(135), - [sym_emphasis_begin] = STATE(1174), + [sym_emphasis_begin] = STATE(1154), [sym_strong] = STATE(135), - [sym_strong_begin] = STATE(1175), + [sym_strong_begin] = STATE(1155), [sym_superscript] = STATE(135), - [sym_superscript_begin] = STATE(1176), + [sym_superscript_begin] = STATE(1156), [sym_subscript] = STATE(135), - [sym_subscript_begin] = STATE(1177), + [sym_subscript_begin] = STATE(1157), [sym_highlighted] = STATE(135), - [sym_highlighted_begin] = STATE(1178), + [sym_highlighted_begin] = STATE(1158), [sym_insert] = STATE(135), - [sym_insert_begin] = STATE(1179), + [sym_insert_begin] = STATE(1159), [sym_delete] = STATE(135), - [sym_delete_begin] = STATE(1180), - [sym_hard_line_break] = STATE(138), - [sym__smart_punctuation] = STATE(138), - [sym_autolink] = STATE(138), + [sym_delete_begin] = STATE(1160), + [sym_hard_line_break] = STATE(134), + [sym__smart_punctuation] = STATE(134), + [sym_autolink] = STATE(134), [sym_footnote_reference] = STATE(135), - [sym_footnote_marker_begin] = STATE(1181), + [sym_footnote_marker_begin] = STATE(1161), [sym__image] = STATE(135), [sym_full_reference_image] = STATE(135), [sym_collapsed_reference_image] = STATE(135), [sym_inline_image] = STATE(135), - [sym_image_description] = STATE(656), - [sym__image_description_begin] = STATE(1079), + [sym_image_description] = STATE(677), + [sym__image_description_begin] = STATE(958), [sym__link] = STATE(135), [sym_full_reference_link] = STATE(135), [sym_collapsed_reference_link] = STATE(135), [sym_inline_link] = STATE(135), - [sym_link_text] = STATE(654), - [sym_span] = STATE(71), - [sym__bracketed_text_begin] = STATE(1211), + [sym_link_text] = STATE(680), + [sym_span] = STATE(18), + [sym__bracketed_text_begin] = STATE(1218), + [sym__comment_with_spaces] = STATE(134), + [sym_raw_inline] = STATE(134), + [sym_math] = STATE(134), + [sym_verbatim] = STATE(134), + [sym__todo_highlights] = STATE(134), + [sym_todo] = STATE(134), + [sym_note] = STATE(134), + [sym__symbol_fallback] = STATE(134), + [sym__newline] = STATE(18), + [aux_sym__text] = STATE(123), + [aux_sym__inline_repeat1] = STATE(18), + [anon_sym_LBRACE_] = ACTIONS(309), + [anon_sym__] = ACTIONS(311), + [anon_sym_LBRACE_STAR] = ACTIONS(313), + [anon_sym_STAR] = ACTIONS(315), + [anon_sym_LBRACE_CARET] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_LBRACE_TILDE] = ACTIONS(319), + [anon_sym_TILDE] = ACTIONS(319), + [anon_sym_LBRACE_EQ] = ACTIONS(321), + [anon_sym_LBRACE_PLUS] = ACTIONS(323), + [anon_sym_LBRACE_DASH] = ACTIONS(325), + [anon_sym_BSLASH] = ACTIONS(327), + [sym_quotation_marks] = ACTIONS(329), + [sym_ellipsis] = ACTIONS(329), + [sym_em_dash] = ACTIONS(329), + [sym_en_dash] = ACTIONS(331), + [sym_backslash_escape] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [sym_symbol] = ACTIONS(329), + [anon_sym_LBRACK_CARET] = ACTIONS(335), + [anon_sym_BANG_LBRACK] = ACTIONS(337), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(339), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_DOLLAR] = ACTIONS(345), + [anon_sym_TODO] = ACTIONS(347), + [anon_sym_WIP] = ACTIONS(347), + [anon_sym_NOTE] = ACTIONS(349), + [anon_sym_INFO] = ACTIONS(349), + [anon_sym_XXX] = ACTIONS(349), + [sym_fixme] = ACTIONS(329), + [sym__whitespace1] = ACTIONS(351), + [anon_sym_LF] = ACTIONS(353), + [aux_sym__text_token1] = ACTIONS(355), + [sym__verbatim_begin] = ACTIONS(357), + }, + [34] = { + [sym__inline] = STATE(1014), + [sym__element] = STATE(20), + [sym_emphasis] = STATE(136), + [sym_emphasis_begin] = STATE(1164), + [sym_strong] = STATE(136), + [sym_strong_begin] = STATE(1165), + [sym_superscript] = STATE(136), + [sym_superscript_begin] = STATE(1166), + [sym_subscript] = STATE(136), + [sym_subscript_begin] = STATE(1167), + [sym_highlighted] = STATE(136), + [sym_highlighted_begin] = STATE(1168), + [sym_insert] = STATE(136), + [sym_insert_begin] = STATE(1169), + [sym_delete] = STATE(136), + [sym_delete_begin] = STATE(1170), + [sym_hard_line_break] = STATE(138), + [sym__smart_punctuation] = STATE(138), + [sym_autolink] = STATE(138), + [sym_footnote_reference] = STATE(136), + [sym_footnote_marker_begin] = STATE(1171), + [sym__image] = STATE(136), + [sym_full_reference_image] = STATE(136), + [sym_collapsed_reference_image] = STATE(136), + [sym_inline_image] = STATE(136), + [sym_image_description] = STATE(685), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(136), + [sym_full_reference_link] = STATE(136), + [sym_collapsed_reference_link] = STATE(136), + [sym_inline_link] = STATE(136), + [sym_link_text] = STATE(686), + [sym_span] = STATE(20), + [sym__bracketed_text_begin] = STATE(1219), [sym__comment_with_spaces] = STATE(138), [sym_raw_inline] = STATE(138), [sym_math] = STATE(138), @@ -8855,799 +8066,1228 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(138), [sym_note] = STATE(138), [sym__symbol_fallback] = STATE(138), - [aux_sym__text] = STATE(121), - [aux_sym__inline_repeat1] = STATE(71), - [anon_sym_LBRACE_] = ACTIONS(345), - [anon_sym__] = ACTIONS(347), - [anon_sym_LBRACE_STAR] = ACTIONS(349), - [anon_sym_STAR] = ACTIONS(351), - [anon_sym_LBRACE_CARET] = ACTIONS(353), - [anon_sym_CARET] = ACTIONS(353), - [anon_sym_LBRACE_TILDE] = ACTIONS(355), - [anon_sym_TILDE] = ACTIONS(355), - [anon_sym_LBRACE_EQ] = ACTIONS(357), - [anon_sym_LBRACE_PLUS] = ACTIONS(359), - [anon_sym_LBRACE_DASH] = ACTIONS(361), - [anon_sym_BSLASH] = ACTIONS(363), - [sym_quotation_marks] = ACTIONS(365), - [sym_ellipsis] = ACTIONS(365), - [sym_em_dash] = ACTIONS(365), - [sym_en_dash] = ACTIONS(367), - [sym_backslash_escape] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(369), - [sym_symbol] = ACTIONS(365), - [anon_sym_LBRACK_CARET] = ACTIONS(371), - [anon_sym_BANG_LBRACK] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_RBRACK] = ACTIONS(343), - [anon_sym_LPAREN] = ACTIONS(377), - [anon_sym_DOLLAR] = ACTIONS(379), - [anon_sym_TODO] = ACTIONS(381), - [anon_sym_WIP] = ACTIONS(381), - [anon_sym_NOTE] = ACTIONS(383), - [anon_sym_INFO] = ACTIONS(383), - [anon_sym_XXX] = ACTIONS(383), - [sym_fixme] = ACTIONS(365), - [sym__whitespace1] = ACTIONS(385), - [sym__newline] = ACTIONS(785), - [aux_sym__text_token1] = ACTIONS(389), - [sym__verbatim_begin] = ACTIONS(391), + [sym__newline] = STATE(20), + [aux_sym__text] = STATE(126), + [aux_sym__inline_repeat1] = STATE(20), + [anon_sym_LBRACE_] = ACTIONS(359), + [anon_sym__] = ACTIONS(361), + [anon_sym_LBRACE_STAR] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(365), + [anon_sym_LBRACE_CARET] = ACTIONS(367), + [anon_sym_CARET] = ACTIONS(367), + [anon_sym_LBRACE_TILDE] = ACTIONS(369), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_LBRACE_EQ] = ACTIONS(371), + [anon_sym_LBRACE_PLUS] = ACTIONS(373), + [anon_sym_LBRACE_DASH] = ACTIONS(375), + [anon_sym_BSLASH] = ACTIONS(377), + [sym_quotation_marks] = ACTIONS(379), + [sym_ellipsis] = ACTIONS(379), + [sym_em_dash] = ACTIONS(379), + [sym_en_dash] = ACTIONS(381), + [sym_backslash_escape] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(383), + [sym_symbol] = ACTIONS(379), + [anon_sym_LBRACK_CARET] = ACTIONS(385), + [anon_sym_BANG_LBRACK] = ACTIONS(387), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(393), + [anon_sym_DOLLAR] = ACTIONS(395), + [anon_sym_TODO] = ACTIONS(397), + [anon_sym_WIP] = ACTIONS(397), + [anon_sym_NOTE] = ACTIONS(399), + [anon_sym_INFO] = ACTIONS(399), + [anon_sym_XXX] = ACTIONS(399), + [sym_fixme] = ACTIONS(379), + [sym__whitespace1] = ACTIONS(401), + [anon_sym_LF] = ACTIONS(403), + [aux_sym__text_token1] = ACTIONS(405), + [sym__verbatim_begin] = ACTIONS(407), + }, + [35] = { + [sym__inline] = STATE(1022), + [sym__element] = STATE(22), + [sym_emphasis] = STATE(140), + [sym_emphasis_begin] = STATE(1174), + [sym_strong] = STATE(140), + [sym_strong_begin] = STATE(1175), + [sym_superscript] = STATE(140), + [sym_superscript_begin] = STATE(1176), + [sym_subscript] = STATE(140), + [sym_subscript_begin] = STATE(1177), + [sym_highlighted] = STATE(140), + [sym_highlighted_begin] = STATE(1178), + [sym_insert] = STATE(140), + [sym_insert_begin] = STATE(1179), + [sym_delete] = STATE(140), + [sym_delete_begin] = STATE(1180), + [sym_hard_line_break] = STATE(139), + [sym__smart_punctuation] = STATE(139), + [sym_autolink] = STATE(139), + [sym_footnote_reference] = STATE(140), + [sym_footnote_marker_begin] = STATE(1181), + [sym__image] = STATE(140), + [sym_full_reference_image] = STATE(140), + [sym_collapsed_reference_image] = STATE(140), + [sym_inline_image] = STATE(140), + [sym_image_description] = STATE(655), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(140), + [sym_full_reference_link] = STATE(140), + [sym_collapsed_reference_link] = STATE(140), + [sym_inline_link] = STATE(140), + [sym_link_text] = STATE(656), + [sym_span] = STATE(22), + [sym__bracketed_text_begin] = STATE(1220), + [sym__comment_with_spaces] = STATE(139), + [sym_raw_inline] = STATE(139), + [sym_math] = STATE(139), + [sym_verbatim] = STATE(139), + [sym__todo_highlights] = STATE(139), + [sym_todo] = STATE(139), + [sym_note] = STATE(139), + [sym__symbol_fallback] = STATE(139), + [sym__newline] = STATE(22), + [aux_sym__text] = STATE(127), + [aux_sym__inline_repeat1] = STATE(22), + [anon_sym_LBRACE_] = ACTIONS(409), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_STAR] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(415), + [anon_sym_LBRACE_CARET] = ACTIONS(417), + [anon_sym_CARET] = ACTIONS(417), + [anon_sym_LBRACE_TILDE] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(419), + [anon_sym_LBRACE_EQ] = ACTIONS(421), + [anon_sym_LBRACE_PLUS] = ACTIONS(423), + [anon_sym_LBRACE_DASH] = ACTIONS(425), + [anon_sym_BSLASH] = ACTIONS(427), + [sym_quotation_marks] = ACTIONS(429), + [sym_ellipsis] = ACTIONS(429), + [sym_em_dash] = ACTIONS(429), + [sym_en_dash] = ACTIONS(431), + [sym_backslash_escape] = ACTIONS(431), + [anon_sym_LT] = ACTIONS(433), + [sym_symbol] = ACTIONS(429), + [anon_sym_LBRACK_CARET] = ACTIONS(435), + [anon_sym_BANG_LBRACK] = ACTIONS(437), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(439), + [anon_sym_LBRACK] = ACTIONS(441), + [anon_sym_LPAREN] = ACTIONS(443), + [anon_sym_DOLLAR] = ACTIONS(445), + [anon_sym_TODO] = ACTIONS(447), + [anon_sym_WIP] = ACTIONS(447), + [anon_sym_NOTE] = ACTIONS(449), + [anon_sym_INFO] = ACTIONS(449), + [anon_sym_XXX] = ACTIONS(449), + [sym_fixme] = ACTIONS(429), + [sym__whitespace1] = ACTIONS(451), + [anon_sym_LF] = ACTIONS(453), + [aux_sym__text_token1] = ACTIONS(455), + [sym__verbatim_begin] = ACTIONS(457), + }, + [36] = { + [sym__inline] = STATE(1024), + [sym__element] = STATE(24), + [sym_emphasis] = STATE(131), + [sym_emphasis_begin] = STATE(1184), + [sym_strong] = STATE(131), + [sym_strong_begin] = STATE(1185), + [sym_superscript] = STATE(131), + [sym_superscript_begin] = STATE(1186), + [sym_subscript] = STATE(131), + [sym_subscript_begin] = STATE(1187), + [sym_highlighted] = STATE(131), + [sym_highlighted_begin] = STATE(1188), + [sym_insert] = STATE(131), + [sym_insert_begin] = STATE(1189), + [sym_delete] = STATE(131), + [sym_delete_begin] = STATE(1190), + [sym_hard_line_break] = STATE(145), + [sym__smart_punctuation] = STATE(145), + [sym_autolink] = STATE(145), + [sym_footnote_reference] = STATE(131), + [sym_footnote_marker_begin] = STATE(1191), + [sym__image] = STATE(131), + [sym_full_reference_image] = STATE(131), + [sym_collapsed_reference_image] = STATE(131), + [sym_inline_image] = STATE(131), + [sym_image_description] = STATE(662), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(131), + [sym_full_reference_link] = STATE(131), + [sym_collapsed_reference_link] = STATE(131), + [sym_inline_link] = STATE(131), + [sym_link_text] = STATE(663), + [sym_span] = STATE(24), + [sym__bracketed_text_begin] = STATE(1221), + [sym__comment_with_spaces] = STATE(145), + [sym_raw_inline] = STATE(145), + [sym_math] = STATE(145), + [sym_verbatim] = STATE(145), + [sym__todo_highlights] = STATE(145), + [sym_todo] = STATE(145), + [sym_note] = STATE(145), + [sym__symbol_fallback] = STATE(145), + [sym__newline] = STATE(24), + [aux_sym__text] = STATE(129), + [aux_sym__inline_repeat1] = STATE(24), + [anon_sym_LBRACE_] = ACTIONS(459), + [anon_sym__] = ACTIONS(461), + [anon_sym_LBRACE_STAR] = ACTIONS(463), + [anon_sym_STAR] = ACTIONS(465), + [anon_sym_LBRACE_CARET] = ACTIONS(467), + [anon_sym_CARET] = ACTIONS(467), + [anon_sym_LBRACE_TILDE] = ACTIONS(469), + [anon_sym_TILDE] = ACTIONS(469), + [anon_sym_LBRACE_EQ] = ACTIONS(471), + [anon_sym_LBRACE_PLUS] = ACTIONS(473), + [anon_sym_LBRACE_DASH] = ACTIONS(475), + [anon_sym_BSLASH] = ACTIONS(477), + [sym_quotation_marks] = ACTIONS(479), + [sym_ellipsis] = ACTIONS(479), + [sym_em_dash] = ACTIONS(479), + [sym_en_dash] = ACTIONS(481), + [sym_backslash_escape] = ACTIONS(481), + [anon_sym_LT] = ACTIONS(483), + [sym_symbol] = ACTIONS(479), + [anon_sym_LBRACK_CARET] = ACTIONS(485), + [anon_sym_BANG_LBRACK] = ACTIONS(487), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(489), + [anon_sym_LBRACK] = ACTIONS(491), + [anon_sym_LPAREN] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(495), + [anon_sym_TODO] = ACTIONS(497), + [anon_sym_WIP] = ACTIONS(497), + [anon_sym_NOTE] = ACTIONS(499), + [anon_sym_INFO] = ACTIONS(499), + [anon_sym_XXX] = ACTIONS(499), + [sym_fixme] = ACTIONS(479), + [sym__whitespace1] = ACTIONS(501), + [anon_sym_LF] = ACTIONS(503), + [aux_sym__text_token1] = ACTIONS(505), + [sym__verbatim_begin] = ACTIONS(507), }, - [47] = { - [sym__inline] = STATE(866), - [sym__element] = STATE(110), - [sym_emphasis] = STATE(146), - [sym_emphasis_begin] = STATE(1144), - [sym_strong] = STATE(146), - [sym_strong_begin] = STATE(1145), - [sym_superscript] = STATE(146), - [sym_superscript_begin] = STATE(1146), - [sym_subscript] = STATE(146), - [sym_subscript_begin] = STATE(1147), - [sym_highlighted] = STATE(146), - [sym_highlighted_begin] = STATE(1148), - [sym_insert] = STATE(146), - [sym_insert_begin] = STATE(1149), - [sym_delete] = STATE(146), - [sym_delete_begin] = STATE(1150), - [sym_hard_line_break] = STATE(144), - [sym__smart_punctuation] = STATE(144), - [sym_autolink] = STATE(144), - [sym_footnote_reference] = STATE(146), - [sym_footnote_marker_begin] = STATE(1151), - [sym__image] = STATE(146), - [sym_full_reference_image] = STATE(146), - [sym_collapsed_reference_image] = STATE(146), - [sym_inline_image] = STATE(146), - [sym_image_description] = STATE(673), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(146), - [sym_full_reference_link] = STATE(146), - [sym_collapsed_reference_link] = STATE(146), - [sym_inline_link] = STATE(146), - [sym_link_text] = STATE(662), - [sym_span] = STATE(110), - [sym__bracketed_text_begin] = STATE(1208), - [sym__comment_with_spaces] = STATE(144), - [sym_raw_inline] = STATE(144), - [sym_math] = STATE(144), - [sym_verbatim] = STATE(144), - [sym__todo_highlights] = STATE(144), - [sym_todo] = STATE(144), - [sym_note] = STATE(144), - [sym__symbol_fallback] = STATE(144), - [aux_sym__text] = STATE(128), - [aux_sym__inline_repeat1] = STATE(110), - [anon_sym_LBRACE_] = ACTIONS(587), - [anon_sym__] = ACTIONS(589), - [anon_sym_LBRACE_STAR] = ACTIONS(591), - [anon_sym_STAR] = ACTIONS(593), - [anon_sym_LBRACE_CARET] = ACTIONS(595), - [anon_sym_CARET] = ACTIONS(595), - [anon_sym_LBRACE_TILDE] = ACTIONS(597), - [anon_sym_TILDE] = ACTIONS(597), - [anon_sym_LBRACE_EQ] = ACTIONS(599), - [anon_sym_LBRACE_PLUS] = ACTIONS(601), - [anon_sym_LBRACE_DASH] = ACTIONS(603), - [anon_sym_BSLASH] = ACTIONS(605), - [sym_quotation_marks] = ACTIONS(607), - [sym_ellipsis] = ACTIONS(607), - [sym_em_dash] = ACTIONS(607), - [sym_en_dash] = ACTIONS(609), - [sym_backslash_escape] = ACTIONS(609), - [anon_sym_LT] = ACTIONS(611), - [sym_symbol] = ACTIONS(607), - [anon_sym_LBRACK_CARET] = ACTIONS(613), - [anon_sym_BANG_LBRACK] = ACTIONS(615), - [anon_sym_LBRACK] = ACTIONS(617), - [anon_sym_LPAREN] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [anon_sym_TODO] = ACTIONS(623), - [anon_sym_WIP] = ACTIONS(623), - [anon_sym_NOTE] = ACTIONS(625), - [anon_sym_INFO] = ACTIONS(625), - [anon_sym_XXX] = ACTIONS(625), - [sym_fixme] = ACTIONS(607), - [sym__whitespace1] = ACTIONS(627), - [sym__newline] = ACTIONS(629), - [aux_sym__text_token1] = ACTIONS(631), - [sym__verbatim_begin] = ACTIONS(633), + [37] = { + [sym__inline_without_trailing_space] = STATE(1078), + [sym__element] = STATE(543), + [sym_emphasis] = STATE(150), + [sym_emphasis_begin] = STATE(1114), + [sym_strong] = STATE(150), + [sym_strong_begin] = STATE(1115), + [sym_superscript] = STATE(150), + [sym_superscript_begin] = STATE(1116), + [sym_subscript] = STATE(150), + [sym_subscript_begin] = STATE(1117), + [sym_highlighted] = STATE(150), + [sym_highlighted_begin] = STATE(1118), + [sym_insert] = STATE(150), + [sym_insert_begin] = STATE(1119), + [sym_delete] = STATE(150), + [sym_delete_begin] = STATE(1120), + [sym_hard_line_break] = STATE(133), + [sym__smart_punctuation] = STATE(133), + [sym_autolink] = STATE(133), + [sym_footnote_reference] = STATE(150), + [sym_footnote_marker_begin] = STATE(1121), + [sym__image] = STATE(150), + [sym_full_reference_image] = STATE(150), + [sym_collapsed_reference_image] = STATE(150), + [sym_inline_image] = STATE(150), + [sym_image_description] = STATE(678), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(150), + [sym_full_reference_link] = STATE(150), + [sym_collapsed_reference_link] = STATE(150), + [sym_inline_link] = STATE(150), + [sym_link_text] = STATE(679), + [sym_span] = STATE(543), + [sym__bracketed_text_begin] = STATE(1214), + [sym__comment_with_spaces] = STATE(133), + [sym_raw_inline] = STATE(133), + [sym_math] = STATE(133), + [sym_verbatim] = STATE(133), + [sym__todo_highlights] = STATE(133), + [sym_todo] = STATE(133), + [sym_note] = STATE(133), + [sym__symbol_fallback] = STATE(133), + [sym__newline] = STATE(119), + [aux_sym__text] = STATE(122), + [aux_sym__inline_repeat1] = STATE(119), + [anon_sym_LBRACE_] = ACTIONS(159), + [anon_sym__] = ACTIONS(161), + [anon_sym_LBRACE_STAR] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(165), + [anon_sym_LBRACE_CARET] = ACTIONS(167), + [anon_sym_CARET] = ACTIONS(167), + [anon_sym_LBRACE_TILDE] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(169), + [anon_sym_LBRACE_EQ] = ACTIONS(171), + [anon_sym_LBRACE_PLUS] = ACTIONS(173), + [anon_sym_LBRACE_DASH] = ACTIONS(175), + [anon_sym_BSLASH] = ACTIONS(177), + [sym_quotation_marks] = ACTIONS(179), + [sym_ellipsis] = ACTIONS(179), + [sym_em_dash] = ACTIONS(179), + [sym_en_dash] = ACTIONS(181), + [sym_backslash_escape] = ACTIONS(181), + [anon_sym_LT] = ACTIONS(183), + [sym_symbol] = ACTIONS(179), + [anon_sym_LBRACK_CARET] = ACTIONS(185), + [anon_sym_BANG_LBRACK] = ACTIONS(187), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(189), + [anon_sym_LBRACK] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(195), + [anon_sym_TODO] = ACTIONS(197), + [anon_sym_WIP] = ACTIONS(197), + [anon_sym_NOTE] = ACTIONS(199), + [anon_sym_INFO] = ACTIONS(199), + [anon_sym_XXX] = ACTIONS(199), + [sym_fixme] = ACTIONS(179), + [sym__whitespace1] = ACTIONS(201), + [anon_sym_LF] = ACTIONS(203), + [aux_sym__text_token1] = ACTIONS(205), + [sym__verbatim_begin] = ACTIONS(207), }, - [48] = { - [sym__inline_without_trailing_space] = STATE(878), - [sym__element] = STATE(594), - [sym_emphasis] = STATE(149), - [sym_emphasis_begin] = STATE(1104), - [sym_strong] = STATE(149), - [sym_strong_begin] = STATE(1105), - [sym_superscript] = STATE(149), - [sym_superscript_begin] = STATE(1106), - [sym_subscript] = STATE(149), - [sym_subscript_begin] = STATE(1107), - [sym_highlighted] = STATE(149), - [sym_highlighted_begin] = STATE(1108), - [sym_insert] = STATE(149), - [sym_insert_begin] = STATE(1109), - [sym_delete] = STATE(149), - [sym_delete_begin] = STATE(1110), - [sym_hard_line_break] = STATE(143), - [sym__smart_punctuation] = STATE(143), - [sym_autolink] = STATE(143), - [sym_footnote_reference] = STATE(149), - [sym_footnote_marker_begin] = STATE(1111), - [sym__image] = STATE(149), - [sym_full_reference_image] = STATE(149), - [sym_collapsed_reference_image] = STATE(149), - [sym_inline_image] = STATE(149), - [sym_image_description] = STATE(658), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(149), - [sym_full_reference_link] = STATE(149), - [sym_collapsed_reference_link] = STATE(149), - [sym_inline_link] = STATE(149), - [sym_link_text] = STATE(672), - [sym_span] = STATE(594), - [sym__bracketed_text_begin] = STATE(1204), - [sym__comment_with_spaces] = STATE(143), - [sym_raw_inline] = STATE(143), - [sym_math] = STATE(143), - [sym_verbatim] = STATE(143), - [sym__todo_highlights] = STATE(143), - [sym_todo] = STATE(143), - [sym_note] = STATE(143), - [sym__symbol_fallback] = STATE(143), - [aux_sym__text] = STATE(127), - [aux_sym__inline_repeat1] = STATE(120), - [anon_sym_LBRACE_] = ACTIONS(441), - [anon_sym__] = ACTIONS(443), - [anon_sym_LBRACE_STAR] = ACTIONS(445), - [anon_sym_STAR] = ACTIONS(447), - [anon_sym_LBRACE_CARET] = ACTIONS(449), - [anon_sym_CARET] = ACTIONS(449), - [anon_sym_LBRACE_TILDE] = ACTIONS(451), - [anon_sym_TILDE] = ACTIONS(451), - [anon_sym_LBRACE_EQ] = ACTIONS(453), - [anon_sym_LBRACE_PLUS] = ACTIONS(455), - [anon_sym_LBRACE_DASH] = ACTIONS(457), - [anon_sym_BSLASH] = ACTIONS(459), - [sym_quotation_marks] = ACTIONS(461), - [sym_ellipsis] = ACTIONS(461), - [sym_em_dash] = ACTIONS(461), - [sym_en_dash] = ACTIONS(463), - [sym_backslash_escape] = ACTIONS(463), - [anon_sym_LT] = ACTIONS(465), - [sym_symbol] = ACTIONS(461), - [anon_sym_LBRACK_CARET] = ACTIONS(467), - [anon_sym_BANG_LBRACK] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(471), - [anon_sym_LPAREN] = ACTIONS(473), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_TODO] = ACTIONS(477), - [anon_sym_WIP] = ACTIONS(477), - [anon_sym_NOTE] = ACTIONS(479), - [anon_sym_INFO] = ACTIONS(479), - [anon_sym_XXX] = ACTIONS(479), - [sym_fixme] = ACTIONS(461), - [sym__whitespace1] = ACTIONS(481), - [sym__newline] = ACTIONS(483), - [aux_sym__text_token1] = ACTIONS(485), - [sym__verbatim_begin] = ACTIONS(487), + [38] = { + [sym__inline_without_trailing_space] = STATE(1086), + [sym__element] = STATE(570), + [sym_emphasis] = STATE(142), + [sym_emphasis_begin] = STATE(1124), + [sym_strong] = STATE(142), + [sym_strong_begin] = STATE(1125), + [sym_superscript] = STATE(142), + [sym_superscript_begin] = STATE(1126), + [sym_subscript] = STATE(142), + [sym_subscript_begin] = STATE(1127), + [sym_highlighted] = STATE(142), + [sym_highlighted_begin] = STATE(1128), + [sym_insert] = STATE(142), + [sym_insert_begin] = STATE(1129), + [sym_delete] = STATE(142), + [sym_delete_begin] = STATE(1130), + [sym_hard_line_break] = STATE(137), + [sym__smart_punctuation] = STATE(137), + [sym_autolink] = STATE(137), + [sym_footnote_reference] = STATE(142), + [sym_footnote_marker_begin] = STATE(1131), + [sym__image] = STATE(142), + [sym_full_reference_image] = STATE(142), + [sym_collapsed_reference_image] = STATE(142), + [sym_inline_image] = STATE(142), + [sym_image_description] = STATE(687), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(142), + [sym_full_reference_link] = STATE(142), + [sym_collapsed_reference_link] = STATE(142), + [sym_inline_link] = STATE(142), + [sym_link_text] = STATE(654), + [sym_span] = STATE(570), + [sym__bracketed_text_begin] = STATE(1215), + [sym__comment_with_spaces] = STATE(137), + [sym_raw_inline] = STATE(137), + [sym_math] = STATE(137), + [sym_verbatim] = STATE(137), + [sym__todo_highlights] = STATE(137), + [sym_todo] = STATE(137), + [sym_note] = STATE(137), + [sym__symbol_fallback] = STATE(137), + [sym__newline] = STATE(118), + [aux_sym__text] = STATE(128), + [aux_sym__inline_repeat1] = STATE(118), + [anon_sym_LBRACE_] = ACTIONS(209), + [anon_sym__] = ACTIONS(211), + [anon_sym_LBRACE_STAR] = ACTIONS(213), + [anon_sym_STAR] = ACTIONS(215), + [anon_sym_LBRACE_CARET] = ACTIONS(217), + [anon_sym_CARET] = ACTIONS(217), + [anon_sym_LBRACE_TILDE] = ACTIONS(219), + [anon_sym_TILDE] = ACTIONS(219), + [anon_sym_LBRACE_EQ] = ACTIONS(221), + [anon_sym_LBRACE_PLUS] = ACTIONS(223), + [anon_sym_LBRACE_DASH] = ACTIONS(225), + [anon_sym_BSLASH] = ACTIONS(227), + [sym_quotation_marks] = ACTIONS(229), + [sym_ellipsis] = ACTIONS(229), + [sym_em_dash] = ACTIONS(229), + [sym_en_dash] = ACTIONS(231), + [sym_backslash_escape] = ACTIONS(231), + [anon_sym_LT] = ACTIONS(233), + [sym_symbol] = ACTIONS(229), + [anon_sym_LBRACK_CARET] = ACTIONS(235), + [anon_sym_BANG_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_LPAREN] = ACTIONS(243), + [anon_sym_DOLLAR] = ACTIONS(245), + [anon_sym_TODO] = ACTIONS(247), + [anon_sym_WIP] = ACTIONS(247), + [anon_sym_NOTE] = ACTIONS(249), + [anon_sym_INFO] = ACTIONS(249), + [anon_sym_XXX] = ACTIONS(249), + [sym_fixme] = ACTIONS(229), + [sym__whitespace1] = ACTIONS(251), + [anon_sym_LF] = ACTIONS(253), + [aux_sym__text_token1] = ACTIONS(255), + [sym__verbatim_begin] = ACTIONS(257), }, - [49] = { - [sym__element] = STATE(49), + [39] = { + [sym__inline] = STATE(1087), + [sym__element] = STATE(15), [sym_emphasis] = STATE(132), - [sym_emphasis_begin] = STATE(1164), + [sym_emphasis_begin] = STATE(1134), [sym_strong] = STATE(132), - [sym_strong_begin] = STATE(1165), + [sym_strong_begin] = STATE(1135), [sym_superscript] = STATE(132), - [sym_superscript_begin] = STATE(1166), + [sym_superscript_begin] = STATE(1136), [sym_subscript] = STATE(132), - [sym_subscript_begin] = STATE(1167), + [sym_subscript_begin] = STATE(1137), [sym_highlighted] = STATE(132), - [sym_highlighted_begin] = STATE(1168), + [sym_highlighted_begin] = STATE(1138), [sym_insert] = STATE(132), - [sym_insert_begin] = STATE(1169), + [sym_insert_begin] = STATE(1139), [sym_delete] = STATE(132), - [sym_delete_begin] = STATE(1170), - [sym_hard_line_break] = STATE(142), - [sym__smart_punctuation] = STATE(142), - [sym_autolink] = STATE(142), + [sym_delete_begin] = STATE(1140), + [sym_hard_line_break] = STATE(147), + [sym__smart_punctuation] = STATE(147), + [sym_autolink] = STATE(147), [sym_footnote_reference] = STATE(132), - [sym_footnote_marker_begin] = STATE(1171), + [sym_footnote_marker_begin] = STATE(1141), [sym__image] = STATE(132), [sym_full_reference_image] = STATE(132), [sym_collapsed_reference_image] = STATE(132), [sym_inline_image] = STATE(132), - [sym_image_description] = STATE(660), - [sym__image_description_begin] = STATE(1079), + [sym_image_description] = STATE(682), + [sym__image_description_begin] = STATE(958), [sym__link] = STATE(132), [sym_full_reference_link] = STATE(132), [sym_collapsed_reference_link] = STATE(132), [sym_inline_link] = STATE(132), - [sym_link_text] = STATE(659), - [sym_span] = STATE(49), - [sym__bracketed_text_begin] = STATE(1210), - [sym__comment_with_spaces] = STATE(142), - [sym_raw_inline] = STATE(142), - [sym_math] = STATE(142), - [sym_verbatim] = STATE(142), - [sym__todo_highlights] = STATE(142), - [sym_todo] = STATE(142), - [sym_note] = STATE(142), - [sym__symbol_fallback] = STATE(142), - [aux_sym__text] = STATE(126), - [aux_sym__inline_repeat1] = STATE(49), - [anon_sym_LBRACE_] = ACTIONS(787), - [anon_sym__] = ACTIONS(790), - [anon_sym_LBRACE_STAR] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(796), - [anon_sym_LBRACE_CARET] = ACTIONS(799), - [anon_sym_CARET] = ACTIONS(799), - [anon_sym_LBRACE_TILDE] = ACTIONS(802), - [anon_sym_TILDE] = ACTIONS(802), - [anon_sym_LBRACE_EQ] = ACTIONS(805), - [anon_sym_LBRACE_PLUS] = ACTIONS(808), - [anon_sym_LBRACE_DASH] = ACTIONS(811), - [anon_sym_BSLASH] = ACTIONS(814), - [sym_quotation_marks] = ACTIONS(817), - [sym_ellipsis] = ACTIONS(817), - [sym_em_dash] = ACTIONS(817), - [sym_en_dash] = ACTIONS(820), - [sym_backslash_escape] = ACTIONS(820), - [anon_sym_LT] = ACTIONS(823), - [sym_symbol] = ACTIONS(817), - [anon_sym_LBRACK_CARET] = ACTIONS(826), - [anon_sym_BANG_LBRACK] = ACTIONS(829), - [anon_sym_LBRACK] = ACTIONS(832), - [anon_sym_LPAREN] = ACTIONS(835), - [anon_sym_DOLLAR] = ACTIONS(838), - [anon_sym_TODO] = ACTIONS(841), - [anon_sym_WIP] = ACTIONS(841), - [anon_sym_NOTE] = ACTIONS(844), - [anon_sym_INFO] = ACTIONS(844), - [anon_sym_XXX] = ACTIONS(844), - [sym_fixme] = ACTIONS(817), - [sym__whitespace1] = ACTIONS(847), - [sym__newline] = ACTIONS(850), - [aux_sym__text_token1] = ACTIONS(853), - [sym__verbatim_begin] = ACTIONS(856), - [sym_delete_end] = ACTIONS(221), + [sym_link_text] = STATE(689), + [sym_span] = STATE(15), + [sym__bracketed_text_begin] = STATE(1216), + [sym__comment_with_spaces] = STATE(147), + [sym_raw_inline] = STATE(147), + [sym_math] = STATE(147), + [sym_verbatim] = STATE(147), + [sym__todo_highlights] = STATE(147), + [sym_todo] = STATE(147), + [sym_note] = STATE(147), + [sym__symbol_fallback] = STATE(147), + [sym__newline] = STATE(15), + [aux_sym__text] = STATE(121), + [aux_sym__inline_repeat1] = STATE(15), + [anon_sym_LBRACE_] = ACTIONS(105), + [anon_sym__] = ACTIONS(107), + [anon_sym_LBRACE_STAR] = ACTIONS(109), + [anon_sym_STAR] = ACTIONS(111), + [anon_sym_LBRACE_CARET] = ACTIONS(113), + [anon_sym_CARET] = ACTIONS(113), + [anon_sym_LBRACE_TILDE] = ACTIONS(115), + [anon_sym_TILDE] = ACTIONS(115), + [anon_sym_LBRACE_EQ] = ACTIONS(117), + [anon_sym_LBRACE_PLUS] = ACTIONS(119), + [anon_sym_LBRACE_DASH] = ACTIONS(121), + [anon_sym_BSLASH] = ACTIONS(123), + [sym_quotation_marks] = ACTIONS(125), + [sym_ellipsis] = ACTIONS(125), + [sym_em_dash] = ACTIONS(125), + [sym_en_dash] = ACTIONS(127), + [sym_backslash_escape] = ACTIONS(127), + [anon_sym_LT] = ACTIONS(129), + [sym_symbol] = ACTIONS(125), + [anon_sym_LBRACK_CARET] = ACTIONS(131), + [anon_sym_BANG_LBRACK] = ACTIONS(133), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(135), + [anon_sym_LBRACK] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_TODO] = ACTIONS(143), + [anon_sym_WIP] = ACTIONS(143), + [anon_sym_NOTE] = ACTIONS(145), + [anon_sym_INFO] = ACTIONS(145), + [anon_sym_XXX] = ACTIONS(145), + [sym_fixme] = ACTIONS(125), + [sym__whitespace1] = ACTIONS(147), + [anon_sym_LF] = ACTIONS(149), + [aux_sym__text_token1] = ACTIONS(151), + [sym__verbatim_begin] = ACTIONS(153), }, - [50] = { - [sym__inline] = STATE(865), - [sym__element] = STATE(14), + [40] = { + [sym__inline] = STATE(1088), + [sym__element] = STATE(16), + [sym_emphasis] = STATE(143), + [sym_emphasis_begin] = STATE(1144), + [sym_strong] = STATE(143), + [sym_strong_begin] = STATE(1145), + [sym_superscript] = STATE(143), + [sym_superscript_begin] = STATE(1146), + [sym_subscript] = STATE(143), + [sym_subscript_begin] = STATE(1147), + [sym_highlighted] = STATE(143), + [sym_highlighted_begin] = STATE(1148), + [sym_insert] = STATE(143), + [sym_insert_begin] = STATE(1149), + [sym_delete] = STATE(143), + [sym_delete_begin] = STATE(1150), + [sym_hard_line_break] = STATE(141), + [sym__smart_punctuation] = STATE(141), + [sym_autolink] = STATE(141), + [sym_footnote_reference] = STATE(143), + [sym_footnote_marker_begin] = STATE(1151), + [sym__image] = STATE(143), + [sym_full_reference_image] = STATE(143), + [sym_collapsed_reference_image] = STATE(143), + [sym_inline_image] = STATE(143), + [sym_image_description] = STATE(660), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(143), + [sym_full_reference_link] = STATE(143), + [sym_collapsed_reference_link] = STATE(143), + [sym_inline_link] = STATE(143), + [sym_link_text] = STATE(661), + [sym_span] = STATE(16), + [sym__bracketed_text_begin] = STATE(1217), + [sym__comment_with_spaces] = STATE(141), + [sym_raw_inline] = STATE(141), + [sym_math] = STATE(141), + [sym_verbatim] = STATE(141), + [sym__todo_highlights] = STATE(141), + [sym_todo] = STATE(141), + [sym_note] = STATE(141), + [sym__symbol_fallback] = STATE(141), + [sym__newline] = STATE(16), + [aux_sym__text] = STATE(125), + [aux_sym__inline_repeat1] = STATE(16), + [anon_sym_LBRACE_] = ACTIONS(259), + [anon_sym__] = ACTIONS(261), + [anon_sym_LBRACE_STAR] = ACTIONS(263), + [anon_sym_STAR] = ACTIONS(265), + [anon_sym_LBRACE_CARET] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_LBRACE_TILDE] = ACTIONS(269), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_LBRACE_EQ] = ACTIONS(271), + [anon_sym_LBRACE_PLUS] = ACTIONS(273), + [anon_sym_LBRACE_DASH] = ACTIONS(275), + [anon_sym_BSLASH] = ACTIONS(277), + [sym_quotation_marks] = ACTIONS(279), + [sym_ellipsis] = ACTIONS(279), + [sym_em_dash] = ACTIONS(279), + [sym_en_dash] = ACTIONS(281), + [sym_backslash_escape] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(283), + [sym_symbol] = ACTIONS(279), + [anon_sym_LBRACK_CARET] = ACTIONS(285), + [anon_sym_BANG_LBRACK] = ACTIONS(287), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_DOLLAR] = ACTIONS(295), + [anon_sym_TODO] = ACTIONS(297), + [anon_sym_WIP] = ACTIONS(297), + [anon_sym_NOTE] = ACTIONS(299), + [anon_sym_INFO] = ACTIONS(299), + [anon_sym_XXX] = ACTIONS(299), + [sym_fixme] = ACTIONS(279), + [sym__whitespace1] = ACTIONS(301), + [anon_sym_LF] = ACTIONS(303), + [aux_sym__text_token1] = ACTIONS(305), + [sym__verbatim_begin] = ACTIONS(307), + }, + [41] = { + [sym__inline] = STATE(1089), + [sym__element] = STATE(18), + [sym_emphasis] = STATE(135), + [sym_emphasis_begin] = STATE(1154), + [sym_strong] = STATE(135), + [sym_strong_begin] = STATE(1155), + [sym_superscript] = STATE(135), + [sym_superscript_begin] = STATE(1156), + [sym_subscript] = STATE(135), + [sym_subscript_begin] = STATE(1157), + [sym_highlighted] = STATE(135), + [sym_highlighted_begin] = STATE(1158), + [sym_insert] = STATE(135), + [sym_insert_begin] = STATE(1159), + [sym_delete] = STATE(135), + [sym_delete_begin] = STATE(1160), + [sym_hard_line_break] = STATE(134), + [sym__smart_punctuation] = STATE(134), + [sym_autolink] = STATE(134), + [sym_footnote_reference] = STATE(135), + [sym_footnote_marker_begin] = STATE(1161), + [sym__image] = STATE(135), + [sym_full_reference_image] = STATE(135), + [sym_collapsed_reference_image] = STATE(135), + [sym_inline_image] = STATE(135), + [sym_image_description] = STATE(677), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(135), + [sym_full_reference_link] = STATE(135), + [sym_collapsed_reference_link] = STATE(135), + [sym_inline_link] = STATE(135), + [sym_link_text] = STATE(680), + [sym_span] = STATE(18), + [sym__bracketed_text_begin] = STATE(1218), + [sym__comment_with_spaces] = STATE(134), + [sym_raw_inline] = STATE(134), + [sym_math] = STATE(134), + [sym_verbatim] = STATE(134), + [sym__todo_highlights] = STATE(134), + [sym_todo] = STATE(134), + [sym_note] = STATE(134), + [sym__symbol_fallback] = STATE(134), + [sym__newline] = STATE(18), + [aux_sym__text] = STATE(123), + [aux_sym__inline_repeat1] = STATE(18), + [anon_sym_LBRACE_] = ACTIONS(309), + [anon_sym__] = ACTIONS(311), + [anon_sym_LBRACE_STAR] = ACTIONS(313), + [anon_sym_STAR] = ACTIONS(315), + [anon_sym_LBRACE_CARET] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_LBRACE_TILDE] = ACTIONS(319), + [anon_sym_TILDE] = ACTIONS(319), + [anon_sym_LBRACE_EQ] = ACTIONS(321), + [anon_sym_LBRACE_PLUS] = ACTIONS(323), + [anon_sym_LBRACE_DASH] = ACTIONS(325), + [anon_sym_BSLASH] = ACTIONS(327), + [sym_quotation_marks] = ACTIONS(329), + [sym_ellipsis] = ACTIONS(329), + [sym_em_dash] = ACTIONS(329), + [sym_en_dash] = ACTIONS(331), + [sym_backslash_escape] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [sym_symbol] = ACTIONS(329), + [anon_sym_LBRACK_CARET] = ACTIONS(335), + [anon_sym_BANG_LBRACK] = ACTIONS(337), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(339), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_DOLLAR] = ACTIONS(345), + [anon_sym_TODO] = ACTIONS(347), + [anon_sym_WIP] = ACTIONS(347), + [anon_sym_NOTE] = ACTIONS(349), + [anon_sym_INFO] = ACTIONS(349), + [anon_sym_XXX] = ACTIONS(349), + [sym_fixme] = ACTIONS(329), + [sym__whitespace1] = ACTIONS(351), + [anon_sym_LF] = ACTIONS(353), + [aux_sym__text_token1] = ACTIONS(355), + [sym__verbatim_begin] = ACTIONS(357), + }, + [42] = { + [sym__inline] = STATE(1090), + [sym__element] = STATE(20), [sym_emphasis] = STATE(136), - [sym_emphasis_begin] = STATE(1134), + [sym_emphasis_begin] = STATE(1164), [sym_strong] = STATE(136), - [sym_strong_begin] = STATE(1135), + [sym_strong_begin] = STATE(1165), [sym_superscript] = STATE(136), - [sym_superscript_begin] = STATE(1136), + [sym_superscript_begin] = STATE(1166), [sym_subscript] = STATE(136), - [sym_subscript_begin] = STATE(1137), + [sym_subscript_begin] = STATE(1167), [sym_highlighted] = STATE(136), - [sym_highlighted_begin] = STATE(1138), + [sym_highlighted_begin] = STATE(1168), [sym_insert] = STATE(136), - [sym_insert_begin] = STATE(1139), + [sym_insert_begin] = STATE(1169), [sym_delete] = STATE(136), - [sym_delete_begin] = STATE(1140), - [sym_hard_line_break] = STATE(134), - [sym__smart_punctuation] = STATE(134), - [sym_autolink] = STATE(134), + [sym_delete_begin] = STATE(1170), + [sym_hard_line_break] = STATE(138), + [sym__smart_punctuation] = STATE(138), + [sym_autolink] = STATE(138), [sym_footnote_reference] = STATE(136), - [sym_footnote_marker_begin] = STATE(1141), + [sym_footnote_marker_begin] = STATE(1171), [sym__image] = STATE(136), [sym_full_reference_image] = STATE(136), [sym_collapsed_reference_image] = STATE(136), [sym_inline_image] = STATE(136), - [sym_image_description] = STATE(670), - [sym__image_description_begin] = STATE(1079), + [sym_image_description] = STATE(685), + [sym__image_description_begin] = STATE(958), [sym__link] = STATE(136), [sym_full_reference_link] = STATE(136), [sym_collapsed_reference_link] = STATE(136), [sym_inline_link] = STATE(136), - [sym_link_text] = STATE(671), - [sym_span] = STATE(14), - [sym__bracketed_text_begin] = STATE(1207), - [sym__comment_with_spaces] = STATE(134), - [sym_raw_inline] = STATE(134), - [sym_math] = STATE(134), - [sym_verbatim] = STATE(134), - [sym__todo_highlights] = STATE(134), - [sym_todo] = STATE(134), - [sym_note] = STATE(134), - [sym__symbol_fallback] = STATE(134), - [aux_sym__text] = STATE(129), - [aux_sym__inline_repeat1] = STATE(14), - [anon_sym_LBRACE_] = ACTIONS(295), - [anon_sym__] = ACTIONS(297), - [anon_sym_LBRACE_STAR] = ACTIONS(299), - [anon_sym_STAR] = ACTIONS(301), - [anon_sym_LBRACE_CARET] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(303), - [anon_sym_LBRACE_TILDE] = ACTIONS(305), - [anon_sym_TILDE] = ACTIONS(305), - [anon_sym_LBRACE_EQ] = ACTIONS(307), - [anon_sym_LBRACE_PLUS] = ACTIONS(309), - [anon_sym_LBRACE_DASH] = ACTIONS(311), - [anon_sym_BSLASH] = ACTIONS(313), - [sym_quotation_marks] = ACTIONS(315), - [sym_ellipsis] = ACTIONS(315), - [sym_em_dash] = ACTIONS(315), - [sym_en_dash] = ACTIONS(317), - [sym_backslash_escape] = ACTIONS(317), - [anon_sym_LT] = ACTIONS(319), - [sym_symbol] = ACTIONS(315), - [anon_sym_LBRACK_CARET] = ACTIONS(321), - [anon_sym_BANG_LBRACK] = ACTIONS(323), - [anon_sym_LBRACK] = ACTIONS(325), - [anon_sym_LPAREN] = ACTIONS(327), - [anon_sym_DOLLAR] = ACTIONS(329), - [anon_sym_TODO] = ACTIONS(331), - [anon_sym_WIP] = ACTIONS(331), - [anon_sym_NOTE] = ACTIONS(333), - [anon_sym_INFO] = ACTIONS(333), - [anon_sym_XXX] = ACTIONS(333), - [sym_fixme] = ACTIONS(315), - [sym__whitespace1] = ACTIONS(335), - [sym__newline] = ACTIONS(635), - [aux_sym__text_token1] = ACTIONS(339), - [sym__verbatim_begin] = ACTIONS(341), + [sym_link_text] = STATE(686), + [sym_span] = STATE(20), + [sym__bracketed_text_begin] = STATE(1219), + [sym__comment_with_spaces] = STATE(138), + [sym_raw_inline] = STATE(138), + [sym_math] = STATE(138), + [sym_verbatim] = STATE(138), + [sym__todo_highlights] = STATE(138), + [sym_todo] = STATE(138), + [sym_note] = STATE(138), + [sym__symbol_fallback] = STATE(138), + [sym__newline] = STATE(20), + [aux_sym__text] = STATE(126), + [aux_sym__inline_repeat1] = STATE(20), + [anon_sym_LBRACE_] = ACTIONS(359), + [anon_sym__] = ACTIONS(361), + [anon_sym_LBRACE_STAR] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(365), + [anon_sym_LBRACE_CARET] = ACTIONS(367), + [anon_sym_CARET] = ACTIONS(367), + [anon_sym_LBRACE_TILDE] = ACTIONS(369), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_LBRACE_EQ] = ACTIONS(371), + [anon_sym_LBRACE_PLUS] = ACTIONS(373), + [anon_sym_LBRACE_DASH] = ACTIONS(375), + [anon_sym_BSLASH] = ACTIONS(377), + [sym_quotation_marks] = ACTIONS(379), + [sym_ellipsis] = ACTIONS(379), + [sym_em_dash] = ACTIONS(379), + [sym_en_dash] = ACTIONS(381), + [sym_backslash_escape] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(383), + [sym_symbol] = ACTIONS(379), + [anon_sym_LBRACK_CARET] = ACTIONS(385), + [anon_sym_BANG_LBRACK] = ACTIONS(387), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(393), + [anon_sym_DOLLAR] = ACTIONS(395), + [anon_sym_TODO] = ACTIONS(397), + [anon_sym_WIP] = ACTIONS(397), + [anon_sym_NOTE] = ACTIONS(399), + [anon_sym_INFO] = ACTIONS(399), + [anon_sym_XXX] = ACTIONS(399), + [sym_fixme] = ACTIONS(379), + [sym__whitespace1] = ACTIONS(401), + [anon_sym_LF] = ACTIONS(403), + [aux_sym__text_token1] = ACTIONS(405), + [sym__verbatim_begin] = ACTIONS(407), }, - [51] = { - [sym__inline] = STATE(864), - [sym__element] = STATE(64), - [sym_emphasis] = STATE(133), - [sym_emphasis_begin] = STATE(1124), - [sym_strong] = STATE(133), - [sym_strong_begin] = STATE(1125), - [sym_superscript] = STATE(133), - [sym_superscript_begin] = STATE(1126), - [sym_subscript] = STATE(133), - [sym_subscript_begin] = STATE(1127), - [sym_highlighted] = STATE(133), - [sym_highlighted_begin] = STATE(1128), - [sym_insert] = STATE(133), - [sym_insert_begin] = STATE(1129), - [sym_delete] = STATE(133), - [sym_delete_begin] = STATE(1130), - [sym_hard_line_break] = STATE(140), - [sym__smart_punctuation] = STATE(140), - [sym_autolink] = STATE(140), - [sym_footnote_reference] = STATE(133), - [sym_footnote_marker_begin] = STATE(1131), - [sym__image] = STATE(133), - [sym_full_reference_image] = STATE(133), - [sym_collapsed_reference_image] = STATE(133), - [sym_inline_image] = STATE(133), - [sym_image_description] = STATE(663), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(133), - [sym_full_reference_link] = STATE(133), - [sym_collapsed_reference_link] = STATE(133), - [sym_inline_link] = STATE(133), - [sym_link_text] = STATE(669), - [sym_span] = STATE(64), - [sym__bracketed_text_begin] = STATE(1206), - [sym__comment_with_spaces] = STATE(140), - [sym_raw_inline] = STATE(140), - [sym_math] = STATE(140), - [sym_verbatim] = STATE(140), - [sym__todo_highlights] = STATE(140), - [sym_todo] = STATE(140), - [sym_note] = STATE(140), - [sym__symbol_fallback] = STATE(140), - [aux_sym__text] = STATE(122), - [aux_sym__inline_repeat1] = STATE(64), - [anon_sym_LBRACE_] = ACTIONS(537), - [anon_sym__] = ACTIONS(539), - [anon_sym_LBRACE_STAR] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(543), - [anon_sym_LBRACE_CARET] = ACTIONS(545), - [anon_sym_CARET] = ACTIONS(545), - [anon_sym_LBRACE_TILDE] = ACTIONS(547), - [anon_sym_TILDE] = ACTIONS(547), - [anon_sym_LBRACE_EQ] = ACTIONS(549), - [anon_sym_LBRACE_PLUS] = ACTIONS(551), - [anon_sym_LBRACE_DASH] = ACTIONS(553), - [anon_sym_BSLASH] = ACTIONS(555), - [sym_quotation_marks] = ACTIONS(557), - [sym_ellipsis] = ACTIONS(557), - [sym_em_dash] = ACTIONS(557), - [sym_en_dash] = ACTIONS(559), - [sym_backslash_escape] = ACTIONS(559), - [anon_sym_LT] = ACTIONS(561), - [sym_symbol] = ACTIONS(557), - [anon_sym_LBRACK_CARET] = ACTIONS(563), - [anon_sym_BANG_LBRACK] = ACTIONS(565), - [anon_sym_LBRACK] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_DOLLAR] = ACTIONS(571), - [anon_sym_TODO] = ACTIONS(573), - [anon_sym_WIP] = ACTIONS(573), - [anon_sym_NOTE] = ACTIONS(575), - [anon_sym_INFO] = ACTIONS(575), - [anon_sym_XXX] = ACTIONS(575), - [sym_fixme] = ACTIONS(557), - [sym__whitespace1] = ACTIONS(577), - [sym__newline] = ACTIONS(579), - [aux_sym__text_token1] = ACTIONS(581), - [sym__verbatim_begin] = ACTIONS(583), + [43] = { + [sym__inline] = STATE(1091), + [sym__element] = STATE(22), + [sym_emphasis] = STATE(140), + [sym_emphasis_begin] = STATE(1174), + [sym_strong] = STATE(140), + [sym_strong_begin] = STATE(1175), + [sym_superscript] = STATE(140), + [sym_superscript_begin] = STATE(1176), + [sym_subscript] = STATE(140), + [sym_subscript_begin] = STATE(1177), + [sym_highlighted] = STATE(140), + [sym_highlighted_begin] = STATE(1178), + [sym_insert] = STATE(140), + [sym_insert_begin] = STATE(1179), + [sym_delete] = STATE(140), + [sym_delete_begin] = STATE(1180), + [sym_hard_line_break] = STATE(139), + [sym__smart_punctuation] = STATE(139), + [sym_autolink] = STATE(139), + [sym_footnote_reference] = STATE(140), + [sym_footnote_marker_begin] = STATE(1181), + [sym__image] = STATE(140), + [sym_full_reference_image] = STATE(140), + [sym_collapsed_reference_image] = STATE(140), + [sym_inline_image] = STATE(140), + [sym_image_description] = STATE(655), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(140), + [sym_full_reference_link] = STATE(140), + [sym_collapsed_reference_link] = STATE(140), + [sym_inline_link] = STATE(140), + [sym_link_text] = STATE(656), + [sym_span] = STATE(22), + [sym__bracketed_text_begin] = STATE(1220), + [sym__comment_with_spaces] = STATE(139), + [sym_raw_inline] = STATE(139), + [sym_math] = STATE(139), + [sym_verbatim] = STATE(139), + [sym__todo_highlights] = STATE(139), + [sym_todo] = STATE(139), + [sym_note] = STATE(139), + [sym__symbol_fallback] = STATE(139), + [sym__newline] = STATE(22), + [aux_sym__text] = STATE(127), + [aux_sym__inline_repeat1] = STATE(22), + [anon_sym_LBRACE_] = ACTIONS(409), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_STAR] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(415), + [anon_sym_LBRACE_CARET] = ACTIONS(417), + [anon_sym_CARET] = ACTIONS(417), + [anon_sym_LBRACE_TILDE] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(419), + [anon_sym_LBRACE_EQ] = ACTIONS(421), + [anon_sym_LBRACE_PLUS] = ACTIONS(423), + [anon_sym_LBRACE_DASH] = ACTIONS(425), + [anon_sym_BSLASH] = ACTIONS(427), + [sym_quotation_marks] = ACTIONS(429), + [sym_ellipsis] = ACTIONS(429), + [sym_em_dash] = ACTIONS(429), + [sym_en_dash] = ACTIONS(431), + [sym_backslash_escape] = ACTIONS(431), + [anon_sym_LT] = ACTIONS(433), + [sym_symbol] = ACTIONS(429), + [anon_sym_LBRACK_CARET] = ACTIONS(435), + [anon_sym_BANG_LBRACK] = ACTIONS(437), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(439), + [anon_sym_LBRACK] = ACTIONS(441), + [anon_sym_LPAREN] = ACTIONS(443), + [anon_sym_DOLLAR] = ACTIONS(445), + [anon_sym_TODO] = ACTIONS(447), + [anon_sym_WIP] = ACTIONS(447), + [anon_sym_NOTE] = ACTIONS(449), + [anon_sym_INFO] = ACTIONS(449), + [anon_sym_XXX] = ACTIONS(449), + [sym_fixme] = ACTIONS(429), + [sym__whitespace1] = ACTIONS(451), + [anon_sym_LF] = ACTIONS(453), + [aux_sym__text_token1] = ACTIONS(455), + [sym__verbatim_begin] = ACTIONS(457), + }, + [44] = { + [sym__inline] = STATE(1094), + [sym__element] = STATE(24), + [sym_emphasis] = STATE(131), + [sym_emphasis_begin] = STATE(1184), + [sym_strong] = STATE(131), + [sym_strong_begin] = STATE(1185), + [sym_superscript] = STATE(131), + [sym_superscript_begin] = STATE(1186), + [sym_subscript] = STATE(131), + [sym_subscript_begin] = STATE(1187), + [sym_highlighted] = STATE(131), + [sym_highlighted_begin] = STATE(1188), + [sym_insert] = STATE(131), + [sym_insert_begin] = STATE(1189), + [sym_delete] = STATE(131), + [sym_delete_begin] = STATE(1190), + [sym_hard_line_break] = STATE(145), + [sym__smart_punctuation] = STATE(145), + [sym_autolink] = STATE(145), + [sym_footnote_reference] = STATE(131), + [sym_footnote_marker_begin] = STATE(1191), + [sym__image] = STATE(131), + [sym_full_reference_image] = STATE(131), + [sym_collapsed_reference_image] = STATE(131), + [sym_inline_image] = STATE(131), + [sym_image_description] = STATE(662), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(131), + [sym_full_reference_link] = STATE(131), + [sym_collapsed_reference_link] = STATE(131), + [sym_inline_link] = STATE(131), + [sym_link_text] = STATE(663), + [sym_span] = STATE(24), + [sym__bracketed_text_begin] = STATE(1221), + [sym__comment_with_spaces] = STATE(145), + [sym_raw_inline] = STATE(145), + [sym_math] = STATE(145), + [sym_verbatim] = STATE(145), + [sym__todo_highlights] = STATE(145), + [sym_todo] = STATE(145), + [sym_note] = STATE(145), + [sym__symbol_fallback] = STATE(145), + [sym__newline] = STATE(24), + [aux_sym__text] = STATE(129), + [aux_sym__inline_repeat1] = STATE(24), + [anon_sym_LBRACE_] = ACTIONS(459), + [anon_sym__] = ACTIONS(461), + [anon_sym_LBRACE_STAR] = ACTIONS(463), + [anon_sym_STAR] = ACTIONS(465), + [anon_sym_LBRACE_CARET] = ACTIONS(467), + [anon_sym_CARET] = ACTIONS(467), + [anon_sym_LBRACE_TILDE] = ACTIONS(469), + [anon_sym_TILDE] = ACTIONS(469), + [anon_sym_LBRACE_EQ] = ACTIONS(471), + [anon_sym_LBRACE_PLUS] = ACTIONS(473), + [anon_sym_LBRACE_DASH] = ACTIONS(475), + [anon_sym_BSLASH] = ACTIONS(477), + [sym_quotation_marks] = ACTIONS(479), + [sym_ellipsis] = ACTIONS(479), + [sym_em_dash] = ACTIONS(479), + [sym_en_dash] = ACTIONS(481), + [sym_backslash_escape] = ACTIONS(481), + [anon_sym_LT] = ACTIONS(483), + [sym_symbol] = ACTIONS(479), + [anon_sym_LBRACK_CARET] = ACTIONS(485), + [anon_sym_BANG_LBRACK] = ACTIONS(487), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(489), + [anon_sym_LBRACK] = ACTIONS(491), + [anon_sym_LPAREN] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(495), + [anon_sym_TODO] = ACTIONS(497), + [anon_sym_WIP] = ACTIONS(497), + [anon_sym_NOTE] = ACTIONS(499), + [anon_sym_INFO] = ACTIONS(499), + [anon_sym_XXX] = ACTIONS(499), + [sym_fixme] = ACTIONS(479), + [sym__whitespace1] = ACTIONS(501), + [anon_sym_LF] = ACTIONS(503), + [aux_sym__text_token1] = ACTIONS(505), + [sym__verbatim_begin] = ACTIONS(507), }, - [52] = { - [sym__inline_without_trailing_space] = STATE(880), - [sym__element] = STATE(550), - [sym_emphasis] = STATE(137), + [45] = { + [sym__inline_without_trailing_space] = STATE(977), + [sym__element] = STATE(543), + [sym_emphasis] = STATE(150), [sym_emphasis_begin] = STATE(1114), - [sym_strong] = STATE(137), + [sym_strong] = STATE(150), [sym_strong_begin] = STATE(1115), - [sym_superscript] = STATE(137), + [sym_superscript] = STATE(150), [sym_superscript_begin] = STATE(1116), - [sym_subscript] = STATE(137), + [sym_subscript] = STATE(150), [sym_subscript_begin] = STATE(1117), - [sym_highlighted] = STATE(137), + [sym_highlighted] = STATE(150), [sym_highlighted_begin] = STATE(1118), - [sym_insert] = STATE(137), + [sym_insert] = STATE(150), [sym_insert_begin] = STATE(1119), - [sym_delete] = STATE(137), + [sym_delete] = STATE(150), [sym_delete_begin] = STATE(1120), - [sym_hard_line_break] = STATE(131), - [sym__smart_punctuation] = STATE(131), - [sym_autolink] = STATE(131), - [sym_footnote_reference] = STATE(137), + [sym_hard_line_break] = STATE(133), + [sym__smart_punctuation] = STATE(133), + [sym_autolink] = STATE(133), + [sym_footnote_reference] = STATE(150), [sym_footnote_marker_begin] = STATE(1121), - [sym__image] = STATE(137), - [sym_full_reference_image] = STATE(137), - [sym_collapsed_reference_image] = STATE(137), - [sym_inline_image] = STATE(137), - [sym_image_description] = STATE(649), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(137), - [sym_full_reference_link] = STATE(137), - [sym_collapsed_reference_link] = STATE(137), - [sym_inline_link] = STATE(137), - [sym_link_text] = STATE(650), - [sym_span] = STATE(550), - [sym__bracketed_text_begin] = STATE(1205), - [sym__comment_with_spaces] = STATE(131), - [sym_raw_inline] = STATE(131), - [sym_math] = STATE(131), - [sym_verbatim] = STATE(131), - [sym__todo_highlights] = STATE(131), - [sym_todo] = STATE(131), - [sym_note] = STATE(131), - [sym__symbol_fallback] = STATE(131), - [aux_sym__text] = STATE(130), + [sym__image] = STATE(150), + [sym_full_reference_image] = STATE(150), + [sym_collapsed_reference_image] = STATE(150), + [sym_inline_image] = STATE(150), + [sym_image_description] = STATE(678), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(150), + [sym_full_reference_link] = STATE(150), + [sym_collapsed_reference_link] = STATE(150), + [sym_inline_link] = STATE(150), + [sym_link_text] = STATE(679), + [sym_span] = STATE(543), + [sym__bracketed_text_begin] = STATE(1214), + [sym__comment_with_spaces] = STATE(133), + [sym_raw_inline] = STATE(133), + [sym_math] = STATE(133), + [sym_verbatim] = STATE(133), + [sym__todo_highlights] = STATE(133), + [sym_todo] = STATE(133), + [sym_note] = STATE(133), + [sym__symbol_fallback] = STATE(133), + [sym__newline] = STATE(119), + [aux_sym__text] = STATE(122), [aux_sym__inline_repeat1] = STATE(119), - [anon_sym_LBRACE_] = ACTIONS(489), - [anon_sym__] = ACTIONS(491), - [anon_sym_LBRACE_STAR] = ACTIONS(493), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_LBRACE_CARET] = ACTIONS(497), - [anon_sym_CARET] = ACTIONS(497), - [anon_sym_LBRACE_TILDE] = ACTIONS(499), - [anon_sym_TILDE] = ACTIONS(499), - [anon_sym_LBRACE_EQ] = ACTIONS(501), - [anon_sym_LBRACE_PLUS] = ACTIONS(503), - [anon_sym_LBRACE_DASH] = ACTIONS(505), - [anon_sym_BSLASH] = ACTIONS(507), - [sym_quotation_marks] = ACTIONS(509), - [sym_ellipsis] = ACTIONS(509), - [sym_em_dash] = ACTIONS(509), - [sym_en_dash] = ACTIONS(511), - [sym_backslash_escape] = ACTIONS(511), - [anon_sym_LT] = ACTIONS(513), - [sym_symbol] = ACTIONS(509), - [anon_sym_LBRACK_CARET] = ACTIONS(515), - [anon_sym_BANG_LBRACK] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(519), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_DOLLAR] = ACTIONS(523), - [anon_sym_TODO] = ACTIONS(525), - [anon_sym_WIP] = ACTIONS(525), - [anon_sym_NOTE] = ACTIONS(527), - [anon_sym_INFO] = ACTIONS(527), - [anon_sym_XXX] = ACTIONS(527), - [sym_fixme] = ACTIONS(509), - [sym__whitespace1] = ACTIONS(529), - [sym__newline] = ACTIONS(531), - [aux_sym__text_token1] = ACTIONS(533), - [sym__verbatim_begin] = ACTIONS(535), + [anon_sym_LBRACE_] = ACTIONS(159), + [anon_sym__] = ACTIONS(161), + [anon_sym_LBRACE_STAR] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(165), + [anon_sym_LBRACE_CARET] = ACTIONS(167), + [anon_sym_CARET] = ACTIONS(167), + [anon_sym_LBRACE_TILDE] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(169), + [anon_sym_LBRACE_EQ] = ACTIONS(171), + [anon_sym_LBRACE_PLUS] = ACTIONS(173), + [anon_sym_LBRACE_DASH] = ACTIONS(175), + [anon_sym_BSLASH] = ACTIONS(177), + [sym_quotation_marks] = ACTIONS(179), + [sym_ellipsis] = ACTIONS(179), + [sym_em_dash] = ACTIONS(179), + [sym_en_dash] = ACTIONS(181), + [sym_backslash_escape] = ACTIONS(181), + [anon_sym_LT] = ACTIONS(183), + [sym_symbol] = ACTIONS(179), + [anon_sym_LBRACK_CARET] = ACTIONS(185), + [anon_sym_BANG_LBRACK] = ACTIONS(187), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(189), + [anon_sym_LBRACK] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(195), + [anon_sym_TODO] = ACTIONS(197), + [anon_sym_WIP] = ACTIONS(197), + [anon_sym_NOTE] = ACTIONS(199), + [anon_sym_INFO] = ACTIONS(199), + [anon_sym_XXX] = ACTIONS(199), + [sym_fixme] = ACTIONS(179), + [sym__whitespace1] = ACTIONS(201), + [anon_sym_LF] = ACTIONS(203), + [aux_sym__text_token1] = ACTIONS(205), + [sym__verbatim_begin] = ACTIONS(207), }, - [53] = { - [sym__inline_without_trailing_space] = STATE(1049), - [sym__element] = STATE(594), + [46] = { + [sym__inline] = STATE(1112), + [sym__element] = STATE(26), [sym_emphasis] = STATE(149), - [sym_emphasis_begin] = STATE(1104), + [sym_emphasis_begin] = STATE(1194), [sym_strong] = STATE(149), - [sym_strong_begin] = STATE(1105), + [sym_strong_begin] = STATE(1195), [sym_superscript] = STATE(149), - [sym_superscript_begin] = STATE(1106), + [sym_superscript_begin] = STATE(1196), [sym_subscript] = STATE(149), - [sym_subscript_begin] = STATE(1107), + [sym_subscript_begin] = STATE(1197), [sym_highlighted] = STATE(149), - [sym_highlighted_begin] = STATE(1108), + [sym_highlighted_begin] = STATE(1198), [sym_insert] = STATE(149), - [sym_insert_begin] = STATE(1109), + [sym_insert_begin] = STATE(1199), [sym_delete] = STATE(149), - [sym_delete_begin] = STATE(1110), - [sym_hard_line_break] = STATE(143), - [sym__smart_punctuation] = STATE(143), - [sym_autolink] = STATE(143), + [sym_delete_begin] = STATE(1200), + [sym_hard_line_break] = STATE(148), + [sym__smart_punctuation] = STATE(148), + [sym_autolink] = STATE(148), [sym_footnote_reference] = STATE(149), - [sym_footnote_marker_begin] = STATE(1111), + [sym_footnote_marker_begin] = STATE(1201), [sym__image] = STATE(149), [sym_full_reference_image] = STATE(149), [sym_collapsed_reference_image] = STATE(149), [sym_inline_image] = STATE(149), - [sym_image_description] = STATE(658), - [sym__image_description_begin] = STATE(1079), + [sym_image_description] = STATE(667), + [sym__image_description_begin] = STATE(958), [sym__link] = STATE(149), [sym_full_reference_link] = STATE(149), [sym_collapsed_reference_link] = STATE(149), [sym_inline_link] = STATE(149), - [sym_link_text] = STATE(672), - [sym_span] = STATE(594), - [sym__bracketed_text_begin] = STATE(1204), - [sym__comment_with_spaces] = STATE(143), - [sym_raw_inline] = STATE(143), - [sym_math] = STATE(143), - [sym_verbatim] = STATE(143), - [sym__todo_highlights] = STATE(143), - [sym_todo] = STATE(143), - [sym_note] = STATE(143), - [sym__symbol_fallback] = STATE(143), - [aux_sym__text] = STATE(127), - [aux_sym__inline_repeat1] = STATE(120), - [anon_sym_LBRACE_] = ACTIONS(441), - [anon_sym__] = ACTIONS(443), - [anon_sym_LBRACE_STAR] = ACTIONS(445), - [anon_sym_STAR] = ACTIONS(447), - [anon_sym_LBRACE_CARET] = ACTIONS(449), - [anon_sym_CARET] = ACTIONS(449), - [anon_sym_LBRACE_TILDE] = ACTIONS(451), - [anon_sym_TILDE] = ACTIONS(451), - [anon_sym_LBRACE_EQ] = ACTIONS(453), - [anon_sym_LBRACE_PLUS] = ACTIONS(455), - [anon_sym_LBRACE_DASH] = ACTIONS(457), - [anon_sym_BSLASH] = ACTIONS(459), - [sym_quotation_marks] = ACTIONS(461), - [sym_ellipsis] = ACTIONS(461), - [sym_em_dash] = ACTIONS(461), - [sym_en_dash] = ACTIONS(463), - [sym_backslash_escape] = ACTIONS(463), - [anon_sym_LT] = ACTIONS(465), - [sym_symbol] = ACTIONS(461), - [anon_sym_LBRACK_CARET] = ACTIONS(467), - [anon_sym_BANG_LBRACK] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(471), - [anon_sym_LPAREN] = ACTIONS(473), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_TODO] = ACTIONS(477), - [anon_sym_WIP] = ACTIONS(477), - [anon_sym_NOTE] = ACTIONS(479), - [anon_sym_INFO] = ACTIONS(479), - [anon_sym_XXX] = ACTIONS(479), - [sym_fixme] = ACTIONS(461), - [sym__whitespace1] = ACTIONS(481), - [sym__newline] = ACTIONS(483), - [aux_sym__text_token1] = ACTIONS(485), - [sym__verbatim_begin] = ACTIONS(487), - }, - [54] = { - [sym__inline_without_trailing_space] = STATE(1048), - [sym__element] = STATE(550), - [sym_emphasis] = STATE(137), - [sym_emphasis_begin] = STATE(1114), - [sym_strong] = STATE(137), - [sym_strong_begin] = STATE(1115), - [sym_superscript] = STATE(137), - [sym_superscript_begin] = STATE(1116), - [sym_subscript] = STATE(137), - [sym_subscript_begin] = STATE(1117), - [sym_highlighted] = STATE(137), - [sym_highlighted_begin] = STATE(1118), - [sym_insert] = STATE(137), - [sym_insert_begin] = STATE(1119), - [sym_delete] = STATE(137), - [sym_delete_begin] = STATE(1120), - [sym_hard_line_break] = STATE(131), - [sym__smart_punctuation] = STATE(131), - [sym_autolink] = STATE(131), - [sym_footnote_reference] = STATE(137), - [sym_footnote_marker_begin] = STATE(1121), - [sym__image] = STATE(137), - [sym_full_reference_image] = STATE(137), - [sym_collapsed_reference_image] = STATE(137), - [sym_inline_image] = STATE(137), - [sym_image_description] = STATE(649), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(137), - [sym_full_reference_link] = STATE(137), - [sym_collapsed_reference_link] = STATE(137), - [sym_inline_link] = STATE(137), - [sym_link_text] = STATE(650), - [sym_span] = STATE(550), - [sym__bracketed_text_begin] = STATE(1205), - [sym__comment_with_spaces] = STATE(131), - [sym_raw_inline] = STATE(131), - [sym_math] = STATE(131), - [sym_verbatim] = STATE(131), - [sym__todo_highlights] = STATE(131), - [sym_todo] = STATE(131), - [sym_note] = STATE(131), - [sym__symbol_fallback] = STATE(131), + [sym_link_text] = STATE(668), + [sym_span] = STATE(26), + [sym__bracketed_text_begin] = STATE(1222), + [sym__comment_with_spaces] = STATE(148), + [sym_raw_inline] = STATE(148), + [sym_math] = STATE(148), + [sym_verbatim] = STATE(148), + [sym__todo_highlights] = STATE(148), + [sym_todo] = STATE(148), + [sym_note] = STATE(148), + [sym__symbol_fallback] = STATE(148), + [sym__newline] = STATE(26), [aux_sym__text] = STATE(130), - [aux_sym__inline_repeat1] = STATE(119), - [anon_sym_LBRACE_] = ACTIONS(489), - [anon_sym__] = ACTIONS(491), - [anon_sym_LBRACE_STAR] = ACTIONS(493), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_LBRACE_CARET] = ACTIONS(497), - [anon_sym_CARET] = ACTIONS(497), - [anon_sym_LBRACE_TILDE] = ACTIONS(499), - [anon_sym_TILDE] = ACTIONS(499), - [anon_sym_LBRACE_EQ] = ACTIONS(501), - [anon_sym_LBRACE_PLUS] = ACTIONS(503), - [anon_sym_LBRACE_DASH] = ACTIONS(505), - [anon_sym_BSLASH] = ACTIONS(507), - [sym_quotation_marks] = ACTIONS(509), - [sym_ellipsis] = ACTIONS(509), - [sym_em_dash] = ACTIONS(509), - [sym_en_dash] = ACTIONS(511), - [sym_backslash_escape] = ACTIONS(511), - [anon_sym_LT] = ACTIONS(513), - [sym_symbol] = ACTIONS(509), - [anon_sym_LBRACK_CARET] = ACTIONS(515), - [anon_sym_BANG_LBRACK] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(519), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_DOLLAR] = ACTIONS(523), - [anon_sym_TODO] = ACTIONS(525), - [anon_sym_WIP] = ACTIONS(525), - [anon_sym_NOTE] = ACTIONS(527), - [anon_sym_INFO] = ACTIONS(527), - [anon_sym_XXX] = ACTIONS(527), - [sym_fixme] = ACTIONS(509), - [sym__whitespace1] = ACTIONS(529), - [sym__newline] = ACTIONS(531), - [aux_sym__text_token1] = ACTIONS(533), - [sym__verbatim_begin] = ACTIONS(535), - }, - [55] = { - [sym__inline] = STATE(1047), - [sym__element] = STATE(64), - [sym_emphasis] = STATE(133), - [sym_emphasis_begin] = STATE(1124), - [sym_strong] = STATE(133), - [sym_strong_begin] = STATE(1125), - [sym_superscript] = STATE(133), - [sym_superscript_begin] = STATE(1126), - [sym_subscript] = STATE(133), - [sym_subscript_begin] = STATE(1127), - [sym_highlighted] = STATE(133), - [sym_highlighted_begin] = STATE(1128), - [sym_insert] = STATE(133), - [sym_insert_begin] = STATE(1129), - [sym_delete] = STATE(133), - [sym_delete_begin] = STATE(1130), - [sym_hard_line_break] = STATE(140), - [sym__smart_punctuation] = STATE(140), - [sym_autolink] = STATE(140), - [sym_footnote_reference] = STATE(133), - [sym_footnote_marker_begin] = STATE(1131), - [sym__image] = STATE(133), - [sym_full_reference_image] = STATE(133), - [sym_collapsed_reference_image] = STATE(133), - [sym_inline_image] = STATE(133), - [sym_image_description] = STATE(663), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(133), - [sym_full_reference_link] = STATE(133), - [sym_collapsed_reference_link] = STATE(133), - [sym_inline_link] = STATE(133), - [sym_link_text] = STATE(669), - [sym_span] = STATE(64), - [sym__bracketed_text_begin] = STATE(1206), - [sym__comment_with_spaces] = STATE(140), - [sym_raw_inline] = STATE(140), - [sym_math] = STATE(140), - [sym_verbatim] = STATE(140), - [sym__todo_highlights] = STATE(140), - [sym_todo] = STATE(140), - [sym_note] = STATE(140), - [sym__symbol_fallback] = STATE(140), - [aux_sym__text] = STATE(122), - [aux_sym__inline_repeat1] = STATE(64), - [anon_sym_LBRACE_] = ACTIONS(537), - [anon_sym__] = ACTIONS(539), - [anon_sym_LBRACE_STAR] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(543), - [anon_sym_LBRACE_CARET] = ACTIONS(545), - [anon_sym_CARET] = ACTIONS(545), - [anon_sym_LBRACE_TILDE] = ACTIONS(547), - [anon_sym_TILDE] = ACTIONS(547), - [anon_sym_LBRACE_EQ] = ACTIONS(549), - [anon_sym_LBRACE_PLUS] = ACTIONS(551), - [anon_sym_LBRACE_DASH] = ACTIONS(553), - [anon_sym_BSLASH] = ACTIONS(555), - [sym_quotation_marks] = ACTIONS(557), - [sym_ellipsis] = ACTIONS(557), - [sym_em_dash] = ACTIONS(557), - [sym_en_dash] = ACTIONS(559), - [sym_backslash_escape] = ACTIONS(559), - [anon_sym_LT] = ACTIONS(561), - [sym_symbol] = ACTIONS(557), - [anon_sym_LBRACK_CARET] = ACTIONS(563), - [anon_sym_BANG_LBRACK] = ACTIONS(565), - [anon_sym_LBRACK] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_DOLLAR] = ACTIONS(571), - [anon_sym_TODO] = ACTIONS(573), - [anon_sym_WIP] = ACTIONS(573), - [anon_sym_NOTE] = ACTIONS(575), - [anon_sym_INFO] = ACTIONS(575), - [anon_sym_XXX] = ACTIONS(575), - [sym_fixme] = ACTIONS(557), - [sym__whitespace1] = ACTIONS(577), - [sym__newline] = ACTIONS(579), - [aux_sym__text_token1] = ACTIONS(581), - [sym__verbatim_begin] = ACTIONS(583), + [aux_sym__inline_repeat1] = STATE(26), + [anon_sym_LBRACE_] = ACTIONS(53), + [anon_sym__] = ACTIONS(55), + [anon_sym_LBRACE_STAR] = ACTIONS(57), + [anon_sym_STAR] = ACTIONS(59), + [anon_sym_LBRACE_CARET] = ACTIONS(61), + [anon_sym_CARET] = ACTIONS(61), + [anon_sym_LBRACE_TILDE] = ACTIONS(63), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_LBRACE_EQ] = ACTIONS(65), + [anon_sym_LBRACE_PLUS] = ACTIONS(67), + [anon_sym_LBRACE_DASH] = ACTIONS(69), + [anon_sym_BSLASH] = ACTIONS(71), + [sym_quotation_marks] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(73), + [sym_em_dash] = ACTIONS(73), + [sym_en_dash] = ACTIONS(75), + [sym_backslash_escape] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [sym_symbol] = ACTIONS(73), + [anon_sym_LBRACK_CARET] = ACTIONS(79), + [anon_sym_BANG_LBRACK] = ACTIONS(81), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), + [anon_sym_DOLLAR] = ACTIONS(89), + [anon_sym_TODO] = ACTIONS(91), + [anon_sym_WIP] = ACTIONS(91), + [anon_sym_NOTE] = ACTIONS(93), + [anon_sym_INFO] = ACTIONS(93), + [anon_sym_XXX] = ACTIONS(93), + [sym_fixme] = ACTIONS(73), + [sym__whitespace1] = ACTIONS(95), + [anon_sym_LF] = ACTIONS(97), + [aux_sym__text_token1] = ACTIONS(99), + [sym__verbatim_begin] = ACTIONS(101), }, - [56] = { - [sym__inline] = STATE(1046), - [sym__element] = STATE(14), - [sym_emphasis] = STATE(136), + [47] = { + [sym__inline] = STATE(979), + [sym__element] = STATE(15), + [sym_emphasis] = STATE(132), [sym_emphasis_begin] = STATE(1134), - [sym_strong] = STATE(136), + [sym_strong] = STATE(132), [sym_strong_begin] = STATE(1135), - [sym_superscript] = STATE(136), + [sym_superscript] = STATE(132), [sym_superscript_begin] = STATE(1136), - [sym_subscript] = STATE(136), + [sym_subscript] = STATE(132), [sym_subscript_begin] = STATE(1137), - [sym_highlighted] = STATE(136), + [sym_highlighted] = STATE(132), [sym_highlighted_begin] = STATE(1138), - [sym_insert] = STATE(136), + [sym_insert] = STATE(132), [sym_insert_begin] = STATE(1139), - [sym_delete] = STATE(136), + [sym_delete] = STATE(132), [sym_delete_begin] = STATE(1140), + [sym_hard_line_break] = STATE(147), + [sym__smart_punctuation] = STATE(147), + [sym_autolink] = STATE(147), + [sym_footnote_reference] = STATE(132), + [sym_footnote_marker_begin] = STATE(1141), + [sym__image] = STATE(132), + [sym_full_reference_image] = STATE(132), + [sym_collapsed_reference_image] = STATE(132), + [sym_inline_image] = STATE(132), + [sym_image_description] = STATE(682), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(132), + [sym_full_reference_link] = STATE(132), + [sym_collapsed_reference_link] = STATE(132), + [sym_inline_link] = STATE(132), + [sym_link_text] = STATE(689), + [sym_span] = STATE(15), + [sym__bracketed_text_begin] = STATE(1216), + [sym__comment_with_spaces] = STATE(147), + [sym_raw_inline] = STATE(147), + [sym_math] = STATE(147), + [sym_verbatim] = STATE(147), + [sym__todo_highlights] = STATE(147), + [sym_todo] = STATE(147), + [sym_note] = STATE(147), + [sym__symbol_fallback] = STATE(147), + [sym__newline] = STATE(15), + [aux_sym__text] = STATE(121), + [aux_sym__inline_repeat1] = STATE(15), + [anon_sym_LBRACE_] = ACTIONS(105), + [anon_sym__] = ACTIONS(107), + [anon_sym_LBRACE_STAR] = ACTIONS(109), + [anon_sym_STAR] = ACTIONS(111), + [anon_sym_LBRACE_CARET] = ACTIONS(113), + [anon_sym_CARET] = ACTIONS(113), + [anon_sym_LBRACE_TILDE] = ACTIONS(115), + [anon_sym_TILDE] = ACTIONS(115), + [anon_sym_LBRACE_EQ] = ACTIONS(117), + [anon_sym_LBRACE_PLUS] = ACTIONS(119), + [anon_sym_LBRACE_DASH] = ACTIONS(121), + [anon_sym_BSLASH] = ACTIONS(123), + [sym_quotation_marks] = ACTIONS(125), + [sym_ellipsis] = ACTIONS(125), + [sym_em_dash] = ACTIONS(125), + [sym_en_dash] = ACTIONS(127), + [sym_backslash_escape] = ACTIONS(127), + [anon_sym_LT] = ACTIONS(129), + [sym_symbol] = ACTIONS(125), + [anon_sym_LBRACK_CARET] = ACTIONS(131), + [anon_sym_BANG_LBRACK] = ACTIONS(133), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(135), + [anon_sym_LBRACK] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_TODO] = ACTIONS(143), + [anon_sym_WIP] = ACTIONS(143), + [anon_sym_NOTE] = ACTIONS(145), + [anon_sym_INFO] = ACTIONS(145), + [anon_sym_XXX] = ACTIONS(145), + [sym_fixme] = ACTIONS(125), + [sym__whitespace1] = ACTIONS(147), + [anon_sym_LF] = ACTIONS(149), + [aux_sym__text_token1] = ACTIONS(151), + [sym__verbatim_begin] = ACTIONS(153), + }, + [48] = { + [sym__inline] = STATE(980), + [sym__element] = STATE(16), + [sym_emphasis] = STATE(143), + [sym_emphasis_begin] = STATE(1144), + [sym_strong] = STATE(143), + [sym_strong_begin] = STATE(1145), + [sym_superscript] = STATE(143), + [sym_superscript_begin] = STATE(1146), + [sym_subscript] = STATE(143), + [sym_subscript_begin] = STATE(1147), + [sym_highlighted] = STATE(143), + [sym_highlighted_begin] = STATE(1148), + [sym_insert] = STATE(143), + [sym_insert_begin] = STATE(1149), + [sym_delete] = STATE(143), + [sym_delete_begin] = STATE(1150), + [sym_hard_line_break] = STATE(141), + [sym__smart_punctuation] = STATE(141), + [sym_autolink] = STATE(141), + [sym_footnote_reference] = STATE(143), + [sym_footnote_marker_begin] = STATE(1151), + [sym__image] = STATE(143), + [sym_full_reference_image] = STATE(143), + [sym_collapsed_reference_image] = STATE(143), + [sym_inline_image] = STATE(143), + [sym_image_description] = STATE(660), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(143), + [sym_full_reference_link] = STATE(143), + [sym_collapsed_reference_link] = STATE(143), + [sym_inline_link] = STATE(143), + [sym_link_text] = STATE(661), + [sym_span] = STATE(16), + [sym__bracketed_text_begin] = STATE(1217), + [sym__comment_with_spaces] = STATE(141), + [sym_raw_inline] = STATE(141), + [sym_math] = STATE(141), + [sym_verbatim] = STATE(141), + [sym__todo_highlights] = STATE(141), + [sym_todo] = STATE(141), + [sym_note] = STATE(141), + [sym__symbol_fallback] = STATE(141), + [sym__newline] = STATE(16), + [aux_sym__text] = STATE(125), + [aux_sym__inline_repeat1] = STATE(16), + [anon_sym_LBRACE_] = ACTIONS(259), + [anon_sym__] = ACTIONS(261), + [anon_sym_LBRACE_STAR] = ACTIONS(263), + [anon_sym_STAR] = ACTIONS(265), + [anon_sym_LBRACE_CARET] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_LBRACE_TILDE] = ACTIONS(269), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_LBRACE_EQ] = ACTIONS(271), + [anon_sym_LBRACE_PLUS] = ACTIONS(273), + [anon_sym_LBRACE_DASH] = ACTIONS(275), + [anon_sym_BSLASH] = ACTIONS(277), + [sym_quotation_marks] = ACTIONS(279), + [sym_ellipsis] = ACTIONS(279), + [sym_em_dash] = ACTIONS(279), + [sym_en_dash] = ACTIONS(281), + [sym_backslash_escape] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(283), + [sym_symbol] = ACTIONS(279), + [anon_sym_LBRACK_CARET] = ACTIONS(285), + [anon_sym_BANG_LBRACK] = ACTIONS(287), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_DOLLAR] = ACTIONS(295), + [anon_sym_TODO] = ACTIONS(297), + [anon_sym_WIP] = ACTIONS(297), + [anon_sym_NOTE] = ACTIONS(299), + [anon_sym_INFO] = ACTIONS(299), + [anon_sym_XXX] = ACTIONS(299), + [sym_fixme] = ACTIONS(279), + [sym__whitespace1] = ACTIONS(301), + [anon_sym_LF] = ACTIONS(303), + [aux_sym__text_token1] = ACTIONS(305), + [sym__verbatim_begin] = ACTIONS(307), + }, + [49] = { + [sym__inline] = STATE(981), + [sym__element] = STATE(18), + [sym_emphasis] = STATE(135), + [sym_emphasis_begin] = STATE(1154), + [sym_strong] = STATE(135), + [sym_strong_begin] = STATE(1155), + [sym_superscript] = STATE(135), + [sym_superscript_begin] = STATE(1156), + [sym_subscript] = STATE(135), + [sym_subscript_begin] = STATE(1157), + [sym_highlighted] = STATE(135), + [sym_highlighted_begin] = STATE(1158), + [sym_insert] = STATE(135), + [sym_insert_begin] = STATE(1159), + [sym_delete] = STATE(135), + [sym_delete_begin] = STATE(1160), [sym_hard_line_break] = STATE(134), [sym__smart_punctuation] = STATE(134), [sym_autolink] = STATE(134), - [sym_footnote_reference] = STATE(136), - [sym_footnote_marker_begin] = STATE(1141), - [sym__image] = STATE(136), - [sym_full_reference_image] = STATE(136), - [sym_collapsed_reference_image] = STATE(136), - [sym_inline_image] = STATE(136), - [sym_image_description] = STATE(670), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(136), - [sym_full_reference_link] = STATE(136), - [sym_collapsed_reference_link] = STATE(136), - [sym_inline_link] = STATE(136), - [sym_link_text] = STATE(671), - [sym_span] = STATE(14), - [sym__bracketed_text_begin] = STATE(1207), + [sym_footnote_reference] = STATE(135), + [sym_footnote_marker_begin] = STATE(1161), + [sym__image] = STATE(135), + [sym_full_reference_image] = STATE(135), + [sym_collapsed_reference_image] = STATE(135), + [sym_inline_image] = STATE(135), + [sym_image_description] = STATE(677), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(135), + [sym_full_reference_link] = STATE(135), + [sym_collapsed_reference_link] = STATE(135), + [sym_inline_link] = STATE(135), + [sym_link_text] = STATE(680), + [sym_span] = STATE(18), + [sym__bracketed_text_begin] = STATE(1218), [sym__comment_with_spaces] = STATE(134), [sym_raw_inline] = STATE(134), [sym_math] = STATE(134), @@ -9656,157 +9296,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(134), [sym_note] = STATE(134), [sym__symbol_fallback] = STATE(134), - [aux_sym__text] = STATE(129), - [aux_sym__inline_repeat1] = STATE(14), - [anon_sym_LBRACE_] = ACTIONS(295), - [anon_sym__] = ACTIONS(297), - [anon_sym_LBRACE_STAR] = ACTIONS(299), - [anon_sym_STAR] = ACTIONS(301), - [anon_sym_LBRACE_CARET] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(303), - [anon_sym_LBRACE_TILDE] = ACTIONS(305), - [anon_sym_TILDE] = ACTIONS(305), - [anon_sym_LBRACE_EQ] = ACTIONS(307), - [anon_sym_LBRACE_PLUS] = ACTIONS(309), - [anon_sym_LBRACE_DASH] = ACTIONS(311), - [anon_sym_BSLASH] = ACTIONS(313), - [sym_quotation_marks] = ACTIONS(315), - [sym_ellipsis] = ACTIONS(315), - [sym_em_dash] = ACTIONS(315), - [sym_en_dash] = ACTIONS(317), - [sym_backslash_escape] = ACTIONS(317), - [anon_sym_LT] = ACTIONS(319), - [sym_symbol] = ACTIONS(315), - [anon_sym_LBRACK_CARET] = ACTIONS(321), - [anon_sym_BANG_LBRACK] = ACTIONS(323), - [anon_sym_LBRACK] = ACTIONS(325), - [anon_sym_LPAREN] = ACTIONS(327), - [anon_sym_DOLLAR] = ACTIONS(329), - [anon_sym_TODO] = ACTIONS(331), - [anon_sym_WIP] = ACTIONS(331), - [anon_sym_NOTE] = ACTIONS(333), - [anon_sym_INFO] = ACTIONS(333), - [anon_sym_XXX] = ACTIONS(333), - [sym_fixme] = ACTIONS(315), - [sym__whitespace1] = ACTIONS(335), - [sym__newline] = ACTIONS(635), - [aux_sym__text_token1] = ACTIONS(339), - [sym__verbatim_begin] = ACTIONS(341), + [sym__newline] = STATE(18), + [aux_sym__text] = STATE(123), + [aux_sym__inline_repeat1] = STATE(18), + [anon_sym_LBRACE_] = ACTIONS(309), + [anon_sym__] = ACTIONS(311), + [anon_sym_LBRACE_STAR] = ACTIONS(313), + [anon_sym_STAR] = ACTIONS(315), + [anon_sym_LBRACE_CARET] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_LBRACE_TILDE] = ACTIONS(319), + [anon_sym_TILDE] = ACTIONS(319), + [anon_sym_LBRACE_EQ] = ACTIONS(321), + [anon_sym_LBRACE_PLUS] = ACTIONS(323), + [anon_sym_LBRACE_DASH] = ACTIONS(325), + [anon_sym_BSLASH] = ACTIONS(327), + [sym_quotation_marks] = ACTIONS(329), + [sym_ellipsis] = ACTIONS(329), + [sym_em_dash] = ACTIONS(329), + [sym_en_dash] = ACTIONS(331), + [sym_backslash_escape] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [sym_symbol] = ACTIONS(329), + [anon_sym_LBRACK_CARET] = ACTIONS(335), + [anon_sym_BANG_LBRACK] = ACTIONS(337), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(339), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_DOLLAR] = ACTIONS(345), + [anon_sym_TODO] = ACTIONS(347), + [anon_sym_WIP] = ACTIONS(347), + [anon_sym_NOTE] = ACTIONS(349), + [anon_sym_INFO] = ACTIONS(349), + [anon_sym_XXX] = ACTIONS(349), + [sym_fixme] = ACTIONS(329), + [sym__whitespace1] = ACTIONS(351), + [anon_sym_LF] = ACTIONS(353), + [aux_sym__text_token1] = ACTIONS(355), + [sym__verbatim_begin] = ACTIONS(357), }, - [57] = { - [sym__inline] = STATE(1045), - [sym__element] = STATE(110), - [sym_emphasis] = STATE(146), - [sym_emphasis_begin] = STATE(1144), - [sym_strong] = STATE(146), - [sym_strong_begin] = STATE(1145), - [sym_superscript] = STATE(146), - [sym_superscript_begin] = STATE(1146), - [sym_subscript] = STATE(146), - [sym_subscript_begin] = STATE(1147), - [sym_highlighted] = STATE(146), - [sym_highlighted_begin] = STATE(1148), - [sym_insert] = STATE(146), - [sym_insert_begin] = STATE(1149), - [sym_delete] = STATE(146), - [sym_delete_begin] = STATE(1150), - [sym_hard_line_break] = STATE(144), - [sym__smart_punctuation] = STATE(144), - [sym_autolink] = STATE(144), - [sym_footnote_reference] = STATE(146), - [sym_footnote_marker_begin] = STATE(1151), - [sym__image] = STATE(146), - [sym_full_reference_image] = STATE(146), - [sym_collapsed_reference_image] = STATE(146), - [sym_inline_image] = STATE(146), - [sym_image_description] = STATE(673), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(146), - [sym_full_reference_link] = STATE(146), - [sym_collapsed_reference_link] = STATE(146), - [sym_inline_link] = STATE(146), - [sym_link_text] = STATE(662), - [sym_span] = STATE(110), - [sym__bracketed_text_begin] = STATE(1208), - [sym__comment_with_spaces] = STATE(144), - [sym_raw_inline] = STATE(144), - [sym_math] = STATE(144), - [sym_verbatim] = STATE(144), - [sym__todo_highlights] = STATE(144), - [sym_todo] = STATE(144), - [sym_note] = STATE(144), - [sym__symbol_fallback] = STATE(144), - [aux_sym__text] = STATE(128), - [aux_sym__inline_repeat1] = STATE(110), - [anon_sym_LBRACE_] = ACTIONS(587), - [anon_sym__] = ACTIONS(589), - [anon_sym_LBRACE_STAR] = ACTIONS(591), - [anon_sym_STAR] = ACTIONS(593), - [anon_sym_LBRACE_CARET] = ACTIONS(595), - [anon_sym_CARET] = ACTIONS(595), - [anon_sym_LBRACE_TILDE] = ACTIONS(597), - [anon_sym_TILDE] = ACTIONS(597), - [anon_sym_LBRACE_EQ] = ACTIONS(599), - [anon_sym_LBRACE_PLUS] = ACTIONS(601), - [anon_sym_LBRACE_DASH] = ACTIONS(603), - [anon_sym_BSLASH] = ACTIONS(605), - [sym_quotation_marks] = ACTIONS(607), - [sym_ellipsis] = ACTIONS(607), - [sym_em_dash] = ACTIONS(607), - [sym_en_dash] = ACTIONS(609), - [sym_backslash_escape] = ACTIONS(609), - [anon_sym_LT] = ACTIONS(611), - [sym_symbol] = ACTIONS(607), - [anon_sym_LBRACK_CARET] = ACTIONS(613), - [anon_sym_BANG_LBRACK] = ACTIONS(615), - [anon_sym_LBRACK] = ACTIONS(617), - [anon_sym_LPAREN] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [anon_sym_TODO] = ACTIONS(623), - [anon_sym_WIP] = ACTIONS(623), - [anon_sym_NOTE] = ACTIONS(625), - [anon_sym_INFO] = ACTIONS(625), - [anon_sym_XXX] = ACTIONS(625), - [sym_fixme] = ACTIONS(607), - [sym__whitespace1] = ACTIONS(627), - [sym__newline] = ACTIONS(629), - [aux_sym__text_token1] = ACTIONS(631), - [sym__verbatim_begin] = ACTIONS(633), + [50] = { + [sym__inline] = STATE(989), + [sym__element] = STATE(20), + [sym_emphasis] = STATE(136), + [sym_emphasis_begin] = STATE(1164), + [sym_strong] = STATE(136), + [sym_strong_begin] = STATE(1165), + [sym_superscript] = STATE(136), + [sym_superscript_begin] = STATE(1166), + [sym_subscript] = STATE(136), + [sym_subscript_begin] = STATE(1167), + [sym_highlighted] = STATE(136), + [sym_highlighted_begin] = STATE(1168), + [sym_insert] = STATE(136), + [sym_insert_begin] = STATE(1169), + [sym_delete] = STATE(136), + [sym_delete_begin] = STATE(1170), + [sym_hard_line_break] = STATE(138), + [sym__smart_punctuation] = STATE(138), + [sym_autolink] = STATE(138), + [sym_footnote_reference] = STATE(136), + [sym_footnote_marker_begin] = STATE(1171), + [sym__image] = STATE(136), + [sym_full_reference_image] = STATE(136), + [sym_collapsed_reference_image] = STATE(136), + [sym_inline_image] = STATE(136), + [sym_image_description] = STATE(685), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(136), + [sym_full_reference_link] = STATE(136), + [sym_collapsed_reference_link] = STATE(136), + [sym_inline_link] = STATE(136), + [sym_link_text] = STATE(686), + [sym_span] = STATE(20), + [sym__bracketed_text_begin] = STATE(1219), + [sym__comment_with_spaces] = STATE(138), + [sym_raw_inline] = STATE(138), + [sym_math] = STATE(138), + [sym_verbatim] = STATE(138), + [sym__todo_highlights] = STATE(138), + [sym_todo] = STATE(138), + [sym_note] = STATE(138), + [sym__symbol_fallback] = STATE(138), + [sym__newline] = STATE(20), + [aux_sym__text] = STATE(126), + [aux_sym__inline_repeat1] = STATE(20), + [anon_sym_LBRACE_] = ACTIONS(359), + [anon_sym__] = ACTIONS(361), + [anon_sym_LBRACE_STAR] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(365), + [anon_sym_LBRACE_CARET] = ACTIONS(367), + [anon_sym_CARET] = ACTIONS(367), + [anon_sym_LBRACE_TILDE] = ACTIONS(369), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_LBRACE_EQ] = ACTIONS(371), + [anon_sym_LBRACE_PLUS] = ACTIONS(373), + [anon_sym_LBRACE_DASH] = ACTIONS(375), + [anon_sym_BSLASH] = ACTIONS(377), + [sym_quotation_marks] = ACTIONS(379), + [sym_ellipsis] = ACTIONS(379), + [sym_em_dash] = ACTIONS(379), + [sym_en_dash] = ACTIONS(381), + [sym_backslash_escape] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(383), + [sym_symbol] = ACTIONS(379), + [anon_sym_LBRACK_CARET] = ACTIONS(385), + [anon_sym_BANG_LBRACK] = ACTIONS(387), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(393), + [anon_sym_DOLLAR] = ACTIONS(395), + [anon_sym_TODO] = ACTIONS(397), + [anon_sym_WIP] = ACTIONS(397), + [anon_sym_NOTE] = ACTIONS(399), + [anon_sym_INFO] = ACTIONS(399), + [anon_sym_XXX] = ACTIONS(399), + [sym_fixme] = ACTIONS(379), + [sym__whitespace1] = ACTIONS(401), + [anon_sym_LF] = ACTIONS(403), + [aux_sym__text_token1] = ACTIONS(405), + [sym__verbatim_begin] = ACTIONS(407), }, - [58] = { - [sym__element] = STATE(115), - [sym_emphasis] = STATE(148), - [sym_emphasis_begin] = STATE(1184), - [sym_strong] = STATE(148), - [sym_strong_begin] = STATE(1185), - [sym_superscript] = STATE(148), - [sym_superscript_begin] = STATE(1186), - [sym_subscript] = STATE(148), - [sym_subscript_begin] = STATE(1187), - [sym_highlighted] = STATE(148), - [sym_highlighted_begin] = STATE(1188), - [sym_insert] = STATE(148), - [sym_insert_begin] = STATE(1189), - [sym_delete] = STATE(148), - [sym_delete_begin] = STATE(1190), + [51] = { + [sym__inline] = STATE(993), + [sym__element] = STATE(22), + [sym_emphasis] = STATE(140), + [sym_emphasis_begin] = STATE(1174), + [sym_strong] = STATE(140), + [sym_strong_begin] = STATE(1175), + [sym_superscript] = STATE(140), + [sym_superscript_begin] = STATE(1176), + [sym_subscript] = STATE(140), + [sym_subscript_begin] = STATE(1177), + [sym_highlighted] = STATE(140), + [sym_highlighted_begin] = STATE(1178), + [sym_insert] = STATE(140), + [sym_insert_begin] = STATE(1179), + [sym_delete] = STATE(140), + [sym_delete_begin] = STATE(1180), [sym_hard_line_break] = STATE(139), [sym__smart_punctuation] = STATE(139), [sym_autolink] = STATE(139), - [sym_footnote_reference] = STATE(148), - [sym_footnote_marker_begin] = STATE(1191), - [sym__image] = STATE(148), - [sym_full_reference_image] = STATE(148), - [sym_collapsed_reference_image] = STATE(148), - [sym_inline_image] = STATE(148), - [sym_image_description] = STATE(648), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(148), - [sym_full_reference_link] = STATE(148), - [sym_collapsed_reference_link] = STATE(148), - [sym_inline_link] = STATE(148), - [sym_link_text] = STATE(647), - [sym_span] = STATE(115), - [sym__bracketed_text_begin] = STATE(1212), + [sym_footnote_reference] = STATE(140), + [sym_footnote_marker_begin] = STATE(1181), + [sym__image] = STATE(140), + [sym_full_reference_image] = STATE(140), + [sym_collapsed_reference_image] = STATE(140), + [sym_inline_image] = STATE(140), + [sym_image_description] = STATE(655), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(140), + [sym_full_reference_link] = STATE(140), + [sym_collapsed_reference_link] = STATE(140), + [sym_inline_link] = STATE(140), + [sym_link_text] = STATE(656), + [sym_span] = STATE(22), + [sym__bracketed_text_begin] = STATE(1220), [sym__comment_with_spaces] = STATE(139), [sym_raw_inline] = STATE(139), [sym_math] = STATE(139), @@ -9815,399 +9460,490 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(139), [sym_note] = STATE(139), [sym__symbol_fallback] = STATE(139), - [aux_sym__text] = STATE(123), - [aux_sym__inline_repeat1] = STATE(115), - [anon_sym_LBRACE_] = ACTIONS(51), - [anon_sym__] = ACTIONS(53), - [anon_sym_LBRACE_STAR] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(57), - [anon_sym_LBRACE_CARET] = ACTIONS(59), - [anon_sym_CARET] = ACTIONS(59), - [anon_sym_LBRACE_TILDE] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(61), - [anon_sym_LBRACE_EQ] = ACTIONS(63), - [anon_sym_LBRACE_PLUS] = ACTIONS(65), - [anon_sym_LBRACE_DASH] = ACTIONS(67), - [anon_sym_BSLASH] = ACTIONS(69), - [sym_quotation_marks] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(71), - [sym_em_dash] = ACTIONS(71), - [sym_en_dash] = ACTIONS(73), - [sym_backslash_escape] = ACTIONS(73), - [anon_sym_LT] = ACTIONS(75), - [sym_symbol] = ACTIONS(71), - [anon_sym_LBRACK_CARET] = ACTIONS(77), - [anon_sym_BANG_LBRACK] = ACTIONS(79), - [anon_sym_LBRACK] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_TODO] = ACTIONS(87), - [anon_sym_WIP] = ACTIONS(87), - [anon_sym_NOTE] = ACTIONS(89), - [anon_sym_INFO] = ACTIONS(89), - [anon_sym_XXX] = ACTIONS(89), - [sym_fixme] = ACTIONS(71), - [sym__whitespace1] = ACTIONS(91), - [sym__newline] = ACTIONS(859), - [aux_sym__text_token1] = ACTIONS(95), - [sym__verbatim_begin] = ACTIONS(97), - [sym__square_bracket_span_end] = ACTIONS(343), + [sym__newline] = STATE(22), + [aux_sym__text] = STATE(127), + [aux_sym__inline_repeat1] = STATE(22), + [anon_sym_LBRACE_] = ACTIONS(409), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_STAR] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(415), + [anon_sym_LBRACE_CARET] = ACTIONS(417), + [anon_sym_CARET] = ACTIONS(417), + [anon_sym_LBRACE_TILDE] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(419), + [anon_sym_LBRACE_EQ] = ACTIONS(421), + [anon_sym_LBRACE_PLUS] = ACTIONS(423), + [anon_sym_LBRACE_DASH] = ACTIONS(425), + [anon_sym_BSLASH] = ACTIONS(427), + [sym_quotation_marks] = ACTIONS(429), + [sym_ellipsis] = ACTIONS(429), + [sym_em_dash] = ACTIONS(429), + [sym_en_dash] = ACTIONS(431), + [sym_backslash_escape] = ACTIONS(431), + [anon_sym_LT] = ACTIONS(433), + [sym_symbol] = ACTIONS(429), + [anon_sym_LBRACK_CARET] = ACTIONS(435), + [anon_sym_BANG_LBRACK] = ACTIONS(437), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(439), + [anon_sym_LBRACK] = ACTIONS(441), + [anon_sym_LPAREN] = ACTIONS(443), + [anon_sym_DOLLAR] = ACTIONS(445), + [anon_sym_TODO] = ACTIONS(447), + [anon_sym_WIP] = ACTIONS(447), + [anon_sym_NOTE] = ACTIONS(449), + [anon_sym_INFO] = ACTIONS(449), + [anon_sym_XXX] = ACTIONS(449), + [sym_fixme] = ACTIONS(429), + [sym__whitespace1] = ACTIONS(451), + [anon_sym_LF] = ACTIONS(453), + [aux_sym__text_token1] = ACTIONS(455), + [sym__verbatim_begin] = ACTIONS(457), }, - [59] = { - [sym__inline] = STATE(1036), - [sym__element] = STATE(30), - [sym_emphasis] = STATE(132), - [sym_emphasis_begin] = STATE(1164), - [sym_strong] = STATE(132), - [sym_strong_begin] = STATE(1165), - [sym_superscript] = STATE(132), - [sym_superscript_begin] = STATE(1166), - [sym_subscript] = STATE(132), - [sym_subscript_begin] = STATE(1167), - [sym_highlighted] = STATE(132), - [sym_highlighted_begin] = STATE(1168), - [sym_insert] = STATE(132), - [sym_insert_begin] = STATE(1169), - [sym_delete] = STATE(132), - [sym_delete_begin] = STATE(1170), - [sym_hard_line_break] = STATE(142), - [sym__smart_punctuation] = STATE(142), - [sym_autolink] = STATE(142), - [sym_footnote_reference] = STATE(132), - [sym_footnote_marker_begin] = STATE(1171), - [sym__image] = STATE(132), - [sym_full_reference_image] = STATE(132), - [sym_collapsed_reference_image] = STATE(132), - [sym_inline_image] = STATE(132), - [sym_image_description] = STATE(660), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(132), - [sym_full_reference_link] = STATE(132), - [sym_collapsed_reference_link] = STATE(132), - [sym_inline_link] = STATE(132), - [sym_link_text] = STATE(659), - [sym_span] = STATE(30), - [sym__bracketed_text_begin] = STATE(1210), - [sym__comment_with_spaces] = STATE(142), - [sym_raw_inline] = STATE(142), - [sym_math] = STATE(142), - [sym_verbatim] = STATE(142), - [sym__todo_highlights] = STATE(142), - [sym_todo] = STATE(142), - [sym_note] = STATE(142), - [sym__symbol_fallback] = STATE(142), - [aux_sym__text] = STATE(126), - [aux_sym__inline_repeat1] = STATE(30), - [anon_sym_LBRACE_] = ACTIONS(393), - [anon_sym__] = ACTIONS(395), - [anon_sym_LBRACE_STAR] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(399), - [anon_sym_LBRACE_CARET] = ACTIONS(401), - [anon_sym_CARET] = ACTIONS(401), - [anon_sym_LBRACE_TILDE] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_LBRACE_EQ] = ACTIONS(405), - [anon_sym_LBRACE_PLUS] = ACTIONS(407), - [anon_sym_LBRACE_DASH] = ACTIONS(409), - [anon_sym_BSLASH] = ACTIONS(411), - [sym_quotation_marks] = ACTIONS(413), - [sym_ellipsis] = ACTIONS(413), - [sym_em_dash] = ACTIONS(413), - [sym_en_dash] = ACTIONS(415), - [sym_backslash_escape] = ACTIONS(415), - [anon_sym_LT] = ACTIONS(417), - [sym_symbol] = ACTIONS(413), - [anon_sym_LBRACK_CARET] = ACTIONS(419), - [anon_sym_BANG_LBRACK] = ACTIONS(421), - [anon_sym_LBRACK] = ACTIONS(423), - [anon_sym_LPAREN] = ACTIONS(425), - [anon_sym_DOLLAR] = ACTIONS(427), - [anon_sym_TODO] = ACTIONS(429), - [anon_sym_WIP] = ACTIONS(429), - [anon_sym_NOTE] = ACTIONS(431), - [anon_sym_INFO] = ACTIONS(431), - [anon_sym_XXX] = ACTIONS(431), - [sym_fixme] = ACTIONS(413), - [sym__whitespace1] = ACTIONS(433), - [sym__newline] = ACTIONS(435), - [aux_sym__text_token1] = ACTIONS(437), - [sym__verbatim_begin] = ACTIONS(439), + [52] = { + [sym__inline] = STATE(887), + [sym__element] = STATE(24), + [sym_emphasis] = STATE(131), + [sym_emphasis_begin] = STATE(1184), + [sym_strong] = STATE(131), + [sym_strong_begin] = STATE(1185), + [sym_superscript] = STATE(131), + [sym_superscript_begin] = STATE(1186), + [sym_subscript] = STATE(131), + [sym_subscript_begin] = STATE(1187), + [sym_highlighted] = STATE(131), + [sym_highlighted_begin] = STATE(1188), + [sym_insert] = STATE(131), + [sym_insert_begin] = STATE(1189), + [sym_delete] = STATE(131), + [sym_delete_begin] = STATE(1190), + [sym_hard_line_break] = STATE(145), + [sym__smart_punctuation] = STATE(145), + [sym_autolink] = STATE(145), + [sym_footnote_reference] = STATE(131), + [sym_footnote_marker_begin] = STATE(1191), + [sym__image] = STATE(131), + [sym_full_reference_image] = STATE(131), + [sym_collapsed_reference_image] = STATE(131), + [sym_inline_image] = STATE(131), + [sym_image_description] = STATE(662), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(131), + [sym_full_reference_link] = STATE(131), + [sym_collapsed_reference_link] = STATE(131), + [sym_inline_link] = STATE(131), + [sym_link_text] = STATE(663), + [sym_span] = STATE(24), + [sym__bracketed_text_begin] = STATE(1221), + [sym__comment_with_spaces] = STATE(145), + [sym_raw_inline] = STATE(145), + [sym_math] = STATE(145), + [sym_verbatim] = STATE(145), + [sym__todo_highlights] = STATE(145), + [sym_todo] = STATE(145), + [sym_note] = STATE(145), + [sym__symbol_fallback] = STATE(145), + [sym__newline] = STATE(24), + [aux_sym__text] = STATE(129), + [aux_sym__inline_repeat1] = STATE(24), + [anon_sym_LBRACE_] = ACTIONS(459), + [anon_sym__] = ACTIONS(461), + [anon_sym_LBRACE_STAR] = ACTIONS(463), + [anon_sym_STAR] = ACTIONS(465), + [anon_sym_LBRACE_CARET] = ACTIONS(467), + [anon_sym_CARET] = ACTIONS(467), + [anon_sym_LBRACE_TILDE] = ACTIONS(469), + [anon_sym_TILDE] = ACTIONS(469), + [anon_sym_LBRACE_EQ] = ACTIONS(471), + [anon_sym_LBRACE_PLUS] = ACTIONS(473), + [anon_sym_LBRACE_DASH] = ACTIONS(475), + [anon_sym_BSLASH] = ACTIONS(477), + [sym_quotation_marks] = ACTIONS(479), + [sym_ellipsis] = ACTIONS(479), + [sym_em_dash] = ACTIONS(479), + [sym_en_dash] = ACTIONS(481), + [sym_backslash_escape] = ACTIONS(481), + [anon_sym_LT] = ACTIONS(483), + [sym_symbol] = ACTIONS(479), + [anon_sym_LBRACK_CARET] = ACTIONS(485), + [anon_sym_BANG_LBRACK] = ACTIONS(487), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(489), + [anon_sym_LBRACK] = ACTIONS(491), + [anon_sym_LPAREN] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(495), + [anon_sym_TODO] = ACTIONS(497), + [anon_sym_WIP] = ACTIONS(497), + [anon_sym_NOTE] = ACTIONS(499), + [anon_sym_INFO] = ACTIONS(499), + [anon_sym_XXX] = ACTIONS(499), + [sym_fixme] = ACTIONS(479), + [sym__whitespace1] = ACTIONS(501), + [anon_sym_LF] = ACTIONS(503), + [aux_sym__text_token1] = ACTIONS(505), + [sym__verbatim_begin] = ACTIONS(507), }, - [60] = { - [sym__inline_without_trailing_space] = STATE(863), - [sym__element] = STATE(550), - [sym_emphasis] = STATE(137), + [53] = { + [sym__inline_without_trailing_space] = STATE(893), + [sym__element] = STATE(543), + [sym_emphasis] = STATE(150), [sym_emphasis_begin] = STATE(1114), - [sym_strong] = STATE(137), + [sym_strong] = STATE(150), [sym_strong_begin] = STATE(1115), - [sym_superscript] = STATE(137), + [sym_superscript] = STATE(150), [sym_superscript_begin] = STATE(1116), - [sym_subscript] = STATE(137), + [sym_subscript] = STATE(150), [sym_subscript_begin] = STATE(1117), - [sym_highlighted] = STATE(137), + [sym_highlighted] = STATE(150), [sym_highlighted_begin] = STATE(1118), - [sym_insert] = STATE(137), + [sym_insert] = STATE(150), [sym_insert_begin] = STATE(1119), - [sym_delete] = STATE(137), + [sym_delete] = STATE(150), [sym_delete_begin] = STATE(1120), - [sym_hard_line_break] = STATE(131), - [sym__smart_punctuation] = STATE(131), - [sym_autolink] = STATE(131), - [sym_footnote_reference] = STATE(137), + [sym_hard_line_break] = STATE(133), + [sym__smart_punctuation] = STATE(133), + [sym_autolink] = STATE(133), + [sym_footnote_reference] = STATE(150), [sym_footnote_marker_begin] = STATE(1121), - [sym__image] = STATE(137), - [sym_full_reference_image] = STATE(137), - [sym_collapsed_reference_image] = STATE(137), - [sym_inline_image] = STATE(137), - [sym_image_description] = STATE(649), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(137), - [sym_full_reference_link] = STATE(137), - [sym_collapsed_reference_link] = STATE(137), - [sym_inline_link] = STATE(137), - [sym_link_text] = STATE(650), - [sym_span] = STATE(550), - [sym__bracketed_text_begin] = STATE(1205), - [sym__comment_with_spaces] = STATE(131), - [sym_raw_inline] = STATE(131), - [sym_math] = STATE(131), - [sym_verbatim] = STATE(131), - [sym__todo_highlights] = STATE(131), - [sym_todo] = STATE(131), - [sym_note] = STATE(131), - [sym__symbol_fallback] = STATE(131), - [aux_sym__text] = STATE(130), + [sym__image] = STATE(150), + [sym_full_reference_image] = STATE(150), + [sym_collapsed_reference_image] = STATE(150), + [sym_inline_image] = STATE(150), + [sym_image_description] = STATE(678), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(150), + [sym_full_reference_link] = STATE(150), + [sym_collapsed_reference_link] = STATE(150), + [sym_inline_link] = STATE(150), + [sym_link_text] = STATE(679), + [sym_span] = STATE(543), + [sym__bracketed_text_begin] = STATE(1214), + [sym__comment_with_spaces] = STATE(133), + [sym_raw_inline] = STATE(133), + [sym_math] = STATE(133), + [sym_verbatim] = STATE(133), + [sym__todo_highlights] = STATE(133), + [sym_todo] = STATE(133), + [sym_note] = STATE(133), + [sym__symbol_fallback] = STATE(133), + [sym__newline] = STATE(119), + [aux_sym__text] = STATE(122), [aux_sym__inline_repeat1] = STATE(119), - [anon_sym_LBRACE_] = ACTIONS(489), - [anon_sym__] = ACTIONS(491), - [anon_sym_LBRACE_STAR] = ACTIONS(493), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_LBRACE_CARET] = ACTIONS(497), - [anon_sym_CARET] = ACTIONS(497), - [anon_sym_LBRACE_TILDE] = ACTIONS(499), - [anon_sym_TILDE] = ACTIONS(499), - [anon_sym_LBRACE_EQ] = ACTIONS(501), - [anon_sym_LBRACE_PLUS] = ACTIONS(503), - [anon_sym_LBRACE_DASH] = ACTIONS(505), - [anon_sym_BSLASH] = ACTIONS(507), - [sym_quotation_marks] = ACTIONS(509), - [sym_ellipsis] = ACTIONS(509), - [sym_em_dash] = ACTIONS(509), - [sym_en_dash] = ACTIONS(511), - [sym_backslash_escape] = ACTIONS(511), - [anon_sym_LT] = ACTIONS(513), - [sym_symbol] = ACTIONS(509), - [anon_sym_LBRACK_CARET] = ACTIONS(515), - [anon_sym_BANG_LBRACK] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(519), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_DOLLAR] = ACTIONS(523), - [anon_sym_TODO] = ACTIONS(525), - [anon_sym_WIP] = ACTIONS(525), - [anon_sym_NOTE] = ACTIONS(527), - [anon_sym_INFO] = ACTIONS(527), - [anon_sym_XXX] = ACTIONS(527), - [sym_fixme] = ACTIONS(509), - [sym__whitespace1] = ACTIONS(529), - [sym__newline] = ACTIONS(531), - [aux_sym__text_token1] = ACTIONS(533), - [sym__verbatim_begin] = ACTIONS(535), + [anon_sym_LBRACE_] = ACTIONS(159), + [anon_sym__] = ACTIONS(161), + [anon_sym_LBRACE_STAR] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(165), + [anon_sym_LBRACE_CARET] = ACTIONS(167), + [anon_sym_CARET] = ACTIONS(167), + [anon_sym_LBRACE_TILDE] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(169), + [anon_sym_LBRACE_EQ] = ACTIONS(171), + [anon_sym_LBRACE_PLUS] = ACTIONS(173), + [anon_sym_LBRACE_DASH] = ACTIONS(175), + [anon_sym_BSLASH] = ACTIONS(177), + [sym_quotation_marks] = ACTIONS(179), + [sym_ellipsis] = ACTIONS(179), + [sym_em_dash] = ACTIONS(179), + [sym_en_dash] = ACTIONS(181), + [sym_backslash_escape] = ACTIONS(181), + [anon_sym_LT] = ACTIONS(183), + [sym_symbol] = ACTIONS(179), + [anon_sym_LBRACK_CARET] = ACTIONS(185), + [anon_sym_BANG_LBRACK] = ACTIONS(187), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(189), + [anon_sym_LBRACK] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(195), + [anon_sym_TODO] = ACTIONS(197), + [anon_sym_WIP] = ACTIONS(197), + [anon_sym_NOTE] = ACTIONS(199), + [anon_sym_INFO] = ACTIONS(199), + [anon_sym_XXX] = ACTIONS(199), + [sym_fixme] = ACTIONS(179), + [sym__whitespace1] = ACTIONS(201), + [anon_sym_LF] = ACTIONS(203), + [aux_sym__text_token1] = ACTIONS(205), + [sym__verbatim_begin] = ACTIONS(207), }, - [61] = { - [sym__inline] = STATE(907), - [sym__element] = STATE(64), - [sym_emphasis] = STATE(133), + [54] = { + [sym__inline_without_trailing_space] = STATE(894), + [sym__element] = STATE(570), + [sym_emphasis] = STATE(142), [sym_emphasis_begin] = STATE(1124), - [sym_strong] = STATE(133), + [sym_strong] = STATE(142), [sym_strong_begin] = STATE(1125), - [sym_superscript] = STATE(133), + [sym_superscript] = STATE(142), [sym_superscript_begin] = STATE(1126), - [sym_subscript] = STATE(133), + [sym_subscript] = STATE(142), [sym_subscript_begin] = STATE(1127), - [sym_highlighted] = STATE(133), + [sym_highlighted] = STATE(142), [sym_highlighted_begin] = STATE(1128), - [sym_insert] = STATE(133), + [sym_insert] = STATE(142), [sym_insert_begin] = STATE(1129), - [sym_delete] = STATE(133), + [sym_delete] = STATE(142), [sym_delete_begin] = STATE(1130), - [sym_hard_line_break] = STATE(140), - [sym__smart_punctuation] = STATE(140), - [sym_autolink] = STATE(140), - [sym_footnote_reference] = STATE(133), + [sym_hard_line_break] = STATE(137), + [sym__smart_punctuation] = STATE(137), + [sym_autolink] = STATE(137), + [sym_footnote_reference] = STATE(142), [sym_footnote_marker_begin] = STATE(1131), - [sym__image] = STATE(133), - [sym_full_reference_image] = STATE(133), - [sym_collapsed_reference_image] = STATE(133), - [sym_inline_image] = STATE(133), - [sym_image_description] = STATE(663), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(133), - [sym_full_reference_link] = STATE(133), - [sym_collapsed_reference_link] = STATE(133), - [sym_inline_link] = STATE(133), - [sym_link_text] = STATE(669), - [sym_span] = STATE(64), - [sym__bracketed_text_begin] = STATE(1206), - [sym__comment_with_spaces] = STATE(140), - [sym_raw_inline] = STATE(140), - [sym_math] = STATE(140), - [sym_verbatim] = STATE(140), - [sym__todo_highlights] = STATE(140), - [sym_todo] = STATE(140), - [sym_note] = STATE(140), - [sym__symbol_fallback] = STATE(140), - [aux_sym__text] = STATE(122), - [aux_sym__inline_repeat1] = STATE(64), - [anon_sym_LBRACE_] = ACTIONS(537), - [anon_sym__] = ACTIONS(539), - [anon_sym_LBRACE_STAR] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(543), - [anon_sym_LBRACE_CARET] = ACTIONS(545), - [anon_sym_CARET] = ACTIONS(545), - [anon_sym_LBRACE_TILDE] = ACTIONS(547), - [anon_sym_TILDE] = ACTIONS(547), - [anon_sym_LBRACE_EQ] = ACTIONS(549), - [anon_sym_LBRACE_PLUS] = ACTIONS(551), - [anon_sym_LBRACE_DASH] = ACTIONS(553), - [anon_sym_BSLASH] = ACTIONS(555), - [sym_quotation_marks] = ACTIONS(557), - [sym_ellipsis] = ACTIONS(557), - [sym_em_dash] = ACTIONS(557), - [sym_en_dash] = ACTIONS(559), - [sym_backslash_escape] = ACTIONS(559), - [anon_sym_LT] = ACTIONS(561), - [sym_symbol] = ACTIONS(557), - [anon_sym_LBRACK_CARET] = ACTIONS(563), - [anon_sym_BANG_LBRACK] = ACTIONS(565), - [anon_sym_LBRACK] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_DOLLAR] = ACTIONS(571), - [anon_sym_TODO] = ACTIONS(573), - [anon_sym_WIP] = ACTIONS(573), - [anon_sym_NOTE] = ACTIONS(575), - [anon_sym_INFO] = ACTIONS(575), - [anon_sym_XXX] = ACTIONS(575), - [sym_fixme] = ACTIONS(557), - [sym__whitespace1] = ACTIONS(577), - [sym__newline] = ACTIONS(579), - [aux_sym__text_token1] = ACTIONS(581), - [sym__verbatim_begin] = ACTIONS(583), + [sym__image] = STATE(142), + [sym_full_reference_image] = STATE(142), + [sym_collapsed_reference_image] = STATE(142), + [sym_inline_image] = STATE(142), + [sym_image_description] = STATE(687), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(142), + [sym_full_reference_link] = STATE(142), + [sym_collapsed_reference_link] = STATE(142), + [sym_inline_link] = STATE(142), + [sym_link_text] = STATE(654), + [sym_span] = STATE(570), + [sym__bracketed_text_begin] = STATE(1215), + [sym__comment_with_spaces] = STATE(137), + [sym_raw_inline] = STATE(137), + [sym_math] = STATE(137), + [sym_verbatim] = STATE(137), + [sym__todo_highlights] = STATE(137), + [sym_todo] = STATE(137), + [sym_note] = STATE(137), + [sym__symbol_fallback] = STATE(137), + [sym__newline] = STATE(118), + [aux_sym__text] = STATE(128), + [aux_sym__inline_repeat1] = STATE(118), + [anon_sym_LBRACE_] = ACTIONS(209), + [anon_sym__] = ACTIONS(211), + [anon_sym_LBRACE_STAR] = ACTIONS(213), + [anon_sym_STAR] = ACTIONS(215), + [anon_sym_LBRACE_CARET] = ACTIONS(217), + [anon_sym_CARET] = ACTIONS(217), + [anon_sym_LBRACE_TILDE] = ACTIONS(219), + [anon_sym_TILDE] = ACTIONS(219), + [anon_sym_LBRACE_EQ] = ACTIONS(221), + [anon_sym_LBRACE_PLUS] = ACTIONS(223), + [anon_sym_LBRACE_DASH] = ACTIONS(225), + [anon_sym_BSLASH] = ACTIONS(227), + [sym_quotation_marks] = ACTIONS(229), + [sym_ellipsis] = ACTIONS(229), + [sym_em_dash] = ACTIONS(229), + [sym_en_dash] = ACTIONS(231), + [sym_backslash_escape] = ACTIONS(231), + [anon_sym_LT] = ACTIONS(233), + [sym_symbol] = ACTIONS(229), + [anon_sym_LBRACK_CARET] = ACTIONS(235), + [anon_sym_BANG_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_LPAREN] = ACTIONS(243), + [anon_sym_DOLLAR] = ACTIONS(245), + [anon_sym_TODO] = ACTIONS(247), + [anon_sym_WIP] = ACTIONS(247), + [anon_sym_NOTE] = ACTIONS(249), + [anon_sym_INFO] = ACTIONS(249), + [anon_sym_XXX] = ACTIONS(249), + [sym_fixme] = ACTIONS(229), + [sym__whitespace1] = ACTIONS(251), + [anon_sym_LF] = ACTIONS(253), + [aux_sym__text_token1] = ACTIONS(255), + [sym__verbatim_begin] = ACTIONS(257), }, - [62] = { - [sym__inline] = STATE(1032), - [sym__element] = STATE(46), + [55] = { + [sym__inline] = STATE(895), + [sym__element] = STATE(15), + [sym_emphasis] = STATE(132), + [sym_emphasis_begin] = STATE(1134), + [sym_strong] = STATE(132), + [sym_strong_begin] = STATE(1135), + [sym_superscript] = STATE(132), + [sym_superscript_begin] = STATE(1136), + [sym_subscript] = STATE(132), + [sym_subscript_begin] = STATE(1137), + [sym_highlighted] = STATE(132), + [sym_highlighted_begin] = STATE(1138), + [sym_insert] = STATE(132), + [sym_insert_begin] = STATE(1139), + [sym_delete] = STATE(132), + [sym_delete_begin] = STATE(1140), + [sym_hard_line_break] = STATE(147), + [sym__smart_punctuation] = STATE(147), + [sym_autolink] = STATE(147), + [sym_footnote_reference] = STATE(132), + [sym_footnote_marker_begin] = STATE(1141), + [sym__image] = STATE(132), + [sym_full_reference_image] = STATE(132), + [sym_collapsed_reference_image] = STATE(132), + [sym_inline_image] = STATE(132), + [sym_image_description] = STATE(682), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(132), + [sym_full_reference_link] = STATE(132), + [sym_collapsed_reference_link] = STATE(132), + [sym_inline_link] = STATE(132), + [sym_link_text] = STATE(689), + [sym_span] = STATE(15), + [sym__bracketed_text_begin] = STATE(1216), + [sym__comment_with_spaces] = STATE(147), + [sym_raw_inline] = STATE(147), + [sym_math] = STATE(147), + [sym_verbatim] = STATE(147), + [sym__todo_highlights] = STATE(147), + [sym_todo] = STATE(147), + [sym_note] = STATE(147), + [sym__symbol_fallback] = STATE(147), + [sym__newline] = STATE(15), + [aux_sym__text] = STATE(121), + [aux_sym__inline_repeat1] = STATE(15), + [anon_sym_LBRACE_] = ACTIONS(105), + [anon_sym__] = ACTIONS(107), + [anon_sym_LBRACE_STAR] = ACTIONS(109), + [anon_sym_STAR] = ACTIONS(111), + [anon_sym_LBRACE_CARET] = ACTIONS(113), + [anon_sym_CARET] = ACTIONS(113), + [anon_sym_LBRACE_TILDE] = ACTIONS(115), + [anon_sym_TILDE] = ACTIONS(115), + [anon_sym_LBRACE_EQ] = ACTIONS(117), + [anon_sym_LBRACE_PLUS] = ACTIONS(119), + [anon_sym_LBRACE_DASH] = ACTIONS(121), + [anon_sym_BSLASH] = ACTIONS(123), + [sym_quotation_marks] = ACTIONS(125), + [sym_ellipsis] = ACTIONS(125), + [sym_em_dash] = ACTIONS(125), + [sym_en_dash] = ACTIONS(127), + [sym_backslash_escape] = ACTIONS(127), + [anon_sym_LT] = ACTIONS(129), + [sym_symbol] = ACTIONS(125), + [anon_sym_LBRACK_CARET] = ACTIONS(131), + [anon_sym_BANG_LBRACK] = ACTIONS(133), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(135), + [anon_sym_LBRACK] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_TODO] = ACTIONS(143), + [anon_sym_WIP] = ACTIONS(143), + [anon_sym_NOTE] = ACTIONS(145), + [anon_sym_INFO] = ACTIONS(145), + [anon_sym_XXX] = ACTIONS(145), + [sym_fixme] = ACTIONS(125), + [sym__whitespace1] = ACTIONS(147), + [anon_sym_LF] = ACTIONS(149), + [aux_sym__text_token1] = ACTIONS(151), + [sym__verbatim_begin] = ACTIONS(153), + }, + [56] = { + [sym__inline] = STATE(896), + [sym__element] = STATE(16), + [sym_emphasis] = STATE(143), + [sym_emphasis_begin] = STATE(1144), + [sym_strong] = STATE(143), + [sym_strong_begin] = STATE(1145), + [sym_superscript] = STATE(143), + [sym_superscript_begin] = STATE(1146), + [sym_subscript] = STATE(143), + [sym_subscript_begin] = STATE(1147), + [sym_highlighted] = STATE(143), + [sym_highlighted_begin] = STATE(1148), + [sym_insert] = STATE(143), + [sym_insert_begin] = STATE(1149), + [sym_delete] = STATE(143), + [sym_delete_begin] = STATE(1150), + [sym_hard_line_break] = STATE(141), + [sym__smart_punctuation] = STATE(141), + [sym_autolink] = STATE(141), + [sym_footnote_reference] = STATE(143), + [sym_footnote_marker_begin] = STATE(1151), + [sym__image] = STATE(143), + [sym_full_reference_image] = STATE(143), + [sym_collapsed_reference_image] = STATE(143), + [sym_inline_image] = STATE(143), + [sym_image_description] = STATE(660), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(143), + [sym_full_reference_link] = STATE(143), + [sym_collapsed_reference_link] = STATE(143), + [sym_inline_link] = STATE(143), + [sym_link_text] = STATE(661), + [sym_span] = STATE(16), + [sym__bracketed_text_begin] = STATE(1217), + [sym__comment_with_spaces] = STATE(141), + [sym_raw_inline] = STATE(141), + [sym_math] = STATE(141), + [sym_verbatim] = STATE(141), + [sym__todo_highlights] = STATE(141), + [sym_todo] = STATE(141), + [sym_note] = STATE(141), + [sym__symbol_fallback] = STATE(141), + [sym__newline] = STATE(16), + [aux_sym__text] = STATE(125), + [aux_sym__inline_repeat1] = STATE(16), + [anon_sym_LBRACE_] = ACTIONS(259), + [anon_sym__] = ACTIONS(261), + [anon_sym_LBRACE_STAR] = ACTIONS(263), + [anon_sym_STAR] = ACTIONS(265), + [anon_sym_LBRACE_CARET] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_LBRACE_TILDE] = ACTIONS(269), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_LBRACE_EQ] = ACTIONS(271), + [anon_sym_LBRACE_PLUS] = ACTIONS(273), + [anon_sym_LBRACE_DASH] = ACTIONS(275), + [anon_sym_BSLASH] = ACTIONS(277), + [sym_quotation_marks] = ACTIONS(279), + [sym_ellipsis] = ACTIONS(279), + [sym_em_dash] = ACTIONS(279), + [sym_en_dash] = ACTIONS(281), + [sym_backslash_escape] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(283), + [sym_symbol] = ACTIONS(279), + [anon_sym_LBRACK_CARET] = ACTIONS(285), + [anon_sym_BANG_LBRACK] = ACTIONS(287), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_DOLLAR] = ACTIONS(295), + [anon_sym_TODO] = ACTIONS(297), + [anon_sym_WIP] = ACTIONS(297), + [anon_sym_NOTE] = ACTIONS(299), + [anon_sym_INFO] = ACTIONS(299), + [anon_sym_XXX] = ACTIONS(299), + [sym_fixme] = ACTIONS(279), + [sym__whitespace1] = ACTIONS(301), + [anon_sym_LF] = ACTIONS(303), + [aux_sym__text_token1] = ACTIONS(305), + [sym__verbatim_begin] = ACTIONS(307), + }, + [57] = { + [sym__inline] = STATE(897), + [sym__element] = STATE(18), [sym_emphasis] = STATE(135), - [sym_emphasis_begin] = STATE(1174), + [sym_emphasis_begin] = STATE(1154), [sym_strong] = STATE(135), - [sym_strong_begin] = STATE(1175), + [sym_strong_begin] = STATE(1155), [sym_superscript] = STATE(135), - [sym_superscript_begin] = STATE(1176), + [sym_superscript_begin] = STATE(1156), [sym_subscript] = STATE(135), - [sym_subscript_begin] = STATE(1177), + [sym_subscript_begin] = STATE(1157), [sym_highlighted] = STATE(135), - [sym_highlighted_begin] = STATE(1178), + [sym_highlighted_begin] = STATE(1158), [sym_insert] = STATE(135), - [sym_insert_begin] = STATE(1179), + [sym_insert_begin] = STATE(1159), [sym_delete] = STATE(135), - [sym_delete_begin] = STATE(1180), - [sym_hard_line_break] = STATE(138), - [sym__smart_punctuation] = STATE(138), - [sym_autolink] = STATE(138), + [sym_delete_begin] = STATE(1160), + [sym_hard_line_break] = STATE(134), + [sym__smart_punctuation] = STATE(134), + [sym_autolink] = STATE(134), [sym_footnote_reference] = STATE(135), - [sym_footnote_marker_begin] = STATE(1181), + [sym_footnote_marker_begin] = STATE(1161), [sym__image] = STATE(135), [sym_full_reference_image] = STATE(135), [sym_collapsed_reference_image] = STATE(135), [sym_inline_image] = STATE(135), - [sym_image_description] = STATE(656), - [sym__image_description_begin] = STATE(1079), + [sym_image_description] = STATE(677), + [sym__image_description_begin] = STATE(958), [sym__link] = STATE(135), [sym_full_reference_link] = STATE(135), [sym_collapsed_reference_link] = STATE(135), [sym_inline_link] = STATE(135), - [sym_link_text] = STATE(654), - [sym_span] = STATE(46), - [sym__bracketed_text_begin] = STATE(1211), - [sym__comment_with_spaces] = STATE(138), - [sym_raw_inline] = STATE(138), - [sym_math] = STATE(138), - [sym_verbatim] = STATE(138), - [sym__todo_highlights] = STATE(138), - [sym_todo] = STATE(138), - [sym_note] = STATE(138), - [sym__symbol_fallback] = STATE(138), - [aux_sym__text] = STATE(121), - [aux_sym__inline_repeat1] = STATE(46), - [anon_sym_LBRACE_] = ACTIONS(345), - [anon_sym__] = ACTIONS(347), - [anon_sym_LBRACE_STAR] = ACTIONS(349), - [anon_sym_STAR] = ACTIONS(351), - [anon_sym_LBRACE_CARET] = ACTIONS(353), - [anon_sym_CARET] = ACTIONS(353), - [anon_sym_LBRACE_TILDE] = ACTIONS(355), - [anon_sym_TILDE] = ACTIONS(355), - [anon_sym_LBRACE_EQ] = ACTIONS(357), - [anon_sym_LBRACE_PLUS] = ACTIONS(359), - [anon_sym_LBRACE_DASH] = ACTIONS(361), - [anon_sym_BSLASH] = ACTIONS(363), - [sym_quotation_marks] = ACTIONS(365), - [sym_ellipsis] = ACTIONS(365), - [sym_em_dash] = ACTIONS(365), - [sym_en_dash] = ACTIONS(367), - [sym_backslash_escape] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(369), - [sym_symbol] = ACTIONS(365), - [anon_sym_LBRACK_CARET] = ACTIONS(371), - [anon_sym_BANG_LBRACK] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LPAREN] = ACTIONS(377), - [anon_sym_DOLLAR] = ACTIONS(379), - [anon_sym_TODO] = ACTIONS(381), - [anon_sym_WIP] = ACTIONS(381), - [anon_sym_NOTE] = ACTIONS(383), - [anon_sym_INFO] = ACTIONS(383), - [anon_sym_XXX] = ACTIONS(383), - [sym_fixme] = ACTIONS(365), - [sym__whitespace1] = ACTIONS(385), - [sym__newline] = ACTIONS(387), - [aux_sym__text_token1] = ACTIONS(389), - [sym__verbatim_begin] = ACTIONS(391), - }, - [63] = { - [sym__inline] = STATE(971), - [sym__element] = STATE(14), - [sym_emphasis] = STATE(136), - [sym_emphasis_begin] = STATE(1134), - [sym_strong] = STATE(136), - [sym_strong_begin] = STATE(1135), - [sym_superscript] = STATE(136), - [sym_superscript_begin] = STATE(1136), - [sym_subscript] = STATE(136), - [sym_subscript_begin] = STATE(1137), - [sym_highlighted] = STATE(136), - [sym_highlighted_begin] = STATE(1138), - [sym_insert] = STATE(136), - [sym_insert_begin] = STATE(1139), - [sym_delete] = STATE(136), - [sym_delete_begin] = STATE(1140), - [sym_hard_line_break] = STATE(134), - [sym__smart_punctuation] = STATE(134), - [sym_autolink] = STATE(134), - [sym_footnote_reference] = STATE(136), - [sym_footnote_marker_begin] = STATE(1141), - [sym__image] = STATE(136), - [sym_full_reference_image] = STATE(136), - [sym_collapsed_reference_image] = STATE(136), - [sym_inline_image] = STATE(136), - [sym_image_description] = STATE(670), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(136), - [sym_full_reference_link] = STATE(136), - [sym_collapsed_reference_link] = STATE(136), - [sym_inline_link] = STATE(136), - [sym_link_text] = STATE(671), - [sym_span] = STATE(14), - [sym__bracketed_text_begin] = STATE(1207), + [sym_link_text] = STATE(680), + [sym_span] = STATE(18), + [sym__bracketed_text_begin] = STATE(1218), [sym__comment_with_spaces] = STATE(134), [sym_raw_inline] = STATE(134), [sym_math] = STATE(134), @@ -10216,398 +9952,244 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(134), [sym_note] = STATE(134), [sym__symbol_fallback] = STATE(134), - [aux_sym__text] = STATE(129), - [aux_sym__inline_repeat1] = STATE(14), - [anon_sym_LBRACE_] = ACTIONS(295), - [anon_sym__] = ACTIONS(297), - [anon_sym_LBRACE_STAR] = ACTIONS(299), - [anon_sym_STAR] = ACTIONS(301), - [anon_sym_LBRACE_CARET] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(303), - [anon_sym_LBRACE_TILDE] = ACTIONS(305), - [anon_sym_TILDE] = ACTIONS(305), - [anon_sym_LBRACE_EQ] = ACTIONS(307), - [anon_sym_LBRACE_PLUS] = ACTIONS(309), - [anon_sym_LBRACE_DASH] = ACTIONS(311), - [anon_sym_BSLASH] = ACTIONS(313), - [sym_quotation_marks] = ACTIONS(315), - [sym_ellipsis] = ACTIONS(315), - [sym_em_dash] = ACTIONS(315), - [sym_en_dash] = ACTIONS(317), - [sym_backslash_escape] = ACTIONS(317), - [anon_sym_LT] = ACTIONS(319), - [sym_symbol] = ACTIONS(315), - [anon_sym_LBRACK_CARET] = ACTIONS(321), - [anon_sym_BANG_LBRACK] = ACTIONS(323), - [anon_sym_LBRACK] = ACTIONS(325), - [anon_sym_LPAREN] = ACTIONS(327), - [anon_sym_DOLLAR] = ACTIONS(329), - [anon_sym_TODO] = ACTIONS(331), - [anon_sym_WIP] = ACTIONS(331), - [anon_sym_NOTE] = ACTIONS(333), - [anon_sym_INFO] = ACTIONS(333), - [anon_sym_XXX] = ACTIONS(333), - [sym_fixme] = ACTIONS(315), - [sym__whitespace1] = ACTIONS(335), - [sym__newline] = ACTIONS(635), - [aux_sym__text_token1] = ACTIONS(339), - [sym__verbatim_begin] = ACTIONS(341), - }, - [64] = { - [sym__element] = STATE(13), - [sym_emphasis] = STATE(133), - [sym_emphasis_begin] = STATE(1124), - [sym_strong] = STATE(133), - [sym_strong_begin] = STATE(1125), - [sym_superscript] = STATE(133), - [sym_superscript_begin] = STATE(1126), - [sym_subscript] = STATE(133), - [sym_subscript_begin] = STATE(1127), - [sym_highlighted] = STATE(133), - [sym_highlighted_begin] = STATE(1128), - [sym_insert] = STATE(133), - [sym_insert_begin] = STATE(1129), - [sym_delete] = STATE(133), - [sym_delete_begin] = STATE(1130), - [sym_hard_line_break] = STATE(140), - [sym__smart_punctuation] = STATE(140), - [sym_autolink] = STATE(140), - [sym_footnote_reference] = STATE(133), - [sym_footnote_marker_begin] = STATE(1131), - [sym__image] = STATE(133), - [sym_full_reference_image] = STATE(133), - [sym_collapsed_reference_image] = STATE(133), - [sym_inline_image] = STATE(133), - [sym_image_description] = STATE(663), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(133), - [sym_full_reference_link] = STATE(133), - [sym_collapsed_reference_link] = STATE(133), - [sym_inline_link] = STATE(133), - [sym_link_text] = STATE(669), - [sym_span] = STATE(13), - [sym__bracketed_text_begin] = STATE(1206), - [sym__comment_with_spaces] = STATE(140), - [sym_raw_inline] = STATE(140), - [sym_math] = STATE(140), - [sym_verbatim] = STATE(140), - [sym__todo_highlights] = STATE(140), - [sym_todo] = STATE(140), - [sym_note] = STATE(140), - [sym__symbol_fallback] = STATE(140), - [aux_sym__text] = STATE(122), - [aux_sym__inline_repeat1] = STATE(13), - [anon_sym_LBRACE_] = ACTIONS(537), - [anon_sym__] = ACTIONS(539), - [anon_sym_LBRACE_STAR] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(543), - [anon_sym_LBRACE_CARET] = ACTIONS(545), - [anon_sym_CARET] = ACTIONS(545), - [anon_sym_LBRACE_TILDE] = ACTIONS(547), - [anon_sym_TILDE] = ACTIONS(547), - [anon_sym_LBRACE_EQ] = ACTIONS(549), - [anon_sym_LBRACE_PLUS] = ACTIONS(551), - [anon_sym_LBRACE_DASH] = ACTIONS(553), - [anon_sym_BSLASH] = ACTIONS(555), - [sym_quotation_marks] = ACTIONS(557), - [sym_ellipsis] = ACTIONS(557), - [sym_em_dash] = ACTIONS(557), - [sym_en_dash] = ACTIONS(559), - [sym_backslash_escape] = ACTIONS(559), - [anon_sym_LT] = ACTIONS(561), - [sym_symbol] = ACTIONS(557), - [anon_sym_LBRACK_CARET] = ACTIONS(563), - [anon_sym_BANG_LBRACK] = ACTIONS(565), - [anon_sym_LBRACK] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_DOLLAR] = ACTIONS(571), - [anon_sym_TODO] = ACTIONS(573), - [anon_sym_WIP] = ACTIONS(573), - [anon_sym_NOTE] = ACTIONS(575), - [anon_sym_INFO] = ACTIONS(575), - [anon_sym_XXX] = ACTIONS(575), - [sym_fixme] = ACTIONS(557), - [sym__whitespace1] = ACTIONS(577), - [sym__newline] = ACTIONS(861), - [aux_sym__text_token1] = ACTIONS(581), - [sym__verbatim_begin] = ACTIONS(583), - [sym_superscript_end] = ACTIONS(343), - }, - [65] = { - [sym__inline_without_trailing_space] = STATE(862), - [sym__element] = STATE(594), - [sym_emphasis] = STATE(149), - [sym_emphasis_begin] = STATE(1104), - [sym_strong] = STATE(149), - [sym_strong_begin] = STATE(1105), - [sym_superscript] = STATE(149), - [sym_superscript_begin] = STATE(1106), - [sym_subscript] = STATE(149), - [sym_subscript_begin] = STATE(1107), - [sym_highlighted] = STATE(149), - [sym_highlighted_begin] = STATE(1108), - [sym_insert] = STATE(149), - [sym_insert_begin] = STATE(1109), - [sym_delete] = STATE(149), - [sym_delete_begin] = STATE(1110), - [sym_hard_line_break] = STATE(143), - [sym__smart_punctuation] = STATE(143), - [sym_autolink] = STATE(143), - [sym_footnote_reference] = STATE(149), - [sym_footnote_marker_begin] = STATE(1111), - [sym__image] = STATE(149), - [sym_full_reference_image] = STATE(149), - [sym_collapsed_reference_image] = STATE(149), - [sym_inline_image] = STATE(149), - [sym_image_description] = STATE(658), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(149), - [sym_full_reference_link] = STATE(149), - [sym_collapsed_reference_link] = STATE(149), - [sym_inline_link] = STATE(149), - [sym_link_text] = STATE(672), - [sym_span] = STATE(594), - [sym__bracketed_text_begin] = STATE(1204), - [sym__comment_with_spaces] = STATE(143), - [sym_raw_inline] = STATE(143), - [sym_math] = STATE(143), - [sym_verbatim] = STATE(143), - [sym__todo_highlights] = STATE(143), - [sym_todo] = STATE(143), - [sym_note] = STATE(143), - [sym__symbol_fallback] = STATE(143), - [aux_sym__text] = STATE(127), - [aux_sym__inline_repeat1] = STATE(120), - [anon_sym_LBRACE_] = ACTIONS(441), - [anon_sym__] = ACTIONS(443), - [anon_sym_LBRACE_STAR] = ACTIONS(445), - [anon_sym_STAR] = ACTIONS(447), - [anon_sym_LBRACE_CARET] = ACTIONS(449), - [anon_sym_CARET] = ACTIONS(449), - [anon_sym_LBRACE_TILDE] = ACTIONS(451), - [anon_sym_TILDE] = ACTIONS(451), - [anon_sym_LBRACE_EQ] = ACTIONS(453), - [anon_sym_LBRACE_PLUS] = ACTIONS(455), - [anon_sym_LBRACE_DASH] = ACTIONS(457), - [anon_sym_BSLASH] = ACTIONS(459), - [sym_quotation_marks] = ACTIONS(461), - [sym_ellipsis] = ACTIONS(461), - [sym_em_dash] = ACTIONS(461), - [sym_en_dash] = ACTIONS(463), - [sym_backslash_escape] = ACTIONS(463), - [anon_sym_LT] = ACTIONS(465), - [sym_symbol] = ACTIONS(461), - [anon_sym_LBRACK_CARET] = ACTIONS(467), - [anon_sym_BANG_LBRACK] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(471), - [anon_sym_LPAREN] = ACTIONS(473), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_TODO] = ACTIONS(477), - [anon_sym_WIP] = ACTIONS(477), - [anon_sym_NOTE] = ACTIONS(479), - [anon_sym_INFO] = ACTIONS(479), - [anon_sym_XXX] = ACTIONS(479), - [sym_fixme] = ACTIONS(461), - [sym__whitespace1] = ACTIONS(481), - [sym__newline] = ACTIONS(483), - [aux_sym__text_token1] = ACTIONS(485), - [sym__verbatim_begin] = ACTIONS(487), - }, - [66] = { - [sym__inline] = STATE(1102), - [sym__element] = STATE(58), - [sym_emphasis] = STATE(148), - [sym_emphasis_begin] = STATE(1184), - [sym_strong] = STATE(148), - [sym_strong_begin] = STATE(1185), - [sym_superscript] = STATE(148), - [sym_superscript_begin] = STATE(1186), - [sym_subscript] = STATE(148), - [sym_subscript_begin] = STATE(1187), - [sym_highlighted] = STATE(148), - [sym_highlighted_begin] = STATE(1188), - [sym_insert] = STATE(148), - [sym_insert_begin] = STATE(1189), - [sym_delete] = STATE(148), - [sym_delete_begin] = STATE(1190), - [sym_hard_line_break] = STATE(139), - [sym__smart_punctuation] = STATE(139), - [sym_autolink] = STATE(139), - [sym_footnote_reference] = STATE(148), - [sym_footnote_marker_begin] = STATE(1191), - [sym__image] = STATE(148), - [sym_full_reference_image] = STATE(148), - [sym_collapsed_reference_image] = STATE(148), - [sym_inline_image] = STATE(148), - [sym_image_description] = STATE(648), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(148), - [sym_full_reference_link] = STATE(148), - [sym_collapsed_reference_link] = STATE(148), - [sym_inline_link] = STATE(148), - [sym_link_text] = STATE(647), - [sym_span] = STATE(58), - [sym__bracketed_text_begin] = STATE(1212), - [sym__comment_with_spaces] = STATE(139), - [sym_raw_inline] = STATE(139), - [sym_math] = STATE(139), - [sym_verbatim] = STATE(139), - [sym__todo_highlights] = STATE(139), - [sym_todo] = STATE(139), - [sym_note] = STATE(139), - [sym__symbol_fallback] = STATE(139), + [sym__newline] = STATE(18), [aux_sym__text] = STATE(123), - [aux_sym__inline_repeat1] = STATE(58), - [anon_sym_LBRACE_] = ACTIONS(51), - [anon_sym__] = ACTIONS(53), - [anon_sym_LBRACE_STAR] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(57), - [anon_sym_LBRACE_CARET] = ACTIONS(59), - [anon_sym_CARET] = ACTIONS(59), - [anon_sym_LBRACE_TILDE] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(61), - [anon_sym_LBRACE_EQ] = ACTIONS(63), - [anon_sym_LBRACE_PLUS] = ACTIONS(65), - [anon_sym_LBRACE_DASH] = ACTIONS(67), - [anon_sym_BSLASH] = ACTIONS(69), - [sym_quotation_marks] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(71), - [sym_em_dash] = ACTIONS(71), - [sym_en_dash] = ACTIONS(73), - [sym_backslash_escape] = ACTIONS(73), - [anon_sym_LT] = ACTIONS(75), - [sym_symbol] = ACTIONS(71), - [anon_sym_LBRACK_CARET] = ACTIONS(77), - [anon_sym_BANG_LBRACK] = ACTIONS(79), - [anon_sym_LBRACK] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_TODO] = ACTIONS(87), - [anon_sym_WIP] = ACTIONS(87), - [anon_sym_NOTE] = ACTIONS(89), - [anon_sym_INFO] = ACTIONS(89), - [anon_sym_XXX] = ACTIONS(89), - [sym_fixme] = ACTIONS(71), - [sym__whitespace1] = ACTIONS(91), - [sym__newline] = ACTIONS(93), - [aux_sym__text_token1] = ACTIONS(95), - [sym__verbatim_begin] = ACTIONS(97), + [aux_sym__inline_repeat1] = STATE(18), + [anon_sym_LBRACE_] = ACTIONS(309), + [anon_sym__] = ACTIONS(311), + [anon_sym_LBRACE_STAR] = ACTIONS(313), + [anon_sym_STAR] = ACTIONS(315), + [anon_sym_LBRACE_CARET] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_LBRACE_TILDE] = ACTIONS(319), + [anon_sym_TILDE] = ACTIONS(319), + [anon_sym_LBRACE_EQ] = ACTIONS(321), + [anon_sym_LBRACE_PLUS] = ACTIONS(323), + [anon_sym_LBRACE_DASH] = ACTIONS(325), + [anon_sym_BSLASH] = ACTIONS(327), + [sym_quotation_marks] = ACTIONS(329), + [sym_ellipsis] = ACTIONS(329), + [sym_em_dash] = ACTIONS(329), + [sym_en_dash] = ACTIONS(331), + [sym_backslash_escape] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [sym_symbol] = ACTIONS(329), + [anon_sym_LBRACK_CARET] = ACTIONS(335), + [anon_sym_BANG_LBRACK] = ACTIONS(337), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(339), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_DOLLAR] = ACTIONS(345), + [anon_sym_TODO] = ACTIONS(347), + [anon_sym_WIP] = ACTIONS(347), + [anon_sym_NOTE] = ACTIONS(349), + [anon_sym_INFO] = ACTIONS(349), + [anon_sym_XXX] = ACTIONS(349), + [sym_fixme] = ACTIONS(329), + [sym__whitespace1] = ACTIONS(351), + [anon_sym_LF] = ACTIONS(353), + [aux_sym__text_token1] = ACTIONS(355), + [sym__verbatim_begin] = ACTIONS(357), }, - [67] = { - [sym__inline] = STATE(910), - [sym__element] = STATE(110), - [sym_emphasis] = STATE(146), - [sym_emphasis_begin] = STATE(1144), - [sym_strong] = STATE(146), - [sym_strong_begin] = STATE(1145), - [sym_superscript] = STATE(146), - [sym_superscript_begin] = STATE(1146), - [sym_subscript] = STATE(146), - [sym_subscript_begin] = STATE(1147), - [sym_highlighted] = STATE(146), - [sym_highlighted_begin] = STATE(1148), - [sym_insert] = STATE(146), - [sym_insert_begin] = STATE(1149), - [sym_delete] = STATE(146), - [sym_delete_begin] = STATE(1150), - [sym_hard_line_break] = STATE(144), - [sym__smart_punctuation] = STATE(144), - [sym_autolink] = STATE(144), - [sym_footnote_reference] = STATE(146), - [sym_footnote_marker_begin] = STATE(1151), - [sym__image] = STATE(146), - [sym_full_reference_image] = STATE(146), - [sym_collapsed_reference_image] = STATE(146), - [sym_inline_image] = STATE(146), - [sym_image_description] = STATE(673), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(146), - [sym_full_reference_link] = STATE(146), - [sym_collapsed_reference_link] = STATE(146), - [sym_inline_link] = STATE(146), - [sym_link_text] = STATE(662), - [sym_span] = STATE(110), - [sym__bracketed_text_begin] = STATE(1208), - [sym__comment_with_spaces] = STATE(144), - [sym_raw_inline] = STATE(144), - [sym_math] = STATE(144), - [sym_verbatim] = STATE(144), - [sym__todo_highlights] = STATE(144), - [sym_todo] = STATE(144), - [sym_note] = STATE(144), - [sym__symbol_fallback] = STATE(144), - [aux_sym__text] = STATE(128), - [aux_sym__inline_repeat1] = STATE(110), - [anon_sym_LBRACE_] = ACTIONS(587), - [anon_sym__] = ACTIONS(589), - [anon_sym_LBRACE_STAR] = ACTIONS(591), - [anon_sym_STAR] = ACTIONS(593), - [anon_sym_LBRACE_CARET] = ACTIONS(595), - [anon_sym_CARET] = ACTIONS(595), - [anon_sym_LBRACE_TILDE] = ACTIONS(597), - [anon_sym_TILDE] = ACTIONS(597), - [anon_sym_LBRACE_EQ] = ACTIONS(599), - [anon_sym_LBRACE_PLUS] = ACTIONS(601), - [anon_sym_LBRACE_DASH] = ACTIONS(603), - [anon_sym_BSLASH] = ACTIONS(605), - [sym_quotation_marks] = ACTIONS(607), - [sym_ellipsis] = ACTIONS(607), - [sym_em_dash] = ACTIONS(607), - [sym_en_dash] = ACTIONS(609), - [sym_backslash_escape] = ACTIONS(609), - [anon_sym_LT] = ACTIONS(611), - [sym_symbol] = ACTIONS(607), - [anon_sym_LBRACK_CARET] = ACTIONS(613), - [anon_sym_BANG_LBRACK] = ACTIONS(615), - [anon_sym_LBRACK] = ACTIONS(617), - [anon_sym_LPAREN] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [anon_sym_TODO] = ACTIONS(623), - [anon_sym_WIP] = ACTIONS(623), - [anon_sym_NOTE] = ACTIONS(625), - [anon_sym_INFO] = ACTIONS(625), - [anon_sym_XXX] = ACTIONS(625), - [sym_fixme] = ACTIONS(607), - [sym__whitespace1] = ACTIONS(627), - [sym__newline] = ACTIONS(629), - [aux_sym__text_token1] = ACTIONS(631), - [sym__verbatim_begin] = ACTIONS(633), + [58] = { + [sym__inline] = STATE(900), + [sym__element] = STATE(20), + [sym_emphasis] = STATE(136), + [sym_emphasis_begin] = STATE(1164), + [sym_strong] = STATE(136), + [sym_strong_begin] = STATE(1165), + [sym_superscript] = STATE(136), + [sym_superscript_begin] = STATE(1166), + [sym_subscript] = STATE(136), + [sym_subscript_begin] = STATE(1167), + [sym_highlighted] = STATE(136), + [sym_highlighted_begin] = STATE(1168), + [sym_insert] = STATE(136), + [sym_insert_begin] = STATE(1169), + [sym_delete] = STATE(136), + [sym_delete_begin] = STATE(1170), + [sym_hard_line_break] = STATE(138), + [sym__smart_punctuation] = STATE(138), + [sym_autolink] = STATE(138), + [sym_footnote_reference] = STATE(136), + [sym_footnote_marker_begin] = STATE(1171), + [sym__image] = STATE(136), + [sym_full_reference_image] = STATE(136), + [sym_collapsed_reference_image] = STATE(136), + [sym_inline_image] = STATE(136), + [sym_image_description] = STATE(685), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(136), + [sym_full_reference_link] = STATE(136), + [sym_collapsed_reference_link] = STATE(136), + [sym_inline_link] = STATE(136), + [sym_link_text] = STATE(686), + [sym_span] = STATE(20), + [sym__bracketed_text_begin] = STATE(1219), + [sym__comment_with_spaces] = STATE(138), + [sym_raw_inline] = STATE(138), + [sym_math] = STATE(138), + [sym_verbatim] = STATE(138), + [sym__todo_highlights] = STATE(138), + [sym_todo] = STATE(138), + [sym_note] = STATE(138), + [sym__symbol_fallback] = STATE(138), + [sym__newline] = STATE(20), + [aux_sym__text] = STATE(126), + [aux_sym__inline_repeat1] = STATE(20), + [anon_sym_LBRACE_] = ACTIONS(359), + [anon_sym__] = ACTIONS(361), + [anon_sym_LBRACE_STAR] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(365), + [anon_sym_LBRACE_CARET] = ACTIONS(367), + [anon_sym_CARET] = ACTIONS(367), + [anon_sym_LBRACE_TILDE] = ACTIONS(369), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_LBRACE_EQ] = ACTIONS(371), + [anon_sym_LBRACE_PLUS] = ACTIONS(373), + [anon_sym_LBRACE_DASH] = ACTIONS(375), + [anon_sym_BSLASH] = ACTIONS(377), + [sym_quotation_marks] = ACTIONS(379), + [sym_ellipsis] = ACTIONS(379), + [sym_em_dash] = ACTIONS(379), + [sym_en_dash] = ACTIONS(381), + [sym_backslash_escape] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(383), + [sym_symbol] = ACTIONS(379), + [anon_sym_LBRACK_CARET] = ACTIONS(385), + [anon_sym_BANG_LBRACK] = ACTIONS(387), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(393), + [anon_sym_DOLLAR] = ACTIONS(395), + [anon_sym_TODO] = ACTIONS(397), + [anon_sym_WIP] = ACTIONS(397), + [anon_sym_NOTE] = ACTIONS(399), + [anon_sym_INFO] = ACTIONS(399), + [anon_sym_XXX] = ACTIONS(399), + [sym_fixme] = ACTIONS(379), + [sym__whitespace1] = ACTIONS(401), + [anon_sym_LF] = ACTIONS(403), + [aux_sym__text_token1] = ACTIONS(405), + [sym__verbatim_begin] = ACTIONS(407), }, - [68] = { - [sym__inline] = STATE(913), + [59] = { + [sym__inline] = STATE(919), [sym__element] = STATE(22), - [sym_emphasis] = STATE(147), - [sym_emphasis_begin] = STATE(1154), - [sym_strong] = STATE(147), - [sym_strong_begin] = STATE(1155), - [sym_superscript] = STATE(147), - [sym_superscript_begin] = STATE(1156), - [sym_subscript] = STATE(147), - [sym_subscript_begin] = STATE(1157), - [sym_highlighted] = STATE(147), - [sym_highlighted_begin] = STATE(1158), - [sym_insert] = STATE(147), - [sym_insert_begin] = STATE(1159), - [sym_delete] = STATE(147), - [sym_delete_begin] = STATE(1160), + [sym_emphasis] = STATE(140), + [sym_emphasis_begin] = STATE(1174), + [sym_strong] = STATE(140), + [sym_strong_begin] = STATE(1175), + [sym_superscript] = STATE(140), + [sym_superscript_begin] = STATE(1176), + [sym_subscript] = STATE(140), + [sym_subscript_begin] = STATE(1177), + [sym_highlighted] = STATE(140), + [sym_highlighted_begin] = STATE(1178), + [sym_insert] = STATE(140), + [sym_insert_begin] = STATE(1179), + [sym_delete] = STATE(140), + [sym_delete_begin] = STATE(1180), + [sym_hard_line_break] = STATE(139), + [sym__smart_punctuation] = STATE(139), + [sym_autolink] = STATE(139), + [sym_footnote_reference] = STATE(140), + [sym_footnote_marker_begin] = STATE(1181), + [sym__image] = STATE(140), + [sym_full_reference_image] = STATE(140), + [sym_collapsed_reference_image] = STATE(140), + [sym_inline_image] = STATE(140), + [sym_image_description] = STATE(655), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(140), + [sym_full_reference_link] = STATE(140), + [sym_collapsed_reference_link] = STATE(140), + [sym_inline_link] = STATE(140), + [sym_link_text] = STATE(656), + [sym_span] = STATE(22), + [sym__bracketed_text_begin] = STATE(1220), + [sym__comment_with_spaces] = STATE(139), + [sym_raw_inline] = STATE(139), + [sym_math] = STATE(139), + [sym_verbatim] = STATE(139), + [sym__todo_highlights] = STATE(139), + [sym_todo] = STATE(139), + [sym_note] = STATE(139), + [sym__symbol_fallback] = STATE(139), + [sym__newline] = STATE(22), + [aux_sym__text] = STATE(127), + [aux_sym__inline_repeat1] = STATE(22), + [anon_sym_LBRACE_] = ACTIONS(409), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_STAR] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(415), + [anon_sym_LBRACE_CARET] = ACTIONS(417), + [anon_sym_CARET] = ACTIONS(417), + [anon_sym_LBRACE_TILDE] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(419), + [anon_sym_LBRACE_EQ] = ACTIONS(421), + [anon_sym_LBRACE_PLUS] = ACTIONS(423), + [anon_sym_LBRACE_DASH] = ACTIONS(425), + [anon_sym_BSLASH] = ACTIONS(427), + [sym_quotation_marks] = ACTIONS(429), + [sym_ellipsis] = ACTIONS(429), + [sym_em_dash] = ACTIONS(429), + [sym_en_dash] = ACTIONS(431), + [sym_backslash_escape] = ACTIONS(431), + [anon_sym_LT] = ACTIONS(433), + [sym_symbol] = ACTIONS(429), + [anon_sym_LBRACK_CARET] = ACTIONS(435), + [anon_sym_BANG_LBRACK] = ACTIONS(437), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(439), + [anon_sym_LBRACK] = ACTIONS(441), + [anon_sym_LPAREN] = ACTIONS(443), + [anon_sym_DOLLAR] = ACTIONS(445), + [anon_sym_TODO] = ACTIONS(447), + [anon_sym_WIP] = ACTIONS(447), + [anon_sym_NOTE] = ACTIONS(449), + [anon_sym_INFO] = ACTIONS(449), + [anon_sym_XXX] = ACTIONS(449), + [sym_fixme] = ACTIONS(429), + [sym__whitespace1] = ACTIONS(451), + [anon_sym_LF] = ACTIONS(453), + [aux_sym__text_token1] = ACTIONS(455), + [sym__verbatim_begin] = ACTIONS(457), + }, + [60] = { + [sym__inline] = STATE(921), + [sym__element] = STATE(24), + [sym_emphasis] = STATE(131), + [sym_emphasis_begin] = STATE(1184), + [sym_strong] = STATE(131), + [sym_strong_begin] = STATE(1185), + [sym_superscript] = STATE(131), + [sym_superscript_begin] = STATE(1186), + [sym_subscript] = STATE(131), + [sym_subscript_begin] = STATE(1187), + [sym_highlighted] = STATE(131), + [sym_highlighted_begin] = STATE(1188), + [sym_insert] = STATE(131), + [sym_insert_begin] = STATE(1189), + [sym_delete] = STATE(131), + [sym_delete_begin] = STATE(1190), [sym_hard_line_break] = STATE(145), [sym__smart_punctuation] = STATE(145), [sym_autolink] = STATE(145), - [sym_footnote_reference] = STATE(147), - [sym_footnote_marker_begin] = STATE(1161), - [sym__image] = STATE(147), - [sym_full_reference_image] = STATE(147), - [sym_collapsed_reference_image] = STATE(147), - [sym_inline_image] = STATE(147), - [sym_image_description] = STATE(665), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(147), - [sym_full_reference_link] = STATE(147), - [sym_collapsed_reference_link] = STATE(147), - [sym_inline_link] = STATE(147), - [sym_link_text] = STATE(664), - [sym_span] = STATE(22), - [sym__bracketed_text_begin] = STATE(1209), + [sym_footnote_reference] = STATE(131), + [sym_footnote_marker_begin] = STATE(1191), + [sym__image] = STATE(131), + [sym_full_reference_image] = STATE(131), + [sym_collapsed_reference_image] = STATE(131), + [sym_inline_image] = STATE(131), + [sym_image_description] = STATE(662), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(131), + [sym_full_reference_link] = STATE(131), + [sym_collapsed_reference_link] = STATE(131), + [sym_inline_link] = STATE(131), + [sym_link_text] = STATE(663), + [sym_span] = STATE(24), + [sym__bracketed_text_begin] = STATE(1221), [sym__comment_with_spaces] = STATE(145), [sym_raw_inline] = STATE(145), [sym_math] = STATE(145), @@ -10616,237 +10198,490 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(145), [sym_note] = STATE(145), [sym__symbol_fallback] = STATE(145), - [aux_sym__text] = STATE(124), - [aux_sym__inline_repeat1] = STATE(22), - [anon_sym_LBRACE_] = ACTIONS(101), - [anon_sym__] = ACTIONS(103), - [anon_sym_LBRACE_STAR] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_LBRACE_CARET] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(109), - [anon_sym_LBRACE_TILDE] = ACTIONS(111), - [anon_sym_TILDE] = ACTIONS(111), - [anon_sym_LBRACE_EQ] = ACTIONS(113), - [anon_sym_LBRACE_PLUS] = ACTIONS(115), - [anon_sym_LBRACE_DASH] = ACTIONS(117), - [anon_sym_BSLASH] = ACTIONS(119), - [sym_quotation_marks] = ACTIONS(121), - [sym_ellipsis] = ACTIONS(121), - [sym_em_dash] = ACTIONS(121), - [sym_en_dash] = ACTIONS(123), - [sym_backslash_escape] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(125), - [sym_symbol] = ACTIONS(121), - [anon_sym_LBRACK_CARET] = ACTIONS(127), - [anon_sym_BANG_LBRACK] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_TODO] = ACTIONS(137), - [anon_sym_WIP] = ACTIONS(137), - [anon_sym_NOTE] = ACTIONS(139), - [anon_sym_INFO] = ACTIONS(139), - [anon_sym_XXX] = ACTIONS(139), - [sym_fixme] = ACTIONS(121), - [sym__whitespace1] = ACTIONS(141), - [sym__newline] = ACTIONS(143), - [aux_sym__text_token1] = ACTIONS(145), - [sym__verbatim_begin] = ACTIONS(147), + [sym__newline] = STATE(24), + [aux_sym__text] = STATE(129), + [aux_sym__inline_repeat1] = STATE(24), + [anon_sym_LBRACE_] = ACTIONS(459), + [anon_sym__] = ACTIONS(461), + [anon_sym_LBRACE_STAR] = ACTIONS(463), + [anon_sym_STAR] = ACTIONS(465), + [anon_sym_LBRACE_CARET] = ACTIONS(467), + [anon_sym_CARET] = ACTIONS(467), + [anon_sym_LBRACE_TILDE] = ACTIONS(469), + [anon_sym_TILDE] = ACTIONS(469), + [anon_sym_LBRACE_EQ] = ACTIONS(471), + [anon_sym_LBRACE_PLUS] = ACTIONS(473), + [anon_sym_LBRACE_DASH] = ACTIONS(475), + [anon_sym_BSLASH] = ACTIONS(477), + [sym_quotation_marks] = ACTIONS(479), + [sym_ellipsis] = ACTIONS(479), + [sym_em_dash] = ACTIONS(479), + [sym_en_dash] = ACTIONS(481), + [sym_backslash_escape] = ACTIONS(481), + [anon_sym_LT] = ACTIONS(483), + [sym_symbol] = ACTIONS(479), + [anon_sym_LBRACK_CARET] = ACTIONS(485), + [anon_sym_BANG_LBRACK] = ACTIONS(487), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(489), + [anon_sym_LBRACK] = ACTIONS(491), + [anon_sym_LPAREN] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(495), + [anon_sym_TODO] = ACTIONS(497), + [anon_sym_WIP] = ACTIONS(497), + [anon_sym_NOTE] = ACTIONS(499), + [anon_sym_INFO] = ACTIONS(499), + [anon_sym_XXX] = ACTIONS(499), + [sym_fixme] = ACTIONS(479), + [sym__whitespace1] = ACTIONS(501), + [anon_sym_LF] = ACTIONS(503), + [aux_sym__text_token1] = ACTIONS(505), + [sym__verbatim_begin] = ACTIONS(507), }, - [69] = { - [sym__inline] = STATE(915), - [sym__element] = STATE(30), + [61] = { + [sym__inline_without_trailing_space] = STATE(1057), + [sym__element] = STATE(543), + [sym_emphasis] = STATE(150), + [sym_emphasis_begin] = STATE(1114), + [sym_strong] = STATE(150), + [sym_strong_begin] = STATE(1115), + [sym_superscript] = STATE(150), + [sym_superscript_begin] = STATE(1116), + [sym_subscript] = STATE(150), + [sym_subscript_begin] = STATE(1117), + [sym_highlighted] = STATE(150), + [sym_highlighted_begin] = STATE(1118), + [sym_insert] = STATE(150), + [sym_insert_begin] = STATE(1119), + [sym_delete] = STATE(150), + [sym_delete_begin] = STATE(1120), + [sym_hard_line_break] = STATE(133), + [sym__smart_punctuation] = STATE(133), + [sym_autolink] = STATE(133), + [sym_footnote_reference] = STATE(150), + [sym_footnote_marker_begin] = STATE(1121), + [sym__image] = STATE(150), + [sym_full_reference_image] = STATE(150), + [sym_collapsed_reference_image] = STATE(150), + [sym_inline_image] = STATE(150), + [sym_image_description] = STATE(678), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(150), + [sym_full_reference_link] = STATE(150), + [sym_collapsed_reference_link] = STATE(150), + [sym_inline_link] = STATE(150), + [sym_link_text] = STATE(679), + [sym_span] = STATE(543), + [sym__bracketed_text_begin] = STATE(1214), + [sym__comment_with_spaces] = STATE(133), + [sym_raw_inline] = STATE(133), + [sym_math] = STATE(133), + [sym_verbatim] = STATE(133), + [sym__todo_highlights] = STATE(133), + [sym_todo] = STATE(133), + [sym_note] = STATE(133), + [sym__symbol_fallback] = STATE(133), + [sym__newline] = STATE(119), + [aux_sym__text] = STATE(122), + [aux_sym__inline_repeat1] = STATE(119), + [anon_sym_LBRACE_] = ACTIONS(159), + [anon_sym__] = ACTIONS(161), + [anon_sym_LBRACE_STAR] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(165), + [anon_sym_LBRACE_CARET] = ACTIONS(167), + [anon_sym_CARET] = ACTIONS(167), + [anon_sym_LBRACE_TILDE] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(169), + [anon_sym_LBRACE_EQ] = ACTIONS(171), + [anon_sym_LBRACE_PLUS] = ACTIONS(173), + [anon_sym_LBRACE_DASH] = ACTIONS(175), + [anon_sym_BSLASH] = ACTIONS(177), + [sym_quotation_marks] = ACTIONS(179), + [sym_ellipsis] = ACTIONS(179), + [sym_em_dash] = ACTIONS(179), + [sym_en_dash] = ACTIONS(181), + [sym_backslash_escape] = ACTIONS(181), + [anon_sym_LT] = ACTIONS(183), + [sym_symbol] = ACTIONS(179), + [anon_sym_LBRACK_CARET] = ACTIONS(185), + [anon_sym_BANG_LBRACK] = ACTIONS(187), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(189), + [anon_sym_LBRACK] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(195), + [anon_sym_TODO] = ACTIONS(197), + [anon_sym_WIP] = ACTIONS(197), + [anon_sym_NOTE] = ACTIONS(199), + [anon_sym_INFO] = ACTIONS(199), + [anon_sym_XXX] = ACTIONS(199), + [sym_fixme] = ACTIONS(179), + [sym__whitespace1] = ACTIONS(201), + [anon_sym_LF] = ACTIONS(203), + [aux_sym__text_token1] = ACTIONS(205), + [sym__verbatim_begin] = ACTIONS(207), + }, + [62] = { + [sym__inline_without_trailing_space] = STATE(1058), + [sym__element] = STATE(570), + [sym_emphasis] = STATE(142), + [sym_emphasis_begin] = STATE(1124), + [sym_strong] = STATE(142), + [sym_strong_begin] = STATE(1125), + [sym_superscript] = STATE(142), + [sym_superscript_begin] = STATE(1126), + [sym_subscript] = STATE(142), + [sym_subscript_begin] = STATE(1127), + [sym_highlighted] = STATE(142), + [sym_highlighted_begin] = STATE(1128), + [sym_insert] = STATE(142), + [sym_insert_begin] = STATE(1129), + [sym_delete] = STATE(142), + [sym_delete_begin] = STATE(1130), + [sym_hard_line_break] = STATE(137), + [sym__smart_punctuation] = STATE(137), + [sym_autolink] = STATE(137), + [sym_footnote_reference] = STATE(142), + [sym_footnote_marker_begin] = STATE(1131), + [sym__image] = STATE(142), + [sym_full_reference_image] = STATE(142), + [sym_collapsed_reference_image] = STATE(142), + [sym_inline_image] = STATE(142), + [sym_image_description] = STATE(687), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(142), + [sym_full_reference_link] = STATE(142), + [sym_collapsed_reference_link] = STATE(142), + [sym_inline_link] = STATE(142), + [sym_link_text] = STATE(654), + [sym_span] = STATE(570), + [sym__bracketed_text_begin] = STATE(1215), + [sym__comment_with_spaces] = STATE(137), + [sym_raw_inline] = STATE(137), + [sym_math] = STATE(137), + [sym_verbatim] = STATE(137), + [sym__todo_highlights] = STATE(137), + [sym_todo] = STATE(137), + [sym_note] = STATE(137), + [sym__symbol_fallback] = STATE(137), + [sym__newline] = STATE(118), + [aux_sym__text] = STATE(128), + [aux_sym__inline_repeat1] = STATE(118), + [anon_sym_LBRACE_] = ACTIONS(209), + [anon_sym__] = ACTIONS(211), + [anon_sym_LBRACE_STAR] = ACTIONS(213), + [anon_sym_STAR] = ACTIONS(215), + [anon_sym_LBRACE_CARET] = ACTIONS(217), + [anon_sym_CARET] = ACTIONS(217), + [anon_sym_LBRACE_TILDE] = ACTIONS(219), + [anon_sym_TILDE] = ACTIONS(219), + [anon_sym_LBRACE_EQ] = ACTIONS(221), + [anon_sym_LBRACE_PLUS] = ACTIONS(223), + [anon_sym_LBRACE_DASH] = ACTIONS(225), + [anon_sym_BSLASH] = ACTIONS(227), + [sym_quotation_marks] = ACTIONS(229), + [sym_ellipsis] = ACTIONS(229), + [sym_em_dash] = ACTIONS(229), + [sym_en_dash] = ACTIONS(231), + [sym_backslash_escape] = ACTIONS(231), + [anon_sym_LT] = ACTIONS(233), + [sym_symbol] = ACTIONS(229), + [anon_sym_LBRACK_CARET] = ACTIONS(235), + [anon_sym_BANG_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_LPAREN] = ACTIONS(243), + [anon_sym_DOLLAR] = ACTIONS(245), + [anon_sym_TODO] = ACTIONS(247), + [anon_sym_WIP] = ACTIONS(247), + [anon_sym_NOTE] = ACTIONS(249), + [anon_sym_INFO] = ACTIONS(249), + [anon_sym_XXX] = ACTIONS(249), + [sym_fixme] = ACTIONS(229), + [sym__whitespace1] = ACTIONS(251), + [anon_sym_LF] = ACTIONS(253), + [aux_sym__text_token1] = ACTIONS(255), + [sym__verbatim_begin] = ACTIONS(257), + }, + [63] = { + [sym__inline] = STATE(1059), + [sym__element] = STATE(15), [sym_emphasis] = STATE(132), - [sym_emphasis_begin] = STATE(1164), + [sym_emphasis_begin] = STATE(1134), [sym_strong] = STATE(132), - [sym_strong_begin] = STATE(1165), + [sym_strong_begin] = STATE(1135), [sym_superscript] = STATE(132), - [sym_superscript_begin] = STATE(1166), + [sym_superscript_begin] = STATE(1136), [sym_subscript] = STATE(132), - [sym_subscript_begin] = STATE(1167), + [sym_subscript_begin] = STATE(1137), [sym_highlighted] = STATE(132), - [sym_highlighted_begin] = STATE(1168), + [sym_highlighted_begin] = STATE(1138), [sym_insert] = STATE(132), - [sym_insert_begin] = STATE(1169), + [sym_insert_begin] = STATE(1139), [sym_delete] = STATE(132), - [sym_delete_begin] = STATE(1170), - [sym_hard_line_break] = STATE(142), - [sym__smart_punctuation] = STATE(142), - [sym_autolink] = STATE(142), + [sym_delete_begin] = STATE(1140), + [sym_hard_line_break] = STATE(147), + [sym__smart_punctuation] = STATE(147), + [sym_autolink] = STATE(147), [sym_footnote_reference] = STATE(132), - [sym_footnote_marker_begin] = STATE(1171), + [sym_footnote_marker_begin] = STATE(1141), [sym__image] = STATE(132), [sym_full_reference_image] = STATE(132), [sym_collapsed_reference_image] = STATE(132), [sym_inline_image] = STATE(132), - [sym_image_description] = STATE(660), - [sym__image_description_begin] = STATE(1079), + [sym_image_description] = STATE(682), + [sym__image_description_begin] = STATE(958), [sym__link] = STATE(132), [sym_full_reference_link] = STATE(132), [sym_collapsed_reference_link] = STATE(132), [sym_inline_link] = STATE(132), - [sym_link_text] = STATE(659), - [sym_span] = STATE(30), - [sym__bracketed_text_begin] = STATE(1210), - [sym__comment_with_spaces] = STATE(142), - [sym_raw_inline] = STATE(142), - [sym_math] = STATE(142), - [sym_verbatim] = STATE(142), - [sym__todo_highlights] = STATE(142), - [sym_todo] = STATE(142), - [sym_note] = STATE(142), - [sym__symbol_fallback] = STATE(142), - [aux_sym__text] = STATE(126), - [aux_sym__inline_repeat1] = STATE(30), - [anon_sym_LBRACE_] = ACTIONS(393), - [anon_sym__] = ACTIONS(395), - [anon_sym_LBRACE_STAR] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(399), - [anon_sym_LBRACE_CARET] = ACTIONS(401), - [anon_sym_CARET] = ACTIONS(401), - [anon_sym_LBRACE_TILDE] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_LBRACE_EQ] = ACTIONS(405), - [anon_sym_LBRACE_PLUS] = ACTIONS(407), - [anon_sym_LBRACE_DASH] = ACTIONS(409), - [anon_sym_BSLASH] = ACTIONS(411), - [sym_quotation_marks] = ACTIONS(413), - [sym_ellipsis] = ACTIONS(413), - [sym_em_dash] = ACTIONS(413), - [sym_en_dash] = ACTIONS(415), - [sym_backslash_escape] = ACTIONS(415), - [anon_sym_LT] = ACTIONS(417), - [sym_symbol] = ACTIONS(413), - [anon_sym_LBRACK_CARET] = ACTIONS(419), - [anon_sym_BANG_LBRACK] = ACTIONS(421), - [anon_sym_LBRACK] = ACTIONS(423), - [anon_sym_LPAREN] = ACTIONS(425), - [anon_sym_DOLLAR] = ACTIONS(427), - [anon_sym_TODO] = ACTIONS(429), - [anon_sym_WIP] = ACTIONS(429), - [anon_sym_NOTE] = ACTIONS(431), - [anon_sym_INFO] = ACTIONS(431), - [anon_sym_XXX] = ACTIONS(431), - [sym_fixme] = ACTIONS(413), - [sym__whitespace1] = ACTIONS(433), - [sym__newline] = ACTIONS(435), - [aux_sym__text_token1] = ACTIONS(437), - [sym__verbatim_begin] = ACTIONS(439), + [sym_link_text] = STATE(689), + [sym_span] = STATE(15), + [sym__bracketed_text_begin] = STATE(1216), + [sym__comment_with_spaces] = STATE(147), + [sym_raw_inline] = STATE(147), + [sym_math] = STATE(147), + [sym_verbatim] = STATE(147), + [sym__todo_highlights] = STATE(147), + [sym_todo] = STATE(147), + [sym_note] = STATE(147), + [sym__symbol_fallback] = STATE(147), + [sym__newline] = STATE(15), + [aux_sym__text] = STATE(121), + [aux_sym__inline_repeat1] = STATE(15), + [anon_sym_LBRACE_] = ACTIONS(105), + [anon_sym__] = ACTIONS(107), + [anon_sym_LBRACE_STAR] = ACTIONS(109), + [anon_sym_STAR] = ACTIONS(111), + [anon_sym_LBRACE_CARET] = ACTIONS(113), + [anon_sym_CARET] = ACTIONS(113), + [anon_sym_LBRACE_TILDE] = ACTIONS(115), + [anon_sym_TILDE] = ACTIONS(115), + [anon_sym_LBRACE_EQ] = ACTIONS(117), + [anon_sym_LBRACE_PLUS] = ACTIONS(119), + [anon_sym_LBRACE_DASH] = ACTIONS(121), + [anon_sym_BSLASH] = ACTIONS(123), + [sym_quotation_marks] = ACTIONS(125), + [sym_ellipsis] = ACTIONS(125), + [sym_em_dash] = ACTIONS(125), + [sym_en_dash] = ACTIONS(127), + [sym_backslash_escape] = ACTIONS(127), + [anon_sym_LT] = ACTIONS(129), + [sym_symbol] = ACTIONS(125), + [anon_sym_LBRACK_CARET] = ACTIONS(131), + [anon_sym_BANG_LBRACK] = ACTIONS(133), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(135), + [anon_sym_LBRACK] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_TODO] = ACTIONS(143), + [anon_sym_WIP] = ACTIONS(143), + [anon_sym_NOTE] = ACTIONS(145), + [anon_sym_INFO] = ACTIONS(145), + [anon_sym_XXX] = ACTIONS(145), + [sym_fixme] = ACTIONS(125), + [sym__whitespace1] = ACTIONS(147), + [anon_sym_LF] = ACTIONS(149), + [aux_sym__text_token1] = ACTIONS(151), + [sym__verbatim_begin] = ACTIONS(153), }, - [70] = { - [sym__inline] = STATE(1029), - [sym__element] = STATE(58), - [sym_emphasis] = STATE(148), - [sym_emphasis_begin] = STATE(1184), - [sym_strong] = STATE(148), - [sym_strong_begin] = STATE(1185), - [sym_superscript] = STATE(148), - [sym_superscript_begin] = STATE(1186), - [sym_subscript] = STATE(148), - [sym_subscript_begin] = STATE(1187), - [sym_highlighted] = STATE(148), - [sym_highlighted_begin] = STATE(1188), - [sym_insert] = STATE(148), - [sym_insert_begin] = STATE(1189), - [sym_delete] = STATE(148), - [sym_delete_begin] = STATE(1190), - [sym_hard_line_break] = STATE(139), - [sym__smart_punctuation] = STATE(139), - [sym_autolink] = STATE(139), - [sym_footnote_reference] = STATE(148), - [sym_footnote_marker_begin] = STATE(1191), - [sym__image] = STATE(148), - [sym_full_reference_image] = STATE(148), - [sym_collapsed_reference_image] = STATE(148), - [sym_inline_image] = STATE(148), - [sym_image_description] = STATE(648), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(148), - [sym_full_reference_link] = STATE(148), - [sym_collapsed_reference_link] = STATE(148), - [sym_inline_link] = STATE(148), - [sym_link_text] = STATE(647), - [sym_span] = STATE(58), - [sym__bracketed_text_begin] = STATE(1212), - [sym__comment_with_spaces] = STATE(139), - [sym_raw_inline] = STATE(139), - [sym_math] = STATE(139), - [sym_verbatim] = STATE(139), - [sym__todo_highlights] = STATE(139), - [sym_todo] = STATE(139), - [sym_note] = STATE(139), - [sym__symbol_fallback] = STATE(139), - [aux_sym__text] = STATE(123), - [aux_sym__inline_repeat1] = STATE(58), - [anon_sym_LBRACE_] = ACTIONS(51), - [anon_sym__] = ACTIONS(53), - [anon_sym_LBRACE_STAR] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(57), - [anon_sym_LBRACE_CARET] = ACTIONS(59), - [anon_sym_CARET] = ACTIONS(59), - [anon_sym_LBRACE_TILDE] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(61), - [anon_sym_LBRACE_EQ] = ACTIONS(63), - [anon_sym_LBRACE_PLUS] = ACTIONS(65), - [anon_sym_LBRACE_DASH] = ACTIONS(67), - [anon_sym_BSLASH] = ACTIONS(69), - [sym_quotation_marks] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(71), - [sym_em_dash] = ACTIONS(71), - [sym_en_dash] = ACTIONS(73), - [sym_backslash_escape] = ACTIONS(73), - [anon_sym_LT] = ACTIONS(75), - [sym_symbol] = ACTIONS(71), - [anon_sym_LBRACK_CARET] = ACTIONS(77), - [anon_sym_BANG_LBRACK] = ACTIONS(79), - [anon_sym_LBRACK] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_TODO] = ACTIONS(87), - [anon_sym_WIP] = ACTIONS(87), - [anon_sym_NOTE] = ACTIONS(89), - [anon_sym_INFO] = ACTIONS(89), - [anon_sym_XXX] = ACTIONS(89), - [sym_fixme] = ACTIONS(71), - [sym__whitespace1] = ACTIONS(91), - [sym__newline] = ACTIONS(93), - [aux_sym__text_token1] = ACTIONS(95), - [sym__verbatim_begin] = ACTIONS(97), + [64] = { + [sym__inline] = STATE(1061), + [sym__element] = STATE(16), + [sym_emphasis] = STATE(143), + [sym_emphasis_begin] = STATE(1144), + [sym_strong] = STATE(143), + [sym_strong_begin] = STATE(1145), + [sym_superscript] = STATE(143), + [sym_superscript_begin] = STATE(1146), + [sym_subscript] = STATE(143), + [sym_subscript_begin] = STATE(1147), + [sym_highlighted] = STATE(143), + [sym_highlighted_begin] = STATE(1148), + [sym_insert] = STATE(143), + [sym_insert_begin] = STATE(1149), + [sym_delete] = STATE(143), + [sym_delete_begin] = STATE(1150), + [sym_hard_line_break] = STATE(141), + [sym__smart_punctuation] = STATE(141), + [sym_autolink] = STATE(141), + [sym_footnote_reference] = STATE(143), + [sym_footnote_marker_begin] = STATE(1151), + [sym__image] = STATE(143), + [sym_full_reference_image] = STATE(143), + [sym_collapsed_reference_image] = STATE(143), + [sym_inline_image] = STATE(143), + [sym_image_description] = STATE(660), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(143), + [sym_full_reference_link] = STATE(143), + [sym_collapsed_reference_link] = STATE(143), + [sym_inline_link] = STATE(143), + [sym_link_text] = STATE(661), + [sym_span] = STATE(16), + [sym__bracketed_text_begin] = STATE(1217), + [sym__comment_with_spaces] = STATE(141), + [sym_raw_inline] = STATE(141), + [sym_math] = STATE(141), + [sym_verbatim] = STATE(141), + [sym__todo_highlights] = STATE(141), + [sym_todo] = STATE(141), + [sym_note] = STATE(141), + [sym__symbol_fallback] = STATE(141), + [sym__newline] = STATE(16), + [aux_sym__text] = STATE(125), + [aux_sym__inline_repeat1] = STATE(16), + [anon_sym_LBRACE_] = ACTIONS(259), + [anon_sym__] = ACTIONS(261), + [anon_sym_LBRACE_STAR] = ACTIONS(263), + [anon_sym_STAR] = ACTIONS(265), + [anon_sym_LBRACE_CARET] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_LBRACE_TILDE] = ACTIONS(269), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_LBRACE_EQ] = ACTIONS(271), + [anon_sym_LBRACE_PLUS] = ACTIONS(273), + [anon_sym_LBRACE_DASH] = ACTIONS(275), + [anon_sym_BSLASH] = ACTIONS(277), + [sym_quotation_marks] = ACTIONS(279), + [sym_ellipsis] = ACTIONS(279), + [sym_em_dash] = ACTIONS(279), + [sym_en_dash] = ACTIONS(281), + [sym_backslash_escape] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(283), + [sym_symbol] = ACTIONS(279), + [anon_sym_LBRACK_CARET] = ACTIONS(285), + [anon_sym_BANG_LBRACK] = ACTIONS(287), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_DOLLAR] = ACTIONS(295), + [anon_sym_TODO] = ACTIONS(297), + [anon_sym_WIP] = ACTIONS(297), + [anon_sym_NOTE] = ACTIONS(299), + [anon_sym_INFO] = ACTIONS(299), + [anon_sym_XXX] = ACTIONS(299), + [sym_fixme] = ACTIONS(279), + [sym__whitespace1] = ACTIONS(301), + [anon_sym_LF] = ACTIONS(303), + [aux_sym__text_token1] = ACTIONS(305), + [sym__verbatim_begin] = ACTIONS(307), }, - [71] = { - [sym__element] = STATE(71), + [65] = { + [sym__inline] = STATE(882), + [sym__element] = STATE(18), [sym_emphasis] = STATE(135), - [sym_emphasis_begin] = STATE(1174), + [sym_emphasis_begin] = STATE(1154), [sym_strong] = STATE(135), - [sym_strong_begin] = STATE(1175), + [sym_strong_begin] = STATE(1155), [sym_superscript] = STATE(135), - [sym_superscript_begin] = STATE(1176), + [sym_superscript_begin] = STATE(1156), [sym_subscript] = STATE(135), - [sym_subscript_begin] = STATE(1177), + [sym_subscript_begin] = STATE(1157), [sym_highlighted] = STATE(135), - [sym_highlighted_begin] = STATE(1178), + [sym_highlighted_begin] = STATE(1158), [sym_insert] = STATE(135), - [sym_insert_begin] = STATE(1179), + [sym_insert_begin] = STATE(1159), [sym_delete] = STATE(135), - [sym_delete_begin] = STATE(1180), - [sym_hard_line_break] = STATE(138), - [sym__smart_punctuation] = STATE(138), - [sym_autolink] = STATE(138), + [sym_delete_begin] = STATE(1160), + [sym_hard_line_break] = STATE(134), + [sym__smart_punctuation] = STATE(134), + [sym_autolink] = STATE(134), [sym_footnote_reference] = STATE(135), - [sym_footnote_marker_begin] = STATE(1181), + [sym_footnote_marker_begin] = STATE(1161), [sym__image] = STATE(135), [sym_full_reference_image] = STATE(135), [sym_collapsed_reference_image] = STATE(135), [sym_inline_image] = STATE(135), - [sym_image_description] = STATE(656), - [sym__image_description_begin] = STATE(1079), + [sym_image_description] = STATE(677), + [sym__image_description_begin] = STATE(958), [sym__link] = STATE(135), [sym_full_reference_link] = STATE(135), [sym_collapsed_reference_link] = STATE(135), [sym_inline_link] = STATE(135), - [sym_link_text] = STATE(654), - [sym_span] = STATE(71), - [sym__bracketed_text_begin] = STATE(1211), + [sym_link_text] = STATE(680), + [sym_span] = STATE(18), + [sym__bracketed_text_begin] = STATE(1218), + [sym__comment_with_spaces] = STATE(134), + [sym_raw_inline] = STATE(134), + [sym_math] = STATE(134), + [sym_verbatim] = STATE(134), + [sym__todo_highlights] = STATE(134), + [sym_todo] = STATE(134), + [sym_note] = STATE(134), + [sym__symbol_fallback] = STATE(134), + [sym__newline] = STATE(18), + [aux_sym__text] = STATE(123), + [aux_sym__inline_repeat1] = STATE(18), + [anon_sym_LBRACE_] = ACTIONS(309), + [anon_sym__] = ACTIONS(311), + [anon_sym_LBRACE_STAR] = ACTIONS(313), + [anon_sym_STAR] = ACTIONS(315), + [anon_sym_LBRACE_CARET] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_LBRACE_TILDE] = ACTIONS(319), + [anon_sym_TILDE] = ACTIONS(319), + [anon_sym_LBRACE_EQ] = ACTIONS(321), + [anon_sym_LBRACE_PLUS] = ACTIONS(323), + [anon_sym_LBRACE_DASH] = ACTIONS(325), + [anon_sym_BSLASH] = ACTIONS(327), + [sym_quotation_marks] = ACTIONS(329), + [sym_ellipsis] = ACTIONS(329), + [sym_em_dash] = ACTIONS(329), + [sym_en_dash] = ACTIONS(331), + [sym_backslash_escape] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [sym_symbol] = ACTIONS(329), + [anon_sym_LBRACK_CARET] = ACTIONS(335), + [anon_sym_BANG_LBRACK] = ACTIONS(337), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(339), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_DOLLAR] = ACTIONS(345), + [anon_sym_TODO] = ACTIONS(347), + [anon_sym_WIP] = ACTIONS(347), + [anon_sym_NOTE] = ACTIONS(349), + [anon_sym_INFO] = ACTIONS(349), + [anon_sym_XXX] = ACTIONS(349), + [sym_fixme] = ACTIONS(329), + [sym__whitespace1] = ACTIONS(351), + [anon_sym_LF] = ACTIONS(353), + [aux_sym__text_token1] = ACTIONS(355), + [sym__verbatim_begin] = ACTIONS(357), + }, + [66] = { + [sym__inline] = STATE(1071), + [sym__element] = STATE(20), + [sym_emphasis] = STATE(136), + [sym_emphasis_begin] = STATE(1164), + [sym_strong] = STATE(136), + [sym_strong_begin] = STATE(1165), + [sym_superscript] = STATE(136), + [sym_superscript_begin] = STATE(1166), + [sym_subscript] = STATE(136), + [sym_subscript_begin] = STATE(1167), + [sym_highlighted] = STATE(136), + [sym_highlighted_begin] = STATE(1168), + [sym_insert] = STATE(136), + [sym_insert_begin] = STATE(1169), + [sym_delete] = STATE(136), + [sym_delete_begin] = STATE(1170), + [sym_hard_line_break] = STATE(138), + [sym__smart_punctuation] = STATE(138), + [sym_autolink] = STATE(138), + [sym_footnote_reference] = STATE(136), + [sym_footnote_marker_begin] = STATE(1171), + [sym__image] = STATE(136), + [sym_full_reference_image] = STATE(136), + [sym_collapsed_reference_image] = STATE(136), + [sym_inline_image] = STATE(136), + [sym_image_description] = STATE(685), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(136), + [sym_full_reference_link] = STATE(136), + [sym_collapsed_reference_link] = STATE(136), + [sym_inline_link] = STATE(136), + [sym_link_text] = STATE(686), + [sym_span] = STATE(20), + [sym__bracketed_text_begin] = STATE(1219), [sym__comment_with_spaces] = STATE(138), [sym_raw_inline] = STATE(138), [sym_math] = STATE(138), @@ -10855,239 +10690,654 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(138), [sym_note] = STATE(138), [sym__symbol_fallback] = STATE(138), - [aux_sym__text] = STATE(121), - [aux_sym__inline_repeat1] = STATE(71), - [anon_sym_LBRACE_] = ACTIONS(863), - [anon_sym__] = ACTIONS(866), - [anon_sym_LBRACE_STAR] = ACTIONS(869), - [anon_sym_STAR] = ACTIONS(872), - [anon_sym_LBRACE_CARET] = ACTIONS(875), - [anon_sym_CARET] = ACTIONS(875), - [anon_sym_LBRACE_TILDE] = ACTIONS(878), - [anon_sym_TILDE] = ACTIONS(878), - [anon_sym_LBRACE_EQ] = ACTIONS(881), - [anon_sym_LBRACE_PLUS] = ACTIONS(884), - [anon_sym_LBRACE_DASH] = ACTIONS(887), - [anon_sym_BSLASH] = ACTIONS(890), - [sym_quotation_marks] = ACTIONS(893), - [sym_ellipsis] = ACTIONS(893), - [sym_em_dash] = ACTIONS(893), - [sym_en_dash] = ACTIONS(896), - [sym_backslash_escape] = ACTIONS(896), - [anon_sym_LT] = ACTIONS(899), - [sym_symbol] = ACTIONS(893), - [anon_sym_LBRACK_CARET] = ACTIONS(902), - [anon_sym_BANG_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(908), - [anon_sym_RBRACK] = ACTIONS(221), - [anon_sym_LPAREN] = ACTIONS(911), - [anon_sym_DOLLAR] = ACTIONS(914), - [anon_sym_TODO] = ACTIONS(917), - [anon_sym_WIP] = ACTIONS(917), - [anon_sym_NOTE] = ACTIONS(920), - [anon_sym_INFO] = ACTIONS(920), - [anon_sym_XXX] = ACTIONS(920), - [sym_fixme] = ACTIONS(893), - [sym__whitespace1] = ACTIONS(923), - [sym__newline] = ACTIONS(926), - [aux_sym__text_token1] = ACTIONS(929), - [sym__verbatim_begin] = ACTIONS(932), + [sym__newline] = STATE(20), + [aux_sym__text] = STATE(126), + [aux_sym__inline_repeat1] = STATE(20), + [anon_sym_LBRACE_] = ACTIONS(359), + [anon_sym__] = ACTIONS(361), + [anon_sym_LBRACE_STAR] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(365), + [anon_sym_LBRACE_CARET] = ACTIONS(367), + [anon_sym_CARET] = ACTIONS(367), + [anon_sym_LBRACE_TILDE] = ACTIONS(369), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_LBRACE_EQ] = ACTIONS(371), + [anon_sym_LBRACE_PLUS] = ACTIONS(373), + [anon_sym_LBRACE_DASH] = ACTIONS(375), + [anon_sym_BSLASH] = ACTIONS(377), + [sym_quotation_marks] = ACTIONS(379), + [sym_ellipsis] = ACTIONS(379), + [sym_em_dash] = ACTIONS(379), + [sym_en_dash] = ACTIONS(381), + [sym_backslash_escape] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(383), + [sym_symbol] = ACTIONS(379), + [anon_sym_LBRACK_CARET] = ACTIONS(385), + [anon_sym_BANG_LBRACK] = ACTIONS(387), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(393), + [anon_sym_DOLLAR] = ACTIONS(395), + [anon_sym_TODO] = ACTIONS(397), + [anon_sym_WIP] = ACTIONS(397), + [anon_sym_NOTE] = ACTIONS(399), + [anon_sym_INFO] = ACTIONS(399), + [anon_sym_XXX] = ACTIONS(399), + [sym_fixme] = ACTIONS(379), + [sym__whitespace1] = ACTIONS(401), + [anon_sym_LF] = ACTIONS(403), + [aux_sym__text_token1] = ACTIONS(405), + [sym__verbatim_begin] = ACTIONS(407), + }, + [67] = { + [sym__inline] = STATE(1072), + [sym__element] = STATE(22), + [sym_emphasis] = STATE(140), + [sym_emphasis_begin] = STATE(1174), + [sym_strong] = STATE(140), + [sym_strong_begin] = STATE(1175), + [sym_superscript] = STATE(140), + [sym_superscript_begin] = STATE(1176), + [sym_subscript] = STATE(140), + [sym_subscript_begin] = STATE(1177), + [sym_highlighted] = STATE(140), + [sym_highlighted_begin] = STATE(1178), + [sym_insert] = STATE(140), + [sym_insert_begin] = STATE(1179), + [sym_delete] = STATE(140), + [sym_delete_begin] = STATE(1180), + [sym_hard_line_break] = STATE(139), + [sym__smart_punctuation] = STATE(139), + [sym_autolink] = STATE(139), + [sym_footnote_reference] = STATE(140), + [sym_footnote_marker_begin] = STATE(1181), + [sym__image] = STATE(140), + [sym_full_reference_image] = STATE(140), + [sym_collapsed_reference_image] = STATE(140), + [sym_inline_image] = STATE(140), + [sym_image_description] = STATE(655), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(140), + [sym_full_reference_link] = STATE(140), + [sym_collapsed_reference_link] = STATE(140), + [sym_inline_link] = STATE(140), + [sym_link_text] = STATE(656), + [sym_span] = STATE(22), + [sym__bracketed_text_begin] = STATE(1220), + [sym__comment_with_spaces] = STATE(139), + [sym_raw_inline] = STATE(139), + [sym_math] = STATE(139), + [sym_verbatim] = STATE(139), + [sym__todo_highlights] = STATE(139), + [sym_todo] = STATE(139), + [sym_note] = STATE(139), + [sym__symbol_fallback] = STATE(139), + [sym__newline] = STATE(22), + [aux_sym__text] = STATE(127), + [aux_sym__inline_repeat1] = STATE(22), + [anon_sym_LBRACE_] = ACTIONS(409), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_STAR] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(415), + [anon_sym_LBRACE_CARET] = ACTIONS(417), + [anon_sym_CARET] = ACTIONS(417), + [anon_sym_LBRACE_TILDE] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(419), + [anon_sym_LBRACE_EQ] = ACTIONS(421), + [anon_sym_LBRACE_PLUS] = ACTIONS(423), + [anon_sym_LBRACE_DASH] = ACTIONS(425), + [anon_sym_BSLASH] = ACTIONS(427), + [sym_quotation_marks] = ACTIONS(429), + [sym_ellipsis] = ACTIONS(429), + [sym_em_dash] = ACTIONS(429), + [sym_en_dash] = ACTIONS(431), + [sym_backslash_escape] = ACTIONS(431), + [anon_sym_LT] = ACTIONS(433), + [sym_symbol] = ACTIONS(429), + [anon_sym_LBRACK_CARET] = ACTIONS(435), + [anon_sym_BANG_LBRACK] = ACTIONS(437), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(439), + [anon_sym_LBRACK] = ACTIONS(441), + [anon_sym_LPAREN] = ACTIONS(443), + [anon_sym_DOLLAR] = ACTIONS(445), + [anon_sym_TODO] = ACTIONS(447), + [anon_sym_WIP] = ACTIONS(447), + [anon_sym_NOTE] = ACTIONS(449), + [anon_sym_INFO] = ACTIONS(449), + [anon_sym_XXX] = ACTIONS(449), + [sym_fixme] = ACTIONS(429), + [sym__whitespace1] = ACTIONS(451), + [anon_sym_LF] = ACTIONS(453), + [aux_sym__text_token1] = ACTIONS(455), + [sym__verbatim_begin] = ACTIONS(457), + }, + [68] = { + [sym__inline] = STATE(1101), + [sym__element] = STATE(24), + [sym_emphasis] = STATE(131), + [sym_emphasis_begin] = STATE(1184), + [sym_strong] = STATE(131), + [sym_strong_begin] = STATE(1185), + [sym_superscript] = STATE(131), + [sym_superscript_begin] = STATE(1186), + [sym_subscript] = STATE(131), + [sym_subscript_begin] = STATE(1187), + [sym_highlighted] = STATE(131), + [sym_highlighted_begin] = STATE(1188), + [sym_insert] = STATE(131), + [sym_insert_begin] = STATE(1189), + [sym_delete] = STATE(131), + [sym_delete_begin] = STATE(1190), + [sym_hard_line_break] = STATE(145), + [sym__smart_punctuation] = STATE(145), + [sym_autolink] = STATE(145), + [sym_footnote_reference] = STATE(131), + [sym_footnote_marker_begin] = STATE(1191), + [sym__image] = STATE(131), + [sym_full_reference_image] = STATE(131), + [sym_collapsed_reference_image] = STATE(131), + [sym_inline_image] = STATE(131), + [sym_image_description] = STATE(662), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(131), + [sym_full_reference_link] = STATE(131), + [sym_collapsed_reference_link] = STATE(131), + [sym_inline_link] = STATE(131), + [sym_link_text] = STATE(663), + [sym_span] = STATE(24), + [sym__bracketed_text_begin] = STATE(1221), + [sym__comment_with_spaces] = STATE(145), + [sym_raw_inline] = STATE(145), + [sym_math] = STATE(145), + [sym_verbatim] = STATE(145), + [sym__todo_highlights] = STATE(145), + [sym_todo] = STATE(145), + [sym_note] = STATE(145), + [sym__symbol_fallback] = STATE(145), + [sym__newline] = STATE(24), + [aux_sym__text] = STATE(129), + [aux_sym__inline_repeat1] = STATE(24), + [anon_sym_LBRACE_] = ACTIONS(459), + [anon_sym__] = ACTIONS(461), + [anon_sym_LBRACE_STAR] = ACTIONS(463), + [anon_sym_STAR] = ACTIONS(465), + [anon_sym_LBRACE_CARET] = ACTIONS(467), + [anon_sym_CARET] = ACTIONS(467), + [anon_sym_LBRACE_TILDE] = ACTIONS(469), + [anon_sym_TILDE] = ACTIONS(469), + [anon_sym_LBRACE_EQ] = ACTIONS(471), + [anon_sym_LBRACE_PLUS] = ACTIONS(473), + [anon_sym_LBRACE_DASH] = ACTIONS(475), + [anon_sym_BSLASH] = ACTIONS(477), + [sym_quotation_marks] = ACTIONS(479), + [sym_ellipsis] = ACTIONS(479), + [sym_em_dash] = ACTIONS(479), + [sym_en_dash] = ACTIONS(481), + [sym_backslash_escape] = ACTIONS(481), + [anon_sym_LT] = ACTIONS(483), + [sym_symbol] = ACTIONS(479), + [anon_sym_LBRACK_CARET] = ACTIONS(485), + [anon_sym_BANG_LBRACK] = ACTIONS(487), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(489), + [anon_sym_LBRACK] = ACTIONS(491), + [anon_sym_LPAREN] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(495), + [anon_sym_TODO] = ACTIONS(497), + [anon_sym_WIP] = ACTIONS(497), + [anon_sym_NOTE] = ACTIONS(499), + [anon_sym_INFO] = ACTIONS(499), + [anon_sym_XXX] = ACTIONS(499), + [sym_fixme] = ACTIONS(479), + [sym__whitespace1] = ACTIONS(501), + [anon_sym_LF] = ACTIONS(503), + [aux_sym__text_token1] = ACTIONS(505), + [sym__verbatim_begin] = ACTIONS(507), }, - [72] = { - [sym__element] = STATE(72), - [sym_emphasis] = STATE(141), - [sym_emphasis_begin] = STATE(1095), - [sym_strong] = STATE(141), - [sym_strong_begin] = STATE(1094), - [sym_superscript] = STATE(141), - [sym_superscript_begin] = STATE(1093), - [sym_subscript] = STATE(141), - [sym_subscript_begin] = STATE(1092), - [sym_highlighted] = STATE(141), - [sym_highlighted_begin] = STATE(1084), - [sym_insert] = STATE(141), - [sym_insert_begin] = STATE(1082), - [sym_delete] = STATE(141), - [sym_delete_begin] = STATE(1081), - [sym_hard_line_break] = STATE(151), - [sym__smart_punctuation] = STATE(151), - [sym_autolink] = STATE(151), - [sym_footnote_reference] = STATE(141), - [sym_footnote_marker_begin] = STATE(1080), - [sym__image] = STATE(141), - [sym_full_reference_image] = STATE(141), - [sym_collapsed_reference_image] = STATE(141), - [sym_inline_image] = STATE(141), - [sym_image_description] = STATE(666), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(141), - [sym_full_reference_link] = STATE(141), - [sym_collapsed_reference_link] = STATE(141), - [sym_inline_link] = STATE(141), - [sym_link_text] = STATE(652), - [sym_span] = STATE(72), - [sym__bracketed_text_begin] = STATE(1078), - [sym__comment_with_spaces] = STATE(151), - [sym_raw_inline] = STATE(151), - [sym_math] = STATE(151), - [sym_verbatim] = STATE(151), - [sym__todo_highlights] = STATE(151), - [sym_todo] = STATE(151), - [sym_note] = STATE(151), - [sym__symbol_fallback] = STATE(151), - [aux_sym__text] = STATE(125), - [aux_sym__inline_repeat1] = STATE(72), - [ts_builtin_sym_end] = ACTIONS(221), - [anon_sym_LBRACE_] = ACTIONS(935), - [anon_sym__] = ACTIONS(938), - [anon_sym_LBRACE_STAR] = ACTIONS(941), - [anon_sym_STAR] = ACTIONS(944), - [anon_sym_LBRACE_CARET] = ACTIONS(947), - [anon_sym_CARET] = ACTIONS(947), - [anon_sym_LBRACE_TILDE] = ACTIONS(950), - [anon_sym_TILDE] = ACTIONS(950), - [anon_sym_LBRACE_EQ] = ACTIONS(953), - [anon_sym_LBRACE_PLUS] = ACTIONS(956), - [anon_sym_LBRACE_DASH] = ACTIONS(959), - [anon_sym_BSLASH] = ACTIONS(962), - [sym_quotation_marks] = ACTIONS(965), - [sym_ellipsis] = ACTIONS(965), - [sym_em_dash] = ACTIONS(965), - [sym_en_dash] = ACTIONS(968), - [sym_backslash_escape] = ACTIONS(968), - [anon_sym_LT] = ACTIONS(971), - [sym_symbol] = ACTIONS(965), - [anon_sym_LBRACK_CARET] = ACTIONS(974), - [anon_sym_BANG_LBRACK] = ACTIONS(977), - [anon_sym_LBRACK] = ACTIONS(980), - [anon_sym_LPAREN] = ACTIONS(983), - [anon_sym_DOLLAR] = ACTIONS(986), - [anon_sym_TODO] = ACTIONS(989), - [anon_sym_WIP] = ACTIONS(989), - [anon_sym_NOTE] = ACTIONS(992), - [anon_sym_INFO] = ACTIONS(992), - [anon_sym_XXX] = ACTIONS(992), - [sym_fixme] = ACTIONS(965), - [sym__whitespace1] = ACTIONS(995), - [sym__newline] = ACTIONS(998), - [aux_sym__text_token1] = ACTIONS(1001), - [sym__verbatim_begin] = ACTIONS(1004), + [69] = { + [sym__inline_without_trailing_space] = STATE(925), + [sym__element] = STATE(543), + [sym_emphasis] = STATE(150), + [sym_emphasis_begin] = STATE(1114), + [sym_strong] = STATE(150), + [sym_strong_begin] = STATE(1115), + [sym_superscript] = STATE(150), + [sym_superscript_begin] = STATE(1116), + [sym_subscript] = STATE(150), + [sym_subscript_begin] = STATE(1117), + [sym_highlighted] = STATE(150), + [sym_highlighted_begin] = STATE(1118), + [sym_insert] = STATE(150), + [sym_insert_begin] = STATE(1119), + [sym_delete] = STATE(150), + [sym_delete_begin] = STATE(1120), + [sym_hard_line_break] = STATE(133), + [sym__smart_punctuation] = STATE(133), + [sym_autolink] = STATE(133), + [sym_footnote_reference] = STATE(150), + [sym_footnote_marker_begin] = STATE(1121), + [sym__image] = STATE(150), + [sym_full_reference_image] = STATE(150), + [sym_collapsed_reference_image] = STATE(150), + [sym_inline_image] = STATE(150), + [sym_image_description] = STATE(678), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(150), + [sym_full_reference_link] = STATE(150), + [sym_collapsed_reference_link] = STATE(150), + [sym_inline_link] = STATE(150), + [sym_link_text] = STATE(679), + [sym_span] = STATE(543), + [sym__bracketed_text_begin] = STATE(1214), + [sym__comment_with_spaces] = STATE(133), + [sym_raw_inline] = STATE(133), + [sym_math] = STATE(133), + [sym_verbatim] = STATE(133), + [sym__todo_highlights] = STATE(133), + [sym_todo] = STATE(133), + [sym_note] = STATE(133), + [sym__symbol_fallback] = STATE(133), + [sym__newline] = STATE(119), + [aux_sym__text] = STATE(122), + [aux_sym__inline_repeat1] = STATE(119), + [anon_sym_LBRACE_] = ACTIONS(159), + [anon_sym__] = ACTIONS(161), + [anon_sym_LBRACE_STAR] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(165), + [anon_sym_LBRACE_CARET] = ACTIONS(167), + [anon_sym_CARET] = ACTIONS(167), + [anon_sym_LBRACE_TILDE] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(169), + [anon_sym_LBRACE_EQ] = ACTIONS(171), + [anon_sym_LBRACE_PLUS] = ACTIONS(173), + [anon_sym_LBRACE_DASH] = ACTIONS(175), + [anon_sym_BSLASH] = ACTIONS(177), + [sym_quotation_marks] = ACTIONS(179), + [sym_ellipsis] = ACTIONS(179), + [sym_em_dash] = ACTIONS(179), + [sym_en_dash] = ACTIONS(181), + [sym_backslash_escape] = ACTIONS(181), + [anon_sym_LT] = ACTIONS(183), + [sym_symbol] = ACTIONS(179), + [anon_sym_LBRACK_CARET] = ACTIONS(185), + [anon_sym_BANG_LBRACK] = ACTIONS(187), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(189), + [anon_sym_LBRACK] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(195), + [anon_sym_TODO] = ACTIONS(197), + [anon_sym_WIP] = ACTIONS(197), + [anon_sym_NOTE] = ACTIONS(199), + [anon_sym_INFO] = ACTIONS(199), + [anon_sym_XXX] = ACTIONS(199), + [sym_fixme] = ACTIONS(179), + [sym__whitespace1] = ACTIONS(201), + [anon_sym_LF] = ACTIONS(203), + [aux_sym__text_token1] = ACTIONS(205), + [sym__verbatim_begin] = ACTIONS(207), }, - [73] = { - [sym__inline] = STATE(1018), - [sym__element] = STATE(30), + [70] = { + [sym__inline_without_trailing_space] = STATE(926), + [sym__element] = STATE(570), + [sym_emphasis] = STATE(142), + [sym_emphasis_begin] = STATE(1124), + [sym_strong] = STATE(142), + [sym_strong_begin] = STATE(1125), + [sym_superscript] = STATE(142), + [sym_superscript_begin] = STATE(1126), + [sym_subscript] = STATE(142), + [sym_subscript_begin] = STATE(1127), + [sym_highlighted] = STATE(142), + [sym_highlighted_begin] = STATE(1128), + [sym_insert] = STATE(142), + [sym_insert_begin] = STATE(1129), + [sym_delete] = STATE(142), + [sym_delete_begin] = STATE(1130), + [sym_hard_line_break] = STATE(137), + [sym__smart_punctuation] = STATE(137), + [sym_autolink] = STATE(137), + [sym_footnote_reference] = STATE(142), + [sym_footnote_marker_begin] = STATE(1131), + [sym__image] = STATE(142), + [sym_full_reference_image] = STATE(142), + [sym_collapsed_reference_image] = STATE(142), + [sym_inline_image] = STATE(142), + [sym_image_description] = STATE(687), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(142), + [sym_full_reference_link] = STATE(142), + [sym_collapsed_reference_link] = STATE(142), + [sym_inline_link] = STATE(142), + [sym_link_text] = STATE(654), + [sym_span] = STATE(570), + [sym__bracketed_text_begin] = STATE(1215), + [sym__comment_with_spaces] = STATE(137), + [sym_raw_inline] = STATE(137), + [sym_math] = STATE(137), + [sym_verbatim] = STATE(137), + [sym__todo_highlights] = STATE(137), + [sym_todo] = STATE(137), + [sym_note] = STATE(137), + [sym__symbol_fallback] = STATE(137), + [sym__newline] = STATE(118), + [aux_sym__text] = STATE(128), + [aux_sym__inline_repeat1] = STATE(118), + [anon_sym_LBRACE_] = ACTIONS(209), + [anon_sym__] = ACTIONS(211), + [anon_sym_LBRACE_STAR] = ACTIONS(213), + [anon_sym_STAR] = ACTIONS(215), + [anon_sym_LBRACE_CARET] = ACTIONS(217), + [anon_sym_CARET] = ACTIONS(217), + [anon_sym_LBRACE_TILDE] = ACTIONS(219), + [anon_sym_TILDE] = ACTIONS(219), + [anon_sym_LBRACE_EQ] = ACTIONS(221), + [anon_sym_LBRACE_PLUS] = ACTIONS(223), + [anon_sym_LBRACE_DASH] = ACTIONS(225), + [anon_sym_BSLASH] = ACTIONS(227), + [sym_quotation_marks] = ACTIONS(229), + [sym_ellipsis] = ACTIONS(229), + [sym_em_dash] = ACTIONS(229), + [sym_en_dash] = ACTIONS(231), + [sym_backslash_escape] = ACTIONS(231), + [anon_sym_LT] = ACTIONS(233), + [sym_symbol] = ACTIONS(229), + [anon_sym_LBRACK_CARET] = ACTIONS(235), + [anon_sym_BANG_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_LPAREN] = ACTIONS(243), + [anon_sym_DOLLAR] = ACTIONS(245), + [anon_sym_TODO] = ACTIONS(247), + [anon_sym_WIP] = ACTIONS(247), + [anon_sym_NOTE] = ACTIONS(249), + [anon_sym_INFO] = ACTIONS(249), + [anon_sym_XXX] = ACTIONS(249), + [sym_fixme] = ACTIONS(229), + [sym__whitespace1] = ACTIONS(251), + [anon_sym_LF] = ACTIONS(253), + [aux_sym__text_token1] = ACTIONS(255), + [sym__verbatim_begin] = ACTIONS(257), + }, + [71] = { + [sym__inline] = STATE(927), + [sym__element] = STATE(15), [sym_emphasis] = STATE(132), - [sym_emphasis_begin] = STATE(1164), + [sym_emphasis_begin] = STATE(1134), [sym_strong] = STATE(132), - [sym_strong_begin] = STATE(1165), + [sym_strong_begin] = STATE(1135), [sym_superscript] = STATE(132), - [sym_superscript_begin] = STATE(1166), + [sym_superscript_begin] = STATE(1136), [sym_subscript] = STATE(132), - [sym_subscript_begin] = STATE(1167), + [sym_subscript_begin] = STATE(1137), [sym_highlighted] = STATE(132), - [sym_highlighted_begin] = STATE(1168), + [sym_highlighted_begin] = STATE(1138), [sym_insert] = STATE(132), - [sym_insert_begin] = STATE(1169), + [sym_insert_begin] = STATE(1139), [sym_delete] = STATE(132), - [sym_delete_begin] = STATE(1170), - [sym_hard_line_break] = STATE(142), - [sym__smart_punctuation] = STATE(142), - [sym_autolink] = STATE(142), + [sym_delete_begin] = STATE(1140), + [sym_hard_line_break] = STATE(147), + [sym__smart_punctuation] = STATE(147), + [sym_autolink] = STATE(147), [sym_footnote_reference] = STATE(132), - [sym_footnote_marker_begin] = STATE(1171), + [sym_footnote_marker_begin] = STATE(1141), [sym__image] = STATE(132), [sym_full_reference_image] = STATE(132), [sym_collapsed_reference_image] = STATE(132), [sym_inline_image] = STATE(132), - [sym_image_description] = STATE(660), - [sym__image_description_begin] = STATE(1079), + [sym_image_description] = STATE(682), + [sym__image_description_begin] = STATE(958), [sym__link] = STATE(132), [sym_full_reference_link] = STATE(132), [sym_collapsed_reference_link] = STATE(132), [sym_inline_link] = STATE(132), - [sym_link_text] = STATE(659), - [sym_span] = STATE(30), - [sym__bracketed_text_begin] = STATE(1210), - [sym__comment_with_spaces] = STATE(142), - [sym_raw_inline] = STATE(142), - [sym_math] = STATE(142), - [sym_verbatim] = STATE(142), - [sym__todo_highlights] = STATE(142), - [sym_todo] = STATE(142), - [sym_note] = STATE(142), - [sym__symbol_fallback] = STATE(142), - [aux_sym__text] = STATE(126), - [aux_sym__inline_repeat1] = STATE(30), - [anon_sym_LBRACE_] = ACTIONS(393), - [anon_sym__] = ACTIONS(395), - [anon_sym_LBRACE_STAR] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(399), - [anon_sym_LBRACE_CARET] = ACTIONS(401), - [anon_sym_CARET] = ACTIONS(401), - [anon_sym_LBRACE_TILDE] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_LBRACE_EQ] = ACTIONS(405), - [anon_sym_LBRACE_PLUS] = ACTIONS(407), - [anon_sym_LBRACE_DASH] = ACTIONS(409), - [anon_sym_BSLASH] = ACTIONS(411), - [sym_quotation_marks] = ACTIONS(413), - [sym_ellipsis] = ACTIONS(413), - [sym_em_dash] = ACTIONS(413), - [sym_en_dash] = ACTIONS(415), - [sym_backslash_escape] = ACTIONS(415), - [anon_sym_LT] = ACTIONS(417), - [sym_symbol] = ACTIONS(413), - [anon_sym_LBRACK_CARET] = ACTIONS(419), - [anon_sym_BANG_LBRACK] = ACTIONS(421), - [anon_sym_LBRACK] = ACTIONS(423), - [anon_sym_LPAREN] = ACTIONS(425), - [anon_sym_DOLLAR] = ACTIONS(427), - [anon_sym_TODO] = ACTIONS(429), - [anon_sym_WIP] = ACTIONS(429), - [anon_sym_NOTE] = ACTIONS(431), - [anon_sym_INFO] = ACTIONS(431), - [anon_sym_XXX] = ACTIONS(431), - [sym_fixme] = ACTIONS(413), - [sym__whitespace1] = ACTIONS(433), - [sym__newline] = ACTIONS(435), - [aux_sym__text_token1] = ACTIONS(437), - [sym__verbatim_begin] = ACTIONS(439), + [sym_link_text] = STATE(689), + [sym_span] = STATE(15), + [sym__bracketed_text_begin] = STATE(1216), + [sym__comment_with_spaces] = STATE(147), + [sym_raw_inline] = STATE(147), + [sym_math] = STATE(147), + [sym_verbatim] = STATE(147), + [sym__todo_highlights] = STATE(147), + [sym_todo] = STATE(147), + [sym_note] = STATE(147), + [sym__symbol_fallback] = STATE(147), + [sym__newline] = STATE(15), + [aux_sym__text] = STATE(121), + [aux_sym__inline_repeat1] = STATE(15), + [anon_sym_LBRACE_] = ACTIONS(105), + [anon_sym__] = ACTIONS(107), + [anon_sym_LBRACE_STAR] = ACTIONS(109), + [anon_sym_STAR] = ACTIONS(111), + [anon_sym_LBRACE_CARET] = ACTIONS(113), + [anon_sym_CARET] = ACTIONS(113), + [anon_sym_LBRACE_TILDE] = ACTIONS(115), + [anon_sym_TILDE] = ACTIONS(115), + [anon_sym_LBRACE_EQ] = ACTIONS(117), + [anon_sym_LBRACE_PLUS] = ACTIONS(119), + [anon_sym_LBRACE_DASH] = ACTIONS(121), + [anon_sym_BSLASH] = ACTIONS(123), + [sym_quotation_marks] = ACTIONS(125), + [sym_ellipsis] = ACTIONS(125), + [sym_em_dash] = ACTIONS(125), + [sym_en_dash] = ACTIONS(127), + [sym_backslash_escape] = ACTIONS(127), + [anon_sym_LT] = ACTIONS(129), + [sym_symbol] = ACTIONS(125), + [anon_sym_LBRACK_CARET] = ACTIONS(131), + [anon_sym_BANG_LBRACK] = ACTIONS(133), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(135), + [anon_sym_LBRACK] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_TODO] = ACTIONS(143), + [anon_sym_WIP] = ACTIONS(143), + [anon_sym_NOTE] = ACTIONS(145), + [anon_sym_INFO] = ACTIONS(145), + [anon_sym_XXX] = ACTIONS(145), + [sym_fixme] = ACTIONS(125), + [sym__whitespace1] = ACTIONS(147), + [anon_sym_LF] = ACTIONS(149), + [aux_sym__text_token1] = ACTIONS(151), + [sym__verbatim_begin] = ACTIONS(153), }, - [74] = { - [sym__inline] = STATE(948), - [sym__element] = STATE(46), + [72] = { + [sym__inline] = STATE(928), + [sym__element] = STATE(16), + [sym_emphasis] = STATE(143), + [sym_emphasis_begin] = STATE(1144), + [sym_strong] = STATE(143), + [sym_strong_begin] = STATE(1145), + [sym_superscript] = STATE(143), + [sym_superscript_begin] = STATE(1146), + [sym_subscript] = STATE(143), + [sym_subscript_begin] = STATE(1147), + [sym_highlighted] = STATE(143), + [sym_highlighted_begin] = STATE(1148), + [sym_insert] = STATE(143), + [sym_insert_begin] = STATE(1149), + [sym_delete] = STATE(143), + [sym_delete_begin] = STATE(1150), + [sym_hard_line_break] = STATE(141), + [sym__smart_punctuation] = STATE(141), + [sym_autolink] = STATE(141), + [sym_footnote_reference] = STATE(143), + [sym_footnote_marker_begin] = STATE(1151), + [sym__image] = STATE(143), + [sym_full_reference_image] = STATE(143), + [sym_collapsed_reference_image] = STATE(143), + [sym_inline_image] = STATE(143), + [sym_image_description] = STATE(660), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(143), + [sym_full_reference_link] = STATE(143), + [sym_collapsed_reference_link] = STATE(143), + [sym_inline_link] = STATE(143), + [sym_link_text] = STATE(661), + [sym_span] = STATE(16), + [sym__bracketed_text_begin] = STATE(1217), + [sym__comment_with_spaces] = STATE(141), + [sym_raw_inline] = STATE(141), + [sym_math] = STATE(141), + [sym_verbatim] = STATE(141), + [sym__todo_highlights] = STATE(141), + [sym_todo] = STATE(141), + [sym_note] = STATE(141), + [sym__symbol_fallback] = STATE(141), + [sym__newline] = STATE(16), + [aux_sym__text] = STATE(125), + [aux_sym__inline_repeat1] = STATE(16), + [anon_sym_LBRACE_] = ACTIONS(259), + [anon_sym__] = ACTIONS(261), + [anon_sym_LBRACE_STAR] = ACTIONS(263), + [anon_sym_STAR] = ACTIONS(265), + [anon_sym_LBRACE_CARET] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_LBRACE_TILDE] = ACTIONS(269), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_LBRACE_EQ] = ACTIONS(271), + [anon_sym_LBRACE_PLUS] = ACTIONS(273), + [anon_sym_LBRACE_DASH] = ACTIONS(275), + [anon_sym_BSLASH] = ACTIONS(277), + [sym_quotation_marks] = ACTIONS(279), + [sym_ellipsis] = ACTIONS(279), + [sym_em_dash] = ACTIONS(279), + [sym_en_dash] = ACTIONS(281), + [sym_backslash_escape] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(283), + [sym_symbol] = ACTIONS(279), + [anon_sym_LBRACK_CARET] = ACTIONS(285), + [anon_sym_BANG_LBRACK] = ACTIONS(287), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_DOLLAR] = ACTIONS(295), + [anon_sym_TODO] = ACTIONS(297), + [anon_sym_WIP] = ACTIONS(297), + [anon_sym_NOTE] = ACTIONS(299), + [anon_sym_INFO] = ACTIONS(299), + [anon_sym_XXX] = ACTIONS(299), + [sym_fixme] = ACTIONS(279), + [sym__whitespace1] = ACTIONS(301), + [anon_sym_LF] = ACTIONS(303), + [aux_sym__text_token1] = ACTIONS(305), + [sym__verbatim_begin] = ACTIONS(307), + }, + [73] = { + [sym__inline] = STATE(929), + [sym__element] = STATE(18), [sym_emphasis] = STATE(135), - [sym_emphasis_begin] = STATE(1174), + [sym_emphasis_begin] = STATE(1154), [sym_strong] = STATE(135), - [sym_strong_begin] = STATE(1175), + [sym_strong_begin] = STATE(1155), [sym_superscript] = STATE(135), - [sym_superscript_begin] = STATE(1176), + [sym_superscript_begin] = STATE(1156), [sym_subscript] = STATE(135), - [sym_subscript_begin] = STATE(1177), + [sym_subscript_begin] = STATE(1157), [sym_highlighted] = STATE(135), - [sym_highlighted_begin] = STATE(1178), + [sym_highlighted_begin] = STATE(1158), [sym_insert] = STATE(135), - [sym_insert_begin] = STATE(1179), + [sym_insert_begin] = STATE(1159), [sym_delete] = STATE(135), - [sym_delete_begin] = STATE(1180), - [sym_hard_line_break] = STATE(138), - [sym__smart_punctuation] = STATE(138), - [sym_autolink] = STATE(138), + [sym_delete_begin] = STATE(1160), + [sym_hard_line_break] = STATE(134), + [sym__smart_punctuation] = STATE(134), + [sym_autolink] = STATE(134), [sym_footnote_reference] = STATE(135), - [sym_footnote_marker_begin] = STATE(1181), + [sym_footnote_marker_begin] = STATE(1161), [sym__image] = STATE(135), [sym_full_reference_image] = STATE(135), [sym_collapsed_reference_image] = STATE(135), [sym_inline_image] = STATE(135), - [sym_image_description] = STATE(656), - [sym__image_description_begin] = STATE(1079), + [sym_image_description] = STATE(677), + [sym__image_description_begin] = STATE(958), [sym__link] = STATE(135), [sym_full_reference_link] = STATE(135), [sym_collapsed_reference_link] = STATE(135), [sym_inline_link] = STATE(135), - [sym_link_text] = STATE(654), - [sym_span] = STATE(46), - [sym__bracketed_text_begin] = STATE(1211), + [sym_link_text] = STATE(680), + [sym_span] = STATE(18), + [sym__bracketed_text_begin] = STATE(1218), + [sym__comment_with_spaces] = STATE(134), + [sym_raw_inline] = STATE(134), + [sym_math] = STATE(134), + [sym_verbatim] = STATE(134), + [sym__todo_highlights] = STATE(134), + [sym_todo] = STATE(134), + [sym_note] = STATE(134), + [sym__symbol_fallback] = STATE(134), + [sym__newline] = STATE(18), + [aux_sym__text] = STATE(123), + [aux_sym__inline_repeat1] = STATE(18), + [anon_sym_LBRACE_] = ACTIONS(309), + [anon_sym__] = ACTIONS(311), + [anon_sym_LBRACE_STAR] = ACTIONS(313), + [anon_sym_STAR] = ACTIONS(315), + [anon_sym_LBRACE_CARET] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_LBRACE_TILDE] = ACTIONS(319), + [anon_sym_TILDE] = ACTIONS(319), + [anon_sym_LBRACE_EQ] = ACTIONS(321), + [anon_sym_LBRACE_PLUS] = ACTIONS(323), + [anon_sym_LBRACE_DASH] = ACTIONS(325), + [anon_sym_BSLASH] = ACTIONS(327), + [sym_quotation_marks] = ACTIONS(329), + [sym_ellipsis] = ACTIONS(329), + [sym_em_dash] = ACTIONS(329), + [sym_en_dash] = ACTIONS(331), + [sym_backslash_escape] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [sym_symbol] = ACTIONS(329), + [anon_sym_LBRACK_CARET] = ACTIONS(335), + [anon_sym_BANG_LBRACK] = ACTIONS(337), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(339), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_DOLLAR] = ACTIONS(345), + [anon_sym_TODO] = ACTIONS(347), + [anon_sym_WIP] = ACTIONS(347), + [anon_sym_NOTE] = ACTIONS(349), + [anon_sym_INFO] = ACTIONS(349), + [anon_sym_XXX] = ACTIONS(349), + [sym_fixme] = ACTIONS(329), + [sym__whitespace1] = ACTIONS(351), + [anon_sym_LF] = ACTIONS(353), + [aux_sym__text_token1] = ACTIONS(355), + [sym__verbatim_begin] = ACTIONS(357), + }, + [74] = { + [sym__inline] = STATE(930), + [sym__element] = STATE(20), + [sym_emphasis] = STATE(136), + [sym_emphasis_begin] = STATE(1164), + [sym_strong] = STATE(136), + [sym_strong_begin] = STATE(1165), + [sym_superscript] = STATE(136), + [sym_superscript_begin] = STATE(1166), + [sym_subscript] = STATE(136), + [sym_subscript_begin] = STATE(1167), + [sym_highlighted] = STATE(136), + [sym_highlighted_begin] = STATE(1168), + [sym_insert] = STATE(136), + [sym_insert_begin] = STATE(1169), + [sym_delete] = STATE(136), + [sym_delete_begin] = STATE(1170), + [sym_hard_line_break] = STATE(138), + [sym__smart_punctuation] = STATE(138), + [sym_autolink] = STATE(138), + [sym_footnote_reference] = STATE(136), + [sym_footnote_marker_begin] = STATE(1171), + [sym__image] = STATE(136), + [sym_full_reference_image] = STATE(136), + [sym_collapsed_reference_image] = STATE(136), + [sym_inline_image] = STATE(136), + [sym_image_description] = STATE(685), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(136), + [sym_full_reference_link] = STATE(136), + [sym_collapsed_reference_link] = STATE(136), + [sym_inline_link] = STATE(136), + [sym_link_text] = STATE(686), + [sym_span] = STATE(20), + [sym__bracketed_text_begin] = STATE(1219), [sym__comment_with_spaces] = STATE(138), [sym_raw_inline] = STATE(138), [sym_math] = STATE(138), @@ -11096,1838 +11346,1966 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(138), [sym_note] = STATE(138), [sym__symbol_fallback] = STATE(138), - [aux_sym__text] = STATE(121), - [aux_sym__inline_repeat1] = STATE(46), - [anon_sym_LBRACE_] = ACTIONS(345), - [anon_sym__] = ACTIONS(347), - [anon_sym_LBRACE_STAR] = ACTIONS(349), - [anon_sym_STAR] = ACTIONS(351), - [anon_sym_LBRACE_CARET] = ACTIONS(353), - [anon_sym_CARET] = ACTIONS(353), - [anon_sym_LBRACE_TILDE] = ACTIONS(355), - [anon_sym_TILDE] = ACTIONS(355), - [anon_sym_LBRACE_EQ] = ACTIONS(357), - [anon_sym_LBRACE_PLUS] = ACTIONS(359), - [anon_sym_LBRACE_DASH] = ACTIONS(361), - [anon_sym_BSLASH] = ACTIONS(363), - [sym_quotation_marks] = ACTIONS(365), - [sym_ellipsis] = ACTIONS(365), - [sym_em_dash] = ACTIONS(365), - [sym_en_dash] = ACTIONS(367), - [sym_backslash_escape] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(369), - [sym_symbol] = ACTIONS(365), - [anon_sym_LBRACK_CARET] = ACTIONS(371), - [anon_sym_BANG_LBRACK] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LPAREN] = ACTIONS(377), - [anon_sym_DOLLAR] = ACTIONS(379), - [anon_sym_TODO] = ACTIONS(381), - [anon_sym_WIP] = ACTIONS(381), - [anon_sym_NOTE] = ACTIONS(383), - [anon_sym_INFO] = ACTIONS(383), - [anon_sym_XXX] = ACTIONS(383), - [sym_fixme] = ACTIONS(365), - [sym__whitespace1] = ACTIONS(385), - [sym__newline] = ACTIONS(387), - [aux_sym__text_token1] = ACTIONS(389), - [sym__verbatim_begin] = ACTIONS(391), + [sym__newline] = STATE(20), + [aux_sym__text] = STATE(126), + [aux_sym__inline_repeat1] = STATE(20), + [anon_sym_LBRACE_] = ACTIONS(359), + [anon_sym__] = ACTIONS(361), + [anon_sym_LBRACE_STAR] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(365), + [anon_sym_LBRACE_CARET] = ACTIONS(367), + [anon_sym_CARET] = ACTIONS(367), + [anon_sym_LBRACE_TILDE] = ACTIONS(369), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_LBRACE_EQ] = ACTIONS(371), + [anon_sym_LBRACE_PLUS] = ACTIONS(373), + [anon_sym_LBRACE_DASH] = ACTIONS(375), + [anon_sym_BSLASH] = ACTIONS(377), + [sym_quotation_marks] = ACTIONS(379), + [sym_ellipsis] = ACTIONS(379), + [sym_em_dash] = ACTIONS(379), + [sym_en_dash] = ACTIONS(381), + [sym_backslash_escape] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(383), + [sym_symbol] = ACTIONS(379), + [anon_sym_LBRACK_CARET] = ACTIONS(385), + [anon_sym_BANG_LBRACK] = ACTIONS(387), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(393), + [anon_sym_DOLLAR] = ACTIONS(395), + [anon_sym_TODO] = ACTIONS(397), + [anon_sym_WIP] = ACTIONS(397), + [anon_sym_NOTE] = ACTIONS(399), + [anon_sym_INFO] = ACTIONS(399), + [anon_sym_XXX] = ACTIONS(399), + [sym_fixme] = ACTIONS(379), + [sym__whitespace1] = ACTIONS(401), + [anon_sym_LF] = ACTIONS(403), + [aux_sym__text_token1] = ACTIONS(405), + [sym__verbatim_begin] = ACTIONS(407), }, [75] = { - [sym__inline_without_trailing_space] = STATE(1153), - [sym__element] = STATE(594), - [sym_emphasis] = STATE(149), - [sym_emphasis_begin] = STATE(1104), - [sym_strong] = STATE(149), - [sym_strong_begin] = STATE(1105), - [sym_superscript] = STATE(149), - [sym_superscript_begin] = STATE(1106), - [sym_subscript] = STATE(149), - [sym_subscript_begin] = STATE(1107), - [sym_highlighted] = STATE(149), - [sym_highlighted_begin] = STATE(1108), - [sym_insert] = STATE(149), - [sym_insert_begin] = STATE(1109), - [sym_delete] = STATE(149), - [sym_delete_begin] = STATE(1110), - [sym_hard_line_break] = STATE(143), - [sym__smart_punctuation] = STATE(143), - [sym_autolink] = STATE(143), - [sym_footnote_reference] = STATE(149), - [sym_footnote_marker_begin] = STATE(1111), - [sym__image] = STATE(149), - [sym_full_reference_image] = STATE(149), - [sym_collapsed_reference_image] = STATE(149), - [sym_inline_image] = STATE(149), - [sym_image_description] = STATE(658), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(149), - [sym_full_reference_link] = STATE(149), - [sym_collapsed_reference_link] = STATE(149), - [sym_inline_link] = STATE(149), - [sym_link_text] = STATE(672), - [sym_span] = STATE(594), - [sym__bracketed_text_begin] = STATE(1204), - [sym__comment_with_spaces] = STATE(143), - [sym_raw_inline] = STATE(143), - [sym_math] = STATE(143), - [sym_verbatim] = STATE(143), - [sym__todo_highlights] = STATE(143), - [sym_todo] = STATE(143), - [sym_note] = STATE(143), - [sym__symbol_fallback] = STATE(143), + [sym__inline] = STATE(934), + [sym__element] = STATE(22), + [sym_emphasis] = STATE(140), + [sym_emphasis_begin] = STATE(1174), + [sym_strong] = STATE(140), + [sym_strong_begin] = STATE(1175), + [sym_superscript] = STATE(140), + [sym_superscript_begin] = STATE(1176), + [sym_subscript] = STATE(140), + [sym_subscript_begin] = STATE(1177), + [sym_highlighted] = STATE(140), + [sym_highlighted_begin] = STATE(1178), + [sym_insert] = STATE(140), + [sym_insert_begin] = STATE(1179), + [sym_delete] = STATE(140), + [sym_delete_begin] = STATE(1180), + [sym_hard_line_break] = STATE(139), + [sym__smart_punctuation] = STATE(139), + [sym_autolink] = STATE(139), + [sym_footnote_reference] = STATE(140), + [sym_footnote_marker_begin] = STATE(1181), + [sym__image] = STATE(140), + [sym_full_reference_image] = STATE(140), + [sym_collapsed_reference_image] = STATE(140), + [sym_inline_image] = STATE(140), + [sym_image_description] = STATE(655), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(140), + [sym_full_reference_link] = STATE(140), + [sym_collapsed_reference_link] = STATE(140), + [sym_inline_link] = STATE(140), + [sym_link_text] = STATE(656), + [sym_span] = STATE(22), + [sym__bracketed_text_begin] = STATE(1220), + [sym__comment_with_spaces] = STATE(139), + [sym_raw_inline] = STATE(139), + [sym_math] = STATE(139), + [sym_verbatim] = STATE(139), + [sym__todo_highlights] = STATE(139), + [sym_todo] = STATE(139), + [sym_note] = STATE(139), + [sym__symbol_fallback] = STATE(139), + [sym__newline] = STATE(22), [aux_sym__text] = STATE(127), - [aux_sym__inline_repeat1] = STATE(120), - [anon_sym_LBRACE_] = ACTIONS(441), - [anon_sym__] = ACTIONS(443), - [anon_sym_LBRACE_STAR] = ACTIONS(445), - [anon_sym_STAR] = ACTIONS(447), - [anon_sym_LBRACE_CARET] = ACTIONS(449), - [anon_sym_CARET] = ACTIONS(449), - [anon_sym_LBRACE_TILDE] = ACTIONS(451), - [anon_sym_TILDE] = ACTIONS(451), - [anon_sym_LBRACE_EQ] = ACTIONS(453), - [anon_sym_LBRACE_PLUS] = ACTIONS(455), - [anon_sym_LBRACE_DASH] = ACTIONS(457), - [anon_sym_BSLASH] = ACTIONS(459), - [sym_quotation_marks] = ACTIONS(461), - [sym_ellipsis] = ACTIONS(461), - [sym_em_dash] = ACTIONS(461), - [sym_en_dash] = ACTIONS(463), - [sym_backslash_escape] = ACTIONS(463), - [anon_sym_LT] = ACTIONS(465), - [sym_symbol] = ACTIONS(461), - [anon_sym_LBRACK_CARET] = ACTIONS(467), - [anon_sym_BANG_LBRACK] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(471), - [anon_sym_LPAREN] = ACTIONS(473), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_TODO] = ACTIONS(477), - [anon_sym_WIP] = ACTIONS(477), - [anon_sym_NOTE] = ACTIONS(479), - [anon_sym_INFO] = ACTIONS(479), - [anon_sym_XXX] = ACTIONS(479), - [sym_fixme] = ACTIONS(461), - [sym__whitespace1] = ACTIONS(481), - [sym__newline] = ACTIONS(483), - [aux_sym__text_token1] = ACTIONS(485), - [sym__verbatim_begin] = ACTIONS(487), + [aux_sym__inline_repeat1] = STATE(22), + [anon_sym_LBRACE_] = ACTIONS(409), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_STAR] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(415), + [anon_sym_LBRACE_CARET] = ACTIONS(417), + [anon_sym_CARET] = ACTIONS(417), + [anon_sym_LBRACE_TILDE] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(419), + [anon_sym_LBRACE_EQ] = ACTIONS(421), + [anon_sym_LBRACE_PLUS] = ACTIONS(423), + [anon_sym_LBRACE_DASH] = ACTIONS(425), + [anon_sym_BSLASH] = ACTIONS(427), + [sym_quotation_marks] = ACTIONS(429), + [sym_ellipsis] = ACTIONS(429), + [sym_em_dash] = ACTIONS(429), + [sym_en_dash] = ACTIONS(431), + [sym_backslash_escape] = ACTIONS(431), + [anon_sym_LT] = ACTIONS(433), + [sym_symbol] = ACTIONS(429), + [anon_sym_LBRACK_CARET] = ACTIONS(435), + [anon_sym_BANG_LBRACK] = ACTIONS(437), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(439), + [anon_sym_LBRACK] = ACTIONS(441), + [anon_sym_LPAREN] = ACTIONS(443), + [anon_sym_DOLLAR] = ACTIONS(445), + [anon_sym_TODO] = ACTIONS(447), + [anon_sym_WIP] = ACTIONS(447), + [anon_sym_NOTE] = ACTIONS(449), + [anon_sym_INFO] = ACTIONS(449), + [anon_sym_XXX] = ACTIONS(449), + [sym_fixme] = ACTIONS(429), + [sym__whitespace1] = ACTIONS(451), + [anon_sym_LF] = ACTIONS(453), + [aux_sym__text_token1] = ACTIONS(455), + [sym__verbatim_begin] = ACTIONS(457), }, [76] = { - [sym__inline_without_trailing_space] = STATE(1143), - [sym__element] = STATE(550), - [sym_emphasis] = STATE(137), + [sym__inline] = STATE(936), + [sym__element] = STATE(24), + [sym_emphasis] = STATE(131), + [sym_emphasis_begin] = STATE(1184), + [sym_strong] = STATE(131), + [sym_strong_begin] = STATE(1185), + [sym_superscript] = STATE(131), + [sym_superscript_begin] = STATE(1186), + [sym_subscript] = STATE(131), + [sym_subscript_begin] = STATE(1187), + [sym_highlighted] = STATE(131), + [sym_highlighted_begin] = STATE(1188), + [sym_insert] = STATE(131), + [sym_insert_begin] = STATE(1189), + [sym_delete] = STATE(131), + [sym_delete_begin] = STATE(1190), + [sym_hard_line_break] = STATE(145), + [sym__smart_punctuation] = STATE(145), + [sym_autolink] = STATE(145), + [sym_footnote_reference] = STATE(131), + [sym_footnote_marker_begin] = STATE(1191), + [sym__image] = STATE(131), + [sym_full_reference_image] = STATE(131), + [sym_collapsed_reference_image] = STATE(131), + [sym_inline_image] = STATE(131), + [sym_image_description] = STATE(662), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(131), + [sym_full_reference_link] = STATE(131), + [sym_collapsed_reference_link] = STATE(131), + [sym_inline_link] = STATE(131), + [sym_link_text] = STATE(663), + [sym_span] = STATE(24), + [sym__bracketed_text_begin] = STATE(1221), + [sym__comment_with_spaces] = STATE(145), + [sym_raw_inline] = STATE(145), + [sym_math] = STATE(145), + [sym_verbatim] = STATE(145), + [sym__todo_highlights] = STATE(145), + [sym_todo] = STATE(145), + [sym_note] = STATE(145), + [sym__symbol_fallback] = STATE(145), + [sym__newline] = STATE(24), + [aux_sym__text] = STATE(129), + [aux_sym__inline_repeat1] = STATE(24), + [anon_sym_LBRACE_] = ACTIONS(459), + [anon_sym__] = ACTIONS(461), + [anon_sym_LBRACE_STAR] = ACTIONS(463), + [anon_sym_STAR] = ACTIONS(465), + [anon_sym_LBRACE_CARET] = ACTIONS(467), + [anon_sym_CARET] = ACTIONS(467), + [anon_sym_LBRACE_TILDE] = ACTIONS(469), + [anon_sym_TILDE] = ACTIONS(469), + [anon_sym_LBRACE_EQ] = ACTIONS(471), + [anon_sym_LBRACE_PLUS] = ACTIONS(473), + [anon_sym_LBRACE_DASH] = ACTIONS(475), + [anon_sym_BSLASH] = ACTIONS(477), + [sym_quotation_marks] = ACTIONS(479), + [sym_ellipsis] = ACTIONS(479), + [sym_em_dash] = ACTIONS(479), + [sym_en_dash] = ACTIONS(481), + [sym_backslash_escape] = ACTIONS(481), + [anon_sym_LT] = ACTIONS(483), + [sym_symbol] = ACTIONS(479), + [anon_sym_LBRACK_CARET] = ACTIONS(485), + [anon_sym_BANG_LBRACK] = ACTIONS(487), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(489), + [anon_sym_LBRACK] = ACTIONS(491), + [anon_sym_LPAREN] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(495), + [anon_sym_TODO] = ACTIONS(497), + [anon_sym_WIP] = ACTIONS(497), + [anon_sym_NOTE] = ACTIONS(499), + [anon_sym_INFO] = ACTIONS(499), + [anon_sym_XXX] = ACTIONS(499), + [sym_fixme] = ACTIONS(479), + [sym__whitespace1] = ACTIONS(501), + [anon_sym_LF] = ACTIONS(503), + [aux_sym__text_token1] = ACTIONS(505), + [sym__verbatim_begin] = ACTIONS(507), + }, + [77] = { + [sym__inline_without_trailing_space] = STATE(1013), + [sym__element] = STATE(543), + [sym_emphasis] = STATE(150), [sym_emphasis_begin] = STATE(1114), - [sym_strong] = STATE(137), + [sym_strong] = STATE(150), [sym_strong_begin] = STATE(1115), - [sym_superscript] = STATE(137), + [sym_superscript] = STATE(150), [sym_superscript_begin] = STATE(1116), - [sym_subscript] = STATE(137), + [sym_subscript] = STATE(150), [sym_subscript_begin] = STATE(1117), - [sym_highlighted] = STATE(137), + [sym_highlighted] = STATE(150), [sym_highlighted_begin] = STATE(1118), - [sym_insert] = STATE(137), + [sym_insert] = STATE(150), [sym_insert_begin] = STATE(1119), - [sym_delete] = STATE(137), + [sym_delete] = STATE(150), [sym_delete_begin] = STATE(1120), - [sym_hard_line_break] = STATE(131), - [sym__smart_punctuation] = STATE(131), - [sym_autolink] = STATE(131), - [sym_footnote_reference] = STATE(137), + [sym_hard_line_break] = STATE(133), + [sym__smart_punctuation] = STATE(133), + [sym_autolink] = STATE(133), + [sym_footnote_reference] = STATE(150), [sym_footnote_marker_begin] = STATE(1121), - [sym__image] = STATE(137), - [sym_full_reference_image] = STATE(137), - [sym_collapsed_reference_image] = STATE(137), - [sym_inline_image] = STATE(137), - [sym_image_description] = STATE(649), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(137), - [sym_full_reference_link] = STATE(137), - [sym_collapsed_reference_link] = STATE(137), - [sym_inline_link] = STATE(137), - [sym_link_text] = STATE(650), - [sym_span] = STATE(550), - [sym__bracketed_text_begin] = STATE(1205), - [sym__comment_with_spaces] = STATE(131), - [sym_raw_inline] = STATE(131), - [sym_math] = STATE(131), - [sym_verbatim] = STATE(131), - [sym__todo_highlights] = STATE(131), - [sym_todo] = STATE(131), - [sym_note] = STATE(131), - [sym__symbol_fallback] = STATE(131), - [aux_sym__text] = STATE(130), - [aux_sym__inline_repeat1] = STATE(119), - [anon_sym_LBRACE_] = ACTIONS(489), - [anon_sym__] = ACTIONS(491), - [anon_sym_LBRACE_STAR] = ACTIONS(493), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_LBRACE_CARET] = ACTIONS(497), - [anon_sym_CARET] = ACTIONS(497), - [anon_sym_LBRACE_TILDE] = ACTIONS(499), - [anon_sym_TILDE] = ACTIONS(499), - [anon_sym_LBRACE_EQ] = ACTIONS(501), - [anon_sym_LBRACE_PLUS] = ACTIONS(503), - [anon_sym_LBRACE_DASH] = ACTIONS(505), - [anon_sym_BSLASH] = ACTIONS(507), - [sym_quotation_marks] = ACTIONS(509), - [sym_ellipsis] = ACTIONS(509), - [sym_em_dash] = ACTIONS(509), - [sym_en_dash] = ACTIONS(511), - [sym_backslash_escape] = ACTIONS(511), - [anon_sym_LT] = ACTIONS(513), - [sym_symbol] = ACTIONS(509), - [anon_sym_LBRACK_CARET] = ACTIONS(515), - [anon_sym_BANG_LBRACK] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(519), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_DOLLAR] = ACTIONS(523), - [anon_sym_TODO] = ACTIONS(525), - [anon_sym_WIP] = ACTIONS(525), - [anon_sym_NOTE] = ACTIONS(527), - [anon_sym_INFO] = ACTIONS(527), - [anon_sym_XXX] = ACTIONS(527), - [sym_fixme] = ACTIONS(509), - [sym__whitespace1] = ACTIONS(529), - [sym__newline] = ACTIONS(531), - [aux_sym__text_token1] = ACTIONS(533), - [sym__verbatim_begin] = ACTIONS(535), - }, - [77] = { - [sym__inline] = STATE(1123), - [sym__element] = STATE(64), - [sym_emphasis] = STATE(133), - [sym_emphasis_begin] = STATE(1124), - [sym_strong] = STATE(133), - [sym_strong_begin] = STATE(1125), - [sym_superscript] = STATE(133), - [sym_superscript_begin] = STATE(1126), - [sym_subscript] = STATE(133), - [sym_subscript_begin] = STATE(1127), - [sym_highlighted] = STATE(133), - [sym_highlighted_begin] = STATE(1128), - [sym_insert] = STATE(133), - [sym_insert_begin] = STATE(1129), - [sym_delete] = STATE(133), - [sym_delete_begin] = STATE(1130), - [sym_hard_line_break] = STATE(140), - [sym__smart_punctuation] = STATE(140), - [sym_autolink] = STATE(140), - [sym_footnote_reference] = STATE(133), - [sym_footnote_marker_begin] = STATE(1131), - [sym__image] = STATE(133), - [sym_full_reference_image] = STATE(133), - [sym_collapsed_reference_image] = STATE(133), - [sym_inline_image] = STATE(133), - [sym_image_description] = STATE(663), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(133), - [sym_full_reference_link] = STATE(133), - [sym_collapsed_reference_link] = STATE(133), - [sym_inline_link] = STATE(133), - [sym_link_text] = STATE(669), - [sym_span] = STATE(64), - [sym__bracketed_text_begin] = STATE(1206), - [sym__comment_with_spaces] = STATE(140), - [sym_raw_inline] = STATE(140), - [sym_math] = STATE(140), - [sym_verbatim] = STATE(140), - [sym__todo_highlights] = STATE(140), - [sym_todo] = STATE(140), - [sym_note] = STATE(140), - [sym__symbol_fallback] = STATE(140), + [sym__image] = STATE(150), + [sym_full_reference_image] = STATE(150), + [sym_collapsed_reference_image] = STATE(150), + [sym_inline_image] = STATE(150), + [sym_image_description] = STATE(678), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(150), + [sym_full_reference_link] = STATE(150), + [sym_collapsed_reference_link] = STATE(150), + [sym_inline_link] = STATE(150), + [sym_link_text] = STATE(679), + [sym_span] = STATE(543), + [sym__bracketed_text_begin] = STATE(1214), + [sym__comment_with_spaces] = STATE(133), + [sym_raw_inline] = STATE(133), + [sym_math] = STATE(133), + [sym_verbatim] = STATE(133), + [sym__todo_highlights] = STATE(133), + [sym_todo] = STATE(133), + [sym_note] = STATE(133), + [sym__symbol_fallback] = STATE(133), + [sym__newline] = STATE(119), [aux_sym__text] = STATE(122), - [aux_sym__inline_repeat1] = STATE(64), - [anon_sym_LBRACE_] = ACTIONS(537), - [anon_sym__] = ACTIONS(539), - [anon_sym_LBRACE_STAR] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(543), - [anon_sym_LBRACE_CARET] = ACTIONS(545), - [anon_sym_CARET] = ACTIONS(545), - [anon_sym_LBRACE_TILDE] = ACTIONS(547), - [anon_sym_TILDE] = ACTIONS(547), - [anon_sym_LBRACE_EQ] = ACTIONS(549), - [anon_sym_LBRACE_PLUS] = ACTIONS(551), - [anon_sym_LBRACE_DASH] = ACTIONS(553), - [anon_sym_BSLASH] = ACTIONS(555), - [sym_quotation_marks] = ACTIONS(557), - [sym_ellipsis] = ACTIONS(557), - [sym_em_dash] = ACTIONS(557), - [sym_en_dash] = ACTIONS(559), - [sym_backslash_escape] = ACTIONS(559), - [anon_sym_LT] = ACTIONS(561), - [sym_symbol] = ACTIONS(557), - [anon_sym_LBRACK_CARET] = ACTIONS(563), - [anon_sym_BANG_LBRACK] = ACTIONS(565), - [anon_sym_LBRACK] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_DOLLAR] = ACTIONS(571), - [anon_sym_TODO] = ACTIONS(573), - [anon_sym_WIP] = ACTIONS(573), - [anon_sym_NOTE] = ACTIONS(575), - [anon_sym_INFO] = ACTIONS(575), - [anon_sym_XXX] = ACTIONS(575), - [sym_fixme] = ACTIONS(557), - [sym__whitespace1] = ACTIONS(577), - [sym__newline] = ACTIONS(579), - [aux_sym__text_token1] = ACTIONS(581), - [sym__verbatim_begin] = ACTIONS(583), + [aux_sym__inline_repeat1] = STATE(119), + [anon_sym_LBRACE_] = ACTIONS(159), + [anon_sym__] = ACTIONS(161), + [anon_sym_LBRACE_STAR] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(165), + [anon_sym_LBRACE_CARET] = ACTIONS(167), + [anon_sym_CARET] = ACTIONS(167), + [anon_sym_LBRACE_TILDE] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(169), + [anon_sym_LBRACE_EQ] = ACTIONS(171), + [anon_sym_LBRACE_PLUS] = ACTIONS(173), + [anon_sym_LBRACE_DASH] = ACTIONS(175), + [anon_sym_BSLASH] = ACTIONS(177), + [sym_quotation_marks] = ACTIONS(179), + [sym_ellipsis] = ACTIONS(179), + [sym_em_dash] = ACTIONS(179), + [sym_en_dash] = ACTIONS(181), + [sym_backslash_escape] = ACTIONS(181), + [anon_sym_LT] = ACTIONS(183), + [sym_symbol] = ACTIONS(179), + [anon_sym_LBRACK_CARET] = ACTIONS(185), + [anon_sym_BANG_LBRACK] = ACTIONS(187), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(189), + [anon_sym_LBRACK] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(195), + [anon_sym_TODO] = ACTIONS(197), + [anon_sym_WIP] = ACTIONS(197), + [anon_sym_NOTE] = ACTIONS(199), + [anon_sym_INFO] = ACTIONS(199), + [anon_sym_XXX] = ACTIONS(199), + [sym_fixme] = ACTIONS(179), + [sym__whitespace1] = ACTIONS(201), + [anon_sym_LF] = ACTIONS(203), + [aux_sym__text_token1] = ACTIONS(205), + [sym__verbatim_begin] = ACTIONS(207), }, [78] = { - [sym__inline] = STATE(881), - [sym__element] = STATE(46), - [sym_emphasis] = STATE(135), - [sym_emphasis_begin] = STATE(1174), - [sym_strong] = STATE(135), - [sym_strong_begin] = STATE(1175), - [sym_superscript] = STATE(135), - [sym_superscript_begin] = STATE(1176), - [sym_subscript] = STATE(135), - [sym_subscript_begin] = STATE(1177), - [sym_highlighted] = STATE(135), - [sym_highlighted_begin] = STATE(1178), - [sym_insert] = STATE(135), - [sym_insert_begin] = STATE(1179), - [sym_delete] = STATE(135), - [sym_delete_begin] = STATE(1180), - [sym_hard_line_break] = STATE(138), - [sym__smart_punctuation] = STATE(138), - [sym_autolink] = STATE(138), - [sym_footnote_reference] = STATE(135), - [sym_footnote_marker_begin] = STATE(1181), - [sym__image] = STATE(135), - [sym_full_reference_image] = STATE(135), - [sym_collapsed_reference_image] = STATE(135), - [sym_inline_image] = STATE(135), - [sym_image_description] = STATE(656), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(135), - [sym_full_reference_link] = STATE(135), - [sym_collapsed_reference_link] = STATE(135), - [sym_inline_link] = STATE(135), - [sym_link_text] = STATE(654), - [sym_span] = STATE(46), - [sym__bracketed_text_begin] = STATE(1211), - [sym__comment_with_spaces] = STATE(138), - [sym_raw_inline] = STATE(138), - [sym_math] = STATE(138), - [sym_verbatim] = STATE(138), - [sym__todo_highlights] = STATE(138), - [sym_todo] = STATE(138), - [sym_note] = STATE(138), - [sym__symbol_fallback] = STATE(138), - [aux_sym__text] = STATE(121), - [aux_sym__inline_repeat1] = STATE(46), - [anon_sym_LBRACE_] = ACTIONS(345), - [anon_sym__] = ACTIONS(347), - [anon_sym_LBRACE_STAR] = ACTIONS(349), - [anon_sym_STAR] = ACTIONS(351), - [anon_sym_LBRACE_CARET] = ACTIONS(353), - [anon_sym_CARET] = ACTIONS(353), - [anon_sym_LBRACE_TILDE] = ACTIONS(355), - [anon_sym_TILDE] = ACTIONS(355), - [anon_sym_LBRACE_EQ] = ACTIONS(357), - [anon_sym_LBRACE_PLUS] = ACTIONS(359), - [anon_sym_LBRACE_DASH] = ACTIONS(361), - [anon_sym_BSLASH] = ACTIONS(363), - [sym_quotation_marks] = ACTIONS(365), - [sym_ellipsis] = ACTIONS(365), - [sym_em_dash] = ACTIONS(365), - [sym_en_dash] = ACTIONS(367), - [sym_backslash_escape] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(369), - [sym_symbol] = ACTIONS(365), - [anon_sym_LBRACK_CARET] = ACTIONS(371), - [anon_sym_BANG_LBRACK] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LPAREN] = ACTIONS(377), - [anon_sym_DOLLAR] = ACTIONS(379), - [anon_sym_TODO] = ACTIONS(381), - [anon_sym_WIP] = ACTIONS(381), - [anon_sym_NOTE] = ACTIONS(383), - [anon_sym_INFO] = ACTIONS(383), - [anon_sym_XXX] = ACTIONS(383), - [sym_fixme] = ACTIONS(365), - [sym__whitespace1] = ACTIONS(385), - [sym__newline] = ACTIONS(387), - [aux_sym__text_token1] = ACTIONS(389), - [sym__verbatim_begin] = ACTIONS(391), + [sym__inline_without_trailing_space] = STATE(1021), + [sym__element] = STATE(570), + [sym_emphasis] = STATE(142), + [sym_emphasis_begin] = STATE(1124), + [sym_strong] = STATE(142), + [sym_strong_begin] = STATE(1125), + [sym_superscript] = STATE(142), + [sym_superscript_begin] = STATE(1126), + [sym_subscript] = STATE(142), + [sym_subscript_begin] = STATE(1127), + [sym_highlighted] = STATE(142), + [sym_highlighted_begin] = STATE(1128), + [sym_insert] = STATE(142), + [sym_insert_begin] = STATE(1129), + [sym_delete] = STATE(142), + [sym_delete_begin] = STATE(1130), + [sym_hard_line_break] = STATE(137), + [sym__smart_punctuation] = STATE(137), + [sym_autolink] = STATE(137), + [sym_footnote_reference] = STATE(142), + [sym_footnote_marker_begin] = STATE(1131), + [sym__image] = STATE(142), + [sym_full_reference_image] = STATE(142), + [sym_collapsed_reference_image] = STATE(142), + [sym_inline_image] = STATE(142), + [sym_image_description] = STATE(687), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(142), + [sym_full_reference_link] = STATE(142), + [sym_collapsed_reference_link] = STATE(142), + [sym_inline_link] = STATE(142), + [sym_link_text] = STATE(654), + [sym_span] = STATE(570), + [sym__bracketed_text_begin] = STATE(1215), + [sym__comment_with_spaces] = STATE(137), + [sym_raw_inline] = STATE(137), + [sym_math] = STATE(137), + [sym_verbatim] = STATE(137), + [sym__todo_highlights] = STATE(137), + [sym_todo] = STATE(137), + [sym_note] = STATE(137), + [sym__symbol_fallback] = STATE(137), + [sym__newline] = STATE(118), + [aux_sym__text] = STATE(128), + [aux_sym__inline_repeat1] = STATE(118), + [anon_sym_LBRACE_] = ACTIONS(209), + [anon_sym__] = ACTIONS(211), + [anon_sym_LBRACE_STAR] = ACTIONS(213), + [anon_sym_STAR] = ACTIONS(215), + [anon_sym_LBRACE_CARET] = ACTIONS(217), + [anon_sym_CARET] = ACTIONS(217), + [anon_sym_LBRACE_TILDE] = ACTIONS(219), + [anon_sym_TILDE] = ACTIONS(219), + [anon_sym_LBRACE_EQ] = ACTIONS(221), + [anon_sym_LBRACE_PLUS] = ACTIONS(223), + [anon_sym_LBRACE_DASH] = ACTIONS(225), + [anon_sym_BSLASH] = ACTIONS(227), + [sym_quotation_marks] = ACTIONS(229), + [sym_ellipsis] = ACTIONS(229), + [sym_em_dash] = ACTIONS(229), + [sym_en_dash] = ACTIONS(231), + [sym_backslash_escape] = ACTIONS(231), + [anon_sym_LT] = ACTIONS(233), + [sym_symbol] = ACTIONS(229), + [anon_sym_LBRACK_CARET] = ACTIONS(235), + [anon_sym_BANG_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_LPAREN] = ACTIONS(243), + [anon_sym_DOLLAR] = ACTIONS(245), + [anon_sym_TODO] = ACTIONS(247), + [anon_sym_WIP] = ACTIONS(247), + [anon_sym_NOTE] = ACTIONS(249), + [anon_sym_INFO] = ACTIONS(249), + [anon_sym_XXX] = ACTIONS(249), + [sym_fixme] = ACTIONS(229), + [sym__whitespace1] = ACTIONS(251), + [anon_sym_LF] = ACTIONS(253), + [aux_sym__text_token1] = ACTIONS(255), + [sym__verbatim_begin] = ACTIONS(257), }, [79] = { - [sym__inline] = STATE(884), - [sym__element] = STATE(30), + [sym__inline] = STATE(1025), + [sym__element] = STATE(15), [sym_emphasis] = STATE(132), - [sym_emphasis_begin] = STATE(1164), + [sym_emphasis_begin] = STATE(1134), [sym_strong] = STATE(132), - [sym_strong_begin] = STATE(1165), + [sym_strong_begin] = STATE(1135), [sym_superscript] = STATE(132), - [sym_superscript_begin] = STATE(1166), + [sym_superscript_begin] = STATE(1136), [sym_subscript] = STATE(132), - [sym_subscript_begin] = STATE(1167), + [sym_subscript_begin] = STATE(1137), [sym_highlighted] = STATE(132), - [sym_highlighted_begin] = STATE(1168), + [sym_highlighted_begin] = STATE(1138), [sym_insert] = STATE(132), - [sym_insert_begin] = STATE(1169), + [sym_insert_begin] = STATE(1139), [sym_delete] = STATE(132), - [sym_delete_begin] = STATE(1170), - [sym_hard_line_break] = STATE(142), - [sym__smart_punctuation] = STATE(142), - [sym_autolink] = STATE(142), + [sym_delete_begin] = STATE(1140), + [sym_hard_line_break] = STATE(147), + [sym__smart_punctuation] = STATE(147), + [sym_autolink] = STATE(147), [sym_footnote_reference] = STATE(132), - [sym_footnote_marker_begin] = STATE(1171), + [sym_footnote_marker_begin] = STATE(1141), [sym__image] = STATE(132), [sym_full_reference_image] = STATE(132), [sym_collapsed_reference_image] = STATE(132), [sym_inline_image] = STATE(132), - [sym_image_description] = STATE(660), - [sym__image_description_begin] = STATE(1079), + [sym_image_description] = STATE(682), + [sym__image_description_begin] = STATE(958), [sym__link] = STATE(132), [sym_full_reference_link] = STATE(132), [sym_collapsed_reference_link] = STATE(132), [sym_inline_link] = STATE(132), - [sym_link_text] = STATE(659), - [sym_span] = STATE(30), - [sym__bracketed_text_begin] = STATE(1210), - [sym__comment_with_spaces] = STATE(142), - [sym_raw_inline] = STATE(142), - [sym_math] = STATE(142), - [sym_verbatim] = STATE(142), - [sym__todo_highlights] = STATE(142), - [sym_todo] = STATE(142), - [sym_note] = STATE(142), - [sym__symbol_fallback] = STATE(142), - [aux_sym__text] = STATE(126), - [aux_sym__inline_repeat1] = STATE(30), - [anon_sym_LBRACE_] = ACTIONS(393), - [anon_sym__] = ACTIONS(395), - [anon_sym_LBRACE_STAR] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(399), - [anon_sym_LBRACE_CARET] = ACTIONS(401), - [anon_sym_CARET] = ACTIONS(401), - [anon_sym_LBRACE_TILDE] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_LBRACE_EQ] = ACTIONS(405), - [anon_sym_LBRACE_PLUS] = ACTIONS(407), - [anon_sym_LBRACE_DASH] = ACTIONS(409), - [anon_sym_BSLASH] = ACTIONS(411), - [sym_quotation_marks] = ACTIONS(413), - [sym_ellipsis] = ACTIONS(413), - [sym_em_dash] = ACTIONS(413), - [sym_en_dash] = ACTIONS(415), - [sym_backslash_escape] = ACTIONS(415), - [anon_sym_LT] = ACTIONS(417), - [sym_symbol] = ACTIONS(413), - [anon_sym_LBRACK_CARET] = ACTIONS(419), - [anon_sym_BANG_LBRACK] = ACTIONS(421), - [anon_sym_LBRACK] = ACTIONS(423), - [anon_sym_LPAREN] = ACTIONS(425), - [anon_sym_DOLLAR] = ACTIONS(427), - [anon_sym_TODO] = ACTIONS(429), - [anon_sym_WIP] = ACTIONS(429), - [anon_sym_NOTE] = ACTIONS(431), - [anon_sym_INFO] = ACTIONS(431), - [anon_sym_XXX] = ACTIONS(431), - [sym_fixme] = ACTIONS(413), - [sym__whitespace1] = ACTIONS(433), - [sym__newline] = ACTIONS(435), - [aux_sym__text_token1] = ACTIONS(437), - [sym__verbatim_begin] = ACTIONS(439), + [sym_link_text] = STATE(689), + [sym_span] = STATE(15), + [sym__bracketed_text_begin] = STATE(1216), + [sym__comment_with_spaces] = STATE(147), + [sym_raw_inline] = STATE(147), + [sym_math] = STATE(147), + [sym_verbatim] = STATE(147), + [sym__todo_highlights] = STATE(147), + [sym_todo] = STATE(147), + [sym_note] = STATE(147), + [sym__symbol_fallback] = STATE(147), + [sym__newline] = STATE(15), + [aux_sym__text] = STATE(121), + [aux_sym__inline_repeat1] = STATE(15), + [anon_sym_LBRACE_] = ACTIONS(105), + [anon_sym__] = ACTIONS(107), + [anon_sym_LBRACE_STAR] = ACTIONS(109), + [anon_sym_STAR] = ACTIONS(111), + [anon_sym_LBRACE_CARET] = ACTIONS(113), + [anon_sym_CARET] = ACTIONS(113), + [anon_sym_LBRACE_TILDE] = ACTIONS(115), + [anon_sym_TILDE] = ACTIONS(115), + [anon_sym_LBRACE_EQ] = ACTIONS(117), + [anon_sym_LBRACE_PLUS] = ACTIONS(119), + [anon_sym_LBRACE_DASH] = ACTIONS(121), + [anon_sym_BSLASH] = ACTIONS(123), + [sym_quotation_marks] = ACTIONS(125), + [sym_ellipsis] = ACTIONS(125), + [sym_em_dash] = ACTIONS(125), + [sym_en_dash] = ACTIONS(127), + [sym_backslash_escape] = ACTIONS(127), + [anon_sym_LT] = ACTIONS(129), + [sym_symbol] = ACTIONS(125), + [anon_sym_LBRACK_CARET] = ACTIONS(131), + [anon_sym_BANG_LBRACK] = ACTIONS(133), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(135), + [anon_sym_LBRACK] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_TODO] = ACTIONS(143), + [anon_sym_WIP] = ACTIONS(143), + [anon_sym_NOTE] = ACTIONS(145), + [anon_sym_INFO] = ACTIONS(145), + [anon_sym_XXX] = ACTIONS(145), + [sym_fixme] = ACTIONS(125), + [sym__whitespace1] = ACTIONS(147), + [anon_sym_LF] = ACTIONS(149), + [aux_sym__text_token1] = ACTIONS(151), + [sym__verbatim_begin] = ACTIONS(153), }, [80] = { - [sym__inline] = STATE(885), - [sym__element] = STATE(22), - [sym_emphasis] = STATE(147), - [sym_emphasis_begin] = STATE(1154), - [sym_strong] = STATE(147), - [sym_strong_begin] = STATE(1155), - [sym_superscript] = STATE(147), - [sym_superscript_begin] = STATE(1156), - [sym_subscript] = STATE(147), - [sym_subscript_begin] = STATE(1157), - [sym_highlighted] = STATE(147), - [sym_highlighted_begin] = STATE(1158), - [sym_insert] = STATE(147), - [sym_insert_begin] = STATE(1159), - [sym_delete] = STATE(147), - [sym_delete_begin] = STATE(1160), - [sym_hard_line_break] = STATE(145), - [sym__smart_punctuation] = STATE(145), - [sym_autolink] = STATE(145), - [sym_footnote_reference] = STATE(147), - [sym_footnote_marker_begin] = STATE(1161), - [sym__image] = STATE(147), - [sym_full_reference_image] = STATE(147), - [sym_collapsed_reference_image] = STATE(147), - [sym_inline_image] = STATE(147), - [sym_image_description] = STATE(665), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(147), - [sym_full_reference_link] = STATE(147), - [sym_collapsed_reference_link] = STATE(147), - [sym_inline_link] = STATE(147), - [sym_link_text] = STATE(664), - [sym_span] = STATE(22), - [sym__bracketed_text_begin] = STATE(1209), - [sym__comment_with_spaces] = STATE(145), - [sym_raw_inline] = STATE(145), - [sym_math] = STATE(145), - [sym_verbatim] = STATE(145), - [sym__todo_highlights] = STATE(145), - [sym_todo] = STATE(145), - [sym_note] = STATE(145), - [sym__symbol_fallback] = STATE(145), - [aux_sym__text] = STATE(124), - [aux_sym__inline_repeat1] = STATE(22), - [anon_sym_LBRACE_] = ACTIONS(101), - [anon_sym__] = ACTIONS(103), - [anon_sym_LBRACE_STAR] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_LBRACE_CARET] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(109), - [anon_sym_LBRACE_TILDE] = ACTIONS(111), - [anon_sym_TILDE] = ACTIONS(111), - [anon_sym_LBRACE_EQ] = ACTIONS(113), - [anon_sym_LBRACE_PLUS] = ACTIONS(115), - [anon_sym_LBRACE_DASH] = ACTIONS(117), - [anon_sym_BSLASH] = ACTIONS(119), - [sym_quotation_marks] = ACTIONS(121), - [sym_ellipsis] = ACTIONS(121), - [sym_em_dash] = ACTIONS(121), - [sym_en_dash] = ACTIONS(123), - [sym_backslash_escape] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(125), - [sym_symbol] = ACTIONS(121), - [anon_sym_LBRACK_CARET] = ACTIONS(127), - [anon_sym_BANG_LBRACK] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_TODO] = ACTIONS(137), - [anon_sym_WIP] = ACTIONS(137), - [anon_sym_NOTE] = ACTIONS(139), - [anon_sym_INFO] = ACTIONS(139), - [anon_sym_XXX] = ACTIONS(139), - [sym_fixme] = ACTIONS(121), - [sym__whitespace1] = ACTIONS(141), - [sym__newline] = ACTIONS(143), - [aux_sym__text_token1] = ACTIONS(145), - [sym__verbatim_begin] = ACTIONS(147), - }, - [81] = { - [sym__inline] = STATE(886), - [sym__element] = STATE(110), - [sym_emphasis] = STATE(146), + [sym__inline] = STATE(1028), + [sym__element] = STATE(16), + [sym_emphasis] = STATE(143), [sym_emphasis_begin] = STATE(1144), - [sym_strong] = STATE(146), + [sym_strong] = STATE(143), [sym_strong_begin] = STATE(1145), - [sym_superscript] = STATE(146), + [sym_superscript] = STATE(143), [sym_superscript_begin] = STATE(1146), - [sym_subscript] = STATE(146), + [sym_subscript] = STATE(143), [sym_subscript_begin] = STATE(1147), - [sym_highlighted] = STATE(146), + [sym_highlighted] = STATE(143), [sym_highlighted_begin] = STATE(1148), - [sym_insert] = STATE(146), + [sym_insert] = STATE(143), [sym_insert_begin] = STATE(1149), - [sym_delete] = STATE(146), + [sym_delete] = STATE(143), [sym_delete_begin] = STATE(1150), - [sym_hard_line_break] = STATE(144), - [sym__smart_punctuation] = STATE(144), - [sym_autolink] = STATE(144), - [sym_footnote_reference] = STATE(146), + [sym_hard_line_break] = STATE(141), + [sym__smart_punctuation] = STATE(141), + [sym_autolink] = STATE(141), + [sym_footnote_reference] = STATE(143), [sym_footnote_marker_begin] = STATE(1151), - [sym__image] = STATE(146), - [sym_full_reference_image] = STATE(146), - [sym_collapsed_reference_image] = STATE(146), - [sym_inline_image] = STATE(146), - [sym_image_description] = STATE(673), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(146), - [sym_full_reference_link] = STATE(146), - [sym_collapsed_reference_link] = STATE(146), - [sym_inline_link] = STATE(146), - [sym_link_text] = STATE(662), - [sym_span] = STATE(110), - [sym__bracketed_text_begin] = STATE(1208), - [sym__comment_with_spaces] = STATE(144), - [sym_raw_inline] = STATE(144), - [sym_math] = STATE(144), - [sym_verbatim] = STATE(144), - [sym__todo_highlights] = STATE(144), - [sym_todo] = STATE(144), - [sym_note] = STATE(144), - [sym__symbol_fallback] = STATE(144), - [aux_sym__text] = STATE(128), - [aux_sym__inline_repeat1] = STATE(110), - [anon_sym_LBRACE_] = ACTIONS(587), - [anon_sym__] = ACTIONS(589), - [anon_sym_LBRACE_STAR] = ACTIONS(591), - [anon_sym_STAR] = ACTIONS(593), - [anon_sym_LBRACE_CARET] = ACTIONS(595), - [anon_sym_CARET] = ACTIONS(595), - [anon_sym_LBRACE_TILDE] = ACTIONS(597), - [anon_sym_TILDE] = ACTIONS(597), - [anon_sym_LBRACE_EQ] = ACTIONS(599), - [anon_sym_LBRACE_PLUS] = ACTIONS(601), - [anon_sym_LBRACE_DASH] = ACTIONS(603), - [anon_sym_BSLASH] = ACTIONS(605), - [sym_quotation_marks] = ACTIONS(607), - [sym_ellipsis] = ACTIONS(607), - [sym_em_dash] = ACTIONS(607), - [sym_en_dash] = ACTIONS(609), - [sym_backslash_escape] = ACTIONS(609), - [anon_sym_LT] = ACTIONS(611), - [sym_symbol] = ACTIONS(607), - [anon_sym_LBRACK_CARET] = ACTIONS(613), - [anon_sym_BANG_LBRACK] = ACTIONS(615), - [anon_sym_LBRACK] = ACTIONS(617), - [anon_sym_LPAREN] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [anon_sym_TODO] = ACTIONS(623), - [anon_sym_WIP] = ACTIONS(623), - [anon_sym_NOTE] = ACTIONS(625), - [anon_sym_INFO] = ACTIONS(625), - [anon_sym_XXX] = ACTIONS(625), - [sym_fixme] = ACTIONS(607), - [sym__whitespace1] = ACTIONS(627), - [sym__newline] = ACTIONS(629), - [aux_sym__text_token1] = ACTIONS(631), - [sym__verbatim_begin] = ACTIONS(633), - }, - [82] = { - [sym__inline] = STATE(1113), - [sym__element] = STATE(14), - [sym_emphasis] = STATE(136), - [sym_emphasis_begin] = STATE(1134), - [sym_strong] = STATE(136), - [sym_strong_begin] = STATE(1135), - [sym_superscript] = STATE(136), - [sym_superscript_begin] = STATE(1136), - [sym_subscript] = STATE(136), - [sym_subscript_begin] = STATE(1137), - [sym_highlighted] = STATE(136), - [sym_highlighted_begin] = STATE(1138), - [sym_insert] = STATE(136), - [sym_insert_begin] = STATE(1139), - [sym_delete] = STATE(136), - [sym_delete_begin] = STATE(1140), - [sym_hard_line_break] = STATE(134), - [sym__smart_punctuation] = STATE(134), - [sym_autolink] = STATE(134), - [sym_footnote_reference] = STATE(136), - [sym_footnote_marker_begin] = STATE(1141), - [sym__image] = STATE(136), - [sym_full_reference_image] = STATE(136), - [sym_collapsed_reference_image] = STATE(136), - [sym_inline_image] = STATE(136), - [sym_image_description] = STATE(670), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(136), - [sym_full_reference_link] = STATE(136), - [sym_collapsed_reference_link] = STATE(136), - [sym_inline_link] = STATE(136), - [sym_link_text] = STATE(671), - [sym_span] = STATE(14), - [sym__bracketed_text_begin] = STATE(1207), - [sym__comment_with_spaces] = STATE(134), - [sym_raw_inline] = STATE(134), - [sym_math] = STATE(134), - [sym_verbatim] = STATE(134), - [sym__todo_highlights] = STATE(134), - [sym_todo] = STATE(134), - [sym_note] = STATE(134), - [sym__symbol_fallback] = STATE(134), - [aux_sym__text] = STATE(129), - [aux_sym__inline_repeat1] = STATE(14), - [anon_sym_LBRACE_] = ACTIONS(295), - [anon_sym__] = ACTIONS(297), - [anon_sym_LBRACE_STAR] = ACTIONS(299), - [anon_sym_STAR] = ACTIONS(301), - [anon_sym_LBRACE_CARET] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(303), - [anon_sym_LBRACE_TILDE] = ACTIONS(305), - [anon_sym_TILDE] = ACTIONS(305), - [anon_sym_LBRACE_EQ] = ACTIONS(307), - [anon_sym_LBRACE_PLUS] = ACTIONS(309), - [anon_sym_LBRACE_DASH] = ACTIONS(311), - [anon_sym_BSLASH] = ACTIONS(313), - [sym_quotation_marks] = ACTIONS(315), - [sym_ellipsis] = ACTIONS(315), - [sym_em_dash] = ACTIONS(315), - [sym_en_dash] = ACTIONS(317), - [sym_backslash_escape] = ACTIONS(317), - [anon_sym_LT] = ACTIONS(319), - [sym_symbol] = ACTIONS(315), - [anon_sym_LBRACK_CARET] = ACTIONS(321), - [anon_sym_BANG_LBRACK] = ACTIONS(323), - [anon_sym_LBRACK] = ACTIONS(325), - [anon_sym_LPAREN] = ACTIONS(327), - [anon_sym_DOLLAR] = ACTIONS(329), - [anon_sym_TODO] = ACTIONS(331), - [anon_sym_WIP] = ACTIONS(331), - [anon_sym_NOTE] = ACTIONS(333), - [anon_sym_INFO] = ACTIONS(333), - [anon_sym_XXX] = ACTIONS(333), - [sym_fixme] = ACTIONS(315), - [sym__whitespace1] = ACTIONS(335), - [sym__newline] = ACTIONS(635), - [aux_sym__text_token1] = ACTIONS(339), - [sym__verbatim_begin] = ACTIONS(341), + [sym__image] = STATE(143), + [sym_full_reference_image] = STATE(143), + [sym_collapsed_reference_image] = STATE(143), + [sym_inline_image] = STATE(143), + [sym_image_description] = STATE(660), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(143), + [sym_full_reference_link] = STATE(143), + [sym_collapsed_reference_link] = STATE(143), + [sym_inline_link] = STATE(143), + [sym_link_text] = STATE(661), + [sym_span] = STATE(16), + [sym__bracketed_text_begin] = STATE(1217), + [sym__comment_with_spaces] = STATE(141), + [sym_raw_inline] = STATE(141), + [sym_math] = STATE(141), + [sym_verbatim] = STATE(141), + [sym__todo_highlights] = STATE(141), + [sym_todo] = STATE(141), + [sym_note] = STATE(141), + [sym__symbol_fallback] = STATE(141), + [sym__newline] = STATE(16), + [aux_sym__text] = STATE(125), + [aux_sym__inline_repeat1] = STATE(16), + [anon_sym_LBRACE_] = ACTIONS(259), + [anon_sym__] = ACTIONS(261), + [anon_sym_LBRACE_STAR] = ACTIONS(263), + [anon_sym_STAR] = ACTIONS(265), + [anon_sym_LBRACE_CARET] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_LBRACE_TILDE] = ACTIONS(269), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_LBRACE_EQ] = ACTIONS(271), + [anon_sym_LBRACE_PLUS] = ACTIONS(273), + [anon_sym_LBRACE_DASH] = ACTIONS(275), + [anon_sym_BSLASH] = ACTIONS(277), + [sym_quotation_marks] = ACTIONS(279), + [sym_ellipsis] = ACTIONS(279), + [sym_em_dash] = ACTIONS(279), + [sym_en_dash] = ACTIONS(281), + [sym_backslash_escape] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(283), + [sym_symbol] = ACTIONS(279), + [anon_sym_LBRACK_CARET] = ACTIONS(285), + [anon_sym_BANG_LBRACK] = ACTIONS(287), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_DOLLAR] = ACTIONS(295), + [anon_sym_TODO] = ACTIONS(297), + [anon_sym_WIP] = ACTIONS(297), + [anon_sym_NOTE] = ACTIONS(299), + [anon_sym_INFO] = ACTIONS(299), + [anon_sym_XXX] = ACTIONS(299), + [sym_fixme] = ACTIONS(279), + [sym__whitespace1] = ACTIONS(301), + [anon_sym_LF] = ACTIONS(303), + [aux_sym__text_token1] = ACTIONS(305), + [sym__verbatim_begin] = ACTIONS(307), }, - [83] = { - [sym__inline] = STATE(1011), - [sym__element] = STATE(46), + [81] = { + [sym__inline] = STATE(1029), + [sym__element] = STATE(18), [sym_emphasis] = STATE(135), - [sym_emphasis_begin] = STATE(1174), + [sym_emphasis_begin] = STATE(1154), [sym_strong] = STATE(135), - [sym_strong_begin] = STATE(1175), + [sym_strong_begin] = STATE(1155), [sym_superscript] = STATE(135), - [sym_superscript_begin] = STATE(1176), + [sym_superscript_begin] = STATE(1156), [sym_subscript] = STATE(135), - [sym_subscript_begin] = STATE(1177), + [sym_subscript_begin] = STATE(1157), [sym_highlighted] = STATE(135), - [sym_highlighted_begin] = STATE(1178), + [sym_highlighted_begin] = STATE(1158), [sym_insert] = STATE(135), - [sym_insert_begin] = STATE(1179), + [sym_insert_begin] = STATE(1159), [sym_delete] = STATE(135), - [sym_delete_begin] = STATE(1180), - [sym_hard_line_break] = STATE(138), - [sym__smart_punctuation] = STATE(138), - [sym_autolink] = STATE(138), + [sym_delete_begin] = STATE(1160), + [sym_hard_line_break] = STATE(134), + [sym__smart_punctuation] = STATE(134), + [sym_autolink] = STATE(134), [sym_footnote_reference] = STATE(135), - [sym_footnote_marker_begin] = STATE(1181), + [sym_footnote_marker_begin] = STATE(1161), [sym__image] = STATE(135), [sym_full_reference_image] = STATE(135), [sym_collapsed_reference_image] = STATE(135), [sym_inline_image] = STATE(135), - [sym_image_description] = STATE(656), - [sym__image_description_begin] = STATE(1079), + [sym_image_description] = STATE(677), + [sym__image_description_begin] = STATE(958), [sym__link] = STATE(135), [sym_full_reference_link] = STATE(135), [sym_collapsed_reference_link] = STATE(135), [sym_inline_link] = STATE(135), - [sym_link_text] = STATE(654), - [sym_span] = STATE(46), - [sym__bracketed_text_begin] = STATE(1211), - [sym__comment_with_spaces] = STATE(138), - [sym_raw_inline] = STATE(138), - [sym_math] = STATE(138), - [sym_verbatim] = STATE(138), - [sym__todo_highlights] = STATE(138), - [sym_todo] = STATE(138), - [sym_note] = STATE(138), - [sym__symbol_fallback] = STATE(138), - [aux_sym__text] = STATE(121), - [aux_sym__inline_repeat1] = STATE(46), - [anon_sym_LBRACE_] = ACTIONS(345), - [anon_sym__] = ACTIONS(347), - [anon_sym_LBRACE_STAR] = ACTIONS(349), - [anon_sym_STAR] = ACTIONS(351), - [anon_sym_LBRACE_CARET] = ACTIONS(353), - [anon_sym_CARET] = ACTIONS(353), - [anon_sym_LBRACE_TILDE] = ACTIONS(355), - [anon_sym_TILDE] = ACTIONS(355), - [anon_sym_LBRACE_EQ] = ACTIONS(357), - [anon_sym_LBRACE_PLUS] = ACTIONS(359), - [anon_sym_LBRACE_DASH] = ACTIONS(361), - [anon_sym_BSLASH] = ACTIONS(363), - [sym_quotation_marks] = ACTIONS(365), - [sym_ellipsis] = ACTIONS(365), - [sym_em_dash] = ACTIONS(365), - [sym_en_dash] = ACTIONS(367), - [sym_backslash_escape] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(369), - [sym_symbol] = ACTIONS(365), - [anon_sym_LBRACK_CARET] = ACTIONS(371), - [anon_sym_BANG_LBRACK] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LPAREN] = ACTIONS(377), - [anon_sym_DOLLAR] = ACTIONS(379), - [anon_sym_TODO] = ACTIONS(381), - [anon_sym_WIP] = ACTIONS(381), - [anon_sym_NOTE] = ACTIONS(383), - [anon_sym_INFO] = ACTIONS(383), - [anon_sym_XXX] = ACTIONS(383), - [sym_fixme] = ACTIONS(365), - [sym__whitespace1] = ACTIONS(385), - [sym__newline] = ACTIONS(387), - [aux_sym__text_token1] = ACTIONS(389), - [sym__verbatim_begin] = ACTIONS(391), + [sym_link_text] = STATE(680), + [sym_span] = STATE(18), + [sym__bracketed_text_begin] = STATE(1218), + [sym__comment_with_spaces] = STATE(134), + [sym_raw_inline] = STATE(134), + [sym_math] = STATE(134), + [sym_verbatim] = STATE(134), + [sym__todo_highlights] = STATE(134), + [sym_todo] = STATE(134), + [sym_note] = STATE(134), + [sym__symbol_fallback] = STATE(134), + [sym__newline] = STATE(18), + [aux_sym__text] = STATE(123), + [aux_sym__inline_repeat1] = STATE(18), + [anon_sym_LBRACE_] = ACTIONS(309), + [anon_sym__] = ACTIONS(311), + [anon_sym_LBRACE_STAR] = ACTIONS(313), + [anon_sym_STAR] = ACTIONS(315), + [anon_sym_LBRACE_CARET] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_LBRACE_TILDE] = ACTIONS(319), + [anon_sym_TILDE] = ACTIONS(319), + [anon_sym_LBRACE_EQ] = ACTIONS(321), + [anon_sym_LBRACE_PLUS] = ACTIONS(323), + [anon_sym_LBRACE_DASH] = ACTIONS(325), + [anon_sym_BSLASH] = ACTIONS(327), + [sym_quotation_marks] = ACTIONS(329), + [sym_ellipsis] = ACTIONS(329), + [sym_em_dash] = ACTIONS(329), + [sym_en_dash] = ACTIONS(331), + [sym_backslash_escape] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [sym_symbol] = ACTIONS(329), + [anon_sym_LBRACK_CARET] = ACTIONS(335), + [anon_sym_BANG_LBRACK] = ACTIONS(337), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(339), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_DOLLAR] = ACTIONS(345), + [anon_sym_TODO] = ACTIONS(347), + [anon_sym_WIP] = ACTIONS(347), + [anon_sym_NOTE] = ACTIONS(349), + [anon_sym_INFO] = ACTIONS(349), + [anon_sym_XXX] = ACTIONS(349), + [sym_fixme] = ACTIONS(329), + [sym__whitespace1] = ACTIONS(351), + [anon_sym_LF] = ACTIONS(353), + [aux_sym__text_token1] = ACTIONS(355), + [sym__verbatim_begin] = ACTIONS(357), }, - [84] = { - [sym__inline] = STATE(888), - [sym__element] = STATE(14), + [82] = { + [sym__inline] = STATE(1037), + [sym__element] = STATE(20), [sym_emphasis] = STATE(136), - [sym_emphasis_begin] = STATE(1134), + [sym_emphasis_begin] = STATE(1164), [sym_strong] = STATE(136), - [sym_strong_begin] = STATE(1135), + [sym_strong_begin] = STATE(1165), [sym_superscript] = STATE(136), - [sym_superscript_begin] = STATE(1136), + [sym_superscript_begin] = STATE(1166), [sym_subscript] = STATE(136), - [sym_subscript_begin] = STATE(1137), + [sym_subscript_begin] = STATE(1167), [sym_highlighted] = STATE(136), - [sym_highlighted_begin] = STATE(1138), + [sym_highlighted_begin] = STATE(1168), [sym_insert] = STATE(136), - [sym_insert_begin] = STATE(1139), + [sym_insert_begin] = STATE(1169), [sym_delete] = STATE(136), - [sym_delete_begin] = STATE(1140), - [sym_hard_line_break] = STATE(134), - [sym__smart_punctuation] = STATE(134), - [sym_autolink] = STATE(134), + [sym_delete_begin] = STATE(1170), + [sym_hard_line_break] = STATE(138), + [sym__smart_punctuation] = STATE(138), + [sym_autolink] = STATE(138), [sym_footnote_reference] = STATE(136), - [sym_footnote_marker_begin] = STATE(1141), + [sym_footnote_marker_begin] = STATE(1171), [sym__image] = STATE(136), [sym_full_reference_image] = STATE(136), [sym_collapsed_reference_image] = STATE(136), [sym_inline_image] = STATE(136), - [sym_image_description] = STATE(670), - [sym__image_description_begin] = STATE(1079), + [sym_image_description] = STATE(685), + [sym__image_description_begin] = STATE(958), [sym__link] = STATE(136), [sym_full_reference_link] = STATE(136), [sym_collapsed_reference_link] = STATE(136), [sym_inline_link] = STATE(136), - [sym_link_text] = STATE(671), - [sym_span] = STATE(14), - [sym__bracketed_text_begin] = STATE(1207), - [sym__comment_with_spaces] = STATE(134), - [sym_raw_inline] = STATE(134), - [sym_math] = STATE(134), - [sym_verbatim] = STATE(134), - [sym__todo_highlights] = STATE(134), - [sym_todo] = STATE(134), - [sym_note] = STATE(134), - [sym__symbol_fallback] = STATE(134), + [sym_link_text] = STATE(686), + [sym_span] = STATE(20), + [sym__bracketed_text_begin] = STATE(1219), + [sym__comment_with_spaces] = STATE(138), + [sym_raw_inline] = STATE(138), + [sym_math] = STATE(138), + [sym_verbatim] = STATE(138), + [sym__todo_highlights] = STATE(138), + [sym_todo] = STATE(138), + [sym_note] = STATE(138), + [sym__symbol_fallback] = STATE(138), + [sym__newline] = STATE(20), + [aux_sym__text] = STATE(126), + [aux_sym__inline_repeat1] = STATE(20), + [anon_sym_LBRACE_] = ACTIONS(359), + [anon_sym__] = ACTIONS(361), + [anon_sym_LBRACE_STAR] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(365), + [anon_sym_LBRACE_CARET] = ACTIONS(367), + [anon_sym_CARET] = ACTIONS(367), + [anon_sym_LBRACE_TILDE] = ACTIONS(369), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_LBRACE_EQ] = ACTIONS(371), + [anon_sym_LBRACE_PLUS] = ACTIONS(373), + [anon_sym_LBRACE_DASH] = ACTIONS(375), + [anon_sym_BSLASH] = ACTIONS(377), + [sym_quotation_marks] = ACTIONS(379), + [sym_ellipsis] = ACTIONS(379), + [sym_em_dash] = ACTIONS(379), + [sym_en_dash] = ACTIONS(381), + [sym_backslash_escape] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(383), + [sym_symbol] = ACTIONS(379), + [anon_sym_LBRACK_CARET] = ACTIONS(385), + [anon_sym_BANG_LBRACK] = ACTIONS(387), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(393), + [anon_sym_DOLLAR] = ACTIONS(395), + [anon_sym_TODO] = ACTIONS(397), + [anon_sym_WIP] = ACTIONS(397), + [anon_sym_NOTE] = ACTIONS(399), + [anon_sym_INFO] = ACTIONS(399), + [anon_sym_XXX] = ACTIONS(399), + [sym_fixme] = ACTIONS(379), + [sym__whitespace1] = ACTIONS(401), + [anon_sym_LF] = ACTIONS(403), + [aux_sym__text_token1] = ACTIONS(405), + [sym__verbatim_begin] = ACTIONS(407), + }, + [83] = { + [sym__inline] = STATE(1040), + [sym__element] = STATE(22), + [sym_emphasis] = STATE(140), + [sym_emphasis_begin] = STATE(1174), + [sym_strong] = STATE(140), + [sym_strong_begin] = STATE(1175), + [sym_superscript] = STATE(140), + [sym_superscript_begin] = STATE(1176), + [sym_subscript] = STATE(140), + [sym_subscript_begin] = STATE(1177), + [sym_highlighted] = STATE(140), + [sym_highlighted_begin] = STATE(1178), + [sym_insert] = STATE(140), + [sym_insert_begin] = STATE(1179), + [sym_delete] = STATE(140), + [sym_delete_begin] = STATE(1180), + [sym_hard_line_break] = STATE(139), + [sym__smart_punctuation] = STATE(139), + [sym_autolink] = STATE(139), + [sym_footnote_reference] = STATE(140), + [sym_footnote_marker_begin] = STATE(1181), + [sym__image] = STATE(140), + [sym_full_reference_image] = STATE(140), + [sym_collapsed_reference_image] = STATE(140), + [sym_inline_image] = STATE(140), + [sym_image_description] = STATE(655), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(140), + [sym_full_reference_link] = STATE(140), + [sym_collapsed_reference_link] = STATE(140), + [sym_inline_link] = STATE(140), + [sym_link_text] = STATE(656), + [sym_span] = STATE(22), + [sym__bracketed_text_begin] = STATE(1220), + [sym__comment_with_spaces] = STATE(139), + [sym_raw_inline] = STATE(139), + [sym_math] = STATE(139), + [sym_verbatim] = STATE(139), + [sym__todo_highlights] = STATE(139), + [sym_todo] = STATE(139), + [sym_note] = STATE(139), + [sym__symbol_fallback] = STATE(139), + [sym__newline] = STATE(22), + [aux_sym__text] = STATE(127), + [aux_sym__inline_repeat1] = STATE(22), + [anon_sym_LBRACE_] = ACTIONS(409), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_STAR] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(415), + [anon_sym_LBRACE_CARET] = ACTIONS(417), + [anon_sym_CARET] = ACTIONS(417), + [anon_sym_LBRACE_TILDE] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(419), + [anon_sym_LBRACE_EQ] = ACTIONS(421), + [anon_sym_LBRACE_PLUS] = ACTIONS(423), + [anon_sym_LBRACE_DASH] = ACTIONS(425), + [anon_sym_BSLASH] = ACTIONS(427), + [sym_quotation_marks] = ACTIONS(429), + [sym_ellipsis] = ACTIONS(429), + [sym_em_dash] = ACTIONS(429), + [sym_en_dash] = ACTIONS(431), + [sym_backslash_escape] = ACTIONS(431), + [anon_sym_LT] = ACTIONS(433), + [sym_symbol] = ACTIONS(429), + [anon_sym_LBRACK_CARET] = ACTIONS(435), + [anon_sym_BANG_LBRACK] = ACTIONS(437), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(439), + [anon_sym_LBRACK] = ACTIONS(441), + [anon_sym_LPAREN] = ACTIONS(443), + [anon_sym_DOLLAR] = ACTIONS(445), + [anon_sym_TODO] = ACTIONS(447), + [anon_sym_WIP] = ACTIONS(447), + [anon_sym_NOTE] = ACTIONS(449), + [anon_sym_INFO] = ACTIONS(449), + [anon_sym_XXX] = ACTIONS(449), + [sym_fixme] = ACTIONS(429), + [sym__whitespace1] = ACTIONS(451), + [anon_sym_LF] = ACTIONS(453), + [aux_sym__text_token1] = ACTIONS(455), + [sym__verbatim_begin] = ACTIONS(457), + }, + [84] = { + [sym__inline] = STATE(1042), + [sym__element] = STATE(24), + [sym_emphasis] = STATE(131), + [sym_emphasis_begin] = STATE(1184), + [sym_strong] = STATE(131), + [sym_strong_begin] = STATE(1185), + [sym_superscript] = STATE(131), + [sym_superscript_begin] = STATE(1186), + [sym_subscript] = STATE(131), + [sym_subscript_begin] = STATE(1187), + [sym_highlighted] = STATE(131), + [sym_highlighted_begin] = STATE(1188), + [sym_insert] = STATE(131), + [sym_insert_begin] = STATE(1189), + [sym_delete] = STATE(131), + [sym_delete_begin] = STATE(1190), + [sym_hard_line_break] = STATE(145), + [sym__smart_punctuation] = STATE(145), + [sym_autolink] = STATE(145), + [sym_footnote_reference] = STATE(131), + [sym_footnote_marker_begin] = STATE(1191), + [sym__image] = STATE(131), + [sym_full_reference_image] = STATE(131), + [sym_collapsed_reference_image] = STATE(131), + [sym_inline_image] = STATE(131), + [sym_image_description] = STATE(662), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(131), + [sym_full_reference_link] = STATE(131), + [sym_collapsed_reference_link] = STATE(131), + [sym_inline_link] = STATE(131), + [sym_link_text] = STATE(663), + [sym_span] = STATE(24), + [sym__bracketed_text_begin] = STATE(1221), + [sym__comment_with_spaces] = STATE(145), + [sym_raw_inline] = STATE(145), + [sym_math] = STATE(145), + [sym_verbatim] = STATE(145), + [sym__todo_highlights] = STATE(145), + [sym_todo] = STATE(145), + [sym_note] = STATE(145), + [sym__symbol_fallback] = STATE(145), + [sym__newline] = STATE(24), [aux_sym__text] = STATE(129), - [aux_sym__inline_repeat1] = STATE(14), - [anon_sym_LBRACE_] = ACTIONS(295), - [anon_sym__] = ACTIONS(297), - [anon_sym_LBRACE_STAR] = ACTIONS(299), - [anon_sym_STAR] = ACTIONS(301), - [anon_sym_LBRACE_CARET] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(303), - [anon_sym_LBRACE_TILDE] = ACTIONS(305), - [anon_sym_TILDE] = ACTIONS(305), - [anon_sym_LBRACE_EQ] = ACTIONS(307), - [anon_sym_LBRACE_PLUS] = ACTIONS(309), - [anon_sym_LBRACE_DASH] = ACTIONS(311), - [anon_sym_BSLASH] = ACTIONS(313), - [sym_quotation_marks] = ACTIONS(315), - [sym_ellipsis] = ACTIONS(315), - [sym_em_dash] = ACTIONS(315), - [sym_en_dash] = ACTIONS(317), - [sym_backslash_escape] = ACTIONS(317), - [anon_sym_LT] = ACTIONS(319), - [sym_symbol] = ACTIONS(315), - [anon_sym_LBRACK_CARET] = ACTIONS(321), - [anon_sym_BANG_LBRACK] = ACTIONS(323), - [anon_sym_LBRACK] = ACTIONS(325), - [anon_sym_LPAREN] = ACTIONS(327), - [anon_sym_DOLLAR] = ACTIONS(329), - [anon_sym_TODO] = ACTIONS(331), - [anon_sym_WIP] = ACTIONS(331), - [anon_sym_NOTE] = ACTIONS(333), - [anon_sym_INFO] = ACTIONS(333), - [anon_sym_XXX] = ACTIONS(333), - [sym_fixme] = ACTIONS(315), - [sym__whitespace1] = ACTIONS(335), - [sym__newline] = ACTIONS(635), - [aux_sym__text_token1] = ACTIONS(339), - [sym__verbatim_begin] = ACTIONS(341), + [aux_sym__inline_repeat1] = STATE(24), + [anon_sym_LBRACE_] = ACTIONS(459), + [anon_sym__] = ACTIONS(461), + [anon_sym_LBRACE_STAR] = ACTIONS(463), + [anon_sym_STAR] = ACTIONS(465), + [anon_sym_LBRACE_CARET] = ACTIONS(467), + [anon_sym_CARET] = ACTIONS(467), + [anon_sym_LBRACE_TILDE] = ACTIONS(469), + [anon_sym_TILDE] = ACTIONS(469), + [anon_sym_LBRACE_EQ] = ACTIONS(471), + [anon_sym_LBRACE_PLUS] = ACTIONS(473), + [anon_sym_LBRACE_DASH] = ACTIONS(475), + [anon_sym_BSLASH] = ACTIONS(477), + [sym_quotation_marks] = ACTIONS(479), + [sym_ellipsis] = ACTIONS(479), + [sym_em_dash] = ACTIONS(479), + [sym_en_dash] = ACTIONS(481), + [sym_backslash_escape] = ACTIONS(481), + [anon_sym_LT] = ACTIONS(483), + [sym_symbol] = ACTIONS(479), + [anon_sym_LBRACK_CARET] = ACTIONS(485), + [anon_sym_BANG_LBRACK] = ACTIONS(487), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(489), + [anon_sym_LBRACK] = ACTIONS(491), + [anon_sym_LPAREN] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(495), + [anon_sym_TODO] = ACTIONS(497), + [anon_sym_WIP] = ACTIONS(497), + [anon_sym_NOTE] = ACTIONS(499), + [anon_sym_INFO] = ACTIONS(499), + [anon_sym_XXX] = ACTIONS(499), + [sym_fixme] = ACTIONS(479), + [sym__whitespace1] = ACTIONS(501), + [anon_sym_LF] = ACTIONS(503), + [aux_sym__text_token1] = ACTIONS(505), + [sym__verbatim_begin] = ACTIONS(507), }, [85] = { - [sym__inline] = STATE(890), - [sym__element] = STATE(64), - [sym_emphasis] = STATE(133), - [sym_emphasis_begin] = STATE(1124), - [sym_strong] = STATE(133), - [sym_strong_begin] = STATE(1125), - [sym_superscript] = STATE(133), - [sym_superscript_begin] = STATE(1126), - [sym_subscript] = STATE(133), - [sym_subscript_begin] = STATE(1127), - [sym_highlighted] = STATE(133), - [sym_highlighted_begin] = STATE(1128), - [sym_insert] = STATE(133), - [sym_insert_begin] = STATE(1129), - [sym_delete] = STATE(133), - [sym_delete_begin] = STATE(1130), - [sym_hard_line_break] = STATE(140), - [sym__smart_punctuation] = STATE(140), - [sym_autolink] = STATE(140), - [sym_footnote_reference] = STATE(133), - [sym_footnote_marker_begin] = STATE(1131), - [sym__image] = STATE(133), - [sym_full_reference_image] = STATE(133), - [sym_collapsed_reference_image] = STATE(133), - [sym_inline_image] = STATE(133), - [sym_image_description] = STATE(663), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(133), - [sym_full_reference_link] = STATE(133), - [sym_collapsed_reference_link] = STATE(133), - [sym_inline_link] = STATE(133), - [sym_link_text] = STATE(669), - [sym_span] = STATE(64), - [sym__bracketed_text_begin] = STATE(1206), - [sym__comment_with_spaces] = STATE(140), - [sym_raw_inline] = STATE(140), - [sym_math] = STATE(140), - [sym_verbatim] = STATE(140), - [sym__todo_highlights] = STATE(140), - [sym_todo] = STATE(140), - [sym_note] = STATE(140), - [sym__symbol_fallback] = STATE(140), - [aux_sym__text] = STATE(122), - [aux_sym__inline_repeat1] = STATE(64), - [anon_sym_LBRACE_] = ACTIONS(537), - [anon_sym__] = ACTIONS(539), - [anon_sym_LBRACE_STAR] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(543), - [anon_sym_LBRACE_CARET] = ACTIONS(545), - [anon_sym_CARET] = ACTIONS(545), - [anon_sym_LBRACE_TILDE] = ACTIONS(547), - [anon_sym_TILDE] = ACTIONS(547), - [anon_sym_LBRACE_EQ] = ACTIONS(549), - [anon_sym_LBRACE_PLUS] = ACTIONS(551), - [anon_sym_LBRACE_DASH] = ACTIONS(553), - [anon_sym_BSLASH] = ACTIONS(555), - [sym_quotation_marks] = ACTIONS(557), - [sym_ellipsis] = ACTIONS(557), - [sym_em_dash] = ACTIONS(557), - [sym_en_dash] = ACTIONS(559), - [sym_backslash_escape] = ACTIONS(559), - [anon_sym_LT] = ACTIONS(561), - [sym_symbol] = ACTIONS(557), - [anon_sym_LBRACK_CARET] = ACTIONS(563), - [anon_sym_BANG_LBRACK] = ACTIONS(565), - [anon_sym_LBRACK] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_DOLLAR] = ACTIONS(571), - [anon_sym_TODO] = ACTIONS(573), - [anon_sym_WIP] = ACTIONS(573), - [anon_sym_NOTE] = ACTIONS(575), - [anon_sym_INFO] = ACTIONS(575), - [anon_sym_XXX] = ACTIONS(575), - [sym_fixme] = ACTIONS(557), - [sym__whitespace1] = ACTIONS(577), - [sym__newline] = ACTIONS(579), - [aux_sym__text_token1] = ACTIONS(581), - [sym__verbatim_begin] = ACTIONS(583), - }, - [86] = { - [sym__inline_without_trailing_space] = STATE(891), - [sym__element] = STATE(550), - [sym_emphasis] = STATE(137), + [sym__inline_without_trailing_space] = STATE(1110), + [sym__element] = STATE(543), + [sym_emphasis] = STATE(150), [sym_emphasis_begin] = STATE(1114), - [sym_strong] = STATE(137), + [sym_strong] = STATE(150), [sym_strong_begin] = STATE(1115), - [sym_superscript] = STATE(137), + [sym_superscript] = STATE(150), [sym_superscript_begin] = STATE(1116), - [sym_subscript] = STATE(137), + [sym_subscript] = STATE(150), [sym_subscript_begin] = STATE(1117), - [sym_highlighted] = STATE(137), + [sym_highlighted] = STATE(150), [sym_highlighted_begin] = STATE(1118), - [sym_insert] = STATE(137), + [sym_insert] = STATE(150), [sym_insert_begin] = STATE(1119), - [sym_delete] = STATE(137), + [sym_delete] = STATE(150), [sym_delete_begin] = STATE(1120), - [sym_hard_line_break] = STATE(131), - [sym__smart_punctuation] = STATE(131), - [sym_autolink] = STATE(131), - [sym_footnote_reference] = STATE(137), + [sym_hard_line_break] = STATE(133), + [sym__smart_punctuation] = STATE(133), + [sym_autolink] = STATE(133), + [sym_footnote_reference] = STATE(150), [sym_footnote_marker_begin] = STATE(1121), - [sym__image] = STATE(137), - [sym_full_reference_image] = STATE(137), - [sym_collapsed_reference_image] = STATE(137), - [sym_inline_image] = STATE(137), - [sym_image_description] = STATE(649), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(137), - [sym_full_reference_link] = STATE(137), - [sym_collapsed_reference_link] = STATE(137), - [sym_inline_link] = STATE(137), - [sym_link_text] = STATE(650), - [sym_span] = STATE(550), - [sym__bracketed_text_begin] = STATE(1205), - [sym__comment_with_spaces] = STATE(131), - [sym_raw_inline] = STATE(131), - [sym_math] = STATE(131), - [sym_verbatim] = STATE(131), - [sym__todo_highlights] = STATE(131), - [sym_todo] = STATE(131), - [sym_note] = STATE(131), - [sym__symbol_fallback] = STATE(131), - [aux_sym__text] = STATE(130), + [sym__image] = STATE(150), + [sym_full_reference_image] = STATE(150), + [sym_collapsed_reference_image] = STATE(150), + [sym_inline_image] = STATE(150), + [sym_image_description] = STATE(678), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(150), + [sym_full_reference_link] = STATE(150), + [sym_collapsed_reference_link] = STATE(150), + [sym_inline_link] = STATE(150), + [sym_link_text] = STATE(679), + [sym_span] = STATE(543), + [sym__bracketed_text_begin] = STATE(1214), + [sym__comment_with_spaces] = STATE(133), + [sym_raw_inline] = STATE(133), + [sym_math] = STATE(133), + [sym_verbatim] = STATE(133), + [sym__todo_highlights] = STATE(133), + [sym_todo] = STATE(133), + [sym_note] = STATE(133), + [sym__symbol_fallback] = STATE(133), + [sym__newline] = STATE(119), + [aux_sym__text] = STATE(122), [aux_sym__inline_repeat1] = STATE(119), - [anon_sym_LBRACE_] = ACTIONS(489), - [anon_sym__] = ACTIONS(491), - [anon_sym_LBRACE_STAR] = ACTIONS(493), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_LBRACE_CARET] = ACTIONS(497), - [anon_sym_CARET] = ACTIONS(497), - [anon_sym_LBRACE_TILDE] = ACTIONS(499), - [anon_sym_TILDE] = ACTIONS(499), - [anon_sym_LBRACE_EQ] = ACTIONS(501), - [anon_sym_LBRACE_PLUS] = ACTIONS(503), - [anon_sym_LBRACE_DASH] = ACTIONS(505), - [anon_sym_BSLASH] = ACTIONS(507), - [sym_quotation_marks] = ACTIONS(509), - [sym_ellipsis] = ACTIONS(509), - [sym_em_dash] = ACTIONS(509), - [sym_en_dash] = ACTIONS(511), - [sym_backslash_escape] = ACTIONS(511), - [anon_sym_LT] = ACTIONS(513), - [sym_symbol] = ACTIONS(509), - [anon_sym_LBRACK_CARET] = ACTIONS(515), - [anon_sym_BANG_LBRACK] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(519), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_DOLLAR] = ACTIONS(523), - [anon_sym_TODO] = ACTIONS(525), - [anon_sym_WIP] = ACTIONS(525), - [anon_sym_NOTE] = ACTIONS(527), - [anon_sym_INFO] = ACTIONS(527), - [anon_sym_XXX] = ACTIONS(527), - [sym_fixme] = ACTIONS(509), - [sym__whitespace1] = ACTIONS(529), - [sym__newline] = ACTIONS(531), - [aux_sym__text_token1] = ACTIONS(533), - [sym__verbatim_begin] = ACTIONS(535), - }, - [87] = { - [sym__inline_without_trailing_space] = STATE(892), - [sym__element] = STATE(594), - [sym_emphasis] = STATE(149), - [sym_emphasis_begin] = STATE(1104), - [sym_strong] = STATE(149), - [sym_strong_begin] = STATE(1105), - [sym_superscript] = STATE(149), - [sym_superscript_begin] = STATE(1106), - [sym_subscript] = STATE(149), - [sym_subscript_begin] = STATE(1107), - [sym_highlighted] = STATE(149), - [sym_highlighted_begin] = STATE(1108), - [sym_insert] = STATE(149), - [sym_insert_begin] = STATE(1109), - [sym_delete] = STATE(149), - [sym_delete_begin] = STATE(1110), - [sym_hard_line_break] = STATE(143), - [sym__smart_punctuation] = STATE(143), - [sym_autolink] = STATE(143), - [sym_footnote_reference] = STATE(149), - [sym_footnote_marker_begin] = STATE(1111), - [sym__image] = STATE(149), - [sym_full_reference_image] = STATE(149), - [sym_collapsed_reference_image] = STATE(149), - [sym_inline_image] = STATE(149), - [sym_image_description] = STATE(658), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(149), - [sym_full_reference_link] = STATE(149), - [sym_collapsed_reference_link] = STATE(149), - [sym_inline_link] = STATE(149), - [sym_link_text] = STATE(672), - [sym_span] = STATE(594), - [sym__bracketed_text_begin] = STATE(1204), - [sym__comment_with_spaces] = STATE(143), - [sym_raw_inline] = STATE(143), - [sym_math] = STATE(143), - [sym_verbatim] = STATE(143), - [sym__todo_highlights] = STATE(143), - [sym_todo] = STATE(143), - [sym_note] = STATE(143), - [sym__symbol_fallback] = STATE(143), - [aux_sym__text] = STATE(127), - [aux_sym__inline_repeat1] = STATE(120), - [anon_sym_LBRACE_] = ACTIONS(441), - [anon_sym__] = ACTIONS(443), - [anon_sym_LBRACE_STAR] = ACTIONS(445), - [anon_sym_STAR] = ACTIONS(447), - [anon_sym_LBRACE_CARET] = ACTIONS(449), - [anon_sym_CARET] = ACTIONS(449), - [anon_sym_LBRACE_TILDE] = ACTIONS(451), - [anon_sym_TILDE] = ACTIONS(451), - [anon_sym_LBRACE_EQ] = ACTIONS(453), - [anon_sym_LBRACE_PLUS] = ACTIONS(455), - [anon_sym_LBRACE_DASH] = ACTIONS(457), - [anon_sym_BSLASH] = ACTIONS(459), - [sym_quotation_marks] = ACTIONS(461), - [sym_ellipsis] = ACTIONS(461), - [sym_em_dash] = ACTIONS(461), - [sym_en_dash] = ACTIONS(463), - [sym_backslash_escape] = ACTIONS(463), - [anon_sym_LT] = ACTIONS(465), - [sym_symbol] = ACTIONS(461), - [anon_sym_LBRACK_CARET] = ACTIONS(467), - [anon_sym_BANG_LBRACK] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(471), - [anon_sym_LPAREN] = ACTIONS(473), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_TODO] = ACTIONS(477), - [anon_sym_WIP] = ACTIONS(477), - [anon_sym_NOTE] = ACTIONS(479), - [anon_sym_INFO] = ACTIONS(479), - [anon_sym_XXX] = ACTIONS(479), - [sym_fixme] = ACTIONS(461), - [sym__whitespace1] = ACTIONS(481), - [sym__newline] = ACTIONS(483), - [aux_sym__text_token1] = ACTIONS(485), - [sym__verbatim_begin] = ACTIONS(487), + [anon_sym_LBRACE_] = ACTIONS(159), + [anon_sym__] = ACTIONS(161), + [anon_sym_LBRACE_STAR] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(165), + [anon_sym_LBRACE_CARET] = ACTIONS(167), + [anon_sym_CARET] = ACTIONS(167), + [anon_sym_LBRACE_TILDE] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(169), + [anon_sym_LBRACE_EQ] = ACTIONS(171), + [anon_sym_LBRACE_PLUS] = ACTIONS(173), + [anon_sym_LBRACE_DASH] = ACTIONS(175), + [anon_sym_BSLASH] = ACTIONS(177), + [sym_quotation_marks] = ACTIONS(179), + [sym_ellipsis] = ACTIONS(179), + [sym_em_dash] = ACTIONS(179), + [sym_en_dash] = ACTIONS(181), + [sym_backslash_escape] = ACTIONS(181), + [anon_sym_LT] = ACTIONS(183), + [sym_symbol] = ACTIONS(179), + [anon_sym_LBRACK_CARET] = ACTIONS(185), + [anon_sym_BANG_LBRACK] = ACTIONS(187), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(189), + [anon_sym_LBRACK] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(195), + [anon_sym_TODO] = ACTIONS(197), + [anon_sym_WIP] = ACTIONS(197), + [anon_sym_NOTE] = ACTIONS(199), + [anon_sym_INFO] = ACTIONS(199), + [anon_sym_XXX] = ACTIONS(199), + [sym_fixme] = ACTIONS(179), + [sym__whitespace1] = ACTIONS(201), + [anon_sym_LF] = ACTIONS(203), + [aux_sym__text_token1] = ACTIONS(205), + [sym__verbatim_begin] = ACTIONS(207), }, - [88] = { - [sym__inline] = STATE(917), - [sym__element] = STATE(46), - [sym_emphasis] = STATE(135), - [sym_emphasis_begin] = STATE(1174), - [sym_strong] = STATE(135), - [sym_strong_begin] = STATE(1175), - [sym_superscript] = STATE(135), - [sym_superscript_begin] = STATE(1176), - [sym_subscript] = STATE(135), - [sym_subscript_begin] = STATE(1177), - [sym_highlighted] = STATE(135), - [sym_highlighted_begin] = STATE(1178), - [sym_insert] = STATE(135), - [sym_insert_begin] = STATE(1179), - [sym_delete] = STATE(135), - [sym_delete_begin] = STATE(1180), - [sym_hard_line_break] = STATE(138), - [sym__smart_punctuation] = STATE(138), - [sym_autolink] = STATE(138), - [sym_footnote_reference] = STATE(135), - [sym_footnote_marker_begin] = STATE(1181), - [sym__image] = STATE(135), - [sym_full_reference_image] = STATE(135), - [sym_collapsed_reference_image] = STATE(135), - [sym_inline_image] = STATE(135), - [sym_image_description] = STATE(656), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(135), - [sym_full_reference_link] = STATE(135), - [sym_collapsed_reference_link] = STATE(135), - [sym_inline_link] = STATE(135), + [86] = { + [sym__inline_without_trailing_space] = STATE(1123), + [sym__element] = STATE(570), + [sym_emphasis] = STATE(142), + [sym_emphasis_begin] = STATE(1124), + [sym_strong] = STATE(142), + [sym_strong_begin] = STATE(1125), + [sym_superscript] = STATE(142), + [sym_superscript_begin] = STATE(1126), + [sym_subscript] = STATE(142), + [sym_subscript_begin] = STATE(1127), + [sym_highlighted] = STATE(142), + [sym_highlighted_begin] = STATE(1128), + [sym_insert] = STATE(142), + [sym_insert_begin] = STATE(1129), + [sym_delete] = STATE(142), + [sym_delete_begin] = STATE(1130), + [sym_hard_line_break] = STATE(137), + [sym__smart_punctuation] = STATE(137), + [sym_autolink] = STATE(137), + [sym_footnote_reference] = STATE(142), + [sym_footnote_marker_begin] = STATE(1131), + [sym__image] = STATE(142), + [sym_full_reference_image] = STATE(142), + [sym_collapsed_reference_image] = STATE(142), + [sym_inline_image] = STATE(142), + [sym_image_description] = STATE(687), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(142), + [sym_full_reference_link] = STATE(142), + [sym_collapsed_reference_link] = STATE(142), + [sym_inline_link] = STATE(142), [sym_link_text] = STATE(654), - [sym_span] = STATE(46), - [sym__bracketed_text_begin] = STATE(1211), - [sym__comment_with_spaces] = STATE(138), - [sym_raw_inline] = STATE(138), - [sym_math] = STATE(138), - [sym_verbatim] = STATE(138), - [sym__todo_highlights] = STATE(138), - [sym_todo] = STATE(138), - [sym_note] = STATE(138), - [sym__symbol_fallback] = STATE(138), - [aux_sym__text] = STATE(121), - [aux_sym__inline_repeat1] = STATE(46), - [anon_sym_LBRACE_] = ACTIONS(345), - [anon_sym__] = ACTIONS(347), - [anon_sym_LBRACE_STAR] = ACTIONS(349), - [anon_sym_STAR] = ACTIONS(351), - [anon_sym_LBRACE_CARET] = ACTIONS(353), - [anon_sym_CARET] = ACTIONS(353), - [anon_sym_LBRACE_TILDE] = ACTIONS(355), - [anon_sym_TILDE] = ACTIONS(355), - [anon_sym_LBRACE_EQ] = ACTIONS(357), - [anon_sym_LBRACE_PLUS] = ACTIONS(359), - [anon_sym_LBRACE_DASH] = ACTIONS(361), - [anon_sym_BSLASH] = ACTIONS(363), - [sym_quotation_marks] = ACTIONS(365), - [sym_ellipsis] = ACTIONS(365), - [sym_em_dash] = ACTIONS(365), - [sym_en_dash] = ACTIONS(367), - [sym_backslash_escape] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(369), - [sym_symbol] = ACTIONS(365), - [anon_sym_LBRACK_CARET] = ACTIONS(371), - [anon_sym_BANG_LBRACK] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LPAREN] = ACTIONS(377), - [anon_sym_DOLLAR] = ACTIONS(379), - [anon_sym_TODO] = ACTIONS(381), - [anon_sym_WIP] = ACTIONS(381), - [anon_sym_NOTE] = ACTIONS(383), - [anon_sym_INFO] = ACTIONS(383), - [anon_sym_XXX] = ACTIONS(383), - [sym_fixme] = ACTIONS(365), - [sym__whitespace1] = ACTIONS(385), - [sym__newline] = ACTIONS(387), - [aux_sym__text_token1] = ACTIONS(389), - [sym__verbatim_begin] = ACTIONS(391), + [sym_span] = STATE(570), + [sym__bracketed_text_begin] = STATE(1215), + [sym__comment_with_spaces] = STATE(137), + [sym_raw_inline] = STATE(137), + [sym_math] = STATE(137), + [sym_verbatim] = STATE(137), + [sym__todo_highlights] = STATE(137), + [sym_todo] = STATE(137), + [sym_note] = STATE(137), + [sym__symbol_fallback] = STATE(137), + [sym__newline] = STATE(118), + [aux_sym__text] = STATE(128), + [aux_sym__inline_repeat1] = STATE(118), + [anon_sym_LBRACE_] = ACTIONS(209), + [anon_sym__] = ACTIONS(211), + [anon_sym_LBRACE_STAR] = ACTIONS(213), + [anon_sym_STAR] = ACTIONS(215), + [anon_sym_LBRACE_CARET] = ACTIONS(217), + [anon_sym_CARET] = ACTIONS(217), + [anon_sym_LBRACE_TILDE] = ACTIONS(219), + [anon_sym_TILDE] = ACTIONS(219), + [anon_sym_LBRACE_EQ] = ACTIONS(221), + [anon_sym_LBRACE_PLUS] = ACTIONS(223), + [anon_sym_LBRACE_DASH] = ACTIONS(225), + [anon_sym_BSLASH] = ACTIONS(227), + [sym_quotation_marks] = ACTIONS(229), + [sym_ellipsis] = ACTIONS(229), + [sym_em_dash] = ACTIONS(229), + [sym_en_dash] = ACTIONS(231), + [sym_backslash_escape] = ACTIONS(231), + [anon_sym_LT] = ACTIONS(233), + [sym_symbol] = ACTIONS(229), + [anon_sym_LBRACK_CARET] = ACTIONS(235), + [anon_sym_BANG_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_LPAREN] = ACTIONS(243), + [anon_sym_DOLLAR] = ACTIONS(245), + [anon_sym_TODO] = ACTIONS(247), + [anon_sym_WIP] = ACTIONS(247), + [anon_sym_NOTE] = ACTIONS(249), + [anon_sym_INFO] = ACTIONS(249), + [anon_sym_XXX] = ACTIONS(249), + [sym_fixme] = ACTIONS(229), + [sym__whitespace1] = ACTIONS(251), + [anon_sym_LF] = ACTIONS(253), + [aux_sym__text_token1] = ACTIONS(255), + [sym__verbatim_begin] = ACTIONS(257), }, - [89] = { - [sym__inline] = STATE(919), - [sym__element] = STATE(30), + [87] = { + [sym__inline] = STATE(1133), + [sym__element] = STATE(15), [sym_emphasis] = STATE(132), - [sym_emphasis_begin] = STATE(1164), + [sym_emphasis_begin] = STATE(1134), [sym_strong] = STATE(132), - [sym_strong_begin] = STATE(1165), + [sym_strong_begin] = STATE(1135), [sym_superscript] = STATE(132), - [sym_superscript_begin] = STATE(1166), + [sym_superscript_begin] = STATE(1136), [sym_subscript] = STATE(132), - [sym_subscript_begin] = STATE(1167), + [sym_subscript_begin] = STATE(1137), [sym_highlighted] = STATE(132), - [sym_highlighted_begin] = STATE(1168), + [sym_highlighted_begin] = STATE(1138), [sym_insert] = STATE(132), - [sym_insert_begin] = STATE(1169), + [sym_insert_begin] = STATE(1139), [sym_delete] = STATE(132), - [sym_delete_begin] = STATE(1170), - [sym_hard_line_break] = STATE(142), - [sym__smart_punctuation] = STATE(142), - [sym_autolink] = STATE(142), + [sym_delete_begin] = STATE(1140), + [sym_hard_line_break] = STATE(147), + [sym__smart_punctuation] = STATE(147), + [sym_autolink] = STATE(147), [sym_footnote_reference] = STATE(132), - [sym_footnote_marker_begin] = STATE(1171), + [sym_footnote_marker_begin] = STATE(1141), [sym__image] = STATE(132), [sym_full_reference_image] = STATE(132), [sym_collapsed_reference_image] = STATE(132), [sym_inline_image] = STATE(132), - [sym_image_description] = STATE(660), - [sym__image_description_begin] = STATE(1079), + [sym_image_description] = STATE(682), + [sym__image_description_begin] = STATE(958), [sym__link] = STATE(132), [sym_full_reference_link] = STATE(132), [sym_collapsed_reference_link] = STATE(132), [sym_inline_link] = STATE(132), - [sym_link_text] = STATE(659), - [sym_span] = STATE(30), - [sym__bracketed_text_begin] = STATE(1210), - [sym__comment_with_spaces] = STATE(142), - [sym_raw_inline] = STATE(142), - [sym_math] = STATE(142), - [sym_verbatim] = STATE(142), - [sym__todo_highlights] = STATE(142), - [sym_todo] = STATE(142), - [sym_note] = STATE(142), - [sym__symbol_fallback] = STATE(142), - [aux_sym__text] = STATE(126), - [aux_sym__inline_repeat1] = STATE(30), - [anon_sym_LBRACE_] = ACTIONS(393), - [anon_sym__] = ACTIONS(395), - [anon_sym_LBRACE_STAR] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(399), - [anon_sym_LBRACE_CARET] = ACTIONS(401), - [anon_sym_CARET] = ACTIONS(401), - [anon_sym_LBRACE_TILDE] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_LBRACE_EQ] = ACTIONS(405), - [anon_sym_LBRACE_PLUS] = ACTIONS(407), - [anon_sym_LBRACE_DASH] = ACTIONS(409), - [anon_sym_BSLASH] = ACTIONS(411), - [sym_quotation_marks] = ACTIONS(413), - [sym_ellipsis] = ACTIONS(413), - [sym_em_dash] = ACTIONS(413), - [sym_en_dash] = ACTIONS(415), - [sym_backslash_escape] = ACTIONS(415), - [anon_sym_LT] = ACTIONS(417), - [sym_symbol] = ACTIONS(413), - [anon_sym_LBRACK_CARET] = ACTIONS(419), - [anon_sym_BANG_LBRACK] = ACTIONS(421), - [anon_sym_LBRACK] = ACTIONS(423), - [anon_sym_LPAREN] = ACTIONS(425), - [anon_sym_DOLLAR] = ACTIONS(427), - [anon_sym_TODO] = ACTIONS(429), - [anon_sym_WIP] = ACTIONS(429), - [anon_sym_NOTE] = ACTIONS(431), - [anon_sym_INFO] = ACTIONS(431), - [anon_sym_XXX] = ACTIONS(431), - [sym_fixme] = ACTIONS(413), - [sym__whitespace1] = ACTIONS(433), - [sym__newline] = ACTIONS(435), - [aux_sym__text_token1] = ACTIONS(437), - [sym__verbatim_begin] = ACTIONS(439), - }, - [90] = { - [sym__inline] = STATE(920), - [sym__element] = STATE(22), - [sym_emphasis] = STATE(147), - [sym_emphasis_begin] = STATE(1154), - [sym_strong] = STATE(147), - [sym_strong_begin] = STATE(1155), - [sym_superscript] = STATE(147), - [sym_superscript_begin] = STATE(1156), - [sym_subscript] = STATE(147), - [sym_subscript_begin] = STATE(1157), - [sym_highlighted] = STATE(147), - [sym_highlighted_begin] = STATE(1158), - [sym_insert] = STATE(147), - [sym_insert_begin] = STATE(1159), - [sym_delete] = STATE(147), - [sym_delete_begin] = STATE(1160), - [sym_hard_line_break] = STATE(145), - [sym__smart_punctuation] = STATE(145), - [sym_autolink] = STATE(145), - [sym_footnote_reference] = STATE(147), - [sym_footnote_marker_begin] = STATE(1161), - [sym__image] = STATE(147), - [sym_full_reference_image] = STATE(147), - [sym_collapsed_reference_image] = STATE(147), - [sym_inline_image] = STATE(147), - [sym_image_description] = STATE(665), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(147), - [sym_full_reference_link] = STATE(147), - [sym_collapsed_reference_link] = STATE(147), - [sym_inline_link] = STATE(147), - [sym_link_text] = STATE(664), - [sym_span] = STATE(22), - [sym__bracketed_text_begin] = STATE(1209), - [sym__comment_with_spaces] = STATE(145), - [sym_raw_inline] = STATE(145), - [sym_math] = STATE(145), - [sym_verbatim] = STATE(145), - [sym__todo_highlights] = STATE(145), - [sym_todo] = STATE(145), - [sym_note] = STATE(145), - [sym__symbol_fallback] = STATE(145), - [aux_sym__text] = STATE(124), - [aux_sym__inline_repeat1] = STATE(22), - [anon_sym_LBRACE_] = ACTIONS(101), - [anon_sym__] = ACTIONS(103), - [anon_sym_LBRACE_STAR] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_LBRACE_CARET] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(109), - [anon_sym_LBRACE_TILDE] = ACTIONS(111), - [anon_sym_TILDE] = ACTIONS(111), - [anon_sym_LBRACE_EQ] = ACTIONS(113), - [anon_sym_LBRACE_PLUS] = ACTIONS(115), - [anon_sym_LBRACE_DASH] = ACTIONS(117), - [anon_sym_BSLASH] = ACTIONS(119), - [sym_quotation_marks] = ACTIONS(121), - [sym_ellipsis] = ACTIONS(121), - [sym_em_dash] = ACTIONS(121), - [sym_en_dash] = ACTIONS(123), - [sym_backslash_escape] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(125), - [sym_symbol] = ACTIONS(121), - [anon_sym_LBRACK_CARET] = ACTIONS(127), - [anon_sym_BANG_LBRACK] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_TODO] = ACTIONS(137), - [anon_sym_WIP] = ACTIONS(137), - [anon_sym_NOTE] = ACTIONS(139), - [anon_sym_INFO] = ACTIONS(139), - [anon_sym_XXX] = ACTIONS(139), - [sym_fixme] = ACTIONS(121), - [sym__whitespace1] = ACTIONS(141), - [sym__newline] = ACTIONS(143), - [aux_sym__text_token1] = ACTIONS(145), - [sym__verbatim_begin] = ACTIONS(147), + [sym_link_text] = STATE(689), + [sym_span] = STATE(15), + [sym__bracketed_text_begin] = STATE(1216), + [sym__comment_with_spaces] = STATE(147), + [sym_raw_inline] = STATE(147), + [sym_math] = STATE(147), + [sym_verbatim] = STATE(147), + [sym__todo_highlights] = STATE(147), + [sym_todo] = STATE(147), + [sym_note] = STATE(147), + [sym__symbol_fallback] = STATE(147), + [sym__newline] = STATE(15), + [aux_sym__text] = STATE(121), + [aux_sym__inline_repeat1] = STATE(15), + [anon_sym_LBRACE_] = ACTIONS(105), + [anon_sym__] = ACTIONS(107), + [anon_sym_LBRACE_STAR] = ACTIONS(109), + [anon_sym_STAR] = ACTIONS(111), + [anon_sym_LBRACE_CARET] = ACTIONS(113), + [anon_sym_CARET] = ACTIONS(113), + [anon_sym_LBRACE_TILDE] = ACTIONS(115), + [anon_sym_TILDE] = ACTIONS(115), + [anon_sym_LBRACE_EQ] = ACTIONS(117), + [anon_sym_LBRACE_PLUS] = ACTIONS(119), + [anon_sym_LBRACE_DASH] = ACTIONS(121), + [anon_sym_BSLASH] = ACTIONS(123), + [sym_quotation_marks] = ACTIONS(125), + [sym_ellipsis] = ACTIONS(125), + [sym_em_dash] = ACTIONS(125), + [sym_en_dash] = ACTIONS(127), + [sym_backslash_escape] = ACTIONS(127), + [anon_sym_LT] = ACTIONS(129), + [sym_symbol] = ACTIONS(125), + [anon_sym_LBRACK_CARET] = ACTIONS(131), + [anon_sym_BANG_LBRACK] = ACTIONS(133), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(135), + [anon_sym_LBRACK] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_TODO] = ACTIONS(143), + [anon_sym_WIP] = ACTIONS(143), + [anon_sym_NOTE] = ACTIONS(145), + [anon_sym_INFO] = ACTIONS(145), + [anon_sym_XXX] = ACTIONS(145), + [sym_fixme] = ACTIONS(125), + [sym__whitespace1] = ACTIONS(147), + [anon_sym_LF] = ACTIONS(149), + [aux_sym__text_token1] = ACTIONS(151), + [sym__verbatim_begin] = ACTIONS(153), }, - [91] = { - [sym__inline] = STATE(922), - [sym__element] = STATE(110), - [sym_emphasis] = STATE(146), + [88] = { + [sym__inline] = STATE(1143), + [sym__element] = STATE(16), + [sym_emphasis] = STATE(143), [sym_emphasis_begin] = STATE(1144), - [sym_strong] = STATE(146), + [sym_strong] = STATE(143), [sym_strong_begin] = STATE(1145), - [sym_superscript] = STATE(146), + [sym_superscript] = STATE(143), [sym_superscript_begin] = STATE(1146), - [sym_subscript] = STATE(146), + [sym_subscript] = STATE(143), [sym_subscript_begin] = STATE(1147), - [sym_highlighted] = STATE(146), + [sym_highlighted] = STATE(143), [sym_highlighted_begin] = STATE(1148), - [sym_insert] = STATE(146), + [sym_insert] = STATE(143), [sym_insert_begin] = STATE(1149), - [sym_delete] = STATE(146), + [sym_delete] = STATE(143), [sym_delete_begin] = STATE(1150), - [sym_hard_line_break] = STATE(144), - [sym__smart_punctuation] = STATE(144), - [sym_autolink] = STATE(144), - [sym_footnote_reference] = STATE(146), + [sym_hard_line_break] = STATE(141), + [sym__smart_punctuation] = STATE(141), + [sym_autolink] = STATE(141), + [sym_footnote_reference] = STATE(143), [sym_footnote_marker_begin] = STATE(1151), - [sym__image] = STATE(146), - [sym_full_reference_image] = STATE(146), - [sym_collapsed_reference_image] = STATE(146), - [sym_inline_image] = STATE(146), - [sym_image_description] = STATE(673), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(146), - [sym_full_reference_link] = STATE(146), - [sym_collapsed_reference_link] = STATE(146), - [sym_inline_link] = STATE(146), - [sym_link_text] = STATE(662), - [sym_span] = STATE(110), - [sym__bracketed_text_begin] = STATE(1208), - [sym__comment_with_spaces] = STATE(144), - [sym_raw_inline] = STATE(144), - [sym_math] = STATE(144), - [sym_verbatim] = STATE(144), - [sym__todo_highlights] = STATE(144), - [sym_todo] = STATE(144), - [sym_note] = STATE(144), - [sym__symbol_fallback] = STATE(144), - [aux_sym__text] = STATE(128), - [aux_sym__inline_repeat1] = STATE(110), - [anon_sym_LBRACE_] = ACTIONS(587), - [anon_sym__] = ACTIONS(589), - [anon_sym_LBRACE_STAR] = ACTIONS(591), - [anon_sym_STAR] = ACTIONS(593), - [anon_sym_LBRACE_CARET] = ACTIONS(595), - [anon_sym_CARET] = ACTIONS(595), - [anon_sym_LBRACE_TILDE] = ACTIONS(597), - [anon_sym_TILDE] = ACTIONS(597), - [anon_sym_LBRACE_EQ] = ACTIONS(599), - [anon_sym_LBRACE_PLUS] = ACTIONS(601), - [anon_sym_LBRACE_DASH] = ACTIONS(603), - [anon_sym_BSLASH] = ACTIONS(605), - [sym_quotation_marks] = ACTIONS(607), - [sym_ellipsis] = ACTIONS(607), - [sym_em_dash] = ACTIONS(607), - [sym_en_dash] = ACTIONS(609), - [sym_backslash_escape] = ACTIONS(609), - [anon_sym_LT] = ACTIONS(611), - [sym_symbol] = ACTIONS(607), - [anon_sym_LBRACK_CARET] = ACTIONS(613), - [anon_sym_BANG_LBRACK] = ACTIONS(615), - [anon_sym_LBRACK] = ACTIONS(617), - [anon_sym_LPAREN] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [anon_sym_TODO] = ACTIONS(623), - [anon_sym_WIP] = ACTIONS(623), - [anon_sym_NOTE] = ACTIONS(625), - [anon_sym_INFO] = ACTIONS(625), - [anon_sym_XXX] = ACTIONS(625), - [sym_fixme] = ACTIONS(607), - [sym__whitespace1] = ACTIONS(627), - [sym__newline] = ACTIONS(629), - [aux_sym__text_token1] = ACTIONS(631), - [sym__verbatim_begin] = ACTIONS(633), + [sym__image] = STATE(143), + [sym_full_reference_image] = STATE(143), + [sym_collapsed_reference_image] = STATE(143), + [sym_inline_image] = STATE(143), + [sym_image_description] = STATE(660), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(143), + [sym_full_reference_link] = STATE(143), + [sym_collapsed_reference_link] = STATE(143), + [sym_inline_link] = STATE(143), + [sym_link_text] = STATE(661), + [sym_span] = STATE(16), + [sym__bracketed_text_begin] = STATE(1217), + [sym__comment_with_spaces] = STATE(141), + [sym_raw_inline] = STATE(141), + [sym_math] = STATE(141), + [sym_verbatim] = STATE(141), + [sym__todo_highlights] = STATE(141), + [sym_todo] = STATE(141), + [sym_note] = STATE(141), + [sym__symbol_fallback] = STATE(141), + [sym__newline] = STATE(16), + [aux_sym__text] = STATE(125), + [aux_sym__inline_repeat1] = STATE(16), + [anon_sym_LBRACE_] = ACTIONS(259), + [anon_sym__] = ACTIONS(261), + [anon_sym_LBRACE_STAR] = ACTIONS(263), + [anon_sym_STAR] = ACTIONS(265), + [anon_sym_LBRACE_CARET] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_LBRACE_TILDE] = ACTIONS(269), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_LBRACE_EQ] = ACTIONS(271), + [anon_sym_LBRACE_PLUS] = ACTIONS(273), + [anon_sym_LBRACE_DASH] = ACTIONS(275), + [anon_sym_BSLASH] = ACTIONS(277), + [sym_quotation_marks] = ACTIONS(279), + [sym_ellipsis] = ACTIONS(279), + [sym_em_dash] = ACTIONS(279), + [sym_en_dash] = ACTIONS(281), + [sym_backslash_escape] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(283), + [sym_symbol] = ACTIONS(279), + [anon_sym_LBRACK_CARET] = ACTIONS(285), + [anon_sym_BANG_LBRACK] = ACTIONS(287), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_DOLLAR] = ACTIONS(295), + [anon_sym_TODO] = ACTIONS(297), + [anon_sym_WIP] = ACTIONS(297), + [anon_sym_NOTE] = ACTIONS(299), + [anon_sym_INFO] = ACTIONS(299), + [anon_sym_XXX] = ACTIONS(299), + [sym_fixme] = ACTIONS(279), + [sym__whitespace1] = ACTIONS(301), + [anon_sym_LF] = ACTIONS(303), + [aux_sym__text_token1] = ACTIONS(305), + [sym__verbatim_begin] = ACTIONS(307), }, - [92] = { - [sym__inline] = STATE(924), - [sym__element] = STATE(14), + [89] = { + [sym__inline] = STATE(1153), + [sym__element] = STATE(18), + [sym_emphasis] = STATE(135), + [sym_emphasis_begin] = STATE(1154), + [sym_strong] = STATE(135), + [sym_strong_begin] = STATE(1155), + [sym_superscript] = STATE(135), + [sym_superscript_begin] = STATE(1156), + [sym_subscript] = STATE(135), + [sym_subscript_begin] = STATE(1157), + [sym_highlighted] = STATE(135), + [sym_highlighted_begin] = STATE(1158), + [sym_insert] = STATE(135), + [sym_insert_begin] = STATE(1159), + [sym_delete] = STATE(135), + [sym_delete_begin] = STATE(1160), + [sym_hard_line_break] = STATE(134), + [sym__smart_punctuation] = STATE(134), + [sym_autolink] = STATE(134), + [sym_footnote_reference] = STATE(135), + [sym_footnote_marker_begin] = STATE(1161), + [sym__image] = STATE(135), + [sym_full_reference_image] = STATE(135), + [sym_collapsed_reference_image] = STATE(135), + [sym_inline_image] = STATE(135), + [sym_image_description] = STATE(677), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(135), + [sym_full_reference_link] = STATE(135), + [sym_collapsed_reference_link] = STATE(135), + [sym_inline_link] = STATE(135), + [sym_link_text] = STATE(680), + [sym_span] = STATE(18), + [sym__bracketed_text_begin] = STATE(1218), + [sym__comment_with_spaces] = STATE(134), + [sym_raw_inline] = STATE(134), + [sym_math] = STATE(134), + [sym_verbatim] = STATE(134), + [sym__todo_highlights] = STATE(134), + [sym_todo] = STATE(134), + [sym_note] = STATE(134), + [sym__symbol_fallback] = STATE(134), + [sym__newline] = STATE(18), + [aux_sym__text] = STATE(123), + [aux_sym__inline_repeat1] = STATE(18), + [anon_sym_LBRACE_] = ACTIONS(309), + [anon_sym__] = ACTIONS(311), + [anon_sym_LBRACE_STAR] = ACTIONS(313), + [anon_sym_STAR] = ACTIONS(315), + [anon_sym_LBRACE_CARET] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_LBRACE_TILDE] = ACTIONS(319), + [anon_sym_TILDE] = ACTIONS(319), + [anon_sym_LBRACE_EQ] = ACTIONS(321), + [anon_sym_LBRACE_PLUS] = ACTIONS(323), + [anon_sym_LBRACE_DASH] = ACTIONS(325), + [anon_sym_BSLASH] = ACTIONS(327), + [sym_quotation_marks] = ACTIONS(329), + [sym_ellipsis] = ACTIONS(329), + [sym_em_dash] = ACTIONS(329), + [sym_en_dash] = ACTIONS(331), + [sym_backslash_escape] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [sym_symbol] = ACTIONS(329), + [anon_sym_LBRACK_CARET] = ACTIONS(335), + [anon_sym_BANG_LBRACK] = ACTIONS(337), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(339), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_DOLLAR] = ACTIONS(345), + [anon_sym_TODO] = ACTIONS(347), + [anon_sym_WIP] = ACTIONS(347), + [anon_sym_NOTE] = ACTIONS(349), + [anon_sym_INFO] = ACTIONS(349), + [anon_sym_XXX] = ACTIONS(349), + [sym_fixme] = ACTIONS(329), + [sym__whitespace1] = ACTIONS(351), + [anon_sym_LF] = ACTIONS(353), + [aux_sym__text_token1] = ACTIONS(355), + [sym__verbatim_begin] = ACTIONS(357), + }, + [90] = { + [sym__inline] = STATE(1163), + [sym__element] = STATE(20), [sym_emphasis] = STATE(136), - [sym_emphasis_begin] = STATE(1134), + [sym_emphasis_begin] = STATE(1164), [sym_strong] = STATE(136), - [sym_strong_begin] = STATE(1135), + [sym_strong_begin] = STATE(1165), [sym_superscript] = STATE(136), - [sym_superscript_begin] = STATE(1136), + [sym_superscript_begin] = STATE(1166), [sym_subscript] = STATE(136), - [sym_subscript_begin] = STATE(1137), + [sym_subscript_begin] = STATE(1167), [sym_highlighted] = STATE(136), - [sym_highlighted_begin] = STATE(1138), + [sym_highlighted_begin] = STATE(1168), [sym_insert] = STATE(136), - [sym_insert_begin] = STATE(1139), + [sym_insert_begin] = STATE(1169), [sym_delete] = STATE(136), - [sym_delete_begin] = STATE(1140), - [sym_hard_line_break] = STATE(134), - [sym__smart_punctuation] = STATE(134), - [sym_autolink] = STATE(134), + [sym_delete_begin] = STATE(1170), + [sym_hard_line_break] = STATE(138), + [sym__smart_punctuation] = STATE(138), + [sym_autolink] = STATE(138), [sym_footnote_reference] = STATE(136), - [sym_footnote_marker_begin] = STATE(1141), + [sym_footnote_marker_begin] = STATE(1171), [sym__image] = STATE(136), [sym_full_reference_image] = STATE(136), [sym_collapsed_reference_image] = STATE(136), [sym_inline_image] = STATE(136), - [sym_image_description] = STATE(670), - [sym__image_description_begin] = STATE(1079), + [sym_image_description] = STATE(685), + [sym__image_description_begin] = STATE(958), [sym__link] = STATE(136), [sym_full_reference_link] = STATE(136), [sym_collapsed_reference_link] = STATE(136), [sym_inline_link] = STATE(136), - [sym_link_text] = STATE(671), - [sym_span] = STATE(14), - [sym__bracketed_text_begin] = STATE(1207), - [sym__comment_with_spaces] = STATE(134), - [sym_raw_inline] = STATE(134), - [sym_math] = STATE(134), - [sym_verbatim] = STATE(134), - [sym__todo_highlights] = STATE(134), - [sym_todo] = STATE(134), - [sym_note] = STATE(134), - [sym__symbol_fallback] = STATE(134), + [sym_link_text] = STATE(686), + [sym_span] = STATE(20), + [sym__bracketed_text_begin] = STATE(1219), + [sym__comment_with_spaces] = STATE(138), + [sym_raw_inline] = STATE(138), + [sym_math] = STATE(138), + [sym_verbatim] = STATE(138), + [sym__todo_highlights] = STATE(138), + [sym_todo] = STATE(138), + [sym_note] = STATE(138), + [sym__symbol_fallback] = STATE(138), + [sym__newline] = STATE(20), + [aux_sym__text] = STATE(126), + [aux_sym__inline_repeat1] = STATE(20), + [anon_sym_LBRACE_] = ACTIONS(359), + [anon_sym__] = ACTIONS(361), + [anon_sym_LBRACE_STAR] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(365), + [anon_sym_LBRACE_CARET] = ACTIONS(367), + [anon_sym_CARET] = ACTIONS(367), + [anon_sym_LBRACE_TILDE] = ACTIONS(369), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_LBRACE_EQ] = ACTIONS(371), + [anon_sym_LBRACE_PLUS] = ACTIONS(373), + [anon_sym_LBRACE_DASH] = ACTIONS(375), + [anon_sym_BSLASH] = ACTIONS(377), + [sym_quotation_marks] = ACTIONS(379), + [sym_ellipsis] = ACTIONS(379), + [sym_em_dash] = ACTIONS(379), + [sym_en_dash] = ACTIONS(381), + [sym_backslash_escape] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(383), + [sym_symbol] = ACTIONS(379), + [anon_sym_LBRACK_CARET] = ACTIONS(385), + [anon_sym_BANG_LBRACK] = ACTIONS(387), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(393), + [anon_sym_DOLLAR] = ACTIONS(395), + [anon_sym_TODO] = ACTIONS(397), + [anon_sym_WIP] = ACTIONS(397), + [anon_sym_NOTE] = ACTIONS(399), + [anon_sym_INFO] = ACTIONS(399), + [anon_sym_XXX] = ACTIONS(399), + [sym_fixme] = ACTIONS(379), + [sym__whitespace1] = ACTIONS(401), + [anon_sym_LF] = ACTIONS(403), + [aux_sym__text_token1] = ACTIONS(405), + [sym__verbatim_begin] = ACTIONS(407), + }, + [91] = { + [sym__inline] = STATE(1173), + [sym__element] = STATE(22), + [sym_emphasis] = STATE(140), + [sym_emphasis_begin] = STATE(1174), + [sym_strong] = STATE(140), + [sym_strong_begin] = STATE(1175), + [sym_superscript] = STATE(140), + [sym_superscript_begin] = STATE(1176), + [sym_subscript] = STATE(140), + [sym_subscript_begin] = STATE(1177), + [sym_highlighted] = STATE(140), + [sym_highlighted_begin] = STATE(1178), + [sym_insert] = STATE(140), + [sym_insert_begin] = STATE(1179), + [sym_delete] = STATE(140), + [sym_delete_begin] = STATE(1180), + [sym_hard_line_break] = STATE(139), + [sym__smart_punctuation] = STATE(139), + [sym_autolink] = STATE(139), + [sym_footnote_reference] = STATE(140), + [sym_footnote_marker_begin] = STATE(1181), + [sym__image] = STATE(140), + [sym_full_reference_image] = STATE(140), + [sym_collapsed_reference_image] = STATE(140), + [sym_inline_image] = STATE(140), + [sym_image_description] = STATE(655), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(140), + [sym_full_reference_link] = STATE(140), + [sym_collapsed_reference_link] = STATE(140), + [sym_inline_link] = STATE(140), + [sym_link_text] = STATE(656), + [sym_span] = STATE(22), + [sym__bracketed_text_begin] = STATE(1220), + [sym__comment_with_spaces] = STATE(139), + [sym_raw_inline] = STATE(139), + [sym_math] = STATE(139), + [sym_verbatim] = STATE(139), + [sym__todo_highlights] = STATE(139), + [sym_todo] = STATE(139), + [sym_note] = STATE(139), + [sym__symbol_fallback] = STATE(139), + [sym__newline] = STATE(22), + [aux_sym__text] = STATE(127), + [aux_sym__inline_repeat1] = STATE(22), + [anon_sym_LBRACE_] = ACTIONS(409), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_STAR] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(415), + [anon_sym_LBRACE_CARET] = ACTIONS(417), + [anon_sym_CARET] = ACTIONS(417), + [anon_sym_LBRACE_TILDE] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(419), + [anon_sym_LBRACE_EQ] = ACTIONS(421), + [anon_sym_LBRACE_PLUS] = ACTIONS(423), + [anon_sym_LBRACE_DASH] = ACTIONS(425), + [anon_sym_BSLASH] = ACTIONS(427), + [sym_quotation_marks] = ACTIONS(429), + [sym_ellipsis] = ACTIONS(429), + [sym_em_dash] = ACTIONS(429), + [sym_en_dash] = ACTIONS(431), + [sym_backslash_escape] = ACTIONS(431), + [anon_sym_LT] = ACTIONS(433), + [sym_symbol] = ACTIONS(429), + [anon_sym_LBRACK_CARET] = ACTIONS(435), + [anon_sym_BANG_LBRACK] = ACTIONS(437), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(439), + [anon_sym_LBRACK] = ACTIONS(441), + [anon_sym_LPAREN] = ACTIONS(443), + [anon_sym_DOLLAR] = ACTIONS(445), + [anon_sym_TODO] = ACTIONS(447), + [anon_sym_WIP] = ACTIONS(447), + [anon_sym_NOTE] = ACTIONS(449), + [anon_sym_INFO] = ACTIONS(449), + [anon_sym_XXX] = ACTIONS(449), + [sym_fixme] = ACTIONS(429), + [sym__whitespace1] = ACTIONS(451), + [anon_sym_LF] = ACTIONS(453), + [aux_sym__text_token1] = ACTIONS(455), + [sym__verbatim_begin] = ACTIONS(457), + }, + [92] = { + [sym__inline] = STATE(1193), + [sym__element] = STATE(24), + [sym_emphasis] = STATE(131), + [sym_emphasis_begin] = STATE(1184), + [sym_strong] = STATE(131), + [sym_strong_begin] = STATE(1185), + [sym_superscript] = STATE(131), + [sym_superscript_begin] = STATE(1186), + [sym_subscript] = STATE(131), + [sym_subscript_begin] = STATE(1187), + [sym_highlighted] = STATE(131), + [sym_highlighted_begin] = STATE(1188), + [sym_insert] = STATE(131), + [sym_insert_begin] = STATE(1189), + [sym_delete] = STATE(131), + [sym_delete_begin] = STATE(1190), + [sym_hard_line_break] = STATE(145), + [sym__smart_punctuation] = STATE(145), + [sym_autolink] = STATE(145), + [sym_footnote_reference] = STATE(131), + [sym_footnote_marker_begin] = STATE(1191), + [sym__image] = STATE(131), + [sym_full_reference_image] = STATE(131), + [sym_collapsed_reference_image] = STATE(131), + [sym_inline_image] = STATE(131), + [sym_image_description] = STATE(662), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(131), + [sym_full_reference_link] = STATE(131), + [sym_collapsed_reference_link] = STATE(131), + [sym_inline_link] = STATE(131), + [sym_link_text] = STATE(663), + [sym_span] = STATE(24), + [sym__bracketed_text_begin] = STATE(1221), + [sym__comment_with_spaces] = STATE(145), + [sym_raw_inline] = STATE(145), + [sym_math] = STATE(145), + [sym_verbatim] = STATE(145), + [sym__todo_highlights] = STATE(145), + [sym_todo] = STATE(145), + [sym_note] = STATE(145), + [sym__symbol_fallback] = STATE(145), + [sym__newline] = STATE(24), [aux_sym__text] = STATE(129), - [aux_sym__inline_repeat1] = STATE(14), - [anon_sym_LBRACE_] = ACTIONS(295), - [anon_sym__] = ACTIONS(297), - [anon_sym_LBRACE_STAR] = ACTIONS(299), - [anon_sym_STAR] = ACTIONS(301), - [anon_sym_LBRACE_CARET] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(303), - [anon_sym_LBRACE_TILDE] = ACTIONS(305), - [anon_sym_TILDE] = ACTIONS(305), - [anon_sym_LBRACE_EQ] = ACTIONS(307), - [anon_sym_LBRACE_PLUS] = ACTIONS(309), - [anon_sym_LBRACE_DASH] = ACTIONS(311), - [anon_sym_BSLASH] = ACTIONS(313), - [sym_quotation_marks] = ACTIONS(315), - [sym_ellipsis] = ACTIONS(315), - [sym_em_dash] = ACTIONS(315), - [sym_en_dash] = ACTIONS(317), - [sym_backslash_escape] = ACTIONS(317), - [anon_sym_LT] = ACTIONS(319), - [sym_symbol] = ACTIONS(315), - [anon_sym_LBRACK_CARET] = ACTIONS(321), - [anon_sym_BANG_LBRACK] = ACTIONS(323), - [anon_sym_LBRACK] = ACTIONS(325), - [anon_sym_LPAREN] = ACTIONS(327), - [anon_sym_DOLLAR] = ACTIONS(329), - [anon_sym_TODO] = ACTIONS(331), - [anon_sym_WIP] = ACTIONS(331), - [anon_sym_NOTE] = ACTIONS(333), - [anon_sym_INFO] = ACTIONS(333), - [anon_sym_XXX] = ACTIONS(333), - [sym_fixme] = ACTIONS(315), - [sym__whitespace1] = ACTIONS(335), - [sym__newline] = ACTIONS(635), - [aux_sym__text_token1] = ACTIONS(339), - [sym__verbatim_begin] = ACTIONS(341), + [aux_sym__inline_repeat1] = STATE(24), + [anon_sym_LBRACE_] = ACTIONS(459), + [anon_sym__] = ACTIONS(461), + [anon_sym_LBRACE_STAR] = ACTIONS(463), + [anon_sym_STAR] = ACTIONS(465), + [anon_sym_LBRACE_CARET] = ACTIONS(467), + [anon_sym_CARET] = ACTIONS(467), + [anon_sym_LBRACE_TILDE] = ACTIONS(469), + [anon_sym_TILDE] = ACTIONS(469), + [anon_sym_LBRACE_EQ] = ACTIONS(471), + [anon_sym_LBRACE_PLUS] = ACTIONS(473), + [anon_sym_LBRACE_DASH] = ACTIONS(475), + [anon_sym_BSLASH] = ACTIONS(477), + [sym_quotation_marks] = ACTIONS(479), + [sym_ellipsis] = ACTIONS(479), + [sym_em_dash] = ACTIONS(479), + [sym_en_dash] = ACTIONS(481), + [sym_backslash_escape] = ACTIONS(481), + [anon_sym_LT] = ACTIONS(483), + [sym_symbol] = ACTIONS(479), + [anon_sym_LBRACK_CARET] = ACTIONS(485), + [anon_sym_BANG_LBRACK] = ACTIONS(487), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(489), + [anon_sym_LBRACK] = ACTIONS(491), + [anon_sym_LPAREN] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(495), + [anon_sym_TODO] = ACTIONS(497), + [anon_sym_WIP] = ACTIONS(497), + [anon_sym_NOTE] = ACTIONS(499), + [anon_sym_INFO] = ACTIONS(499), + [anon_sym_XXX] = ACTIONS(499), + [sym_fixme] = ACTIONS(479), + [sym__whitespace1] = ACTIONS(501), + [anon_sym_LF] = ACTIONS(503), + [aux_sym__text_token1] = ACTIONS(505), + [sym__verbatim_begin] = ACTIONS(507), }, [93] = { - [sym__inline] = STATE(925), - [sym__element] = STATE(64), - [sym_emphasis] = STATE(133), + [sym__inline_without_trailing_space] = STATE(906), + [sym__element] = STATE(543), + [sym_emphasis] = STATE(150), + [sym_emphasis_begin] = STATE(1114), + [sym_strong] = STATE(150), + [sym_strong_begin] = STATE(1115), + [sym_superscript] = STATE(150), + [sym_superscript_begin] = STATE(1116), + [sym_subscript] = STATE(150), + [sym_subscript_begin] = STATE(1117), + [sym_highlighted] = STATE(150), + [sym_highlighted_begin] = STATE(1118), + [sym_insert] = STATE(150), + [sym_insert_begin] = STATE(1119), + [sym_delete] = STATE(150), + [sym_delete_begin] = STATE(1120), + [sym_hard_line_break] = STATE(133), + [sym__smart_punctuation] = STATE(133), + [sym_autolink] = STATE(133), + [sym_footnote_reference] = STATE(150), + [sym_footnote_marker_begin] = STATE(1121), + [sym__image] = STATE(150), + [sym_full_reference_image] = STATE(150), + [sym_collapsed_reference_image] = STATE(150), + [sym_inline_image] = STATE(150), + [sym_image_description] = STATE(678), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(150), + [sym_full_reference_link] = STATE(150), + [sym_collapsed_reference_link] = STATE(150), + [sym_inline_link] = STATE(150), + [sym_link_text] = STATE(679), + [sym_span] = STATE(543), + [sym__bracketed_text_begin] = STATE(1214), + [sym__comment_with_spaces] = STATE(133), + [sym_raw_inline] = STATE(133), + [sym_math] = STATE(133), + [sym_verbatim] = STATE(133), + [sym__todo_highlights] = STATE(133), + [sym_todo] = STATE(133), + [sym_note] = STATE(133), + [sym__symbol_fallback] = STATE(133), + [sym__newline] = STATE(119), + [aux_sym__text] = STATE(122), + [aux_sym__inline_repeat1] = STATE(119), + [anon_sym_LBRACE_] = ACTIONS(159), + [anon_sym__] = ACTIONS(161), + [anon_sym_LBRACE_STAR] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(165), + [anon_sym_LBRACE_CARET] = ACTIONS(167), + [anon_sym_CARET] = ACTIONS(167), + [anon_sym_LBRACE_TILDE] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(169), + [anon_sym_LBRACE_EQ] = ACTIONS(171), + [anon_sym_LBRACE_PLUS] = ACTIONS(173), + [anon_sym_LBRACE_DASH] = ACTIONS(175), + [anon_sym_BSLASH] = ACTIONS(177), + [sym_quotation_marks] = ACTIONS(179), + [sym_ellipsis] = ACTIONS(179), + [sym_em_dash] = ACTIONS(179), + [sym_en_dash] = ACTIONS(181), + [sym_backslash_escape] = ACTIONS(181), + [anon_sym_LT] = ACTIONS(183), + [sym_symbol] = ACTIONS(179), + [anon_sym_LBRACK_CARET] = ACTIONS(185), + [anon_sym_BANG_LBRACK] = ACTIONS(187), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(189), + [anon_sym_LBRACK] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(195), + [anon_sym_TODO] = ACTIONS(197), + [anon_sym_WIP] = ACTIONS(197), + [anon_sym_NOTE] = ACTIONS(199), + [anon_sym_INFO] = ACTIONS(199), + [anon_sym_XXX] = ACTIONS(199), + [sym_fixme] = ACTIONS(179), + [sym__whitespace1] = ACTIONS(201), + [anon_sym_LF] = ACTIONS(203), + [aux_sym__text_token1] = ACTIONS(205), + [sym__verbatim_begin] = ACTIONS(207), + }, + [94] = { + [sym__inline_without_trailing_space] = STATE(907), + [sym__element] = STATE(570), + [sym_emphasis] = STATE(142), [sym_emphasis_begin] = STATE(1124), - [sym_strong] = STATE(133), + [sym_strong] = STATE(142), [sym_strong_begin] = STATE(1125), - [sym_superscript] = STATE(133), + [sym_superscript] = STATE(142), [sym_superscript_begin] = STATE(1126), - [sym_subscript] = STATE(133), + [sym_subscript] = STATE(142), [sym_subscript_begin] = STATE(1127), - [sym_highlighted] = STATE(133), + [sym_highlighted] = STATE(142), [sym_highlighted_begin] = STATE(1128), - [sym_insert] = STATE(133), + [sym_insert] = STATE(142), [sym_insert_begin] = STATE(1129), - [sym_delete] = STATE(133), + [sym_delete] = STATE(142), [sym_delete_begin] = STATE(1130), - [sym_hard_line_break] = STATE(140), - [sym__smart_punctuation] = STATE(140), - [sym_autolink] = STATE(140), - [sym_footnote_reference] = STATE(133), + [sym_hard_line_break] = STATE(137), + [sym__smart_punctuation] = STATE(137), + [sym_autolink] = STATE(137), + [sym_footnote_reference] = STATE(142), [sym_footnote_marker_begin] = STATE(1131), - [sym__image] = STATE(133), - [sym_full_reference_image] = STATE(133), - [sym_collapsed_reference_image] = STATE(133), - [sym_inline_image] = STATE(133), - [sym_image_description] = STATE(663), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(133), - [sym_full_reference_link] = STATE(133), - [sym_collapsed_reference_link] = STATE(133), - [sym_inline_link] = STATE(133), - [sym_link_text] = STATE(669), - [sym_span] = STATE(64), - [sym__bracketed_text_begin] = STATE(1206), - [sym__comment_with_spaces] = STATE(140), - [sym_raw_inline] = STATE(140), - [sym_math] = STATE(140), - [sym_verbatim] = STATE(140), - [sym__todo_highlights] = STATE(140), - [sym_todo] = STATE(140), - [sym_note] = STATE(140), - [sym__symbol_fallback] = STATE(140), - [aux_sym__text] = STATE(122), - [aux_sym__inline_repeat1] = STATE(64), - [anon_sym_LBRACE_] = ACTIONS(537), - [anon_sym__] = ACTIONS(539), - [anon_sym_LBRACE_STAR] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(543), - [anon_sym_LBRACE_CARET] = ACTIONS(545), - [anon_sym_CARET] = ACTIONS(545), - [anon_sym_LBRACE_TILDE] = ACTIONS(547), - [anon_sym_TILDE] = ACTIONS(547), - [anon_sym_LBRACE_EQ] = ACTIONS(549), - [anon_sym_LBRACE_PLUS] = ACTIONS(551), - [anon_sym_LBRACE_DASH] = ACTIONS(553), - [anon_sym_BSLASH] = ACTIONS(555), - [sym_quotation_marks] = ACTIONS(557), - [sym_ellipsis] = ACTIONS(557), - [sym_em_dash] = ACTIONS(557), - [sym_en_dash] = ACTIONS(559), - [sym_backslash_escape] = ACTIONS(559), - [anon_sym_LT] = ACTIONS(561), - [sym_symbol] = ACTIONS(557), - [anon_sym_LBRACK_CARET] = ACTIONS(563), - [anon_sym_BANG_LBRACK] = ACTIONS(565), - [anon_sym_LBRACK] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_DOLLAR] = ACTIONS(571), - [anon_sym_TODO] = ACTIONS(573), - [anon_sym_WIP] = ACTIONS(573), - [anon_sym_NOTE] = ACTIONS(575), - [anon_sym_INFO] = ACTIONS(575), - [anon_sym_XXX] = ACTIONS(575), - [sym_fixme] = ACTIONS(557), - [sym__whitespace1] = ACTIONS(577), - [sym__newline] = ACTIONS(579), - [aux_sym__text_token1] = ACTIONS(581), - [sym__verbatim_begin] = ACTIONS(583), + [sym__image] = STATE(142), + [sym_full_reference_image] = STATE(142), + [sym_collapsed_reference_image] = STATE(142), + [sym_inline_image] = STATE(142), + [sym_image_description] = STATE(687), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(142), + [sym_full_reference_link] = STATE(142), + [sym_collapsed_reference_link] = STATE(142), + [sym_inline_link] = STATE(142), + [sym_link_text] = STATE(654), + [sym_span] = STATE(570), + [sym__bracketed_text_begin] = STATE(1215), + [sym__comment_with_spaces] = STATE(137), + [sym_raw_inline] = STATE(137), + [sym_math] = STATE(137), + [sym_verbatim] = STATE(137), + [sym__todo_highlights] = STATE(137), + [sym_todo] = STATE(137), + [sym_note] = STATE(137), + [sym__symbol_fallback] = STATE(137), + [sym__newline] = STATE(118), + [aux_sym__text] = STATE(128), + [aux_sym__inline_repeat1] = STATE(118), + [anon_sym_LBRACE_] = ACTIONS(209), + [anon_sym__] = ACTIONS(211), + [anon_sym_LBRACE_STAR] = ACTIONS(213), + [anon_sym_STAR] = ACTIONS(215), + [anon_sym_LBRACE_CARET] = ACTIONS(217), + [anon_sym_CARET] = ACTIONS(217), + [anon_sym_LBRACE_TILDE] = ACTIONS(219), + [anon_sym_TILDE] = ACTIONS(219), + [anon_sym_LBRACE_EQ] = ACTIONS(221), + [anon_sym_LBRACE_PLUS] = ACTIONS(223), + [anon_sym_LBRACE_DASH] = ACTIONS(225), + [anon_sym_BSLASH] = ACTIONS(227), + [sym_quotation_marks] = ACTIONS(229), + [sym_ellipsis] = ACTIONS(229), + [sym_em_dash] = ACTIONS(229), + [sym_en_dash] = ACTIONS(231), + [sym_backslash_escape] = ACTIONS(231), + [anon_sym_LT] = ACTIONS(233), + [sym_symbol] = ACTIONS(229), + [anon_sym_LBRACK_CARET] = ACTIONS(235), + [anon_sym_BANG_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_LPAREN] = ACTIONS(243), + [anon_sym_DOLLAR] = ACTIONS(245), + [anon_sym_TODO] = ACTIONS(247), + [anon_sym_WIP] = ACTIONS(247), + [anon_sym_NOTE] = ACTIONS(249), + [anon_sym_INFO] = ACTIONS(249), + [anon_sym_XXX] = ACTIONS(249), + [sym_fixme] = ACTIONS(229), + [sym__whitespace1] = ACTIONS(251), + [anon_sym_LF] = ACTIONS(253), + [aux_sym__text_token1] = ACTIONS(255), + [sym__verbatim_begin] = ACTIONS(257), }, - [94] = { - [sym__inline] = STATE(1100), - [sym__element] = STATE(110), - [sym_emphasis] = STATE(146), + [95] = { + [sym__inline] = STATE(908), + [sym__element] = STATE(15), + [sym_emphasis] = STATE(132), + [sym_emphasis_begin] = STATE(1134), + [sym_strong] = STATE(132), + [sym_strong_begin] = STATE(1135), + [sym_superscript] = STATE(132), + [sym_superscript_begin] = STATE(1136), + [sym_subscript] = STATE(132), + [sym_subscript_begin] = STATE(1137), + [sym_highlighted] = STATE(132), + [sym_highlighted_begin] = STATE(1138), + [sym_insert] = STATE(132), + [sym_insert_begin] = STATE(1139), + [sym_delete] = STATE(132), + [sym_delete_begin] = STATE(1140), + [sym_hard_line_break] = STATE(147), + [sym__smart_punctuation] = STATE(147), + [sym_autolink] = STATE(147), + [sym_footnote_reference] = STATE(132), + [sym_footnote_marker_begin] = STATE(1141), + [sym__image] = STATE(132), + [sym_full_reference_image] = STATE(132), + [sym_collapsed_reference_image] = STATE(132), + [sym_inline_image] = STATE(132), + [sym_image_description] = STATE(682), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(132), + [sym_full_reference_link] = STATE(132), + [sym_collapsed_reference_link] = STATE(132), + [sym_inline_link] = STATE(132), + [sym_link_text] = STATE(689), + [sym_span] = STATE(15), + [sym__bracketed_text_begin] = STATE(1216), + [sym__comment_with_spaces] = STATE(147), + [sym_raw_inline] = STATE(147), + [sym_math] = STATE(147), + [sym_verbatim] = STATE(147), + [sym__todo_highlights] = STATE(147), + [sym_todo] = STATE(147), + [sym_note] = STATE(147), + [sym__symbol_fallback] = STATE(147), + [sym__newline] = STATE(15), + [aux_sym__text] = STATE(121), + [aux_sym__inline_repeat1] = STATE(15), + [anon_sym_LBRACE_] = ACTIONS(105), + [anon_sym__] = ACTIONS(107), + [anon_sym_LBRACE_STAR] = ACTIONS(109), + [anon_sym_STAR] = ACTIONS(111), + [anon_sym_LBRACE_CARET] = ACTIONS(113), + [anon_sym_CARET] = ACTIONS(113), + [anon_sym_LBRACE_TILDE] = ACTIONS(115), + [anon_sym_TILDE] = ACTIONS(115), + [anon_sym_LBRACE_EQ] = ACTIONS(117), + [anon_sym_LBRACE_PLUS] = ACTIONS(119), + [anon_sym_LBRACE_DASH] = ACTIONS(121), + [anon_sym_BSLASH] = ACTIONS(123), + [sym_quotation_marks] = ACTIONS(125), + [sym_ellipsis] = ACTIONS(125), + [sym_em_dash] = ACTIONS(125), + [sym_en_dash] = ACTIONS(127), + [sym_backslash_escape] = ACTIONS(127), + [anon_sym_LT] = ACTIONS(129), + [sym_symbol] = ACTIONS(125), + [anon_sym_LBRACK_CARET] = ACTIONS(131), + [anon_sym_BANG_LBRACK] = ACTIONS(133), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(135), + [anon_sym_LBRACK] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_TODO] = ACTIONS(143), + [anon_sym_WIP] = ACTIONS(143), + [anon_sym_NOTE] = ACTIONS(145), + [anon_sym_INFO] = ACTIONS(145), + [anon_sym_XXX] = ACTIONS(145), + [sym_fixme] = ACTIONS(125), + [sym__whitespace1] = ACTIONS(147), + [anon_sym_LF] = ACTIONS(149), + [aux_sym__text_token1] = ACTIONS(151), + [sym__verbatim_begin] = ACTIONS(153), + }, + [96] = { + [sym__inline] = STATE(909), + [sym__element] = STATE(16), + [sym_emphasis] = STATE(143), [sym_emphasis_begin] = STATE(1144), - [sym_strong] = STATE(146), + [sym_strong] = STATE(143), [sym_strong_begin] = STATE(1145), - [sym_superscript] = STATE(146), + [sym_superscript] = STATE(143), [sym_superscript_begin] = STATE(1146), - [sym_subscript] = STATE(146), + [sym_subscript] = STATE(143), [sym_subscript_begin] = STATE(1147), - [sym_highlighted] = STATE(146), + [sym_highlighted] = STATE(143), [sym_highlighted_begin] = STATE(1148), - [sym_insert] = STATE(146), + [sym_insert] = STATE(143), [sym_insert_begin] = STATE(1149), - [sym_delete] = STATE(146), + [sym_delete] = STATE(143), [sym_delete_begin] = STATE(1150), - [sym_hard_line_break] = STATE(144), - [sym__smart_punctuation] = STATE(144), - [sym_autolink] = STATE(144), - [sym_footnote_reference] = STATE(146), + [sym_hard_line_break] = STATE(141), + [sym__smart_punctuation] = STATE(141), + [sym_autolink] = STATE(141), + [sym_footnote_reference] = STATE(143), [sym_footnote_marker_begin] = STATE(1151), - [sym__image] = STATE(146), - [sym_full_reference_image] = STATE(146), - [sym_collapsed_reference_image] = STATE(146), - [sym_inline_image] = STATE(146), - [sym_image_description] = STATE(673), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(146), - [sym_full_reference_link] = STATE(146), - [sym_collapsed_reference_link] = STATE(146), - [sym_inline_link] = STATE(146), - [sym_link_text] = STATE(662), - [sym_span] = STATE(110), - [sym__bracketed_text_begin] = STATE(1208), - [sym__comment_with_spaces] = STATE(144), - [sym_raw_inline] = STATE(144), - [sym_math] = STATE(144), - [sym_verbatim] = STATE(144), - [sym__todo_highlights] = STATE(144), - [sym_todo] = STATE(144), - [sym_note] = STATE(144), - [sym__symbol_fallback] = STATE(144), - [aux_sym__text] = STATE(128), - [aux_sym__inline_repeat1] = STATE(110), - [anon_sym_LBRACE_] = ACTIONS(587), - [anon_sym__] = ACTIONS(589), - [anon_sym_LBRACE_STAR] = ACTIONS(591), - [anon_sym_STAR] = ACTIONS(593), - [anon_sym_LBRACE_CARET] = ACTIONS(595), - [anon_sym_CARET] = ACTIONS(595), - [anon_sym_LBRACE_TILDE] = ACTIONS(597), - [anon_sym_TILDE] = ACTIONS(597), - [anon_sym_LBRACE_EQ] = ACTIONS(599), - [anon_sym_LBRACE_PLUS] = ACTIONS(601), - [anon_sym_LBRACE_DASH] = ACTIONS(603), - [anon_sym_BSLASH] = ACTIONS(605), - [sym_quotation_marks] = ACTIONS(607), - [sym_ellipsis] = ACTIONS(607), - [sym_em_dash] = ACTIONS(607), - [sym_en_dash] = ACTIONS(609), - [sym_backslash_escape] = ACTIONS(609), - [anon_sym_LT] = ACTIONS(611), - [sym_symbol] = ACTIONS(607), - [anon_sym_LBRACK_CARET] = ACTIONS(613), - [anon_sym_BANG_LBRACK] = ACTIONS(615), - [anon_sym_LBRACK] = ACTIONS(617), - [anon_sym_LPAREN] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [anon_sym_TODO] = ACTIONS(623), - [anon_sym_WIP] = ACTIONS(623), - [anon_sym_NOTE] = ACTIONS(625), - [anon_sym_INFO] = ACTIONS(625), - [anon_sym_XXX] = ACTIONS(625), - [sym_fixme] = ACTIONS(607), - [sym__whitespace1] = ACTIONS(627), - [sym__newline] = ACTIONS(629), - [aux_sym__text_token1] = ACTIONS(631), - [sym__verbatim_begin] = ACTIONS(633), - }, - [95] = { - [sym__inline_without_trailing_space] = STATE(926), - [sym__element] = STATE(550), - [sym_emphasis] = STATE(137), - [sym_emphasis_begin] = STATE(1114), - [sym_strong] = STATE(137), - [sym_strong_begin] = STATE(1115), - [sym_superscript] = STATE(137), - [sym_superscript_begin] = STATE(1116), - [sym_subscript] = STATE(137), - [sym_subscript_begin] = STATE(1117), - [sym_highlighted] = STATE(137), - [sym_highlighted_begin] = STATE(1118), - [sym_insert] = STATE(137), - [sym_insert_begin] = STATE(1119), - [sym_delete] = STATE(137), - [sym_delete_begin] = STATE(1120), - [sym_hard_line_break] = STATE(131), - [sym__smart_punctuation] = STATE(131), - [sym_autolink] = STATE(131), - [sym_footnote_reference] = STATE(137), - [sym_footnote_marker_begin] = STATE(1121), - [sym__image] = STATE(137), - [sym_full_reference_image] = STATE(137), - [sym_collapsed_reference_image] = STATE(137), - [sym_inline_image] = STATE(137), - [sym_image_description] = STATE(649), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(137), - [sym_full_reference_link] = STATE(137), - [sym_collapsed_reference_link] = STATE(137), - [sym_inline_link] = STATE(137), - [sym_link_text] = STATE(650), - [sym_span] = STATE(550), - [sym__bracketed_text_begin] = STATE(1205), - [sym__comment_with_spaces] = STATE(131), - [sym_raw_inline] = STATE(131), - [sym_math] = STATE(131), - [sym_verbatim] = STATE(131), - [sym__todo_highlights] = STATE(131), - [sym_todo] = STATE(131), - [sym_note] = STATE(131), - [sym__symbol_fallback] = STATE(131), - [aux_sym__text] = STATE(130), - [aux_sym__inline_repeat1] = STATE(119), - [anon_sym_LBRACE_] = ACTIONS(489), - [anon_sym__] = ACTIONS(491), - [anon_sym_LBRACE_STAR] = ACTIONS(493), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_LBRACE_CARET] = ACTIONS(497), - [anon_sym_CARET] = ACTIONS(497), - [anon_sym_LBRACE_TILDE] = ACTIONS(499), - [anon_sym_TILDE] = ACTIONS(499), - [anon_sym_LBRACE_EQ] = ACTIONS(501), - [anon_sym_LBRACE_PLUS] = ACTIONS(503), - [anon_sym_LBRACE_DASH] = ACTIONS(505), - [anon_sym_BSLASH] = ACTIONS(507), - [sym_quotation_marks] = ACTIONS(509), - [sym_ellipsis] = ACTIONS(509), - [sym_em_dash] = ACTIONS(509), - [sym_en_dash] = ACTIONS(511), - [sym_backslash_escape] = ACTIONS(511), - [anon_sym_LT] = ACTIONS(513), - [sym_symbol] = ACTIONS(509), - [anon_sym_LBRACK_CARET] = ACTIONS(515), - [anon_sym_BANG_LBRACK] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(519), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_DOLLAR] = ACTIONS(523), - [anon_sym_TODO] = ACTIONS(525), - [anon_sym_WIP] = ACTIONS(525), - [anon_sym_NOTE] = ACTIONS(527), - [anon_sym_INFO] = ACTIONS(527), - [anon_sym_XXX] = ACTIONS(527), - [sym_fixme] = ACTIONS(509), - [sym__whitespace1] = ACTIONS(529), - [sym__newline] = ACTIONS(531), - [aux_sym__text_token1] = ACTIONS(533), - [sym__verbatim_begin] = ACTIONS(535), - }, - [96] = { - [sym__inline_without_trailing_space] = STATE(927), - [sym__element] = STATE(594), - [sym_emphasis] = STATE(149), - [sym_emphasis_begin] = STATE(1104), - [sym_strong] = STATE(149), - [sym_strong_begin] = STATE(1105), - [sym_superscript] = STATE(149), - [sym_superscript_begin] = STATE(1106), - [sym_subscript] = STATE(149), - [sym_subscript_begin] = STATE(1107), - [sym_highlighted] = STATE(149), - [sym_highlighted_begin] = STATE(1108), - [sym_insert] = STATE(149), - [sym_insert_begin] = STATE(1109), - [sym_delete] = STATE(149), - [sym_delete_begin] = STATE(1110), - [sym_hard_line_break] = STATE(143), - [sym__smart_punctuation] = STATE(143), - [sym_autolink] = STATE(143), - [sym_footnote_reference] = STATE(149), - [sym_footnote_marker_begin] = STATE(1111), - [sym__image] = STATE(149), - [sym_full_reference_image] = STATE(149), - [sym_collapsed_reference_image] = STATE(149), - [sym_inline_image] = STATE(149), - [sym_image_description] = STATE(658), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(149), - [sym_full_reference_link] = STATE(149), - [sym_collapsed_reference_link] = STATE(149), - [sym_inline_link] = STATE(149), - [sym_link_text] = STATE(672), - [sym_span] = STATE(594), - [sym__bracketed_text_begin] = STATE(1204), - [sym__comment_with_spaces] = STATE(143), - [sym_raw_inline] = STATE(143), - [sym_math] = STATE(143), - [sym_verbatim] = STATE(143), - [sym__todo_highlights] = STATE(143), - [sym_todo] = STATE(143), - [sym_note] = STATE(143), - [sym__symbol_fallback] = STATE(143), - [aux_sym__text] = STATE(127), - [aux_sym__inline_repeat1] = STATE(120), - [anon_sym_LBRACE_] = ACTIONS(441), - [anon_sym__] = ACTIONS(443), - [anon_sym_LBRACE_STAR] = ACTIONS(445), - [anon_sym_STAR] = ACTIONS(447), - [anon_sym_LBRACE_CARET] = ACTIONS(449), - [anon_sym_CARET] = ACTIONS(449), - [anon_sym_LBRACE_TILDE] = ACTIONS(451), - [anon_sym_TILDE] = ACTIONS(451), - [anon_sym_LBRACE_EQ] = ACTIONS(453), - [anon_sym_LBRACE_PLUS] = ACTIONS(455), - [anon_sym_LBRACE_DASH] = ACTIONS(457), - [anon_sym_BSLASH] = ACTIONS(459), - [sym_quotation_marks] = ACTIONS(461), - [sym_ellipsis] = ACTIONS(461), - [sym_em_dash] = ACTIONS(461), - [sym_en_dash] = ACTIONS(463), - [sym_backslash_escape] = ACTIONS(463), - [anon_sym_LT] = ACTIONS(465), - [sym_symbol] = ACTIONS(461), - [anon_sym_LBRACK_CARET] = ACTIONS(467), - [anon_sym_BANG_LBRACK] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(471), - [anon_sym_LPAREN] = ACTIONS(473), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_TODO] = ACTIONS(477), - [anon_sym_WIP] = ACTIONS(477), - [anon_sym_NOTE] = ACTIONS(479), - [anon_sym_INFO] = ACTIONS(479), - [anon_sym_XXX] = ACTIONS(479), - [sym_fixme] = ACTIONS(461), - [sym__whitespace1] = ACTIONS(481), - [sym__newline] = ACTIONS(483), - [aux_sym__text_token1] = ACTIONS(485), - [sym__verbatim_begin] = ACTIONS(487), + [sym__image] = STATE(143), + [sym_full_reference_image] = STATE(143), + [sym_collapsed_reference_image] = STATE(143), + [sym_inline_image] = STATE(143), + [sym_image_description] = STATE(660), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(143), + [sym_full_reference_link] = STATE(143), + [sym_collapsed_reference_link] = STATE(143), + [sym_inline_link] = STATE(143), + [sym_link_text] = STATE(661), + [sym_span] = STATE(16), + [sym__bracketed_text_begin] = STATE(1217), + [sym__comment_with_spaces] = STATE(141), + [sym_raw_inline] = STATE(141), + [sym_math] = STATE(141), + [sym_verbatim] = STATE(141), + [sym__todo_highlights] = STATE(141), + [sym_todo] = STATE(141), + [sym_note] = STATE(141), + [sym__symbol_fallback] = STATE(141), + [sym__newline] = STATE(16), + [aux_sym__text] = STATE(125), + [aux_sym__inline_repeat1] = STATE(16), + [anon_sym_LBRACE_] = ACTIONS(259), + [anon_sym__] = ACTIONS(261), + [anon_sym_LBRACE_STAR] = ACTIONS(263), + [anon_sym_STAR] = ACTIONS(265), + [anon_sym_LBRACE_CARET] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_LBRACE_TILDE] = ACTIONS(269), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_LBRACE_EQ] = ACTIONS(271), + [anon_sym_LBRACE_PLUS] = ACTIONS(273), + [anon_sym_LBRACE_DASH] = ACTIONS(275), + [anon_sym_BSLASH] = ACTIONS(277), + [sym_quotation_marks] = ACTIONS(279), + [sym_ellipsis] = ACTIONS(279), + [sym_em_dash] = ACTIONS(279), + [sym_en_dash] = ACTIONS(281), + [sym_backslash_escape] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(283), + [sym_symbol] = ACTIONS(279), + [anon_sym_LBRACK_CARET] = ACTIONS(285), + [anon_sym_BANG_LBRACK] = ACTIONS(287), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_DOLLAR] = ACTIONS(295), + [anon_sym_TODO] = ACTIONS(297), + [anon_sym_WIP] = ACTIONS(297), + [anon_sym_NOTE] = ACTIONS(299), + [anon_sym_INFO] = ACTIONS(299), + [anon_sym_XXX] = ACTIONS(299), + [sym_fixme] = ACTIONS(279), + [sym__whitespace1] = ACTIONS(301), + [anon_sym_LF] = ACTIONS(303), + [aux_sym__text_token1] = ACTIONS(305), + [sym__verbatim_begin] = ACTIONS(307), }, [97] = { - [sym__inline] = STATE(980), - [sym__element] = STATE(46), + [sym__inline] = STATE(910), + [sym__element] = STATE(18), [sym_emphasis] = STATE(135), - [sym_emphasis_begin] = STATE(1174), + [sym_emphasis_begin] = STATE(1154), [sym_strong] = STATE(135), - [sym_strong_begin] = STATE(1175), + [sym_strong_begin] = STATE(1155), [sym_superscript] = STATE(135), - [sym_superscript_begin] = STATE(1176), + [sym_superscript_begin] = STATE(1156), [sym_subscript] = STATE(135), - [sym_subscript_begin] = STATE(1177), + [sym_subscript_begin] = STATE(1157), [sym_highlighted] = STATE(135), - [sym_highlighted_begin] = STATE(1178), + [sym_highlighted_begin] = STATE(1158), [sym_insert] = STATE(135), - [sym_insert_begin] = STATE(1179), + [sym_insert_begin] = STATE(1159), [sym_delete] = STATE(135), - [sym_delete_begin] = STATE(1180), - [sym_hard_line_break] = STATE(138), - [sym__smart_punctuation] = STATE(138), - [sym_autolink] = STATE(138), + [sym_delete_begin] = STATE(1160), + [sym_hard_line_break] = STATE(134), + [sym__smart_punctuation] = STATE(134), + [sym_autolink] = STATE(134), [sym_footnote_reference] = STATE(135), - [sym_footnote_marker_begin] = STATE(1181), + [sym_footnote_marker_begin] = STATE(1161), [sym__image] = STATE(135), [sym_full_reference_image] = STATE(135), [sym_collapsed_reference_image] = STATE(135), [sym_inline_image] = STATE(135), - [sym_image_description] = STATE(656), - [sym__image_description_begin] = STATE(1079), + [sym_image_description] = STATE(677), + [sym__image_description_begin] = STATE(958), [sym__link] = STATE(135), [sym_full_reference_link] = STATE(135), [sym_collapsed_reference_link] = STATE(135), [sym_inline_link] = STATE(135), - [sym_link_text] = STATE(654), - [sym_span] = STATE(46), - [sym__bracketed_text_begin] = STATE(1211), + [sym_link_text] = STATE(680), + [sym_span] = STATE(18), + [sym__bracketed_text_begin] = STATE(1218), + [sym__comment_with_spaces] = STATE(134), + [sym_raw_inline] = STATE(134), + [sym_math] = STATE(134), + [sym_verbatim] = STATE(134), + [sym__todo_highlights] = STATE(134), + [sym_todo] = STATE(134), + [sym_note] = STATE(134), + [sym__symbol_fallback] = STATE(134), + [sym__newline] = STATE(18), + [aux_sym__text] = STATE(123), + [aux_sym__inline_repeat1] = STATE(18), + [anon_sym_LBRACE_] = ACTIONS(309), + [anon_sym__] = ACTIONS(311), + [anon_sym_LBRACE_STAR] = ACTIONS(313), + [anon_sym_STAR] = ACTIONS(315), + [anon_sym_LBRACE_CARET] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_LBRACE_TILDE] = ACTIONS(319), + [anon_sym_TILDE] = ACTIONS(319), + [anon_sym_LBRACE_EQ] = ACTIONS(321), + [anon_sym_LBRACE_PLUS] = ACTIONS(323), + [anon_sym_LBRACE_DASH] = ACTIONS(325), + [anon_sym_BSLASH] = ACTIONS(327), + [sym_quotation_marks] = ACTIONS(329), + [sym_ellipsis] = ACTIONS(329), + [sym_em_dash] = ACTIONS(329), + [sym_en_dash] = ACTIONS(331), + [sym_backslash_escape] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [sym_symbol] = ACTIONS(329), + [anon_sym_LBRACK_CARET] = ACTIONS(335), + [anon_sym_BANG_LBRACK] = ACTIONS(337), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(339), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_DOLLAR] = ACTIONS(345), + [anon_sym_TODO] = ACTIONS(347), + [anon_sym_WIP] = ACTIONS(347), + [anon_sym_NOTE] = ACTIONS(349), + [anon_sym_INFO] = ACTIONS(349), + [anon_sym_XXX] = ACTIONS(349), + [sym_fixme] = ACTIONS(329), + [sym__whitespace1] = ACTIONS(351), + [anon_sym_LF] = ACTIONS(353), + [aux_sym__text_token1] = ACTIONS(355), + [sym__verbatim_begin] = ACTIONS(357), + }, + [98] = { + [sym__inline] = STATE(911), + [sym__element] = STATE(20), + [sym_emphasis] = STATE(136), + [sym_emphasis_begin] = STATE(1164), + [sym_strong] = STATE(136), + [sym_strong_begin] = STATE(1165), + [sym_superscript] = STATE(136), + [sym_superscript_begin] = STATE(1166), + [sym_subscript] = STATE(136), + [sym_subscript_begin] = STATE(1167), + [sym_highlighted] = STATE(136), + [sym_highlighted_begin] = STATE(1168), + [sym_insert] = STATE(136), + [sym_insert_begin] = STATE(1169), + [sym_delete] = STATE(136), + [sym_delete_begin] = STATE(1170), + [sym_hard_line_break] = STATE(138), + [sym__smart_punctuation] = STATE(138), + [sym_autolink] = STATE(138), + [sym_footnote_reference] = STATE(136), + [sym_footnote_marker_begin] = STATE(1171), + [sym__image] = STATE(136), + [sym_full_reference_image] = STATE(136), + [sym_collapsed_reference_image] = STATE(136), + [sym_inline_image] = STATE(136), + [sym_image_description] = STATE(685), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(136), + [sym_full_reference_link] = STATE(136), + [sym_collapsed_reference_link] = STATE(136), + [sym_inline_link] = STATE(136), + [sym_link_text] = STATE(686), + [sym_span] = STATE(20), + [sym__bracketed_text_begin] = STATE(1219), [sym__comment_with_spaces] = STATE(138), [sym_raw_inline] = STATE(138), [sym_math] = STATE(138), @@ -12936,78 +13314,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(138), [sym_note] = STATE(138), [sym__symbol_fallback] = STATE(138), - [aux_sym__text] = STATE(121), - [aux_sym__inline_repeat1] = STATE(46), - [anon_sym_LBRACE_] = ACTIONS(345), - [anon_sym__] = ACTIONS(347), - [anon_sym_LBRACE_STAR] = ACTIONS(349), - [anon_sym_STAR] = ACTIONS(351), - [anon_sym_LBRACE_CARET] = ACTIONS(353), - [anon_sym_CARET] = ACTIONS(353), - [anon_sym_LBRACE_TILDE] = ACTIONS(355), - [anon_sym_TILDE] = ACTIONS(355), - [anon_sym_LBRACE_EQ] = ACTIONS(357), - [anon_sym_LBRACE_PLUS] = ACTIONS(359), - [anon_sym_LBRACE_DASH] = ACTIONS(361), - [anon_sym_BSLASH] = ACTIONS(363), - [sym_quotation_marks] = ACTIONS(365), - [sym_ellipsis] = ACTIONS(365), - [sym_em_dash] = ACTIONS(365), - [sym_en_dash] = ACTIONS(367), - [sym_backslash_escape] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(369), - [sym_symbol] = ACTIONS(365), - [anon_sym_LBRACK_CARET] = ACTIONS(371), - [anon_sym_BANG_LBRACK] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LPAREN] = ACTIONS(377), - [anon_sym_DOLLAR] = ACTIONS(379), - [anon_sym_TODO] = ACTIONS(381), - [anon_sym_WIP] = ACTIONS(381), - [anon_sym_NOTE] = ACTIONS(383), - [anon_sym_INFO] = ACTIONS(383), - [anon_sym_XXX] = ACTIONS(383), - [sym_fixme] = ACTIONS(365), - [sym__whitespace1] = ACTIONS(385), - [sym__newline] = ACTIONS(387), - [aux_sym__text_token1] = ACTIONS(389), - [sym__verbatim_begin] = ACTIONS(391), + [sym__newline] = STATE(20), + [aux_sym__text] = STATE(126), + [aux_sym__inline_repeat1] = STATE(20), + [anon_sym_LBRACE_] = ACTIONS(359), + [anon_sym__] = ACTIONS(361), + [anon_sym_LBRACE_STAR] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(365), + [anon_sym_LBRACE_CARET] = ACTIONS(367), + [anon_sym_CARET] = ACTIONS(367), + [anon_sym_LBRACE_TILDE] = ACTIONS(369), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_LBRACE_EQ] = ACTIONS(371), + [anon_sym_LBRACE_PLUS] = ACTIONS(373), + [anon_sym_LBRACE_DASH] = ACTIONS(375), + [anon_sym_BSLASH] = ACTIONS(377), + [sym_quotation_marks] = ACTIONS(379), + [sym_ellipsis] = ACTIONS(379), + [sym_em_dash] = ACTIONS(379), + [sym_en_dash] = ACTIONS(381), + [sym_backslash_escape] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(383), + [sym_symbol] = ACTIONS(379), + [anon_sym_LBRACK_CARET] = ACTIONS(385), + [anon_sym_BANG_LBRACK] = ACTIONS(387), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(393), + [anon_sym_DOLLAR] = ACTIONS(395), + [anon_sym_TODO] = ACTIONS(397), + [anon_sym_WIP] = ACTIONS(397), + [anon_sym_NOTE] = ACTIONS(399), + [anon_sym_INFO] = ACTIONS(399), + [anon_sym_XXX] = ACTIONS(399), + [sym_fixme] = ACTIONS(379), + [sym__whitespace1] = ACTIONS(401), + [anon_sym_LF] = ACTIONS(403), + [aux_sym__text_token1] = ACTIONS(405), + [sym__verbatim_begin] = ACTIONS(407), }, - [98] = { - [sym__inline] = STATE(1086), - [sym__element] = STATE(58), - [sym_emphasis] = STATE(148), - [sym_emphasis_begin] = STATE(1184), - [sym_strong] = STATE(148), - [sym_strong_begin] = STATE(1185), - [sym_superscript] = STATE(148), - [sym_superscript_begin] = STATE(1186), - [sym_subscript] = STATE(148), - [sym_subscript_begin] = STATE(1187), - [sym_highlighted] = STATE(148), - [sym_highlighted_begin] = STATE(1188), - [sym_insert] = STATE(148), - [sym_insert_begin] = STATE(1189), - [sym_delete] = STATE(148), - [sym_delete_begin] = STATE(1190), + [99] = { + [sym__inline] = STATE(912), + [sym__element] = STATE(22), + [sym_emphasis] = STATE(140), + [sym_emphasis_begin] = STATE(1174), + [sym_strong] = STATE(140), + [sym_strong_begin] = STATE(1175), + [sym_superscript] = STATE(140), + [sym_superscript_begin] = STATE(1176), + [sym_subscript] = STATE(140), + [sym_subscript_begin] = STATE(1177), + [sym_highlighted] = STATE(140), + [sym_highlighted_begin] = STATE(1178), + [sym_insert] = STATE(140), + [sym_insert_begin] = STATE(1179), + [sym_delete] = STATE(140), + [sym_delete_begin] = STATE(1180), [sym_hard_line_break] = STATE(139), [sym__smart_punctuation] = STATE(139), [sym_autolink] = STATE(139), - [sym_footnote_reference] = STATE(148), - [sym_footnote_marker_begin] = STATE(1191), - [sym__image] = STATE(148), - [sym_full_reference_image] = STATE(148), - [sym_collapsed_reference_image] = STATE(148), - [sym_inline_image] = STATE(148), - [sym_image_description] = STATE(648), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(148), - [sym_full_reference_link] = STATE(148), - [sym_collapsed_reference_link] = STATE(148), - [sym_inline_link] = STATE(148), - [sym_link_text] = STATE(647), - [sym_span] = STATE(58), - [sym__bracketed_text_begin] = STATE(1212), + [sym_footnote_reference] = STATE(140), + [sym_footnote_marker_begin] = STATE(1181), + [sym__image] = STATE(140), + [sym_full_reference_image] = STATE(140), + [sym_collapsed_reference_image] = STATE(140), + [sym_inline_image] = STATE(140), + [sym_image_description] = STATE(655), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(140), + [sym_full_reference_link] = STATE(140), + [sym_collapsed_reference_link] = STATE(140), + [sym_inline_link] = STATE(140), + [sym_link_text] = STATE(656), + [sym_span] = STATE(22), + [sym__bracketed_text_begin] = STATE(1220), [sym__comment_with_spaces] = STATE(139), [sym_raw_inline] = STATE(139), [sym_math] = STATE(139), @@ -13016,78 +13396,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(139), [sym_note] = STATE(139), [sym__symbol_fallback] = STATE(139), - [aux_sym__text] = STATE(123), - [aux_sym__inline_repeat1] = STATE(58), - [anon_sym_LBRACE_] = ACTIONS(51), - [anon_sym__] = ACTIONS(53), - [anon_sym_LBRACE_STAR] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(57), - [anon_sym_LBRACE_CARET] = ACTIONS(59), - [anon_sym_CARET] = ACTIONS(59), - [anon_sym_LBRACE_TILDE] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(61), - [anon_sym_LBRACE_EQ] = ACTIONS(63), - [anon_sym_LBRACE_PLUS] = ACTIONS(65), - [anon_sym_LBRACE_DASH] = ACTIONS(67), - [anon_sym_BSLASH] = ACTIONS(69), - [sym_quotation_marks] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(71), - [sym_em_dash] = ACTIONS(71), - [sym_en_dash] = ACTIONS(73), - [sym_backslash_escape] = ACTIONS(73), - [anon_sym_LT] = ACTIONS(75), - [sym_symbol] = ACTIONS(71), - [anon_sym_LBRACK_CARET] = ACTIONS(77), - [anon_sym_BANG_LBRACK] = ACTIONS(79), - [anon_sym_LBRACK] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_TODO] = ACTIONS(87), - [anon_sym_WIP] = ACTIONS(87), - [anon_sym_NOTE] = ACTIONS(89), - [anon_sym_INFO] = ACTIONS(89), - [anon_sym_XXX] = ACTIONS(89), - [sym_fixme] = ACTIONS(71), - [sym__whitespace1] = ACTIONS(91), - [sym__newline] = ACTIONS(93), - [aux_sym__text_token1] = ACTIONS(95), - [sym__verbatim_begin] = ACTIONS(97), - }, - [99] = { - [sym__inline] = STATE(1099), - [sym__element] = STATE(22), - [sym_emphasis] = STATE(147), - [sym_emphasis_begin] = STATE(1154), - [sym_strong] = STATE(147), - [sym_strong_begin] = STATE(1155), - [sym_superscript] = STATE(147), - [sym_superscript_begin] = STATE(1156), - [sym_subscript] = STATE(147), - [sym_subscript_begin] = STATE(1157), - [sym_highlighted] = STATE(147), - [sym_highlighted_begin] = STATE(1158), - [sym_insert] = STATE(147), - [sym_insert_begin] = STATE(1159), - [sym_delete] = STATE(147), - [sym_delete_begin] = STATE(1160), + [sym__newline] = STATE(22), + [aux_sym__text] = STATE(127), + [aux_sym__inline_repeat1] = STATE(22), + [anon_sym_LBRACE_] = ACTIONS(409), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_STAR] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(415), + [anon_sym_LBRACE_CARET] = ACTIONS(417), + [anon_sym_CARET] = ACTIONS(417), + [anon_sym_LBRACE_TILDE] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(419), + [anon_sym_LBRACE_EQ] = ACTIONS(421), + [anon_sym_LBRACE_PLUS] = ACTIONS(423), + [anon_sym_LBRACE_DASH] = ACTIONS(425), + [anon_sym_BSLASH] = ACTIONS(427), + [sym_quotation_marks] = ACTIONS(429), + [sym_ellipsis] = ACTIONS(429), + [sym_em_dash] = ACTIONS(429), + [sym_en_dash] = ACTIONS(431), + [sym_backslash_escape] = ACTIONS(431), + [anon_sym_LT] = ACTIONS(433), + [sym_symbol] = ACTIONS(429), + [anon_sym_LBRACK_CARET] = ACTIONS(435), + [anon_sym_BANG_LBRACK] = ACTIONS(437), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(439), + [anon_sym_LBRACK] = ACTIONS(441), + [anon_sym_LPAREN] = ACTIONS(443), + [anon_sym_DOLLAR] = ACTIONS(445), + [anon_sym_TODO] = ACTIONS(447), + [anon_sym_WIP] = ACTIONS(447), + [anon_sym_NOTE] = ACTIONS(449), + [anon_sym_INFO] = ACTIONS(449), + [anon_sym_XXX] = ACTIONS(449), + [sym_fixme] = ACTIONS(429), + [sym__whitespace1] = ACTIONS(451), + [anon_sym_LF] = ACTIONS(453), + [aux_sym__text_token1] = ACTIONS(455), + [sym__verbatim_begin] = ACTIONS(457), + }, + [100] = { + [sym__inline] = STATE(914), + [sym__element] = STATE(24), + [sym_emphasis] = STATE(131), + [sym_emphasis_begin] = STATE(1184), + [sym_strong] = STATE(131), + [sym_strong_begin] = STATE(1185), + [sym_superscript] = STATE(131), + [sym_superscript_begin] = STATE(1186), + [sym_subscript] = STATE(131), + [sym_subscript_begin] = STATE(1187), + [sym_highlighted] = STATE(131), + [sym_highlighted_begin] = STATE(1188), + [sym_insert] = STATE(131), + [sym_insert_begin] = STATE(1189), + [sym_delete] = STATE(131), + [sym_delete_begin] = STATE(1190), [sym_hard_line_break] = STATE(145), [sym__smart_punctuation] = STATE(145), [sym_autolink] = STATE(145), - [sym_footnote_reference] = STATE(147), - [sym_footnote_marker_begin] = STATE(1161), - [sym__image] = STATE(147), - [sym_full_reference_image] = STATE(147), - [sym_collapsed_reference_image] = STATE(147), - [sym_inline_image] = STATE(147), - [sym_image_description] = STATE(665), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(147), - [sym_full_reference_link] = STATE(147), - [sym_collapsed_reference_link] = STATE(147), - [sym_inline_link] = STATE(147), - [sym_link_text] = STATE(664), - [sym_span] = STATE(22), - [sym__bracketed_text_begin] = STATE(1209), + [sym_footnote_reference] = STATE(131), + [sym_footnote_marker_begin] = STATE(1191), + [sym__image] = STATE(131), + [sym_full_reference_image] = STATE(131), + [sym_collapsed_reference_image] = STATE(131), + [sym_inline_image] = STATE(131), + [sym_image_description] = STATE(662), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(131), + [sym_full_reference_link] = STATE(131), + [sym_collapsed_reference_link] = STATE(131), + [sym_inline_link] = STATE(131), + [sym_link_text] = STATE(663), + [sym_span] = STATE(24), + [sym__bracketed_text_begin] = STATE(1221), [sym__comment_with_spaces] = STATE(145), [sym_raw_inline] = STATE(145), [sym_math] = STATE(145), @@ -13096,1741 +13478,2095 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_todo] = STATE(145), [sym_note] = STATE(145), [sym__symbol_fallback] = STATE(145), - [aux_sym__text] = STATE(124), - [aux_sym__inline_repeat1] = STATE(22), - [anon_sym_LBRACE_] = ACTIONS(101), - [anon_sym__] = ACTIONS(103), - [anon_sym_LBRACE_STAR] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_LBRACE_CARET] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(109), - [anon_sym_LBRACE_TILDE] = ACTIONS(111), - [anon_sym_TILDE] = ACTIONS(111), - [anon_sym_LBRACE_EQ] = ACTIONS(113), - [anon_sym_LBRACE_PLUS] = ACTIONS(115), - [anon_sym_LBRACE_DASH] = ACTIONS(117), - [anon_sym_BSLASH] = ACTIONS(119), - [sym_quotation_marks] = ACTIONS(121), - [sym_ellipsis] = ACTIONS(121), - [sym_em_dash] = ACTIONS(121), - [sym_en_dash] = ACTIONS(123), - [sym_backslash_escape] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(125), - [sym_symbol] = ACTIONS(121), - [anon_sym_LBRACK_CARET] = ACTIONS(127), - [anon_sym_BANG_LBRACK] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_TODO] = ACTIONS(137), - [anon_sym_WIP] = ACTIONS(137), - [anon_sym_NOTE] = ACTIONS(139), - [anon_sym_INFO] = ACTIONS(139), - [anon_sym_XXX] = ACTIONS(139), - [sym_fixme] = ACTIONS(121), - [sym__whitespace1] = ACTIONS(141), - [sym__newline] = ACTIONS(143), - [aux_sym__text_token1] = ACTIONS(145), - [sym__verbatim_begin] = ACTIONS(147), - }, - [100] = { - [sym__inline] = STATE(982), - [sym__element] = STATE(30), - [sym_emphasis] = STATE(132), - [sym_emphasis_begin] = STATE(1164), - [sym_strong] = STATE(132), - [sym_strong_begin] = STATE(1165), - [sym_superscript] = STATE(132), - [sym_superscript_begin] = STATE(1166), - [sym_subscript] = STATE(132), - [sym_subscript_begin] = STATE(1167), - [sym_highlighted] = STATE(132), - [sym_highlighted_begin] = STATE(1168), - [sym_insert] = STATE(132), - [sym_insert_begin] = STATE(1169), - [sym_delete] = STATE(132), - [sym_delete_begin] = STATE(1170), - [sym_hard_line_break] = STATE(142), - [sym__smart_punctuation] = STATE(142), - [sym_autolink] = STATE(142), - [sym_footnote_reference] = STATE(132), - [sym_footnote_marker_begin] = STATE(1171), - [sym__image] = STATE(132), - [sym_full_reference_image] = STATE(132), - [sym_collapsed_reference_image] = STATE(132), - [sym_inline_image] = STATE(132), - [sym_image_description] = STATE(660), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(132), - [sym_full_reference_link] = STATE(132), - [sym_collapsed_reference_link] = STATE(132), - [sym_inline_link] = STATE(132), - [sym_link_text] = STATE(659), - [sym_span] = STATE(30), - [sym__bracketed_text_begin] = STATE(1210), - [sym__comment_with_spaces] = STATE(142), - [sym_raw_inline] = STATE(142), - [sym_math] = STATE(142), - [sym_verbatim] = STATE(142), - [sym__todo_highlights] = STATE(142), - [sym_todo] = STATE(142), - [sym_note] = STATE(142), - [sym__symbol_fallback] = STATE(142), - [aux_sym__text] = STATE(126), - [aux_sym__inline_repeat1] = STATE(30), - [anon_sym_LBRACE_] = ACTIONS(393), - [anon_sym__] = ACTIONS(395), - [anon_sym_LBRACE_STAR] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(399), - [anon_sym_LBRACE_CARET] = ACTIONS(401), - [anon_sym_CARET] = ACTIONS(401), - [anon_sym_LBRACE_TILDE] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_LBRACE_EQ] = ACTIONS(405), - [anon_sym_LBRACE_PLUS] = ACTIONS(407), - [anon_sym_LBRACE_DASH] = ACTIONS(409), - [anon_sym_BSLASH] = ACTIONS(411), - [sym_quotation_marks] = ACTIONS(413), - [sym_ellipsis] = ACTIONS(413), - [sym_em_dash] = ACTIONS(413), - [sym_en_dash] = ACTIONS(415), - [sym_backslash_escape] = ACTIONS(415), - [anon_sym_LT] = ACTIONS(417), - [sym_symbol] = ACTIONS(413), - [anon_sym_LBRACK_CARET] = ACTIONS(419), - [anon_sym_BANG_LBRACK] = ACTIONS(421), - [anon_sym_LBRACK] = ACTIONS(423), - [anon_sym_LPAREN] = ACTIONS(425), - [anon_sym_DOLLAR] = ACTIONS(427), - [anon_sym_TODO] = ACTIONS(429), - [anon_sym_WIP] = ACTIONS(429), - [anon_sym_NOTE] = ACTIONS(431), - [anon_sym_INFO] = ACTIONS(431), - [anon_sym_XXX] = ACTIONS(431), - [sym_fixme] = ACTIONS(413), - [sym__whitespace1] = ACTIONS(433), - [sym__newline] = ACTIONS(435), - [aux_sym__text_token1] = ACTIONS(437), - [sym__verbatim_begin] = ACTIONS(439), + [sym__newline] = STATE(24), + [aux_sym__text] = STATE(129), + [aux_sym__inline_repeat1] = STATE(24), + [anon_sym_LBRACE_] = ACTIONS(459), + [anon_sym__] = ACTIONS(461), + [anon_sym_LBRACE_STAR] = ACTIONS(463), + [anon_sym_STAR] = ACTIONS(465), + [anon_sym_LBRACE_CARET] = ACTIONS(467), + [anon_sym_CARET] = ACTIONS(467), + [anon_sym_LBRACE_TILDE] = ACTIONS(469), + [anon_sym_TILDE] = ACTIONS(469), + [anon_sym_LBRACE_EQ] = ACTIONS(471), + [anon_sym_LBRACE_PLUS] = ACTIONS(473), + [anon_sym_LBRACE_DASH] = ACTIONS(475), + [anon_sym_BSLASH] = ACTIONS(477), + [sym_quotation_marks] = ACTIONS(479), + [sym_ellipsis] = ACTIONS(479), + [sym_em_dash] = ACTIONS(479), + [sym_en_dash] = ACTIONS(481), + [sym_backslash_escape] = ACTIONS(481), + [anon_sym_LT] = ACTIONS(483), + [sym_symbol] = ACTIONS(479), + [anon_sym_LBRACK_CARET] = ACTIONS(485), + [anon_sym_BANG_LBRACK] = ACTIONS(487), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(489), + [anon_sym_LBRACK] = ACTIONS(491), + [anon_sym_LPAREN] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(495), + [anon_sym_TODO] = ACTIONS(497), + [anon_sym_WIP] = ACTIONS(497), + [anon_sym_NOTE] = ACTIONS(499), + [anon_sym_INFO] = ACTIONS(499), + [anon_sym_XXX] = ACTIONS(499), + [sym_fixme] = ACTIONS(479), + [sym__whitespace1] = ACTIONS(501), + [anon_sym_LF] = ACTIONS(503), + [aux_sym__text_token1] = ACTIONS(505), + [sym__verbatim_begin] = ACTIONS(507), }, [101] = { - [sym__inline] = STATE(1098), - [sym__element] = STATE(30), + [sym__inline_without_trailing_space] = STATE(940), + [sym__element] = STATE(543), + [sym_emphasis] = STATE(150), + [sym_emphasis_begin] = STATE(1114), + [sym_strong] = STATE(150), + [sym_strong_begin] = STATE(1115), + [sym_superscript] = STATE(150), + [sym_superscript_begin] = STATE(1116), + [sym_subscript] = STATE(150), + [sym_subscript_begin] = STATE(1117), + [sym_highlighted] = STATE(150), + [sym_highlighted_begin] = STATE(1118), + [sym_insert] = STATE(150), + [sym_insert_begin] = STATE(1119), + [sym_delete] = STATE(150), + [sym_delete_begin] = STATE(1120), + [sym_hard_line_break] = STATE(133), + [sym__smart_punctuation] = STATE(133), + [sym_autolink] = STATE(133), + [sym_footnote_reference] = STATE(150), + [sym_footnote_marker_begin] = STATE(1121), + [sym__image] = STATE(150), + [sym_full_reference_image] = STATE(150), + [sym_collapsed_reference_image] = STATE(150), + [sym_inline_image] = STATE(150), + [sym_image_description] = STATE(678), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(150), + [sym_full_reference_link] = STATE(150), + [sym_collapsed_reference_link] = STATE(150), + [sym_inline_link] = STATE(150), + [sym_link_text] = STATE(679), + [sym_span] = STATE(543), + [sym__bracketed_text_begin] = STATE(1214), + [sym__comment_with_spaces] = STATE(133), + [sym_raw_inline] = STATE(133), + [sym_math] = STATE(133), + [sym_verbatim] = STATE(133), + [sym__todo_highlights] = STATE(133), + [sym_todo] = STATE(133), + [sym_note] = STATE(133), + [sym__symbol_fallback] = STATE(133), + [sym__newline] = STATE(119), + [aux_sym__text] = STATE(122), + [aux_sym__inline_repeat1] = STATE(119), + [anon_sym_LBRACE_] = ACTIONS(159), + [anon_sym__] = ACTIONS(161), + [anon_sym_LBRACE_STAR] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(165), + [anon_sym_LBRACE_CARET] = ACTIONS(167), + [anon_sym_CARET] = ACTIONS(167), + [anon_sym_LBRACE_TILDE] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(169), + [anon_sym_LBRACE_EQ] = ACTIONS(171), + [anon_sym_LBRACE_PLUS] = ACTIONS(173), + [anon_sym_LBRACE_DASH] = ACTIONS(175), + [anon_sym_BSLASH] = ACTIONS(177), + [sym_quotation_marks] = ACTIONS(179), + [sym_ellipsis] = ACTIONS(179), + [sym_em_dash] = ACTIONS(179), + [sym_en_dash] = ACTIONS(181), + [sym_backslash_escape] = ACTIONS(181), + [anon_sym_LT] = ACTIONS(183), + [sym_symbol] = ACTIONS(179), + [anon_sym_LBRACK_CARET] = ACTIONS(185), + [anon_sym_BANG_LBRACK] = ACTIONS(187), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(189), + [anon_sym_LBRACK] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(195), + [anon_sym_TODO] = ACTIONS(197), + [anon_sym_WIP] = ACTIONS(197), + [anon_sym_NOTE] = ACTIONS(199), + [anon_sym_INFO] = ACTIONS(199), + [anon_sym_XXX] = ACTIONS(199), + [sym_fixme] = ACTIONS(179), + [sym__whitespace1] = ACTIONS(201), + [anon_sym_LF] = ACTIONS(203), + [aux_sym__text_token1] = ACTIONS(205), + [sym__verbatim_begin] = ACTIONS(207), + }, + [102] = { + [sym__inline_without_trailing_space] = STATE(941), + [sym__element] = STATE(570), + [sym_emphasis] = STATE(142), + [sym_emphasis_begin] = STATE(1124), + [sym_strong] = STATE(142), + [sym_strong_begin] = STATE(1125), + [sym_superscript] = STATE(142), + [sym_superscript_begin] = STATE(1126), + [sym_subscript] = STATE(142), + [sym_subscript_begin] = STATE(1127), + [sym_highlighted] = STATE(142), + [sym_highlighted_begin] = STATE(1128), + [sym_insert] = STATE(142), + [sym_insert_begin] = STATE(1129), + [sym_delete] = STATE(142), + [sym_delete_begin] = STATE(1130), + [sym_hard_line_break] = STATE(137), + [sym__smart_punctuation] = STATE(137), + [sym_autolink] = STATE(137), + [sym_footnote_reference] = STATE(142), + [sym_footnote_marker_begin] = STATE(1131), + [sym__image] = STATE(142), + [sym_full_reference_image] = STATE(142), + [sym_collapsed_reference_image] = STATE(142), + [sym_inline_image] = STATE(142), + [sym_image_description] = STATE(687), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(142), + [sym_full_reference_link] = STATE(142), + [sym_collapsed_reference_link] = STATE(142), + [sym_inline_link] = STATE(142), + [sym_link_text] = STATE(654), + [sym_span] = STATE(570), + [sym__bracketed_text_begin] = STATE(1215), + [sym__comment_with_spaces] = STATE(137), + [sym_raw_inline] = STATE(137), + [sym_math] = STATE(137), + [sym_verbatim] = STATE(137), + [sym__todo_highlights] = STATE(137), + [sym_todo] = STATE(137), + [sym_note] = STATE(137), + [sym__symbol_fallback] = STATE(137), + [sym__newline] = STATE(118), + [aux_sym__text] = STATE(128), + [aux_sym__inline_repeat1] = STATE(118), + [anon_sym_LBRACE_] = ACTIONS(209), + [anon_sym__] = ACTIONS(211), + [anon_sym_LBRACE_STAR] = ACTIONS(213), + [anon_sym_STAR] = ACTIONS(215), + [anon_sym_LBRACE_CARET] = ACTIONS(217), + [anon_sym_CARET] = ACTIONS(217), + [anon_sym_LBRACE_TILDE] = ACTIONS(219), + [anon_sym_TILDE] = ACTIONS(219), + [anon_sym_LBRACE_EQ] = ACTIONS(221), + [anon_sym_LBRACE_PLUS] = ACTIONS(223), + [anon_sym_LBRACE_DASH] = ACTIONS(225), + [anon_sym_BSLASH] = ACTIONS(227), + [sym_quotation_marks] = ACTIONS(229), + [sym_ellipsis] = ACTIONS(229), + [sym_em_dash] = ACTIONS(229), + [sym_en_dash] = ACTIONS(231), + [sym_backslash_escape] = ACTIONS(231), + [anon_sym_LT] = ACTIONS(233), + [sym_symbol] = ACTIONS(229), + [anon_sym_LBRACK_CARET] = ACTIONS(235), + [anon_sym_BANG_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_LPAREN] = ACTIONS(243), + [anon_sym_DOLLAR] = ACTIONS(245), + [anon_sym_TODO] = ACTIONS(247), + [anon_sym_WIP] = ACTIONS(247), + [anon_sym_NOTE] = ACTIONS(249), + [anon_sym_INFO] = ACTIONS(249), + [anon_sym_XXX] = ACTIONS(249), + [sym_fixme] = ACTIONS(229), + [sym__whitespace1] = ACTIONS(251), + [anon_sym_LF] = ACTIONS(253), + [aux_sym__text_token1] = ACTIONS(255), + [sym__verbatim_begin] = ACTIONS(257), + }, + [103] = { + [sym__inline] = STATE(942), + [sym__element] = STATE(15), [sym_emphasis] = STATE(132), - [sym_emphasis_begin] = STATE(1164), + [sym_emphasis_begin] = STATE(1134), [sym_strong] = STATE(132), - [sym_strong_begin] = STATE(1165), + [sym_strong_begin] = STATE(1135), [sym_superscript] = STATE(132), - [sym_superscript_begin] = STATE(1166), + [sym_superscript_begin] = STATE(1136), [sym_subscript] = STATE(132), - [sym_subscript_begin] = STATE(1167), + [sym_subscript_begin] = STATE(1137), [sym_highlighted] = STATE(132), - [sym_highlighted_begin] = STATE(1168), + [sym_highlighted_begin] = STATE(1138), [sym_insert] = STATE(132), - [sym_insert_begin] = STATE(1169), + [sym_insert_begin] = STATE(1139), [sym_delete] = STATE(132), - [sym_delete_begin] = STATE(1170), - [sym_hard_line_break] = STATE(142), - [sym__smart_punctuation] = STATE(142), - [sym_autolink] = STATE(142), + [sym_delete_begin] = STATE(1140), + [sym_hard_line_break] = STATE(147), + [sym__smart_punctuation] = STATE(147), + [sym_autolink] = STATE(147), [sym_footnote_reference] = STATE(132), - [sym_footnote_marker_begin] = STATE(1171), + [sym_footnote_marker_begin] = STATE(1141), [sym__image] = STATE(132), [sym_full_reference_image] = STATE(132), [sym_collapsed_reference_image] = STATE(132), [sym_inline_image] = STATE(132), - [sym_image_description] = STATE(660), - [sym__image_description_begin] = STATE(1079), + [sym_image_description] = STATE(682), + [sym__image_description_begin] = STATE(958), [sym__link] = STATE(132), [sym_full_reference_link] = STATE(132), [sym_collapsed_reference_link] = STATE(132), [sym_inline_link] = STATE(132), - [sym_link_text] = STATE(659), - [sym_span] = STATE(30), - [sym__bracketed_text_begin] = STATE(1210), - [sym__comment_with_spaces] = STATE(142), - [sym_raw_inline] = STATE(142), - [sym_math] = STATE(142), - [sym_verbatim] = STATE(142), - [sym__todo_highlights] = STATE(142), - [sym_todo] = STATE(142), - [sym_note] = STATE(142), - [sym__symbol_fallback] = STATE(142), - [aux_sym__text] = STATE(126), - [aux_sym__inline_repeat1] = STATE(30), - [anon_sym_LBRACE_] = ACTIONS(393), - [anon_sym__] = ACTIONS(395), - [anon_sym_LBRACE_STAR] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(399), - [anon_sym_LBRACE_CARET] = ACTIONS(401), - [anon_sym_CARET] = ACTIONS(401), - [anon_sym_LBRACE_TILDE] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_LBRACE_EQ] = ACTIONS(405), - [anon_sym_LBRACE_PLUS] = ACTIONS(407), - [anon_sym_LBRACE_DASH] = ACTIONS(409), - [anon_sym_BSLASH] = ACTIONS(411), - [sym_quotation_marks] = ACTIONS(413), - [sym_ellipsis] = ACTIONS(413), - [sym_em_dash] = ACTIONS(413), - [sym_en_dash] = ACTIONS(415), - [sym_backslash_escape] = ACTIONS(415), - [anon_sym_LT] = ACTIONS(417), - [sym_symbol] = ACTIONS(413), - [anon_sym_LBRACK_CARET] = ACTIONS(419), - [anon_sym_BANG_LBRACK] = ACTIONS(421), - [anon_sym_LBRACK] = ACTIONS(423), - [anon_sym_LPAREN] = ACTIONS(425), - [anon_sym_DOLLAR] = ACTIONS(427), - [anon_sym_TODO] = ACTIONS(429), - [anon_sym_WIP] = ACTIONS(429), - [anon_sym_NOTE] = ACTIONS(431), - [anon_sym_INFO] = ACTIONS(431), - [anon_sym_XXX] = ACTIONS(431), - [sym_fixme] = ACTIONS(413), - [sym__whitespace1] = ACTIONS(433), - [sym__newline] = ACTIONS(435), - [aux_sym__text_token1] = ACTIONS(437), - [sym__verbatim_begin] = ACTIONS(439), + [sym_link_text] = STATE(689), + [sym_span] = STATE(15), + [sym__bracketed_text_begin] = STATE(1216), + [sym__comment_with_spaces] = STATE(147), + [sym_raw_inline] = STATE(147), + [sym_math] = STATE(147), + [sym_verbatim] = STATE(147), + [sym__todo_highlights] = STATE(147), + [sym_todo] = STATE(147), + [sym_note] = STATE(147), + [sym__symbol_fallback] = STATE(147), + [sym__newline] = STATE(15), + [aux_sym__text] = STATE(121), + [aux_sym__inline_repeat1] = STATE(15), + [anon_sym_LBRACE_] = ACTIONS(105), + [anon_sym__] = ACTIONS(107), + [anon_sym_LBRACE_STAR] = ACTIONS(109), + [anon_sym_STAR] = ACTIONS(111), + [anon_sym_LBRACE_CARET] = ACTIONS(113), + [anon_sym_CARET] = ACTIONS(113), + [anon_sym_LBRACE_TILDE] = ACTIONS(115), + [anon_sym_TILDE] = ACTIONS(115), + [anon_sym_LBRACE_EQ] = ACTIONS(117), + [anon_sym_LBRACE_PLUS] = ACTIONS(119), + [anon_sym_LBRACE_DASH] = ACTIONS(121), + [anon_sym_BSLASH] = ACTIONS(123), + [sym_quotation_marks] = ACTIONS(125), + [sym_ellipsis] = ACTIONS(125), + [sym_em_dash] = ACTIONS(125), + [sym_en_dash] = ACTIONS(127), + [sym_backslash_escape] = ACTIONS(127), + [anon_sym_LT] = ACTIONS(129), + [sym_symbol] = ACTIONS(125), + [anon_sym_LBRACK_CARET] = ACTIONS(131), + [anon_sym_BANG_LBRACK] = ACTIONS(133), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(135), + [anon_sym_LBRACK] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_TODO] = ACTIONS(143), + [anon_sym_WIP] = ACTIONS(143), + [anon_sym_NOTE] = ACTIONS(145), + [anon_sym_INFO] = ACTIONS(145), + [anon_sym_XXX] = ACTIONS(145), + [sym_fixme] = ACTIONS(125), + [sym__whitespace1] = ACTIONS(147), + [anon_sym_LF] = ACTIONS(149), + [aux_sym__text_token1] = ACTIONS(151), + [sym__verbatim_begin] = ACTIONS(153), }, - [102] = { - [sym__inline] = STATE(984), - [sym__element] = STATE(22), - [sym_emphasis] = STATE(147), - [sym_emphasis_begin] = STATE(1154), - [sym_strong] = STATE(147), - [sym_strong_begin] = STATE(1155), - [sym_superscript] = STATE(147), - [sym_superscript_begin] = STATE(1156), - [sym_subscript] = STATE(147), - [sym_subscript_begin] = STATE(1157), - [sym_highlighted] = STATE(147), - [sym_highlighted_begin] = STATE(1158), - [sym_insert] = STATE(147), - [sym_insert_begin] = STATE(1159), - [sym_delete] = STATE(147), - [sym_delete_begin] = STATE(1160), - [sym_hard_line_break] = STATE(145), - [sym__smart_punctuation] = STATE(145), - [sym_autolink] = STATE(145), - [sym_footnote_reference] = STATE(147), - [sym_footnote_marker_begin] = STATE(1161), - [sym__image] = STATE(147), - [sym_full_reference_image] = STATE(147), - [sym_collapsed_reference_image] = STATE(147), - [sym_inline_image] = STATE(147), - [sym_image_description] = STATE(665), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(147), - [sym_full_reference_link] = STATE(147), - [sym_collapsed_reference_link] = STATE(147), - [sym_inline_link] = STATE(147), - [sym_link_text] = STATE(664), - [sym_span] = STATE(22), - [sym__bracketed_text_begin] = STATE(1209), - [sym__comment_with_spaces] = STATE(145), - [sym_raw_inline] = STATE(145), - [sym_math] = STATE(145), - [sym_verbatim] = STATE(145), - [sym__todo_highlights] = STATE(145), - [sym_todo] = STATE(145), - [sym_note] = STATE(145), - [sym__symbol_fallback] = STATE(145), - [aux_sym__text] = STATE(124), - [aux_sym__inline_repeat1] = STATE(22), - [anon_sym_LBRACE_] = ACTIONS(101), - [anon_sym__] = ACTIONS(103), - [anon_sym_LBRACE_STAR] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_LBRACE_CARET] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(109), - [anon_sym_LBRACE_TILDE] = ACTIONS(111), - [anon_sym_TILDE] = ACTIONS(111), - [anon_sym_LBRACE_EQ] = ACTIONS(113), - [anon_sym_LBRACE_PLUS] = ACTIONS(115), - [anon_sym_LBRACE_DASH] = ACTIONS(117), - [anon_sym_BSLASH] = ACTIONS(119), - [sym_quotation_marks] = ACTIONS(121), - [sym_ellipsis] = ACTIONS(121), - [sym_em_dash] = ACTIONS(121), - [sym_en_dash] = ACTIONS(123), - [sym_backslash_escape] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(125), - [sym_symbol] = ACTIONS(121), - [anon_sym_LBRACK_CARET] = ACTIONS(127), - [anon_sym_BANG_LBRACK] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_TODO] = ACTIONS(137), - [anon_sym_WIP] = ACTIONS(137), - [anon_sym_NOTE] = ACTIONS(139), - [anon_sym_INFO] = ACTIONS(139), - [anon_sym_XXX] = ACTIONS(139), - [sym_fixme] = ACTIONS(121), - [sym__whitespace1] = ACTIONS(141), - [sym__newline] = ACTIONS(143), - [aux_sym__text_token1] = ACTIONS(145), - [sym__verbatim_begin] = ACTIONS(147), + [104] = { + [sym__inline] = STATE(943), + [sym__element] = STATE(16), + [sym_emphasis] = STATE(143), + [sym_emphasis_begin] = STATE(1144), + [sym_strong] = STATE(143), + [sym_strong_begin] = STATE(1145), + [sym_superscript] = STATE(143), + [sym_superscript_begin] = STATE(1146), + [sym_subscript] = STATE(143), + [sym_subscript_begin] = STATE(1147), + [sym_highlighted] = STATE(143), + [sym_highlighted_begin] = STATE(1148), + [sym_insert] = STATE(143), + [sym_insert_begin] = STATE(1149), + [sym_delete] = STATE(143), + [sym_delete_begin] = STATE(1150), + [sym_hard_line_break] = STATE(141), + [sym__smart_punctuation] = STATE(141), + [sym_autolink] = STATE(141), + [sym_footnote_reference] = STATE(143), + [sym_footnote_marker_begin] = STATE(1151), + [sym__image] = STATE(143), + [sym_full_reference_image] = STATE(143), + [sym_collapsed_reference_image] = STATE(143), + [sym_inline_image] = STATE(143), + [sym_image_description] = STATE(660), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(143), + [sym_full_reference_link] = STATE(143), + [sym_collapsed_reference_link] = STATE(143), + [sym_inline_link] = STATE(143), + [sym_link_text] = STATE(661), + [sym_span] = STATE(16), + [sym__bracketed_text_begin] = STATE(1217), + [sym__comment_with_spaces] = STATE(141), + [sym_raw_inline] = STATE(141), + [sym_math] = STATE(141), + [sym_verbatim] = STATE(141), + [sym__todo_highlights] = STATE(141), + [sym_todo] = STATE(141), + [sym_note] = STATE(141), + [sym__symbol_fallback] = STATE(141), + [sym__newline] = STATE(16), + [aux_sym__text] = STATE(125), + [aux_sym__inline_repeat1] = STATE(16), + [anon_sym_LBRACE_] = ACTIONS(259), + [anon_sym__] = ACTIONS(261), + [anon_sym_LBRACE_STAR] = ACTIONS(263), + [anon_sym_STAR] = ACTIONS(265), + [anon_sym_LBRACE_CARET] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_LBRACE_TILDE] = ACTIONS(269), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_LBRACE_EQ] = ACTIONS(271), + [anon_sym_LBRACE_PLUS] = ACTIONS(273), + [anon_sym_LBRACE_DASH] = ACTIONS(275), + [anon_sym_BSLASH] = ACTIONS(277), + [sym_quotation_marks] = ACTIONS(279), + [sym_ellipsis] = ACTIONS(279), + [sym_em_dash] = ACTIONS(279), + [sym_en_dash] = ACTIONS(281), + [sym_backslash_escape] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(283), + [sym_symbol] = ACTIONS(279), + [anon_sym_LBRACK_CARET] = ACTIONS(285), + [anon_sym_BANG_LBRACK] = ACTIONS(287), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_DOLLAR] = ACTIONS(295), + [anon_sym_TODO] = ACTIONS(297), + [anon_sym_WIP] = ACTIONS(297), + [anon_sym_NOTE] = ACTIONS(299), + [anon_sym_INFO] = ACTIONS(299), + [anon_sym_XXX] = ACTIONS(299), + [sym_fixme] = ACTIONS(279), + [sym__whitespace1] = ACTIONS(301), + [anon_sym_LF] = ACTIONS(303), + [aux_sym__text_token1] = ACTIONS(305), + [sym__verbatim_begin] = ACTIONS(307), }, - [103] = { - [sym__inline] = STATE(1083), - [sym__element] = STATE(46), + [105] = { + [sym__inline] = STATE(944), + [sym__element] = STATE(18), [sym_emphasis] = STATE(135), - [sym_emphasis_begin] = STATE(1174), + [sym_emphasis_begin] = STATE(1154), [sym_strong] = STATE(135), - [sym_strong_begin] = STATE(1175), + [sym_strong_begin] = STATE(1155), [sym_superscript] = STATE(135), - [sym_superscript_begin] = STATE(1176), + [sym_superscript_begin] = STATE(1156), [sym_subscript] = STATE(135), - [sym_subscript_begin] = STATE(1177), + [sym_subscript_begin] = STATE(1157), [sym_highlighted] = STATE(135), - [sym_highlighted_begin] = STATE(1178), + [sym_highlighted_begin] = STATE(1158), [sym_insert] = STATE(135), - [sym_insert_begin] = STATE(1179), + [sym_insert_begin] = STATE(1159), [sym_delete] = STATE(135), - [sym_delete_begin] = STATE(1180), - [sym_hard_line_break] = STATE(138), - [sym__smart_punctuation] = STATE(138), - [sym_autolink] = STATE(138), + [sym_delete_begin] = STATE(1160), + [sym_hard_line_break] = STATE(134), + [sym__smart_punctuation] = STATE(134), + [sym_autolink] = STATE(134), [sym_footnote_reference] = STATE(135), - [sym_footnote_marker_begin] = STATE(1181), + [sym_footnote_marker_begin] = STATE(1161), [sym__image] = STATE(135), [sym_full_reference_image] = STATE(135), [sym_collapsed_reference_image] = STATE(135), [sym_inline_image] = STATE(135), - [sym_image_description] = STATE(656), - [sym__image_description_begin] = STATE(1079), + [sym_image_description] = STATE(677), + [sym__image_description_begin] = STATE(958), [sym__link] = STATE(135), [sym_full_reference_link] = STATE(135), [sym_collapsed_reference_link] = STATE(135), [sym_inline_link] = STATE(135), - [sym_link_text] = STATE(654), - [sym_span] = STATE(46), - [sym__bracketed_text_begin] = STATE(1211), - [sym__comment_with_spaces] = STATE(138), - [sym_raw_inline] = STATE(138), - [sym_math] = STATE(138), - [sym_verbatim] = STATE(138), - [sym__todo_highlights] = STATE(138), - [sym_todo] = STATE(138), - [sym_note] = STATE(138), - [sym__symbol_fallback] = STATE(138), - [aux_sym__text] = STATE(121), - [aux_sym__inline_repeat1] = STATE(46), - [anon_sym_LBRACE_] = ACTIONS(345), - [anon_sym__] = ACTIONS(347), - [anon_sym_LBRACE_STAR] = ACTIONS(349), - [anon_sym_STAR] = ACTIONS(351), - [anon_sym_LBRACE_CARET] = ACTIONS(353), - [anon_sym_CARET] = ACTIONS(353), - [anon_sym_LBRACE_TILDE] = ACTIONS(355), - [anon_sym_TILDE] = ACTIONS(355), - [anon_sym_LBRACE_EQ] = ACTIONS(357), - [anon_sym_LBRACE_PLUS] = ACTIONS(359), - [anon_sym_LBRACE_DASH] = ACTIONS(361), - [anon_sym_BSLASH] = ACTIONS(363), - [sym_quotation_marks] = ACTIONS(365), - [sym_ellipsis] = ACTIONS(365), - [sym_em_dash] = ACTIONS(365), - [sym_en_dash] = ACTIONS(367), - [sym_backslash_escape] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(369), - [sym_symbol] = ACTIONS(365), - [anon_sym_LBRACK_CARET] = ACTIONS(371), - [anon_sym_BANG_LBRACK] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LPAREN] = ACTIONS(377), - [anon_sym_DOLLAR] = ACTIONS(379), - [anon_sym_TODO] = ACTIONS(381), - [anon_sym_WIP] = ACTIONS(381), - [anon_sym_NOTE] = ACTIONS(383), - [anon_sym_INFO] = ACTIONS(383), - [anon_sym_XXX] = ACTIONS(383), - [sym_fixme] = ACTIONS(365), - [sym__whitespace1] = ACTIONS(385), - [sym__newline] = ACTIONS(387), - [aux_sym__text_token1] = ACTIONS(389), - [sym__verbatim_begin] = ACTIONS(391), - }, - [104] = { - [sym__inline] = STATE(985), - [sym__element] = STATE(110), - [sym_emphasis] = STATE(146), - [sym_emphasis_begin] = STATE(1144), - [sym_strong] = STATE(146), - [sym_strong_begin] = STATE(1145), - [sym_superscript] = STATE(146), - [sym_superscript_begin] = STATE(1146), - [sym_subscript] = STATE(146), - [sym_subscript_begin] = STATE(1147), - [sym_highlighted] = STATE(146), - [sym_highlighted_begin] = STATE(1148), - [sym_insert] = STATE(146), - [sym_insert_begin] = STATE(1149), - [sym_delete] = STATE(146), - [sym_delete_begin] = STATE(1150), - [sym_hard_line_break] = STATE(144), - [sym__smart_punctuation] = STATE(144), - [sym_autolink] = STATE(144), - [sym_footnote_reference] = STATE(146), - [sym_footnote_marker_begin] = STATE(1151), - [sym__image] = STATE(146), - [sym_full_reference_image] = STATE(146), - [sym_collapsed_reference_image] = STATE(146), - [sym_inline_image] = STATE(146), - [sym_image_description] = STATE(673), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(146), - [sym_full_reference_link] = STATE(146), - [sym_collapsed_reference_link] = STATE(146), - [sym_inline_link] = STATE(146), - [sym_link_text] = STATE(662), - [sym_span] = STATE(110), - [sym__bracketed_text_begin] = STATE(1208), - [sym__comment_with_spaces] = STATE(144), - [sym_raw_inline] = STATE(144), - [sym_math] = STATE(144), - [sym_verbatim] = STATE(144), - [sym__todo_highlights] = STATE(144), - [sym_todo] = STATE(144), - [sym_note] = STATE(144), - [sym__symbol_fallback] = STATE(144), - [aux_sym__text] = STATE(128), - [aux_sym__inline_repeat1] = STATE(110), - [anon_sym_LBRACE_] = ACTIONS(587), - [anon_sym__] = ACTIONS(589), - [anon_sym_LBRACE_STAR] = ACTIONS(591), - [anon_sym_STAR] = ACTIONS(593), - [anon_sym_LBRACE_CARET] = ACTIONS(595), - [anon_sym_CARET] = ACTIONS(595), - [anon_sym_LBRACE_TILDE] = ACTIONS(597), - [anon_sym_TILDE] = ACTIONS(597), - [anon_sym_LBRACE_EQ] = ACTIONS(599), - [anon_sym_LBRACE_PLUS] = ACTIONS(601), - [anon_sym_LBRACE_DASH] = ACTIONS(603), - [anon_sym_BSLASH] = ACTIONS(605), - [sym_quotation_marks] = ACTIONS(607), - [sym_ellipsis] = ACTIONS(607), - [sym_em_dash] = ACTIONS(607), - [sym_en_dash] = ACTIONS(609), - [sym_backslash_escape] = ACTIONS(609), - [anon_sym_LT] = ACTIONS(611), - [sym_symbol] = ACTIONS(607), - [anon_sym_LBRACK_CARET] = ACTIONS(613), - [anon_sym_BANG_LBRACK] = ACTIONS(615), - [anon_sym_LBRACK] = ACTIONS(617), - [anon_sym_LPAREN] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [anon_sym_TODO] = ACTIONS(623), - [anon_sym_WIP] = ACTIONS(623), - [anon_sym_NOTE] = ACTIONS(625), - [anon_sym_INFO] = ACTIONS(625), - [anon_sym_XXX] = ACTIONS(625), - [sym_fixme] = ACTIONS(607), - [sym__whitespace1] = ACTIONS(627), - [sym__newline] = ACTIONS(629), - [aux_sym__text_token1] = ACTIONS(631), - [sym__verbatim_begin] = ACTIONS(633), - }, - [105] = { - [sym__inline_without_trailing_space] = STATE(1059), - [sym__element] = STATE(594), - [sym_emphasis] = STATE(149), - [sym_emphasis_begin] = STATE(1104), - [sym_strong] = STATE(149), - [sym_strong_begin] = STATE(1105), - [sym_superscript] = STATE(149), - [sym_superscript_begin] = STATE(1106), - [sym_subscript] = STATE(149), - [sym_subscript_begin] = STATE(1107), - [sym_highlighted] = STATE(149), - [sym_highlighted_begin] = STATE(1108), - [sym_insert] = STATE(149), - [sym_insert_begin] = STATE(1109), - [sym_delete] = STATE(149), - [sym_delete_begin] = STATE(1110), - [sym_hard_line_break] = STATE(143), - [sym__smart_punctuation] = STATE(143), - [sym_autolink] = STATE(143), - [sym_footnote_reference] = STATE(149), - [sym_footnote_marker_begin] = STATE(1111), - [sym__image] = STATE(149), - [sym_full_reference_image] = STATE(149), - [sym_collapsed_reference_image] = STATE(149), - [sym_inline_image] = STATE(149), - [sym_image_description] = STATE(658), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(149), - [sym_full_reference_link] = STATE(149), - [sym_collapsed_reference_link] = STATE(149), - [sym_inline_link] = STATE(149), - [sym_link_text] = STATE(672), - [sym_span] = STATE(594), - [sym__bracketed_text_begin] = STATE(1204), - [sym__comment_with_spaces] = STATE(143), - [sym_raw_inline] = STATE(143), - [sym_math] = STATE(143), - [sym_verbatim] = STATE(143), - [sym__todo_highlights] = STATE(143), - [sym_todo] = STATE(143), - [sym_note] = STATE(143), - [sym__symbol_fallback] = STATE(143), - [aux_sym__text] = STATE(127), - [aux_sym__inline_repeat1] = STATE(120), - [anon_sym_LBRACE_] = ACTIONS(441), - [anon_sym__] = ACTIONS(443), - [anon_sym_LBRACE_STAR] = ACTIONS(445), - [anon_sym_STAR] = ACTIONS(447), - [anon_sym_LBRACE_CARET] = ACTIONS(449), - [anon_sym_CARET] = ACTIONS(449), - [anon_sym_LBRACE_TILDE] = ACTIONS(451), - [anon_sym_TILDE] = ACTIONS(451), - [anon_sym_LBRACE_EQ] = ACTIONS(453), - [anon_sym_LBRACE_PLUS] = ACTIONS(455), - [anon_sym_LBRACE_DASH] = ACTIONS(457), - [anon_sym_BSLASH] = ACTIONS(459), - [sym_quotation_marks] = ACTIONS(461), - [sym_ellipsis] = ACTIONS(461), - [sym_em_dash] = ACTIONS(461), - [sym_en_dash] = ACTIONS(463), - [sym_backslash_escape] = ACTIONS(463), - [anon_sym_LT] = ACTIONS(465), - [sym_symbol] = ACTIONS(461), - [anon_sym_LBRACK_CARET] = ACTIONS(467), - [anon_sym_BANG_LBRACK] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(471), - [anon_sym_LPAREN] = ACTIONS(473), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_TODO] = ACTIONS(477), - [anon_sym_WIP] = ACTIONS(477), - [anon_sym_NOTE] = ACTIONS(479), - [anon_sym_INFO] = ACTIONS(479), - [anon_sym_XXX] = ACTIONS(479), - [sym_fixme] = ACTIONS(461), - [sym__whitespace1] = ACTIONS(481), - [sym__newline] = ACTIONS(483), - [aux_sym__text_token1] = ACTIONS(485), - [sym__verbatim_begin] = ACTIONS(487), - }, - [106] = { - [sym__inline_without_trailing_space] = STATE(1051), - [sym__element] = STATE(550), - [sym_emphasis] = STATE(137), - [sym_emphasis_begin] = STATE(1114), - [sym_strong] = STATE(137), - [sym_strong_begin] = STATE(1115), - [sym_superscript] = STATE(137), - [sym_superscript_begin] = STATE(1116), - [sym_subscript] = STATE(137), - [sym_subscript_begin] = STATE(1117), - [sym_highlighted] = STATE(137), - [sym_highlighted_begin] = STATE(1118), - [sym_insert] = STATE(137), - [sym_insert_begin] = STATE(1119), - [sym_delete] = STATE(137), - [sym_delete_begin] = STATE(1120), - [sym_hard_line_break] = STATE(131), - [sym__smart_punctuation] = STATE(131), - [sym_autolink] = STATE(131), - [sym_footnote_reference] = STATE(137), - [sym_footnote_marker_begin] = STATE(1121), - [sym__image] = STATE(137), - [sym_full_reference_image] = STATE(137), - [sym_collapsed_reference_image] = STATE(137), - [sym_inline_image] = STATE(137), - [sym_image_description] = STATE(649), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(137), - [sym_full_reference_link] = STATE(137), - [sym_collapsed_reference_link] = STATE(137), - [sym_inline_link] = STATE(137), - [sym_link_text] = STATE(650), - [sym_span] = STATE(550), - [sym__bracketed_text_begin] = STATE(1205), - [sym__comment_with_spaces] = STATE(131), - [sym_raw_inline] = STATE(131), - [sym_math] = STATE(131), - [sym_verbatim] = STATE(131), - [sym__todo_highlights] = STATE(131), - [sym_todo] = STATE(131), - [sym_note] = STATE(131), - [sym__symbol_fallback] = STATE(131), - [aux_sym__text] = STATE(130), - [aux_sym__inline_repeat1] = STATE(119), - [anon_sym_LBRACE_] = ACTIONS(489), - [anon_sym__] = ACTIONS(491), - [anon_sym_LBRACE_STAR] = ACTIONS(493), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_LBRACE_CARET] = ACTIONS(497), - [anon_sym_CARET] = ACTIONS(497), - [anon_sym_LBRACE_TILDE] = ACTIONS(499), - [anon_sym_TILDE] = ACTIONS(499), - [anon_sym_LBRACE_EQ] = ACTIONS(501), - [anon_sym_LBRACE_PLUS] = ACTIONS(503), - [anon_sym_LBRACE_DASH] = ACTIONS(505), - [anon_sym_BSLASH] = ACTIONS(507), - [sym_quotation_marks] = ACTIONS(509), - [sym_ellipsis] = ACTIONS(509), - [sym_em_dash] = ACTIONS(509), - [sym_en_dash] = ACTIONS(511), - [sym_backslash_escape] = ACTIONS(511), - [anon_sym_LT] = ACTIONS(513), - [sym_symbol] = ACTIONS(509), - [anon_sym_LBRACK_CARET] = ACTIONS(515), - [anon_sym_BANG_LBRACK] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(519), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_DOLLAR] = ACTIONS(523), - [anon_sym_TODO] = ACTIONS(525), - [anon_sym_WIP] = ACTIONS(525), - [anon_sym_NOTE] = ACTIONS(527), - [anon_sym_INFO] = ACTIONS(527), - [anon_sym_XXX] = ACTIONS(527), - [sym_fixme] = ACTIONS(509), - [sym__whitespace1] = ACTIONS(529), - [sym__newline] = ACTIONS(531), - [aux_sym__text_token1] = ACTIONS(533), - [sym__verbatim_begin] = ACTIONS(535), - }, - [107] = { - [sym__inline] = STATE(1043), - [sym__element] = STATE(64), - [sym_emphasis] = STATE(133), - [sym_emphasis_begin] = STATE(1124), - [sym_strong] = STATE(133), - [sym_strong_begin] = STATE(1125), - [sym_superscript] = STATE(133), - [sym_superscript_begin] = STATE(1126), - [sym_subscript] = STATE(133), - [sym_subscript_begin] = STATE(1127), - [sym_highlighted] = STATE(133), - [sym_highlighted_begin] = STATE(1128), - [sym_insert] = STATE(133), - [sym_insert_begin] = STATE(1129), - [sym_delete] = STATE(133), - [sym_delete_begin] = STATE(1130), - [sym_hard_line_break] = STATE(140), - [sym__smart_punctuation] = STATE(140), - [sym_autolink] = STATE(140), - [sym_footnote_reference] = STATE(133), - [sym_footnote_marker_begin] = STATE(1131), - [sym__image] = STATE(133), - [sym_full_reference_image] = STATE(133), - [sym_collapsed_reference_image] = STATE(133), - [sym_inline_image] = STATE(133), - [sym_image_description] = STATE(663), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(133), - [sym_full_reference_link] = STATE(133), - [sym_collapsed_reference_link] = STATE(133), - [sym_inline_link] = STATE(133), - [sym_link_text] = STATE(669), - [sym_span] = STATE(64), - [sym__bracketed_text_begin] = STATE(1206), - [sym__comment_with_spaces] = STATE(140), - [sym_raw_inline] = STATE(140), - [sym_math] = STATE(140), - [sym_verbatim] = STATE(140), - [sym__todo_highlights] = STATE(140), - [sym_todo] = STATE(140), - [sym_note] = STATE(140), - [sym__symbol_fallback] = STATE(140), - [aux_sym__text] = STATE(122), - [aux_sym__inline_repeat1] = STATE(64), - [anon_sym_LBRACE_] = ACTIONS(537), - [anon_sym__] = ACTIONS(539), - [anon_sym_LBRACE_STAR] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(543), - [anon_sym_LBRACE_CARET] = ACTIONS(545), - [anon_sym_CARET] = ACTIONS(545), - [anon_sym_LBRACE_TILDE] = ACTIONS(547), - [anon_sym_TILDE] = ACTIONS(547), - [anon_sym_LBRACE_EQ] = ACTIONS(549), - [anon_sym_LBRACE_PLUS] = ACTIONS(551), - [anon_sym_LBRACE_DASH] = ACTIONS(553), - [anon_sym_BSLASH] = ACTIONS(555), - [sym_quotation_marks] = ACTIONS(557), - [sym_ellipsis] = ACTIONS(557), - [sym_em_dash] = ACTIONS(557), - [sym_en_dash] = ACTIONS(559), - [sym_backslash_escape] = ACTIONS(559), - [anon_sym_LT] = ACTIONS(561), - [sym_symbol] = ACTIONS(557), - [anon_sym_LBRACK_CARET] = ACTIONS(563), - [anon_sym_BANG_LBRACK] = ACTIONS(565), - [anon_sym_LBRACK] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_DOLLAR] = ACTIONS(571), - [anon_sym_TODO] = ACTIONS(573), - [anon_sym_WIP] = ACTIONS(573), - [anon_sym_NOTE] = ACTIONS(575), - [anon_sym_INFO] = ACTIONS(575), - [anon_sym_XXX] = ACTIONS(575), - [sym_fixme] = ACTIONS(557), - [sym__whitespace1] = ACTIONS(577), - [sym__newline] = ACTIONS(579), - [aux_sym__text_token1] = ACTIONS(581), - [sym__verbatim_begin] = ACTIONS(583), + [sym_link_text] = STATE(680), + [sym_span] = STATE(18), + [sym__bracketed_text_begin] = STATE(1218), + [sym__comment_with_spaces] = STATE(134), + [sym_raw_inline] = STATE(134), + [sym_math] = STATE(134), + [sym_verbatim] = STATE(134), + [sym__todo_highlights] = STATE(134), + [sym_todo] = STATE(134), + [sym_note] = STATE(134), + [sym__symbol_fallback] = STATE(134), + [sym__newline] = STATE(18), + [aux_sym__text] = STATE(123), + [aux_sym__inline_repeat1] = STATE(18), + [anon_sym_LBRACE_] = ACTIONS(309), + [anon_sym__] = ACTIONS(311), + [anon_sym_LBRACE_STAR] = ACTIONS(313), + [anon_sym_STAR] = ACTIONS(315), + [anon_sym_LBRACE_CARET] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_LBRACE_TILDE] = ACTIONS(319), + [anon_sym_TILDE] = ACTIONS(319), + [anon_sym_LBRACE_EQ] = ACTIONS(321), + [anon_sym_LBRACE_PLUS] = ACTIONS(323), + [anon_sym_LBRACE_DASH] = ACTIONS(325), + [anon_sym_BSLASH] = ACTIONS(327), + [sym_quotation_marks] = ACTIONS(329), + [sym_ellipsis] = ACTIONS(329), + [sym_em_dash] = ACTIONS(329), + [sym_en_dash] = ACTIONS(331), + [sym_backslash_escape] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [sym_symbol] = ACTIONS(329), + [anon_sym_LBRACK_CARET] = ACTIONS(335), + [anon_sym_BANG_LBRACK] = ACTIONS(337), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(339), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_DOLLAR] = ACTIONS(345), + [anon_sym_TODO] = ACTIONS(347), + [anon_sym_WIP] = ACTIONS(347), + [anon_sym_NOTE] = ACTIONS(349), + [anon_sym_INFO] = ACTIONS(349), + [anon_sym_XXX] = ACTIONS(349), + [sym_fixme] = ACTIONS(329), + [sym__whitespace1] = ACTIONS(351), + [anon_sym_LF] = ACTIONS(353), + [aux_sym__text_token1] = ACTIONS(355), + [sym__verbatim_begin] = ACTIONS(357), }, - [108] = { - [sym__inline] = STATE(1035), - [sym__element] = STATE(14), + [106] = { + [sym__inline] = STATE(945), + [sym__element] = STATE(20), [sym_emphasis] = STATE(136), - [sym_emphasis_begin] = STATE(1134), + [sym_emphasis_begin] = STATE(1164), [sym_strong] = STATE(136), - [sym_strong_begin] = STATE(1135), + [sym_strong_begin] = STATE(1165), [sym_superscript] = STATE(136), - [sym_superscript_begin] = STATE(1136), + [sym_superscript_begin] = STATE(1166), [sym_subscript] = STATE(136), - [sym_subscript_begin] = STATE(1137), + [sym_subscript_begin] = STATE(1167), [sym_highlighted] = STATE(136), - [sym_highlighted_begin] = STATE(1138), + [sym_highlighted_begin] = STATE(1168), [sym_insert] = STATE(136), - [sym_insert_begin] = STATE(1139), + [sym_insert_begin] = STATE(1169), [sym_delete] = STATE(136), - [sym_delete_begin] = STATE(1140), - [sym_hard_line_break] = STATE(134), - [sym__smart_punctuation] = STATE(134), - [sym_autolink] = STATE(134), + [sym_delete_begin] = STATE(1170), + [sym_hard_line_break] = STATE(138), + [sym__smart_punctuation] = STATE(138), + [sym_autolink] = STATE(138), [sym_footnote_reference] = STATE(136), - [sym_footnote_marker_begin] = STATE(1141), + [sym_footnote_marker_begin] = STATE(1171), [sym__image] = STATE(136), [sym_full_reference_image] = STATE(136), [sym_collapsed_reference_image] = STATE(136), [sym_inline_image] = STATE(136), - [sym_image_description] = STATE(670), - [sym__image_description_begin] = STATE(1079), + [sym_image_description] = STATE(685), + [sym__image_description_begin] = STATE(958), [sym__link] = STATE(136), [sym_full_reference_link] = STATE(136), [sym_collapsed_reference_link] = STATE(136), [sym_inline_link] = STATE(136), - [sym_link_text] = STATE(671), - [sym_span] = STATE(14), - [sym__bracketed_text_begin] = STATE(1207), - [sym__comment_with_spaces] = STATE(134), - [sym_raw_inline] = STATE(134), - [sym_math] = STATE(134), - [sym_verbatim] = STATE(134), - [sym__todo_highlights] = STATE(134), - [sym_todo] = STATE(134), - [sym_note] = STATE(134), - [sym__symbol_fallback] = STATE(134), + [sym_link_text] = STATE(686), + [sym_span] = STATE(20), + [sym__bracketed_text_begin] = STATE(1219), + [sym__comment_with_spaces] = STATE(138), + [sym_raw_inline] = STATE(138), + [sym_math] = STATE(138), + [sym_verbatim] = STATE(138), + [sym__todo_highlights] = STATE(138), + [sym_todo] = STATE(138), + [sym_note] = STATE(138), + [sym__symbol_fallback] = STATE(138), + [sym__newline] = STATE(20), + [aux_sym__text] = STATE(126), + [aux_sym__inline_repeat1] = STATE(20), + [anon_sym_LBRACE_] = ACTIONS(359), + [anon_sym__] = ACTIONS(361), + [anon_sym_LBRACE_STAR] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(365), + [anon_sym_LBRACE_CARET] = ACTIONS(367), + [anon_sym_CARET] = ACTIONS(367), + [anon_sym_LBRACE_TILDE] = ACTIONS(369), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_LBRACE_EQ] = ACTIONS(371), + [anon_sym_LBRACE_PLUS] = ACTIONS(373), + [anon_sym_LBRACE_DASH] = ACTIONS(375), + [anon_sym_BSLASH] = ACTIONS(377), + [sym_quotation_marks] = ACTIONS(379), + [sym_ellipsis] = ACTIONS(379), + [sym_em_dash] = ACTIONS(379), + [sym_en_dash] = ACTIONS(381), + [sym_backslash_escape] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(383), + [sym_symbol] = ACTIONS(379), + [anon_sym_LBRACK_CARET] = ACTIONS(385), + [anon_sym_BANG_LBRACK] = ACTIONS(387), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(393), + [anon_sym_DOLLAR] = ACTIONS(395), + [anon_sym_TODO] = ACTIONS(397), + [anon_sym_WIP] = ACTIONS(397), + [anon_sym_NOTE] = ACTIONS(399), + [anon_sym_INFO] = ACTIONS(399), + [anon_sym_XXX] = ACTIONS(399), + [sym_fixme] = ACTIONS(379), + [sym__whitespace1] = ACTIONS(401), + [anon_sym_LF] = ACTIONS(403), + [aux_sym__text_token1] = ACTIONS(405), + [sym__verbatim_begin] = ACTIONS(407), + }, + [107] = { + [sym__inline] = STATE(946), + [sym__element] = STATE(22), + [sym_emphasis] = STATE(140), + [sym_emphasis_begin] = STATE(1174), + [sym_strong] = STATE(140), + [sym_strong_begin] = STATE(1175), + [sym_superscript] = STATE(140), + [sym_superscript_begin] = STATE(1176), + [sym_subscript] = STATE(140), + [sym_subscript_begin] = STATE(1177), + [sym_highlighted] = STATE(140), + [sym_highlighted_begin] = STATE(1178), + [sym_insert] = STATE(140), + [sym_insert_begin] = STATE(1179), + [sym_delete] = STATE(140), + [sym_delete_begin] = STATE(1180), + [sym_hard_line_break] = STATE(139), + [sym__smart_punctuation] = STATE(139), + [sym_autolink] = STATE(139), + [sym_footnote_reference] = STATE(140), + [sym_footnote_marker_begin] = STATE(1181), + [sym__image] = STATE(140), + [sym_full_reference_image] = STATE(140), + [sym_collapsed_reference_image] = STATE(140), + [sym_inline_image] = STATE(140), + [sym_image_description] = STATE(655), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(140), + [sym_full_reference_link] = STATE(140), + [sym_collapsed_reference_link] = STATE(140), + [sym_inline_link] = STATE(140), + [sym_link_text] = STATE(656), + [sym_span] = STATE(22), + [sym__bracketed_text_begin] = STATE(1220), + [sym__comment_with_spaces] = STATE(139), + [sym_raw_inline] = STATE(139), + [sym_math] = STATE(139), + [sym_verbatim] = STATE(139), + [sym__todo_highlights] = STATE(139), + [sym_todo] = STATE(139), + [sym_note] = STATE(139), + [sym__symbol_fallback] = STATE(139), + [sym__newline] = STATE(22), + [aux_sym__text] = STATE(127), + [aux_sym__inline_repeat1] = STATE(22), + [anon_sym_LBRACE_] = ACTIONS(409), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_STAR] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(415), + [anon_sym_LBRACE_CARET] = ACTIONS(417), + [anon_sym_CARET] = ACTIONS(417), + [anon_sym_LBRACE_TILDE] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(419), + [anon_sym_LBRACE_EQ] = ACTIONS(421), + [anon_sym_LBRACE_PLUS] = ACTIONS(423), + [anon_sym_LBRACE_DASH] = ACTIONS(425), + [anon_sym_BSLASH] = ACTIONS(427), + [sym_quotation_marks] = ACTIONS(429), + [sym_ellipsis] = ACTIONS(429), + [sym_em_dash] = ACTIONS(429), + [sym_en_dash] = ACTIONS(431), + [sym_backslash_escape] = ACTIONS(431), + [anon_sym_LT] = ACTIONS(433), + [sym_symbol] = ACTIONS(429), + [anon_sym_LBRACK_CARET] = ACTIONS(435), + [anon_sym_BANG_LBRACK] = ACTIONS(437), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(439), + [anon_sym_LBRACK] = ACTIONS(441), + [anon_sym_LPAREN] = ACTIONS(443), + [anon_sym_DOLLAR] = ACTIONS(445), + [anon_sym_TODO] = ACTIONS(447), + [anon_sym_WIP] = ACTIONS(447), + [anon_sym_NOTE] = ACTIONS(449), + [anon_sym_INFO] = ACTIONS(449), + [anon_sym_XXX] = ACTIONS(449), + [sym_fixme] = ACTIONS(429), + [sym__whitespace1] = ACTIONS(451), + [anon_sym_LF] = ACTIONS(453), + [aux_sym__text_token1] = ACTIONS(455), + [sym__verbatim_begin] = ACTIONS(457), + }, + [108] = { + [sym__inline] = STATE(948), + [sym__element] = STATE(24), + [sym_emphasis] = STATE(131), + [sym_emphasis_begin] = STATE(1184), + [sym_strong] = STATE(131), + [sym_strong_begin] = STATE(1185), + [sym_superscript] = STATE(131), + [sym_superscript_begin] = STATE(1186), + [sym_subscript] = STATE(131), + [sym_subscript_begin] = STATE(1187), + [sym_highlighted] = STATE(131), + [sym_highlighted_begin] = STATE(1188), + [sym_insert] = STATE(131), + [sym_insert_begin] = STATE(1189), + [sym_delete] = STATE(131), + [sym_delete_begin] = STATE(1190), + [sym_hard_line_break] = STATE(145), + [sym__smart_punctuation] = STATE(145), + [sym_autolink] = STATE(145), + [sym_footnote_reference] = STATE(131), + [sym_footnote_marker_begin] = STATE(1191), + [sym__image] = STATE(131), + [sym_full_reference_image] = STATE(131), + [sym_collapsed_reference_image] = STATE(131), + [sym_inline_image] = STATE(131), + [sym_image_description] = STATE(662), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(131), + [sym_full_reference_link] = STATE(131), + [sym_collapsed_reference_link] = STATE(131), + [sym_inline_link] = STATE(131), + [sym_link_text] = STATE(663), + [sym_span] = STATE(24), + [sym__bracketed_text_begin] = STATE(1221), + [sym__comment_with_spaces] = STATE(145), + [sym_raw_inline] = STATE(145), + [sym_math] = STATE(145), + [sym_verbatim] = STATE(145), + [sym__todo_highlights] = STATE(145), + [sym_todo] = STATE(145), + [sym_note] = STATE(145), + [sym__symbol_fallback] = STATE(145), + [sym__newline] = STATE(24), [aux_sym__text] = STATE(129), - [aux_sym__inline_repeat1] = STATE(14), - [anon_sym_LBRACE_] = ACTIONS(295), - [anon_sym__] = ACTIONS(297), - [anon_sym_LBRACE_STAR] = ACTIONS(299), - [anon_sym_STAR] = ACTIONS(301), - [anon_sym_LBRACE_CARET] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(303), - [anon_sym_LBRACE_TILDE] = ACTIONS(305), - [anon_sym_TILDE] = ACTIONS(305), - [anon_sym_LBRACE_EQ] = ACTIONS(307), - [anon_sym_LBRACE_PLUS] = ACTIONS(309), - [anon_sym_LBRACE_DASH] = ACTIONS(311), - [anon_sym_BSLASH] = ACTIONS(313), - [sym_quotation_marks] = ACTIONS(315), - [sym_ellipsis] = ACTIONS(315), - [sym_em_dash] = ACTIONS(315), - [sym_en_dash] = ACTIONS(317), - [sym_backslash_escape] = ACTIONS(317), - [anon_sym_LT] = ACTIONS(319), - [sym_symbol] = ACTIONS(315), - [anon_sym_LBRACK_CARET] = ACTIONS(321), - [anon_sym_BANG_LBRACK] = ACTIONS(323), - [anon_sym_LBRACK] = ACTIONS(325), - [anon_sym_LPAREN] = ACTIONS(327), - [anon_sym_DOLLAR] = ACTIONS(329), - [anon_sym_TODO] = ACTIONS(331), - [anon_sym_WIP] = ACTIONS(331), - [anon_sym_NOTE] = ACTIONS(333), - [anon_sym_INFO] = ACTIONS(333), - [anon_sym_XXX] = ACTIONS(333), - [sym_fixme] = ACTIONS(315), - [sym__whitespace1] = ACTIONS(335), - [sym__newline] = ACTIONS(635), - [aux_sym__text_token1] = ACTIONS(339), - [sym__verbatim_begin] = ACTIONS(341), + [aux_sym__inline_repeat1] = STATE(24), + [anon_sym_LBRACE_] = ACTIONS(459), + [anon_sym__] = ACTIONS(461), + [anon_sym_LBRACE_STAR] = ACTIONS(463), + [anon_sym_STAR] = ACTIONS(465), + [anon_sym_LBRACE_CARET] = ACTIONS(467), + [anon_sym_CARET] = ACTIONS(467), + [anon_sym_LBRACE_TILDE] = ACTIONS(469), + [anon_sym_TILDE] = ACTIONS(469), + [anon_sym_LBRACE_EQ] = ACTIONS(471), + [anon_sym_LBRACE_PLUS] = ACTIONS(473), + [anon_sym_LBRACE_DASH] = ACTIONS(475), + [anon_sym_BSLASH] = ACTIONS(477), + [sym_quotation_marks] = ACTIONS(479), + [sym_ellipsis] = ACTIONS(479), + [sym_em_dash] = ACTIONS(479), + [sym_en_dash] = ACTIONS(481), + [sym_backslash_escape] = ACTIONS(481), + [anon_sym_LT] = ACTIONS(483), + [sym_symbol] = ACTIONS(479), + [anon_sym_LBRACK_CARET] = ACTIONS(485), + [anon_sym_BANG_LBRACK] = ACTIONS(487), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(489), + [anon_sym_LBRACK] = ACTIONS(491), + [anon_sym_LPAREN] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(495), + [anon_sym_TODO] = ACTIONS(497), + [anon_sym_WIP] = ACTIONS(497), + [anon_sym_NOTE] = ACTIONS(499), + [anon_sym_INFO] = ACTIONS(499), + [anon_sym_XXX] = ACTIONS(499), + [sym_fixme] = ACTIONS(479), + [sym__whitespace1] = ACTIONS(501), + [anon_sym_LF] = ACTIONS(503), + [aux_sym__text_token1] = ACTIONS(505), + [sym__verbatim_begin] = ACTIONS(507), }, [109] = { - [sym__inline] = STATE(1027), - [sym__element] = STATE(110), - [sym_emphasis] = STATE(146), - [sym_emphasis_begin] = STATE(1144), - [sym_strong] = STATE(146), - [sym_strong_begin] = STATE(1145), - [sym_superscript] = STATE(146), - [sym_superscript_begin] = STATE(1146), - [sym_subscript] = STATE(146), - [sym_subscript_begin] = STATE(1147), - [sym_highlighted] = STATE(146), - [sym_highlighted_begin] = STATE(1148), - [sym_insert] = STATE(146), - [sym_insert_begin] = STATE(1149), - [sym_delete] = STATE(146), - [sym_delete_begin] = STATE(1150), - [sym_hard_line_break] = STATE(144), - [sym__smart_punctuation] = STATE(144), - [sym_autolink] = STATE(144), - [sym_footnote_reference] = STATE(146), - [sym_footnote_marker_begin] = STATE(1151), - [sym__image] = STATE(146), - [sym_full_reference_image] = STATE(146), - [sym_collapsed_reference_image] = STATE(146), - [sym_inline_image] = STATE(146), - [sym_image_description] = STATE(673), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(146), - [sym_full_reference_link] = STATE(146), - [sym_collapsed_reference_link] = STATE(146), - [sym_inline_link] = STATE(146), - [sym_link_text] = STATE(662), - [sym_span] = STATE(110), - [sym__bracketed_text_begin] = STATE(1208), - [sym__comment_with_spaces] = STATE(144), - [sym_raw_inline] = STATE(144), - [sym_math] = STATE(144), - [sym_verbatim] = STATE(144), - [sym__todo_highlights] = STATE(144), - [sym_todo] = STATE(144), - [sym_note] = STATE(144), - [sym__symbol_fallback] = STATE(144), - [aux_sym__text] = STATE(128), - [aux_sym__inline_repeat1] = STATE(110), - [anon_sym_LBRACE_] = ACTIONS(587), - [anon_sym__] = ACTIONS(589), - [anon_sym_LBRACE_STAR] = ACTIONS(591), - [anon_sym_STAR] = ACTIONS(593), - [anon_sym_LBRACE_CARET] = ACTIONS(595), - [anon_sym_CARET] = ACTIONS(595), - [anon_sym_LBRACE_TILDE] = ACTIONS(597), - [anon_sym_TILDE] = ACTIONS(597), - [anon_sym_LBRACE_EQ] = ACTIONS(599), - [anon_sym_LBRACE_PLUS] = ACTIONS(601), - [anon_sym_LBRACE_DASH] = ACTIONS(603), - [anon_sym_BSLASH] = ACTIONS(605), - [sym_quotation_marks] = ACTIONS(607), - [sym_ellipsis] = ACTIONS(607), - [sym_em_dash] = ACTIONS(607), - [sym_en_dash] = ACTIONS(609), - [sym_backslash_escape] = ACTIONS(609), - [anon_sym_LT] = ACTIONS(611), - [sym_symbol] = ACTIONS(607), - [anon_sym_LBRACK_CARET] = ACTIONS(613), - [anon_sym_BANG_LBRACK] = ACTIONS(615), - [anon_sym_LBRACK] = ACTIONS(617), - [anon_sym_LPAREN] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [anon_sym_TODO] = ACTIONS(623), - [anon_sym_WIP] = ACTIONS(623), - [anon_sym_NOTE] = ACTIONS(625), - [anon_sym_INFO] = ACTIONS(625), - [anon_sym_XXX] = ACTIONS(625), - [sym_fixme] = ACTIONS(607), - [sym__whitespace1] = ACTIONS(627), - [sym__newline] = ACTIONS(629), - [aux_sym__text_token1] = ACTIONS(631), - [sym__verbatim_begin] = ACTIONS(633), + [sym__inline] = STATE(968), + [sym__element] = STATE(26), + [sym_emphasis] = STATE(149), + [sym_emphasis_begin] = STATE(1194), + [sym_strong] = STATE(149), + [sym_strong_begin] = STATE(1195), + [sym_superscript] = STATE(149), + [sym_superscript_begin] = STATE(1196), + [sym_subscript] = STATE(149), + [sym_subscript_begin] = STATE(1197), + [sym_highlighted] = STATE(149), + [sym_highlighted_begin] = STATE(1198), + [sym_insert] = STATE(149), + [sym_insert_begin] = STATE(1199), + [sym_delete] = STATE(149), + [sym_delete_begin] = STATE(1200), + [sym_hard_line_break] = STATE(148), + [sym__smart_punctuation] = STATE(148), + [sym_autolink] = STATE(148), + [sym_footnote_reference] = STATE(149), + [sym_footnote_marker_begin] = STATE(1201), + [sym__image] = STATE(149), + [sym_full_reference_image] = STATE(149), + [sym_collapsed_reference_image] = STATE(149), + [sym_inline_image] = STATE(149), + [sym_image_description] = STATE(667), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(149), + [sym_full_reference_link] = STATE(149), + [sym_collapsed_reference_link] = STATE(149), + [sym_inline_link] = STATE(149), + [sym_link_text] = STATE(668), + [sym_span] = STATE(26), + [sym__bracketed_text_begin] = STATE(1222), + [sym__comment_with_spaces] = STATE(148), + [sym_raw_inline] = STATE(148), + [sym_math] = STATE(148), + [sym_verbatim] = STATE(148), + [sym__todo_highlights] = STATE(148), + [sym_todo] = STATE(148), + [sym_note] = STATE(148), + [sym__symbol_fallback] = STATE(148), + [sym__newline] = STATE(26), + [aux_sym__text] = STATE(130), + [aux_sym__inline_repeat1] = STATE(26), + [anon_sym_LBRACE_] = ACTIONS(53), + [anon_sym__] = ACTIONS(55), + [anon_sym_LBRACE_STAR] = ACTIONS(57), + [anon_sym_STAR] = ACTIONS(59), + [anon_sym_LBRACE_CARET] = ACTIONS(61), + [anon_sym_CARET] = ACTIONS(61), + [anon_sym_LBRACE_TILDE] = ACTIONS(63), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_LBRACE_EQ] = ACTIONS(65), + [anon_sym_LBRACE_PLUS] = ACTIONS(67), + [anon_sym_LBRACE_DASH] = ACTIONS(69), + [anon_sym_BSLASH] = ACTIONS(71), + [sym_quotation_marks] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(73), + [sym_em_dash] = ACTIONS(73), + [sym_en_dash] = ACTIONS(75), + [sym_backslash_escape] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [sym_symbol] = ACTIONS(73), + [anon_sym_LBRACK_CARET] = ACTIONS(79), + [anon_sym_BANG_LBRACK] = ACTIONS(81), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), + [anon_sym_DOLLAR] = ACTIONS(89), + [anon_sym_TODO] = ACTIONS(91), + [anon_sym_WIP] = ACTIONS(91), + [anon_sym_NOTE] = ACTIONS(93), + [anon_sym_INFO] = ACTIONS(93), + [anon_sym_XXX] = ACTIONS(93), + [sym_fixme] = ACTIONS(73), + [sym__whitespace1] = ACTIONS(95), + [anon_sym_LF] = ACTIONS(97), + [aux_sym__text_token1] = ACTIONS(99), + [sym__verbatim_begin] = ACTIONS(101), }, [110] = { - [sym__element] = STATE(25), - [sym_emphasis] = STATE(146), - [sym_emphasis_begin] = STATE(1144), - [sym_strong] = STATE(146), - [sym_strong_begin] = STATE(1145), - [sym_superscript] = STATE(146), - [sym_superscript_begin] = STATE(1146), - [sym_subscript] = STATE(146), - [sym_subscript_begin] = STATE(1147), - [sym_highlighted] = STATE(146), - [sym_highlighted_begin] = STATE(1148), - [sym_insert] = STATE(146), - [sym_insert_begin] = STATE(1149), - [sym_delete] = STATE(146), - [sym_delete_begin] = STATE(1150), - [sym_hard_line_break] = STATE(144), - [sym__smart_punctuation] = STATE(144), - [sym_autolink] = STATE(144), - [sym_footnote_reference] = STATE(146), - [sym_footnote_marker_begin] = STATE(1151), - [sym__image] = STATE(146), - [sym_full_reference_image] = STATE(146), - [sym_collapsed_reference_image] = STATE(146), - [sym_inline_image] = STATE(146), - [sym_image_description] = STATE(673), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(146), - [sym_full_reference_link] = STATE(146), - [sym_collapsed_reference_link] = STATE(146), - [sym_inline_link] = STATE(146), - [sym_link_text] = STATE(662), - [sym_span] = STATE(25), - [sym__bracketed_text_begin] = STATE(1208), - [sym__comment_with_spaces] = STATE(144), - [sym_raw_inline] = STATE(144), - [sym_math] = STATE(144), - [sym_verbatim] = STATE(144), - [sym__todo_highlights] = STATE(144), - [sym_todo] = STATE(144), - [sym_note] = STATE(144), - [sym__symbol_fallback] = STATE(144), - [aux_sym__text] = STATE(128), - [aux_sym__inline_repeat1] = STATE(25), - [anon_sym_LBRACE_] = ACTIONS(587), - [anon_sym__] = ACTIONS(589), - [anon_sym_LBRACE_STAR] = ACTIONS(591), - [anon_sym_STAR] = ACTIONS(593), - [anon_sym_LBRACE_CARET] = ACTIONS(595), - [anon_sym_CARET] = ACTIONS(595), - [anon_sym_LBRACE_TILDE] = ACTIONS(597), - [anon_sym_TILDE] = ACTIONS(597), - [anon_sym_LBRACE_EQ] = ACTIONS(599), - [anon_sym_LBRACE_PLUS] = ACTIONS(601), - [anon_sym_LBRACE_DASH] = ACTIONS(603), - [anon_sym_BSLASH] = ACTIONS(605), - [sym_quotation_marks] = ACTIONS(607), - [sym_ellipsis] = ACTIONS(607), - [sym_em_dash] = ACTIONS(607), - [sym_en_dash] = ACTIONS(609), - [sym_backslash_escape] = ACTIONS(609), - [anon_sym_LT] = ACTIONS(611), - [sym_symbol] = ACTIONS(607), - [anon_sym_LBRACK_CARET] = ACTIONS(613), - [anon_sym_BANG_LBRACK] = ACTIONS(615), - [anon_sym_LBRACK] = ACTIONS(617), - [anon_sym_LPAREN] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [anon_sym_TODO] = ACTIONS(623), - [anon_sym_WIP] = ACTIONS(623), - [anon_sym_NOTE] = ACTIONS(625), - [anon_sym_INFO] = ACTIONS(625), - [anon_sym_XXX] = ACTIONS(625), - [sym_fixme] = ACTIONS(607), - [sym__whitespace1] = ACTIONS(627), - [sym__newline] = ACTIONS(1007), - [aux_sym__text_token1] = ACTIONS(631), - [sym__verbatim_begin] = ACTIONS(633), - [sym_highlighted_end] = ACTIONS(343), + [sym__inline] = STATE(984), + [sym__element] = STATE(26), + [sym_emphasis] = STATE(149), + [sym_emphasis_begin] = STATE(1194), + [sym_strong] = STATE(149), + [sym_strong_begin] = STATE(1195), + [sym_superscript] = STATE(149), + [sym_superscript_begin] = STATE(1196), + [sym_subscript] = STATE(149), + [sym_subscript_begin] = STATE(1197), + [sym_highlighted] = STATE(149), + [sym_highlighted_begin] = STATE(1198), + [sym_insert] = STATE(149), + [sym_insert_begin] = STATE(1199), + [sym_delete] = STATE(149), + [sym_delete_begin] = STATE(1200), + [sym_hard_line_break] = STATE(148), + [sym__smart_punctuation] = STATE(148), + [sym_autolink] = STATE(148), + [sym_footnote_reference] = STATE(149), + [sym_footnote_marker_begin] = STATE(1201), + [sym__image] = STATE(149), + [sym_full_reference_image] = STATE(149), + [sym_collapsed_reference_image] = STATE(149), + [sym_inline_image] = STATE(149), + [sym_image_description] = STATE(667), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(149), + [sym_full_reference_link] = STATE(149), + [sym_collapsed_reference_link] = STATE(149), + [sym_inline_link] = STATE(149), + [sym_link_text] = STATE(668), + [sym_span] = STATE(26), + [sym__bracketed_text_begin] = STATE(1222), + [sym__comment_with_spaces] = STATE(148), + [sym_raw_inline] = STATE(148), + [sym_math] = STATE(148), + [sym_verbatim] = STATE(148), + [sym__todo_highlights] = STATE(148), + [sym_todo] = STATE(148), + [sym_note] = STATE(148), + [sym__symbol_fallback] = STATE(148), + [sym__newline] = STATE(26), + [aux_sym__text] = STATE(130), + [aux_sym__inline_repeat1] = STATE(26), + [anon_sym_LBRACE_] = ACTIONS(53), + [anon_sym__] = ACTIONS(55), + [anon_sym_LBRACE_STAR] = ACTIONS(57), + [anon_sym_STAR] = ACTIONS(59), + [anon_sym_LBRACE_CARET] = ACTIONS(61), + [anon_sym_CARET] = ACTIONS(61), + [anon_sym_LBRACE_TILDE] = ACTIONS(63), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_LBRACE_EQ] = ACTIONS(65), + [anon_sym_LBRACE_PLUS] = ACTIONS(67), + [anon_sym_LBRACE_DASH] = ACTIONS(69), + [anon_sym_BSLASH] = ACTIONS(71), + [sym_quotation_marks] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(73), + [sym_em_dash] = ACTIONS(73), + [sym_en_dash] = ACTIONS(75), + [sym_backslash_escape] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [sym_symbol] = ACTIONS(73), + [anon_sym_LBRACK_CARET] = ACTIONS(79), + [anon_sym_BANG_LBRACK] = ACTIONS(81), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), + [anon_sym_DOLLAR] = ACTIONS(89), + [anon_sym_TODO] = ACTIONS(91), + [anon_sym_WIP] = ACTIONS(91), + [anon_sym_NOTE] = ACTIONS(93), + [anon_sym_INFO] = ACTIONS(93), + [anon_sym_XXX] = ACTIONS(93), + [sym_fixme] = ACTIONS(73), + [sym__whitespace1] = ACTIONS(95), + [anon_sym_LF] = ACTIONS(97), + [aux_sym__text_token1] = ACTIONS(99), + [sym__verbatim_begin] = ACTIONS(101), }, [111] = { - [sym__inline] = STATE(902), - [sym__element] = STATE(30), - [sym_emphasis] = STATE(132), - [sym_emphasis_begin] = STATE(1164), - [sym_strong] = STATE(132), - [sym_strong_begin] = STATE(1165), - [sym_superscript] = STATE(132), - [sym_superscript_begin] = STATE(1166), - [sym_subscript] = STATE(132), - [sym_subscript_begin] = STATE(1167), - [sym_highlighted] = STATE(132), - [sym_highlighted_begin] = STATE(1168), - [sym_insert] = STATE(132), - [sym_insert_begin] = STATE(1169), - [sym_delete] = STATE(132), - [sym_delete_begin] = STATE(1170), - [sym_hard_line_break] = STATE(142), - [sym__smart_punctuation] = STATE(142), - [sym_autolink] = STATE(142), - [sym_footnote_reference] = STATE(132), - [sym_footnote_marker_begin] = STATE(1171), - [sym__image] = STATE(132), - [sym_full_reference_image] = STATE(132), - [sym_collapsed_reference_image] = STATE(132), - [sym_inline_image] = STATE(132), - [sym_image_description] = STATE(660), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(132), - [sym_full_reference_link] = STATE(132), - [sym_collapsed_reference_link] = STATE(132), - [sym_inline_link] = STATE(132), - [sym_link_text] = STATE(659), - [sym_span] = STATE(30), - [sym__bracketed_text_begin] = STATE(1210), - [sym__comment_with_spaces] = STATE(142), - [sym_raw_inline] = STATE(142), - [sym_math] = STATE(142), - [sym_verbatim] = STATE(142), - [sym__todo_highlights] = STATE(142), - [sym_todo] = STATE(142), - [sym_note] = STATE(142), - [sym__symbol_fallback] = STATE(142), - [aux_sym__text] = STATE(126), - [aux_sym__inline_repeat1] = STATE(30), - [anon_sym_LBRACE_] = ACTIONS(393), - [anon_sym__] = ACTIONS(395), - [anon_sym_LBRACE_STAR] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(399), - [anon_sym_LBRACE_CARET] = ACTIONS(401), - [anon_sym_CARET] = ACTIONS(401), - [anon_sym_LBRACE_TILDE] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_LBRACE_EQ] = ACTIONS(405), - [anon_sym_LBRACE_PLUS] = ACTIONS(407), - [anon_sym_LBRACE_DASH] = ACTIONS(409), - [anon_sym_BSLASH] = ACTIONS(411), - [sym_quotation_marks] = ACTIONS(413), - [sym_ellipsis] = ACTIONS(413), - [sym_em_dash] = ACTIONS(413), - [sym_en_dash] = ACTIONS(415), - [sym_backslash_escape] = ACTIONS(415), - [anon_sym_LT] = ACTIONS(417), - [sym_symbol] = ACTIONS(413), - [anon_sym_LBRACK_CARET] = ACTIONS(419), - [anon_sym_BANG_LBRACK] = ACTIONS(421), - [anon_sym_LBRACK] = ACTIONS(423), - [anon_sym_LPAREN] = ACTIONS(425), - [anon_sym_DOLLAR] = ACTIONS(427), - [anon_sym_TODO] = ACTIONS(429), - [anon_sym_WIP] = ACTIONS(429), - [anon_sym_NOTE] = ACTIONS(431), - [anon_sym_INFO] = ACTIONS(431), - [anon_sym_XXX] = ACTIONS(431), - [sym_fixme] = ACTIONS(413), - [sym__whitespace1] = ACTIONS(433), - [sym__newline] = ACTIONS(435), - [aux_sym__text_token1] = ACTIONS(437), - [sym__verbatim_begin] = ACTIONS(439), + [sym__inline] = STATE(1000), + [sym__element] = STATE(26), + [sym_emphasis] = STATE(149), + [sym_emphasis_begin] = STATE(1194), + [sym_strong] = STATE(149), + [sym_strong_begin] = STATE(1195), + [sym_superscript] = STATE(149), + [sym_superscript_begin] = STATE(1196), + [sym_subscript] = STATE(149), + [sym_subscript_begin] = STATE(1197), + [sym_highlighted] = STATE(149), + [sym_highlighted_begin] = STATE(1198), + [sym_insert] = STATE(149), + [sym_insert_begin] = STATE(1199), + [sym_delete] = STATE(149), + [sym_delete_begin] = STATE(1200), + [sym_hard_line_break] = STATE(148), + [sym__smart_punctuation] = STATE(148), + [sym_autolink] = STATE(148), + [sym_footnote_reference] = STATE(149), + [sym_footnote_marker_begin] = STATE(1201), + [sym__image] = STATE(149), + [sym_full_reference_image] = STATE(149), + [sym_collapsed_reference_image] = STATE(149), + [sym_inline_image] = STATE(149), + [sym_image_description] = STATE(667), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(149), + [sym_full_reference_link] = STATE(149), + [sym_collapsed_reference_link] = STATE(149), + [sym_inline_link] = STATE(149), + [sym_link_text] = STATE(668), + [sym_span] = STATE(26), + [sym__bracketed_text_begin] = STATE(1222), + [sym__comment_with_spaces] = STATE(148), + [sym_raw_inline] = STATE(148), + [sym_math] = STATE(148), + [sym_verbatim] = STATE(148), + [sym__todo_highlights] = STATE(148), + [sym_todo] = STATE(148), + [sym_note] = STATE(148), + [sym__symbol_fallback] = STATE(148), + [sym__newline] = STATE(26), + [aux_sym__text] = STATE(130), + [aux_sym__inline_repeat1] = STATE(26), + [anon_sym_LBRACE_] = ACTIONS(53), + [anon_sym__] = ACTIONS(55), + [anon_sym_LBRACE_STAR] = ACTIONS(57), + [anon_sym_STAR] = ACTIONS(59), + [anon_sym_LBRACE_CARET] = ACTIONS(61), + [anon_sym_CARET] = ACTIONS(61), + [anon_sym_LBRACE_TILDE] = ACTIONS(63), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_LBRACE_EQ] = ACTIONS(65), + [anon_sym_LBRACE_PLUS] = ACTIONS(67), + [anon_sym_LBRACE_DASH] = ACTIONS(69), + [anon_sym_BSLASH] = ACTIONS(71), + [sym_quotation_marks] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(73), + [sym_em_dash] = ACTIONS(73), + [sym_en_dash] = ACTIONS(75), + [sym_backslash_escape] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [sym_symbol] = ACTIONS(73), + [anon_sym_LBRACK_CARET] = ACTIONS(79), + [anon_sym_BANG_LBRACK] = ACTIONS(81), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), + [anon_sym_DOLLAR] = ACTIONS(89), + [anon_sym_TODO] = ACTIONS(91), + [anon_sym_WIP] = ACTIONS(91), + [anon_sym_NOTE] = ACTIONS(93), + [anon_sym_INFO] = ACTIONS(93), + [anon_sym_XXX] = ACTIONS(93), + [sym_fixme] = ACTIONS(73), + [sym__whitespace1] = ACTIONS(95), + [anon_sym_LF] = ACTIONS(97), + [aux_sym__text_token1] = ACTIONS(99), + [sym__verbatim_begin] = ACTIONS(101), }, [112] = { - [sym__inline_without_trailing_space] = STATE(996), - [sym__element] = STATE(594), + [sym__inline] = STATE(1016), + [sym__element] = STATE(26), [sym_emphasis] = STATE(149), - [sym_emphasis_begin] = STATE(1104), + [sym_emphasis_begin] = STATE(1194), [sym_strong] = STATE(149), - [sym_strong_begin] = STATE(1105), + [sym_strong_begin] = STATE(1195), [sym_superscript] = STATE(149), - [sym_superscript_begin] = STATE(1106), + [sym_superscript_begin] = STATE(1196), [sym_subscript] = STATE(149), - [sym_subscript_begin] = STATE(1107), + [sym_subscript_begin] = STATE(1197), [sym_highlighted] = STATE(149), - [sym_highlighted_begin] = STATE(1108), + [sym_highlighted_begin] = STATE(1198), [sym_insert] = STATE(149), - [sym_insert_begin] = STATE(1109), + [sym_insert_begin] = STATE(1199), [sym_delete] = STATE(149), - [sym_delete_begin] = STATE(1110), - [sym_hard_line_break] = STATE(143), - [sym__smart_punctuation] = STATE(143), - [sym_autolink] = STATE(143), + [sym_delete_begin] = STATE(1200), + [sym_hard_line_break] = STATE(148), + [sym__smart_punctuation] = STATE(148), + [sym_autolink] = STATE(148), [sym_footnote_reference] = STATE(149), - [sym_footnote_marker_begin] = STATE(1111), + [sym_footnote_marker_begin] = STATE(1201), [sym__image] = STATE(149), [sym_full_reference_image] = STATE(149), [sym_collapsed_reference_image] = STATE(149), [sym_inline_image] = STATE(149), - [sym_image_description] = STATE(658), - [sym__image_description_begin] = STATE(1079), + [sym_image_description] = STATE(667), + [sym__image_description_begin] = STATE(958), [sym__link] = STATE(149), [sym_full_reference_link] = STATE(149), [sym_collapsed_reference_link] = STATE(149), [sym_inline_link] = STATE(149), - [sym_link_text] = STATE(672), - [sym_span] = STATE(594), - [sym__bracketed_text_begin] = STATE(1204), - [sym__comment_with_spaces] = STATE(143), - [sym_raw_inline] = STATE(143), - [sym_math] = STATE(143), - [sym_verbatim] = STATE(143), - [sym__todo_highlights] = STATE(143), - [sym_todo] = STATE(143), - [sym_note] = STATE(143), - [sym__symbol_fallback] = STATE(143), - [aux_sym__text] = STATE(127), - [aux_sym__inline_repeat1] = STATE(120), - [anon_sym_LBRACE_] = ACTIONS(441), - [anon_sym__] = ACTIONS(443), - [anon_sym_LBRACE_STAR] = ACTIONS(445), - [anon_sym_STAR] = ACTIONS(447), - [anon_sym_LBRACE_CARET] = ACTIONS(449), - [anon_sym_CARET] = ACTIONS(449), - [anon_sym_LBRACE_TILDE] = ACTIONS(451), - [anon_sym_TILDE] = ACTIONS(451), - [anon_sym_LBRACE_EQ] = ACTIONS(453), - [anon_sym_LBRACE_PLUS] = ACTIONS(455), - [anon_sym_LBRACE_DASH] = ACTIONS(457), - [anon_sym_BSLASH] = ACTIONS(459), - [sym_quotation_marks] = ACTIONS(461), - [sym_ellipsis] = ACTIONS(461), - [sym_em_dash] = ACTIONS(461), - [sym_en_dash] = ACTIONS(463), - [sym_backslash_escape] = ACTIONS(463), - [anon_sym_LT] = ACTIONS(465), - [sym_symbol] = ACTIONS(461), - [anon_sym_LBRACK_CARET] = ACTIONS(467), - [anon_sym_BANG_LBRACK] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(471), - [anon_sym_LPAREN] = ACTIONS(473), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_TODO] = ACTIONS(477), - [anon_sym_WIP] = ACTIONS(477), - [anon_sym_NOTE] = ACTIONS(479), - [anon_sym_INFO] = ACTIONS(479), - [anon_sym_XXX] = ACTIONS(479), - [sym_fixme] = ACTIONS(461), - [sym__whitespace1] = ACTIONS(481), - [sym__newline] = ACTIONS(483), - [aux_sym__text_token1] = ACTIONS(485), - [sym__verbatim_begin] = ACTIONS(487), + [sym_link_text] = STATE(668), + [sym_span] = STATE(26), + [sym__bracketed_text_begin] = STATE(1222), + [sym__comment_with_spaces] = STATE(148), + [sym_raw_inline] = STATE(148), + [sym_math] = STATE(148), + [sym_verbatim] = STATE(148), + [sym__todo_highlights] = STATE(148), + [sym_todo] = STATE(148), + [sym_note] = STATE(148), + [sym__symbol_fallback] = STATE(148), + [sym__newline] = STATE(26), + [aux_sym__text] = STATE(130), + [aux_sym__inline_repeat1] = STATE(26), + [anon_sym_LBRACE_] = ACTIONS(53), + [anon_sym__] = ACTIONS(55), + [anon_sym_LBRACE_STAR] = ACTIONS(57), + [anon_sym_STAR] = ACTIONS(59), + [anon_sym_LBRACE_CARET] = ACTIONS(61), + [anon_sym_CARET] = ACTIONS(61), + [anon_sym_LBRACE_TILDE] = ACTIONS(63), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_LBRACE_EQ] = ACTIONS(65), + [anon_sym_LBRACE_PLUS] = ACTIONS(67), + [anon_sym_LBRACE_DASH] = ACTIONS(69), + [anon_sym_BSLASH] = ACTIONS(71), + [sym_quotation_marks] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(73), + [sym_em_dash] = ACTIONS(73), + [sym_en_dash] = ACTIONS(75), + [sym_backslash_escape] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [sym_symbol] = ACTIONS(73), + [anon_sym_LBRACK_CARET] = ACTIONS(79), + [anon_sym_BANG_LBRACK] = ACTIONS(81), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), + [anon_sym_DOLLAR] = ACTIONS(89), + [anon_sym_TODO] = ACTIONS(91), + [anon_sym_WIP] = ACTIONS(91), + [anon_sym_NOTE] = ACTIONS(93), + [anon_sym_INFO] = ACTIONS(93), + [anon_sym_XXX] = ACTIONS(93), + [sym_fixme] = ACTIONS(73), + [sym__whitespace1] = ACTIONS(95), + [anon_sym_LF] = ACTIONS(97), + [aux_sym__text_token1] = ACTIONS(99), + [sym__verbatim_begin] = ACTIONS(101), }, [113] = { - [sym__inline] = STATE(952), - [sym__element] = STATE(46), - [sym_emphasis] = STATE(135), - [sym_emphasis_begin] = STATE(1174), - [sym_strong] = STATE(135), - [sym_strong_begin] = STATE(1175), - [sym_superscript] = STATE(135), - [sym_superscript_begin] = STATE(1176), - [sym_subscript] = STATE(135), - [sym_subscript_begin] = STATE(1177), - [sym_highlighted] = STATE(135), - [sym_highlighted_begin] = STATE(1178), - [sym_insert] = STATE(135), - [sym_insert_begin] = STATE(1179), - [sym_delete] = STATE(135), - [sym_delete_begin] = STATE(1180), - [sym_hard_line_break] = STATE(138), - [sym__smart_punctuation] = STATE(138), - [sym_autolink] = STATE(138), - [sym_footnote_reference] = STATE(135), - [sym_footnote_marker_begin] = STATE(1181), - [sym__image] = STATE(135), - [sym_full_reference_image] = STATE(135), - [sym_collapsed_reference_image] = STATE(135), - [sym_inline_image] = STATE(135), - [sym_image_description] = STATE(656), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(135), - [sym_full_reference_link] = STATE(135), - [sym_collapsed_reference_link] = STATE(135), - [sym_inline_link] = STATE(135), - [sym_link_text] = STATE(654), - [sym_span] = STATE(46), - [sym__bracketed_text_begin] = STATE(1211), - [sym__comment_with_spaces] = STATE(138), - [sym_raw_inline] = STATE(138), - [sym_math] = STATE(138), - [sym_verbatim] = STATE(138), - [sym__todo_highlights] = STATE(138), - [sym_todo] = STATE(138), - [sym_note] = STATE(138), - [sym__symbol_fallback] = STATE(138), - [aux_sym__text] = STATE(121), - [aux_sym__inline_repeat1] = STATE(46), - [anon_sym_LBRACE_] = ACTIONS(345), - [anon_sym__] = ACTIONS(347), - [anon_sym_LBRACE_STAR] = ACTIONS(349), - [anon_sym_STAR] = ACTIONS(351), - [anon_sym_LBRACE_CARET] = ACTIONS(353), - [anon_sym_CARET] = ACTIONS(353), - [anon_sym_LBRACE_TILDE] = ACTIONS(355), - [anon_sym_TILDE] = ACTIONS(355), - [anon_sym_LBRACE_EQ] = ACTIONS(357), - [anon_sym_LBRACE_PLUS] = ACTIONS(359), - [anon_sym_LBRACE_DASH] = ACTIONS(361), - [anon_sym_BSLASH] = ACTIONS(363), - [sym_quotation_marks] = ACTIONS(365), - [sym_ellipsis] = ACTIONS(365), - [sym_em_dash] = ACTIONS(365), - [sym_en_dash] = ACTIONS(367), - [sym_backslash_escape] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(369), - [sym_symbol] = ACTIONS(365), - [anon_sym_LBRACK_CARET] = ACTIONS(371), - [anon_sym_BANG_LBRACK] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LPAREN] = ACTIONS(377), - [anon_sym_DOLLAR] = ACTIONS(379), - [anon_sym_TODO] = ACTIONS(381), - [anon_sym_WIP] = ACTIONS(381), - [anon_sym_NOTE] = ACTIONS(383), - [anon_sym_INFO] = ACTIONS(383), - [anon_sym_XXX] = ACTIONS(383), - [sym_fixme] = ACTIONS(365), - [sym__whitespace1] = ACTIONS(385), - [sym__newline] = ACTIONS(387), - [aux_sym__text_token1] = ACTIONS(389), - [sym__verbatim_begin] = ACTIONS(391), + [sym__inline] = STATE(1032), + [sym__element] = STATE(26), + [sym_emphasis] = STATE(149), + [sym_emphasis_begin] = STATE(1194), + [sym_strong] = STATE(149), + [sym_strong_begin] = STATE(1195), + [sym_superscript] = STATE(149), + [sym_superscript_begin] = STATE(1196), + [sym_subscript] = STATE(149), + [sym_subscript_begin] = STATE(1197), + [sym_highlighted] = STATE(149), + [sym_highlighted_begin] = STATE(1198), + [sym_insert] = STATE(149), + [sym_insert_begin] = STATE(1199), + [sym_delete] = STATE(149), + [sym_delete_begin] = STATE(1200), + [sym_hard_line_break] = STATE(148), + [sym__smart_punctuation] = STATE(148), + [sym_autolink] = STATE(148), + [sym_footnote_reference] = STATE(149), + [sym_footnote_marker_begin] = STATE(1201), + [sym__image] = STATE(149), + [sym_full_reference_image] = STATE(149), + [sym_collapsed_reference_image] = STATE(149), + [sym_inline_image] = STATE(149), + [sym_image_description] = STATE(667), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(149), + [sym_full_reference_link] = STATE(149), + [sym_collapsed_reference_link] = STATE(149), + [sym_inline_link] = STATE(149), + [sym_link_text] = STATE(668), + [sym_span] = STATE(26), + [sym__bracketed_text_begin] = STATE(1222), + [sym__comment_with_spaces] = STATE(148), + [sym_raw_inline] = STATE(148), + [sym_math] = STATE(148), + [sym_verbatim] = STATE(148), + [sym__todo_highlights] = STATE(148), + [sym_todo] = STATE(148), + [sym_note] = STATE(148), + [sym__symbol_fallback] = STATE(148), + [sym__newline] = STATE(26), + [aux_sym__text] = STATE(130), + [aux_sym__inline_repeat1] = STATE(26), + [anon_sym_LBRACE_] = ACTIONS(53), + [anon_sym__] = ACTIONS(55), + [anon_sym_LBRACE_STAR] = ACTIONS(57), + [anon_sym_STAR] = ACTIONS(59), + [anon_sym_LBRACE_CARET] = ACTIONS(61), + [anon_sym_CARET] = ACTIONS(61), + [anon_sym_LBRACE_TILDE] = ACTIONS(63), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_LBRACE_EQ] = ACTIONS(65), + [anon_sym_LBRACE_PLUS] = ACTIONS(67), + [anon_sym_LBRACE_DASH] = ACTIONS(69), + [anon_sym_BSLASH] = ACTIONS(71), + [sym_quotation_marks] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(73), + [sym_em_dash] = ACTIONS(73), + [sym_en_dash] = ACTIONS(75), + [sym_backslash_escape] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [sym_symbol] = ACTIONS(73), + [anon_sym_LBRACK_CARET] = ACTIONS(79), + [anon_sym_BANG_LBRACK] = ACTIONS(81), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), + [anon_sym_DOLLAR] = ACTIONS(89), + [anon_sym_TODO] = ACTIONS(91), + [anon_sym_WIP] = ACTIONS(91), + [anon_sym_NOTE] = ACTIONS(93), + [anon_sym_INFO] = ACTIONS(93), + [anon_sym_XXX] = ACTIONS(93), + [sym_fixme] = ACTIONS(73), + [sym__whitespace1] = ACTIONS(95), + [anon_sym_LF] = ACTIONS(97), + [aux_sym__text_token1] = ACTIONS(99), + [sym__verbatim_begin] = ACTIONS(101), }, [114] = { - [sym__inline_without_trailing_space] = STATE(995), - [sym__element] = STATE(550), - [sym_emphasis] = STATE(137), - [sym_emphasis_begin] = STATE(1114), - [sym_strong] = STATE(137), - [sym_strong_begin] = STATE(1115), - [sym_superscript] = STATE(137), - [sym_superscript_begin] = STATE(1116), - [sym_subscript] = STATE(137), - [sym_subscript_begin] = STATE(1117), - [sym_highlighted] = STATE(137), - [sym_highlighted_begin] = STATE(1118), - [sym_insert] = STATE(137), - [sym_insert_begin] = STATE(1119), - [sym_delete] = STATE(137), - [sym_delete_begin] = STATE(1120), - [sym_hard_line_break] = STATE(131), - [sym__smart_punctuation] = STATE(131), - [sym_autolink] = STATE(131), - [sym_footnote_reference] = STATE(137), - [sym_footnote_marker_begin] = STATE(1121), - [sym__image] = STATE(137), - [sym_full_reference_image] = STATE(137), - [sym_collapsed_reference_image] = STATE(137), - [sym_inline_image] = STATE(137), - [sym_image_description] = STATE(649), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(137), - [sym_full_reference_link] = STATE(137), - [sym_collapsed_reference_link] = STATE(137), - [sym_inline_link] = STATE(137), - [sym_link_text] = STATE(650), - [sym_span] = STATE(550), - [sym__bracketed_text_begin] = STATE(1205), - [sym__comment_with_spaces] = STATE(131), - [sym_raw_inline] = STATE(131), - [sym_math] = STATE(131), - [sym_verbatim] = STATE(131), - [sym__todo_highlights] = STATE(131), - [sym_todo] = STATE(131), - [sym_note] = STATE(131), - [sym__symbol_fallback] = STATE(131), + [sym__inline] = STATE(1048), + [sym__element] = STATE(26), + [sym_emphasis] = STATE(149), + [sym_emphasis_begin] = STATE(1194), + [sym_strong] = STATE(149), + [sym_strong_begin] = STATE(1195), + [sym_superscript] = STATE(149), + [sym_superscript_begin] = STATE(1196), + [sym_subscript] = STATE(149), + [sym_subscript_begin] = STATE(1197), + [sym_highlighted] = STATE(149), + [sym_highlighted_begin] = STATE(1198), + [sym_insert] = STATE(149), + [sym_insert_begin] = STATE(1199), + [sym_delete] = STATE(149), + [sym_delete_begin] = STATE(1200), + [sym_hard_line_break] = STATE(148), + [sym__smart_punctuation] = STATE(148), + [sym_autolink] = STATE(148), + [sym_footnote_reference] = STATE(149), + [sym_footnote_marker_begin] = STATE(1201), + [sym__image] = STATE(149), + [sym_full_reference_image] = STATE(149), + [sym_collapsed_reference_image] = STATE(149), + [sym_inline_image] = STATE(149), + [sym_image_description] = STATE(667), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(149), + [sym_full_reference_link] = STATE(149), + [sym_collapsed_reference_link] = STATE(149), + [sym_inline_link] = STATE(149), + [sym_link_text] = STATE(668), + [sym_span] = STATE(26), + [sym__bracketed_text_begin] = STATE(1222), + [sym__comment_with_spaces] = STATE(148), + [sym_raw_inline] = STATE(148), + [sym_math] = STATE(148), + [sym_verbatim] = STATE(148), + [sym__todo_highlights] = STATE(148), + [sym_todo] = STATE(148), + [sym_note] = STATE(148), + [sym__symbol_fallback] = STATE(148), + [sym__newline] = STATE(26), [aux_sym__text] = STATE(130), - [aux_sym__inline_repeat1] = STATE(119), - [anon_sym_LBRACE_] = ACTIONS(489), - [anon_sym__] = ACTIONS(491), - [anon_sym_LBRACE_STAR] = ACTIONS(493), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_LBRACE_CARET] = ACTIONS(497), - [anon_sym_CARET] = ACTIONS(497), - [anon_sym_LBRACE_TILDE] = ACTIONS(499), - [anon_sym_TILDE] = ACTIONS(499), - [anon_sym_LBRACE_EQ] = ACTIONS(501), - [anon_sym_LBRACE_PLUS] = ACTIONS(503), - [anon_sym_LBRACE_DASH] = ACTIONS(505), - [anon_sym_BSLASH] = ACTIONS(507), - [sym_quotation_marks] = ACTIONS(509), - [sym_ellipsis] = ACTIONS(509), - [sym_em_dash] = ACTIONS(509), - [sym_en_dash] = ACTIONS(511), - [sym_backslash_escape] = ACTIONS(511), - [anon_sym_LT] = ACTIONS(513), - [sym_symbol] = ACTIONS(509), - [anon_sym_LBRACK_CARET] = ACTIONS(515), - [anon_sym_BANG_LBRACK] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(519), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_DOLLAR] = ACTIONS(523), - [anon_sym_TODO] = ACTIONS(525), - [anon_sym_WIP] = ACTIONS(525), - [anon_sym_NOTE] = ACTIONS(527), - [anon_sym_INFO] = ACTIONS(527), - [anon_sym_XXX] = ACTIONS(527), - [sym_fixme] = ACTIONS(509), - [sym__whitespace1] = ACTIONS(529), - [sym__newline] = ACTIONS(531), - [aux_sym__text_token1] = ACTIONS(533), - [sym__verbatim_begin] = ACTIONS(535), + [aux_sym__inline_repeat1] = STATE(26), + [anon_sym_LBRACE_] = ACTIONS(53), + [anon_sym__] = ACTIONS(55), + [anon_sym_LBRACE_STAR] = ACTIONS(57), + [anon_sym_STAR] = ACTIONS(59), + [anon_sym_LBRACE_CARET] = ACTIONS(61), + [anon_sym_CARET] = ACTIONS(61), + [anon_sym_LBRACE_TILDE] = ACTIONS(63), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_LBRACE_EQ] = ACTIONS(65), + [anon_sym_LBRACE_PLUS] = ACTIONS(67), + [anon_sym_LBRACE_DASH] = ACTIONS(69), + [anon_sym_BSLASH] = ACTIONS(71), + [sym_quotation_marks] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(73), + [sym_em_dash] = ACTIONS(73), + [sym_en_dash] = ACTIONS(75), + [sym_backslash_escape] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [sym_symbol] = ACTIONS(73), + [anon_sym_LBRACK_CARET] = ACTIONS(79), + [anon_sym_BANG_LBRACK] = ACTIONS(81), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), + [anon_sym_DOLLAR] = ACTIONS(89), + [anon_sym_TODO] = ACTIONS(91), + [anon_sym_WIP] = ACTIONS(91), + [anon_sym_NOTE] = ACTIONS(93), + [anon_sym_INFO] = ACTIONS(93), + [anon_sym_XXX] = ACTIONS(93), + [sym_fixme] = ACTIONS(73), + [sym__whitespace1] = ACTIONS(95), + [anon_sym_LF] = ACTIONS(97), + [aux_sym__text_token1] = ACTIONS(99), + [sym__verbatim_begin] = ACTIONS(101), }, [115] = { - [sym__element] = STATE(115), - [sym_emphasis] = STATE(148), - [sym_emphasis_begin] = STATE(1184), - [sym_strong] = STATE(148), - [sym_strong_begin] = STATE(1185), - [sym_superscript] = STATE(148), - [sym_superscript_begin] = STATE(1186), - [sym_subscript] = STATE(148), - [sym_subscript_begin] = STATE(1187), - [sym_highlighted] = STATE(148), - [sym_highlighted_begin] = STATE(1188), - [sym_insert] = STATE(148), - [sym_insert_begin] = STATE(1189), - [sym_delete] = STATE(148), - [sym_delete_begin] = STATE(1190), - [sym_hard_line_break] = STATE(139), - [sym__smart_punctuation] = STATE(139), - [sym_autolink] = STATE(139), - [sym_footnote_reference] = STATE(148), - [sym_footnote_marker_begin] = STATE(1191), - [sym__image] = STATE(148), - [sym_full_reference_image] = STATE(148), - [sym_collapsed_reference_image] = STATE(148), - [sym_inline_image] = STATE(148), - [sym_image_description] = STATE(648), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(148), - [sym_full_reference_link] = STATE(148), - [sym_collapsed_reference_link] = STATE(148), - [sym_inline_link] = STATE(148), - [sym_link_text] = STATE(647), - [sym_span] = STATE(115), - [sym__bracketed_text_begin] = STATE(1212), - [sym__comment_with_spaces] = STATE(139), - [sym_raw_inline] = STATE(139), - [sym_math] = STATE(139), - [sym_verbatim] = STATE(139), - [sym__todo_highlights] = STATE(139), - [sym_todo] = STATE(139), - [sym_note] = STATE(139), - [sym__symbol_fallback] = STATE(139), - [aux_sym__text] = STATE(123), - [aux_sym__inline_repeat1] = STATE(115), - [anon_sym_LBRACE_] = ACTIONS(1009), - [anon_sym__] = ACTIONS(1012), - [anon_sym_LBRACE_STAR] = ACTIONS(1015), - [anon_sym_STAR] = ACTIONS(1018), - [anon_sym_LBRACE_CARET] = ACTIONS(1021), - [anon_sym_CARET] = ACTIONS(1021), - [anon_sym_LBRACE_TILDE] = ACTIONS(1024), - [anon_sym_TILDE] = ACTIONS(1024), - [anon_sym_LBRACE_EQ] = ACTIONS(1027), - [anon_sym_LBRACE_PLUS] = ACTIONS(1030), - [anon_sym_LBRACE_DASH] = ACTIONS(1033), - [anon_sym_BSLASH] = ACTIONS(1036), - [sym_quotation_marks] = ACTIONS(1039), - [sym_ellipsis] = ACTIONS(1039), - [sym_em_dash] = ACTIONS(1039), - [sym_en_dash] = ACTIONS(1042), - [sym_backslash_escape] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1045), - [sym_symbol] = ACTIONS(1039), - [anon_sym_LBRACK_CARET] = ACTIONS(1048), - [anon_sym_BANG_LBRACK] = ACTIONS(1051), - [anon_sym_LBRACK] = ACTIONS(1054), - [anon_sym_LPAREN] = ACTIONS(1057), - [anon_sym_DOLLAR] = ACTIONS(1060), - [anon_sym_TODO] = ACTIONS(1063), - [anon_sym_WIP] = ACTIONS(1063), - [anon_sym_NOTE] = ACTIONS(1066), - [anon_sym_INFO] = ACTIONS(1066), - [anon_sym_XXX] = ACTIONS(1066), - [sym_fixme] = ACTIONS(1039), - [sym__whitespace1] = ACTIONS(1069), - [sym__newline] = ACTIONS(1072), - [aux_sym__text_token1] = ACTIONS(1075), - [sym__verbatim_begin] = ACTIONS(1078), - [sym__square_bracket_span_end] = ACTIONS(221), + [sym__inline] = STATE(1064), + [sym__element] = STATE(26), + [sym_emphasis] = STATE(149), + [sym_emphasis_begin] = STATE(1194), + [sym_strong] = STATE(149), + [sym_strong_begin] = STATE(1195), + [sym_superscript] = STATE(149), + [sym_superscript_begin] = STATE(1196), + [sym_subscript] = STATE(149), + [sym_subscript_begin] = STATE(1197), + [sym_highlighted] = STATE(149), + [sym_highlighted_begin] = STATE(1198), + [sym_insert] = STATE(149), + [sym_insert_begin] = STATE(1199), + [sym_delete] = STATE(149), + [sym_delete_begin] = STATE(1200), + [sym_hard_line_break] = STATE(148), + [sym__smart_punctuation] = STATE(148), + [sym_autolink] = STATE(148), + [sym_footnote_reference] = STATE(149), + [sym_footnote_marker_begin] = STATE(1201), + [sym__image] = STATE(149), + [sym_full_reference_image] = STATE(149), + [sym_collapsed_reference_image] = STATE(149), + [sym_inline_image] = STATE(149), + [sym_image_description] = STATE(667), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(149), + [sym_full_reference_link] = STATE(149), + [sym_collapsed_reference_link] = STATE(149), + [sym_inline_link] = STATE(149), + [sym_link_text] = STATE(668), + [sym_span] = STATE(26), + [sym__bracketed_text_begin] = STATE(1222), + [sym__comment_with_spaces] = STATE(148), + [sym_raw_inline] = STATE(148), + [sym_math] = STATE(148), + [sym_verbatim] = STATE(148), + [sym__todo_highlights] = STATE(148), + [sym_todo] = STATE(148), + [sym_note] = STATE(148), + [sym__symbol_fallback] = STATE(148), + [sym__newline] = STATE(26), + [aux_sym__text] = STATE(130), + [aux_sym__inline_repeat1] = STATE(26), + [anon_sym_LBRACE_] = ACTIONS(53), + [anon_sym__] = ACTIONS(55), + [anon_sym_LBRACE_STAR] = ACTIONS(57), + [anon_sym_STAR] = ACTIONS(59), + [anon_sym_LBRACE_CARET] = ACTIONS(61), + [anon_sym_CARET] = ACTIONS(61), + [anon_sym_LBRACE_TILDE] = ACTIONS(63), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_LBRACE_EQ] = ACTIONS(65), + [anon_sym_LBRACE_PLUS] = ACTIONS(67), + [anon_sym_LBRACE_DASH] = ACTIONS(69), + [anon_sym_BSLASH] = ACTIONS(71), + [sym_quotation_marks] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(73), + [sym_em_dash] = ACTIONS(73), + [sym_en_dash] = ACTIONS(75), + [sym_backslash_escape] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [sym_symbol] = ACTIONS(73), + [anon_sym_LBRACK_CARET] = ACTIONS(79), + [anon_sym_BANG_LBRACK] = ACTIONS(81), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), + [anon_sym_DOLLAR] = ACTIONS(89), + [anon_sym_TODO] = ACTIONS(91), + [anon_sym_WIP] = ACTIONS(91), + [anon_sym_NOTE] = ACTIONS(93), + [anon_sym_INFO] = ACTIONS(93), + [anon_sym_XXX] = ACTIONS(93), + [sym_fixme] = ACTIONS(73), + [sym__whitespace1] = ACTIONS(95), + [anon_sym_LF] = ACTIONS(97), + [aux_sym__text_token1] = ACTIONS(99), + [sym__verbatim_begin] = ACTIONS(101), }, [116] = { - [sym__inline] = STATE(987), - [sym__element] = STATE(64), - [sym_emphasis] = STATE(133), + [sym__inline] = STATE(1080), + [sym__element] = STATE(26), + [sym_emphasis] = STATE(149), + [sym_emphasis_begin] = STATE(1194), + [sym_strong] = STATE(149), + [sym_strong_begin] = STATE(1195), + [sym_superscript] = STATE(149), + [sym_superscript_begin] = STATE(1196), + [sym_subscript] = STATE(149), + [sym_subscript_begin] = STATE(1197), + [sym_highlighted] = STATE(149), + [sym_highlighted_begin] = STATE(1198), + [sym_insert] = STATE(149), + [sym_insert_begin] = STATE(1199), + [sym_delete] = STATE(149), + [sym_delete_begin] = STATE(1200), + [sym_hard_line_break] = STATE(148), + [sym__smart_punctuation] = STATE(148), + [sym_autolink] = STATE(148), + [sym_footnote_reference] = STATE(149), + [sym_footnote_marker_begin] = STATE(1201), + [sym__image] = STATE(149), + [sym_full_reference_image] = STATE(149), + [sym_collapsed_reference_image] = STATE(149), + [sym_inline_image] = STATE(149), + [sym_image_description] = STATE(667), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(149), + [sym_full_reference_link] = STATE(149), + [sym_collapsed_reference_link] = STATE(149), + [sym_inline_link] = STATE(149), + [sym_link_text] = STATE(668), + [sym_span] = STATE(26), + [sym__bracketed_text_begin] = STATE(1222), + [sym__comment_with_spaces] = STATE(148), + [sym_raw_inline] = STATE(148), + [sym_math] = STATE(148), + [sym_verbatim] = STATE(148), + [sym__todo_highlights] = STATE(148), + [sym_todo] = STATE(148), + [sym_note] = STATE(148), + [sym__symbol_fallback] = STATE(148), + [sym__newline] = STATE(26), + [aux_sym__text] = STATE(130), + [aux_sym__inline_repeat1] = STATE(26), + [anon_sym_LBRACE_] = ACTIONS(53), + [anon_sym__] = ACTIONS(55), + [anon_sym_LBRACE_STAR] = ACTIONS(57), + [anon_sym_STAR] = ACTIONS(59), + [anon_sym_LBRACE_CARET] = ACTIONS(61), + [anon_sym_CARET] = ACTIONS(61), + [anon_sym_LBRACE_TILDE] = ACTIONS(63), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_LBRACE_EQ] = ACTIONS(65), + [anon_sym_LBRACE_PLUS] = ACTIONS(67), + [anon_sym_LBRACE_DASH] = ACTIONS(69), + [anon_sym_BSLASH] = ACTIONS(71), + [sym_quotation_marks] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(73), + [sym_em_dash] = ACTIONS(73), + [sym_en_dash] = ACTIONS(75), + [sym_backslash_escape] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [sym_symbol] = ACTIONS(73), + [anon_sym_LBRACK_CARET] = ACTIONS(79), + [anon_sym_BANG_LBRACK] = ACTIONS(81), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), + [anon_sym_DOLLAR] = ACTIONS(89), + [anon_sym_TODO] = ACTIONS(91), + [anon_sym_WIP] = ACTIONS(91), + [anon_sym_NOTE] = ACTIONS(93), + [anon_sym_INFO] = ACTIONS(93), + [anon_sym_XXX] = ACTIONS(93), + [sym_fixme] = ACTIONS(73), + [sym__whitespace1] = ACTIONS(95), + [anon_sym_LF] = ACTIONS(97), + [aux_sym__text_token1] = ACTIONS(99), + [sym__verbatim_begin] = ACTIONS(101), + }, + [117] = { + [sym__inline_without_trailing_space] = STATE(978), + [sym__element] = STATE(570), + [sym_emphasis] = STATE(142), [sym_emphasis_begin] = STATE(1124), - [sym_strong] = STATE(133), + [sym_strong] = STATE(142), [sym_strong_begin] = STATE(1125), - [sym_superscript] = STATE(133), + [sym_superscript] = STATE(142), [sym_superscript_begin] = STATE(1126), - [sym_subscript] = STATE(133), + [sym_subscript] = STATE(142), [sym_subscript_begin] = STATE(1127), - [sym_highlighted] = STATE(133), + [sym_highlighted] = STATE(142), [sym_highlighted_begin] = STATE(1128), - [sym_insert] = STATE(133), + [sym_insert] = STATE(142), [sym_insert_begin] = STATE(1129), - [sym_delete] = STATE(133), + [sym_delete] = STATE(142), [sym_delete_begin] = STATE(1130), - [sym_hard_line_break] = STATE(140), - [sym__smart_punctuation] = STATE(140), - [sym_autolink] = STATE(140), - [sym_footnote_reference] = STATE(133), + [sym_hard_line_break] = STATE(137), + [sym__smart_punctuation] = STATE(137), + [sym_autolink] = STATE(137), + [sym_footnote_reference] = STATE(142), [sym_footnote_marker_begin] = STATE(1131), - [sym__image] = STATE(133), - [sym_full_reference_image] = STATE(133), - [sym_collapsed_reference_image] = STATE(133), - [sym_inline_image] = STATE(133), - [sym_image_description] = STATE(663), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(133), - [sym_full_reference_link] = STATE(133), - [sym_collapsed_reference_link] = STATE(133), - [sym_inline_link] = STATE(133), - [sym_link_text] = STATE(669), - [sym_span] = STATE(64), - [sym__bracketed_text_begin] = STATE(1206), - [sym__comment_with_spaces] = STATE(140), - [sym_raw_inline] = STATE(140), - [sym_math] = STATE(140), - [sym_verbatim] = STATE(140), - [sym__todo_highlights] = STATE(140), - [sym_todo] = STATE(140), - [sym_note] = STATE(140), - [sym__symbol_fallback] = STATE(140), - [aux_sym__text] = STATE(122), - [aux_sym__inline_repeat1] = STATE(64), - [anon_sym_LBRACE_] = ACTIONS(537), - [anon_sym__] = ACTIONS(539), - [anon_sym_LBRACE_STAR] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(543), - [anon_sym_LBRACE_CARET] = ACTIONS(545), - [anon_sym_CARET] = ACTIONS(545), - [anon_sym_LBRACE_TILDE] = ACTIONS(547), - [anon_sym_TILDE] = ACTIONS(547), - [anon_sym_LBRACE_EQ] = ACTIONS(549), - [anon_sym_LBRACE_PLUS] = ACTIONS(551), - [anon_sym_LBRACE_DASH] = ACTIONS(553), - [anon_sym_BSLASH] = ACTIONS(555), - [sym_quotation_marks] = ACTIONS(557), - [sym_ellipsis] = ACTIONS(557), - [sym_em_dash] = ACTIONS(557), - [sym_en_dash] = ACTIONS(559), - [sym_backslash_escape] = ACTIONS(559), - [anon_sym_LT] = ACTIONS(561), - [sym_symbol] = ACTIONS(557), - [anon_sym_LBRACK_CARET] = ACTIONS(563), - [anon_sym_BANG_LBRACK] = ACTIONS(565), - [anon_sym_LBRACK] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_DOLLAR] = ACTIONS(571), - [anon_sym_TODO] = ACTIONS(573), - [anon_sym_WIP] = ACTIONS(573), - [anon_sym_NOTE] = ACTIONS(575), - [anon_sym_INFO] = ACTIONS(575), - [anon_sym_XXX] = ACTIONS(575), - [sym_fixme] = ACTIONS(557), - [sym__whitespace1] = ACTIONS(577), - [sym__newline] = ACTIONS(579), - [aux_sym__text_token1] = ACTIONS(581), - [sym__verbatim_begin] = ACTIONS(583), - }, - [117] = { - [sym__inline] = STATE(986), - [sym__element] = STATE(14), - [sym_emphasis] = STATE(136), - [sym_emphasis_begin] = STATE(1134), - [sym_strong] = STATE(136), - [sym_strong_begin] = STATE(1135), - [sym_superscript] = STATE(136), - [sym_superscript_begin] = STATE(1136), - [sym_subscript] = STATE(136), - [sym_subscript_begin] = STATE(1137), - [sym_highlighted] = STATE(136), - [sym_highlighted_begin] = STATE(1138), - [sym_insert] = STATE(136), - [sym_insert_begin] = STATE(1139), - [sym_delete] = STATE(136), - [sym_delete_begin] = STATE(1140), - [sym_hard_line_break] = STATE(134), - [sym__smart_punctuation] = STATE(134), - [sym_autolink] = STATE(134), - [sym_footnote_reference] = STATE(136), - [sym_footnote_marker_begin] = STATE(1141), - [sym__image] = STATE(136), - [sym_full_reference_image] = STATE(136), - [sym_collapsed_reference_image] = STATE(136), - [sym_inline_image] = STATE(136), - [sym_image_description] = STATE(670), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(136), - [sym_full_reference_link] = STATE(136), - [sym_collapsed_reference_link] = STATE(136), - [sym_inline_link] = STATE(136), - [sym_link_text] = STATE(671), - [sym_span] = STATE(14), - [sym__bracketed_text_begin] = STATE(1207), - [sym__comment_with_spaces] = STATE(134), - [sym_raw_inline] = STATE(134), - [sym_math] = STATE(134), - [sym_verbatim] = STATE(134), - [sym__todo_highlights] = STATE(134), - [sym_todo] = STATE(134), - [sym_note] = STATE(134), - [sym__symbol_fallback] = STATE(134), - [aux_sym__text] = STATE(129), - [aux_sym__inline_repeat1] = STATE(14), - [anon_sym_LBRACE_] = ACTIONS(295), - [anon_sym__] = ACTIONS(297), - [anon_sym_LBRACE_STAR] = ACTIONS(299), - [anon_sym_STAR] = ACTIONS(301), - [anon_sym_LBRACE_CARET] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(303), - [anon_sym_LBRACE_TILDE] = ACTIONS(305), - [anon_sym_TILDE] = ACTIONS(305), - [anon_sym_LBRACE_EQ] = ACTIONS(307), - [anon_sym_LBRACE_PLUS] = ACTIONS(309), - [anon_sym_LBRACE_DASH] = ACTIONS(311), - [anon_sym_BSLASH] = ACTIONS(313), - [sym_quotation_marks] = ACTIONS(315), - [sym_ellipsis] = ACTIONS(315), - [sym_em_dash] = ACTIONS(315), - [sym_en_dash] = ACTIONS(317), - [sym_backslash_escape] = ACTIONS(317), - [anon_sym_LT] = ACTIONS(319), - [sym_symbol] = ACTIONS(315), - [anon_sym_LBRACK_CARET] = ACTIONS(321), - [anon_sym_BANG_LBRACK] = ACTIONS(323), - [anon_sym_LBRACK] = ACTIONS(325), - [anon_sym_LPAREN] = ACTIONS(327), - [anon_sym_DOLLAR] = ACTIONS(329), - [anon_sym_TODO] = ACTIONS(331), - [anon_sym_WIP] = ACTIONS(331), - [anon_sym_NOTE] = ACTIONS(333), - [anon_sym_INFO] = ACTIONS(333), - [anon_sym_XXX] = ACTIONS(333), - [sym_fixme] = ACTIONS(315), - [sym__whitespace1] = ACTIONS(335), - [sym__newline] = ACTIONS(635), - [aux_sym__text_token1] = ACTIONS(339), - [sym__verbatim_begin] = ACTIONS(341), + [sym__image] = STATE(142), + [sym_full_reference_image] = STATE(142), + [sym_collapsed_reference_image] = STATE(142), + [sym_inline_image] = STATE(142), + [sym_image_description] = STATE(687), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(142), + [sym_full_reference_link] = STATE(142), + [sym_collapsed_reference_link] = STATE(142), + [sym_inline_link] = STATE(142), + [sym_link_text] = STATE(654), + [sym_span] = STATE(570), + [sym__bracketed_text_begin] = STATE(1215), + [sym__comment_with_spaces] = STATE(137), + [sym_raw_inline] = STATE(137), + [sym_math] = STATE(137), + [sym_verbatim] = STATE(137), + [sym__todo_highlights] = STATE(137), + [sym_todo] = STATE(137), + [sym_note] = STATE(137), + [sym__symbol_fallback] = STATE(137), + [sym__newline] = STATE(118), + [aux_sym__text] = STATE(128), + [aux_sym__inline_repeat1] = STATE(118), + [anon_sym_LBRACE_] = ACTIONS(209), + [anon_sym__] = ACTIONS(211), + [anon_sym_LBRACE_STAR] = ACTIONS(213), + [anon_sym_STAR] = ACTIONS(215), + [anon_sym_LBRACE_CARET] = ACTIONS(217), + [anon_sym_CARET] = ACTIONS(217), + [anon_sym_LBRACE_TILDE] = ACTIONS(219), + [anon_sym_TILDE] = ACTIONS(219), + [anon_sym_LBRACE_EQ] = ACTIONS(221), + [anon_sym_LBRACE_PLUS] = ACTIONS(223), + [anon_sym_LBRACE_DASH] = ACTIONS(225), + [anon_sym_BSLASH] = ACTIONS(227), + [sym_quotation_marks] = ACTIONS(229), + [sym_ellipsis] = ACTIONS(229), + [sym_em_dash] = ACTIONS(229), + [sym_en_dash] = ACTIONS(231), + [sym_backslash_escape] = ACTIONS(231), + [anon_sym_LT] = ACTIONS(233), + [sym_symbol] = ACTIONS(229), + [anon_sym_LBRACK_CARET] = ACTIONS(235), + [anon_sym_BANG_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_LPAREN] = ACTIONS(243), + [anon_sym_DOLLAR] = ACTIONS(245), + [anon_sym_TODO] = ACTIONS(247), + [anon_sym_WIP] = ACTIONS(247), + [anon_sym_NOTE] = ACTIONS(249), + [anon_sym_INFO] = ACTIONS(249), + [anon_sym_XXX] = ACTIONS(249), + [sym_fixme] = ACTIONS(229), + [sym__whitespace1] = ACTIONS(251), + [anon_sym_LF] = ACTIONS(253), + [aux_sym__text_token1] = ACTIONS(255), + [sym__verbatim_begin] = ACTIONS(257), }, [118] = { - [sym__element] = STATE(118), - [sym_emphasis] = STATE(152), - [sym_emphasis_begin] = STATE(1194), - [sym_strong] = STATE(152), - [sym_strong_begin] = STATE(1195), - [sym_superscript] = STATE(152), - [sym_superscript_begin] = STATE(1196), - [sym_subscript] = STATE(152), - [sym_subscript_begin] = STATE(1197), - [sym_highlighted] = STATE(152), - [sym_highlighted_begin] = STATE(1198), - [sym_insert] = STATE(152), - [sym_insert_begin] = STATE(1199), - [sym_delete] = STATE(152), - [sym_delete_begin] = STATE(1200), - [sym_hard_line_break] = STATE(157), - [sym__smart_punctuation] = STATE(157), - [sym_autolink] = STATE(157), - [sym_footnote_reference] = STATE(152), - [sym_footnote_marker_begin] = STATE(1201), - [sym__image] = STATE(152), - [sym_full_reference_image] = STATE(152), - [sym_collapsed_reference_image] = STATE(152), - [sym_inline_image] = STATE(152), - [sym_image_description] = STATE(646), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(152), - [sym_full_reference_link] = STATE(152), - [sym_collapsed_reference_link] = STATE(152), - [sym_inline_link] = STATE(152), - [sym_link_text] = STATE(643), - [sym_span] = STATE(118), - [sym__bracketed_text_begin] = STATE(1213), - [sym__comment_with_spaces] = STATE(157), - [sym_raw_inline] = STATE(157), - [sym_math] = STATE(157), - [sym_verbatim] = STATE(157), - [sym__todo_highlights] = STATE(157), - [sym_todo] = STATE(157), - [sym_note] = STATE(157), - [sym__symbol_fallback] = STATE(157), - [aux_sym__text] = STATE(150), - [aux_sym__inline_repeat1] = STATE(118), - [anon_sym_LBRACE_] = ACTIONS(1081), - [anon_sym__] = ACTIONS(1084), - [anon_sym_LBRACE_STAR] = ACTIONS(1087), - [anon_sym_STAR] = ACTIONS(1090), - [anon_sym_LBRACE_CARET] = ACTIONS(1093), - [anon_sym_CARET] = ACTIONS(1093), - [anon_sym_LBRACE_TILDE] = ACTIONS(1096), - [anon_sym_TILDE] = ACTIONS(1096), - [anon_sym_LBRACE_EQ] = ACTIONS(1099), - [anon_sym_LBRACE_PLUS] = ACTIONS(1102), - [anon_sym_LBRACE_DASH] = ACTIONS(1105), - [anon_sym_BSLASH] = ACTIONS(1108), - [sym_quotation_marks] = ACTIONS(1111), - [sym_ellipsis] = ACTIONS(1111), - [sym_em_dash] = ACTIONS(1111), - [sym_en_dash] = ACTIONS(1114), - [sym_backslash_escape] = ACTIONS(1114), - [anon_sym_LT] = ACTIONS(1117), - [sym_symbol] = ACTIONS(1111), - [anon_sym_LBRACK_CARET] = ACTIONS(1120), - [anon_sym_BANG_LBRACK] = ACTIONS(1123), - [anon_sym_LBRACK] = ACTIONS(1126), - [anon_sym_LPAREN] = ACTIONS(1129), - [anon_sym_DOLLAR] = ACTIONS(1132), - [anon_sym_TODO] = ACTIONS(1135), - [anon_sym_WIP] = ACTIONS(1135), - [anon_sym_NOTE] = ACTIONS(1138), - [anon_sym_INFO] = ACTIONS(1138), - [anon_sym_XXX] = ACTIONS(1138), - [sym_fixme] = ACTIONS(1111), - [sym__whitespace1] = ACTIONS(1141), - [sym__newline] = ACTIONS(1144), - [aux_sym__text_token1] = ACTIONS(1147), - [sym__verbatim_begin] = ACTIONS(1150), + [sym__element] = STATE(559), + [sym_emphasis] = STATE(142), + [sym_emphasis_begin] = STATE(1124), + [sym_strong] = STATE(142), + [sym_strong_begin] = STATE(1125), + [sym_superscript] = STATE(142), + [sym_superscript_begin] = STATE(1126), + [sym_subscript] = STATE(142), + [sym_subscript_begin] = STATE(1127), + [sym_highlighted] = STATE(142), + [sym_highlighted_begin] = STATE(1128), + [sym_insert] = STATE(142), + [sym_insert_begin] = STATE(1129), + [sym_delete] = STATE(142), + [sym_delete_begin] = STATE(1130), + [sym_hard_line_break] = STATE(137), + [sym__smart_punctuation] = STATE(137), + [sym_autolink] = STATE(137), + [sym_footnote_reference] = STATE(142), + [sym_footnote_marker_begin] = STATE(1131), + [sym__image] = STATE(142), + [sym_full_reference_image] = STATE(142), + [sym_collapsed_reference_image] = STATE(142), + [sym_inline_image] = STATE(142), + [sym_image_description] = STATE(687), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(142), + [sym_full_reference_link] = STATE(142), + [sym_collapsed_reference_link] = STATE(142), + [sym_inline_link] = STATE(142), + [sym_link_text] = STATE(654), + [sym_span] = STATE(559), + [sym__bracketed_text_begin] = STATE(1215), + [sym__comment_with_spaces] = STATE(137), + [sym_raw_inline] = STATE(137), + [sym_math] = STATE(137), + [sym_verbatim] = STATE(137), + [sym__todo_highlights] = STATE(137), + [sym_todo] = STATE(137), + [sym_note] = STATE(137), + [sym__symbol_fallback] = STATE(137), + [sym__newline] = STATE(120), + [aux_sym__text] = STATE(128), + [aux_sym__inline_repeat1] = STATE(120), + [anon_sym_LBRACE_] = ACTIONS(209), + [anon_sym__] = ACTIONS(211), + [anon_sym_LBRACE_STAR] = ACTIONS(213), + [anon_sym_STAR] = ACTIONS(215), + [anon_sym_LBRACE_CARET] = ACTIONS(217), + [anon_sym_CARET] = ACTIONS(217), + [anon_sym_LBRACE_TILDE] = ACTIONS(219), + [anon_sym_TILDE] = ACTIONS(219), + [anon_sym_LBRACE_EQ] = ACTIONS(221), + [anon_sym_LBRACE_PLUS] = ACTIONS(223), + [anon_sym_LBRACE_DASH] = ACTIONS(225), + [anon_sym_BSLASH] = ACTIONS(227), + [sym_quotation_marks] = ACTIONS(229), + [sym_ellipsis] = ACTIONS(229), + [sym_em_dash] = ACTIONS(229), + [sym_en_dash] = ACTIONS(231), + [sym_backslash_escape] = ACTIONS(231), + [anon_sym_LT] = ACTIONS(233), + [sym_symbol] = ACTIONS(229), + [anon_sym_LBRACK_CARET] = ACTIONS(235), + [anon_sym_BANG_LBRACK] = ACTIONS(237), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_LPAREN] = ACTIONS(243), + [anon_sym_DOLLAR] = ACTIONS(245), + [anon_sym_TODO] = ACTIONS(247), + [anon_sym_WIP] = ACTIONS(247), + [anon_sym_NOTE] = ACTIONS(249), + [anon_sym_INFO] = ACTIONS(249), + [anon_sym_XXX] = ACTIONS(249), + [sym_fixme] = ACTIONS(229), + [sym__whitespace1] = ACTIONS(251), + [anon_sym_LF] = ACTIONS(1125), + [aux_sym__text_token1] = ACTIONS(255), + [sym__verbatim_begin] = ACTIONS(257), }, [119] = { - [sym__element] = STATE(552), - [sym_emphasis] = STATE(137), + [sym__element] = STATE(576), + [sym_emphasis] = STATE(150), [sym_emphasis_begin] = STATE(1114), - [sym_strong] = STATE(137), + [sym_strong] = STATE(150), [sym_strong_begin] = STATE(1115), - [sym_superscript] = STATE(137), + [sym_superscript] = STATE(150), [sym_superscript_begin] = STATE(1116), - [sym_subscript] = STATE(137), + [sym_subscript] = STATE(150), [sym_subscript_begin] = STATE(1117), - [sym_highlighted] = STATE(137), + [sym_highlighted] = STATE(150), [sym_highlighted_begin] = STATE(1118), - [sym_insert] = STATE(137), + [sym_insert] = STATE(150), [sym_insert_begin] = STATE(1119), - [sym_delete] = STATE(137), + [sym_delete] = STATE(150), [sym_delete_begin] = STATE(1120), - [sym_hard_line_break] = STATE(131), - [sym__smart_punctuation] = STATE(131), - [sym_autolink] = STATE(131), - [sym_footnote_reference] = STATE(137), + [sym_hard_line_break] = STATE(133), + [sym__smart_punctuation] = STATE(133), + [sym_autolink] = STATE(133), + [sym_footnote_reference] = STATE(150), [sym_footnote_marker_begin] = STATE(1121), - [sym__image] = STATE(137), - [sym_full_reference_image] = STATE(137), - [sym_collapsed_reference_image] = STATE(137), - [sym_inline_image] = STATE(137), - [sym_image_description] = STATE(649), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(137), - [sym_full_reference_link] = STATE(137), - [sym_collapsed_reference_link] = STATE(137), - [sym_inline_link] = STATE(137), - [sym_link_text] = STATE(650), - [sym_span] = STATE(552), - [sym__bracketed_text_begin] = STATE(1205), - [sym__comment_with_spaces] = STATE(131), - [sym_raw_inline] = STATE(131), - [sym_math] = STATE(131), - [sym_verbatim] = STATE(131), - [sym__todo_highlights] = STATE(131), - [sym_todo] = STATE(131), - [sym_note] = STATE(131), - [sym__symbol_fallback] = STATE(131), - [aux_sym__text] = STATE(130), - [aux_sym__inline_repeat1] = STATE(118), - [anon_sym_LBRACE_] = ACTIONS(489), - [anon_sym__] = ACTIONS(491), - [anon_sym_LBRACE_STAR] = ACTIONS(493), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_LBRACE_CARET] = ACTIONS(497), - [anon_sym_CARET] = ACTIONS(497), - [anon_sym_LBRACE_TILDE] = ACTIONS(499), - [anon_sym_TILDE] = ACTIONS(499), - [anon_sym_LBRACE_EQ] = ACTIONS(501), - [anon_sym_LBRACE_PLUS] = ACTIONS(503), - [anon_sym_LBRACE_DASH] = ACTIONS(505), - [anon_sym_BSLASH] = ACTIONS(507), - [sym_quotation_marks] = ACTIONS(509), - [sym_ellipsis] = ACTIONS(509), - [sym_em_dash] = ACTIONS(509), - [sym_en_dash] = ACTIONS(511), - [sym_backslash_escape] = ACTIONS(511), - [anon_sym_LT] = ACTIONS(513), - [sym_symbol] = ACTIONS(509), - [anon_sym_LBRACK_CARET] = ACTIONS(515), - [anon_sym_BANG_LBRACK] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(519), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_DOLLAR] = ACTIONS(523), - [anon_sym_TODO] = ACTIONS(525), - [anon_sym_WIP] = ACTIONS(525), - [anon_sym_NOTE] = ACTIONS(527), - [anon_sym_INFO] = ACTIONS(527), - [anon_sym_XXX] = ACTIONS(527), - [sym_fixme] = ACTIONS(509), - [sym__whitespace1] = ACTIONS(529), - [sym__newline] = ACTIONS(1153), - [aux_sym__text_token1] = ACTIONS(533), - [sym__verbatim_begin] = ACTIONS(535), + [sym__image] = STATE(150), + [sym_full_reference_image] = STATE(150), + [sym_collapsed_reference_image] = STATE(150), + [sym_inline_image] = STATE(150), + [sym_image_description] = STATE(678), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(150), + [sym_full_reference_link] = STATE(150), + [sym_collapsed_reference_link] = STATE(150), + [sym_inline_link] = STATE(150), + [sym_link_text] = STATE(679), + [sym_span] = STATE(576), + [sym__bracketed_text_begin] = STATE(1214), + [sym__comment_with_spaces] = STATE(133), + [sym_raw_inline] = STATE(133), + [sym_math] = STATE(133), + [sym_verbatim] = STATE(133), + [sym__todo_highlights] = STATE(133), + [sym_todo] = STATE(133), + [sym_note] = STATE(133), + [sym__symbol_fallback] = STATE(133), + [sym__newline] = STATE(120), + [aux_sym__text] = STATE(122), + [aux_sym__inline_repeat1] = STATE(120), + [anon_sym_LBRACE_] = ACTIONS(159), + [anon_sym__] = ACTIONS(161), + [anon_sym_LBRACE_STAR] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(165), + [anon_sym_LBRACE_CARET] = ACTIONS(167), + [anon_sym_CARET] = ACTIONS(167), + [anon_sym_LBRACE_TILDE] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(169), + [anon_sym_LBRACE_EQ] = ACTIONS(171), + [anon_sym_LBRACE_PLUS] = ACTIONS(173), + [anon_sym_LBRACE_DASH] = ACTIONS(175), + [anon_sym_BSLASH] = ACTIONS(177), + [sym_quotation_marks] = ACTIONS(179), + [sym_ellipsis] = ACTIONS(179), + [sym_em_dash] = ACTIONS(179), + [sym_en_dash] = ACTIONS(181), + [sym_backslash_escape] = ACTIONS(181), + [anon_sym_LT] = ACTIONS(183), + [sym_symbol] = ACTIONS(179), + [anon_sym_LBRACK_CARET] = ACTIONS(185), + [anon_sym_BANG_LBRACK] = ACTIONS(187), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(189), + [anon_sym_LBRACK] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(195), + [anon_sym_TODO] = ACTIONS(197), + [anon_sym_WIP] = ACTIONS(197), + [anon_sym_NOTE] = ACTIONS(199), + [anon_sym_INFO] = ACTIONS(199), + [anon_sym_XXX] = ACTIONS(199), + [sym_fixme] = ACTIONS(179), + [sym__whitespace1] = ACTIONS(201), + [anon_sym_LF] = ACTIONS(1125), + [aux_sym__text_token1] = ACTIONS(205), + [sym__verbatim_begin] = ACTIONS(207), }, [120] = { - [sym__element] = STATE(599), - [sym_emphasis] = STATE(149), - [sym_emphasis_begin] = STATE(1104), - [sym_strong] = STATE(149), - [sym_strong_begin] = STATE(1105), - [sym_superscript] = STATE(149), - [sym_superscript_begin] = STATE(1106), - [sym_subscript] = STATE(149), - [sym_subscript_begin] = STATE(1107), - [sym_highlighted] = STATE(149), - [sym_highlighted_begin] = STATE(1108), - [sym_insert] = STATE(149), - [sym_insert_begin] = STATE(1109), - [sym_delete] = STATE(149), - [sym_delete_begin] = STATE(1110), - [sym_hard_line_break] = STATE(143), - [sym__smart_punctuation] = STATE(143), - [sym_autolink] = STATE(143), - [sym_footnote_reference] = STATE(149), - [sym_footnote_marker_begin] = STATE(1111), - [sym__image] = STATE(149), - [sym_full_reference_image] = STATE(149), - [sym_collapsed_reference_image] = STATE(149), - [sym_inline_image] = STATE(149), - [sym_image_description] = STATE(658), - [sym__image_description_begin] = STATE(1079), - [sym__link] = STATE(149), - [sym_full_reference_link] = STATE(149), - [sym_collapsed_reference_link] = STATE(149), - [sym_inline_link] = STATE(149), + [sym__element] = STATE(120), + [sym_emphasis] = STATE(163), + [sym_emphasis_begin] = STATE(1204), + [sym_strong] = STATE(163), + [sym_strong_begin] = STATE(1205), + [sym_superscript] = STATE(163), + [sym_superscript_begin] = STATE(1206), + [sym_subscript] = STATE(163), + [sym_subscript_begin] = STATE(1207), + [sym_highlighted] = STATE(163), + [sym_highlighted_begin] = STATE(1208), + [sym_insert] = STATE(163), + [sym_insert_begin] = STATE(1209), + [sym_delete] = STATE(163), + [sym_delete_begin] = STATE(1210), + [sym_hard_line_break] = STATE(162), + [sym__smart_punctuation] = STATE(162), + [sym_autolink] = STATE(162), + [sym_footnote_reference] = STATE(163), + [sym_footnote_marker_begin] = STATE(1211), + [sym__image] = STATE(163), + [sym_full_reference_image] = STATE(163), + [sym_collapsed_reference_image] = STATE(163), + [sym_inline_image] = STATE(163), + [sym_image_description] = STATE(671), + [sym__image_description_begin] = STATE(958), + [sym__link] = STATE(163), + [sym_full_reference_link] = STATE(163), + [sym_collapsed_reference_link] = STATE(163), + [sym_inline_link] = STATE(163), [sym_link_text] = STATE(672), - [sym_span] = STATE(599), - [sym__bracketed_text_begin] = STATE(1204), - [sym__comment_with_spaces] = STATE(143), - [sym_raw_inline] = STATE(143), - [sym_math] = STATE(143), - [sym_verbatim] = STATE(143), - [sym__todo_highlights] = STATE(143), - [sym_todo] = STATE(143), - [sym_note] = STATE(143), - [sym__symbol_fallback] = STATE(143), - [aux_sym__text] = STATE(127), - [aux_sym__inline_repeat1] = STATE(118), - [anon_sym_LBRACE_] = ACTIONS(441), - [anon_sym__] = ACTIONS(443), - [anon_sym_LBRACE_STAR] = ACTIONS(445), - [anon_sym_STAR] = ACTIONS(447), - [anon_sym_LBRACE_CARET] = ACTIONS(449), - [anon_sym_CARET] = ACTIONS(449), - [anon_sym_LBRACE_TILDE] = ACTIONS(451), - [anon_sym_TILDE] = ACTIONS(451), - [anon_sym_LBRACE_EQ] = ACTIONS(453), - [anon_sym_LBRACE_PLUS] = ACTIONS(455), - [anon_sym_LBRACE_DASH] = ACTIONS(457), - [anon_sym_BSLASH] = ACTIONS(459), - [sym_quotation_marks] = ACTIONS(461), - [sym_ellipsis] = ACTIONS(461), - [sym_em_dash] = ACTIONS(461), - [sym_en_dash] = ACTIONS(463), - [sym_backslash_escape] = ACTIONS(463), - [anon_sym_LT] = ACTIONS(465), - [sym_symbol] = ACTIONS(461), - [anon_sym_LBRACK_CARET] = ACTIONS(467), - [anon_sym_BANG_LBRACK] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(471), - [anon_sym_LPAREN] = ACTIONS(473), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_TODO] = ACTIONS(477), - [anon_sym_WIP] = ACTIONS(477), - [anon_sym_NOTE] = ACTIONS(479), - [anon_sym_INFO] = ACTIONS(479), - [anon_sym_XXX] = ACTIONS(479), - [sym_fixme] = ACTIONS(461), - [sym__whitespace1] = ACTIONS(481), - [sym__newline] = ACTIONS(1153), - [aux_sym__text_token1] = ACTIONS(485), - [sym__verbatim_begin] = ACTIONS(487), + [sym_span] = STATE(120), + [sym__bracketed_text_begin] = STATE(1223), + [sym__comment_with_spaces] = STATE(162), + [sym_raw_inline] = STATE(162), + [sym_math] = STATE(162), + [sym_verbatim] = STATE(162), + [sym__todo_highlights] = STATE(162), + [sym_todo] = STATE(162), + [sym_note] = STATE(162), + [sym__symbol_fallback] = STATE(162), + [sym__newline] = STATE(120), + [aux_sym__text] = STATE(151), + [aux_sym__inline_repeat1] = STATE(120), + [anon_sym_LBRACE_] = ACTIONS(1127), + [anon_sym__] = ACTIONS(1130), + [anon_sym_LBRACE_STAR] = ACTIONS(1133), + [anon_sym_STAR] = ACTIONS(1136), + [anon_sym_LBRACE_CARET] = ACTIONS(1139), + [anon_sym_CARET] = ACTIONS(1139), + [anon_sym_LBRACE_TILDE] = ACTIONS(1142), + [anon_sym_TILDE] = ACTIONS(1142), + [anon_sym_LBRACE_EQ] = ACTIONS(1145), + [anon_sym_LBRACE_PLUS] = ACTIONS(1148), + [anon_sym_LBRACE_DASH] = ACTIONS(1151), + [anon_sym_BSLASH] = ACTIONS(1154), + [sym_quotation_marks] = ACTIONS(1157), + [sym_ellipsis] = ACTIONS(1157), + [sym_em_dash] = ACTIONS(1157), + [sym_en_dash] = ACTIONS(1160), + [sym_backslash_escape] = ACTIONS(1160), + [anon_sym_LT] = ACTIONS(1163), + [sym_symbol] = ACTIONS(1157), + [anon_sym_LBRACK_CARET] = ACTIONS(1166), + [anon_sym_BANG_LBRACK] = ACTIONS(1169), + [anon_sym_LBRACK_RBRACK2] = ACTIONS(1172), + [anon_sym_LBRACK] = ACTIONS(1175), + [anon_sym_LPAREN] = ACTIONS(1178), + [anon_sym_DOLLAR] = ACTIONS(1181), + [anon_sym_TODO] = ACTIONS(1184), + [anon_sym_WIP] = ACTIONS(1184), + [anon_sym_NOTE] = ACTIONS(1187), + [anon_sym_INFO] = ACTIONS(1187), + [anon_sym_XXX] = ACTIONS(1187), + [sym_fixme] = ACTIONS(1157), + [sym__whitespace1] = ACTIONS(1190), + [anon_sym_LF] = ACTIONS(1193), + [aux_sym__text_token1] = ACTIONS(1196), + [sym__verbatim_begin] = ACTIONS(1199), }, }; static const uint16_t ts_small_parse_table[] = { [0] = 7, - ACTIONS(1159), 1, + ACTIONS(1206), 1, + anon_sym_LBRACE, + STATE(174), 1, + aux_sym__text, + STATE(581), 1, + sym_inline_attribute, + STATE(582), 1, + sym__curly_bracket_span_fallback, + STATE(987), 1, + sym__curly_bracket_span_begin, + ACTIONS(1204), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1202), 31, + sym__verbatim_begin, + sym_superscript_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + sym__whitespace1, + anon_sym_LF, + [56] = 7, + ACTIONS(1208), 1, + anon_sym_LBRACE, + STATE(223), 1, + aux_sym__text, + STATE(586), 1, + sym_inline_attribute, + STATE(593), 1, + sym__curly_bracket_span_fallback, + STATE(954), 1, + sym__curly_bracket_span_begin, + ACTIONS(1204), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1202), 31, + sym__verbatim_begin, + sym_emphasis_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + sym__whitespace1, + anon_sym_LF, + [112] = 7, + ACTIONS(1210), 1, + anon_sym_LBRACE, + STATE(218), 1, + aux_sym__text, + STATE(544), 1, + sym__curly_bracket_span_fallback, + STATE(599), 1, + sym_inline_attribute, + STATE(1019), 1, + sym__curly_bracket_span_begin, + ACTIONS(1204), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1202), 31, + sym__verbatim_begin, + sym_highlighted_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + sym__whitespace1, + anon_sym_LF, + [168] = 7, + ACTIONS(1212), 1, + anon_sym_LBRACE, + STATE(205), 1, + aux_sym__text, + STATE(545), 1, + sym__curly_bracket_span_fallback, + STATE(583), 1, + sym_inline_attribute, + STATE(1107), 1, + sym__curly_bracket_span_begin, + ACTIONS(1204), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1202), 31, + sym__verbatim_begin, + ts_builtin_sym_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + sym__whitespace1, + anon_sym_LF, + [224] = 7, + ACTIONS(1214), 1, + anon_sym_LBRACE, + STATE(203), 1, + aux_sym__text, + STATE(550), 1, + sym__curly_bracket_span_fallback, + STATE(598), 1, + sym_inline_attribute, + STATE(1003), 1, + sym__curly_bracket_span_begin, + ACTIONS(1204), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1202), 31, + sym__verbatim_begin, + sym_subscript_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + sym__whitespace1, + anon_sym_LF, + [280] = 7, + ACTIONS(1216), 1, + anon_sym_LBRACE, + STATE(231), 1, + aux_sym__text, + STATE(526), 1, + sym__curly_bracket_span_fallback, + STATE(608), 1, + sym_inline_attribute, + STATE(1035), 1, + sym__curly_bracket_span_begin, + ACTIONS(1204), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1202), 31, + sym__verbatim_begin, + sym_insert_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + sym__whitespace1, + anon_sym_LF, + [336] = 7, + ACTIONS(1218), 1, anon_sym_LBRACE, - STATE(215), 1, + STATE(178), 1, aux_sym__text, - STATE(525), 1, + STATE(566), 1, + sym_inline_attribute, + STATE(568), 1, sym__curly_bracket_span_fallback, - STATE(526), 1, + STATE(1051), 1, + sym__curly_bracket_span_begin, + ACTIONS(1204), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1202), 31, + sym__verbatim_begin, + sym_delete_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + sym__whitespace1, + anon_sym_LF, + [392] = 7, + ACTIONS(1220), 1, + anon_sym_LBRACE, + STATE(214), 1, + aux_sym__text, + STATE(522), 1, + sym_inline_attribute, + STATE(549), 1, + sym__curly_bracket_span_fallback, + STATE(971), 1, + sym__curly_bracket_span_begin, + ACTIONS(1204), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1202), 31, + sym__verbatim_begin, + sym_strong_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + sym__whitespace1, + anon_sym_LF, + [448] = 7, + ACTIONS(1222), 1, + anon_sym_LBRACE, + STATE(190), 1, + aux_sym__text, + STATE(573), 1, sym_inline_attribute, - STATE(1057), 1, + STATE(575), 1, + sym__curly_bracket_span_fallback, + STATE(1067), 1, sym__curly_bracket_span_begin, - ACTIONS(1157), 5, + ACTIONS(1204), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1155), 30, + ACTIONS(1202), 31, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -14850,6 +15586,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, @@ -14860,27 +15597,213 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [55] = 7, - ACTIONS(1161), 1, + anon_sym_LF, + [504] = 7, + ACTIONS(1224), 1, anon_sym_LBRACE, - STATE(218), 1, + STATE(201), 1, aux_sym__text, - STATE(519), 1, + STATE(561), 1, + sym_inline_attribute, + STATE(562), 1, + sym__curly_bracket_span_fallback, + STATE(1083), 1, + sym__curly_bracket_span_begin, + ACTIONS(1204), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1202), 31, + sym__verbatim_begin, + sym__square_bracket_span_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + sym__whitespace1, + anon_sym_LF, + [560] = 5, + ACTIONS(1222), 1, + anon_sym_LBRACE, + STATE(1067), 1, + sym__curly_bracket_span_begin, + STATE(573), 2, + sym_inline_attribute, + sym__curly_bracket_span_fallback, + ACTIONS(1228), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1226), 31, + sym__verbatim_begin, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + sym__whitespace1, + anon_sym_LF, + [611] = 5, + ACTIONS(1206), 1, + anon_sym_LBRACE, + STATE(987), 1, + sym__curly_bracket_span_begin, + STATE(581), 2, + sym_inline_attribute, + sym__curly_bracket_span_fallback, + ACTIONS(1228), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1226), 31, + sym__verbatim_begin, + sym_superscript_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + sym__whitespace1, + anon_sym_LF, + [662] = 6, + ACTIONS(1208), 1, + anon_sym_LBRACE, + STATE(586), 1, sym_inline_attribute, - STATE(520), 1, + STATE(593), 1, + sym__curly_bracket_span_fallback, + STATE(954), 1, + sym__curly_bracket_span_begin, + ACTIONS(1204), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1202), 31, + sym__verbatim_begin, + sym_emphasis_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + sym__whitespace1, + anon_sym_LF, + [715] = 6, + ACTIONS(1210), 1, + anon_sym_LBRACE, + STATE(544), 1, sym__curly_bracket_span_fallback, - STATE(977), 1, + STATE(599), 1, + sym_inline_attribute, + STATE(1019), 1, sym__curly_bracket_span_begin, - ACTIONS(1157), 5, + ACTIONS(1204), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1155), 30, + ACTIONS(1202), 31, sym__verbatim_begin, - sym_superscript_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -14899,6 +15822,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -14908,27 +15832,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [110] = 7, - ACTIONS(1163), 1, + anon_sym_LF, + [768] = 5, + ACTIONS(1210), 1, anon_sym_LBRACE, - STATE(221), 1, - aux_sym__text, - STATE(523), 1, + STATE(1019), 1, + sym__curly_bracket_span_begin, + STATE(599), 2, sym_inline_attribute, - STATE(524), 1, sym__curly_bracket_span_fallback, - STATE(1073), 1, - sym__curly_bracket_span_begin, - ACTIONS(1157), 5, + ACTIONS(1228), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1155), 30, + ACTIONS(1226), 31, sym__verbatim_begin, - sym__square_bracket_span_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -14947,6 +15868,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -14956,25 +15878,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [165] = 7, - ACTIONS(1165), 1, + anon_sym_LF, + [819] = 5, + ACTIONS(1216), 1, anon_sym_LBRACE, - STATE(167), 1, - aux_sym__text, - STATE(548), 1, - sym__curly_bracket_span_fallback, - STATE(549), 1, - sym_inline_attribute, - STATE(1025), 1, + STATE(1035), 1, sym__curly_bracket_span_begin, - ACTIONS(1157), 5, + STATE(608), 2, + sym_inline_attribute, + sym__curly_bracket_span_fallback, + ACTIONS(1228), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1155), 30, + ACTIONS(1226), 31, sym__verbatim_begin, sym_insert_end, anon_sym_LBRACE_, @@ -14995,6 +15914,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -15004,27 +15924,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [220] = 7, - ACTIONS(1167), 1, + anon_sym_LF, + [870] = 6, + ACTIONS(1220), 1, anon_sym_LBRACE, - STATE(185), 1, - aux_sym__text, - STATE(521), 1, - sym_inline_attribute, STATE(522), 1, + sym_inline_attribute, + STATE(549), 1, sym__curly_bracket_span_fallback, - STATE(1065), 1, + STATE(971), 1, sym__curly_bracket_span_begin, - ACTIONS(1157), 5, + ACTIONS(1204), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1155), 30, + ACTIONS(1202), 31, sym__verbatim_begin, - ts_builtin_sym_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15043,6 +15961,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -15052,27 +15971,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [275] = 7, - ACTIONS(1169), 1, + anon_sym_LF, + [923] = 6, + ACTIONS(1216), 1, anon_sym_LBRACE, - STATE(164), 1, - aux_sym__text, - STATE(538), 1, + STATE(526), 1, sym__curly_bracket_span_fallback, - STATE(540), 1, + STATE(608), 1, sym_inline_attribute, - STATE(1041), 1, + STATE(1035), 1, sym__curly_bracket_span_begin, - ACTIONS(1157), 5, + ACTIONS(1204), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1155), 30, + ACTIONS(1202), 31, sym__verbatim_begin, - sym_delete_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15091,6 +16008,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -15100,27 +16018,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [330] = 7, - ACTIONS(1171), 1, + anon_sym_LF, + [976] = 6, + ACTIONS(1218), 1, anon_sym_LBRACE, - STATE(168), 1, - aux_sym__text, - STATE(541), 1, + STATE(566), 1, sym_inline_attribute, - STATE(542), 1, + STATE(568), 1, sym__curly_bracket_span_fallback, - STATE(944), 1, + STATE(1051), 1, sym__curly_bracket_span_begin, - ACTIONS(1157), 5, + ACTIONS(1204), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1155), 30, + ACTIONS(1202), 31, sym__verbatim_begin, - sym_emphasis_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15139,6 +16055,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -15148,27 +16065,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [385] = 7, - ACTIONS(1173), 1, + anon_sym_LF, + [1029] = 5, + ACTIONS(1218), 1, anon_sym_LBRACE, - STATE(178), 1, - aux_sym__text, - STATE(558), 1, - sym__curly_bracket_span_fallback, - STATE(562), 1, - sym_inline_attribute, - STATE(1009), 1, + STATE(1051), 1, sym__curly_bracket_span_begin, - ACTIONS(1157), 5, + STATE(566), 2, + sym_inline_attribute, + sym__curly_bracket_span_fallback, + ACTIONS(1228), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1155), 30, + ACTIONS(1226), 31, sym__verbatim_begin, - sym_highlighted_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15187,6 +16101,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -15196,25 +16111,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [440] = 7, - ACTIONS(1175), 1, + anon_sym_LF, + [1080] = 6, + ACTIONS(1214), 1, anon_sym_LBRACE, - STATE(190), 1, - aux_sym__text, - STATE(576), 1, - sym_inline_attribute, - STATE(582), 1, + STATE(550), 1, sym__curly_bracket_span_fallback, - STATE(993), 1, + STATE(598), 1, + sym_inline_attribute, + STATE(1003), 1, sym__curly_bracket_span_begin, - ACTIONS(1157), 5, + ACTIONS(1204), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1155), 30, + ACTIONS(1202), 31, sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, @@ -15235,6 +16148,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -15244,25 +16158,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [495] = 7, - ACTIONS(1177), 1, + anon_sym_LF, + [1133] = 5, + ACTIONS(1220), 1, anon_sym_LBRACE, - STATE(214), 1, - aux_sym__text, - STATE(566), 1, - sym__curly_bracket_span_fallback, - STATE(595), 1, - sym_inline_attribute, - STATE(961), 1, + STATE(971), 1, sym__curly_bracket_span_begin, - ACTIONS(1157), 5, + STATE(522), 2, + sym_inline_attribute, + sym__curly_bracket_span_fallback, + ACTIONS(1228), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1155), 30, + ACTIONS(1226), 31, sym__verbatim_begin, sym_strong_end, anon_sym_LBRACE_, @@ -15283,6 +16194,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -15292,25 +16204,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [550] = 6, - ACTIONS(1177), 1, + anon_sym_LF, + [1184] = 5, + ACTIONS(1214), 1, anon_sym_LBRACE, - STATE(566), 1, - sym__curly_bracket_span_fallback, - STATE(595), 1, - sym_inline_attribute, - STATE(961), 1, + STATE(1003), 1, sym__curly_bracket_span_begin, - ACTIONS(1157), 5, + STATE(598), 2, + sym_inline_attribute, + sym__curly_bracket_span_fallback, + ACTIONS(1228), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1155), 30, + ACTIONS(1226), 31, sym__verbatim_begin, - sym_strong_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15329,6 +16240,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -15338,24 +16250,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [602] = 5, - ACTIONS(1169), 1, + anon_sym_LF, + [1235] = 6, + ACTIONS(1212), 1, anon_sym_LBRACE, - STATE(1041), 1, - sym__curly_bracket_span_begin, - STATE(540), 2, - sym_inline_attribute, + STATE(545), 1, sym__curly_bracket_span_fallback, - ACTIONS(1181), 5, + STATE(583), 1, + sym_inline_attribute, + STATE(1107), 1, + sym__curly_bracket_span_begin, + ACTIONS(1204), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1179), 30, + ACTIONS(1202), 31, sym__verbatim_begin, - sym_delete_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15374,6 +16287,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -15383,24 +16297,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [652] = 5, - ACTIONS(1161), 1, + anon_sym_LF, + [1288] = 6, + ACTIONS(1222), 1, anon_sym_LBRACE, - STATE(977), 1, - sym__curly_bracket_span_begin, - STATE(519), 2, + STATE(573), 1, sym_inline_attribute, + STATE(575), 1, sym__curly_bracket_span_fallback, - ACTIONS(1181), 5, + STATE(1067), 1, + sym__curly_bracket_span_begin, + ACTIONS(1204), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1179), 30, + ACTIONS(1202), 31, sym__verbatim_begin, - sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15419,6 +16333,8 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -15428,25 +16344,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [702] = 6, - ACTIONS(1175), 1, + anon_sym_LF, + [1341] = 5, + ACTIONS(1212), 1, anon_sym_LBRACE, - STATE(576), 1, + STATE(1107), 1, + sym__curly_bracket_span_begin, + STATE(583), 2, sym_inline_attribute, - STATE(582), 1, sym__curly_bracket_span_fallback, - STATE(993), 1, - sym__curly_bracket_span_begin, - ACTIONS(1157), 5, + ACTIONS(1228), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1155), 30, + ACTIONS(1226), 31, sym__verbatim_begin, - sym_subscript_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15465,6 +16380,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -15474,23 +16390,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [754] = 5, - ACTIONS(1159), 1, + anon_sym_LF, + [1392] = 6, + ACTIONS(1206), 1, anon_sym_LBRACE, - STATE(1057), 1, - sym__curly_bracket_span_begin, - STATE(526), 2, + STATE(581), 1, sym_inline_attribute, + STATE(582), 1, sym__curly_bracket_span_fallback, - ACTIONS(1181), 5, + STATE(987), 1, + sym__curly_bracket_span_begin, + ACTIONS(1204), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1179), 30, + ACTIONS(1202), 31, sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15509,7 +16427,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -15519,24 +16437,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [804] = 5, - ACTIONS(1175), 1, + anon_sym_LF, + [1445] = 6, + ACTIONS(1224), 1, anon_sym_LBRACE, - STATE(993), 1, - sym__curly_bracket_span_begin, - STATE(576), 2, + STATE(561), 1, sym_inline_attribute, + STATE(562), 1, sym__curly_bracket_span_fallback, - ACTIONS(1181), 5, + STATE(1083), 1, + sym__curly_bracket_span_begin, + ACTIONS(1204), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1179), 30, + ACTIONS(1202), 31, sym__verbatim_begin, - sym_subscript_end, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15555,6 +16474,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -15564,24 +16484,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [854] = 5, - ACTIONS(1177), 1, + anon_sym_LF, + [1498] = 5, + ACTIONS(1224), 1, anon_sym_LBRACE, - STATE(961), 1, + STATE(1083), 1, sym__curly_bracket_span_begin, - STATE(595), 2, + STATE(561), 2, sym_inline_attribute, sym__curly_bracket_span_fallback, - ACTIONS(1181), 5, + ACTIONS(1228), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1179), 30, + ACTIONS(1226), 31, sym__verbatim_begin, - sym_strong_end, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15600,6 +16520,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -15609,24 +16530,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [904] = 6, - ACTIONS(1159), 1, + anon_sym_LF, + [1549] = 5, + ACTIONS(1208), 1, anon_sym_LBRACE, - STATE(525), 1, - sym__curly_bracket_span_fallback, - STATE(526), 1, - sym_inline_attribute, - STATE(1057), 1, + STATE(954), 1, sym__curly_bracket_span_begin, - ACTIONS(1157), 5, + STATE(586), 2, + sym_inline_attribute, + sym__curly_bracket_span_fallback, + ACTIONS(1228), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1155), 30, + ACTIONS(1226), 31, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15645,7 +16566,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -15655,25 +16576,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [956] = 6, - ACTIONS(1163), 1, + anon_sym_LF, + [1600] = 7, + ACTIONS(1230), 1, anon_sym_LBRACE, - STATE(523), 1, + STATE(449), 1, + aux_sym__text, + STATE(618), 1, sym_inline_attribute, - STATE(524), 1, + STATE(619), 1, sym__curly_bracket_span_fallback, - STATE(1073), 1, + STATE(1099), 1, sym__curly_bracket_span_begin, - ACTIONS(1157), 5, + ACTIONS(1204), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1155), 30, + ACTIONS(1202), 30, sym__verbatim_begin, - sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15692,6 +16614,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -15701,25 +16624,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [1008] = 6, - ACTIONS(1161), 1, - anon_sym_LBRACE, - STATE(519), 1, - sym_inline_attribute, - STATE(520), 1, - sym__curly_bracket_span_fallback, - STATE(977), 1, - sym__curly_bracket_span_begin, - ACTIONS(1157), 5, + anon_sym_LF, + [1655] = 4, + ACTIONS(1236), 1, + anon_sym_LBRACE_EQ2, + STATE(466), 1, + sym_raw_inline_attribute, + ACTIONS(1234), 7, + anon_sym_LBRACE_EQ, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1155), 30, + ACTIONS(1232), 30, sym__verbatim_begin, - sym_superscript_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15728,7 +16649,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, - anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -15738,6 +16658,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -15747,22 +16668,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [1060] = 5, - ACTIONS(1167), 1, - anon_sym_LBRACE, - STATE(1065), 1, - sym__curly_bracket_span_begin, - STATE(521), 2, - sym_inline_attribute, - sym__curly_bracket_span_fallback, - ACTIONS(1181), 5, + anon_sym_LF, + [1703] = 4, + ACTIONS(1238), 1, + anon_sym_LBRACE_EQ2, + STATE(463), 1, + sym_raw_inline_attribute, + ACTIONS(1234), 7, + anon_sym_LBRACE_EQ, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1179), 30, + ACTIONS(1232), 30, sym__verbatim_begin, ts_builtin_sym_end, anon_sym_LBRACE_, @@ -15773,7 +16693,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, - anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -15783,6 +16702,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -15792,25 +16712,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [1110] = 6, - ACTIONS(1169), 1, - anon_sym_LBRACE, - STATE(538), 1, - sym__curly_bracket_span_fallback, - STATE(540), 1, - sym_inline_attribute, - STATE(1041), 1, - sym__curly_bracket_span_begin, - ACTIONS(1157), 5, + anon_sym_LF, + [1751] = 4, + ACTIONS(1240), 1, + anon_sym_LBRACE_EQ2, + STATE(282), 1, + sym_raw_inline_attribute, + ACTIONS(1234), 7, + anon_sym_LBRACE_EQ, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1155), 30, + ACTIONS(1232), 30, sym__verbatim_begin, - sym_delete_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15819,7 +16737,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, - anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -15829,6 +16746,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -15838,25 +16756,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [1162] = 6, - ACTIONS(1171), 1, - anon_sym_LBRACE, - STATE(541), 1, - sym_inline_attribute, - STATE(542), 1, - sym__curly_bracket_span_fallback, - STATE(944), 1, - sym__curly_bracket_span_begin, - ACTIONS(1157), 5, + anon_sym_LF, + [1799] = 4, + ACTIONS(1242), 1, + anon_sym_LBRACE_EQ2, + STATE(503), 1, + sym_raw_inline_attribute, + ACTIONS(1234), 7, + anon_sym_LBRACE_EQ, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1155), 30, + ACTIONS(1232), 30, sym__verbatim_begin, - sym_emphasis_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15865,7 +16781,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, - anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -15875,6 +16790,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -15884,25 +16800,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [1214] = 6, - ACTIONS(1173), 1, - anon_sym_LBRACE, - STATE(558), 1, - sym__curly_bracket_span_fallback, - STATE(562), 1, - sym_inline_attribute, - STATE(1009), 1, - sym__curly_bracket_span_begin, - ACTIONS(1157), 5, + anon_sym_LF, + [1847] = 4, + ACTIONS(1244), 1, + anon_sym_LBRACE_EQ2, + STATE(247), 1, + sym_raw_inline_attribute, + ACTIONS(1234), 7, + anon_sym_LBRACE_EQ, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1155), 30, + ACTIONS(1232), 30, sym__verbatim_begin, - sym_highlighted_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15911,7 +16825,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, - anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -15921,6 +16834,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -15930,25 +16844,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [1266] = 6, - ACTIONS(1165), 1, - anon_sym_LBRACE, - STATE(548), 1, - sym__curly_bracket_span_fallback, - STATE(549), 1, - sym_inline_attribute, - STATE(1025), 1, - sym__curly_bracket_span_begin, - ACTIONS(1157), 5, + anon_sym_LF, + [1895] = 4, + ACTIONS(1246), 1, + anon_sym_LBRACE_EQ2, + STATE(352), 1, + sym_raw_inline_attribute, + ACTIONS(1234), 7, + anon_sym_LBRACE_EQ, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1155), 30, + ACTIONS(1232), 30, sym__verbatim_begin, - sym_insert_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -15957,7 +16869,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, - anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -15967,6 +16878,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -15976,24 +16888,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [1318] = 5, - ACTIONS(1173), 1, - anon_sym_LBRACE, - STATE(1009), 1, - sym__curly_bracket_span_begin, - STATE(562), 2, - sym_inline_attribute, - sym__curly_bracket_span_fallback, - ACTIONS(1181), 5, + anon_sym_LF, + [1943] = 4, + ACTIONS(1248), 1, + anon_sym_LBRACE_EQ2, + STATE(321), 1, + sym_raw_inline_attribute, + ACTIONS(1234), 7, + anon_sym_LBRACE_EQ, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1179), 30, + ACTIONS(1232), 30, sym__verbatim_begin, - sym_highlighted_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16002,7 +16913,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, - anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -16012,6 +16922,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -16021,24 +16932,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [1368] = 5, - ACTIONS(1165), 1, - anon_sym_LBRACE, - STATE(1025), 1, - sym__curly_bracket_span_begin, - STATE(549), 2, - sym_inline_attribute, - sym__curly_bracket_span_fallback, - ACTIONS(1181), 5, + anon_sym_LF, + [1991] = 4, + ACTIONS(1250), 1, + anon_sym_LBRACE_EQ2, + STATE(359), 1, + sym_raw_inline_attribute, + ACTIONS(1234), 7, + anon_sym_LBRACE_EQ, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1179), 30, + ACTIONS(1232), 30, sym__verbatim_begin, - sym_insert_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16047,7 +16957,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, - anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -16057,6 +16966,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -16066,24 +16976,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [1418] = 5, - ACTIONS(1163), 1, - anon_sym_LBRACE, - STATE(1073), 1, - sym__curly_bracket_span_begin, - STATE(523), 2, - sym_inline_attribute, - sym__curly_bracket_span_fallback, - ACTIONS(1181), 5, + anon_sym_LF, + [2039] = 4, + ACTIONS(1252), 1, + anon_sym_LBRACE_EQ2, + STATE(396), 1, + sym_raw_inline_attribute, + ACTIONS(1234), 7, + anon_sym_LBRACE_EQ, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1179), 30, + ACTIONS(1232), 30, sym__verbatim_begin, - sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16092,7 +17000,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, - anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -16102,6 +17009,8 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -16111,24 +17020,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [1468] = 5, - ACTIONS(1171), 1, - anon_sym_LBRACE, - STATE(944), 1, - sym__curly_bracket_span_begin, - STATE(541), 2, - sym_inline_attribute, - sym__curly_bracket_span_fallback, - ACTIONS(1181), 5, + anon_sym_LF, + [2087] = 4, + ACTIONS(1254), 1, + anon_sym_LBRACE_EQ2, + STATE(428), 1, + sym_raw_inline_attribute, + ACTIONS(1234), 7, + anon_sym_LBRACE_EQ, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1179), 30, + ACTIONS(1232), 30, sym__verbatim_begin, - sym_emphasis_end, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16137,7 +17045,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, - anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -16147,6 +17054,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -16156,25 +17064,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [1518] = 7, - ACTIONS(1183), 1, + anon_sym_LF, + [2135] = 6, + ACTIONS(1230), 1, anon_sym_LBRACE, - STATE(331), 1, - aux_sym__text, - STATE(605), 1, + STATE(618), 1, sym_inline_attribute, - STATE(606), 1, + STATE(619), 1, sym__curly_bracket_span_fallback, - STATE(1089), 1, + STATE(1099), 1, sym__curly_bracket_span_begin, - ACTIONS(1157), 5, + ACTIONS(1204), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1155), 29, + ACTIONS(1202), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -16194,6 +17100,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -16203,25 +17110,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [1572] = 6, - ACTIONS(1167), 1, + anon_sym_LF, + [2187] = 5, + ACTIONS(1230), 1, anon_sym_LBRACE, - STATE(521), 1, + STATE(1099), 1, + sym__curly_bracket_span_begin, + STATE(618), 2, sym_inline_attribute, - STATE(522), 1, sym__curly_bracket_span_fallback, - STATE(1065), 1, - sym__curly_bracket_span_begin, - ACTIONS(1157), 5, + ACTIONS(1228), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1155), 30, + ACTIONS(1226), 30, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16240,6 +17145,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -16249,23 +17155,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [1624] = 5, - ACTIONS(1183), 1, - anon_sym_LBRACE, - STATE(1089), 1, - sym__curly_bracket_span_begin, - STATE(605), 2, - sym_inline_attribute, - sym__curly_bracket_span_fallback, - ACTIONS(1181), 5, + anon_sym_LF, + [2237] = 3, + ACTIONS(1260), 1, + sym__non_whitespace_check, + ACTIONS(1258), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1179), 29, + ACTIONS(1256), 31, sym__verbatim_begin, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16284,6 +17187,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -16293,22 +17197,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [1673] = 4, - ACTIONS(1189), 1, - anon_sym_LBRACE_EQ2, - STATE(495), 1, - sym_raw_inline_attribute, - ACTIONS(1187), 7, - anon_sym_LBRACE_EQ, + anon_sym_LF, + [2282] = 3, + ACTIONS(1262), 1, + sym__non_whitespace_check, + ACTIONS(1258), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1185), 29, + ACTIONS(1256), 31, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16317,6 +17219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, + anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -16326,7 +17229,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -16336,23 +17239,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [1720] = 4, - ACTIONS(1191), 1, - anon_sym_LBRACE_EQ2, - STATE(435), 1, - sym_raw_inline_attribute, - ACTIONS(1187), 7, - anon_sym_LBRACE_EQ, + anon_sym_LF, + [2327] = 3, + ACTIONS(1264), 1, + sym__non_whitespace_check, + ACTIONS(1258), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1185), 29, + ACTIONS(1256), 31, sym__verbatim_begin, - sym__square_bracket_span_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16361,6 +17261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, + anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -16370,6 +17271,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -16379,23 +17281,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [1767] = 4, - ACTIONS(1193), 1, - anon_sym_LBRACE_EQ2, - STATE(232), 1, - sym_raw_inline_attribute, - ACTIONS(1187), 7, - anon_sym_LBRACE_EQ, + anon_sym_LF, + [2372] = 3, + ACTIONS(1266), 1, + sym__non_whitespace_check, + ACTIONS(1258), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1185), 29, + ACTIONS(1256), 31, sym__verbatim_begin, - sym_strong_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16404,6 +17303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, + anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -16413,6 +17313,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -16422,23 +17323,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [1814] = 4, - ACTIONS(1195), 1, - anon_sym_LBRACE_EQ2, - STATE(358), 1, - sym_raw_inline_attribute, - ACTIONS(1187), 7, - anon_sym_LBRACE_EQ, + anon_sym_LF, + [2417] = 3, + ACTIONS(1268), 1, + sym__non_whitespace_check, + ACTIONS(1258), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1185), 29, + ACTIONS(1256), 31, sym__verbatim_begin, - sym_highlighted_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16447,6 +17345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, + anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -16456,6 +17355,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -16465,24 +17365,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [1861] = 6, - ACTIONS(1183), 1, - anon_sym_LBRACE, - STATE(605), 1, - sym_inline_attribute, - STATE(606), 1, - sym__curly_bracket_span_fallback, - STATE(1089), 1, - sym__curly_bracket_span_begin, - ACTIONS(1157), 5, + anon_sym_LF, + [2462] = 3, + ACTIONS(1270), 1, + sym__non_whitespace_check, + ACTIONS(1258), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1155), 29, + ACTIONS(1256), 31, sym__verbatim_begin, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16501,6 +17397,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -16510,23 +17407,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [1912] = 4, - ACTIONS(1197), 1, - anon_sym_LBRACE_EQ2, - STATE(450), 1, - sym_raw_inline_attribute, - ACTIONS(1187), 7, - anon_sym_LBRACE_EQ, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE, - aux_sym__text_token1, - ACTIONS(1185), 29, + anon_sym_LF, + [2507] = 3, + ACTIONS(1272), 1, + aux_sym_autolink_token1, + ACTIONS(1256), 4, sym__verbatim_begin, sym_delete_end, + sym__whitespace1, + anon_sym_LF, + ACTIONS(1258), 33, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16535,15 +17425,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, + anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, + sym_en_dash, + sym_backslash_escape, anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, + anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -16552,24 +17449,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - sym__whitespace1, - sym__newline, - [1959] = 4, - ACTIONS(1199), 1, - anon_sym_LBRACE_EQ2, - STATE(312), 1, - sym_raw_inline_attribute, - ACTIONS(1187), 7, - anon_sym_LBRACE_EQ, + aux_sym__text_token1, + [2552] = 5, + ACTIONS(1274), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(1276), 1, + anon_sym_LBRACK, + ACTIONS(1279), 1, + anon_sym_LPAREN, + ACTIONS(1258), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1185), 29, + ACTIONS(1256), 29, sym__verbatim_begin, - sym_subscript_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16578,6 +17475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, + anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -16587,7 +17485,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -16596,23 +17493,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [2006] = 4, - ACTIONS(1201), 1, - anon_sym_LBRACE_EQ2, - STATE(266), 1, - sym_raw_inline_attribute, - ACTIONS(1187), 7, - anon_sym_LBRACE_EQ, + anon_sym_LF, + [2601] = 4, + ACTIONS(1286), 1, + anon_sym_LBRACE, + STATE(386), 1, + sym_comment, + ACTIONS(1284), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1185), 29, + ACTIONS(1282), 31, sym__verbatim_begin, - sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16621,6 +17515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, + anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -16630,6 +17525,8 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -16639,23 +17536,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [2053] = 4, - ACTIONS(1203), 1, - anon_sym_LBRACE_EQ2, - STATE(404), 1, - sym_raw_inline_attribute, - ACTIONS(1187), 7, - anon_sym_LBRACE_EQ, + anon_sym_LF, + [2648] = 3, + ACTIONS(1292), 1, + anon_sym_GT, + ACTIONS(1290), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1185), 29, + ACTIONS(1288), 31, sym__verbatim_begin, - sym_insert_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16664,6 +17558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, + anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -16673,6 +17568,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -16682,23 +17578,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [2100] = 4, - ACTIONS(1205), 1, - anon_sym_LBRACE_EQ2, - STATE(383), 1, - sym_raw_inline_attribute, - ACTIONS(1187), 7, - anon_sym_LBRACE_EQ, + anon_sym_LF, + [2693] = 4, + ACTIONS(1298), 1, + aux_sym__text_token1, + STATE(174), 1, + aux_sym__text, + ACTIONS(1296), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, - aux_sym__text_token1, - ACTIONS(1185), 29, + ACTIONS(1294), 31, sym__verbatim_begin, - sym_emphasis_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16707,6 +17601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, + anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -16716,6 +17611,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -16725,23 +17621,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [2147] = 4, - ACTIONS(1207), 1, - anon_sym_LBRACE_EQ2, - STATE(307), 1, - sym_raw_inline_attribute, - ACTIONS(1187), 7, - anon_sym_LBRACE_EQ, + anon_sym_LF, + [2740] = 3, + ACTIONS(1301), 1, + sym__non_whitespace_check, + ACTIONS(1258), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1185), 29, + ACTIONS(1256), 31, sym__verbatim_begin, - ts_builtin_sym_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16750,6 +17643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, + anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -16759,6 +17653,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -16768,19 +17663,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [2194] = 4, - ACTIONS(1213), 1, - aux_sym__text_token1, - STATE(164), 1, - aux_sym__text, - ACTIONS(1211), 5, + anon_sym_LF, + [2785] = 3, + ACTIONS(1303), 1, + anon_sym_GT, + ACTIONS(1290), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(1209), 30, + aux_sym__text_token1, + ACTIONS(1288), 31, sym__verbatim_begin, sym_delete_end, anon_sym_LBRACE_, @@ -16801,6 +17695,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -16810,20 +17705,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [2240] = 3, - ACTIONS(1220), 1, - sym__non_whitespace_check, - ACTIONS(1218), 6, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE, - aux_sym__text_token1, - ACTIONS(1216), 30, + anon_sym_LF, + [2830] = 3, + ACTIONS(1305), 1, + aux_sym_autolink_token1, + ACTIONS(1256), 4, sym__verbatim_begin, - sym_emphasis_end, + ts_builtin_sym_end, + sym__whitespace1, + anon_sym_LF, + ACTIONS(1258), 33, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16835,13 +17726,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, + sym_en_dash, + sym_backslash_escape, anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, + anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -16850,21 +17747,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - sym__whitespace1, - sym__newline, - [2284] = 3, - ACTIONS(1226), 1, - anon_sym_GT, - ACTIONS(1224), 6, + aux_sym__text_token1, + [2875] = 4, + ACTIONS(1307), 1, + aux_sym__text_token1, + STATE(178), 1, + aux_sym__text, + ACTIONS(1296), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, - aux_sym__text_token1, - ACTIONS(1222), 30, + ACTIONS(1294), 31, sym__verbatim_begin, - ts_builtin_sym_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16883,6 +17780,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -16892,21 +17790,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [2328] = 4, - ACTIONS(1228), 1, - aux_sym__text_token1, - STATE(167), 1, - aux_sym__text, - ACTIONS(1211), 5, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE, - ACTIONS(1209), 30, + anon_sym_LF, + [2922] = 3, + ACTIONS(1310), 1, + aux_sym_autolink_token1, + ACTIONS(1256), 4, sym__verbatim_begin, - sym_insert_end, + sym_emphasis_end, + sym__whitespace1, + anon_sym_LF, + ACTIONS(1258), 33, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16918,13 +17811,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, + sym_en_dash, + sym_backslash_escape, anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, + anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -16933,22 +17832,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - sym__whitespace1, - sym__newline, - [2374] = 4, - ACTIONS(1231), 1, aux_sym__text_token1, - STATE(168), 1, - aux_sym__text, - ACTIONS(1211), 5, + [2967] = 3, + ACTIONS(1312), 1, + sym__non_whitespace_check, + ACTIONS(1258), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(1209), 30, + aux_sym__text_token1, + ACTIONS(1256), 31, sym__verbatim_begin, - sym_emphasis_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -16967,6 +17864,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -16976,20 +17874,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [2420] = 3, - ACTIONS(1234), 1, - anon_sym_GT, - ACTIONS(1224), 6, + anon_sym_LF, + [3012] = 3, + ACTIONS(1314), 1, + sym__non_whitespace_check, + ACTIONS(1258), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1222), 30, + ACTIONS(1256), 31, sym__verbatim_begin, - sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17008,6 +17905,8 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -17017,20 +17916,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [2464] = 3, - ACTIONS(1236), 1, + anon_sym_LF, + [3057] = 3, + ACTIONS(1316), 1, sym__non_whitespace_check, - ACTIONS(1218), 6, + ACTIONS(1258), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1216), 30, + ACTIONS(1256), 31, sym__verbatim_begin, - sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17049,6 +17947,8 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -17058,20 +17958,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [2508] = 3, - ACTIONS(1238), 1, - anon_sym_GT, - ACTIONS(1224), 6, + anon_sym_LF, + [3102] = 3, + ACTIONS(1318), 1, + sym__non_whitespace_check, + ACTIONS(1258), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1222), 30, + ACTIONS(1256), 31, sym__verbatim_begin, - sym__square_bracket_span_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17090,6 +17990,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -17099,16 +18000,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [2552] = 3, - ACTIONS(1240), 1, + anon_sym_LF, + [3147] = 3, + ACTIONS(1320), 1, aux_sym_autolink_token1, - ACTIONS(1216), 4, + ACTIONS(1256), 3, sym__verbatim_begin, - sym_insert_end, sym__whitespace1, - sym__newline, - ACTIONS(1218), 32, + anon_sym_LF, + ACTIONS(1258), 34, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17130,8 +18030,10 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -17141,20 +18043,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, aux_sym__text_token1, - [2596] = 4, - ACTIONS(1246), 1, - anon_sym_LBRACE, - STATE(437), 1, - sym_comment, - ACTIONS(1244), 5, + [3192] = 5, + ACTIONS(1274), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(1276), 1, + anon_sym_LBRACK, + ACTIONS(1279), 1, + anon_sym_LPAREN, + ACTIONS(1258), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACK, + anon_sym_LBRACK_RBRACK2, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1242), 30, + ACTIONS(1256), 29, sym__verbatim_begin, - sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17173,7 +18077,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LPAREN, + anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -17182,20 +18086,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [2642] = 3, - ACTIONS(1248), 1, - sym__non_whitespace_check, - ACTIONS(1218), 6, + anon_sym_LF, + [3241] = 4, + ACTIONS(1322), 1, + anon_sym_LBRACE, + STATE(418), 1, + sym_comment, + ACTIONS(1284), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1216), 30, + ACTIONS(1282), 31, sym__verbatim_begin, - sym_insert_end, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17214,6 +18119,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -17223,20 +18129,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [2686] = 3, - ACTIONS(1250), 1, - sym__non_whitespace_check, - ACTIONS(1218), 6, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE, - aux_sym__text_token1, - ACTIONS(1216), 30, + anon_sym_LF, + [3288] = 3, + ACTIONS(1324), 1, + aux_sym_autolink_token1, + ACTIONS(1256), 4, sym__verbatim_begin, - sym_insert_end, + sym_strong_end, + sym__whitespace1, + anon_sym_LF, + ACTIONS(1258), 33, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17248,32 +18150,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, + sym_en_dash, + sym_backslash_escape, anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, + anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, anon_sym_NOTE, anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - sym__whitespace1, - sym__newline, - [2730] = 3, - ACTIONS(1252), 1, + anon_sym_XXX, + sym_fixme, + aux_sym__text_token1, + [3333] = 3, + ACTIONS(1326), 1, aux_sym_autolink_token1, - ACTIONS(1216), 4, + ACTIONS(1256), 4, sym__verbatim_begin, - sym_delete_end, + sym_subscript_end, sym__whitespace1, - sym__newline, - ACTIONS(1218), 32, + anon_sym_LF, + ACTIONS(1258), 33, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17295,6 +18202,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_LPAREN, @@ -17306,19 +18214,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, aux_sym__text_token1, - [2774] = 3, - ACTIONS(1254), 1, + [3378] = 3, + ACTIONS(1328), 1, anon_sym_GT, - ACTIONS(1224), 6, + ACTIONS(1290), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1222), 30, + ACTIONS(1288), 31, sym__verbatim_begin, - sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17337,6 +18244,8 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -17346,21 +18255,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [2818] = 4, - ACTIONS(1256), 1, + anon_sym_LF, + [3423] = 4, + ACTIONS(1330), 1, aux_sym__text_token1, - STATE(178), 1, + STATE(190), 1, aux_sym__text, - ACTIONS(1211), 5, + ACTIONS(1296), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(1209), 30, + ACTIONS(1294), 31, sym__verbatim_begin, - sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17379,6 +18287,8 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -17388,20 +18298,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [2864] = 3, - ACTIONS(1259), 1, - anon_sym_GT, - ACTIONS(1224), 6, + anon_sym_LF, + [3470] = 5, + ACTIONS(1274), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(1276), 1, + anon_sym_LBRACK, + ACTIONS(1279), 1, + anon_sym_LPAREN, + ACTIONS(1258), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1222), 30, + ACTIONS(1256), 29, sym__verbatim_begin, - sym_highlighted_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17420,7 +18334,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -17429,22 +18342,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [2908] = 4, - ACTIONS(1261), 1, - anon_sym_LBRACE_EQ2, - STATE(581), 1, - sym_raw_inline_attribute, - ACTIONS(1187), 7, - anon_sym_LBRACE_EQ, + anon_sym_LF, + [3519] = 4, + ACTIONS(1333), 1, + anon_sym_LBRACE, + STATE(270), 1, + sym_comment, + ACTIONS(1284), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1185), 28, + ACTIONS(1282), 31, sym__verbatim_begin, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17453,6 +18365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, + anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -17462,6 +18375,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -17471,20 +18385,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [2954] = 4, - ACTIONS(1263), 1, - anon_sym_LBRACE, - STATE(482), 1, - sym_comment, - ACTIONS(1244), 5, + anon_sym_LF, + [3566] = 3, + ACTIONS(1335), 1, + sym__non_whitespace_check, + ACTIONS(1258), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1242), 30, + ACTIONS(1256), 31, sym__verbatim_begin, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17503,7 +18417,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -17513,20 +18427,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [3000] = 3, - ACTIONS(1265), 1, - anon_sym_GT, - ACTIONS(1224), 6, + anon_sym_LF, + [3611] = 3, + ACTIONS(1337), 1, + sym__non_whitespace_check, + ACTIONS(1258), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1222), 30, + ACTIONS(1256), 31, sym__verbatim_begin, - sym_delete_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17545,6 +18459,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -17554,21 +18469,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [3044] = 4, - ACTIONS(1267), 1, - anon_sym_LBRACE, - STATE(391), 1, - sym_comment, - ACTIONS(1244), 5, + anon_sym_LF, + [3656] = 5, + ACTIONS(1274), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(1276), 1, + anon_sym_LBRACK, + ACTIONS(1279), 1, + anon_sym_LPAREN, + ACTIONS(1258), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACK, + anon_sym_LBRACK_RBRACK2, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1242), 30, + ACTIONS(1256), 29, sym__verbatim_begin, - sym_insert_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17587,7 +18505,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -17596,16 +18513,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [3090] = 3, - ACTIONS(1269), 1, + anon_sym_LF, + [3705] = 3, + ACTIONS(1339), 1, aux_sym_autolink_token1, - ACTIONS(1216), 4, + ACTIONS(1256), 4, sym__verbatim_begin, - sym_highlighted_end, + sym__square_bracket_span_end, sym__whitespace1, - sym__newline, - ACTIONS(1218), 32, + anon_sym_LF, + ACTIONS(1258), 33, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17627,6 +18544,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_LPAREN, @@ -17638,20 +18556,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, aux_sym__text_token1, - [3134] = 4, - ACTIONS(1271), 1, - aux_sym__text_token1, - STATE(185), 1, - aux_sym__text, - ACTIONS(1211), 5, + [3750] = 5, + ACTIONS(1274), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(1276), 1, + anon_sym_LBRACK, + ACTIONS(1279), 1, + anon_sym_LPAREN, + ACTIONS(1258), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LBRACE, - ACTIONS(1209), 30, + aux_sym__text_token1, + ACTIONS(1256), 29, sym__verbatim_begin, - ts_builtin_sym_end, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17670,7 +18591,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -17679,20 +18599,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [3180] = 3, - ACTIONS(1274), 1, - sym__non_whitespace_check, - ACTIONS(1218), 6, + anon_sym_LF, + [3799] = 4, + ACTIONS(1341), 1, + anon_sym_LBRACE, + STATE(491), 1, + sym_comment, + ACTIONS(1284), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1216), 30, + ACTIONS(1282), 31, sym__verbatim_begin, - sym_highlighted_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17711,6 +18632,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -17720,20 +18642,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [3224] = 3, + anon_sym_LF, + [3846] = 5, + ACTIONS(1274), 1, + anon_sym_LBRACK_RBRACK, ACTIONS(1276), 1, - sym__non_whitespace_check, - ACTIONS(1218), 6, + anon_sym_LBRACK, + ACTIONS(1279), 1, + anon_sym_LPAREN, + ACTIONS(1258), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1216), 30, + ACTIONS(1256), 29, sym__verbatim_begin, - sym_highlighted_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17752,7 +18678,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -17761,61 +18686,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [3268] = 3, - ACTIONS(1278), 1, - aux_sym_autolink_token1, - ACTIONS(1216), 4, - sym__verbatim_begin, - sym_emphasis_end, - sym__whitespace1, - sym__newline, - ACTIONS(1218), 32, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - anon_sym_BSLASH, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - sym_en_dash, - sym_backslash_escape, - anon_sym_LT, - sym_symbol, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_LBRACK, + anon_sym_LF, + [3895] = 4, + ACTIONS(1343), 1, anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - aux_sym__text_token1, - [3312] = 3, - ACTIONS(1280), 1, - sym__non_whitespace_check, - ACTIONS(1218), 6, + STATE(343), 1, + sym_comment, + ACTIONS(1284), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1216), 30, + ACTIONS(1282), 31, sym__verbatim_begin, - sym_emphasis_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17834,6 +18719,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -17843,21 +18729,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [3356] = 4, - ACTIONS(1282), 1, + anon_sym_LF, + [3942] = 4, + ACTIONS(1345), 1, aux_sym__text_token1, - STATE(190), 1, + STATE(201), 1, aux_sym__text, - ACTIONS(1211), 5, + ACTIONS(1296), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(1209), 30, + ACTIONS(1294), 31, sym__verbatim_begin, - sym_subscript_end, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17876,6 +18762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -17885,20 +18772,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [3402] = 3, - ACTIONS(1285), 1, - sym__non_whitespace_check, - ACTIONS(1218), 6, + anon_sym_LF, + [3989] = 3, + ACTIONS(1348), 1, + anon_sym_GT, + ACTIONS(1290), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1216), 30, + ACTIONS(1288), 31, sym__verbatim_begin, - sym_strong_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17917,6 +18804,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -17926,20 +18814,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [3446] = 3, - ACTIONS(1287), 1, - sym__non_whitespace_check, - ACTIONS(1218), 6, + anon_sym_LF, + [4034] = 4, + ACTIONS(1350), 1, + aux_sym__text_token1, + STATE(203), 1, + aux_sym__text, + ACTIONS(1296), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, - aux_sym__text_token1, - ACTIONS(1216), 30, + ACTIONS(1294), 31, sym__verbatim_begin, - sym_strong_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17958,6 +18847,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -17967,20 +18857,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [3490] = 3, - ACTIONS(1289), 1, - sym__non_whitespace_check, - ACTIONS(1218), 6, + anon_sym_LF, + [4081] = 3, + ACTIONS(1353), 1, + anon_sym_GT, + ACTIONS(1290), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1216), 30, + ACTIONS(1288), 31, sym__verbatim_begin, - sym_delete_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -17999,6 +18889,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -18008,16 +18899,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [3534] = 3, - ACTIONS(1291), 1, - aux_sym_autolink_token1, - ACTIONS(1216), 4, + anon_sym_LF, + [4126] = 4, + ACTIONS(1355), 1, + aux_sym__text_token1, + STATE(205), 1, + aux_sym__text, + ACTIONS(1296), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE, + ACTIONS(1294), 31, sym__verbatim_begin, - sym_strong_end, - sym__whitespace1, - sym__newline, - ACTIONS(1218), 32, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18029,18 +18925,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, - sym_en_dash, - sym_backslash_escape, anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -18049,20 +18941,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - aux_sym__text_token1, - [3578] = 3, - ACTIONS(1293), 1, - anon_sym_GT, - ACTIONS(1224), 6, + sym__whitespace1, + anon_sym_LF, + [4173] = 4, + ACTIONS(1358), 1, + anon_sym_LBRACE_EQ2, + STATE(613), 1, + sym_raw_inline_attribute, + ACTIONS(1234), 7, + anon_sym_LBRACE_EQ, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1222), 30, + ACTIONS(1232), 29, sym__verbatim_begin, - sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18071,7 +18966,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LBRACE_TILDE, anon_sym_TILDE, - anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, sym_quotation_marks, @@ -18081,6 +18975,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -18090,19 +18985,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [3622] = 4, - ACTIONS(1295), 1, - anon_sym_LBRACE, - STATE(264), 1, - sym_comment, - ACTIONS(1244), 5, + anon_sym_LF, + [4220] = 5, + ACTIONS(1274), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(1276), 1, + anon_sym_LBRACK, + ACTIONS(1279), 1, + anon_sym_LPAREN, + ACTIONS(1258), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACK, + anon_sym_LBRACK_RBRACK2, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1242), 30, + ACTIONS(1256), 29, sym__verbatim_begin, ts_builtin_sym_end, anon_sym_LBRACE_, @@ -18123,7 +19021,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -18132,19 +19029,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [3668] = 3, - ACTIONS(1297), 1, + anon_sym_LF, + [4269] = 3, + ACTIONS(1360), 1, sym__non_whitespace_check, - ACTIONS(1218), 6, + ACTIONS(1258), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1216), 30, + ACTIONS(1256), 31, sym__verbatim_begin, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18163,7 +19061,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -18173,21 +19071,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [3712] = 4, - ACTIONS(1299), 1, - anon_sym_LBRACE, - STATE(256), 1, - sym_comment, - ACTIONS(1244), 5, + anon_sym_LF, + [4314] = 3, + ACTIONS(1362), 1, + sym__non_whitespace_check, + ACTIONS(1258), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1242), 30, + ACTIONS(1256), 31, sym__verbatim_begin, - sym_superscript_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18206,6 +19103,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -18215,19 +19113,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [3758] = 3, - ACTIONS(1301), 1, - sym__non_whitespace_check, - ACTIONS(1218), 6, + anon_sym_LF, + [4359] = 3, + ACTIONS(1364), 1, + anon_sym_GT, + ACTIONS(1290), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1216), 30, + ACTIONS(1288), 31, sym__verbatim_begin, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18246,7 +19145,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -18256,15 +19155,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [3802] = 3, - ACTIONS(1303), 1, + anon_sym_LF, + [4404] = 3, + ACTIONS(1366), 1, aux_sym_autolink_token1, - ACTIONS(1216), 3, + ACTIONS(1256), 4, sym__verbatim_begin, + sym_highlighted_end, sym__whitespace1, - sym__newline, - ACTIONS(1218), 33, + anon_sym_LF, + ACTIONS(1258), 33, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18286,9 +19186,9 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -18298,15 +19198,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, aux_sym__text_token1, - [3846] = 3, - ACTIONS(1305), 1, - aux_sym_autolink_token1, - ACTIONS(1216), 4, + [4449] = 5, + ACTIONS(1274), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(1276), 1, + anon_sym_LBRACK, + ACTIONS(1279), 1, + anon_sym_LPAREN, + ACTIONS(1258), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK_RBRACK2, + anon_sym_LBRACE, + aux_sym__text_token1, + ACTIONS(1256), 29, sym__verbatim_begin, - ts_builtin_sym_end, - sym__whitespace1, - sym__newline, - ACTIONS(1218), 32, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18318,19 +19226,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, - sym_en_dash, - sym_backslash_escape, anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -18338,20 +19240,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - aux_sym__text_token1, - [3890] = 3, - ACTIONS(1307), 1, - sym__non_whitespace_check, - ACTIONS(1218), 6, + sym__whitespace1, + anon_sym_LF, + [4498] = 4, + ACTIONS(1368), 1, + anon_sym_LBRACE, + STATE(309), 1, + sym_comment, + ACTIONS(1284), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1216), 30, + ACTIONS(1282), 31, sym__verbatim_begin, - ts_builtin_sym_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18370,6 +19274,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -18378,22 +19283,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - sym__whitespace1, - sym__newline, - [3934] = 4, - ACTIONS(1309), 1, - anon_sym_LBRACE, - STATE(345), 1, - sym_comment, - ACTIONS(1244), 5, + sym__whitespace1, + anon_sym_LF, + [4545] = 4, + ACTIONS(1370), 1, + aux_sym__text_token1, + STATE(214), 1, + aux_sym__text, + ACTIONS(1296), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - aux_sym__text_token1, - ACTIONS(1242), 30, + anon_sym_LBRACE, + ACTIONS(1294), 31, sym__verbatim_begin, - sym_highlighted_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18412,6 +19317,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -18421,16 +19327,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [3980] = 3, - ACTIONS(1311), 1, - aux_sym_autolink_token1, - ACTIONS(1216), 4, + anon_sym_LF, + [4592] = 3, + ACTIONS(1373), 1, + sym__non_whitespace_check, + ACTIONS(1258), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE, + aux_sym__text_token1, + ACTIONS(1256), 31, sym__verbatim_begin, - sym_subscript_end, - sym__whitespace1, - sym__newline, - ACTIONS(1218), 32, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18442,18 +19352,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, - sym_en_dash, - sym_backslash_escape, anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -18462,21 +19368,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - aux_sym__text_token1, - [4024] = 4, - ACTIONS(1313), 1, - anon_sym_LBRACE, - STATE(479), 1, - sym_comment, - ACTIONS(1244), 5, + sym__whitespace1, + anon_sym_LF, + [4637] = 3, + ACTIONS(1375), 1, + anon_sym_GT, + ACTIONS(1290), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1242), 30, + ACTIONS(1288), 31, sym__verbatim_begin, - sym__square_bracket_span_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18495,6 +19401,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -18504,20 +19411,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [4070] = 3, - ACTIONS(1315), 1, + anon_sym_LF, + [4682] = 3, + ACTIONS(1377), 1, anon_sym_GT, - ACTIONS(1224), 6, + ACTIONS(1290), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1222), 30, + ACTIONS(1288), 31, sym__verbatim_begin, - sym_strong_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18536,6 +19443,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -18545,20 +19453,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [4114] = 3, - ACTIONS(1317), 1, - sym__non_whitespace_check, - ACTIONS(1218), 6, + anon_sym_LF, + [4727] = 4, + ACTIONS(1379), 1, + aux_sym__text_token1, + STATE(218), 1, + aux_sym__text, + ACTIONS(1296), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, - aux_sym__text_token1, - ACTIONS(1216), 30, + ACTIONS(1294), 31, sym__verbatim_begin, - sym_subscript_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18577,6 +19486,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -18586,20 +19496,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [4158] = 3, - ACTIONS(1319), 1, + anon_sym_LF, + [4774] = 3, + ACTIONS(1382), 1, sym__non_whitespace_check, - ACTIONS(1218), 6, + ACTIONS(1258), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1216), 30, + ACTIONS(1256), 31, sym__verbatim_begin, - sym_subscript_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18618,6 +19528,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -18627,18 +19538,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [4202] = 3, - ACTIONS(1321), 1, - anon_sym_GT, - ACTIONS(1224), 6, + anon_sym_LF, + [4819] = 3, + ACTIONS(1384), 1, + sym__non_whitespace_check, + ACTIONS(1258), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1222), 30, + ACTIONS(1256), 31, sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, @@ -18659,6 +19570,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -18668,20 +19580,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [4246] = 3, - ACTIONS(1323), 1, + anon_sym_LF, + [4864] = 3, + ACTIONS(1386), 1, sym__non_whitespace_check, - ACTIONS(1218), 6, + ACTIONS(1258), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1216), 30, + ACTIONS(1256), 31, sym__verbatim_begin, - sym_superscript_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18700,6 +19612,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -18709,20 +19622,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [4290] = 3, - ACTIONS(1325), 1, + anon_sym_LF, + [4909] = 3, + ACTIONS(1388), 1, sym__non_whitespace_check, - ACTIONS(1218), 6, + ACTIONS(1258), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1216), 30, + ACTIONS(1256), 31, sym__verbatim_begin, - sym_superscript_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18741,6 +19654,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -18750,19 +19664,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [4334] = 3, - ACTIONS(1327), 1, - anon_sym_GT, - ACTIONS(1224), 6, + anon_sym_LF, + [4954] = 4, + ACTIONS(1390), 1, + aux_sym__text_token1, + STATE(223), 1, + aux_sym__text, + ACTIONS(1296), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, - aux_sym__text_token1, - ACTIONS(1222), 30, + ACTIONS(1294), 31, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18781,7 +19697,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -18791,16 +19707,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [4378] = 3, - ACTIONS(1329), 1, + anon_sym_LF, + [5001] = 3, + ACTIONS(1393), 1, aux_sym_autolink_token1, - ACTIONS(1216), 4, + ACTIONS(1256), 4, sym__verbatim_begin, - sym_superscript_end, + sym_insert_end, sym__whitespace1, - sym__newline, - ACTIONS(1218), 32, + anon_sym_LF, + ACTIONS(1258), 33, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18822,6 +19738,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_LPAREN, @@ -18833,20 +19750,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, aux_sym__text_token1, - [4422] = 4, - ACTIONS(1331), 1, - aux_sym__text_token1, - STATE(214), 1, - aux_sym__text, - ACTIONS(1211), 5, + [5046] = 5, + ACTIONS(1274), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(1276), 1, + anon_sym_LBRACK, + ACTIONS(1279), 1, + anon_sym_LPAREN, + ACTIONS(1258), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LBRACE, - ACTIONS(1209), 30, + aux_sym__text_token1, + ACTIONS(1256), 29, sym__verbatim_begin, - sym_strong_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18865,7 +19785,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -18874,20 +19793,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [4468] = 4, - ACTIONS(1334), 1, - aux_sym__text_token1, - STATE(215), 1, - aux_sym__text, - ACTIONS(1211), 5, + anon_sym_LF, + [5095] = 4, + ACTIONS(1395), 1, + anon_sym_LBRACE, + STATE(348), 1, + sym_comment, + ACTIONS(1284), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, - ACTIONS(1209), 30, + aux_sym__text_token1, + ACTIONS(1282), 31, sym__verbatim_begin, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18906,7 +19826,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -18916,20 +19836,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [4514] = 3, - ACTIONS(1337), 1, - sym__non_whitespace_check, - ACTIONS(1218), 6, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE, - aux_sym__text_token1, - ACTIONS(1216), 30, + anon_sym_LF, + [5142] = 3, + ACTIONS(1397), 1, + aux_sym_autolink_token1, + ACTIONS(1256), 4, sym__verbatim_begin, - sym__square_bracket_span_end, + sym_superscript_end, + sym__whitespace1, + anon_sym_LF, + ACTIONS(1258), 33, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18941,13 +19857,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, + sym_en_dash, + sym_backslash_escape, anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, + anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -18956,21 +19878,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - sym__whitespace1, - sym__newline, - [4558] = 3, - ACTIONS(1339), 1, - sym__non_whitespace_check, - ACTIONS(1218), 6, + aux_sym__text_token1, + [5187] = 5, + ACTIONS(1274), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(1276), 1, + anon_sym_LBRACK, + ACTIONS(1279), 1, + anon_sym_LPAREN, + ACTIONS(1258), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1216), 30, + ACTIONS(1256), 29, sym__verbatim_begin, - sym__square_bracket_span_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -18989,7 +19914,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -18998,21 +19922,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [4602] = 4, - ACTIONS(1341), 1, - aux_sym__text_token1, - STATE(218), 1, - aux_sym__text, - ACTIONS(1211), 5, + anon_sym_LF, + [5236] = 4, + ACTIONS(1399), 1, + anon_sym_LBRACE, + STATE(237), 1, + sym_comment, + ACTIONS(1284), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, - ACTIONS(1209), 30, + aux_sym__text_token1, + ACTIONS(1282), 31, sym__verbatim_begin, - sym_superscript_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19031,6 +19955,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -19040,20 +19965,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [4648] = 3, - ACTIONS(1344), 1, - sym__non_whitespace_check, - ACTIONS(1218), 6, + anon_sym_LF, + [5283] = 3, + ACTIONS(1401), 1, + anon_sym_GT, + ACTIONS(1290), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1216), 30, + ACTIONS(1288), 31, sym__verbatim_begin, - ts_builtin_sym_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19072,6 +19997,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -19081,21 +20007,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [4692] = 4, - ACTIONS(1346), 1, - anon_sym_LBRACE, - STATE(299), 1, - sym_comment, - ACTIONS(1244), 5, + anon_sym_LF, + [5328] = 4, + ACTIONS(1403), 1, + aux_sym__text_token1, + STATE(231), 1, + aux_sym__text, + ACTIONS(1296), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - aux_sym__text_token1, - ACTIONS(1242), 30, + anon_sym_LBRACE, + ACTIONS(1294), 31, sym__verbatim_begin, - sym_subscript_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19114,6 +20040,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -19123,19 +20050,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [4738] = 4, - ACTIONS(1348), 1, - aux_sym__text_token1, - STATE(221), 1, - aux_sym__text, - ACTIONS(1211), 5, + anon_sym_LF, + [5375] = 3, + ACTIONS(1406), 1, + anon_sym_GT, + ACTIONS(1290), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(1209), 30, + aux_sym__text_token1, + ACTIONS(1288), 31, sym__verbatim_begin, sym__square_bracket_span_end, anon_sym_LBRACE_, @@ -19156,6 +20082,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -19165,16 +20092,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [4784] = 3, - ACTIONS(1351), 1, - aux_sym_autolink_token1, - ACTIONS(1216), 4, + anon_sym_LF, + [5420] = 2, + ACTIONS(1410), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE, + aux_sym__text_token1, + ACTIONS(1408), 31, sym__verbatim_begin, - sym__square_bracket_span_end, - sym__whitespace1, - sym__newline, - ACTIONS(1218), 32, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19186,18 +20115,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, - sym_en_dash, - sym_backslash_escape, anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -19206,18 +20131,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - aux_sym__text_token1, - [4828] = 2, - ACTIONS(1224), 6, + sym__whitespace1, + anon_sym_LF, + [5462] = 2, + ACTIONS(1414), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1222), 30, + ACTIONS(1412), 31, sym__verbatim_begin, - sym_highlighted_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19236,6 +20162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -19245,18 +20172,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [4869] = 2, - ACTIONS(1355), 6, + anon_sym_LF, + [5504] = 2, + ACTIONS(1290), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1353), 30, + ACTIONS(1288), 31, sym__verbatim_begin, - sym_delete_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19275,6 +20202,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -19284,18 +20212,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [4910] = 2, - ACTIONS(1359), 6, + anon_sym_LF, + [5546] = 2, + ACTIONS(1418), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1357), 30, + ACTIONS(1416), 31, sym__verbatim_begin, - sym_strong_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19314,6 +20242,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -19323,18 +20252,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [4951] = 2, - ACTIONS(1363), 6, + anon_sym_LF, + [5588] = 2, + ACTIONS(1422), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1361), 30, + ACTIONS(1420), 31, sym__verbatim_begin, - sym_strong_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19353,6 +20282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -19362,18 +20292,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [4992] = 2, - ACTIONS(1367), 6, + anon_sym_LF, + [5630] = 2, + ACTIONS(1426), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1365), 30, + ACTIONS(1424), 31, sym__verbatim_begin, - sym_strong_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19392,6 +20322,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -19401,18 +20332,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [5033] = 2, - ACTIONS(1371), 6, + anon_sym_LF, + [5672] = 2, + ACTIONS(1430), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1369), 30, + ACTIONS(1428), 31, sym__verbatim_begin, - sym_strong_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19431,6 +20362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -19440,18 +20372,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [5074] = 2, - ACTIONS(1375), 6, + anon_sym_LF, + [5714] = 2, + ACTIONS(1434), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1373), 30, + ACTIONS(1432), 31, sym__verbatim_begin, - sym_strong_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19470,6 +20402,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -19479,20 +20412,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [5115] = 4, - ACTIONS(1377), 1, - anon_sym_LBRACE, - STATE(569), 1, - sym_comment, - ACTIONS(1244), 5, + anon_sym_LF, + [5756] = 2, + ACTIONS(1410), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1242), 29, + ACTIONS(1408), 31, sym__verbatim_begin, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19511,6 +20442,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -19520,18 +20452,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [5160] = 2, - ACTIONS(1381), 6, + anon_sym_LF, + [5798] = 2, + ACTIONS(1438), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1379), 30, + ACTIONS(1436), 31, sym__verbatim_begin, - sym_strong_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19550,6 +20482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -19559,18 +20492,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [5201] = 2, - ACTIONS(1385), 6, + anon_sym_LF, + [5840] = 2, + ACTIONS(1442), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1383), 30, + ACTIONS(1440), 31, sym__verbatim_begin, - sym_strong_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19589,6 +20522,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -19598,16 +20532,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [5242] = 2, - ACTIONS(1389), 6, + anon_sym_LF, + [5882] = 2, + ACTIONS(1446), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1387), 30, + ACTIONS(1444), 31, sym__verbatim_begin, ts_builtin_sym_end, anon_sym_LBRACE_, @@ -19628,6 +20562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -19637,18 +20572,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [5283] = 2, - ACTIONS(1393), 6, + anon_sym_LF, + [5924] = 2, + ACTIONS(1450), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1391), 30, + ACTIONS(1448), 31, sym__verbatim_begin, - sym_strong_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19667,6 +20602,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -19676,18 +20612,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [5324] = 2, - ACTIONS(1355), 6, + anon_sym_LF, + [5966] = 2, + ACTIONS(1454), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1353), 30, + ACTIONS(1452), 31, sym__verbatim_begin, - sym_strong_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19706,6 +20642,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -19715,18 +20652,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [5365] = 2, - ACTIONS(1397), 6, + anon_sym_LF, + [6008] = 2, + ACTIONS(1458), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1395), 30, + ACTIONS(1456), 31, sym__verbatim_begin, - sym_strong_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19745,6 +20682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -19754,18 +20692,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [5406] = 2, - ACTIONS(1401), 6, + anon_sym_LF, + [6050] = 2, + ACTIONS(1462), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1399), 30, + ACTIONS(1460), 31, sym__verbatim_begin, - sym_strong_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19784,6 +20722,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -19793,18 +20732,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [5447] = 2, - ACTIONS(1405), 6, + anon_sym_LF, + [6092] = 2, + ACTIONS(1466), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1403), 30, + ACTIONS(1464), 31, sym__verbatim_begin, - sym_strong_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19823,6 +20762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -19832,18 +20772,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [5488] = 2, - ACTIONS(1409), 6, + anon_sym_LF, + [6134] = 2, + ACTIONS(1470), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1407), 30, + ACTIONS(1468), 31, sym__verbatim_begin, - sym_strong_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19862,6 +20802,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -19871,18 +20812,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [5529] = 2, - ACTIONS(1413), 6, + anon_sym_LF, + [6176] = 2, + ACTIONS(1474), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1411), 30, + ACTIONS(1472), 31, sym__verbatim_begin, - sym_strong_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19901,6 +20842,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -19910,18 +20852,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [5570] = 2, - ACTIONS(1417), 6, + anon_sym_LF, + [6218] = 2, + ACTIONS(1478), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1415), 30, + ACTIONS(1476), 31, sym__verbatim_begin, - sym_strong_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19940,6 +20882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -19949,18 +20892,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [5611] = 2, - ACTIONS(1421), 6, + anon_sym_LF, + [6260] = 2, + ACTIONS(1482), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1419), 30, + ACTIONS(1480), 31, sym__verbatim_begin, - sym_strong_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19979,6 +20922,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -19988,18 +20932,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [5652] = 2, - ACTIONS(1425), 6, + anon_sym_LF, + [6302] = 2, + ACTIONS(1486), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1423), 30, + ACTIONS(1484), 31, sym__verbatim_begin, - sym_strong_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20018,6 +20962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -20027,18 +20972,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [5693] = 2, - ACTIONS(1429), 6, + anon_sym_LF, + [6344] = 2, + ACTIONS(1490), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1427), 30, + ACTIONS(1488), 31, sym__verbatim_begin, - sym_strong_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20057,6 +21002,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -20066,18 +21012,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [5734] = 2, - ACTIONS(1433), 6, + anon_sym_LF, + [6386] = 2, + ACTIONS(1494), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1431), 30, + ACTIONS(1492), 31, sym__verbatim_begin, - ts_builtin_sym_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20096,6 +21042,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -20105,18 +21052,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [5775] = 2, - ACTIONS(1437), 6, + anon_sym_LF, + [6428] = 2, + ACTIONS(1498), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1435), 30, + ACTIONS(1496), 31, sym__verbatim_begin, - sym_strong_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20135,6 +21082,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -20144,20 +21092,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [5816] = 4, - ACTIONS(1439), 1, - anon_sym_LBRACE, - STATE(285), 1, - sym_comment, - ACTIONS(1244), 5, + anon_sym_LF, + [6470] = 2, + ACTIONS(1502), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1242), 29, + ACTIONS(1500), 31, sym__verbatim_begin, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20176,6 +21122,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -20185,18 +21132,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [5861] = 2, - ACTIONS(1443), 6, + anon_sym_LF, + [6512] = 2, + ACTIONS(1446), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1441), 30, + ACTIONS(1444), 31, sym__verbatim_begin, - sym_strong_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20215,6 +21162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -20224,19 +21172,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [5902] = 3, - ACTIONS(1445), 1, - sym__verbatim_begin, - ACTIONS(1218), 6, + anon_sym_LF, + [6554] = 2, + ACTIONS(1506), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1216), 29, - sym_superscript_end, + ACTIONS(1504), 31, + sym__verbatim_begin, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20255,6 +21202,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -20264,18 +21212,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [5945] = 2, - ACTIONS(1389), 6, + anon_sym_LF, + [6596] = 2, + ACTIONS(1506), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1387), 30, + ACTIONS(1504), 31, sym__verbatim_begin, - sym_superscript_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20294,6 +21242,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -20303,18 +21252,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [5986] = 2, - ACTIONS(1433), 6, + anon_sym_LF, + [6638] = 3, + ACTIONS(1508), 1, + sym__verbatim_begin, + ACTIONS(1258), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1431), 30, - sym__verbatim_begin, - sym_superscript_end, + ACTIONS(1256), 30, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20333,6 +21283,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -20342,18 +21293,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [6027] = 2, - ACTIONS(1224), 6, + anon_sym_LF, + [6682] = 2, + ACTIONS(1513), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1222), 30, + ACTIONS(1511), 31, sym__verbatim_begin, - sym_superscript_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20372,6 +21323,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -20381,18 +21333,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [6068] = 2, - ACTIONS(1450), 6, + anon_sym_LF, + [6724] = 2, + ACTIONS(1414), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1448), 30, + ACTIONS(1412), 31, sym__verbatim_begin, - sym_superscript_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20411,6 +21363,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -20420,16 +21373,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [6109] = 2, - ACTIONS(1224), 6, + anon_sym_LF, + [6766] = 2, + ACTIONS(1290), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1222), 30, + ACTIONS(1288), 31, sym__verbatim_begin, ts_builtin_sym_end, anon_sym_LBRACE_, @@ -20450,6 +21403,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -20459,16 +21413,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [6150] = 2, - ACTIONS(1450), 6, + anon_sym_LF, + [6808] = 2, + ACTIONS(1418), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1448), 30, + ACTIONS(1416), 31, sym__verbatim_begin, ts_builtin_sym_end, anon_sym_LBRACE_, @@ -20489,6 +21443,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -20498,18 +21453,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [6191] = 2, - ACTIONS(1454), 6, + anon_sym_LF, + [6850] = 2, + ACTIONS(1426), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1452), 30, + ACTIONS(1424), 31, sym__verbatim_begin, - sym_superscript_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20528,6 +21483,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -20537,18 +21493,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [6232] = 2, - ACTIONS(1458), 6, + anon_sym_LF, + [6892] = 2, + ACTIONS(1290), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1456), 30, + ACTIONS(1288), 31, sym__verbatim_begin, - sym_superscript_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20567,6 +21523,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -20576,18 +21533,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [6273] = 2, - ACTIONS(1462), 6, + anon_sym_LF, + [6934] = 2, + ACTIONS(1418), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1460), 30, + ACTIONS(1416), 31, sym__verbatim_begin, - sym_superscript_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20606,6 +21563,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -20615,18 +21573,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [6314] = 2, - ACTIONS(1359), 6, + anon_sym_LF, + [6976] = 2, + ACTIONS(1422), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1357), 30, + ACTIONS(1420), 31, sym__verbatim_begin, - sym_superscript_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20645,6 +21603,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -20654,18 +21613,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [6355] = 2, - ACTIONS(1363), 6, + anon_sym_LF, + [7018] = 2, + ACTIONS(1426), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1361), 30, + ACTIONS(1424), 31, sym__verbatim_begin, - sym_superscript_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20684,6 +21643,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -20693,18 +21653,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [6396] = 2, - ACTIONS(1367), 6, + anon_sym_LF, + [7060] = 2, + ACTIONS(1430), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1365), 30, + ACTIONS(1428), 31, sym__verbatim_begin, - sym_superscript_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20723,6 +21683,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -20732,18 +21693,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [6437] = 2, - ACTIONS(1371), 6, + anon_sym_LF, + [7102] = 2, + ACTIONS(1434), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1369), 30, + ACTIONS(1432), 31, sym__verbatim_begin, - sym_superscript_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20762,6 +21723,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -20771,18 +21733,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [6478] = 2, - ACTIONS(1375), 6, + anon_sym_LF, + [7144] = 2, + ACTIONS(1410), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1373), 30, + ACTIONS(1408), 31, sym__verbatim_begin, - sym_superscript_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20801,6 +21763,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -20810,18 +21773,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [6519] = 2, - ACTIONS(1454), 6, + anon_sym_LF, + [7186] = 2, + ACTIONS(1438), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1452), 30, + ACTIONS(1436), 31, sym__verbatim_begin, - ts_builtin_sym_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20840,6 +21803,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -20849,18 +21813,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [6560] = 2, - ACTIONS(1381), 6, + anon_sym_LF, + [7228] = 2, + ACTIONS(1442), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1379), 30, + ACTIONS(1440), 31, sym__verbatim_begin, - sym_superscript_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20879,6 +21843,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -20888,18 +21853,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [6601] = 2, - ACTIONS(1385), 6, + anon_sym_LF, + [7270] = 3, + ACTIONS(1515), 1, + sym__verbatim_begin, + ACTIONS(1258), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1383), 30, - sym__verbatim_begin, - sym_superscript_end, + ACTIONS(1256), 30, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20918,6 +21884,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -20927,18 +21894,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [6642] = 2, - ACTIONS(1458), 6, + anon_sym_LF, + [7314] = 2, + ACTIONS(1513), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1456), 30, + ACTIONS(1511), 31, sym__verbatim_begin, - ts_builtin_sym_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20957,6 +21924,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -20966,18 +21934,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [6683] = 2, - ACTIONS(1393), 6, + anon_sym_LF, + [7356] = 2, + ACTIONS(1414), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1391), 30, + ACTIONS(1412), 31, sym__verbatim_begin, - sym_superscript_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20996,6 +21964,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -21005,18 +21974,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [6724] = 2, - ACTIONS(1355), 6, + anon_sym_LF, + [7398] = 2, + ACTIONS(1450), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1353), 30, + ACTIONS(1448), 31, sym__verbatim_begin, - sym_superscript_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21035,6 +22004,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -21044,18 +22014,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [6765] = 2, - ACTIONS(1397), 6, + anon_sym_LF, + [7440] = 2, + ACTIONS(1454), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1395), 30, + ACTIONS(1452), 31, sym__verbatim_begin, - sym_superscript_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21074,6 +22044,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -21083,18 +22054,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [6806] = 2, - ACTIONS(1401), 6, + anon_sym_LF, + [7482] = 2, + ACTIONS(1458), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1399), 30, + ACTIONS(1456), 31, sym__verbatim_begin, - sym_superscript_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21113,6 +22084,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -21122,18 +22094,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [6847] = 2, - ACTIONS(1405), 6, + anon_sym_LF, + [7524] = 2, + ACTIONS(1462), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1403), 30, + ACTIONS(1460), 31, sym__verbatim_begin, - sym_superscript_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21152,6 +22124,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -21161,18 +22134,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [6888] = 2, - ACTIONS(1409), 6, + anon_sym_LF, + [7566] = 2, + ACTIONS(1466), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1407), 30, + ACTIONS(1464), 31, sym__verbatim_begin, - sym_superscript_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21191,6 +22164,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -21200,18 +22174,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [6929] = 2, - ACTIONS(1413), 6, + anon_sym_LF, + [7608] = 2, + ACTIONS(1470), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1411), 30, + ACTIONS(1468), 31, sym__verbatim_begin, - sym_superscript_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21230,6 +22204,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -21239,18 +22214,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [6970] = 2, - ACTIONS(1417), 6, + anon_sym_LF, + [7650] = 2, + ACTIONS(1474), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1415), 30, + ACTIONS(1472), 31, sym__verbatim_begin, - sym_superscript_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21269,6 +22244,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -21278,18 +22254,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [7011] = 2, - ACTIONS(1421), 6, + anon_sym_LF, + [7692] = 2, + ACTIONS(1478), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1419), 30, + ACTIONS(1476), 31, sym__verbatim_begin, - sym_superscript_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21308,6 +22284,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -21317,18 +22294,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [7052] = 2, - ACTIONS(1425), 6, + anon_sym_LF, + [7734] = 2, + ACTIONS(1482), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1423), 30, + ACTIONS(1480), 31, sym__verbatim_begin, - sym_superscript_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21347,6 +22324,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -21356,18 +22334,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [7093] = 2, - ACTIONS(1429), 6, + anon_sym_LF, + [7776] = 2, + ACTIONS(1486), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1427), 30, + ACTIONS(1484), 31, sym__verbatim_begin, - sym_superscript_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21386,6 +22364,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -21395,18 +22374,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [7134] = 2, - ACTIONS(1462), 6, + anon_sym_LF, + [7818] = 2, + ACTIONS(1490), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1460), 30, + ACTIONS(1488), 31, sym__verbatim_begin, - ts_builtin_sym_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21425,6 +22404,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -21434,18 +22414,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [7175] = 2, - ACTIONS(1437), 6, + anon_sym_LF, + [7860] = 2, + ACTIONS(1494), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1435), 30, + ACTIONS(1492), 31, sym__verbatim_begin, - sym_superscript_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21464,6 +22444,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -21473,18 +22454,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [7216] = 2, - ACTIONS(1359), 6, + anon_sym_LF, + [7902] = 2, + ACTIONS(1498), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1357), 30, + ACTIONS(1496), 31, sym__verbatim_begin, - ts_builtin_sym_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21503,6 +22484,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -21512,18 +22494,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [7257] = 2, - ACTIONS(1443), 6, + anon_sym_LF, + [7944] = 2, + ACTIONS(1502), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1441), 30, + ACTIONS(1500), 31, sym__verbatim_begin, - sym_superscript_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21542,6 +22524,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -21551,18 +22534,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [7298] = 2, - ACTIONS(1363), 6, + anon_sym_LF, + [7986] = 2, + ACTIONS(1446), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1361), 30, + ACTIONS(1444), 31, sym__verbatim_begin, - ts_builtin_sym_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21581,6 +22564,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -21590,18 +22574,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [7339] = 2, - ACTIONS(1458), 6, + anon_sym_LF, + [8028] = 2, + ACTIONS(1506), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1456), 30, + ACTIONS(1504), 31, sym__verbatim_begin, - sym_strong_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21620,6 +22604,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -21629,18 +22614,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [7380] = 2, - ACTIONS(1454), 6, + anon_sym_LF, + [8070] = 4, + ACTIONS(1518), 1, + anon_sym_LBRACE, + STATE(308), 1, + sym_comment, + ACTIONS(1284), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1452), 30, + ACTIONS(1282), 30, sym__verbatim_begin, - sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21659,6 +22646,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -21668,16 +22656,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [7421] = 2, - ACTIONS(1367), 6, + anon_sym_LF, + [8116] = 2, + ACTIONS(1430), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1365), 30, + ACTIONS(1428), 31, sym__verbatim_begin, ts_builtin_sym_end, anon_sym_LBRACE_, @@ -21698,6 +22686,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -21707,19 +22696,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [7462] = 3, - ACTIONS(1464), 1, - sym__verbatim_begin, - ACTIONS(1218), 6, + anon_sym_LF, + [8158] = 2, + ACTIONS(1434), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1216), 29, - sym_subscript_end, + ACTIONS(1432), 31, + sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21738,6 +22726,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -21747,18 +22736,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [7505] = 2, - ACTIONS(1389), 6, + anon_sym_LF, + [8200] = 2, + ACTIONS(1513), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1387), 30, + ACTIONS(1511), 31, sym__verbatim_begin, - sym_subscript_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21777,6 +22766,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -21786,18 +22776,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [7546] = 2, - ACTIONS(1433), 6, + anon_sym_LF, + [8242] = 2, + ACTIONS(1290), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1431), 30, + ACTIONS(1288), 31, sym__verbatim_begin, - sym_subscript_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21816,6 +22806,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -21825,18 +22816,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [7587] = 2, - ACTIONS(1371), 6, + anon_sym_LF, + [8284] = 3, + ACTIONS(1520), 1, + sym__verbatim_begin, + ACTIONS(1258), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1369), 30, - sym__verbatim_begin, - ts_builtin_sym_end, + ACTIONS(1256), 30, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21855,6 +22847,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -21864,18 +22857,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [7628] = 2, - ACTIONS(1450), 6, + anon_sym_LF, + [8328] = 2, + ACTIONS(1513), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1448), 30, + ACTIONS(1511), 31, sym__verbatim_begin, - sym_strong_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21894,6 +22887,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -21903,18 +22897,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [7669] = 2, - ACTIONS(1224), 6, + anon_sym_LF, + [8370] = 2, + ACTIONS(1414), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1222), 30, + ACTIONS(1412), 31, sym__verbatim_begin, - sym_strong_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21933,6 +22927,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -21942,18 +22937,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [7710] = 2, - ACTIONS(1433), 6, + anon_sym_LF, + [8412] = 2, + ACTIONS(1418), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1431), 30, + ACTIONS(1416), 31, sym__verbatim_begin, - sym_strong_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21972,6 +22967,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -21981,18 +22977,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [7751] = 2, - ACTIONS(1224), 6, + anon_sym_LF, + [8454] = 2, + ACTIONS(1410), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1222), 30, + ACTIONS(1408), 31, sym__verbatim_begin, - sym_subscript_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22011,6 +23007,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -22020,18 +23017,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [7792] = 2, - ACTIONS(1450), 6, + anon_sym_LF, + [8496] = 2, + ACTIONS(1290), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1448), 30, + ACTIONS(1288), 31, sym__verbatim_begin, - sym_subscript_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22050,6 +23047,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -22059,18 +23057,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [7833] = 2, - ACTIONS(1375), 6, + anon_sym_LF, + [8538] = 2, + ACTIONS(1418), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1373), 30, + ACTIONS(1416), 31, sym__verbatim_begin, - ts_builtin_sym_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22089,6 +23087,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -22098,18 +23097,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [7874] = 2, - ACTIONS(1381), 6, + anon_sym_LF, + [8580] = 2, + ACTIONS(1422), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1379), 30, + ACTIONS(1420), 31, sym__verbatim_begin, - ts_builtin_sym_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22128,6 +23127,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -22137,18 +23137,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [7915] = 2, - ACTIONS(1389), 6, + anon_sym_LF, + [8622] = 2, + ACTIONS(1422), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1387), 30, + ACTIONS(1420), 31, sym__verbatim_begin, - sym_strong_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22167,6 +23167,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -22176,18 +23177,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [7956] = 2, - ACTIONS(1454), 6, + anon_sym_LF, + [8664] = 2, + ACTIONS(1426), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1452), 30, + ACTIONS(1424), 31, sym__verbatim_begin, - sym_subscript_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22206,6 +23207,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -22215,18 +23217,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [7997] = 2, - ACTIONS(1458), 6, + anon_sym_LF, + [8706] = 2, + ACTIONS(1430), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1456), 30, + ACTIONS(1428), 31, sym__verbatim_begin, - sym_subscript_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22245,6 +23247,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -22254,18 +23257,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [8038] = 2, - ACTIONS(1462), 6, + anon_sym_LF, + [8748] = 2, + ACTIONS(1434), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1460), 30, + ACTIONS(1432), 31, sym__verbatim_begin, - sym_subscript_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22284,6 +23287,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -22293,18 +23297,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [8079] = 2, - ACTIONS(1359), 6, + anon_sym_LF, + [8790] = 2, + ACTIONS(1410), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1357), 30, + ACTIONS(1408), 31, sym__verbatim_begin, - sym_subscript_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22323,6 +23327,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -22332,18 +23337,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [8120] = 2, - ACTIONS(1363), 6, + anon_sym_LF, + [8832] = 2, + ACTIONS(1438), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1361), 30, + ACTIONS(1436), 31, sym__verbatim_begin, - sym_subscript_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22362,6 +23367,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -22371,18 +23377,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [8161] = 2, - ACTIONS(1367), 6, + anon_sym_LF, + [8874] = 2, + ACTIONS(1442), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1365), 30, + ACTIONS(1440), 31, sym__verbatim_begin, - sym_subscript_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22401,6 +23407,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -22410,18 +23417,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [8202] = 2, - ACTIONS(1371), 6, + anon_sym_LF, + [8916] = 2, + ACTIONS(1426), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1369), 30, + ACTIONS(1424), 31, sym__verbatim_begin, - sym_subscript_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22440,6 +23447,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -22449,19 +23457,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [8243] = 3, - ACTIONS(1467), 1, - sym__verbatim_begin, - ACTIONS(1218), 6, + anon_sym_LF, + [8958] = 2, + ACTIONS(1430), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1216), 29, - sym_strong_end, + ACTIONS(1428), 31, + sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22480,6 +23487,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -22489,18 +23497,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [8286] = 2, - ACTIONS(1385), 6, + anon_sym_LF, + [9000] = 2, + ACTIONS(1434), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1383), 30, + ACTIONS(1432), 31, sym__verbatim_begin, - ts_builtin_sym_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22519,6 +23527,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -22528,18 +23537,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [8327] = 2, - ACTIONS(1443), 6, + anon_sym_LF, + [9042] = 2, + ACTIONS(1450), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1441), 30, + ACTIONS(1448), 31, sym__verbatim_begin, - sym_emphasis_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22558,6 +23567,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -22567,18 +23577,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [8368] = 2, - ACTIONS(1375), 6, + anon_sym_LF, + [9084] = 2, + ACTIONS(1454), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1373), 30, + ACTIONS(1452), 31, sym__verbatim_begin, - sym_subscript_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22597,6 +23607,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -22606,18 +23617,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [8409] = 2, - ACTIONS(1393), 6, + anon_sym_LF, + [9126] = 2, + ACTIONS(1458), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1391), 30, + ACTIONS(1456), 31, sym__verbatim_begin, - ts_builtin_sym_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22636,6 +23647,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -22645,18 +23657,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [8450] = 2, - ACTIONS(1381), 6, + anon_sym_LF, + [9168] = 2, + ACTIONS(1462), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1379), 30, + ACTIONS(1460), 31, sym__verbatim_begin, - sym_subscript_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22675,6 +23687,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -22684,18 +23697,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [8491] = 2, - ACTIONS(1385), 6, + anon_sym_LF, + [9210] = 2, + ACTIONS(1466), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1383), 30, + ACTIONS(1464), 31, sym__verbatim_begin, - sym_subscript_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22714,6 +23727,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -22723,18 +23737,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [8532] = 2, - ACTIONS(1355), 6, + anon_sym_LF, + [9252] = 2, + ACTIONS(1470), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1353), 30, + ACTIONS(1468), 31, sym__verbatim_begin, - ts_builtin_sym_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22753,6 +23767,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -22762,18 +23777,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [8573] = 2, - ACTIONS(1393), 6, + anon_sym_LF, + [9294] = 2, + ACTIONS(1474), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1391), 30, + ACTIONS(1472), 31, sym__verbatim_begin, - sym_subscript_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22792,6 +23807,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -22801,18 +23817,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [8614] = 2, - ACTIONS(1355), 6, + anon_sym_LF, + [9336] = 2, + ACTIONS(1478), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1353), 30, + ACTIONS(1476), 31, sym__verbatim_begin, - sym_subscript_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22831,6 +23847,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -22840,18 +23857,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [8655] = 2, - ACTIONS(1397), 6, + anon_sym_LF, + [9378] = 2, + ACTIONS(1482), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1395), 30, + ACTIONS(1480), 31, sym__verbatim_begin, - sym_subscript_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22870,6 +23887,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -22879,18 +23897,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [8696] = 2, - ACTIONS(1401), 6, + anon_sym_LF, + [9420] = 2, + ACTIONS(1486), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1399), 30, + ACTIONS(1484), 31, sym__verbatim_begin, - sym_subscript_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22909,6 +23927,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -22918,18 +23937,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [8737] = 2, - ACTIONS(1405), 6, + anon_sym_LF, + [9462] = 2, + ACTIONS(1490), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1403), 30, + ACTIONS(1488), 31, sym__verbatim_begin, - sym_subscript_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22948,6 +23967,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -22957,18 +23977,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [8778] = 2, - ACTIONS(1409), 6, + anon_sym_LF, + [9504] = 2, + ACTIONS(1494), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1407), 30, + ACTIONS(1492), 31, sym__verbatim_begin, - sym_subscript_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22987,6 +24007,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -22996,18 +24017,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [8819] = 2, - ACTIONS(1413), 6, + anon_sym_LF, + [9546] = 2, + ACTIONS(1498), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1411), 30, + ACTIONS(1496), 31, sym__verbatim_begin, - sym_subscript_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23026,6 +24047,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -23035,18 +24057,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [8860] = 2, - ACTIONS(1417), 6, + anon_sym_LF, + [9588] = 2, + ACTIONS(1502), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1415), 30, + ACTIONS(1500), 31, sym__verbatim_begin, - sym_subscript_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23065,6 +24087,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -23074,18 +24097,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [8901] = 2, - ACTIONS(1421), 6, + anon_sym_LF, + [9630] = 2, + ACTIONS(1446), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1419), 30, + ACTIONS(1444), 31, sym__verbatim_begin, - sym_subscript_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23104,6 +24127,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -23113,18 +24137,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [8942] = 2, - ACTIONS(1425), 6, + anon_sym_LF, + [9672] = 2, + ACTIONS(1506), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1423), 30, + ACTIONS(1504), 31, sym__verbatim_begin, - sym_subscript_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23143,6 +24167,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -23152,18 +24177,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [8983] = 2, - ACTIONS(1429), 6, + anon_sym_LF, + [9714] = 2, + ACTIONS(1410), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1427), 30, + ACTIONS(1408), 31, sym__verbatim_begin, - sym_subscript_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23182,6 +24207,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -23191,18 +24217,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [9024] = 2, - ACTIONS(1397), 6, + anon_sym_LF, + [9756] = 2, + ACTIONS(1438), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1395), 30, + ACTIONS(1436), 31, sym__verbatim_begin, - ts_builtin_sym_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23221,6 +24247,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -23230,18 +24257,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [9065] = 2, - ACTIONS(1437), 6, + anon_sym_LF, + [9798] = 2, + ACTIONS(1442), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1435), 30, + ACTIONS(1440), 31, sym__verbatim_begin, - sym_subscript_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23260,6 +24287,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -23269,16 +24297,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [9106] = 2, - ACTIONS(1401), 6, + anon_sym_LF, + [9840] = 2, + ACTIONS(1438), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1399), 30, + ACTIONS(1436), 31, sym__verbatim_begin, ts_builtin_sym_end, anon_sym_LBRACE_, @@ -23299,6 +24327,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -23308,18 +24337,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [9147] = 2, - ACTIONS(1443), 6, + anon_sym_LF, + [9882] = 2, + ACTIONS(1442), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1441), 30, + ACTIONS(1440), 31, sym__verbatim_begin, - sym_subscript_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23338,6 +24367,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -23347,18 +24377,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [9188] = 2, - ACTIONS(1405), 6, + anon_sym_LF, + [9924] = 3, + ACTIONS(1523), 1, + sym__verbatim_begin, + ACTIONS(1258), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1403), 30, - sym__verbatim_begin, - ts_builtin_sym_end, + ACTIONS(1256), 30, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23377,6 +24408,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -23386,18 +24418,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [9229] = 2, - ACTIONS(1437), 6, + anon_sym_LF, + [9968] = 2, + ACTIONS(1513), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1435), 30, + ACTIONS(1511), 31, sym__verbatim_begin, - sym_emphasis_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23416,6 +24448,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -23425,20 +24458,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [9270] = 4, - ACTIONS(1470), 1, - aux_sym__text_token1, - STATE(331), 1, - aux_sym__text, - ACTIONS(1211), 5, + anon_sym_LF, + [10010] = 2, + ACTIONS(1414), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(1209), 29, + aux_sym__text_token1, + ACTIONS(1412), 31, sym__verbatim_begin, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23457,6 +24488,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -23466,19 +24498,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [9315] = 3, - ACTIONS(1473), 1, - anon_sym_GT, - ACTIONS(1224), 6, + anon_sym_LF, + [10052] = 2, + ACTIONS(1422), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1222), 29, + ACTIONS(1420), 31, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23497,6 +24528,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -23506,19 +24538,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [9358] = 3, - ACTIONS(1475), 1, - sym__verbatim_begin, - ACTIONS(1218), 6, + anon_sym_LF, + [10094] = 2, + ACTIONS(1450), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1216), 29, - sym_highlighted_end, + ACTIONS(1448), 31, + sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23537,6 +24568,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -23546,18 +24578,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [9401] = 2, - ACTIONS(1389), 6, + anon_sym_LF, + [10136] = 2, + ACTIONS(1454), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1387), 30, + ACTIONS(1452), 31, sym__verbatim_begin, - sym_highlighted_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23576,6 +24608,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -23585,18 +24618,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [9442] = 2, - ACTIONS(1433), 6, + anon_sym_LF, + [10178] = 2, + ACTIONS(1290), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1431), 30, + ACTIONS(1288), 31, sym__verbatim_begin, - sym_highlighted_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23615,6 +24648,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -23624,18 +24658,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [9483] = 2, - ACTIONS(1429), 6, + anon_sym_LF, + [10220] = 2, + ACTIONS(1418), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1427), 30, + ACTIONS(1416), 31, sym__verbatim_begin, - sym_emphasis_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23654,6 +24688,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -23663,18 +24698,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [9524] = 2, - ACTIONS(1425), 6, + anon_sym_LF, + [10262] = 2, + ACTIONS(1422), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1423), 30, + ACTIONS(1420), 31, sym__verbatim_begin, - sym_emphasis_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23693,6 +24728,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -23702,18 +24738,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [9565] = 2, - ACTIONS(1421), 6, + anon_sym_LF, + [10304] = 2, + ACTIONS(1426), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1419), 30, + ACTIONS(1424), 31, sym__verbatim_begin, - sym_emphasis_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23732,6 +24768,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -23741,18 +24778,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [9606] = 2, - ACTIONS(1417), 6, + anon_sym_LF, + [10346] = 2, + ACTIONS(1430), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1415), 30, + ACTIONS(1428), 31, sym__verbatim_begin, - sym_emphasis_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23771,6 +24808,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -23780,18 +24818,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [9647] = 2, - ACTIONS(1409), 6, + anon_sym_LF, + [10388] = 2, + ACTIONS(1434), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1407), 30, + ACTIONS(1432), 31, sym__verbatim_begin, - ts_builtin_sym_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23810,6 +24848,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -23819,18 +24858,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [9688] = 2, - ACTIONS(1450), 6, + anon_sym_LF, + [10430] = 2, + ACTIONS(1458), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1448), 30, + ACTIONS(1456), 31, sym__verbatim_begin, - sym_highlighted_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23849,6 +24888,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -23858,18 +24898,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [9729] = 2, - ACTIONS(1413), 6, + anon_sym_LF, + [10472] = 2, + ACTIONS(1438), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1411), 30, + ACTIONS(1436), 31, sym__verbatim_begin, - ts_builtin_sym_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23888,6 +24928,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -23897,15 +24938,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [9770] = 3, - ACTIONS(1478), 1, - aux_sym_autolink_token1, - ACTIONS(1216), 3, + anon_sym_LF, + [10514] = 2, + ACTIONS(1442), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE, + aux_sym__text_token1, + ACTIONS(1440), 31, sym__verbatim_begin, - sym__whitespace1, - sym__newline, - ACTIONS(1218), 32, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23917,18 +24961,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, - sym_en_dash, - sym_backslash_escape, anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -23937,16 +24977,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - aux_sym__text_token1, - [9813] = 2, - ACTIONS(1413), 6, + sym__whitespace1, + anon_sym_LF, + [10556] = 2, + ACTIONS(1462), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1411), 30, + ACTIONS(1460), 31, sym__verbatim_begin, sym_emphasis_end, anon_sym_LBRACE_, @@ -23967,6 +25008,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -23976,18 +25018,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [9854] = 2, - ACTIONS(1454), 6, + anon_sym_LF, + [10598] = 2, + ACTIONS(1466), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1452), 30, + ACTIONS(1464), 31, sym__verbatim_begin, - sym_highlighted_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24006,6 +25048,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -24015,18 +25058,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [9895] = 2, - ACTIONS(1458), 6, + anon_sym_LF, + [10640] = 2, + ACTIONS(1450), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1456), 30, + ACTIONS(1448), 31, sym__verbatim_begin, - sym_highlighted_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24045,6 +25088,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -24054,18 +25098,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [9936] = 2, - ACTIONS(1462), 6, + anon_sym_LF, + [10682] = 2, + ACTIONS(1454), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1460), 30, + ACTIONS(1452), 31, sym__verbatim_begin, - sym_highlighted_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24084,6 +25128,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -24093,18 +25138,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [9977] = 2, - ACTIONS(1359), 6, + anon_sym_LF, + [10724] = 2, + ACTIONS(1458), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1357), 30, + ACTIONS(1456), 31, sym__verbatim_begin, - sym_highlighted_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24123,6 +25168,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -24132,18 +25178,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [10018] = 2, - ACTIONS(1363), 6, + anon_sym_LF, + [10766] = 2, + ACTIONS(1462), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1361), 30, + ACTIONS(1460), 31, sym__verbatim_begin, - sym_highlighted_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24162,6 +25208,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -24171,18 +25218,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [10059] = 2, - ACTIONS(1367), 6, + anon_sym_LF, + [10808] = 2, + ACTIONS(1466), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1365), 30, + ACTIONS(1464), 31, sym__verbatim_begin, - sym_highlighted_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24201,6 +25248,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -24210,18 +25258,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [10100] = 2, - ACTIONS(1371), 6, + anon_sym_LF, + [10850] = 2, + ACTIONS(1470), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1369), 30, + ACTIONS(1468), 31, sym__verbatim_begin, - sym_highlighted_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24240,6 +25288,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -24249,18 +25298,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [10141] = 2, - ACTIONS(1409), 6, + anon_sym_LF, + [10892] = 2, + ACTIONS(1474), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1407), 30, + ACTIONS(1472), 31, sym__verbatim_begin, - sym_emphasis_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24279,6 +25328,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -24288,18 +25338,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [10182] = 2, - ACTIONS(1405), 6, + anon_sym_LF, + [10934] = 2, + ACTIONS(1478), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1403), 30, + ACTIONS(1476), 31, sym__verbatim_begin, - sym_emphasis_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24318,6 +25368,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -24327,18 +25378,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [10223] = 2, - ACTIONS(1401), 6, + anon_sym_LF, + [10976] = 2, + ACTIONS(1482), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1399), 30, + ACTIONS(1480), 31, sym__verbatim_begin, - sym_emphasis_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24357,6 +25408,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -24366,18 +25418,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [10264] = 2, - ACTIONS(1375), 6, + anon_sym_LF, + [11018] = 2, + ACTIONS(1486), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1373), 30, + ACTIONS(1484), 31, sym__verbatim_begin, - sym_highlighted_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24396,6 +25448,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -24405,18 +25458,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [10305] = 2, - ACTIONS(1417), 6, + anon_sym_LF, + [11060] = 2, + ACTIONS(1490), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1415), 30, + ACTIONS(1488), 31, sym__verbatim_begin, - ts_builtin_sym_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24435,6 +25488,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -24444,18 +25498,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [10346] = 2, - ACTIONS(1381), 6, + anon_sym_LF, + [11102] = 2, + ACTIONS(1494), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1379), 30, + ACTIONS(1492), 31, sym__verbatim_begin, - sym_highlighted_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24474,6 +25528,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -24483,18 +25538,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [10387] = 2, - ACTIONS(1385), 6, + anon_sym_LF, + [11144] = 2, + ACTIONS(1498), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1383), 30, + ACTIONS(1496), 31, sym__verbatim_begin, - sym_highlighted_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24513,6 +25568,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -24522,19 +25578,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [10428] = 3, - ACTIONS(1480), 1, - sym__non_whitespace_check, - ACTIONS(1218), 6, + anon_sym_LF, + [11186] = 2, + ACTIONS(1502), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1216), 29, + ACTIONS(1500), 31, sym__verbatim_begin, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24553,6 +25608,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -24562,18 +25618,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [10471] = 2, - ACTIONS(1393), 6, + anon_sym_LF, + [11228] = 2, + ACTIONS(1446), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1391), 30, + ACTIONS(1444), 31, sym__verbatim_begin, - sym_highlighted_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24592,6 +25648,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -24601,18 +25658,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [10512] = 2, - ACTIONS(1355), 6, + anon_sym_LF, + [11270] = 2, + ACTIONS(1506), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1353), 30, + ACTIONS(1504), 31, sym__verbatim_begin, - sym_highlighted_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24631,6 +25688,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -24640,18 +25698,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [10553] = 2, - ACTIONS(1397), 6, + anon_sym_LF, + [11312] = 2, + ACTIONS(1470), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1395), 30, + ACTIONS(1468), 31, sym__verbatim_begin, - sym_highlighted_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24670,6 +25728,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -24679,18 +25738,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [10594] = 2, - ACTIONS(1401), 6, + anon_sym_LF, + [11354] = 2, + ACTIONS(1474), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1399), 30, + ACTIONS(1472), 31, sym__verbatim_begin, - sym_highlighted_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24709,6 +25768,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -24718,18 +25778,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [10635] = 2, - ACTIONS(1405), 6, + anon_sym_LF, + [11396] = 2, + ACTIONS(1478), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1403), 30, + ACTIONS(1476), 31, sym__verbatim_begin, - sym_highlighted_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24748,6 +25808,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -24757,18 +25818,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [10676] = 2, - ACTIONS(1409), 6, + anon_sym_LF, + [11438] = 2, + ACTIONS(1482), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1407), 30, + ACTIONS(1480), 31, sym__verbatim_begin, - sym_highlighted_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24787,6 +25848,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -24796,18 +25858,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [10717] = 2, - ACTIONS(1413), 6, + anon_sym_LF, + [11480] = 3, + ACTIONS(1526), 1, + sym__verbatim_begin, + ACTIONS(1258), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1411), 30, - sym__verbatim_begin, - sym_highlighted_end, + ACTIONS(1256), 30, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24826,6 +25888,8 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -24835,18 +25899,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [10758] = 2, - ACTIONS(1417), 6, + anon_sym_LF, + [11524] = 2, + ACTIONS(1513), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1415), 30, + ACTIONS(1511), 31, sym__verbatim_begin, - sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24865,6 +25928,8 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -24874,18 +25939,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [10799] = 2, - ACTIONS(1421), 6, + anon_sym_LF, + [11566] = 2, + ACTIONS(1414), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1419), 30, + ACTIONS(1412), 31, sym__verbatim_begin, - sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24904,6 +25968,8 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -24913,18 +25979,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [10840] = 2, - ACTIONS(1425), 6, + anon_sym_LF, + [11608] = 2, + ACTIONS(1486), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1423), 30, + ACTIONS(1484), 31, sym__verbatim_begin, - sym_highlighted_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24943,6 +26009,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -24952,18 +26019,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [10881] = 2, - ACTIONS(1429), 6, + anon_sym_LF, + [11650] = 2, + ACTIONS(1490), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1427), 30, + ACTIONS(1488), 31, sym__verbatim_begin, - sym_highlighted_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24982,6 +26049,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -24991,19 +26059,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [10922] = 3, - ACTIONS(1482), 1, - sym__non_whitespace_check, - ACTIONS(1218), 6, + anon_sym_LF, + [11692] = 2, + ACTIONS(1494), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1216), 29, + ACTIONS(1492), 31, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25022,6 +26089,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -25031,18 +26099,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [10965] = 2, - ACTIONS(1437), 6, + anon_sym_LF, + [11734] = 2, + ACTIONS(1290), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1435), 30, + ACTIONS(1288), 31, sym__verbatim_begin, - sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25061,6 +26128,8 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -25070,18 +26139,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [11006] = 2, - ACTIONS(1443), 6, + anon_sym_LF, + [11776] = 2, + ACTIONS(1418), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1441), 30, + ACTIONS(1416), 31, sym__verbatim_begin, - sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25100,6 +26168,8 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -25109,18 +26179,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [11047] = 2, - ACTIONS(1443), 6, + anon_sym_LF, + [11818] = 2, + ACTIONS(1498), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1441), 30, + ACTIONS(1496), 31, sym__verbatim_begin, - sym_highlighted_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25139,6 +26209,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -25148,18 +26219,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [11088] = 2, - ACTIONS(1437), 6, + anon_sym_LF, + [11860] = 2, + ACTIONS(1422), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1435), 30, + ACTIONS(1420), 31, sym__verbatim_begin, - sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25178,6 +26248,8 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -25187,18 +26259,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [11129] = 2, - ACTIONS(1397), 6, + anon_sym_LF, + [11902] = 2, + ACTIONS(1426), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1395), 30, + ACTIONS(1424), 31, sym__verbatim_begin, - sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25217,6 +26288,8 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -25226,18 +26299,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [11170] = 2, - ACTIONS(1355), 6, + anon_sym_LF, + [11944] = 2, + ACTIONS(1430), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1353), 30, + ACTIONS(1428), 31, sym__verbatim_begin, - sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25256,6 +26328,8 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -25265,18 +26339,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [11211] = 2, - ACTIONS(1393), 6, + anon_sym_LF, + [11986] = 2, + ACTIONS(1434), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1391), 30, + ACTIONS(1432), 31, sym__verbatim_begin, - sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25295,6 +26368,8 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -25304,19 +26379,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [11252] = 3, - ACTIONS(1484), 1, - sym__verbatim_begin, - ACTIONS(1218), 6, + anon_sym_LF, + [12028] = 2, + ACTIONS(1410), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1216), 29, - sym_insert_end, + ACTIONS(1408), 31, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25335,6 +26408,8 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -25344,18 +26419,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [11295] = 2, - ACTIONS(1389), 6, + anon_sym_LF, + [12070] = 2, + ACTIONS(1438), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1387), 30, + ACTIONS(1436), 31, sym__verbatim_begin, - sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25374,6 +26448,8 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -25383,18 +26459,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [11336] = 2, - ACTIONS(1433), 6, + anon_sym_LF, + [12112] = 2, + ACTIONS(1442), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1431), 30, + ACTIONS(1440), 31, sym__verbatim_begin, - sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25413,6 +26488,8 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -25422,16 +26499,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [11377] = 2, - ACTIONS(1433), 6, + anon_sym_LF, + [12154] = 2, + ACTIONS(1502), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1431), 30, + ACTIONS(1500), 31, sym__verbatim_begin, sym_emphasis_end, anon_sym_LBRACE_, @@ -25452,6 +26529,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -25461,18 +26539,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [11418] = 2, - ACTIONS(1385), 6, + anon_sym_LF, + [12196] = 2, + ACTIONS(1450), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1383), 30, + ACTIONS(1448), 31, sym__verbatim_begin, - sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25491,6 +26568,8 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -25500,18 +26579,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [11459] = 2, - ACTIONS(1429), 6, + anon_sym_LF, + [12238] = 2, + ACTIONS(1454), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1427), 30, + ACTIONS(1452), 31, sym__verbatim_begin, - sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25530,6 +26608,8 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -25539,18 +26619,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [11500] = 2, - ACTIONS(1381), 6, + anon_sym_LF, + [12280] = 2, + ACTIONS(1458), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1379), 30, + ACTIONS(1456), 31, sym__verbatim_begin, - sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25569,6 +26648,8 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -25578,18 +26659,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [11541] = 2, - ACTIONS(1224), 6, + anon_sym_LF, + [12322] = 2, + ACTIONS(1462), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1222), 30, + ACTIONS(1460), 31, sym__verbatim_begin, - sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25608,6 +26688,8 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -25617,18 +26699,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [11582] = 2, - ACTIONS(1450), 6, + anon_sym_LF, + [12364] = 2, + ACTIONS(1466), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1448), 30, + ACTIONS(1464), 31, sym__verbatim_begin, - sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25647,6 +26728,8 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -25656,18 +26739,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [11623] = 2, - ACTIONS(1425), 6, + anon_sym_LF, + [12406] = 2, + ACTIONS(1470), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1423), 30, + ACTIONS(1468), 31, sym__verbatim_begin, - sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25686,6 +26768,8 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -25695,18 +26779,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [11664] = 2, - ACTIONS(1421), 6, + anon_sym_LF, + [12448] = 2, + ACTIONS(1474), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1419), 30, + ACTIONS(1472), 31, sym__verbatim_begin, - sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25725,6 +26808,8 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -25734,18 +26819,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [11705] = 2, - ACTIONS(1417), 6, + anon_sym_LF, + [12490] = 2, + ACTIONS(1478), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1415), 30, + ACTIONS(1476), 31, sym__verbatim_begin, - sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25764,6 +26848,8 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -25773,18 +26859,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [11746] = 2, - ACTIONS(1454), 6, + anon_sym_LF, + [12532] = 2, + ACTIONS(1482), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1452), 30, + ACTIONS(1480), 31, sym__verbatim_begin, - sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25803,6 +26888,8 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -25812,18 +26899,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [11787] = 2, - ACTIONS(1458), 6, + anon_sym_LF, + [12574] = 2, + ACTIONS(1486), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1456), 30, + ACTIONS(1484), 31, sym__verbatim_begin, - sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25842,6 +26928,8 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -25851,18 +26939,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [11828] = 2, - ACTIONS(1462), 6, + anon_sym_LF, + [12616] = 2, + ACTIONS(1490), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1460), 30, + ACTIONS(1488), 31, sym__verbatim_begin, - sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25881,6 +26968,8 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -25890,18 +26979,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [11869] = 2, - ACTIONS(1359), 6, + anon_sym_LF, + [12658] = 2, + ACTIONS(1494), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1357), 30, + ACTIONS(1492), 31, sym__verbatim_begin, - sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25920,6 +27008,8 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -25929,18 +27019,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [11910] = 2, - ACTIONS(1363), 6, + anon_sym_LF, + [12700] = 2, + ACTIONS(1498), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1361), 30, + ACTIONS(1496), 31, sym__verbatim_begin, - sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25959,6 +27048,8 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -25968,18 +27059,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [11951] = 2, - ACTIONS(1367), 6, + anon_sym_LF, + [12742] = 2, + ACTIONS(1502), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1365), 30, + ACTIONS(1500), 31, sym__verbatim_begin, - sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25998,6 +27088,8 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -26007,18 +27099,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [11992] = 2, - ACTIONS(1371), 6, + anon_sym_LF, + [12784] = 2, + ACTIONS(1446), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1369), 30, + ACTIONS(1444), 31, sym__verbatim_begin, - sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26037,6 +27128,8 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -26046,18 +27139,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [12033] = 2, - ACTIONS(1375), 6, + anon_sym_LF, + [12826] = 2, + ACTIONS(1506), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1373), 30, + ACTIONS(1504), 31, sym__verbatim_begin, - sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26076,6 +27168,8 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -26085,16 +27179,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [12074] = 2, - ACTIONS(1371), 6, + anon_sym_LF, + [12868] = 2, + ACTIONS(1446), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1369), 30, + ACTIONS(1444), 31, sym__verbatim_begin, sym_emphasis_end, anon_sym_LBRACE_, @@ -26115,6 +27209,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -26124,18 +27219,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [12115] = 2, - ACTIONS(1367), 6, + anon_sym_LF, + [12910] = 3, + ACTIONS(1529), 1, + sym__verbatim_begin, + ACTIONS(1258), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1365), 30, - sym__verbatim_begin, - sym_emphasis_end, + ACTIONS(1256), 30, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26154,6 +27250,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -26163,18 +27260,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [12156] = 2, - ACTIONS(1375), 6, + anon_sym_LF, + [12954] = 2, + ACTIONS(1513), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1373), 30, + ACTIONS(1511), 31, sym__verbatim_begin, - sym_insert_end, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26193,6 +27290,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -26202,16 +27300,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [12197] = 2, - ACTIONS(1413), 6, + anon_sym_LF, + [12996] = 2, + ACTIONS(1414), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1411), 30, + ACTIONS(1412), 31, sym__verbatim_begin, sym__square_bracket_span_end, anon_sym_LBRACE_, @@ -26232,6 +27330,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -26241,18 +27340,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [12238] = 2, - ACTIONS(1381), 6, + anon_sym_LF, + [13038] = 2, + ACTIONS(1414), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1379), 30, + ACTIONS(1412), 31, sym__verbatim_begin, - sym_insert_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26271,6 +27370,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -26280,18 +27380,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [12279] = 2, - ACTIONS(1385), 6, + anon_sym_LF, + [13080] = 2, + ACTIONS(1290), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1383), 30, + ACTIONS(1288), 31, sym__verbatim_begin, - sym_insert_end, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26310,6 +27410,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -26319,16 +27420,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [12320] = 2, - ACTIONS(1409), 6, + anon_sym_LF, + [13122] = 2, + ACTIONS(1418), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1407), 30, + ACTIONS(1416), 31, sym__verbatim_begin, sym__square_bracket_span_end, anon_sym_LBRACE_, @@ -26349,6 +27450,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -26358,18 +27460,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [12361] = 2, - ACTIONS(1393), 6, + anon_sym_LF, + [13164] = 2, + ACTIONS(1450), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1391), 30, + ACTIONS(1448), 31, sym__verbatim_begin, - sym_insert_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26388,6 +27490,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -26397,18 +27500,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [12402] = 2, - ACTIONS(1355), 6, + anon_sym_LF, + [13206] = 2, + ACTIONS(1422), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1353), 30, + ACTIONS(1420), 31, sym__verbatim_begin, - sym_insert_end, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26427,6 +27530,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -26436,18 +27540,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [12443] = 2, - ACTIONS(1397), 6, + anon_sym_LF, + [13248] = 2, + ACTIONS(1426), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1395), 30, + ACTIONS(1424), 31, sym__verbatim_begin, - sym_insert_end, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26466,6 +27570,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -26475,18 +27580,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [12484] = 2, - ACTIONS(1401), 6, + anon_sym_LF, + [13290] = 2, + ACTIONS(1430), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1399), 30, + ACTIONS(1428), 31, sym__verbatim_begin, - sym_insert_end, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26505,6 +27610,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -26514,18 +27620,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [12525] = 2, - ACTIONS(1405), 6, + anon_sym_LF, + [13332] = 2, + ACTIONS(1434), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1403), 30, + ACTIONS(1432), 31, sym__verbatim_begin, - sym_insert_end, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26544,6 +27650,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -26553,18 +27660,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [12566] = 2, - ACTIONS(1409), 6, + anon_sym_LF, + [13374] = 2, + ACTIONS(1410), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1407), 30, + ACTIONS(1408), 31, sym__verbatim_begin, - sym_insert_end, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26583,6 +27690,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -26592,18 +27700,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [12607] = 2, - ACTIONS(1413), 6, + anon_sym_LF, + [13416] = 2, + ACTIONS(1438), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1411), 30, + ACTIONS(1436), 31, sym__verbatim_begin, - sym_insert_end, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26622,6 +27730,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -26631,18 +27740,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [12648] = 2, - ACTIONS(1417), 6, + anon_sym_LF, + [13458] = 2, + ACTIONS(1442), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1415), 30, + ACTIONS(1440), 31, sym__verbatim_begin, - sym_insert_end, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26661,6 +27770,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -26670,18 +27780,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [12689] = 2, - ACTIONS(1421), 6, + anon_sym_LF, + [13500] = 3, + ACTIONS(1532), 1, + sym__verbatim_begin, + ACTIONS(1258), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1419), 30, - sym__verbatim_begin, - sym_insert_end, + ACTIONS(1256), 30, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26700,6 +27811,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -26709,18 +27821,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [12730] = 2, - ACTIONS(1425), 6, + anon_sym_LF, + [13544] = 2, + ACTIONS(1450), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1423), 30, + ACTIONS(1448), 31, sym__verbatim_begin, - sym_insert_end, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26739,6 +27851,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -26748,18 +27861,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [12771] = 2, - ACTIONS(1429), 6, + anon_sym_LF, + [13586] = 2, + ACTIONS(1454), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1427), 30, + ACTIONS(1452), 31, sym__verbatim_begin, - sym_insert_end, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26778,6 +27891,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -26787,16 +27901,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [12812] = 2, - ACTIONS(1405), 6, + anon_sym_LF, + [13628] = 2, + ACTIONS(1458), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1403), 30, + ACTIONS(1456), 31, sym__verbatim_begin, sym__square_bracket_span_end, anon_sym_LBRACE_, @@ -26817,6 +27931,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -26826,18 +27941,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [12853] = 2, - ACTIONS(1437), 6, + anon_sym_LF, + [13670] = 2, + ACTIONS(1462), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1435), 30, + ACTIONS(1460), 31, sym__verbatim_begin, - sym_insert_end, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26856,6 +27971,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -26865,16 +27981,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [12894] = 2, - ACTIONS(1401), 6, + anon_sym_LF, + [13712] = 2, + ACTIONS(1466), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1399), 30, + ACTIONS(1464), 31, sym__verbatim_begin, sym__square_bracket_span_end, anon_sym_LBRACE_, @@ -26895,6 +28011,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -26904,18 +28021,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [12935] = 2, - ACTIONS(1443), 6, + anon_sym_LF, + [13754] = 2, + ACTIONS(1470), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1441), 30, + ACTIONS(1468), 31, sym__verbatim_begin, - sym_insert_end, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26934,6 +28051,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -26943,18 +28061,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [12976] = 2, - ACTIONS(1363), 6, + anon_sym_LF, + [13796] = 2, + ACTIONS(1474), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1361), 30, + ACTIONS(1472), 31, sym__verbatim_begin, - sym_emphasis_end, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26973,6 +28091,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -26982,18 +28101,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [13017] = 2, - ACTIONS(1359), 6, + anon_sym_LF, + [13838] = 2, + ACTIONS(1478), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1357), 30, + ACTIONS(1476), 31, sym__verbatim_begin, - sym_emphasis_end, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27012,6 +28131,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -27021,18 +28141,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [13058] = 2, - ACTIONS(1462), 6, + anon_sym_LF, + [13880] = 2, + ACTIONS(1482), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1460), 30, + ACTIONS(1480), 31, sym__verbatim_begin, - sym_emphasis_end, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27051,6 +28171,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -27060,18 +28181,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [13099] = 2, - ACTIONS(1458), 6, + anon_sym_LF, + [13922] = 2, + ACTIONS(1486), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1456), 30, + ACTIONS(1484), 31, sym__verbatim_begin, - sym_emphasis_end, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27090,6 +28211,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -27099,19 +28221,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [13140] = 3, - ACTIONS(1487), 1, - sym__verbatim_begin, - ACTIONS(1218), 6, + anon_sym_LF, + [13964] = 2, + ACTIONS(1490), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1216), 29, - sym_delete_end, + ACTIONS(1488), 31, + sym__verbatim_begin, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27130,6 +28251,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -27139,18 +28261,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [13183] = 2, - ACTIONS(1389), 6, + anon_sym_LF, + [14006] = 2, + ACTIONS(1494), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1387), 30, + ACTIONS(1492), 31, sym__verbatim_begin, - sym_delete_end, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27169,6 +28291,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -27178,18 +28301,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [13224] = 2, - ACTIONS(1433), 6, + anon_sym_LF, + [14048] = 2, + ACTIONS(1498), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1431), 30, + ACTIONS(1496), 31, sym__verbatim_begin, - sym_delete_end, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27208,6 +28331,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -27217,18 +28341,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [13265] = 2, - ACTIONS(1454), 6, + anon_sym_LF, + [14090] = 2, + ACTIONS(1502), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1452), 30, + ACTIONS(1500), 31, sym__verbatim_begin, - sym_emphasis_end, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27247,6 +28371,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -27256,16 +28381,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [13306] = 2, - ACTIONS(1397), 6, + anon_sym_LF, + [14132] = 2, + ACTIONS(1446), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1395), 30, + ACTIONS(1444), 31, sym__verbatim_begin, sym__square_bracket_span_end, anon_sym_LBRACE_, @@ -27286,6 +28411,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -27295,16 +28421,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [13347] = 2, - ACTIONS(1355), 6, + anon_sym_LF, + [14174] = 2, + ACTIONS(1506), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1353), 30, + ACTIONS(1504), 31, sym__verbatim_begin, sym__square_bracket_span_end, anon_sym_LBRACE_, @@ -27325,6 +28451,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -27334,18 +28461,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [13388] = 2, - ACTIONS(1450), 6, + anon_sym_LF, + [14216] = 3, + ACTIONS(1535), 1, + sym__non_whitespace_check, + ACTIONS(1258), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1448), 30, + ACTIONS(1256), 30, sym__verbatim_begin, - sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27364,6 +28492,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -27373,18 +28502,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [13429] = 2, - ACTIONS(1224), 6, + anon_sym_LF, + [14260] = 3, + ACTIONS(1537), 1, + sym__non_whitespace_check, + ACTIONS(1258), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1222), 30, + ACTIONS(1256), 30, sym__verbatim_begin, - sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27403,6 +28533,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -27412,18 +28543,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [13470] = 2, - ACTIONS(1450), 6, + anon_sym_LF, + [14304] = 2, + ACTIONS(1513), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1448), 30, + ACTIONS(1511), 31, sym__verbatim_begin, - sym_delete_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27442,6 +28573,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -27451,18 +28583,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [13511] = 2, - ACTIONS(1393), 6, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE, - aux_sym__text_token1, - ACTIONS(1391), 30, + anon_sym_LF, + [14346] = 3, + ACTIONS(1539), 1, + aux_sym_autolink_token1, + ACTIONS(1256), 3, sym__verbatim_begin, - sym__square_bracket_span_end, + sym__whitespace1, + anon_sym_LF, + ACTIONS(1258), 33, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27474,13 +28603,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, + anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, + sym_en_dash, + sym_backslash_escape, anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, + anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -27489,19 +28624,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - sym__whitespace1, - sym__newline, - [13552] = 2, - ACTIONS(1385), 6, + aux_sym__text_token1, + [14390] = 5, + ACTIONS(1274), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(1276), 1, + anon_sym_LBRACK, + ACTIONS(1279), 1, + anon_sym_LPAREN, + ACTIONS(1258), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1383), 30, + ACTIONS(1256), 28, sym__verbatim_begin, - sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27520,7 +28659,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -27529,18 +28667,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [13593] = 2, - ACTIONS(1224), 6, + anon_sym_LF, + [14438] = 2, + ACTIONS(1414), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1222), 30, + ACTIONS(1412), 31, sym__verbatim_begin, - sym_emphasis_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27559,6 +28697,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -27568,18 +28707,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [13634] = 2, - ACTIONS(1454), 6, + anon_sym_LF, + [14480] = 3, + ACTIONS(1541), 1, + anon_sym_GT, + ACTIONS(1290), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1452), 30, + ACTIONS(1288), 30, sym__verbatim_begin, - sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27598,6 +28738,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -27607,18 +28748,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [13675] = 2, - ACTIONS(1458), 6, + anon_sym_LF, + [14524] = 4, + ACTIONS(1543), 1, + aux_sym__text_token1, + STATE(449), 1, + aux_sym__text, + ACTIONS(1296), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, - aux_sym__text_token1, - ACTIONS(1456), 30, + ACTIONS(1294), 30, sym__verbatim_begin, - sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27637,6 +28780,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -27646,18 +28790,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [13716] = 2, - ACTIONS(1462), 6, + anon_sym_LF, + [14570] = 2, + ACTIONS(1454), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1460), 30, + ACTIONS(1452), 31, sym__verbatim_begin, - sym_delete_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27676,6 +28820,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -27685,18 +28830,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [13757] = 2, - ACTIONS(1359), 6, + anon_sym_LF, + [14612] = 3, + ACTIONS(1546), 1, + sym__verbatim_begin, + ACTIONS(1258), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1357), 30, - sym__verbatim_begin, - sym_delete_end, + ACTIONS(1256), 30, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27715,6 +28861,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -27724,18 +28871,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [13798] = 2, - ACTIONS(1363), 6, + anon_sym_LF, + [14656] = 4, + ACTIONS(1549), 1, + anon_sym_LBRACE, + STATE(456), 1, + sym_comment, + ACTIONS(1284), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1361), 30, + ACTIONS(1282), 30, sym__verbatim_begin, - sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27754,6 +28903,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -27763,18 +28913,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [13839] = 2, - ACTIONS(1367), 6, + anon_sym_LF, + [14702] = 4, + ACTIONS(1551), 1, + anon_sym_LBRACE, + STATE(609), 1, + sym_comment, + ACTIONS(1284), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1365), 30, + ACTIONS(1282), 30, sym__verbatim_begin, - sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27793,6 +28945,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -27802,18 +28955,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [13880] = 2, - ACTIONS(1371), 6, + anon_sym_LF, + [14748] = 2, + ACTIONS(1290), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1369), 30, + ACTIONS(1288), 31, sym__verbatim_begin, - sym_delete_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27832,6 +28985,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -27841,20 +28995,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [13921] = 4, - ACTIONS(1490), 1, - anon_sym_LBRACE, - STATE(428), 1, - sym_comment, - ACTIONS(1244), 5, + anon_sym_LF, + [14790] = 2, + ACTIONS(1418), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1242), 29, + ACTIONS(1416), 31, sym__verbatim_begin, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27873,6 +29025,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -27882,18 +29035,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [13966] = 2, - ACTIONS(1381), 6, + anon_sym_LF, + [14832] = 2, + ACTIONS(1422), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1379), 30, + ACTIONS(1420), 31, sym__verbatim_begin, - sym__square_bracket_span_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27912,6 +29065,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -27921,18 +29075,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [14007] = 2, - ACTIONS(1389), 6, + anon_sym_LF, + [14874] = 2, + ACTIONS(1426), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1387), 30, + ACTIONS(1424), 31, sym__verbatim_begin, - sym_emphasis_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27951,6 +29105,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -27960,18 +29115,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [14048] = 2, - ACTIONS(1375), 6, + anon_sym_LF, + [14916] = 2, + ACTIONS(1430), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1373), 30, + ACTIONS(1428), 31, sym__verbatim_begin, - sym_delete_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27990,6 +29145,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -27999,18 +29155,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [14089] = 2, - ACTIONS(1375), 6, + anon_sym_LF, + [14958] = 2, + ACTIONS(1434), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1373), 30, + ACTIONS(1432), 31, sym__verbatim_begin, - sym__square_bracket_span_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28029,6 +29185,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -28038,18 +29195,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [14130] = 2, - ACTIONS(1381), 6, + anon_sym_LF, + [15000] = 2, + ACTIONS(1410), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1379), 30, + ACTIONS(1408), 31, sym__verbatim_begin, - sym_delete_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28068,6 +29225,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -28077,18 +29235,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [14171] = 2, - ACTIONS(1385), 6, + anon_sym_LF, + [15042] = 2, + ACTIONS(1438), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1383), 30, + ACTIONS(1436), 31, sym__verbatim_begin, - sym_delete_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28107,6 +29265,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -28116,18 +29275,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [14212] = 2, - ACTIONS(1421), 6, + anon_sym_LF, + [15084] = 2, + ACTIONS(1442), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1419), 30, + ACTIONS(1440), 31, sym__verbatim_begin, - ts_builtin_sym_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28146,6 +29305,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -28155,18 +29315,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [14253] = 2, - ACTIONS(1393), 6, + anon_sym_LF, + [15126] = 2, + ACTIONS(1458), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1391), 30, + ACTIONS(1456), 31, sym__verbatim_begin, - sym_delete_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28185,6 +29345,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -28194,16 +29355,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [14294] = 2, - ACTIONS(1462), 6, + anon_sym_LF, + [15168] = 2, + ACTIONS(1450), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1460), 30, + ACTIONS(1448), 31, sym__verbatim_begin, sym_strong_end, anon_sym_LBRACE_, @@ -28224,6 +29385,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -28233,18 +29395,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [14335] = 2, - ACTIONS(1397), 6, + anon_sym_LF, + [15210] = 2, + ACTIONS(1454), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1395), 30, + ACTIONS(1452), 31, sym__verbatim_begin, - sym_delete_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28263,6 +29425,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -28272,18 +29435,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [14376] = 2, - ACTIONS(1401), 6, + anon_sym_LF, + [15252] = 2, + ACTIONS(1458), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1399), 30, + ACTIONS(1456), 31, sym__verbatim_begin, - sym_delete_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28302,6 +29465,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -28311,18 +29475,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [14417] = 2, - ACTIONS(1405), 6, + anon_sym_LF, + [15294] = 2, + ACTIONS(1462), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1403), 30, + ACTIONS(1460), 31, sym__verbatim_begin, - sym_delete_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28341,6 +29505,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -28350,18 +29515,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [14458] = 2, - ACTIONS(1409), 6, + anon_sym_LF, + [15336] = 2, + ACTIONS(1466), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1407), 30, + ACTIONS(1464), 31, sym__verbatim_begin, - sym_delete_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28380,6 +29545,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -28389,18 +29555,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [14499] = 2, - ACTIONS(1413), 6, + anon_sym_LF, + [15378] = 2, + ACTIONS(1470), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1411), 30, + ACTIONS(1468), 31, sym__verbatim_begin, - sym_delete_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28419,6 +29585,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -28428,18 +29595,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [14540] = 2, - ACTIONS(1417), 6, + anon_sym_LF, + [15420] = 2, + ACTIONS(1474), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1415), 30, + ACTIONS(1472), 31, sym__verbatim_begin, - sym_delete_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28458,6 +29625,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -28467,18 +29635,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [14581] = 2, - ACTIONS(1421), 6, + anon_sym_LF, + [15462] = 2, + ACTIONS(1478), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1419), 30, + ACTIONS(1476), 31, sym__verbatim_begin, - sym_delete_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28497,6 +29665,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -28506,18 +29675,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [14622] = 2, - ACTIONS(1425), 6, + anon_sym_LF, + [15504] = 2, + ACTIONS(1482), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1423), 30, + ACTIONS(1480), 31, sym__verbatim_begin, - sym_delete_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28536,6 +29705,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -28545,18 +29715,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [14663] = 2, - ACTIONS(1429), 6, + anon_sym_LF, + [15546] = 2, + ACTIONS(1486), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1427), 30, + ACTIONS(1484), 31, sym__verbatim_begin, - sym_delete_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28575,6 +29745,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -28584,18 +29755,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [14704] = 2, - ACTIONS(1425), 6, + anon_sym_LF, + [15588] = 2, + ACTIONS(1490), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1423), 30, + ACTIONS(1488), 31, sym__verbatim_begin, - ts_builtin_sym_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28614,6 +29785,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -28623,18 +29795,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [14745] = 2, - ACTIONS(1437), 6, + anon_sym_LF, + [15630] = 2, + ACTIONS(1494), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1435), 30, + ACTIONS(1492), 31, sym__verbatim_begin, - sym_delete_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28653,6 +29825,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -28662,18 +29835,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [14786] = 2, - ACTIONS(1371), 6, + anon_sym_LF, + [15672] = 2, + ACTIONS(1498), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1369), 30, + ACTIONS(1496), 31, sym__verbatim_begin, - sym__square_bracket_span_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28692,6 +29865,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -28701,18 +29875,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [14827] = 2, - ACTIONS(1443), 6, + anon_sym_LF, + [15714] = 2, + ACTIONS(1502), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1441), 30, + ACTIONS(1500), 31, sym__verbatim_begin, - sym_delete_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28731,6 +29905,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -28740,19 +29915,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [14868] = 3, - ACTIONS(1492), 1, - sym__verbatim_begin, - ACTIONS(1218), 6, + anon_sym_LF, + [15756] = 2, + ACTIONS(1446), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1216), 29, - sym_emphasis_end, + ACTIONS(1444), 31, + sym__verbatim_begin, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28771,6 +29945,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -28780,18 +29955,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [14911] = 2, - ACTIONS(1367), 6, + anon_sym_LF, + [15798] = 2, + ACTIONS(1506), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1365), 30, + ACTIONS(1504), 31, sym__verbatim_begin, - sym__square_bracket_span_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28810,6 +29985,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -28819,18 +29995,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [14952] = 2, - ACTIONS(1363), 6, + anon_sym_LF, + [15840] = 2, + ACTIONS(1462), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1361), 30, + ACTIONS(1460), 31, sym__verbatim_begin, - sym__square_bracket_span_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28849,6 +30025,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -28858,18 +30035,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [14993] = 2, - ACTIONS(1359), 6, + anon_sym_LF, + [15882] = 2, + ACTIONS(1466), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1357), 30, + ACTIONS(1464), 31, sym__verbatim_begin, - sym__square_bracket_span_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28888,6 +30065,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -28897,18 +30075,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [15034] = 3, - ACTIONS(1495), 1, + anon_sym_LF, + [15924] = 3, + ACTIONS(1553), 1, sym__verbatim_begin, - ACTIONS(1218), 6, + ACTIONS(1258), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1216), 29, + ACTIONS(1256), 30, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28927,7 +30106,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -28937,17 +30116,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [15077] = 2, - ACTIONS(1389), 6, + anon_sym_LF, + [15968] = 2, + ACTIONS(1513), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1387), 30, + ACTIONS(1511), 31, sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28966,7 +30146,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -28976,17 +30156,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [15118] = 2, - ACTIONS(1433), 6, + anon_sym_LF, + [16010] = 2, + ACTIONS(1414), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1431), 30, + ACTIONS(1412), 31, sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29005,7 +30186,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -29015,18 +30196,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [15159] = 2, - ACTIONS(1462), 6, + anon_sym_LF, + [16052] = 2, + ACTIONS(1470), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1460), 30, + ACTIONS(1468), 31, sym__verbatim_begin, - sym__square_bracket_span_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29045,6 +30226,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -29054,16 +30236,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [15200] = 2, - ACTIONS(1443), 6, + anon_sym_LF, + [16094] = 2, + ACTIONS(1474), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1441), 30, + ACTIONS(1472), 31, sym__verbatim_begin, ts_builtin_sym_end, anon_sym_LBRACE_, @@ -29084,6 +30266,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -29093,18 +30276,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [15241] = 2, - ACTIONS(1458), 6, + anon_sym_LF, + [16136] = 2, + ACTIONS(1478), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1456), 30, + ACTIONS(1476), 31, sym__verbatim_begin, - sym__square_bracket_span_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29123,6 +30306,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -29132,17 +30316,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [15282] = 2, - ACTIONS(1224), 6, + anon_sym_LF, + [16178] = 2, + ACTIONS(1290), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1222), 30, + ACTIONS(1288), 31, sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29161,7 +30346,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -29171,17 +30356,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [15323] = 2, - ACTIONS(1450), 6, + anon_sym_LF, + [16220] = 2, + ACTIONS(1418), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1448), 30, + ACTIONS(1416), 31, sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29200,7 +30386,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -29210,18 +30396,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [15364] = 2, - ACTIONS(1454), 6, + anon_sym_LF, + [16262] = 2, + ACTIONS(1482), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1452), 30, + ACTIONS(1480), 31, sym__verbatim_begin, - sym__square_bracket_span_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29240,6 +30426,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -29249,18 +30436,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [15405] = 2, - ACTIONS(1429), 6, + anon_sym_LF, + [16304] = 2, + ACTIONS(1422), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1427), 30, + ACTIONS(1420), 31, sym__verbatim_begin, - ts_builtin_sym_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29279,6 +30466,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -29288,18 +30476,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [15446] = 2, - ACTIONS(1437), 6, + anon_sym_LF, + [16346] = 2, + ACTIONS(1426), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1435), 30, + ACTIONS(1424), 31, sym__verbatim_begin, - ts_builtin_sym_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29318,6 +30506,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -29327,17 +30516,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [15487] = 2, - ACTIONS(1454), 6, + anon_sym_LF, + [16388] = 2, + ACTIONS(1430), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1452), 30, + ACTIONS(1428), 31, sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29356,7 +30546,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -29366,17 +30556,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [15528] = 2, - ACTIONS(1458), 6, + anon_sym_LF, + [16430] = 2, + ACTIONS(1434), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1456), 30, + ACTIONS(1432), 31, sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29395,7 +30586,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -29405,17 +30596,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [15569] = 2, - ACTIONS(1462), 6, + anon_sym_LF, + [16472] = 2, + ACTIONS(1410), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1460), 30, + ACTIONS(1408), 31, sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29434,7 +30626,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -29444,17 +30636,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [15610] = 2, - ACTIONS(1359), 6, + anon_sym_LF, + [16514] = 2, + ACTIONS(1438), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1357), 30, + ACTIONS(1436), 31, sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29473,7 +30666,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -29483,17 +30676,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [15651] = 2, - ACTIONS(1363), 6, + anon_sym_LF, + [16556] = 2, + ACTIONS(1442), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1361), 30, + ACTIONS(1440), 31, sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29512,7 +30706,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -29522,17 +30716,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [15692] = 2, - ACTIONS(1367), 6, + anon_sym_LF, + [16598] = 2, + ACTIONS(1486), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1365), 30, + ACTIONS(1484), 31, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29551,7 +30746,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -29561,17 +30756,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [15733] = 2, - ACTIONS(1371), 6, + anon_sym_LF, + [16640] = 2, + ACTIONS(1490), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1369), 30, + ACTIONS(1488), 31, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29590,7 +30786,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -29600,18 +30796,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [15774] = 2, - ACTIONS(1450), 6, + anon_sym_LF, + [16682] = 2, + ACTIONS(1494), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1448), 30, + ACTIONS(1492), 31, sym__verbatim_begin, - sym__square_bracket_span_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29630,6 +30826,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -29639,18 +30836,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [15815] = 2, - ACTIONS(1224), 6, + anon_sym_LF, + [16724] = 2, + ACTIONS(1450), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1222), 30, + ACTIONS(1448), 31, sym__verbatim_begin, - sym__square_bracket_span_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29669,6 +30866,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -29678,18 +30876,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [15856] = 2, - ACTIONS(1433), 6, + anon_sym_LF, + [16766] = 2, + ACTIONS(1454), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1431), 30, + ACTIONS(1452), 31, sym__verbatim_begin, - sym__square_bracket_span_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29708,6 +30906,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -29717,17 +30916,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [15897] = 2, - ACTIONS(1375), 6, + anon_sym_LF, + [16808] = 2, + ACTIONS(1458), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1373), 30, + ACTIONS(1456), 31, sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29746,7 +30946,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -29756,18 +30956,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [15938] = 2, - ACTIONS(1389), 6, + anon_sym_LF, + [16850] = 2, + ACTIONS(1462), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1387), 30, + ACTIONS(1460), 31, sym__verbatim_begin, - sym__square_bracket_span_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29786,6 +30986,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -29795,17 +30996,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [15979] = 2, - ACTIONS(1381), 6, + anon_sym_LF, + [16892] = 2, + ACTIONS(1466), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1379), 30, + ACTIONS(1464), 31, sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29824,7 +31026,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -29834,17 +31036,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [16020] = 2, - ACTIONS(1385), 6, + anon_sym_LF, + [16934] = 2, + ACTIONS(1470), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1383), 30, + ACTIONS(1468), 31, sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29863,7 +31066,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -29873,19 +31076,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [16061] = 3, - ACTIONS(1498), 1, - sym__verbatim_begin, - ACTIONS(1218), 6, + anon_sym_LF, + [16976] = 2, + ACTIONS(1474), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1216), 29, - sym__square_bracket_span_end, + ACTIONS(1472), 31, + sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29904,6 +31106,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -29913,17 +31116,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [16104] = 2, - ACTIONS(1393), 6, + anon_sym_LF, + [17018] = 2, + ACTIONS(1478), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1391), 30, + ACTIONS(1476), 31, sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29942,7 +31146,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -29952,17 +31156,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [16145] = 2, - ACTIONS(1355), 6, + anon_sym_LF, + [17060] = 2, + ACTIONS(1482), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1353), 30, + ACTIONS(1480), 31, sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29981,7 +31186,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -29991,17 +31196,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [16186] = 2, - ACTIONS(1397), 6, + anon_sym_LF, + [17102] = 2, + ACTIONS(1486), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1395), 30, + ACTIONS(1484), 31, sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30020,7 +31226,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -30030,17 +31236,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [16227] = 2, - ACTIONS(1401), 6, + anon_sym_LF, + [17144] = 2, + ACTIONS(1490), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1399), 30, + ACTIONS(1488), 31, sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30059,7 +31266,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -30069,17 +31276,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [16268] = 2, - ACTIONS(1405), 6, + anon_sym_LF, + [17186] = 2, + ACTIONS(1494), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1403), 30, + ACTIONS(1492), 31, sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30098,7 +31306,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -30108,17 +31316,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [16309] = 2, - ACTIONS(1409), 6, + anon_sym_LF, + [17228] = 2, + ACTIONS(1498), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1407), 30, + ACTIONS(1496), 31, sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30137,7 +31346,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -30147,17 +31356,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [16350] = 2, - ACTIONS(1413), 6, + anon_sym_LF, + [17270] = 2, + ACTIONS(1502), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1411), 30, + ACTIONS(1500), 31, sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30176,7 +31386,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -30186,17 +31396,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [16391] = 2, - ACTIONS(1417), 6, + anon_sym_LF, + [17312] = 2, + ACTIONS(1446), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1415), 30, + ACTIONS(1444), 31, sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30215,7 +31426,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -30225,17 +31436,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [16432] = 2, - ACTIONS(1421), 6, + anon_sym_LF, + [17354] = 2, + ACTIONS(1506), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1419), 30, + ACTIONS(1504), 31, sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30254,7 +31466,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -30264,17 +31476,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [16473] = 2, - ACTIONS(1425), 6, + anon_sym_LF, + [17396] = 2, + ACTIONS(1498), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1423), 30, + ACTIONS(1496), 31, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30293,7 +31506,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -30303,17 +31516,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [16514] = 2, - ACTIONS(1429), 6, + anon_sym_LF, + [17438] = 2, + ACTIONS(1502), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1427), 30, + ACTIONS(1500), 31, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30332,7 +31546,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -30342,19 +31556,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [16555] = 3, - ACTIONS(1501), 1, + anon_sym_LF, + [17480] = 3, + ACTIONS(1556), 1, sym__verbatim_begin, - ACTIONS(1218), 6, + ACTIONS(1258), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1216), 29, - ts_builtin_sym_end, + ACTIONS(1256), 30, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30373,6 +31587,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -30382,17 +31597,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [16598] = 2, - ACTIONS(1437), 6, + anon_sym_LF, + [17524] = 2, + ACTIONS(1513), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1435), 30, + ACTIONS(1511), 31, sym__verbatim_begin, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30411,7 +31627,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -30421,17 +31637,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [16639] = 2, - ACTIONS(1443), 6, + anon_sym_LF, + [17566] = 2, + ACTIONS(1506), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1441), 30, + ACTIONS(1504), 31, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30450,7 +31667,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -30460,17 +31677,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [16680] = 2, - ACTIONS(1506), 5, + anon_sym_LF, + [17608] = 2, + ACTIONS(1561), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1504), 30, + ACTIONS(1559), 31, sym__verbatim_begin, - sym_subscript_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30489,6 +31706,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -30498,18 +31716,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [16720] = 3, - ACTIONS(1508), 1, - sym__verbatim_begin, - ACTIONS(1218), 6, + anon_sym_LF, + [17649] = 2, + ACTIONS(1438), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1216), 28, + ACTIONS(1436), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30528,6 +31745,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -30537,17 +31755,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [16762] = 2, - ACTIONS(1513), 5, + anon_sym_LF, + [17690] = 2, + ACTIONS(1442), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1511), 30, + ACTIONS(1440), 30, sym__verbatim_begin, - sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30566,6 +31784,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -30575,17 +31794,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [16802] = 2, - ACTIONS(1517), 5, + anon_sym_LF, + [17731] = 2, + ACTIONS(1565), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1515), 30, + ACTIONS(1563), 31, sym__verbatim_begin, - sym_strong_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30604,6 +31823,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -30613,17 +31833,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [16842] = 2, - ACTIONS(1521), 5, + anon_sym_LF, + [17772] = 2, + ACTIONS(1569), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1519), 30, + ACTIONS(1567), 31, sym__verbatim_begin, - sym_strong_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30642,6 +31862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -30651,15 +31872,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [16882] = 2, - ACTIONS(1517), 5, + anon_sym_LF, + [17813] = 2, + ACTIONS(1450), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1515), 30, + ACTIONS(1448), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -30679,7 +31901,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -30689,15 +31911,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [16922] = 2, - ACTIONS(1513), 5, + anon_sym_LF, + [17854] = 2, + ACTIONS(1454), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1511), 30, + ACTIONS(1452), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -30717,7 +31940,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -30727,17 +31950,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [16962] = 2, - ACTIONS(1506), 5, + anon_sym_LF, + [17895] = 2, + ACTIONS(1410), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1504), 30, + ACTIONS(1408), 30, sym__verbatim_begin, - sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30756,6 +31979,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -30765,17 +31989,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [17002] = 2, - ACTIONS(1525), 5, + anon_sym_LF, + [17936] = 2, + ACTIONS(1462), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1523), 30, + ACTIONS(1460), 30, sym__verbatim_begin, - sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30794,6 +32018,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -30803,17 +32028,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [17042] = 2, - ACTIONS(1529), 5, + anon_sym_LF, + [17977] = 2, + ACTIONS(1466), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1527), 30, + ACTIONS(1464), 30, sym__verbatim_begin, - sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30832,6 +32057,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -30841,17 +32067,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [17082] = 2, - ACTIONS(1525), 5, + anon_sym_LF, + [18018] = 2, + ACTIONS(1470), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1523), 30, + ACTIONS(1468), 30, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30870,6 +32096,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -30879,17 +32106,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [17122] = 2, - ACTIONS(1529), 5, + anon_sym_LF, + [18059] = 2, + ACTIONS(1474), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1527), 30, + ACTIONS(1472), 30, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30908,6 +32135,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -30917,17 +32145,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [17162] = 2, - ACTIONS(1525), 5, + anon_sym_LF, + [18100] = 2, + ACTIONS(1478), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1523), 30, + ACTIONS(1476), 30, sym__verbatim_begin, - sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30946,6 +32174,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -30955,17 +32184,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [17202] = 2, - ACTIONS(1529), 5, + anon_sym_LF, + [18141] = 2, + ACTIONS(1482), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1527), 30, + ACTIONS(1480), 30, sym__verbatim_begin, - sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30984,6 +32213,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -30993,15 +32223,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [17242] = 2, - ACTIONS(1529), 5, + anon_sym_LF, + [18182] = 2, + ACTIONS(1486), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1527), 30, + ACTIONS(1484), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -31021,7 +32252,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -31031,15 +32262,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [17282] = 2, - ACTIONS(1525), 5, + anon_sym_LF, + [18223] = 2, + ACTIONS(1490), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1523), 30, + ACTIONS(1488), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -31059,7 +32291,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -31069,17 +32301,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [17322] = 2, - ACTIONS(1506), 5, + anon_sym_LF, + [18264] = 2, + ACTIONS(1494), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1504), 30, + ACTIONS(1492), 30, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31098,6 +32330,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -31107,17 +32340,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [17362] = 2, - ACTIONS(1513), 5, + anon_sym_LF, + [18305] = 2, + ACTIONS(1498), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1511), 30, + ACTIONS(1496), 30, sym__verbatim_begin, - sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31136,6 +32369,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -31145,17 +32379,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [17402] = 2, - ACTIONS(1517), 5, + anon_sym_LF, + [18346] = 2, + ACTIONS(1502), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1515), 30, + ACTIONS(1500), 30, sym__verbatim_begin, - sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31174,6 +32408,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -31183,17 +32418,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [17442] = 2, - ACTIONS(1521), 5, + anon_sym_LF, + [18387] = 2, + ACTIONS(1446), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1519), 30, + ACTIONS(1444), 30, sym__verbatim_begin, - sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31212,6 +32447,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -31221,17 +32457,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [17482] = 2, - ACTIONS(1506), 5, + anon_sym_LF, + [18428] = 2, + ACTIONS(1506), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, ACTIONS(1504), 30, sym__verbatim_begin, - sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31250,6 +32486,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -31259,17 +32496,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [17522] = 2, - ACTIONS(1506), 5, + anon_sym_LF, + [18469] = 3, + ACTIONS(1571), 1, + sym_emphasis_end, + ACTIONS(1284), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1504), 30, + ACTIONS(1282), 30, sym__verbatim_begin, - sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31288,6 +32526,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -31297,17 +32536,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [17562] = 2, - ACTIONS(1521), 5, + anon_sym_LF, + [18512] = 2, + ACTIONS(1569), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1519), 30, + ACTIONS(1567), 31, sym__verbatim_begin, - sym_delete_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31326,6 +32565,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -31335,17 +32575,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [17602] = 2, - ACTIONS(1517), 5, + anon_sym_LF, + [18553] = 2, + ACTIONS(1569), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1515), 30, + ACTIONS(1567), 31, sym__verbatim_begin, - sym_delete_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31364,6 +32604,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -31373,17 +32614,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [17642] = 2, - ACTIONS(1513), 5, + anon_sym_LF, + [18594] = 2, + ACTIONS(1565), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1511), 30, + ACTIONS(1563), 31, sym__verbatim_begin, - sym_delete_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31402,6 +32643,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -31411,17 +32653,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [17682] = 2, - ACTIONS(1513), 5, + anon_sym_LF, + [18635] = 2, + ACTIONS(1565), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1511), 30, + ACTIONS(1563), 31, sym__verbatim_begin, - sym__square_bracket_span_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31440,6 +32682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -31449,17 +32692,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [17722] = 2, - ACTIONS(1521), 5, + anon_sym_LF, + [18676] = 2, + ACTIONS(1575), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1519), 30, + ACTIONS(1573), 31, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31478,6 +32720,8 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -31487,17 +32731,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [17762] = 2, - ACTIONS(1529), 5, + anon_sym_LF, + [18717] = 2, + ACTIONS(1569), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1527), 30, + ACTIONS(1567), 31, sym__verbatim_begin, - sym_delete_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31516,6 +32760,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -31525,17 +32770,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [17802] = 2, - ACTIONS(1517), 5, + anon_sym_LF, + [18758] = 2, + ACTIONS(1569), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1515), 30, + ACTIONS(1567), 31, sym__verbatim_begin, - sym__square_bracket_span_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31554,6 +32799,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -31563,17 +32809,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [17842] = 2, - ACTIONS(1525), 5, + anon_sym_LF, + [18799] = 2, + ACTIONS(1565), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1523), 30, + ACTIONS(1563), 31, sym__verbatim_begin, - sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31592,6 +32837,8 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -31601,17 +32848,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [17882] = 2, - ACTIONS(1525), 5, + anon_sym_LF, + [18840] = 2, + ACTIONS(1575), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1523), 30, + ACTIONS(1573), 31, sym__verbatim_begin, - sym_emphasis_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31630,6 +32877,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -31639,15 +32887,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [17922] = 2, - ACTIONS(1529), 5, + anon_sym_LF, + [18881] = 2, + ACTIONS(1565), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1527), 30, + ACTIONS(1563), 31, sym__verbatim_begin, sym_emphasis_end, anon_sym_LBRACE_, @@ -31668,6 +32916,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -31677,17 +32926,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [17962] = 2, - ACTIONS(1506), 5, + anon_sym_LF, + [18922] = 2, + ACTIONS(1579), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1504), 30, + ACTIONS(1577), 31, sym__verbatim_begin, - sym_insert_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31706,6 +32955,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -31715,17 +32965,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [18002] = 2, - ACTIONS(1521), 5, + anon_sym_LF, + [18963] = 2, + ACTIONS(1565), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1519), 30, + ACTIONS(1563), 31, sym__verbatim_begin, - sym_insert_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31744,6 +32994,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -31753,17 +33004,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [18042] = 2, - ACTIONS(1517), 5, + anon_sym_LF, + [19004] = 2, + ACTIONS(1583), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1515), 30, + ACTIONS(1581), 31, sym__verbatim_begin, - sym_insert_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31782,6 +33033,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -31791,17 +33043,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [18082] = 2, - ACTIONS(1513), 5, + anon_sym_LF, + [19045] = 2, + ACTIONS(1575), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1511), 30, + ACTIONS(1573), 31, sym__verbatim_begin, - sym_insert_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31820,6 +33072,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -31829,17 +33082,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [18122] = 2, - ACTIONS(1513), 5, + anon_sym_LF, + [19086] = 2, + ACTIONS(1579), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1511), 30, + ACTIONS(1577), 31, sym__verbatim_begin, - sym_emphasis_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31858,6 +33111,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -31867,17 +33121,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [18162] = 2, - ACTIONS(1529), 5, + anon_sym_LF, + [19127] = 3, + ACTIONS(1585), 1, + sym_strong_end, + ACTIONS(1284), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1527), 30, + ACTIONS(1282), 30, sym__verbatim_begin, - sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31896,6 +33151,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -31905,17 +33161,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [18202] = 2, - ACTIONS(1525), 5, + anon_sym_LF, + [19170] = 2, + ACTIONS(1565), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1523), 30, + ACTIONS(1563), 31, sym__verbatim_begin, - sym_insert_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31934,6 +33190,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -31943,18 +33200,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [18242] = 3, - ACTIONS(1531), 1, - sym_strong_end, - ACTIONS(1244), 5, + anon_sym_LF, + [19211] = 2, + ACTIONS(1561), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1242), 29, + ACTIONS(1559), 31, sym__verbatim_begin, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31973,6 +33229,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -31982,15 +33239,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [18284] = 2, - ACTIONS(1521), 5, + anon_sym_LF, + [19252] = 2, + ACTIONS(1569), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1519), 30, + ACTIONS(1567), 31, sym__verbatim_begin, sym__square_bracket_span_end, anon_sym_LBRACE_, @@ -32011,6 +33268,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -32020,18 +33278,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [18324] = 3, - ACTIONS(1533), 1, - sym_strong_end, - ACTIONS(1244), 5, + anon_sym_LF, + [19293] = 2, + ACTIONS(1583), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1242), 29, + ACTIONS(1581), 31, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32050,6 +33307,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -32059,17 +33317,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [18366] = 2, - ACTIONS(1506), 5, + anon_sym_LF, + [19334] = 2, + ACTIONS(1583), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1504), 30, + ACTIONS(1581), 31, sym__verbatim_begin, - sym__square_bracket_span_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32088,6 +33346,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -32097,17 +33356,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [18406] = 2, - ACTIONS(1506), 5, + anon_sym_LF, + [19375] = 2, + ACTIONS(1583), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1504), 30, + ACTIONS(1581), 31, sym__verbatim_begin, - sym_highlighted_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32126,6 +33385,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -32135,17 +33395,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [18446] = 2, - ACTIONS(1521), 5, + anon_sym_LF, + [19416] = 2, + ACTIONS(1561), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1519), 30, + ACTIONS(1559), 31, sym__verbatim_begin, - sym_highlighted_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32164,6 +33424,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -32173,17 +33434,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [18486] = 2, - ACTIONS(1517), 5, + anon_sym_LF, + [19457] = 2, + ACTIONS(1575), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1515), 30, + ACTIONS(1573), 31, sym__verbatim_begin, - sym_highlighted_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32202,6 +33463,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -32211,17 +33473,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [18526] = 2, - ACTIONS(1513), 5, + anon_sym_LF, + [19498] = 2, + ACTIONS(1569), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1511), 30, + ACTIONS(1567), 31, sym__verbatim_begin, - sym_highlighted_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32240,6 +33502,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -32249,17 +33512,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [18566] = 2, - ACTIONS(1529), 5, + anon_sym_LF, + [19539] = 2, + ACTIONS(1565), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1527), 30, + ACTIONS(1563), 31, sym__verbatim_begin, - sym_highlighted_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32278,6 +33541,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -32287,16 +33551,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [18606] = 2, - ACTIONS(1443), 6, + anon_sym_LF, + [19580] = 3, + ACTIONS(1571), 1, + sym_strong_end, + ACTIONS(1284), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1441), 29, + ACTIONS(1282), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32316,6 +33581,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -32325,17 +33591,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [18646] = 2, - ACTIONS(1389), 6, + anon_sym_LF, + [19623] = 2, + ACTIONS(1583), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1387), 29, + ACTIONS(1581), 31, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32354,6 +33620,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -32363,17 +33630,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [18686] = 2, - ACTIONS(1433), 6, + anon_sym_LF, + [19664] = 2, + ACTIONS(1575), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1431), 29, + ACTIONS(1573), 31, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32392,6 +33659,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -32401,17 +33669,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [18726] = 2, - ACTIONS(1525), 5, + anon_sym_LF, + [19705] = 2, + ACTIONS(1561), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1523), 30, + ACTIONS(1559), 31, sym__verbatim_begin, - sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32430,6 +33697,8 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -32439,17 +33708,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [18766] = 2, - ACTIONS(1517), 5, + anon_sym_LF, + [19746] = 2, + ACTIONS(1583), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1515), 30, + ACTIONS(1581), 31, sym__verbatim_begin, - sym_emphasis_end, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32468,6 +33737,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -32477,16 +33747,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [18806] = 2, - ACTIONS(1224), 6, + anon_sym_LF, + [19787] = 2, + ACTIONS(1569), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1222), 29, + ACTIONS(1567), 31, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32506,6 +33775,8 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -32515,16 +33786,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [18846] = 2, - ACTIONS(1450), 6, + anon_sym_LF, + [19828] = 3, + ACTIONS(1585), 1, + sym_emphasis_end, + ACTIONS(1284), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1448), 29, + ACTIONS(1282), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32544,6 +33816,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -32553,17 +33826,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [18886] = 2, - ACTIONS(1529), 5, + anon_sym_LF, + [19871] = 2, + ACTIONS(1579), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1527), 30, + ACTIONS(1577), 31, sym__verbatim_begin, - sym_strong_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32582,6 +33855,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -32591,17 +33865,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [18926] = 2, - ACTIONS(1437), 6, + anon_sym_LF, + [19912] = 2, + ACTIONS(1579), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1435), 29, + ACTIONS(1577), 31, sym__verbatim_begin, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32620,6 +33894,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -32629,17 +33904,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [18966] = 2, - ACTIONS(1521), 5, + anon_sym_LF, + [19953] = 2, + ACTIONS(1579), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1519), 30, + ACTIONS(1577), 31, sym__verbatim_begin, - sym_emphasis_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32658,6 +33933,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -32667,17 +33943,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [19006] = 2, - ACTIONS(1454), 6, + anon_sym_LF, + [19994] = 2, + ACTIONS(1583), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1452), 29, + ACTIONS(1581), 31, sym__verbatim_begin, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32696,6 +33972,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -32705,17 +33982,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [19046] = 2, - ACTIONS(1458), 6, + anon_sym_LF, + [20035] = 2, + ACTIONS(1561), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1456), 29, + ACTIONS(1559), 31, sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32734,6 +34011,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -32743,17 +34021,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [19086] = 2, - ACTIONS(1462), 6, + anon_sym_LF, + [20076] = 2, + ACTIONS(1569), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1460), 29, + ACTIONS(1567), 31, sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32772,6 +34050,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -32781,17 +34060,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [19126] = 2, - ACTIONS(1359), 6, + anon_sym_LF, + [20117] = 2, + ACTIONS(1561), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1357), 29, + ACTIONS(1559), 31, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32810,6 +34089,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -32819,17 +34099,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [19166] = 2, - ACTIONS(1363), 6, + anon_sym_LF, + [20158] = 2, + ACTIONS(1579), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1361), 29, + ACTIONS(1577), 31, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32848,6 +34128,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -32857,17 +34138,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [19206] = 2, - ACTIONS(1367), 6, + anon_sym_LF, + [20199] = 2, + ACTIONS(1579), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1365), 29, + ACTIONS(1577), 31, sym__verbatim_begin, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32886,6 +34167,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -32895,17 +34177,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [19246] = 2, - ACTIONS(1371), 6, + anon_sym_LF, + [20240] = 2, + ACTIONS(1561), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1369), 29, + ACTIONS(1559), 31, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32924,6 +34206,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -32933,17 +34216,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [19286] = 2, - ACTIONS(1525), 5, + anon_sym_LF, + [20281] = 2, + ACTIONS(1575), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1523), 30, + ACTIONS(1573), 31, sym__verbatim_begin, - sym_subscript_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32962,6 +34245,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -32971,17 +34255,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [19326] = 2, - ACTIONS(1506), 5, + anon_sym_LF, + [20322] = 2, + ACTIONS(1583), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1504), 30, + ACTIONS(1581), 31, sym__verbatim_begin, - sym_emphasis_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33000,6 +34284,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -33009,17 +34294,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [19366] = 2, - ACTIONS(1375), 6, + anon_sym_LF, + [20363] = 2, + ACTIONS(1575), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1373), 29, + ACTIONS(1573), 31, sym__verbatim_begin, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33038,6 +34323,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -33047,17 +34333,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [19406] = 2, - ACTIONS(1513), 5, + anon_sym_LF, + [20404] = 2, + ACTIONS(1583), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1511), 30, + ACTIONS(1581), 31, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33076,6 +34361,8 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -33085,17 +34372,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [19446] = 2, - ACTIONS(1381), 6, + anon_sym_LF, + [20445] = 2, + ACTIONS(1565), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1379), 29, + ACTIONS(1563), 31, sym__verbatim_begin, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33114,6 +34401,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -33123,17 +34411,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [19486] = 2, - ACTIONS(1385), 6, + anon_sym_LF, + [20486] = 2, + ACTIONS(1583), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1383), 29, + ACTIONS(1581), 31, sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33152,6 +34440,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -33161,17 +34450,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [19526] = 2, - ACTIONS(1529), 5, + anon_sym_LF, + [20527] = 2, + ACTIONS(1569), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1527), 30, + ACTIONS(1567), 31, sym__verbatim_begin, - sym_subscript_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33190,6 +34479,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -33199,17 +34489,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [19566] = 2, - ACTIONS(1393), 6, + anon_sym_LF, + [20568] = 2, + ACTIONS(1575), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1391), 29, + ACTIONS(1573), 31, sym__verbatim_begin, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33228,6 +34518,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -33237,17 +34528,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [19606] = 2, - ACTIONS(1355), 6, + anon_sym_LF, + [20609] = 2, + ACTIONS(1579), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1353), 29, + ACTIONS(1577), 31, sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33266,6 +34557,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -33275,16 +34567,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [19646] = 2, - ACTIONS(1397), 6, + anon_sym_LF, + [20650] = 2, + ACTIONS(1579), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1395), 29, + ACTIONS(1577), 31, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -33304,6 +34595,8 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -33313,17 +34606,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [19686] = 2, - ACTIONS(1401), 6, + anon_sym_LF, + [20691] = 2, + ACTIONS(1579), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1399), 29, + ACTIONS(1577), 31, sym__verbatim_begin, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33342,6 +34635,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -33351,17 +34645,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [19726] = 2, - ACTIONS(1405), 6, + anon_sym_LF, + [20732] = 2, + ACTIONS(1561), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1403), 29, + ACTIONS(1559), 31, sym__verbatim_begin, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33380,6 +34674,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -33389,17 +34684,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [19766] = 2, - ACTIONS(1409), 6, + anon_sym_LF, + [20773] = 2, + ACTIONS(1561), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1407), 29, + ACTIONS(1559), 31, sym__verbatim_begin, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33418,6 +34713,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -33427,17 +34723,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [19806] = 2, - ACTIONS(1413), 6, + anon_sym_LF, + [20814] = 3, + ACTIONS(1587), 1, + sym__verbatim_begin, + ACTIONS(1258), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1411), 29, - sym__verbatim_begin, + ACTIONS(1256), 29, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33456,6 +34753,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -33465,16 +34763,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [19846] = 2, - ACTIONS(1417), 6, + anon_sym_LF, + [20857] = 2, + ACTIONS(1513), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1415), 29, + ACTIONS(1511), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -33494,6 +34792,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -33503,16 +34802,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [19886] = 2, - ACTIONS(1421), 6, + anon_sym_LF, + [20898] = 2, + ACTIONS(1414), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1419), 29, + ACTIONS(1412), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -33532,6 +34831,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -33541,17 +34841,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [19926] = 2, - ACTIONS(1425), 6, + anon_sym_LF, + [20939] = 2, + ACTIONS(1575), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1423), 29, + ACTIONS(1573), 31, sym__verbatim_begin, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33570,6 +34870,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -33579,16 +34880,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [19966] = 2, - ACTIONS(1429), 6, + anon_sym_LF, + [20980] = 2, + ACTIONS(1290), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1427), 29, + ACTIONS(1288), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -33608,6 +34909,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -33617,17 +34919,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [20006] = 3, - ACTIONS(1531), 1, - sym_emphasis_end, - ACTIONS(1244), 5, + anon_sym_LF, + [21021] = 2, + ACTIONS(1418), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1242), 29, + ACTIONS(1416), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -33647,6 +34948,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -33656,17 +34958,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [20048] = 2, - ACTIONS(1525), 5, + anon_sym_LF, + [21062] = 2, + ACTIONS(1575), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1523), 30, + ACTIONS(1573), 31, sym__verbatim_begin, - sym_strong_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33685,6 +34987,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -33694,17 +34997,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [20088] = 2, - ACTIONS(1517), 5, + anon_sym_LF, + [21103] = 2, + ACTIONS(1565), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1515), 30, + ACTIONS(1563), 31, sym__verbatim_begin, - ts_builtin_sym_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33723,6 +35026,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -33732,16 +35036,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [20128] = 2, - ACTIONS(1521), 5, + anon_sym_LF, + [21144] = 2, + ACTIONS(1561), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1519), 30, + ACTIONS(1559), 31, sym__verbatim_begin, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33760,7 +35065,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -33770,15 +35075,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [20168] = 2, - ACTIONS(1506), 5, + anon_sym_LF, + [21185] = 2, + ACTIONS(1422), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1504), 30, + ACTIONS(1420), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -33798,7 +35104,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -33808,17 +35114,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [20208] = 3, - ACTIONS(1533), 1, - sym_emphasis_end, - ACTIONS(1244), 5, + anon_sym_LF, + [21226] = 2, + ACTIONS(1426), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1242), 29, + ACTIONS(1424), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -33838,6 +35143,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -33847,17 +35153,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [20250] = 2, - ACTIONS(1521), 5, + anon_sym_LF, + [21267] = 2, + ACTIONS(1430), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1519), 30, + ACTIONS(1428), 30, sym__verbatim_begin, - sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33876,6 +35182,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -33885,17 +35192,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [20290] = 2, - ACTIONS(1517), 5, + anon_sym_LF, + [21308] = 2, + ACTIONS(1434), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1515), 30, + ACTIONS(1432), 30, sym__verbatim_begin, - sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33914,6 +35221,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -33923,17 +35231,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [20330] = 2, - ACTIONS(1513), 5, + anon_sym_LF, + [21349] = 2, + ACTIONS(1458), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1511), 30, + ACTIONS(1456), 30, sym__verbatim_begin, - sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33952,6 +35260,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -33961,15 +35270,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [20370] = 2, - ACTIONS(1521), 5, + anon_sym_LF, + [21390] = 2, + ACTIONS(1579), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1519), 29, + ACTIONS(1577), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -33989,6 +35298,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -33998,15 +35308,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [20409] = 2, - ACTIONS(1506), 5, + anon_sym_LF, + [21430] = 2, + ACTIONS(1565), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1504), 29, + ACTIONS(1563), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -34026,6 +35336,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -34035,15 +35346,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [20448] = 2, - ACTIONS(1525), 5, + anon_sym_LF, + [21470] = 2, + ACTIONS(1583), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1523), 29, + ACTIONS(1581), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -34063,6 +35374,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -34072,15 +35384,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [20487] = 2, - ACTIONS(1529), 5, + anon_sym_LF, + [21510] = 2, + ACTIONS(1575), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1527), 29, + ACTIONS(1573), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -34100,6 +35412,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -34109,15 +35422,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [20526] = 2, - ACTIONS(1517), 5, + anon_sym_LF, + [21550] = 2, + ACTIONS(1561), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1515), 29, + ACTIONS(1559), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -34137,6 +35450,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -34146,15 +35460,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [20565] = 2, - ACTIONS(1513), 5, + anon_sym_LF, + [21590] = 2, + ACTIONS(1569), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1511), 29, + ACTIONS(1567), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -34174,6 +35488,7 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -34183,5408 +35498,5496 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, sym__whitespace1, - sym__newline, - [20604] = 9, - ACTIONS(1535), 1, + anon_sym_LF, + [21630] = 9, + ACTIONS(1590), 1, sym__id, - ACTIONS(1537), 1, + ACTIONS(1592), 1, anon_sym_PERCENT, - ACTIONS(1541), 1, + ACTIONS(1596), 1, anon_sym_DOT, - ACTIONS(1543), 1, + ACTIONS(1598), 1, sym__curly_bracket_span_end, - STATE(610), 1, + STATE(630), 1, aux_sym_inline_attribute_repeat1, - STATE(633), 1, + STATE(644), 1, sym__comment_with_newline, - STATE(1017), 1, + STATE(982), 1, sym_key, - STATE(634), 2, - sym_class, - sym_key_value, - ACTIONS(1539), 3, + ACTIONS(1594), 3, sym__whitespace1, - sym__newline, + anon_sym_LF, sym_identifier, - [20635] = 9, - ACTIONS(1535), 1, + STATE(645), 3, + sym__newline, + sym_class, + sym_key_value, + [21662] = 9, + ACTIONS(1590), 1, sym__id, - ACTIONS(1537), 1, + ACTIONS(1592), 1, anon_sym_PERCENT, - ACTIONS(1541), 1, + ACTIONS(1596), 1, anon_sym_DOT, - ACTIONS(1545), 1, + ACTIONS(1600), 1, sym__curly_bracket_span_end, STATE(631), 1, aux_sym_inline_attribute_repeat1, - STATE(633), 1, + STATE(644), 1, sym__comment_with_newline, - STATE(1017), 1, + STATE(982), 1, sym_key, - STATE(634), 2, - sym_class, - sym_key_value, - ACTIONS(1539), 3, + ACTIONS(1594), 3, sym__whitespace1, - sym__newline, + anon_sym_LF, sym_identifier, - [20666] = 9, - ACTIONS(1535), 1, + STATE(645), 3, + sym__newline, + sym_class, + sym_key_value, + [21694] = 9, + ACTIONS(1590), 1, sym__id, - ACTIONS(1537), 1, + ACTIONS(1592), 1, anon_sym_PERCENT, - ACTIONS(1541), 1, + ACTIONS(1596), 1, anon_sym_DOT, - ACTIONS(1547), 1, + ACTIONS(1602), 1, sym__curly_bracket_span_end, - STATE(631), 1, + STATE(623), 1, aux_sym_inline_attribute_repeat1, - STATE(633), 1, + STATE(644), 1, sym__comment_with_newline, - STATE(1017), 1, + STATE(982), 1, sym_key, - STATE(634), 2, - sym_class, - sym_key_value, - ACTIONS(1539), 3, + ACTIONS(1594), 3, sym__whitespace1, - sym__newline, + anon_sym_LF, sym_identifier, - [20697] = 9, - ACTIONS(1535), 1, + STATE(645), 3, + sym__newline, + sym_class, + sym_key_value, + [21726] = 9, + ACTIONS(1590), 1, sym__id, - ACTIONS(1537), 1, + ACTIONS(1592), 1, anon_sym_PERCENT, - ACTIONS(1541), 1, + ACTIONS(1596), 1, anon_sym_DOT, - ACTIONS(1549), 1, + ACTIONS(1604), 1, sym__curly_bracket_span_end, - STATE(611), 1, + STATE(625), 1, aux_sym_inline_attribute_repeat1, - STATE(633), 1, + STATE(644), 1, sym__comment_with_newline, - STATE(1017), 1, + STATE(982), 1, sym_key, - STATE(634), 2, - sym_class, - sym_key_value, - ACTIONS(1539), 3, + ACTIONS(1594), 3, sym__whitespace1, - sym__newline, + anon_sym_LF, sym_identifier, - [20728] = 9, - ACTIONS(1535), 1, + STATE(645), 3, + sym__newline, + sym_class, + sym_key_value, + [21758] = 9, + ACTIONS(1590), 1, sym__id, - ACTIONS(1537), 1, + ACTIONS(1592), 1, anon_sym_PERCENT, - ACTIONS(1541), 1, + ACTIONS(1596), 1, anon_sym_DOT, - ACTIONS(1551), 1, + ACTIONS(1606), 1, sym__curly_bracket_span_end, - STATE(631), 1, + STATE(627), 1, aux_sym_inline_attribute_repeat1, - STATE(633), 1, + STATE(644), 1, sym__comment_with_newline, - STATE(1017), 1, + STATE(982), 1, sym_key, - STATE(634), 2, - sym_class, - sym_key_value, - ACTIONS(1539), 3, + ACTIONS(1594), 3, sym__whitespace1, - sym__newline, + anon_sym_LF, sym_identifier, - [20759] = 9, - ACTIONS(1535), 1, + STATE(645), 3, + sym__newline, + sym_class, + sym_key_value, + [21790] = 9, + ACTIONS(1608), 1, sym__id, - ACTIONS(1537), 1, + ACTIONS(1611), 1, anon_sym_PERCENT, - ACTIONS(1541), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1553), 1, + ACTIONS(1620), 1, sym__curly_bracket_span_end, - STATE(631), 1, + STATE(625), 1, aux_sym_inline_attribute_repeat1, - STATE(633), 1, + STATE(644), 1, sym__comment_with_newline, - STATE(1017), 1, + STATE(982), 1, sym_key, - STATE(634), 2, - sym_class, - sym_key_value, - ACTIONS(1539), 3, + ACTIONS(1614), 3, sym__whitespace1, - sym__newline, + anon_sym_LF, sym_identifier, - [20790] = 9, - ACTIONS(1535), 1, + STATE(645), 3, + sym__newline, + sym_class, + sym_key_value, + [21822] = 9, + ACTIONS(1590), 1, sym__id, - ACTIONS(1537), 1, + ACTIONS(1592), 1, anon_sym_PERCENT, - ACTIONS(1541), 1, + ACTIONS(1596), 1, anon_sym_DOT, - ACTIONS(1555), 1, + ACTIONS(1622), 1, sym__curly_bracket_span_end, - STATE(618), 1, + STATE(625), 1, aux_sym_inline_attribute_repeat1, - STATE(633), 1, + STATE(644), 1, sym__comment_with_newline, - STATE(1017), 1, + STATE(982), 1, sym_key, - STATE(634), 2, - sym_class, - sym_key_value, - ACTIONS(1539), 3, + ACTIONS(1594), 3, sym__whitespace1, - sym__newline, + anon_sym_LF, sym_identifier, - [20821] = 9, - ACTIONS(1535), 1, + STATE(645), 3, + sym__newline, + sym_class, + sym_key_value, + [21854] = 9, + ACTIONS(1590), 1, sym__id, - ACTIONS(1537), 1, + ACTIONS(1592), 1, anon_sym_PERCENT, - ACTIONS(1541), 1, + ACTIONS(1596), 1, anon_sym_DOT, - ACTIONS(1557), 1, + ACTIONS(1624), 1, sym__curly_bracket_span_end, - STATE(629), 1, + STATE(625), 1, aux_sym_inline_attribute_repeat1, - STATE(633), 1, + STATE(644), 1, sym__comment_with_newline, - STATE(1017), 1, + STATE(982), 1, sym_key, - STATE(634), 2, - sym_class, - sym_key_value, - ACTIONS(1539), 3, + ACTIONS(1594), 3, sym__whitespace1, - sym__newline, + anon_sym_LF, sym_identifier, - [20852] = 9, - ACTIONS(1535), 1, + STATE(645), 3, + sym__newline, + sym_class, + sym_key_value, + [21886] = 9, + ACTIONS(1590), 1, sym__id, - ACTIONS(1537), 1, + ACTIONS(1592), 1, anon_sym_PERCENT, - ACTIONS(1541), 1, + ACTIONS(1596), 1, anon_sym_DOT, - ACTIONS(1559), 1, + ACTIONS(1626), 1, sym__curly_bracket_span_end, - STATE(631), 1, + STATE(629), 1, aux_sym_inline_attribute_repeat1, - STATE(633), 1, + STATE(644), 1, sym__comment_with_newline, - STATE(1017), 1, + STATE(982), 1, sym_key, - STATE(634), 2, - sym_class, - sym_key_value, - ACTIONS(1539), 3, + ACTIONS(1594), 3, sym__whitespace1, - sym__newline, + anon_sym_LF, sym_identifier, - [20883] = 9, - ACTIONS(1535), 1, + STATE(645), 3, + sym__newline, + sym_class, + sym_key_value, + [21918] = 9, + ACTIONS(1590), 1, sym__id, - ACTIONS(1537), 1, + ACTIONS(1592), 1, anon_sym_PERCENT, - ACTIONS(1541), 1, + ACTIONS(1596), 1, anon_sym_DOT, - ACTIONS(1561), 1, + ACTIONS(1628), 1, sym__curly_bracket_span_end, - STATE(631), 1, + STATE(625), 1, aux_sym_inline_attribute_repeat1, - STATE(633), 1, + STATE(644), 1, sym__comment_with_newline, - STATE(1017), 1, + STATE(982), 1, sym_key, - STATE(634), 2, - sym_class, - sym_key_value, - ACTIONS(1539), 3, + ACTIONS(1594), 3, sym__whitespace1, - sym__newline, + anon_sym_LF, sym_identifier, - [20914] = 9, - ACTIONS(1535), 1, + STATE(645), 3, + sym__newline, + sym_class, + sym_key_value, + [21950] = 9, + ACTIONS(1590), 1, sym__id, - ACTIONS(1537), 1, + ACTIONS(1592), 1, anon_sym_PERCENT, - ACTIONS(1541), 1, + ACTIONS(1596), 1, anon_sym_DOT, - ACTIONS(1563), 1, + ACTIONS(1630), 1, sym__curly_bracket_span_end, - STATE(620), 1, + STATE(625), 1, aux_sym_inline_attribute_repeat1, - STATE(633), 1, + STATE(644), 1, sym__comment_with_newline, - STATE(1017), 1, + STATE(982), 1, sym_key, - STATE(634), 2, - sym_class, - sym_key_value, - ACTIONS(1539), 3, + ACTIONS(1594), 3, sym__whitespace1, - sym__newline, + anon_sym_LF, sym_identifier, - [20945] = 9, - ACTIONS(1535), 1, + STATE(645), 3, + sym__newline, + sym_class, + sym_key_value, + [21982] = 9, + ACTIONS(1590), 1, sym__id, - ACTIONS(1537), 1, + ACTIONS(1592), 1, anon_sym_PERCENT, - ACTIONS(1541), 1, + ACTIONS(1596), 1, anon_sym_DOT, - ACTIONS(1565), 1, + ACTIONS(1632), 1, sym__curly_bracket_span_end, - STATE(631), 1, + STATE(625), 1, aux_sym_inline_attribute_repeat1, - STATE(633), 1, + STATE(644), 1, sym__comment_with_newline, - STATE(1017), 1, + STATE(982), 1, sym_key, - STATE(634), 2, - sym_class, - sym_key_value, - ACTIONS(1539), 3, + ACTIONS(1594), 3, sym__whitespace1, - sym__newline, + anon_sym_LF, sym_identifier, - [20976] = 9, - ACTIONS(1535), 1, + STATE(645), 3, + sym__newline, + sym_class, + sym_key_value, + [22014] = 9, + ACTIONS(1590), 1, sym__id, - ACTIONS(1537), 1, + ACTIONS(1592), 1, anon_sym_PERCENT, - ACTIONS(1541), 1, + ACTIONS(1596), 1, anon_sym_DOT, - ACTIONS(1567), 1, + ACTIONS(1634), 1, sym__curly_bracket_span_end, - STATE(622), 1, + STATE(625), 1, aux_sym_inline_attribute_repeat1, - STATE(633), 1, + STATE(644), 1, sym__comment_with_newline, - STATE(1017), 1, + STATE(982), 1, sym_key, - STATE(634), 2, - sym_class, - sym_key_value, - ACTIONS(1539), 3, + ACTIONS(1594), 3, sym__whitespace1, - sym__newline, + anon_sym_LF, sym_identifier, - [21007] = 9, - ACTIONS(1535), 1, + STATE(645), 3, + sym__newline, + sym_class, + sym_key_value, + [22046] = 9, + ACTIONS(1590), 1, sym__id, - ACTIONS(1537), 1, + ACTIONS(1592), 1, anon_sym_PERCENT, - ACTIONS(1541), 1, + ACTIONS(1596), 1, anon_sym_DOT, - ACTIONS(1569), 1, + ACTIONS(1636), 1, sym__curly_bracket_span_end, - STATE(631), 1, + STATE(634), 1, aux_sym_inline_attribute_repeat1, - STATE(633), 1, + STATE(644), 1, sym__comment_with_newline, - STATE(1017), 1, + STATE(982), 1, sym_key, - STATE(634), 2, - sym_class, - sym_key_value, - ACTIONS(1539), 3, + ACTIONS(1594), 3, sym__whitespace1, - sym__newline, + anon_sym_LF, sym_identifier, - [21038] = 9, - ACTIONS(1535), 1, + STATE(645), 3, + sym__newline, + sym_class, + sym_key_value, + [22078] = 9, + ACTIONS(1590), 1, sym__id, - ACTIONS(1537), 1, + ACTIONS(1592), 1, anon_sym_PERCENT, - ACTIONS(1541), 1, + ACTIONS(1596), 1, anon_sym_DOT, - ACTIONS(1571), 1, + ACTIONS(1638), 1, sym__curly_bracket_span_end, - STATE(614), 1, + STATE(625), 1, aux_sym_inline_attribute_repeat1, - STATE(633), 1, + STATE(644), 1, sym__comment_with_newline, - STATE(1017), 1, + STATE(982), 1, sym_key, - STATE(634), 2, - sym_class, - sym_key_value, - ACTIONS(1539), 3, + ACTIONS(1594), 3, sym__whitespace1, - sym__newline, + anon_sym_LF, sym_identifier, - [21069] = 9, - ACTIONS(1535), 1, + STATE(645), 3, + sym__newline, + sym_class, + sym_key_value, + [22110] = 9, + ACTIONS(1590), 1, sym__id, - ACTIONS(1537), 1, + ACTIONS(1592), 1, anon_sym_PERCENT, - ACTIONS(1541), 1, + ACTIONS(1596), 1, anon_sym_DOT, - ACTIONS(1573), 1, + ACTIONS(1640), 1, sym__curly_bracket_span_end, - STATE(631), 1, + STATE(632), 1, aux_sym_inline_attribute_repeat1, - STATE(633), 1, + STATE(644), 1, sym__comment_with_newline, - STATE(1017), 1, + STATE(982), 1, sym_key, - STATE(634), 2, - sym_class, - sym_key_value, - ACTIONS(1539), 3, + ACTIONS(1594), 3, sym__whitespace1, - sym__newline, + anon_sym_LF, sym_identifier, - [21100] = 9, - ACTIONS(1535), 1, + STATE(645), 3, + sym__newline, + sym_class, + sym_key_value, + [22142] = 9, + ACTIONS(1590), 1, sym__id, - ACTIONS(1537), 1, + ACTIONS(1592), 1, anon_sym_PERCENT, - ACTIONS(1541), 1, + ACTIONS(1596), 1, anon_sym_DOT, - ACTIONS(1575), 1, + ACTIONS(1642), 1, sym__curly_bracket_span_end, - STATE(626), 1, + STATE(625), 1, aux_sym_inline_attribute_repeat1, - STATE(633), 1, + STATE(644), 1, sym__comment_with_newline, - STATE(1017), 1, + STATE(982), 1, sym_key, - STATE(634), 2, - sym_class, - sym_key_value, - ACTIONS(1539), 3, + ACTIONS(1594), 3, sym__whitespace1, - sym__newline, + anon_sym_LF, sym_identifier, - [21131] = 9, - ACTIONS(1535), 1, + STATE(645), 3, + sym__newline, + sym_class, + sym_key_value, + [22174] = 9, + ACTIONS(1590), 1, sym__id, - ACTIONS(1537), 1, + ACTIONS(1592), 1, anon_sym_PERCENT, - ACTIONS(1541), 1, + ACTIONS(1596), 1, anon_sym_DOT, - ACTIONS(1577), 1, + ACTIONS(1644), 1, sym__curly_bracket_span_end, - STATE(631), 1, + STATE(636), 1, aux_sym_inline_attribute_repeat1, - STATE(633), 1, + STATE(644), 1, sym__comment_with_newline, - STATE(1017), 1, + STATE(982), 1, sym_key, - STATE(634), 2, - sym_class, - sym_key_value, - ACTIONS(1539), 3, + ACTIONS(1594), 3, sym__whitespace1, - sym__newline, + anon_sym_LF, sym_identifier, - [21162] = 9, - ACTIONS(1535), 1, + STATE(645), 3, + sym__newline, + sym_class, + sym_key_value, + [22206] = 9, + ACTIONS(1590), 1, sym__id, - ACTIONS(1537), 1, + ACTIONS(1592), 1, anon_sym_PERCENT, - ACTIONS(1541), 1, + ACTIONS(1596), 1, anon_sym_DOT, - ACTIONS(1579), 1, + ACTIONS(1646), 1, sym__curly_bracket_span_end, - STATE(624), 1, + STATE(642), 1, aux_sym_inline_attribute_repeat1, - STATE(633), 1, + STATE(644), 1, sym__comment_with_newline, - STATE(1017), 1, + STATE(982), 1, sym_key, - STATE(634), 2, - sym_class, - sym_key_value, - ACTIONS(1539), 3, + ACTIONS(1594), 3, sym__whitespace1, - sym__newline, + anon_sym_LF, sym_identifier, - [21193] = 9, - ACTIONS(1535), 1, + STATE(645), 3, + sym__newline, + sym_class, + sym_key_value, + [22238] = 9, + ACTIONS(1590), 1, sym__id, - ACTIONS(1537), 1, + ACTIONS(1592), 1, anon_sym_PERCENT, - ACTIONS(1541), 1, + ACTIONS(1596), 1, anon_sym_DOT, - ACTIONS(1581), 1, + ACTIONS(1648), 1, sym__curly_bracket_span_end, - STATE(617), 1, + STATE(641), 1, aux_sym_inline_attribute_repeat1, - STATE(633), 1, + STATE(644), 1, sym__comment_with_newline, - STATE(1017), 1, + STATE(982), 1, sym_key, - STATE(634), 2, - sym_class, - sym_key_value, - ACTIONS(1539), 3, + ACTIONS(1594), 3, sym__whitespace1, - sym__newline, + anon_sym_LF, sym_identifier, - [21224] = 9, - ACTIONS(1535), 1, + STATE(645), 3, + sym__newline, + sym_class, + sym_key_value, + [22270] = 9, + ACTIONS(1590), 1, sym__id, - ACTIONS(1537), 1, + ACTIONS(1592), 1, anon_sym_PERCENT, - ACTIONS(1541), 1, + ACTIONS(1596), 1, anon_sym_DOT, - ACTIONS(1583), 1, + ACTIONS(1650), 1, sym__curly_bracket_span_end, - STATE(631), 1, + STATE(626), 1, aux_sym_inline_attribute_repeat1, - STATE(633), 1, + STATE(644), 1, sym__comment_with_newline, - STATE(1017), 1, + STATE(982), 1, sym_key, - STATE(634), 2, + ACTIONS(1594), 3, + sym__whitespace1, + anon_sym_LF, + sym_identifier, + STATE(645), 3, + sym__newline, sym_class, sym_key_value, - ACTIONS(1539), 3, - sym__whitespace1, - sym__newline, - sym_identifier, - [21255] = 9, - ACTIONS(1535), 1, + [22302] = 9, + ACTIONS(1590), 1, sym__id, - ACTIONS(1537), 1, + ACTIONS(1592), 1, anon_sym_PERCENT, - ACTIONS(1541), 1, + ACTIONS(1596), 1, anon_sym_DOT, - ACTIONS(1585), 1, + ACTIONS(1652), 1, sym__curly_bracket_span_end, - STATE(613), 1, + STATE(625), 1, aux_sym_inline_attribute_repeat1, - STATE(633), 1, + STATE(644), 1, sym__comment_with_newline, - STATE(1017), 1, + STATE(982), 1, sym_key, - STATE(634), 2, - sym_class, - sym_key_value, - ACTIONS(1539), 3, + ACTIONS(1594), 3, sym__whitespace1, - sym__newline, + anon_sym_LF, sym_identifier, - [21286] = 9, - ACTIONS(1587), 1, - sym__id, + STATE(645), 3, + sym__newline, + sym_class, + sym_key_value, + [22334] = 9, ACTIONS(1590), 1, + sym__id, + ACTIONS(1592), 1, anon_sym_PERCENT, ACTIONS(1596), 1, anon_sym_DOT, - ACTIONS(1599), 1, + ACTIONS(1654), 1, sym__curly_bracket_span_end, - STATE(631), 1, + STATE(625), 1, aux_sym_inline_attribute_repeat1, - STATE(633), 1, + STATE(644), 1, sym__comment_with_newline, - STATE(1017), 1, + STATE(982), 1, sym_key, - STATE(634), 2, - sym_class, - sym_key_value, - ACTIONS(1593), 3, + ACTIONS(1594), 3, sym__whitespace1, - sym__newline, + anon_sym_LF, sym_identifier, - [21317] = 1, - ACTIONS(1601), 7, + STATE(645), 3, + sym__newline, + sym_class, + sym_key_value, + [22366] = 1, + ACTIONS(1656), 7, sym__curly_bracket_span_end, sym__id, anon_sym_PERCENT, sym__whitespace1, - sym__newline, + anon_sym_LF, anon_sym_DOT, sym_identifier, - [21327] = 1, - ACTIONS(1603), 7, + [22376] = 1, + ACTIONS(1658), 7, sym__curly_bracket_span_end, sym__id, anon_sym_PERCENT, sym__whitespace1, - sym__newline, + anon_sym_LF, anon_sym_DOT, sym_identifier, - [21337] = 1, - ACTIONS(1605), 7, + [22386] = 1, + ACTIONS(1660), 7, sym__curly_bracket_span_end, sym__id, anon_sym_PERCENT, sym__whitespace1, - sym__newline, + anon_sym_LF, anon_sym_DOT, sym_identifier, - [21347] = 1, - ACTIONS(1607), 7, + [22396] = 1, + ACTIONS(1662), 7, sym__curly_bracket_span_end, sym__id, anon_sym_PERCENT, sym__whitespace1, - sym__newline, + anon_sym_LF, anon_sym_DOT, sym_identifier, - [21357] = 1, - ACTIONS(1609), 7, + [22406] = 1, + ACTIONS(1664), 7, sym__curly_bracket_span_end, sym__id, anon_sym_PERCENT, sym__whitespace1, - sym__newline, + anon_sym_LF, anon_sym_DOT, sym_identifier, - [21367] = 1, - ACTIONS(1611), 7, + [22416] = 1, + ACTIONS(1666), 7, sym__curly_bracket_span_end, sym__id, anon_sym_PERCENT, sym__whitespace1, - sym__newline, + anon_sym_LF, anon_sym_DOT, sym_identifier, - [21377] = 1, - ACTIONS(1613), 7, + [22426] = 1, + ACTIONS(1668), 7, sym__curly_bracket_span_end, sym__id, anon_sym_PERCENT, sym__whitespace1, - sym__newline, + anon_sym_LF, anon_sym_DOT, sym_identifier, - [21387] = 1, - ACTIONS(1615), 7, + [22436] = 1, + ACTIONS(1670), 7, sym__curly_bracket_span_end, sym__id, anon_sym_PERCENT, sym__whitespace1, - sym__newline, + anon_sym_LF, anon_sym_DOT, sym_identifier, - [21397] = 1, - ACTIONS(1617), 7, + [22446] = 1, + ACTIONS(1672), 7, sym__curly_bracket_span_end, sym__id, anon_sym_PERCENT, sym__whitespace1, - sym__newline, + anon_sym_LF, anon_sym_DOT, sym_identifier, - [21407] = 5, - ACTIONS(1621), 1, + [22456] = 5, + ACTIONS(1676), 1, anon_sym_LBRACK, - ACTIONS(1623), 1, + ACTIONS(1678), 1, anon_sym_LBRACE, - STATE(532), 1, + STATE(555), 1, sym_inline_attribute, - STATE(1041), 1, + STATE(1051), 1, sym__curly_bracket_span_begin, - ACTIONS(1619), 2, + ACTIONS(1674), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - [21424] = 5, - ACTIONS(1621), 1, + [22473] = 5, + ACTIONS(1676), 1, anon_sym_LBRACK, - ACTIONS(1625), 1, + ACTIONS(1680), 1, anon_sym_LBRACE, - STATE(531), 1, + STATE(525), 1, sym_inline_attribute, - STATE(977), 1, + STATE(1035), 1, sym__curly_bracket_span_begin, - ACTIONS(1619), 2, + ACTIONS(1674), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - [21441] = 6, - ACTIONS(1627), 1, + [22490] = 6, + ACTIONS(1682), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(1629), 1, + ACTIONS(1684), 1, anon_sym_LBRACK, - ACTIONS(1631), 1, + ACTIONS(1686), 1, anon_sym_LPAREN, - STATE(574), 1, + STATE(461), 1, sym__link_label, - STATE(575), 1, + STATE(462), 1, sym_inline_link_destination, - STATE(1202), 1, + STATE(1132), 1, sym__parens_span_begin, - [21460] = 5, - ACTIONS(1621), 1, - anon_sym_LBRACK, - ACTIONS(1633), 1, - anon_sym_LBRACE, - STATE(511), 1, - sym_inline_attribute, - STATE(993), 1, - sym__curly_bracket_span_begin, - ACTIONS(1619), 2, + [22509] = 6, + ACTIONS(1688), 1, anon_sym_LBRACK_RBRACK, - anon_sym_LPAREN, - [21477] = 5, - ACTIONS(1621), 1, + ACTIONS(1690), 1, anon_sym_LBRACK, - ACTIONS(1635), 1, - anon_sym_LBRACE, - STATE(553), 1, - sym_inline_attribute, - STATE(1073), 1, - sym__curly_bracket_span_begin, - ACTIONS(1619), 2, - anon_sym_LBRACK_RBRACK, + ACTIONS(1692), 1, anon_sym_LPAREN, - [21494] = 6, - ACTIONS(1629), 1, + STATE(350), 1, + sym__link_label, + STATE(351), 1, + sym_inline_link_destination, + STATE(1182), 1, + sym__parens_span_begin, + [22528] = 6, + ACTIONS(1690), 1, anon_sym_LBRACK, - ACTIONS(1631), 1, + ACTIONS(1692), 1, anon_sym_LPAREN, - ACTIONS(1637), 1, + ACTIONS(1694), 1, anon_sym_LBRACK_RBRACK, - STATE(571), 1, + STATE(353), 1, sym__link_label, - STATE(572), 1, + STATE(354), 1, sym_inline_link_destination, - STATE(1202), 1, + STATE(1182), 1, sym__parens_span_begin, - [21513] = 6, - ACTIONS(1639), 1, + [22547] = 6, + ACTIONS(1696), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(1641), 1, + ACTIONS(1698), 1, anon_sym_LBRACK, - ACTIONS(1643), 1, + ACTIONS(1700), 1, anon_sym_LPAREN, - STATE(465), 1, - sym_inline_link_destination, - STATE(468), 1, + STATE(338), 1, sym__link_label, - STATE(1192), 1, + STATE(339), 1, + sym_inline_link_destination, + STATE(932), 1, sym__parens_span_begin, - [21532] = 6, - ACTIONS(1641), 1, + [22566] = 4, + ACTIONS(1704), 1, + anon_sym_PERCENT, + STATE(665), 1, + aux_sym__comment_with_newline_repeat1, + STATE(690), 1, + sym__newline, + ACTIONS(1702), 3, + sym_backslash_escape, + aux_sym__comment_with_newline_token1, + anon_sym_LF, + [22581] = 5, + ACTIONS(1676), 1, anon_sym_LBRACK, - ACTIONS(1643), 1, + ACTIONS(1706), 1, + anon_sym_LBRACE, + STATE(607), 1, + sym_inline_attribute, + STATE(987), 1, + sym__curly_bracket_span_begin, + ACTIONS(1674), 2, + anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - ACTIONS(1645), 1, + [22598] = 6, + ACTIONS(1708), 1, anon_sym_LBRACK_RBRACK, - STATE(470), 1, + ACTIONS(1710), 1, + anon_sym_LBRACK, + ACTIONS(1712), 1, + anon_sym_LPAREN, + STATE(239), 1, + sym__link_label, + STATE(240), 1, sym_inline_link_destination, - STATE(474), 1, + STATE(1152), 1, + sym__parens_span_begin, + [22617] = 6, + ACTIONS(1710), 1, + anon_sym_LBRACK, + ACTIONS(1712), 1, + anon_sym_LPAREN, + ACTIONS(1714), 1, + anon_sym_LBRACK_RBRACK, + STATE(242), 1, sym__link_label, - STATE(1192), 1, + STATE(243), 1, + sym_inline_link_destination, + STATE(1152), 1, sym__parens_span_begin, - [21551] = 6, - ACTIONS(1647), 1, + [22636] = 6, + ACTIONS(1716), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(1649), 1, + ACTIONS(1718), 1, anon_sym_LBRACK, - ACTIONS(1651), 1, + ACTIONS(1720), 1, anon_sym_LPAREN, - STATE(225), 1, - sym_inline_link_destination, - STATE(453), 1, + STATE(388), 1, sym__link_label, - STATE(1122), 1, + STATE(389), 1, + sym_inline_link_destination, + STATE(1192), 1, sym__parens_span_begin, - [21570] = 6, - ACTIONS(1649), 1, + [22655] = 6, + ACTIONS(1718), 1, anon_sym_LBRACK, - ACTIONS(1651), 1, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1653), 1, + ACTIONS(1722), 1, anon_sym_LBRACK_RBRACK, - STATE(227), 1, + STATE(391), 1, sym__link_label, - STATE(228), 1, + STATE(392), 1, sym_inline_link_destination, - STATE(1122), 1, + STATE(1192), 1, sym__parens_span_begin, - [21589] = 5, - ACTIONS(1621), 1, + [22674] = 4, + ACTIONS(1724), 1, + anon_sym_PERCENT, + STATE(665), 1, + aux_sym__comment_with_newline_repeat1, + STATE(690), 1, + sym__newline, + ACTIONS(1702), 3, + sym_backslash_escape, + aux_sym__comment_with_newline_token1, + anon_sym_LF, + [22689] = 4, + ACTIONS(1729), 1, + anon_sym_PERCENT, + STATE(665), 1, + aux_sym__comment_with_newline_repeat1, + STATE(690), 1, + sym__newline, + ACTIONS(1726), 3, + sym_backslash_escape, + aux_sym__comment_with_newline_token1, + anon_sym_LF, + [22704] = 5, + ACTIONS(1676), 1, anon_sym_LBRACK, - ACTIONS(1655), 1, + ACTIONS(1731), 1, anon_sym_LBRACE, - STATE(598), 1, + STATE(551), 1, sym_inline_attribute, - STATE(1057), 1, + STATE(1067), 1, sym__curly_bracket_span_begin, - ACTIONS(1619), 2, + ACTIONS(1674), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - [21606] = 6, - ACTIONS(1657), 1, + [22721] = 6, + ACTIONS(1733), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(1659), 1, + ACTIONS(1735), 1, anon_sym_LBRACK, - ACTIONS(1661), 1, + ACTIONS(1737), 1, anon_sym_LPAREN, - STATE(286), 1, + STATE(420), 1, sym__link_label, - STATE(290), 1, + STATE(421), 1, sym_inline_link_destination, - STATE(1061), 1, + STATE(1202), 1, sym__parens_span_begin, - [21625] = 5, - ACTIONS(1621), 1, + [22740] = 6, + ACTIONS(1735), 1, anon_sym_LBRACK, - ACTIONS(1663), 1, - anon_sym_LBRACE, - STATE(604), 1, - sym_inline_attribute, - STATE(1089), 1, - sym__curly_bracket_span_begin, - ACTIONS(1619), 2, - anon_sym_LBRACK_RBRACK, + ACTIONS(1737), 1, anon_sym_LPAREN, - [21642] = 6, - ACTIONS(1665), 1, + ACTIONS(1739), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(1667), 1, - anon_sym_LBRACK, - ACTIONS(1669), 1, - anon_sym_LPAREN, - STATE(487), 1, + STATE(423), 1, sym__link_label, - STATE(488), 1, + STATE(424), 1, sym_inline_link_destination, - STATE(1182), 1, + STATE(1202), 1, sym__parens_span_begin, - [21661] = 5, - ACTIONS(1621), 1, + [22759] = 5, + ACTIONS(1676), 1, anon_sym_LBRACK, - ACTIONS(1671), 1, + ACTIONS(1741), 1, anon_sym_LBRACE, - STATE(577), 1, + STATE(553), 1, sym_inline_attribute, - STATE(944), 1, + STATE(954), 1, sym__curly_bracket_span_begin, - ACTIONS(1619), 2, + ACTIONS(1674), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - [21678] = 6, - ACTIONS(1667), 1, - anon_sym_LBRACK, - ACTIONS(1669), 1, - anon_sym_LPAREN, - ACTIONS(1673), 1, - anon_sym_LBRACK_RBRACK, - STATE(484), 1, - sym__link_label, - STATE(485), 1, - sym_inline_link_destination, - STATE(1182), 1, - sym__parens_span_begin, - [21697] = 5, - ACTIONS(1621), 1, + [22776] = 5, + ACTIONS(1676), 1, anon_sym_LBRACK, - ACTIONS(1675), 1, + ACTIONS(1743), 1, anon_sym_LBRACE, - STATE(527), 1, + STATE(591), 1, sym_inline_attribute, - STATE(1065), 1, + STATE(1083), 1, sym__curly_bracket_span_begin, - ACTIONS(1619), 2, + ACTIONS(1674), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - [21714] = 6, - ACTIONS(1677), 1, + [22793] = 6, + ACTIONS(1745), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(1679), 1, + ACTIONS(1747), 1, anon_sym_LBRACK, - ACTIONS(1681), 1, + ACTIONS(1749), 1, anon_sym_LPAREN, - STATE(422), 1, - sym_inline_link_destination, - STATE(423), 1, + STATE(611), 1, sym__link_label, - STATE(1112), 1, + STATE(612), 1, + sym_inline_link_destination, + STATE(1212), 1, sym__parens_span_begin, - [21733] = 6, - ACTIONS(1683), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(1685), 1, + [22812] = 6, + ACTIONS(1747), 1, anon_sym_LBRACK, - ACTIONS(1687), 1, + ACTIONS(1749), 1, anon_sym_LPAREN, - STATE(442), 1, + ACTIONS(1751), 1, + anon_sym_LBRACK_RBRACK, + STATE(523), 1, sym__link_label, - STATE(443), 1, + STATE(524), 1, sym_inline_link_destination, - STATE(1172), 1, + STATE(1212), 1, sym__parens_span_begin, - [21752] = 6, - ACTIONS(1685), 1, + [22831] = 4, + ACTIONS(1753), 1, + anon_sym_PERCENT, + STATE(658), 1, + aux_sym__comment_with_newline_repeat1, + STATE(690), 1, + sym__newline, + ACTIONS(1702), 3, + sym_backslash_escape, + aux_sym__comment_with_newline_token1, + anon_sym_LF, + [22846] = 5, + ACTIONS(1676), 1, anon_sym_LBRACK, - ACTIONS(1687), 1, + ACTIONS(1755), 1, + anon_sym_LBRACE, + STATE(569), 1, + sym_inline_attribute, + STATE(971), 1, + sym__curly_bracket_span_begin, + ACTIONS(1674), 2, + anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - ACTIONS(1689), 1, + [22863] = 5, + ACTIONS(1676), 1, + anon_sym_LBRACK, + ACTIONS(1757), 1, + anon_sym_LBRACE, + STATE(615), 1, + sym_inline_attribute, + STATE(1099), 1, + sym__curly_bracket_span_begin, + ACTIONS(1674), 2, anon_sym_LBRACK_RBRACK, - STATE(439), 1, - sym__link_label, - STATE(440), 1, - sym_inline_link_destination, - STATE(1172), 1, - sym__parens_span_begin, - [21771] = 5, - ACTIONS(1621), 1, + anon_sym_LPAREN, + [22880] = 5, + ACTIONS(1676), 1, anon_sym_LBRACK, - ACTIONS(1691), 1, + ACTIONS(1759), 1, anon_sym_LBRACE, - STATE(543), 1, + STATE(546), 1, sym_inline_attribute, - STATE(1025), 1, + STATE(1003), 1, sym__curly_bracket_span_begin, - ACTIONS(1619), 2, + ACTIONS(1674), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - [21788] = 6, - ACTIONS(1693), 1, + [22897] = 6, + ACTIONS(1761), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(1695), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, - ACTIONS(1697), 1, + ACTIONS(1765), 1, anon_sym_LPAREN, - STATE(350), 1, + STATE(272), 1, sym__link_label, - STATE(351), 1, + STATE(273), 1, sym_inline_link_destination, - STATE(1152), 1, + STATE(1162), 1, sym__parens_span_begin, - [21807] = 6, - ACTIONS(1699), 1, + [22916] = 6, + ACTIONS(1767), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(1701), 1, + ACTIONS(1769), 1, anon_sym_LBRACK, - ACTIONS(1703), 1, + ACTIONS(1771), 1, anon_sym_LPAREN, - STATE(258), 1, + STATE(317), 1, sym__link_label, - STATE(259), 1, + STATE(318), 1, sym_inline_link_destination, - STATE(1132), 1, + STATE(1122), 1, sym__parens_span_begin, - [21826] = 6, - ACTIONS(1705), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(1707), 1, + [22935] = 6, + ACTIONS(1769), 1, anon_sym_LBRACK, - ACTIONS(1709), 1, + ACTIONS(1771), 1, anon_sym_LPAREN, - STATE(396), 1, + ACTIONS(1773), 1, + anon_sym_LBRACK_RBRACK, + STATE(336), 1, sym__link_label, - STATE(397), 1, + STATE(337), 1, sym_inline_link_destination, - STATE(1162), 1, + STATE(1122), 1, sym__parens_span_begin, - [21845] = 6, - ACTIONS(1707), 1, + [22954] = 6, + ACTIONS(1763), 1, anon_sym_LBRACK, - ACTIONS(1709), 1, + ACTIONS(1765), 1, anon_sym_LPAREN, - ACTIONS(1711), 1, + ACTIONS(1775), 1, anon_sym_LBRACK_RBRACK, - STATE(393), 1, + STATE(275), 1, sym__link_label, - STATE(394), 1, + STATE(276), 1, sym_inline_link_destination, STATE(1162), 1, sym__parens_span_begin, - [21864] = 6, - ACTIONS(1659), 1, + [22973] = 6, + ACTIONS(1698), 1, anon_sym_LBRACK, - ACTIONS(1661), 1, + ACTIONS(1700), 1, anon_sym_LPAREN, - ACTIONS(1713), 1, + ACTIONS(1777), 1, + anon_sym_LBRACK_RBRACK, + STATE(297), 1, + sym__link_label, + STATE(298), 1, + sym_inline_link_destination, + STATE(932), 1, + sym__parens_span_begin, + [22992] = 6, + ACTIONS(1779), 1, anon_sym_LBRACK_RBRACK, - STATE(279), 1, + ACTIONS(1781), 1, + anon_sym_LBRACK, + ACTIONS(1783), 1, + anon_sym_LPAREN, + STATE(493), 1, sym__link_label, - STATE(281), 1, + STATE(494), 1, sym_inline_link_destination, - STATE(1061), 1, + STATE(1142), 1, sym__parens_span_begin, - [21883] = 5, - ACTIONS(1621), 1, + [23011] = 5, + ACTIONS(1676), 1, anon_sym_LBRACK, - ACTIONS(1715), 1, + ACTIONS(1785), 1, anon_sym_LBRACE, - STATE(554), 1, + STATE(560), 1, sym_inline_attribute, - STATE(1009), 1, + STATE(1019), 1, sym__curly_bracket_span_begin, - ACTIONS(1619), 2, + ACTIONS(1674), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - [21900] = 5, - ACTIONS(1621), 1, + [23028] = 5, + ACTIONS(1676), 1, anon_sym_LBRACK, - ACTIONS(1717), 1, + ACTIONS(1787), 1, anon_sym_LBRACE, - STATE(518), 1, + STATE(547), 1, sym_inline_attribute, - STATE(961), 1, + STATE(1107), 1, sym__curly_bracket_span_begin, - ACTIONS(1619), 2, + ACTIONS(1674), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - [21917] = 6, - ACTIONS(1701), 1, - anon_sym_LBRACK, - ACTIONS(1703), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK_RBRACK, - STATE(261), 1, - sym__link_label, - STATE(262), 1, - sym_inline_link_destination, - STATE(1132), 1, - sym__parens_span_begin, - [21936] = 6, - ACTIONS(1721), 1, + [23045] = 6, + ACTIONS(1789), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(1723), 1, + ACTIONS(1791), 1, anon_sym_LBRACK, - ACTIONS(1725), 1, + ACTIONS(1793), 1, anon_sym_LPAREN, - STATE(301), 1, + STATE(311), 1, sym__link_label, - STATE(302), 1, + STATE(312), 1, sym_inline_link_destination, - STATE(1142), 1, + STATE(1172), 1, sym__parens_span_begin, - [21955] = 6, - ACTIONS(1723), 1, + [23064] = 6, + ACTIONS(1791), 1, anon_sym_LBRACK, - ACTIONS(1725), 1, + ACTIONS(1793), 1, anon_sym_LPAREN, - ACTIONS(1727), 1, + ACTIONS(1795), 1, anon_sym_LBRACK_RBRACK, - STATE(304), 1, + STATE(314), 1, sym__link_label, - STATE(305), 1, - sym_inline_link_destination, - STATE(1142), 1, - sym__parens_span_begin, - [21974] = 6, - ACTIONS(1679), 1, - anon_sym_LBRACK, - ACTIONS(1681), 1, - anon_sym_LPAREN, - ACTIONS(1729), 1, - anon_sym_LBRACK_RBRACK, - STATE(399), 1, + STATE(315), 1, sym_inline_link_destination, - STATE(400), 1, - sym__link_label, - STATE(1112), 1, + STATE(1172), 1, sym__parens_span_begin, - [21993] = 6, - ACTIONS(1695), 1, + [23083] = 6, + ACTIONS(1684), 1, anon_sym_LBRACK, - ACTIONS(1697), 1, + ACTIONS(1686), 1, anon_sym_LPAREN, - ACTIONS(1731), 1, + ACTIONS(1797), 1, anon_sym_LBRACK_RBRACK, - STATE(347), 1, + STATE(458), 1, sym__link_label, - STATE(348), 1, + STATE(459), 1, sym_inline_link_destination, - STATE(1152), 1, + STATE(1132), 1, sym__parens_span_begin, - [22012] = 3, - ACTIONS(1735), 1, - anon_sym_PERCENT, - STATE(676), 1, - aux_sym__comment_with_newline_repeat1, - ACTIONS(1733), 3, - sym_backslash_escape, - aux_sym__comment_with_newline_token1, - sym__newline, - [22024] = 3, - ACTIONS(1737), 1, - anon_sym_PERCENT, - STATE(678), 1, - aux_sym__comment_with_newline_repeat1, - ACTIONS(1733), 3, - sym_backslash_escape, - aux_sym__comment_with_newline_token1, - sym__newline, - [22036] = 3, - ACTIONS(1739), 1, - anon_sym_PERCENT, - STATE(677), 1, - aux_sym__comment_with_newline_repeat1, - ACTIONS(1733), 3, - sym_backslash_escape, - aux_sym__comment_with_newline_token1, - sym__newline, - [22048] = 3, - ACTIONS(1744), 1, + [23102] = 4, + ACTIONS(1799), 1, anon_sym_PERCENT, - STATE(677), 1, + STATE(664), 1, aux_sym__comment_with_newline_repeat1, - ACTIONS(1741), 3, - sym_backslash_escape, - aux_sym__comment_with_newline_token1, + STATE(690), 1, sym__newline, - [22060] = 3, - ACTIONS(1746), 1, - anon_sym_PERCENT, - STATE(677), 1, - aux_sym__comment_with_newline_repeat1, - ACTIONS(1733), 3, + ACTIONS(1702), 3, sym_backslash_escape, aux_sym__comment_with_newline_token1, - sym__newline, - [22072] = 1, - ACTIONS(1748), 4, + anon_sym_LF, + [23117] = 6, + ACTIONS(1781), 1, + anon_sym_LBRACK, + ACTIONS(1783), 1, + anon_sym_LPAREN, + ACTIONS(1801), 1, + anon_sym_LBRACK_RBRACK, + STATE(496), 1, + sym__link_label, + STATE(497), 1, + sym_inline_link_destination, + STATE(1142), 1, + sym__parens_span_begin, + [23136] = 1, + ACTIONS(1803), 4, sym_backslash_escape, anon_sym_PERCENT, aux_sym__comment_with_newline_token1, - sym__newline, - [22079] = 3, - ACTIONS(1750), 1, + anon_sym_LF, + [23143] = 3, + ACTIONS(1805), 1, anon_sym_DQUOTE, - ACTIONS(1752), 1, + ACTIONS(1807), 1, aux_sym_value_token2, - STATE(638), 1, + STATE(647), 1, sym_value, - [22089] = 2, - ACTIONS(1756), 1, - anon_sym_LBRACK, - ACTIONS(1754), 2, - anon_sym_LBRACK_RBRACK, - anon_sym_LPAREN, - [22097] = 2, - ACTIONS(1760), 1, + [23153] = 2, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1758), 2, + ACTIONS(1809), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - [22105] = 2, - ACTIONS(1762), 1, - sym__square_bracket_span_begin, - ACTIONS(1765), 1, - sym__in_fallback, - [22112] = 2, - ACTIONS(1765), 1, - sym__in_fallback, - ACTIONS(1767), 1, - sym__emphasis_mark_begin, - [22119] = 2, - ACTIONS(1770), 1, - sym__strong_mark_begin, - ACTIONS(1773), 1, - sym__in_fallback, - [22126] = 2, - ACTIONS(1773), 1, - sym__in_fallback, - ACTIONS(1775), 1, - sym__superscript_mark_begin, - [22133] = 2, - ACTIONS(1773), 1, + [23161] = 2, + ACTIONS(1815), 1, + anon_sym_LBRACK, + ACTIONS(1813), 2, + anon_sym_LBRACK_RBRACK, + anon_sym_LPAREN, + [23169] = 1, + ACTIONS(1817), 2, + sym__parens_span_mark_begin, sym__in_fallback, - ACTIONS(1778), 1, - sym__subscript_mark_begin, - [22140] = 2, - ACTIONS(1773), 1, + [23174] = 1, + ACTIONS(1819), 2, + sym__parens_span_mark_begin, sym__in_fallback, - ACTIONS(1781), 1, - sym__highlighted_mark_begin, - [22147] = 2, - ACTIONS(1784), 1, + [23179] = 2, + ACTIONS(1821), 1, sym__emphasis_mark_begin, - ACTIONS(1787), 1, - sym__in_fallback, - [22154] = 2, - ACTIONS(1773), 1, - sym__in_fallback, - ACTIONS(1789), 1, - sym__insert_mark_begin, - [22161] = 2, - ACTIONS(1773), 1, + ACTIONS(1824), 1, sym__in_fallback, - ACTIONS(1792), 1, - sym__delete_mark_begin, - [22168] = 2, - ACTIONS(1787), 1, + [23186] = 2, + ACTIONS(1824), 1, sym__in_fallback, - ACTIONS(1795), 1, + ACTIONS(1826), 1, sym__strong_mark_begin, - [22175] = 2, - ACTIONS(1773), 1, - sym__in_fallback, - ACTIONS(1798), 1, - sym__square_bracket_span_begin, - [22182] = 2, - ACTIONS(1773), 1, - sym__in_fallback, - ACTIONS(1801), 1, - sym__square_bracket_span_begin, - [22189] = 2, - ACTIONS(1773), 1, - sym__in_fallback, - ACTIONS(1804), 1, - sym__square_bracket_span_begin, - [22196] = 1, - ACTIONS(1773), 2, - sym__parens_span_mark_begin, - sym__in_fallback, - [22201] = 2, - ACTIONS(1787), 1, + [23193] = 2, + ACTIONS(1829), 1, + sym__curly_bracket_span_mark_begin, + ACTIONS(1832), 1, sym__in_fallback, - ACTIONS(1807), 1, - sym__superscript_mark_begin, - [22208] = 2, - ACTIONS(1810), 1, + [23200] = 2, + ACTIONS(1834), 1, sym__emphasis_mark_begin, - ACTIONS(1813), 1, + ACTIONS(1837), 1, sym__in_fallback, - [22215] = 2, - ACTIONS(1813), 1, + [23207] = 2, + ACTIONS(1837), 1, sym__in_fallback, - ACTIONS(1815), 1, + ACTIONS(1839), 1, sym__strong_mark_begin, - [22222] = 2, - ACTIONS(1818), 1, - sym__curly_bracket_span_mark_begin, - ACTIONS(1821), 1, + [23214] = 2, + ACTIONS(1837), 1, sym__in_fallback, - [22229] = 2, - ACTIONS(1787), 1, + ACTIONS(1842), 1, + sym__superscript_mark_begin, + [23221] = 2, + ACTIONS(1837), 1, sym__in_fallback, - ACTIONS(1823), 1, + ACTIONS(1845), 1, sym__subscript_mark_begin, - [22236] = 2, - ACTIONS(1787), 1, + [23228] = 2, + ACTIONS(1837), 1, sym__in_fallback, - ACTIONS(1826), 1, + ACTIONS(1848), 1, sym__highlighted_mark_begin, - [22243] = 2, - ACTIONS(1787), 1, + [23235] = 2, + ACTIONS(1837), 1, sym__in_fallback, - ACTIONS(1829), 1, + ACTIONS(1851), 1, sym__insert_mark_begin, - [22250] = 2, - ACTIONS(1787), 1, + [23242] = 2, + ACTIONS(1837), 1, sym__in_fallback, - ACTIONS(1832), 1, + ACTIONS(1854), 1, sym__delete_mark_begin, - [22257] = 2, - ACTIONS(1787), 1, + [23249] = 2, + ACTIONS(1857), 1, + anon_sym_LF, + STATE(236), 1, + sym__newline, + [23256] = 2, + ACTIONS(1837), 1, sym__in_fallback, - ACTIONS(1835), 1, - sym__square_bracket_span_begin, - [22264] = 2, - ACTIONS(1787), 1, + ACTIONS(1859), 1, + sym__square_bracket_span_mark_begin, + [23263] = 2, + ACTIONS(1837), 1, sym__in_fallback, - ACTIONS(1838), 1, - sym__square_bracket_span_begin, - [22271] = 2, - ACTIONS(1787), 1, + ACTIONS(1862), 1, + sym__square_bracket_span_mark_begin, + [23270] = 2, + ACTIONS(1837), 1, sym__in_fallback, - ACTIONS(1841), 1, - sym__square_bracket_span_begin, - [22278] = 2, - ACTIONS(1844), 1, - sym__id, - STATE(937), 1, - sym_reference_label, - [22285] = 1, - ACTIONS(1787), 2, - sym__parens_span_mark_begin, + ACTIONS(1865), 1, + sym__square_bracket_span_mark_begin, + [23277] = 2, + ACTIONS(1868), 1, + sym__emphasis_mark_begin, + ACTIONS(1871), 1, sym__in_fallback, - [22290] = 2, - ACTIONS(1846), 1, - anon_sym_PERCENT, - STATE(929), 1, - sym__comment_with_newline, - [22297] = 2, - ACTIONS(1844), 1, - sym__id, - STATE(903), 1, - sym_reference_label, - [22304] = 2, - ACTIONS(1846), 1, - anon_sym_PERCENT, - STATE(895), 1, - sym__comment_with_newline, - [22311] = 2, - ACTIONS(1848), 1, + [23284] = 2, + ACTIONS(1871), 1, + sym__in_fallback, + ACTIONS(1873), 1, sym__strong_mark_begin, - ACTIONS(1851), 1, + [23291] = 2, + ACTIONS(1876), 1, + sym__curly_bracket_span_mark_begin, + ACTIONS(1879), 1, sym__in_fallback, - [22318] = 2, - ACTIONS(1853), 1, + [23298] = 2, + ACTIONS(1881), 1, sym__emphasis_mark_begin, - ACTIONS(1856), 1, + ACTIONS(1884), 1, sym__in_fallback, - [22325] = 2, - ACTIONS(1856), 1, + [23305] = 2, + ACTIONS(1884), 1, sym__in_fallback, - ACTIONS(1858), 1, + ACTIONS(1886), 1, sym__strong_mark_begin, - [22332] = 2, - ACTIONS(1856), 1, + [23312] = 2, + ACTIONS(1884), 1, sym__in_fallback, - ACTIONS(1861), 1, + ACTIONS(1889), 1, sym__superscript_mark_begin, - [22339] = 2, - ACTIONS(1856), 1, + [23319] = 2, + ACTIONS(1884), 1, sym__in_fallback, - ACTIONS(1864), 1, + ACTIONS(1892), 1, sym__subscript_mark_begin, - [22346] = 2, - ACTIONS(1856), 1, + [23326] = 2, + ACTIONS(1884), 1, sym__in_fallback, - ACTIONS(1867), 1, + ACTIONS(1895), 1, sym__highlighted_mark_begin, - [22353] = 2, - ACTIONS(1856), 1, + [23333] = 2, + ACTIONS(1884), 1, sym__in_fallback, - ACTIONS(1870), 1, + ACTIONS(1898), 1, sym__insert_mark_begin, - [22360] = 2, - ACTIONS(1856), 1, + [23340] = 2, + ACTIONS(1884), 1, sym__in_fallback, - ACTIONS(1873), 1, + ACTIONS(1901), 1, sym__delete_mark_begin, - [22367] = 2, - ACTIONS(1844), 1, - sym__id, - STATE(869), 1, - sym_reference_label, - [22374] = 2, - ACTIONS(1856), 1, + [23347] = 2, + ACTIONS(1904), 1, + anon_sym_LF, + STATE(269), 1, + sym__newline, + [23354] = 2, + ACTIONS(1884), 1, sym__in_fallback, - ACTIONS(1876), 1, - sym__square_bracket_span_begin, - [22381] = 2, - ACTIONS(1856), 1, + ACTIONS(1906), 1, + sym__square_bracket_span_mark_begin, + [23361] = 2, + ACTIONS(1884), 1, sym__in_fallback, - ACTIONS(1879), 1, - sym__square_bracket_span_begin, - [22388] = 2, - ACTIONS(1856), 1, + ACTIONS(1909), 1, + sym__square_bracket_span_mark_begin, + [23368] = 2, + ACTIONS(1884), 1, sym__in_fallback, - ACTIONS(1882), 1, - sym__square_bracket_span_begin, - [22395] = 1, - ACTIONS(1856), 2, + ACTIONS(1912), 1, + sym__square_bracket_span_mark_begin, + [23375] = 1, + ACTIONS(1884), 2, sym__parens_span_mark_begin, sym__in_fallback, - [22400] = 2, - ACTIONS(1885), 1, - sym__curly_bracket_span_mark_begin, - ACTIONS(1888), 1, + [23380] = 2, + ACTIONS(1915), 1, + sym__square_bracket_span_mark_begin, + ACTIONS(1918), 1, sym__in_fallback, - [22407] = 2, - ACTIONS(1890), 1, + [23387] = 2, + ACTIONS(1920), 1, sym__emphasis_mark_begin, - ACTIONS(1893), 1, + ACTIONS(1923), 1, sym__in_fallback, - [22414] = 2, - ACTIONS(1893), 1, + [23394] = 2, + ACTIONS(1923), 1, sym__in_fallback, - ACTIONS(1895), 1, + ACTIONS(1925), 1, sym__strong_mark_begin, - [22421] = 2, - ACTIONS(1898), 1, + [23401] = 2, + ACTIONS(1928), 1, sym__curly_bracket_span_mark_begin, - ACTIONS(1901), 1, - sym__in_fallback, - [22428] = 2, - ACTIONS(1846), 1, - anon_sym_PERCENT, - STATE(1050), 1, - sym__comment_with_newline, - [22435] = 2, - ACTIONS(1844), 1, - sym__id, - STATE(1033), 1, - sym_reference_label, - [22442] = 2, - ACTIONS(1846), 1, - anon_sym_PERCENT, - STATE(861), 1, - sym__comment_with_newline, - [22449] = 2, - ACTIONS(1844), 1, - sym__id, - STATE(883), 1, - sym_reference_label, - [22456] = 2, - ACTIONS(1846), 1, - anon_sym_PERCENT, - STATE(893), 1, - sym__comment_with_newline, - [22463] = 2, - ACTIONS(1844), 1, - sym__id, - STATE(918), 1, - sym_reference_label, - [22470] = 2, - ACTIONS(1846), 1, - anon_sym_PERCENT, - STATE(939), 1, - sym__comment_with_newline, - [22477] = 2, - ACTIONS(1844), 1, - sym__id, - STATE(981), 1, - sym_reference_label, - [22484] = 2, - ACTIONS(1903), 1, - sym__id, - STATE(640), 1, - sym_class_name, - [22491] = 2, - ACTIONS(1851), 1, - sym__in_fallback, - ACTIONS(1905), 1, - sym__emphasis_mark_begin, - [22498] = 2, - ACTIONS(1846), 1, - anon_sym_PERCENT, - STATE(997), 1, - sym__comment_with_newline, - [22505] = 2, - ACTIONS(1844), 1, - sym__id, - STATE(1013), 1, - sym_reference_label, - [22512] = 2, - ACTIONS(1765), 1, + ACTIONS(1931), 1, sym__in_fallback, - ACTIONS(1908), 1, - sym__strong_mark_begin, - [22519] = 2, - ACTIONS(1911), 1, + [23408] = 2, + ACTIONS(1933), 1, sym__emphasis_mark_begin, - ACTIONS(1914), 1, + ACTIONS(1936), 1, sym__in_fallback, - [22526] = 2, - ACTIONS(1914), 1, + [23415] = 2, + ACTIONS(1936), 1, sym__in_fallback, - ACTIONS(1916), 1, + ACTIONS(1938), 1, sym__strong_mark_begin, - [22533] = 2, - ACTIONS(1914), 1, + [23422] = 2, + ACTIONS(1936), 1, sym__in_fallback, - ACTIONS(1919), 1, + ACTIONS(1941), 1, sym__superscript_mark_begin, - [22540] = 2, - ACTIONS(1914), 1, + [23429] = 2, + ACTIONS(1936), 1, sym__in_fallback, - ACTIONS(1922), 1, + ACTIONS(1944), 1, sym__subscript_mark_begin, - [22547] = 2, - ACTIONS(1914), 1, + [23436] = 2, + ACTIONS(1936), 1, sym__in_fallback, - ACTIONS(1925), 1, + ACTIONS(1947), 1, sym__highlighted_mark_begin, - [22554] = 2, - ACTIONS(1914), 1, + [23443] = 2, + ACTIONS(1936), 1, sym__in_fallback, - ACTIONS(1928), 1, + ACTIONS(1950), 1, sym__insert_mark_begin, - [22561] = 2, - ACTIONS(1914), 1, + [23450] = 2, + ACTIONS(1936), 1, sym__in_fallback, - ACTIONS(1931), 1, + ACTIONS(1953), 1, sym__delete_mark_begin, - [22568] = 2, - ACTIONS(1765), 1, - sym__in_fallback, - ACTIONS(1934), 1, - sym__superscript_mark_begin, - [22575] = 2, - ACTIONS(1914), 1, + [23457] = 2, + ACTIONS(1956), 1, + anon_sym_LF, + STATE(307), 1, + sym__newline, + [23464] = 2, + ACTIONS(1936), 1, sym__in_fallback, - ACTIONS(1937), 1, - sym__square_bracket_span_begin, - [22582] = 2, - ACTIONS(1914), 1, + ACTIONS(1958), 1, + sym__square_bracket_span_mark_begin, + [23471] = 2, + ACTIONS(1936), 1, sym__in_fallback, - ACTIONS(1940), 1, - sym__square_bracket_span_begin, - [22589] = 2, - ACTIONS(1914), 1, + ACTIONS(1961), 1, + sym__square_bracket_span_mark_begin, + [23478] = 2, + ACTIONS(1936), 1, sym__in_fallback, - ACTIONS(1943), 1, - sym__square_bracket_span_begin, - [22596] = 1, - ACTIONS(1914), 2, + ACTIONS(1964), 1, + sym__square_bracket_span_mark_begin, + [23485] = 1, + ACTIONS(1936), 2, sym__parens_span_mark_begin, sym__in_fallback, - [22601] = 2, - ACTIONS(1765), 1, + [23490] = 1, + ACTIONS(1918), 2, + sym__parens_span_mark_begin, sym__in_fallback, - ACTIONS(1946), 1, - sym__subscript_mark_begin, - [22608] = 2, - ACTIONS(1949), 1, + [23495] = 2, + ACTIONS(1967), 1, sym__emphasis_mark_begin, - ACTIONS(1952), 1, + ACTIONS(1970), 1, sym__in_fallback, - [22615] = 2, - ACTIONS(1952), 1, + [23502] = 2, + ACTIONS(1970), 1, sym__in_fallback, - ACTIONS(1954), 1, + ACTIONS(1972), 1, sym__strong_mark_begin, - [22622] = 2, - ACTIONS(1957), 1, + [23509] = 2, + ACTIONS(1975), 1, sym__curly_bracket_span_mark_begin, - ACTIONS(1960), 1, + ACTIONS(1978), 1, sym__in_fallback, - [22629] = 2, - ACTIONS(1765), 1, - sym__in_fallback, - ACTIONS(1962), 1, - sym__highlighted_mark_begin, - [22636] = 2, - ACTIONS(1765), 1, + [23516] = 2, + ACTIONS(1918), 1, sym__in_fallback, - ACTIONS(1965), 1, - sym__insert_mark_begin, - [22643] = 2, - ACTIONS(1765), 1, - sym__in_fallback, - ACTIONS(1968), 1, - sym__delete_mark_begin, - [22650] = 2, - ACTIONS(1846), 1, - anon_sym_PERCENT, - STATE(1062), 1, - sym__comment_with_newline, - [22657] = 2, - ACTIONS(1844), 1, + ACTIONS(1980), 1, + sym__superscript_mark_begin, + [23523] = 2, + ACTIONS(1983), 1, sym__id, - STATE(1091), 1, - sym_reference_label, - [22664] = 2, - ACTIONS(1765), 1, - sym__in_fallback, - ACTIONS(1971), 1, - sym__square_bracket_span_begin, - [22671] = 2, - ACTIONS(1765), 1, - sym__in_fallback, - ACTIONS(1974), 1, - sym__square_bracket_span_begin, - [22678] = 1, - ACTIONS(1765), 2, - sym__parens_span_mark_begin, - sym__in_fallback, - [22683] = 2, - ACTIONS(1977), 1, + STATE(646), 1, + sym_class_name, + [23530] = 2, + ACTIONS(1985), 1, sym__emphasis_mark_begin, - ACTIONS(1980), 1, - sym__in_fallback, - [22690] = 2, - ACTIONS(1980), 1, + ACTIONS(1988), 1, sym__in_fallback, - ACTIONS(1982), 1, - sym__strong_mark_begin, - [22697] = 2, - ACTIONS(1985), 1, - sym__curly_bracket_span_mark_begin, + [23537] = 2, ACTIONS(1988), 1, sym__in_fallback, - [22704] = 2, - ACTIONS(1846), 1, - anon_sym_PERCENT, - STATE(1163), 1, - sym__comment_with_newline, - [22711] = 2, - ACTIONS(1844), 1, - sym__id, - STATE(946), 1, - sym_reference_label, - [22718] = 2, - ACTIONS(1846), 1, - anon_sym_PERCENT, - STATE(875), 1, - sym__comment_with_newline, - [22725] = 2, ACTIONS(1990), 1, - sym__emphasis_mark_begin, - ACTIONS(1993), 1, - sym__in_fallback, - [22732] = 2, - ACTIONS(1993), 1, - sym__in_fallback, - ACTIONS(1995), 1, sym__strong_mark_begin, - [22739] = 2, - ACTIONS(1993), 1, + [23544] = 2, + ACTIONS(1988), 1, sym__in_fallback, - ACTIONS(1998), 1, - sym__superscript_mark_begin, - [22746] = 2, ACTIONS(1993), 1, + sym__superscript_mark_begin, + [23551] = 2, + ACTIONS(1988), 1, sym__in_fallback, - ACTIONS(2001), 1, + ACTIONS(1996), 1, sym__subscript_mark_begin, - [22753] = 2, - ACTIONS(1993), 1, + [23558] = 2, + ACTIONS(1988), 1, sym__in_fallback, - ACTIONS(2004), 1, + ACTIONS(1999), 1, sym__highlighted_mark_begin, - [22760] = 2, - ACTIONS(1993), 1, + [23565] = 2, + ACTIONS(1988), 1, sym__in_fallback, - ACTIONS(2007), 1, + ACTIONS(2002), 1, sym__insert_mark_begin, - [22767] = 2, - ACTIONS(1993), 1, + [23572] = 2, + ACTIONS(1988), 1, sym__in_fallback, - ACTIONS(2010), 1, + ACTIONS(2005), 1, sym__delete_mark_begin, - [22774] = 2, - ACTIONS(1844), 1, - sym__id, - STATE(953), 1, - sym_reference_label, - [22781] = 2, - ACTIONS(1993), 1, + [23579] = 2, + ACTIONS(2008), 1, + anon_sym_LF, + STATE(347), 1, + sym__newline, + [23586] = 2, + ACTIONS(1988), 1, + sym__in_fallback, + ACTIONS(2010), 1, + sym__square_bracket_span_mark_begin, + [23593] = 2, + ACTIONS(1988), 1, sym__in_fallback, ACTIONS(2013), 1, - sym__square_bracket_span_begin, - [22788] = 2, - ACTIONS(1993), 1, + sym__square_bracket_span_mark_begin, + [23600] = 2, + ACTIONS(1988), 1, sym__in_fallback, ACTIONS(2016), 1, - sym__square_bracket_span_begin, - [22795] = 2, - ACTIONS(1993), 1, - sym__in_fallback, - ACTIONS(2019), 1, - sym__square_bracket_span_begin, - [22802] = 1, - ACTIONS(1993), 2, + sym__square_bracket_span_mark_begin, + [23607] = 1, + ACTIONS(1988), 2, sym__parens_span_mark_begin, sym__in_fallback, - [22807] = 2, - ACTIONS(2022), 1, + [23612] = 2, + ACTIONS(2019), 1, + anon_sym_PERCENT, + STATE(1074), 1, + sym__comment_with_newline, + [23619] = 2, + ACTIONS(2021), 1, sym__emphasis_mark_begin, - ACTIONS(2025), 1, + ACTIONS(2024), 1, sym__in_fallback, - [22814] = 2, - ACTIONS(1773), 1, + [23626] = 2, + ACTIONS(2024), 1, sym__in_fallback, - ACTIONS(2027), 1, - sym__emphasis_mark_begin, - [22821] = 2, - ACTIONS(2025), 1, + ACTIONS(2026), 1, + sym__strong_mark_begin, + [23633] = 2, + ACTIONS(2029), 1, + sym__curly_bracket_span_mark_begin, + ACTIONS(2032), 1, sym__in_fallback, - ACTIONS(2030), 1, - sym__superscript_mark_begin, - [22828] = 2, - ACTIONS(2033), 1, + [23640] = 2, + ACTIONS(1918), 1, + sym__in_fallback, + ACTIONS(2034), 1, + sym__subscript_mark_begin, + [23647] = 2, + ACTIONS(1918), 1, + sym__in_fallback, + ACTIONS(2037), 1, + sym__highlighted_mark_begin, + [23654] = 2, + ACTIONS(1918), 1, + sym__in_fallback, + ACTIONS(2040), 1, + sym__insert_mark_begin, + [23661] = 2, + ACTIONS(2043), 1, sym__emphasis_mark_begin, - ACTIONS(2036), 1, + ACTIONS(2046), 1, sym__in_fallback, - [22835] = 2, - ACTIONS(2036), 1, + [23668] = 2, + ACTIONS(2046), 1, sym__in_fallback, - ACTIONS(2038), 1, + ACTIONS(2048), 1, sym__strong_mark_begin, - [22842] = 2, - ACTIONS(2041), 1, - sym__curly_bracket_span_mark_begin, - ACTIONS(2044), 1, - sym__in_fallback, - [22849] = 2, - ACTIONS(1846), 1, - anon_sym_PERCENT, - STATE(970), 1, - sym__comment_with_newline, - [22856] = 2, - ACTIONS(2025), 1, + [23675] = 2, + ACTIONS(2046), 1, sym__in_fallback, + ACTIONS(2051), 1, + sym__superscript_mark_begin, + [23682] = 2, ACTIONS(2046), 1, + sym__in_fallback, + ACTIONS(2054), 1, sym__subscript_mark_begin, - [22863] = 2, - ACTIONS(2025), 1, + [23689] = 2, + ACTIONS(2046), 1, sym__in_fallback, - ACTIONS(2049), 1, + ACTIONS(2057), 1, sym__highlighted_mark_begin, - [22870] = 2, - ACTIONS(2025), 1, - sym__in_fallback, - ACTIONS(2052), 1, - sym__insert_mark_begin, - [22877] = 2, - ACTIONS(2055), 1, - sym__curly_bracket_span_mark_begin, - ACTIONS(2058), 1, + [23696] = 2, + ACTIONS(2046), 1, sym__in_fallback, - [22884] = 2, ACTIONS(2060), 1, - sym__strong_mark_begin, - ACTIONS(2063), 1, + sym__insert_mark_begin, + [23703] = 2, + ACTIONS(2046), 1, sym__in_fallback, - [22891] = 2, ACTIONS(2063), 1, - sym__in_fallback, - ACTIONS(2065), 1, - sym__emphasis_mark_begin, - [22898] = 2, - ACTIONS(2025), 1, + sym__delete_mark_begin, + [23710] = 2, + ACTIONS(2066), 1, + anon_sym_LF, + STATE(384), 1, + sym__newline, + [23717] = 2, + ACTIONS(2046), 1, sym__in_fallback, ACTIONS(2068), 1, - sym__strong_mark_begin, - [22905] = 1, - ACTIONS(2071), 2, - sym__parens_span_mark_begin, + sym__square_bracket_span_mark_begin, + [23724] = 2, + ACTIONS(2046), 1, sym__in_fallback, - [22910] = 2, ACTIONS(2071), 1, + sym__square_bracket_span_mark_begin, + [23731] = 2, + ACTIONS(2046), 1, sym__in_fallback, - ACTIONS(2073), 1, - sym__square_bracket_span_begin, - [22917] = 2, - ACTIONS(2071), 1, + ACTIONS(2074), 1, + sym__square_bracket_span_mark_begin, + [23738] = 1, + ACTIONS(2046), 2, + sym__parens_span_mark_begin, sym__in_fallback, - ACTIONS(2076), 1, - sym__square_bracket_span_begin, - [22924] = 2, - ACTIONS(2071), 1, + [23743] = 2, + ACTIONS(2077), 1, + sym__emphasis_mark_begin, + ACTIONS(2080), 1, sym__in_fallback, - ACTIONS(2079), 1, - sym__square_bracket_span_begin, - [22931] = 2, - ACTIONS(2071), 1, + [23750] = 2, + ACTIONS(2080), 1, sym__in_fallback, ACTIONS(2082), 1, - sym__delete_mark_begin, - [22938] = 2, - ACTIONS(2071), 1, - sym__in_fallback, + sym__strong_mark_begin, + [23757] = 2, ACTIONS(2085), 1, - sym__insert_mark_begin, - [22945] = 2, - ACTIONS(2071), 1, - sym__in_fallback, + sym__curly_bracket_span_mark_begin, ACTIONS(2088), 1, - sym__highlighted_mark_begin, - [22952] = 2, - ACTIONS(2071), 1, sym__in_fallback, - ACTIONS(2091), 1, - sym__subscript_mark_begin, - [22959] = 2, - ACTIONS(2094), 1, + [23764] = 2, + ACTIONS(1918), 1, + sym__in_fallback, + ACTIONS(2090), 1, + sym__delete_mark_begin, + [23771] = 2, + ACTIONS(2093), 1, sym__emphasis_mark_begin, - ACTIONS(2097), 1, + ACTIONS(2096), 1, sym__in_fallback, - [22966] = 2, - ACTIONS(2097), 1, + [23778] = 2, + ACTIONS(2096), 1, sym__in_fallback, - ACTIONS(2099), 1, + ACTIONS(2098), 1, sym__strong_mark_begin, - [22973] = 2, - ACTIONS(2097), 1, + [23785] = 2, + ACTIONS(2096), 1, sym__in_fallback, - ACTIONS(2102), 1, + ACTIONS(2101), 1, sym__superscript_mark_begin, - [22980] = 2, - ACTIONS(2097), 1, + [23792] = 2, + ACTIONS(2096), 1, sym__in_fallback, - ACTIONS(2105), 1, + ACTIONS(2104), 1, sym__subscript_mark_begin, - [22987] = 2, - ACTIONS(2097), 1, + [23799] = 2, + ACTIONS(2096), 1, sym__in_fallback, - ACTIONS(2108), 1, + ACTIONS(2107), 1, sym__highlighted_mark_begin, - [22994] = 2, - ACTIONS(2097), 1, + [23806] = 2, + ACTIONS(2096), 1, sym__in_fallback, - ACTIONS(2111), 1, + ACTIONS(2110), 1, sym__insert_mark_begin, - [23001] = 2, - ACTIONS(2097), 1, + [23813] = 2, + ACTIONS(2096), 1, sym__in_fallback, - ACTIONS(2114), 1, + ACTIONS(2113), 1, sym__delete_mark_begin, - [23008] = 2, - ACTIONS(2071), 1, - sym__in_fallback, - ACTIONS(2117), 1, - sym__superscript_mark_begin, - [23015] = 2, - ACTIONS(2097), 1, + [23820] = 2, + ACTIONS(2116), 1, + anon_sym_LF, + STATE(416), 1, + sym__newline, + [23827] = 2, + ACTIONS(2096), 1, sym__in_fallback, - ACTIONS(2120), 1, - sym__square_bracket_span_begin, - [23022] = 2, - ACTIONS(2097), 1, + ACTIONS(2118), 1, + sym__square_bracket_span_mark_begin, + [23834] = 2, + ACTIONS(2096), 1, sym__in_fallback, - ACTIONS(2123), 1, - sym__square_bracket_span_begin, - [23029] = 2, - ACTIONS(2097), 1, + ACTIONS(2121), 1, + sym__square_bracket_span_mark_begin, + [23841] = 2, + ACTIONS(2096), 1, sym__in_fallback, - ACTIONS(2126), 1, - sym__square_bracket_span_begin, - [23036] = 1, - ACTIONS(2097), 2, + ACTIONS(2124), 1, + sym__square_bracket_span_mark_begin, + [23848] = 1, + ACTIONS(2096), 2, sym__parens_span_mark_begin, sym__in_fallback, - [23041] = 2, - ACTIONS(2071), 1, - sym__in_fallback, + [23853] = 2, + ACTIONS(2127), 1, + sym__id, + STATE(890), 1, + sym_reference_label, + [23860] = 2, ACTIONS(2129), 1, - sym__strong_mark_begin, - [23048] = 2, - ACTIONS(2025), 1, + sym__emphasis_mark_begin, + ACTIONS(2132), 1, sym__in_fallback, + [23867] = 2, ACTIONS(2132), 1, - sym__delete_mark_begin, - [23055] = 2, - ACTIONS(2071), 1, sym__in_fallback, - ACTIONS(2135), 1, - sym__emphasis_mark_begin, - [23062] = 2, - ACTIONS(2138), 1, + ACTIONS(2134), 1, + sym__strong_mark_begin, + [23874] = 2, + ACTIONS(2137), 1, + sym__curly_bracket_span_mark_begin, + ACTIONS(2140), 1, + sym__in_fallback, + [23881] = 2, + ACTIONS(2142), 1, sym__emphasis_mark_begin, - ACTIONS(2141), 1, + ACTIONS(2145), 1, sym__in_fallback, - [23069] = 2, - ACTIONS(2141), 1, + [23888] = 2, + ACTIONS(2145), 1, sym__in_fallback, - ACTIONS(2143), 1, + ACTIONS(2147), 1, sym__strong_mark_begin, - [23076] = 2, - ACTIONS(2146), 1, - sym__curly_bracket_span_mark_begin, - ACTIONS(2149), 1, + [23895] = 2, + ACTIONS(2145), 1, sym__in_fallback, - [23083] = 2, - ACTIONS(2025), 1, + ACTIONS(2150), 1, + sym__superscript_mark_begin, + [23902] = 2, + ACTIONS(2145), 1, sym__in_fallback, - ACTIONS(2151), 1, - sym__square_bracket_span_begin, - [23090] = 2, - ACTIONS(2025), 1, + ACTIONS(2153), 1, + sym__subscript_mark_begin, + [23909] = 2, + ACTIONS(2145), 1, sym__in_fallback, - ACTIONS(2154), 1, - sym__square_bracket_span_begin, - [23097] = 2, - ACTIONS(2025), 1, + ACTIONS(2156), 1, + sym__highlighted_mark_begin, + [23916] = 2, + ACTIONS(2145), 1, sym__in_fallback, - ACTIONS(2157), 1, - sym__square_bracket_span_begin, - [23104] = 2, - ACTIONS(2160), 1, - sym__curly_bracket_span_mark_begin, - ACTIONS(2163), 1, + ACTIONS(2159), 1, + sym__insert_mark_begin, + [23923] = 2, + ACTIONS(2145), 1, sym__in_fallback, - [23111] = 2, + ACTIONS(2162), 1, + sym__delete_mark_begin, + [23930] = 2, ACTIONS(2165), 1, - sym__strong_mark_begin, - ACTIONS(2168), 1, + anon_sym_LF, + STATE(605), 1, + sym__newline, + [23937] = 2, + ACTIONS(2145), 1, sym__in_fallback, - [23118] = 2, - ACTIONS(2168), 1, + ACTIONS(2167), 1, + sym__square_bracket_span_mark_begin, + [23944] = 2, + ACTIONS(2145), 1, sym__in_fallback, ACTIONS(2170), 1, - sym__emphasis_mark_begin, - [23125] = 1, - ACTIONS(2025), 2, - sym__parens_span_mark_begin, - sym__in_fallback, - [23130] = 1, - ACTIONS(2173), 2, - sym__parens_span_mark_begin, + sym__square_bracket_span_mark_begin, + [23951] = 2, + ACTIONS(2145), 1, sym__in_fallback, - [23135] = 2, ACTIONS(2173), 1, + sym__square_bracket_span_mark_begin, + [23958] = 1, + ACTIONS(2145), 2, + sym__parens_span_mark_begin, sym__in_fallback, - ACTIONS(2175), 1, - sym__square_bracket_span_begin, - [23142] = 2, - ACTIONS(2173), 1, + [23963] = 2, + ACTIONS(2176), 1, + sym__emphasis_mark_begin, + ACTIONS(2179), 1, sym__in_fallback, - ACTIONS(2178), 1, - sym__square_bracket_span_begin, - [23149] = 2, - ACTIONS(2173), 1, + [23970] = 2, + ACTIONS(2179), 1, sym__in_fallback, ACTIONS(2181), 1, - sym__square_bracket_span_begin, - [23156] = 2, - ACTIONS(2173), 1, - sym__in_fallback, + sym__strong_mark_begin, + [23977] = 2, ACTIONS(2184), 1, - sym__delete_mark_begin, - [23163] = 2, - ACTIONS(2173), 1, - sym__in_fallback, + sym__curly_bracket_span_mark_begin, ACTIONS(2187), 1, - sym__insert_mark_begin, - [23170] = 2, - ACTIONS(2173), 1, - sym__in_fallback, - ACTIONS(2190), 1, - sym__highlighted_mark_begin, - [23177] = 2, - ACTIONS(2173), 1, sym__in_fallback, - ACTIONS(2193), 1, - sym__subscript_mark_begin, - [23184] = 2, - ACTIONS(2173), 1, + [23984] = 2, + ACTIONS(2019), 1, + anon_sym_PERCENT, + STATE(1006), 1, + sym__comment_with_newline, + [23991] = 2, + ACTIONS(2189), 1, + anon_sym_LF, + STATE(266), 1, + sym__newline, + [23998] = 2, + ACTIONS(1817), 1, sym__in_fallback, - ACTIONS(2196), 1, - sym__superscript_mark_begin, - [23191] = 2, - ACTIONS(2199), 1, + ACTIONS(2191), 1, sym__emphasis_mark_begin, - ACTIONS(2202), 1, - sym__in_fallback, - [23198] = 2, - ACTIONS(2202), 1, + [24005] = 2, + ACTIONS(1817), 1, sym__in_fallback, - ACTIONS(2204), 1, + ACTIONS(2194), 1, sym__strong_mark_begin, - [23205] = 2, - ACTIONS(2202), 1, + [24012] = 2, + ACTIONS(1817), 1, sym__in_fallback, - ACTIONS(2207), 1, + ACTIONS(2197), 1, sym__superscript_mark_begin, - [23212] = 2, - ACTIONS(2202), 1, + [24019] = 2, + ACTIONS(2127), 1, + sym__id, + STATE(1023), 1, + sym_reference_label, + [24026] = 2, + ACTIONS(1817), 1, sym__in_fallback, - ACTIONS(2210), 1, + ACTIONS(2200), 1, sym__subscript_mark_begin, - [23219] = 2, - ACTIONS(2202), 1, + [24033] = 2, + ACTIONS(2019), 1, + anon_sym_PERCENT, + STATE(1076), 1, + sym__comment_with_newline, + [24040] = 2, + ACTIONS(1817), 1, sym__in_fallback, - ACTIONS(2213), 1, + ACTIONS(2203), 1, sym__highlighted_mark_begin, - [23226] = 2, - ACTIONS(2202), 1, + [24047] = 2, + ACTIONS(1817), 1, sym__in_fallback, - ACTIONS(2216), 1, + ACTIONS(2206), 1, sym__insert_mark_begin, - [23233] = 2, - ACTIONS(2202), 1, + [24054] = 2, + ACTIONS(1817), 1, sym__in_fallback, - ACTIONS(2219), 1, + ACTIONS(2209), 1, sym__delete_mark_begin, - [23240] = 2, - ACTIONS(2173), 1, + [24061] = 2, + ACTIONS(2212), 1, + anon_sym_LF, + STATE(304), 1, + sym__newline, + [24068] = 2, + ACTIONS(1817), 1, sym__in_fallback, - ACTIONS(2222), 1, - sym__strong_mark_begin, - [23247] = 2, - ACTIONS(2202), 1, + ACTIONS(2214), 1, + sym__square_bracket_span_mark_begin, + [24075] = 2, + ACTIONS(1817), 1, + sym__in_fallback, + ACTIONS(2217), 1, + sym__square_bracket_span_mark_begin, + [24082] = 2, + ACTIONS(1817), 1, sym__in_fallback, - ACTIONS(2225), 1, - sym__square_bracket_span_begin, - [23254] = 2, - ACTIONS(2202), 1, + ACTIONS(2220), 1, + sym__square_bracket_span_mark_begin, + [24089] = 2, + ACTIONS(2127), 1, + sym__id, + STATE(1092), 1, + sym_reference_label, + [24096] = 2, + ACTIONS(1918), 1, sym__in_fallback, - ACTIONS(2228), 1, - sym__square_bracket_span_begin, - [23261] = 2, - ACTIONS(2202), 1, + ACTIONS(2223), 1, + sym__strong_mark_begin, + [24103] = 2, + ACTIONS(2019), 1, + anon_sym_PERCENT, + STATE(976), 1, + sym__comment_with_newline, + [24110] = 2, + ACTIONS(1918), 1, sym__in_fallback, - ACTIONS(2231), 1, - sym__square_bracket_span_begin, - [23268] = 1, - ACTIONS(2202), 2, - sym__parens_span_mark_begin, + ACTIONS(2226), 1, + sym__square_bracket_span_mark_begin, + [24117] = 2, + ACTIONS(2229), 1, + sym__emphasis_mark_begin, + ACTIONS(2232), 1, sym__in_fallback, - [23273] = 2, - ACTIONS(2173), 1, + [24124] = 2, + ACTIONS(2232), 1, sym__in_fallback, ACTIONS(2234), 1, - sym__emphasis_mark_begin, - [23280] = 2, + sym__strong_mark_begin, + [24131] = 2, ACTIONS(2237), 1, - sym__emphasis_mark_begin, + sym__curly_bracket_span_mark_begin, ACTIONS(2240), 1, sym__in_fallback, - [23287] = 2, - ACTIONS(2240), 1, + [24138] = 2, + ACTIONS(2127), 1, + sym__id, + STATE(994), 1, + sym_reference_label, + [24145] = 2, + ACTIONS(2019), 1, + anon_sym_PERCENT, + STATE(892), 1, + sym__comment_with_newline, + [24152] = 2, + ACTIONS(1918), 1, sym__in_fallback, ACTIONS(2242), 1, - sym__strong_mark_begin, - [23294] = 2, + sym__square_bracket_span_mark_begin, + [24159] = 2, + ACTIONS(2127), 1, + sym__id, + STATE(920), 1, + sym_reference_label, + [24166] = 2, + ACTIONS(2019), 1, + anon_sym_PERCENT, + STATE(1056), 1, + sym__comment_with_newline, + [24173] = 2, ACTIONS(2245), 1, sym__emphasis_mark_begin, ACTIONS(2248), 1, sym__in_fallback, - [23301] = 2, + [24180] = 2, ACTIONS(2248), 1, sym__in_fallback, ACTIONS(2250), 1, sym__strong_mark_begin, - [23308] = 2, + [24187] = 2, + ACTIONS(2127), 1, + sym__id, + STATE(1073), 1, + sym_reference_label, + [24194] = 2, + ACTIONS(2019), 1, + anon_sym_PERCENT, + STATE(924), 1, + sym__comment_with_newline, + [24201] = 2, ACTIONS(2253), 1, - sym__curly_bracket_span_mark_begin, + sym__emphasis_mark_begin, + ACTIONS(2256), 1, + sym__in_fallback, + [24208] = 2, ACTIONS(2256), 1, sym__in_fallback, - [23315] = 2, ACTIONS(2258), 1, - sym__curly_bracket_span_mark_begin, + sym__strong_mark_begin, + [24215] = 2, + ACTIONS(2256), 1, + sym__in_fallback, ACTIONS(2261), 1, + sym__superscript_mark_begin, + [24222] = 2, + ACTIONS(2256), 1, + sym__in_fallback, + ACTIONS(2264), 1, + sym__subscript_mark_begin, + [24229] = 2, + ACTIONS(2256), 1, sym__in_fallback, - [23322] = 1, - ACTIONS(2263), 1, - sym__verbatim_end, - [23326] = 1, - ACTIONS(2265), 1, - anon_sym_RBRACE, - [23330] = 1, ACTIONS(2267), 1, - sym_emphasis_end, - [23334] = 1, - ACTIONS(2269), 1, - sym_strong_end, - [23338] = 1, - ACTIONS(2271), 1, - sym_superscript_end, - [23342] = 1, + sym__highlighted_mark_begin, + [24236] = 2, + ACTIONS(2127), 1, + sym__id, + STATE(935), 1, + sym_reference_label, + [24243] = 2, + ACTIONS(2256), 1, + sym__in_fallback, + ACTIONS(2270), 1, + sym__insert_mark_begin, + [24250] = 2, + ACTIONS(2019), 1, + anon_sym_PERCENT, + STATE(1008), 1, + sym__comment_with_newline, + [24257] = 2, + ACTIONS(2256), 1, + sym__in_fallback, ACTIONS(2273), 1, - sym_subscript_end, - [23346] = 1, - ACTIONS(2275), 1, - sym_highlighted_end, - [23350] = 1, - ACTIONS(2277), 1, - sym_insert_end, - [23354] = 1, - ACTIONS(2279), 1, - sym_delete_end, - [23358] = 1, + sym__delete_mark_begin, + [24264] = 2, + ACTIONS(2276), 1, + anon_sym_LF, + STATE(455), 1, + sym__newline, + [24271] = 2, + ACTIONS(2256), 1, + sym__in_fallback, + ACTIONS(2278), 1, + sym__square_bracket_span_mark_begin, + [24278] = 2, + ACTIONS(2256), 1, + sym__in_fallback, ACTIONS(2281), 1, - sym__square_bracket_span_end, - [23362] = 1, - ACTIONS(2283), 1, - anon_sym_RBRACK, - [23366] = 1, - ACTIONS(2285), 1, - sym__verbatim_end, - [23370] = 1, + sym__square_bracket_span_mark_begin, + [24285] = 2, + ACTIONS(2256), 1, + sym__in_fallback, + ACTIONS(2284), 1, + sym__square_bracket_span_mark_begin, + [24292] = 1, + ACTIONS(2256), 2, + sym__parens_span_mark_begin, + sym__in_fallback, + [24297] = 2, + ACTIONS(2127), 1, + sym__id, + STATE(1041), 1, + sym_reference_label, + [24304] = 2, + ACTIONS(2019), 1, + anon_sym_PERCENT, + STATE(1109), 1, + sym__comment_with_newline, + [24311] = 2, ACTIONS(2287), 1, - sym__parens_span_end, - [23374] = 1, - ACTIONS(2289), 1, - sym__verbatim_end, - [23378] = 1, - ACTIONS(2291), 1, - anon_sym_RBRACE, - [23382] = 1, - ACTIONS(2293), 1, - anon_sym_RBRACE, - [23386] = 1, + sym__emphasis_mark_begin, + ACTIONS(2290), 1, + sym__in_fallback, + [24318] = 2, + ACTIONS(2290), 1, + sym__in_fallback, + ACTIONS(2292), 1, + sym__strong_mark_begin, + [24325] = 2, ACTIONS(2295), 1, + sym__curly_bracket_span_mark_begin, + ACTIONS(2298), 1, + sym__in_fallback, + [24332] = 2, + ACTIONS(2127), 1, + sym__id, + STATE(1183), 1, + sym_reference_label, + [24339] = 2, + ACTIONS(2019), 1, + anon_sym_PERCENT, + STATE(905), 1, + sym__comment_with_newline, + [24346] = 2, + ACTIONS(2127), 1, + sym__id, + STATE(913), 1, + sym_reference_label, + [24353] = 2, + ACTIONS(2019), 1, + anon_sym_PERCENT, + STATE(939), 1, + sym__comment_with_newline, + [24360] = 2, + ACTIONS(1918), 1, + sym__in_fallback, + ACTIONS(2300), 1, + sym__emphasis_mark_begin, + [24367] = 2, + ACTIONS(2303), 1, + sym__curly_bracket_span_mark_begin, + ACTIONS(2306), 1, + sym__in_fallback, + [24374] = 2, + ACTIONS(1819), 1, + sym__in_fallback, + ACTIONS(2308), 1, + sym__emphasis_mark_begin, + [24381] = 2, + ACTIONS(1819), 1, + sym__in_fallback, + ACTIONS(2311), 1, + sym__strong_mark_begin, + [24388] = 2, + ACTIONS(2127), 1, + sym__id, + STATE(947), 1, + sym_reference_label, + [24395] = 2, + ACTIONS(1819), 1, + sym__in_fallback, + ACTIONS(2314), 1, + sym__superscript_mark_begin, + [24402] = 2, + ACTIONS(1819), 1, + sym__in_fallback, + ACTIONS(2317), 1, + sym__subscript_mark_begin, + [24409] = 2, + ACTIONS(1819), 1, + sym__in_fallback, + ACTIONS(2320), 1, + sym__highlighted_mark_begin, + [24416] = 2, + ACTIONS(1819), 1, + sym__in_fallback, + ACTIONS(2323), 1, + sym__insert_mark_begin, + [24423] = 2, + ACTIONS(1819), 1, + sym__in_fallback, + ACTIONS(2326), 1, + sym__delete_mark_begin, + [24430] = 2, + ACTIONS(2329), 1, + anon_sym_LF, + STATE(489), 1, sym__newline, - [23390] = 1, - ACTIONS(2297), 1, + [24437] = 2, + ACTIONS(1819), 1, + sym__in_fallback, + ACTIONS(2331), 1, + sym__square_bracket_span_mark_begin, + [24444] = 2, + ACTIONS(1819), 1, + sym__in_fallback, + ACTIONS(2334), 1, + sym__square_bracket_span_mark_begin, + [24451] = 2, + ACTIONS(1819), 1, + sym__in_fallback, + ACTIONS(2337), 1, + sym__square_bracket_span_mark_begin, + [24458] = 1, + ACTIONS(1837), 2, + sym__parens_span_mark_begin, + sym__in_fallback, + [24463] = 1, + ACTIONS(2340), 1, + sym_highlighted_end, + [24467] = 1, + ACTIONS(2342), 1, + sym__strong_mark_begin, + [24471] = 1, + ACTIONS(2344), 1, anon_sym_RBRACE, - [23394] = 1, - ACTIONS(2299), 1, - sym_emphasis_end, - [23398] = 1, - ACTIONS(2301), 1, - sym__parens_span_end, - [23402] = 1, - ACTIONS(2303), 1, - sym_strong_end, - [23406] = 1, - ACTIONS(2305), 1, + [24475] = 1, + ACTIONS(2346), 1, + anon_sym_RBRACE, + [24479] = 1, + ACTIONS(2348), 1, + sym__verbatim_end, + [24483] = 1, + ACTIONS(2350), 1, anon_sym_RBRACK, - [23410] = 1, - ACTIONS(2307), 1, - sym__newline, - [23414] = 1, - ACTIONS(2309), 1, - sym__square_bracket_span_end, - [23418] = 1, - ACTIONS(2311), 1, - sym_delete_end, - [23422] = 1, - ACTIONS(2313), 1, - sym_insert_end, - [23426] = 1, - ACTIONS(2315), 1, + [24487] = 1, + ACTIONS(2352), 1, sym_highlighted_end, - [23430] = 1, - ACTIONS(2317), 1, + [24491] = 1, + ACTIONS(2354), 1, + sym__parens_span_end, + [24495] = 1, + ACTIONS(2356), 1, + sym__square_bracket_span_end, + [24499] = 1, + ACTIONS(2358), 1, sym__verbatim_end, - [23434] = 1, - ACTIONS(2319), 1, + [24503] = 1, + ACTIONS(2360), 1, + anon_sym_RBRACE, + [24507] = 1, + ACTIONS(2362), 1, + sym_emphasis_end, + [24511] = 1, + ACTIONS(2364), 1, + sym_strong_end, + [24515] = 1, + ACTIONS(2366), 1, + sym_superscript_end, + [24519] = 1, + ACTIONS(2368), 1, sym_subscript_end, - [23438] = 1, - ACTIONS(2321), 1, + [24523] = 1, + ACTIONS(2370), 1, + sym_highlighted_end, + [24527] = 1, + ACTIONS(2372), 1, + sym__superscript_mark_begin, + [24531] = 1, + ACTIONS(2374), 1, sym__verbatim_end, - [23442] = 1, - ACTIONS(2323), 1, - sym_superscript_end, - [23446] = 1, - ACTIONS(2325), 1, - sym_strong_end, - [23450] = 1, - ACTIONS(2327), 1, - sym_emphasis_end, - [23454] = 1, - ACTIONS(2329), 1, - anon_sym_RBRACE, - [23458] = 1, - ACTIONS(2331), 1, + [24535] = 1, + ACTIONS(2376), 1, + sym_insert_end, + [24539] = 1, + ACTIONS(2378), 1, + anon_sym_EQ, + [24543] = 1, + ACTIONS(2380), 1, sym__verbatim_end, - [23462] = 1, - ACTIONS(2333), 1, + [24547] = 1, + ACTIONS(2382), 1, + sym__subscript_mark_begin, + [24551] = 1, + ACTIONS(2384), 1, + sym__verbatim_end, + [24555] = 1, + ACTIONS(2386), 1, anon_sym_RBRACE, - [23466] = 1, - ACTIONS(2335), 1, + [24559] = 1, + ACTIONS(2388), 1, sym_emphasis_end, - [23470] = 1, - ACTIONS(2337), 1, + [24563] = 1, + ACTIONS(2390), 1, sym_strong_end, - [23474] = 1, - ACTIONS(2339), 1, + [24567] = 1, + ACTIONS(2392), 1, sym_superscript_end, - [23478] = 1, - ACTIONS(2341), 1, + [24571] = 1, + ACTIONS(2394), 1, sym_subscript_end, - [23482] = 1, - ACTIONS(2343), 1, + [24575] = 1, + ACTIONS(2396), 1, sym_highlighted_end, - [23486] = 1, - ACTIONS(2345), 1, + [24579] = 1, + ACTIONS(2398), 1, sym_insert_end, - [23490] = 1, - ACTIONS(2347), 1, + [24583] = 1, + ACTIONS(2400), 1, sym_delete_end, - [23494] = 1, - ACTIONS(2349), 1, + [24587] = 1, + ACTIONS(2402), 1, sym__square_bracket_span_end, - [23498] = 1, - ACTIONS(2351), 1, + [24591] = 1, + ACTIONS(2404), 1, anon_sym_RBRACK, - [23502] = 1, - ACTIONS(2353), 1, - sym__verbatim_end, - [23506] = 1, - ACTIONS(2355), 1, + [24595] = 1, + ACTIONS(2406), 1, + sym__highlighted_mark_begin, + [24599] = 1, + ACTIONS(2408), 1, sym__parens_span_end, - [23510] = 1, - ACTIONS(2357), 1, - sym_superscript_end, - [23514] = 1, - ACTIONS(2359), 1, - anon_sym_RBRACE, - [23518] = 1, - ACTIONS(2361), 1, - sym__verbatim_end, - [23522] = 1, - ACTIONS(2363), 1, - sym_highlighted_end, - [23526] = 1, - ACTIONS(2365), 1, - sym__newline, - [23530] = 1, - ACTIONS(2367), 1, + [24603] = 1, + ACTIONS(2410), 1, + sym__insert_mark_begin, + [24607] = 1, + ACTIONS(2412), 1, anon_sym_RBRACE, - [23534] = 1, - ACTIONS(2369), 1, - sym_insert_end, - [23538] = 1, - ACTIONS(2371), 1, - sym__parens_span_end, - [23542] = 1, - ACTIONS(2373), 1, + [24611] = 1, + ACTIONS(2414), 1, sym_delete_end, - [23546] = 1, - ACTIONS(2375), 1, - sym__newline, - [23550] = 1, - ACTIONS(2377), 1, - anon_sym_RBRACK, - [23554] = 1, - ACTIONS(2379), 1, + [24615] = 1, + ACTIONS(2416), 1, sym__square_bracket_span_end, - [23558] = 1, - ACTIONS(2381), 1, - sym_delete_end, - [23562] = 1, - ACTIONS(2383), 1, - sym_insert_end, - [23566] = 1, - ACTIONS(2385), 1, - sym__newline, - [23570] = 1, - ACTIONS(2387), 1, + [24619] = 1, + ACTIONS(2418), 1, + anon_sym_RBRACK, + [24623] = 1, + ACTIONS(2420), 1, + anon_sym_RBRACK, + [24627] = 1, + ACTIONS(2422), 1, + sym__verbatim_end, + [24631] = 1, + ACTIONS(2424), 1, + anon_sym_RBRACE, + [24635] = 1, + ACTIONS(2426), 1, + sym_emphasis_end, + [24639] = 1, + ACTIONS(2428), 1, + sym_strong_end, + [24643] = 1, + ACTIONS(2430), 1, + sym_superscript_end, + [24647] = 1, + ACTIONS(2432), 1, + sym_subscript_end, + [24651] = 1, + ACTIONS(2434), 1, sym_highlighted_end, - [23574] = 1, - ACTIONS(2389), 1, + [24655] = 1, + ACTIONS(2436), 1, + sym_insert_end, + [24659] = 1, + ACTIONS(2438), 1, + sym__parens_span_end, + [24663] = 1, + ACTIONS(2440), 1, + sym__parens_span_mark_begin, + [24667] = 1, + ACTIONS(2442), 1, sym__verbatim_end, - [23578] = 1, - ACTIONS(2391), 1, - sym_subscript_end, - [23582] = 1, - ACTIONS(2393), 1, - sym_superscript_end, - [23586] = 1, - ACTIONS(2395), 1, - sym_strong_end, - [23590] = 1, - ACTIONS(2397), 1, - sym_emphasis_end, - [23594] = 1, - ACTIONS(2399), 1, + [24671] = 1, + ACTIONS(2444), 1, + sym_delete_end, + [24675] = 1, + ACTIONS(2446), 1, + sym__square_bracket_span_end, + [24679] = 1, + ACTIONS(2448), 1, + anon_sym_RBRACK, + [24683] = 1, + ACTIONS(2450), 1, + sym__delete_mark_begin, + [24687] = 1, + ACTIONS(2452), 1, sym__verbatim_end, - [23598] = 1, - ACTIONS(2401), 1, + [24691] = 1, + ACTIONS(2454), 1, anon_sym_RBRACE, - [23602] = 1, - ACTIONS(2403), 1, + [24695] = 1, + ACTIONS(2456), 1, sym_emphasis_end, - [23606] = 1, - ACTIONS(2405), 1, + [24699] = 1, + ACTIONS(2458), 1, sym_strong_end, - [23610] = 1, - ACTIONS(2407), 1, + [24703] = 1, + ACTIONS(2460), 1, sym_superscript_end, - [23614] = 1, - ACTIONS(2409), 1, + [24707] = 1, + ACTIONS(2462), 1, sym_subscript_end, - [23618] = 1, - ACTIONS(2411), 1, + [24711] = 1, + ACTIONS(2464), 1, sym_highlighted_end, - [23622] = 1, - ACTIONS(2413), 1, + [24715] = 1, + ACTIONS(2466), 1, sym_insert_end, - [23626] = 1, - ACTIONS(2415), 1, + [24719] = 1, + ACTIONS(2468), 1, sym_delete_end, - [23630] = 1, - ACTIONS(2417), 1, + [24723] = 1, + ACTIONS(2470), 1, sym__square_bracket_span_end, - [23634] = 1, - ACTIONS(2419), 1, + [24727] = 1, + ACTIONS(2472), 1, anon_sym_RBRACK, - [23638] = 1, - ACTIONS(2421), 1, + [24731] = 1, + ACTIONS(2474), 1, anon_sym_RBRACE, - [23642] = 1, - ACTIONS(2423), 1, + [24735] = 1, + ACTIONS(2476), 1, sym__parens_span_end, - [23646] = 1, - ACTIONS(2425), 1, - sym__verbatim_end, - [23650] = 1, - ACTIONS(2427), 1, + [24739] = 1, + ACTIONS(2478), 1, + sym__square_bracket_span_mark_begin, + [24743] = 1, + ACTIONS(2480), 1, anon_sym_RBRACE, - [23654] = 1, - ACTIONS(2429), 1, + [24747] = 1, + ACTIONS(2482), 1, sym__verbatim_content, - [23658] = 1, - ACTIONS(2431), 1, + [24751] = 1, + ACTIONS(2484), 1, sym__curly_bracket_span_mark_begin, - [23662] = 1, - ACTIONS(2433), 1, + [24755] = 1, + ACTIONS(2486), 1, sym__verbatim_content, - [23666] = 1, - ACTIONS(2435), 1, - sym__square_bracket_span_end, - [23670] = 1, - ACTIONS(2437), 1, - sym__verbatim_end, - [23674] = 1, - ACTIONS(2439), 1, - anon_sym_RBRACK, - [23678] = 1, - ACTIONS(2441), 1, + [24759] = 1, + ACTIONS(2488), 1, sym__parens_span_end, - [23682] = 1, - ACTIONS(2443), 1, - anon_sym_RBRACE, - [23686] = 1, - ACTIONS(2445), 1, + [24763] = 1, + ACTIONS(2490), 1, sym__parens_span_end, - [23690] = 1, - ACTIONS(2447), 1, - anon_sym_RBRACK, - [23694] = 1, - ACTIONS(2449), 1, - sym__square_bracket_span_end, - [23698] = 1, - ACTIONS(2451), 1, - sym__newline, - [23702] = 1, - ACTIONS(2453), 1, - sym_delete_end, - [23706] = 1, - ACTIONS(2455), 1, + [24767] = 1, + ACTIONS(2492), 1, + sym__square_bracket_span_mark_begin, + [24771] = 1, + ACTIONS(2494), 1, + sym__verbatim_content, + [24775] = 1, + ACTIONS(2496), 1, + sym__square_bracket_span_mark_begin, + [24779] = 1, + ACTIONS(2498), 1, + sym__verbatim_content, + [24783] = 1, + ACTIONS(2500), 1, + anon_sym_RBRACE, + [24787] = 1, + ACTIONS(2502), 1, + aux_sym_inline_link_destination_token1, + [24791] = 1, + ACTIONS(2504), 1, + anon_sym_RBRACE, + [24795] = 1, + ACTIONS(2506), 1, + sym_insert_end, + [24799] = 1, + ACTIONS(2508), 1, sym__whitespace, - [23710] = 1, - ACTIONS(2457), 1, + [24803] = 1, + ACTIONS(2510), 1, aux_sym_inline_link_destination_token1, - [23714] = 1, - ACTIONS(2459), 1, + [24807] = 1, + ACTIONS(2512), 1, sym__square_bracket_span_end, - [23718] = 1, - ACTIONS(2461), 1, + [24811] = 1, + ACTIONS(2514), 1, sym_language, - [23722] = 1, - ACTIONS(2463), 1, + [24815] = 1, + ACTIONS(2516), 1, sym__verbatim_content, - [23726] = 1, - ACTIONS(2465), 1, + [24819] = 1, + ACTIONS(2518), 1, sym__curly_bracket_span_mark_begin, - [23730] = 1, - ACTIONS(2467), 1, + [24823] = 1, + ACTIONS(2520), 1, sym__verbatim_content, - [23734] = 1, - ACTIONS(2469), 1, + [24827] = 1, + ACTIONS(2522), 1, anon_sym_RBRACE, - [23738] = 1, - ACTIONS(2471), 1, - sym_insert_end, - [23742] = 1, - ACTIONS(2473), 1, - sym_highlighted_end, - [23746] = 1, - ACTIONS(2475), 1, + [24831] = 1, + ACTIONS(2524), 1, sym_subscript_end, - [23750] = 1, - ACTIONS(2477), 1, - sym_superscript_end, - [23754] = 1, - ACTIONS(2479), 1, - sym_strong_end, - [23758] = 1, - ACTIONS(2481), 1, - sym_emphasis_end, - [23762] = 1, - ACTIONS(2483), 1, + [24835] = 1, + ACTIONS(2526), 1, + sym__verbatim_end, + [24839] = 1, + ACTIONS(2528), 1, anon_sym_RBRACE, - [23766] = 1, - ACTIONS(2485), 1, + [24843] = 1, + ACTIONS(2530), 1, + sym_emphasis_end, + [24847] = 1, + ACTIONS(2532), 1, + sym_strong_end, + [24851] = 1, + ACTIONS(2534), 1, + sym_superscript_end, + [24855] = 1, + ACTIONS(2536), 1, sym_subscript_end, - [23770] = 1, - ACTIONS(2487), 1, - sym__verbatim_end, - [23774] = 1, - ACTIONS(2489), 1, + [24859] = 1, + ACTIONS(2538), 1, + sym_highlighted_end, + [24863] = 1, + ACTIONS(2540), 1, + anon_sym_EQ, + [24867] = 1, + ACTIONS(2542), 1, aux_sym_inline_link_destination_token1, - [23778] = 1, - ACTIONS(2491), 1, + [24871] = 1, + ACTIONS(2544), 1, sym__square_bracket_span_end, - [23782] = 1, - ACTIONS(2493), 1, + [24875] = 1, + ACTIONS(2546), 1, sym_language, - [23786] = 1, - ACTIONS(2495), 1, + [24879] = 1, + ACTIONS(2548), 1, sym__verbatim_content, - [23790] = 1, - ACTIONS(2497), 1, + [24883] = 1, + ACTIONS(2550), 1, sym__curly_bracket_span_mark_begin, - [23794] = 1, - ACTIONS(2499), 1, + [24887] = 1, + ACTIONS(2552), 1, sym__verbatim_content, - [23798] = 1, - ACTIONS(2501), 1, - sym__parens_span_end, - [23802] = 1, - ACTIONS(2503), 1, - anon_sym_RBRACK, - [23806] = 1, - ACTIONS(2505), 1, - sym__square_bracket_span_end, - [23810] = 1, - ACTIONS(2507), 1, + [24891] = 1, + ACTIONS(2554), 1, + sym_insert_end, + [24895] = 1, + ACTIONS(1666), 1, + anon_sym_RBRACE, + [24899] = 1, + ACTIONS(2556), 1, + sym__verbatim_end, + [24903] = 1, + ACTIONS(2558), 1, + sym__verbatim_end, + [24907] = 1, + ACTIONS(2560), 1, sym_delete_end, - [23814] = 1, - ACTIONS(2509), 1, + [24911] = 1, + ACTIONS(2562), 1, + sym__square_bracket_span_end, + [24915] = 1, + ACTIONS(2564), 1, + sym__square_bracket_span_end, + [24919] = 1, + ACTIONS(2566), 1, sym__verbatim_end, - [23818] = 1, - ACTIONS(2511), 1, - sym_insert_end, - [23822] = 1, - ACTIONS(2513), 1, - sym_highlighted_end, - [23826] = 1, - ACTIONS(2515), 1, - sym_subscript_end, - [23830] = 1, - ACTIONS(2517), 1, - sym_superscript_end, - [23834] = 1, - ACTIONS(2519), 1, - sym__newline, - [23838] = 1, - ACTIONS(2521), 1, + [24923] = 1, + ACTIONS(2568), 1, + sym__verbatim_end, + [24927] = 1, + ACTIONS(2570), 1, + sym__verbatim_end, + [24931] = 1, + ACTIONS(2572), 1, aux_sym_inline_link_destination_token1, - [23842] = 1, - ACTIONS(2523), 1, + [24935] = 1, + ACTIONS(2574), 1, sym__square_bracket_span_end, - [23846] = 1, - ACTIONS(2525), 1, + [24939] = 1, + ACTIONS(2576), 1, sym_language, - [23850] = 1, - ACTIONS(2527), 1, + [24943] = 1, + ACTIONS(2578), 1, sym__verbatim_content, - [23854] = 1, - ACTIONS(2529), 1, + [24947] = 1, + ACTIONS(2580), 1, sym__curly_bracket_span_mark_begin, - [23858] = 1, - ACTIONS(2531), 1, + [24951] = 1, + ACTIONS(2582), 1, sym__verbatim_content, - [23862] = 1, - ACTIONS(2533), 1, - sym_strong_end, - [23866] = 1, - ACTIONS(2535), 1, - sym_emphasis_end, - [23870] = 1, - ACTIONS(2537), 1, - anon_sym_RBRACE, - [23874] = 1, - ACTIONS(2539), 1, - sym__verbatim_end, - [23878] = 1, - ACTIONS(2541), 1, + [24955] = 1, + ACTIONS(2584), 1, sym__verbatim_end, - [23882] = 1, - ACTIONS(2543), 1, - sym__newline, - [23886] = 1, - ACTIONS(2545), 1, + [24959] = 1, + ACTIONS(2586), 1, anon_sym_RBRACE, - [23890] = 1, - ACTIONS(2547), 1, - aux_sym_value_token1, - [23894] = 1, - ACTIONS(2549), 1, - sym__parens_span_end, - [23898] = 1, - ACTIONS(2551), 1, - anon_sym_DQUOTE, - [23902] = 1, - ACTIONS(2553), 1, + [24963] = 1, + ACTIONS(2588), 1, + sym_emphasis_end, + [24967] = 1, + ACTIONS(2590), 1, + anon_sym_RBRACE, + [24971] = 1, + ACTIONS(2592), 1, + sym_strong_end, + [24975] = 1, + ACTIONS(2594), 1, + sym_superscript_end, + [24979] = 1, + ACTIONS(2596), 1, + sym_subscript_end, + [24983] = 1, + ACTIONS(2598), 1, + sym_highlighted_end, + [24987] = 1, + ACTIONS(2600), 1, + sym_emphasis_end, + [24991] = 1, + ACTIONS(2602), 1, + sym_insert_end, + [24995] = 1, + ACTIONS(2604), 1, aux_sym_inline_link_destination_token1, - [23906] = 1, - ACTIONS(2555), 1, + [24999] = 1, + ACTIONS(2606), 1, sym__square_bracket_span_end, - [23910] = 1, - ACTIONS(2557), 1, + [25003] = 1, + ACTIONS(2608), 1, sym_language, - [23914] = 1, - ACTIONS(2559), 1, + [25007] = 1, + ACTIONS(2610), 1, sym__verbatim_content, - [23918] = 1, - ACTIONS(2561), 1, + [25011] = 1, + ACTIONS(2612), 1, sym__curly_bracket_span_mark_begin, - [23922] = 1, - ACTIONS(2563), 1, + [25015] = 1, + ACTIONS(2614), 1, sym__verbatim_content, - [23926] = 1, - ACTIONS(2565), 1, - anon_sym_RBRACK, - [23930] = 1, - ACTIONS(1607), 1, - anon_sym_RBRACE, - [23934] = 1, - ACTIONS(2567), 1, + [25019] = 1, + ACTIONS(2616), 1, + sym_strong_end, + [25023] = 1, + ACTIONS(2618), 1, + sym_delete_end, + [25027] = 1, + ACTIONS(2620), 1, sym__square_bracket_span_end, - [23938] = 1, - ACTIONS(1609), 1, - anon_sym_RBRACE, - [23942] = 1, - ACTIONS(2569), 1, - anon_sym_RBRACE, - [23946] = 1, - ACTIONS(2571), 1, + [25031] = 1, + ACTIONS(2622), 1, + anon_sym_RBRACK, + [25035] = 1, + ACTIONS(2624), 1, + sym_superscript_end, + [25039] = 1, + ACTIONS(2626), 1, + aux_sym_value_token1, + [25043] = 1, + ACTIONS(2628), 1, sym__parens_span_end, - [23950] = 1, - ACTIONS(2573), 1, - anon_sym_EQ, - [23954] = 1, - ACTIONS(2575), 1, - sym_delete_end, - [23958] = 1, - ACTIONS(2577), 1, - sym_insert_end, - [23962] = 1, - ACTIONS(2579), 1, - anon_sym_EQ, - [23966] = 1, - ACTIONS(2581), 1, + [25047] = 1, + ACTIONS(2630), 1, + sym_subscript_end, + [25051] = 1, + ACTIONS(2632), 1, + sym_highlighted_end, + [25055] = 1, + ACTIONS(2634), 1, + anon_sym_RBRACE, + [25059] = 1, + ACTIONS(2636), 1, aux_sym_inline_link_destination_token1, - [23970] = 1, - ACTIONS(2583), 1, + [25063] = 1, + ACTIONS(2638), 1, sym__square_bracket_span_end, - [23974] = 1, - ACTIONS(2585), 1, + [25067] = 1, + ACTIONS(2640), 1, sym_language, - [23978] = 1, - ACTIONS(2587), 1, + [25071] = 1, + ACTIONS(2642), 1, sym__verbatim_content, - [23982] = 1, - ACTIONS(2589), 1, + [25075] = 1, + ACTIONS(2644), 1, sym__curly_bracket_span_mark_begin, - [23986] = 1, - ACTIONS(2591), 1, + [25079] = 1, + ACTIONS(2646), 1, sym__verbatim_content, - [23990] = 1, - ACTIONS(2593), 1, - sym_highlighted_end, - [23994] = 1, - ACTIONS(2595), 1, - sym_language, - [23998] = 1, - ACTIONS(2597), 1, - sym__square_bracket_span_end, - [24002] = 1, - ACTIONS(2599), 1, + [25083] = 1, + ACTIONS(2648), 1, + sym_insert_end, + [25087] = 1, + ACTIONS(2650), 1, + sym__verbatim_end, + [25091] = 1, + ACTIONS(1656), 1, + anon_sym_RBRACE, + [25095] = 1, + ACTIONS(2652), 1, + sym_delete_end, + [25099] = 1, + ACTIONS(2654), 1, sym__square_bracket_span_end, - [24006] = 1, - ACTIONS(2601), 1, - aux_sym_inline_link_destination_token1, - [24010] = 1, - ACTIONS(2603), 1, + [25103] = 1, + ACTIONS(2656), 1, anon_sym_RBRACK, - [24014] = 1, - ACTIONS(2605), 1, - sym__square_bracket_span_end, - [24018] = 1, - ACTIONS(2607), 1, - sym__square_bracket_span_end, - [24022] = 1, - ACTIONS(2609), 1, - sym_subscript_end, - [24026] = 1, - ACTIONS(2611), 1, + [25107] = 1, + ACTIONS(2658), 1, + sym_superscript_end, + [25111] = 1, + ACTIONS(2660), 1, + sym__parens_span_end, + [25115] = 1, + ACTIONS(2662), 1, sym_delete_end, - [24030] = 1, - ACTIONS(2613), 1, + [25119] = 1, + ACTIONS(2664), 1, + anon_sym_RBRACE, + [25123] = 1, + ACTIONS(2666), 1, aux_sym_inline_link_destination_token1, - [24034] = 1, - ACTIONS(2615), 1, + [25127] = 1, + ACTIONS(2668), 1, sym__square_bracket_span_end, - [24038] = 1, - ACTIONS(2617), 1, + [25131] = 1, + ACTIONS(2670), 1, sym_language, - [24042] = 1, - ACTIONS(2619), 1, + [25135] = 1, + ACTIONS(2672), 1, sym__verbatim_content, - [24046] = 1, - ACTIONS(2621), 1, + [25139] = 1, + ACTIONS(2674), 1, sym__curly_bracket_span_mark_begin, - [24050] = 1, - ACTIONS(2623), 1, + [25143] = 1, + ACTIONS(2676), 1, sym__verbatim_content, - [24054] = 1, - ACTIONS(2625), 1, - sym_superscript_end, - [24058] = 1, - ACTIONS(2627), 1, - sym_insert_end, - [24062] = 1, - ACTIONS(2629), 1, - sym_highlighted_end, - [24066] = 1, - ACTIONS(2631), 1, - sym_subscript_end, - [24070] = 1, - ACTIONS(2633), 1, - sym_superscript_end, - [24074] = 1, - ACTIONS(2635), 1, - sym_strong_end, - [24078] = 1, - ACTIONS(2637), 1, - sym_emphasis_end, - [24082] = 1, - ACTIONS(2639), 1, + [25147] = 1, + ACTIONS(2678), 1, + sym__square_bracket_span_end, + [25151] = 1, + ACTIONS(2680), 1, + sym__square_bracket_span_end, + [25155] = 1, + ACTIONS(2682), 1, + sym__verbatim_end, + [25159] = 1, + ACTIONS(2684), 1, anon_sym_RBRACE, - [24086] = 1, - ACTIONS(2641), 1, + [25163] = 1, + ACTIONS(2686), 1, + sym_emphasis_end, + [25167] = 1, + ACTIONS(2688), 1, sym_strong_end, - [24090] = 1, - ACTIONS(2643), 1, + [25171] = 1, + ACTIONS(2690), 1, + sym_superscript_end, + [25175] = 1, + ACTIONS(2692), 1, sym__whitespace, - [24094] = 1, - ACTIONS(2645), 1, + [25179] = 1, + ACTIONS(2694), 1, + sym_subscript_end, + [25183] = 1, + ACTIONS(2696), 1, + anon_sym_DQUOTE, + [25187] = 1, + ACTIONS(2698), 1, aux_sym_inline_link_destination_token1, - [24098] = 1, - ACTIONS(2647), 1, + [25191] = 1, + ACTIONS(2700), 1, sym__square_bracket_span_end, - [24102] = 1, - ACTIONS(2649), 1, + [25195] = 1, + ACTIONS(2702), 1, sym_language, - [24106] = 1, - ACTIONS(2651), 1, + [25199] = 1, + ACTIONS(2704), 1, sym__verbatim_content, - [24110] = 1, - ACTIONS(2653), 1, + [25203] = 1, + ACTIONS(2706), 1, sym__curly_bracket_span_mark_begin, - [24114] = 1, - ACTIONS(2655), 1, + [25207] = 1, + ACTIONS(2708), 1, sym__verbatim_content, - [24118] = 1, - ACTIONS(2657), 1, - sym_emphasis_end, - [24122] = 1, - ACTIONS(2659), 1, + [25211] = 1, + ACTIONS(2710), 1, sym__verbatim_end, - [24126] = 1, - ACTIONS(2661), 1, - sym__parens_span_mark_begin, - [24130] = 1, - ACTIONS(2663), 1, + [25215] = 1, + ACTIONS(2712), 1, + sym__parens_span_end, + [25219] = 1, + ACTIONS(2714), 1, + sym_insert_end, + [25223] = 1, + ACTIONS(2716), 1, + sym_delete_end, + [25227] = 1, + ACTIONS(2718), 1, + sym__square_bracket_span_end, + [25231] = 1, + ACTIONS(2720), 1, anon_sym_RBRACE, - [24134] = 1, - ACTIONS(2665), 1, - sym__verbatim_end, - [24138] = 1, - ACTIONS(2667), 1, - sym__verbatim_content, - [24142] = 1, - ACTIONS(2669), 1, - sym__curly_bracket_span_mark_begin, - [24146] = 1, - ACTIONS(2671), 1, + [25235] = 1, + ACTIONS(2722), 1, sym__verbatim_end, - [24150] = 1, - ACTIONS(2673), 1, - sym__newline, - [24154] = 1, - ACTIONS(2675), 1, + [25239] = 1, + ACTIONS(2724), 1, anon_sym_RBRACE, - [24158] = 1, - ACTIONS(2677), 1, + [25243] = 1, + ACTIONS(2726), 1, + ts_builtin_sym_end, + [25247] = 1, + ACTIONS(2728), 1, + sym_emphasis_end, + [25251] = 1, + ACTIONS(2730), 1, aux_sym_inline_link_destination_token1, - [24162] = 1, - ACTIONS(2679), 1, + [25255] = 1, + ACTIONS(2732), 1, sym__square_bracket_span_end, - [24166] = 1, - ACTIONS(2681), 1, + [25259] = 1, + ACTIONS(2734), 1, sym_language, - [24170] = 1, - ACTIONS(2683), 1, + [25263] = 1, + ACTIONS(2736), 1, sym__verbatim_content, - [24174] = 1, - ACTIONS(2685), 1, + [25267] = 1, + ACTIONS(2738), 1, sym__curly_bracket_span_mark_begin, - [24178] = 1, - ACTIONS(2687), 1, - sym__verbatim_content, - [24182] = 1, - ACTIONS(2689), 1, - sym__parens_span_end, - [24186] = 1, - ACTIONS(2691), 1, + [25271] = 1, + ACTIONS(2740), 1, sym__verbatim_content, - [24190] = 1, - ACTIONS(2693), 1, + [25275] = 1, + ACTIONS(2742), 1, + ts_builtin_sym_end, + [25279] = 1, + ACTIONS(2744), 1, + sym_strong_end, + [25283] = 1, + ACTIONS(2746), 1, + sym_superscript_end, + [25287] = 1, + ACTIONS(2748), 1, + sym_subscript_end, + [25291] = 1, + ACTIONS(2750), 1, + sym_highlighted_end, + [25295] = 1, + ACTIONS(2752), 1, + sym_insert_end, + [25299] = 1, + ACTIONS(2754), 1, + sym_delete_end, + [25303] = 1, + ACTIONS(2756), 1, + sym__square_bracket_span_end, + [25307] = 1, + ACTIONS(2758), 1, sym__verbatim_end, - [24194] = 1, - ACTIONS(2695), 1, - sym__square_bracket_span_begin, - [24198] = 1, - ACTIONS(2697), 1, - sym__square_bracket_span_begin, - [24202] = 1, - ACTIONS(2699), 1, - sym__square_bracket_span_begin, - [24206] = 1, - ACTIONS(2701), 1, - sym__delete_mark_begin, - [24210] = 1, - ACTIONS(2703), 1, - sym__insert_mark_begin, - [24214] = 1, - ACTIONS(2705), 1, + [25311] = 1, + ACTIONS(2760), 1, anon_sym_RBRACK, - [24218] = 1, - ACTIONS(2707), 1, - sym__highlighted_mark_begin, - [24222] = 1, - ACTIONS(2709), 1, + [25315] = 1, + ACTIONS(2762), 1, aux_sym_inline_link_destination_token1, - [24226] = 1, - ACTIONS(2711), 1, + [25319] = 1, + ACTIONS(2764), 1, sym__square_bracket_span_end, - [24230] = 1, - ACTIONS(2713), 1, + [25323] = 1, + ACTIONS(2766), 1, sym_language, - [24234] = 1, - ACTIONS(2715), 1, + [25327] = 1, + ACTIONS(2768), 1, sym__verbatim_content, - [24238] = 1, - ACTIONS(2717), 1, + [25331] = 1, + ACTIONS(2770), 1, sym__curly_bracket_span_mark_begin, - [24242] = 1, - ACTIONS(2719), 1, + [25335] = 1, + ACTIONS(2772), 1, sym__verbatim_content, - [24246] = 1, - ACTIONS(2721), 1, - sym__square_bracket_span_end, - [24250] = 1, - ACTIONS(2723), 1, - sym__subscript_mark_begin, - [24254] = 1, - ACTIONS(2725), 1, - sym__superscript_mark_begin, - [24258] = 1, - ACTIONS(2727), 1, - sym__strong_mark_begin, - [24262] = 1, - ACTIONS(2729), 1, - sym__emphasis_mark_begin, - [24266] = 1, - ACTIONS(2731), 1, - ts_builtin_sym_end, - [24270] = 1, - ACTIONS(2733), 1, - ts_builtin_sym_end, - [24274] = 1, - ACTIONS(2735), 1, - sym_delete_end, - [24278] = 1, - ACTIONS(2737), 1, - sym_insert_end, - [24282] = 1, - ACTIONS(2739), 1, - sym_highlighted_end, - [24286] = 1, - ACTIONS(2741), 1, + [25339] = 1, + ACTIONS(2774), 1, + anon_sym_RBRACK, + [25343] = 1, + ACTIONS(2776), 1, + sym_emphasis_end, + [25347] = 1, + ACTIONS(2778), 1, + sym__parens_span_end, + [25351] = 1, + ACTIONS(2780), 1, + sym_language, + [25355] = 1, + ACTIONS(2782), 1, + anon_sym_RBRACE, + [25359] = 1, + ACTIONS(2784), 1, + sym__parens_span_end, + [25363] = 1, + ACTIONS(2786), 1, + sym__curly_bracket_span_mark_begin, + [25367] = 1, + ACTIONS(2788), 1, + sym__verbatim_end, + [25371] = 1, + ACTIONS(2790), 1, + anon_sym_RBRACE, + [25375] = 1, + ACTIONS(2792), 1, + sym_emphasis_end, + [25379] = 1, + ACTIONS(2794), 1, aux_sym_inline_link_destination_token1, - [24290] = 1, - ACTIONS(2743), 1, + [25383] = 1, + ACTIONS(2796), 1, sym__square_bracket_span_end, - [24294] = 1, - ACTIONS(2745), 1, + [25387] = 1, + ACTIONS(2798), 1, sym_language, - [24298] = 1, - ACTIONS(2747), 1, + [25391] = 1, + ACTIONS(2800), 1, sym__emphasis_mark_begin, - [24302] = 1, - ACTIONS(2749), 1, + [25395] = 1, + ACTIONS(2802), 1, sym__strong_mark_begin, - [24306] = 1, - ACTIONS(2751), 1, + [25399] = 1, + ACTIONS(2804), 1, sym__superscript_mark_begin, - [24310] = 1, - ACTIONS(2753), 1, + [25403] = 1, + ACTIONS(2806), 1, sym__subscript_mark_begin, - [24314] = 1, - ACTIONS(2755), 1, + [25407] = 1, + ACTIONS(2808), 1, sym__highlighted_mark_begin, - [24318] = 1, - ACTIONS(2757), 1, + [25411] = 1, + ACTIONS(2810), 1, sym__insert_mark_begin, - [24322] = 1, - ACTIONS(2759), 1, + [25415] = 1, + ACTIONS(2812), 1, sym__delete_mark_begin, - [24326] = 1, - ACTIONS(2761), 1, - sym__square_bracket_span_begin, - [24330] = 1, - ACTIONS(2763), 1, + [25419] = 1, + ACTIONS(2814), 1, + sym__square_bracket_span_mark_begin, + [25423] = 1, + ACTIONS(2816), 1, sym__parens_span_mark_begin, - [24334] = 1, - ACTIONS(2765), 1, - sym_subscript_end, - [24338] = 1, - ACTIONS(2767), 1, + [25427] = 1, + ACTIONS(2818), 1, + sym_strong_end, + [25431] = 1, + ACTIONS(2820), 1, sym__emphasis_mark_begin, - [24342] = 1, - ACTIONS(2769), 1, + [25435] = 1, + ACTIONS(2822), 1, sym__strong_mark_begin, - [24346] = 1, - ACTIONS(2771), 1, + [25439] = 1, + ACTIONS(2824), 1, sym__superscript_mark_begin, - [24350] = 1, - ACTIONS(2773), 1, + [25443] = 1, + ACTIONS(2826), 1, sym__subscript_mark_begin, - [24354] = 1, - ACTIONS(2775), 1, + [25447] = 1, + ACTIONS(2828), 1, sym__highlighted_mark_begin, - [24358] = 1, - ACTIONS(2777), 1, + [25451] = 1, + ACTIONS(2830), 1, sym__insert_mark_begin, - [24362] = 1, - ACTIONS(2779), 1, + [25455] = 1, + ACTIONS(2832), 1, sym__delete_mark_begin, - [24366] = 1, - ACTIONS(2781), 1, - sym__square_bracket_span_begin, - [24370] = 1, - ACTIONS(2783), 1, + [25459] = 1, + ACTIONS(2834), 1, + sym__square_bracket_span_mark_begin, + [25463] = 1, + ACTIONS(2836), 1, sym__parens_span_mark_begin, - [24374] = 1, - ACTIONS(2785), 1, + [25467] = 1, + ACTIONS(2838), 1, sym_superscript_end, - [24378] = 1, - ACTIONS(2787), 1, + [25471] = 1, + ACTIONS(2840), 1, sym__emphasis_mark_begin, - [24382] = 1, - ACTIONS(2789), 1, + [25475] = 1, + ACTIONS(2842), 1, sym__strong_mark_begin, - [24386] = 1, - ACTIONS(2791), 1, + [25479] = 1, + ACTIONS(2844), 1, sym__superscript_mark_begin, - [24390] = 1, - ACTIONS(2793), 1, + [25483] = 1, + ACTIONS(2846), 1, sym__subscript_mark_begin, - [24394] = 1, - ACTIONS(2795), 1, + [25487] = 1, + ACTIONS(2848), 1, sym__highlighted_mark_begin, - [24398] = 1, - ACTIONS(2797), 1, + [25491] = 1, + ACTIONS(2850), 1, sym__insert_mark_begin, - [24402] = 1, - ACTIONS(2799), 1, + [25495] = 1, + ACTIONS(2852), 1, sym__delete_mark_begin, - [24406] = 1, - ACTIONS(2801), 1, - sym__square_bracket_span_begin, - [24410] = 1, - ACTIONS(2803), 1, + [25499] = 1, + ACTIONS(2854), 1, + sym__square_bracket_span_mark_begin, + [25503] = 1, + ACTIONS(2856), 1, sym__parens_span_mark_begin, - [24414] = 1, - ACTIONS(2805), 1, - sym__newline, - [24418] = 1, - ACTIONS(2807), 1, + [25507] = 1, + ACTIONS(2858), 1, + sym_subscript_end, + [25511] = 1, + ACTIONS(2860), 1, sym__emphasis_mark_begin, - [24422] = 1, - ACTIONS(2809), 1, + [25515] = 1, + ACTIONS(2862), 1, sym__strong_mark_begin, - [24426] = 1, - ACTIONS(2811), 1, + [25519] = 1, + ACTIONS(2864), 1, sym__superscript_mark_begin, - [24430] = 1, - ACTIONS(2813), 1, + [25523] = 1, + ACTIONS(2866), 1, sym__subscript_mark_begin, - [24434] = 1, - ACTIONS(2815), 1, + [25527] = 1, + ACTIONS(2868), 1, sym__highlighted_mark_begin, - [24438] = 1, - ACTIONS(2817), 1, + [25531] = 1, + ACTIONS(2870), 1, sym__insert_mark_begin, - [24442] = 1, - ACTIONS(2819), 1, + [25535] = 1, + ACTIONS(2872), 1, sym__delete_mark_begin, - [24446] = 1, - ACTIONS(2821), 1, - sym__square_bracket_span_begin, - [24450] = 1, - ACTIONS(2823), 1, + [25539] = 1, + ACTIONS(2874), 1, + sym__square_bracket_span_mark_begin, + [25543] = 1, + ACTIONS(2876), 1, sym__parens_span_mark_begin, - [24454] = 1, - ACTIONS(2825), 1, - sym_strong_end, - [24458] = 1, - ACTIONS(2827), 1, + [25547] = 1, + ACTIONS(2878), 1, + sym_highlighted_end, + [25551] = 1, + ACTIONS(2880), 1, sym__emphasis_mark_begin, - [24462] = 1, - ACTIONS(2829), 1, + [25555] = 1, + ACTIONS(2882), 1, sym__strong_mark_begin, - [24466] = 1, - ACTIONS(2831), 1, + [25559] = 1, + ACTIONS(2884), 1, sym__superscript_mark_begin, - [24470] = 1, - ACTIONS(2833), 1, + [25563] = 1, + ACTIONS(2886), 1, sym__subscript_mark_begin, - [24474] = 1, - ACTIONS(2835), 1, + [25567] = 1, + ACTIONS(2888), 1, sym__highlighted_mark_begin, - [24478] = 1, - ACTIONS(2837), 1, + [25571] = 1, + ACTIONS(2890), 1, sym__insert_mark_begin, - [24482] = 1, - ACTIONS(2839), 1, + [25575] = 1, + ACTIONS(2892), 1, sym__delete_mark_begin, - [24486] = 1, - ACTIONS(2841), 1, - sym__square_bracket_span_begin, - [24490] = 1, - ACTIONS(2843), 1, + [25579] = 1, + ACTIONS(2894), 1, + sym__square_bracket_span_mark_begin, + [25583] = 1, + ACTIONS(2896), 1, sym__parens_span_mark_begin, - [24494] = 1, - ACTIONS(2845), 1, - sym_emphasis_end, - [24498] = 1, - ACTIONS(2847), 1, + [25587] = 1, + ACTIONS(2898), 1, + sym_insert_end, + [25591] = 1, + ACTIONS(2900), 1, sym__emphasis_mark_begin, - [24502] = 1, - ACTIONS(2849), 1, + [25595] = 1, + ACTIONS(2902), 1, sym__strong_mark_begin, - [24506] = 1, - ACTIONS(2851), 1, + [25599] = 1, + ACTIONS(2904), 1, sym__superscript_mark_begin, - [24510] = 1, - ACTIONS(2853), 1, + [25603] = 1, + ACTIONS(2906), 1, sym__subscript_mark_begin, - [24514] = 1, - ACTIONS(2855), 1, + [25607] = 1, + ACTIONS(2908), 1, sym__highlighted_mark_begin, - [24518] = 1, - ACTIONS(2857), 1, + [25611] = 1, + ACTIONS(2910), 1, sym__insert_mark_begin, - [24522] = 1, - ACTIONS(2859), 1, + [25615] = 1, + ACTIONS(2912), 1, sym__delete_mark_begin, - [24526] = 1, - ACTIONS(2861), 1, - sym__square_bracket_span_begin, - [24530] = 1, - ACTIONS(2863), 1, + [25619] = 1, + ACTIONS(2914), 1, + sym__square_bracket_span_mark_begin, + [25623] = 1, + ACTIONS(2916), 1, sym__parens_span_mark_begin, - [24534] = 1, - ACTIONS(2865), 1, - anon_sym_RBRACE, - [24538] = 1, - ACTIONS(2867), 1, + [25627] = 1, + ACTIONS(2918), 1, + sym_delete_end, + [25631] = 1, + ACTIONS(2920), 1, sym__emphasis_mark_begin, - [24542] = 1, - ACTIONS(2869), 1, + [25635] = 1, + ACTIONS(2922), 1, sym__strong_mark_begin, - [24546] = 1, - ACTIONS(2871), 1, + [25639] = 1, + ACTIONS(2924), 1, sym__superscript_mark_begin, - [24550] = 1, - ACTIONS(2873), 1, + [25643] = 1, + ACTIONS(2926), 1, sym__subscript_mark_begin, - [24554] = 1, - ACTIONS(2875), 1, + [25647] = 1, + ACTIONS(2928), 1, sym__highlighted_mark_begin, - [24558] = 1, - ACTIONS(2877), 1, + [25651] = 1, + ACTIONS(2930), 1, sym__insert_mark_begin, - [24562] = 1, - ACTIONS(2879), 1, + [25655] = 1, + ACTIONS(2932), 1, sym__delete_mark_begin, - [24566] = 1, - ACTIONS(2881), 1, - sym__square_bracket_span_begin, - [24570] = 1, - ACTIONS(2883), 1, + [25659] = 1, + ACTIONS(2934), 1, + sym__square_bracket_span_mark_begin, + [25663] = 1, + ACTIONS(2936), 1, sym__parens_span_mark_begin, - [24574] = 1, - ACTIONS(2885), 1, - sym__verbatim_end, - [24578] = 1, - ACTIONS(2887), 1, + [25667] = 1, + ACTIONS(2938), 1, + sym__square_bracket_span_end, + [25671] = 1, + ACTIONS(2940), 1, sym__emphasis_mark_begin, - [24582] = 1, - ACTIONS(2889), 1, + [25675] = 1, + ACTIONS(2942), 1, sym__strong_mark_begin, - [24586] = 1, - ACTIONS(2891), 1, + [25679] = 1, + ACTIONS(2944), 1, sym__superscript_mark_begin, - [24590] = 1, - ACTIONS(2893), 1, + [25683] = 1, + ACTIONS(2946), 1, sym__subscript_mark_begin, - [24594] = 1, - ACTIONS(2895), 1, + [25687] = 1, + ACTIONS(2948), 1, sym__highlighted_mark_begin, - [24598] = 1, - ACTIONS(2897), 1, + [25691] = 1, + ACTIONS(2950), 1, sym__insert_mark_begin, - [24602] = 1, - ACTIONS(2899), 1, + [25695] = 1, + ACTIONS(2952), 1, sym__delete_mark_begin, - [24606] = 1, - ACTIONS(2901), 1, - sym__square_bracket_span_begin, - [24610] = 1, - ACTIONS(2903), 1, + [25699] = 1, + ACTIONS(2954), 1, + sym__square_bracket_span_mark_begin, + [25703] = 1, + ACTIONS(2956), 1, sym__parens_span_mark_begin, - [24614] = 1, - ACTIONS(2905), 1, - sym__verbatim_end, - [24618] = 1, - ACTIONS(2907), 1, + [25707] = 1, + ACTIONS(2958), 1, + anon_sym_RBRACK, + [25711] = 1, + ACTIONS(2960), 1, sym__emphasis_mark_begin, - [24622] = 1, - ACTIONS(2909), 1, + [25715] = 1, + ACTIONS(2962), 1, sym__strong_mark_begin, - [24626] = 1, - ACTIONS(2911), 1, + [25719] = 1, + ACTIONS(2964), 1, sym__superscript_mark_begin, - [24630] = 1, - ACTIONS(2913), 1, + [25723] = 1, + ACTIONS(2966), 1, sym__subscript_mark_begin, - [24634] = 1, - ACTIONS(2915), 1, + [25727] = 1, + ACTIONS(2968), 1, sym__highlighted_mark_begin, - [24638] = 1, - ACTIONS(2917), 1, + [25731] = 1, + ACTIONS(2970), 1, sym__insert_mark_begin, - [24642] = 1, - ACTIONS(2919), 1, + [25735] = 1, + ACTIONS(2972), 1, sym__delete_mark_begin, - [24646] = 1, - ACTIONS(2921), 1, - sym__square_bracket_span_begin, - [24650] = 1, - ACTIONS(2923), 1, + [25739] = 1, + ACTIONS(2974), 1, + sym__square_bracket_span_mark_begin, + [25743] = 1, + ACTIONS(2976), 1, sym__parens_span_mark_begin, - [24654] = 1, - ACTIONS(2925), 1, - sym__newline, - [24658] = 1, - ACTIONS(2927), 1, + [25747] = 1, + ACTIONS(2978), 1, sym__emphasis_mark_begin, - [24662] = 1, - ACTIONS(2929), 1, + [25751] = 1, + ACTIONS(2980), 1, + sym__emphasis_mark_begin, + [25755] = 1, + ACTIONS(2982), 1, sym__strong_mark_begin, - [24666] = 1, - ACTIONS(2931), 1, + [25759] = 1, + ACTIONS(2984), 1, sym__superscript_mark_begin, - [24670] = 1, - ACTIONS(2933), 1, + [25763] = 1, + ACTIONS(2986), 1, sym__subscript_mark_begin, - [24674] = 1, - ACTIONS(2935), 1, + [25767] = 1, + ACTIONS(2988), 1, sym__highlighted_mark_begin, - [24678] = 1, - ACTIONS(2937), 1, + [25771] = 1, + ACTIONS(2990), 1, sym__insert_mark_begin, - [24682] = 1, - ACTIONS(2939), 1, + [25775] = 1, + ACTIONS(2992), 1, sym__delete_mark_begin, - [24686] = 1, - ACTIONS(2941), 1, - sym__square_bracket_span_begin, - [24690] = 1, - ACTIONS(2943), 1, + [25779] = 1, + ACTIONS(2994), 1, + sym__square_bracket_span_mark_begin, + [25783] = 1, + ACTIONS(2996), 1, sym__parens_span_mark_begin, - [24694] = 1, - ACTIONS(2945), 1, - anon_sym_RBRACE, - [24698] = 1, - ACTIONS(2947), 1, - sym__square_bracket_span_begin, - [24702] = 1, - ACTIONS(2949), 1, - sym__square_bracket_span_begin, - [24706] = 1, - ACTIONS(2951), 1, - sym__square_bracket_span_begin, - [24710] = 1, - ACTIONS(2953), 1, - sym__square_bracket_span_begin, - [24714] = 1, - ACTIONS(2955), 1, - sym__square_bracket_span_begin, - [24718] = 1, - ACTIONS(2957), 1, - sym__square_bracket_span_begin, - [24722] = 1, - ACTIONS(2959), 1, - sym__square_bracket_span_begin, - [24726] = 1, - ACTIONS(2961), 1, - sym__square_bracket_span_begin, - [24730] = 1, - ACTIONS(2963), 1, - sym__square_bracket_span_begin, - [24734] = 1, - ACTIONS(2965), 1, - sym__square_bracket_span_begin, + [25787] = 1, + ACTIONS(2998), 1, + sym_strong_end, + [25791] = 1, + ACTIONS(3000), 1, + sym__square_bracket_span_mark_begin, + [25795] = 1, + ACTIONS(3002), 1, + sym__square_bracket_span_mark_begin, + [25799] = 1, + ACTIONS(3004), 1, + sym__square_bracket_span_mark_begin, + [25803] = 1, + ACTIONS(3006), 1, + sym__square_bracket_span_mark_begin, + [25807] = 1, + ACTIONS(3008), 1, + sym__square_bracket_span_mark_begin, + [25811] = 1, + ACTIONS(3010), 1, + sym__square_bracket_span_mark_begin, + [25815] = 1, + ACTIONS(3012), 1, + sym__square_bracket_span_mark_begin, + [25819] = 1, + ACTIONS(3014), 1, + sym__square_bracket_span_mark_begin, + [25823] = 1, + ACTIONS(3016), 1, + sym__square_bracket_span_mark_begin, + [25827] = 1, + ACTIONS(3018), 1, + sym__square_bracket_span_mark_begin, + [25831] = 1, + ACTIONS(3020), 1, + sym__verbatim_end, }; static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(121)] = 0, - [SMALL_STATE(122)] = 55, - [SMALL_STATE(123)] = 110, - [SMALL_STATE(124)] = 165, - [SMALL_STATE(125)] = 220, - [SMALL_STATE(126)] = 275, - [SMALL_STATE(127)] = 330, - [SMALL_STATE(128)] = 385, - [SMALL_STATE(129)] = 440, - [SMALL_STATE(130)] = 495, - [SMALL_STATE(131)] = 550, - [SMALL_STATE(132)] = 602, - [SMALL_STATE(133)] = 652, - [SMALL_STATE(134)] = 702, - [SMALL_STATE(135)] = 754, - [SMALL_STATE(136)] = 804, - [SMALL_STATE(137)] = 854, - [SMALL_STATE(138)] = 904, - [SMALL_STATE(139)] = 956, - [SMALL_STATE(140)] = 1008, - [SMALL_STATE(141)] = 1060, - [SMALL_STATE(142)] = 1110, - [SMALL_STATE(143)] = 1162, - [SMALL_STATE(144)] = 1214, - [SMALL_STATE(145)] = 1266, - [SMALL_STATE(146)] = 1318, - [SMALL_STATE(147)] = 1368, - [SMALL_STATE(148)] = 1418, - [SMALL_STATE(149)] = 1468, - [SMALL_STATE(150)] = 1518, - [SMALL_STATE(151)] = 1572, - [SMALL_STATE(152)] = 1624, - [SMALL_STATE(153)] = 1673, - [SMALL_STATE(154)] = 1720, - [SMALL_STATE(155)] = 1767, - [SMALL_STATE(156)] = 1814, - [SMALL_STATE(157)] = 1861, - [SMALL_STATE(158)] = 1912, - [SMALL_STATE(159)] = 1959, - [SMALL_STATE(160)] = 2006, - [SMALL_STATE(161)] = 2053, - [SMALL_STATE(162)] = 2100, - [SMALL_STATE(163)] = 2147, - [SMALL_STATE(164)] = 2194, - [SMALL_STATE(165)] = 2240, - [SMALL_STATE(166)] = 2284, - [SMALL_STATE(167)] = 2328, - [SMALL_STATE(168)] = 2374, - [SMALL_STATE(169)] = 2420, - [SMALL_STATE(170)] = 2464, - [SMALL_STATE(171)] = 2508, - [SMALL_STATE(172)] = 2552, - [SMALL_STATE(173)] = 2596, - [SMALL_STATE(174)] = 2642, - [SMALL_STATE(175)] = 2686, - [SMALL_STATE(176)] = 2730, - [SMALL_STATE(177)] = 2774, - [SMALL_STATE(178)] = 2818, - [SMALL_STATE(179)] = 2864, - [SMALL_STATE(180)] = 2908, - [SMALL_STATE(181)] = 2954, - [SMALL_STATE(182)] = 3000, - [SMALL_STATE(183)] = 3044, - [SMALL_STATE(184)] = 3090, - [SMALL_STATE(185)] = 3134, - [SMALL_STATE(186)] = 3180, - [SMALL_STATE(187)] = 3224, - [SMALL_STATE(188)] = 3268, - [SMALL_STATE(189)] = 3312, - [SMALL_STATE(190)] = 3356, - [SMALL_STATE(191)] = 3402, - [SMALL_STATE(192)] = 3446, - [SMALL_STATE(193)] = 3490, - [SMALL_STATE(194)] = 3534, - [SMALL_STATE(195)] = 3578, - [SMALL_STATE(196)] = 3622, - [SMALL_STATE(197)] = 3668, - [SMALL_STATE(198)] = 3712, - [SMALL_STATE(199)] = 3758, - [SMALL_STATE(200)] = 3802, - [SMALL_STATE(201)] = 3846, - [SMALL_STATE(202)] = 3890, - [SMALL_STATE(203)] = 3934, - [SMALL_STATE(204)] = 3980, - [SMALL_STATE(205)] = 4024, - [SMALL_STATE(206)] = 4070, - [SMALL_STATE(207)] = 4114, - [SMALL_STATE(208)] = 4158, - [SMALL_STATE(209)] = 4202, - [SMALL_STATE(210)] = 4246, - [SMALL_STATE(211)] = 4290, - [SMALL_STATE(212)] = 4334, - [SMALL_STATE(213)] = 4378, - [SMALL_STATE(214)] = 4422, - [SMALL_STATE(215)] = 4468, - [SMALL_STATE(216)] = 4514, - [SMALL_STATE(217)] = 4558, - [SMALL_STATE(218)] = 4602, - [SMALL_STATE(219)] = 4648, - [SMALL_STATE(220)] = 4692, - [SMALL_STATE(221)] = 4738, - [SMALL_STATE(222)] = 4784, - [SMALL_STATE(223)] = 4828, - [SMALL_STATE(224)] = 4869, - [SMALL_STATE(225)] = 4910, - [SMALL_STATE(226)] = 4951, - [SMALL_STATE(227)] = 4992, - [SMALL_STATE(228)] = 5033, - [SMALL_STATE(229)] = 5074, - [SMALL_STATE(230)] = 5115, - [SMALL_STATE(231)] = 5160, - [SMALL_STATE(232)] = 5201, - [SMALL_STATE(233)] = 5242, - [SMALL_STATE(234)] = 5283, - [SMALL_STATE(235)] = 5324, - [SMALL_STATE(236)] = 5365, - [SMALL_STATE(237)] = 5406, - [SMALL_STATE(238)] = 5447, - [SMALL_STATE(239)] = 5488, - [SMALL_STATE(240)] = 5529, - [SMALL_STATE(241)] = 5570, - [SMALL_STATE(242)] = 5611, - [SMALL_STATE(243)] = 5652, - [SMALL_STATE(244)] = 5693, - [SMALL_STATE(245)] = 5734, - [SMALL_STATE(246)] = 5775, - [SMALL_STATE(247)] = 5816, - [SMALL_STATE(248)] = 5861, - [SMALL_STATE(249)] = 5902, - [SMALL_STATE(250)] = 5945, - [SMALL_STATE(251)] = 5986, - [SMALL_STATE(252)] = 6027, - [SMALL_STATE(253)] = 6068, - [SMALL_STATE(254)] = 6109, - [SMALL_STATE(255)] = 6150, - [SMALL_STATE(256)] = 6191, - [SMALL_STATE(257)] = 6232, - [SMALL_STATE(258)] = 6273, - [SMALL_STATE(259)] = 6314, - [SMALL_STATE(260)] = 6355, - [SMALL_STATE(261)] = 6396, - [SMALL_STATE(262)] = 6437, - [SMALL_STATE(263)] = 6478, - [SMALL_STATE(264)] = 6519, - [SMALL_STATE(265)] = 6560, - [SMALL_STATE(266)] = 6601, - [SMALL_STATE(267)] = 6642, - [SMALL_STATE(268)] = 6683, - [SMALL_STATE(269)] = 6724, - [SMALL_STATE(270)] = 6765, - [SMALL_STATE(271)] = 6806, - [SMALL_STATE(272)] = 6847, - [SMALL_STATE(273)] = 6888, - [SMALL_STATE(274)] = 6929, - [SMALL_STATE(275)] = 6970, - [SMALL_STATE(276)] = 7011, - [SMALL_STATE(277)] = 7052, - [SMALL_STATE(278)] = 7093, - [SMALL_STATE(279)] = 7134, - [SMALL_STATE(280)] = 7175, - [SMALL_STATE(281)] = 7216, - [SMALL_STATE(282)] = 7257, - [SMALL_STATE(283)] = 7298, - [SMALL_STATE(284)] = 7339, - [SMALL_STATE(285)] = 7380, - [SMALL_STATE(286)] = 7421, - [SMALL_STATE(287)] = 7462, - [SMALL_STATE(288)] = 7505, - [SMALL_STATE(289)] = 7546, - [SMALL_STATE(290)] = 7587, - [SMALL_STATE(291)] = 7628, - [SMALL_STATE(292)] = 7669, - [SMALL_STATE(293)] = 7710, - [SMALL_STATE(294)] = 7751, - [SMALL_STATE(295)] = 7792, - [SMALL_STATE(296)] = 7833, - [SMALL_STATE(297)] = 7874, - [SMALL_STATE(298)] = 7915, - [SMALL_STATE(299)] = 7956, - [SMALL_STATE(300)] = 7997, - [SMALL_STATE(301)] = 8038, - [SMALL_STATE(302)] = 8079, - [SMALL_STATE(303)] = 8120, - [SMALL_STATE(304)] = 8161, - [SMALL_STATE(305)] = 8202, - [SMALL_STATE(306)] = 8243, - [SMALL_STATE(307)] = 8286, - [SMALL_STATE(308)] = 8327, - [SMALL_STATE(309)] = 8368, - [SMALL_STATE(310)] = 8409, - [SMALL_STATE(311)] = 8450, - [SMALL_STATE(312)] = 8491, - [SMALL_STATE(313)] = 8532, - [SMALL_STATE(314)] = 8573, - [SMALL_STATE(315)] = 8614, - [SMALL_STATE(316)] = 8655, - [SMALL_STATE(317)] = 8696, - [SMALL_STATE(318)] = 8737, - [SMALL_STATE(319)] = 8778, - [SMALL_STATE(320)] = 8819, - [SMALL_STATE(321)] = 8860, - [SMALL_STATE(322)] = 8901, - [SMALL_STATE(323)] = 8942, - [SMALL_STATE(324)] = 8983, - [SMALL_STATE(325)] = 9024, - [SMALL_STATE(326)] = 9065, - [SMALL_STATE(327)] = 9106, - [SMALL_STATE(328)] = 9147, - [SMALL_STATE(329)] = 9188, - [SMALL_STATE(330)] = 9229, - [SMALL_STATE(331)] = 9270, - [SMALL_STATE(332)] = 9315, - [SMALL_STATE(333)] = 9358, - [SMALL_STATE(334)] = 9401, - [SMALL_STATE(335)] = 9442, - [SMALL_STATE(336)] = 9483, - [SMALL_STATE(337)] = 9524, - [SMALL_STATE(338)] = 9565, - [SMALL_STATE(339)] = 9606, - [SMALL_STATE(340)] = 9647, - [SMALL_STATE(341)] = 9688, - [SMALL_STATE(342)] = 9729, - [SMALL_STATE(343)] = 9770, - [SMALL_STATE(344)] = 9813, - [SMALL_STATE(345)] = 9854, - [SMALL_STATE(346)] = 9895, - [SMALL_STATE(347)] = 9936, - [SMALL_STATE(348)] = 9977, - [SMALL_STATE(349)] = 10018, - [SMALL_STATE(350)] = 10059, - [SMALL_STATE(351)] = 10100, - [SMALL_STATE(352)] = 10141, - [SMALL_STATE(353)] = 10182, - [SMALL_STATE(354)] = 10223, - [SMALL_STATE(355)] = 10264, - [SMALL_STATE(356)] = 10305, - [SMALL_STATE(357)] = 10346, - [SMALL_STATE(358)] = 10387, - [SMALL_STATE(359)] = 10428, - [SMALL_STATE(360)] = 10471, - [SMALL_STATE(361)] = 10512, - [SMALL_STATE(362)] = 10553, - [SMALL_STATE(363)] = 10594, - [SMALL_STATE(364)] = 10635, - [SMALL_STATE(365)] = 10676, - [SMALL_STATE(366)] = 10717, - [SMALL_STATE(367)] = 10758, - [SMALL_STATE(368)] = 10799, - [SMALL_STATE(369)] = 10840, - [SMALL_STATE(370)] = 10881, - [SMALL_STATE(371)] = 10922, - [SMALL_STATE(372)] = 10965, - [SMALL_STATE(373)] = 11006, - [SMALL_STATE(374)] = 11047, - [SMALL_STATE(375)] = 11088, - [SMALL_STATE(376)] = 11129, - [SMALL_STATE(377)] = 11170, - [SMALL_STATE(378)] = 11211, - [SMALL_STATE(379)] = 11252, - [SMALL_STATE(380)] = 11295, - [SMALL_STATE(381)] = 11336, - [SMALL_STATE(382)] = 11377, - [SMALL_STATE(383)] = 11418, - [SMALL_STATE(384)] = 11459, - [SMALL_STATE(385)] = 11500, - [SMALL_STATE(386)] = 11541, - [SMALL_STATE(387)] = 11582, - [SMALL_STATE(388)] = 11623, - [SMALL_STATE(389)] = 11664, - [SMALL_STATE(390)] = 11705, - [SMALL_STATE(391)] = 11746, - [SMALL_STATE(392)] = 11787, - [SMALL_STATE(393)] = 11828, - [SMALL_STATE(394)] = 11869, - [SMALL_STATE(395)] = 11910, - [SMALL_STATE(396)] = 11951, - [SMALL_STATE(397)] = 11992, - [SMALL_STATE(398)] = 12033, - [SMALL_STATE(399)] = 12074, - [SMALL_STATE(400)] = 12115, - [SMALL_STATE(401)] = 12156, - [SMALL_STATE(402)] = 12197, - [SMALL_STATE(403)] = 12238, - [SMALL_STATE(404)] = 12279, - [SMALL_STATE(405)] = 12320, - [SMALL_STATE(406)] = 12361, - [SMALL_STATE(407)] = 12402, - [SMALL_STATE(408)] = 12443, - [SMALL_STATE(409)] = 12484, - [SMALL_STATE(410)] = 12525, - [SMALL_STATE(411)] = 12566, - [SMALL_STATE(412)] = 12607, - [SMALL_STATE(413)] = 12648, - [SMALL_STATE(414)] = 12689, - [SMALL_STATE(415)] = 12730, - [SMALL_STATE(416)] = 12771, - [SMALL_STATE(417)] = 12812, - [SMALL_STATE(418)] = 12853, - [SMALL_STATE(419)] = 12894, - [SMALL_STATE(420)] = 12935, - [SMALL_STATE(421)] = 12976, - [SMALL_STATE(422)] = 13017, - [SMALL_STATE(423)] = 13058, - [SMALL_STATE(424)] = 13099, - [SMALL_STATE(425)] = 13140, - [SMALL_STATE(426)] = 13183, - [SMALL_STATE(427)] = 13224, - [SMALL_STATE(428)] = 13265, - [SMALL_STATE(429)] = 13306, - [SMALL_STATE(430)] = 13347, - [SMALL_STATE(431)] = 13388, - [SMALL_STATE(432)] = 13429, - [SMALL_STATE(433)] = 13470, - [SMALL_STATE(434)] = 13511, - [SMALL_STATE(435)] = 13552, - [SMALL_STATE(436)] = 13593, - [SMALL_STATE(437)] = 13634, - [SMALL_STATE(438)] = 13675, - [SMALL_STATE(439)] = 13716, - [SMALL_STATE(440)] = 13757, - [SMALL_STATE(441)] = 13798, - [SMALL_STATE(442)] = 13839, - [SMALL_STATE(443)] = 13880, - [SMALL_STATE(444)] = 13921, - [SMALL_STATE(445)] = 13966, - [SMALL_STATE(446)] = 14007, - [SMALL_STATE(447)] = 14048, - [SMALL_STATE(448)] = 14089, - [SMALL_STATE(449)] = 14130, - [SMALL_STATE(450)] = 14171, - [SMALL_STATE(451)] = 14212, - [SMALL_STATE(452)] = 14253, - [SMALL_STATE(453)] = 14294, - [SMALL_STATE(454)] = 14335, - [SMALL_STATE(455)] = 14376, - [SMALL_STATE(456)] = 14417, - [SMALL_STATE(457)] = 14458, - [SMALL_STATE(458)] = 14499, - [SMALL_STATE(459)] = 14540, - [SMALL_STATE(460)] = 14581, - [SMALL_STATE(461)] = 14622, - [SMALL_STATE(462)] = 14663, - [SMALL_STATE(463)] = 14704, - [SMALL_STATE(464)] = 14745, - [SMALL_STATE(465)] = 14786, - [SMALL_STATE(466)] = 14827, - [SMALL_STATE(467)] = 14868, - [SMALL_STATE(468)] = 14911, - [SMALL_STATE(469)] = 14952, - [SMALL_STATE(470)] = 14993, - [SMALL_STATE(471)] = 15034, - [SMALL_STATE(472)] = 15077, - [SMALL_STATE(473)] = 15118, - [SMALL_STATE(474)] = 15159, - [SMALL_STATE(475)] = 15200, - [SMALL_STATE(476)] = 15241, - [SMALL_STATE(477)] = 15282, - [SMALL_STATE(478)] = 15323, - [SMALL_STATE(479)] = 15364, - [SMALL_STATE(480)] = 15405, - [SMALL_STATE(481)] = 15446, - [SMALL_STATE(482)] = 15487, - [SMALL_STATE(483)] = 15528, - [SMALL_STATE(484)] = 15569, - [SMALL_STATE(485)] = 15610, - [SMALL_STATE(486)] = 15651, - [SMALL_STATE(487)] = 15692, - [SMALL_STATE(488)] = 15733, - [SMALL_STATE(489)] = 15774, - [SMALL_STATE(490)] = 15815, - [SMALL_STATE(491)] = 15856, - [SMALL_STATE(492)] = 15897, - [SMALL_STATE(493)] = 15938, - [SMALL_STATE(494)] = 15979, - [SMALL_STATE(495)] = 16020, - [SMALL_STATE(496)] = 16061, - [SMALL_STATE(497)] = 16104, - [SMALL_STATE(498)] = 16145, - [SMALL_STATE(499)] = 16186, - [SMALL_STATE(500)] = 16227, - [SMALL_STATE(501)] = 16268, - [SMALL_STATE(502)] = 16309, - [SMALL_STATE(503)] = 16350, - [SMALL_STATE(504)] = 16391, - [SMALL_STATE(505)] = 16432, - [SMALL_STATE(506)] = 16473, - [SMALL_STATE(507)] = 16514, - [SMALL_STATE(508)] = 16555, - [SMALL_STATE(509)] = 16598, - [SMALL_STATE(510)] = 16639, - [SMALL_STATE(511)] = 16680, - [SMALL_STATE(512)] = 16720, - [SMALL_STATE(513)] = 16762, - [SMALL_STATE(514)] = 16802, - [SMALL_STATE(515)] = 16842, - [SMALL_STATE(516)] = 16882, - [SMALL_STATE(517)] = 16922, - [SMALL_STATE(518)] = 16962, - [SMALL_STATE(519)] = 17002, - [SMALL_STATE(520)] = 17042, - [SMALL_STATE(521)] = 17082, - [SMALL_STATE(522)] = 17122, - [SMALL_STATE(523)] = 17162, - [SMALL_STATE(524)] = 17202, - [SMALL_STATE(525)] = 17242, - [SMALL_STATE(526)] = 17282, - [SMALL_STATE(527)] = 17322, - [SMALL_STATE(528)] = 17362, - [SMALL_STATE(529)] = 17402, - [SMALL_STATE(530)] = 17442, - [SMALL_STATE(531)] = 17482, - [SMALL_STATE(532)] = 17522, - [SMALL_STATE(533)] = 17562, - [SMALL_STATE(534)] = 17602, - [SMALL_STATE(535)] = 17642, - [SMALL_STATE(536)] = 17682, - [SMALL_STATE(537)] = 17722, - [SMALL_STATE(538)] = 17762, - [SMALL_STATE(539)] = 17802, - [SMALL_STATE(540)] = 17842, - [SMALL_STATE(541)] = 17882, - [SMALL_STATE(542)] = 17922, - [SMALL_STATE(543)] = 17962, - [SMALL_STATE(544)] = 18002, - [SMALL_STATE(545)] = 18042, - [SMALL_STATE(546)] = 18082, - [SMALL_STATE(547)] = 18122, - [SMALL_STATE(548)] = 18162, - [SMALL_STATE(549)] = 18202, - [SMALL_STATE(550)] = 18242, - [SMALL_STATE(551)] = 18284, - [SMALL_STATE(552)] = 18324, - [SMALL_STATE(553)] = 18366, - [SMALL_STATE(554)] = 18406, - [SMALL_STATE(555)] = 18446, - [SMALL_STATE(556)] = 18486, - [SMALL_STATE(557)] = 18526, - [SMALL_STATE(558)] = 18566, - [SMALL_STATE(559)] = 18606, - [SMALL_STATE(560)] = 18646, - [SMALL_STATE(561)] = 18686, - [SMALL_STATE(562)] = 18726, - [SMALL_STATE(563)] = 18766, - [SMALL_STATE(564)] = 18806, - [SMALL_STATE(565)] = 18846, - [SMALL_STATE(566)] = 18886, - [SMALL_STATE(567)] = 18926, - [SMALL_STATE(568)] = 18966, - [SMALL_STATE(569)] = 19006, - [SMALL_STATE(570)] = 19046, - [SMALL_STATE(571)] = 19086, - [SMALL_STATE(572)] = 19126, - [SMALL_STATE(573)] = 19166, - [SMALL_STATE(574)] = 19206, - [SMALL_STATE(575)] = 19246, - [SMALL_STATE(576)] = 19286, - [SMALL_STATE(577)] = 19326, - [SMALL_STATE(578)] = 19366, - [SMALL_STATE(579)] = 19406, - [SMALL_STATE(580)] = 19446, - [SMALL_STATE(581)] = 19486, - [SMALL_STATE(582)] = 19526, - [SMALL_STATE(583)] = 19566, - [SMALL_STATE(584)] = 19606, - [SMALL_STATE(585)] = 19646, - [SMALL_STATE(586)] = 19686, - [SMALL_STATE(587)] = 19726, - [SMALL_STATE(588)] = 19766, - [SMALL_STATE(589)] = 19806, - [SMALL_STATE(590)] = 19846, - [SMALL_STATE(591)] = 19886, - [SMALL_STATE(592)] = 19926, - [SMALL_STATE(593)] = 19966, - [SMALL_STATE(594)] = 20006, - [SMALL_STATE(595)] = 20048, - [SMALL_STATE(596)] = 20088, - [SMALL_STATE(597)] = 20128, - [SMALL_STATE(598)] = 20168, - [SMALL_STATE(599)] = 20208, - [SMALL_STATE(600)] = 20250, - [SMALL_STATE(601)] = 20290, - [SMALL_STATE(602)] = 20330, - [SMALL_STATE(603)] = 20370, - [SMALL_STATE(604)] = 20409, - [SMALL_STATE(605)] = 20448, - [SMALL_STATE(606)] = 20487, - [SMALL_STATE(607)] = 20526, - [SMALL_STATE(608)] = 20565, - [SMALL_STATE(609)] = 20604, - [SMALL_STATE(610)] = 20635, - [SMALL_STATE(611)] = 20666, - [SMALL_STATE(612)] = 20697, - [SMALL_STATE(613)] = 20728, - [SMALL_STATE(614)] = 20759, - [SMALL_STATE(615)] = 20790, - [SMALL_STATE(616)] = 20821, - [SMALL_STATE(617)] = 20852, - [SMALL_STATE(618)] = 20883, - [SMALL_STATE(619)] = 20914, - [SMALL_STATE(620)] = 20945, - [SMALL_STATE(621)] = 20976, - [SMALL_STATE(622)] = 21007, - [SMALL_STATE(623)] = 21038, - [SMALL_STATE(624)] = 21069, - [SMALL_STATE(625)] = 21100, - [SMALL_STATE(626)] = 21131, - [SMALL_STATE(627)] = 21162, - [SMALL_STATE(628)] = 21193, - [SMALL_STATE(629)] = 21224, - [SMALL_STATE(630)] = 21255, - [SMALL_STATE(631)] = 21286, - [SMALL_STATE(632)] = 21317, - [SMALL_STATE(633)] = 21327, - [SMALL_STATE(634)] = 21337, - [SMALL_STATE(635)] = 21347, - [SMALL_STATE(636)] = 21357, - [SMALL_STATE(637)] = 21367, - [SMALL_STATE(638)] = 21377, - [SMALL_STATE(639)] = 21387, - [SMALL_STATE(640)] = 21397, - [SMALL_STATE(641)] = 21407, - [SMALL_STATE(642)] = 21424, - [SMALL_STATE(643)] = 21441, - [SMALL_STATE(644)] = 21460, - [SMALL_STATE(645)] = 21477, - [SMALL_STATE(646)] = 21494, - [SMALL_STATE(647)] = 21513, - [SMALL_STATE(648)] = 21532, - [SMALL_STATE(649)] = 21551, - [SMALL_STATE(650)] = 21570, - [SMALL_STATE(651)] = 21589, - [SMALL_STATE(652)] = 21606, - [SMALL_STATE(653)] = 21625, - [SMALL_STATE(654)] = 21642, - [SMALL_STATE(655)] = 21661, - [SMALL_STATE(656)] = 21678, - [SMALL_STATE(657)] = 21697, - [SMALL_STATE(658)] = 21714, - [SMALL_STATE(659)] = 21733, - [SMALL_STATE(660)] = 21752, - [SMALL_STATE(661)] = 21771, - [SMALL_STATE(662)] = 21788, - [SMALL_STATE(663)] = 21807, - [SMALL_STATE(664)] = 21826, - [SMALL_STATE(665)] = 21845, - [SMALL_STATE(666)] = 21864, - [SMALL_STATE(667)] = 21883, - [SMALL_STATE(668)] = 21900, - [SMALL_STATE(669)] = 21917, - [SMALL_STATE(670)] = 21936, - [SMALL_STATE(671)] = 21955, - [SMALL_STATE(672)] = 21974, - [SMALL_STATE(673)] = 21993, - [SMALL_STATE(674)] = 22012, - [SMALL_STATE(675)] = 22024, - [SMALL_STATE(676)] = 22036, - [SMALL_STATE(677)] = 22048, - [SMALL_STATE(678)] = 22060, - [SMALL_STATE(679)] = 22072, - [SMALL_STATE(680)] = 22079, - [SMALL_STATE(681)] = 22089, - [SMALL_STATE(682)] = 22097, - [SMALL_STATE(683)] = 22105, - [SMALL_STATE(684)] = 22112, - [SMALL_STATE(685)] = 22119, - [SMALL_STATE(686)] = 22126, - [SMALL_STATE(687)] = 22133, - [SMALL_STATE(688)] = 22140, - [SMALL_STATE(689)] = 22147, - [SMALL_STATE(690)] = 22154, - [SMALL_STATE(691)] = 22161, - [SMALL_STATE(692)] = 22168, - [SMALL_STATE(693)] = 22175, - [SMALL_STATE(694)] = 22182, - [SMALL_STATE(695)] = 22189, - [SMALL_STATE(696)] = 22196, - [SMALL_STATE(697)] = 22201, - [SMALL_STATE(698)] = 22208, - [SMALL_STATE(699)] = 22215, - [SMALL_STATE(700)] = 22222, - [SMALL_STATE(701)] = 22229, - [SMALL_STATE(702)] = 22236, - [SMALL_STATE(703)] = 22243, - [SMALL_STATE(704)] = 22250, - [SMALL_STATE(705)] = 22257, - [SMALL_STATE(706)] = 22264, - [SMALL_STATE(707)] = 22271, - [SMALL_STATE(708)] = 22278, - [SMALL_STATE(709)] = 22285, - [SMALL_STATE(710)] = 22290, - [SMALL_STATE(711)] = 22297, - [SMALL_STATE(712)] = 22304, - [SMALL_STATE(713)] = 22311, - [SMALL_STATE(714)] = 22318, - [SMALL_STATE(715)] = 22325, - [SMALL_STATE(716)] = 22332, - [SMALL_STATE(717)] = 22339, - [SMALL_STATE(718)] = 22346, - [SMALL_STATE(719)] = 22353, - [SMALL_STATE(720)] = 22360, - [SMALL_STATE(721)] = 22367, - [SMALL_STATE(722)] = 22374, - [SMALL_STATE(723)] = 22381, - [SMALL_STATE(724)] = 22388, - [SMALL_STATE(725)] = 22395, - [SMALL_STATE(726)] = 22400, - [SMALL_STATE(727)] = 22407, - [SMALL_STATE(728)] = 22414, - [SMALL_STATE(729)] = 22421, - [SMALL_STATE(730)] = 22428, - [SMALL_STATE(731)] = 22435, - [SMALL_STATE(732)] = 22442, - [SMALL_STATE(733)] = 22449, - [SMALL_STATE(734)] = 22456, - [SMALL_STATE(735)] = 22463, - [SMALL_STATE(736)] = 22470, - [SMALL_STATE(737)] = 22477, - [SMALL_STATE(738)] = 22484, - [SMALL_STATE(739)] = 22491, - [SMALL_STATE(740)] = 22498, - [SMALL_STATE(741)] = 22505, - [SMALL_STATE(742)] = 22512, - [SMALL_STATE(743)] = 22519, - [SMALL_STATE(744)] = 22526, - [SMALL_STATE(745)] = 22533, - [SMALL_STATE(746)] = 22540, - [SMALL_STATE(747)] = 22547, - [SMALL_STATE(748)] = 22554, - [SMALL_STATE(749)] = 22561, - [SMALL_STATE(750)] = 22568, - [SMALL_STATE(751)] = 22575, - [SMALL_STATE(752)] = 22582, - [SMALL_STATE(753)] = 22589, - [SMALL_STATE(754)] = 22596, - [SMALL_STATE(755)] = 22601, - [SMALL_STATE(756)] = 22608, - [SMALL_STATE(757)] = 22615, - [SMALL_STATE(758)] = 22622, - [SMALL_STATE(759)] = 22629, - [SMALL_STATE(760)] = 22636, - [SMALL_STATE(761)] = 22643, - [SMALL_STATE(762)] = 22650, - [SMALL_STATE(763)] = 22657, - [SMALL_STATE(764)] = 22664, - [SMALL_STATE(765)] = 22671, - [SMALL_STATE(766)] = 22678, - [SMALL_STATE(767)] = 22683, - [SMALL_STATE(768)] = 22690, - [SMALL_STATE(769)] = 22697, - [SMALL_STATE(770)] = 22704, - [SMALL_STATE(771)] = 22711, - [SMALL_STATE(772)] = 22718, - [SMALL_STATE(773)] = 22725, - [SMALL_STATE(774)] = 22732, - [SMALL_STATE(775)] = 22739, - [SMALL_STATE(776)] = 22746, - [SMALL_STATE(777)] = 22753, - [SMALL_STATE(778)] = 22760, - [SMALL_STATE(779)] = 22767, - [SMALL_STATE(780)] = 22774, - [SMALL_STATE(781)] = 22781, - [SMALL_STATE(782)] = 22788, - [SMALL_STATE(783)] = 22795, - [SMALL_STATE(784)] = 22802, - [SMALL_STATE(785)] = 22807, - [SMALL_STATE(786)] = 22814, - [SMALL_STATE(787)] = 22821, - [SMALL_STATE(788)] = 22828, - [SMALL_STATE(789)] = 22835, - [SMALL_STATE(790)] = 22842, - [SMALL_STATE(791)] = 22849, - [SMALL_STATE(792)] = 22856, - [SMALL_STATE(793)] = 22863, - [SMALL_STATE(794)] = 22870, - [SMALL_STATE(795)] = 22877, - [SMALL_STATE(796)] = 22884, - [SMALL_STATE(797)] = 22891, - [SMALL_STATE(798)] = 22898, - [SMALL_STATE(799)] = 22905, - [SMALL_STATE(800)] = 22910, - [SMALL_STATE(801)] = 22917, - [SMALL_STATE(802)] = 22924, - [SMALL_STATE(803)] = 22931, - [SMALL_STATE(804)] = 22938, - [SMALL_STATE(805)] = 22945, - [SMALL_STATE(806)] = 22952, - [SMALL_STATE(807)] = 22959, - [SMALL_STATE(808)] = 22966, - [SMALL_STATE(809)] = 22973, - [SMALL_STATE(810)] = 22980, - [SMALL_STATE(811)] = 22987, - [SMALL_STATE(812)] = 22994, - [SMALL_STATE(813)] = 23001, - [SMALL_STATE(814)] = 23008, - [SMALL_STATE(815)] = 23015, - [SMALL_STATE(816)] = 23022, - [SMALL_STATE(817)] = 23029, - [SMALL_STATE(818)] = 23036, - [SMALL_STATE(819)] = 23041, - [SMALL_STATE(820)] = 23048, - [SMALL_STATE(821)] = 23055, - [SMALL_STATE(822)] = 23062, - [SMALL_STATE(823)] = 23069, - [SMALL_STATE(824)] = 23076, - [SMALL_STATE(825)] = 23083, - [SMALL_STATE(826)] = 23090, - [SMALL_STATE(827)] = 23097, - [SMALL_STATE(828)] = 23104, - [SMALL_STATE(829)] = 23111, - [SMALL_STATE(830)] = 23118, - [SMALL_STATE(831)] = 23125, - [SMALL_STATE(832)] = 23130, - [SMALL_STATE(833)] = 23135, - [SMALL_STATE(834)] = 23142, - [SMALL_STATE(835)] = 23149, - [SMALL_STATE(836)] = 23156, - [SMALL_STATE(837)] = 23163, - [SMALL_STATE(838)] = 23170, - [SMALL_STATE(839)] = 23177, - [SMALL_STATE(840)] = 23184, - [SMALL_STATE(841)] = 23191, - [SMALL_STATE(842)] = 23198, - [SMALL_STATE(843)] = 23205, - [SMALL_STATE(844)] = 23212, - [SMALL_STATE(845)] = 23219, - [SMALL_STATE(846)] = 23226, - [SMALL_STATE(847)] = 23233, - [SMALL_STATE(848)] = 23240, - [SMALL_STATE(849)] = 23247, - [SMALL_STATE(850)] = 23254, - [SMALL_STATE(851)] = 23261, - [SMALL_STATE(852)] = 23268, - [SMALL_STATE(853)] = 23273, - [SMALL_STATE(854)] = 23280, - [SMALL_STATE(855)] = 23287, - [SMALL_STATE(856)] = 23294, - [SMALL_STATE(857)] = 23301, - [SMALL_STATE(858)] = 23308, - [SMALL_STATE(859)] = 23315, - [SMALL_STATE(860)] = 23322, - [SMALL_STATE(861)] = 23326, - [SMALL_STATE(862)] = 23330, - [SMALL_STATE(863)] = 23334, - [SMALL_STATE(864)] = 23338, - [SMALL_STATE(865)] = 23342, - [SMALL_STATE(866)] = 23346, - [SMALL_STATE(867)] = 23350, - [SMALL_STATE(868)] = 23354, - [SMALL_STATE(869)] = 23358, - [SMALL_STATE(870)] = 23362, - [SMALL_STATE(871)] = 23366, - [SMALL_STATE(872)] = 23370, - [SMALL_STATE(873)] = 23374, - [SMALL_STATE(874)] = 23378, - [SMALL_STATE(875)] = 23382, - [SMALL_STATE(876)] = 23386, - [SMALL_STATE(877)] = 23390, - [SMALL_STATE(878)] = 23394, - [SMALL_STATE(879)] = 23398, - [SMALL_STATE(880)] = 23402, - [SMALL_STATE(881)] = 23406, - [SMALL_STATE(882)] = 23410, - [SMALL_STATE(883)] = 23414, - [SMALL_STATE(884)] = 23418, - [SMALL_STATE(885)] = 23422, - [SMALL_STATE(886)] = 23426, - [SMALL_STATE(887)] = 23430, - [SMALL_STATE(888)] = 23434, - [SMALL_STATE(889)] = 23438, - [SMALL_STATE(890)] = 23442, - [SMALL_STATE(891)] = 23446, - [SMALL_STATE(892)] = 23450, - [SMALL_STATE(893)] = 23454, - [SMALL_STATE(894)] = 23458, - [SMALL_STATE(895)] = 23462, - [SMALL_STATE(896)] = 23466, - [SMALL_STATE(897)] = 23470, - [SMALL_STATE(898)] = 23474, - [SMALL_STATE(899)] = 23478, - [SMALL_STATE(900)] = 23482, - [SMALL_STATE(901)] = 23486, - [SMALL_STATE(902)] = 23490, - [SMALL_STATE(903)] = 23494, - [SMALL_STATE(904)] = 23498, - [SMALL_STATE(905)] = 23502, - [SMALL_STATE(906)] = 23506, - [SMALL_STATE(907)] = 23510, - [SMALL_STATE(908)] = 23514, - [SMALL_STATE(909)] = 23518, - [SMALL_STATE(910)] = 23522, - [SMALL_STATE(911)] = 23526, - [SMALL_STATE(912)] = 23530, - [SMALL_STATE(913)] = 23534, - [SMALL_STATE(914)] = 23538, - [SMALL_STATE(915)] = 23542, - [SMALL_STATE(916)] = 23546, - [SMALL_STATE(917)] = 23550, - [SMALL_STATE(918)] = 23554, - [SMALL_STATE(919)] = 23558, - [SMALL_STATE(920)] = 23562, - [SMALL_STATE(921)] = 23566, - [SMALL_STATE(922)] = 23570, - [SMALL_STATE(923)] = 23574, - [SMALL_STATE(924)] = 23578, - [SMALL_STATE(925)] = 23582, - [SMALL_STATE(926)] = 23586, - [SMALL_STATE(927)] = 23590, - [SMALL_STATE(928)] = 23594, - [SMALL_STATE(929)] = 23598, - [SMALL_STATE(930)] = 23602, - [SMALL_STATE(931)] = 23606, - [SMALL_STATE(932)] = 23610, - [SMALL_STATE(933)] = 23614, - [SMALL_STATE(934)] = 23618, - [SMALL_STATE(935)] = 23622, - [SMALL_STATE(936)] = 23626, - [SMALL_STATE(937)] = 23630, - [SMALL_STATE(938)] = 23634, - [SMALL_STATE(939)] = 23638, - [SMALL_STATE(940)] = 23642, - [SMALL_STATE(941)] = 23646, - [SMALL_STATE(942)] = 23650, - [SMALL_STATE(943)] = 23654, - [SMALL_STATE(944)] = 23658, - [SMALL_STATE(945)] = 23662, - [SMALL_STATE(946)] = 23666, - [SMALL_STATE(947)] = 23670, - [SMALL_STATE(948)] = 23674, - [SMALL_STATE(949)] = 23678, - [SMALL_STATE(950)] = 23682, - [SMALL_STATE(951)] = 23686, - [SMALL_STATE(952)] = 23690, - [SMALL_STATE(953)] = 23694, - [SMALL_STATE(954)] = 23698, - [SMALL_STATE(955)] = 23702, - [SMALL_STATE(956)] = 23706, - [SMALL_STATE(957)] = 23710, - [SMALL_STATE(958)] = 23714, - [SMALL_STATE(959)] = 23718, - [SMALL_STATE(960)] = 23722, - [SMALL_STATE(961)] = 23726, - [SMALL_STATE(962)] = 23730, - [SMALL_STATE(963)] = 23734, - [SMALL_STATE(964)] = 23738, - [SMALL_STATE(965)] = 23742, - [SMALL_STATE(966)] = 23746, - [SMALL_STATE(967)] = 23750, - [SMALL_STATE(968)] = 23754, - [SMALL_STATE(969)] = 23758, - [SMALL_STATE(970)] = 23762, - [SMALL_STATE(971)] = 23766, - [SMALL_STATE(972)] = 23770, - [SMALL_STATE(973)] = 23774, - [SMALL_STATE(974)] = 23778, - [SMALL_STATE(975)] = 23782, - [SMALL_STATE(976)] = 23786, - [SMALL_STATE(977)] = 23790, - [SMALL_STATE(978)] = 23794, - [SMALL_STATE(979)] = 23798, - [SMALL_STATE(980)] = 23802, - [SMALL_STATE(981)] = 23806, - [SMALL_STATE(982)] = 23810, - [SMALL_STATE(983)] = 23814, - [SMALL_STATE(984)] = 23818, - [SMALL_STATE(985)] = 23822, - [SMALL_STATE(986)] = 23826, - [SMALL_STATE(987)] = 23830, - [SMALL_STATE(988)] = 23834, - [SMALL_STATE(989)] = 23838, - [SMALL_STATE(990)] = 23842, - [SMALL_STATE(991)] = 23846, - [SMALL_STATE(992)] = 23850, - [SMALL_STATE(993)] = 23854, - [SMALL_STATE(994)] = 23858, - [SMALL_STATE(995)] = 23862, - [SMALL_STATE(996)] = 23866, - [SMALL_STATE(997)] = 23870, - [SMALL_STATE(998)] = 23874, - [SMALL_STATE(999)] = 23878, - [SMALL_STATE(1000)] = 23882, - [SMALL_STATE(1001)] = 23886, - [SMALL_STATE(1002)] = 23890, - [SMALL_STATE(1003)] = 23894, - [SMALL_STATE(1004)] = 23898, - [SMALL_STATE(1005)] = 23902, - [SMALL_STATE(1006)] = 23906, - [SMALL_STATE(1007)] = 23910, - [SMALL_STATE(1008)] = 23914, - [SMALL_STATE(1009)] = 23918, - [SMALL_STATE(1010)] = 23922, - [SMALL_STATE(1011)] = 23926, - [SMALL_STATE(1012)] = 23930, - [SMALL_STATE(1013)] = 23934, - [SMALL_STATE(1014)] = 23938, - [SMALL_STATE(1015)] = 23942, - [SMALL_STATE(1016)] = 23946, - [SMALL_STATE(1017)] = 23950, - [SMALL_STATE(1018)] = 23954, - [SMALL_STATE(1019)] = 23958, - [SMALL_STATE(1020)] = 23962, - [SMALL_STATE(1021)] = 23966, - [SMALL_STATE(1022)] = 23970, - [SMALL_STATE(1023)] = 23974, - [SMALL_STATE(1024)] = 23978, - [SMALL_STATE(1025)] = 23982, - [SMALL_STATE(1026)] = 23986, - [SMALL_STATE(1027)] = 23990, - [SMALL_STATE(1028)] = 23994, - [SMALL_STATE(1029)] = 23998, - [SMALL_STATE(1030)] = 24002, - [SMALL_STATE(1031)] = 24006, - [SMALL_STATE(1032)] = 24010, - [SMALL_STATE(1033)] = 24014, - [SMALL_STATE(1034)] = 24018, - [SMALL_STATE(1035)] = 24022, - [SMALL_STATE(1036)] = 24026, - [SMALL_STATE(1037)] = 24030, - [SMALL_STATE(1038)] = 24034, - [SMALL_STATE(1039)] = 24038, - [SMALL_STATE(1040)] = 24042, - [SMALL_STATE(1041)] = 24046, - [SMALL_STATE(1042)] = 24050, - [SMALL_STATE(1043)] = 24054, - [SMALL_STATE(1044)] = 24058, - [SMALL_STATE(1045)] = 24062, - [SMALL_STATE(1046)] = 24066, - [SMALL_STATE(1047)] = 24070, - [SMALL_STATE(1048)] = 24074, - [SMALL_STATE(1049)] = 24078, - [SMALL_STATE(1050)] = 24082, - [SMALL_STATE(1051)] = 24086, - [SMALL_STATE(1052)] = 24090, - [SMALL_STATE(1053)] = 24094, - [SMALL_STATE(1054)] = 24098, - [SMALL_STATE(1055)] = 24102, - [SMALL_STATE(1056)] = 24106, - [SMALL_STATE(1057)] = 24110, - [SMALL_STATE(1058)] = 24114, - [SMALL_STATE(1059)] = 24118, - [SMALL_STATE(1060)] = 24122, - [SMALL_STATE(1061)] = 24126, - [SMALL_STATE(1062)] = 24130, - [SMALL_STATE(1063)] = 24134, - [SMALL_STATE(1064)] = 24138, - [SMALL_STATE(1065)] = 24142, - [SMALL_STATE(1066)] = 24146, - [SMALL_STATE(1067)] = 24150, - [SMALL_STATE(1068)] = 24154, - [SMALL_STATE(1069)] = 24158, - [SMALL_STATE(1070)] = 24162, - [SMALL_STATE(1071)] = 24166, - [SMALL_STATE(1072)] = 24170, - [SMALL_STATE(1073)] = 24174, - [SMALL_STATE(1074)] = 24178, - [SMALL_STATE(1075)] = 24182, - [SMALL_STATE(1076)] = 24186, - [SMALL_STATE(1077)] = 24190, - [SMALL_STATE(1078)] = 24194, - [SMALL_STATE(1079)] = 24198, - [SMALL_STATE(1080)] = 24202, - [SMALL_STATE(1081)] = 24206, - [SMALL_STATE(1082)] = 24210, - [SMALL_STATE(1083)] = 24214, - [SMALL_STATE(1084)] = 24218, - [SMALL_STATE(1085)] = 24222, - [SMALL_STATE(1086)] = 24226, - [SMALL_STATE(1087)] = 24230, - [SMALL_STATE(1088)] = 24234, - [SMALL_STATE(1089)] = 24238, - [SMALL_STATE(1090)] = 24242, - [SMALL_STATE(1091)] = 24246, - [SMALL_STATE(1092)] = 24250, - [SMALL_STATE(1093)] = 24254, - [SMALL_STATE(1094)] = 24258, - [SMALL_STATE(1095)] = 24262, - [SMALL_STATE(1096)] = 24266, - [SMALL_STATE(1097)] = 24270, - [SMALL_STATE(1098)] = 24274, - [SMALL_STATE(1099)] = 24278, - [SMALL_STATE(1100)] = 24282, - [SMALL_STATE(1101)] = 24286, - [SMALL_STATE(1102)] = 24290, - [SMALL_STATE(1103)] = 24294, - [SMALL_STATE(1104)] = 24298, - [SMALL_STATE(1105)] = 24302, - [SMALL_STATE(1106)] = 24306, - [SMALL_STATE(1107)] = 24310, - [SMALL_STATE(1108)] = 24314, - [SMALL_STATE(1109)] = 24318, - [SMALL_STATE(1110)] = 24322, - [SMALL_STATE(1111)] = 24326, - [SMALL_STATE(1112)] = 24330, - [SMALL_STATE(1113)] = 24334, - [SMALL_STATE(1114)] = 24338, - [SMALL_STATE(1115)] = 24342, - [SMALL_STATE(1116)] = 24346, - [SMALL_STATE(1117)] = 24350, - [SMALL_STATE(1118)] = 24354, - [SMALL_STATE(1119)] = 24358, - [SMALL_STATE(1120)] = 24362, - [SMALL_STATE(1121)] = 24366, - [SMALL_STATE(1122)] = 24370, - [SMALL_STATE(1123)] = 24374, - [SMALL_STATE(1124)] = 24378, - [SMALL_STATE(1125)] = 24382, - [SMALL_STATE(1126)] = 24386, - [SMALL_STATE(1127)] = 24390, - [SMALL_STATE(1128)] = 24394, - [SMALL_STATE(1129)] = 24398, - [SMALL_STATE(1130)] = 24402, - [SMALL_STATE(1131)] = 24406, - [SMALL_STATE(1132)] = 24410, - [SMALL_STATE(1133)] = 24414, - [SMALL_STATE(1134)] = 24418, - [SMALL_STATE(1135)] = 24422, - [SMALL_STATE(1136)] = 24426, - [SMALL_STATE(1137)] = 24430, - [SMALL_STATE(1138)] = 24434, - [SMALL_STATE(1139)] = 24438, - [SMALL_STATE(1140)] = 24442, - [SMALL_STATE(1141)] = 24446, - [SMALL_STATE(1142)] = 24450, - [SMALL_STATE(1143)] = 24454, - [SMALL_STATE(1144)] = 24458, - [SMALL_STATE(1145)] = 24462, - [SMALL_STATE(1146)] = 24466, - [SMALL_STATE(1147)] = 24470, - [SMALL_STATE(1148)] = 24474, - [SMALL_STATE(1149)] = 24478, - [SMALL_STATE(1150)] = 24482, - [SMALL_STATE(1151)] = 24486, - [SMALL_STATE(1152)] = 24490, - [SMALL_STATE(1153)] = 24494, - [SMALL_STATE(1154)] = 24498, - [SMALL_STATE(1155)] = 24502, - [SMALL_STATE(1156)] = 24506, - [SMALL_STATE(1157)] = 24510, - [SMALL_STATE(1158)] = 24514, - [SMALL_STATE(1159)] = 24518, - [SMALL_STATE(1160)] = 24522, - [SMALL_STATE(1161)] = 24526, - [SMALL_STATE(1162)] = 24530, - [SMALL_STATE(1163)] = 24534, - [SMALL_STATE(1164)] = 24538, - [SMALL_STATE(1165)] = 24542, - [SMALL_STATE(1166)] = 24546, - [SMALL_STATE(1167)] = 24550, - [SMALL_STATE(1168)] = 24554, - [SMALL_STATE(1169)] = 24558, - [SMALL_STATE(1170)] = 24562, - [SMALL_STATE(1171)] = 24566, - [SMALL_STATE(1172)] = 24570, - [SMALL_STATE(1173)] = 24574, - [SMALL_STATE(1174)] = 24578, - [SMALL_STATE(1175)] = 24582, - [SMALL_STATE(1176)] = 24586, - [SMALL_STATE(1177)] = 24590, - [SMALL_STATE(1178)] = 24594, - [SMALL_STATE(1179)] = 24598, - [SMALL_STATE(1180)] = 24602, - [SMALL_STATE(1181)] = 24606, - [SMALL_STATE(1182)] = 24610, - [SMALL_STATE(1183)] = 24614, - [SMALL_STATE(1184)] = 24618, - [SMALL_STATE(1185)] = 24622, - [SMALL_STATE(1186)] = 24626, - [SMALL_STATE(1187)] = 24630, - [SMALL_STATE(1188)] = 24634, - [SMALL_STATE(1189)] = 24638, - [SMALL_STATE(1190)] = 24642, - [SMALL_STATE(1191)] = 24646, - [SMALL_STATE(1192)] = 24650, - [SMALL_STATE(1193)] = 24654, - [SMALL_STATE(1194)] = 24658, - [SMALL_STATE(1195)] = 24662, - [SMALL_STATE(1196)] = 24666, - [SMALL_STATE(1197)] = 24670, - [SMALL_STATE(1198)] = 24674, - [SMALL_STATE(1199)] = 24678, - [SMALL_STATE(1200)] = 24682, - [SMALL_STATE(1201)] = 24686, - [SMALL_STATE(1202)] = 24690, - [SMALL_STATE(1203)] = 24694, - [SMALL_STATE(1204)] = 24698, - [SMALL_STATE(1205)] = 24702, - [SMALL_STATE(1206)] = 24706, - [SMALL_STATE(1207)] = 24710, - [SMALL_STATE(1208)] = 24714, - [SMALL_STATE(1209)] = 24718, - [SMALL_STATE(1210)] = 24722, - [SMALL_STATE(1211)] = 24726, - [SMALL_STATE(1212)] = 24730, - [SMALL_STATE(1213)] = 24734, + [SMALL_STATE(122)] = 56, + [SMALL_STATE(123)] = 112, + [SMALL_STATE(124)] = 168, + [SMALL_STATE(125)] = 224, + [SMALL_STATE(126)] = 280, + [SMALL_STATE(127)] = 336, + [SMALL_STATE(128)] = 392, + [SMALL_STATE(129)] = 448, + [SMALL_STATE(130)] = 504, + [SMALL_STATE(131)] = 560, + [SMALL_STATE(132)] = 611, + [SMALL_STATE(133)] = 662, + [SMALL_STATE(134)] = 715, + [SMALL_STATE(135)] = 768, + [SMALL_STATE(136)] = 819, + [SMALL_STATE(137)] = 870, + [SMALL_STATE(138)] = 923, + [SMALL_STATE(139)] = 976, + [SMALL_STATE(140)] = 1029, + [SMALL_STATE(141)] = 1080, + [SMALL_STATE(142)] = 1133, + [SMALL_STATE(143)] = 1184, + [SMALL_STATE(144)] = 1235, + [SMALL_STATE(145)] = 1288, + [SMALL_STATE(146)] = 1341, + [SMALL_STATE(147)] = 1392, + [SMALL_STATE(148)] = 1445, + [SMALL_STATE(149)] = 1498, + [SMALL_STATE(150)] = 1549, + [SMALL_STATE(151)] = 1600, + [SMALL_STATE(152)] = 1655, + [SMALL_STATE(153)] = 1703, + [SMALL_STATE(154)] = 1751, + [SMALL_STATE(155)] = 1799, + [SMALL_STATE(156)] = 1847, + [SMALL_STATE(157)] = 1895, + [SMALL_STATE(158)] = 1943, + [SMALL_STATE(159)] = 1991, + [SMALL_STATE(160)] = 2039, + [SMALL_STATE(161)] = 2087, + [SMALL_STATE(162)] = 2135, + [SMALL_STATE(163)] = 2187, + [SMALL_STATE(164)] = 2237, + [SMALL_STATE(165)] = 2282, + [SMALL_STATE(166)] = 2327, + [SMALL_STATE(167)] = 2372, + [SMALL_STATE(168)] = 2417, + [SMALL_STATE(169)] = 2462, + [SMALL_STATE(170)] = 2507, + [SMALL_STATE(171)] = 2552, + [SMALL_STATE(172)] = 2601, + [SMALL_STATE(173)] = 2648, + [SMALL_STATE(174)] = 2693, + [SMALL_STATE(175)] = 2740, + [SMALL_STATE(176)] = 2785, + [SMALL_STATE(177)] = 2830, + [SMALL_STATE(178)] = 2875, + [SMALL_STATE(179)] = 2922, + [SMALL_STATE(180)] = 2967, + [SMALL_STATE(181)] = 3012, + [SMALL_STATE(182)] = 3057, + [SMALL_STATE(183)] = 3102, + [SMALL_STATE(184)] = 3147, + [SMALL_STATE(185)] = 3192, + [SMALL_STATE(186)] = 3241, + [SMALL_STATE(187)] = 3288, + [SMALL_STATE(188)] = 3333, + [SMALL_STATE(189)] = 3378, + [SMALL_STATE(190)] = 3423, + [SMALL_STATE(191)] = 3470, + [SMALL_STATE(192)] = 3519, + [SMALL_STATE(193)] = 3566, + [SMALL_STATE(194)] = 3611, + [SMALL_STATE(195)] = 3656, + [SMALL_STATE(196)] = 3705, + [SMALL_STATE(197)] = 3750, + [SMALL_STATE(198)] = 3799, + [SMALL_STATE(199)] = 3846, + [SMALL_STATE(200)] = 3895, + [SMALL_STATE(201)] = 3942, + [SMALL_STATE(202)] = 3989, + [SMALL_STATE(203)] = 4034, + [SMALL_STATE(204)] = 4081, + [SMALL_STATE(205)] = 4126, + [SMALL_STATE(206)] = 4173, + [SMALL_STATE(207)] = 4220, + [SMALL_STATE(208)] = 4269, + [SMALL_STATE(209)] = 4314, + [SMALL_STATE(210)] = 4359, + [SMALL_STATE(211)] = 4404, + [SMALL_STATE(212)] = 4449, + [SMALL_STATE(213)] = 4498, + [SMALL_STATE(214)] = 4545, + [SMALL_STATE(215)] = 4592, + [SMALL_STATE(216)] = 4637, + [SMALL_STATE(217)] = 4682, + [SMALL_STATE(218)] = 4727, + [SMALL_STATE(219)] = 4774, + [SMALL_STATE(220)] = 4819, + [SMALL_STATE(221)] = 4864, + [SMALL_STATE(222)] = 4909, + [SMALL_STATE(223)] = 4954, + [SMALL_STATE(224)] = 5001, + [SMALL_STATE(225)] = 5046, + [SMALL_STATE(226)] = 5095, + [SMALL_STATE(227)] = 5142, + [SMALL_STATE(228)] = 5187, + [SMALL_STATE(229)] = 5236, + [SMALL_STATE(230)] = 5283, + [SMALL_STATE(231)] = 5328, + [SMALL_STATE(232)] = 5375, + [SMALL_STATE(233)] = 5420, + [SMALL_STATE(234)] = 5462, + [SMALL_STATE(235)] = 5504, + [SMALL_STATE(236)] = 5546, + [SMALL_STATE(237)] = 5588, + [SMALL_STATE(238)] = 5630, + [SMALL_STATE(239)] = 5672, + [SMALL_STATE(240)] = 5714, + [SMALL_STATE(241)] = 5756, + [SMALL_STATE(242)] = 5798, + [SMALL_STATE(243)] = 5840, + [SMALL_STATE(244)] = 5882, + [SMALL_STATE(245)] = 5924, + [SMALL_STATE(246)] = 5966, + [SMALL_STATE(247)] = 6008, + [SMALL_STATE(248)] = 6050, + [SMALL_STATE(249)] = 6092, + [SMALL_STATE(250)] = 6134, + [SMALL_STATE(251)] = 6176, + [SMALL_STATE(252)] = 6218, + [SMALL_STATE(253)] = 6260, + [SMALL_STATE(254)] = 6302, + [SMALL_STATE(255)] = 6344, + [SMALL_STATE(256)] = 6386, + [SMALL_STATE(257)] = 6428, + [SMALL_STATE(258)] = 6470, + [SMALL_STATE(259)] = 6512, + [SMALL_STATE(260)] = 6554, + [SMALL_STATE(261)] = 6596, + [SMALL_STATE(262)] = 6638, + [SMALL_STATE(263)] = 6682, + [SMALL_STATE(264)] = 6724, + [SMALL_STATE(265)] = 6766, + [SMALL_STATE(266)] = 6808, + [SMALL_STATE(267)] = 6850, + [SMALL_STATE(268)] = 6892, + [SMALL_STATE(269)] = 6934, + [SMALL_STATE(270)] = 6976, + [SMALL_STATE(271)] = 7018, + [SMALL_STATE(272)] = 7060, + [SMALL_STATE(273)] = 7102, + [SMALL_STATE(274)] = 7144, + [SMALL_STATE(275)] = 7186, + [SMALL_STATE(276)] = 7228, + [SMALL_STATE(277)] = 7270, + [SMALL_STATE(278)] = 7314, + [SMALL_STATE(279)] = 7356, + [SMALL_STATE(280)] = 7398, + [SMALL_STATE(281)] = 7440, + [SMALL_STATE(282)] = 7482, + [SMALL_STATE(283)] = 7524, + [SMALL_STATE(284)] = 7566, + [SMALL_STATE(285)] = 7608, + [SMALL_STATE(286)] = 7650, + [SMALL_STATE(287)] = 7692, + [SMALL_STATE(288)] = 7734, + [SMALL_STATE(289)] = 7776, + [SMALL_STATE(290)] = 7818, + [SMALL_STATE(291)] = 7860, + [SMALL_STATE(292)] = 7902, + [SMALL_STATE(293)] = 7944, + [SMALL_STATE(294)] = 7986, + [SMALL_STATE(295)] = 8028, + [SMALL_STATE(296)] = 8070, + [SMALL_STATE(297)] = 8116, + [SMALL_STATE(298)] = 8158, + [SMALL_STATE(299)] = 8200, + [SMALL_STATE(300)] = 8242, + [SMALL_STATE(301)] = 8284, + [SMALL_STATE(302)] = 8328, + [SMALL_STATE(303)] = 8370, + [SMALL_STATE(304)] = 8412, + [SMALL_STATE(305)] = 8454, + [SMALL_STATE(306)] = 8496, + [SMALL_STATE(307)] = 8538, + [SMALL_STATE(308)] = 8580, + [SMALL_STATE(309)] = 8622, + [SMALL_STATE(310)] = 8664, + [SMALL_STATE(311)] = 8706, + [SMALL_STATE(312)] = 8748, + [SMALL_STATE(313)] = 8790, + [SMALL_STATE(314)] = 8832, + [SMALL_STATE(315)] = 8874, + [SMALL_STATE(316)] = 8916, + [SMALL_STATE(317)] = 8958, + [SMALL_STATE(318)] = 9000, + [SMALL_STATE(319)] = 9042, + [SMALL_STATE(320)] = 9084, + [SMALL_STATE(321)] = 9126, + [SMALL_STATE(322)] = 9168, + [SMALL_STATE(323)] = 9210, + [SMALL_STATE(324)] = 9252, + [SMALL_STATE(325)] = 9294, + [SMALL_STATE(326)] = 9336, + [SMALL_STATE(327)] = 9378, + [SMALL_STATE(328)] = 9420, + [SMALL_STATE(329)] = 9462, + [SMALL_STATE(330)] = 9504, + [SMALL_STATE(331)] = 9546, + [SMALL_STATE(332)] = 9588, + [SMALL_STATE(333)] = 9630, + [SMALL_STATE(334)] = 9672, + [SMALL_STATE(335)] = 9714, + [SMALL_STATE(336)] = 9756, + [SMALL_STATE(337)] = 9798, + [SMALL_STATE(338)] = 9840, + [SMALL_STATE(339)] = 9882, + [SMALL_STATE(340)] = 9924, + [SMALL_STATE(341)] = 9968, + [SMALL_STATE(342)] = 10010, + [SMALL_STATE(343)] = 10052, + [SMALL_STATE(344)] = 10094, + [SMALL_STATE(345)] = 10136, + [SMALL_STATE(346)] = 10178, + [SMALL_STATE(347)] = 10220, + [SMALL_STATE(348)] = 10262, + [SMALL_STATE(349)] = 10304, + [SMALL_STATE(350)] = 10346, + [SMALL_STATE(351)] = 10388, + [SMALL_STATE(352)] = 10430, + [SMALL_STATE(353)] = 10472, + [SMALL_STATE(354)] = 10514, + [SMALL_STATE(355)] = 10556, + [SMALL_STATE(356)] = 10598, + [SMALL_STATE(357)] = 10640, + [SMALL_STATE(358)] = 10682, + [SMALL_STATE(359)] = 10724, + [SMALL_STATE(360)] = 10766, + [SMALL_STATE(361)] = 10808, + [SMALL_STATE(362)] = 10850, + [SMALL_STATE(363)] = 10892, + [SMALL_STATE(364)] = 10934, + [SMALL_STATE(365)] = 10976, + [SMALL_STATE(366)] = 11018, + [SMALL_STATE(367)] = 11060, + [SMALL_STATE(368)] = 11102, + [SMALL_STATE(369)] = 11144, + [SMALL_STATE(370)] = 11186, + [SMALL_STATE(371)] = 11228, + [SMALL_STATE(372)] = 11270, + [SMALL_STATE(373)] = 11312, + [SMALL_STATE(374)] = 11354, + [SMALL_STATE(375)] = 11396, + [SMALL_STATE(376)] = 11438, + [SMALL_STATE(377)] = 11480, + [SMALL_STATE(378)] = 11524, + [SMALL_STATE(379)] = 11566, + [SMALL_STATE(380)] = 11608, + [SMALL_STATE(381)] = 11650, + [SMALL_STATE(382)] = 11692, + [SMALL_STATE(383)] = 11734, + [SMALL_STATE(384)] = 11776, + [SMALL_STATE(385)] = 11818, + [SMALL_STATE(386)] = 11860, + [SMALL_STATE(387)] = 11902, + [SMALL_STATE(388)] = 11944, + [SMALL_STATE(389)] = 11986, + [SMALL_STATE(390)] = 12028, + [SMALL_STATE(391)] = 12070, + [SMALL_STATE(392)] = 12112, + [SMALL_STATE(393)] = 12154, + [SMALL_STATE(394)] = 12196, + [SMALL_STATE(395)] = 12238, + [SMALL_STATE(396)] = 12280, + [SMALL_STATE(397)] = 12322, + [SMALL_STATE(398)] = 12364, + [SMALL_STATE(399)] = 12406, + [SMALL_STATE(400)] = 12448, + [SMALL_STATE(401)] = 12490, + [SMALL_STATE(402)] = 12532, + [SMALL_STATE(403)] = 12574, + [SMALL_STATE(404)] = 12616, + [SMALL_STATE(405)] = 12658, + [SMALL_STATE(406)] = 12700, + [SMALL_STATE(407)] = 12742, + [SMALL_STATE(408)] = 12784, + [SMALL_STATE(409)] = 12826, + [SMALL_STATE(410)] = 12868, + [SMALL_STATE(411)] = 12910, + [SMALL_STATE(412)] = 12954, + [SMALL_STATE(413)] = 12996, + [SMALL_STATE(414)] = 13038, + [SMALL_STATE(415)] = 13080, + [SMALL_STATE(416)] = 13122, + [SMALL_STATE(417)] = 13164, + [SMALL_STATE(418)] = 13206, + [SMALL_STATE(419)] = 13248, + [SMALL_STATE(420)] = 13290, + [SMALL_STATE(421)] = 13332, + [SMALL_STATE(422)] = 13374, + [SMALL_STATE(423)] = 13416, + [SMALL_STATE(424)] = 13458, + [SMALL_STATE(425)] = 13500, + [SMALL_STATE(426)] = 13544, + [SMALL_STATE(427)] = 13586, + [SMALL_STATE(428)] = 13628, + [SMALL_STATE(429)] = 13670, + [SMALL_STATE(430)] = 13712, + [SMALL_STATE(431)] = 13754, + [SMALL_STATE(432)] = 13796, + [SMALL_STATE(433)] = 13838, + [SMALL_STATE(434)] = 13880, + [SMALL_STATE(435)] = 13922, + [SMALL_STATE(436)] = 13964, + [SMALL_STATE(437)] = 14006, + [SMALL_STATE(438)] = 14048, + [SMALL_STATE(439)] = 14090, + [SMALL_STATE(440)] = 14132, + [SMALL_STATE(441)] = 14174, + [SMALL_STATE(442)] = 14216, + [SMALL_STATE(443)] = 14260, + [SMALL_STATE(444)] = 14304, + [SMALL_STATE(445)] = 14346, + [SMALL_STATE(446)] = 14390, + [SMALL_STATE(447)] = 14438, + [SMALL_STATE(448)] = 14480, + [SMALL_STATE(449)] = 14524, + [SMALL_STATE(450)] = 14570, + [SMALL_STATE(451)] = 14612, + [SMALL_STATE(452)] = 14656, + [SMALL_STATE(453)] = 14702, + [SMALL_STATE(454)] = 14748, + [SMALL_STATE(455)] = 14790, + [SMALL_STATE(456)] = 14832, + [SMALL_STATE(457)] = 14874, + [SMALL_STATE(458)] = 14916, + [SMALL_STATE(459)] = 14958, + [SMALL_STATE(460)] = 15000, + [SMALL_STATE(461)] = 15042, + [SMALL_STATE(462)] = 15084, + [SMALL_STATE(463)] = 15126, + [SMALL_STATE(464)] = 15168, + [SMALL_STATE(465)] = 15210, + [SMALL_STATE(466)] = 15252, + [SMALL_STATE(467)] = 15294, + [SMALL_STATE(468)] = 15336, + [SMALL_STATE(469)] = 15378, + [SMALL_STATE(470)] = 15420, + [SMALL_STATE(471)] = 15462, + [SMALL_STATE(472)] = 15504, + [SMALL_STATE(473)] = 15546, + [SMALL_STATE(474)] = 15588, + [SMALL_STATE(475)] = 15630, + [SMALL_STATE(476)] = 15672, + [SMALL_STATE(477)] = 15714, + [SMALL_STATE(478)] = 15756, + [SMALL_STATE(479)] = 15798, + [SMALL_STATE(480)] = 15840, + [SMALL_STATE(481)] = 15882, + [SMALL_STATE(482)] = 15924, + [SMALL_STATE(483)] = 15968, + [SMALL_STATE(484)] = 16010, + [SMALL_STATE(485)] = 16052, + [SMALL_STATE(486)] = 16094, + [SMALL_STATE(487)] = 16136, + [SMALL_STATE(488)] = 16178, + [SMALL_STATE(489)] = 16220, + [SMALL_STATE(490)] = 16262, + [SMALL_STATE(491)] = 16304, + [SMALL_STATE(492)] = 16346, + [SMALL_STATE(493)] = 16388, + [SMALL_STATE(494)] = 16430, + [SMALL_STATE(495)] = 16472, + [SMALL_STATE(496)] = 16514, + [SMALL_STATE(497)] = 16556, + [SMALL_STATE(498)] = 16598, + [SMALL_STATE(499)] = 16640, + [SMALL_STATE(500)] = 16682, + [SMALL_STATE(501)] = 16724, + [SMALL_STATE(502)] = 16766, + [SMALL_STATE(503)] = 16808, + [SMALL_STATE(504)] = 16850, + [SMALL_STATE(505)] = 16892, + [SMALL_STATE(506)] = 16934, + [SMALL_STATE(507)] = 16976, + [SMALL_STATE(508)] = 17018, + [SMALL_STATE(509)] = 17060, + [SMALL_STATE(510)] = 17102, + [SMALL_STATE(511)] = 17144, + [SMALL_STATE(512)] = 17186, + [SMALL_STATE(513)] = 17228, + [SMALL_STATE(514)] = 17270, + [SMALL_STATE(515)] = 17312, + [SMALL_STATE(516)] = 17354, + [SMALL_STATE(517)] = 17396, + [SMALL_STATE(518)] = 17438, + [SMALL_STATE(519)] = 17480, + [SMALL_STATE(520)] = 17524, + [SMALL_STATE(521)] = 17566, + [SMALL_STATE(522)] = 17608, + [SMALL_STATE(523)] = 17649, + [SMALL_STATE(524)] = 17690, + [SMALL_STATE(525)] = 17731, + [SMALL_STATE(526)] = 17772, + [SMALL_STATE(527)] = 17813, + [SMALL_STATE(528)] = 17854, + [SMALL_STATE(529)] = 17895, + [SMALL_STATE(530)] = 17936, + [SMALL_STATE(531)] = 17977, + [SMALL_STATE(532)] = 18018, + [SMALL_STATE(533)] = 18059, + [SMALL_STATE(534)] = 18100, + [SMALL_STATE(535)] = 18141, + [SMALL_STATE(536)] = 18182, + [SMALL_STATE(537)] = 18223, + [SMALL_STATE(538)] = 18264, + [SMALL_STATE(539)] = 18305, + [SMALL_STATE(540)] = 18346, + [SMALL_STATE(541)] = 18387, + [SMALL_STATE(542)] = 18428, + [SMALL_STATE(543)] = 18469, + [SMALL_STATE(544)] = 18512, + [SMALL_STATE(545)] = 18553, + [SMALL_STATE(546)] = 18594, + [SMALL_STATE(547)] = 18635, + [SMALL_STATE(548)] = 18676, + [SMALL_STATE(549)] = 18717, + [SMALL_STATE(550)] = 18758, + [SMALL_STATE(551)] = 18799, + [SMALL_STATE(552)] = 18840, + [SMALL_STATE(553)] = 18881, + [SMALL_STATE(554)] = 18922, + [SMALL_STATE(555)] = 18963, + [SMALL_STATE(556)] = 19004, + [SMALL_STATE(557)] = 19045, + [SMALL_STATE(558)] = 19086, + [SMALL_STATE(559)] = 19127, + [SMALL_STATE(560)] = 19170, + [SMALL_STATE(561)] = 19211, + [SMALL_STATE(562)] = 19252, + [SMALL_STATE(563)] = 19293, + [SMALL_STATE(564)] = 19334, + [SMALL_STATE(565)] = 19375, + [SMALL_STATE(566)] = 19416, + [SMALL_STATE(567)] = 19457, + [SMALL_STATE(568)] = 19498, + [SMALL_STATE(569)] = 19539, + [SMALL_STATE(570)] = 19580, + [SMALL_STATE(571)] = 19623, + [SMALL_STATE(572)] = 19664, + [SMALL_STATE(573)] = 19705, + [SMALL_STATE(574)] = 19746, + [SMALL_STATE(575)] = 19787, + [SMALL_STATE(576)] = 19828, + [SMALL_STATE(577)] = 19871, + [SMALL_STATE(578)] = 19912, + [SMALL_STATE(579)] = 19953, + [SMALL_STATE(580)] = 19994, + [SMALL_STATE(581)] = 20035, + [SMALL_STATE(582)] = 20076, + [SMALL_STATE(583)] = 20117, + [SMALL_STATE(584)] = 20158, + [SMALL_STATE(585)] = 20199, + [SMALL_STATE(586)] = 20240, + [SMALL_STATE(587)] = 20281, + [SMALL_STATE(588)] = 20322, + [SMALL_STATE(589)] = 20363, + [SMALL_STATE(590)] = 20404, + [SMALL_STATE(591)] = 20445, + [SMALL_STATE(592)] = 20486, + [SMALL_STATE(593)] = 20527, + [SMALL_STATE(594)] = 20568, + [SMALL_STATE(595)] = 20609, + [SMALL_STATE(596)] = 20650, + [SMALL_STATE(597)] = 20691, + [SMALL_STATE(598)] = 20732, + [SMALL_STATE(599)] = 20773, + [SMALL_STATE(600)] = 20814, + [SMALL_STATE(601)] = 20857, + [SMALL_STATE(602)] = 20898, + [SMALL_STATE(603)] = 20939, + [SMALL_STATE(604)] = 20980, + [SMALL_STATE(605)] = 21021, + [SMALL_STATE(606)] = 21062, + [SMALL_STATE(607)] = 21103, + [SMALL_STATE(608)] = 21144, + [SMALL_STATE(609)] = 21185, + [SMALL_STATE(610)] = 21226, + [SMALL_STATE(611)] = 21267, + [SMALL_STATE(612)] = 21308, + [SMALL_STATE(613)] = 21349, + [SMALL_STATE(614)] = 21390, + [SMALL_STATE(615)] = 21430, + [SMALL_STATE(616)] = 21470, + [SMALL_STATE(617)] = 21510, + [SMALL_STATE(618)] = 21550, + [SMALL_STATE(619)] = 21590, + [SMALL_STATE(620)] = 21630, + [SMALL_STATE(621)] = 21662, + [SMALL_STATE(622)] = 21694, + [SMALL_STATE(623)] = 21726, + [SMALL_STATE(624)] = 21758, + [SMALL_STATE(625)] = 21790, + [SMALL_STATE(626)] = 21822, + [SMALL_STATE(627)] = 21854, + [SMALL_STATE(628)] = 21886, + [SMALL_STATE(629)] = 21918, + [SMALL_STATE(630)] = 21950, + [SMALL_STATE(631)] = 21982, + [SMALL_STATE(632)] = 22014, + [SMALL_STATE(633)] = 22046, + [SMALL_STATE(634)] = 22078, + [SMALL_STATE(635)] = 22110, + [SMALL_STATE(636)] = 22142, + [SMALL_STATE(637)] = 22174, + [SMALL_STATE(638)] = 22206, + [SMALL_STATE(639)] = 22238, + [SMALL_STATE(640)] = 22270, + [SMALL_STATE(641)] = 22302, + [SMALL_STATE(642)] = 22334, + [SMALL_STATE(643)] = 22366, + [SMALL_STATE(644)] = 22376, + [SMALL_STATE(645)] = 22386, + [SMALL_STATE(646)] = 22396, + [SMALL_STATE(647)] = 22406, + [SMALL_STATE(648)] = 22416, + [SMALL_STATE(649)] = 22426, + [SMALL_STATE(650)] = 22436, + [SMALL_STATE(651)] = 22446, + [SMALL_STATE(652)] = 22456, + [SMALL_STATE(653)] = 22473, + [SMALL_STATE(654)] = 22490, + [SMALL_STATE(655)] = 22509, + [SMALL_STATE(656)] = 22528, + [SMALL_STATE(657)] = 22547, + [SMALL_STATE(658)] = 22566, + [SMALL_STATE(659)] = 22581, + [SMALL_STATE(660)] = 22598, + [SMALL_STATE(661)] = 22617, + [SMALL_STATE(662)] = 22636, + [SMALL_STATE(663)] = 22655, + [SMALL_STATE(664)] = 22674, + [SMALL_STATE(665)] = 22689, + [SMALL_STATE(666)] = 22704, + [SMALL_STATE(667)] = 22721, + [SMALL_STATE(668)] = 22740, + [SMALL_STATE(669)] = 22759, + [SMALL_STATE(670)] = 22776, + [SMALL_STATE(671)] = 22793, + [SMALL_STATE(672)] = 22812, + [SMALL_STATE(673)] = 22831, + [SMALL_STATE(674)] = 22846, + [SMALL_STATE(675)] = 22863, + [SMALL_STATE(676)] = 22880, + [SMALL_STATE(677)] = 22897, + [SMALL_STATE(678)] = 22916, + [SMALL_STATE(679)] = 22935, + [SMALL_STATE(680)] = 22954, + [SMALL_STATE(681)] = 22973, + [SMALL_STATE(682)] = 22992, + [SMALL_STATE(683)] = 23011, + [SMALL_STATE(684)] = 23028, + [SMALL_STATE(685)] = 23045, + [SMALL_STATE(686)] = 23064, + [SMALL_STATE(687)] = 23083, + [SMALL_STATE(688)] = 23102, + [SMALL_STATE(689)] = 23117, + [SMALL_STATE(690)] = 23136, + [SMALL_STATE(691)] = 23143, + [SMALL_STATE(692)] = 23153, + [SMALL_STATE(693)] = 23161, + [SMALL_STATE(694)] = 23169, + [SMALL_STATE(695)] = 23174, + [SMALL_STATE(696)] = 23179, + [SMALL_STATE(697)] = 23186, + [SMALL_STATE(698)] = 23193, + [SMALL_STATE(699)] = 23200, + [SMALL_STATE(700)] = 23207, + [SMALL_STATE(701)] = 23214, + [SMALL_STATE(702)] = 23221, + [SMALL_STATE(703)] = 23228, + [SMALL_STATE(704)] = 23235, + [SMALL_STATE(705)] = 23242, + [SMALL_STATE(706)] = 23249, + [SMALL_STATE(707)] = 23256, + [SMALL_STATE(708)] = 23263, + [SMALL_STATE(709)] = 23270, + [SMALL_STATE(710)] = 23277, + [SMALL_STATE(711)] = 23284, + [SMALL_STATE(712)] = 23291, + [SMALL_STATE(713)] = 23298, + [SMALL_STATE(714)] = 23305, + [SMALL_STATE(715)] = 23312, + [SMALL_STATE(716)] = 23319, + [SMALL_STATE(717)] = 23326, + [SMALL_STATE(718)] = 23333, + [SMALL_STATE(719)] = 23340, + [SMALL_STATE(720)] = 23347, + [SMALL_STATE(721)] = 23354, + [SMALL_STATE(722)] = 23361, + [SMALL_STATE(723)] = 23368, + [SMALL_STATE(724)] = 23375, + [SMALL_STATE(725)] = 23380, + [SMALL_STATE(726)] = 23387, + [SMALL_STATE(727)] = 23394, + [SMALL_STATE(728)] = 23401, + [SMALL_STATE(729)] = 23408, + [SMALL_STATE(730)] = 23415, + [SMALL_STATE(731)] = 23422, + [SMALL_STATE(732)] = 23429, + [SMALL_STATE(733)] = 23436, + [SMALL_STATE(734)] = 23443, + [SMALL_STATE(735)] = 23450, + [SMALL_STATE(736)] = 23457, + [SMALL_STATE(737)] = 23464, + [SMALL_STATE(738)] = 23471, + [SMALL_STATE(739)] = 23478, + [SMALL_STATE(740)] = 23485, + [SMALL_STATE(741)] = 23490, + [SMALL_STATE(742)] = 23495, + [SMALL_STATE(743)] = 23502, + [SMALL_STATE(744)] = 23509, + [SMALL_STATE(745)] = 23516, + [SMALL_STATE(746)] = 23523, + [SMALL_STATE(747)] = 23530, + [SMALL_STATE(748)] = 23537, + [SMALL_STATE(749)] = 23544, + [SMALL_STATE(750)] = 23551, + [SMALL_STATE(751)] = 23558, + [SMALL_STATE(752)] = 23565, + [SMALL_STATE(753)] = 23572, + [SMALL_STATE(754)] = 23579, + [SMALL_STATE(755)] = 23586, + [SMALL_STATE(756)] = 23593, + [SMALL_STATE(757)] = 23600, + [SMALL_STATE(758)] = 23607, + [SMALL_STATE(759)] = 23612, + [SMALL_STATE(760)] = 23619, + [SMALL_STATE(761)] = 23626, + [SMALL_STATE(762)] = 23633, + [SMALL_STATE(763)] = 23640, + [SMALL_STATE(764)] = 23647, + [SMALL_STATE(765)] = 23654, + [SMALL_STATE(766)] = 23661, + [SMALL_STATE(767)] = 23668, + [SMALL_STATE(768)] = 23675, + [SMALL_STATE(769)] = 23682, + [SMALL_STATE(770)] = 23689, + [SMALL_STATE(771)] = 23696, + [SMALL_STATE(772)] = 23703, + [SMALL_STATE(773)] = 23710, + [SMALL_STATE(774)] = 23717, + [SMALL_STATE(775)] = 23724, + [SMALL_STATE(776)] = 23731, + [SMALL_STATE(777)] = 23738, + [SMALL_STATE(778)] = 23743, + [SMALL_STATE(779)] = 23750, + [SMALL_STATE(780)] = 23757, + [SMALL_STATE(781)] = 23764, + [SMALL_STATE(782)] = 23771, + [SMALL_STATE(783)] = 23778, + [SMALL_STATE(784)] = 23785, + [SMALL_STATE(785)] = 23792, + [SMALL_STATE(786)] = 23799, + [SMALL_STATE(787)] = 23806, + [SMALL_STATE(788)] = 23813, + [SMALL_STATE(789)] = 23820, + [SMALL_STATE(790)] = 23827, + [SMALL_STATE(791)] = 23834, + [SMALL_STATE(792)] = 23841, + [SMALL_STATE(793)] = 23848, + [SMALL_STATE(794)] = 23853, + [SMALL_STATE(795)] = 23860, + [SMALL_STATE(796)] = 23867, + [SMALL_STATE(797)] = 23874, + [SMALL_STATE(798)] = 23881, + [SMALL_STATE(799)] = 23888, + [SMALL_STATE(800)] = 23895, + [SMALL_STATE(801)] = 23902, + [SMALL_STATE(802)] = 23909, + [SMALL_STATE(803)] = 23916, + [SMALL_STATE(804)] = 23923, + [SMALL_STATE(805)] = 23930, + [SMALL_STATE(806)] = 23937, + [SMALL_STATE(807)] = 23944, + [SMALL_STATE(808)] = 23951, + [SMALL_STATE(809)] = 23958, + [SMALL_STATE(810)] = 23963, + [SMALL_STATE(811)] = 23970, + [SMALL_STATE(812)] = 23977, + [SMALL_STATE(813)] = 23984, + [SMALL_STATE(814)] = 23991, + [SMALL_STATE(815)] = 23998, + [SMALL_STATE(816)] = 24005, + [SMALL_STATE(817)] = 24012, + [SMALL_STATE(818)] = 24019, + [SMALL_STATE(819)] = 24026, + [SMALL_STATE(820)] = 24033, + [SMALL_STATE(821)] = 24040, + [SMALL_STATE(822)] = 24047, + [SMALL_STATE(823)] = 24054, + [SMALL_STATE(824)] = 24061, + [SMALL_STATE(825)] = 24068, + [SMALL_STATE(826)] = 24075, + [SMALL_STATE(827)] = 24082, + [SMALL_STATE(828)] = 24089, + [SMALL_STATE(829)] = 24096, + [SMALL_STATE(830)] = 24103, + [SMALL_STATE(831)] = 24110, + [SMALL_STATE(832)] = 24117, + [SMALL_STATE(833)] = 24124, + [SMALL_STATE(834)] = 24131, + [SMALL_STATE(835)] = 24138, + [SMALL_STATE(836)] = 24145, + [SMALL_STATE(837)] = 24152, + [SMALL_STATE(838)] = 24159, + [SMALL_STATE(839)] = 24166, + [SMALL_STATE(840)] = 24173, + [SMALL_STATE(841)] = 24180, + [SMALL_STATE(842)] = 24187, + [SMALL_STATE(843)] = 24194, + [SMALL_STATE(844)] = 24201, + [SMALL_STATE(845)] = 24208, + [SMALL_STATE(846)] = 24215, + [SMALL_STATE(847)] = 24222, + [SMALL_STATE(848)] = 24229, + [SMALL_STATE(849)] = 24236, + [SMALL_STATE(850)] = 24243, + [SMALL_STATE(851)] = 24250, + [SMALL_STATE(852)] = 24257, + [SMALL_STATE(853)] = 24264, + [SMALL_STATE(854)] = 24271, + [SMALL_STATE(855)] = 24278, + [SMALL_STATE(856)] = 24285, + [SMALL_STATE(857)] = 24292, + [SMALL_STATE(858)] = 24297, + [SMALL_STATE(859)] = 24304, + [SMALL_STATE(860)] = 24311, + [SMALL_STATE(861)] = 24318, + [SMALL_STATE(862)] = 24325, + [SMALL_STATE(863)] = 24332, + [SMALL_STATE(864)] = 24339, + [SMALL_STATE(865)] = 24346, + [SMALL_STATE(866)] = 24353, + [SMALL_STATE(867)] = 24360, + [SMALL_STATE(868)] = 24367, + [SMALL_STATE(869)] = 24374, + [SMALL_STATE(870)] = 24381, + [SMALL_STATE(871)] = 24388, + [SMALL_STATE(872)] = 24395, + [SMALL_STATE(873)] = 24402, + [SMALL_STATE(874)] = 24409, + [SMALL_STATE(875)] = 24416, + [SMALL_STATE(876)] = 24423, + [SMALL_STATE(877)] = 24430, + [SMALL_STATE(878)] = 24437, + [SMALL_STATE(879)] = 24444, + [SMALL_STATE(880)] = 24451, + [SMALL_STATE(881)] = 24458, + [SMALL_STATE(882)] = 24463, + [SMALL_STATE(883)] = 24467, + [SMALL_STATE(884)] = 24471, + [SMALL_STATE(885)] = 24475, + [SMALL_STATE(886)] = 24479, + [SMALL_STATE(887)] = 24483, + [SMALL_STATE(888)] = 24487, + [SMALL_STATE(889)] = 24491, + [SMALL_STATE(890)] = 24495, + [SMALL_STATE(891)] = 24499, + [SMALL_STATE(892)] = 24503, + [SMALL_STATE(893)] = 24507, + [SMALL_STATE(894)] = 24511, + [SMALL_STATE(895)] = 24515, + [SMALL_STATE(896)] = 24519, + [SMALL_STATE(897)] = 24523, + [SMALL_STATE(898)] = 24527, + [SMALL_STATE(899)] = 24531, + [SMALL_STATE(900)] = 24535, + [SMALL_STATE(901)] = 24539, + [SMALL_STATE(902)] = 24543, + [SMALL_STATE(903)] = 24547, + [SMALL_STATE(904)] = 24551, + [SMALL_STATE(905)] = 24555, + [SMALL_STATE(906)] = 24559, + [SMALL_STATE(907)] = 24563, + [SMALL_STATE(908)] = 24567, + [SMALL_STATE(909)] = 24571, + [SMALL_STATE(910)] = 24575, + [SMALL_STATE(911)] = 24579, + [SMALL_STATE(912)] = 24583, + [SMALL_STATE(913)] = 24587, + [SMALL_STATE(914)] = 24591, + [SMALL_STATE(915)] = 24595, + [SMALL_STATE(916)] = 24599, + [SMALL_STATE(917)] = 24603, + [SMALL_STATE(918)] = 24607, + [SMALL_STATE(919)] = 24611, + [SMALL_STATE(920)] = 24615, + [SMALL_STATE(921)] = 24619, + [SMALL_STATE(922)] = 24623, + [SMALL_STATE(923)] = 24627, + [SMALL_STATE(924)] = 24631, + [SMALL_STATE(925)] = 24635, + [SMALL_STATE(926)] = 24639, + [SMALL_STATE(927)] = 24643, + [SMALL_STATE(928)] = 24647, + [SMALL_STATE(929)] = 24651, + [SMALL_STATE(930)] = 24655, + [SMALL_STATE(931)] = 24659, + [SMALL_STATE(932)] = 24663, + [SMALL_STATE(933)] = 24667, + [SMALL_STATE(934)] = 24671, + [SMALL_STATE(935)] = 24675, + [SMALL_STATE(936)] = 24679, + [SMALL_STATE(937)] = 24683, + [SMALL_STATE(938)] = 24687, + [SMALL_STATE(939)] = 24691, + [SMALL_STATE(940)] = 24695, + [SMALL_STATE(941)] = 24699, + [SMALL_STATE(942)] = 24703, + [SMALL_STATE(943)] = 24707, + [SMALL_STATE(944)] = 24711, + [SMALL_STATE(945)] = 24715, + [SMALL_STATE(946)] = 24719, + [SMALL_STATE(947)] = 24723, + [SMALL_STATE(948)] = 24727, + [SMALL_STATE(949)] = 24731, + [SMALL_STATE(950)] = 24735, + [SMALL_STATE(951)] = 24739, + [SMALL_STATE(952)] = 24743, + [SMALL_STATE(953)] = 24747, + [SMALL_STATE(954)] = 24751, + [SMALL_STATE(955)] = 24755, + [SMALL_STATE(956)] = 24759, + [SMALL_STATE(957)] = 24763, + [SMALL_STATE(958)] = 24767, + [SMALL_STATE(959)] = 24771, + [SMALL_STATE(960)] = 24775, + [SMALL_STATE(961)] = 24779, + [SMALL_STATE(962)] = 24783, + [SMALL_STATE(963)] = 24787, + [SMALL_STATE(964)] = 24791, + [SMALL_STATE(965)] = 24795, + [SMALL_STATE(966)] = 24799, + [SMALL_STATE(967)] = 24803, + [SMALL_STATE(968)] = 24807, + [SMALL_STATE(969)] = 24811, + [SMALL_STATE(970)] = 24815, + [SMALL_STATE(971)] = 24819, + [SMALL_STATE(972)] = 24823, + [SMALL_STATE(973)] = 24827, + [SMALL_STATE(974)] = 24831, + [SMALL_STATE(975)] = 24835, + [SMALL_STATE(976)] = 24839, + [SMALL_STATE(977)] = 24843, + [SMALL_STATE(978)] = 24847, + [SMALL_STATE(979)] = 24851, + [SMALL_STATE(980)] = 24855, + [SMALL_STATE(981)] = 24859, + [SMALL_STATE(982)] = 24863, + [SMALL_STATE(983)] = 24867, + [SMALL_STATE(984)] = 24871, + [SMALL_STATE(985)] = 24875, + [SMALL_STATE(986)] = 24879, + [SMALL_STATE(987)] = 24883, + [SMALL_STATE(988)] = 24887, + [SMALL_STATE(989)] = 24891, + [SMALL_STATE(990)] = 24895, + [SMALL_STATE(991)] = 24899, + [SMALL_STATE(992)] = 24903, + [SMALL_STATE(993)] = 24907, + [SMALL_STATE(994)] = 24911, + [SMALL_STATE(995)] = 24915, + [SMALL_STATE(996)] = 24919, + [SMALL_STATE(997)] = 24923, + [SMALL_STATE(998)] = 24927, + [SMALL_STATE(999)] = 24931, + [SMALL_STATE(1000)] = 24935, + [SMALL_STATE(1001)] = 24939, + [SMALL_STATE(1002)] = 24943, + [SMALL_STATE(1003)] = 24947, + [SMALL_STATE(1004)] = 24951, + [SMALL_STATE(1005)] = 24955, + [SMALL_STATE(1006)] = 24959, + [SMALL_STATE(1007)] = 24963, + [SMALL_STATE(1008)] = 24967, + [SMALL_STATE(1009)] = 24971, + [SMALL_STATE(1010)] = 24975, + [SMALL_STATE(1011)] = 24979, + [SMALL_STATE(1012)] = 24983, + [SMALL_STATE(1013)] = 24987, + [SMALL_STATE(1014)] = 24991, + [SMALL_STATE(1015)] = 24995, + [SMALL_STATE(1016)] = 24999, + [SMALL_STATE(1017)] = 25003, + [SMALL_STATE(1018)] = 25007, + [SMALL_STATE(1019)] = 25011, + [SMALL_STATE(1020)] = 25015, + [SMALL_STATE(1021)] = 25019, + [SMALL_STATE(1022)] = 25023, + [SMALL_STATE(1023)] = 25027, + [SMALL_STATE(1024)] = 25031, + [SMALL_STATE(1025)] = 25035, + [SMALL_STATE(1026)] = 25039, + [SMALL_STATE(1027)] = 25043, + [SMALL_STATE(1028)] = 25047, + [SMALL_STATE(1029)] = 25051, + [SMALL_STATE(1030)] = 25055, + [SMALL_STATE(1031)] = 25059, + [SMALL_STATE(1032)] = 25063, + [SMALL_STATE(1033)] = 25067, + [SMALL_STATE(1034)] = 25071, + [SMALL_STATE(1035)] = 25075, + [SMALL_STATE(1036)] = 25079, + [SMALL_STATE(1037)] = 25083, + [SMALL_STATE(1038)] = 25087, + [SMALL_STATE(1039)] = 25091, + [SMALL_STATE(1040)] = 25095, + [SMALL_STATE(1041)] = 25099, + [SMALL_STATE(1042)] = 25103, + [SMALL_STATE(1043)] = 25107, + [SMALL_STATE(1044)] = 25111, + [SMALL_STATE(1045)] = 25115, + [SMALL_STATE(1046)] = 25119, + [SMALL_STATE(1047)] = 25123, + [SMALL_STATE(1048)] = 25127, + [SMALL_STATE(1049)] = 25131, + [SMALL_STATE(1050)] = 25135, + [SMALL_STATE(1051)] = 25139, + [SMALL_STATE(1052)] = 25143, + [SMALL_STATE(1053)] = 25147, + [SMALL_STATE(1054)] = 25151, + [SMALL_STATE(1055)] = 25155, + [SMALL_STATE(1056)] = 25159, + [SMALL_STATE(1057)] = 25163, + [SMALL_STATE(1058)] = 25167, + [SMALL_STATE(1059)] = 25171, + [SMALL_STATE(1060)] = 25175, + [SMALL_STATE(1061)] = 25179, + [SMALL_STATE(1062)] = 25183, + [SMALL_STATE(1063)] = 25187, + [SMALL_STATE(1064)] = 25191, + [SMALL_STATE(1065)] = 25195, + [SMALL_STATE(1066)] = 25199, + [SMALL_STATE(1067)] = 25203, + [SMALL_STATE(1068)] = 25207, + [SMALL_STATE(1069)] = 25211, + [SMALL_STATE(1070)] = 25215, + [SMALL_STATE(1071)] = 25219, + [SMALL_STATE(1072)] = 25223, + [SMALL_STATE(1073)] = 25227, + [SMALL_STATE(1074)] = 25231, + [SMALL_STATE(1075)] = 25235, + [SMALL_STATE(1076)] = 25239, + [SMALL_STATE(1077)] = 25243, + [SMALL_STATE(1078)] = 25247, + [SMALL_STATE(1079)] = 25251, + [SMALL_STATE(1080)] = 25255, + [SMALL_STATE(1081)] = 25259, + [SMALL_STATE(1082)] = 25263, + [SMALL_STATE(1083)] = 25267, + [SMALL_STATE(1084)] = 25271, + [SMALL_STATE(1085)] = 25275, + [SMALL_STATE(1086)] = 25279, + [SMALL_STATE(1087)] = 25283, + [SMALL_STATE(1088)] = 25287, + [SMALL_STATE(1089)] = 25291, + [SMALL_STATE(1090)] = 25295, + [SMALL_STATE(1091)] = 25299, + [SMALL_STATE(1092)] = 25303, + [SMALL_STATE(1093)] = 25307, + [SMALL_STATE(1094)] = 25311, + [SMALL_STATE(1095)] = 25315, + [SMALL_STATE(1096)] = 25319, + [SMALL_STATE(1097)] = 25323, + [SMALL_STATE(1098)] = 25327, + [SMALL_STATE(1099)] = 25331, + [SMALL_STATE(1100)] = 25335, + [SMALL_STATE(1101)] = 25339, + [SMALL_STATE(1102)] = 25343, + [SMALL_STATE(1103)] = 25347, + [SMALL_STATE(1104)] = 25351, + [SMALL_STATE(1105)] = 25355, + [SMALL_STATE(1106)] = 25359, + [SMALL_STATE(1107)] = 25363, + [SMALL_STATE(1108)] = 25367, + [SMALL_STATE(1109)] = 25371, + [SMALL_STATE(1110)] = 25375, + [SMALL_STATE(1111)] = 25379, + [SMALL_STATE(1112)] = 25383, + [SMALL_STATE(1113)] = 25387, + [SMALL_STATE(1114)] = 25391, + [SMALL_STATE(1115)] = 25395, + [SMALL_STATE(1116)] = 25399, + [SMALL_STATE(1117)] = 25403, + [SMALL_STATE(1118)] = 25407, + [SMALL_STATE(1119)] = 25411, + [SMALL_STATE(1120)] = 25415, + [SMALL_STATE(1121)] = 25419, + [SMALL_STATE(1122)] = 25423, + [SMALL_STATE(1123)] = 25427, + [SMALL_STATE(1124)] = 25431, + [SMALL_STATE(1125)] = 25435, + [SMALL_STATE(1126)] = 25439, + [SMALL_STATE(1127)] = 25443, + [SMALL_STATE(1128)] = 25447, + [SMALL_STATE(1129)] = 25451, + [SMALL_STATE(1130)] = 25455, + [SMALL_STATE(1131)] = 25459, + [SMALL_STATE(1132)] = 25463, + [SMALL_STATE(1133)] = 25467, + [SMALL_STATE(1134)] = 25471, + [SMALL_STATE(1135)] = 25475, + [SMALL_STATE(1136)] = 25479, + [SMALL_STATE(1137)] = 25483, + [SMALL_STATE(1138)] = 25487, + [SMALL_STATE(1139)] = 25491, + [SMALL_STATE(1140)] = 25495, + [SMALL_STATE(1141)] = 25499, + [SMALL_STATE(1142)] = 25503, + [SMALL_STATE(1143)] = 25507, + [SMALL_STATE(1144)] = 25511, + [SMALL_STATE(1145)] = 25515, + [SMALL_STATE(1146)] = 25519, + [SMALL_STATE(1147)] = 25523, + [SMALL_STATE(1148)] = 25527, + [SMALL_STATE(1149)] = 25531, + [SMALL_STATE(1150)] = 25535, + [SMALL_STATE(1151)] = 25539, + [SMALL_STATE(1152)] = 25543, + [SMALL_STATE(1153)] = 25547, + [SMALL_STATE(1154)] = 25551, + [SMALL_STATE(1155)] = 25555, + [SMALL_STATE(1156)] = 25559, + [SMALL_STATE(1157)] = 25563, + [SMALL_STATE(1158)] = 25567, + [SMALL_STATE(1159)] = 25571, + [SMALL_STATE(1160)] = 25575, + [SMALL_STATE(1161)] = 25579, + [SMALL_STATE(1162)] = 25583, + [SMALL_STATE(1163)] = 25587, + [SMALL_STATE(1164)] = 25591, + [SMALL_STATE(1165)] = 25595, + [SMALL_STATE(1166)] = 25599, + [SMALL_STATE(1167)] = 25603, + [SMALL_STATE(1168)] = 25607, + [SMALL_STATE(1169)] = 25611, + [SMALL_STATE(1170)] = 25615, + [SMALL_STATE(1171)] = 25619, + [SMALL_STATE(1172)] = 25623, + [SMALL_STATE(1173)] = 25627, + [SMALL_STATE(1174)] = 25631, + [SMALL_STATE(1175)] = 25635, + [SMALL_STATE(1176)] = 25639, + [SMALL_STATE(1177)] = 25643, + [SMALL_STATE(1178)] = 25647, + [SMALL_STATE(1179)] = 25651, + [SMALL_STATE(1180)] = 25655, + [SMALL_STATE(1181)] = 25659, + [SMALL_STATE(1182)] = 25663, + [SMALL_STATE(1183)] = 25667, + [SMALL_STATE(1184)] = 25671, + [SMALL_STATE(1185)] = 25675, + [SMALL_STATE(1186)] = 25679, + [SMALL_STATE(1187)] = 25683, + [SMALL_STATE(1188)] = 25687, + [SMALL_STATE(1189)] = 25691, + [SMALL_STATE(1190)] = 25695, + [SMALL_STATE(1191)] = 25699, + [SMALL_STATE(1192)] = 25703, + [SMALL_STATE(1193)] = 25707, + [SMALL_STATE(1194)] = 25711, + [SMALL_STATE(1195)] = 25715, + [SMALL_STATE(1196)] = 25719, + [SMALL_STATE(1197)] = 25723, + [SMALL_STATE(1198)] = 25727, + [SMALL_STATE(1199)] = 25731, + [SMALL_STATE(1200)] = 25735, + [SMALL_STATE(1201)] = 25739, + [SMALL_STATE(1202)] = 25743, + [SMALL_STATE(1203)] = 25747, + [SMALL_STATE(1204)] = 25751, + [SMALL_STATE(1205)] = 25755, + [SMALL_STATE(1206)] = 25759, + [SMALL_STATE(1207)] = 25763, + [SMALL_STATE(1208)] = 25767, + [SMALL_STATE(1209)] = 25771, + [SMALL_STATE(1210)] = 25775, + [SMALL_STATE(1211)] = 25779, + [SMALL_STATE(1212)] = 25783, + [SMALL_STATE(1213)] = 25787, + [SMALL_STATE(1214)] = 25791, + [SMALL_STATE(1215)] = 25795, + [SMALL_STATE(1216)] = 25799, + [SMALL_STATE(1217)] = 25803, + [SMALL_STATE(1218)] = 25807, + [SMALL_STATE(1219)] = 25811, + [SMALL_STATE(1220)] = 25815, + [SMALL_STATE(1221)] = 25819, + [SMALL_STATE(1222)] = 25823, + [SMALL_STATE(1223)] = 25827, + [SMALL_STATE(1224)] = 25831, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), - [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), - [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(714), - [152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(208), - [155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(715), - [158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(207), - [161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(716), - [164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(717), - [167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(718), - [170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(719), - [173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(720), - [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1067), - [179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(134), - [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(134), - [185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(204), - [188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(722), - [191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(723), - [194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(724), - [197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(725), - [200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(287), - [203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(288), - [206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(289), - [209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(220), - [212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(6), - [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(129), - [218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(992), - [221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), - [223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(786), - [226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(210), - [229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(685), - [232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(211), - [235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(686), - [238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(687), - [241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(688), - [244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(690), - [247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(691), - [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1193), - [253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(140), - [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(140), - [259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(213), - [262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(693), - [265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(694), - [268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(695), - [271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(696), - [274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(249), - [277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(250), - [280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(251), - [283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(198), - [286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(13), - [289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(122), - [292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(976), - [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), - [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline, 1), - [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), - [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), - [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), - [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), - [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), - [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), - [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), - [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), - [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), - [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), - [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), - [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), - [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(743), - [640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(187), - [643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(744), - [646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(186), - [649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(745), - [652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(746), - [655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(747), - [658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(748), - [661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(749), - [664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1000), - [667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(144), - [670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(144), - [673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(184), - [676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(751), - [679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(752), - [682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(753), - [685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(754), - [688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(333), - [691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(334), - [694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(335), - [697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(203), - [700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(25), - [703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(128), - [706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1008), - [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(773), - [714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(175), - [717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(774), - [720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(174), - [723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(775), - [726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(776), - [729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(777), - [732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(778), - [735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(779), - [738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(954), - [741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(145), - [744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(145), - [747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(172), - [750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(781), - [753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(782), - [756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(783), - [759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(784), - [762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(379), - [765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(380), - [768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(381), - [771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(183), - [774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(38), - [777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(124), - [780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1024), - [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(807), - [790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(193), - [793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(808), - [796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(170), - [799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(809), - [802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(810), - [805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(811), - [808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(812), - [811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(813), - [814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(911), - [817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(142), - [820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(142), - [823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(176), - [826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(815), - [829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(816), - [832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(817), - [835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(818), - [838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(425), - [841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(426), - [844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(427), - [847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(173), - [850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(49), - [853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(126), - [856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1040), - [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(841), - [866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(197), - [869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(842), - [872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(199), - [875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(843), - [878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(844), - [881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(845), - [884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(846), - [887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(847), - [890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(876), - [893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(138), - [896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(138), - [899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(200), - [902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(849), - [905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(850), - [908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(851), - [911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(852), - [914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(471), - [917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(472), - [920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(473), - [923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(181), - [926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(71), - [929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(121), - [932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1056), - [935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(689), - [938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(202), - [941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(692), - [944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(219), - [947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(697), - [950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(701), - [953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(702), - [956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(703), - [959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(704), - [962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1133), - [965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(151), - [968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(151), - [971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(201), - [974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(705), - [977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(706), - [980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(707), - [983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(709), - [986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(508), - [989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(233), - [992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(245), - [995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(196), - [998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(72), - [1001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(125), - [1004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1076), - [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [1009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(853), - [1012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(216), - [1015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(848), - [1018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(217), - [1021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(840), - [1024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(839), - [1027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(838), - [1030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(837), - [1033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(836), - [1036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(882), - [1039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(139), - [1042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(139), - [1045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(222), - [1048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(835), - [1051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(834), - [1054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(833), - [1057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(832), - [1060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(496), - [1063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(493), - [1066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(491), - [1069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(205), - [1072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(115), - [1075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(123), - [1078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1072), - [1081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(821), - [1084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(371), - [1087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(819), - [1090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(359), - [1093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(814), - [1096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(806), - [1099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(805), - [1102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(804), - [1105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(803), - [1108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(916), - [1111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(157), - [1114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(157), - [1117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(343), - [1120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(802), - [1123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(801), - [1126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(800), - [1129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(799), - [1132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(512), - [1135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(560), - [1138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(561), - [1141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(230), - [1144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(118), - [1147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(150), - [1150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(1088), - [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [1155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element, 1), - [1157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__element, 1), - [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), - [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), - [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), - [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), - [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), - [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), - [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), - [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), - [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), - [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), - [1179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element, 1, .dynamic_precedence = 100), - [1181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__element, 1, .dynamic_precedence = 100), - [1183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), - [1185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verbatim, 3, .production_id = 1), - [1187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verbatim, 3, .production_id = 1), - [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [1209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__text, 2), - [1211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__text, 2), - [1213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(164), - [1216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), - [1218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 1), - [1220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [1222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 2), - [1224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 2), - [1226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [1228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(167), - [1231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(168), - [1234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [1238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [1240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 1), - [1244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1), - [1246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), - [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [1252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [1256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(178), - [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), - [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), - [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [1271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(185), - [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [1278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [1282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(190), - [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), - [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), - [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), - [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), - [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), - [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), - [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [1331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(214), - [1334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(215), - [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [1341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(218), - [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [1346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), - [1348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(221), - [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [1353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 3), - [1355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comment, 3), - [1357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_image, 2), - [1359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_image, 2), - [1361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collapsed_reference_link, 2), - [1363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collapsed_reference_link, 2), - [1365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_reference_link, 2), - [1367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_reference_link, 2), - [1369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 2), - [1371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 2), - [1373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 3), - [1375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 3), - [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), - [1379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_autolink, 3), - [1381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_autolink, 3), - [1383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_inline, 4), - [1385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_inline, 4), - [1387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_todo, 1), - [1389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_todo, 1), - [1391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math, 4, .production_id = 4), - [1393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math, 4, .production_id = 4), - [1395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emphasis, 4), - [1397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_emphasis, 4), - [1399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strong, 4), - [1401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strong, 4), - [1403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_superscript, 4, .production_id = 5), - [1405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_superscript, 4, .production_id = 5), - [1407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, .production_id = 5), - [1409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, .production_id = 5), - [1411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlighted, 4, .production_id = 5), - [1413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_highlighted, 4, .production_id = 5), - [1415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 4, .production_id = 5), - [1417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 4, .production_id = 5), - [1419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete, 4, .production_id = 5), - [1421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete, 4, .production_id = 5), - [1423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_footnote_reference, 4, .production_id = 6), - [1425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_footnote_reference, 4, .production_id = 6), - [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_label, 3, .production_id = 7), - [1429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_label, 3, .production_id = 7), - [1431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note, 1), - [1433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_note, 1), - [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link_destination, 4), - [1437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link_destination, 4), - [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), - [1441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_inline_attribute, 3), - [1443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_inline_attribute, 3), - [1445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(978), - [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hard_line_break, 2), - [1450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hard_line_break, 2), - [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_with_spaces, 2), - [1454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__comment_with_spaces, 2), - [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collapsed_reference_image, 2), - [1458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collapsed_reference_image, 2), - [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_reference_image, 2), - [1462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_reference_image, 2), - [1464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(994), - [1467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(962), - [1470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2), SHIFT_REPEAT(331), - [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [1475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1010), - [1478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), - [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [1484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1026), - [1487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1042), - [1490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), - [1492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(945), - [1495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1058), - [1498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1074), - [1501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1064), - [1504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_span, 5, .dynamic_precedence = 100, .production_id = 10), - [1506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_span, 5, .dynamic_precedence = 100, .production_id = 10), - [1508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1), SHIFT(1090), - [1511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__curly_bracket_span_fallback, 2), - [1513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__curly_bracket_span_fallback, 2), - [1515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_attribute, 3), - [1517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_attribute, 3), - [1519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_attribute, 4, .production_id = 9), - [1521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_attribute, 4, .production_id = 9), - [1523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element, 2, .dynamic_precedence = 100), - [1525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__element, 2, .dynamic_precedence = 100), - [1527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element, 2), - [1529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__element, 2), - [1531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_without_trailing_space, 1), - [1533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_without_trailing_space, 2), - [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [1587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(1020), - [1590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(956), - [1593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(634), - [1596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), SHIFT_REPEAT(738), - [1599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2), - [1601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1), - [1603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 1, .production_id = 3), - [1605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 1), - [1607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_with_newline, 4, .production_id = 5), - [1609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_with_newline, 3), - [1611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 3), - [1613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value, 3), - [1615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_name, 1), - [1617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2), - [1619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_text, 4, .production_id = 8), - [1621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_text, 4, .production_id = 8), - [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16), - [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), - [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), - [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), - [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), - [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), - [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), - [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), - [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), - [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), - [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), - [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), - [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), - [1737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), - [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), - [1741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__comment_with_newline_repeat1, 2), SHIFT_REPEAT(679), - [1744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_with_newline_repeat1, 2), - [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), - [1748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_with_newline_repeat1, 1), - [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [1754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_description, 3, .production_id = 2), - [1756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_description, 3, .production_id = 2), - [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_description, 4, .production_id = 8), - [1760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_description, 4, .production_id = 8), - [1762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(436), - [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [1767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(436), - [1770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(252), - [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [1775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(252), - [1778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(252), - [1781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(252), - [1784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(254), - [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [1789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(252), - [1792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(252), - [1795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(254), - [1798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(252), - [1801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(252), - [1804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(252), - [1807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(254), - [1810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(263), - [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [1815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(263), - [1818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__curly_bracket_span_begin, 1), SHIFT(528), - [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [1823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(254), - [1826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(254), - [1829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(254), - [1832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(254), - [1835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(254), - [1838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(254), - [1841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(254), - [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [1848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(296), - [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [1853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(294), - [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [1858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(294), - [1861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(294), - [1864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(294), - [1867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(294), - [1870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(294), - [1873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(294), - [1876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(294), - [1879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(294), - [1882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(294), - [1885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__curly_bracket_span_begin, 1), SHIFT(579), - [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [1890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(309), - [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [1895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(309), - [1898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__curly_bracket_span_begin, 1), SHIFT(602), - [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [1905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(296), - [1908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(436), - [1911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(223), - [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [1916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(223), - [1919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(223), - [1922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(223), - [1925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(223), - [1928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(223), - [1931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(223), - [1934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(436), - [1937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(223), - [1940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(223), - [1943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(223), - [1946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(436), - [1949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(355), - [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [1954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(355), - [1957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__curly_bracket_span_begin, 1), SHIFT(557), - [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [1962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(436), - [1965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(436), - [1968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(436), - [1971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(436), - [1974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(436), - [1977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(398), - [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [1982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(398), - [1985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__curly_bracket_span_begin, 1), SHIFT(547), - [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [1990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(386), - [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [1995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(386), - [1998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(386), - [2001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(386), - [2004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(386), - [2007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(386), - [2010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(386), - [2013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(386), - [2016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(386), - [2019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(386), - [2022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(292), - [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [2027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(252), - [2030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(292), - [2033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(401), - [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [2038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(401), - [2041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__curly_bracket_span_begin, 1), SHIFT(546), - [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [2046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(292), - [2049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(292), - [2052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(292), - [2055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__curly_bracket_span_begin, 1), SHIFT(608), - [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [2060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(578), - [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [2065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(578), - [2068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(292), - [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [2073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(564), - [2076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(564), - [2079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(564), - [2082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(564), - [2085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(564), - [2088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(564), - [2091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(564), - [2094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(432), - [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [2099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(432), - [2102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(432), - [2105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(432), - [2108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(432), - [2111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(432), - [2114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(432), - [2117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(564), - [2120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(432), - [2123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(432), - [2126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(432), - [2129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(564), - [2132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(292), - [2135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(564), - [2138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(447), - [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [2143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(447), - [2146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__curly_bracket_span_begin, 1), SHIFT(535), - [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [2151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(292), - [2154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(292), - [2157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(292), - [2160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__curly_bracket_span_begin, 1), SHIFT(536), - [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [2165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(448), - [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [2170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(448), - [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [2175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(490), - [2178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(490), - [2181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(490), - [2184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(490), - [2187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(490), - [2190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(490), - [2193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(490), - [2196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(490), - [2199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(477), - [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [2204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(477), - [2207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1), SHIFT(477), - [2210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1), SHIFT(477), - [2213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1), SHIFT(477), - [2216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1), SHIFT(477), - [2219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1), SHIFT(477), - [2222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1), SHIFT(490), - [2225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(477), - [2228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1), SHIFT(477), - [2231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1), SHIFT(477), - [2234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1), SHIFT(490), - [2237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(229), - [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [2242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(229), - [2245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2), SHIFT(492), - [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [2250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2), SHIFT(492), - [2253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__curly_bracket_span_begin, 1), SHIFT(517), - [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [2258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__curly_bracket_span_begin, 1), SHIFT(513), - [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [2579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key, 1), - [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [2607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_label, 1), - [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [2731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline, 1), - [2733] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), + [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), + [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline, 1, 0, 0), + [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), + [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), + [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), + [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), + [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), + [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), + [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), + [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), + [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), + [511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(867), + [514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(166), + [517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(829), + [520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(194), + [523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(745), + [526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(763), + [529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(764), + [532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(765), + [535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(781), + [538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(814), + [541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(144), + [544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(144), + [547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(177), + [550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(831), + [553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(837), + [556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(207), + [559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(725), + [562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(741), + [565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(451), + [568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(299), + [571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(414), + [574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(200), + [577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(14), + [580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(124), + [583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(959), + [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(869), + [593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(219), + [596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(870), + [599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(220), + [602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(872), + [605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(873), + [608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(874), + [611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(875), + [614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(876), + [617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(877), + [620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(147), + [623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(147), + [626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(227), + [629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(878), + [632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(879), + [635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(228), + [638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(880), + [641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(695), + [644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(482), + [647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(483), + [650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(484), + [653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(198), + [656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(17), + [659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(121), + [662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(986), + [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(699), + [670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(180), + [673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(700), + [676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(183), + [679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(701), + [682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(702), + [685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(703), + [688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(704), + [691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(705), + [694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(706), + [697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(141), + [700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(141), + [703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(188), + [706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(707), + [709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(708), + [712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(191), + [715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(709), + [718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(881), + [721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(519), + [724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(520), + [727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(234), + [730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(229), + [733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(19), + [736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(125), + [739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(1002), + [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(713), + [747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(208), + [750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(714), + [753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(209), + [756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(715), + [759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(716), + [762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(717), + [765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(718), + [768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(719), + [771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(720), + [774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(134), + [777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(134), + [780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(211), + [783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(721), + [786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(722), + [789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(212), + [792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(723), + [795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(724), + [798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(262), + [801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(263), + [804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(264), + [807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(192), + [810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(21), + [813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(123), + [816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(1018), + [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(729), + [824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(221), + [827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(730), + [830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(222), + [833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(731), + [836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(732), + [839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(733), + [842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(734), + [845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(735), + [848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(736), + [851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(138), + [854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(138), + [857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(224), + [860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(737), + [863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(738), + [866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(225), + [869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(739), + [872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(740), + [875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(301), + [878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(302), + [881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(303), + [884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(213), + [887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(23), + [890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(126), + [893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(1034), + [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(747), + [901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(167), + [904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(748), + [907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(168), + [910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(749), + [913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(750), + [916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(751), + [919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(752), + [922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(753), + [925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(754), + [928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(139), + [931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(139), + [934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(170), + [937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(755), + [940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(756), + [943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(171), + [946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(757), + [949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(758), + [952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(340), + [955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(341), + [958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(342), + [961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(226), + [964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(25), + [967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(127), + [970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(1050), + [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(766), + [978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(181), + [981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(767), + [984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(182), + [987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(768), + [990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(769), + [993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(770), + [996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(771), + [999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(772), + [1002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(773), + [1005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(145), + [1008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(145), + [1011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(184), + [1014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(774), + [1017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(775), + [1020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(185), + [1023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(776), + [1026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(777), + [1029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(377), + [1032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(378), + [1035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(379), + [1038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(172), + [1041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(27), + [1044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(129), + [1047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(1066), + [1050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(782), + [1053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(193), + [1056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(783), + [1059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(164), + [1062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(784), + [1065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(785), + [1068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(786), + [1071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(787), + [1074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(788), + [1077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(789), + [1080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(148), + [1083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(148), + [1086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(196), + [1089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(790), + [1092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(791), + [1095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(197), + [1098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(792), + [1101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(793), + [1104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(411), + [1107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(412), + [1110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(413), + [1113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(186), + [1116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(28), + [1119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(130), + [1122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(1082), + [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [1127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(798), + [1130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(442), + [1133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(799), + [1136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(443), + [1139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(800), + [1142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(801), + [1145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(802), + [1148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(803), + [1151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(804), + [1154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(805), + [1157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(162), + [1160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(162), + [1163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(445), + [1166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(806), + [1169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(807), + [1172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(446), + [1175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(808), + [1178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(809), + [1181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(600), + [1184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(601), + [1187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(602), + [1190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(453), + [1193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(120), + [1196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(151), + [1199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(1098), + [1202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element, 1, 0, 0), + [1204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__element, 1, 0, 0), + [1206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), + [1208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), + [1210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), + [1212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), + [1214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), + [1216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), + [1218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [1220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), + [1222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), + [1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), + [1226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element, 1, 100, 0), + [1228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__element, 1, 100, 0), + [1230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), + [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verbatim, 3, 0, 1), + [1234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verbatim, 3, 0, 1), + [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [1238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [1240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [1242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [1256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, 0, 0), + [1258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, 0, 0), + [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [1272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_text, 1, 0, 0), + [1276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_link_text, 1, 0, 0), REDUCE(sym__symbol_fallback, 1, 0, 0), + [1279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_text, 1, 0, 0), REDUCE(sym__symbol_fallback, 1, 0, 0), + [1282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 1, 0, 0), + [1284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1, 0, 0), + [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [1288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 2, 0, 0), + [1290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 2, 0, 0), + [1292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__text, 2, 0, 0), + [1296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__text, 2, 0, 0), + [1298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2, 0, 0), SHIFT_REPEAT(174), + [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [1307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2, 0, 0), SHIFT_REPEAT(178), + [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [1320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [1324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [1326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [1330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2, 0, 0), SHIFT_REPEAT(190), + [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), + [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), + [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), + [1345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2, 0, 0), SHIFT_REPEAT(201), + [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [1350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2, 0, 0), SHIFT_REPEAT(203), + [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [1355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2, 0, 0), SHIFT_REPEAT(205), + [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [1366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), + [1368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), + [1370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2, 0, 0), SHIFT_REPEAT(214), + [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [1379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2, 0, 0), SHIFT_REPEAT(218), + [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [1390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2, 0, 0), SHIFT_REPEAT(223), + [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), + [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), + [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [1403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2, 0, 0), SHIFT_REPEAT(231), + [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [1408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collapsed_reference_link, 2, 0, 0), + [1410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collapsed_reference_link, 2, 0, 0), + [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note, 1, 0, 0), + [1414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_note, 1, 0, 0), + [1416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hard_line_break, 2, 0, 0), + [1418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hard_line_break, 2, 0, 0), + [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_with_spaces, 2, 0, 0), + [1422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__comment_with_spaces, 2, 0, 0), + [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collapsed_reference_image, 2, 0, 0), + [1426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collapsed_reference_image, 2, 0, 0), + [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_reference_image, 2, 0, 0), + [1430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_reference_image, 2, 0, 0), + [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_image, 2, 0, 0), + [1434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_image, 2, 0, 0), + [1436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_reference_link, 2, 0, 0), + [1438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_reference_link, 2, 0, 0), + [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 2, 0, 0), + [1442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 2, 0, 0), + [1444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link_destination, 4, 0, 0), + [1446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link_destination, 4, 0, 0), + [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 3, 0, 0), + [1450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 3, 0, 0), + [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_autolink, 3, 0, 0), + [1454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_autolink, 3, 0, 0), + [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_inline, 4, 0, 0), + [1458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_inline, 4, 0, 0), + [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math, 4, 0, 3), + [1462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math, 4, 0, 3), + [1464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 3, 0, 0), + [1466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comment, 3, 0, 0), + [1468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emphasis, 4, 0, 0), + [1470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_emphasis, 4, 0, 0), + [1472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strong, 4, 0, 0), + [1474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strong, 4, 0, 0), + [1476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_superscript, 4, 0, 4), + [1478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_superscript, 4, 0, 4), + [1480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, 0, 4), + [1482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, 0, 4), + [1484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlighted, 4, 0, 4), + [1486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_highlighted, 4, 0, 4), + [1488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 4, 0, 4), + [1490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 4, 0, 4), + [1492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete, 4, 0, 4), + [1494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete, 4, 0, 4), + [1496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_footnote_reference, 4, 0, 5), + [1498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_footnote_reference, 4, 0, 5), + [1500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_label, 3, 0, 6), + [1502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_label, 3, 0, 6), + [1504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_inline_attribute, 3, 0, 0), + [1506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_inline_attribute, 3, 0, 0), + [1508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, 0, 0), SHIFT(1020), + [1511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_todo, 1, 0, 0), + [1513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_todo, 1, 0, 0), + [1515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, 0, 0), SHIFT(955), + [1518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), + [1520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, 0, 0), SHIFT(1036), + [1523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, 0, 0), SHIFT(1052), + [1526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, 0, 0), SHIFT(1068), + [1529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, 0, 0), SHIFT(1084), + [1532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, 0, 0), SHIFT(972), + [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), + [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [1543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2, 0, 0), SHIFT_REPEAT(449), + [1546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, 0, 0), SHIFT(961), + [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), + [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), + [1553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, 0, 0), SHIFT(988), + [1556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, 0, 0), SHIFT(1004), + [1559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element, 2, 100, 0), + [1561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__element, 2, 100, 0), + [1563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_span, 5, 100, 4), + [1565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_span, 5, 100, 4), + [1567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element, 2, 0, 0), + [1569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__element, 2, 0, 0), + [1571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_without_trailing_space, 1, 0, 0), + [1573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_attribute, 4, 0, 7), + [1575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_attribute, 4, 0, 7), + [1577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_attribute, 3, 0, 0), + [1579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_attribute, 3, 0, 0), + [1581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__curly_bracket_span_fallback, 2, 0, 0), + [1583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__curly_bracket_span_fallback, 2, 0, 0), + [1585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_without_trailing_space, 2, 0, 0), + [1587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, 0, 0), SHIFT(1100), + [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [1598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [1604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [1608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(901), + [1611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(966), + [1614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(645), + [1617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(746), + [1620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2, 0, 0), + [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [1634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [1648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [1656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_with_newline, 4, 0, 4), + [1658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 1, 0, 2), + [1660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 1, 0, 0), + [1662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, 0, 0), + [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value, 3, 0, 0), + [1666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_with_newline, 3, 0, 0), + [1668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 3, 0, 0), + [1670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_name, 1, 0, 0), + [1672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1, 0, 0), + [1674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_text, 4, 0, 0), + [1676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_text, 4, 0, 0), + [1678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [1682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [1684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), + [1686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [1690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), + [1692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [1696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [1698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), + [1700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [1702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), + [1704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), + [1706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [1710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [1718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), + [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [1724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [1726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__comment_with_newline_repeat1, 2, 0, 0), SHIFT_REPEAT(690), + [1729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_with_newline_repeat1, 2, 0, 0), + [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), + [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), + [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [1753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), + [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), + [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), + [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [1781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), + [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [1791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), + [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [1799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), + [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [1803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_with_newline_repeat1, 1, 0, 0), + [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [1809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_description, 3, 0, 0), + [1811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_description, 3, 0, 0), + [1813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_description, 4, 0, 0), + [1815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_description, 4, 0, 0), + [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [1821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2, 0, 0), SHIFT(501), + [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [1826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2, 0, 0), SHIFT(501), + [1829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__curly_bracket_span_begin, 1, 0, 0), SHIFT(592), + [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [1834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1, 0, 0), SHIFT(235), + [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [1839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1, 0, 0), SHIFT(235), + [1842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1, 0, 0), SHIFT(235), + [1845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1, 0, 0), SHIFT(235), + [1848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1, 0, 0), SHIFT(235), + [1851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1, 0, 0), SHIFT(235), + [1854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1, 0, 0), SHIFT(235), + [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [1859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1, 0, 0), SHIFT(235), + [1862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1, 0, 0), SHIFT(235), + [1865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1, 0, 0), SHIFT(235), + [1868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2, 0, 0), SHIFT(245), + [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [1873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2, 0, 0), SHIFT(245), + [1876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__curly_bracket_span_begin, 1, 0, 0), SHIFT(564), + [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [1881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1, 0, 0), SHIFT(268), + [1884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [1886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1, 0, 0), SHIFT(268), + [1889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1, 0, 0), SHIFT(268), + [1892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1, 0, 0), SHIFT(268), + [1895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1, 0, 0), SHIFT(268), + [1898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1, 0, 0), SHIFT(268), + [1901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1, 0, 0), SHIFT(268), + [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [1906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1, 0, 0), SHIFT(268), + [1909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1, 0, 0), SHIFT(268), + [1912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1, 0, 0), SHIFT(268), + [1915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1, 0, 0), SHIFT(265), + [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [1920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2, 0, 0), SHIFT(280), + [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [1925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2, 0, 0), SHIFT(280), + [1928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__curly_bracket_span_begin, 1, 0, 0), SHIFT(580), + [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [1933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1, 0, 0), SHIFT(306), + [1936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [1938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1, 0, 0), SHIFT(306), + [1941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1, 0, 0), SHIFT(306), + [1944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1, 0, 0), SHIFT(306), + [1947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1, 0, 0), SHIFT(306), + [1950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1, 0, 0), SHIFT(306), + [1953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1, 0, 0), SHIFT(306), + [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [1958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1, 0, 0), SHIFT(306), + [1961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1, 0, 0), SHIFT(306), + [1964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1, 0, 0), SHIFT(306), + [1967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2, 0, 0), SHIFT(319), + [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [1972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2, 0, 0), SHIFT(319), + [1975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__curly_bracket_span_begin, 1, 0, 0), SHIFT(565), + [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [1980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1, 0, 0), SHIFT(265), + [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [1985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1, 0, 0), SHIFT(346), + [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [1990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1, 0, 0), SHIFT(346), + [1993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1, 0, 0), SHIFT(346), + [1996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1, 0, 0), SHIFT(346), + [1999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1, 0, 0), SHIFT(346), + [2002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1, 0, 0), SHIFT(346), + [2005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1, 0, 0), SHIFT(346), + [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [2010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1, 0, 0), SHIFT(346), + [2013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1, 0, 0), SHIFT(346), + [2016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1, 0, 0), SHIFT(346), + [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [2021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2, 0, 0), SHIFT(357), + [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [2026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2, 0, 0), SHIFT(357), + [2029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__curly_bracket_span_begin, 1, 0, 0), SHIFT(588), + [2032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [2034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1, 0, 0), SHIFT(265), + [2037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1, 0, 0), SHIFT(265), + [2040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1, 0, 0), SHIFT(265), + [2043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1, 0, 0), SHIFT(383), + [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [2048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1, 0, 0), SHIFT(383), + [2051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1, 0, 0), SHIFT(383), + [2054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1, 0, 0), SHIFT(383), + [2057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1, 0, 0), SHIFT(383), + [2060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1, 0, 0), SHIFT(383), + [2063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1, 0, 0), SHIFT(383), + [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [2068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1, 0, 0), SHIFT(383), + [2071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1, 0, 0), SHIFT(383), + [2074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1, 0, 0), SHIFT(383), + [2077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2, 0, 0), SHIFT(394), + [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [2082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2, 0, 0), SHIFT(394), + [2085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__curly_bracket_span_begin, 1, 0, 0), SHIFT(590), + [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [2090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1, 0, 0), SHIFT(265), + [2093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1, 0, 0), SHIFT(415), + [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [2098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1, 0, 0), SHIFT(415), + [2101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1, 0, 0), SHIFT(415), + [2104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1, 0, 0), SHIFT(415), + [2107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1, 0, 0), SHIFT(415), + [2110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1, 0, 0), SHIFT(415), + [2113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1, 0, 0), SHIFT(415), + [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [2118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1, 0, 0), SHIFT(415), + [2121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1, 0, 0), SHIFT(415), + [2124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1, 0, 0), SHIFT(415), + [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [2129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2, 0, 0), SHIFT(426), + [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [2134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2, 0, 0), SHIFT(426), + [2137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__curly_bracket_span_begin, 1, 0, 0), SHIFT(574), + [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [2142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1, 0, 0), SHIFT(604), + [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [2147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1, 0, 0), SHIFT(604), + [2150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1, 0, 0), SHIFT(604), + [2153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1, 0, 0), SHIFT(604), + [2156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1, 0, 0), SHIFT(604), + [2159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1, 0, 0), SHIFT(604), + [2162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1, 0, 0), SHIFT(604), + [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [2167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1, 0, 0), SHIFT(604), + [2170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1, 0, 0), SHIFT(604), + [2173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1, 0, 0), SHIFT(604), + [2176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2, 0, 0), SHIFT(527), + [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [2181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2, 0, 0), SHIFT(527), + [2184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__curly_bracket_span_begin, 1, 0, 0), SHIFT(616), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [2191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1, 0, 0), SHIFT(300), + [2194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1, 0, 0), SHIFT(300), + [2197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1, 0, 0), SHIFT(300), + [2200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1, 0, 0), SHIFT(300), + [2203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1, 0, 0), SHIFT(300), + [2206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1, 0, 0), SHIFT(300), + [2209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1, 0, 0), SHIFT(300), + [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [2214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1, 0, 0), SHIFT(300), + [2217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1, 0, 0), SHIFT(300), + [2220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1, 0, 0), SHIFT(300), + [2223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1, 0, 0), SHIFT(265), + [2226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1, 0, 0), SHIFT(265), + [2229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2, 0, 0), SHIFT(344), + [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [2234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2, 0, 0), SHIFT(344), + [2237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__curly_bracket_span_begin, 1, 0, 0), SHIFT(563), + [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [2242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1, 0, 0), SHIFT(265), + [2245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2, 0, 0), SHIFT(417), + [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [2250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2, 0, 0), SHIFT(417), + [2253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1, 0, 0), SHIFT(454), + [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [2258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1, 0, 0), SHIFT(454), + [2261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1, 0, 0), SHIFT(454), + [2264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1, 0, 0), SHIFT(454), + [2267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1, 0, 0), SHIFT(454), + [2270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1, 0, 0), SHIFT(454), + [2273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1, 0, 0), SHIFT(454), + [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [2278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1, 0, 0), SHIFT(454), + [2281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1, 0, 0), SHIFT(454), + [2284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1, 0, 0), SHIFT(454), + [2287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2, 0, 0), SHIFT(464), + [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [2292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2, 0, 0), SHIFT(464), + [2295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__curly_bracket_span_begin, 1, 0, 0), SHIFT(556), + [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [2300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1, 0, 0), SHIFT(265), + [2303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__curly_bracket_span_begin, 1, 0, 0), SHIFT(571), + [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [2308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1, 0, 0), SHIFT(488), + [2311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1, 0, 0), SHIFT(488), + [2314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1, 0, 0), SHIFT(488), + [2317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1, 0, 0), SHIFT(488), + [2320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1, 0, 0), SHIFT(488), + [2323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1, 0, 0), SHIFT(488), + [2326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1, 0, 0), SHIFT(488), + [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [2331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1, 0, 0), SHIFT(488), + [2334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1, 0, 0), SHIFT(488), + [2337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1, 0, 0), SHIFT(488), + [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [2378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key, 1, 0, 0), + [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [2678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_label, 1, 0, 0), + [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [2726] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [2742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline, 1, 0, 0), + [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), }; enum ts_external_scanner_symbol_identifiers { @@ -39610,7 +41013,7 @@ enum ts_external_scanner_symbol_identifiers { ts_external_token__parens_span_end = 19, ts_external_token__curly_bracket_span_mark_begin = 20, ts_external_token__curly_bracket_span_end = 21, - ts_external_token__square_bracket_span_begin = 22, + ts_external_token__square_bracket_span_mark_begin = 22, ts_external_token__square_bracket_span_end = 23, ts_external_token__in_fallback = 24, ts_external_token__non_whitespace_check = 25, @@ -39640,7 +41043,7 @@ static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { [ts_external_token__parens_span_end] = sym__parens_span_end, [ts_external_token__curly_bracket_span_mark_begin] = sym__curly_bracket_span_mark_begin, [ts_external_token__curly_bracket_span_end] = sym__curly_bracket_span_end, - [ts_external_token__square_bracket_span_begin] = sym__square_bracket_span_begin, + [ts_external_token__square_bracket_span_mark_begin] = sym__square_bracket_span_mark_begin, [ts_external_token__square_bracket_span_end] = sym__square_bracket_span_end, [ts_external_token__in_fallback] = sym__in_fallback, [ts_external_token__non_whitespace_check] = sym__non_whitespace_check, @@ -39671,7 +41074,7 @@ static const bool ts_external_scanner_states[52][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__parens_span_end] = true, [ts_external_token__curly_bracket_span_mark_begin] = true, [ts_external_token__curly_bracket_span_end] = true, - [ts_external_token__square_bracket_span_begin] = true, + [ts_external_token__square_bracket_span_mark_begin] = true, [ts_external_token__square_bracket_span_end] = true, [ts_external_token__in_fallback] = true, [ts_external_token__non_whitespace_check] = true, @@ -39686,19 +41089,19 @@ static const bool ts_external_scanner_states[52][EXTERNAL_TOKEN_COUNT] = { }, [4] = { [ts_external_token__verbatim_begin] = true, - [ts_external_token_subscript_end] = true, + [ts_external_token_superscript_end] = true, }, [5] = { [ts_external_token__verbatim_begin] = true, - [ts_external_token_superscript_end] = true, + [ts_external_token_subscript_end] = true, }, [6] = { [ts_external_token__verbatim_begin] = true, - [ts_external_token_insert_end] = true, + [ts_external_token_highlighted_end] = true, }, [7] = { [ts_external_token__verbatim_begin] = true, - [ts_external_token_highlighted_end] = true, + [ts_external_token_insert_end] = true, }, [8] = { [ts_external_token__verbatim_begin] = true, @@ -39714,22 +41117,21 @@ static const bool ts_external_scanner_states[52][EXTERNAL_TOKEN_COUNT] = { }, [11] = { [ts_external_token__verbatim_begin] = true, - [ts_external_token_emphasis_end] = true, + [ts_external_token__square_bracket_span_end] = true, [ts_external_token__non_whitespace_check] = true, }, [12] = { [ts_external_token__verbatim_begin] = true, - [ts_external_token_delete_end] = true, + [ts_external_token_emphasis_end] = true, [ts_external_token__non_whitespace_check] = true, }, [13] = { [ts_external_token__verbatim_begin] = true, - [ts_external_token_insert_end] = true, [ts_external_token__non_whitespace_check] = true, }, [14] = { [ts_external_token__verbatim_begin] = true, - [ts_external_token_highlighted_end] = true, + [ts_external_token_delete_end] = true, [ts_external_token__non_whitespace_check] = true, }, [15] = { @@ -39739,11 +41141,12 @@ static const bool ts_external_scanner_states[52][EXTERNAL_TOKEN_COUNT] = { }, [16] = { [ts_external_token__verbatim_begin] = true, + [ts_external_token_subscript_end] = true, [ts_external_token__non_whitespace_check] = true, }, [17] = { [ts_external_token__verbatim_begin] = true, - [ts_external_token_subscript_end] = true, + [ts_external_token_highlighted_end] = true, [ts_external_token__non_whitespace_check] = true, }, [18] = { @@ -39753,14 +41156,14 @@ static const bool ts_external_scanner_states[52][EXTERNAL_TOKEN_COUNT] = { }, [19] = { [ts_external_token__verbatim_begin] = true, - [ts_external_token__square_bracket_span_end] = true, + [ts_external_token_insert_end] = true, [ts_external_token__non_whitespace_check] = true, }, [20] = { [ts_external_token__curly_bracket_span_end] = true, }, [21] = { - [ts_external_token__square_bracket_span_begin] = true, + [ts_external_token__parens_span_mark_begin] = true, [ts_external_token__in_fallback] = true, }, [22] = { @@ -39772,92 +41175,92 @@ static const bool ts_external_scanner_states[52][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__in_fallback] = true, }, [24] = { - [ts_external_token__superscript_mark_begin] = true, + [ts_external_token__curly_bracket_span_mark_begin] = true, [ts_external_token__in_fallback] = true, }, [25] = { - [ts_external_token__subscript_mark_begin] = true, + [ts_external_token__superscript_mark_begin] = true, [ts_external_token__in_fallback] = true, }, [26] = { - [ts_external_token__highlighted_mark_begin] = true, + [ts_external_token__subscript_mark_begin] = true, [ts_external_token__in_fallback] = true, }, [27] = { - [ts_external_token__insert_mark_begin] = true, + [ts_external_token__highlighted_mark_begin] = true, [ts_external_token__in_fallback] = true, }, [28] = { - [ts_external_token__delete_mark_begin] = true, + [ts_external_token__insert_mark_begin] = true, [ts_external_token__in_fallback] = true, }, [29] = { - [ts_external_token__parens_span_mark_begin] = true, + [ts_external_token__delete_mark_begin] = true, [ts_external_token__in_fallback] = true, }, [30] = { - [ts_external_token__curly_bracket_span_mark_begin] = true, + [ts_external_token__square_bracket_span_mark_begin] = true, [ts_external_token__in_fallback] = true, }, [31] = { - [ts_external_token__verbatim_end] = true, + [ts_external_token_highlighted_end] = true, }, [32] = { - [ts_external_token_emphasis_end] = true, + [ts_external_token__strong_mark_begin] = true, }, [33] = { - [ts_external_token_strong_end] = true, + [ts_external_token__verbatim_end] = true, }, [34] = { - [ts_external_token_superscript_end] = true, + [ts_external_token__parens_span_end] = true, }, [35] = { - [ts_external_token_subscript_end] = true, + [ts_external_token__square_bracket_span_end] = true, }, [36] = { - [ts_external_token_highlighted_end] = true, + [ts_external_token_emphasis_end] = true, }, [37] = { - [ts_external_token_insert_end] = true, + [ts_external_token_strong_end] = true, }, [38] = { - [ts_external_token_delete_end] = true, + [ts_external_token_superscript_end] = true, }, [39] = { - [ts_external_token__square_bracket_span_end] = true, + [ts_external_token_subscript_end] = true, }, [40] = { - [ts_external_token__parens_span_end] = true, + [ts_external_token__superscript_mark_begin] = true, }, [41] = { - [ts_external_token__verbatim_content] = true, + [ts_external_token_insert_end] = true, }, [42] = { - [ts_external_token__curly_bracket_span_mark_begin] = true, + [ts_external_token__subscript_mark_begin] = true, }, [43] = { - [ts_external_token__parens_span_mark_begin] = true, + [ts_external_token_delete_end] = true, }, [44] = { - [ts_external_token__square_bracket_span_begin] = true, + [ts_external_token__highlighted_mark_begin] = true, }, [45] = { - [ts_external_token__delete_mark_begin] = true, + [ts_external_token__insert_mark_begin] = true, }, [46] = { - [ts_external_token__insert_mark_begin] = true, + [ts_external_token__parens_span_mark_begin] = true, }, [47] = { - [ts_external_token__highlighted_mark_begin] = true, + [ts_external_token__delete_mark_begin] = true, }, [48] = { - [ts_external_token__subscript_mark_begin] = true, + [ts_external_token__square_bracket_span_mark_begin] = true, }, [49] = { - [ts_external_token__superscript_mark_begin] = true, + [ts_external_token__verbatim_content] = true, }, [50] = { - [ts_external_token__strong_mark_begin] = true, + [ts_external_token__curly_bracket_span_mark_begin] = true, }, [51] = { [ts_external_token__emphasis_mark_begin] = true, @@ -39873,13 +41276,15 @@ bool tree_sitter_djot_inline_external_scanner_scan(void *, TSLexer *, const bool unsigned tree_sitter_djot_inline_external_scanner_serialize(void *, char *); void tree_sitter_djot_inline_external_scanner_deserialize(void *, const char *, unsigned); -#ifdef _WIN32 +#ifdef TREE_SITTER_HIDE_SYMBOLS +#define TS_PUBLIC +#elif defined(_WIN32) #define TS_PUBLIC __declspec(dllexport) #else #define TS_PUBLIC __attribute__((visibility("default"))) #endif -TS_PUBLIC const TSLanguage *tree_sitter_djot_inline() { +TS_PUBLIC const TSLanguage *tree_sitter_djot_inline(void) { static const TSLanguage language = { .version = LANGUAGE_VERSION, .symbol_count = SYMBOL_COUNT, diff --git a/tree-sitter-djot-inline/src/scanner.c b/tree-sitter-djot-inline/src/scanner.c index 37eb230..968e44f 100644 --- a/tree-sitter-djot-inline/src/scanner.c +++ b/tree-sitter-djot-inline/src/scanner.c @@ -90,6 +90,13 @@ typedef struct { typedef struct { Array(Element *) * open_elements; + + // Set to true when a bracket fallback is found inside an element, + // for example in `*[*` the `[` will set it to true. + // Set to false when an element is opened again. + // This is used to detect `*[*](y)` where we'll block elements inside + // `( )` if we can scan the whole inline link. + uint8_t fallback_bracket_inside_element; } Scanner; #ifdef DEBUG @@ -314,12 +321,43 @@ static bool scan_span_end(TSLexer *lexer, char marker, return scan_bracketed_span_end(lexer, marker); } +static bool scan_inline_image_url(TSLexer *lexer, Element *top_element) { + // The `(` has already been scanned, now we should check for + // an ending `)`. It can also be escaped. + while (!lexer->eof(lexer)) { + switch (lexer->lookahead) { + case '\\': + advance(lexer); + break; + case ')': + return true; + default: + break; + } + advance(lexer); + } + return false; +} + static bool mark_span_begin(Scanner *s, TSLexer *lexer, const bool *valid_symbols, ElementType element, TokenType token, char marker) { // If IN_FALLBACK is valid then it means we're processing the // `_symbol_fallback` branch (see `grammar.js`). if (valid_symbols[IN_FALLBACK]) { + Element *top = peek_element(s); + if (element == PARENS_SPAN) { + // Should scan ahead and if there's a valid inline link we should not + // allow the fallback to be parsed (favoring the link). + if (!s->fallback_bracket_inside_element && + scan_inline_image_url(lexer, top)) { + return false; + } + } + if (top && element == SQUARE_BRACKET_SPAN) { + s->fallback_bracket_inside_element = 1; + } + // If there's multiple valid opening spans, for example: // // {_ {_ a_ @@ -335,8 +373,9 @@ static bool mark_span_begin(Scanner *s, TSLexer *lexer, // // _a _b_ a_ // - // If we issue an error here at `_b` then we won't find the nested emphasis. - // The solution i found was to do the check when closing the span instead. + // If we issue an error here at `_b` then we won't find the nested + // emphasis. The solution i found was to do the check when closing the + // span instead. Element *open = find_element(s, element); if (open != NULL) { ++open->data; @@ -346,6 +385,7 @@ static bool mark_span_begin(Scanner *s, TSLexer *lexer, lexer->result_symbol = token; return true; } else { + s->fallback_bracket_inside_element = 0; lexer->mark_end(lexer); lexer->result_symbol = token; push_element(s, element, 0); @@ -360,7 +400,8 @@ static bool parse_span_end(Scanner *s, TSLexer *lexer, ElementType element, // // _a *b_ // - // The `*` isn't allowed to open a span, and that branch should not be valid. + // The `*` isn't allowed to open a span, and that branch should not be + // valid. Element *top = peek_element(s); if (!top || top->type != element) { return false; @@ -511,8 +552,8 @@ bool tree_sitter_djot_inline_external_scanner_scan(void *payload, return true; } - // There's no overlap of leading characters that the scanner needs to manage, - // so we can hide all individual character checks inside these parse + // There's no overlap of leading characters that the scanner needs to + // manage, so we can hide all individual character checks inside these parse // functions. if (parse_verbatim(s, lexer, valid_symbols)) { return true; @@ -551,7 +592,10 @@ bool tree_sitter_djot_inline_external_scanner_scan(void *payload, return false; } -void init(Scanner *s) { array_init(s->open_elements); } +void init(Scanner *s) { + array_init(s->open_elements); + s->fallback_bracket_inside_element = 0; +} void *tree_sitter_djot_inline_external_scanner_create() { Scanner *s = (Scanner *)ts_malloc(sizeof(Scanner)); @@ -570,6 +614,7 @@ unsigned tree_sitter_djot_inline_external_scanner_serialize(void *payload, char *buffer) { Scanner *s = (Scanner *)payload; unsigned size = 0; + buffer[size++] = (char)s->fallback_bracket_inside_element; for (size_t i = 0; i < s->open_elements->size; ++i) { Element *e = *array_get(s->open_elements, i); @@ -586,6 +631,7 @@ void tree_sitter_djot_inline_external_scanner_deserialize(void *payload, init(s); if (length > 0) { size_t size = 0; + s->fallback_bracket_inside_element = (uint8_t)buffer[size++]; while (size < length) { ElementType type = (ElementType)buffer[size++]; @@ -634,22 +680,19 @@ static char *token_type_s(TokenType t) { return "DELETE_MARK_BEGIN"; case DELETE_END: return "DELETE_END"; - case IMAGE_DESCRIPTION_MARK_BEGIN: - return "IMAGE_DESCRIPTION_MARK_BEGIN"; - case IMAGE_DESCRIPTION_END: - return "IMAGE_DESCRIPTION_END"; - case SQUARE_BRACKET_SPAN_MARK_BEGIN: - return "SQUARE_BRACKET_SPAN_MARK_BEGIN"; - case SQUARE_BRACKET_SPAN_END: - return "SQUARE_BRACKET_SPAN_END"; + + case PARENS_SPAN_MARK_BEGIN: + return "PARENS_SPAN_MARK_BEGIN"; + case PARENS_SPAN_END: + return "PARENS_SPAN_END"; case CURLY_BRACKET_SPAN_MARK_BEGIN: return "CURLY_BRACKET_SPAN_MARK_BEGIN"; case CURLY_BRACKET_SPAN_END: return "CURLY_BRACKET_SPAN_END"; - case FOOTNOTE_MARKER_MARK_BEGIN: - return "FOOTNOTE_MARKER_MARK_BEGIN"; - case FOOTNOTE_MARKER_END: - return "FOOTNOTE_MARKER_END"; + case SQUARE_BRACKET_SPAN_MARK_BEGIN: + return "SQUARE_BRACKET_SPAN_MARK_BEGIN"; + case SQUARE_BRACKET_SPAN_END: + return "SQUARE_BRACKET_SPAN_END"; case IN_FALLBACK: return "IN_FALLBACK"; @@ -681,18 +724,18 @@ static char *element_type_s(ElementType t) { return "INSERT"; case DELETE: return "DELETE"; - case IMAGE_DESCRIPTION: - return "IMAGE_DESCRIPTION"; + case PARENS_SPAN: + return "PARENS_SPAN"; case SQUARE_BRACKET_SPAN: return "SQUARE_BRACKET_SPAN"; case CURLY_BRACKET_SPAN: return "CURLY_BRACKET_SPAN"; - case FOOTNOTE_MARKER: - return "FOOTNOTE_MARKER"; } } static void dump_scanner(Scanner *s) { + printf("fallback_bracket_inside_element: %u\n", + s->fallback_bracket_inside_element); printf("--- Open elements: %u (last -> first)\n", s->open_elements->size); for (size_t i = 0; i < s->open_elements->size; ++i) { Element *e = *array_get(s->open_elements, i); diff --git a/tree-sitter-djot-inline/src/tree_sitter/alloc.h b/tree-sitter-djot-inline/src/tree_sitter/alloc.h index 1f4466d..1abdd12 100644 --- a/tree-sitter-djot-inline/src/tree_sitter/alloc.h +++ b/tree-sitter-djot-inline/src/tree_sitter/alloc.h @@ -12,10 +12,10 @@ extern "C" { // Allow clients to override allocation functions #ifdef TREE_SITTER_REUSE_ALLOCATOR -extern void *(*ts_current_malloc)(size_t); -extern void *(*ts_current_calloc)(size_t, size_t); -extern void *(*ts_current_realloc)(void *, size_t); -extern void (*ts_current_free)(void *); +extern void *(*ts_current_malloc)(size_t size); +extern void *(*ts_current_calloc)(size_t count, size_t size); +extern void *(*ts_current_realloc)(void *ptr, size_t size); +extern void (*ts_current_free)(void *ptr); #ifndef ts_malloc #define ts_malloc ts_current_malloc diff --git a/tree-sitter-djot-inline/src/tree_sitter/array.h b/tree-sitter-djot-inline/src/tree_sitter/array.h index 186ba67..a17a574 100644 --- a/tree-sitter-djot-inline/src/tree_sitter/array.h +++ b/tree-sitter-djot-inline/src/tree_sitter/array.h @@ -14,6 +14,7 @@ extern "C" { #include #ifdef _MSC_VER +#pragma warning(push) #pragma warning(disable : 4101) #elif defined(__GNUC__) || defined(__clang__) #pragma GCC diagnostic push @@ -66,9 +67,12 @@ extern "C" { /// Increase the array's size by `count` elements. /// New elements are zero-initialized. #define array_grow_by(self, count) \ - (_array__grow((Array *)(self), count, array_elem_size(self)), \ - memset((self)->contents + (self)->size, 0, (count) * array_elem_size(self)), \ - (self)->size += (count)) + do { \ + if ((count) == 0) break; \ + _array__grow((Array *)(self), count, array_elem_size(self)); \ + memset((self)->contents + (self)->size, 0, (count) * array_elem_size(self)); \ + (self)->size += (count); \ + } while (0) /// Append all elements from one array to the end of another. #define array_push_all(self, other) \ @@ -275,7 +279,7 @@ static inline void _array__splice(Array *self, size_t element_size, #define _compare_int(a, b) ((int)*(a) - (int)(b)) #ifdef _MSC_VER -#pragma warning(default : 4101) +#pragma warning(pop) #elif defined(__GNUC__) || defined(__clang__) #pragma GCC diagnostic pop #endif diff --git a/tree-sitter-djot-inline/src/tree_sitter/parser.h b/tree-sitter-djot-inline/src/tree_sitter/parser.h index 17b4fde..799f599 100644 --- a/tree-sitter-djot-inline/src/tree_sitter/parser.h +++ b/tree-sitter-djot-inline/src/tree_sitter/parser.h @@ -47,6 +47,7 @@ struct TSLexer { uint32_t (*get_column)(TSLexer *); bool (*is_at_included_range_start)(const TSLexer *); bool (*eof)(const TSLexer *); + void (*log)(const TSLexer *, const char *, ...); }; typedef enum { @@ -86,6 +87,11 @@ typedef union { } entry; } TSParseActionEntry; +typedef struct { + int32_t start; + int32_t end; +} TSCharacterRange; + struct TSLanguage { uint32_t version; uint32_t symbol_count; @@ -125,6 +131,24 @@ struct TSLanguage { const TSStateId *primary_state_ids; }; +static inline bool set_contains(TSCharacterRange *ranges, uint32_t len, int32_t lookahead) { + uint32_t index = 0; + uint32_t size = len - index; + while (size > 1) { + uint32_t half_size = size / 2; + uint32_t mid_index = index + half_size; + TSCharacterRange *range = &ranges[mid_index]; + if (lookahead >= range->start && lookahead <= range->end) { + return true; + } else if (lookahead > range->end) { + index = mid_index; + } + size -= half_size; + } + TSCharacterRange *range = &ranges[index]; + return (lookahead >= range->start && lookahead <= range->end); +} + /* * Lexer Macros */ @@ -154,6 +178,17 @@ struct TSLanguage { goto next_state; \ } +#define ADVANCE_MAP(...) \ + { \ + static const uint16_t map[] = { __VA_ARGS__ }; \ + for (uint32_t i = 0; i < sizeof(map) / sizeof(map[0]); i += 2) { \ + if (map[i] == lookahead) { \ + state = map[i + 1]; \ + goto next_state; \ + } \ + } \ + } + #define SKIP(state_value) \ { \ skip = true; \ @@ -203,14 +238,15 @@ struct TSLanguage { } \ }} -#define REDUCE(symbol_val, child_count_val, ...) \ - {{ \ - .reduce = { \ - .type = TSParseActionTypeReduce, \ - .symbol = symbol_val, \ - .child_count = child_count_val, \ - __VA_ARGS__ \ - }, \ +#define REDUCE(symbol_name, children, precedence, prod_id) \ + {{ \ + .reduce = { \ + .type = TSParseActionTypeReduce, \ + .symbol = symbol_name, \ + .child_count = children, \ + .dynamic_precedence = precedence, \ + .production_id = prod_id \ + }, \ }} #define RECOVER() \ diff --git a/tree-sitter-djot-inline/test/corpus/syntax.txt b/tree-sitter-djot-inline/test/corpus/syntax.txt index 391f4cd..41daf61 100644 --- a/tree-sitter-djot-inline/test/corpus/syntax.txt +++ b/tree-sitter-djot-inline/test/corpus/syntax.txt @@ -170,6 +170,18 @@ No \{+insert\*} (backslash_escape) (backslash_escape)) +=============================================================================== +Image: inline with nested emphasis +=============================================================================== +![descr](1_2_3_4_5) + +------------------------------------------------------------------------------- + +(inline + (inline_image + (image_description) + (inline_link_destination))) + =============================================================================== Image: inline =============================================================================== @@ -218,56 +230,122 @@ Image: full reference (link_label))) =============================================================================== -Image: precedence +Image: inline precedence 1 =============================================================================== ![x *](y)* -![x *][y]* +------------------------------------------------------------------------------- -![x *][]* +(inline + (inline_image + (image_description) + (inline_link_destination))) +=============================================================================== +Image: inline precedence 2 +:skip +=============================================================================== *![*](y) -*![*][y] +------------------------------------------------------------------------------- -*![*][] +(inline + (strong + (strong_begin) + (content) + (strong_end))) +=============================================================================== +Image: inline precedence 3 +=============================================================================== *![x](y*) -*![x][y*] - ------------------------------------------------------------------------------- (inline - (inline_image - (image_description) - (inline_link_destination)) - (full_reference_image - (image_description) - (link_label)) - (collapsed_reference_image - (image_description)) (strong (strong_begin) (content) - (strong_end)) + (strong_end))) + +=============================================================================== +Image: full precedence 1 +=============================================================================== +![x *][y]* + +------------------------------------------------------------------------------- + +(inline + (full_reference_image + (image_description) + (link_label))) + +=============================================================================== +Image: full precedence 2 +:skip +=============================================================================== +*![*][y] + +------------------------------------------------------------------------------- + +(inline (strong (strong_begin) (content) - (strong_end)) + (strong_end))) + +=============================================================================== +Image: full precedence 3 +=============================================================================== +*![x][y*] + +------------------------------------------------------------------------------- + +(inline (strong (strong_begin) (content) - (strong_end)) + (strong_end))) + +=============================================================================== +Image: collapsed precedence 1 +=============================================================================== +![x *][]* + +------------------------------------------------------------------------------- + +(inline + (collapsed_reference_image + (image_description))) + +=============================================================================== +Image: collapsed precedence 2 +:skip +=============================================================================== +*![*][] + +------------------------------------------------------------------------------- + +(inline (strong (strong_begin) (content) - (strong_end)) + (strong_end))) + +=============================================================================== +Image: collapsed precedence 3 +=============================================================================== +*![x][*] + +------------------------------------------------------------------------------- + +(inline (strong (strong_begin) (content) (strong_end))) + =============================================================================== Image: inline =============================================================================== @@ -975,6 +1053,18 @@ With [link](/url) ------------------------------------------------------------------------------- +(inline + (inline_link + (link_text) + (inline_link_destination))) + +=============================================================================== +Link: inline with nested emphasis +=============================================================================== +With [link](1_2_3_4_5) + +------------------------------------------------------------------------------- + (inline (inline_link (link_text) @@ -1055,51 +1145,128 @@ With [a reference][ref] (link_label))) =============================================================================== -Link: precedence +Link: empty text inline +=============================================================================== +[](y) + +------------------------------------------------------------------------------- + +(inline + (inline_link + (link_text) + (inline_link_destination))) + +=============================================================================== +Link: inline precedence 1 =============================================================================== [x *](y)* -[x *][y]* +------------------------------------------------------------------------------- -[x *][]* +(inline + (inline_link + (link_text) + (inline_link_destination))) +=============================================================================== +Link: inline precedence 2 +:skip +=============================================================================== *[*](y) -*[*][y] +------------------------------------------------------------------------------- -*[*][] +(inline + (strong + (strong_begin) + (content) + (strong_end))) +=============================================================================== +Link: inline precedence 3 +=============================================================================== *[x](y*) -*[x][y*] - ------------------------------------------------------------------------------- (inline - (inline_link - (link_text) - (inline_link_destination)) - (full_reference_link - (link_text) - (link_label)) - (collapsed_reference_link - (link_text)) (strong (strong_begin) (content) - (strong_end)) + (strong_end))) + +=============================================================================== +Link: full precedence 1 +=============================================================================== +[x *][y]* + +------------------------------------------------------------------------------- + +(inline + (full_reference_link + (link_text) + (link_label))) + +=============================================================================== +Link: full precedence 2 +:skip +=============================================================================== +*[*][y] + +------------------------------------------------------------------------------- + +(inline (strong (strong_begin) (content) - (strong_end)) + (strong_end))) + +=============================================================================== +Link: full precedence 3 +=============================================================================== +*[x][y*] + +------------------------------------------------------------------------------- + +(inline (strong (strong_begin) (content) - (strong_end)) + (strong_end))) + +=============================================================================== +Link: collapsed precedence 1 +=============================================================================== +[x *][]* + +------------------------------------------------------------------------------- + +(inline + (collapsed_reference_link + (link_text))) + +=============================================================================== +Link: collapsed precedence 2 +:skip +=============================================================================== +*[*][] + +------------------------------------------------------------------------------- + +(inline (strong (strong_begin) (content) - (strong_end)) + (strong_end))) + +=============================================================================== +Link: collapsed precedence 3 +=============================================================================== +*[x][*] + +------------------------------------------------------------------------------- + +(inline (strong (strong_begin) (content) diff --git a/tree-sitter-djot-inline/tree-sitter.json b/tree-sitter-djot-inline/tree-sitter.json new file mode 100644 index 0000000..71341e8 --- /dev/null +++ b/tree-sitter-djot-inline/tree-sitter.json @@ -0,0 +1,34 @@ +{ + "grammars": [ + { + "name": "djot-inline", + "camelcase": "DjotInline", + "scope": "text.djot_inline", + "path": ".", + "file-types": null, + "highlights": [ + "queries/highlights.scm" + ], + "injections": [ + "queries/injections.scm" + ], + "injection-regex": "djot_inline" + } + ], + "metadata": { + "version": "1.0.0", + "license": "ISC", + "description": "", + "links": { + "repository": "https://github.com/tree-sitter/tree-sitter-djot-inline" + } + }, + "bindings": { + "c": true, + "go": true, + "node": true, + "python": true, + "rust": true, + "swift": true + } +} From 29ee257231919f40a4c0f4f3a37a57c8d8caaad8 Mon Sep 17 00:00:00 2001 From: Jonas Hietala Date: Thu, 9 Jan 2025 11:03:33 +0100 Subject: [PATCH 27/46] refactor: Separate scanning and parsing end markers (except verbatim) --- tree-sitter-djot-inline/src/scanner.c | 195 ++++++++++++++++++-------- 1 file changed, 134 insertions(+), 61 deletions(-) diff --git a/tree-sitter-djot-inline/src/scanner.c b/tree-sitter-djot-inline/src/scanner.c index 968e44f..62a9531 100644 --- a/tree-sitter-djot-inline/src/scanner.c +++ b/tree-sitter-djot-inline/src/scanner.c @@ -92,9 +92,9 @@ typedef struct { Array(Element *) * open_elements; // Set to true when a bracket fallback is found inside an element, - // for example in `*[*` the `[` will set it to true. + // for example in `*[` the `[` will set it to true. // Set to false when an element is opened again. - // This is used to detect `*[*](y)` where we'll block elements inside + // This is used to detect `*[x](y*)` where we'll block elements inside // `( )` if we can scan the whole inline link. uint8_t fallback_bracket_inside_element; } Scanner; @@ -171,6 +171,56 @@ static Element *peek_element(Scanner *s) { } } +static SpanType element_span_type(ElementType type) { + switch (type) { + case VERBATIM: + // NOTE not supported or used + return SpanSingle; + case EMPHASIS: + case STRONG: + return SpanBracketedAndSingleNoWhitespace; + case SUPERSCRIPT: + case SUBSCRIPT: + return SpanBracketedAndSingle; + case HIGHLIGHTED: + case INSERT: + case DELETE: + return SpanBracketed; + case PARENS_SPAN: + case CURLY_BRACKET_SPAN: + case SQUARE_BRACKET_SPAN: + return SpanSingle; + } +} + +static char element_marker(ElementType type) { + switch (type) { + case VERBATIM: + // NOTE not supported or used + return '`'; + case EMPHASIS: + return '_'; + case STRONG: + return '*'; + case SUPERSCRIPT: + return '^'; + case SUBSCRIPT: + return '~'; + case HIGHLIGHTED: + return '='; + case INSERT: + return '+'; + case DELETE: + return '-'; + case PARENS_SPAN: + return ')'; + case CURLY_BRACKET_SPAN: + return '}'; + case SQUARE_BRACKET_SPAN: + return ']'; + } +} + static bool parse_verbatim_content(Scanner *s, TSLexer *lexer) { uint8_t ticks = 0; Element *top = peek_element(s); @@ -321,7 +371,52 @@ static bool scan_span_end(TSLexer *lexer, char marker, return scan_bracketed_span_end(lexer, marker); } -static bool scan_inline_image_url(TSLexer *lexer, Element *top_element) { +// Scan a span ending token, either `_` or `_}`. +static bool scan_span_end_element(Scanner *s, TSLexer *lexer, + ElementType element) { + // Only close the topmost element, so in: + // + // _a *b_ + // + // The `*` isn't allowed to open a span, and that branch should not be + // valid. + Element *top = peek_element(s); + if (!top || top->type != element) { + return false; + } + // If we've chosen any fallback symbols inside the span then we + // should not accept the span. + if (top->data > 0) { + return false; + } + + char marker = element_marker(element); + switch (element_span_type(element)) { + case SpanSingle: + if (!scan_single_span_end(lexer, marker)) { + return false; + } + break; + case SpanBracketed: + if (!scan_bracketed_span_end(lexer, marker)) { + return false; + } + break; + case SpanBracketedAndSingle: + if (!scan_span_end(lexer, marker, false)) { + return false; + } + break; + case SpanBracketedAndSingleNoWhitespace: + if (!scan_span_end(lexer, marker, true)) { + return false; + } + break; + } + return true; +} + +static bool scan_inline_link_destination(TSLexer *lexer, Element *top_element) { // The `(` has already been scanned, now we should check for // an ending `)`. It can also be escaped. while (!lexer->eof(lexer)) { @@ -341,16 +436,34 @@ static bool scan_inline_image_url(TSLexer *lexer, Element *top_element) { static bool mark_span_begin(Scanner *s, TSLexer *lexer, const bool *valid_symbols, ElementType element, - TokenType token, char marker) { + TokenType token) { + Element *top = peek_element(s); + // If IN_FALLBACK is valid then it means we're processing the // `_symbol_fallback` branch (see `grammar.js`). if (valid_symbols[IN_FALLBACK]) { - Element *top = peek_element(s); + // There's a challenge when we have multiple elements inside an inline link: + // + // [x](a_b_c_d_e) + // + // Because of the dynamic precedence treesitter will not parse this as a + // link but as some fallback characters and then some emphasis. + // + // To prevent this we don't allow the parsing of `(` when it's a fallback + // symbol if we can scan ahead and see that we should be able to parse it as + // a link, stopping the contained emphasis from being considered. + // + // Additionally `fallback_bracket_inside_element` is used to allow us + // to detect an element ending marker inside the destination + // and allow that. For example here: + // + // *[x](y*) + // if (element == PARENS_SPAN) { // Should scan ahead and if there's a valid inline link we should not // allow the fallback to be parsed (favoring the link). if (!s->fallback_bracket_inside_element && - scan_inline_image_url(lexer, top)) { + scan_inline_link_destination(lexer, top)) { return false; } } @@ -395,47 +508,11 @@ static bool mark_span_begin(Scanner *s, TSLexer *lexer, // Parse a span ending token, either `_` or `_}`. static bool parse_span_end(Scanner *s, TSLexer *lexer, ElementType element, - TokenType token, char marker, SpanType span_type) { - // Only close the topmost element, so in: - // - // _a *b_ - // - // The `*` isn't allowed to open a span, and that branch should not be - // valid. - Element *top = peek_element(s); - if (!top || top->type != element) { + TokenType token) { + if (!scan_span_end_element(s, lexer, element)) { return false; } - // If we've chosen any fallback symbols inside the span then we - // should not accept the span. - if (top->data > 0) { - return false; - } - - switch (span_type) { - case SpanSingle: - if (!scan_single_span_end(lexer, marker)) { - return false; - } - break; - case SpanBracketed: - if (!scan_bracketed_span_end(lexer, marker)) { - return false; - } - break; - case SpanBracketedAndSingle: - if (!scan_span_end(lexer, marker, false)) { - return false; - } - break; - case SpanBracketedAndSingleNoWhitespace: - if (!scan_span_end(lexer, marker, true)) { - return false; - } - break; - } - lexer->mark_end(lexer); lexer->result_symbol = token; array_pop(s->open_elements); @@ -446,13 +523,13 @@ static bool parse_span_end(Scanner *s, TSLexer *lexer, ElementType element, // delimiters. static bool parse_span(Scanner *s, TSLexer *lexer, const bool *valid_symbols, ElementType element, TokenType begin_token, - TokenType end_token, char marker, SpanType span_type) { + TokenType end_token) { if (valid_symbols[end_token] && - parse_span_end(s, lexer, element, end_token, marker, span_type)) { + parse_span_end(s, lexer, element, end_token)) { return true; } if (valid_symbols[begin_token] && - mark_span_begin(s, lexer, valid_symbols, element, begin_token, marker)) { + mark_span_begin(s, lexer, valid_symbols, element, begin_token)) { return true; } return false; @@ -461,56 +538,52 @@ static bool parse_span(Scanner *s, TSLexer *lexer, const bool *valid_symbols, static bool parse_emphasis(Scanner *s, TSLexer *lexer, const bool *valid_symbols) { return parse_span(s, lexer, valid_symbols, EMPHASIS, EMPHASIS_MARK_BEGIN, - EMPHASIS_END, '_', SpanBracketedAndSingleNoWhitespace); + EMPHASIS_END); } static bool parse_strong(Scanner *s, TSLexer *lexer, const bool *valid_symbols) { return parse_span(s, lexer, valid_symbols, STRONG, STRONG_MARK_BEGIN, - STRONG_END, '*', SpanBracketedAndSingleNoWhitespace); + STRONG_END); } static bool parse_superscript(Scanner *s, TSLexer *lexer, const bool *valid_symbols) { return parse_span(s, lexer, valid_symbols, SUPERSCRIPT, - SUPERSCRIPT_MARK_BEGIN, SUPERSCRIPT_END, '^', - SpanBracketedAndSingle); + SUPERSCRIPT_MARK_BEGIN, SUPERSCRIPT_END); } static bool parse_subscript(Scanner *s, TSLexer *lexer, const bool *valid_symbols) { return parse_span(s, lexer, valid_symbols, SUBSCRIPT, SUBSCRIPT_MARK_BEGIN, - SUBSCRIPT_END, '~', SpanBracketedAndSingle); + SUBSCRIPT_END); } static bool parse_highlighted(Scanner *s, TSLexer *lexer, const bool *valid_symbols) { return parse_span(s, lexer, valid_symbols, HIGHLIGHTED, - HIGHLIGHTED_MARK_BEGIN, HIGHLIGHTED_END, '=', - SpanBracketed); + HIGHLIGHTED_MARK_BEGIN, HIGHLIGHTED_END); } static bool parse_insert(Scanner *s, TSLexer *lexer, const bool *valid_symbols) { return parse_span(s, lexer, valid_symbols, INSERT, INSERT_MARK_BEGIN, - INSERT_END, '+', SpanBracketed); + INSERT_END); } static bool parse_delete(Scanner *s, TSLexer *lexer, const bool *valid_symbols) { return parse_span(s, lexer, valid_symbols, DELETE, DELETE_MARK_BEGIN, - DELETE_END, '-', SpanBracketed); + DELETE_END); } static bool parse_parens_span(Scanner *s, TSLexer *lexer, const bool *valid_symbols) { return parse_span(s, lexer, valid_symbols, PARENS_SPAN, - PARENS_SPAN_MARK_BEGIN, PARENS_SPAN_END, ')', SpanSingle); + PARENS_SPAN_MARK_BEGIN, PARENS_SPAN_END); } static bool parse_curly_bracket_span(Scanner *s, TSLexer *lexer, const bool *valid_symbols) { return parse_span(s, lexer, valid_symbols, CURLY_BRACKET_SPAN, - CURLY_BRACKET_SPAN_MARK_BEGIN, CURLY_BRACKET_SPAN_END, '}', - SpanSingle); + CURLY_BRACKET_SPAN_MARK_BEGIN, CURLY_BRACKET_SPAN_END); } static bool parse_square_bracket_span(Scanner *s, TSLexer *lexer, const bool *valid_symbols) { return parse_span(s, lexer, valid_symbols, SQUARE_BRACKET_SPAN, - SQUARE_BRACKET_SPAN_MARK_BEGIN, SQUARE_BRACKET_SPAN_END, - ']', SpanSingle); + SQUARE_BRACKET_SPAN_MARK_BEGIN, SQUARE_BRACKET_SPAN_END); } static bool check_non_whitespace(Scanner *s, TSLexer *lexer) { From e08cd93e0c4602f88f10907665399a349d8a1b62 Mon Sep 17 00:00:00 2001 From: Jonas Hietala Date: Thu, 9 Jan 2025 13:12:25 +0100 Subject: [PATCH 28/46] feat: Correctly handle precedence for `*[*](y)` Also some refactoring --- tree-sitter-djot-inline/src/scanner.c | 260 ++++++++++-------- .../test/corpus/syntax.txt | 6 - 2 files changed, 144 insertions(+), 122 deletions(-) diff --git a/tree-sitter-djot-inline/src/scanner.c b/tree-sitter-djot-inline/src/scanner.c index 62a9531..e8918f2 100644 --- a/tree-sitter-djot-inline/src/scanner.c +++ b/tree-sitter-djot-inline/src/scanner.c @@ -91,14 +91,14 @@ typedef struct { typedef struct { Array(Element *) * open_elements; - // Set to true when a bracket fallback is found inside an element, - // for example in `*[` the `[` will set it to true. - // Set to false when an element is opened again. - // This is used to detect `*[x](y*)` where we'll block elements inside - // `( )` if we can scan the whole inline link. - uint8_t fallback_bracket_inside_element; + // Parser state flags. + uint8_t state; } Scanner; +// States stored by bits in `state` on scanner. +static const uint8_t STATE_BLOCK_BRACKET = 1; +static const uint8_t STATE_FALLBACK_BRACKET_INSIDE_ELEMENT = 1 << 1; + #ifdef DEBUG #include static void dump(Scanner *s, TSLexer *lexer); @@ -174,7 +174,7 @@ static Element *peek_element(Scanner *s) { static SpanType element_span_type(ElementType type) { switch (type) { case VERBATIM: - // NOTE not supported or used + // Not used as verbatim is parsed separately. return SpanSingle; case EMPHASIS: case STRONG: @@ -193,10 +193,64 @@ static SpanType element_span_type(ElementType type) { } } +static char element_begin_token(ElementType type) { + switch (type) { + case VERBATIM: + return VERBATIM_BEGIN; + case EMPHASIS: + return EMPHASIS_MARK_BEGIN; + case STRONG: + return STRONG_MARK_BEGIN; + case SUPERSCRIPT: + return SUPERSCRIPT_MARK_BEGIN; + case SUBSCRIPT: + return SUBSCRIPT_MARK_BEGIN; + case HIGHLIGHTED: + return HIGHLIGHTED_MARK_BEGIN; + case INSERT: + return INSERT_MARK_BEGIN; + case DELETE: + return DELETE_MARK_BEGIN; + case PARENS_SPAN: + return PARENS_SPAN_MARK_BEGIN; + case CURLY_BRACKET_SPAN: + return CURLY_BRACKET_SPAN_MARK_BEGIN; + case SQUARE_BRACKET_SPAN: + return SQUARE_BRACKET_SPAN_MARK_BEGIN; + } +} + +static char element_end_token(ElementType type) { + switch (type) { + case VERBATIM: + return VERBATIM_END; + case EMPHASIS: + return EMPHASIS_END; + case STRONG: + return STRONG_END; + case SUPERSCRIPT: + return SUPERSCRIPT_END; + case SUBSCRIPT: + return SUBSCRIPT_END; + case HIGHLIGHTED: + return HIGHLIGHTED_END; + case INSERT: + return INSERT_END; + case DELETE: + return DELETE_END; + case PARENS_SPAN: + return PARENS_SPAN_END; + case CURLY_BRACKET_SPAN: + return CURLY_BRACKET_SPAN_END; + case SQUARE_BRACKET_SPAN: + return SQUARE_BRACKET_SPAN_END; + } +} + static char element_marker(ElementType type) { switch (type) { case VERBATIM: - // NOTE not supported or used + // Not used as verbatim is parsed separately. return '`'; case EMPHASIS: return '_'; @@ -371,49 +425,19 @@ static bool scan_span_end(TSLexer *lexer, char marker, return scan_bracketed_span_end(lexer, marker); } -// Scan a span ending token, either `_` or `_}`. -static bool scan_span_end_element(Scanner *s, TSLexer *lexer, - ElementType element) { - // Only close the topmost element, so in: - // - // _a *b_ - // - // The `*` isn't allowed to open a span, and that branch should not be - // valid. - Element *top = peek_element(s); - if (!top || top->type != element) { - return false; - } - // If we've chosen any fallback symbols inside the span then we - // should not accept the span. - if (top->data > 0) { - return false; - } - +static bool scan_span_end_marker(TSLexer *lexer, ElementType element) { char marker = element_marker(element); + switch (element_span_type(element)) { case SpanSingle: - if (!scan_single_span_end(lexer, marker)) { - return false; - } - break; + return scan_single_span_end(lexer, marker); case SpanBracketed: - if (!scan_bracketed_span_end(lexer, marker)) { - return false; - } - break; + return scan_bracketed_span_end(lexer, marker); case SpanBracketedAndSingle: - if (!scan_span_end(lexer, marker, false)) { - return false; - } - break; + return scan_span_end(lexer, marker, false); case SpanBracketedAndSingleNoWhitespace: - if (!scan_span_end(lexer, marker, true)) { - return false; - } - break; + return scan_span_end(lexer, marker, true); } - return true; } static bool scan_inline_link_destination(TSLexer *lexer, Element *top_element) { @@ -434,11 +458,32 @@ static bool scan_inline_link_destination(TSLexer *lexer, Element *top_element) { return false; } +static bool open_bracket_before_closing_marker(TSLexer *lexer, + ElementType element) { + // The `(` has already been scanned, now we should check for + // an ending `)`. It can also be escaped. + while (!lexer->eof(lexer)) { + if (scan_span_end_marker(lexer, element)) { + return false; + } + switch (lexer->lookahead) { + case '\\': + advance(lexer); + break; + case '[': + return true; + default: + break; + } + advance(lexer); + } + return false; +} + static bool mark_span_begin(Scanner *s, TSLexer *lexer, const bool *valid_symbols, ElementType element, TokenType token) { Element *top = peek_element(s); - // If IN_FALLBACK is valid then it means we're processing the // `_symbol_fallback` branch (see `grammar.js`). if (valid_symbols[IN_FALLBACK]) { @@ -462,15 +507,23 @@ static bool mark_span_begin(Scanner *s, TSLexer *lexer, if (element == PARENS_SPAN) { // Should scan ahead and if there's a valid inline link we should not // allow the fallback to be parsed (favoring the link). - if (!s->fallback_bracket_inside_element && + if (!(s->state & STATE_FALLBACK_BRACKET_INSIDE_ELEMENT) && scan_inline_link_destination(lexer, top)) { return false; } } if (top && element == SQUARE_BRACKET_SPAN) { - s->fallback_bracket_inside_element = 1; + s->state |= STATE_FALLBACK_BRACKET_INSIDE_ELEMENT; } + if (open_bracket_before_closing_marker(lexer, element)) { + s->state |= STATE_BLOCK_BRACKET; + } + + // Set `block_bracket` if we find a `]` before we find the closing marker. + // Then deny opening `[` if `block_bracket` is true. + // Reset `block_bracket` when closing an element. + // If there's multiple valid opening spans, for example: // // {_ {_ a_ @@ -498,7 +551,12 @@ static bool mark_span_begin(Scanner *s, TSLexer *lexer, lexer->result_symbol = token; return true; } else { - s->fallback_bracket_inside_element = 0; + if (element == SQUARE_BRACKET_SPAN && (s->state & STATE_BLOCK_BRACKET)) { + return false; + } + s->state &= ~STATE_BLOCK_BRACKET; + s->state &= ~STATE_FALLBACK_BRACKET_INSIDE_ELEMENT; + lexer->mark_end(lexer); lexer->result_symbol = token; push_element(s, element, 0); @@ -509,7 +567,26 @@ static bool mark_span_begin(Scanner *s, TSLexer *lexer, // Parse a span ending token, either `_` or `_}`. static bool parse_span_end(Scanner *s, TSLexer *lexer, ElementType element, TokenType token) { - if (!scan_span_end_element(s, lexer, element)) { + // if (!scan_span_end_element(s, lexer, element)) { + // return false; + // } + // Only close the topmost element, so in: + // + // _a *b_ + // + // The `*` isn't allowed to open a span, and that branch should not be + // valid. + Element *top = peek_element(s); + if (!top || top->type != element) { + return false; + } + // If we've chosen any fallback symbols inside the span then we + // should not accept the span. + if (top->data > 0) { + return false; + } + + if (!scan_span_end_marker(lexer, element)) { return false; } @@ -522,8 +599,9 @@ static bool parse_span_end(Scanner *s, TSLexer *lexer, ElementType element, // Parse a span delimited with `marker`, with `_`, `{_`, and `_}` being valid // delimiters. static bool parse_span(Scanner *s, TSLexer *lexer, const bool *valid_symbols, - ElementType element, TokenType begin_token, - TokenType end_token) { + ElementType element) { + TokenType begin_token = element_begin_token(element); + TokenType end_token = element_end_token(element); if (valid_symbols[end_token] && parse_span_end(s, lexer, element, end_token)) { return true; @@ -535,57 +613,6 @@ static bool parse_span(Scanner *s, TSLexer *lexer, const bool *valid_symbols, return false; } -static bool parse_emphasis(Scanner *s, TSLexer *lexer, - const bool *valid_symbols) { - return parse_span(s, lexer, valid_symbols, EMPHASIS, EMPHASIS_MARK_BEGIN, - EMPHASIS_END); -} -static bool parse_strong(Scanner *s, TSLexer *lexer, - const bool *valid_symbols) { - return parse_span(s, lexer, valid_symbols, STRONG, STRONG_MARK_BEGIN, - STRONG_END); -} -static bool parse_superscript(Scanner *s, TSLexer *lexer, - const bool *valid_symbols) { - return parse_span(s, lexer, valid_symbols, SUPERSCRIPT, - SUPERSCRIPT_MARK_BEGIN, SUPERSCRIPT_END); -} -static bool parse_subscript(Scanner *s, TSLexer *lexer, - const bool *valid_symbols) { - return parse_span(s, lexer, valid_symbols, SUBSCRIPT, SUBSCRIPT_MARK_BEGIN, - SUBSCRIPT_END); -} -static bool parse_highlighted(Scanner *s, TSLexer *lexer, - const bool *valid_symbols) { - return parse_span(s, lexer, valid_symbols, HIGHLIGHTED, - HIGHLIGHTED_MARK_BEGIN, HIGHLIGHTED_END); -} -static bool parse_insert(Scanner *s, TSLexer *lexer, - const bool *valid_symbols) { - return parse_span(s, lexer, valid_symbols, INSERT, INSERT_MARK_BEGIN, - INSERT_END); -} -static bool parse_delete(Scanner *s, TSLexer *lexer, - const bool *valid_symbols) { - return parse_span(s, lexer, valid_symbols, DELETE, DELETE_MARK_BEGIN, - DELETE_END); -} -static bool parse_parens_span(Scanner *s, TSLexer *lexer, - const bool *valid_symbols) { - return parse_span(s, lexer, valid_symbols, PARENS_SPAN, - PARENS_SPAN_MARK_BEGIN, PARENS_SPAN_END); -} -static bool parse_curly_bracket_span(Scanner *s, TSLexer *lexer, - const bool *valid_symbols) { - return parse_span(s, lexer, valid_symbols, CURLY_BRACKET_SPAN, - CURLY_BRACKET_SPAN_MARK_BEGIN, CURLY_BRACKET_SPAN_END); -} -static bool parse_square_bracket_span(Scanner *s, TSLexer *lexer, - const bool *valid_symbols) { - return parse_span(s, lexer, valid_symbols, SQUARE_BRACKET_SPAN, - SQUARE_BRACKET_SPAN_MARK_BEGIN, SQUARE_BRACKET_SPAN_END); -} - static bool check_non_whitespace(Scanner *s, TSLexer *lexer) { switch (lexer->lookahead) { case ' ': @@ -631,34 +658,34 @@ bool tree_sitter_djot_inline_external_scanner_scan(void *payload, if (parse_verbatim(s, lexer, valid_symbols)) { return true; } - if (parse_emphasis(s, lexer, valid_symbols)) { + if (parse_span(s, lexer, valid_symbols, EMPHASIS)) { return true; } - if (parse_strong(s, lexer, valid_symbols)) { + if (parse_span(s, lexer, valid_symbols, STRONG)) { return true; } - if (parse_superscript(s, lexer, valid_symbols)) { + if (parse_span(s, lexer, valid_symbols, SUPERSCRIPT)) { return true; } - if (parse_subscript(s, lexer, valid_symbols)) { + if (parse_span(s, lexer, valid_symbols, SUBSCRIPT)) { return true; } - if (parse_highlighted(s, lexer, valid_symbols)) { + if (parse_span(s, lexer, valid_symbols, HIGHLIGHTED)) { return true; } - if (parse_insert(s, lexer, valid_symbols)) { + if (parse_span(s, lexer, valid_symbols, INSERT)) { return true; } - if (parse_delete(s, lexer, valid_symbols)) { + if (parse_span(s, lexer, valid_symbols, DELETE)) { return true; } - if (parse_parens_span(s, lexer, valid_symbols)) { + if (parse_span(s, lexer, valid_symbols, PARENS_SPAN)) { return true; } - if (parse_curly_bracket_span(s, lexer, valid_symbols)) { + if (parse_span(s, lexer, valid_symbols, CURLY_BRACKET_SPAN)) { return true; } - if (parse_square_bracket_span(s, lexer, valid_symbols)) { + if (parse_span(s, lexer, valid_symbols, SQUARE_BRACKET_SPAN)) { return true; } @@ -667,7 +694,7 @@ bool tree_sitter_djot_inline_external_scanner_scan(void *payload, void init(Scanner *s) { array_init(s->open_elements); - s->fallback_bracket_inside_element = 0; + s->state = 0; } void *tree_sitter_djot_inline_external_scanner_create() { @@ -687,7 +714,7 @@ unsigned tree_sitter_djot_inline_external_scanner_serialize(void *payload, char *buffer) { Scanner *s = (Scanner *)payload; unsigned size = 0; - buffer[size++] = (char)s->fallback_bracket_inside_element; + buffer[size++] = (char)s->state; for (size_t i = 0; i < s->open_elements->size; ++i) { Element *e = *array_get(s->open_elements, i); @@ -704,7 +731,7 @@ void tree_sitter_djot_inline_external_scanner_deserialize(void *payload, init(s); if (length > 0) { size_t size = 0; - s->fallback_bracket_inside_element = (uint8_t)buffer[size++]; + s->state = (uint8_t)buffer[size++]; while (size < length) { ElementType type = (ElementType)buffer[size++]; @@ -808,7 +835,8 @@ static char *element_type_s(ElementType t) { static void dump_scanner(Scanner *s) { printf("fallback_bracket_inside_element: %u\n", - s->fallback_bracket_inside_element); + s->state & STATE_FALLBACK_BRACKET_INSIDE_ELEMENT); + printf("block_bracket: %u\n", s->state & STATE_BLOCK_BRACKET); printf("--- Open elements: %u (last -> first)\n", s->open_elements->size); for (size_t i = 0; i < s->open_elements->size; ++i) { Element *e = *array_get(s->open_elements, i); diff --git a/tree-sitter-djot-inline/test/corpus/syntax.txt b/tree-sitter-djot-inline/test/corpus/syntax.txt index 41daf61..c1c6ad9 100644 --- a/tree-sitter-djot-inline/test/corpus/syntax.txt +++ b/tree-sitter-djot-inline/test/corpus/syntax.txt @@ -243,7 +243,6 @@ Image: inline precedence 1 =============================================================================== Image: inline precedence 2 -:skip =============================================================================== *![*](y) @@ -282,7 +281,6 @@ Image: full precedence 1 =============================================================================== Image: full precedence 2 -:skip =============================================================================== *![*][y] @@ -320,7 +318,6 @@ Image: collapsed precedence 1 =============================================================================== Image: collapsed precedence 2 -:skip =============================================================================== *![*][] @@ -1170,7 +1167,6 @@ Link: inline precedence 1 =============================================================================== Link: inline precedence 2 -:skip =============================================================================== *[*](y) @@ -1209,7 +1205,6 @@ Link: full precedence 1 =============================================================================== Link: full precedence 2 -:skip =============================================================================== *[*][y] @@ -1247,7 +1242,6 @@ Link: collapsed precedence 1 =============================================================================== Link: collapsed precedence 2 -:skip =============================================================================== *[*][] From c19e267a72b9206811c958045be492c397b2cdb0 Mon Sep 17 00:00:00 2001 From: Jonas Hietala Date: Thu, 9 Jan 2025 13:45:25 +0100 Subject: [PATCH 29/46] feat: Upgrade djot to tree-sitter 0.24.6 --- tree-sitter-djot/package.json | 17 +-------------- tree-sitter-djot/tree-sitter.json | 36 +++++++++++++++++++++++++++++++ 2 files changed, 37 insertions(+), 16 deletions(-) create mode 100644 tree-sitter-djot/tree-sitter.json diff --git a/tree-sitter-djot/package.json b/tree-sitter-djot/package.json index 66a79c6..3e996c5 100644 --- a/tree-sitter-djot/package.json +++ b/tree-sitter-djot/package.json @@ -1,6 +1,6 @@ { "name": "tree-sitter-djot", - "version": "2.0.0", + "version": "2.1.0", "description": "", "main": "bindings/node", "types": "bindings/node", @@ -30,21 +30,6 @@ "tree-sitter-cli": "^0.22.1", "prebuildify": "^6.0.0" }, - "tree-sitter": [ - { - "scope": "text.djot", - "file-types": [ - "dj" - ], - "injection-regex": "djot", - "highlights": [ - "queries/highlights.scm" - ], - "injections": [ - "queries/injections.scm" - ] - } - ], "files": [ "grammar.js", "binding.gyp", diff --git a/tree-sitter-djot/tree-sitter.json b/tree-sitter-djot/tree-sitter.json new file mode 100644 index 0000000..9c5437f --- /dev/null +++ b/tree-sitter-djot/tree-sitter.json @@ -0,0 +1,36 @@ +{ + "grammars": [ + { + "name": "djot", + "camelcase": "Djot", + "scope": "text.djot", + "path": ".", + "file-types": [ + "dj" + ], + "highlights": [ + "queries/highlights.scm" + ], + "injections": [ + "queries/injections.scm" + ], + "injection-regex": "djot" + } + ], + "metadata": { + "version": "2.0.0", + "license": "ISC", + "description": "", + "links": { + "repository": "https://github.com/tree-sitter/tree-sitter-djot" + } + }, + "bindings": { + "c": true, + "go": true, + "node": true, + "python": true, + "rust": true, + "swift": true + } +} From 49bcc154291c05a1dd408dd84f27f5ed79ee60aa Mon Sep 17 00:00:00 2001 From: Jonas Hietala Date: Thu, 9 Jan 2025 13:46:06 +0100 Subject: [PATCH 30/46] fix: only consider single alpha characters as list markers --- tree-sitter-djot/src/scanner.c | 16 ++++- tree-sitter-djot/test/corpus/syntax.txt | 81 +++++++++++++++++++++++++ 2 files changed, 96 insertions(+), 1 deletion(-) diff --git a/tree-sitter-djot/src/scanner.c b/tree-sitter-djot/src/scanner.c index e7730a2..9171243 100644 --- a/tree-sitter-djot/src/scanner.c +++ b/tree-sitter-djot/src/scanner.c @@ -726,6 +726,16 @@ static bool matches_ordered_list(OrderedListType type, char c) { } } +static bool single_letter_list_marker(OrderedListType type) { + switch (type) { + case LOWER_ALPHA: + case UPPER_ALPHA: + return true; + default: + return false; + } +} + // Return true if we scan any character. static bool scan_ordered_list_enumerator(Scanner *s, TSLexer *lexer, OrderedListType type) { @@ -739,7 +749,11 @@ static bool scan_ordered_list_enumerator(Scanner *s, TSLexer *lexer, break; } } - return scanned > 0; + if (single_letter_list_marker(type)) { + return scanned == 1; + } else { + return scanned > 0; + } } static bool scan_ordered_list_type(Scanner *s, TSLexer *lexer, diff --git a/tree-sitter-djot/test/corpus/syntax.txt b/tree-sitter-djot/test/corpus/syntax.txt index 22cf3f8..f493fe8 100644 --- a/tree-sitter-djot/test/corpus/syntax.txt +++ b/tree-sitter-djot/test/corpus/syntax.txt @@ -1989,6 +1989,87 @@ I) x (list_marker_upper_roman_parens) (list_item_content (paragraph))))) +=============================================================================== +List: multi letter ordered list markers +=============================================================================== + +10. x + +10) x + +(10) x + +aa. x + +aa) x + +(aa) x + +AA. x + +AA) x + +(AA) x + +ii. x + +ii) x + +(ii) x + +II. x + +II) x + +(II) x + +------------------------------------------------------------------------------- + +(document + (list + (list_item + (list_marker_decimal_period) + (list_item_content (paragraph)))) + (list + (list_item + (list_marker_decimal_paren) + (list_item_content (paragraph)))) + (list + (list_item + (list_marker_decimal_parens) + (list_item_content (paragraph)))) + (paragraph) + (paragraph) + (paragraph) + (paragraph) + (paragraph) + (paragraph) + (list + (list_item + (list_marker_lower_roman_period) + (list_item_content (paragraph)))) + (list + (list_item + (list_marker_lower_roman_paren) + (list_item_content (paragraph)))) + (list + (list_item + (list_marker_lower_roman_parens) + (list_item_content (paragraph)))) + (list + (list_item + (list_marker_upper_roman_period) + (list_item_content (paragraph)))) + (list + (list_item + (list_marker_upper_roman_paren) + (list_item_content (paragraph)))) + (list + (list_item + (list_marker_upper_roman_parens) + (list_item_content (paragraph))))) + + =============================================================================== List: close decimal sublist =============================================================================== From 3473e07c2916c6b4a3e104a1d451d8bd3ada52a5 Mon Sep 17 00:00:00 2001 From: Jonas Hietala Date: Thu, 9 Jan 2025 15:02:07 +0100 Subject: [PATCH 31/46] docs: Update readme --- README.md | 63 +++++++++++++++++++------------------------------------ 1 file changed, 22 insertions(+), 41 deletions(-) diff --git a/README.md b/README.md index 55dd890..9c3d868 100644 --- a/README.md +++ b/README.md @@ -1,45 +1,12 @@ # tree-sitter-djot -This is an experimental [Tree-sitter][] grammar for [Djot][]. - -# Features - -Aims to be fully feature complete with the [Djot specification][]: - -- [x] Inline syntax - - [x] Links - - [x] Image - - [x] Autolink - - [x] Verbatim - - [x] Emphasis/strong - - [x] Highlighted - - [x] Super/subscript - - [x] Insert/delete - - [x] Smart punctuation - - [x] Math - - [x] Footnote reference - - [x] Line break - - [x] Comment - - [x] Symbols - - [x] Raw inline - - [x] Span - - [x] Inline attributes -- [x] Block syntax - - [x] Paragraph - - [x] Heading - - [x] Block quote - - [x] List item with the different marker types - - [x] List - - [x] Code block - - [x] Thematic break - - [x] Raw block - - [x] Div - - [x] Pipe table - - [x] Reference link definition - - [x] Footnote - - [x] Block attribute - -Also contains some extra features not included in the Djot standard: +A [Djot][] parser for [tree-sitter][]. + +## Features + +Aims to be feature complete with the [Djot specification][]. + +The parser contains some features outside the [Djot][] standard: - Parses an optional frontmatter at the very start of the file, e.g: @@ -51,6 +18,20 @@ Also contains some extra features not included in the Djot standard: - Highlights standalone `TODO`, `NOTE` and `FIXME`. -[Tree-sitter]: https://tree-sitter.github.io/tree-sitter/ +## Split parser + +The parser is split into two grammars that you'll need to install/include: + +1. `djot` that parses the block syntax on the top level. +2. `djot_inline` that parses all inline contexts and should be injected into the `inline` nodes from the block level parser. + +> [!note] +> `split` is the main branch of this repository and the `master` branch with the old combined parser won't be maintained. + +> [!warning] +> The generated language bindings for the split parsers haven't been thoroughly tested. +> If you find a problem please file an issue. + +[tree-sitter]: https://tree-sitter.github.io/tree-sitter/ [Djot]: https://djot.net/ [Djot specification]: https://htmlpreview.github.io/?https://github.com/jgm/djot/blob/master/doc/syntax.html From 0b241cc8b9465162d74c07bf33af298a71a51c86 Mon Sep 17 00:00:00 2001 From: Jonas Hietala Date: Thu, 9 Jan 2025 20:17:34 +0100 Subject: [PATCH 32/46] feat: Add fields to nodes and use `inline` for injection --- tree-sitter-djot-inline/grammar.js | 109 +- tree-sitter-djot-inline/src/grammar.json | 536 +- tree-sitter-djot-inline/src/node-types.json | 804 +- tree-sitter-djot-inline/src/parser.c | 220 +- tree-sitter-djot/grammar.js | 206 +- tree-sitter-djot/queries/injections.scm | 7 +- tree-sitter-djot/queries/textobjects.scm | 34 +- tree-sitter-djot/src/grammar.json | 863 +- tree-sitter-djot/src/node-types.json | 711 +- tree-sitter-djot/src/parser.c | 31295 +++++++++--------- tree-sitter-djot/src/tree_sitter/alloc.h | 8 +- tree-sitter-djot/src/tree_sitter/array.h | 12 +- tree-sitter-djot/src/tree_sitter/parser.h | 52 +- tree-sitter-djot/test/corpus/syntax.txt | 689 +- 14 files changed, 18763 insertions(+), 16783 deletions(-) diff --git a/tree-sitter-djot-inline/grammar.js b/tree-sitter-djot-inline/grammar.js index 00c7353..c8e8bc6 100644 --- a/tree-sitter-djot-inline/grammar.js +++ b/tree-sitter-djot-inline/grammar.js @@ -105,19 +105,19 @@ module.exports = grammar({ // and not for the `_` case. emphasis: ($) => seq( - $.emphasis_begin, + field("begin_marker", $.emphasis_begin), $._emphasis_mark_begin, - alias($._inline_without_trailing_space, $.content), - $.emphasis_end, + field("content", alias($._inline_without_trailing_space, $.content)), + field("end_marker", $.emphasis_end), ), emphasis_begin: ($) => choice("{_", seq("_", $._non_whitespace_check)), strong: ($) => seq( - $.strong_begin, + field("begin_marker", $.strong_begin), $._strong_mark_begin, - alias($._inline_without_trailing_space, $.content), - $.strong_end, + field("content", alias($._inline_without_trailing_space, $.content)), + field("end_marker", $.strong_end), ), strong_begin: ($) => choice("{*", seq("*", $._non_whitespace_check)), @@ -125,44 +125,44 @@ module.exports = grammar({ // The live playground suggests that yes they can, although it's a bit inconsistent. superscript: ($) => seq( - $.superscript_begin, + field("begin_marker", $.superscript_begin), $._superscript_mark_begin, - alias($._inline, $.content), - $.superscript_end, + field("content", alias($._inline, $.content)), + field("end_marker", $.superscript_end), ), superscript_begin: (_) => choice("{^", "^"), subscript: ($) => seq( - $.subscript_begin, + field("begin_marker", $.subscript_begin), $._subscript_mark_begin, - alias($._inline, $.content), - $.subscript_end, + field("content", alias($._inline, $.content)), + field("end_marker", $.subscript_end), ), subscript_begin: (_) => choice("{~", "~"), highlighted: ($) => seq( - $.highlighted_begin, + field("begin_marker", $.highlighted_begin), $._highlighted_mark_begin, - alias($._inline, $.content), - $.highlighted_end, + field("content", alias($._inline, $.content)), + field("end_marker", $.highlighted_end), ), highlighted_begin: (_) => "{=", insert: ($) => seq( - $.insert_begin, + field("begin_marker", $.insert_begin), $._insert_mark_begin, - alias($._inline, $.content), - $.insert_end, + field("content", alias($._inline, $.content)), + field("end_marker", $.insert_end), ), insert_begin: (_) => "{+", delete: ($) => seq( - $.delete_begin, + field("begin_marker", $.delete_begin), $._delete_mark_begin, - alias($._inline, $.content), - $.delete_end, + field("content", alias($._inline, $.content)), + field("end_marker", $.delete_end), ), delete_begin: (_) => "{-", @@ -202,10 +202,15 @@ module.exports = grammar({ $.collapsed_reference_image, $.inline_image, ), - full_reference_image: ($) => seq($.image_description, $._link_label), + full_reference_image: ($) => + seq(field("description", $.image_description), $._link_label), collapsed_reference_image: ($) => - seq($.image_description, token.immediate("[]")), - inline_image: ($) => seq($.image_description, $.inline_link_destination), + seq(field("description", $.image_description), token.immediate("[]")), + inline_image: ($) => + seq( + field("description", $.image_description), + field("destination", $.inline_link_destination), + ), image_description: ($) => seq( @@ -218,9 +223,14 @@ module.exports = grammar({ _link: ($) => choice($.full_reference_link, $.collapsed_reference_link, $.inline_link), - full_reference_link: ($) => seq($.link_text, $._link_label), - collapsed_reference_link: ($) => seq($.link_text, token.immediate("[]")), - inline_link: ($) => seq($.link_text, $.inline_link_destination), + full_reference_link: ($) => seq(field("text", $.link_text), $._link_label), + collapsed_reference_link: ($) => + seq(field("text", $.link_text), token.immediate("[]")), + inline_link: ($) => + seq( + field("text", $.link_text), + field("destination", $.inline_link_destination), + ), link_text: ($) => choice( @@ -242,13 +252,13 @@ module.exports = grammar({ seq( $._bracketed_text_begin, $._square_bracket_span_mark_begin, - alias($._inline, $.content), + field("content", alias($._inline, $.content)), // Prefer span over regular text + inline attribute. prec.dynamic( ELEMENT_PRECEDENCE, alias($._square_bracket_span_end, "]"), ), - $.inline_attribute, + field("attribute", $.inline_attribute), ), _bracketed_text_begin: (_) => "[", @@ -283,7 +293,11 @@ module.exports = grammar({ ), _link_label: ($) => - seq("[", alias($._inline, $.link_label), token.immediate("]")), + seq( + "[", + field("label", alias($._inline, $.link_label)), + token.immediate("]"), + ), inline_link_destination: ($) => seq( $._parens_span_begin, @@ -320,24 +334,31 @@ module.exports = grammar({ raw_inline: ($) => seq( - alias($._verbatim_begin, $.raw_inline_marker_begin), - alias($._verbatim_content, $.content), - alias($._verbatim_end, $.raw_inline_marker_end), - $.raw_inline_attribute, + field( + "begin_marker", + alias($._verbatim_begin, $.raw_inline_marker_begin), + ), + field("content", alias($._verbatim_content, $.content)), + field("end_marker", alias($._verbatim_end, $.raw_inline_marker_end)), + field("attribute", $.raw_inline_attribute), ), - raw_inline_attribute: ($) => seq(token.immediate("{="), $.language, "}"), + raw_inline_attribute: ($) => + seq(token.immediate("{="), field("language", $.language), "}"), math: ($) => seq( - alias("$", $.math_marker), - alias($._verbatim_begin, $.math_marker_begin), - alias($._verbatim_content, $.content), - alias($._verbatim_end, $.math_marker_end), + field("math_marker", alias("$", $.math_marker)), + field("begin_marker", alias($._verbatim_begin, $.math_marker_begin)), + field("content", alias($._verbatim_content, $.content)), + field("end_marker", alias($._verbatim_end, $.math_marker_end)), ), verbatim: ($) => seq( - alias($._verbatim_begin, $.verbatim_marker_begin), - alias($._verbatim_content, $.content), - alias($._verbatim_end, $.verbatim_marker_end), + field( + "begin_marker", + alias($._verbatim_begin, $.verbatim_marker_begin), + ), + field("content", alias($._verbatim_content, $.content)), + field("end_marker", alias($._verbatim_end, $.verbatim_marker_end)), ), _todo_highlights: ($) => choice($.todo, $.note, $.fixme), @@ -407,9 +428,9 @@ module.exports = grammar({ _text: (_) => repeat1(/\S/), class_name: ($) => $._id, - class: ($) => seq(".", alias($.class_name, "class")), + class: ($) => seq(".", field("name", alias($.class_name, "class"))), identifier: (_) => token(seq("#", token.immediate(/[^\s\}]+/))), - key_value: ($) => seq($.key, "=", $.value), + key_value: ($) => seq(field("key", $.key), "=", field("value", $.value)), key: ($) => $._id, value: (_) => choice(seq('"', /[^"\n]+/, '"'), /\w+/), }, diff --git a/tree-sitter-djot-inline/src/grammar.json b/tree-sitter-djot-inline/src/grammar.json index ea17109..445b19e 100644 --- a/tree-sitter-djot-inline/src/grammar.json +++ b/tree-sitter-djot-inline/src/grammar.json @@ -243,25 +243,37 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "emphasis_begin" + "type": "FIELD", + "name": "begin_marker", + "content": { + "type": "SYMBOL", + "name": "emphasis_begin" + } }, { "type": "SYMBOL", "name": "_emphasis_mark_begin" }, { - "type": "ALIAS", + "type": "FIELD", + "name": "content", "content": { - "type": "SYMBOL", - "name": "_inline_without_trailing_space" - }, - "named": true, - "value": "content" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_inline_without_trailing_space" + }, + "named": true, + "value": "content" + } }, { - "type": "SYMBOL", - "name": "emphasis_end" + "type": "FIELD", + "name": "end_marker", + "content": { + "type": "SYMBOL", + "name": "emphasis_end" + } } ] }, @@ -291,25 +303,37 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "strong_begin" + "type": "FIELD", + "name": "begin_marker", + "content": { + "type": "SYMBOL", + "name": "strong_begin" + } }, { "type": "SYMBOL", "name": "_strong_mark_begin" }, { - "type": "ALIAS", + "type": "FIELD", + "name": "content", "content": { - "type": "SYMBOL", - "name": "_inline_without_trailing_space" - }, - "named": true, - "value": "content" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_inline_without_trailing_space" + }, + "named": true, + "value": "content" + } }, { - "type": "SYMBOL", - "name": "strong_end" + "type": "FIELD", + "name": "end_marker", + "content": { + "type": "SYMBOL", + "name": "strong_end" + } } ] }, @@ -339,25 +363,37 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "superscript_begin" + "type": "FIELD", + "name": "begin_marker", + "content": { + "type": "SYMBOL", + "name": "superscript_begin" + } }, { "type": "SYMBOL", "name": "_superscript_mark_begin" }, { - "type": "ALIAS", + "type": "FIELD", + "name": "content", "content": { - "type": "SYMBOL", - "name": "_inline" - }, - "named": true, - "value": "content" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_inline" + }, + "named": true, + "value": "content" + } }, { - "type": "SYMBOL", - "name": "superscript_end" + "type": "FIELD", + "name": "end_marker", + "content": { + "type": "SYMBOL", + "name": "superscript_end" + } } ] }, @@ -378,25 +414,37 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "subscript_begin" + "type": "FIELD", + "name": "begin_marker", + "content": { + "type": "SYMBOL", + "name": "subscript_begin" + } }, { "type": "SYMBOL", "name": "_subscript_mark_begin" }, { - "type": "ALIAS", + "type": "FIELD", + "name": "content", "content": { - "type": "SYMBOL", - "name": "_inline" - }, - "named": true, - "value": "content" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_inline" + }, + "named": true, + "value": "content" + } }, { - "type": "SYMBOL", - "name": "subscript_end" + "type": "FIELD", + "name": "end_marker", + "content": { + "type": "SYMBOL", + "name": "subscript_end" + } } ] }, @@ -417,25 +465,37 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "highlighted_begin" + "type": "FIELD", + "name": "begin_marker", + "content": { + "type": "SYMBOL", + "name": "highlighted_begin" + } }, { "type": "SYMBOL", "name": "_highlighted_mark_begin" }, { - "type": "ALIAS", + "type": "FIELD", + "name": "content", "content": { - "type": "SYMBOL", - "name": "_inline" - }, - "named": true, - "value": "content" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_inline" + }, + "named": true, + "value": "content" + } }, { - "type": "SYMBOL", - "name": "highlighted_end" + "type": "FIELD", + "name": "end_marker", + "content": { + "type": "SYMBOL", + "name": "highlighted_end" + } } ] }, @@ -447,25 +507,37 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "insert_begin" + "type": "FIELD", + "name": "begin_marker", + "content": { + "type": "SYMBOL", + "name": "insert_begin" + } }, { "type": "SYMBOL", "name": "_insert_mark_begin" }, { - "type": "ALIAS", + "type": "FIELD", + "name": "content", "content": { - "type": "SYMBOL", - "name": "_inline" - }, - "named": true, - "value": "content" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_inline" + }, + "named": true, + "value": "content" + } }, { - "type": "SYMBOL", - "name": "insert_end" + "type": "FIELD", + "name": "end_marker", + "content": { + "type": "SYMBOL", + "name": "insert_end" + } } ] }, @@ -477,25 +549,37 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "delete_begin" + "type": "FIELD", + "name": "begin_marker", + "content": { + "type": "SYMBOL", + "name": "delete_begin" + } }, { "type": "SYMBOL", "name": "_delete_mark_begin" }, { - "type": "ALIAS", + "type": "FIELD", + "name": "content", "content": { - "type": "SYMBOL", - "name": "_inline" - }, - "named": true, - "value": "content" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_inline" + }, + "named": true, + "value": "content" + } }, { - "type": "SYMBOL", - "name": "delete_end" + "type": "FIELD", + "name": "end_marker", + "content": { + "type": "SYMBOL", + "name": "delete_end" + } } ] }, @@ -681,8 +765,12 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "image_description" + "type": "FIELD", + "name": "description", + "content": { + "type": "SYMBOL", + "name": "image_description" + } }, { "type": "SYMBOL", @@ -694,8 +782,12 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "image_description" + "type": "FIELD", + "name": "description", + "content": { + "type": "SYMBOL", + "name": "image_description" + } }, { "type": "IMMEDIATE_TOKEN", @@ -710,12 +802,20 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "image_description" + "type": "FIELD", + "name": "description", + "content": { + "type": "SYMBOL", + "name": "image_description" + } }, { - "type": "SYMBOL", - "name": "inline_link_destination" + "type": "FIELD", + "name": "destination", + "content": { + "type": "SYMBOL", + "name": "inline_link_destination" + } } ] }, @@ -778,8 +878,12 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "link_text" + "type": "FIELD", + "name": "text", + "content": { + "type": "SYMBOL", + "name": "link_text" + } }, { "type": "SYMBOL", @@ -791,8 +895,12 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "link_text" + "type": "FIELD", + "name": "text", + "content": { + "type": "SYMBOL", + "name": "link_text" + } }, { "type": "IMMEDIATE_TOKEN", @@ -807,12 +915,20 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "link_text" + "type": "FIELD", + "name": "text", + "content": { + "type": "SYMBOL", + "name": "link_text" + } }, { - "type": "SYMBOL", - "name": "inline_link_destination" + "type": "FIELD", + "name": "destination", + "content": { + "type": "SYMBOL", + "name": "inline_link_destination" + } } ] }, @@ -863,13 +979,17 @@ "name": "_square_bracket_span_mark_begin" }, { - "type": "ALIAS", + "type": "FIELD", + "name": "content", "content": { - "type": "SYMBOL", - "name": "_inline" - }, - "named": true, - "value": "content" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_inline" + }, + "named": true, + "value": "content" + } }, { "type": "PREC_DYNAMIC", @@ -885,8 +1005,12 @@ } }, { - "type": "SYMBOL", - "name": "inline_attribute" + "type": "FIELD", + "name": "attribute", + "content": { + "type": "SYMBOL", + "name": "inline_attribute" + } } ] }, @@ -991,13 +1115,17 @@ "value": "[" }, { - "type": "ALIAS", + "type": "FIELD", + "name": "label", "content": { - "type": "SYMBOL", - "name": "_inline" - }, - "named": true, - "value": "link_label" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_inline" + }, + "named": true, + "value": "link_label" + } }, { "type": "IMMEDIATE_TOKEN", @@ -1148,35 +1276,51 @@ "type": "SEQ", "members": [ { - "type": "ALIAS", + "type": "FIELD", + "name": "begin_marker", "content": { - "type": "SYMBOL", - "name": "_verbatim_begin" - }, - "named": true, - "value": "raw_inline_marker_begin" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_verbatim_begin" + }, + "named": true, + "value": "raw_inline_marker_begin" + } }, { - "type": "ALIAS", + "type": "FIELD", + "name": "content", "content": { - "type": "SYMBOL", - "name": "_verbatim_content" - }, - "named": true, - "value": "content" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_verbatim_content" + }, + "named": true, + "value": "content" + } }, { - "type": "ALIAS", + "type": "FIELD", + "name": "end_marker", "content": { - "type": "SYMBOL", - "name": "_verbatim_end" - }, - "named": true, - "value": "raw_inline_marker_end" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_verbatim_end" + }, + "named": true, + "value": "raw_inline_marker_end" + } }, { - "type": "SYMBOL", - "name": "raw_inline_attribute" + "type": "FIELD", + "name": "attribute", + "content": { + "type": "SYMBOL", + "name": "raw_inline_attribute" + } } ] }, @@ -1191,8 +1335,12 @@ } }, { - "type": "SYMBOL", - "name": "language" + "type": "FIELD", + "name": "language", + "content": { + "type": "SYMBOL", + "name": "language" + } }, { "type": "STRING", @@ -1204,40 +1352,56 @@ "type": "SEQ", "members": [ { - "type": "ALIAS", + "type": "FIELD", + "name": "math_marker", "content": { - "type": "STRING", - "value": "$" - }, - "named": true, - "value": "math_marker" + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "$" + }, + "named": true, + "value": "math_marker" + } }, { - "type": "ALIAS", + "type": "FIELD", + "name": "begin_marker", "content": { - "type": "SYMBOL", - "name": "_verbatim_begin" - }, - "named": true, - "value": "math_marker_begin" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_verbatim_begin" + }, + "named": true, + "value": "math_marker_begin" + } }, { - "type": "ALIAS", + "type": "FIELD", + "name": "content", "content": { - "type": "SYMBOL", - "name": "_verbatim_content" - }, - "named": true, - "value": "content" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_verbatim_content" + }, + "named": true, + "value": "content" + } }, { - "type": "ALIAS", + "type": "FIELD", + "name": "end_marker", "content": { - "type": "SYMBOL", - "name": "_verbatim_end" - }, - "named": true, - "value": "math_marker_end" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_verbatim_end" + }, + "named": true, + "value": "math_marker_end" + } } ] }, @@ -1245,31 +1409,43 @@ "type": "SEQ", "members": [ { - "type": "ALIAS", + "type": "FIELD", + "name": "begin_marker", "content": { - "type": "SYMBOL", - "name": "_verbatim_begin" - }, - "named": true, - "value": "verbatim_marker_begin" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_verbatim_begin" + }, + "named": true, + "value": "verbatim_marker_begin" + } }, { - "type": "ALIAS", + "type": "FIELD", + "name": "content", "content": { - "type": "SYMBOL", - "name": "_verbatim_content" - }, - "named": true, - "value": "content" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_verbatim_content" + }, + "named": true, + "value": "content" + } }, { - "type": "ALIAS", + "type": "FIELD", + "name": "end_marker", "content": { - "type": "SYMBOL", - "name": "_verbatim_end" - }, - "named": true, - "value": "verbatim_marker_end" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_verbatim_end" + }, + "named": true, + "value": "verbatim_marker_end" + } } ] }, @@ -1721,13 +1897,17 @@ "value": "." }, { - "type": "ALIAS", + "type": "FIELD", + "name": "name", "content": { - "type": "SYMBOL", - "name": "class_name" - }, - "named": false, - "value": "class" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "class_name" + }, + "named": false, + "value": "class" + } } ] }, @@ -1754,16 +1934,24 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "key" + "type": "FIELD", + "name": "key", + "content": { + "type": "SYMBOL", + "name": "key" + } }, { "type": "STRING", "value": "=" }, { - "type": "SYMBOL", - "name": "value" + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "value" + } } ] }, diff --git a/tree-sitter-djot-inline/src/node-types.json b/tree-sitter-djot-inline/src/node-types.json index f8ae9e2..0ce73db 100644 --- a/tree-sitter-djot-inline/src/node-types.json +++ b/tree-sitter-djot-inline/src/node-types.json @@ -34,36 +34,49 @@ { "type": "class", "named": false, - "fields": {} + "fields": { + "name": { + "multiple": false, + "required": false, + "types": [ + { + "type": "class", + "named": false + } + ] + } + } }, { "type": "collapsed_reference_image", "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "image_description", - "named": true - } - ] + "fields": { + "description": { + "multiple": false, + "required": true, + "types": [ + { + "type": "image_description", + "named": true + } + ] + } } }, { "type": "collapsed_reference_link", "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "link_text", - "named": true - } - ] + "fields": { + "text": { + "multiple": false, + "required": true, + "types": [ + { + "type": "link_text", + "named": true + } + ] + } } }, { @@ -219,24 +232,37 @@ { "type": "delete", "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "content", - "named": true - }, - { - "type": "delete_begin", - "named": true - }, - { - "type": "delete_end", - "named": true - } - ] + "fields": { + "begin_marker": { + "multiple": false, + "required": true, + "types": [ + { + "type": "delete_begin", + "named": true + } + ] + }, + "content": { + "multiple": false, + "required": true, + "types": [ + { + "type": "content", + "named": true + } + ] + }, + "end_marker": { + "multiple": false, + "required": true, + "types": [ + { + "type": "delete_end", + "named": true + } + ] + } } }, { @@ -247,24 +273,37 @@ { "type": "emphasis", "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "content", - "named": true - }, - { - "type": "emphasis_begin", - "named": true - }, - { - "type": "emphasis_end", - "named": true - } - ] + "fields": { + "begin_marker": { + "multiple": false, + "required": true, + "types": [ + { + "type": "emphasis_begin", + "named": true + } + ] + }, + "content": { + "multiple": false, + "required": true, + "types": [ + { + "type": "content", + "named": true + } + ] + }, + "end_marker": { + "multiple": false, + "required": true, + "types": [ + { + "type": "emphasis_end", + "named": true + } + ] + } } }, { @@ -303,39 +342,53 @@ { "type": "full_reference_image", "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "image_description", - "named": true - }, - { - "type": "link_label", - "named": true - } - ] + "fields": { + "description": { + "multiple": false, + "required": true, + "types": [ + { + "type": "image_description", + "named": true + } + ] + }, + "label": { + "multiple": false, + "required": true, + "types": [ + { + "type": "link_label", + "named": true + } + ] + } } }, { "type": "full_reference_link", "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "link_label", - "named": true - }, - { - "type": "link_text", - "named": true - } - ] + "fields": { + "label": { + "multiple": false, + "required": true, + "types": [ + { + "type": "link_label", + "named": true + } + ] + }, + "text": { + "multiple": false, + "required": true, + "types": [ + { + "type": "link_text", + "named": true + } + ] + } } }, { @@ -346,24 +399,37 @@ { "type": "highlighted", "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "content", - "named": true - }, - { - "type": "highlighted_begin", - "named": true - }, - { - "type": "highlighted_end", - "named": true - } - ] + "fields": { + "begin_marker": { + "multiple": false, + "required": true, + "types": [ + { + "type": "highlighted_begin", + "named": true + } + ] + }, + "content": { + "multiple": false, + "required": true, + "types": [ + { + "type": "content", + "named": true + } + ] + }, + "end_marker": { + "multiple": false, + "required": true, + "types": [ + { + "type": "highlighted_end", + "named": true + } + ] + } } }, { @@ -660,39 +726,53 @@ { "type": "inline_image", "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "image_description", - "named": true - }, - { - "type": "inline_link_destination", - "named": true - } - ] + "fields": { + "description": { + "multiple": false, + "required": true, + "types": [ + { + "type": "image_description", + "named": true + } + ] + }, + "destination": { + "multiple": false, + "required": true, + "types": [ + { + "type": "inline_link_destination", + "named": true + } + ] + } } }, { "type": "inline_link", "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "inline_link_destination", - "named": true - }, - { - "type": "link_text", - "named": true - } - ] + "fields": { + "destination": { + "multiple": false, + "required": true, + "types": [ + { + "type": "inline_link_destination", + "named": true + } + ] + }, + "text": { + "multiple": false, + "required": true, + "types": [ + { + "type": "link_text", + "named": true + } + ] + } } }, { @@ -703,24 +783,37 @@ { "type": "insert", "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "content", - "named": true - }, - { - "type": "insert_begin", - "named": true - }, - { - "type": "insert_end", - "named": true - } - ] + "fields": { + "begin_marker": { + "multiple": false, + "required": true, + "types": [ + { + "type": "insert_begin", + "named": true + } + ] + }, + "content": { + "multiple": false, + "required": true, + "types": [ + { + "type": "content", + "named": true + } + ] + }, + "end_marker": { + "multiple": false, + "required": true, + "types": [ + { + "type": "insert_end", + "named": true + } + ] + } } }, { @@ -736,20 +829,27 @@ { "type": "key_value", "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "key", - "named": true - }, - { - "type": "value", - "named": true - } - ] + "fields": { + "key": { + "multiple": false, + "required": true, + "types": [ + { + "type": "key", + "named": true + } + ] + }, + "value": { + "multiple": false, + "required": true, + "types": [ + { + "type": "value", + "named": true + } + ] + } } }, { @@ -1025,28 +1125,47 @@ { "type": "math", "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "content", - "named": true - }, - { - "type": "math_marker", - "named": true - }, - { - "type": "math_marker_begin", - "named": true - }, - { - "type": "math_marker_end", - "named": true - } - ] + "fields": { + "begin_marker": { + "multiple": false, + "required": true, + "types": [ + { + "type": "math_marker_begin", + "named": true + } + ] + }, + "content": { + "multiple": false, + "required": true, + "types": [ + { + "type": "content", + "named": true + } + ] + }, + "end_marker": { + "multiple": false, + "required": true, + "types": [ + { + "type": "math_marker_end", + "named": true + } + ] + }, + "math_marker": { + "multiple": false, + "required": true, + "types": [ + { + "type": "math_marker", + "named": true + } + ] + } } }, { @@ -1057,43 +1176,63 @@ { "type": "raw_inline", "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "content", - "named": true - }, - { - "type": "raw_inline_attribute", - "named": true - }, - { - "type": "raw_inline_marker_begin", - "named": true - }, - { - "type": "raw_inline_marker_end", - "named": true - } - ] + "fields": { + "attribute": { + "multiple": false, + "required": true, + "types": [ + { + "type": "raw_inline_attribute", + "named": true + } + ] + }, + "begin_marker": { + "multiple": false, + "required": true, + "types": [ + { + "type": "raw_inline_marker_begin", + "named": true + } + ] + }, + "content": { + "multiple": false, + "required": true, + "types": [ + { + "type": "content", + "named": true + } + ] + }, + "end_marker": { + "multiple": false, + "required": true, + "types": [ + { + "type": "raw_inline_marker_end", + "named": true + } + ] + } } }, { "type": "raw_inline_attribute", "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "language", - "named": true - } - ] + "fields": { + "language": { + "multiple": false, + "required": true, + "types": [ + { + "type": "language", + "named": true + } + ] + } } }, { @@ -1104,43 +1243,63 @@ { "type": "span", "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "content", - "named": true - }, - { - "type": "inline_attribute", - "named": true - } - ] + "fields": { + "attribute": { + "multiple": false, + "required": true, + "types": [ + { + "type": "inline_attribute", + "named": true + } + ] + }, + "content": { + "multiple": false, + "required": true, + "types": [ + { + "type": "content", + "named": true + } + ] + } } }, { "type": "strong", "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "content", - "named": true - }, - { - "type": "strong_begin", - "named": true - }, - { - "type": "strong_end", - "named": true - } - ] + "fields": { + "begin_marker": { + "multiple": false, + "required": true, + "types": [ + { + "type": "strong_begin", + "named": true + } + ] + }, + "content": { + "multiple": false, + "required": true, + "types": [ + { + "type": "content", + "named": true + } + ] + }, + "end_marker": { + "multiple": false, + "required": true, + "types": [ + { + "type": "strong_end", + "named": true + } + ] + } } }, { @@ -1151,24 +1310,37 @@ { "type": "subscript", "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "content", - "named": true - }, - { - "type": "subscript_begin", - "named": true - }, - { - "type": "subscript_end", - "named": true - } - ] + "fields": { + "begin_marker": { + "multiple": false, + "required": true, + "types": [ + { + "type": "subscript_begin", + "named": true + } + ] + }, + "content": { + "multiple": false, + "required": true, + "types": [ + { + "type": "content", + "named": true + } + ] + }, + "end_marker": { + "multiple": false, + "required": true, + "types": [ + { + "type": "subscript_end", + "named": true + } + ] + } } }, { @@ -1179,24 +1351,37 @@ { "type": "superscript", "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "content", - "named": true - }, - { - "type": "superscript_begin", - "named": true - }, - { - "type": "superscript_end", - "named": true - } - ] + "fields": { + "begin_marker": { + "multiple": false, + "required": true, + "types": [ + { + "type": "superscript_begin", + "named": true + } + ] + }, + "content": { + "multiple": false, + "required": true, + "types": [ + { + "type": "content", + "named": true + } + ] + }, + "end_marker": { + "multiple": false, + "required": true, + "types": [ + { + "type": "superscript_end", + "named": true + } + ] + } } }, { @@ -1217,24 +1402,37 @@ { "type": "verbatim", "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "content", - "named": true - }, - { - "type": "verbatim_marker_begin", - "named": true - }, - { - "type": "verbatim_marker_end", - "named": true - } - ] + "fields": { + "begin_marker": { + "multiple": false, + "required": true, + "types": [ + { + "type": "verbatim_marker_begin", + "named": true + } + ] + }, + "content": { + "multiple": false, + "required": true, + "types": [ + { + "type": "content", + "named": true + } + ] + }, + "end_marker": { + "multiple": false, + "required": true, + "types": [ + { + "type": "verbatim_marker_end", + "named": true + } + ] + } } }, { diff --git a/tree-sitter-djot-inline/src/parser.c b/tree-sitter-djot-inline/src/parser.c index c821941..7c6c303 100644 --- a/tree-sitter-djot-inline/src/parser.c +++ b/tree-sitter-djot-inline/src/parser.c @@ -11,9 +11,9 @@ #define ALIAS_COUNT 8 #define TOKEN_COUNT 81 #define EXTERNAL_TOKEN_COUNT 27 -#define FIELD_COUNT 0 +#define FIELD_COUNT 13 #define MAX_ALIAS_SEQUENCE_LENGTH 5 -#define PRODUCTION_ID_COUNT 8 +#define PRODUCTION_ID_COUNT 21 enum ts_symbol_identifiers { anon_sym_LBRACE_ = 1, @@ -1097,32 +1097,139 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { }, }; +enum ts_field_identifiers { + field_attribute = 1, + field_begin_marker = 2, + field_content = 3, + field_description = 4, + field_destination = 5, + field_end_marker = 6, + field_key = 7, + field_label = 8, + field_language = 9, + field_math_marker = 10, + field_name = 11, + field_text = 12, + field_value = 13, +}; + +static const char * const ts_field_names[] = { + [0] = NULL, + [field_attribute] = "attribute", + [field_begin_marker] = "begin_marker", + [field_content] = "content", + [field_description] = "description", + [field_destination] = "destination", + [field_end_marker] = "end_marker", + [field_key] = "key", + [field_label] = "label", + [field_language] = "language", + [field_math_marker] = "math_marker", + [field_name] = "name", + [field_text] = "text", + [field_value] = "value", +}; + +static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { + [1] = {.index = 0, .length = 1}, + [2] = {.index = 1, .length = 2}, + [3] = {.index = 3, .length = 2}, + [4] = {.index = 5, .length = 1}, + [5] = {.index = 6, .length = 2}, + [6] = {.index = 8, .length = 2}, + [7] = {.index = 10, .length = 3}, + [8] = {.index = 13, .length = 4}, + [10] = {.index = 17, .length = 4}, + [11] = {.index = 21, .length = 3}, + [12] = {.index = 21, .length = 3}, + [14] = {.index = 24, .length = 1}, + [15] = {.index = 25, .length = 1}, + [17] = {.index = 26, .length = 2}, + [18] = {.index = 28, .length = 1}, + [19] = {.index = 29, .length = 2}, +}; + +static const TSFieldMapEntry ts_field_map_entries[] = { + [0] = + {field_description, 0}, + [1] = + {field_description, 0}, + {field_label, 1, .inherited = true}, + [3] = + {field_description, 0}, + {field_destination, 1}, + [5] = + {field_text, 0}, + [6] = + {field_label, 1, .inherited = true}, + {field_text, 0}, + [8] = + {field_destination, 1}, + {field_text, 0}, + [10] = + {field_begin_marker, 0}, + {field_content, 1}, + {field_end_marker, 2}, + [13] = + {field_attribute, 3}, + {field_begin_marker, 0}, + {field_content, 1}, + {field_end_marker, 2}, + [17] = + {field_begin_marker, 1}, + {field_content, 2}, + {field_end_marker, 3}, + {field_math_marker, 0}, + [21] = + {field_begin_marker, 0}, + {field_content, 2}, + {field_end_marker, 3}, + [24] = + {field_label, 1}, + [25] = + {field_name, 1}, + [26] = + {field_attribute, 4}, + {field_content, 2}, + [28] = + {field_language, 1}, + [29] = + {field_key, 0}, + {field_value, 2}, +}; + static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { [0] = {0}, - [1] = { + [7] = { [0] = alias_sym_verbatim_marker_begin, [2] = alias_sym_verbatim_marker_end, }, - [2] = { + [9] = { [0] = sym_comment, }, - [3] = { + [10] = { [0] = alias_sym_math_marker, [1] = alias_sym_math_marker_begin, [3] = alias_sym_math_marker_end, }, - [4] = { + [12] = { [2] = sym__verbatim_content, }, - [5] = { + [13] = { [3] = alias_sym_footnote_marker_end, }, - [6] = { + [14] = { [1] = alias_sym_link_label, }, - [7] = { + [16] = { [2] = alias_sym_args, }, + [17] = { + [2] = sym__verbatim_content, + }, + [20] = { + [2] = sym__verbatim_content, + }, }; static const uint16_t ts_non_terminal_alias_map[] = { @@ -40179,8 +40286,8 @@ static const TSParseActionEntry ts_parse_actions[] = { [1226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element, 1, 100, 0), [1228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__element, 1, 100, 0), [1230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), - [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verbatim, 3, 0, 1), - [1234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verbatim, 3, 0, 1), + [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verbatim, 3, 0, 7), + [1234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verbatim, 3, 0, 7), [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), [1238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), [1240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), @@ -40261,56 +40368,56 @@ static const TSParseActionEntry ts_parse_actions[] = { [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), [1403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2, 0, 0), SHIFT_REPEAT(231), [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [1408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collapsed_reference_link, 2, 0, 0), - [1410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collapsed_reference_link, 2, 0, 0), + [1408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collapsed_reference_link, 2, 0, 4), + [1410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collapsed_reference_link, 2, 0, 4), [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note, 1, 0, 0), [1414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_note, 1, 0, 0), [1416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hard_line_break, 2, 0, 0), [1418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hard_line_break, 2, 0, 0), [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_with_spaces, 2, 0, 0), [1422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__comment_with_spaces, 2, 0, 0), - [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collapsed_reference_image, 2, 0, 0), - [1426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collapsed_reference_image, 2, 0, 0), - [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_reference_image, 2, 0, 0), - [1430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_reference_image, 2, 0, 0), - [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_image, 2, 0, 0), - [1434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_image, 2, 0, 0), - [1436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_reference_link, 2, 0, 0), - [1438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_reference_link, 2, 0, 0), - [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 2, 0, 0), - [1442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 2, 0, 0), + [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collapsed_reference_image, 2, 0, 1), + [1426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collapsed_reference_image, 2, 0, 1), + [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_reference_image, 2, 0, 2), + [1430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_reference_image, 2, 0, 2), + [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_image, 2, 0, 3), + [1434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_image, 2, 0, 3), + [1436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_reference_link, 2, 0, 5), + [1438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_reference_link, 2, 0, 5), + [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 2, 0, 6), + [1442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 2, 0, 6), [1444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link_destination, 4, 0, 0), [1446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link_destination, 4, 0, 0), [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 3, 0, 0), [1450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 3, 0, 0), [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_autolink, 3, 0, 0), [1454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_autolink, 3, 0, 0), - [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_inline, 4, 0, 0), - [1458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_inline, 4, 0, 0), - [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math, 4, 0, 3), - [1462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math, 4, 0, 3), + [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_inline, 4, 0, 8), + [1458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_inline, 4, 0, 8), + [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math, 4, 0, 10), + [1462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math, 4, 0, 10), [1464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 3, 0, 0), [1466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comment, 3, 0, 0), - [1468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emphasis, 4, 0, 0), - [1470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_emphasis, 4, 0, 0), - [1472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strong, 4, 0, 0), - [1474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strong, 4, 0, 0), - [1476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_superscript, 4, 0, 4), - [1478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_superscript, 4, 0, 4), - [1480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, 0, 4), - [1482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, 0, 4), - [1484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlighted, 4, 0, 4), - [1486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_highlighted, 4, 0, 4), - [1488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 4, 0, 4), - [1490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 4, 0, 4), - [1492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete, 4, 0, 4), - [1494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete, 4, 0, 4), - [1496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_footnote_reference, 4, 0, 5), - [1498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_footnote_reference, 4, 0, 5), - [1500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_label, 3, 0, 6), - [1502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_label, 3, 0, 6), - [1504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_inline_attribute, 3, 0, 0), - [1506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_inline_attribute, 3, 0, 0), + [1468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emphasis, 4, 0, 11), + [1470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_emphasis, 4, 0, 11), + [1472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strong, 4, 0, 11), + [1474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strong, 4, 0, 11), + [1476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_superscript, 4, 0, 12), + [1478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_superscript, 4, 0, 12), + [1480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, 0, 12), + [1482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, 0, 12), + [1484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlighted, 4, 0, 12), + [1486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_highlighted, 4, 0, 12), + [1488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 4, 0, 12), + [1490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 4, 0, 12), + [1492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete, 4, 0, 12), + [1494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete, 4, 0, 12), + [1496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_footnote_reference, 4, 0, 13), + [1498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_footnote_reference, 4, 0, 13), + [1500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_label, 3, 0, 14), + [1502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_label, 3, 0, 14), + [1504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_inline_attribute, 3, 0, 18), + [1506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_inline_attribute, 3, 0, 18), [1508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, 0, 0), SHIFT(1020), [1511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_todo, 1, 0, 0), [1513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_todo, 1, 0, 0), @@ -40333,13 +40440,13 @@ static const TSParseActionEntry ts_parse_actions[] = { [1556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, 0, 0), SHIFT(1004), [1559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element, 2, 100, 0), [1561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__element, 2, 100, 0), - [1563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_span, 5, 100, 4), - [1565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_span, 5, 100, 4), + [1563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_span, 5, 100, 17), + [1565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_span, 5, 100, 17), [1567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element, 2, 0, 0), [1569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__element, 2, 0, 0), [1571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_without_trailing_space, 1, 0, 0), - [1573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_attribute, 4, 0, 7), - [1575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_attribute, 4, 0, 7), + [1573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_attribute, 4, 0, 16), + [1575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_attribute, 4, 0, 16), [1577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_attribute, 3, 0, 0), [1579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_attribute, 3, 0, 0), [1581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__curly_bracket_span_fallback, 2, 0, 0), @@ -40377,11 +40484,11 @@ static const TSParseActionEntry ts_parse_actions[] = { [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [1656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_with_newline, 4, 0, 4), - [1658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 1, 0, 2), + [1656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_with_newline, 4, 0, 20), + [1658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 1, 0, 9), [1660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 1, 0, 0), - [1662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, 0, 0), - [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value, 3, 0, 0), + [1662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, 0, 15), + [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value, 3, 0, 19), [1666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_with_newline, 3, 0, 0), [1668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 3, 0, 0), [1670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_name, 1, 0, 0), @@ -41301,6 +41408,9 @@ TS_PUBLIC const TSLanguage *tree_sitter_djot_inline(void) { .small_parse_table_map = ts_small_parse_table_map, .parse_actions = ts_parse_actions, .symbol_names = ts_symbol_names, + .field_names = ts_field_names, + .field_map_slices = ts_field_map_slices, + .field_map_entries = ts_field_map_entries, .symbol_metadata = ts_symbol_metadata, .public_symbol_map = ts_symbol_map, .alias_map = ts_non_terminal_alias_map, diff --git a/tree-sitter-djot/grammar.js b/tree-sitter-djot/grammar.js index f9d04f5..6df6d3f 100644 --- a/tree-sitter-djot/grammar.js +++ b/tree-sitter-djot/grammar.js @@ -19,9 +19,9 @@ module.exports = grammar({ seq( $.frontmatter_marker, $._whitespace, - optional($.language), + optional(field("language", $.language)), $._newline, - $.frontmatter_content, + field("content", $.frontmatter_content), $.frontmatter_marker, $._newline, ), @@ -53,8 +53,11 @@ module.exports = grammar({ // Section should end by a new header with the same or fewer amount of `#`. section: ($) => seq( - $.heading, - alias(repeat($._block_with_section), $.section_content), + field("heading", $.heading), + field( + "content", + alias(repeat($._block_with_section), $.section_content), + ), $._block_close, ), @@ -62,8 +65,8 @@ module.exports = grammar({ // that can be continued on the next line. heading: ($) => seq( - alias($._heading_begin, $.marker), - alias($._heading_content, $.content), + field("marker", alias($._heading_begin, $.marker)), + field("content", alias($._heading_content, $.inline)), $._block_close, optional($._eof_or_newline), ), @@ -105,8 +108,8 @@ module.exports = grammar({ _list_item_dash: ($) => seq( optional($._block_quote_prefix), - $.list_marker_dash, - $.list_item_content, + field("marker", $.list_marker_dash), + field("content", $.list_item_content), ), _list_plus: ($) => @@ -114,8 +117,8 @@ module.exports = grammar({ _list_item_plus: ($) => seq( optional($._block_quote_prefix), - $.list_marker_plus, - $.list_item_content, + field("marker", $.list_marker_plus), + field("content", $.list_item_content), ), _list_star: ($) => @@ -123,8 +126,8 @@ module.exports = grammar({ _list_item_star: ($) => seq( optional($._block_quote_prefix), - $.list_marker_star, - $.list_item_content, + field("marker", $.list_marker_star), + field("content", $.list_item_content), ), _list_task: ($) => @@ -132,13 +135,13 @@ module.exports = grammar({ _list_item_task: ($) => seq( optional($._block_quote_prefix), - $.list_marker_task, - $.list_item_content, + field("marker", $.list_marker_task), + field("content", $.list_item_content), ), list_marker_task: ($) => seq( $._list_marker_task_begin, - choice($.checked, $.unchecked), + field("checkmark", choice($.checked, $.unchecked)), $._whitespace1, ), checked: (_) => seq("[", choice("x", "X"), "]"), @@ -148,20 +151,23 @@ module.exports = grammar({ seq(repeat1(alias($._list_item_definition, $.list_item)), $._block_close), _list_item_definition: ($) => seq( - $.list_marker_definition, - alias($._paragraph_content, $.term), + field("marker", $.list_marker_definition), + field("term", alias($._paragraph_content, $.term)), choice($._eof_or_newline, $._close_paragraph), - alias( - optional( - repeat( - seq( - optional($._block_quote_prefix), - $._list_item_continuation, - $._block_with_heading, + field( + "definition", + alias( + optional( + repeat( + seq( + optional($._block_quote_prefix), + $._list_item_continuation, + $._block_with_heading, + ), ), ), + $.definition, ), - $.definition, ), $._list_item_end, ), @@ -172,21 +178,30 @@ module.exports = grammar({ $._block_close, ), _list_item_decimal_period: ($) => - seq($.list_marker_decimal_period, $.list_item_content), + seq( + field("marker", $.list_marker_decimal_period), + field("content", $.list_item_content), + ), _list_decimal_paren: ($) => seq( repeat1(alias($._list_item_decimal_paren, $.list_item)), $._block_close, ), _list_item_decimal_paren: ($) => - seq($.list_marker_decimal_paren, $.list_item_content), + seq( + field("marker", $.list_marker_decimal_paren), + field("content", $.list_item_content), + ), _list_decimal_parens: ($) => seq( repeat1(alias($._list_item_decimal_parens, $.list_item)), $._block_close, ), _list_item_decimal_parens: ($) => - seq($.list_marker_decimal_parens, $.list_item_content), + seq( + field("marker", $.list_marker_decimal_parens), + field("content", $.list_item_content), + ), _list_lower_alpha_period: ($) => seq( @@ -194,21 +209,30 @@ module.exports = grammar({ $._block_close, ), _list_item_lower_alpha_period: ($) => - seq($.list_marker_lower_alpha_period, $.list_item_content), + seq( + field("marker", $.list_marker_lower_alpha_period), + field("content", $.list_item_content), + ), _list_lower_alpha_paren: ($) => seq( repeat1(alias($._list_item_lower_alpha_paren, $.list_item)), $._block_close, ), _list_item_lower_alpha_paren: ($) => - seq($.list_marker_lower_alpha_paren, $.list_item_content), + seq( + field("marker", $.list_marker_lower_alpha_paren), + field("content", $.list_item_content), + ), _list_lower_alpha_parens: ($) => seq( repeat1(alias($._list_item_lower_alpha_parens, $.list_item)), $._block_close, ), _list_item_lower_alpha_parens: ($) => - seq($.list_marker_lower_alpha_parens, $.list_item_content), + seq( + field("marker", $.list_marker_lower_alpha_parens), + field("content", $.list_item_content), + ), _list_upper_alpha_period: ($) => seq( @@ -216,21 +240,30 @@ module.exports = grammar({ $._block_close, ), _list_item_upper_alpha_period: ($) => - seq($.list_marker_upper_alpha_period, $.list_item_content), + seq( + field("marker", $.list_marker_upper_alpha_period), + field("content", $.list_item_content), + ), _list_upper_alpha_paren: ($) => seq( repeat1(alias($._list_item_upper_alpha_paren, $.list_item)), $._block_close, ), _list_item_upper_alpha_paren: ($) => - seq($.list_marker_upper_alpha_paren, $.list_item_content), + seq( + field("marker", $.list_marker_upper_alpha_paren), + field("content", $.list_item_content), + ), _list_upper_alpha_parens: ($) => seq( repeat1(alias($._list_item_upper_alpha_parens, $.list_item)), $._block_close, ), _list_item_upper_alpha_parens: ($) => - seq($.list_marker_upper_alpha_parens, $.list_item_content), + seq( + field("marker", $.list_marker_upper_alpha_parens), + field("content", $.list_item_content), + ), _list_lower_roman_period: ($) => seq( @@ -238,21 +271,30 @@ module.exports = grammar({ $._block_close, ), _list_item_lower_roman_period: ($) => - seq($.list_marker_lower_roman_period, $.list_item_content), + seq( + field("marker", $.list_marker_lower_roman_period), + field("content", $.list_item_content), + ), _list_lower_roman_paren: ($) => seq( repeat1(alias($._list_item_lower_roman_paren, $.list_item)), $._block_close, ), _list_item_lower_roman_paren: ($) => - seq($.list_marker_lower_roman_paren, $.list_item_content), + seq( + field("marker", $.list_marker_lower_roman_paren), + field("content", $.list_item_content), + ), _list_lower_roman_parens: ($) => seq( repeat1(alias($._list_item_lower_roman_parens, $.list_item)), $._block_close, ), _list_item_lower_roman_parens: ($) => - seq($.list_marker_lower_roman_parens, $.list_item_content), + seq( + field("marker", $.list_marker_lower_roman_parens), + field("content", $.list_item_content), + ), _list_upper_roman_period: ($) => seq( @@ -260,21 +302,30 @@ module.exports = grammar({ $._block_close, ), _list_item_upper_roman_period: ($) => - seq($.list_marker_upper_roman_period, $.list_item_content), + seq( + field("marker", $.list_marker_upper_roman_period), + field("content", $.list_item_content), + ), _list_upper_roman_paren: ($) => seq( repeat1(alias($._list_item_upper_roman_paren, $.list_item)), $._block_close, ), _list_item_upper_roman_paren: ($) => - seq($.list_marker_upper_roman_paren, $.list_item_content), + seq( + field("marker", $.list_marker_upper_roman_paren), + field("content", $.list_item_content), + ), _list_upper_roman_parens: ($) => seq( repeat1(alias($._list_item_upper_roman_parens, $.list_item)), $._block_close, ), _list_item_upper_roman_parens: ($) => - seq($.list_marker_upper_roman_parens, $.list_item_content), + seq( + field("marker", $.list_marker_upper_roman_parens), + field("content", $.list_item_content), + ), list_item_content: ($) => seq( @@ -328,11 +379,11 @@ module.exports = grammar({ ), ), table_cell_alignment: (_) => token.immediate(prec(100, /\s*:?-+:?\s*/)), - table_cell: ($) => $._inline, + table_cell: ($) => alias($._inline, $.inline), table_caption: ($) => seq( - alias($._table_caption_begin, $.marker), - alias(repeat1($._inline_line), $.content), + field("marker", alias($._table_caption_begin, $.marker)), + field("content", alias(repeat1($._inline_line), $.content)), choice($._table_caption_end, "\0"), ), @@ -340,9 +391,9 @@ module.exports = grammar({ seq( $.footnote_marker_begin, $._footnote_mark_begin, - $.reference_label, + field("label", $.reference_label), alias("]:", $.footnote_marker_end), - $.footnote_content, + field("content", $.footnote_content), $._footnote_end, ), footnote_marker_begin: (_) => "[^", @@ -350,24 +401,27 @@ module.exports = grammar({ div: ($) => seq( - $.div_marker_begin, + $._div_marker_begin, $._newline, - alias(repeat($._block_with_heading), $.content), + field("content", alias(repeat($._block_with_heading), $.content)), optional($._block_quote_prefix), $._block_close, optional(seq(alias($._div_end, $.div_marker_end), $._newline)), ), - div_marker_begin: ($) => - seq($._div_begin, optional(seq($._whitespace1, $.class_name))), + _div_marker_begin: ($) => + seq( + alias($._div_begin, $.div_marker_begin), + optional(seq($._whitespace1, field("class", $.class_name))), + ), class_name: ($) => $._id, code_block: ($) => seq( alias($._code_block_begin, $.code_block_marker_begin), $._whitespace, - optional($.language), + optional(field("language", $.language)), $._newline, - optional($.code), + optional(field("code", $.code)), $._block_close, optional( seq(alias($._code_block_end, $.code_block_marker_end), $._newline), @@ -377,15 +431,19 @@ module.exports = grammar({ seq( alias($._code_block_begin, $.raw_block_marker_begin), $._whitespace, - $.raw_block_info, + field("info", $.raw_block_info), $._newline, - optional(alias($.code, $.content)), + field("content", optional(alias($.code, $.content))), $._block_close, optional( seq(alias($._code_block_end, $.raw_block_marker_end), $._newline), ), ), - raw_block_info: ($) => seq(alias("=", $.language_marker), $.language), + raw_block_info: ($) => + seq( + field("marker", alias("=", $.language_marker)), + field("language", $.language), + ), language: (_) => /[^\n\t \{\}=]+/, code: ($) => @@ -398,7 +456,7 @@ module.exports = grammar({ block_quote: ($) => seq( alias($._block_quote_begin, $.block_quote_marker), - alias($._block_quote_content, $.content), + field("content", alias($._block_quote_content, $.content)), $._block_close, ), _block_quote_content: ($) => @@ -416,38 +474,41 @@ module.exports = grammar({ link_reference_definition: ($) => seq( "[", - $.link_label, + field("label", $.link_label), "]", ":", $._whitespace1, - $.link_destination, + field("destination", $.link_destination), $._whitespace, $._one_or_two_newlines, ), - link_label: ($) => $._inline, + link_label: ($) => alias($._inline, $.inline), link_destination: (_) => /\S+/, block_attribute: ($) => seq( "{", - alias( - repeat( - choice( - $.class, - $.identifier, - $.key_value, - alias($._comment_no_newline, $.comment), - $._whitespace1, + field( + "args", + alias( + repeat( + choice( + $.class, + $.identifier, + $.key_value, + alias($._comment_no_newline, $.comment), + $._whitespace1, + ), ), + $.args, ), - $.args, ), "}", $._newline, ), class: ($) => seq(".", alias($.class_name, "class")), identifier: (_) => token(seq("#", token.immediate(/[^\s\}]+/))), - key_value: ($) => seq($.key, "=", $.value), + key_value: ($) => seq(field("key", $.key), "=", field("value", $.value)), key: ($) => $._id, value: (_) => choice(seq('"', /[^"\n]+/, '"'), /\w+/), @@ -469,7 +530,9 @@ module.exports = grammar({ // to not select newline up to following text. choice($._eof_or_newline, $._close_paragraph), ), - _paragraph_content: ($) => + _paragraph_content: ($) => alias($._paragraph_inline_content, $.inline), + + _paragraph_inline_content: ($) => // Newlines inside inline blocks should be of the `_newline_inline` type. seq( optional($._block_quote_prefix), @@ -519,7 +582,10 @@ module.exports = grammar({ _comment_no_newline: ($) => seq( "%", - alias(repeat(choice($.backslash_escape, /[^%\n]/)), $.content), + field( + "content", + alias(repeat(choice($.backslash_escape, /[^%\n]/)), $.content), + ), "%", ), }, diff --git a/tree-sitter-djot/queries/injections.scm b/tree-sitter-djot/queries/injections.scm index bebffd9..58a2a18 100644 --- a/tree-sitter-djot/queries/injections.scm +++ b/tree-sitter-djot/queries/injections.scm @@ -11,8 +11,5 @@ (language) @injection.language (frontmatter_content) @injection.content) -((table_cell) @injection.content (#set! injection.language "djot_inline")) -((link_label) @injection.content (#set! injection.language "djot_inline")) -((paragraph) @injection.content (#set! injection.language "djot_inline")) -((table_caption (content) @injection.content (#set! injection.language "djot_inline"))) -((heading (content) @injection.content (#set! injection.language "djot_inline"))) +((inline) @injection.content + (#set! injection.language "djot_inline")) diff --git a/tree-sitter-djot/queries/textobjects.scm b/tree-sitter-djot/queries/textobjects.scm index e00d2f6..9c48d5e 100644 --- a/tree-sitter-djot/queries/textobjects.scm +++ b/tree-sitter-djot/queries/textobjects.scm @@ -13,7 +13,7 @@ ; Functions, the next level (heading - (content) @function.inner) @function.outer + (inline) @function.inner) @function.outer (div (content) @function.inner) @function.outer @@ -55,38 +55,6 @@ (block_attribute (args) @attribute.inner) @attribute.outer -; (inline_attribute -; (args) @attribute.inner) @attribute.outer - -; (table_caption -; (content) @attribute.inner) @attribute.outer -; -; (emphasis -; (content) @attribute.inner) @attribute.outer -; -; (strong -; (content) @attribute.inner) @attribute.outer -; -; (highlighted -; (content) @attribute.inner) @attribute.outer -; -; (insert -; (content) @attribute.inner) @attribute.outer -; -; (delete -; (content) @attribute.inner) @attribute.outer -; -; (symbol) @attribute.outer -; -; (superscript -; (content) @attribute.inner) @attribute.outer -; -; (subscript -; (content) @attribute.inner) @attribute.outer -; -; (verbatim -; (content) @attribute.inner) @attribute.outer - ; Parameters, inside a description of a thing [ (class_name) diff --git a/tree-sitter-djot/src/grammar.json b/tree-sitter-djot/src/grammar.json index ae6fb9c..3036588 100644 --- a/tree-sitter-djot/src/grammar.json +++ b/tree-sitter-djot/src/grammar.json @@ -1,4 +1,5 @@ { + "$schema": "https://tree-sitter.github.io/tree-sitter/assets/schemas/grammar.schema.json", "name": "djot", "rules": { "document": { @@ -40,8 +41,12 @@ "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "language" + "type": "FIELD", + "name": "language", + "content": { + "type": "SYMBOL", + "name": "language" + } }, { "type": "BLANK" @@ -53,8 +58,12 @@ "name": "_newline" }, { - "type": "SYMBOL", - "name": "frontmatter_content" + "type": "FIELD", + "name": "content", + "content": { + "type": "SYMBOL", + "name": "frontmatter_content" + } }, { "type": "SYMBOL", @@ -177,20 +186,28 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "heading" + "type": "FIELD", + "name": "heading", + "content": { + "type": "SYMBOL", + "name": "heading" + } }, { - "type": "ALIAS", + "type": "FIELD", + "name": "content", "content": { - "type": "REPEAT", + "type": "ALIAS", "content": { - "type": "SYMBOL", - "name": "_block_with_section" - } - }, - "named": true, - "value": "section_content" + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_block_with_section" + } + }, + "named": true, + "value": "section_content" + } }, { "type": "SYMBOL", @@ -202,22 +219,30 @@ "type": "SEQ", "members": [ { - "type": "ALIAS", + "type": "FIELD", + "name": "marker", "content": { - "type": "SYMBOL", - "name": "_heading_begin" - }, - "named": true, - "value": "marker" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_heading_begin" + }, + "named": true, + "value": "marker" + } }, { - "type": "ALIAS", + "type": "FIELD", + "name": "content", "content": { - "type": "SYMBOL", - "name": "_heading_content" - }, - "named": true, - "value": "content" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_heading_content" + }, + "named": true, + "value": "inline" + } }, { "type": "SYMBOL", @@ -393,12 +418,20 @@ ] }, { - "type": "SYMBOL", - "name": "list_marker_dash" + "type": "FIELD", + "name": "marker", + "content": { + "type": "SYMBOL", + "name": "list_marker_dash" + } }, { - "type": "SYMBOL", - "name": "list_item_content" + "type": "FIELD", + "name": "content", + "content": { + "type": "SYMBOL", + "name": "list_item_content" + } } ] }, @@ -439,12 +472,20 @@ ] }, { - "type": "SYMBOL", - "name": "list_marker_plus" + "type": "FIELD", + "name": "marker", + "content": { + "type": "SYMBOL", + "name": "list_marker_plus" + } }, { - "type": "SYMBOL", - "name": "list_item_content" + "type": "FIELD", + "name": "content", + "content": { + "type": "SYMBOL", + "name": "list_item_content" + } } ] }, @@ -485,12 +526,20 @@ ] }, { - "type": "SYMBOL", - "name": "list_marker_star" + "type": "FIELD", + "name": "marker", + "content": { + "type": "SYMBOL", + "name": "list_marker_star" + } }, { - "type": "SYMBOL", - "name": "list_item_content" + "type": "FIELD", + "name": "content", + "content": { + "type": "SYMBOL", + "name": "list_item_content" + } } ] }, @@ -531,12 +580,20 @@ ] }, { - "type": "SYMBOL", - "name": "list_marker_task" + "type": "FIELD", + "name": "marker", + "content": { + "type": "SYMBOL", + "name": "list_marker_task" + } }, { - "type": "SYMBOL", - "name": "list_item_content" + "type": "FIELD", + "name": "content", + "content": { + "type": "SYMBOL", + "name": "list_item_content" + } } ] }, @@ -548,17 +605,21 @@ "name": "_list_marker_task_begin" }, { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "checked" - }, - { - "type": "SYMBOL", - "name": "unchecked" - } - ] + "type": "FIELD", + "name": "checkmark", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "checked" + }, + { + "type": "SYMBOL", + "name": "unchecked" + } + ] + } }, { "type": "SYMBOL", @@ -634,17 +695,25 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "list_marker_definition" + "type": "FIELD", + "name": "marker", + "content": { + "type": "SYMBOL", + "name": "list_marker_definition" + } }, { - "type": "ALIAS", + "type": "FIELD", + "name": "term", "content": { - "type": "SYMBOL", - "name": "_paragraph_content" - }, - "named": true, - "value": "term" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_paragraph_content" + }, + "named": true, + "value": "term" + } }, { "type": "CHOICE", @@ -660,45 +729,49 @@ ] }, { - "type": "ALIAS", + "type": "FIELD", + "name": "definition", "content": { - "type": "CHOICE", - "members": [ - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_block_quote_prefix" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_list_item_continuation" - }, - { - "type": "SYMBOL", - "name": "_block_with_heading" - } - ] + "type": "ALIAS", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_block_quote_prefix" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "_list_item_continuation" + }, + { + "type": "SYMBOL", + "name": "_block_with_heading" + } + ] + } + }, + { + "type": "BLANK" } - }, - { - "type": "BLANK" - } - ] - }, - "named": true, - "value": "definition" + ] + }, + "named": true, + "value": "definition" + } }, { "type": "SYMBOL", @@ -731,12 +804,20 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "list_marker_decimal_period" + "type": "FIELD", + "name": "marker", + "content": { + "type": "SYMBOL", + "name": "list_marker_decimal_period" + } }, { - "type": "SYMBOL", - "name": "list_item_content" + "type": "FIELD", + "name": "content", + "content": { + "type": "SYMBOL", + "name": "list_item_content" + } } ] }, @@ -765,12 +846,20 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "list_marker_decimal_paren" + "type": "FIELD", + "name": "marker", + "content": { + "type": "SYMBOL", + "name": "list_marker_decimal_paren" + } }, { - "type": "SYMBOL", - "name": "list_item_content" + "type": "FIELD", + "name": "content", + "content": { + "type": "SYMBOL", + "name": "list_item_content" + } } ] }, @@ -799,12 +888,20 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "list_marker_decimal_parens" + "type": "FIELD", + "name": "marker", + "content": { + "type": "SYMBOL", + "name": "list_marker_decimal_parens" + } }, { - "type": "SYMBOL", - "name": "list_item_content" + "type": "FIELD", + "name": "content", + "content": { + "type": "SYMBOL", + "name": "list_item_content" + } } ] }, @@ -833,12 +930,20 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "list_marker_lower_alpha_period" + "type": "FIELD", + "name": "marker", + "content": { + "type": "SYMBOL", + "name": "list_marker_lower_alpha_period" + } }, { - "type": "SYMBOL", - "name": "list_item_content" + "type": "FIELD", + "name": "content", + "content": { + "type": "SYMBOL", + "name": "list_item_content" + } } ] }, @@ -867,12 +972,20 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "list_marker_lower_alpha_paren" + "type": "FIELD", + "name": "marker", + "content": { + "type": "SYMBOL", + "name": "list_marker_lower_alpha_paren" + } }, { - "type": "SYMBOL", - "name": "list_item_content" + "type": "FIELD", + "name": "content", + "content": { + "type": "SYMBOL", + "name": "list_item_content" + } } ] }, @@ -901,12 +1014,20 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "list_marker_lower_alpha_parens" + "type": "FIELD", + "name": "marker", + "content": { + "type": "SYMBOL", + "name": "list_marker_lower_alpha_parens" + } }, { - "type": "SYMBOL", - "name": "list_item_content" + "type": "FIELD", + "name": "content", + "content": { + "type": "SYMBOL", + "name": "list_item_content" + } } ] }, @@ -935,12 +1056,20 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "list_marker_upper_alpha_period" + "type": "FIELD", + "name": "marker", + "content": { + "type": "SYMBOL", + "name": "list_marker_upper_alpha_period" + } }, { - "type": "SYMBOL", - "name": "list_item_content" + "type": "FIELD", + "name": "content", + "content": { + "type": "SYMBOL", + "name": "list_item_content" + } } ] }, @@ -969,12 +1098,20 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "list_marker_upper_alpha_paren" + "type": "FIELD", + "name": "marker", + "content": { + "type": "SYMBOL", + "name": "list_marker_upper_alpha_paren" + } }, { - "type": "SYMBOL", - "name": "list_item_content" + "type": "FIELD", + "name": "content", + "content": { + "type": "SYMBOL", + "name": "list_item_content" + } } ] }, @@ -1003,12 +1140,20 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "list_marker_upper_alpha_parens" + "type": "FIELD", + "name": "marker", + "content": { + "type": "SYMBOL", + "name": "list_marker_upper_alpha_parens" + } }, { - "type": "SYMBOL", - "name": "list_item_content" + "type": "FIELD", + "name": "content", + "content": { + "type": "SYMBOL", + "name": "list_item_content" + } } ] }, @@ -1037,12 +1182,20 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "list_marker_lower_roman_period" + "type": "FIELD", + "name": "marker", + "content": { + "type": "SYMBOL", + "name": "list_marker_lower_roman_period" + } }, { - "type": "SYMBOL", - "name": "list_item_content" + "type": "FIELD", + "name": "content", + "content": { + "type": "SYMBOL", + "name": "list_item_content" + } } ] }, @@ -1071,12 +1224,20 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "list_marker_lower_roman_paren" + "type": "FIELD", + "name": "marker", + "content": { + "type": "SYMBOL", + "name": "list_marker_lower_roman_paren" + } }, { - "type": "SYMBOL", - "name": "list_item_content" + "type": "FIELD", + "name": "content", + "content": { + "type": "SYMBOL", + "name": "list_item_content" + } } ] }, @@ -1105,12 +1266,20 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "list_marker_lower_roman_parens" + "type": "FIELD", + "name": "marker", + "content": { + "type": "SYMBOL", + "name": "list_marker_lower_roman_parens" + } }, { - "type": "SYMBOL", - "name": "list_item_content" + "type": "FIELD", + "name": "content", + "content": { + "type": "SYMBOL", + "name": "list_item_content" + } } ] }, @@ -1139,12 +1308,20 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "list_marker_upper_roman_period" + "type": "FIELD", + "name": "marker", + "content": { + "type": "SYMBOL", + "name": "list_marker_upper_roman_period" + } }, { - "type": "SYMBOL", - "name": "list_item_content" + "type": "FIELD", + "name": "content", + "content": { + "type": "SYMBOL", + "name": "list_item_content" + } } ] }, @@ -1173,12 +1350,20 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "list_marker_upper_roman_paren" + "type": "FIELD", + "name": "marker", + "content": { + "type": "SYMBOL", + "name": "list_marker_upper_roman_paren" + } }, { - "type": "SYMBOL", - "name": "list_item_content" + "type": "FIELD", + "name": "content", + "content": { + "type": "SYMBOL", + "name": "list_item_content" + } } ] }, @@ -1207,12 +1392,20 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "list_marker_upper_roman_parens" + "type": "FIELD", + "name": "marker", + "content": { + "type": "SYMBOL", + "name": "list_marker_upper_roman_parens" + } }, { - "type": "SYMBOL", - "name": "list_item_content" + "type": "FIELD", + "name": "content", + "content": { + "type": "SYMBOL", + "name": "list_item_content" + } } ] }, @@ -1454,32 +1647,45 @@ } }, "table_cell": { - "type": "SYMBOL", - "name": "_inline" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_inline" + }, + "named": true, + "value": "inline" }, "table_caption": { "type": "SEQ", "members": [ { - "type": "ALIAS", + "type": "FIELD", + "name": "marker", "content": { - "type": "SYMBOL", - "name": "_table_caption_begin" - }, - "named": true, - "value": "marker" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_table_caption_begin" + }, + "named": true, + "value": "marker" + } }, { - "type": "ALIAS", + "type": "FIELD", + "name": "content", "content": { - "type": "REPEAT1", + "type": "ALIAS", "content": { - "type": "SYMBOL", - "name": "_inline_line" - } - }, - "named": true, - "value": "content" + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "_inline_line" + } + }, + "named": true, + "value": "content" + } }, { "type": "CHOICE", @@ -1508,8 +1714,12 @@ "name": "_footnote_mark_begin" }, { - "type": "SYMBOL", - "name": "reference_label" + "type": "FIELD", + "name": "label", + "content": { + "type": "SYMBOL", + "name": "reference_label" + } }, { "type": "ALIAS", @@ -1521,8 +1731,12 @@ "value": "footnote_marker_end" }, { - "type": "SYMBOL", - "name": "footnote_content" + "type": "FIELD", + "name": "content", + "content": { + "type": "SYMBOL", + "name": "footnote_content" + } }, { "type": "SYMBOL", @@ -1546,23 +1760,27 @@ "members": [ { "type": "SYMBOL", - "name": "div_marker_begin" + "name": "_div_marker_begin" }, { "type": "SYMBOL", "name": "_newline" }, { - "type": "ALIAS", + "type": "FIELD", + "name": "content", "content": { - "type": "REPEAT", + "type": "ALIAS", "content": { - "type": "SYMBOL", - "name": "_block_with_heading" - } - }, - "named": true, - "value": "content" + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_block_with_heading" + } + }, + "named": true, + "value": "content" + } }, { "type": "CHOICE", @@ -1608,12 +1826,17 @@ } ] }, - "div_marker_begin": { + "_div_marker_begin": { "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "_div_begin" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_div_begin" + }, + "named": true, + "value": "div_marker_begin" }, { "type": "CHOICE", @@ -1626,8 +1849,12 @@ "name": "_whitespace1" }, { - "type": "SYMBOL", - "name": "class_name" + "type": "FIELD", + "name": "class", + "content": { + "type": "SYMBOL", + "name": "class_name" + } } ] }, @@ -1662,8 +1889,12 @@ "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "language" + "type": "FIELD", + "name": "language", + "content": { + "type": "SYMBOL", + "name": "language" + } }, { "type": "BLANK" @@ -1678,8 +1909,12 @@ "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "code" + "type": "FIELD", + "name": "code", + "content": { + "type": "SYMBOL", + "name": "code" + } }, { "type": "BLANK" @@ -1735,29 +1970,37 @@ "name": "_whitespace" }, { - "type": "SYMBOL", - "name": "raw_block_info" + "type": "FIELD", + "name": "info", + "content": { + "type": "SYMBOL", + "name": "raw_block_info" + } }, { "type": "SYMBOL", "name": "_newline" }, { - "type": "CHOICE", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "code" + "type": "FIELD", + "name": "content", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "code" + }, + "named": true, + "value": "content" }, - "named": true, - "value": "content" - }, - { - "type": "BLANK" - } - ] + { + "type": "BLANK" + } + ] + } }, { "type": "SYMBOL", @@ -1795,17 +2038,25 @@ "type": "SEQ", "members": [ { - "type": "ALIAS", + "type": "FIELD", + "name": "marker", "content": { - "type": "STRING", - "value": "=" - }, - "named": true, - "value": "language_marker" + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "=" + }, + "named": true, + "value": "language_marker" + } }, { - "type": "SYMBOL", - "name": "language" + "type": "FIELD", + "name": "language", + "content": { + "type": "SYMBOL", + "name": "language" + } } ] }, @@ -1880,13 +2131,17 @@ "value": "block_quote_marker" }, { - "type": "ALIAS", + "type": "FIELD", + "name": "content", "content": { - "type": "SYMBOL", - "name": "_block_quote_content" - }, - "named": true, - "value": "content" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_block_quote_content" + }, + "named": true, + "value": "content" + } }, { "type": "SYMBOL", @@ -1964,8 +2219,12 @@ "value": "[" }, { - "type": "SYMBOL", - "name": "link_label" + "type": "FIELD", + "name": "label", + "content": { + "type": "SYMBOL", + "name": "link_label" + } }, { "type": "STRING", @@ -1980,8 +2239,12 @@ "name": "_whitespace1" }, { - "type": "SYMBOL", - "name": "link_destination" + "type": "FIELD", + "name": "destination", + "content": { + "type": "SYMBOL", + "name": "link_destination" + } }, { "type": "SYMBOL", @@ -1994,8 +2257,13 @@ ] }, "link_label": { - "type": "SYMBOL", - "name": "_inline" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_inline" + }, + "named": true, + "value": "inline" }, "link_destination": { "type": "PATTERN", @@ -2009,42 +2277,46 @@ "value": "{" }, { - "type": "ALIAS", + "type": "FIELD", + "name": "args", "content": { - "type": "REPEAT", + "type": "ALIAS", "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "class" - }, - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "SYMBOL", - "name": "key_value" - }, - { - "type": "ALIAS", - "content": { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { "type": "SYMBOL", - "name": "_comment_no_newline" + "name": "class" }, - "named": true, - "value": "comment" - }, - { - "type": "SYMBOL", - "name": "_whitespace1" - } - ] - } - }, - "named": true, - "value": "args" + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "key_value" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_comment_no_newline" + }, + "named": true, + "value": "comment" + }, + { + "type": "SYMBOL", + "name": "_whitespace1" + } + ] + } + }, + "named": true, + "value": "args" + } }, { "type": "STRING", @@ -2097,16 +2369,24 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "key" + "type": "FIELD", + "name": "key", + "content": { + "type": "SYMBOL", + "name": "key" + } }, { "type": "STRING", "value": "=" }, { - "type": "SYMBOL", - "name": "value" + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "value" + } } ] }, @@ -2168,6 +2448,15 @@ ] }, "_paragraph_content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_paragraph_inline_content" + }, + "named": true, + "value": "inline" + }, + "_paragraph_inline_content": { "type": "SEQ", "members": [ { @@ -2391,25 +2680,29 @@ "value": "%" }, { - "type": "ALIAS", + "type": "FIELD", + "name": "content", "content": { - "type": "REPEAT", + "type": "ALIAS", "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "backslash_escape" - }, - { - "type": "PATTERN", - "value": "[^%\\n]" - } - ] - } - }, - "named": true, - "value": "content" + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "backslash_escape" + }, + { + "type": "PATTERN", + "value": "[^%\\n]" + } + ] + } + }, + "named": true, + "value": "content" + } }, { "type": "STRING", diff --git a/tree-sitter-djot/src/node-types.json b/tree-sitter-djot/src/node-types.json index acd46b2..6209a5e 100644 --- a/tree-sitter-djot/src/node-types.json +++ b/tree-sitter-djot/src/node-types.json @@ -29,33 +29,41 @@ { "type": "block_attribute", "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "args", - "named": true - } - ] + "fields": { + "args": { + "multiple": false, + "required": false, + "types": [ + { + "type": "args", + "named": true + } + ] + } } }, { "type": "block_quote", "named": true, - "fields": {}, + "fields": { + "content": { + "multiple": false, + "required": true, + "types": [ + { + "type": "content", + "named": true + } + ] + } + }, "children": { - "multiple": true, + "multiple": false, "required": true, "types": [ { "type": "block_quote_marker", "named": true - }, - { - "type": "content", - "named": true } ] } @@ -93,15 +101,32 @@ { "type": "code_block", "named": true, - "fields": {}, + "fields": { + "code": { + "multiple": false, + "required": false, + "types": [ + { + "type": "code", + "named": true + } + ] + }, + "language": { + "multiple": false, + "required": false, + "types": [ + { + "type": "language", + "named": true + } + ] + } + }, "children": { "multiple": true, "required": true, "types": [ - { - "type": "code", - "named": true - }, { "type": "code_block_marker_begin", "named": true @@ -109,10 +134,6 @@ { "type": "code_block_marker_end", "named": true - }, - { - "type": "language", - "named": true } ] } @@ -120,16 +141,17 @@ { "type": "comment", "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "content", - "named": true - } - ] + "fields": { + "content": { + "multiple": false, + "required": false, + "types": [ + { + "type": "content", + "named": true + } + ] + } } }, { @@ -180,10 +202,6 @@ "type": "list", "named": true }, - { - "type": "marker", - "named": true - }, { "type": "paragraph", "named": true @@ -269,7 +287,28 @@ { "type": "div", "named": true, - "fields": {}, + "fields": { + "class": { + "multiple": false, + "required": false, + "types": [ + { + "type": "class_name", + "named": true + } + ] + }, + "content": { + "multiple": false, + "required": false, + "types": [ + { + "type": "content", + "named": true + } + ] + } + }, "children": { "multiple": true, "required": true, @@ -278,10 +317,6 @@ "type": "block_quote_marker", "named": true }, - { - "type": "content", - "named": true - }, { "type": "div_marker_begin", "named": true @@ -293,24 +328,10 @@ ] } }, - { - "type": "div_marker_begin", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "class_name", - "named": true - } - ] - } - }, { "type": "document", "named": true, + "root": true, "fields": {}, "children": { "multiple": true, @@ -374,15 +395,32 @@ { "type": "footnote", "named": true, - "fields": {}, + "fields": { + "content": { + "multiple": false, + "required": true, + "types": [ + { + "type": "footnote_content", + "named": true + } + ] + }, + "label": { + "multiple": false, + "required": true, + "types": [ + { + "type": "reference_label", + "named": true + } + ] + } + }, "children": { "multiple": true, "required": true, "types": [ - { - "type": "footnote_content", - "named": true - }, { "type": "footnote_marker_begin", "named": true @@ -390,10 +428,6 @@ { "type": "footnote_marker_end", "named": true - }, - { - "type": "reference_label", - "named": true } ] } @@ -465,22 +499,35 @@ { "type": "frontmatter", "named": true, - "fields": {}, + "fields": { + "content": { + "multiple": false, + "required": true, + "types": [ + { + "type": "frontmatter_content", + "named": true + } + ] + }, + "language": { + "multiple": false, + "required": false, + "types": [ + { + "type": "language", + "named": true + } + ] + } + }, "children": { "multiple": true, "required": true, "types": [ - { - "type": "frontmatter_content", - "named": true - }, { "type": "frontmatter_marker", "named": true - }, - { - "type": "language", - "named": true } ] } @@ -493,20 +540,27 @@ { "type": "heading", "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "content", - "named": true - }, - { - "type": "marker", - "named": true - } - ] + "fields": { + "content": { + "multiple": false, + "required": true, + "types": [ + { + "type": "inline", + "named": true + } + ] + }, + "marker": { + "multiple": false, + "required": true, + "types": [ + { + "type": "marker", + "named": true + } + ] + } } }, { @@ -515,53 +569,96 @@ "fields": {} }, { - "type": "key", - "named": true, - "fields": {} - }, - { - "type": "key_value", + "type": "inline", "named": true, "fields": {}, "children": { "multiple": true, - "required": true, + "required": false, "types": [ { - "type": "key", + "type": "block_quote_marker", "named": true }, { - "type": "value", + "type": "marker", "named": true } ] } }, { - "type": "link_label", + "type": "key", "named": true, "fields": {} }, { - "type": "link_reference_definition", + "type": "key_value", + "named": true, + "fields": { + "key": { + "multiple": false, + "required": true, + "types": [ + { + "type": "key", + "named": true + } + ] + }, + "value": { + "multiple": false, + "required": true, + "types": [ + { + "type": "value", + "named": true + } + ] + } + } + }, + { + "type": "link_label", "named": true, "fields": {}, "children": { - "multiple": true, + "multiple": false, "required": true, "types": [ { - "type": "link_destination", - "named": true - }, - { - "type": "link_label", + "type": "inline", "named": true } ] } }, + { + "type": "link_reference_definition", + "named": true, + "fields": { + "destination": { + "multiple": false, + "required": true, + "types": [ + { + "type": "link_destination", + "named": true + } + ] + }, + "label": { + "multiple": false, + "required": true, + "types": [ + { + "type": "link_label", + "named": true + } + ] + } + } + }, { "type": "list", "named": true, @@ -580,106 +677,131 @@ { "type": "list_item", "named": true, - "fields": {}, + "fields": { + "content": { + "multiple": false, + "required": false, + "types": [ + { + "type": "list_item_content", + "named": true + } + ] + }, + "definition": { + "multiple": false, + "required": false, + "types": [ + { + "type": "definition", + "named": true + } + ] + }, + "marker": { + "multiple": false, + "required": true, + "types": [ + { + "type": "list_marker_dash", + "named": true + }, + { + "type": "list_marker_decimal_paren", + "named": true + }, + { + "type": "list_marker_decimal_parens", + "named": true + }, + { + "type": "list_marker_decimal_period", + "named": true + }, + { + "type": "list_marker_definition", + "named": true + }, + { + "type": "list_marker_lower_alpha_paren", + "named": true + }, + { + "type": "list_marker_lower_alpha_parens", + "named": true + }, + { + "type": "list_marker_lower_alpha_period", + "named": true + }, + { + "type": "list_marker_lower_roman_paren", + "named": true + }, + { + "type": "list_marker_lower_roman_parens", + "named": true + }, + { + "type": "list_marker_lower_roman_period", + "named": true + }, + { + "type": "list_marker_plus", + "named": true + }, + { + "type": "list_marker_star", + "named": true + }, + { + "type": "list_marker_task", + "named": true + }, + { + "type": "list_marker_upper_alpha_paren", + "named": true + }, + { + "type": "list_marker_upper_alpha_parens", + "named": true + }, + { + "type": "list_marker_upper_alpha_period", + "named": true + }, + { + "type": "list_marker_upper_roman_paren", + "named": true + }, + { + "type": "list_marker_upper_roman_parens", + "named": true + }, + { + "type": "list_marker_upper_roman_period", + "named": true + } + ] + }, + "term": { + "multiple": false, + "required": false, + "types": [ + { + "type": "term", + "named": true + } + ] + } + }, "children": { "multiple": true, - "required": true, + "required": false, "types": [ { "type": "block_quote_marker", "named": true - }, - { - "type": "definition", - "named": true - }, - { - "type": "list_item_content", - "named": true - }, - { - "type": "list_marker_dash", - "named": true - }, - { - "type": "list_marker_decimal_paren", - "named": true - }, - { - "type": "list_marker_decimal_parens", - "named": true - }, - { - "type": "list_marker_decimal_period", - "named": true - }, - { - "type": "list_marker_definition", - "named": true - }, - { - "type": "list_marker_lower_alpha_paren", - "named": true - }, - { - "type": "list_marker_lower_alpha_parens", - "named": true - }, - { - "type": "list_marker_lower_alpha_period", - "named": true - }, - { - "type": "list_marker_lower_roman_paren", - "named": true - }, - { - "type": "list_marker_lower_roman_parens", - "named": true - }, - { - "type": "list_marker_lower_roman_period", - "named": true - }, - { - "type": "list_marker_plus", - "named": true - }, - { - "type": "list_marker_star", - "named": true - }, - { - "type": "list_marker_task", - "named": true - }, - { - "type": "list_marker_upper_alpha_paren", - "named": true - }, - { - "type": "list_marker_upper_alpha_parens", - "named": true - }, - { - "type": "list_marker_upper_alpha_period", - "named": true - }, - { - "type": "list_marker_upper_roman_paren", - "named": true - }, - { - "type": "list_marker_upper_roman_parens", - "named": true - }, - { - "type": "list_marker_upper_roman_period", - "named": true - }, - { - "type": "term", - "named": true } ] } @@ -750,20 +872,21 @@ { "type": "list_marker_task", "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "checked", - "named": true - }, - { - "type": "unchecked", - "named": true - } - ] + "fields": { + "checkmark": { + "multiple": false, + "required": true, + "types": [ + { + "type": "checked", + "named": true + }, + { + "type": "unchecked", + "named": true + } + ] + } } }, { @@ -771,11 +894,11 @@ "named": true, "fields": {}, "children": { - "multiple": true, - "required": false, + "multiple": false, + "required": true, "types": [ { - "type": "block_quote_marker", + "type": "inline", "named": true } ] @@ -784,19 +907,32 @@ { "type": "raw_block", "named": true, - "fields": {}, + "fields": { + "content": { + "multiple": false, + "required": false, + "types": [ + { + "type": "content", + "named": true + } + ] + }, + "info": { + "multiple": false, + "required": true, + "types": [ + { + "type": "raw_block_info", + "named": true + } + ] + } + }, "children": { "multiple": true, "required": true, "types": [ - { - "type": "content", - "named": true - }, - { - "type": "raw_block_info", - "named": true - }, { "type": "raw_block_marker_begin", "named": true @@ -811,20 +947,27 @@ { "type": "raw_block_info", "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "language", - "named": true - }, - { - "type": "language_marker", - "named": true - } - ] + "fields": { + "language": { + "multiple": false, + "required": true, + "types": [ + { + "type": "language", + "named": true + } + ] + }, + "marker": { + "multiple": false, + "required": true, + "types": [ + { + "type": "language_marker", + "named": true + } + ] + } } }, { @@ -835,20 +978,27 @@ { "type": "section", "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "heading", - "named": true - }, - { - "type": "section_content", - "named": true - } - ] + "fields": { + "content": { + "multiple": false, + "required": false, + "types": [ + { + "type": "section_content", + "named": true + } + ] + }, + "heading": { + "multiple": false, + "required": true, + "types": [ + { + "type": "heading", + "named": true + } + ] + } } }, { @@ -940,27 +1090,44 @@ { "type": "table_caption", "named": true, + "fields": { + "content": { + "multiple": false, + "required": true, + "types": [ + { + "type": "content", + "named": true + } + ] + }, + "marker": { + "multiple": false, + "required": true, + "types": [ + { + "type": "marker", + "named": true + } + ] + } + } + }, + { + "type": "table_cell", + "named": true, "fields": {}, "children": { - "multiple": true, + "multiple": false, "required": true, "types": [ { - "type": "content", - "named": true - }, - { - "type": "marker", + "type": "inline", "named": true } ] } }, - { - "type": "table_cell", - "named": true, - "fields": {} - }, { "type": "table_header", "named": true, @@ -1023,11 +1190,11 @@ "named": true, "fields": {}, "children": { - "multiple": true, - "required": false, + "multiple": false, + "required": true, "types": [ { - "type": "block_quote_marker", + "type": "inline", "named": true } ] @@ -1112,6 +1279,10 @@ "type": "code_block_marker_end", "named": true }, + { + "type": "div_marker_begin", + "named": true + }, { "type": "div_marker_end", "named": true diff --git a/tree-sitter-djot/src/parser.c b/tree-sitter-djot/src/parser.c index b1280b2..ae58004 100644 --- a/tree-sitter-djot/src/parser.c +++ b/tree-sitter-djot/src/parser.c @@ -5,15 +5,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 1096 +#define STATE_COUNT 1133 #define LARGE_STATE_COUNT 64 -#define SYMBOL_COUNT 204 +#define SYMBOL_COUNT 205 #define ALIAS_COUNT 9 #define TOKEN_COUNT 77 #define EXTERNAL_TOKEN_COUNT 45 -#define FIELD_COUNT 0 +#define FIELD_COUNT 15 #define MAX_ALIAS_SEQUENCE_LENGTH 8 -#define PRODUCTION_ID_COUNT 15 +#define PRODUCTION_ID_COUNT 36 enum ts_symbol_identifiers { anon_sym_LBRACK = 1, @@ -156,7 +156,7 @@ enum ts_symbol_identifiers { sym_footnote_marker_begin = 138, sym_footnote_content = 139, sym_div = 140, - sym_div_marker_begin = 141, + sym__div_marker_begin = 141, sym_class_name = 142, sym_code_block = 143, sym_raw_block = 144, @@ -177,57 +177,58 @@ enum ts_symbol_identifiers { sym_value = 159, sym__paragraph = 160, sym__paragraph_content = 161, - sym__one_or_two_newlines = 162, - sym__inline = 163, - sym__inline_line = 164, - sym__symbol_fallback = 165, - sym_reference_label = 166, - sym__comment_no_newline = 167, - aux_sym_document_repeat1 = 168, - aux_sym_frontmatter_content_repeat1 = 169, - aux_sym__heading_content_repeat1 = 170, - aux_sym__list_dash_repeat1 = 171, - aux_sym__list_plus_repeat1 = 172, - aux_sym__list_star_repeat1 = 173, - aux_sym__list_task_repeat1 = 174, - aux_sym__list_definition_repeat1 = 175, - aux_sym__list_item_definition_repeat1 = 176, - aux_sym__list_decimal_period_repeat1 = 177, - aux_sym__list_decimal_paren_repeat1 = 178, - aux_sym__list_decimal_parens_repeat1 = 179, - aux_sym__list_lower_alpha_period_repeat1 = 180, - aux_sym__list_lower_alpha_paren_repeat1 = 181, - aux_sym__list_lower_alpha_parens_repeat1 = 182, - aux_sym__list_upper_alpha_period_repeat1 = 183, - aux_sym__list_upper_alpha_paren_repeat1 = 184, - aux_sym__list_upper_alpha_parens_repeat1 = 185, - aux_sym__list_lower_roman_period_repeat1 = 186, - aux_sym__list_lower_roman_paren_repeat1 = 187, - aux_sym__list_lower_roman_parens_repeat1 = 188, - aux_sym__list_upper_roman_period_repeat1 = 189, - aux_sym__list_upper_roman_paren_repeat1 = 190, - aux_sym__list_upper_roman_parens_repeat1 = 191, - aux_sym_table_repeat1 = 192, - aux_sym_table_separator_repeat1 = 193, - aux_sym_table_row_repeat1 = 194, - aux_sym_table_caption_repeat1 = 195, - aux_sym_footnote_content_repeat1 = 196, - aux_sym_code_repeat1 = 197, - aux_sym__block_quote_content_repeat1 = 198, - aux_sym__block_quote_prefix_repeat1 = 199, - aux_sym_block_attribute_repeat1 = 200, - aux_sym__paragraph_content_repeat1 = 201, - aux_sym__inline_repeat1 = 202, - aux_sym__comment_no_newline_repeat1 = 203, - alias_sym_args = 204, - anon_alias_sym_class = 205, - alias_sym_definition = 206, - alias_sym_language_marker = 207, - alias_sym_paragraph = 208, - alias_sym_raw_block_marker_begin = 209, - alias_sym_raw_block_marker_end = 210, - alias_sym_section_content = 211, - alias_sym_table_header = 212, + sym__paragraph_inline_content = 162, + sym__one_or_two_newlines = 163, + sym__inline = 164, + sym__inline_line = 165, + sym__symbol_fallback = 166, + sym_reference_label = 167, + sym__comment_no_newline = 168, + aux_sym_document_repeat1 = 169, + aux_sym_frontmatter_content_repeat1 = 170, + aux_sym__heading_content_repeat1 = 171, + aux_sym__list_dash_repeat1 = 172, + aux_sym__list_plus_repeat1 = 173, + aux_sym__list_star_repeat1 = 174, + aux_sym__list_task_repeat1 = 175, + aux_sym__list_definition_repeat1 = 176, + aux_sym__list_item_definition_repeat1 = 177, + aux_sym__list_decimal_period_repeat1 = 178, + aux_sym__list_decimal_paren_repeat1 = 179, + aux_sym__list_decimal_parens_repeat1 = 180, + aux_sym__list_lower_alpha_period_repeat1 = 181, + aux_sym__list_lower_alpha_paren_repeat1 = 182, + aux_sym__list_lower_alpha_parens_repeat1 = 183, + aux_sym__list_upper_alpha_period_repeat1 = 184, + aux_sym__list_upper_alpha_paren_repeat1 = 185, + aux_sym__list_upper_alpha_parens_repeat1 = 186, + aux_sym__list_lower_roman_period_repeat1 = 187, + aux_sym__list_lower_roman_paren_repeat1 = 188, + aux_sym__list_lower_roman_parens_repeat1 = 189, + aux_sym__list_upper_roman_period_repeat1 = 190, + aux_sym__list_upper_roman_paren_repeat1 = 191, + aux_sym__list_upper_roman_parens_repeat1 = 192, + aux_sym_table_repeat1 = 193, + aux_sym_table_separator_repeat1 = 194, + aux_sym_table_row_repeat1 = 195, + aux_sym_table_caption_repeat1 = 196, + aux_sym_footnote_content_repeat1 = 197, + aux_sym_code_repeat1 = 198, + aux_sym__block_quote_content_repeat1 = 199, + aux_sym__block_quote_prefix_repeat1 = 200, + aux_sym_block_attribute_repeat1 = 201, + aux_sym__paragraph_inline_content_repeat1 = 202, + aux_sym__inline_repeat1 = 203, + aux_sym__comment_no_newline_repeat1 = 204, + alias_sym_args = 205, + anon_alias_sym_class = 206, + alias_sym_definition = 207, + alias_sym_language_marker = 208, + alias_sym_paragraph = 209, + alias_sym_raw_block_marker_begin = 210, + alias_sym_raw_block_marker_end = 211, + alias_sym_section_content = 212, + alias_sym_table_header = 213, }; static const char * const ts_symbol_names[] = { @@ -271,7 +272,7 @@ static const char * const ts_symbol_names[] = { [sym_frontmatter_marker] = "frontmatter_marker", [sym__heading_begin] = "marker", [sym__heading_continuation] = "marker", - [sym__div_begin] = "_div_begin", + [sym__div_begin] = "div_marker_begin", [sym__div_end] = "div_marker_end", [sym__code_block_begin] = "code_block_marker_begin", [sym__code_block_end] = "code_block_marker_end", @@ -316,7 +317,7 @@ static const char * const ts_symbol_names[] = { [sym__block_element] = "_block_element", [sym_section] = "section", [sym_heading] = "heading", - [sym__heading_content] = "content", + [sym__heading_content] = "inline", [sym_list] = "list", [sym__list_dash] = "_list_dash", [sym__list_item_dash] = "list_item", @@ -372,7 +373,7 @@ static const char * const ts_symbol_names[] = { [sym_footnote_marker_begin] = "footnote_marker_begin", [sym_footnote_content] = "footnote_content", [sym_div] = "div", - [sym_div_marker_begin] = "div_marker_begin", + [sym__div_marker_begin] = "_div_marker_begin", [sym_class_name] = "class_name", [sym_code_block] = "code_block", [sym_raw_block] = "raw_block", @@ -393,6 +394,7 @@ static const char * const ts_symbol_names[] = { [sym_value] = "value", [sym__paragraph] = "_paragraph", [sym__paragraph_content] = "term", + [sym__paragraph_inline_content] = "inline", [sym__one_or_two_newlines] = "_one_or_two_newlines", [sym__inline] = "_inline", [sym__inline_line] = "_inline_line", @@ -432,7 +434,7 @@ static const char * const ts_symbol_names[] = { [aux_sym__block_quote_content_repeat1] = "_block_quote_content_repeat1", [aux_sym__block_quote_prefix_repeat1] = "_block_quote_prefix_repeat1", [aux_sym_block_attribute_repeat1] = "block_attribute_repeat1", - [aux_sym__paragraph_content_repeat1] = "_paragraph_content_repeat1", + [aux_sym__paragraph_inline_content_repeat1] = "_paragraph_inline_content_repeat1", [aux_sym__inline_repeat1] = "_inline_repeat1", [aux_sym__comment_no_newline_repeat1] = "_comment_no_newline_repeat1", [alias_sym_args] = "args", @@ -588,7 +590,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_footnote_marker_begin] = sym_footnote_marker_begin, [sym_footnote_content] = sym_footnote_content, [sym_div] = sym_div, - [sym_div_marker_begin] = sym_div_marker_begin, + [sym__div_marker_begin] = sym__div_marker_begin, [sym_class_name] = sym_class_name, [sym_code_block] = sym_code_block, [sym_raw_block] = sym_raw_block, @@ -597,7 +599,7 @@ static const TSSymbol ts_symbol_map[] = { [sym__line] = sym__line, [sym_thematic_break] = sym_thematic_break, [sym_block_quote] = sym_block_quote, - [sym__block_quote_content] = sym__heading_content, + [sym__block_quote_content] = sym__block_quote_content, [sym__block_quote_prefix] = sym__block_quote_prefix, [sym_link_reference_definition] = sym_link_reference_definition, [sym_link_label] = sym_link_label, @@ -609,6 +611,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_value] = sym_value, [sym__paragraph] = sym__paragraph, [sym__paragraph_content] = sym__paragraph_content, + [sym__paragraph_inline_content] = sym__heading_content, [sym__one_or_two_newlines] = sym__one_or_two_newlines, [sym__inline] = sym__inline, [sym__inline_line] = sym__inline_line, @@ -648,7 +651,7 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym__block_quote_content_repeat1] = aux_sym__block_quote_content_repeat1, [aux_sym__block_quote_prefix_repeat1] = aux_sym__block_quote_prefix_repeat1, [aux_sym_block_attribute_repeat1] = aux_sym_block_attribute_repeat1, - [aux_sym__paragraph_content_repeat1] = aux_sym__paragraph_content_repeat1, + [aux_sym__paragraph_inline_content_repeat1] = aux_sym__paragraph_inline_content_repeat1, [aux_sym__inline_repeat1] = aux_sym__inline_repeat1, [aux_sym__comment_no_newline_repeat1] = aux_sym__comment_no_newline_repeat1, [alias_sym_args] = alias_sym_args, @@ -824,7 +827,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .named = true, }, [sym__div_begin] = { - .visible = false, + .visible = true, .named = true, }, [sym__div_end] = { @@ -1227,8 +1230,8 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_div_marker_begin] = { - .visible = true, + [sym__div_marker_begin] = { + .visible = false, .named = true, }, [sym_class_name] = { @@ -1311,6 +1314,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym__paragraph_inline_content] = { + .visible = true, + .named = true, + }, [sym__one_or_two_newlines] = { .visible = false, .named = true, @@ -1467,7 +1474,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym__paragraph_content_repeat1] = { + [aux_sym__paragraph_inline_content_repeat1] = { .visible = false, .named = false, }, @@ -1517,52 +1524,200 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { }, }; +enum ts_field_identifiers { + field_args = 1, + field_checkmark = 2, + field_class = 3, + field_code = 4, + field_content = 5, + field_definition = 6, + field_destination = 7, + field_heading = 8, + field_info = 9, + field_key = 10, + field_label = 11, + field_language = 12, + field_marker = 13, + field_term = 14, + field_value = 15, +}; + +static const char * const ts_field_names[] = { + [0] = NULL, + [field_args] = "args", + [field_checkmark] = "checkmark", + [field_class] = "class", + [field_code] = "code", + [field_content] = "content", + [field_definition] = "definition", + [field_destination] = "destination", + [field_heading] = "heading", + [field_info] = "info", + [field_key] = "key", + [field_label] = "label", + [field_language] = "language", + [field_marker] = "marker", + [field_term] = "term", + [field_value] = "value", +}; + +static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { + [2] = {.index = 0, .length = 2}, + [3] = {.index = 2, .length = 3}, + [4] = {.index = 5, .length = 2}, + [6] = {.index = 7, .length = 1}, + [7] = {.index = 8, .length = 1}, + [10] = {.index = 9, .length = 1}, + [11] = {.index = 10, .length = 1}, + [12] = {.index = 11, .length = 1}, + [14] = {.index = 12, .length = 2}, + [15] = {.index = 14, .length = 1}, + [16] = {.index = 15, .length = 2}, + [17] = {.index = 17, .length = 2}, + [18] = {.index = 19, .length = 2}, + [19] = {.index = 11, .length = 1}, + [20] = {.index = 21, .length = 2}, + [21] = {.index = 23, .length = 1}, + [22] = {.index = 24, .length = 2}, + [23] = {.index = 5, .length = 2}, + [24] = {.index = 26, .length = 1}, + [25] = {.index = 27, .length = 1}, + [26] = {.index = 28, .length = 1}, + [27] = {.index = 29, .length = 3}, + [28] = {.index = 32, .length = 1}, + [29] = {.index = 33, .length = 2}, + [30] = {.index = 35, .length = 2}, + [31] = {.index = 37, .length = 2}, + [32] = {.index = 39, .length = 2}, + [33] = {.index = 28, .length = 1}, + [34] = {.index = 35, .length = 2}, + [35] = {.index = 41, .length = 2}, +}; + +static const TSFieldMapEntry ts_field_map_entries[] = { + [0] = + {field_content, 0, .inherited = true}, + {field_marker, 0, .inherited = true}, + [2] = + {field_definition, 0, .inherited = true}, + {field_marker, 0, .inherited = true}, + {field_term, 0, .inherited = true}, + [5] = + {field_content, 1}, + {field_marker, 0}, + [7] = + {field_content, 0, .inherited = true}, + [8] = + {field_heading, 0}, + [9] = + {field_class, 2}, + [10] = + {field_checkmark, 1}, + [11] = + {field_content, 1}, + [12] = + {field_content, 1}, + {field_heading, 0}, + [14] = + {field_class, 0, .inherited = true}, + [15] = + {field_content, 2}, + {field_marker, 1}, + [17] = + {field_language, 1}, + {field_marker, 0}, + [19] = + {field_marker, 0}, + {field_term, 1}, + [21] = + {field_key, 0}, + {field_value, 2}, + [23] = + {field_args, 1}, + [24] = + {field_class, 0, .inherited = true}, + {field_content, 2}, + [26] = + {field_code, 3}, + [27] = + {field_language, 2}, + [28] = + {field_info, 2}, + [29] = + {field_definition, 3}, + {field_marker, 0}, + {field_term, 1}, + [32] = + {field_content, 3}, + [33] = + {field_code, 4}, + {field_language, 2}, + [35] = + {field_content, 4}, + {field_info, 2}, + [37] = + {field_content, 4}, + {field_label, 2}, + [39] = + {field_content, 4}, + {field_language, 2}, + [41] = + {field_destination, 5}, + {field_label, 1}, +}; + static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { [0] = {0}, [1] = { [0] = sym__block_quote_begin, }, - [2] = { + [5] = { + [0] = sym__heading_content, + }, + [8] = { [0] = alias_sym_table_header, }, - [3] = { + [9] = { [0] = alias_sym_paragraph, }, - [4] = { + [13] = { [1] = anon_alias_sym_class, }, - [5] = { + [14] = { [1] = alias_sym_section_content, }, - [6] = { + [17] = { [0] = alias_sym_language_marker, }, - [7] = { - [1] = sym__heading_content, + [19] = { + [1] = sym__block_quote_content, }, - [8] = { + [21] = { [1] = alias_sym_args, }, - [9] = { - [2] = sym__heading_content, + [22] = { + [2] = sym__block_quote_content, }, - [10] = { + [23] = { + [1] = sym__block_quote_content, + }, + [26] = { [0] = alias_sym_raw_block_marker_begin, }, - [11] = { + [27] = { [3] = alias_sym_definition, }, - [12] = { + [30] = { [0] = alias_sym_raw_block_marker_begin, - [4] = sym__heading_content, + [4] = sym__block_quote_content, }, - [13] = { + [33] = { [0] = alias_sym_raw_block_marker_begin, [5] = alias_sym_raw_block_marker_end, }, - [14] = { + [34] = { [0] = alias_sym_raw_block_marker_begin, - [4] = sym__heading_content, + [4] = sym__block_quote_content, [6] = alias_sym_raw_block_marker_end, }, }; @@ -1576,10 +1731,13 @@ static const uint16_t ts_non_terminal_alias_map[] = { anon_alias_sym_class, sym_code, 2, sym_code, - sym__heading_content, + sym__block_quote_content, sym__paragraph_content, 2, sym__paragraph_content, alias_sym_paragraph, + sym__inline, 2, + sym__inline, + sym__heading_content, aux_sym_document_repeat1, 2, aux_sym_document_repeat1, alias_sym_section_content, @@ -1588,16 +1746,16 @@ static const uint16_t ts_non_terminal_alias_map[] = { alias_sym_definition, aux_sym_table_caption_repeat1, 2, aux_sym_table_caption_repeat1, - sym__heading_content, + sym__block_quote_content, aux_sym_footnote_content_repeat1, 2, aux_sym_footnote_content_repeat1, - sym__heading_content, + sym__block_quote_content, aux_sym_block_attribute_repeat1, 2, aux_sym_block_attribute_repeat1, alias_sym_args, aux_sym__comment_no_newline_repeat1, 2, aux_sym__comment_no_newline_repeat1, - sym__heading_content, + sym__block_quote_content, 0, }; @@ -1606,31 +1764,31 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1] = 1, [2] = 2, [3] = 3, - [4] = 2, + [4] = 4, [5] = 5, [6] = 6, [7] = 7, [8] = 6, - [9] = 9, - [10] = 3, + [9] = 4, + [10] = 7, [11] = 11, [12] = 12, - [13] = 11, + [13] = 13, [14] = 12, [15] = 15, - [16] = 11, + [16] = 16, [17] = 15, - [18] = 12, - [19] = 19, + [18] = 11, + [19] = 13, [20] = 11, - [21] = 15, - [22] = 22, - [23] = 12, - [24] = 15, - [25] = 12, - [26] = 11, - [27] = 15, - [28] = 19, + [21] = 13, + [22] = 11, + [23] = 13, + [24] = 11, + [25] = 13, + [26] = 12, + [27] = 12, + [28] = 12, [29] = 29, [30] = 30, [31] = 31, @@ -1658,13 +1816,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [53] = 53, [54] = 54, [55] = 55, - [56] = 55, - [57] = 54, + [56] = 52, + [57] = 55, [58] = 55, - [59] = 55, - [60] = 54, + [59] = 52, + [60] = 52, [61] = 55, - [62] = 54, + [62] = 55, [63] = 63, [64] = 64, [65] = 64, @@ -1682,62 +1840,62 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [77] = 77, [78] = 78, [79] = 79, - [80] = 76, - [81] = 77, + [80] = 80, + [81] = 81, [82] = 82, [83] = 83, [84] = 84, [85] = 85, [86] = 86, - [87] = 78, - [88] = 84, - [89] = 79, - [90] = 85, + [87] = 87, + [88] = 88, + [89] = 86, + [90] = 87, [91] = 91, - [92] = 82, - [93] = 93, - [94] = 83, - [95] = 95, - [96] = 95, - [97] = 86, - [98] = 77, - [99] = 99, - [100] = 100, - [101] = 76, - [102] = 78, - [103] = 84, - [104] = 91, - [105] = 79, - [106] = 85, - [107] = 107, - [108] = 93, - [109] = 99, - [110] = 107, - [111] = 111, - [112] = 112, - [113] = 113, - [114] = 111, - [115] = 112, - [116] = 113, - [117] = 111, - [118] = 113, - [119] = 100, - [120] = 82, - [121] = 91, - [122] = 107, - [123] = 83, - [124] = 99, - [125] = 93, - [126] = 112, - [127] = 100, - [128] = 86, - [129] = 129, - [130] = 130, - [131] = 131, + [92] = 88, + [93] = 81, + [94] = 94, + [95] = 78, + [96] = 96, + [97] = 97, + [98] = 98, + [99] = 77, + [100] = 79, + [101] = 79, + [102] = 80, + [103] = 81, + [104] = 82, + [105] = 83, + [106] = 84, + [107] = 85, + [108] = 86, + [109] = 87, + [110] = 88, + [111] = 82, + [112] = 94, + [113] = 76, + [114] = 80, + [115] = 83, + [116] = 91, + [117] = 96, + [118] = 97, + [119] = 84, + [120] = 85, + [121] = 98, + [122] = 122, + [123] = 94, + [124] = 76, + [125] = 96, + [126] = 77, + [127] = 97, + [128] = 122, + [129] = 98, + [130] = 91, + [131] = 78, [132] = 132, [133] = 133, [134] = 134, - [135] = 132, + [135] = 135, [136] = 136, [137] = 137, [138] = 138, @@ -1745,959 +1903,996 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [140] = 140, [141] = 141, [142] = 142, - [143] = 133, + [143] = 143, [144] = 144, [145] = 145, [146] = 146, [147] = 147, [148] = 148, - [149] = 144, + [149] = 149, [150] = 150, [151] = 151, [152] = 152, [153] = 153, - [154] = 154, - [155] = 130, + [154] = 132, + [155] = 134, [156] = 156, [157] = 157, [158] = 158, [159] = 159, - [160] = 160, - [161] = 159, - [162] = 162, + [160] = 157, + [161] = 133, + [162] = 136, [163] = 163, - [164] = 129, - [165] = 157, - [166] = 166, - [167] = 167, - [168] = 168, - [169] = 169, + [164] = 164, + [165] = 140, + [166] = 151, + [167] = 156, + [168] = 163, + [169] = 164, [170] = 170, - [171] = 131, + [171] = 171, [172] = 172, [173] = 173, [174] = 174, - [175] = 136, + [175] = 175, [176] = 176, - [177] = 139, + [177] = 177, [178] = 178, - [179] = 142, + [179] = 179, [180] = 180, [181] = 181, - [182] = 145, + [182] = 182, [183] = 183, - [184] = 148, + [184] = 184, [185] = 185, - [186] = 153, - [187] = 150, - [188] = 188, - [189] = 152, - [190] = 151, - [191] = 154, - [192] = 156, - [193] = 158, - [194] = 163, - [195] = 195, - [196] = 160, - [197] = 163, - [198] = 162, - [199] = 129, - [200] = 166, - [201] = 183, - [202] = 159, - [203] = 168, - [204] = 170, - [205] = 178, - [206] = 172, - [207] = 207, - [208] = 174, - [209] = 176, - [210] = 176, - [211] = 195, - [212] = 178, - [213] = 174, - [214] = 183, - [215] = 172, - [216] = 195, - [217] = 217, - [218] = 217, - [219] = 170, - [220] = 153, - [221] = 168, - [222] = 217, - [223] = 144, - [224] = 185, - [225] = 173, - [226] = 133, - [227] = 166, - [228] = 132, - [229] = 162, - [230] = 167, - [231] = 134, - [232] = 160, - [233] = 207, - [234] = 158, - [235] = 147, - [236] = 156, - [237] = 146, - [238] = 137, - [239] = 181, - [240] = 141, - [241] = 140, - [242] = 138, - [243] = 154, - [244] = 185, - [245] = 152, - [246] = 138, - [247] = 137, - [248] = 169, - [249] = 140, - [250] = 134, - [251] = 251, - [252] = 180, - [253] = 141, - [254] = 157, - [255] = 150, - [256] = 148, - [257] = 151, - [258] = 146, - [259] = 145, - [260] = 142, - [261] = 139, - [262] = 136, - [263] = 147, - [264] = 131, - [265] = 169, - [266] = 266, - [267] = 267, - [268] = 268, - [269] = 269, - [270] = 269, - [271] = 269, - [272] = 269, - [273] = 269, + [186] = 186, + [187] = 170, + [188] = 171, + [189] = 189, + [190] = 190, + [191] = 172, + [192] = 192, + [193] = 193, + [194] = 173, + [195] = 174, + [196] = 175, + [197] = 197, + [198] = 176, + [199] = 177, + [200] = 135, + [201] = 178, + [202] = 179, + [203] = 180, + [204] = 181, + [205] = 182, + [206] = 137, + [207] = 183, + [208] = 139, + [209] = 184, + [210] = 185, + [211] = 197, + [212] = 142, + [213] = 143, + [214] = 145, + [215] = 146, + [216] = 147, + [217] = 148, + [218] = 149, + [219] = 150, + [220] = 152, + [221] = 153, + [222] = 133, + [223] = 136, + [224] = 186, + [225] = 140, + [226] = 151, + [227] = 156, + [228] = 163, + [229] = 164, + [230] = 170, + [231] = 171, + [232] = 172, + [233] = 173, + [234] = 174, + [235] = 175, + [236] = 176, + [237] = 177, + [238] = 178, + [239] = 179, + [240] = 180, + [241] = 181, + [242] = 182, + [243] = 183, + [244] = 184, + [245] = 185, + [246] = 186, + [247] = 189, + [248] = 190, + [249] = 192, + [250] = 197, + [251] = 135, + [252] = 189, + [253] = 190, + [254] = 137, + [255] = 139, + [256] = 141, + [257] = 142, + [258] = 143, + [259] = 158, + [260] = 145, + [261] = 146, + [262] = 147, + [263] = 148, + [264] = 149, + [265] = 150, + [266] = 159, + [267] = 152, + [268] = 153, + [269] = 192, + [270] = 193, + [271] = 141, + [272] = 272, + [273] = 273, [274] = 274, [275] = 275, - [276] = 274, + [276] = 275, [277] = 275, - [278] = 274, + [278] = 275, [279] = 275, - [280] = 275, - [281] = 274, - [282] = 274, - [283] = 275, - [284] = 284, - [285] = 284, - [286] = 284, - [287] = 284, - [288] = 284, - [289] = 289, + [280] = 280, + [281] = 280, + [282] = 282, + [283] = 282, + [284] = 282, + [285] = 280, + [286] = 282, + [287] = 280, + [288] = 282, + [289] = 280, [290] = 290, - [291] = 266, - [292] = 290, - [293] = 293, - [294] = 290, - [295] = 290, - [296] = 289, - [297] = 297, - [298] = 297, - [299] = 297, - [300] = 289, - [301] = 297, - [302] = 302, - [303] = 289, - [304] = 290, - [305] = 305, - [306] = 297, - [307] = 289, - [308] = 266, - [309] = 309, - [310] = 309, - [311] = 309, - [312] = 309, - [313] = 309, - [314] = 268, + [291] = 291, + [292] = 291, + [293] = 291, + [294] = 291, + [295] = 291, + [296] = 296, + [297] = 272, + [298] = 296, + [299] = 296, + [300] = 300, + [301] = 301, + [302] = 296, + [303] = 301, + [304] = 300, + [305] = 301, + [306] = 300, + [307] = 301, + [308] = 300, + [309] = 301, + [310] = 300, + [311] = 311, + [312] = 296, + [313] = 313, + [314] = 274, [315] = 315, - [316] = 302, - [317] = 317, + [316] = 315, + [317] = 315, [318] = 318, - [319] = 268, - [320] = 320, - [321] = 321, - [322] = 322, - [323] = 320, - [324] = 318, + [319] = 272, + [320] = 313, + [321] = 315, + [322] = 315, + [323] = 323, + [324] = 274, [325] = 325, [326] = 326, - [327] = 322, - [328] = 322, - [329] = 317, - [330] = 326, - [331] = 326, - [332] = 317, - [333] = 321, - [334] = 317, - [335] = 318, - [336] = 320, - [337] = 326, - [338] = 320, - [339] = 322, - [340] = 325, - [341] = 321, + [327] = 327, + [328] = 328, + [329] = 323, + [330] = 330, + [331] = 327, + [332] = 332, + [333] = 323, + [334] = 330, + [335] = 327, + [336] = 330, + [337] = 327, + [338] = 323, + [339] = 330, + [340] = 327, + [341] = 328, [342] = 325, - [343] = 318, - [344] = 325, - [345] = 321, - [346] = 318, - [347] = 320, - [348] = 325, - [349] = 321, - [350] = 322, - [351] = 317, - [352] = 352, - [353] = 353, - [354] = 354, - [355] = 355, - [356] = 354, - [357] = 357, - [358] = 64, - [359] = 354, - [360] = 355, - [361] = 355, - [362] = 362, - [363] = 363, + [343] = 326, + [344] = 332, + [345] = 328, + [346] = 325, + [347] = 326, + [348] = 332, + [349] = 328, + [350] = 325, + [351] = 326, + [352] = 332, + [353] = 330, + [354] = 325, + [355] = 326, + [356] = 332, + [357] = 323, + [358] = 358, + [359] = 359, + [360] = 360, + [361] = 361, + [362] = 358, + [363] = 360, [364] = 364, - [365] = 364, - [366] = 366, - [367] = 367, - [368] = 364, - [369] = 64, - [370] = 364, - [371] = 266, - [372] = 302, - [373] = 67, - [374] = 354, + [365] = 365, + [366] = 360, + [367] = 358, + [368] = 64, + [369] = 272, + [370] = 370, + [371] = 360, + [372] = 358, + [373] = 373, + [374] = 313, [375] = 375, - [376] = 355, - [377] = 364, - [378] = 363, - [379] = 67, - [380] = 363, - [381] = 268, - [382] = 363, - [383] = 70, - [384] = 70, - [385] = 385, - [386] = 386, - [387] = 387, - [388] = 385, - [389] = 386, + [376] = 376, + [377] = 375, + [378] = 67, + [379] = 375, + [380] = 64, + [381] = 375, + [382] = 375, + [383] = 383, + [384] = 274, + [385] = 373, + [386] = 373, + [387] = 67, + [388] = 373, + [389] = 70, [390] = 390, - [391] = 390, - [392] = 387, - [393] = 385, - [394] = 387, - [395] = 385, + [391] = 391, + [392] = 392, + [393] = 391, + [394] = 394, + [395] = 390, [396] = 390, - [397] = 390, - [398] = 386, - [399] = 386, - [400] = 386, - [401] = 385, - [402] = 387, - [403] = 387, - [404] = 390, - [405] = 405, - [406] = 406, - [407] = 407, - [408] = 407, - [409] = 409, - [410] = 406, - [411] = 411, + [397] = 394, + [398] = 394, + [399] = 394, + [400] = 392, + [401] = 391, + [402] = 402, + [403] = 392, + [404] = 392, + [405] = 70, + [406] = 391, + [407] = 391, + [408] = 390, + [409] = 390, + [410] = 392, + [411] = 394, [412] = 412, [413] = 413, - [414] = 409, - [415] = 409, - [416] = 407, - [417] = 406, - [418] = 409, - [419] = 419, - [420] = 409, - [421] = 406, - [422] = 407, - [423] = 423, - [424] = 407, - [425] = 406, - [426] = 78, - [427] = 427, - [428] = 428, - [429] = 428, - [430] = 427, - [431] = 428, - [432] = 427, + [414] = 414, + [415] = 415, + [416] = 416, + [417] = 414, + [418] = 415, + [419] = 414, + [420] = 416, + [421] = 421, + [422] = 416, + [423] = 415, + [424] = 415, + [425] = 414, + [426] = 416, + [427] = 416, + [428] = 414, + [429] = 429, + [430] = 430, + [431] = 415, + [432] = 432, [433] = 433, [434] = 434, - [435] = 428, - [436] = 427, - [437] = 107, - [438] = 428, - [439] = 111, - [440] = 427, - [441] = 427, - [442] = 427, - [443] = 428, - [444] = 428, - [445] = 427, - [446] = 428, - [447] = 427, - [448] = 428, - [449] = 449, - [450] = 450, - [451] = 427, - [452] = 428, - [453] = 427, - [454] = 84, - [455] = 428, - [456] = 427, - [457] = 428, - [458] = 428, - [459] = 83, - [460] = 428, - [461] = 427, - [462] = 86, - [463] = 427, - [464] = 428, - [465] = 427, - [466] = 466, + [435] = 433, + [436] = 434, + [437] = 433, + [438] = 434, + [439] = 433, + [440] = 434, + [441] = 433, + [442] = 434, + [443] = 433, + [444] = 434, + [445] = 433, + [446] = 434, + [447] = 433, + [448] = 434, + [449] = 433, + [450] = 434, + [451] = 433, + [452] = 433, + [453] = 434, + [454] = 433, + [455] = 433, + [456] = 456, + [457] = 96, + [458] = 458, + [459] = 81, + [460] = 434, + [461] = 461, + [462] = 462, + [463] = 82, + [464] = 434, + [465] = 465, + [466] = 433, [467] = 467, - [468] = 428, - [469] = 427, - [470] = 427, - [471] = 428, - [472] = 472, - [473] = 428, + [468] = 468, + [469] = 86, + [470] = 470, + [471] = 471, + [472] = 97, + [473] = 434, [474] = 474, - [475] = 475, - [476] = 427, - [477] = 91, - [478] = 428, - [479] = 427, - [480] = 480, - [481] = 481, - [482] = 482, - [483] = 84, - [484] = 78, - [485] = 83, - [486] = 486, - [487] = 487, - [488] = 73, - [489] = 107, - [490] = 111, - [491] = 491, - [492] = 91, - [493] = 86, - [494] = 494, - [495] = 495, + [475] = 87, + [476] = 434, + [477] = 477, + [478] = 433, + [479] = 434, + [480] = 433, + [481] = 434, + [482] = 433, + [483] = 483, + [484] = 434, + [485] = 433, + [486] = 434, + [487] = 433, + [488] = 434, + [489] = 91, + [490] = 91, + [491] = 73, + [492] = 82, + [493] = 81, + [494] = 97, + [495] = 87, [496] = 496, - [497] = 497, + [497] = 96, [498] = 498, [499] = 499, - [500] = 500, + [500] = 86, [501] = 501, [502] = 502, - [503] = 503, + [503] = 501, [504] = 504, [505] = 505, - [506] = 495, + [506] = 506, [507] = 507, - [508] = 494, + [508] = 508, [509] = 509, [510] = 510, - [511] = 510, - [512] = 501, - [513] = 500, - [514] = 509, - [515] = 494, - [516] = 499, - [517] = 507, - [518] = 495, + [511] = 511, + [512] = 512, + [513] = 513, + [514] = 514, + [515] = 515, + [516] = 516, + [517] = 517, + [518] = 518, [519] = 519, - [520] = 505, - [521] = 504, - [522] = 498, - [523] = 497, - [524] = 503, - [525] = 496, - [526] = 526, - [527] = 502, - [528] = 528, + [520] = 520, + [521] = 521, + [522] = 522, + [523] = 523, + [524] = 524, + [525] = 525, + [526] = 510, + [527] = 511, + [528] = 512, [529] = 529, - [530] = 519, - [531] = 73, - [532] = 502, - [533] = 519, - [534] = 503, - [535] = 504, - [536] = 505, - [537] = 495, - [538] = 519, - [539] = 519, - [540] = 540, - [541] = 507, - [542] = 494, - [543] = 509, - [544] = 544, - [545] = 545, - [546] = 546, - [547] = 547, - [548] = 548, + [530] = 513, + [531] = 531, + [532] = 514, + [533] = 510, + [534] = 511, + [535] = 512, + [536] = 513, + [537] = 514, + [538] = 515, + [539] = 516, + [540] = 517, + [541] = 518, + [542] = 519, + [543] = 520, + [544] = 521, + [545] = 522, + [546] = 523, + [547] = 524, + [548] = 525, [549] = 549, - [550] = 550, + [550] = 515, [551] = 551, - [552] = 552, + [552] = 516, [553] = 553, - [554] = 554, + [554] = 517, [555] = 555, - [556] = 510, + [556] = 518, [557] = 557, - [558] = 526, - [559] = 496, - [560] = 501, - [561] = 500, - [562] = 82, - [563] = 499, - [564] = 498, - [565] = 497, - [566] = 496, - [567] = 567, - [568] = 526, - [569] = 569, - [570] = 502, - [571] = 100, - [572] = 112, - [573] = 503, - [574] = 113, - [575] = 504, - [576] = 99, - [577] = 93, - [578] = 505, - [579] = 526, - [580] = 85, - [581] = 497, - [582] = 79, - [583] = 507, - [584] = 509, - [585] = 76, - [586] = 510, - [587] = 501, - [588] = 500, - [589] = 77, - [590] = 499, - [591] = 498, - [592] = 497, - [593] = 95, - [594] = 594, - [595] = 498, - [596] = 496, - [597] = 526, + [558] = 519, + [559] = 559, + [560] = 510, + [561] = 511, + [562] = 512, + [563] = 513, + [564] = 514, + [565] = 73, + [566] = 516, + [567] = 517, + [568] = 518, + [569] = 519, + [570] = 520, + [571] = 521, + [572] = 522, + [573] = 523, + [574] = 524, + [575] = 525, + [576] = 520, + [577] = 510, + [578] = 511, + [579] = 512, + [580] = 513, + [581] = 514, + [582] = 515, + [583] = 516, + [584] = 517, + [585] = 518, + [586] = 519, + [587] = 520, + [588] = 521, + [589] = 522, + [590] = 523, + [591] = 524, + [592] = 525, + [593] = 593, + [594] = 521, + [595] = 595, + [596] = 122, + [597] = 522, [598] = 598, - [599] = 599, + [599] = 523, [600] = 600, - [601] = 601, - [602] = 502, - [603] = 503, - [604] = 504, - [605] = 505, - [606] = 495, - [607] = 507, - [608] = 494, - [609] = 509, - [610] = 510, - [611] = 501, - [612] = 500, - [613] = 499, - [614] = 142, - [615] = 139, - [616] = 136, - [617] = 131, - [618] = 153, - [619] = 266, - [620] = 151, - [621] = 145, - [622] = 148, - [623] = 150, - [624] = 152, - [625] = 154, - [626] = 156, - [627] = 158, - [628] = 160, - [629] = 162, - [630] = 129, - [631] = 166, - [632] = 168, - [633] = 170, - [634] = 172, - [635] = 635, - [636] = 636, - [637] = 637, - [638] = 181, - [639] = 639, - [640] = 640, - [641] = 174, - [642] = 176, - [643] = 183, - [644] = 639, - [645] = 195, - [646] = 93, - [647] = 217, - [648] = 185, - [649] = 302, - [650] = 266, - [651] = 180, - [652] = 302, - [653] = 178, - [654] = 302, - [655] = 266, - [656] = 169, - [657] = 157, - [658] = 658, - [659] = 302, - [660] = 266, - [661] = 163, - [662] = 159, - [663] = 144, - [664] = 664, - [665] = 133, - [666] = 666, + [601] = 94, + [602] = 524, + [603] = 76, + [604] = 604, + [605] = 525, + [606] = 98, + [607] = 77, + [608] = 608, + [609] = 78, + [610] = 79, + [611] = 80, + [612] = 612, + [613] = 83, + [614] = 84, + [615] = 85, + [616] = 616, + [617] = 501, + [618] = 88, + [619] = 501, + [620] = 501, + [621] = 515, + [622] = 145, + [623] = 157, + [624] = 624, + [625] = 625, + [626] = 626, + [627] = 627, + [628] = 628, + [629] = 629, + [630] = 98, + [631] = 631, + [632] = 272, + [633] = 633, + [634] = 634, + [635] = 170, + [636] = 171, + [637] = 172, + [638] = 173, + [639] = 174, + [640] = 175, + [641] = 176, + [642] = 177, + [643] = 178, + [644] = 179, + [645] = 180, + [646] = 181, + [647] = 182, + [648] = 183, + [649] = 184, + [650] = 185, + [651] = 651, + [652] = 652, + [653] = 653, + [654] = 654, + [655] = 655, + [656] = 656, + [657] = 657, + [658] = 77, + [659] = 78, + [660] = 660, + [661] = 661, + [662] = 662, + [663] = 313, + [664] = 79, + [665] = 80, + [666] = 272, [667] = 667, - [668] = 668, - [669] = 669, + [668] = 186, + [669] = 662, [670] = 670, - [671] = 132, - [672] = 134, - [673] = 302, - [674] = 266, - [675] = 137, - [676] = 138, - [677] = 140, - [678] = 141, - [679] = 146, - [680] = 147, - [681] = 302, - [682] = 682, - [683] = 266, - [684] = 684, - [685] = 685, - [686] = 686, + [671] = 671, + [672] = 672, + [673] = 313, + [674] = 272, + [675] = 313, + [676] = 625, + [677] = 189, + [678] = 76, + [679] = 272, + [680] = 133, + [681] = 313, + [682] = 192, + [683] = 193, + [684] = 136, + [685] = 662, + [686] = 272, [687] = 687, - [688] = 688, - [689] = 689, - [690] = 690, - [691] = 639, - [692] = 692, + [688] = 197, + [689] = 313, + [690] = 272, + [691] = 625, + [692] = 135, [693] = 693, - [694] = 692, - [695] = 266, - [696] = 696, + [694] = 662, + [695] = 695, + [696] = 83, [697] = 697, - [698] = 95, - [699] = 639, - [700] = 77, - [701] = 76, - [702] = 692, - [703] = 79, - [704] = 85, - [705] = 692, - [706] = 302, - [707] = 82, - [708] = 100, - [709] = 112, - [710] = 710, - [711] = 113, - [712] = 712, - [713] = 99, - [714] = 714, - [715] = 154, - [716] = 716, - [717] = 717, - [718] = 718, - [719] = 159, - [720] = 720, - [721] = 721, - [722] = 722, - [723] = 722, + [698] = 140, + [699] = 137, + [700] = 84, + [701] = 139, + [702] = 151, + [703] = 156, + [704] = 141, + [705] = 142, + [706] = 143, + [707] = 707, + [708] = 163, + [709] = 94, + [710] = 146, + [711] = 147, + [712] = 164, + [713] = 148, + [714] = 149, + [715] = 150, + [716] = 85, + [717] = 152, + [718] = 153, + [719] = 719, + [720] = 313, + [721] = 88, + [722] = 313, + [723] = 272, [724] = 724, - [725] = 722, - [726] = 722, - [727] = 727, + [725] = 122, + [726] = 625, + [727] = 190, [728] = 728, - [729] = 144, + [729] = 729, [730] = 730, - [731] = 133, - [732] = 132, + [731] = 731, + [732] = 732, [733] = 733, - [734] = 134, - [735] = 137, - [736] = 138, + [734] = 142, + [735] = 143, + [736] = 736, [737] = 737, - [738] = 718, - [739] = 140, - [740] = 141, + [738] = 193, + [739] = 739, + [740] = 625, [741] = 741, [742] = 742, - [743] = 146, - [744] = 147, - [745] = 745, + [743] = 743, + [744] = 744, + [745] = 728, [746] = 746, [747] = 747, [748] = 748, [749] = 749, - [750] = 268, - [751] = 157, - [752] = 169, - [753] = 753, - [754] = 728, + [750] = 750, + [751] = 662, + [752] = 752, + [753] = 145, + [754] = 750, [755] = 755, - [756] = 756, - [757] = 757, + [756] = 146, + [757] = 147, [758] = 758, - [759] = 692, - [760] = 639, - [761] = 692, - [762] = 639, - [763] = 692, - [764] = 639, - [765] = 692, - [766] = 639, - [767] = 692, - [768] = 639, - [769] = 692, - [770] = 639, - [771] = 692, - [772] = 639, - [773] = 692, - [774] = 639, - [775] = 720, - [776] = 180, - [777] = 777, - [778] = 692, - [779] = 185, - [780] = 217, - [781] = 745, - [782] = 747, - [783] = 639, - [784] = 730, - [785] = 741, - [786] = 742, - [787] = 195, - [788] = 183, - [789] = 745, - [790] = 747, - [791] = 748, - [792] = 749, - [793] = 718, - [794] = 268, + [759] = 759, + [760] = 148, + [761] = 761, + [762] = 149, + [763] = 763, + [764] = 764, + [765] = 150, + [766] = 766, + [767] = 767, + [768] = 768, + [769] = 769, + [770] = 192, + [771] = 152, + [772] = 772, + [773] = 773, + [774] = 741, + [775] = 153, + [776] = 776, + [777] = 190, + [778] = 778, + [779] = 274, + [780] = 274, + [781] = 781, + [782] = 749, + [783] = 752, + [784] = 750, + [785] = 755, + [786] = 786, + [787] = 787, + [788] = 788, + [789] = 789, + [790] = 749, + [791] = 791, + [792] = 792, + [793] = 793, + [794] = 794, [795] = 795, - [796] = 692, - [797] = 720, - [798] = 755, - [799] = 756, - [800] = 178, - [801] = 176, + [796] = 741, + [797] = 797, + [798] = 798, + [799] = 799, + [800] = 728, + [801] = 801, [802] = 802, - [803] = 746, - [804] = 639, - [805] = 741, - [806] = 742, - [807] = 174, - [808] = 172, - [809] = 745, - [810] = 753, - [811] = 728, - [812] = 748, - [813] = 749, - [814] = 730, - [815] = 747, - [816] = 742, - [817] = 741, - [818] = 692, - [819] = 639, - [820] = 268, - [821] = 692, - [822] = 748, - [823] = 639, - [824] = 268, - [825] = 692, - [826] = 639, - [827] = 268, - [828] = 828, - [829] = 658, - [830] = 749, - [831] = 170, - [832] = 720, - [833] = 168, - [834] = 166, - [835] = 755, - [836] = 756, - [837] = 163, - [838] = 838, - [839] = 741, - [840] = 730, - [841] = 742, - [842] = 842, - [843] = 843, - [844] = 745, - [845] = 747, - [846] = 748, - [847] = 749, + [803] = 370, + [804] = 625, + [805] = 805, + [806] = 749, + [807] = 807, + [808] = 808, + [809] = 752, + [810] = 810, + [811] = 750, + [812] = 755, + [813] = 662, + [814] = 814, + [815] = 693, + [816] = 137, + [817] = 817, + [818] = 818, + [819] = 819, + [820] = 135, + [821] = 821, + [822] = 822, + [823] = 728, + [824] = 139, + [825] = 752, + [826] = 749, + [827] = 827, + [828] = 274, + [829] = 752, + [830] = 830, + [831] = 750, + [832] = 625, + [833] = 662, + [834] = 274, + [835] = 625, + [836] = 662, + [837] = 274, + [838] = 197, + [839] = 141, + [840] = 189, + [841] = 662, + [842] = 755, + [843] = 625, + [844] = 662, + [845] = 274, + [846] = 625, + [847] = 662, [848] = 848, - [849] = 718, - [850] = 367, - [851] = 851, - [852] = 852, - [853] = 853, - [854] = 755, - [855] = 756, - [856] = 162, - [857] = 857, - [858] = 858, - [859] = 746, - [860] = 860, - [861] = 861, - [862] = 862, - [863] = 863, - [864] = 864, - [865] = 865, - [866] = 753, - [867] = 728, - [868] = 868, - [869] = 756, - [870] = 755, - [871] = 871, - [872] = 160, - [873] = 158, - [874] = 746, - [875] = 722, - [876] = 876, + [849] = 849, + [850] = 625, + [851] = 662, + [852] = 625, + [853] = 662, + [854] = 625, + [855] = 662, + [856] = 625, + [857] = 778, + [858] = 781, + [859] = 662, + [860] = 625, + [861] = 662, + [862] = 830, + [863] = 730, + [864] = 758, + [865] = 759, + [866] = 625, + [867] = 662, + [868] = 805, + [869] = 807, + [870] = 625, + [871] = 274, + [872] = 133, + [873] = 662, + [874] = 778, + [875] = 781, + [876] = 136, [877] = 877, - [878] = 129, - [879] = 156, - [880] = 880, - [881] = 753, - [882] = 753, - [883] = 692, - [884] = 639, - [885] = 639, - [886] = 268, - [887] = 268, - [888] = 151, - [889] = 746, - [890] = 728, - [891] = 153, - [892] = 131, - [893] = 136, - [894] = 730, - [895] = 139, - [896] = 152, - [897] = 692, - [898] = 142, - [899] = 145, - [900] = 718, - [901] = 148, - [902] = 150, - [903] = 903, - [904] = 904, - [905] = 905, - [906] = 904, - [907] = 907, - [908] = 903, - [909] = 909, - [910] = 910, - [911] = 911, - [912] = 912, - [913] = 913, - [914] = 914, - [915] = 915, - [916] = 916, - [917] = 917, - [918] = 918, - [919] = 919, - [920] = 919, - [921] = 918, - [922] = 922, - [923] = 923, - [924] = 924, - [925] = 917, - [926] = 916, - [927] = 915, - [928] = 928, - [929] = 929, - [930] = 913, - [931] = 912, - [932] = 932, + [878] = 878, + [879] = 830, + [880] = 730, + [881] = 758, + [882] = 759, + [883] = 625, + [884] = 741, + [885] = 805, + [886] = 807, + [887] = 140, + [888] = 662, + [889] = 778, + [890] = 781, + [891] = 151, + [892] = 156, + [893] = 163, + [894] = 830, + [895] = 730, + [896] = 758, + [897] = 759, + [898] = 164, + [899] = 170, + [900] = 805, + [901] = 807, + [902] = 171, + [903] = 172, + [904] = 173, + [905] = 778, + [906] = 781, + [907] = 174, + [908] = 175, + [909] = 176, + [910] = 830, + [911] = 730, + [912] = 758, + [913] = 759, + [914] = 177, + [915] = 178, + [916] = 805, + [917] = 807, + [918] = 179, + [919] = 180, + [920] = 181, + [921] = 182, + [922] = 183, + [923] = 184, + [924] = 185, + [925] = 186, + [926] = 817, + [927] = 817, + [928] = 728, + [929] = 817, + [930] = 930, + [931] = 817, + [932] = 755, [933] = 933, - [934] = 911, - [935] = 910, + [934] = 625, + [935] = 935, [936] = 936, [937] = 937, - [938] = 938, + [938] = 461, [939] = 939, - [940] = 940, + [940] = 939, [941] = 941, [942] = 942, [943] = 943, - [944] = 919, - [945] = 918, - [946] = 917, - [947] = 916, - [948] = 915, + [944] = 944, + [945] = 945, + [946] = 946, + [947] = 947, + [948] = 942, [949] = 949, - [950] = 912, - [951] = 911, - [952] = 952, - [953] = 910, - [954] = 909, - [955] = 903, - [956] = 907, - [957] = 913, - [958] = 958, - [959] = 959, - [960] = 960, + [950] = 950, + [951] = 951, + [952] = 943, + [953] = 937, + [954] = 954, + [955] = 955, + [956] = 944, + [957] = 957, + [958] = 945, + [959] = 946, + [960] = 947, [961] = 961, - [962] = 466, - [963] = 905, + [962] = 962, + [963] = 954, [964] = 964, - [965] = 965, - [966] = 960, - [967] = 967, - [968] = 909, - [969] = 903, - [970] = 970, + [965] = 950, + [966] = 951, + [967] = 935, + [968] = 937, + [969] = 954, + [970] = 955, [971] = 971, - [972] = 970, - [973] = 973, - [974] = 952, + [972] = 955, + [973] = 937, + [974] = 974, [975] = 975, - [976] = 904, - [977] = 942, + [976] = 950, + [977] = 977, [978] = 978, - [979] = 913, - [980] = 936, + [979] = 951, + [980] = 980, [981] = 981, - [982] = 960, - [983] = 961, + [982] = 982, + [983] = 983, [984] = 984, [985] = 985, - [986] = 986, - [987] = 919, - [988] = 918, - [989] = 917, - [990] = 916, - [991] = 915, - [992] = 970, - [993] = 912, - [994] = 911, + [986] = 978, + [987] = 987, + [988] = 988, + [989] = 989, + [990] = 990, + [991] = 954, + [992] = 992, + [993] = 993, + [994] = 994, [995] = 995, - [996] = 952, - [997] = 910, - [998] = 909, - [999] = 959, - [1000] = 967, - [1001] = 942, - [1002] = 907, - [1003] = 959, - [1004] = 960, - [1005] = 961, - [1006] = 967, + [996] = 996, + [997] = 997, + [998] = 998, + [999] = 999, + [1000] = 1000, + [1001] = 1001, + [1002] = 989, + [1003] = 955, + [1004] = 1004, + [1005] = 982, + [1006] = 1006, [1007] = 1007, - [1008] = 905, + [1008] = 939, [1009] = 1009, - [1010] = 1010, - [1011] = 959, - [1012] = 967, - [1013] = 1013, - [1014] = 970, - [1015] = 904, - [1016] = 942, - [1017] = 952, - [1018] = 936, - [1019] = 907, - [1020] = 1020, - [1021] = 919, - [1022] = 913, - [1023] = 918, - [1024] = 917, - [1025] = 960, - [1026] = 961, - [1027] = 916, - [1028] = 915, - [1029] = 1029, - [1030] = 912, - [1031] = 911, - [1032] = 910, - [1033] = 909, - [1034] = 903, - [1035] = 970, - [1036] = 1036, - [1037] = 907, - [1038] = 959, - [1039] = 943, - [1040] = 1007, - [1041] = 1010, - [1042] = 949, - [1043] = 1036, - [1044] = 905, - [1045] = 1020, - [1046] = 943, - [1047] = 1007, - [1048] = 1010, - [1049] = 949, - [1050] = 1036, - [1051] = 905, - [1052] = 961, - [1053] = 943, - [1054] = 1007, - [1055] = 1010, - [1056] = 949, - [1057] = 1036, - [1058] = 967, + [1010] = 988, + [1011] = 939, + [1012] = 992, + [1013] = 978, + [1014] = 1014, + [1015] = 993, + [1016] = 1004, + [1017] = 942, + [1018] = 996, + [1019] = 997, + [1020] = 994, + [1021] = 996, + [1022] = 943, + [1023] = 944, + [1024] = 945, + [1025] = 939, + [1026] = 989, + [1027] = 942, + [1028] = 1006, + [1029] = 989, + [1030] = 1030, + [1031] = 943, + [1032] = 988, + [1033] = 944, + [1034] = 945, + [1035] = 946, + [1036] = 947, + [1037] = 993, + [1038] = 946, + [1039] = 1004, + [1040] = 996, + [1041] = 997, + [1042] = 950, + [1043] = 1006, + [1044] = 935, + [1045] = 937, + [1046] = 954, + [1047] = 955, + [1048] = 1004, + [1049] = 982, + [1050] = 1006, + [1051] = 994, + [1052] = 993, + [1053] = 988, + [1054] = 947, + [1055] = 1055, + [1056] = 1056, + [1057] = 997, + [1058] = 993, [1059] = 1059, - [1060] = 943, - [1061] = 1007, - [1062] = 1010, - [1063] = 949, - [1064] = 1064, - [1065] = 929, - [1066] = 904, - [1067] = 914, - [1068] = 952, - [1069] = 929, - [1070] = 942, - [1071] = 914, - [1072] = 1072, - [1073] = 929, + [1060] = 942, + [1061] = 996, + [1062] = 997, + [1063] = 1063, + [1064] = 982, + [1065] = 1065, + [1066] = 978, + [1067] = 943, + [1068] = 1068, + [1069] = 944, + [1070] = 1070, + [1071] = 1006, + [1072] = 936, + [1073] = 950, [1074] = 1074, - [1075] = 914, - [1076] = 1076, - [1077] = 929, - [1078] = 995, - [1079] = 914, - [1080] = 1072, - [1081] = 986, - [1082] = 1072, - [1083] = 986, - [1084] = 1072, - [1085] = 986, - [1086] = 1072, - [1087] = 986, - [1088] = 941, - [1089] = 941, - [1090] = 941, - [1091] = 941, - [1092] = 936, - [1093] = 1093, - [1094] = 1036, + [1075] = 1030, + [1076] = 1007, + [1077] = 981, + [1078] = 1074, + [1079] = 936, + [1080] = 994, + [1081] = 1081, + [1082] = 1030, + [1083] = 1007, + [1084] = 981, + [1085] = 1074, + [1086] = 936, + [1087] = 1087, + [1088] = 1004, + [1089] = 1030, + [1090] = 1007, + [1091] = 981, + [1092] = 1074, + [1093] = 936, + [1094] = 982, [1095] = 1095, + [1096] = 1030, + [1097] = 1007, + [1098] = 981, + [1099] = 1074, + [1100] = 1100, + [1101] = 1063, + [1102] = 1102, + [1103] = 983, + [1104] = 1001, + [1105] = 1063, + [1106] = 945, + [1107] = 983, + [1108] = 951, + [1109] = 1063, + [1110] = 988, + [1111] = 983, + [1112] = 978, + [1113] = 1063, + [1114] = 935, + [1115] = 983, + [1116] = 1100, + [1117] = 1095, + [1118] = 1100, + [1119] = 1095, + [1120] = 1100, + [1121] = 1095, + [1122] = 1100, + [1123] = 1095, + [1124] = 1055, + [1125] = 1055, + [1126] = 1055, + [1127] = 1055, + [1128] = 946, + [1129] = 947, + [1130] = 935, + [1131] = 994, + [1132] = 951, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -2706,9 +2901,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { switch (state) { case 0: if (eof) ADVANCE(20); - if (!eof && (lookahead == 0)) ADVANCE(33); + if ((!eof && lookahead == 00)) ADVANCE(33); if (lookahead == '\t') ADVANCE(52); - if (lookahead == '\r') SKIP(18) + if (lookahead == '\r') SKIP(18); if (lookahead == ' ') ADVANCE(29); if (lookahead == '"') ADVANCE(47); if (lookahead == '#') ADVANCE(63); @@ -2730,65 +2925,76 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(50); END_STATE(); case 1: - if (!eof && (lookahead == 0)) ADVANCE(33); - if (lookahead == '\r') ADVANCE(54); - if (lookahead == '#') ADVANCE(63); - if (lookahead == '%') ADVANCE(64); - if (lookahead == '.') ADVANCE(45); - if (lookahead == '[') ADVANCE(22); - if (lookahead == '{') ADVANCE(43); - if (lookahead == '|') ADVANCE(30); + ADVANCE_MAP( + 0, 33, + '\r', 54, + '#', 63, + '%', 64, + '.', 45, + '[', 22, + '{', 43, + '|', 30, + ); if (lookahead != 0 && lookahead != '\n') ADVANCE(53); END_STATE(); case 2: - if (lookahead == '\n') ADVANCE(14); - if (lookahead == '\r') ADVANCE(55); - if (lookahead == '#') ADVANCE(63); - if (lookahead == '%') ADVANCE(64); - if (lookahead == '-') ADVANCE(31); - if (lookahead == '.') ADVANCE(45); - if (lookahead == ':') ADVANCE(59); - if (lookahead == '[') ADVANCE(22); - if (lookahead == '{') ADVANCE(43); - if (lookahead == '|') ADVANCE(30); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(60); + ADVANCE_MAP( + '\n', 14, + '\r', 55, + '#', 63, + '%', 64, + '-', 31, + '.', 45, + ':', 59, + '[', 22, + '{', 43, + '|', 30, + '\t', 60, + 0x0b, 60, + '\f', 60, + ' ', 60, + ); if (lookahead != 0) ADVANCE(53); END_STATE(); case 3: - if (lookahead == '\r') ADVANCE(57); - if (lookahead == '#') ADVANCE(63); - if (lookahead == '%') ADVANCE(64); - if (lookahead == '.') ADVANCE(45); - if (lookahead == '[') ADVANCE(22); - if (lookahead == '{') ADVANCE(43); - if (lookahead == '|') ADVANCE(30); - if (lookahead == '}') ADVANCE(44); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(52); + ADVANCE_MAP( + '\r', 57, + '#', 63, + '%', 64, + '.', 45, + '[', 22, + '{', 43, + '|', 30, + '}', 44, + '\t', 52, + ' ', 52, + ); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(61); if (lookahead != 0 && + lookahead != '\t' && lookahead != '\n') ADVANCE(53); END_STATE(); case 4: - if (lookahead == '\r') ADVANCE(58); - if (lookahead == '#') ADVANCE(63); - if (lookahead == '%') ADVANCE(64); - if (lookahead == '.') ADVANCE(45); - if (lookahead == '[') ADVANCE(22); - if (lookahead == ']') ADVANCE(27); - if (lookahead == '{') ADVANCE(43); - if (lookahead == '|') ADVANCE(30); + ADVANCE_MAP( + '\r', 58, + '#', 63, + '%', 64, + '.', 45, + '[', 22, + ']', 27, + '{', 43, + '|', 30, + ); if (lookahead != 0 && lookahead != '\n') ADVANCE(53); END_STATE(); case 5: - if (lookahead == '\r') SKIP(6) + if (lookahead == '\r') SKIP(6); if (lookahead == '#') ADVANCE(16); if (lookahead == '%') ADVANCE(64); if (lookahead == '.') ADVANCE(45); @@ -2804,7 +3010,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(66); END_STATE(); case 6: - if (lookahead == '\r') SKIP(6) + if (lookahead == '\r') SKIP(6); if (lookahead == '#') ADVANCE(16); if (lookahead == '%') ADVANCE(64); if (lookahead == '.') ADVANCE(45); @@ -2835,7 +3041,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\n') ADVANCE(67); END_STATE(); case 9: - if (lookahead == '\r') ADVANCE(9); + if (lookahead == '\r') SKIP(9); + if (lookahead == ' ') ADVANCE(28); + if (lookahead == 'X') ADVANCE(25); + if (lookahead == 'x') ADVANCE(23); + END_STATE(); + case 10: + if (lookahead == '\r') ADVANCE(10); if (lookahead == '"') ADVANCE(47); if (lookahead == '-') ADVANCE(31); if (lookahead == ':') ADVANCE(13); @@ -2846,24 +3058,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(50); END_STATE(); - case 10: - if (lookahead == '\r') SKIP(10) - if (lookahead == ' ') ADVANCE(28); - if (lookahead == 'X') ADVANCE(25); - if (lookahead == 'x') ADVANCE(23); - END_STATE(); case 11: - if (lookahead == '\r') SKIP(11) - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && - lookahead != ' ') ADVANCE(42); - END_STATE(); - case 12: if (lookahead == '\r') ADVANCE(48); if (lookahead != 0 && lookahead != '\n' && lookahead != '"') ADVANCE(49); END_STATE(); + case 12: + if (lookahead == '\r') SKIP(12); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ') ADVANCE(42); + END_STATE(); case 13: if (lookahead == '-') ADVANCE(31); END_STATE(); @@ -2889,8 +3095,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 18: if (eof) ADVANCE(20); - if (!eof && (lookahead == 0)) ADVANCE(33); - if (lookahead == '\r') SKIP(18) + if ((!eof && lookahead == 00)) ADVANCE(33); + if (lookahead == '\r') SKIP(18); if (lookahead == ' ') ADVANCE(28); if (lookahead == '"') ADVANCE(47); if (lookahead == '#') ADVANCE(63); @@ -3087,31 +3293,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 54: ACCEPT_TOKEN(aux_sym__inline_token1); - if (!eof && (lookahead == 0)) ADVANCE(33); - if (lookahead == '\r') ADVANCE(54); - if (lookahead == '#') ADVANCE(63); - if (lookahead == '%') ADVANCE(64); - if (lookahead == '.') ADVANCE(45); - if (lookahead == '[') ADVANCE(22); - if (lookahead == '{') ADVANCE(43); - if (lookahead == '|') ADVANCE(30); + ADVANCE_MAP( + 0, 33, + '\r', 54, + '#', 63, + '%', 64, + '.', 45, + '[', 22, + '{', 43, + '|', 30, + ); if (lookahead != 0 && lookahead != '\n') ADVANCE(53); END_STATE(); case 55: ACCEPT_TOKEN(aux_sym__inline_token1); - if (lookahead == '\n') ADVANCE(14); - if (lookahead == '\r') ADVANCE(55); - if (lookahead == '#') ADVANCE(63); - if (lookahead == '%') ADVANCE(64); - if (lookahead == '-') ADVANCE(31); - if (lookahead == '.') ADVANCE(45); - if (lookahead == ':') ADVANCE(59); - if (lookahead == '[') ADVANCE(22); - if (lookahead == '{') ADVANCE(43); - if (lookahead == '|') ADVANCE(30); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(60); + ADVANCE_MAP( + '\n', 14, + '\r', 55, + '#', 63, + '%', 64, + '-', 31, + '.', 45, + ':', 59, + '[', 22, + '{', 43, + '|', 30, + '\t', 60, + 0x0b, 60, + '\f', 60, + ' ', 60, + ); if (lookahead != 0) ADVANCE(53); END_STATE(); case 56: @@ -3128,14 +3340,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 57: ACCEPT_TOKEN(aux_sym__inline_token1); - if (lookahead == '\r') ADVANCE(57); - if (lookahead == '#') ADVANCE(63); - if (lookahead == '%') ADVANCE(64); - if (lookahead == '.') ADVANCE(45); - if (lookahead == '[') ADVANCE(22); - if (lookahead == '{') ADVANCE(43); - if (lookahead == '|') ADVANCE(30); - if (lookahead == '}') ADVANCE(44); + ADVANCE_MAP( + '\r', 57, + '#', 63, + '%', 64, + '.', 45, + '[', 22, + '{', 43, + '|', 30, + '}', 44, + ); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -3146,14 +3360,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 58: ACCEPT_TOKEN(aux_sym__inline_token1); - if (lookahead == '\r') ADVANCE(58); - if (lookahead == '#') ADVANCE(63); - if (lookahead == '%') ADVANCE(64); - if (lookahead == '.') ADVANCE(45); - if (lookahead == '[') ADVANCE(22); - if (lookahead == ']') ADVANCE(27); - if (lookahead == '{') ADVANCE(43); - if (lookahead == '|') ADVANCE(30); + ADVANCE_MAP( + '\r', 58, + '#', 63, + '%', 64, + '.', 45, + '[', 22, + ']', 27, + '{', 43, + '|', 30, + ); if (lookahead != 0 && lookahead != '\n') ADVANCE(53); END_STATE(); @@ -3227,65 +3443,65 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1] = {.lex_state = 19, .external_lex_state = 2}, [2] = {.lex_state = 19, .external_lex_state = 3}, [3] = {.lex_state = 19, .external_lex_state = 3}, - [4] = {.lex_state = 19, .external_lex_state = 3}, - [5] = {.lex_state = 19, .external_lex_state = 4}, + [4] = {.lex_state = 19, .external_lex_state = 4}, + [5] = {.lex_state = 19, .external_lex_state = 3}, [6] = {.lex_state = 19, .external_lex_state = 3}, [7] = {.lex_state = 19, .external_lex_state = 4}, - [8] = {.lex_state = 19, .external_lex_state = 3}, + [8] = {.lex_state = 19, .external_lex_state = 4}, [9] = {.lex_state = 19, .external_lex_state = 4}, [10] = {.lex_state = 19, .external_lex_state = 4}, [11] = {.lex_state = 19, .external_lex_state = 4}, [12] = {.lex_state = 19, .external_lex_state = 3}, [13] = {.lex_state = 19, .external_lex_state = 4}, [14] = {.lex_state = 19, .external_lex_state = 3}, - [15] = {.lex_state = 19, .external_lex_state = 3}, - [16] = {.lex_state = 19, .external_lex_state = 4}, - [17] = {.lex_state = 19, .external_lex_state = 3}, - [18] = {.lex_state = 19, .external_lex_state = 3}, - [19] = {.lex_state = 19, .external_lex_state = 3}, + [15] = {.lex_state = 19, .external_lex_state = 4}, + [16] = {.lex_state = 19, .external_lex_state = 5}, + [17] = {.lex_state = 19, .external_lex_state = 5}, + [18] = {.lex_state = 19, .external_lex_state = 4}, + [19] = {.lex_state = 19, .external_lex_state = 4}, [20] = {.lex_state = 19, .external_lex_state = 4}, - [21] = {.lex_state = 19, .external_lex_state = 3}, - [22] = {.lex_state = 19, .external_lex_state = 5}, - [23] = {.lex_state = 19, .external_lex_state = 3}, - [24] = {.lex_state = 19, .external_lex_state = 3}, - [25] = {.lex_state = 19, .external_lex_state = 3}, - [26] = {.lex_state = 19, .external_lex_state = 4}, + [21] = {.lex_state = 19, .external_lex_state = 4}, + [22] = {.lex_state = 19, .external_lex_state = 4}, + [23] = {.lex_state = 19, .external_lex_state = 4}, + [24] = {.lex_state = 19, .external_lex_state = 4}, + [25] = {.lex_state = 19, .external_lex_state = 4}, + [26] = {.lex_state = 19, .external_lex_state = 3}, [27] = {.lex_state = 19, .external_lex_state = 3}, - [28] = {.lex_state = 19, .external_lex_state = 5}, - [29] = {.lex_state = 19, .external_lex_state = 4}, - [30] = {.lex_state = 19, .external_lex_state = 4}, - [31] = {.lex_state = 19, .external_lex_state = 4}, - [32] = {.lex_state = 19, .external_lex_state = 4}, - [33] = {.lex_state = 19, .external_lex_state = 4}, - [34] = {.lex_state = 19, .external_lex_state = 4}, - [35] = {.lex_state = 19, .external_lex_state = 4}, - [36] = {.lex_state = 19, .external_lex_state = 4}, - [37] = {.lex_state = 19, .external_lex_state = 4}, - [38] = {.lex_state = 19, .external_lex_state = 4}, - [39] = {.lex_state = 19, .external_lex_state = 4}, - [40] = {.lex_state = 19, .external_lex_state = 4}, - [41] = {.lex_state = 19, .external_lex_state = 4}, - [42] = {.lex_state = 19, .external_lex_state = 4}, - [43] = {.lex_state = 19, .external_lex_state = 4}, - [44] = {.lex_state = 19, .external_lex_state = 4}, - [45] = {.lex_state = 19, .external_lex_state = 4}, - [46] = {.lex_state = 19, .external_lex_state = 4}, - [47] = {.lex_state = 19, .external_lex_state = 4}, - [48] = {.lex_state = 19, .external_lex_state = 4}, - [49] = {.lex_state = 19, .external_lex_state = 4}, - [50] = {.lex_state = 19, .external_lex_state = 4}, - [51] = {.lex_state = 19, .external_lex_state = 4}, + [28] = {.lex_state = 19, .external_lex_state = 3}, + [29] = {.lex_state = 19, .external_lex_state = 3}, + [30] = {.lex_state = 19, .external_lex_state = 3}, + [31] = {.lex_state = 19, .external_lex_state = 3}, + [32] = {.lex_state = 19, .external_lex_state = 3}, + [33] = {.lex_state = 19, .external_lex_state = 3}, + [34] = {.lex_state = 19, .external_lex_state = 3}, + [35] = {.lex_state = 19, .external_lex_state = 3}, + [36] = {.lex_state = 19, .external_lex_state = 3}, + [37] = {.lex_state = 19, .external_lex_state = 3}, + [38] = {.lex_state = 19, .external_lex_state = 3}, + [39] = {.lex_state = 19, .external_lex_state = 3}, + [40] = {.lex_state = 19, .external_lex_state = 3}, + [41] = {.lex_state = 19, .external_lex_state = 3}, + [42] = {.lex_state = 19, .external_lex_state = 3}, + [43] = {.lex_state = 19, .external_lex_state = 3}, + [44] = {.lex_state = 19, .external_lex_state = 3}, + [45] = {.lex_state = 19, .external_lex_state = 3}, + [46] = {.lex_state = 19, .external_lex_state = 3}, + [47] = {.lex_state = 19, .external_lex_state = 3}, + [48] = {.lex_state = 19, .external_lex_state = 3}, + [49] = {.lex_state = 19, .external_lex_state = 3}, + [50] = {.lex_state = 19, .external_lex_state = 3}, + [51] = {.lex_state = 19, .external_lex_state = 3}, [52] = {.lex_state = 19, .external_lex_state = 4}, - [53] = {.lex_state = 19, .external_lex_state = 4}, + [53] = {.lex_state = 19, .external_lex_state = 3}, [54] = {.lex_state = 19, .external_lex_state = 3}, [55] = {.lex_state = 19, .external_lex_state = 6}, - [56] = {.lex_state = 19, .external_lex_state = 6}, - [57] = {.lex_state = 19, .external_lex_state = 4}, + [56] = {.lex_state = 19, .external_lex_state = 3}, + [57] = {.lex_state = 19, .external_lex_state = 6}, [58] = {.lex_state = 19, .external_lex_state = 6}, - [59] = {.lex_state = 19, .external_lex_state = 6}, - [60] = {.lex_state = 19, .external_lex_state = 4}, + [59] = {.lex_state = 19, .external_lex_state = 3}, + [60] = {.lex_state = 19, .external_lex_state = 3}, [61] = {.lex_state = 19, .external_lex_state = 6}, - [62] = {.lex_state = 19, .external_lex_state = 4}, + [62] = {.lex_state = 19, .external_lex_state = 6}, [63] = {.lex_state = 19, .external_lex_state = 7}, [64] = {.lex_state = 19, .external_lex_state = 8}, [65] = {.lex_state = 19, .external_lex_state = 9}, @@ -3294,375 +3510,375 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [68] = {.lex_state = 19, .external_lex_state = 9}, [69] = {.lex_state = 19, .external_lex_state = 10}, [70] = {.lex_state = 19, .external_lex_state = 9}, - [71] = {.lex_state = 19, .external_lex_state = 10}, - [72] = {.lex_state = 19, .external_lex_state = 8}, - [73] = {.lex_state = 19, .external_lex_state = 9}, - [74] = {.lex_state = 19, .external_lex_state = 10}, - [75] = {.lex_state = 19, .external_lex_state = 8}, + [71] = {.lex_state = 19, .external_lex_state = 8}, + [72] = {.lex_state = 19, .external_lex_state = 10}, + [73] = {.lex_state = 19, .external_lex_state = 8}, + [74] = {.lex_state = 19, .external_lex_state = 9}, + [75] = {.lex_state = 19, .external_lex_state = 10}, [76] = {.lex_state = 19, .external_lex_state = 11}, [77] = {.lex_state = 19, .external_lex_state = 12}, - [78] = {.lex_state = 19, .external_lex_state = 10}, + [78] = {.lex_state = 19, .external_lex_state = 13}, [79] = {.lex_state = 19, .external_lex_state = 13}, - [80] = {.lex_state = 19, .external_lex_state = 14}, - [81] = {.lex_state = 19, .external_lex_state = 13}, - [82] = {.lex_state = 19, .external_lex_state = 15}, - [83] = {.lex_state = 19, .external_lex_state = 9}, - [84] = {.lex_state = 19, .external_lex_state = 10}, + [80] = {.lex_state = 19, .external_lex_state = 13}, + [81] = {.lex_state = 19, .external_lex_state = 8}, + [82] = {.lex_state = 19, .external_lex_state = 8}, + [83] = {.lex_state = 19, .external_lex_state = 12}, + [84] = {.lex_state = 19, .external_lex_state = 13}, [85] = {.lex_state = 19, .external_lex_state = 13}, - [86] = {.lex_state = 19, .external_lex_state = 9}, - [87] = {.lex_state = 19, .external_lex_state = 9}, - [88] = {.lex_state = 19, .external_lex_state = 9}, - [89] = {.lex_state = 19, .external_lex_state = 12}, - [90] = {.lex_state = 19, .external_lex_state = 12}, - [91] = {.lex_state = 19, .external_lex_state = 8}, - [92] = {.lex_state = 19, .external_lex_state = 16}, - [93] = {.lex_state = 19, .external_lex_state = 11}, - [94] = {.lex_state = 19, .external_lex_state = 10}, - [95] = {.lex_state = 19, .external_lex_state = 16}, - [96] = {.lex_state = 19, .external_lex_state = 17}, - [97] = {.lex_state = 19, .external_lex_state = 10}, - [98] = {.lex_state = 19, .external_lex_state = 18}, - [99] = {.lex_state = 19, .external_lex_state = 11}, - [100] = {.lex_state = 19, .external_lex_state = 14}, - [101] = {.lex_state = 19, .external_lex_state = 19}, - [102] = {.lex_state = 19, .external_lex_state = 8}, - [103] = {.lex_state = 19, .external_lex_state = 8}, - [104] = {.lex_state = 19, .external_lex_state = 10}, - [105] = {.lex_state = 19, .external_lex_state = 18}, - [106] = {.lex_state = 19, .external_lex_state = 18}, - [107] = {.lex_state = 19, .external_lex_state = 9}, - [108] = {.lex_state = 19, .external_lex_state = 19}, - [109] = {.lex_state = 19, .external_lex_state = 19}, - [110] = {.lex_state = 19, .external_lex_state = 8}, - [111] = {.lex_state = 19, .external_lex_state = 8}, - [112] = {.lex_state = 19, .external_lex_state = 14}, - [113] = {.lex_state = 19, .external_lex_state = 18}, - [114] = {.lex_state = 19, .external_lex_state = 9}, + [86] = {.lex_state = 19, .external_lex_state = 8}, + [87] = {.lex_state = 19, .external_lex_state = 8}, + [88] = {.lex_state = 19, .external_lex_state = 14}, + [89] = {.lex_state = 19, .external_lex_state = 10}, + [90] = {.lex_state = 19, .external_lex_state = 10}, + [91] = {.lex_state = 19, .external_lex_state = 9}, + [92] = {.lex_state = 19, .external_lex_state = 15}, + [93] = {.lex_state = 19, .external_lex_state = 10}, + [94] = {.lex_state = 19, .external_lex_state = 16}, + [95] = {.lex_state = 19, .external_lex_state = 17}, + [96] = {.lex_state = 19, .external_lex_state = 9}, + [97] = {.lex_state = 19, .external_lex_state = 9}, + [98] = {.lex_state = 19, .external_lex_state = 16}, + [99] = {.lex_state = 19, .external_lex_state = 16}, + [100] = {.lex_state = 19, .external_lex_state = 17}, + [101] = {.lex_state = 19, .external_lex_state = 11}, + [102] = {.lex_state = 19, .external_lex_state = 11}, + [103] = {.lex_state = 19, .external_lex_state = 9}, + [104] = {.lex_state = 19, .external_lex_state = 9}, + [105] = {.lex_state = 19, .external_lex_state = 16}, + [106] = {.lex_state = 19, .external_lex_state = 11}, + [107] = {.lex_state = 19, .external_lex_state = 11}, + [108] = {.lex_state = 19, .external_lex_state = 9}, + [109] = {.lex_state = 19, .external_lex_state = 9}, + [110] = {.lex_state = 19, .external_lex_state = 18}, + [111] = {.lex_state = 19, .external_lex_state = 10}, + [112] = {.lex_state = 19, .external_lex_state = 19}, + [113] = {.lex_state = 19, .external_lex_state = 17}, + [114] = {.lex_state = 19, .external_lex_state = 17}, [115] = {.lex_state = 19, .external_lex_state = 19}, - [116] = {.lex_state = 19, .external_lex_state = 13}, + [116] = {.lex_state = 19, .external_lex_state = 8}, [117] = {.lex_state = 19, .external_lex_state = 10}, - [118] = {.lex_state = 19, .external_lex_state = 12}, - [119] = {.lex_state = 19, .external_lex_state = 19}, + [118] = {.lex_state = 19, .external_lex_state = 10}, + [119] = {.lex_state = 19, .external_lex_state = 17}, [120] = {.lex_state = 19, .external_lex_state = 17}, - [121] = {.lex_state = 19, .external_lex_state = 9}, - [122] = {.lex_state = 19, .external_lex_state = 10}, - [123] = {.lex_state = 19, .external_lex_state = 8}, - [124] = {.lex_state = 19, .external_lex_state = 14}, - [125] = {.lex_state = 19, .external_lex_state = 14}, - [126] = {.lex_state = 19, .external_lex_state = 11}, - [127] = {.lex_state = 19, .external_lex_state = 11}, - [128] = {.lex_state = 19, .external_lex_state = 8}, - [129] = {.lex_state = 19, .external_lex_state = 3}, - [130] = {.lex_state = 19, .external_lex_state = 3}, - [131] = {.lex_state = 19, .external_lex_state = 4}, - [132] = {.lex_state = 19, .external_lex_state = 4}, - [133] = {.lex_state = 19, .external_lex_state = 4}, + [121] = {.lex_state = 19, .external_lex_state = 19}, + [122] = {.lex_state = 19, .external_lex_state = 18}, + [123] = {.lex_state = 19, .external_lex_state = 12}, + [124] = {.lex_state = 19, .external_lex_state = 13}, + [125] = {.lex_state = 19, .external_lex_state = 8}, + [126] = {.lex_state = 19, .external_lex_state = 19}, + [127] = {.lex_state = 19, .external_lex_state = 8}, + [128] = {.lex_state = 19, .external_lex_state = 14}, + [129] = {.lex_state = 19, .external_lex_state = 12}, + [130] = {.lex_state = 19, .external_lex_state = 10}, + [131] = {.lex_state = 19, .external_lex_state = 11}, + [132] = {.lex_state = 19, .external_lex_state = 3}, + [133] = {.lex_state = 19, .external_lex_state = 3}, [134] = {.lex_state = 19, .external_lex_state = 3}, [135] = {.lex_state = 19, .external_lex_state = 3}, - [136] = {.lex_state = 19, .external_lex_state = 4}, + [136] = {.lex_state = 19, .external_lex_state = 3}, [137] = {.lex_state = 19, .external_lex_state = 3}, [138] = {.lex_state = 19, .external_lex_state = 3}, - [139] = {.lex_state = 19, .external_lex_state = 4}, + [139] = {.lex_state = 19, .external_lex_state = 3}, [140] = {.lex_state = 19, .external_lex_state = 3}, [141] = {.lex_state = 19, .external_lex_state = 3}, - [142] = {.lex_state = 19, .external_lex_state = 4}, + [142] = {.lex_state = 19, .external_lex_state = 3}, [143] = {.lex_state = 19, .external_lex_state = 3}, [144] = {.lex_state = 19, .external_lex_state = 3}, - [145] = {.lex_state = 19, .external_lex_state = 4}, + [145] = {.lex_state = 19, .external_lex_state = 3}, [146] = {.lex_state = 19, .external_lex_state = 3}, [147] = {.lex_state = 19, .external_lex_state = 3}, - [148] = {.lex_state = 19, .external_lex_state = 4}, - [149] = {.lex_state = 19, .external_lex_state = 4}, - [150] = {.lex_state = 19, .external_lex_state = 4}, - [151] = {.lex_state = 19, .external_lex_state = 5}, - [152] = {.lex_state = 19, .external_lex_state = 4}, - [153] = {.lex_state = 19, .external_lex_state = 5}, + [148] = {.lex_state = 19, .external_lex_state = 3}, + [149] = {.lex_state = 19, .external_lex_state = 3}, + [150] = {.lex_state = 19, .external_lex_state = 3}, + [151] = {.lex_state = 19, .external_lex_state = 3}, + [152] = {.lex_state = 19, .external_lex_state = 3}, + [153] = {.lex_state = 19, .external_lex_state = 3}, [154] = {.lex_state = 19, .external_lex_state = 4}, [155] = {.lex_state = 19, .external_lex_state = 4}, - [156] = {.lex_state = 19, .external_lex_state = 4}, - [157] = {.lex_state = 19, .external_lex_state = 5}, + [156] = {.lex_state = 19, .external_lex_state = 3}, + [157] = {.lex_state = 19, .external_lex_state = 4}, [158] = {.lex_state = 19, .external_lex_state = 4}, - [159] = {.lex_state = 19, .external_lex_state = 3}, - [160] = {.lex_state = 19, .external_lex_state = 4}, + [159] = {.lex_state = 19, .external_lex_state = 5}, + [160] = {.lex_state = 19, .external_lex_state = 5}, [161] = {.lex_state = 19, .external_lex_state = 4}, [162] = {.lex_state = 19, .external_lex_state = 4}, [163] = {.lex_state = 19, .external_lex_state = 3}, - [164] = {.lex_state = 19, .external_lex_state = 4}, - [165] = {.lex_state = 19, .external_lex_state = 3}, + [164] = {.lex_state = 19, .external_lex_state = 3}, + [165] = {.lex_state = 19, .external_lex_state = 4}, [166] = {.lex_state = 19, .external_lex_state = 4}, - [167] = {.lex_state = 19, .external_lex_state = 5}, + [167] = {.lex_state = 19, .external_lex_state = 4}, [168] = {.lex_state = 19, .external_lex_state = 4}, - [169] = {.lex_state = 19, .external_lex_state = 3}, + [169] = {.lex_state = 19, .external_lex_state = 4}, [170] = {.lex_state = 19, .external_lex_state = 4}, - [171] = {.lex_state = 19, .external_lex_state = 5}, + [171] = {.lex_state = 19, .external_lex_state = 4}, [172] = {.lex_state = 19, .external_lex_state = 4}, - [173] = {.lex_state = 19, .external_lex_state = 3}, + [173] = {.lex_state = 19, .external_lex_state = 4}, [174] = {.lex_state = 19, .external_lex_state = 4}, - [175] = {.lex_state = 19, .external_lex_state = 5}, + [175] = {.lex_state = 19, .external_lex_state = 4}, [176] = {.lex_state = 19, .external_lex_state = 4}, - [177] = {.lex_state = 19, .external_lex_state = 5}, + [177] = {.lex_state = 19, .external_lex_state = 4}, [178] = {.lex_state = 19, .external_lex_state = 4}, - [179] = {.lex_state = 19, .external_lex_state = 5}, - [180] = {.lex_state = 19, .external_lex_state = 5}, - [181] = {.lex_state = 19, .external_lex_state = 3}, - [182] = {.lex_state = 19, .external_lex_state = 5}, + [179] = {.lex_state = 19, .external_lex_state = 4}, + [180] = {.lex_state = 19, .external_lex_state = 4}, + [181] = {.lex_state = 19, .external_lex_state = 4}, + [182] = {.lex_state = 19, .external_lex_state = 4}, [183] = {.lex_state = 19, .external_lex_state = 4}, - [184] = {.lex_state = 19, .external_lex_state = 5}, - [185] = {.lex_state = 19, .external_lex_state = 3}, - [186] = {.lex_state = 19, .external_lex_state = 3}, - [187] = {.lex_state = 19, .external_lex_state = 5}, - [188] = {.lex_state = 19, .external_lex_state = 4}, - [189] = {.lex_state = 19, .external_lex_state = 5}, + [184] = {.lex_state = 19, .external_lex_state = 4}, + [185] = {.lex_state = 19, .external_lex_state = 4}, + [186] = {.lex_state = 19, .external_lex_state = 4}, + [187] = {.lex_state = 19, .external_lex_state = 3}, + [188] = {.lex_state = 19, .external_lex_state = 3}, + [189] = {.lex_state = 19, .external_lex_state = 4}, [190] = {.lex_state = 19, .external_lex_state = 4}, - [191] = {.lex_state = 19, .external_lex_state = 5}, - [192] = {.lex_state = 19, .external_lex_state = 5}, + [191] = {.lex_state = 19, .external_lex_state = 3}, + [192] = {.lex_state = 19, .external_lex_state = 4}, [193] = {.lex_state = 19, .external_lex_state = 5}, - [194] = {.lex_state = 19, .external_lex_state = 5}, + [194] = {.lex_state = 19, .external_lex_state = 3}, [195] = {.lex_state = 19, .external_lex_state = 3}, - [196] = {.lex_state = 19, .external_lex_state = 5}, + [196] = {.lex_state = 19, .external_lex_state = 3}, [197] = {.lex_state = 19, .external_lex_state = 4}, - [198] = {.lex_state = 19, .external_lex_state = 5}, - [199] = {.lex_state = 19, .external_lex_state = 5}, - [200] = {.lex_state = 19, .external_lex_state = 5}, + [198] = {.lex_state = 19, .external_lex_state = 3}, + [199] = {.lex_state = 19, .external_lex_state = 3}, + [200] = {.lex_state = 19, .external_lex_state = 4}, [201] = {.lex_state = 19, .external_lex_state = 3}, - [202] = {.lex_state = 19, .external_lex_state = 5}, - [203] = {.lex_state = 19, .external_lex_state = 5}, - [204] = {.lex_state = 19, .external_lex_state = 5}, + [202] = {.lex_state = 19, .external_lex_state = 3}, + [203] = {.lex_state = 19, .external_lex_state = 3}, + [204] = {.lex_state = 19, .external_lex_state = 3}, [205] = {.lex_state = 19, .external_lex_state = 3}, - [206] = {.lex_state = 19, .external_lex_state = 5}, - [207] = {.lex_state = 19, .external_lex_state = 4}, - [208] = {.lex_state = 19, .external_lex_state = 5}, + [206] = {.lex_state = 19, .external_lex_state = 4}, + [207] = {.lex_state = 19, .external_lex_state = 3}, + [208] = {.lex_state = 19, .external_lex_state = 4}, [209] = {.lex_state = 19, .external_lex_state = 3}, - [210] = {.lex_state = 19, .external_lex_state = 5}, - [211] = {.lex_state = 19, .external_lex_state = 4}, - [212] = {.lex_state = 19, .external_lex_state = 5}, - [213] = {.lex_state = 19, .external_lex_state = 3}, - [214] = {.lex_state = 19, .external_lex_state = 5}, - [215] = {.lex_state = 19, .external_lex_state = 3}, - [216] = {.lex_state = 19, .external_lex_state = 5}, + [210] = {.lex_state = 19, .external_lex_state = 3}, + [211] = {.lex_state = 19, .external_lex_state = 3}, + [212] = {.lex_state = 19, .external_lex_state = 4}, + [213] = {.lex_state = 19, .external_lex_state = 4}, + [214] = {.lex_state = 19, .external_lex_state = 4}, + [215] = {.lex_state = 19, .external_lex_state = 4}, + [216] = {.lex_state = 19, .external_lex_state = 4}, [217] = {.lex_state = 19, .external_lex_state = 4}, - [218] = {.lex_state = 19, .external_lex_state = 5}, - [219] = {.lex_state = 19, .external_lex_state = 3}, + [218] = {.lex_state = 19, .external_lex_state = 4}, + [219] = {.lex_state = 19, .external_lex_state = 4}, [220] = {.lex_state = 19, .external_lex_state = 4}, - [221] = {.lex_state = 19, .external_lex_state = 3}, - [222] = {.lex_state = 19, .external_lex_state = 3}, + [221] = {.lex_state = 19, .external_lex_state = 4}, + [222] = {.lex_state = 19, .external_lex_state = 5}, [223] = {.lex_state = 19, .external_lex_state = 5}, - [224] = {.lex_state = 19, .external_lex_state = 5}, - [225] = {.lex_state = 19, .external_lex_state = 4}, + [224] = {.lex_state = 19, .external_lex_state = 3}, + [225] = {.lex_state = 19, .external_lex_state = 5}, [226] = {.lex_state = 19, .external_lex_state = 5}, - [227] = {.lex_state = 19, .external_lex_state = 3}, + [227] = {.lex_state = 19, .external_lex_state = 5}, [228] = {.lex_state = 19, .external_lex_state = 5}, - [229] = {.lex_state = 19, .external_lex_state = 3}, - [230] = {.lex_state = 19, .external_lex_state = 3}, + [229] = {.lex_state = 19, .external_lex_state = 5}, + [230] = {.lex_state = 19, .external_lex_state = 5}, [231] = {.lex_state = 19, .external_lex_state = 5}, - [232] = {.lex_state = 19, .external_lex_state = 3}, - [233] = {.lex_state = 19, .external_lex_state = 3}, - [234] = {.lex_state = 19, .external_lex_state = 3}, - [235] = {.lex_state = 19, .external_lex_state = 4}, - [236] = {.lex_state = 19, .external_lex_state = 3}, - [237] = {.lex_state = 19, .external_lex_state = 4}, + [232] = {.lex_state = 19, .external_lex_state = 5}, + [233] = {.lex_state = 19, .external_lex_state = 5}, + [234] = {.lex_state = 19, .external_lex_state = 5}, + [235] = {.lex_state = 19, .external_lex_state = 5}, + [236] = {.lex_state = 19, .external_lex_state = 5}, + [237] = {.lex_state = 19, .external_lex_state = 5}, [238] = {.lex_state = 19, .external_lex_state = 5}, [239] = {.lex_state = 19, .external_lex_state = 5}, - [240] = {.lex_state = 19, .external_lex_state = 4}, - [241] = {.lex_state = 19, .external_lex_state = 4}, - [242] = {.lex_state = 19, .external_lex_state = 4}, - [243] = {.lex_state = 19, .external_lex_state = 3}, - [244] = {.lex_state = 19, .external_lex_state = 4}, - [245] = {.lex_state = 19, .external_lex_state = 3}, + [240] = {.lex_state = 19, .external_lex_state = 5}, + [241] = {.lex_state = 19, .external_lex_state = 5}, + [242] = {.lex_state = 19, .external_lex_state = 5}, + [243] = {.lex_state = 19, .external_lex_state = 5}, + [244] = {.lex_state = 19, .external_lex_state = 5}, + [245] = {.lex_state = 19, .external_lex_state = 5}, [246] = {.lex_state = 19, .external_lex_state = 5}, - [247] = {.lex_state = 19, .external_lex_state = 4}, + [247] = {.lex_state = 19, .external_lex_state = 5}, [248] = {.lex_state = 19, .external_lex_state = 5}, [249] = {.lex_state = 19, .external_lex_state = 5}, - [250] = {.lex_state = 19, .external_lex_state = 4}, - [251] = {.lex_state = 19, .external_lex_state = 4}, + [250] = {.lex_state = 19, .external_lex_state = 5}, + [251] = {.lex_state = 19, .external_lex_state = 5}, [252] = {.lex_state = 19, .external_lex_state = 3}, - [253] = {.lex_state = 19, .external_lex_state = 5}, - [254] = {.lex_state = 19, .external_lex_state = 4}, - [255] = {.lex_state = 19, .external_lex_state = 3}, - [256] = {.lex_state = 19, .external_lex_state = 3}, - [257] = {.lex_state = 19, .external_lex_state = 3}, + [253] = {.lex_state = 19, .external_lex_state = 3}, + [254] = {.lex_state = 19, .external_lex_state = 5}, + [255] = {.lex_state = 19, .external_lex_state = 5}, + [256] = {.lex_state = 19, .external_lex_state = 5}, + [257] = {.lex_state = 19, .external_lex_state = 5}, [258] = {.lex_state = 19, .external_lex_state = 5}, [259] = {.lex_state = 19, .external_lex_state = 3}, - [260] = {.lex_state = 19, .external_lex_state = 3}, - [261] = {.lex_state = 19, .external_lex_state = 3}, - [262] = {.lex_state = 19, .external_lex_state = 3}, + [260] = {.lex_state = 19, .external_lex_state = 5}, + [261] = {.lex_state = 19, .external_lex_state = 5}, + [262] = {.lex_state = 19, .external_lex_state = 5}, [263] = {.lex_state = 19, .external_lex_state = 5}, - [264] = {.lex_state = 19, .external_lex_state = 3}, - [265] = {.lex_state = 19, .external_lex_state = 4}, - [266] = {.lex_state = 19, .external_lex_state = 7}, - [267] = {.lex_state = 19, .external_lex_state = 4}, - [268] = {.lex_state = 19, .external_lex_state = 7}, - [269] = {.lex_state = 3, .external_lex_state = 20}, - [270] = {.lex_state = 3, .external_lex_state = 20}, - [271] = {.lex_state = 3, .external_lex_state = 20}, - [272] = {.lex_state = 3, .external_lex_state = 20}, - [273] = {.lex_state = 3, .external_lex_state = 20}, - [274] = {.lex_state = 19, .external_lex_state = 21}, - [275] = {.lex_state = 19, .external_lex_state = 21}, - [276] = {.lex_state = 19, .external_lex_state = 21}, - [277] = {.lex_state = 19, .external_lex_state = 21}, - [278] = {.lex_state = 19, .external_lex_state = 21}, - [279] = {.lex_state = 19, .external_lex_state = 21}, + [264] = {.lex_state = 19, .external_lex_state = 5}, + [265] = {.lex_state = 19, .external_lex_state = 5}, + [266] = {.lex_state = 19, .external_lex_state = 4}, + [267] = {.lex_state = 19, .external_lex_state = 5}, + [268] = {.lex_state = 19, .external_lex_state = 5}, + [269] = {.lex_state = 19, .external_lex_state = 3}, + [270] = {.lex_state = 19, .external_lex_state = 4}, + [271] = {.lex_state = 19, .external_lex_state = 4}, + [272] = {.lex_state = 19, .external_lex_state = 7}, + [273] = {.lex_state = 19, .external_lex_state = 3}, + [274] = {.lex_state = 19, .external_lex_state = 7}, + [275] = {.lex_state = 3, .external_lex_state = 20}, + [276] = {.lex_state = 3, .external_lex_state = 20}, + [277] = {.lex_state = 3, .external_lex_state = 20}, + [278] = {.lex_state = 3, .external_lex_state = 20}, + [279] = {.lex_state = 3, .external_lex_state = 20}, [280] = {.lex_state = 19, .external_lex_state = 21}, [281] = {.lex_state = 19, .external_lex_state = 21}, [282] = {.lex_state = 19, .external_lex_state = 21}, [283] = {.lex_state = 19, .external_lex_state = 21}, - [284] = {.lex_state = 19, .external_lex_state = 22}, - [285] = {.lex_state = 19, .external_lex_state = 22}, - [286] = {.lex_state = 19, .external_lex_state = 22}, - [287] = {.lex_state = 19, .external_lex_state = 22}, - [288] = {.lex_state = 19, .external_lex_state = 22}, - [289] = {.lex_state = 2, .external_lex_state = 20}, - [290] = {.lex_state = 1, .external_lex_state = 23}, - [291] = {.lex_state = 19, .external_lex_state = 24}, - [292] = {.lex_state = 1, .external_lex_state = 23}, - [293] = {.lex_state = 1, .external_lex_state = 23}, - [294] = {.lex_state = 1, .external_lex_state = 23}, - [295] = {.lex_state = 1, .external_lex_state = 23}, - [296] = {.lex_state = 2, .external_lex_state = 20}, - [297] = {.lex_state = 2, .external_lex_state = 20}, - [298] = {.lex_state = 2, .external_lex_state = 20}, - [299] = {.lex_state = 2, .external_lex_state = 20}, + [284] = {.lex_state = 19, .external_lex_state = 21}, + [285] = {.lex_state = 19, .external_lex_state = 21}, + [286] = {.lex_state = 19, .external_lex_state = 21}, + [287] = {.lex_state = 19, .external_lex_state = 21}, + [288] = {.lex_state = 19, .external_lex_state = 21}, + [289] = {.lex_state = 19, .external_lex_state = 21}, + [290] = {.lex_state = 19, .external_lex_state = 22}, + [291] = {.lex_state = 19, .external_lex_state = 23}, + [292] = {.lex_state = 19, .external_lex_state = 23}, + [293] = {.lex_state = 19, .external_lex_state = 23}, + [294] = {.lex_state = 19, .external_lex_state = 23}, + [295] = {.lex_state = 19, .external_lex_state = 23}, + [296] = {.lex_state = 1, .external_lex_state = 24}, + [297] = {.lex_state = 19, .external_lex_state = 25}, + [298] = {.lex_state = 1, .external_lex_state = 24}, + [299] = {.lex_state = 1, .external_lex_state = 24}, [300] = {.lex_state = 2, .external_lex_state = 20}, [301] = {.lex_state = 2, .external_lex_state = 20}, - [302] = {.lex_state = 19, .external_lex_state = 24}, + [302] = {.lex_state = 1, .external_lex_state = 24}, [303] = {.lex_state = 2, .external_lex_state = 20}, - [304] = {.lex_state = 1, .external_lex_state = 23}, - [305] = {.lex_state = 19, .external_lex_state = 25}, + [304] = {.lex_state = 2, .external_lex_state = 20}, + [305] = {.lex_state = 2, .external_lex_state = 20}, [306] = {.lex_state = 2, .external_lex_state = 20}, [307] = {.lex_state = 2, .external_lex_state = 20}, - [308] = {.lex_state = 19, .external_lex_state = 26}, - [309] = {.lex_state = 19, .external_lex_state = 20}, - [310] = {.lex_state = 19, .external_lex_state = 20}, - [311] = {.lex_state = 19, .external_lex_state = 20}, - [312] = {.lex_state = 19, .external_lex_state = 20}, - [313] = {.lex_state = 19, .external_lex_state = 20}, - [314] = {.lex_state = 19, .external_lex_state = 24}, - [315] = {.lex_state = 19, .external_lex_state = 25}, - [316] = {.lex_state = 19, .external_lex_state = 26}, - [317] = {.lex_state = 2}, - [318] = {.lex_state = 19, .external_lex_state = 27}, + [308] = {.lex_state = 2, .external_lex_state = 20}, + [309] = {.lex_state = 2, .external_lex_state = 20}, + [310] = {.lex_state = 2, .external_lex_state = 20}, + [311] = {.lex_state = 1, .external_lex_state = 24}, + [312] = {.lex_state = 1, .external_lex_state = 24}, + [313] = {.lex_state = 19, .external_lex_state = 25}, + [314] = {.lex_state = 19, .external_lex_state = 25}, + [315] = {.lex_state = 19, .external_lex_state = 20}, + [316] = {.lex_state = 19, .external_lex_state = 20}, + [317] = {.lex_state = 19, .external_lex_state = 20}, + [318] = {.lex_state = 19, .external_lex_state = 22}, [319] = {.lex_state = 19, .external_lex_state = 26}, - [320] = {.lex_state = 2}, - [321] = {.lex_state = 19}, - [322] = {.lex_state = 19, .external_lex_state = 27}, - [323] = {.lex_state = 2}, - [324] = {.lex_state = 19, .external_lex_state = 27}, - [325] = {.lex_state = 19, .external_lex_state = 27}, - [326] = {.lex_state = 19}, + [320] = {.lex_state = 19, .external_lex_state = 26}, + [321] = {.lex_state = 19, .external_lex_state = 20}, + [322] = {.lex_state = 19, .external_lex_state = 20}, + [323] = {.lex_state = 19, .external_lex_state = 27}, + [324] = {.lex_state = 19, .external_lex_state = 26}, + [325] = {.lex_state = 19}, + [326] = {.lex_state = 2}, [327] = {.lex_state = 19, .external_lex_state = 27}, - [328] = {.lex_state = 19, .external_lex_state = 27}, - [329] = {.lex_state = 2}, - [330] = {.lex_state = 19}, - [331] = {.lex_state = 19}, + [328] = {.lex_state = 19}, + [329] = {.lex_state = 19, .external_lex_state = 27}, + [330] = {.lex_state = 19, .external_lex_state = 27}, + [331] = {.lex_state = 19, .external_lex_state = 27}, [332] = {.lex_state = 2}, - [333] = {.lex_state = 19}, - [334] = {.lex_state = 2}, + [333] = {.lex_state = 19, .external_lex_state = 27}, + [334] = {.lex_state = 19, .external_lex_state = 27}, [335] = {.lex_state = 19, .external_lex_state = 27}, - [336] = {.lex_state = 2}, - [337] = {.lex_state = 19}, - [338] = {.lex_state = 2}, + [336] = {.lex_state = 19, .external_lex_state = 27}, + [337] = {.lex_state = 19, .external_lex_state = 27}, + [338] = {.lex_state = 19, .external_lex_state = 27}, [339] = {.lex_state = 19, .external_lex_state = 27}, [340] = {.lex_state = 19, .external_lex_state = 27}, [341] = {.lex_state = 19}, - [342] = {.lex_state = 19, .external_lex_state = 27}, - [343] = {.lex_state = 19, .external_lex_state = 27}, - [344] = {.lex_state = 19, .external_lex_state = 27}, + [342] = {.lex_state = 19}, + [343] = {.lex_state = 2}, + [344] = {.lex_state = 2}, [345] = {.lex_state = 19}, - [346] = {.lex_state = 19, .external_lex_state = 27}, + [346] = {.lex_state = 19}, [347] = {.lex_state = 2}, - [348] = {.lex_state = 19, .external_lex_state = 27}, + [348] = {.lex_state = 2}, [349] = {.lex_state = 19}, - [350] = {.lex_state = 19, .external_lex_state = 27}, + [350] = {.lex_state = 19}, [351] = {.lex_state = 2}, - [352] = {.lex_state = 19}, - [353] = {.lex_state = 19}, - [354] = {.lex_state = 19, .external_lex_state = 20}, - [355] = {.lex_state = 19, .external_lex_state = 20}, - [356] = {.lex_state = 19, .external_lex_state = 28}, - [357] = {.lex_state = 19}, - [358] = {.lex_state = 0, .external_lex_state = 29}, - [359] = {.lex_state = 4}, - [360] = {.lex_state = 19, .external_lex_state = 28}, - [361] = {.lex_state = 4}, - [362] = {.lex_state = 19}, - [363] = {.lex_state = 19, .external_lex_state = 20}, - [364] = {.lex_state = 5}, - [365] = {.lex_state = 5}, - [366] = {.lex_state = 1, .external_lex_state = 23}, - [367] = {.lex_state = 1, .external_lex_state = 23}, - [368] = {.lex_state = 5}, - [369] = {.lex_state = 0, .external_lex_state = 30}, - [370] = {.lex_state = 5}, - [371] = {.lex_state = 19, .external_lex_state = 25}, - [372] = {.lex_state = 19, .external_lex_state = 25}, - [373] = {.lex_state = 0, .external_lex_state = 29}, - [374] = {.lex_state = 19}, + [352] = {.lex_state = 2}, + [353] = {.lex_state = 19, .external_lex_state = 27}, + [354] = {.lex_state = 19}, + [355] = {.lex_state = 2}, + [356] = {.lex_state = 2}, + [357] = {.lex_state = 19, .external_lex_state = 27}, + [358] = {.lex_state = 19, .external_lex_state = 20}, + [359] = {.lex_state = 19}, + [360] = {.lex_state = 19, .external_lex_state = 20}, + [361] = {.lex_state = 19}, + [362] = {.lex_state = 19, .external_lex_state = 28}, + [363] = {.lex_state = 19, .external_lex_state = 28}, + [364] = {.lex_state = 19}, + [365] = {.lex_state = 19}, + [366] = {.lex_state = 4}, + [367] = {.lex_state = 4}, + [368] = {.lex_state = 0, .external_lex_state = 29}, + [369] = {.lex_state = 19, .external_lex_state = 22}, + [370] = {.lex_state = 1, .external_lex_state = 24}, + [371] = {.lex_state = 19}, + [372] = {.lex_state = 19}, + [373] = {.lex_state = 19, .external_lex_state = 20}, + [374] = {.lex_state = 19, .external_lex_state = 22}, [375] = {.lex_state = 5}, - [376] = {.lex_state = 19}, + [376] = {.lex_state = 1, .external_lex_state = 24}, [377] = {.lex_state = 5}, - [378] = {.lex_state = 19, .external_lex_state = 28}, - [379] = {.lex_state = 0, .external_lex_state = 30}, - [380] = {.lex_state = 4}, - [381] = {.lex_state = 19, .external_lex_state = 25}, - [382] = {.lex_state = 19}, - [383] = {.lex_state = 0, .external_lex_state = 29}, - [384] = {.lex_state = 0, .external_lex_state = 30}, - [385] = {.lex_state = 39, .external_lex_state = 31}, - [386] = {.lex_state = 39, .external_lex_state = 31}, - [387] = {.lex_state = 39, .external_lex_state = 31}, - [388] = {.lex_state = 39, .external_lex_state = 31}, - [389] = {.lex_state = 39, .external_lex_state = 31}, - [390] = {.lex_state = 0, .external_lex_state = 32}, - [391] = {.lex_state = 0, .external_lex_state = 32}, - [392] = {.lex_state = 39, .external_lex_state = 31}, - [393] = {.lex_state = 39, .external_lex_state = 31}, - [394] = {.lex_state = 39, .external_lex_state = 31}, - [395] = {.lex_state = 39, .external_lex_state = 31}, - [396] = {.lex_state = 0, .external_lex_state = 32}, - [397] = {.lex_state = 0, .external_lex_state = 32}, - [398] = {.lex_state = 39, .external_lex_state = 31}, - [399] = {.lex_state = 39, .external_lex_state = 31}, - [400] = {.lex_state = 39, .external_lex_state = 31}, - [401] = {.lex_state = 39, .external_lex_state = 31}, - [402] = {.lex_state = 39, .external_lex_state = 31}, - [403] = {.lex_state = 39, .external_lex_state = 31}, - [404] = {.lex_state = 0, .external_lex_state = 32}, - [405] = {.lex_state = 0, .external_lex_state = 32}, - [406] = {.lex_state = 0, .external_lex_state = 33}, - [407] = {.lex_state = 0, .external_lex_state = 34}, - [408] = {.lex_state = 0, .external_lex_state = 34}, - [409] = {.lex_state = 0, .external_lex_state = 35}, - [410] = {.lex_state = 0, .external_lex_state = 33}, - [411] = {.lex_state = 0, .external_lex_state = 34}, - [412] = {.lex_state = 0, .external_lex_state = 33}, - [413] = {.lex_state = 0, .external_lex_state = 35}, - [414] = {.lex_state = 0, .external_lex_state = 35}, - [415] = {.lex_state = 0, .external_lex_state = 35}, - [416] = {.lex_state = 0, .external_lex_state = 34}, + [378] = {.lex_state = 0, .external_lex_state = 29}, + [379] = {.lex_state = 5}, + [380] = {.lex_state = 0, .external_lex_state = 30}, + [381] = {.lex_state = 5}, + [382] = {.lex_state = 5}, + [383] = {.lex_state = 5}, + [384] = {.lex_state = 19, .external_lex_state = 22}, + [385] = {.lex_state = 19, .external_lex_state = 28}, + [386] = {.lex_state = 4}, + [387] = {.lex_state = 0, .external_lex_state = 30}, + [388] = {.lex_state = 19}, + [389] = {.lex_state = 0, .external_lex_state = 29}, + [390] = {.lex_state = 0, .external_lex_state = 31}, + [391] = {.lex_state = 39, .external_lex_state = 32}, + [392] = {.lex_state = 39, .external_lex_state = 32}, + [393] = {.lex_state = 39, .external_lex_state = 32}, + [394] = {.lex_state = 39, .external_lex_state = 32}, + [395] = {.lex_state = 0, .external_lex_state = 31}, + [396] = {.lex_state = 0, .external_lex_state = 31}, + [397] = {.lex_state = 39, .external_lex_state = 32}, + [398] = {.lex_state = 39, .external_lex_state = 32}, + [399] = {.lex_state = 39, .external_lex_state = 32}, + [400] = {.lex_state = 39, .external_lex_state = 32}, + [401] = {.lex_state = 39, .external_lex_state = 32}, + [402] = {.lex_state = 0, .external_lex_state = 31}, + [403] = {.lex_state = 39, .external_lex_state = 32}, + [404] = {.lex_state = 39, .external_lex_state = 32}, + [405] = {.lex_state = 0, .external_lex_state = 30}, + [406] = {.lex_state = 39, .external_lex_state = 32}, + [407] = {.lex_state = 39, .external_lex_state = 32}, + [408] = {.lex_state = 0, .external_lex_state = 31}, + [409] = {.lex_state = 0, .external_lex_state = 31}, + [410] = {.lex_state = 39, .external_lex_state = 32}, + [411] = {.lex_state = 39, .external_lex_state = 32}, + [412] = {.lex_state = 39, .external_lex_state = 32}, + [413] = {.lex_state = 0, .external_lex_state = 33}, + [414] = {.lex_state = 0, .external_lex_state = 33}, + [415] = {.lex_state = 0, .external_lex_state = 34}, + [416] = {.lex_state = 0, .external_lex_state = 35}, [417] = {.lex_state = 0, .external_lex_state = 33}, - [418] = {.lex_state = 0, .external_lex_state = 35}, - [419] = {.lex_state = 39, .external_lex_state = 31}, + [418] = {.lex_state = 0, .external_lex_state = 34}, + [419] = {.lex_state = 0, .external_lex_state = 33}, [420] = {.lex_state = 0, .external_lex_state = 35}, - [421] = {.lex_state = 0, .external_lex_state = 33}, - [422] = {.lex_state = 0, .external_lex_state = 34}, - [423] = {.lex_state = 39, .external_lex_state = 31}, + [421] = {.lex_state = 39, .external_lex_state = 32}, + [422] = {.lex_state = 0, .external_lex_state = 35}, + [423] = {.lex_state = 0, .external_lex_state = 34}, [424] = {.lex_state = 0, .external_lex_state = 34}, [425] = {.lex_state = 0, .external_lex_state = 33}, - [426] = {.lex_state = 0, .external_lex_state = 29}, - [427] = {.lex_state = 0, .external_lex_state = 36}, - [428] = {.lex_state = 0, .external_lex_state = 36}, - [429] = {.lex_state = 0, .external_lex_state = 36}, - [430] = {.lex_state = 0, .external_lex_state = 36}, - [431] = {.lex_state = 0, .external_lex_state = 36}, - [432] = {.lex_state = 0, .external_lex_state = 36}, - [433] = {.lex_state = 5}, - [434] = {.lex_state = 5}, + [426] = {.lex_state = 0, .external_lex_state = 35}, + [427] = {.lex_state = 0, .external_lex_state = 35}, + [428] = {.lex_state = 0, .external_lex_state = 33}, + [429] = {.lex_state = 0, .external_lex_state = 34}, + [430] = {.lex_state = 0, .external_lex_state = 35}, + [431] = {.lex_state = 0, .external_lex_state = 34}, + [432] = {.lex_state = 5}, + [433] = {.lex_state = 0, .external_lex_state = 36}, + [434] = {.lex_state = 0, .external_lex_state = 36}, [435] = {.lex_state = 0, .external_lex_state = 36}, [436] = {.lex_state = 0, .external_lex_state = 36}, - [437] = {.lex_state = 0, .external_lex_state = 29}, + [437] = {.lex_state = 0, .external_lex_state = 36}, [438] = {.lex_state = 0, .external_lex_state = 36}, - [439] = {.lex_state = 0, .external_lex_state = 29}, + [439] = {.lex_state = 0, .external_lex_state = 36}, [440] = {.lex_state = 0, .external_lex_state = 36}, [441] = {.lex_state = 0, .external_lex_state = 36}, [442] = {.lex_state = 0, .external_lex_state = 36}, @@ -3672,653 +3888,690 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [446] = {.lex_state = 0, .external_lex_state = 36}, [447] = {.lex_state = 0, .external_lex_state = 36}, [448] = {.lex_state = 0, .external_lex_state = 36}, - [449] = {.lex_state = 5}, - [450] = {.lex_state = 5}, + [449] = {.lex_state = 0, .external_lex_state = 36}, + [450] = {.lex_state = 0, .external_lex_state = 36}, [451] = {.lex_state = 0, .external_lex_state = 36}, [452] = {.lex_state = 0, .external_lex_state = 36}, [453] = {.lex_state = 0, .external_lex_state = 36}, - [454] = {.lex_state = 0, .external_lex_state = 29}, + [454] = {.lex_state = 0, .external_lex_state = 36}, [455] = {.lex_state = 0, .external_lex_state = 36}, [456] = {.lex_state = 0, .external_lex_state = 36}, - [457] = {.lex_state = 0, .external_lex_state = 36}, + [457] = {.lex_state = 0, .external_lex_state = 29}, [458] = {.lex_state = 0, .external_lex_state = 36}, [459] = {.lex_state = 0, .external_lex_state = 29}, [460] = {.lex_state = 0, .external_lex_state = 36}, - [461] = {.lex_state = 0, .external_lex_state = 36}, - [462] = {.lex_state = 0, .external_lex_state = 29}, - [463] = {.lex_state = 0, .external_lex_state = 36}, + [461] = {.lex_state = 5}, + [462] = {.lex_state = 5}, + [463] = {.lex_state = 0, .external_lex_state = 29}, [464] = {.lex_state = 0, .external_lex_state = 36}, - [465] = {.lex_state = 0, .external_lex_state = 36}, - [466] = {.lex_state = 5}, - [467] = {.lex_state = 0, .external_lex_state = 36}, + [465] = {.lex_state = 5}, + [466] = {.lex_state = 0, .external_lex_state = 36}, + [467] = {.lex_state = 5}, [468] = {.lex_state = 0, .external_lex_state = 36}, - [469] = {.lex_state = 0, .external_lex_state = 36}, - [470] = {.lex_state = 0, .external_lex_state = 36}, - [471] = {.lex_state = 0, .external_lex_state = 36}, - [472] = {.lex_state = 0, .external_lex_state = 36}, + [469] = {.lex_state = 0, .external_lex_state = 29}, + [470] = {.lex_state = 5}, + [471] = {.lex_state = 5}, + [472] = {.lex_state = 0, .external_lex_state = 29}, [473] = {.lex_state = 0, .external_lex_state = 36}, [474] = {.lex_state = 5}, - [475] = {.lex_state = 5}, + [475] = {.lex_state = 0, .external_lex_state = 29}, [476] = {.lex_state = 0, .external_lex_state = 36}, - [477] = {.lex_state = 0, .external_lex_state = 29}, + [477] = {.lex_state = 5}, [478] = {.lex_state = 0, .external_lex_state = 36}, [479] = {.lex_state = 0, .external_lex_state = 36}, [480] = {.lex_state = 0, .external_lex_state = 36}, - [481] = {.lex_state = 5}, - [482] = {.lex_state = 5}, - [483] = {.lex_state = 0, .external_lex_state = 30}, - [484] = {.lex_state = 0, .external_lex_state = 30}, - [485] = {.lex_state = 0, .external_lex_state = 30}, - [486] = {.lex_state = 0, .external_lex_state = 31}, - [487] = {.lex_state = 0, .external_lex_state = 31}, - [488] = {.lex_state = 0, .external_lex_state = 37}, - [489] = {.lex_state = 0, .external_lex_state = 30}, + [481] = {.lex_state = 0, .external_lex_state = 36}, + [482] = {.lex_state = 0, .external_lex_state = 36}, + [483] = {.lex_state = 5}, + [484] = {.lex_state = 0, .external_lex_state = 36}, + [485] = {.lex_state = 0, .external_lex_state = 36}, + [486] = {.lex_state = 0, .external_lex_state = 36}, + [487] = {.lex_state = 0, .external_lex_state = 36}, + [488] = {.lex_state = 0, .external_lex_state = 36}, + [489] = {.lex_state = 0, .external_lex_state = 29}, [490] = {.lex_state = 0, .external_lex_state = 30}, - [491] = {.lex_state = 0, .external_lex_state = 31}, + [491] = {.lex_state = 0, .external_lex_state = 37}, [492] = {.lex_state = 0, .external_lex_state = 30}, [493] = {.lex_state = 0, .external_lex_state = 30}, - [494] = {.lex_state = 0, .external_lex_state = 38}, - [495] = {.lex_state = 0, .external_lex_state = 39}, - [496] = {.lex_state = 0, .external_lex_state = 40}, - [497] = {.lex_state = 0, .external_lex_state = 41}, - [498] = {.lex_state = 0, .external_lex_state = 42}, - [499] = {.lex_state = 0, .external_lex_state = 43}, - [500] = {.lex_state = 0, .external_lex_state = 44}, - [501] = {.lex_state = 0, .external_lex_state = 45}, - [502] = {.lex_state = 0, .external_lex_state = 46}, - [503] = {.lex_state = 0, .external_lex_state = 47}, - [504] = {.lex_state = 0, .external_lex_state = 48}, - [505] = {.lex_state = 0, .external_lex_state = 49}, - [506] = {.lex_state = 0, .external_lex_state = 39}, - [507] = {.lex_state = 0, .external_lex_state = 50}, - [508] = {.lex_state = 0, .external_lex_state = 38}, - [509] = {.lex_state = 0, .external_lex_state = 51}, - [510] = {.lex_state = 0, .external_lex_state = 52}, - [511] = {.lex_state = 0, .external_lex_state = 52}, - [512] = {.lex_state = 0, .external_lex_state = 45}, - [513] = {.lex_state = 0, .external_lex_state = 44}, - [514] = {.lex_state = 0, .external_lex_state = 51}, - [515] = {.lex_state = 0, .external_lex_state = 38}, - [516] = {.lex_state = 0, .external_lex_state = 43}, - [517] = {.lex_state = 0, .external_lex_state = 50}, - [518] = {.lex_state = 0, .external_lex_state = 39}, - [519] = {.lex_state = 7, .external_lex_state = 27}, + [494] = {.lex_state = 0, .external_lex_state = 30}, + [495] = {.lex_state = 0, .external_lex_state = 30}, + [496] = {.lex_state = 0, .external_lex_state = 32}, + [497] = {.lex_state = 0, .external_lex_state = 30}, + [498] = {.lex_state = 0, .external_lex_state = 32}, + [499] = {.lex_state = 0, .external_lex_state = 32}, + [500] = {.lex_state = 0, .external_lex_state = 30}, + [501] = {.lex_state = 7, .external_lex_state = 27}, + [502] = {.lex_state = 39}, + [503] = {.lex_state = 7, .external_lex_state = 27}, + [504] = {.lex_state = 8}, + [505] = {.lex_state = 39, .external_lex_state = 38}, + [506] = {.lex_state = 39}, + [507] = {.lex_state = 8}, + [508] = {.lex_state = 8}, + [509] = {.lex_state = 39, .external_lex_state = 38}, + [510] = {.lex_state = 0, .external_lex_state = 39}, + [511] = {.lex_state = 0, .external_lex_state = 40}, + [512] = {.lex_state = 0, .external_lex_state = 41}, + [513] = {.lex_state = 0, .external_lex_state = 42}, + [514] = {.lex_state = 0, .external_lex_state = 43}, + [515] = {.lex_state = 0, .external_lex_state = 44}, + [516] = {.lex_state = 0, .external_lex_state = 45}, + [517] = {.lex_state = 0, .external_lex_state = 46}, + [518] = {.lex_state = 0, .external_lex_state = 47}, + [519] = {.lex_state = 0, .external_lex_state = 48}, [520] = {.lex_state = 0, .external_lex_state = 49}, - [521] = {.lex_state = 0, .external_lex_state = 48}, - [522] = {.lex_state = 0, .external_lex_state = 42}, - [523] = {.lex_state = 0, .external_lex_state = 41}, - [524] = {.lex_state = 0, .external_lex_state = 47}, - [525] = {.lex_state = 0, .external_lex_state = 40}, - [526] = {.lex_state = 0, .external_lex_state = 53}, - [527] = {.lex_state = 0, .external_lex_state = 46}, - [528] = {.lex_state = 39}, - [529] = {.lex_state = 39, .external_lex_state = 54}, - [530] = {.lex_state = 7, .external_lex_state = 27}, - [531] = {.lex_state = 0, .external_lex_state = 55}, - [532] = {.lex_state = 0, .external_lex_state = 46}, - [533] = {.lex_state = 7, .external_lex_state = 27}, - [534] = {.lex_state = 0, .external_lex_state = 47}, - [535] = {.lex_state = 0, .external_lex_state = 48}, - [536] = {.lex_state = 0, .external_lex_state = 49}, - [537] = {.lex_state = 0, .external_lex_state = 39}, - [538] = {.lex_state = 7, .external_lex_state = 27}, - [539] = {.lex_state = 7, .external_lex_state = 27}, - [540] = {.lex_state = 8}, - [541] = {.lex_state = 0, .external_lex_state = 50}, - [542] = {.lex_state = 0, .external_lex_state = 38}, - [543] = {.lex_state = 0, .external_lex_state = 51}, - [544] = {.lex_state = 0, .external_lex_state = 46}, - [545] = {.lex_state = 0, .external_lex_state = 47}, - [546] = {.lex_state = 0, .external_lex_state = 48}, - [547] = {.lex_state = 0, .external_lex_state = 49}, - [548] = {.lex_state = 0, .external_lex_state = 39}, - [549] = {.lex_state = 0, .external_lex_state = 50}, - [550] = {.lex_state = 0, .external_lex_state = 38}, - [551] = {.lex_state = 0, .external_lex_state = 51}, - [552] = {.lex_state = 0, .external_lex_state = 52}, - [553] = {.lex_state = 0, .external_lex_state = 45}, - [554] = {.lex_state = 0, .external_lex_state = 44}, - [555] = {.lex_state = 0, .external_lex_state = 43}, - [556] = {.lex_state = 0, .external_lex_state = 52}, - [557] = {.lex_state = 0, .external_lex_state = 42}, - [558] = {.lex_state = 0, .external_lex_state = 53}, - [559] = {.lex_state = 0, .external_lex_state = 40}, - [560] = {.lex_state = 0, .external_lex_state = 45}, - [561] = {.lex_state = 0, .external_lex_state = 44}, - [562] = {.lex_state = 0, .external_lex_state = 56}, - [563] = {.lex_state = 0, .external_lex_state = 43}, - [564] = {.lex_state = 0, .external_lex_state = 42}, - [565] = {.lex_state = 0, .external_lex_state = 41}, - [566] = {.lex_state = 0, .external_lex_state = 40}, - [567] = {.lex_state = 8}, - [568] = {.lex_state = 0, .external_lex_state = 53}, - [569] = {.lex_state = 8}, - [570] = {.lex_state = 0, .external_lex_state = 46}, - [571] = {.lex_state = 0, .external_lex_state = 57}, - [572] = {.lex_state = 0, .external_lex_state = 57}, - [573] = {.lex_state = 0, .external_lex_state = 47}, - [574] = {.lex_state = 0, .external_lex_state = 58}, - [575] = {.lex_state = 0, .external_lex_state = 48}, - [576] = {.lex_state = 0, .external_lex_state = 57}, - [577] = {.lex_state = 0, .external_lex_state = 57}, - [578] = {.lex_state = 0, .external_lex_state = 49}, - [579] = {.lex_state = 0, .external_lex_state = 53}, - [580] = {.lex_state = 0, .external_lex_state = 58}, - [581] = {.lex_state = 0, .external_lex_state = 41}, - [582] = {.lex_state = 0, .external_lex_state = 58}, - [583] = {.lex_state = 0, .external_lex_state = 50}, - [584] = {.lex_state = 0, .external_lex_state = 51}, - [585] = {.lex_state = 0, .external_lex_state = 57}, - [586] = {.lex_state = 0, .external_lex_state = 52}, - [587] = {.lex_state = 0, .external_lex_state = 45}, - [588] = {.lex_state = 0, .external_lex_state = 44}, - [589] = {.lex_state = 0, .external_lex_state = 58}, - [590] = {.lex_state = 0, .external_lex_state = 43}, - [591] = {.lex_state = 0, .external_lex_state = 42}, - [592] = {.lex_state = 0, .external_lex_state = 41}, - [593] = {.lex_state = 0, .external_lex_state = 56}, - [594] = {.lex_state = 39, .external_lex_state = 54}, - [595] = {.lex_state = 0, .external_lex_state = 42}, - [596] = {.lex_state = 0, .external_lex_state = 40}, - [597] = {.lex_state = 0, .external_lex_state = 53}, - [598] = {.lex_state = 39}, - [599] = {.lex_state = 0, .external_lex_state = 53}, - [600] = {.lex_state = 0, .external_lex_state = 40}, - [601] = {.lex_state = 0, .external_lex_state = 41}, - [602] = {.lex_state = 0, .external_lex_state = 46}, - [603] = {.lex_state = 0, .external_lex_state = 47}, - [604] = {.lex_state = 0, .external_lex_state = 48}, - [605] = {.lex_state = 0, .external_lex_state = 49}, - [606] = {.lex_state = 0, .external_lex_state = 39}, - [607] = {.lex_state = 0, .external_lex_state = 50}, - [608] = {.lex_state = 0, .external_lex_state = 38}, - [609] = {.lex_state = 0, .external_lex_state = 51}, - [610] = {.lex_state = 0, .external_lex_state = 52}, - [611] = {.lex_state = 0, .external_lex_state = 45}, - [612] = {.lex_state = 0, .external_lex_state = 44}, - [613] = {.lex_state = 0, .external_lex_state = 43}, - [614] = {.lex_state = 0, .external_lex_state = 36}, - [615] = {.lex_state = 0, .external_lex_state = 36}, - [616] = {.lex_state = 0, .external_lex_state = 36}, - [617] = {.lex_state = 0, .external_lex_state = 36}, - [618] = {.lex_state = 0, .external_lex_state = 36}, - [619] = {.lex_state = 0, .external_lex_state = 59}, - [620] = {.lex_state = 0, .external_lex_state = 36}, - [621] = {.lex_state = 0, .external_lex_state = 36}, + [521] = {.lex_state = 0, .external_lex_state = 50}, + [522] = {.lex_state = 0, .external_lex_state = 51}, + [523] = {.lex_state = 0, .external_lex_state = 52}, + [524] = {.lex_state = 0, .external_lex_state = 53}, + [525] = {.lex_state = 0, .external_lex_state = 54}, + [526] = {.lex_state = 0, .external_lex_state = 39}, + [527] = {.lex_state = 0, .external_lex_state = 40}, + [528] = {.lex_state = 0, .external_lex_state = 41}, + [529] = {.lex_state = 0, .external_lex_state = 39}, + [530] = {.lex_state = 0, .external_lex_state = 42}, + [531] = {.lex_state = 0, .external_lex_state = 40}, + [532] = {.lex_state = 0, .external_lex_state = 43}, + [533] = {.lex_state = 0, .external_lex_state = 39}, + [534] = {.lex_state = 0, .external_lex_state = 40}, + [535] = {.lex_state = 0, .external_lex_state = 41}, + [536] = {.lex_state = 0, .external_lex_state = 42}, + [537] = {.lex_state = 0, .external_lex_state = 43}, + [538] = {.lex_state = 0, .external_lex_state = 44}, + [539] = {.lex_state = 0, .external_lex_state = 45}, + [540] = {.lex_state = 0, .external_lex_state = 46}, + [541] = {.lex_state = 0, .external_lex_state = 47}, + [542] = {.lex_state = 0, .external_lex_state = 48}, + [543] = {.lex_state = 0, .external_lex_state = 49}, + [544] = {.lex_state = 0, .external_lex_state = 50}, + [545] = {.lex_state = 0, .external_lex_state = 51}, + [546] = {.lex_state = 0, .external_lex_state = 52}, + [547] = {.lex_state = 0, .external_lex_state = 53}, + [548] = {.lex_state = 0, .external_lex_state = 54}, + [549] = {.lex_state = 0, .external_lex_state = 41}, + [550] = {.lex_state = 0, .external_lex_state = 44}, + [551] = {.lex_state = 0, .external_lex_state = 42}, + [552] = {.lex_state = 0, .external_lex_state = 45}, + [553] = {.lex_state = 0, .external_lex_state = 43}, + [554] = {.lex_state = 0, .external_lex_state = 46}, + [555] = {.lex_state = 0, .external_lex_state = 44}, + [556] = {.lex_state = 0, .external_lex_state = 47}, + [557] = {.lex_state = 0, .external_lex_state = 45}, + [558] = {.lex_state = 0, .external_lex_state = 48}, + [559] = {.lex_state = 0, .external_lex_state = 46}, + [560] = {.lex_state = 0, .external_lex_state = 39}, + [561] = {.lex_state = 0, .external_lex_state = 40}, + [562] = {.lex_state = 0, .external_lex_state = 41}, + [563] = {.lex_state = 0, .external_lex_state = 42}, + [564] = {.lex_state = 0, .external_lex_state = 43}, + [565] = {.lex_state = 0, .external_lex_state = 55}, + [566] = {.lex_state = 0, .external_lex_state = 45}, + [567] = {.lex_state = 0, .external_lex_state = 46}, + [568] = {.lex_state = 0, .external_lex_state = 47}, + [569] = {.lex_state = 0, .external_lex_state = 48}, + [570] = {.lex_state = 0, .external_lex_state = 49}, + [571] = {.lex_state = 0, .external_lex_state = 50}, + [572] = {.lex_state = 0, .external_lex_state = 51}, + [573] = {.lex_state = 0, .external_lex_state = 52}, + [574] = {.lex_state = 0, .external_lex_state = 53}, + [575] = {.lex_state = 0, .external_lex_state = 54}, + [576] = {.lex_state = 0, .external_lex_state = 49}, + [577] = {.lex_state = 0, .external_lex_state = 39}, + [578] = {.lex_state = 0, .external_lex_state = 40}, + [579] = {.lex_state = 0, .external_lex_state = 41}, + [580] = {.lex_state = 0, .external_lex_state = 42}, + [581] = {.lex_state = 0, .external_lex_state = 43}, + [582] = {.lex_state = 0, .external_lex_state = 44}, + [583] = {.lex_state = 0, .external_lex_state = 45}, + [584] = {.lex_state = 0, .external_lex_state = 46}, + [585] = {.lex_state = 0, .external_lex_state = 47}, + [586] = {.lex_state = 0, .external_lex_state = 48}, + [587] = {.lex_state = 0, .external_lex_state = 49}, + [588] = {.lex_state = 0, .external_lex_state = 50}, + [589] = {.lex_state = 0, .external_lex_state = 51}, + [590] = {.lex_state = 0, .external_lex_state = 52}, + [591] = {.lex_state = 0, .external_lex_state = 53}, + [592] = {.lex_state = 0, .external_lex_state = 54}, + [593] = {.lex_state = 0, .external_lex_state = 47}, + [594] = {.lex_state = 0, .external_lex_state = 50}, + [595] = {.lex_state = 0, .external_lex_state = 48}, + [596] = {.lex_state = 0, .external_lex_state = 56}, + [597] = {.lex_state = 0, .external_lex_state = 51}, + [598] = {.lex_state = 0, .external_lex_state = 49}, + [599] = {.lex_state = 0, .external_lex_state = 52}, + [600] = {.lex_state = 0, .external_lex_state = 50}, + [601] = {.lex_state = 0, .external_lex_state = 57}, + [602] = {.lex_state = 0, .external_lex_state = 53}, + [603] = {.lex_state = 0, .external_lex_state = 58}, + [604] = {.lex_state = 0, .external_lex_state = 51}, + [605] = {.lex_state = 0, .external_lex_state = 54}, + [606] = {.lex_state = 0, .external_lex_state = 57}, + [607] = {.lex_state = 0, .external_lex_state = 57}, + [608] = {.lex_state = 0, .external_lex_state = 52}, + [609] = {.lex_state = 0, .external_lex_state = 58}, + [610] = {.lex_state = 0, .external_lex_state = 58}, + [611] = {.lex_state = 0, .external_lex_state = 58}, + [612] = {.lex_state = 0, .external_lex_state = 53}, + [613] = {.lex_state = 0, .external_lex_state = 57}, + [614] = {.lex_state = 0, .external_lex_state = 58}, + [615] = {.lex_state = 0, .external_lex_state = 58}, + [616] = {.lex_state = 0, .external_lex_state = 54}, + [617] = {.lex_state = 7, .external_lex_state = 27}, + [618] = {.lex_state = 0, .external_lex_state = 56}, + [619] = {.lex_state = 7, .external_lex_state = 27}, + [620] = {.lex_state = 7, .external_lex_state = 27}, + [621] = {.lex_state = 0, .external_lex_state = 44}, [622] = {.lex_state = 0, .external_lex_state = 36}, [623] = {.lex_state = 0, .external_lex_state = 36}, - [624] = {.lex_state = 0, .external_lex_state = 36}, - [625] = {.lex_state = 0, .external_lex_state = 36}, - [626] = {.lex_state = 0, .external_lex_state = 36}, - [627] = {.lex_state = 0, .external_lex_state = 36}, - [628] = {.lex_state = 0, .external_lex_state = 36}, - [629] = {.lex_state = 0, .external_lex_state = 36}, - [630] = {.lex_state = 0, .external_lex_state = 36}, - [631] = {.lex_state = 0, .external_lex_state = 36}, - [632] = {.lex_state = 0, .external_lex_state = 36}, - [633] = {.lex_state = 0, .external_lex_state = 36}, - [634] = {.lex_state = 0, .external_lex_state = 36}, - [635] = {.lex_state = 0, .external_lex_state = 60}, - [636] = {.lex_state = 0, .external_lex_state = 20}, + [624] = {.lex_state = 0, .external_lex_state = 34}, + [625] = {.lex_state = 0, .external_lex_state = 34}, + [626] = {.lex_state = 0, .external_lex_state = 35}, + [627] = {.lex_state = 0, .external_lex_state = 33}, + [628] = {.lex_state = 9}, + [629] = {.lex_state = 8}, + [630] = {.lex_state = 0, .external_lex_state = 59}, + [631] = {.lex_state = 10}, + [632] = {.lex_state = 0, .external_lex_state = 60}, + [633] = {.lex_state = 5}, + [634] = {.lex_state = 0, .external_lex_state = 34}, + [635] = {.lex_state = 0, .external_lex_state = 36}, + [636] = {.lex_state = 0, .external_lex_state = 36}, [637] = {.lex_state = 0, .external_lex_state = 36}, [638] = {.lex_state = 0, .external_lex_state = 36}, - [639] = {.lex_state = 0, .external_lex_state = 35}, - [640] = {.lex_state = 39, .external_lex_state = 31}, + [639] = {.lex_state = 0, .external_lex_state = 36}, + [640] = {.lex_state = 0, .external_lex_state = 36}, [641] = {.lex_state = 0, .external_lex_state = 36}, [642] = {.lex_state = 0, .external_lex_state = 36}, [643] = {.lex_state = 0, .external_lex_state = 36}, - [644] = {.lex_state = 0, .external_lex_state = 34}, + [644] = {.lex_state = 0, .external_lex_state = 36}, [645] = {.lex_state = 0, .external_lex_state = 36}, - [646] = {.lex_state = 0, .external_lex_state = 61}, + [646] = {.lex_state = 0, .external_lex_state = 36}, [647] = {.lex_state = 0, .external_lex_state = 36}, [648] = {.lex_state = 0, .external_lex_state = 36}, - [649] = {.lex_state = 0, .external_lex_state = 62}, - [650] = {.lex_state = 0, .external_lex_state = 62}, - [651] = {.lex_state = 0, .external_lex_state = 36}, - [652] = {.lex_state = 0, .external_lex_state = 59}, - [653] = {.lex_state = 0, .external_lex_state = 36}, - [654] = {.lex_state = 0, .external_lex_state = 63}, - [655] = {.lex_state = 0, .external_lex_state = 63}, - [656] = {.lex_state = 0, .external_lex_state = 36}, - [657] = {.lex_state = 0, .external_lex_state = 36}, - [658] = {.lex_state = 39, .external_lex_state = 31}, - [659] = {.lex_state = 0, .external_lex_state = 64}, - [660] = {.lex_state = 0, .external_lex_state = 64}, + [649] = {.lex_state = 0, .external_lex_state = 36}, + [650] = {.lex_state = 0, .external_lex_state = 36}, + [651] = {.lex_state = 0, .external_lex_state = 33}, + [652] = {.lex_state = 0, .external_lex_state = 34}, + [653] = {.lex_state = 0, .external_lex_state = 35}, + [654] = {.lex_state = 0, .external_lex_state = 33}, + [655] = {.lex_state = 0, .external_lex_state = 31}, + [656] = {.lex_state = 0, .external_lex_state = 20}, + [657] = {.lex_state = 0, .external_lex_state = 20}, + [658] = {.lex_state = 0, .external_lex_state = 59}, + [659] = {.lex_state = 0, .external_lex_state = 61}, + [660] = {.lex_state = 0, .external_lex_state = 62}, [661] = {.lex_state = 0, .external_lex_state = 36}, - [662] = {.lex_state = 0, .external_lex_state = 36}, - [663] = {.lex_state = 0, .external_lex_state = 36}, - [664] = {.lex_state = 8}, - [665] = {.lex_state = 0, .external_lex_state = 36}, - [666] = {.lex_state = 9}, - [667] = {.lex_state = 0, .external_lex_state = 35}, - [668] = {.lex_state = 0, .external_lex_state = 34}, + [662] = {.lex_state = 0, .external_lex_state = 34}, + [663] = {.lex_state = 0, .external_lex_state = 63}, + [664] = {.lex_state = 0, .external_lex_state = 61}, + [665] = {.lex_state = 0, .external_lex_state = 61}, + [666] = {.lex_state = 0, .external_lex_state = 63}, + [667] = {.lex_state = 0, .external_lex_state = 31}, + [668] = {.lex_state = 0, .external_lex_state = 36}, [669] = {.lex_state = 0, .external_lex_state = 33}, - [670] = {.lex_state = 0, .external_lex_state = 32}, + [670] = {.lex_state = 39, .external_lex_state = 32}, [671] = {.lex_state = 0, .external_lex_state = 36}, - [672] = {.lex_state = 0, .external_lex_state = 36}, - [673] = {.lex_state = 39, .external_lex_state = 25}, - [674] = {.lex_state = 39, .external_lex_state = 25}, - [675] = {.lex_state = 0, .external_lex_state = 36}, - [676] = {.lex_state = 0, .external_lex_state = 36}, + [672] = {.lex_state = 0, .external_lex_state = 20}, + [673] = {.lex_state = 0, .external_lex_state = 64}, + [674] = {.lex_state = 0, .external_lex_state = 64}, + [675] = {.lex_state = 0, .external_lex_state = 65}, + [676] = {.lex_state = 0, .external_lex_state = 35}, [677] = {.lex_state = 0, .external_lex_state = 36}, - [678] = {.lex_state = 0, .external_lex_state = 36}, - [679] = {.lex_state = 0, .external_lex_state = 36}, + [678] = {.lex_state = 0, .external_lex_state = 61}, + [679] = {.lex_state = 0, .external_lex_state = 65}, [680] = {.lex_state = 0, .external_lex_state = 36}, - [681] = {.lex_state = 0, .external_lex_state = 25}, - [682] = {.lex_state = 0, .external_lex_state = 20}, - [683] = {.lex_state = 0, .external_lex_state = 65}, - [684] = {.lex_state = 0, .external_lex_state = 32}, - [685] = {.lex_state = 10}, - [686] = {.lex_state = 0, .external_lex_state = 33}, - [687] = {.lex_state = 0, .external_lex_state = 34}, - [688] = {.lex_state = 0, .external_lex_state = 35}, - [689] = {.lex_state = 0, .external_lex_state = 60}, - [690] = {.lex_state = 0, .external_lex_state = 20}, - [691] = {.lex_state = 0, .external_lex_state = 32}, - [692] = {.lex_state = 0, .external_lex_state = 32}, - [693] = {.lex_state = 0, .external_lex_state = 20}, - [694] = {.lex_state = 0, .external_lex_state = 35}, - [695] = {.lex_state = 0, .external_lex_state = 25}, - [696] = {.lex_state = 0, .external_lex_state = 36}, - [697] = {.lex_state = 0, .external_lex_state = 60}, - [698] = {.lex_state = 0, .external_lex_state = 66}, - [699] = {.lex_state = 0, .external_lex_state = 33}, - [700] = {.lex_state = 0, .external_lex_state = 67}, - [701] = {.lex_state = 0, .external_lex_state = 61}, - [702] = {.lex_state = 0, .external_lex_state = 33}, - [703] = {.lex_state = 0, .external_lex_state = 67}, - [704] = {.lex_state = 0, .external_lex_state = 67}, - [705] = {.lex_state = 0, .external_lex_state = 34}, - [706] = {.lex_state = 0, .external_lex_state = 65}, - [707] = {.lex_state = 0, .external_lex_state = 66}, - [708] = {.lex_state = 0, .external_lex_state = 61}, - [709] = {.lex_state = 0, .external_lex_state = 61}, - [710] = {.lex_state = 0, .external_lex_state = 20}, - [711] = {.lex_state = 0, .external_lex_state = 67}, - [712] = {.lex_state = 5}, - [713] = {.lex_state = 0, .external_lex_state = 61}, - [714] = {.lex_state = 0, .external_lex_state = 20}, - [715] = {.lex_state = 0, .external_lex_state = 31}, - [716] = {.lex_state = 3, .external_lex_state = 27}, - [717] = {.lex_state = 0}, - [718] = {.lex_state = 9, .external_lex_state = 27}, - [719] = {.lex_state = 0, .external_lex_state = 31}, - [720] = {.lex_state = 0, .external_lex_state = 68}, - [721] = {.lex_state = 0, .external_lex_state = 68}, - [722] = {.lex_state = 5}, - [723] = {.lex_state = 5}, - [724] = {.lex_state = 0, .external_lex_state = 31}, - [725] = {.lex_state = 5}, - [726] = {.lex_state = 5}, - [727] = {.lex_state = 0, .external_lex_state = 46}, - [728] = {.lex_state = 0, .external_lex_state = 69}, - [729] = {.lex_state = 0, .external_lex_state = 31}, - [730] = {.lex_state = 9, .external_lex_state = 27}, - [731] = {.lex_state = 0, .external_lex_state = 31}, - [732] = {.lex_state = 0, .external_lex_state = 31}, - [733] = {.lex_state = 39}, - [734] = {.lex_state = 0, .external_lex_state = 31}, - [735] = {.lex_state = 0, .external_lex_state = 31}, - [736] = {.lex_state = 0, .external_lex_state = 31}, - [737] = {.lex_state = 0, .external_lex_state = 60}, - [738] = {.lex_state = 9, .external_lex_state = 27}, - [739] = {.lex_state = 0, .external_lex_state = 31}, - [740] = {.lex_state = 0, .external_lex_state = 31}, - [741] = {.lex_state = 0}, - [742] = {.lex_state = 0}, - [743] = {.lex_state = 0, .external_lex_state = 31}, - [744] = {.lex_state = 0, .external_lex_state = 31}, - [745] = {.lex_state = 0}, - [746] = {.lex_state = 9, .external_lex_state = 27}, - [747] = {.lex_state = 0}, - [748] = {.lex_state = 0}, - [749] = {.lex_state = 0}, - [750] = {.lex_state = 0, .external_lex_state = 65}, - [751] = {.lex_state = 0, .external_lex_state = 31}, - [752] = {.lex_state = 0, .external_lex_state = 31}, - [753] = {.lex_state = 0, .external_lex_state = 28}, - [754] = {.lex_state = 0, .external_lex_state = 69}, - [755] = {.lex_state = 0}, - [756] = {.lex_state = 0}, - [757] = {.lex_state = 0, .external_lex_state = 20}, + [681] = {.lex_state = 0, .external_lex_state = 66}, + [682] = {.lex_state = 0, .external_lex_state = 36}, + [683] = {.lex_state = 0, .external_lex_state = 36}, + [684] = {.lex_state = 0, .external_lex_state = 36}, + [685] = {.lex_state = 0, .external_lex_state = 35}, + [686] = {.lex_state = 0, .external_lex_state = 66}, + [687] = {.lex_state = 0, .external_lex_state = 20}, + [688] = {.lex_state = 0, .external_lex_state = 36}, + [689] = {.lex_state = 39, .external_lex_state = 22}, + [690] = {.lex_state = 39, .external_lex_state = 22}, + [691] = {.lex_state = 0, .external_lex_state = 31}, + [692] = {.lex_state = 0, .external_lex_state = 36}, + [693] = {.lex_state = 39, .external_lex_state = 32}, + [694] = {.lex_state = 0, .external_lex_state = 31}, + [695] = {.lex_state = 0, .external_lex_state = 20}, + [696] = {.lex_state = 0, .external_lex_state = 59}, + [697] = {.lex_state = 0, .external_lex_state = 35}, + [698] = {.lex_state = 0, .external_lex_state = 36}, + [699] = {.lex_state = 0, .external_lex_state = 36}, + [700] = {.lex_state = 0, .external_lex_state = 61}, + [701] = {.lex_state = 0, .external_lex_state = 36}, + [702] = {.lex_state = 0, .external_lex_state = 36}, + [703] = {.lex_state = 0, .external_lex_state = 36}, + [704] = {.lex_state = 0, .external_lex_state = 36}, + [705] = {.lex_state = 0, .external_lex_state = 36}, + [706] = {.lex_state = 0, .external_lex_state = 36}, + [707] = {.lex_state = 0, .external_lex_state = 31}, + [708] = {.lex_state = 0, .external_lex_state = 36}, + [709] = {.lex_state = 0, .external_lex_state = 59}, + [710] = {.lex_state = 0, .external_lex_state = 36}, + [711] = {.lex_state = 0, .external_lex_state = 36}, + [712] = {.lex_state = 0, .external_lex_state = 36}, + [713] = {.lex_state = 0, .external_lex_state = 36}, + [714] = {.lex_state = 0, .external_lex_state = 36}, + [715] = {.lex_state = 0, .external_lex_state = 36}, + [716] = {.lex_state = 0, .external_lex_state = 61}, + [717] = {.lex_state = 0, .external_lex_state = 36}, + [718] = {.lex_state = 0, .external_lex_state = 36}, + [719] = {.lex_state = 0, .external_lex_state = 62}, + [720] = {.lex_state = 0, .external_lex_state = 22}, + [721] = {.lex_state = 0, .external_lex_state = 67}, + [722] = {.lex_state = 0, .external_lex_state = 60}, + [723] = {.lex_state = 0, .external_lex_state = 22}, + [724] = {.lex_state = 0, .external_lex_state = 62}, + [725] = {.lex_state = 0, .external_lex_state = 67}, + [726] = {.lex_state = 0, .external_lex_state = 33}, + [727] = {.lex_state = 0, .external_lex_state = 36}, + [728] = {.lex_state = 10, .external_lex_state = 27}, + [729] = {.lex_state = 0, .external_lex_state = 40}, + [730] = {.lex_state = 0}, + [731] = {.lex_state = 0, .external_lex_state = 43}, + [732] = {.lex_state = 0, .external_lex_state = 46}, + [733] = {.lex_state = 0, .external_lex_state = 49}, + [734] = {.lex_state = 0, .external_lex_state = 32}, + [735] = {.lex_state = 0, .external_lex_state = 32}, + [736] = {.lex_state = 0, .external_lex_state = 39}, + [737] = {.lex_state = 0, .external_lex_state = 52}, + [738] = {.lex_state = 0, .external_lex_state = 32}, + [739] = {.lex_state = 0, .external_lex_state = 41}, + [740] = {.lex_state = 0, .external_lex_state = 40}, + [741] = {.lex_state = 0, .external_lex_state = 68}, + [742] = {.lex_state = 0, .external_lex_state = 44}, + [743] = {.lex_state = 0, .external_lex_state = 68}, + [744] = {.lex_state = 0, .external_lex_state = 47}, + [745] = {.lex_state = 10, .external_lex_state = 27}, + [746] = {.lex_state = 0, .external_lex_state = 50}, + [747] = {.lex_state = 0, .external_lex_state = 53}, + [748] = {.lex_state = 0, .external_lex_state = 69}, + [749] = {.lex_state = 10, .external_lex_state = 27}, + [750] = {.lex_state = 0, .external_lex_state = 28}, + [751] = {.lex_state = 0, .external_lex_state = 40}, + [752] = {.lex_state = 10, .external_lex_state = 27}, + [753] = {.lex_state = 0, .external_lex_state = 32}, + [754] = {.lex_state = 0, .external_lex_state = 28}, + [755] = {.lex_state = 0, .external_lex_state = 70}, + [756] = {.lex_state = 0, .external_lex_state = 32}, + [757] = {.lex_state = 0, .external_lex_state = 32}, [758] = {.lex_state = 0}, - [759] = {.lex_state = 0, .external_lex_state = 53}, - [760] = {.lex_state = 0, .external_lex_state = 53}, - [761] = {.lex_state = 0, .external_lex_state = 42}, - [762] = {.lex_state = 0, .external_lex_state = 42}, - [763] = {.lex_state = 0, .external_lex_state = 45}, - [764] = {.lex_state = 0, .external_lex_state = 45}, - [765] = {.lex_state = 0, .external_lex_state = 38}, - [766] = {.lex_state = 0, .external_lex_state = 38}, - [767] = {.lex_state = 0, .external_lex_state = 49}, - [768] = {.lex_state = 0, .external_lex_state = 49}, - [769] = {.lex_state = 0, .external_lex_state = 40}, - [770] = {.lex_state = 0, .external_lex_state = 40}, - [771] = {.lex_state = 0, .external_lex_state = 43}, - [772] = {.lex_state = 0, .external_lex_state = 43}, - [773] = {.lex_state = 0, .external_lex_state = 52}, - [774] = {.lex_state = 0, .external_lex_state = 52}, - [775] = {.lex_state = 0, .external_lex_state = 68}, - [776] = {.lex_state = 0, .external_lex_state = 31}, - [777] = {.lex_state = 0, .external_lex_state = 69}, - [778] = {.lex_state = 0, .external_lex_state = 50}, - [779] = {.lex_state = 0, .external_lex_state = 31}, - [780] = {.lex_state = 0, .external_lex_state = 31}, + [759] = {.lex_state = 0}, + [760] = {.lex_state = 0, .external_lex_state = 32}, + [761] = {.lex_state = 0, .external_lex_state = 70}, + [762] = {.lex_state = 0, .external_lex_state = 32}, + [763] = {.lex_state = 0, .external_lex_state = 42}, + [764] = {.lex_state = 0, .external_lex_state = 20}, + [765] = {.lex_state = 0, .external_lex_state = 32}, + [766] = {.lex_state = 0, .external_lex_state = 45}, + [767] = {.lex_state = 0, .external_lex_state = 48}, + [768] = {.lex_state = 0, .external_lex_state = 51}, + [769] = {.lex_state = 0, .external_lex_state = 54}, + [770] = {.lex_state = 0, .external_lex_state = 32}, + [771] = {.lex_state = 0, .external_lex_state = 32}, + [772] = {.lex_state = 0, .external_lex_state = 42}, + [773] = {.lex_state = 0, .external_lex_state = 62}, + [774] = {.lex_state = 0, .external_lex_state = 68}, + [775] = {.lex_state = 0, .external_lex_state = 32}, + [776] = {.lex_state = 39}, + [777] = {.lex_state = 0, .external_lex_state = 32}, + [778] = {.lex_state = 0}, + [779] = {.lex_state = 0, .external_lex_state = 60}, + [780] = {.lex_state = 0, .external_lex_state = 63}, [781] = {.lex_state = 0}, - [782] = {.lex_state = 0}, - [783] = {.lex_state = 0, .external_lex_state = 50}, - [784] = {.lex_state = 9, .external_lex_state = 27}, - [785] = {.lex_state = 0}, - [786] = {.lex_state = 0}, - [787] = {.lex_state = 0, .external_lex_state = 31}, - [788] = {.lex_state = 0, .external_lex_state = 31}, - [789] = {.lex_state = 0}, - [790] = {.lex_state = 0}, + [782] = {.lex_state = 10, .external_lex_state = 27}, + [783] = {.lex_state = 10, .external_lex_state = 27}, + [784] = {.lex_state = 0, .external_lex_state = 28}, + [785] = {.lex_state = 0, .external_lex_state = 70}, + [786] = {.lex_state = 0, .external_lex_state = 39}, + [787] = {.lex_state = 0, .external_lex_state = 43}, + [788] = {.lex_state = 0, .external_lex_state = 32}, + [789] = {.lex_state = 5}, + [790] = {.lex_state = 10, .external_lex_state = 27}, [791] = {.lex_state = 0}, - [792] = {.lex_state = 0}, - [793] = {.lex_state = 9, .external_lex_state = 27}, - [794] = {.lex_state = 39, .external_lex_state = 25}, - [795] = {.lex_state = 7, .external_lex_state = 27}, - [796] = {.lex_state = 0, .external_lex_state = 48}, - [797] = {.lex_state = 0, .external_lex_state = 68}, - [798] = {.lex_state = 0}, - [799] = {.lex_state = 0}, - [800] = {.lex_state = 0, .external_lex_state = 31}, - [801] = {.lex_state = 0, .external_lex_state = 31}, - [802] = {.lex_state = 5}, - [803] = {.lex_state = 9, .external_lex_state = 27}, - [804] = {.lex_state = 0, .external_lex_state = 48}, + [792] = {.lex_state = 0, .external_lex_state = 44}, + [793] = {.lex_state = 0, .external_lex_state = 45}, + [794] = {.lex_state = 0}, + [795] = {.lex_state = 0, .external_lex_state = 40}, + [796] = {.lex_state = 0, .external_lex_state = 68}, + [797] = {.lex_state = 0, .external_lex_state = 46}, + [798] = {.lex_state = 0, .external_lex_state = 47}, + [799] = {.lex_state = 0, .external_lex_state = 48}, + [800] = {.lex_state = 10, .external_lex_state = 27}, + [801] = {.lex_state = 0, .external_lex_state = 49}, + [802] = {.lex_state = 0, .external_lex_state = 50}, + [803] = {.lex_state = 0, .external_lex_state = 62}, + [804] = {.lex_state = 0, .external_lex_state = 43}, [805] = {.lex_state = 0}, - [806] = {.lex_state = 0}, - [807] = {.lex_state = 0, .external_lex_state = 31}, - [808] = {.lex_state = 0, .external_lex_state = 31}, - [809] = {.lex_state = 0}, - [810] = {.lex_state = 0, .external_lex_state = 28}, - [811] = {.lex_state = 0, .external_lex_state = 69}, - [812] = {.lex_state = 0}, - [813] = {.lex_state = 0}, - [814] = {.lex_state = 9, .external_lex_state = 27}, - [815] = {.lex_state = 0}, - [816] = {.lex_state = 0}, - [817] = {.lex_state = 0}, - [818] = {.lex_state = 0, .external_lex_state = 41}, - [819] = {.lex_state = 0, .external_lex_state = 41}, - [820] = {.lex_state = 0, .external_lex_state = 64}, - [821] = {.lex_state = 0, .external_lex_state = 44}, - [822] = {.lex_state = 0}, - [823] = {.lex_state = 0, .external_lex_state = 44}, - [824] = {.lex_state = 0, .external_lex_state = 63}, - [825] = {.lex_state = 0, .external_lex_state = 51}, - [826] = {.lex_state = 0, .external_lex_state = 51}, - [827] = {.lex_state = 0, .external_lex_state = 62}, - [828] = {.lex_state = 0, .external_lex_state = 69}, - [829] = {.lex_state = 39, .external_lex_state = 54}, + [806] = {.lex_state = 10, .external_lex_state = 27}, + [807] = {.lex_state = 0}, + [808] = {.lex_state = 0, .external_lex_state = 70}, + [809] = {.lex_state = 10, .external_lex_state = 27}, + [810] = {.lex_state = 0, .external_lex_state = 20}, + [811] = {.lex_state = 0, .external_lex_state = 28}, + [812] = {.lex_state = 0, .external_lex_state = 70}, + [813] = {.lex_state = 0, .external_lex_state = 43}, + [814] = {.lex_state = 0, .external_lex_state = 51}, + [815] = {.lex_state = 39, .external_lex_state = 38}, + [816] = {.lex_state = 0, .external_lex_state = 32}, + [817] = {.lex_state = 5}, + [818] = {.lex_state = 0, .external_lex_state = 52}, + [819] = {.lex_state = 0, .external_lex_state = 53}, + [820] = {.lex_state = 0, .external_lex_state = 32}, + [821] = {.lex_state = 0, .external_lex_state = 39}, + [822] = {.lex_state = 0, .external_lex_state = 54}, + [823] = {.lex_state = 10, .external_lex_state = 27}, + [824] = {.lex_state = 0, .external_lex_state = 32}, + [825] = {.lex_state = 10, .external_lex_state = 27}, + [826] = {.lex_state = 10, .external_lex_state = 27}, + [827] = {.lex_state = 0, .external_lex_state = 70}, + [828] = {.lex_state = 0, .external_lex_state = 64}, + [829] = {.lex_state = 10, .external_lex_state = 27}, [830] = {.lex_state = 0}, - [831] = {.lex_state = 0, .external_lex_state = 31}, - [832] = {.lex_state = 0, .external_lex_state = 68}, - [833] = {.lex_state = 0, .external_lex_state = 31}, - [834] = {.lex_state = 0, .external_lex_state = 31}, - [835] = {.lex_state = 0}, - [836] = {.lex_state = 0}, - [837] = {.lex_state = 0, .external_lex_state = 31}, - [838] = {.lex_state = 0, .external_lex_state = 69}, - [839] = {.lex_state = 0}, - [840] = {.lex_state = 9, .external_lex_state = 27}, - [841] = {.lex_state = 0}, - [842] = {.lex_state = 0, .external_lex_state = 39}, - [843] = {.lex_state = 0, .external_lex_state = 51}, - [844] = {.lex_state = 0}, - [845] = {.lex_state = 0}, - [846] = {.lex_state = 0}, - [847] = {.lex_state = 0}, - [848] = {.lex_state = 0, .external_lex_state = 46}, - [849] = {.lex_state = 9, .external_lex_state = 27}, - [850] = {.lex_state = 0, .external_lex_state = 60}, - [851] = {.lex_state = 0, .external_lex_state = 44}, - [852] = {.lex_state = 0, .external_lex_state = 41}, - [853] = {.lex_state = 0, .external_lex_state = 48}, - [854] = {.lex_state = 0}, - [855] = {.lex_state = 0}, - [856] = {.lex_state = 0, .external_lex_state = 31}, - [857] = {.lex_state = 0, .external_lex_state = 50}, - [858] = {.lex_state = 0, .external_lex_state = 52}, - [859] = {.lex_state = 9, .external_lex_state = 27}, - [860] = {.lex_state = 0, .external_lex_state = 43}, - [861] = {.lex_state = 0, .external_lex_state = 40}, - [862] = {.lex_state = 0, .external_lex_state = 49}, - [863] = {.lex_state = 0, .external_lex_state = 38}, - [864] = {.lex_state = 0, .external_lex_state = 45}, - [865] = {.lex_state = 0, .external_lex_state = 42}, - [866] = {.lex_state = 0, .external_lex_state = 28}, - [867] = {.lex_state = 0, .external_lex_state = 69}, - [868] = {.lex_state = 0, .external_lex_state = 53}, + [831] = {.lex_state = 0, .external_lex_state = 28}, + [832] = {.lex_state = 0, .external_lex_state = 46}, + [833] = {.lex_state = 0, .external_lex_state = 46}, + [834] = {.lex_state = 0, .external_lex_state = 65}, + [835] = {.lex_state = 0, .external_lex_state = 49}, + [836] = {.lex_state = 0, .external_lex_state = 49}, + [837] = {.lex_state = 0, .external_lex_state = 66}, + [838] = {.lex_state = 0, .external_lex_state = 32}, + [839] = {.lex_state = 0, .external_lex_state = 32}, + [840] = {.lex_state = 0, .external_lex_state = 32}, + [841] = {.lex_state = 0, .external_lex_state = 52}, + [842] = {.lex_state = 0, .external_lex_state = 70}, + [843] = {.lex_state = 0, .external_lex_state = 41}, + [844] = {.lex_state = 0, .external_lex_state = 41}, + [845] = {.lex_state = 39, .external_lex_state = 22}, + [846] = {.lex_state = 0, .external_lex_state = 44}, + [847] = {.lex_state = 0, .external_lex_state = 44}, + [848] = {.lex_state = 0, .external_lex_state = 41}, + [849] = {.lex_state = 0, .external_lex_state = 70}, + [850] = {.lex_state = 0, .external_lex_state = 47}, + [851] = {.lex_state = 0, .external_lex_state = 47}, + [852] = {.lex_state = 0, .external_lex_state = 50}, + [853] = {.lex_state = 0, .external_lex_state = 50}, + [854] = {.lex_state = 0, .external_lex_state = 53}, + [855] = {.lex_state = 0, .external_lex_state = 53}, + [856] = {.lex_state = 0, .external_lex_state = 42}, + [857] = {.lex_state = 0}, + [858] = {.lex_state = 0}, + [859] = {.lex_state = 0, .external_lex_state = 42}, + [860] = {.lex_state = 0, .external_lex_state = 45}, + [861] = {.lex_state = 0, .external_lex_state = 45}, + [862] = {.lex_state = 0}, + [863] = {.lex_state = 0}, + [864] = {.lex_state = 0}, + [865] = {.lex_state = 0}, + [866] = {.lex_state = 0, .external_lex_state = 48}, + [867] = {.lex_state = 0, .external_lex_state = 48}, + [868] = {.lex_state = 0}, [869] = {.lex_state = 0}, - [870] = {.lex_state = 0}, - [871] = {.lex_state = 5}, - [872] = {.lex_state = 0, .external_lex_state = 31}, - [873] = {.lex_state = 0, .external_lex_state = 31}, - [874] = {.lex_state = 9, .external_lex_state = 27}, - [875] = {.lex_state = 5}, - [876] = {.lex_state = 0, .external_lex_state = 47}, - [877] = {.lex_state = 0, .external_lex_state = 69}, - [878] = {.lex_state = 0, .external_lex_state = 31}, - [879] = {.lex_state = 0, .external_lex_state = 31}, - [880] = {.lex_state = 0, .external_lex_state = 70}, - [881] = {.lex_state = 0, .external_lex_state = 28}, - [882] = {.lex_state = 0, .external_lex_state = 28}, - [883] = {.lex_state = 0, .external_lex_state = 39}, - [884] = {.lex_state = 0, .external_lex_state = 39}, - [885] = {.lex_state = 0, .external_lex_state = 47}, - [886] = {.lex_state = 0, .external_lex_state = 59}, - [887] = {.lex_state = 0, .external_lex_state = 25}, - [888] = {.lex_state = 0, .external_lex_state = 31}, - [889] = {.lex_state = 9, .external_lex_state = 27}, - [890] = {.lex_state = 0, .external_lex_state = 69}, - [891] = {.lex_state = 0, .external_lex_state = 31}, - [892] = {.lex_state = 0, .external_lex_state = 31}, - [893] = {.lex_state = 0, .external_lex_state = 31}, - [894] = {.lex_state = 9, .external_lex_state = 27}, - [895] = {.lex_state = 0, .external_lex_state = 31}, - [896] = {.lex_state = 0, .external_lex_state = 31}, - [897] = {.lex_state = 0, .external_lex_state = 47}, - [898] = {.lex_state = 0, .external_lex_state = 31}, - [899] = {.lex_state = 0, .external_lex_state = 31}, - [900] = {.lex_state = 9, .external_lex_state = 27}, - [901] = {.lex_state = 0, .external_lex_state = 31}, - [902] = {.lex_state = 0, .external_lex_state = 31}, - [903] = {.lex_state = 0, .external_lex_state = 71}, - [904] = {.lex_state = 0, .external_lex_state = 27}, - [905] = {.lex_state = 0, .external_lex_state = 71}, - [906] = {.lex_state = 0, .external_lex_state = 27}, - [907] = {.lex_state = 0, .external_lex_state = 27}, - [908] = {.lex_state = 0, .external_lex_state = 71}, - [909] = {.lex_state = 0, .external_lex_state = 71}, - [910] = {.lex_state = 0, .external_lex_state = 72}, - [911] = {.lex_state = 0, .external_lex_state = 27}, - [912] = {.lex_state = 0, .external_lex_state = 27}, - [913] = {.lex_state = 9}, - [914] = {.lex_state = 3}, - [915] = {.lex_state = 0, .external_lex_state = 27}, - [916] = {.lex_state = 0, .external_lex_state = 27}, - [917] = {.lex_state = 0, .external_lex_state = 27}, - [918] = {.lex_state = 0, .external_lex_state = 27}, - [919] = {.lex_state = 0, .external_lex_state = 27}, - [920] = {.lex_state = 0, .external_lex_state = 27}, - [921] = {.lex_state = 0, .external_lex_state = 27}, - [922] = {.lex_state = 0, .external_lex_state = 73}, - [923] = {.lex_state = 0, .external_lex_state = 74}, - [924] = {.lex_state = 0, .external_lex_state = 75}, - [925] = {.lex_state = 0, .external_lex_state = 27}, - [926] = {.lex_state = 0, .external_lex_state = 27}, - [927] = {.lex_state = 0, .external_lex_state = 27}, - [928] = {.lex_state = 0, .external_lex_state = 27}, - [929] = {.lex_state = 0}, - [930] = {.lex_state = 9}, - [931] = {.lex_state = 0, .external_lex_state = 27}, - [932] = {.lex_state = 0}, - [933] = {.lex_state = 0}, - [934] = {.lex_state = 0, .external_lex_state = 27}, - [935] = {.lex_state = 0, .external_lex_state = 72}, - [936] = {.lex_state = 0, .external_lex_state = 71}, - [937] = {.lex_state = 0}, - [938] = {.lex_state = 0}, - [939] = {.lex_state = 9}, - [940] = {.lex_state = 0}, + [870] = {.lex_state = 0, .external_lex_state = 51}, + [871] = {.lex_state = 0, .external_lex_state = 22}, + [872] = {.lex_state = 0, .external_lex_state = 32}, + [873] = {.lex_state = 0, .external_lex_state = 51}, + [874] = {.lex_state = 0}, + [875] = {.lex_state = 0}, + [876] = {.lex_state = 0, .external_lex_state = 32}, + [877] = {.lex_state = 3, .external_lex_state = 27}, + [878] = {.lex_state = 7, .external_lex_state = 27}, + [879] = {.lex_state = 0}, + [880] = {.lex_state = 0}, + [881] = {.lex_state = 0}, + [882] = {.lex_state = 0}, + [883] = {.lex_state = 0, .external_lex_state = 54}, + [884] = {.lex_state = 0, .external_lex_state = 68}, + [885] = {.lex_state = 0}, + [886] = {.lex_state = 0}, + [887] = {.lex_state = 0, .external_lex_state = 32}, + [888] = {.lex_state = 0, .external_lex_state = 54}, + [889] = {.lex_state = 0}, + [890] = {.lex_state = 0}, + [891] = {.lex_state = 0, .external_lex_state = 32}, + [892] = {.lex_state = 0, .external_lex_state = 32}, + [893] = {.lex_state = 0, .external_lex_state = 32}, + [894] = {.lex_state = 0}, + [895] = {.lex_state = 0}, + [896] = {.lex_state = 0}, + [897] = {.lex_state = 0}, + [898] = {.lex_state = 0, .external_lex_state = 32}, + [899] = {.lex_state = 0, .external_lex_state = 32}, + [900] = {.lex_state = 0}, + [901] = {.lex_state = 0}, + [902] = {.lex_state = 0, .external_lex_state = 32}, + [903] = {.lex_state = 0, .external_lex_state = 32}, + [904] = {.lex_state = 0, .external_lex_state = 32}, + [905] = {.lex_state = 0}, + [906] = {.lex_state = 0}, + [907] = {.lex_state = 0, .external_lex_state = 32}, + [908] = {.lex_state = 0, .external_lex_state = 32}, + [909] = {.lex_state = 0, .external_lex_state = 32}, + [910] = {.lex_state = 0}, + [911] = {.lex_state = 0}, + [912] = {.lex_state = 0}, + [913] = {.lex_state = 0}, + [914] = {.lex_state = 0, .external_lex_state = 32}, + [915] = {.lex_state = 0, .external_lex_state = 32}, + [916] = {.lex_state = 0}, + [917] = {.lex_state = 0}, + [918] = {.lex_state = 0, .external_lex_state = 32}, + [919] = {.lex_state = 0, .external_lex_state = 32}, + [920] = {.lex_state = 0, .external_lex_state = 32}, + [921] = {.lex_state = 0, .external_lex_state = 32}, + [922] = {.lex_state = 0, .external_lex_state = 32}, + [923] = {.lex_state = 0, .external_lex_state = 32}, + [924] = {.lex_state = 0, .external_lex_state = 32}, + [925] = {.lex_state = 0, .external_lex_state = 32}, + [926] = {.lex_state = 5}, + [927] = {.lex_state = 5}, + [928] = {.lex_state = 10, .external_lex_state = 27}, + [929] = {.lex_state = 5}, + [930] = {.lex_state = 0, .external_lex_state = 70}, + [931] = {.lex_state = 5}, + [932] = {.lex_state = 0, .external_lex_state = 70}, + [933] = {.lex_state = 5}, + [934] = {.lex_state = 0, .external_lex_state = 52}, + [935] = {.lex_state = 0, .external_lex_state = 27}, + [936] = {.lex_state = 51}, + [937] = {.lex_state = 0, .external_lex_state = 27}, + [938] = {.lex_state = 0, .external_lex_state = 27}, + [939] = {.lex_state = 0, .external_lex_state = 27}, + [940] = {.lex_state = 0, .external_lex_state = 27}, [941] = {.lex_state = 0}, - [942] = {.lex_state = 0, .external_lex_state = 71}, - [943] = {.lex_state = 0}, - [944] = {.lex_state = 0, .external_lex_state = 27}, - [945] = {.lex_state = 0, .external_lex_state = 27}, + [942] = {.lex_state = 0, .external_lex_state = 27}, + [943] = {.lex_state = 0, .external_lex_state = 71}, + [944] = {.lex_state = 0, .external_lex_state = 71}, + [945] = {.lex_state = 0, .external_lex_state = 72}, [946] = {.lex_state = 0, .external_lex_state = 27}, [947] = {.lex_state = 0, .external_lex_state = 27}, [948] = {.lex_state = 0, .external_lex_state = 27}, - [949] = {.lex_state = 11}, + [949] = {.lex_state = 0, .external_lex_state = 73}, [950] = {.lex_state = 0, .external_lex_state = 27}, [951] = {.lex_state = 0, .external_lex_state = 27}, - [952] = {.lex_state = 0, .external_lex_state = 27}, - [953] = {.lex_state = 0, .external_lex_state = 72}, - [954] = {.lex_state = 0, .external_lex_state = 71}, - [955] = {.lex_state = 0, .external_lex_state = 71}, - [956] = {.lex_state = 0, .external_lex_state = 27}, - [957] = {.lex_state = 9}, - [958] = {.lex_state = 0, .external_lex_state = 27}, + [952] = {.lex_state = 0, .external_lex_state = 71}, + [953] = {.lex_state = 0, .external_lex_state = 27}, + [954] = {.lex_state = 0, .external_lex_state = 27}, + [955] = {.lex_state = 0, .external_lex_state = 27}, + [956] = {.lex_state = 0, .external_lex_state = 71}, + [957] = {.lex_state = 0, .external_lex_state = 27}, + [958] = {.lex_state = 0, .external_lex_state = 72}, [959] = {.lex_state = 0, .external_lex_state = 27}, [960] = {.lex_state = 0, .external_lex_state = 27}, - [961] = {.lex_state = 0, .external_lex_state = 27}, - [962] = {.lex_state = 0, .external_lex_state = 27}, - [963] = {.lex_state = 0, .external_lex_state = 71}, - [964] = {.lex_state = 0, .external_lex_state = 27}, - [965] = {.lex_state = 7}, + [961] = {.lex_state = 0}, + [962] = {.lex_state = 0}, + [963] = {.lex_state = 0, .external_lex_state = 27}, + [964] = {.lex_state = 3}, + [965] = {.lex_state = 0, .external_lex_state = 27}, [966] = {.lex_state = 0, .external_lex_state = 27}, [967] = {.lex_state = 0, .external_lex_state = 27}, - [968] = {.lex_state = 0, .external_lex_state = 71}, - [969] = {.lex_state = 0, .external_lex_state = 71}, - [970] = {.lex_state = 51}, - [971] = {.lex_state = 51}, - [972] = {.lex_state = 51}, - [973] = {.lex_state = 3}, + [968] = {.lex_state = 0, .external_lex_state = 27}, + [969] = {.lex_state = 0, .external_lex_state = 27}, + [970] = {.lex_state = 0, .external_lex_state = 27}, + [971] = {.lex_state = 0, .external_lex_state = 27}, + [972] = {.lex_state = 0, .external_lex_state = 27}, + [973] = {.lex_state = 0, .external_lex_state = 27}, [974] = {.lex_state = 0, .external_lex_state = 27}, - [975] = {.lex_state = 0, .external_lex_state = 76}, + [975] = {.lex_state = 3}, [976] = {.lex_state = 0, .external_lex_state = 27}, - [977] = {.lex_state = 0, .external_lex_state = 71}, - [978] = {.lex_state = 0}, - [979] = {.lex_state = 9}, - [980] = {.lex_state = 0, .external_lex_state = 71}, - [981] = {.lex_state = 0, .external_lex_state = 54}, + [977] = {.lex_state = 3}, + [978] = {.lex_state = 0, .external_lex_state = 27}, + [979] = {.lex_state = 0, .external_lex_state = 27}, + [980] = {.lex_state = 5}, + [981] = {.lex_state = 5}, [982] = {.lex_state = 0, .external_lex_state = 27}, - [983] = {.lex_state = 0, .external_lex_state = 27}, - [984] = {.lex_state = 0, .external_lex_state = 27}, + [983] = {.lex_state = 3}, + [984] = {.lex_state = 0, .external_lex_state = 74}, [985] = {.lex_state = 0}, - [986] = {.lex_state = 0}, - [987] = {.lex_state = 0, .external_lex_state = 27}, + [986] = {.lex_state = 0, .external_lex_state = 27}, + [987] = {.lex_state = 0, .external_lex_state = 75}, [988] = {.lex_state = 0, .external_lex_state = 27}, - [989] = {.lex_state = 0, .external_lex_state = 27}, - [990] = {.lex_state = 0, .external_lex_state = 27}, + [989] = {.lex_state = 0, .external_lex_state = 71}, + [990] = {.lex_state = 0}, [991] = {.lex_state = 0, .external_lex_state = 27}, - [992] = {.lex_state = 51}, - [993] = {.lex_state = 0, .external_lex_state = 27}, - [994] = {.lex_state = 0, .external_lex_state = 27}, - [995] = {.lex_state = 0, .external_lex_state = 28}, + [992] = {.lex_state = 0, .external_lex_state = 27}, + [993] = {.lex_state = 10}, + [994] = {.lex_state = 0, .external_lex_state = 71}, + [995] = {.lex_state = 7}, [996] = {.lex_state = 0, .external_lex_state = 27}, - [997] = {.lex_state = 0, .external_lex_state = 72}, - [998] = {.lex_state = 0, .external_lex_state = 71}, - [999] = {.lex_state = 0, .external_lex_state = 27}, - [1000] = {.lex_state = 0, .external_lex_state = 27}, - [1001] = {.lex_state = 0, .external_lex_state = 71}, - [1002] = {.lex_state = 0, .external_lex_state = 27}, + [997] = {.lex_state = 0, .external_lex_state = 27}, + [998] = {.lex_state = 11}, + [999] = {.lex_state = 0}, + [1000] = {.lex_state = 0}, + [1001] = {.lex_state = 0, .external_lex_state = 28}, + [1002] = {.lex_state = 0, .external_lex_state = 71}, [1003] = {.lex_state = 0, .external_lex_state = 27}, - [1004] = {.lex_state = 0, .external_lex_state = 27}, + [1004] = {.lex_state = 0, .external_lex_state = 71}, [1005] = {.lex_state = 0, .external_lex_state = 27}, - [1006] = {.lex_state = 0, .external_lex_state = 27}, - [1007] = {.lex_state = 9}, - [1008] = {.lex_state = 0, .external_lex_state = 71}, - [1009] = {.lex_state = 5}, - [1010] = {.lex_state = 5}, + [1006] = {.lex_state = 51}, + [1007] = {.lex_state = 10}, + [1008] = {.lex_state = 0, .external_lex_state = 27}, + [1009] = {.lex_state = 51}, + [1010] = {.lex_state = 0, .external_lex_state = 27}, [1011] = {.lex_state = 0, .external_lex_state = 27}, [1012] = {.lex_state = 0, .external_lex_state = 27}, - [1013] = {.lex_state = 12}, - [1014] = {.lex_state = 51}, - [1015] = {.lex_state = 0, .external_lex_state = 27}, + [1013] = {.lex_state = 0, .external_lex_state = 27}, + [1014] = {.lex_state = 0, .external_lex_state = 38}, + [1015] = {.lex_state = 10}, [1016] = {.lex_state = 0, .external_lex_state = 71}, [1017] = {.lex_state = 0, .external_lex_state = 27}, - [1018] = {.lex_state = 0, .external_lex_state = 71}, + [1018] = {.lex_state = 0, .external_lex_state = 27}, [1019] = {.lex_state = 0, .external_lex_state = 27}, - [1020] = {.lex_state = 0, .external_lex_state = 27}, + [1020] = {.lex_state = 0, .external_lex_state = 71}, [1021] = {.lex_state = 0, .external_lex_state = 27}, - [1022] = {.lex_state = 9}, - [1023] = {.lex_state = 0, .external_lex_state = 27}, - [1024] = {.lex_state = 0, .external_lex_state = 27}, + [1022] = {.lex_state = 0, .external_lex_state = 71}, + [1023] = {.lex_state = 0, .external_lex_state = 71}, + [1024] = {.lex_state = 0, .external_lex_state = 72}, [1025] = {.lex_state = 0, .external_lex_state = 27}, - [1026] = {.lex_state = 0, .external_lex_state = 27}, + [1026] = {.lex_state = 0, .external_lex_state = 71}, [1027] = {.lex_state = 0, .external_lex_state = 27}, - [1028] = {.lex_state = 0, .external_lex_state = 27}, - [1029] = {.lex_state = 0, .external_lex_state = 54}, - [1030] = {.lex_state = 0, .external_lex_state = 27}, - [1031] = {.lex_state = 0, .external_lex_state = 27}, - [1032] = {.lex_state = 0, .external_lex_state = 72}, + [1028] = {.lex_state = 51}, + [1029] = {.lex_state = 0, .external_lex_state = 71}, + [1030] = {.lex_state = 0}, + [1031] = {.lex_state = 0, .external_lex_state = 71}, + [1032] = {.lex_state = 0, .external_lex_state = 27}, [1033] = {.lex_state = 0, .external_lex_state = 71}, - [1034] = {.lex_state = 0, .external_lex_state = 71}, - [1035] = {.lex_state = 51}, - [1036] = {.lex_state = 51}, - [1037] = {.lex_state = 0, .external_lex_state = 27}, + [1034] = {.lex_state = 0, .external_lex_state = 72}, + [1035] = {.lex_state = 0, .external_lex_state = 27}, + [1036] = {.lex_state = 0, .external_lex_state = 27}, + [1037] = {.lex_state = 10}, [1038] = {.lex_state = 0, .external_lex_state = 27}, - [1039] = {.lex_state = 0}, - [1040] = {.lex_state = 9}, - [1041] = {.lex_state = 5}, - [1042] = {.lex_state = 11}, + [1039] = {.lex_state = 0, .external_lex_state = 71}, + [1040] = {.lex_state = 0, .external_lex_state = 27}, + [1041] = {.lex_state = 0, .external_lex_state = 27}, + [1042] = {.lex_state = 0, .external_lex_state = 27}, [1043] = {.lex_state = 51}, - [1044] = {.lex_state = 0, .external_lex_state = 71}, + [1044] = {.lex_state = 0, .external_lex_state = 27}, [1045] = {.lex_state = 0, .external_lex_state = 27}, - [1046] = {.lex_state = 0}, - [1047] = {.lex_state = 9}, - [1048] = {.lex_state = 5}, - [1049] = {.lex_state = 11}, + [1046] = {.lex_state = 0, .external_lex_state = 27}, + [1047] = {.lex_state = 0, .external_lex_state = 27}, + [1048] = {.lex_state = 0, .external_lex_state = 71}, + [1049] = {.lex_state = 0, .external_lex_state = 27}, [1050] = {.lex_state = 51}, [1051] = {.lex_state = 0, .external_lex_state = 71}, - [1052] = {.lex_state = 0, .external_lex_state = 27}, - [1053] = {.lex_state = 0}, - [1054] = {.lex_state = 9}, - [1055] = {.lex_state = 5}, - [1056] = {.lex_state = 11}, - [1057] = {.lex_state = 51}, - [1058] = {.lex_state = 0, .external_lex_state = 27}, - [1059] = {.lex_state = 3}, - [1060] = {.lex_state = 0}, - [1061] = {.lex_state = 9}, - [1062] = {.lex_state = 5}, - [1063] = {.lex_state = 11}, - [1064] = {.lex_state = 3}, - [1065] = {.lex_state = 0}, + [1052] = {.lex_state = 10}, + [1053] = {.lex_state = 0, .external_lex_state = 27}, + [1054] = {.lex_state = 0, .external_lex_state = 27}, + [1055] = {.lex_state = 0}, + [1056] = {.lex_state = 0, .external_lex_state = 27}, + [1057] = {.lex_state = 0, .external_lex_state = 27}, + [1058] = {.lex_state = 10}, + [1059] = {.lex_state = 0, .external_lex_state = 38}, + [1060] = {.lex_state = 0, .external_lex_state = 27}, + [1061] = {.lex_state = 0, .external_lex_state = 27}, + [1062] = {.lex_state = 0, .external_lex_state = 27}, + [1063] = {.lex_state = 0}, + [1064] = {.lex_state = 0, .external_lex_state = 27}, + [1065] = {.lex_state = 0, .external_lex_state = 27}, [1066] = {.lex_state = 0, .external_lex_state = 27}, - [1067] = {.lex_state = 3}, - [1068] = {.lex_state = 0, .external_lex_state = 27}, - [1069] = {.lex_state = 0}, - [1070] = {.lex_state = 0, .external_lex_state = 71}, - [1071] = {.lex_state = 3}, - [1072] = {.lex_state = 0, .external_lex_state = 77}, - [1073] = {.lex_state = 0}, - [1074] = {.lex_state = 0, .external_lex_state = 27}, - [1075] = {.lex_state = 3}, - [1076] = {.lex_state = 0}, - [1077] = {.lex_state = 0}, - [1078] = {.lex_state = 0, .external_lex_state = 28}, - [1079] = {.lex_state = 3}, - [1080] = {.lex_state = 0, .external_lex_state = 77}, - [1081] = {.lex_state = 0}, - [1082] = {.lex_state = 0, .external_lex_state = 77}, - [1083] = {.lex_state = 0}, - [1084] = {.lex_state = 0, .external_lex_state = 77}, - [1085] = {.lex_state = 0}, - [1086] = {.lex_state = 0, .external_lex_state = 77}, + [1067] = {.lex_state = 0, .external_lex_state = 71}, + [1068] = {.lex_state = 0}, + [1069] = {.lex_state = 0, .external_lex_state = 71}, + [1070] = {.lex_state = 0, .external_lex_state = 76}, + [1071] = {.lex_state = 51}, + [1072] = {.lex_state = 51}, + [1073] = {.lex_state = 0, .external_lex_state = 27}, + [1074] = {.lex_state = 12}, + [1075] = {.lex_state = 0}, + [1076] = {.lex_state = 10}, + [1077] = {.lex_state = 5}, + [1078] = {.lex_state = 12}, + [1079] = {.lex_state = 51}, + [1080] = {.lex_state = 0, .external_lex_state = 71}, + [1081] = {.lex_state = 10}, + [1082] = {.lex_state = 0}, + [1083] = {.lex_state = 10}, + [1084] = {.lex_state = 5}, + [1085] = {.lex_state = 12}, + [1086] = {.lex_state = 51}, [1087] = {.lex_state = 0}, - [1088] = {.lex_state = 0}, + [1088] = {.lex_state = 0, .external_lex_state = 71}, [1089] = {.lex_state = 0}, - [1090] = {.lex_state = 0}, - [1091] = {.lex_state = 0}, - [1092] = {.lex_state = 0, .external_lex_state = 71}, - [1093] = {.lex_state = 0}, - [1094] = {.lex_state = 51}, + [1090] = {.lex_state = 10}, + [1091] = {.lex_state = 5}, + [1092] = {.lex_state = 12}, + [1093] = {.lex_state = 51}, + [1094] = {.lex_state = 0, .external_lex_state = 27}, [1095] = {.lex_state = 0}, + [1096] = {.lex_state = 0}, + [1097] = {.lex_state = 10}, + [1098] = {.lex_state = 5}, + [1099] = {.lex_state = 12}, + [1100] = {.lex_state = 0, .external_lex_state = 77}, + [1101] = {.lex_state = 0}, + [1102] = {.lex_state = 0}, + [1103] = {.lex_state = 3}, + [1104] = {.lex_state = 0, .external_lex_state = 28}, + [1105] = {.lex_state = 0}, + [1106] = {.lex_state = 0, .external_lex_state = 72}, + [1107] = {.lex_state = 3}, + [1108] = {.lex_state = 0, .external_lex_state = 27}, + [1109] = {.lex_state = 0}, + [1110] = {.lex_state = 0, .external_lex_state = 27}, + [1111] = {.lex_state = 3}, + [1112] = {.lex_state = 0, .external_lex_state = 27}, + [1113] = {.lex_state = 0}, + [1114] = {.lex_state = 0, .external_lex_state = 27}, + [1115] = {.lex_state = 3}, + [1116] = {.lex_state = 0, .external_lex_state = 77}, + [1117] = {.lex_state = 0}, + [1118] = {.lex_state = 0, .external_lex_state = 77}, + [1119] = {.lex_state = 0}, + [1120] = {.lex_state = 0, .external_lex_state = 77}, + [1121] = {.lex_state = 0}, + [1122] = {.lex_state = 0, .external_lex_state = 77}, + [1123] = {.lex_state = 0}, + [1124] = {.lex_state = 0}, + [1125] = {.lex_state = 0}, + [1126] = {.lex_state = 0}, + [1127] = {.lex_state = 0}, + [1128] = {.lex_state = 0, .external_lex_state = 27}, + [1129] = {.lex_state = 0, .external_lex_state = 27}, + [1130] = {.lex_state = 0, .external_lex_state = 27}, + [1131] = {.lex_state = 0, .external_lex_state = 71}, + [1132] = {.lex_state = 0, .external_lex_state = 27}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -4392,97 +4645,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__error] = ACTIONS(1), }, [1] = { - [sym_document] = STATE(1076), - [sym_frontmatter] = STATE(5), - [sym__block_with_section] = STATE(207), - [sym__block_element] = STATE(207), - [sym_section] = STATE(207), - [sym_heading] = STATE(6), - [sym_list] = STATE(207), - [sym__list_dash] = STATE(220), - [sym__list_item_dash] = STATE(414), - [sym__list_plus] = STATE(220), - [sym__list_item_plus] = STATE(425), - [sym__list_star] = STATE(220), - [sym__list_item_star] = STATE(424), - [sym__list_task] = STATE(220), - [sym__list_item_task] = STATE(397), - [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(220), - [sym__list_item_definition] = STATE(502), - [sym__list_decimal_period] = STATE(220), - [sym__list_item_decimal_period] = STATE(503), - [sym__list_decimal_paren] = STATE(220), - [sym__list_item_decimal_paren] = STATE(504), - [sym__list_decimal_parens] = STATE(220), - [sym__list_item_decimal_parens] = STATE(505), - [sym__list_lower_alpha_period] = STATE(220), - [sym__list_item_lower_alpha_period] = STATE(506), - [sym__list_lower_alpha_paren] = STATE(220), - [sym__list_item_lower_alpha_paren] = STATE(507), - [sym__list_lower_alpha_parens] = STATE(220), - [sym__list_item_lower_alpha_parens] = STATE(508), - [sym__list_upper_alpha_period] = STATE(220), - [sym__list_item_upper_alpha_period] = STATE(509), - [sym__list_upper_alpha_paren] = STATE(220), - [sym__list_item_upper_alpha_paren] = STATE(511), - [sym__list_upper_alpha_parens] = STATE(220), - [sym__list_item_upper_alpha_parens] = STATE(512), - [sym__list_lower_roman_period] = STATE(220), - [sym__list_item_lower_roman_period] = STATE(513), - [sym__list_lower_roman_paren] = STATE(220), - [sym__list_item_lower_roman_paren] = STATE(516), - [sym__list_lower_roman_parens] = STATE(220), - [sym__list_item_lower_roman_parens] = STATE(522), - [sym__list_upper_roman_period] = STATE(220), - [sym__list_item_upper_roman_period] = STATE(523), - [sym__list_upper_roman_paren] = STATE(220), - [sym__list_item_upper_roman_paren] = STATE(525), - [sym__list_upper_roman_parens] = STATE(220), - [sym__list_item_upper_roman_parens] = STATE(526), - [sym_table] = STATE(207), - [sym__table_content] = STATE(65), - [sym_table_separator] = STATE(65), - [sym_table_row] = STATE(70), - [sym_footnote] = STATE(207), - [sym_footnote_marker_begin] = STATE(1072), - [sym_div] = STATE(207), - [sym_div_marker_begin] = STATE(1068), - [sym_code_block] = STATE(207), - [sym_raw_block] = STATE(207), - [sym_thematic_break] = STATE(207), - [sym_block_quote] = STATE(207), - [sym__block_quote_prefix] = STATE(284), - [sym_link_reference_definition] = STATE(207), - [sym_block_attribute] = STATE(207), - [sym__paragraph] = STATE(207), - [sym__paragraph_content] = STATE(728), - [sym__inline] = STATE(710), - [sym__symbol_fallback] = STATE(355), - [aux_sym_document_repeat1] = STATE(7), - [aux_sym__list_dash_repeat1] = STATE(414), - [aux_sym__list_plus_repeat1] = STATE(425), - [aux_sym__list_star_repeat1] = STATE(424), - [aux_sym__list_task_repeat1] = STATE(397), - [aux_sym__list_definition_repeat1] = STATE(502), - [aux_sym__list_decimal_period_repeat1] = STATE(503), - [aux_sym__list_decimal_paren_repeat1] = STATE(504), - [aux_sym__list_decimal_parens_repeat1] = STATE(505), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(506), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(507), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(508), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(509), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(511), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(512), - [aux_sym__list_lower_roman_period_repeat1] = STATE(513), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(516), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(522), - [aux_sym__list_upper_roman_period_repeat1] = STATE(523), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(525), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(526), - [aux_sym_table_repeat1] = STATE(65), - [aux_sym__block_quote_prefix_repeat1] = STATE(316), - [aux_sym__inline_repeat1] = STATE(355), + [sym_document] = STATE(1087), + [sym_frontmatter] = STATE(3), + [sym__block_with_section] = STATE(132), + [sym__block_element] = STATE(132), + [sym_section] = STATE(132), + [sym_heading] = STATE(4), + [sym_list] = STATE(132), + [sym__list_dash] = STATE(136), + [sym__list_item_dash] = STATE(634), + [sym__list_plus] = STATE(136), + [sym__list_item_plus] = STATE(651), + [sym__list_star] = STATE(136), + [sym__list_item_star] = STATE(697), + [sym__list_task] = STATE(136), + [sym__list_item_task] = STATE(707), + [sym_list_marker_task] = STATE(47), + [sym__list_definition] = STATE(136), + [sym__list_item_definition] = STATE(736), + [sym__list_decimal_period] = STATE(136), + [sym__list_item_decimal_period] = STATE(795), + [sym__list_decimal_paren] = STATE(136), + [sym__list_item_decimal_paren] = STATE(848), + [sym__list_decimal_parens] = STATE(136), + [sym__list_item_decimal_parens] = STATE(772), + [sym__list_lower_alpha_period] = STATE(136), + [sym__list_item_lower_alpha_period] = STATE(787), + [sym__list_lower_alpha_paren] = STATE(136), + [sym__list_item_lower_alpha_paren] = STATE(792), + [sym__list_lower_alpha_parens] = STATE(136), + [sym__list_item_lower_alpha_parens] = STATE(793), + [sym__list_upper_alpha_period] = STATE(136), + [sym__list_item_upper_alpha_period] = STATE(797), + [sym__list_upper_alpha_paren] = STATE(136), + [sym__list_item_upper_alpha_paren] = STATE(798), + [sym__list_upper_alpha_parens] = STATE(136), + [sym__list_item_upper_alpha_parens] = STATE(799), + [sym__list_lower_roman_period] = STATE(136), + [sym__list_item_lower_roman_period] = STATE(801), + [sym__list_lower_roman_paren] = STATE(136), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(136), + [sym__list_item_lower_roman_parens] = STATE(814), + [sym__list_upper_roman_period] = STATE(136), + [sym__list_item_upper_roman_period] = STATE(818), + [sym__list_upper_roman_paren] = STATE(136), + [sym__list_item_upper_roman_paren] = STATE(819), + [sym__list_upper_roman_parens] = STATE(136), + [sym__list_item_upper_roman_parens] = STATE(822), + [sym_table] = STATE(132), + [sym__table_content] = STATE(66), + [sym_table_separator] = STATE(66), + [sym_table_row] = STATE(72), + [sym_footnote] = STATE(132), + [sym_footnote_marker_begin] = STATE(1100), + [sym_div] = STATE(132), + [sym__div_marker_begin] = STATE(1110), + [sym_code_block] = STATE(132), + [sym_raw_block] = STATE(132), + [sym_thematic_break] = STATE(132), + [sym_block_quote] = STATE(132), + [sym__block_quote_prefix] = STATE(293), + [sym_link_reference_definition] = STATE(132), + [sym_block_attribute] = STATE(132), + [sym__paragraph] = STATE(132), + [sym__paragraph_content] = STATE(842), + [sym__paragraph_inline_content] = STATE(930), + [sym__inline] = STATE(695), + [sym__symbol_fallback] = STATE(358), + [aux_sym_document_repeat1] = STATE(5), + [aux_sym__list_dash_repeat1] = STATE(415), + [aux_sym__list_plus_repeat1] = STATE(428), + [aux_sym__list_star_repeat1] = STATE(422), + [aux_sym__list_task_repeat1] = STATE(408), + [aux_sym__list_definition_repeat1] = STATE(526), + [aux_sym__list_decimal_period_repeat1] = STATE(527), + [aux_sym__list_decimal_paren_repeat1] = STATE(528), + [aux_sym__list_decimal_parens_repeat1] = STATE(530), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(532), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(550), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(552), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(554), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(556), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(558), + [aux_sym__list_lower_roman_period_repeat1] = STATE(576), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(594), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(597), + [aux_sym__list_upper_roman_period_repeat1] = STATE(599), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(602), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(605), + [aux_sym_table_repeat1] = STATE(66), + [aux_sym__block_quote_prefix_repeat1] = STATE(320), + [aux_sym__inline_repeat1] = STATE(358), [ts_builtin_sym_end] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(5), [anon_sym_PIPE] = ACTIONS(7), @@ -4525,110 +4779,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__thematic_break_star] = ACTIONS(69), }, [2] = { - [sym__block_with_section] = STATE(233), - [sym__block_element] = STATE(233), - [sym_section] = STATE(233), - [sym_heading] = STATE(8), - [sym_list] = STATE(233), - [sym__list_dash] = STATE(186), - [sym__list_item_dash] = STATE(415), - [sym__list_plus] = STATE(186), - [sym__list_item_plus] = STATE(406), - [sym__list_star] = STATE(186), - [sym__list_item_star] = STATE(408), - [sym__list_task] = STATE(186), - [sym__list_item_task] = STATE(391), - [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(186), - [sym__list_item_definition] = STATE(570), - [sym__list_decimal_period] = STATE(186), - [sym__list_item_decimal_period] = STATE(573), - [sym__list_decimal_paren] = STATE(186), - [sym__list_item_decimal_paren] = STATE(575), - [sym__list_decimal_parens] = STATE(186), - [sym__list_item_decimal_parens] = STATE(578), - [sym__list_lower_alpha_period] = STATE(186), - [sym__list_item_lower_alpha_period] = STATE(495), - [sym__list_lower_alpha_paren] = STATE(186), - [sym__list_item_lower_alpha_paren] = STATE(583), - [sym__list_lower_alpha_parens] = STATE(186), - [sym__list_item_lower_alpha_parens] = STATE(494), - [sym__list_upper_alpha_period] = STATE(186), - [sym__list_item_upper_alpha_period] = STATE(584), - [sym__list_upper_alpha_paren] = STATE(186), - [sym__list_item_upper_alpha_paren] = STATE(586), - [sym__list_upper_alpha_parens] = STATE(186), - [sym__list_item_upper_alpha_parens] = STATE(587), - [sym__list_lower_roman_period] = STATE(186), - [sym__list_item_lower_roman_period] = STATE(588), - [sym__list_lower_roman_paren] = STATE(186), - [sym__list_item_lower_roman_paren] = STATE(590), - [sym__list_lower_roman_parens] = STATE(186), - [sym__list_item_lower_roman_parens] = STATE(591), - [sym__list_upper_roman_period] = STATE(186), - [sym__list_item_upper_roman_period] = STATE(592), - [sym__list_upper_roman_paren] = STATE(186), - [sym__list_item_upper_roman_paren] = STATE(596), - [sym__list_upper_roman_parens] = STATE(186), - [sym__list_item_upper_roman_parens] = STATE(597), - [sym_table] = STATE(233), - [sym__table_content] = STATE(64), - [sym_table_separator] = STATE(64), + [sym__block_with_section] = STATE(132), + [sym__block_element] = STATE(132), + [sym_section] = STATE(132), + [sym_heading] = STATE(4), + [sym_list] = STATE(132), + [sym__list_dash] = STATE(136), + [sym__list_item_dash] = STATE(634), + [sym__list_plus] = STATE(136), + [sym__list_item_plus] = STATE(651), + [sym__list_star] = STATE(136), + [sym__list_item_star] = STATE(697), + [sym__list_task] = STATE(136), + [sym__list_item_task] = STATE(707), + [sym_list_marker_task] = STATE(47), + [sym__list_definition] = STATE(136), + [sym__list_item_definition] = STATE(736), + [sym__list_decimal_period] = STATE(136), + [sym__list_item_decimal_period] = STATE(795), + [sym__list_decimal_paren] = STATE(136), + [sym__list_item_decimal_paren] = STATE(848), + [sym__list_decimal_parens] = STATE(136), + [sym__list_item_decimal_parens] = STATE(772), + [sym__list_lower_alpha_period] = STATE(136), + [sym__list_item_lower_alpha_period] = STATE(787), + [sym__list_lower_alpha_paren] = STATE(136), + [sym__list_item_lower_alpha_paren] = STATE(792), + [sym__list_lower_alpha_parens] = STATE(136), + [sym__list_item_lower_alpha_parens] = STATE(793), + [sym__list_upper_alpha_period] = STATE(136), + [sym__list_item_upper_alpha_period] = STATE(797), + [sym__list_upper_alpha_paren] = STATE(136), + [sym__list_item_upper_alpha_paren] = STATE(798), + [sym__list_upper_alpha_parens] = STATE(136), + [sym__list_item_upper_alpha_parens] = STATE(799), + [sym__list_lower_roman_period] = STATE(136), + [sym__list_item_lower_roman_period] = STATE(801), + [sym__list_lower_roman_paren] = STATE(136), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(136), + [sym__list_item_lower_roman_parens] = STATE(814), + [sym__list_upper_roman_period] = STATE(136), + [sym__list_item_upper_roman_period] = STATE(818), + [sym__list_upper_roman_paren] = STATE(136), + [sym__list_item_upper_roman_paren] = STATE(819), + [sym__list_upper_roman_parens] = STATE(136), + [sym__list_item_upper_roman_parens] = STATE(822), + [sym_table] = STATE(132), + [sym__table_content] = STATE(66), + [sym_table_separator] = STATE(66), [sym_table_row] = STATE(72), - [sym_footnote] = STATE(233), - [sym_footnote_marker_begin] = STATE(1084), - [sym_div] = STATE(233), - [sym_div_marker_begin] = STATE(996), - [sym_code_block] = STATE(233), - [sym_raw_block] = STATE(233), - [sym_thematic_break] = STATE(233), - [sym_block_quote] = STATE(233), - [sym__block_quote_prefix] = STATE(287), - [sym_link_reference_definition] = STATE(233), - [sym_block_attribute] = STATE(233), - [sym__paragraph] = STATE(233), - [sym__paragraph_content] = STATE(811), - [sym__inline] = STATE(710), - [sym__symbol_fallback] = STATE(355), - [aux_sym_document_repeat1] = STATE(3), + [sym_footnote] = STATE(132), + [sym_footnote_marker_begin] = STATE(1100), + [sym_div] = STATE(132), + [sym__div_marker_begin] = STATE(1110), + [sym_code_block] = STATE(132), + [sym_raw_block] = STATE(132), + [sym_thematic_break] = STATE(132), + [sym_block_quote] = STATE(132), + [sym__block_quote_prefix] = STATE(293), + [sym_link_reference_definition] = STATE(132), + [sym_block_attribute] = STATE(132), + [sym__paragraph] = STATE(132), + [sym__paragraph_content] = STATE(842), + [sym__paragraph_inline_content] = STATE(930), + [sym__inline] = STATE(695), + [sym__symbol_fallback] = STATE(358), + [aux_sym_document_repeat1] = STATE(6), [aux_sym__list_dash_repeat1] = STATE(415), - [aux_sym__list_plus_repeat1] = STATE(406), - [aux_sym__list_star_repeat1] = STATE(408), - [aux_sym__list_task_repeat1] = STATE(391), - [aux_sym__list_definition_repeat1] = STATE(570), - [aux_sym__list_decimal_period_repeat1] = STATE(573), - [aux_sym__list_decimal_paren_repeat1] = STATE(575), - [aux_sym__list_decimal_parens_repeat1] = STATE(578), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(495), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(583), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(494), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(584), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(586), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(587), - [aux_sym__list_lower_roman_period_repeat1] = STATE(588), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(590), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(591), - [aux_sym__list_upper_roman_period_repeat1] = STATE(592), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(596), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(597), - [aux_sym_table_repeat1] = STATE(64), - [aux_sym__block_quote_prefix_repeat1] = STATE(316), - [aux_sym__inline_repeat1] = STATE(355), - [anon_sym_LBRACK] = ACTIONS(71), - [anon_sym_PIPE] = ACTIONS(73), + [aux_sym__list_plus_repeat1] = STATE(428), + [aux_sym__list_star_repeat1] = STATE(422), + [aux_sym__list_task_repeat1] = STATE(408), + [aux_sym__list_definition_repeat1] = STATE(526), + [aux_sym__list_decimal_period_repeat1] = STATE(527), + [aux_sym__list_decimal_paren_repeat1] = STATE(528), + [aux_sym__list_decimal_parens_repeat1] = STATE(530), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(532), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(550), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(552), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(554), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(556), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(558), + [aux_sym__list_lower_roman_period_repeat1] = STATE(576), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(594), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(597), + [aux_sym__list_upper_roman_period_repeat1] = STATE(599), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(602), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(605), + [aux_sym_table_repeat1] = STATE(66), + [aux_sym__block_quote_prefix_repeat1] = STATE(320), + [aux_sym__inline_repeat1] = STATE(358), + [ts_builtin_sym_end] = ACTIONS(71), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(7), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__block_close] = ACTIONS(77), - [sym__newline] = ACTIONS(79), + [sym__newline] = ACTIONS(15), [sym__heading_begin] = ACTIONS(19), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(81), + [sym__code_block_begin] = ACTIONS(23), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -4649,362 +4904,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(83), + [sym__block_quote_begin] = ACTIONS(65), [sym__block_quote_continuation] = ACTIONS(67), - [sym__thematic_break_dash] = ACTIONS(85), - [sym__thematic_break_star] = ACTIONS(85), + [sym__thematic_break_dash] = ACTIONS(69), + [sym__thematic_break_star] = ACTIONS(69), }, [3] = { - [sym__block_with_section] = STATE(233), - [sym__block_element] = STATE(233), - [sym_section] = STATE(233), - [sym_heading] = STATE(8), - [sym_list] = STATE(233), - [sym__list_dash] = STATE(186), - [sym__list_item_dash] = STATE(415), - [sym__list_plus] = STATE(186), - [sym__list_item_plus] = STATE(406), - [sym__list_star] = STATE(186), - [sym__list_item_star] = STATE(408), - [sym__list_task] = STATE(186), - [sym__list_item_task] = STATE(391), - [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(186), - [sym__list_item_definition] = STATE(570), - [sym__list_decimal_period] = STATE(186), - [sym__list_item_decimal_period] = STATE(573), - [sym__list_decimal_paren] = STATE(186), - [sym__list_item_decimal_paren] = STATE(575), - [sym__list_decimal_parens] = STATE(186), - [sym__list_item_decimal_parens] = STATE(578), - [sym__list_lower_alpha_period] = STATE(186), - [sym__list_item_lower_alpha_period] = STATE(495), - [sym__list_lower_alpha_paren] = STATE(186), - [sym__list_item_lower_alpha_paren] = STATE(583), - [sym__list_lower_alpha_parens] = STATE(186), - [sym__list_item_lower_alpha_parens] = STATE(494), - [sym__list_upper_alpha_period] = STATE(186), - [sym__list_item_upper_alpha_period] = STATE(584), - [sym__list_upper_alpha_paren] = STATE(186), - [sym__list_item_upper_alpha_paren] = STATE(586), - [sym__list_upper_alpha_parens] = STATE(186), - [sym__list_item_upper_alpha_parens] = STATE(587), - [sym__list_lower_roman_period] = STATE(186), - [sym__list_item_lower_roman_period] = STATE(588), - [sym__list_lower_roman_paren] = STATE(186), - [sym__list_item_lower_roman_paren] = STATE(590), - [sym__list_lower_roman_parens] = STATE(186), - [sym__list_item_lower_roman_parens] = STATE(591), - [sym__list_upper_roman_period] = STATE(186), - [sym__list_item_upper_roman_period] = STATE(592), - [sym__list_upper_roman_paren] = STATE(186), - [sym__list_item_upper_roman_paren] = STATE(596), - [sym__list_upper_roman_parens] = STATE(186), - [sym__list_item_upper_roman_parens] = STATE(597), - [sym_table] = STATE(233), - [sym__table_content] = STATE(64), - [sym_table_separator] = STATE(64), - [sym_table_row] = STATE(72), - [sym_footnote] = STATE(233), - [sym_footnote_marker_begin] = STATE(1084), - [sym_div] = STATE(233), - [sym_div_marker_begin] = STATE(996), - [sym_code_block] = STATE(233), - [sym_raw_block] = STATE(233), - [sym_thematic_break] = STATE(233), - [sym_block_quote] = STATE(233), - [sym__block_quote_prefix] = STATE(287), - [sym_link_reference_definition] = STATE(233), - [sym_block_attribute] = STATE(233), - [sym__paragraph] = STATE(233), - [sym__paragraph_content] = STATE(811), - [sym__inline] = STATE(710), - [sym__symbol_fallback] = STATE(355), - [aux_sym_document_repeat1] = STATE(3), - [aux_sym__list_dash_repeat1] = STATE(415), - [aux_sym__list_plus_repeat1] = STATE(406), - [aux_sym__list_star_repeat1] = STATE(408), - [aux_sym__list_task_repeat1] = STATE(391), - [aux_sym__list_definition_repeat1] = STATE(570), - [aux_sym__list_decimal_period_repeat1] = STATE(573), - [aux_sym__list_decimal_paren_repeat1] = STATE(575), - [aux_sym__list_decimal_parens_repeat1] = STATE(578), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(495), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(583), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(494), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(584), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(586), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(587), - [aux_sym__list_lower_roman_period_repeat1] = STATE(588), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(590), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(591), - [aux_sym__list_upper_roman_period_repeat1] = STATE(592), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(596), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(597), - [aux_sym_table_repeat1] = STATE(64), - [aux_sym__block_quote_prefix_repeat1] = STATE(316), - [aux_sym__inline_repeat1] = STATE(355), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_PIPE] = ACTIONS(90), - [anon_sym_LBRACK_CARET] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(96), - [anon_sym_DOT] = ACTIONS(99), - [aux_sym_identifier_token1] = ACTIONS(99), - [aux_sym__inline_token1] = ACTIONS(99), - [anon_sym_LBRACE_DASH] = ACTIONS(99), - [anon_sym_POUND] = ACTIONS(99), - [anon_sym_PERCENT] = ACTIONS(99), - [sym__block_close] = ACTIONS(102), - [sym__newline] = ACTIONS(104), - [sym__heading_begin] = ACTIONS(107), - [sym__div_begin] = ACTIONS(110), - [sym__code_block_begin] = ACTIONS(113), - [sym_list_marker_dash] = ACTIONS(116), - [sym_list_marker_star] = ACTIONS(119), - [sym_list_marker_plus] = ACTIONS(122), - [sym__list_marker_task_begin] = ACTIONS(125), - [sym_list_marker_definition] = ACTIONS(128), - [sym_list_marker_decimal_period] = ACTIONS(131), - [sym_list_marker_lower_alpha_period] = ACTIONS(134), - [sym_list_marker_upper_alpha_period] = ACTIONS(137), - [sym_list_marker_lower_roman_period] = ACTIONS(140), - [sym_list_marker_upper_roman_period] = ACTIONS(143), - [sym_list_marker_decimal_paren] = ACTIONS(146), - [sym_list_marker_lower_alpha_paren] = ACTIONS(149), - [sym_list_marker_upper_alpha_paren] = ACTIONS(152), - [sym_list_marker_lower_roman_paren] = ACTIONS(155), - [sym_list_marker_upper_roman_paren] = ACTIONS(158), - [sym_list_marker_decimal_parens] = ACTIONS(161), - [sym_list_marker_lower_alpha_parens] = ACTIONS(164), - [sym_list_marker_upper_alpha_parens] = ACTIONS(167), - [sym_list_marker_lower_roman_parens] = ACTIONS(170), - [sym_list_marker_upper_roman_parens] = ACTIONS(173), - [sym__block_quote_begin] = ACTIONS(176), - [sym__block_quote_continuation] = ACTIONS(179), - [sym__thematic_break_dash] = ACTIONS(182), - [sym__thematic_break_star] = ACTIONS(182), - }, - [4] = { - [sym__block_with_section] = STATE(233), - [sym__block_element] = STATE(233), - [sym_section] = STATE(233), - [sym_heading] = STATE(8), - [sym_list] = STATE(233), - [sym__list_dash] = STATE(186), - [sym__list_item_dash] = STATE(415), - [sym__list_plus] = STATE(186), - [sym__list_item_plus] = STATE(406), - [sym__list_star] = STATE(186), - [sym__list_item_star] = STATE(408), - [sym__list_task] = STATE(186), - [sym__list_item_task] = STATE(391), - [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(186), - [sym__list_item_definition] = STATE(570), - [sym__list_decimal_period] = STATE(186), - [sym__list_item_decimal_period] = STATE(573), - [sym__list_decimal_paren] = STATE(186), - [sym__list_item_decimal_paren] = STATE(575), - [sym__list_decimal_parens] = STATE(186), - [sym__list_item_decimal_parens] = STATE(578), - [sym__list_lower_alpha_period] = STATE(186), - [sym__list_item_lower_alpha_period] = STATE(495), - [sym__list_lower_alpha_paren] = STATE(186), - [sym__list_item_lower_alpha_paren] = STATE(583), - [sym__list_lower_alpha_parens] = STATE(186), - [sym__list_item_lower_alpha_parens] = STATE(494), - [sym__list_upper_alpha_period] = STATE(186), - [sym__list_item_upper_alpha_period] = STATE(584), - [sym__list_upper_alpha_paren] = STATE(186), - [sym__list_item_upper_alpha_paren] = STATE(586), - [sym__list_upper_alpha_parens] = STATE(186), - [sym__list_item_upper_alpha_parens] = STATE(587), - [sym__list_lower_roman_period] = STATE(186), - [sym__list_item_lower_roman_period] = STATE(588), - [sym__list_lower_roman_paren] = STATE(186), - [sym__list_item_lower_roman_paren] = STATE(590), - [sym__list_lower_roman_parens] = STATE(186), - [sym__list_item_lower_roman_parens] = STATE(591), - [sym__list_upper_roman_period] = STATE(186), - [sym__list_item_upper_roman_period] = STATE(592), - [sym__list_upper_roman_paren] = STATE(186), - [sym__list_item_upper_roman_paren] = STATE(596), - [sym__list_upper_roman_parens] = STATE(186), - [sym__list_item_upper_roman_parens] = STATE(597), - [sym_table] = STATE(233), - [sym__table_content] = STATE(64), - [sym_table_separator] = STATE(64), + [sym__block_with_section] = STATE(132), + [sym__block_element] = STATE(132), + [sym_section] = STATE(132), + [sym_heading] = STATE(4), + [sym_list] = STATE(132), + [sym__list_dash] = STATE(136), + [sym__list_item_dash] = STATE(634), + [sym__list_plus] = STATE(136), + [sym__list_item_plus] = STATE(651), + [sym__list_star] = STATE(136), + [sym__list_item_star] = STATE(697), + [sym__list_task] = STATE(136), + [sym__list_item_task] = STATE(707), + [sym_list_marker_task] = STATE(47), + [sym__list_definition] = STATE(136), + [sym__list_item_definition] = STATE(736), + [sym__list_decimal_period] = STATE(136), + [sym__list_item_decimal_period] = STATE(795), + [sym__list_decimal_paren] = STATE(136), + [sym__list_item_decimal_paren] = STATE(848), + [sym__list_decimal_parens] = STATE(136), + [sym__list_item_decimal_parens] = STATE(772), + [sym__list_lower_alpha_period] = STATE(136), + [sym__list_item_lower_alpha_period] = STATE(787), + [sym__list_lower_alpha_paren] = STATE(136), + [sym__list_item_lower_alpha_paren] = STATE(792), + [sym__list_lower_alpha_parens] = STATE(136), + [sym__list_item_lower_alpha_parens] = STATE(793), + [sym__list_upper_alpha_period] = STATE(136), + [sym__list_item_upper_alpha_period] = STATE(797), + [sym__list_upper_alpha_paren] = STATE(136), + [sym__list_item_upper_alpha_paren] = STATE(798), + [sym__list_upper_alpha_parens] = STATE(136), + [sym__list_item_upper_alpha_parens] = STATE(799), + [sym__list_lower_roman_period] = STATE(136), + [sym__list_item_lower_roman_period] = STATE(801), + [sym__list_lower_roman_paren] = STATE(136), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(136), + [sym__list_item_lower_roman_parens] = STATE(814), + [sym__list_upper_roman_period] = STATE(136), + [sym__list_item_upper_roman_period] = STATE(818), + [sym__list_upper_roman_paren] = STATE(136), + [sym__list_item_upper_roman_paren] = STATE(819), + [sym__list_upper_roman_parens] = STATE(136), + [sym__list_item_upper_roman_parens] = STATE(822), + [sym_table] = STATE(132), + [sym__table_content] = STATE(66), + [sym_table_separator] = STATE(66), [sym_table_row] = STATE(72), - [sym_footnote] = STATE(233), - [sym_footnote_marker_begin] = STATE(1084), - [sym_div] = STATE(233), - [sym_div_marker_begin] = STATE(996), - [sym_code_block] = STATE(233), - [sym_raw_block] = STATE(233), - [sym_thematic_break] = STATE(233), - [sym_block_quote] = STATE(233), - [sym__block_quote_prefix] = STATE(287), - [sym_link_reference_definition] = STATE(233), - [sym_block_attribute] = STATE(233), - [sym__paragraph] = STATE(233), - [sym__paragraph_content] = STATE(811), - [sym__inline] = STATE(710), - [sym__symbol_fallback] = STATE(355), - [aux_sym_document_repeat1] = STATE(3), + [sym_footnote] = STATE(132), + [sym_footnote_marker_begin] = STATE(1100), + [sym_div] = STATE(132), + [sym__div_marker_begin] = STATE(1110), + [sym_code_block] = STATE(132), + [sym_raw_block] = STATE(132), + [sym_thematic_break] = STATE(132), + [sym_block_quote] = STATE(132), + [sym__block_quote_prefix] = STATE(293), + [sym_link_reference_definition] = STATE(132), + [sym_block_attribute] = STATE(132), + [sym__paragraph] = STATE(132), + [sym__paragraph_content] = STATE(842), + [sym__paragraph_inline_content] = STATE(930), + [sym__inline] = STATE(695), + [sym__symbol_fallback] = STATE(358), + [aux_sym_document_repeat1] = STATE(2), [aux_sym__list_dash_repeat1] = STATE(415), - [aux_sym__list_plus_repeat1] = STATE(406), - [aux_sym__list_star_repeat1] = STATE(408), - [aux_sym__list_task_repeat1] = STATE(391), - [aux_sym__list_definition_repeat1] = STATE(570), - [aux_sym__list_decimal_period_repeat1] = STATE(573), - [aux_sym__list_decimal_paren_repeat1] = STATE(575), - [aux_sym__list_decimal_parens_repeat1] = STATE(578), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(495), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(583), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(494), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(584), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(586), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(587), - [aux_sym__list_lower_roman_period_repeat1] = STATE(588), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(590), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(591), - [aux_sym__list_upper_roman_period_repeat1] = STATE(592), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(596), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(597), - [aux_sym_table_repeat1] = STATE(64), - [aux_sym__block_quote_prefix_repeat1] = STATE(316), - [aux_sym__inline_repeat1] = STATE(355), - [anon_sym_LBRACK] = ACTIONS(71), - [anon_sym_PIPE] = ACTIONS(73), - [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(75), - [anon_sym_DOT] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(13), - [aux_sym__inline_token1] = ACTIONS(13), - [anon_sym_LBRACE_DASH] = ACTIONS(13), - [anon_sym_POUND] = ACTIONS(13), - [anon_sym_PERCENT] = ACTIONS(13), - [sym__block_close] = ACTIONS(185), - [sym__newline] = ACTIONS(79), - [sym__heading_begin] = ACTIONS(19), - [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(81), - [sym_list_marker_dash] = ACTIONS(25), - [sym_list_marker_star] = ACTIONS(27), - [sym_list_marker_plus] = ACTIONS(29), - [sym__list_marker_task_begin] = ACTIONS(31), - [sym_list_marker_definition] = ACTIONS(33), - [sym_list_marker_decimal_period] = ACTIONS(35), - [sym_list_marker_lower_alpha_period] = ACTIONS(37), - [sym_list_marker_upper_alpha_period] = ACTIONS(39), - [sym_list_marker_lower_roman_period] = ACTIONS(41), - [sym_list_marker_upper_roman_period] = ACTIONS(43), - [sym_list_marker_decimal_paren] = ACTIONS(45), - [sym_list_marker_lower_alpha_paren] = ACTIONS(47), - [sym_list_marker_upper_alpha_paren] = ACTIONS(49), - [sym_list_marker_lower_roman_paren] = ACTIONS(51), - [sym_list_marker_upper_roman_paren] = ACTIONS(53), - [sym_list_marker_decimal_parens] = ACTIONS(55), - [sym_list_marker_lower_alpha_parens] = ACTIONS(57), - [sym_list_marker_upper_alpha_parens] = ACTIONS(59), - [sym_list_marker_lower_roman_parens] = ACTIONS(61), - [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(83), - [sym__block_quote_continuation] = ACTIONS(67), - [sym__thematic_break_dash] = ACTIONS(85), - [sym__thematic_break_star] = ACTIONS(85), - }, - [5] = { - [sym__block_with_section] = STATE(207), - [sym__block_element] = STATE(207), - [sym_section] = STATE(207), - [sym_heading] = STATE(6), - [sym_list] = STATE(207), - [sym__list_dash] = STATE(220), - [sym__list_item_dash] = STATE(414), - [sym__list_plus] = STATE(220), - [sym__list_item_plus] = STATE(425), - [sym__list_star] = STATE(220), - [sym__list_item_star] = STATE(424), - [sym__list_task] = STATE(220), - [sym__list_item_task] = STATE(397), - [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(220), - [sym__list_item_definition] = STATE(502), - [sym__list_decimal_period] = STATE(220), - [sym__list_item_decimal_period] = STATE(503), - [sym__list_decimal_paren] = STATE(220), - [sym__list_item_decimal_paren] = STATE(504), - [sym__list_decimal_parens] = STATE(220), - [sym__list_item_decimal_parens] = STATE(505), - [sym__list_lower_alpha_period] = STATE(220), - [sym__list_item_lower_alpha_period] = STATE(506), - [sym__list_lower_alpha_paren] = STATE(220), - [sym__list_item_lower_alpha_paren] = STATE(507), - [sym__list_lower_alpha_parens] = STATE(220), - [sym__list_item_lower_alpha_parens] = STATE(508), - [sym__list_upper_alpha_period] = STATE(220), - [sym__list_item_upper_alpha_period] = STATE(509), - [sym__list_upper_alpha_paren] = STATE(220), - [sym__list_item_upper_alpha_paren] = STATE(511), - [sym__list_upper_alpha_parens] = STATE(220), - [sym__list_item_upper_alpha_parens] = STATE(512), - [sym__list_lower_roman_period] = STATE(220), - [sym__list_item_lower_roman_period] = STATE(513), - [sym__list_lower_roman_paren] = STATE(220), - [sym__list_item_lower_roman_paren] = STATE(516), - [sym__list_lower_roman_parens] = STATE(220), - [sym__list_item_lower_roman_parens] = STATE(522), - [sym__list_upper_roman_period] = STATE(220), - [sym__list_item_upper_roman_period] = STATE(523), - [sym__list_upper_roman_paren] = STATE(220), - [sym__list_item_upper_roman_paren] = STATE(525), - [sym__list_upper_roman_parens] = STATE(220), - [sym__list_item_upper_roman_parens] = STATE(526), - [sym_table] = STATE(207), - [sym__table_content] = STATE(65), - [sym_table_separator] = STATE(65), - [sym_table_row] = STATE(70), - [sym_footnote] = STATE(207), - [sym_footnote_marker_begin] = STATE(1072), - [sym_div] = STATE(207), - [sym_div_marker_begin] = STATE(1068), - [sym_code_block] = STATE(207), - [sym_raw_block] = STATE(207), - [sym_thematic_break] = STATE(207), - [sym_block_quote] = STATE(207), - [sym__block_quote_prefix] = STATE(284), - [sym_link_reference_definition] = STATE(207), - [sym_block_attribute] = STATE(207), - [sym__paragraph] = STATE(207), - [sym__paragraph_content] = STATE(728), - [sym__inline] = STATE(710), - [sym__symbol_fallback] = STATE(355), - [aux_sym_document_repeat1] = STATE(9), - [aux_sym__list_dash_repeat1] = STATE(414), - [aux_sym__list_plus_repeat1] = STATE(425), - [aux_sym__list_star_repeat1] = STATE(424), - [aux_sym__list_task_repeat1] = STATE(397), - [aux_sym__list_definition_repeat1] = STATE(502), - [aux_sym__list_decimal_period_repeat1] = STATE(503), - [aux_sym__list_decimal_paren_repeat1] = STATE(504), - [aux_sym__list_decimal_parens_repeat1] = STATE(505), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(506), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(507), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(508), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(509), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(511), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(512), - [aux_sym__list_lower_roman_period_repeat1] = STATE(513), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(516), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(522), - [aux_sym__list_upper_roman_period_repeat1] = STATE(523), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(525), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(526), - [aux_sym_table_repeat1] = STATE(65), - [aux_sym__block_quote_prefix_repeat1] = STATE(316), - [aux_sym__inline_repeat1] = STATE(355), - [ts_builtin_sym_end] = ACTIONS(187), + [aux_sym__list_plus_repeat1] = STATE(428), + [aux_sym__list_star_repeat1] = STATE(422), + [aux_sym__list_task_repeat1] = STATE(408), + [aux_sym__list_definition_repeat1] = STATE(526), + [aux_sym__list_decimal_period_repeat1] = STATE(527), + [aux_sym__list_decimal_paren_repeat1] = STATE(528), + [aux_sym__list_decimal_parens_repeat1] = STATE(530), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(532), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(550), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(552), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(554), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(556), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(558), + [aux_sym__list_lower_roman_period_repeat1] = STATE(576), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(594), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(597), + [aux_sym__list_upper_roman_period_repeat1] = STATE(599), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(602), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(605), + [aux_sym_table_repeat1] = STATE(66), + [aux_sym__block_quote_prefix_repeat1] = STATE(320), + [aux_sym__inline_repeat1] = STATE(358), + [ts_builtin_sym_end] = ACTIONS(73), [anon_sym_LBRACK] = ACTIONS(5), [anon_sym_PIPE] = ACTIONS(7), [anon_sym_LBRACK_CARET] = ACTIONS(9), @@ -5044,111 +5040,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__thematic_break_dash] = ACTIONS(69), [sym__thematic_break_star] = ACTIONS(69), }, - [6] = { - [sym__block_with_section] = STATE(233), - [sym__block_element] = STATE(233), - [sym_section] = STATE(233), - [sym_heading] = STATE(8), - [sym_list] = STATE(233), - [sym__list_dash] = STATE(186), - [sym__list_item_dash] = STATE(415), - [sym__list_plus] = STATE(186), - [sym__list_item_plus] = STATE(406), - [sym__list_star] = STATE(186), - [sym__list_item_star] = STATE(408), - [sym__list_task] = STATE(186), - [sym__list_item_task] = STATE(391), - [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(186), - [sym__list_item_definition] = STATE(570), - [sym__list_decimal_period] = STATE(186), - [sym__list_item_decimal_period] = STATE(573), - [sym__list_decimal_paren] = STATE(186), - [sym__list_item_decimal_paren] = STATE(575), - [sym__list_decimal_parens] = STATE(186), - [sym__list_item_decimal_parens] = STATE(578), - [sym__list_lower_alpha_period] = STATE(186), - [sym__list_item_lower_alpha_period] = STATE(495), - [sym__list_lower_alpha_paren] = STATE(186), - [sym__list_item_lower_alpha_paren] = STATE(583), - [sym__list_lower_alpha_parens] = STATE(186), - [sym__list_item_lower_alpha_parens] = STATE(494), - [sym__list_upper_alpha_period] = STATE(186), - [sym__list_item_upper_alpha_period] = STATE(584), - [sym__list_upper_alpha_paren] = STATE(186), - [sym__list_item_upper_alpha_paren] = STATE(586), - [sym__list_upper_alpha_parens] = STATE(186), - [sym__list_item_upper_alpha_parens] = STATE(587), - [sym__list_lower_roman_period] = STATE(186), - [sym__list_item_lower_roman_period] = STATE(588), - [sym__list_lower_roman_paren] = STATE(186), - [sym__list_item_lower_roman_paren] = STATE(590), - [sym__list_lower_roman_parens] = STATE(186), - [sym__list_item_lower_roman_parens] = STATE(591), - [sym__list_upper_roman_period] = STATE(186), - [sym__list_item_upper_roman_period] = STATE(592), - [sym__list_upper_roman_paren] = STATE(186), - [sym__list_item_upper_roman_paren] = STATE(596), - [sym__list_upper_roman_parens] = STATE(186), - [sym__list_item_upper_roman_parens] = STATE(597), - [sym_table] = STATE(233), + [4] = { + [sym__block_with_section] = STATE(154), + [sym__block_element] = STATE(154), + [sym_section] = STATE(154), + [sym_heading] = STATE(9), + [sym_list] = STATE(154), + [sym__list_dash] = STATE(162), + [sym__list_item_dash] = STATE(634), + [sym__list_plus] = STATE(162), + [sym__list_item_plus] = STATE(651), + [sym__list_star] = STATE(162), + [sym__list_item_star] = STATE(697), + [sym__list_task] = STATE(162), + [sym__list_item_task] = STATE(707), + [sym_list_marker_task] = STATE(47), + [sym__list_definition] = STATE(162), + [sym__list_item_definition] = STATE(736), + [sym__list_decimal_period] = STATE(162), + [sym__list_item_decimal_period] = STATE(795), + [sym__list_decimal_paren] = STATE(162), + [sym__list_item_decimal_paren] = STATE(848), + [sym__list_decimal_parens] = STATE(162), + [sym__list_item_decimal_parens] = STATE(772), + [sym__list_lower_alpha_period] = STATE(162), + [sym__list_item_lower_alpha_period] = STATE(787), + [sym__list_lower_alpha_paren] = STATE(162), + [sym__list_item_lower_alpha_paren] = STATE(792), + [sym__list_lower_alpha_parens] = STATE(162), + [sym__list_item_lower_alpha_parens] = STATE(793), + [sym__list_upper_alpha_period] = STATE(162), + [sym__list_item_upper_alpha_period] = STATE(797), + [sym__list_upper_alpha_paren] = STATE(162), + [sym__list_item_upper_alpha_paren] = STATE(798), + [sym__list_upper_alpha_parens] = STATE(162), + [sym__list_item_upper_alpha_parens] = STATE(799), + [sym__list_lower_roman_period] = STATE(162), + [sym__list_item_lower_roman_period] = STATE(801), + [sym__list_lower_roman_paren] = STATE(162), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(162), + [sym__list_item_lower_roman_parens] = STATE(814), + [sym__list_upper_roman_period] = STATE(162), + [sym__list_item_upper_roman_period] = STATE(818), + [sym__list_upper_roman_paren] = STATE(162), + [sym__list_item_upper_roman_paren] = STATE(819), + [sym__list_upper_roman_parens] = STATE(162), + [sym__list_item_upper_roman_parens] = STATE(822), + [sym_table] = STATE(154), [sym__table_content] = STATE(64), [sym_table_separator] = STATE(64), - [sym_table_row] = STATE(72), - [sym_footnote] = STATE(233), - [sym_footnote_marker_begin] = STATE(1084), - [sym_div] = STATE(233), - [sym_div_marker_begin] = STATE(996), - [sym_code_block] = STATE(233), - [sym_raw_block] = STATE(233), - [sym_thematic_break] = STATE(233), - [sym_block_quote] = STATE(233), - [sym__block_quote_prefix] = STATE(287), - [sym_link_reference_definition] = STATE(233), - [sym_block_attribute] = STATE(233), - [sym__paragraph] = STATE(233), - [sym__paragraph_content] = STATE(811), - [sym__inline] = STATE(710), - [sym__symbol_fallback] = STATE(355), - [aux_sym_document_repeat1] = STATE(4), - [aux_sym__list_dash_repeat1] = STATE(415), - [aux_sym__list_plus_repeat1] = STATE(406), - [aux_sym__list_star_repeat1] = STATE(408), - [aux_sym__list_task_repeat1] = STATE(391), - [aux_sym__list_definition_repeat1] = STATE(570), - [aux_sym__list_decimal_period_repeat1] = STATE(573), - [aux_sym__list_decimal_paren_repeat1] = STATE(575), - [aux_sym__list_decimal_parens_repeat1] = STATE(578), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(495), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(583), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(494), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(584), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(586), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(587), - [aux_sym__list_lower_roman_period_repeat1] = STATE(588), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(590), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(591), - [aux_sym__list_upper_roman_period_repeat1] = STATE(592), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(596), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(597), + [sym_table_row] = STATE(71), + [sym_footnote] = STATE(154), + [sym_footnote_marker_begin] = STATE(1120), + [sym_div] = STATE(154), + [sym__div_marker_begin] = STATE(1032), + [sym_code_block] = STATE(154), + [sym_raw_block] = STATE(154), + [sym_thematic_break] = STATE(154), + [sym_block_quote] = STATE(154), + [sym__block_quote_prefix] = STATE(292), + [sym_link_reference_definition] = STATE(154), + [sym_block_attribute] = STATE(154), + [sym__paragraph] = STATE(154), + [sym__paragraph_content] = STATE(785), + [sym__paragraph_inline_content] = STATE(930), + [sym__inline] = STATE(695), + [sym__symbol_fallback] = STATE(358), + [aux_sym_document_repeat1] = STATE(7), + [aux_sym__list_dash_repeat1] = STATE(431), + [aux_sym__list_plus_repeat1] = STATE(414), + [aux_sym__list_star_repeat1] = STATE(416), + [aux_sym__list_task_repeat1] = STATE(396), + [aux_sym__list_definition_repeat1] = STATE(560), + [aux_sym__list_decimal_period_repeat1] = STATE(561), + [aux_sym__list_decimal_paren_repeat1] = STATE(562), + [aux_sym__list_decimal_parens_repeat1] = STATE(563), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(564), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(621), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(566), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(567), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(568), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(569), + [aux_sym__list_lower_roman_period_repeat1] = STATE(570), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(571), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(572), + [aux_sym__list_upper_roman_period_repeat1] = STATE(573), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(574), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(575), [aux_sym_table_repeat1] = STATE(64), - [aux_sym__block_quote_prefix_repeat1] = STATE(316), - [aux_sym__inline_repeat1] = STATE(355), - [anon_sym_LBRACK] = ACTIONS(71), - [anon_sym_PIPE] = ACTIONS(73), + [aux_sym__block_quote_prefix_repeat1] = STATE(320), + [aux_sym__inline_repeat1] = STATE(358), + [anon_sym_LBRACK] = ACTIONS(75), + [anon_sym_PIPE] = ACTIONS(77), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(79), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__block_close] = ACTIONS(189), - [sym__newline] = ACTIONS(79), + [sym__block_close] = ACTIONS(81), + [sym__newline] = ACTIONS(83), [sym__heading_begin] = ACTIONS(19), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(81), + [sym__code_block_begin] = ACTIONS(85), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -5169,102 +5166,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(83), + [sym__block_quote_begin] = ACTIONS(87), [sym__block_quote_continuation] = ACTIONS(67), - [sym__thematic_break_dash] = ACTIONS(85), - [sym__thematic_break_star] = ACTIONS(85), + [sym__thematic_break_dash] = ACTIONS(89), + [sym__thematic_break_star] = ACTIONS(89), }, - [7] = { - [sym__block_with_section] = STATE(207), - [sym__block_element] = STATE(207), - [sym_section] = STATE(207), - [sym_heading] = STATE(6), - [sym_list] = STATE(207), - [sym__list_dash] = STATE(220), - [sym__list_item_dash] = STATE(414), - [sym__list_plus] = STATE(220), - [sym__list_item_plus] = STATE(425), - [sym__list_star] = STATE(220), - [sym__list_item_star] = STATE(424), - [sym__list_task] = STATE(220), - [sym__list_item_task] = STATE(397), - [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(220), - [sym__list_item_definition] = STATE(502), - [sym__list_decimal_period] = STATE(220), - [sym__list_item_decimal_period] = STATE(503), - [sym__list_decimal_paren] = STATE(220), - [sym__list_item_decimal_paren] = STATE(504), - [sym__list_decimal_parens] = STATE(220), - [sym__list_item_decimal_parens] = STATE(505), - [sym__list_lower_alpha_period] = STATE(220), - [sym__list_item_lower_alpha_period] = STATE(506), - [sym__list_lower_alpha_paren] = STATE(220), - [sym__list_item_lower_alpha_paren] = STATE(507), - [sym__list_lower_alpha_parens] = STATE(220), - [sym__list_item_lower_alpha_parens] = STATE(508), - [sym__list_upper_alpha_period] = STATE(220), - [sym__list_item_upper_alpha_period] = STATE(509), - [sym__list_upper_alpha_paren] = STATE(220), - [sym__list_item_upper_alpha_paren] = STATE(511), - [sym__list_upper_alpha_parens] = STATE(220), - [sym__list_item_upper_alpha_parens] = STATE(512), - [sym__list_lower_roman_period] = STATE(220), - [sym__list_item_lower_roman_period] = STATE(513), - [sym__list_lower_roman_paren] = STATE(220), - [sym__list_item_lower_roman_paren] = STATE(516), - [sym__list_lower_roman_parens] = STATE(220), - [sym__list_item_lower_roman_parens] = STATE(522), - [sym__list_upper_roman_period] = STATE(220), - [sym__list_item_upper_roman_period] = STATE(523), - [sym__list_upper_roman_paren] = STATE(220), - [sym__list_item_upper_roman_paren] = STATE(525), - [sym__list_upper_roman_parens] = STATE(220), - [sym__list_item_upper_roman_parens] = STATE(526), - [sym_table] = STATE(207), - [sym__table_content] = STATE(65), - [sym_table_separator] = STATE(65), - [sym_table_row] = STATE(70), - [sym_footnote] = STATE(207), - [sym_footnote_marker_begin] = STATE(1072), - [sym_div] = STATE(207), - [sym_div_marker_begin] = STATE(1068), - [sym_code_block] = STATE(207), - [sym_raw_block] = STATE(207), - [sym_thematic_break] = STATE(207), - [sym_block_quote] = STATE(207), - [sym__block_quote_prefix] = STATE(284), - [sym_link_reference_definition] = STATE(207), - [sym_block_attribute] = STATE(207), - [sym__paragraph] = STATE(207), - [sym__paragraph_content] = STATE(728), - [sym__inline] = STATE(710), - [sym__symbol_fallback] = STATE(355), - [aux_sym_document_repeat1] = STATE(10), - [aux_sym__list_dash_repeat1] = STATE(414), - [aux_sym__list_plus_repeat1] = STATE(425), - [aux_sym__list_star_repeat1] = STATE(424), - [aux_sym__list_task_repeat1] = STATE(397), - [aux_sym__list_definition_repeat1] = STATE(502), - [aux_sym__list_decimal_period_repeat1] = STATE(503), - [aux_sym__list_decimal_paren_repeat1] = STATE(504), - [aux_sym__list_decimal_parens_repeat1] = STATE(505), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(506), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(507), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(508), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(509), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(511), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(512), - [aux_sym__list_lower_roman_period_repeat1] = STATE(513), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(516), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(522), - [aux_sym__list_upper_roman_period_repeat1] = STATE(523), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(525), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(526), - [aux_sym_table_repeat1] = STATE(65), - [aux_sym__block_quote_prefix_repeat1] = STATE(316), - [aux_sym__inline_repeat1] = STATE(355), - [ts_builtin_sym_end] = ACTIONS(187), + [5] = { + [sym__block_with_section] = STATE(132), + [sym__block_element] = STATE(132), + [sym_section] = STATE(132), + [sym_heading] = STATE(4), + [sym_list] = STATE(132), + [sym__list_dash] = STATE(136), + [sym__list_item_dash] = STATE(634), + [sym__list_plus] = STATE(136), + [sym__list_item_plus] = STATE(651), + [sym__list_star] = STATE(136), + [sym__list_item_star] = STATE(697), + [sym__list_task] = STATE(136), + [sym__list_item_task] = STATE(707), + [sym_list_marker_task] = STATE(47), + [sym__list_definition] = STATE(136), + [sym__list_item_definition] = STATE(736), + [sym__list_decimal_period] = STATE(136), + [sym__list_item_decimal_period] = STATE(795), + [sym__list_decimal_paren] = STATE(136), + [sym__list_item_decimal_paren] = STATE(848), + [sym__list_decimal_parens] = STATE(136), + [sym__list_item_decimal_parens] = STATE(772), + [sym__list_lower_alpha_period] = STATE(136), + [sym__list_item_lower_alpha_period] = STATE(787), + [sym__list_lower_alpha_paren] = STATE(136), + [sym__list_item_lower_alpha_paren] = STATE(792), + [sym__list_lower_alpha_parens] = STATE(136), + [sym__list_item_lower_alpha_parens] = STATE(793), + [sym__list_upper_alpha_period] = STATE(136), + [sym__list_item_upper_alpha_period] = STATE(797), + [sym__list_upper_alpha_paren] = STATE(136), + [sym__list_item_upper_alpha_paren] = STATE(798), + [sym__list_upper_alpha_parens] = STATE(136), + [sym__list_item_upper_alpha_parens] = STATE(799), + [sym__list_lower_roman_period] = STATE(136), + [sym__list_item_lower_roman_period] = STATE(801), + [sym__list_lower_roman_paren] = STATE(136), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(136), + [sym__list_item_lower_roman_parens] = STATE(814), + [sym__list_upper_roman_period] = STATE(136), + [sym__list_item_upper_roman_period] = STATE(818), + [sym__list_upper_roman_paren] = STATE(136), + [sym__list_item_upper_roman_paren] = STATE(819), + [sym__list_upper_roman_parens] = STATE(136), + [sym__list_item_upper_roman_parens] = STATE(822), + [sym_table] = STATE(132), + [sym__table_content] = STATE(66), + [sym_table_separator] = STATE(66), + [sym_table_row] = STATE(72), + [sym_footnote] = STATE(132), + [sym_footnote_marker_begin] = STATE(1100), + [sym_div] = STATE(132), + [sym__div_marker_begin] = STATE(1110), + [sym_code_block] = STATE(132), + [sym_raw_block] = STATE(132), + [sym_thematic_break] = STATE(132), + [sym_block_quote] = STATE(132), + [sym__block_quote_prefix] = STATE(293), + [sym_link_reference_definition] = STATE(132), + [sym_block_attribute] = STATE(132), + [sym__paragraph] = STATE(132), + [sym__paragraph_content] = STATE(842), + [sym__paragraph_inline_content] = STATE(930), + [sym__inline] = STATE(695), + [sym__symbol_fallback] = STATE(358), + [aux_sym_document_repeat1] = STATE(6), + [aux_sym__list_dash_repeat1] = STATE(415), + [aux_sym__list_plus_repeat1] = STATE(428), + [aux_sym__list_star_repeat1] = STATE(422), + [aux_sym__list_task_repeat1] = STATE(408), + [aux_sym__list_definition_repeat1] = STATE(526), + [aux_sym__list_decimal_period_repeat1] = STATE(527), + [aux_sym__list_decimal_paren_repeat1] = STATE(528), + [aux_sym__list_decimal_parens_repeat1] = STATE(530), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(532), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(550), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(552), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(554), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(556), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(558), + [aux_sym__list_lower_roman_period_repeat1] = STATE(576), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(594), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(597), + [aux_sym__list_upper_roman_period_repeat1] = STATE(599), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(602), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(605), + [aux_sym_table_repeat1] = STATE(66), + [aux_sym__block_quote_prefix_repeat1] = STATE(320), + [aux_sym__inline_repeat1] = STATE(358), + [ts_builtin_sym_end] = ACTIONS(73), [anon_sym_LBRACK] = ACTIONS(5), [anon_sym_PIPE] = ACTIONS(7), [anon_sym_LBRACK_CARET] = ACTIONS(9), @@ -5304,111 +5302,243 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__thematic_break_dash] = ACTIONS(69), [sym__thematic_break_star] = ACTIONS(69), }, - [8] = { - [sym__block_with_section] = STATE(233), - [sym__block_element] = STATE(233), - [sym_section] = STATE(233), - [sym_heading] = STATE(8), - [sym_list] = STATE(233), - [sym__list_dash] = STATE(186), - [sym__list_item_dash] = STATE(415), - [sym__list_plus] = STATE(186), - [sym__list_item_plus] = STATE(406), - [sym__list_star] = STATE(186), - [sym__list_item_star] = STATE(408), - [sym__list_task] = STATE(186), - [sym__list_item_task] = STATE(391), - [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(186), - [sym__list_item_definition] = STATE(570), - [sym__list_decimal_period] = STATE(186), - [sym__list_item_decimal_period] = STATE(573), - [sym__list_decimal_paren] = STATE(186), - [sym__list_item_decimal_paren] = STATE(575), - [sym__list_decimal_parens] = STATE(186), - [sym__list_item_decimal_parens] = STATE(578), - [sym__list_lower_alpha_period] = STATE(186), - [sym__list_item_lower_alpha_period] = STATE(495), - [sym__list_lower_alpha_paren] = STATE(186), - [sym__list_item_lower_alpha_paren] = STATE(583), - [sym__list_lower_alpha_parens] = STATE(186), - [sym__list_item_lower_alpha_parens] = STATE(494), - [sym__list_upper_alpha_period] = STATE(186), - [sym__list_item_upper_alpha_period] = STATE(584), - [sym__list_upper_alpha_paren] = STATE(186), - [sym__list_item_upper_alpha_paren] = STATE(586), - [sym__list_upper_alpha_parens] = STATE(186), - [sym__list_item_upper_alpha_parens] = STATE(587), - [sym__list_lower_roman_period] = STATE(186), - [sym__list_item_lower_roman_period] = STATE(588), - [sym__list_lower_roman_paren] = STATE(186), - [sym__list_item_lower_roman_paren] = STATE(590), - [sym__list_lower_roman_parens] = STATE(186), - [sym__list_item_lower_roman_parens] = STATE(591), - [sym__list_upper_roman_period] = STATE(186), - [sym__list_item_upper_roman_period] = STATE(592), - [sym__list_upper_roman_paren] = STATE(186), - [sym__list_item_upper_roman_paren] = STATE(596), - [sym__list_upper_roman_parens] = STATE(186), - [sym__list_item_upper_roman_parens] = STATE(597), - [sym_table] = STATE(233), - [sym__table_content] = STATE(64), - [sym_table_separator] = STATE(64), - [sym_table_row] = STATE(72), - [sym_footnote] = STATE(233), - [sym_footnote_marker_begin] = STATE(1084), - [sym_div] = STATE(233), - [sym_div_marker_begin] = STATE(996), - [sym_code_block] = STATE(233), - [sym_raw_block] = STATE(233), - [sym_thematic_break] = STATE(233), - [sym_block_quote] = STATE(233), - [sym__block_quote_prefix] = STATE(287), - [sym_link_reference_definition] = STATE(233), - [sym_block_attribute] = STATE(233), - [sym__paragraph] = STATE(233), - [sym__paragraph_content] = STATE(811), - [sym__inline] = STATE(710), - [sym__symbol_fallback] = STATE(355), - [aux_sym_document_repeat1] = STATE(2), + [6] = { + [sym__block_with_section] = STATE(132), + [sym__block_element] = STATE(132), + [sym_section] = STATE(132), + [sym_heading] = STATE(4), + [sym_list] = STATE(132), + [sym__list_dash] = STATE(136), + [sym__list_item_dash] = STATE(634), + [sym__list_plus] = STATE(136), + [sym__list_item_plus] = STATE(651), + [sym__list_star] = STATE(136), + [sym__list_item_star] = STATE(697), + [sym__list_task] = STATE(136), + [sym__list_item_task] = STATE(707), + [sym_list_marker_task] = STATE(47), + [sym__list_definition] = STATE(136), + [sym__list_item_definition] = STATE(736), + [sym__list_decimal_period] = STATE(136), + [sym__list_item_decimal_period] = STATE(795), + [sym__list_decimal_paren] = STATE(136), + [sym__list_item_decimal_paren] = STATE(848), + [sym__list_decimal_parens] = STATE(136), + [sym__list_item_decimal_parens] = STATE(772), + [sym__list_lower_alpha_period] = STATE(136), + [sym__list_item_lower_alpha_period] = STATE(787), + [sym__list_lower_alpha_paren] = STATE(136), + [sym__list_item_lower_alpha_paren] = STATE(792), + [sym__list_lower_alpha_parens] = STATE(136), + [sym__list_item_lower_alpha_parens] = STATE(793), + [sym__list_upper_alpha_period] = STATE(136), + [sym__list_item_upper_alpha_period] = STATE(797), + [sym__list_upper_alpha_paren] = STATE(136), + [sym__list_item_upper_alpha_paren] = STATE(798), + [sym__list_upper_alpha_parens] = STATE(136), + [sym__list_item_upper_alpha_parens] = STATE(799), + [sym__list_lower_roman_period] = STATE(136), + [sym__list_item_lower_roman_period] = STATE(801), + [sym__list_lower_roman_paren] = STATE(136), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(136), + [sym__list_item_lower_roman_parens] = STATE(814), + [sym__list_upper_roman_period] = STATE(136), + [sym__list_item_upper_roman_period] = STATE(818), + [sym__list_upper_roman_paren] = STATE(136), + [sym__list_item_upper_roman_paren] = STATE(819), + [sym__list_upper_roman_parens] = STATE(136), + [sym__list_item_upper_roman_parens] = STATE(822), + [sym_table] = STATE(132), + [sym__table_content] = STATE(66), + [sym_table_separator] = STATE(66), + [sym_table_row] = STATE(72), + [sym_footnote] = STATE(132), + [sym_footnote_marker_begin] = STATE(1100), + [sym_div] = STATE(132), + [sym__div_marker_begin] = STATE(1110), + [sym_code_block] = STATE(132), + [sym_raw_block] = STATE(132), + [sym_thematic_break] = STATE(132), + [sym_block_quote] = STATE(132), + [sym__block_quote_prefix] = STATE(293), + [sym_link_reference_definition] = STATE(132), + [sym_block_attribute] = STATE(132), + [sym__paragraph] = STATE(132), + [sym__paragraph_content] = STATE(842), + [sym__paragraph_inline_content] = STATE(930), + [sym__inline] = STATE(695), + [sym__symbol_fallback] = STATE(358), + [aux_sym_document_repeat1] = STATE(6), [aux_sym__list_dash_repeat1] = STATE(415), - [aux_sym__list_plus_repeat1] = STATE(406), - [aux_sym__list_star_repeat1] = STATE(408), - [aux_sym__list_task_repeat1] = STATE(391), - [aux_sym__list_definition_repeat1] = STATE(570), - [aux_sym__list_decimal_period_repeat1] = STATE(573), - [aux_sym__list_decimal_paren_repeat1] = STATE(575), - [aux_sym__list_decimal_parens_repeat1] = STATE(578), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(495), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(583), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(494), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(584), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(586), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(587), - [aux_sym__list_lower_roman_period_repeat1] = STATE(588), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(590), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(591), - [aux_sym__list_upper_roman_period_repeat1] = STATE(592), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(596), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(597), + [aux_sym__list_plus_repeat1] = STATE(428), + [aux_sym__list_star_repeat1] = STATE(422), + [aux_sym__list_task_repeat1] = STATE(408), + [aux_sym__list_definition_repeat1] = STATE(526), + [aux_sym__list_decimal_period_repeat1] = STATE(527), + [aux_sym__list_decimal_paren_repeat1] = STATE(528), + [aux_sym__list_decimal_parens_repeat1] = STATE(530), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(532), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(550), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(552), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(554), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(556), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(558), + [aux_sym__list_lower_roman_period_repeat1] = STATE(576), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(594), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(597), + [aux_sym__list_upper_roman_period_repeat1] = STATE(599), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(602), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(605), + [aux_sym_table_repeat1] = STATE(66), + [aux_sym__block_quote_prefix_repeat1] = STATE(320), + [aux_sym__inline_repeat1] = STATE(358), + [ts_builtin_sym_end] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(96), + [anon_sym_LBRACK_CARET] = ACTIONS(99), + [anon_sym_LBRACE] = ACTIONS(102), + [anon_sym_DOT] = ACTIONS(105), + [aux_sym_identifier_token1] = ACTIONS(105), + [aux_sym__inline_token1] = ACTIONS(105), + [anon_sym_LBRACE_DASH] = ACTIONS(105), + [anon_sym_POUND] = ACTIONS(105), + [anon_sym_PERCENT] = ACTIONS(105), + [sym__newline] = ACTIONS(108), + [sym__heading_begin] = ACTIONS(111), + [sym__div_begin] = ACTIONS(114), + [sym__code_block_begin] = ACTIONS(117), + [sym_list_marker_dash] = ACTIONS(120), + [sym_list_marker_star] = ACTIONS(123), + [sym_list_marker_plus] = ACTIONS(126), + [sym__list_marker_task_begin] = ACTIONS(129), + [sym_list_marker_definition] = ACTIONS(132), + [sym_list_marker_decimal_period] = ACTIONS(135), + [sym_list_marker_lower_alpha_period] = ACTIONS(138), + [sym_list_marker_upper_alpha_period] = ACTIONS(141), + [sym_list_marker_lower_roman_period] = ACTIONS(144), + [sym_list_marker_upper_roman_period] = ACTIONS(147), + [sym_list_marker_decimal_paren] = ACTIONS(150), + [sym_list_marker_lower_alpha_paren] = ACTIONS(153), + [sym_list_marker_upper_alpha_paren] = ACTIONS(156), + [sym_list_marker_lower_roman_paren] = ACTIONS(159), + [sym_list_marker_upper_roman_paren] = ACTIONS(162), + [sym_list_marker_decimal_parens] = ACTIONS(165), + [sym_list_marker_lower_alpha_parens] = ACTIONS(168), + [sym_list_marker_upper_alpha_parens] = ACTIONS(171), + [sym_list_marker_lower_roman_parens] = ACTIONS(174), + [sym_list_marker_upper_roman_parens] = ACTIONS(177), + [sym__block_quote_begin] = ACTIONS(180), + [sym__block_quote_continuation] = ACTIONS(183), + [sym__thematic_break_dash] = ACTIONS(186), + [sym__thematic_break_star] = ACTIONS(186), + }, + [7] = { + [sym__block_with_section] = STATE(154), + [sym__block_element] = STATE(154), + [sym_section] = STATE(154), + [sym_heading] = STATE(9), + [sym_list] = STATE(154), + [sym__list_dash] = STATE(162), + [sym__list_item_dash] = STATE(634), + [sym__list_plus] = STATE(162), + [sym__list_item_plus] = STATE(651), + [sym__list_star] = STATE(162), + [sym__list_item_star] = STATE(697), + [sym__list_task] = STATE(162), + [sym__list_item_task] = STATE(707), + [sym_list_marker_task] = STATE(47), + [sym__list_definition] = STATE(162), + [sym__list_item_definition] = STATE(736), + [sym__list_decimal_period] = STATE(162), + [sym__list_item_decimal_period] = STATE(795), + [sym__list_decimal_paren] = STATE(162), + [sym__list_item_decimal_paren] = STATE(848), + [sym__list_decimal_parens] = STATE(162), + [sym__list_item_decimal_parens] = STATE(772), + [sym__list_lower_alpha_period] = STATE(162), + [sym__list_item_lower_alpha_period] = STATE(787), + [sym__list_lower_alpha_paren] = STATE(162), + [sym__list_item_lower_alpha_paren] = STATE(792), + [sym__list_lower_alpha_parens] = STATE(162), + [sym__list_item_lower_alpha_parens] = STATE(793), + [sym__list_upper_alpha_period] = STATE(162), + [sym__list_item_upper_alpha_period] = STATE(797), + [sym__list_upper_alpha_paren] = STATE(162), + [sym__list_item_upper_alpha_paren] = STATE(798), + [sym__list_upper_alpha_parens] = STATE(162), + [sym__list_item_upper_alpha_parens] = STATE(799), + [sym__list_lower_roman_period] = STATE(162), + [sym__list_item_lower_roman_period] = STATE(801), + [sym__list_lower_roman_paren] = STATE(162), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(162), + [sym__list_item_lower_roman_parens] = STATE(814), + [sym__list_upper_roman_period] = STATE(162), + [sym__list_item_upper_roman_period] = STATE(818), + [sym__list_upper_roman_paren] = STATE(162), + [sym__list_item_upper_roman_paren] = STATE(819), + [sym__list_upper_roman_parens] = STATE(162), + [sym__list_item_upper_roman_parens] = STATE(822), + [sym_table] = STATE(154), + [sym__table_content] = STATE(64), + [sym_table_separator] = STATE(64), + [sym_table_row] = STATE(71), + [sym_footnote] = STATE(154), + [sym_footnote_marker_begin] = STATE(1120), + [sym_div] = STATE(154), + [sym__div_marker_begin] = STATE(1032), + [sym_code_block] = STATE(154), + [sym_raw_block] = STATE(154), + [sym_thematic_break] = STATE(154), + [sym_block_quote] = STATE(154), + [sym__block_quote_prefix] = STATE(292), + [sym_link_reference_definition] = STATE(154), + [sym_block_attribute] = STATE(154), + [sym__paragraph] = STATE(154), + [sym__paragraph_content] = STATE(785), + [sym__paragraph_inline_content] = STATE(930), + [sym__inline] = STATE(695), + [sym__symbol_fallback] = STATE(358), + [aux_sym_document_repeat1] = STATE(8), + [aux_sym__list_dash_repeat1] = STATE(431), + [aux_sym__list_plus_repeat1] = STATE(414), + [aux_sym__list_star_repeat1] = STATE(416), + [aux_sym__list_task_repeat1] = STATE(396), + [aux_sym__list_definition_repeat1] = STATE(560), + [aux_sym__list_decimal_period_repeat1] = STATE(561), + [aux_sym__list_decimal_paren_repeat1] = STATE(562), + [aux_sym__list_decimal_parens_repeat1] = STATE(563), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(564), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(621), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(566), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(567), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(568), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(569), + [aux_sym__list_lower_roman_period_repeat1] = STATE(570), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(571), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(572), + [aux_sym__list_upper_roman_period_repeat1] = STATE(573), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(574), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(575), [aux_sym_table_repeat1] = STATE(64), - [aux_sym__block_quote_prefix_repeat1] = STATE(316), - [aux_sym__inline_repeat1] = STATE(355), - [anon_sym_LBRACK] = ACTIONS(71), - [anon_sym_PIPE] = ACTIONS(73), + [aux_sym__block_quote_prefix_repeat1] = STATE(320), + [aux_sym__inline_repeat1] = STATE(358), + [anon_sym_LBRACK] = ACTIONS(75), + [anon_sym_PIPE] = ACTIONS(77), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(79), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__block_close] = ACTIONS(191), - [sym__newline] = ACTIONS(79), + [sym__block_close] = ACTIONS(189), + [sym__newline] = ACTIONS(83), [sym__heading_begin] = ACTIONS(19), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(81), + [sym__code_block_begin] = ACTIONS(85), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -5429,116 +5559,248 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(83), + [sym__block_quote_begin] = ACTIONS(87), [sym__block_quote_continuation] = ACTIONS(67), - [sym__thematic_break_dash] = ACTIONS(85), - [sym__thematic_break_star] = ACTIONS(85), + [sym__thematic_break_dash] = ACTIONS(89), + [sym__thematic_break_star] = ACTIONS(89), + }, + [8] = { + [sym__block_with_section] = STATE(154), + [sym__block_element] = STATE(154), + [sym_section] = STATE(154), + [sym_heading] = STATE(9), + [sym_list] = STATE(154), + [sym__list_dash] = STATE(162), + [sym__list_item_dash] = STATE(634), + [sym__list_plus] = STATE(162), + [sym__list_item_plus] = STATE(651), + [sym__list_star] = STATE(162), + [sym__list_item_star] = STATE(697), + [sym__list_task] = STATE(162), + [sym__list_item_task] = STATE(707), + [sym_list_marker_task] = STATE(47), + [sym__list_definition] = STATE(162), + [sym__list_item_definition] = STATE(736), + [sym__list_decimal_period] = STATE(162), + [sym__list_item_decimal_period] = STATE(795), + [sym__list_decimal_paren] = STATE(162), + [sym__list_item_decimal_paren] = STATE(848), + [sym__list_decimal_parens] = STATE(162), + [sym__list_item_decimal_parens] = STATE(772), + [sym__list_lower_alpha_period] = STATE(162), + [sym__list_item_lower_alpha_period] = STATE(787), + [sym__list_lower_alpha_paren] = STATE(162), + [sym__list_item_lower_alpha_paren] = STATE(792), + [sym__list_lower_alpha_parens] = STATE(162), + [sym__list_item_lower_alpha_parens] = STATE(793), + [sym__list_upper_alpha_period] = STATE(162), + [sym__list_item_upper_alpha_period] = STATE(797), + [sym__list_upper_alpha_paren] = STATE(162), + [sym__list_item_upper_alpha_paren] = STATE(798), + [sym__list_upper_alpha_parens] = STATE(162), + [sym__list_item_upper_alpha_parens] = STATE(799), + [sym__list_lower_roman_period] = STATE(162), + [sym__list_item_lower_roman_period] = STATE(801), + [sym__list_lower_roman_paren] = STATE(162), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(162), + [sym__list_item_lower_roman_parens] = STATE(814), + [sym__list_upper_roman_period] = STATE(162), + [sym__list_item_upper_roman_period] = STATE(818), + [sym__list_upper_roman_paren] = STATE(162), + [sym__list_item_upper_roman_paren] = STATE(819), + [sym__list_upper_roman_parens] = STATE(162), + [sym__list_item_upper_roman_parens] = STATE(822), + [sym_table] = STATE(154), + [sym__table_content] = STATE(64), + [sym_table_separator] = STATE(64), + [sym_table_row] = STATE(71), + [sym_footnote] = STATE(154), + [sym_footnote_marker_begin] = STATE(1120), + [sym_div] = STATE(154), + [sym__div_marker_begin] = STATE(1032), + [sym_code_block] = STATE(154), + [sym_raw_block] = STATE(154), + [sym_thematic_break] = STATE(154), + [sym_block_quote] = STATE(154), + [sym__block_quote_prefix] = STATE(292), + [sym_link_reference_definition] = STATE(154), + [sym_block_attribute] = STATE(154), + [sym__paragraph] = STATE(154), + [sym__paragraph_content] = STATE(785), + [sym__paragraph_inline_content] = STATE(930), + [sym__inline] = STATE(695), + [sym__symbol_fallback] = STATE(358), + [aux_sym_document_repeat1] = STATE(8), + [aux_sym__list_dash_repeat1] = STATE(431), + [aux_sym__list_plus_repeat1] = STATE(414), + [aux_sym__list_star_repeat1] = STATE(416), + [aux_sym__list_task_repeat1] = STATE(396), + [aux_sym__list_definition_repeat1] = STATE(560), + [aux_sym__list_decimal_period_repeat1] = STATE(561), + [aux_sym__list_decimal_paren_repeat1] = STATE(562), + [aux_sym__list_decimal_parens_repeat1] = STATE(563), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(564), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(621), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(566), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(567), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(568), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(569), + [aux_sym__list_lower_roman_period_repeat1] = STATE(570), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(571), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(572), + [aux_sym__list_upper_roman_period_repeat1] = STATE(573), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(574), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(575), + [aux_sym_table_repeat1] = STATE(64), + [aux_sym__block_quote_prefix_repeat1] = STATE(320), + [aux_sym__inline_repeat1] = STATE(358), + [anon_sym_LBRACK] = ACTIONS(191), + [anon_sym_PIPE] = ACTIONS(194), + [anon_sym_LBRACK_CARET] = ACTIONS(99), + [anon_sym_LBRACE] = ACTIONS(197), + [anon_sym_DOT] = ACTIONS(105), + [aux_sym_identifier_token1] = ACTIONS(105), + [aux_sym__inline_token1] = ACTIONS(105), + [anon_sym_LBRACE_DASH] = ACTIONS(105), + [anon_sym_POUND] = ACTIONS(105), + [anon_sym_PERCENT] = ACTIONS(105), + [sym__block_close] = ACTIONS(91), + [sym__newline] = ACTIONS(200), + [sym__heading_begin] = ACTIONS(111), + [sym__div_begin] = ACTIONS(114), + [sym__code_block_begin] = ACTIONS(203), + [sym_list_marker_dash] = ACTIONS(120), + [sym_list_marker_star] = ACTIONS(123), + [sym_list_marker_plus] = ACTIONS(126), + [sym__list_marker_task_begin] = ACTIONS(129), + [sym_list_marker_definition] = ACTIONS(132), + [sym_list_marker_decimal_period] = ACTIONS(135), + [sym_list_marker_lower_alpha_period] = ACTIONS(138), + [sym_list_marker_upper_alpha_period] = ACTIONS(141), + [sym_list_marker_lower_roman_period] = ACTIONS(144), + [sym_list_marker_upper_roman_period] = ACTIONS(147), + [sym_list_marker_decimal_paren] = ACTIONS(150), + [sym_list_marker_lower_alpha_paren] = ACTIONS(153), + [sym_list_marker_upper_alpha_paren] = ACTIONS(156), + [sym_list_marker_lower_roman_paren] = ACTIONS(159), + [sym_list_marker_upper_roman_paren] = ACTIONS(162), + [sym_list_marker_decimal_parens] = ACTIONS(165), + [sym_list_marker_lower_alpha_parens] = ACTIONS(168), + [sym_list_marker_upper_alpha_parens] = ACTIONS(171), + [sym_list_marker_lower_roman_parens] = ACTIONS(174), + [sym_list_marker_upper_roman_parens] = ACTIONS(177), + [sym__block_quote_begin] = ACTIONS(206), + [sym__block_quote_continuation] = ACTIONS(183), + [sym__thematic_break_dash] = ACTIONS(209), + [sym__thematic_break_star] = ACTIONS(209), }, [9] = { - [sym__block_with_section] = STATE(207), - [sym__block_element] = STATE(207), - [sym_section] = STATE(207), - [sym_heading] = STATE(6), - [sym_list] = STATE(207), - [sym__list_dash] = STATE(220), - [sym__list_item_dash] = STATE(414), - [sym__list_plus] = STATE(220), - [sym__list_item_plus] = STATE(425), - [sym__list_star] = STATE(220), - [sym__list_item_star] = STATE(424), - [sym__list_task] = STATE(220), - [sym__list_item_task] = STATE(397), - [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(220), - [sym__list_item_definition] = STATE(502), - [sym__list_decimal_period] = STATE(220), - [sym__list_item_decimal_period] = STATE(503), - [sym__list_decimal_paren] = STATE(220), - [sym__list_item_decimal_paren] = STATE(504), - [sym__list_decimal_parens] = STATE(220), - [sym__list_item_decimal_parens] = STATE(505), - [sym__list_lower_alpha_period] = STATE(220), - [sym__list_item_lower_alpha_period] = STATE(506), - [sym__list_lower_alpha_paren] = STATE(220), - [sym__list_item_lower_alpha_paren] = STATE(507), - [sym__list_lower_alpha_parens] = STATE(220), - [sym__list_item_lower_alpha_parens] = STATE(508), - [sym__list_upper_alpha_period] = STATE(220), - [sym__list_item_upper_alpha_period] = STATE(509), - [sym__list_upper_alpha_paren] = STATE(220), - [sym__list_item_upper_alpha_paren] = STATE(511), - [sym__list_upper_alpha_parens] = STATE(220), - [sym__list_item_upper_alpha_parens] = STATE(512), - [sym__list_lower_roman_period] = STATE(220), - [sym__list_item_lower_roman_period] = STATE(513), - [sym__list_lower_roman_paren] = STATE(220), - [sym__list_item_lower_roman_paren] = STATE(516), - [sym__list_lower_roman_parens] = STATE(220), - [sym__list_item_lower_roman_parens] = STATE(522), - [sym__list_upper_roman_period] = STATE(220), - [sym__list_item_upper_roman_period] = STATE(523), - [sym__list_upper_roman_paren] = STATE(220), - [sym__list_item_upper_roman_paren] = STATE(525), - [sym__list_upper_roman_parens] = STATE(220), - [sym__list_item_upper_roman_parens] = STATE(526), - [sym_table] = STATE(207), - [sym__table_content] = STATE(65), - [sym_table_separator] = STATE(65), - [sym_table_row] = STATE(70), - [sym_footnote] = STATE(207), - [sym_footnote_marker_begin] = STATE(1072), - [sym_div] = STATE(207), - [sym_div_marker_begin] = STATE(1068), - [sym_code_block] = STATE(207), - [sym_raw_block] = STATE(207), - [sym_thematic_break] = STATE(207), - [sym_block_quote] = STATE(207), - [sym__block_quote_prefix] = STATE(284), - [sym_link_reference_definition] = STATE(207), - [sym_block_attribute] = STATE(207), - [sym__paragraph] = STATE(207), - [sym__paragraph_content] = STATE(728), - [sym__inline] = STATE(710), - [sym__symbol_fallback] = STATE(355), + [sym__block_with_section] = STATE(154), + [sym__block_element] = STATE(154), + [sym_section] = STATE(154), + [sym_heading] = STATE(9), + [sym_list] = STATE(154), + [sym__list_dash] = STATE(162), + [sym__list_item_dash] = STATE(634), + [sym__list_plus] = STATE(162), + [sym__list_item_plus] = STATE(651), + [sym__list_star] = STATE(162), + [sym__list_item_star] = STATE(697), + [sym__list_task] = STATE(162), + [sym__list_item_task] = STATE(707), + [sym_list_marker_task] = STATE(47), + [sym__list_definition] = STATE(162), + [sym__list_item_definition] = STATE(736), + [sym__list_decimal_period] = STATE(162), + [sym__list_item_decimal_period] = STATE(795), + [sym__list_decimal_paren] = STATE(162), + [sym__list_item_decimal_paren] = STATE(848), + [sym__list_decimal_parens] = STATE(162), + [sym__list_item_decimal_parens] = STATE(772), + [sym__list_lower_alpha_period] = STATE(162), + [sym__list_item_lower_alpha_period] = STATE(787), + [sym__list_lower_alpha_paren] = STATE(162), + [sym__list_item_lower_alpha_paren] = STATE(792), + [sym__list_lower_alpha_parens] = STATE(162), + [sym__list_item_lower_alpha_parens] = STATE(793), + [sym__list_upper_alpha_period] = STATE(162), + [sym__list_item_upper_alpha_period] = STATE(797), + [sym__list_upper_alpha_paren] = STATE(162), + [sym__list_item_upper_alpha_paren] = STATE(798), + [sym__list_upper_alpha_parens] = STATE(162), + [sym__list_item_upper_alpha_parens] = STATE(799), + [sym__list_lower_roman_period] = STATE(162), + [sym__list_item_lower_roman_period] = STATE(801), + [sym__list_lower_roman_paren] = STATE(162), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(162), + [sym__list_item_lower_roman_parens] = STATE(814), + [sym__list_upper_roman_period] = STATE(162), + [sym__list_item_upper_roman_period] = STATE(818), + [sym__list_upper_roman_paren] = STATE(162), + [sym__list_item_upper_roman_paren] = STATE(819), + [sym__list_upper_roman_parens] = STATE(162), + [sym__list_item_upper_roman_parens] = STATE(822), + [sym_table] = STATE(154), + [sym__table_content] = STATE(64), + [sym_table_separator] = STATE(64), + [sym_table_row] = STATE(71), + [sym_footnote] = STATE(154), + [sym_footnote_marker_begin] = STATE(1120), + [sym_div] = STATE(154), + [sym__div_marker_begin] = STATE(1032), + [sym_code_block] = STATE(154), + [sym_raw_block] = STATE(154), + [sym_thematic_break] = STATE(154), + [sym_block_quote] = STATE(154), + [sym__block_quote_prefix] = STATE(292), + [sym_link_reference_definition] = STATE(154), + [sym_block_attribute] = STATE(154), + [sym__paragraph] = STATE(154), + [sym__paragraph_content] = STATE(785), + [sym__paragraph_inline_content] = STATE(930), + [sym__inline] = STATE(695), + [sym__symbol_fallback] = STATE(358), [aux_sym_document_repeat1] = STATE(10), - [aux_sym__list_dash_repeat1] = STATE(414), - [aux_sym__list_plus_repeat1] = STATE(425), - [aux_sym__list_star_repeat1] = STATE(424), - [aux_sym__list_task_repeat1] = STATE(397), - [aux_sym__list_definition_repeat1] = STATE(502), - [aux_sym__list_decimal_period_repeat1] = STATE(503), - [aux_sym__list_decimal_paren_repeat1] = STATE(504), - [aux_sym__list_decimal_parens_repeat1] = STATE(505), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(506), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(507), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(508), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(509), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(511), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(512), - [aux_sym__list_lower_roman_period_repeat1] = STATE(513), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(516), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(522), - [aux_sym__list_upper_roman_period_repeat1] = STATE(523), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(525), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(526), - [aux_sym_table_repeat1] = STATE(65), - [aux_sym__block_quote_prefix_repeat1] = STATE(316), - [aux_sym__inline_repeat1] = STATE(355), - [ts_builtin_sym_end] = ACTIONS(193), - [anon_sym_LBRACK] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(7), + [aux_sym__list_dash_repeat1] = STATE(431), + [aux_sym__list_plus_repeat1] = STATE(414), + [aux_sym__list_star_repeat1] = STATE(416), + [aux_sym__list_task_repeat1] = STATE(396), + [aux_sym__list_definition_repeat1] = STATE(560), + [aux_sym__list_decimal_period_repeat1] = STATE(561), + [aux_sym__list_decimal_paren_repeat1] = STATE(562), + [aux_sym__list_decimal_parens_repeat1] = STATE(563), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(564), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(621), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(566), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(567), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(568), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(569), + [aux_sym__list_lower_roman_period_repeat1] = STATE(570), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(571), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(572), + [aux_sym__list_upper_roman_period_repeat1] = STATE(573), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(574), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(575), + [aux_sym_table_repeat1] = STATE(64), + [aux_sym__block_quote_prefix_repeat1] = STATE(320), + [aux_sym__inline_repeat1] = STATE(358), + [anon_sym_LBRACK] = ACTIONS(75), + [anon_sym_PIPE] = ACTIONS(77), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(11), + [anon_sym_LBRACE] = ACTIONS(79), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(15), + [sym__block_close] = ACTIONS(212), + [sym__newline] = ACTIONS(83), [sym__heading_begin] = ACTIONS(19), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(23), + [sym__code_block_begin] = ACTIONS(85), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -5559,245 +5821,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(65), + [sym__block_quote_begin] = ACTIONS(87), [sym__block_quote_continuation] = ACTIONS(67), - [sym__thematic_break_dash] = ACTIONS(69), - [sym__thematic_break_star] = ACTIONS(69), + [sym__thematic_break_dash] = ACTIONS(89), + [sym__thematic_break_star] = ACTIONS(89), }, [10] = { - [sym__block_with_section] = STATE(207), - [sym__block_element] = STATE(207), - [sym_section] = STATE(207), - [sym_heading] = STATE(6), - [sym_list] = STATE(207), - [sym__list_dash] = STATE(220), - [sym__list_item_dash] = STATE(414), - [sym__list_plus] = STATE(220), - [sym__list_item_plus] = STATE(425), - [sym__list_star] = STATE(220), - [sym__list_item_star] = STATE(424), - [sym__list_task] = STATE(220), - [sym__list_item_task] = STATE(397), - [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(220), - [sym__list_item_definition] = STATE(502), - [sym__list_decimal_period] = STATE(220), - [sym__list_item_decimal_period] = STATE(503), - [sym__list_decimal_paren] = STATE(220), - [sym__list_item_decimal_paren] = STATE(504), - [sym__list_decimal_parens] = STATE(220), - [sym__list_item_decimal_parens] = STATE(505), - [sym__list_lower_alpha_period] = STATE(220), - [sym__list_item_lower_alpha_period] = STATE(506), - [sym__list_lower_alpha_paren] = STATE(220), - [sym__list_item_lower_alpha_paren] = STATE(507), - [sym__list_lower_alpha_parens] = STATE(220), - [sym__list_item_lower_alpha_parens] = STATE(508), - [sym__list_upper_alpha_period] = STATE(220), - [sym__list_item_upper_alpha_period] = STATE(509), - [sym__list_upper_alpha_paren] = STATE(220), - [sym__list_item_upper_alpha_paren] = STATE(511), - [sym__list_upper_alpha_parens] = STATE(220), - [sym__list_item_upper_alpha_parens] = STATE(512), - [sym__list_lower_roman_period] = STATE(220), - [sym__list_item_lower_roman_period] = STATE(513), - [sym__list_lower_roman_paren] = STATE(220), - [sym__list_item_lower_roman_paren] = STATE(516), - [sym__list_lower_roman_parens] = STATE(220), - [sym__list_item_lower_roman_parens] = STATE(522), - [sym__list_upper_roman_period] = STATE(220), - [sym__list_item_upper_roman_period] = STATE(523), - [sym__list_upper_roman_paren] = STATE(220), - [sym__list_item_upper_roman_paren] = STATE(525), - [sym__list_upper_roman_parens] = STATE(220), - [sym__list_item_upper_roman_parens] = STATE(526), - [sym_table] = STATE(207), - [sym__table_content] = STATE(65), - [sym_table_separator] = STATE(65), - [sym_table_row] = STATE(70), - [sym_footnote] = STATE(207), - [sym_footnote_marker_begin] = STATE(1072), - [sym_div] = STATE(207), - [sym_div_marker_begin] = STATE(1068), - [sym_code_block] = STATE(207), - [sym_raw_block] = STATE(207), - [sym_thematic_break] = STATE(207), - [sym_block_quote] = STATE(207), - [sym__block_quote_prefix] = STATE(284), - [sym_link_reference_definition] = STATE(207), - [sym_block_attribute] = STATE(207), - [sym__paragraph] = STATE(207), - [sym__paragraph_content] = STATE(728), - [sym__inline] = STATE(710), - [sym__symbol_fallback] = STATE(355), - [aux_sym_document_repeat1] = STATE(10), - [aux_sym__list_dash_repeat1] = STATE(414), - [aux_sym__list_plus_repeat1] = STATE(425), - [aux_sym__list_star_repeat1] = STATE(424), - [aux_sym__list_task_repeat1] = STATE(397), - [aux_sym__list_definition_repeat1] = STATE(502), - [aux_sym__list_decimal_period_repeat1] = STATE(503), - [aux_sym__list_decimal_paren_repeat1] = STATE(504), - [aux_sym__list_decimal_parens_repeat1] = STATE(505), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(506), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(507), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(508), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(509), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(511), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(512), - [aux_sym__list_lower_roman_period_repeat1] = STATE(513), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(516), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(522), - [aux_sym__list_upper_roman_period_repeat1] = STATE(523), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(525), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(526), - [aux_sym_table_repeat1] = STATE(65), - [aux_sym__block_quote_prefix_repeat1] = STATE(316), - [aux_sym__inline_repeat1] = STATE(355), - [ts_builtin_sym_end] = ACTIONS(102), - [anon_sym_LBRACK] = ACTIONS(195), - [anon_sym_PIPE] = ACTIONS(198), - [anon_sym_LBRACK_CARET] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(201), - [anon_sym_DOT] = ACTIONS(99), - [aux_sym_identifier_token1] = ACTIONS(99), - [aux_sym__inline_token1] = ACTIONS(99), - [anon_sym_LBRACE_DASH] = ACTIONS(99), - [anon_sym_POUND] = ACTIONS(99), - [anon_sym_PERCENT] = ACTIONS(99), - [sym__newline] = ACTIONS(204), - [sym__heading_begin] = ACTIONS(107), - [sym__div_begin] = ACTIONS(110), - [sym__code_block_begin] = ACTIONS(207), - [sym_list_marker_dash] = ACTIONS(116), - [sym_list_marker_star] = ACTIONS(119), - [sym_list_marker_plus] = ACTIONS(122), - [sym__list_marker_task_begin] = ACTIONS(125), - [sym_list_marker_definition] = ACTIONS(128), - [sym_list_marker_decimal_period] = ACTIONS(131), - [sym_list_marker_lower_alpha_period] = ACTIONS(134), - [sym_list_marker_upper_alpha_period] = ACTIONS(137), - [sym_list_marker_lower_roman_period] = ACTIONS(140), - [sym_list_marker_upper_roman_period] = ACTIONS(143), - [sym_list_marker_decimal_paren] = ACTIONS(146), - [sym_list_marker_lower_alpha_paren] = ACTIONS(149), - [sym_list_marker_upper_alpha_paren] = ACTIONS(152), - [sym_list_marker_lower_roman_paren] = ACTIONS(155), - [sym_list_marker_upper_roman_paren] = ACTIONS(158), - [sym_list_marker_decimal_parens] = ACTIONS(161), - [sym_list_marker_lower_alpha_parens] = ACTIONS(164), - [sym_list_marker_upper_alpha_parens] = ACTIONS(167), - [sym_list_marker_lower_roman_parens] = ACTIONS(170), - [sym_list_marker_upper_roman_parens] = ACTIONS(173), - [sym__block_quote_begin] = ACTIONS(210), - [sym__block_quote_continuation] = ACTIONS(179), - [sym__thematic_break_dash] = ACTIONS(213), - [sym__thematic_break_star] = ACTIONS(213), - }, - [11] = { - [sym__block_with_heading] = STATE(167), - [sym__block_element] = STATE(167), - [sym_heading] = STATE(167), - [sym_list] = STATE(167), - [sym__list_dash] = STATE(153), - [sym__list_item_dash] = STATE(409), - [sym__list_plus] = STATE(153), - [sym__list_item_plus] = STATE(410), - [sym__list_star] = STATE(153), - [sym__list_item_star] = STATE(407), - [sym__list_task] = STATE(153), - [sym__list_item_task] = STATE(396), - [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(153), - [sym__list_item_definition] = STATE(602), - [sym__list_decimal_period] = STATE(153), - [sym__list_item_decimal_period] = STATE(603), - [sym__list_decimal_paren] = STATE(153), - [sym__list_item_decimal_paren] = STATE(604), - [sym__list_decimal_parens] = STATE(153), - [sym__list_item_decimal_parens] = STATE(605), - [sym__list_lower_alpha_period] = STATE(153), - [sym__list_item_lower_alpha_period] = STATE(606), - [sym__list_lower_alpha_paren] = STATE(153), - [sym__list_item_lower_alpha_paren] = STATE(607), - [sym__list_lower_alpha_parens] = STATE(153), - [sym__list_item_lower_alpha_parens] = STATE(608), - [sym__list_upper_alpha_period] = STATE(153), - [sym__list_item_upper_alpha_period] = STATE(609), - [sym__list_upper_alpha_paren] = STATE(153), - [sym__list_item_upper_alpha_paren] = STATE(610), - [sym__list_upper_alpha_parens] = STATE(153), - [sym__list_item_upper_alpha_parens] = STATE(611), - [sym__list_lower_roman_period] = STATE(153), - [sym__list_item_lower_roman_period] = STATE(612), - [sym__list_lower_roman_paren] = STATE(153), - [sym__list_item_lower_roman_paren] = STATE(613), - [sym__list_lower_roman_parens] = STATE(153), - [sym__list_item_lower_roman_parens] = STATE(595), - [sym__list_upper_roman_period] = STATE(153), - [sym__list_item_upper_roman_period] = STATE(581), - [sym__list_upper_roman_paren] = STATE(153), - [sym__list_item_upper_roman_paren] = STATE(559), - [sym__list_upper_roman_parens] = STATE(153), - [sym__list_item_upper_roman_parens] = STATE(558), - [sym_table] = STATE(167), - [sym__table_content] = STATE(66), - [sym_table_separator] = STATE(66), + [sym__block_with_section] = STATE(154), + [sym__block_element] = STATE(154), + [sym_section] = STATE(154), + [sym_heading] = STATE(9), + [sym_list] = STATE(154), + [sym__list_dash] = STATE(162), + [sym__list_item_dash] = STATE(634), + [sym__list_plus] = STATE(162), + [sym__list_item_plus] = STATE(651), + [sym__list_star] = STATE(162), + [sym__list_item_star] = STATE(697), + [sym__list_task] = STATE(162), + [sym__list_item_task] = STATE(707), + [sym_list_marker_task] = STATE(47), + [sym__list_definition] = STATE(162), + [sym__list_item_definition] = STATE(736), + [sym__list_decimal_period] = STATE(162), + [sym__list_item_decimal_period] = STATE(795), + [sym__list_decimal_paren] = STATE(162), + [sym__list_item_decimal_paren] = STATE(848), + [sym__list_decimal_parens] = STATE(162), + [sym__list_item_decimal_parens] = STATE(772), + [sym__list_lower_alpha_period] = STATE(162), + [sym__list_item_lower_alpha_period] = STATE(787), + [sym__list_lower_alpha_paren] = STATE(162), + [sym__list_item_lower_alpha_paren] = STATE(792), + [sym__list_lower_alpha_parens] = STATE(162), + [sym__list_item_lower_alpha_parens] = STATE(793), + [sym__list_upper_alpha_period] = STATE(162), + [sym__list_item_upper_alpha_period] = STATE(797), + [sym__list_upper_alpha_paren] = STATE(162), + [sym__list_item_upper_alpha_paren] = STATE(798), + [sym__list_upper_alpha_parens] = STATE(162), + [sym__list_item_upper_alpha_parens] = STATE(799), + [sym__list_lower_roman_period] = STATE(162), + [sym__list_item_lower_roman_period] = STATE(801), + [sym__list_lower_roman_paren] = STATE(162), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(162), + [sym__list_item_lower_roman_parens] = STATE(814), + [sym__list_upper_roman_period] = STATE(162), + [sym__list_item_upper_roman_period] = STATE(818), + [sym__list_upper_roman_paren] = STATE(162), + [sym__list_item_upper_roman_paren] = STATE(819), + [sym__list_upper_roman_parens] = STATE(162), + [sym__list_item_upper_roman_parens] = STATE(822), + [sym_table] = STATE(154), + [sym__table_content] = STATE(64), + [sym_table_separator] = STATE(64), [sym_table_row] = STATE(71), - [sym_footnote] = STATE(167), - [sym_footnote_marker_begin] = STATE(1086), - [sym_footnote_content] = STATE(910), - [sym_div] = STATE(167), - [sym_div_marker_begin] = STATE(1017), - [sym_code_block] = STATE(167), - [sym_raw_block] = STATE(167), - [sym_thematic_break] = STATE(167), - [sym_block_quote] = STATE(167), - [sym__block_quote_prefix] = STATE(286), - [sym_link_reference_definition] = STATE(167), - [sym_block_attribute] = STATE(167), - [sym__paragraph] = STATE(167), - [sym__paragraph_content] = STATE(867), - [sym__inline] = STATE(710), - [sym__symbol_fallback] = STATE(355), - [aux_sym__list_dash_repeat1] = STATE(409), - [aux_sym__list_plus_repeat1] = STATE(410), - [aux_sym__list_star_repeat1] = STATE(407), + [sym_footnote] = STATE(154), + [sym_footnote_marker_begin] = STATE(1120), + [sym_div] = STATE(154), + [sym__div_marker_begin] = STATE(1032), + [sym_code_block] = STATE(154), + [sym_raw_block] = STATE(154), + [sym_thematic_break] = STATE(154), + [sym_block_quote] = STATE(154), + [sym__block_quote_prefix] = STATE(292), + [sym_link_reference_definition] = STATE(154), + [sym_block_attribute] = STATE(154), + [sym__paragraph] = STATE(154), + [sym__paragraph_content] = STATE(785), + [sym__paragraph_inline_content] = STATE(930), + [sym__inline] = STATE(695), + [sym__symbol_fallback] = STATE(358), + [aux_sym_document_repeat1] = STATE(8), + [aux_sym__list_dash_repeat1] = STATE(431), + [aux_sym__list_plus_repeat1] = STATE(414), + [aux_sym__list_star_repeat1] = STATE(416), [aux_sym__list_task_repeat1] = STATE(396), - [aux_sym__list_definition_repeat1] = STATE(602), - [aux_sym__list_decimal_period_repeat1] = STATE(603), - [aux_sym__list_decimal_paren_repeat1] = STATE(604), - [aux_sym__list_decimal_parens_repeat1] = STATE(605), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(606), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(607), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(608), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(609), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(610), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(611), - [aux_sym__list_lower_roman_period_repeat1] = STATE(612), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(613), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(595), - [aux_sym__list_upper_roman_period_repeat1] = STATE(581), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(559), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(558), - [aux_sym_table_repeat1] = STATE(66), - [aux_sym_footnote_content_repeat1] = STATE(22), - [aux_sym__block_quote_prefix_repeat1] = STATE(316), - [aux_sym__inline_repeat1] = STATE(355), - [anon_sym_LBRACK] = ACTIONS(216), - [anon_sym_PIPE] = ACTIONS(218), + [aux_sym__list_definition_repeat1] = STATE(560), + [aux_sym__list_decimal_period_repeat1] = STATE(561), + [aux_sym__list_decimal_paren_repeat1] = STATE(562), + [aux_sym__list_decimal_parens_repeat1] = STATE(563), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(564), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(621), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(566), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(567), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(568), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(569), + [aux_sym__list_lower_roman_period_repeat1] = STATE(570), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(571), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(572), + [aux_sym__list_upper_roman_period_repeat1] = STATE(573), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(574), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(575), + [aux_sym_table_repeat1] = STATE(64), + [aux_sym__block_quote_prefix_repeat1] = STATE(320), + [aux_sym__inline_repeat1] = STATE(358), + [anon_sym_LBRACK] = ACTIONS(75), + [anon_sym_PIPE] = ACTIONS(77), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(79), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(222), - [sym__heading_begin] = ACTIONS(224), + [sym__block_close] = ACTIONS(214), + [sym__newline] = ACTIONS(83), + [sym__heading_begin] = ACTIONS(19), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(226), + [sym__code_block_begin] = ACTIONS(85), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -5818,115 +5952,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(228), - [sym__block_quote_continuation] = ACTIONS(230), - [sym__thematic_break_dash] = ACTIONS(232), - [sym__thematic_break_star] = ACTIONS(232), + [sym__block_quote_begin] = ACTIONS(87), + [sym__block_quote_continuation] = ACTIONS(67), + [sym__thematic_break_dash] = ACTIONS(89), + [sym__thematic_break_star] = ACTIONS(89), }, - [12] = { - [sym__block_with_heading] = STATE(230), - [sym__block_element] = STATE(230), - [sym_heading] = STATE(230), - [sym_list] = STATE(230), - [sym__list_dash] = STATE(186), - [sym__list_item_dash] = STATE(415), - [sym__list_plus] = STATE(186), - [sym__list_item_plus] = STATE(406), - [sym__list_star] = STATE(186), - [sym__list_item_star] = STATE(408), - [sym__list_task] = STATE(186), - [sym__list_item_task] = STATE(391), - [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(186), - [sym__list_item_definition] = STATE(570), - [sym__list_decimal_period] = STATE(186), - [sym__list_item_decimal_period] = STATE(573), - [sym__list_decimal_paren] = STATE(186), - [sym__list_item_decimal_paren] = STATE(575), - [sym__list_decimal_parens] = STATE(186), - [sym__list_item_decimal_parens] = STATE(578), - [sym__list_lower_alpha_period] = STATE(186), - [sym__list_item_lower_alpha_period] = STATE(495), - [sym__list_lower_alpha_paren] = STATE(186), - [sym__list_item_lower_alpha_paren] = STATE(583), - [sym__list_lower_alpha_parens] = STATE(186), - [sym__list_item_lower_alpha_parens] = STATE(494), - [sym__list_upper_alpha_period] = STATE(186), - [sym__list_item_upper_alpha_period] = STATE(584), - [sym__list_upper_alpha_paren] = STATE(186), - [sym__list_item_upper_alpha_paren] = STATE(586), - [sym__list_upper_alpha_parens] = STATE(186), - [sym__list_item_upper_alpha_parens] = STATE(587), - [sym__list_lower_roman_period] = STATE(186), - [sym__list_item_lower_roman_period] = STATE(588), - [sym__list_lower_roman_paren] = STATE(186), - [sym__list_item_lower_roman_paren] = STATE(590), - [sym__list_lower_roman_parens] = STATE(186), - [sym__list_item_lower_roman_parens] = STATE(591), - [sym__list_upper_roman_period] = STATE(186), - [sym__list_item_upper_roman_period] = STATE(592), - [sym__list_upper_roman_paren] = STATE(186), - [sym__list_item_upper_roman_paren] = STATE(596), - [sym__list_upper_roman_parens] = STATE(186), - [sym__list_item_upper_roman_parens] = STATE(597), - [sym_table] = STATE(230), + [11] = { + [sym__block_with_heading] = STATE(266), + [sym__block_element] = STATE(266), + [sym_heading] = STATE(266), + [sym_list] = STATE(266), + [sym__list_dash] = STATE(162), + [sym__list_item_dash] = STATE(634), + [sym__list_plus] = STATE(162), + [sym__list_item_plus] = STATE(651), + [sym__list_star] = STATE(162), + [sym__list_item_star] = STATE(697), + [sym__list_task] = STATE(162), + [sym__list_item_task] = STATE(707), + [sym_list_marker_task] = STATE(47), + [sym__list_definition] = STATE(162), + [sym__list_item_definition] = STATE(736), + [sym__list_decimal_period] = STATE(162), + [sym__list_item_decimal_period] = STATE(795), + [sym__list_decimal_paren] = STATE(162), + [sym__list_item_decimal_paren] = STATE(848), + [sym__list_decimal_parens] = STATE(162), + [sym__list_item_decimal_parens] = STATE(772), + [sym__list_lower_alpha_period] = STATE(162), + [sym__list_item_lower_alpha_period] = STATE(787), + [sym__list_lower_alpha_paren] = STATE(162), + [sym__list_item_lower_alpha_paren] = STATE(792), + [sym__list_lower_alpha_parens] = STATE(162), + [sym__list_item_lower_alpha_parens] = STATE(793), + [sym__list_upper_alpha_period] = STATE(162), + [sym__list_item_upper_alpha_period] = STATE(797), + [sym__list_upper_alpha_paren] = STATE(162), + [sym__list_item_upper_alpha_paren] = STATE(798), + [sym__list_upper_alpha_parens] = STATE(162), + [sym__list_item_upper_alpha_parens] = STATE(799), + [sym__list_lower_roman_period] = STATE(162), + [sym__list_item_lower_roman_period] = STATE(801), + [sym__list_lower_roman_paren] = STATE(162), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(162), + [sym__list_item_lower_roman_parens] = STATE(814), + [sym__list_upper_roman_period] = STATE(162), + [sym__list_item_upper_roman_period] = STATE(818), + [sym__list_upper_roman_paren] = STATE(162), + [sym__list_item_upper_roman_paren] = STATE(819), + [sym__list_upper_roman_parens] = STATE(162), + [sym__list_item_upper_roman_parens] = STATE(822), + [sym_table] = STATE(266), [sym__table_content] = STATE(64), [sym_table_separator] = STATE(64), - [sym_table_row] = STATE(72), - [sym_footnote] = STATE(230), - [sym_footnote_marker_begin] = STATE(1084), - [sym_div] = STATE(230), - [sym_div_marker_begin] = STATE(996), - [sym_code_block] = STATE(230), - [sym_raw_block] = STATE(230), - [sym_thematic_break] = STATE(230), - [sym_block_quote] = STATE(230), - [sym__block_quote_prefix] = STATE(274), - [sym_link_reference_definition] = STATE(230), - [sym_block_attribute] = STATE(230), - [sym__paragraph] = STATE(230), - [sym__paragraph_content] = STATE(811), - [sym__inline] = STATE(710), - [sym__symbol_fallback] = STATE(355), - [aux_sym__list_dash_repeat1] = STATE(415), - [aux_sym__list_plus_repeat1] = STATE(406), - [aux_sym__list_star_repeat1] = STATE(408), - [aux_sym__list_task_repeat1] = STATE(391), - [aux_sym__list_definition_repeat1] = STATE(570), - [aux_sym__list_decimal_period_repeat1] = STATE(573), - [aux_sym__list_decimal_paren_repeat1] = STATE(575), - [aux_sym__list_decimal_parens_repeat1] = STATE(578), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(495), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(583), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(494), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(584), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(586), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(587), - [aux_sym__list_lower_roman_period_repeat1] = STATE(588), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(590), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(591), - [aux_sym__list_upper_roman_period_repeat1] = STATE(592), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(596), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(597), + [sym_table_row] = STATE(71), + [sym_footnote] = STATE(266), + [sym_footnote_marker_begin] = STATE(1120), + [sym_div] = STATE(266), + [sym__div_marker_begin] = STATE(1032), + [sym_code_block] = STATE(266), + [sym_raw_block] = STATE(266), + [sym_thematic_break] = STATE(266), + [sym_block_quote] = STATE(266), + [sym__block_quote_prefix] = STATE(282), + [sym_link_reference_definition] = STATE(266), + [sym_block_attribute] = STATE(266), + [sym__paragraph] = STATE(266), + [sym__paragraph_content] = STATE(785), + [sym__paragraph_inline_content] = STATE(930), + [sym__inline] = STATE(695), + [sym__symbol_fallback] = STATE(358), + [aux_sym__list_dash_repeat1] = STATE(431), + [aux_sym__list_plus_repeat1] = STATE(414), + [aux_sym__list_star_repeat1] = STATE(416), + [aux_sym__list_task_repeat1] = STATE(396), + [aux_sym__list_definition_repeat1] = STATE(560), + [aux_sym__list_decimal_period_repeat1] = STATE(561), + [aux_sym__list_decimal_paren_repeat1] = STATE(562), + [aux_sym__list_decimal_parens_repeat1] = STATE(563), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(564), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(621), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(566), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(567), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(568), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(569), + [aux_sym__list_lower_roman_period_repeat1] = STATE(570), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(571), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(572), + [aux_sym__list_upper_roman_period_repeat1] = STATE(573), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(574), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(575), [aux_sym_table_repeat1] = STATE(64), - [aux_sym_footnote_content_repeat1] = STATE(27), - [aux_sym__block_quote_prefix_repeat1] = STATE(302), - [aux_sym__inline_repeat1] = STATE(355), - [anon_sym_LBRACK] = ACTIONS(71), - [anon_sym_PIPE] = ACTIONS(73), + [aux_sym_footnote_content_repeat1] = STATE(13), + [aux_sym__block_quote_prefix_repeat1] = STATE(313), + [aux_sym__inline_repeat1] = STATE(358), + [anon_sym_LBRACK] = ACTIONS(75), + [anon_sym_PIPE] = ACTIONS(77), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(79), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__block_close] = ACTIONS(234), - [sym__newline] = ACTIONS(236), + [sym__block_close] = ACTIONS(216), + [sym__newline] = ACTIONS(218), [sym__heading_begin] = ACTIONS(19), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(81), + [sym__code_block_begin] = ACTIONS(85), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -5947,115 +6082,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(83), - [sym__block_quote_continuation] = ACTIONS(238), - [sym__thematic_break_dash] = ACTIONS(85), - [sym__thematic_break_star] = ACTIONS(85), + [sym__block_quote_begin] = ACTIONS(87), + [sym__block_quote_continuation] = ACTIONS(220), + [sym__thematic_break_dash] = ACTIONS(89), + [sym__thematic_break_star] = ACTIONS(89), }, - [13] = { - [sym__block_with_heading] = STATE(167), - [sym__block_element] = STATE(167), - [sym_heading] = STATE(167), - [sym_list] = STATE(167), - [sym__list_dash] = STATE(153), - [sym__list_item_dash] = STATE(409), - [sym__list_plus] = STATE(153), - [sym__list_item_plus] = STATE(410), - [sym__list_star] = STATE(153), - [sym__list_item_star] = STATE(407), - [sym__list_task] = STATE(153), - [sym__list_item_task] = STATE(396), - [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(153), - [sym__list_item_definition] = STATE(602), - [sym__list_decimal_period] = STATE(153), - [sym__list_item_decimal_period] = STATE(603), - [sym__list_decimal_paren] = STATE(153), - [sym__list_item_decimal_paren] = STATE(604), - [sym__list_decimal_parens] = STATE(153), - [sym__list_item_decimal_parens] = STATE(605), - [sym__list_lower_alpha_period] = STATE(153), - [sym__list_item_lower_alpha_period] = STATE(606), - [sym__list_lower_alpha_paren] = STATE(153), - [sym__list_item_lower_alpha_paren] = STATE(607), - [sym__list_lower_alpha_parens] = STATE(153), - [sym__list_item_lower_alpha_parens] = STATE(608), - [sym__list_upper_alpha_period] = STATE(153), - [sym__list_item_upper_alpha_period] = STATE(609), - [sym__list_upper_alpha_paren] = STATE(153), - [sym__list_item_upper_alpha_paren] = STATE(610), - [sym__list_upper_alpha_parens] = STATE(153), - [sym__list_item_upper_alpha_parens] = STATE(611), - [sym__list_lower_roman_period] = STATE(153), - [sym__list_item_lower_roman_period] = STATE(612), - [sym__list_lower_roman_paren] = STATE(153), - [sym__list_item_lower_roman_paren] = STATE(613), - [sym__list_lower_roman_parens] = STATE(153), - [sym__list_item_lower_roman_parens] = STATE(595), - [sym__list_upper_roman_period] = STATE(153), - [sym__list_item_upper_roman_period] = STATE(581), - [sym__list_upper_roman_paren] = STATE(153), - [sym__list_item_upper_roman_paren] = STATE(559), - [sym__list_upper_roman_parens] = STATE(153), - [sym__list_item_upper_roman_parens] = STATE(558), - [sym_table] = STATE(167), - [sym__table_content] = STATE(66), - [sym_table_separator] = STATE(66), - [sym_table_row] = STATE(71), - [sym_footnote] = STATE(167), - [sym_footnote_marker_begin] = STATE(1086), - [sym_footnote_content] = STATE(1032), - [sym_div] = STATE(167), - [sym_div_marker_begin] = STATE(1017), - [sym_code_block] = STATE(167), - [sym_raw_block] = STATE(167), - [sym_thematic_break] = STATE(167), - [sym_block_quote] = STATE(167), - [sym__block_quote_prefix] = STATE(286), - [sym_link_reference_definition] = STATE(167), - [sym_block_attribute] = STATE(167), - [sym__paragraph] = STATE(167), - [sym__paragraph_content] = STATE(867), - [sym__inline] = STATE(710), - [sym__symbol_fallback] = STATE(355), - [aux_sym__list_dash_repeat1] = STATE(409), - [aux_sym__list_plus_repeat1] = STATE(410), - [aux_sym__list_star_repeat1] = STATE(407), - [aux_sym__list_task_repeat1] = STATE(396), - [aux_sym__list_definition_repeat1] = STATE(602), - [aux_sym__list_decimal_period_repeat1] = STATE(603), - [aux_sym__list_decimal_paren_repeat1] = STATE(604), - [aux_sym__list_decimal_parens_repeat1] = STATE(605), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(606), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(607), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(608), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(609), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(610), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(611), - [aux_sym__list_lower_roman_period_repeat1] = STATE(612), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(613), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(595), - [aux_sym__list_upper_roman_period_repeat1] = STATE(581), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(559), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(558), - [aux_sym_table_repeat1] = STATE(66), - [aux_sym_footnote_content_repeat1] = STATE(22), - [aux_sym__block_quote_prefix_repeat1] = STATE(316), - [aux_sym__inline_repeat1] = STATE(355), - [anon_sym_LBRACK] = ACTIONS(216), - [anon_sym_PIPE] = ACTIONS(218), + [12] = { + [sym__block_with_heading] = STATE(159), + [sym__block_element] = STATE(159), + [sym_heading] = STATE(159), + [sym_list] = STATE(159), + [sym__list_dash] = STATE(223), + [sym__list_item_dash] = STATE(634), + [sym__list_plus] = STATE(223), + [sym__list_item_plus] = STATE(651), + [sym__list_star] = STATE(223), + [sym__list_item_star] = STATE(697), + [sym__list_task] = STATE(223), + [sym__list_item_task] = STATE(707), + [sym_list_marker_task] = STATE(47), + [sym__list_definition] = STATE(223), + [sym__list_item_definition] = STATE(736), + [sym__list_decimal_period] = STATE(223), + [sym__list_item_decimal_period] = STATE(795), + [sym__list_decimal_paren] = STATE(223), + [sym__list_item_decimal_paren] = STATE(848), + [sym__list_decimal_parens] = STATE(223), + [sym__list_item_decimal_parens] = STATE(772), + [sym__list_lower_alpha_period] = STATE(223), + [sym__list_item_lower_alpha_period] = STATE(787), + [sym__list_lower_alpha_paren] = STATE(223), + [sym__list_item_lower_alpha_paren] = STATE(792), + [sym__list_lower_alpha_parens] = STATE(223), + [sym__list_item_lower_alpha_parens] = STATE(793), + [sym__list_upper_alpha_period] = STATE(223), + [sym__list_item_upper_alpha_period] = STATE(797), + [sym__list_upper_alpha_paren] = STATE(223), + [sym__list_item_upper_alpha_paren] = STATE(798), + [sym__list_upper_alpha_parens] = STATE(223), + [sym__list_item_upper_alpha_parens] = STATE(799), + [sym__list_lower_roman_period] = STATE(223), + [sym__list_item_lower_roman_period] = STATE(801), + [sym__list_lower_roman_paren] = STATE(223), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(223), + [sym__list_item_lower_roman_parens] = STATE(814), + [sym__list_upper_roman_period] = STATE(223), + [sym__list_item_upper_roman_period] = STATE(818), + [sym__list_upper_roman_paren] = STATE(223), + [sym__list_item_upper_roman_paren] = STATE(819), + [sym__list_upper_roman_parens] = STATE(223), + [sym__list_item_upper_roman_parens] = STATE(822), + [sym_table] = STATE(159), + [sym__table_content] = STATE(65), + [sym_table_separator] = STATE(65), + [sym_table_row] = STATE(70), + [sym_footnote] = STATE(159), + [sym_footnote_marker_begin] = STATE(1122), + [sym_footnote_content] = STATE(945), + [sym_div] = STATE(159), + [sym__div_marker_begin] = STATE(1053), + [sym_code_block] = STATE(159), + [sym_raw_block] = STATE(159), + [sym_thematic_break] = STATE(159), + [sym_block_quote] = STATE(159), + [sym__block_quote_prefix] = STATE(291), + [sym_link_reference_definition] = STATE(159), + [sym_block_attribute] = STATE(159), + [sym__paragraph] = STATE(159), + [sym__paragraph_content] = STATE(812), + [sym__paragraph_inline_content] = STATE(930), + [sym__inline] = STATE(695), + [sym__symbol_fallback] = STATE(358), + [aux_sym__list_dash_repeat1] = STATE(424), + [aux_sym__list_plus_repeat1] = STATE(425), + [aux_sym__list_star_repeat1] = STATE(427), + [aux_sym__list_task_repeat1] = STATE(409), + [aux_sym__list_definition_repeat1] = STATE(577), + [aux_sym__list_decimal_period_repeat1] = STATE(578), + [aux_sym__list_decimal_paren_repeat1] = STATE(579), + [aux_sym__list_decimal_parens_repeat1] = STATE(580), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(581), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(582), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(583), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(584), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(585), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(586), + [aux_sym__list_lower_roman_period_repeat1] = STATE(587), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(588), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(589), + [aux_sym__list_upper_roman_period_repeat1] = STATE(590), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(591), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(592), + [aux_sym_table_repeat1] = STATE(65), + [aux_sym_footnote_content_repeat1] = STATE(16), + [aux_sym__block_quote_prefix_repeat1] = STATE(320), + [aux_sym__inline_repeat1] = STATE(358), + [anon_sym_LBRACK] = ACTIONS(222), + [anon_sym_PIPE] = ACTIONS(224), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(226), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(222), - [sym__heading_begin] = ACTIONS(224), + [sym__newline] = ACTIONS(228), + [sym__heading_begin] = ACTIONS(230), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(226), + [sym__code_block_begin] = ACTIONS(232), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -6076,104 +6212,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(228), - [sym__block_quote_continuation] = ACTIONS(230), - [sym__thematic_break_dash] = ACTIONS(232), - [sym__thematic_break_star] = ACTIONS(232), + [sym__block_quote_begin] = ACTIONS(234), + [sym__block_quote_continuation] = ACTIONS(236), + [sym__thematic_break_dash] = ACTIONS(238), + [sym__thematic_break_star] = ACTIONS(238), }, - [14] = { - [sym__block_with_heading] = STATE(230), - [sym__block_element] = STATE(230), - [sym_heading] = STATE(230), - [sym_list] = STATE(230), - [sym__list_dash] = STATE(186), - [sym__list_item_dash] = STATE(415), - [sym__list_plus] = STATE(186), - [sym__list_item_plus] = STATE(406), - [sym__list_star] = STATE(186), - [sym__list_item_star] = STATE(408), - [sym__list_task] = STATE(186), - [sym__list_item_task] = STATE(391), - [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(186), - [sym__list_item_definition] = STATE(570), - [sym__list_decimal_period] = STATE(186), - [sym__list_item_decimal_period] = STATE(573), - [sym__list_decimal_paren] = STATE(186), - [sym__list_item_decimal_paren] = STATE(575), - [sym__list_decimal_parens] = STATE(186), - [sym__list_item_decimal_parens] = STATE(578), - [sym__list_lower_alpha_period] = STATE(186), - [sym__list_item_lower_alpha_period] = STATE(495), - [sym__list_lower_alpha_paren] = STATE(186), - [sym__list_item_lower_alpha_paren] = STATE(583), - [sym__list_lower_alpha_parens] = STATE(186), - [sym__list_item_lower_alpha_parens] = STATE(494), - [sym__list_upper_alpha_period] = STATE(186), - [sym__list_item_upper_alpha_period] = STATE(584), - [sym__list_upper_alpha_paren] = STATE(186), - [sym__list_item_upper_alpha_paren] = STATE(586), - [sym__list_upper_alpha_parens] = STATE(186), - [sym__list_item_upper_alpha_parens] = STATE(587), - [sym__list_lower_roman_period] = STATE(186), - [sym__list_item_lower_roman_period] = STATE(588), - [sym__list_lower_roman_paren] = STATE(186), - [sym__list_item_lower_roman_paren] = STATE(590), - [sym__list_lower_roman_parens] = STATE(186), - [sym__list_item_lower_roman_parens] = STATE(591), - [sym__list_upper_roman_period] = STATE(186), - [sym__list_item_upper_roman_period] = STATE(592), - [sym__list_upper_roman_paren] = STATE(186), - [sym__list_item_upper_roman_paren] = STATE(596), - [sym__list_upper_roman_parens] = STATE(186), - [sym__list_item_upper_roman_parens] = STATE(597), - [sym_table] = STATE(230), + [13] = { + [sym__block_with_heading] = STATE(266), + [sym__block_element] = STATE(266), + [sym_heading] = STATE(266), + [sym_list] = STATE(266), + [sym__list_dash] = STATE(162), + [sym__list_item_dash] = STATE(634), + [sym__list_plus] = STATE(162), + [sym__list_item_plus] = STATE(651), + [sym__list_star] = STATE(162), + [sym__list_item_star] = STATE(697), + [sym__list_task] = STATE(162), + [sym__list_item_task] = STATE(707), + [sym_list_marker_task] = STATE(47), + [sym__list_definition] = STATE(162), + [sym__list_item_definition] = STATE(736), + [sym__list_decimal_period] = STATE(162), + [sym__list_item_decimal_period] = STATE(795), + [sym__list_decimal_paren] = STATE(162), + [sym__list_item_decimal_paren] = STATE(848), + [sym__list_decimal_parens] = STATE(162), + [sym__list_item_decimal_parens] = STATE(772), + [sym__list_lower_alpha_period] = STATE(162), + [sym__list_item_lower_alpha_period] = STATE(787), + [sym__list_lower_alpha_paren] = STATE(162), + [sym__list_item_lower_alpha_paren] = STATE(792), + [sym__list_lower_alpha_parens] = STATE(162), + [sym__list_item_lower_alpha_parens] = STATE(793), + [sym__list_upper_alpha_period] = STATE(162), + [sym__list_item_upper_alpha_period] = STATE(797), + [sym__list_upper_alpha_paren] = STATE(162), + [sym__list_item_upper_alpha_paren] = STATE(798), + [sym__list_upper_alpha_parens] = STATE(162), + [sym__list_item_upper_alpha_parens] = STATE(799), + [sym__list_lower_roman_period] = STATE(162), + [sym__list_item_lower_roman_period] = STATE(801), + [sym__list_lower_roman_paren] = STATE(162), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(162), + [sym__list_item_lower_roman_parens] = STATE(814), + [sym__list_upper_roman_period] = STATE(162), + [sym__list_item_upper_roman_period] = STATE(818), + [sym__list_upper_roman_paren] = STATE(162), + [sym__list_item_upper_roman_paren] = STATE(819), + [sym__list_upper_roman_parens] = STATE(162), + [sym__list_item_upper_roman_parens] = STATE(822), + [sym_table] = STATE(266), [sym__table_content] = STATE(64), [sym_table_separator] = STATE(64), - [sym_table_row] = STATE(72), - [sym_footnote] = STATE(230), - [sym_footnote_marker_begin] = STATE(1084), - [sym_div] = STATE(230), - [sym_div_marker_begin] = STATE(996), - [sym_code_block] = STATE(230), - [sym_raw_block] = STATE(230), - [sym_thematic_break] = STATE(230), - [sym_block_quote] = STATE(230), - [sym__block_quote_prefix] = STATE(281), - [sym_link_reference_definition] = STATE(230), - [sym_block_attribute] = STATE(230), - [sym__paragraph] = STATE(230), - [sym__paragraph_content] = STATE(811), - [sym__inline] = STATE(710), - [sym__symbol_fallback] = STATE(355), - [aux_sym__list_dash_repeat1] = STATE(415), - [aux_sym__list_plus_repeat1] = STATE(406), - [aux_sym__list_star_repeat1] = STATE(408), - [aux_sym__list_task_repeat1] = STATE(391), - [aux_sym__list_definition_repeat1] = STATE(570), - [aux_sym__list_decimal_period_repeat1] = STATE(573), - [aux_sym__list_decimal_paren_repeat1] = STATE(575), - [aux_sym__list_decimal_parens_repeat1] = STATE(578), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(495), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(583), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(494), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(584), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(586), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(587), - [aux_sym__list_lower_roman_period_repeat1] = STATE(588), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(590), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(591), - [aux_sym__list_upper_roman_period_repeat1] = STATE(592), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(596), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(597), + [sym_table_row] = STATE(71), + [sym_footnote] = STATE(266), + [sym_footnote_marker_begin] = STATE(1120), + [sym_div] = STATE(266), + [sym__div_marker_begin] = STATE(1032), + [sym_code_block] = STATE(266), + [sym_raw_block] = STATE(266), + [sym_thematic_break] = STATE(266), + [sym_block_quote] = STATE(266), + [sym__block_quote_prefix] = STATE(287), + [sym_link_reference_definition] = STATE(266), + [sym_block_attribute] = STATE(266), + [sym__paragraph] = STATE(266), + [sym__paragraph_content] = STATE(785), + [sym__paragraph_inline_content] = STATE(930), + [sym__inline] = STATE(695), + [sym__symbol_fallback] = STATE(358), + [aux_sym__list_dash_repeat1] = STATE(431), + [aux_sym__list_plus_repeat1] = STATE(414), + [aux_sym__list_star_repeat1] = STATE(416), + [aux_sym__list_task_repeat1] = STATE(396), + [aux_sym__list_definition_repeat1] = STATE(560), + [aux_sym__list_decimal_period_repeat1] = STATE(561), + [aux_sym__list_decimal_paren_repeat1] = STATE(562), + [aux_sym__list_decimal_parens_repeat1] = STATE(563), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(564), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(621), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(566), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(567), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(568), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(569), + [aux_sym__list_lower_roman_period_repeat1] = STATE(570), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(571), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(572), + [aux_sym__list_upper_roman_period_repeat1] = STATE(573), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(574), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(575), [aux_sym_table_repeat1] = STATE(64), - [aux_sym_footnote_content_repeat1] = STATE(17), - [aux_sym__block_quote_prefix_repeat1] = STATE(302), - [aux_sym__inline_repeat1] = STATE(355), - [anon_sym_LBRACK] = ACTIONS(71), - [anon_sym_PIPE] = ACTIONS(73), + [aux_sym_footnote_content_repeat1] = STATE(15), + [aux_sym__block_quote_prefix_repeat1] = STATE(313), + [aux_sym__inline_repeat1] = STATE(358), + [anon_sym_LBRACK] = ACTIONS(75), + [anon_sym_PIPE] = ACTIONS(77), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(79), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), @@ -6181,10 +6318,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), [sym__block_close] = ACTIONS(240), - [sym__newline] = ACTIONS(236), + [sym__newline] = ACTIONS(218), [sym__heading_begin] = ACTIONS(19), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(81), + [sym__code_block_begin] = ACTIONS(85), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -6205,115 +6342,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(83), - [sym__block_quote_continuation] = ACTIONS(238), - [sym__thematic_break_dash] = ACTIONS(85), - [sym__thematic_break_star] = ACTIONS(85), + [sym__block_quote_begin] = ACTIONS(87), + [sym__block_quote_continuation] = ACTIONS(220), + [sym__thematic_break_dash] = ACTIONS(89), + [sym__thematic_break_star] = ACTIONS(89), }, - [15] = { - [sym__block_with_heading] = STATE(230), - [sym__block_element] = STATE(230), - [sym_heading] = STATE(230), - [sym_list] = STATE(230), - [sym__list_dash] = STATE(186), - [sym__list_item_dash] = STATE(415), - [sym__list_plus] = STATE(186), - [sym__list_item_plus] = STATE(406), - [sym__list_star] = STATE(186), - [sym__list_item_star] = STATE(408), - [sym__list_task] = STATE(186), - [sym__list_item_task] = STATE(391), - [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(186), - [sym__list_item_definition] = STATE(570), - [sym__list_decimal_period] = STATE(186), - [sym__list_item_decimal_period] = STATE(573), - [sym__list_decimal_paren] = STATE(186), - [sym__list_item_decimal_paren] = STATE(575), - [sym__list_decimal_parens] = STATE(186), - [sym__list_item_decimal_parens] = STATE(578), - [sym__list_lower_alpha_period] = STATE(186), - [sym__list_item_lower_alpha_period] = STATE(495), - [sym__list_lower_alpha_paren] = STATE(186), - [sym__list_item_lower_alpha_paren] = STATE(583), - [sym__list_lower_alpha_parens] = STATE(186), - [sym__list_item_lower_alpha_parens] = STATE(494), - [sym__list_upper_alpha_period] = STATE(186), - [sym__list_item_upper_alpha_period] = STATE(584), - [sym__list_upper_alpha_paren] = STATE(186), - [sym__list_item_upper_alpha_paren] = STATE(586), - [sym__list_upper_alpha_parens] = STATE(186), - [sym__list_item_upper_alpha_parens] = STATE(587), - [sym__list_lower_roman_period] = STATE(186), - [sym__list_item_lower_roman_period] = STATE(588), - [sym__list_lower_roman_paren] = STATE(186), - [sym__list_item_lower_roman_paren] = STATE(590), - [sym__list_lower_roman_parens] = STATE(186), - [sym__list_item_lower_roman_parens] = STATE(591), - [sym__list_upper_roman_period] = STATE(186), - [sym__list_item_upper_roman_period] = STATE(592), - [sym__list_upper_roman_paren] = STATE(186), - [sym__list_item_upper_roman_paren] = STATE(596), - [sym__list_upper_roman_parens] = STATE(186), - [sym__list_item_upper_roman_parens] = STATE(597), - [sym_table] = STATE(230), - [sym__table_content] = STATE(64), - [sym_table_separator] = STATE(64), - [sym_table_row] = STATE(72), - [sym_footnote] = STATE(230), - [sym_footnote_marker_begin] = STATE(1084), - [sym_div] = STATE(230), - [sym_div_marker_begin] = STATE(996), - [sym_code_block] = STATE(230), - [sym_raw_block] = STATE(230), - [sym_thematic_break] = STATE(230), - [sym_block_quote] = STATE(230), - [sym__block_quote_prefix] = STATE(280), - [sym_link_reference_definition] = STATE(230), - [sym_block_attribute] = STATE(230), - [sym__paragraph] = STATE(230), - [sym__paragraph_content] = STATE(811), - [sym__inline] = STATE(710), - [sym__symbol_fallback] = STATE(355), - [aux_sym__list_dash_repeat1] = STATE(415), - [aux_sym__list_plus_repeat1] = STATE(406), - [aux_sym__list_star_repeat1] = STATE(408), - [aux_sym__list_task_repeat1] = STATE(391), - [aux_sym__list_definition_repeat1] = STATE(570), - [aux_sym__list_decimal_period_repeat1] = STATE(573), - [aux_sym__list_decimal_paren_repeat1] = STATE(575), - [aux_sym__list_decimal_parens_repeat1] = STATE(578), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(495), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(583), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(494), + [14] = { + [sym__block_with_heading] = STATE(159), + [sym__block_element] = STATE(159), + [sym_heading] = STATE(159), + [sym_list] = STATE(159), + [sym__list_dash] = STATE(223), + [sym__list_item_dash] = STATE(634), + [sym__list_plus] = STATE(223), + [sym__list_item_plus] = STATE(651), + [sym__list_star] = STATE(223), + [sym__list_item_star] = STATE(697), + [sym__list_task] = STATE(223), + [sym__list_item_task] = STATE(707), + [sym_list_marker_task] = STATE(47), + [sym__list_definition] = STATE(223), + [sym__list_item_definition] = STATE(736), + [sym__list_decimal_period] = STATE(223), + [sym__list_item_decimal_period] = STATE(795), + [sym__list_decimal_paren] = STATE(223), + [sym__list_item_decimal_paren] = STATE(848), + [sym__list_decimal_parens] = STATE(223), + [sym__list_item_decimal_parens] = STATE(772), + [sym__list_lower_alpha_period] = STATE(223), + [sym__list_item_lower_alpha_period] = STATE(787), + [sym__list_lower_alpha_paren] = STATE(223), + [sym__list_item_lower_alpha_paren] = STATE(792), + [sym__list_lower_alpha_parens] = STATE(223), + [sym__list_item_lower_alpha_parens] = STATE(793), + [sym__list_upper_alpha_period] = STATE(223), + [sym__list_item_upper_alpha_period] = STATE(797), + [sym__list_upper_alpha_paren] = STATE(223), + [sym__list_item_upper_alpha_paren] = STATE(798), + [sym__list_upper_alpha_parens] = STATE(223), + [sym__list_item_upper_alpha_parens] = STATE(799), + [sym__list_lower_roman_period] = STATE(223), + [sym__list_item_lower_roman_period] = STATE(801), + [sym__list_lower_roman_paren] = STATE(223), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(223), + [sym__list_item_lower_roman_parens] = STATE(814), + [sym__list_upper_roman_period] = STATE(223), + [sym__list_item_upper_roman_period] = STATE(818), + [sym__list_upper_roman_paren] = STATE(223), + [sym__list_item_upper_roman_paren] = STATE(819), + [sym__list_upper_roman_parens] = STATE(223), + [sym__list_item_upper_roman_parens] = STATE(822), + [sym_table] = STATE(159), + [sym__table_content] = STATE(65), + [sym_table_separator] = STATE(65), + [sym_table_row] = STATE(70), + [sym_footnote] = STATE(159), + [sym_footnote_marker_begin] = STATE(1122), + [sym_footnote_content] = STATE(1106), + [sym_div] = STATE(159), + [sym__div_marker_begin] = STATE(1053), + [sym_code_block] = STATE(159), + [sym_raw_block] = STATE(159), + [sym_thematic_break] = STATE(159), + [sym_block_quote] = STATE(159), + [sym__block_quote_prefix] = STATE(291), + [sym_link_reference_definition] = STATE(159), + [sym_block_attribute] = STATE(159), + [sym__paragraph] = STATE(159), + [sym__paragraph_content] = STATE(812), + [sym__paragraph_inline_content] = STATE(930), + [sym__inline] = STATE(695), + [sym__symbol_fallback] = STATE(358), + [aux_sym__list_dash_repeat1] = STATE(424), + [aux_sym__list_plus_repeat1] = STATE(425), + [aux_sym__list_star_repeat1] = STATE(427), + [aux_sym__list_task_repeat1] = STATE(409), + [aux_sym__list_definition_repeat1] = STATE(577), + [aux_sym__list_decimal_period_repeat1] = STATE(578), + [aux_sym__list_decimal_paren_repeat1] = STATE(579), + [aux_sym__list_decimal_parens_repeat1] = STATE(580), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(581), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(582), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(583), [aux_sym__list_upper_alpha_period_repeat1] = STATE(584), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(586), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(587), - [aux_sym__list_lower_roman_period_repeat1] = STATE(588), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(590), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(591), - [aux_sym__list_upper_roman_period_repeat1] = STATE(592), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(596), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(597), - [aux_sym_table_repeat1] = STATE(64), - [aux_sym_footnote_content_repeat1] = STATE(19), - [aux_sym__block_quote_prefix_repeat1] = STATE(302), - [aux_sym__inline_repeat1] = STATE(355), - [anon_sym_LBRACK] = ACTIONS(71), - [anon_sym_PIPE] = ACTIONS(73), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(585), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(586), + [aux_sym__list_lower_roman_period_repeat1] = STATE(587), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(588), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(589), + [aux_sym__list_upper_roman_period_repeat1] = STATE(590), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(591), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(592), + [aux_sym_table_repeat1] = STATE(65), + [aux_sym_footnote_content_repeat1] = STATE(16), + [aux_sym__block_quote_prefix_repeat1] = STATE(320), + [aux_sym__inline_repeat1] = STATE(358), + [anon_sym_LBRACK] = ACTIONS(222), + [anon_sym_PIPE] = ACTIONS(224), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(226), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__block_close] = ACTIONS(242), - [sym__newline] = ACTIONS(236), - [sym__heading_begin] = ACTIONS(19), + [sym__newline] = ACTIONS(228), + [sym__heading_begin] = ACTIONS(230), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(81), + [sym__code_block_begin] = ACTIONS(232), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -6334,115 +6472,245 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(83), - [sym__block_quote_continuation] = ACTIONS(238), - [sym__thematic_break_dash] = ACTIONS(85), - [sym__thematic_break_star] = ACTIONS(85), + [sym__block_quote_begin] = ACTIONS(234), + [sym__block_quote_continuation] = ACTIONS(236), + [sym__thematic_break_dash] = ACTIONS(238), + [sym__thematic_break_star] = ACTIONS(238), }, - [16] = { - [sym__block_with_heading] = STATE(167), - [sym__block_element] = STATE(167), - [sym_heading] = STATE(167), - [sym_list] = STATE(167), - [sym__list_dash] = STATE(153), - [sym__list_item_dash] = STATE(409), - [sym__list_plus] = STATE(153), - [sym__list_item_plus] = STATE(410), - [sym__list_star] = STATE(153), - [sym__list_item_star] = STATE(407), - [sym__list_task] = STATE(153), - [sym__list_item_task] = STATE(396), - [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(153), - [sym__list_item_definition] = STATE(602), - [sym__list_decimal_period] = STATE(153), - [sym__list_item_decimal_period] = STATE(603), - [sym__list_decimal_paren] = STATE(153), - [sym__list_item_decimal_paren] = STATE(604), - [sym__list_decimal_parens] = STATE(153), - [sym__list_item_decimal_parens] = STATE(605), - [sym__list_lower_alpha_period] = STATE(153), - [sym__list_item_lower_alpha_period] = STATE(606), - [sym__list_lower_alpha_paren] = STATE(153), - [sym__list_item_lower_alpha_paren] = STATE(607), - [sym__list_lower_alpha_parens] = STATE(153), - [sym__list_item_lower_alpha_parens] = STATE(608), - [sym__list_upper_alpha_period] = STATE(153), - [sym__list_item_upper_alpha_period] = STATE(609), - [sym__list_upper_alpha_paren] = STATE(153), - [sym__list_item_upper_alpha_paren] = STATE(610), - [sym__list_upper_alpha_parens] = STATE(153), - [sym__list_item_upper_alpha_parens] = STATE(611), - [sym__list_lower_roman_period] = STATE(153), - [sym__list_item_lower_roman_period] = STATE(612), - [sym__list_lower_roman_paren] = STATE(153), - [sym__list_item_lower_roman_paren] = STATE(613), - [sym__list_lower_roman_parens] = STATE(153), - [sym__list_item_lower_roman_parens] = STATE(595), - [sym__list_upper_roman_period] = STATE(153), - [sym__list_item_upper_roman_period] = STATE(581), - [sym__list_upper_roman_paren] = STATE(153), - [sym__list_item_upper_roman_paren] = STATE(559), - [sym__list_upper_roman_parens] = STATE(153), - [sym__list_item_upper_roman_parens] = STATE(558), - [sym_table] = STATE(167), - [sym__table_content] = STATE(66), - [sym_table_separator] = STATE(66), + [15] = { + [sym__block_with_heading] = STATE(266), + [sym__block_element] = STATE(266), + [sym_heading] = STATE(266), + [sym_list] = STATE(266), + [sym__list_dash] = STATE(162), + [sym__list_item_dash] = STATE(634), + [sym__list_plus] = STATE(162), + [sym__list_item_plus] = STATE(651), + [sym__list_star] = STATE(162), + [sym__list_item_star] = STATE(697), + [sym__list_task] = STATE(162), + [sym__list_item_task] = STATE(707), + [sym_list_marker_task] = STATE(47), + [sym__list_definition] = STATE(162), + [sym__list_item_definition] = STATE(736), + [sym__list_decimal_period] = STATE(162), + [sym__list_item_decimal_period] = STATE(795), + [sym__list_decimal_paren] = STATE(162), + [sym__list_item_decimal_paren] = STATE(848), + [sym__list_decimal_parens] = STATE(162), + [sym__list_item_decimal_parens] = STATE(772), + [sym__list_lower_alpha_period] = STATE(162), + [sym__list_item_lower_alpha_period] = STATE(787), + [sym__list_lower_alpha_paren] = STATE(162), + [sym__list_item_lower_alpha_paren] = STATE(792), + [sym__list_lower_alpha_parens] = STATE(162), + [sym__list_item_lower_alpha_parens] = STATE(793), + [sym__list_upper_alpha_period] = STATE(162), + [sym__list_item_upper_alpha_period] = STATE(797), + [sym__list_upper_alpha_paren] = STATE(162), + [sym__list_item_upper_alpha_paren] = STATE(798), + [sym__list_upper_alpha_parens] = STATE(162), + [sym__list_item_upper_alpha_parens] = STATE(799), + [sym__list_lower_roman_period] = STATE(162), + [sym__list_item_lower_roman_period] = STATE(801), + [sym__list_lower_roman_paren] = STATE(162), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(162), + [sym__list_item_lower_roman_parens] = STATE(814), + [sym__list_upper_roman_period] = STATE(162), + [sym__list_item_upper_roman_period] = STATE(818), + [sym__list_upper_roman_paren] = STATE(162), + [sym__list_item_upper_roman_paren] = STATE(819), + [sym__list_upper_roman_parens] = STATE(162), + [sym__list_item_upper_roman_parens] = STATE(822), + [sym_table] = STATE(266), + [sym__table_content] = STATE(64), + [sym_table_separator] = STATE(64), [sym_table_row] = STATE(71), - [sym_footnote] = STATE(167), - [sym_footnote_marker_begin] = STATE(1086), - [sym_footnote_content] = STATE(935), - [sym_div] = STATE(167), - [sym_div_marker_begin] = STATE(1017), - [sym_code_block] = STATE(167), - [sym_raw_block] = STATE(167), - [sym_thematic_break] = STATE(167), - [sym_block_quote] = STATE(167), - [sym__block_quote_prefix] = STATE(286), - [sym_link_reference_definition] = STATE(167), - [sym_block_attribute] = STATE(167), - [sym__paragraph] = STATE(167), - [sym__paragraph_content] = STATE(867), - [sym__inline] = STATE(710), - [sym__symbol_fallback] = STATE(355), - [aux_sym__list_dash_repeat1] = STATE(409), - [aux_sym__list_plus_repeat1] = STATE(410), - [aux_sym__list_star_repeat1] = STATE(407), + [sym_footnote] = STATE(266), + [sym_footnote_marker_begin] = STATE(1120), + [sym_div] = STATE(266), + [sym__div_marker_begin] = STATE(1032), + [sym_code_block] = STATE(266), + [sym_raw_block] = STATE(266), + [sym_thematic_break] = STATE(266), + [sym_block_quote] = STATE(266), + [sym__block_quote_prefix] = STATE(292), + [sym_link_reference_definition] = STATE(266), + [sym_block_attribute] = STATE(266), + [sym__paragraph] = STATE(266), + [sym__paragraph_content] = STATE(785), + [sym__paragraph_inline_content] = STATE(930), + [sym__inline] = STATE(695), + [sym__symbol_fallback] = STATE(358), + [aux_sym__list_dash_repeat1] = STATE(431), + [aux_sym__list_plus_repeat1] = STATE(414), + [aux_sym__list_star_repeat1] = STATE(416), [aux_sym__list_task_repeat1] = STATE(396), - [aux_sym__list_definition_repeat1] = STATE(602), - [aux_sym__list_decimal_period_repeat1] = STATE(603), - [aux_sym__list_decimal_paren_repeat1] = STATE(604), - [aux_sym__list_decimal_parens_repeat1] = STATE(605), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(606), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(607), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(608), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(609), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(610), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(611), - [aux_sym__list_lower_roman_period_repeat1] = STATE(612), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(613), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(595), - [aux_sym__list_upper_roman_period_repeat1] = STATE(581), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(559), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(558), - [aux_sym_table_repeat1] = STATE(66), - [aux_sym_footnote_content_repeat1] = STATE(22), - [aux_sym__block_quote_prefix_repeat1] = STATE(316), - [aux_sym__inline_repeat1] = STATE(355), - [anon_sym_LBRACK] = ACTIONS(216), - [anon_sym_PIPE] = ACTIONS(218), + [aux_sym__list_definition_repeat1] = STATE(560), + [aux_sym__list_decimal_period_repeat1] = STATE(561), + [aux_sym__list_decimal_paren_repeat1] = STATE(562), + [aux_sym__list_decimal_parens_repeat1] = STATE(563), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(564), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(621), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(566), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(567), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(568), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(569), + [aux_sym__list_lower_roman_period_repeat1] = STATE(570), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(571), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(572), + [aux_sym__list_upper_roman_period_repeat1] = STATE(573), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(574), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(575), + [aux_sym_table_repeat1] = STATE(64), + [aux_sym_footnote_content_repeat1] = STATE(15), + [aux_sym__block_quote_prefix_repeat1] = STATE(320), + [aux_sym__inline_repeat1] = STATE(358), + [anon_sym_LBRACK] = ACTIONS(242), + [anon_sym_PIPE] = ACTIONS(245), + [anon_sym_LBRACK_CARET] = ACTIONS(248), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_DOT] = ACTIONS(254), + [aux_sym_identifier_token1] = ACTIONS(254), + [aux_sym__inline_token1] = ACTIONS(254), + [anon_sym_LBRACE_DASH] = ACTIONS(254), + [anon_sym_POUND] = ACTIONS(254), + [anon_sym_PERCENT] = ACTIONS(254), + [sym__block_close] = ACTIONS(257), + [sym__newline] = ACTIONS(259), + [sym__heading_begin] = ACTIONS(262), + [sym__div_begin] = ACTIONS(265), + [sym__code_block_begin] = ACTIONS(268), + [sym_list_marker_dash] = ACTIONS(271), + [sym_list_marker_star] = ACTIONS(274), + [sym_list_marker_plus] = ACTIONS(277), + [sym__list_marker_task_begin] = ACTIONS(280), + [sym_list_marker_definition] = ACTIONS(283), + [sym_list_marker_decimal_period] = ACTIONS(286), + [sym_list_marker_lower_alpha_period] = ACTIONS(289), + [sym_list_marker_upper_alpha_period] = ACTIONS(292), + [sym_list_marker_lower_roman_period] = ACTIONS(295), + [sym_list_marker_upper_roman_period] = ACTIONS(298), + [sym_list_marker_decimal_paren] = ACTIONS(301), + [sym_list_marker_lower_alpha_paren] = ACTIONS(304), + [sym_list_marker_upper_alpha_paren] = ACTIONS(307), + [sym_list_marker_lower_roman_paren] = ACTIONS(310), + [sym_list_marker_upper_roman_paren] = ACTIONS(313), + [sym_list_marker_decimal_parens] = ACTIONS(316), + [sym_list_marker_lower_alpha_parens] = ACTIONS(319), + [sym_list_marker_upper_alpha_parens] = ACTIONS(322), + [sym_list_marker_lower_roman_parens] = ACTIONS(325), + [sym_list_marker_upper_roman_parens] = ACTIONS(328), + [sym__block_quote_begin] = ACTIONS(331), + [sym__block_quote_continuation] = ACTIONS(334), + [sym__thematic_break_dash] = ACTIONS(337), + [sym__thematic_break_star] = ACTIONS(337), + }, + [16] = { + [sym__block_with_heading] = STATE(159), + [sym__block_element] = STATE(159), + [sym_heading] = STATE(159), + [sym_list] = STATE(159), + [sym__list_dash] = STATE(223), + [sym__list_item_dash] = STATE(634), + [sym__list_plus] = STATE(223), + [sym__list_item_plus] = STATE(651), + [sym__list_star] = STATE(223), + [sym__list_item_star] = STATE(697), + [sym__list_task] = STATE(223), + [sym__list_item_task] = STATE(707), + [sym_list_marker_task] = STATE(47), + [sym__list_definition] = STATE(223), + [sym__list_item_definition] = STATE(736), + [sym__list_decimal_period] = STATE(223), + [sym__list_item_decimal_period] = STATE(795), + [sym__list_decimal_paren] = STATE(223), + [sym__list_item_decimal_paren] = STATE(848), + [sym__list_decimal_parens] = STATE(223), + [sym__list_item_decimal_parens] = STATE(772), + [sym__list_lower_alpha_period] = STATE(223), + [sym__list_item_lower_alpha_period] = STATE(787), + [sym__list_lower_alpha_paren] = STATE(223), + [sym__list_item_lower_alpha_paren] = STATE(792), + [sym__list_lower_alpha_parens] = STATE(223), + [sym__list_item_lower_alpha_parens] = STATE(793), + [sym__list_upper_alpha_period] = STATE(223), + [sym__list_item_upper_alpha_period] = STATE(797), + [sym__list_upper_alpha_paren] = STATE(223), + [sym__list_item_upper_alpha_paren] = STATE(798), + [sym__list_upper_alpha_parens] = STATE(223), + [sym__list_item_upper_alpha_parens] = STATE(799), + [sym__list_lower_roman_period] = STATE(223), + [sym__list_item_lower_roman_period] = STATE(801), + [sym__list_lower_roman_paren] = STATE(223), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(223), + [sym__list_item_lower_roman_parens] = STATE(814), + [sym__list_upper_roman_period] = STATE(223), + [sym__list_item_upper_roman_period] = STATE(818), + [sym__list_upper_roman_paren] = STATE(223), + [sym__list_item_upper_roman_paren] = STATE(819), + [sym__list_upper_roman_parens] = STATE(223), + [sym__list_item_upper_roman_parens] = STATE(822), + [sym_table] = STATE(159), + [sym__table_content] = STATE(65), + [sym_table_separator] = STATE(65), + [sym_table_row] = STATE(70), + [sym_footnote] = STATE(159), + [sym_footnote_marker_begin] = STATE(1122), + [sym_div] = STATE(159), + [sym__div_marker_begin] = STATE(1053), + [sym_code_block] = STATE(159), + [sym_raw_block] = STATE(159), + [sym_thematic_break] = STATE(159), + [sym_block_quote] = STATE(159), + [sym__block_quote_prefix] = STATE(291), + [sym_link_reference_definition] = STATE(159), + [sym_block_attribute] = STATE(159), + [sym__paragraph] = STATE(159), + [sym__paragraph_content] = STATE(812), + [sym__paragraph_inline_content] = STATE(930), + [sym__inline] = STATE(695), + [sym__symbol_fallback] = STATE(358), + [aux_sym__list_dash_repeat1] = STATE(424), + [aux_sym__list_plus_repeat1] = STATE(425), + [aux_sym__list_star_repeat1] = STATE(427), + [aux_sym__list_task_repeat1] = STATE(409), + [aux_sym__list_definition_repeat1] = STATE(577), + [aux_sym__list_decimal_period_repeat1] = STATE(578), + [aux_sym__list_decimal_paren_repeat1] = STATE(579), + [aux_sym__list_decimal_parens_repeat1] = STATE(580), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(581), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(582), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(583), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(584), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(585), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(586), + [aux_sym__list_lower_roman_period_repeat1] = STATE(587), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(588), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(589), + [aux_sym__list_upper_roman_period_repeat1] = STATE(590), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(591), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(592), + [aux_sym_table_repeat1] = STATE(65), + [aux_sym_footnote_content_repeat1] = STATE(17), + [aux_sym__block_quote_prefix_repeat1] = STATE(320), + [aux_sym__inline_repeat1] = STATE(358), + [anon_sym_LBRACK] = ACTIONS(222), + [anon_sym_PIPE] = ACTIONS(224), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(226), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(222), - [sym__heading_begin] = ACTIONS(224), + [sym__newline] = ACTIONS(228), + [sym__heading_begin] = ACTIONS(230), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(226), + [sym__code_block_begin] = ACTIONS(232), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -6463,115 +6731,247 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(228), - [sym__block_quote_continuation] = ACTIONS(230), - [sym__thematic_break_dash] = ACTIONS(232), - [sym__thematic_break_star] = ACTIONS(232), + [sym__block_quote_begin] = ACTIONS(234), + [sym__block_quote_continuation] = ACTIONS(236), + [sym__thematic_break_dash] = ACTIONS(238), + [sym__thematic_break_star] = ACTIONS(238), + [sym__footnote_end] = ACTIONS(340), }, [17] = { - [sym__block_with_heading] = STATE(230), - [sym__block_element] = STATE(230), - [sym_heading] = STATE(230), - [sym_list] = STATE(230), - [sym__list_dash] = STATE(186), - [sym__list_item_dash] = STATE(415), - [sym__list_plus] = STATE(186), - [sym__list_item_plus] = STATE(406), - [sym__list_star] = STATE(186), - [sym__list_item_star] = STATE(408), - [sym__list_task] = STATE(186), - [sym__list_item_task] = STATE(391), - [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(186), - [sym__list_item_definition] = STATE(570), - [sym__list_decimal_period] = STATE(186), - [sym__list_item_decimal_period] = STATE(573), - [sym__list_decimal_paren] = STATE(186), - [sym__list_item_decimal_paren] = STATE(575), - [sym__list_decimal_parens] = STATE(186), - [sym__list_item_decimal_parens] = STATE(578), - [sym__list_lower_alpha_period] = STATE(186), - [sym__list_item_lower_alpha_period] = STATE(495), - [sym__list_lower_alpha_paren] = STATE(186), - [sym__list_item_lower_alpha_paren] = STATE(583), - [sym__list_lower_alpha_parens] = STATE(186), - [sym__list_item_lower_alpha_parens] = STATE(494), - [sym__list_upper_alpha_period] = STATE(186), - [sym__list_item_upper_alpha_period] = STATE(584), - [sym__list_upper_alpha_paren] = STATE(186), - [sym__list_item_upper_alpha_paren] = STATE(586), - [sym__list_upper_alpha_parens] = STATE(186), - [sym__list_item_upper_alpha_parens] = STATE(587), - [sym__list_lower_roman_period] = STATE(186), - [sym__list_item_lower_roman_period] = STATE(588), - [sym__list_lower_roman_paren] = STATE(186), - [sym__list_item_lower_roman_paren] = STATE(590), - [sym__list_lower_roman_parens] = STATE(186), - [sym__list_item_lower_roman_parens] = STATE(591), - [sym__list_upper_roman_period] = STATE(186), - [sym__list_item_upper_roman_period] = STATE(592), - [sym__list_upper_roman_paren] = STATE(186), - [sym__list_item_upper_roman_paren] = STATE(596), - [sym__list_upper_roman_parens] = STATE(186), - [sym__list_item_upper_roman_parens] = STATE(597), - [sym_table] = STATE(230), + [sym__block_with_heading] = STATE(159), + [sym__block_element] = STATE(159), + [sym_heading] = STATE(159), + [sym_list] = STATE(159), + [sym__list_dash] = STATE(223), + [sym__list_item_dash] = STATE(634), + [sym__list_plus] = STATE(223), + [sym__list_item_plus] = STATE(651), + [sym__list_star] = STATE(223), + [sym__list_item_star] = STATE(697), + [sym__list_task] = STATE(223), + [sym__list_item_task] = STATE(707), + [sym_list_marker_task] = STATE(47), + [sym__list_definition] = STATE(223), + [sym__list_item_definition] = STATE(736), + [sym__list_decimal_period] = STATE(223), + [sym__list_item_decimal_period] = STATE(795), + [sym__list_decimal_paren] = STATE(223), + [sym__list_item_decimal_paren] = STATE(848), + [sym__list_decimal_parens] = STATE(223), + [sym__list_item_decimal_parens] = STATE(772), + [sym__list_lower_alpha_period] = STATE(223), + [sym__list_item_lower_alpha_period] = STATE(787), + [sym__list_lower_alpha_paren] = STATE(223), + [sym__list_item_lower_alpha_paren] = STATE(792), + [sym__list_lower_alpha_parens] = STATE(223), + [sym__list_item_lower_alpha_parens] = STATE(793), + [sym__list_upper_alpha_period] = STATE(223), + [sym__list_item_upper_alpha_period] = STATE(797), + [sym__list_upper_alpha_paren] = STATE(223), + [sym__list_item_upper_alpha_paren] = STATE(798), + [sym__list_upper_alpha_parens] = STATE(223), + [sym__list_item_upper_alpha_parens] = STATE(799), + [sym__list_lower_roman_period] = STATE(223), + [sym__list_item_lower_roman_period] = STATE(801), + [sym__list_lower_roman_paren] = STATE(223), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(223), + [sym__list_item_lower_roman_parens] = STATE(814), + [sym__list_upper_roman_period] = STATE(223), + [sym__list_item_upper_roman_period] = STATE(818), + [sym__list_upper_roman_paren] = STATE(223), + [sym__list_item_upper_roman_paren] = STATE(819), + [sym__list_upper_roman_parens] = STATE(223), + [sym__list_item_upper_roman_parens] = STATE(822), + [sym_table] = STATE(159), + [sym__table_content] = STATE(65), + [sym_table_separator] = STATE(65), + [sym_table_row] = STATE(70), + [sym_footnote] = STATE(159), + [sym_footnote_marker_begin] = STATE(1122), + [sym_div] = STATE(159), + [sym__div_marker_begin] = STATE(1053), + [sym_code_block] = STATE(159), + [sym_raw_block] = STATE(159), + [sym_thematic_break] = STATE(159), + [sym_block_quote] = STATE(159), + [sym__block_quote_prefix] = STATE(291), + [sym_link_reference_definition] = STATE(159), + [sym_block_attribute] = STATE(159), + [sym__paragraph] = STATE(159), + [sym__paragraph_content] = STATE(812), + [sym__paragraph_inline_content] = STATE(930), + [sym__inline] = STATE(695), + [sym__symbol_fallback] = STATE(358), + [aux_sym__list_dash_repeat1] = STATE(424), + [aux_sym__list_plus_repeat1] = STATE(425), + [aux_sym__list_star_repeat1] = STATE(427), + [aux_sym__list_task_repeat1] = STATE(409), + [aux_sym__list_definition_repeat1] = STATE(577), + [aux_sym__list_decimal_period_repeat1] = STATE(578), + [aux_sym__list_decimal_paren_repeat1] = STATE(579), + [aux_sym__list_decimal_parens_repeat1] = STATE(580), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(581), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(582), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(583), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(584), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(585), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(586), + [aux_sym__list_lower_roman_period_repeat1] = STATE(587), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(588), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(589), + [aux_sym__list_upper_roman_period_repeat1] = STATE(590), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(591), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(592), + [aux_sym_table_repeat1] = STATE(65), + [aux_sym_footnote_content_repeat1] = STATE(17), + [aux_sym__block_quote_prefix_repeat1] = STATE(320), + [aux_sym__inline_repeat1] = STATE(358), + [anon_sym_LBRACK] = ACTIONS(342), + [anon_sym_PIPE] = ACTIONS(345), + [anon_sym_LBRACK_CARET] = ACTIONS(248), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_DOT] = ACTIONS(254), + [aux_sym_identifier_token1] = ACTIONS(254), + [aux_sym__inline_token1] = ACTIONS(254), + [anon_sym_LBRACE_DASH] = ACTIONS(254), + [anon_sym_POUND] = ACTIONS(254), + [anon_sym_PERCENT] = ACTIONS(254), + [sym__newline] = ACTIONS(351), + [sym__heading_begin] = ACTIONS(354), + [sym__div_begin] = ACTIONS(265), + [sym__code_block_begin] = ACTIONS(357), + [sym_list_marker_dash] = ACTIONS(271), + [sym_list_marker_star] = ACTIONS(274), + [sym_list_marker_plus] = ACTIONS(277), + [sym__list_marker_task_begin] = ACTIONS(280), + [sym_list_marker_definition] = ACTIONS(283), + [sym_list_marker_decimal_period] = ACTIONS(286), + [sym_list_marker_lower_alpha_period] = ACTIONS(289), + [sym_list_marker_upper_alpha_period] = ACTIONS(292), + [sym_list_marker_lower_roman_period] = ACTIONS(295), + [sym_list_marker_upper_roman_period] = ACTIONS(298), + [sym_list_marker_decimal_paren] = ACTIONS(301), + [sym_list_marker_lower_alpha_paren] = ACTIONS(304), + [sym_list_marker_upper_alpha_paren] = ACTIONS(307), + [sym_list_marker_lower_roman_paren] = ACTIONS(310), + [sym_list_marker_upper_roman_paren] = ACTIONS(313), + [sym_list_marker_decimal_parens] = ACTIONS(316), + [sym_list_marker_lower_alpha_parens] = ACTIONS(319), + [sym_list_marker_upper_alpha_parens] = ACTIONS(322), + [sym_list_marker_lower_roman_parens] = ACTIONS(325), + [sym_list_marker_upper_roman_parens] = ACTIONS(328), + [sym__block_quote_begin] = ACTIONS(360), + [sym__block_quote_continuation] = ACTIONS(363), + [sym__thematic_break_dash] = ACTIONS(366), + [sym__thematic_break_star] = ACTIONS(366), + [sym__footnote_end] = ACTIONS(257), + }, + [18] = { + [sym__block_with_heading] = STATE(266), + [sym__block_element] = STATE(266), + [sym_heading] = STATE(266), + [sym_list] = STATE(266), + [sym__list_dash] = STATE(162), + [sym__list_item_dash] = STATE(634), + [sym__list_plus] = STATE(162), + [sym__list_item_plus] = STATE(651), + [sym__list_star] = STATE(162), + [sym__list_item_star] = STATE(697), + [sym__list_task] = STATE(162), + [sym__list_item_task] = STATE(707), + [sym_list_marker_task] = STATE(47), + [sym__list_definition] = STATE(162), + [sym__list_item_definition] = STATE(736), + [sym__list_decimal_period] = STATE(162), + [sym__list_item_decimal_period] = STATE(795), + [sym__list_decimal_paren] = STATE(162), + [sym__list_item_decimal_paren] = STATE(848), + [sym__list_decimal_parens] = STATE(162), + [sym__list_item_decimal_parens] = STATE(772), + [sym__list_lower_alpha_period] = STATE(162), + [sym__list_item_lower_alpha_period] = STATE(787), + [sym__list_lower_alpha_paren] = STATE(162), + [sym__list_item_lower_alpha_paren] = STATE(792), + [sym__list_lower_alpha_parens] = STATE(162), + [sym__list_item_lower_alpha_parens] = STATE(793), + [sym__list_upper_alpha_period] = STATE(162), + [sym__list_item_upper_alpha_period] = STATE(797), + [sym__list_upper_alpha_paren] = STATE(162), + [sym__list_item_upper_alpha_paren] = STATE(798), + [sym__list_upper_alpha_parens] = STATE(162), + [sym__list_item_upper_alpha_parens] = STATE(799), + [sym__list_lower_roman_period] = STATE(162), + [sym__list_item_lower_roman_period] = STATE(801), + [sym__list_lower_roman_paren] = STATE(162), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(162), + [sym__list_item_lower_roman_parens] = STATE(814), + [sym__list_upper_roman_period] = STATE(162), + [sym__list_item_upper_roman_period] = STATE(818), + [sym__list_upper_roman_paren] = STATE(162), + [sym__list_item_upper_roman_paren] = STATE(819), + [sym__list_upper_roman_parens] = STATE(162), + [sym__list_item_upper_roman_parens] = STATE(822), + [sym_table] = STATE(266), [sym__table_content] = STATE(64), [sym_table_separator] = STATE(64), - [sym_table_row] = STATE(72), - [sym_footnote] = STATE(230), - [sym_footnote_marker_begin] = STATE(1084), - [sym_div] = STATE(230), - [sym_div_marker_begin] = STATE(996), - [sym_code_block] = STATE(230), - [sym_raw_block] = STATE(230), - [sym_thematic_break] = STATE(230), - [sym_block_quote] = STATE(230), - [sym__block_quote_prefix] = STATE(283), - [sym_link_reference_definition] = STATE(230), - [sym_block_attribute] = STATE(230), - [sym__paragraph] = STATE(230), - [sym__paragraph_content] = STATE(811), - [sym__inline] = STATE(710), - [sym__symbol_fallback] = STATE(355), - [aux_sym__list_dash_repeat1] = STATE(415), - [aux_sym__list_plus_repeat1] = STATE(406), - [aux_sym__list_star_repeat1] = STATE(408), - [aux_sym__list_task_repeat1] = STATE(391), - [aux_sym__list_definition_repeat1] = STATE(570), - [aux_sym__list_decimal_period_repeat1] = STATE(573), - [aux_sym__list_decimal_paren_repeat1] = STATE(575), - [aux_sym__list_decimal_parens_repeat1] = STATE(578), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(495), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(583), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(494), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(584), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(586), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(587), - [aux_sym__list_lower_roman_period_repeat1] = STATE(588), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(590), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(591), - [aux_sym__list_upper_roman_period_repeat1] = STATE(592), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(596), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(597), + [sym_table_row] = STATE(71), + [sym_footnote] = STATE(266), + [sym_footnote_marker_begin] = STATE(1120), + [sym_div] = STATE(266), + [sym__div_marker_begin] = STATE(1032), + [sym_code_block] = STATE(266), + [sym_raw_block] = STATE(266), + [sym_thematic_break] = STATE(266), + [sym_block_quote] = STATE(266), + [sym__block_quote_prefix] = STATE(284), + [sym_link_reference_definition] = STATE(266), + [sym_block_attribute] = STATE(266), + [sym__paragraph] = STATE(266), + [sym__paragraph_content] = STATE(785), + [sym__paragraph_inline_content] = STATE(930), + [sym__inline] = STATE(695), + [sym__symbol_fallback] = STATE(358), + [aux_sym__list_dash_repeat1] = STATE(431), + [aux_sym__list_plus_repeat1] = STATE(414), + [aux_sym__list_star_repeat1] = STATE(416), + [aux_sym__list_task_repeat1] = STATE(396), + [aux_sym__list_definition_repeat1] = STATE(560), + [aux_sym__list_decimal_period_repeat1] = STATE(561), + [aux_sym__list_decimal_paren_repeat1] = STATE(562), + [aux_sym__list_decimal_parens_repeat1] = STATE(563), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(564), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(621), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(566), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(567), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(568), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(569), + [aux_sym__list_lower_roman_period_repeat1] = STATE(570), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(571), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(572), + [aux_sym__list_upper_roman_period_repeat1] = STATE(573), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(574), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(575), [aux_sym_table_repeat1] = STATE(64), [aux_sym_footnote_content_repeat1] = STATE(19), - [aux_sym__block_quote_prefix_repeat1] = STATE(302), - [aux_sym__inline_repeat1] = STATE(355), - [anon_sym_LBRACK] = ACTIONS(71), - [anon_sym_PIPE] = ACTIONS(73), + [aux_sym__block_quote_prefix_repeat1] = STATE(313), + [aux_sym__inline_repeat1] = STATE(358), + [anon_sym_LBRACK] = ACTIONS(75), + [anon_sym_PIPE] = ACTIONS(77), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(79), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__block_close] = ACTIONS(244), - [sym__newline] = ACTIONS(236), + [sym__block_close] = ACTIONS(369), + [sym__newline] = ACTIONS(218), [sym__heading_begin] = ACTIONS(19), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(81), + [sym__code_block_begin] = ACTIONS(85), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -6592,115 +6992,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(83), - [sym__block_quote_continuation] = ACTIONS(238), - [sym__thematic_break_dash] = ACTIONS(85), - [sym__thematic_break_star] = ACTIONS(85), + [sym__block_quote_begin] = ACTIONS(87), + [sym__block_quote_continuation] = ACTIONS(220), + [sym__thematic_break_dash] = ACTIONS(89), + [sym__thematic_break_star] = ACTIONS(89), }, - [18] = { - [sym__block_with_heading] = STATE(230), - [sym__block_element] = STATE(230), - [sym_heading] = STATE(230), - [sym_list] = STATE(230), - [sym__list_dash] = STATE(186), - [sym__list_item_dash] = STATE(415), - [sym__list_plus] = STATE(186), - [sym__list_item_plus] = STATE(406), - [sym__list_star] = STATE(186), - [sym__list_item_star] = STATE(408), - [sym__list_task] = STATE(186), - [sym__list_item_task] = STATE(391), - [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(186), - [sym__list_item_definition] = STATE(570), - [sym__list_decimal_period] = STATE(186), - [sym__list_item_decimal_period] = STATE(573), - [sym__list_decimal_paren] = STATE(186), - [sym__list_item_decimal_paren] = STATE(575), - [sym__list_decimal_parens] = STATE(186), - [sym__list_item_decimal_parens] = STATE(578), - [sym__list_lower_alpha_period] = STATE(186), - [sym__list_item_lower_alpha_period] = STATE(495), - [sym__list_lower_alpha_paren] = STATE(186), - [sym__list_item_lower_alpha_paren] = STATE(583), - [sym__list_lower_alpha_parens] = STATE(186), - [sym__list_item_lower_alpha_parens] = STATE(494), - [sym__list_upper_alpha_period] = STATE(186), - [sym__list_item_upper_alpha_period] = STATE(584), - [sym__list_upper_alpha_paren] = STATE(186), - [sym__list_item_upper_alpha_paren] = STATE(586), - [sym__list_upper_alpha_parens] = STATE(186), - [sym__list_item_upper_alpha_parens] = STATE(587), - [sym__list_lower_roman_period] = STATE(186), - [sym__list_item_lower_roman_period] = STATE(588), - [sym__list_lower_roman_paren] = STATE(186), - [sym__list_item_lower_roman_paren] = STATE(590), - [sym__list_lower_roman_parens] = STATE(186), - [sym__list_item_lower_roman_parens] = STATE(591), - [sym__list_upper_roman_period] = STATE(186), - [sym__list_item_upper_roman_period] = STATE(592), - [sym__list_upper_roman_paren] = STATE(186), - [sym__list_item_upper_roman_paren] = STATE(596), - [sym__list_upper_roman_parens] = STATE(186), - [sym__list_item_upper_roman_parens] = STATE(597), - [sym_table] = STATE(230), + [19] = { + [sym__block_with_heading] = STATE(266), + [sym__block_element] = STATE(266), + [sym_heading] = STATE(266), + [sym_list] = STATE(266), + [sym__list_dash] = STATE(162), + [sym__list_item_dash] = STATE(634), + [sym__list_plus] = STATE(162), + [sym__list_item_plus] = STATE(651), + [sym__list_star] = STATE(162), + [sym__list_item_star] = STATE(697), + [sym__list_task] = STATE(162), + [sym__list_item_task] = STATE(707), + [sym_list_marker_task] = STATE(47), + [sym__list_definition] = STATE(162), + [sym__list_item_definition] = STATE(736), + [sym__list_decimal_period] = STATE(162), + [sym__list_item_decimal_period] = STATE(795), + [sym__list_decimal_paren] = STATE(162), + [sym__list_item_decimal_paren] = STATE(848), + [sym__list_decimal_parens] = STATE(162), + [sym__list_item_decimal_parens] = STATE(772), + [sym__list_lower_alpha_period] = STATE(162), + [sym__list_item_lower_alpha_period] = STATE(787), + [sym__list_lower_alpha_paren] = STATE(162), + [sym__list_item_lower_alpha_paren] = STATE(792), + [sym__list_lower_alpha_parens] = STATE(162), + [sym__list_item_lower_alpha_parens] = STATE(793), + [sym__list_upper_alpha_period] = STATE(162), + [sym__list_item_upper_alpha_period] = STATE(797), + [sym__list_upper_alpha_paren] = STATE(162), + [sym__list_item_upper_alpha_paren] = STATE(798), + [sym__list_upper_alpha_parens] = STATE(162), + [sym__list_item_upper_alpha_parens] = STATE(799), + [sym__list_lower_roman_period] = STATE(162), + [sym__list_item_lower_roman_period] = STATE(801), + [sym__list_lower_roman_paren] = STATE(162), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(162), + [sym__list_item_lower_roman_parens] = STATE(814), + [sym__list_upper_roman_period] = STATE(162), + [sym__list_item_upper_roman_period] = STATE(818), + [sym__list_upper_roman_paren] = STATE(162), + [sym__list_item_upper_roman_paren] = STATE(819), + [sym__list_upper_roman_parens] = STATE(162), + [sym__list_item_upper_roman_parens] = STATE(822), + [sym_table] = STATE(266), [sym__table_content] = STATE(64), [sym_table_separator] = STATE(64), - [sym_table_row] = STATE(72), - [sym_footnote] = STATE(230), - [sym_footnote_marker_begin] = STATE(1084), - [sym_div] = STATE(230), - [sym_div_marker_begin] = STATE(996), - [sym_code_block] = STATE(230), - [sym_raw_block] = STATE(230), - [sym_thematic_break] = STATE(230), - [sym_block_quote] = STATE(230), - [sym__block_quote_prefix] = STATE(278), - [sym_link_reference_definition] = STATE(230), - [sym_block_attribute] = STATE(230), - [sym__paragraph] = STATE(230), - [sym__paragraph_content] = STATE(811), - [sym__inline] = STATE(710), - [sym__symbol_fallback] = STATE(355), - [aux_sym__list_dash_repeat1] = STATE(415), - [aux_sym__list_plus_repeat1] = STATE(406), - [aux_sym__list_star_repeat1] = STATE(408), - [aux_sym__list_task_repeat1] = STATE(391), - [aux_sym__list_definition_repeat1] = STATE(570), - [aux_sym__list_decimal_period_repeat1] = STATE(573), - [aux_sym__list_decimal_paren_repeat1] = STATE(575), - [aux_sym__list_decimal_parens_repeat1] = STATE(578), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(495), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(583), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(494), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(584), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(586), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(587), - [aux_sym__list_lower_roman_period_repeat1] = STATE(588), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(590), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(591), - [aux_sym__list_upper_roman_period_repeat1] = STATE(592), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(596), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(597), + [sym_table_row] = STATE(71), + [sym_footnote] = STATE(266), + [sym_footnote_marker_begin] = STATE(1120), + [sym_div] = STATE(266), + [sym__div_marker_begin] = STATE(1032), + [sym_code_block] = STATE(266), + [sym_raw_block] = STATE(266), + [sym_thematic_break] = STATE(266), + [sym_block_quote] = STATE(266), + [sym__block_quote_prefix] = STATE(281), + [sym_link_reference_definition] = STATE(266), + [sym_block_attribute] = STATE(266), + [sym__paragraph] = STATE(266), + [sym__paragraph_content] = STATE(785), + [sym__paragraph_inline_content] = STATE(930), + [sym__inline] = STATE(695), + [sym__symbol_fallback] = STATE(358), + [aux_sym__list_dash_repeat1] = STATE(431), + [aux_sym__list_plus_repeat1] = STATE(414), + [aux_sym__list_star_repeat1] = STATE(416), + [aux_sym__list_task_repeat1] = STATE(396), + [aux_sym__list_definition_repeat1] = STATE(560), + [aux_sym__list_decimal_period_repeat1] = STATE(561), + [aux_sym__list_decimal_paren_repeat1] = STATE(562), + [aux_sym__list_decimal_parens_repeat1] = STATE(563), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(564), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(621), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(566), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(567), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(568), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(569), + [aux_sym__list_lower_roman_period_repeat1] = STATE(570), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(571), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(572), + [aux_sym__list_upper_roman_period_repeat1] = STATE(573), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(574), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(575), [aux_sym_table_repeat1] = STATE(64), - [aux_sym_footnote_content_repeat1] = STATE(21), - [aux_sym__block_quote_prefix_repeat1] = STATE(302), - [aux_sym__inline_repeat1] = STATE(355), - [anon_sym_LBRACK] = ACTIONS(71), - [anon_sym_PIPE] = ACTIONS(73), + [aux_sym_footnote_content_repeat1] = STATE(15), + [aux_sym__block_quote_prefix_repeat1] = STATE(313), + [aux_sym__inline_repeat1] = STATE(358), + [anon_sym_LBRACK] = ACTIONS(75), + [anon_sym_PIPE] = ACTIONS(77), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(79), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__block_close] = ACTIONS(246), - [sym__newline] = ACTIONS(236), + [sym__block_close] = ACTIONS(371), + [sym__newline] = ACTIONS(218), [sym__heading_begin] = ACTIONS(19), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(81), + [sym__code_block_begin] = ACTIONS(85), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -6721,244 +7122,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(83), - [sym__block_quote_continuation] = ACTIONS(238), - [sym__thematic_break_dash] = ACTIONS(85), - [sym__thematic_break_star] = ACTIONS(85), + [sym__block_quote_begin] = ACTIONS(87), + [sym__block_quote_continuation] = ACTIONS(220), + [sym__thematic_break_dash] = ACTIONS(89), + [sym__thematic_break_star] = ACTIONS(89), }, - [19] = { - [sym__block_with_heading] = STATE(230), - [sym__block_element] = STATE(230), - [sym_heading] = STATE(230), - [sym_list] = STATE(230), - [sym__list_dash] = STATE(186), - [sym__list_item_dash] = STATE(415), - [sym__list_plus] = STATE(186), - [sym__list_item_plus] = STATE(406), - [sym__list_star] = STATE(186), - [sym__list_item_star] = STATE(408), - [sym__list_task] = STATE(186), - [sym__list_item_task] = STATE(391), - [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(186), - [sym__list_item_definition] = STATE(570), - [sym__list_decimal_period] = STATE(186), - [sym__list_item_decimal_period] = STATE(573), - [sym__list_decimal_paren] = STATE(186), - [sym__list_item_decimal_paren] = STATE(575), - [sym__list_decimal_parens] = STATE(186), - [sym__list_item_decimal_parens] = STATE(578), - [sym__list_lower_alpha_period] = STATE(186), - [sym__list_item_lower_alpha_period] = STATE(495), - [sym__list_lower_alpha_paren] = STATE(186), - [sym__list_item_lower_alpha_paren] = STATE(583), - [sym__list_lower_alpha_parens] = STATE(186), - [sym__list_item_lower_alpha_parens] = STATE(494), - [sym__list_upper_alpha_period] = STATE(186), - [sym__list_item_upper_alpha_period] = STATE(584), - [sym__list_upper_alpha_paren] = STATE(186), - [sym__list_item_upper_alpha_paren] = STATE(586), - [sym__list_upper_alpha_parens] = STATE(186), - [sym__list_item_upper_alpha_parens] = STATE(587), - [sym__list_lower_roman_period] = STATE(186), - [sym__list_item_lower_roman_period] = STATE(588), - [sym__list_lower_roman_paren] = STATE(186), - [sym__list_item_lower_roman_paren] = STATE(590), - [sym__list_lower_roman_parens] = STATE(186), - [sym__list_item_lower_roman_parens] = STATE(591), - [sym__list_upper_roman_period] = STATE(186), - [sym__list_item_upper_roman_period] = STATE(592), - [sym__list_upper_roman_paren] = STATE(186), - [sym__list_item_upper_roman_paren] = STATE(596), - [sym__list_upper_roman_parens] = STATE(186), - [sym__list_item_upper_roman_parens] = STATE(597), - [sym_table] = STATE(230), + [20] = { + [sym__block_with_heading] = STATE(266), + [sym__block_element] = STATE(266), + [sym_heading] = STATE(266), + [sym_list] = STATE(266), + [sym__list_dash] = STATE(162), + [sym__list_item_dash] = STATE(634), + [sym__list_plus] = STATE(162), + [sym__list_item_plus] = STATE(651), + [sym__list_star] = STATE(162), + [sym__list_item_star] = STATE(697), + [sym__list_task] = STATE(162), + [sym__list_item_task] = STATE(707), + [sym_list_marker_task] = STATE(47), + [sym__list_definition] = STATE(162), + [sym__list_item_definition] = STATE(736), + [sym__list_decimal_period] = STATE(162), + [sym__list_item_decimal_period] = STATE(795), + [sym__list_decimal_paren] = STATE(162), + [sym__list_item_decimal_paren] = STATE(848), + [sym__list_decimal_parens] = STATE(162), + [sym__list_item_decimal_parens] = STATE(772), + [sym__list_lower_alpha_period] = STATE(162), + [sym__list_item_lower_alpha_period] = STATE(787), + [sym__list_lower_alpha_paren] = STATE(162), + [sym__list_item_lower_alpha_paren] = STATE(792), + [sym__list_lower_alpha_parens] = STATE(162), + [sym__list_item_lower_alpha_parens] = STATE(793), + [sym__list_upper_alpha_period] = STATE(162), + [sym__list_item_upper_alpha_period] = STATE(797), + [sym__list_upper_alpha_paren] = STATE(162), + [sym__list_item_upper_alpha_paren] = STATE(798), + [sym__list_upper_alpha_parens] = STATE(162), + [sym__list_item_upper_alpha_parens] = STATE(799), + [sym__list_lower_roman_period] = STATE(162), + [sym__list_item_lower_roman_period] = STATE(801), + [sym__list_lower_roman_paren] = STATE(162), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(162), + [sym__list_item_lower_roman_parens] = STATE(814), + [sym__list_upper_roman_period] = STATE(162), + [sym__list_item_upper_roman_period] = STATE(818), + [sym__list_upper_roman_paren] = STATE(162), + [sym__list_item_upper_roman_paren] = STATE(819), + [sym__list_upper_roman_parens] = STATE(162), + [sym__list_item_upper_roman_parens] = STATE(822), + [sym_table] = STATE(266), [sym__table_content] = STATE(64), [sym_table_separator] = STATE(64), - [sym_table_row] = STATE(72), - [sym_footnote] = STATE(230), - [sym_footnote_marker_begin] = STATE(1084), - [sym_div] = STATE(230), - [sym_div_marker_begin] = STATE(996), - [sym_code_block] = STATE(230), - [sym_raw_block] = STATE(230), - [sym_thematic_break] = STATE(230), - [sym_block_quote] = STATE(230), - [sym__block_quote_prefix] = STATE(287), - [sym_link_reference_definition] = STATE(230), - [sym_block_attribute] = STATE(230), - [sym__paragraph] = STATE(230), - [sym__paragraph_content] = STATE(811), - [sym__inline] = STATE(710), - [sym__symbol_fallback] = STATE(355), - [aux_sym__list_dash_repeat1] = STATE(415), - [aux_sym__list_plus_repeat1] = STATE(406), - [aux_sym__list_star_repeat1] = STATE(408), - [aux_sym__list_task_repeat1] = STATE(391), - [aux_sym__list_definition_repeat1] = STATE(570), - [aux_sym__list_decimal_period_repeat1] = STATE(573), - [aux_sym__list_decimal_paren_repeat1] = STATE(575), - [aux_sym__list_decimal_parens_repeat1] = STATE(578), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(495), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(583), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(494), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(584), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(586), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(587), - [aux_sym__list_lower_roman_period_repeat1] = STATE(588), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(590), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(591), - [aux_sym__list_upper_roman_period_repeat1] = STATE(592), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(596), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(597), - [aux_sym_table_repeat1] = STATE(64), - [aux_sym_footnote_content_repeat1] = STATE(19), - [aux_sym__block_quote_prefix_repeat1] = STATE(316), - [aux_sym__inline_repeat1] = STATE(355), - [anon_sym_LBRACK] = ACTIONS(248), - [anon_sym_PIPE] = ACTIONS(251), - [anon_sym_LBRACK_CARET] = ACTIONS(254), - [anon_sym_LBRACE] = ACTIONS(257), - [anon_sym_DOT] = ACTIONS(260), - [aux_sym_identifier_token1] = ACTIONS(260), - [aux_sym__inline_token1] = ACTIONS(260), - [anon_sym_LBRACE_DASH] = ACTIONS(260), - [anon_sym_POUND] = ACTIONS(260), - [anon_sym_PERCENT] = ACTIONS(260), - [sym__block_close] = ACTIONS(263), - [sym__newline] = ACTIONS(265), - [sym__heading_begin] = ACTIONS(268), - [sym__div_begin] = ACTIONS(271), - [sym__code_block_begin] = ACTIONS(274), - [sym_list_marker_dash] = ACTIONS(277), - [sym_list_marker_star] = ACTIONS(280), - [sym_list_marker_plus] = ACTIONS(283), - [sym__list_marker_task_begin] = ACTIONS(286), - [sym_list_marker_definition] = ACTIONS(289), - [sym_list_marker_decimal_period] = ACTIONS(292), - [sym_list_marker_lower_alpha_period] = ACTIONS(295), - [sym_list_marker_upper_alpha_period] = ACTIONS(298), - [sym_list_marker_lower_roman_period] = ACTIONS(301), - [sym_list_marker_upper_roman_period] = ACTIONS(304), - [sym_list_marker_decimal_paren] = ACTIONS(307), - [sym_list_marker_lower_alpha_paren] = ACTIONS(310), - [sym_list_marker_upper_alpha_paren] = ACTIONS(313), - [sym_list_marker_lower_roman_paren] = ACTIONS(316), - [sym_list_marker_upper_roman_paren] = ACTIONS(319), - [sym_list_marker_decimal_parens] = ACTIONS(322), - [sym_list_marker_lower_alpha_parens] = ACTIONS(325), - [sym_list_marker_upper_alpha_parens] = ACTIONS(328), - [sym_list_marker_lower_roman_parens] = ACTIONS(331), - [sym_list_marker_upper_roman_parens] = ACTIONS(334), - [sym__block_quote_begin] = ACTIONS(337), - [sym__block_quote_continuation] = ACTIONS(340), - [sym__thematic_break_dash] = ACTIONS(343), - [sym__thematic_break_star] = ACTIONS(343), - }, - [20] = { - [sym__block_with_heading] = STATE(167), - [sym__block_element] = STATE(167), - [sym_heading] = STATE(167), - [sym_list] = STATE(167), - [sym__list_dash] = STATE(153), - [sym__list_item_dash] = STATE(409), - [sym__list_plus] = STATE(153), - [sym__list_item_plus] = STATE(410), - [sym__list_star] = STATE(153), - [sym__list_item_star] = STATE(407), - [sym__list_task] = STATE(153), - [sym__list_item_task] = STATE(396), - [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(153), - [sym__list_item_definition] = STATE(602), - [sym__list_decimal_period] = STATE(153), - [sym__list_item_decimal_period] = STATE(603), - [sym__list_decimal_paren] = STATE(153), - [sym__list_item_decimal_paren] = STATE(604), - [sym__list_decimal_parens] = STATE(153), - [sym__list_item_decimal_parens] = STATE(605), - [sym__list_lower_alpha_period] = STATE(153), - [sym__list_item_lower_alpha_period] = STATE(606), - [sym__list_lower_alpha_paren] = STATE(153), - [sym__list_item_lower_alpha_paren] = STATE(607), - [sym__list_lower_alpha_parens] = STATE(153), - [sym__list_item_lower_alpha_parens] = STATE(608), - [sym__list_upper_alpha_period] = STATE(153), - [sym__list_item_upper_alpha_period] = STATE(609), - [sym__list_upper_alpha_paren] = STATE(153), - [sym__list_item_upper_alpha_paren] = STATE(610), - [sym__list_upper_alpha_parens] = STATE(153), - [sym__list_item_upper_alpha_parens] = STATE(611), - [sym__list_lower_roman_period] = STATE(153), - [sym__list_item_lower_roman_period] = STATE(612), - [sym__list_lower_roman_paren] = STATE(153), - [sym__list_item_lower_roman_paren] = STATE(613), - [sym__list_lower_roman_parens] = STATE(153), - [sym__list_item_lower_roman_parens] = STATE(595), - [sym__list_upper_roman_period] = STATE(153), - [sym__list_item_upper_roman_period] = STATE(581), - [sym__list_upper_roman_paren] = STATE(153), - [sym__list_item_upper_roman_paren] = STATE(559), - [sym__list_upper_roman_parens] = STATE(153), - [sym__list_item_upper_roman_parens] = STATE(558), - [sym_table] = STATE(167), - [sym__table_content] = STATE(66), - [sym_table_separator] = STATE(66), [sym_table_row] = STATE(71), - [sym_footnote] = STATE(167), - [sym_footnote_marker_begin] = STATE(1086), - [sym_footnote_content] = STATE(953), - [sym_div] = STATE(167), - [sym_div_marker_begin] = STATE(1017), - [sym_code_block] = STATE(167), - [sym_raw_block] = STATE(167), - [sym_thematic_break] = STATE(167), - [sym_block_quote] = STATE(167), + [sym_footnote] = STATE(266), + [sym_footnote_marker_begin] = STATE(1120), + [sym_div] = STATE(266), + [sym__div_marker_begin] = STATE(1032), + [sym_code_block] = STATE(266), + [sym_raw_block] = STATE(266), + [sym_thematic_break] = STATE(266), + [sym_block_quote] = STATE(266), [sym__block_quote_prefix] = STATE(286), - [sym_link_reference_definition] = STATE(167), - [sym_block_attribute] = STATE(167), - [sym__paragraph] = STATE(167), - [sym__paragraph_content] = STATE(867), - [sym__inline] = STATE(710), - [sym__symbol_fallback] = STATE(355), - [aux_sym__list_dash_repeat1] = STATE(409), - [aux_sym__list_plus_repeat1] = STATE(410), - [aux_sym__list_star_repeat1] = STATE(407), + [sym_link_reference_definition] = STATE(266), + [sym_block_attribute] = STATE(266), + [sym__paragraph] = STATE(266), + [sym__paragraph_content] = STATE(785), + [sym__paragraph_inline_content] = STATE(930), + [sym__inline] = STATE(695), + [sym__symbol_fallback] = STATE(358), + [aux_sym__list_dash_repeat1] = STATE(431), + [aux_sym__list_plus_repeat1] = STATE(414), + [aux_sym__list_star_repeat1] = STATE(416), [aux_sym__list_task_repeat1] = STATE(396), - [aux_sym__list_definition_repeat1] = STATE(602), - [aux_sym__list_decimal_period_repeat1] = STATE(603), - [aux_sym__list_decimal_paren_repeat1] = STATE(604), - [aux_sym__list_decimal_parens_repeat1] = STATE(605), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(606), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(607), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(608), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(609), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(610), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(611), - [aux_sym__list_lower_roman_period_repeat1] = STATE(612), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(613), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(595), - [aux_sym__list_upper_roman_period_repeat1] = STATE(581), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(559), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(558), - [aux_sym_table_repeat1] = STATE(66), - [aux_sym_footnote_content_repeat1] = STATE(22), - [aux_sym__block_quote_prefix_repeat1] = STATE(316), - [aux_sym__inline_repeat1] = STATE(355), - [anon_sym_LBRACK] = ACTIONS(216), - [anon_sym_PIPE] = ACTIONS(218), + [aux_sym__list_definition_repeat1] = STATE(560), + [aux_sym__list_decimal_period_repeat1] = STATE(561), + [aux_sym__list_decimal_paren_repeat1] = STATE(562), + [aux_sym__list_decimal_parens_repeat1] = STATE(563), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(564), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(621), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(566), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(567), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(568), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(569), + [aux_sym__list_lower_roman_period_repeat1] = STATE(570), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(571), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(572), + [aux_sym__list_upper_roman_period_repeat1] = STATE(573), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(574), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(575), + [aux_sym_table_repeat1] = STATE(64), + [aux_sym_footnote_content_repeat1] = STATE(21), + [aux_sym__block_quote_prefix_repeat1] = STATE(313), + [aux_sym__inline_repeat1] = STATE(358), + [anon_sym_LBRACK] = ACTIONS(75), + [anon_sym_PIPE] = ACTIONS(77), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(79), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(222), - [sym__heading_begin] = ACTIONS(224), + [sym__block_close] = ACTIONS(373), + [sym__newline] = ACTIONS(218), + [sym__heading_begin] = ACTIONS(19), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(226), + [sym__code_block_begin] = ACTIONS(85), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -6979,115 +7252,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(228), - [sym__block_quote_continuation] = ACTIONS(230), - [sym__thematic_break_dash] = ACTIONS(232), - [sym__thematic_break_star] = ACTIONS(232), + [sym__block_quote_begin] = ACTIONS(87), + [sym__block_quote_continuation] = ACTIONS(220), + [sym__thematic_break_dash] = ACTIONS(89), + [sym__thematic_break_star] = ACTIONS(89), }, [21] = { - [sym__block_with_heading] = STATE(230), - [sym__block_element] = STATE(230), - [sym_heading] = STATE(230), - [sym_list] = STATE(230), - [sym__list_dash] = STATE(186), - [sym__list_item_dash] = STATE(415), - [sym__list_plus] = STATE(186), - [sym__list_item_plus] = STATE(406), - [sym__list_star] = STATE(186), - [sym__list_item_star] = STATE(408), - [sym__list_task] = STATE(186), - [sym__list_item_task] = STATE(391), - [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(186), - [sym__list_item_definition] = STATE(570), - [sym__list_decimal_period] = STATE(186), - [sym__list_item_decimal_period] = STATE(573), - [sym__list_decimal_paren] = STATE(186), - [sym__list_item_decimal_paren] = STATE(575), - [sym__list_decimal_parens] = STATE(186), - [sym__list_item_decimal_parens] = STATE(578), - [sym__list_lower_alpha_period] = STATE(186), - [sym__list_item_lower_alpha_period] = STATE(495), - [sym__list_lower_alpha_paren] = STATE(186), - [sym__list_item_lower_alpha_paren] = STATE(583), - [sym__list_lower_alpha_parens] = STATE(186), - [sym__list_item_lower_alpha_parens] = STATE(494), - [sym__list_upper_alpha_period] = STATE(186), - [sym__list_item_upper_alpha_period] = STATE(584), - [sym__list_upper_alpha_paren] = STATE(186), - [sym__list_item_upper_alpha_paren] = STATE(586), - [sym__list_upper_alpha_parens] = STATE(186), - [sym__list_item_upper_alpha_parens] = STATE(587), - [sym__list_lower_roman_period] = STATE(186), - [sym__list_item_lower_roman_period] = STATE(588), - [sym__list_lower_roman_paren] = STATE(186), - [sym__list_item_lower_roman_paren] = STATE(590), - [sym__list_lower_roman_parens] = STATE(186), - [sym__list_item_lower_roman_parens] = STATE(591), - [sym__list_upper_roman_period] = STATE(186), - [sym__list_item_upper_roman_period] = STATE(592), - [sym__list_upper_roman_paren] = STATE(186), - [sym__list_item_upper_roman_paren] = STATE(596), - [sym__list_upper_roman_parens] = STATE(186), - [sym__list_item_upper_roman_parens] = STATE(597), - [sym_table] = STATE(230), + [sym__block_with_heading] = STATE(266), + [sym__block_element] = STATE(266), + [sym_heading] = STATE(266), + [sym_list] = STATE(266), + [sym__list_dash] = STATE(162), + [sym__list_item_dash] = STATE(634), + [sym__list_plus] = STATE(162), + [sym__list_item_plus] = STATE(651), + [sym__list_star] = STATE(162), + [sym__list_item_star] = STATE(697), + [sym__list_task] = STATE(162), + [sym__list_item_task] = STATE(707), + [sym_list_marker_task] = STATE(47), + [sym__list_definition] = STATE(162), + [sym__list_item_definition] = STATE(736), + [sym__list_decimal_period] = STATE(162), + [sym__list_item_decimal_period] = STATE(795), + [sym__list_decimal_paren] = STATE(162), + [sym__list_item_decimal_paren] = STATE(848), + [sym__list_decimal_parens] = STATE(162), + [sym__list_item_decimal_parens] = STATE(772), + [sym__list_lower_alpha_period] = STATE(162), + [sym__list_item_lower_alpha_period] = STATE(787), + [sym__list_lower_alpha_paren] = STATE(162), + [sym__list_item_lower_alpha_paren] = STATE(792), + [sym__list_lower_alpha_parens] = STATE(162), + [sym__list_item_lower_alpha_parens] = STATE(793), + [sym__list_upper_alpha_period] = STATE(162), + [sym__list_item_upper_alpha_period] = STATE(797), + [sym__list_upper_alpha_paren] = STATE(162), + [sym__list_item_upper_alpha_paren] = STATE(798), + [sym__list_upper_alpha_parens] = STATE(162), + [sym__list_item_upper_alpha_parens] = STATE(799), + [sym__list_lower_roman_period] = STATE(162), + [sym__list_item_lower_roman_period] = STATE(801), + [sym__list_lower_roman_paren] = STATE(162), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(162), + [sym__list_item_lower_roman_parens] = STATE(814), + [sym__list_upper_roman_period] = STATE(162), + [sym__list_item_upper_roman_period] = STATE(818), + [sym__list_upper_roman_paren] = STATE(162), + [sym__list_item_upper_roman_paren] = STATE(819), + [sym__list_upper_roman_parens] = STATE(162), + [sym__list_item_upper_roman_parens] = STATE(822), + [sym_table] = STATE(266), [sym__table_content] = STATE(64), [sym_table_separator] = STATE(64), - [sym_table_row] = STATE(72), - [sym_footnote] = STATE(230), - [sym_footnote_marker_begin] = STATE(1084), - [sym_div] = STATE(230), - [sym_div_marker_begin] = STATE(996), - [sym_code_block] = STATE(230), - [sym_raw_block] = STATE(230), - [sym_thematic_break] = STATE(230), - [sym_block_quote] = STATE(230), - [sym__block_quote_prefix] = STATE(277), - [sym_link_reference_definition] = STATE(230), - [sym_block_attribute] = STATE(230), - [sym__paragraph] = STATE(230), - [sym__paragraph_content] = STATE(811), - [sym__inline] = STATE(710), - [sym__symbol_fallback] = STATE(355), - [aux_sym__list_dash_repeat1] = STATE(415), - [aux_sym__list_plus_repeat1] = STATE(406), - [aux_sym__list_star_repeat1] = STATE(408), - [aux_sym__list_task_repeat1] = STATE(391), - [aux_sym__list_definition_repeat1] = STATE(570), - [aux_sym__list_decimal_period_repeat1] = STATE(573), - [aux_sym__list_decimal_paren_repeat1] = STATE(575), - [aux_sym__list_decimal_parens_repeat1] = STATE(578), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(495), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(583), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(494), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(584), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(586), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(587), - [aux_sym__list_lower_roman_period_repeat1] = STATE(588), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(590), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(591), - [aux_sym__list_upper_roman_period_repeat1] = STATE(592), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(596), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(597), + [sym_table_row] = STATE(71), + [sym_footnote] = STATE(266), + [sym_footnote_marker_begin] = STATE(1120), + [sym_div] = STATE(266), + [sym__div_marker_begin] = STATE(1032), + [sym_code_block] = STATE(266), + [sym_raw_block] = STATE(266), + [sym_thematic_break] = STATE(266), + [sym_block_quote] = STATE(266), + [sym__block_quote_prefix] = STATE(285), + [sym_link_reference_definition] = STATE(266), + [sym_block_attribute] = STATE(266), + [sym__paragraph] = STATE(266), + [sym__paragraph_content] = STATE(785), + [sym__paragraph_inline_content] = STATE(930), + [sym__inline] = STATE(695), + [sym__symbol_fallback] = STATE(358), + [aux_sym__list_dash_repeat1] = STATE(431), + [aux_sym__list_plus_repeat1] = STATE(414), + [aux_sym__list_star_repeat1] = STATE(416), + [aux_sym__list_task_repeat1] = STATE(396), + [aux_sym__list_definition_repeat1] = STATE(560), + [aux_sym__list_decimal_period_repeat1] = STATE(561), + [aux_sym__list_decimal_paren_repeat1] = STATE(562), + [aux_sym__list_decimal_parens_repeat1] = STATE(563), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(564), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(621), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(566), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(567), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(568), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(569), + [aux_sym__list_lower_roman_period_repeat1] = STATE(570), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(571), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(572), + [aux_sym__list_upper_roman_period_repeat1] = STATE(573), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(574), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(575), [aux_sym_table_repeat1] = STATE(64), - [aux_sym_footnote_content_repeat1] = STATE(19), - [aux_sym__block_quote_prefix_repeat1] = STATE(302), - [aux_sym__inline_repeat1] = STATE(355), - [anon_sym_LBRACK] = ACTIONS(71), - [anon_sym_PIPE] = ACTIONS(73), + [aux_sym_footnote_content_repeat1] = STATE(15), + [aux_sym__block_quote_prefix_repeat1] = STATE(313), + [aux_sym__inline_repeat1] = STATE(358), + [anon_sym_LBRACK] = ACTIONS(75), + [anon_sym_PIPE] = ACTIONS(77), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(79), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__block_close] = ACTIONS(346), - [sym__newline] = ACTIONS(236), + [sym__block_close] = ACTIONS(375), + [sym__newline] = ACTIONS(218), [sym__heading_begin] = ACTIONS(19), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(81), + [sym__code_block_begin] = ACTIONS(85), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -7108,114 +7382,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(83), - [sym__block_quote_continuation] = ACTIONS(238), - [sym__thematic_break_dash] = ACTIONS(85), - [sym__thematic_break_star] = ACTIONS(85), + [sym__block_quote_begin] = ACTIONS(87), + [sym__block_quote_continuation] = ACTIONS(220), + [sym__thematic_break_dash] = ACTIONS(89), + [sym__thematic_break_star] = ACTIONS(89), }, [22] = { - [sym__block_with_heading] = STATE(167), - [sym__block_element] = STATE(167), - [sym_heading] = STATE(167), - [sym_list] = STATE(167), - [sym__list_dash] = STATE(153), - [sym__list_item_dash] = STATE(409), - [sym__list_plus] = STATE(153), - [sym__list_item_plus] = STATE(410), - [sym__list_star] = STATE(153), - [sym__list_item_star] = STATE(407), - [sym__list_task] = STATE(153), - [sym__list_item_task] = STATE(396), - [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(153), - [sym__list_item_definition] = STATE(602), - [sym__list_decimal_period] = STATE(153), - [sym__list_item_decimal_period] = STATE(603), - [sym__list_decimal_paren] = STATE(153), - [sym__list_item_decimal_paren] = STATE(604), - [sym__list_decimal_parens] = STATE(153), - [sym__list_item_decimal_parens] = STATE(605), - [sym__list_lower_alpha_period] = STATE(153), - [sym__list_item_lower_alpha_period] = STATE(606), - [sym__list_lower_alpha_paren] = STATE(153), - [sym__list_item_lower_alpha_paren] = STATE(607), - [sym__list_lower_alpha_parens] = STATE(153), - [sym__list_item_lower_alpha_parens] = STATE(608), - [sym__list_upper_alpha_period] = STATE(153), - [sym__list_item_upper_alpha_period] = STATE(609), - [sym__list_upper_alpha_paren] = STATE(153), - [sym__list_item_upper_alpha_paren] = STATE(610), - [sym__list_upper_alpha_parens] = STATE(153), - [sym__list_item_upper_alpha_parens] = STATE(611), - [sym__list_lower_roman_period] = STATE(153), - [sym__list_item_lower_roman_period] = STATE(612), - [sym__list_lower_roman_paren] = STATE(153), - [sym__list_item_lower_roman_paren] = STATE(613), - [sym__list_lower_roman_parens] = STATE(153), - [sym__list_item_lower_roman_parens] = STATE(595), - [sym__list_upper_roman_period] = STATE(153), - [sym__list_item_upper_roman_period] = STATE(581), - [sym__list_upper_roman_paren] = STATE(153), - [sym__list_item_upper_roman_paren] = STATE(559), - [sym__list_upper_roman_parens] = STATE(153), - [sym__list_item_upper_roman_parens] = STATE(558), - [sym_table] = STATE(167), - [sym__table_content] = STATE(66), - [sym_table_separator] = STATE(66), + [sym__block_with_heading] = STATE(266), + [sym__block_element] = STATE(266), + [sym_heading] = STATE(266), + [sym_list] = STATE(266), + [sym__list_dash] = STATE(162), + [sym__list_item_dash] = STATE(634), + [sym__list_plus] = STATE(162), + [sym__list_item_plus] = STATE(651), + [sym__list_star] = STATE(162), + [sym__list_item_star] = STATE(697), + [sym__list_task] = STATE(162), + [sym__list_item_task] = STATE(707), + [sym_list_marker_task] = STATE(47), + [sym__list_definition] = STATE(162), + [sym__list_item_definition] = STATE(736), + [sym__list_decimal_period] = STATE(162), + [sym__list_item_decimal_period] = STATE(795), + [sym__list_decimal_paren] = STATE(162), + [sym__list_item_decimal_paren] = STATE(848), + [sym__list_decimal_parens] = STATE(162), + [sym__list_item_decimal_parens] = STATE(772), + [sym__list_lower_alpha_period] = STATE(162), + [sym__list_item_lower_alpha_period] = STATE(787), + [sym__list_lower_alpha_paren] = STATE(162), + [sym__list_item_lower_alpha_paren] = STATE(792), + [sym__list_lower_alpha_parens] = STATE(162), + [sym__list_item_lower_alpha_parens] = STATE(793), + [sym__list_upper_alpha_period] = STATE(162), + [sym__list_item_upper_alpha_period] = STATE(797), + [sym__list_upper_alpha_paren] = STATE(162), + [sym__list_item_upper_alpha_paren] = STATE(798), + [sym__list_upper_alpha_parens] = STATE(162), + [sym__list_item_upper_alpha_parens] = STATE(799), + [sym__list_lower_roman_period] = STATE(162), + [sym__list_item_lower_roman_period] = STATE(801), + [sym__list_lower_roman_paren] = STATE(162), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(162), + [sym__list_item_lower_roman_parens] = STATE(814), + [sym__list_upper_roman_period] = STATE(162), + [sym__list_item_upper_roman_period] = STATE(818), + [sym__list_upper_roman_paren] = STATE(162), + [sym__list_item_upper_roman_paren] = STATE(819), + [sym__list_upper_roman_parens] = STATE(162), + [sym__list_item_upper_roman_parens] = STATE(822), + [sym_table] = STATE(266), + [sym__table_content] = STATE(64), + [sym_table_separator] = STATE(64), [sym_table_row] = STATE(71), - [sym_footnote] = STATE(167), - [sym_footnote_marker_begin] = STATE(1086), - [sym_div] = STATE(167), - [sym_div_marker_begin] = STATE(1017), - [sym_code_block] = STATE(167), - [sym_raw_block] = STATE(167), - [sym_thematic_break] = STATE(167), - [sym_block_quote] = STATE(167), - [sym__block_quote_prefix] = STATE(286), - [sym_link_reference_definition] = STATE(167), - [sym_block_attribute] = STATE(167), - [sym__paragraph] = STATE(167), - [sym__paragraph_content] = STATE(867), - [sym__inline] = STATE(710), - [sym__symbol_fallback] = STATE(355), - [aux_sym__list_dash_repeat1] = STATE(409), - [aux_sym__list_plus_repeat1] = STATE(410), - [aux_sym__list_star_repeat1] = STATE(407), + [sym_footnote] = STATE(266), + [sym_footnote_marker_begin] = STATE(1120), + [sym_div] = STATE(266), + [sym__div_marker_begin] = STATE(1032), + [sym_code_block] = STATE(266), + [sym_raw_block] = STATE(266), + [sym_thematic_break] = STATE(266), + [sym_block_quote] = STATE(266), + [sym__block_quote_prefix] = STATE(288), + [sym_link_reference_definition] = STATE(266), + [sym_block_attribute] = STATE(266), + [sym__paragraph] = STATE(266), + [sym__paragraph_content] = STATE(785), + [sym__paragraph_inline_content] = STATE(930), + [sym__inline] = STATE(695), + [sym__symbol_fallback] = STATE(358), + [aux_sym__list_dash_repeat1] = STATE(431), + [aux_sym__list_plus_repeat1] = STATE(414), + [aux_sym__list_star_repeat1] = STATE(416), [aux_sym__list_task_repeat1] = STATE(396), - [aux_sym__list_definition_repeat1] = STATE(602), - [aux_sym__list_decimal_period_repeat1] = STATE(603), - [aux_sym__list_decimal_paren_repeat1] = STATE(604), - [aux_sym__list_decimal_parens_repeat1] = STATE(605), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(606), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(607), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(608), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(609), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(610), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(611), - [aux_sym__list_lower_roman_period_repeat1] = STATE(612), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(613), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(595), - [aux_sym__list_upper_roman_period_repeat1] = STATE(581), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(559), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(558), - [aux_sym_table_repeat1] = STATE(66), - [aux_sym_footnote_content_repeat1] = STATE(28), - [aux_sym__block_quote_prefix_repeat1] = STATE(316), - [aux_sym__inline_repeat1] = STATE(355), - [anon_sym_LBRACK] = ACTIONS(216), - [anon_sym_PIPE] = ACTIONS(218), + [aux_sym__list_definition_repeat1] = STATE(560), + [aux_sym__list_decimal_period_repeat1] = STATE(561), + [aux_sym__list_decimal_paren_repeat1] = STATE(562), + [aux_sym__list_decimal_parens_repeat1] = STATE(563), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(564), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(621), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(566), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(567), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(568), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(569), + [aux_sym__list_lower_roman_period_repeat1] = STATE(570), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(571), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(572), + [aux_sym__list_upper_roman_period_repeat1] = STATE(573), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(574), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(575), + [aux_sym_table_repeat1] = STATE(64), + [aux_sym_footnote_content_repeat1] = STATE(23), + [aux_sym__block_quote_prefix_repeat1] = STATE(313), + [aux_sym__inline_repeat1] = STATE(358), + [anon_sym_LBRACK] = ACTIONS(75), + [anon_sym_PIPE] = ACTIONS(77), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(79), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(222), - [sym__heading_begin] = ACTIONS(224), + [sym__block_close] = ACTIONS(377), + [sym__newline] = ACTIONS(218), + [sym__heading_begin] = ACTIONS(19), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(226), + [sym__code_block_begin] = ACTIONS(85), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -7236,116 +7512,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(228), - [sym__block_quote_continuation] = ACTIONS(230), - [sym__thematic_break_dash] = ACTIONS(232), - [sym__thematic_break_star] = ACTIONS(232), - [sym__footnote_end] = ACTIONS(348), + [sym__block_quote_begin] = ACTIONS(87), + [sym__block_quote_continuation] = ACTIONS(220), + [sym__thematic_break_dash] = ACTIONS(89), + [sym__thematic_break_star] = ACTIONS(89), }, [23] = { - [sym__block_with_heading] = STATE(230), - [sym__block_element] = STATE(230), - [sym_heading] = STATE(230), - [sym_list] = STATE(230), - [sym__list_dash] = STATE(186), - [sym__list_item_dash] = STATE(415), - [sym__list_plus] = STATE(186), - [sym__list_item_plus] = STATE(406), - [sym__list_star] = STATE(186), - [sym__list_item_star] = STATE(408), - [sym__list_task] = STATE(186), - [sym__list_item_task] = STATE(391), - [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(186), - [sym__list_item_definition] = STATE(570), - [sym__list_decimal_period] = STATE(186), - [sym__list_item_decimal_period] = STATE(573), - [sym__list_decimal_paren] = STATE(186), - [sym__list_item_decimal_paren] = STATE(575), - [sym__list_decimal_parens] = STATE(186), - [sym__list_item_decimal_parens] = STATE(578), - [sym__list_lower_alpha_period] = STATE(186), - [sym__list_item_lower_alpha_period] = STATE(495), - [sym__list_lower_alpha_paren] = STATE(186), - [sym__list_item_lower_alpha_paren] = STATE(583), - [sym__list_lower_alpha_parens] = STATE(186), - [sym__list_item_lower_alpha_parens] = STATE(494), - [sym__list_upper_alpha_period] = STATE(186), - [sym__list_item_upper_alpha_period] = STATE(584), - [sym__list_upper_alpha_paren] = STATE(186), - [sym__list_item_upper_alpha_paren] = STATE(586), - [sym__list_upper_alpha_parens] = STATE(186), - [sym__list_item_upper_alpha_parens] = STATE(587), - [sym__list_lower_roman_period] = STATE(186), - [sym__list_item_lower_roman_period] = STATE(588), - [sym__list_lower_roman_paren] = STATE(186), - [sym__list_item_lower_roman_paren] = STATE(590), - [sym__list_lower_roman_parens] = STATE(186), - [sym__list_item_lower_roman_parens] = STATE(591), - [sym__list_upper_roman_period] = STATE(186), - [sym__list_item_upper_roman_period] = STATE(592), - [sym__list_upper_roman_paren] = STATE(186), - [sym__list_item_upper_roman_paren] = STATE(596), - [sym__list_upper_roman_parens] = STATE(186), - [sym__list_item_upper_roman_parens] = STATE(597), - [sym_table] = STATE(230), + [sym__block_with_heading] = STATE(266), + [sym__block_element] = STATE(266), + [sym_heading] = STATE(266), + [sym_list] = STATE(266), + [sym__list_dash] = STATE(162), + [sym__list_item_dash] = STATE(634), + [sym__list_plus] = STATE(162), + [sym__list_item_plus] = STATE(651), + [sym__list_star] = STATE(162), + [sym__list_item_star] = STATE(697), + [sym__list_task] = STATE(162), + [sym__list_item_task] = STATE(707), + [sym_list_marker_task] = STATE(47), + [sym__list_definition] = STATE(162), + [sym__list_item_definition] = STATE(736), + [sym__list_decimal_period] = STATE(162), + [sym__list_item_decimal_period] = STATE(795), + [sym__list_decimal_paren] = STATE(162), + [sym__list_item_decimal_paren] = STATE(848), + [sym__list_decimal_parens] = STATE(162), + [sym__list_item_decimal_parens] = STATE(772), + [sym__list_lower_alpha_period] = STATE(162), + [sym__list_item_lower_alpha_period] = STATE(787), + [sym__list_lower_alpha_paren] = STATE(162), + [sym__list_item_lower_alpha_paren] = STATE(792), + [sym__list_lower_alpha_parens] = STATE(162), + [sym__list_item_lower_alpha_parens] = STATE(793), + [sym__list_upper_alpha_period] = STATE(162), + [sym__list_item_upper_alpha_period] = STATE(797), + [sym__list_upper_alpha_paren] = STATE(162), + [sym__list_item_upper_alpha_paren] = STATE(798), + [sym__list_upper_alpha_parens] = STATE(162), + [sym__list_item_upper_alpha_parens] = STATE(799), + [sym__list_lower_roman_period] = STATE(162), + [sym__list_item_lower_roman_period] = STATE(801), + [sym__list_lower_roman_paren] = STATE(162), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(162), + [sym__list_item_lower_roman_parens] = STATE(814), + [sym__list_upper_roman_period] = STATE(162), + [sym__list_item_upper_roman_period] = STATE(818), + [sym__list_upper_roman_paren] = STATE(162), + [sym__list_item_upper_roman_paren] = STATE(819), + [sym__list_upper_roman_parens] = STATE(162), + [sym__list_item_upper_roman_parens] = STATE(822), + [sym_table] = STATE(266), [sym__table_content] = STATE(64), [sym_table_separator] = STATE(64), - [sym_table_row] = STATE(72), - [sym_footnote] = STATE(230), - [sym_footnote_marker_begin] = STATE(1084), - [sym_div] = STATE(230), - [sym_div_marker_begin] = STATE(996), - [sym_code_block] = STATE(230), - [sym_raw_block] = STATE(230), - [sym_thematic_break] = STATE(230), - [sym_block_quote] = STATE(230), - [sym__block_quote_prefix] = STATE(276), - [sym_link_reference_definition] = STATE(230), - [sym_block_attribute] = STATE(230), - [sym__paragraph] = STATE(230), - [sym__paragraph_content] = STATE(811), - [sym__inline] = STATE(710), - [sym__symbol_fallback] = STATE(355), - [aux_sym__list_dash_repeat1] = STATE(415), - [aux_sym__list_plus_repeat1] = STATE(406), - [aux_sym__list_star_repeat1] = STATE(408), - [aux_sym__list_task_repeat1] = STATE(391), - [aux_sym__list_definition_repeat1] = STATE(570), - [aux_sym__list_decimal_period_repeat1] = STATE(573), - [aux_sym__list_decimal_paren_repeat1] = STATE(575), - [aux_sym__list_decimal_parens_repeat1] = STATE(578), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(495), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(583), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(494), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(584), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(586), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(587), - [aux_sym__list_lower_roman_period_repeat1] = STATE(588), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(590), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(591), - [aux_sym__list_upper_roman_period_repeat1] = STATE(592), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(596), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(597), + [sym_table_row] = STATE(71), + [sym_footnote] = STATE(266), + [sym_footnote_marker_begin] = STATE(1120), + [sym_div] = STATE(266), + [sym__div_marker_begin] = STATE(1032), + [sym_code_block] = STATE(266), + [sym_raw_block] = STATE(266), + [sym_thematic_break] = STATE(266), + [sym_block_quote] = STATE(266), + [sym__block_quote_prefix] = STATE(280), + [sym_link_reference_definition] = STATE(266), + [sym_block_attribute] = STATE(266), + [sym__paragraph] = STATE(266), + [sym__paragraph_content] = STATE(785), + [sym__paragraph_inline_content] = STATE(930), + [sym__inline] = STATE(695), + [sym__symbol_fallback] = STATE(358), + [aux_sym__list_dash_repeat1] = STATE(431), + [aux_sym__list_plus_repeat1] = STATE(414), + [aux_sym__list_star_repeat1] = STATE(416), + [aux_sym__list_task_repeat1] = STATE(396), + [aux_sym__list_definition_repeat1] = STATE(560), + [aux_sym__list_decimal_period_repeat1] = STATE(561), + [aux_sym__list_decimal_paren_repeat1] = STATE(562), + [aux_sym__list_decimal_parens_repeat1] = STATE(563), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(564), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(621), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(566), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(567), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(568), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(569), + [aux_sym__list_lower_roman_period_repeat1] = STATE(570), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(571), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(572), + [aux_sym__list_upper_roman_period_repeat1] = STATE(573), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(574), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(575), [aux_sym_table_repeat1] = STATE(64), - [aux_sym_footnote_content_repeat1] = STATE(24), - [aux_sym__block_quote_prefix_repeat1] = STATE(302), - [aux_sym__inline_repeat1] = STATE(355), - [anon_sym_LBRACK] = ACTIONS(71), - [anon_sym_PIPE] = ACTIONS(73), + [aux_sym_footnote_content_repeat1] = STATE(15), + [aux_sym__block_quote_prefix_repeat1] = STATE(313), + [aux_sym__inline_repeat1] = STATE(358), + [anon_sym_LBRACK] = ACTIONS(75), + [anon_sym_PIPE] = ACTIONS(77), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(79), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__block_close] = ACTIONS(350), - [sym__newline] = ACTIONS(236), + [sym__block_close] = ACTIONS(379), + [sym__newline] = ACTIONS(218), [sym__heading_begin] = ACTIONS(19), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(81), + [sym__code_block_begin] = ACTIONS(85), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -7366,115 +7642,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(83), - [sym__block_quote_continuation] = ACTIONS(238), - [sym__thematic_break_dash] = ACTIONS(85), - [sym__thematic_break_star] = ACTIONS(85), + [sym__block_quote_begin] = ACTIONS(87), + [sym__block_quote_continuation] = ACTIONS(220), + [sym__thematic_break_dash] = ACTIONS(89), + [sym__thematic_break_star] = ACTIONS(89), }, [24] = { - [sym__block_with_heading] = STATE(230), - [sym__block_element] = STATE(230), - [sym_heading] = STATE(230), - [sym_list] = STATE(230), - [sym__list_dash] = STATE(186), - [sym__list_item_dash] = STATE(415), - [sym__list_plus] = STATE(186), - [sym__list_item_plus] = STATE(406), - [sym__list_star] = STATE(186), - [sym__list_item_star] = STATE(408), - [sym__list_task] = STATE(186), - [sym__list_item_task] = STATE(391), - [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(186), - [sym__list_item_definition] = STATE(570), - [sym__list_decimal_period] = STATE(186), - [sym__list_item_decimal_period] = STATE(573), - [sym__list_decimal_paren] = STATE(186), - [sym__list_item_decimal_paren] = STATE(575), - [sym__list_decimal_parens] = STATE(186), - [sym__list_item_decimal_parens] = STATE(578), - [sym__list_lower_alpha_period] = STATE(186), - [sym__list_item_lower_alpha_period] = STATE(495), - [sym__list_lower_alpha_paren] = STATE(186), - [sym__list_item_lower_alpha_paren] = STATE(583), - [sym__list_lower_alpha_parens] = STATE(186), - [sym__list_item_lower_alpha_parens] = STATE(494), - [sym__list_upper_alpha_period] = STATE(186), - [sym__list_item_upper_alpha_period] = STATE(584), - [sym__list_upper_alpha_paren] = STATE(186), - [sym__list_item_upper_alpha_paren] = STATE(586), - [sym__list_upper_alpha_parens] = STATE(186), - [sym__list_item_upper_alpha_parens] = STATE(587), - [sym__list_lower_roman_period] = STATE(186), - [sym__list_item_lower_roman_period] = STATE(588), - [sym__list_lower_roman_paren] = STATE(186), - [sym__list_item_lower_roman_paren] = STATE(590), - [sym__list_lower_roman_parens] = STATE(186), - [sym__list_item_lower_roman_parens] = STATE(591), - [sym__list_upper_roman_period] = STATE(186), - [sym__list_item_upper_roman_period] = STATE(592), - [sym__list_upper_roman_paren] = STATE(186), - [sym__list_item_upper_roman_paren] = STATE(596), - [sym__list_upper_roman_parens] = STATE(186), - [sym__list_item_upper_roman_parens] = STATE(597), - [sym_table] = STATE(230), + [sym__block_with_heading] = STATE(266), + [sym__block_element] = STATE(266), + [sym_heading] = STATE(266), + [sym_list] = STATE(266), + [sym__list_dash] = STATE(162), + [sym__list_item_dash] = STATE(634), + [sym__list_plus] = STATE(162), + [sym__list_item_plus] = STATE(651), + [sym__list_star] = STATE(162), + [sym__list_item_star] = STATE(697), + [sym__list_task] = STATE(162), + [sym__list_item_task] = STATE(707), + [sym_list_marker_task] = STATE(47), + [sym__list_definition] = STATE(162), + [sym__list_item_definition] = STATE(736), + [sym__list_decimal_period] = STATE(162), + [sym__list_item_decimal_period] = STATE(795), + [sym__list_decimal_paren] = STATE(162), + [sym__list_item_decimal_paren] = STATE(848), + [sym__list_decimal_parens] = STATE(162), + [sym__list_item_decimal_parens] = STATE(772), + [sym__list_lower_alpha_period] = STATE(162), + [sym__list_item_lower_alpha_period] = STATE(787), + [sym__list_lower_alpha_paren] = STATE(162), + [sym__list_item_lower_alpha_paren] = STATE(792), + [sym__list_lower_alpha_parens] = STATE(162), + [sym__list_item_lower_alpha_parens] = STATE(793), + [sym__list_upper_alpha_period] = STATE(162), + [sym__list_item_upper_alpha_period] = STATE(797), + [sym__list_upper_alpha_paren] = STATE(162), + [sym__list_item_upper_alpha_paren] = STATE(798), + [sym__list_upper_alpha_parens] = STATE(162), + [sym__list_item_upper_alpha_parens] = STATE(799), + [sym__list_lower_roman_period] = STATE(162), + [sym__list_item_lower_roman_period] = STATE(801), + [sym__list_lower_roman_paren] = STATE(162), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(162), + [sym__list_item_lower_roman_parens] = STATE(814), + [sym__list_upper_roman_period] = STATE(162), + [sym__list_item_upper_roman_period] = STATE(818), + [sym__list_upper_roman_paren] = STATE(162), + [sym__list_item_upper_roman_paren] = STATE(819), + [sym__list_upper_roman_parens] = STATE(162), + [sym__list_item_upper_roman_parens] = STATE(822), + [sym_table] = STATE(266), [sym__table_content] = STATE(64), [sym_table_separator] = STATE(64), - [sym_table_row] = STATE(72), - [sym_footnote] = STATE(230), - [sym_footnote_marker_begin] = STATE(1084), - [sym_div] = STATE(230), - [sym_div_marker_begin] = STATE(996), - [sym_code_block] = STATE(230), - [sym_raw_block] = STATE(230), - [sym_thematic_break] = STATE(230), - [sym_block_quote] = STATE(230), - [sym__block_quote_prefix] = STATE(275), - [sym_link_reference_definition] = STATE(230), - [sym_block_attribute] = STATE(230), - [sym__paragraph] = STATE(230), - [sym__paragraph_content] = STATE(811), - [sym__inline] = STATE(710), - [sym__symbol_fallback] = STATE(355), - [aux_sym__list_dash_repeat1] = STATE(415), - [aux_sym__list_plus_repeat1] = STATE(406), - [aux_sym__list_star_repeat1] = STATE(408), - [aux_sym__list_task_repeat1] = STATE(391), - [aux_sym__list_definition_repeat1] = STATE(570), - [aux_sym__list_decimal_period_repeat1] = STATE(573), - [aux_sym__list_decimal_paren_repeat1] = STATE(575), - [aux_sym__list_decimal_parens_repeat1] = STATE(578), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(495), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(583), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(494), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(584), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(586), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(587), - [aux_sym__list_lower_roman_period_repeat1] = STATE(588), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(590), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(591), - [aux_sym__list_upper_roman_period_repeat1] = STATE(592), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(596), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(597), + [sym_table_row] = STATE(71), + [sym_footnote] = STATE(266), + [sym_footnote_marker_begin] = STATE(1120), + [sym_div] = STATE(266), + [sym__div_marker_begin] = STATE(1032), + [sym_code_block] = STATE(266), + [sym_raw_block] = STATE(266), + [sym_thematic_break] = STATE(266), + [sym_block_quote] = STATE(266), + [sym__block_quote_prefix] = STATE(283), + [sym_link_reference_definition] = STATE(266), + [sym_block_attribute] = STATE(266), + [sym__paragraph] = STATE(266), + [sym__paragraph_content] = STATE(785), + [sym__paragraph_inline_content] = STATE(930), + [sym__inline] = STATE(695), + [sym__symbol_fallback] = STATE(358), + [aux_sym__list_dash_repeat1] = STATE(431), + [aux_sym__list_plus_repeat1] = STATE(414), + [aux_sym__list_star_repeat1] = STATE(416), + [aux_sym__list_task_repeat1] = STATE(396), + [aux_sym__list_definition_repeat1] = STATE(560), + [aux_sym__list_decimal_period_repeat1] = STATE(561), + [aux_sym__list_decimal_paren_repeat1] = STATE(562), + [aux_sym__list_decimal_parens_repeat1] = STATE(563), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(564), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(621), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(566), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(567), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(568), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(569), + [aux_sym__list_lower_roman_period_repeat1] = STATE(570), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(571), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(572), + [aux_sym__list_upper_roman_period_repeat1] = STATE(573), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(574), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(575), [aux_sym_table_repeat1] = STATE(64), - [aux_sym_footnote_content_repeat1] = STATE(19), - [aux_sym__block_quote_prefix_repeat1] = STATE(302), - [aux_sym__inline_repeat1] = STATE(355), - [anon_sym_LBRACK] = ACTIONS(71), - [anon_sym_PIPE] = ACTIONS(73), + [aux_sym_footnote_content_repeat1] = STATE(25), + [aux_sym__block_quote_prefix_repeat1] = STATE(313), + [aux_sym__inline_repeat1] = STATE(358), + [anon_sym_LBRACK] = ACTIONS(75), + [anon_sym_PIPE] = ACTIONS(77), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(79), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__block_close] = ACTIONS(352), - [sym__newline] = ACTIONS(236), + [sym__block_close] = ACTIONS(381), + [sym__newline] = ACTIONS(218), [sym__heading_begin] = ACTIONS(19), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(81), + [sym__code_block_begin] = ACTIONS(85), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -7495,115 +7772,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(83), - [sym__block_quote_continuation] = ACTIONS(238), - [sym__thematic_break_dash] = ACTIONS(85), - [sym__thematic_break_star] = ACTIONS(85), + [sym__block_quote_begin] = ACTIONS(87), + [sym__block_quote_continuation] = ACTIONS(220), + [sym__thematic_break_dash] = ACTIONS(89), + [sym__thematic_break_star] = ACTIONS(89), }, [25] = { - [sym__block_with_heading] = STATE(230), - [sym__block_element] = STATE(230), - [sym_heading] = STATE(230), - [sym_list] = STATE(230), - [sym__list_dash] = STATE(186), - [sym__list_item_dash] = STATE(415), - [sym__list_plus] = STATE(186), - [sym__list_item_plus] = STATE(406), - [sym__list_star] = STATE(186), - [sym__list_item_star] = STATE(408), - [sym__list_task] = STATE(186), - [sym__list_item_task] = STATE(391), - [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(186), - [sym__list_item_definition] = STATE(570), - [sym__list_decimal_period] = STATE(186), - [sym__list_item_decimal_period] = STATE(573), - [sym__list_decimal_paren] = STATE(186), - [sym__list_item_decimal_paren] = STATE(575), - [sym__list_decimal_parens] = STATE(186), - [sym__list_item_decimal_parens] = STATE(578), - [sym__list_lower_alpha_period] = STATE(186), - [sym__list_item_lower_alpha_period] = STATE(495), - [sym__list_lower_alpha_paren] = STATE(186), - [sym__list_item_lower_alpha_paren] = STATE(583), - [sym__list_lower_alpha_parens] = STATE(186), - [sym__list_item_lower_alpha_parens] = STATE(494), - [sym__list_upper_alpha_period] = STATE(186), - [sym__list_item_upper_alpha_period] = STATE(584), - [sym__list_upper_alpha_paren] = STATE(186), - [sym__list_item_upper_alpha_paren] = STATE(586), - [sym__list_upper_alpha_parens] = STATE(186), - [sym__list_item_upper_alpha_parens] = STATE(587), - [sym__list_lower_roman_period] = STATE(186), - [sym__list_item_lower_roman_period] = STATE(588), - [sym__list_lower_roman_paren] = STATE(186), - [sym__list_item_lower_roman_paren] = STATE(590), - [sym__list_lower_roman_parens] = STATE(186), - [sym__list_item_lower_roman_parens] = STATE(591), - [sym__list_upper_roman_period] = STATE(186), - [sym__list_item_upper_roman_period] = STATE(592), - [sym__list_upper_roman_paren] = STATE(186), - [sym__list_item_upper_roman_paren] = STATE(596), - [sym__list_upper_roman_parens] = STATE(186), - [sym__list_item_upper_roman_parens] = STATE(597), - [sym_table] = STATE(230), + [sym__block_with_heading] = STATE(266), + [sym__block_element] = STATE(266), + [sym_heading] = STATE(266), + [sym_list] = STATE(266), + [sym__list_dash] = STATE(162), + [sym__list_item_dash] = STATE(634), + [sym__list_plus] = STATE(162), + [sym__list_item_plus] = STATE(651), + [sym__list_star] = STATE(162), + [sym__list_item_star] = STATE(697), + [sym__list_task] = STATE(162), + [sym__list_item_task] = STATE(707), + [sym_list_marker_task] = STATE(47), + [sym__list_definition] = STATE(162), + [sym__list_item_definition] = STATE(736), + [sym__list_decimal_period] = STATE(162), + [sym__list_item_decimal_period] = STATE(795), + [sym__list_decimal_paren] = STATE(162), + [sym__list_item_decimal_paren] = STATE(848), + [sym__list_decimal_parens] = STATE(162), + [sym__list_item_decimal_parens] = STATE(772), + [sym__list_lower_alpha_period] = STATE(162), + [sym__list_item_lower_alpha_period] = STATE(787), + [sym__list_lower_alpha_paren] = STATE(162), + [sym__list_item_lower_alpha_paren] = STATE(792), + [sym__list_lower_alpha_parens] = STATE(162), + [sym__list_item_lower_alpha_parens] = STATE(793), + [sym__list_upper_alpha_period] = STATE(162), + [sym__list_item_upper_alpha_period] = STATE(797), + [sym__list_upper_alpha_paren] = STATE(162), + [sym__list_item_upper_alpha_paren] = STATE(798), + [sym__list_upper_alpha_parens] = STATE(162), + [sym__list_item_upper_alpha_parens] = STATE(799), + [sym__list_lower_roman_period] = STATE(162), + [sym__list_item_lower_roman_period] = STATE(801), + [sym__list_lower_roman_paren] = STATE(162), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(162), + [sym__list_item_lower_roman_parens] = STATE(814), + [sym__list_upper_roman_period] = STATE(162), + [sym__list_item_upper_roman_period] = STATE(818), + [sym__list_upper_roman_paren] = STATE(162), + [sym__list_item_upper_roman_paren] = STATE(819), + [sym__list_upper_roman_parens] = STATE(162), + [sym__list_item_upper_roman_parens] = STATE(822), + [sym_table] = STATE(266), [sym__table_content] = STATE(64), [sym_table_separator] = STATE(64), - [sym_table_row] = STATE(72), - [sym_footnote] = STATE(230), - [sym_footnote_marker_begin] = STATE(1084), - [sym_div] = STATE(230), - [sym_div_marker_begin] = STATE(996), - [sym_code_block] = STATE(230), - [sym_raw_block] = STATE(230), - [sym_thematic_break] = STATE(230), - [sym_block_quote] = STATE(230), - [sym__block_quote_prefix] = STATE(282), - [sym_link_reference_definition] = STATE(230), - [sym_block_attribute] = STATE(230), - [sym__paragraph] = STATE(230), - [sym__paragraph_content] = STATE(811), - [sym__inline] = STATE(710), - [sym__symbol_fallback] = STATE(355), - [aux_sym__list_dash_repeat1] = STATE(415), - [aux_sym__list_plus_repeat1] = STATE(406), - [aux_sym__list_star_repeat1] = STATE(408), - [aux_sym__list_task_repeat1] = STATE(391), - [aux_sym__list_definition_repeat1] = STATE(570), - [aux_sym__list_decimal_period_repeat1] = STATE(573), - [aux_sym__list_decimal_paren_repeat1] = STATE(575), - [aux_sym__list_decimal_parens_repeat1] = STATE(578), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(495), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(583), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(494), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(584), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(586), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(587), - [aux_sym__list_lower_roman_period_repeat1] = STATE(588), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(590), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(591), - [aux_sym__list_upper_roman_period_repeat1] = STATE(592), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(596), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(597), + [sym_table_row] = STATE(71), + [sym_footnote] = STATE(266), + [sym_footnote_marker_begin] = STATE(1120), + [sym_div] = STATE(266), + [sym__div_marker_begin] = STATE(1032), + [sym_code_block] = STATE(266), + [sym_raw_block] = STATE(266), + [sym_thematic_break] = STATE(266), + [sym_block_quote] = STATE(266), + [sym__block_quote_prefix] = STATE(289), + [sym_link_reference_definition] = STATE(266), + [sym_block_attribute] = STATE(266), + [sym__paragraph] = STATE(266), + [sym__paragraph_content] = STATE(785), + [sym__paragraph_inline_content] = STATE(930), + [sym__inline] = STATE(695), + [sym__symbol_fallback] = STATE(358), + [aux_sym__list_dash_repeat1] = STATE(431), + [aux_sym__list_plus_repeat1] = STATE(414), + [aux_sym__list_star_repeat1] = STATE(416), + [aux_sym__list_task_repeat1] = STATE(396), + [aux_sym__list_definition_repeat1] = STATE(560), + [aux_sym__list_decimal_period_repeat1] = STATE(561), + [aux_sym__list_decimal_paren_repeat1] = STATE(562), + [aux_sym__list_decimal_parens_repeat1] = STATE(563), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(564), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(621), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(566), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(567), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(568), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(569), + [aux_sym__list_lower_roman_period_repeat1] = STATE(570), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(571), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(572), + [aux_sym__list_upper_roman_period_repeat1] = STATE(573), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(574), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(575), [aux_sym_table_repeat1] = STATE(64), [aux_sym_footnote_content_repeat1] = STATE(15), - [aux_sym__block_quote_prefix_repeat1] = STATE(302), - [aux_sym__inline_repeat1] = STATE(355), - [anon_sym_LBRACK] = ACTIONS(71), - [anon_sym_PIPE] = ACTIONS(73), + [aux_sym__block_quote_prefix_repeat1] = STATE(313), + [aux_sym__inline_repeat1] = STATE(358), + [anon_sym_LBRACK] = ACTIONS(75), + [anon_sym_PIPE] = ACTIONS(77), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(79), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__block_close] = ACTIONS(354), - [sym__newline] = ACTIONS(236), + [sym__block_close] = ACTIONS(383), + [sym__newline] = ACTIONS(218), [sym__heading_begin] = ACTIONS(19), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(81), + [sym__code_block_begin] = ACTIONS(85), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -7624,115 +7902,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(83), - [sym__block_quote_continuation] = ACTIONS(238), - [sym__thematic_break_dash] = ACTIONS(85), - [sym__thematic_break_star] = ACTIONS(85), + [sym__block_quote_begin] = ACTIONS(87), + [sym__block_quote_continuation] = ACTIONS(220), + [sym__thematic_break_dash] = ACTIONS(89), + [sym__thematic_break_star] = ACTIONS(89), }, [26] = { - [sym__block_with_heading] = STATE(167), - [sym__block_element] = STATE(167), - [sym_heading] = STATE(167), - [sym_list] = STATE(167), - [sym__list_dash] = STATE(153), - [sym__list_item_dash] = STATE(409), - [sym__list_plus] = STATE(153), - [sym__list_item_plus] = STATE(410), - [sym__list_star] = STATE(153), - [sym__list_item_star] = STATE(407), - [sym__list_task] = STATE(153), - [sym__list_item_task] = STATE(396), - [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(153), - [sym__list_item_definition] = STATE(602), - [sym__list_decimal_period] = STATE(153), - [sym__list_item_decimal_period] = STATE(603), - [sym__list_decimal_paren] = STATE(153), - [sym__list_item_decimal_paren] = STATE(604), - [sym__list_decimal_parens] = STATE(153), - [sym__list_item_decimal_parens] = STATE(605), - [sym__list_lower_alpha_period] = STATE(153), - [sym__list_item_lower_alpha_period] = STATE(606), - [sym__list_lower_alpha_paren] = STATE(153), - [sym__list_item_lower_alpha_paren] = STATE(607), - [sym__list_lower_alpha_parens] = STATE(153), - [sym__list_item_lower_alpha_parens] = STATE(608), - [sym__list_upper_alpha_period] = STATE(153), - [sym__list_item_upper_alpha_period] = STATE(609), - [sym__list_upper_alpha_paren] = STATE(153), - [sym__list_item_upper_alpha_paren] = STATE(610), - [sym__list_upper_alpha_parens] = STATE(153), - [sym__list_item_upper_alpha_parens] = STATE(611), - [sym__list_lower_roman_period] = STATE(153), - [sym__list_item_lower_roman_period] = STATE(612), - [sym__list_lower_roman_paren] = STATE(153), - [sym__list_item_lower_roman_paren] = STATE(613), - [sym__list_lower_roman_parens] = STATE(153), - [sym__list_item_lower_roman_parens] = STATE(595), - [sym__list_upper_roman_period] = STATE(153), - [sym__list_item_upper_roman_period] = STATE(581), - [sym__list_upper_roman_paren] = STATE(153), - [sym__list_item_upper_roman_paren] = STATE(559), - [sym__list_upper_roman_parens] = STATE(153), - [sym__list_item_upper_roman_parens] = STATE(558), - [sym_table] = STATE(167), - [sym__table_content] = STATE(66), - [sym_table_separator] = STATE(66), - [sym_table_row] = STATE(71), - [sym_footnote] = STATE(167), - [sym_footnote_marker_begin] = STATE(1086), - [sym_footnote_content] = STATE(997), - [sym_div] = STATE(167), - [sym_div_marker_begin] = STATE(1017), - [sym_code_block] = STATE(167), - [sym_raw_block] = STATE(167), - [sym_thematic_break] = STATE(167), - [sym_block_quote] = STATE(167), - [sym__block_quote_prefix] = STATE(286), - [sym_link_reference_definition] = STATE(167), - [sym_block_attribute] = STATE(167), - [sym__paragraph] = STATE(167), - [sym__paragraph_content] = STATE(867), - [sym__inline] = STATE(710), - [sym__symbol_fallback] = STATE(355), - [aux_sym__list_dash_repeat1] = STATE(409), - [aux_sym__list_plus_repeat1] = STATE(410), - [aux_sym__list_star_repeat1] = STATE(407), - [aux_sym__list_task_repeat1] = STATE(396), - [aux_sym__list_definition_repeat1] = STATE(602), - [aux_sym__list_decimal_period_repeat1] = STATE(603), - [aux_sym__list_decimal_paren_repeat1] = STATE(604), - [aux_sym__list_decimal_parens_repeat1] = STATE(605), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(606), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(607), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(608), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(609), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(610), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(611), - [aux_sym__list_lower_roman_period_repeat1] = STATE(612), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(613), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(595), - [aux_sym__list_upper_roman_period_repeat1] = STATE(581), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(559), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(558), - [aux_sym_table_repeat1] = STATE(66), - [aux_sym_footnote_content_repeat1] = STATE(22), - [aux_sym__block_quote_prefix_repeat1] = STATE(316), - [aux_sym__inline_repeat1] = STATE(355), - [anon_sym_LBRACK] = ACTIONS(216), - [anon_sym_PIPE] = ACTIONS(218), + [sym__block_with_heading] = STATE(159), + [sym__block_element] = STATE(159), + [sym_heading] = STATE(159), + [sym_list] = STATE(159), + [sym__list_dash] = STATE(223), + [sym__list_item_dash] = STATE(634), + [sym__list_plus] = STATE(223), + [sym__list_item_plus] = STATE(651), + [sym__list_star] = STATE(223), + [sym__list_item_star] = STATE(697), + [sym__list_task] = STATE(223), + [sym__list_item_task] = STATE(707), + [sym_list_marker_task] = STATE(47), + [sym__list_definition] = STATE(223), + [sym__list_item_definition] = STATE(736), + [sym__list_decimal_period] = STATE(223), + [sym__list_item_decimal_period] = STATE(795), + [sym__list_decimal_paren] = STATE(223), + [sym__list_item_decimal_paren] = STATE(848), + [sym__list_decimal_parens] = STATE(223), + [sym__list_item_decimal_parens] = STATE(772), + [sym__list_lower_alpha_period] = STATE(223), + [sym__list_item_lower_alpha_period] = STATE(787), + [sym__list_lower_alpha_paren] = STATE(223), + [sym__list_item_lower_alpha_paren] = STATE(792), + [sym__list_lower_alpha_parens] = STATE(223), + [sym__list_item_lower_alpha_parens] = STATE(793), + [sym__list_upper_alpha_period] = STATE(223), + [sym__list_item_upper_alpha_period] = STATE(797), + [sym__list_upper_alpha_paren] = STATE(223), + [sym__list_item_upper_alpha_paren] = STATE(798), + [sym__list_upper_alpha_parens] = STATE(223), + [sym__list_item_upper_alpha_parens] = STATE(799), + [sym__list_lower_roman_period] = STATE(223), + [sym__list_item_lower_roman_period] = STATE(801), + [sym__list_lower_roman_paren] = STATE(223), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(223), + [sym__list_item_lower_roman_parens] = STATE(814), + [sym__list_upper_roman_period] = STATE(223), + [sym__list_item_upper_roman_period] = STATE(818), + [sym__list_upper_roman_paren] = STATE(223), + [sym__list_item_upper_roman_paren] = STATE(819), + [sym__list_upper_roman_parens] = STATE(223), + [sym__list_item_upper_roman_parens] = STATE(822), + [sym_table] = STATE(159), + [sym__table_content] = STATE(65), + [sym_table_separator] = STATE(65), + [sym_table_row] = STATE(70), + [sym_footnote] = STATE(159), + [sym_footnote_marker_begin] = STATE(1122), + [sym_footnote_content] = STATE(1024), + [sym_div] = STATE(159), + [sym__div_marker_begin] = STATE(1053), + [sym_code_block] = STATE(159), + [sym_raw_block] = STATE(159), + [sym_thematic_break] = STATE(159), + [sym_block_quote] = STATE(159), + [sym__block_quote_prefix] = STATE(291), + [sym_link_reference_definition] = STATE(159), + [sym_block_attribute] = STATE(159), + [sym__paragraph] = STATE(159), + [sym__paragraph_content] = STATE(812), + [sym__paragraph_inline_content] = STATE(930), + [sym__inline] = STATE(695), + [sym__symbol_fallback] = STATE(358), + [aux_sym__list_dash_repeat1] = STATE(424), + [aux_sym__list_plus_repeat1] = STATE(425), + [aux_sym__list_star_repeat1] = STATE(427), + [aux_sym__list_task_repeat1] = STATE(409), + [aux_sym__list_definition_repeat1] = STATE(577), + [aux_sym__list_decimal_period_repeat1] = STATE(578), + [aux_sym__list_decimal_paren_repeat1] = STATE(579), + [aux_sym__list_decimal_parens_repeat1] = STATE(580), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(581), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(582), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(583), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(584), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(585), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(586), + [aux_sym__list_lower_roman_period_repeat1] = STATE(587), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(588), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(589), + [aux_sym__list_upper_roman_period_repeat1] = STATE(590), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(591), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(592), + [aux_sym_table_repeat1] = STATE(65), + [aux_sym_footnote_content_repeat1] = STATE(16), + [aux_sym__block_quote_prefix_repeat1] = STATE(320), + [aux_sym__inline_repeat1] = STATE(358), + [anon_sym_LBRACK] = ACTIONS(222), + [anon_sym_PIPE] = ACTIONS(224), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(226), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(222), - [sym__heading_begin] = ACTIONS(224), + [sym__newline] = ACTIONS(228), + [sym__heading_begin] = ACTIONS(230), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(226), + [sym__code_block_begin] = ACTIONS(232), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -7753,115 +8032,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(228), - [sym__block_quote_continuation] = ACTIONS(230), - [sym__thematic_break_dash] = ACTIONS(232), - [sym__thematic_break_star] = ACTIONS(232), + [sym__block_quote_begin] = ACTIONS(234), + [sym__block_quote_continuation] = ACTIONS(236), + [sym__thematic_break_dash] = ACTIONS(238), + [sym__thematic_break_star] = ACTIONS(238), }, [27] = { - [sym__block_with_heading] = STATE(230), - [sym__block_element] = STATE(230), - [sym_heading] = STATE(230), - [sym_list] = STATE(230), - [sym__list_dash] = STATE(186), - [sym__list_item_dash] = STATE(415), - [sym__list_plus] = STATE(186), - [sym__list_item_plus] = STATE(406), - [sym__list_star] = STATE(186), - [sym__list_item_star] = STATE(408), - [sym__list_task] = STATE(186), - [sym__list_item_task] = STATE(391), - [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(186), - [sym__list_item_definition] = STATE(570), - [sym__list_decimal_period] = STATE(186), - [sym__list_item_decimal_period] = STATE(573), - [sym__list_decimal_paren] = STATE(186), - [sym__list_item_decimal_paren] = STATE(575), - [sym__list_decimal_parens] = STATE(186), - [sym__list_item_decimal_parens] = STATE(578), - [sym__list_lower_alpha_period] = STATE(186), - [sym__list_item_lower_alpha_period] = STATE(495), - [sym__list_lower_alpha_paren] = STATE(186), - [sym__list_item_lower_alpha_paren] = STATE(583), - [sym__list_lower_alpha_parens] = STATE(186), - [sym__list_item_lower_alpha_parens] = STATE(494), - [sym__list_upper_alpha_period] = STATE(186), - [sym__list_item_upper_alpha_period] = STATE(584), - [sym__list_upper_alpha_paren] = STATE(186), - [sym__list_item_upper_alpha_paren] = STATE(586), - [sym__list_upper_alpha_parens] = STATE(186), - [sym__list_item_upper_alpha_parens] = STATE(587), - [sym__list_lower_roman_period] = STATE(186), - [sym__list_item_lower_roman_period] = STATE(588), - [sym__list_lower_roman_paren] = STATE(186), - [sym__list_item_lower_roman_paren] = STATE(590), - [sym__list_lower_roman_parens] = STATE(186), - [sym__list_item_lower_roman_parens] = STATE(591), - [sym__list_upper_roman_period] = STATE(186), - [sym__list_item_upper_roman_period] = STATE(592), - [sym__list_upper_roman_paren] = STATE(186), - [sym__list_item_upper_roman_paren] = STATE(596), - [sym__list_upper_roman_parens] = STATE(186), - [sym__list_item_upper_roman_parens] = STATE(597), - [sym_table] = STATE(230), - [sym__table_content] = STATE(64), - [sym_table_separator] = STATE(64), - [sym_table_row] = STATE(72), - [sym_footnote] = STATE(230), - [sym_footnote_marker_begin] = STATE(1084), - [sym_div] = STATE(230), - [sym_div_marker_begin] = STATE(996), - [sym_code_block] = STATE(230), - [sym_raw_block] = STATE(230), - [sym_thematic_break] = STATE(230), - [sym_block_quote] = STATE(230), - [sym__block_quote_prefix] = STATE(279), - [sym_link_reference_definition] = STATE(230), - [sym_block_attribute] = STATE(230), - [sym__paragraph] = STATE(230), - [sym__paragraph_content] = STATE(811), - [sym__inline] = STATE(710), - [sym__symbol_fallback] = STATE(355), - [aux_sym__list_dash_repeat1] = STATE(415), - [aux_sym__list_plus_repeat1] = STATE(406), - [aux_sym__list_star_repeat1] = STATE(408), - [aux_sym__list_task_repeat1] = STATE(391), - [aux_sym__list_definition_repeat1] = STATE(570), - [aux_sym__list_decimal_period_repeat1] = STATE(573), - [aux_sym__list_decimal_paren_repeat1] = STATE(575), - [aux_sym__list_decimal_parens_repeat1] = STATE(578), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(495), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(583), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(494), + [sym__block_with_heading] = STATE(159), + [sym__block_element] = STATE(159), + [sym_heading] = STATE(159), + [sym_list] = STATE(159), + [sym__list_dash] = STATE(223), + [sym__list_item_dash] = STATE(634), + [sym__list_plus] = STATE(223), + [sym__list_item_plus] = STATE(651), + [sym__list_star] = STATE(223), + [sym__list_item_star] = STATE(697), + [sym__list_task] = STATE(223), + [sym__list_item_task] = STATE(707), + [sym_list_marker_task] = STATE(47), + [sym__list_definition] = STATE(223), + [sym__list_item_definition] = STATE(736), + [sym__list_decimal_period] = STATE(223), + [sym__list_item_decimal_period] = STATE(795), + [sym__list_decimal_paren] = STATE(223), + [sym__list_item_decimal_paren] = STATE(848), + [sym__list_decimal_parens] = STATE(223), + [sym__list_item_decimal_parens] = STATE(772), + [sym__list_lower_alpha_period] = STATE(223), + [sym__list_item_lower_alpha_period] = STATE(787), + [sym__list_lower_alpha_paren] = STATE(223), + [sym__list_item_lower_alpha_paren] = STATE(792), + [sym__list_lower_alpha_parens] = STATE(223), + [sym__list_item_lower_alpha_parens] = STATE(793), + [sym__list_upper_alpha_period] = STATE(223), + [sym__list_item_upper_alpha_period] = STATE(797), + [sym__list_upper_alpha_paren] = STATE(223), + [sym__list_item_upper_alpha_paren] = STATE(798), + [sym__list_upper_alpha_parens] = STATE(223), + [sym__list_item_upper_alpha_parens] = STATE(799), + [sym__list_lower_roman_period] = STATE(223), + [sym__list_item_lower_roman_period] = STATE(801), + [sym__list_lower_roman_paren] = STATE(223), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(223), + [sym__list_item_lower_roman_parens] = STATE(814), + [sym__list_upper_roman_period] = STATE(223), + [sym__list_item_upper_roman_period] = STATE(818), + [sym__list_upper_roman_paren] = STATE(223), + [sym__list_item_upper_roman_paren] = STATE(819), + [sym__list_upper_roman_parens] = STATE(223), + [sym__list_item_upper_roman_parens] = STATE(822), + [sym_table] = STATE(159), + [sym__table_content] = STATE(65), + [sym_table_separator] = STATE(65), + [sym_table_row] = STATE(70), + [sym_footnote] = STATE(159), + [sym_footnote_marker_begin] = STATE(1122), + [sym_footnote_content] = STATE(958), + [sym_div] = STATE(159), + [sym__div_marker_begin] = STATE(1053), + [sym_code_block] = STATE(159), + [sym_raw_block] = STATE(159), + [sym_thematic_break] = STATE(159), + [sym_block_quote] = STATE(159), + [sym__block_quote_prefix] = STATE(291), + [sym_link_reference_definition] = STATE(159), + [sym_block_attribute] = STATE(159), + [sym__paragraph] = STATE(159), + [sym__paragraph_content] = STATE(812), + [sym__paragraph_inline_content] = STATE(930), + [sym__inline] = STATE(695), + [sym__symbol_fallback] = STATE(358), + [aux_sym__list_dash_repeat1] = STATE(424), + [aux_sym__list_plus_repeat1] = STATE(425), + [aux_sym__list_star_repeat1] = STATE(427), + [aux_sym__list_task_repeat1] = STATE(409), + [aux_sym__list_definition_repeat1] = STATE(577), + [aux_sym__list_decimal_period_repeat1] = STATE(578), + [aux_sym__list_decimal_paren_repeat1] = STATE(579), + [aux_sym__list_decimal_parens_repeat1] = STATE(580), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(581), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(582), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(583), [aux_sym__list_upper_alpha_period_repeat1] = STATE(584), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(586), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(587), - [aux_sym__list_lower_roman_period_repeat1] = STATE(588), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(590), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(591), - [aux_sym__list_upper_roman_period_repeat1] = STATE(592), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(596), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(597), - [aux_sym_table_repeat1] = STATE(64), - [aux_sym_footnote_content_repeat1] = STATE(19), - [aux_sym__block_quote_prefix_repeat1] = STATE(302), - [aux_sym__inline_repeat1] = STATE(355), - [anon_sym_LBRACK] = ACTIONS(71), - [anon_sym_PIPE] = ACTIONS(73), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(585), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(586), + [aux_sym__list_lower_roman_period_repeat1] = STATE(587), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(588), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(589), + [aux_sym__list_upper_roman_period_repeat1] = STATE(590), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(591), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(592), + [aux_sym_table_repeat1] = STATE(65), + [aux_sym_footnote_content_repeat1] = STATE(16), + [aux_sym__block_quote_prefix_repeat1] = STATE(320), + [aux_sym__inline_repeat1] = STATE(358), + [anon_sym_LBRACK] = ACTIONS(222), + [anon_sym_PIPE] = ACTIONS(224), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(226), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__block_close] = ACTIONS(356), - [sym__newline] = ACTIONS(236), - [sym__heading_begin] = ACTIONS(19), + [sym__newline] = ACTIONS(228), + [sym__heading_begin] = ACTIONS(230), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(81), + [sym__code_block_begin] = ACTIONS(232), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -7882,229 +8162,231 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(83), - [sym__block_quote_continuation] = ACTIONS(238), - [sym__thematic_break_dash] = ACTIONS(85), - [sym__thematic_break_star] = ACTIONS(85), + [sym__block_quote_begin] = ACTIONS(234), + [sym__block_quote_continuation] = ACTIONS(236), + [sym__thematic_break_dash] = ACTIONS(238), + [sym__thematic_break_star] = ACTIONS(238), }, [28] = { - [sym__block_with_heading] = STATE(167), - [sym__block_element] = STATE(167), - [sym_heading] = STATE(167), - [sym_list] = STATE(167), - [sym__list_dash] = STATE(153), - [sym__list_item_dash] = STATE(409), - [sym__list_plus] = STATE(153), - [sym__list_item_plus] = STATE(410), - [sym__list_star] = STATE(153), - [sym__list_item_star] = STATE(407), - [sym__list_task] = STATE(153), - [sym__list_item_task] = STATE(396), - [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(153), - [sym__list_item_definition] = STATE(602), - [sym__list_decimal_period] = STATE(153), - [sym__list_item_decimal_period] = STATE(603), - [sym__list_decimal_paren] = STATE(153), - [sym__list_item_decimal_paren] = STATE(604), - [sym__list_decimal_parens] = STATE(153), - [sym__list_item_decimal_parens] = STATE(605), - [sym__list_lower_alpha_period] = STATE(153), - [sym__list_item_lower_alpha_period] = STATE(606), - [sym__list_lower_alpha_paren] = STATE(153), - [sym__list_item_lower_alpha_paren] = STATE(607), - [sym__list_lower_alpha_parens] = STATE(153), - [sym__list_item_lower_alpha_parens] = STATE(608), - [sym__list_upper_alpha_period] = STATE(153), - [sym__list_item_upper_alpha_period] = STATE(609), - [sym__list_upper_alpha_paren] = STATE(153), - [sym__list_item_upper_alpha_paren] = STATE(610), - [sym__list_upper_alpha_parens] = STATE(153), - [sym__list_item_upper_alpha_parens] = STATE(611), - [sym__list_lower_roman_period] = STATE(153), - [sym__list_item_lower_roman_period] = STATE(612), - [sym__list_lower_roman_paren] = STATE(153), - [sym__list_item_lower_roman_paren] = STATE(613), - [sym__list_lower_roman_parens] = STATE(153), - [sym__list_item_lower_roman_parens] = STATE(595), - [sym__list_upper_roman_period] = STATE(153), - [sym__list_item_upper_roman_period] = STATE(581), - [sym__list_upper_roman_paren] = STATE(153), - [sym__list_item_upper_roman_paren] = STATE(559), - [sym__list_upper_roman_parens] = STATE(153), - [sym__list_item_upper_roman_parens] = STATE(558), - [sym_table] = STATE(167), - [sym__table_content] = STATE(66), - [sym_table_separator] = STATE(66), - [sym_table_row] = STATE(71), - [sym_footnote] = STATE(167), - [sym_footnote_marker_begin] = STATE(1086), - [sym_div] = STATE(167), - [sym_div_marker_begin] = STATE(1017), - [sym_code_block] = STATE(167), - [sym_raw_block] = STATE(167), - [sym_thematic_break] = STATE(167), - [sym_block_quote] = STATE(167), - [sym__block_quote_prefix] = STATE(286), - [sym_link_reference_definition] = STATE(167), - [sym_block_attribute] = STATE(167), - [sym__paragraph] = STATE(167), - [sym__paragraph_content] = STATE(867), - [sym__inline] = STATE(710), - [sym__symbol_fallback] = STATE(355), - [aux_sym__list_dash_repeat1] = STATE(409), - [aux_sym__list_plus_repeat1] = STATE(410), - [aux_sym__list_star_repeat1] = STATE(407), - [aux_sym__list_task_repeat1] = STATE(396), - [aux_sym__list_definition_repeat1] = STATE(602), - [aux_sym__list_decimal_period_repeat1] = STATE(603), - [aux_sym__list_decimal_paren_repeat1] = STATE(604), - [aux_sym__list_decimal_parens_repeat1] = STATE(605), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(606), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(607), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(608), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(609), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(610), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(611), - [aux_sym__list_lower_roman_period_repeat1] = STATE(612), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(613), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(595), - [aux_sym__list_upper_roman_period_repeat1] = STATE(581), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(559), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(558), - [aux_sym_table_repeat1] = STATE(66), - [aux_sym_footnote_content_repeat1] = STATE(28), - [aux_sym__block_quote_prefix_repeat1] = STATE(316), - [aux_sym__inline_repeat1] = STATE(355), - [anon_sym_LBRACK] = ACTIONS(358), - [anon_sym_PIPE] = ACTIONS(361), - [anon_sym_LBRACK_CARET] = ACTIONS(254), - [anon_sym_LBRACE] = ACTIONS(364), - [anon_sym_DOT] = ACTIONS(260), - [aux_sym_identifier_token1] = ACTIONS(260), - [aux_sym__inline_token1] = ACTIONS(260), - [anon_sym_LBRACE_DASH] = ACTIONS(260), - [anon_sym_POUND] = ACTIONS(260), - [anon_sym_PERCENT] = ACTIONS(260), - [sym__newline] = ACTIONS(367), - [sym__heading_begin] = ACTIONS(370), - [sym__div_begin] = ACTIONS(271), - [sym__code_block_begin] = ACTIONS(373), - [sym_list_marker_dash] = ACTIONS(277), - [sym_list_marker_star] = ACTIONS(280), - [sym_list_marker_plus] = ACTIONS(283), - [sym__list_marker_task_begin] = ACTIONS(286), - [sym_list_marker_definition] = ACTIONS(289), - [sym_list_marker_decimal_period] = ACTIONS(292), - [sym_list_marker_lower_alpha_period] = ACTIONS(295), - [sym_list_marker_upper_alpha_period] = ACTIONS(298), - [sym_list_marker_lower_roman_period] = ACTIONS(301), - [sym_list_marker_upper_roman_period] = ACTIONS(304), - [sym_list_marker_decimal_paren] = ACTIONS(307), - [sym_list_marker_lower_alpha_paren] = ACTIONS(310), - [sym_list_marker_upper_alpha_paren] = ACTIONS(313), - [sym_list_marker_lower_roman_paren] = ACTIONS(316), - [sym_list_marker_upper_roman_paren] = ACTIONS(319), - [sym_list_marker_decimal_parens] = ACTIONS(322), - [sym_list_marker_lower_alpha_parens] = ACTIONS(325), - [sym_list_marker_upper_alpha_parens] = ACTIONS(328), - [sym_list_marker_lower_roman_parens] = ACTIONS(331), - [sym_list_marker_upper_roman_parens] = ACTIONS(334), - [sym__block_quote_begin] = ACTIONS(376), - [sym__block_quote_continuation] = ACTIONS(379), - [sym__thematic_break_dash] = ACTIONS(382), - [sym__thematic_break_star] = ACTIONS(382), - [sym__footnote_end] = ACTIONS(263), - }, + [sym__block_with_heading] = STATE(159), + [sym__block_element] = STATE(159), + [sym_heading] = STATE(159), + [sym_list] = STATE(159), + [sym__list_dash] = STATE(223), + [sym__list_item_dash] = STATE(634), + [sym__list_plus] = STATE(223), + [sym__list_item_plus] = STATE(651), + [sym__list_star] = STATE(223), + [sym__list_item_star] = STATE(697), + [sym__list_task] = STATE(223), + [sym__list_item_task] = STATE(707), + [sym_list_marker_task] = STATE(47), + [sym__list_definition] = STATE(223), + [sym__list_item_definition] = STATE(736), + [sym__list_decimal_period] = STATE(223), + [sym__list_item_decimal_period] = STATE(795), + [sym__list_decimal_paren] = STATE(223), + [sym__list_item_decimal_paren] = STATE(848), + [sym__list_decimal_parens] = STATE(223), + [sym__list_item_decimal_parens] = STATE(772), + [sym__list_lower_alpha_period] = STATE(223), + [sym__list_item_lower_alpha_period] = STATE(787), + [sym__list_lower_alpha_paren] = STATE(223), + [sym__list_item_lower_alpha_paren] = STATE(792), + [sym__list_lower_alpha_parens] = STATE(223), + [sym__list_item_lower_alpha_parens] = STATE(793), + [sym__list_upper_alpha_period] = STATE(223), + [sym__list_item_upper_alpha_period] = STATE(797), + [sym__list_upper_alpha_paren] = STATE(223), + [sym__list_item_upper_alpha_paren] = STATE(798), + [sym__list_upper_alpha_parens] = STATE(223), + [sym__list_item_upper_alpha_parens] = STATE(799), + [sym__list_lower_roman_period] = STATE(223), + [sym__list_item_lower_roman_period] = STATE(801), + [sym__list_lower_roman_paren] = STATE(223), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(223), + [sym__list_item_lower_roman_parens] = STATE(814), + [sym__list_upper_roman_period] = STATE(223), + [sym__list_item_upper_roman_period] = STATE(818), + [sym__list_upper_roman_paren] = STATE(223), + [sym__list_item_upper_roman_paren] = STATE(819), + [sym__list_upper_roman_parens] = STATE(223), + [sym__list_item_upper_roman_parens] = STATE(822), + [sym_table] = STATE(159), + [sym__table_content] = STATE(65), + [sym_table_separator] = STATE(65), + [sym_table_row] = STATE(70), + [sym_footnote] = STATE(159), + [sym_footnote_marker_begin] = STATE(1122), + [sym_footnote_content] = STATE(1034), + [sym_div] = STATE(159), + [sym__div_marker_begin] = STATE(1053), + [sym_code_block] = STATE(159), + [sym_raw_block] = STATE(159), + [sym_thematic_break] = STATE(159), + [sym_block_quote] = STATE(159), + [sym__block_quote_prefix] = STATE(291), + [sym_link_reference_definition] = STATE(159), + [sym_block_attribute] = STATE(159), + [sym__paragraph] = STATE(159), + [sym__paragraph_content] = STATE(812), + [sym__paragraph_inline_content] = STATE(930), + [sym__inline] = STATE(695), + [sym__symbol_fallback] = STATE(358), + [aux_sym__list_dash_repeat1] = STATE(424), + [aux_sym__list_plus_repeat1] = STATE(425), + [aux_sym__list_star_repeat1] = STATE(427), + [aux_sym__list_task_repeat1] = STATE(409), + [aux_sym__list_definition_repeat1] = STATE(577), + [aux_sym__list_decimal_period_repeat1] = STATE(578), + [aux_sym__list_decimal_paren_repeat1] = STATE(579), + [aux_sym__list_decimal_parens_repeat1] = STATE(580), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(581), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(582), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(583), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(584), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(585), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(586), + [aux_sym__list_lower_roman_period_repeat1] = STATE(587), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(588), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(589), + [aux_sym__list_upper_roman_period_repeat1] = STATE(590), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(591), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(592), + [aux_sym_table_repeat1] = STATE(65), + [aux_sym_footnote_content_repeat1] = STATE(16), + [aux_sym__block_quote_prefix_repeat1] = STATE(320), + [aux_sym__inline_repeat1] = STATE(358), + [anon_sym_LBRACK] = ACTIONS(222), + [anon_sym_PIPE] = ACTIONS(224), + [anon_sym_LBRACK_CARET] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(226), + [anon_sym_DOT] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(13), + [aux_sym__inline_token1] = ACTIONS(13), + [anon_sym_LBRACE_DASH] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(13), + [anon_sym_PERCENT] = ACTIONS(13), + [sym__newline] = ACTIONS(228), + [sym__heading_begin] = ACTIONS(230), + [sym__div_begin] = ACTIONS(21), + [sym__code_block_begin] = ACTIONS(232), + [sym_list_marker_dash] = ACTIONS(25), + [sym_list_marker_star] = ACTIONS(27), + [sym_list_marker_plus] = ACTIONS(29), + [sym__list_marker_task_begin] = ACTIONS(31), + [sym_list_marker_definition] = ACTIONS(33), + [sym_list_marker_decimal_period] = ACTIONS(35), + [sym_list_marker_lower_alpha_period] = ACTIONS(37), + [sym_list_marker_upper_alpha_period] = ACTIONS(39), + [sym_list_marker_lower_roman_period] = ACTIONS(41), + [sym_list_marker_upper_roman_period] = ACTIONS(43), + [sym_list_marker_decimal_paren] = ACTIONS(45), + [sym_list_marker_lower_alpha_paren] = ACTIONS(47), + [sym_list_marker_upper_alpha_paren] = ACTIONS(49), + [sym_list_marker_lower_roman_paren] = ACTIONS(51), + [sym_list_marker_upper_roman_paren] = ACTIONS(53), + [sym_list_marker_decimal_parens] = ACTIONS(55), + [sym_list_marker_lower_alpha_parens] = ACTIONS(57), + [sym_list_marker_upper_alpha_parens] = ACTIONS(59), + [sym_list_marker_lower_roman_parens] = ACTIONS(61), + [sym_list_marker_upper_roman_parens] = ACTIONS(63), + [sym__block_quote_begin] = ACTIONS(234), + [sym__block_quote_continuation] = ACTIONS(236), + [sym__thematic_break_dash] = ACTIONS(238), + [sym__thematic_break_star] = ACTIONS(238), + }, [29] = { - [sym__block_with_heading] = STATE(432), - [sym__block_element] = STATE(432), - [sym_heading] = STATE(432), - [sym_list] = STATE(432), - [sym__list_dash] = STATE(618), - [sym__list_item_dash] = STATE(420), - [sym__list_plus] = STATE(618), - [sym__list_item_plus] = STATE(421), - [sym__list_star] = STATE(618), - [sym__list_item_star] = STATE(422), - [sym__list_task] = STATE(618), - [sym__list_item_task] = STATE(404), - [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(618), - [sym__list_item_definition] = STATE(527), - [sym__list_decimal_period] = STATE(618), - [sym__list_item_decimal_period] = STATE(524), - [sym__list_decimal_paren] = STATE(618), - [sym__list_item_decimal_paren] = STATE(521), - [sym__list_decimal_parens] = STATE(618), - [sym__list_item_decimal_parens] = STATE(520), - [sym__list_lower_alpha_period] = STATE(618), - [sym__list_item_lower_alpha_period] = STATE(518), - [sym__list_lower_alpha_paren] = STATE(618), - [sym__list_item_lower_alpha_paren] = STATE(517), - [sym__list_lower_alpha_parens] = STATE(618), - [sym__list_item_lower_alpha_parens] = STATE(515), - [sym__list_upper_alpha_period] = STATE(618), - [sym__list_item_upper_alpha_period] = STATE(514), - [sym__list_upper_alpha_paren] = STATE(618), - [sym__list_item_upper_alpha_paren] = STATE(510), - [sym__list_upper_alpha_parens] = STATE(618), - [sym__list_item_upper_alpha_parens] = STATE(501), - [sym__list_lower_roman_period] = STATE(618), - [sym__list_item_lower_roman_period] = STATE(500), - [sym__list_lower_roman_paren] = STATE(618), - [sym__list_item_lower_roman_paren] = STATE(499), - [sym__list_lower_roman_parens] = STATE(618), - [sym__list_item_lower_roman_parens] = STATE(498), - [sym__list_upper_roman_period] = STATE(618), - [sym__list_item_upper_roman_period] = STATE(497), - [sym__list_upper_roman_paren] = STATE(618), - [sym__list_item_upper_roman_paren] = STATE(496), - [sym__list_upper_roman_parens] = STATE(618), - [sym__list_item_upper_roman_parens] = STATE(579), - [sym_list_item_content] = STATE(860), - [sym_table] = STATE(432), - [sym__table_content] = STATE(358), - [sym_table_separator] = STATE(358), - [sym_table_row] = STATE(383), - [sym_footnote] = STATE(432), - [sym_footnote_marker_begin] = STATE(1080), - [sym_div] = STATE(432), - [sym_div_marker_begin] = STATE(952), - [sym_code_block] = STATE(432), - [sym_raw_block] = STATE(432), - [sym_thematic_break] = STATE(432), - [sym_block_quote] = STATE(432), - [sym__block_quote_prefix] = STATE(285), - [sym_link_reference_definition] = STATE(432), - [sym_block_attribute] = STATE(432), - [sym__paragraph] = STATE(432), - [sym__paragraph_content] = STATE(890), - [sym__inline] = STATE(710), - [sym__symbol_fallback] = STATE(355), - [aux_sym__list_dash_repeat1] = STATE(420), - [aux_sym__list_plus_repeat1] = STATE(421), - [aux_sym__list_star_repeat1] = STATE(422), - [aux_sym__list_task_repeat1] = STATE(404), - [aux_sym__list_definition_repeat1] = STATE(527), - [aux_sym__list_decimal_period_repeat1] = STATE(524), - [aux_sym__list_decimal_paren_repeat1] = STATE(521), - [aux_sym__list_decimal_parens_repeat1] = STATE(520), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(518), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(515), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(514), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(510), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(501), - [aux_sym__list_lower_roman_period_repeat1] = STATE(500), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(499), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(498), - [aux_sym__list_upper_roman_period_repeat1] = STATE(497), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(579), - [aux_sym_table_repeat1] = STATE(358), - [aux_sym__block_quote_prefix_repeat1] = STATE(316), - [aux_sym__inline_repeat1] = STATE(355), + [sym__block_with_heading] = STATE(440), + [sym__block_element] = STATE(440), + [sym_heading] = STATE(440), + [sym_list] = STATE(440), + [sym__list_dash] = STATE(684), + [sym__list_item_dash] = STATE(634), + [sym__list_plus] = STATE(684), + [sym__list_item_plus] = STATE(651), + [sym__list_star] = STATE(684), + [sym__list_item_star] = STATE(697), + [sym__list_task] = STATE(684), + [sym__list_item_task] = STATE(707), + [sym_list_marker_task] = STATE(47), + [sym__list_definition] = STATE(684), + [sym__list_item_definition] = STATE(736), + [sym__list_decimal_period] = STATE(684), + [sym__list_item_decimal_period] = STATE(795), + [sym__list_decimal_paren] = STATE(684), + [sym__list_item_decimal_paren] = STATE(848), + [sym__list_decimal_parens] = STATE(684), + [sym__list_item_decimal_parens] = STATE(772), + [sym__list_lower_alpha_period] = STATE(684), + [sym__list_item_lower_alpha_period] = STATE(787), + [sym__list_lower_alpha_paren] = STATE(684), + [sym__list_item_lower_alpha_paren] = STATE(792), + [sym__list_lower_alpha_parens] = STATE(684), + [sym__list_item_lower_alpha_parens] = STATE(793), + [sym__list_upper_alpha_period] = STATE(684), + [sym__list_item_upper_alpha_period] = STATE(797), + [sym__list_upper_alpha_paren] = STATE(684), + [sym__list_item_upper_alpha_paren] = STATE(798), + [sym__list_upper_alpha_parens] = STATE(684), + [sym__list_item_upper_alpha_parens] = STATE(799), + [sym__list_lower_roman_period] = STATE(684), + [sym__list_item_lower_roman_period] = STATE(801), + [sym__list_lower_roman_paren] = STATE(684), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(684), + [sym__list_item_lower_roman_parens] = STATE(814), + [sym__list_upper_roman_period] = STATE(684), + [sym__list_item_upper_roman_period] = STATE(818), + [sym__list_upper_roman_paren] = STATE(684), + [sym__list_item_upper_roman_paren] = STATE(819), + [sym__list_upper_roman_parens] = STATE(684), + [sym__list_item_upper_roman_parens] = STATE(822), + [sym_list_item_content] = STATE(763), + [sym_table] = STATE(440), + [sym__table_content] = STATE(368), + [sym_table_separator] = STATE(368), + [sym_table_row] = STATE(389), + [sym_footnote] = STATE(440), + [sym_footnote_marker_begin] = STATE(1116), + [sym_div] = STATE(440), + [sym__div_marker_begin] = STATE(988), + [sym_code_block] = STATE(440), + [sym_raw_block] = STATE(440), + [sym_thematic_break] = STATE(440), + [sym_block_quote] = STATE(440), + [sym__block_quote_prefix] = STATE(294), + [sym_link_reference_definition] = STATE(440), + [sym_block_attribute] = STATE(440), + [sym__paragraph] = STATE(440), + [sym__paragraph_content] = STATE(932), + [sym__paragraph_inline_content] = STATE(930), + [sym__inline] = STATE(695), + [sym__symbol_fallback] = STATE(358), + [aux_sym__list_dash_repeat1] = STATE(423), + [aux_sym__list_plus_repeat1] = STATE(417), + [aux_sym__list_star_repeat1] = STATE(420), + [aux_sym__list_task_repeat1] = STATE(395), + [aux_sym__list_definition_repeat1] = STATE(510), + [aux_sym__list_decimal_period_repeat1] = STATE(511), + [aux_sym__list_decimal_paren_repeat1] = STATE(512), + [aux_sym__list_decimal_parens_repeat1] = STATE(513), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(514), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(515), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(516), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(517), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(518), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(519), + [aux_sym__list_lower_roman_period_repeat1] = STATE(520), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(521), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(522), + [aux_sym__list_upper_roman_period_repeat1] = STATE(523), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(524), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(525), + [aux_sym_table_repeat1] = STATE(368), + [aux_sym__block_quote_prefix_repeat1] = STATE(320), + [aux_sym__inline_repeat1] = STATE(358), [anon_sym_LBRACK] = ACTIONS(385), [anon_sym_PIPE] = ACTIONS(387), [anon_sym_LBRACK_CARET] = ACTIONS(9), @@ -8145,94 +8427,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__thematic_break_star] = ACTIONS(401), }, [30] = { - [sym__block_with_heading] = STATE(479), - [sym__block_element] = STATE(479), - [sym_heading] = STATE(479), - [sym_list] = STATE(479), - [sym__list_dash] = STATE(618), - [sym__list_item_dash] = STATE(420), - [sym__list_plus] = STATE(618), - [sym__list_item_plus] = STATE(421), - [sym__list_star] = STATE(618), - [sym__list_item_star] = STATE(422), - [sym__list_task] = STATE(618), - [sym__list_item_task] = STATE(404), - [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(618), - [sym__list_item_definition] = STATE(527), - [sym__list_decimal_period] = STATE(618), - [sym__list_item_decimal_period] = STATE(524), - [sym__list_decimal_paren] = STATE(618), - [sym__list_item_decimal_paren] = STATE(521), - [sym__list_decimal_parens] = STATE(618), - [sym__list_item_decimal_parens] = STATE(520), - [sym__list_lower_alpha_period] = STATE(618), - [sym__list_item_lower_alpha_period] = STATE(518), - [sym__list_lower_alpha_paren] = STATE(618), - [sym__list_item_lower_alpha_paren] = STATE(517), - [sym__list_lower_alpha_parens] = STATE(618), - [sym__list_item_lower_alpha_parens] = STATE(515), - [sym__list_upper_alpha_period] = STATE(618), - [sym__list_item_upper_alpha_period] = STATE(514), - [sym__list_upper_alpha_paren] = STATE(618), - [sym__list_item_upper_alpha_paren] = STATE(510), - [sym__list_upper_alpha_parens] = STATE(618), - [sym__list_item_upper_alpha_parens] = STATE(501), - [sym__list_lower_roman_period] = STATE(618), - [sym__list_item_lower_roman_period] = STATE(500), - [sym__list_lower_roman_paren] = STATE(618), - [sym__list_item_lower_roman_paren] = STATE(499), - [sym__list_lower_roman_parens] = STATE(618), - [sym__list_item_lower_roman_parens] = STATE(498), - [sym__list_upper_roman_period] = STATE(618), - [sym__list_item_upper_roman_period] = STATE(497), - [sym__list_upper_roman_paren] = STATE(618), - [sym__list_item_upper_roman_paren] = STATE(496), - [sym__list_upper_roman_parens] = STATE(618), - [sym__list_item_upper_roman_parens] = STATE(579), - [sym_list_item_content] = STATE(686), - [sym_table] = STATE(479), - [sym__table_content] = STATE(358), - [sym_table_separator] = STATE(358), - [sym_table_row] = STATE(383), - [sym_footnote] = STATE(479), - [sym_footnote_marker_begin] = STATE(1080), - [sym_div] = STATE(479), - [sym_div_marker_begin] = STATE(952), - [sym_code_block] = STATE(479), - [sym_raw_block] = STATE(479), - [sym_thematic_break] = STATE(479), - [sym_block_quote] = STATE(479), - [sym__block_quote_prefix] = STATE(285), - [sym_link_reference_definition] = STATE(479), - [sym_block_attribute] = STATE(479), - [sym__paragraph] = STATE(479), - [sym__paragraph_content] = STATE(890), - [sym__inline] = STATE(710), - [sym__symbol_fallback] = STATE(355), - [aux_sym__list_dash_repeat1] = STATE(420), - [aux_sym__list_plus_repeat1] = STATE(421), - [aux_sym__list_star_repeat1] = STATE(422), - [aux_sym__list_task_repeat1] = STATE(404), - [aux_sym__list_definition_repeat1] = STATE(527), - [aux_sym__list_decimal_period_repeat1] = STATE(524), - [aux_sym__list_decimal_paren_repeat1] = STATE(521), - [aux_sym__list_decimal_parens_repeat1] = STATE(520), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(518), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(515), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(514), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(510), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(501), - [aux_sym__list_lower_roman_period_repeat1] = STATE(500), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(499), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(498), - [aux_sym__list_upper_roman_period_repeat1] = STATE(497), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(579), - [aux_sym_table_repeat1] = STATE(358), - [aux_sym__block_quote_prefix_repeat1] = STATE(316), - [aux_sym__inline_repeat1] = STATE(355), + [sym__block_with_heading] = STATE(486), + [sym__block_element] = STATE(486), + [sym_heading] = STATE(486), + [sym_list] = STATE(486), + [sym__list_dash] = STATE(684), + [sym__list_item_dash] = STATE(634), + [sym__list_plus] = STATE(684), + [sym__list_item_plus] = STATE(651), + [sym__list_star] = STATE(684), + [sym__list_item_star] = STATE(697), + [sym__list_task] = STATE(684), + [sym__list_item_task] = STATE(707), + [sym_list_marker_task] = STATE(47), + [sym__list_definition] = STATE(684), + [sym__list_item_definition] = STATE(736), + [sym__list_decimal_period] = STATE(684), + [sym__list_item_decimal_period] = STATE(795), + [sym__list_decimal_paren] = STATE(684), + [sym__list_item_decimal_paren] = STATE(848), + [sym__list_decimal_parens] = STATE(684), + [sym__list_item_decimal_parens] = STATE(772), + [sym__list_lower_alpha_period] = STATE(684), + [sym__list_item_lower_alpha_period] = STATE(787), + [sym__list_lower_alpha_paren] = STATE(684), + [sym__list_item_lower_alpha_paren] = STATE(792), + [sym__list_lower_alpha_parens] = STATE(684), + [sym__list_item_lower_alpha_parens] = STATE(793), + [sym__list_upper_alpha_period] = STATE(684), + [sym__list_item_upper_alpha_period] = STATE(797), + [sym__list_upper_alpha_paren] = STATE(684), + [sym__list_item_upper_alpha_paren] = STATE(798), + [sym__list_upper_alpha_parens] = STATE(684), + [sym__list_item_upper_alpha_parens] = STATE(799), + [sym__list_lower_roman_period] = STATE(684), + [sym__list_item_lower_roman_period] = STATE(801), + [sym__list_lower_roman_paren] = STATE(684), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(684), + [sym__list_item_lower_roman_parens] = STATE(814), + [sym__list_upper_roman_period] = STATE(684), + [sym__list_item_upper_roman_period] = STATE(818), + [sym__list_upper_roman_paren] = STATE(684), + [sym__list_item_upper_roman_paren] = STATE(819), + [sym__list_upper_roman_parens] = STATE(684), + [sym__list_item_upper_roman_parens] = STATE(822), + [sym_list_item_content] = STATE(739), + [sym_table] = STATE(486), + [sym__table_content] = STATE(368), + [sym_table_separator] = STATE(368), + [sym_table_row] = STATE(389), + [sym_footnote] = STATE(486), + [sym_footnote_marker_begin] = STATE(1116), + [sym_div] = STATE(486), + [sym__div_marker_begin] = STATE(988), + [sym_code_block] = STATE(486), + [sym_raw_block] = STATE(486), + [sym_thematic_break] = STATE(486), + [sym_block_quote] = STATE(486), + [sym__block_quote_prefix] = STATE(294), + [sym_link_reference_definition] = STATE(486), + [sym_block_attribute] = STATE(486), + [sym__paragraph] = STATE(486), + [sym__paragraph_content] = STATE(932), + [sym__paragraph_inline_content] = STATE(930), + [sym__inline] = STATE(695), + [sym__symbol_fallback] = STATE(358), + [aux_sym__list_dash_repeat1] = STATE(423), + [aux_sym__list_plus_repeat1] = STATE(417), + [aux_sym__list_star_repeat1] = STATE(420), + [aux_sym__list_task_repeat1] = STATE(395), + [aux_sym__list_definition_repeat1] = STATE(510), + [aux_sym__list_decimal_period_repeat1] = STATE(511), + [aux_sym__list_decimal_paren_repeat1] = STATE(512), + [aux_sym__list_decimal_parens_repeat1] = STATE(513), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(514), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(515), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(516), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(517), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(518), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(519), + [aux_sym__list_lower_roman_period_repeat1] = STATE(520), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(521), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(522), + [aux_sym__list_upper_roman_period_repeat1] = STATE(523), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(524), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(525), + [aux_sym_table_repeat1] = STATE(368), + [aux_sym__block_quote_prefix_repeat1] = STATE(320), + [aux_sym__inline_repeat1] = STATE(358), [anon_sym_LBRACK] = ACTIONS(385), [anon_sym_PIPE] = ACTIONS(387), [anon_sym_LBRACK_CARET] = ACTIONS(9), @@ -8273,94 +8556,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__thematic_break_star] = ACTIONS(401), }, [31] = { - [sym__block_with_heading] = STATE(447), - [sym__block_element] = STATE(447), - [sym_heading] = STATE(447), - [sym_list] = STATE(447), - [sym__list_dash] = STATE(618), - [sym__list_item_dash] = STATE(420), - [sym__list_plus] = STATE(618), - [sym__list_item_plus] = STATE(421), - [sym__list_star] = STATE(618), - [sym__list_item_star] = STATE(422), - [sym__list_task] = STATE(618), - [sym__list_item_task] = STATE(404), - [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(618), - [sym__list_item_definition] = STATE(527), - [sym__list_decimal_period] = STATE(618), - [sym__list_item_decimal_period] = STATE(524), - [sym__list_decimal_paren] = STATE(618), - [sym__list_item_decimal_paren] = STATE(521), - [sym__list_decimal_parens] = STATE(618), - [sym__list_item_decimal_parens] = STATE(520), - [sym__list_lower_alpha_period] = STATE(618), - [sym__list_item_lower_alpha_period] = STATE(518), - [sym__list_lower_alpha_paren] = STATE(618), - [sym__list_item_lower_alpha_paren] = STATE(517), - [sym__list_lower_alpha_parens] = STATE(618), - [sym__list_item_lower_alpha_parens] = STATE(515), - [sym__list_upper_alpha_period] = STATE(618), - [sym__list_item_upper_alpha_period] = STATE(514), - [sym__list_upper_alpha_paren] = STATE(618), - [sym__list_item_upper_alpha_paren] = STATE(510), - [sym__list_upper_alpha_parens] = STATE(618), - [sym__list_item_upper_alpha_parens] = STATE(501), - [sym__list_lower_roman_period] = STATE(618), - [sym__list_item_lower_roman_period] = STATE(500), - [sym__list_lower_roman_paren] = STATE(618), - [sym__list_item_lower_roman_paren] = STATE(499), - [sym__list_lower_roman_parens] = STATE(618), - [sym__list_item_lower_roman_parens] = STATE(498), - [sym__list_upper_roman_period] = STATE(618), - [sym__list_item_upper_roman_period] = STATE(497), - [sym__list_upper_roman_paren] = STATE(618), - [sym__list_item_upper_roman_paren] = STATE(496), - [sym__list_upper_roman_parens] = STATE(618), - [sym__list_item_upper_roman_parens] = STATE(579), - [sym_list_item_content] = STATE(864), - [sym_table] = STATE(447), - [sym__table_content] = STATE(358), - [sym_table_separator] = STATE(358), - [sym_table_row] = STATE(383), - [sym_footnote] = STATE(447), - [sym_footnote_marker_begin] = STATE(1080), - [sym_div] = STATE(447), - [sym_div_marker_begin] = STATE(952), - [sym_code_block] = STATE(447), - [sym_raw_block] = STATE(447), - [sym_thematic_break] = STATE(447), - [sym_block_quote] = STATE(447), - [sym__block_quote_prefix] = STATE(285), - [sym_link_reference_definition] = STATE(447), - [sym_block_attribute] = STATE(447), - [sym__paragraph] = STATE(447), - [sym__paragraph_content] = STATE(890), - [sym__inline] = STATE(710), - [sym__symbol_fallback] = STATE(355), - [aux_sym__list_dash_repeat1] = STATE(420), - [aux_sym__list_plus_repeat1] = STATE(421), - [aux_sym__list_star_repeat1] = STATE(422), - [aux_sym__list_task_repeat1] = STATE(404), - [aux_sym__list_definition_repeat1] = STATE(527), - [aux_sym__list_decimal_period_repeat1] = STATE(524), - [aux_sym__list_decimal_paren_repeat1] = STATE(521), - [aux_sym__list_decimal_parens_repeat1] = STATE(520), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(518), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(515), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(514), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(510), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(501), - [aux_sym__list_lower_roman_period_repeat1] = STATE(500), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(499), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(498), - [aux_sym__list_upper_roman_period_repeat1] = STATE(497), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(579), - [aux_sym_table_repeat1] = STATE(358), - [aux_sym__block_quote_prefix_repeat1] = STATE(316), - [aux_sym__inline_repeat1] = STATE(355), + [sym__block_with_heading] = STATE(460), + [sym__block_element] = STATE(460), + [sym_heading] = STATE(460), + [sym_list] = STATE(460), + [sym__list_dash] = STATE(684), + [sym__list_item_dash] = STATE(634), + [sym__list_plus] = STATE(684), + [sym__list_item_plus] = STATE(651), + [sym__list_star] = STATE(684), + [sym__list_item_star] = STATE(697), + [sym__list_task] = STATE(684), + [sym__list_item_task] = STATE(707), + [sym_list_marker_task] = STATE(47), + [sym__list_definition] = STATE(684), + [sym__list_item_definition] = STATE(736), + [sym__list_decimal_period] = STATE(684), + [sym__list_item_decimal_period] = STATE(795), + [sym__list_decimal_paren] = STATE(684), + [sym__list_item_decimal_paren] = STATE(848), + [sym__list_decimal_parens] = STATE(684), + [sym__list_item_decimal_parens] = STATE(772), + [sym__list_lower_alpha_period] = STATE(684), + [sym__list_item_lower_alpha_period] = STATE(787), + [sym__list_lower_alpha_paren] = STATE(684), + [sym__list_item_lower_alpha_paren] = STATE(792), + [sym__list_lower_alpha_parens] = STATE(684), + [sym__list_item_lower_alpha_parens] = STATE(793), + [sym__list_upper_alpha_period] = STATE(684), + [sym__list_item_upper_alpha_period] = STATE(797), + [sym__list_upper_alpha_paren] = STATE(684), + [sym__list_item_upper_alpha_paren] = STATE(798), + [sym__list_upper_alpha_parens] = STATE(684), + [sym__list_item_upper_alpha_parens] = STATE(799), + [sym__list_lower_roman_period] = STATE(684), + [sym__list_item_lower_roman_period] = STATE(801), + [sym__list_lower_roman_paren] = STATE(684), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(684), + [sym__list_item_lower_roman_parens] = STATE(814), + [sym__list_upper_roman_period] = STATE(684), + [sym__list_item_upper_roman_period] = STATE(818), + [sym__list_upper_roman_paren] = STATE(684), + [sym__list_item_upper_roman_paren] = STATE(819), + [sym__list_upper_roman_parens] = STATE(684), + [sym__list_item_upper_roman_parens] = STATE(822), + [sym_list_item_content] = STATE(652), + [sym_table] = STATE(460), + [sym__table_content] = STATE(368), + [sym_table_separator] = STATE(368), + [sym_table_row] = STATE(389), + [sym_footnote] = STATE(460), + [sym_footnote_marker_begin] = STATE(1116), + [sym_div] = STATE(460), + [sym__div_marker_begin] = STATE(988), + [sym_code_block] = STATE(460), + [sym_raw_block] = STATE(460), + [sym_thematic_break] = STATE(460), + [sym_block_quote] = STATE(460), + [sym__block_quote_prefix] = STATE(294), + [sym_link_reference_definition] = STATE(460), + [sym_block_attribute] = STATE(460), + [sym__paragraph] = STATE(460), + [sym__paragraph_content] = STATE(932), + [sym__paragraph_inline_content] = STATE(930), + [sym__inline] = STATE(695), + [sym__symbol_fallback] = STATE(358), + [aux_sym__list_dash_repeat1] = STATE(423), + [aux_sym__list_plus_repeat1] = STATE(417), + [aux_sym__list_star_repeat1] = STATE(420), + [aux_sym__list_task_repeat1] = STATE(395), + [aux_sym__list_definition_repeat1] = STATE(510), + [aux_sym__list_decimal_period_repeat1] = STATE(511), + [aux_sym__list_decimal_paren_repeat1] = STATE(512), + [aux_sym__list_decimal_parens_repeat1] = STATE(513), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(514), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(515), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(516), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(517), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(518), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(519), + [aux_sym__list_lower_roman_period_repeat1] = STATE(520), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(521), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(522), + [aux_sym__list_upper_roman_period_repeat1] = STATE(523), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(524), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(525), + [aux_sym_table_repeat1] = STATE(368), + [aux_sym__block_quote_prefix_repeat1] = STATE(320), + [aux_sym__inline_repeat1] = STATE(358), [anon_sym_LBRACK] = ACTIONS(385), [anon_sym_PIPE] = ACTIONS(387), [anon_sym_LBRACK_CARET] = ACTIONS(9), @@ -8401,94 +8685,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__thematic_break_star] = ACTIONS(401), }, [32] = { - [sym__block_with_heading] = STATE(451), - [sym__block_element] = STATE(451), - [sym_heading] = STATE(451), - [sym_list] = STATE(451), - [sym__list_dash] = STATE(618), - [sym__list_item_dash] = STATE(420), - [sym__list_plus] = STATE(618), - [sym__list_item_plus] = STATE(421), - [sym__list_star] = STATE(618), - [sym__list_item_star] = STATE(422), - [sym__list_task] = STATE(618), - [sym__list_item_task] = STATE(404), - [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(618), - [sym__list_item_definition] = STATE(527), - [sym__list_decimal_period] = STATE(618), - [sym__list_item_decimal_period] = STATE(524), - [sym__list_decimal_paren] = STATE(618), - [sym__list_item_decimal_paren] = STATE(521), - [sym__list_decimal_parens] = STATE(618), - [sym__list_item_decimal_parens] = STATE(520), - [sym__list_lower_alpha_period] = STATE(618), - [sym__list_item_lower_alpha_period] = STATE(518), - [sym__list_lower_alpha_paren] = STATE(618), - [sym__list_item_lower_alpha_paren] = STATE(517), - [sym__list_lower_alpha_parens] = STATE(618), - [sym__list_item_lower_alpha_parens] = STATE(515), - [sym__list_upper_alpha_period] = STATE(618), - [sym__list_item_upper_alpha_period] = STATE(514), - [sym__list_upper_alpha_paren] = STATE(618), - [sym__list_item_upper_alpha_paren] = STATE(510), - [sym__list_upper_alpha_parens] = STATE(618), - [sym__list_item_upper_alpha_parens] = STATE(501), - [sym__list_lower_roman_period] = STATE(618), - [sym__list_item_lower_roman_period] = STATE(500), - [sym__list_lower_roman_paren] = STATE(618), - [sym__list_item_lower_roman_paren] = STATE(499), - [sym__list_lower_roman_parens] = STATE(618), - [sym__list_item_lower_roman_parens] = STATE(498), - [sym__list_upper_roman_period] = STATE(618), - [sym__list_item_upper_roman_period] = STATE(497), - [sym__list_upper_roman_paren] = STATE(618), - [sym__list_item_upper_roman_paren] = STATE(496), - [sym__list_upper_roman_parens] = STATE(618), - [sym__list_item_upper_roman_parens] = STATE(579), - [sym_list_item_content] = STATE(865), - [sym_table] = STATE(451), - [sym__table_content] = STATE(358), - [sym_table_separator] = STATE(358), - [sym_table_row] = STATE(383), - [sym_footnote] = STATE(451), - [sym_footnote_marker_begin] = STATE(1080), - [sym_div] = STATE(451), - [sym_div_marker_begin] = STATE(952), - [sym_code_block] = STATE(451), - [sym_raw_block] = STATE(451), - [sym_thematic_break] = STATE(451), - [sym_block_quote] = STATE(451), - [sym__block_quote_prefix] = STATE(285), - [sym_link_reference_definition] = STATE(451), - [sym_block_attribute] = STATE(451), - [sym__paragraph] = STATE(451), - [sym__paragraph_content] = STATE(890), - [sym__inline] = STATE(710), - [sym__symbol_fallback] = STATE(355), - [aux_sym__list_dash_repeat1] = STATE(420), - [aux_sym__list_plus_repeat1] = STATE(421), - [aux_sym__list_star_repeat1] = STATE(422), - [aux_sym__list_task_repeat1] = STATE(404), - [aux_sym__list_definition_repeat1] = STATE(527), - [aux_sym__list_decimal_period_repeat1] = STATE(524), - [aux_sym__list_decimal_paren_repeat1] = STATE(521), - [aux_sym__list_decimal_parens_repeat1] = STATE(520), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(518), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(515), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(514), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(510), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(501), - [aux_sym__list_lower_roman_period_repeat1] = STATE(500), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(499), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(498), - [aux_sym__list_upper_roman_period_repeat1] = STATE(497), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(579), - [aux_sym_table_repeat1] = STATE(358), - [aux_sym__block_quote_prefix_repeat1] = STATE(316), - [aux_sym__inline_repeat1] = STATE(355), + [sym__block_with_heading] = STATE(473), + [sym__block_element] = STATE(473), + [sym_heading] = STATE(473), + [sym_list] = STATE(473), + [sym__list_dash] = STATE(684), + [sym__list_item_dash] = STATE(634), + [sym__list_plus] = STATE(684), + [sym__list_item_plus] = STATE(651), + [sym__list_star] = STATE(684), + [sym__list_item_star] = STATE(697), + [sym__list_task] = STATE(684), + [sym__list_item_task] = STATE(707), + [sym_list_marker_task] = STATE(47), + [sym__list_definition] = STATE(684), + [sym__list_item_definition] = STATE(736), + [sym__list_decimal_period] = STATE(684), + [sym__list_item_decimal_period] = STATE(795), + [sym__list_decimal_paren] = STATE(684), + [sym__list_item_decimal_paren] = STATE(848), + [sym__list_decimal_parens] = STATE(684), + [sym__list_item_decimal_parens] = STATE(772), + [sym__list_lower_alpha_period] = STATE(684), + [sym__list_item_lower_alpha_period] = STATE(787), + [sym__list_lower_alpha_paren] = STATE(684), + [sym__list_item_lower_alpha_paren] = STATE(792), + [sym__list_lower_alpha_parens] = STATE(684), + [sym__list_item_lower_alpha_parens] = STATE(793), + [sym__list_upper_alpha_period] = STATE(684), + [sym__list_item_upper_alpha_period] = STATE(797), + [sym__list_upper_alpha_paren] = STATE(684), + [sym__list_item_upper_alpha_paren] = STATE(798), + [sym__list_upper_alpha_parens] = STATE(684), + [sym__list_item_upper_alpha_parens] = STATE(799), + [sym__list_lower_roman_period] = STATE(684), + [sym__list_item_lower_roman_period] = STATE(801), + [sym__list_lower_roman_paren] = STATE(684), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(684), + [sym__list_item_lower_roman_parens] = STATE(814), + [sym__list_upper_roman_period] = STATE(684), + [sym__list_item_upper_roman_period] = STATE(818), + [sym__list_upper_roman_paren] = STATE(684), + [sym__list_item_upper_roman_paren] = STATE(819), + [sym__list_upper_roman_parens] = STATE(684), + [sym__list_item_upper_roman_parens] = STATE(822), + [sym_list_item_content] = STATE(653), + [sym_table] = STATE(473), + [sym__table_content] = STATE(368), + [sym_table_separator] = STATE(368), + [sym_table_row] = STATE(389), + [sym_footnote] = STATE(473), + [sym_footnote_marker_begin] = STATE(1116), + [sym_div] = STATE(473), + [sym__div_marker_begin] = STATE(988), + [sym_code_block] = STATE(473), + [sym_raw_block] = STATE(473), + [sym_thematic_break] = STATE(473), + [sym_block_quote] = STATE(473), + [sym__block_quote_prefix] = STATE(294), + [sym_link_reference_definition] = STATE(473), + [sym_block_attribute] = STATE(473), + [sym__paragraph] = STATE(473), + [sym__paragraph_content] = STATE(932), + [sym__paragraph_inline_content] = STATE(930), + [sym__inline] = STATE(695), + [sym__symbol_fallback] = STATE(358), + [aux_sym__list_dash_repeat1] = STATE(423), + [aux_sym__list_plus_repeat1] = STATE(417), + [aux_sym__list_star_repeat1] = STATE(420), + [aux_sym__list_task_repeat1] = STATE(395), + [aux_sym__list_definition_repeat1] = STATE(510), + [aux_sym__list_decimal_period_repeat1] = STATE(511), + [aux_sym__list_decimal_paren_repeat1] = STATE(512), + [aux_sym__list_decimal_parens_repeat1] = STATE(513), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(514), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(515), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(516), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(517), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(518), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(519), + [aux_sym__list_lower_roman_period_repeat1] = STATE(520), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(521), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(522), + [aux_sym__list_upper_roman_period_repeat1] = STATE(523), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(524), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(525), + [aux_sym_table_repeat1] = STATE(368), + [aux_sym__block_quote_prefix_repeat1] = STATE(320), + [aux_sym__inline_repeat1] = STATE(358), [anon_sym_LBRACK] = ACTIONS(385), [anon_sym_PIPE] = ACTIONS(387), [anon_sym_LBRACK_CARET] = ACTIONS(9), @@ -8533,90 +8818,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block_element] = STATE(453), [sym_heading] = STATE(453), [sym_list] = STATE(453), - [sym__list_dash] = STATE(618), - [sym__list_item_dash] = STATE(420), - [sym__list_plus] = STATE(618), - [sym__list_item_plus] = STATE(421), - [sym__list_star] = STATE(618), - [sym__list_item_star] = STATE(422), - [sym__list_task] = STATE(618), - [sym__list_item_task] = STATE(404), - [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(618), - [sym__list_item_definition] = STATE(527), - [sym__list_decimal_period] = STATE(618), - [sym__list_item_decimal_period] = STATE(524), - [sym__list_decimal_paren] = STATE(618), - [sym__list_item_decimal_paren] = STATE(521), - [sym__list_decimal_parens] = STATE(618), - [sym__list_item_decimal_parens] = STATE(520), - [sym__list_lower_alpha_period] = STATE(618), - [sym__list_item_lower_alpha_period] = STATE(518), - [sym__list_lower_alpha_paren] = STATE(618), - [sym__list_item_lower_alpha_paren] = STATE(517), - [sym__list_lower_alpha_parens] = STATE(618), - [sym__list_item_lower_alpha_parens] = STATE(515), - [sym__list_upper_alpha_period] = STATE(618), - [sym__list_item_upper_alpha_period] = STATE(514), - [sym__list_upper_alpha_paren] = STATE(618), - [sym__list_item_upper_alpha_paren] = STATE(510), - [sym__list_upper_alpha_parens] = STATE(618), - [sym__list_item_upper_alpha_parens] = STATE(501), - [sym__list_lower_roman_period] = STATE(618), - [sym__list_item_lower_roman_period] = STATE(500), - [sym__list_lower_roman_paren] = STATE(618), - [sym__list_item_lower_roman_paren] = STATE(499), - [sym__list_lower_roman_parens] = STATE(618), - [sym__list_item_lower_roman_parens] = STATE(498), - [sym__list_upper_roman_period] = STATE(618), - [sym__list_item_upper_roman_period] = STATE(497), - [sym__list_upper_roman_paren] = STATE(618), - [sym__list_item_upper_roman_paren] = STATE(496), - [sym__list_upper_roman_parens] = STATE(618), - [sym__list_item_upper_roman_parens] = STATE(579), - [sym_list_item_content] = STATE(868), + [sym__list_dash] = STATE(684), + [sym__list_item_dash] = STATE(634), + [sym__list_plus] = STATE(684), + [sym__list_item_plus] = STATE(651), + [sym__list_star] = STATE(684), + [sym__list_item_star] = STATE(697), + [sym__list_task] = STATE(684), + [sym__list_item_task] = STATE(707), + [sym_list_marker_task] = STATE(47), + [sym__list_definition] = STATE(684), + [sym__list_item_definition] = STATE(736), + [sym__list_decimal_period] = STATE(684), + [sym__list_item_decimal_period] = STATE(795), + [sym__list_decimal_paren] = STATE(684), + [sym__list_item_decimal_paren] = STATE(848), + [sym__list_decimal_parens] = STATE(684), + [sym__list_item_decimal_parens] = STATE(772), + [sym__list_lower_alpha_period] = STATE(684), + [sym__list_item_lower_alpha_period] = STATE(787), + [sym__list_lower_alpha_paren] = STATE(684), + [sym__list_item_lower_alpha_paren] = STATE(792), + [sym__list_lower_alpha_parens] = STATE(684), + [sym__list_item_lower_alpha_parens] = STATE(793), + [sym__list_upper_alpha_period] = STATE(684), + [sym__list_item_upper_alpha_period] = STATE(797), + [sym__list_upper_alpha_paren] = STATE(684), + [sym__list_item_upper_alpha_paren] = STATE(798), + [sym__list_upper_alpha_parens] = STATE(684), + [sym__list_item_upper_alpha_parens] = STATE(799), + [sym__list_lower_roman_period] = STATE(684), + [sym__list_item_lower_roman_period] = STATE(801), + [sym__list_lower_roman_paren] = STATE(684), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(684), + [sym__list_item_lower_roman_parens] = STATE(814), + [sym__list_upper_roman_period] = STATE(684), + [sym__list_item_upper_roman_period] = STATE(818), + [sym__list_upper_roman_paren] = STATE(684), + [sym__list_item_upper_roman_paren] = STATE(819), + [sym__list_upper_roman_parens] = STATE(684), + [sym__list_item_upper_roman_parens] = STATE(822), + [sym_list_item_content] = STATE(654), [sym_table] = STATE(453), - [sym__table_content] = STATE(358), - [sym_table_separator] = STATE(358), - [sym_table_row] = STATE(383), + [sym__table_content] = STATE(368), + [sym_table_separator] = STATE(368), + [sym_table_row] = STATE(389), [sym_footnote] = STATE(453), - [sym_footnote_marker_begin] = STATE(1080), + [sym_footnote_marker_begin] = STATE(1116), [sym_div] = STATE(453), - [sym_div_marker_begin] = STATE(952), + [sym__div_marker_begin] = STATE(988), [sym_code_block] = STATE(453), [sym_raw_block] = STATE(453), [sym_thematic_break] = STATE(453), [sym_block_quote] = STATE(453), - [sym__block_quote_prefix] = STATE(285), + [sym__block_quote_prefix] = STATE(294), [sym_link_reference_definition] = STATE(453), [sym_block_attribute] = STATE(453), [sym__paragraph] = STATE(453), - [sym__paragraph_content] = STATE(890), - [sym__inline] = STATE(710), - [sym__symbol_fallback] = STATE(355), - [aux_sym__list_dash_repeat1] = STATE(420), - [aux_sym__list_plus_repeat1] = STATE(421), - [aux_sym__list_star_repeat1] = STATE(422), - [aux_sym__list_task_repeat1] = STATE(404), - [aux_sym__list_definition_repeat1] = STATE(527), - [aux_sym__list_decimal_period_repeat1] = STATE(524), - [aux_sym__list_decimal_paren_repeat1] = STATE(521), - [aux_sym__list_decimal_parens_repeat1] = STATE(520), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(518), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(515), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(514), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(510), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(501), - [aux_sym__list_lower_roman_period_repeat1] = STATE(500), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(499), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(498), - [aux_sym__list_upper_roman_period_repeat1] = STATE(497), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(579), - [aux_sym_table_repeat1] = STATE(358), - [aux_sym__block_quote_prefix_repeat1] = STATE(316), - [aux_sym__inline_repeat1] = STATE(355), + [sym__paragraph_content] = STATE(932), + [sym__paragraph_inline_content] = STATE(930), + [sym__inline] = STATE(695), + [sym__symbol_fallback] = STATE(358), + [aux_sym__list_dash_repeat1] = STATE(423), + [aux_sym__list_plus_repeat1] = STATE(417), + [aux_sym__list_star_repeat1] = STATE(420), + [aux_sym__list_task_repeat1] = STATE(395), + [aux_sym__list_definition_repeat1] = STATE(510), + [aux_sym__list_decimal_period_repeat1] = STATE(511), + [aux_sym__list_decimal_paren_repeat1] = STATE(512), + [aux_sym__list_decimal_parens_repeat1] = STATE(513), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(514), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(515), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(516), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(517), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(518), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(519), + [aux_sym__list_lower_roman_period_repeat1] = STATE(520), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(521), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(522), + [aux_sym__list_upper_roman_period_repeat1] = STATE(523), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(524), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(525), + [aux_sym_table_repeat1] = STATE(368), + [aux_sym__block_quote_prefix_repeat1] = STATE(320), + [aux_sym__inline_repeat1] = STATE(358), [anon_sym_LBRACK] = ACTIONS(385), [anon_sym_PIPE] = ACTIONS(387), [anon_sym_LBRACK_CARET] = ACTIONS(9), @@ -8657,94 +8943,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__thematic_break_star] = ACTIONS(401), }, [34] = { - [sym__block_with_heading] = STATE(463), - [sym__block_element] = STATE(463), - [sym_heading] = STATE(463), - [sym_list] = STATE(463), - [sym__list_dash] = STATE(618), - [sym__list_item_dash] = STATE(420), - [sym__list_plus] = STATE(618), - [sym__list_item_plus] = STATE(421), - [sym__list_star] = STATE(618), - [sym__list_item_star] = STATE(422), - [sym__list_task] = STATE(618), - [sym__list_item_task] = STATE(404), - [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(618), - [sym__list_item_definition] = STATE(527), - [sym__list_decimal_period] = STATE(618), - [sym__list_item_decimal_period] = STATE(524), - [sym__list_decimal_paren] = STATE(618), - [sym__list_item_decimal_paren] = STATE(521), - [sym__list_decimal_parens] = STATE(618), - [sym__list_item_decimal_parens] = STATE(520), - [sym__list_lower_alpha_period] = STATE(618), - [sym__list_item_lower_alpha_period] = STATE(518), - [sym__list_lower_alpha_paren] = STATE(618), - [sym__list_item_lower_alpha_paren] = STATE(517), - [sym__list_lower_alpha_parens] = STATE(618), - [sym__list_item_lower_alpha_parens] = STATE(515), - [sym__list_upper_alpha_period] = STATE(618), - [sym__list_item_upper_alpha_period] = STATE(514), - [sym__list_upper_alpha_paren] = STATE(618), - [sym__list_item_upper_alpha_paren] = STATE(510), - [sym__list_upper_alpha_parens] = STATE(618), - [sym__list_item_upper_alpha_parens] = STATE(501), - [sym__list_lower_roman_period] = STATE(618), - [sym__list_item_lower_roman_period] = STATE(500), - [sym__list_lower_roman_paren] = STATE(618), - [sym__list_item_lower_roman_paren] = STATE(499), - [sym__list_lower_roman_parens] = STATE(618), - [sym__list_item_lower_roman_parens] = STATE(498), - [sym__list_upper_roman_period] = STATE(618), - [sym__list_item_upper_roman_period] = STATE(497), - [sym__list_upper_roman_paren] = STATE(618), - [sym__list_item_upper_roman_paren] = STATE(496), - [sym__list_upper_roman_parens] = STATE(618), - [sym__list_item_upper_roman_parens] = STATE(579), - [sym_list_item_content] = STATE(668), - [sym_table] = STATE(463), - [sym__table_content] = STATE(358), - [sym_table_separator] = STATE(358), - [sym_table_row] = STATE(383), - [sym_footnote] = STATE(463), - [sym_footnote_marker_begin] = STATE(1080), - [sym_div] = STATE(463), - [sym_div_marker_begin] = STATE(952), - [sym_code_block] = STATE(463), - [sym_raw_block] = STATE(463), - [sym_thematic_break] = STATE(463), - [sym_block_quote] = STATE(463), - [sym__block_quote_prefix] = STATE(285), - [sym_link_reference_definition] = STATE(463), - [sym_block_attribute] = STATE(463), - [sym__paragraph] = STATE(463), - [sym__paragraph_content] = STATE(890), - [sym__inline] = STATE(710), - [sym__symbol_fallback] = STATE(355), - [aux_sym__list_dash_repeat1] = STATE(420), - [aux_sym__list_plus_repeat1] = STATE(421), - [aux_sym__list_star_repeat1] = STATE(422), - [aux_sym__list_task_repeat1] = STATE(404), - [aux_sym__list_definition_repeat1] = STATE(527), - [aux_sym__list_decimal_period_repeat1] = STATE(524), - [aux_sym__list_decimal_paren_repeat1] = STATE(521), - [aux_sym__list_decimal_parens_repeat1] = STATE(520), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(518), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(515), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(514), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(510), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(501), - [aux_sym__list_lower_roman_period_repeat1] = STATE(500), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(499), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(498), - [aux_sym__list_upper_roman_period_repeat1] = STATE(497), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(579), - [aux_sym_table_repeat1] = STATE(358), - [aux_sym__block_quote_prefix_repeat1] = STATE(316), - [aux_sym__inline_repeat1] = STATE(355), + [sym__block_with_heading] = STATE(450), + [sym__block_element] = STATE(450), + [sym_heading] = STATE(450), + [sym_list] = STATE(450), + [sym__list_dash] = STATE(684), + [sym__list_item_dash] = STATE(634), + [sym__list_plus] = STATE(684), + [sym__list_item_plus] = STATE(651), + [sym__list_star] = STATE(684), + [sym__list_item_star] = STATE(697), + [sym__list_task] = STATE(684), + [sym__list_item_task] = STATE(707), + [sym_list_marker_task] = STATE(47), + [sym__list_definition] = STATE(684), + [sym__list_item_definition] = STATE(736), + [sym__list_decimal_period] = STATE(684), + [sym__list_item_decimal_period] = STATE(795), + [sym__list_decimal_paren] = STATE(684), + [sym__list_item_decimal_paren] = STATE(848), + [sym__list_decimal_parens] = STATE(684), + [sym__list_item_decimal_parens] = STATE(772), + [sym__list_lower_alpha_period] = STATE(684), + [sym__list_item_lower_alpha_period] = STATE(787), + [sym__list_lower_alpha_paren] = STATE(684), + [sym__list_item_lower_alpha_paren] = STATE(792), + [sym__list_lower_alpha_parens] = STATE(684), + [sym__list_item_lower_alpha_parens] = STATE(793), + [sym__list_upper_alpha_period] = STATE(684), + [sym__list_item_upper_alpha_period] = STATE(797), + [sym__list_upper_alpha_paren] = STATE(684), + [sym__list_item_upper_alpha_paren] = STATE(798), + [sym__list_upper_alpha_parens] = STATE(684), + [sym__list_item_upper_alpha_parens] = STATE(799), + [sym__list_lower_roman_period] = STATE(684), + [sym__list_item_lower_roman_period] = STATE(801), + [sym__list_lower_roman_paren] = STATE(684), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(684), + [sym__list_item_lower_roman_parens] = STATE(814), + [sym__list_upper_roman_period] = STATE(684), + [sym__list_item_upper_roman_period] = STATE(818), + [sym__list_upper_roman_paren] = STATE(684), + [sym__list_item_upper_roman_paren] = STATE(819), + [sym__list_upper_roman_parens] = STATE(684), + [sym__list_item_upper_roman_parens] = STATE(822), + [sym_list_item_content] = STATE(655), + [sym_table] = STATE(450), + [sym__table_content] = STATE(368), + [sym_table_separator] = STATE(368), + [sym_table_row] = STATE(389), + [sym_footnote] = STATE(450), + [sym_footnote_marker_begin] = STATE(1116), + [sym_div] = STATE(450), + [sym__div_marker_begin] = STATE(988), + [sym_code_block] = STATE(450), + [sym_raw_block] = STATE(450), + [sym_thematic_break] = STATE(450), + [sym_block_quote] = STATE(450), + [sym__block_quote_prefix] = STATE(294), + [sym_link_reference_definition] = STATE(450), + [sym_block_attribute] = STATE(450), + [sym__paragraph] = STATE(450), + [sym__paragraph_content] = STATE(932), + [sym__paragraph_inline_content] = STATE(930), + [sym__inline] = STATE(695), + [sym__symbol_fallback] = STATE(358), + [aux_sym__list_dash_repeat1] = STATE(423), + [aux_sym__list_plus_repeat1] = STATE(417), + [aux_sym__list_star_repeat1] = STATE(420), + [aux_sym__list_task_repeat1] = STATE(395), + [aux_sym__list_definition_repeat1] = STATE(510), + [aux_sym__list_decimal_period_repeat1] = STATE(511), + [aux_sym__list_decimal_paren_repeat1] = STATE(512), + [aux_sym__list_decimal_parens_repeat1] = STATE(513), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(514), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(515), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(516), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(517), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(518), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(519), + [aux_sym__list_lower_roman_period_repeat1] = STATE(520), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(521), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(522), + [aux_sym__list_upper_roman_period_repeat1] = STATE(523), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(524), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(525), + [aux_sym_table_repeat1] = STATE(368), + [aux_sym__block_quote_prefix_repeat1] = STATE(320), + [aux_sym__inline_repeat1] = STATE(358), [anon_sym_LBRACK] = ACTIONS(385), [anon_sym_PIPE] = ACTIONS(387), [anon_sym_LBRACK_CARET] = ACTIONS(9), @@ -8785,94 +9072,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__thematic_break_star] = ACTIONS(401), }, [35] = { - [sym__block_with_heading] = STATE(469), - [sym__block_element] = STATE(469), - [sym_heading] = STATE(469), - [sym_list] = STATE(469), - [sym__list_dash] = STATE(618), - [sym__list_item_dash] = STATE(420), - [sym__list_plus] = STATE(618), - [sym__list_item_plus] = STATE(421), - [sym__list_star] = STATE(618), - [sym__list_item_star] = STATE(422), - [sym__list_task] = STATE(618), - [sym__list_item_task] = STATE(404), - [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(618), - [sym__list_item_definition] = STATE(527), - [sym__list_decimal_period] = STATE(618), - [sym__list_item_decimal_period] = STATE(524), - [sym__list_decimal_paren] = STATE(618), - [sym__list_item_decimal_paren] = STATE(521), - [sym__list_decimal_parens] = STATE(618), - [sym__list_item_decimal_parens] = STATE(520), - [sym__list_lower_alpha_period] = STATE(618), - [sym__list_item_lower_alpha_period] = STATE(518), - [sym__list_lower_alpha_paren] = STATE(618), - [sym__list_item_lower_alpha_paren] = STATE(517), - [sym__list_lower_alpha_parens] = STATE(618), - [sym__list_item_lower_alpha_parens] = STATE(515), - [sym__list_upper_alpha_period] = STATE(618), - [sym__list_item_upper_alpha_period] = STATE(514), - [sym__list_upper_alpha_paren] = STATE(618), - [sym__list_item_upper_alpha_paren] = STATE(510), - [sym__list_upper_alpha_parens] = STATE(618), - [sym__list_item_upper_alpha_parens] = STATE(501), - [sym__list_lower_roman_period] = STATE(618), - [sym__list_item_lower_roman_period] = STATE(500), - [sym__list_lower_roman_paren] = STATE(618), - [sym__list_item_lower_roman_paren] = STATE(499), - [sym__list_lower_roman_parens] = STATE(618), - [sym__list_item_lower_roman_parens] = STATE(498), - [sym__list_upper_roman_period] = STATE(618), - [sym__list_item_upper_roman_period] = STATE(497), - [sym__list_upper_roman_paren] = STATE(618), - [sym__list_item_upper_roman_paren] = STATE(496), - [sym__list_upper_roman_parens] = STATE(618), - [sym__list_item_upper_roman_parens] = STATE(579), - [sym_list_item_content] = STATE(667), - [sym_table] = STATE(469), - [sym__table_content] = STATE(358), - [sym_table_separator] = STATE(358), - [sym_table_row] = STATE(383), - [sym_footnote] = STATE(469), - [sym_footnote_marker_begin] = STATE(1080), - [sym_div] = STATE(469), - [sym_div_marker_begin] = STATE(952), - [sym_code_block] = STATE(469), - [sym_raw_block] = STATE(469), - [sym_thematic_break] = STATE(469), - [sym_block_quote] = STATE(469), - [sym__block_quote_prefix] = STATE(285), - [sym_link_reference_definition] = STATE(469), - [sym_block_attribute] = STATE(469), - [sym__paragraph] = STATE(469), - [sym__paragraph_content] = STATE(890), - [sym__inline] = STATE(710), - [sym__symbol_fallback] = STATE(355), - [aux_sym__list_dash_repeat1] = STATE(420), - [aux_sym__list_plus_repeat1] = STATE(421), - [aux_sym__list_star_repeat1] = STATE(422), - [aux_sym__list_task_repeat1] = STATE(404), - [aux_sym__list_definition_repeat1] = STATE(527), - [aux_sym__list_decimal_period_repeat1] = STATE(524), - [aux_sym__list_decimal_paren_repeat1] = STATE(521), - [aux_sym__list_decimal_parens_repeat1] = STATE(520), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(518), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(515), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(514), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(510), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(501), - [aux_sym__list_lower_roman_period_repeat1] = STATE(500), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(499), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(498), - [aux_sym__list_upper_roman_period_repeat1] = STATE(497), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(579), - [aux_sym_table_repeat1] = STATE(358), - [aux_sym__block_quote_prefix_repeat1] = STATE(316), - [aux_sym__inline_repeat1] = STATE(355), + [sym__block_with_heading] = STATE(488), + [sym__block_element] = STATE(488), + [sym_heading] = STATE(488), + [sym_list] = STATE(488), + [sym__list_dash] = STATE(684), + [sym__list_item_dash] = STATE(634), + [sym__list_plus] = STATE(684), + [sym__list_item_plus] = STATE(651), + [sym__list_star] = STATE(684), + [sym__list_item_star] = STATE(697), + [sym__list_task] = STATE(684), + [sym__list_item_task] = STATE(707), + [sym_list_marker_task] = STATE(47), + [sym__list_definition] = STATE(684), + [sym__list_item_definition] = STATE(736), + [sym__list_decimal_period] = STATE(684), + [sym__list_item_decimal_period] = STATE(795), + [sym__list_decimal_paren] = STATE(684), + [sym__list_item_decimal_paren] = STATE(848), + [sym__list_decimal_parens] = STATE(684), + [sym__list_item_decimal_parens] = STATE(772), + [sym__list_lower_alpha_period] = STATE(684), + [sym__list_item_lower_alpha_period] = STATE(787), + [sym__list_lower_alpha_paren] = STATE(684), + [sym__list_item_lower_alpha_paren] = STATE(792), + [sym__list_lower_alpha_parens] = STATE(684), + [sym__list_item_lower_alpha_parens] = STATE(793), + [sym__list_upper_alpha_period] = STATE(684), + [sym__list_item_upper_alpha_period] = STATE(797), + [sym__list_upper_alpha_paren] = STATE(684), + [sym__list_item_upper_alpha_paren] = STATE(798), + [sym__list_upper_alpha_parens] = STATE(684), + [sym__list_item_upper_alpha_parens] = STATE(799), + [sym__list_lower_roman_period] = STATE(684), + [sym__list_item_lower_roman_period] = STATE(801), + [sym__list_lower_roman_paren] = STATE(684), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(684), + [sym__list_item_lower_roman_parens] = STATE(814), + [sym__list_upper_roman_period] = STATE(684), + [sym__list_item_upper_roman_period] = STATE(818), + [sym__list_upper_roman_paren] = STATE(684), + [sym__list_item_upper_roman_paren] = STATE(819), + [sym__list_upper_roman_parens] = STATE(684), + [sym__list_item_upper_roman_parens] = STATE(822), + [sym_list_item_content] = STATE(742), + [sym_table] = STATE(488), + [sym__table_content] = STATE(368), + [sym_table_separator] = STATE(368), + [sym_table_row] = STATE(389), + [sym_footnote] = STATE(488), + [sym_footnote_marker_begin] = STATE(1116), + [sym_div] = STATE(488), + [sym__div_marker_begin] = STATE(988), + [sym_code_block] = STATE(488), + [sym_raw_block] = STATE(488), + [sym_thematic_break] = STATE(488), + [sym_block_quote] = STATE(488), + [sym__block_quote_prefix] = STATE(294), + [sym_link_reference_definition] = STATE(488), + [sym_block_attribute] = STATE(488), + [sym__paragraph] = STATE(488), + [sym__paragraph_content] = STATE(932), + [sym__paragraph_inline_content] = STATE(930), + [sym__inline] = STATE(695), + [sym__symbol_fallback] = STATE(358), + [aux_sym__list_dash_repeat1] = STATE(423), + [aux_sym__list_plus_repeat1] = STATE(417), + [aux_sym__list_star_repeat1] = STATE(420), + [aux_sym__list_task_repeat1] = STATE(395), + [aux_sym__list_definition_repeat1] = STATE(510), + [aux_sym__list_decimal_period_repeat1] = STATE(511), + [aux_sym__list_decimal_paren_repeat1] = STATE(512), + [aux_sym__list_decimal_parens_repeat1] = STATE(513), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(514), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(515), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(516), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(517), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(518), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(519), + [aux_sym__list_lower_roman_period_repeat1] = STATE(520), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(521), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(522), + [aux_sym__list_upper_roman_period_repeat1] = STATE(523), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(524), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(525), + [aux_sym_table_repeat1] = STATE(368), + [aux_sym__block_quote_prefix_repeat1] = STATE(320), + [aux_sym__inline_repeat1] = STATE(358), [anon_sym_LBRACK] = ACTIONS(385), [anon_sym_PIPE] = ACTIONS(387), [anon_sym_LBRACK_CARET] = ACTIONS(9), @@ -8913,94 +9201,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__thematic_break_star] = ACTIONS(401), }, [36] = { - [sym__block_with_heading] = STATE(469), - [sym__block_element] = STATE(469), - [sym_heading] = STATE(469), - [sym_list] = STATE(469), - [sym__list_dash] = STATE(618), - [sym__list_item_dash] = STATE(420), - [sym__list_plus] = STATE(618), - [sym__list_item_plus] = STATE(421), - [sym__list_star] = STATE(618), - [sym__list_item_star] = STATE(422), - [sym__list_task] = STATE(618), - [sym__list_item_task] = STATE(404), - [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(618), - [sym__list_item_definition] = STATE(527), - [sym__list_decimal_period] = STATE(618), - [sym__list_item_decimal_period] = STATE(524), - [sym__list_decimal_paren] = STATE(618), - [sym__list_item_decimal_paren] = STATE(521), - [sym__list_decimal_parens] = STATE(618), - [sym__list_item_decimal_parens] = STATE(520), - [sym__list_lower_alpha_period] = STATE(618), - [sym__list_item_lower_alpha_period] = STATE(518), - [sym__list_lower_alpha_paren] = STATE(618), - [sym__list_item_lower_alpha_paren] = STATE(517), - [sym__list_lower_alpha_parens] = STATE(618), - [sym__list_item_lower_alpha_parens] = STATE(515), - [sym__list_upper_alpha_period] = STATE(618), - [sym__list_item_upper_alpha_period] = STATE(514), - [sym__list_upper_alpha_paren] = STATE(618), - [sym__list_item_upper_alpha_paren] = STATE(510), - [sym__list_upper_alpha_parens] = STATE(618), - [sym__list_item_upper_alpha_parens] = STATE(501), - [sym__list_lower_roman_period] = STATE(618), - [sym__list_item_lower_roman_period] = STATE(500), - [sym__list_lower_roman_paren] = STATE(618), - [sym__list_item_lower_roman_paren] = STATE(499), - [sym__list_lower_roman_parens] = STATE(618), - [sym__list_item_lower_roman_parens] = STATE(498), - [sym__list_upper_roman_period] = STATE(618), - [sym__list_item_upper_roman_period] = STATE(497), - [sym__list_upper_roman_paren] = STATE(618), - [sym__list_item_upper_roman_paren] = STATE(496), - [sym__list_upper_roman_parens] = STATE(618), - [sym__list_item_upper_roman_parens] = STATE(579), - [sym_list_item_content] = STATE(688), - [sym_table] = STATE(469), - [sym__table_content] = STATE(358), - [sym_table_separator] = STATE(358), - [sym_table_row] = STATE(383), - [sym_footnote] = STATE(469), - [sym_footnote_marker_begin] = STATE(1080), - [sym_div] = STATE(469), - [sym_div_marker_begin] = STATE(952), - [sym_code_block] = STATE(469), - [sym_raw_block] = STATE(469), - [sym_thematic_break] = STATE(469), - [sym_block_quote] = STATE(469), - [sym__block_quote_prefix] = STATE(285), - [sym_link_reference_definition] = STATE(469), - [sym_block_attribute] = STATE(469), - [sym__paragraph] = STATE(469), - [sym__paragraph_content] = STATE(890), - [sym__inline] = STATE(710), - [sym__symbol_fallback] = STATE(355), - [aux_sym__list_dash_repeat1] = STATE(420), - [aux_sym__list_plus_repeat1] = STATE(421), - [aux_sym__list_star_repeat1] = STATE(422), - [aux_sym__list_task_repeat1] = STATE(404), - [aux_sym__list_definition_repeat1] = STATE(527), - [aux_sym__list_decimal_period_repeat1] = STATE(524), - [aux_sym__list_decimal_paren_repeat1] = STATE(521), - [aux_sym__list_decimal_parens_repeat1] = STATE(520), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(518), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(515), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(514), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(510), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(501), - [aux_sym__list_lower_roman_period_repeat1] = STATE(500), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(499), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(498), - [aux_sym__list_upper_roman_period_repeat1] = STATE(497), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(579), - [aux_sym_table_repeat1] = STATE(358), - [aux_sym__block_quote_prefix_repeat1] = STATE(316), - [aux_sym__inline_repeat1] = STATE(355), + [sym__block_with_heading] = STATE(434), + [sym__block_element] = STATE(434), + [sym_heading] = STATE(434), + [sym_list] = STATE(434), + [sym__list_dash] = STATE(684), + [sym__list_item_dash] = STATE(634), + [sym__list_plus] = STATE(684), + [sym__list_item_plus] = STATE(651), + [sym__list_star] = STATE(684), + [sym__list_item_star] = STATE(697), + [sym__list_task] = STATE(684), + [sym__list_item_task] = STATE(707), + [sym_list_marker_task] = STATE(47), + [sym__list_definition] = STATE(684), + [sym__list_item_definition] = STATE(736), + [sym__list_decimal_period] = STATE(684), + [sym__list_item_decimal_period] = STATE(795), + [sym__list_decimal_paren] = STATE(684), + [sym__list_item_decimal_paren] = STATE(848), + [sym__list_decimal_parens] = STATE(684), + [sym__list_item_decimal_parens] = STATE(772), + [sym__list_lower_alpha_period] = STATE(684), + [sym__list_item_lower_alpha_period] = STATE(787), + [sym__list_lower_alpha_paren] = STATE(684), + [sym__list_item_lower_alpha_paren] = STATE(792), + [sym__list_lower_alpha_parens] = STATE(684), + [sym__list_item_lower_alpha_parens] = STATE(793), + [sym__list_upper_alpha_period] = STATE(684), + [sym__list_item_upper_alpha_period] = STATE(797), + [sym__list_upper_alpha_paren] = STATE(684), + [sym__list_item_upper_alpha_paren] = STATE(798), + [sym__list_upper_alpha_parens] = STATE(684), + [sym__list_item_upper_alpha_parens] = STATE(799), + [sym__list_lower_roman_period] = STATE(684), + [sym__list_item_lower_roman_period] = STATE(801), + [sym__list_lower_roman_paren] = STATE(684), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(684), + [sym__list_item_lower_roman_parens] = STATE(814), + [sym__list_upper_roman_period] = STATE(684), + [sym__list_item_upper_roman_period] = STATE(818), + [sym__list_upper_roman_paren] = STATE(684), + [sym__list_item_upper_roman_paren] = STATE(819), + [sym__list_upper_roman_parens] = STATE(684), + [sym__list_item_upper_roman_parens] = STATE(822), + [sym_list_item_content] = STATE(744), + [sym_table] = STATE(434), + [sym__table_content] = STATE(368), + [sym_table_separator] = STATE(368), + [sym_table_row] = STATE(389), + [sym_footnote] = STATE(434), + [sym_footnote_marker_begin] = STATE(1116), + [sym_div] = STATE(434), + [sym__div_marker_begin] = STATE(988), + [sym_code_block] = STATE(434), + [sym_raw_block] = STATE(434), + [sym_thematic_break] = STATE(434), + [sym_block_quote] = STATE(434), + [sym__block_quote_prefix] = STATE(294), + [sym_link_reference_definition] = STATE(434), + [sym_block_attribute] = STATE(434), + [sym__paragraph] = STATE(434), + [sym__paragraph_content] = STATE(932), + [sym__paragraph_inline_content] = STATE(930), + [sym__inline] = STATE(695), + [sym__symbol_fallback] = STATE(358), + [aux_sym__list_dash_repeat1] = STATE(423), + [aux_sym__list_plus_repeat1] = STATE(417), + [aux_sym__list_star_repeat1] = STATE(420), + [aux_sym__list_task_repeat1] = STATE(395), + [aux_sym__list_definition_repeat1] = STATE(510), + [aux_sym__list_decimal_period_repeat1] = STATE(511), + [aux_sym__list_decimal_paren_repeat1] = STATE(512), + [aux_sym__list_decimal_parens_repeat1] = STATE(513), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(514), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(515), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(516), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(517), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(518), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(519), + [aux_sym__list_lower_roman_period_repeat1] = STATE(520), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(521), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(522), + [aux_sym__list_upper_roman_period_repeat1] = STATE(523), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(524), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(525), + [aux_sym_table_repeat1] = STATE(368), + [aux_sym__block_quote_prefix_repeat1] = STATE(320), + [aux_sym__inline_repeat1] = STATE(358), [anon_sym_LBRACK] = ACTIONS(385), [anon_sym_PIPE] = ACTIONS(387), [anon_sym_LBRACK_CARET] = ACTIONS(9), @@ -9011,7 +9300,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(413), + [sym__newline] = ACTIONS(415), [sym__heading_begin] = ACTIONS(393), [sym__div_begin] = ACTIONS(21), [sym__code_block_begin] = ACTIONS(395), @@ -9041,94 +9330,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__thematic_break_star] = ACTIONS(401), }, [37] = { - [sym__block_with_heading] = STATE(463), - [sym__block_element] = STATE(463), - [sym_heading] = STATE(463), - [sym_list] = STATE(463), - [sym__list_dash] = STATE(618), - [sym__list_item_dash] = STATE(420), - [sym__list_plus] = STATE(618), - [sym__list_item_plus] = STATE(421), - [sym__list_star] = STATE(618), - [sym__list_item_star] = STATE(422), - [sym__list_task] = STATE(618), - [sym__list_item_task] = STATE(404), - [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(618), - [sym__list_item_definition] = STATE(527), - [sym__list_decimal_period] = STATE(618), - [sym__list_item_decimal_period] = STATE(524), - [sym__list_decimal_paren] = STATE(618), - [sym__list_item_decimal_paren] = STATE(521), - [sym__list_decimal_parens] = STATE(618), - [sym__list_item_decimal_parens] = STATE(520), - [sym__list_lower_alpha_period] = STATE(618), - [sym__list_item_lower_alpha_period] = STATE(518), - [sym__list_lower_alpha_paren] = STATE(618), - [sym__list_item_lower_alpha_paren] = STATE(517), - [sym__list_lower_alpha_parens] = STATE(618), - [sym__list_item_lower_alpha_parens] = STATE(515), - [sym__list_upper_alpha_period] = STATE(618), - [sym__list_item_upper_alpha_period] = STATE(514), - [sym__list_upper_alpha_paren] = STATE(618), - [sym__list_item_upper_alpha_paren] = STATE(510), - [sym__list_upper_alpha_parens] = STATE(618), - [sym__list_item_upper_alpha_parens] = STATE(501), - [sym__list_lower_roman_period] = STATE(618), - [sym__list_item_lower_roman_period] = STATE(500), - [sym__list_lower_roman_paren] = STATE(618), - [sym__list_item_lower_roman_paren] = STATE(499), - [sym__list_lower_roman_parens] = STATE(618), - [sym__list_item_lower_roman_parens] = STATE(498), - [sym__list_upper_roman_period] = STATE(618), - [sym__list_item_upper_roman_period] = STATE(497), - [sym__list_upper_roman_paren] = STATE(618), - [sym__list_item_upper_roman_paren] = STATE(496), - [sym__list_upper_roman_parens] = STATE(618), - [sym__list_item_upper_roman_parens] = STATE(579), - [sym_list_item_content] = STATE(687), - [sym_table] = STATE(463), - [sym__table_content] = STATE(358), - [sym_table_separator] = STATE(358), - [sym_table_row] = STATE(383), - [sym_footnote] = STATE(463), - [sym_footnote_marker_begin] = STATE(1080), - [sym_div] = STATE(463), - [sym_div_marker_begin] = STATE(952), - [sym_code_block] = STATE(463), - [sym_raw_block] = STATE(463), - [sym_thematic_break] = STATE(463), - [sym_block_quote] = STATE(463), - [sym__block_quote_prefix] = STATE(285), - [sym_link_reference_definition] = STATE(463), - [sym_block_attribute] = STATE(463), - [sym__paragraph] = STATE(463), - [sym__paragraph_content] = STATE(890), - [sym__inline] = STATE(710), - [sym__symbol_fallback] = STATE(355), - [aux_sym__list_dash_repeat1] = STATE(420), - [aux_sym__list_plus_repeat1] = STATE(421), - [aux_sym__list_star_repeat1] = STATE(422), - [aux_sym__list_task_repeat1] = STATE(404), - [aux_sym__list_definition_repeat1] = STATE(527), - [aux_sym__list_decimal_period_repeat1] = STATE(524), - [aux_sym__list_decimal_paren_repeat1] = STATE(521), - [aux_sym__list_decimal_parens_repeat1] = STATE(520), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(518), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(515), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(514), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(510), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(501), - [aux_sym__list_lower_roman_period_repeat1] = STATE(500), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(499), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(498), - [aux_sym__list_upper_roman_period_repeat1] = STATE(497), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(579), - [aux_sym_table_repeat1] = STATE(358), - [aux_sym__block_quote_prefix_repeat1] = STATE(316), - [aux_sym__inline_repeat1] = STATE(355), + [sym__block_with_heading] = STATE(436), + [sym__block_element] = STATE(436), + [sym_heading] = STATE(436), + [sym_list] = STATE(436), + [sym__list_dash] = STATE(684), + [sym__list_item_dash] = STATE(634), + [sym__list_plus] = STATE(684), + [sym__list_item_plus] = STATE(651), + [sym__list_star] = STATE(684), + [sym__list_item_star] = STATE(697), + [sym__list_task] = STATE(684), + [sym__list_item_task] = STATE(707), + [sym_list_marker_task] = STATE(47), + [sym__list_definition] = STATE(684), + [sym__list_item_definition] = STATE(736), + [sym__list_decimal_period] = STATE(684), + [sym__list_item_decimal_period] = STATE(795), + [sym__list_decimal_paren] = STATE(684), + [sym__list_item_decimal_paren] = STATE(848), + [sym__list_decimal_parens] = STATE(684), + [sym__list_item_decimal_parens] = STATE(772), + [sym__list_lower_alpha_period] = STATE(684), + [sym__list_item_lower_alpha_period] = STATE(787), + [sym__list_lower_alpha_paren] = STATE(684), + [sym__list_item_lower_alpha_paren] = STATE(792), + [sym__list_lower_alpha_parens] = STATE(684), + [sym__list_item_lower_alpha_parens] = STATE(793), + [sym__list_upper_alpha_period] = STATE(684), + [sym__list_item_upper_alpha_period] = STATE(797), + [sym__list_upper_alpha_paren] = STATE(684), + [sym__list_item_upper_alpha_paren] = STATE(798), + [sym__list_upper_alpha_parens] = STATE(684), + [sym__list_item_upper_alpha_parens] = STATE(799), + [sym__list_lower_roman_period] = STATE(684), + [sym__list_item_lower_roman_period] = STATE(801), + [sym__list_lower_roman_paren] = STATE(684), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(684), + [sym__list_item_lower_roman_parens] = STATE(814), + [sym__list_upper_roman_period] = STATE(684), + [sym__list_item_upper_roman_period] = STATE(818), + [sym__list_upper_roman_paren] = STATE(684), + [sym__list_item_upper_roman_paren] = STATE(819), + [sym__list_upper_roman_parens] = STATE(684), + [sym__list_item_upper_roman_parens] = STATE(822), + [sym_list_item_content] = STATE(746), + [sym_table] = STATE(436), + [sym__table_content] = STATE(368), + [sym_table_separator] = STATE(368), + [sym_table_row] = STATE(389), + [sym_footnote] = STATE(436), + [sym_footnote_marker_begin] = STATE(1116), + [sym_div] = STATE(436), + [sym__div_marker_begin] = STATE(988), + [sym_code_block] = STATE(436), + [sym_raw_block] = STATE(436), + [sym_thematic_break] = STATE(436), + [sym_block_quote] = STATE(436), + [sym__block_quote_prefix] = STATE(294), + [sym_link_reference_definition] = STATE(436), + [sym_block_attribute] = STATE(436), + [sym__paragraph] = STATE(436), + [sym__paragraph_content] = STATE(932), + [sym__paragraph_inline_content] = STATE(930), + [sym__inline] = STATE(695), + [sym__symbol_fallback] = STATE(358), + [aux_sym__list_dash_repeat1] = STATE(423), + [aux_sym__list_plus_repeat1] = STATE(417), + [aux_sym__list_star_repeat1] = STATE(420), + [aux_sym__list_task_repeat1] = STATE(395), + [aux_sym__list_definition_repeat1] = STATE(510), + [aux_sym__list_decimal_period_repeat1] = STATE(511), + [aux_sym__list_decimal_paren_repeat1] = STATE(512), + [aux_sym__list_decimal_parens_repeat1] = STATE(513), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(514), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(515), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(516), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(517), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(518), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(519), + [aux_sym__list_lower_roman_period_repeat1] = STATE(520), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(521), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(522), + [aux_sym__list_upper_roman_period_repeat1] = STATE(523), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(524), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(525), + [aux_sym_table_repeat1] = STATE(368), + [aux_sym__block_quote_prefix_repeat1] = STATE(320), + [aux_sym__inline_repeat1] = STATE(358), [anon_sym_LBRACK] = ACTIONS(385), [anon_sym_PIPE] = ACTIONS(387), [anon_sym_LBRACK_CARET] = ACTIONS(9), @@ -9139,7 +9429,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(411), + [sym__newline] = ACTIONS(417), [sym__heading_begin] = ACTIONS(393), [sym__div_begin] = ACTIONS(21), [sym__code_block_begin] = ACTIONS(395), @@ -9169,94 +9459,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__thematic_break_star] = ACTIONS(401), }, [38] = { - [sym__block_with_heading] = STATE(456), - [sym__block_element] = STATE(456), - [sym_heading] = STATE(456), - [sym_list] = STATE(456), - [sym__list_dash] = STATE(618), - [sym__list_item_dash] = STATE(420), - [sym__list_plus] = STATE(618), - [sym__list_item_plus] = STATE(421), - [sym__list_star] = STATE(618), - [sym__list_item_star] = STATE(422), - [sym__list_task] = STATE(618), - [sym__list_item_task] = STATE(404), - [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(618), - [sym__list_item_definition] = STATE(527), - [sym__list_decimal_period] = STATE(618), - [sym__list_item_decimal_period] = STATE(524), - [sym__list_decimal_paren] = STATE(618), - [sym__list_item_decimal_paren] = STATE(521), - [sym__list_decimal_parens] = STATE(618), - [sym__list_item_decimal_parens] = STATE(520), - [sym__list_lower_alpha_period] = STATE(618), - [sym__list_item_lower_alpha_period] = STATE(518), - [sym__list_lower_alpha_paren] = STATE(618), - [sym__list_item_lower_alpha_paren] = STATE(517), - [sym__list_lower_alpha_parens] = STATE(618), - [sym__list_item_lower_alpha_parens] = STATE(515), - [sym__list_upper_alpha_period] = STATE(618), - [sym__list_item_upper_alpha_period] = STATE(514), - [sym__list_upper_alpha_paren] = STATE(618), - [sym__list_item_upper_alpha_paren] = STATE(510), - [sym__list_upper_alpha_parens] = STATE(618), - [sym__list_item_upper_alpha_parens] = STATE(501), - [sym__list_lower_roman_period] = STATE(618), - [sym__list_item_lower_roman_period] = STATE(500), - [sym__list_lower_roman_paren] = STATE(618), - [sym__list_item_lower_roman_paren] = STATE(499), - [sym__list_lower_roman_parens] = STATE(618), - [sym__list_item_lower_roman_parens] = STATE(498), - [sym__list_upper_roman_period] = STATE(618), - [sym__list_item_upper_roman_period] = STATE(497), - [sym__list_upper_roman_paren] = STATE(618), - [sym__list_item_upper_roman_paren] = STATE(496), - [sym__list_upper_roman_parens] = STATE(618), - [sym__list_item_upper_roman_parens] = STATE(579), - [sym_list_item_content] = STATE(684), - [sym_table] = STATE(456), - [sym__table_content] = STATE(358), - [sym_table_separator] = STATE(358), - [sym_table_row] = STATE(383), - [sym_footnote] = STATE(456), - [sym_footnote_marker_begin] = STATE(1080), - [sym_div] = STATE(456), - [sym_div_marker_begin] = STATE(952), - [sym_code_block] = STATE(456), - [sym_raw_block] = STATE(456), - [sym_thematic_break] = STATE(456), - [sym_block_quote] = STATE(456), - [sym__block_quote_prefix] = STATE(285), - [sym_link_reference_definition] = STATE(456), - [sym_block_attribute] = STATE(456), - [sym__paragraph] = STATE(456), - [sym__paragraph_content] = STATE(890), - [sym__inline] = STATE(710), - [sym__symbol_fallback] = STATE(355), - [aux_sym__list_dash_repeat1] = STATE(420), - [aux_sym__list_plus_repeat1] = STATE(421), - [aux_sym__list_star_repeat1] = STATE(422), - [aux_sym__list_task_repeat1] = STATE(404), - [aux_sym__list_definition_repeat1] = STATE(527), - [aux_sym__list_decimal_period_repeat1] = STATE(524), - [aux_sym__list_decimal_paren_repeat1] = STATE(521), - [aux_sym__list_decimal_parens_repeat1] = STATE(520), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(518), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(515), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(514), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(510), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(501), - [aux_sym__list_lower_roman_period_repeat1] = STATE(500), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(499), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(498), - [aux_sym__list_upper_roman_period_repeat1] = STATE(497), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(579), - [aux_sym_table_repeat1] = STATE(358), - [aux_sym__block_quote_prefix_repeat1] = STATE(316), - [aux_sym__inline_repeat1] = STATE(355), + [sym__block_with_heading] = STATE(438), + [sym__block_element] = STATE(438), + [sym_heading] = STATE(438), + [sym_list] = STATE(438), + [sym__list_dash] = STATE(684), + [sym__list_item_dash] = STATE(634), + [sym__list_plus] = STATE(684), + [sym__list_item_plus] = STATE(651), + [sym__list_star] = STATE(684), + [sym__list_item_star] = STATE(697), + [sym__list_task] = STATE(684), + [sym__list_item_task] = STATE(707), + [sym_list_marker_task] = STATE(47), + [sym__list_definition] = STATE(684), + [sym__list_item_definition] = STATE(736), + [sym__list_decimal_period] = STATE(684), + [sym__list_item_decimal_period] = STATE(795), + [sym__list_decimal_paren] = STATE(684), + [sym__list_item_decimal_paren] = STATE(848), + [sym__list_decimal_parens] = STATE(684), + [sym__list_item_decimal_parens] = STATE(772), + [sym__list_lower_alpha_period] = STATE(684), + [sym__list_item_lower_alpha_period] = STATE(787), + [sym__list_lower_alpha_paren] = STATE(684), + [sym__list_item_lower_alpha_paren] = STATE(792), + [sym__list_lower_alpha_parens] = STATE(684), + [sym__list_item_lower_alpha_parens] = STATE(793), + [sym__list_upper_alpha_period] = STATE(684), + [sym__list_item_upper_alpha_period] = STATE(797), + [sym__list_upper_alpha_paren] = STATE(684), + [sym__list_item_upper_alpha_paren] = STATE(798), + [sym__list_upper_alpha_parens] = STATE(684), + [sym__list_item_upper_alpha_parens] = STATE(799), + [sym__list_lower_roman_period] = STATE(684), + [sym__list_item_lower_roman_period] = STATE(801), + [sym__list_lower_roman_paren] = STATE(684), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(684), + [sym__list_item_lower_roman_parens] = STATE(814), + [sym__list_upper_roman_period] = STATE(684), + [sym__list_item_upper_roman_period] = STATE(818), + [sym__list_upper_roman_paren] = STATE(684), + [sym__list_item_upper_roman_paren] = STATE(819), + [sym__list_upper_roman_parens] = STATE(684), + [sym__list_item_upper_roman_parens] = STATE(822), + [sym_list_item_content] = STATE(747), + [sym_table] = STATE(438), + [sym__table_content] = STATE(368), + [sym_table_separator] = STATE(368), + [sym_table_row] = STATE(389), + [sym_footnote] = STATE(438), + [sym_footnote_marker_begin] = STATE(1116), + [sym_div] = STATE(438), + [sym__div_marker_begin] = STATE(988), + [sym_code_block] = STATE(438), + [sym_raw_block] = STATE(438), + [sym_thematic_break] = STATE(438), + [sym_block_quote] = STATE(438), + [sym__block_quote_prefix] = STATE(294), + [sym_link_reference_definition] = STATE(438), + [sym_block_attribute] = STATE(438), + [sym__paragraph] = STATE(438), + [sym__paragraph_content] = STATE(932), + [sym__paragraph_inline_content] = STATE(930), + [sym__inline] = STATE(695), + [sym__symbol_fallback] = STATE(358), + [aux_sym__list_dash_repeat1] = STATE(423), + [aux_sym__list_plus_repeat1] = STATE(417), + [aux_sym__list_star_repeat1] = STATE(420), + [aux_sym__list_task_repeat1] = STATE(395), + [aux_sym__list_definition_repeat1] = STATE(510), + [aux_sym__list_decimal_period_repeat1] = STATE(511), + [aux_sym__list_decimal_paren_repeat1] = STATE(512), + [aux_sym__list_decimal_parens_repeat1] = STATE(513), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(514), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(515), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(516), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(517), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(518), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(519), + [aux_sym__list_lower_roman_period_repeat1] = STATE(520), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(521), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(522), + [aux_sym__list_upper_roman_period_repeat1] = STATE(523), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(524), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(525), + [aux_sym_table_repeat1] = STATE(368), + [aux_sym__block_quote_prefix_repeat1] = STATE(320), + [aux_sym__inline_repeat1] = STATE(358), [anon_sym_LBRACK] = ACTIONS(385), [anon_sym_PIPE] = ACTIONS(387), [anon_sym_LBRACK_CARET] = ACTIONS(9), @@ -9267,7 +9558,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(415), + [sym__newline] = ACTIONS(419), [sym__heading_begin] = ACTIONS(393), [sym__div_begin] = ACTIONS(21), [sym__code_block_begin] = ACTIONS(395), @@ -9297,94 +9588,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__thematic_break_star] = ACTIONS(401), }, [39] = { - [sym__block_with_heading] = STATE(456), - [sym__block_element] = STATE(456), - [sym_heading] = STATE(456), - [sym_list] = STATE(456), - [sym__list_dash] = STATE(618), - [sym__list_item_dash] = STATE(420), - [sym__list_plus] = STATE(618), - [sym__list_item_plus] = STATE(421), - [sym__list_star] = STATE(618), - [sym__list_item_star] = STATE(422), - [sym__list_task] = STATE(618), - [sym__list_item_task] = STATE(404), - [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(618), - [sym__list_item_definition] = STATE(527), - [sym__list_decimal_period] = STATE(618), - [sym__list_item_decimal_period] = STATE(524), - [sym__list_decimal_paren] = STATE(618), - [sym__list_item_decimal_paren] = STATE(521), - [sym__list_decimal_parens] = STATE(618), - [sym__list_item_decimal_parens] = STATE(520), - [sym__list_lower_alpha_period] = STATE(618), - [sym__list_item_lower_alpha_period] = STATE(518), - [sym__list_lower_alpha_paren] = STATE(618), - [sym__list_item_lower_alpha_paren] = STATE(517), - [sym__list_lower_alpha_parens] = STATE(618), - [sym__list_item_lower_alpha_parens] = STATE(515), - [sym__list_upper_alpha_period] = STATE(618), - [sym__list_item_upper_alpha_period] = STATE(514), - [sym__list_upper_alpha_paren] = STATE(618), - [sym__list_item_upper_alpha_paren] = STATE(510), - [sym__list_upper_alpha_parens] = STATE(618), - [sym__list_item_upper_alpha_parens] = STATE(501), - [sym__list_lower_roman_period] = STATE(618), - [sym__list_item_lower_roman_period] = STATE(500), - [sym__list_lower_roman_paren] = STATE(618), - [sym__list_item_lower_roman_paren] = STATE(499), - [sym__list_lower_roman_parens] = STATE(618), - [sym__list_item_lower_roman_parens] = STATE(498), - [sym__list_upper_roman_period] = STATE(618), - [sym__list_item_upper_roman_period] = STATE(497), - [sym__list_upper_roman_paren] = STATE(618), - [sym__list_item_upper_roman_paren] = STATE(496), - [sym__list_upper_roman_parens] = STATE(618), - [sym__list_item_upper_roman_parens] = STATE(579), - [sym_list_item_content] = STATE(670), - [sym_table] = STATE(456), - [sym__table_content] = STATE(358), - [sym_table_separator] = STATE(358), - [sym_table_row] = STATE(383), - [sym_footnote] = STATE(456), - [sym_footnote_marker_begin] = STATE(1080), - [sym_div] = STATE(456), - [sym_div_marker_begin] = STATE(952), - [sym_code_block] = STATE(456), - [sym_raw_block] = STATE(456), - [sym_thematic_break] = STATE(456), - [sym_block_quote] = STATE(456), - [sym__block_quote_prefix] = STATE(285), - [sym_link_reference_definition] = STATE(456), - [sym_block_attribute] = STATE(456), - [sym__paragraph] = STATE(456), - [sym__paragraph_content] = STATE(890), - [sym__inline] = STATE(710), - [sym__symbol_fallback] = STATE(355), - [aux_sym__list_dash_repeat1] = STATE(420), - [aux_sym__list_plus_repeat1] = STATE(421), - [aux_sym__list_star_repeat1] = STATE(422), - [aux_sym__list_task_repeat1] = STATE(404), - [aux_sym__list_definition_repeat1] = STATE(527), - [aux_sym__list_decimal_period_repeat1] = STATE(524), - [aux_sym__list_decimal_paren_repeat1] = STATE(521), - [aux_sym__list_decimal_parens_repeat1] = STATE(520), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(518), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(515), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(514), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(510), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(501), - [aux_sym__list_lower_roman_period_repeat1] = STATE(500), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(499), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(498), - [aux_sym__list_upper_roman_period_repeat1] = STATE(497), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(579), - [aux_sym_table_repeat1] = STATE(358), - [aux_sym__block_quote_prefix_repeat1] = STATE(316), - [aux_sym__inline_repeat1] = STATE(355), + [sym__block_with_heading] = STATE(473), + [sym__block_element] = STATE(473), + [sym_heading] = STATE(473), + [sym_list] = STATE(473), + [sym__list_dash] = STATE(684), + [sym__list_item_dash] = STATE(634), + [sym__list_plus] = STATE(684), + [sym__list_item_plus] = STATE(651), + [sym__list_star] = STATE(684), + [sym__list_item_star] = STATE(697), + [sym__list_task] = STATE(684), + [sym__list_item_task] = STATE(707), + [sym_list_marker_task] = STATE(47), + [sym__list_definition] = STATE(684), + [sym__list_item_definition] = STATE(736), + [sym__list_decimal_period] = STATE(684), + [sym__list_item_decimal_period] = STATE(795), + [sym__list_decimal_paren] = STATE(684), + [sym__list_item_decimal_paren] = STATE(848), + [sym__list_decimal_parens] = STATE(684), + [sym__list_item_decimal_parens] = STATE(772), + [sym__list_lower_alpha_period] = STATE(684), + [sym__list_item_lower_alpha_period] = STATE(787), + [sym__list_lower_alpha_paren] = STATE(684), + [sym__list_item_lower_alpha_paren] = STATE(792), + [sym__list_lower_alpha_parens] = STATE(684), + [sym__list_item_lower_alpha_parens] = STATE(793), + [sym__list_upper_alpha_period] = STATE(684), + [sym__list_item_upper_alpha_period] = STATE(797), + [sym__list_upper_alpha_paren] = STATE(684), + [sym__list_item_upper_alpha_paren] = STATE(798), + [sym__list_upper_alpha_parens] = STATE(684), + [sym__list_item_upper_alpha_parens] = STATE(799), + [sym__list_lower_roman_period] = STATE(684), + [sym__list_item_lower_roman_period] = STATE(801), + [sym__list_lower_roman_paren] = STATE(684), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(684), + [sym__list_item_lower_roman_parens] = STATE(814), + [sym__list_upper_roman_period] = STATE(684), + [sym__list_item_upper_roman_period] = STATE(818), + [sym__list_upper_roman_paren] = STATE(684), + [sym__list_item_upper_roman_paren] = STATE(819), + [sym__list_upper_roman_parens] = STATE(684), + [sym__list_item_upper_roman_parens] = STATE(822), + [sym_list_item_content] = STATE(626), + [sym_table] = STATE(473), + [sym__table_content] = STATE(368), + [sym_table_separator] = STATE(368), + [sym_table_row] = STATE(389), + [sym_footnote] = STATE(473), + [sym_footnote_marker_begin] = STATE(1116), + [sym_div] = STATE(473), + [sym__div_marker_begin] = STATE(988), + [sym_code_block] = STATE(473), + [sym_raw_block] = STATE(473), + [sym_thematic_break] = STATE(473), + [sym_block_quote] = STATE(473), + [sym__block_quote_prefix] = STATE(294), + [sym_link_reference_definition] = STATE(473), + [sym_block_attribute] = STATE(473), + [sym__paragraph] = STATE(473), + [sym__paragraph_content] = STATE(932), + [sym__paragraph_inline_content] = STATE(930), + [sym__inline] = STATE(695), + [sym__symbol_fallback] = STATE(358), + [aux_sym__list_dash_repeat1] = STATE(423), + [aux_sym__list_plus_repeat1] = STATE(417), + [aux_sym__list_star_repeat1] = STATE(420), + [aux_sym__list_task_repeat1] = STATE(395), + [aux_sym__list_definition_repeat1] = STATE(510), + [aux_sym__list_decimal_period_repeat1] = STATE(511), + [aux_sym__list_decimal_paren_repeat1] = STATE(512), + [aux_sym__list_decimal_parens_repeat1] = STATE(513), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(514), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(515), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(516), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(517), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(518), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(519), + [aux_sym__list_lower_roman_period_repeat1] = STATE(520), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(521), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(522), + [aux_sym__list_upper_roman_period_repeat1] = STATE(523), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(524), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(525), + [aux_sym_table_repeat1] = STATE(368), + [aux_sym__block_quote_prefix_repeat1] = STATE(320), + [aux_sym__inline_repeat1] = STATE(358), [anon_sym_LBRACK] = ACTIONS(385), [anon_sym_PIPE] = ACTIONS(387), [anon_sym_LBRACK_CARET] = ACTIONS(9), @@ -9395,7 +9687,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(415), + [sym__newline] = ACTIONS(407), [sym__heading_begin] = ACTIONS(393), [sym__div_begin] = ACTIONS(21), [sym__code_block_begin] = ACTIONS(395), @@ -9425,94 +9717,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__thematic_break_star] = ACTIONS(401), }, [40] = { - [sym__block_with_heading] = STATE(445), - [sym__block_element] = STATE(445), - [sym_heading] = STATE(445), - [sym_list] = STATE(445), - [sym__list_dash] = STATE(618), - [sym__list_item_dash] = STATE(420), - [sym__list_plus] = STATE(618), - [sym__list_item_plus] = STATE(421), - [sym__list_star] = STATE(618), - [sym__list_item_star] = STATE(422), - [sym__list_task] = STATE(618), - [sym__list_item_task] = STATE(404), - [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(618), - [sym__list_item_definition] = STATE(527), - [sym__list_decimal_period] = STATE(618), - [sym__list_item_decimal_period] = STATE(524), - [sym__list_decimal_paren] = STATE(618), - [sym__list_item_decimal_paren] = STATE(521), - [sym__list_decimal_parens] = STATE(618), - [sym__list_item_decimal_parens] = STATE(520), - [sym__list_lower_alpha_period] = STATE(618), - [sym__list_item_lower_alpha_period] = STATE(518), - [sym__list_lower_alpha_paren] = STATE(618), - [sym__list_item_lower_alpha_paren] = STATE(517), - [sym__list_lower_alpha_parens] = STATE(618), - [sym__list_item_lower_alpha_parens] = STATE(515), - [sym__list_upper_alpha_period] = STATE(618), - [sym__list_item_upper_alpha_period] = STATE(514), - [sym__list_upper_alpha_paren] = STATE(618), - [sym__list_item_upper_alpha_paren] = STATE(510), - [sym__list_upper_alpha_parens] = STATE(618), - [sym__list_item_upper_alpha_parens] = STATE(501), - [sym__list_lower_roman_period] = STATE(618), - [sym__list_item_lower_roman_period] = STATE(500), - [sym__list_lower_roman_paren] = STATE(618), - [sym__list_item_lower_roman_paren] = STATE(499), - [sym__list_lower_roman_parens] = STATE(618), - [sym__list_item_lower_roman_parens] = STATE(498), - [sym__list_upper_roman_period] = STATE(618), - [sym__list_item_upper_roman_period] = STATE(497), - [sym__list_upper_roman_paren] = STATE(618), - [sym__list_item_upper_roman_paren] = STATE(496), - [sym__list_upper_roman_parens] = STATE(618), - [sym__list_item_upper_roman_parens] = STATE(579), - [sym_list_item_content] = STATE(863), - [sym_table] = STATE(445), - [sym__table_content] = STATE(358), - [sym_table_separator] = STATE(358), - [sym_table_row] = STATE(383), - [sym_footnote] = STATE(445), - [sym_footnote_marker_begin] = STATE(1080), - [sym_div] = STATE(445), - [sym_div_marker_begin] = STATE(952), - [sym_code_block] = STATE(445), - [sym_raw_block] = STATE(445), - [sym_thematic_break] = STATE(445), - [sym_block_quote] = STATE(445), - [sym__block_quote_prefix] = STATE(285), - [sym_link_reference_definition] = STATE(445), - [sym_block_attribute] = STATE(445), - [sym__paragraph] = STATE(445), - [sym__paragraph_content] = STATE(890), - [sym__inline] = STATE(710), - [sym__symbol_fallback] = STATE(355), - [aux_sym__list_dash_repeat1] = STATE(420), - [aux_sym__list_plus_repeat1] = STATE(421), - [aux_sym__list_star_repeat1] = STATE(422), - [aux_sym__list_task_repeat1] = STATE(404), - [aux_sym__list_definition_repeat1] = STATE(527), - [aux_sym__list_decimal_period_repeat1] = STATE(524), - [aux_sym__list_decimal_paren_repeat1] = STATE(521), - [aux_sym__list_decimal_parens_repeat1] = STATE(520), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(518), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(515), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(514), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(510), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(501), - [aux_sym__list_lower_roman_period_repeat1] = STATE(500), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(499), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(498), - [aux_sym__list_upper_roman_period_repeat1] = STATE(497), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(579), - [aux_sym_table_repeat1] = STATE(358), - [aux_sym__block_quote_prefix_repeat1] = STATE(316), - [aux_sym__inline_repeat1] = STATE(355), + [sym__block_with_heading] = STATE(442), + [sym__block_element] = STATE(442), + [sym_heading] = STATE(442), + [sym_list] = STATE(442), + [sym__list_dash] = STATE(684), + [sym__list_item_dash] = STATE(634), + [sym__list_plus] = STATE(684), + [sym__list_item_plus] = STATE(651), + [sym__list_star] = STATE(684), + [sym__list_item_star] = STATE(697), + [sym__list_task] = STATE(684), + [sym__list_item_task] = STATE(707), + [sym_list_marker_task] = STATE(47), + [sym__list_definition] = STATE(684), + [sym__list_item_definition] = STATE(736), + [sym__list_decimal_period] = STATE(684), + [sym__list_item_decimal_period] = STATE(795), + [sym__list_decimal_paren] = STATE(684), + [sym__list_item_decimal_paren] = STATE(848), + [sym__list_decimal_parens] = STATE(684), + [sym__list_item_decimal_parens] = STATE(772), + [sym__list_lower_alpha_period] = STATE(684), + [sym__list_item_lower_alpha_period] = STATE(787), + [sym__list_lower_alpha_paren] = STATE(684), + [sym__list_item_lower_alpha_paren] = STATE(792), + [sym__list_lower_alpha_parens] = STATE(684), + [sym__list_item_lower_alpha_parens] = STATE(793), + [sym__list_upper_alpha_period] = STATE(684), + [sym__list_item_upper_alpha_period] = STATE(797), + [sym__list_upper_alpha_paren] = STATE(684), + [sym__list_item_upper_alpha_paren] = STATE(798), + [sym__list_upper_alpha_parens] = STATE(684), + [sym__list_item_upper_alpha_parens] = STATE(799), + [sym__list_lower_roman_period] = STATE(684), + [sym__list_item_lower_roman_period] = STATE(801), + [sym__list_lower_roman_paren] = STATE(684), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(684), + [sym__list_item_lower_roman_parens] = STATE(814), + [sym__list_upper_roman_period] = STATE(684), + [sym__list_item_upper_roman_period] = STATE(818), + [sym__list_upper_roman_paren] = STATE(684), + [sym__list_item_upper_roman_paren] = STATE(819), + [sym__list_upper_roman_parens] = STATE(684), + [sym__list_item_upper_roman_parens] = STATE(822), + [sym_list_item_content] = STATE(766), + [sym_table] = STATE(442), + [sym__table_content] = STATE(368), + [sym_table_separator] = STATE(368), + [sym_table_row] = STATE(389), + [sym_footnote] = STATE(442), + [sym_footnote_marker_begin] = STATE(1116), + [sym_div] = STATE(442), + [sym__div_marker_begin] = STATE(988), + [sym_code_block] = STATE(442), + [sym_raw_block] = STATE(442), + [sym_thematic_break] = STATE(442), + [sym_block_quote] = STATE(442), + [sym__block_quote_prefix] = STATE(294), + [sym_link_reference_definition] = STATE(442), + [sym_block_attribute] = STATE(442), + [sym__paragraph] = STATE(442), + [sym__paragraph_content] = STATE(932), + [sym__paragraph_inline_content] = STATE(930), + [sym__inline] = STATE(695), + [sym__symbol_fallback] = STATE(358), + [aux_sym__list_dash_repeat1] = STATE(423), + [aux_sym__list_plus_repeat1] = STATE(417), + [aux_sym__list_star_repeat1] = STATE(420), + [aux_sym__list_task_repeat1] = STATE(395), + [aux_sym__list_definition_repeat1] = STATE(510), + [aux_sym__list_decimal_period_repeat1] = STATE(511), + [aux_sym__list_decimal_paren_repeat1] = STATE(512), + [aux_sym__list_decimal_parens_repeat1] = STATE(513), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(514), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(515), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(516), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(517), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(518), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(519), + [aux_sym__list_lower_roman_period_repeat1] = STATE(520), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(521), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(522), + [aux_sym__list_upper_roman_period_repeat1] = STATE(523), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(524), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(525), + [aux_sym_table_repeat1] = STATE(368), + [aux_sym__block_quote_prefix_repeat1] = STATE(320), + [aux_sym__inline_repeat1] = STATE(358), [anon_sym_LBRACK] = ACTIONS(385), [anon_sym_PIPE] = ACTIONS(387), [anon_sym_LBRACK_CARET] = ACTIONS(9), @@ -9523,7 +9816,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(417), + [sym__newline] = ACTIONS(421), [sym__heading_begin] = ACTIONS(393), [sym__div_begin] = ACTIONS(21), [sym__code_block_begin] = ACTIONS(395), @@ -9553,94 +9846,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__thematic_break_star] = ACTIONS(401), }, [41] = { - [sym__block_with_heading] = STATE(470), - [sym__block_element] = STATE(470), - [sym_heading] = STATE(470), - [sym_list] = STATE(470), - [sym__list_dash] = STATE(618), - [sym__list_item_dash] = STATE(420), - [sym__list_plus] = STATE(618), - [sym__list_item_plus] = STATE(421), - [sym__list_star] = STATE(618), - [sym__list_item_star] = STATE(422), - [sym__list_task] = STATE(618), - [sym__list_item_task] = STATE(404), - [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(618), - [sym__list_item_definition] = STATE(527), - [sym__list_decimal_period] = STATE(618), - [sym__list_item_decimal_period] = STATE(524), - [sym__list_decimal_paren] = STATE(618), - [sym__list_item_decimal_paren] = STATE(521), - [sym__list_decimal_parens] = STATE(618), - [sym__list_item_decimal_parens] = STATE(520), - [sym__list_lower_alpha_period] = STATE(618), - [sym__list_item_lower_alpha_period] = STATE(518), - [sym__list_lower_alpha_paren] = STATE(618), - [sym__list_item_lower_alpha_paren] = STATE(517), - [sym__list_lower_alpha_parens] = STATE(618), - [sym__list_item_lower_alpha_parens] = STATE(515), - [sym__list_upper_alpha_period] = STATE(618), - [sym__list_item_upper_alpha_period] = STATE(514), - [sym__list_upper_alpha_paren] = STATE(618), - [sym__list_item_upper_alpha_paren] = STATE(510), - [sym__list_upper_alpha_parens] = STATE(618), - [sym__list_item_upper_alpha_parens] = STATE(501), - [sym__list_lower_roman_period] = STATE(618), - [sym__list_item_lower_roman_period] = STATE(500), - [sym__list_lower_roman_paren] = STATE(618), - [sym__list_item_lower_roman_paren] = STATE(499), - [sym__list_lower_roman_parens] = STATE(618), - [sym__list_item_lower_roman_parens] = STATE(498), - [sym__list_upper_roman_period] = STATE(618), - [sym__list_item_upper_roman_period] = STATE(497), - [sym__list_upper_roman_paren] = STATE(618), - [sym__list_item_upper_roman_paren] = STATE(496), - [sym__list_upper_roman_parens] = STATE(618), - [sym__list_item_upper_roman_parens] = STATE(579), - [sym_list_item_content] = STATE(876), - [sym_table] = STATE(470), - [sym__table_content] = STATE(358), - [sym_table_separator] = STATE(358), - [sym_table_row] = STATE(383), - [sym_footnote] = STATE(470), - [sym_footnote_marker_begin] = STATE(1080), - [sym_div] = STATE(470), - [sym_div_marker_begin] = STATE(952), - [sym_code_block] = STATE(470), - [sym_raw_block] = STATE(470), - [sym_thematic_break] = STATE(470), - [sym_block_quote] = STATE(470), - [sym__block_quote_prefix] = STATE(285), - [sym_link_reference_definition] = STATE(470), - [sym_block_attribute] = STATE(470), - [sym__paragraph] = STATE(470), - [sym__paragraph_content] = STATE(890), - [sym__inline] = STATE(710), - [sym__symbol_fallback] = STATE(355), - [aux_sym__list_dash_repeat1] = STATE(420), - [aux_sym__list_plus_repeat1] = STATE(421), - [aux_sym__list_star_repeat1] = STATE(422), - [aux_sym__list_task_repeat1] = STATE(404), - [aux_sym__list_definition_repeat1] = STATE(527), - [aux_sym__list_decimal_period_repeat1] = STATE(524), - [aux_sym__list_decimal_paren_repeat1] = STATE(521), - [aux_sym__list_decimal_parens_repeat1] = STATE(520), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(518), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(515), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(514), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(510), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(501), - [aux_sym__list_lower_roman_period_repeat1] = STATE(500), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(499), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(498), - [aux_sym__list_upper_roman_period_repeat1] = STATE(497), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(579), - [aux_sym_table_repeat1] = STATE(358), - [aux_sym__block_quote_prefix_repeat1] = STATE(316), - [aux_sym__inline_repeat1] = STATE(355), + [sym__block_with_heading] = STATE(444), + [sym__block_element] = STATE(444), + [sym_heading] = STATE(444), + [sym_list] = STATE(444), + [sym__list_dash] = STATE(684), + [sym__list_item_dash] = STATE(634), + [sym__list_plus] = STATE(684), + [sym__list_item_plus] = STATE(651), + [sym__list_star] = STATE(684), + [sym__list_item_star] = STATE(697), + [sym__list_task] = STATE(684), + [sym__list_item_task] = STATE(707), + [sym_list_marker_task] = STATE(47), + [sym__list_definition] = STATE(684), + [sym__list_item_definition] = STATE(736), + [sym__list_decimal_period] = STATE(684), + [sym__list_item_decimal_period] = STATE(795), + [sym__list_decimal_paren] = STATE(684), + [sym__list_item_decimal_paren] = STATE(848), + [sym__list_decimal_parens] = STATE(684), + [sym__list_item_decimal_parens] = STATE(772), + [sym__list_lower_alpha_period] = STATE(684), + [sym__list_item_lower_alpha_period] = STATE(787), + [sym__list_lower_alpha_paren] = STATE(684), + [sym__list_item_lower_alpha_paren] = STATE(792), + [sym__list_lower_alpha_parens] = STATE(684), + [sym__list_item_lower_alpha_parens] = STATE(793), + [sym__list_upper_alpha_period] = STATE(684), + [sym__list_item_upper_alpha_period] = STATE(797), + [sym__list_upper_alpha_paren] = STATE(684), + [sym__list_item_upper_alpha_paren] = STATE(798), + [sym__list_upper_alpha_parens] = STATE(684), + [sym__list_item_upper_alpha_parens] = STATE(799), + [sym__list_lower_roman_period] = STATE(684), + [sym__list_item_lower_roman_period] = STATE(801), + [sym__list_lower_roman_paren] = STATE(684), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(684), + [sym__list_item_lower_roman_parens] = STATE(814), + [sym__list_upper_roman_period] = STATE(684), + [sym__list_item_upper_roman_period] = STATE(818), + [sym__list_upper_roman_paren] = STATE(684), + [sym__list_item_upper_roman_paren] = STATE(819), + [sym__list_upper_roman_parens] = STATE(684), + [sym__list_item_upper_roman_parens] = STATE(822), + [sym_list_item_content] = STATE(767), + [sym_table] = STATE(444), + [sym__table_content] = STATE(368), + [sym_table_separator] = STATE(368), + [sym_table_row] = STATE(389), + [sym_footnote] = STATE(444), + [sym_footnote_marker_begin] = STATE(1116), + [sym_div] = STATE(444), + [sym__div_marker_begin] = STATE(988), + [sym_code_block] = STATE(444), + [sym_raw_block] = STATE(444), + [sym_thematic_break] = STATE(444), + [sym_block_quote] = STATE(444), + [sym__block_quote_prefix] = STATE(294), + [sym_link_reference_definition] = STATE(444), + [sym_block_attribute] = STATE(444), + [sym__paragraph] = STATE(444), + [sym__paragraph_content] = STATE(932), + [sym__paragraph_inline_content] = STATE(930), + [sym__inline] = STATE(695), + [sym__symbol_fallback] = STATE(358), + [aux_sym__list_dash_repeat1] = STATE(423), + [aux_sym__list_plus_repeat1] = STATE(417), + [aux_sym__list_star_repeat1] = STATE(420), + [aux_sym__list_task_repeat1] = STATE(395), + [aux_sym__list_definition_repeat1] = STATE(510), + [aux_sym__list_decimal_period_repeat1] = STATE(511), + [aux_sym__list_decimal_paren_repeat1] = STATE(512), + [aux_sym__list_decimal_parens_repeat1] = STATE(513), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(514), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(515), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(516), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(517), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(518), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(519), + [aux_sym__list_lower_roman_period_repeat1] = STATE(520), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(521), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(522), + [aux_sym__list_upper_roman_period_repeat1] = STATE(523), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(524), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(525), + [aux_sym_table_repeat1] = STATE(368), + [aux_sym__block_quote_prefix_repeat1] = STATE(320), + [aux_sym__inline_repeat1] = STATE(358), [anon_sym_LBRACK] = ACTIONS(385), [anon_sym_PIPE] = ACTIONS(387), [anon_sym_LBRACK_CARET] = ACTIONS(9), @@ -9651,7 +9945,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(419), + [sym__newline] = ACTIONS(423), [sym__heading_begin] = ACTIONS(393), [sym__div_begin] = ACTIONS(21), [sym__code_block_begin] = ACTIONS(395), @@ -9681,94 +9975,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__thematic_break_star] = ACTIONS(401), }, [42] = { - [sym__block_with_heading] = STATE(479), - [sym__block_element] = STATE(479), - [sym_heading] = STATE(479), - [sym_list] = STATE(479), - [sym__list_dash] = STATE(618), - [sym__list_item_dash] = STATE(420), - [sym__list_plus] = STATE(618), - [sym__list_item_plus] = STATE(421), - [sym__list_star] = STATE(618), - [sym__list_item_star] = STATE(422), - [sym__list_task] = STATE(618), - [sym__list_item_task] = STATE(404), - [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(618), - [sym__list_item_definition] = STATE(527), - [sym__list_decimal_period] = STATE(618), - [sym__list_item_decimal_period] = STATE(524), - [sym__list_decimal_paren] = STATE(618), - [sym__list_item_decimal_paren] = STATE(521), - [sym__list_decimal_parens] = STATE(618), - [sym__list_item_decimal_parens] = STATE(520), - [sym__list_lower_alpha_period] = STATE(618), - [sym__list_item_lower_alpha_period] = STATE(518), - [sym__list_lower_alpha_paren] = STATE(618), - [sym__list_item_lower_alpha_paren] = STATE(517), - [sym__list_lower_alpha_parens] = STATE(618), - [sym__list_item_lower_alpha_parens] = STATE(515), - [sym__list_upper_alpha_period] = STATE(618), - [sym__list_item_upper_alpha_period] = STATE(514), - [sym__list_upper_alpha_paren] = STATE(618), - [sym__list_item_upper_alpha_paren] = STATE(510), - [sym__list_upper_alpha_parens] = STATE(618), - [sym__list_item_upper_alpha_parens] = STATE(501), - [sym__list_lower_roman_period] = STATE(618), - [sym__list_item_lower_roman_period] = STATE(500), - [sym__list_lower_roman_paren] = STATE(618), - [sym__list_item_lower_roman_paren] = STATE(499), - [sym__list_lower_roman_parens] = STATE(618), - [sym__list_item_lower_roman_parens] = STATE(498), - [sym__list_upper_roman_period] = STATE(618), - [sym__list_item_upper_roman_period] = STATE(497), - [sym__list_upper_roman_paren] = STATE(618), - [sym__list_item_upper_roman_paren] = STATE(496), - [sym__list_upper_roman_parens] = STATE(618), - [sym__list_item_upper_roman_parens] = STATE(579), - [sym_list_item_content] = STATE(669), - [sym_table] = STATE(479), - [sym__table_content] = STATE(358), - [sym_table_separator] = STATE(358), - [sym_table_row] = STATE(383), - [sym_footnote] = STATE(479), - [sym_footnote_marker_begin] = STATE(1080), - [sym_div] = STATE(479), - [sym_div_marker_begin] = STATE(952), - [sym_code_block] = STATE(479), - [sym_raw_block] = STATE(479), - [sym_thematic_break] = STATE(479), - [sym_block_quote] = STATE(479), - [sym__block_quote_prefix] = STATE(285), - [sym_link_reference_definition] = STATE(479), - [sym_block_attribute] = STATE(479), - [sym__paragraph] = STATE(479), - [sym__paragraph_content] = STATE(890), - [sym__inline] = STATE(710), - [sym__symbol_fallback] = STATE(355), - [aux_sym__list_dash_repeat1] = STATE(420), - [aux_sym__list_plus_repeat1] = STATE(421), - [aux_sym__list_star_repeat1] = STATE(422), - [aux_sym__list_task_repeat1] = STATE(404), - [aux_sym__list_definition_repeat1] = STATE(527), - [aux_sym__list_decimal_period_repeat1] = STATE(524), - [aux_sym__list_decimal_paren_repeat1] = STATE(521), - [aux_sym__list_decimal_parens_repeat1] = STATE(520), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(518), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(515), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(514), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(510), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(501), - [aux_sym__list_lower_roman_period_repeat1] = STATE(500), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(499), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(498), - [aux_sym__list_upper_roman_period_repeat1] = STATE(497), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(579), - [aux_sym_table_repeat1] = STATE(358), - [aux_sym__block_quote_prefix_repeat1] = STATE(316), - [aux_sym__inline_repeat1] = STATE(355), + [sym__block_with_heading] = STATE(446), + [sym__block_element] = STATE(446), + [sym_heading] = STATE(446), + [sym_list] = STATE(446), + [sym__list_dash] = STATE(684), + [sym__list_item_dash] = STATE(634), + [sym__list_plus] = STATE(684), + [sym__list_item_plus] = STATE(651), + [sym__list_star] = STATE(684), + [sym__list_item_star] = STATE(697), + [sym__list_task] = STATE(684), + [sym__list_item_task] = STATE(707), + [sym_list_marker_task] = STATE(47), + [sym__list_definition] = STATE(684), + [sym__list_item_definition] = STATE(736), + [sym__list_decimal_period] = STATE(684), + [sym__list_item_decimal_period] = STATE(795), + [sym__list_decimal_paren] = STATE(684), + [sym__list_item_decimal_paren] = STATE(848), + [sym__list_decimal_parens] = STATE(684), + [sym__list_item_decimal_parens] = STATE(772), + [sym__list_lower_alpha_period] = STATE(684), + [sym__list_item_lower_alpha_period] = STATE(787), + [sym__list_lower_alpha_paren] = STATE(684), + [sym__list_item_lower_alpha_paren] = STATE(792), + [sym__list_lower_alpha_parens] = STATE(684), + [sym__list_item_lower_alpha_parens] = STATE(793), + [sym__list_upper_alpha_period] = STATE(684), + [sym__list_item_upper_alpha_period] = STATE(797), + [sym__list_upper_alpha_paren] = STATE(684), + [sym__list_item_upper_alpha_paren] = STATE(798), + [sym__list_upper_alpha_parens] = STATE(684), + [sym__list_item_upper_alpha_parens] = STATE(799), + [sym__list_lower_roman_period] = STATE(684), + [sym__list_item_lower_roman_period] = STATE(801), + [sym__list_lower_roman_paren] = STATE(684), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(684), + [sym__list_item_lower_roman_parens] = STATE(814), + [sym__list_upper_roman_period] = STATE(684), + [sym__list_item_upper_roman_period] = STATE(818), + [sym__list_upper_roman_paren] = STATE(684), + [sym__list_item_upper_roman_paren] = STATE(819), + [sym__list_upper_roman_parens] = STATE(684), + [sym__list_item_upper_roman_parens] = STATE(822), + [sym_list_item_content] = STATE(768), + [sym_table] = STATE(446), + [sym__table_content] = STATE(368), + [sym_table_separator] = STATE(368), + [sym_table_row] = STATE(389), + [sym_footnote] = STATE(446), + [sym_footnote_marker_begin] = STATE(1116), + [sym_div] = STATE(446), + [sym__div_marker_begin] = STATE(988), + [sym_code_block] = STATE(446), + [sym_raw_block] = STATE(446), + [sym_thematic_break] = STATE(446), + [sym_block_quote] = STATE(446), + [sym__block_quote_prefix] = STATE(294), + [sym_link_reference_definition] = STATE(446), + [sym_block_attribute] = STATE(446), + [sym__paragraph] = STATE(446), + [sym__paragraph_content] = STATE(932), + [sym__paragraph_inline_content] = STATE(930), + [sym__inline] = STATE(695), + [sym__symbol_fallback] = STATE(358), + [aux_sym__list_dash_repeat1] = STATE(423), + [aux_sym__list_plus_repeat1] = STATE(417), + [aux_sym__list_star_repeat1] = STATE(420), + [aux_sym__list_task_repeat1] = STATE(395), + [aux_sym__list_definition_repeat1] = STATE(510), + [aux_sym__list_decimal_period_repeat1] = STATE(511), + [aux_sym__list_decimal_paren_repeat1] = STATE(512), + [aux_sym__list_decimal_parens_repeat1] = STATE(513), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(514), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(515), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(516), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(517), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(518), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(519), + [aux_sym__list_lower_roman_period_repeat1] = STATE(520), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(521), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(522), + [aux_sym__list_upper_roman_period_repeat1] = STATE(523), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(524), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(525), + [aux_sym_table_repeat1] = STATE(368), + [aux_sym__block_quote_prefix_repeat1] = STATE(320), + [aux_sym__inline_repeat1] = STATE(358), [anon_sym_LBRACK] = ACTIONS(385), [anon_sym_PIPE] = ACTIONS(387), [anon_sym_LBRACK_CARET] = ACTIONS(9), @@ -9779,7 +10074,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(403), + [sym__newline] = ACTIONS(425), [sym__heading_begin] = ACTIONS(393), [sym__div_begin] = ACTIONS(21), [sym__code_block_begin] = ACTIONS(395), @@ -9809,94 +10104,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__thematic_break_star] = ACTIONS(401), }, [43] = { - [sym__block_with_heading] = STATE(465), - [sym__block_element] = STATE(465), - [sym_heading] = STATE(465), - [sym_list] = STATE(465), - [sym__list_dash] = STATE(618), - [sym__list_item_dash] = STATE(420), - [sym__list_plus] = STATE(618), - [sym__list_item_plus] = STATE(421), - [sym__list_star] = STATE(618), - [sym__list_item_star] = STATE(422), - [sym__list_task] = STATE(618), - [sym__list_item_task] = STATE(404), - [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(618), - [sym__list_item_definition] = STATE(527), - [sym__list_decimal_period] = STATE(618), - [sym__list_item_decimal_period] = STATE(524), - [sym__list_decimal_paren] = STATE(618), - [sym__list_item_decimal_paren] = STATE(521), - [sym__list_decimal_parens] = STATE(618), - [sym__list_item_decimal_parens] = STATE(520), - [sym__list_lower_alpha_period] = STATE(618), - [sym__list_item_lower_alpha_period] = STATE(518), - [sym__list_lower_alpha_paren] = STATE(618), - [sym__list_item_lower_alpha_paren] = STATE(517), - [sym__list_lower_alpha_parens] = STATE(618), - [sym__list_item_lower_alpha_parens] = STATE(515), - [sym__list_upper_alpha_period] = STATE(618), - [sym__list_item_upper_alpha_period] = STATE(514), - [sym__list_upper_alpha_paren] = STATE(618), - [sym__list_item_upper_alpha_paren] = STATE(510), - [sym__list_upper_alpha_parens] = STATE(618), - [sym__list_item_upper_alpha_parens] = STATE(501), - [sym__list_lower_roman_period] = STATE(618), - [sym__list_item_lower_roman_period] = STATE(500), - [sym__list_lower_roman_paren] = STATE(618), - [sym__list_item_lower_roman_paren] = STATE(499), - [sym__list_lower_roman_parens] = STATE(618), - [sym__list_item_lower_roman_parens] = STATE(498), - [sym__list_upper_roman_period] = STATE(618), - [sym__list_item_upper_roman_period] = STATE(497), - [sym__list_upper_roman_paren] = STATE(618), - [sym__list_item_upper_roman_paren] = STATE(496), - [sym__list_upper_roman_parens] = STATE(618), - [sym__list_item_upper_roman_parens] = STATE(579), - [sym_list_item_content] = STATE(842), - [sym_table] = STATE(465), - [sym__table_content] = STATE(358), - [sym_table_separator] = STATE(358), - [sym_table_row] = STATE(383), - [sym_footnote] = STATE(465), - [sym_footnote_marker_begin] = STATE(1080), - [sym_div] = STATE(465), - [sym_div_marker_begin] = STATE(952), - [sym_code_block] = STATE(465), - [sym_raw_block] = STATE(465), - [sym_thematic_break] = STATE(465), - [sym_block_quote] = STATE(465), - [sym__block_quote_prefix] = STATE(285), - [sym_link_reference_definition] = STATE(465), - [sym_block_attribute] = STATE(465), - [sym__paragraph] = STATE(465), - [sym__paragraph_content] = STATE(890), - [sym__inline] = STATE(710), - [sym__symbol_fallback] = STATE(355), - [aux_sym__list_dash_repeat1] = STATE(420), - [aux_sym__list_plus_repeat1] = STATE(421), - [aux_sym__list_star_repeat1] = STATE(422), - [aux_sym__list_task_repeat1] = STATE(404), - [aux_sym__list_definition_repeat1] = STATE(527), - [aux_sym__list_decimal_period_repeat1] = STATE(524), - [aux_sym__list_decimal_paren_repeat1] = STATE(521), - [aux_sym__list_decimal_parens_repeat1] = STATE(520), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(518), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(515), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(514), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(510), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(501), - [aux_sym__list_lower_roman_period_repeat1] = STATE(500), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(499), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(498), - [aux_sym__list_upper_roman_period_repeat1] = STATE(497), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(579), - [aux_sym_table_repeat1] = STATE(358), - [aux_sym__block_quote_prefix_repeat1] = STATE(316), - [aux_sym__inline_repeat1] = STATE(355), + [sym__block_with_heading] = STATE(448), + [sym__block_element] = STATE(448), + [sym_heading] = STATE(448), + [sym_list] = STATE(448), + [sym__list_dash] = STATE(684), + [sym__list_item_dash] = STATE(634), + [sym__list_plus] = STATE(684), + [sym__list_item_plus] = STATE(651), + [sym__list_star] = STATE(684), + [sym__list_item_star] = STATE(697), + [sym__list_task] = STATE(684), + [sym__list_item_task] = STATE(707), + [sym_list_marker_task] = STATE(47), + [sym__list_definition] = STATE(684), + [sym__list_item_definition] = STATE(736), + [sym__list_decimal_period] = STATE(684), + [sym__list_item_decimal_period] = STATE(795), + [sym__list_decimal_paren] = STATE(684), + [sym__list_item_decimal_paren] = STATE(848), + [sym__list_decimal_parens] = STATE(684), + [sym__list_item_decimal_parens] = STATE(772), + [sym__list_lower_alpha_period] = STATE(684), + [sym__list_item_lower_alpha_period] = STATE(787), + [sym__list_lower_alpha_paren] = STATE(684), + [sym__list_item_lower_alpha_paren] = STATE(792), + [sym__list_lower_alpha_parens] = STATE(684), + [sym__list_item_lower_alpha_parens] = STATE(793), + [sym__list_upper_alpha_period] = STATE(684), + [sym__list_item_upper_alpha_period] = STATE(797), + [sym__list_upper_alpha_paren] = STATE(684), + [sym__list_item_upper_alpha_paren] = STATE(798), + [sym__list_upper_alpha_parens] = STATE(684), + [sym__list_item_upper_alpha_parens] = STATE(799), + [sym__list_lower_roman_period] = STATE(684), + [sym__list_item_lower_roman_period] = STATE(801), + [sym__list_lower_roman_paren] = STATE(684), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(684), + [sym__list_item_lower_roman_parens] = STATE(814), + [sym__list_upper_roman_period] = STATE(684), + [sym__list_item_upper_roman_period] = STATE(818), + [sym__list_upper_roman_paren] = STATE(684), + [sym__list_item_upper_roman_paren] = STATE(819), + [sym__list_upper_roman_parens] = STATE(684), + [sym__list_item_upper_roman_parens] = STATE(822), + [sym_list_item_content] = STATE(769), + [sym_table] = STATE(448), + [sym__table_content] = STATE(368), + [sym_table_separator] = STATE(368), + [sym_table_row] = STATE(389), + [sym_footnote] = STATE(448), + [sym_footnote_marker_begin] = STATE(1116), + [sym_div] = STATE(448), + [sym__div_marker_begin] = STATE(988), + [sym_code_block] = STATE(448), + [sym_raw_block] = STATE(448), + [sym_thematic_break] = STATE(448), + [sym_block_quote] = STATE(448), + [sym__block_quote_prefix] = STATE(294), + [sym_link_reference_definition] = STATE(448), + [sym_block_attribute] = STATE(448), + [sym__paragraph] = STATE(448), + [sym__paragraph_content] = STATE(932), + [sym__paragraph_inline_content] = STATE(930), + [sym__inline] = STATE(695), + [sym__symbol_fallback] = STATE(358), + [aux_sym__list_dash_repeat1] = STATE(423), + [aux_sym__list_plus_repeat1] = STATE(417), + [aux_sym__list_star_repeat1] = STATE(420), + [aux_sym__list_task_repeat1] = STATE(395), + [aux_sym__list_definition_repeat1] = STATE(510), + [aux_sym__list_decimal_period_repeat1] = STATE(511), + [aux_sym__list_decimal_paren_repeat1] = STATE(512), + [aux_sym__list_decimal_parens_repeat1] = STATE(513), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(514), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(515), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(516), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(517), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(518), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(519), + [aux_sym__list_lower_roman_period_repeat1] = STATE(520), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(521), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(522), + [aux_sym__list_upper_roman_period_repeat1] = STATE(523), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(524), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(525), + [aux_sym_table_repeat1] = STATE(368), + [aux_sym__block_quote_prefix_repeat1] = STATE(320), + [aux_sym__inline_repeat1] = STATE(358), [anon_sym_LBRACK] = ACTIONS(385), [anon_sym_PIPE] = ACTIONS(387), [anon_sym_LBRACK_CARET] = ACTIONS(9), @@ -9907,7 +10203,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(421), + [sym__newline] = ACTIONS(427), [sym__heading_begin] = ACTIONS(393), [sym__div_begin] = ACTIONS(21), [sym__code_block_begin] = ACTIONS(395), @@ -9937,94 +10233,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__thematic_break_star] = ACTIONS(401), }, [44] = { - [sym__block_with_heading] = STATE(440), - [sym__block_element] = STATE(440), - [sym_heading] = STATE(440), - [sym_list] = STATE(440), - [sym__list_dash] = STATE(618), - [sym__list_item_dash] = STATE(420), - [sym__list_plus] = STATE(618), - [sym__list_item_plus] = STATE(421), - [sym__list_star] = STATE(618), - [sym__list_item_star] = STATE(422), - [sym__list_task] = STATE(618), - [sym__list_item_task] = STATE(404), - [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(618), - [sym__list_item_definition] = STATE(527), - [sym__list_decimal_period] = STATE(618), - [sym__list_item_decimal_period] = STATE(524), - [sym__list_decimal_paren] = STATE(618), - [sym__list_item_decimal_paren] = STATE(521), - [sym__list_decimal_parens] = STATE(618), - [sym__list_item_decimal_parens] = STATE(520), - [sym__list_lower_alpha_period] = STATE(618), - [sym__list_item_lower_alpha_period] = STATE(518), - [sym__list_lower_alpha_paren] = STATE(618), - [sym__list_item_lower_alpha_paren] = STATE(517), - [sym__list_lower_alpha_parens] = STATE(618), - [sym__list_item_lower_alpha_parens] = STATE(515), - [sym__list_upper_alpha_period] = STATE(618), - [sym__list_item_upper_alpha_period] = STATE(514), - [sym__list_upper_alpha_paren] = STATE(618), - [sym__list_item_upper_alpha_paren] = STATE(510), - [sym__list_upper_alpha_parens] = STATE(618), - [sym__list_item_upper_alpha_parens] = STATE(501), - [sym__list_lower_roman_period] = STATE(618), - [sym__list_item_lower_roman_period] = STATE(500), - [sym__list_lower_roman_paren] = STATE(618), - [sym__list_item_lower_roman_paren] = STATE(499), - [sym__list_lower_roman_parens] = STATE(618), - [sym__list_item_lower_roman_parens] = STATE(498), - [sym__list_upper_roman_period] = STATE(618), - [sym__list_item_upper_roman_period] = STATE(497), - [sym__list_upper_roman_paren] = STATE(618), - [sym__list_item_upper_roman_paren] = STATE(496), - [sym__list_upper_roman_parens] = STATE(618), - [sym__list_item_upper_roman_parens] = STATE(579), - [sym_list_item_content] = STATE(843), - [sym_table] = STATE(440), - [sym__table_content] = STATE(358), - [sym_table_separator] = STATE(358), - [sym_table_row] = STATE(383), - [sym_footnote] = STATE(440), - [sym_footnote_marker_begin] = STATE(1080), - [sym_div] = STATE(440), - [sym_div_marker_begin] = STATE(952), - [sym_code_block] = STATE(440), - [sym_raw_block] = STATE(440), - [sym_thematic_break] = STATE(440), - [sym_block_quote] = STATE(440), - [sym__block_quote_prefix] = STATE(285), - [sym_link_reference_definition] = STATE(440), - [sym_block_attribute] = STATE(440), - [sym__paragraph] = STATE(440), - [sym__paragraph_content] = STATE(890), - [sym__inline] = STATE(710), - [sym__symbol_fallback] = STATE(355), - [aux_sym__list_dash_repeat1] = STATE(420), - [aux_sym__list_plus_repeat1] = STATE(421), - [aux_sym__list_star_repeat1] = STATE(422), - [aux_sym__list_task_repeat1] = STATE(404), - [aux_sym__list_definition_repeat1] = STATE(527), - [aux_sym__list_decimal_period_repeat1] = STATE(524), - [aux_sym__list_decimal_paren_repeat1] = STATE(521), - [aux_sym__list_decimal_parens_repeat1] = STATE(520), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(518), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(515), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(514), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(510), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(501), - [aux_sym__list_lower_roman_period_repeat1] = STATE(500), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(499), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(498), - [aux_sym__list_upper_roman_period_repeat1] = STATE(497), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(579), - [aux_sym_table_repeat1] = STATE(358), - [aux_sym__block_quote_prefix_repeat1] = STATE(316), - [aux_sym__inline_repeat1] = STATE(355), + [sym__block_with_heading] = STATE(453), + [sym__block_element] = STATE(453), + [sym_heading] = STATE(453), + [sym_list] = STATE(453), + [sym__list_dash] = STATE(684), + [sym__list_item_dash] = STATE(634), + [sym__list_plus] = STATE(684), + [sym__list_item_plus] = STATE(651), + [sym__list_star] = STATE(684), + [sym__list_item_star] = STATE(697), + [sym__list_task] = STATE(684), + [sym__list_item_task] = STATE(707), + [sym_list_marker_task] = STATE(47), + [sym__list_definition] = STATE(684), + [sym__list_item_definition] = STATE(736), + [sym__list_decimal_period] = STATE(684), + [sym__list_item_decimal_period] = STATE(795), + [sym__list_decimal_paren] = STATE(684), + [sym__list_item_decimal_paren] = STATE(848), + [sym__list_decimal_parens] = STATE(684), + [sym__list_item_decimal_parens] = STATE(772), + [sym__list_lower_alpha_period] = STATE(684), + [sym__list_item_lower_alpha_period] = STATE(787), + [sym__list_lower_alpha_paren] = STATE(684), + [sym__list_item_lower_alpha_paren] = STATE(792), + [sym__list_lower_alpha_parens] = STATE(684), + [sym__list_item_lower_alpha_parens] = STATE(793), + [sym__list_upper_alpha_period] = STATE(684), + [sym__list_item_upper_alpha_period] = STATE(797), + [sym__list_upper_alpha_paren] = STATE(684), + [sym__list_item_upper_alpha_paren] = STATE(798), + [sym__list_upper_alpha_parens] = STATE(684), + [sym__list_item_upper_alpha_parens] = STATE(799), + [sym__list_lower_roman_period] = STATE(684), + [sym__list_item_lower_roman_period] = STATE(801), + [sym__list_lower_roman_paren] = STATE(684), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(684), + [sym__list_item_lower_roman_parens] = STATE(814), + [sym__list_upper_roman_period] = STATE(684), + [sym__list_item_upper_roman_period] = STATE(818), + [sym__list_upper_roman_paren] = STATE(684), + [sym__list_item_upper_roman_paren] = STATE(819), + [sym__list_upper_roman_parens] = STATE(684), + [sym__list_item_upper_roman_parens] = STATE(822), + [sym_list_item_content] = STATE(627), + [sym_table] = STATE(453), + [sym__table_content] = STATE(368), + [sym_table_separator] = STATE(368), + [sym_table_row] = STATE(389), + [sym_footnote] = STATE(453), + [sym_footnote_marker_begin] = STATE(1116), + [sym_div] = STATE(453), + [sym__div_marker_begin] = STATE(988), + [sym_code_block] = STATE(453), + [sym_raw_block] = STATE(453), + [sym_thematic_break] = STATE(453), + [sym_block_quote] = STATE(453), + [sym__block_quote_prefix] = STATE(294), + [sym_link_reference_definition] = STATE(453), + [sym_block_attribute] = STATE(453), + [sym__paragraph] = STATE(453), + [sym__paragraph_content] = STATE(932), + [sym__paragraph_inline_content] = STATE(930), + [sym__inline] = STATE(695), + [sym__symbol_fallback] = STATE(358), + [aux_sym__list_dash_repeat1] = STATE(423), + [aux_sym__list_plus_repeat1] = STATE(417), + [aux_sym__list_star_repeat1] = STATE(420), + [aux_sym__list_task_repeat1] = STATE(395), + [aux_sym__list_definition_repeat1] = STATE(510), + [aux_sym__list_decimal_period_repeat1] = STATE(511), + [aux_sym__list_decimal_paren_repeat1] = STATE(512), + [aux_sym__list_decimal_parens_repeat1] = STATE(513), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(514), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(515), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(516), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(517), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(518), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(519), + [aux_sym__list_lower_roman_period_repeat1] = STATE(520), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(521), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(522), + [aux_sym__list_upper_roman_period_repeat1] = STATE(523), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(524), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(525), + [aux_sym_table_repeat1] = STATE(368), + [aux_sym__block_quote_prefix_repeat1] = STATE(320), + [aux_sym__inline_repeat1] = STATE(358), [anon_sym_LBRACK] = ACTIONS(385), [anon_sym_PIPE] = ACTIONS(387), [anon_sym_LBRACK_CARET] = ACTIONS(9), @@ -10035,7 +10332,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(423), + [sym__newline] = ACTIONS(409), [sym__heading_begin] = ACTIONS(393), [sym__div_begin] = ACTIONS(21), [sym__code_block_begin] = ACTIONS(395), @@ -10065,94 +10362,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__thematic_break_star] = ACTIONS(401), }, [45] = { - [sym__block_with_heading] = STATE(441), - [sym__block_element] = STATE(441), - [sym_heading] = STATE(441), - [sym_list] = STATE(441), - [sym__list_dash] = STATE(618), - [sym__list_item_dash] = STATE(420), - [sym__list_plus] = STATE(618), - [sym__list_item_plus] = STATE(421), - [sym__list_star] = STATE(618), - [sym__list_item_star] = STATE(422), - [sym__list_task] = STATE(618), - [sym__list_item_task] = STATE(404), - [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(618), - [sym__list_item_definition] = STATE(527), - [sym__list_decimal_period] = STATE(618), - [sym__list_item_decimal_period] = STATE(524), - [sym__list_decimal_paren] = STATE(618), - [sym__list_item_decimal_paren] = STATE(521), - [sym__list_decimal_parens] = STATE(618), - [sym__list_item_decimal_parens] = STATE(520), - [sym__list_lower_alpha_period] = STATE(618), - [sym__list_item_lower_alpha_period] = STATE(518), - [sym__list_lower_alpha_paren] = STATE(618), - [sym__list_item_lower_alpha_paren] = STATE(517), - [sym__list_lower_alpha_parens] = STATE(618), - [sym__list_item_lower_alpha_parens] = STATE(515), - [sym__list_upper_alpha_period] = STATE(618), - [sym__list_item_upper_alpha_period] = STATE(514), - [sym__list_upper_alpha_paren] = STATE(618), - [sym__list_item_upper_alpha_paren] = STATE(510), - [sym__list_upper_alpha_parens] = STATE(618), - [sym__list_item_upper_alpha_parens] = STATE(501), - [sym__list_lower_roman_period] = STATE(618), - [sym__list_item_lower_roman_period] = STATE(500), - [sym__list_lower_roman_paren] = STATE(618), - [sym__list_item_lower_roman_paren] = STATE(499), - [sym__list_lower_roman_parens] = STATE(618), - [sym__list_item_lower_roman_parens] = STATE(498), - [sym__list_upper_roman_period] = STATE(618), - [sym__list_item_upper_roman_period] = STATE(497), - [sym__list_upper_roman_paren] = STATE(618), - [sym__list_item_upper_roman_paren] = STATE(496), - [sym__list_upper_roman_parens] = STATE(618), - [sym__list_item_upper_roman_parens] = STATE(579), - [sym_list_item_content] = STATE(862), - [sym_table] = STATE(441), - [sym__table_content] = STATE(358), - [sym_table_separator] = STATE(358), - [sym_table_row] = STATE(383), - [sym_footnote] = STATE(441), - [sym_footnote_marker_begin] = STATE(1080), - [sym_div] = STATE(441), - [sym_div_marker_begin] = STATE(952), - [sym_code_block] = STATE(441), - [sym_raw_block] = STATE(441), - [sym_thematic_break] = STATE(441), - [sym_block_quote] = STATE(441), - [sym__block_quote_prefix] = STATE(285), - [sym_link_reference_definition] = STATE(441), - [sym_block_attribute] = STATE(441), - [sym__paragraph] = STATE(441), - [sym__paragraph_content] = STATE(890), - [sym__inline] = STATE(710), - [sym__symbol_fallback] = STATE(355), - [aux_sym__list_dash_repeat1] = STATE(420), - [aux_sym__list_plus_repeat1] = STATE(421), - [aux_sym__list_star_repeat1] = STATE(422), - [aux_sym__list_task_repeat1] = STATE(404), - [aux_sym__list_definition_repeat1] = STATE(527), - [aux_sym__list_decimal_period_repeat1] = STATE(524), - [aux_sym__list_decimal_paren_repeat1] = STATE(521), - [aux_sym__list_decimal_parens_repeat1] = STATE(520), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(518), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(515), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(514), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(510), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(501), - [aux_sym__list_lower_roman_period_repeat1] = STATE(500), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(499), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(498), - [aux_sym__list_upper_roman_period_repeat1] = STATE(497), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(579), - [aux_sym_table_repeat1] = STATE(358), - [aux_sym__block_quote_prefix_repeat1] = STATE(316), - [aux_sym__inline_repeat1] = STATE(355), + [sym__block_with_heading] = STATE(476), + [sym__block_element] = STATE(476), + [sym_heading] = STATE(476), + [sym_list] = STATE(476), + [sym__list_dash] = STATE(684), + [sym__list_item_dash] = STATE(634), + [sym__list_plus] = STATE(684), + [sym__list_item_plus] = STATE(651), + [sym__list_star] = STATE(684), + [sym__list_item_star] = STATE(697), + [sym__list_task] = STATE(684), + [sym__list_item_task] = STATE(707), + [sym_list_marker_task] = STATE(47), + [sym__list_definition] = STATE(684), + [sym__list_item_definition] = STATE(736), + [sym__list_decimal_period] = STATE(684), + [sym__list_item_decimal_period] = STATE(795), + [sym__list_decimal_paren] = STATE(684), + [sym__list_item_decimal_paren] = STATE(848), + [sym__list_decimal_parens] = STATE(684), + [sym__list_item_decimal_parens] = STATE(772), + [sym__list_lower_alpha_period] = STATE(684), + [sym__list_item_lower_alpha_period] = STATE(787), + [sym__list_lower_alpha_paren] = STATE(684), + [sym__list_item_lower_alpha_paren] = STATE(792), + [sym__list_lower_alpha_parens] = STATE(684), + [sym__list_item_lower_alpha_parens] = STATE(793), + [sym__list_upper_alpha_period] = STATE(684), + [sym__list_item_upper_alpha_period] = STATE(797), + [sym__list_upper_alpha_paren] = STATE(684), + [sym__list_item_upper_alpha_paren] = STATE(798), + [sym__list_upper_alpha_parens] = STATE(684), + [sym__list_item_upper_alpha_parens] = STATE(799), + [sym__list_lower_roman_period] = STATE(684), + [sym__list_item_lower_roman_period] = STATE(801), + [sym__list_lower_roman_paren] = STATE(684), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(684), + [sym__list_item_lower_roman_parens] = STATE(814), + [sym__list_upper_roman_period] = STATE(684), + [sym__list_item_upper_roman_period] = STATE(818), + [sym__list_upper_roman_paren] = STATE(684), + [sym__list_item_upper_roman_paren] = STATE(819), + [sym__list_upper_roman_parens] = STATE(684), + [sym__list_item_upper_roman_parens] = STATE(822), + [sym_list_item_content] = STATE(729), + [sym_table] = STATE(476), + [sym__table_content] = STATE(368), + [sym_table_separator] = STATE(368), + [sym_table_row] = STATE(389), + [sym_footnote] = STATE(476), + [sym_footnote_marker_begin] = STATE(1116), + [sym_div] = STATE(476), + [sym__div_marker_begin] = STATE(988), + [sym_code_block] = STATE(476), + [sym_raw_block] = STATE(476), + [sym_thematic_break] = STATE(476), + [sym_block_quote] = STATE(476), + [sym__block_quote_prefix] = STATE(294), + [sym_link_reference_definition] = STATE(476), + [sym_block_attribute] = STATE(476), + [sym__paragraph] = STATE(476), + [sym__paragraph_content] = STATE(932), + [sym__paragraph_inline_content] = STATE(930), + [sym__inline] = STATE(695), + [sym__symbol_fallback] = STATE(358), + [aux_sym__list_dash_repeat1] = STATE(423), + [aux_sym__list_plus_repeat1] = STATE(417), + [aux_sym__list_star_repeat1] = STATE(420), + [aux_sym__list_task_repeat1] = STATE(395), + [aux_sym__list_definition_repeat1] = STATE(510), + [aux_sym__list_decimal_period_repeat1] = STATE(511), + [aux_sym__list_decimal_paren_repeat1] = STATE(512), + [aux_sym__list_decimal_parens_repeat1] = STATE(513), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(514), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(515), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(516), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(517), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(518), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(519), + [aux_sym__list_lower_roman_period_repeat1] = STATE(520), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(521), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(522), + [aux_sym__list_upper_roman_period_repeat1] = STATE(523), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(524), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(525), + [aux_sym_table_repeat1] = STATE(368), + [aux_sym__block_quote_prefix_repeat1] = STATE(320), + [aux_sym__inline_repeat1] = STATE(358), [anon_sym_LBRACK] = ACTIONS(385), [anon_sym_PIPE] = ACTIONS(387), [anon_sym_LBRACK_CARET] = ACTIONS(9), @@ -10163,7 +10461,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(425), + [sym__newline] = ACTIONS(429), [sym__heading_begin] = ACTIONS(393), [sym__div_begin] = ACTIONS(21), [sym__code_block_begin] = ACTIONS(395), @@ -10193,94 +10491,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__thematic_break_star] = ACTIONS(401), }, [46] = { - [sym__block_with_heading] = STATE(436), - [sym__block_element] = STATE(436), - [sym_heading] = STATE(436), - [sym_list] = STATE(436), - [sym__list_dash] = STATE(618), - [sym__list_item_dash] = STATE(420), - [sym__list_plus] = STATE(618), - [sym__list_item_plus] = STATE(421), - [sym__list_star] = STATE(618), - [sym__list_item_star] = STATE(422), - [sym__list_task] = STATE(618), - [sym__list_item_task] = STATE(404), - [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(618), - [sym__list_item_definition] = STATE(527), - [sym__list_decimal_period] = STATE(618), - [sym__list_item_decimal_period] = STATE(524), - [sym__list_decimal_paren] = STATE(618), - [sym__list_item_decimal_paren] = STATE(521), - [sym__list_decimal_parens] = STATE(618), - [sym__list_item_decimal_parens] = STATE(520), - [sym__list_lower_alpha_period] = STATE(618), - [sym__list_item_lower_alpha_period] = STATE(518), - [sym__list_lower_alpha_paren] = STATE(618), - [sym__list_item_lower_alpha_paren] = STATE(517), - [sym__list_lower_alpha_parens] = STATE(618), - [sym__list_item_lower_alpha_parens] = STATE(515), - [sym__list_upper_alpha_period] = STATE(618), - [sym__list_item_upper_alpha_period] = STATE(514), - [sym__list_upper_alpha_paren] = STATE(618), - [sym__list_item_upper_alpha_paren] = STATE(510), - [sym__list_upper_alpha_parens] = STATE(618), - [sym__list_item_upper_alpha_parens] = STATE(501), - [sym__list_lower_roman_period] = STATE(618), - [sym__list_item_lower_roman_period] = STATE(500), - [sym__list_lower_roman_paren] = STATE(618), - [sym__list_item_lower_roman_paren] = STATE(499), - [sym__list_lower_roman_parens] = STATE(618), - [sym__list_item_lower_roman_parens] = STATE(498), - [sym__list_upper_roman_period] = STATE(618), - [sym__list_item_upper_roman_period] = STATE(497), - [sym__list_upper_roman_paren] = STATE(618), - [sym__list_item_upper_roman_paren] = STATE(496), - [sym__list_upper_roman_parens] = STATE(618), - [sym__list_item_upper_roman_parens] = STATE(579), - [sym_list_item_content] = STATE(861), - [sym_table] = STATE(436), - [sym__table_content] = STATE(358), - [sym_table_separator] = STATE(358), - [sym_table_row] = STATE(383), - [sym_footnote] = STATE(436), - [sym_footnote_marker_begin] = STATE(1080), - [sym_div] = STATE(436), - [sym_div_marker_begin] = STATE(952), - [sym_code_block] = STATE(436), - [sym_raw_block] = STATE(436), - [sym_thematic_break] = STATE(436), - [sym_block_quote] = STATE(436), - [sym__block_quote_prefix] = STATE(285), - [sym_link_reference_definition] = STATE(436), - [sym_block_attribute] = STATE(436), - [sym__paragraph] = STATE(436), - [sym__paragraph_content] = STATE(890), - [sym__inline] = STATE(710), - [sym__symbol_fallback] = STATE(355), - [aux_sym__list_dash_repeat1] = STATE(420), - [aux_sym__list_plus_repeat1] = STATE(421), - [aux_sym__list_star_repeat1] = STATE(422), - [aux_sym__list_task_repeat1] = STATE(404), - [aux_sym__list_definition_repeat1] = STATE(527), - [aux_sym__list_decimal_period_repeat1] = STATE(524), - [aux_sym__list_decimal_paren_repeat1] = STATE(521), - [aux_sym__list_decimal_parens_repeat1] = STATE(520), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(518), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(515), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(514), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(510), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(501), - [aux_sym__list_lower_roman_period_repeat1] = STATE(500), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(499), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(498), - [aux_sym__list_upper_roman_period_repeat1] = STATE(497), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(579), - [aux_sym_table_repeat1] = STATE(358), - [aux_sym__block_quote_prefix_repeat1] = STATE(316), - [aux_sym__inline_repeat1] = STATE(355), + [sym__block_with_heading] = STATE(464), + [sym__block_element] = STATE(464), + [sym_heading] = STATE(464), + [sym_list] = STATE(464), + [sym__list_dash] = STATE(684), + [sym__list_item_dash] = STATE(634), + [sym__list_plus] = STATE(684), + [sym__list_item_plus] = STATE(651), + [sym__list_star] = STATE(684), + [sym__list_item_star] = STATE(697), + [sym__list_task] = STATE(684), + [sym__list_item_task] = STATE(707), + [sym_list_marker_task] = STATE(47), + [sym__list_definition] = STATE(684), + [sym__list_item_definition] = STATE(736), + [sym__list_decimal_period] = STATE(684), + [sym__list_item_decimal_period] = STATE(795), + [sym__list_decimal_paren] = STATE(684), + [sym__list_item_decimal_paren] = STATE(848), + [sym__list_decimal_parens] = STATE(684), + [sym__list_item_decimal_parens] = STATE(772), + [sym__list_lower_alpha_period] = STATE(684), + [sym__list_item_lower_alpha_period] = STATE(787), + [sym__list_lower_alpha_paren] = STATE(684), + [sym__list_item_lower_alpha_paren] = STATE(792), + [sym__list_lower_alpha_parens] = STATE(684), + [sym__list_item_lower_alpha_parens] = STATE(793), + [sym__list_upper_alpha_period] = STATE(684), + [sym__list_item_upper_alpha_period] = STATE(797), + [sym__list_upper_alpha_paren] = STATE(684), + [sym__list_item_upper_alpha_paren] = STATE(798), + [sym__list_upper_alpha_parens] = STATE(684), + [sym__list_item_upper_alpha_parens] = STATE(799), + [sym__list_lower_roman_period] = STATE(684), + [sym__list_item_lower_roman_period] = STATE(801), + [sym__list_lower_roman_paren] = STATE(684), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(684), + [sym__list_item_lower_roman_parens] = STATE(814), + [sym__list_upper_roman_period] = STATE(684), + [sym__list_item_upper_roman_period] = STATE(818), + [sym__list_upper_roman_paren] = STATE(684), + [sym__list_item_upper_roman_paren] = STATE(819), + [sym__list_upper_roman_parens] = STATE(684), + [sym__list_item_upper_roman_parens] = STATE(822), + [sym_list_item_content] = STATE(731), + [sym_table] = STATE(464), + [sym__table_content] = STATE(368), + [sym_table_separator] = STATE(368), + [sym_table_row] = STATE(389), + [sym_footnote] = STATE(464), + [sym_footnote_marker_begin] = STATE(1116), + [sym_div] = STATE(464), + [sym__div_marker_begin] = STATE(988), + [sym_code_block] = STATE(464), + [sym_raw_block] = STATE(464), + [sym_thematic_break] = STATE(464), + [sym_block_quote] = STATE(464), + [sym__block_quote_prefix] = STATE(294), + [sym_link_reference_definition] = STATE(464), + [sym_block_attribute] = STATE(464), + [sym__paragraph] = STATE(464), + [sym__paragraph_content] = STATE(932), + [sym__paragraph_inline_content] = STATE(930), + [sym__inline] = STATE(695), + [sym__symbol_fallback] = STATE(358), + [aux_sym__list_dash_repeat1] = STATE(423), + [aux_sym__list_plus_repeat1] = STATE(417), + [aux_sym__list_star_repeat1] = STATE(420), + [aux_sym__list_task_repeat1] = STATE(395), + [aux_sym__list_definition_repeat1] = STATE(510), + [aux_sym__list_decimal_period_repeat1] = STATE(511), + [aux_sym__list_decimal_paren_repeat1] = STATE(512), + [aux_sym__list_decimal_parens_repeat1] = STATE(513), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(514), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(515), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(516), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(517), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(518), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(519), + [aux_sym__list_lower_roman_period_repeat1] = STATE(520), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(521), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(522), + [aux_sym__list_upper_roman_period_repeat1] = STATE(523), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(524), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(525), + [aux_sym_table_repeat1] = STATE(368), + [aux_sym__block_quote_prefix_repeat1] = STATE(320), + [aux_sym__inline_repeat1] = STATE(358), [anon_sym_LBRACK] = ACTIONS(385), [anon_sym_PIPE] = ACTIONS(387), [anon_sym_LBRACK_CARET] = ACTIONS(9), @@ -10291,7 +10590,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(427), + [sym__newline] = ACTIONS(431), [sym__heading_begin] = ACTIONS(393), [sym__div_begin] = ACTIONS(21), [sym__code_block_begin] = ACTIONS(395), @@ -10321,94 +10620,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__thematic_break_star] = ACTIONS(401), }, [47] = { - [sym__block_with_heading] = STATE(442), - [sym__block_element] = STATE(442), - [sym_heading] = STATE(442), - [sym_list] = STATE(442), - [sym__list_dash] = STATE(618), - [sym__list_item_dash] = STATE(420), - [sym__list_plus] = STATE(618), - [sym__list_item_plus] = STATE(421), - [sym__list_star] = STATE(618), - [sym__list_item_star] = STATE(422), - [sym__list_task] = STATE(618), - [sym__list_item_task] = STATE(404), - [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(618), - [sym__list_item_definition] = STATE(527), - [sym__list_decimal_period] = STATE(618), - [sym__list_item_decimal_period] = STATE(524), - [sym__list_decimal_paren] = STATE(618), - [sym__list_item_decimal_paren] = STATE(521), - [sym__list_decimal_parens] = STATE(618), - [sym__list_item_decimal_parens] = STATE(520), - [sym__list_lower_alpha_period] = STATE(618), - [sym__list_item_lower_alpha_period] = STATE(518), - [sym__list_lower_alpha_paren] = STATE(618), - [sym__list_item_lower_alpha_paren] = STATE(517), - [sym__list_lower_alpha_parens] = STATE(618), - [sym__list_item_lower_alpha_parens] = STATE(515), - [sym__list_upper_alpha_period] = STATE(618), - [sym__list_item_upper_alpha_period] = STATE(514), - [sym__list_upper_alpha_paren] = STATE(618), - [sym__list_item_upper_alpha_paren] = STATE(510), - [sym__list_upper_alpha_parens] = STATE(618), - [sym__list_item_upper_alpha_parens] = STATE(501), - [sym__list_lower_roman_period] = STATE(618), - [sym__list_item_lower_roman_period] = STATE(500), - [sym__list_lower_roman_paren] = STATE(618), - [sym__list_item_lower_roman_paren] = STATE(499), - [sym__list_lower_roman_parens] = STATE(618), - [sym__list_item_lower_roman_parens] = STATE(498), - [sym__list_upper_roman_period] = STATE(618), - [sym__list_item_upper_roman_period] = STATE(497), - [sym__list_upper_roman_paren] = STATE(618), - [sym__list_item_upper_roman_paren] = STATE(496), - [sym__list_upper_roman_parens] = STATE(618), - [sym__list_item_upper_roman_parens] = STATE(579), - [sym_list_item_content] = STATE(851), - [sym_table] = STATE(442), - [sym__table_content] = STATE(358), - [sym_table_separator] = STATE(358), - [sym_table_row] = STATE(383), - [sym_footnote] = STATE(442), - [sym_footnote_marker_begin] = STATE(1080), - [sym_div] = STATE(442), - [sym_div_marker_begin] = STATE(952), - [sym_code_block] = STATE(442), - [sym_raw_block] = STATE(442), - [sym_thematic_break] = STATE(442), - [sym_block_quote] = STATE(442), - [sym__block_quote_prefix] = STATE(285), - [sym_link_reference_definition] = STATE(442), - [sym_block_attribute] = STATE(442), - [sym__paragraph] = STATE(442), - [sym__paragraph_content] = STATE(890), - [sym__inline] = STATE(710), - [sym__symbol_fallback] = STATE(355), - [aux_sym__list_dash_repeat1] = STATE(420), - [aux_sym__list_plus_repeat1] = STATE(421), - [aux_sym__list_star_repeat1] = STATE(422), - [aux_sym__list_task_repeat1] = STATE(404), - [aux_sym__list_definition_repeat1] = STATE(527), - [aux_sym__list_decimal_period_repeat1] = STATE(524), - [aux_sym__list_decimal_paren_repeat1] = STATE(521), - [aux_sym__list_decimal_parens_repeat1] = STATE(520), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(518), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(515), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(514), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(510), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(501), - [aux_sym__list_lower_roman_period_repeat1] = STATE(500), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(499), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(498), - [aux_sym__list_upper_roman_period_repeat1] = STATE(497), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(579), - [aux_sym_table_repeat1] = STATE(358), - [aux_sym__block_quote_prefix_repeat1] = STATE(316), - [aux_sym__inline_repeat1] = STATE(355), + [sym__block_with_heading] = STATE(450), + [sym__block_element] = STATE(450), + [sym_heading] = STATE(450), + [sym_list] = STATE(450), + [sym__list_dash] = STATE(684), + [sym__list_item_dash] = STATE(634), + [sym__list_plus] = STATE(684), + [sym__list_item_plus] = STATE(651), + [sym__list_star] = STATE(684), + [sym__list_item_star] = STATE(697), + [sym__list_task] = STATE(684), + [sym__list_item_task] = STATE(707), + [sym_list_marker_task] = STATE(47), + [sym__list_definition] = STATE(684), + [sym__list_item_definition] = STATE(736), + [sym__list_decimal_period] = STATE(684), + [sym__list_item_decimal_period] = STATE(795), + [sym__list_decimal_paren] = STATE(684), + [sym__list_item_decimal_paren] = STATE(848), + [sym__list_decimal_parens] = STATE(684), + [sym__list_item_decimal_parens] = STATE(772), + [sym__list_lower_alpha_period] = STATE(684), + [sym__list_item_lower_alpha_period] = STATE(787), + [sym__list_lower_alpha_paren] = STATE(684), + [sym__list_item_lower_alpha_paren] = STATE(792), + [sym__list_lower_alpha_parens] = STATE(684), + [sym__list_item_lower_alpha_parens] = STATE(793), + [sym__list_upper_alpha_period] = STATE(684), + [sym__list_item_upper_alpha_period] = STATE(797), + [sym__list_upper_alpha_paren] = STATE(684), + [sym__list_item_upper_alpha_paren] = STATE(798), + [sym__list_upper_alpha_parens] = STATE(684), + [sym__list_item_upper_alpha_parens] = STATE(799), + [sym__list_lower_roman_period] = STATE(684), + [sym__list_item_lower_roman_period] = STATE(801), + [sym__list_lower_roman_paren] = STATE(684), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(684), + [sym__list_item_lower_roman_parens] = STATE(814), + [sym__list_upper_roman_period] = STATE(684), + [sym__list_item_upper_roman_period] = STATE(818), + [sym__list_upper_roman_paren] = STATE(684), + [sym__list_item_upper_roman_paren] = STATE(819), + [sym__list_upper_roman_parens] = STATE(684), + [sym__list_item_upper_roman_parens] = STATE(822), + [sym_list_item_content] = STATE(667), + [sym_table] = STATE(450), + [sym__table_content] = STATE(368), + [sym_table_separator] = STATE(368), + [sym_table_row] = STATE(389), + [sym_footnote] = STATE(450), + [sym_footnote_marker_begin] = STATE(1116), + [sym_div] = STATE(450), + [sym__div_marker_begin] = STATE(988), + [sym_code_block] = STATE(450), + [sym_raw_block] = STATE(450), + [sym_thematic_break] = STATE(450), + [sym_block_quote] = STATE(450), + [sym__block_quote_prefix] = STATE(294), + [sym_link_reference_definition] = STATE(450), + [sym_block_attribute] = STATE(450), + [sym__paragraph] = STATE(450), + [sym__paragraph_content] = STATE(932), + [sym__paragraph_inline_content] = STATE(930), + [sym__inline] = STATE(695), + [sym__symbol_fallback] = STATE(358), + [aux_sym__list_dash_repeat1] = STATE(423), + [aux_sym__list_plus_repeat1] = STATE(417), + [aux_sym__list_star_repeat1] = STATE(420), + [aux_sym__list_task_repeat1] = STATE(395), + [aux_sym__list_definition_repeat1] = STATE(510), + [aux_sym__list_decimal_period_repeat1] = STATE(511), + [aux_sym__list_decimal_paren_repeat1] = STATE(512), + [aux_sym__list_decimal_parens_repeat1] = STATE(513), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(514), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(515), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(516), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(517), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(518), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(519), + [aux_sym__list_lower_roman_period_repeat1] = STATE(520), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(521), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(522), + [aux_sym__list_upper_roman_period_repeat1] = STATE(523), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(524), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(525), + [aux_sym_table_repeat1] = STATE(368), + [aux_sym__block_quote_prefix_repeat1] = STATE(320), + [aux_sym__inline_repeat1] = STATE(358), [anon_sym_LBRACK] = ACTIONS(385), [anon_sym_PIPE] = ACTIONS(387), [anon_sym_LBRACK_CARET] = ACTIONS(9), @@ -10419,7 +10719,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(429), + [sym__newline] = ACTIONS(411), [sym__heading_begin] = ACTIONS(393), [sym__div_begin] = ACTIONS(21), [sym__code_block_begin] = ACTIONS(395), @@ -10449,94 +10749,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__thematic_break_star] = ACTIONS(401), }, [48] = { - [sym__block_with_heading] = STATE(476), - [sym__block_element] = STATE(476), - [sym_heading] = STATE(476), - [sym_list] = STATE(476), - [sym__list_dash] = STATE(618), - [sym__list_item_dash] = STATE(420), - [sym__list_plus] = STATE(618), - [sym__list_item_plus] = STATE(421), - [sym__list_star] = STATE(618), - [sym__list_item_star] = STATE(422), - [sym__list_task] = STATE(618), - [sym__list_item_task] = STATE(404), - [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(618), - [sym__list_item_definition] = STATE(527), - [sym__list_decimal_period] = STATE(618), - [sym__list_item_decimal_period] = STATE(524), - [sym__list_decimal_paren] = STATE(618), - [sym__list_item_decimal_paren] = STATE(521), - [sym__list_decimal_parens] = STATE(618), - [sym__list_item_decimal_parens] = STATE(520), - [sym__list_lower_alpha_period] = STATE(618), - [sym__list_item_lower_alpha_period] = STATE(518), - [sym__list_lower_alpha_paren] = STATE(618), - [sym__list_item_lower_alpha_paren] = STATE(517), - [sym__list_lower_alpha_parens] = STATE(618), - [sym__list_item_lower_alpha_parens] = STATE(515), - [sym__list_upper_alpha_period] = STATE(618), - [sym__list_item_upper_alpha_period] = STATE(514), - [sym__list_upper_alpha_paren] = STATE(618), - [sym__list_item_upper_alpha_paren] = STATE(510), - [sym__list_upper_alpha_parens] = STATE(618), - [sym__list_item_upper_alpha_parens] = STATE(501), - [sym__list_lower_roman_period] = STATE(618), - [sym__list_item_lower_roman_period] = STATE(500), - [sym__list_lower_roman_paren] = STATE(618), - [sym__list_item_lower_roman_paren] = STATE(499), - [sym__list_lower_roman_parens] = STATE(618), - [sym__list_item_lower_roman_parens] = STATE(498), - [sym__list_upper_roman_period] = STATE(618), - [sym__list_item_upper_roman_period] = STATE(497), - [sym__list_upper_roman_paren] = STATE(618), - [sym__list_item_upper_roman_paren] = STATE(496), - [sym__list_upper_roman_parens] = STATE(618), - [sym__list_item_upper_roman_parens] = STATE(579), - [sym_list_item_content] = STATE(852), - [sym_table] = STATE(476), - [sym__table_content] = STATE(358), - [sym_table_separator] = STATE(358), - [sym_table_row] = STATE(383), - [sym_footnote] = STATE(476), - [sym_footnote_marker_begin] = STATE(1080), - [sym_div] = STATE(476), - [sym_div_marker_begin] = STATE(952), - [sym_code_block] = STATE(476), - [sym_raw_block] = STATE(476), - [sym_thematic_break] = STATE(476), - [sym_block_quote] = STATE(476), - [sym__block_quote_prefix] = STATE(285), - [sym_link_reference_definition] = STATE(476), - [sym_block_attribute] = STATE(476), - [sym__paragraph] = STATE(476), - [sym__paragraph_content] = STATE(890), - [sym__inline] = STATE(710), - [sym__symbol_fallback] = STATE(355), - [aux_sym__list_dash_repeat1] = STATE(420), - [aux_sym__list_plus_repeat1] = STATE(421), - [aux_sym__list_star_repeat1] = STATE(422), - [aux_sym__list_task_repeat1] = STATE(404), - [aux_sym__list_definition_repeat1] = STATE(527), - [aux_sym__list_decimal_period_repeat1] = STATE(524), - [aux_sym__list_decimal_paren_repeat1] = STATE(521), - [aux_sym__list_decimal_parens_repeat1] = STATE(520), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(518), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(515), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(514), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(510), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(501), - [aux_sym__list_lower_roman_period_repeat1] = STATE(500), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(499), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(498), - [aux_sym__list_upper_roman_period_repeat1] = STATE(497), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(579), - [aux_sym_table_repeat1] = STATE(358), - [aux_sym__block_quote_prefix_repeat1] = STATE(316), - [aux_sym__inline_repeat1] = STATE(355), + [sym__block_with_heading] = STATE(479), + [sym__block_element] = STATE(479), + [sym_heading] = STATE(479), + [sym_list] = STATE(479), + [sym__list_dash] = STATE(684), + [sym__list_item_dash] = STATE(634), + [sym__list_plus] = STATE(684), + [sym__list_item_plus] = STATE(651), + [sym__list_star] = STATE(684), + [sym__list_item_star] = STATE(697), + [sym__list_task] = STATE(684), + [sym__list_item_task] = STATE(707), + [sym_list_marker_task] = STATE(47), + [sym__list_definition] = STATE(684), + [sym__list_item_definition] = STATE(736), + [sym__list_decimal_period] = STATE(684), + [sym__list_item_decimal_period] = STATE(795), + [sym__list_decimal_paren] = STATE(684), + [sym__list_item_decimal_paren] = STATE(848), + [sym__list_decimal_parens] = STATE(684), + [sym__list_item_decimal_parens] = STATE(772), + [sym__list_lower_alpha_period] = STATE(684), + [sym__list_item_lower_alpha_period] = STATE(787), + [sym__list_lower_alpha_paren] = STATE(684), + [sym__list_item_lower_alpha_paren] = STATE(792), + [sym__list_lower_alpha_parens] = STATE(684), + [sym__list_item_lower_alpha_parens] = STATE(793), + [sym__list_upper_alpha_period] = STATE(684), + [sym__list_item_upper_alpha_period] = STATE(797), + [sym__list_upper_alpha_paren] = STATE(684), + [sym__list_item_upper_alpha_paren] = STATE(798), + [sym__list_upper_alpha_parens] = STATE(684), + [sym__list_item_upper_alpha_parens] = STATE(799), + [sym__list_lower_roman_period] = STATE(684), + [sym__list_item_lower_roman_period] = STATE(801), + [sym__list_lower_roman_paren] = STATE(684), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(684), + [sym__list_item_lower_roman_parens] = STATE(814), + [sym__list_upper_roman_period] = STATE(684), + [sym__list_item_upper_roman_period] = STATE(818), + [sym__list_upper_roman_paren] = STATE(684), + [sym__list_item_upper_roman_paren] = STATE(819), + [sym__list_upper_roman_parens] = STATE(684), + [sym__list_item_upper_roman_parens] = STATE(822), + [sym_list_item_content] = STATE(732), + [sym_table] = STATE(479), + [sym__table_content] = STATE(368), + [sym_table_separator] = STATE(368), + [sym_table_row] = STATE(389), + [sym_footnote] = STATE(479), + [sym_footnote_marker_begin] = STATE(1116), + [sym_div] = STATE(479), + [sym__div_marker_begin] = STATE(988), + [sym_code_block] = STATE(479), + [sym_raw_block] = STATE(479), + [sym_thematic_break] = STATE(479), + [sym_block_quote] = STATE(479), + [sym__block_quote_prefix] = STATE(294), + [sym_link_reference_definition] = STATE(479), + [sym_block_attribute] = STATE(479), + [sym__paragraph] = STATE(479), + [sym__paragraph_content] = STATE(932), + [sym__paragraph_inline_content] = STATE(930), + [sym__inline] = STATE(695), + [sym__symbol_fallback] = STATE(358), + [aux_sym__list_dash_repeat1] = STATE(423), + [aux_sym__list_plus_repeat1] = STATE(417), + [aux_sym__list_star_repeat1] = STATE(420), + [aux_sym__list_task_repeat1] = STATE(395), + [aux_sym__list_definition_repeat1] = STATE(510), + [aux_sym__list_decimal_period_repeat1] = STATE(511), + [aux_sym__list_decimal_paren_repeat1] = STATE(512), + [aux_sym__list_decimal_parens_repeat1] = STATE(513), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(514), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(515), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(516), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(517), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(518), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(519), + [aux_sym__list_lower_roman_period_repeat1] = STATE(520), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(521), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(522), + [aux_sym__list_upper_roman_period_repeat1] = STATE(523), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(524), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(525), + [aux_sym_table_repeat1] = STATE(368), + [aux_sym__block_quote_prefix_repeat1] = STATE(320), + [aux_sym__inline_repeat1] = STATE(358), [anon_sym_LBRACK] = ACTIONS(385), [anon_sym_PIPE] = ACTIONS(387), [anon_sym_LBRACK_CARET] = ACTIONS(9), @@ -10547,7 +10848,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(431), + [sym__newline] = ACTIONS(433), [sym__heading_begin] = ACTIONS(393), [sym__div_begin] = ACTIONS(21), [sym__code_block_begin] = ACTIONS(395), @@ -10577,94 +10878,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__thematic_break_star] = ACTIONS(401), }, [49] = { - [sym__block_with_heading] = STATE(427), - [sym__block_element] = STATE(427), - [sym_heading] = STATE(427), - [sym_list] = STATE(427), - [sym__list_dash] = STATE(618), - [sym__list_item_dash] = STATE(420), - [sym__list_plus] = STATE(618), - [sym__list_item_plus] = STATE(421), - [sym__list_star] = STATE(618), - [sym__list_item_star] = STATE(422), - [sym__list_task] = STATE(618), - [sym__list_item_task] = STATE(404), - [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(618), - [sym__list_item_definition] = STATE(527), - [sym__list_decimal_period] = STATE(618), - [sym__list_item_decimal_period] = STATE(524), - [sym__list_decimal_paren] = STATE(618), - [sym__list_item_decimal_paren] = STATE(521), - [sym__list_decimal_parens] = STATE(618), - [sym__list_item_decimal_parens] = STATE(520), - [sym__list_lower_alpha_period] = STATE(618), - [sym__list_item_lower_alpha_period] = STATE(518), - [sym__list_lower_alpha_paren] = STATE(618), - [sym__list_item_lower_alpha_paren] = STATE(517), - [sym__list_lower_alpha_parens] = STATE(618), - [sym__list_item_lower_alpha_parens] = STATE(515), - [sym__list_upper_alpha_period] = STATE(618), - [sym__list_item_upper_alpha_period] = STATE(514), - [sym__list_upper_alpha_paren] = STATE(618), - [sym__list_item_upper_alpha_paren] = STATE(510), - [sym__list_upper_alpha_parens] = STATE(618), - [sym__list_item_upper_alpha_parens] = STATE(501), - [sym__list_lower_roman_period] = STATE(618), - [sym__list_item_lower_roman_period] = STATE(500), - [sym__list_lower_roman_paren] = STATE(618), - [sym__list_item_lower_roman_paren] = STATE(499), - [sym__list_lower_roman_parens] = STATE(618), - [sym__list_item_lower_roman_parens] = STATE(498), - [sym__list_upper_roman_period] = STATE(618), - [sym__list_item_upper_roman_period] = STATE(497), - [sym__list_upper_roman_paren] = STATE(618), - [sym__list_item_upper_roman_paren] = STATE(496), - [sym__list_upper_roman_parens] = STATE(618), - [sym__list_item_upper_roman_parens] = STATE(579), - [sym_list_item_content] = STATE(853), - [sym_table] = STATE(427), - [sym__table_content] = STATE(358), - [sym_table_separator] = STATE(358), - [sym_table_row] = STATE(383), - [sym_footnote] = STATE(427), - [sym_footnote_marker_begin] = STATE(1080), - [sym_div] = STATE(427), - [sym_div_marker_begin] = STATE(952), - [sym_code_block] = STATE(427), - [sym_raw_block] = STATE(427), - [sym_thematic_break] = STATE(427), - [sym_block_quote] = STATE(427), - [sym__block_quote_prefix] = STATE(285), - [sym_link_reference_definition] = STATE(427), - [sym_block_attribute] = STATE(427), - [sym__paragraph] = STATE(427), - [sym__paragraph_content] = STATE(890), - [sym__inline] = STATE(710), - [sym__symbol_fallback] = STATE(355), - [aux_sym__list_dash_repeat1] = STATE(420), - [aux_sym__list_plus_repeat1] = STATE(421), - [aux_sym__list_star_repeat1] = STATE(422), - [aux_sym__list_task_repeat1] = STATE(404), - [aux_sym__list_definition_repeat1] = STATE(527), - [aux_sym__list_decimal_period_repeat1] = STATE(524), - [aux_sym__list_decimal_paren_repeat1] = STATE(521), - [aux_sym__list_decimal_parens_repeat1] = STATE(520), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(518), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(515), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(514), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(510), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(501), - [aux_sym__list_lower_roman_period_repeat1] = STATE(500), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(499), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(498), - [aux_sym__list_upper_roman_period_repeat1] = STATE(497), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(579), - [aux_sym_table_repeat1] = STATE(358), - [aux_sym__block_quote_prefix_repeat1] = STATE(316), - [aux_sym__inline_repeat1] = STATE(355), + [sym__block_with_heading] = STATE(481), + [sym__block_element] = STATE(481), + [sym_heading] = STATE(481), + [sym_list] = STATE(481), + [sym__list_dash] = STATE(684), + [sym__list_item_dash] = STATE(634), + [sym__list_plus] = STATE(684), + [sym__list_item_plus] = STATE(651), + [sym__list_star] = STATE(684), + [sym__list_item_star] = STATE(697), + [sym__list_task] = STATE(684), + [sym__list_item_task] = STATE(707), + [sym_list_marker_task] = STATE(47), + [sym__list_definition] = STATE(684), + [sym__list_item_definition] = STATE(736), + [sym__list_decimal_period] = STATE(684), + [sym__list_item_decimal_period] = STATE(795), + [sym__list_decimal_paren] = STATE(684), + [sym__list_item_decimal_paren] = STATE(848), + [sym__list_decimal_parens] = STATE(684), + [sym__list_item_decimal_parens] = STATE(772), + [sym__list_lower_alpha_period] = STATE(684), + [sym__list_item_lower_alpha_period] = STATE(787), + [sym__list_lower_alpha_paren] = STATE(684), + [sym__list_item_lower_alpha_paren] = STATE(792), + [sym__list_lower_alpha_parens] = STATE(684), + [sym__list_item_lower_alpha_parens] = STATE(793), + [sym__list_upper_alpha_period] = STATE(684), + [sym__list_item_upper_alpha_period] = STATE(797), + [sym__list_upper_alpha_paren] = STATE(684), + [sym__list_item_upper_alpha_paren] = STATE(798), + [sym__list_upper_alpha_parens] = STATE(684), + [sym__list_item_upper_alpha_parens] = STATE(799), + [sym__list_lower_roman_period] = STATE(684), + [sym__list_item_lower_roman_period] = STATE(801), + [sym__list_lower_roman_paren] = STATE(684), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(684), + [sym__list_item_lower_roman_parens] = STATE(814), + [sym__list_upper_roman_period] = STATE(684), + [sym__list_item_upper_roman_period] = STATE(818), + [sym__list_upper_roman_paren] = STATE(684), + [sym__list_item_upper_roman_paren] = STATE(819), + [sym__list_upper_roman_parens] = STATE(684), + [sym__list_item_upper_roman_parens] = STATE(822), + [sym_list_item_content] = STATE(733), + [sym_table] = STATE(481), + [sym__table_content] = STATE(368), + [sym_table_separator] = STATE(368), + [sym_table_row] = STATE(389), + [sym_footnote] = STATE(481), + [sym_footnote_marker_begin] = STATE(1116), + [sym_div] = STATE(481), + [sym__div_marker_begin] = STATE(988), + [sym_code_block] = STATE(481), + [sym_raw_block] = STATE(481), + [sym_thematic_break] = STATE(481), + [sym_block_quote] = STATE(481), + [sym__block_quote_prefix] = STATE(294), + [sym_link_reference_definition] = STATE(481), + [sym_block_attribute] = STATE(481), + [sym__paragraph] = STATE(481), + [sym__paragraph_content] = STATE(932), + [sym__paragraph_inline_content] = STATE(930), + [sym__inline] = STATE(695), + [sym__symbol_fallback] = STATE(358), + [aux_sym__list_dash_repeat1] = STATE(423), + [aux_sym__list_plus_repeat1] = STATE(417), + [aux_sym__list_star_repeat1] = STATE(420), + [aux_sym__list_task_repeat1] = STATE(395), + [aux_sym__list_definition_repeat1] = STATE(510), + [aux_sym__list_decimal_period_repeat1] = STATE(511), + [aux_sym__list_decimal_paren_repeat1] = STATE(512), + [aux_sym__list_decimal_parens_repeat1] = STATE(513), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(514), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(515), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(516), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(517), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(518), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(519), + [aux_sym__list_lower_roman_period_repeat1] = STATE(520), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(521), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(522), + [aux_sym__list_upper_roman_period_repeat1] = STATE(523), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(524), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(525), + [aux_sym_table_repeat1] = STATE(368), + [aux_sym__block_quote_prefix_repeat1] = STATE(320), + [aux_sym__inline_repeat1] = STATE(358), [anon_sym_LBRACK] = ACTIONS(385), [anon_sym_PIPE] = ACTIONS(387), [anon_sym_LBRACK_CARET] = ACTIONS(9), @@ -10675,7 +10977,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(433), + [sym__newline] = ACTIONS(435), [sym__heading_begin] = ACTIONS(393), [sym__div_begin] = ACTIONS(21), [sym__code_block_begin] = ACTIONS(395), @@ -10705,94 +11007,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__thematic_break_star] = ACTIONS(401), }, [50] = { - [sym__block_with_heading] = STATE(430), - [sym__block_element] = STATE(430), - [sym_heading] = STATE(430), - [sym_list] = STATE(430), - [sym__list_dash] = STATE(618), - [sym__list_item_dash] = STATE(420), - [sym__list_plus] = STATE(618), - [sym__list_item_plus] = STATE(421), - [sym__list_star] = STATE(618), - [sym__list_item_star] = STATE(422), - [sym__list_task] = STATE(618), - [sym__list_item_task] = STATE(404), - [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(618), - [sym__list_item_definition] = STATE(527), - [sym__list_decimal_period] = STATE(618), - [sym__list_item_decimal_period] = STATE(524), - [sym__list_decimal_paren] = STATE(618), - [sym__list_item_decimal_paren] = STATE(521), - [sym__list_decimal_parens] = STATE(618), - [sym__list_item_decimal_parens] = STATE(520), - [sym__list_lower_alpha_period] = STATE(618), - [sym__list_item_lower_alpha_period] = STATE(518), - [sym__list_lower_alpha_paren] = STATE(618), - [sym__list_item_lower_alpha_paren] = STATE(517), - [sym__list_lower_alpha_parens] = STATE(618), - [sym__list_item_lower_alpha_parens] = STATE(515), - [sym__list_upper_alpha_period] = STATE(618), - [sym__list_item_upper_alpha_period] = STATE(514), - [sym__list_upper_alpha_paren] = STATE(618), - [sym__list_item_upper_alpha_paren] = STATE(510), - [sym__list_upper_alpha_parens] = STATE(618), - [sym__list_item_upper_alpha_parens] = STATE(501), - [sym__list_lower_roman_period] = STATE(618), - [sym__list_item_lower_roman_period] = STATE(500), - [sym__list_lower_roman_paren] = STATE(618), - [sym__list_item_lower_roman_paren] = STATE(499), - [sym__list_lower_roman_parens] = STATE(618), - [sym__list_item_lower_roman_parens] = STATE(498), - [sym__list_upper_roman_period] = STATE(618), - [sym__list_item_upper_roman_period] = STATE(497), - [sym__list_upper_roman_paren] = STATE(618), - [sym__list_item_upper_roman_paren] = STATE(496), - [sym__list_upper_roman_parens] = STATE(618), - [sym__list_item_upper_roman_parens] = STATE(579), - [sym_list_item_content] = STATE(858), - [sym_table] = STATE(430), - [sym__table_content] = STATE(358), - [sym_table_separator] = STATE(358), - [sym_table_row] = STATE(383), - [sym_footnote] = STATE(430), - [sym_footnote_marker_begin] = STATE(1080), - [sym_div] = STATE(430), - [sym_div_marker_begin] = STATE(952), - [sym_code_block] = STATE(430), - [sym_raw_block] = STATE(430), - [sym_thematic_break] = STATE(430), - [sym_block_quote] = STATE(430), - [sym__block_quote_prefix] = STATE(285), - [sym_link_reference_definition] = STATE(430), - [sym_block_attribute] = STATE(430), - [sym__paragraph] = STATE(430), - [sym__paragraph_content] = STATE(890), - [sym__inline] = STATE(710), - [sym__symbol_fallback] = STATE(355), - [aux_sym__list_dash_repeat1] = STATE(420), - [aux_sym__list_plus_repeat1] = STATE(421), - [aux_sym__list_star_repeat1] = STATE(422), - [aux_sym__list_task_repeat1] = STATE(404), - [aux_sym__list_definition_repeat1] = STATE(527), - [aux_sym__list_decimal_period_repeat1] = STATE(524), - [aux_sym__list_decimal_paren_repeat1] = STATE(521), - [aux_sym__list_decimal_parens_repeat1] = STATE(520), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(518), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(515), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(514), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(510), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(501), - [aux_sym__list_lower_roman_period_repeat1] = STATE(500), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(499), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(498), - [aux_sym__list_upper_roman_period_repeat1] = STATE(497), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(579), - [aux_sym_table_repeat1] = STATE(358), - [aux_sym__block_quote_prefix_repeat1] = STATE(316), - [aux_sym__inline_repeat1] = STATE(355), + [sym__block_with_heading] = STATE(484), + [sym__block_element] = STATE(484), + [sym_heading] = STATE(484), + [sym_list] = STATE(484), + [sym__list_dash] = STATE(684), + [sym__list_item_dash] = STATE(634), + [sym__list_plus] = STATE(684), + [sym__list_item_plus] = STATE(651), + [sym__list_star] = STATE(684), + [sym__list_item_star] = STATE(697), + [sym__list_task] = STATE(684), + [sym__list_item_task] = STATE(707), + [sym_list_marker_task] = STATE(47), + [sym__list_definition] = STATE(684), + [sym__list_item_definition] = STATE(736), + [sym__list_decimal_period] = STATE(684), + [sym__list_item_decimal_period] = STATE(795), + [sym__list_decimal_paren] = STATE(684), + [sym__list_item_decimal_paren] = STATE(848), + [sym__list_decimal_parens] = STATE(684), + [sym__list_item_decimal_parens] = STATE(772), + [sym__list_lower_alpha_period] = STATE(684), + [sym__list_item_lower_alpha_period] = STATE(787), + [sym__list_lower_alpha_paren] = STATE(684), + [sym__list_item_lower_alpha_paren] = STATE(792), + [sym__list_lower_alpha_parens] = STATE(684), + [sym__list_item_lower_alpha_parens] = STATE(793), + [sym__list_upper_alpha_period] = STATE(684), + [sym__list_item_upper_alpha_period] = STATE(797), + [sym__list_upper_alpha_paren] = STATE(684), + [sym__list_item_upper_alpha_paren] = STATE(798), + [sym__list_upper_alpha_parens] = STATE(684), + [sym__list_item_upper_alpha_parens] = STATE(799), + [sym__list_lower_roman_period] = STATE(684), + [sym__list_item_lower_roman_period] = STATE(801), + [sym__list_lower_roman_paren] = STATE(684), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(684), + [sym__list_item_lower_roman_parens] = STATE(814), + [sym__list_upper_roman_period] = STATE(684), + [sym__list_item_upper_roman_period] = STATE(818), + [sym__list_upper_roman_paren] = STATE(684), + [sym__list_item_upper_roman_paren] = STATE(819), + [sym__list_upper_roman_parens] = STATE(684), + [sym__list_item_upper_roman_parens] = STATE(822), + [sym_list_item_content] = STATE(737), + [sym_table] = STATE(484), + [sym__table_content] = STATE(368), + [sym_table_separator] = STATE(368), + [sym_table_row] = STATE(389), + [sym_footnote] = STATE(484), + [sym_footnote_marker_begin] = STATE(1116), + [sym_div] = STATE(484), + [sym__div_marker_begin] = STATE(988), + [sym_code_block] = STATE(484), + [sym_raw_block] = STATE(484), + [sym_thematic_break] = STATE(484), + [sym_block_quote] = STATE(484), + [sym__block_quote_prefix] = STATE(294), + [sym_link_reference_definition] = STATE(484), + [sym_block_attribute] = STATE(484), + [sym__paragraph] = STATE(484), + [sym__paragraph_content] = STATE(932), + [sym__paragraph_inline_content] = STATE(930), + [sym__inline] = STATE(695), + [sym__symbol_fallback] = STATE(358), + [aux_sym__list_dash_repeat1] = STATE(423), + [aux_sym__list_plus_repeat1] = STATE(417), + [aux_sym__list_star_repeat1] = STATE(420), + [aux_sym__list_task_repeat1] = STATE(395), + [aux_sym__list_definition_repeat1] = STATE(510), + [aux_sym__list_decimal_period_repeat1] = STATE(511), + [aux_sym__list_decimal_paren_repeat1] = STATE(512), + [aux_sym__list_decimal_parens_repeat1] = STATE(513), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(514), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(515), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(516), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(517), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(518), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(519), + [aux_sym__list_lower_roman_period_repeat1] = STATE(520), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(521), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(522), + [aux_sym__list_upper_roman_period_repeat1] = STATE(523), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(524), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(525), + [aux_sym_table_repeat1] = STATE(368), + [aux_sym__block_quote_prefix_repeat1] = STATE(320), + [aux_sym__inline_repeat1] = STATE(358), [anon_sym_LBRACK] = ACTIONS(385), [anon_sym_PIPE] = ACTIONS(387), [anon_sym_LBRACK_CARET] = ACTIONS(9), @@ -10803,7 +11106,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(435), + [sym__newline] = ACTIONS(437), [sym__heading_begin] = ACTIONS(393), [sym__div_begin] = ACTIONS(21), [sym__code_block_begin] = ACTIONS(395), @@ -10833,94 +11136,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__thematic_break_star] = ACTIONS(401), }, [51] = { - [sym__block_with_heading] = STATE(461), - [sym__block_element] = STATE(461), - [sym_heading] = STATE(461), - [sym_list] = STATE(461), - [sym__list_dash] = STATE(618), - [sym__list_item_dash] = STATE(420), - [sym__list_plus] = STATE(618), - [sym__list_item_plus] = STATE(421), - [sym__list_star] = STATE(618), - [sym__list_item_star] = STATE(422), - [sym__list_task] = STATE(618), - [sym__list_item_task] = STATE(404), - [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(618), - [sym__list_item_definition] = STATE(527), - [sym__list_decimal_period] = STATE(618), - [sym__list_item_decimal_period] = STATE(524), - [sym__list_decimal_paren] = STATE(618), - [sym__list_item_decimal_paren] = STATE(521), - [sym__list_decimal_parens] = STATE(618), - [sym__list_item_decimal_parens] = STATE(520), - [sym__list_lower_alpha_period] = STATE(618), - [sym__list_item_lower_alpha_period] = STATE(518), - [sym__list_lower_alpha_paren] = STATE(618), - [sym__list_item_lower_alpha_paren] = STATE(517), - [sym__list_lower_alpha_parens] = STATE(618), - [sym__list_item_lower_alpha_parens] = STATE(515), - [sym__list_upper_alpha_period] = STATE(618), - [sym__list_item_upper_alpha_period] = STATE(514), - [sym__list_upper_alpha_paren] = STATE(618), - [sym__list_item_upper_alpha_paren] = STATE(510), - [sym__list_upper_alpha_parens] = STATE(618), - [sym__list_item_upper_alpha_parens] = STATE(501), - [sym__list_lower_roman_period] = STATE(618), - [sym__list_item_lower_roman_period] = STATE(500), - [sym__list_lower_roman_paren] = STATE(618), - [sym__list_item_lower_roman_paren] = STATE(499), - [sym__list_lower_roman_parens] = STATE(618), - [sym__list_item_lower_roman_parens] = STATE(498), - [sym__list_upper_roman_period] = STATE(618), - [sym__list_item_upper_roman_period] = STATE(497), - [sym__list_upper_roman_paren] = STATE(618), - [sym__list_item_upper_roman_paren] = STATE(496), - [sym__list_upper_roman_parens] = STATE(618), - [sym__list_item_upper_roman_parens] = STATE(579), - [sym_list_item_content] = STATE(857), - [sym_table] = STATE(461), - [sym__table_content] = STATE(358), - [sym_table_separator] = STATE(358), - [sym_table_row] = STATE(383), - [sym_footnote] = STATE(461), - [sym_footnote_marker_begin] = STATE(1080), - [sym_div] = STATE(461), - [sym_div_marker_begin] = STATE(952), - [sym_code_block] = STATE(461), - [sym_raw_block] = STATE(461), - [sym_thematic_break] = STATE(461), - [sym_block_quote] = STATE(461), - [sym__block_quote_prefix] = STATE(285), - [sym_link_reference_definition] = STATE(461), - [sym_block_attribute] = STATE(461), - [sym__paragraph] = STATE(461), - [sym__paragraph_content] = STATE(890), - [sym__inline] = STATE(710), - [sym__symbol_fallback] = STATE(355), - [aux_sym__list_dash_repeat1] = STATE(420), - [aux_sym__list_plus_repeat1] = STATE(421), - [aux_sym__list_star_repeat1] = STATE(422), - [aux_sym__list_task_repeat1] = STATE(404), - [aux_sym__list_definition_repeat1] = STATE(527), - [aux_sym__list_decimal_period_repeat1] = STATE(524), - [aux_sym__list_decimal_paren_repeat1] = STATE(521), - [aux_sym__list_decimal_parens_repeat1] = STATE(520), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(518), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(515), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(514), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(510), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(501), - [aux_sym__list_lower_roman_period_repeat1] = STATE(500), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(499), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(498), - [aux_sym__list_upper_roman_period_repeat1] = STATE(497), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(579), - [aux_sym_table_repeat1] = STATE(358), - [aux_sym__block_quote_prefix_repeat1] = STATE(316), - [aux_sym__inline_repeat1] = STATE(355), + [sym__block_with_heading] = STATE(460), + [sym__block_element] = STATE(460), + [sym_heading] = STATE(460), + [sym_list] = STATE(460), + [sym__list_dash] = STATE(684), + [sym__list_item_dash] = STATE(634), + [sym__list_plus] = STATE(684), + [sym__list_item_plus] = STATE(651), + [sym__list_star] = STATE(684), + [sym__list_item_star] = STATE(697), + [sym__list_task] = STATE(684), + [sym__list_item_task] = STATE(707), + [sym_list_marker_task] = STATE(47), + [sym__list_definition] = STATE(684), + [sym__list_item_definition] = STATE(736), + [sym__list_decimal_period] = STATE(684), + [sym__list_item_decimal_period] = STATE(795), + [sym__list_decimal_paren] = STATE(684), + [sym__list_item_decimal_paren] = STATE(848), + [sym__list_decimal_parens] = STATE(684), + [sym__list_item_decimal_parens] = STATE(772), + [sym__list_lower_alpha_period] = STATE(684), + [sym__list_item_lower_alpha_period] = STATE(787), + [sym__list_lower_alpha_paren] = STATE(684), + [sym__list_item_lower_alpha_paren] = STATE(792), + [sym__list_lower_alpha_parens] = STATE(684), + [sym__list_item_lower_alpha_parens] = STATE(793), + [sym__list_upper_alpha_period] = STATE(684), + [sym__list_item_upper_alpha_period] = STATE(797), + [sym__list_upper_alpha_paren] = STATE(684), + [sym__list_item_upper_alpha_paren] = STATE(798), + [sym__list_upper_alpha_parens] = STATE(684), + [sym__list_item_upper_alpha_parens] = STATE(799), + [sym__list_lower_roman_period] = STATE(684), + [sym__list_item_lower_roman_period] = STATE(801), + [sym__list_lower_roman_paren] = STATE(684), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(684), + [sym__list_item_lower_roman_parens] = STATE(814), + [sym__list_upper_roman_period] = STATE(684), + [sym__list_item_upper_roman_period] = STATE(818), + [sym__list_upper_roman_paren] = STATE(684), + [sym__list_item_upper_roman_paren] = STATE(819), + [sym__list_upper_roman_parens] = STATE(684), + [sym__list_item_upper_roman_parens] = STATE(822), + [sym_list_item_content] = STATE(624), + [sym_table] = STATE(460), + [sym__table_content] = STATE(368), + [sym_table_separator] = STATE(368), + [sym_table_row] = STATE(389), + [sym_footnote] = STATE(460), + [sym_footnote_marker_begin] = STATE(1116), + [sym_div] = STATE(460), + [sym__div_marker_begin] = STATE(988), + [sym_code_block] = STATE(460), + [sym_raw_block] = STATE(460), + [sym_thematic_break] = STATE(460), + [sym_block_quote] = STATE(460), + [sym__block_quote_prefix] = STATE(294), + [sym_link_reference_definition] = STATE(460), + [sym_block_attribute] = STATE(460), + [sym__paragraph] = STATE(460), + [sym__paragraph_content] = STATE(932), + [sym__paragraph_inline_content] = STATE(930), + [sym__inline] = STATE(695), + [sym__symbol_fallback] = STATE(358), + [aux_sym__list_dash_repeat1] = STATE(423), + [aux_sym__list_plus_repeat1] = STATE(417), + [aux_sym__list_star_repeat1] = STATE(420), + [aux_sym__list_task_repeat1] = STATE(395), + [aux_sym__list_definition_repeat1] = STATE(510), + [aux_sym__list_decimal_period_repeat1] = STATE(511), + [aux_sym__list_decimal_paren_repeat1] = STATE(512), + [aux_sym__list_decimal_parens_repeat1] = STATE(513), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(514), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(515), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(516), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(517), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(518), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(519), + [aux_sym__list_lower_roman_period_repeat1] = STATE(520), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(521), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(522), + [aux_sym__list_upper_roman_period_repeat1] = STATE(523), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(524), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(525), + [aux_sym_table_repeat1] = STATE(368), + [aux_sym__block_quote_prefix_repeat1] = STATE(320), + [aux_sym__inline_repeat1] = STATE(358), [anon_sym_LBRACK] = ACTIONS(385), [anon_sym_PIPE] = ACTIONS(387), [anon_sym_LBRACK_CARET] = ACTIONS(9), @@ -10931,7 +11235,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(437), + [sym__newline] = ACTIONS(405), [sym__heading_begin] = ACTIONS(393), [sym__div_begin] = ACTIONS(21), [sym__code_block_begin] = ACTIONS(395), @@ -10961,111 +11265,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__thematic_break_star] = ACTIONS(401), }, [52] = { - [sym__block_with_heading] = STATE(696), - [sym__block_element] = STATE(696), - [sym_heading] = STATE(696), - [sym_list] = STATE(696), - [sym__list_dash] = STATE(618), - [sym__list_item_dash] = STATE(420), - [sym__list_plus] = STATE(618), - [sym__list_item_plus] = STATE(421), - [sym__list_star] = STATE(618), - [sym__list_item_star] = STATE(422), - [sym__list_task] = STATE(618), - [sym__list_item_task] = STATE(404), - [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(618), - [sym__list_item_definition] = STATE(527), - [sym__list_decimal_period] = STATE(618), - [sym__list_item_decimal_period] = STATE(524), - [sym__list_decimal_paren] = STATE(618), - [sym__list_item_decimal_paren] = STATE(521), - [sym__list_decimal_parens] = STATE(618), - [sym__list_item_decimal_parens] = STATE(520), - [sym__list_lower_alpha_period] = STATE(618), - [sym__list_item_lower_alpha_period] = STATE(518), - [sym__list_lower_alpha_paren] = STATE(618), - [sym__list_item_lower_alpha_paren] = STATE(517), - [sym__list_lower_alpha_parens] = STATE(618), - [sym__list_item_lower_alpha_parens] = STATE(515), - [sym__list_upper_alpha_period] = STATE(618), - [sym__list_item_upper_alpha_period] = STATE(514), - [sym__list_upper_alpha_paren] = STATE(618), - [sym__list_item_upper_alpha_paren] = STATE(510), - [sym__list_upper_alpha_parens] = STATE(618), - [sym__list_item_upper_alpha_parens] = STATE(501), - [sym__list_lower_roman_period] = STATE(618), - [sym__list_item_lower_roman_period] = STATE(500), - [sym__list_lower_roman_paren] = STATE(618), - [sym__list_item_lower_roman_paren] = STATE(499), - [sym__list_lower_roman_parens] = STATE(618), - [sym__list_item_lower_roman_parens] = STATE(498), - [sym__list_upper_roman_period] = STATE(618), - [sym__list_item_upper_roman_period] = STATE(497), - [sym__list_upper_roman_paren] = STATE(618), - [sym__list_item_upper_roman_paren] = STATE(496), - [sym__list_upper_roman_parens] = STATE(618), - [sym__list_item_upper_roman_parens] = STATE(579), - [sym_table] = STATE(696), - [sym__table_content] = STATE(358), - [sym_table_separator] = STATE(358), - [sym_table_row] = STATE(383), - [sym_footnote] = STATE(696), - [sym_footnote_marker_begin] = STATE(1080), - [sym_div] = STATE(696), - [sym_div_marker_begin] = STATE(952), - [sym_code_block] = STATE(696), - [sym_raw_block] = STATE(696), - [sym_thematic_break] = STATE(696), - [sym_block_quote] = STATE(696), - [sym__block_quote_prefix] = STATE(285), - [sym_link_reference_definition] = STATE(696), - [sym_block_attribute] = STATE(696), - [sym__paragraph] = STATE(696), - [sym__paragraph_content] = STATE(890), - [sym__inline] = STATE(710), - [sym__symbol_fallback] = STATE(355), - [aux_sym__list_dash_repeat1] = STATE(420), - [aux_sym__list_plus_repeat1] = STATE(421), - [aux_sym__list_star_repeat1] = STATE(422), - [aux_sym__list_task_repeat1] = STATE(404), - [aux_sym__list_definition_repeat1] = STATE(527), - [aux_sym__list_decimal_period_repeat1] = STATE(524), - [aux_sym__list_decimal_paren_repeat1] = STATE(521), - [aux_sym__list_decimal_parens_repeat1] = STATE(520), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(518), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(515), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(514), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(510), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(501), - [aux_sym__list_lower_roman_period_repeat1] = STATE(500), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(499), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(498), - [aux_sym__list_upper_roman_period_repeat1] = STATE(497), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(579), - [aux_sym_table_repeat1] = STATE(358), - [aux_sym__block_quote_prefix_repeat1] = STATE(316), - [aux_sym__inline_repeat1] = STATE(355), - [anon_sym_LBRACK] = ACTIONS(385), - [anon_sym_PIPE] = ACTIONS(387), - [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(389), - [anon_sym_DOT] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(13), - [aux_sym__inline_token1] = ACTIONS(13), - [anon_sym_LBRACE_DASH] = ACTIONS(13), - [anon_sym_POUND] = ACTIONS(13), - [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(439), - [sym__heading_begin] = ACTIONS(393), + [sym__block_element] = STATE(157), + [sym_heading] = STATE(157), + [sym_list] = STATE(157), + [sym__list_dash] = STATE(162), + [sym__list_item_dash] = STATE(634), + [sym__list_plus] = STATE(162), + [sym__list_item_plus] = STATE(651), + [sym__list_star] = STATE(162), + [sym__list_item_star] = STATE(697), + [sym__list_task] = STATE(162), + [sym__list_item_task] = STATE(707), + [sym_list_marker_task] = STATE(47), + [sym__list_definition] = STATE(162), + [sym__list_item_definition] = STATE(736), + [sym__list_decimal_period] = STATE(162), + [sym__list_item_decimal_period] = STATE(795), + [sym__list_decimal_paren] = STATE(162), + [sym__list_item_decimal_paren] = STATE(848), + [sym__list_decimal_parens] = STATE(162), + [sym__list_item_decimal_parens] = STATE(772), + [sym__list_lower_alpha_period] = STATE(162), + [sym__list_item_lower_alpha_period] = STATE(787), + [sym__list_lower_alpha_paren] = STATE(162), + [sym__list_item_lower_alpha_paren] = STATE(792), + [sym__list_lower_alpha_parens] = STATE(162), + [sym__list_item_lower_alpha_parens] = STATE(793), + [sym__list_upper_alpha_period] = STATE(162), + [sym__list_item_upper_alpha_period] = STATE(797), + [sym__list_upper_alpha_paren] = STATE(162), + [sym__list_item_upper_alpha_paren] = STATE(798), + [sym__list_upper_alpha_parens] = STATE(162), + [sym__list_item_upper_alpha_parens] = STATE(799), + [sym__list_lower_roman_period] = STATE(162), + [sym__list_item_lower_roman_period] = STATE(801), + [sym__list_lower_roman_paren] = STATE(162), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(162), + [sym__list_item_lower_roman_parens] = STATE(814), + [sym__list_upper_roman_period] = STATE(162), + [sym__list_item_upper_roman_period] = STATE(818), + [sym__list_upper_roman_paren] = STATE(162), + [sym__list_item_upper_roman_paren] = STATE(819), + [sym__list_upper_roman_parens] = STATE(162), + [sym__list_item_upper_roman_parens] = STATE(822), + [sym_table] = STATE(157), + [sym__table_content] = STATE(64), + [sym_table_separator] = STATE(64), + [sym_table_row] = STATE(71), + [sym_footnote] = STATE(157), + [sym_footnote_marker_begin] = STATE(1120), + [sym_div] = STATE(157), + [sym__div_marker_begin] = STATE(1032), + [sym_code_block] = STATE(157), + [sym_raw_block] = STATE(157), + [sym_thematic_break] = STATE(157), + [sym_block_quote] = STATE(157), + [sym__block_quote_prefix] = STATE(292), + [sym_link_reference_definition] = STATE(157), + [sym_block_attribute] = STATE(157), + [sym__paragraph] = STATE(157), + [sym__paragraph_content] = STATE(785), + [sym__paragraph_inline_content] = STATE(930), + [sym__inline] = STATE(695), + [sym__symbol_fallback] = STATE(358), + [aux_sym__list_dash_repeat1] = STATE(431), + [aux_sym__list_plus_repeat1] = STATE(414), + [aux_sym__list_star_repeat1] = STATE(416), + [aux_sym__list_task_repeat1] = STATE(396), + [aux_sym__list_definition_repeat1] = STATE(560), + [aux_sym__list_decimal_period_repeat1] = STATE(561), + [aux_sym__list_decimal_paren_repeat1] = STATE(562), + [aux_sym__list_decimal_parens_repeat1] = STATE(563), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(564), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(621), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(566), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(567), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(568), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(569), + [aux_sym__list_lower_roman_period_repeat1] = STATE(570), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(571), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(572), + [aux_sym__list_upper_roman_period_repeat1] = STATE(573), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(574), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(575), + [aux_sym_table_repeat1] = STATE(64), + [aux_sym__block_quote_prefix_repeat1] = STATE(320), + [aux_sym__inline_repeat1] = STATE(358), + [anon_sym_LBRACK] = ACTIONS(439), + [anon_sym_PIPE] = ACTIONS(439), + [anon_sym_LBRACK_CARET] = ACTIONS(439), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_DOT] = ACTIONS(439), + [aux_sym_identifier_token1] = ACTIONS(439), + [aux_sym__inline_token1] = ACTIONS(439), + [anon_sym_LBRACE_DASH] = ACTIONS(439), + [anon_sym_POUND] = ACTIONS(439), + [anon_sym_PERCENT] = ACTIONS(439), + [sym__block_close] = ACTIONS(441), + [sym__newline] = ACTIONS(443), + [sym__heading_begin] = ACTIONS(19), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(395), - [sym_list_marker_dash] = ACTIONS(25), - [sym_list_marker_star] = ACTIONS(27), - [sym_list_marker_plus] = ACTIONS(29), - [sym__list_marker_task_begin] = ACTIONS(31), + [sym__code_block_begin] = ACTIONS(85), + [sym_list_marker_dash] = ACTIONS(441), + [sym_list_marker_star] = ACTIONS(441), + [sym_list_marker_plus] = ACTIONS(441), + [sym__list_marker_task_begin] = ACTIONS(441), [sym_list_marker_definition] = ACTIONS(33), [sym_list_marker_decimal_period] = ACTIONS(35), [sym_list_marker_lower_alpha_period] = ACTIONS(37), @@ -11082,99 +11387,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(397), - [sym__block_quote_continuation] = ACTIONS(399), - [sym__thematic_break_dash] = ACTIONS(401), - [sym__thematic_break_star] = ACTIONS(401), + [sym__block_quote_begin] = ACTIONS(87), + [sym__block_quote_continuation] = ACTIONS(441), + [sym__thematic_break_dash] = ACTIONS(89), + [sym__thematic_break_star] = ACTIONS(89), }, [53] = { - [sym__block_with_heading] = STATE(637), - [sym__block_element] = STATE(637), - [sym_heading] = STATE(637), - [sym_list] = STATE(637), - [sym__list_dash] = STATE(618), - [sym__list_item_dash] = STATE(420), - [sym__list_plus] = STATE(618), - [sym__list_item_plus] = STATE(421), - [sym__list_star] = STATE(618), - [sym__list_item_star] = STATE(422), - [sym__list_task] = STATE(618), - [sym__list_item_task] = STATE(404), - [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(618), - [sym__list_item_definition] = STATE(527), - [sym__list_decimal_period] = STATE(618), - [sym__list_item_decimal_period] = STATE(524), - [sym__list_decimal_paren] = STATE(618), - [sym__list_item_decimal_paren] = STATE(521), - [sym__list_decimal_parens] = STATE(618), - [sym__list_item_decimal_parens] = STATE(520), - [sym__list_lower_alpha_period] = STATE(618), - [sym__list_item_lower_alpha_period] = STATE(518), - [sym__list_lower_alpha_paren] = STATE(618), - [sym__list_item_lower_alpha_paren] = STATE(517), - [sym__list_lower_alpha_parens] = STATE(618), - [sym__list_item_lower_alpha_parens] = STATE(515), - [sym__list_upper_alpha_period] = STATE(618), - [sym__list_item_upper_alpha_period] = STATE(514), - [sym__list_upper_alpha_paren] = STATE(618), - [sym__list_item_upper_alpha_paren] = STATE(510), - [sym__list_upper_alpha_parens] = STATE(618), - [sym__list_item_upper_alpha_parens] = STATE(501), - [sym__list_lower_roman_period] = STATE(618), - [sym__list_item_lower_roman_period] = STATE(500), - [sym__list_lower_roman_paren] = STATE(618), - [sym__list_item_lower_roman_paren] = STATE(499), - [sym__list_lower_roman_parens] = STATE(618), - [sym__list_item_lower_roman_parens] = STATE(498), - [sym__list_upper_roman_period] = STATE(618), - [sym__list_item_upper_roman_period] = STATE(497), - [sym__list_upper_roman_paren] = STATE(618), - [sym__list_item_upper_roman_paren] = STATE(496), - [sym__list_upper_roman_parens] = STATE(618), - [sym__list_item_upper_roman_parens] = STATE(579), - [sym_table] = STATE(637), - [sym__table_content] = STATE(358), - [sym_table_separator] = STATE(358), - [sym_table_row] = STATE(383), - [sym_footnote] = STATE(637), - [sym_footnote_marker_begin] = STATE(1080), - [sym_div] = STATE(637), - [sym_div_marker_begin] = STATE(952), - [sym_code_block] = STATE(637), - [sym_raw_block] = STATE(637), - [sym_thematic_break] = STATE(637), - [sym_block_quote] = STATE(637), - [sym__block_quote_prefix] = STATE(285), - [sym_link_reference_definition] = STATE(637), - [sym_block_attribute] = STATE(637), - [sym__paragraph] = STATE(637), - [sym__paragraph_content] = STATE(890), - [sym__inline] = STATE(710), - [sym__symbol_fallback] = STATE(355), - [aux_sym__list_dash_repeat1] = STATE(420), - [aux_sym__list_plus_repeat1] = STATE(421), - [aux_sym__list_star_repeat1] = STATE(422), - [aux_sym__list_task_repeat1] = STATE(404), - [aux_sym__list_definition_repeat1] = STATE(527), - [aux_sym__list_decimal_period_repeat1] = STATE(524), - [aux_sym__list_decimal_paren_repeat1] = STATE(521), - [aux_sym__list_decimal_parens_repeat1] = STATE(520), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(518), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(515), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(514), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(510), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(501), - [aux_sym__list_lower_roman_period_repeat1] = STATE(500), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(499), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(498), - [aux_sym__list_upper_roman_period_repeat1] = STATE(497), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(579), - [aux_sym_table_repeat1] = STATE(358), - [aux_sym__block_quote_prefix_repeat1] = STATE(316), - [aux_sym__inline_repeat1] = STATE(355), + [sym__block_with_heading] = STATE(661), + [sym__block_element] = STATE(661), + [sym_heading] = STATE(661), + [sym_list] = STATE(661), + [sym__list_dash] = STATE(684), + [sym__list_item_dash] = STATE(634), + [sym__list_plus] = STATE(684), + [sym__list_item_plus] = STATE(651), + [sym__list_star] = STATE(684), + [sym__list_item_star] = STATE(697), + [sym__list_task] = STATE(684), + [sym__list_item_task] = STATE(707), + [sym_list_marker_task] = STATE(47), + [sym__list_definition] = STATE(684), + [sym__list_item_definition] = STATE(736), + [sym__list_decimal_period] = STATE(684), + [sym__list_item_decimal_period] = STATE(795), + [sym__list_decimal_paren] = STATE(684), + [sym__list_item_decimal_paren] = STATE(848), + [sym__list_decimal_parens] = STATE(684), + [sym__list_item_decimal_parens] = STATE(772), + [sym__list_lower_alpha_period] = STATE(684), + [sym__list_item_lower_alpha_period] = STATE(787), + [sym__list_lower_alpha_paren] = STATE(684), + [sym__list_item_lower_alpha_paren] = STATE(792), + [sym__list_lower_alpha_parens] = STATE(684), + [sym__list_item_lower_alpha_parens] = STATE(793), + [sym__list_upper_alpha_period] = STATE(684), + [sym__list_item_upper_alpha_period] = STATE(797), + [sym__list_upper_alpha_paren] = STATE(684), + [sym__list_item_upper_alpha_paren] = STATE(798), + [sym__list_upper_alpha_parens] = STATE(684), + [sym__list_item_upper_alpha_parens] = STATE(799), + [sym__list_lower_roman_period] = STATE(684), + [sym__list_item_lower_roman_period] = STATE(801), + [sym__list_lower_roman_paren] = STATE(684), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(684), + [sym__list_item_lower_roman_parens] = STATE(814), + [sym__list_upper_roman_period] = STATE(684), + [sym__list_item_upper_roman_period] = STATE(818), + [sym__list_upper_roman_paren] = STATE(684), + [sym__list_item_upper_roman_paren] = STATE(819), + [sym__list_upper_roman_parens] = STATE(684), + [sym__list_item_upper_roman_parens] = STATE(822), + [sym_table] = STATE(661), + [sym__table_content] = STATE(368), + [sym_table_separator] = STATE(368), + [sym_table_row] = STATE(389), + [sym_footnote] = STATE(661), + [sym_footnote_marker_begin] = STATE(1116), + [sym_div] = STATE(661), + [sym__div_marker_begin] = STATE(988), + [sym_code_block] = STATE(661), + [sym_raw_block] = STATE(661), + [sym_thematic_break] = STATE(661), + [sym_block_quote] = STATE(661), + [sym__block_quote_prefix] = STATE(294), + [sym_link_reference_definition] = STATE(661), + [sym_block_attribute] = STATE(661), + [sym__paragraph] = STATE(661), + [sym__paragraph_content] = STATE(932), + [sym__paragraph_inline_content] = STATE(930), + [sym__inline] = STATE(695), + [sym__symbol_fallback] = STATE(358), + [aux_sym__list_dash_repeat1] = STATE(423), + [aux_sym__list_plus_repeat1] = STATE(417), + [aux_sym__list_star_repeat1] = STATE(420), + [aux_sym__list_task_repeat1] = STATE(395), + [aux_sym__list_definition_repeat1] = STATE(510), + [aux_sym__list_decimal_period_repeat1] = STATE(511), + [aux_sym__list_decimal_paren_repeat1] = STATE(512), + [aux_sym__list_decimal_parens_repeat1] = STATE(513), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(514), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(515), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(516), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(517), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(518), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(519), + [aux_sym__list_lower_roman_period_repeat1] = STATE(520), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(521), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(522), + [aux_sym__list_upper_roman_period_repeat1] = STATE(523), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(524), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(525), + [aux_sym_table_repeat1] = STATE(368), + [aux_sym__block_quote_prefix_repeat1] = STATE(320), + [aux_sym__inline_repeat1] = STATE(358), [anon_sym_LBRACK] = ACTIONS(385), [anon_sym_PIPE] = ACTIONS(387), [anon_sym_LBRACK_CARET] = ACTIONS(9), @@ -11185,7 +11491,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(441), + [sym__newline] = ACTIONS(445), [sym__heading_begin] = ACTIONS(393), [sym__div_begin] = ACTIONS(21), [sym__code_block_begin] = ACTIONS(395), @@ -11215,233 +11521,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__thematic_break_star] = ACTIONS(401), }, [54] = { - [sym__block_element] = STATE(181), - [sym_heading] = STATE(181), - [sym_list] = STATE(181), - [sym__list_dash] = STATE(186), - [sym__list_item_dash] = STATE(415), - [sym__list_plus] = STATE(186), - [sym__list_item_plus] = STATE(406), - [sym__list_star] = STATE(186), - [sym__list_item_star] = STATE(408), - [sym__list_task] = STATE(186), - [sym__list_item_task] = STATE(391), - [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(186), - [sym__list_item_definition] = STATE(570), - [sym__list_decimal_period] = STATE(186), - [sym__list_item_decimal_period] = STATE(573), - [sym__list_decimal_paren] = STATE(186), - [sym__list_item_decimal_paren] = STATE(575), - [sym__list_decimal_parens] = STATE(186), - [sym__list_item_decimal_parens] = STATE(578), - [sym__list_lower_alpha_period] = STATE(186), - [sym__list_item_lower_alpha_period] = STATE(495), - [sym__list_lower_alpha_paren] = STATE(186), - [sym__list_item_lower_alpha_paren] = STATE(583), - [sym__list_lower_alpha_parens] = STATE(186), - [sym__list_item_lower_alpha_parens] = STATE(494), - [sym__list_upper_alpha_period] = STATE(186), - [sym__list_item_upper_alpha_period] = STATE(584), - [sym__list_upper_alpha_paren] = STATE(186), - [sym__list_item_upper_alpha_paren] = STATE(586), - [sym__list_upper_alpha_parens] = STATE(186), - [sym__list_item_upper_alpha_parens] = STATE(587), - [sym__list_lower_roman_period] = STATE(186), - [sym__list_item_lower_roman_period] = STATE(588), - [sym__list_lower_roman_paren] = STATE(186), - [sym__list_item_lower_roman_paren] = STATE(590), - [sym__list_lower_roman_parens] = STATE(186), - [sym__list_item_lower_roman_parens] = STATE(591), - [sym__list_upper_roman_period] = STATE(186), - [sym__list_item_upper_roman_period] = STATE(592), - [sym__list_upper_roman_paren] = STATE(186), - [sym__list_item_upper_roman_paren] = STATE(596), - [sym__list_upper_roman_parens] = STATE(186), - [sym__list_item_upper_roman_parens] = STATE(597), - [sym_table] = STATE(181), - [sym__table_content] = STATE(64), - [sym_table_separator] = STATE(64), - [sym_table_row] = STATE(72), - [sym_footnote] = STATE(181), - [sym_footnote_marker_begin] = STATE(1084), - [sym_div] = STATE(181), - [sym_div_marker_begin] = STATE(996), - [sym_code_block] = STATE(181), - [sym_raw_block] = STATE(181), - [sym_thematic_break] = STATE(181), - [sym_block_quote] = STATE(181), - [sym__block_quote_prefix] = STATE(287), - [sym_link_reference_definition] = STATE(181), - [sym_block_attribute] = STATE(181), - [sym__paragraph] = STATE(181), - [sym__paragraph_content] = STATE(811), - [sym__inline] = STATE(710), - [sym__symbol_fallback] = STATE(355), - [aux_sym__list_dash_repeat1] = STATE(415), - [aux_sym__list_plus_repeat1] = STATE(406), - [aux_sym__list_star_repeat1] = STATE(408), - [aux_sym__list_task_repeat1] = STATE(391), - [aux_sym__list_definition_repeat1] = STATE(570), - [aux_sym__list_decimal_period_repeat1] = STATE(573), - [aux_sym__list_decimal_paren_repeat1] = STATE(575), - [aux_sym__list_decimal_parens_repeat1] = STATE(578), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(495), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(583), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(494), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(584), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(586), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(587), - [aux_sym__list_lower_roman_period_repeat1] = STATE(588), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(590), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(591), - [aux_sym__list_upper_roman_period_repeat1] = STATE(592), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(596), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(597), - [aux_sym_table_repeat1] = STATE(64), - [aux_sym__block_quote_prefix_repeat1] = STATE(316), - [aux_sym__inline_repeat1] = STATE(355), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(443), - [anon_sym_LBRACK_CARET] = ACTIONS(443), - [anon_sym_LBRACE] = ACTIONS(443), - [anon_sym_DOT] = ACTIONS(443), - [aux_sym_identifier_token1] = ACTIONS(443), - [aux_sym__inline_token1] = ACTIONS(443), - [anon_sym_LBRACE_DASH] = ACTIONS(443), - [anon_sym_POUND] = ACTIONS(443), - [anon_sym_PERCENT] = ACTIONS(443), - [sym__block_close] = ACTIONS(445), - [sym__newline] = ACTIONS(447), - [sym__heading_begin] = ACTIONS(19), - [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(81), - [sym_list_marker_dash] = ACTIONS(445), - [sym_list_marker_star] = ACTIONS(445), - [sym_list_marker_plus] = ACTIONS(445), - [sym__list_marker_task_begin] = ACTIONS(445), - [sym_list_marker_definition] = ACTIONS(33), - [sym_list_marker_decimal_period] = ACTIONS(35), - [sym_list_marker_lower_alpha_period] = ACTIONS(37), - [sym_list_marker_upper_alpha_period] = ACTIONS(39), - [sym_list_marker_lower_roman_period] = ACTIONS(41), - [sym_list_marker_upper_roman_period] = ACTIONS(43), - [sym_list_marker_decimal_paren] = ACTIONS(45), - [sym_list_marker_lower_alpha_paren] = ACTIONS(47), - [sym_list_marker_upper_alpha_paren] = ACTIONS(49), - [sym_list_marker_lower_roman_paren] = ACTIONS(51), - [sym_list_marker_upper_roman_paren] = ACTIONS(53), - [sym_list_marker_decimal_parens] = ACTIONS(55), - [sym_list_marker_lower_alpha_parens] = ACTIONS(57), - [sym_list_marker_upper_alpha_parens] = ACTIONS(59), - [sym_list_marker_lower_roman_parens] = ACTIONS(61), - [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(83), - [sym__block_quote_continuation] = ACTIONS(445), - [sym__thematic_break_dash] = ACTIONS(85), - [sym__thematic_break_star] = ACTIONS(85), - }, - [55] = { - [sym__block_element] = STATE(491), - [sym_heading] = STATE(491), - [sym_list] = STATE(491), - [sym__list_dash] = STATE(891), - [sym__list_item_dash] = STATE(418), - [sym__list_plus] = STATE(891), - [sym__list_item_plus] = STATE(417), - [sym__list_star] = STATE(891), - [sym__list_item_star] = STATE(416), - [sym__list_task] = STATE(891), - [sym__list_item_task] = STATE(390), - [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(891), - [sym__list_item_definition] = STATE(532), - [sym__list_decimal_period] = STATE(891), - [sym__list_item_decimal_period] = STATE(534), - [sym__list_decimal_paren] = STATE(891), - [sym__list_item_decimal_paren] = STATE(535), - [sym__list_decimal_parens] = STATE(891), - [sym__list_item_decimal_parens] = STATE(536), - [sym__list_lower_alpha_period] = STATE(891), - [sym__list_item_lower_alpha_period] = STATE(537), - [sym__list_lower_alpha_paren] = STATE(891), - [sym__list_item_lower_alpha_paren] = STATE(541), - [sym__list_lower_alpha_parens] = STATE(891), - [sym__list_item_lower_alpha_parens] = STATE(542), - [sym__list_upper_alpha_period] = STATE(891), - [sym__list_item_upper_alpha_period] = STATE(543), - [sym__list_upper_alpha_paren] = STATE(891), - [sym__list_item_upper_alpha_paren] = STATE(556), - [sym__list_upper_alpha_parens] = STATE(891), - [sym__list_item_upper_alpha_parens] = STATE(560), - [sym__list_lower_roman_period] = STATE(891), - [sym__list_item_lower_roman_period] = STATE(561), - [sym__list_lower_roman_paren] = STATE(891), - [sym__list_item_lower_roman_paren] = STATE(563), - [sym__list_lower_roman_parens] = STATE(891), - [sym__list_item_lower_roman_parens] = STATE(564), - [sym__list_upper_roman_period] = STATE(891), - [sym__list_item_upper_roman_period] = STATE(565), - [sym__list_upper_roman_paren] = STATE(891), - [sym__list_item_upper_roman_paren] = STATE(566), - [sym__list_upper_roman_parens] = STATE(891), - [sym__list_item_upper_roman_parens] = STATE(568), - [sym_table] = STATE(491), - [sym__table_content] = STATE(369), - [sym_table_separator] = STATE(369), - [sym_table_row] = STATE(384), - [sym_footnote] = STATE(491), - [sym_footnote_marker_begin] = STATE(1082), - [sym_div] = STATE(491), - [sym_div_marker_begin] = STATE(974), - [sym_code_block] = STATE(491), - [sym_raw_block] = STATE(491), - [sym_thematic_break] = STATE(491), - [sym_block_quote] = STATE(491), - [sym__block_quote_content] = STATE(942), - [sym__block_quote_prefix] = STATE(288), - [sym_link_reference_definition] = STATE(491), - [sym_block_attribute] = STATE(491), - [sym__paragraph] = STATE(491), - [sym__paragraph_content] = STATE(754), - [sym__inline] = STATE(710), - [sym__symbol_fallback] = STATE(355), - [aux_sym__list_dash_repeat1] = STATE(418), + [sym__block_with_heading] = STATE(671), + [sym__block_element] = STATE(671), + [sym_heading] = STATE(671), + [sym_list] = STATE(671), + [sym__list_dash] = STATE(684), + [sym__list_item_dash] = STATE(634), + [sym__list_plus] = STATE(684), + [sym__list_item_plus] = STATE(651), + [sym__list_star] = STATE(684), + [sym__list_item_star] = STATE(697), + [sym__list_task] = STATE(684), + [sym__list_item_task] = STATE(707), + [sym_list_marker_task] = STATE(47), + [sym__list_definition] = STATE(684), + [sym__list_item_definition] = STATE(736), + [sym__list_decimal_period] = STATE(684), + [sym__list_item_decimal_period] = STATE(795), + [sym__list_decimal_paren] = STATE(684), + [sym__list_item_decimal_paren] = STATE(848), + [sym__list_decimal_parens] = STATE(684), + [sym__list_item_decimal_parens] = STATE(772), + [sym__list_lower_alpha_period] = STATE(684), + [sym__list_item_lower_alpha_period] = STATE(787), + [sym__list_lower_alpha_paren] = STATE(684), + [sym__list_item_lower_alpha_paren] = STATE(792), + [sym__list_lower_alpha_parens] = STATE(684), + [sym__list_item_lower_alpha_parens] = STATE(793), + [sym__list_upper_alpha_period] = STATE(684), + [sym__list_item_upper_alpha_period] = STATE(797), + [sym__list_upper_alpha_paren] = STATE(684), + [sym__list_item_upper_alpha_paren] = STATE(798), + [sym__list_upper_alpha_parens] = STATE(684), + [sym__list_item_upper_alpha_parens] = STATE(799), + [sym__list_lower_roman_period] = STATE(684), + [sym__list_item_lower_roman_period] = STATE(801), + [sym__list_lower_roman_paren] = STATE(684), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(684), + [sym__list_item_lower_roman_parens] = STATE(814), + [sym__list_upper_roman_period] = STATE(684), + [sym__list_item_upper_roman_period] = STATE(818), + [sym__list_upper_roman_paren] = STATE(684), + [sym__list_item_upper_roman_paren] = STATE(819), + [sym__list_upper_roman_parens] = STATE(684), + [sym__list_item_upper_roman_parens] = STATE(822), + [sym_table] = STATE(671), + [sym__table_content] = STATE(368), + [sym_table_separator] = STATE(368), + [sym_table_row] = STATE(389), + [sym_footnote] = STATE(671), + [sym_footnote_marker_begin] = STATE(1116), + [sym_div] = STATE(671), + [sym__div_marker_begin] = STATE(988), + [sym_code_block] = STATE(671), + [sym_raw_block] = STATE(671), + [sym_thematic_break] = STATE(671), + [sym_block_quote] = STATE(671), + [sym__block_quote_prefix] = STATE(294), + [sym_link_reference_definition] = STATE(671), + [sym_block_attribute] = STATE(671), + [sym__paragraph] = STATE(671), + [sym__paragraph_content] = STATE(932), + [sym__paragraph_inline_content] = STATE(930), + [sym__inline] = STATE(695), + [sym__symbol_fallback] = STATE(358), + [aux_sym__list_dash_repeat1] = STATE(423), [aux_sym__list_plus_repeat1] = STATE(417), - [aux_sym__list_star_repeat1] = STATE(416), - [aux_sym__list_task_repeat1] = STATE(390), - [aux_sym__list_definition_repeat1] = STATE(532), - [aux_sym__list_decimal_period_repeat1] = STATE(534), - [aux_sym__list_decimal_paren_repeat1] = STATE(535), - [aux_sym__list_decimal_parens_repeat1] = STATE(536), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(537), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(541), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(542), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(543), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(556), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(560), - [aux_sym__list_lower_roman_period_repeat1] = STATE(561), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(563), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(564), - [aux_sym__list_upper_roman_period_repeat1] = STATE(565), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(566), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(568), - [aux_sym_table_repeat1] = STATE(369), - [aux_sym__block_quote_prefix_repeat1] = STATE(316), - [aux_sym__inline_repeat1] = STATE(355), - [anon_sym_LBRACK] = ACTIONS(449), - [anon_sym_PIPE] = ACTIONS(451), + [aux_sym__list_star_repeat1] = STATE(420), + [aux_sym__list_task_repeat1] = STATE(395), + [aux_sym__list_definition_repeat1] = STATE(510), + [aux_sym__list_decimal_period_repeat1] = STATE(511), + [aux_sym__list_decimal_paren_repeat1] = STATE(512), + [aux_sym__list_decimal_parens_repeat1] = STATE(513), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(514), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(515), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(516), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(517), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(518), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(519), + [aux_sym__list_lower_roman_period_repeat1] = STATE(520), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(521), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(522), + [aux_sym__list_upper_roman_period_repeat1] = STATE(523), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(524), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(525), + [aux_sym_table_repeat1] = STATE(368), + [aux_sym__block_quote_prefix_repeat1] = STATE(320), + [aux_sym__inline_repeat1] = STATE(358), + [anon_sym_LBRACK] = ACTIONS(385), + [anon_sym_PIPE] = ACTIONS(387), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(389), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__heading_begin] = ACTIONS(455), + [sym__newline] = ACTIONS(447), + [sym__heading_begin] = ACTIONS(393), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(457), + [sym__code_block_begin] = ACTIONS(395), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -11462,99 +11643,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(459), - [sym__block_quote_continuation] = ACTIONS(67), - [sym__thematic_break_dash] = ACTIONS(461), - [sym__thematic_break_star] = ACTIONS(461), + [sym__block_quote_begin] = ACTIONS(397), + [sym__block_quote_continuation] = ACTIONS(399), + [sym__thematic_break_dash] = ACTIONS(401), + [sym__thematic_break_star] = ACTIONS(401), }, - [56] = { - [sym__block_element] = STATE(491), - [sym_heading] = STATE(491), - [sym_list] = STATE(491), - [sym__list_dash] = STATE(891), - [sym__list_item_dash] = STATE(418), - [sym__list_plus] = STATE(891), - [sym__list_item_plus] = STATE(417), - [sym__list_star] = STATE(891), - [sym__list_item_star] = STATE(416), - [sym__list_task] = STATE(891), - [sym__list_item_task] = STATE(390), - [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(891), - [sym__list_item_definition] = STATE(532), - [sym__list_decimal_period] = STATE(891), - [sym__list_item_decimal_period] = STATE(534), - [sym__list_decimal_paren] = STATE(891), - [sym__list_item_decimal_paren] = STATE(535), - [sym__list_decimal_parens] = STATE(891), - [sym__list_item_decimal_parens] = STATE(536), - [sym__list_lower_alpha_period] = STATE(891), - [sym__list_item_lower_alpha_period] = STATE(537), - [sym__list_lower_alpha_paren] = STATE(891), - [sym__list_item_lower_alpha_paren] = STATE(541), - [sym__list_lower_alpha_parens] = STATE(891), - [sym__list_item_lower_alpha_parens] = STATE(542), - [sym__list_upper_alpha_period] = STATE(891), - [sym__list_item_upper_alpha_period] = STATE(543), - [sym__list_upper_alpha_paren] = STATE(891), - [sym__list_item_upper_alpha_paren] = STATE(556), - [sym__list_upper_alpha_parens] = STATE(891), - [sym__list_item_upper_alpha_parens] = STATE(560), - [sym__list_lower_roman_period] = STATE(891), - [sym__list_item_lower_roman_period] = STATE(561), - [sym__list_lower_roman_paren] = STATE(891), - [sym__list_item_lower_roman_paren] = STATE(563), - [sym__list_lower_roman_parens] = STATE(891), - [sym__list_item_lower_roman_parens] = STATE(564), - [sym__list_upper_roman_period] = STATE(891), - [sym__list_item_upper_roman_period] = STATE(565), - [sym__list_upper_roman_paren] = STATE(891), - [sym__list_item_upper_roman_paren] = STATE(566), - [sym__list_upper_roman_parens] = STATE(891), - [sym__list_item_upper_roman_parens] = STATE(568), - [sym_table] = STATE(491), - [sym__table_content] = STATE(369), - [sym_table_separator] = STATE(369), - [sym_table_row] = STATE(384), - [sym_footnote] = STATE(491), - [sym_footnote_marker_begin] = STATE(1082), - [sym_div] = STATE(491), - [sym_div_marker_begin] = STATE(974), - [sym_code_block] = STATE(491), - [sym_raw_block] = STATE(491), - [sym_thematic_break] = STATE(491), - [sym_block_quote] = STATE(491), - [sym__block_quote_content] = STATE(1016), - [sym__block_quote_prefix] = STATE(288), - [sym_link_reference_definition] = STATE(491), - [sym_block_attribute] = STATE(491), - [sym__paragraph] = STATE(491), - [sym__paragraph_content] = STATE(754), - [sym__inline] = STATE(710), - [sym__symbol_fallback] = STATE(355), + [55] = { + [sym__block_element] = STATE(498), + [sym_heading] = STATE(498), + [sym_list] = STATE(498), + [sym__list_dash] = STATE(876), + [sym__list_item_dash] = STATE(634), + [sym__list_plus] = STATE(876), + [sym__list_item_plus] = STATE(651), + [sym__list_star] = STATE(876), + [sym__list_item_star] = STATE(697), + [sym__list_task] = STATE(876), + [sym__list_item_task] = STATE(707), + [sym_list_marker_task] = STATE(47), + [sym__list_definition] = STATE(876), + [sym__list_item_definition] = STATE(736), + [sym__list_decimal_period] = STATE(876), + [sym__list_item_decimal_period] = STATE(795), + [sym__list_decimal_paren] = STATE(876), + [sym__list_item_decimal_paren] = STATE(848), + [sym__list_decimal_parens] = STATE(876), + [sym__list_item_decimal_parens] = STATE(772), + [sym__list_lower_alpha_period] = STATE(876), + [sym__list_item_lower_alpha_period] = STATE(787), + [sym__list_lower_alpha_paren] = STATE(876), + [sym__list_item_lower_alpha_paren] = STATE(792), + [sym__list_lower_alpha_parens] = STATE(876), + [sym__list_item_lower_alpha_parens] = STATE(793), + [sym__list_upper_alpha_period] = STATE(876), + [sym__list_item_upper_alpha_period] = STATE(797), + [sym__list_upper_alpha_paren] = STATE(876), + [sym__list_item_upper_alpha_paren] = STATE(798), + [sym__list_upper_alpha_parens] = STATE(876), + [sym__list_item_upper_alpha_parens] = STATE(799), + [sym__list_lower_roman_period] = STATE(876), + [sym__list_item_lower_roman_period] = STATE(801), + [sym__list_lower_roman_paren] = STATE(876), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(876), + [sym__list_item_lower_roman_parens] = STATE(814), + [sym__list_upper_roman_period] = STATE(876), + [sym__list_item_upper_roman_period] = STATE(818), + [sym__list_upper_roman_paren] = STATE(876), + [sym__list_item_upper_roman_paren] = STATE(819), + [sym__list_upper_roman_parens] = STATE(876), + [sym__list_item_upper_roman_parens] = STATE(822), + [sym_table] = STATE(498), + [sym__table_content] = STATE(380), + [sym_table_separator] = STATE(380), + [sym_table_row] = STATE(405), + [sym_footnote] = STATE(498), + [sym_footnote_marker_begin] = STATE(1118), + [sym_div] = STATE(498), + [sym__div_marker_begin] = STATE(1010), + [sym_code_block] = STATE(498), + [sym_raw_block] = STATE(498), + [sym_thematic_break] = STATE(498), + [sym_block_quote] = STATE(498), + [sym__block_quote_content] = STATE(1088), + [sym__block_quote_prefix] = STATE(295), + [sym_link_reference_definition] = STATE(498), + [sym_block_attribute] = STATE(498), + [sym__paragraph] = STATE(498), + [sym__paragraph_content] = STATE(755), + [sym__paragraph_inline_content] = STATE(930), + [sym__inline] = STATE(695), + [sym__symbol_fallback] = STATE(358), [aux_sym__list_dash_repeat1] = STATE(418), - [aux_sym__list_plus_repeat1] = STATE(417), - [aux_sym__list_star_repeat1] = STATE(416), + [aux_sym__list_plus_repeat1] = STATE(419), + [aux_sym__list_star_repeat1] = STATE(426), [aux_sym__list_task_repeat1] = STATE(390), - [aux_sym__list_definition_repeat1] = STATE(532), + [aux_sym__list_definition_repeat1] = STATE(533), [aux_sym__list_decimal_period_repeat1] = STATE(534), [aux_sym__list_decimal_paren_repeat1] = STATE(535), [aux_sym__list_decimal_parens_repeat1] = STATE(536), [aux_sym__list_lower_alpha_period_repeat1] = STATE(537), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(541), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(542), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(543), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(556), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(560), - [aux_sym__list_lower_roman_period_repeat1] = STATE(561), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(563), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(564), - [aux_sym__list_upper_roman_period_repeat1] = STATE(565), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(566), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(568), - [aux_sym_table_repeat1] = STATE(369), - [aux_sym__block_quote_prefix_repeat1] = STATE(316), - [aux_sym__inline_repeat1] = STATE(355), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(538), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(539), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(540), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(541), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(542), + [aux_sym__list_lower_roman_period_repeat1] = STATE(543), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(544), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(545), + [aux_sym__list_upper_roman_period_repeat1] = STATE(546), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(547), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(548), + [aux_sym_table_repeat1] = STATE(380), + [aux_sym__block_quote_prefix_repeat1] = STATE(320), + [aux_sym__inline_repeat1] = STATE(358), [anon_sym_LBRACK] = ACTIONS(449), [anon_sym_PIPE] = ACTIONS(451), [anon_sym_LBRACK_CARET] = ACTIONS(9), @@ -11593,111 +11775,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__thematic_break_dash] = ACTIONS(461), [sym__thematic_break_star] = ACTIONS(461), }, - [57] = { - [sym__block_element] = STATE(239), - [sym_heading] = STATE(239), - [sym_list] = STATE(239), - [sym__list_dash] = STATE(153), - [sym__list_item_dash] = STATE(409), - [sym__list_plus] = STATE(153), - [sym__list_item_plus] = STATE(410), - [sym__list_star] = STATE(153), - [sym__list_item_star] = STATE(407), - [sym__list_task] = STATE(153), - [sym__list_item_task] = STATE(396), - [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(153), - [sym__list_item_definition] = STATE(602), - [sym__list_decimal_period] = STATE(153), - [sym__list_item_decimal_period] = STATE(603), - [sym__list_decimal_paren] = STATE(153), - [sym__list_item_decimal_paren] = STATE(604), - [sym__list_decimal_parens] = STATE(153), - [sym__list_item_decimal_parens] = STATE(605), - [sym__list_lower_alpha_period] = STATE(153), - [sym__list_item_lower_alpha_period] = STATE(606), - [sym__list_lower_alpha_paren] = STATE(153), - [sym__list_item_lower_alpha_paren] = STATE(607), - [sym__list_lower_alpha_parens] = STATE(153), - [sym__list_item_lower_alpha_parens] = STATE(608), - [sym__list_upper_alpha_period] = STATE(153), - [sym__list_item_upper_alpha_period] = STATE(609), - [sym__list_upper_alpha_paren] = STATE(153), - [sym__list_item_upper_alpha_paren] = STATE(610), - [sym__list_upper_alpha_parens] = STATE(153), - [sym__list_item_upper_alpha_parens] = STATE(611), - [sym__list_lower_roman_period] = STATE(153), - [sym__list_item_lower_roman_period] = STATE(612), - [sym__list_lower_roman_paren] = STATE(153), - [sym__list_item_lower_roman_paren] = STATE(613), - [sym__list_lower_roman_parens] = STATE(153), - [sym__list_item_lower_roman_parens] = STATE(595), - [sym__list_upper_roman_period] = STATE(153), - [sym__list_item_upper_roman_period] = STATE(581), - [sym__list_upper_roman_paren] = STATE(153), - [sym__list_item_upper_roman_paren] = STATE(559), - [sym__list_upper_roman_parens] = STATE(153), - [sym__list_item_upper_roman_parens] = STATE(558), - [sym_table] = STATE(239), - [sym__table_content] = STATE(66), - [sym_table_separator] = STATE(66), - [sym_table_row] = STATE(71), - [sym_footnote] = STATE(239), - [sym_footnote_marker_begin] = STATE(1086), - [sym_div] = STATE(239), - [sym_div_marker_begin] = STATE(1017), - [sym_code_block] = STATE(239), - [sym_raw_block] = STATE(239), - [sym_thematic_break] = STATE(239), - [sym_block_quote] = STATE(239), - [sym__block_quote_prefix] = STATE(286), - [sym_link_reference_definition] = STATE(239), - [sym_block_attribute] = STATE(239), - [sym__paragraph] = STATE(239), - [sym__paragraph_content] = STATE(867), - [sym__inline] = STATE(710), - [sym__symbol_fallback] = STATE(355), - [aux_sym__list_dash_repeat1] = STATE(409), - [aux_sym__list_plus_repeat1] = STATE(410), - [aux_sym__list_star_repeat1] = STATE(407), - [aux_sym__list_task_repeat1] = STATE(396), - [aux_sym__list_definition_repeat1] = STATE(602), - [aux_sym__list_decimal_period_repeat1] = STATE(603), - [aux_sym__list_decimal_paren_repeat1] = STATE(604), - [aux_sym__list_decimal_parens_repeat1] = STATE(605), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(606), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(607), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(608), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(609), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(610), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(611), - [aux_sym__list_lower_roman_period_repeat1] = STATE(612), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(613), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(595), - [aux_sym__list_upper_roman_period_repeat1] = STATE(581), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(559), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(558), - [aux_sym_table_repeat1] = STATE(66), - [aux_sym__block_quote_prefix_repeat1] = STATE(316), - [aux_sym__inline_repeat1] = STATE(355), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(443), - [anon_sym_LBRACK_CARET] = ACTIONS(443), - [anon_sym_LBRACE] = ACTIONS(443), - [anon_sym_DOT] = ACTIONS(443), - [aux_sym_identifier_token1] = ACTIONS(443), - [aux_sym__inline_token1] = ACTIONS(443), - [anon_sym_LBRACE_DASH] = ACTIONS(443), - [anon_sym_POUND] = ACTIONS(443), - [anon_sym_PERCENT] = ACTIONS(443), + [56] = { + [sym__block_element] = STATE(160), + [sym_heading] = STATE(160), + [sym_list] = STATE(160), + [sym__list_dash] = STATE(223), + [sym__list_item_dash] = STATE(634), + [sym__list_plus] = STATE(223), + [sym__list_item_plus] = STATE(651), + [sym__list_star] = STATE(223), + [sym__list_item_star] = STATE(697), + [sym__list_task] = STATE(223), + [sym__list_item_task] = STATE(707), + [sym_list_marker_task] = STATE(47), + [sym__list_definition] = STATE(223), + [sym__list_item_definition] = STATE(736), + [sym__list_decimal_period] = STATE(223), + [sym__list_item_decimal_period] = STATE(795), + [sym__list_decimal_paren] = STATE(223), + [sym__list_item_decimal_paren] = STATE(848), + [sym__list_decimal_parens] = STATE(223), + [sym__list_item_decimal_parens] = STATE(772), + [sym__list_lower_alpha_period] = STATE(223), + [sym__list_item_lower_alpha_period] = STATE(787), + [sym__list_lower_alpha_paren] = STATE(223), + [sym__list_item_lower_alpha_paren] = STATE(792), + [sym__list_lower_alpha_parens] = STATE(223), + [sym__list_item_lower_alpha_parens] = STATE(793), + [sym__list_upper_alpha_period] = STATE(223), + [sym__list_item_upper_alpha_period] = STATE(797), + [sym__list_upper_alpha_paren] = STATE(223), + [sym__list_item_upper_alpha_paren] = STATE(798), + [sym__list_upper_alpha_parens] = STATE(223), + [sym__list_item_upper_alpha_parens] = STATE(799), + [sym__list_lower_roman_period] = STATE(223), + [sym__list_item_lower_roman_period] = STATE(801), + [sym__list_lower_roman_paren] = STATE(223), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(223), + [sym__list_item_lower_roman_parens] = STATE(814), + [sym__list_upper_roman_period] = STATE(223), + [sym__list_item_upper_roman_period] = STATE(818), + [sym__list_upper_roman_paren] = STATE(223), + [sym__list_item_upper_roman_paren] = STATE(819), + [sym__list_upper_roman_parens] = STATE(223), + [sym__list_item_upper_roman_parens] = STATE(822), + [sym_table] = STATE(160), + [sym__table_content] = STATE(65), + [sym_table_separator] = STATE(65), + [sym_table_row] = STATE(70), + [sym_footnote] = STATE(160), + [sym_footnote_marker_begin] = STATE(1122), + [sym_div] = STATE(160), + [sym__div_marker_begin] = STATE(1053), + [sym_code_block] = STATE(160), + [sym_raw_block] = STATE(160), + [sym_thematic_break] = STATE(160), + [sym_block_quote] = STATE(160), + [sym__block_quote_prefix] = STATE(291), + [sym_link_reference_definition] = STATE(160), + [sym_block_attribute] = STATE(160), + [sym__paragraph] = STATE(160), + [sym__paragraph_content] = STATE(812), + [sym__paragraph_inline_content] = STATE(930), + [sym__inline] = STATE(695), + [sym__symbol_fallback] = STATE(358), + [aux_sym__list_dash_repeat1] = STATE(424), + [aux_sym__list_plus_repeat1] = STATE(425), + [aux_sym__list_star_repeat1] = STATE(427), + [aux_sym__list_task_repeat1] = STATE(409), + [aux_sym__list_definition_repeat1] = STATE(577), + [aux_sym__list_decimal_period_repeat1] = STATE(578), + [aux_sym__list_decimal_paren_repeat1] = STATE(579), + [aux_sym__list_decimal_parens_repeat1] = STATE(580), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(581), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(582), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(583), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(584), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(585), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(586), + [aux_sym__list_lower_roman_period_repeat1] = STATE(587), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(588), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(589), + [aux_sym__list_upper_roman_period_repeat1] = STATE(590), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(591), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(592), + [aux_sym_table_repeat1] = STATE(65), + [aux_sym__block_quote_prefix_repeat1] = STATE(320), + [aux_sym__inline_repeat1] = STATE(358), + [anon_sym_LBRACK] = ACTIONS(439), + [anon_sym_PIPE] = ACTIONS(439), + [anon_sym_LBRACK_CARET] = ACTIONS(439), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_DOT] = ACTIONS(439), + [aux_sym_identifier_token1] = ACTIONS(439), + [aux_sym__inline_token1] = ACTIONS(439), + [anon_sym_LBRACE_DASH] = ACTIONS(439), + [anon_sym_POUND] = ACTIONS(439), + [anon_sym_PERCENT] = ACTIONS(439), [sym__newline] = ACTIONS(463), - [sym__heading_begin] = ACTIONS(224), + [sym__heading_begin] = ACTIONS(230), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(226), - [sym_list_marker_dash] = ACTIONS(445), - [sym_list_marker_star] = ACTIONS(445), - [sym_list_marker_plus] = ACTIONS(445), - [sym__list_marker_task_begin] = ACTIONS(445), + [sym__code_block_begin] = ACTIONS(232), + [sym_list_marker_dash] = ACTIONS(441), + [sym_list_marker_star] = ACTIONS(441), + [sym_list_marker_plus] = ACTIONS(441), + [sym__list_marker_task_begin] = ACTIONS(441), [sym_list_marker_definition] = ACTIONS(33), [sym_list_marker_decimal_period] = ACTIONS(35), [sym_list_marker_lower_alpha_period] = ACTIONS(37), @@ -11714,99 +11897,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(228), - [sym__block_quote_continuation] = ACTIONS(445), - [sym__thematic_break_dash] = ACTIONS(232), - [sym__thematic_break_star] = ACTIONS(232), + [sym__block_quote_begin] = ACTIONS(234), + [sym__block_quote_continuation] = ACTIONS(441), + [sym__thematic_break_dash] = ACTIONS(238), + [sym__thematic_break_star] = ACTIONS(238), }, - [58] = { - [sym__block_element] = STATE(491), - [sym_heading] = STATE(491), - [sym_list] = STATE(491), - [sym__list_dash] = STATE(891), - [sym__list_item_dash] = STATE(418), - [sym__list_plus] = STATE(891), - [sym__list_item_plus] = STATE(417), - [sym__list_star] = STATE(891), - [sym__list_item_star] = STATE(416), - [sym__list_task] = STATE(891), - [sym__list_item_task] = STATE(390), - [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(891), - [sym__list_item_definition] = STATE(532), - [sym__list_decimal_period] = STATE(891), - [sym__list_item_decimal_period] = STATE(534), - [sym__list_decimal_paren] = STATE(891), - [sym__list_item_decimal_paren] = STATE(535), - [sym__list_decimal_parens] = STATE(891), - [sym__list_item_decimal_parens] = STATE(536), - [sym__list_lower_alpha_period] = STATE(891), - [sym__list_item_lower_alpha_period] = STATE(537), - [sym__list_lower_alpha_paren] = STATE(891), - [sym__list_item_lower_alpha_paren] = STATE(541), - [sym__list_lower_alpha_parens] = STATE(891), - [sym__list_item_lower_alpha_parens] = STATE(542), - [sym__list_upper_alpha_period] = STATE(891), - [sym__list_item_upper_alpha_period] = STATE(543), - [sym__list_upper_alpha_paren] = STATE(891), - [sym__list_item_upper_alpha_paren] = STATE(556), - [sym__list_upper_alpha_parens] = STATE(891), - [sym__list_item_upper_alpha_parens] = STATE(560), - [sym__list_lower_roman_period] = STATE(891), - [sym__list_item_lower_roman_period] = STATE(561), - [sym__list_lower_roman_paren] = STATE(891), - [sym__list_item_lower_roman_paren] = STATE(563), - [sym__list_lower_roman_parens] = STATE(891), - [sym__list_item_lower_roman_parens] = STATE(564), - [sym__list_upper_roman_period] = STATE(891), - [sym__list_item_upper_roman_period] = STATE(565), - [sym__list_upper_roman_paren] = STATE(891), - [sym__list_item_upper_roman_paren] = STATE(566), - [sym__list_upper_roman_parens] = STATE(891), - [sym__list_item_upper_roman_parens] = STATE(568), - [sym_table] = STATE(491), - [sym__table_content] = STATE(369), - [sym_table_separator] = STATE(369), - [sym_table_row] = STATE(384), - [sym_footnote] = STATE(491), - [sym_footnote_marker_begin] = STATE(1082), - [sym_div] = STATE(491), - [sym_div_marker_begin] = STATE(974), - [sym_code_block] = STATE(491), - [sym_raw_block] = STATE(491), - [sym_thematic_break] = STATE(491), - [sym_block_quote] = STATE(491), - [sym__block_quote_content] = STATE(1070), - [sym__block_quote_prefix] = STATE(288), - [sym_link_reference_definition] = STATE(491), - [sym_block_attribute] = STATE(491), - [sym__paragraph] = STATE(491), - [sym__paragraph_content] = STATE(754), - [sym__inline] = STATE(710), - [sym__symbol_fallback] = STATE(355), + [57] = { + [sym__block_element] = STATE(498), + [sym_heading] = STATE(498), + [sym_list] = STATE(498), + [sym__list_dash] = STATE(876), + [sym__list_item_dash] = STATE(634), + [sym__list_plus] = STATE(876), + [sym__list_item_plus] = STATE(651), + [sym__list_star] = STATE(876), + [sym__list_item_star] = STATE(697), + [sym__list_task] = STATE(876), + [sym__list_item_task] = STATE(707), + [sym_list_marker_task] = STATE(47), + [sym__list_definition] = STATE(876), + [sym__list_item_definition] = STATE(736), + [sym__list_decimal_period] = STATE(876), + [sym__list_item_decimal_period] = STATE(795), + [sym__list_decimal_paren] = STATE(876), + [sym__list_item_decimal_paren] = STATE(848), + [sym__list_decimal_parens] = STATE(876), + [sym__list_item_decimal_parens] = STATE(772), + [sym__list_lower_alpha_period] = STATE(876), + [sym__list_item_lower_alpha_period] = STATE(787), + [sym__list_lower_alpha_paren] = STATE(876), + [sym__list_item_lower_alpha_paren] = STATE(792), + [sym__list_lower_alpha_parens] = STATE(876), + [sym__list_item_lower_alpha_parens] = STATE(793), + [sym__list_upper_alpha_period] = STATE(876), + [sym__list_item_upper_alpha_period] = STATE(797), + [sym__list_upper_alpha_paren] = STATE(876), + [sym__list_item_upper_alpha_paren] = STATE(798), + [sym__list_upper_alpha_parens] = STATE(876), + [sym__list_item_upper_alpha_parens] = STATE(799), + [sym__list_lower_roman_period] = STATE(876), + [sym__list_item_lower_roman_period] = STATE(801), + [sym__list_lower_roman_paren] = STATE(876), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(876), + [sym__list_item_lower_roman_parens] = STATE(814), + [sym__list_upper_roman_period] = STATE(876), + [sym__list_item_upper_roman_period] = STATE(818), + [sym__list_upper_roman_paren] = STATE(876), + [sym__list_item_upper_roman_paren] = STATE(819), + [sym__list_upper_roman_parens] = STATE(876), + [sym__list_item_upper_roman_parens] = STATE(822), + [sym_table] = STATE(498), + [sym__table_content] = STATE(380), + [sym_table_separator] = STATE(380), + [sym_table_row] = STATE(405), + [sym_footnote] = STATE(498), + [sym_footnote_marker_begin] = STATE(1118), + [sym_div] = STATE(498), + [sym__div_marker_begin] = STATE(1010), + [sym_code_block] = STATE(498), + [sym_raw_block] = STATE(498), + [sym_thematic_break] = STATE(498), + [sym_block_quote] = STATE(498), + [sym__block_quote_content] = STATE(1039), + [sym__block_quote_prefix] = STATE(295), + [sym_link_reference_definition] = STATE(498), + [sym_block_attribute] = STATE(498), + [sym__paragraph] = STATE(498), + [sym__paragraph_content] = STATE(755), + [sym__paragraph_inline_content] = STATE(930), + [sym__inline] = STATE(695), + [sym__symbol_fallback] = STATE(358), [aux_sym__list_dash_repeat1] = STATE(418), - [aux_sym__list_plus_repeat1] = STATE(417), - [aux_sym__list_star_repeat1] = STATE(416), + [aux_sym__list_plus_repeat1] = STATE(419), + [aux_sym__list_star_repeat1] = STATE(426), [aux_sym__list_task_repeat1] = STATE(390), - [aux_sym__list_definition_repeat1] = STATE(532), + [aux_sym__list_definition_repeat1] = STATE(533), [aux_sym__list_decimal_period_repeat1] = STATE(534), [aux_sym__list_decimal_paren_repeat1] = STATE(535), [aux_sym__list_decimal_parens_repeat1] = STATE(536), [aux_sym__list_lower_alpha_period_repeat1] = STATE(537), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(541), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(542), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(543), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(556), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(560), - [aux_sym__list_lower_roman_period_repeat1] = STATE(561), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(563), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(564), - [aux_sym__list_upper_roman_period_repeat1] = STATE(565), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(566), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(568), - [aux_sym_table_repeat1] = STATE(369), - [aux_sym__block_quote_prefix_repeat1] = STATE(316), - [aux_sym__inline_repeat1] = STATE(355), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(538), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(539), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(540), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(541), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(542), + [aux_sym__list_lower_roman_period_repeat1] = STATE(543), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(544), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(545), + [aux_sym__list_upper_roman_period_repeat1] = STATE(546), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(547), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(548), + [aux_sym_table_repeat1] = STATE(380), + [aux_sym__block_quote_prefix_repeat1] = STATE(320), + [aux_sym__inline_repeat1] = STATE(358), [anon_sym_LBRACK] = ACTIONS(449), [anon_sym_PIPE] = ACTIONS(451), [anon_sym_LBRACK_CARET] = ACTIONS(9), @@ -11845,94 +12029,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__thematic_break_dash] = ACTIONS(461), [sym__thematic_break_star] = ACTIONS(461), }, - [59] = { - [sym__block_element] = STATE(491), - [sym_heading] = STATE(491), - [sym_list] = STATE(491), - [sym__list_dash] = STATE(891), - [sym__list_item_dash] = STATE(418), - [sym__list_plus] = STATE(891), - [sym__list_item_plus] = STATE(417), - [sym__list_star] = STATE(891), - [sym__list_item_star] = STATE(416), - [sym__list_task] = STATE(891), - [sym__list_item_task] = STATE(390), - [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(891), - [sym__list_item_definition] = STATE(532), - [sym__list_decimal_period] = STATE(891), - [sym__list_item_decimal_period] = STATE(534), - [sym__list_decimal_paren] = STATE(891), - [sym__list_item_decimal_paren] = STATE(535), - [sym__list_decimal_parens] = STATE(891), - [sym__list_item_decimal_parens] = STATE(536), - [sym__list_lower_alpha_period] = STATE(891), - [sym__list_item_lower_alpha_period] = STATE(537), - [sym__list_lower_alpha_paren] = STATE(891), - [sym__list_item_lower_alpha_paren] = STATE(541), - [sym__list_lower_alpha_parens] = STATE(891), - [sym__list_item_lower_alpha_parens] = STATE(542), - [sym__list_upper_alpha_period] = STATE(891), - [sym__list_item_upper_alpha_period] = STATE(543), - [sym__list_upper_alpha_paren] = STATE(891), - [sym__list_item_upper_alpha_paren] = STATE(556), - [sym__list_upper_alpha_parens] = STATE(891), - [sym__list_item_upper_alpha_parens] = STATE(560), - [sym__list_lower_roman_period] = STATE(891), - [sym__list_item_lower_roman_period] = STATE(561), - [sym__list_lower_roman_paren] = STATE(891), - [sym__list_item_lower_roman_paren] = STATE(563), - [sym__list_lower_roman_parens] = STATE(891), - [sym__list_item_lower_roman_parens] = STATE(564), - [sym__list_upper_roman_period] = STATE(891), - [sym__list_item_upper_roman_period] = STATE(565), - [sym__list_upper_roman_paren] = STATE(891), - [sym__list_item_upper_roman_paren] = STATE(566), - [sym__list_upper_roman_parens] = STATE(891), - [sym__list_item_upper_roman_parens] = STATE(568), - [sym_table] = STATE(491), - [sym__table_content] = STATE(369), - [sym_table_separator] = STATE(369), - [sym_table_row] = STATE(384), - [sym_footnote] = STATE(491), - [sym_footnote_marker_begin] = STATE(1082), - [sym_div] = STATE(491), - [sym_div_marker_begin] = STATE(974), - [sym_code_block] = STATE(491), - [sym_raw_block] = STATE(491), - [sym_thematic_break] = STATE(491), - [sym_block_quote] = STATE(491), - [sym__block_quote_content] = STATE(1001), - [sym__block_quote_prefix] = STATE(288), - [sym_link_reference_definition] = STATE(491), - [sym_block_attribute] = STATE(491), - [sym__paragraph] = STATE(491), - [sym__paragraph_content] = STATE(754), - [sym__inline] = STATE(710), - [sym__symbol_fallback] = STATE(355), + [58] = { + [sym__block_element] = STATE(498), + [sym_heading] = STATE(498), + [sym_list] = STATE(498), + [sym__list_dash] = STATE(876), + [sym__list_item_dash] = STATE(634), + [sym__list_plus] = STATE(876), + [sym__list_item_plus] = STATE(651), + [sym__list_star] = STATE(876), + [sym__list_item_star] = STATE(697), + [sym__list_task] = STATE(876), + [sym__list_item_task] = STATE(707), + [sym_list_marker_task] = STATE(47), + [sym__list_definition] = STATE(876), + [sym__list_item_definition] = STATE(736), + [sym__list_decimal_period] = STATE(876), + [sym__list_item_decimal_period] = STATE(795), + [sym__list_decimal_paren] = STATE(876), + [sym__list_item_decimal_paren] = STATE(848), + [sym__list_decimal_parens] = STATE(876), + [sym__list_item_decimal_parens] = STATE(772), + [sym__list_lower_alpha_period] = STATE(876), + [sym__list_item_lower_alpha_period] = STATE(787), + [sym__list_lower_alpha_paren] = STATE(876), + [sym__list_item_lower_alpha_paren] = STATE(792), + [sym__list_lower_alpha_parens] = STATE(876), + [sym__list_item_lower_alpha_parens] = STATE(793), + [sym__list_upper_alpha_period] = STATE(876), + [sym__list_item_upper_alpha_period] = STATE(797), + [sym__list_upper_alpha_paren] = STATE(876), + [sym__list_item_upper_alpha_paren] = STATE(798), + [sym__list_upper_alpha_parens] = STATE(876), + [sym__list_item_upper_alpha_parens] = STATE(799), + [sym__list_lower_roman_period] = STATE(876), + [sym__list_item_lower_roman_period] = STATE(801), + [sym__list_lower_roman_paren] = STATE(876), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(876), + [sym__list_item_lower_roman_parens] = STATE(814), + [sym__list_upper_roman_period] = STATE(876), + [sym__list_item_upper_roman_period] = STATE(818), + [sym__list_upper_roman_paren] = STATE(876), + [sym__list_item_upper_roman_paren] = STATE(819), + [sym__list_upper_roman_parens] = STATE(876), + [sym__list_item_upper_roman_parens] = STATE(822), + [sym_table] = STATE(498), + [sym__table_content] = STATE(380), + [sym_table_separator] = STATE(380), + [sym_table_row] = STATE(405), + [sym_footnote] = STATE(498), + [sym_footnote_marker_begin] = STATE(1118), + [sym_div] = STATE(498), + [sym__div_marker_begin] = STATE(1010), + [sym_code_block] = STATE(498), + [sym_raw_block] = STATE(498), + [sym_thematic_break] = STATE(498), + [sym_block_quote] = STATE(498), + [sym__block_quote_content] = STATE(1016), + [sym__block_quote_prefix] = STATE(295), + [sym_link_reference_definition] = STATE(498), + [sym_block_attribute] = STATE(498), + [sym__paragraph] = STATE(498), + [sym__paragraph_content] = STATE(755), + [sym__paragraph_inline_content] = STATE(930), + [sym__inline] = STATE(695), + [sym__symbol_fallback] = STATE(358), [aux_sym__list_dash_repeat1] = STATE(418), - [aux_sym__list_plus_repeat1] = STATE(417), - [aux_sym__list_star_repeat1] = STATE(416), + [aux_sym__list_plus_repeat1] = STATE(419), + [aux_sym__list_star_repeat1] = STATE(426), [aux_sym__list_task_repeat1] = STATE(390), - [aux_sym__list_definition_repeat1] = STATE(532), + [aux_sym__list_definition_repeat1] = STATE(533), [aux_sym__list_decimal_period_repeat1] = STATE(534), [aux_sym__list_decimal_paren_repeat1] = STATE(535), [aux_sym__list_decimal_parens_repeat1] = STATE(536), [aux_sym__list_lower_alpha_period_repeat1] = STATE(537), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(541), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(542), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(543), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(556), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(560), - [aux_sym__list_lower_roman_period_repeat1] = STATE(561), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(563), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(564), - [aux_sym__list_upper_roman_period_repeat1] = STATE(565), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(566), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(568), - [aux_sym_table_repeat1] = STATE(369), - [aux_sym__block_quote_prefix_repeat1] = STATE(316), - [aux_sym__inline_repeat1] = STATE(355), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(538), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(539), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(540), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(541), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(542), + [aux_sym__list_lower_roman_period_repeat1] = STATE(543), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(544), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(545), + [aux_sym__list_upper_roman_period_repeat1] = STATE(546), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(547), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(548), + [aux_sym_table_repeat1] = STATE(380), + [aux_sym__block_quote_prefix_repeat1] = STATE(320), + [aux_sym__inline_repeat1] = STATE(358), [anon_sym_LBRACK] = ACTIONS(449), [anon_sym_PIPE] = ACTIONS(451), [anon_sym_LBRACK_CARET] = ACTIONS(9), @@ -11971,111 +12156,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__thematic_break_dash] = ACTIONS(461), [sym__thematic_break_star] = ACTIONS(461), }, - [60] = { - [sym__block_element] = STATE(181), - [sym_heading] = STATE(181), - [sym_list] = STATE(181), - [sym__list_dash] = STATE(186), - [sym__list_item_dash] = STATE(415), - [sym__list_plus] = STATE(186), - [sym__list_item_plus] = STATE(406), - [sym__list_star] = STATE(186), - [sym__list_item_star] = STATE(408), - [sym__list_task] = STATE(186), - [sym__list_item_task] = STATE(391), - [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(186), - [sym__list_item_definition] = STATE(570), - [sym__list_decimal_period] = STATE(186), - [sym__list_item_decimal_period] = STATE(573), - [sym__list_decimal_paren] = STATE(186), - [sym__list_item_decimal_paren] = STATE(575), - [sym__list_decimal_parens] = STATE(186), - [sym__list_item_decimal_parens] = STATE(578), - [sym__list_lower_alpha_period] = STATE(186), - [sym__list_item_lower_alpha_period] = STATE(495), - [sym__list_lower_alpha_paren] = STATE(186), - [sym__list_item_lower_alpha_paren] = STATE(583), - [sym__list_lower_alpha_parens] = STATE(186), - [sym__list_item_lower_alpha_parens] = STATE(494), - [sym__list_upper_alpha_period] = STATE(186), - [sym__list_item_upper_alpha_period] = STATE(584), - [sym__list_upper_alpha_paren] = STATE(186), - [sym__list_item_upper_alpha_paren] = STATE(586), - [sym__list_upper_alpha_parens] = STATE(186), - [sym__list_item_upper_alpha_parens] = STATE(587), - [sym__list_lower_roman_period] = STATE(186), - [sym__list_item_lower_roman_period] = STATE(588), - [sym__list_lower_roman_paren] = STATE(186), - [sym__list_item_lower_roman_paren] = STATE(590), - [sym__list_lower_roman_parens] = STATE(186), - [sym__list_item_lower_roman_parens] = STATE(591), - [sym__list_upper_roman_period] = STATE(186), - [sym__list_item_upper_roman_period] = STATE(592), - [sym__list_upper_roman_paren] = STATE(186), - [sym__list_item_upper_roman_paren] = STATE(596), - [sym__list_upper_roman_parens] = STATE(186), - [sym__list_item_upper_roman_parens] = STATE(597), - [sym_table] = STATE(181), + [59] = { + [sym__block_element] = STATE(157), + [sym_heading] = STATE(157), + [sym_list] = STATE(157), + [sym__list_dash] = STATE(162), + [sym__list_item_dash] = STATE(634), + [sym__list_plus] = STATE(162), + [sym__list_item_plus] = STATE(651), + [sym__list_star] = STATE(162), + [sym__list_item_star] = STATE(697), + [sym__list_task] = STATE(162), + [sym__list_item_task] = STATE(707), + [sym_list_marker_task] = STATE(47), + [sym__list_definition] = STATE(162), + [sym__list_item_definition] = STATE(736), + [sym__list_decimal_period] = STATE(162), + [sym__list_item_decimal_period] = STATE(795), + [sym__list_decimal_paren] = STATE(162), + [sym__list_item_decimal_paren] = STATE(848), + [sym__list_decimal_parens] = STATE(162), + [sym__list_item_decimal_parens] = STATE(772), + [sym__list_lower_alpha_period] = STATE(162), + [sym__list_item_lower_alpha_period] = STATE(787), + [sym__list_lower_alpha_paren] = STATE(162), + [sym__list_item_lower_alpha_paren] = STATE(792), + [sym__list_lower_alpha_parens] = STATE(162), + [sym__list_item_lower_alpha_parens] = STATE(793), + [sym__list_upper_alpha_period] = STATE(162), + [sym__list_item_upper_alpha_period] = STATE(797), + [sym__list_upper_alpha_paren] = STATE(162), + [sym__list_item_upper_alpha_paren] = STATE(798), + [sym__list_upper_alpha_parens] = STATE(162), + [sym__list_item_upper_alpha_parens] = STATE(799), + [sym__list_lower_roman_period] = STATE(162), + [sym__list_item_lower_roman_period] = STATE(801), + [sym__list_lower_roman_paren] = STATE(162), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(162), + [sym__list_item_lower_roman_parens] = STATE(814), + [sym__list_upper_roman_period] = STATE(162), + [sym__list_item_upper_roman_period] = STATE(818), + [sym__list_upper_roman_paren] = STATE(162), + [sym__list_item_upper_roman_paren] = STATE(819), + [sym__list_upper_roman_parens] = STATE(162), + [sym__list_item_upper_roman_parens] = STATE(822), + [sym_table] = STATE(157), [sym__table_content] = STATE(64), [sym_table_separator] = STATE(64), - [sym_table_row] = STATE(72), - [sym_footnote] = STATE(181), - [sym_footnote_marker_begin] = STATE(1084), - [sym_div] = STATE(181), - [sym_div_marker_begin] = STATE(996), - [sym_code_block] = STATE(181), - [sym_raw_block] = STATE(181), - [sym_thematic_break] = STATE(181), - [sym_block_quote] = STATE(181), - [sym__block_quote_prefix] = STATE(287), - [sym_link_reference_definition] = STATE(181), - [sym_block_attribute] = STATE(181), - [sym__paragraph] = STATE(181), - [sym__paragraph_content] = STATE(811), - [sym__inline] = STATE(710), - [sym__symbol_fallback] = STATE(355), - [aux_sym__list_dash_repeat1] = STATE(415), - [aux_sym__list_plus_repeat1] = STATE(406), - [aux_sym__list_star_repeat1] = STATE(408), - [aux_sym__list_task_repeat1] = STATE(391), - [aux_sym__list_definition_repeat1] = STATE(570), - [aux_sym__list_decimal_period_repeat1] = STATE(573), - [aux_sym__list_decimal_paren_repeat1] = STATE(575), - [aux_sym__list_decimal_parens_repeat1] = STATE(578), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(495), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(583), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(494), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(584), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(586), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(587), - [aux_sym__list_lower_roman_period_repeat1] = STATE(588), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(590), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(591), - [aux_sym__list_upper_roman_period_repeat1] = STATE(592), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(596), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(597), + [sym_table_row] = STATE(71), + [sym_footnote] = STATE(157), + [sym_footnote_marker_begin] = STATE(1120), + [sym_div] = STATE(157), + [sym__div_marker_begin] = STATE(1032), + [sym_code_block] = STATE(157), + [sym_raw_block] = STATE(157), + [sym_thematic_break] = STATE(157), + [sym_block_quote] = STATE(157), + [sym__block_quote_prefix] = STATE(292), + [sym_link_reference_definition] = STATE(157), + [sym_block_attribute] = STATE(157), + [sym__paragraph] = STATE(157), + [sym__paragraph_content] = STATE(785), + [sym__paragraph_inline_content] = STATE(930), + [sym__inline] = STATE(695), + [sym__symbol_fallback] = STATE(358), + [aux_sym__list_dash_repeat1] = STATE(431), + [aux_sym__list_plus_repeat1] = STATE(414), + [aux_sym__list_star_repeat1] = STATE(416), + [aux_sym__list_task_repeat1] = STATE(396), + [aux_sym__list_definition_repeat1] = STATE(560), + [aux_sym__list_decimal_period_repeat1] = STATE(561), + [aux_sym__list_decimal_paren_repeat1] = STATE(562), + [aux_sym__list_decimal_parens_repeat1] = STATE(563), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(564), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(621), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(566), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(567), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(568), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(569), + [aux_sym__list_lower_roman_period_repeat1] = STATE(570), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(571), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(572), + [aux_sym__list_upper_roman_period_repeat1] = STATE(573), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(574), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(575), [aux_sym_table_repeat1] = STATE(64), - [aux_sym__block_quote_prefix_repeat1] = STATE(316), - [aux_sym__inline_repeat1] = STATE(355), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(443), - [anon_sym_LBRACK_CARET] = ACTIONS(443), - [anon_sym_LBRACE] = ACTIONS(443), - [anon_sym_DOT] = ACTIONS(443), - [aux_sym_identifier_token1] = ACTIONS(443), - [aux_sym__inline_token1] = ACTIONS(443), - [anon_sym_LBRACE_DASH] = ACTIONS(443), - [anon_sym_POUND] = ACTIONS(443), - [anon_sym_PERCENT] = ACTIONS(443), - [sym__newline] = ACTIONS(447), + [aux_sym__block_quote_prefix_repeat1] = STATE(320), + [aux_sym__inline_repeat1] = STATE(358), + [anon_sym_LBRACK] = ACTIONS(439), + [anon_sym_PIPE] = ACTIONS(439), + [anon_sym_LBRACK_CARET] = ACTIONS(439), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_DOT] = ACTIONS(439), + [aux_sym_identifier_token1] = ACTIONS(439), + [aux_sym__inline_token1] = ACTIONS(439), + [anon_sym_LBRACE_DASH] = ACTIONS(439), + [anon_sym_POUND] = ACTIONS(439), + [anon_sym_PERCENT] = ACTIONS(439), + [sym__newline] = ACTIONS(443), [sym__heading_begin] = ACTIONS(19), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(81), - [sym_list_marker_dash] = ACTIONS(445), - [sym_list_marker_star] = ACTIONS(445), - [sym_list_marker_plus] = ACTIONS(445), - [sym__list_marker_task_begin] = ACTIONS(445), + [sym__code_block_begin] = ACTIONS(85), + [sym_list_marker_dash] = ACTIONS(441), + [sym_list_marker_star] = ACTIONS(441), + [sym_list_marker_plus] = ACTIONS(441), + [sym__list_marker_task_begin] = ACTIONS(441), [sym_list_marker_definition] = ACTIONS(33), [sym_list_marker_decimal_period] = ACTIONS(35), [sym_list_marker_lower_alpha_period] = ACTIONS(37), @@ -12092,112 +12278,240 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(83), - [sym__block_quote_continuation] = ACTIONS(445), - [sym__thematic_break_dash] = ACTIONS(85), - [sym__thematic_break_star] = ACTIONS(85), + [sym__block_quote_begin] = ACTIONS(87), + [sym__block_quote_continuation] = ACTIONS(441), + [sym__thematic_break_dash] = ACTIONS(89), + [sym__thematic_break_star] = ACTIONS(89), }, - [61] = { - [sym__block_element] = STATE(491), - [sym_heading] = STATE(491), - [sym_list] = STATE(491), - [sym__list_dash] = STATE(891), - [sym__list_item_dash] = STATE(418), - [sym__list_plus] = STATE(891), - [sym__list_item_plus] = STATE(417), - [sym__list_star] = STATE(891), - [sym__list_item_star] = STATE(416), - [sym__list_task] = STATE(891), - [sym__list_item_task] = STATE(390), - [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(891), - [sym__list_item_definition] = STATE(532), - [sym__list_decimal_period] = STATE(891), - [sym__list_item_decimal_period] = STATE(534), - [sym__list_decimal_paren] = STATE(891), - [sym__list_item_decimal_paren] = STATE(535), - [sym__list_decimal_parens] = STATE(891), - [sym__list_item_decimal_parens] = STATE(536), - [sym__list_lower_alpha_period] = STATE(891), - [sym__list_item_lower_alpha_period] = STATE(537), - [sym__list_lower_alpha_paren] = STATE(891), - [sym__list_item_lower_alpha_paren] = STATE(541), - [sym__list_lower_alpha_parens] = STATE(891), - [sym__list_item_lower_alpha_parens] = STATE(542), - [sym__list_upper_alpha_period] = STATE(891), - [sym__list_item_upper_alpha_period] = STATE(543), - [sym__list_upper_alpha_paren] = STATE(891), - [sym__list_item_upper_alpha_paren] = STATE(556), - [sym__list_upper_alpha_parens] = STATE(891), - [sym__list_item_upper_alpha_parens] = STATE(560), - [sym__list_lower_roman_period] = STATE(891), - [sym__list_item_lower_roman_period] = STATE(561), - [sym__list_lower_roman_paren] = STATE(891), - [sym__list_item_lower_roman_paren] = STATE(563), - [sym__list_lower_roman_parens] = STATE(891), - [sym__list_item_lower_roman_parens] = STATE(564), - [sym__list_upper_roman_period] = STATE(891), - [sym__list_item_upper_roman_period] = STATE(565), - [sym__list_upper_roman_paren] = STATE(891), - [sym__list_item_upper_roman_paren] = STATE(566), - [sym__list_upper_roman_parens] = STATE(891), - [sym__list_item_upper_roman_parens] = STATE(568), - [sym_table] = STATE(491), - [sym__table_content] = STATE(369), - [sym_table_separator] = STATE(369), - [sym_table_row] = STATE(384), - [sym_footnote] = STATE(491), - [sym_footnote_marker_begin] = STATE(1082), - [sym_div] = STATE(491), - [sym_div_marker_begin] = STATE(974), - [sym_code_block] = STATE(491), - [sym_raw_block] = STATE(491), - [sym_thematic_break] = STATE(491), - [sym_block_quote] = STATE(491), - [sym__block_quote_content] = STATE(977), - [sym__block_quote_prefix] = STATE(288), - [sym_link_reference_definition] = STATE(491), - [sym_block_attribute] = STATE(491), - [sym__paragraph] = STATE(491), - [sym__paragraph_content] = STATE(754), - [sym__inline] = STATE(710), - [sym__symbol_fallback] = STATE(355), - [aux_sym__list_dash_repeat1] = STATE(418), + [60] = { + [sym__block_element] = STATE(623), + [sym_heading] = STATE(623), + [sym_list] = STATE(623), + [sym__list_dash] = STATE(684), + [sym__list_item_dash] = STATE(634), + [sym__list_plus] = STATE(684), + [sym__list_item_plus] = STATE(651), + [sym__list_star] = STATE(684), + [sym__list_item_star] = STATE(697), + [sym__list_task] = STATE(684), + [sym__list_item_task] = STATE(707), + [sym_list_marker_task] = STATE(47), + [sym__list_definition] = STATE(684), + [sym__list_item_definition] = STATE(736), + [sym__list_decimal_period] = STATE(684), + [sym__list_item_decimal_period] = STATE(795), + [sym__list_decimal_paren] = STATE(684), + [sym__list_item_decimal_paren] = STATE(848), + [sym__list_decimal_parens] = STATE(684), + [sym__list_item_decimal_parens] = STATE(772), + [sym__list_lower_alpha_period] = STATE(684), + [sym__list_item_lower_alpha_period] = STATE(787), + [sym__list_lower_alpha_paren] = STATE(684), + [sym__list_item_lower_alpha_paren] = STATE(792), + [sym__list_lower_alpha_parens] = STATE(684), + [sym__list_item_lower_alpha_parens] = STATE(793), + [sym__list_upper_alpha_period] = STATE(684), + [sym__list_item_upper_alpha_period] = STATE(797), + [sym__list_upper_alpha_paren] = STATE(684), + [sym__list_item_upper_alpha_paren] = STATE(798), + [sym__list_upper_alpha_parens] = STATE(684), + [sym__list_item_upper_alpha_parens] = STATE(799), + [sym__list_lower_roman_period] = STATE(684), + [sym__list_item_lower_roman_period] = STATE(801), + [sym__list_lower_roman_paren] = STATE(684), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(684), + [sym__list_item_lower_roman_parens] = STATE(814), + [sym__list_upper_roman_period] = STATE(684), + [sym__list_item_upper_roman_period] = STATE(818), + [sym__list_upper_roman_paren] = STATE(684), + [sym__list_item_upper_roman_paren] = STATE(819), + [sym__list_upper_roman_parens] = STATE(684), + [sym__list_item_upper_roman_parens] = STATE(822), + [sym_table] = STATE(623), + [sym__table_content] = STATE(368), + [sym_table_separator] = STATE(368), + [sym_table_row] = STATE(389), + [sym_footnote] = STATE(623), + [sym_footnote_marker_begin] = STATE(1116), + [sym_div] = STATE(623), + [sym__div_marker_begin] = STATE(988), + [sym_code_block] = STATE(623), + [sym_raw_block] = STATE(623), + [sym_thematic_break] = STATE(623), + [sym_block_quote] = STATE(623), + [sym__block_quote_prefix] = STATE(294), + [sym_link_reference_definition] = STATE(623), + [sym_block_attribute] = STATE(623), + [sym__paragraph] = STATE(623), + [sym__paragraph_content] = STATE(932), + [sym__paragraph_inline_content] = STATE(930), + [sym__inline] = STATE(695), + [sym__symbol_fallback] = STATE(358), + [aux_sym__list_dash_repeat1] = STATE(423), [aux_sym__list_plus_repeat1] = STATE(417), - [aux_sym__list_star_repeat1] = STATE(416), - [aux_sym__list_task_repeat1] = STATE(390), - [aux_sym__list_definition_repeat1] = STATE(532), - [aux_sym__list_decimal_period_repeat1] = STATE(534), - [aux_sym__list_decimal_paren_repeat1] = STATE(535), - [aux_sym__list_decimal_parens_repeat1] = STATE(536), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(537), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(541), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(542), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(543), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(556), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(560), - [aux_sym__list_lower_roman_period_repeat1] = STATE(561), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(563), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(564), - [aux_sym__list_upper_roman_period_repeat1] = STATE(565), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(566), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(568), - [aux_sym_table_repeat1] = STATE(369), - [aux_sym__block_quote_prefix_repeat1] = STATE(316), - [aux_sym__inline_repeat1] = STATE(355), - [anon_sym_LBRACK] = ACTIONS(449), - [anon_sym_PIPE] = ACTIONS(451), - [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(453), - [anon_sym_DOT] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(13), - [aux_sym__inline_token1] = ACTIONS(13), - [anon_sym_LBRACE_DASH] = ACTIONS(13), - [anon_sym_POUND] = ACTIONS(13), - [anon_sym_PERCENT] = ACTIONS(13), - [sym__heading_begin] = ACTIONS(455), - [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(457), + [aux_sym__list_star_repeat1] = STATE(420), + [aux_sym__list_task_repeat1] = STATE(395), + [aux_sym__list_definition_repeat1] = STATE(510), + [aux_sym__list_decimal_period_repeat1] = STATE(511), + [aux_sym__list_decimal_paren_repeat1] = STATE(512), + [aux_sym__list_decimal_parens_repeat1] = STATE(513), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(514), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(515), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(516), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(517), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(518), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(519), + [aux_sym__list_lower_roman_period_repeat1] = STATE(520), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(521), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(522), + [aux_sym__list_upper_roman_period_repeat1] = STATE(523), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(524), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(525), + [aux_sym_table_repeat1] = STATE(368), + [aux_sym__block_quote_prefix_repeat1] = STATE(320), + [aux_sym__inline_repeat1] = STATE(358), + [anon_sym_LBRACK] = ACTIONS(439), + [anon_sym_PIPE] = ACTIONS(439), + [anon_sym_LBRACK_CARET] = ACTIONS(439), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_DOT] = ACTIONS(439), + [aux_sym_identifier_token1] = ACTIONS(439), + [aux_sym__inline_token1] = ACTIONS(439), + [anon_sym_LBRACE_DASH] = ACTIONS(439), + [anon_sym_POUND] = ACTIONS(439), + [anon_sym_PERCENT] = ACTIONS(439), + [sym__newline] = ACTIONS(465), + [sym__heading_begin] = ACTIONS(393), + [sym__div_begin] = ACTIONS(21), + [sym__code_block_begin] = ACTIONS(395), + [sym_list_marker_dash] = ACTIONS(441), + [sym_list_marker_star] = ACTIONS(441), + [sym_list_marker_plus] = ACTIONS(441), + [sym__list_marker_task_begin] = ACTIONS(441), + [sym_list_marker_definition] = ACTIONS(33), + [sym_list_marker_decimal_period] = ACTIONS(35), + [sym_list_marker_lower_alpha_period] = ACTIONS(37), + [sym_list_marker_upper_alpha_period] = ACTIONS(39), + [sym_list_marker_lower_roman_period] = ACTIONS(41), + [sym_list_marker_upper_roman_period] = ACTIONS(43), + [sym_list_marker_decimal_paren] = ACTIONS(45), + [sym_list_marker_lower_alpha_paren] = ACTIONS(47), + [sym_list_marker_upper_alpha_paren] = ACTIONS(49), + [sym_list_marker_lower_roman_paren] = ACTIONS(51), + [sym_list_marker_upper_roman_paren] = ACTIONS(53), + [sym_list_marker_decimal_parens] = ACTIONS(55), + [sym_list_marker_lower_alpha_parens] = ACTIONS(57), + [sym_list_marker_upper_alpha_parens] = ACTIONS(59), + [sym_list_marker_lower_roman_parens] = ACTIONS(61), + [sym_list_marker_upper_roman_parens] = ACTIONS(63), + [sym__block_quote_begin] = ACTIONS(397), + [sym__block_quote_continuation] = ACTIONS(441), + [sym__thematic_break_dash] = ACTIONS(401), + [sym__thematic_break_star] = ACTIONS(401), + }, + [61] = { + [sym__block_element] = STATE(498), + [sym_heading] = STATE(498), + [sym_list] = STATE(498), + [sym__list_dash] = STATE(876), + [sym__list_item_dash] = STATE(634), + [sym__list_plus] = STATE(876), + [sym__list_item_plus] = STATE(651), + [sym__list_star] = STATE(876), + [sym__list_item_star] = STATE(697), + [sym__list_task] = STATE(876), + [sym__list_item_task] = STATE(707), + [sym_list_marker_task] = STATE(47), + [sym__list_definition] = STATE(876), + [sym__list_item_definition] = STATE(736), + [sym__list_decimal_period] = STATE(876), + [sym__list_item_decimal_period] = STATE(795), + [sym__list_decimal_paren] = STATE(876), + [sym__list_item_decimal_paren] = STATE(848), + [sym__list_decimal_parens] = STATE(876), + [sym__list_item_decimal_parens] = STATE(772), + [sym__list_lower_alpha_period] = STATE(876), + [sym__list_item_lower_alpha_period] = STATE(787), + [sym__list_lower_alpha_paren] = STATE(876), + [sym__list_item_lower_alpha_paren] = STATE(792), + [sym__list_lower_alpha_parens] = STATE(876), + [sym__list_item_lower_alpha_parens] = STATE(793), + [sym__list_upper_alpha_period] = STATE(876), + [sym__list_item_upper_alpha_period] = STATE(797), + [sym__list_upper_alpha_paren] = STATE(876), + [sym__list_item_upper_alpha_paren] = STATE(798), + [sym__list_upper_alpha_parens] = STATE(876), + [sym__list_item_upper_alpha_parens] = STATE(799), + [sym__list_lower_roman_period] = STATE(876), + [sym__list_item_lower_roman_period] = STATE(801), + [sym__list_lower_roman_paren] = STATE(876), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(876), + [sym__list_item_lower_roman_parens] = STATE(814), + [sym__list_upper_roman_period] = STATE(876), + [sym__list_item_upper_roman_period] = STATE(818), + [sym__list_upper_roman_paren] = STATE(876), + [sym__list_item_upper_roman_paren] = STATE(819), + [sym__list_upper_roman_parens] = STATE(876), + [sym__list_item_upper_roman_parens] = STATE(822), + [sym_table] = STATE(498), + [sym__table_content] = STATE(380), + [sym_table_separator] = STATE(380), + [sym_table_row] = STATE(405), + [sym_footnote] = STATE(498), + [sym_footnote_marker_begin] = STATE(1118), + [sym_div] = STATE(498), + [sym__div_marker_begin] = STATE(1010), + [sym_code_block] = STATE(498), + [sym_raw_block] = STATE(498), + [sym_thematic_break] = STATE(498), + [sym_block_quote] = STATE(498), + [sym__block_quote_content] = STATE(1048), + [sym__block_quote_prefix] = STATE(295), + [sym_link_reference_definition] = STATE(498), + [sym_block_attribute] = STATE(498), + [sym__paragraph] = STATE(498), + [sym__paragraph_content] = STATE(755), + [sym__paragraph_inline_content] = STATE(930), + [sym__inline] = STATE(695), + [sym__symbol_fallback] = STATE(358), + [aux_sym__list_dash_repeat1] = STATE(418), + [aux_sym__list_plus_repeat1] = STATE(419), + [aux_sym__list_star_repeat1] = STATE(426), + [aux_sym__list_task_repeat1] = STATE(390), + [aux_sym__list_definition_repeat1] = STATE(533), + [aux_sym__list_decimal_period_repeat1] = STATE(534), + [aux_sym__list_decimal_paren_repeat1] = STATE(535), + [aux_sym__list_decimal_parens_repeat1] = STATE(536), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(537), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(538), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(539), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(540), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(541), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(542), + [aux_sym__list_lower_roman_period_repeat1] = STATE(543), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(544), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(545), + [aux_sym__list_upper_roman_period_repeat1] = STATE(546), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(547), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(548), + [aux_sym_table_repeat1] = STATE(380), + [aux_sym__block_quote_prefix_repeat1] = STATE(320), + [aux_sym__inline_repeat1] = STATE(358), + [anon_sym_LBRACK] = ACTIONS(449), + [anon_sym_PIPE] = ACTIONS(451), + [anon_sym_LBRACK_CARET] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(453), + [anon_sym_DOT] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(13), + [aux_sym__inline_token1] = ACTIONS(13), + [anon_sym_LBRACE_DASH] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(13), + [anon_sym_PERCENT] = ACTIONS(13), + [sym__heading_begin] = ACTIONS(455), + [sym__div_begin] = ACTIONS(21), + [sym__code_block_begin] = ACTIONS(457), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -12224,110 +12538,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__thematic_break_star] = ACTIONS(461), }, [62] = { - [sym__block_element] = STATE(638), - [sym_heading] = STATE(638), - [sym_list] = STATE(638), - [sym__list_dash] = STATE(618), - [sym__list_item_dash] = STATE(420), - [sym__list_plus] = STATE(618), - [sym__list_item_plus] = STATE(421), - [sym__list_star] = STATE(618), - [sym__list_item_star] = STATE(422), - [sym__list_task] = STATE(618), - [sym__list_item_task] = STATE(404), - [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(618), - [sym__list_item_definition] = STATE(527), - [sym__list_decimal_period] = STATE(618), - [sym__list_item_decimal_period] = STATE(524), - [sym__list_decimal_paren] = STATE(618), - [sym__list_item_decimal_paren] = STATE(521), - [sym__list_decimal_parens] = STATE(618), - [sym__list_item_decimal_parens] = STATE(520), - [sym__list_lower_alpha_period] = STATE(618), - [sym__list_item_lower_alpha_period] = STATE(518), - [sym__list_lower_alpha_paren] = STATE(618), - [sym__list_item_lower_alpha_paren] = STATE(517), - [sym__list_lower_alpha_parens] = STATE(618), - [sym__list_item_lower_alpha_parens] = STATE(515), - [sym__list_upper_alpha_period] = STATE(618), - [sym__list_item_upper_alpha_period] = STATE(514), - [sym__list_upper_alpha_paren] = STATE(618), - [sym__list_item_upper_alpha_paren] = STATE(510), - [sym__list_upper_alpha_parens] = STATE(618), - [sym__list_item_upper_alpha_parens] = STATE(501), - [sym__list_lower_roman_period] = STATE(618), - [sym__list_item_lower_roman_period] = STATE(500), - [sym__list_lower_roman_paren] = STATE(618), - [sym__list_item_lower_roman_paren] = STATE(499), - [sym__list_lower_roman_parens] = STATE(618), - [sym__list_item_lower_roman_parens] = STATE(498), - [sym__list_upper_roman_period] = STATE(618), - [sym__list_item_upper_roman_period] = STATE(497), - [sym__list_upper_roman_paren] = STATE(618), - [sym__list_item_upper_roman_paren] = STATE(496), - [sym__list_upper_roman_parens] = STATE(618), - [sym__list_item_upper_roman_parens] = STATE(579), - [sym_table] = STATE(638), - [sym__table_content] = STATE(358), - [sym_table_separator] = STATE(358), - [sym_table_row] = STATE(383), - [sym_footnote] = STATE(638), - [sym_footnote_marker_begin] = STATE(1080), - [sym_div] = STATE(638), - [sym_div_marker_begin] = STATE(952), - [sym_code_block] = STATE(638), - [sym_raw_block] = STATE(638), - [sym_thematic_break] = STATE(638), - [sym_block_quote] = STATE(638), - [sym__block_quote_prefix] = STATE(285), - [sym_link_reference_definition] = STATE(638), - [sym_block_attribute] = STATE(638), - [sym__paragraph] = STATE(638), - [sym__paragraph_content] = STATE(890), - [sym__inline] = STATE(710), - [sym__symbol_fallback] = STATE(355), - [aux_sym__list_dash_repeat1] = STATE(420), - [aux_sym__list_plus_repeat1] = STATE(421), - [aux_sym__list_star_repeat1] = STATE(422), - [aux_sym__list_task_repeat1] = STATE(404), - [aux_sym__list_definition_repeat1] = STATE(527), - [aux_sym__list_decimal_period_repeat1] = STATE(524), - [aux_sym__list_decimal_paren_repeat1] = STATE(521), - [aux_sym__list_decimal_parens_repeat1] = STATE(520), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(518), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(515), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(514), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(510), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(501), - [aux_sym__list_lower_roman_period_repeat1] = STATE(500), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(499), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(498), - [aux_sym__list_upper_roman_period_repeat1] = STATE(497), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(579), - [aux_sym_table_repeat1] = STATE(358), - [aux_sym__block_quote_prefix_repeat1] = STATE(316), - [aux_sym__inline_repeat1] = STATE(355), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(443), - [anon_sym_LBRACK_CARET] = ACTIONS(443), - [anon_sym_LBRACE] = ACTIONS(443), - [anon_sym_DOT] = ACTIONS(443), - [aux_sym_identifier_token1] = ACTIONS(443), - [aux_sym__inline_token1] = ACTIONS(443), - [anon_sym_LBRACE_DASH] = ACTIONS(443), - [anon_sym_POUND] = ACTIONS(443), - [anon_sym_PERCENT] = ACTIONS(443), - [sym__newline] = ACTIONS(465), - [sym__heading_begin] = ACTIONS(393), + [sym__block_element] = STATE(498), + [sym_heading] = STATE(498), + [sym_list] = STATE(498), + [sym__list_dash] = STATE(876), + [sym__list_item_dash] = STATE(634), + [sym__list_plus] = STATE(876), + [sym__list_item_plus] = STATE(651), + [sym__list_star] = STATE(876), + [sym__list_item_star] = STATE(697), + [sym__list_task] = STATE(876), + [sym__list_item_task] = STATE(707), + [sym_list_marker_task] = STATE(47), + [sym__list_definition] = STATE(876), + [sym__list_item_definition] = STATE(736), + [sym__list_decimal_period] = STATE(876), + [sym__list_item_decimal_period] = STATE(795), + [sym__list_decimal_paren] = STATE(876), + [sym__list_item_decimal_paren] = STATE(848), + [sym__list_decimal_parens] = STATE(876), + [sym__list_item_decimal_parens] = STATE(772), + [sym__list_lower_alpha_period] = STATE(876), + [sym__list_item_lower_alpha_period] = STATE(787), + [sym__list_lower_alpha_paren] = STATE(876), + [sym__list_item_lower_alpha_paren] = STATE(792), + [sym__list_lower_alpha_parens] = STATE(876), + [sym__list_item_lower_alpha_parens] = STATE(793), + [sym__list_upper_alpha_period] = STATE(876), + [sym__list_item_upper_alpha_period] = STATE(797), + [sym__list_upper_alpha_paren] = STATE(876), + [sym__list_item_upper_alpha_paren] = STATE(798), + [sym__list_upper_alpha_parens] = STATE(876), + [sym__list_item_upper_alpha_parens] = STATE(799), + [sym__list_lower_roman_period] = STATE(876), + [sym__list_item_lower_roman_period] = STATE(801), + [sym__list_lower_roman_paren] = STATE(876), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(876), + [sym__list_item_lower_roman_parens] = STATE(814), + [sym__list_upper_roman_period] = STATE(876), + [sym__list_item_upper_roman_period] = STATE(818), + [sym__list_upper_roman_paren] = STATE(876), + [sym__list_item_upper_roman_paren] = STATE(819), + [sym__list_upper_roman_parens] = STATE(876), + [sym__list_item_upper_roman_parens] = STATE(822), + [sym_table] = STATE(498), + [sym__table_content] = STATE(380), + [sym_table_separator] = STATE(380), + [sym_table_row] = STATE(405), + [sym_footnote] = STATE(498), + [sym_footnote_marker_begin] = STATE(1118), + [sym_div] = STATE(498), + [sym__div_marker_begin] = STATE(1010), + [sym_code_block] = STATE(498), + [sym_raw_block] = STATE(498), + [sym_thematic_break] = STATE(498), + [sym_block_quote] = STATE(498), + [sym__block_quote_content] = STATE(1004), + [sym__block_quote_prefix] = STATE(295), + [sym_link_reference_definition] = STATE(498), + [sym_block_attribute] = STATE(498), + [sym__paragraph] = STATE(498), + [sym__paragraph_content] = STATE(755), + [sym__paragraph_inline_content] = STATE(930), + [sym__inline] = STATE(695), + [sym__symbol_fallback] = STATE(358), + [aux_sym__list_dash_repeat1] = STATE(418), + [aux_sym__list_plus_repeat1] = STATE(419), + [aux_sym__list_star_repeat1] = STATE(426), + [aux_sym__list_task_repeat1] = STATE(390), + [aux_sym__list_definition_repeat1] = STATE(533), + [aux_sym__list_decimal_period_repeat1] = STATE(534), + [aux_sym__list_decimal_paren_repeat1] = STATE(535), + [aux_sym__list_decimal_parens_repeat1] = STATE(536), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(537), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(538), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(539), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(540), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(541), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(542), + [aux_sym__list_lower_roman_period_repeat1] = STATE(543), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(544), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(545), + [aux_sym__list_upper_roman_period_repeat1] = STATE(546), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(547), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(548), + [aux_sym_table_repeat1] = STATE(380), + [aux_sym__block_quote_prefix_repeat1] = STATE(320), + [aux_sym__inline_repeat1] = STATE(358), + [anon_sym_LBRACK] = ACTIONS(449), + [anon_sym_PIPE] = ACTIONS(451), + [anon_sym_LBRACK_CARET] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(453), + [anon_sym_DOT] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(13), + [aux_sym__inline_token1] = ACTIONS(13), + [anon_sym_LBRACE_DASH] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(13), + [anon_sym_PERCENT] = ACTIONS(13), + [sym__heading_begin] = ACTIONS(455), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(395), - [sym_list_marker_dash] = ACTIONS(445), - [sym_list_marker_star] = ACTIONS(445), - [sym_list_marker_plus] = ACTIONS(445), - [sym__list_marker_task_begin] = ACTIONS(445), + [sym__code_block_begin] = ACTIONS(457), + [sym_list_marker_dash] = ACTIONS(25), + [sym_list_marker_star] = ACTIONS(27), + [sym_list_marker_plus] = ACTIONS(29), + [sym__list_marker_task_begin] = ACTIONS(31), [sym_list_marker_definition] = ACTIONS(33), [sym_list_marker_decimal_period] = ACTIONS(35), [sym_list_marker_lower_alpha_period] = ACTIONS(37), @@ -12344,97 +12659,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(397), - [sym__block_quote_continuation] = ACTIONS(445), - [sym__thematic_break_dash] = ACTIONS(401), - [sym__thematic_break_star] = ACTIONS(401), + [sym__block_quote_begin] = ACTIONS(459), + [sym__block_quote_continuation] = ACTIONS(67), + [sym__thematic_break_dash] = ACTIONS(461), + [sym__thematic_break_star] = ACTIONS(461), }, [63] = { - [sym__block_element] = STATE(724), - [sym_list] = STATE(724), - [sym__list_dash] = STATE(891), - [sym__list_item_dash] = STATE(418), - [sym__list_plus] = STATE(891), - [sym__list_item_plus] = STATE(417), - [sym__list_star] = STATE(891), - [sym__list_item_star] = STATE(416), - [sym__list_task] = STATE(891), - [sym__list_item_task] = STATE(390), - [sym_list_marker_task] = STATE(38), - [sym__list_definition] = STATE(891), - [sym__list_item_definition] = STATE(532), - [sym__list_decimal_period] = STATE(891), - [sym__list_item_decimal_period] = STATE(534), - [sym__list_decimal_paren] = STATE(891), - [sym__list_item_decimal_paren] = STATE(535), - [sym__list_decimal_parens] = STATE(891), - [sym__list_item_decimal_parens] = STATE(536), - [sym__list_lower_alpha_period] = STATE(891), - [sym__list_item_lower_alpha_period] = STATE(537), - [sym__list_lower_alpha_paren] = STATE(891), - [sym__list_item_lower_alpha_paren] = STATE(541), - [sym__list_lower_alpha_parens] = STATE(891), - [sym__list_item_lower_alpha_parens] = STATE(542), - [sym__list_upper_alpha_period] = STATE(891), - [sym__list_item_upper_alpha_period] = STATE(543), - [sym__list_upper_alpha_paren] = STATE(891), - [sym__list_item_upper_alpha_paren] = STATE(556), - [sym__list_upper_alpha_parens] = STATE(891), - [sym__list_item_upper_alpha_parens] = STATE(560), - [sym__list_lower_roman_period] = STATE(891), - [sym__list_item_lower_roman_period] = STATE(561), - [sym__list_lower_roman_paren] = STATE(891), - [sym__list_item_lower_roman_paren] = STATE(563), - [sym__list_lower_roman_parens] = STATE(891), - [sym__list_item_lower_roman_parens] = STATE(564), - [sym__list_upper_roman_period] = STATE(891), - [sym__list_item_upper_roman_period] = STATE(565), - [sym__list_upper_roman_paren] = STATE(891), - [sym__list_item_upper_roman_paren] = STATE(566), - [sym__list_upper_roman_parens] = STATE(891), - [sym__list_item_upper_roman_parens] = STATE(568), - [sym_table] = STATE(724), - [sym__table_content] = STATE(369), - [sym_table_separator] = STATE(369), - [sym_table_row] = STATE(384), - [sym_footnote] = STATE(724), - [sym_footnote_marker_begin] = STATE(1082), - [sym_div] = STATE(724), - [sym_div_marker_begin] = STATE(974), - [sym_code_block] = STATE(724), - [sym_raw_block] = STATE(724), - [sym_thematic_break] = STATE(724), - [sym_block_quote] = STATE(724), - [sym__block_quote_prefix] = STATE(288), - [sym_link_reference_definition] = STATE(724), - [sym_block_attribute] = STATE(724), - [sym__paragraph] = STATE(724), - [sym__paragraph_content] = STATE(754), - [sym__inline] = STATE(710), - [sym__symbol_fallback] = STATE(355), + [sym__block_element] = STATE(788), + [sym_list] = STATE(788), + [sym__list_dash] = STATE(876), + [sym__list_item_dash] = STATE(634), + [sym__list_plus] = STATE(876), + [sym__list_item_plus] = STATE(651), + [sym__list_star] = STATE(876), + [sym__list_item_star] = STATE(697), + [sym__list_task] = STATE(876), + [sym__list_item_task] = STATE(707), + [sym_list_marker_task] = STATE(47), + [sym__list_definition] = STATE(876), + [sym__list_item_definition] = STATE(736), + [sym__list_decimal_period] = STATE(876), + [sym__list_item_decimal_period] = STATE(795), + [sym__list_decimal_paren] = STATE(876), + [sym__list_item_decimal_paren] = STATE(848), + [sym__list_decimal_parens] = STATE(876), + [sym__list_item_decimal_parens] = STATE(772), + [sym__list_lower_alpha_period] = STATE(876), + [sym__list_item_lower_alpha_period] = STATE(787), + [sym__list_lower_alpha_paren] = STATE(876), + [sym__list_item_lower_alpha_paren] = STATE(792), + [sym__list_lower_alpha_parens] = STATE(876), + [sym__list_item_lower_alpha_parens] = STATE(793), + [sym__list_upper_alpha_period] = STATE(876), + [sym__list_item_upper_alpha_period] = STATE(797), + [sym__list_upper_alpha_paren] = STATE(876), + [sym__list_item_upper_alpha_paren] = STATE(798), + [sym__list_upper_alpha_parens] = STATE(876), + [sym__list_item_upper_alpha_parens] = STATE(799), + [sym__list_lower_roman_period] = STATE(876), + [sym__list_item_lower_roman_period] = STATE(801), + [sym__list_lower_roman_paren] = STATE(876), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(876), + [sym__list_item_lower_roman_parens] = STATE(814), + [sym__list_upper_roman_period] = STATE(876), + [sym__list_item_upper_roman_period] = STATE(818), + [sym__list_upper_roman_paren] = STATE(876), + [sym__list_item_upper_roman_paren] = STATE(819), + [sym__list_upper_roman_parens] = STATE(876), + [sym__list_item_upper_roman_parens] = STATE(822), + [sym_table] = STATE(788), + [sym__table_content] = STATE(380), + [sym_table_separator] = STATE(380), + [sym_table_row] = STATE(405), + [sym_footnote] = STATE(788), + [sym_footnote_marker_begin] = STATE(1118), + [sym_div] = STATE(788), + [sym__div_marker_begin] = STATE(1010), + [sym_code_block] = STATE(788), + [sym_raw_block] = STATE(788), + [sym_thematic_break] = STATE(788), + [sym_block_quote] = STATE(788), + [sym__block_quote_prefix] = STATE(295), + [sym_link_reference_definition] = STATE(788), + [sym_block_attribute] = STATE(788), + [sym__paragraph] = STATE(788), + [sym__paragraph_content] = STATE(755), + [sym__paragraph_inline_content] = STATE(930), + [sym__inline] = STATE(695), + [sym__symbol_fallback] = STATE(358), [aux_sym__list_dash_repeat1] = STATE(418), - [aux_sym__list_plus_repeat1] = STATE(417), - [aux_sym__list_star_repeat1] = STATE(416), + [aux_sym__list_plus_repeat1] = STATE(419), + [aux_sym__list_star_repeat1] = STATE(426), [aux_sym__list_task_repeat1] = STATE(390), - [aux_sym__list_definition_repeat1] = STATE(532), + [aux_sym__list_definition_repeat1] = STATE(533), [aux_sym__list_decimal_period_repeat1] = STATE(534), [aux_sym__list_decimal_paren_repeat1] = STATE(535), [aux_sym__list_decimal_parens_repeat1] = STATE(536), [aux_sym__list_lower_alpha_period_repeat1] = STATE(537), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(541), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(542), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(543), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(556), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(560), - [aux_sym__list_lower_roman_period_repeat1] = STATE(561), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(563), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(564), - [aux_sym__list_upper_roman_period_repeat1] = STATE(565), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(566), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(568), - [aux_sym_table_repeat1] = STATE(369), - [aux_sym__block_quote_prefix_repeat1] = STATE(316), - [aux_sym__inline_repeat1] = STATE(355), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(538), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(539), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(540), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(541), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(542), + [aux_sym__list_lower_roman_period_repeat1] = STATE(543), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(544), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(545), + [aux_sym__list_upper_roman_period_repeat1] = STATE(546), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(547), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(548), + [aux_sym_table_repeat1] = STATE(380), + [aux_sym__block_quote_prefix_repeat1] = STATE(320), + [aux_sym__inline_repeat1] = STATE(358), [anon_sym_LBRACK] = ACTIONS(449), [anon_sym_PIPE] = ACTIONS(451), [anon_sym_LBRACK_CARET] = ACTIONS(9), @@ -12485,13 +12801,13 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, ACTIONS(482), 1, sym__table_caption_begin, - STATE(72), 1, + STATE(71), 1, sym_table_row, - STATE(201), 1, + STATE(186), 1, sym_table_caption, - STATE(681), 1, + STATE(720), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1053), 1, + STATE(1089), 1, sym__block_quote_prefix, STATE(67), 3, sym__table_content, @@ -12546,11 +12862,11 @@ static const uint16_t ts_small_parse_table[] = { sym__table_caption_begin, STATE(70), 1, sym_table_row, - STATE(183), 1, + STATE(246), 1, sym_table_caption, - STATE(681), 1, + STATE(720), 1, aux_sym__block_quote_prefix_repeat1, - STATE(943), 1, + STATE(1096), 1, sym__block_quote_prefix, STATE(68), 3, sym__table_content, @@ -12593,7 +12909,7 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_begin, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, + sym__footnote_end, [140] = 11, ACTIONS(480), 1, sym__block_quote_continuation, @@ -12603,13 +12919,13 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, ACTIONS(494), 1, sym__table_caption_begin, - STATE(71), 1, + STATE(72), 1, sym_table_row, - STATE(214), 1, + STATE(224), 1, sym_table_caption, - STATE(681), 1, + STATE(720), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1060), 1, + STATE(1030), 1, sym__block_quote_prefix, STATE(69), 3, sym__table_content, @@ -12652,17 +12968,17 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_begin, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, + ts_builtin_sym_end, [210] = 8, ACTIONS(498), 1, anon_sym_PIPE, ACTIONS(503), 1, sym__block_quote_continuation, - STATE(72), 1, + STATE(71), 1, sym_table_row, - STATE(681), 1, + STATE(720), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1053), 1, + STATE(1089), 1, sym__block_quote_prefix, STATE(67), 3, sym__table_content, @@ -12715,9 +13031,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, STATE(70), 1, sym_table_row, - STATE(681), 1, + STATE(720), 1, aux_sym__block_quote_prefix_repeat1, - STATE(943), 1, + STATE(1096), 1, sym__block_quote_prefix, STATE(68), 3, sym__table_content, @@ -12761,18 +13077,18 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_begin, sym__thematic_break_dash, sym__thematic_break_star, + sym__footnote_end, sym__table_caption_begin, - ts_builtin_sym_end, [336] = 8, ACTIONS(503), 1, sym__block_quote_continuation, ACTIONS(509), 1, anon_sym_PIPE, - STATE(71), 1, + STATE(72), 1, sym_table_row, - STATE(681), 1, + STATE(720), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1060), 1, + STATE(1030), 1, sym__block_quote_prefix, STATE(69), 3, sym__table_content, @@ -12816,20 +13132,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_begin, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, sym__table_caption_begin, + ts_builtin_sym_end, [399] = 7, - ACTIONS(516), 1, + ACTIONS(514), 1, anon_sym_PIPE, ACTIONS(519), 1, sym__block_quote_continuation, - STATE(121), 1, + STATE(91), 1, sym_table_separator, - STATE(681), 1, + STATE(720), 1, aux_sym__block_quote_prefix_repeat1, - STATE(929), 1, + STATE(1113), 1, sym__block_quote_prefix, - ACTIONS(514), 9, + ACTIONS(512), 9, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, @@ -12839,7 +13155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(512), 29, + ACTIONS(517), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -12867,20 +13183,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_begin, sym__thematic_break_dash, sym__thematic_break_star, + sym__footnote_end, sym__table_caption_begin, - ts_builtin_sym_end, [457] = 7, ACTIONS(519), 1, sym__block_quote_continuation, ACTIONS(522), 1, anon_sym_PIPE, - STATE(104), 1, + STATE(116), 1, sym_table_separator, - STATE(681), 1, + STATE(720), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1077), 1, + STATE(1109), 1, sym__block_quote_prefix, - ACTIONS(514), 9, + ACTIONS(512), 9, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, @@ -12890,7 +13206,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(512), 29, + ACTIONS(517), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -12918,20 +13235,19 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_begin, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, sym__table_caption_begin, [515] = 7, ACTIONS(519), 1, sym__block_quote_continuation, ACTIONS(525), 1, anon_sym_PIPE, - STATE(91), 1, + STATE(130), 1, sym_table_separator, - STATE(681), 1, + STATE(720), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1073), 1, + STATE(1063), 1, sym__block_quote_prefix, - ACTIONS(514), 9, + ACTIONS(512), 9, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, @@ -12941,8 +13257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(512), 29, - sym__block_close, + ACTIONS(517), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -12971,12 +13286,13 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__table_caption_begin, + ts_builtin_sym_end, [573] = 4, - ACTIONS(488), 1, + ACTIONS(482), 1, sym__table_caption_begin, - STATE(244), 1, + STATE(192), 1, sym_table_caption, - ACTIONS(530), 10, + ACTIONS(528), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -12987,7 +13303,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(528), 29, + ACTIONS(530), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -13016,13 +13333,12 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, [623] = 4, - ACTIONS(494), 1, + ACTIONS(488), 1, sym__table_caption_begin, - STATE(224), 1, + STATE(249), 1, sym_table_caption, - ACTIONS(530), 10, + ACTIONS(528), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -13033,7 +13349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(528), 29, + ACTIONS(530), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -13064,11 +13380,11 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, sym__footnote_end, [673] = 4, - ACTIONS(482), 1, + ACTIONS(494), 1, sym__table_caption_begin, - STATE(185), 1, + STATE(269), 1, sym_table_caption, - ACTIONS(530), 10, + ACTIONS(528), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -13079,8 +13395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(528), 29, - sym__block_close, + ACTIONS(530), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -13109,10 +13424,11 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, + ts_builtin_sym_end, [723] = 3, ACTIONS(536), 1, sym__code_block_end, - ACTIONS(534), 10, + ACTIONS(532), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -13123,7 +13439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(532), 29, + ACTIONS(534), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -13152,11 +13468,11 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, + sym__footnote_end, [770] = 3, ACTIONS(542), 1, sym__div_end, - ACTIONS(540), 10, + ACTIONS(538), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -13167,7 +13483,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(538), 29, + ACTIONS(540), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -13196,8 +13513,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [817] = 2, + [817] = 3, + ACTIONS(548), 1, + sym__code_block_end, ACTIONS(544), 10, anon_sym_LBRACK, anon_sym_PIPE, @@ -13209,7 +13527,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(546), 30, + ACTIONS(546), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -13238,12 +13557,10 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, - sym__table_caption_begin, - [862] = 3, - ACTIONS(552), 1, - sym__div_end, - ACTIONS(548), 10, + [864] = 3, + ACTIONS(554), 1, + sym__code_block_end, + ACTIONS(550), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -13254,7 +13571,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(550), 29, + ACTIONS(552), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -13283,11 +13601,10 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, - [909] = 3, - ACTIONS(554), 1, + [911] = 3, + ACTIONS(560), 1, sym__code_block_end, - ACTIONS(534), 10, + ACTIONS(556), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -13298,7 +13615,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(532), 29, + ACTIONS(558), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -13327,11 +13645,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, - [956] = 3, - ACTIONS(556), 1, - sym__div_end, - ACTIONS(540), 10, + [958] = 2, + ACTIONS(562), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -13342,7 +13657,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(538), 29, + ACTIONS(564), 30, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -13371,11 +13687,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, - [1003] = 3, - ACTIONS(562), 1, - sym__eof_or_newline, - ACTIONS(560), 10, + sym__table_caption_begin, + [1003] = 2, + ACTIONS(566), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -13386,7 +13700,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(558), 29, + ACTIONS(568), 30, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -13415,9 +13730,11 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [1050] = 2, - ACTIONS(566), 10, + sym__table_caption_begin, + [1048] = 3, + ACTIONS(574), 1, + sym__div_end, + ACTIONS(570), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -13428,7 +13745,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(564), 30, + ACTIONS(572), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -13457,10 +13775,10 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__table_caption_begin, - ts_builtin_sym_end, - [1095] = 2, - ACTIONS(568), 10, + [1095] = 3, + ACTIONS(580), 1, + sym__code_block_end, + ACTIONS(576), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -13471,7 +13789,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(570), 30, + ACTIONS(578), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -13500,12 +13819,10 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, - sym__table_caption_begin, - [1140] = 3, - ACTIONS(576), 1, - sym__div_end, - ACTIONS(572), 10, + [1142] = 3, + ACTIONS(586), 1, + sym__code_block_end, + ACTIONS(582), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -13516,7 +13833,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(574), 29, + ACTIONS(584), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -13545,9 +13863,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, - [1187] = 2, - ACTIONS(580), 10, + [1189] = 2, + ACTIONS(588), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -13558,7 +13875,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(578), 30, + ACTIONS(590), 30, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -13588,9 +13906,8 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__table_caption_begin, - ts_builtin_sym_end, - [1232] = 2, - ACTIONS(544), 10, + [1234] = 2, + ACTIONS(592), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -13601,7 +13918,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(546), 30, + ACTIONS(594), 30, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -13631,9 +13949,10 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__table_caption_begin, - ts_builtin_sym_end, - [1277] = 2, - ACTIONS(568), 10, + [1279] = 3, + ACTIONS(600), 1, + sym__eof_or_newline, + ACTIONS(596), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -13644,7 +13963,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(570), 30, + ACTIONS(598), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -13673,12 +13993,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__table_caption_begin, - ts_builtin_sym_end, - [1322] = 3, - ACTIONS(582), 1, - sym__div_end, - ACTIONS(548), 10, + [1326] = 2, + ACTIONS(588), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -13689,7 +14005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(550), 29, + ACTIONS(590), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -13718,11 +14034,10 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, + sym__table_caption_begin, ts_builtin_sym_end, - [1369] = 3, - ACTIONS(584), 1, - sym__div_end, - ACTIONS(572), 10, + [1371] = 2, + ACTIONS(592), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -13733,7 +14048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(574), 29, + ACTIONS(594), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -13762,9 +14077,10 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, + sym__table_caption_begin, ts_builtin_sym_end, [1416] = 2, - ACTIONS(586), 10, + ACTIONS(602), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -13775,8 +14091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(588), 30, - sym__block_close, + ACTIONS(604), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -13805,11 +14120,12 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, + sym__footnote_end, sym__table_caption_begin, [1461] = 3, - ACTIONS(590), 1, + ACTIONS(606), 1, sym__eof_or_newline, - ACTIONS(560), 10, + ACTIONS(596), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -13820,7 +14136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(558), 29, + ACTIONS(598), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -13849,11 +14165,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, - [1508] = 3, - ACTIONS(596), 1, - sym__code_block_end, - ACTIONS(594), 10, + ts_builtin_sym_end, + [1508] = 2, + ACTIONS(562), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -13864,7 +14178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(592), 29, + ACTIONS(564), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -13893,9 +14207,12 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, + sym__table_caption_begin, ts_builtin_sym_end, - [1555] = 2, - ACTIONS(566), 10, + [1553] = 3, + ACTIONS(612), 1, + sym__div_end, + ACTIONS(608), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -13906,7 +14223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(564), 30, + ACTIONS(610), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -13936,11 +14253,10 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_end, - sym__table_caption_begin, [1600] = 3, - ACTIONS(600), 1, - sym__eof_or_newline, - ACTIONS(598), 10, + ACTIONS(614), 1, + sym__code_block_end, + ACTIONS(544), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -13951,7 +14267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(602), 29, + ACTIONS(546), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -13980,11 +14296,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, - [1647] = 3, - ACTIONS(604), 1, - sym__eof_or_newline, - ACTIONS(598), 10, + ts_builtin_sym_end, + [1647] = 2, + ACTIONS(616), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -13995,8 +14309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(602), 29, - sym__block_close, + ACTIONS(618), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -14025,8 +14338,10 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [1694] = 2, - ACTIONS(580), 10, + sym__footnote_end, + sym__table_caption_begin, + [1692] = 2, + ACTIONS(620), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -14037,7 +14352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(578), 30, + ACTIONS(622), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -14068,10 +14383,10 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, sym__footnote_end, sym__table_caption_begin, - [1739] = 3, - ACTIONS(606), 1, + [1737] = 3, + ACTIONS(628), 1, sym__div_end, - ACTIONS(540), 10, + ACTIONS(624), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -14082,8 +14397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(538), 29, - sym__block_close, + ACTIONS(626), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -14112,10 +14426,11 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [1786] = 3, - ACTIONS(612), 1, - sym__code_block_end, - ACTIONS(610), 10, + sym__footnote_end, + [1784] = 3, + ACTIONS(630), 1, + sym__div_end, + ACTIONS(538), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -14126,7 +14441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(608), 29, + ACTIONS(540), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -14155,11 +14470,11 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [1833] = 3, - ACTIONS(618), 1, + sym__footnote_end, + [1831] = 3, + ACTIONS(632), 1, sym__code_block_end, - ACTIONS(614), 10, + ACTIONS(550), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -14170,7 +14485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(616), 29, + ACTIONS(552), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -14199,11 +14514,11 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, - [1880] = 3, - ACTIONS(620), 1, + ts_builtin_sym_end, + [1878] = 3, + ACTIONS(634), 1, sym__code_block_end, - ACTIONS(534), 10, + ACTIONS(550), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -14214,8 +14529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(532), 29, - sym__block_close, + ACTIONS(552), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -14244,8 +14558,11 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [1927] = 2, - ACTIONS(544), 10, + sym__footnote_end, + [1925] = 3, + ACTIONS(636), 1, + sym__code_block_end, + ACTIONS(556), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -14256,8 +14573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(546), 30, - sym__block_close, + ACTIONS(558), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -14286,9 +14602,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__table_caption_begin, + sym__footnote_end, [1972] = 2, - ACTIONS(568), 10, + ACTIONS(562), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -14299,8 +14615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(570), 30, - sym__block_close, + ACTIONS(564), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -14329,9 +14644,10 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, + sym__footnote_end, sym__table_caption_begin, [2017] = 2, - ACTIONS(586), 10, + ACTIONS(566), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -14342,7 +14658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(588), 30, + ACTIONS(568), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -14374,9 +14690,9 @@ static const uint16_t ts_small_parse_table[] = { sym__footnote_end, sym__table_caption_begin, [2062] = 3, - ACTIONS(622), 1, + ACTIONS(638), 1, sym__div_end, - ACTIONS(548), 10, + ACTIONS(570), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -14387,8 +14703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(550), 29, - sym__block_close, + ACTIONS(572), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -14417,10 +14732,11 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, + sym__footnote_end, [2109] = 3, - ACTIONS(624), 1, - sym__div_end, - ACTIONS(572), 10, + ACTIONS(640), 1, + sym__code_block_end, + ACTIONS(576), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -14431,8 +14747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(574), 29, - sym__block_close, + ACTIONS(578), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -14461,8 +14776,11 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [2156] = 2, - ACTIONS(628), 10, + sym__footnote_end, + [2156] = 3, + ACTIONS(642), 1, + sym__code_block_end, + ACTIONS(582), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -14473,7 +14791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(626), 30, + ACTIONS(584), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -14502,12 +14820,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__table_caption_begin, - ts_builtin_sym_end, - [2201] = 3, - ACTIONS(630), 1, - sym__code_block_end, - ACTIONS(594), 10, + sym__footnote_end, + [2203] = 2, + ACTIONS(588), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -14518,8 +14833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(592), 29, - sym__block_close, + ACTIONS(590), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -14548,10 +14862,10 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [2248] = 3, - ACTIONS(632), 1, - sym__code_block_end, - ACTIONS(610), 10, + sym__footnote_end, + sym__table_caption_begin, + [2248] = 2, + ACTIONS(592), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -14562,8 +14876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(608), 29, - sym__block_close, + ACTIONS(594), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -14592,8 +14905,12 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [2295] = 2, - ACTIONS(628), 10, + sym__footnote_end, + sym__table_caption_begin, + [2293] = 3, + ACTIONS(644), 1, + sym__eof_or_newline, + ACTIONS(596), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -14604,8 +14921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(626), 30, - sym__block_close, + ACTIONS(598), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -14634,9 +14950,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__table_caption_begin, + sym__footnote_end, [2340] = 2, - ACTIONS(634), 10, + ACTIONS(566), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -14647,8 +14963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(636), 30, - sym__block_close, + ACTIONS(568), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -14678,10 +14993,11 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__table_caption_begin, + ts_builtin_sym_end, [2385] = 3, - ACTIONS(642), 1, - sym__code_block_end, - ACTIONS(638), 10, + ACTIONS(646), 1, + sym__div_end, + ACTIONS(608), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -14692,7 +15008,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(640), 29, + ACTIONS(610), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -14721,11 +15037,11 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, + ts_builtin_sym_end, [2432] = 3, ACTIONS(648), 1, - sym__div_end, - ACTIONS(644), 10, + sym__code_block_end, + ACTIONS(532), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -14736,8 +15052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(646), 29, - sym__block_close, + ACTIONS(534), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -14766,8 +15081,11 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [2479] = 2, - ACTIONS(634), 10, + ts_builtin_sym_end, + [2479] = 3, + ACTIONS(650), 1, + sym__code_block_end, + ACTIONS(556), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -14778,7 +15096,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(636), 30, + ACTIONS(558), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -14807,12 +15125,11 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__table_caption_begin, ts_builtin_sym_end, - [2524] = 3, - ACTIONS(650), 1, - sym__code_block_end, - ACTIONS(638), 10, + [2526] = 3, + ACTIONS(652), 1, + sym__div_end, + ACTIONS(570), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -14823,8 +15140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(640), 29, - sym__block_close, + ACTIONS(572), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -14853,10 +15169,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [2571] = 3, - ACTIONS(652), 1, - sym__div_end, - ACTIONS(644), 10, + ts_builtin_sym_end, + [2573] = 2, + ACTIONS(602), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -14867,7 +15182,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(646), 29, + ACTIONS(604), 30, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -14896,9 +15212,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, + sym__table_caption_begin, [2618] = 2, - ACTIONS(634), 10, + ACTIONS(616), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -14909,7 +15225,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(636), 30, + ACTIONS(618), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -14938,12 +15254,10 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, sym__table_caption_begin, - [2663] = 3, - ACTIONS(654), 1, - sym__div_end, - ACTIONS(644), 10, + ts_builtin_sym_end, + [2663] = 2, + ACTIONS(620), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -14954,7 +15268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(646), 29, + ACTIONS(622), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -14983,11 +15297,12 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, + sym__table_caption_begin, ts_builtin_sym_end, - [2710] = 3, - ACTIONS(656), 1, + [2708] = 3, + ACTIONS(654), 1, sym__code_block_end, - ACTIONS(614), 10, + ACTIONS(576), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -14998,8 +15313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(616), 29, - sym__block_close, + ACTIONS(578), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -15028,10 +15342,11 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [2757] = 3, - ACTIONS(658), 1, - sym__eof_or_newline, - ACTIONS(560), 10, + ts_builtin_sym_end, + [2755] = 3, + ACTIONS(656), 1, + sym__code_block_end, + ACTIONS(582), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -15042,8 +15357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(558), 29, - sym__block_close, + ACTIONS(584), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -15072,8 +15386,11 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [2804] = 2, - ACTIONS(586), 10, + ts_builtin_sym_end, + [2802] = 3, + ACTIONS(658), 1, + sym__div_end, + ACTIONS(624), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -15084,7 +15401,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(588), 30, + ACTIONS(626), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -15113,10 +15430,11 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__table_caption_begin, ts_builtin_sym_end, - [2849] = 2, - ACTIONS(628), 10, + [2849] = 3, + ACTIONS(662), 1, + sym__eof_or_newline, + ACTIONS(660), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -15127,7 +15445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(626), 30, + ACTIONS(664), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -15157,9 +15475,10 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_end, - sym__table_caption_begin, - [2894] = 2, - ACTIONS(566), 10, + [2896] = 3, + ACTIONS(666), 1, + sym__div_end, + ACTIONS(608), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -15170,7 +15489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(564), 30, + ACTIONS(610), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -15200,11 +15519,10 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__table_caption_begin, - [2939] = 3, - ACTIONS(660), 1, + [2943] = 3, + ACTIONS(668), 1, sym__code_block_end, - ACTIONS(610), 10, + ACTIONS(532), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -15215,7 +15533,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(608), 29, + ACTIONS(534), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -15244,11 +15563,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, - [2986] = 3, - ACTIONS(662), 1, - sym__code_block_end, - ACTIONS(594), 10, + [2990] = 2, + ACTIONS(616), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -15259,7 +15575,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(592), 29, + ACTIONS(618), 30, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -15288,11 +15605,11 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, - [3033] = 3, - ACTIONS(664), 1, - sym__code_block_end, - ACTIONS(638), 10, + sym__table_caption_begin, + [3035] = 3, + ACTIONS(670), 1, + sym__div_end, + ACTIONS(538), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -15303,7 +15620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(640), 29, + ACTIONS(540), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -15333,10 +15650,8 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, ts_builtin_sym_end, - [3080] = 3, - ACTIONS(666), 1, - sym__code_block_end, - ACTIONS(614), 10, + [3082] = 2, + ACTIONS(620), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -15347,7 +15662,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(616), 29, + ACTIONS(622), 30, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -15376,9 +15692,11 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [3127] = 2, - ACTIONS(580), 10, + sym__table_caption_begin, + [3127] = 3, + ACTIONS(672), 1, + sym__eof_or_newline, + ACTIONS(660), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -15389,7 +15707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(578), 30, + ACTIONS(664), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -15419,9 +15737,10 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__table_caption_begin, - [3172] = 2, - ACTIONS(668), 10, + [3174] = 3, + ACTIONS(674), 1, + sym__div_end, + ACTIONS(624), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -15432,7 +15751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(670), 29, + ACTIONS(626), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -15462,8 +15781,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [3216] = 2, - ACTIONS(672), 10, + [3221] = 2, + ACTIONS(602), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -15474,8 +15793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(674), 29, - sym__block_close, + ACTIONS(604), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -15504,8 +15822,12 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [3260] = 2, - ACTIONS(678), 10, + sym__table_caption_begin, + ts_builtin_sym_end, + [3266] = 3, + ACTIONS(676), 1, + sym__code_block_end, + ACTIONS(544), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -15516,7 +15838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(676), 29, + ACTIONS(546), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -15545,9 +15867,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [3304] = 2, - ACTIONS(682), 10, + sym__footnote_end, + [3313] = 2, + ACTIONS(680), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -15558,7 +15880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(680), 29, + ACTIONS(678), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -15588,8 +15910,8 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, ts_builtin_sym_end, - [3348] = 2, - ACTIONS(686), 10, + [3357] = 2, + ACTIONS(684), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -15600,7 +15922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(684), 29, + ACTIONS(682), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -15630,7 +15952,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, ts_builtin_sym_end, - [3392] = 2, + [3401] = 2, ACTIONS(688), 10, anon_sym_LBRACK, anon_sym_PIPE, @@ -15642,8 +15964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(690), 29, - sym__block_close, + ACTIONS(686), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -15672,8 +15993,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [3436] = 2, - ACTIONS(682), 10, + ts_builtin_sym_end, + [3445] = 2, + ACTIONS(692), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -15684,8 +16006,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(680), 29, - sym__block_close, + ACTIONS(690), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -15714,8 +16035,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [3480] = 2, - ACTIONS(694), 10, + ts_builtin_sym_end, + [3489] = 2, + ACTIONS(696), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -15726,7 +16048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(692), 29, + ACTIONS(694), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -15756,8 +16078,8 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, ts_builtin_sym_end, - [3524] = 2, - ACTIONS(696), 10, + [3533] = 2, + ACTIONS(700), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -15769,7 +16091,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_PERCENT, ACTIONS(698), 29, - sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -15798,8 +16119,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [3568] = 2, - ACTIONS(700), 10, + ts_builtin_sym_end, + [3577] = 2, + ACTIONS(704), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -15811,7 +16133,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_PERCENT, ACTIONS(702), 29, - sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -15840,8 +16161,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [3612] = 2, - ACTIONS(706), 10, + ts_builtin_sym_end, + [3621] = 2, + ACTIONS(708), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -15852,7 +16174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(704), 29, + ACTIONS(706), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -15882,8 +16204,8 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, ts_builtin_sym_end, - [3656] = 2, - ACTIONS(708), 10, + [3665] = 2, + ACTIONS(712), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -15895,7 +16217,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_PERCENT, ACTIONS(710), 29, - sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -15924,8 +16245,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [3700] = 2, - ACTIONS(712), 10, + ts_builtin_sym_end, + [3709] = 2, + ACTIONS(716), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -15937,7 +16259,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_PERCENT, ACTIONS(714), 29, - sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -15966,8 +16287,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [3744] = 2, - ACTIONS(718), 10, + ts_builtin_sym_end, + [3753] = 2, + ACTIONS(720), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -15978,7 +16300,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(716), 29, + ACTIONS(718), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -16008,8 +16330,8 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, ts_builtin_sym_end, - [3788] = 2, - ACTIONS(686), 10, + [3797] = 2, + ACTIONS(724), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -16020,8 +16342,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(684), 29, - sym__block_close, + ACTIONS(722), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -16050,8 +16371,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [3832] = 2, - ACTIONS(720), 10, + ts_builtin_sym_end, + [3841] = 2, + ACTIONS(728), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -16062,8 +16384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(722), 29, - sym__block_close, + ACTIONS(726), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -16092,8 +16413,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [3876] = 2, - ACTIONS(726), 10, + ts_builtin_sym_end, + [3885] = 2, + ACTIONS(732), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -16104,7 +16426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(724), 29, + ACTIONS(730), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -16134,8 +16456,8 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, ts_builtin_sym_end, - [3920] = 2, - ACTIONS(728), 10, + [3929] = 2, + ACTIONS(736), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -16146,8 +16468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(730), 29, - sym__block_close, + ACTIONS(734), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -16176,8 +16497,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [3964] = 2, - ACTIONS(732), 10, + ts_builtin_sym_end, + [3973] = 2, + ACTIONS(740), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -16188,8 +16510,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(734), 29, - sym__block_close, + ACTIONS(738), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -16218,8 +16539,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [4008] = 2, - ACTIONS(738), 10, + ts_builtin_sym_end, + [4017] = 2, + ACTIONS(744), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -16230,7 +16552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(736), 29, + ACTIONS(742), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -16260,8 +16582,8 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, ts_builtin_sym_end, - [4052] = 2, - ACTIONS(720), 10, + [4061] = 2, + ACTIONS(748), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -16272,7 +16594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(722), 29, + ACTIONS(746), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -16302,8 +16624,8 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, ts_builtin_sym_end, - [4096] = 2, - ACTIONS(742), 10, + [4105] = 2, + ACTIONS(752), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -16314,7 +16636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(740), 29, + ACTIONS(750), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -16344,8 +16666,8 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, ts_builtin_sym_end, - [4140] = 2, - ACTIONS(744), 10, + [4149] = 2, + ACTIONS(756), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -16356,7 +16678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(746), 29, + ACTIONS(754), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -16385,9 +16707,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, - [4184] = 2, - ACTIONS(750), 10, + ts_builtin_sym_end, + [4193] = 2, + ACTIONS(760), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -16398,7 +16720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(748), 29, + ACTIONS(758), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -16428,8 +16750,8 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, ts_builtin_sym_end, - [4228] = 2, - ACTIONS(752), 10, + [4237] = 2, + ACTIONS(764), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -16440,7 +16762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(754), 29, + ACTIONS(762), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -16469,9 +16791,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, - [4272] = 2, - ACTIONS(758), 10, + ts_builtin_sym_end, + [4281] = 2, + ACTIONS(680), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -16482,7 +16804,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(756), 29, + ACTIONS(678), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -16511,9 +16834,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [4316] = 2, - ACTIONS(672), 10, + [4325] = 2, + ACTIONS(688), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -16524,7 +16846,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(674), 29, + ACTIONS(686), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -16553,9 +16876,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [4360] = 2, - ACTIONS(762), 10, + [4369] = 2, + ACTIONS(768), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -16566,7 +16888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(760), 29, + ACTIONS(766), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -16596,8 +16918,8 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, ts_builtin_sym_end, - [4404] = 2, - ACTIONS(764), 10, + [4413] = 2, + ACTIONS(770), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -16608,7 +16930,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(766), 29, + ACTIONS(772), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -16637,9 +16960,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, - [4448] = 2, - ACTIONS(770), 10, + [4457] = 2, + ACTIONS(774), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -16650,7 +16972,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(768), 29, + ACTIONS(776), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -16679,9 +17002,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [4492] = 2, - ACTIONS(638), 10, + [4501] = 2, + ACTIONS(778), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -16692,8 +17014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(640), 29, - sym__block_close, + ACTIONS(780), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -16722,8 +17043,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [4536] = 2, - ACTIONS(774), 10, + sym__footnote_end, + [4545] = 2, + ACTIONS(770), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -16763,9 +17085,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [4580] = 2, - ACTIONS(638), 10, + sym__footnote_end, + [4589] = 2, + ACTIONS(684), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -16776,7 +17098,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(640), 29, + ACTIONS(682), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -16805,9 +17128,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [4624] = 2, - ACTIONS(778), 10, + [4633] = 2, + ACTIONS(696), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -16818,7 +17140,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(776), 29, + ACTIONS(694), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -16847,9 +17170,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [4668] = 2, - ACTIONS(780), 10, + [4677] = 2, + ACTIONS(784), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -16861,7 +17183,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_PERCENT, ACTIONS(782), 29, - sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -16890,8 +17211,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [4712] = 2, - ACTIONS(668), 10, + ts_builtin_sym_end, + [4721] = 2, + ACTIONS(788), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -16902,7 +17224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(670), 29, + ACTIONS(786), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -16932,8 +17254,8 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, ts_builtin_sym_end, - [4756] = 2, - ACTIONS(764), 10, + [4765] = 2, + ACTIONS(712), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -16944,7 +17266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(766), 29, + ACTIONS(710), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -16974,8 +17296,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [4800] = 2, - ACTIONS(786), 10, + [4809] = 2, + ACTIONS(756), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -16986,7 +17308,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(784), 29, + ACTIONS(754), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -17015,9 +17338,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [4844] = 2, - ACTIONS(788), 10, + [4853] = 2, + ACTIONS(768), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -17028,7 +17350,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(790), 29, + ACTIONS(766), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -17057,9 +17380,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, - [4888] = 2, - ACTIONS(794), 10, + [4897] = 2, + ACTIONS(784), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -17070,7 +17392,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(792), 29, + ACTIONS(782), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -17099,9 +17422,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [4932] = 2, - ACTIONS(796), 10, + [4941] = 2, + ACTIONS(788), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -17112,7 +17434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(798), 29, + ACTIONS(786), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -17142,8 +17464,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [4976] = 2, - ACTIONS(802), 10, + [4985] = 2, + ACTIONS(790), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -17154,7 +17476,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(800), 29, + ACTIONS(792), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -17183,9 +17506,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [5020] = 2, - ACTIONS(678), 10, + [5029] = 2, + ACTIONS(794), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -17196,7 +17518,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(676), 29, + ACTIONS(796), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -17225,9 +17548,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, - [5064] = 2, - ACTIONS(806), 10, + [5073] = 2, + ACTIONS(798), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -17238,7 +17560,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(804), 29, + ACTIONS(800), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -17267,9 +17590,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [5108] = 2, - ACTIONS(808), 10, + [5117] = 2, + ACTIONS(802), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -17280,7 +17602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(810), 29, + ACTIONS(804), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -17310,8 +17632,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [5152] = 2, - ACTIONS(814), 10, + [5161] = 2, + ACTIONS(806), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -17322,7 +17644,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(812), 29, + ACTIONS(808), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -17351,9 +17674,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [5196] = 2, - ACTIONS(694), 10, + [5205] = 2, + ACTIONS(810), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -17364,7 +17686,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(692), 29, + ACTIONS(812), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -17393,9 +17716,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, - [5240] = 2, - ACTIONS(818), 10, + [5249] = 2, + ACTIONS(814), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -17407,6 +17729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_PERCENT, ACTIONS(816), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -17435,9 +17758,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [5284] = 2, - ACTIONS(706), 10, + [5293] = 2, + ACTIONS(818), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -17448,7 +17770,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(704), 29, + ACTIONS(820), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -17477,8 +17800,7 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, - [5328] = 2, + [5337] = 2, ACTIONS(822), 10, anon_sym_LBRACK, anon_sym_PIPE, @@ -17490,7 +17812,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(820), 29, + ACTIONS(824), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -17519,9 +17842,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [5372] = 2, - ACTIONS(718), 10, + [5381] = 2, + ACTIONS(826), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -17532,7 +17854,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(716), 29, + ACTIONS(828), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -17561,9 +17884,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, - [5416] = 2, - ACTIONS(824), 10, + [5425] = 2, + ACTIONS(830), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -17574,7 +17896,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(826), 29, + ACTIONS(832), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -17603,9 +17926,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, - [5460] = 2, - ACTIONS(828), 10, + [5469] = 2, + ACTIONS(834), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -17616,7 +17938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(830), 29, + ACTIONS(836), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -17646,8 +17968,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [5504] = 2, - ACTIONS(726), 10, + [5513] = 2, + ACTIONS(838), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -17658,7 +17980,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(724), 29, + ACTIONS(840), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -17687,9 +18010,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, - [5548] = 2, - ACTIONS(530), 10, + [5557] = 2, + ACTIONS(842), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -17700,7 +18022,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(528), 29, + ACTIONS(844), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -17729,9 +18052,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [5592] = 2, - ACTIONS(738), 10, + [5601] = 2, + ACTIONS(846), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -17742,7 +18064,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(736), 29, + ACTIONS(848), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -17771,9 +18094,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, - [5636] = 2, - ACTIONS(832), 10, + [5645] = 2, + ACTIONS(850), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -17784,7 +18106,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(834), 29, + ACTIONS(852), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -17814,8 +18136,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [5680] = 2, - ACTIONS(752), 10, + [5689] = 2, + ACTIONS(528), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -17826,7 +18148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(754), 29, + ACTIONS(530), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -17856,8 +18178,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [5724] = 2, - ACTIONS(742), 10, + [5733] = 2, + ACTIONS(790), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -17868,7 +18190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(740), 29, + ACTIONS(792), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -17897,9 +18219,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, - [5768] = 2, - ACTIONS(838), 10, + ts_builtin_sym_end, + [5777] = 2, + ACTIONS(794), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -17910,7 +18232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(836), 29, + ACTIONS(796), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -17940,8 +18262,8 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, ts_builtin_sym_end, - [5812] = 2, - ACTIONS(750), 10, + [5821] = 2, + ACTIONS(854), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -17952,7 +18274,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(748), 29, + ACTIONS(856), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -17981,9 +18304,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, - [5856] = 2, - ACTIONS(744), 10, + [5865] = 2, + ACTIONS(858), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -17994,7 +18316,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(746), 29, + ACTIONS(860), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -18023,9 +18346,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [5900] = 2, - ACTIONS(758), 10, + [5909] = 2, + ACTIONS(798), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -18036,7 +18358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(756), 29, + ACTIONS(800), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -18065,9 +18387,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, - [5944] = 2, - ACTIONS(762), 10, + ts_builtin_sym_end, + [5953] = 2, + ACTIONS(862), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -18078,7 +18400,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(760), 29, + ACTIONS(864), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -18107,9 +18430,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, - [5988] = 2, - ACTIONS(770), 10, + [5997] = 2, + ACTIONS(866), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -18120,7 +18442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(768), 29, + ACTIONS(868), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -18150,8 +18472,8 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_end, - [6032] = 2, - ACTIONS(780), 10, + [6041] = 2, + ACTIONS(802), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -18162,7 +18484,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(782), 29, + ACTIONS(804), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -18191,9 +18513,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, - [6076] = 2, - ACTIONS(840), 10, + ts_builtin_sym_end, + [6085] = 2, + ACTIONS(806), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -18204,8 +18526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(842), 29, - sym__block_close, + ACTIONS(808), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -18234,8 +18555,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [6120] = 2, - ACTIONS(774), 10, + ts_builtin_sym_end, + [6129] = 2, + ACTIONS(810), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -18246,7 +18568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(772), 29, + ACTIONS(812), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -18275,9 +18597,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, - [6164] = 2, - ACTIONS(780), 10, + ts_builtin_sym_end, + [6173] = 2, + ACTIONS(870), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -18288,7 +18610,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(782), 29, + ACTIONS(872), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -18317,9 +18640,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [6208] = 2, - ACTIONS(778), 10, + [6217] = 2, + ACTIONS(814), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -18330,7 +18652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(776), 29, + ACTIONS(816), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -18359,9 +18681,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, - [6252] = 2, - ACTIONS(668), 10, + ts_builtin_sym_end, + [6261] = 2, + ACTIONS(818), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -18372,7 +18694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(670), 29, + ACTIONS(820), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -18401,9 +18723,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, - [6296] = 2, - ACTIONS(786), 10, + ts_builtin_sym_end, + [6305] = 2, + ACTIONS(692), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -18414,7 +18736,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(784), 29, + ACTIONS(690), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -18443,9 +18766,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, - [6340] = 2, - ACTIONS(530), 10, + [6349] = 2, + ACTIONS(822), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -18456,8 +18778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(528), 29, - sym__block_close, + ACTIONS(824), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -18486,8 +18807,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [6384] = 2, - ACTIONS(638), 10, + ts_builtin_sym_end, + [6393] = 2, + ACTIONS(826), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -18498,7 +18820,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(640), 29, + ACTIONS(828), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -18527,9 +18849,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, - [6428] = 2, - ACTIONS(794), 10, + ts_builtin_sym_end, + [6437] = 2, + ACTIONS(830), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -18540,7 +18862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(792), 29, + ACTIONS(832), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -18569,9 +18891,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, - [6472] = 2, - ACTIONS(802), 10, + ts_builtin_sym_end, + [6481] = 2, + ACTIONS(834), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -18582,7 +18904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(800), 29, + ACTIONS(836), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -18611,9 +18933,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, - [6516] = 2, - ACTIONS(822), 10, + ts_builtin_sym_end, + [6525] = 2, + ACTIONS(838), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -18624,8 +18946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(820), 29, - sym__block_close, + ACTIONS(840), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -18654,8 +18975,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [6560] = 2, - ACTIONS(806), 10, + ts_builtin_sym_end, + [6569] = 2, + ACTIONS(700), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -18666,7 +18988,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(804), 29, + ACTIONS(698), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -18695,9 +19018,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, - [6604] = 2, - ACTIONS(846), 10, + [6613] = 2, + ACTIONS(842), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -18738,8 +19060,8 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, ts_builtin_sym_end, - [6648] = 2, - ACTIONS(814), 10, + [6657] = 2, + ACTIONS(708), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -18750,7 +19072,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(812), 29, + ACTIONS(706), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -18779,9 +19102,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, - [6692] = 2, - ACTIONS(818), 10, + [6701] = 2, + ACTIONS(846), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -18792,8 +19114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(816), 29, - sym__block_close, + ACTIONS(848), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -18822,8 +19143,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [6736] = 2, - ACTIONS(818), 10, + ts_builtin_sym_end, + [6745] = 2, + ACTIONS(850), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -18834,7 +19156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(816), 29, + ACTIONS(852), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -18863,9 +19185,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, - [6780] = 2, - ACTIONS(840), 10, + ts_builtin_sym_end, + [6789] = 2, + ACTIONS(870), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -18876,7 +19198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(842), 29, + ACTIONS(872), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -18906,8 +19228,8 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, ts_builtin_sym_end, - [6824] = 2, - ACTIONS(822), 10, + [6833] = 2, + ACTIONS(720), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -18918,7 +19240,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(820), 29, + ACTIONS(718), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -18947,9 +19270,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, - [6868] = 2, - ACTIONS(814), 10, + [6877] = 2, + ACTIONS(724), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -18960,7 +19282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(812), 29, + ACTIONS(722), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -18990,8 +19312,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [6912] = 2, - ACTIONS(530), 10, + [6921] = 2, + ACTIONS(732), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -19002,7 +19324,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(528), 29, + ACTIONS(730), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -19031,9 +19354,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, - [6956] = 2, - ACTIONS(806), 10, + [6965] = 2, + ACTIONS(736), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -19044,7 +19366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(804), 29, + ACTIONS(734), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -19074,8 +19396,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [7000] = 2, - ACTIONS(840), 10, + [7009] = 2, + ACTIONS(740), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -19086,7 +19408,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(842), 29, + ACTIONS(738), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -19115,9 +19438,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, - [7044] = 2, - ACTIONS(850), 10, + [7053] = 2, + ACTIONS(744), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -19128,7 +19450,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(848), 29, + ACTIONS(742), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -19157,9 +19480,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [7088] = 2, - ACTIONS(850), 10, + [7097] = 2, + ACTIONS(748), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -19170,7 +19492,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(848), 29, + ACTIONS(746), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -19199,9 +19522,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, - [7132] = 2, - ACTIONS(802), 10, + [7141] = 2, + ACTIONS(752), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -19212,7 +19534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(800), 29, + ACTIONS(750), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -19242,8 +19564,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [7176] = 2, - ACTIONS(752), 10, + [7185] = 2, + ACTIONS(760), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -19254,7 +19576,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(754), 29, + ACTIONS(758), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -19283,9 +19606,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [7220] = 2, - ACTIONS(794), 10, + [7229] = 2, + ACTIONS(764), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -19296,7 +19618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(792), 29, + ACTIONS(762), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -19326,8 +19648,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [7264] = 2, - ACTIONS(850), 10, + [7273] = 2, + ACTIONS(684), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -19338,8 +19660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(848), 29, - sym__block_close, + ACTIONS(682), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -19368,8 +19689,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [7308] = 2, - ACTIONS(720), 10, + sym__footnote_end, + [7317] = 2, + ACTIONS(696), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -19380,7 +19702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(722), 29, + ACTIONS(694), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -19410,8 +19732,8 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_end, - [7352] = 2, - ACTIONS(832), 10, + [7361] = 2, + ACTIONS(528), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -19422,7 +19744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(834), 29, + ACTIONS(530), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -19451,9 +19773,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, - [7396] = 2, - ACTIONS(808), 10, + ts_builtin_sym_end, + [7405] = 2, + ACTIONS(712), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -19464,7 +19786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(810), 29, + ACTIONS(710), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -19493,9 +19815,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [7440] = 2, - ACTIONS(686), 10, + sym__footnote_end, + [7449] = 2, + ACTIONS(756), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -19506,7 +19828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(684), 29, + ACTIONS(754), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -19536,8 +19858,8 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_end, - [7484] = 2, - ACTIONS(786), 10, + [7493] = 2, + ACTIONS(768), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -19548,8 +19870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(784), 29, - sym__block_close, + ACTIONS(766), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -19578,8 +19899,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [7528] = 2, - ACTIONS(682), 10, + sym__footnote_end, + [7537] = 2, + ACTIONS(784), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -19590,7 +19912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(680), 29, + ACTIONS(782), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -19620,8 +19942,8 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_end, - [7572] = 2, - ACTIONS(778), 10, + [7581] = 2, + ACTIONS(788), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -19632,8 +19954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(776), 29, - sym__block_close, + ACTIONS(786), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -19662,8 +19983,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [7616] = 2, - ACTIONS(788), 10, + sym__footnote_end, + [7625] = 2, + ACTIONS(790), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -19674,8 +19996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(790), 29, - sym__block_close, + ACTIONS(792), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -19704,8 +20025,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [7660] = 2, - ACTIONS(688), 10, + sym__footnote_end, + [7669] = 2, + ACTIONS(794), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -19716,7 +20038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(690), 29, + ACTIONS(796), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -19746,8 +20068,8 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_end, - [7704] = 2, - ACTIONS(774), 10, + [7713] = 2, + ACTIONS(798), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -19758,8 +20080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(772), 29, - sym__block_close, + ACTIONS(800), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -19788,8 +20109,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [7748] = 2, - ACTIONS(846), 10, + sym__footnote_end, + [7757] = 2, + ACTIONS(802), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -19800,8 +20122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(844), 29, - sym__block_close, + ACTIONS(804), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -19830,8 +20151,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [7792] = 2, - ACTIONS(770), 10, + sym__footnote_end, + [7801] = 2, + ACTIONS(806), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -19842,8 +20164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(768), 29, - sym__block_close, + ACTIONS(808), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -19872,8 +20193,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [7836] = 2, - ACTIONS(732), 10, + sym__footnote_end, + [7845] = 2, + ACTIONS(810), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -19884,7 +20206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(734), 29, + ACTIONS(812), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -19913,9 +20235,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [7880] = 2, - ACTIONS(762), 10, + sym__footnote_end, + [7889] = 2, + ACTIONS(814), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -19926,8 +20248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(760), 29, - sym__block_close, + ACTIONS(816), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -19956,8 +20277,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [7924] = 2, - ACTIONS(728), 10, + sym__footnote_end, + [7933] = 2, + ACTIONS(818), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -19968,7 +20290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(730), 29, + ACTIONS(820), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -19997,9 +20319,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [7968] = 2, - ACTIONS(696), 10, + sym__footnote_end, + [7977] = 2, + ACTIONS(822), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -20010,7 +20332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(698), 29, + ACTIONS(824), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -20040,8 +20362,8 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_end, - [8012] = 2, - ACTIONS(828), 10, + [8021] = 2, + ACTIONS(826), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -20052,7 +20374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(830), 29, + ACTIONS(828), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -20082,8 +20404,8 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_end, - [8056] = 2, - ACTIONS(712), 10, + [8065] = 2, + ACTIONS(830), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -20094,7 +20416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(714), 29, + ACTIONS(832), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -20123,9 +20445,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [8100] = 2, - ACTIONS(708), 10, + sym__footnote_end, + [8109] = 2, + ACTIONS(834), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -20136,7 +20458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(710), 29, + ACTIONS(836), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -20165,9 +20487,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [8144] = 2, - ACTIONS(700), 10, + sym__footnote_end, + [8153] = 2, + ACTIONS(838), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -20178,7 +20500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(702), 29, + ACTIONS(840), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -20207,9 +20529,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [8188] = 2, - ACTIONS(758), 10, + sym__footnote_end, + [8197] = 2, + ACTIONS(842), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -20220,8 +20542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(756), 29, - sym__block_close, + ACTIONS(844), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -20250,8 +20571,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [8232] = 2, - ACTIONS(832), 10, + sym__footnote_end, + [8241] = 2, + ACTIONS(846), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -20262,7 +20584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(834), 29, + ACTIONS(848), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -20291,9 +20613,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [8276] = 2, - ACTIONS(750), 10, + sym__footnote_end, + [8285] = 2, + ACTIONS(850), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -20304,8 +20626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(748), 29, - sym__block_close, + ACTIONS(852), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -20334,8 +20655,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [8320] = 2, - ACTIONS(700), 10, + sym__footnote_end, + [8329] = 2, + ACTIONS(528), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -20346,7 +20668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(702), 29, + ACTIONS(530), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -20376,8 +20698,8 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_end, - [8364] = 2, - ACTIONS(696), 10, + [8373] = 2, + ACTIONS(854), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -20388,7 +20710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(698), 29, + ACTIONS(856), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -20417,9 +20739,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [8408] = 2, - ACTIONS(796), 10, + sym__footnote_end, + [8417] = 2, + ACTIONS(858), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -20430,7 +20752,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(798), 29, + ACTIONS(860), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -20460,8 +20782,8 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_end, - [8452] = 2, - ACTIONS(708), 10, + [8461] = 2, + ACTIONS(862), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -20472,7 +20794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(710), 29, + ACTIONS(864), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -20502,8 +20824,8 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_end, - [8496] = 2, - ACTIONS(688), 10, + [8505] = 2, + ACTIONS(870), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -20514,7 +20836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(690), 29, + ACTIONS(872), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -20543,9 +20865,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [8540] = 2, - ACTIONS(854), 10, + sym__footnote_end, + [8549] = 2, + ACTIONS(692), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -20556,7 +20878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(852), 29, + ACTIONS(690), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -20585,9 +20907,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [8584] = 2, - ACTIONS(824), 10, + sym__footnote_end, + [8593] = 2, + ACTIONS(854), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -20598,8 +20920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(826), 29, - sym__block_close, + ACTIONS(856), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -20628,8 +20949,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [8628] = 2, - ACTIONS(712), 10, + ts_builtin_sym_end, + [8637] = 2, + ACTIONS(858), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -20640,7 +20962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(714), 29, + ACTIONS(860), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -20669,9 +20991,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, - [8672] = 2, - ACTIONS(764), 10, + ts_builtin_sym_end, + [8681] = 2, + ACTIONS(700), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -20682,7 +21004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(766), 29, + ACTIONS(698), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -20711,9 +21033,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [8716] = 2, - ACTIONS(742), 10, + sym__footnote_end, + [8725] = 2, + ACTIONS(708), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -20724,8 +21046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(740), 29, - sym__block_close, + ACTIONS(706), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -20754,8 +21075,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [8760] = 2, - ACTIONS(738), 10, + sym__footnote_end, + [8769] = 2, + ACTIONS(716), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -20766,8 +21088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(736), 29, - sym__block_close, + ACTIONS(714), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -20796,8 +21117,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [8804] = 2, - ACTIONS(744), 10, + sym__footnote_end, + [8813] = 2, + ACTIONS(720), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -20808,8 +21130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(746), 29, - sym__block_close, + ACTIONS(718), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -20838,8 +21159,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [8848] = 2, - ACTIONS(728), 10, + sym__footnote_end, + [8857] = 2, + ACTIONS(724), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -20850,7 +21172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(730), 29, + ACTIONS(722), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -20880,8 +21202,8 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_end, - [8892] = 2, - ACTIONS(726), 10, + [8901] = 2, + ACTIONS(774), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -20892,8 +21214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(724), 29, - sym__block_close, + ACTIONS(776), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -20922,8 +21243,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [8936] = 2, - ACTIONS(718), 10, + ts_builtin_sym_end, + [8945] = 2, + ACTIONS(732), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -20934,8 +21256,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(716), 29, - sym__block_close, + ACTIONS(730), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -20964,8 +21285,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [8980] = 2, - ACTIONS(706), 10, + sym__footnote_end, + [8989] = 2, + ACTIONS(736), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -20976,8 +21298,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(704), 29, - sym__block_close, + ACTIONS(734), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -21006,8 +21327,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [9024] = 2, - ACTIONS(694), 10, + sym__footnote_end, + [9033] = 2, + ACTIONS(740), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -21018,8 +21340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(692), 29, - sym__block_close, + ACTIONS(738), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -21048,8 +21369,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [9068] = 2, - ACTIONS(732), 10, + sym__footnote_end, + [9077] = 2, + ACTIONS(744), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -21060,7 +21382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(734), 29, + ACTIONS(742), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -21090,8 +21412,8 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_end, - [9112] = 2, - ACTIONS(678), 10, + [9121] = 2, + ACTIONS(748), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -21102,8 +21424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(676), 29, - sym__block_close, + ACTIONS(746), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -21132,8 +21453,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [9156] = 2, - ACTIONS(796), 10, + sym__footnote_end, + [9165] = 2, + ACTIONS(752), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -21144,7 +21466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(798), 29, + ACTIONS(750), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -21173,13 +21495,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [9200] = 4, - ACTIONS(860), 1, - sym__block_quote_continuation, - STATE(266), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(856), 10, + sym__footnote_end, + [9209] = 2, + ACTIONS(778), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -21190,8 +21508,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(858), 26, + ACTIONS(780), 29, sym__block_close, + sym__newline, + sym__heading_begin, sym__div_begin, sym__code_block_begin, sym_list_marker_dash, @@ -21215,10 +21535,11 @@ static const uint16_t ts_small_parse_table[] = { sym_list_marker_lower_roman_parens, sym_list_marker_upper_roman_parens, sym__block_quote_begin, + sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [9247] = 2, - ACTIONS(863), 10, + [9253] = 2, + ACTIONS(760), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -21229,7 +21550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(865), 28, + ACTIONS(758), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -21258,8 +21579,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [9290] = 2, - ACTIONS(443), 10, + sym__footnote_end, + [9297] = 2, + ACTIONS(764), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -21270,8 +21592,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(445), 27, - sym__block_close, + ACTIONS(762), 29, + sym__newline, + sym__heading_begin, sym__div_begin, sym__code_block_begin, sym_list_marker_dash, @@ -21298,195 +21621,142 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [9332] = 11, - ACTIONS(869), 1, - anon_sym_RBRACE, - ACTIONS(871), 1, - anon_sym_DOT, - ACTIONS(874), 1, - aux_sym_identifier_token1, - ACTIONS(877), 1, - sym__whitespace1, - ACTIONS(879), 1, - anon_sym_PERCENT, - ACTIONS(882), 1, - sym__id, - STATE(365), 1, - aux_sym_block_attribute_repeat1, - STATE(932), 1, - sym_key, - ACTIONS(884), 2, - sym__eof_or_newline, - sym__newline_inline, - STATE(433), 4, - sym_class, - sym_identifier, - sym_key_value, - sym__comment_no_newline, - ACTIONS(867), 7, + sym__footnote_end, + [9341] = 2, + ACTIONS(862), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - [9376] = 11, - ACTIONS(871), 1, anon_sym_DOT, - ACTIONS(874), 1, aux_sym_identifier_token1, - ACTIONS(877), 1, - sym__whitespace1, - ACTIONS(879), 1, - anon_sym_PERCENT, - ACTIONS(882), 1, - sym__id, - ACTIONS(886), 1, - anon_sym_RBRACE, - STATE(377), 1, - aux_sym_block_attribute_repeat1, - STATE(932), 1, - sym_key, - ACTIONS(884), 2, - sym__eof_or_newline, - sym__newline_inline, - STATE(433), 4, - sym_class, - sym_identifier, - sym_key_value, - sym__comment_no_newline, - ACTIONS(867), 7, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, anon_sym_POUND, - [9420] = 11, - ACTIONS(871), 1, - anon_sym_DOT, - ACTIONS(874), 1, - aux_sym_identifier_token1, - ACTIONS(877), 1, - sym__whitespace1, - ACTIONS(879), 1, anon_sym_PERCENT, - ACTIONS(882), 1, - sym__id, - ACTIONS(888), 1, - anon_sym_RBRACE, - STATE(364), 1, - aux_sym_block_attribute_repeat1, - STATE(932), 1, - sym_key, - ACTIONS(884), 2, - sym__eof_or_newline, - sym__newline_inline, - STATE(433), 4, - sym_class, - sym_identifier, - sym_key_value, - sym__comment_no_newline, - ACTIONS(867), 7, + ACTIONS(864), 29, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + ts_builtin_sym_end, + [9385] = 2, + ACTIONS(866), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - [9464] = 11, - ACTIONS(871), 1, anon_sym_DOT, - ACTIONS(874), 1, aux_sym_identifier_token1, - ACTIONS(877), 1, - sym__whitespace1, - ACTIONS(879), 1, - anon_sym_PERCENT, - ACTIONS(882), 1, - sym__id, - ACTIONS(890), 1, - anon_sym_RBRACE, - STATE(370), 1, - aux_sym_block_attribute_repeat1, - STATE(932), 1, - sym_key, - ACTIONS(884), 2, - sym__eof_or_newline, - sym__newline_inline, - STATE(433), 4, - sym_class, - sym_identifier, - sym_key_value, - sym__comment_no_newline, - ACTIONS(867), 7, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, anon_sym_POUND, - [9508] = 11, - ACTIONS(871), 1, - anon_sym_DOT, - ACTIONS(874), 1, - aux_sym_identifier_token1, - ACTIONS(877), 1, - sym__whitespace1, - ACTIONS(879), 1, anon_sym_PERCENT, - ACTIONS(882), 1, - sym__id, - ACTIONS(892), 1, - anon_sym_RBRACE, - STATE(368), 1, - aux_sym_block_attribute_repeat1, - STATE(932), 1, - sym_key, - ACTIONS(884), 2, - sym__eof_or_newline, - sym__newline_inline, - STATE(433), 4, - sym_class, - sym_identifier, - sym_key_value, - sym__comment_no_newline, - ACTIONS(867), 7, + ACTIONS(868), 29, + sym__block_close, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + [9429] = 2, + ACTIONS(716), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, anon_sym_POUND, - [9552] = 11, - ACTIONS(31), 1, - sym__list_marker_task_begin, - ACTIONS(894), 1, - anon_sym_PIPE, - ACTIONS(896), 1, - anon_sym_LBRACK_CARET, - ACTIONS(898), 1, + anon_sym_PERCENT, + ACTIONS(714), 29, sym__block_close, - ACTIONS(900), 1, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, sym_list_marker_dash, - ACTIONS(902), 1, sym_list_marker_star, - ACTIONS(904), 1, sym_list_marker_plus, - STATE(39), 1, - sym_list_marker_task, - STATE(636), 1, - sym__inline, - STATE(355), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(13), 8, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + [9473] = 4, + ACTIONS(878), 1, + sym__block_quote_continuation, + STATE(272), 1, + aux_sym__block_quote_prefix_repeat1, + ACTIONS(874), 10, anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -21494,30 +21764,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [9594] = 11, - ACTIONS(31), 1, - sym__list_marker_task_begin, - ACTIONS(894), 1, - anon_sym_PIPE, - ACTIONS(896), 1, - anon_sym_LBRACK_CARET, - ACTIONS(900), 1, + ACTIONS(876), 26, + sym__block_close, + sym__div_begin, + sym__code_block_begin, sym_list_marker_dash, - ACTIONS(902), 1, sym_list_marker_star, - ACTIONS(904), 1, sym_list_marker_plus, - ACTIONS(906), 1, - sym__block_close, - STATE(39), 1, - sym_list_marker_task, - STATE(636), 1, - sym__inline, - STATE(355), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(13), 8, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__thematic_break_dash, + sym__thematic_break_star, + [9520] = 2, + ACTIONS(881), 10, anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -21525,30 +21803,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [9636] = 11, - ACTIONS(31), 1, - sym__list_marker_task_begin, - ACTIONS(894), 1, - anon_sym_PIPE, - ACTIONS(896), 1, - anon_sym_LBRACK_CARET, - ACTIONS(900), 1, + ACTIONS(883), 28, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, sym_list_marker_dash, - ACTIONS(902), 1, sym_list_marker_star, - ACTIONS(904), 1, sym_list_marker_plus, - ACTIONS(908), 1, - sym__block_close, - STATE(39), 1, - sym_list_marker_task, - STATE(636), 1, - sym__inline, - STATE(355), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(13), 8, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + [9563] = 2, + ACTIONS(439), 10, anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -21556,57 +21844,224 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [9678] = 11, - ACTIONS(31), 1, + ACTIONS(441), 27, + sym__block_close, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, sym__list_marker_task_begin, - ACTIONS(894), 1, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + [9605] = 12, + ACTIONS(887), 1, + anon_sym_RBRACE, + ACTIONS(889), 1, + anon_sym_DOT, + ACTIONS(892), 1, + aux_sym_identifier_token1, + ACTIONS(895), 1, + sym__whitespace1, + ACTIONS(897), 1, + anon_sym_PERCENT, + ACTIONS(900), 1, + sym__id, + STATE(382), 1, + aux_sym_block_attribute_repeat1, + STATE(477), 1, + sym__comment_no_newline, + STATE(1000), 1, + sym_key, + ACTIONS(902), 2, + sym__eof_or_newline, + sym__newline_inline, + STATE(432), 3, + sym_class, + sym_identifier, + sym_key_value, + ACTIONS(885), 7, + anon_sym_LBRACK, anon_sym_PIPE, - ACTIONS(896), 1, anon_sym_LBRACK_CARET, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + anon_sym_POUND, + [9651] = 12, + ACTIONS(889), 1, + anon_sym_DOT, + ACTIONS(892), 1, + aux_sym_identifier_token1, + ACTIONS(895), 1, + sym__whitespace1, + ACTIONS(897), 1, + anon_sym_PERCENT, ACTIONS(900), 1, - sym_list_marker_dash, - ACTIONS(902), 1, - sym_list_marker_star, + sym__id, ACTIONS(904), 1, - sym_list_marker_plus, - ACTIONS(910), 1, - sym__block_close, - STATE(39), 1, - sym_list_marker_task, - STATE(636), 1, - sym__inline, - STATE(355), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(13), 8, + anon_sym_RBRACE, + STATE(375), 1, + aux_sym_block_attribute_repeat1, + STATE(477), 1, + sym__comment_no_newline, + STATE(1000), 1, + sym_key, + ACTIONS(902), 2, + sym__eof_or_newline, + sym__newline_inline, + STATE(432), 3, + sym_class, + sym_identifier, + sym_key_value, + ACTIONS(885), 7, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACK_CARET, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + anon_sym_POUND, + [9697] = 12, + ACTIONS(889), 1, + anon_sym_DOT, + ACTIONS(892), 1, + aux_sym_identifier_token1, + ACTIONS(895), 1, + sym__whitespace1, + ACTIONS(897), 1, + anon_sym_PERCENT, + ACTIONS(900), 1, + sym__id, + ACTIONS(906), 1, + anon_sym_RBRACE, + STATE(381), 1, + aux_sym_block_attribute_repeat1, + STATE(477), 1, + sym__comment_no_newline, + STATE(1000), 1, + sym_key, + ACTIONS(902), 2, + sym__eof_or_newline, + sym__newline_inline, + STATE(432), 3, + sym_class, + sym_identifier, + sym_key_value, + ACTIONS(885), 7, anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + anon_sym_POUND, + [9743] = 12, + ACTIONS(889), 1, anon_sym_DOT, + ACTIONS(892), 1, aux_sym_identifier_token1, + ACTIONS(895), 1, + sym__whitespace1, + ACTIONS(897), 1, + anon_sym_PERCENT, + ACTIONS(900), 1, + sym__id, + ACTIONS(908), 1, + anon_sym_RBRACE, + STATE(379), 1, + aux_sym_block_attribute_repeat1, + STATE(477), 1, + sym__comment_no_newline, + STATE(1000), 1, + sym_key, + ACTIONS(902), 2, + sym__eof_or_newline, + sym__newline_inline, + STATE(432), 3, + sym_class, + sym_identifier, + sym_key_value, + ACTIONS(885), 7, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACK_CARET, + anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, anon_sym_POUND, + [9789] = 12, + ACTIONS(889), 1, + anon_sym_DOT, + ACTIONS(892), 1, + aux_sym_identifier_token1, + ACTIONS(895), 1, + sym__whitespace1, + ACTIONS(897), 1, anon_sym_PERCENT, - [9720] = 11, + ACTIONS(900), 1, + sym__id, + ACTIONS(910), 1, + anon_sym_RBRACE, + STATE(377), 1, + aux_sym_block_attribute_repeat1, + STATE(477), 1, + sym__comment_no_newline, + STATE(1000), 1, + sym_key, + ACTIONS(902), 2, + sym__eof_or_newline, + sym__newline_inline, + STATE(432), 3, + sym_class, + sym_identifier, + sym_key_value, + ACTIONS(885), 7, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACK_CARET, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + anon_sym_POUND, + [9835] = 11, ACTIONS(31), 1, sym__list_marker_task_begin, - ACTIONS(894), 1, + ACTIONS(912), 1, anon_sym_PIPE, - ACTIONS(896), 1, + ACTIONS(914), 1, anon_sym_LBRACK_CARET, - ACTIONS(900), 1, + ACTIONS(916), 1, + sym__block_close, + ACTIONS(918), 1, sym_list_marker_dash, - ACTIONS(902), 1, + ACTIONS(920), 1, sym_list_marker_star, - ACTIONS(904), 1, + ACTIONS(922), 1, sym_list_marker_plus, - ACTIONS(912), 1, - sym__block_close, - STATE(39), 1, + STATE(34), 1, sym_list_marker_task, - STATE(636), 1, + STATE(672), 1, sym__inline, - STATE(355), 2, + STATE(358), 2, sym__symbol_fallback, aux_sym__inline_repeat1, ACTIONS(13), 8, @@ -21618,26 +22073,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [9762] = 11, + [9877] = 11, ACTIONS(31), 1, sym__list_marker_task_begin, - ACTIONS(894), 1, + ACTIONS(912), 1, anon_sym_PIPE, - ACTIONS(896), 1, + ACTIONS(914), 1, anon_sym_LBRACK_CARET, - ACTIONS(900), 1, + ACTIONS(918), 1, sym_list_marker_dash, - ACTIONS(902), 1, + ACTIONS(920), 1, sym_list_marker_star, - ACTIONS(904), 1, + ACTIONS(922), 1, sym_list_marker_plus, - ACTIONS(914), 1, + ACTIONS(924), 1, sym__block_close, - STATE(39), 1, + STATE(34), 1, sym_list_marker_task, - STATE(636), 1, + STATE(672), 1, sym__inline, - STATE(355), 2, + STATE(358), 2, sym__symbol_fallback, aux_sym__inline_repeat1, ACTIONS(13), 8, @@ -21649,26 +22104,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [9804] = 11, + [9919] = 11, ACTIONS(31), 1, sym__list_marker_task_begin, - ACTIONS(894), 1, + ACTIONS(912), 1, anon_sym_PIPE, - ACTIONS(896), 1, + ACTIONS(914), 1, anon_sym_LBRACK_CARET, - ACTIONS(900), 1, + ACTIONS(918), 1, sym_list_marker_dash, - ACTIONS(902), 1, + ACTIONS(920), 1, sym_list_marker_star, - ACTIONS(904), 1, + ACTIONS(922), 1, sym_list_marker_plus, - ACTIONS(916), 1, + ACTIONS(926), 1, sym__block_close, - STATE(39), 1, + STATE(34), 1, sym_list_marker_task, - STATE(636), 1, + STATE(672), 1, sym__inline, - STATE(355), 2, + STATE(358), 2, sym__symbol_fallback, aux_sym__inline_repeat1, ACTIONS(13), 8, @@ -21680,26 +22135,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [9846] = 11, + [9961] = 11, ACTIONS(31), 1, sym__list_marker_task_begin, - ACTIONS(894), 1, + ACTIONS(912), 1, anon_sym_PIPE, - ACTIONS(896), 1, + ACTIONS(914), 1, anon_sym_LBRACK_CARET, - ACTIONS(900), 1, + ACTIONS(918), 1, sym_list_marker_dash, - ACTIONS(902), 1, + ACTIONS(920), 1, sym_list_marker_star, - ACTIONS(904), 1, + ACTIONS(922), 1, sym_list_marker_plus, - ACTIONS(918), 1, + ACTIONS(928), 1, sym__block_close, - STATE(39), 1, + STATE(34), 1, sym_list_marker_task, - STATE(636), 1, + STATE(672), 1, sym__inline, - STATE(355), 2, + STATE(358), 2, sym__symbol_fallback, aux_sym__inline_repeat1, ACTIONS(13), 8, @@ -21711,26 +22166,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [9888] = 11, + [10003] = 11, ACTIONS(31), 1, sym__list_marker_task_begin, - ACTIONS(894), 1, + ACTIONS(912), 1, anon_sym_PIPE, - ACTIONS(896), 1, + ACTIONS(914), 1, anon_sym_LBRACK_CARET, - ACTIONS(900), 1, + ACTIONS(918), 1, sym_list_marker_dash, - ACTIONS(902), 1, + ACTIONS(920), 1, sym_list_marker_star, - ACTIONS(904), 1, + ACTIONS(922), 1, sym_list_marker_plus, - ACTIONS(920), 1, + ACTIONS(930), 1, sym__block_close, - STATE(39), 1, + STATE(34), 1, sym_list_marker_task, - STATE(636), 1, + STATE(672), 1, sym__inline, - STATE(355), 2, + STATE(358), 2, sym__symbol_fallback, aux_sym__inline_repeat1, ACTIONS(13), 8, @@ -21742,26 +22197,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [9930] = 11, + [10045] = 11, ACTIONS(31), 1, sym__list_marker_task_begin, - ACTIONS(894), 1, + ACTIONS(912), 1, anon_sym_PIPE, - ACTIONS(896), 1, + ACTIONS(914), 1, anon_sym_LBRACK_CARET, - ACTIONS(900), 1, + ACTIONS(918), 1, sym_list_marker_dash, - ACTIONS(902), 1, + ACTIONS(920), 1, sym_list_marker_star, - ACTIONS(904), 1, - sym_list_marker_plus, ACTIONS(922), 1, + sym_list_marker_plus, + ACTIONS(932), 1, sym__block_close, - STATE(39), 1, + STATE(34), 1, sym_list_marker_task, - STATE(636), 1, + STATE(672), 1, sym__inline, - STATE(355), 2, + STATE(358), 2, sym__symbol_fallback, aux_sym__inline_repeat1, ACTIONS(13), 8, @@ -21773,24 +22228,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [9972] = 10, + [10087] = 11, ACTIONS(31), 1, sym__list_marker_task_begin, - ACTIONS(896), 1, + ACTIONS(912), 1, + anon_sym_PIPE, + ACTIONS(914), 1, anon_sym_LBRACK_CARET, - ACTIONS(900), 1, + ACTIONS(918), 1, sym_list_marker_dash, - ACTIONS(902), 1, + ACTIONS(920), 1, sym_list_marker_star, - ACTIONS(904), 1, + ACTIONS(922), 1, sym_list_marker_plus, - ACTIONS(924), 1, - anon_sym_PIPE, - STATE(39), 1, + ACTIONS(934), 1, + sym__block_close, + STATE(34), 1, sym_list_marker_task, - STATE(636), 1, + STATE(672), 1, sym__inline, - STATE(355), 2, + STATE(358), 2, sym__symbol_fallback, aux_sym__inline_repeat1, ACTIONS(13), 8, @@ -21802,24 +22259,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [10011] = 10, + [10129] = 11, ACTIONS(31), 1, sym__list_marker_task_begin, - ACTIONS(896), 1, + ACTIONS(912), 1, + anon_sym_PIPE, + ACTIONS(914), 1, anon_sym_LBRACK_CARET, - ACTIONS(900), 1, + ACTIONS(918), 1, sym_list_marker_dash, - ACTIONS(902), 1, + ACTIONS(920), 1, sym_list_marker_star, - ACTIONS(904), 1, + ACTIONS(922), 1, sym_list_marker_plus, - ACTIONS(926), 1, - anon_sym_PIPE, - STATE(39), 1, + ACTIONS(936), 1, + sym__block_close, + STATE(34), 1, sym_list_marker_task, - STATE(636), 1, + STATE(672), 1, sym__inline, - STATE(355), 2, + STATE(358), 2, sym__symbol_fallback, aux_sym__inline_repeat1, ACTIONS(13), 8, @@ -21831,24 +22290,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [10050] = 10, + [10171] = 11, ACTIONS(31), 1, sym__list_marker_task_begin, - ACTIONS(896), 1, + ACTIONS(912), 1, + anon_sym_PIPE, + ACTIONS(914), 1, anon_sym_LBRACK_CARET, - ACTIONS(900), 1, + ACTIONS(918), 1, sym_list_marker_dash, - ACTIONS(902), 1, + ACTIONS(920), 1, sym_list_marker_star, - ACTIONS(904), 1, + ACTIONS(922), 1, sym_list_marker_plus, - ACTIONS(928), 1, - anon_sym_PIPE, - STATE(39), 1, + ACTIONS(938), 1, + sym__block_close, + STATE(34), 1, sym_list_marker_task, - STATE(636), 1, + STATE(672), 1, sym__inline, - STATE(355), 2, + STATE(358), 2, sym__symbol_fallback, aux_sym__inline_repeat1, ACTIONS(13), 8, @@ -21860,24 +22321,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [10089] = 10, + [10213] = 11, ACTIONS(31), 1, sym__list_marker_task_begin, - ACTIONS(894), 1, + ACTIONS(912), 1, anon_sym_PIPE, - ACTIONS(896), 1, + ACTIONS(914), 1, anon_sym_LBRACK_CARET, - ACTIONS(900), 1, + ACTIONS(918), 1, sym_list_marker_dash, - ACTIONS(902), 1, + ACTIONS(920), 1, sym_list_marker_star, - ACTIONS(904), 1, + ACTIONS(922), 1, sym_list_marker_plus, - STATE(39), 1, + ACTIONS(940), 1, + sym__block_close, + STATE(34), 1, sym_list_marker_task, - STATE(636), 1, + STATE(672), 1, sym__inline, - STATE(355), 2, + STATE(358), 2, sym__symbol_fallback, aux_sym__inline_repeat1, ACTIONS(13), 8, @@ -21889,24 +22352,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [10128] = 10, + [10255] = 9, + ACTIONS(914), 1, + anon_sym_LBRACK_CARET, + ACTIONS(942), 1, + sym__block_quote_continuation, + STATE(364), 1, + sym__block_quote_prefix, + STATE(374), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(695), 1, + sym__inline, + STATE(849), 1, + sym__paragraph_content, + STATE(930), 1, + sym__paragraph_inline_content, + STATE(358), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(13), 9, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + anon_sym_POUND, + anon_sym_PERCENT, + [10292] = 10, ACTIONS(31), 1, sym__list_marker_task_begin, - ACTIONS(896), 1, + ACTIONS(914), 1, anon_sym_LBRACK_CARET, - ACTIONS(900), 1, + ACTIONS(918), 1, sym_list_marker_dash, - ACTIONS(902), 1, + ACTIONS(920), 1, sym_list_marker_star, - ACTIONS(904), 1, + ACTIONS(922), 1, sym_list_marker_plus, - ACTIONS(930), 1, + ACTIONS(944), 1, anon_sym_PIPE, - STATE(39), 1, + STATE(34), 1, sym_list_marker_task, - STATE(636), 1, + STATE(672), 1, sym__inline, - STATE(355), 2, + STATE(358), 2, sym__symbol_fallback, aux_sym__inline_repeat1, ACTIONS(13), 8, @@ -21918,24 +22409,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [10167] = 7, - ACTIONS(935), 1, - sym_table_cell_alignment, - ACTIONS(937), 1, + [10331] = 10, + ACTIONS(31), 1, + sym__list_marker_task_begin, + ACTIONS(912), 1, + anon_sym_PIPE, + ACTIONS(914), 1, anon_sym_LBRACK_CARET, - STATE(798), 1, - sym_table_cell, - STATE(937), 1, + ACTIONS(918), 1, + sym_list_marker_dash, + ACTIONS(920), 1, + sym_list_marker_star, + ACTIONS(922), 1, + sym_list_marker_plus, + STATE(34), 1, + sym_list_marker_task, + STATE(672), 1, sym__inline, - ACTIONS(884), 2, - sym__eof_or_newline, - sym__newline_inline, - STATE(376), 2, + STATE(358), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(932), 9, + ACTIONS(13), 8, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -21943,25 +22438,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [10199] = 8, - ACTIONS(942), 1, - anon_sym_NULL, - ACTIONS(944), 1, + [10370] = 10, + ACTIONS(31), 1, + sym__list_marker_task_begin, + ACTIONS(914), 1, anon_sym_LBRACK_CARET, + ACTIONS(918), 1, + sym_list_marker_dash, + ACTIONS(920), 1, + sym_list_marker_star, + ACTIONS(922), 1, + sym_list_marker_plus, ACTIONS(946), 1, - sym__table_caption_end, - STATE(293), 1, - aux_sym_table_caption_repeat1, - STATE(366), 1, - sym__inline_line, - STATE(1078), 1, + anon_sym_PIPE, + STATE(34), 1, + sym_list_marker_task, + STATE(672), 1, sym__inline, - STATE(360), 2, + STATE(358), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(940), 9, + ACTIONS(13), 8, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -21969,21 +22467,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [10233] = 4, - ACTIONS(948), 1, - sym__block_quote_continuation, - STATE(291), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(858), 5, - sym__block_close, + [10409] = 10, + ACTIONS(31), 1, + sym__list_marker_task_begin, + ACTIONS(914), 1, + anon_sym_LBRACK_CARET, + ACTIONS(918), 1, sym_list_marker_dash, + ACTIONS(920), 1, sym_list_marker_star, + ACTIONS(922), 1, sym_list_marker_plus, - sym__list_marker_task_begin, - ACTIONS(856), 10, - anon_sym_LBRACK, + ACTIONS(948), 1, anon_sym_PIPE, - anon_sym_LBRACK_CARET, + STATE(34), 1, + sym_list_marker_task, + STATE(672), 1, + sym__inline, + STATE(358), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(13), 8, + anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -21991,25 +22496,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [10259] = 8, - ACTIONS(944), 1, + [10448] = 10, + ACTIONS(31), 1, + sym__list_marker_task_begin, + ACTIONS(914), 1, anon_sym_LBRACK_CARET, - ACTIONS(951), 1, - anon_sym_NULL, - ACTIONS(953), 1, - sym__table_caption_end, - STATE(293), 1, - aux_sym_table_caption_repeat1, - STATE(366), 1, - sym__inline_line, - STATE(1078), 1, + ACTIONS(918), 1, + sym_list_marker_dash, + ACTIONS(920), 1, + sym_list_marker_star, + ACTIONS(922), 1, + sym_list_marker_plus, + ACTIONS(950), 1, + anon_sym_PIPE, + STATE(34), 1, + sym_list_marker_task, + STATE(672), 1, sym__inline, - STATE(360), 2, + STATE(358), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(940), 9, + ACTIONS(13), 8, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -22017,23 +22525,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [10293] = 8, - ACTIONS(958), 1, + [10487] = 8, + ACTIONS(954), 1, anon_sym_NULL, - ACTIONS(960), 1, + ACTIONS(956), 1, anon_sym_LBRACK_CARET, - ACTIONS(963), 1, + ACTIONS(958), 1, sym__table_caption_end, - STATE(293), 1, + STATE(311), 1, aux_sym_table_caption_repeat1, - STATE(366), 1, + STATE(376), 1, sym__inline_line, - STATE(1078), 1, + STATE(1001), 1, sym__inline, - STATE(360), 2, + STATE(362), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(955), 9, + ACTIONS(952), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -22043,23 +22551,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [10327] = 8, - ACTIONS(944), 1, + [10521] = 4, + ACTIONS(960), 1, + sym__block_quote_continuation, + STATE(297), 1, + aux_sym__block_quote_prefix_repeat1, + ACTIONS(876), 5, + sym__block_close, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + ACTIONS(874), 10, + anon_sym_LBRACK, + anon_sym_PIPE, anon_sym_LBRACK_CARET, - ACTIONS(965), 1, + anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + anon_sym_POUND, + anon_sym_PERCENT, + [10547] = 8, + ACTIONS(956), 1, + anon_sym_LBRACK_CARET, + ACTIONS(963), 1, anon_sym_NULL, - ACTIONS(967), 1, + ACTIONS(965), 1, sym__table_caption_end, - STATE(293), 1, + STATE(311), 1, aux_sym_table_caption_repeat1, - STATE(366), 1, + STATE(376), 1, sym__inline_line, - STATE(1078), 1, + STATE(1001), 1, sym__inline, - STATE(360), 2, + STATE(362), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(940), 9, + ACTIONS(952), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -22069,23 +22599,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [10361] = 8, - ACTIONS(944), 1, + [10581] = 8, + ACTIONS(956), 1, anon_sym_LBRACK_CARET, - ACTIONS(969), 1, + ACTIONS(967), 1, anon_sym_NULL, - ACTIONS(971), 1, + ACTIONS(969), 1, sym__table_caption_end, - STATE(293), 1, + STATE(311), 1, aux_sym_table_caption_repeat1, - STATE(366), 1, + STATE(376), 1, sym__inline_line, - STATE(1078), 1, + STATE(1001), 1, sym__inline, - STATE(360), 2, + STATE(362), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(940), 9, + ACTIONS(952), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -22095,22 +22625,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [10395] = 7, - ACTIONS(937), 1, - anon_sym_LBRACK_CARET, - ACTIONS(973), 1, + [10615] = 7, + ACTIONS(974), 1, sym_table_cell_alignment, - STATE(854), 1, + ACTIONS(976), 1, + anon_sym_LBRACK_CARET, + STATE(759), 1, sym_table_cell, - STATE(937), 1, + STATE(941), 1, sym__inline, - ACTIONS(884), 2, + ACTIONS(902), 2, sym__eof_or_newline, sym__newline_inline, - STATE(376), 2, + STATE(372), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(932), 9, + ACTIONS(971), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -22120,22 +22650,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [10427] = 7, - ACTIONS(937), 1, + [10647] = 7, + ACTIONS(976), 1, anon_sym_LBRACK_CARET, - ACTIONS(975), 1, + ACTIONS(979), 1, sym_table_cell_alignment, - STATE(745), 1, + STATE(781), 1, sym_table_cell, - STATE(937), 1, + STATE(941), 1, sym__inline, - ACTIONS(884), 2, + ACTIONS(902), 2, sym__eof_or_newline, sym__newline_inline, - STATE(376), 2, + STATE(372), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(932), 9, + ACTIONS(971), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -22145,22 +22675,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [10459] = 7, - ACTIONS(937), 1, + [10679] = 8, + ACTIONS(956), 1, anon_sym_LBRACK_CARET, - ACTIONS(977), 1, - sym_table_cell_alignment, - STATE(844), 1, - sym_table_cell, - STATE(937), 1, + ACTIONS(981), 1, + anon_sym_NULL, + ACTIONS(983), 1, + sym__table_caption_end, + STATE(311), 1, + aux_sym_table_caption_repeat1, + STATE(376), 1, + sym__inline_line, + STATE(1001), 1, sym__inline, - ACTIONS(884), 2, - sym__eof_or_newline, - sym__newline_inline, - STATE(376), 2, + STATE(362), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(932), 9, + ACTIONS(952), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -22170,22 +22701,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [10491] = 7, - ACTIONS(937), 1, + [10713] = 7, + ACTIONS(976), 1, anon_sym_LBRACK_CARET, - ACTIONS(979), 1, + ACTIONS(985), 1, sym_table_cell_alignment, - STATE(789), 1, + STATE(858), 1, sym_table_cell, - STATE(937), 1, + STATE(941), 1, sym__inline, - ACTIONS(884), 2, + ACTIONS(902), 2, sym__eof_or_newline, sym__newline_inline, - STATE(376), 2, + STATE(372), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(932), 9, + ACTIONS(971), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -22195,22 +22726,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [10523] = 7, - ACTIONS(937), 1, + [10745] = 7, + ACTIONS(976), 1, anon_sym_LBRACK_CARET, - ACTIONS(981), 1, + ACTIONS(987), 1, sym_table_cell_alignment, - STATE(755), 1, + STATE(865), 1, sym_table_cell, - STATE(937), 1, + STATE(941), 1, sym__inline, - ACTIONS(884), 2, + ACTIONS(902), 2, sym__eof_or_newline, sym__newline_inline, - STATE(376), 2, + STATE(372), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(932), 9, + ACTIONS(971), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -22220,22 +22751,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [10555] = 7, - ACTIONS(937), 1, + [10777] = 7, + ACTIONS(976), 1, anon_sym_LBRACK_CARET, - ACTIONS(983), 1, + ACTIONS(989), 1, sym_table_cell_alignment, - STATE(781), 1, + STATE(875), 1, sym_table_cell, - STATE(937), 1, + STATE(941), 1, sym__inline, - ACTIONS(884), 2, + ACTIONS(902), 2, sym__eof_or_newline, sym__newline_inline, - STATE(376), 2, + STATE(372), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(932), 9, + ACTIONS(971), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -22245,21 +22776,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [10587] = 4, - ACTIONS(989), 1, - sym__block_quote_continuation, - STATE(291), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(987), 5, - sym__block_close, - sym_list_marker_dash, - sym_list_marker_star, - sym_list_marker_plus, - sym__list_marker_task_begin, - ACTIONS(985), 10, + [10809] = 7, + ACTIONS(976), 1, + anon_sym_LBRACK_CARET, + ACTIONS(991), 1, + sym_table_cell_alignment, + STATE(882), 1, + sym_table_cell, + STATE(941), 1, + sym__inline, + ACTIONS(902), 2, + sym__eof_or_newline, + sym__newline_inline, + STATE(372), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(971), 9, anon_sym_LBRACK, anon_sym_PIPE, - anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -22267,22 +22801,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [10613] = 7, - ACTIONS(937), 1, + [10841] = 7, + ACTIONS(976), 1, anon_sym_LBRACK_CARET, - ACTIONS(991), 1, + ACTIONS(993), 1, sym_table_cell_alignment, - STATE(870), 1, + STATE(890), 1, sym_table_cell, - STATE(937), 1, + STATE(941), 1, sym__inline, - ACTIONS(884), 2, + ACTIONS(902), 2, sym__eof_or_newline, sym__newline_inline, - STATE(376), 2, + STATE(372), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(932), 9, + ACTIONS(971), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -22292,23 +22826,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [10645] = 8, - ACTIONS(944), 1, + [10873] = 7, + ACTIONS(976), 1, anon_sym_LBRACK_CARET, - ACTIONS(993), 1, - anon_sym_NULL, ACTIONS(995), 1, - sym__table_caption_end, - STATE(293), 1, - aux_sym_table_caption_repeat1, - STATE(366), 1, - sym__inline_line, - STATE(1078), 1, + sym_table_cell_alignment, + STATE(897), 1, + sym_table_cell, + STATE(941), 1, sym__inline, - STATE(360), 2, + ACTIONS(902), 2, + sym__eof_or_newline, + sym__newline_inline, + STATE(372), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(940), 9, + ACTIONS(971), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -22318,23 +22851,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [10679] = 8, - ACTIONS(896), 1, + [10905] = 7, + ACTIONS(976), 1, anon_sym_LBRACK_CARET, ACTIONS(997), 1, - sym__block_quote_continuation, - STATE(357), 1, - sym__block_quote_prefix, - STATE(372), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(710), 1, + sym_table_cell_alignment, + STATE(906), 1, + sym_table_cell, + STATE(941), 1, sym__inline, - STATE(838), 1, - sym__paragraph_content, - STATE(355), 2, + ACTIONS(902), 2, + sym__eof_or_newline, + sym__newline_inline, + STATE(372), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(13), 9, + ACTIONS(971), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -22344,22 +22876,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [10713] = 7, - ACTIONS(937), 1, + [10937] = 7, + ACTIONS(976), 1, anon_sym_LBRACK_CARET, ACTIONS(999), 1, sym_table_cell_alignment, - STATE(809), 1, + STATE(913), 1, sym_table_cell, - STATE(937), 1, + STATE(941), 1, sym__inline, - ACTIONS(884), 2, + ACTIONS(902), 2, sym__eof_or_newline, sym__newline_inline, - STATE(376), 2, + STATE(372), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(932), 9, + ACTIONS(971), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -22369,22 +22901,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [10745] = 7, - ACTIONS(937), 1, + [10969] = 8, + ACTIONS(1004), 1, + anon_sym_NULL, + ACTIONS(1006), 1, anon_sym_LBRACK_CARET, - ACTIONS(1001), 1, - sym_table_cell_alignment, - STATE(835), 1, - sym_table_cell, - STATE(937), 1, + ACTIONS(1009), 1, + sym__table_caption_end, + STATE(311), 1, + aux_sym_table_caption_repeat1, + STATE(376), 1, + sym__inline_line, + STATE(1001), 1, sym__inline, - ACTIONS(884), 2, - sym__eof_or_newline, - sym__newline_inline, - STATE(376), 2, + STATE(362), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(932), 9, + ACTIONS(1001), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -22394,17 +22927,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [10777] = 4, - ACTIONS(1003), 1, - sym__block_quote_continuation, - STATE(308), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(858), 4, + [11003] = 8, + ACTIONS(956), 1, + anon_sym_LBRACK_CARET, + ACTIONS(1011), 1, + anon_sym_NULL, + ACTIONS(1013), 1, + sym__table_caption_end, + STATE(311), 1, + aux_sym_table_caption_repeat1, + STATE(376), 1, + sym__inline_line, + STATE(1001), 1, + sym__inline, + STATE(362), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(952), 9, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + anon_sym_POUND, + anon_sym_PERCENT, + [11037] = 4, + ACTIONS(1019), 1, + sym__block_quote_continuation, + STATE(297), 1, + aux_sym__block_quote_prefix_repeat1, + ACTIONS(1017), 5, + sym__block_close, sym_list_marker_dash, sym_list_marker_star, sym_list_marker_plus, sym__list_marker_task_begin, - ACTIONS(856), 10, + ACTIONS(1015), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -22415,22 +22975,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [10802] = 6, - ACTIONS(1009), 1, - anon_sym_LBRACK_CARET, - STATE(940), 1, - sym__inline, - STATE(1091), 1, - sym_link_label, - ACTIONS(884), 2, - sym__eof_or_newline, - sym__newline_inline, - STATE(361), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(1006), 9, + [11063] = 2, + ACTIONS(441), 6, + sym__block_close, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym__block_quote_continuation, + ACTIONS(439), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -22438,20 +22994,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [10831] = 6, - ACTIONS(1009), 1, + [11084] = 6, + ACTIONS(1024), 1, anon_sym_LBRACK_CARET, - STATE(940), 1, + STATE(1068), 1, sym__inline, - STATE(1088), 1, + STATE(1126), 1, sym_link_label, - ACTIONS(884), 2, + ACTIONS(902), 2, sym__eof_or_newline, sym__newline_inline, - STATE(361), 2, + STATE(367), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1006), 9, + ACTIONS(1021), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -22461,20 +23017,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [10860] = 6, - ACTIONS(1009), 1, + [11113] = 6, + ACTIONS(1024), 1, anon_sym_LBRACK_CARET, - STATE(940), 1, + STATE(1068), 1, sym__inline, - STATE(941), 1, + STATE(1127), 1, sym_link_label, - ACTIONS(884), 2, + ACTIONS(902), 2, sym__eof_or_newline, sym__newline_inline, - STATE(361), 2, + STATE(367), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1006), 9, + ACTIONS(1021), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -22484,20 +23040,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [10889] = 6, - ACTIONS(1009), 1, + [11142] = 6, + ACTIONS(1024), 1, anon_sym_LBRACK_CARET, - STATE(940), 1, - sym__inline, - STATE(1089), 1, + STATE(1055), 1, sym_link_label, - ACTIONS(884), 2, + STATE(1068), 1, + sym__inline, + ACTIONS(902), 2, sym__eof_or_newline, sym__newline_inline, - STATE(361), 2, + STATE(367), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1006), 9, + ACTIONS(1021), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -22507,20 +23063,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [10918] = 6, - ACTIONS(1009), 1, + [11171] = 7, + ACTIONS(914), 1, anon_sym_LBRACK_CARET, - STATE(940), 1, + ACTIONS(942), 1, + sym__block_quote_continuation, + STATE(365), 1, + sym__block_quote_prefix, + STATE(374), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(764), 1, sym__inline, - STATE(1090), 1, - sym_link_label, - ACTIONS(884), 2, - sym__eof_or_newline, - sym__newline_inline, - STATE(361), 2, + STATE(358), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1006), 9, + ACTIONS(13), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -22530,15 +23087,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [10947] = 2, - ACTIONS(445), 6, - sym__block_close, + [11202] = 4, + ACTIONS(1027), 1, + sym__block_quote_continuation, + STATE(319), 1, + aux_sym__block_quote_prefix_repeat1, + ACTIONS(876), 4, sym_list_marker_dash, sym_list_marker_star, sym_list_marker_plus, sym__list_marker_task_begin, - sym__block_quote_continuation, - ACTIONS(443), 10, + ACTIONS(874), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -22549,23 +23108,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [10968] = 7, - ACTIONS(896), 1, - anon_sym_LBRACK_CARET, - ACTIONS(997), 1, + [11227] = 4, + ACTIONS(67), 1, sym__block_quote_continuation, - STATE(362), 1, - sym__block_quote_prefix, - STATE(372), 1, + STATE(319), 1, aux_sym__block_quote_prefix_repeat1, - STATE(757), 1, - sym__inline, - STATE(355), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(13), 9, + ACTIONS(1017), 4, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + ACTIONS(1015), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -22573,20 +23129,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [10999] = 4, - ACTIONS(67), 1, - sym__block_quote_continuation, - STATE(308), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(987), 4, - sym_list_marker_dash, - sym_list_marker_star, - sym_list_marker_plus, - sym__list_marker_task_begin, - ACTIONS(985), 10, + [11252] = 6, + ACTIONS(1024), 1, + anon_sym_LBRACK_CARET, + STATE(1068), 1, + sym__inline, + STATE(1124), 1, + sym_link_label, + ACTIONS(902), 2, + sym__eof_or_newline, + sym__newline_inline, + STATE(367), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(1021), 9, anon_sym_LBRACK, anon_sym_PIPE, - anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -22594,19 +23152,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11024] = 6, - ACTIONS(983), 1, - sym_table_cell_alignment, - ACTIONS(1014), 1, + [11281] = 6, + ACTIONS(1024), 1, anon_sym_LBRACK_CARET, - STATE(781), 1, - sym_table_cell, - STATE(937), 1, + STATE(1068), 1, sym__inline, - STATE(376), 2, + STATE(1125), 1, + sym_link_label, + ACTIONS(902), 2, + sym__eof_or_newline, + sym__newline_inline, + STATE(367), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1012), 9, + ACTIONS(1021), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -22616,19 +23175,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11052] = 6, - ACTIONS(1014), 1, + [11310] = 6, + ACTIONS(1032), 1, anon_sym_LBRACK_CARET, - ACTIONS(1016), 1, + ACTIONS(1034), 1, sym__newline, - STATE(937), 1, + STATE(941), 1, sym__inline, - STATE(1095), 1, + STATE(990), 1, sym_table_cell, - STATE(376), 2, + STATE(372), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1012), 9, + ACTIONS(1030), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -22638,14 +23197,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11080] = 2, - ACTIONS(445), 5, + [11338] = 2, + ACTIONS(441), 5, sym_list_marker_dash, sym_list_marker_star, sym_list_marker_plus, sym__list_marker_task_begin, sym__block_quote_continuation, - ACTIONS(443), 10, + ACTIONS(439), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -22656,19 +23215,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11100] = 6, - ACTIONS(973), 1, - sym_table_cell_alignment, - ACTIONS(1014), 1, + [11358] = 6, + ACTIONS(956), 1, anon_sym_LBRACK_CARET, - STATE(854), 1, - sym_table_cell, - STATE(937), 1, + STATE(298), 1, + aux_sym_table_caption_repeat1, + STATE(376), 1, + sym__inline_line, + STATE(1001), 1, sym__inline, - STATE(376), 2, + STATE(362), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1012), 9, + ACTIONS(952), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -22678,19 +23237,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11128] = 6, - ACTIONS(944), 1, + [11386] = 6, + ACTIONS(979), 1, + sym_table_cell_alignment, + ACTIONS(1032), 1, anon_sym_LBRACK_CARET, - STATE(295), 1, - aux_sym_table_caption_repeat1, - STATE(366), 1, - sym__inline_line, - STATE(1078), 1, + STATE(781), 1, + sym_table_cell, + STATE(941), 1, sym__inline, - STATE(360), 2, + STATE(372), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(940), 9, + ACTIONS(1030), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -22700,19 +23259,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11156] = 6, - ACTIONS(1014), 1, + [11414] = 6, + ACTIONS(1032), 1, anon_sym_LBRACK_CARET, - ACTIONS(1018), 1, + ACTIONS(1036), 1, sym__newline, - STATE(937), 1, + STATE(941), 1, sym__inline, - STATE(1095), 1, + STATE(990), 1, sym_table_cell, - STATE(376), 2, + STATE(372), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1012), 9, + ACTIONS(1030), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -22722,19 +23281,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11184] = 6, - ACTIONS(1001), 1, - sym_table_cell_alignment, - ACTIONS(1014), 1, + [11442] = 6, + ACTIONS(956), 1, anon_sym_LBRACK_CARET, - STATE(835), 1, - sym_table_cell, - STATE(937), 1, + STATE(724), 1, + sym__inline_line, + STATE(1029), 1, + sym__heading_content, + STATE(1104), 1, sym__inline, - STATE(376), 2, + STATE(362), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1012), 9, + ACTIONS(952), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -22744,19 +23303,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11212] = 6, - ACTIONS(1014), 1, + [11470] = 6, + ACTIONS(1032), 1, anon_sym_LBRACK_CARET, - ACTIONS(1020), 1, + ACTIONS(1038), 1, sym__newline, - STATE(937), 1, + STATE(941), 1, sym__inline, - STATE(1095), 1, + STATE(990), 1, sym_table_cell, - STATE(376), 2, + STATE(372), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1012), 9, + ACTIONS(1030), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -22766,19 +23325,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11240] = 6, - ACTIONS(1014), 1, + [11498] = 6, + ACTIONS(1032), 1, anon_sym_LBRACK_CARET, - ACTIONS(1022), 1, + ACTIONS(1040), 1, sym__newline, - STATE(937), 1, + STATE(941), 1, sym__inline, - STATE(1095), 1, + STATE(990), 1, sym_table_cell, - STATE(376), 2, + STATE(372), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1012), 9, + ACTIONS(1030), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -22788,19 +23347,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11268] = 6, - ACTIONS(944), 1, + [11526] = 6, + ACTIONS(1032), 1, anon_sym_LBRACK_CARET, - STATE(689), 1, - sym__inline_line, - STATE(995), 1, + ACTIONS(1042), 1, + sym__newline, + STATE(941), 1, sym__inline, - STATE(1092), 1, - sym__heading_content, - STATE(360), 2, + STATE(990), 1, + sym_table_cell, + STATE(372), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(940), 9, + ACTIONS(1030), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -22810,19 +23369,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11296] = 6, - ACTIONS(1014), 1, + [11554] = 6, + ACTIONS(974), 1, + sym_table_cell_alignment, + ACTIONS(1032), 1, anon_sym_LBRACK_CARET, - ACTIONS(1024), 1, - sym__newline, - STATE(937), 1, - sym__inline, - STATE(1095), 1, + STATE(759), 1, sym_table_cell, - STATE(376), 2, + STATE(941), 1, + sym__inline, + STATE(372), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1012), 9, + ACTIONS(1030), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -22832,19 +23391,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11324] = 6, - ACTIONS(1014), 1, + [11582] = 6, + ACTIONS(1032), 1, anon_sym_LBRACK_CARET, - ACTIONS(1026), 1, + ACTIONS(1044), 1, sym__newline, - STATE(937), 1, + STATE(941), 1, sym__inline, - STATE(1095), 1, + STATE(990), 1, sym_table_cell, - STATE(376), 2, + STATE(372), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1012), 9, + ACTIONS(1030), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -22854,19 +23413,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11352] = 6, - ACTIONS(999), 1, - sym_table_cell_alignment, - ACTIONS(1014), 1, + [11610] = 6, + ACTIONS(1032), 1, anon_sym_LBRACK_CARET, - STATE(809), 1, - sym_table_cell, - STATE(937), 1, + ACTIONS(1046), 1, + sym__newline, + STATE(941), 1, sym__inline, - STATE(376), 2, + STATE(990), 1, + sym_table_cell, + STATE(372), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1012), 9, + ACTIONS(1030), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -22876,19 +23435,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11380] = 6, - ACTIONS(944), 1, + [11638] = 6, + ACTIONS(1032), 1, anon_sym_LBRACK_CARET, - STATE(689), 1, - sym__inline_line, - STATE(995), 1, + ACTIONS(1048), 1, + sym__newline, + STATE(941), 1, sym__inline, - STATE(1018), 1, - sym__heading_content, - STATE(360), 2, + STATE(990), 1, + sym_table_cell, + STATE(372), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(940), 9, + ACTIONS(1030), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -22898,19 +23457,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11408] = 6, - ACTIONS(944), 1, + [11666] = 6, + ACTIONS(1032), 1, anon_sym_LBRACK_CARET, - STATE(689), 1, - sym__inline_line, - STATE(980), 1, - sym__heading_content, - STATE(995), 1, + ACTIONS(1050), 1, + sym__newline, + STATE(941), 1, sym__inline, - STATE(360), 2, + STATE(990), 1, + sym_table_cell, + STATE(372), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(940), 9, + ACTIONS(1030), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -22920,19 +23479,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11436] = 6, - ACTIONS(977), 1, - sym_table_cell_alignment, - ACTIONS(1014), 1, + [11694] = 6, + ACTIONS(1032), 1, anon_sym_LBRACK_CARET, - STATE(844), 1, - sym_table_cell, - STATE(937), 1, + ACTIONS(1052), 1, + sym__newline, + STATE(941), 1, sym__inline, - STATE(376), 2, + STATE(990), 1, + sym_table_cell, + STATE(372), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1012), 9, + ACTIONS(1030), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -22942,19 +23501,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11464] = 6, - ACTIONS(944), 1, + [11722] = 6, + ACTIONS(1032), 1, anon_sym_LBRACK_CARET, - STATE(294), 1, - aux_sym_table_caption_repeat1, - STATE(366), 1, - sym__inline_line, - STATE(1078), 1, + ACTIONS(1054), 1, + sym__newline, + STATE(941), 1, sym__inline, - STATE(360), 2, + STATE(990), 1, + sym_table_cell, + STATE(372), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(940), 9, + ACTIONS(1030), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -22964,19 +23523,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11492] = 6, - ACTIONS(975), 1, - sym_table_cell_alignment, - ACTIONS(1014), 1, + [11750] = 6, + ACTIONS(1032), 1, anon_sym_LBRACK_CARET, - STATE(745), 1, - sym_table_cell, - STATE(937), 1, + ACTIONS(1056), 1, + sym__newline, + STATE(941), 1, sym__inline, - STATE(376), 2, + STATE(990), 1, + sym_table_cell, + STATE(372), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1012), 9, + ACTIONS(1030), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -22986,19 +23545,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11520] = 6, - ACTIONS(1014), 1, + [11778] = 6, + ACTIONS(1032), 1, anon_sym_LBRACK_CARET, - ACTIONS(1028), 1, + ACTIONS(1058), 1, sym__newline, - STATE(937), 1, + STATE(941), 1, sym__inline, - STATE(1095), 1, + STATE(990), 1, sym_table_cell, - STATE(376), 2, + STATE(372), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1012), 9, + ACTIONS(1030), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -23008,19 +23567,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11548] = 6, - ACTIONS(991), 1, - sym_table_cell_alignment, - ACTIONS(1014), 1, + [11806] = 6, + ACTIONS(956), 1, anon_sym_LBRACK_CARET, - STATE(870), 1, - sym_table_cell, - STATE(937), 1, + STATE(724), 1, + sym__inline_line, + STATE(989), 1, + sym__heading_content, + STATE(1104), 1, sym__inline, - STATE(376), 2, + STATE(362), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1012), 9, + ACTIONS(952), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -23030,19 +23589,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11576] = 6, - ACTIONS(944), 1, + [11834] = 6, + ACTIONS(956), 1, anon_sym_LBRACK_CARET, - STATE(689), 1, + STATE(299), 1, + aux_sym_table_caption_repeat1, + STATE(376), 1, sym__inline_line, - STATE(936), 1, - sym__heading_content, - STATE(995), 1, + STATE(1001), 1, sym__inline, - STATE(360), 2, + STATE(362), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(940), 9, + ACTIONS(952), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -23052,19 +23611,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11604] = 6, - ACTIONS(981), 1, + [11862] = 6, + ACTIONS(985), 1, sym_table_cell_alignment, - ACTIONS(1014), 1, + ACTIONS(1032), 1, anon_sym_LBRACK_CARET, - STATE(755), 1, + STATE(858), 1, sym_table_cell, - STATE(937), 1, + STATE(941), 1, sym__inline, - STATE(376), 2, + STATE(372), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1012), 9, + ACTIONS(1030), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -23074,19 +23633,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11632] = 6, - ACTIONS(1014), 1, + [11890] = 6, + ACTIONS(987), 1, + sym_table_cell_alignment, + ACTIONS(1032), 1, anon_sym_LBRACK_CARET, - ACTIONS(1030), 1, - sym__newline, - STATE(937), 1, - sym__inline, - STATE(1095), 1, + STATE(865), 1, sym_table_cell, - STATE(376), 2, + STATE(941), 1, + sym__inline, + STATE(372), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1012), 9, + ACTIONS(1030), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -23096,19 +23655,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11660] = 6, - ACTIONS(1014), 1, + [11918] = 6, + ACTIONS(956), 1, anon_sym_LBRACK_CARET, - ACTIONS(1032), 1, - sym__newline, - STATE(937), 1, + STATE(724), 1, + sym__inline_line, + STATE(1026), 1, + sym__heading_content, + STATE(1104), 1, sym__inline, - STATE(1095), 1, - sym_table_cell, - STATE(376), 2, + STATE(362), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1012), 9, + ACTIONS(952), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -23118,19 +23677,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11688] = 6, - ACTIONS(944), 1, + [11946] = 6, + ACTIONS(956), 1, anon_sym_LBRACK_CARET, - STATE(290), 1, + STATE(312), 1, aux_sym_table_caption_repeat1, - STATE(366), 1, + STATE(376), 1, sym__inline_line, - STATE(1078), 1, + STATE(1001), 1, sym__inline, - STATE(360), 2, + STATE(362), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(940), 9, + ACTIONS(952), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -23140,19 +23699,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11716] = 6, - ACTIONS(1014), 1, + [11974] = 6, + ACTIONS(989), 1, + sym_table_cell_alignment, + ACTIONS(1032), 1, anon_sym_LBRACK_CARET, - ACTIONS(1034), 1, - sym__newline, - STATE(937), 1, - sym__inline, - STATE(1095), 1, + STATE(875), 1, sym_table_cell, - STATE(376), 2, + STATE(941), 1, + sym__inline, + STATE(372), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1012), 9, + ACTIONS(1030), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -23162,19 +23721,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11744] = 6, - ACTIONS(1014), 1, + [12002] = 6, + ACTIONS(991), 1, + sym_table_cell_alignment, + ACTIONS(1032), 1, anon_sym_LBRACK_CARET, - ACTIONS(1036), 1, - sym__newline, - STATE(937), 1, - sym__inline, - STATE(1095), 1, + STATE(882), 1, sym_table_cell, - STATE(376), 2, + STATE(941), 1, + sym__inline, + STATE(372), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1012), 9, + ACTIONS(1030), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -23184,19 +23743,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11772] = 6, - ACTIONS(1014), 1, + [12030] = 6, + ACTIONS(956), 1, anon_sym_LBRACK_CARET, - ACTIONS(1038), 1, - sym__newline, - STATE(937), 1, + STATE(724), 1, + sym__inline_line, + STATE(1002), 1, + sym__heading_content, + STATE(1104), 1, sym__inline, - STATE(1095), 1, - sym_table_cell, - STATE(376), 2, + STATE(362), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1012), 9, + ACTIONS(952), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -23206,19 +23765,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11800] = 6, - ACTIONS(944), 1, + [12058] = 6, + ACTIONS(956), 1, anon_sym_LBRACK_CARET, - STATE(304), 1, + STATE(302), 1, aux_sym_table_caption_repeat1, - STATE(366), 1, + STATE(376), 1, sym__inline_line, - STATE(1078), 1, + STATE(1001), 1, sym__inline, - STATE(360), 2, + STATE(362), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(940), 9, + ACTIONS(952), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -23228,19 +23787,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11828] = 6, - ACTIONS(1014), 1, + [12086] = 6, + ACTIONS(993), 1, + sym_table_cell_alignment, + ACTIONS(1032), 1, anon_sym_LBRACK_CARET, - ACTIONS(1040), 1, - sym__newline, - STATE(937), 1, - sym__inline, - STATE(1095), 1, + STATE(890), 1, sym_table_cell, - STATE(376), 2, + STATE(941), 1, + sym__inline, + STATE(372), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1012), 9, + ACTIONS(1030), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -23250,19 +23809,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11856] = 6, - ACTIONS(935), 1, + [12114] = 6, + ACTIONS(995), 1, sym_table_cell_alignment, - ACTIONS(1014), 1, + ACTIONS(1032), 1, anon_sym_LBRACK_CARET, - STATE(798), 1, + STATE(897), 1, sym_table_cell, - STATE(937), 1, + STATE(941), 1, sym__inline, - STATE(376), 2, + STATE(372), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1012), 9, + ACTIONS(1030), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -23272,19 +23831,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11884] = 6, - ACTIONS(1014), 1, + [12142] = 6, + ACTIONS(1032), 1, anon_sym_LBRACK_CARET, - ACTIONS(1042), 1, + ACTIONS(1060), 1, sym__newline, - STATE(937), 1, + STATE(941), 1, sym__inline, - STATE(1095), 1, + STATE(990), 1, sym_table_cell, - STATE(376), 2, + STATE(372), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1012), 9, + ACTIONS(1030), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -23294,19 +23853,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11912] = 6, - ACTIONS(944), 1, + [12170] = 6, + ACTIONS(956), 1, anon_sym_LBRACK_CARET, - STATE(292), 1, + STATE(296), 1, aux_sym_table_caption_repeat1, - STATE(366), 1, + STATE(376), 1, sym__inline_line, - STATE(1078), 1, + STATE(1001), 1, sym__inline, - STATE(360), 2, + STATE(362), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(940), 9, + ACTIONS(952), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -23316,19 +23875,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11940] = 6, - ACTIONS(1014), 1, + [12198] = 6, + ACTIONS(997), 1, + sym_table_cell_alignment, + ACTIONS(1032), 1, anon_sym_LBRACK_CARET, - ACTIONS(1044), 1, - sym__newline, - STATE(937), 1, - sym__inline, - STATE(1095), 1, + STATE(906), 1, sym_table_cell, - STATE(376), 2, + STATE(941), 1, + sym__inline, + STATE(372), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1012), 9, + ACTIONS(1030), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -23338,19 +23897,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11968] = 6, - ACTIONS(979), 1, + [12226] = 6, + ACTIONS(999), 1, sym_table_cell_alignment, - ACTIONS(1014), 1, + ACTIONS(1032), 1, anon_sym_LBRACK_CARET, - STATE(789), 1, + STATE(913), 1, sym_table_cell, - STATE(937), 1, + STATE(941), 1, sym__inline, - STATE(376), 2, + STATE(372), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1012), 9, + ACTIONS(1030), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -23360,17 +23919,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11996] = 5, - ACTIONS(944), 1, + [12254] = 6, + ACTIONS(1032), 1, anon_sym_LBRACK_CARET, - STATE(737), 1, - sym__inline_line, - STATE(995), 1, + ACTIONS(1062), 1, + sym__newline, + STATE(941), 1, sym__inline, + STATE(990), 1, + sym_table_cell, + STATE(372), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(1030), 9, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + anon_sym_POUND, + anon_sym_PERCENT, + [12282] = 4, + ACTIONS(914), 1, + anon_sym_LBRACK_CARET, + ACTIONS(1066), 2, + sym__eof_or_newline, + sym__newline_inline, STATE(360), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(940), 9, + ACTIONS(1064), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -23380,17 +23960,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [12021] = 5, - ACTIONS(1014), 1, + [12305] = 5, + ACTIONS(1032), 1, anon_sym_LBRACK_CARET, - STATE(937), 1, + STATE(941), 1, sym__inline, - STATE(1095), 1, + STATE(990), 1, sym_table_cell, - STATE(376), 2, + STATE(372), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1012), 9, + ACTIONS(1030), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -23400,16 +23980,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [12046] = 4, - ACTIONS(1049), 1, + [12330] = 4, + ACTIONS(1071), 1, anon_sym_LBRACK_CARET, - ACTIONS(1052), 2, + ACTIONS(1074), 2, sym__eof_or_newline, sym__newline_inline, - STATE(354), 2, + STATE(360), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(1068), 9, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + anon_sym_POUND, + anon_sym_PERCENT, + [12353] = 5, + ACTIONS(956), 1, + anon_sym_LBRACK_CARET, + STATE(773), 1, + sym__inline_line, + STATE(1104), 1, + sym__inline, + STATE(362), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1046), 9, + ACTIONS(952), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -23419,16 +24019,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [12069] = 4, - ACTIONS(896), 1, + [12378] = 4, + ACTIONS(956), 1, anon_sym_LBRACK_CARET, - ACTIONS(1056), 2, + ACTIONS(1066), 1, sym__eof_or_newline, - sym__newline_inline, - STATE(354), 2, + STATE(363), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1054), 9, + ACTIONS(1076), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -23438,15 +24037,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [12092] = 4, - ACTIONS(1052), 1, + [12400] = 4, + ACTIONS(1074), 1, sym__eof_or_newline, - ACTIONS(1061), 1, + ACTIONS(1081), 1, anon_sym_LBRACK_CARET, - STATE(356), 2, + STATE(363), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1058), 9, + ACTIONS(1078), 9, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + anon_sym_POUND, + anon_sym_PERCENT, + [12422] = 4, + ACTIONS(914), 1, + anon_sym_LBRACK_CARET, + STATE(672), 1, + sym__inline, + STATE(358), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(13), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -23456,12 +24073,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [12114] = 4, - ACTIONS(896), 1, + [12444] = 4, + ACTIONS(914), 1, anon_sym_LBRACK_CARET, - STATE(636), 1, + STATE(810), 1, sym__inline, - STATE(355), 2, + STATE(358), 2, sym__symbol_fallback, aux_sym__inline_repeat1, ACTIONS(13), 9, @@ -23474,41 +24091,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [12136] = 10, + [12466] = 4, + ACTIONS(1087), 1, + anon_sym_RBRACK, + ACTIONS(1089), 1, + anon_sym_LBRACK_CARET, + STATE(366), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(1084), 9, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + anon_sym_POUND, + anon_sym_PERCENT, + [12488] = 4, + ACTIONS(1094), 1, + anon_sym_RBRACK, + ACTIONS(1096), 1, + anon_sym_LBRACK_CARET, + STATE(366), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(1092), 9, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + anon_sym_POUND, + anon_sym_PERCENT, + [12510] = 10, ACTIONS(480), 1, sym__block_quote_continuation, - ACTIONS(1064), 1, + ACTIONS(1098), 1, anon_sym_PIPE, - ACTIONS(1066), 1, + ACTIONS(1100), 1, sym__newline, - ACTIONS(1068), 1, + ACTIONS(1102), 1, sym__table_caption_begin, - STATE(383), 1, + STATE(389), 1, sym_table_row, - STATE(643), 1, + STATE(668), 1, sym_table_caption, - STATE(681), 1, + STATE(720), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1039), 1, + STATE(1075), 1, sym__block_quote_prefix, ACTIONS(476), 2, sym__list_item_continuation, sym__list_item_end, - STATE(373), 3, + STATE(378), 3, sym__table_content, sym_table_separator, aux_sym_table_repeat1, - [12170] = 4, - ACTIONS(1073), 1, - anon_sym_RBRACK, - ACTIONS(1075), 1, - anon_sym_LBRACK_CARET, - STATE(359), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(1070), 9, + [12544] = 3, + ACTIONS(1104), 1, + sym__block_quote_continuation, + STATE(369), 1, + aux_sym__block_quote_prefix_repeat1, + ACTIONS(874), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -23516,17 +24167,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [12192] = 4, - ACTIONS(944), 1, - anon_sym_LBRACK_CARET, - ACTIONS(1056), 1, - sym__eof_or_newline, - STATE(356), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(1078), 9, + [12563] = 2, + ACTIONS(1109), 1, + sym__table_caption_end, + ACTIONS(1107), 11, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_NULL, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -23534,15 +24182,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [12214] = 4, - ACTIONS(1082), 1, - anon_sym_RBRACK, - ACTIONS(1084), 1, + [12580] = 3, + ACTIONS(1114), 1, anon_sym_LBRACK_CARET, - STATE(359), 2, + STATE(371), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1080), 9, + ACTIONS(1111), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -23552,17 +24198,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [12236] = 4, - ACTIONS(896), 1, + [12599] = 4, + ACTIONS(1032), 1, anon_sym_LBRACK_CARET, - STATE(714), 1, - sym__inline, - STATE(355), 2, + ACTIONS(1094), 1, + anon_sym_PIPE, + STATE(371), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(13), 9, + ACTIONS(1117), 8, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -23570,11 +24215,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [12258] = 2, - ACTIONS(1088), 2, + [12620] = 2, + ACTIONS(1121), 2, sym__eof_or_newline, sym__newline_inline, - ACTIONS(1086), 10, + ACTIONS(1119), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -23585,54 +24230,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [12275] = 9, - ACTIONS(877), 1, - sym__whitespace1, - ACTIONS(1090), 1, - anon_sym_RBRACE, - ACTIONS(1092), 1, + [12637] = 3, + ACTIONS(942), 1, + sym__block_quote_continuation, + STATE(369), 1, + aux_sym__block_quote_prefix_repeat1, + ACTIONS(1015), 10, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACK_CARET, + anon_sym_LBRACE, anon_sym_DOT, - ACTIONS(1094), 1, aux_sym_identifier_token1, - ACTIONS(1096), 1, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(1098), 1, - sym__id, - STATE(375), 1, - aux_sym_block_attribute_repeat1, - STATE(932), 1, - sym_key, - STATE(433), 4, - sym_class, - sym_identifier, - sym_key_value, - sym__comment_no_newline, - [12306] = 9, - ACTIONS(877), 1, + [12656] = 10, + ACTIONS(895), 1, sym__whitespace1, - ACTIONS(1092), 1, + ACTIONS(1123), 1, + anon_sym_RBRACE, + ACTIONS(1125), 1, anon_sym_DOT, - ACTIONS(1094), 1, + ACTIONS(1127), 1, aux_sym_identifier_token1, - ACTIONS(1096), 1, + ACTIONS(1129), 1, anon_sym_PERCENT, - ACTIONS(1098), 1, + ACTIONS(1131), 1, sym__id, - ACTIONS(1100), 1, - anon_sym_RBRACE, - STATE(375), 1, + STATE(383), 1, aux_sym_block_attribute_repeat1, - STATE(932), 1, + STATE(477), 1, + sym__comment_no_newline, + STATE(1000), 1, sym_key, - STATE(433), 4, + STATE(432), 3, sym_class, sym_identifier, sym_key_value, - sym__comment_no_newline, - [12337] = 2, - ACTIONS(1104), 1, + [12689] = 2, + ACTIONS(1135), 1, sym__table_caption_end, - ACTIONS(1102), 11, + ACTIONS(1133), 11, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_NULL, @@ -23644,221 +24284,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [12354] = 2, - ACTIONS(1108), 1, - sym__table_caption_end, - ACTIONS(1106), 11, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_NULL, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, + [12706] = 10, + ACTIONS(895), 1, + sym__whitespace1, + ACTIONS(1125), 1, anon_sym_DOT, + ACTIONS(1127), 1, aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, + ACTIONS(1129), 1, anon_sym_PERCENT, - [12371] = 9, - ACTIONS(877), 1, + ACTIONS(1131), 1, + sym__id, + ACTIONS(1137), 1, + anon_sym_RBRACE, + STATE(383), 1, + aux_sym_block_attribute_repeat1, + STATE(477), 1, + sym__comment_no_newline, + STATE(1000), 1, + sym_key, + STATE(432), 3, + sym_class, + sym_identifier, + sym_key_value, + [12739] = 7, + ACTIONS(503), 1, + sym__block_quote_continuation, + ACTIONS(1139), 1, + anon_sym_PIPE, + STATE(389), 1, + sym_table_row, + STATE(720), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(1075), 1, + sym__block_quote_prefix, + STATE(378), 3, + sym__table_content, + sym_table_separator, + aux_sym_table_repeat1, + ACTIONS(501), 4, + sym__newline, + sym__list_item_continuation, + sym__list_item_end, + sym__table_caption_begin, + [12766] = 10, + ACTIONS(895), 1, sym__whitespace1, - ACTIONS(1092), 1, + ACTIONS(1125), 1, anon_sym_DOT, - ACTIONS(1094), 1, + ACTIONS(1127), 1, aux_sym_identifier_token1, - ACTIONS(1096), 1, + ACTIONS(1129), 1, anon_sym_PERCENT, - ACTIONS(1098), 1, + ACTIONS(1131), 1, sym__id, - ACTIONS(1110), 1, + ACTIONS(1142), 1, anon_sym_RBRACE, - STATE(375), 1, + STATE(383), 1, aux_sym_block_attribute_repeat1, - STATE(932), 1, + STATE(477), 1, + sym__comment_no_newline, + STATE(1000), 1, sym_key, - STATE(433), 4, + STATE(432), 3, sym_class, sym_identifier, sym_key_value, - sym__comment_no_newline, - [12402] = 10, + [12799] = 10, ACTIONS(476), 1, sym__block_close, ACTIONS(480), 1, sym__block_quote_continuation, - ACTIONS(1112), 1, + ACTIONS(1144), 1, anon_sym_PIPE, - ACTIONS(1114), 1, + ACTIONS(1146), 1, sym__newline, - ACTIONS(1116), 1, + ACTIONS(1148), 1, sym__table_caption_begin, - STATE(384), 1, + STATE(405), 1, sym_table_row, - STATE(681), 1, + STATE(720), 1, aux_sym__block_quote_prefix_repeat1, - STATE(788), 1, + STATE(925), 1, sym_table_caption, - STATE(1046), 1, + STATE(1082), 1, sym__block_quote_prefix, - STATE(379), 3, + STATE(387), 3, sym__table_content, sym_table_separator, aux_sym_table_repeat1, - [12435] = 9, - ACTIONS(877), 1, + [12832] = 10, + ACTIONS(895), 1, sym__whitespace1, - ACTIONS(1092), 1, + ACTIONS(1125), 1, anon_sym_DOT, - ACTIONS(1094), 1, + ACTIONS(1127), 1, aux_sym_identifier_token1, - ACTIONS(1096), 1, + ACTIONS(1129), 1, anon_sym_PERCENT, - ACTIONS(1098), 1, + ACTIONS(1131), 1, sym__id, - ACTIONS(1118), 1, + ACTIONS(1150), 1, anon_sym_RBRACE, - STATE(375), 1, + STATE(383), 1, aux_sym_block_attribute_repeat1, - STATE(932), 1, + STATE(477), 1, + sym__comment_no_newline, + STATE(1000), 1, sym_key, - STATE(433), 4, + STATE(432), 3, sym_class, sym_identifier, sym_key_value, - sym__comment_no_newline, - [12466] = 3, - ACTIONS(1120), 1, - sym__block_quote_continuation, - STATE(371), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(856), 10, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, + [12865] = 10, + ACTIONS(895), 1, + sym__whitespace1, + ACTIONS(1125), 1, anon_sym_DOT, + ACTIONS(1127), 1, aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, + ACTIONS(1129), 1, anon_sym_PERCENT, - [12485] = 3, - ACTIONS(997), 1, - sym__block_quote_continuation, - STATE(371), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(985), 10, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - [12504] = 7, - ACTIONS(503), 1, - sym__block_quote_continuation, - ACTIONS(1123), 1, - anon_sym_PIPE, - STATE(383), 1, - sym_table_row, - STATE(681), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(1039), 1, - sym__block_quote_prefix, - STATE(373), 3, - sym__table_content, - sym_table_separator, - aux_sym_table_repeat1, - ACTIONS(501), 4, - sym__newline, - sym__list_item_continuation, - sym__list_item_end, - sym__table_caption_begin, - [12531] = 3, - ACTIONS(1129), 1, - anon_sym_LBRACK_CARET, - STATE(374), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(1126), 9, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - [12550] = 9, - ACTIONS(1132), 1, - anon_sym_RBRACE, - ACTIONS(1134), 1, - anon_sym_DOT, - ACTIONS(1137), 1, - aux_sym_identifier_token1, - ACTIONS(1140), 1, - sym__whitespace1, - ACTIONS(1143), 1, - anon_sym_PERCENT, - ACTIONS(1146), 1, + ACTIONS(1131), 1, sym__id, - STATE(375), 1, + ACTIONS(1152), 1, + anon_sym_RBRACE, + STATE(383), 1, aux_sym_block_attribute_repeat1, - STATE(932), 1, + STATE(477), 1, + sym__comment_no_newline, + STATE(1000), 1, sym_key, - STATE(433), 4, + STATE(432), 3, sym_class, sym_identifier, sym_key_value, - sym__comment_no_newline, - [12581] = 4, - ACTIONS(1014), 1, - anon_sym_LBRACK_CARET, - ACTIONS(1082), 1, - anon_sym_PIPE, - STATE(374), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(1149), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, + [12898] = 10, + ACTIONS(1154), 1, + anon_sym_RBRACE, + ACTIONS(1156), 1, anon_sym_DOT, + ACTIONS(1159), 1, aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - [12602] = 9, - ACTIONS(877), 1, + ACTIONS(1162), 1, sym__whitespace1, - ACTIONS(1092), 1, - anon_sym_DOT, - ACTIONS(1094), 1, - aux_sym_identifier_token1, - ACTIONS(1096), 1, + ACTIONS(1165), 1, anon_sym_PERCENT, - ACTIONS(1098), 1, + ACTIONS(1168), 1, sym__id, - ACTIONS(1151), 1, - anon_sym_RBRACE, - STATE(375), 1, + STATE(383), 1, aux_sym_block_attribute_repeat1, - STATE(932), 1, + STATE(477), 1, + sym__comment_no_newline, + STATE(1000), 1, sym_key, - STATE(433), 4, + STATE(432), 3, sym_class, sym_identifier, sym_key_value, - sym__comment_no_newline, - [12633] = 2, - ACTIONS(1088), 1, - sym__eof_or_newline, - ACTIONS(1086), 10, + [12931] = 2, + ACTIONS(441), 1, + sym__block_quote_continuation, + ACTIONS(439), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -23869,29 +24456,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [12649] = 7, - ACTIONS(503), 1, - sym__block_quote_continuation, - ACTIONS(1153), 1, - anon_sym_PIPE, - STATE(384), 1, - sym_table_row, - STATE(681), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(1046), 1, - sym__block_quote_prefix, - ACTIONS(501), 3, - sym__block_close, - sym__newline, - sym__table_caption_begin, - STATE(379), 3, - sym__table_content, - sym_table_separator, - aux_sym_table_repeat1, - [12675] = 1, - ACTIONS(1086), 11, + [12947] = 2, + ACTIONS(1121), 1, + sym__eof_or_newline, + ACTIONS(1119), 10, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, @@ -23901,11 +24470,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [12689] = 2, - ACTIONS(445), 1, - sym__block_quote_continuation, - ACTIONS(443), 10, + [12963] = 1, + ACTIONS(1119), 11, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, @@ -23915,8 +24483,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [12705] = 1, - ACTIONS(1086), 10, + [12977] = 7, + ACTIONS(503), 1, + sym__block_quote_continuation, + ACTIONS(1171), 1, + anon_sym_PIPE, + STATE(405), 1, + sym_table_row, + STATE(720), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(1082), 1, + sym__block_quote_prefix, + ACTIONS(501), 3, + sym__block_close, + sym__newline, + sym__table_caption_begin, + STATE(387), 3, + sym__table_content, + sym_table_separator, + aux_sym_table_repeat1, + [13003] = 1, + ACTIONS(1119), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -23927,4324 +24514,4577 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [12718] = 6, + [13016] = 6, ACTIONS(519), 1, sym__block_quote_continuation, - ACTIONS(1156), 1, + ACTIONS(1174), 1, anon_sym_PIPE, - STATE(477), 1, + STATE(489), 1, sym_table_separator, - STATE(681), 1, + STATE(720), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1065), 1, + STATE(1101), 1, sym__block_quote_prefix, - ACTIONS(512), 4, + ACTIONS(517), 4, sym__newline, sym__list_item_continuation, sym__list_item_end, sym__table_caption_begin, - [12740] = 6, - ACTIONS(519), 1, - sym__block_quote_continuation, - ACTIONS(1159), 1, - anon_sym_PIPE, - STATE(492), 1, - sym_table_separator, - STATE(681), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(1069), 1, - sym__block_quote_prefix, - ACTIONS(512), 3, - sym__block_close, - sym__newline, - sym__table_caption_begin, - [12761] = 7, - ACTIONS(1162), 1, - aux_sym__line_token1, - ACTIONS(1164), 1, + [13038] = 8, + ACTIONS(31), 1, + sym__list_marker_task_begin, + ACTIONS(1177), 1, sym__block_close, - ACTIONS(1166), 1, + ACTIONS(1179), 1, sym__block_quote_continuation, - STATE(673), 1, + STATE(47), 1, + sym_list_marker_task, + STATE(402), 1, + aux_sym__list_task_repeat1, + STATE(675), 1, aux_sym__block_quote_prefix_repeat1, - STATE(733), 1, + STATE(707), 1, + sym__list_item_task, + STATE(748), 1, sym__block_quote_prefix, - STATE(969), 1, - sym_code, - STATE(419), 2, - sym__line, - aux_sym_code_repeat1, - [12784] = 7, - ACTIONS(1162), 1, + [13063] = 7, + ACTIONS(1181), 1, aux_sym__line_token1, - ACTIONS(1166), 1, - sym__block_quote_continuation, - ACTIONS(1168), 1, + ACTIONS(1183), 1, sym__block_close, - STATE(673), 1, + ACTIONS(1185), 1, + sym__block_quote_continuation, + STATE(689), 1, aux_sym__block_quote_prefix_repeat1, - STATE(733), 1, + STATE(776), 1, sym__block_quote_prefix, - STATE(963), 1, + STATE(1069), 1, sym_code, - STATE(419), 2, + STATE(412), 2, sym__line, aux_sym_code_repeat1, - [12807] = 7, - ACTIONS(1162), 1, + [13086] = 7, + ACTIONS(1181), 1, aux_sym__line_token1, - ACTIONS(1166), 1, + ACTIONS(1185), 1, sym__block_quote_continuation, - ACTIONS(1170), 1, + ACTIONS(1187), 1, sym__block_close, - STATE(673), 1, + STATE(689), 1, aux_sym__block_quote_prefix_repeat1, - STATE(733), 1, + STATE(776), 1, sym__block_quote_prefix, - STATE(954), 1, + STATE(943), 1, sym_code, - STATE(419), 2, + STATE(412), 2, sym__line, aux_sym_code_repeat1, - [12830] = 7, - ACTIONS(1162), 1, + [13109] = 7, + ACTIONS(1181), 1, aux_sym__line_token1, - ACTIONS(1166), 1, + ACTIONS(1185), 1, sym__block_quote_continuation, - ACTIONS(1172), 1, + ACTIONS(1189), 1, sym__block_close, - STATE(673), 1, + STATE(689), 1, aux_sym__block_quote_prefix_repeat1, - STATE(733), 1, + STATE(776), 1, sym__block_quote_prefix, - STATE(903), 1, + STATE(944), 1, sym_code, - STATE(419), 2, + STATE(412), 2, sym__line, aux_sym_code_repeat1, - [12853] = 7, - ACTIONS(1162), 1, + [13132] = 7, + ACTIONS(1181), 1, aux_sym__line_token1, - ACTIONS(1166), 1, + ACTIONS(1185), 1, sym__block_quote_continuation, - ACTIONS(1174), 1, + ACTIONS(1191), 1, sym__block_close, - STATE(673), 1, + STATE(689), 1, aux_sym__block_quote_prefix_repeat1, - STATE(733), 1, + STATE(776), 1, sym__block_quote_prefix, - STATE(1008), 1, + STATE(1080), 1, sym_code, - STATE(419), 2, + STATE(412), 2, sym__line, aux_sym_code_repeat1, - [12876] = 7, + [13155] = 8, ACTIONS(31), 1, sym__list_marker_task_begin, - ACTIONS(1176), 1, - sym__block_close, - ACTIONS(1178), 1, + ACTIONS(1179), 1, sym__block_quote_continuation, - STATE(38), 1, + ACTIONS(1193), 1, + sym__block_close, + STATE(47), 1, sym_list_marker_task, - STATE(654), 1, + STATE(402), 1, + aux_sym__list_task_repeat1, + STATE(675), 1, aux_sym__block_quote_prefix_repeat1, - STATE(880), 1, - sym__block_quote_prefix, - STATE(405), 2, + STATE(707), 1, sym__list_item_task, - aux_sym__list_task_repeat1, - [12899] = 7, + STATE(748), 1, + sym__block_quote_prefix, + [13180] = 8, ACTIONS(31), 1, sym__list_marker_task_begin, - ACTIONS(1178), 1, + ACTIONS(1179), 1, sym__block_quote_continuation, - ACTIONS(1180), 1, + ACTIONS(1195), 1, sym__block_close, - STATE(38), 1, + STATE(47), 1, sym_list_marker_task, - STATE(654), 1, + STATE(402), 1, + aux_sym__list_task_repeat1, + STATE(675), 1, aux_sym__block_quote_prefix_repeat1, - STATE(880), 1, - sym__block_quote_prefix, - STATE(405), 2, + STATE(707), 1, sym__list_item_task, - aux_sym__list_task_repeat1, - [12922] = 7, - ACTIONS(1162), 1, + STATE(748), 1, + sym__block_quote_prefix, + [13205] = 7, + ACTIONS(1181), 1, aux_sym__line_token1, - ACTIONS(1166), 1, + ACTIONS(1185), 1, sym__block_quote_continuation, - ACTIONS(1182), 1, + ACTIONS(1197), 1, sym__block_close, - STATE(673), 1, + STATE(689), 1, aux_sym__block_quote_prefix_repeat1, - STATE(733), 1, + STATE(776), 1, sym__block_quote_prefix, - STATE(1033), 1, + STATE(1020), 1, sym_code, - STATE(419), 2, + STATE(412), 2, sym__line, aux_sym_code_repeat1, - [12945] = 7, - ACTIONS(1162), 1, + [13228] = 7, + ACTIONS(1181), 1, aux_sym__line_token1, - ACTIONS(1166), 1, + ACTIONS(1185), 1, sym__block_quote_continuation, - ACTIONS(1184), 1, + ACTIONS(1199), 1, sym__block_close, - STATE(673), 1, + STATE(689), 1, aux_sym__block_quote_prefix_repeat1, - STATE(733), 1, + STATE(776), 1, sym__block_quote_prefix, - STATE(1034), 1, + STATE(994), 1, sym_code, - STATE(419), 2, + STATE(412), 2, sym__line, aux_sym_code_repeat1, - [12968] = 7, - ACTIONS(1162), 1, + [13251] = 7, + ACTIONS(1181), 1, aux_sym__line_token1, - ACTIONS(1166), 1, + ACTIONS(1185), 1, sym__block_quote_continuation, - ACTIONS(1186), 1, + ACTIONS(1201), 1, sym__block_close, - STATE(673), 1, + STATE(689), 1, aux_sym__block_quote_prefix_repeat1, - STATE(733), 1, + STATE(776), 1, sym__block_quote_prefix, - STATE(998), 1, + STATE(1051), 1, sym_code, - STATE(419), 2, + STATE(412), 2, sym__line, aux_sym_code_repeat1, - [12991] = 7, - ACTIONS(1162), 1, + [13274] = 7, + ACTIONS(1181), 1, aux_sym__line_token1, - ACTIONS(1166), 1, + ACTIONS(1185), 1, sym__block_quote_continuation, - ACTIONS(1188), 1, + ACTIONS(1203), 1, sym__block_close, - STATE(673), 1, + STATE(689), 1, aux_sym__block_quote_prefix_repeat1, - STATE(733), 1, + STATE(776), 1, sym__block_quote_prefix, - STATE(955), 1, + STATE(1022), 1, sym_code, - STATE(419), 2, + STATE(412), 2, sym__line, aux_sym_code_repeat1, - [13014] = 7, - ACTIONS(31), 1, - sym__list_marker_task_begin, - ACTIONS(1178), 1, + [13297] = 7, + ACTIONS(1181), 1, + aux_sym__line_token1, + ACTIONS(1185), 1, sym__block_quote_continuation, - ACTIONS(1190), 1, + ACTIONS(1205), 1, sym__block_close, - STATE(38), 1, - sym_list_marker_task, - STATE(654), 1, + STATE(689), 1, aux_sym__block_quote_prefix_repeat1, - STATE(880), 1, + STATE(776), 1, sym__block_quote_prefix, - STATE(405), 2, - sym__list_item_task, - aux_sym__list_task_repeat1, - [13037] = 7, - ACTIONS(31), 1, + STATE(1023), 1, + sym_code, + STATE(412), 2, + sym__line, + aux_sym_code_repeat1, + [13320] = 8, + ACTIONS(1207), 1, + sym__block_close, + ACTIONS(1209), 1, sym__list_marker_task_begin, - ACTIONS(1178), 1, + ACTIONS(1212), 1, sym__block_quote_continuation, - ACTIONS(1192), 1, - sym__block_close, - STATE(38), 1, + STATE(47), 1, sym_list_marker_task, - STATE(654), 1, + STATE(402), 1, + aux_sym__list_task_repeat1, + STATE(675), 1, aux_sym__block_quote_prefix_repeat1, - STATE(880), 1, - sym__block_quote_prefix, - STATE(405), 2, + STATE(707), 1, sym__list_item_task, - aux_sym__list_task_repeat1, - [13060] = 7, - ACTIONS(1162), 1, + STATE(748), 1, + sym__block_quote_prefix, + [13345] = 7, + ACTIONS(1181), 1, aux_sym__line_token1, - ACTIONS(1166), 1, + ACTIONS(1185), 1, sym__block_quote_continuation, - ACTIONS(1194), 1, + ACTIONS(1215), 1, sym__block_close, - STATE(673), 1, + STATE(689), 1, aux_sym__block_quote_prefix_repeat1, - STATE(733), 1, + STATE(776), 1, sym__block_quote_prefix, - STATE(905), 1, + STATE(952), 1, sym_code, - STATE(419), 2, + STATE(412), 2, sym__line, aux_sym_code_repeat1, - [13083] = 7, - ACTIONS(1162), 1, + [13368] = 7, + ACTIONS(1181), 1, aux_sym__line_token1, - ACTIONS(1166), 1, + ACTIONS(1185), 1, sym__block_quote_continuation, - ACTIONS(1196), 1, + ACTIONS(1217), 1, sym__block_close, - STATE(673), 1, + STATE(689), 1, aux_sym__block_quote_prefix_repeat1, - STATE(733), 1, + STATE(776), 1, sym__block_quote_prefix, - STATE(1044), 1, + STATE(1031), 1, sym_code, - STATE(419), 2, + STATE(412), 2, sym__line, aux_sym_code_repeat1, - [13106] = 7, - ACTIONS(1162), 1, - aux_sym__line_token1, - ACTIONS(1166), 1, + [13391] = 6, + ACTIONS(519), 1, sym__block_quote_continuation, - ACTIONS(1198), 1, - sym__block_close, - STATE(673), 1, + ACTIONS(1219), 1, + anon_sym_PIPE, + STATE(490), 1, + sym_table_separator, + STATE(720), 1, aux_sym__block_quote_prefix_repeat1, - STATE(733), 1, + STATE(1105), 1, sym__block_quote_prefix, - STATE(1051), 1, - sym_code, - STATE(419), 2, - sym__line, - aux_sym_code_repeat1, - [13129] = 7, - ACTIONS(1162), 1, + ACTIONS(517), 3, + sym__block_close, + sym__newline, + sym__table_caption_begin, + [13412] = 7, + ACTIONS(1181), 1, aux_sym__line_token1, - ACTIONS(1166), 1, + ACTIONS(1185), 1, sym__block_quote_continuation, - ACTIONS(1200), 1, + ACTIONS(1222), 1, sym__block_close, - STATE(673), 1, + STATE(689), 1, aux_sym__block_quote_prefix_repeat1, - STATE(733), 1, + STATE(776), 1, sym__block_quote_prefix, - STATE(908), 1, + STATE(1033), 1, sym_code, - STATE(419), 2, + STATE(412), 2, sym__line, aux_sym_code_repeat1, - [13152] = 7, - ACTIONS(1162), 1, + [13435] = 7, + ACTIONS(1181), 1, aux_sym__line_token1, - ACTIONS(1166), 1, + ACTIONS(1185), 1, sym__block_quote_continuation, - ACTIONS(1202), 1, + ACTIONS(1224), 1, sym__block_close, - STATE(673), 1, + STATE(689), 1, aux_sym__block_quote_prefix_repeat1, - STATE(733), 1, + STATE(776), 1, sym__block_quote_prefix, - STATE(968), 1, + STATE(956), 1, sym_code, - STATE(419), 2, + STATE(412), 2, sym__line, aux_sym_code_repeat1, - [13175] = 7, - ACTIONS(1162), 1, - aux_sym__line_token1, - ACTIONS(1166), 1, + [13458] = 8, + ACTIONS(31), 1, + sym__list_marker_task_begin, + ACTIONS(1179), 1, sym__block_quote_continuation, - ACTIONS(1204), 1, + ACTIONS(1226), 1, sym__block_close, - STATE(673), 1, + STATE(47), 1, + sym_list_marker_task, + STATE(402), 1, + aux_sym__list_task_repeat1, + STATE(675), 1, aux_sym__block_quote_prefix_repeat1, - STATE(733), 1, + STATE(707), 1, + sym__list_item_task, + STATE(748), 1, sym__block_quote_prefix, - STATE(909), 1, - sym_code, - STATE(419), 2, - sym__line, - aux_sym_code_repeat1, - [13198] = 7, + [13483] = 8, ACTIONS(31), 1, sym__list_marker_task_begin, - ACTIONS(1178), 1, + ACTIONS(1179), 1, sym__block_quote_continuation, - ACTIONS(1206), 1, + ACTIONS(1228), 1, sym__block_close, - STATE(38), 1, + STATE(47), 1, sym_list_marker_task, - STATE(654), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(880), 1, - sym__block_quote_prefix, - STATE(405), 2, - sym__list_item_task, + STATE(402), 1, aux_sym__list_task_repeat1, - [13221] = 7, - ACTIONS(1208), 1, - sym__block_close, - ACTIONS(1210), 1, - sym__list_marker_task_begin, - ACTIONS(1213), 1, - sym__block_quote_continuation, - STATE(38), 1, - sym_list_marker_task, - STATE(654), 1, + STATE(675), 1, aux_sym__block_quote_prefix_repeat1, - STATE(880), 1, - sym__block_quote_prefix, - STATE(405), 2, + STATE(707), 1, sym__list_item_task, - aux_sym__list_task_repeat1, - [13244] = 6, - ACTIONS(29), 1, - sym_list_marker_plus, - ACTIONS(1216), 1, - sym__block_close, - ACTIONS(1218), 1, + STATE(748), 1, + sym__block_quote_prefix, + [13508] = 7, + ACTIONS(1181), 1, + aux_sym__line_token1, + ACTIONS(1185), 1, sym__block_quote_continuation, - STATE(652), 1, + ACTIONS(1230), 1, + sym__block_close, + STATE(689), 1, aux_sym__block_quote_prefix_repeat1, - STATE(923), 1, + STATE(776), 1, sym__block_quote_prefix, + STATE(1067), 1, + sym_code, STATE(412), 2, - sym__list_item_plus, - aux_sym__list_plus_repeat1, - [13264] = 6, - ACTIONS(27), 1, - sym_list_marker_star, - ACTIONS(1220), 1, - sym__block_close, - ACTIONS(1222), 1, + sym__line, + aux_sym_code_repeat1, + [13531] = 7, + ACTIONS(1181), 1, + aux_sym__line_token1, + ACTIONS(1185), 1, sym__block_quote_continuation, - STATE(649), 1, + ACTIONS(1232), 1, + sym__block_close, + STATE(689), 1, aux_sym__block_quote_prefix_repeat1, - STATE(922), 1, + STATE(776), 1, sym__block_quote_prefix, - STATE(411), 2, - sym__list_item_star, - aux_sym__list_star_repeat1, - [13284] = 6, - ACTIONS(27), 1, - sym_list_marker_star, - ACTIONS(1222), 1, + STATE(1131), 1, + sym_code, + STATE(412), 2, + sym__line, + aux_sym_code_repeat1, + [13554] = 6, + ACTIONS(1181), 1, + aux_sym__line_token1, + ACTIONS(1185), 1, sym__block_quote_continuation, - ACTIONS(1224), 1, + ACTIONS(1234), 1, sym__block_close, - STATE(649), 1, + STATE(689), 1, aux_sym__block_quote_prefix_repeat1, - STATE(922), 1, + STATE(776), 1, sym__block_quote_prefix, - STATE(411), 2, - sym__list_item_star, - aux_sym__list_star_repeat1, - [13304] = 6, - ACTIONS(25), 1, - sym_list_marker_dash, - ACTIONS(1226), 1, + STATE(421), 2, + sym__line, + aux_sym_code_repeat1, + [13574] = 7, + ACTIONS(1236), 1, sym__block_close, - ACTIONS(1228), 1, + ACTIONS(1238), 1, + sym_list_marker_plus, + ACTIONS(1241), 1, sym__block_quote_continuation, - STATE(706), 1, + STATE(413), 1, + aux_sym__list_plus_repeat1, + STATE(651), 1, + sym__list_item_plus, + STATE(663), 1, aux_sym__block_quote_prefix_repeat1, - STATE(924), 1, + STATE(1070), 1, sym__block_quote_prefix, - STATE(413), 2, - sym__list_item_dash, - aux_sym__list_dash_repeat1, - [13324] = 6, + [13596] = 7, ACTIONS(29), 1, sym_list_marker_plus, - ACTIONS(1218), 1, - sym__block_quote_continuation, - ACTIONS(1230), 1, - sym__block_close, - STATE(652), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(923), 1, - sym__block_quote_prefix, - STATE(412), 2, - sym__list_item_plus, - aux_sym__list_plus_repeat1, - [13344] = 6, - ACTIONS(1232), 1, + ACTIONS(1244), 1, sym__block_close, - ACTIONS(1234), 1, - sym_list_marker_star, - ACTIONS(1237), 1, + ACTIONS(1246), 1, sym__block_quote_continuation, - STATE(649), 1, + STATE(413), 1, + aux_sym__list_plus_repeat1, + STATE(651), 1, + sym__list_item_plus, + STATE(663), 1, aux_sym__block_quote_prefix_repeat1, - STATE(922), 1, + STATE(1070), 1, sym__block_quote_prefix, - STATE(411), 2, - sym__list_item_star, - aux_sym__list_star_repeat1, - [13364] = 6, - ACTIONS(1240), 1, + [13618] = 7, + ACTIONS(25), 1, + sym_list_marker_dash, + ACTIONS(1248), 1, sym__block_close, - ACTIONS(1242), 1, - sym_list_marker_plus, - ACTIONS(1245), 1, + ACTIONS(1250), 1, sym__block_quote_continuation, - STATE(652), 1, + STATE(429), 1, + aux_sym__list_dash_repeat1, + STATE(634), 1, + sym__list_item_dash, + STATE(722), 1, aux_sym__block_quote_prefix_repeat1, - STATE(923), 1, + STATE(987), 1, sym__block_quote_prefix, - STATE(412), 2, - sym__list_item_plus, - aux_sym__list_plus_repeat1, - [13384] = 6, - ACTIONS(1248), 1, + [13640] = 7, + ACTIONS(27), 1, + sym_list_marker_star, + ACTIONS(1252), 1, sym__block_close, - ACTIONS(1250), 1, - sym_list_marker_dash, - ACTIONS(1253), 1, + ACTIONS(1254), 1, sym__block_quote_continuation, - STATE(706), 1, + STATE(430), 1, + aux_sym__list_star_repeat1, + STATE(673), 1, aux_sym__block_quote_prefix_repeat1, - STATE(924), 1, + STATE(697), 1, + sym__list_item_star, + STATE(984), 1, sym__block_quote_prefix, - STATE(413), 2, - sym__list_item_dash, - aux_sym__list_dash_repeat1, - [13404] = 6, - ACTIONS(25), 1, - sym_list_marker_dash, - ACTIONS(1228), 1, + [13662] = 7, + ACTIONS(29), 1, + sym_list_marker_plus, + ACTIONS(1246), 1, sym__block_quote_continuation, ACTIONS(1256), 1, sym__block_close, - STATE(706), 1, + STATE(413), 1, + aux_sym__list_plus_repeat1, + STATE(651), 1, + sym__list_item_plus, + STATE(663), 1, aux_sym__block_quote_prefix_repeat1, - STATE(924), 1, + STATE(1070), 1, sym__block_quote_prefix, - STATE(413), 2, - sym__list_item_dash, - aux_sym__list_dash_repeat1, - [13424] = 6, + [13684] = 7, ACTIONS(25), 1, sym_list_marker_dash, - ACTIONS(1228), 1, + ACTIONS(1250), 1, sym__block_quote_continuation, ACTIONS(1258), 1, sym__block_close, - STATE(706), 1, + STATE(429), 1, + aux_sym__list_dash_repeat1, + STATE(634), 1, + sym__list_item_dash, + STATE(722), 1, aux_sym__block_quote_prefix_repeat1, - STATE(924), 1, + STATE(987), 1, sym__block_quote_prefix, - STATE(413), 2, - sym__list_item_dash, - aux_sym__list_dash_repeat1, - [13444] = 6, - ACTIONS(27), 1, - sym_list_marker_star, - ACTIONS(1222), 1, + [13706] = 7, + ACTIONS(29), 1, + sym_list_marker_plus, + ACTIONS(1246), 1, sym__block_quote_continuation, ACTIONS(1260), 1, sym__block_close, - STATE(649), 1, + STATE(413), 1, + aux_sym__list_plus_repeat1, + STATE(651), 1, + sym__list_item_plus, + STATE(663), 1, aux_sym__block_quote_prefix_repeat1, - STATE(922), 1, + STATE(1070), 1, sym__block_quote_prefix, - STATE(411), 2, - sym__list_item_star, - aux_sym__list_star_repeat1, - [13464] = 6, - ACTIONS(29), 1, - sym_list_marker_plus, - ACTIONS(1218), 1, + [13728] = 7, + ACTIONS(27), 1, + sym_list_marker_star, + ACTIONS(1254), 1, sym__block_quote_continuation, ACTIONS(1262), 1, sym__block_close, - STATE(652), 1, + STATE(430), 1, + aux_sym__list_star_repeat1, + STATE(673), 1, aux_sym__block_quote_prefix_repeat1, - STATE(923), 1, + STATE(697), 1, + sym__list_item_star, + STATE(984), 1, sym__block_quote_prefix, - STATE(412), 2, - sym__list_item_plus, - aux_sym__list_plus_repeat1, - [13484] = 6, - ACTIONS(25), 1, - sym_list_marker_dash, - ACTIONS(1228), 1, - sym__block_quote_continuation, + [13750] = 6, ACTIONS(1264), 1, + aux_sym__line_token1, + ACTIONS(1267), 1, sym__block_close, - STATE(706), 1, + ACTIONS(1269), 1, + sym__block_quote_continuation, + STATE(689), 1, aux_sym__block_quote_prefix_repeat1, - STATE(924), 1, + STATE(776), 1, sym__block_quote_prefix, - STATE(413), 2, - sym__list_item_dash, - aux_sym__list_dash_repeat1, - [13504] = 6, - ACTIONS(1162), 1, - aux_sym__line_token1, - ACTIONS(1166), 1, + STATE(421), 2, + sym__line, + aux_sym_code_repeat1, + [13770] = 7, + ACTIONS(27), 1, + sym_list_marker_star, + ACTIONS(1254), 1, sym__block_quote_continuation, - ACTIONS(1266), 1, + ACTIONS(1272), 1, sym__block_close, + STATE(430), 1, + aux_sym__list_star_repeat1, STATE(673), 1, aux_sym__block_quote_prefix_repeat1, - STATE(733), 1, + STATE(697), 1, + sym__list_item_star, + STATE(984), 1, sym__block_quote_prefix, - STATE(423), 2, - sym__line, - aux_sym_code_repeat1, - [13524] = 6, + [13792] = 7, ACTIONS(25), 1, sym_list_marker_dash, - ACTIONS(1228), 1, + ACTIONS(1250), 1, sym__block_quote_continuation, - ACTIONS(1268), 1, + ACTIONS(1274), 1, sym__block_close, - STATE(706), 1, + STATE(429), 1, + aux_sym__list_dash_repeat1, + STATE(634), 1, + sym__list_item_dash, + STATE(722), 1, aux_sym__block_quote_prefix_repeat1, - STATE(924), 1, + STATE(987), 1, sym__block_quote_prefix, - STATE(413), 2, - sym__list_item_dash, + [13814] = 7, + ACTIONS(25), 1, + sym_list_marker_dash, + ACTIONS(1250), 1, + sym__block_quote_continuation, + ACTIONS(1276), 1, + sym__block_close, + STATE(429), 1, aux_sym__list_dash_repeat1, - [13544] = 6, + STATE(634), 1, + sym__list_item_dash, + STATE(722), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(987), 1, + sym__block_quote_prefix, + [13836] = 7, ACTIONS(29), 1, sym_list_marker_plus, - ACTIONS(1218), 1, + ACTIONS(1246), 1, sym__block_quote_continuation, - ACTIONS(1270), 1, + ACTIONS(1278), 1, sym__block_close, - STATE(652), 1, + STATE(413), 1, + aux_sym__list_plus_repeat1, + STATE(651), 1, + sym__list_item_plus, + STATE(663), 1, aux_sym__block_quote_prefix_repeat1, - STATE(923), 1, + STATE(1070), 1, sym__block_quote_prefix, - STATE(412), 2, - sym__list_item_plus, - aux_sym__list_plus_repeat1, - [13564] = 6, + [13858] = 7, ACTIONS(27), 1, sym_list_marker_star, - ACTIONS(1222), 1, + ACTIONS(1254), 1, sym__block_quote_continuation, - ACTIONS(1272), 1, + ACTIONS(1280), 1, sym__block_close, - STATE(649), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(922), 1, - sym__block_quote_prefix, - STATE(411), 2, - sym__list_item_star, + STATE(430), 1, aux_sym__list_star_repeat1, - [13584] = 6, - ACTIONS(1274), 1, - aux_sym__line_token1, - ACTIONS(1277), 1, - sym__block_close, - ACTIONS(1279), 1, - sym__block_quote_continuation, STATE(673), 1, aux_sym__block_quote_prefix_repeat1, - STATE(733), 1, + STATE(697), 1, + sym__list_item_star, + STATE(984), 1, sym__block_quote_prefix, - STATE(423), 2, - sym__line, - aux_sym_code_repeat1, - [13604] = 6, + [13880] = 7, ACTIONS(27), 1, sym_list_marker_star, - ACTIONS(1222), 1, + ACTIONS(1254), 1, sym__block_quote_continuation, ACTIONS(1282), 1, sym__block_close, - STATE(649), 1, + STATE(430), 1, + aux_sym__list_star_repeat1, + STATE(673), 1, aux_sym__block_quote_prefix_repeat1, - STATE(922), 1, - sym__block_quote_prefix, - STATE(411), 2, + STATE(697), 1, sym__list_item_star, - aux_sym__list_star_repeat1, - [13624] = 6, + STATE(984), 1, + sym__block_quote_prefix, + [13902] = 7, ACTIONS(29), 1, sym_list_marker_plus, - ACTIONS(1218), 1, + ACTIONS(1246), 1, sym__block_quote_continuation, ACTIONS(1284), 1, sym__block_close, - STATE(652), 1, + STATE(413), 1, + aux_sym__list_plus_repeat1, + STATE(651), 1, + sym__list_item_plus, + STATE(663), 1, aux_sym__block_quote_prefix_repeat1, - STATE(923), 1, + STATE(1070), 1, sym__block_quote_prefix, - STATE(412), 2, - sym__list_item_plus, - aux_sym__list_plus_repeat1, - [13644] = 1, - ACTIONS(546), 6, - sym__newline, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - sym__table_caption_begin, - anon_sym_PIPE, - [13653] = 6, + [13924] = 7, ACTIONS(1286), 1, - sym__list_item_continuation, + sym__block_close, ACTIONS(1288), 1, - sym__list_item_end, - ACTIONS(1290), 1, + sym_list_marker_dash, + ACTIONS(1291), 1, sym__block_quote_continuation, - STATE(460), 1, - aux_sym__list_item_definition_repeat1, - STATE(659), 1, + STATE(429), 1, + aux_sym__list_dash_repeat1, + STATE(634), 1, + sym__list_item_dash, + STATE(722), 1, aux_sym__block_quote_prefix_repeat1, - STATE(975), 1, + STATE(987), 1, sym__block_quote_prefix, - [13672] = 6, - ACTIONS(1286), 1, - sym__list_item_continuation, - ACTIONS(1290), 1, + [13946] = 7, + ACTIONS(1294), 1, + sym__block_close, + ACTIONS(1296), 1, + sym_list_marker_star, + ACTIONS(1299), 1, sym__block_quote_continuation, - ACTIONS(1292), 1, - sym__list_item_end, - STATE(480), 1, - aux_sym__list_item_definition_repeat1, - STATE(659), 1, + STATE(430), 1, + aux_sym__list_star_repeat1, + STATE(673), 1, aux_sym__block_quote_prefix_repeat1, - STATE(975), 1, + STATE(697), 1, + sym__list_item_star, + STATE(984), 1, sym__block_quote_prefix, - [13691] = 6, - ACTIONS(1286), 1, - sym__list_item_continuation, - ACTIONS(1290), 1, + [13968] = 7, + ACTIONS(25), 1, + sym_list_marker_dash, + ACTIONS(1250), 1, sym__block_quote_continuation, - ACTIONS(1294), 1, - sym__list_item_end, - STATE(480), 1, - aux_sym__list_item_definition_repeat1, - STATE(659), 1, + ACTIONS(1302), 1, + sym__block_close, + STATE(429), 1, + aux_sym__list_dash_repeat1, + STATE(634), 1, + sym__list_item_dash, + STATE(722), 1, aux_sym__block_quote_prefix_repeat1, - STATE(975), 1, + STATE(987), 1, sym__block_quote_prefix, - [13710] = 6, - ACTIONS(1286), 1, + [13990] = 1, + ACTIONS(1304), 6, + anon_sym_RBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + sym__whitespace1, + anon_sym_PERCENT, + sym__id, + [13999] = 6, + ACTIONS(1306), 1, sym__list_item_continuation, - ACTIONS(1290), 1, - sym__block_quote_continuation, - ACTIONS(1296), 1, + ACTIONS(1308), 1, sym__list_item_end, - STATE(431), 1, + ACTIONS(1310), 1, + sym__block_quote_continuation, + STATE(456), 1, aux_sym__list_item_definition_repeat1, - STATE(659), 1, + STATE(681), 1, aux_sym__block_quote_prefix_repeat1, - STATE(975), 1, + STATE(949), 1, sym__block_quote_prefix, - [13729] = 6, - ACTIONS(1286), 1, + [14018] = 6, + ACTIONS(1306), 1, sym__list_item_continuation, - ACTIONS(1290), 1, + ACTIONS(1310), 1, sym__block_quote_continuation, - ACTIONS(1298), 1, + ACTIONS(1312), 1, sym__list_item_end, - STATE(480), 1, + STATE(435), 1, aux_sym__list_item_definition_repeat1, - STATE(659), 1, + STATE(681), 1, aux_sym__block_quote_prefix_repeat1, - STATE(975), 1, + STATE(949), 1, sym__block_quote_prefix, - [13748] = 6, - ACTIONS(1286), 1, + [14037] = 6, + ACTIONS(1306), 1, sym__list_item_continuation, - ACTIONS(1290), 1, + ACTIONS(1310), 1, sym__block_quote_continuation, - ACTIONS(1300), 1, + ACTIONS(1314), 1, sym__list_item_end, - STATE(435), 1, + STATE(456), 1, aux_sym__list_item_definition_repeat1, - STATE(659), 1, + STATE(681), 1, aux_sym__block_quote_prefix_repeat1, - STATE(975), 1, + STATE(949), 1, sym__block_quote_prefix, - [13767] = 1, - ACTIONS(1302), 6, - anon_sym_RBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - sym__whitespace1, - anon_sym_PERCENT, - sym__id, - [13776] = 1, - ACTIONS(1304), 6, - anon_sym_RBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - sym__whitespace1, - anon_sym_PERCENT, - sym__id, - [13785] = 6, - ACTIONS(1286), 1, + [14056] = 6, + ACTIONS(1306), 1, sym__list_item_continuation, - ACTIONS(1290), 1, + ACTIONS(1310), 1, sym__block_quote_continuation, - ACTIONS(1306), 1, + ACTIONS(1316), 1, sym__list_item_end, - STATE(480), 1, + STATE(437), 1, aux_sym__list_item_definition_repeat1, - STATE(659), 1, + STATE(681), 1, aux_sym__block_quote_prefix_repeat1, - STATE(975), 1, + STATE(949), 1, sym__block_quote_prefix, - [13804] = 6, - ACTIONS(1286), 1, + [14075] = 6, + ACTIONS(1306), 1, sym__list_item_continuation, - ACTIONS(1290), 1, + ACTIONS(1310), 1, sym__block_quote_continuation, - ACTIONS(1308), 1, + ACTIONS(1318), 1, sym__list_item_end, - STATE(438), 1, + STATE(456), 1, aux_sym__list_item_definition_repeat1, - STATE(659), 1, + STATE(681), 1, aux_sym__block_quote_prefix_repeat1, - STATE(975), 1, + STATE(949), 1, sym__block_quote_prefix, - [13823] = 1, - ACTIONS(626), 6, - sym__newline, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - sym__table_caption_begin, - anon_sym_PIPE, - [13832] = 6, - ACTIONS(1286), 1, + [14094] = 6, + ACTIONS(1306), 1, sym__list_item_continuation, - ACTIONS(1290), 1, - sym__block_quote_continuation, ACTIONS(1310), 1, + sym__block_quote_continuation, + ACTIONS(1320), 1, sym__list_item_end, - STATE(480), 1, + STATE(439), 1, aux_sym__list_item_definition_repeat1, - STATE(659), 1, + STATE(681), 1, aux_sym__block_quote_prefix_repeat1, - STATE(975), 1, + STATE(949), 1, sym__block_quote_prefix, - [13851] = 1, - ACTIONS(636), 6, - sym__newline, + [14113] = 6, + ACTIONS(1306), 1, sym__list_item_continuation, - sym__list_item_end, + ACTIONS(1310), 1, sym__block_quote_continuation, - sym__table_caption_begin, - anon_sym_PIPE, - [13860] = 6, - ACTIONS(1286), 1, + ACTIONS(1322), 1, + sym__list_item_end, + STATE(456), 1, + aux_sym__list_item_definition_repeat1, + STATE(681), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(949), 1, + sym__block_quote_prefix, + [14132] = 6, + ACTIONS(1306), 1, sym__list_item_continuation, - ACTIONS(1290), 1, + ACTIONS(1310), 1, sym__block_quote_continuation, - ACTIONS(1312), 1, + ACTIONS(1324), 1, sym__list_item_end, - STATE(429), 1, + STATE(441), 1, aux_sym__list_item_definition_repeat1, - STATE(659), 1, + STATE(681), 1, aux_sym__block_quote_prefix_repeat1, - STATE(975), 1, + STATE(949), 1, sym__block_quote_prefix, - [13879] = 6, - ACTIONS(1286), 1, + [14151] = 6, + ACTIONS(1306), 1, sym__list_item_continuation, - ACTIONS(1290), 1, + ACTIONS(1310), 1, sym__block_quote_continuation, - ACTIONS(1314), 1, + ACTIONS(1326), 1, sym__list_item_end, - STATE(444), 1, + STATE(456), 1, aux_sym__list_item_definition_repeat1, - STATE(659), 1, + STATE(681), 1, aux_sym__block_quote_prefix_repeat1, - STATE(975), 1, + STATE(949), 1, sym__block_quote_prefix, - [13898] = 6, - ACTIONS(1286), 1, + [14170] = 6, + ACTIONS(1306), 1, sym__list_item_continuation, - ACTIONS(1290), 1, + ACTIONS(1310), 1, sym__block_quote_continuation, - ACTIONS(1316), 1, + ACTIONS(1328), 1, sym__list_item_end, STATE(443), 1, aux_sym__list_item_definition_repeat1, - STATE(659), 1, + STATE(681), 1, aux_sym__block_quote_prefix_repeat1, - STATE(975), 1, + STATE(949), 1, sym__block_quote_prefix, - [13917] = 6, - ACTIONS(1286), 1, + [14189] = 6, + ACTIONS(1306), 1, sym__list_item_continuation, - ACTIONS(1290), 1, + ACTIONS(1310), 1, sym__block_quote_continuation, - ACTIONS(1318), 1, + ACTIONS(1330), 1, sym__list_item_end, - STATE(480), 1, + STATE(456), 1, aux_sym__list_item_definition_repeat1, - STATE(659), 1, + STATE(681), 1, aux_sym__block_quote_prefix_repeat1, - STATE(975), 1, + STATE(949), 1, sym__block_quote_prefix, - [13936] = 6, - ACTIONS(1286), 1, + [14208] = 6, + ACTIONS(1306), 1, sym__list_item_continuation, - ACTIONS(1290), 1, + ACTIONS(1310), 1, sym__block_quote_continuation, - ACTIONS(1320), 1, + ACTIONS(1332), 1, sym__list_item_end, - STATE(480), 1, + STATE(445), 1, aux_sym__list_item_definition_repeat1, - STATE(659), 1, + STATE(681), 1, aux_sym__block_quote_prefix_repeat1, - STATE(975), 1, + STATE(949), 1, sym__block_quote_prefix, - [13955] = 6, - ACTIONS(1286), 1, + [14227] = 6, + ACTIONS(1306), 1, sym__list_item_continuation, - ACTIONS(1290), 1, + ACTIONS(1310), 1, sym__block_quote_continuation, - ACTIONS(1322), 1, + ACTIONS(1334), 1, sym__list_item_end, - STATE(446), 1, + STATE(456), 1, aux_sym__list_item_definition_repeat1, - STATE(659), 1, + STATE(681), 1, aux_sym__block_quote_prefix_repeat1, - STATE(975), 1, + STATE(949), 1, sym__block_quote_prefix, - [13974] = 6, - ACTIONS(1286), 1, + [14246] = 6, + ACTIONS(1306), 1, sym__list_item_continuation, - ACTIONS(1290), 1, + ACTIONS(1310), 1, sym__block_quote_continuation, - ACTIONS(1324), 1, + ACTIONS(1336), 1, sym__list_item_end, - STATE(480), 1, + STATE(447), 1, aux_sym__list_item_definition_repeat1, - STATE(659), 1, + STATE(681), 1, aux_sym__block_quote_prefix_repeat1, - STATE(975), 1, + STATE(949), 1, sym__block_quote_prefix, - [13993] = 6, - ACTIONS(1286), 1, + [14265] = 6, + ACTIONS(1306), 1, sym__list_item_continuation, - ACTIONS(1290), 1, + ACTIONS(1310), 1, sym__block_quote_continuation, - ACTIONS(1326), 1, + ACTIONS(1338), 1, sym__list_item_end, - STATE(448), 1, + STATE(456), 1, aux_sym__list_item_definition_repeat1, - STATE(659), 1, + STATE(681), 1, aux_sym__block_quote_prefix_repeat1, - STATE(975), 1, + STATE(949), 1, sym__block_quote_prefix, - [14012] = 6, - ACTIONS(1286), 1, + [14284] = 6, + ACTIONS(1306), 1, sym__list_item_continuation, - ACTIONS(1290), 1, + ACTIONS(1310), 1, sym__block_quote_continuation, - ACTIONS(1328), 1, + ACTIONS(1340), 1, sym__list_item_end, - STATE(480), 1, + STATE(449), 1, aux_sym__list_item_definition_repeat1, - STATE(659), 1, + STATE(681), 1, aux_sym__block_quote_prefix_repeat1, - STATE(975), 1, + STATE(949), 1, sym__block_quote_prefix, - [14031] = 1, - ACTIONS(1330), 6, - anon_sym_RBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - sym__whitespace1, - anon_sym_PERCENT, - sym__id, - [14040] = 1, - ACTIONS(1332), 6, - anon_sym_RBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - sym__whitespace1, - anon_sym_PERCENT, - sym__id, - [14049] = 6, - ACTIONS(1286), 1, + [14303] = 6, + ACTIONS(1306), 1, sym__list_item_continuation, - ACTIONS(1290), 1, + ACTIONS(1310), 1, sym__block_quote_continuation, - ACTIONS(1334), 1, + ACTIONS(1342), 1, sym__list_item_end, - STATE(452), 1, + STATE(456), 1, aux_sym__list_item_definition_repeat1, - STATE(659), 1, + STATE(681), 1, aux_sym__block_quote_prefix_repeat1, - STATE(975), 1, + STATE(949), 1, sym__block_quote_prefix, - [14068] = 6, - ACTIONS(1286), 1, + [14322] = 6, + ACTIONS(1306), 1, sym__list_item_continuation, - ACTIONS(1290), 1, + ACTIONS(1310), 1, sym__block_quote_continuation, - ACTIONS(1336), 1, + ACTIONS(1344), 1, sym__list_item_end, - STATE(480), 1, + STATE(451), 1, aux_sym__list_item_definition_repeat1, - STATE(659), 1, + STATE(681), 1, aux_sym__block_quote_prefix_repeat1, - STATE(975), 1, + STATE(949), 1, sym__block_quote_prefix, - [14087] = 6, - ACTIONS(1286), 1, + [14341] = 6, + ACTIONS(1306), 1, sym__list_item_continuation, - ACTIONS(1290), 1, + ACTIONS(1310), 1, sym__block_quote_continuation, - ACTIONS(1338), 1, + ACTIONS(1346), 1, sym__list_item_end, - STATE(455), 1, + STATE(456), 1, aux_sym__list_item_definition_repeat1, - STATE(659), 1, + STATE(681), 1, aux_sym__block_quote_prefix_repeat1, - STATE(975), 1, + STATE(949), 1, sym__block_quote_prefix, - [14106] = 1, - ACTIONS(570), 6, - sym__newline, + [14360] = 6, + ACTIONS(1306), 1, sym__list_item_continuation, - sym__list_item_end, + ACTIONS(1310), 1, sym__block_quote_continuation, - sym__table_caption_begin, - anon_sym_PIPE, - [14115] = 6, - ACTIONS(1286), 1, + ACTIONS(1348), 1, + sym__list_item_end, + STATE(456), 1, + aux_sym__list_item_definition_repeat1, + STATE(681), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(949), 1, + sym__block_quote_prefix, + [14379] = 6, + ACTIONS(1306), 1, sym__list_item_continuation, - ACTIONS(1290), 1, + ACTIONS(1310), 1, sym__block_quote_continuation, - ACTIONS(1340), 1, + ACTIONS(1350), 1, sym__list_item_end, - STATE(480), 1, + STATE(455), 1, aux_sym__list_item_definition_repeat1, - STATE(659), 1, + STATE(681), 1, aux_sym__block_quote_prefix_repeat1, - STATE(975), 1, + STATE(949), 1, sym__block_quote_prefix, - [14134] = 6, - ACTIONS(1286), 1, + [14398] = 6, + ACTIONS(1306), 1, sym__list_item_continuation, - ACTIONS(1290), 1, + ACTIONS(1310), 1, sym__block_quote_continuation, - ACTIONS(1342), 1, + ACTIONS(1352), 1, sym__list_item_end, - STATE(457), 1, + STATE(456), 1, aux_sym__list_item_definition_repeat1, - STATE(659), 1, + STATE(681), 1, aux_sym__block_quote_prefix_repeat1, - STATE(975), 1, + STATE(949), 1, sym__block_quote_prefix, - [14153] = 6, - ACTIONS(1286), 1, + [14417] = 6, + ACTIONS(1306), 1, sym__list_item_continuation, - ACTIONS(1290), 1, + ACTIONS(1310), 1, sym__block_quote_continuation, - ACTIONS(1344), 1, + ACTIONS(1354), 1, sym__list_item_end, - STATE(480), 1, + STATE(456), 1, aux_sym__list_item_definition_repeat1, - STATE(659), 1, + STATE(681), 1, aux_sym__block_quote_prefix_repeat1, - STATE(975), 1, + STATE(949), 1, sym__block_quote_prefix, - [14172] = 6, - ACTIONS(1286), 1, + [14436] = 6, + ACTIONS(1356), 1, sym__list_item_continuation, - ACTIONS(1290), 1, - sym__block_quote_continuation, - ACTIONS(1346), 1, + ACTIONS(1359), 1, sym__list_item_end, - STATE(480), 1, + ACTIONS(1361), 1, + sym__block_quote_continuation, + STATE(456), 1, aux_sym__list_item_definition_repeat1, - STATE(659), 1, + STATE(681), 1, aux_sym__block_quote_prefix_repeat1, - STATE(975), 1, + STATE(949), 1, sym__block_quote_prefix, - [14191] = 1, - ACTIONS(564), 6, + [14455] = 1, + ACTIONS(618), 6, sym__newline, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, sym__table_caption_begin, anon_sym_PIPE, - [14200] = 6, - ACTIONS(1286), 1, - sym__list_item_continuation, - ACTIONS(1290), 1, - sym__block_quote_continuation, - ACTIONS(1348), 1, - sym__list_item_end, - STATE(480), 1, - aux_sym__list_item_definition_repeat1, - STATE(659), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(975), 1, - sym__block_quote_prefix, - [14219] = 6, - ACTIONS(1286), 1, + [14464] = 6, + ACTIONS(1306), 1, sym__list_item_continuation, - ACTIONS(1290), 1, + ACTIONS(1310), 1, sym__block_quote_continuation, - ACTIONS(1350), 1, + ACTIONS(1364), 1, sym__list_item_end, - STATE(428), 1, + STATE(456), 1, aux_sym__list_item_definition_repeat1, - STATE(659), 1, + STATE(681), 1, aux_sym__block_quote_prefix_repeat1, - STATE(975), 1, + STATE(949), 1, sym__block_quote_prefix, - [14238] = 1, - ACTIONS(578), 6, + [14483] = 1, + ACTIONS(564), 6, sym__newline, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, sym__table_caption_begin, anon_sym_PIPE, - [14247] = 6, - ACTIONS(1286), 1, + [14492] = 6, + ACTIONS(1306), 1, sym__list_item_continuation, - ACTIONS(1290), 1, + ACTIONS(1310), 1, sym__block_quote_continuation, - ACTIONS(1352), 1, + ACTIONS(1366), 1, sym__list_item_end, - STATE(473), 1, + STATE(452), 1, aux_sym__list_item_definition_repeat1, - STATE(659), 1, + STATE(681), 1, aux_sym__block_quote_prefix_repeat1, - STATE(975), 1, + STATE(949), 1, sym__block_quote_prefix, - [14266] = 6, - ACTIONS(1286), 1, + [14511] = 1, + ACTIONS(1368), 6, + anon_sym_RBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + sym__whitespace1, + anon_sym_PERCENT, + sym__id, + [14520] = 1, + ACTIONS(1370), 6, + anon_sym_RBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + sym__whitespace1, + anon_sym_PERCENT, + sym__id, + [14529] = 1, + ACTIONS(568), 6, + sym__newline, sym__list_item_continuation, - ACTIONS(1290), 1, - sym__block_quote_continuation, - ACTIONS(1354), 1, sym__list_item_end, - STATE(480), 1, - aux_sym__list_item_definition_repeat1, - STATE(659), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(975), 1, - sym__block_quote_prefix, - [14285] = 6, - ACTIONS(1286), 1, + sym__block_quote_continuation, + sym__table_caption_begin, + anon_sym_PIPE, + [14538] = 6, + ACTIONS(1306), 1, sym__list_item_continuation, - ACTIONS(1290), 1, + ACTIONS(1310), 1, sym__block_quote_continuation, - ACTIONS(1356), 1, + ACTIONS(1372), 1, sym__list_item_end, - STATE(464), 1, + STATE(466), 1, aux_sym__list_item_definition_repeat1, - STATE(659), 1, + STATE(681), 1, aux_sym__block_quote_prefix_repeat1, - STATE(975), 1, + STATE(949), 1, sym__block_quote_prefix, - [14304] = 1, - ACTIONS(1358), 6, + [14557] = 1, + ACTIONS(1374), 6, anon_sym_RBRACE, anon_sym_DOT, aux_sym_identifier_token1, sym__whitespace1, anon_sym_PERCENT, sym__id, - [14313] = 6, - ACTIONS(1286), 1, + [14566] = 6, + ACTIONS(1306), 1, sym__list_item_continuation, - ACTIONS(1290), 1, + ACTIONS(1310), 1, sym__block_quote_continuation, - ACTIONS(1360), 1, + ACTIONS(1376), 1, sym__list_item_end, - STATE(480), 1, + STATE(456), 1, aux_sym__list_item_definition_repeat1, - STATE(659), 1, + STATE(681), 1, aux_sym__block_quote_prefix_repeat1, - STATE(975), 1, + STATE(949), 1, sym__block_quote_prefix, - [14332] = 6, - ACTIONS(1286), 1, + [14585] = 1, + ACTIONS(1378), 6, + anon_sym_RBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + sym__whitespace1, + anon_sym_PERCENT, + sym__id, + [14594] = 6, + ACTIONS(1306), 1, sym__list_item_continuation, - ACTIONS(1290), 1, + ACTIONS(1310), 1, sym__block_quote_continuation, - ACTIONS(1362), 1, + ACTIONS(1380), 1, sym__list_item_end, - STATE(480), 1, + STATE(458), 1, aux_sym__list_item_definition_repeat1, - STATE(659), 1, + STATE(681), 1, aux_sym__block_quote_prefix_repeat1, - STATE(975), 1, + STATE(949), 1, sym__block_quote_prefix, - [14351] = 6, - ACTIONS(1286), 1, + [14613] = 1, + ACTIONS(590), 6, + sym__newline, sym__list_item_continuation, - ACTIONS(1290), 1, + sym__list_item_end, sym__block_quote_continuation, - ACTIONS(1364), 1, + sym__table_caption_begin, + anon_sym_PIPE, + [14622] = 1, + ACTIONS(1382), 6, + anon_sym_RBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + sym__whitespace1, + anon_sym_PERCENT, + sym__id, + [14631] = 1, + ACTIONS(1384), 6, + anon_sym_RBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + sym__whitespace1, + anon_sym_PERCENT, + sym__id, + [14640] = 1, + ACTIONS(622), 6, + sym__newline, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + sym__table_caption_begin, + anon_sym_PIPE, + [14649] = 6, + ACTIONS(1306), 1, + sym__list_item_continuation, + ACTIONS(1310), 1, + sym__block_quote_continuation, + ACTIONS(1386), 1, sym__list_item_end, - STATE(471), 1, + STATE(454), 1, aux_sym__list_item_definition_repeat1, - STATE(659), 1, + STATE(681), 1, aux_sym__block_quote_prefix_repeat1, - STATE(975), 1, + STATE(949), 1, sym__block_quote_prefix, - [14370] = 6, - ACTIONS(1286), 1, + [14668] = 1, + ACTIONS(1388), 6, + anon_sym_RBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + sym__whitespace1, + anon_sym_PERCENT, + sym__id, + [14677] = 1, + ACTIONS(594), 6, + sym__newline, sym__list_item_continuation, - ACTIONS(1290), 1, + sym__list_item_end, sym__block_quote_continuation, - ACTIONS(1366), 1, + sym__table_caption_begin, + anon_sym_PIPE, + [14686] = 6, + ACTIONS(1306), 1, + sym__list_item_continuation, + ACTIONS(1310), 1, + sym__block_quote_continuation, + ACTIONS(1390), 1, sym__list_item_end, - STATE(468), 1, + STATE(478), 1, aux_sym__list_item_definition_repeat1, - STATE(659), 1, + STATE(681), 1, aux_sym__block_quote_prefix_repeat1, - STATE(975), 1, + STATE(949), 1, sym__block_quote_prefix, - [14389] = 6, - ACTIONS(1286), 1, + [14705] = 1, + ACTIONS(1392), 6, + anon_sym_RBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + sym__whitespace1, + anon_sym_PERCENT, + sym__id, + [14714] = 6, + ACTIONS(1306), 1, sym__list_item_continuation, - ACTIONS(1290), 1, + ACTIONS(1310), 1, sym__block_quote_continuation, - ACTIONS(1368), 1, + ACTIONS(1394), 1, + sym__list_item_end, + STATE(456), 1, + aux_sym__list_item_definition_repeat1, + STATE(681), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(949), 1, + sym__block_quote_prefix, + [14733] = 6, + ACTIONS(1306), 1, + sym__list_item_continuation, + ACTIONS(1310), 1, + sym__block_quote_continuation, + ACTIONS(1396), 1, sym__list_item_end, STATE(480), 1, aux_sym__list_item_definition_repeat1, - STATE(659), 1, + STATE(681), 1, aux_sym__block_quote_prefix_repeat1, - STATE(975), 1, + STATE(949), 1, sym__block_quote_prefix, - [14408] = 6, - ACTIONS(1286), 1, + [14752] = 6, + ACTIONS(1306), 1, sym__list_item_continuation, - ACTIONS(1290), 1, + ACTIONS(1310), 1, sym__block_quote_continuation, - ACTIONS(1370), 1, + ACTIONS(1398), 1, sym__list_item_end, - STATE(467), 1, + STATE(456), 1, aux_sym__list_item_definition_repeat1, - STATE(659), 1, + STATE(681), 1, aux_sym__block_quote_prefix_repeat1, - STATE(975), 1, + STATE(949), 1, sym__block_quote_prefix, - [14427] = 6, - ACTIONS(1286), 1, + [14771] = 6, + ACTIONS(1306), 1, sym__list_item_continuation, - ACTIONS(1290), 1, + ACTIONS(1310), 1, sym__block_quote_continuation, - ACTIONS(1372), 1, + ACTIONS(1400), 1, sym__list_item_end, - STATE(480), 1, + STATE(482), 1, aux_sym__list_item_definition_repeat1, - STATE(659), 1, + STATE(681), 1, aux_sym__block_quote_prefix_repeat1, - STATE(975), 1, + STATE(949), 1, sym__block_quote_prefix, - [14446] = 1, - ACTIONS(1374), 6, - anon_sym_RBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - sym__whitespace1, - anon_sym_PERCENT, - sym__id, - [14455] = 1, - ACTIONS(1376), 6, + [14790] = 6, + ACTIONS(1306), 1, + sym__list_item_continuation, + ACTIONS(1310), 1, + sym__block_quote_continuation, + ACTIONS(1402), 1, + sym__list_item_end, + STATE(456), 1, + aux_sym__list_item_definition_repeat1, + STATE(681), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(949), 1, + sym__block_quote_prefix, + [14809] = 1, + ACTIONS(1404), 6, anon_sym_RBRACE, anon_sym_DOT, aux_sym_identifier_token1, sym__whitespace1, anon_sym_PERCENT, sym__id, - [14464] = 6, - ACTIONS(1286), 1, + [14818] = 6, + ACTIONS(1306), 1, sym__list_item_continuation, - ACTIONS(1290), 1, + ACTIONS(1310), 1, sym__block_quote_continuation, - ACTIONS(1378), 1, + ACTIONS(1406), 1, sym__list_item_end, - STATE(458), 1, + STATE(485), 1, aux_sym__list_item_definition_repeat1, - STATE(659), 1, + STATE(681), 1, aux_sym__block_quote_prefix_repeat1, - STATE(975), 1, + STATE(949), 1, sym__block_quote_prefix, - [14483] = 1, - ACTIONS(588), 6, - sym__newline, + [14837] = 6, + ACTIONS(1306), 1, sym__list_item_continuation, - sym__list_item_end, + ACTIONS(1310), 1, sym__block_quote_continuation, - sym__table_caption_begin, - anon_sym_PIPE, - [14492] = 6, - ACTIONS(1286), 1, + ACTIONS(1408), 1, + sym__list_item_end, + STATE(456), 1, + aux_sym__list_item_definition_repeat1, + STATE(681), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(949), 1, + sym__block_quote_prefix, + [14856] = 6, + ACTIONS(1306), 1, sym__list_item_continuation, - ACTIONS(1290), 1, + ACTIONS(1310), 1, sym__block_quote_continuation, - ACTIONS(1380), 1, + ACTIONS(1410), 1, sym__list_item_end, - STATE(480), 1, + STATE(487), 1, aux_sym__list_item_definition_repeat1, - STATE(659), 1, + STATE(681), 1, aux_sym__block_quote_prefix_repeat1, - STATE(975), 1, + STATE(949), 1, sym__block_quote_prefix, - [14511] = 6, - ACTIONS(1286), 1, + [14875] = 6, + ACTIONS(1306), 1, sym__list_item_continuation, - ACTIONS(1290), 1, + ACTIONS(1310), 1, sym__block_quote_continuation, - ACTIONS(1382), 1, + ACTIONS(1412), 1, sym__list_item_end, - STATE(478), 1, + STATE(456), 1, aux_sym__list_item_definition_repeat1, - STATE(659), 1, + STATE(681), 1, aux_sym__block_quote_prefix_repeat1, - STATE(975), 1, + STATE(949), 1, sym__block_quote_prefix, - [14530] = 6, - ACTIONS(1384), 1, + [14894] = 6, + ACTIONS(1306), 1, sym__list_item_continuation, - ACTIONS(1387), 1, - sym__list_item_end, - ACTIONS(1389), 1, + ACTIONS(1310), 1, sym__block_quote_continuation, - STATE(480), 1, + ACTIONS(1414), 1, + sym__list_item_end, + STATE(433), 1, aux_sym__list_item_definition_repeat1, - STATE(659), 1, + STATE(681), 1, aux_sym__block_quote_prefix_repeat1, - STATE(975), 1, + STATE(949), 1, sym__block_quote_prefix, - [14549] = 1, - ACTIONS(1392), 6, - anon_sym_RBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - sym__whitespace1, - anon_sym_PERCENT, - sym__id, - [14558] = 1, - ACTIONS(1394), 6, - anon_sym_RBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - sym__whitespace1, - anon_sym_PERCENT, - sym__id, - [14567] = 1, - ACTIONS(570), 5, + [14913] = 1, + ACTIONS(604), 6, + sym__newline, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + sym__table_caption_begin, + anon_sym_PIPE, + [14922] = 1, + ACTIONS(604), 5, sym__block_close, sym__newline, sym__block_quote_continuation, sym__table_caption_begin, anon_sym_PIPE, - [14575] = 1, - ACTIONS(546), 5, + [14930] = 3, + ACTIONS(1102), 1, + sym__table_caption_begin, + STATE(682), 1, + sym_table_caption, + ACTIONS(530), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [14942] = 1, + ACTIONS(568), 5, sym__block_close, sym__newline, sym__block_quote_continuation, sym__table_caption_begin, anon_sym_PIPE, - [14583] = 1, + [14950] = 1, ACTIONS(564), 5, sym__block_close, sym__newline, sym__block_quote_continuation, sym__table_caption_begin, anon_sym_PIPE, - [14591] = 4, - ACTIONS(1396), 1, + [14958] = 1, + ACTIONS(622), 5, sym__block_close, - ACTIONS(1398), 1, + sym__newline, sym__block_quote_continuation, - STATE(486), 1, - aux_sym__block_quote_content_repeat1, - STATE(63), 2, - sym__block_quote_prefix, - aux_sym__block_quote_prefix_repeat1, - [14605] = 4, - ACTIONS(1401), 1, + sym__table_caption_begin, + anon_sym_PIPE, + [14966] = 1, + ACTIONS(594), 5, + sym__block_close, + sym__newline, + sym__block_quote_continuation, + sym__table_caption_begin, + anon_sym_PIPE, + [14974] = 4, + ACTIONS(1416), 1, sym__block_close, - ACTIONS(1403), 1, + ACTIONS(1418), 1, sym__block_quote_continuation, - STATE(486), 1, + STATE(496), 1, aux_sym__block_quote_content_repeat1, STATE(63), 2, sym__block_quote_prefix, aux_sym__block_quote_prefix_repeat1, - [14619] = 3, - ACTIONS(1068), 1, - sym__table_caption_begin, - STATE(648), 1, - sym_table_caption, - ACTIONS(528), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [14631] = 1, - ACTIONS(626), 5, + [14988] = 1, + ACTIONS(618), 5, sym__block_close, sym__newline, sym__block_quote_continuation, sym__table_caption_begin, anon_sym_PIPE, - [14639] = 1, - ACTIONS(636), 5, + [14996] = 4, + ACTIONS(1421), 1, sym__block_close, - sym__newline, + ACTIONS(1423), 1, sym__block_quote_continuation, - sym__table_caption_begin, - anon_sym_PIPE, - [14647] = 4, - ACTIONS(1403), 1, + STATE(499), 1, + aux_sym__block_quote_content_repeat1, + STATE(63), 2, + sym__block_quote_prefix, + aux_sym__block_quote_prefix_repeat1, + [15010] = 4, + ACTIONS(1423), 1, sym__block_quote_continuation, - ACTIONS(1405), 1, + ACTIONS(1425), 1, sym__block_close, - STATE(487), 1, + STATE(496), 1, aux_sym__block_quote_content_repeat1, STATE(63), 2, sym__block_quote_prefix, aux_sym__block_quote_prefix_repeat1, - [14661] = 1, - ACTIONS(588), 5, + [15024] = 1, + ACTIONS(590), 5, sym__block_close, sym__newline, sym__block_quote_continuation, sym__table_caption_begin, anon_sym_PIPE, - [14669] = 1, - ACTIONS(578), 5, - sym__block_close, + [15032] = 4, + ACTIONS(1427), 1, + anon_sym_EQ, + ACTIONS(1429), 1, + sym_language, + ACTIONS(1431), 1, sym__newline, - sym__block_quote_continuation, - sym__table_caption_begin, - anon_sym_PIPE, - [14677] = 3, - ACTIONS(57), 1, - sym_list_marker_lower_alpha_parens, - ACTIONS(1407), 1, - sym__block_close, - STATE(550), 2, - sym__list_item_lower_alpha_parens, - aux_sym__list_lower_alpha_parens_repeat1, - [14688] = 3, - ACTIONS(37), 1, - sym_list_marker_lower_alpha_period, - ACTIONS(1409), 1, - sym__block_close, - STATE(548), 2, - sym__list_item_lower_alpha_period, - aux_sym__list_lower_alpha_period_repeat1, - [14699] = 3, - ACTIONS(53), 1, - sym_list_marker_upper_roman_paren, - ACTIONS(1411), 1, - sym__block_close, - STATE(600), 2, - sym__list_item_upper_roman_paren, - aux_sym__list_upper_roman_paren_repeat1, - [14710] = 3, - ACTIONS(43), 1, - sym_list_marker_upper_roman_period, - ACTIONS(1413), 1, - sym__block_close, - STATE(601), 2, - sym__list_item_upper_roman_period, - aux_sym__list_upper_roman_period_repeat1, - [14721] = 3, - ACTIONS(61), 1, - sym_list_marker_lower_roman_parens, - ACTIONS(1415), 1, - sym__block_close, - STATE(557), 2, - sym__list_item_lower_roman_parens, - aux_sym__list_lower_roman_parens_repeat1, - [14732] = 3, - ACTIONS(51), 1, - sym_list_marker_lower_roman_paren, - ACTIONS(1417), 1, - sym__block_close, - STATE(555), 2, - sym__list_item_lower_roman_paren, - aux_sym__list_lower_roman_paren_repeat1, - [14743] = 3, - ACTIONS(41), 1, - sym_list_marker_lower_roman_period, - ACTIONS(1419), 1, - sym__block_close, - STATE(554), 2, - sym__list_item_lower_roman_period, - aux_sym__list_lower_roman_period_repeat1, - [14754] = 3, - ACTIONS(59), 1, - sym_list_marker_upper_alpha_parens, - ACTIONS(1421), 1, - sym__block_close, - STATE(553), 2, - sym__list_item_upper_alpha_parens, - aux_sym__list_upper_alpha_parens_repeat1, - [14765] = 3, + STATE(1062), 1, + sym_raw_block_info, + [15045] = 3, + ACTIONS(1433), 1, + aux_sym__line_token1, + STATE(1014), 1, + sym_frontmatter_content, + STATE(505), 2, + sym__line, + aux_sym_frontmatter_content_repeat1, + [15056] = 4, + ACTIONS(1427), 1, + anon_sym_EQ, + ACTIONS(1435), 1, + sym_language, + ACTIONS(1437), 1, + sym__newline, + STATE(1057), 1, + sym_raw_block_info, + [15069] = 3, + ACTIONS(1439), 1, + anon_sym_PERCENT, + STATE(508), 1, + aux_sym__comment_no_newline_repeat1, + ACTIONS(1441), 2, + sym_backslash_escape, + aux_sym__comment_no_newline_token1, + [15080] = 3, + ACTIONS(1433), 1, + aux_sym__line_token1, + ACTIONS(1443), 1, + sym_frontmatter_marker, + STATE(509), 2, + sym__line, + aux_sym_frontmatter_content_repeat1, + [15091] = 3, + ACTIONS(1433), 1, + aux_sym__line_token1, + STATE(1059), 1, + sym_frontmatter_content, + STATE(505), 2, + sym__line, + aux_sym_frontmatter_content_repeat1, + [15102] = 3, + ACTIONS(1445), 1, + anon_sym_PERCENT, + STATE(504), 1, + aux_sym__comment_no_newline_repeat1, + ACTIONS(1441), 2, + sym_backslash_escape, + aux_sym__comment_no_newline_token1, + [15113] = 3, + ACTIONS(1447), 1, + anon_sym_PERCENT, + STATE(508), 1, + aux_sym__comment_no_newline_repeat1, + ACTIONS(1449), 2, + sym_backslash_escape, + aux_sym__comment_no_newline_token1, + [15124] = 3, + ACTIONS(1452), 1, + aux_sym__line_token1, + ACTIONS(1455), 1, + sym_frontmatter_marker, + STATE(509), 2, + sym__line, + aux_sym_frontmatter_content_repeat1, + [15135] = 4, ACTIONS(33), 1, sym_list_marker_definition, - ACTIONS(1423), 1, + ACTIONS(1457), 1, sym__block_close, - STATE(544), 2, - sym__list_item_definition, + STATE(529), 1, aux_sym__list_definition_repeat1, - [14776] = 3, + STATE(736), 1, + sym__list_item_definition, + [15148] = 4, ACTIONS(35), 1, sym_list_marker_decimal_period, - ACTIONS(1425), 1, + ACTIONS(1459), 1, sym__block_close, - STATE(545), 2, - sym__list_item_decimal_period, + STATE(531), 1, aux_sym__list_decimal_period_repeat1, - [14787] = 3, + STATE(795), 1, + sym__list_item_decimal_period, + [15161] = 4, ACTIONS(45), 1, sym_list_marker_decimal_paren, - ACTIONS(1427), 1, + ACTIONS(1461), 1, sym__block_close, - STATE(546), 2, - sym__list_item_decimal_paren, + STATE(549), 1, aux_sym__list_decimal_paren_repeat1, - [14798] = 3, + STATE(848), 1, + sym__list_item_decimal_paren, + [15174] = 4, ACTIONS(55), 1, sym_list_marker_decimal_parens, - ACTIONS(1429), 1, + ACTIONS(1463), 1, sym__block_close, - STATE(547), 2, - sym__list_item_decimal_parens, + STATE(551), 1, aux_sym__list_decimal_parens_repeat1, - [14809] = 3, + STATE(772), 1, + sym__list_item_decimal_parens, + [15187] = 4, ACTIONS(37), 1, sym_list_marker_lower_alpha_period, - ACTIONS(1431), 1, + ACTIONS(1465), 1, sym__block_close, - STATE(548), 2, - sym__list_item_lower_alpha_period, + STATE(553), 1, aux_sym__list_lower_alpha_period_repeat1, - [14820] = 3, + STATE(787), 1, + sym__list_item_lower_alpha_period, + [15200] = 4, ACTIONS(47), 1, sym_list_marker_lower_alpha_paren, - ACTIONS(1433), 1, + ACTIONS(1467), 1, sym__block_close, - STATE(549), 2, - sym__list_item_lower_alpha_paren, + STATE(555), 1, aux_sym__list_lower_alpha_paren_repeat1, - [14831] = 3, + STATE(792), 1, + sym__list_item_lower_alpha_paren, + [15213] = 4, ACTIONS(57), 1, sym_list_marker_lower_alpha_parens, - ACTIONS(1435), 1, + ACTIONS(1469), 1, sym__block_close, - STATE(550), 2, - sym__list_item_lower_alpha_parens, + STATE(557), 1, aux_sym__list_lower_alpha_parens_repeat1, - [14842] = 3, + STATE(793), 1, + sym__list_item_lower_alpha_parens, + [15226] = 4, ACTIONS(39), 1, sym_list_marker_upper_alpha_period, - ACTIONS(1437), 1, + ACTIONS(1471), 1, sym__block_close, - STATE(551), 2, - sym__list_item_upper_alpha_period, + STATE(559), 1, aux_sym__list_upper_alpha_period_repeat1, - [14853] = 3, + STATE(797), 1, + sym__list_item_upper_alpha_period, + [15239] = 4, ACTIONS(49), 1, sym_list_marker_upper_alpha_paren, - ACTIONS(1439), 1, + ACTIONS(1473), 1, sym__block_close, - STATE(552), 2, - sym__list_item_upper_alpha_paren, + STATE(593), 1, aux_sym__list_upper_alpha_paren_repeat1, - [14864] = 3, - ACTIONS(49), 1, - sym_list_marker_upper_alpha_paren, - ACTIONS(1441), 1, - sym__block_close, - STATE(552), 2, + STATE(798), 1, sym__list_item_upper_alpha_paren, - aux_sym__list_upper_alpha_paren_repeat1, - [14875] = 3, + [15252] = 4, ACTIONS(59), 1, sym_list_marker_upper_alpha_parens, - ACTIONS(1443), 1, + ACTIONS(1475), 1, sym__block_close, - STATE(553), 2, - sym__list_item_upper_alpha_parens, + STATE(595), 1, aux_sym__list_upper_alpha_parens_repeat1, - [14886] = 3, + STATE(799), 1, + sym__list_item_upper_alpha_parens, + [15265] = 4, ACTIONS(41), 1, sym_list_marker_lower_roman_period, - ACTIONS(1445), 1, + ACTIONS(1477), 1, sym__block_close, - STATE(554), 2, - sym__list_item_lower_roman_period, + STATE(598), 1, aux_sym__list_lower_roman_period_repeat1, - [14897] = 3, - ACTIONS(39), 1, - sym_list_marker_upper_alpha_period, - ACTIONS(1447), 1, - sym__block_close, - STATE(551), 2, - sym__list_item_upper_alpha_period, - aux_sym__list_upper_alpha_period_repeat1, - [14908] = 3, - ACTIONS(57), 1, - sym_list_marker_lower_alpha_parens, - ACTIONS(1449), 1, - sym__block_close, - STATE(550), 2, - sym__list_item_lower_alpha_parens, - aux_sym__list_lower_alpha_parens_repeat1, - [14919] = 3, + STATE(801), 1, + sym__list_item_lower_roman_period, + [15278] = 4, ACTIONS(51), 1, sym_list_marker_lower_roman_paren, - ACTIONS(1451), 1, + ACTIONS(1479), 1, sym__block_close, - STATE(555), 2, - sym__list_item_lower_roman_paren, + STATE(600), 1, aux_sym__list_lower_roman_paren_repeat1, - [14930] = 3, - ACTIONS(47), 1, - sym_list_marker_lower_alpha_paren, - ACTIONS(1453), 1, - sym__block_close, - STATE(549), 2, - sym__list_item_lower_alpha_paren, - aux_sym__list_lower_alpha_paren_repeat1, - [14941] = 3, - ACTIONS(37), 1, - sym_list_marker_lower_alpha_period, - ACTIONS(1455), 1, - sym__block_close, - STATE(548), 2, - sym__list_item_lower_alpha_period, - aux_sym__list_lower_alpha_period_repeat1, - [14952] = 4, - ACTIONS(1457), 1, - anon_sym_EQ, - ACTIONS(1459), 1, - sym_language, - ACTIONS(1461), 1, - sym__newline, - STATE(1026), 1, - sym_raw_block_info, - [14965] = 3, - ACTIONS(55), 1, - sym_list_marker_decimal_parens, - ACTIONS(1463), 1, - sym__block_close, - STATE(547), 2, - sym__list_item_decimal_parens, - aux_sym__list_decimal_parens_repeat1, - [14976] = 3, - ACTIONS(45), 1, - sym_list_marker_decimal_paren, - ACTIONS(1465), 1, - sym__block_close, - STATE(546), 2, - sym__list_item_decimal_paren, - aux_sym__list_decimal_paren_repeat1, - [14987] = 3, + STATE(802), 1, + sym__list_item_lower_roman_paren, + [15291] = 4, ACTIONS(61), 1, sym_list_marker_lower_roman_parens, - ACTIONS(1467), 1, + ACTIONS(1481), 1, sym__block_close, - STATE(557), 2, - sym__list_item_lower_roman_parens, + STATE(604), 1, aux_sym__list_lower_roman_parens_repeat1, - [14998] = 3, + STATE(814), 1, + sym__list_item_lower_roman_parens, + [15304] = 4, ACTIONS(43), 1, sym_list_marker_upper_roman_period, - ACTIONS(1469), 1, + ACTIONS(1483), 1, sym__block_close, - STATE(601), 2, - sym__list_item_upper_roman_period, + STATE(608), 1, aux_sym__list_upper_roman_period_repeat1, - [15009] = 3, - ACTIONS(35), 1, - sym_list_marker_decimal_period, - ACTIONS(1471), 1, - sym__block_close, - STATE(545), 2, - sym__list_item_decimal_period, - aux_sym__list_decimal_period_repeat1, - [15020] = 3, + STATE(818), 1, + sym__list_item_upper_roman_period, + [15317] = 4, ACTIONS(53), 1, sym_list_marker_upper_roman_paren, - ACTIONS(1473), 1, + ACTIONS(1485), 1, sym__block_close, - STATE(600), 2, - sym__list_item_upper_roman_paren, + STATE(612), 1, aux_sym__list_upper_roman_paren_repeat1, - [15031] = 3, + STATE(819), 1, + sym__list_item_upper_roman_paren, + [15330] = 4, ACTIONS(63), 1, sym_list_marker_upper_roman_parens, - ACTIONS(1475), 1, + ACTIONS(1487), 1, sym__block_close, - STATE(599), 2, - sym__list_item_upper_roman_parens, + STATE(616), 1, aux_sym__list_upper_roman_parens_repeat1, - [15042] = 3, + STATE(822), 1, + sym__list_item_upper_roman_parens, + [15343] = 4, ACTIONS(33), 1, sym_list_marker_definition, - ACTIONS(1477), 1, + ACTIONS(1489), 1, sym__block_close, - STATE(544), 2, + STATE(529), 1, + aux_sym__list_definition_repeat1, + STATE(736), 1, sym__list_item_definition, + [15356] = 4, + ACTIONS(35), 1, + sym_list_marker_decimal_period, + ACTIONS(1491), 1, + sym__block_close, + STATE(531), 1, + aux_sym__list_decimal_period_repeat1, + STATE(795), 1, + sym__list_item_decimal_period, + [15369] = 4, + ACTIONS(45), 1, + sym_list_marker_decimal_paren, + ACTIONS(1493), 1, + sym__block_close, + STATE(549), 1, + aux_sym__list_decimal_paren_repeat1, + STATE(848), 1, + sym__list_item_decimal_paren, + [15382] = 4, + ACTIONS(1495), 1, + sym__block_close, + ACTIONS(1497), 1, + sym_list_marker_definition, + STATE(529), 1, aux_sym__list_definition_repeat1, - [15053] = 3, - ACTIONS(1479), 1, - aux_sym__line_token1, - STATE(981), 1, - sym_frontmatter_content, - STATE(529), 2, - sym__line, - aux_sym_frontmatter_content_repeat1, - [15064] = 3, - ACTIONS(1479), 1, - aux_sym__line_token1, - ACTIONS(1481), 1, - sym_frontmatter_marker, - STATE(594), 2, - sym__line, - aux_sym_frontmatter_content_repeat1, - [15075] = 4, - ACTIONS(1457), 1, - anon_sym_EQ, - ACTIONS(1483), 1, - sym_language, - ACTIONS(1485), 1, - sym__newline, - STATE(1005), 1, - sym_raw_block_info, - [15088] = 3, - ACTIONS(1116), 1, - sym__table_caption_begin, - STATE(779), 1, - sym_table_caption, - ACTIONS(528), 2, + STATE(736), 1, + sym__list_item_definition, + [15395] = 4, + ACTIONS(55), 1, + sym_list_marker_decimal_parens, + ACTIONS(1500), 1, sym__block_close, - sym__block_quote_continuation, - [15099] = 3, + STATE(551), 1, + aux_sym__list_decimal_parens_repeat1, + STATE(772), 1, + sym__list_item_decimal_parens, + [15408] = 4, + ACTIONS(1502), 1, + sym__block_close, + ACTIONS(1504), 1, + sym_list_marker_decimal_period, + STATE(531), 1, + aux_sym__list_decimal_period_repeat1, + STATE(795), 1, + sym__list_item_decimal_period, + [15421] = 4, + ACTIONS(37), 1, + sym_list_marker_lower_alpha_period, + ACTIONS(1507), 1, + sym__block_close, + STATE(553), 1, + aux_sym__list_lower_alpha_period_repeat1, + STATE(787), 1, + sym__list_item_lower_alpha_period, + [15434] = 4, ACTIONS(33), 1, sym_list_marker_definition, - ACTIONS(1487), 1, + ACTIONS(1509), 1, sym__block_close, - STATE(544), 2, - sym__list_item_definition, + STATE(529), 1, aux_sym__list_definition_repeat1, - [15110] = 4, - ACTIONS(1457), 1, - anon_sym_EQ, - ACTIONS(1489), 1, - sym_language, - ACTIONS(1491), 1, - sym__newline, - STATE(1052), 1, - sym_raw_block_info, - [15123] = 3, + STATE(736), 1, + sym__list_item_definition, + [15447] = 4, ACTIONS(35), 1, sym_list_marker_decimal_period, - ACTIONS(1493), 1, + ACTIONS(1511), 1, sym__block_close, - STATE(545), 2, - sym__list_item_decimal_period, + STATE(531), 1, aux_sym__list_decimal_period_repeat1, - [15134] = 3, + STATE(795), 1, + sym__list_item_decimal_period, + [15460] = 4, ACTIONS(45), 1, sym_list_marker_decimal_paren, - ACTIONS(1495), 1, + ACTIONS(1513), 1, sym__block_close, - STATE(546), 2, - sym__list_item_decimal_paren, + STATE(549), 1, aux_sym__list_decimal_paren_repeat1, - [15145] = 3, + STATE(848), 1, + sym__list_item_decimal_paren, + [15473] = 4, ACTIONS(55), 1, sym_list_marker_decimal_parens, - ACTIONS(1497), 1, + ACTIONS(1515), 1, sym__block_close, - STATE(547), 2, - sym__list_item_decimal_parens, + STATE(551), 1, aux_sym__list_decimal_parens_repeat1, - [15156] = 3, + STATE(772), 1, + sym__list_item_decimal_parens, + [15486] = 4, ACTIONS(37), 1, sym_list_marker_lower_alpha_period, - ACTIONS(1499), 1, + ACTIONS(1517), 1, sym__block_close, - STATE(548), 2, - sym__list_item_lower_alpha_period, + STATE(553), 1, aux_sym__list_lower_alpha_period_repeat1, - [15167] = 4, - ACTIONS(1457), 1, - anon_sym_EQ, - ACTIONS(1501), 1, - sym_language, - ACTIONS(1503), 1, - sym__newline, - STATE(983), 1, - sym_raw_block_info, - [15180] = 4, - ACTIONS(1457), 1, - anon_sym_EQ, - ACTIONS(1505), 1, - sym_language, - ACTIONS(1507), 1, - sym__newline, - STATE(961), 1, - sym_raw_block_info, - [15193] = 3, - ACTIONS(1509), 1, - anon_sym_PERCENT, - STATE(569), 1, - aux_sym__comment_no_newline_repeat1, - ACTIONS(1511), 2, - sym_backslash_escape, - aux_sym__comment_no_newline_token1, - [15204] = 3, + STATE(787), 1, + sym__list_item_lower_alpha_period, + [15499] = 4, ACTIONS(47), 1, sym_list_marker_lower_alpha_paren, - ACTIONS(1513), 1, + ACTIONS(1519), 1, sym__block_close, - STATE(549), 2, - sym__list_item_lower_alpha_paren, + STATE(555), 1, aux_sym__list_lower_alpha_paren_repeat1, - [15215] = 3, + STATE(792), 1, + sym__list_item_lower_alpha_paren, + [15512] = 4, ACTIONS(57), 1, sym_list_marker_lower_alpha_parens, - ACTIONS(1515), 1, + ACTIONS(1521), 1, sym__block_close, - STATE(550), 2, - sym__list_item_lower_alpha_parens, + STATE(557), 1, aux_sym__list_lower_alpha_parens_repeat1, - [15226] = 3, + STATE(793), 1, + sym__list_item_lower_alpha_parens, + [15525] = 4, ACTIONS(39), 1, sym_list_marker_upper_alpha_period, - ACTIONS(1517), 1, + ACTIONS(1523), 1, sym__block_close, - STATE(551), 2, - sym__list_item_upper_alpha_period, + STATE(559), 1, aux_sym__list_upper_alpha_period_repeat1, - [15237] = 3, - ACTIONS(1519), 1, + STATE(797), 1, + sym__list_item_upper_alpha_period, + [15538] = 4, + ACTIONS(49), 1, + sym_list_marker_upper_alpha_paren, + ACTIONS(1525), 1, sym__block_close, - ACTIONS(1521), 1, - sym_list_marker_definition, - STATE(544), 2, - sym__list_item_definition, - aux_sym__list_definition_repeat1, - [15248] = 3, - ACTIONS(1524), 1, + STATE(593), 1, + aux_sym__list_upper_alpha_paren_repeat1, + STATE(798), 1, + sym__list_item_upper_alpha_paren, + [15551] = 4, + ACTIONS(59), 1, + sym_list_marker_upper_alpha_parens, + ACTIONS(1527), 1, sym__block_close, - ACTIONS(1526), 1, - sym_list_marker_decimal_period, - STATE(545), 2, - sym__list_item_decimal_period, - aux_sym__list_decimal_period_repeat1, - [15259] = 3, + STATE(595), 1, + aux_sym__list_upper_alpha_parens_repeat1, + STATE(799), 1, + sym__list_item_upper_alpha_parens, + [15564] = 4, + ACTIONS(41), 1, + sym_list_marker_lower_roman_period, ACTIONS(1529), 1, sym__block_close, + STATE(598), 1, + aux_sym__list_lower_roman_period_repeat1, + STATE(801), 1, + sym__list_item_lower_roman_period, + [15577] = 4, + ACTIONS(51), 1, + sym_list_marker_lower_roman_paren, ACTIONS(1531), 1, - sym_list_marker_decimal_paren, - STATE(546), 2, - sym__list_item_decimal_paren, - aux_sym__list_decimal_paren_repeat1, - [15270] = 3, - ACTIONS(1534), 1, sym__block_close, - ACTIONS(1536), 1, - sym_list_marker_decimal_parens, - STATE(547), 2, - sym__list_item_decimal_parens, - aux_sym__list_decimal_parens_repeat1, - [15281] = 3, + STATE(600), 1, + aux_sym__list_lower_roman_paren_repeat1, + STATE(802), 1, + sym__list_item_lower_roman_paren, + [15590] = 4, + ACTIONS(61), 1, + sym_list_marker_lower_roman_parens, + ACTIONS(1533), 1, + sym__block_close, + STATE(604), 1, + aux_sym__list_lower_roman_parens_repeat1, + STATE(814), 1, + sym__list_item_lower_roman_parens, + [15603] = 4, + ACTIONS(43), 1, + sym_list_marker_upper_roman_period, + ACTIONS(1535), 1, + sym__block_close, + STATE(608), 1, + aux_sym__list_upper_roman_period_repeat1, + STATE(818), 1, + sym__list_item_upper_roman_period, + [15616] = 4, + ACTIONS(53), 1, + sym_list_marker_upper_roman_paren, + ACTIONS(1537), 1, + sym__block_close, + STATE(612), 1, + aux_sym__list_upper_roman_paren_repeat1, + STATE(819), 1, + sym__list_item_upper_roman_paren, + [15629] = 4, + ACTIONS(63), 1, + sym_list_marker_upper_roman_parens, ACTIONS(1539), 1, sym__block_close, + STATE(616), 1, + aux_sym__list_upper_roman_parens_repeat1, + STATE(822), 1, + sym__list_item_upper_roman_parens, + [15642] = 4, ACTIONS(1541), 1, - sym_list_marker_lower_alpha_period, - STATE(548), 2, - sym__list_item_lower_alpha_period, - aux_sym__list_lower_alpha_period_repeat1, - [15292] = 3, - ACTIONS(1544), 1, sym__block_close, - ACTIONS(1546), 1, + ACTIONS(1543), 1, + sym_list_marker_decimal_paren, + STATE(549), 1, + aux_sym__list_decimal_paren_repeat1, + STATE(848), 1, + sym__list_item_decimal_paren, + [15655] = 4, + ACTIONS(47), 1, sym_list_marker_lower_alpha_paren, - STATE(549), 2, - sym__list_item_lower_alpha_paren, + ACTIONS(1546), 1, + sym__block_close, + STATE(555), 1, aux_sym__list_lower_alpha_paren_repeat1, - [15303] = 3, - ACTIONS(1549), 1, + STATE(792), 1, + sym__list_item_lower_alpha_paren, + [15668] = 4, + ACTIONS(1548), 1, sym__block_close, - ACTIONS(1551), 1, + ACTIONS(1550), 1, + sym_list_marker_decimal_parens, + STATE(551), 1, + aux_sym__list_decimal_parens_repeat1, + STATE(772), 1, + sym__list_item_decimal_parens, + [15681] = 4, + ACTIONS(57), 1, sym_list_marker_lower_alpha_parens, - STATE(550), 2, - sym__list_item_lower_alpha_parens, + ACTIONS(1553), 1, + sym__block_close, + STATE(557), 1, aux_sym__list_lower_alpha_parens_repeat1, - [15314] = 3, - ACTIONS(1554), 1, + STATE(793), 1, + sym__list_item_lower_alpha_parens, + [15694] = 4, + ACTIONS(1555), 1, sym__block_close, - ACTIONS(1556), 1, + ACTIONS(1557), 1, + sym_list_marker_lower_alpha_period, + STATE(553), 1, + aux_sym__list_lower_alpha_period_repeat1, + STATE(787), 1, + sym__list_item_lower_alpha_period, + [15707] = 4, + ACTIONS(39), 1, sym_list_marker_upper_alpha_period, - STATE(551), 2, - sym__list_item_upper_alpha_period, + ACTIONS(1560), 1, + sym__block_close, + STATE(559), 1, aux_sym__list_upper_alpha_period_repeat1, - [15325] = 3, - ACTIONS(1559), 1, + STATE(797), 1, + sym__list_item_upper_alpha_period, + [15720] = 4, + ACTIONS(1562), 1, sym__block_close, - ACTIONS(1561), 1, - sym_list_marker_upper_alpha_paren, - STATE(552), 2, - sym__list_item_upper_alpha_paren, - aux_sym__list_upper_alpha_paren_repeat1, - [15336] = 3, ACTIONS(1564), 1, + sym_list_marker_lower_alpha_paren, + STATE(555), 1, + aux_sym__list_lower_alpha_paren_repeat1, + STATE(792), 1, + sym__list_item_lower_alpha_paren, + [15733] = 4, + ACTIONS(49), 1, + sym_list_marker_upper_alpha_paren, + ACTIONS(1567), 1, sym__block_close, - ACTIONS(1566), 1, - sym_list_marker_upper_alpha_parens, - STATE(553), 2, - sym__list_item_upper_alpha_parens, - aux_sym__list_upper_alpha_parens_repeat1, - [15347] = 3, + STATE(593), 1, + aux_sym__list_upper_alpha_paren_repeat1, + STATE(798), 1, + sym__list_item_upper_alpha_paren, + [15746] = 4, ACTIONS(1569), 1, sym__block_close, ACTIONS(1571), 1, - sym_list_marker_lower_roman_period, - STATE(554), 2, - sym__list_item_lower_roman_period, - aux_sym__list_lower_roman_period_repeat1, - [15358] = 3, + sym_list_marker_lower_alpha_parens, + STATE(557), 1, + aux_sym__list_lower_alpha_parens_repeat1, + STATE(793), 1, + sym__list_item_lower_alpha_parens, + [15759] = 4, + ACTIONS(59), 1, + sym_list_marker_upper_alpha_parens, ACTIONS(1574), 1, sym__block_close, + STATE(595), 1, + aux_sym__list_upper_alpha_parens_repeat1, + STATE(799), 1, + sym__list_item_upper_alpha_parens, + [15772] = 4, ACTIONS(1576), 1, - sym_list_marker_lower_roman_paren, - STATE(555), 2, - sym__list_item_lower_roman_paren, - aux_sym__list_lower_roman_paren_repeat1, - [15369] = 3, - ACTIONS(49), 1, - sym_list_marker_upper_alpha_paren, - ACTIONS(1579), 1, sym__block_close, - STATE(552), 2, - sym__list_item_upper_alpha_paren, - aux_sym__list_upper_alpha_paren_repeat1, - [15380] = 3, + ACTIONS(1578), 1, + sym_list_marker_upper_alpha_period, + STATE(559), 1, + aux_sym__list_upper_alpha_period_repeat1, + STATE(797), 1, + sym__list_item_upper_alpha_period, + [15785] = 4, + ACTIONS(33), 1, + sym_list_marker_definition, ACTIONS(1581), 1, sym__block_close, + STATE(529), 1, + aux_sym__list_definition_repeat1, + STATE(736), 1, + sym__list_item_definition, + [15798] = 4, + ACTIONS(35), 1, + sym_list_marker_decimal_period, ACTIONS(1583), 1, - sym_list_marker_lower_roman_parens, - STATE(557), 2, - sym__list_item_lower_roman_parens, - aux_sym__list_lower_roman_parens_repeat1, - [15391] = 3, - ACTIONS(63), 1, - sym_list_marker_upper_roman_parens, - ACTIONS(1586), 1, sym__block_close, - STATE(599), 2, - sym__list_item_upper_roman_parens, - aux_sym__list_upper_roman_parens_repeat1, - [15402] = 3, - ACTIONS(53), 1, - sym_list_marker_upper_roman_paren, - ACTIONS(1588), 1, + STATE(531), 1, + aux_sym__list_decimal_period_repeat1, + STATE(795), 1, + sym__list_item_decimal_period, + [15811] = 4, + ACTIONS(45), 1, + sym_list_marker_decimal_paren, + ACTIONS(1585), 1, sym__block_close, - STATE(600), 2, - sym__list_item_upper_roman_paren, - aux_sym__list_upper_roman_paren_repeat1, - [15413] = 3, + STATE(549), 1, + aux_sym__list_decimal_paren_repeat1, + STATE(848), 1, + sym__list_item_decimal_paren, + [15824] = 4, + ACTIONS(55), 1, + sym_list_marker_decimal_parens, + ACTIONS(1587), 1, + sym__block_close, + STATE(551), 1, + aux_sym__list_decimal_parens_repeat1, + STATE(772), 1, + sym__list_item_decimal_parens, + [15837] = 4, + ACTIONS(37), 1, + sym_list_marker_lower_alpha_period, + ACTIONS(1589), 1, + sym__block_close, + STATE(553), 1, + aux_sym__list_lower_alpha_period_repeat1, + STATE(787), 1, + sym__list_item_lower_alpha_period, + [15850] = 3, + ACTIONS(1148), 1, + sym__table_caption_begin, + STATE(770), 1, + sym_table_caption, + ACTIONS(530), 2, + sym__block_close, + sym__block_quote_continuation, + [15861] = 4, + ACTIONS(57), 1, + sym_list_marker_lower_alpha_parens, + ACTIONS(1591), 1, + sym__block_close, + STATE(557), 1, + aux_sym__list_lower_alpha_parens_repeat1, + STATE(793), 1, + sym__list_item_lower_alpha_parens, + [15874] = 4, + ACTIONS(39), 1, + sym_list_marker_upper_alpha_period, + ACTIONS(1593), 1, + sym__block_close, + STATE(559), 1, + aux_sym__list_upper_alpha_period_repeat1, + STATE(797), 1, + sym__list_item_upper_alpha_period, + [15887] = 4, + ACTIONS(49), 1, + sym_list_marker_upper_alpha_paren, + ACTIONS(1595), 1, + sym__block_close, + STATE(593), 1, + aux_sym__list_upper_alpha_paren_repeat1, + STATE(798), 1, + sym__list_item_upper_alpha_paren, + [15900] = 4, ACTIONS(59), 1, sym_list_marker_upper_alpha_parens, - ACTIONS(1590), 1, + ACTIONS(1597), 1, sym__block_close, - STATE(553), 2, - sym__list_item_upper_alpha_parens, + STATE(595), 1, aux_sym__list_upper_alpha_parens_repeat1, - [15424] = 3, + STATE(799), 1, + sym__list_item_upper_alpha_parens, + [15913] = 4, ACTIONS(41), 1, sym_list_marker_lower_roman_period, - ACTIONS(1592), 1, + ACTIONS(1599), 1, sym__block_close, - STATE(554), 2, - sym__list_item_lower_roman_period, + STATE(598), 1, aux_sym__list_lower_roman_period_repeat1, - [15435] = 2, - ACTIONS(1594), 1, - sym__eof_or_newline, - ACTIONS(558), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [15444] = 3, + STATE(801), 1, + sym__list_item_lower_roman_period, + [15926] = 4, ACTIONS(51), 1, sym_list_marker_lower_roman_paren, - ACTIONS(1596), 1, + ACTIONS(1601), 1, sym__block_close, - STATE(555), 2, - sym__list_item_lower_roman_paren, + STATE(600), 1, aux_sym__list_lower_roman_paren_repeat1, - [15455] = 3, + STATE(802), 1, + sym__list_item_lower_roman_paren, + [15939] = 4, ACTIONS(61), 1, sym_list_marker_lower_roman_parens, - ACTIONS(1598), 1, + ACTIONS(1603), 1, sym__block_close, - STATE(557), 2, - sym__list_item_lower_roman_parens, + STATE(604), 1, aux_sym__list_lower_roman_parens_repeat1, - [15466] = 3, + STATE(814), 1, + sym__list_item_lower_roman_parens, + [15952] = 4, ACTIONS(43), 1, sym_list_marker_upper_roman_period, - ACTIONS(1600), 1, + ACTIONS(1605), 1, sym__block_close, - STATE(601), 2, - sym__list_item_upper_roman_period, + STATE(608), 1, aux_sym__list_upper_roman_period_repeat1, - [15477] = 3, + STATE(818), 1, + sym__list_item_upper_roman_period, + [15965] = 4, ACTIONS(53), 1, sym_list_marker_upper_roman_paren, - ACTIONS(1602), 1, + ACTIONS(1607), 1, sym__block_close, - STATE(600), 2, - sym__list_item_upper_roman_paren, + STATE(612), 1, aux_sym__list_upper_roman_paren_repeat1, - [15488] = 3, - ACTIONS(1604), 1, - anon_sym_PERCENT, - STATE(567), 1, - aux_sym__comment_no_newline_repeat1, - ACTIONS(1606), 2, - sym_backslash_escape, - aux_sym__comment_no_newline_token1, - [15499] = 3, + STATE(819), 1, + sym__list_item_upper_roman_paren, + [15978] = 4, ACTIONS(63), 1, sym_list_marker_upper_roman_parens, ACTIONS(1609), 1, sym__block_close, - STATE(599), 2, - sym__list_item_upper_roman_parens, + STATE(616), 1, aux_sym__list_upper_roman_parens_repeat1, - [15510] = 3, + STATE(822), 1, + sym__list_item_upper_roman_parens, + [15991] = 4, + ACTIONS(41), 1, + sym_list_marker_lower_roman_period, ACTIONS(1611), 1, - anon_sym_PERCENT, - STATE(567), 1, - aux_sym__comment_no_newline_repeat1, - ACTIONS(1511), 2, - sym_backslash_escape, - aux_sym__comment_no_newline_token1, - [15521] = 3, + sym__block_close, + STATE(598), 1, + aux_sym__list_lower_roman_period_repeat1, + STATE(801), 1, + sym__list_item_lower_roman_period, + [16004] = 4, ACTIONS(33), 1, sym_list_marker_definition, ACTIONS(1613), 1, sym__block_close, - STATE(544), 2, - sym__list_item_definition, + STATE(529), 1, aux_sym__list_definition_repeat1, - [15532] = 2, - ACTIONS(1615), 1, - sym__code_block_end, - ACTIONS(616), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [15541] = 2, - ACTIONS(1617), 1, - sym__code_block_end, - ACTIONS(640), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [15550] = 3, + STATE(736), 1, + sym__list_item_definition, + [16017] = 4, ACTIONS(35), 1, sym_list_marker_decimal_period, - ACTIONS(1619), 1, + ACTIONS(1615), 1, sym__block_close, - STATE(545), 2, - sym__list_item_decimal_period, + STATE(531), 1, aux_sym__list_decimal_period_repeat1, - [15561] = 2, - ACTIONS(1621), 1, - sym__div_end, - ACTIONS(646), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [15570] = 3, + STATE(795), 1, + sym__list_item_decimal_period, + [16030] = 4, ACTIONS(45), 1, sym_list_marker_decimal_paren, - ACTIONS(1623), 1, + ACTIONS(1617), 1, sym__block_close, - STATE(546), 2, - sym__list_item_decimal_paren, + STATE(549), 1, aux_sym__list_decimal_paren_repeat1, - [15581] = 2, - ACTIONS(1625), 1, - sym__code_block_end, - ACTIONS(608), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [15590] = 2, - ACTIONS(1627), 1, - sym__code_block_end, - ACTIONS(592), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [15599] = 3, + STATE(848), 1, + sym__list_item_decimal_paren, + [16043] = 4, ACTIONS(55), 1, sym_list_marker_decimal_parens, - ACTIONS(1629), 1, + ACTIONS(1619), 1, sym__block_close, - STATE(547), 2, - sym__list_item_decimal_parens, + STATE(551), 1, aux_sym__list_decimal_parens_repeat1, - [15610] = 3, - ACTIONS(63), 1, - sym_list_marker_upper_roman_parens, - ACTIONS(1631), 1, - sym__block_close, - STATE(599), 2, - sym__list_item_upper_roman_parens, - aux_sym__list_upper_roman_parens_repeat1, - [15621] = 2, - ACTIONS(1633), 1, - sym__div_end, - ACTIONS(574), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [15630] = 3, - ACTIONS(43), 1, - sym_list_marker_upper_roman_period, - ACTIONS(1635), 1, + STATE(772), 1, + sym__list_item_decimal_parens, + [16056] = 4, + ACTIONS(37), 1, + sym_list_marker_lower_alpha_period, + ACTIONS(1621), 1, sym__block_close, - STATE(601), 2, - sym__list_item_upper_roman_period, - aux_sym__list_upper_roman_period_repeat1, - [15641] = 2, - ACTIONS(1637), 1, - sym__div_end, - ACTIONS(550), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [15650] = 3, + STATE(553), 1, + aux_sym__list_lower_alpha_period_repeat1, + STATE(787), 1, + sym__list_item_lower_alpha_period, + [16069] = 4, ACTIONS(47), 1, sym_list_marker_lower_alpha_paren, - ACTIONS(1639), 1, + ACTIONS(1623), 1, sym__block_close, - STATE(549), 2, - sym__list_item_lower_alpha_paren, + STATE(555), 1, aux_sym__list_lower_alpha_paren_repeat1, - [15661] = 3, + STATE(792), 1, + sym__list_item_lower_alpha_paren, + [16082] = 4, + ACTIONS(57), 1, + sym_list_marker_lower_alpha_parens, + ACTIONS(1625), 1, + sym__block_close, + STATE(557), 1, + aux_sym__list_lower_alpha_parens_repeat1, + STATE(793), 1, + sym__list_item_lower_alpha_parens, + [16095] = 4, ACTIONS(39), 1, sym_list_marker_upper_alpha_period, - ACTIONS(1641), 1, + ACTIONS(1627), 1, sym__block_close, - STATE(551), 2, - sym__list_item_upper_alpha_period, + STATE(559), 1, aux_sym__list_upper_alpha_period_repeat1, - [15672] = 2, - ACTIONS(1643), 1, - sym__code_block_end, - ACTIONS(532), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [15681] = 3, + STATE(797), 1, + sym__list_item_upper_alpha_period, + [16108] = 4, ACTIONS(49), 1, sym_list_marker_upper_alpha_paren, - ACTIONS(1645), 1, + ACTIONS(1629), 1, sym__block_close, - STATE(552), 2, - sym__list_item_upper_alpha_paren, + STATE(593), 1, aux_sym__list_upper_alpha_paren_repeat1, - [15692] = 3, + STATE(798), 1, + sym__list_item_upper_alpha_paren, + [16121] = 4, ACTIONS(59), 1, sym_list_marker_upper_alpha_parens, - ACTIONS(1647), 1, + ACTIONS(1631), 1, sym__block_close, - STATE(553), 2, - sym__list_item_upper_alpha_parens, + STATE(595), 1, aux_sym__list_upper_alpha_parens_repeat1, - [15703] = 3, + STATE(799), 1, + sym__list_item_upper_alpha_parens, + [16134] = 4, ACTIONS(41), 1, sym_list_marker_lower_roman_period, - ACTIONS(1649), 1, + ACTIONS(1633), 1, sym__block_close, - STATE(554), 2, - sym__list_item_lower_roman_period, + STATE(598), 1, aux_sym__list_lower_roman_period_repeat1, - [15714] = 2, - ACTIONS(1651), 1, - sym__div_end, - ACTIONS(538), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [15723] = 3, + STATE(801), 1, + sym__list_item_lower_roman_period, + [16147] = 4, ACTIONS(51), 1, sym_list_marker_lower_roman_paren, - ACTIONS(1653), 1, + ACTIONS(1635), 1, sym__block_close, - STATE(555), 2, - sym__list_item_lower_roman_paren, + STATE(600), 1, aux_sym__list_lower_roman_paren_repeat1, - [15734] = 3, + STATE(802), 1, + sym__list_item_lower_roman_paren, + [16160] = 4, ACTIONS(61), 1, sym_list_marker_lower_roman_parens, - ACTIONS(1655), 1, + ACTIONS(1637), 1, sym__block_close, - STATE(557), 2, - sym__list_item_lower_roman_parens, + STATE(604), 1, aux_sym__list_lower_roman_parens_repeat1, - [15745] = 3, + STATE(814), 1, + sym__list_item_lower_roman_parens, + [16173] = 4, ACTIONS(43), 1, sym_list_marker_upper_roman_period, - ACTIONS(1657), 1, + ACTIONS(1639), 1, sym__block_close, - STATE(601), 2, - sym__list_item_upper_roman_period, + STATE(608), 1, aux_sym__list_upper_roman_period_repeat1, - [15756] = 2, - ACTIONS(1659), 1, - sym__eof_or_newline, - ACTIONS(602), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [15765] = 3, - ACTIONS(1661), 1, - aux_sym__line_token1, - ACTIONS(1664), 1, - sym_frontmatter_marker, - STATE(594), 2, - sym__line, - aux_sym_frontmatter_content_repeat1, - [15776] = 3, - ACTIONS(61), 1, - sym_list_marker_lower_roman_parens, - ACTIONS(1666), 1, - sym__block_close, - STATE(557), 2, - sym__list_item_lower_roman_parens, - aux_sym__list_lower_roman_parens_repeat1, - [15787] = 3, + STATE(818), 1, + sym__list_item_upper_roman_period, + [16186] = 4, ACTIONS(53), 1, sym_list_marker_upper_roman_paren, - ACTIONS(1668), 1, + ACTIONS(1641), 1, sym__block_close, - STATE(600), 2, - sym__list_item_upper_roman_paren, + STATE(612), 1, aux_sym__list_upper_roman_paren_repeat1, - [15798] = 3, + STATE(819), 1, + sym__list_item_upper_roman_paren, + [16199] = 4, ACTIONS(63), 1, sym_list_marker_upper_roman_parens, - ACTIONS(1670), 1, + ACTIONS(1643), 1, sym__block_close, - STATE(599), 2, - sym__list_item_upper_roman_parens, + STATE(616), 1, aux_sym__list_upper_roman_parens_repeat1, - [15809] = 3, - ACTIONS(1479), 1, - aux_sym__line_token1, - STATE(1029), 1, - sym_frontmatter_content, - STATE(529), 2, - sym__line, - aux_sym_frontmatter_content_repeat1, - [15820] = 3, - ACTIONS(1672), 1, - sym__block_close, - ACTIONS(1674), 1, - sym_list_marker_upper_roman_parens, - STATE(599), 2, + STATE(822), 1, sym__list_item_upper_roman_parens, - aux_sym__list_upper_roman_parens_repeat1, - [15831] = 3, - ACTIONS(1677), 1, - sym__block_close, - ACTIONS(1679), 1, - sym_list_marker_upper_roman_paren, - STATE(600), 2, - sym__list_item_upper_roman_paren, - aux_sym__list_upper_roman_paren_repeat1, - [15842] = 3, - ACTIONS(1682), 1, - sym__block_close, - ACTIONS(1684), 1, - sym_list_marker_upper_roman_period, - STATE(601), 2, - sym__list_item_upper_roman_period, - aux_sym__list_upper_roman_period_repeat1, - [15853] = 3, - ACTIONS(33), 1, - sym_list_marker_definition, - ACTIONS(1687), 1, - sym__block_close, - STATE(544), 2, - sym__list_item_definition, - aux_sym__list_definition_repeat1, - [15864] = 3, - ACTIONS(35), 1, - sym_list_marker_decimal_period, - ACTIONS(1689), 1, - sym__block_close, - STATE(545), 2, - sym__list_item_decimal_period, - aux_sym__list_decimal_period_repeat1, - [15875] = 3, - ACTIONS(45), 1, - sym_list_marker_decimal_paren, - ACTIONS(1691), 1, - sym__block_close, - STATE(546), 2, - sym__list_item_decimal_paren, - aux_sym__list_decimal_paren_repeat1, - [15886] = 3, - ACTIONS(55), 1, - sym_list_marker_decimal_parens, - ACTIONS(1693), 1, - sym__block_close, - STATE(547), 2, - sym__list_item_decimal_parens, - aux_sym__list_decimal_parens_repeat1, - [15897] = 3, - ACTIONS(37), 1, - sym_list_marker_lower_alpha_period, - ACTIONS(1695), 1, - sym__block_close, - STATE(548), 2, - sym__list_item_lower_alpha_period, - aux_sym__list_lower_alpha_period_repeat1, - [15908] = 3, - ACTIONS(47), 1, - sym_list_marker_lower_alpha_paren, - ACTIONS(1697), 1, - sym__block_close, - STATE(549), 2, - sym__list_item_lower_alpha_paren, - aux_sym__list_lower_alpha_paren_repeat1, - [15919] = 3, - ACTIONS(57), 1, - sym_list_marker_lower_alpha_parens, - ACTIONS(1699), 1, - sym__block_close, - STATE(550), 2, - sym__list_item_lower_alpha_parens, - aux_sym__list_lower_alpha_parens_repeat1, - [15930] = 3, - ACTIONS(39), 1, - sym_list_marker_upper_alpha_period, - ACTIONS(1701), 1, + [16212] = 4, + ACTIONS(1645), 1, sym__block_close, - STATE(551), 2, - sym__list_item_upper_alpha_period, - aux_sym__list_upper_alpha_period_repeat1, - [15941] = 3, - ACTIONS(49), 1, + ACTIONS(1647), 1, sym_list_marker_upper_alpha_paren, - ACTIONS(1703), 1, - sym__block_close, - STATE(552), 2, - sym__list_item_upper_alpha_paren, + STATE(593), 1, aux_sym__list_upper_alpha_paren_repeat1, - [15952] = 3, - ACTIONS(59), 1, - sym_list_marker_upper_alpha_parens, - ACTIONS(1705), 1, - sym__block_close, - STATE(553), 2, - sym__list_item_upper_alpha_parens, - aux_sym__list_upper_alpha_parens_repeat1, - [15963] = 3, - ACTIONS(41), 1, - sym_list_marker_lower_roman_period, - ACTIONS(1707), 1, - sym__block_close, - STATE(554), 2, - sym__list_item_lower_roman_period, - aux_sym__list_lower_roman_period_repeat1, - [15974] = 3, + STATE(798), 1, + sym__list_item_upper_alpha_paren, + [16225] = 4, ACTIONS(51), 1, sym_list_marker_lower_roman_paren, - ACTIONS(1709), 1, + ACTIONS(1650), 1, sym__block_close, - STATE(555), 2, - sym__list_item_lower_roman_paren, + STATE(600), 1, aux_sym__list_lower_roman_paren_repeat1, - [15985] = 1, - ACTIONS(716), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [15991] = 1, - ACTIONS(704), 3, + STATE(802), 1, + sym__list_item_lower_roman_paren, + [16238] = 4, + ACTIONS(1652), 1, + sym__block_close, + ACTIONS(1654), 1, + sym_list_marker_upper_alpha_parens, + STATE(595), 1, + aux_sym__list_upper_alpha_parens_repeat1, + STATE(799), 1, + sym__list_item_upper_alpha_parens, + [16251] = 2, + ACTIONS(1657), 1, + sym__eof_or_newline, + ACTIONS(664), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [15997] = 1, - ACTIONS(692), 3, + [16260] = 4, + ACTIONS(61), 1, + sym_list_marker_lower_roman_parens, + ACTIONS(1659), 1, + sym__block_close, + STATE(604), 1, + aux_sym__list_lower_roman_parens_repeat1, + STATE(814), 1, + sym__list_item_lower_roman_parens, + [16273] = 4, + ACTIONS(1661), 1, + sym__block_close, + ACTIONS(1663), 1, + sym_list_marker_lower_roman_period, + STATE(598), 1, + aux_sym__list_lower_roman_period_repeat1, + STATE(801), 1, + sym__list_item_lower_roman_period, + [16286] = 4, + ACTIONS(43), 1, + sym_list_marker_upper_roman_period, + ACTIONS(1666), 1, + sym__block_close, + STATE(608), 1, + aux_sym__list_upper_roman_period_repeat1, + STATE(818), 1, + sym__list_item_upper_roman_period, + [16299] = 4, + ACTIONS(1668), 1, + sym__block_close, + ACTIONS(1670), 1, + sym_list_marker_lower_roman_paren, + STATE(600), 1, + aux_sym__list_lower_roman_paren_repeat1, + STATE(802), 1, + sym__list_item_lower_roman_paren, + [16312] = 2, + ACTIONS(1673), 1, + sym__div_end, + ACTIONS(610), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [16003] = 1, - ACTIONS(676), 3, + [16321] = 4, + ACTIONS(53), 1, + sym_list_marker_upper_roman_paren, + ACTIONS(1675), 1, + sym__block_close, + STATE(612), 1, + aux_sym__list_upper_roman_paren_repeat1, + STATE(819), 1, + sym__list_item_upper_roman_paren, + [16334] = 2, + ACTIONS(1677), 1, + sym__code_block_end, + ACTIONS(534), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [16009] = 1, - ACTIONS(754), 3, + [16343] = 4, + ACTIONS(1679), 1, + sym__block_close, + ACTIONS(1681), 1, + sym_list_marker_lower_roman_parens, + STATE(604), 1, + aux_sym__list_lower_roman_parens_repeat1, + STATE(814), 1, + sym__list_item_lower_roman_parens, + [16356] = 4, + ACTIONS(63), 1, + sym_list_marker_upper_roman_parens, + ACTIONS(1684), 1, + sym__block_close, + STATE(616), 1, + aux_sym__list_upper_roman_parens_repeat1, + STATE(822), 1, + sym__list_item_upper_roman_parens, + [16369] = 2, + ACTIONS(1686), 1, + sym__div_end, + ACTIONS(626), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [16015] = 3, - ACTIONS(858), 1, - sym_list_marker_plus, - ACTIONS(1711), 1, - sym__block_quote_continuation, - STATE(619), 1, - aux_sym__block_quote_prefix_repeat1, - [16025] = 1, - ACTIONS(746), 3, + [16378] = 2, + ACTIONS(1688), 1, + sym__div_end, + ACTIONS(540), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [16031] = 1, - ACTIONS(724), 3, + [16387] = 4, + ACTIONS(1690), 1, + sym__block_close, + ACTIONS(1692), 1, + sym_list_marker_upper_roman_period, + STATE(608), 1, + aux_sym__list_upper_roman_period_repeat1, + STATE(818), 1, + sym__list_item_upper_roman_period, + [16400] = 2, + ACTIONS(1695), 1, + sym__code_block_end, + ACTIONS(546), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [16037] = 1, - ACTIONS(736), 3, + [16409] = 2, + ACTIONS(1697), 1, + sym__code_block_end, + ACTIONS(552), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [16043] = 1, - ACTIONS(740), 3, + [16418] = 2, + ACTIONS(1699), 1, + sym__code_block_end, + ACTIONS(558), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [16049] = 1, - ACTIONS(748), 3, + [16427] = 4, + ACTIONS(1701), 1, + sym__block_close, + ACTIONS(1703), 1, + sym_list_marker_upper_roman_paren, + STATE(612), 1, + aux_sym__list_upper_roman_paren_repeat1, + STATE(819), 1, + sym__list_item_upper_roman_paren, + [16440] = 2, + ACTIONS(1706), 1, + sym__div_end, + ACTIONS(572), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [16055] = 1, - ACTIONS(756), 3, + [16449] = 2, + ACTIONS(1708), 1, + sym__code_block_end, + ACTIONS(578), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [16061] = 1, - ACTIONS(760), 3, + [16458] = 2, + ACTIONS(1710), 1, + sym__code_block_end, + ACTIONS(584), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [16067] = 1, - ACTIONS(768), 3, + [16467] = 4, + ACTIONS(1712), 1, + sym__block_close, + ACTIONS(1714), 1, + sym_list_marker_upper_roman_parens, + STATE(616), 1, + aux_sym__list_upper_roman_parens_repeat1, + STATE(822), 1, + sym__list_item_upper_roman_parens, + [16480] = 4, + ACTIONS(1427), 1, + anon_sym_EQ, + ACTIONS(1717), 1, + sym_language, + ACTIONS(1719), 1, + sym__newline, + STATE(997), 1, + sym_raw_block_info, + [16493] = 2, + ACTIONS(1721), 1, + sym__eof_or_newline, + ACTIONS(598), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [16073] = 1, - ACTIONS(772), 3, + [16502] = 4, + ACTIONS(1427), 1, + anon_sym_EQ, + ACTIONS(1723), 1, + sym_language, + ACTIONS(1725), 1, + sym__newline, + STATE(1019), 1, + sym_raw_block_info, + [16515] = 4, + ACTIONS(1427), 1, + anon_sym_EQ, + ACTIONS(1727), 1, + sym_language, + ACTIONS(1729), 1, + sym__newline, + STATE(1041), 1, + sym_raw_block_info, + [16528] = 4, + ACTIONS(47), 1, + sym_list_marker_lower_alpha_paren, + ACTIONS(1731), 1, + sym__block_close, + STATE(555), 1, + aux_sym__list_lower_alpha_paren_repeat1, + STATE(792), 1, + sym__list_item_lower_alpha_paren, + [16541] = 1, + ACTIONS(730), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [16079] = 1, - ACTIONS(776), 3, + [16547] = 1, + ACTIONS(772), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [16085] = 1, - ACTIONS(670), 3, - sym__list_item_continuation, - sym__list_item_end, + [16553] = 1, + ACTIONS(1733), 3, + sym__block_close, + sym_list_marker_dash, sym__block_quote_continuation, - [16091] = 1, - ACTIONS(784), 3, - sym__list_item_continuation, - sym__list_item_end, + [16559] = 1, + ACTIONS(1735), 3, + sym__block_close, + sym_list_marker_dash, + sym__block_quote_continuation, + [16565] = 1, + ACTIONS(1737), 3, + sym__block_close, + sym_list_marker_star, + sym__block_quote_continuation, + [16571] = 1, + ACTIONS(1739), 3, + sym__block_close, + sym_list_marker_plus, + sym__block_quote_continuation, + [16577] = 2, + ACTIONS(1743), 1, + anon_sym_SPACE, + ACTIONS(1741), 2, + anon_sym_x, + anon_sym_X, + [16585] = 1, + ACTIONS(1745), 3, + anon_sym_PERCENT, + sym_backslash_escape, + aux_sym__comment_no_newline_token1, + [16591] = 2, + ACTIONS(1747), 1, + sym__div_end, + ACTIONS(626), 2, + sym__block_close, + sym__block_quote_continuation, + [16599] = 3, + ACTIONS(1749), 1, + anon_sym_DQUOTE, + ACTIONS(1751), 1, + aux_sym_value_token2, + STATE(467), 1, + sym_value, + [16609] = 3, + ACTIONS(876), 1, + sym_list_marker_dash, + ACTIONS(1753), 1, + sym__block_quote_continuation, + STATE(632), 1, + aux_sym__block_quote_prefix_repeat1, + [16619] = 2, + ACTIONS(1756), 1, + anon_sym_LBRACK, + STATE(975), 2, + sym_checked, + sym_unchecked, + [16627] = 1, + ACTIONS(1758), 3, + sym__block_close, + sym_list_marker_dash, sym__block_quote_continuation, - [16097] = 1, + [16633] = 1, ACTIONS(792), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [16103] = 1, - ACTIONS(800), 3, + [16639] = 1, + ACTIONS(796), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [16109] = 1, - ACTIONS(804), 3, + [16645] = 1, + ACTIONS(800), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [16115] = 3, - ACTIONS(1714), 1, - sym__block_close, - ACTIONS(1716), 1, - sym__heading_continuation, - STATE(697), 1, - aux_sym__heading_content_repeat1, - [16125] = 3, - ACTIONS(1718), 1, - sym__eof_or_newline, - ACTIONS(1720), 1, - sym__newline_inline, - STATE(690), 1, - aux_sym__paragraph_content_repeat1, - [16135] = 1, - ACTIONS(1722), 3, + [16651] = 1, + ACTIONS(804), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [16141] = 1, - ACTIONS(830), 3, + [16657] = 1, + ACTIONS(808), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [16147] = 1, - ACTIONS(1724), 3, - sym__block_close, - sym_list_marker_dash, - sym__block_quote_continuation, - [16153] = 1, - ACTIONS(1277), 3, - sym__block_close, - sym__block_quote_continuation, - aux_sym__line_token1, - [16159] = 1, + [16663] = 1, ACTIONS(812), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [16165] = 1, + [16669] = 1, ACTIONS(816), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [16171] = 1, - ACTIONS(528), 3, + [16675] = 1, + ACTIONS(820), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [16177] = 1, - ACTIONS(1724), 3, - sym__block_close, - sym_list_marker_star, - sym__block_quote_continuation, - [16183] = 1, - ACTIONS(842), 3, + [16681] = 1, + ACTIONS(824), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [16189] = 2, - ACTIONS(1726), 1, - sym__code_block_end, - ACTIONS(592), 2, - sym__block_close, - sym__block_quote_continuation, - [16197] = 1, - ACTIONS(848), 3, + [16687] = 1, + ACTIONS(828), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [16203] = 1, - ACTIONS(834), 3, + [16693] = 1, + ACTIONS(832), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [16209] = 3, - ACTIONS(987), 1, - sym_list_marker_star, - ACTIONS(1222), 1, - sym__block_quote_continuation, - STATE(650), 1, - aux_sym__block_quote_prefix_repeat1, - [16219] = 3, - ACTIONS(858), 1, - sym_list_marker_star, - ACTIONS(1728), 1, - sym__block_quote_continuation, - STATE(650), 1, - aux_sym__block_quote_prefix_repeat1, - [16229] = 1, - ACTIONS(826), 3, + [16699] = 1, + ACTIONS(836), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [16235] = 3, - ACTIONS(987), 1, - sym_list_marker_plus, - ACTIONS(1218), 1, - sym__block_quote_continuation, - STATE(619), 1, - aux_sym__block_quote_prefix_repeat1, - [16245] = 1, - ACTIONS(820), 3, + [16705] = 1, + ACTIONS(840), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [16251] = 3, - ACTIONS(987), 1, - sym__list_marker_task_begin, - ACTIONS(1178), 1, - sym__block_quote_continuation, - STATE(655), 1, - aux_sym__block_quote_prefix_repeat1, - [16261] = 3, - ACTIONS(858), 1, - sym__list_marker_task_begin, - ACTIONS(1731), 1, + [16711] = 1, + ACTIONS(844), 3, + sym__list_item_continuation, + sym__list_item_end, sym__block_quote_continuation, - STATE(655), 1, - aux_sym__block_quote_prefix_repeat1, - [16271] = 1, - ACTIONS(798), 3, + [16717] = 1, + ACTIONS(848), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [16277] = 1, - ACTIONS(766), 3, + [16723] = 1, + ACTIONS(852), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [16283] = 1, - ACTIONS(1734), 3, + [16729] = 1, + ACTIONS(1760), 3, + sym__block_close, + sym_list_marker_plus, + sym__block_quote_continuation, + [16735] = 1, + ACTIONS(1762), 3, sym__block_close, + sym_list_marker_dash, sym__block_quote_continuation, - aux_sym__line_token1, - [16289] = 3, - ACTIONS(987), 1, - sym__list_item_continuation, - ACTIONS(1290), 1, + [16741] = 1, + ACTIONS(1764), 3, + sym__block_close, + sym_list_marker_star, sym__block_quote_continuation, - STATE(660), 1, - aux_sym__block_quote_prefix_repeat1, - [16299] = 3, - ACTIONS(858), 1, - sym__list_item_continuation, - ACTIONS(1736), 1, + [16747] = 1, + ACTIONS(1766), 3, + sym__block_close, + sym_list_marker_plus, sym__block_quote_continuation, - STATE(660), 1, - aux_sym__block_quote_prefix_repeat1, - [16309] = 1, - ACTIONS(782), 3, - sym__list_item_continuation, - sym__list_item_end, + [16753] = 1, + ACTIONS(1768), 3, + sym__block_close, + sym__list_marker_task_begin, sym__block_quote_continuation, - [16315] = 1, - ACTIONS(640), 3, - sym__list_item_continuation, - sym__list_item_end, + [16759] = 3, + ACTIONS(1770), 1, + sym__eof_or_newline, + ACTIONS(1772), 1, + sym__newline_inline, + STATE(657), 1, + aux_sym__paragraph_inline_content_repeat1, + [16769] = 3, + ACTIONS(1774), 1, + sym__eof_or_newline, + ACTIONS(1776), 1, + sym__newline_inline, + STATE(657), 1, + aux_sym__paragraph_inline_content_repeat1, + [16779] = 2, + ACTIONS(1779), 1, + sym__div_end, + ACTIONS(540), 2, + sym__block_close, sym__block_quote_continuation, - [16321] = 1, - ACTIONS(722), 3, - sym__list_item_continuation, - sym__list_item_end, + [16787] = 2, + ACTIONS(1781), 1, + sym__code_block_end, + ACTIONS(546), 2, + sym__block_close, sym__block_quote_continuation, - [16327] = 1, - ACTIONS(1739), 3, - anon_sym_PERCENT, - sym_backslash_escape, - aux_sym__comment_no_newline_token1, - [16333] = 1, - ACTIONS(684), 3, + [16795] = 3, + ACTIONS(1783), 1, + sym__block_close, + ACTIONS(1785), 1, + sym__heading_continuation, + STATE(660), 1, + aux_sym__heading_content_repeat1, + [16805] = 1, + ACTIONS(1359), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [16339] = 3, - ACTIONS(1741), 1, - anon_sym_DQUOTE, - ACTIONS(1743), 1, - aux_sym_value_token2, - STATE(450), 1, - sym_value, - [16349] = 1, - ACTIONS(1745), 3, + [16811] = 1, + ACTIONS(1788), 3, sym__block_close, sym_list_marker_dash, sym__block_quote_continuation, - [16355] = 1, - ACTIONS(1747), 3, + [16817] = 3, + ACTIONS(1017), 1, + sym_list_marker_plus, + ACTIONS(1246), 1, + sym__block_quote_continuation, + STATE(666), 1, + aux_sym__block_quote_prefix_repeat1, + [16827] = 2, + ACTIONS(1790), 1, + sym__code_block_end, + ACTIONS(552), 2, sym__block_close, - sym_list_marker_star, sym__block_quote_continuation, - [16361] = 1, - ACTIONS(1749), 3, + [16835] = 2, + ACTIONS(1792), 1, + sym__code_block_end, + ACTIONS(558), 2, sym__block_close, + sym__block_quote_continuation, + [16843] = 3, + ACTIONS(876), 1, sym_list_marker_plus, + ACTIONS(1794), 1, sym__block_quote_continuation, - [16367] = 1, - ACTIONS(1751), 3, + STATE(666), 1, + aux_sym__block_quote_prefix_repeat1, + [16853] = 1, + ACTIONS(1797), 3, sym__block_close, sym__list_marker_task_begin, sym__block_quote_continuation, - [16373] = 1, - ACTIONS(680), 3, + [16859] = 1, + ACTIONS(530), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [16379] = 1, - ACTIONS(690), 3, + [16865] = 1, + ACTIONS(1788), 3, + sym__block_close, + sym_list_marker_plus, + sym__block_quote_continuation, + [16871] = 1, + ACTIONS(1267), 3, + sym__block_close, + sym__block_quote_continuation, + aux_sym__line_token1, + [16877] = 1, + ACTIONS(1799), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [16385] = 3, - ACTIONS(987), 1, - aux_sym__line_token1, - ACTIONS(1166), 1, + [16883] = 3, + ACTIONS(1772), 1, + sym__newline_inline, + ACTIONS(1801), 1, + sym__eof_or_newline, + STATE(656), 1, + aux_sym__paragraph_inline_content_repeat1, + [16893] = 3, + ACTIONS(1017), 1, + sym_list_marker_star, + ACTIONS(1254), 1, sym__block_quote_continuation, STATE(674), 1, aux_sym__block_quote_prefix_repeat1, - [16395] = 3, - ACTIONS(858), 1, - aux_sym__line_token1, - ACTIONS(1753), 1, + [16903] = 3, + ACTIONS(876), 1, + sym_list_marker_star, + ACTIONS(1803), 1, sym__block_quote_continuation, STATE(674), 1, aux_sym__block_quote_prefix_repeat1, - [16405] = 1, - ACTIONS(698), 3, + [16913] = 3, + ACTIONS(1017), 1, + sym__list_marker_task_begin, + ACTIONS(1179), 1, + sym__block_quote_continuation, + STATE(679), 1, + aux_sym__block_quote_prefix_repeat1, + [16923] = 1, + ACTIONS(1735), 3, + sym__block_close, + sym_list_marker_star, + sym__block_quote_continuation, + [16929] = 1, + ACTIONS(856), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [16411] = 1, - ACTIONS(702), 3, + [16935] = 2, + ACTIONS(1806), 1, + sym__code_block_end, + ACTIONS(534), 2, + sym__block_close, + sym__block_quote_continuation, + [16943] = 3, + ACTIONS(876), 1, + sym__list_marker_task_begin, + ACTIONS(1808), 1, + sym__block_quote_continuation, + STATE(679), 1, + aux_sym__block_quote_prefix_repeat1, + [16953] = 1, + ACTIONS(682), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [16417] = 1, - ACTIONS(710), 3, + [16959] = 3, + ACTIONS(1017), 1, sym__list_item_continuation, - sym__list_item_end, + ACTIONS(1310), 1, sym__block_quote_continuation, - [16423] = 1, - ACTIONS(714), 3, + STATE(686), 1, + aux_sym__block_quote_prefix_repeat1, + [16969] = 1, + ACTIONS(864), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [16429] = 1, - ACTIONS(730), 3, + [16975] = 1, + ACTIONS(868), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [16435] = 1, - ACTIONS(734), 3, + [16981] = 1, + ACTIONS(694), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [16441] = 3, - ACTIONS(480), 1, + [16987] = 1, + ACTIONS(1788), 3, + sym__block_close, + sym_list_marker_star, sym__block_quote_continuation, - ACTIONS(987), 1, - anon_sym_PIPE, - STATE(695), 1, + [16993] = 3, + ACTIONS(876), 1, + sym__list_item_continuation, + ACTIONS(1811), 1, + sym__block_quote_continuation, + STATE(686), 1, aux_sym__block_quote_prefix_repeat1, - [16451] = 3, - ACTIONS(1718), 1, - sym__eof_or_newline, - ACTIONS(1720), 1, + [17003] = 3, + ACTIONS(1772), 1, sym__newline_inline, - STATE(693), 1, - aux_sym__paragraph_content_repeat1, - [16461] = 3, - ACTIONS(858), 1, - sym_list_marker_dash, - ACTIONS(1756), 1, + ACTIONS(1801), 1, + sym__eof_or_newline, + STATE(657), 1, + aux_sym__paragraph_inline_content_repeat1, + [17013] = 1, + ACTIONS(872), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [17019] = 3, + ACTIONS(1017), 1, + aux_sym__line_token1, + ACTIONS(1185), 1, + sym__block_quote_continuation, + STATE(690), 1, + aux_sym__block_quote_prefix_repeat1, + [17029] = 3, + ACTIONS(876), 1, + aux_sym__line_token1, + ACTIONS(1814), 1, sym__block_quote_continuation, - STATE(683), 1, + STATE(690), 1, aux_sym__block_quote_prefix_repeat1, - [16471] = 1, - ACTIONS(1759), 3, + [17039] = 1, + ACTIONS(1735), 3, sym__block_close, sym__list_marker_task_begin, sym__block_quote_continuation, - [16477] = 2, - ACTIONS(1763), 1, - anon_sym_SPACE, - ACTIONS(1761), 2, - anon_sym_x, - anon_sym_X, - [16485] = 1, - ACTIONS(1765), 3, - sym__block_close, - sym_list_marker_plus, + [17045] = 1, + ACTIONS(690), 3, + sym__list_item_continuation, + sym__list_item_end, sym__block_quote_continuation, - [16491] = 1, - ACTIONS(1767), 3, + [17051] = 1, + ACTIONS(1817), 3, sym__block_close, - sym_list_marker_star, sym__block_quote_continuation, - [16497] = 1, - ACTIONS(1769), 3, + aux_sym__line_token1, + [17057] = 1, + ACTIONS(1788), 3, sym__block_close, - sym_list_marker_dash, + sym__list_marker_task_begin, sym__block_quote_continuation, - [16503] = 3, - ACTIONS(1716), 1, - sym__heading_continuation, - ACTIONS(1771), 1, - sym__block_close, - STATE(635), 1, - aux_sym__heading_content_repeat1, - [16513] = 3, - ACTIONS(1720), 1, + [17063] = 3, + ACTIONS(1772), 1, sym__newline_inline, - ACTIONS(1773), 1, + ACTIONS(1819), 1, sym__eof_or_newline, - STATE(693), 1, - aux_sym__paragraph_content_repeat1, - [16523] = 1, - ACTIONS(1724), 3, + STATE(687), 1, + aux_sym__paragraph_inline_content_repeat1, + [17073] = 2, + ACTIONS(1821), 1, + sym__div_end, + ACTIONS(572), 2, sym__block_close, - sym__list_marker_task_begin, sym__block_quote_continuation, - [16529] = 1, - ACTIONS(1775), 3, + [17081] = 1, + ACTIONS(1823), 3, sym__block_close, - sym__list_marker_task_begin, + sym_list_marker_star, sym__block_quote_continuation, - [16535] = 3, - ACTIONS(1777), 1, - sym__eof_or_newline, - ACTIONS(1779), 1, - sym__newline_inline, - STATE(693), 1, - aux_sym__paragraph_content_repeat1, - [16545] = 1, - ACTIONS(1775), 3, + [17087] = 1, + ACTIONS(710), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [17093] = 1, + ACTIONS(698), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [17099] = 2, + ACTIONS(1825), 1, + sym__code_block_end, + ACTIONS(578), 2, sym__block_close, - sym_list_marker_dash, sym__block_quote_continuation, - [16551] = 3, - ACTIONS(858), 1, - anon_sym_PIPE, - ACTIONS(1782), 1, + [17107] = 1, + ACTIONS(706), 3, + sym__list_item_continuation, + sym__list_item_end, sym__block_quote_continuation, - STATE(695), 1, - aux_sym__block_quote_prefix_repeat1, - [16561] = 1, - ACTIONS(1387), 3, + [17113] = 1, + ACTIONS(754), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [16567] = 3, - ACTIONS(1785), 1, - sym__block_close, - ACTIONS(1787), 1, - sym__heading_continuation, - STATE(697), 1, - aux_sym__heading_content_repeat1, - [16577] = 2, - ACTIONS(1790), 1, - sym__eof_or_newline, - ACTIONS(602), 2, - sym__block_close, + [17119] = 1, + ACTIONS(766), 3, + sym__list_item_continuation, + sym__list_item_end, sym__block_quote_continuation, - [16585] = 1, - ACTIONS(1724), 3, + [17125] = 1, + ACTIONS(714), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [17131] = 1, + ACTIONS(718), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [17137] = 1, + ACTIONS(722), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [17143] = 1, + ACTIONS(1827), 3, sym__block_close, - sym_list_marker_plus, + sym__list_marker_task_begin, sym__block_quote_continuation, - [16591] = 2, - ACTIONS(1792), 1, + [17149] = 1, + ACTIONS(782), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [17155] = 2, + ACTIONS(1829), 1, sym__div_end, - ACTIONS(538), 2, + ACTIONS(610), 2, sym__block_close, sym__block_quote_continuation, - [16599] = 2, - ACTIONS(1794), 1, + [17163] = 1, + ACTIONS(734), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [17169] = 1, + ACTIONS(738), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [17175] = 1, + ACTIONS(786), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [17181] = 1, + ACTIONS(742), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [17187] = 1, + ACTIONS(746), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [17193] = 1, + ACTIONS(750), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [17199] = 2, + ACTIONS(1831), 1, sym__code_block_end, - ACTIONS(532), 2, + ACTIONS(584), 2, sym__block_close, sym__block_quote_continuation, - [16607] = 1, - ACTIONS(1775), 3, - sym__block_close, - sym_list_marker_plus, + [17207] = 1, + ACTIONS(758), 3, + sym__list_item_continuation, + sym__list_item_end, sym__block_quote_continuation, - [16613] = 2, - ACTIONS(1796), 1, - sym__div_end, - ACTIONS(550), 2, - sym__block_close, + [17213] = 1, + ACTIONS(762), 3, + sym__list_item_continuation, + sym__list_item_end, sym__block_quote_continuation, - [16621] = 2, - ACTIONS(1798), 1, - sym__div_end, - ACTIONS(574), 2, + [17219] = 3, + ACTIONS(1833), 1, sym__block_close, + ACTIONS(1835), 1, + sym__heading_continuation, + STATE(660), 1, + aux_sym__heading_content_repeat1, + [17229] = 3, + ACTIONS(480), 1, sym__block_quote_continuation, - [16629] = 1, - ACTIONS(1775), 3, + ACTIONS(1017), 1, + anon_sym_PIPE, + STATE(723), 1, + aux_sym__block_quote_prefix_repeat1, + [17239] = 2, + ACTIONS(1837), 1, + sym__eof_or_newline, + ACTIONS(598), 2, sym__block_close, - sym_list_marker_star, sym__block_quote_continuation, - [16635] = 3, - ACTIONS(987), 1, + [17247] = 3, + ACTIONS(1017), 1, sym_list_marker_dash, - ACTIONS(1228), 1, + ACTIONS(1250), 1, sym__block_quote_continuation, - STATE(683), 1, + STATE(632), 1, aux_sym__block_quote_prefix_repeat1, - [16645] = 2, - ACTIONS(1800), 1, - sym__eof_or_newline, - ACTIONS(558), 2, - sym__block_close, - sym__block_quote_continuation, - [16653] = 2, - ACTIONS(1802), 1, - sym__code_block_end, - ACTIONS(616), 2, - sym__block_close, + [17257] = 3, + ACTIONS(876), 1, + anon_sym_PIPE, + ACTIONS(1839), 1, sym__block_quote_continuation, - [16661] = 2, - ACTIONS(1804), 1, - sym__code_block_end, - ACTIONS(640), 2, + STATE(723), 1, + aux_sym__block_quote_prefix_repeat1, + [17267] = 3, + ACTIONS(1835), 1, + sym__heading_continuation, + ACTIONS(1842), 1, sym__block_close, - sym__block_quote_continuation, - [16669] = 3, - ACTIONS(1720), 1, - sym__newline_inline, - ACTIONS(1806), 1, + STATE(719), 1, + aux_sym__heading_content_repeat1, + [17277] = 2, + ACTIONS(1844), 1, sym__eof_or_newline, - STATE(682), 1, - aux_sym__paragraph_content_repeat1, - [16679] = 2, - ACTIONS(1808), 1, - sym__div_end, - ACTIONS(646), 2, + ACTIONS(664), 2, sym__block_close, sym__block_quote_continuation, - [16687] = 2, - ACTIONS(1810), 1, - anon_sym_LBRACK, - STATE(973), 2, - sym_checked, - sym_unchecked, - [16695] = 2, - ACTIONS(1812), 1, - sym__code_block_end, - ACTIONS(608), 2, + [17285] = 1, + ACTIONS(1735), 3, sym__block_close, + sym_list_marker_plus, sym__block_quote_continuation, - [16703] = 1, - ACTIONS(1814), 2, - sym__eof_or_newline, - sym__newline_inline, - [16708] = 1, - ACTIONS(756), 2, - sym__block_close, + [17291] = 1, + ACTIONS(860), 3, + sym__list_item_continuation, + sym__list_item_end, sym__block_quote_continuation, - [16713] = 2, - ACTIONS(1816), 1, - sym__whitespace1, - ACTIONS(1818), 1, - sym__newline, - [16720] = 2, - ACTIONS(1820), 1, - anon_sym_PIPE, - STATE(717), 1, - aux_sym_table_separator_repeat1, - [16727] = 2, - ACTIONS(1823), 1, + [17297] = 2, + ACTIONS(1846), 1, sym_table_cell_alignment, - ACTIONS(1825), 1, + ACTIONS(1848), 1, sym__newline, - [16734] = 1, - ACTIONS(640), 2, + [17304] = 1, + ACTIONS(1850), 2, + sym__block_close, + sym_list_marker_decimal_period, + [17309] = 2, + ACTIONS(1852), 1, + anon_sym_PIPE, + STATE(794), 1, + aux_sym_table_row_repeat1, + [17316] = 1, + ACTIONS(1854), 2, + sym__block_close, + sym_list_marker_lower_alpha_period, + [17321] = 1, + ACTIONS(1856), 2, + sym__block_close, + sym_list_marker_upper_alpha_period, + [17326] = 1, + ACTIONS(1858), 2, + sym__block_close, + sym_list_marker_lower_roman_period, + [17331] = 1, + ACTIONS(718), 2, sym__block_close, sym__block_quote_continuation, - [16739] = 1, - ACTIONS(1827), 2, - sym__footnote_mark_begin, - sym__in_fallback, - [16744] = 2, - ACTIONS(1827), 1, - sym__in_fallback, - ACTIONS(1829), 1, - sym__footnote_mark_begin, - [16751] = 2, - ACTIONS(1832), 1, - sym__id, - STATE(1062), 1, - sym_reference_label, - [16758] = 2, - ACTIONS(1832), 1, - sym__id, - STATE(1055), 1, - sym_reference_label, - [16765] = 1, - ACTIONS(1396), 2, + [17336] = 1, + ACTIONS(722), 2, sym__block_close, sym__block_quote_continuation, - [16770] = 2, - ACTIONS(1832), 1, - sym__id, - STATE(1048), 1, - sym_reference_label, - [16777] = 2, - ACTIONS(1832), 1, - sym__id, - STATE(1041), 1, - sym_reference_label, - [16784] = 1, - ACTIONS(1834), 2, + [17341] = 1, + ACTIONS(1860), 2, sym__block_close, sym_list_marker_definition, - [16789] = 1, - ACTIONS(1836), 2, - sym__eof_or_newline, - sym__close_paragraph, - [16794] = 1, - ACTIONS(722), 2, + [17346] = 1, + ACTIONS(1862), 2, sym__block_close, - sym__block_quote_continuation, - [16799] = 2, - ACTIONS(1823), 1, - sym_table_cell_alignment, - ACTIONS(1838), 1, - sym__newline, - [16806] = 1, - ACTIONS(684), 2, + sym_list_marker_upper_roman_period, + [17351] = 1, + ACTIONS(868), 2, sym__block_close, sym__block_quote_continuation, - [16811] = 1, - ACTIONS(680), 2, + [17356] = 1, + ACTIONS(1864), 2, sym__block_close, - sym__block_quote_continuation, - [16816] = 2, - ACTIONS(1162), 1, - aux_sym__line_token1, - STATE(640), 1, - sym__line, - [16823] = 1, - ACTIONS(690), 2, + sym_list_marker_decimal_paren, + [17361] = 1, + ACTIONS(1735), 2, sym__block_close, - sym__block_quote_continuation, - [16828] = 1, - ACTIONS(698), 2, + sym_list_marker_decimal_period, + [17366] = 1, + ACTIONS(1866), 2, + sym__footnote_mark_begin, + sym__in_fallback, + [17371] = 1, + ACTIONS(1868), 2, sym__block_close, - sym__block_quote_continuation, - [16833] = 1, - ACTIONS(702), 2, + sym_list_marker_lower_alpha_paren, + [17376] = 2, + ACTIONS(1866), 1, + sym__in_fallback, + ACTIONS(1870), 1, + sym__footnote_mark_begin, + [17383] = 1, + ACTIONS(1873), 2, sym__block_close, - sym__block_quote_continuation, - [16838] = 1, - ACTIONS(1785), 2, + sym_list_marker_upper_alpha_paren, + [17388] = 2, + ACTIONS(1846), 1, + sym_table_cell_alignment, + ACTIONS(1875), 1, + sym__newline, + [17395] = 1, + ACTIONS(1877), 2, sym__block_close, - sym__heading_continuation, - [16843] = 2, - ACTIONS(1823), 1, + sym_list_marker_lower_roman_paren, + [17400] = 1, + ACTIONS(1879), 2, + sym__block_close, + sym_list_marker_upper_roman_paren, + [17405] = 2, + ACTIONS(31), 1, + sym__list_marker_task_begin, + STATE(34), 1, + sym_list_marker_task, + [17412] = 2, + ACTIONS(1846), 1, sym_table_cell_alignment, - ACTIONS(1840), 1, + ACTIONS(1881), 1, sym__newline, - [16850] = 1, - ACTIONS(710), 2, + [17419] = 2, + ACTIONS(1883), 1, + sym__eof_or_newline, + STATE(152), 1, + sym__one_or_two_newlines, + [17426] = 1, + ACTIONS(1788), 2, sym__block_close, - sym__block_quote_continuation, - [16855] = 1, - ACTIONS(714), 2, + sym_list_marker_decimal_period, + [17431] = 2, + ACTIONS(1846), 1, + sym_table_cell_alignment, + ACTIONS(1885), 1, + sym__newline, + [17438] = 1, + ACTIONS(730), 2, sym__block_close, sym__block_quote_continuation, - [16860] = 2, - ACTIONS(1842), 1, - anon_sym_PIPE, - STATE(758), 1, - aux_sym_table_row_repeat1, - [16867] = 2, - ACTIONS(1844), 1, - anon_sym_PIPE, + [17443] = 2, + ACTIONS(1887), 1, + sym__eof_or_newline, STATE(717), 1, - aux_sym_table_separator_repeat1, - [16874] = 1, - ACTIONS(730), 2, + sym__one_or_two_newlines, + [17450] = 1, + ACTIONS(1889), 2, + sym__eof_or_newline, + sym__close_paragraph, + [17455] = 1, + ACTIONS(734), 2, sym__block_close, sym__block_quote_continuation, - [16879] = 1, - ACTIONS(734), 2, + [17460] = 1, + ACTIONS(738), 2, sym__block_close, sym__block_quote_continuation, - [16884] = 2, - ACTIONS(1846), 1, - anon_sym_PIPE, - STATE(741), 1, - aux_sym_table_row_repeat1, - [16891] = 2, - ACTIONS(1823), 1, - sym_table_cell_alignment, - ACTIONS(1848), 1, - sym__newline, - [16898] = 2, - ACTIONS(1850), 1, + [17465] = 2, + ACTIONS(1891), 1, anon_sym_PIPE, - STATE(742), 1, + STATE(805), 1, aux_sym_table_separator_repeat1, - [16905] = 2, - ACTIONS(1846), 1, + [17472] = 2, + ACTIONS(1852), 1, anon_sym_PIPE, - STATE(758), 1, + STATE(807), 1, aux_sym_table_row_repeat1, - [16912] = 2, - ACTIONS(1850), 1, - anon_sym_PIPE, - STATE(717), 1, - aux_sym_table_separator_repeat1, - [16919] = 1, - ACTIONS(445), 2, - sym_list_marker_dash, - sym__block_quote_continuation, - [16924] = 1, - ACTIONS(766), 2, + [17479] = 1, + ACTIONS(742), 2, sym__block_close, sym__block_quote_continuation, - [16929] = 1, - ACTIONS(798), 2, - sym__block_close, - sym__block_quote_continuation, - [16934] = 2, - ACTIONS(1852), 1, - sym__eof_or_newline, - STATE(679), 1, - sym__one_or_two_newlines, - [16941] = 1, - ACTIONS(1854), 2, + [17484] = 1, + ACTIONS(1893), 2, sym__eof_or_newline, sym__close_paragraph, - [16946] = 2, - ACTIONS(1856), 1, - anon_sym_PIPE, - STATE(748), 1, - aux_sym_table_row_repeat1, - [16953] = 2, - ACTIONS(1858), 1, - anon_sym_PIPE, - STATE(749), 1, - aux_sym_table_separator_repeat1, - [16960] = 1, - ACTIONS(1777), 2, - sym__eof_or_newline, - sym__newline_inline, - [16965] = 2, - ACTIONS(1860), 1, - anon_sym_PIPE, - STATE(758), 1, - aux_sym_table_row_repeat1, - [16972] = 1, - ACTIONS(1775), 2, + [17489] = 1, + ACTIONS(746), 2, sym__block_close, - sym_list_marker_upper_roman_parens, - [16977] = 1, - ACTIONS(1724), 2, + sym__block_quote_continuation, + [17494] = 1, + ACTIONS(1895), 2, sym__block_close, - sym_list_marker_upper_roman_parens, - [16982] = 1, - ACTIONS(1775), 2, + sym_list_marker_decimal_parens, + [17499] = 1, + ACTIONS(1774), 2, + sym__eof_or_newline, + sym__newline_inline, + [17504] = 1, + ACTIONS(750), 2, sym__block_close, - sym_list_marker_lower_roman_parens, - [16987] = 1, - ACTIONS(1724), 2, + sym__block_quote_continuation, + [17509] = 1, + ACTIONS(1897), 2, sym__block_close, - sym_list_marker_lower_roman_parens, - [16992] = 1, - ACTIONS(1775), 2, + sym_list_marker_lower_alpha_parens, + [17514] = 1, + ACTIONS(1899), 2, sym__block_close, sym_list_marker_upper_alpha_parens, - [16997] = 1, - ACTIONS(1724), 2, + [17519] = 1, + ACTIONS(1901), 2, sym__block_close, - sym_list_marker_upper_alpha_parens, - [17002] = 1, - ACTIONS(1775), 2, + sym_list_marker_lower_roman_parens, + [17524] = 1, + ACTIONS(1903), 2, sym__block_close, - sym_list_marker_lower_alpha_parens, - [17007] = 1, - ACTIONS(1724), 2, + sym_list_marker_upper_roman_parens, + [17529] = 1, + ACTIONS(864), 2, sym__block_close, - sym_list_marker_lower_alpha_parens, - [17012] = 1, - ACTIONS(1775), 2, + sym__block_quote_continuation, + [17534] = 1, + ACTIONS(758), 2, sym__block_close, - sym_list_marker_decimal_parens, - [17017] = 1, - ACTIONS(1724), 2, + sym__block_quote_continuation, + [17539] = 1, + ACTIONS(1905), 2, sym__block_close, sym_list_marker_decimal_parens, - [17022] = 1, - ACTIONS(1775), 2, - sym__block_close, - sym_list_marker_upper_roman_paren, - [17027] = 1, - ACTIONS(1724), 2, - sym__block_close, - sym_list_marker_upper_roman_paren, - [17032] = 1, - ACTIONS(1775), 2, - sym__block_close, - sym_list_marker_lower_roman_paren, - [17037] = 1, - ACTIONS(1724), 2, - sym__block_close, - sym_list_marker_lower_roman_paren, - [17042] = 1, - ACTIONS(1775), 2, - sym__block_close, - sym_list_marker_upper_alpha_paren, - [17047] = 1, - ACTIONS(1724), 2, + [17544] = 1, + ACTIONS(1783), 2, sym__block_close, - sym_list_marker_upper_alpha_paren, - [17052] = 1, - ACTIONS(1863), 2, + sym__heading_continuation, + [17549] = 1, + ACTIONS(1907), 2, sym__footnote_mark_begin, sym__in_fallback, - [17057] = 1, - ACTIONS(826), 2, - sym__block_close, - sym__block_quote_continuation, - [17062] = 1, - ACTIONS(1865), 2, - sym__eof_or_newline, - sym__close_paragraph, - [17067] = 1, - ACTIONS(1775), 2, - sym__block_close, - sym_list_marker_lower_alpha_paren, - [17072] = 1, - ACTIONS(834), 2, + [17554] = 1, + ACTIONS(762), 2, sym__block_close, sym__block_quote_continuation, - [17077] = 1, - ACTIONS(848), 2, + [17559] = 2, + ACTIONS(1181), 1, + aux_sym__line_token1, + STATE(670), 1, + sym__line, + [17566] = 1, + ACTIONS(860), 2, sym__block_close, sym__block_quote_continuation, - [17082] = 2, - ACTIONS(1867), 1, - anon_sym_PIPE, - STATE(817), 1, - aux_sym_table_row_repeat1, - [17089] = 2, - ACTIONS(1869), 1, - anon_sym_PIPE, - STATE(816), 1, - aux_sym_table_separator_repeat1, - [17096] = 1, - ACTIONS(1724), 2, - sym__block_close, - sym_list_marker_lower_alpha_paren, - [17101] = 2, - ACTIONS(1823), 1, - sym_table_cell_alignment, - ACTIONS(1871), 1, - sym__newline, - [17108] = 2, - ACTIONS(1873), 1, - anon_sym_PIPE, - STATE(758), 1, - aux_sym_table_row_repeat1, - [17115] = 2, - ACTIONS(1875), 1, + [17571] = 2, + ACTIONS(1909), 1, anon_sym_PIPE, - STATE(717), 1, + STATE(830), 1, aux_sym_table_separator_repeat1, - [17122] = 1, - ACTIONS(842), 2, - sym__block_close, + [17578] = 1, + ACTIONS(441), 2, + sym_list_marker_dash, sym__block_quote_continuation, - [17127] = 1, - ACTIONS(528), 2, - sym__block_close, + [17583] = 1, + ACTIONS(441), 2, + sym_list_marker_plus, sym__block_quote_continuation, - [17132] = 2, - ACTIONS(1877), 1, - anon_sym_PIPE, - STATE(785), 1, - aux_sym_table_row_repeat1, - [17139] = 2, - ACTIONS(1879), 1, - anon_sym_PIPE, - STATE(786), 1, - aux_sym_table_separator_repeat1, - [17146] = 2, - ACTIONS(1877), 1, + [17588] = 2, + ACTIONS(1911), 1, anon_sym_PIPE, - STATE(758), 1, + STATE(730), 1, aux_sym_table_row_repeat1, - [17153] = 2, - ACTIONS(1879), 1, - anon_sym_PIPE, - STATE(717), 1, - aux_sym_table_separator_repeat1, - [17160] = 2, - ACTIONS(1823), 1, + [17595] = 2, + ACTIONS(1846), 1, sym_table_cell_alignment, - ACTIONS(1881), 1, - sym__newline, - [17167] = 1, - ACTIONS(445), 2, - sym__block_quote_continuation, - aux_sym__line_token1, - [17172] = 2, - ACTIONS(1883), 1, - sym_language, - ACTIONS(1885), 1, + ACTIONS(1913), 1, sym__newline, - [17179] = 1, - ACTIONS(1775), 2, - sym__block_close, - sym_list_marker_decimal_paren, - [17184] = 1, - ACTIONS(1887), 2, - sym__footnote_mark_begin, - sym__in_fallback, - [17189] = 2, - ACTIONS(1889), 1, - anon_sym_PIPE, - STATE(791), 1, - aux_sym_table_row_repeat1, - [17196] = 2, - ACTIONS(1891), 1, - anon_sym_PIPE, - STATE(792), 1, - aux_sym_table_separator_repeat1, - [17203] = 1, - ACTIONS(820), 2, - sym__block_close, - sym__block_quote_continuation, - [17208] = 1, - ACTIONS(816), 2, - sym__block_close, - sym__block_quote_continuation, - [17213] = 2, - ACTIONS(1893), 1, - sym__id, - STATE(964), 1, - sym_class_name, - [17220] = 2, - ACTIONS(1823), 1, + [17602] = 2, + ACTIONS(1846), 1, sym_table_cell_alignment, - ACTIONS(1895), 1, + ACTIONS(1915), 1, sym__newline, - [17227] = 1, - ACTIONS(1724), 2, - sym__block_close, - sym_list_marker_decimal_paren, - [17232] = 2, - ACTIONS(1897), 1, - anon_sym_PIPE, - STATE(758), 1, - aux_sym_table_row_repeat1, - [17239] = 2, - ACTIONS(1899), 1, - anon_sym_PIPE, - STATE(717), 1, - aux_sym_table_separator_repeat1, - [17246] = 1, - ACTIONS(812), 2, - sym__block_close, - sym__block_quote_continuation, - [17251] = 1, - ACTIONS(804), 2, - sym__block_close, - sym__block_quote_continuation, - [17256] = 2, - ACTIONS(1901), 1, - anon_sym_PIPE, - STATE(805), 1, - aux_sym_table_row_repeat1, - [17263] = 2, - ACTIONS(1903), 1, + [17609] = 2, + ACTIONS(1917), 1, sym__eof_or_newline, - STATE(743), 1, + STATE(771), 1, sym__one_or_two_newlines, - [17270] = 1, - ACTIONS(1905), 2, - sym__eof_or_newline, - sym__close_paragraph, - [17275] = 2, - ACTIONS(1867), 1, - anon_sym_PIPE, - STATE(758), 1, - aux_sym_table_row_repeat1, - [17282] = 2, - ACTIONS(1869), 1, - anon_sym_PIPE, - STATE(717), 1, - aux_sym_table_separator_repeat1, - [17289] = 2, - ACTIONS(1823), 1, - sym_table_cell_alignment, - ACTIONS(1907), 1, - sym__newline, - [17296] = 2, - ACTIONS(1909), 1, - anon_sym_PIPE, - STATE(806), 1, - aux_sym_table_separator_repeat1, - [17303] = 2, - ACTIONS(1911), 1, - anon_sym_PIPE, - STATE(717), 1, - aux_sym_table_separator_repeat1, - [17310] = 2, - ACTIONS(1913), 1, - anon_sym_PIPE, - STATE(758), 1, - aux_sym_table_row_repeat1, - [17317] = 1, - ACTIONS(1775), 2, - sym__block_close, - sym_list_marker_upper_roman_period, - [17322] = 1, - ACTIONS(1724), 2, - sym__block_close, - sym_list_marker_upper_roman_period, - [17327] = 1, - ACTIONS(445), 2, - sym__list_item_continuation, - sym__block_quote_continuation, - [17332] = 1, - ACTIONS(1775), 2, - sym__block_close, - sym_list_marker_lower_roman_period, - [17337] = 2, - ACTIONS(1901), 1, - anon_sym_PIPE, - STATE(758), 1, - aux_sym_table_row_repeat1, - [17344] = 1, - ACTIONS(1724), 2, - sym__block_close, - sym_list_marker_lower_roman_period, - [17349] = 1, - ACTIONS(445), 2, - sym__list_marker_task_begin, - sym__block_quote_continuation, - [17354] = 1, - ACTIONS(1775), 2, - sym__block_close, - sym_list_marker_upper_alpha_period, - [17359] = 1, - ACTIONS(1724), 2, - sym__block_close, - sym_list_marker_upper_alpha_period, - [17364] = 1, - ACTIONS(445), 2, - sym_list_marker_star, - sym__block_quote_continuation, - [17369] = 1, - ACTIONS(1915), 2, + [17616] = 1, + ACTIONS(1919), 2, sym__eof_or_newline, sym__close_paragraph, - [17374] = 1, - ACTIONS(1734), 2, - sym_frontmatter_marker, - aux_sym__line_token1, - [17379] = 2, - ACTIONS(1909), 1, - anon_sym_PIPE, - STATE(717), 1, - aux_sym_table_separator_repeat1, - [17386] = 1, - ACTIONS(800), 2, - sym__block_close, - sym__block_quote_continuation, - [17391] = 1, - ACTIONS(1917), 2, - sym__footnote_mark_begin, - sym__in_fallback, - [17396] = 1, - ACTIONS(792), 2, + [17621] = 1, + ACTIONS(1921), 2, sym__block_close, - sym__block_quote_continuation, - [17401] = 1, - ACTIONS(784), 2, + sym_list_marker_definition, + [17626] = 1, + ACTIONS(1923), 2, sym__block_close, - sym__block_quote_continuation, - [17406] = 2, - ACTIONS(1919), 1, - anon_sym_PIPE, - STATE(822), 1, - aux_sym_table_row_repeat1, - [17413] = 2, - ACTIONS(1921), 1, - anon_sym_PIPE, - STATE(830), 1, - aux_sym_table_separator_repeat1, - [17420] = 1, - ACTIONS(782), 2, + sym_list_marker_lower_alpha_period, + [17631] = 1, + ACTIONS(1416), 2, sym__block_close, sym__block_quote_continuation, - [17425] = 1, - ACTIONS(1923), 2, - sym__eof_or_newline, - sym__close_paragraph, - [17430] = 2, + [17636] = 2, ACTIONS(1925), 1, - anon_sym_PIPE, - STATE(758), 1, - aux_sym_table_row_repeat1, - [17437] = 2, - ACTIONS(1823), 1, + sym__id, + STATE(465), 1, + sym_class_name, + [17643] = 2, + ACTIONS(1846), 1, sym_table_cell_alignment, ACTIONS(1927), 1, sym__newline, - [17444] = 2, + [17650] = 2, ACTIONS(1929), 1, anon_sym_PIPE, - STATE(717), 1, + STATE(791), 1, aux_sym_table_separator_repeat1, - [17451] = 1, - ACTIONS(1931), 2, + [17657] = 1, + ACTIONS(1932), 2, sym__block_close, - sym_list_marker_lower_alpha_period, - [17456] = 1, - ACTIONS(1933), 2, + sym_list_marker_lower_alpha_paren, + [17662] = 1, + ACTIONS(1934), 2, sym__block_close, - sym_list_marker_upper_alpha_period, - [17461] = 2, - ACTIONS(1935), 1, - anon_sym_PIPE, - STATE(839), 1, - aux_sym_table_row_repeat1, - [17468] = 2, - ACTIONS(1937), 1, - anon_sym_PIPE, - STATE(841), 1, - aux_sym_table_separator_repeat1, - [17475] = 2, - ACTIONS(1935), 1, + sym_list_marker_lower_alpha_parens, + [17667] = 2, + ACTIONS(1936), 1, anon_sym_PIPE, - STATE(758), 1, + STATE(794), 1, aux_sym_table_row_repeat1, - [17482] = 2, - ACTIONS(1937), 1, - anon_sym_PIPE, - STATE(717), 1, - aux_sym_table_separator_repeat1, - [17489] = 1, + [17674] = 1, ACTIONS(1939), 2, sym__block_close, - sym_list_marker_definition, - [17494] = 2, - ACTIONS(1823), 1, - sym_table_cell_alignment, - ACTIONS(1941), 1, - sym__newline, - [17501] = 1, - ACTIONS(1108), 2, - sym__block_close, - sym__heading_continuation, - [17506] = 1, + sym_list_marker_decimal_period, + [17679] = 1, + ACTIONS(1941), 2, + sym__footnote_mark_begin, + sym__in_fallback, + [17684] = 1, ACTIONS(1943), 2, sym__block_close, - sym_list_marker_lower_roman_period, - [17511] = 1, + sym_list_marker_upper_alpha_period, + [17689] = 1, ACTIONS(1945), 2, sym__block_close, - sym_list_marker_upper_roman_period, - [17516] = 1, + sym_list_marker_upper_alpha_paren, + [17694] = 1, ACTIONS(1947), 2, sym__block_close, - sym_list_marker_decimal_paren, - [17521] = 2, + sym_list_marker_upper_alpha_parens, + [17699] = 2, + ACTIONS(1846), 1, + sym_table_cell_alignment, ACTIONS(1949), 1, - anon_sym_PIPE, - STATE(846), 1, - aux_sym_table_row_repeat1, - [17528] = 2, - ACTIONS(1951), 1, - anon_sym_PIPE, - STATE(847), 1, - aux_sym_table_separator_repeat1, - [17535] = 1, - ACTIONS(776), 2, + sym__newline, + [17706] = 1, + ACTIONS(1951), 2, sym__block_close, - sym__block_quote_continuation, - [17540] = 1, + sym_list_marker_lower_roman_period, + [17711] = 1, ACTIONS(1953), 2, sym__block_close, - sym_list_marker_lower_alpha_paren, - [17545] = 1, - ACTIONS(1955), 2, + sym_list_marker_lower_roman_paren, + [17716] = 1, + ACTIONS(1109), 2, sym__block_close, - sym_list_marker_upper_alpha_paren, - [17550] = 2, - ACTIONS(1823), 1, + sym__heading_continuation, + [17721] = 1, + ACTIONS(1735), 2, + sym__block_close, + sym_list_marker_lower_alpha_period, + [17726] = 2, + ACTIONS(1955), 1, + anon_sym_PIPE, + STATE(791), 1, + aux_sym_table_separator_repeat1, + [17733] = 2, + ACTIONS(1846), 1, sym_table_cell_alignment, ACTIONS(1957), 1, sym__newline, - [17557] = 1, - ACTIONS(1959), 2, - sym__block_close, - sym_list_marker_lower_roman_paren, - [17562] = 1, + [17740] = 2, + ACTIONS(1959), 1, + anon_sym_PIPE, + STATE(794), 1, + aux_sym_table_row_repeat1, + [17747] = 1, ACTIONS(1961), 2, - sym__block_close, - sym_list_marker_upper_roman_paren, - [17567] = 1, - ACTIONS(1963), 2, - sym__block_close, - sym_list_marker_decimal_parens, - [17572] = 1, + sym__eof_or_newline, + sym__close_paragraph, + [17752] = 2, + ACTIONS(1846), 1, + sym_table_cell_alignment, + ACTIONS(1963), 1, + sym__newline, + [17759] = 1, ACTIONS(1965), 2, - sym__block_close, - sym_list_marker_lower_alpha_parens, - [17577] = 1, - ACTIONS(1967), 2, - sym__block_close, - sym_list_marker_upper_alpha_parens, - [17582] = 1, - ACTIONS(1969), 2, - sym__block_close, - sym_list_marker_lower_roman_parens, - [17587] = 2, - ACTIONS(1971), 1, sym__eof_or_newline, - STATE(146), 1, + sym__newline_inline, + [17764] = 2, + ACTIONS(1967), 1, + sym__eof_or_newline, + STATE(220), 1, sym__one_or_two_newlines, - [17594] = 1, - ACTIONS(1973), 2, + [17771] = 1, + ACTIONS(1969), 2, sym__eof_or_newline, sym__close_paragraph, - [17599] = 1, - ACTIONS(1975), 2, + [17776] = 1, + ACTIONS(1788), 2, sym__block_close, - sym_list_marker_upper_roman_parens, - [17604] = 2, - ACTIONS(1977), 1, - anon_sym_PIPE, - STATE(813), 1, - aux_sym_table_separator_repeat1, - [17611] = 2, - ACTIONS(1979), 1, - anon_sym_PIPE, - STATE(812), 1, - aux_sym_table_row_repeat1, - [17618] = 2, - ACTIONS(1981), 1, - sym__id, - STATE(474), 1, - sym_class_name, - [17625] = 1, - ACTIONS(772), 2, + sym_list_marker_lower_alpha_period, + [17781] = 1, + ACTIONS(1971), 2, sym__block_close, - sym__block_quote_continuation, - [17630] = 1, - ACTIONS(768), 2, + sym_list_marker_lower_roman_parens, + [17786] = 1, + ACTIONS(1817), 2, + sym_frontmatter_marker, + aux_sym__line_token1, + [17791] = 1, + ACTIONS(698), 2, sym__block_close, sym__block_quote_continuation, - [17635] = 2, - ACTIONS(1823), 1, - sym_table_cell_alignment, - ACTIONS(1983), 1, - sym__newline, - [17642] = 2, - ACTIONS(1832), 1, + [17796] = 2, + ACTIONS(1973), 1, sym__id, - STATE(1010), 1, + STATE(981), 1, sym_reference_label, - [17649] = 1, - ACTIONS(1985), 2, + [17803] = 1, + ACTIONS(1975), 2, sym__block_close, - sym_list_marker_decimal_period, - [17654] = 1, - ACTIONS(1987), 2, - sym__eof_or_newline, - sym__close_paragraph, - [17659] = 1, - ACTIONS(670), 2, + sym_list_marker_upper_roman_period, + [17808] = 1, + ACTIONS(1977), 2, + sym__block_close, + sym_list_marker_upper_roman_paren, + [17813] = 1, + ACTIONS(690), 2, sym__block_close, sym__block_quote_continuation, - [17664] = 1, - ACTIONS(760), 2, + [17818] = 1, + ACTIONS(1979), 2, + sym__block_close, + sym_list_marker_definition, + [17823] = 1, + ACTIONS(1981), 2, + sym__block_close, + sym_list_marker_upper_roman_parens, + [17828] = 2, + ACTIONS(1846), 1, + sym_table_cell_alignment, + ACTIONS(1983), 1, + sym__newline, + [17835] = 1, + ACTIONS(706), 2, sym__block_close, sym__block_quote_continuation, - [17669] = 2, - ACTIONS(31), 1, - sym__list_marker_task_begin, - STATE(39), 1, - sym_list_marker_task, - [17676] = 2, - ACTIONS(1989), 1, + [17840] = 2, + ACTIONS(1846), 1, + sym_table_cell_alignment, + ACTIONS(1985), 1, + sym__newline, + [17847] = 2, + ACTIONS(1846), 1, + sym_table_cell_alignment, + ACTIONS(1987), 1, + sym__newline, + [17854] = 1, + ACTIONS(1989), 2, sym__eof_or_newline, - STATE(258), 1, - sym__one_or_two_newlines, - [17683] = 2, + sym__close_paragraph, + [17859] = 1, + ACTIONS(441), 2, + sym_list_marker_star, + sym__block_quote_continuation, + [17864] = 2, + ACTIONS(1846), 1, + sym_table_cell_alignment, ACTIONS(1991), 1, + sym__newline, + [17871] = 2, + ACTIONS(1891), 1, + anon_sym_PIPE, + STATE(791), 1, + aux_sym_table_separator_repeat1, + [17878] = 2, + ACTIONS(1993), 1, sym__eof_or_newline, - STATE(237), 1, + STATE(267), 1, sym__one_or_two_newlines, - [17690] = 1, - ACTIONS(1775), 2, + [17885] = 1, + ACTIONS(1735), 2, sym__block_close, - sym_list_marker_lower_alpha_period, - [17695] = 1, - ACTIONS(1724), 2, + sym_list_marker_upper_alpha_period, + [17890] = 1, + ACTIONS(1788), 2, sym__block_close, - sym_list_marker_lower_alpha_period, - [17700] = 1, - ACTIONS(1724), 2, + sym_list_marker_upper_alpha_period, + [17895] = 1, + ACTIONS(441), 2, + sym__list_marker_task_begin, + sym__block_quote_continuation, + [17900] = 1, + ACTIONS(1735), 2, sym__block_close, - sym_list_marker_decimal_period, - [17705] = 1, - ACTIONS(445), 2, - sym_list_marker_plus, + sym_list_marker_lower_roman_period, + [17905] = 1, + ACTIONS(1788), 2, + sym__block_close, + sym_list_marker_lower_roman_period, + [17910] = 1, + ACTIONS(441), 2, + sym__list_item_continuation, sym__block_quote_continuation, - [17710] = 1, - ACTIONS(445), 2, + [17915] = 1, + ACTIONS(872), 2, + sym__block_close, sym__block_quote_continuation, - anon_sym_PIPE, - [17715] = 1, - ACTIONS(746), 2, + [17920] = 1, + ACTIONS(714), 2, sym__block_close, sym__block_quote_continuation, - [17720] = 2, - ACTIONS(1823), 1, - sym_table_cell_alignment, - ACTIONS(1993), 1, - sym__newline, - [17727] = 1, + [17925] = 1, + ACTIONS(856), 2, + sym__block_close, + sym__block_quote_continuation, + [17930] = 1, + ACTIONS(1788), 2, + sym__block_close, + sym_list_marker_upper_roman_period, + [17935] = 1, ACTIONS(1995), 2, sym__eof_or_newline, sym__close_paragraph, - [17732] = 1, - ACTIONS(754), 2, + [17940] = 1, + ACTIONS(1735), 2, sym__block_close, - sym__block_quote_continuation, - [17737] = 1, - ACTIONS(676), 2, + sym_list_marker_decimal_paren, + [17945] = 1, + ACTIONS(1788), 2, sym__block_close, + sym_list_marker_decimal_paren, + [17950] = 1, + ACTIONS(441), 2, sym__block_quote_continuation, - [17742] = 1, - ACTIONS(692), 2, + aux_sym__line_token1, + [17955] = 1, + ACTIONS(1735), 2, sym__block_close, - sym__block_quote_continuation, - [17747] = 2, - ACTIONS(1823), 1, - sym_table_cell_alignment, - ACTIONS(1997), 1, - sym__newline, - [17754] = 1, - ACTIONS(704), 2, + sym_list_marker_lower_alpha_paren, + [17960] = 1, + ACTIONS(1788), 2, sym__block_close, - sym__block_quote_continuation, - [17759] = 1, - ACTIONS(748), 2, + sym_list_marker_lower_alpha_paren, + [17965] = 1, + ACTIONS(1997), 2, sym__block_close, - sym__block_quote_continuation, - [17764] = 1, - ACTIONS(1775), 2, + sym_list_marker_decimal_paren, + [17970] = 1, + ACTIONS(1999), 2, + sym__eof_or_newline, + sym__close_paragraph, + [17975] = 1, + ACTIONS(1735), 2, sym__block_close, - sym_list_marker_decimal_period, - [17769] = 1, - ACTIONS(716), 2, + sym_list_marker_upper_alpha_paren, + [17980] = 1, + ACTIONS(1788), 2, sym__block_close, - sym__block_quote_continuation, - [17774] = 1, - ACTIONS(724), 2, + sym_list_marker_upper_alpha_paren, + [17985] = 1, + ACTIONS(1735), 2, sym__block_close, - sym__block_quote_continuation, - [17779] = 2, - ACTIONS(1823), 1, - sym_table_cell_alignment, - ACTIONS(1999), 1, - sym__newline, - [17786] = 1, - ACTIONS(736), 2, + sym_list_marker_lower_roman_paren, + [17990] = 1, + ACTIONS(1788), 2, sym__block_close, - sym__block_quote_continuation, - [17791] = 1, - ACTIONS(740), 2, + sym_list_marker_lower_roman_paren, + [17995] = 1, + ACTIONS(1735), 2, sym__block_close, - sym__block_quote_continuation, - [17796] = 1, - ACTIONS(2001), 1, + sym_list_marker_upper_roman_paren, + [18000] = 1, + ACTIONS(1788), 2, + sym__block_close, + sym_list_marker_upper_roman_paren, + [18005] = 1, + ACTIONS(1735), 2, sym__block_close, - [17800] = 1, + sym_list_marker_decimal_parens, + [18010] = 2, + ACTIONS(2001), 1, + anon_sym_PIPE, + STATE(862), 1, + aux_sym_table_separator_repeat1, + [18017] = 2, ACTIONS(2003), 1, - sym__newline, - [17804] = 1, - ACTIONS(1200), 1, + anon_sym_PIPE, + STATE(863), 1, + aux_sym_table_row_repeat1, + [18024] = 1, + ACTIONS(1788), 2, sym__block_close, - [17808] = 1, + sym_list_marker_decimal_parens, + [18029] = 1, + ACTIONS(1735), 2, + sym__block_close, + sym_list_marker_lower_alpha_parens, + [18034] = 1, + ACTIONS(1788), 2, + sym__block_close, + sym_list_marker_lower_alpha_parens, + [18039] = 2, ACTIONS(2005), 1, - sym__newline, - [17812] = 1, + anon_sym_PIPE, + STATE(791), 1, + aux_sym_table_separator_repeat1, + [18046] = 2, ACTIONS(2007), 1, - sym__newline, - [17816] = 1, - ACTIONS(2009), 1, + anon_sym_PIPE, + STATE(794), 1, + aux_sym_table_row_repeat1, + [18053] = 2, + ACTIONS(2005), 1, + anon_sym_PIPE, + STATE(868), 1, + aux_sym_table_separator_repeat1, + [18060] = 2, + ACTIONS(2007), 1, + anon_sym_PIPE, + STATE(869), 1, + aux_sym_table_row_repeat1, + [18067] = 1, + ACTIONS(1735), 2, + sym__block_close, + sym_list_marker_upper_alpha_parens, + [18072] = 1, + ACTIONS(1788), 2, sym__block_close, - [17820] = 1, + sym_list_marker_upper_alpha_parens, + [18077] = 2, + ACTIONS(2009), 1, + anon_sym_PIPE, + STATE(791), 1, + aux_sym_table_separator_repeat1, + [18084] = 2, ACTIONS(2011), 1, + anon_sym_PIPE, + STATE(794), 1, + aux_sym_table_row_repeat1, + [18091] = 1, + ACTIONS(1735), 2, + sym__block_close, + sym_list_marker_lower_roman_parens, + [18096] = 1, + ACTIONS(441), 2, + sym__block_quote_continuation, + anon_sym_PIPE, + [18101] = 1, + ACTIONS(682), 2, sym__block_close, - [17824] = 1, + sym__block_quote_continuation, + [18106] = 1, + ACTIONS(1788), 2, + sym__block_close, + sym_list_marker_lower_roman_parens, + [18111] = 2, ACTIONS(2013), 1, - sym__footnote_end, - [17828] = 1, + anon_sym_PIPE, + STATE(879), 1, + aux_sym_table_separator_repeat1, + [18118] = 2, ACTIONS(2015), 1, - sym__newline, - [17832] = 1, + anon_sym_PIPE, + STATE(880), 1, + aux_sym_table_row_repeat1, + [18125] = 1, + ACTIONS(694), 2, + sym__block_close, + sym__block_quote_continuation, + [18130] = 2, ACTIONS(2017), 1, - sym__newline, - [17836] = 1, + sym__whitespace1, ACTIONS(2019), 1, - sym_table_cell_alignment, - [17840] = 1, + sym__newline, + [18137] = 2, ACTIONS(2021), 1, - sym__whitespace1, - [17844] = 1, + sym_language, ACTIONS(2023), 1, sym__newline, - [17848] = 1, + [18144] = 2, ACTIONS(2025), 1, - sym__newline, - [17852] = 1, + anon_sym_PIPE, + STATE(791), 1, + aux_sym_table_separator_repeat1, + [18151] = 2, ACTIONS(2027), 1, - sym__newline, - [17856] = 1, - ACTIONS(2029), 1, - sym__newline, - [17860] = 1, + anon_sym_PIPE, + STATE(794), 1, + aux_sym_table_row_repeat1, + [18158] = 2, + ACTIONS(2025), 1, + anon_sym_PIPE, + STATE(885), 1, + aux_sym_table_separator_repeat1, + [18165] = 2, + ACTIONS(2027), 1, + anon_sym_PIPE, + STATE(886), 1, + aux_sym_table_row_repeat1, + [18172] = 1, + ACTIONS(1735), 2, + sym__block_close, + sym_list_marker_upper_roman_parens, + [18177] = 1, + ACTIONS(2029), 2, + sym__footnote_mark_begin, + sym__in_fallback, + [18182] = 2, ACTIONS(2031), 1, - sym__newline, - [17864] = 1, + anon_sym_PIPE, + STATE(791), 1, + aux_sym_table_separator_repeat1, + [18189] = 2, ACTIONS(2033), 1, - sym__newline, - [17868] = 1, + anon_sym_PIPE, + STATE(794), 1, + aux_sym_table_row_repeat1, + [18196] = 1, + ACTIONS(710), 2, + sym__block_close, + sym__block_quote_continuation, + [18201] = 1, + ACTIONS(1788), 2, + sym__block_close, + sym_list_marker_upper_roman_parens, + [18206] = 2, ACTIONS(2035), 1, - sym__newline, - [17872] = 1, - ACTIONS(902), 1, - sym_list_marker_star, - [17876] = 1, - ACTIONS(904), 1, - sym_list_marker_plus, - [17880] = 1, - ACTIONS(900), 1, - sym_list_marker_dash, - [17884] = 1, + anon_sym_PIPE, + STATE(894), 1, + aux_sym_table_separator_repeat1, + [18213] = 2, ACTIONS(2037), 1, - sym__newline, - [17888] = 1, + anon_sym_PIPE, + STATE(895), 1, + aux_sym_table_row_repeat1, + [18220] = 1, + ACTIONS(754), 2, + sym__block_close, + sym__block_quote_continuation, + [18225] = 1, + ACTIONS(766), 2, + sym__block_close, + sym__block_quote_continuation, + [18230] = 1, + ACTIONS(782), 2, + sym__block_close, + sym__block_quote_continuation, + [18235] = 2, ACTIONS(2039), 1, - sym__newline, - [17892] = 1, + anon_sym_PIPE, + STATE(791), 1, + aux_sym_table_separator_repeat1, + [18242] = 2, ACTIONS(2041), 1, - sym__newline, - [17896] = 1, + anon_sym_PIPE, + STATE(794), 1, + aux_sym_table_row_repeat1, + [18249] = 2, + ACTIONS(2039), 1, + anon_sym_PIPE, + STATE(900), 1, + aux_sym_table_separator_repeat1, + [18256] = 2, + ACTIONS(2041), 1, + anon_sym_PIPE, + STATE(901), 1, + aux_sym_table_row_repeat1, + [18263] = 1, + ACTIONS(786), 2, + sym__block_close, + sym__block_quote_continuation, + [18268] = 1, + ACTIONS(792), 2, + sym__block_close, + sym__block_quote_continuation, + [18273] = 2, ACTIONS(2043), 1, - sym__newline, - [17900] = 1, + anon_sym_PIPE, + STATE(791), 1, + aux_sym_table_separator_repeat1, + [18280] = 2, ACTIONS(2045), 1, anon_sym_PIPE, - [17904] = 1, + STATE(794), 1, + aux_sym_table_row_repeat1, + [18287] = 1, + ACTIONS(796), 2, + sym__block_close, + sym__block_quote_continuation, + [18292] = 1, + ACTIONS(800), 2, + sym__block_close, + sym__block_quote_continuation, + [18297] = 1, + ACTIONS(804), 2, + sym__block_close, + sym__block_quote_continuation, + [18302] = 2, ACTIONS(2047), 1, - sym_table_cell_alignment, - [17908] = 1, + anon_sym_PIPE, + STATE(910), 1, + aux_sym_table_separator_repeat1, + [18309] = 2, ACTIONS(2049), 1, - sym__newline, - [17912] = 1, + anon_sym_PIPE, + STATE(911), 1, + aux_sym_table_row_repeat1, + [18316] = 1, + ACTIONS(808), 2, + sym__block_close, + sym__block_quote_continuation, + [18321] = 1, + ACTIONS(812), 2, + sym__block_close, + sym__block_quote_continuation, + [18326] = 1, + ACTIONS(816), 2, + sym__block_close, + sym__block_quote_continuation, + [18331] = 2, ACTIONS(2051), 1, - anon_sym_EQ, - [17916] = 1, + anon_sym_PIPE, + STATE(791), 1, + aux_sym_table_separator_repeat1, + [18338] = 2, ACTIONS(2053), 1, - anon_sym_EQ, - [17920] = 1, + anon_sym_PIPE, + STATE(794), 1, + aux_sym_table_row_repeat1, + [18345] = 2, + ACTIONS(2051), 1, + anon_sym_PIPE, + STATE(916), 1, + aux_sym_table_separator_repeat1, + [18352] = 2, + ACTIONS(2053), 1, + anon_sym_PIPE, + STATE(917), 1, + aux_sym_table_row_repeat1, + [18359] = 1, + ACTIONS(820), 2, + sym__block_close, + sym__block_quote_continuation, + [18364] = 1, + ACTIONS(824), 2, + sym__block_close, + sym__block_quote_continuation, + [18369] = 2, ACTIONS(2055), 1, - sym__newline, - [17924] = 1, + anon_sym_PIPE, + STATE(791), 1, + aux_sym_table_separator_repeat1, + [18376] = 2, ACTIONS(2057), 1, - sym__footnote_end, - [17928] = 1, - ACTIONS(2059), 1, - sym__block_close, - [17932] = 1, - ACTIONS(2061), 1, anon_sym_PIPE, - [17936] = 1, - ACTIONS(2063), 1, - anon_sym_DQUOTE, - [17940] = 1, - ACTIONS(1823), 1, + STATE(794), 1, + aux_sym_table_row_repeat1, + [18383] = 1, + ACTIONS(828), 2, + sym__block_close, + sym__block_quote_continuation, + [18388] = 1, + ACTIONS(832), 2, + sym__block_close, + sym__block_quote_continuation, + [18393] = 1, + ACTIONS(836), 2, + sym__block_close, + sym__block_quote_continuation, + [18398] = 1, + ACTIONS(840), 2, + sym__block_close, + sym__block_quote_continuation, + [18403] = 1, + ACTIONS(844), 2, + sym__block_close, + sym__block_quote_continuation, + [18408] = 1, + ACTIONS(848), 2, + sym__block_close, + sym__block_quote_continuation, + [18413] = 1, + ACTIONS(852), 2, + sym__block_close, + sym__block_quote_continuation, + [18418] = 1, + ACTIONS(530), 2, + sym__block_close, + sym__block_quote_continuation, + [18423] = 2, + ACTIONS(1973), 1, + sym__id, + STATE(1077), 1, + sym_reference_label, + [18430] = 2, + ACTIONS(1973), 1, + sym__id, + STATE(1084), 1, + sym_reference_label, + [18437] = 2, + ACTIONS(1846), 1, sym_table_cell_alignment, - [17944] = 1, + ACTIONS(2059), 1, + sym__newline, + [18444] = 2, + ACTIONS(1973), 1, + sym__id, + STATE(1091), 1, + sym_reference_label, + [18451] = 1, + ACTIONS(2061), 2, + sym__eof_or_newline, + sym__close_paragraph, + [18456] = 2, + ACTIONS(1973), 1, + sym__id, + STATE(1098), 1, + sym_reference_label, + [18463] = 1, + ACTIONS(2063), 2, + sym__eof_or_newline, + sym__close_paragraph, + [18468] = 2, ACTIONS(2065), 1, - anon_sym_RBRACK, - [17948] = 1, + sym__id, + STATE(974), 1, + sym_class_name, + [18475] = 1, + ACTIONS(1735), 2, + sym__block_close, + sym_list_marker_upper_roman_period, + [18480] = 1, ACTIONS(2067), 1, - anon_sym_RBRACK, - [17952] = 1, + sym__newline, + [18484] = 1, ACTIONS(2069), 1, - sym__block_close, - [17956] = 1, + sym__whitespace, + [18488] = 1, ACTIONS(2071), 1, - anon_sym_PIPE, - [17960] = 1, + sym__newline, + [18492] = 1, + ACTIONS(1368), 1, + sym__newline, + [18496] = 1, ACTIONS(2073), 1, sym__newline, - [17964] = 1, + [18500] = 1, ACTIONS(2075), 1, sym__newline, - [17968] = 1, + [18504] = 1, ACTIONS(2077), 1, - sym__newline, - [17972] = 1, + anon_sym_PIPE, + [18508] = 1, ACTIONS(2079), 1, sym__newline, - [17976] = 1, + [18512] = 1, ACTIONS(2081), 1, - sym__newline, - [17980] = 1, + sym__block_close, + [18516] = 1, ACTIONS(2083), 1, - sym_link_destination, - [17984] = 1, + sym__block_close, + [18520] = 1, ACTIONS(2085), 1, - sym__newline, - [17988] = 1, + sym__footnote_end, + [18524] = 1, ACTIONS(2087), 1, sym__newline, - [17992] = 1, + [18528] = 1, ACTIONS(2089), 1, sym__newline, - [17996] = 1, + [18532] = 1, ACTIONS(2091), 1, - sym__footnote_end, - [18000] = 1, + sym__newline, + [18536] = 1, ACTIONS(2093), 1, - sym__block_close, - [18004] = 1, + sym__list_item_continuation, + [18540] = 1, ACTIONS(2095), 1, - sym__block_close, - [18008] = 1, + sym__newline, + [18544] = 1, ACTIONS(2097), 1, sym__newline, - [18012] = 1, + [18548] = 1, ACTIONS(2099), 1, - sym_table_cell_alignment, - [18016] = 1, + sym__block_close, + [18552] = 1, ACTIONS(2101), 1, sym__newline, - [18020] = 1, + [18556] = 1, ACTIONS(2103), 1, sym__newline, - [18024] = 1, + [18560] = 1, ACTIONS(2105), 1, sym__newline, - [18028] = 1, + [18564] = 1, ACTIONS(2107), 1, - sym__newline, - [18032] = 1, - ACTIONS(1358), 1, - sym__newline, - [18036] = 1, - ACTIONS(1188), 1, sym__block_close, - [18040] = 1, + [18568] = 1, ACTIONS(2109), 1, sym__newline, - [18044] = 1, + [18572] = 1, ACTIONS(2111), 1, - sym_language, - [18048] = 1, + sym__footnote_end, + [18576] = 1, ACTIONS(2113), 1, sym__newline, - [18052] = 1, + [18580] = 1, ACTIONS(2115), 1, sym__newline, - [18056] = 1, + [18584] = 1, ACTIONS(2117), 1, - sym__block_close, - [18060] = 1, + anon_sym_RBRACK, + [18588] = 1, ACTIONS(2119), 1, - sym__block_close, - [18064] = 1, + anon_sym_RBRACK, + [18592] = 1, ACTIONS(2121), 1, - sym__whitespace, - [18068] = 1, + sym__newline, + [18596] = 1, ACTIONS(2123), 1, - sym__whitespace, - [18072] = 1, + sym__whitespace1, + [18600] = 1, ACTIONS(2125), 1, - sym__whitespace, - [18076] = 1, + sym__newline, + [18604] = 1, ACTIONS(2127), 1, - sym__whitespace1, - [18080] = 1, + sym__newline, + [18608] = 1, ACTIONS(2129), 1, sym__newline, - [18084] = 1, + [18612] = 1, ACTIONS(2131), 1, - sym__list_item_continuation, - [18088] = 1, + sym__newline, + [18616] = 1, ACTIONS(2133), 1, sym__newline, - [18092] = 1, + [18620] = 1, ACTIONS(2135), 1, - sym__block_close, - [18096] = 1, + sym__newline, + [18624] = 1, ACTIONS(2137), 1, - anon_sym_RBRACK, - [18100] = 1, + sym__newline, + [18628] = 1, ACTIONS(2139), 1, - sym_table_cell_alignment, - [18104] = 1, + sym__newline, + [18632] = 1, ACTIONS(2141), 1, - sym__block_close, - [18108] = 1, + sym__newline, + [18636] = 1, ACTIONS(2143), 1, - sym_frontmatter_marker, - [18112] = 1, - ACTIONS(2145), 1, sym__newline, - [18116] = 1, + [18640] = 1, + ACTIONS(2145), 1, + sym__whitespace1, + [18644] = 1, ACTIONS(2147), 1, sym__newline, - [18120] = 1, + [18648] = 1, ACTIONS(2149), 1, - sym__newline, - [18124] = 1, + sym__whitespace1, + [18652] = 1, ACTIONS(2151), 1, - anon_sym_RBRACK, - [18128] = 1, + sym__newline, + [18656] = 1, ACTIONS(2153), 1, - anon_sym_COLON, - [18132] = 1, - ACTIONS(2155), 1, sym__newline, - [18136] = 1, + [18660] = 1, + ACTIONS(2155), 1, + anon_sym_RBRACK_COLON, + [18664] = 1, ACTIONS(2157), 1, - sym__newline, - [18140] = 1, + anon_sym_RBRACK_COLON, + [18668] = 1, ACTIONS(2159), 1, sym__newline, - [18144] = 1, + [18672] = 1, ACTIONS(2161), 1, - sym__newline, - [18148] = 1, + sym__whitespace1, + [18676] = 1, + ACTIONS(920), 1, + sym_list_marker_star, + [18680] = 1, ACTIONS(2163), 1, - sym__newline, - [18152] = 1, + anon_sym_PIPE, + [18684] = 1, ACTIONS(2165), 1, - sym__whitespace, - [18156] = 1, + sym__newline, + [18688] = 1, + ACTIONS(918), 1, + sym_list_marker_dash, + [18692] = 1, ACTIONS(2167), 1, sym__newline, - [18160] = 1, + [18696] = 1, ACTIONS(2169), 1, - sym__newline, - [18164] = 1, + sym__block_close, + [18700] = 1, ACTIONS(2171), 1, - sym__eof_or_newline, - [18168] = 1, + anon_sym_PIPE, + [18704] = 1, ACTIONS(2173), 1, sym__newline, - [18172] = 1, + [18708] = 1, ACTIONS(2175), 1, - sym__footnote_end, - [18176] = 1, + sym__newline, + [18712] = 1, ACTIONS(2177), 1, - sym__block_close, - [18180] = 1, + sym_table_cell_alignment, + [18716] = 1, ACTIONS(2179), 1, - sym__newline, - [18184] = 1, + sym__block_close, + [18720] = 1, ACTIONS(2181), 1, - sym__newline, - [18188] = 1, + sym_language, + [18724] = 1, ACTIONS(2183), 1, - sym__block_close, - [18192] = 1, + sym__newline, + [18728] = 1, ACTIONS(2185), 1, sym__newline, - [18196] = 1, + [18732] = 1, ACTIONS(2187), 1, - sym__newline, - [18200] = 1, + aux_sym_value_token1, + [18736] = 1, ACTIONS(2189), 1, - sym__newline, - [18204] = 1, + anon_sym_EQ, + [18740] = 1, ACTIONS(2191), 1, - sym__newline, - [18208] = 1, + anon_sym_EQ, + [18744] = 1, ACTIONS(2193), 1, - sym__newline, - [18212] = 1, + sym__eof_or_newline, + [18748] = 1, ACTIONS(2195), 1, - sym_table_cell_alignment, - [18216] = 1, - ACTIONS(1172), 1, sym__block_close, - [18220] = 1, + [18752] = 1, ACTIONS(2197), 1, - anon_sym_RBRACK_COLON, - [18224] = 1, + sym__newline, + [18756] = 1, ACTIONS(2199), 1, - anon_sym_RBRACK_COLON, - [18228] = 1, + sym__block_close, + [18760] = 1, ACTIONS(2201), 1, sym__newline, - [18232] = 1, + [18764] = 1, ACTIONS(2203), 1, - sym__newline, - [18236] = 1, + sym__whitespace, + [18768] = 1, ACTIONS(2205), 1, - aux_sym_value_token1, - [18240] = 1, + sym_table_cell_alignment, + [18772] = 1, ACTIONS(2207), 1, - sym__whitespace, - [18244] = 1, - ACTIONS(2209), 1, sym__newline, - [18248] = 1, + [18776] = 1, + ACTIONS(2209), 1, + sym__whitespace, + [18780] = 1, ACTIONS(2211), 1, - sym__block_close, - [18252] = 1, + sym__newline, + [18784] = 1, ACTIONS(2213), 1, sym__newline, - [18256] = 1, + [18788] = 1, ACTIONS(2215), 1, - sym__block_close, - [18260] = 1, + sym__newline, + [18792] = 1, ACTIONS(2217), 1, sym__newline, - [18264] = 1, + [18796] = 1, ACTIONS(2219), 1, - sym__newline, - [18268] = 1, + sym_frontmatter_marker, + [18800] = 1, ACTIONS(2221), 1, - sym__newline, - [18272] = 1, - ACTIONS(2223), 1, sym_table_cell_alignment, - [18276] = 1, + [18804] = 1, + ACTIONS(2223), 1, + sym__block_close, + [18808] = 1, ACTIONS(2225), 1, sym__newline, - [18280] = 1, + [18812] = 1, ACTIONS(2227), 1, sym__newline, - [18284] = 1, + [18816] = 1, ACTIONS(2229), 1, sym__newline, - [18288] = 1, + [18820] = 1, ACTIONS(2231), 1, - sym__newline, - [18292] = 1, + sym__block_close, + [18824] = 1, ACTIONS(2233), 1, sym__newline, - [18296] = 1, + [18828] = 1, ACTIONS(2235), 1, - sym__newline, - [18300] = 1, + sym__block_close, + [18832] = 1, ACTIONS(2237), 1, - sym_frontmatter_marker, - [18304] = 1, + sym__block_close, + [18836] = 1, ACTIONS(2239), 1, - sym__newline, - [18308] = 1, + sym__footnote_end, + [18840] = 1, ACTIONS(2241), 1, sym__newline, - [18312] = 1, + [18844] = 1, ACTIONS(2243), 1, - sym__footnote_end, - [18316] = 1, + sym__block_close, + [18848] = 1, ACTIONS(2245), 1, + sym__newline, + [18852] = 1, + ACTIONS(2247), 1, + sym__whitespace, + [18856] = 1, + ACTIONS(2249), 1, + sym__block_close, + [18860] = 1, + ACTIONS(2251), 1, + anon_sym_PIPE, + [18864] = 1, + ACTIONS(2253), 1, + sym__block_close, + [18868] = 1, + ACTIONS(2255), 1, + sym__newline, + [18872] = 1, + ACTIONS(2257), 1, + sym__block_close, + [18876] = 1, + ACTIONS(2259), 1, + sym__footnote_end, + [18880] = 1, + ACTIONS(2261), 1, + sym__newline, + [18884] = 1, + ACTIONS(2263), 1, + sym__newline, + [18888] = 1, + ACTIONS(2265), 1, + sym_table_cell_alignment, + [18892] = 1, + ACTIONS(2267), 1, + sym__newline, + [18896] = 1, + ACTIONS(2269), 1, + sym__block_close, + [18900] = 1, + ACTIONS(2271), 1, + sym__newline, + [18904] = 1, + ACTIONS(2273), 1, + sym__newline, + [18908] = 1, + ACTIONS(2275), 1, + sym__newline, + [18912] = 1, + ACTIONS(2277), 1, + sym__whitespace, + [18916] = 1, + ACTIONS(2279), 1, + sym__newline, + [18920] = 1, + ACTIONS(2281), 1, + sym__newline, + [18924] = 1, + ACTIONS(2283), 1, + sym__newline, + [18928] = 1, + ACTIONS(2285), 1, + sym__newline, + [18932] = 1, + ACTIONS(2287), 1, + sym__block_close, + [18936] = 1, + ACTIONS(2289), 1, + sym__newline, + [18940] = 1, + ACTIONS(2291), 1, + sym__whitespace, + [18944] = 1, + ACTIONS(2293), 1, + sym__block_close, + [18948] = 1, + ACTIONS(2295), 1, + sym_table_cell_alignment, + [18952] = 1, + ACTIONS(2297), 1, + sym__newline, + [18956] = 1, + ACTIONS(2299), 1, + sym__newline, + [18960] = 1, + ACTIONS(2301), 1, + anon_sym_RBRACK, + [18964] = 1, + ACTIONS(2303), 1, + sym__newline, + [18968] = 1, + ACTIONS(2305), 1, + sym__newline, + [18972] = 1, + ACTIONS(2307), 1, + sym_table_cell_alignment, + [18976] = 1, + ACTIONS(2309), 1, + sym_frontmatter_marker, + [18980] = 1, + ACTIONS(2311), 1, + sym__newline, + [18984] = 1, + ACTIONS(2313), 1, + sym__newline, + [18988] = 1, + ACTIONS(2315), 1, + sym__newline, + [18992] = 1, + ACTIONS(2317), 1, + anon_sym_PIPE, + [18996] = 1, + ACTIONS(2319), 1, + sym__newline, + [19000] = 1, + ACTIONS(2321), 1, + sym__newline, + [19004] = 1, + ACTIONS(2323), 1, + sym__newline, + [19008] = 1, + ACTIONS(2325), 1, sym__block_close, - [18320] = 1, - ACTIONS(2247), 1, + [19012] = 1, + ACTIONS(2327), 1, + anon_sym_RBRACK, + [19016] = 1, + ACTIONS(2329), 1, sym__block_close, - [18324] = 1, - ACTIONS(2249), 1, + [19020] = 1, + ACTIONS(922), 1, + sym_list_marker_plus, + [19024] = 1, + ACTIONS(2331), 1, sym__whitespace, - [18328] = 1, - ACTIONS(2251), 1, + [19028] = 1, + ACTIONS(2333), 1, sym__whitespace, - [18332] = 1, - ACTIONS(2253), 1, - sym__newline, - [18336] = 1, - ACTIONS(2255), 1, + [19032] = 1, + ACTIONS(2335), 1, sym__newline, - [18340] = 1, - ACTIONS(2257), 1, + [19036] = 1, + ACTIONS(2337), 1, + sym_link_destination, + [19040] = 1, + ACTIONS(2339), 1, anon_sym_PIPE, - [18344] = 1, - ACTIONS(2259), 1, + [19044] = 1, + ACTIONS(2341), 1, sym_table_cell_alignment, - [18348] = 1, - ACTIONS(2261), 1, + [19048] = 1, + ACTIONS(2343), 1, anon_sym_RBRACK_COLON, - [18352] = 1, - ACTIONS(2263), 1, + [19052] = 1, + ACTIONS(2345), 1, sym_link_destination, - [18356] = 1, - ACTIONS(2265), 1, + [19056] = 1, + ACTIONS(2347), 1, sym__whitespace, - [18360] = 1, - ACTIONS(1184), 1, + [19060] = 1, + ACTIONS(2349), 1, sym__block_close, - [18364] = 1, - ACTIONS(2267), 1, - sym__newline, - [18368] = 1, - ACTIONS(2269), 1, + [19064] = 1, + ACTIONS(1846), 1, + sym_table_cell_alignment, + [19068] = 1, + ACTIONS(2351), 1, anon_sym_PIPE, - [18372] = 1, - ACTIONS(2271), 1, + [19072] = 1, + ACTIONS(2353), 1, sym_table_cell_alignment, - [18376] = 1, - ACTIONS(2273), 1, + [19076] = 1, + ACTIONS(2355), 1, anon_sym_RBRACK_COLON, - [18380] = 1, - ACTIONS(2275), 1, + [19080] = 1, + ACTIONS(2357), 1, sym_link_destination, - [18384] = 1, - ACTIONS(2277), 1, + [19084] = 1, + ACTIONS(2359), 1, sym__whitespace, - [18388] = 1, - ACTIONS(1164), 1, + [19088] = 1, + ACTIONS(2361), 1, + ts_builtin_sym_end, + [19092] = 1, + ACTIONS(2363), 1, sym__block_close, - [18392] = 1, - ACTIONS(2279), 1, - sym__newline, - [18396] = 1, - ACTIONS(2281), 1, + [19096] = 1, + ACTIONS(2365), 1, anon_sym_PIPE, - [18400] = 1, - ACTIONS(2283), 1, + [19100] = 1, + ACTIONS(2367), 1, sym_table_cell_alignment, - [18404] = 1, - ACTIONS(2285), 1, + [19104] = 1, + ACTIONS(2369), 1, anon_sym_RBRACK_COLON, - [18408] = 1, - ACTIONS(2287), 1, + [19108] = 1, + ACTIONS(2371), 1, sym_link_destination, - [18412] = 1, - ACTIONS(2289), 1, + [19112] = 1, + ACTIONS(2373), 1, sym__whitespace, - [18416] = 1, - ACTIONS(2291), 1, + [19116] = 1, + ACTIONS(2375), 1, sym__newline, - [18420] = 1, - ACTIONS(2293), 1, - sym__whitespace1, - [18424] = 1, - ACTIONS(2295), 1, + [19120] = 1, + ACTIONS(2377), 1, + anon_sym_COLON, + [19124] = 1, + ACTIONS(2379), 1, anon_sym_PIPE, - [18428] = 1, - ACTIONS(2297), 1, + [19128] = 1, + ACTIONS(2381), 1, sym_table_cell_alignment, - [18432] = 1, - ACTIONS(2299), 1, + [19132] = 1, + ACTIONS(2383), 1, anon_sym_RBRACK_COLON, - [18436] = 1, - ACTIONS(2301), 1, + [19136] = 1, + ACTIONS(2385), 1, sym_link_destination, - [18440] = 1, - ACTIONS(2303), 1, - sym__whitespace1, - [18444] = 1, - ACTIONS(2305), 1, + [19140] = 1, + ACTIONS(2387), 1, + sym__footnote_mark_begin, + [19144] = 1, + ACTIONS(2389), 1, anon_sym_PIPE, - [18448] = 1, - ACTIONS(2307), 1, - sym__newline, - [18452] = 1, - ACTIONS(2309), 1, + [19148] = 1, + ACTIONS(2391), 1, + anon_sym_DQUOTE, + [19152] = 1, + ACTIONS(2393), 1, sym__whitespace1, - [18456] = 1, - ACTIONS(2311), 1, - sym__newline, - [18460] = 1, - ACTIONS(2313), 1, + [19156] = 1, + ACTIONS(2395), 1, + sym__eof_or_newline, + [19160] = 1, + ACTIONS(2397), 1, anon_sym_PIPE, - [18464] = 1, - ACTIONS(2315), 1, - sym__block_close, - [18468] = 1, - ACTIONS(2317), 1, + [19164] = 1, + ACTIONS(2399), 1, + sym__footnote_end, + [19168] = 1, + ACTIONS(2401), 1, sym__whitespace1, - [18472] = 1, - ACTIONS(2319), 1, - sym__footnote_mark_begin, - [18476] = 1, - ACTIONS(2321), 1, + [19172] = 1, + ACTIONS(2403), 1, + sym__newline, + [19176] = 1, + ACTIONS(2405), 1, anon_sym_PIPE, - [18480] = 1, - ACTIONS(2323), 1, + [19180] = 1, + ACTIONS(2407), 1, sym__newline, - [18484] = 1, - ACTIONS(2325), 1, + [19184] = 1, + ACTIONS(2409), 1, sym__whitespace1, - [18488] = 1, - ACTIONS(2327), 1, - ts_builtin_sym_end, - [18492] = 1, - ACTIONS(2329), 1, + [19188] = 1, + ACTIONS(2411), 1, + sym__newline, + [19192] = 1, + ACTIONS(2413), 1, anon_sym_PIPE, - [18496] = 1, - ACTIONS(2331), 1, - sym__eof_or_newline, - [18500] = 1, - ACTIONS(2333), 1, + [19196] = 1, + ACTIONS(2415), 1, + sym__newline, + [19200] = 1, + ACTIONS(2417), 1, sym__whitespace1, - [18504] = 1, - ACTIONS(2335), 1, + [19204] = 1, + ACTIONS(2419), 1, sym__footnote_mark_begin, - [18508] = 1, - ACTIONS(2337), 1, + [19208] = 1, + ACTIONS(2421), 1, anon_sym_COLON, - [18512] = 1, - ACTIONS(2339), 1, + [19212] = 1, + ACTIONS(2423), 1, sym__footnote_mark_begin, - [18516] = 1, - ACTIONS(2341), 1, + [19216] = 1, + ACTIONS(2425), 1, anon_sym_COLON, - [18520] = 1, - ACTIONS(2343), 1, + [19220] = 1, + ACTIONS(2427), 1, sym__footnote_mark_begin, - [18524] = 1, - ACTIONS(2345), 1, + [19224] = 1, + ACTIONS(2429), 1, anon_sym_COLON, - [18528] = 1, - ACTIONS(2347), 1, + [19228] = 1, + ACTIONS(2431), 1, sym__footnote_mark_begin, - [18532] = 1, - ACTIONS(2349), 1, + [19232] = 1, + ACTIONS(2433), 1, anon_sym_COLON, - [18536] = 1, - ACTIONS(2351), 1, + [19236] = 1, + ACTIONS(2435), 1, anon_sym_RBRACK, - [18540] = 1, - ACTIONS(2353), 1, + [19240] = 1, + ACTIONS(2437), 1, anon_sym_RBRACK, - [18544] = 1, - ACTIONS(2355), 1, + [19244] = 1, + ACTIONS(2439), 1, anon_sym_RBRACK, - [18548] = 1, - ACTIONS(2357), 1, + [19248] = 1, + ACTIONS(2441), 1, anon_sym_RBRACK, - [18552] = 1, - ACTIONS(2359), 1, + [19252] = 1, + ACTIONS(2443), 1, + sym__newline, + [19256] = 1, + ACTIONS(2445), 1, + sym__newline, + [19260] = 1, + ACTIONS(2447), 1, + sym__newline, + [19264] = 1, + ACTIONS(2449), 1, sym__block_close, - [18556] = 1, - ACTIONS(2361), 1, - anon_sym_PIPE, - [18560] = 1, - ACTIONS(2363), 1, - sym__whitespace, - [18564] = 1, - ACTIONS(2365), 1, - anon_sym_PIPE, + [19268] = 1, + ACTIONS(2451), 1, + sym__newline, }; static const uint32_t ts_small_parse_table_map[] = { @@ -28263,2129 +29103,2209 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(76)] = 723, [SMALL_STATE(77)] = 770, [SMALL_STATE(78)] = 817, - [SMALL_STATE(79)] = 862, - [SMALL_STATE(80)] = 909, - [SMALL_STATE(81)] = 956, + [SMALL_STATE(79)] = 864, + [SMALL_STATE(80)] = 911, + [SMALL_STATE(81)] = 958, [SMALL_STATE(82)] = 1003, - [SMALL_STATE(83)] = 1050, + [SMALL_STATE(83)] = 1048, [SMALL_STATE(84)] = 1095, - [SMALL_STATE(85)] = 1140, - [SMALL_STATE(86)] = 1187, - [SMALL_STATE(87)] = 1232, - [SMALL_STATE(88)] = 1277, - [SMALL_STATE(89)] = 1322, - [SMALL_STATE(90)] = 1369, + [SMALL_STATE(85)] = 1142, + [SMALL_STATE(86)] = 1189, + [SMALL_STATE(87)] = 1234, + [SMALL_STATE(88)] = 1279, + [SMALL_STATE(89)] = 1326, + [SMALL_STATE(90)] = 1371, [SMALL_STATE(91)] = 1416, [SMALL_STATE(92)] = 1461, [SMALL_STATE(93)] = 1508, - [SMALL_STATE(94)] = 1555, + [SMALL_STATE(94)] = 1553, [SMALL_STATE(95)] = 1600, [SMALL_STATE(96)] = 1647, - [SMALL_STATE(97)] = 1694, - [SMALL_STATE(98)] = 1739, - [SMALL_STATE(99)] = 1786, - [SMALL_STATE(100)] = 1833, - [SMALL_STATE(101)] = 1880, - [SMALL_STATE(102)] = 1927, + [SMALL_STATE(97)] = 1692, + [SMALL_STATE(98)] = 1737, + [SMALL_STATE(99)] = 1784, + [SMALL_STATE(100)] = 1831, + [SMALL_STATE(101)] = 1878, + [SMALL_STATE(102)] = 1925, [SMALL_STATE(103)] = 1972, [SMALL_STATE(104)] = 2017, [SMALL_STATE(105)] = 2062, [SMALL_STATE(106)] = 2109, [SMALL_STATE(107)] = 2156, - [SMALL_STATE(108)] = 2201, + [SMALL_STATE(108)] = 2203, [SMALL_STATE(109)] = 2248, - [SMALL_STATE(110)] = 2295, + [SMALL_STATE(110)] = 2293, [SMALL_STATE(111)] = 2340, [SMALL_STATE(112)] = 2385, [SMALL_STATE(113)] = 2432, [SMALL_STATE(114)] = 2479, - [SMALL_STATE(115)] = 2524, - [SMALL_STATE(116)] = 2571, + [SMALL_STATE(115)] = 2526, + [SMALL_STATE(116)] = 2573, [SMALL_STATE(117)] = 2618, [SMALL_STATE(118)] = 2663, - [SMALL_STATE(119)] = 2710, - [SMALL_STATE(120)] = 2757, - [SMALL_STATE(121)] = 2804, + [SMALL_STATE(119)] = 2708, + [SMALL_STATE(120)] = 2755, + [SMALL_STATE(121)] = 2802, [SMALL_STATE(122)] = 2849, - [SMALL_STATE(123)] = 2894, - [SMALL_STATE(124)] = 2939, - [SMALL_STATE(125)] = 2986, - [SMALL_STATE(126)] = 3033, - [SMALL_STATE(127)] = 3080, + [SMALL_STATE(123)] = 2896, + [SMALL_STATE(124)] = 2943, + [SMALL_STATE(125)] = 2990, + [SMALL_STATE(126)] = 3035, + [SMALL_STATE(127)] = 3082, [SMALL_STATE(128)] = 3127, - [SMALL_STATE(129)] = 3172, - [SMALL_STATE(130)] = 3216, - [SMALL_STATE(131)] = 3260, - [SMALL_STATE(132)] = 3304, - [SMALL_STATE(133)] = 3348, - [SMALL_STATE(134)] = 3392, - [SMALL_STATE(135)] = 3436, - [SMALL_STATE(136)] = 3480, - [SMALL_STATE(137)] = 3524, - [SMALL_STATE(138)] = 3568, - [SMALL_STATE(139)] = 3612, - [SMALL_STATE(140)] = 3656, - [SMALL_STATE(141)] = 3700, - [SMALL_STATE(142)] = 3744, - [SMALL_STATE(143)] = 3788, - [SMALL_STATE(144)] = 3832, - [SMALL_STATE(145)] = 3876, - [SMALL_STATE(146)] = 3920, - [SMALL_STATE(147)] = 3964, - [SMALL_STATE(148)] = 4008, - [SMALL_STATE(149)] = 4052, - [SMALL_STATE(150)] = 4096, - [SMALL_STATE(151)] = 4140, - [SMALL_STATE(152)] = 4184, - [SMALL_STATE(153)] = 4228, - [SMALL_STATE(154)] = 4272, - [SMALL_STATE(155)] = 4316, - [SMALL_STATE(156)] = 4360, - [SMALL_STATE(157)] = 4404, - [SMALL_STATE(158)] = 4448, - [SMALL_STATE(159)] = 4492, - [SMALL_STATE(160)] = 4536, - [SMALL_STATE(161)] = 4580, - [SMALL_STATE(162)] = 4624, - [SMALL_STATE(163)] = 4668, - [SMALL_STATE(164)] = 4712, - [SMALL_STATE(165)] = 4756, - [SMALL_STATE(166)] = 4800, - [SMALL_STATE(167)] = 4844, - [SMALL_STATE(168)] = 4888, - [SMALL_STATE(169)] = 4932, - [SMALL_STATE(170)] = 4976, - [SMALL_STATE(171)] = 5020, - [SMALL_STATE(172)] = 5064, - [SMALL_STATE(173)] = 5108, - [SMALL_STATE(174)] = 5152, - [SMALL_STATE(175)] = 5196, - [SMALL_STATE(176)] = 5240, - [SMALL_STATE(177)] = 5284, - [SMALL_STATE(178)] = 5328, - [SMALL_STATE(179)] = 5372, - [SMALL_STATE(180)] = 5416, - [SMALL_STATE(181)] = 5460, - [SMALL_STATE(182)] = 5504, - [SMALL_STATE(183)] = 5548, - [SMALL_STATE(184)] = 5592, - [SMALL_STATE(185)] = 5636, - [SMALL_STATE(186)] = 5680, - [SMALL_STATE(187)] = 5724, - [SMALL_STATE(188)] = 5768, - [SMALL_STATE(189)] = 5812, - [SMALL_STATE(190)] = 5856, - [SMALL_STATE(191)] = 5900, - [SMALL_STATE(192)] = 5944, - [SMALL_STATE(193)] = 5988, - [SMALL_STATE(194)] = 6032, - [SMALL_STATE(195)] = 6076, - [SMALL_STATE(196)] = 6120, - [SMALL_STATE(197)] = 6164, - [SMALL_STATE(198)] = 6208, - [SMALL_STATE(199)] = 6252, - [SMALL_STATE(200)] = 6296, - [SMALL_STATE(201)] = 6340, - [SMALL_STATE(202)] = 6384, - [SMALL_STATE(203)] = 6428, - [SMALL_STATE(204)] = 6472, - [SMALL_STATE(205)] = 6516, - [SMALL_STATE(206)] = 6560, - [SMALL_STATE(207)] = 6604, - [SMALL_STATE(208)] = 6648, - [SMALL_STATE(209)] = 6692, - [SMALL_STATE(210)] = 6736, - [SMALL_STATE(211)] = 6780, - [SMALL_STATE(212)] = 6824, - [SMALL_STATE(213)] = 6868, - [SMALL_STATE(214)] = 6912, - [SMALL_STATE(215)] = 6956, - [SMALL_STATE(216)] = 7000, - [SMALL_STATE(217)] = 7044, - [SMALL_STATE(218)] = 7088, - [SMALL_STATE(219)] = 7132, - [SMALL_STATE(220)] = 7176, - [SMALL_STATE(221)] = 7220, - [SMALL_STATE(222)] = 7264, - [SMALL_STATE(223)] = 7308, - [SMALL_STATE(224)] = 7352, - [SMALL_STATE(225)] = 7396, - [SMALL_STATE(226)] = 7440, - [SMALL_STATE(227)] = 7484, - [SMALL_STATE(228)] = 7528, - [SMALL_STATE(229)] = 7572, - [SMALL_STATE(230)] = 7616, - [SMALL_STATE(231)] = 7660, - [SMALL_STATE(232)] = 7704, - [SMALL_STATE(233)] = 7748, - [SMALL_STATE(234)] = 7792, - [SMALL_STATE(235)] = 7836, - [SMALL_STATE(236)] = 7880, - [SMALL_STATE(237)] = 7924, - [SMALL_STATE(238)] = 7968, - [SMALL_STATE(239)] = 8012, - [SMALL_STATE(240)] = 8056, - [SMALL_STATE(241)] = 8100, - [SMALL_STATE(242)] = 8144, - [SMALL_STATE(243)] = 8188, - [SMALL_STATE(244)] = 8232, - [SMALL_STATE(245)] = 8276, - [SMALL_STATE(246)] = 8320, - [SMALL_STATE(247)] = 8364, - [SMALL_STATE(248)] = 8408, - [SMALL_STATE(249)] = 8452, - [SMALL_STATE(250)] = 8496, - [SMALL_STATE(251)] = 8540, - [SMALL_STATE(252)] = 8584, - [SMALL_STATE(253)] = 8628, - [SMALL_STATE(254)] = 8672, - [SMALL_STATE(255)] = 8716, - [SMALL_STATE(256)] = 8760, - [SMALL_STATE(257)] = 8804, - [SMALL_STATE(258)] = 8848, - [SMALL_STATE(259)] = 8892, - [SMALL_STATE(260)] = 8936, - [SMALL_STATE(261)] = 8980, - [SMALL_STATE(262)] = 9024, - [SMALL_STATE(263)] = 9068, - [SMALL_STATE(264)] = 9112, - [SMALL_STATE(265)] = 9156, - [SMALL_STATE(266)] = 9200, - [SMALL_STATE(267)] = 9247, - [SMALL_STATE(268)] = 9290, - [SMALL_STATE(269)] = 9332, - [SMALL_STATE(270)] = 9376, - [SMALL_STATE(271)] = 9420, - [SMALL_STATE(272)] = 9464, - [SMALL_STATE(273)] = 9508, - [SMALL_STATE(274)] = 9552, - [SMALL_STATE(275)] = 9594, - [SMALL_STATE(276)] = 9636, - [SMALL_STATE(277)] = 9678, - [SMALL_STATE(278)] = 9720, - [SMALL_STATE(279)] = 9762, - [SMALL_STATE(280)] = 9804, - [SMALL_STATE(281)] = 9846, - [SMALL_STATE(282)] = 9888, - [SMALL_STATE(283)] = 9930, - [SMALL_STATE(284)] = 9972, - [SMALL_STATE(285)] = 10011, - [SMALL_STATE(286)] = 10050, - [SMALL_STATE(287)] = 10089, - [SMALL_STATE(288)] = 10128, - [SMALL_STATE(289)] = 10167, - [SMALL_STATE(290)] = 10199, - [SMALL_STATE(291)] = 10233, - [SMALL_STATE(292)] = 10259, - [SMALL_STATE(293)] = 10293, - [SMALL_STATE(294)] = 10327, - [SMALL_STATE(295)] = 10361, - [SMALL_STATE(296)] = 10395, - [SMALL_STATE(297)] = 10427, - [SMALL_STATE(298)] = 10459, - [SMALL_STATE(299)] = 10491, - [SMALL_STATE(300)] = 10523, - [SMALL_STATE(301)] = 10555, - [SMALL_STATE(302)] = 10587, - [SMALL_STATE(303)] = 10613, - [SMALL_STATE(304)] = 10645, - [SMALL_STATE(305)] = 10679, - [SMALL_STATE(306)] = 10713, - [SMALL_STATE(307)] = 10745, - [SMALL_STATE(308)] = 10777, - [SMALL_STATE(309)] = 10802, - [SMALL_STATE(310)] = 10831, - [SMALL_STATE(311)] = 10860, - [SMALL_STATE(312)] = 10889, - [SMALL_STATE(313)] = 10918, - [SMALL_STATE(314)] = 10947, - [SMALL_STATE(315)] = 10968, - [SMALL_STATE(316)] = 10999, - [SMALL_STATE(317)] = 11024, - [SMALL_STATE(318)] = 11052, - [SMALL_STATE(319)] = 11080, - [SMALL_STATE(320)] = 11100, - [SMALL_STATE(321)] = 11128, - [SMALL_STATE(322)] = 11156, - [SMALL_STATE(323)] = 11184, - [SMALL_STATE(324)] = 11212, - [SMALL_STATE(325)] = 11240, - [SMALL_STATE(326)] = 11268, - [SMALL_STATE(327)] = 11296, - [SMALL_STATE(328)] = 11324, - [SMALL_STATE(329)] = 11352, - [SMALL_STATE(330)] = 11380, - [SMALL_STATE(331)] = 11408, - [SMALL_STATE(332)] = 11436, - [SMALL_STATE(333)] = 11464, - [SMALL_STATE(334)] = 11492, - [SMALL_STATE(335)] = 11520, - [SMALL_STATE(336)] = 11548, - [SMALL_STATE(337)] = 11576, - [SMALL_STATE(338)] = 11604, - [SMALL_STATE(339)] = 11632, - [SMALL_STATE(340)] = 11660, - [SMALL_STATE(341)] = 11688, - [SMALL_STATE(342)] = 11716, - [SMALL_STATE(343)] = 11744, - [SMALL_STATE(344)] = 11772, - [SMALL_STATE(345)] = 11800, - [SMALL_STATE(346)] = 11828, - [SMALL_STATE(347)] = 11856, - [SMALL_STATE(348)] = 11884, - [SMALL_STATE(349)] = 11912, - [SMALL_STATE(350)] = 11940, - [SMALL_STATE(351)] = 11968, - [SMALL_STATE(352)] = 11996, - [SMALL_STATE(353)] = 12021, - [SMALL_STATE(354)] = 12046, - [SMALL_STATE(355)] = 12069, - [SMALL_STATE(356)] = 12092, - [SMALL_STATE(357)] = 12114, - [SMALL_STATE(358)] = 12136, - [SMALL_STATE(359)] = 12170, - [SMALL_STATE(360)] = 12192, - [SMALL_STATE(361)] = 12214, - [SMALL_STATE(362)] = 12236, - [SMALL_STATE(363)] = 12258, - [SMALL_STATE(364)] = 12275, - [SMALL_STATE(365)] = 12306, - [SMALL_STATE(366)] = 12337, - [SMALL_STATE(367)] = 12354, - [SMALL_STATE(368)] = 12371, - [SMALL_STATE(369)] = 12402, - [SMALL_STATE(370)] = 12435, - [SMALL_STATE(371)] = 12466, - [SMALL_STATE(372)] = 12485, - [SMALL_STATE(373)] = 12504, - [SMALL_STATE(374)] = 12531, - [SMALL_STATE(375)] = 12550, - [SMALL_STATE(376)] = 12581, - [SMALL_STATE(377)] = 12602, - [SMALL_STATE(378)] = 12633, - [SMALL_STATE(379)] = 12649, - [SMALL_STATE(380)] = 12675, - [SMALL_STATE(381)] = 12689, - [SMALL_STATE(382)] = 12705, - [SMALL_STATE(383)] = 12718, - [SMALL_STATE(384)] = 12740, - [SMALL_STATE(385)] = 12761, - [SMALL_STATE(386)] = 12784, - [SMALL_STATE(387)] = 12807, - [SMALL_STATE(388)] = 12830, - [SMALL_STATE(389)] = 12853, - [SMALL_STATE(390)] = 12876, - [SMALL_STATE(391)] = 12899, - [SMALL_STATE(392)] = 12922, - [SMALL_STATE(393)] = 12945, - [SMALL_STATE(394)] = 12968, - [SMALL_STATE(395)] = 12991, - [SMALL_STATE(396)] = 13014, - [SMALL_STATE(397)] = 13037, - [SMALL_STATE(398)] = 13060, - [SMALL_STATE(399)] = 13083, - [SMALL_STATE(400)] = 13106, - [SMALL_STATE(401)] = 13129, - [SMALL_STATE(402)] = 13152, - [SMALL_STATE(403)] = 13175, - [SMALL_STATE(404)] = 13198, - [SMALL_STATE(405)] = 13221, - [SMALL_STATE(406)] = 13244, - [SMALL_STATE(407)] = 13264, - [SMALL_STATE(408)] = 13284, - [SMALL_STATE(409)] = 13304, - [SMALL_STATE(410)] = 13324, - [SMALL_STATE(411)] = 13344, - [SMALL_STATE(412)] = 13364, - [SMALL_STATE(413)] = 13384, - [SMALL_STATE(414)] = 13404, - [SMALL_STATE(415)] = 13424, - [SMALL_STATE(416)] = 13444, - [SMALL_STATE(417)] = 13464, - [SMALL_STATE(418)] = 13484, - [SMALL_STATE(419)] = 13504, - [SMALL_STATE(420)] = 13524, - [SMALL_STATE(421)] = 13544, - [SMALL_STATE(422)] = 13564, - [SMALL_STATE(423)] = 13584, - [SMALL_STATE(424)] = 13604, - [SMALL_STATE(425)] = 13624, - [SMALL_STATE(426)] = 13644, - [SMALL_STATE(427)] = 13653, - [SMALL_STATE(428)] = 13672, - [SMALL_STATE(429)] = 13691, - [SMALL_STATE(430)] = 13710, - [SMALL_STATE(431)] = 13729, - [SMALL_STATE(432)] = 13748, - [SMALL_STATE(433)] = 13767, - [SMALL_STATE(434)] = 13776, - [SMALL_STATE(435)] = 13785, - [SMALL_STATE(436)] = 13804, - [SMALL_STATE(437)] = 13823, - [SMALL_STATE(438)] = 13832, - [SMALL_STATE(439)] = 13851, - [SMALL_STATE(440)] = 13860, - [SMALL_STATE(441)] = 13879, - [SMALL_STATE(442)] = 13898, - [SMALL_STATE(443)] = 13917, - [SMALL_STATE(444)] = 13936, - [SMALL_STATE(445)] = 13955, - [SMALL_STATE(446)] = 13974, - [SMALL_STATE(447)] = 13993, - [SMALL_STATE(448)] = 14012, - [SMALL_STATE(449)] = 14031, - [SMALL_STATE(450)] = 14040, - [SMALL_STATE(451)] = 14049, - [SMALL_STATE(452)] = 14068, - [SMALL_STATE(453)] = 14087, - [SMALL_STATE(454)] = 14106, - [SMALL_STATE(455)] = 14115, - [SMALL_STATE(456)] = 14134, - [SMALL_STATE(457)] = 14153, - [SMALL_STATE(458)] = 14172, - [SMALL_STATE(459)] = 14191, - [SMALL_STATE(460)] = 14200, - [SMALL_STATE(461)] = 14219, - [SMALL_STATE(462)] = 14238, - [SMALL_STATE(463)] = 14247, - [SMALL_STATE(464)] = 14266, - [SMALL_STATE(465)] = 14285, - [SMALL_STATE(466)] = 14304, - [SMALL_STATE(467)] = 14313, - [SMALL_STATE(468)] = 14332, - [SMALL_STATE(469)] = 14351, - [SMALL_STATE(470)] = 14370, - [SMALL_STATE(471)] = 14389, - [SMALL_STATE(472)] = 14408, - [SMALL_STATE(473)] = 14427, - [SMALL_STATE(474)] = 14446, - [SMALL_STATE(475)] = 14455, - [SMALL_STATE(476)] = 14464, - [SMALL_STATE(477)] = 14483, - [SMALL_STATE(478)] = 14492, - [SMALL_STATE(479)] = 14511, - [SMALL_STATE(480)] = 14530, - [SMALL_STATE(481)] = 14549, - [SMALL_STATE(482)] = 14558, - [SMALL_STATE(483)] = 14567, - [SMALL_STATE(484)] = 14575, - [SMALL_STATE(485)] = 14583, - [SMALL_STATE(486)] = 14591, - [SMALL_STATE(487)] = 14605, - [SMALL_STATE(488)] = 14619, - [SMALL_STATE(489)] = 14631, - [SMALL_STATE(490)] = 14639, - [SMALL_STATE(491)] = 14647, - [SMALL_STATE(492)] = 14661, - [SMALL_STATE(493)] = 14669, - [SMALL_STATE(494)] = 14677, - [SMALL_STATE(495)] = 14688, - [SMALL_STATE(496)] = 14699, - [SMALL_STATE(497)] = 14710, - [SMALL_STATE(498)] = 14721, - [SMALL_STATE(499)] = 14732, - [SMALL_STATE(500)] = 14743, - [SMALL_STATE(501)] = 14754, - [SMALL_STATE(502)] = 14765, - [SMALL_STATE(503)] = 14776, - [SMALL_STATE(504)] = 14787, - [SMALL_STATE(505)] = 14798, - [SMALL_STATE(506)] = 14809, - [SMALL_STATE(507)] = 14820, - [SMALL_STATE(508)] = 14831, - [SMALL_STATE(509)] = 14842, - [SMALL_STATE(510)] = 14853, - [SMALL_STATE(511)] = 14864, - [SMALL_STATE(512)] = 14875, - [SMALL_STATE(513)] = 14886, - [SMALL_STATE(514)] = 14897, - [SMALL_STATE(515)] = 14908, - [SMALL_STATE(516)] = 14919, - [SMALL_STATE(517)] = 14930, - [SMALL_STATE(518)] = 14941, - [SMALL_STATE(519)] = 14952, - [SMALL_STATE(520)] = 14965, - [SMALL_STATE(521)] = 14976, - [SMALL_STATE(522)] = 14987, - [SMALL_STATE(523)] = 14998, - [SMALL_STATE(524)] = 15009, - [SMALL_STATE(525)] = 15020, - [SMALL_STATE(526)] = 15031, - [SMALL_STATE(527)] = 15042, - [SMALL_STATE(528)] = 15053, - [SMALL_STATE(529)] = 15064, - [SMALL_STATE(530)] = 15075, - [SMALL_STATE(531)] = 15088, - [SMALL_STATE(532)] = 15099, - [SMALL_STATE(533)] = 15110, - [SMALL_STATE(534)] = 15123, - [SMALL_STATE(535)] = 15134, - [SMALL_STATE(536)] = 15145, - [SMALL_STATE(537)] = 15156, - [SMALL_STATE(538)] = 15167, - [SMALL_STATE(539)] = 15180, - [SMALL_STATE(540)] = 15193, - [SMALL_STATE(541)] = 15204, - [SMALL_STATE(542)] = 15215, - [SMALL_STATE(543)] = 15226, - [SMALL_STATE(544)] = 15237, - [SMALL_STATE(545)] = 15248, - [SMALL_STATE(546)] = 15259, - [SMALL_STATE(547)] = 15270, - [SMALL_STATE(548)] = 15281, - [SMALL_STATE(549)] = 15292, - [SMALL_STATE(550)] = 15303, - [SMALL_STATE(551)] = 15314, - [SMALL_STATE(552)] = 15325, - [SMALL_STATE(553)] = 15336, - [SMALL_STATE(554)] = 15347, - [SMALL_STATE(555)] = 15358, - [SMALL_STATE(556)] = 15369, - [SMALL_STATE(557)] = 15380, - [SMALL_STATE(558)] = 15391, - [SMALL_STATE(559)] = 15402, - [SMALL_STATE(560)] = 15413, - [SMALL_STATE(561)] = 15424, - [SMALL_STATE(562)] = 15435, - [SMALL_STATE(563)] = 15444, - [SMALL_STATE(564)] = 15455, - [SMALL_STATE(565)] = 15466, - [SMALL_STATE(566)] = 15477, - [SMALL_STATE(567)] = 15488, - [SMALL_STATE(568)] = 15499, - [SMALL_STATE(569)] = 15510, - [SMALL_STATE(570)] = 15521, - [SMALL_STATE(571)] = 15532, - [SMALL_STATE(572)] = 15541, - [SMALL_STATE(573)] = 15550, - [SMALL_STATE(574)] = 15561, - [SMALL_STATE(575)] = 15570, - [SMALL_STATE(576)] = 15581, - [SMALL_STATE(577)] = 15590, - [SMALL_STATE(578)] = 15599, - [SMALL_STATE(579)] = 15610, - [SMALL_STATE(580)] = 15621, - [SMALL_STATE(581)] = 15630, - [SMALL_STATE(582)] = 15641, - [SMALL_STATE(583)] = 15650, - [SMALL_STATE(584)] = 15661, - [SMALL_STATE(585)] = 15672, - [SMALL_STATE(586)] = 15681, - [SMALL_STATE(587)] = 15692, - [SMALL_STATE(588)] = 15703, - [SMALL_STATE(589)] = 15714, - [SMALL_STATE(590)] = 15723, - [SMALL_STATE(591)] = 15734, - [SMALL_STATE(592)] = 15745, - [SMALL_STATE(593)] = 15756, - [SMALL_STATE(594)] = 15765, - [SMALL_STATE(595)] = 15776, - [SMALL_STATE(596)] = 15787, - [SMALL_STATE(597)] = 15798, - [SMALL_STATE(598)] = 15809, - [SMALL_STATE(599)] = 15820, - [SMALL_STATE(600)] = 15831, - [SMALL_STATE(601)] = 15842, - [SMALL_STATE(602)] = 15853, - [SMALL_STATE(603)] = 15864, - [SMALL_STATE(604)] = 15875, - [SMALL_STATE(605)] = 15886, - [SMALL_STATE(606)] = 15897, - [SMALL_STATE(607)] = 15908, - [SMALL_STATE(608)] = 15919, - [SMALL_STATE(609)] = 15930, - [SMALL_STATE(610)] = 15941, - [SMALL_STATE(611)] = 15952, - [SMALL_STATE(612)] = 15963, - [SMALL_STATE(613)] = 15974, - [SMALL_STATE(614)] = 15985, - [SMALL_STATE(615)] = 15991, - [SMALL_STATE(616)] = 15997, - [SMALL_STATE(617)] = 16003, - [SMALL_STATE(618)] = 16009, - [SMALL_STATE(619)] = 16015, - [SMALL_STATE(620)] = 16025, - [SMALL_STATE(621)] = 16031, - [SMALL_STATE(622)] = 16037, - [SMALL_STATE(623)] = 16043, - [SMALL_STATE(624)] = 16049, - [SMALL_STATE(625)] = 16055, - [SMALL_STATE(626)] = 16061, - [SMALL_STATE(627)] = 16067, - [SMALL_STATE(628)] = 16073, - [SMALL_STATE(629)] = 16079, - [SMALL_STATE(630)] = 16085, - [SMALL_STATE(631)] = 16091, - [SMALL_STATE(632)] = 16097, - [SMALL_STATE(633)] = 16103, - [SMALL_STATE(634)] = 16109, - [SMALL_STATE(635)] = 16115, - [SMALL_STATE(636)] = 16125, - [SMALL_STATE(637)] = 16135, - [SMALL_STATE(638)] = 16141, - [SMALL_STATE(639)] = 16147, - [SMALL_STATE(640)] = 16153, - [SMALL_STATE(641)] = 16159, - [SMALL_STATE(642)] = 16165, - [SMALL_STATE(643)] = 16171, - [SMALL_STATE(644)] = 16177, - [SMALL_STATE(645)] = 16183, - [SMALL_STATE(646)] = 16189, - [SMALL_STATE(647)] = 16197, - [SMALL_STATE(648)] = 16203, - [SMALL_STATE(649)] = 16209, - [SMALL_STATE(650)] = 16219, - [SMALL_STATE(651)] = 16229, - [SMALL_STATE(652)] = 16235, - [SMALL_STATE(653)] = 16245, - [SMALL_STATE(654)] = 16251, - [SMALL_STATE(655)] = 16261, - [SMALL_STATE(656)] = 16271, - [SMALL_STATE(657)] = 16277, - [SMALL_STATE(658)] = 16283, - [SMALL_STATE(659)] = 16289, - [SMALL_STATE(660)] = 16299, - [SMALL_STATE(661)] = 16309, - [SMALL_STATE(662)] = 16315, - [SMALL_STATE(663)] = 16321, - [SMALL_STATE(664)] = 16327, - [SMALL_STATE(665)] = 16333, - [SMALL_STATE(666)] = 16339, - [SMALL_STATE(667)] = 16349, - [SMALL_STATE(668)] = 16355, - [SMALL_STATE(669)] = 16361, - [SMALL_STATE(670)] = 16367, - [SMALL_STATE(671)] = 16373, - [SMALL_STATE(672)] = 16379, - [SMALL_STATE(673)] = 16385, - [SMALL_STATE(674)] = 16395, - [SMALL_STATE(675)] = 16405, - [SMALL_STATE(676)] = 16411, - [SMALL_STATE(677)] = 16417, - [SMALL_STATE(678)] = 16423, - [SMALL_STATE(679)] = 16429, - [SMALL_STATE(680)] = 16435, - [SMALL_STATE(681)] = 16441, - [SMALL_STATE(682)] = 16451, - [SMALL_STATE(683)] = 16461, - [SMALL_STATE(684)] = 16471, - [SMALL_STATE(685)] = 16477, - [SMALL_STATE(686)] = 16485, - [SMALL_STATE(687)] = 16491, - [SMALL_STATE(688)] = 16497, - [SMALL_STATE(689)] = 16503, - [SMALL_STATE(690)] = 16513, - [SMALL_STATE(691)] = 16523, - [SMALL_STATE(692)] = 16529, - [SMALL_STATE(693)] = 16535, - [SMALL_STATE(694)] = 16545, - [SMALL_STATE(695)] = 16551, - [SMALL_STATE(696)] = 16561, - [SMALL_STATE(697)] = 16567, - [SMALL_STATE(698)] = 16577, - [SMALL_STATE(699)] = 16585, - [SMALL_STATE(700)] = 16591, - [SMALL_STATE(701)] = 16599, - [SMALL_STATE(702)] = 16607, - [SMALL_STATE(703)] = 16613, - [SMALL_STATE(704)] = 16621, - [SMALL_STATE(705)] = 16629, - [SMALL_STATE(706)] = 16635, - [SMALL_STATE(707)] = 16645, - [SMALL_STATE(708)] = 16653, - [SMALL_STATE(709)] = 16661, - [SMALL_STATE(710)] = 16669, - [SMALL_STATE(711)] = 16679, - [SMALL_STATE(712)] = 16687, - [SMALL_STATE(713)] = 16695, - [SMALL_STATE(714)] = 16703, - [SMALL_STATE(715)] = 16708, - [SMALL_STATE(716)] = 16713, - [SMALL_STATE(717)] = 16720, - [SMALL_STATE(718)] = 16727, - [SMALL_STATE(719)] = 16734, - [SMALL_STATE(720)] = 16739, - [SMALL_STATE(721)] = 16744, - [SMALL_STATE(722)] = 16751, - [SMALL_STATE(723)] = 16758, - [SMALL_STATE(724)] = 16765, - [SMALL_STATE(725)] = 16770, - [SMALL_STATE(726)] = 16777, - [SMALL_STATE(727)] = 16784, - [SMALL_STATE(728)] = 16789, - [SMALL_STATE(729)] = 16794, - [SMALL_STATE(730)] = 16799, - [SMALL_STATE(731)] = 16806, - [SMALL_STATE(732)] = 16811, - [SMALL_STATE(733)] = 16816, - [SMALL_STATE(734)] = 16823, - [SMALL_STATE(735)] = 16828, - [SMALL_STATE(736)] = 16833, - [SMALL_STATE(737)] = 16838, - [SMALL_STATE(738)] = 16843, - [SMALL_STATE(739)] = 16850, - [SMALL_STATE(740)] = 16855, - [SMALL_STATE(741)] = 16860, - [SMALL_STATE(742)] = 16867, - [SMALL_STATE(743)] = 16874, - [SMALL_STATE(744)] = 16879, - [SMALL_STATE(745)] = 16884, - [SMALL_STATE(746)] = 16891, - [SMALL_STATE(747)] = 16898, - [SMALL_STATE(748)] = 16905, - [SMALL_STATE(749)] = 16912, - [SMALL_STATE(750)] = 16919, - [SMALL_STATE(751)] = 16924, - [SMALL_STATE(752)] = 16929, - [SMALL_STATE(753)] = 16934, - [SMALL_STATE(754)] = 16941, - [SMALL_STATE(755)] = 16946, - [SMALL_STATE(756)] = 16953, - [SMALL_STATE(757)] = 16960, - [SMALL_STATE(758)] = 16965, - [SMALL_STATE(759)] = 16972, - [SMALL_STATE(760)] = 16977, - [SMALL_STATE(761)] = 16982, - [SMALL_STATE(762)] = 16987, - [SMALL_STATE(763)] = 16992, - [SMALL_STATE(764)] = 16997, - [SMALL_STATE(765)] = 17002, - [SMALL_STATE(766)] = 17007, - [SMALL_STATE(767)] = 17012, - [SMALL_STATE(768)] = 17017, - [SMALL_STATE(769)] = 17022, - [SMALL_STATE(770)] = 17027, - [SMALL_STATE(771)] = 17032, - [SMALL_STATE(772)] = 17037, - [SMALL_STATE(773)] = 17042, - [SMALL_STATE(774)] = 17047, - [SMALL_STATE(775)] = 17052, - [SMALL_STATE(776)] = 17057, - [SMALL_STATE(777)] = 17062, - [SMALL_STATE(778)] = 17067, - [SMALL_STATE(779)] = 17072, - [SMALL_STATE(780)] = 17077, - [SMALL_STATE(781)] = 17082, - [SMALL_STATE(782)] = 17089, - [SMALL_STATE(783)] = 17096, - [SMALL_STATE(784)] = 17101, - [SMALL_STATE(785)] = 17108, - [SMALL_STATE(786)] = 17115, - [SMALL_STATE(787)] = 17122, - [SMALL_STATE(788)] = 17127, - [SMALL_STATE(789)] = 17132, - [SMALL_STATE(790)] = 17139, - [SMALL_STATE(791)] = 17146, - [SMALL_STATE(792)] = 17153, - [SMALL_STATE(793)] = 17160, - [SMALL_STATE(794)] = 17167, - [SMALL_STATE(795)] = 17172, - [SMALL_STATE(796)] = 17179, - [SMALL_STATE(797)] = 17184, - [SMALL_STATE(798)] = 17189, - [SMALL_STATE(799)] = 17196, - [SMALL_STATE(800)] = 17203, - [SMALL_STATE(801)] = 17208, - [SMALL_STATE(802)] = 17213, - [SMALL_STATE(803)] = 17220, - [SMALL_STATE(804)] = 17227, - [SMALL_STATE(805)] = 17232, - [SMALL_STATE(806)] = 17239, - [SMALL_STATE(807)] = 17246, - [SMALL_STATE(808)] = 17251, - [SMALL_STATE(809)] = 17256, - [SMALL_STATE(810)] = 17263, - [SMALL_STATE(811)] = 17270, - [SMALL_STATE(812)] = 17275, - [SMALL_STATE(813)] = 17282, - [SMALL_STATE(814)] = 17289, - [SMALL_STATE(815)] = 17296, - [SMALL_STATE(816)] = 17303, - [SMALL_STATE(817)] = 17310, - [SMALL_STATE(818)] = 17317, - [SMALL_STATE(819)] = 17322, - [SMALL_STATE(820)] = 17327, - [SMALL_STATE(821)] = 17332, - [SMALL_STATE(822)] = 17337, - [SMALL_STATE(823)] = 17344, - [SMALL_STATE(824)] = 17349, - [SMALL_STATE(825)] = 17354, - [SMALL_STATE(826)] = 17359, - [SMALL_STATE(827)] = 17364, - [SMALL_STATE(828)] = 17369, - [SMALL_STATE(829)] = 17374, - [SMALL_STATE(830)] = 17379, - [SMALL_STATE(831)] = 17386, - [SMALL_STATE(832)] = 17391, - [SMALL_STATE(833)] = 17396, - [SMALL_STATE(834)] = 17401, - [SMALL_STATE(835)] = 17406, - [SMALL_STATE(836)] = 17413, - [SMALL_STATE(837)] = 17420, - [SMALL_STATE(838)] = 17425, - [SMALL_STATE(839)] = 17430, - [SMALL_STATE(840)] = 17437, - [SMALL_STATE(841)] = 17444, - [SMALL_STATE(842)] = 17451, - [SMALL_STATE(843)] = 17456, - [SMALL_STATE(844)] = 17461, - [SMALL_STATE(845)] = 17468, - [SMALL_STATE(846)] = 17475, - [SMALL_STATE(847)] = 17482, - [SMALL_STATE(848)] = 17489, - [SMALL_STATE(849)] = 17494, - [SMALL_STATE(850)] = 17501, - [SMALL_STATE(851)] = 17506, - [SMALL_STATE(852)] = 17511, - [SMALL_STATE(853)] = 17516, - [SMALL_STATE(854)] = 17521, - [SMALL_STATE(855)] = 17528, - [SMALL_STATE(856)] = 17535, - [SMALL_STATE(857)] = 17540, - [SMALL_STATE(858)] = 17545, - [SMALL_STATE(859)] = 17550, - [SMALL_STATE(860)] = 17557, - [SMALL_STATE(861)] = 17562, - [SMALL_STATE(862)] = 17567, - [SMALL_STATE(863)] = 17572, - [SMALL_STATE(864)] = 17577, - [SMALL_STATE(865)] = 17582, - [SMALL_STATE(866)] = 17587, - [SMALL_STATE(867)] = 17594, - [SMALL_STATE(868)] = 17599, - [SMALL_STATE(869)] = 17604, - [SMALL_STATE(870)] = 17611, - [SMALL_STATE(871)] = 17618, - [SMALL_STATE(872)] = 17625, - [SMALL_STATE(873)] = 17630, - [SMALL_STATE(874)] = 17635, - [SMALL_STATE(875)] = 17642, - [SMALL_STATE(876)] = 17649, - [SMALL_STATE(877)] = 17654, - [SMALL_STATE(878)] = 17659, - [SMALL_STATE(879)] = 17664, - [SMALL_STATE(880)] = 17669, - [SMALL_STATE(881)] = 17676, - [SMALL_STATE(882)] = 17683, - [SMALL_STATE(883)] = 17690, - [SMALL_STATE(884)] = 17695, - [SMALL_STATE(885)] = 17700, - [SMALL_STATE(886)] = 17705, - [SMALL_STATE(887)] = 17710, - [SMALL_STATE(888)] = 17715, - [SMALL_STATE(889)] = 17720, - [SMALL_STATE(890)] = 17727, - [SMALL_STATE(891)] = 17732, - [SMALL_STATE(892)] = 17737, - [SMALL_STATE(893)] = 17742, - [SMALL_STATE(894)] = 17747, - [SMALL_STATE(895)] = 17754, - [SMALL_STATE(896)] = 17759, - [SMALL_STATE(897)] = 17764, - [SMALL_STATE(898)] = 17769, - [SMALL_STATE(899)] = 17774, - [SMALL_STATE(900)] = 17779, - [SMALL_STATE(901)] = 17786, - [SMALL_STATE(902)] = 17791, - [SMALL_STATE(903)] = 17796, - [SMALL_STATE(904)] = 17800, - [SMALL_STATE(905)] = 17804, - [SMALL_STATE(906)] = 17808, - [SMALL_STATE(907)] = 17812, - [SMALL_STATE(908)] = 17816, - [SMALL_STATE(909)] = 17820, - [SMALL_STATE(910)] = 17824, - [SMALL_STATE(911)] = 17828, - [SMALL_STATE(912)] = 17832, - [SMALL_STATE(913)] = 17836, - [SMALL_STATE(914)] = 17840, - [SMALL_STATE(915)] = 17844, - [SMALL_STATE(916)] = 17848, - [SMALL_STATE(917)] = 17852, - [SMALL_STATE(918)] = 17856, - [SMALL_STATE(919)] = 17860, - [SMALL_STATE(920)] = 17864, - [SMALL_STATE(921)] = 17868, - [SMALL_STATE(922)] = 17872, - [SMALL_STATE(923)] = 17876, - [SMALL_STATE(924)] = 17880, - [SMALL_STATE(925)] = 17884, - [SMALL_STATE(926)] = 17888, - [SMALL_STATE(927)] = 17892, - [SMALL_STATE(928)] = 17896, - [SMALL_STATE(929)] = 17900, - [SMALL_STATE(930)] = 17904, - [SMALL_STATE(931)] = 17908, - [SMALL_STATE(932)] = 17912, - [SMALL_STATE(933)] = 17916, - [SMALL_STATE(934)] = 17920, - [SMALL_STATE(935)] = 17924, - [SMALL_STATE(936)] = 17928, - [SMALL_STATE(937)] = 17932, - [SMALL_STATE(938)] = 17936, - [SMALL_STATE(939)] = 17940, - [SMALL_STATE(940)] = 17944, - [SMALL_STATE(941)] = 17948, - [SMALL_STATE(942)] = 17952, - [SMALL_STATE(943)] = 17956, - [SMALL_STATE(944)] = 17960, - [SMALL_STATE(945)] = 17964, - [SMALL_STATE(946)] = 17968, - [SMALL_STATE(947)] = 17972, - [SMALL_STATE(948)] = 17976, - [SMALL_STATE(949)] = 17980, - [SMALL_STATE(950)] = 17984, - [SMALL_STATE(951)] = 17988, - [SMALL_STATE(952)] = 17992, - [SMALL_STATE(953)] = 17996, - [SMALL_STATE(954)] = 18000, - [SMALL_STATE(955)] = 18004, - [SMALL_STATE(956)] = 18008, - [SMALL_STATE(957)] = 18012, - [SMALL_STATE(958)] = 18016, - [SMALL_STATE(959)] = 18020, - [SMALL_STATE(960)] = 18024, - [SMALL_STATE(961)] = 18028, - [SMALL_STATE(962)] = 18032, - [SMALL_STATE(963)] = 18036, - [SMALL_STATE(964)] = 18040, - [SMALL_STATE(965)] = 18044, - [SMALL_STATE(966)] = 18048, - [SMALL_STATE(967)] = 18052, - [SMALL_STATE(968)] = 18056, - [SMALL_STATE(969)] = 18060, - [SMALL_STATE(970)] = 18064, - [SMALL_STATE(971)] = 18068, - [SMALL_STATE(972)] = 18072, - [SMALL_STATE(973)] = 18076, - [SMALL_STATE(974)] = 18080, - [SMALL_STATE(975)] = 18084, - [SMALL_STATE(976)] = 18088, - [SMALL_STATE(977)] = 18092, - [SMALL_STATE(978)] = 18096, - [SMALL_STATE(979)] = 18100, - [SMALL_STATE(980)] = 18104, - [SMALL_STATE(981)] = 18108, - [SMALL_STATE(982)] = 18112, - [SMALL_STATE(983)] = 18116, - [SMALL_STATE(984)] = 18120, - [SMALL_STATE(985)] = 18124, - [SMALL_STATE(986)] = 18128, - [SMALL_STATE(987)] = 18132, - [SMALL_STATE(988)] = 18136, - [SMALL_STATE(989)] = 18140, - [SMALL_STATE(990)] = 18144, - [SMALL_STATE(991)] = 18148, - [SMALL_STATE(992)] = 18152, - [SMALL_STATE(993)] = 18156, - [SMALL_STATE(994)] = 18160, - [SMALL_STATE(995)] = 18164, - [SMALL_STATE(996)] = 18168, - [SMALL_STATE(997)] = 18172, - [SMALL_STATE(998)] = 18176, - [SMALL_STATE(999)] = 18180, - [SMALL_STATE(1000)] = 18184, - [SMALL_STATE(1001)] = 18188, - [SMALL_STATE(1002)] = 18192, - [SMALL_STATE(1003)] = 18196, - [SMALL_STATE(1004)] = 18200, - [SMALL_STATE(1005)] = 18204, - [SMALL_STATE(1006)] = 18208, - [SMALL_STATE(1007)] = 18212, - [SMALL_STATE(1008)] = 18216, - [SMALL_STATE(1009)] = 18220, - [SMALL_STATE(1010)] = 18224, - [SMALL_STATE(1011)] = 18228, - [SMALL_STATE(1012)] = 18232, - [SMALL_STATE(1013)] = 18236, - [SMALL_STATE(1014)] = 18240, - [SMALL_STATE(1015)] = 18244, - [SMALL_STATE(1016)] = 18248, - [SMALL_STATE(1017)] = 18252, - [SMALL_STATE(1018)] = 18256, - [SMALL_STATE(1019)] = 18260, - [SMALL_STATE(1020)] = 18264, - [SMALL_STATE(1021)] = 18268, - [SMALL_STATE(1022)] = 18272, - [SMALL_STATE(1023)] = 18276, - [SMALL_STATE(1024)] = 18280, - [SMALL_STATE(1025)] = 18284, - [SMALL_STATE(1026)] = 18288, - [SMALL_STATE(1027)] = 18292, - [SMALL_STATE(1028)] = 18296, - [SMALL_STATE(1029)] = 18300, - [SMALL_STATE(1030)] = 18304, - [SMALL_STATE(1031)] = 18308, - [SMALL_STATE(1032)] = 18312, - [SMALL_STATE(1033)] = 18316, - [SMALL_STATE(1034)] = 18320, - [SMALL_STATE(1035)] = 18324, - [SMALL_STATE(1036)] = 18328, - [SMALL_STATE(1037)] = 18332, - [SMALL_STATE(1038)] = 18336, - [SMALL_STATE(1039)] = 18340, - [SMALL_STATE(1040)] = 18344, - [SMALL_STATE(1041)] = 18348, - [SMALL_STATE(1042)] = 18352, - [SMALL_STATE(1043)] = 18356, - [SMALL_STATE(1044)] = 18360, - [SMALL_STATE(1045)] = 18364, - [SMALL_STATE(1046)] = 18368, - [SMALL_STATE(1047)] = 18372, - [SMALL_STATE(1048)] = 18376, - [SMALL_STATE(1049)] = 18380, - [SMALL_STATE(1050)] = 18384, - [SMALL_STATE(1051)] = 18388, - [SMALL_STATE(1052)] = 18392, - [SMALL_STATE(1053)] = 18396, - [SMALL_STATE(1054)] = 18400, - [SMALL_STATE(1055)] = 18404, - [SMALL_STATE(1056)] = 18408, - [SMALL_STATE(1057)] = 18412, - [SMALL_STATE(1058)] = 18416, - [SMALL_STATE(1059)] = 18420, - [SMALL_STATE(1060)] = 18424, - [SMALL_STATE(1061)] = 18428, - [SMALL_STATE(1062)] = 18432, - [SMALL_STATE(1063)] = 18436, - [SMALL_STATE(1064)] = 18440, - [SMALL_STATE(1065)] = 18444, - [SMALL_STATE(1066)] = 18448, - [SMALL_STATE(1067)] = 18452, - [SMALL_STATE(1068)] = 18456, - [SMALL_STATE(1069)] = 18460, - [SMALL_STATE(1070)] = 18464, - [SMALL_STATE(1071)] = 18468, - [SMALL_STATE(1072)] = 18472, - [SMALL_STATE(1073)] = 18476, - [SMALL_STATE(1074)] = 18480, - [SMALL_STATE(1075)] = 18484, - [SMALL_STATE(1076)] = 18488, - [SMALL_STATE(1077)] = 18492, - [SMALL_STATE(1078)] = 18496, - [SMALL_STATE(1079)] = 18500, - [SMALL_STATE(1080)] = 18504, - [SMALL_STATE(1081)] = 18508, - [SMALL_STATE(1082)] = 18512, - [SMALL_STATE(1083)] = 18516, - [SMALL_STATE(1084)] = 18520, - [SMALL_STATE(1085)] = 18524, - [SMALL_STATE(1086)] = 18528, - [SMALL_STATE(1087)] = 18532, - [SMALL_STATE(1088)] = 18536, - [SMALL_STATE(1089)] = 18540, - [SMALL_STATE(1090)] = 18544, - [SMALL_STATE(1091)] = 18548, - [SMALL_STATE(1092)] = 18552, - [SMALL_STATE(1093)] = 18556, - [SMALL_STATE(1094)] = 18560, - [SMALL_STATE(1095)] = 18564, + [SMALL_STATE(129)] = 3174, + [SMALL_STATE(130)] = 3221, + [SMALL_STATE(131)] = 3266, + [SMALL_STATE(132)] = 3313, + [SMALL_STATE(133)] = 3357, + [SMALL_STATE(134)] = 3401, + [SMALL_STATE(135)] = 3445, + [SMALL_STATE(136)] = 3489, + [SMALL_STATE(137)] = 3533, + [SMALL_STATE(138)] = 3577, + [SMALL_STATE(139)] = 3621, + [SMALL_STATE(140)] = 3665, + [SMALL_STATE(141)] = 3709, + [SMALL_STATE(142)] = 3753, + [SMALL_STATE(143)] = 3797, + [SMALL_STATE(144)] = 3841, + [SMALL_STATE(145)] = 3885, + [SMALL_STATE(146)] = 3929, + [SMALL_STATE(147)] = 3973, + [SMALL_STATE(148)] = 4017, + [SMALL_STATE(149)] = 4061, + [SMALL_STATE(150)] = 4105, + [SMALL_STATE(151)] = 4149, + [SMALL_STATE(152)] = 4193, + [SMALL_STATE(153)] = 4237, + [SMALL_STATE(154)] = 4281, + [SMALL_STATE(155)] = 4325, + [SMALL_STATE(156)] = 4369, + [SMALL_STATE(157)] = 4413, + [SMALL_STATE(158)] = 4457, + [SMALL_STATE(159)] = 4501, + [SMALL_STATE(160)] = 4545, + [SMALL_STATE(161)] = 4589, + [SMALL_STATE(162)] = 4633, + [SMALL_STATE(163)] = 4677, + [SMALL_STATE(164)] = 4721, + [SMALL_STATE(165)] = 4765, + [SMALL_STATE(166)] = 4809, + [SMALL_STATE(167)] = 4853, + [SMALL_STATE(168)] = 4897, + [SMALL_STATE(169)] = 4941, + [SMALL_STATE(170)] = 4985, + [SMALL_STATE(171)] = 5029, + [SMALL_STATE(172)] = 5073, + [SMALL_STATE(173)] = 5117, + [SMALL_STATE(174)] = 5161, + [SMALL_STATE(175)] = 5205, + [SMALL_STATE(176)] = 5249, + [SMALL_STATE(177)] = 5293, + [SMALL_STATE(178)] = 5337, + [SMALL_STATE(179)] = 5381, + [SMALL_STATE(180)] = 5425, + [SMALL_STATE(181)] = 5469, + [SMALL_STATE(182)] = 5513, + [SMALL_STATE(183)] = 5557, + [SMALL_STATE(184)] = 5601, + [SMALL_STATE(185)] = 5645, + [SMALL_STATE(186)] = 5689, + [SMALL_STATE(187)] = 5733, + [SMALL_STATE(188)] = 5777, + [SMALL_STATE(189)] = 5821, + [SMALL_STATE(190)] = 5865, + [SMALL_STATE(191)] = 5909, + [SMALL_STATE(192)] = 5953, + [SMALL_STATE(193)] = 5997, + [SMALL_STATE(194)] = 6041, + [SMALL_STATE(195)] = 6085, + [SMALL_STATE(196)] = 6129, + [SMALL_STATE(197)] = 6173, + [SMALL_STATE(198)] = 6217, + [SMALL_STATE(199)] = 6261, + [SMALL_STATE(200)] = 6305, + [SMALL_STATE(201)] = 6349, + [SMALL_STATE(202)] = 6393, + [SMALL_STATE(203)] = 6437, + [SMALL_STATE(204)] = 6481, + [SMALL_STATE(205)] = 6525, + [SMALL_STATE(206)] = 6569, + [SMALL_STATE(207)] = 6613, + [SMALL_STATE(208)] = 6657, + [SMALL_STATE(209)] = 6701, + [SMALL_STATE(210)] = 6745, + [SMALL_STATE(211)] = 6789, + [SMALL_STATE(212)] = 6833, + [SMALL_STATE(213)] = 6877, + [SMALL_STATE(214)] = 6921, + [SMALL_STATE(215)] = 6965, + [SMALL_STATE(216)] = 7009, + [SMALL_STATE(217)] = 7053, + [SMALL_STATE(218)] = 7097, + [SMALL_STATE(219)] = 7141, + [SMALL_STATE(220)] = 7185, + [SMALL_STATE(221)] = 7229, + [SMALL_STATE(222)] = 7273, + [SMALL_STATE(223)] = 7317, + [SMALL_STATE(224)] = 7361, + [SMALL_STATE(225)] = 7405, + [SMALL_STATE(226)] = 7449, + [SMALL_STATE(227)] = 7493, + [SMALL_STATE(228)] = 7537, + [SMALL_STATE(229)] = 7581, + [SMALL_STATE(230)] = 7625, + [SMALL_STATE(231)] = 7669, + [SMALL_STATE(232)] = 7713, + [SMALL_STATE(233)] = 7757, + [SMALL_STATE(234)] = 7801, + [SMALL_STATE(235)] = 7845, + [SMALL_STATE(236)] = 7889, + [SMALL_STATE(237)] = 7933, + [SMALL_STATE(238)] = 7977, + [SMALL_STATE(239)] = 8021, + [SMALL_STATE(240)] = 8065, + [SMALL_STATE(241)] = 8109, + [SMALL_STATE(242)] = 8153, + [SMALL_STATE(243)] = 8197, + [SMALL_STATE(244)] = 8241, + [SMALL_STATE(245)] = 8285, + [SMALL_STATE(246)] = 8329, + [SMALL_STATE(247)] = 8373, + [SMALL_STATE(248)] = 8417, + [SMALL_STATE(249)] = 8461, + [SMALL_STATE(250)] = 8505, + [SMALL_STATE(251)] = 8549, + [SMALL_STATE(252)] = 8593, + [SMALL_STATE(253)] = 8637, + [SMALL_STATE(254)] = 8681, + [SMALL_STATE(255)] = 8725, + [SMALL_STATE(256)] = 8769, + [SMALL_STATE(257)] = 8813, + [SMALL_STATE(258)] = 8857, + [SMALL_STATE(259)] = 8901, + [SMALL_STATE(260)] = 8945, + [SMALL_STATE(261)] = 8989, + [SMALL_STATE(262)] = 9033, + [SMALL_STATE(263)] = 9077, + [SMALL_STATE(264)] = 9121, + [SMALL_STATE(265)] = 9165, + [SMALL_STATE(266)] = 9209, + [SMALL_STATE(267)] = 9253, + [SMALL_STATE(268)] = 9297, + [SMALL_STATE(269)] = 9341, + [SMALL_STATE(270)] = 9385, + [SMALL_STATE(271)] = 9429, + [SMALL_STATE(272)] = 9473, + [SMALL_STATE(273)] = 9520, + [SMALL_STATE(274)] = 9563, + [SMALL_STATE(275)] = 9605, + [SMALL_STATE(276)] = 9651, + [SMALL_STATE(277)] = 9697, + [SMALL_STATE(278)] = 9743, + [SMALL_STATE(279)] = 9789, + [SMALL_STATE(280)] = 9835, + [SMALL_STATE(281)] = 9877, + [SMALL_STATE(282)] = 9919, + [SMALL_STATE(283)] = 9961, + [SMALL_STATE(284)] = 10003, + [SMALL_STATE(285)] = 10045, + [SMALL_STATE(286)] = 10087, + [SMALL_STATE(287)] = 10129, + [SMALL_STATE(288)] = 10171, + [SMALL_STATE(289)] = 10213, + [SMALL_STATE(290)] = 10255, + [SMALL_STATE(291)] = 10292, + [SMALL_STATE(292)] = 10331, + [SMALL_STATE(293)] = 10370, + [SMALL_STATE(294)] = 10409, + [SMALL_STATE(295)] = 10448, + [SMALL_STATE(296)] = 10487, + [SMALL_STATE(297)] = 10521, + [SMALL_STATE(298)] = 10547, + [SMALL_STATE(299)] = 10581, + [SMALL_STATE(300)] = 10615, + [SMALL_STATE(301)] = 10647, + [SMALL_STATE(302)] = 10679, + [SMALL_STATE(303)] = 10713, + [SMALL_STATE(304)] = 10745, + [SMALL_STATE(305)] = 10777, + [SMALL_STATE(306)] = 10809, + [SMALL_STATE(307)] = 10841, + [SMALL_STATE(308)] = 10873, + [SMALL_STATE(309)] = 10905, + [SMALL_STATE(310)] = 10937, + [SMALL_STATE(311)] = 10969, + [SMALL_STATE(312)] = 11003, + [SMALL_STATE(313)] = 11037, + [SMALL_STATE(314)] = 11063, + [SMALL_STATE(315)] = 11084, + [SMALL_STATE(316)] = 11113, + [SMALL_STATE(317)] = 11142, + [SMALL_STATE(318)] = 11171, + [SMALL_STATE(319)] = 11202, + [SMALL_STATE(320)] = 11227, + [SMALL_STATE(321)] = 11252, + [SMALL_STATE(322)] = 11281, + [SMALL_STATE(323)] = 11310, + [SMALL_STATE(324)] = 11338, + [SMALL_STATE(325)] = 11358, + [SMALL_STATE(326)] = 11386, + [SMALL_STATE(327)] = 11414, + [SMALL_STATE(328)] = 11442, + [SMALL_STATE(329)] = 11470, + [SMALL_STATE(330)] = 11498, + [SMALL_STATE(331)] = 11526, + [SMALL_STATE(332)] = 11554, + [SMALL_STATE(333)] = 11582, + [SMALL_STATE(334)] = 11610, + [SMALL_STATE(335)] = 11638, + [SMALL_STATE(336)] = 11666, + [SMALL_STATE(337)] = 11694, + [SMALL_STATE(338)] = 11722, + [SMALL_STATE(339)] = 11750, + [SMALL_STATE(340)] = 11778, + [SMALL_STATE(341)] = 11806, + [SMALL_STATE(342)] = 11834, + [SMALL_STATE(343)] = 11862, + [SMALL_STATE(344)] = 11890, + [SMALL_STATE(345)] = 11918, + [SMALL_STATE(346)] = 11946, + [SMALL_STATE(347)] = 11974, + [SMALL_STATE(348)] = 12002, + [SMALL_STATE(349)] = 12030, + [SMALL_STATE(350)] = 12058, + [SMALL_STATE(351)] = 12086, + [SMALL_STATE(352)] = 12114, + [SMALL_STATE(353)] = 12142, + [SMALL_STATE(354)] = 12170, + [SMALL_STATE(355)] = 12198, + [SMALL_STATE(356)] = 12226, + [SMALL_STATE(357)] = 12254, + [SMALL_STATE(358)] = 12282, + [SMALL_STATE(359)] = 12305, + [SMALL_STATE(360)] = 12330, + [SMALL_STATE(361)] = 12353, + [SMALL_STATE(362)] = 12378, + [SMALL_STATE(363)] = 12400, + [SMALL_STATE(364)] = 12422, + [SMALL_STATE(365)] = 12444, + [SMALL_STATE(366)] = 12466, + [SMALL_STATE(367)] = 12488, + [SMALL_STATE(368)] = 12510, + [SMALL_STATE(369)] = 12544, + [SMALL_STATE(370)] = 12563, + [SMALL_STATE(371)] = 12580, + [SMALL_STATE(372)] = 12599, + [SMALL_STATE(373)] = 12620, + [SMALL_STATE(374)] = 12637, + [SMALL_STATE(375)] = 12656, + [SMALL_STATE(376)] = 12689, + [SMALL_STATE(377)] = 12706, + [SMALL_STATE(378)] = 12739, + [SMALL_STATE(379)] = 12766, + [SMALL_STATE(380)] = 12799, + [SMALL_STATE(381)] = 12832, + [SMALL_STATE(382)] = 12865, + [SMALL_STATE(383)] = 12898, + [SMALL_STATE(384)] = 12931, + [SMALL_STATE(385)] = 12947, + [SMALL_STATE(386)] = 12963, + [SMALL_STATE(387)] = 12977, + [SMALL_STATE(388)] = 13003, + [SMALL_STATE(389)] = 13016, + [SMALL_STATE(390)] = 13038, + [SMALL_STATE(391)] = 13063, + [SMALL_STATE(392)] = 13086, + [SMALL_STATE(393)] = 13109, + [SMALL_STATE(394)] = 13132, + [SMALL_STATE(395)] = 13155, + [SMALL_STATE(396)] = 13180, + [SMALL_STATE(397)] = 13205, + [SMALL_STATE(398)] = 13228, + [SMALL_STATE(399)] = 13251, + [SMALL_STATE(400)] = 13274, + [SMALL_STATE(401)] = 13297, + [SMALL_STATE(402)] = 13320, + [SMALL_STATE(403)] = 13345, + [SMALL_STATE(404)] = 13368, + [SMALL_STATE(405)] = 13391, + [SMALL_STATE(406)] = 13412, + [SMALL_STATE(407)] = 13435, + [SMALL_STATE(408)] = 13458, + [SMALL_STATE(409)] = 13483, + [SMALL_STATE(410)] = 13508, + [SMALL_STATE(411)] = 13531, + [SMALL_STATE(412)] = 13554, + [SMALL_STATE(413)] = 13574, + [SMALL_STATE(414)] = 13596, + [SMALL_STATE(415)] = 13618, + [SMALL_STATE(416)] = 13640, + [SMALL_STATE(417)] = 13662, + [SMALL_STATE(418)] = 13684, + [SMALL_STATE(419)] = 13706, + [SMALL_STATE(420)] = 13728, + [SMALL_STATE(421)] = 13750, + [SMALL_STATE(422)] = 13770, + [SMALL_STATE(423)] = 13792, + [SMALL_STATE(424)] = 13814, + [SMALL_STATE(425)] = 13836, + [SMALL_STATE(426)] = 13858, + [SMALL_STATE(427)] = 13880, + [SMALL_STATE(428)] = 13902, + [SMALL_STATE(429)] = 13924, + [SMALL_STATE(430)] = 13946, + [SMALL_STATE(431)] = 13968, + [SMALL_STATE(432)] = 13990, + [SMALL_STATE(433)] = 13999, + [SMALL_STATE(434)] = 14018, + [SMALL_STATE(435)] = 14037, + [SMALL_STATE(436)] = 14056, + [SMALL_STATE(437)] = 14075, + [SMALL_STATE(438)] = 14094, + [SMALL_STATE(439)] = 14113, + [SMALL_STATE(440)] = 14132, + [SMALL_STATE(441)] = 14151, + [SMALL_STATE(442)] = 14170, + [SMALL_STATE(443)] = 14189, + [SMALL_STATE(444)] = 14208, + [SMALL_STATE(445)] = 14227, + [SMALL_STATE(446)] = 14246, + [SMALL_STATE(447)] = 14265, + [SMALL_STATE(448)] = 14284, + [SMALL_STATE(449)] = 14303, + [SMALL_STATE(450)] = 14322, + [SMALL_STATE(451)] = 14341, + [SMALL_STATE(452)] = 14360, + [SMALL_STATE(453)] = 14379, + [SMALL_STATE(454)] = 14398, + [SMALL_STATE(455)] = 14417, + [SMALL_STATE(456)] = 14436, + [SMALL_STATE(457)] = 14455, + [SMALL_STATE(458)] = 14464, + [SMALL_STATE(459)] = 14483, + [SMALL_STATE(460)] = 14492, + [SMALL_STATE(461)] = 14511, + [SMALL_STATE(462)] = 14520, + [SMALL_STATE(463)] = 14529, + [SMALL_STATE(464)] = 14538, + [SMALL_STATE(465)] = 14557, + [SMALL_STATE(466)] = 14566, + [SMALL_STATE(467)] = 14585, + [SMALL_STATE(468)] = 14594, + [SMALL_STATE(469)] = 14613, + [SMALL_STATE(470)] = 14622, + [SMALL_STATE(471)] = 14631, + [SMALL_STATE(472)] = 14640, + [SMALL_STATE(473)] = 14649, + [SMALL_STATE(474)] = 14668, + [SMALL_STATE(475)] = 14677, + [SMALL_STATE(476)] = 14686, + [SMALL_STATE(477)] = 14705, + [SMALL_STATE(478)] = 14714, + [SMALL_STATE(479)] = 14733, + [SMALL_STATE(480)] = 14752, + [SMALL_STATE(481)] = 14771, + [SMALL_STATE(482)] = 14790, + [SMALL_STATE(483)] = 14809, + [SMALL_STATE(484)] = 14818, + [SMALL_STATE(485)] = 14837, + [SMALL_STATE(486)] = 14856, + [SMALL_STATE(487)] = 14875, + [SMALL_STATE(488)] = 14894, + [SMALL_STATE(489)] = 14913, + [SMALL_STATE(490)] = 14922, + [SMALL_STATE(491)] = 14930, + [SMALL_STATE(492)] = 14942, + [SMALL_STATE(493)] = 14950, + [SMALL_STATE(494)] = 14958, + [SMALL_STATE(495)] = 14966, + [SMALL_STATE(496)] = 14974, + [SMALL_STATE(497)] = 14988, + [SMALL_STATE(498)] = 14996, + [SMALL_STATE(499)] = 15010, + [SMALL_STATE(500)] = 15024, + [SMALL_STATE(501)] = 15032, + [SMALL_STATE(502)] = 15045, + [SMALL_STATE(503)] = 15056, + [SMALL_STATE(504)] = 15069, + [SMALL_STATE(505)] = 15080, + [SMALL_STATE(506)] = 15091, + [SMALL_STATE(507)] = 15102, + [SMALL_STATE(508)] = 15113, + [SMALL_STATE(509)] = 15124, + [SMALL_STATE(510)] = 15135, + [SMALL_STATE(511)] = 15148, + [SMALL_STATE(512)] = 15161, + [SMALL_STATE(513)] = 15174, + [SMALL_STATE(514)] = 15187, + [SMALL_STATE(515)] = 15200, + [SMALL_STATE(516)] = 15213, + [SMALL_STATE(517)] = 15226, + [SMALL_STATE(518)] = 15239, + [SMALL_STATE(519)] = 15252, + [SMALL_STATE(520)] = 15265, + [SMALL_STATE(521)] = 15278, + [SMALL_STATE(522)] = 15291, + [SMALL_STATE(523)] = 15304, + [SMALL_STATE(524)] = 15317, + [SMALL_STATE(525)] = 15330, + [SMALL_STATE(526)] = 15343, + [SMALL_STATE(527)] = 15356, + [SMALL_STATE(528)] = 15369, + [SMALL_STATE(529)] = 15382, + [SMALL_STATE(530)] = 15395, + [SMALL_STATE(531)] = 15408, + [SMALL_STATE(532)] = 15421, + [SMALL_STATE(533)] = 15434, + [SMALL_STATE(534)] = 15447, + [SMALL_STATE(535)] = 15460, + [SMALL_STATE(536)] = 15473, + [SMALL_STATE(537)] = 15486, + [SMALL_STATE(538)] = 15499, + [SMALL_STATE(539)] = 15512, + [SMALL_STATE(540)] = 15525, + [SMALL_STATE(541)] = 15538, + [SMALL_STATE(542)] = 15551, + [SMALL_STATE(543)] = 15564, + [SMALL_STATE(544)] = 15577, + [SMALL_STATE(545)] = 15590, + [SMALL_STATE(546)] = 15603, + [SMALL_STATE(547)] = 15616, + [SMALL_STATE(548)] = 15629, + [SMALL_STATE(549)] = 15642, + [SMALL_STATE(550)] = 15655, + [SMALL_STATE(551)] = 15668, + [SMALL_STATE(552)] = 15681, + [SMALL_STATE(553)] = 15694, + [SMALL_STATE(554)] = 15707, + [SMALL_STATE(555)] = 15720, + [SMALL_STATE(556)] = 15733, + [SMALL_STATE(557)] = 15746, + [SMALL_STATE(558)] = 15759, + [SMALL_STATE(559)] = 15772, + [SMALL_STATE(560)] = 15785, + [SMALL_STATE(561)] = 15798, + [SMALL_STATE(562)] = 15811, + [SMALL_STATE(563)] = 15824, + [SMALL_STATE(564)] = 15837, + [SMALL_STATE(565)] = 15850, + [SMALL_STATE(566)] = 15861, + [SMALL_STATE(567)] = 15874, + [SMALL_STATE(568)] = 15887, + [SMALL_STATE(569)] = 15900, + [SMALL_STATE(570)] = 15913, + [SMALL_STATE(571)] = 15926, + [SMALL_STATE(572)] = 15939, + [SMALL_STATE(573)] = 15952, + [SMALL_STATE(574)] = 15965, + [SMALL_STATE(575)] = 15978, + [SMALL_STATE(576)] = 15991, + [SMALL_STATE(577)] = 16004, + [SMALL_STATE(578)] = 16017, + [SMALL_STATE(579)] = 16030, + [SMALL_STATE(580)] = 16043, + [SMALL_STATE(581)] = 16056, + [SMALL_STATE(582)] = 16069, + [SMALL_STATE(583)] = 16082, + [SMALL_STATE(584)] = 16095, + [SMALL_STATE(585)] = 16108, + [SMALL_STATE(586)] = 16121, + [SMALL_STATE(587)] = 16134, + [SMALL_STATE(588)] = 16147, + [SMALL_STATE(589)] = 16160, + [SMALL_STATE(590)] = 16173, + [SMALL_STATE(591)] = 16186, + [SMALL_STATE(592)] = 16199, + [SMALL_STATE(593)] = 16212, + [SMALL_STATE(594)] = 16225, + [SMALL_STATE(595)] = 16238, + [SMALL_STATE(596)] = 16251, + [SMALL_STATE(597)] = 16260, + [SMALL_STATE(598)] = 16273, + [SMALL_STATE(599)] = 16286, + [SMALL_STATE(600)] = 16299, + [SMALL_STATE(601)] = 16312, + [SMALL_STATE(602)] = 16321, + [SMALL_STATE(603)] = 16334, + [SMALL_STATE(604)] = 16343, + [SMALL_STATE(605)] = 16356, + [SMALL_STATE(606)] = 16369, + [SMALL_STATE(607)] = 16378, + [SMALL_STATE(608)] = 16387, + [SMALL_STATE(609)] = 16400, + [SMALL_STATE(610)] = 16409, + [SMALL_STATE(611)] = 16418, + [SMALL_STATE(612)] = 16427, + [SMALL_STATE(613)] = 16440, + [SMALL_STATE(614)] = 16449, + [SMALL_STATE(615)] = 16458, + [SMALL_STATE(616)] = 16467, + [SMALL_STATE(617)] = 16480, + [SMALL_STATE(618)] = 16493, + [SMALL_STATE(619)] = 16502, + [SMALL_STATE(620)] = 16515, + [SMALL_STATE(621)] = 16528, + [SMALL_STATE(622)] = 16541, + [SMALL_STATE(623)] = 16547, + [SMALL_STATE(624)] = 16553, + [SMALL_STATE(625)] = 16559, + [SMALL_STATE(626)] = 16565, + [SMALL_STATE(627)] = 16571, + [SMALL_STATE(628)] = 16577, + [SMALL_STATE(629)] = 16585, + [SMALL_STATE(630)] = 16591, + [SMALL_STATE(631)] = 16599, + [SMALL_STATE(632)] = 16609, + [SMALL_STATE(633)] = 16619, + [SMALL_STATE(634)] = 16627, + [SMALL_STATE(635)] = 16633, + [SMALL_STATE(636)] = 16639, + [SMALL_STATE(637)] = 16645, + [SMALL_STATE(638)] = 16651, + [SMALL_STATE(639)] = 16657, + [SMALL_STATE(640)] = 16663, + [SMALL_STATE(641)] = 16669, + [SMALL_STATE(642)] = 16675, + [SMALL_STATE(643)] = 16681, + [SMALL_STATE(644)] = 16687, + [SMALL_STATE(645)] = 16693, + [SMALL_STATE(646)] = 16699, + [SMALL_STATE(647)] = 16705, + [SMALL_STATE(648)] = 16711, + [SMALL_STATE(649)] = 16717, + [SMALL_STATE(650)] = 16723, + [SMALL_STATE(651)] = 16729, + [SMALL_STATE(652)] = 16735, + [SMALL_STATE(653)] = 16741, + [SMALL_STATE(654)] = 16747, + [SMALL_STATE(655)] = 16753, + [SMALL_STATE(656)] = 16759, + [SMALL_STATE(657)] = 16769, + [SMALL_STATE(658)] = 16779, + [SMALL_STATE(659)] = 16787, + [SMALL_STATE(660)] = 16795, + [SMALL_STATE(661)] = 16805, + [SMALL_STATE(662)] = 16811, + [SMALL_STATE(663)] = 16817, + [SMALL_STATE(664)] = 16827, + [SMALL_STATE(665)] = 16835, + [SMALL_STATE(666)] = 16843, + [SMALL_STATE(667)] = 16853, + [SMALL_STATE(668)] = 16859, + [SMALL_STATE(669)] = 16865, + [SMALL_STATE(670)] = 16871, + [SMALL_STATE(671)] = 16877, + [SMALL_STATE(672)] = 16883, + [SMALL_STATE(673)] = 16893, + [SMALL_STATE(674)] = 16903, + [SMALL_STATE(675)] = 16913, + [SMALL_STATE(676)] = 16923, + [SMALL_STATE(677)] = 16929, + [SMALL_STATE(678)] = 16935, + [SMALL_STATE(679)] = 16943, + [SMALL_STATE(680)] = 16953, + [SMALL_STATE(681)] = 16959, + [SMALL_STATE(682)] = 16969, + [SMALL_STATE(683)] = 16975, + [SMALL_STATE(684)] = 16981, + [SMALL_STATE(685)] = 16987, + [SMALL_STATE(686)] = 16993, + [SMALL_STATE(687)] = 17003, + [SMALL_STATE(688)] = 17013, + [SMALL_STATE(689)] = 17019, + [SMALL_STATE(690)] = 17029, + [SMALL_STATE(691)] = 17039, + [SMALL_STATE(692)] = 17045, + [SMALL_STATE(693)] = 17051, + [SMALL_STATE(694)] = 17057, + [SMALL_STATE(695)] = 17063, + [SMALL_STATE(696)] = 17073, + [SMALL_STATE(697)] = 17081, + [SMALL_STATE(698)] = 17087, + [SMALL_STATE(699)] = 17093, + [SMALL_STATE(700)] = 17099, + [SMALL_STATE(701)] = 17107, + [SMALL_STATE(702)] = 17113, + [SMALL_STATE(703)] = 17119, + [SMALL_STATE(704)] = 17125, + [SMALL_STATE(705)] = 17131, + [SMALL_STATE(706)] = 17137, + [SMALL_STATE(707)] = 17143, + [SMALL_STATE(708)] = 17149, + [SMALL_STATE(709)] = 17155, + [SMALL_STATE(710)] = 17163, + [SMALL_STATE(711)] = 17169, + [SMALL_STATE(712)] = 17175, + [SMALL_STATE(713)] = 17181, + [SMALL_STATE(714)] = 17187, + [SMALL_STATE(715)] = 17193, + [SMALL_STATE(716)] = 17199, + [SMALL_STATE(717)] = 17207, + [SMALL_STATE(718)] = 17213, + [SMALL_STATE(719)] = 17219, + [SMALL_STATE(720)] = 17229, + [SMALL_STATE(721)] = 17239, + [SMALL_STATE(722)] = 17247, + [SMALL_STATE(723)] = 17257, + [SMALL_STATE(724)] = 17267, + [SMALL_STATE(725)] = 17277, + [SMALL_STATE(726)] = 17285, + [SMALL_STATE(727)] = 17291, + [SMALL_STATE(728)] = 17297, + [SMALL_STATE(729)] = 17304, + [SMALL_STATE(730)] = 17309, + [SMALL_STATE(731)] = 17316, + [SMALL_STATE(732)] = 17321, + [SMALL_STATE(733)] = 17326, + [SMALL_STATE(734)] = 17331, + [SMALL_STATE(735)] = 17336, + [SMALL_STATE(736)] = 17341, + [SMALL_STATE(737)] = 17346, + [SMALL_STATE(738)] = 17351, + [SMALL_STATE(739)] = 17356, + [SMALL_STATE(740)] = 17361, + [SMALL_STATE(741)] = 17366, + [SMALL_STATE(742)] = 17371, + [SMALL_STATE(743)] = 17376, + [SMALL_STATE(744)] = 17383, + [SMALL_STATE(745)] = 17388, + [SMALL_STATE(746)] = 17395, + [SMALL_STATE(747)] = 17400, + [SMALL_STATE(748)] = 17405, + [SMALL_STATE(749)] = 17412, + [SMALL_STATE(750)] = 17419, + [SMALL_STATE(751)] = 17426, + [SMALL_STATE(752)] = 17431, + [SMALL_STATE(753)] = 17438, + [SMALL_STATE(754)] = 17443, + [SMALL_STATE(755)] = 17450, + [SMALL_STATE(756)] = 17455, + [SMALL_STATE(757)] = 17460, + [SMALL_STATE(758)] = 17465, + [SMALL_STATE(759)] = 17472, + [SMALL_STATE(760)] = 17479, + [SMALL_STATE(761)] = 17484, + [SMALL_STATE(762)] = 17489, + [SMALL_STATE(763)] = 17494, + [SMALL_STATE(764)] = 17499, + [SMALL_STATE(765)] = 17504, + [SMALL_STATE(766)] = 17509, + [SMALL_STATE(767)] = 17514, + [SMALL_STATE(768)] = 17519, + [SMALL_STATE(769)] = 17524, + [SMALL_STATE(770)] = 17529, + [SMALL_STATE(771)] = 17534, + [SMALL_STATE(772)] = 17539, + [SMALL_STATE(773)] = 17544, + [SMALL_STATE(774)] = 17549, + [SMALL_STATE(775)] = 17554, + [SMALL_STATE(776)] = 17559, + [SMALL_STATE(777)] = 17566, + [SMALL_STATE(778)] = 17571, + [SMALL_STATE(779)] = 17578, + [SMALL_STATE(780)] = 17583, + [SMALL_STATE(781)] = 17588, + [SMALL_STATE(782)] = 17595, + [SMALL_STATE(783)] = 17602, + [SMALL_STATE(784)] = 17609, + [SMALL_STATE(785)] = 17616, + [SMALL_STATE(786)] = 17621, + [SMALL_STATE(787)] = 17626, + [SMALL_STATE(788)] = 17631, + [SMALL_STATE(789)] = 17636, + [SMALL_STATE(790)] = 17643, + [SMALL_STATE(791)] = 17650, + [SMALL_STATE(792)] = 17657, + [SMALL_STATE(793)] = 17662, + [SMALL_STATE(794)] = 17667, + [SMALL_STATE(795)] = 17674, + [SMALL_STATE(796)] = 17679, + [SMALL_STATE(797)] = 17684, + [SMALL_STATE(798)] = 17689, + [SMALL_STATE(799)] = 17694, + [SMALL_STATE(800)] = 17699, + [SMALL_STATE(801)] = 17706, + [SMALL_STATE(802)] = 17711, + [SMALL_STATE(803)] = 17716, + [SMALL_STATE(804)] = 17721, + [SMALL_STATE(805)] = 17726, + [SMALL_STATE(806)] = 17733, + [SMALL_STATE(807)] = 17740, + [SMALL_STATE(808)] = 17747, + [SMALL_STATE(809)] = 17752, + [SMALL_STATE(810)] = 17759, + [SMALL_STATE(811)] = 17764, + [SMALL_STATE(812)] = 17771, + [SMALL_STATE(813)] = 17776, + [SMALL_STATE(814)] = 17781, + [SMALL_STATE(815)] = 17786, + [SMALL_STATE(816)] = 17791, + [SMALL_STATE(817)] = 17796, + [SMALL_STATE(818)] = 17803, + [SMALL_STATE(819)] = 17808, + [SMALL_STATE(820)] = 17813, + [SMALL_STATE(821)] = 17818, + [SMALL_STATE(822)] = 17823, + [SMALL_STATE(823)] = 17828, + [SMALL_STATE(824)] = 17835, + [SMALL_STATE(825)] = 17840, + [SMALL_STATE(826)] = 17847, + [SMALL_STATE(827)] = 17854, + [SMALL_STATE(828)] = 17859, + [SMALL_STATE(829)] = 17864, + [SMALL_STATE(830)] = 17871, + [SMALL_STATE(831)] = 17878, + [SMALL_STATE(832)] = 17885, + [SMALL_STATE(833)] = 17890, + [SMALL_STATE(834)] = 17895, + [SMALL_STATE(835)] = 17900, + [SMALL_STATE(836)] = 17905, + [SMALL_STATE(837)] = 17910, + [SMALL_STATE(838)] = 17915, + [SMALL_STATE(839)] = 17920, + [SMALL_STATE(840)] = 17925, + [SMALL_STATE(841)] = 17930, + [SMALL_STATE(842)] = 17935, + [SMALL_STATE(843)] = 17940, + [SMALL_STATE(844)] = 17945, + [SMALL_STATE(845)] = 17950, + [SMALL_STATE(846)] = 17955, + [SMALL_STATE(847)] = 17960, + [SMALL_STATE(848)] = 17965, + [SMALL_STATE(849)] = 17970, + [SMALL_STATE(850)] = 17975, + [SMALL_STATE(851)] = 17980, + [SMALL_STATE(852)] = 17985, + [SMALL_STATE(853)] = 17990, + [SMALL_STATE(854)] = 17995, + [SMALL_STATE(855)] = 18000, + [SMALL_STATE(856)] = 18005, + [SMALL_STATE(857)] = 18010, + [SMALL_STATE(858)] = 18017, + [SMALL_STATE(859)] = 18024, + [SMALL_STATE(860)] = 18029, + [SMALL_STATE(861)] = 18034, + [SMALL_STATE(862)] = 18039, + [SMALL_STATE(863)] = 18046, + [SMALL_STATE(864)] = 18053, + [SMALL_STATE(865)] = 18060, + [SMALL_STATE(866)] = 18067, + [SMALL_STATE(867)] = 18072, + [SMALL_STATE(868)] = 18077, + [SMALL_STATE(869)] = 18084, + [SMALL_STATE(870)] = 18091, + [SMALL_STATE(871)] = 18096, + [SMALL_STATE(872)] = 18101, + [SMALL_STATE(873)] = 18106, + [SMALL_STATE(874)] = 18111, + [SMALL_STATE(875)] = 18118, + [SMALL_STATE(876)] = 18125, + [SMALL_STATE(877)] = 18130, + [SMALL_STATE(878)] = 18137, + [SMALL_STATE(879)] = 18144, + [SMALL_STATE(880)] = 18151, + [SMALL_STATE(881)] = 18158, + [SMALL_STATE(882)] = 18165, + [SMALL_STATE(883)] = 18172, + [SMALL_STATE(884)] = 18177, + [SMALL_STATE(885)] = 18182, + [SMALL_STATE(886)] = 18189, + [SMALL_STATE(887)] = 18196, + [SMALL_STATE(888)] = 18201, + [SMALL_STATE(889)] = 18206, + [SMALL_STATE(890)] = 18213, + [SMALL_STATE(891)] = 18220, + [SMALL_STATE(892)] = 18225, + [SMALL_STATE(893)] = 18230, + [SMALL_STATE(894)] = 18235, + [SMALL_STATE(895)] = 18242, + [SMALL_STATE(896)] = 18249, + [SMALL_STATE(897)] = 18256, + [SMALL_STATE(898)] = 18263, + [SMALL_STATE(899)] = 18268, + [SMALL_STATE(900)] = 18273, + [SMALL_STATE(901)] = 18280, + [SMALL_STATE(902)] = 18287, + [SMALL_STATE(903)] = 18292, + [SMALL_STATE(904)] = 18297, + [SMALL_STATE(905)] = 18302, + [SMALL_STATE(906)] = 18309, + [SMALL_STATE(907)] = 18316, + [SMALL_STATE(908)] = 18321, + [SMALL_STATE(909)] = 18326, + [SMALL_STATE(910)] = 18331, + [SMALL_STATE(911)] = 18338, + [SMALL_STATE(912)] = 18345, + [SMALL_STATE(913)] = 18352, + [SMALL_STATE(914)] = 18359, + [SMALL_STATE(915)] = 18364, + [SMALL_STATE(916)] = 18369, + [SMALL_STATE(917)] = 18376, + [SMALL_STATE(918)] = 18383, + [SMALL_STATE(919)] = 18388, + [SMALL_STATE(920)] = 18393, + [SMALL_STATE(921)] = 18398, + [SMALL_STATE(922)] = 18403, + [SMALL_STATE(923)] = 18408, + [SMALL_STATE(924)] = 18413, + [SMALL_STATE(925)] = 18418, + [SMALL_STATE(926)] = 18423, + [SMALL_STATE(927)] = 18430, + [SMALL_STATE(928)] = 18437, + [SMALL_STATE(929)] = 18444, + [SMALL_STATE(930)] = 18451, + [SMALL_STATE(931)] = 18456, + [SMALL_STATE(932)] = 18463, + [SMALL_STATE(933)] = 18468, + [SMALL_STATE(934)] = 18475, + [SMALL_STATE(935)] = 18480, + [SMALL_STATE(936)] = 18484, + [SMALL_STATE(937)] = 18488, + [SMALL_STATE(938)] = 18492, + [SMALL_STATE(939)] = 18496, + [SMALL_STATE(940)] = 18500, + [SMALL_STATE(941)] = 18504, + [SMALL_STATE(942)] = 18508, + [SMALL_STATE(943)] = 18512, + [SMALL_STATE(944)] = 18516, + [SMALL_STATE(945)] = 18520, + [SMALL_STATE(946)] = 18524, + [SMALL_STATE(947)] = 18528, + [SMALL_STATE(948)] = 18532, + [SMALL_STATE(949)] = 18536, + [SMALL_STATE(950)] = 18540, + [SMALL_STATE(951)] = 18544, + [SMALL_STATE(952)] = 18548, + [SMALL_STATE(953)] = 18552, + [SMALL_STATE(954)] = 18556, + [SMALL_STATE(955)] = 18560, + [SMALL_STATE(956)] = 18564, + [SMALL_STATE(957)] = 18568, + [SMALL_STATE(958)] = 18572, + [SMALL_STATE(959)] = 18576, + [SMALL_STATE(960)] = 18580, + [SMALL_STATE(961)] = 18584, + [SMALL_STATE(962)] = 18588, + [SMALL_STATE(963)] = 18592, + [SMALL_STATE(964)] = 18596, + [SMALL_STATE(965)] = 18600, + [SMALL_STATE(966)] = 18604, + [SMALL_STATE(967)] = 18608, + [SMALL_STATE(968)] = 18612, + [SMALL_STATE(969)] = 18616, + [SMALL_STATE(970)] = 18620, + [SMALL_STATE(971)] = 18624, + [SMALL_STATE(972)] = 18628, + [SMALL_STATE(973)] = 18632, + [SMALL_STATE(974)] = 18636, + [SMALL_STATE(975)] = 18640, + [SMALL_STATE(976)] = 18644, + [SMALL_STATE(977)] = 18648, + [SMALL_STATE(978)] = 18652, + [SMALL_STATE(979)] = 18656, + [SMALL_STATE(980)] = 18660, + [SMALL_STATE(981)] = 18664, + [SMALL_STATE(982)] = 18668, + [SMALL_STATE(983)] = 18672, + [SMALL_STATE(984)] = 18676, + [SMALL_STATE(985)] = 18680, + [SMALL_STATE(986)] = 18684, + [SMALL_STATE(987)] = 18688, + [SMALL_STATE(988)] = 18692, + [SMALL_STATE(989)] = 18696, + [SMALL_STATE(990)] = 18700, + [SMALL_STATE(991)] = 18704, + [SMALL_STATE(992)] = 18708, + [SMALL_STATE(993)] = 18712, + [SMALL_STATE(994)] = 18716, + [SMALL_STATE(995)] = 18720, + [SMALL_STATE(996)] = 18724, + [SMALL_STATE(997)] = 18728, + [SMALL_STATE(998)] = 18732, + [SMALL_STATE(999)] = 18736, + [SMALL_STATE(1000)] = 18740, + [SMALL_STATE(1001)] = 18744, + [SMALL_STATE(1002)] = 18748, + [SMALL_STATE(1003)] = 18752, + [SMALL_STATE(1004)] = 18756, + [SMALL_STATE(1005)] = 18760, + [SMALL_STATE(1006)] = 18764, + [SMALL_STATE(1007)] = 18768, + [SMALL_STATE(1008)] = 18772, + [SMALL_STATE(1009)] = 18776, + [SMALL_STATE(1010)] = 18780, + [SMALL_STATE(1011)] = 18784, + [SMALL_STATE(1012)] = 18788, + [SMALL_STATE(1013)] = 18792, + [SMALL_STATE(1014)] = 18796, + [SMALL_STATE(1015)] = 18800, + [SMALL_STATE(1016)] = 18804, + [SMALL_STATE(1017)] = 18808, + [SMALL_STATE(1018)] = 18812, + [SMALL_STATE(1019)] = 18816, + [SMALL_STATE(1020)] = 18820, + [SMALL_STATE(1021)] = 18824, + [SMALL_STATE(1022)] = 18828, + [SMALL_STATE(1023)] = 18832, + [SMALL_STATE(1024)] = 18836, + [SMALL_STATE(1025)] = 18840, + [SMALL_STATE(1026)] = 18844, + [SMALL_STATE(1027)] = 18848, + [SMALL_STATE(1028)] = 18852, + [SMALL_STATE(1029)] = 18856, + [SMALL_STATE(1030)] = 18860, + [SMALL_STATE(1031)] = 18864, + [SMALL_STATE(1032)] = 18868, + [SMALL_STATE(1033)] = 18872, + [SMALL_STATE(1034)] = 18876, + [SMALL_STATE(1035)] = 18880, + [SMALL_STATE(1036)] = 18884, + [SMALL_STATE(1037)] = 18888, + [SMALL_STATE(1038)] = 18892, + [SMALL_STATE(1039)] = 18896, + [SMALL_STATE(1040)] = 18900, + [SMALL_STATE(1041)] = 18904, + [SMALL_STATE(1042)] = 18908, + [SMALL_STATE(1043)] = 18912, + [SMALL_STATE(1044)] = 18916, + [SMALL_STATE(1045)] = 18920, + [SMALL_STATE(1046)] = 18924, + [SMALL_STATE(1047)] = 18928, + [SMALL_STATE(1048)] = 18932, + [SMALL_STATE(1049)] = 18936, + [SMALL_STATE(1050)] = 18940, + [SMALL_STATE(1051)] = 18944, + [SMALL_STATE(1052)] = 18948, + [SMALL_STATE(1053)] = 18952, + [SMALL_STATE(1054)] = 18956, + [SMALL_STATE(1055)] = 18960, + [SMALL_STATE(1056)] = 18964, + [SMALL_STATE(1057)] = 18968, + [SMALL_STATE(1058)] = 18972, + [SMALL_STATE(1059)] = 18976, + [SMALL_STATE(1060)] = 18980, + [SMALL_STATE(1061)] = 18984, + [SMALL_STATE(1062)] = 18988, + [SMALL_STATE(1063)] = 18992, + [SMALL_STATE(1064)] = 18996, + [SMALL_STATE(1065)] = 19000, + [SMALL_STATE(1066)] = 19004, + [SMALL_STATE(1067)] = 19008, + [SMALL_STATE(1068)] = 19012, + [SMALL_STATE(1069)] = 19016, + [SMALL_STATE(1070)] = 19020, + [SMALL_STATE(1071)] = 19024, + [SMALL_STATE(1072)] = 19028, + [SMALL_STATE(1073)] = 19032, + [SMALL_STATE(1074)] = 19036, + [SMALL_STATE(1075)] = 19040, + [SMALL_STATE(1076)] = 19044, + [SMALL_STATE(1077)] = 19048, + [SMALL_STATE(1078)] = 19052, + [SMALL_STATE(1079)] = 19056, + [SMALL_STATE(1080)] = 19060, + [SMALL_STATE(1081)] = 19064, + [SMALL_STATE(1082)] = 19068, + [SMALL_STATE(1083)] = 19072, + [SMALL_STATE(1084)] = 19076, + [SMALL_STATE(1085)] = 19080, + [SMALL_STATE(1086)] = 19084, + [SMALL_STATE(1087)] = 19088, + [SMALL_STATE(1088)] = 19092, + [SMALL_STATE(1089)] = 19096, + [SMALL_STATE(1090)] = 19100, + [SMALL_STATE(1091)] = 19104, + [SMALL_STATE(1092)] = 19108, + [SMALL_STATE(1093)] = 19112, + [SMALL_STATE(1094)] = 19116, + [SMALL_STATE(1095)] = 19120, + [SMALL_STATE(1096)] = 19124, + [SMALL_STATE(1097)] = 19128, + [SMALL_STATE(1098)] = 19132, + [SMALL_STATE(1099)] = 19136, + [SMALL_STATE(1100)] = 19140, + [SMALL_STATE(1101)] = 19144, + [SMALL_STATE(1102)] = 19148, + [SMALL_STATE(1103)] = 19152, + [SMALL_STATE(1104)] = 19156, + [SMALL_STATE(1105)] = 19160, + [SMALL_STATE(1106)] = 19164, + [SMALL_STATE(1107)] = 19168, + [SMALL_STATE(1108)] = 19172, + [SMALL_STATE(1109)] = 19176, + [SMALL_STATE(1110)] = 19180, + [SMALL_STATE(1111)] = 19184, + [SMALL_STATE(1112)] = 19188, + [SMALL_STATE(1113)] = 19192, + [SMALL_STATE(1114)] = 19196, + [SMALL_STATE(1115)] = 19200, + [SMALL_STATE(1116)] = 19204, + [SMALL_STATE(1117)] = 19208, + [SMALL_STATE(1118)] = 19212, + [SMALL_STATE(1119)] = 19216, + [SMALL_STATE(1120)] = 19220, + [SMALL_STATE(1121)] = 19224, + [SMALL_STATE(1122)] = 19228, + [SMALL_STATE(1123)] = 19232, + [SMALL_STATE(1124)] = 19236, + [SMALL_STATE(1125)] = 19240, + [SMALL_STATE(1126)] = 19244, + [SMALL_STATE(1127)] = 19248, + [SMALL_STATE(1128)] = 19252, + [SMALL_STATE(1129)] = 19256, + [SMALL_STATE(1130)] = 19260, + [SMALL_STATE(1131)] = 19264, + [SMALL_STATE(1132)] = 19268, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 0), - [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [3] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 0, 0, 0), + [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [87] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(313), - [90] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(289), - [93] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(721), - [96] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(273), - [99] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(355), - [102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), - [104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(233), - [107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(337), - [110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(716), - [113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1050), - [116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(36), - [119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(37), - [122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(30), - [125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(712), - [128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(305), - [131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(41), - [134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(43), - [137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(44), - [140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(47), - [143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(48), - [146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(49), - [149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(51), - [152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(50), - [155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(29), - [158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(46), - [161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(45), - [164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(40), - [167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(31), - [170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(32), - [173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(33), - [176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(61), - [179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(319), - [182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(257), - [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 1), - [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 2), - [195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(311), - [198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(303), - [201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(269), - [204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(207), - [207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1094), - [210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(55), - [213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(190), - [216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), - [218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), - [222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(313), - [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(289), - [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(721), - [257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(273), - [260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(355), - [263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), - [265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(230), - [268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(337), - [271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(716), - [274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(1050), - [277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(36), - [280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(37), - [283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(30), - [286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(712), - [289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(305), - [292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(41), - [295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(43), - [298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(44), - [301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(47), - [304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(48), - [307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(49), - [310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(51), - [313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(50), - [316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(29), - [319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(46), - [322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(45), - [325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(40), - [328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(31), - [331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(32), - [334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(33), - [337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(61), - [340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(60), - [343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(257), - [346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_footnote_content, 1), - [350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(309), - [361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(300), - [364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(271), - [367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(167), - [370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(331), - [373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(1057), - [376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(59), - [379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(57), - [382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2), SHIFT_REPEAT(151), - [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [71] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 2, 0, 0), + [73] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 1, 0, 0), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [91] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), + [93] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(317), + [96] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(301), + [99] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(743), + [102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(275), + [105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(358), + [108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(132), + [111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(328), + [114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(877), + [117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(936), + [120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(51), + [123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(39), + [126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(44), + [129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(633), + [132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(290), + [135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(45), + [138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(46), + [141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(48), + [144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(49), + [147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(50), + [150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(30), + [153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(35), + [156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(36), + [159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(37), + [162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(38), + [165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(29), + [168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(40), + [171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(41), + [174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(42), + [177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(43), + [180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(57), + [183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(324), + [186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(133), + [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(315), + [194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(307), + [197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(278), + [200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(154), + [203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(1086), + [206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(62), + [209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(161), + [212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), + [224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(315), + [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(307), + [248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(743), + [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(278), + [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(358), + [257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), + [259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(266), + [262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(328), + [265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(877), + [268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(1086), + [271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(51), + [274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(39), + [277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(44), + [280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(633), + [283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(290), + [286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(45), + [289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(46), + [292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(48), + [295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(49), + [298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(50), + [301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(30), + [304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(35), + [307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(36), + [310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(37), + [313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(38), + [316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(29), + [319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(40), + [322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(41), + [325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(42), + [328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(43), + [331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(62), + [334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(59), + [337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(161), + [340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_footnote_content, 1, 0, 0), + [342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(316), + [345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(309), + [348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(279), + [351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(159), + [354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(349), + [357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(1093), + [360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(55), + [363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(56), + [366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(222), + [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 1, .production_id = 1), - [445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 1, .production_id = 1), - [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), - [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), - [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 1), - [469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 1), SHIFT_REPEAT(319), - [472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 1), - [474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), - [476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 1), - [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), - [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), - [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_table_repeat1, 2), - [498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(347), - [501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2), - [503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(887), - [506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(336), - [509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(338), - [512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_content, 1), - [514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_content, 1), - [516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__table_content, 1), SHIFT(930), - [519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__table_content, 1), SHIFT(887), - [522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__table_content, 1), SHIFT(1022), - [525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__table_content, 1), SHIFT(913), - [528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 2), - [530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 2), - [532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 4), - [534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 4), - [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 3), - [540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 3), - [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_separator, 4), - [546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_separator, 4), - [548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 4), - [550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 4), - [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_or_two_newlines, 1), - [560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_or_two_newlines, 1), - [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_row, 6), - [566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_row, 6), - [568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_row, 4), - [570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_row, 4), - [572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 4, .production_id = 9), - [574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 4, .production_id = 9), - [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_separator, 6), - [580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_separator, 6), - [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_content, 2, .production_id = 2), - [588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_content, 2, .production_id = 2), - [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 5), - [594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 5), - [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heading, 3), - [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heading, 3), - [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 5, .production_id = 10), - [610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 5, .production_id = 10), - [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 6, .production_id = 12), - [616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 6, .production_id = 12), - [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_separator, 5), - [628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_separator, 5), - [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_row, 5), - [636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_row, 5), - [638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 6), - [640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 6), - [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 5, .production_id = 9), - [646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 5, .production_id = 9), - [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_alpha_paren, 2), - [670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_alpha_paren, 2), - [672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 2), - [674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 2), - [676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph, 2, .production_id = 3), - [678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__paragraph, 2, .production_id = 3), - [680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 6, .production_id = 9), - [682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 6, .production_id = 9), - [684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 6), - [686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 6), - [688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 7), - [690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 7), - [692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_dash, 2), - [694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_dash, 2), - [696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 7, .production_id = 13), - [698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 7, .production_id = 13), - [700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 7, .production_id = 9), - [702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 7, .production_id = 9), - [704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_plus, 2), - [706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_plus, 2), - [708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 8), - [710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 8), - [712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 8, .production_id = 14), - [714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 8, .production_id = 14), - [716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_star, 2), - [718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_star, 2), - [720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_footnote, 6), - [722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_footnote, 6), - [724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_task, 2), - [726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_task, 2), - [728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 8), - [730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 8), - [732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_or_two_newlines, 2), - [734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_or_two_newlines, 2), - [736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_definition, 2), - [738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_definition, 2), - [740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_decimal_period, 2), - [742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_decimal_period, 2), - [744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_thematic_break, 1), - [746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_thematic_break, 1), - [748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_decimal_paren, 2), - [750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_decimal_paren, 2), - [752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 1), - [754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 1), - [756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_decimal_parens, 2), - [758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_decimal_parens, 2), - [760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_alpha_period, 2), - [762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_alpha_period, 2), - [764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_caption, 3, .production_id = 7), - [766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_caption, 3, .production_id = 7), - [768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_alpha_paren, 2), - [770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_alpha_paren, 2), - [772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_alpha_parens, 2), - [774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_alpha_parens, 2), - [776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_alpha_period, 2), - [778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_alpha_period, 2), - [780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 5), - [782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 5), - [784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_alpha_parens, 2), - [786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_alpha_parens, 2), - [788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 1), - [790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 1), - [792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_roman_period, 2), - [794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_roman_period, 2), - [796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_attribute, 4, .production_id = 8), - [798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_attribute, 4, .production_id = 8), - [800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_roman_paren, 2), - [802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_roman_paren, 2), - [804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_roman_parens, 2), - [806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_roman_parens, 2), - [808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 3, .production_id = 5), - [810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 3, .production_id = 5), - [812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_roman_period, 2), - [814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_roman_period, 2), - [816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_roman_paren, 2), - [818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_roman_paren, 2), - [820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_roman_parens, 2), - [822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_roman_parens, 2), - [824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heading, 4), - [826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heading, 4), - [828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_with_heading, 2), - [830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_with_heading, 2), - [832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 3), - [834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 3), - [836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frontmatter, 6), - [838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_frontmatter, 6), - [840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_quote, 3), - [842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_quote, 3), - [844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 1), - [846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 1), - [848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_attribute, 3), - [850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_attribute, 3), - [852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frontmatter, 7), - [854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_frontmatter, 7), - [856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), - [858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), - [860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(268), - [863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_task, 3), - [865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_task, 3), - [867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), - [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), - [871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(871), - [874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(434), - [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(540), - [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), - [884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), - [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), - [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), - [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), - [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), - [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), - [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), - [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), - [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), - [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), - [932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(376), - [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), - [937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(832), - [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), - [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(314), - [951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), - [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 2), SHIFT_REPEAT(360), - [958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 2), - [960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 2), SHIFT_REPEAT(797), - [963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_caption_repeat1, 2), - [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), - [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), - [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), - [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), - [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), - [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), - [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), - [983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), - [985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_quote_prefix, 1), - [987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_quote_prefix, 1), - [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), - [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), - [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), - [1003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(319), - [1006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(361), - [1009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, .dynamic_precedence = -1000), SHIFT(775), - [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), - [1014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), - [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [1018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [1020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [1022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [1024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [1026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [1028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [1030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [1034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [1036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [1038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [1040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [1042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [1044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [1046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(354), - [1049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(720), - [1052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2), - [1054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), - [1056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline, 1), - [1058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(356), - [1061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(797), - [1064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [1066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [1068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [1070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(359), - [1073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), - [1075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(775), - [1078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), - [1080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), - [1082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline, 1), - [1084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), - [1086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 2, .dynamic_precedence = -1000), - [1088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 2, .dynamic_precedence = -1000), - [1090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [1094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [1096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [1098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [1100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [1102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 1), - [1104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_caption_repeat1, 1), - [1106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_line, 2), - [1108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_line, 2), - [1110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [1112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [1114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [1116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [1118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [1120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(381), - [1123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(320), - [1126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(374), - [1129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2), SHIFT_REPEAT(832), - [1132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2), - [1134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2), SHIFT_REPEAT(871), - [1137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2), SHIFT_REPEAT(434), - [1140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2), SHIFT_REPEAT(433), - [1143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2), SHIFT_REPEAT(540), - [1146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2), SHIFT_REPEAT(933), - [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), - [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [1153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(323), - [1156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__table_content, 1), SHIFT(957), - [1159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__table_content, 1), SHIFT(979), - [1162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [1164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [1170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [1176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [1178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [1180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [1184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [1188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [1192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [1194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [1196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [1198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [1200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [1202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [1204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [1206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [1208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 2), - [1210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 2), SHIFT_REPEAT(712), - [1213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 2), SHIFT_REPEAT(824), - [1216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [1218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [1220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [1222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [1224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [1226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [1228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2), - [1234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2), SHIFT_REPEAT(37), - [1237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2), SHIFT_REPEAT(827), - [1240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2), - [1242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2), SHIFT_REPEAT(30), - [1245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2), SHIFT_REPEAT(886), - [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 2), - [1250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 2), SHIFT_REPEAT(36), - [1253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 2), SHIFT_REPEAT(750), - [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [1266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code, 1), - [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [1274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_repeat1, 2), SHIFT_REPEAT(1045), - [1277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_code_repeat1, 2), - [1279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_repeat1, 2), SHIFT_REPEAT(794), - [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [1292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [1294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [1296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 1), - [1304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1), - [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1), - [1332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value, 3), - [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_name, 1), - [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, .production_id = 4), - [1376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_no_newline, 2), - [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [1384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 2), SHIFT_REPEAT(52), - [1387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 2), - [1389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 2), SHIFT_REPEAT(820), - [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 3), - [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_no_newline, 3, .production_id = 7), - [1396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 2), - [1398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 2), SHIFT_REPEAT(268), - [1401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_quote_content, 2), - [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [1405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_quote_content, 1), - [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), - [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [1481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frontmatter_content, 1), - [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), - [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), - [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [1519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_definition_repeat1, 2), - [1521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_definition_repeat1, 2), SHIFT_REPEAT(305), - [1524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_period_repeat1, 2), - [1526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_decimal_period_repeat1, 2), SHIFT_REPEAT(41), - [1529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_paren_repeat1, 2), - [1531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_decimal_paren_repeat1, 2), SHIFT_REPEAT(49), - [1534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_parens_repeat1, 2), - [1536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_decimal_parens_repeat1, 2), SHIFT_REPEAT(45), - [1539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_period_repeat1, 2), - [1541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_period_repeat1, 2), SHIFT_REPEAT(43), - [1544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_paren_repeat1, 2), - [1546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_paren_repeat1, 2), SHIFT_REPEAT(51), - [1549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_parens_repeat1, 2), - [1551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_parens_repeat1, 2), SHIFT_REPEAT(40), - [1554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_period_repeat1, 2), - [1556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_period_repeat1, 2), SHIFT_REPEAT(44), - [1559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_paren_repeat1, 2), - [1561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_paren_repeat1, 2), SHIFT_REPEAT(50), - [1564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_parens_repeat1, 2), - [1566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_parens_repeat1, 2), SHIFT_REPEAT(31), - [1569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_period_repeat1, 2), - [1571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_period_repeat1, 2), SHIFT_REPEAT(47), - [1574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_paren_repeat1, 2), - [1576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_paren_repeat1, 2), SHIFT_REPEAT(29), - [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [1581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_parens_repeat1, 2), - [1583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_parens_repeat1, 2), SHIFT_REPEAT(32), - [1586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [1598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [1604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_no_newline_repeat1, 2), - [1606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__comment_no_newline_repeat1, 2), SHIFT_REPEAT(664), - [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), - [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [1661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_frontmatter_content_repeat1, 2), SHIFT_REPEAT(1020), - [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_frontmatter_content_repeat1, 2), - [1666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [1670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [1672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_parens_repeat1, 2), - [1674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_parens_repeat1, 2), SHIFT_REPEAT(33), - [1677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_paren_repeat1, 2), - [1679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_paren_repeat1, 2), SHIFT_REPEAT(46), - [1682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_period_repeat1, 2), - [1684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_period_repeat1, 2), SHIFT_REPEAT(48), - [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [1711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(886), - [1714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heading_content, 2), - [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [1722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 3), - [1724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_item_content, 2), - [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [1728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(827), - [1731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(824), - [1734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line, 2), - [1736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(820), - [1739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_no_newline_repeat1, 1), - [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [1745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dash, 3), - [1747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 3), - [1749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 3), - [1751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_task, 3), - [1753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(794), - [1756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(750), - [1759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_task, 2), - [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [1765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 2), - [1767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 2), - [1769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dash, 2), - [1771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heading_content, 1), - [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [1775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_item_content, 3), - [1777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__paragraph_content_repeat1, 2), - [1779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__paragraph_content_repeat1, 2), SHIFT_REPEAT(315), - [1782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2), SHIFT_REPEAT(887), - [1785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__heading_content_repeat1, 2), - [1787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__heading_content_repeat1, 2), SHIFT_REPEAT(352), - [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__paragraph_content_repeat1, 3), - [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [1818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div_marker_begin, 1), - [1820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_separator_repeat1, 2), SHIFT_REPEAT(939), - [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [1829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1), SHIFT(363), - [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_definition, 4), - [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [1852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [1854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [1858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [1860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_row_repeat1, 2), SHIFT_REPEAT(353), - [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [1865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_content, 3), - [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_content, 4), - [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_alpha_period, 2), - [1933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_alpha_period, 2), - [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [1939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_definition, 5, .production_id = 11), - [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [1943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_roman_period, 2), - [1945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_roman_period, 2), - [1947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_decimal_paren, 2), - [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [1953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_alpha_paren, 2), - [1955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_alpha_paren, 2), - [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [1959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_roman_paren, 2), - [1961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_roman_paren, 2), - [1963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_decimal_parens, 2), - [1965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_alpha_parens, 2), - [1967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_alpha_parens, 2), - [1969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_roman_parens, 2), - [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [1975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_roman_parens, 2), - [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [1985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_decimal_period, 2), - [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_content, 2), - [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [2053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key, 1), - [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [2061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_cell, 1), - [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [2065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_label, 1), - [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [2109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div_marker_begin, 3), - [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [2197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_label, 1), - [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [2293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_checked, 3), - [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [2303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unchecked, 3), - [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [2323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block_info, 2, .production_id = 6), - [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [2327] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [2361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_separator_repeat1, 2), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [2365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_row_repeat1, 2), + [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 1, 0, 1), + [441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 1, 0, 1), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), + [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 1, 0, 0), + [469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 1, 0, 0), SHIFT_REPEAT(324), + [472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 1, 0, 0), + [474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 1, 0, 0), + [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), + [498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(351), + [501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), + [503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(871), + [506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(355), + [509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(326), + [512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_content, 1, 0, 0), + [514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__table_content, 1, 0, 0), SHIFT(1058), + [517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_content, 1, 0, 0), + [519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__table_content, 1, 0, 0), SHIFT(871), + [522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__table_content, 1, 0, 0), SHIFT(1037), + [525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__table_content, 1, 0, 0), SHIFT(1052), + [528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 2, 0, 0), + [530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 2, 0, 0), + [532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 4, 0, 0), + [534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 4, 0, 0), + [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 4, 0, 22), + [540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 4, 0, 22), + [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 5, 0, 24), + [546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 5, 0, 24), + [548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 5, 0, 25), + [552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 5, 0, 25), + [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 5, 0, 26), + [558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 5, 0, 26), + [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_separator, 5, 0, 0), + [564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_separator, 5, 0, 0), + [566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_row, 5, 0, 0), + [568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_row, 5, 0, 0), + [570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 5, 0, 22), + [572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 5, 0, 22), + [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 6, 0, 29), + [578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 6, 0, 29), + [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 6, 0, 30), + [584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 6, 0, 30), + [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_separator, 6, 0, 0), + [590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_separator, 6, 0, 0), + [592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_row, 6, 0, 0), + [594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_row, 6, 0, 0), + [596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_or_two_newlines, 1, 0, 0), + [598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_or_two_newlines, 1, 0, 0), + [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_content, 2, 0, 8), + [604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_content, 2, 0, 8), + [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 3, 0, 15), + [610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 3, 0, 15), + [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_separator, 4, 0, 0), + [618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_separator, 4, 0, 0), + [620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_row, 4, 0, 0), + [622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_row, 4, 0, 0), + [624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 4, 0, 15), + [626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 4, 0, 15), + [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heading, 3, 0, 4), + [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heading, 3, 0, 4), + [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 1, 0, 0), + [680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 1, 0, 0), + [682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_thematic_break, 1, 0, 0), + [684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_thematic_break, 1, 0, 0), + [686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 2, 0, 7), + [688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 2, 0, 7), + [690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_caption, 3, 0, 23), + [692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_caption, 3, 0, 23), + [694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 1, 0, 0), + [696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 1, 0, 0), + [698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 5, 0, 15), + [700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 5, 0, 15), + [702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frontmatter, 6, 0, 28), + [704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_frontmatter, 6, 0, 28), + [706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 6, 0, 0), + [708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 6, 0, 0), + [710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph, 2, 0, 9), + [712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__paragraph, 2, 0, 9), + [714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_footnote, 6, 0, 31), + [716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_footnote, 6, 0, 31), + [718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 6, 0, 15), + [720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 6, 0, 15), + [722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 6, 0, 22), + [724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 6, 0, 22), + [726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frontmatter, 7, 0, 32), + [728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_frontmatter, 7, 0, 32), + [730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 7, 0, 24), + [732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 7, 0, 24), + [734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 7, 0, 25), + [736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 7, 0, 25), + [738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 7, 0, 33), + [740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 7, 0, 33), + [742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 7, 0, 22), + [744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 7, 0, 22), + [746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 8, 0, 29), + [748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 8, 0, 29), + [750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 8, 0, 34), + [752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 8, 0, 34), + [754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_dash, 2, 0, 0), + [756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_dash, 2, 0, 0), + [758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 8, 0, 35), + [760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 8, 0, 35), + [762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_or_two_newlines, 2, 0, 0), + [764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_or_two_newlines, 2, 0, 0), + [766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_plus, 2, 0, 0), + [768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_plus, 2, 0, 0), + [770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_with_heading, 2, 0, 0), + [772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_with_heading, 2, 0, 0), + [774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 3, 0, 14), + [776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 3, 0, 14), + [778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 1, 0, 0), + [780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 1, 0, 0), + [782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_star, 2, 0, 0), + [784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_star, 2, 0, 0), + [786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_task, 2, 0, 0), + [788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_task, 2, 0, 0), + [790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_definition, 2, 0, 0), + [792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_definition, 2, 0, 0), + [794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_decimal_period, 2, 0, 0), + [796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_decimal_period, 2, 0, 0), + [798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_decimal_paren, 2, 0, 0), + [800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_decimal_paren, 2, 0, 0), + [802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_decimal_parens, 2, 0, 0), + [804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_decimal_parens, 2, 0, 0), + [806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_alpha_period, 2, 0, 0), + [808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_alpha_period, 2, 0, 0), + [810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_alpha_paren, 2, 0, 0), + [812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_alpha_paren, 2, 0, 0), + [814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_alpha_parens, 2, 0, 0), + [816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_alpha_parens, 2, 0, 0), + [818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_alpha_period, 2, 0, 0), + [820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_alpha_period, 2, 0, 0), + [822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_alpha_paren, 2, 0, 0), + [824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_alpha_paren, 2, 0, 0), + [826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_alpha_parens, 2, 0, 0), + [828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_alpha_parens, 2, 0, 0), + [830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_roman_period, 2, 0, 0), + [832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_roman_period, 2, 0, 0), + [834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_roman_paren, 2, 0, 0), + [836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_roman_paren, 2, 0, 0), + [838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_roman_parens, 2, 0, 0), + [840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_roman_parens, 2, 0, 0), + [842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_roman_period, 2, 0, 0), + [844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_roman_period, 2, 0, 0), + [846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_roman_paren, 2, 0, 0), + [848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_roman_paren, 2, 0, 0), + [850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_roman_parens, 2, 0, 0), + [852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_roman_parens, 2, 0, 0), + [854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_quote, 3, 0, 12), + [856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_quote, 3, 0, 12), + [858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_attribute, 3, 0, 0), + [860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_attribute, 3, 0, 0), + [862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 3, 0, 0), + [864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 3, 0, 0), + [866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heading, 4, 0, 4), + [868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heading, 4, 0, 4), + [870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_attribute, 4, 0, 21), + [872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_attribute, 4, 0, 21), + [874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), + [876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), + [878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(274), + [881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_task, 3, 0, 11), + [883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_task, 3, 0, 11), + [885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), + [887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), + [889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), SHIFT(789), + [892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), SHIFT(462), + [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), SHIFT(507), + [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), + [902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), + [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), + [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), + [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), + [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), + [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), + [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), + [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), + [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), + [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), + [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(314), + [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), SHIFT(372), + [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), + [976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), SHIFT(796), + [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), + [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), + [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), + [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), + [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), + [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), + [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), + [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), + [1001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 2, 0, 0), SHIFT_REPEAT(362), + [1004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 2, 0, 0), + [1006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 2, 0, 0), SHIFT_REPEAT(884), + [1009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_caption_repeat1, 2, 0, 0), + [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), + [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [1015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_quote_prefix, 1, 0, 0), + [1017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_quote_prefix, 1, 0, 0), + [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [1021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), SHIFT(367), + [1024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), SHIFT(774), + [1027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(324), + [1030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [1032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), + [1034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [1036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [1038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [1040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [1042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [1044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [1046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [1048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [1050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [1054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [1056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [1058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [1062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [1064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), + [1066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline, 1, 0, 0), + [1068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(360), + [1071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(741), + [1074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), + [1076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [1078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(363), + [1081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(884), + [1084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(366), + [1087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), + [1089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(774), + [1092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [1094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline, 1, 0, 0), + [1096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), + [1098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [1100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [1104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(384), + [1107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_line, 2, 0, 0), + [1109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_line, 2, 0, 0), + [1111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(371), + [1114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(796), + [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [1119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 2, -1000, 0), + [1121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 2, -1000, 0), + [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [1133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 1, 0, 0), + [1135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_caption_repeat1, 1, 0, 0), + [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [1139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(343), + [1142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [1144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [1146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [1148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [1150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [1152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [1154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), + [1156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(789), + [1159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(462), + [1162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(432), + [1165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(507), + [1168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(999), + [1171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(347), + [1174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__table_content, 1, 0, 0), SHIFT(993), + [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [1207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 2, 0, 0), + [1209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 2, 0, 0), SHIFT_REPEAT(633), + [1212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 2, 0, 0), SHIFT_REPEAT(834), + [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [1219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__table_content, 1, 0, 0), SHIFT(1015), + [1222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [1224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [1226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [1228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [1232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [1234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code, 1, 0, 0), + [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), + [1238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), SHIFT_REPEAT(44), + [1241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), SHIFT_REPEAT(780), + [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [1264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_repeat1, 2, 0, 0), SHIFT_REPEAT(992), + [1267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_code_repeat1, 2, 0, 0), + [1269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_repeat1, 2, 0, 0), SHIFT_REPEAT(845), + [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 2, 0, 0), + [1288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 2, 0, 0), SHIFT_REPEAT(51), + [1291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 2, 0, 0), SHIFT_REPEAT(779), + [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), + [1296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), SHIFT_REPEAT(39), + [1299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), SHIFT_REPEAT(828), + [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [1304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 1, 0, 0), + [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [1356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(53), + [1359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 2, 0, 0), + [1361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(837), + [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [1368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_name, 1, 0, 0), + [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1, 0, 0), + [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, 0, 13), + [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value, 3, 0, 20), + [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_no_newline, 3, 0, 19), + [1384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_no_newline, 2, 0, 0), + [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1, 0, 0), + [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 1, 0, 6), + [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [1400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [1402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [1404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 3, 0, 0), + [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [1408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [1416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 2, 0, 0), + [1418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(274), + [1421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_quote_content, 1, 0, 0), + [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [1425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_quote_content, 2, 0, 0), + [1427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), + [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [1443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frontmatter_content, 1, 0, 0), + [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [1447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_no_newline_repeat1, 2, 0, 0), + [1449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__comment_no_newline_repeat1, 2, 0, 0), SHIFT_REPEAT(629), + [1452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_frontmatter_content_repeat1, 2, 0, 0), SHIFT_REPEAT(1012), + [1455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_frontmatter_content_repeat1, 2, 0, 0), + [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [1495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_definition_repeat1, 2, 0, 0), + [1497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(290), + [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_period_repeat1, 2, 0, 0), + [1504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_decimal_period_repeat1, 2, 0, 0), SHIFT_REPEAT(45), + [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [1541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_paren_repeat1, 2, 0, 0), + [1543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_decimal_paren_repeat1, 2, 0, 0), SHIFT_REPEAT(30), + [1546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [1548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_parens_repeat1, 2, 0, 0), + [1550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_decimal_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(29), + [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [1555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_period_repeat1, 2, 0, 0), + [1557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_period_repeat1, 2, 0, 0), SHIFT_REPEAT(46), + [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [1562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_paren_repeat1, 2, 0, 0), + [1564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_paren_repeat1, 2, 0, 0), SHIFT_REPEAT(35), + [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [1569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_parens_repeat1, 2, 0, 0), + [1571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(40), + [1574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [1576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_period_repeat1, 2, 0, 0), + [1578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_period_repeat1, 2, 0, 0), SHIFT_REPEAT(48), + [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [1645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_paren_repeat1, 2, 0, 0), + [1647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_paren_repeat1, 2, 0, 0), SHIFT_REPEAT(36), + [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [1652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_parens_repeat1, 2, 0, 0), + [1654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(41), + [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [1661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_period_repeat1, 2, 0, 0), + [1663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_period_repeat1, 2, 0, 0), SHIFT_REPEAT(49), + [1666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [1668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_paren_repeat1, 2, 0, 0), + [1670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_paren_repeat1, 2, 0, 0), SHIFT_REPEAT(37), + [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [1679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_parens_repeat1, 2, 0, 0), + [1681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(42), + [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [1686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [1690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_period_repeat1, 2, 0, 0), + [1692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_period_repeat1, 2, 0, 0), SHIFT_REPEAT(50), + [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [1701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_paren_repeat1, 2, 0, 0), + [1703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_paren_repeat1, 2, 0, 0), SHIFT_REPEAT(38), + [1706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [1712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_parens_repeat1, 2, 0, 0), + [1714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(43), + [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [1733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dash, 2, 0, 4), + [1735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_item_content, 2, 0, 0), + [1737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 2, 0, 4), + [1739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 2, 0, 4), + [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [1745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_no_newline_repeat1, 1, 0, 0), + [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [1753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(779), + [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 1, 0, 2), + [1760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 1, 0, 2), + [1762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dash, 3, 0, 16), + [1764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 3, 0, 16), + [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 3, 0, 16), + [1768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_task, 3, 0, 16), + [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__paragraph_inline_content_repeat1, 2, 0, 0), + [1776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__paragraph_inline_content_repeat1, 2, 0, 0), SHIFT_REPEAT(318), + [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [1783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__heading_content_repeat1, 2, 0, 0), + [1785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__heading_content_repeat1, 2, 0, 0), SHIFT_REPEAT(361), + [1788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_item_content, 3, 0, 0), + [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [1794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(780), + [1797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_task, 2, 0, 4), + [1799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 3, 0, 0), + [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [1803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(828), + [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [1808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(834), + [1811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(837), + [1814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(845), + [1817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line, 2, 0, 0), + [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [1823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 1, 0, 2), + [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [1827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 1, 0, 2), + [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [1833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heading_content, 2, 0, 0), + [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [1839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(871), + [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heading_content, 1, 0, 0), + [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [1850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_decimal_period, 2, 0, 4), + [1852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_alpha_period, 2, 0, 4), + [1856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_alpha_period, 2, 0, 4), + [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_roman_period, 2, 0, 4), + [1860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_definition_repeat1, 1, 0, 3), + [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_roman_period, 2, 0, 4), + [1864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_decimal_paren, 2, 0, 4), + [1866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [1868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_alpha_paren, 2, 0, 4), + [1870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1, 0, 0), SHIFT(373), + [1873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_alpha_paren, 2, 0, 4), + [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [1877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_roman_paren, 2, 0, 4), + [1879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_roman_paren, 2, 0, 4), + [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [1893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_inline_content, 3, 0, 0), + [1895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_decimal_parens, 2, 0, 4), + [1897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_alpha_parens, 2, 0, 4), + [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_alpha_parens, 2, 0, 4), + [1901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_roman_parens, 2, 0, 4), + [1903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_roman_parens, 2, 0, 4), + [1905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_parens_repeat1, 1, 0, 2), + [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [1921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_definition, 4, 0, 18), + [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_period_repeat1, 1, 0, 2), + [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [1929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_separator_repeat1, 2, 0, 0), SHIFT_REPEAT(1081), + [1932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_paren_repeat1, 1, 0, 2), + [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_parens_repeat1, 1, 0, 2), + [1936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(359), + [1939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_period_repeat1, 1, 0, 2), + [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [1943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_period_repeat1, 1, 0, 2), + [1945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_paren_repeat1, 1, 0, 2), + [1947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_parens_repeat1, 1, 0, 2), + [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [1951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_period_repeat1, 1, 0, 2), + [1953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_paren_repeat1, 1, 0, 2), + [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [1961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_inline_content, 4, 0, 0), + [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [1965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__paragraph_inline_content_repeat1, 3, 0, 0), + [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [1971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_parens_repeat1, 1, 0, 2), + [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [1975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_period_repeat1, 1, 0, 2), + [1977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_paren_repeat1, 1, 0, 2), + [1979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_definition, 5, 0, 27), + [1981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_parens_repeat1, 1, 0, 2), + [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [1989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_inline_content, 2, 0, 0), + [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [1997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_paren_repeat1, 1, 0, 2), + [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [2019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__div_marker_begin, 1, 0, 0), + [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [2061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_content, 1, 0, 0), + [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [2077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_cell, 1, 0, 5), + [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [2123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_checked, 3, 0, 0), + [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [2143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__div_marker_begin, 3, 0, 10), + [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [2149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unchecked, 3, 0, 0), + [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [2155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_label, 1, 0, 0), + [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [2163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_separator_repeat1, 2, 0, 0), + [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [2171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_row_repeat1, 2, 0, 0), + [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [2189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key, 1, 0, 0), + [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [2321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block_info, 2, 0, 17), + [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [2327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_label, 1, 0, 5), + [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [2361] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), }; enum ts_external_scanner_symbol_identifiers { @@ -30564,7 +31484,6 @@ static const bool ts_external_scanner_states[78][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__thematic_break_star] = true, }, [3] = { - [ts_external_token__block_close] = true, [ts_external_token__newline] = true, [ts_external_token__heading_begin] = true, [ts_external_token__div_begin] = true, @@ -30595,6 +31514,7 @@ static const bool ts_external_scanner_states[78][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__thematic_break_star] = true, }, [4] = { + [ts_external_token__block_close] = true, [ts_external_token__newline] = true, [ts_external_token__heading_begin] = true, [ts_external_token__div_begin] = true, @@ -30774,6 +31694,7 @@ static const bool ts_external_scanner_states[78][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__block_quote_continuation] = true, [ts_external_token__thematic_break_dash] = true, [ts_external_token__thematic_break_star] = true, + [ts_external_token__footnote_end] = true, [ts_external_token__table_caption_begin] = true, }, [10] = { @@ -30805,7 +31726,6 @@ static const bool ts_external_scanner_states[78][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__block_quote_continuation] = true, [ts_external_token__thematic_break_dash] = true, [ts_external_token__thematic_break_star] = true, - [ts_external_token__footnote_end] = true, [ts_external_token__table_caption_begin] = true, }, [11] = { @@ -30838,8 +31758,10 @@ static const bool ts_external_scanner_states[78][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__block_quote_continuation] = true, [ts_external_token__thematic_break_dash] = true, [ts_external_token__thematic_break_star] = true, + [ts_external_token__footnote_end] = true, }, [12] = { + [ts_external_token__block_close] = true, [ts_external_token__newline] = true, [ts_external_token__heading_begin] = true, [ts_external_token__div_begin] = true, @@ -30871,11 +31793,12 @@ static const bool ts_external_scanner_states[78][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__thematic_break_star] = true, }, [13] = { + [ts_external_token__block_close] = true, [ts_external_token__newline] = true, [ts_external_token__heading_begin] = true, [ts_external_token__div_begin] = true, - [ts_external_token__div_end] = true, [ts_external_token__code_block_begin] = true, + [ts_external_token__code_block_end] = true, [ts_external_token_list_marker_dash] = true, [ts_external_token_list_marker_star] = true, [ts_external_token_list_marker_plus] = true, @@ -30900,14 +31823,14 @@ static const bool ts_external_scanner_states[78][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__block_quote_continuation] = true, [ts_external_token__thematic_break_dash] = true, [ts_external_token__thematic_break_star] = true, - [ts_external_token__footnote_end] = true, }, [14] = { + [ts_external_token__block_close] = true, + [ts_external_token__eof_or_newline] = true, [ts_external_token__newline] = true, [ts_external_token__heading_begin] = true, [ts_external_token__div_begin] = true, [ts_external_token__code_block_begin] = true, - [ts_external_token__code_block_end] = true, [ts_external_token_list_marker_dash] = true, [ts_external_token_list_marker_star] = true, [ts_external_token_list_marker_plus] = true, @@ -30932,7 +31855,6 @@ static const bool ts_external_scanner_states[78][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__block_quote_continuation] = true, [ts_external_token__thematic_break_dash] = true, [ts_external_token__thematic_break_star] = true, - [ts_external_token__footnote_end] = true, }, [15] = { [ts_external_token__eof_or_newline] = true, @@ -30966,10 +31888,10 @@ static const bool ts_external_scanner_states[78][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__thematic_break_star] = true, }, [16] = { - [ts_external_token__eof_or_newline] = true, [ts_external_token__newline] = true, [ts_external_token__heading_begin] = true, [ts_external_token__div_begin] = true, + [ts_external_token__div_end] = true, [ts_external_token__code_block_begin] = true, [ts_external_token_list_marker_dash] = true, [ts_external_token_list_marker_star] = true, @@ -30998,12 +31920,11 @@ static const bool ts_external_scanner_states[78][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__footnote_end] = true, }, [17] = { - [ts_external_token__block_close] = true, - [ts_external_token__eof_or_newline] = true, [ts_external_token__newline] = true, [ts_external_token__heading_begin] = true, [ts_external_token__div_begin] = true, [ts_external_token__code_block_begin] = true, + [ts_external_token__code_block_end] = true, [ts_external_token_list_marker_dash] = true, [ts_external_token_list_marker_star] = true, [ts_external_token_list_marker_plus] = true, @@ -31030,11 +31951,10 @@ static const bool ts_external_scanner_states[78][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__thematic_break_star] = true, }, [18] = { - [ts_external_token__block_close] = true, + [ts_external_token__eof_or_newline] = true, [ts_external_token__newline] = true, [ts_external_token__heading_begin] = true, [ts_external_token__div_begin] = true, - [ts_external_token__div_end] = true, [ts_external_token__code_block_begin] = true, [ts_external_token_list_marker_dash] = true, [ts_external_token_list_marker_star] = true, @@ -31060,14 +31980,14 @@ static const bool ts_external_scanner_states[78][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__block_quote_continuation] = true, [ts_external_token__thematic_break_dash] = true, [ts_external_token__thematic_break_star] = true, + [ts_external_token__footnote_end] = true, }, [19] = { - [ts_external_token__block_close] = true, [ts_external_token__newline] = true, [ts_external_token__heading_begin] = true, [ts_external_token__div_begin] = true, + [ts_external_token__div_end] = true, [ts_external_token__code_block_begin] = true, - [ts_external_token__code_block_end] = true, [ts_external_token_list_marker_dash] = true, [ts_external_token_list_marker_star] = true, [ts_external_token_list_marker_plus] = true, @@ -31105,15 +32025,18 @@ static const bool ts_external_scanner_states[78][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__list_marker_task_begin] = true, }, [22] = { + [ts_external_token__block_quote_continuation] = true, + }, + [23] = { [ts_external_token_list_marker_dash] = true, [ts_external_token_list_marker_star] = true, [ts_external_token_list_marker_plus] = true, [ts_external_token__list_marker_task_begin] = true, }, - [23] = { + [24] = { [ts_external_token__table_caption_end] = true, }, - [24] = { + [25] = { [ts_external_token__block_close] = true, [ts_external_token_list_marker_dash] = true, [ts_external_token_list_marker_star] = true, @@ -31121,9 +32044,6 @@ static const bool ts_external_scanner_states[78][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__list_marker_task_begin] = true, [ts_external_token__block_quote_continuation] = true, }, - [25] = { - [ts_external_token__block_quote_continuation] = true, - }, [26] = { [ts_external_token_list_marker_dash] = true, [ts_external_token_list_marker_star] = true, @@ -31152,11 +32072,11 @@ static const bool ts_external_scanner_states[78][EXTERNAL_TOKEN_COUNT] = { }, [31] = { [ts_external_token__block_close] = true, + [ts_external_token__list_marker_task_begin] = true, [ts_external_token__block_quote_continuation] = true, }, [32] = { [ts_external_token__block_close] = true, - [ts_external_token__list_marker_task_begin] = true, [ts_external_token__block_quote_continuation] = true, }, [33] = { @@ -31166,12 +32086,12 @@ static const bool ts_external_scanner_states[78][EXTERNAL_TOKEN_COUNT] = { }, [34] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_star] = true, + [ts_external_token_list_marker_dash] = true, [ts_external_token__block_quote_continuation] = true, }, [35] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_dash] = true, + [ts_external_token_list_marker_star] = true, [ts_external_token__block_quote_continuation] = true, }, [36] = { @@ -31186,71 +32106,71 @@ static const bool ts_external_scanner_states[78][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__table_caption_begin] = true, }, [38] = { - [ts_external_token__block_close] = true, - [ts_external_token_list_marker_lower_alpha_parens] = true, + [ts_external_token_frontmatter_marker] = true, }, [39] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_lower_alpha_period] = true, + [ts_external_token_list_marker_definition] = true, }, [40] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_upper_roman_paren] = true, + [ts_external_token_list_marker_decimal_period] = true, }, [41] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_upper_roman_period] = true, + [ts_external_token_list_marker_decimal_paren] = true, }, [42] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_lower_roman_parens] = true, + [ts_external_token_list_marker_decimal_parens] = true, }, [43] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_lower_roman_paren] = true, + [ts_external_token_list_marker_lower_alpha_period] = true, }, [44] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_lower_roman_period] = true, + [ts_external_token_list_marker_lower_alpha_paren] = true, }, [45] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_upper_alpha_parens] = true, + [ts_external_token_list_marker_lower_alpha_parens] = true, }, [46] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_definition] = true, + [ts_external_token_list_marker_upper_alpha_period] = true, }, [47] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_decimal_period] = true, + [ts_external_token_list_marker_upper_alpha_paren] = true, }, [48] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_decimal_paren] = true, + [ts_external_token_list_marker_upper_alpha_parens] = true, }, [49] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_decimal_parens] = true, + [ts_external_token_list_marker_lower_roman_period] = true, }, [50] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_lower_alpha_paren] = true, + [ts_external_token_list_marker_lower_roman_paren] = true, }, [51] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_upper_alpha_period] = true, + [ts_external_token_list_marker_lower_roman_parens] = true, }, [52] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_upper_alpha_paren] = true, + [ts_external_token_list_marker_upper_roman_period] = true, }, [53] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_upper_roman_parens] = true, + [ts_external_token_list_marker_upper_roman_paren] = true, }, [54] = { - [ts_external_token_frontmatter_marker] = true, + [ts_external_token__block_close] = true, + [ts_external_token_list_marker_upper_roman_parens] = true, }, [55] = { [ts_external_token__block_close] = true, @@ -31264,24 +32184,25 @@ static const bool ts_external_scanner_states[78][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__block_quote_continuation] = true, }, [57] = { - [ts_external_token__code_block_end] = true, + [ts_external_token__div_end] = true, [ts_external_token__list_item_continuation] = true, [ts_external_token__list_item_end] = true, [ts_external_token__block_quote_continuation] = true, }, [58] = { - [ts_external_token__div_end] = true, + [ts_external_token__code_block_end] = true, [ts_external_token__list_item_continuation] = true, [ts_external_token__list_item_end] = true, [ts_external_token__block_quote_continuation] = true, }, [59] = { - [ts_external_token_list_marker_plus] = true, + [ts_external_token__block_close] = true, + [ts_external_token__div_end] = true, [ts_external_token__block_quote_continuation] = true, }, [60] = { - [ts_external_token__block_close] = true, - [ts_external_token__heading_continuation] = true, + [ts_external_token_list_marker_dash] = true, + [ts_external_token__block_quote_continuation] = true, }, [61] = { [ts_external_token__block_close] = true, @@ -31289,29 +32210,28 @@ static const bool ts_external_scanner_states[78][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__block_quote_continuation] = true, }, [62] = { - [ts_external_token_list_marker_star] = true, - [ts_external_token__block_quote_continuation] = true, + [ts_external_token__block_close] = true, + [ts_external_token__heading_continuation] = true, }, [63] = { - [ts_external_token__list_marker_task_begin] = true, + [ts_external_token_list_marker_plus] = true, [ts_external_token__block_quote_continuation] = true, }, [64] = { - [ts_external_token__list_item_continuation] = true, + [ts_external_token_list_marker_star] = true, [ts_external_token__block_quote_continuation] = true, }, [65] = { - [ts_external_token_list_marker_dash] = true, + [ts_external_token__list_marker_task_begin] = true, [ts_external_token__block_quote_continuation] = true, }, [66] = { - [ts_external_token__block_close] = true, - [ts_external_token__eof_or_newline] = true, + [ts_external_token__list_item_continuation] = true, [ts_external_token__block_quote_continuation] = true, }, [67] = { [ts_external_token__block_close] = true, - [ts_external_token__div_end] = true, + [ts_external_token__eof_or_newline] = true, [ts_external_token__block_quote_continuation] = true, }, [68] = { @@ -31319,11 +32239,11 @@ static const bool ts_external_scanner_states[78][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__in_fallback] = true, }, [69] = { - [ts_external_token__eof_or_newline] = true, - [ts_external_token__close_paragraph] = true, + [ts_external_token__list_marker_task_begin] = true, }, [70] = { - [ts_external_token__list_marker_task_begin] = true, + [ts_external_token__eof_or_newline] = true, + [ts_external_token__close_paragraph] = true, }, [71] = { [ts_external_token__block_close] = true, @@ -31332,16 +32252,16 @@ static const bool ts_external_scanner_states[78][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__footnote_end] = true, }, [73] = { - [ts_external_token_list_marker_star] = true, + [ts_external_token__list_item_continuation] = true, }, [74] = { - [ts_external_token_list_marker_plus] = true, + [ts_external_token_list_marker_star] = true, }, [75] = { [ts_external_token_list_marker_dash] = true, }, [76] = { - [ts_external_token__list_item_continuation] = true, + [ts_external_token_list_marker_plus] = true, }, [77] = { [ts_external_token__footnote_mark_begin] = true, @@ -31357,13 +32277,15 @@ bool tree_sitter_djot_external_scanner_scan(void *, TSLexer *, const bool *); unsigned tree_sitter_djot_external_scanner_serialize(void *, char *); void tree_sitter_djot_external_scanner_deserialize(void *, const char *, unsigned); -#ifdef _WIN32 +#ifdef TREE_SITTER_HIDE_SYMBOLS +#define TS_PUBLIC +#elif defined(_WIN32) #define TS_PUBLIC __declspec(dllexport) #else #define TS_PUBLIC __attribute__((visibility("default"))) #endif -TS_PUBLIC const TSLanguage *tree_sitter_djot() { +TS_PUBLIC const TSLanguage *tree_sitter_djot(void) { static const TSLanguage language = { .version = LANGUAGE_VERSION, .symbol_count = SYMBOL_COUNT, @@ -31380,6 +32302,9 @@ TS_PUBLIC const TSLanguage *tree_sitter_djot() { .small_parse_table_map = ts_small_parse_table_map, .parse_actions = ts_parse_actions, .symbol_names = ts_symbol_names, + .field_names = ts_field_names, + .field_map_slices = ts_field_map_slices, + .field_map_entries = ts_field_map_entries, .symbol_metadata = ts_symbol_metadata, .public_symbol_map = ts_symbol_map, .alias_map = ts_non_terminal_alias_map, diff --git a/tree-sitter-djot/src/tree_sitter/alloc.h b/tree-sitter-djot/src/tree_sitter/alloc.h index 1f4466d..1abdd12 100644 --- a/tree-sitter-djot/src/tree_sitter/alloc.h +++ b/tree-sitter-djot/src/tree_sitter/alloc.h @@ -12,10 +12,10 @@ extern "C" { // Allow clients to override allocation functions #ifdef TREE_SITTER_REUSE_ALLOCATOR -extern void *(*ts_current_malloc)(size_t); -extern void *(*ts_current_calloc)(size_t, size_t); -extern void *(*ts_current_realloc)(void *, size_t); -extern void (*ts_current_free)(void *); +extern void *(*ts_current_malloc)(size_t size); +extern void *(*ts_current_calloc)(size_t count, size_t size); +extern void *(*ts_current_realloc)(void *ptr, size_t size); +extern void (*ts_current_free)(void *ptr); #ifndef ts_malloc #define ts_malloc ts_current_malloc diff --git a/tree-sitter-djot/src/tree_sitter/array.h b/tree-sitter-djot/src/tree_sitter/array.h index 186ba67..a17a574 100644 --- a/tree-sitter-djot/src/tree_sitter/array.h +++ b/tree-sitter-djot/src/tree_sitter/array.h @@ -14,6 +14,7 @@ extern "C" { #include #ifdef _MSC_VER +#pragma warning(push) #pragma warning(disable : 4101) #elif defined(__GNUC__) || defined(__clang__) #pragma GCC diagnostic push @@ -66,9 +67,12 @@ extern "C" { /// Increase the array's size by `count` elements. /// New elements are zero-initialized. #define array_grow_by(self, count) \ - (_array__grow((Array *)(self), count, array_elem_size(self)), \ - memset((self)->contents + (self)->size, 0, (count) * array_elem_size(self)), \ - (self)->size += (count)) + do { \ + if ((count) == 0) break; \ + _array__grow((Array *)(self), count, array_elem_size(self)); \ + memset((self)->contents + (self)->size, 0, (count) * array_elem_size(self)); \ + (self)->size += (count); \ + } while (0) /// Append all elements from one array to the end of another. #define array_push_all(self, other) \ @@ -275,7 +279,7 @@ static inline void _array__splice(Array *self, size_t element_size, #define _compare_int(a, b) ((int)*(a) - (int)(b)) #ifdef _MSC_VER -#pragma warning(default : 4101) +#pragma warning(pop) #elif defined(__GNUC__) || defined(__clang__) #pragma GCC diagnostic pop #endif diff --git a/tree-sitter-djot/src/tree_sitter/parser.h b/tree-sitter-djot/src/tree_sitter/parser.h index 17b4fde..799f599 100644 --- a/tree-sitter-djot/src/tree_sitter/parser.h +++ b/tree-sitter-djot/src/tree_sitter/parser.h @@ -47,6 +47,7 @@ struct TSLexer { uint32_t (*get_column)(TSLexer *); bool (*is_at_included_range_start)(const TSLexer *); bool (*eof)(const TSLexer *); + void (*log)(const TSLexer *, const char *, ...); }; typedef enum { @@ -86,6 +87,11 @@ typedef union { } entry; } TSParseActionEntry; +typedef struct { + int32_t start; + int32_t end; +} TSCharacterRange; + struct TSLanguage { uint32_t version; uint32_t symbol_count; @@ -125,6 +131,24 @@ struct TSLanguage { const TSStateId *primary_state_ids; }; +static inline bool set_contains(TSCharacterRange *ranges, uint32_t len, int32_t lookahead) { + uint32_t index = 0; + uint32_t size = len - index; + while (size > 1) { + uint32_t half_size = size / 2; + uint32_t mid_index = index + half_size; + TSCharacterRange *range = &ranges[mid_index]; + if (lookahead >= range->start && lookahead <= range->end) { + return true; + } else if (lookahead > range->end) { + index = mid_index; + } + size -= half_size; + } + TSCharacterRange *range = &ranges[index]; + return (lookahead >= range->start && lookahead <= range->end); +} + /* * Lexer Macros */ @@ -154,6 +178,17 @@ struct TSLanguage { goto next_state; \ } +#define ADVANCE_MAP(...) \ + { \ + static const uint16_t map[] = { __VA_ARGS__ }; \ + for (uint32_t i = 0; i < sizeof(map) / sizeof(map[0]); i += 2) { \ + if (map[i] == lookahead) { \ + state = map[i + 1]; \ + goto next_state; \ + } \ + } \ + } + #define SKIP(state_value) \ { \ skip = true; \ @@ -203,14 +238,15 @@ struct TSLanguage { } \ }} -#define REDUCE(symbol_val, child_count_val, ...) \ - {{ \ - .reduce = { \ - .type = TSParseActionTypeReduce, \ - .symbol = symbol_val, \ - .child_count = child_count_val, \ - __VA_ARGS__ \ - }, \ +#define REDUCE(symbol_name, children, precedence, prod_id) \ + {{ \ + .reduce = { \ + .type = TSParseActionTypeReduce, \ + .symbol = symbol_name, \ + .child_count = children, \ + .dynamic_precedence = precedence, \ + .production_id = prod_id \ + }, \ }} #define RECOVER() \ diff --git a/tree-sitter-djot/test/corpus/syntax.txt b/tree-sitter-djot/test/corpus/syntax.txt index f493fe8..8658307 100644 --- a/tree-sitter-djot/test/corpus/syntax.txt +++ b/tree-sitter-djot/test/corpus/syntax.txt @@ -5,7 +5,7 @@ Line ------------------------------------------------------------------------------- -(document (paragraph)) +(document (paragraph (inline))) =============================================================================== Paragraph: empty line @@ -14,7 +14,7 @@ Line ------------------------------------------------------------------------------- -(document (paragraph)) +(document (paragraph (inline))) =============================================================================== Paragraph: multiline @@ -25,7 +25,7 @@ Line3 ------------------------------------------------------------------------------- -(document (paragraph)) +(document (paragraph (inline))) =============================================================================== Paragraph: with words @@ -34,7 +34,7 @@ Multiple words in paragraph ------------------------------------------------------------------------------- -(document (paragraph)) +(document (paragraph (inline))) =============================================================================== Paragraph: two @@ -46,8 +46,8 @@ Second ------------------------------------------------------------------------------- (document - (paragraph) - (paragraph)) + (paragraph (inline)) + (paragraph (inline))) =============================================================================== Paragraph: two multiline @@ -61,8 +61,8 @@ Second ------------------------------------------------------------------------------- (document - (paragraph) - (paragraph)) + (paragraph (inline)) + (paragraph (inline))) =============================================================================== Heading: 1 @@ -72,7 +72,7 @@ Heading: 1 ------------------------------------------------------------------------------- (document (section - (heading (marker) (content)))) + (heading (marker) (inline)))) =============================================================================== Heading: 2 @@ -82,7 +82,7 @@ Heading: 2 ------------------------------------------------------------------------------- (document (section - (heading (marker) (content)))) + (heading (marker) (inline)))) =============================================================================== Heading: very long @@ -92,7 +92,7 @@ Heading: very long ------------------------------------------------------------------------------- (document (section - (heading (marker) (content)))) + (heading (marker) (inline)))) =============================================================================== Heading: multiple lines @@ -109,10 +109,10 @@ A paragraph (section (heading (marker) - (content + (inline (marker) (marker))) - (section_content (paragraph)))) + (section_content (paragraph (inline))))) =============================================================================== Heading: multiple lines no # prefix @@ -129,10 +129,10 @@ A paragraph (section (heading (marker) - (content + (inline (marker) (marker))) - (section_content (paragraph)))) + (section_content (paragraph (inline))))) =============================================================================== Heading 2: multiple lines @@ -149,10 +149,10 @@ A paragraph (section (heading (marker) - (content + (inline (marker) (marker))) - (section_content (paragraph)))) + (section_content (paragraph (inline))))) =============================================================================== Heading: closed by higher heading on the next line @@ -166,12 +166,12 @@ Heading: closed by higher heading on the next line (section (heading (marker) - (content)) + (inline)) (section_content (section (heading (marker) - (content)))))) + (inline)))))) =============================================================================== Heading: closed by lower heading on the next line @@ -185,11 +185,11 @@ Heading: closed by lower heading on the next line (section (heading (marker) - (content))) + (inline))) (section (heading (marker) - (content)))) + (inline)))) =============================================================================== Heading 4: div closes @@ -206,9 +206,9 @@ stop (div (div_marker_begin) (content - (heading (marker) (content))) + (heading (marker) (inline))) (div_marker_end)) - (paragraph)) + (paragraph (inline))) =============================================================================== Heading 6: list closes @@ -220,12 +220,12 @@ Heading 6: list closes (document (section - (heading (marker) (content)) + (heading (marker) (inline)) (section_content (list (list_item (list_marker_dash) - (list_item_content (paragraph))))))) + (list_item_content (paragraph (inline)))))))) =============================================================================== Heading: followed by list @@ -238,12 +238,12 @@ Heading: followed by list (document (section - (heading (marker) (content)) + (heading (marker) (inline)) (section_content (list (list_item (list_marker_dash) - (list_item_content (paragraph))))))) + (list_item_content (paragraph (inline)))))))) =============================================================================== Section: closed by the same level @@ -256,10 +256,10 @@ Section: closed by the same level (document (section - (heading (marker) (content)) + (heading (marker) (inline)) (section_content)) (section - (heading (marker) (content)))) + (heading (marker) (inline)))) =============================================================================== Section: closed by a lower level @@ -272,10 +272,10 @@ Section: closed by a lower level (document (section - (heading (marker) (content)) + (heading (marker) (inline)) (section_content)) (section - (heading (marker) (content)))) + (heading (marker) (inline)))) =============================================================================== Section: not closed by higher level @@ -290,15 +290,13 @@ Section: not closed by higher level (document (section - (heading - (marker) - (content)) + (heading (marker) (inline)) (section_content (section - (heading (marker) (content)) + (heading (marker) (inline)) (section_content (section - (heading (marker) (content)))))))) + (heading (marker) (inline)))))))) =============================================================================== Section: only allow sections on top level @@ -313,14 +311,14 @@ Section: only allow sections on top level (document (section - (heading (marker) (content)) + (heading (marker) (inline)) (section_content (list (list_item (list_marker_dash) (list_item_content - (paragraph) - (heading (marker) (content)))))))) + (paragraph (inline)) + (heading (marker) (inline)))))))) =============================================================================== Block quote: oneline @@ -333,7 +331,7 @@ Block quote: oneline (block_quote (block_quote_marker) (content - (paragraph)))) + (paragraph (inline))))) =============================================================================== Block quote: directly after @@ -349,8 +347,9 @@ Block quote: directly after (block_quote_marker) (content (paragraph - (block_quote_marker) - (block_quote_marker))))) + (inline + (block_quote_marker) + (block_quote_marker)))))) =============================================================================== Block quote: long @@ -365,10 +364,10 @@ Block quote: long (block_quote (block_quote_marker) (content - (paragraph) + (paragraph (inline)) (block_quote_marker) (block_quote_marker) - (paragraph)))) + (paragraph (inline))))) =============================================================================== Block quote: lazy @@ -382,7 +381,7 @@ This is included (block_quote (block_quote_marker) (content - (paragraph)))) + (paragraph (inline))))) =============================================================================== Block quote: lazy short words @@ -397,7 +396,7 @@ ghi (block_quote (block_quote_marker) (content - (paragraph)))) + (paragraph (inline))))) =============================================================================== Block quote: multilevel close nesting @@ -419,10 +418,10 @@ c (block_quote (block_quote_marker) (content - (paragraph))))) + (paragraph (inline)))))) (block_quote_marker) - (paragraph))) - (paragraph)) + (paragraph (inline)))) + (paragraph (inline))) =============================================================================== Block quote: multilevel nesting with space @@ -440,10 +439,10 @@ Block quote: multilevel nesting with space (block_quote (block_quote_marker) (content - (paragraph))) + (paragraph (inline)))) (block_quote_marker) (block_quote_marker) - (paragraph)))) + (paragraph (inline))))) =============================================================================== Block quote: with hard line break @@ -458,7 +457,8 @@ Block quote: with hard line break (block_quote_marker) (content (paragraph - (block_quote_marker))))) + (inline + (block_quote_marker)))))) =============================================================================== Block quote: contain code block @@ -523,7 +523,7 @@ z (code_block_marker_begin) (code) (code_block_marker_end)) - (paragraph)) + (paragraph (inline))) =============================================================================== Code block :lang @@ -614,9 +614,9 @@ After ------------------------------------------------------------------------------- (document - (paragraph) + (paragraph (inline)) (thematic_break) - (paragraph)) + (paragraph (inline))) =============================================================================== Thematic break: star more @@ -637,7 +637,7 @@ After (document (thematic_break) - (paragraph)) + (paragraph (inline))) =============================================================================== Thematic break: minus @@ -651,9 +651,9 @@ After ------------------------------------------------------------------------------- (document - (paragraph) + (paragraph (inline)) (thematic_break) - (paragraph)) + (paragraph (inline))) =============================================================================== Thematic break: star 2 + 1 @@ -667,9 +667,9 @@ After ------------------------------------------------------------------------------- (document - (paragraph) + (paragraph (inline)) (thematic_break) - (paragraph)) + (paragraph (inline))) =============================================================================== @@ -684,9 +684,9 @@ After ------------------------------------------------------------------------------- (document - (paragraph) + (paragraph (inline)) (thematic_break) - (paragraph)) + (paragraph (inline))) =============================================================================== Thematic break: minus 3 combined @@ -700,9 +700,9 @@ After ------------------------------------------------------------------------------- (document - (paragraph) + (paragraph (inline)) (thematic_break) - (paragraph)) + (paragraph (inline))) =============================================================================== Thematic break: minus 2 + 1 @@ -716,9 +716,9 @@ After ------------------------------------------------------------------------------- (document - (paragraph) + (paragraph (inline)) (thematic_break) - (paragraph)) + (paragraph (inline))) =============================================================================== @@ -733,9 +733,9 @@ After ------------------------------------------------------------------------------- (document - (paragraph) + (paragraph (inline)) (thematic_break) - (paragraph)) + (paragraph (inline))) =============================================================================== Link: ref def @@ -746,7 +746,7 @@ Link: ref def (document (link_reference_definition - (link_label) + (link_label (inline)) (link_destination))) =============================================================================== @@ -759,11 +759,11 @@ Some text More text (document - (paragraph) + (paragraph (inline)) (link_reference_definition - (link_label) + (link_label (inline)) (link_destination)) - (paragraph)) + (paragraph (inline))) =============================================================================== Link: ref def with emphasis @@ -775,10 +775,10 @@ Link: ref def with emphasis (document (link_reference_definition - (link_label) + (link_label (inline)) (link_destination)) (link_reference_definition - (link_label) + (link_label (inline)) (link_destination))) =============================================================================== @@ -792,7 +792,7 @@ two]: /url ------------------------------------------------------------------------------- (document - (paragraph)) + (paragraph (inline))) =============================================================================== Link: ref defs @@ -806,15 +806,15 @@ Some text ------------------------------------------------------------------------------- (document - (paragraph) + (paragraph (inline)) (link_reference_definition - (link_label) + (link_label (inline)) (link_destination)) (link_reference_definition - (link_label) + (link_label (inline)) (link_destination)) (link_reference_definition - (link_label) + (link_label (inline)) (link_destination))) @@ -830,7 +830,7 @@ Paragraph (block_attribute (args (class))) - (paragraph)) + (paragraph (inline))) =============================================================================== Block attribute: spaces @@ -844,7 +844,7 @@ Paragraph (block_attribute (args (class))) - (paragraph)) + (paragraph (inline))) =============================================================================== Block attribute: identifier @@ -858,7 +858,7 @@ Paragraph (block_attribute (args (identifier))) - (paragraph)) + (paragraph (inline))) =============================================================================== Block attribute: key value @@ -874,7 +874,7 @@ Paragraph (key_value (key) (value)))) - (paragraph)) + (paragraph (inline))) =============================================================================== Block attribute: key value spaces @@ -890,7 +890,7 @@ Paragraph (key_value (key) (value)))) - (paragraph)) + (paragraph (inline))) =============================================================================== Block attribute: mixed @@ -909,7 +909,7 @@ Paragraph (key_value (key) (value)))) - (paragraph)) + (paragraph (inline))) =============================================================================== Block attribute: with comment @@ -924,7 +924,7 @@ Paragraph (args (identifier) (comment (content)))) - (paragraph)) + (paragraph (inline))) =============================================================================== Block attribute: before heading @@ -941,7 +941,7 @@ Block attribute: before heading (section (heading (marker) - (content)))) + (inline)))) =============================================================================== Block attribute: before table @@ -957,8 +957,8 @@ Block attribute: before table (identifier))) (table (table_row - (table_cell) - (table_cell)))) + (table_cell (inline)) + (table_cell (inline))))) =============================================================================== Block attribute: before list @@ -976,7 +976,7 @@ Block attribute: before list (list_item (list_marker_decimal_period) (list_item_content - (paragraph))))) + (paragraph (inline)))))) =============================================================================== Block attribute: before blockquote @@ -993,7 +993,7 @@ Block attribute: before blockquote (block_quote (block_quote_marker) (content - (paragraph)))) + (paragraph (inline))))) =============================================================================== Block attribute: before div @@ -1010,8 +1010,9 @@ ok (args (identifier))) (div - (div_marker_begin (class_name)) - (content (paragraph)) + (div_marker_begin) + (class_name) + (content (paragraph (inline))) (div_marker_end))) @@ -1048,7 +1049,7 @@ Block attribute: before link def (args (identifier))) (link_reference_definition - (link_label) + (link_label (inline)) (link_destination))) =============================================================================== @@ -1080,7 +1081,7 @@ Block attribute: inside list (list_item (list_marker_dash) (list_item_content - (paragraph) + (paragraph (inline)) (block_attribute (args (class))))))) @@ -1099,12 +1100,12 @@ Block attribute: inside block quote (block_quote (block_quote_marker) (content - (paragraph) + (paragraph (inline)) (block_quote_marker) (block_quote_marker) (block_attribute (args (class))) (block_quote_marker) - (paragraph)))) + (paragraph (inline))))) =============================================================================== @@ -1121,12 +1122,12 @@ Link: inside list (list_item (list_marker_dash) (list_item_content - (paragraph)))) + (paragraph (inline))))) (list (list_item (list_marker_plus) (list_item_content - (paragraph))))) + (paragraph (inline)))))) =============================================================================== Div: simple @@ -1142,7 +1143,7 @@ Inside (div (div_marker_begin) (content - (paragraph)) + (paragraph (inline))) (div_marker_end))) =============================================================================== @@ -1157,10 +1158,10 @@ Inside (document (div - (div_marker_begin - (class_name)) + (div_marker_begin) + (class_name) (content - (paragraph)) + (paragraph (inline))) (div_marker_end))) =============================================================================== @@ -1175,10 +1176,10 @@ Inside (document (div - (div_marker_begin - (class_name)) + (div_marker_begin) + (class_name) (content - (paragraph)) + (paragraph (inline))) (div_marker_end))) =============================================================================== @@ -1193,10 +1194,10 @@ Inside (document (div - (div_marker_begin - (class_name)) + (div_marker_begin) + (class_name) (content - (paragraph)) + (paragraph (inline))) (div_marker_end))) =============================================================================== @@ -1212,7 +1213,7 @@ Inside (div (div_marker_begin) (content - (paragraph)) + (paragraph (inline))) (div_marker_end))) @@ -1228,7 +1229,7 @@ Inside (div (div_marker_begin) (content - (paragraph)))) + (paragraph (inline))))) =============================================================================== Div: nested @@ -1248,11 +1249,11 @@ Div: nested (div (div_marker_begin) (content - (paragraph) + (paragraph (inline)) (div (div_marker_begin) (content - (paragraph)) + (paragraph (inline))) (div_marker_end))) (div_marker_end))) @@ -1273,11 +1274,11 @@ Div: close nested div (div (div_marker_begin) (content - (paragraph) + (paragraph (inline)) (div (div_marker_begin) (content - (paragraph)))) + (paragraph (inline))))) (div_marker_end))) =============================================================================== @@ -1297,7 +1298,8 @@ Div: inside block quote (div_marker_begin) (content (paragraph - (block_quote_marker))) + (inline + (block_quote_marker)))) (block_quote_marker) (div_marker_end))))) @@ -1313,9 +1315,9 @@ After ------------------------------------------------------------------------------- (document - (paragraph) - (paragraph) - (paragraph)) + (paragraph (inline)) + (paragraph (inline)) + (paragraph (inline))) =============================================================================== Paragraph :not recognized 2 @@ -1329,9 +1331,9 @@ After ------------------------------------------------------------------------------- (document - (paragraph) - (paragraph) - (paragraph)) + (paragraph (inline)) + (paragraph (inline)) + (paragraph (inline))) =============================================================================== List: single dash @@ -1344,7 +1346,7 @@ List: single dash (list (list_item (list_marker_dash) - (list_item_content (paragraph))))) + (list_item_content (paragraph (inline)))))) =============================================================================== List: tight dashes @@ -1359,13 +1361,13 @@ List: tight dashes (list (list_item (list_marker_dash) - (list_item_content (paragraph))) + (list_item_content (paragraph (inline)))) (list_item (list_marker_dash) - (list_item_content (paragraph))) + (list_item_content (paragraph (inline)))) (list_item (list_marker_dash) - (list_item_content (paragraph))))) + (list_item_content (paragraph (inline)))))) =============================================================================== List: Close sublist @@ -1383,15 +1385,15 @@ List: Close sublist (list_item (list_marker_dash) (list_item_content - (paragraph) + (paragraph (inline)) (list (list_item (list_marker_dash) (list_item_content - (paragraph)))))) + (paragraph (inline))))))) (list_item (list_marker_dash) - (list_item_content (paragraph))))) + (list_item_content (paragraph (inline)))))) =============================================================================== List: multiple lists with space between (not separated due to simplicity) @@ -1408,16 +1410,16 @@ List: multiple lists with space between (not separated due to simplicity) (list (list_item (list_marker_dash) - (list_item_content (paragraph))) + (list_item_content (paragraph (inline)))) (list_item (list_marker_dash) - (list_item_content (paragraph))) + (list_item_content (paragraph (inline)))) (list_item (list_marker_dash) - (list_item_content (paragraph))) + (list_item_content (paragraph (inline)))) (list_item (list_marker_dash) - (list_item_content (paragraph))))) + (list_item_content (paragraph (inline)))))) =============================================================================== List: multiple lists with paragraph between @@ -1436,18 +1438,18 @@ paragraph (list (list_item (list_marker_dash) - (list_item_content (paragraph))) + (list_item_content (paragraph (inline)))) (list_item (list_marker_dash) - (list_item_content (paragraph)))) - (paragraph) + (list_item_content (paragraph (inline))))) + (paragraph (inline)) (list (list_item (list_marker_dash) - (list_item_content (paragraph))) + (list_item_content (paragraph (inline)))) (list_item (list_marker_dash) - (list_item_content (paragraph))))) + (list_item_content (paragraph (inline)))))) =============================================================================== List: Contain unindented paragraph closes list @@ -1462,8 +1464,8 @@ Second (list (list_item (list_marker_dash) - (list_item_content (paragraph)))) - (paragraph)) + (list_item_content (paragraph (inline))))) + (paragraph (inline))) =============================================================================== List: Continue paragraph with soft break @@ -1477,7 +1479,7 @@ List: Continue paragraph with soft break (list (list_item (list_marker_dash) - (list_item_content (paragraph))))) + (list_item_content (paragraph (inline)))))) =============================================================================== List: Continue paragraph with lazy indentation @@ -1491,7 +1493,7 @@ Second (list (list_item (list_marker_dash) - (list_item_content (paragraph))))) + (list_item_content (paragraph (inline)))))) =============================================================================== List: Contain multiple paragraphs @@ -1507,8 +1509,8 @@ List: Contain multiple paragraphs (list_item (list_marker_dash) (list_item_content - (paragraph) - (paragraph))))) + (paragraph (inline)) + (paragraph (inline)))))) =============================================================================== List: Immediate blockquote @@ -1527,7 +1529,8 @@ List: Immediate blockquote (block_quote_marker) (content (paragraph - (block_quote_marker)))))))) + (inline + (block_quote_marker))))))))) =============================================================================== List: Close contained code block at eof @@ -1564,7 +1567,7 @@ x (code_block (code_block_marker_begin) (code))))) - (paragraph)) + (paragraph (inline))) =============================================================================== List: Close contained multiline code at next non-indent @@ -1586,7 +1589,7 @@ x (code_block (code_block_marker_begin) (code))))) - (paragraph)) + (paragraph (inline))) =============================================================================== List: code block should ignore nested list @@ -1604,7 +1607,7 @@ List: code block should ignore nested list (list_item (list_marker_dash) (list_item_content - (paragraph) + (paragraph (inline)) (code_block (code_block_marker_begin) (code) @@ -1626,7 +1629,7 @@ List: raw block at end (list_item (list_marker_dash) (list_item_content - (paragraph) + (paragraph (inline)) (raw_block (raw_block_marker_begin) (raw_block_info @@ -1651,11 +1654,11 @@ List: div at end (list_item (list_marker_dash) (list_item_content - (paragraph) + (paragraph (inline)) (div (div_marker_begin) (content - (paragraph)) + (paragraph (inline))) (div_marker_end)))))) =============================================================================== @@ -1672,10 +1675,10 @@ List: Close contained div at eof (list_marker_dash) (list_item_content (div - (div_marker_begin - (class_name)) + (div_marker_begin) + (class_name) (content - (paragraph))))))) + (paragraph (inline)))))))) =============================================================================== List: Close contained div at next non-indent @@ -1693,11 +1696,11 @@ x (list_marker_dash) (list_item_content (div - (div_marker_begin - (class_name)) + (div_marker_begin) + (class_name) (content - (paragraph)))))) - (paragraph)) + (paragraph (inline))))))) + (paragraph (inline))) =============================================================================== List: With sublist @@ -1714,18 +1717,18 @@ List: With sublist (list (list_item (list_marker_dash) - (list_item_content (paragraph))) + (list_item_content (paragraph (inline)))) (list_item (list_marker_dash) (list_item_content - (paragraph) + (paragraph (inline)) (list (list_item (list_marker_dash) - (list_item_content (paragraph))) + (list_item_content (paragraph (inline)))) (list_item (list_marker_dash) - (list_item_content (paragraph)))))))) + (list_item_content (paragraph (inline))))))))) =============================================================================== List: plus @@ -1739,10 +1742,10 @@ List: plus (list (list_item (list_marker_plus) - (list_item_content (paragraph))) + (list_item_content (paragraph (inline)))) (list_item (list_marker_plus) - (list_item_content (paragraph))))) + (list_item_content (paragraph (inline)))))) =============================================================================== List: star @@ -1756,10 +1759,10 @@ List: star (list (list_item (list_marker_star) - (list_item_content (paragraph))) + (list_item_content (paragraph (inline)))) (list_item (list_marker_star) - (list_item_content (paragraph))))) + (list_item_content (paragraph (inline)))))) =============================================================================== List: mixed bullets create new lists @@ -1774,15 +1777,15 @@ List: mixed bullets create new lists (list (list_item (list_marker_dash) - (list_item_content (paragraph)))) + (list_item_content (paragraph (inline))))) (list (list_item (list_marker_plus) - (list_item_content (paragraph)))) + (list_item_content (paragraph (inline))))) (list (list_item (list_marker_star) - (list_item_content (paragraph))))) + (list_item_content (paragraph (inline)))))) =============================================================================== List: close sublist @@ -1802,14 +1805,14 @@ outer (list_item (list_marker_plus) (list_item_content - (paragraph) + (paragraph (inline)) (list (list_item (list_marker_plus) (list_item_content - (paragraph)))) - (paragraph)))) - (paragraph)) + (paragraph (inline))))) + (paragraph (inline))))) + (paragraph (inline))) =============================================================================== List: definition @@ -1826,10 +1829,10 @@ List: definition (list (list_item (list_marker_definition) - (term) + (term (inline)) (definition - (paragraph) - (paragraph))))) + (paragraph (inline)) + (paragraph (inline)))))) =============================================================================== List: ordered list markers @@ -1886,108 +1889,108 @@ I) x (list (list_item (list_marker_decimal_period) - (list_item_content (paragraph))) + (list_item_content (paragraph (inline)))) (list_item (list_marker_decimal_period) - (list_item_content (paragraph)))) + (list_item_content (paragraph (inline))))) (list (list_item (list_marker_decimal_paren) - (list_item_content (paragraph))) + (list_item_content (paragraph (inline)))) (list_item (list_marker_decimal_paren) - (list_item_content (paragraph)))) + (list_item_content (paragraph (inline))))) (list (list_item (list_marker_decimal_parens) - (list_item_content (paragraph))) + (list_item_content (paragraph (inline)))) (list_item (list_marker_decimal_parens) - (list_item_content (paragraph)))) + (list_item_content (paragraph (inline))))) (list (list_item (list_marker_lower_alpha_period) - (list_item_content (paragraph))) + (list_item_content (paragraph (inline)))) (list_item (list_marker_lower_alpha_period) - (list_item_content (paragraph)))) + (list_item_content (paragraph (inline))))) (list (list_item (list_marker_lower_alpha_paren) - (list_item_content (paragraph))) + (list_item_content (paragraph (inline)))) (list_item (list_marker_lower_alpha_paren) - (list_item_content (paragraph)))) + (list_item_content (paragraph (inline))))) (list (list_item (list_marker_lower_alpha_parens) - (list_item_content (paragraph))) + (list_item_content (paragraph (inline)))) (list_item (list_marker_lower_alpha_parens) - (list_item_content (paragraph)))) + (list_item_content (paragraph (inline))))) (list (list_item (list_marker_upper_alpha_period) - (list_item_content (paragraph))) + (list_item_content (paragraph (inline)))) (list_item (list_marker_upper_alpha_period) - (list_item_content (paragraph)))) + (list_item_content (paragraph (inline))))) (list (list_item (list_marker_upper_alpha_paren) - (list_item_content (paragraph))) + (list_item_content (paragraph (inline)))) (list_item (list_marker_upper_alpha_paren) - (list_item_content (paragraph)))) + (list_item_content (paragraph (inline))))) (list (list_item (list_marker_upper_alpha_parens) - (list_item_content (paragraph))) + (list_item_content (paragraph (inline)))) (list_item (list_marker_upper_alpha_parens) - (list_item_content (paragraph)))) + (list_item_content (paragraph (inline))))) (list (list_item (list_marker_lower_roman_period) - (list_item_content (paragraph))) + (list_item_content (paragraph (inline)))) (list_item (list_marker_lower_roman_period) - (list_item_content (paragraph)))) + (list_item_content (paragraph (inline))))) (list (list_item (list_marker_lower_roman_paren) - (list_item_content (paragraph))) + (list_item_content (paragraph (inline)))) (list_item (list_marker_lower_roman_paren) - (list_item_content (paragraph)))) + (list_item_content (paragraph (inline))))) (list (list_item (list_marker_lower_roman_parens) - (list_item_content (paragraph))) + (list_item_content (paragraph (inline)))) (list_item (list_marker_lower_roman_parens) - (list_item_content (paragraph)))) + (list_item_content (paragraph (inline))))) (list (list_item (list_marker_upper_roman_period) - (list_item_content (paragraph))) + (list_item_content (paragraph (inline)))) (list_item (list_marker_upper_roman_period) - (list_item_content (paragraph)))) + (list_item_content (paragraph (inline))))) (list (list_item (list_marker_upper_roman_paren) - (list_item_content (paragraph))) + (list_item_content (paragraph (inline)))) (list_item (list_marker_upper_roman_paren) - (list_item_content (paragraph)))) + (list_item_content (paragraph (inline))))) (list (list_item (list_marker_upper_roman_parens) - (list_item_content (paragraph))) + (list_item_content (paragraph (inline)))) (list_item (list_marker_upper_roman_parens) - (list_item_content (paragraph))))) + (list_item_content (paragraph (inline)))))) =============================================================================== List: multi letter ordered list markers @@ -2029,45 +2032,45 @@ II) x (list (list_item (list_marker_decimal_period) - (list_item_content (paragraph)))) + (list_item_content (paragraph (inline))))) (list (list_item (list_marker_decimal_paren) - (list_item_content (paragraph)))) + (list_item_content (paragraph (inline))))) (list (list_item (list_marker_decimal_parens) - (list_item_content (paragraph)))) - (paragraph) - (paragraph) - (paragraph) - (paragraph) - (paragraph) - (paragraph) + (list_item_content (paragraph (inline))))) + (paragraph (inline)) + (paragraph (inline)) + (paragraph (inline)) + (paragraph (inline)) + (paragraph (inline)) + (paragraph (inline)) (list (list_item (list_marker_lower_roman_period) - (list_item_content (paragraph)))) + (list_item_content (paragraph (inline))))) (list (list_item (list_marker_lower_roman_paren) - (list_item_content (paragraph)))) + (list_item_content (paragraph (inline))))) (list (list_item (list_marker_lower_roman_parens) - (list_item_content (paragraph)))) + (list_item_content (paragraph (inline))))) (list (list_item (list_marker_upper_roman_period) - (list_item_content (paragraph)))) + (list_item_content (paragraph (inline))))) (list (list_item (list_marker_upper_roman_paren) - (list_item_content (paragraph)))) + (list_item_content (paragraph (inline))))) (list (list_item (list_marker_upper_roman_parens) - (list_item_content (paragraph))))) + (list_item_content (paragraph (inline)))))) =============================================================================== @@ -2088,14 +2091,14 @@ outer (list_item (list_marker_decimal_period) (list_item_content - (paragraph) + (paragraph (inline)) (list (list_item (list_marker_decimal_period) (list_item_content - (paragraph)))) - (paragraph)))) - (paragraph)) + (paragraph (inline))))) + (paragraph (inline))))) + (paragraph (inline))) =============================================================================== List: ordered list don't mix @@ -2112,22 +2115,22 @@ i) x (list_item (list_marker_decimal_period) (list_item_content - (paragraph)))) + (paragraph (inline))))) (list (list_item (list_marker_decimal_paren) (list_item_content - (paragraph)))) + (paragraph (inline))))) (list (list_item (list_marker_lower_roman_paren) (list_item_content - (paragraph)))) + (paragraph (inline))))) (list (list_item (list_marker_lower_alpha_parens) (list_item_content - (paragraph))))) + (paragraph (inline)))))) =============================================================================== List: task @@ -2144,17 +2147,17 @@ List: task (list_marker_task (unchecked)) (list_item_content - (paragraph))) + (paragraph (inline)))) (list_item (list_marker_task (checked)) (list_item_content - (paragraph))) + (paragraph (inline)))) (list_item (list_marker_task (checked)) (list_item_content - (paragraph))))) + (paragraph (inline)))))) =============================================================================== List: task mix multiple styles @@ -2171,17 +2174,17 @@ List: task mix multiple styles (list_marker_task (unchecked)) (list_item_content - (paragraph))) + (paragraph (inline)))) (list_item (list_marker_task (unchecked)) (list_item_content - (paragraph))) + (paragraph (inline)))) (list_item (list_marker_task (unchecked)) (list_item_content - (paragraph))))) + (paragraph (inline)))))) =============================================================================== List: not tasks @@ -2199,15 +2202,15 @@ List: not tasks (list_item (list_marker_dash) (list_item_content - (paragraph))) + (paragraph (inline)))) (list_item (list_marker_dash) (list_item_content - (paragraph))) + (paragraph (inline)))) (list_item (list_marker_dash) (list_item_content - (paragraph))))) + (paragraph (inline)))))) =============================================================================== List: task list closed @@ -2232,34 +2235,34 @@ List: task list closed (list_marker_task (unchecked)) (list_item_content - (paragraph)))) + (paragraph (inline))))) (list (list_item (list_marker_plus) (list_item_content - (paragraph)))) + (paragraph (inline))))) (list (list_item (list_marker_task (unchecked)) (list_item_content - (paragraph)))) + (paragraph (inline))))) (list (list_item (list_marker_dash) (list_item_content - (paragraph)))) + (paragraph (inline))))) (list (list_item (list_marker_task (unchecked)) (list_item_content - (paragraph)))) + (paragraph (inline))))) (list (list_item (list_marker_star) (list_item_content - (paragraph))))) + (paragraph (inline)))))) =============================================================================== List: double dash @@ -2273,7 +2276,7 @@ List: double dash (list_item (list_marker_dash) (list_item_content - (paragraph))))) + (paragraph (inline)))))) =============================================================================== List: in block quote @@ -2296,47 +2299,47 @@ List: in block quote (list_item (list_marker_dash) (list_item_content - (paragraph))) + (paragraph (inline)))) (list_item (block_quote_marker) (list_marker_dash) (list_item_content - (paragraph)))) + (paragraph (inline))))) (block_quote_marker) (list (list_item (list_marker_star) (list_item_content - (paragraph))) + (paragraph (inline)))) (list_item (block_quote_marker) (list_marker_star) (list_item_content - (paragraph)))) + (paragraph (inline))))) (block_quote_marker) (list (list_item (list_marker_plus) (list_item_content - (paragraph))) + (paragraph (inline)))) (list_item (block_quote_marker) (list_marker_plus) (list_item_content - (paragraph)))) + (paragraph (inline))))) (block_quote_marker) (list (list_item (list_marker_task (unchecked)) (list_item_content - (paragraph))) + (paragraph (inline)))) (list_item (block_quote_marker) (list_marker_task (checked)) (list_item_content - (paragraph))))))) + (paragraph (inline)))))))) =============================================================================== List: Sparse list in block quote @@ -2355,13 +2358,13 @@ List: Sparse list in block quote (list_item (list_marker_dash) (list_item_content - (paragraph))) + (paragraph (inline)))) (list_item (block_quote_marker) (block_quote_marker) (list_marker_dash) (list_item_content - (paragraph)))) + (paragraph (inline))))) (block_quote_marker)))) =============================================================================== @@ -2379,10 +2382,10 @@ List: List definition in block quote (list (list_item (list_marker_definition) - (term) + (term (inline)) (definition (block_quote_marker) - (paragraph))))))) + (paragraph (inline)))))))) =============================================================================== List: In block quote with paragraph @@ -2400,9 +2403,9 @@ List: In block quote with paragraph (list_item (list_marker_dash) (list_item_content - (paragraph) + (paragraph (inline)) (block_quote_marker) - (paragraph))))))) + (paragraph (inline)))))))) =============================================================================== List: Unclosed List in Blockquote @@ -2415,14 +2418,14 @@ List: Unclosed List in Blockquote (block_quote (block_quote_marker) (content - (paragraph) + (paragraph (inline)) (block_quote_marker) (block_quote_marker) (list (list_item (list_marker_dash) (list_item_content - (paragraph))))))) + (paragraph (inline)))))))) =============================================================================== List: Unclosed List in Section @@ -2435,13 +2438,13 @@ List: Unclosed List in Section (section (heading (marker) - (content)) + (inline)) (section_content (list (list_item (list_marker_dash) (list_item_content - (paragraph))))))) + (paragraph (inline)))))))) =============================================================================== List: Unclosed List in Div @@ -2452,14 +2455,14 @@ List: Unclosed List in Div ------------------------------------------------------------------------------- (document (div - (div_marker_begin - (class_name)) + (div_marker_begin) + (class_name) (content (list (list_item (list_marker_dash) (list_item_content - (paragraph))))))) + (paragraph (inline)))))))) =============================================================================== Table: single row @@ -2471,8 +2474,8 @@ Table: single row (document (table (table_row - (table_cell) - (table_cell)))) + (table_cell (inline)) + (table_cell (inline))))) =============================================================================== Table: before paragraph @@ -2486,9 +2489,9 @@ z (document (table (table_row - (table_cell) - (table_cell))) - (paragraph)) + (table_cell (inline)) + (table_cell (inline)))) + (paragraph (inline))) =============================================================================== Table: initial separator @@ -2504,8 +2507,8 @@ Table: initial separator (table_cell_alignment) (table_cell_alignment)) (table_row - (table_cell) - (table_cell)))) + (table_cell (inline)) + (table_cell (inline))))) =============================================================================== Table: separator + header @@ -2519,14 +2522,14 @@ Table: separator + header (document (table (table_header - (table_cell) - (table_cell)) + (table_cell (inline)) + (table_cell (inline))) (table_separator (table_cell_alignment) (table_cell_alignment)) (table_row - (table_cell) - (table_cell)))) + (table_cell (inline)) + (table_cell (inline))))) =============================================================================== Table: separator alignments @@ -2544,10 +2547,10 @@ Table: separator alignments (table_cell_alignment) (table_cell_alignment)) (table_row - (table_cell) - (table_cell) - (table_cell) - (table_cell)))) + (table_cell (inline)) + (table_cell (inline)) + (table_cell (inline)) + (table_cell (inline))))) =============================================================================== Table: multiple headers @@ -2563,20 +2566,20 @@ Table: multiple headers (document (table (table_header - (table_cell) - (table_cell)) + (table_cell (inline)) + (table_cell (inline))) (table_separator (table_cell_alignment) (table_cell_alignment)) (table_header - (table_cell) - (table_cell)) + (table_cell (inline)) + (table_cell (inline))) (table_separator (table_cell_alignment) (table_cell_alignment)) (table_row - (table_cell) - (table_cell)))) + (table_cell (inline)) + (table_cell (inline))))) =============================================================================== Table: inside blockquote @@ -2593,16 +2596,16 @@ Table: inside blockquote (content (table (table_header - (table_cell) - (table_cell)) + (table_cell (inline)) + (table_cell (inline))) (table_separator (block_quote_marker) (table_cell_alignment) (table_cell_alignment)) (table_row (block_quote_marker) - (table_cell) - (table_cell)))))) + (table_cell (inline)) + (table_cell (inline))))))) =============================================================================== Table: with inline styling @@ -2614,8 +2617,8 @@ Table: with inline styling (document (table (table_row - (table_cell) - (table_cell)))) + (table_cell (inline)) + (table_cell (inline))))) =============================================================================== Table: with caption @@ -2630,12 +2633,12 @@ Next paragraph (document (table (table_row - (table_cell) - (table_cell)) + (table_cell (inline)) + (table_cell (inline))) (table_caption (marker) (content))) - (paragraph)) + (paragraph (inline))) =============================================================================== Table: caption early end @@ -2649,12 +2652,12 @@ Next paragraph (document (table (table_row - (table_cell) - (table_cell)) + (table_cell (inline)) + (table_cell (inline))) (table_caption (marker) (content))) - (paragraph)) + (paragraph (inline))) =============================================================================== Table: spaced caption @@ -2670,12 +2673,12 @@ Next paragraph (document (table (table_row - (table_cell) - (table_cell)) + (table_cell (inline)) + (table_cell (inline))) (table_caption (marker) (content))) - (paragraph)) + (paragraph (inline))) =============================================================================== Footnote: simple @@ -2690,7 +2693,7 @@ Footnote: simple (reference_label) (footnote_marker_end) (footnote_content - (paragraph)))) + (paragraph (inline))))) =============================================================================== Footnote: before heading @@ -2707,9 +2710,9 @@ Footnote: before heading (reference_label) (footnote_marker_end) (footnote_content - (paragraph))) + (paragraph (inline)))) (section - (heading (marker) (content)))) + (heading (marker) (inline)))) =============================================================================== Footnote: multiline @@ -2727,8 +2730,8 @@ that continues (reference_label) (footnote_marker_end) (footnote_content - (paragraph) - (paragraph)))) + (paragraph (inline)) + (paragraph (inline))))) =============================================================================== Footnote: With block quote @@ -2745,11 +2748,11 @@ Footnote: With block quote (reference_label) (footnote_marker_end) (footnote_content - (paragraph) + (paragraph (inline)) (block_quote (block_quote_marker) (content - (paragraph)))))) + (paragraph (inline))))))) =============================================================================== Paragraph: broken things @@ -2781,18 +2784,18 @@ Paragraph: broken things ------------------------------------------------------------------------------- (document - (paragraph) - (paragraph) - (paragraph) - (paragraph) - (paragraph) - (paragraph) - (paragraph) - (paragraph) - (paragraph) - (paragraph) - (paragraph) - (paragraph)) + (paragraph (inline)) + (paragraph (inline)) + (paragraph (inline)) + (paragraph (inline)) + (paragraph (inline)) + (paragraph (inline)) + (paragraph (inline)) + (paragraph (inline)) + (paragraph (inline)) + (paragraph (inline)) + (paragraph (inline)) + (paragraph (inline))) =============================================================================== Paragraph: Not list items @@ -2816,14 +2819,14 @@ i.e. ------------------------------------------------------------------------------- (document - (paragraph) - (paragraph) - (paragraph) - (paragraph) - (paragraph) - (paragraph) - (paragraph) - (paragraph)) + (paragraph (inline)) + (paragraph (inline)) + (paragraph (inline)) + (paragraph (inline)) + (paragraph (inline)) + (paragraph (inline)) + (paragraph (inline)) + (paragraph (inline))) =============================================================================== Frontmatter @@ -2842,7 +2845,7 @@ x (frontmatter_marker) (frontmatter_content) (frontmatter_marker)) - (paragraph)) + (paragraph (inline))) =============================================================================== Frontmatter @@ -2861,7 +2864,7 @@ x (language) (frontmatter_content) (frontmatter_marker)) - (paragraph)) + (paragraph (inline))) =============================================================================== Heading after list @@ -2876,11 +2879,11 @@ Heading after list (list_item (list_marker_dash) (list_item_content - (paragraph)))) + (paragraph (inline))))) (section (heading (marker) - (content)))) + (inline)))) =============================================================================== Div in list should be closed before unindented div @@ -2900,15 +2903,15 @@ outside div (list_item (list_marker_dash) (list_item_content - (paragraph) + (paragraph (inline)) (div (div_marker_begin) (content - (paragraph)))))) + (paragraph (inline))))))) (div (div_marker_begin) (content - (paragraph)) + (paragraph (inline))) (div_marker_end))) =============================================================================== @@ -2929,7 +2932,7 @@ Second code (list_item (list_marker_dash) (list_item_content - (paragraph) + (paragraph (inline)) (code_block (code_block_marker_begin) (code))))) @@ -2956,7 +2959,7 @@ y (list_item (list_marker_dash) (list_item_content - (paragraph) + (paragraph (inline)) (raw_block (raw_block_marker_begin) (raw_block_info @@ -2987,15 +2990,15 @@ Div in list should be closed before heading (list_item (list_marker_dash) (list_item_content - (paragraph) + (paragraph (inline)) (div (div_marker_begin) (content - (paragraph)))))) + (paragraph (inline))))))) (section (heading (marker) - (content)))) + (inline)))) =============================================================================== Comment before link def @@ -3010,7 +3013,7 @@ Comment before link def (comment (content)))) (link_reference_definition - (link_label) + (link_label (inline)) (link_destination))) =============================================================================== @@ -3028,4 +3031,4 @@ Comment before heading (section (heading (marker) - (content)))) + (inline)))) From bb2645804a9364d8818104cb8908117b655a25b9 Mon Sep 17 00:00:00 2001 From: Jonas Hietala Date: Fri, 10 Jan 2025 08:36:21 +0100 Subject: [PATCH 33/46] feat: Smarter detection of inline link scanning Solves different precedence issues for spans and links --- tree-sitter-djot-inline/grammar.js | 5 +- tree-sitter-djot-inline/src/grammar.json | 8 +- tree-sitter-djot-inline/src/node-types.json | 85 +- tree-sitter-djot-inline/src/parser.c | 19379 ++++++++-------- tree-sitter-djot-inline/src/scanner.c | 150 +- .../test/corpus/syntax.txt | 36 +- 6 files changed, 10313 insertions(+), 9350 deletions(-) diff --git a/tree-sitter-djot-inline/grammar.js b/tree-sitter-djot-inline/grammar.js index c8e8bc6..5800d7e 100644 --- a/tree-sitter-djot-inline/grammar.js +++ b/tree-sitter-djot-inline/grammar.js @@ -87,7 +87,10 @@ module.exports = grammar({ choice( // Use precedence for inline attribute as well to allow // closure before other elements. - prec.dynamic(ELEMENT_PRECEDENCE, $.inline_attribute), + prec.dynamic( + ELEMENT_PRECEDENCE, + field("attribute", $.inline_attribute), + ), $._curly_bracket_span_fallback, ), ), diff --git a/tree-sitter-djot-inline/src/grammar.json b/tree-sitter-djot-inline/src/grammar.json index 445b19e..8a3cd86 100644 --- a/tree-sitter-djot-inline/src/grammar.json +++ b/tree-sitter-djot-inline/src/grammar.json @@ -219,8 +219,12 @@ "type": "PREC_DYNAMIC", "value": 100, "content": { - "type": "SYMBOL", - "name": "inline_attribute" + "type": "FIELD", + "name": "attribute", + "content": { + "type": "SYMBOL", + "name": "inline_attribute" + } } }, { diff --git a/tree-sitter-djot-inline/src/node-types.json b/tree-sitter-djot-inline/src/node-types.json index 0ce73db..f828956 100644 --- a/tree-sitter-djot-inline/src/node-types.json +++ b/tree-sitter-djot-inline/src/node-types.json @@ -97,7 +97,18 @@ { "type": "content", "named": true, - "fields": {}, + "fields": { + "attribute": { + "multiple": true, + "required": false, + "types": [ + { + "type": "inline_attribute", + "named": true + } + ] + } + }, "children": { "multiple": true, "required": false, @@ -166,10 +177,6 @@ "type": "highlighted", "named": true }, - { - "type": "inline_attribute", - "named": true - }, { "type": "inline_image", "named": true @@ -440,7 +447,18 @@ { "type": "image_description", "named": true, - "fields": {}, + "fields": { + "attribute": { + "multiple": true, + "required": false, + "types": [ + { + "type": "inline_attribute", + "named": true + } + ] + } + }, "children": { "multiple": true, "required": false, @@ -509,10 +527,6 @@ "type": "highlighted", "named": true }, - { - "type": "inline_attribute", - "named": true - }, { "type": "inline_image", "named": true @@ -576,7 +590,18 @@ "type": "inline", "named": true, "root": true, - "fields": {}, + "fields": { + "attribute": { + "multiple": true, + "required": false, + "types": [ + { + "type": "inline_attribute", + "named": true + } + ] + } + }, "children": { "multiple": true, "required": false, @@ -645,10 +670,6 @@ "type": "highlighted", "named": true }, - { - "type": "inline_attribute", - "named": true - }, { "type": "inline_image", "named": true @@ -855,7 +876,18 @@ { "type": "link_label", "named": true, - "fields": {}, + "fields": { + "attribute": { + "multiple": true, + "required": false, + "types": [ + { + "type": "inline_attribute", + "named": true + } + ] + } + }, "children": { "multiple": true, "required": false, @@ -924,10 +956,6 @@ "type": "highlighted", "named": true }, - { - "type": "inline_attribute", - "named": true - }, { "type": "inline_image", "named": true @@ -990,7 +1018,18 @@ { "type": "link_text", "named": true, - "fields": {}, + "fields": { + "attribute": { + "multiple": true, + "required": false, + "types": [ + { + "type": "inline_attribute", + "named": true + } + ] + } + }, "children": { "multiple": true, "required": false, @@ -1059,10 +1098,6 @@ "type": "highlighted", "named": true }, - { - "type": "inline_attribute", - "named": true - }, { "type": "inline_image", "named": true diff --git a/tree-sitter-djot-inline/src/parser.c b/tree-sitter-djot-inline/src/parser.c index 7c6c303..87a503d 100644 --- a/tree-sitter-djot-inline/src/parser.c +++ b/tree-sitter-djot-inline/src/parser.c @@ -5,7 +5,7 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 1225 +#define STATE_COUNT 1245 #define LARGE_STATE_COUNT 121 #define SYMBOL_COUNT 145 #define ALIAS_COUNT 8 @@ -13,7 +13,7 @@ #define EXTERNAL_TOKEN_COUNT 27 #define FIELD_COUNT 13 #define MAX_ALIAS_SEQUENCE_LENGTH 5 -#define PRODUCTION_ID_COUNT 21 +#define PRODUCTION_ID_COUNT 25 enum ts_symbol_identifiers { anon_sym_LBRACE_ = 1, @@ -1132,102 +1132,118 @@ static const char * const ts_field_names[] = { static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [1] = {.index = 0, .length = 1}, - [2] = {.index = 1, .length = 2}, - [3] = {.index = 3, .length = 2}, - [4] = {.index = 5, .length = 1}, - [5] = {.index = 6, .length = 2}, - [6] = {.index = 8, .length = 2}, - [7] = {.index = 10, .length = 3}, - [8] = {.index = 13, .length = 4}, - [10] = {.index = 17, .length = 4}, - [11] = {.index = 21, .length = 3}, - [12] = {.index = 21, .length = 3}, - [14] = {.index = 24, .length = 1}, - [15] = {.index = 25, .length = 1}, - [17] = {.index = 26, .length = 2}, - [18] = {.index = 28, .length = 1}, - [19] = {.index = 29, .length = 2}, + [2] = {.index = 1, .length = 1}, + [3] = {.index = 2, .length = 1}, + [4] = {.index = 3, .length = 2}, + [5] = {.index = 5, .length = 2}, + [6] = {.index = 7, .length = 1}, + [7] = {.index = 8, .length = 2}, + [8] = {.index = 10, .length = 2}, + [9] = {.index = 12, .length = 2}, + [10] = {.index = 14, .length = 3}, + [11] = {.index = 17, .length = 4}, + [13] = {.index = 21, .length = 4}, + [14] = {.index = 25, .length = 4}, + [15] = {.index = 25, .length = 4}, + [17] = {.index = 29, .length = 2}, + [18] = {.index = 31, .length = 1}, + [19] = {.index = 32, .length = 1}, + [21] = {.index = 33, .length = 3}, + [22] = {.index = 36, .length = 1}, + [23] = {.index = 37, .length = 2}, }; static const TSFieldMapEntry ts_field_map_entries[] = { [0] = - {field_description, 0}, + {field_attribute, 0, .inherited = true}, [1] = + {field_attribute, 1}, + [2] = {field_description, 0}, - {field_label, 1, .inherited = true}, [3] = {field_description, 0}, - {field_destination, 1}, + {field_label, 1, .inherited = true}, [5] = + {field_description, 0}, + {field_destination, 1}, + [7] = {field_text, 0}, - [6] = + [8] = {field_label, 1, .inherited = true}, {field_text, 0}, - [8] = + [10] = {field_destination, 1}, {field_text, 0}, - [10] = + [12] = + {field_attribute, 0, .inherited = true}, + {field_attribute, 1, .inherited = true}, + [14] = {field_begin_marker, 0}, {field_content, 1}, {field_end_marker, 2}, - [13] = + [17] = {field_attribute, 3}, {field_begin_marker, 0}, {field_content, 1}, {field_end_marker, 2}, - [17] = + [21] = {field_begin_marker, 1}, {field_content, 2}, {field_end_marker, 3}, {field_math_marker, 0}, - [21] = + [25] = + {field_attribute, 2, .inherited = true}, {field_begin_marker, 0}, {field_content, 2}, {field_end_marker, 3}, - [24] = + [29] = + {field_attribute, 1, .inherited = true}, {field_label, 1}, - [25] = + [31] = + {field_attribute, 2, .inherited = true}, + [32] = {field_name, 1}, - [26] = + [33] = + {field_attribute, 2, .inherited = true}, {field_attribute, 4}, {field_content, 2}, - [28] = + [36] = {field_language, 1}, - [29] = + [37] = {field_key, 0}, {field_value, 2}, }; static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { [0] = {0}, - [7] = { + [10] = { [0] = alias_sym_verbatim_marker_begin, [2] = alias_sym_verbatim_marker_end, }, - [9] = { + [12] = { [0] = sym_comment, }, - [10] = { + [13] = { [0] = alias_sym_math_marker, [1] = alias_sym_math_marker_begin, [3] = alias_sym_math_marker_end, }, - [12] = { + [15] = { [2] = sym__verbatim_content, }, - [13] = { + [16] = { [3] = alias_sym_footnote_marker_end, }, - [14] = { + [17] = { [1] = alias_sym_link_label, }, - [16] = { + [20] = { [2] = alias_sym_args, }, - [17] = { + [21] = { [2] = sym__verbatim_content, }, - [20] = { + [24] = { [2] = sym__verbatim_content, }, }; @@ -1457,8 +1473,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [204] = 173, [205] = 174, [206] = 152, - [207] = 171, - [208] = 166, + [207] = 166, + [208] = 171, [209] = 164, [210] = 173, [211] = 170, @@ -1491,12 +1507,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [238] = 238, [239] = 239, [240] = 240, - [241] = 233, + [241] = 241, [242] = 242, [243] = 243, [244] = 244, [245] = 245, - [246] = 246, + [246] = 233, [247] = 247, [248] = 248, [249] = 249, @@ -1509,31 +1525,31 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [256] = 256, [257] = 257, [258] = 258, - [259] = 244, - [260] = 260, - [261] = 260, - [262] = 262, + [259] = 259, + [260] = 234, + [261] = 235, + [262] = 236, [263] = 263, - [264] = 234, - [265] = 235, - [266] = 236, - [267] = 238, - [268] = 235, - [269] = 236, - [270] = 237, - [271] = 238, - [272] = 239, - [273] = 240, - [274] = 233, - [275] = 242, - [276] = 243, - [277] = 262, - [278] = 263, - [279] = 234, - [280] = 245, - [281] = 246, - [282] = 247, - [283] = 248, + [264] = 264, + [265] = 263, + [266] = 264, + [267] = 237, + [268] = 238, + [269] = 239, + [270] = 239, + [271] = 240, + [272] = 241, + [273] = 237, + [274] = 242, + [275] = 243, + [276] = 244, + [277] = 245, + [278] = 233, + [279] = 247, + [280] = 248, + [281] = 240, + [282] = 241, + [283] = 237, [284] = 249, [285] = 250, [286] = 251, @@ -1544,217 +1560,217 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [291] = 256, [292] = 257, [293] = 258, - [294] = 244, - [295] = 260, - [296] = 172, - [297] = 239, - [298] = 240, - [299] = 263, - [300] = 235, - [301] = 262, - [302] = 263, - [303] = 234, - [304] = 236, - [305] = 233, - [306] = 235, - [307] = 236, - [308] = 237, - [309] = 237, - [310] = 238, - [311] = 239, - [312] = 240, - [313] = 233, - [314] = 242, - [315] = 243, - [316] = 238, - [317] = 239, - [318] = 240, + [294] = 259, + [295] = 234, + [296] = 235, + [297] = 236, + [298] = 263, + [299] = 264, + [300] = 238, + [301] = 239, + [302] = 172, + [303] = 243, + [304] = 237, + [305] = 238, + [306] = 239, + [307] = 244, + [308] = 240, + [309] = 241, + [310] = 240, + [311] = 241, + [312] = 242, + [313] = 243, + [314] = 244, + [315] = 245, + [316] = 233, + [317] = 247, + [318] = 248, [319] = 245, - [320] = 246, - [321] = 247, - [322] = 248, - [323] = 249, - [324] = 250, - [325] = 251, - [326] = 252, - [327] = 253, - [328] = 254, - [329] = 255, - [330] = 256, - [331] = 257, - [332] = 258, - [333] = 244, - [334] = 260, - [335] = 233, - [336] = 242, + [320] = 242, + [321] = 249, + [322] = 250, + [323] = 251, + [324] = 252, + [325] = 253, + [326] = 254, + [327] = 255, + [328] = 256, + [329] = 257, + [330] = 258, + [331] = 259, + [332] = 234, + [333] = 235, + [334] = 236, + [335] = 263, + [336] = 264, [337] = 243, - [338] = 242, - [339] = 243, - [340] = 262, - [341] = 263, - [342] = 234, - [343] = 237, - [344] = 245, - [345] = 246, - [346] = 235, - [347] = 236, - [348] = 237, - [349] = 238, - [350] = 239, - [351] = 240, - [352] = 247, - [353] = 242, - [354] = 243, - [355] = 248, - [356] = 249, - [357] = 245, - [358] = 246, - [359] = 247, - [360] = 248, - [361] = 249, - [362] = 250, - [363] = 251, - [364] = 252, - [365] = 253, - [366] = 254, - [367] = 255, - [368] = 256, - [369] = 257, - [370] = 258, - [371] = 244, - [372] = 260, - [373] = 250, + [338] = 244, + [339] = 245, + [340] = 233, + [341] = 237, + [342] = 238, + [343] = 239, + [344] = 247, + [345] = 248, + [346] = 233, + [347] = 240, + [348] = 241, + [349] = 247, + [350] = 242, + [351] = 243, + [352] = 244, + [353] = 245, + [354] = 249, + [355] = 247, + [356] = 248, + [357] = 250, + [358] = 249, + [359] = 250, + [360] = 251, + [361] = 252, + [362] = 253, + [363] = 254, + [364] = 255, + [365] = 256, + [366] = 257, + [367] = 258, + [368] = 259, + [369] = 234, + [370] = 235, + [371] = 236, + [372] = 263, + [373] = 264, [374] = 251, [375] = 252, [376] = 253, - [377] = 262, - [378] = 263, - [379] = 234, - [380] = 254, + [377] = 254, + [378] = 237, + [379] = 238, + [380] = 239, [381] = 255, [382] = 256, - [383] = 235, - [384] = 236, + [383] = 240, + [384] = 241, [385] = 257, - [386] = 237, - [387] = 238, - [388] = 239, - [389] = 240, + [386] = 242, + [387] = 243, + [388] = 244, + [389] = 245, [390] = 233, - [391] = 242, - [392] = 243, + [391] = 247, + [392] = 248, [393] = 258, - [394] = 245, - [395] = 246, - [396] = 247, - [397] = 248, - [398] = 249, - [399] = 250, - [400] = 251, - [401] = 252, - [402] = 253, - [403] = 254, - [404] = 255, - [405] = 256, - [406] = 257, - [407] = 258, - [408] = 244, - [409] = 260, - [410] = 244, - [411] = 262, - [412] = 263, - [413] = 234, - [414] = 234, - [415] = 235, - [416] = 236, - [417] = 245, - [418] = 237, - [419] = 238, - [420] = 239, - [421] = 240, - [422] = 233, - [423] = 242, - [424] = 243, - [425] = 262, - [426] = 245, - [427] = 246, - [428] = 247, - [429] = 248, - [430] = 249, - [431] = 250, - [432] = 251, - [433] = 252, - [434] = 253, - [435] = 254, - [436] = 255, - [437] = 256, - [438] = 257, - [439] = 258, - [440] = 244, - [441] = 260, - [442] = 166, - [443] = 164, - [444] = 263, - [445] = 170, - [446] = 171, - [447] = 234, - [448] = 173, - [449] = 174, - [450] = 246, - [451] = 262, - [452] = 172, - [453] = 172, - [454] = 235, - [455] = 236, - [456] = 237, - [457] = 238, - [458] = 239, - [459] = 240, - [460] = 233, - [461] = 242, - [462] = 243, - [463] = 247, - [464] = 245, - [465] = 246, - [466] = 247, - [467] = 248, - [468] = 249, - [469] = 250, - [470] = 251, - [471] = 252, - [472] = 253, - [473] = 254, - [474] = 255, - [475] = 256, - [476] = 257, - [477] = 258, - [478] = 244, - [479] = 260, - [480] = 248, - [481] = 249, - [482] = 262, - [483] = 263, - [484] = 234, - [485] = 250, - [486] = 251, - [487] = 252, - [488] = 235, - [489] = 236, + [394] = 259, + [395] = 234, + [396] = 249, + [397] = 250, + [398] = 251, + [399] = 252, + [400] = 253, + [401] = 254, + [402] = 255, + [403] = 256, + [404] = 257, + [405] = 258, + [406] = 259, + [407] = 234, + [408] = 235, + [409] = 236, + [410] = 263, + [411] = 264, + [412] = 235, + [413] = 236, + [414] = 263, + [415] = 237, + [416] = 238, + [417] = 239, + [418] = 264, + [419] = 240, + [420] = 241, + [421] = 242, + [422] = 243, + [423] = 244, + [424] = 245, + [425] = 233, + [426] = 247, + [427] = 248, + [428] = 248, + [429] = 249, + [430] = 250, + [431] = 251, + [432] = 252, + [433] = 253, + [434] = 254, + [435] = 255, + [436] = 256, + [437] = 257, + [438] = 258, + [439] = 259, + [440] = 234, + [441] = 235, + [442] = 236, + [443] = 263, + [444] = 264, + [445] = 166, + [446] = 164, + [447] = 242, + [448] = 170, + [449] = 171, + [450] = 238, + [451] = 173, + [452] = 174, + [453] = 237, + [454] = 238, + [455] = 172, + [456] = 172, + [457] = 239, + [458] = 249, + [459] = 250, + [460] = 240, + [461] = 241, + [462] = 242, + [463] = 243, + [464] = 244, + [465] = 245, + [466] = 233, + [467] = 247, + [468] = 248, + [469] = 251, + [470] = 249, + [471] = 250, + [472] = 251, + [473] = 252, + [474] = 253, + [475] = 254, + [476] = 255, + [477] = 256, + [478] = 257, + [479] = 258, + [480] = 259, + [481] = 234, + [482] = 235, + [483] = 236, + [484] = 263, + [485] = 264, + [486] = 252, + [487] = 237, + [488] = 238, + [489] = 239, [490] = 253, - [491] = 237, - [492] = 238, - [493] = 239, - [494] = 240, - [495] = 233, - [496] = 242, - [497] = 243, - [498] = 254, - [499] = 255, - [500] = 256, - [501] = 245, - [502] = 246, - [503] = 247, - [504] = 248, + [491] = 254, + [492] = 240, + [493] = 241, + [494] = 255, + [495] = 242, + [496] = 243, + [497] = 244, + [498] = 245, + [499] = 233, + [500] = 247, + [501] = 248, + [502] = 256, + [503] = 257, + [504] = 258, [505] = 249, [506] = 250, [507] = 251, @@ -1765,716 +1781,736 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [512] = 256, [513] = 257, [514] = 258, - [515] = 244, - [516] = 260, - [517] = 257, - [518] = 258, - [519] = 262, - [520] = 263, - [521] = 260, + [515] = 259, + [516] = 234, + [517] = 235, + [518] = 236, + [519] = 263, + [520] = 264, + [521] = 259, [522] = 522, - [523] = 242, - [524] = 243, + [523] = 523, + [524] = 524, [525] = 525, [526] = 526, - [527] = 245, - [528] = 246, - [529] = 233, - [530] = 248, - [531] = 249, - [532] = 250, - [533] = 251, - [534] = 252, - [535] = 253, - [536] = 254, - [537] = 255, - [538] = 256, - [539] = 257, - [540] = 258, - [541] = 244, - [542] = 260, + [527] = 237, + [528] = 238, + [529] = 239, + [530] = 526, + [531] = 525, + [532] = 240, + [533] = 241, + [534] = 522, + [535] = 242, + [536] = 243, + [537] = 244, + [538] = 245, + [539] = 233, + [540] = 247, + [541] = 248, + [542] = 542, [543] = 543, - [544] = 526, - [545] = 526, - [546] = 525, - [547] = 525, - [548] = 548, - [549] = 526, - [550] = 526, - [551] = 525, - [552] = 548, - [553] = 525, - [554] = 554, - [555] = 525, - [556] = 556, - [557] = 548, - [558] = 554, - [559] = 559, - [560] = 525, - [561] = 522, - [562] = 526, - [563] = 556, - [564] = 556, - [565] = 556, - [566] = 522, - [567] = 548, - [568] = 526, - [569] = 525, + [544] = 249, + [545] = 250, + [546] = 251, + [547] = 252, + [548] = 253, + [549] = 254, + [550] = 255, + [551] = 256, + [552] = 257, + [553] = 258, + [554] = 259, + [555] = 234, + [556] = 235, + [557] = 236, + [558] = 263, + [559] = 264, + [560] = 542, + [561] = 543, + [562] = 543, + [563] = 542, + [564] = 564, + [565] = 525, + [566] = 564, + [567] = 564, + [568] = 524, + [569] = 542, [570] = 543, - [571] = 556, - [572] = 548, - [573] = 522, - [574] = 556, - [575] = 526, - [576] = 559, - [577] = 554, - [578] = 554, - [579] = 554, - [580] = 556, + [571] = 542, + [572] = 572, + [573] = 524, + [574] = 524, + [575] = 522, + [576] = 524, + [577] = 564, + [578] = 542, + [579] = 564, + [580] = 572, [581] = 522, - [582] = 526, - [583] = 522, - [584] = 554, - [585] = 554, + [582] = 523, + [583] = 564, + [584] = 526, + [585] = 525, [586] = 522, - [587] = 548, - [588] = 556, - [589] = 548, - [590] = 556, - [591] = 525, - [592] = 556, - [593] = 526, - [594] = 548, - [595] = 554, - [596] = 554, - [597] = 554, - [598] = 522, - [599] = 522, - [600] = 262, - [601] = 263, - [602] = 234, - [603] = 548, - [604] = 235, - [605] = 236, - [606] = 548, - [607] = 525, - [608] = 522, - [609] = 237, - [610] = 238, - [611] = 239, - [612] = 240, - [613] = 247, - [614] = 554, - [615] = 525, - [616] = 556, - [617] = 548, - [618] = 522, - [619] = 526, - [620] = 620, - [621] = 620, - [622] = 620, - [623] = 623, - [624] = 620, - [625] = 625, - [626] = 623, - [627] = 623, - [628] = 620, - [629] = 623, - [630] = 623, - [631] = 623, - [632] = 623, - [633] = 620, - [634] = 623, - [635] = 620, - [636] = 623, - [637] = 620, - [638] = 620, - [639] = 620, - [640] = 620, - [641] = 623, - [642] = 623, - [643] = 643, - [644] = 644, - [645] = 645, - [646] = 646, - [647] = 647, - [648] = 648, - [649] = 649, - [650] = 650, - [651] = 651, - [652] = 652, - [653] = 652, - [654] = 654, + [587] = 523, + [588] = 564, + [589] = 523, + [590] = 522, + [591] = 526, + [592] = 526, + [593] = 522, + [594] = 543, + [595] = 543, + [596] = 525, + [597] = 542, + [598] = 598, + [599] = 523, + [600] = 524, + [601] = 543, + [602] = 542, + [603] = 542, + [604] = 526, + [605] = 524, + [606] = 543, + [607] = 523, + [608] = 526, + [609] = 524, + [610] = 525, + [611] = 564, + [612] = 522, + [613] = 525, + [614] = 564, + [615] = 522, + [616] = 523, + [617] = 522, + [618] = 526, + [619] = 542, + [620] = 524, + [621] = 598, + [622] = 523, + [623] = 564, + [624] = 543, + [625] = 525, + [626] = 523, + [627] = 523, + [628] = 543, + [629] = 526, + [630] = 526, + [631] = 524, + [632] = 542, + [633] = 522, + [634] = 524, + [635] = 523, + [636] = 525, + [637] = 564, + [638] = 526, + [639] = 543, + [640] = 640, + [641] = 641, + [642] = 640, + [643] = 641, + [644] = 641, + [645] = 640, + [646] = 641, + [647] = 640, + [648] = 641, + [649] = 641, + [650] = 641, + [651] = 640, + [652] = 641, + [653] = 640, + [654] = 640, [655] = 655, - [656] = 654, - [657] = 654, - [658] = 658, - [659] = 652, - [660] = 655, - [661] = 654, - [662] = 655, - [663] = 654, - [664] = 658, + [656] = 641, + [657] = 641, + [658] = 640, + [659] = 641, + [660] = 640, + [661] = 640, + [662] = 640, + [663] = 663, + [664] = 664, [665] = 665, - [666] = 652, - [667] = 655, - [668] = 654, - [669] = 652, - [670] = 652, - [671] = 655, - [672] = 654, - [673] = 673, - [674] = 652, - [675] = 652, - [676] = 652, - [677] = 655, - [678] = 655, - [679] = 654, - [680] = 654, - [681] = 655, - [682] = 655, - [683] = 652, - [684] = 652, - [685] = 655, - [686] = 654, - [687] = 655, - [688] = 673, - [689] = 654, - [690] = 690, - [691] = 691, - [692] = 692, - [693] = 693, - [694] = 694, - [695] = 694, - [696] = 696, - [697] = 697, - [698] = 698, - [699] = 699, - [700] = 700, - [701] = 701, - [702] = 702, - [703] = 703, - [704] = 704, - [705] = 705, - [706] = 706, + [666] = 666, + [667] = 667, + [668] = 668, + [669] = 669, + [670] = 670, + [671] = 671, + [672] = 672, + [673] = 672, + [674] = 672, + [675] = 675, + [676] = 676, + [677] = 677, + [678] = 676, + [679] = 677, + [680] = 680, + [681] = 676, + [682] = 677, + [683] = 677, + [684] = 672, + [685] = 676, + [686] = 677, + [687] = 676, + [688] = 672, + [689] = 676, + [690] = 676, + [691] = 677, + [692] = 676, + [693] = 677, + [694] = 672, + [695] = 675, + [696] = 676, + [697] = 677, + [698] = 677, + [699] = 672, + [700] = 672, + [701] = 672, + [702] = 676, + [703] = 672, + [704] = 677, + [705] = 676, + [706] = 677, [707] = 707, - [708] = 708, - [709] = 709, - [710] = 696, - [711] = 697, - [712] = 698, - [713] = 699, - [714] = 700, - [715] = 701, - [716] = 702, - [717] = 703, - [718] = 704, - [719] = 705, - [720] = 706, - [721] = 707, - [722] = 708, - [723] = 709, - [724] = 694, - [725] = 709, - [726] = 696, - [727] = 697, - [728] = 698, - [729] = 699, - [730] = 700, - [731] = 701, - [732] = 702, - [733] = 703, - [734] = 704, - [735] = 705, - [736] = 706, - [737] = 707, - [738] = 708, - [739] = 709, - [740] = 694, - [741] = 694, - [742] = 696, - [743] = 697, - [744] = 698, - [745] = 701, - [746] = 746, - [747] = 699, - [748] = 700, - [749] = 701, - [750] = 702, - [751] = 703, - [752] = 704, - [753] = 705, - [754] = 706, - [755] = 707, - [756] = 708, - [757] = 709, - [758] = 694, - [759] = 759, - [760] = 696, - [761] = 697, - [762] = 698, - [763] = 702, - [764] = 703, - [765] = 704, - [766] = 699, - [767] = 700, - [768] = 701, - [769] = 702, - [770] = 703, - [771] = 704, - [772] = 705, - [773] = 706, - [774] = 707, - [775] = 708, - [776] = 709, - [777] = 694, - [778] = 696, - [779] = 697, - [780] = 698, - [781] = 705, - [782] = 699, - [783] = 700, - [784] = 701, - [785] = 702, - [786] = 703, - [787] = 704, - [788] = 705, - [789] = 706, - [790] = 707, - [791] = 708, - [792] = 709, - [793] = 694, - [794] = 794, - [795] = 696, - [796] = 697, - [797] = 698, - [798] = 699, - [799] = 700, - [800] = 701, - [801] = 702, - [802] = 703, - [803] = 704, - [804] = 705, - [805] = 706, - [806] = 707, - [807] = 708, - [808] = 709, - [809] = 694, - [810] = 696, - [811] = 697, - [812] = 698, - [813] = 759, - [814] = 706, - [815] = 699, - [816] = 700, - [817] = 701, - [818] = 794, - [819] = 702, - [820] = 759, - [821] = 703, - [822] = 704, - [823] = 705, - [824] = 706, - [825] = 707, - [826] = 708, - [827] = 709, - [828] = 794, - [829] = 700, - [830] = 759, - [831] = 707, - [832] = 696, - [833] = 697, - [834] = 698, - [835] = 794, - [836] = 759, - [837] = 708, - [838] = 794, - [839] = 759, - [840] = 696, - [841] = 697, - [842] = 794, - [843] = 759, - [844] = 699, - [845] = 700, - [846] = 701, - [847] = 702, - [848] = 703, - [849] = 794, - [850] = 704, - [851] = 759, - [852] = 705, - [853] = 706, - [854] = 707, - [855] = 708, - [856] = 709, - [857] = 694, - [858] = 794, - [859] = 759, - [860] = 696, - [861] = 697, - [862] = 698, - [863] = 794, - [864] = 759, - [865] = 794, - [866] = 759, - [867] = 699, - [868] = 698, - [869] = 699, - [870] = 700, - [871] = 794, - [872] = 701, - [873] = 702, - [874] = 703, - [875] = 704, - [876] = 705, - [877] = 706, - [878] = 707, - [879] = 708, - [880] = 709, - [881] = 694, - [882] = 882, - [883] = 883, - [884] = 884, - [885] = 884, - [886] = 886, - [887] = 887, - [888] = 882, - [889] = 889, - [890] = 890, - [891] = 891, - [892] = 892, - [893] = 893, - [894] = 894, - [895] = 895, - [896] = 896, - [897] = 882, - [898] = 898, - [899] = 886, - [900] = 900, - [901] = 901, - [902] = 886, + [708] = 680, + [709] = 672, + [710] = 710, + [711] = 711, + [712] = 712, + [713] = 713, + [714] = 714, + [715] = 715, + [716] = 716, + [717] = 717, + [718] = 718, + [719] = 719, + [720] = 720, + [721] = 721, + [722] = 722, + [723] = 714, + [724] = 724, + [725] = 719, + [726] = 720, + [727] = 727, + [728] = 728, + [729] = 729, + [730] = 730, + [731] = 731, + [732] = 732, + [733] = 733, + [734] = 717, + [735] = 718, + [736] = 727, + [737] = 728, + [738] = 721, + [739] = 722, + [740] = 714, + [741] = 724, + [742] = 719, + [743] = 720, + [744] = 727, + [745] = 728, + [746] = 729, + [747] = 730, + [748] = 731, + [749] = 732, + [750] = 716, + [751] = 717, + [752] = 718, + [753] = 753, + [754] = 721, + [755] = 722, + [756] = 714, + [757] = 724, + [758] = 719, + [759] = 720, + [760] = 727, + [761] = 728, + [762] = 729, + [763] = 730, + [764] = 731, + [765] = 732, + [766] = 716, + [767] = 717, + [768] = 718, + [769] = 721, + [770] = 722, + [771] = 714, + [772] = 724, + [773] = 719, + [774] = 720, + [775] = 727, + [776] = 728, + [777] = 729, + [778] = 730, + [779] = 731, + [780] = 732, + [781] = 716, + [782] = 717, + [783] = 718, + [784] = 722, + [785] = 721, + [786] = 722, + [787] = 714, + [788] = 724, + [789] = 719, + [790] = 720, + [791] = 727, + [792] = 728, + [793] = 729, + [794] = 730, + [795] = 731, + [796] = 732, + [797] = 729, + [798] = 730, + [799] = 716, + [800] = 717, + [801] = 718, + [802] = 721, + [803] = 721, + [804] = 722, + [805] = 714, + [806] = 724, + [807] = 719, + [808] = 720, + [809] = 727, + [810] = 728, + [811] = 729, + [812] = 730, + [813] = 731, + [814] = 732, + [815] = 716, + [816] = 717, + [817] = 716, + [818] = 717, + [819] = 718, + [820] = 731, + [821] = 721, + [822] = 722, + [823] = 714, + [824] = 724, + [825] = 719, + [826] = 720, + [827] = 727, + [828] = 728, + [829] = 729, + [830] = 730, + [831] = 731, + [832] = 732, + [833] = 716, + [834] = 717, + [835] = 718, + [836] = 733, + [837] = 718, + [838] = 732, + [839] = 721, + [840] = 722, + [841] = 714, + [842] = 753, + [843] = 724, + [844] = 733, + [845] = 719, + [846] = 720, + [847] = 727, + [848] = 728, + [849] = 729, + [850] = 730, + [851] = 731, + [852] = 753, + [853] = 732, + [854] = 733, + [855] = 716, + [856] = 717, + [857] = 718, + [858] = 753, + [859] = 733, + [860] = 753, + [861] = 733, + [862] = 753, + [863] = 733, + [864] = 721, + [865] = 722, + [866] = 714, + [867] = 724, + [868] = 719, + [869] = 753, + [870] = 720, + [871] = 733, + [872] = 727, + [873] = 728, + [874] = 729, + [875] = 730, + [876] = 731, + [877] = 732, + [878] = 753, + [879] = 733, + [880] = 716, + [881] = 717, + [882] = 718, + [883] = 753, + [884] = 733, + [885] = 753, + [886] = 733, + [887] = 714, + [888] = 724, + [889] = 721, + [890] = 722, + [891] = 753, + [892] = 724, + [893] = 719, + [894] = 720, + [895] = 727, + [896] = 728, + [897] = 729, + [898] = 730, + [899] = 731, + [900] = 732, + [901] = 716, + [902] = 902, [903] = 903, - [904] = 891, - [905] = 892, - [906] = 893, - [907] = 894, - [908] = 895, - [909] = 896, - [910] = 882, - [911] = 900, + [904] = 903, + [905] = 905, + [906] = 906, + [907] = 907, + [908] = 908, + [909] = 909, + [910] = 902, + [911] = 911, [912] = 912, - [913] = 890, - [914] = 887, + [913] = 913, + [914] = 914, [915] = 915, - [916] = 889, + [916] = 908, [917] = 917, - [918] = 884, - [919] = 912, - [920] = 890, - [921] = 887, - [922] = 887, - [923] = 891, - [924] = 892, - [925] = 893, - [926] = 894, - [927] = 895, - [928] = 896, - [929] = 882, - [930] = 900, - [931] = 889, - [932] = 932, - [933] = 886, - [934] = 912, - [935] = 890, - [936] = 887, - [937] = 937, - [938] = 891, - [939] = 892, - [940] = 893, - [941] = 894, - [942] = 895, - [943] = 896, - [944] = 882, - [945] = 900, - [946] = 912, - [947] = 890, - [948] = 887, - [949] = 884, - [950] = 889, - [951] = 951, - [952] = 884, - [953] = 953, + [918] = 918, + [919] = 919, + [920] = 919, + [921] = 921, + [922] = 922, + [923] = 923, + [924] = 905, + [925] = 906, + [926] = 907, + [927] = 908, + [928] = 909, + [929] = 902, + [930] = 911, + [931] = 912, + [932] = 913, + [933] = 914, + [934] = 915, + [935] = 903, + [936] = 921, + [937] = 905, + [938] = 903, + [939] = 921, + [940] = 905, + [941] = 906, + [942] = 907, + [943] = 908, + [944] = 909, + [945] = 902, + [946] = 911, + [947] = 912, + [948] = 913, + [949] = 914, + [950] = 915, + [951] = 669, + [952] = 952, + [953] = 919, [954] = 954, - [955] = 955, - [956] = 889, - [957] = 889, - [958] = 958, - [959] = 953, - [960] = 960, - [961] = 955, - [962] = 884, - [963] = 963, - [964] = 884, - [965] = 900, - [966] = 966, - [967] = 963, - [968] = 968, - [969] = 969, - [970] = 953, - [971] = 954, - [972] = 955, - [973] = 884, - [974] = 896, - [975] = 891, - [976] = 892, - [977] = 893, - [978] = 894, - [979] = 895, - [980] = 896, - [981] = 882, - [982] = 982, - [983] = 963, - [984] = 968, - [985] = 969, - [986] = 953, - [987] = 954, - [988] = 955, - [989] = 900, - [990] = 648, - [991] = 886, - [992] = 886, - [993] = 912, - [994] = 890, + [955] = 921, + [956] = 956, + [957] = 957, + [958] = 905, + [959] = 906, + [960] = 907, + [961] = 908, + [962] = 909, + [963] = 902, + [964] = 911, + [965] = 912, + [966] = 913, + [967] = 914, + [968] = 915, + [969] = 906, + [970] = 921, + [971] = 907, + [972] = 903, + [973] = 973, + [974] = 974, + [975] = 975, + [976] = 903, + [977] = 909, + [978] = 902, + [979] = 908, + [980] = 909, + [981] = 911, + [982] = 912, + [983] = 913, + [984] = 914, + [985] = 915, + [986] = 952, + [987] = 987, + [988] = 988, + [989] = 989, + [990] = 973, + [991] = 974, + [992] = 975, + [993] = 993, + [994] = 921, [995] = 995, - [996] = 886, - [997] = 886, - [998] = 891, - [999] = 963, - [1000] = 968, - [1001] = 969, - [1002] = 953, - [1003] = 954, - [1004] = 955, - [1005] = 891, - [1006] = 892, - [1007] = 893, - [1008] = 892, - [1009] = 894, - [1010] = 895, - [1011] = 896, - [1012] = 882, - [1013] = 893, - [1014] = 900, - [1015] = 963, - [1016] = 968, - [1017] = 969, - [1018] = 953, - [1019] = 954, - [1020] = 955, - [1021] = 894, - [1022] = 912, - [1023] = 890, - [1024] = 887, - [1025] = 895, - [1026] = 1026, - [1027] = 889, - [1028] = 896, - [1029] = 882, - [1030] = 884, - [1031] = 963, - [1032] = 968, - [1033] = 969, - [1034] = 953, - [1035] = 954, - [1036] = 955, - [1037] = 900, - [1038] = 891, - [1039] = 643, - [1040] = 912, - [1041] = 890, - [1042] = 887, - [1043] = 895, - [1044] = 889, - [1045] = 912, - [1046] = 884, - [1047] = 963, - [1048] = 968, - [1049] = 969, - [1050] = 953, - [1051] = 954, - [1052] = 955, - [1053] = 1053, - [1054] = 968, - [1055] = 891, - [1056] = 892, - [1057] = 893, - [1058] = 894, - [1059] = 895, - [1060] = 966, - [1061] = 896, - [1062] = 1062, - [1063] = 963, - [1064] = 968, - [1065] = 969, - [1066] = 953, - [1067] = 954, - [1068] = 955, - [1069] = 886, - [1070] = 889, - [1071] = 900, - [1072] = 912, - [1073] = 890, - [1074] = 892, - [1075] = 891, - [1076] = 892, - [1077] = 1077, - [1078] = 893, - [1079] = 963, - [1080] = 968, - [1081] = 969, - [1082] = 953, - [1083] = 954, - [1084] = 955, - [1085] = 1085, - [1086] = 894, - [1087] = 895, - [1088] = 896, - [1089] = 882, - [1090] = 900, - [1091] = 912, - [1092] = 890, - [1093] = 886, - [1094] = 887, - [1095] = 963, - [1096] = 968, - [1097] = 969, - [1098] = 953, - [1099] = 954, - [1100] = 955, - [1101] = 887, - [1102] = 893, - [1103] = 889, - [1104] = 969, - [1105] = 884, - [1106] = 889, - [1107] = 954, - [1108] = 891, - [1109] = 892, - [1110] = 893, - [1111] = 963, - [1112] = 968, - [1113] = 969, - [1114] = 1114, - [1115] = 883, - [1116] = 898, - [1117] = 903, - [1118] = 915, - [1119] = 917, - [1120] = 937, - [1121] = 951, - [1122] = 932, - [1123] = 894, - [1124] = 1114, - [1125] = 883, - [1126] = 898, - [1127] = 903, - [1128] = 915, - [1129] = 917, - [1130] = 937, - [1131] = 951, - [1132] = 932, - [1133] = 895, - [1134] = 1114, - [1135] = 883, - [1136] = 898, - [1137] = 903, - [1138] = 915, + [996] = 996, + [997] = 919, + [998] = 903, + [999] = 973, + [1000] = 919, + [1001] = 1001, + [1002] = 1002, + [1003] = 987, + [1004] = 988, + [1005] = 989, + [1006] = 973, + [1007] = 974, + [1008] = 975, + [1009] = 919, + [1010] = 902, + [1011] = 911, + [1012] = 919, + [1013] = 1013, + [1014] = 905, + [1015] = 906, + [1016] = 912, + [1017] = 907, + [1018] = 905, + [1019] = 987, + [1020] = 988, + [1021] = 989, + [1022] = 973, + [1023] = 974, + [1024] = 975, + [1025] = 908, + [1026] = 906, + [1027] = 907, + [1028] = 913, + [1029] = 908, + [1030] = 909, + [1031] = 902, + [1032] = 911, + [1033] = 909, + [1034] = 912, + [1035] = 987, + [1036] = 988, + [1037] = 989, + [1038] = 973, + [1039] = 974, + [1040] = 975, + [1041] = 902, + [1042] = 913, + [1043] = 914, + [1044] = 915, + [1045] = 1045, + [1046] = 914, + [1047] = 921, + [1048] = 915, + [1049] = 911, + [1050] = 903, + [1051] = 987, + [1052] = 988, + [1053] = 989, + [1054] = 973, + [1055] = 974, + [1056] = 975, + [1057] = 912, + [1058] = 987, + [1059] = 974, + [1060] = 913, + [1061] = 914, + [1062] = 915, + [1063] = 905, + [1064] = 921, + [1065] = 1065, + [1066] = 903, + [1067] = 987, + [1068] = 988, + [1069] = 989, + [1070] = 973, + [1071] = 974, + [1072] = 975, + [1073] = 903, + [1074] = 906, + [1075] = 907, + [1076] = 905, + [1077] = 906, + [1078] = 907, + [1079] = 908, + [1080] = 1080, + [1081] = 909, + [1082] = 988, + [1083] = 987, + [1084] = 988, + [1085] = 989, + [1086] = 973, + [1087] = 974, + [1088] = 975, + [1089] = 919, + [1090] = 921, + [1091] = 911, + [1092] = 912, + [1093] = 913, + [1094] = 989, + [1095] = 905, + [1096] = 906, + [1097] = 914, + [1098] = 907, + [1099] = 987, + [1100] = 988, + [1101] = 989, + [1102] = 973, + [1103] = 974, + [1104] = 975, + [1105] = 915, + [1106] = 908, + [1107] = 909, + [1108] = 902, + [1109] = 911, + [1110] = 912, + [1111] = 913, + [1112] = 914, + [1113] = 919, + [1114] = 915, + [1115] = 987, + [1116] = 988, + [1117] = 989, + [1118] = 973, + [1119] = 974, + [1120] = 975, + [1121] = 1121, + [1122] = 921, + [1123] = 921, + [1124] = 1124, + [1125] = 903, + [1126] = 1126, + [1127] = 665, + [1128] = 905, + [1129] = 906, + [1130] = 975, + [1131] = 987, + [1132] = 988, + [1133] = 989, + [1134] = 922, + [1135] = 1001, + [1136] = 1002, + [1137] = 1121, + [1138] = 1124, [1139] = 917, - [1140] = 937, - [1141] = 951, - [1142] = 932, - [1143] = 896, - [1144] = 1114, - [1145] = 883, - [1146] = 898, - [1147] = 903, - [1148] = 915, + [1140] = 918, + [1141] = 956, + [1142] = 954, + [1143] = 907, + [1144] = 922, + [1145] = 1001, + [1146] = 1002, + [1147] = 1121, + [1148] = 1124, [1149] = 917, - [1150] = 937, - [1151] = 951, - [1152] = 932, - [1153] = 882, - [1154] = 1114, - [1155] = 883, - [1156] = 898, - [1157] = 903, - [1158] = 915, + [1150] = 918, + [1151] = 956, + [1152] = 954, + [1153] = 908, + [1154] = 922, + [1155] = 1001, + [1156] = 1002, + [1157] = 1121, + [1158] = 1124, [1159] = 917, - [1160] = 937, - [1161] = 951, - [1162] = 932, - [1163] = 900, - [1164] = 1114, - [1165] = 883, - [1166] = 898, - [1167] = 903, - [1168] = 915, + [1160] = 918, + [1161] = 956, + [1162] = 954, + [1163] = 909, + [1164] = 922, + [1165] = 1001, + [1166] = 1002, + [1167] = 1121, + [1168] = 1124, [1169] = 917, - [1170] = 937, - [1171] = 951, - [1172] = 932, - [1173] = 912, - [1174] = 1114, - [1175] = 883, - [1176] = 898, - [1177] = 903, - [1178] = 915, + [1170] = 918, + [1171] = 956, + [1172] = 954, + [1173] = 902, + [1174] = 922, + [1175] = 1001, + [1176] = 1002, + [1177] = 1121, + [1178] = 1124, [1179] = 917, - [1180] = 937, - [1181] = 951, - [1182] = 932, - [1183] = 890, - [1184] = 1114, - [1185] = 883, - [1186] = 898, - [1187] = 903, - [1188] = 915, + [1180] = 918, + [1181] = 956, + [1182] = 954, + [1183] = 911, + [1184] = 922, + [1185] = 1001, + [1186] = 1002, + [1187] = 1121, + [1188] = 1124, [1189] = 917, - [1190] = 937, - [1191] = 951, - [1192] = 932, - [1193] = 887, - [1194] = 1114, - [1195] = 883, - [1196] = 898, - [1197] = 903, - [1198] = 915, + [1190] = 918, + [1191] = 956, + [1192] = 954, + [1193] = 912, + [1194] = 922, + [1195] = 1001, + [1196] = 1002, + [1197] = 1121, + [1198] = 1124, [1199] = 917, - [1200] = 937, - [1201] = 951, - [1202] = 932, - [1203] = 1114, - [1204] = 1114, - [1205] = 883, - [1206] = 898, - [1207] = 903, - [1208] = 915, + [1200] = 918, + [1201] = 956, + [1202] = 954, + [1203] = 913, + [1204] = 922, + [1205] = 1001, + [1206] = 1002, + [1207] = 1121, + [1208] = 1124, [1209] = 917, - [1210] = 937, - [1211] = 951, - [1212] = 932, - [1213] = 894, - [1214] = 960, - [1215] = 960, - [1216] = 960, - [1217] = 960, - [1218] = 960, - [1219] = 960, - [1220] = 960, - [1221] = 960, - [1222] = 960, - [1223] = 960, - [1224] = 886, + [1210] = 918, + [1211] = 956, + [1212] = 954, + [1213] = 914, + [1214] = 922, + [1215] = 1001, + [1216] = 1002, + [1217] = 1121, + [1218] = 1124, + [1219] = 917, + [1220] = 918, + [1221] = 956, + [1222] = 954, + [1223] = 915, + [1224] = 922, + [1225] = 1001, + [1226] = 1002, + [1227] = 1121, + [1228] = 1124, + [1229] = 917, + [1230] = 918, + [1231] = 956, + [1232] = 954, + [1233] = 919, + [1234] = 1065, + [1235] = 1065, + [1236] = 1065, + [1237] = 1065, + [1238] = 1065, + [1239] = 1065, + [1240] = 1065, + [1241] = 1065, + [1242] = 1065, + [1243] = 1065, + [1244] = 919, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -2876,12 +2912,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(179); END_STATE(); case 15: + if (lookahead == '\r') ADVANCE(177); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"') ADVANCE(178); + END_STATE(); + case 16: if (lookahead == '\r') ADVANCE(129); if (lookahead == '\\') ADVANCE(131); if (lookahead != 0 && lookahead != ')') ADVANCE(130); END_STATE(); - case 16: + case 17: if (lookahead == '\r') ADVANCE(154); if (lookahead != 0 && lookahead != '\t' && @@ -2891,12 +2933,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '{' && lookahead != '}') ADVANCE(155); END_STATE(); - case 17: - if (lookahead == '\r') ADVANCE(177); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '"') ADVANCE(178); - END_STATE(); case 18: if (lookahead == '.') ADVANCE(71); END_STATE(); @@ -4328,8 +4364,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [204] = {.lex_state = 41, .external_lex_state = 2}, [205] = {.lex_state = 38, .external_lex_state = 2}, [206] = {.lex_state = 40, .external_lex_state = 2}, - [207] = {.lex_state = 37, .external_lex_state = 2}, - [208] = {.lex_state = 38, .external_lex_state = 17}, + [207] = {.lex_state = 38, .external_lex_state = 17}, + [208] = {.lex_state = 37, .external_lex_state = 2}, [209] = {.lex_state = 38, .external_lex_state = 17}, [210] = {.lex_state = 41, .external_lex_state = 10}, [211] = {.lex_state = 35, .external_lex_state = 6}, @@ -4355,9 +4391,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [231] = {.lex_state = 38, .external_lex_state = 7}, [232] = {.lex_state = 41, .external_lex_state = 3}, [233] = {.lex_state = 38, .external_lex_state = 8}, - [234] = {.lex_state = 38, .external_lex_state = 5}, - [235] = {.lex_state = 38, .external_lex_state = 5}, - [236] = {.lex_state = 38, .external_lex_state = 5}, + [234] = {.lex_state = 38, .external_lex_state = 2}, + [235] = {.lex_state = 38, .external_lex_state = 2}, + [236] = {.lex_state = 38, .external_lex_state = 2}, [237] = {.lex_state = 38, .external_lex_state = 5}, [238] = {.lex_state = 38, .external_lex_state = 5}, [239] = {.lex_state = 38, .external_lex_state = 5}, @@ -4365,7 +4401,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [241] = {.lex_state = 38, .external_lex_state = 5}, [242] = {.lex_state = 38, .external_lex_state = 5}, [243] = {.lex_state = 38, .external_lex_state = 5}, - [244] = {.lex_state = 38, .external_lex_state = 2}, + [244] = {.lex_state = 38, .external_lex_state = 5}, [245] = {.lex_state = 38, .external_lex_state = 5}, [246] = {.lex_state = 38, .external_lex_state = 5}, [247] = {.lex_state = 38, .external_lex_state = 5}, @@ -4382,29 +4418,29 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [258] = {.lex_state = 38, .external_lex_state = 5}, [259] = {.lex_state = 38, .external_lex_state = 5}, [260] = {.lex_state = 38, .external_lex_state = 5}, - [261] = {.lex_state = 38, .external_lex_state = 2}, - [262] = {.lex_state = 38, .external_lex_state = 6}, - [263] = {.lex_state = 38, .external_lex_state = 6}, - [264] = {.lex_state = 38, .external_lex_state = 6}, + [261] = {.lex_state = 38, .external_lex_state = 5}, + [262] = {.lex_state = 38, .external_lex_state = 5}, + [263] = {.lex_state = 38, .external_lex_state = 5}, + [264] = {.lex_state = 38, .external_lex_state = 5}, [265] = {.lex_state = 38, .external_lex_state = 2}, [266] = {.lex_state = 38, .external_lex_state = 2}, - [267] = {.lex_state = 38, .external_lex_state = 2}, + [267] = {.lex_state = 38, .external_lex_state = 6}, [268] = {.lex_state = 38, .external_lex_state = 6}, [269] = {.lex_state = 38, .external_lex_state = 6}, - [270] = {.lex_state = 38, .external_lex_state = 6}, + [270] = {.lex_state = 38, .external_lex_state = 2}, [271] = {.lex_state = 38, .external_lex_state = 6}, [272] = {.lex_state = 38, .external_lex_state = 6}, - [273] = {.lex_state = 38, .external_lex_state = 6}, + [273] = {.lex_state = 38, .external_lex_state = 2}, [274] = {.lex_state = 38, .external_lex_state = 6}, [275] = {.lex_state = 38, .external_lex_state = 6}, [276] = {.lex_state = 38, .external_lex_state = 6}, - [277] = {.lex_state = 38, .external_lex_state = 9}, - [278] = {.lex_state = 38, .external_lex_state = 9}, - [279] = {.lex_state = 38, .external_lex_state = 9}, + [277] = {.lex_state = 38, .external_lex_state = 6}, + [278] = {.lex_state = 38, .external_lex_state = 6}, + [279] = {.lex_state = 38, .external_lex_state = 6}, [280] = {.lex_state = 38, .external_lex_state = 6}, - [281] = {.lex_state = 38, .external_lex_state = 6}, - [282] = {.lex_state = 38, .external_lex_state = 6}, - [283] = {.lex_state = 38, .external_lex_state = 6}, + [281] = {.lex_state = 38, .external_lex_state = 2}, + [282] = {.lex_state = 38, .external_lex_state = 2}, + [283] = {.lex_state = 38, .external_lex_state = 9}, [284] = {.lex_state = 38, .external_lex_state = 6}, [285] = {.lex_state = 38, .external_lex_state = 6}, [286] = {.lex_state = 38, .external_lex_state = 6}, @@ -4417,31 +4453,31 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [293] = {.lex_state = 38, .external_lex_state = 6}, [294] = {.lex_state = 38, .external_lex_state = 6}, [295] = {.lex_state = 38, .external_lex_state = 6}, - [296] = {.lex_state = 38, .external_lex_state = 2}, - [297] = {.lex_state = 38, .external_lex_state = 2}, - [298] = {.lex_state = 38, .external_lex_state = 2}, - [299] = {.lex_state = 38, .external_lex_state = 2}, + [296] = {.lex_state = 38, .external_lex_state = 6}, + [297] = {.lex_state = 38, .external_lex_state = 6}, + [298] = {.lex_state = 38, .external_lex_state = 6}, + [299] = {.lex_state = 38, .external_lex_state = 6}, [300] = {.lex_state = 38, .external_lex_state = 9}, - [301] = {.lex_state = 38, .external_lex_state = 7}, - [302] = {.lex_state = 38, .external_lex_state = 7}, - [303] = {.lex_state = 38, .external_lex_state = 7}, - [304] = {.lex_state = 38, .external_lex_state = 9}, - [305] = {.lex_state = 38, .external_lex_state = 2}, + [301] = {.lex_state = 38, .external_lex_state = 9}, + [302] = {.lex_state = 38, .external_lex_state = 2}, + [303] = {.lex_state = 38, .external_lex_state = 2}, + [304] = {.lex_state = 38, .external_lex_state = 7}, + [305] = {.lex_state = 38, .external_lex_state = 7}, [306] = {.lex_state = 38, .external_lex_state = 7}, - [307] = {.lex_state = 38, .external_lex_state = 7}, + [307] = {.lex_state = 38, .external_lex_state = 2}, [308] = {.lex_state = 38, .external_lex_state = 9}, - [309] = {.lex_state = 38, .external_lex_state = 7}, + [309] = {.lex_state = 38, .external_lex_state = 9}, [310] = {.lex_state = 38, .external_lex_state = 7}, [311] = {.lex_state = 38, .external_lex_state = 7}, [312] = {.lex_state = 38, .external_lex_state = 7}, [313] = {.lex_state = 38, .external_lex_state = 7}, [314] = {.lex_state = 38, .external_lex_state = 7}, [315] = {.lex_state = 38, .external_lex_state = 7}, - [316] = {.lex_state = 38, .external_lex_state = 9}, - [317] = {.lex_state = 38, .external_lex_state = 9}, - [318] = {.lex_state = 38, .external_lex_state = 9}, - [319] = {.lex_state = 38, .external_lex_state = 7}, - [320] = {.lex_state = 38, .external_lex_state = 7}, + [316] = {.lex_state = 38, .external_lex_state = 7}, + [317] = {.lex_state = 38, .external_lex_state = 7}, + [318] = {.lex_state = 38, .external_lex_state = 7}, + [319] = {.lex_state = 38, .external_lex_state = 2}, + [320] = {.lex_state = 38, .external_lex_state = 9}, [321] = {.lex_state = 38, .external_lex_state = 7}, [322] = {.lex_state = 38, .external_lex_state = 7}, [323] = {.lex_state = 38, .external_lex_state = 7}, @@ -4456,29 +4492,29 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [332] = {.lex_state = 38, .external_lex_state = 7}, [333] = {.lex_state = 38, .external_lex_state = 7}, [334] = {.lex_state = 38, .external_lex_state = 7}, - [335] = {.lex_state = 38, .external_lex_state = 9}, - [336] = {.lex_state = 38, .external_lex_state = 9}, + [335] = {.lex_state = 38, .external_lex_state = 7}, + [336] = {.lex_state = 38, .external_lex_state = 7}, [337] = {.lex_state = 38, .external_lex_state = 9}, - [338] = {.lex_state = 38, .external_lex_state = 2}, - [339] = {.lex_state = 38, .external_lex_state = 2}, - [340] = {.lex_state = 38, .external_lex_state = 8}, + [338] = {.lex_state = 38, .external_lex_state = 9}, + [339] = {.lex_state = 38, .external_lex_state = 9}, + [340] = {.lex_state = 38, .external_lex_state = 9}, [341] = {.lex_state = 38, .external_lex_state = 8}, [342] = {.lex_state = 38, .external_lex_state = 8}, - [343] = {.lex_state = 38, .external_lex_state = 2}, + [343] = {.lex_state = 38, .external_lex_state = 8}, [344] = {.lex_state = 38, .external_lex_state = 9}, [345] = {.lex_state = 38, .external_lex_state = 9}, - [346] = {.lex_state = 38, .external_lex_state = 8}, + [346] = {.lex_state = 38, .external_lex_state = 2}, [347] = {.lex_state = 38, .external_lex_state = 8}, [348] = {.lex_state = 38, .external_lex_state = 8}, - [349] = {.lex_state = 38, .external_lex_state = 8}, + [349] = {.lex_state = 38, .external_lex_state = 2}, [350] = {.lex_state = 38, .external_lex_state = 8}, [351] = {.lex_state = 38, .external_lex_state = 8}, - [352] = {.lex_state = 38, .external_lex_state = 9}, + [352] = {.lex_state = 38, .external_lex_state = 8}, [353] = {.lex_state = 38, .external_lex_state = 8}, - [354] = {.lex_state = 38, .external_lex_state = 8}, - [355] = {.lex_state = 38, .external_lex_state = 9}, - [356] = {.lex_state = 38, .external_lex_state = 9}, - [357] = {.lex_state = 38, .external_lex_state = 8}, + [354] = {.lex_state = 38, .external_lex_state = 9}, + [355] = {.lex_state = 38, .external_lex_state = 8}, + [356] = {.lex_state = 38, .external_lex_state = 8}, + [357] = {.lex_state = 38, .external_lex_state = 9}, [358] = {.lex_state = 38, .external_lex_state = 8}, [359] = {.lex_state = 38, .external_lex_state = 8}, [360] = {.lex_state = 38, .external_lex_state = 8}, @@ -4494,14 +4530,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [370] = {.lex_state = 38, .external_lex_state = 8}, [371] = {.lex_state = 38, .external_lex_state = 8}, [372] = {.lex_state = 38, .external_lex_state = 8}, - [373] = {.lex_state = 38, .external_lex_state = 9}, + [373] = {.lex_state = 38, .external_lex_state = 8}, [374] = {.lex_state = 38, .external_lex_state = 9}, [375] = {.lex_state = 38, .external_lex_state = 9}, [376] = {.lex_state = 38, .external_lex_state = 9}, - [377] = {.lex_state = 9, .external_lex_state = 2}, + [377] = {.lex_state = 38, .external_lex_state = 9}, [378] = {.lex_state = 9, .external_lex_state = 2}, [379] = {.lex_state = 9, .external_lex_state = 2}, - [380] = {.lex_state = 38, .external_lex_state = 9}, + [380] = {.lex_state = 9, .external_lex_state = 2}, [381] = {.lex_state = 38, .external_lex_state = 9}, [382] = {.lex_state = 38, .external_lex_state = 9}, [383] = {.lex_state = 9, .external_lex_state = 2}, @@ -4515,8 +4551,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [391] = {.lex_state = 9, .external_lex_state = 2}, [392] = {.lex_state = 9, .external_lex_state = 2}, [393] = {.lex_state = 38, .external_lex_state = 9}, - [394] = {.lex_state = 9, .external_lex_state = 2}, - [395] = {.lex_state = 9, .external_lex_state = 2}, + [394] = {.lex_state = 38, .external_lex_state = 9}, + [395] = {.lex_state = 38, .external_lex_state = 9}, [396] = {.lex_state = 9, .external_lex_state = 2}, [397] = {.lex_state = 9, .external_lex_state = 2}, [398] = {.lex_state = 9, .external_lex_state = 2}, @@ -4531,25 +4567,25 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [407] = {.lex_state = 9, .external_lex_state = 2}, [408] = {.lex_state = 9, .external_lex_state = 2}, [409] = {.lex_state = 9, .external_lex_state = 2}, - [410] = {.lex_state = 38, .external_lex_state = 9}, - [411] = {.lex_state = 38, .external_lex_state = 3}, - [412] = {.lex_state = 38, .external_lex_state = 3}, - [413] = {.lex_state = 38, .external_lex_state = 3}, - [414] = {.lex_state = 38, .external_lex_state = 2}, + [410] = {.lex_state = 9, .external_lex_state = 2}, + [411] = {.lex_state = 9, .external_lex_state = 2}, + [412] = {.lex_state = 38, .external_lex_state = 9}, + [413] = {.lex_state = 38, .external_lex_state = 9}, + [414] = {.lex_state = 38, .external_lex_state = 9}, [415] = {.lex_state = 38, .external_lex_state = 3}, [416] = {.lex_state = 38, .external_lex_state = 3}, - [417] = {.lex_state = 38, .external_lex_state = 2}, - [418] = {.lex_state = 38, .external_lex_state = 3}, + [417] = {.lex_state = 38, .external_lex_state = 3}, + [418] = {.lex_state = 38, .external_lex_state = 9}, [419] = {.lex_state = 38, .external_lex_state = 3}, [420] = {.lex_state = 38, .external_lex_state = 3}, [421] = {.lex_state = 38, .external_lex_state = 3}, [422] = {.lex_state = 38, .external_lex_state = 3}, [423] = {.lex_state = 38, .external_lex_state = 3}, [424] = {.lex_state = 38, .external_lex_state = 3}, - [425] = {.lex_state = 38, .external_lex_state = 10}, + [425] = {.lex_state = 38, .external_lex_state = 3}, [426] = {.lex_state = 38, .external_lex_state = 3}, [427] = {.lex_state = 38, .external_lex_state = 3}, - [428] = {.lex_state = 38, .external_lex_state = 3}, + [428] = {.lex_state = 38, .external_lex_state = 2}, [429] = {.lex_state = 38, .external_lex_state = 3}, [430] = {.lex_state = 38, .external_lex_state = 3}, [431] = {.lex_state = 38, .external_lex_state = 3}, @@ -4563,34 +4599,34 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [439] = {.lex_state = 38, .external_lex_state = 3}, [440] = {.lex_state = 38, .external_lex_state = 3}, [441] = {.lex_state = 38, .external_lex_state = 3}, - [442] = {.lex_state = 38, .external_lex_state = 13}, - [443] = {.lex_state = 38, .external_lex_state = 13}, - [444] = {.lex_state = 38, .external_lex_state = 10}, - [445] = {.lex_state = 35, .external_lex_state = 2}, - [446] = {.lex_state = 37, .external_lex_state = 2}, - [447] = {.lex_state = 38, .external_lex_state = 10}, - [448] = {.lex_state = 41, .external_lex_state = 2}, - [449] = {.lex_state = 38, .external_lex_state = 2}, + [442] = {.lex_state = 38, .external_lex_state = 3}, + [443] = {.lex_state = 38, .external_lex_state = 3}, + [444] = {.lex_state = 38, .external_lex_state = 3}, + [445] = {.lex_state = 38, .external_lex_state = 13}, + [446] = {.lex_state = 38, .external_lex_state = 13}, + [447] = {.lex_state = 38, .external_lex_state = 2}, + [448] = {.lex_state = 35, .external_lex_state = 2}, + [449] = {.lex_state = 37, .external_lex_state = 2}, [450] = {.lex_state = 38, .external_lex_state = 2}, - [451] = {.lex_state = 38, .external_lex_state = 2}, + [451] = {.lex_state = 41, .external_lex_state = 2}, [452] = {.lex_state = 38, .external_lex_state = 2}, - [453] = {.lex_state = 38, .external_lex_state = 2}, + [453] = {.lex_state = 38, .external_lex_state = 10}, [454] = {.lex_state = 38, .external_lex_state = 10}, - [455] = {.lex_state = 38, .external_lex_state = 10}, - [456] = {.lex_state = 38, .external_lex_state = 10}, + [455] = {.lex_state = 38, .external_lex_state = 2}, + [456] = {.lex_state = 38, .external_lex_state = 2}, [457] = {.lex_state = 38, .external_lex_state = 10}, - [458] = {.lex_state = 38, .external_lex_state = 10}, - [459] = {.lex_state = 38, .external_lex_state = 10}, + [458] = {.lex_state = 38, .external_lex_state = 2}, + [459] = {.lex_state = 38, .external_lex_state = 2}, [460] = {.lex_state = 38, .external_lex_state = 10}, [461] = {.lex_state = 38, .external_lex_state = 10}, [462] = {.lex_state = 38, .external_lex_state = 10}, - [463] = {.lex_state = 38, .external_lex_state = 2}, + [463] = {.lex_state = 38, .external_lex_state = 10}, [464] = {.lex_state = 38, .external_lex_state = 10}, [465] = {.lex_state = 38, .external_lex_state = 10}, [466] = {.lex_state = 38, .external_lex_state = 10}, [467] = {.lex_state = 38, .external_lex_state = 10}, [468] = {.lex_state = 38, .external_lex_state = 10}, - [469] = {.lex_state = 38, .external_lex_state = 10}, + [469] = {.lex_state = 38, .external_lex_state = 2}, [470] = {.lex_state = 38, .external_lex_state = 10}, [471] = {.lex_state = 38, .external_lex_state = 10}, [472] = {.lex_state = 38, .external_lex_state = 10}, @@ -4601,31 +4637,31 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [477] = {.lex_state = 38, .external_lex_state = 10}, [478] = {.lex_state = 38, .external_lex_state = 10}, [479] = {.lex_state = 38, .external_lex_state = 10}, - [480] = {.lex_state = 38, .external_lex_state = 2}, - [481] = {.lex_state = 38, .external_lex_state = 2}, - [482] = {.lex_state = 38, .external_lex_state = 4}, - [483] = {.lex_state = 38, .external_lex_state = 4}, - [484] = {.lex_state = 38, .external_lex_state = 4}, - [485] = {.lex_state = 38, .external_lex_state = 2}, + [480] = {.lex_state = 38, .external_lex_state = 10}, + [481] = {.lex_state = 38, .external_lex_state = 10}, + [482] = {.lex_state = 38, .external_lex_state = 10}, + [483] = {.lex_state = 38, .external_lex_state = 10}, + [484] = {.lex_state = 38, .external_lex_state = 10}, + [485] = {.lex_state = 38, .external_lex_state = 10}, [486] = {.lex_state = 38, .external_lex_state = 2}, - [487] = {.lex_state = 38, .external_lex_state = 2}, + [487] = {.lex_state = 38, .external_lex_state = 4}, [488] = {.lex_state = 38, .external_lex_state = 4}, [489] = {.lex_state = 38, .external_lex_state = 4}, [490] = {.lex_state = 38, .external_lex_state = 2}, - [491] = {.lex_state = 38, .external_lex_state = 4}, + [491] = {.lex_state = 38, .external_lex_state = 2}, [492] = {.lex_state = 38, .external_lex_state = 4}, [493] = {.lex_state = 38, .external_lex_state = 4}, - [494] = {.lex_state = 38, .external_lex_state = 4}, + [494] = {.lex_state = 38, .external_lex_state = 2}, [495] = {.lex_state = 38, .external_lex_state = 4}, [496] = {.lex_state = 38, .external_lex_state = 4}, [497] = {.lex_state = 38, .external_lex_state = 4}, - [498] = {.lex_state = 38, .external_lex_state = 2}, - [499] = {.lex_state = 38, .external_lex_state = 2}, - [500] = {.lex_state = 38, .external_lex_state = 2}, + [498] = {.lex_state = 38, .external_lex_state = 4}, + [499] = {.lex_state = 38, .external_lex_state = 4}, + [500] = {.lex_state = 38, .external_lex_state = 4}, [501] = {.lex_state = 38, .external_lex_state = 4}, - [502] = {.lex_state = 38, .external_lex_state = 4}, - [503] = {.lex_state = 38, .external_lex_state = 4}, - [504] = {.lex_state = 38, .external_lex_state = 4}, + [502] = {.lex_state = 38, .external_lex_state = 2}, + [503] = {.lex_state = 38, .external_lex_state = 2}, + [504] = {.lex_state = 38, .external_lex_state = 2}, [505] = {.lex_state = 38, .external_lex_state = 4}, [506] = {.lex_state = 38, .external_lex_state = 4}, [507] = {.lex_state = 38, .external_lex_state = 4}, @@ -4638,24 +4674,24 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [514] = {.lex_state = 38, .external_lex_state = 4}, [515] = {.lex_state = 38, .external_lex_state = 4}, [516] = {.lex_state = 38, .external_lex_state = 4}, - [517] = {.lex_state = 38, .external_lex_state = 2}, - [518] = {.lex_state = 38, .external_lex_state = 2}, - [519] = {.lex_state = 38, .external_lex_state = 5}, - [520] = {.lex_state = 38, .external_lex_state = 5}, - [521] = {.lex_state = 38, .external_lex_state = 9}, - [522] = {.lex_state = 33, .external_lex_state = 10}, - [523] = {.lex_state = 38, .external_lex_state = 2}, - [524] = {.lex_state = 38, .external_lex_state = 2}, + [517] = {.lex_state = 38, .external_lex_state = 4}, + [518] = {.lex_state = 38, .external_lex_state = 4}, + [519] = {.lex_state = 38, .external_lex_state = 4}, + [520] = {.lex_state = 38, .external_lex_state = 4}, + [521] = {.lex_state = 38, .external_lex_state = 2}, + [522] = {.lex_state = 1, .external_lex_state = 2}, + [523] = {.lex_state = 33, .external_lex_state = 2}, + [524] = {.lex_state = 1, .external_lex_state = 2}, [525] = {.lex_state = 33, .external_lex_state = 7}, - [526] = {.lex_state = 33, .external_lex_state = 7}, + [526] = {.lex_state = 33, .external_lex_state = 2}, [527] = {.lex_state = 38, .external_lex_state = 2}, [528] = {.lex_state = 38, .external_lex_state = 2}, [529] = {.lex_state = 38, .external_lex_state = 2}, - [530] = {.lex_state = 38, .external_lex_state = 2}, - [531] = {.lex_state = 38, .external_lex_state = 2}, + [530] = {.lex_state = 33, .external_lex_state = 5}, + [531] = {.lex_state = 33, .external_lex_state = 3}, [532] = {.lex_state = 38, .external_lex_state = 2}, [533] = {.lex_state = 38, .external_lex_state = 2}, - [534] = {.lex_state = 38, .external_lex_state = 2}, + [534] = {.lex_state = 33, .external_lex_state = 5}, [535] = {.lex_state = 38, .external_lex_state = 2}, [536] = {.lex_state = 38, .external_lex_state = 2}, [537] = {.lex_state = 38, .external_lex_state = 2}, @@ -4663,104 +4699,104 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [539] = {.lex_state = 38, .external_lex_state = 2}, [540] = {.lex_state = 38, .external_lex_state = 2}, [541] = {.lex_state = 38, .external_lex_state = 2}, - [542] = {.lex_state = 38, .external_lex_state = 2}, - [543] = {.lex_state = 33, .external_lex_state = 9}, - [544] = {.lex_state = 33, .external_lex_state = 6}, - [545] = {.lex_state = 33, .external_lex_state = 2}, - [546] = {.lex_state = 33, .external_lex_state = 5}, - [547] = {.lex_state = 33, .external_lex_state = 2}, - [548] = {.lex_state = 1, .external_lex_state = 2}, - [549] = {.lex_state = 33, .external_lex_state = 10}, - [550] = {.lex_state = 33, .external_lex_state = 5}, - [551] = {.lex_state = 1, .external_lex_state = 2}, - [552] = {.lex_state = 33, .external_lex_state = 8}, - [553] = {.lex_state = 33, .external_lex_state = 9}, - [554] = {.lex_state = 33, .external_lex_state = 2}, - [555] = {.lex_state = 33, .external_lex_state = 8}, - [556] = {.lex_state = 33, .external_lex_state = 10}, - [557] = {.lex_state = 33, .external_lex_state = 6}, - [558] = {.lex_state = 33, .external_lex_state = 10}, - [559] = {.lex_state = 33, .external_lex_state = 10}, - [560] = {.lex_state = 33, .external_lex_state = 6}, - [561] = {.lex_state = 33, .external_lex_state = 3}, - [562] = {.lex_state = 33, .external_lex_state = 3}, - [563] = {.lex_state = 33, .external_lex_state = 9}, - [564] = {.lex_state = 33, .external_lex_state = 5}, - [565] = {.lex_state = 33, .external_lex_state = 7}, - [566] = {.lex_state = 33, .external_lex_state = 8}, - [567] = {.lex_state = 33, .external_lex_state = 10}, - [568] = {.lex_state = 33, .external_lex_state = 8}, - [569] = {.lex_state = 33, .external_lex_state = 10}, + [542] = {.lex_state = 33, .external_lex_state = 2}, + [543] = {.lex_state = 33, .external_lex_state = 7}, + [544] = {.lex_state = 38, .external_lex_state = 2}, + [545] = {.lex_state = 38, .external_lex_state = 2}, + [546] = {.lex_state = 38, .external_lex_state = 2}, + [547] = {.lex_state = 38, .external_lex_state = 2}, + [548] = {.lex_state = 38, .external_lex_state = 2}, + [549] = {.lex_state = 38, .external_lex_state = 2}, + [550] = {.lex_state = 38, .external_lex_state = 2}, + [551] = {.lex_state = 38, .external_lex_state = 2}, + [552] = {.lex_state = 38, .external_lex_state = 2}, + [553] = {.lex_state = 38, .external_lex_state = 2}, + [554] = {.lex_state = 38, .external_lex_state = 2}, + [555] = {.lex_state = 38, .external_lex_state = 2}, + [556] = {.lex_state = 38, .external_lex_state = 2}, + [557] = {.lex_state = 38, .external_lex_state = 2}, + [558] = {.lex_state = 38, .external_lex_state = 2}, + [559] = {.lex_state = 38, .external_lex_state = 2}, + [560] = {.lex_state = 33, .external_lex_state = 7}, + [561] = {.lex_state = 33, .external_lex_state = 9}, + [562] = {.lex_state = 33, .external_lex_state = 8}, + [563] = {.lex_state = 33, .external_lex_state = 8}, + [564] = {.lex_state = 1, .external_lex_state = 2}, + [565] = {.lex_state = 33, .external_lex_state = 5}, + [566] = {.lex_state = 33, .external_lex_state = 2}, + [567] = {.lex_state = 33, .external_lex_state = 6}, + [568] = {.lex_state = 33, .external_lex_state = 7}, + [569] = {.lex_state = 1, .external_lex_state = 2}, [570] = {.lex_state = 33, .external_lex_state = 10}, - [571] = {.lex_state = 33, .external_lex_state = 2}, - [572] = {.lex_state = 33, .external_lex_state = 2}, - [573] = {.lex_state = 1, .external_lex_state = 2}, - [574] = {.lex_state = 33, .external_lex_state = 3}, - [575] = {.lex_state = 1, .external_lex_state = 2}, - [576] = {.lex_state = 33, .external_lex_state = 9}, - [577] = {.lex_state = 33, .external_lex_state = 7}, - [578] = {.lex_state = 33, .external_lex_state = 3}, - [579] = {.lex_state = 33, .external_lex_state = 5}, - [580] = {.lex_state = 33, .external_lex_state = 6}, - [581] = {.lex_state = 33, .external_lex_state = 4}, - [582] = {.lex_state = 33, .external_lex_state = 4}, - [583] = {.lex_state = 33, .external_lex_state = 2}, - [584] = {.lex_state = 33, .external_lex_state = 9}, - [585] = {.lex_state = 33, .external_lex_state = 6}, - [586] = {.lex_state = 33, .external_lex_state = 9}, + [571] = {.lex_state = 33, .external_lex_state = 10}, + [572] = {.lex_state = 33, .external_lex_state = 9}, + [573] = {.lex_state = 33, .external_lex_state = 8}, + [574] = {.lex_state = 33, .external_lex_state = 10}, + [575] = {.lex_state = 33, .external_lex_state = 6}, + [576] = {.lex_state = 33, .external_lex_state = 5}, + [577] = {.lex_state = 33, .external_lex_state = 9}, + [578] = {.lex_state = 33, .external_lex_state = 9}, + [579] = {.lex_state = 33, .external_lex_state = 10}, + [580] = {.lex_state = 33, .external_lex_state = 10}, + [581] = {.lex_state = 33, .external_lex_state = 10}, + [582] = {.lex_state = 1, .external_lex_state = 2}, + [583] = {.lex_state = 33, .external_lex_state = 8}, + [584] = {.lex_state = 1, .external_lex_state = 2}, + [585] = {.lex_state = 33, .external_lex_state = 8}, + [586] = {.lex_state = 33, .external_lex_state = 8}, [587] = {.lex_state = 33, .external_lex_state = 9}, - [588] = {.lex_state = 33, .external_lex_state = 8}, - [589] = {.lex_state = 33, .external_lex_state = 3}, - [590] = {.lex_state = 1, .external_lex_state = 2}, - [591] = {.lex_state = 33, .external_lex_state = 3}, - [592] = {.lex_state = 33, .external_lex_state = 4}, - [593] = {.lex_state = 33, .external_lex_state = 9}, - [594] = {.lex_state = 33, .external_lex_state = 5}, - [595] = {.lex_state = 33, .external_lex_state = 4}, - [596] = {.lex_state = 1, .external_lex_state = 2}, - [597] = {.lex_state = 33, .external_lex_state = 8}, - [598] = {.lex_state = 33, .external_lex_state = 5}, + [588] = {.lex_state = 33, .external_lex_state = 7}, + [589] = {.lex_state = 33, .external_lex_state = 10}, + [590] = {.lex_state = 33, .external_lex_state = 7}, + [591] = {.lex_state = 33, .external_lex_state = 10}, + [592] = {.lex_state = 33, .external_lex_state = 9}, + [593] = {.lex_state = 33, .external_lex_state = 2}, + [594] = {.lex_state = 33, .external_lex_state = 6}, + [595] = {.lex_state = 33, .external_lex_state = 3}, + [596] = {.lex_state = 33, .external_lex_state = 6}, + [597] = {.lex_state = 33, .external_lex_state = 3}, + [598] = {.lex_state = 33, .external_lex_state = 9}, [599] = {.lex_state = 33, .external_lex_state = 6}, - [600] = {.lex_state = 38, .external_lex_state = 2}, - [601] = {.lex_state = 38, .external_lex_state = 2}, - [602] = {.lex_state = 38, .external_lex_state = 2}, - [603] = {.lex_state = 33, .external_lex_state = 7}, - [604] = {.lex_state = 38, .external_lex_state = 2}, - [605] = {.lex_state = 38, .external_lex_state = 2}, - [606] = {.lex_state = 33, .external_lex_state = 4}, - [607] = {.lex_state = 33, .external_lex_state = 4}, - [608] = {.lex_state = 33, .external_lex_state = 7}, - [609] = {.lex_state = 38, .external_lex_state = 2}, - [610] = {.lex_state = 38, .external_lex_state = 2}, - [611] = {.lex_state = 38, .external_lex_state = 2}, - [612] = {.lex_state = 38, .external_lex_state = 2}, - [613] = {.lex_state = 38, .external_lex_state = 2}, - [614] = {.lex_state = 33, .external_lex_state = 2}, - [615] = {.lex_state = 33, .external_lex_state = 2}, - [616] = {.lex_state = 33, .external_lex_state = 2}, - [617] = {.lex_state = 33, .external_lex_state = 2}, - [618] = {.lex_state = 33, .external_lex_state = 2}, - [619] = {.lex_state = 33, .external_lex_state = 2}, - [620] = {.lex_state = 5, .external_lex_state = 20}, - [621] = {.lex_state = 5, .external_lex_state = 20}, - [622] = {.lex_state = 5, .external_lex_state = 20}, - [623] = {.lex_state = 5, .external_lex_state = 20}, - [624] = {.lex_state = 5, .external_lex_state = 20}, - [625] = {.lex_state = 5, .external_lex_state = 20}, - [626] = {.lex_state = 5, .external_lex_state = 20}, - [627] = {.lex_state = 5, .external_lex_state = 20}, - [628] = {.lex_state = 5, .external_lex_state = 20}, - [629] = {.lex_state = 5, .external_lex_state = 20}, - [630] = {.lex_state = 5, .external_lex_state = 20}, - [631] = {.lex_state = 5, .external_lex_state = 20}, - [632] = {.lex_state = 5, .external_lex_state = 20}, - [633] = {.lex_state = 5, .external_lex_state = 20}, - [634] = {.lex_state = 5, .external_lex_state = 20}, - [635] = {.lex_state = 5, .external_lex_state = 20}, - [636] = {.lex_state = 5, .external_lex_state = 20}, - [637] = {.lex_state = 5, .external_lex_state = 20}, - [638] = {.lex_state = 5, .external_lex_state = 20}, - [639] = {.lex_state = 5, .external_lex_state = 20}, + [600] = {.lex_state = 33, .external_lex_state = 3}, + [601] = {.lex_state = 33, .external_lex_state = 4}, + [602] = {.lex_state = 33, .external_lex_state = 4}, + [603] = {.lex_state = 33, .external_lex_state = 6}, + [604] = {.lex_state = 33, .external_lex_state = 6}, + [605] = {.lex_state = 33, .external_lex_state = 4}, + [606] = {.lex_state = 33, .external_lex_state = 5}, + [607] = {.lex_state = 33, .external_lex_state = 8}, + [608] = {.lex_state = 33, .external_lex_state = 8}, + [609] = {.lex_state = 33, .external_lex_state = 6}, + [610] = {.lex_state = 33, .external_lex_state = 2}, + [611] = {.lex_state = 33, .external_lex_state = 3}, + [612] = {.lex_state = 33, .external_lex_state = 9}, + [613] = {.lex_state = 33, .external_lex_state = 4}, + [614] = {.lex_state = 33, .external_lex_state = 4}, + [615] = {.lex_state = 33, .external_lex_state = 3}, + [616] = {.lex_state = 33, .external_lex_state = 7}, + [617] = {.lex_state = 33, .external_lex_state = 4}, + [618] = {.lex_state = 33, .external_lex_state = 7}, + [619] = {.lex_state = 33, .external_lex_state = 5}, + [620] = {.lex_state = 33, .external_lex_state = 9}, + [621] = {.lex_state = 33, .external_lex_state = 10}, + [622] = {.lex_state = 33, .external_lex_state = 5}, + [623] = {.lex_state = 33, .external_lex_state = 5}, + [624] = {.lex_state = 33, .external_lex_state = 2}, + [625] = {.lex_state = 1, .external_lex_state = 2}, + [626] = {.lex_state = 33, .external_lex_state = 3}, + [627] = {.lex_state = 33, .external_lex_state = 4}, + [628] = {.lex_state = 1, .external_lex_state = 2}, + [629] = {.lex_state = 33, .external_lex_state = 4}, + [630] = {.lex_state = 33, .external_lex_state = 3}, + [631] = {.lex_state = 33, .external_lex_state = 2}, + [632] = {.lex_state = 33, .external_lex_state = 2}, + [633] = {.lex_state = 33, .external_lex_state = 2}, + [634] = {.lex_state = 33, .external_lex_state = 2}, + [635] = {.lex_state = 33, .external_lex_state = 2}, + [636] = {.lex_state = 33, .external_lex_state = 2}, + [637] = {.lex_state = 33, .external_lex_state = 2}, + [638] = {.lex_state = 33, .external_lex_state = 2}, + [639] = {.lex_state = 33, .external_lex_state = 2}, [640] = {.lex_state = 5, .external_lex_state = 20}, [641] = {.lex_state = 5, .external_lex_state = 20}, [642] = {.lex_state = 5, .external_lex_state = 20}, @@ -4773,35 +4809,35 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [649] = {.lex_state = 5, .external_lex_state = 20}, [650] = {.lex_state = 5, .external_lex_state = 20}, [651] = {.lex_state = 5, .external_lex_state = 20}, - [652] = {.lex_state = 5}, - [653] = {.lex_state = 5}, - [654] = {.lex_state = 5}, - [655] = {.lex_state = 5}, - [656] = {.lex_state = 5}, - [657] = {.lex_state = 5}, - [658] = {.lex_state = 7}, - [659] = {.lex_state = 5}, - [660] = {.lex_state = 5}, - [661] = {.lex_state = 5}, - [662] = {.lex_state = 5}, - [663] = {.lex_state = 5}, - [664] = {.lex_state = 7}, - [665] = {.lex_state = 7}, - [666] = {.lex_state = 5}, - [667] = {.lex_state = 5}, - [668] = {.lex_state = 5}, - [669] = {.lex_state = 5}, - [670] = {.lex_state = 5}, - [671] = {.lex_state = 5}, + [652] = {.lex_state = 5, .external_lex_state = 20}, + [653] = {.lex_state = 5, .external_lex_state = 20}, + [654] = {.lex_state = 5, .external_lex_state = 20}, + [655] = {.lex_state = 5, .external_lex_state = 20}, + [656] = {.lex_state = 5, .external_lex_state = 20}, + [657] = {.lex_state = 5, .external_lex_state = 20}, + [658] = {.lex_state = 5, .external_lex_state = 20}, + [659] = {.lex_state = 5, .external_lex_state = 20}, + [660] = {.lex_state = 5, .external_lex_state = 20}, + [661] = {.lex_state = 5, .external_lex_state = 20}, + [662] = {.lex_state = 5, .external_lex_state = 20}, + [663] = {.lex_state = 5, .external_lex_state = 20}, + [664] = {.lex_state = 5, .external_lex_state = 20}, + [665] = {.lex_state = 5, .external_lex_state = 20}, + [666] = {.lex_state = 5, .external_lex_state = 20}, + [667] = {.lex_state = 5, .external_lex_state = 20}, + [668] = {.lex_state = 5, .external_lex_state = 20}, + [669] = {.lex_state = 5, .external_lex_state = 20}, + [670] = {.lex_state = 5, .external_lex_state = 20}, + [671] = {.lex_state = 5, .external_lex_state = 20}, [672] = {.lex_state = 5}, - [673] = {.lex_state = 7}, + [673] = {.lex_state = 5}, [674] = {.lex_state = 5}, - [675] = {.lex_state = 5}, + [675] = {.lex_state = 7}, [676] = {.lex_state = 5}, [677] = {.lex_state = 5}, [678] = {.lex_state = 5}, [679] = {.lex_state = 5}, - [680] = {.lex_state = 5}, + [680] = {.lex_state = 7}, [681] = {.lex_state = 5}, [682] = {.lex_state = 5}, [683] = {.lex_state = 5}, @@ -4809,543 +4845,563 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [685] = {.lex_state = 5}, [686] = {.lex_state = 5}, [687] = {.lex_state = 5}, - [688] = {.lex_state = 7}, + [688] = {.lex_state = 5}, [689] = {.lex_state = 5}, - [690] = {.lex_state = 7}, - [691] = {.lex_state = 14}, + [690] = {.lex_state = 5}, + [691] = {.lex_state = 5}, [692] = {.lex_state = 5}, [693] = {.lex_state = 5}, - [694] = {.lex_state = 0, .external_lex_state = 21}, - [695] = {.lex_state = 0, .external_lex_state = 21}, - [696] = {.lex_state = 0, .external_lex_state = 22}, - [697] = {.lex_state = 0, .external_lex_state = 23}, - [698] = {.lex_state = 0, .external_lex_state = 24}, - [699] = {.lex_state = 0, .external_lex_state = 22}, - [700] = {.lex_state = 0, .external_lex_state = 23}, - [701] = {.lex_state = 0, .external_lex_state = 25}, - [702] = {.lex_state = 0, .external_lex_state = 26}, - [703] = {.lex_state = 0, .external_lex_state = 27}, - [704] = {.lex_state = 0, .external_lex_state = 28}, - [705] = {.lex_state = 0, .external_lex_state = 29}, - [706] = {.lex_state = 0}, - [707] = {.lex_state = 0, .external_lex_state = 30}, - [708] = {.lex_state = 0, .external_lex_state = 30}, - [709] = {.lex_state = 0, .external_lex_state = 30}, - [710] = {.lex_state = 0, .external_lex_state = 22}, - [711] = {.lex_state = 0, .external_lex_state = 23}, - [712] = {.lex_state = 0, .external_lex_state = 24}, - [713] = {.lex_state = 0, .external_lex_state = 22}, - [714] = {.lex_state = 0, .external_lex_state = 23}, - [715] = {.lex_state = 0, .external_lex_state = 25}, - [716] = {.lex_state = 0, .external_lex_state = 26}, - [717] = {.lex_state = 0, .external_lex_state = 27}, - [718] = {.lex_state = 0, .external_lex_state = 28}, - [719] = {.lex_state = 0, .external_lex_state = 29}, - [720] = {.lex_state = 0}, - [721] = {.lex_state = 0, .external_lex_state = 30}, - [722] = {.lex_state = 0, .external_lex_state = 30}, - [723] = {.lex_state = 0, .external_lex_state = 30}, - [724] = {.lex_state = 0, .external_lex_state = 21}, - [725] = {.lex_state = 0, .external_lex_state = 30}, - [726] = {.lex_state = 0, .external_lex_state = 22}, - [727] = {.lex_state = 0, .external_lex_state = 23}, - [728] = {.lex_state = 0, .external_lex_state = 24}, - [729] = {.lex_state = 0, .external_lex_state = 22}, - [730] = {.lex_state = 0, .external_lex_state = 23}, - [731] = {.lex_state = 0, .external_lex_state = 25}, - [732] = {.lex_state = 0, .external_lex_state = 26}, - [733] = {.lex_state = 0, .external_lex_state = 27}, - [734] = {.lex_state = 0, .external_lex_state = 28}, - [735] = {.lex_state = 0, .external_lex_state = 29}, - [736] = {.lex_state = 0}, - [737] = {.lex_state = 0, .external_lex_state = 30}, - [738] = {.lex_state = 0, .external_lex_state = 30}, - [739] = {.lex_state = 0, .external_lex_state = 30}, + [694] = {.lex_state = 5}, + [695] = {.lex_state = 7}, + [696] = {.lex_state = 5}, + [697] = {.lex_state = 5}, + [698] = {.lex_state = 5}, + [699] = {.lex_state = 5}, + [700] = {.lex_state = 5}, + [701] = {.lex_state = 5}, + [702] = {.lex_state = 5}, + [703] = {.lex_state = 5}, + [704] = {.lex_state = 5}, + [705] = {.lex_state = 5}, + [706] = {.lex_state = 5}, + [707] = {.lex_state = 7}, + [708] = {.lex_state = 7}, + [709] = {.lex_state = 5}, + [710] = {.lex_state = 7}, + [711] = {.lex_state = 14}, + [712] = {.lex_state = 5}, + [713] = {.lex_state = 5}, + [714] = {.lex_state = 0, .external_lex_state = 21}, + [715] = {.lex_state = 5}, + [716] = {.lex_state = 0, .external_lex_state = 22}, + [717] = {.lex_state = 0, .external_lex_state = 23}, + [718] = {.lex_state = 0, .external_lex_state = 24}, + [719] = {.lex_state = 0, .external_lex_state = 25}, + [720] = {.lex_state = 0, .external_lex_state = 26}, + [721] = {.lex_state = 0, .external_lex_state = 22}, + [722] = {.lex_state = 0, .external_lex_state = 23}, + [723] = {.lex_state = 0, .external_lex_state = 21}, + [724] = {.lex_state = 0, .external_lex_state = 27}, + [725] = {.lex_state = 0, .external_lex_state = 25}, + [726] = {.lex_state = 0, .external_lex_state = 26}, + [727] = {.lex_state = 0, .external_lex_state = 28}, + [728] = {.lex_state = 0}, + [729] = {.lex_state = 0, .external_lex_state = 29}, + [730] = {.lex_state = 0, .external_lex_state = 29}, + [731] = {.lex_state = 0, .external_lex_state = 29}, + [732] = {.lex_state = 0, .external_lex_state = 30}, + [733] = {.lex_state = 5}, + [734] = {.lex_state = 0, .external_lex_state = 23}, + [735] = {.lex_state = 0, .external_lex_state = 24}, + [736] = {.lex_state = 0, .external_lex_state = 28}, + [737] = {.lex_state = 0}, + [738] = {.lex_state = 0, .external_lex_state = 22}, + [739] = {.lex_state = 0, .external_lex_state = 23}, [740] = {.lex_state = 0, .external_lex_state = 21}, - [741] = {.lex_state = 0, .external_lex_state = 21}, - [742] = {.lex_state = 0, .external_lex_state = 22}, - [743] = {.lex_state = 0, .external_lex_state = 23}, - [744] = {.lex_state = 0, .external_lex_state = 24}, - [745] = {.lex_state = 0, .external_lex_state = 25}, - [746] = {.lex_state = 5}, - [747] = {.lex_state = 0, .external_lex_state = 22}, - [748] = {.lex_state = 0, .external_lex_state = 23}, - [749] = {.lex_state = 0, .external_lex_state = 25}, - [750] = {.lex_state = 0, .external_lex_state = 26}, - [751] = {.lex_state = 0, .external_lex_state = 27}, - [752] = {.lex_state = 0, .external_lex_state = 28}, - [753] = {.lex_state = 0, .external_lex_state = 29}, - [754] = {.lex_state = 0}, - [755] = {.lex_state = 0, .external_lex_state = 30}, - [756] = {.lex_state = 0, .external_lex_state = 30}, - [757] = {.lex_state = 0, .external_lex_state = 30}, - [758] = {.lex_state = 0, .external_lex_state = 21}, - [759] = {.lex_state = 5}, - [760] = {.lex_state = 0, .external_lex_state = 22}, - [761] = {.lex_state = 0, .external_lex_state = 23}, - [762] = {.lex_state = 0, .external_lex_state = 24}, - [763] = {.lex_state = 0, .external_lex_state = 26}, - [764] = {.lex_state = 0, .external_lex_state = 27}, - [765] = {.lex_state = 0, .external_lex_state = 28}, + [741] = {.lex_state = 0, .external_lex_state = 27}, + [742] = {.lex_state = 0, .external_lex_state = 25}, + [743] = {.lex_state = 0, .external_lex_state = 26}, + [744] = {.lex_state = 0, .external_lex_state = 28}, + [745] = {.lex_state = 0}, + [746] = {.lex_state = 0, .external_lex_state = 29}, + [747] = {.lex_state = 0, .external_lex_state = 29}, + [748] = {.lex_state = 0, .external_lex_state = 29}, + [749] = {.lex_state = 0, .external_lex_state = 30}, + [750] = {.lex_state = 0, .external_lex_state = 22}, + [751] = {.lex_state = 0, .external_lex_state = 23}, + [752] = {.lex_state = 0, .external_lex_state = 24}, + [753] = {.lex_state = 5}, + [754] = {.lex_state = 0, .external_lex_state = 22}, + [755] = {.lex_state = 0, .external_lex_state = 23}, + [756] = {.lex_state = 0, .external_lex_state = 21}, + [757] = {.lex_state = 0, .external_lex_state = 27}, + [758] = {.lex_state = 0, .external_lex_state = 25}, + [759] = {.lex_state = 0, .external_lex_state = 26}, + [760] = {.lex_state = 0, .external_lex_state = 28}, + [761] = {.lex_state = 0}, + [762] = {.lex_state = 0, .external_lex_state = 29}, + [763] = {.lex_state = 0, .external_lex_state = 29}, + [764] = {.lex_state = 0, .external_lex_state = 29}, + [765] = {.lex_state = 0, .external_lex_state = 30}, [766] = {.lex_state = 0, .external_lex_state = 22}, [767] = {.lex_state = 0, .external_lex_state = 23}, - [768] = {.lex_state = 0, .external_lex_state = 25}, - [769] = {.lex_state = 0, .external_lex_state = 26}, - [770] = {.lex_state = 0, .external_lex_state = 27}, - [771] = {.lex_state = 0, .external_lex_state = 28}, - [772] = {.lex_state = 0, .external_lex_state = 29}, - [773] = {.lex_state = 0}, - [774] = {.lex_state = 0, .external_lex_state = 30}, - [775] = {.lex_state = 0, .external_lex_state = 30}, - [776] = {.lex_state = 0, .external_lex_state = 30}, - [777] = {.lex_state = 0, .external_lex_state = 21}, - [778] = {.lex_state = 0, .external_lex_state = 22}, - [779] = {.lex_state = 0, .external_lex_state = 23}, - [780] = {.lex_state = 0, .external_lex_state = 24}, - [781] = {.lex_state = 0, .external_lex_state = 29}, - [782] = {.lex_state = 0, .external_lex_state = 22}, - [783] = {.lex_state = 0, .external_lex_state = 23}, - [784] = {.lex_state = 0, .external_lex_state = 25}, - [785] = {.lex_state = 0, .external_lex_state = 26}, - [786] = {.lex_state = 0, .external_lex_state = 27}, - [787] = {.lex_state = 0, .external_lex_state = 28}, - [788] = {.lex_state = 0, .external_lex_state = 29}, - [789] = {.lex_state = 0}, - [790] = {.lex_state = 0, .external_lex_state = 30}, - [791] = {.lex_state = 0, .external_lex_state = 30}, - [792] = {.lex_state = 0, .external_lex_state = 30}, - [793] = {.lex_state = 0, .external_lex_state = 21}, - [794] = {.lex_state = 5}, - [795] = {.lex_state = 0, .external_lex_state = 22}, - [796] = {.lex_state = 0, .external_lex_state = 23}, - [797] = {.lex_state = 0, .external_lex_state = 24}, - [798] = {.lex_state = 0, .external_lex_state = 22}, - [799] = {.lex_state = 0, .external_lex_state = 23}, - [800] = {.lex_state = 0, .external_lex_state = 25}, - [801] = {.lex_state = 0, .external_lex_state = 26}, - [802] = {.lex_state = 0, .external_lex_state = 27}, - [803] = {.lex_state = 0, .external_lex_state = 28}, - [804] = {.lex_state = 0, .external_lex_state = 29}, - [805] = {.lex_state = 0}, - [806] = {.lex_state = 0, .external_lex_state = 30}, - [807] = {.lex_state = 0, .external_lex_state = 30}, - [808] = {.lex_state = 0, .external_lex_state = 30}, - [809] = {.lex_state = 0, .external_lex_state = 21}, - [810] = {.lex_state = 0, .external_lex_state = 22}, - [811] = {.lex_state = 0, .external_lex_state = 23}, - [812] = {.lex_state = 0, .external_lex_state = 24}, - [813] = {.lex_state = 5}, - [814] = {.lex_state = 0}, + [768] = {.lex_state = 0, .external_lex_state = 24}, + [769] = {.lex_state = 0, .external_lex_state = 22}, + [770] = {.lex_state = 0, .external_lex_state = 23}, + [771] = {.lex_state = 0, .external_lex_state = 21}, + [772] = {.lex_state = 0, .external_lex_state = 27}, + [773] = {.lex_state = 0, .external_lex_state = 25}, + [774] = {.lex_state = 0, .external_lex_state = 26}, + [775] = {.lex_state = 0, .external_lex_state = 28}, + [776] = {.lex_state = 0}, + [777] = {.lex_state = 0, .external_lex_state = 29}, + [778] = {.lex_state = 0, .external_lex_state = 29}, + [779] = {.lex_state = 0, .external_lex_state = 29}, + [780] = {.lex_state = 0, .external_lex_state = 30}, + [781] = {.lex_state = 0, .external_lex_state = 22}, + [782] = {.lex_state = 0, .external_lex_state = 23}, + [783] = {.lex_state = 0, .external_lex_state = 24}, + [784] = {.lex_state = 0, .external_lex_state = 23}, + [785] = {.lex_state = 0, .external_lex_state = 22}, + [786] = {.lex_state = 0, .external_lex_state = 23}, + [787] = {.lex_state = 0, .external_lex_state = 21}, + [788] = {.lex_state = 0, .external_lex_state = 27}, + [789] = {.lex_state = 0, .external_lex_state = 25}, + [790] = {.lex_state = 0, .external_lex_state = 26}, + [791] = {.lex_state = 0, .external_lex_state = 28}, + [792] = {.lex_state = 0}, + [793] = {.lex_state = 0, .external_lex_state = 29}, + [794] = {.lex_state = 0, .external_lex_state = 29}, + [795] = {.lex_state = 0, .external_lex_state = 29}, + [796] = {.lex_state = 0, .external_lex_state = 30}, + [797] = {.lex_state = 0, .external_lex_state = 29}, + [798] = {.lex_state = 0, .external_lex_state = 29}, + [799] = {.lex_state = 0, .external_lex_state = 22}, + [800] = {.lex_state = 0, .external_lex_state = 23}, + [801] = {.lex_state = 0, .external_lex_state = 24}, + [802] = {.lex_state = 0, .external_lex_state = 22}, + [803] = {.lex_state = 0, .external_lex_state = 22}, + [804] = {.lex_state = 0, .external_lex_state = 23}, + [805] = {.lex_state = 0, .external_lex_state = 21}, + [806] = {.lex_state = 0, .external_lex_state = 27}, + [807] = {.lex_state = 0, .external_lex_state = 25}, + [808] = {.lex_state = 0, .external_lex_state = 26}, + [809] = {.lex_state = 0, .external_lex_state = 28}, + [810] = {.lex_state = 0}, + [811] = {.lex_state = 0, .external_lex_state = 29}, + [812] = {.lex_state = 0, .external_lex_state = 29}, + [813] = {.lex_state = 0, .external_lex_state = 29}, + [814] = {.lex_state = 0, .external_lex_state = 30}, [815] = {.lex_state = 0, .external_lex_state = 22}, [816] = {.lex_state = 0, .external_lex_state = 23}, - [817] = {.lex_state = 0, .external_lex_state = 25}, - [818] = {.lex_state = 5}, - [819] = {.lex_state = 0, .external_lex_state = 26}, - [820] = {.lex_state = 5}, - [821] = {.lex_state = 0, .external_lex_state = 27}, - [822] = {.lex_state = 0, .external_lex_state = 28}, - [823] = {.lex_state = 0, .external_lex_state = 29}, - [824] = {.lex_state = 0}, - [825] = {.lex_state = 0, .external_lex_state = 30}, - [826] = {.lex_state = 0, .external_lex_state = 30}, - [827] = {.lex_state = 0, .external_lex_state = 30}, - [828] = {.lex_state = 5}, - [829] = {.lex_state = 0, .external_lex_state = 23}, - [830] = {.lex_state = 5}, - [831] = {.lex_state = 0, .external_lex_state = 30}, - [832] = {.lex_state = 0, .external_lex_state = 22}, - [833] = {.lex_state = 0, .external_lex_state = 23}, - [834] = {.lex_state = 0, .external_lex_state = 24}, - [835] = {.lex_state = 5}, + [817] = {.lex_state = 0, .external_lex_state = 22}, + [818] = {.lex_state = 0, .external_lex_state = 23}, + [819] = {.lex_state = 0, .external_lex_state = 24}, + [820] = {.lex_state = 0, .external_lex_state = 29}, + [821] = {.lex_state = 0, .external_lex_state = 22}, + [822] = {.lex_state = 0, .external_lex_state = 23}, + [823] = {.lex_state = 0, .external_lex_state = 21}, + [824] = {.lex_state = 0, .external_lex_state = 27}, + [825] = {.lex_state = 0, .external_lex_state = 25}, + [826] = {.lex_state = 0, .external_lex_state = 26}, + [827] = {.lex_state = 0, .external_lex_state = 28}, + [828] = {.lex_state = 0}, + [829] = {.lex_state = 0, .external_lex_state = 29}, + [830] = {.lex_state = 0, .external_lex_state = 29}, + [831] = {.lex_state = 0, .external_lex_state = 29}, + [832] = {.lex_state = 0, .external_lex_state = 30}, + [833] = {.lex_state = 0, .external_lex_state = 22}, + [834] = {.lex_state = 0, .external_lex_state = 23}, + [835] = {.lex_state = 0, .external_lex_state = 24}, [836] = {.lex_state = 5}, - [837] = {.lex_state = 0, .external_lex_state = 30}, - [838] = {.lex_state = 5}, - [839] = {.lex_state = 5}, - [840] = {.lex_state = 0, .external_lex_state = 22}, - [841] = {.lex_state = 0, .external_lex_state = 23}, + [837] = {.lex_state = 0, .external_lex_state = 24}, + [838] = {.lex_state = 0, .external_lex_state = 30}, + [839] = {.lex_state = 0, .external_lex_state = 22}, + [840] = {.lex_state = 0, .external_lex_state = 23}, + [841] = {.lex_state = 0, .external_lex_state = 21}, [842] = {.lex_state = 5}, - [843] = {.lex_state = 5}, - [844] = {.lex_state = 0, .external_lex_state = 22}, - [845] = {.lex_state = 0, .external_lex_state = 23}, - [846] = {.lex_state = 0, .external_lex_state = 25}, - [847] = {.lex_state = 0, .external_lex_state = 26}, - [848] = {.lex_state = 0, .external_lex_state = 27}, - [849] = {.lex_state = 5}, - [850] = {.lex_state = 0, .external_lex_state = 28}, - [851] = {.lex_state = 5}, - [852] = {.lex_state = 0, .external_lex_state = 29}, - [853] = {.lex_state = 0}, - [854] = {.lex_state = 0, .external_lex_state = 30}, - [855] = {.lex_state = 0, .external_lex_state = 30}, - [856] = {.lex_state = 0, .external_lex_state = 30}, - [857] = {.lex_state = 0, .external_lex_state = 21}, + [843] = {.lex_state = 0, .external_lex_state = 27}, + [844] = {.lex_state = 5}, + [845] = {.lex_state = 0, .external_lex_state = 25}, + [846] = {.lex_state = 0, .external_lex_state = 26}, + [847] = {.lex_state = 0, .external_lex_state = 28}, + [848] = {.lex_state = 0}, + [849] = {.lex_state = 0, .external_lex_state = 29}, + [850] = {.lex_state = 0, .external_lex_state = 29}, + [851] = {.lex_state = 0, .external_lex_state = 29}, + [852] = {.lex_state = 5}, + [853] = {.lex_state = 0, .external_lex_state = 30}, + [854] = {.lex_state = 5}, + [855] = {.lex_state = 0, .external_lex_state = 22}, + [856] = {.lex_state = 0, .external_lex_state = 23}, + [857] = {.lex_state = 0, .external_lex_state = 24}, [858] = {.lex_state = 5}, [859] = {.lex_state = 5}, - [860] = {.lex_state = 0, .external_lex_state = 22}, - [861] = {.lex_state = 0, .external_lex_state = 23}, - [862] = {.lex_state = 0, .external_lex_state = 24}, + [860] = {.lex_state = 5}, + [861] = {.lex_state = 5}, + [862] = {.lex_state = 5}, [863] = {.lex_state = 5}, - [864] = {.lex_state = 5}, - [865] = {.lex_state = 5}, - [866] = {.lex_state = 5}, - [867] = {.lex_state = 0, .external_lex_state = 22}, - [868] = {.lex_state = 0, .external_lex_state = 24}, - [869] = {.lex_state = 0, .external_lex_state = 22}, - [870] = {.lex_state = 0, .external_lex_state = 23}, + [864] = {.lex_state = 0, .external_lex_state = 22}, + [865] = {.lex_state = 0, .external_lex_state = 23}, + [866] = {.lex_state = 0, .external_lex_state = 21}, + [867] = {.lex_state = 0, .external_lex_state = 27}, + [868] = {.lex_state = 0, .external_lex_state = 25}, + [869] = {.lex_state = 5}, + [870] = {.lex_state = 0, .external_lex_state = 26}, [871] = {.lex_state = 5}, - [872] = {.lex_state = 0, .external_lex_state = 25}, - [873] = {.lex_state = 0, .external_lex_state = 26}, - [874] = {.lex_state = 0, .external_lex_state = 27}, - [875] = {.lex_state = 0, .external_lex_state = 28}, + [872] = {.lex_state = 0, .external_lex_state = 28}, + [873] = {.lex_state = 0}, + [874] = {.lex_state = 0, .external_lex_state = 29}, + [875] = {.lex_state = 0, .external_lex_state = 29}, [876] = {.lex_state = 0, .external_lex_state = 29}, - [877] = {.lex_state = 0}, - [878] = {.lex_state = 0, .external_lex_state = 30}, - [879] = {.lex_state = 0, .external_lex_state = 30}, - [880] = {.lex_state = 0, .external_lex_state = 30}, - [881] = {.lex_state = 0, .external_lex_state = 21}, - [882] = {.lex_state = 0, .external_lex_state = 31}, - [883] = {.lex_state = 0, .external_lex_state = 32}, + [877] = {.lex_state = 0, .external_lex_state = 30}, + [878] = {.lex_state = 5}, + [879] = {.lex_state = 5}, + [880] = {.lex_state = 0, .external_lex_state = 22}, + [881] = {.lex_state = 0, .external_lex_state = 23}, + [882] = {.lex_state = 0, .external_lex_state = 24}, + [883] = {.lex_state = 5}, [884] = {.lex_state = 5}, [885] = {.lex_state = 5}, - [886] = {.lex_state = 0, .external_lex_state = 33}, - [887] = {.lex_state = 0}, - [888] = {.lex_state = 0, .external_lex_state = 31}, - [889] = {.lex_state = 0, .external_lex_state = 34}, - [890] = {.lex_state = 0, .external_lex_state = 35}, - [891] = {.lex_state = 0, .external_lex_state = 33}, - [892] = {.lex_state = 5}, - [893] = {.lex_state = 0, .external_lex_state = 36}, - [894] = {.lex_state = 0, .external_lex_state = 37}, - [895] = {.lex_state = 0, .external_lex_state = 38}, - [896] = {.lex_state = 0, .external_lex_state = 39}, - [897] = {.lex_state = 0, .external_lex_state = 31}, - [898] = {.lex_state = 0, .external_lex_state = 40}, - [899] = {.lex_state = 0, .external_lex_state = 33}, - [900] = {.lex_state = 0, .external_lex_state = 41}, - [901] = {.lex_state = 5}, - [902] = {.lex_state = 0, .external_lex_state = 33}, - [903] = {.lex_state = 0, .external_lex_state = 42}, - [904] = {.lex_state = 0, .external_lex_state = 33}, - [905] = {.lex_state = 5}, - [906] = {.lex_state = 0, .external_lex_state = 36}, - [907] = {.lex_state = 0, .external_lex_state = 37}, - [908] = {.lex_state = 0, .external_lex_state = 38}, - [909] = {.lex_state = 0, .external_lex_state = 39}, + [886] = {.lex_state = 5}, + [887] = {.lex_state = 0, .external_lex_state = 21}, + [888] = {.lex_state = 0, .external_lex_state = 27}, + [889] = {.lex_state = 0, .external_lex_state = 22}, + [890] = {.lex_state = 0, .external_lex_state = 23}, + [891] = {.lex_state = 5}, + [892] = {.lex_state = 0, .external_lex_state = 27}, + [893] = {.lex_state = 0, .external_lex_state = 25}, + [894] = {.lex_state = 0, .external_lex_state = 26}, + [895] = {.lex_state = 0, .external_lex_state = 28}, + [896] = {.lex_state = 0}, + [897] = {.lex_state = 0, .external_lex_state = 29}, + [898] = {.lex_state = 0, .external_lex_state = 29}, + [899] = {.lex_state = 0, .external_lex_state = 29}, + [900] = {.lex_state = 0, .external_lex_state = 30}, + [901] = {.lex_state = 0, .external_lex_state = 22}, + [902] = {.lex_state = 0, .external_lex_state = 31}, + [903] = {.lex_state = 5}, + [904] = {.lex_state = 5}, + [905] = {.lex_state = 0, .external_lex_state = 32}, + [906] = {.lex_state = 5}, + [907] = {.lex_state = 0, .external_lex_state = 33}, + [908] = {.lex_state = 0, .external_lex_state = 34}, + [909] = {.lex_state = 0, .external_lex_state = 35}, [910] = {.lex_state = 0, .external_lex_state = 31}, - [911] = {.lex_state = 0, .external_lex_state = 41}, - [912] = {.lex_state = 0, .external_lex_state = 43}, - [913] = {.lex_state = 0, .external_lex_state = 35}, - [914] = {.lex_state = 0}, - [915] = {.lex_state = 0, .external_lex_state = 44}, + [911] = {.lex_state = 0, .external_lex_state = 36}, + [912] = {.lex_state = 0, .external_lex_state = 37}, + [913] = {.lex_state = 0, .external_lex_state = 38}, + [914] = {.lex_state = 0, .external_lex_state = 39}, + [915] = {.lex_state = 0}, [916] = {.lex_state = 0, .external_lex_state = 34}, - [917] = {.lex_state = 0, .external_lex_state = 45}, - [918] = {.lex_state = 5}, - [919] = {.lex_state = 0, .external_lex_state = 43}, - [920] = {.lex_state = 0, .external_lex_state = 35}, - [921] = {.lex_state = 0}, - [922] = {.lex_state = 0}, - [923] = {.lex_state = 0, .external_lex_state = 33}, - [924] = {.lex_state = 5}, - [925] = {.lex_state = 0, .external_lex_state = 36}, - [926] = {.lex_state = 0, .external_lex_state = 37}, - [927] = {.lex_state = 0, .external_lex_state = 38}, - [928] = {.lex_state = 0, .external_lex_state = 39}, + [917] = {.lex_state = 0, .external_lex_state = 40}, + [918] = {.lex_state = 0, .external_lex_state = 41}, + [919] = {.lex_state = 0, .external_lex_state = 32}, + [920] = {.lex_state = 0, .external_lex_state = 32}, + [921] = {.lex_state = 0, .external_lex_state = 42}, + [922] = {.lex_state = 0, .external_lex_state = 43}, + [923] = {.lex_state = 15}, + [924] = {.lex_state = 0, .external_lex_state = 32}, + [925] = {.lex_state = 5}, + [926] = {.lex_state = 0, .external_lex_state = 33}, + [927] = {.lex_state = 0, .external_lex_state = 34}, + [928] = {.lex_state = 0, .external_lex_state = 35}, [929] = {.lex_state = 0, .external_lex_state = 31}, - [930] = {.lex_state = 0, .external_lex_state = 41}, - [931] = {.lex_state = 0, .external_lex_state = 34}, - [932] = {.lex_state = 0, .external_lex_state = 46}, - [933] = {.lex_state = 0, .external_lex_state = 33}, - [934] = {.lex_state = 0, .external_lex_state = 43}, - [935] = {.lex_state = 0, .external_lex_state = 35}, - [936] = {.lex_state = 0}, - [937] = {.lex_state = 0, .external_lex_state = 47}, - [938] = {.lex_state = 0, .external_lex_state = 33}, - [939] = {.lex_state = 5}, - [940] = {.lex_state = 0, .external_lex_state = 36}, - [941] = {.lex_state = 0, .external_lex_state = 37}, - [942] = {.lex_state = 0, .external_lex_state = 38}, - [943] = {.lex_state = 0, .external_lex_state = 39}, - [944] = {.lex_state = 0, .external_lex_state = 31}, - [945] = {.lex_state = 0, .external_lex_state = 41}, - [946] = {.lex_state = 0, .external_lex_state = 43}, - [947] = {.lex_state = 0, .external_lex_state = 35}, - [948] = {.lex_state = 0}, - [949] = {.lex_state = 5}, - [950] = {.lex_state = 0, .external_lex_state = 34}, - [951] = {.lex_state = 0, .external_lex_state = 48}, - [952] = {.lex_state = 5}, - [953] = {.lex_state = 0, .external_lex_state = 49}, - [954] = {.lex_state = 0, .external_lex_state = 50}, - [955] = {.lex_state = 0, .external_lex_state = 49}, - [956] = {.lex_state = 0, .external_lex_state = 34}, - [957] = {.lex_state = 0, .external_lex_state = 34}, - [958] = {.lex_state = 0, .external_lex_state = 48}, - [959] = {.lex_state = 0, .external_lex_state = 49}, - [960] = {.lex_state = 0, .external_lex_state = 48}, - [961] = {.lex_state = 0, .external_lex_state = 49}, - [962] = {.lex_state = 5}, - [963] = {.lex_state = 15}, - [964] = {.lex_state = 5}, - [965] = {.lex_state = 0, .external_lex_state = 41}, - [966] = {.lex_state = 156}, - [967] = {.lex_state = 15}, - [968] = {.lex_state = 0, .external_lex_state = 35}, - [969] = {.lex_state = 16}, - [970] = {.lex_state = 0, .external_lex_state = 49}, - [971] = {.lex_state = 0, .external_lex_state = 50}, - [972] = {.lex_state = 0, .external_lex_state = 49}, - [973] = {.lex_state = 5}, - [974] = {.lex_state = 0, .external_lex_state = 39}, - [975] = {.lex_state = 0, .external_lex_state = 33}, + [930] = {.lex_state = 0, .external_lex_state = 36}, + [931] = {.lex_state = 0, .external_lex_state = 37}, + [932] = {.lex_state = 0, .external_lex_state = 38}, + [933] = {.lex_state = 0, .external_lex_state = 39}, + [934] = {.lex_state = 0}, + [935] = {.lex_state = 5}, + [936] = {.lex_state = 0, .external_lex_state = 42}, + [937] = {.lex_state = 0, .external_lex_state = 32}, + [938] = {.lex_state = 5}, + [939] = {.lex_state = 0, .external_lex_state = 42}, + [940] = {.lex_state = 0, .external_lex_state = 32}, + [941] = {.lex_state = 5}, + [942] = {.lex_state = 0, .external_lex_state = 33}, + [943] = {.lex_state = 0, .external_lex_state = 34}, + [944] = {.lex_state = 0, .external_lex_state = 35}, + [945] = {.lex_state = 0, .external_lex_state = 31}, + [946] = {.lex_state = 0, .external_lex_state = 36}, + [947] = {.lex_state = 0, .external_lex_state = 37}, + [948] = {.lex_state = 0, .external_lex_state = 38}, + [949] = {.lex_state = 0, .external_lex_state = 39}, + [950] = {.lex_state = 0}, + [951] = {.lex_state = 5}, + [952] = {.lex_state = 156}, + [953] = {.lex_state = 0, .external_lex_state = 32}, + [954] = {.lex_state = 0, .external_lex_state = 44}, + [955] = {.lex_state = 0, .external_lex_state = 42}, + [956] = {.lex_state = 0, .external_lex_state = 45}, + [957] = {.lex_state = 5}, + [958] = {.lex_state = 0, .external_lex_state = 32}, + [959] = {.lex_state = 5}, + [960] = {.lex_state = 0, .external_lex_state = 33}, + [961] = {.lex_state = 0, .external_lex_state = 34}, + [962] = {.lex_state = 0, .external_lex_state = 35}, + [963] = {.lex_state = 0, .external_lex_state = 31}, + [964] = {.lex_state = 0, .external_lex_state = 36}, + [965] = {.lex_state = 0, .external_lex_state = 37}, + [966] = {.lex_state = 0, .external_lex_state = 38}, + [967] = {.lex_state = 0, .external_lex_state = 39}, + [968] = {.lex_state = 0}, + [969] = {.lex_state = 5}, + [970] = {.lex_state = 0, .external_lex_state = 42}, + [971] = {.lex_state = 0, .external_lex_state = 33}, + [972] = {.lex_state = 5}, + [973] = {.lex_state = 0, .external_lex_state = 46}, + [974] = {.lex_state = 0, .external_lex_state = 47}, + [975] = {.lex_state = 0, .external_lex_state = 46}, [976] = {.lex_state = 5}, - [977] = {.lex_state = 0, .external_lex_state = 36}, - [978] = {.lex_state = 0, .external_lex_state = 37}, - [979] = {.lex_state = 0, .external_lex_state = 38}, - [980] = {.lex_state = 0, .external_lex_state = 39}, - [981] = {.lex_state = 0, .external_lex_state = 31}, - [982] = {.lex_state = 5}, - [983] = {.lex_state = 15}, - [984] = {.lex_state = 0, .external_lex_state = 35}, - [985] = {.lex_state = 16}, - [986] = {.lex_state = 0, .external_lex_state = 49}, - [987] = {.lex_state = 0, .external_lex_state = 50}, - [988] = {.lex_state = 0, .external_lex_state = 49}, - [989] = {.lex_state = 0, .external_lex_state = 41}, - [990] = {.lex_state = 5}, - [991] = {.lex_state = 0, .external_lex_state = 33}, - [992] = {.lex_state = 0, .external_lex_state = 33}, - [993] = {.lex_state = 0, .external_lex_state = 43}, - [994] = {.lex_state = 0, .external_lex_state = 35}, - [995] = {.lex_state = 0, .external_lex_state = 35}, - [996] = {.lex_state = 0, .external_lex_state = 33}, - [997] = {.lex_state = 0, .external_lex_state = 33}, - [998] = {.lex_state = 0, .external_lex_state = 33}, - [999] = {.lex_state = 15}, - [1000] = {.lex_state = 0, .external_lex_state = 35}, - [1001] = {.lex_state = 16}, + [977] = {.lex_state = 0, .external_lex_state = 35}, + [978] = {.lex_state = 0, .external_lex_state = 31}, + [979] = {.lex_state = 0, .external_lex_state = 34}, + [980] = {.lex_state = 0, .external_lex_state = 35}, + [981] = {.lex_state = 0, .external_lex_state = 36}, + [982] = {.lex_state = 0, .external_lex_state = 37}, + [983] = {.lex_state = 0, .external_lex_state = 38}, + [984] = {.lex_state = 0, .external_lex_state = 39}, + [985] = {.lex_state = 0}, + [986] = {.lex_state = 156}, + [987] = {.lex_state = 16}, + [988] = {.lex_state = 0, .external_lex_state = 39}, + [989] = {.lex_state = 17}, + [990] = {.lex_state = 0, .external_lex_state = 46}, + [991] = {.lex_state = 0, .external_lex_state = 47}, + [992] = {.lex_state = 0, .external_lex_state = 46}, + [993] = {.lex_state = 5}, + [994] = {.lex_state = 0, .external_lex_state = 42}, + [995] = {.lex_state = 0}, + [996] = {.lex_state = 0}, + [997] = {.lex_state = 0, .external_lex_state = 32}, + [998] = {.lex_state = 5}, + [999] = {.lex_state = 0, .external_lex_state = 46}, + [1000] = {.lex_state = 0, .external_lex_state = 32}, + [1001] = {.lex_state = 0, .external_lex_state = 48}, [1002] = {.lex_state = 0, .external_lex_state = 49}, - [1003] = {.lex_state = 0, .external_lex_state = 50}, - [1004] = {.lex_state = 0, .external_lex_state = 49}, - [1005] = {.lex_state = 0, .external_lex_state = 33}, - [1006] = {.lex_state = 5}, - [1007] = {.lex_state = 0, .external_lex_state = 36}, - [1008] = {.lex_state = 5}, - [1009] = {.lex_state = 0, .external_lex_state = 37}, - [1010] = {.lex_state = 0, .external_lex_state = 38}, - [1011] = {.lex_state = 0, .external_lex_state = 39}, - [1012] = {.lex_state = 0, .external_lex_state = 31}, - [1013] = {.lex_state = 0, .external_lex_state = 36}, - [1014] = {.lex_state = 0, .external_lex_state = 41}, - [1015] = {.lex_state = 15}, - [1016] = {.lex_state = 0, .external_lex_state = 35}, - [1017] = {.lex_state = 16}, - [1018] = {.lex_state = 0, .external_lex_state = 49}, - [1019] = {.lex_state = 0, .external_lex_state = 50}, - [1020] = {.lex_state = 0, .external_lex_state = 49}, - [1021] = {.lex_state = 0, .external_lex_state = 37}, - [1022] = {.lex_state = 0, .external_lex_state = 43}, - [1023] = {.lex_state = 0, .external_lex_state = 35}, - [1024] = {.lex_state = 0}, - [1025] = {.lex_state = 0, .external_lex_state = 38}, - [1026] = {.lex_state = 17}, - [1027] = {.lex_state = 0, .external_lex_state = 34}, - [1028] = {.lex_state = 0, .external_lex_state = 39}, - [1029] = {.lex_state = 0, .external_lex_state = 31}, - [1030] = {.lex_state = 5}, - [1031] = {.lex_state = 15}, - [1032] = {.lex_state = 0, .external_lex_state = 35}, - [1033] = {.lex_state = 16}, - [1034] = {.lex_state = 0, .external_lex_state = 49}, - [1035] = {.lex_state = 0, .external_lex_state = 50}, - [1036] = {.lex_state = 0, .external_lex_state = 49}, - [1037] = {.lex_state = 0, .external_lex_state = 41}, - [1038] = {.lex_state = 0, .external_lex_state = 33}, - [1039] = {.lex_state = 5}, - [1040] = {.lex_state = 0, .external_lex_state = 43}, - [1041] = {.lex_state = 0, .external_lex_state = 35}, - [1042] = {.lex_state = 0}, - [1043] = {.lex_state = 0, .external_lex_state = 38}, - [1044] = {.lex_state = 0, .external_lex_state = 34}, - [1045] = {.lex_state = 0, .external_lex_state = 43}, - [1046] = {.lex_state = 5}, - [1047] = {.lex_state = 15}, - [1048] = {.lex_state = 0, .external_lex_state = 35}, - [1049] = {.lex_state = 16}, - [1050] = {.lex_state = 0, .external_lex_state = 49}, - [1051] = {.lex_state = 0, .external_lex_state = 50}, - [1052] = {.lex_state = 0, .external_lex_state = 49}, - [1053] = {.lex_state = 0, .external_lex_state = 35}, - [1054] = {.lex_state = 0, .external_lex_state = 35}, - [1055] = {.lex_state = 0, .external_lex_state = 33}, - [1056] = {.lex_state = 5}, - [1057] = {.lex_state = 0, .external_lex_state = 36}, - [1058] = {.lex_state = 0, .external_lex_state = 37}, - [1059] = {.lex_state = 0, .external_lex_state = 38}, - [1060] = {.lex_state = 156}, + [1003] = {.lex_state = 16}, + [1004] = {.lex_state = 0, .external_lex_state = 39}, + [1005] = {.lex_state = 17}, + [1006] = {.lex_state = 0, .external_lex_state = 46}, + [1007] = {.lex_state = 0, .external_lex_state = 47}, + [1008] = {.lex_state = 0, .external_lex_state = 46}, + [1009] = {.lex_state = 0, .external_lex_state = 32}, + [1010] = {.lex_state = 0, .external_lex_state = 31}, + [1011] = {.lex_state = 0, .external_lex_state = 36}, + [1012] = {.lex_state = 0, .external_lex_state = 32}, + [1013] = {.lex_state = 0, .external_lex_state = 45}, + [1014] = {.lex_state = 0, .external_lex_state = 32}, + [1015] = {.lex_state = 5}, + [1016] = {.lex_state = 0, .external_lex_state = 37}, + [1017] = {.lex_state = 0, .external_lex_state = 33}, + [1018] = {.lex_state = 0, .external_lex_state = 32}, + [1019] = {.lex_state = 16}, + [1020] = {.lex_state = 0, .external_lex_state = 39}, + [1021] = {.lex_state = 17}, + [1022] = {.lex_state = 0, .external_lex_state = 46}, + [1023] = {.lex_state = 0, .external_lex_state = 47}, + [1024] = {.lex_state = 0, .external_lex_state = 46}, + [1025] = {.lex_state = 0, .external_lex_state = 34}, + [1026] = {.lex_state = 5}, + [1027] = {.lex_state = 0, .external_lex_state = 33}, + [1028] = {.lex_state = 0, .external_lex_state = 38}, + [1029] = {.lex_state = 0, .external_lex_state = 34}, + [1030] = {.lex_state = 0, .external_lex_state = 35}, + [1031] = {.lex_state = 0, .external_lex_state = 31}, + [1032] = {.lex_state = 0, .external_lex_state = 36}, + [1033] = {.lex_state = 0, .external_lex_state = 35}, + [1034] = {.lex_state = 0, .external_lex_state = 37}, + [1035] = {.lex_state = 16}, + [1036] = {.lex_state = 0, .external_lex_state = 39}, + [1037] = {.lex_state = 17}, + [1038] = {.lex_state = 0, .external_lex_state = 46}, + [1039] = {.lex_state = 0, .external_lex_state = 47}, + [1040] = {.lex_state = 0, .external_lex_state = 46}, + [1041] = {.lex_state = 0, .external_lex_state = 31}, + [1042] = {.lex_state = 0, .external_lex_state = 38}, + [1043] = {.lex_state = 0, .external_lex_state = 39}, + [1044] = {.lex_state = 0}, + [1045] = {.lex_state = 0, .external_lex_state = 39}, + [1046] = {.lex_state = 0, .external_lex_state = 39}, + [1047] = {.lex_state = 0, .external_lex_state = 42}, + [1048] = {.lex_state = 0}, + [1049] = {.lex_state = 0, .external_lex_state = 36}, + [1050] = {.lex_state = 5}, + [1051] = {.lex_state = 16}, + [1052] = {.lex_state = 0, .external_lex_state = 39}, + [1053] = {.lex_state = 17}, + [1054] = {.lex_state = 0, .external_lex_state = 46}, + [1055] = {.lex_state = 0, .external_lex_state = 47}, + [1056] = {.lex_state = 0, .external_lex_state = 46}, + [1057] = {.lex_state = 0, .external_lex_state = 37}, + [1058] = {.lex_state = 16}, + [1059] = {.lex_state = 0, .external_lex_state = 47}, + [1060] = {.lex_state = 0, .external_lex_state = 38}, [1061] = {.lex_state = 0, .external_lex_state = 39}, - [1062] = {.lex_state = 5}, - [1063] = {.lex_state = 15}, - [1064] = {.lex_state = 0, .external_lex_state = 35}, - [1065] = {.lex_state = 16}, - [1066] = {.lex_state = 0, .external_lex_state = 49}, - [1067] = {.lex_state = 0, .external_lex_state = 50}, - [1068] = {.lex_state = 0, .external_lex_state = 49}, - [1069] = {.lex_state = 0, .external_lex_state = 33}, - [1070] = {.lex_state = 0, .external_lex_state = 34}, - [1071] = {.lex_state = 0, .external_lex_state = 41}, - [1072] = {.lex_state = 0, .external_lex_state = 43}, - [1073] = {.lex_state = 0, .external_lex_state = 35}, + [1062] = {.lex_state = 0}, + [1063] = {.lex_state = 0, .external_lex_state = 32}, + [1064] = {.lex_state = 0, .external_lex_state = 42}, + [1065] = {.lex_state = 0, .external_lex_state = 45}, + [1066] = {.lex_state = 5}, + [1067] = {.lex_state = 16}, + [1068] = {.lex_state = 0, .external_lex_state = 39}, + [1069] = {.lex_state = 17}, + [1070] = {.lex_state = 0, .external_lex_state = 46}, + [1071] = {.lex_state = 0, .external_lex_state = 47}, + [1072] = {.lex_state = 0, .external_lex_state = 46}, + [1073] = {.lex_state = 5}, [1074] = {.lex_state = 5}, [1075] = {.lex_state = 0, .external_lex_state = 33}, - [1076] = {.lex_state = 5}, - [1077] = {.lex_state = 0}, - [1078] = {.lex_state = 0, .external_lex_state = 36}, - [1079] = {.lex_state = 15}, - [1080] = {.lex_state = 0, .external_lex_state = 35}, - [1081] = {.lex_state = 16}, - [1082] = {.lex_state = 0, .external_lex_state = 49}, - [1083] = {.lex_state = 0, .external_lex_state = 50}, - [1084] = {.lex_state = 0, .external_lex_state = 49}, - [1085] = {.lex_state = 0}, - [1086] = {.lex_state = 0, .external_lex_state = 37}, - [1087] = {.lex_state = 0, .external_lex_state = 38}, - [1088] = {.lex_state = 0, .external_lex_state = 39}, - [1089] = {.lex_state = 0, .external_lex_state = 31}, - [1090] = {.lex_state = 0, .external_lex_state = 41}, - [1091] = {.lex_state = 0, .external_lex_state = 43}, - [1092] = {.lex_state = 0, .external_lex_state = 35}, - [1093] = {.lex_state = 0, .external_lex_state = 33}, - [1094] = {.lex_state = 0}, - [1095] = {.lex_state = 15}, - [1096] = {.lex_state = 0, .external_lex_state = 35}, - [1097] = {.lex_state = 16}, - [1098] = {.lex_state = 0, .external_lex_state = 49}, - [1099] = {.lex_state = 0, .external_lex_state = 50}, - [1100] = {.lex_state = 0, .external_lex_state = 49}, - [1101] = {.lex_state = 0}, - [1102] = {.lex_state = 0, .external_lex_state = 36}, - [1103] = {.lex_state = 0, .external_lex_state = 34}, - [1104] = {.lex_state = 16}, - [1105] = {.lex_state = 5}, + [1076] = {.lex_state = 0, .external_lex_state = 32}, + [1077] = {.lex_state = 5}, + [1078] = {.lex_state = 0, .external_lex_state = 33}, + [1079] = {.lex_state = 0, .external_lex_state = 34}, + [1080] = {.lex_state = 0, .external_lex_state = 39}, + [1081] = {.lex_state = 0, .external_lex_state = 35}, + [1082] = {.lex_state = 0, .external_lex_state = 39}, + [1083] = {.lex_state = 16}, + [1084] = {.lex_state = 0, .external_lex_state = 39}, + [1085] = {.lex_state = 17}, + [1086] = {.lex_state = 0, .external_lex_state = 46}, + [1087] = {.lex_state = 0, .external_lex_state = 47}, + [1088] = {.lex_state = 0, .external_lex_state = 46}, + [1089] = {.lex_state = 0, .external_lex_state = 32}, + [1090] = {.lex_state = 0, .external_lex_state = 42}, + [1091] = {.lex_state = 0, .external_lex_state = 36}, + [1092] = {.lex_state = 0, .external_lex_state = 37}, + [1093] = {.lex_state = 0, .external_lex_state = 38}, + [1094] = {.lex_state = 17}, + [1095] = {.lex_state = 0, .external_lex_state = 32}, + [1096] = {.lex_state = 5}, + [1097] = {.lex_state = 0, .external_lex_state = 39}, + [1098] = {.lex_state = 0, .external_lex_state = 33}, + [1099] = {.lex_state = 16}, + [1100] = {.lex_state = 0, .external_lex_state = 39}, + [1101] = {.lex_state = 17}, + [1102] = {.lex_state = 0, .external_lex_state = 46}, + [1103] = {.lex_state = 0, .external_lex_state = 47}, + [1104] = {.lex_state = 0, .external_lex_state = 46}, + [1105] = {.lex_state = 0}, [1106] = {.lex_state = 0, .external_lex_state = 34}, - [1107] = {.lex_state = 0, .external_lex_state = 50}, - [1108] = {.lex_state = 0, .external_lex_state = 33}, - [1109] = {.lex_state = 5}, - [1110] = {.lex_state = 0, .external_lex_state = 36}, - [1111] = {.lex_state = 15}, - [1112] = {.lex_state = 0, .external_lex_state = 35}, - [1113] = {.lex_state = 16}, - [1114] = {.lex_state = 0, .external_lex_state = 51}, - [1115] = {.lex_state = 0, .external_lex_state = 32}, - [1116] = {.lex_state = 0, .external_lex_state = 40}, - [1117] = {.lex_state = 0, .external_lex_state = 42}, - [1118] = {.lex_state = 0, .external_lex_state = 44}, - [1119] = {.lex_state = 0, .external_lex_state = 45}, - [1120] = {.lex_state = 0, .external_lex_state = 47}, - [1121] = {.lex_state = 0, .external_lex_state = 48}, - [1122] = {.lex_state = 0, .external_lex_state = 46}, - [1123] = {.lex_state = 0, .external_lex_state = 37}, + [1107] = {.lex_state = 0, .external_lex_state = 35}, + [1108] = {.lex_state = 0, .external_lex_state = 31}, + [1109] = {.lex_state = 0, .external_lex_state = 36}, + [1110] = {.lex_state = 0, .external_lex_state = 37}, + [1111] = {.lex_state = 0, .external_lex_state = 38}, + [1112] = {.lex_state = 0, .external_lex_state = 39}, + [1113] = {.lex_state = 0, .external_lex_state = 32}, + [1114] = {.lex_state = 0}, + [1115] = {.lex_state = 16}, + [1116] = {.lex_state = 0, .external_lex_state = 39}, + [1117] = {.lex_state = 17}, + [1118] = {.lex_state = 0, .external_lex_state = 46}, + [1119] = {.lex_state = 0, .external_lex_state = 47}, + [1120] = {.lex_state = 0, .external_lex_state = 46}, + [1121] = {.lex_state = 0, .external_lex_state = 50}, + [1122] = {.lex_state = 0, .external_lex_state = 42}, + [1123] = {.lex_state = 0, .external_lex_state = 42}, [1124] = {.lex_state = 0, .external_lex_state = 51}, - [1125] = {.lex_state = 0, .external_lex_state = 32}, - [1126] = {.lex_state = 0, .external_lex_state = 40}, - [1127] = {.lex_state = 0, .external_lex_state = 42}, - [1128] = {.lex_state = 0, .external_lex_state = 44}, - [1129] = {.lex_state = 0, .external_lex_state = 45}, - [1130] = {.lex_state = 0, .external_lex_state = 47}, - [1131] = {.lex_state = 0, .external_lex_state = 48}, - [1132] = {.lex_state = 0, .external_lex_state = 46}, - [1133] = {.lex_state = 0, .external_lex_state = 38}, - [1134] = {.lex_state = 0, .external_lex_state = 51}, - [1135] = {.lex_state = 0, .external_lex_state = 32}, - [1136] = {.lex_state = 0, .external_lex_state = 40}, - [1137] = {.lex_state = 0, .external_lex_state = 42}, - [1138] = {.lex_state = 0, .external_lex_state = 44}, - [1139] = {.lex_state = 0, .external_lex_state = 45}, - [1140] = {.lex_state = 0, .external_lex_state = 47}, - [1141] = {.lex_state = 0, .external_lex_state = 48}, - [1142] = {.lex_state = 0, .external_lex_state = 46}, - [1143] = {.lex_state = 0, .external_lex_state = 39}, - [1144] = {.lex_state = 0, .external_lex_state = 51}, - [1145] = {.lex_state = 0, .external_lex_state = 32}, - [1146] = {.lex_state = 0, .external_lex_state = 40}, - [1147] = {.lex_state = 0, .external_lex_state = 42}, - [1148] = {.lex_state = 0, .external_lex_state = 44}, - [1149] = {.lex_state = 0, .external_lex_state = 45}, - [1150] = {.lex_state = 0, .external_lex_state = 47}, - [1151] = {.lex_state = 0, .external_lex_state = 48}, - [1152] = {.lex_state = 0, .external_lex_state = 46}, - [1153] = {.lex_state = 0, .external_lex_state = 31}, - [1154] = {.lex_state = 0, .external_lex_state = 51}, - [1155] = {.lex_state = 0, .external_lex_state = 32}, - [1156] = {.lex_state = 0, .external_lex_state = 40}, - [1157] = {.lex_state = 0, .external_lex_state = 42}, - [1158] = {.lex_state = 0, .external_lex_state = 44}, - [1159] = {.lex_state = 0, .external_lex_state = 45}, - [1160] = {.lex_state = 0, .external_lex_state = 47}, - [1161] = {.lex_state = 0, .external_lex_state = 48}, - [1162] = {.lex_state = 0, .external_lex_state = 46}, - [1163] = {.lex_state = 0, .external_lex_state = 41}, - [1164] = {.lex_state = 0, .external_lex_state = 51}, - [1165] = {.lex_state = 0, .external_lex_state = 32}, - [1166] = {.lex_state = 0, .external_lex_state = 40}, - [1167] = {.lex_state = 0, .external_lex_state = 42}, - [1168] = {.lex_state = 0, .external_lex_state = 44}, - [1169] = {.lex_state = 0, .external_lex_state = 45}, - [1170] = {.lex_state = 0, .external_lex_state = 47}, - [1171] = {.lex_state = 0, .external_lex_state = 48}, - [1172] = {.lex_state = 0, .external_lex_state = 46}, - [1173] = {.lex_state = 0, .external_lex_state = 43}, - [1174] = {.lex_state = 0, .external_lex_state = 51}, - [1175] = {.lex_state = 0, .external_lex_state = 32}, - [1176] = {.lex_state = 0, .external_lex_state = 40}, - [1177] = {.lex_state = 0, .external_lex_state = 42}, - [1178] = {.lex_state = 0, .external_lex_state = 44}, - [1179] = {.lex_state = 0, .external_lex_state = 45}, - [1180] = {.lex_state = 0, .external_lex_state = 47}, - [1181] = {.lex_state = 0, .external_lex_state = 48}, - [1182] = {.lex_state = 0, .external_lex_state = 46}, - [1183] = {.lex_state = 0, .external_lex_state = 35}, - [1184] = {.lex_state = 0, .external_lex_state = 51}, - [1185] = {.lex_state = 0, .external_lex_state = 32}, - [1186] = {.lex_state = 0, .external_lex_state = 40}, - [1187] = {.lex_state = 0, .external_lex_state = 42}, - [1188] = {.lex_state = 0, .external_lex_state = 44}, - [1189] = {.lex_state = 0, .external_lex_state = 45}, - [1190] = {.lex_state = 0, .external_lex_state = 47}, - [1191] = {.lex_state = 0, .external_lex_state = 48}, - [1192] = {.lex_state = 0, .external_lex_state = 46}, - [1193] = {.lex_state = 0}, - [1194] = {.lex_state = 0, .external_lex_state = 51}, - [1195] = {.lex_state = 0, .external_lex_state = 32}, - [1196] = {.lex_state = 0, .external_lex_state = 40}, - [1197] = {.lex_state = 0, .external_lex_state = 42}, - [1198] = {.lex_state = 0, .external_lex_state = 44}, - [1199] = {.lex_state = 0, .external_lex_state = 45}, - [1200] = {.lex_state = 0, .external_lex_state = 47}, - [1201] = {.lex_state = 0, .external_lex_state = 48}, - [1202] = {.lex_state = 0, .external_lex_state = 46}, - [1203] = {.lex_state = 0, .external_lex_state = 51}, - [1204] = {.lex_state = 0, .external_lex_state = 51}, - [1205] = {.lex_state = 0, .external_lex_state = 32}, - [1206] = {.lex_state = 0, .external_lex_state = 40}, - [1207] = {.lex_state = 0, .external_lex_state = 42}, - [1208] = {.lex_state = 0, .external_lex_state = 44}, - [1209] = {.lex_state = 0, .external_lex_state = 45}, - [1210] = {.lex_state = 0, .external_lex_state = 47}, - [1211] = {.lex_state = 0, .external_lex_state = 48}, - [1212] = {.lex_state = 0, .external_lex_state = 46}, - [1213] = {.lex_state = 0, .external_lex_state = 37}, - [1214] = {.lex_state = 0, .external_lex_state = 48}, + [1125] = {.lex_state = 5}, + [1126] = {.lex_state = 5}, + [1127] = {.lex_state = 5}, + [1128] = {.lex_state = 0, .external_lex_state = 32}, + [1129] = {.lex_state = 5}, + [1130] = {.lex_state = 0, .external_lex_state = 46}, + [1131] = {.lex_state = 16}, + [1132] = {.lex_state = 0, .external_lex_state = 39}, + [1133] = {.lex_state = 17}, + [1134] = {.lex_state = 0, .external_lex_state = 43}, + [1135] = {.lex_state = 0, .external_lex_state = 48}, + [1136] = {.lex_state = 0, .external_lex_state = 49}, + [1137] = {.lex_state = 0, .external_lex_state = 50}, + [1138] = {.lex_state = 0, .external_lex_state = 51}, + [1139] = {.lex_state = 0, .external_lex_state = 40}, + [1140] = {.lex_state = 0, .external_lex_state = 41}, + [1141] = {.lex_state = 0, .external_lex_state = 45}, + [1142] = {.lex_state = 0, .external_lex_state = 44}, + [1143] = {.lex_state = 0, .external_lex_state = 33}, + [1144] = {.lex_state = 0, .external_lex_state = 43}, + [1145] = {.lex_state = 0, .external_lex_state = 48}, + [1146] = {.lex_state = 0, .external_lex_state = 49}, + [1147] = {.lex_state = 0, .external_lex_state = 50}, + [1148] = {.lex_state = 0, .external_lex_state = 51}, + [1149] = {.lex_state = 0, .external_lex_state = 40}, + [1150] = {.lex_state = 0, .external_lex_state = 41}, + [1151] = {.lex_state = 0, .external_lex_state = 45}, + [1152] = {.lex_state = 0, .external_lex_state = 44}, + [1153] = {.lex_state = 0, .external_lex_state = 34}, + [1154] = {.lex_state = 0, .external_lex_state = 43}, + [1155] = {.lex_state = 0, .external_lex_state = 48}, + [1156] = {.lex_state = 0, .external_lex_state = 49}, + [1157] = {.lex_state = 0, .external_lex_state = 50}, + [1158] = {.lex_state = 0, .external_lex_state = 51}, + [1159] = {.lex_state = 0, .external_lex_state = 40}, + [1160] = {.lex_state = 0, .external_lex_state = 41}, + [1161] = {.lex_state = 0, .external_lex_state = 45}, + [1162] = {.lex_state = 0, .external_lex_state = 44}, + [1163] = {.lex_state = 0, .external_lex_state = 35}, + [1164] = {.lex_state = 0, .external_lex_state = 43}, + [1165] = {.lex_state = 0, .external_lex_state = 48}, + [1166] = {.lex_state = 0, .external_lex_state = 49}, + [1167] = {.lex_state = 0, .external_lex_state = 50}, + [1168] = {.lex_state = 0, .external_lex_state = 51}, + [1169] = {.lex_state = 0, .external_lex_state = 40}, + [1170] = {.lex_state = 0, .external_lex_state = 41}, + [1171] = {.lex_state = 0, .external_lex_state = 45}, + [1172] = {.lex_state = 0, .external_lex_state = 44}, + [1173] = {.lex_state = 0, .external_lex_state = 31}, + [1174] = {.lex_state = 0, .external_lex_state = 43}, + [1175] = {.lex_state = 0, .external_lex_state = 48}, + [1176] = {.lex_state = 0, .external_lex_state = 49}, + [1177] = {.lex_state = 0, .external_lex_state = 50}, + [1178] = {.lex_state = 0, .external_lex_state = 51}, + [1179] = {.lex_state = 0, .external_lex_state = 40}, + [1180] = {.lex_state = 0, .external_lex_state = 41}, + [1181] = {.lex_state = 0, .external_lex_state = 45}, + [1182] = {.lex_state = 0, .external_lex_state = 44}, + [1183] = {.lex_state = 0, .external_lex_state = 36}, + [1184] = {.lex_state = 0, .external_lex_state = 43}, + [1185] = {.lex_state = 0, .external_lex_state = 48}, + [1186] = {.lex_state = 0, .external_lex_state = 49}, + [1187] = {.lex_state = 0, .external_lex_state = 50}, + [1188] = {.lex_state = 0, .external_lex_state = 51}, + [1189] = {.lex_state = 0, .external_lex_state = 40}, + [1190] = {.lex_state = 0, .external_lex_state = 41}, + [1191] = {.lex_state = 0, .external_lex_state = 45}, + [1192] = {.lex_state = 0, .external_lex_state = 44}, + [1193] = {.lex_state = 0, .external_lex_state = 37}, + [1194] = {.lex_state = 0, .external_lex_state = 43}, + [1195] = {.lex_state = 0, .external_lex_state = 48}, + [1196] = {.lex_state = 0, .external_lex_state = 49}, + [1197] = {.lex_state = 0, .external_lex_state = 50}, + [1198] = {.lex_state = 0, .external_lex_state = 51}, + [1199] = {.lex_state = 0, .external_lex_state = 40}, + [1200] = {.lex_state = 0, .external_lex_state = 41}, + [1201] = {.lex_state = 0, .external_lex_state = 45}, + [1202] = {.lex_state = 0, .external_lex_state = 44}, + [1203] = {.lex_state = 0, .external_lex_state = 38}, + [1204] = {.lex_state = 0, .external_lex_state = 43}, + [1205] = {.lex_state = 0, .external_lex_state = 48}, + [1206] = {.lex_state = 0, .external_lex_state = 49}, + [1207] = {.lex_state = 0, .external_lex_state = 50}, + [1208] = {.lex_state = 0, .external_lex_state = 51}, + [1209] = {.lex_state = 0, .external_lex_state = 40}, + [1210] = {.lex_state = 0, .external_lex_state = 41}, + [1211] = {.lex_state = 0, .external_lex_state = 45}, + [1212] = {.lex_state = 0, .external_lex_state = 44}, + [1213] = {.lex_state = 0, .external_lex_state = 39}, + [1214] = {.lex_state = 0, .external_lex_state = 43}, [1215] = {.lex_state = 0, .external_lex_state = 48}, - [1216] = {.lex_state = 0, .external_lex_state = 48}, - [1217] = {.lex_state = 0, .external_lex_state = 48}, - [1218] = {.lex_state = 0, .external_lex_state = 48}, - [1219] = {.lex_state = 0, .external_lex_state = 48}, - [1220] = {.lex_state = 0, .external_lex_state = 48}, - [1221] = {.lex_state = 0, .external_lex_state = 48}, - [1222] = {.lex_state = 0, .external_lex_state = 48}, - [1223] = {.lex_state = 0, .external_lex_state = 48}, - [1224] = {.lex_state = 0, .external_lex_state = 33}, + [1216] = {.lex_state = 0, .external_lex_state = 49}, + [1217] = {.lex_state = 0, .external_lex_state = 50}, + [1218] = {.lex_state = 0, .external_lex_state = 51}, + [1219] = {.lex_state = 0, .external_lex_state = 40}, + [1220] = {.lex_state = 0, .external_lex_state = 41}, + [1221] = {.lex_state = 0, .external_lex_state = 45}, + [1222] = {.lex_state = 0, .external_lex_state = 44}, + [1223] = {.lex_state = 0}, + [1224] = {.lex_state = 0, .external_lex_state = 43}, + [1225] = {.lex_state = 0, .external_lex_state = 48}, + [1226] = {.lex_state = 0, .external_lex_state = 49}, + [1227] = {.lex_state = 0, .external_lex_state = 50}, + [1228] = {.lex_state = 0, .external_lex_state = 51}, + [1229] = {.lex_state = 0, .external_lex_state = 40}, + [1230] = {.lex_state = 0, .external_lex_state = 41}, + [1231] = {.lex_state = 0, .external_lex_state = 45}, + [1232] = {.lex_state = 0, .external_lex_state = 44}, + [1233] = {.lex_state = 0, .external_lex_state = 32}, + [1234] = {.lex_state = 0, .external_lex_state = 45}, + [1235] = {.lex_state = 0, .external_lex_state = 45}, + [1236] = {.lex_state = 0, .external_lex_state = 45}, + [1237] = {.lex_state = 0, .external_lex_state = 45}, + [1238] = {.lex_state = 0, .external_lex_state = 45}, + [1239] = {.lex_state = 0, .external_lex_state = 45}, + [1240] = {.lex_state = 0, .external_lex_state = 45}, + [1241] = {.lex_state = 0, .external_lex_state = 45}, + [1242] = {.lex_state = 0, .external_lex_state = 45}, + [1243] = {.lex_state = 0, .external_lex_state = 45}, + [1244] = {.lex_state = 0, .external_lex_state = 32}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -5423,41 +5479,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__error] = ACTIONS(1), }, [1] = { - [sym_inline] = STATE(1077), - [sym__inline] = STATE(1085), - [sym__element] = STATE(5), + [sym_inline] = STATE(995), + [sym__inline] = STATE(996), + [sym__element] = STATE(610), [sym_emphasis] = STATE(146), - [sym_emphasis_begin] = STATE(1203), + [sym_emphasis_begin] = STATE(922), [sym_strong] = STATE(146), - [sym_strong_begin] = STATE(883), + [sym_strong_begin] = STATE(1001), [sym_superscript] = STATE(146), - [sym_superscript_begin] = STATE(898), + [sym_superscript_begin] = STATE(1002), [sym_subscript] = STATE(146), - [sym_subscript_begin] = STATE(903), + [sym_subscript_begin] = STATE(1121), [sym_highlighted] = STATE(146), - [sym_highlighted_begin] = STATE(915), + [sym_highlighted_begin] = STATE(1124), [sym_insert] = STATE(146), [sym_insert_begin] = STATE(917), [sym_delete] = STATE(146), - [sym_delete_begin] = STATE(937), + [sym_delete_begin] = STATE(918), [sym_hard_line_break] = STATE(144), [sym__smart_punctuation] = STATE(144), [sym_autolink] = STATE(144), [sym_footnote_reference] = STATE(146), - [sym_footnote_marker_begin] = STATE(951), + [sym_footnote_marker_begin] = STATE(956), [sym__image] = STATE(146), [sym_full_reference_image] = STATE(146), [sym_collapsed_reference_image] = STATE(146), [sym_inline_image] = STATE(146), - [sym_image_description] = STATE(681), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(689), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(146), [sym_full_reference_link] = STATE(146), [sym_collapsed_reference_link] = STATE(146), [sym_inline_link] = STATE(146), - [sym_link_text] = STATE(657), - [sym_span] = STATE(5), - [sym__bracketed_text_begin] = STATE(960), + [sym_link_text] = STATE(679), + [sym_span] = STATE(610), + [sym__bracketed_text_begin] = STATE(1065), [sym__comment_with_spaces] = STATE(144), [sym_raw_inline] = STATE(144), [sym_math] = STATE(144), @@ -5506,40 +5562,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(51), }, [2] = { - [sym__inline] = STATE(995), - [sym__element] = STATE(26), + [sym__inline] = STATE(1080), + [sym__element] = STATE(531), [sym_emphasis] = STATE(149), - [sym_emphasis_begin] = STATE(1194), + [sym_emphasis_begin] = STATE(1214), [sym_strong] = STATE(149), - [sym_strong_begin] = STATE(1195), + [sym_strong_begin] = STATE(1215), [sym_superscript] = STATE(149), - [sym_superscript_begin] = STATE(1196), + [sym_superscript_begin] = STATE(1216), [sym_subscript] = STATE(149), - [sym_subscript_begin] = STATE(1197), + [sym_subscript_begin] = STATE(1217), [sym_highlighted] = STATE(149), - [sym_highlighted_begin] = STATE(1198), + [sym_highlighted_begin] = STATE(1218), [sym_insert] = STATE(149), - [sym_insert_begin] = STATE(1199), + [sym_insert_begin] = STATE(1219), [sym_delete] = STATE(149), - [sym_delete_begin] = STATE(1200), + [sym_delete_begin] = STATE(1220), [sym_hard_line_break] = STATE(148), [sym__smart_punctuation] = STATE(148), [sym_autolink] = STATE(148), [sym_footnote_reference] = STATE(149), - [sym_footnote_marker_begin] = STATE(1201), + [sym_footnote_marker_begin] = STATE(1221), [sym__image] = STATE(149), [sym_full_reference_image] = STATE(149), [sym_collapsed_reference_image] = STATE(149), [sym_inline_image] = STATE(149), - [sym_image_description] = STATE(667), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(690), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(149), [sym_full_reference_link] = STATE(149), [sym_collapsed_reference_link] = STATE(149), [sym_inline_link] = STATE(149), - [sym_link_text] = STATE(668), - [sym_span] = STATE(26), - [sym__bracketed_text_begin] = STATE(1222), + [sym_link_text] = STATE(691), + [sym_span] = STATE(531), + [sym__bracketed_text_begin] = STATE(1242), [sym__comment_with_spaces] = STATE(148), [sym_raw_inline] = STATE(148), [sym_math] = STATE(148), @@ -5589,40 +5645,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__square_bracket_span_end] = ACTIONS(103), }, [3] = { - [sym__inline] = STATE(1043), - [sym__element] = STATE(15), + [sym__inline] = STATE(980), + [sym__element] = STATE(613), [sym_emphasis] = STATE(132), - [sym_emphasis_begin] = STATE(1134), + [sym_emphasis_begin] = STATE(1154), [sym_strong] = STATE(132), - [sym_strong_begin] = STATE(1135), + [sym_strong_begin] = STATE(1155), [sym_superscript] = STATE(132), - [sym_superscript_begin] = STATE(1136), + [sym_superscript_begin] = STATE(1156), [sym_subscript] = STATE(132), - [sym_subscript_begin] = STATE(1137), + [sym_subscript_begin] = STATE(1157), [sym_highlighted] = STATE(132), - [sym_highlighted_begin] = STATE(1138), + [sym_highlighted_begin] = STATE(1158), [sym_insert] = STATE(132), - [sym_insert_begin] = STATE(1139), + [sym_insert_begin] = STATE(1159), [sym_delete] = STATE(132), - [sym_delete_begin] = STATE(1140), + [sym_delete_begin] = STATE(1160), [sym_hard_line_break] = STATE(147), [sym__smart_punctuation] = STATE(147), [sym_autolink] = STATE(147), [sym_footnote_reference] = STATE(132), - [sym_footnote_marker_begin] = STATE(1141), + [sym_footnote_marker_begin] = STATE(1161), [sym__image] = STATE(132), [sym_full_reference_image] = STATE(132), [sym_collapsed_reference_image] = STATE(132), [sym_inline_image] = STATE(132), - [sym_image_description] = STATE(682), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(687), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(132), [sym_full_reference_link] = STATE(132), [sym_collapsed_reference_link] = STATE(132), [sym_inline_link] = STATE(132), - [sym_link_text] = STATE(689), - [sym_span] = STATE(15), - [sym__bracketed_text_begin] = STATE(1216), + [sym_link_text] = STATE(693), + [sym_span] = STATE(613), + [sym__bracketed_text_begin] = STATE(1236), [sym__comment_with_spaces] = STATE(147), [sym_raw_inline] = STATE(147), [sym_math] = STATE(147), @@ -5671,40 +5727,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(153), }, [4] = { - [sym__inline] = STATE(1096), - [sym__element] = STATE(26), + [sym__inline] = STATE(1116), + [sym__element] = STATE(531), [sym_emphasis] = STATE(149), - [sym_emphasis_begin] = STATE(1194), + [sym_emphasis_begin] = STATE(1214), [sym_strong] = STATE(149), - [sym_strong_begin] = STATE(1195), + [sym_strong_begin] = STATE(1215), [sym_superscript] = STATE(149), - [sym_superscript_begin] = STATE(1196), + [sym_superscript_begin] = STATE(1216), [sym_subscript] = STATE(149), - [sym_subscript_begin] = STATE(1197), + [sym_subscript_begin] = STATE(1217), [sym_highlighted] = STATE(149), - [sym_highlighted_begin] = STATE(1198), + [sym_highlighted_begin] = STATE(1218), [sym_insert] = STATE(149), - [sym_insert_begin] = STATE(1199), + [sym_insert_begin] = STATE(1219), [sym_delete] = STATE(149), - [sym_delete_begin] = STATE(1200), + [sym_delete_begin] = STATE(1220), [sym_hard_line_break] = STATE(148), [sym__smart_punctuation] = STATE(148), [sym_autolink] = STATE(148), [sym_footnote_reference] = STATE(149), - [sym_footnote_marker_begin] = STATE(1201), + [sym_footnote_marker_begin] = STATE(1221), [sym__image] = STATE(149), [sym_full_reference_image] = STATE(149), [sym_collapsed_reference_image] = STATE(149), [sym_inline_image] = STATE(149), - [sym_image_description] = STATE(667), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(690), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(149), [sym_full_reference_link] = STATE(149), [sym_collapsed_reference_link] = STATE(149), [sym_inline_link] = STATE(149), - [sym_link_text] = STATE(668), - [sym_span] = STATE(26), - [sym__bracketed_text_begin] = STATE(1222), + [sym_link_text] = STATE(691), + [sym_span] = STATE(531), + [sym__bracketed_text_begin] = STATE(1242), [sym__comment_with_spaces] = STATE(148), [sym_raw_inline] = STATE(148), [sym_math] = STATE(148), @@ -5753,39 +5809,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(101), }, [5] = { - [sym__element] = STATE(14), + [sym__element] = STATE(610), [sym_emphasis] = STATE(146), - [sym_emphasis_begin] = STATE(1203), + [sym_emphasis_begin] = STATE(922), [sym_strong] = STATE(146), - [sym_strong_begin] = STATE(883), + [sym_strong_begin] = STATE(1001), [sym_superscript] = STATE(146), - [sym_superscript_begin] = STATE(898), + [sym_superscript_begin] = STATE(1002), [sym_subscript] = STATE(146), - [sym_subscript_begin] = STATE(903), + [sym_subscript_begin] = STATE(1121), [sym_highlighted] = STATE(146), - [sym_highlighted_begin] = STATE(915), + [sym_highlighted_begin] = STATE(1124), [sym_insert] = STATE(146), [sym_insert_begin] = STATE(917), [sym_delete] = STATE(146), - [sym_delete_begin] = STATE(937), + [sym_delete_begin] = STATE(918), [sym_hard_line_break] = STATE(144), [sym__smart_punctuation] = STATE(144), [sym_autolink] = STATE(144), [sym_footnote_reference] = STATE(146), - [sym_footnote_marker_begin] = STATE(951), + [sym_footnote_marker_begin] = STATE(956), [sym__image] = STATE(146), [sym_full_reference_image] = STATE(146), [sym_collapsed_reference_image] = STATE(146), [sym_inline_image] = STATE(146), - [sym_image_description] = STATE(681), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(689), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(146), [sym_full_reference_link] = STATE(146), [sym_collapsed_reference_link] = STATE(146), [sym_inline_link] = STATE(146), - [sym_link_text] = STATE(657), - [sym_span] = STATE(14), - [sym__bracketed_text_begin] = STATE(960), + [sym_link_text] = STATE(679), + [sym_span] = STATE(610), + [sym__bracketed_text_begin] = STATE(1065), [sym__comment_with_spaces] = STATE(144), [sym_raw_inline] = STATE(144), [sym_math] = STATE(144), @@ -5835,40 +5891,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(51), }, [6] = { - [sym__inline_without_trailing_space] = STATE(1102), - [sym__element] = STATE(543), + [sym__inline_without_trailing_space] = STATE(971), + [sym__element] = STATE(572), [sym_emphasis] = STATE(150), - [sym_emphasis_begin] = STATE(1114), + [sym_emphasis_begin] = STATE(1134), [sym_strong] = STATE(150), - [sym_strong_begin] = STATE(1115), + [sym_strong_begin] = STATE(1135), [sym_superscript] = STATE(150), - [sym_superscript_begin] = STATE(1116), + [sym_superscript_begin] = STATE(1136), [sym_subscript] = STATE(150), - [sym_subscript_begin] = STATE(1117), + [sym_subscript_begin] = STATE(1137), [sym_highlighted] = STATE(150), - [sym_highlighted_begin] = STATE(1118), + [sym_highlighted_begin] = STATE(1138), [sym_insert] = STATE(150), - [sym_insert_begin] = STATE(1119), + [sym_insert_begin] = STATE(1139), [sym_delete] = STATE(150), - [sym_delete_begin] = STATE(1120), + [sym_delete_begin] = STATE(1140), [sym_hard_line_break] = STATE(133), [sym__smart_punctuation] = STATE(133), [sym_autolink] = STATE(133), [sym_footnote_reference] = STATE(150), - [sym_footnote_marker_begin] = STATE(1121), + [sym_footnote_marker_begin] = STATE(1141), [sym__image] = STATE(150), [sym_full_reference_image] = STATE(150), [sym_collapsed_reference_image] = STATE(150), [sym_inline_image] = STATE(150), - [sym_image_description] = STATE(678), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(705), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(150), [sym_full_reference_link] = STATE(150), [sym_collapsed_reference_link] = STATE(150), [sym_inline_link] = STATE(150), - [sym_link_text] = STATE(679), - [sym_span] = STATE(543), - [sym__bracketed_text_begin] = STATE(1214), + [sym_link_text] = STATE(706), + [sym_span] = STATE(572), + [sym__bracketed_text_begin] = STATE(1234), [sym__comment_with_spaces] = STATE(133), [sym_raw_inline] = STATE(133), [sym_math] = STATE(133), @@ -5917,40 +5973,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(207), }, [7] = { - [sym__inline_without_trailing_space] = STATE(1213), - [sym__element] = STATE(570), + [sym__inline_without_trailing_space] = STATE(979), + [sym__element] = STATE(580), [sym_emphasis] = STATE(142), - [sym_emphasis_begin] = STATE(1124), + [sym_emphasis_begin] = STATE(1144), [sym_strong] = STATE(142), - [sym_strong_begin] = STATE(1125), + [sym_strong_begin] = STATE(1145), [sym_superscript] = STATE(142), - [sym_superscript_begin] = STATE(1126), + [sym_superscript_begin] = STATE(1146), [sym_subscript] = STATE(142), - [sym_subscript_begin] = STATE(1127), + [sym_subscript_begin] = STATE(1147), [sym_highlighted] = STATE(142), - [sym_highlighted_begin] = STATE(1128), + [sym_highlighted_begin] = STATE(1148), [sym_insert] = STATE(142), - [sym_insert_begin] = STATE(1129), + [sym_insert_begin] = STATE(1149), [sym_delete] = STATE(142), - [sym_delete_begin] = STATE(1130), + [sym_delete_begin] = STATE(1150), [sym_hard_line_break] = STATE(137), [sym__smart_punctuation] = STATE(137), [sym_autolink] = STATE(137), [sym_footnote_reference] = STATE(142), - [sym_footnote_marker_begin] = STATE(1131), + [sym_footnote_marker_begin] = STATE(1151), [sym__image] = STATE(142), [sym_full_reference_image] = STATE(142), [sym_collapsed_reference_image] = STATE(142), [sym_inline_image] = STATE(142), - [sym_image_description] = STATE(687), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(702), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(142), [sym_full_reference_link] = STATE(142), [sym_collapsed_reference_link] = STATE(142), [sym_inline_link] = STATE(142), - [sym_link_text] = STATE(654), - [sym_span] = STATE(570), - [sym__bracketed_text_begin] = STATE(1215), + [sym_link_text] = STATE(698), + [sym_span] = STATE(580), + [sym__bracketed_text_begin] = STATE(1235), [sym__comment_with_spaces] = STATE(137), [sym_raw_inline] = STATE(137), [sym_math] = STATE(137), @@ -5999,40 +6055,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(257), }, [8] = { - [sym__inline] = STATE(974), - [sym__element] = STATE(16), + [sym__inline] = STATE(1010), + [sym__element] = STATE(565), [sym_emphasis] = STATE(143), - [sym_emphasis_begin] = STATE(1144), + [sym_emphasis_begin] = STATE(1164), [sym_strong] = STATE(143), - [sym_strong_begin] = STATE(1145), + [sym_strong_begin] = STATE(1165), [sym_superscript] = STATE(143), - [sym_superscript_begin] = STATE(1146), + [sym_superscript_begin] = STATE(1166), [sym_subscript] = STATE(143), - [sym_subscript_begin] = STATE(1147), + [sym_subscript_begin] = STATE(1167), [sym_highlighted] = STATE(143), - [sym_highlighted_begin] = STATE(1148), + [sym_highlighted_begin] = STATE(1168), [sym_insert] = STATE(143), - [sym_insert_begin] = STATE(1149), + [sym_insert_begin] = STATE(1169), [sym_delete] = STATE(143), - [sym_delete_begin] = STATE(1150), + [sym_delete_begin] = STATE(1170), [sym_hard_line_break] = STATE(141), [sym__smart_punctuation] = STATE(141), [sym_autolink] = STATE(141), [sym_footnote_reference] = STATE(143), - [sym_footnote_marker_begin] = STATE(1151), + [sym_footnote_marker_begin] = STATE(1171), [sym__image] = STATE(143), [sym_full_reference_image] = STATE(143), [sym_collapsed_reference_image] = STATE(143), [sym_inline_image] = STATE(143), - [sym_image_description] = STATE(660), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(678), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(143), [sym_full_reference_link] = STATE(143), [sym_collapsed_reference_link] = STATE(143), [sym_inline_link] = STATE(143), - [sym_link_text] = STATE(661), - [sym_span] = STATE(16), - [sym__bracketed_text_begin] = STATE(1217), + [sym_link_text] = STATE(683), + [sym_span] = STATE(565), + [sym__bracketed_text_begin] = STATE(1237), [sym__comment_with_spaces] = STATE(141), [sym_raw_inline] = STATE(141), [sym_math] = STATE(141), @@ -6081,40 +6137,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(307), }, [9] = { - [sym__inline] = STATE(888), - [sym__element] = STATE(18), + [sym__inline] = STATE(1011), + [sym__element] = STATE(596), [sym_emphasis] = STATE(135), - [sym_emphasis_begin] = STATE(1154), + [sym_emphasis_begin] = STATE(1174), [sym_strong] = STATE(135), - [sym_strong_begin] = STATE(1155), + [sym_strong_begin] = STATE(1175), [sym_superscript] = STATE(135), - [sym_superscript_begin] = STATE(1156), + [sym_superscript_begin] = STATE(1176), [sym_subscript] = STATE(135), - [sym_subscript_begin] = STATE(1157), + [sym_subscript_begin] = STATE(1177), [sym_highlighted] = STATE(135), - [sym_highlighted_begin] = STATE(1158), + [sym_highlighted_begin] = STATE(1178), [sym_insert] = STATE(135), - [sym_insert_begin] = STATE(1159), + [sym_insert_begin] = STATE(1179), [sym_delete] = STATE(135), - [sym_delete_begin] = STATE(1160), + [sym_delete_begin] = STATE(1180), [sym_hard_line_break] = STATE(134), [sym__smart_punctuation] = STATE(134), [sym_autolink] = STATE(134), [sym_footnote_reference] = STATE(135), - [sym_footnote_marker_begin] = STATE(1161), + [sym_footnote_marker_begin] = STATE(1181), [sym__image] = STATE(135), [sym_full_reference_image] = STATE(135), [sym_collapsed_reference_image] = STATE(135), [sym_inline_image] = STATE(135), - [sym_image_description] = STATE(677), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(692), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(135), [sym_full_reference_link] = STATE(135), [sym_collapsed_reference_link] = STATE(135), [sym_inline_link] = STATE(135), - [sym_link_text] = STATE(680), - [sym_span] = STATE(18), - [sym__bracketed_text_begin] = STATE(1218), + [sym_link_text] = STATE(704), + [sym_span] = STATE(596), + [sym__bracketed_text_begin] = STATE(1238), [sym__comment_with_spaces] = STATE(134), [sym_raw_inline] = STATE(134), [sym_math] = STATE(134), @@ -6163,40 +6219,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(357), }, [10] = { - [sym__inline] = STATE(965), - [sym__element] = STATE(20), + [sym__inline] = STATE(1016), + [sym__element] = STATE(525), [sym_emphasis] = STATE(136), - [sym_emphasis_begin] = STATE(1164), + [sym_emphasis_begin] = STATE(1184), [sym_strong] = STATE(136), - [sym_strong_begin] = STATE(1165), + [sym_strong_begin] = STATE(1185), [sym_superscript] = STATE(136), - [sym_superscript_begin] = STATE(1166), + [sym_superscript_begin] = STATE(1186), [sym_subscript] = STATE(136), - [sym_subscript_begin] = STATE(1167), + [sym_subscript_begin] = STATE(1187), [sym_highlighted] = STATE(136), - [sym_highlighted_begin] = STATE(1168), + [sym_highlighted_begin] = STATE(1188), [sym_insert] = STATE(136), - [sym_insert_begin] = STATE(1169), + [sym_insert_begin] = STATE(1189), [sym_delete] = STATE(136), - [sym_delete_begin] = STATE(1170), + [sym_delete_begin] = STATE(1190), [sym_hard_line_break] = STATE(138), [sym__smart_punctuation] = STATE(138), [sym_autolink] = STATE(138), [sym_footnote_reference] = STATE(136), - [sym_footnote_marker_begin] = STATE(1171), + [sym_footnote_marker_begin] = STATE(1191), [sym__image] = STATE(136), [sym_full_reference_image] = STATE(136), [sym_collapsed_reference_image] = STATE(136), [sym_inline_image] = STATE(136), - [sym_image_description] = STATE(685), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(676), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(136), [sym_full_reference_link] = STATE(136), [sym_collapsed_reference_link] = STATE(136), [sym_inline_link] = STATE(136), - [sym_link_text] = STATE(686), - [sym_span] = STATE(20), - [sym__bracketed_text_begin] = STATE(1219), + [sym_link_text] = STATE(677), + [sym_span] = STATE(525), + [sym__bracketed_text_begin] = STATE(1239), [sym__comment_with_spaces] = STATE(138), [sym_raw_inline] = STATE(138), [sym_math] = STATE(138), @@ -6245,40 +6301,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(407), }, [11] = { - [sym__inline] = STATE(1045), - [sym__element] = STATE(22), + [sym__inline] = STATE(1028), + [sym__element] = STATE(585), [sym_emphasis] = STATE(140), - [sym_emphasis_begin] = STATE(1174), + [sym_emphasis_begin] = STATE(1194), [sym_strong] = STATE(140), - [sym_strong_begin] = STATE(1175), + [sym_strong_begin] = STATE(1195), [sym_superscript] = STATE(140), - [sym_superscript_begin] = STATE(1176), + [sym_superscript_begin] = STATE(1196), [sym_subscript] = STATE(140), - [sym_subscript_begin] = STATE(1177), + [sym_subscript_begin] = STATE(1197), [sym_highlighted] = STATE(140), - [sym_highlighted_begin] = STATE(1178), + [sym_highlighted_begin] = STATE(1198), [sym_insert] = STATE(140), - [sym_insert_begin] = STATE(1179), + [sym_insert_begin] = STATE(1199), [sym_delete] = STATE(140), - [sym_delete_begin] = STATE(1180), + [sym_delete_begin] = STATE(1200), [sym_hard_line_break] = STATE(139), [sym__smart_punctuation] = STATE(139), [sym_autolink] = STATE(139), [sym_footnote_reference] = STATE(140), - [sym_footnote_marker_begin] = STATE(1181), + [sym_footnote_marker_begin] = STATE(1201), [sym__image] = STATE(140), [sym_full_reference_image] = STATE(140), [sym_collapsed_reference_image] = STATE(140), [sym_inline_image] = STATE(140), - [sym_image_description] = STATE(655), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(681), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(140), [sym_full_reference_link] = STATE(140), [sym_collapsed_reference_link] = STATE(140), [sym_inline_link] = STATE(140), - [sym_link_text] = STATE(656), - [sym_span] = STATE(22), - [sym__bracketed_text_begin] = STATE(1220), + [sym_link_text] = STATE(682), + [sym_span] = STATE(585), + [sym__bracketed_text_begin] = STATE(1240), [sym__comment_with_spaces] = STATE(139), [sym_raw_inline] = STATE(139), [sym_math] = STATE(139), @@ -6327,40 +6383,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(457), }, [12] = { - [sym__inline] = STATE(922), - [sym__element] = STATE(24), + [sym__inline] = STATE(1048), + [sym__element] = STATE(625), [sym_emphasis] = STATE(131), - [sym_emphasis_begin] = STATE(1184), + [sym_emphasis_begin] = STATE(1204), [sym_strong] = STATE(131), - [sym_strong_begin] = STATE(1185), + [sym_strong_begin] = STATE(1205), [sym_superscript] = STATE(131), - [sym_superscript_begin] = STATE(1186), + [sym_superscript_begin] = STATE(1206), [sym_subscript] = STATE(131), - [sym_subscript_begin] = STATE(1187), + [sym_subscript_begin] = STATE(1207), [sym_highlighted] = STATE(131), - [sym_highlighted_begin] = STATE(1188), + [sym_highlighted_begin] = STATE(1208), [sym_insert] = STATE(131), - [sym_insert_begin] = STATE(1189), + [sym_insert_begin] = STATE(1209), [sym_delete] = STATE(131), - [sym_delete_begin] = STATE(1190), + [sym_delete_begin] = STATE(1210), [sym_hard_line_break] = STATE(145), [sym__smart_punctuation] = STATE(145), [sym_autolink] = STATE(145), [sym_footnote_reference] = STATE(131), - [sym_footnote_marker_begin] = STATE(1191), + [sym_footnote_marker_begin] = STATE(1211), [sym__image] = STATE(131), [sym_full_reference_image] = STATE(131), [sym_collapsed_reference_image] = STATE(131), [sym_inline_image] = STATE(131), - [sym_image_description] = STATE(662), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(685), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(131), [sym_full_reference_link] = STATE(131), [sym_collapsed_reference_link] = STATE(131), [sym_inline_link] = STATE(131), - [sym_link_text] = STATE(663), - [sym_span] = STATE(24), - [sym__bracketed_text_begin] = STATE(1221), + [sym_link_text] = STATE(686), + [sym_span] = STATE(625), + [sym__bracketed_text_begin] = STATE(1241), [sym__comment_with_spaces] = STATE(145), [sym_raw_inline] = STATE(145), [sym_math] = STATE(145), @@ -6409,40 +6465,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(507), }, [13] = { - [sym__inline] = STATE(1054), - [sym__element] = STATE(26), + [sym__inline] = STATE(1082), + [sym__element] = STATE(531), [sym_emphasis] = STATE(149), - [sym_emphasis_begin] = STATE(1194), + [sym_emphasis_begin] = STATE(1214), [sym_strong] = STATE(149), - [sym_strong_begin] = STATE(1195), + [sym_strong_begin] = STATE(1215), [sym_superscript] = STATE(149), - [sym_superscript_begin] = STATE(1196), + [sym_superscript_begin] = STATE(1216), [sym_subscript] = STATE(149), - [sym_subscript_begin] = STATE(1197), + [sym_subscript_begin] = STATE(1217), [sym_highlighted] = STATE(149), - [sym_highlighted_begin] = STATE(1198), + [sym_highlighted_begin] = STATE(1218), [sym_insert] = STATE(149), - [sym_insert_begin] = STATE(1199), + [sym_insert_begin] = STATE(1219), [sym_delete] = STATE(149), - [sym_delete_begin] = STATE(1200), + [sym_delete_begin] = STATE(1220), [sym_hard_line_break] = STATE(148), [sym__smart_punctuation] = STATE(148), [sym_autolink] = STATE(148), [sym_footnote_reference] = STATE(149), - [sym_footnote_marker_begin] = STATE(1201), + [sym_footnote_marker_begin] = STATE(1221), [sym__image] = STATE(149), [sym_full_reference_image] = STATE(149), [sym_collapsed_reference_image] = STATE(149), [sym_inline_image] = STATE(149), - [sym_image_description] = STATE(667), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(690), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(149), [sym_full_reference_link] = STATE(149), [sym_collapsed_reference_link] = STATE(149), [sym_inline_link] = STATE(149), - [sym_link_text] = STATE(668), - [sym_span] = STATE(26), - [sym__bracketed_text_begin] = STATE(1222), + [sym_link_text] = STATE(691), + [sym_span] = STATE(531), + [sym__bracketed_text_begin] = STATE(1242), [sym__comment_with_spaces] = STATE(148), [sym_raw_inline] = STATE(148), [sym_math] = STATE(148), @@ -6491,39 +6547,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(101), }, [14] = { - [sym__element] = STATE(14), + [sym__element] = STATE(610), [sym_emphasis] = STATE(146), - [sym_emphasis_begin] = STATE(1203), + [sym_emphasis_begin] = STATE(922), [sym_strong] = STATE(146), - [sym_strong_begin] = STATE(883), + [sym_strong_begin] = STATE(1001), [sym_superscript] = STATE(146), - [sym_superscript_begin] = STATE(898), + [sym_superscript_begin] = STATE(1002), [sym_subscript] = STATE(146), - [sym_subscript_begin] = STATE(903), + [sym_subscript_begin] = STATE(1121), [sym_highlighted] = STATE(146), - [sym_highlighted_begin] = STATE(915), + [sym_highlighted_begin] = STATE(1124), [sym_insert] = STATE(146), [sym_insert_begin] = STATE(917), [sym_delete] = STATE(146), - [sym_delete_begin] = STATE(937), + [sym_delete_begin] = STATE(918), [sym_hard_line_break] = STATE(144), [sym__smart_punctuation] = STATE(144), [sym_autolink] = STATE(144), [sym_footnote_reference] = STATE(146), - [sym_footnote_marker_begin] = STATE(951), + [sym_footnote_marker_begin] = STATE(956), [sym__image] = STATE(146), [sym_full_reference_image] = STATE(146), [sym_collapsed_reference_image] = STATE(146), [sym_inline_image] = STATE(146), - [sym_image_description] = STATE(681), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(689), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(146), [sym_full_reference_link] = STATE(146), [sym_collapsed_reference_link] = STATE(146), [sym_inline_link] = STATE(146), - [sym_link_text] = STATE(657), - [sym_span] = STATE(14), - [sym__bracketed_text_begin] = STATE(960), + [sym_link_text] = STATE(679), + [sym_span] = STATE(610), + [sym__bracketed_text_begin] = STATE(1065), [sym__comment_with_spaces] = STATE(144), [sym_raw_inline] = STATE(144), [sym_math] = STATE(144), @@ -6573,39 +6629,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(583), }, [15] = { - [sym__element] = STATE(17), + [sym__element] = STATE(613), [sym_emphasis] = STATE(132), - [sym_emphasis_begin] = STATE(1134), + [sym_emphasis_begin] = STATE(1154), [sym_strong] = STATE(132), - [sym_strong_begin] = STATE(1135), + [sym_strong_begin] = STATE(1155), [sym_superscript] = STATE(132), - [sym_superscript_begin] = STATE(1136), + [sym_superscript_begin] = STATE(1156), [sym_subscript] = STATE(132), - [sym_subscript_begin] = STATE(1137), + [sym_subscript_begin] = STATE(1157), [sym_highlighted] = STATE(132), - [sym_highlighted_begin] = STATE(1138), + [sym_highlighted_begin] = STATE(1158), [sym_insert] = STATE(132), - [sym_insert_begin] = STATE(1139), + [sym_insert_begin] = STATE(1159), [sym_delete] = STATE(132), - [sym_delete_begin] = STATE(1140), + [sym_delete_begin] = STATE(1160), [sym_hard_line_break] = STATE(147), [sym__smart_punctuation] = STATE(147), [sym_autolink] = STATE(147), [sym_footnote_reference] = STATE(132), - [sym_footnote_marker_begin] = STATE(1141), + [sym_footnote_marker_begin] = STATE(1161), [sym__image] = STATE(132), [sym_full_reference_image] = STATE(132), [sym_collapsed_reference_image] = STATE(132), [sym_inline_image] = STATE(132), - [sym_image_description] = STATE(682), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(687), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(132), [sym_full_reference_link] = STATE(132), [sym_collapsed_reference_link] = STATE(132), [sym_inline_link] = STATE(132), - [sym_link_text] = STATE(689), - [sym_span] = STATE(17), - [sym__bracketed_text_begin] = STATE(1216), + [sym_link_text] = STATE(693), + [sym_span] = STATE(613), + [sym__bracketed_text_begin] = STATE(1236), [sym__comment_with_spaces] = STATE(147), [sym_raw_inline] = STATE(147), [sym_math] = STATE(147), @@ -6655,39 +6711,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_superscript_end] = ACTIONS(155), }, [16] = { - [sym__element] = STATE(19), + [sym__element] = STATE(565), [sym_emphasis] = STATE(143), - [sym_emphasis_begin] = STATE(1144), + [sym_emphasis_begin] = STATE(1164), [sym_strong] = STATE(143), - [sym_strong_begin] = STATE(1145), + [sym_strong_begin] = STATE(1165), [sym_superscript] = STATE(143), - [sym_superscript_begin] = STATE(1146), + [sym_superscript_begin] = STATE(1166), [sym_subscript] = STATE(143), - [sym_subscript_begin] = STATE(1147), + [sym_subscript_begin] = STATE(1167), [sym_highlighted] = STATE(143), - [sym_highlighted_begin] = STATE(1148), + [sym_highlighted_begin] = STATE(1168), [sym_insert] = STATE(143), - [sym_insert_begin] = STATE(1149), + [sym_insert_begin] = STATE(1169), [sym_delete] = STATE(143), - [sym_delete_begin] = STATE(1150), + [sym_delete_begin] = STATE(1170), [sym_hard_line_break] = STATE(141), [sym__smart_punctuation] = STATE(141), [sym_autolink] = STATE(141), [sym_footnote_reference] = STATE(143), - [sym_footnote_marker_begin] = STATE(1151), + [sym_footnote_marker_begin] = STATE(1171), [sym__image] = STATE(143), [sym_full_reference_image] = STATE(143), [sym_collapsed_reference_image] = STATE(143), [sym_inline_image] = STATE(143), - [sym_image_description] = STATE(660), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(678), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(143), [sym_full_reference_link] = STATE(143), [sym_collapsed_reference_link] = STATE(143), [sym_inline_link] = STATE(143), - [sym_link_text] = STATE(661), - [sym_span] = STATE(19), - [sym__bracketed_text_begin] = STATE(1217), + [sym_link_text] = STATE(683), + [sym_span] = STATE(565), + [sym__bracketed_text_begin] = STATE(1237), [sym__comment_with_spaces] = STATE(141), [sym_raw_inline] = STATE(141), [sym_math] = STATE(141), @@ -6737,39 +6793,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_subscript_end] = ACTIONS(155), }, [17] = { - [sym__element] = STATE(17), + [sym__element] = STATE(613), [sym_emphasis] = STATE(132), - [sym_emphasis_begin] = STATE(1134), + [sym_emphasis_begin] = STATE(1154), [sym_strong] = STATE(132), - [sym_strong_begin] = STATE(1135), + [sym_strong_begin] = STATE(1155), [sym_superscript] = STATE(132), - [sym_superscript_begin] = STATE(1136), + [sym_superscript_begin] = STATE(1156), [sym_subscript] = STATE(132), - [sym_subscript_begin] = STATE(1137), + [sym_subscript_begin] = STATE(1157), [sym_highlighted] = STATE(132), - [sym_highlighted_begin] = STATE(1138), + [sym_highlighted_begin] = STATE(1158), [sym_insert] = STATE(132), - [sym_insert_begin] = STATE(1139), + [sym_insert_begin] = STATE(1159), [sym_delete] = STATE(132), - [sym_delete_begin] = STATE(1140), + [sym_delete_begin] = STATE(1160), [sym_hard_line_break] = STATE(147), [sym__smart_punctuation] = STATE(147), [sym_autolink] = STATE(147), [sym_footnote_reference] = STATE(132), - [sym_footnote_marker_begin] = STATE(1141), + [sym_footnote_marker_begin] = STATE(1161), [sym__image] = STATE(132), [sym_full_reference_image] = STATE(132), [sym_collapsed_reference_image] = STATE(132), [sym_inline_image] = STATE(132), - [sym_image_description] = STATE(682), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(687), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(132), [sym_full_reference_link] = STATE(132), [sym_collapsed_reference_link] = STATE(132), [sym_inline_link] = STATE(132), - [sym_link_text] = STATE(689), - [sym_span] = STATE(17), - [sym__bracketed_text_begin] = STATE(1216), + [sym_link_text] = STATE(693), + [sym_span] = STATE(613), + [sym__bracketed_text_begin] = STATE(1236), [sym__comment_with_spaces] = STATE(147), [sym_raw_inline] = STATE(147), [sym_math] = STATE(147), @@ -6819,39 +6875,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_superscript_end] = ACTIONS(509), }, [18] = { - [sym__element] = STATE(21), + [sym__element] = STATE(596), [sym_emphasis] = STATE(135), - [sym_emphasis_begin] = STATE(1154), + [sym_emphasis_begin] = STATE(1174), [sym_strong] = STATE(135), - [sym_strong_begin] = STATE(1155), + [sym_strong_begin] = STATE(1175), [sym_superscript] = STATE(135), - [sym_superscript_begin] = STATE(1156), + [sym_superscript_begin] = STATE(1176), [sym_subscript] = STATE(135), - [sym_subscript_begin] = STATE(1157), + [sym_subscript_begin] = STATE(1177), [sym_highlighted] = STATE(135), - [sym_highlighted_begin] = STATE(1158), + [sym_highlighted_begin] = STATE(1178), [sym_insert] = STATE(135), - [sym_insert_begin] = STATE(1159), + [sym_insert_begin] = STATE(1179), [sym_delete] = STATE(135), - [sym_delete_begin] = STATE(1160), + [sym_delete_begin] = STATE(1180), [sym_hard_line_break] = STATE(134), [sym__smart_punctuation] = STATE(134), [sym_autolink] = STATE(134), [sym_footnote_reference] = STATE(135), - [sym_footnote_marker_begin] = STATE(1161), + [sym_footnote_marker_begin] = STATE(1181), [sym__image] = STATE(135), [sym_full_reference_image] = STATE(135), [sym_collapsed_reference_image] = STATE(135), [sym_inline_image] = STATE(135), - [sym_image_description] = STATE(677), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(692), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(135), [sym_full_reference_link] = STATE(135), [sym_collapsed_reference_link] = STATE(135), [sym_inline_link] = STATE(135), - [sym_link_text] = STATE(680), - [sym_span] = STATE(21), - [sym__bracketed_text_begin] = STATE(1218), + [sym_link_text] = STATE(704), + [sym_span] = STATE(596), + [sym__bracketed_text_begin] = STATE(1238), [sym__comment_with_spaces] = STATE(134), [sym_raw_inline] = STATE(134), [sym_math] = STATE(134), @@ -6901,39 +6957,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_highlighted_end] = ACTIONS(155), }, [19] = { - [sym__element] = STATE(19), + [sym__element] = STATE(565), [sym_emphasis] = STATE(143), - [sym_emphasis_begin] = STATE(1144), + [sym_emphasis_begin] = STATE(1164), [sym_strong] = STATE(143), - [sym_strong_begin] = STATE(1145), + [sym_strong_begin] = STATE(1165), [sym_superscript] = STATE(143), - [sym_superscript_begin] = STATE(1146), + [sym_superscript_begin] = STATE(1166), [sym_subscript] = STATE(143), - [sym_subscript_begin] = STATE(1147), + [sym_subscript_begin] = STATE(1167), [sym_highlighted] = STATE(143), - [sym_highlighted_begin] = STATE(1148), + [sym_highlighted_begin] = STATE(1168), [sym_insert] = STATE(143), - [sym_insert_begin] = STATE(1149), + [sym_insert_begin] = STATE(1169), [sym_delete] = STATE(143), - [sym_delete_begin] = STATE(1150), + [sym_delete_begin] = STATE(1170), [sym_hard_line_break] = STATE(141), [sym__smart_punctuation] = STATE(141), [sym_autolink] = STATE(141), [sym_footnote_reference] = STATE(143), - [sym_footnote_marker_begin] = STATE(1151), + [sym_footnote_marker_begin] = STATE(1171), [sym__image] = STATE(143), [sym_full_reference_image] = STATE(143), [sym_collapsed_reference_image] = STATE(143), [sym_inline_image] = STATE(143), - [sym_image_description] = STATE(660), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(678), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(143), [sym_full_reference_link] = STATE(143), [sym_collapsed_reference_link] = STATE(143), [sym_inline_link] = STATE(143), - [sym_link_text] = STATE(661), - [sym_span] = STATE(19), - [sym__bracketed_text_begin] = STATE(1217), + [sym_link_text] = STATE(683), + [sym_span] = STATE(565), + [sym__bracketed_text_begin] = STATE(1237), [sym__comment_with_spaces] = STATE(141), [sym_raw_inline] = STATE(141), [sym_math] = STATE(141), @@ -6983,39 +7039,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_subscript_end] = ACTIONS(509), }, [20] = { - [sym__element] = STATE(23), + [sym__element] = STATE(525), [sym_emphasis] = STATE(136), - [sym_emphasis_begin] = STATE(1164), + [sym_emphasis_begin] = STATE(1184), [sym_strong] = STATE(136), - [sym_strong_begin] = STATE(1165), + [sym_strong_begin] = STATE(1185), [sym_superscript] = STATE(136), - [sym_superscript_begin] = STATE(1166), + [sym_superscript_begin] = STATE(1186), [sym_subscript] = STATE(136), - [sym_subscript_begin] = STATE(1167), + [sym_subscript_begin] = STATE(1187), [sym_highlighted] = STATE(136), - [sym_highlighted_begin] = STATE(1168), + [sym_highlighted_begin] = STATE(1188), [sym_insert] = STATE(136), - [sym_insert_begin] = STATE(1169), + [sym_insert_begin] = STATE(1189), [sym_delete] = STATE(136), - [sym_delete_begin] = STATE(1170), + [sym_delete_begin] = STATE(1190), [sym_hard_line_break] = STATE(138), [sym__smart_punctuation] = STATE(138), [sym_autolink] = STATE(138), [sym_footnote_reference] = STATE(136), - [sym_footnote_marker_begin] = STATE(1171), + [sym_footnote_marker_begin] = STATE(1191), [sym__image] = STATE(136), [sym_full_reference_image] = STATE(136), [sym_collapsed_reference_image] = STATE(136), [sym_inline_image] = STATE(136), - [sym_image_description] = STATE(685), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(676), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(136), [sym_full_reference_link] = STATE(136), [sym_collapsed_reference_link] = STATE(136), [sym_inline_link] = STATE(136), - [sym_link_text] = STATE(686), - [sym_span] = STATE(23), - [sym__bracketed_text_begin] = STATE(1219), + [sym_link_text] = STATE(677), + [sym_span] = STATE(525), + [sym__bracketed_text_begin] = STATE(1239), [sym__comment_with_spaces] = STATE(138), [sym_raw_inline] = STATE(138), [sym_math] = STATE(138), @@ -7065,39 +7121,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_insert_end] = ACTIONS(155), }, [21] = { - [sym__element] = STATE(21), + [sym__element] = STATE(596), [sym_emphasis] = STATE(135), - [sym_emphasis_begin] = STATE(1154), + [sym_emphasis_begin] = STATE(1174), [sym_strong] = STATE(135), - [sym_strong_begin] = STATE(1155), + [sym_strong_begin] = STATE(1175), [sym_superscript] = STATE(135), - [sym_superscript_begin] = STATE(1156), + [sym_superscript_begin] = STATE(1176), [sym_subscript] = STATE(135), - [sym_subscript_begin] = STATE(1157), + [sym_subscript_begin] = STATE(1177), [sym_highlighted] = STATE(135), - [sym_highlighted_begin] = STATE(1158), + [sym_highlighted_begin] = STATE(1178), [sym_insert] = STATE(135), - [sym_insert_begin] = STATE(1159), + [sym_insert_begin] = STATE(1179), [sym_delete] = STATE(135), - [sym_delete_begin] = STATE(1160), + [sym_delete_begin] = STATE(1180), [sym_hard_line_break] = STATE(134), [sym__smart_punctuation] = STATE(134), [sym_autolink] = STATE(134), [sym_footnote_reference] = STATE(135), - [sym_footnote_marker_begin] = STATE(1161), + [sym_footnote_marker_begin] = STATE(1181), [sym__image] = STATE(135), [sym_full_reference_image] = STATE(135), [sym_collapsed_reference_image] = STATE(135), [sym_inline_image] = STATE(135), - [sym_image_description] = STATE(677), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(692), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(135), [sym_full_reference_link] = STATE(135), [sym_collapsed_reference_link] = STATE(135), [sym_inline_link] = STATE(135), - [sym_link_text] = STATE(680), - [sym_span] = STATE(21), - [sym__bracketed_text_begin] = STATE(1218), + [sym_link_text] = STATE(704), + [sym_span] = STATE(596), + [sym__bracketed_text_begin] = STATE(1238), [sym__comment_with_spaces] = STATE(134), [sym_raw_inline] = STATE(134), [sym_math] = STATE(134), @@ -7147,39 +7203,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_highlighted_end] = ACTIONS(509), }, [22] = { - [sym__element] = STATE(25), + [sym__element] = STATE(585), [sym_emphasis] = STATE(140), - [sym_emphasis_begin] = STATE(1174), + [sym_emphasis_begin] = STATE(1194), [sym_strong] = STATE(140), - [sym_strong_begin] = STATE(1175), + [sym_strong_begin] = STATE(1195), [sym_superscript] = STATE(140), - [sym_superscript_begin] = STATE(1176), + [sym_superscript_begin] = STATE(1196), [sym_subscript] = STATE(140), - [sym_subscript_begin] = STATE(1177), + [sym_subscript_begin] = STATE(1197), [sym_highlighted] = STATE(140), - [sym_highlighted_begin] = STATE(1178), + [sym_highlighted_begin] = STATE(1198), [sym_insert] = STATE(140), - [sym_insert_begin] = STATE(1179), + [sym_insert_begin] = STATE(1199), [sym_delete] = STATE(140), - [sym_delete_begin] = STATE(1180), + [sym_delete_begin] = STATE(1200), [sym_hard_line_break] = STATE(139), [sym__smart_punctuation] = STATE(139), [sym_autolink] = STATE(139), [sym_footnote_reference] = STATE(140), - [sym_footnote_marker_begin] = STATE(1181), + [sym_footnote_marker_begin] = STATE(1201), [sym__image] = STATE(140), [sym_full_reference_image] = STATE(140), [sym_collapsed_reference_image] = STATE(140), [sym_inline_image] = STATE(140), - [sym_image_description] = STATE(655), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(681), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(140), [sym_full_reference_link] = STATE(140), [sym_collapsed_reference_link] = STATE(140), [sym_inline_link] = STATE(140), - [sym_link_text] = STATE(656), - [sym_span] = STATE(25), - [sym__bracketed_text_begin] = STATE(1220), + [sym_link_text] = STATE(682), + [sym_span] = STATE(585), + [sym__bracketed_text_begin] = STATE(1240), [sym__comment_with_spaces] = STATE(139), [sym_raw_inline] = STATE(139), [sym_math] = STATE(139), @@ -7229,39 +7285,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_delete_end] = ACTIONS(155), }, [23] = { - [sym__element] = STATE(23), + [sym__element] = STATE(525), [sym_emphasis] = STATE(136), - [sym_emphasis_begin] = STATE(1164), + [sym_emphasis_begin] = STATE(1184), [sym_strong] = STATE(136), - [sym_strong_begin] = STATE(1165), + [sym_strong_begin] = STATE(1185), [sym_superscript] = STATE(136), - [sym_superscript_begin] = STATE(1166), + [sym_superscript_begin] = STATE(1186), [sym_subscript] = STATE(136), - [sym_subscript_begin] = STATE(1167), + [sym_subscript_begin] = STATE(1187), [sym_highlighted] = STATE(136), - [sym_highlighted_begin] = STATE(1168), + [sym_highlighted_begin] = STATE(1188), [sym_insert] = STATE(136), - [sym_insert_begin] = STATE(1169), + [sym_insert_begin] = STATE(1189), [sym_delete] = STATE(136), - [sym_delete_begin] = STATE(1170), + [sym_delete_begin] = STATE(1190), [sym_hard_line_break] = STATE(138), [sym__smart_punctuation] = STATE(138), [sym_autolink] = STATE(138), [sym_footnote_reference] = STATE(136), - [sym_footnote_marker_begin] = STATE(1171), + [sym_footnote_marker_begin] = STATE(1191), [sym__image] = STATE(136), [sym_full_reference_image] = STATE(136), [sym_collapsed_reference_image] = STATE(136), [sym_inline_image] = STATE(136), - [sym_image_description] = STATE(685), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(676), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(136), [sym_full_reference_link] = STATE(136), [sym_collapsed_reference_link] = STATE(136), [sym_inline_link] = STATE(136), - [sym_link_text] = STATE(686), - [sym_span] = STATE(23), - [sym__bracketed_text_begin] = STATE(1219), + [sym_link_text] = STATE(677), + [sym_span] = STATE(525), + [sym__bracketed_text_begin] = STATE(1239), [sym__comment_with_spaces] = STATE(138), [sym_raw_inline] = STATE(138), [sym_math] = STATE(138), @@ -7311,39 +7367,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_insert_end] = ACTIONS(509), }, [24] = { - [sym__element] = STATE(27), + [sym__element] = STATE(625), [sym_emphasis] = STATE(131), - [sym_emphasis_begin] = STATE(1184), + [sym_emphasis_begin] = STATE(1204), [sym_strong] = STATE(131), - [sym_strong_begin] = STATE(1185), + [sym_strong_begin] = STATE(1205), [sym_superscript] = STATE(131), - [sym_superscript_begin] = STATE(1186), + [sym_superscript_begin] = STATE(1206), [sym_subscript] = STATE(131), - [sym_subscript_begin] = STATE(1187), + [sym_subscript_begin] = STATE(1207), [sym_highlighted] = STATE(131), - [sym_highlighted_begin] = STATE(1188), + [sym_highlighted_begin] = STATE(1208), [sym_insert] = STATE(131), - [sym_insert_begin] = STATE(1189), + [sym_insert_begin] = STATE(1209), [sym_delete] = STATE(131), - [sym_delete_begin] = STATE(1190), + [sym_delete_begin] = STATE(1210), [sym_hard_line_break] = STATE(145), [sym__smart_punctuation] = STATE(145), [sym_autolink] = STATE(145), [sym_footnote_reference] = STATE(131), - [sym_footnote_marker_begin] = STATE(1191), + [sym_footnote_marker_begin] = STATE(1211), [sym__image] = STATE(131), [sym_full_reference_image] = STATE(131), [sym_collapsed_reference_image] = STATE(131), [sym_inline_image] = STATE(131), - [sym_image_description] = STATE(662), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(685), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(131), [sym_full_reference_link] = STATE(131), [sym_collapsed_reference_link] = STATE(131), [sym_inline_link] = STATE(131), - [sym_link_text] = STATE(663), - [sym_span] = STATE(27), - [sym__bracketed_text_begin] = STATE(1221), + [sym_link_text] = STATE(686), + [sym_span] = STATE(625), + [sym__bracketed_text_begin] = STATE(1241), [sym__comment_with_spaces] = STATE(145), [sym_raw_inline] = STATE(145), [sym_math] = STATE(145), @@ -7393,39 +7449,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(507), }, [25] = { - [sym__element] = STATE(25), + [sym__element] = STATE(585), [sym_emphasis] = STATE(140), - [sym_emphasis_begin] = STATE(1174), + [sym_emphasis_begin] = STATE(1194), [sym_strong] = STATE(140), - [sym_strong_begin] = STATE(1175), + [sym_strong_begin] = STATE(1195), [sym_superscript] = STATE(140), - [sym_superscript_begin] = STATE(1176), + [sym_superscript_begin] = STATE(1196), [sym_subscript] = STATE(140), - [sym_subscript_begin] = STATE(1177), + [sym_subscript_begin] = STATE(1197), [sym_highlighted] = STATE(140), - [sym_highlighted_begin] = STATE(1178), + [sym_highlighted_begin] = STATE(1198), [sym_insert] = STATE(140), - [sym_insert_begin] = STATE(1179), + [sym_insert_begin] = STATE(1199), [sym_delete] = STATE(140), - [sym_delete_begin] = STATE(1180), + [sym_delete_begin] = STATE(1200), [sym_hard_line_break] = STATE(139), [sym__smart_punctuation] = STATE(139), [sym_autolink] = STATE(139), [sym_footnote_reference] = STATE(140), - [sym_footnote_marker_begin] = STATE(1181), + [sym_footnote_marker_begin] = STATE(1201), [sym__image] = STATE(140), [sym_full_reference_image] = STATE(140), [sym_collapsed_reference_image] = STATE(140), [sym_inline_image] = STATE(140), - [sym_image_description] = STATE(655), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(681), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(140), [sym_full_reference_link] = STATE(140), [sym_collapsed_reference_link] = STATE(140), [sym_inline_link] = STATE(140), - [sym_link_text] = STATE(656), - [sym_span] = STATE(25), - [sym__bracketed_text_begin] = STATE(1220), + [sym_link_text] = STATE(682), + [sym_span] = STATE(585), + [sym__bracketed_text_begin] = STATE(1240), [sym__comment_with_spaces] = STATE(139), [sym_raw_inline] = STATE(139), [sym_math] = STATE(139), @@ -7475,39 +7531,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_delete_end] = ACTIONS(509), }, [26] = { - [sym__element] = STATE(28), + [sym__element] = STATE(531), [sym_emphasis] = STATE(149), - [sym_emphasis_begin] = STATE(1194), + [sym_emphasis_begin] = STATE(1214), [sym_strong] = STATE(149), - [sym_strong_begin] = STATE(1195), + [sym_strong_begin] = STATE(1215), [sym_superscript] = STATE(149), - [sym_superscript_begin] = STATE(1196), + [sym_superscript_begin] = STATE(1216), [sym_subscript] = STATE(149), - [sym_subscript_begin] = STATE(1197), + [sym_subscript_begin] = STATE(1217), [sym_highlighted] = STATE(149), - [sym_highlighted_begin] = STATE(1198), + [sym_highlighted_begin] = STATE(1218), [sym_insert] = STATE(149), - [sym_insert_begin] = STATE(1199), + [sym_insert_begin] = STATE(1219), [sym_delete] = STATE(149), - [sym_delete_begin] = STATE(1200), + [sym_delete_begin] = STATE(1220), [sym_hard_line_break] = STATE(148), [sym__smart_punctuation] = STATE(148), [sym_autolink] = STATE(148), [sym_footnote_reference] = STATE(149), - [sym_footnote_marker_begin] = STATE(1201), + [sym_footnote_marker_begin] = STATE(1221), [sym__image] = STATE(149), [sym_full_reference_image] = STATE(149), [sym_collapsed_reference_image] = STATE(149), [sym_inline_image] = STATE(149), - [sym_image_description] = STATE(667), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(690), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(149), [sym_full_reference_link] = STATE(149), [sym_collapsed_reference_link] = STATE(149), [sym_inline_link] = STATE(149), - [sym_link_text] = STATE(668), - [sym_span] = STATE(28), - [sym__bracketed_text_begin] = STATE(1222), + [sym_link_text] = STATE(691), + [sym_span] = STATE(531), + [sym__bracketed_text_begin] = STATE(1242), [sym__comment_with_spaces] = STATE(148), [sym_raw_inline] = STATE(148), [sym_math] = STATE(148), @@ -7557,39 +7613,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__square_bracket_span_end] = ACTIONS(155), }, [27] = { - [sym__element] = STATE(27), + [sym__element] = STATE(625), [sym_emphasis] = STATE(131), - [sym_emphasis_begin] = STATE(1184), + [sym_emphasis_begin] = STATE(1204), [sym_strong] = STATE(131), - [sym_strong_begin] = STATE(1185), + [sym_strong_begin] = STATE(1205), [sym_superscript] = STATE(131), - [sym_superscript_begin] = STATE(1186), + [sym_superscript_begin] = STATE(1206), [sym_subscript] = STATE(131), - [sym_subscript_begin] = STATE(1187), + [sym_subscript_begin] = STATE(1207), [sym_highlighted] = STATE(131), - [sym_highlighted_begin] = STATE(1188), + [sym_highlighted_begin] = STATE(1208), [sym_insert] = STATE(131), - [sym_insert_begin] = STATE(1189), + [sym_insert_begin] = STATE(1209), [sym_delete] = STATE(131), - [sym_delete_begin] = STATE(1190), + [sym_delete_begin] = STATE(1210), [sym_hard_line_break] = STATE(145), [sym__smart_punctuation] = STATE(145), [sym_autolink] = STATE(145), [sym_footnote_reference] = STATE(131), - [sym_footnote_marker_begin] = STATE(1191), + [sym_footnote_marker_begin] = STATE(1211), [sym__image] = STATE(131), [sym_full_reference_image] = STATE(131), [sym_collapsed_reference_image] = STATE(131), [sym_inline_image] = STATE(131), - [sym_image_description] = STATE(662), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(685), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(131), [sym_full_reference_link] = STATE(131), [sym_collapsed_reference_link] = STATE(131), [sym_inline_link] = STATE(131), - [sym_link_text] = STATE(663), - [sym_span] = STATE(27), - [sym__bracketed_text_begin] = STATE(1221), + [sym_link_text] = STATE(686), + [sym_span] = STATE(625), + [sym__bracketed_text_begin] = STATE(1241), [sym__comment_with_spaces] = STATE(145), [sym_raw_inline] = STATE(145), [sym_math] = STATE(145), @@ -7639,39 +7695,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(1047), }, [28] = { - [sym__element] = STATE(28), + [sym__element] = STATE(531), [sym_emphasis] = STATE(149), - [sym_emphasis_begin] = STATE(1194), + [sym_emphasis_begin] = STATE(1214), [sym_strong] = STATE(149), - [sym_strong_begin] = STATE(1195), + [sym_strong_begin] = STATE(1215), [sym_superscript] = STATE(149), - [sym_superscript_begin] = STATE(1196), + [sym_superscript_begin] = STATE(1216), [sym_subscript] = STATE(149), - [sym_subscript_begin] = STATE(1197), + [sym_subscript_begin] = STATE(1217), [sym_highlighted] = STATE(149), - [sym_highlighted_begin] = STATE(1198), + [sym_highlighted_begin] = STATE(1218), [sym_insert] = STATE(149), - [sym_insert_begin] = STATE(1199), + [sym_insert_begin] = STATE(1219), [sym_delete] = STATE(149), - [sym_delete_begin] = STATE(1200), + [sym_delete_begin] = STATE(1220), [sym_hard_line_break] = STATE(148), [sym__smart_punctuation] = STATE(148), [sym_autolink] = STATE(148), [sym_footnote_reference] = STATE(149), - [sym_footnote_marker_begin] = STATE(1201), + [sym_footnote_marker_begin] = STATE(1221), [sym__image] = STATE(149), [sym_full_reference_image] = STATE(149), [sym_collapsed_reference_image] = STATE(149), [sym_inline_image] = STATE(149), - [sym_image_description] = STATE(667), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(690), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(149), [sym_full_reference_link] = STATE(149), [sym_collapsed_reference_link] = STATE(149), [sym_inline_link] = STATE(149), - [sym_link_text] = STATE(668), - [sym_span] = STATE(28), - [sym__bracketed_text_begin] = STATE(1222), + [sym_link_text] = STATE(691), + [sym_span] = STATE(531), + [sym__bracketed_text_begin] = STATE(1242), [sym__comment_with_spaces] = STATE(148), [sym_raw_inline] = STATE(148), [sym_math] = STATE(148), @@ -7721,40 +7777,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__square_bracket_span_end] = ACTIONS(509), }, [29] = { - [sym__inline_without_trailing_space] = STATE(1007), - [sym__element] = STATE(543), + [sym__inline_without_trailing_space] = STATE(1027), + [sym__element] = STATE(572), [sym_emphasis] = STATE(150), - [sym_emphasis_begin] = STATE(1114), + [sym_emphasis_begin] = STATE(1134), [sym_strong] = STATE(150), - [sym_strong_begin] = STATE(1115), + [sym_strong_begin] = STATE(1135), [sym_superscript] = STATE(150), - [sym_superscript_begin] = STATE(1116), + [sym_superscript_begin] = STATE(1136), [sym_subscript] = STATE(150), - [sym_subscript_begin] = STATE(1117), + [sym_subscript_begin] = STATE(1137), [sym_highlighted] = STATE(150), - [sym_highlighted_begin] = STATE(1118), + [sym_highlighted_begin] = STATE(1138), [sym_insert] = STATE(150), - [sym_insert_begin] = STATE(1119), + [sym_insert_begin] = STATE(1139), [sym_delete] = STATE(150), - [sym_delete_begin] = STATE(1120), + [sym_delete_begin] = STATE(1140), [sym_hard_line_break] = STATE(133), [sym__smart_punctuation] = STATE(133), [sym_autolink] = STATE(133), [sym_footnote_reference] = STATE(150), - [sym_footnote_marker_begin] = STATE(1121), + [sym_footnote_marker_begin] = STATE(1141), [sym__image] = STATE(150), [sym_full_reference_image] = STATE(150), [sym_collapsed_reference_image] = STATE(150), [sym_inline_image] = STATE(150), - [sym_image_description] = STATE(678), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(705), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(150), [sym_full_reference_link] = STATE(150), [sym_collapsed_reference_link] = STATE(150), [sym_inline_link] = STATE(150), - [sym_link_text] = STATE(679), - [sym_span] = STATE(543), - [sym__bracketed_text_begin] = STATE(1214), + [sym_link_text] = STATE(706), + [sym_span] = STATE(572), + [sym__bracketed_text_begin] = STATE(1234), [sym__comment_with_spaces] = STATE(133), [sym_raw_inline] = STATE(133), [sym_math] = STATE(133), @@ -7803,40 +7859,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(207), }, [30] = { - [sym__inline_without_trailing_space] = STATE(1009), - [sym__element] = STATE(570), + [sym__inline_without_trailing_space] = STATE(1029), + [sym__element] = STATE(580), [sym_emphasis] = STATE(142), - [sym_emphasis_begin] = STATE(1124), + [sym_emphasis_begin] = STATE(1144), [sym_strong] = STATE(142), - [sym_strong_begin] = STATE(1125), + [sym_strong_begin] = STATE(1145), [sym_superscript] = STATE(142), - [sym_superscript_begin] = STATE(1126), + [sym_superscript_begin] = STATE(1146), [sym_subscript] = STATE(142), - [sym_subscript_begin] = STATE(1127), + [sym_subscript_begin] = STATE(1147), [sym_highlighted] = STATE(142), - [sym_highlighted_begin] = STATE(1128), + [sym_highlighted_begin] = STATE(1148), [sym_insert] = STATE(142), - [sym_insert_begin] = STATE(1129), + [sym_insert_begin] = STATE(1149), [sym_delete] = STATE(142), - [sym_delete_begin] = STATE(1130), + [sym_delete_begin] = STATE(1150), [sym_hard_line_break] = STATE(137), [sym__smart_punctuation] = STATE(137), [sym_autolink] = STATE(137), [sym_footnote_reference] = STATE(142), - [sym_footnote_marker_begin] = STATE(1131), + [sym_footnote_marker_begin] = STATE(1151), [sym__image] = STATE(142), [sym_full_reference_image] = STATE(142), [sym_collapsed_reference_image] = STATE(142), [sym_inline_image] = STATE(142), - [sym_image_description] = STATE(687), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(702), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(142), [sym_full_reference_link] = STATE(142), [sym_collapsed_reference_link] = STATE(142), [sym_inline_link] = STATE(142), - [sym_link_text] = STATE(654), - [sym_span] = STATE(570), - [sym__bracketed_text_begin] = STATE(1215), + [sym_link_text] = STATE(698), + [sym_span] = STATE(580), + [sym__bracketed_text_begin] = STATE(1235), [sym__comment_with_spaces] = STATE(137), [sym_raw_inline] = STATE(137), [sym_math] = STATE(137), @@ -7885,40 +7941,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(257), }, [31] = { - [sym__inline] = STATE(1010), - [sym__element] = STATE(15), + [sym__inline] = STATE(1030), + [sym__element] = STATE(613), [sym_emphasis] = STATE(132), - [sym_emphasis_begin] = STATE(1134), + [sym_emphasis_begin] = STATE(1154), [sym_strong] = STATE(132), - [sym_strong_begin] = STATE(1135), + [sym_strong_begin] = STATE(1155), [sym_superscript] = STATE(132), - [sym_superscript_begin] = STATE(1136), + [sym_superscript_begin] = STATE(1156), [sym_subscript] = STATE(132), - [sym_subscript_begin] = STATE(1137), + [sym_subscript_begin] = STATE(1157), [sym_highlighted] = STATE(132), - [sym_highlighted_begin] = STATE(1138), + [sym_highlighted_begin] = STATE(1158), [sym_insert] = STATE(132), - [sym_insert_begin] = STATE(1139), + [sym_insert_begin] = STATE(1159), [sym_delete] = STATE(132), - [sym_delete_begin] = STATE(1140), + [sym_delete_begin] = STATE(1160), [sym_hard_line_break] = STATE(147), [sym__smart_punctuation] = STATE(147), [sym_autolink] = STATE(147), [sym_footnote_reference] = STATE(132), - [sym_footnote_marker_begin] = STATE(1141), + [sym_footnote_marker_begin] = STATE(1161), [sym__image] = STATE(132), [sym_full_reference_image] = STATE(132), [sym_collapsed_reference_image] = STATE(132), [sym_inline_image] = STATE(132), - [sym_image_description] = STATE(682), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(687), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(132), [sym_full_reference_link] = STATE(132), [sym_collapsed_reference_link] = STATE(132), [sym_inline_link] = STATE(132), - [sym_link_text] = STATE(689), - [sym_span] = STATE(15), - [sym__bracketed_text_begin] = STATE(1216), + [sym_link_text] = STATE(693), + [sym_span] = STATE(613), + [sym__bracketed_text_begin] = STATE(1236), [sym__comment_with_spaces] = STATE(147), [sym_raw_inline] = STATE(147), [sym_math] = STATE(147), @@ -7967,40 +8023,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(153), }, [32] = { - [sym__inline] = STATE(1011), - [sym__element] = STATE(16), + [sym__inline] = STATE(1031), + [sym__element] = STATE(565), [sym_emphasis] = STATE(143), - [sym_emphasis_begin] = STATE(1144), + [sym_emphasis_begin] = STATE(1164), [sym_strong] = STATE(143), - [sym_strong_begin] = STATE(1145), + [sym_strong_begin] = STATE(1165), [sym_superscript] = STATE(143), - [sym_superscript_begin] = STATE(1146), + [sym_superscript_begin] = STATE(1166), [sym_subscript] = STATE(143), - [sym_subscript_begin] = STATE(1147), + [sym_subscript_begin] = STATE(1167), [sym_highlighted] = STATE(143), - [sym_highlighted_begin] = STATE(1148), + [sym_highlighted_begin] = STATE(1168), [sym_insert] = STATE(143), - [sym_insert_begin] = STATE(1149), + [sym_insert_begin] = STATE(1169), [sym_delete] = STATE(143), - [sym_delete_begin] = STATE(1150), + [sym_delete_begin] = STATE(1170), [sym_hard_line_break] = STATE(141), [sym__smart_punctuation] = STATE(141), [sym_autolink] = STATE(141), [sym_footnote_reference] = STATE(143), - [sym_footnote_marker_begin] = STATE(1151), + [sym_footnote_marker_begin] = STATE(1171), [sym__image] = STATE(143), [sym_full_reference_image] = STATE(143), [sym_collapsed_reference_image] = STATE(143), [sym_inline_image] = STATE(143), - [sym_image_description] = STATE(660), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(678), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(143), [sym_full_reference_link] = STATE(143), [sym_collapsed_reference_link] = STATE(143), [sym_inline_link] = STATE(143), - [sym_link_text] = STATE(661), - [sym_span] = STATE(16), - [sym__bracketed_text_begin] = STATE(1217), + [sym_link_text] = STATE(683), + [sym_span] = STATE(565), + [sym__bracketed_text_begin] = STATE(1237), [sym__comment_with_spaces] = STATE(141), [sym_raw_inline] = STATE(141), [sym_math] = STATE(141), @@ -8049,40 +8105,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(307), }, [33] = { - [sym__inline] = STATE(1012), - [sym__element] = STATE(18), + [sym__inline] = STATE(1032), + [sym__element] = STATE(596), [sym_emphasis] = STATE(135), - [sym_emphasis_begin] = STATE(1154), + [sym_emphasis_begin] = STATE(1174), [sym_strong] = STATE(135), - [sym_strong_begin] = STATE(1155), + [sym_strong_begin] = STATE(1175), [sym_superscript] = STATE(135), - [sym_superscript_begin] = STATE(1156), + [sym_superscript_begin] = STATE(1176), [sym_subscript] = STATE(135), - [sym_subscript_begin] = STATE(1157), + [sym_subscript_begin] = STATE(1177), [sym_highlighted] = STATE(135), - [sym_highlighted_begin] = STATE(1158), + [sym_highlighted_begin] = STATE(1178), [sym_insert] = STATE(135), - [sym_insert_begin] = STATE(1159), + [sym_insert_begin] = STATE(1179), [sym_delete] = STATE(135), - [sym_delete_begin] = STATE(1160), + [sym_delete_begin] = STATE(1180), [sym_hard_line_break] = STATE(134), [sym__smart_punctuation] = STATE(134), [sym_autolink] = STATE(134), [sym_footnote_reference] = STATE(135), - [sym_footnote_marker_begin] = STATE(1161), + [sym_footnote_marker_begin] = STATE(1181), [sym__image] = STATE(135), [sym_full_reference_image] = STATE(135), [sym_collapsed_reference_image] = STATE(135), [sym_inline_image] = STATE(135), - [sym_image_description] = STATE(677), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(692), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(135), [sym_full_reference_link] = STATE(135), [sym_collapsed_reference_link] = STATE(135), [sym_inline_link] = STATE(135), - [sym_link_text] = STATE(680), - [sym_span] = STATE(18), - [sym__bracketed_text_begin] = STATE(1218), + [sym_link_text] = STATE(704), + [sym_span] = STATE(596), + [sym__bracketed_text_begin] = STATE(1238), [sym__comment_with_spaces] = STATE(134), [sym_raw_inline] = STATE(134), [sym_math] = STATE(134), @@ -8131,40 +8187,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(357), }, [34] = { - [sym__inline] = STATE(1014), - [sym__element] = STATE(20), + [sym__inline] = STATE(1034), + [sym__element] = STATE(525), [sym_emphasis] = STATE(136), - [sym_emphasis_begin] = STATE(1164), + [sym_emphasis_begin] = STATE(1184), [sym_strong] = STATE(136), - [sym_strong_begin] = STATE(1165), + [sym_strong_begin] = STATE(1185), [sym_superscript] = STATE(136), - [sym_superscript_begin] = STATE(1166), + [sym_superscript_begin] = STATE(1186), [sym_subscript] = STATE(136), - [sym_subscript_begin] = STATE(1167), + [sym_subscript_begin] = STATE(1187), [sym_highlighted] = STATE(136), - [sym_highlighted_begin] = STATE(1168), + [sym_highlighted_begin] = STATE(1188), [sym_insert] = STATE(136), - [sym_insert_begin] = STATE(1169), + [sym_insert_begin] = STATE(1189), [sym_delete] = STATE(136), - [sym_delete_begin] = STATE(1170), + [sym_delete_begin] = STATE(1190), [sym_hard_line_break] = STATE(138), [sym__smart_punctuation] = STATE(138), [sym_autolink] = STATE(138), [sym_footnote_reference] = STATE(136), - [sym_footnote_marker_begin] = STATE(1171), + [sym_footnote_marker_begin] = STATE(1191), [sym__image] = STATE(136), [sym_full_reference_image] = STATE(136), [sym_collapsed_reference_image] = STATE(136), [sym_inline_image] = STATE(136), - [sym_image_description] = STATE(685), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(676), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(136), [sym_full_reference_link] = STATE(136), [sym_collapsed_reference_link] = STATE(136), [sym_inline_link] = STATE(136), - [sym_link_text] = STATE(686), - [sym_span] = STATE(20), - [sym__bracketed_text_begin] = STATE(1219), + [sym_link_text] = STATE(677), + [sym_span] = STATE(525), + [sym__bracketed_text_begin] = STATE(1239), [sym__comment_with_spaces] = STATE(138), [sym_raw_inline] = STATE(138), [sym_math] = STATE(138), @@ -8213,40 +8269,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(407), }, [35] = { - [sym__inline] = STATE(1022), - [sym__element] = STATE(22), + [sym__inline] = STATE(1042), + [sym__element] = STATE(585), [sym_emphasis] = STATE(140), - [sym_emphasis_begin] = STATE(1174), + [sym_emphasis_begin] = STATE(1194), [sym_strong] = STATE(140), - [sym_strong_begin] = STATE(1175), + [sym_strong_begin] = STATE(1195), [sym_superscript] = STATE(140), - [sym_superscript_begin] = STATE(1176), + [sym_superscript_begin] = STATE(1196), [sym_subscript] = STATE(140), - [sym_subscript_begin] = STATE(1177), + [sym_subscript_begin] = STATE(1197), [sym_highlighted] = STATE(140), - [sym_highlighted_begin] = STATE(1178), + [sym_highlighted_begin] = STATE(1198), [sym_insert] = STATE(140), - [sym_insert_begin] = STATE(1179), + [sym_insert_begin] = STATE(1199), [sym_delete] = STATE(140), - [sym_delete_begin] = STATE(1180), + [sym_delete_begin] = STATE(1200), [sym_hard_line_break] = STATE(139), [sym__smart_punctuation] = STATE(139), [sym_autolink] = STATE(139), [sym_footnote_reference] = STATE(140), - [sym_footnote_marker_begin] = STATE(1181), + [sym_footnote_marker_begin] = STATE(1201), [sym__image] = STATE(140), [sym_full_reference_image] = STATE(140), [sym_collapsed_reference_image] = STATE(140), [sym_inline_image] = STATE(140), - [sym_image_description] = STATE(655), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(681), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(140), [sym_full_reference_link] = STATE(140), [sym_collapsed_reference_link] = STATE(140), [sym_inline_link] = STATE(140), - [sym_link_text] = STATE(656), - [sym_span] = STATE(22), - [sym__bracketed_text_begin] = STATE(1220), + [sym_link_text] = STATE(682), + [sym_span] = STATE(585), + [sym__bracketed_text_begin] = STATE(1240), [sym__comment_with_spaces] = STATE(139), [sym_raw_inline] = STATE(139), [sym_math] = STATE(139), @@ -8295,40 +8351,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(457), }, [36] = { - [sym__inline] = STATE(1024), - [sym__element] = STATE(24), + [sym__inline] = STATE(1044), + [sym__element] = STATE(625), [sym_emphasis] = STATE(131), - [sym_emphasis_begin] = STATE(1184), + [sym_emphasis_begin] = STATE(1204), [sym_strong] = STATE(131), - [sym_strong_begin] = STATE(1185), + [sym_strong_begin] = STATE(1205), [sym_superscript] = STATE(131), - [sym_superscript_begin] = STATE(1186), + [sym_superscript_begin] = STATE(1206), [sym_subscript] = STATE(131), - [sym_subscript_begin] = STATE(1187), + [sym_subscript_begin] = STATE(1207), [sym_highlighted] = STATE(131), - [sym_highlighted_begin] = STATE(1188), + [sym_highlighted_begin] = STATE(1208), [sym_insert] = STATE(131), - [sym_insert_begin] = STATE(1189), + [sym_insert_begin] = STATE(1209), [sym_delete] = STATE(131), - [sym_delete_begin] = STATE(1190), + [sym_delete_begin] = STATE(1210), [sym_hard_line_break] = STATE(145), [sym__smart_punctuation] = STATE(145), [sym_autolink] = STATE(145), [sym_footnote_reference] = STATE(131), - [sym_footnote_marker_begin] = STATE(1191), + [sym_footnote_marker_begin] = STATE(1211), [sym__image] = STATE(131), [sym_full_reference_image] = STATE(131), [sym_collapsed_reference_image] = STATE(131), [sym_inline_image] = STATE(131), - [sym_image_description] = STATE(662), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(685), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(131), [sym_full_reference_link] = STATE(131), [sym_collapsed_reference_link] = STATE(131), [sym_inline_link] = STATE(131), - [sym_link_text] = STATE(663), - [sym_span] = STATE(24), - [sym__bracketed_text_begin] = STATE(1221), + [sym_link_text] = STATE(686), + [sym_span] = STATE(625), + [sym__bracketed_text_begin] = STATE(1241), [sym__comment_with_spaces] = STATE(145), [sym_raw_inline] = STATE(145), [sym_math] = STATE(145), @@ -8377,40 +8433,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(507), }, [37] = { - [sym__inline_without_trailing_space] = STATE(1078), - [sym__element] = STATE(543), + [sym__inline_without_trailing_space] = STATE(1098), + [sym__element] = STATE(572), [sym_emphasis] = STATE(150), - [sym_emphasis_begin] = STATE(1114), + [sym_emphasis_begin] = STATE(1134), [sym_strong] = STATE(150), - [sym_strong_begin] = STATE(1115), + [sym_strong_begin] = STATE(1135), [sym_superscript] = STATE(150), - [sym_superscript_begin] = STATE(1116), + [sym_superscript_begin] = STATE(1136), [sym_subscript] = STATE(150), - [sym_subscript_begin] = STATE(1117), + [sym_subscript_begin] = STATE(1137), [sym_highlighted] = STATE(150), - [sym_highlighted_begin] = STATE(1118), + [sym_highlighted_begin] = STATE(1138), [sym_insert] = STATE(150), - [sym_insert_begin] = STATE(1119), + [sym_insert_begin] = STATE(1139), [sym_delete] = STATE(150), - [sym_delete_begin] = STATE(1120), + [sym_delete_begin] = STATE(1140), [sym_hard_line_break] = STATE(133), [sym__smart_punctuation] = STATE(133), [sym_autolink] = STATE(133), [sym_footnote_reference] = STATE(150), - [sym_footnote_marker_begin] = STATE(1121), + [sym_footnote_marker_begin] = STATE(1141), [sym__image] = STATE(150), [sym_full_reference_image] = STATE(150), [sym_collapsed_reference_image] = STATE(150), [sym_inline_image] = STATE(150), - [sym_image_description] = STATE(678), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(705), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(150), [sym_full_reference_link] = STATE(150), [sym_collapsed_reference_link] = STATE(150), [sym_inline_link] = STATE(150), - [sym_link_text] = STATE(679), - [sym_span] = STATE(543), - [sym__bracketed_text_begin] = STATE(1214), + [sym_link_text] = STATE(706), + [sym_span] = STATE(572), + [sym__bracketed_text_begin] = STATE(1234), [sym__comment_with_spaces] = STATE(133), [sym_raw_inline] = STATE(133), [sym_math] = STATE(133), @@ -8459,40 +8515,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(207), }, [38] = { - [sym__inline_without_trailing_space] = STATE(1086), - [sym__element] = STATE(570), + [sym__inline_without_trailing_space] = STATE(1106), + [sym__element] = STATE(580), [sym_emphasis] = STATE(142), - [sym_emphasis_begin] = STATE(1124), + [sym_emphasis_begin] = STATE(1144), [sym_strong] = STATE(142), - [sym_strong_begin] = STATE(1125), + [sym_strong_begin] = STATE(1145), [sym_superscript] = STATE(142), - [sym_superscript_begin] = STATE(1126), + [sym_superscript_begin] = STATE(1146), [sym_subscript] = STATE(142), - [sym_subscript_begin] = STATE(1127), + [sym_subscript_begin] = STATE(1147), [sym_highlighted] = STATE(142), - [sym_highlighted_begin] = STATE(1128), + [sym_highlighted_begin] = STATE(1148), [sym_insert] = STATE(142), - [sym_insert_begin] = STATE(1129), + [sym_insert_begin] = STATE(1149), [sym_delete] = STATE(142), - [sym_delete_begin] = STATE(1130), + [sym_delete_begin] = STATE(1150), [sym_hard_line_break] = STATE(137), [sym__smart_punctuation] = STATE(137), [sym_autolink] = STATE(137), [sym_footnote_reference] = STATE(142), - [sym_footnote_marker_begin] = STATE(1131), + [sym_footnote_marker_begin] = STATE(1151), [sym__image] = STATE(142), [sym_full_reference_image] = STATE(142), [sym_collapsed_reference_image] = STATE(142), [sym_inline_image] = STATE(142), - [sym_image_description] = STATE(687), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(702), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(142), [sym_full_reference_link] = STATE(142), [sym_collapsed_reference_link] = STATE(142), [sym_inline_link] = STATE(142), - [sym_link_text] = STATE(654), - [sym_span] = STATE(570), - [sym__bracketed_text_begin] = STATE(1215), + [sym_link_text] = STATE(698), + [sym_span] = STATE(580), + [sym__bracketed_text_begin] = STATE(1235), [sym__comment_with_spaces] = STATE(137), [sym_raw_inline] = STATE(137), [sym_math] = STATE(137), @@ -8541,40 +8597,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(257), }, [39] = { - [sym__inline] = STATE(1087), - [sym__element] = STATE(15), + [sym__inline] = STATE(1107), + [sym__element] = STATE(613), [sym_emphasis] = STATE(132), - [sym_emphasis_begin] = STATE(1134), + [sym_emphasis_begin] = STATE(1154), [sym_strong] = STATE(132), - [sym_strong_begin] = STATE(1135), + [sym_strong_begin] = STATE(1155), [sym_superscript] = STATE(132), - [sym_superscript_begin] = STATE(1136), + [sym_superscript_begin] = STATE(1156), [sym_subscript] = STATE(132), - [sym_subscript_begin] = STATE(1137), + [sym_subscript_begin] = STATE(1157), [sym_highlighted] = STATE(132), - [sym_highlighted_begin] = STATE(1138), + [sym_highlighted_begin] = STATE(1158), [sym_insert] = STATE(132), - [sym_insert_begin] = STATE(1139), + [sym_insert_begin] = STATE(1159), [sym_delete] = STATE(132), - [sym_delete_begin] = STATE(1140), + [sym_delete_begin] = STATE(1160), [sym_hard_line_break] = STATE(147), [sym__smart_punctuation] = STATE(147), [sym_autolink] = STATE(147), [sym_footnote_reference] = STATE(132), - [sym_footnote_marker_begin] = STATE(1141), + [sym_footnote_marker_begin] = STATE(1161), [sym__image] = STATE(132), [sym_full_reference_image] = STATE(132), [sym_collapsed_reference_image] = STATE(132), [sym_inline_image] = STATE(132), - [sym_image_description] = STATE(682), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(687), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(132), [sym_full_reference_link] = STATE(132), [sym_collapsed_reference_link] = STATE(132), [sym_inline_link] = STATE(132), - [sym_link_text] = STATE(689), - [sym_span] = STATE(15), - [sym__bracketed_text_begin] = STATE(1216), + [sym_link_text] = STATE(693), + [sym_span] = STATE(613), + [sym__bracketed_text_begin] = STATE(1236), [sym__comment_with_spaces] = STATE(147), [sym_raw_inline] = STATE(147), [sym_math] = STATE(147), @@ -8623,40 +8679,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(153), }, [40] = { - [sym__inline] = STATE(1088), - [sym__element] = STATE(16), + [sym__inline] = STATE(1108), + [sym__element] = STATE(565), [sym_emphasis] = STATE(143), - [sym_emphasis_begin] = STATE(1144), + [sym_emphasis_begin] = STATE(1164), [sym_strong] = STATE(143), - [sym_strong_begin] = STATE(1145), + [sym_strong_begin] = STATE(1165), [sym_superscript] = STATE(143), - [sym_superscript_begin] = STATE(1146), + [sym_superscript_begin] = STATE(1166), [sym_subscript] = STATE(143), - [sym_subscript_begin] = STATE(1147), + [sym_subscript_begin] = STATE(1167), [sym_highlighted] = STATE(143), - [sym_highlighted_begin] = STATE(1148), + [sym_highlighted_begin] = STATE(1168), [sym_insert] = STATE(143), - [sym_insert_begin] = STATE(1149), + [sym_insert_begin] = STATE(1169), [sym_delete] = STATE(143), - [sym_delete_begin] = STATE(1150), + [sym_delete_begin] = STATE(1170), [sym_hard_line_break] = STATE(141), [sym__smart_punctuation] = STATE(141), [sym_autolink] = STATE(141), [sym_footnote_reference] = STATE(143), - [sym_footnote_marker_begin] = STATE(1151), + [sym_footnote_marker_begin] = STATE(1171), [sym__image] = STATE(143), [sym_full_reference_image] = STATE(143), [sym_collapsed_reference_image] = STATE(143), [sym_inline_image] = STATE(143), - [sym_image_description] = STATE(660), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(678), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(143), [sym_full_reference_link] = STATE(143), [sym_collapsed_reference_link] = STATE(143), [sym_inline_link] = STATE(143), - [sym_link_text] = STATE(661), - [sym_span] = STATE(16), - [sym__bracketed_text_begin] = STATE(1217), + [sym_link_text] = STATE(683), + [sym_span] = STATE(565), + [sym__bracketed_text_begin] = STATE(1237), [sym__comment_with_spaces] = STATE(141), [sym_raw_inline] = STATE(141), [sym_math] = STATE(141), @@ -8705,40 +8761,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(307), }, [41] = { - [sym__inline] = STATE(1089), - [sym__element] = STATE(18), + [sym__inline] = STATE(1109), + [sym__element] = STATE(596), [sym_emphasis] = STATE(135), - [sym_emphasis_begin] = STATE(1154), + [sym_emphasis_begin] = STATE(1174), [sym_strong] = STATE(135), - [sym_strong_begin] = STATE(1155), + [sym_strong_begin] = STATE(1175), [sym_superscript] = STATE(135), - [sym_superscript_begin] = STATE(1156), + [sym_superscript_begin] = STATE(1176), [sym_subscript] = STATE(135), - [sym_subscript_begin] = STATE(1157), + [sym_subscript_begin] = STATE(1177), [sym_highlighted] = STATE(135), - [sym_highlighted_begin] = STATE(1158), + [sym_highlighted_begin] = STATE(1178), [sym_insert] = STATE(135), - [sym_insert_begin] = STATE(1159), + [sym_insert_begin] = STATE(1179), [sym_delete] = STATE(135), - [sym_delete_begin] = STATE(1160), + [sym_delete_begin] = STATE(1180), [sym_hard_line_break] = STATE(134), [sym__smart_punctuation] = STATE(134), [sym_autolink] = STATE(134), [sym_footnote_reference] = STATE(135), - [sym_footnote_marker_begin] = STATE(1161), + [sym_footnote_marker_begin] = STATE(1181), [sym__image] = STATE(135), [sym_full_reference_image] = STATE(135), [sym_collapsed_reference_image] = STATE(135), [sym_inline_image] = STATE(135), - [sym_image_description] = STATE(677), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(692), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(135), [sym_full_reference_link] = STATE(135), [sym_collapsed_reference_link] = STATE(135), [sym_inline_link] = STATE(135), - [sym_link_text] = STATE(680), - [sym_span] = STATE(18), - [sym__bracketed_text_begin] = STATE(1218), + [sym_link_text] = STATE(704), + [sym_span] = STATE(596), + [sym__bracketed_text_begin] = STATE(1238), [sym__comment_with_spaces] = STATE(134), [sym_raw_inline] = STATE(134), [sym_math] = STATE(134), @@ -8787,40 +8843,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(357), }, [42] = { - [sym__inline] = STATE(1090), - [sym__element] = STATE(20), + [sym__inline] = STATE(1110), + [sym__element] = STATE(525), [sym_emphasis] = STATE(136), - [sym_emphasis_begin] = STATE(1164), + [sym_emphasis_begin] = STATE(1184), [sym_strong] = STATE(136), - [sym_strong_begin] = STATE(1165), + [sym_strong_begin] = STATE(1185), [sym_superscript] = STATE(136), - [sym_superscript_begin] = STATE(1166), + [sym_superscript_begin] = STATE(1186), [sym_subscript] = STATE(136), - [sym_subscript_begin] = STATE(1167), + [sym_subscript_begin] = STATE(1187), [sym_highlighted] = STATE(136), - [sym_highlighted_begin] = STATE(1168), + [sym_highlighted_begin] = STATE(1188), [sym_insert] = STATE(136), - [sym_insert_begin] = STATE(1169), + [sym_insert_begin] = STATE(1189), [sym_delete] = STATE(136), - [sym_delete_begin] = STATE(1170), + [sym_delete_begin] = STATE(1190), [sym_hard_line_break] = STATE(138), [sym__smart_punctuation] = STATE(138), [sym_autolink] = STATE(138), [sym_footnote_reference] = STATE(136), - [sym_footnote_marker_begin] = STATE(1171), + [sym_footnote_marker_begin] = STATE(1191), [sym__image] = STATE(136), [sym_full_reference_image] = STATE(136), [sym_collapsed_reference_image] = STATE(136), [sym_inline_image] = STATE(136), - [sym_image_description] = STATE(685), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(676), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(136), [sym_full_reference_link] = STATE(136), [sym_collapsed_reference_link] = STATE(136), [sym_inline_link] = STATE(136), - [sym_link_text] = STATE(686), - [sym_span] = STATE(20), - [sym__bracketed_text_begin] = STATE(1219), + [sym_link_text] = STATE(677), + [sym_span] = STATE(525), + [sym__bracketed_text_begin] = STATE(1239), [sym__comment_with_spaces] = STATE(138), [sym_raw_inline] = STATE(138), [sym_math] = STATE(138), @@ -8869,40 +8925,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(407), }, [43] = { - [sym__inline] = STATE(1091), - [sym__element] = STATE(22), + [sym__inline] = STATE(1111), + [sym__element] = STATE(585), [sym_emphasis] = STATE(140), - [sym_emphasis_begin] = STATE(1174), + [sym_emphasis_begin] = STATE(1194), [sym_strong] = STATE(140), - [sym_strong_begin] = STATE(1175), + [sym_strong_begin] = STATE(1195), [sym_superscript] = STATE(140), - [sym_superscript_begin] = STATE(1176), + [sym_superscript_begin] = STATE(1196), [sym_subscript] = STATE(140), - [sym_subscript_begin] = STATE(1177), + [sym_subscript_begin] = STATE(1197), [sym_highlighted] = STATE(140), - [sym_highlighted_begin] = STATE(1178), + [sym_highlighted_begin] = STATE(1198), [sym_insert] = STATE(140), - [sym_insert_begin] = STATE(1179), + [sym_insert_begin] = STATE(1199), [sym_delete] = STATE(140), - [sym_delete_begin] = STATE(1180), + [sym_delete_begin] = STATE(1200), [sym_hard_line_break] = STATE(139), [sym__smart_punctuation] = STATE(139), [sym_autolink] = STATE(139), [sym_footnote_reference] = STATE(140), - [sym_footnote_marker_begin] = STATE(1181), + [sym_footnote_marker_begin] = STATE(1201), [sym__image] = STATE(140), [sym_full_reference_image] = STATE(140), [sym_collapsed_reference_image] = STATE(140), [sym_inline_image] = STATE(140), - [sym_image_description] = STATE(655), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(681), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(140), [sym_full_reference_link] = STATE(140), [sym_collapsed_reference_link] = STATE(140), [sym_inline_link] = STATE(140), - [sym_link_text] = STATE(656), - [sym_span] = STATE(22), - [sym__bracketed_text_begin] = STATE(1220), + [sym_link_text] = STATE(682), + [sym_span] = STATE(585), + [sym__bracketed_text_begin] = STATE(1240), [sym__comment_with_spaces] = STATE(139), [sym_raw_inline] = STATE(139), [sym_math] = STATE(139), @@ -8951,40 +9007,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(457), }, [44] = { - [sym__inline] = STATE(1094), - [sym__element] = STATE(24), + [sym__inline] = STATE(1114), + [sym__element] = STATE(625), [sym_emphasis] = STATE(131), - [sym_emphasis_begin] = STATE(1184), + [sym_emphasis_begin] = STATE(1204), [sym_strong] = STATE(131), - [sym_strong_begin] = STATE(1185), + [sym_strong_begin] = STATE(1205), [sym_superscript] = STATE(131), - [sym_superscript_begin] = STATE(1186), + [sym_superscript_begin] = STATE(1206), [sym_subscript] = STATE(131), - [sym_subscript_begin] = STATE(1187), + [sym_subscript_begin] = STATE(1207), [sym_highlighted] = STATE(131), - [sym_highlighted_begin] = STATE(1188), + [sym_highlighted_begin] = STATE(1208), [sym_insert] = STATE(131), - [sym_insert_begin] = STATE(1189), + [sym_insert_begin] = STATE(1209), [sym_delete] = STATE(131), - [sym_delete_begin] = STATE(1190), + [sym_delete_begin] = STATE(1210), [sym_hard_line_break] = STATE(145), [sym__smart_punctuation] = STATE(145), [sym_autolink] = STATE(145), [sym_footnote_reference] = STATE(131), - [sym_footnote_marker_begin] = STATE(1191), + [sym_footnote_marker_begin] = STATE(1211), [sym__image] = STATE(131), [sym_full_reference_image] = STATE(131), [sym_collapsed_reference_image] = STATE(131), [sym_inline_image] = STATE(131), - [sym_image_description] = STATE(662), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(685), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(131), [sym_full_reference_link] = STATE(131), [sym_collapsed_reference_link] = STATE(131), [sym_inline_link] = STATE(131), - [sym_link_text] = STATE(663), - [sym_span] = STATE(24), - [sym__bracketed_text_begin] = STATE(1221), + [sym_link_text] = STATE(686), + [sym_span] = STATE(625), + [sym__bracketed_text_begin] = STATE(1241), [sym__comment_with_spaces] = STATE(145), [sym_raw_inline] = STATE(145), [sym_math] = STATE(145), @@ -9033,40 +9089,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(507), }, [45] = { - [sym__inline_without_trailing_space] = STATE(977), - [sym__element] = STATE(543), + [sym__inline_without_trailing_space] = STATE(1075), + [sym__element] = STATE(572), [sym_emphasis] = STATE(150), - [sym_emphasis_begin] = STATE(1114), + [sym_emphasis_begin] = STATE(1134), [sym_strong] = STATE(150), - [sym_strong_begin] = STATE(1115), + [sym_strong_begin] = STATE(1135), [sym_superscript] = STATE(150), - [sym_superscript_begin] = STATE(1116), + [sym_superscript_begin] = STATE(1136), [sym_subscript] = STATE(150), - [sym_subscript_begin] = STATE(1117), + [sym_subscript_begin] = STATE(1137), [sym_highlighted] = STATE(150), - [sym_highlighted_begin] = STATE(1118), + [sym_highlighted_begin] = STATE(1138), [sym_insert] = STATE(150), - [sym_insert_begin] = STATE(1119), + [sym_insert_begin] = STATE(1139), [sym_delete] = STATE(150), - [sym_delete_begin] = STATE(1120), + [sym_delete_begin] = STATE(1140), [sym_hard_line_break] = STATE(133), [sym__smart_punctuation] = STATE(133), [sym_autolink] = STATE(133), [sym_footnote_reference] = STATE(150), - [sym_footnote_marker_begin] = STATE(1121), + [sym_footnote_marker_begin] = STATE(1141), [sym__image] = STATE(150), [sym_full_reference_image] = STATE(150), [sym_collapsed_reference_image] = STATE(150), [sym_inline_image] = STATE(150), - [sym_image_description] = STATE(678), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(705), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(150), [sym_full_reference_link] = STATE(150), [sym_collapsed_reference_link] = STATE(150), [sym_inline_link] = STATE(150), - [sym_link_text] = STATE(679), - [sym_span] = STATE(543), - [sym__bracketed_text_begin] = STATE(1214), + [sym_link_text] = STATE(706), + [sym_span] = STATE(572), + [sym__bracketed_text_begin] = STATE(1234), [sym__comment_with_spaces] = STATE(133), [sym_raw_inline] = STATE(133), [sym_math] = STATE(133), @@ -9115,40 +9171,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(207), }, [46] = { - [sym__inline] = STATE(1112), - [sym__element] = STATE(26), + [sym__inline] = STATE(1132), + [sym__element] = STATE(531), [sym_emphasis] = STATE(149), - [sym_emphasis_begin] = STATE(1194), + [sym_emphasis_begin] = STATE(1214), [sym_strong] = STATE(149), - [sym_strong_begin] = STATE(1195), + [sym_strong_begin] = STATE(1215), [sym_superscript] = STATE(149), - [sym_superscript_begin] = STATE(1196), + [sym_superscript_begin] = STATE(1216), [sym_subscript] = STATE(149), - [sym_subscript_begin] = STATE(1197), + [sym_subscript_begin] = STATE(1217), [sym_highlighted] = STATE(149), - [sym_highlighted_begin] = STATE(1198), + [sym_highlighted_begin] = STATE(1218), [sym_insert] = STATE(149), - [sym_insert_begin] = STATE(1199), + [sym_insert_begin] = STATE(1219), [sym_delete] = STATE(149), - [sym_delete_begin] = STATE(1200), + [sym_delete_begin] = STATE(1220), [sym_hard_line_break] = STATE(148), [sym__smart_punctuation] = STATE(148), [sym_autolink] = STATE(148), [sym_footnote_reference] = STATE(149), - [sym_footnote_marker_begin] = STATE(1201), + [sym_footnote_marker_begin] = STATE(1221), [sym__image] = STATE(149), [sym_full_reference_image] = STATE(149), [sym_collapsed_reference_image] = STATE(149), [sym_inline_image] = STATE(149), - [sym_image_description] = STATE(667), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(690), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(149), [sym_full_reference_link] = STATE(149), [sym_collapsed_reference_link] = STATE(149), [sym_inline_link] = STATE(149), - [sym_link_text] = STATE(668), - [sym_span] = STATE(26), - [sym__bracketed_text_begin] = STATE(1222), + [sym_link_text] = STATE(691), + [sym_span] = STATE(531), + [sym__bracketed_text_begin] = STATE(1242), [sym__comment_with_spaces] = STATE(148), [sym_raw_inline] = STATE(148), [sym_math] = STATE(148), @@ -9197,40 +9253,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(101), }, [47] = { - [sym__inline] = STATE(979), - [sym__element] = STATE(15), + [sym__inline] = STATE(977), + [sym__element] = STATE(613), [sym_emphasis] = STATE(132), - [sym_emphasis_begin] = STATE(1134), + [sym_emphasis_begin] = STATE(1154), [sym_strong] = STATE(132), - [sym_strong_begin] = STATE(1135), + [sym_strong_begin] = STATE(1155), [sym_superscript] = STATE(132), - [sym_superscript_begin] = STATE(1136), + [sym_superscript_begin] = STATE(1156), [sym_subscript] = STATE(132), - [sym_subscript_begin] = STATE(1137), + [sym_subscript_begin] = STATE(1157), [sym_highlighted] = STATE(132), - [sym_highlighted_begin] = STATE(1138), + [sym_highlighted_begin] = STATE(1158), [sym_insert] = STATE(132), - [sym_insert_begin] = STATE(1139), + [sym_insert_begin] = STATE(1159), [sym_delete] = STATE(132), - [sym_delete_begin] = STATE(1140), + [sym_delete_begin] = STATE(1160), [sym_hard_line_break] = STATE(147), [sym__smart_punctuation] = STATE(147), [sym_autolink] = STATE(147), [sym_footnote_reference] = STATE(132), - [sym_footnote_marker_begin] = STATE(1141), + [sym_footnote_marker_begin] = STATE(1161), [sym__image] = STATE(132), [sym_full_reference_image] = STATE(132), [sym_collapsed_reference_image] = STATE(132), [sym_inline_image] = STATE(132), - [sym_image_description] = STATE(682), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(687), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(132), [sym_full_reference_link] = STATE(132), [sym_collapsed_reference_link] = STATE(132), [sym_inline_link] = STATE(132), - [sym_link_text] = STATE(689), - [sym_span] = STATE(15), - [sym__bracketed_text_begin] = STATE(1216), + [sym_link_text] = STATE(693), + [sym_span] = STATE(613), + [sym__bracketed_text_begin] = STATE(1236), [sym__comment_with_spaces] = STATE(147), [sym_raw_inline] = STATE(147), [sym_math] = STATE(147), @@ -9279,40 +9335,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(153), }, [48] = { - [sym__inline] = STATE(980), - [sym__element] = STATE(16), + [sym__inline] = STATE(978), + [sym__element] = STATE(565), [sym_emphasis] = STATE(143), - [sym_emphasis_begin] = STATE(1144), + [sym_emphasis_begin] = STATE(1164), [sym_strong] = STATE(143), - [sym_strong_begin] = STATE(1145), + [sym_strong_begin] = STATE(1165), [sym_superscript] = STATE(143), - [sym_superscript_begin] = STATE(1146), + [sym_superscript_begin] = STATE(1166), [sym_subscript] = STATE(143), - [sym_subscript_begin] = STATE(1147), + [sym_subscript_begin] = STATE(1167), [sym_highlighted] = STATE(143), - [sym_highlighted_begin] = STATE(1148), + [sym_highlighted_begin] = STATE(1168), [sym_insert] = STATE(143), - [sym_insert_begin] = STATE(1149), + [sym_insert_begin] = STATE(1169), [sym_delete] = STATE(143), - [sym_delete_begin] = STATE(1150), + [sym_delete_begin] = STATE(1170), [sym_hard_line_break] = STATE(141), [sym__smart_punctuation] = STATE(141), [sym_autolink] = STATE(141), [sym_footnote_reference] = STATE(143), - [sym_footnote_marker_begin] = STATE(1151), + [sym_footnote_marker_begin] = STATE(1171), [sym__image] = STATE(143), [sym_full_reference_image] = STATE(143), [sym_collapsed_reference_image] = STATE(143), [sym_inline_image] = STATE(143), - [sym_image_description] = STATE(660), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(678), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(143), [sym_full_reference_link] = STATE(143), [sym_collapsed_reference_link] = STATE(143), [sym_inline_link] = STATE(143), - [sym_link_text] = STATE(661), - [sym_span] = STATE(16), - [sym__bracketed_text_begin] = STATE(1217), + [sym_link_text] = STATE(683), + [sym_span] = STATE(565), + [sym__bracketed_text_begin] = STATE(1237), [sym__comment_with_spaces] = STATE(141), [sym_raw_inline] = STATE(141), [sym_math] = STATE(141), @@ -9362,39 +9418,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [49] = { [sym__inline] = STATE(981), - [sym__element] = STATE(18), + [sym__element] = STATE(596), [sym_emphasis] = STATE(135), - [sym_emphasis_begin] = STATE(1154), + [sym_emphasis_begin] = STATE(1174), [sym_strong] = STATE(135), - [sym_strong_begin] = STATE(1155), + [sym_strong_begin] = STATE(1175), [sym_superscript] = STATE(135), - [sym_superscript_begin] = STATE(1156), + [sym_superscript_begin] = STATE(1176), [sym_subscript] = STATE(135), - [sym_subscript_begin] = STATE(1157), + [sym_subscript_begin] = STATE(1177), [sym_highlighted] = STATE(135), - [sym_highlighted_begin] = STATE(1158), + [sym_highlighted_begin] = STATE(1178), [sym_insert] = STATE(135), - [sym_insert_begin] = STATE(1159), + [sym_insert_begin] = STATE(1179), [sym_delete] = STATE(135), - [sym_delete_begin] = STATE(1160), + [sym_delete_begin] = STATE(1180), [sym_hard_line_break] = STATE(134), [sym__smart_punctuation] = STATE(134), [sym_autolink] = STATE(134), [sym_footnote_reference] = STATE(135), - [sym_footnote_marker_begin] = STATE(1161), + [sym_footnote_marker_begin] = STATE(1181), [sym__image] = STATE(135), [sym_full_reference_image] = STATE(135), [sym_collapsed_reference_image] = STATE(135), [sym_inline_image] = STATE(135), - [sym_image_description] = STATE(677), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(692), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(135), [sym_full_reference_link] = STATE(135), [sym_collapsed_reference_link] = STATE(135), [sym_inline_link] = STATE(135), - [sym_link_text] = STATE(680), - [sym_span] = STATE(18), - [sym__bracketed_text_begin] = STATE(1218), + [sym_link_text] = STATE(704), + [sym_span] = STATE(596), + [sym__bracketed_text_begin] = STATE(1238), [sym__comment_with_spaces] = STATE(134), [sym_raw_inline] = STATE(134), [sym_math] = STATE(134), @@ -9443,40 +9499,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(357), }, [50] = { - [sym__inline] = STATE(989), - [sym__element] = STATE(20), + [sym__inline] = STATE(982), + [sym__element] = STATE(525), [sym_emphasis] = STATE(136), - [sym_emphasis_begin] = STATE(1164), + [sym_emphasis_begin] = STATE(1184), [sym_strong] = STATE(136), - [sym_strong_begin] = STATE(1165), + [sym_strong_begin] = STATE(1185), [sym_superscript] = STATE(136), - [sym_superscript_begin] = STATE(1166), + [sym_superscript_begin] = STATE(1186), [sym_subscript] = STATE(136), - [sym_subscript_begin] = STATE(1167), + [sym_subscript_begin] = STATE(1187), [sym_highlighted] = STATE(136), - [sym_highlighted_begin] = STATE(1168), + [sym_highlighted_begin] = STATE(1188), [sym_insert] = STATE(136), - [sym_insert_begin] = STATE(1169), + [sym_insert_begin] = STATE(1189), [sym_delete] = STATE(136), - [sym_delete_begin] = STATE(1170), + [sym_delete_begin] = STATE(1190), [sym_hard_line_break] = STATE(138), [sym__smart_punctuation] = STATE(138), [sym_autolink] = STATE(138), [sym_footnote_reference] = STATE(136), - [sym_footnote_marker_begin] = STATE(1171), + [sym_footnote_marker_begin] = STATE(1191), [sym__image] = STATE(136), [sym_full_reference_image] = STATE(136), [sym_collapsed_reference_image] = STATE(136), [sym_inline_image] = STATE(136), - [sym_image_description] = STATE(685), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(676), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(136), [sym_full_reference_link] = STATE(136), [sym_collapsed_reference_link] = STATE(136), [sym_inline_link] = STATE(136), - [sym_link_text] = STATE(686), - [sym_span] = STATE(20), - [sym__bracketed_text_begin] = STATE(1219), + [sym_link_text] = STATE(677), + [sym_span] = STATE(525), + [sym__bracketed_text_begin] = STATE(1239), [sym__comment_with_spaces] = STATE(138), [sym_raw_inline] = STATE(138), [sym_math] = STATE(138), @@ -9525,40 +9581,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(407), }, [51] = { - [sym__inline] = STATE(993), - [sym__element] = STATE(22), + [sym__inline] = STATE(983), + [sym__element] = STATE(585), [sym_emphasis] = STATE(140), - [sym_emphasis_begin] = STATE(1174), + [sym_emphasis_begin] = STATE(1194), [sym_strong] = STATE(140), - [sym_strong_begin] = STATE(1175), + [sym_strong_begin] = STATE(1195), [sym_superscript] = STATE(140), - [sym_superscript_begin] = STATE(1176), + [sym_superscript_begin] = STATE(1196), [sym_subscript] = STATE(140), - [sym_subscript_begin] = STATE(1177), + [sym_subscript_begin] = STATE(1197), [sym_highlighted] = STATE(140), - [sym_highlighted_begin] = STATE(1178), + [sym_highlighted_begin] = STATE(1198), [sym_insert] = STATE(140), - [sym_insert_begin] = STATE(1179), + [sym_insert_begin] = STATE(1199), [sym_delete] = STATE(140), - [sym_delete_begin] = STATE(1180), + [sym_delete_begin] = STATE(1200), [sym_hard_line_break] = STATE(139), [sym__smart_punctuation] = STATE(139), [sym_autolink] = STATE(139), [sym_footnote_reference] = STATE(140), - [sym_footnote_marker_begin] = STATE(1181), + [sym_footnote_marker_begin] = STATE(1201), [sym__image] = STATE(140), [sym_full_reference_image] = STATE(140), [sym_collapsed_reference_image] = STATE(140), [sym_inline_image] = STATE(140), - [sym_image_description] = STATE(655), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(681), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(140), [sym_full_reference_link] = STATE(140), [sym_collapsed_reference_link] = STATE(140), [sym_inline_link] = STATE(140), - [sym_link_text] = STATE(656), - [sym_span] = STATE(22), - [sym__bracketed_text_begin] = STATE(1220), + [sym_link_text] = STATE(682), + [sym_span] = STATE(585), + [sym__bracketed_text_begin] = STATE(1240), [sym__comment_with_spaces] = STATE(139), [sym_raw_inline] = STATE(139), [sym_math] = STATE(139), @@ -9607,40 +9663,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(457), }, [52] = { - [sym__inline] = STATE(887), - [sym__element] = STATE(24), + [sym__inline] = STATE(985), + [sym__element] = STATE(625), [sym_emphasis] = STATE(131), - [sym_emphasis_begin] = STATE(1184), + [sym_emphasis_begin] = STATE(1204), [sym_strong] = STATE(131), - [sym_strong_begin] = STATE(1185), + [sym_strong_begin] = STATE(1205), [sym_superscript] = STATE(131), - [sym_superscript_begin] = STATE(1186), + [sym_superscript_begin] = STATE(1206), [sym_subscript] = STATE(131), - [sym_subscript_begin] = STATE(1187), + [sym_subscript_begin] = STATE(1207), [sym_highlighted] = STATE(131), - [sym_highlighted_begin] = STATE(1188), + [sym_highlighted_begin] = STATE(1208), [sym_insert] = STATE(131), - [sym_insert_begin] = STATE(1189), + [sym_insert_begin] = STATE(1209), [sym_delete] = STATE(131), - [sym_delete_begin] = STATE(1190), + [sym_delete_begin] = STATE(1210), [sym_hard_line_break] = STATE(145), [sym__smart_punctuation] = STATE(145), [sym_autolink] = STATE(145), [sym_footnote_reference] = STATE(131), - [sym_footnote_marker_begin] = STATE(1191), + [sym_footnote_marker_begin] = STATE(1211), [sym__image] = STATE(131), [sym_full_reference_image] = STATE(131), [sym_collapsed_reference_image] = STATE(131), [sym_inline_image] = STATE(131), - [sym_image_description] = STATE(662), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(685), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(131), [sym_full_reference_link] = STATE(131), [sym_collapsed_reference_link] = STATE(131), [sym_inline_link] = STATE(131), - [sym_link_text] = STATE(663), - [sym_span] = STATE(24), - [sym__bracketed_text_begin] = STATE(1221), + [sym_link_text] = STATE(686), + [sym_span] = STATE(625), + [sym__bracketed_text_begin] = STATE(1241), [sym__comment_with_spaces] = STATE(145), [sym_raw_inline] = STATE(145), [sym_math] = STATE(145), @@ -9689,40 +9745,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(507), }, [53] = { - [sym__inline_without_trailing_space] = STATE(893), - [sym__element] = STATE(543), + [sym__inline_without_trailing_space] = STATE(907), + [sym__element] = STATE(572), [sym_emphasis] = STATE(150), - [sym_emphasis_begin] = STATE(1114), + [sym_emphasis_begin] = STATE(1134), [sym_strong] = STATE(150), - [sym_strong_begin] = STATE(1115), + [sym_strong_begin] = STATE(1135), [sym_superscript] = STATE(150), - [sym_superscript_begin] = STATE(1116), + [sym_superscript_begin] = STATE(1136), [sym_subscript] = STATE(150), - [sym_subscript_begin] = STATE(1117), + [sym_subscript_begin] = STATE(1137), [sym_highlighted] = STATE(150), - [sym_highlighted_begin] = STATE(1118), + [sym_highlighted_begin] = STATE(1138), [sym_insert] = STATE(150), - [sym_insert_begin] = STATE(1119), + [sym_insert_begin] = STATE(1139), [sym_delete] = STATE(150), - [sym_delete_begin] = STATE(1120), + [sym_delete_begin] = STATE(1140), [sym_hard_line_break] = STATE(133), [sym__smart_punctuation] = STATE(133), [sym_autolink] = STATE(133), [sym_footnote_reference] = STATE(150), - [sym_footnote_marker_begin] = STATE(1121), + [sym_footnote_marker_begin] = STATE(1141), [sym__image] = STATE(150), [sym_full_reference_image] = STATE(150), [sym_collapsed_reference_image] = STATE(150), [sym_inline_image] = STATE(150), - [sym_image_description] = STATE(678), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(705), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(150), [sym_full_reference_link] = STATE(150), [sym_collapsed_reference_link] = STATE(150), [sym_inline_link] = STATE(150), - [sym_link_text] = STATE(679), - [sym_span] = STATE(543), - [sym__bracketed_text_begin] = STATE(1214), + [sym_link_text] = STATE(706), + [sym_span] = STATE(572), + [sym__bracketed_text_begin] = STATE(1234), [sym__comment_with_spaces] = STATE(133), [sym_raw_inline] = STATE(133), [sym_math] = STATE(133), @@ -9771,40 +9827,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(207), }, [54] = { - [sym__inline_without_trailing_space] = STATE(894), - [sym__element] = STATE(570), + [sym__inline_without_trailing_space] = STATE(908), + [sym__element] = STATE(580), [sym_emphasis] = STATE(142), - [sym_emphasis_begin] = STATE(1124), + [sym_emphasis_begin] = STATE(1144), [sym_strong] = STATE(142), - [sym_strong_begin] = STATE(1125), + [sym_strong_begin] = STATE(1145), [sym_superscript] = STATE(142), - [sym_superscript_begin] = STATE(1126), + [sym_superscript_begin] = STATE(1146), [sym_subscript] = STATE(142), - [sym_subscript_begin] = STATE(1127), + [sym_subscript_begin] = STATE(1147), [sym_highlighted] = STATE(142), - [sym_highlighted_begin] = STATE(1128), + [sym_highlighted_begin] = STATE(1148), [sym_insert] = STATE(142), - [sym_insert_begin] = STATE(1129), + [sym_insert_begin] = STATE(1149), [sym_delete] = STATE(142), - [sym_delete_begin] = STATE(1130), + [sym_delete_begin] = STATE(1150), [sym_hard_line_break] = STATE(137), [sym__smart_punctuation] = STATE(137), [sym_autolink] = STATE(137), [sym_footnote_reference] = STATE(142), - [sym_footnote_marker_begin] = STATE(1131), + [sym_footnote_marker_begin] = STATE(1151), [sym__image] = STATE(142), [sym_full_reference_image] = STATE(142), [sym_collapsed_reference_image] = STATE(142), [sym_inline_image] = STATE(142), - [sym_image_description] = STATE(687), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(702), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(142), [sym_full_reference_link] = STATE(142), [sym_collapsed_reference_link] = STATE(142), [sym_inline_link] = STATE(142), - [sym_link_text] = STATE(654), - [sym_span] = STATE(570), - [sym__bracketed_text_begin] = STATE(1215), + [sym_link_text] = STATE(698), + [sym_span] = STATE(580), + [sym__bracketed_text_begin] = STATE(1235), [sym__comment_with_spaces] = STATE(137), [sym_raw_inline] = STATE(137), [sym_math] = STATE(137), @@ -9853,40 +9909,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(257), }, [55] = { - [sym__inline] = STATE(895), - [sym__element] = STATE(15), + [sym__inline] = STATE(909), + [sym__element] = STATE(613), [sym_emphasis] = STATE(132), - [sym_emphasis_begin] = STATE(1134), + [sym_emphasis_begin] = STATE(1154), [sym_strong] = STATE(132), - [sym_strong_begin] = STATE(1135), + [sym_strong_begin] = STATE(1155), [sym_superscript] = STATE(132), - [sym_superscript_begin] = STATE(1136), + [sym_superscript_begin] = STATE(1156), [sym_subscript] = STATE(132), - [sym_subscript_begin] = STATE(1137), + [sym_subscript_begin] = STATE(1157), [sym_highlighted] = STATE(132), - [sym_highlighted_begin] = STATE(1138), + [sym_highlighted_begin] = STATE(1158), [sym_insert] = STATE(132), - [sym_insert_begin] = STATE(1139), + [sym_insert_begin] = STATE(1159), [sym_delete] = STATE(132), - [sym_delete_begin] = STATE(1140), + [sym_delete_begin] = STATE(1160), [sym_hard_line_break] = STATE(147), [sym__smart_punctuation] = STATE(147), [sym_autolink] = STATE(147), [sym_footnote_reference] = STATE(132), - [sym_footnote_marker_begin] = STATE(1141), + [sym_footnote_marker_begin] = STATE(1161), [sym__image] = STATE(132), [sym_full_reference_image] = STATE(132), [sym_collapsed_reference_image] = STATE(132), [sym_inline_image] = STATE(132), - [sym_image_description] = STATE(682), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(687), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(132), [sym_full_reference_link] = STATE(132), [sym_collapsed_reference_link] = STATE(132), [sym_inline_link] = STATE(132), - [sym_link_text] = STATE(689), - [sym_span] = STATE(15), - [sym__bracketed_text_begin] = STATE(1216), + [sym_link_text] = STATE(693), + [sym_span] = STATE(613), + [sym__bracketed_text_begin] = STATE(1236), [sym__comment_with_spaces] = STATE(147), [sym_raw_inline] = STATE(147), [sym_math] = STATE(147), @@ -9935,40 +9991,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(153), }, [56] = { - [sym__inline] = STATE(896), - [sym__element] = STATE(16), + [sym__inline] = STATE(910), + [sym__element] = STATE(565), [sym_emphasis] = STATE(143), - [sym_emphasis_begin] = STATE(1144), + [sym_emphasis_begin] = STATE(1164), [sym_strong] = STATE(143), - [sym_strong_begin] = STATE(1145), + [sym_strong_begin] = STATE(1165), [sym_superscript] = STATE(143), - [sym_superscript_begin] = STATE(1146), + [sym_superscript_begin] = STATE(1166), [sym_subscript] = STATE(143), - [sym_subscript_begin] = STATE(1147), + [sym_subscript_begin] = STATE(1167), [sym_highlighted] = STATE(143), - [sym_highlighted_begin] = STATE(1148), + [sym_highlighted_begin] = STATE(1168), [sym_insert] = STATE(143), - [sym_insert_begin] = STATE(1149), + [sym_insert_begin] = STATE(1169), [sym_delete] = STATE(143), - [sym_delete_begin] = STATE(1150), + [sym_delete_begin] = STATE(1170), [sym_hard_line_break] = STATE(141), [sym__smart_punctuation] = STATE(141), [sym_autolink] = STATE(141), [sym_footnote_reference] = STATE(143), - [sym_footnote_marker_begin] = STATE(1151), + [sym_footnote_marker_begin] = STATE(1171), [sym__image] = STATE(143), [sym_full_reference_image] = STATE(143), [sym_collapsed_reference_image] = STATE(143), [sym_inline_image] = STATE(143), - [sym_image_description] = STATE(660), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(678), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(143), [sym_full_reference_link] = STATE(143), [sym_collapsed_reference_link] = STATE(143), [sym_inline_link] = STATE(143), - [sym_link_text] = STATE(661), - [sym_span] = STATE(16), - [sym__bracketed_text_begin] = STATE(1217), + [sym_link_text] = STATE(683), + [sym_span] = STATE(565), + [sym__bracketed_text_begin] = STATE(1237), [sym__comment_with_spaces] = STATE(141), [sym_raw_inline] = STATE(141), [sym_math] = STATE(141), @@ -10017,40 +10073,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(307), }, [57] = { - [sym__inline] = STATE(897), - [sym__element] = STATE(18), + [sym__inline] = STATE(911), + [sym__element] = STATE(596), [sym_emphasis] = STATE(135), - [sym_emphasis_begin] = STATE(1154), + [sym_emphasis_begin] = STATE(1174), [sym_strong] = STATE(135), - [sym_strong_begin] = STATE(1155), + [sym_strong_begin] = STATE(1175), [sym_superscript] = STATE(135), - [sym_superscript_begin] = STATE(1156), + [sym_superscript_begin] = STATE(1176), [sym_subscript] = STATE(135), - [sym_subscript_begin] = STATE(1157), + [sym_subscript_begin] = STATE(1177), [sym_highlighted] = STATE(135), - [sym_highlighted_begin] = STATE(1158), + [sym_highlighted_begin] = STATE(1178), [sym_insert] = STATE(135), - [sym_insert_begin] = STATE(1159), + [sym_insert_begin] = STATE(1179), [sym_delete] = STATE(135), - [sym_delete_begin] = STATE(1160), + [sym_delete_begin] = STATE(1180), [sym_hard_line_break] = STATE(134), [sym__smart_punctuation] = STATE(134), [sym_autolink] = STATE(134), [sym_footnote_reference] = STATE(135), - [sym_footnote_marker_begin] = STATE(1161), + [sym_footnote_marker_begin] = STATE(1181), [sym__image] = STATE(135), [sym_full_reference_image] = STATE(135), [sym_collapsed_reference_image] = STATE(135), [sym_inline_image] = STATE(135), - [sym_image_description] = STATE(677), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(692), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(135), [sym_full_reference_link] = STATE(135), [sym_collapsed_reference_link] = STATE(135), [sym_inline_link] = STATE(135), - [sym_link_text] = STATE(680), - [sym_span] = STATE(18), - [sym__bracketed_text_begin] = STATE(1218), + [sym_link_text] = STATE(704), + [sym_span] = STATE(596), + [sym__bracketed_text_begin] = STATE(1238), [sym__comment_with_spaces] = STATE(134), [sym_raw_inline] = STATE(134), [sym_math] = STATE(134), @@ -10099,40 +10155,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(357), }, [58] = { - [sym__inline] = STATE(900), - [sym__element] = STATE(20), + [sym__inline] = STATE(912), + [sym__element] = STATE(525), [sym_emphasis] = STATE(136), - [sym_emphasis_begin] = STATE(1164), + [sym_emphasis_begin] = STATE(1184), [sym_strong] = STATE(136), - [sym_strong_begin] = STATE(1165), + [sym_strong_begin] = STATE(1185), [sym_superscript] = STATE(136), - [sym_superscript_begin] = STATE(1166), + [sym_superscript_begin] = STATE(1186), [sym_subscript] = STATE(136), - [sym_subscript_begin] = STATE(1167), + [sym_subscript_begin] = STATE(1187), [sym_highlighted] = STATE(136), - [sym_highlighted_begin] = STATE(1168), + [sym_highlighted_begin] = STATE(1188), [sym_insert] = STATE(136), - [sym_insert_begin] = STATE(1169), + [sym_insert_begin] = STATE(1189), [sym_delete] = STATE(136), - [sym_delete_begin] = STATE(1170), + [sym_delete_begin] = STATE(1190), [sym_hard_line_break] = STATE(138), [sym__smart_punctuation] = STATE(138), [sym_autolink] = STATE(138), [sym_footnote_reference] = STATE(136), - [sym_footnote_marker_begin] = STATE(1171), + [sym_footnote_marker_begin] = STATE(1191), [sym__image] = STATE(136), [sym_full_reference_image] = STATE(136), [sym_collapsed_reference_image] = STATE(136), [sym_inline_image] = STATE(136), - [sym_image_description] = STATE(685), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(676), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(136), [sym_full_reference_link] = STATE(136), [sym_collapsed_reference_link] = STATE(136), [sym_inline_link] = STATE(136), - [sym_link_text] = STATE(686), - [sym_span] = STATE(20), - [sym__bracketed_text_begin] = STATE(1219), + [sym_link_text] = STATE(677), + [sym_span] = STATE(525), + [sym__bracketed_text_begin] = STATE(1239), [sym__comment_with_spaces] = STATE(138), [sym_raw_inline] = STATE(138), [sym_math] = STATE(138), @@ -10181,40 +10237,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(407), }, [59] = { - [sym__inline] = STATE(919), - [sym__element] = STATE(22), + [sym__inline] = STATE(913), + [sym__element] = STATE(585), [sym_emphasis] = STATE(140), - [sym_emphasis_begin] = STATE(1174), + [sym_emphasis_begin] = STATE(1194), [sym_strong] = STATE(140), - [sym_strong_begin] = STATE(1175), + [sym_strong_begin] = STATE(1195), [sym_superscript] = STATE(140), - [sym_superscript_begin] = STATE(1176), + [sym_superscript_begin] = STATE(1196), [sym_subscript] = STATE(140), - [sym_subscript_begin] = STATE(1177), + [sym_subscript_begin] = STATE(1197), [sym_highlighted] = STATE(140), - [sym_highlighted_begin] = STATE(1178), + [sym_highlighted_begin] = STATE(1198), [sym_insert] = STATE(140), - [sym_insert_begin] = STATE(1179), + [sym_insert_begin] = STATE(1199), [sym_delete] = STATE(140), - [sym_delete_begin] = STATE(1180), + [sym_delete_begin] = STATE(1200), [sym_hard_line_break] = STATE(139), [sym__smart_punctuation] = STATE(139), [sym_autolink] = STATE(139), [sym_footnote_reference] = STATE(140), - [sym_footnote_marker_begin] = STATE(1181), + [sym_footnote_marker_begin] = STATE(1201), [sym__image] = STATE(140), [sym_full_reference_image] = STATE(140), [sym_collapsed_reference_image] = STATE(140), [sym_inline_image] = STATE(140), - [sym_image_description] = STATE(655), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(681), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(140), [sym_full_reference_link] = STATE(140), [sym_collapsed_reference_link] = STATE(140), [sym_inline_link] = STATE(140), - [sym_link_text] = STATE(656), - [sym_span] = STATE(22), - [sym__bracketed_text_begin] = STATE(1220), + [sym_link_text] = STATE(682), + [sym_span] = STATE(585), + [sym__bracketed_text_begin] = STATE(1240), [sym__comment_with_spaces] = STATE(139), [sym_raw_inline] = STATE(139), [sym_math] = STATE(139), @@ -10263,40 +10319,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(457), }, [60] = { - [sym__inline] = STATE(921), - [sym__element] = STATE(24), + [sym__inline] = STATE(915), + [sym__element] = STATE(625), [sym_emphasis] = STATE(131), - [sym_emphasis_begin] = STATE(1184), + [sym_emphasis_begin] = STATE(1204), [sym_strong] = STATE(131), - [sym_strong_begin] = STATE(1185), + [sym_strong_begin] = STATE(1205), [sym_superscript] = STATE(131), - [sym_superscript_begin] = STATE(1186), + [sym_superscript_begin] = STATE(1206), [sym_subscript] = STATE(131), - [sym_subscript_begin] = STATE(1187), + [sym_subscript_begin] = STATE(1207), [sym_highlighted] = STATE(131), - [sym_highlighted_begin] = STATE(1188), + [sym_highlighted_begin] = STATE(1208), [sym_insert] = STATE(131), - [sym_insert_begin] = STATE(1189), + [sym_insert_begin] = STATE(1209), [sym_delete] = STATE(131), - [sym_delete_begin] = STATE(1190), + [sym_delete_begin] = STATE(1210), [sym_hard_line_break] = STATE(145), [sym__smart_punctuation] = STATE(145), [sym_autolink] = STATE(145), [sym_footnote_reference] = STATE(131), - [sym_footnote_marker_begin] = STATE(1191), + [sym_footnote_marker_begin] = STATE(1211), [sym__image] = STATE(131), [sym_full_reference_image] = STATE(131), [sym_collapsed_reference_image] = STATE(131), [sym_inline_image] = STATE(131), - [sym_image_description] = STATE(662), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(685), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(131), [sym_full_reference_link] = STATE(131), [sym_collapsed_reference_link] = STATE(131), [sym_inline_link] = STATE(131), - [sym_link_text] = STATE(663), - [sym_span] = STATE(24), - [sym__bracketed_text_begin] = STATE(1221), + [sym_link_text] = STATE(686), + [sym_span] = STATE(625), + [sym__bracketed_text_begin] = STATE(1241), [sym__comment_with_spaces] = STATE(145), [sym_raw_inline] = STATE(145), [sym_math] = STATE(145), @@ -10345,40 +10401,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(507), }, [61] = { - [sym__inline_without_trailing_space] = STATE(1057), - [sym__element] = STATE(543), + [sym__inline_without_trailing_space] = STATE(1078), + [sym__element] = STATE(572), [sym_emphasis] = STATE(150), - [sym_emphasis_begin] = STATE(1114), + [sym_emphasis_begin] = STATE(1134), [sym_strong] = STATE(150), - [sym_strong_begin] = STATE(1115), + [sym_strong_begin] = STATE(1135), [sym_superscript] = STATE(150), - [sym_superscript_begin] = STATE(1116), + [sym_superscript_begin] = STATE(1136), [sym_subscript] = STATE(150), - [sym_subscript_begin] = STATE(1117), + [sym_subscript_begin] = STATE(1137), [sym_highlighted] = STATE(150), - [sym_highlighted_begin] = STATE(1118), + [sym_highlighted_begin] = STATE(1138), [sym_insert] = STATE(150), - [sym_insert_begin] = STATE(1119), + [sym_insert_begin] = STATE(1139), [sym_delete] = STATE(150), - [sym_delete_begin] = STATE(1120), + [sym_delete_begin] = STATE(1140), [sym_hard_line_break] = STATE(133), [sym__smart_punctuation] = STATE(133), [sym_autolink] = STATE(133), [sym_footnote_reference] = STATE(150), - [sym_footnote_marker_begin] = STATE(1121), + [sym_footnote_marker_begin] = STATE(1141), [sym__image] = STATE(150), [sym_full_reference_image] = STATE(150), [sym_collapsed_reference_image] = STATE(150), [sym_inline_image] = STATE(150), - [sym_image_description] = STATE(678), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(705), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(150), [sym_full_reference_link] = STATE(150), [sym_collapsed_reference_link] = STATE(150), [sym_inline_link] = STATE(150), - [sym_link_text] = STATE(679), - [sym_span] = STATE(543), - [sym__bracketed_text_begin] = STATE(1214), + [sym_link_text] = STATE(706), + [sym_span] = STATE(572), + [sym__bracketed_text_begin] = STATE(1234), [sym__comment_with_spaces] = STATE(133), [sym_raw_inline] = STATE(133), [sym_math] = STATE(133), @@ -10427,40 +10483,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(207), }, [62] = { - [sym__inline_without_trailing_space] = STATE(1058), - [sym__element] = STATE(570), + [sym__inline_without_trailing_space] = STATE(1079), + [sym__element] = STATE(580), [sym_emphasis] = STATE(142), - [sym_emphasis_begin] = STATE(1124), + [sym_emphasis_begin] = STATE(1144), [sym_strong] = STATE(142), - [sym_strong_begin] = STATE(1125), + [sym_strong_begin] = STATE(1145), [sym_superscript] = STATE(142), - [sym_superscript_begin] = STATE(1126), + [sym_superscript_begin] = STATE(1146), [sym_subscript] = STATE(142), - [sym_subscript_begin] = STATE(1127), + [sym_subscript_begin] = STATE(1147), [sym_highlighted] = STATE(142), - [sym_highlighted_begin] = STATE(1128), + [sym_highlighted_begin] = STATE(1148), [sym_insert] = STATE(142), - [sym_insert_begin] = STATE(1129), + [sym_insert_begin] = STATE(1149), [sym_delete] = STATE(142), - [sym_delete_begin] = STATE(1130), + [sym_delete_begin] = STATE(1150), [sym_hard_line_break] = STATE(137), [sym__smart_punctuation] = STATE(137), [sym_autolink] = STATE(137), [sym_footnote_reference] = STATE(142), - [sym_footnote_marker_begin] = STATE(1131), + [sym_footnote_marker_begin] = STATE(1151), [sym__image] = STATE(142), [sym_full_reference_image] = STATE(142), [sym_collapsed_reference_image] = STATE(142), [sym_inline_image] = STATE(142), - [sym_image_description] = STATE(687), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(702), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(142), [sym_full_reference_link] = STATE(142), [sym_collapsed_reference_link] = STATE(142), [sym_inline_link] = STATE(142), - [sym_link_text] = STATE(654), - [sym_span] = STATE(570), - [sym__bracketed_text_begin] = STATE(1215), + [sym_link_text] = STATE(698), + [sym_span] = STATE(580), + [sym__bracketed_text_begin] = STATE(1235), [sym__comment_with_spaces] = STATE(137), [sym_raw_inline] = STATE(137), [sym_math] = STATE(137), @@ -10509,40 +10565,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(257), }, [63] = { - [sym__inline] = STATE(1059), - [sym__element] = STATE(15), + [sym__inline] = STATE(1081), + [sym__element] = STATE(613), [sym_emphasis] = STATE(132), - [sym_emphasis_begin] = STATE(1134), + [sym_emphasis_begin] = STATE(1154), [sym_strong] = STATE(132), - [sym_strong_begin] = STATE(1135), + [sym_strong_begin] = STATE(1155), [sym_superscript] = STATE(132), - [sym_superscript_begin] = STATE(1136), + [sym_superscript_begin] = STATE(1156), [sym_subscript] = STATE(132), - [sym_subscript_begin] = STATE(1137), + [sym_subscript_begin] = STATE(1157), [sym_highlighted] = STATE(132), - [sym_highlighted_begin] = STATE(1138), + [sym_highlighted_begin] = STATE(1158), [sym_insert] = STATE(132), - [sym_insert_begin] = STATE(1139), + [sym_insert_begin] = STATE(1159), [sym_delete] = STATE(132), - [sym_delete_begin] = STATE(1140), + [sym_delete_begin] = STATE(1160), [sym_hard_line_break] = STATE(147), [sym__smart_punctuation] = STATE(147), [sym_autolink] = STATE(147), [sym_footnote_reference] = STATE(132), - [sym_footnote_marker_begin] = STATE(1141), + [sym_footnote_marker_begin] = STATE(1161), [sym__image] = STATE(132), [sym_full_reference_image] = STATE(132), [sym_collapsed_reference_image] = STATE(132), [sym_inline_image] = STATE(132), - [sym_image_description] = STATE(682), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(687), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(132), [sym_full_reference_link] = STATE(132), [sym_collapsed_reference_link] = STATE(132), [sym_inline_link] = STATE(132), - [sym_link_text] = STATE(689), - [sym_span] = STATE(15), - [sym__bracketed_text_begin] = STATE(1216), + [sym_link_text] = STATE(693), + [sym_span] = STATE(613), + [sym__bracketed_text_begin] = STATE(1236), [sym__comment_with_spaces] = STATE(147), [sym_raw_inline] = STATE(147), [sym_math] = STATE(147), @@ -10591,40 +10647,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(153), }, [64] = { - [sym__inline] = STATE(1061), - [sym__element] = STATE(16), + [sym__inline] = STATE(902), + [sym__element] = STATE(565), [sym_emphasis] = STATE(143), - [sym_emphasis_begin] = STATE(1144), + [sym_emphasis_begin] = STATE(1164), [sym_strong] = STATE(143), - [sym_strong_begin] = STATE(1145), + [sym_strong_begin] = STATE(1165), [sym_superscript] = STATE(143), - [sym_superscript_begin] = STATE(1146), + [sym_superscript_begin] = STATE(1166), [sym_subscript] = STATE(143), - [sym_subscript_begin] = STATE(1147), + [sym_subscript_begin] = STATE(1167), [sym_highlighted] = STATE(143), - [sym_highlighted_begin] = STATE(1148), + [sym_highlighted_begin] = STATE(1168), [sym_insert] = STATE(143), - [sym_insert_begin] = STATE(1149), + [sym_insert_begin] = STATE(1169), [sym_delete] = STATE(143), - [sym_delete_begin] = STATE(1150), + [sym_delete_begin] = STATE(1170), [sym_hard_line_break] = STATE(141), [sym__smart_punctuation] = STATE(141), [sym_autolink] = STATE(141), [sym_footnote_reference] = STATE(143), - [sym_footnote_marker_begin] = STATE(1151), + [sym_footnote_marker_begin] = STATE(1171), [sym__image] = STATE(143), [sym_full_reference_image] = STATE(143), [sym_collapsed_reference_image] = STATE(143), [sym_inline_image] = STATE(143), - [sym_image_description] = STATE(660), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(678), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(143), [sym_full_reference_link] = STATE(143), [sym_collapsed_reference_link] = STATE(143), [sym_inline_link] = STATE(143), - [sym_link_text] = STATE(661), - [sym_span] = STATE(16), - [sym__bracketed_text_begin] = STATE(1217), + [sym_link_text] = STATE(683), + [sym_span] = STATE(565), + [sym__bracketed_text_begin] = STATE(1237), [sym__comment_with_spaces] = STATE(141), [sym_raw_inline] = STATE(141), [sym_math] = STATE(141), @@ -10673,40 +10729,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(307), }, [65] = { - [sym__inline] = STATE(882), - [sym__element] = STATE(18), + [sym__inline] = STATE(1091), + [sym__element] = STATE(596), [sym_emphasis] = STATE(135), - [sym_emphasis_begin] = STATE(1154), + [sym_emphasis_begin] = STATE(1174), [sym_strong] = STATE(135), - [sym_strong_begin] = STATE(1155), + [sym_strong_begin] = STATE(1175), [sym_superscript] = STATE(135), - [sym_superscript_begin] = STATE(1156), + [sym_superscript_begin] = STATE(1176), [sym_subscript] = STATE(135), - [sym_subscript_begin] = STATE(1157), + [sym_subscript_begin] = STATE(1177), [sym_highlighted] = STATE(135), - [sym_highlighted_begin] = STATE(1158), + [sym_highlighted_begin] = STATE(1178), [sym_insert] = STATE(135), - [sym_insert_begin] = STATE(1159), + [sym_insert_begin] = STATE(1179), [sym_delete] = STATE(135), - [sym_delete_begin] = STATE(1160), + [sym_delete_begin] = STATE(1180), [sym_hard_line_break] = STATE(134), [sym__smart_punctuation] = STATE(134), [sym_autolink] = STATE(134), [sym_footnote_reference] = STATE(135), - [sym_footnote_marker_begin] = STATE(1161), + [sym_footnote_marker_begin] = STATE(1181), [sym__image] = STATE(135), [sym_full_reference_image] = STATE(135), [sym_collapsed_reference_image] = STATE(135), [sym_inline_image] = STATE(135), - [sym_image_description] = STATE(677), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(692), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(135), [sym_full_reference_link] = STATE(135), [sym_collapsed_reference_link] = STATE(135), [sym_inline_link] = STATE(135), - [sym_link_text] = STATE(680), - [sym_span] = STATE(18), - [sym__bracketed_text_begin] = STATE(1218), + [sym_link_text] = STATE(704), + [sym_span] = STATE(596), + [sym__bracketed_text_begin] = STATE(1238), [sym__comment_with_spaces] = STATE(134), [sym_raw_inline] = STATE(134), [sym_math] = STATE(134), @@ -10755,40 +10811,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(357), }, [66] = { - [sym__inline] = STATE(1071), - [sym__element] = STATE(20), + [sym__inline] = STATE(1092), + [sym__element] = STATE(525), [sym_emphasis] = STATE(136), - [sym_emphasis_begin] = STATE(1164), + [sym_emphasis_begin] = STATE(1184), [sym_strong] = STATE(136), - [sym_strong_begin] = STATE(1165), + [sym_strong_begin] = STATE(1185), [sym_superscript] = STATE(136), - [sym_superscript_begin] = STATE(1166), + [sym_superscript_begin] = STATE(1186), [sym_subscript] = STATE(136), - [sym_subscript_begin] = STATE(1167), + [sym_subscript_begin] = STATE(1187), [sym_highlighted] = STATE(136), - [sym_highlighted_begin] = STATE(1168), + [sym_highlighted_begin] = STATE(1188), [sym_insert] = STATE(136), - [sym_insert_begin] = STATE(1169), + [sym_insert_begin] = STATE(1189), [sym_delete] = STATE(136), - [sym_delete_begin] = STATE(1170), + [sym_delete_begin] = STATE(1190), [sym_hard_line_break] = STATE(138), [sym__smart_punctuation] = STATE(138), [sym_autolink] = STATE(138), [sym_footnote_reference] = STATE(136), - [sym_footnote_marker_begin] = STATE(1171), + [sym_footnote_marker_begin] = STATE(1191), [sym__image] = STATE(136), [sym_full_reference_image] = STATE(136), [sym_collapsed_reference_image] = STATE(136), [sym_inline_image] = STATE(136), - [sym_image_description] = STATE(685), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(676), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(136), [sym_full_reference_link] = STATE(136), [sym_collapsed_reference_link] = STATE(136), [sym_inline_link] = STATE(136), - [sym_link_text] = STATE(686), - [sym_span] = STATE(20), - [sym__bracketed_text_begin] = STATE(1219), + [sym_link_text] = STATE(677), + [sym_span] = STATE(525), + [sym__bracketed_text_begin] = STATE(1239), [sym__comment_with_spaces] = STATE(138), [sym_raw_inline] = STATE(138), [sym_math] = STATE(138), @@ -10837,40 +10893,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(407), }, [67] = { - [sym__inline] = STATE(1072), - [sym__element] = STATE(22), + [sym__inline] = STATE(1093), + [sym__element] = STATE(585), [sym_emphasis] = STATE(140), - [sym_emphasis_begin] = STATE(1174), + [sym_emphasis_begin] = STATE(1194), [sym_strong] = STATE(140), - [sym_strong_begin] = STATE(1175), + [sym_strong_begin] = STATE(1195), [sym_superscript] = STATE(140), - [sym_superscript_begin] = STATE(1176), + [sym_superscript_begin] = STATE(1196), [sym_subscript] = STATE(140), - [sym_subscript_begin] = STATE(1177), + [sym_subscript_begin] = STATE(1197), [sym_highlighted] = STATE(140), - [sym_highlighted_begin] = STATE(1178), + [sym_highlighted_begin] = STATE(1198), [sym_insert] = STATE(140), - [sym_insert_begin] = STATE(1179), + [sym_insert_begin] = STATE(1199), [sym_delete] = STATE(140), - [sym_delete_begin] = STATE(1180), + [sym_delete_begin] = STATE(1200), [sym_hard_line_break] = STATE(139), [sym__smart_punctuation] = STATE(139), [sym_autolink] = STATE(139), [sym_footnote_reference] = STATE(140), - [sym_footnote_marker_begin] = STATE(1181), + [sym_footnote_marker_begin] = STATE(1201), [sym__image] = STATE(140), [sym_full_reference_image] = STATE(140), [sym_collapsed_reference_image] = STATE(140), [sym_inline_image] = STATE(140), - [sym_image_description] = STATE(655), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(681), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(140), [sym_full_reference_link] = STATE(140), [sym_collapsed_reference_link] = STATE(140), [sym_inline_link] = STATE(140), - [sym_link_text] = STATE(656), - [sym_span] = STATE(22), - [sym__bracketed_text_begin] = STATE(1220), + [sym_link_text] = STATE(682), + [sym_span] = STATE(585), + [sym__bracketed_text_begin] = STATE(1240), [sym__comment_with_spaces] = STATE(139), [sym_raw_inline] = STATE(139), [sym_math] = STATE(139), @@ -10919,40 +10975,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(457), }, [68] = { - [sym__inline] = STATE(1101), - [sym__element] = STATE(24), + [sym__inline] = STATE(1105), + [sym__element] = STATE(625), [sym_emphasis] = STATE(131), - [sym_emphasis_begin] = STATE(1184), + [sym_emphasis_begin] = STATE(1204), [sym_strong] = STATE(131), - [sym_strong_begin] = STATE(1185), + [sym_strong_begin] = STATE(1205), [sym_superscript] = STATE(131), - [sym_superscript_begin] = STATE(1186), + [sym_superscript_begin] = STATE(1206), [sym_subscript] = STATE(131), - [sym_subscript_begin] = STATE(1187), + [sym_subscript_begin] = STATE(1207), [sym_highlighted] = STATE(131), - [sym_highlighted_begin] = STATE(1188), + [sym_highlighted_begin] = STATE(1208), [sym_insert] = STATE(131), - [sym_insert_begin] = STATE(1189), + [sym_insert_begin] = STATE(1209), [sym_delete] = STATE(131), - [sym_delete_begin] = STATE(1190), + [sym_delete_begin] = STATE(1210), [sym_hard_line_break] = STATE(145), [sym__smart_punctuation] = STATE(145), [sym_autolink] = STATE(145), [sym_footnote_reference] = STATE(131), - [sym_footnote_marker_begin] = STATE(1191), + [sym_footnote_marker_begin] = STATE(1211), [sym__image] = STATE(131), [sym_full_reference_image] = STATE(131), [sym_collapsed_reference_image] = STATE(131), [sym_inline_image] = STATE(131), - [sym_image_description] = STATE(662), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(685), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(131), [sym_full_reference_link] = STATE(131), [sym_collapsed_reference_link] = STATE(131), [sym_inline_link] = STATE(131), - [sym_link_text] = STATE(663), - [sym_span] = STATE(24), - [sym__bracketed_text_begin] = STATE(1221), + [sym_link_text] = STATE(686), + [sym_span] = STATE(625), + [sym__bracketed_text_begin] = STATE(1241), [sym__comment_with_spaces] = STATE(145), [sym_raw_inline] = STATE(145), [sym_math] = STATE(145), @@ -11001,40 +11057,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(507), }, [69] = { - [sym__inline_without_trailing_space] = STATE(925), - [sym__element] = STATE(543), + [sym__inline_without_trailing_space] = STATE(942), + [sym__element] = STATE(572), [sym_emphasis] = STATE(150), - [sym_emphasis_begin] = STATE(1114), + [sym_emphasis_begin] = STATE(1134), [sym_strong] = STATE(150), - [sym_strong_begin] = STATE(1115), + [sym_strong_begin] = STATE(1135), [sym_superscript] = STATE(150), - [sym_superscript_begin] = STATE(1116), + [sym_superscript_begin] = STATE(1136), [sym_subscript] = STATE(150), - [sym_subscript_begin] = STATE(1117), + [sym_subscript_begin] = STATE(1137), [sym_highlighted] = STATE(150), - [sym_highlighted_begin] = STATE(1118), + [sym_highlighted_begin] = STATE(1138), [sym_insert] = STATE(150), - [sym_insert_begin] = STATE(1119), + [sym_insert_begin] = STATE(1139), [sym_delete] = STATE(150), - [sym_delete_begin] = STATE(1120), + [sym_delete_begin] = STATE(1140), [sym_hard_line_break] = STATE(133), [sym__smart_punctuation] = STATE(133), [sym_autolink] = STATE(133), [sym_footnote_reference] = STATE(150), - [sym_footnote_marker_begin] = STATE(1121), + [sym_footnote_marker_begin] = STATE(1141), [sym__image] = STATE(150), [sym_full_reference_image] = STATE(150), [sym_collapsed_reference_image] = STATE(150), [sym_inline_image] = STATE(150), - [sym_image_description] = STATE(678), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(705), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(150), [sym_full_reference_link] = STATE(150), [sym_collapsed_reference_link] = STATE(150), [sym_inline_link] = STATE(150), - [sym_link_text] = STATE(679), - [sym_span] = STATE(543), - [sym__bracketed_text_begin] = STATE(1214), + [sym_link_text] = STATE(706), + [sym_span] = STATE(572), + [sym__bracketed_text_begin] = STATE(1234), [sym__comment_with_spaces] = STATE(133), [sym_raw_inline] = STATE(133), [sym_math] = STATE(133), @@ -11083,40 +11139,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(207), }, [70] = { - [sym__inline_without_trailing_space] = STATE(926), - [sym__element] = STATE(570), + [sym__inline_without_trailing_space] = STATE(943), + [sym__element] = STATE(580), [sym_emphasis] = STATE(142), - [sym_emphasis_begin] = STATE(1124), + [sym_emphasis_begin] = STATE(1144), [sym_strong] = STATE(142), - [sym_strong_begin] = STATE(1125), + [sym_strong_begin] = STATE(1145), [sym_superscript] = STATE(142), - [sym_superscript_begin] = STATE(1126), + [sym_superscript_begin] = STATE(1146), [sym_subscript] = STATE(142), - [sym_subscript_begin] = STATE(1127), + [sym_subscript_begin] = STATE(1147), [sym_highlighted] = STATE(142), - [sym_highlighted_begin] = STATE(1128), + [sym_highlighted_begin] = STATE(1148), [sym_insert] = STATE(142), - [sym_insert_begin] = STATE(1129), + [sym_insert_begin] = STATE(1149), [sym_delete] = STATE(142), - [sym_delete_begin] = STATE(1130), + [sym_delete_begin] = STATE(1150), [sym_hard_line_break] = STATE(137), [sym__smart_punctuation] = STATE(137), [sym_autolink] = STATE(137), [sym_footnote_reference] = STATE(142), - [sym_footnote_marker_begin] = STATE(1131), + [sym_footnote_marker_begin] = STATE(1151), [sym__image] = STATE(142), [sym_full_reference_image] = STATE(142), [sym_collapsed_reference_image] = STATE(142), [sym_inline_image] = STATE(142), - [sym_image_description] = STATE(687), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(702), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(142), [sym_full_reference_link] = STATE(142), [sym_collapsed_reference_link] = STATE(142), [sym_inline_link] = STATE(142), - [sym_link_text] = STATE(654), - [sym_span] = STATE(570), - [sym__bracketed_text_begin] = STATE(1215), + [sym_link_text] = STATE(698), + [sym_span] = STATE(580), + [sym__bracketed_text_begin] = STATE(1235), [sym__comment_with_spaces] = STATE(137), [sym_raw_inline] = STATE(137), [sym_math] = STATE(137), @@ -11165,40 +11221,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(257), }, [71] = { - [sym__inline] = STATE(927), - [sym__element] = STATE(15), + [sym__inline] = STATE(944), + [sym__element] = STATE(613), [sym_emphasis] = STATE(132), - [sym_emphasis_begin] = STATE(1134), + [sym_emphasis_begin] = STATE(1154), [sym_strong] = STATE(132), - [sym_strong_begin] = STATE(1135), + [sym_strong_begin] = STATE(1155), [sym_superscript] = STATE(132), - [sym_superscript_begin] = STATE(1136), + [sym_superscript_begin] = STATE(1156), [sym_subscript] = STATE(132), - [sym_subscript_begin] = STATE(1137), + [sym_subscript_begin] = STATE(1157), [sym_highlighted] = STATE(132), - [sym_highlighted_begin] = STATE(1138), + [sym_highlighted_begin] = STATE(1158), [sym_insert] = STATE(132), - [sym_insert_begin] = STATE(1139), + [sym_insert_begin] = STATE(1159), [sym_delete] = STATE(132), - [sym_delete_begin] = STATE(1140), + [sym_delete_begin] = STATE(1160), [sym_hard_line_break] = STATE(147), [sym__smart_punctuation] = STATE(147), [sym_autolink] = STATE(147), [sym_footnote_reference] = STATE(132), - [sym_footnote_marker_begin] = STATE(1141), + [sym_footnote_marker_begin] = STATE(1161), [sym__image] = STATE(132), [sym_full_reference_image] = STATE(132), [sym_collapsed_reference_image] = STATE(132), [sym_inline_image] = STATE(132), - [sym_image_description] = STATE(682), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(687), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(132), [sym_full_reference_link] = STATE(132), [sym_collapsed_reference_link] = STATE(132), [sym_inline_link] = STATE(132), - [sym_link_text] = STATE(689), - [sym_span] = STATE(15), - [sym__bracketed_text_begin] = STATE(1216), + [sym_link_text] = STATE(693), + [sym_span] = STATE(613), + [sym__bracketed_text_begin] = STATE(1236), [sym__comment_with_spaces] = STATE(147), [sym_raw_inline] = STATE(147), [sym_math] = STATE(147), @@ -11247,40 +11303,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(153), }, [72] = { - [sym__inline] = STATE(928), - [sym__element] = STATE(16), + [sym__inline] = STATE(945), + [sym__element] = STATE(565), [sym_emphasis] = STATE(143), - [sym_emphasis_begin] = STATE(1144), + [sym_emphasis_begin] = STATE(1164), [sym_strong] = STATE(143), - [sym_strong_begin] = STATE(1145), + [sym_strong_begin] = STATE(1165), [sym_superscript] = STATE(143), - [sym_superscript_begin] = STATE(1146), + [sym_superscript_begin] = STATE(1166), [sym_subscript] = STATE(143), - [sym_subscript_begin] = STATE(1147), + [sym_subscript_begin] = STATE(1167), [sym_highlighted] = STATE(143), - [sym_highlighted_begin] = STATE(1148), + [sym_highlighted_begin] = STATE(1168), [sym_insert] = STATE(143), - [sym_insert_begin] = STATE(1149), + [sym_insert_begin] = STATE(1169), [sym_delete] = STATE(143), - [sym_delete_begin] = STATE(1150), + [sym_delete_begin] = STATE(1170), [sym_hard_line_break] = STATE(141), [sym__smart_punctuation] = STATE(141), [sym_autolink] = STATE(141), [sym_footnote_reference] = STATE(143), - [sym_footnote_marker_begin] = STATE(1151), + [sym_footnote_marker_begin] = STATE(1171), [sym__image] = STATE(143), [sym_full_reference_image] = STATE(143), [sym_collapsed_reference_image] = STATE(143), [sym_inline_image] = STATE(143), - [sym_image_description] = STATE(660), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(678), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(143), [sym_full_reference_link] = STATE(143), [sym_collapsed_reference_link] = STATE(143), [sym_inline_link] = STATE(143), - [sym_link_text] = STATE(661), - [sym_span] = STATE(16), - [sym__bracketed_text_begin] = STATE(1217), + [sym_link_text] = STATE(683), + [sym_span] = STATE(565), + [sym__bracketed_text_begin] = STATE(1237), [sym__comment_with_spaces] = STATE(141), [sym_raw_inline] = STATE(141), [sym_math] = STATE(141), @@ -11329,40 +11385,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(307), }, [73] = { - [sym__inline] = STATE(929), - [sym__element] = STATE(18), + [sym__inline] = STATE(946), + [sym__element] = STATE(596), [sym_emphasis] = STATE(135), - [sym_emphasis_begin] = STATE(1154), + [sym_emphasis_begin] = STATE(1174), [sym_strong] = STATE(135), - [sym_strong_begin] = STATE(1155), + [sym_strong_begin] = STATE(1175), [sym_superscript] = STATE(135), - [sym_superscript_begin] = STATE(1156), + [sym_superscript_begin] = STATE(1176), [sym_subscript] = STATE(135), - [sym_subscript_begin] = STATE(1157), + [sym_subscript_begin] = STATE(1177), [sym_highlighted] = STATE(135), - [sym_highlighted_begin] = STATE(1158), + [sym_highlighted_begin] = STATE(1178), [sym_insert] = STATE(135), - [sym_insert_begin] = STATE(1159), + [sym_insert_begin] = STATE(1179), [sym_delete] = STATE(135), - [sym_delete_begin] = STATE(1160), + [sym_delete_begin] = STATE(1180), [sym_hard_line_break] = STATE(134), [sym__smart_punctuation] = STATE(134), [sym_autolink] = STATE(134), [sym_footnote_reference] = STATE(135), - [sym_footnote_marker_begin] = STATE(1161), + [sym_footnote_marker_begin] = STATE(1181), [sym__image] = STATE(135), [sym_full_reference_image] = STATE(135), [sym_collapsed_reference_image] = STATE(135), [sym_inline_image] = STATE(135), - [sym_image_description] = STATE(677), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(692), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(135), [sym_full_reference_link] = STATE(135), [sym_collapsed_reference_link] = STATE(135), [sym_inline_link] = STATE(135), - [sym_link_text] = STATE(680), - [sym_span] = STATE(18), - [sym__bracketed_text_begin] = STATE(1218), + [sym_link_text] = STATE(704), + [sym_span] = STATE(596), + [sym__bracketed_text_begin] = STATE(1238), [sym__comment_with_spaces] = STATE(134), [sym_raw_inline] = STATE(134), [sym_math] = STATE(134), @@ -11411,40 +11467,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(357), }, [74] = { - [sym__inline] = STATE(930), - [sym__element] = STATE(20), + [sym__inline] = STATE(947), + [sym__element] = STATE(525), [sym_emphasis] = STATE(136), - [sym_emphasis_begin] = STATE(1164), + [sym_emphasis_begin] = STATE(1184), [sym_strong] = STATE(136), - [sym_strong_begin] = STATE(1165), + [sym_strong_begin] = STATE(1185), [sym_superscript] = STATE(136), - [sym_superscript_begin] = STATE(1166), + [sym_superscript_begin] = STATE(1186), [sym_subscript] = STATE(136), - [sym_subscript_begin] = STATE(1167), + [sym_subscript_begin] = STATE(1187), [sym_highlighted] = STATE(136), - [sym_highlighted_begin] = STATE(1168), + [sym_highlighted_begin] = STATE(1188), [sym_insert] = STATE(136), - [sym_insert_begin] = STATE(1169), + [sym_insert_begin] = STATE(1189), [sym_delete] = STATE(136), - [sym_delete_begin] = STATE(1170), + [sym_delete_begin] = STATE(1190), [sym_hard_line_break] = STATE(138), [sym__smart_punctuation] = STATE(138), [sym_autolink] = STATE(138), [sym_footnote_reference] = STATE(136), - [sym_footnote_marker_begin] = STATE(1171), + [sym_footnote_marker_begin] = STATE(1191), [sym__image] = STATE(136), [sym_full_reference_image] = STATE(136), [sym_collapsed_reference_image] = STATE(136), [sym_inline_image] = STATE(136), - [sym_image_description] = STATE(685), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(676), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(136), [sym_full_reference_link] = STATE(136), [sym_collapsed_reference_link] = STATE(136), [sym_inline_link] = STATE(136), - [sym_link_text] = STATE(686), - [sym_span] = STATE(20), - [sym__bracketed_text_begin] = STATE(1219), + [sym_link_text] = STATE(677), + [sym_span] = STATE(525), + [sym__bracketed_text_begin] = STATE(1239), [sym__comment_with_spaces] = STATE(138), [sym_raw_inline] = STATE(138), [sym_math] = STATE(138), @@ -11493,40 +11549,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(407), }, [75] = { - [sym__inline] = STATE(934), - [sym__element] = STATE(22), + [sym__inline] = STATE(948), + [sym__element] = STATE(585), [sym_emphasis] = STATE(140), - [sym_emphasis_begin] = STATE(1174), + [sym_emphasis_begin] = STATE(1194), [sym_strong] = STATE(140), - [sym_strong_begin] = STATE(1175), + [sym_strong_begin] = STATE(1195), [sym_superscript] = STATE(140), - [sym_superscript_begin] = STATE(1176), + [sym_superscript_begin] = STATE(1196), [sym_subscript] = STATE(140), - [sym_subscript_begin] = STATE(1177), + [sym_subscript_begin] = STATE(1197), [sym_highlighted] = STATE(140), - [sym_highlighted_begin] = STATE(1178), + [sym_highlighted_begin] = STATE(1198), [sym_insert] = STATE(140), - [sym_insert_begin] = STATE(1179), + [sym_insert_begin] = STATE(1199), [sym_delete] = STATE(140), - [sym_delete_begin] = STATE(1180), + [sym_delete_begin] = STATE(1200), [sym_hard_line_break] = STATE(139), [sym__smart_punctuation] = STATE(139), [sym_autolink] = STATE(139), [sym_footnote_reference] = STATE(140), - [sym_footnote_marker_begin] = STATE(1181), + [sym_footnote_marker_begin] = STATE(1201), [sym__image] = STATE(140), [sym_full_reference_image] = STATE(140), [sym_collapsed_reference_image] = STATE(140), [sym_inline_image] = STATE(140), - [sym_image_description] = STATE(655), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(681), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(140), [sym_full_reference_link] = STATE(140), [sym_collapsed_reference_link] = STATE(140), [sym_inline_link] = STATE(140), - [sym_link_text] = STATE(656), - [sym_span] = STATE(22), - [sym__bracketed_text_begin] = STATE(1220), + [sym_link_text] = STATE(682), + [sym_span] = STATE(585), + [sym__bracketed_text_begin] = STATE(1240), [sym__comment_with_spaces] = STATE(139), [sym_raw_inline] = STATE(139), [sym_math] = STATE(139), @@ -11575,40 +11631,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(457), }, [76] = { - [sym__inline] = STATE(936), - [sym__element] = STATE(24), + [sym__inline] = STATE(950), + [sym__element] = STATE(625), [sym_emphasis] = STATE(131), - [sym_emphasis_begin] = STATE(1184), + [sym_emphasis_begin] = STATE(1204), [sym_strong] = STATE(131), - [sym_strong_begin] = STATE(1185), + [sym_strong_begin] = STATE(1205), [sym_superscript] = STATE(131), - [sym_superscript_begin] = STATE(1186), + [sym_superscript_begin] = STATE(1206), [sym_subscript] = STATE(131), - [sym_subscript_begin] = STATE(1187), + [sym_subscript_begin] = STATE(1207), [sym_highlighted] = STATE(131), - [sym_highlighted_begin] = STATE(1188), + [sym_highlighted_begin] = STATE(1208), [sym_insert] = STATE(131), - [sym_insert_begin] = STATE(1189), + [sym_insert_begin] = STATE(1209), [sym_delete] = STATE(131), - [sym_delete_begin] = STATE(1190), + [sym_delete_begin] = STATE(1210), [sym_hard_line_break] = STATE(145), [sym__smart_punctuation] = STATE(145), [sym_autolink] = STATE(145), [sym_footnote_reference] = STATE(131), - [sym_footnote_marker_begin] = STATE(1191), + [sym_footnote_marker_begin] = STATE(1211), [sym__image] = STATE(131), [sym_full_reference_image] = STATE(131), [sym_collapsed_reference_image] = STATE(131), [sym_inline_image] = STATE(131), - [sym_image_description] = STATE(662), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(685), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(131), [sym_full_reference_link] = STATE(131), [sym_collapsed_reference_link] = STATE(131), [sym_inline_link] = STATE(131), - [sym_link_text] = STATE(663), - [sym_span] = STATE(24), - [sym__bracketed_text_begin] = STATE(1221), + [sym_link_text] = STATE(686), + [sym_span] = STATE(625), + [sym__bracketed_text_begin] = STATE(1241), [sym__comment_with_spaces] = STATE(145), [sym_raw_inline] = STATE(145), [sym_math] = STATE(145), @@ -11657,40 +11713,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(507), }, [77] = { - [sym__inline_without_trailing_space] = STATE(1013), - [sym__element] = STATE(543), + [sym__inline_without_trailing_space] = STATE(1017), + [sym__element] = STATE(572), [sym_emphasis] = STATE(150), - [sym_emphasis_begin] = STATE(1114), + [sym_emphasis_begin] = STATE(1134), [sym_strong] = STATE(150), - [sym_strong_begin] = STATE(1115), + [sym_strong_begin] = STATE(1135), [sym_superscript] = STATE(150), - [sym_superscript_begin] = STATE(1116), + [sym_superscript_begin] = STATE(1136), [sym_subscript] = STATE(150), - [sym_subscript_begin] = STATE(1117), + [sym_subscript_begin] = STATE(1137), [sym_highlighted] = STATE(150), - [sym_highlighted_begin] = STATE(1118), + [sym_highlighted_begin] = STATE(1138), [sym_insert] = STATE(150), - [sym_insert_begin] = STATE(1119), + [sym_insert_begin] = STATE(1139), [sym_delete] = STATE(150), - [sym_delete_begin] = STATE(1120), + [sym_delete_begin] = STATE(1140), [sym_hard_line_break] = STATE(133), [sym__smart_punctuation] = STATE(133), [sym_autolink] = STATE(133), [sym_footnote_reference] = STATE(150), - [sym_footnote_marker_begin] = STATE(1121), + [sym_footnote_marker_begin] = STATE(1141), [sym__image] = STATE(150), [sym_full_reference_image] = STATE(150), [sym_collapsed_reference_image] = STATE(150), [sym_inline_image] = STATE(150), - [sym_image_description] = STATE(678), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(705), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(150), [sym_full_reference_link] = STATE(150), [sym_collapsed_reference_link] = STATE(150), [sym_inline_link] = STATE(150), - [sym_link_text] = STATE(679), - [sym_span] = STATE(543), - [sym__bracketed_text_begin] = STATE(1214), + [sym_link_text] = STATE(706), + [sym_span] = STATE(572), + [sym__bracketed_text_begin] = STATE(1234), [sym__comment_with_spaces] = STATE(133), [sym_raw_inline] = STATE(133), [sym_math] = STATE(133), @@ -11739,40 +11795,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(207), }, [78] = { - [sym__inline_without_trailing_space] = STATE(1021), - [sym__element] = STATE(570), + [sym__inline_without_trailing_space] = STATE(1025), + [sym__element] = STATE(580), [sym_emphasis] = STATE(142), - [sym_emphasis_begin] = STATE(1124), + [sym_emphasis_begin] = STATE(1144), [sym_strong] = STATE(142), - [sym_strong_begin] = STATE(1125), + [sym_strong_begin] = STATE(1145), [sym_superscript] = STATE(142), - [sym_superscript_begin] = STATE(1126), + [sym_superscript_begin] = STATE(1146), [sym_subscript] = STATE(142), - [sym_subscript_begin] = STATE(1127), + [sym_subscript_begin] = STATE(1147), [sym_highlighted] = STATE(142), - [sym_highlighted_begin] = STATE(1128), + [sym_highlighted_begin] = STATE(1148), [sym_insert] = STATE(142), - [sym_insert_begin] = STATE(1129), + [sym_insert_begin] = STATE(1149), [sym_delete] = STATE(142), - [sym_delete_begin] = STATE(1130), + [sym_delete_begin] = STATE(1150), [sym_hard_line_break] = STATE(137), [sym__smart_punctuation] = STATE(137), [sym_autolink] = STATE(137), [sym_footnote_reference] = STATE(142), - [sym_footnote_marker_begin] = STATE(1131), + [sym_footnote_marker_begin] = STATE(1151), [sym__image] = STATE(142), [sym_full_reference_image] = STATE(142), [sym_collapsed_reference_image] = STATE(142), [sym_inline_image] = STATE(142), - [sym_image_description] = STATE(687), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(702), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(142), [sym_full_reference_link] = STATE(142), [sym_collapsed_reference_link] = STATE(142), [sym_inline_link] = STATE(142), - [sym_link_text] = STATE(654), - [sym_span] = STATE(570), - [sym__bracketed_text_begin] = STATE(1215), + [sym_link_text] = STATE(698), + [sym_span] = STATE(580), + [sym__bracketed_text_begin] = STATE(1235), [sym__comment_with_spaces] = STATE(137), [sym_raw_inline] = STATE(137), [sym_math] = STATE(137), @@ -11821,40 +11877,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(257), }, [79] = { - [sym__inline] = STATE(1025), - [sym__element] = STATE(15), + [sym__inline] = STATE(1033), + [sym__element] = STATE(613), [sym_emphasis] = STATE(132), - [sym_emphasis_begin] = STATE(1134), + [sym_emphasis_begin] = STATE(1154), [sym_strong] = STATE(132), - [sym_strong_begin] = STATE(1135), + [sym_strong_begin] = STATE(1155), [sym_superscript] = STATE(132), - [sym_superscript_begin] = STATE(1136), + [sym_superscript_begin] = STATE(1156), [sym_subscript] = STATE(132), - [sym_subscript_begin] = STATE(1137), + [sym_subscript_begin] = STATE(1157), [sym_highlighted] = STATE(132), - [sym_highlighted_begin] = STATE(1138), + [sym_highlighted_begin] = STATE(1158), [sym_insert] = STATE(132), - [sym_insert_begin] = STATE(1139), + [sym_insert_begin] = STATE(1159), [sym_delete] = STATE(132), - [sym_delete_begin] = STATE(1140), + [sym_delete_begin] = STATE(1160), [sym_hard_line_break] = STATE(147), [sym__smart_punctuation] = STATE(147), [sym_autolink] = STATE(147), [sym_footnote_reference] = STATE(132), - [sym_footnote_marker_begin] = STATE(1141), + [sym_footnote_marker_begin] = STATE(1161), [sym__image] = STATE(132), [sym_full_reference_image] = STATE(132), [sym_collapsed_reference_image] = STATE(132), [sym_inline_image] = STATE(132), - [sym_image_description] = STATE(682), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(687), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(132), [sym_full_reference_link] = STATE(132), [sym_collapsed_reference_link] = STATE(132), [sym_inline_link] = STATE(132), - [sym_link_text] = STATE(689), - [sym_span] = STATE(15), - [sym__bracketed_text_begin] = STATE(1216), + [sym_link_text] = STATE(693), + [sym_span] = STATE(613), + [sym__bracketed_text_begin] = STATE(1236), [sym__comment_with_spaces] = STATE(147), [sym_raw_inline] = STATE(147), [sym_math] = STATE(147), @@ -11903,40 +11959,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(153), }, [80] = { - [sym__inline] = STATE(1028), - [sym__element] = STATE(16), + [sym__inline] = STATE(1041), + [sym__element] = STATE(565), [sym_emphasis] = STATE(143), - [sym_emphasis_begin] = STATE(1144), + [sym_emphasis_begin] = STATE(1164), [sym_strong] = STATE(143), - [sym_strong_begin] = STATE(1145), + [sym_strong_begin] = STATE(1165), [sym_superscript] = STATE(143), - [sym_superscript_begin] = STATE(1146), + [sym_superscript_begin] = STATE(1166), [sym_subscript] = STATE(143), - [sym_subscript_begin] = STATE(1147), + [sym_subscript_begin] = STATE(1167), [sym_highlighted] = STATE(143), - [sym_highlighted_begin] = STATE(1148), + [sym_highlighted_begin] = STATE(1168), [sym_insert] = STATE(143), - [sym_insert_begin] = STATE(1149), + [sym_insert_begin] = STATE(1169), [sym_delete] = STATE(143), - [sym_delete_begin] = STATE(1150), + [sym_delete_begin] = STATE(1170), [sym_hard_line_break] = STATE(141), [sym__smart_punctuation] = STATE(141), [sym_autolink] = STATE(141), [sym_footnote_reference] = STATE(143), - [sym_footnote_marker_begin] = STATE(1151), + [sym_footnote_marker_begin] = STATE(1171), [sym__image] = STATE(143), [sym_full_reference_image] = STATE(143), [sym_collapsed_reference_image] = STATE(143), [sym_inline_image] = STATE(143), - [sym_image_description] = STATE(660), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(678), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(143), [sym_full_reference_link] = STATE(143), [sym_collapsed_reference_link] = STATE(143), [sym_inline_link] = STATE(143), - [sym_link_text] = STATE(661), - [sym_span] = STATE(16), - [sym__bracketed_text_begin] = STATE(1217), + [sym_link_text] = STATE(683), + [sym_span] = STATE(565), + [sym__bracketed_text_begin] = STATE(1237), [sym__comment_with_spaces] = STATE(141), [sym_raw_inline] = STATE(141), [sym_math] = STATE(141), @@ -11985,40 +12041,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(307), }, [81] = { - [sym__inline] = STATE(1029), - [sym__element] = STATE(18), + [sym__inline] = STATE(1049), + [sym__element] = STATE(596), [sym_emphasis] = STATE(135), - [sym_emphasis_begin] = STATE(1154), + [sym_emphasis_begin] = STATE(1174), [sym_strong] = STATE(135), - [sym_strong_begin] = STATE(1155), + [sym_strong_begin] = STATE(1175), [sym_superscript] = STATE(135), - [sym_superscript_begin] = STATE(1156), + [sym_superscript_begin] = STATE(1176), [sym_subscript] = STATE(135), - [sym_subscript_begin] = STATE(1157), + [sym_subscript_begin] = STATE(1177), [sym_highlighted] = STATE(135), - [sym_highlighted_begin] = STATE(1158), + [sym_highlighted_begin] = STATE(1178), [sym_insert] = STATE(135), - [sym_insert_begin] = STATE(1159), + [sym_insert_begin] = STATE(1179), [sym_delete] = STATE(135), - [sym_delete_begin] = STATE(1160), + [sym_delete_begin] = STATE(1180), [sym_hard_line_break] = STATE(134), [sym__smart_punctuation] = STATE(134), [sym_autolink] = STATE(134), [sym_footnote_reference] = STATE(135), - [sym_footnote_marker_begin] = STATE(1161), + [sym_footnote_marker_begin] = STATE(1181), [sym__image] = STATE(135), [sym_full_reference_image] = STATE(135), [sym_collapsed_reference_image] = STATE(135), [sym_inline_image] = STATE(135), - [sym_image_description] = STATE(677), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(692), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(135), [sym_full_reference_link] = STATE(135), [sym_collapsed_reference_link] = STATE(135), [sym_inline_link] = STATE(135), - [sym_link_text] = STATE(680), - [sym_span] = STATE(18), - [sym__bracketed_text_begin] = STATE(1218), + [sym_link_text] = STATE(704), + [sym_span] = STATE(596), + [sym__bracketed_text_begin] = STATE(1238), [sym__comment_with_spaces] = STATE(134), [sym_raw_inline] = STATE(134), [sym_math] = STATE(134), @@ -12067,40 +12123,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(357), }, [82] = { - [sym__inline] = STATE(1037), - [sym__element] = STATE(20), + [sym__inline] = STATE(1057), + [sym__element] = STATE(525), [sym_emphasis] = STATE(136), - [sym_emphasis_begin] = STATE(1164), + [sym_emphasis_begin] = STATE(1184), [sym_strong] = STATE(136), - [sym_strong_begin] = STATE(1165), + [sym_strong_begin] = STATE(1185), [sym_superscript] = STATE(136), - [sym_superscript_begin] = STATE(1166), + [sym_superscript_begin] = STATE(1186), [sym_subscript] = STATE(136), - [sym_subscript_begin] = STATE(1167), + [sym_subscript_begin] = STATE(1187), [sym_highlighted] = STATE(136), - [sym_highlighted_begin] = STATE(1168), + [sym_highlighted_begin] = STATE(1188), [sym_insert] = STATE(136), - [sym_insert_begin] = STATE(1169), + [sym_insert_begin] = STATE(1189), [sym_delete] = STATE(136), - [sym_delete_begin] = STATE(1170), + [sym_delete_begin] = STATE(1190), [sym_hard_line_break] = STATE(138), [sym__smart_punctuation] = STATE(138), [sym_autolink] = STATE(138), [sym_footnote_reference] = STATE(136), - [sym_footnote_marker_begin] = STATE(1171), + [sym_footnote_marker_begin] = STATE(1191), [sym__image] = STATE(136), [sym_full_reference_image] = STATE(136), [sym_collapsed_reference_image] = STATE(136), [sym_inline_image] = STATE(136), - [sym_image_description] = STATE(685), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(676), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(136), [sym_full_reference_link] = STATE(136), [sym_collapsed_reference_link] = STATE(136), [sym_inline_link] = STATE(136), - [sym_link_text] = STATE(686), - [sym_span] = STATE(20), - [sym__bracketed_text_begin] = STATE(1219), + [sym_link_text] = STATE(677), + [sym_span] = STATE(525), + [sym__bracketed_text_begin] = STATE(1239), [sym__comment_with_spaces] = STATE(138), [sym_raw_inline] = STATE(138), [sym_math] = STATE(138), @@ -12149,40 +12205,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(407), }, [83] = { - [sym__inline] = STATE(1040), - [sym__element] = STATE(22), + [sym__inline] = STATE(1060), + [sym__element] = STATE(585), [sym_emphasis] = STATE(140), - [sym_emphasis_begin] = STATE(1174), + [sym_emphasis_begin] = STATE(1194), [sym_strong] = STATE(140), - [sym_strong_begin] = STATE(1175), + [sym_strong_begin] = STATE(1195), [sym_superscript] = STATE(140), - [sym_superscript_begin] = STATE(1176), + [sym_superscript_begin] = STATE(1196), [sym_subscript] = STATE(140), - [sym_subscript_begin] = STATE(1177), + [sym_subscript_begin] = STATE(1197), [sym_highlighted] = STATE(140), - [sym_highlighted_begin] = STATE(1178), + [sym_highlighted_begin] = STATE(1198), [sym_insert] = STATE(140), - [sym_insert_begin] = STATE(1179), + [sym_insert_begin] = STATE(1199), [sym_delete] = STATE(140), - [sym_delete_begin] = STATE(1180), + [sym_delete_begin] = STATE(1200), [sym_hard_line_break] = STATE(139), [sym__smart_punctuation] = STATE(139), [sym_autolink] = STATE(139), [sym_footnote_reference] = STATE(140), - [sym_footnote_marker_begin] = STATE(1181), + [sym_footnote_marker_begin] = STATE(1201), [sym__image] = STATE(140), [sym_full_reference_image] = STATE(140), [sym_collapsed_reference_image] = STATE(140), [sym_inline_image] = STATE(140), - [sym_image_description] = STATE(655), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(681), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(140), [sym_full_reference_link] = STATE(140), [sym_collapsed_reference_link] = STATE(140), [sym_inline_link] = STATE(140), - [sym_link_text] = STATE(656), - [sym_span] = STATE(22), - [sym__bracketed_text_begin] = STATE(1220), + [sym_link_text] = STATE(682), + [sym_span] = STATE(585), + [sym__bracketed_text_begin] = STATE(1240), [sym__comment_with_spaces] = STATE(139), [sym_raw_inline] = STATE(139), [sym_math] = STATE(139), @@ -12231,40 +12287,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(457), }, [84] = { - [sym__inline] = STATE(1042), - [sym__element] = STATE(24), + [sym__inline] = STATE(1062), + [sym__element] = STATE(625), [sym_emphasis] = STATE(131), - [sym_emphasis_begin] = STATE(1184), + [sym_emphasis_begin] = STATE(1204), [sym_strong] = STATE(131), - [sym_strong_begin] = STATE(1185), + [sym_strong_begin] = STATE(1205), [sym_superscript] = STATE(131), - [sym_superscript_begin] = STATE(1186), + [sym_superscript_begin] = STATE(1206), [sym_subscript] = STATE(131), - [sym_subscript_begin] = STATE(1187), + [sym_subscript_begin] = STATE(1207), [sym_highlighted] = STATE(131), - [sym_highlighted_begin] = STATE(1188), + [sym_highlighted_begin] = STATE(1208), [sym_insert] = STATE(131), - [sym_insert_begin] = STATE(1189), + [sym_insert_begin] = STATE(1209), [sym_delete] = STATE(131), - [sym_delete_begin] = STATE(1190), + [sym_delete_begin] = STATE(1210), [sym_hard_line_break] = STATE(145), [sym__smart_punctuation] = STATE(145), [sym_autolink] = STATE(145), [sym_footnote_reference] = STATE(131), - [sym_footnote_marker_begin] = STATE(1191), + [sym_footnote_marker_begin] = STATE(1211), [sym__image] = STATE(131), [sym_full_reference_image] = STATE(131), [sym_collapsed_reference_image] = STATE(131), [sym_inline_image] = STATE(131), - [sym_image_description] = STATE(662), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(685), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(131), [sym_full_reference_link] = STATE(131), [sym_collapsed_reference_link] = STATE(131), [sym_inline_link] = STATE(131), - [sym_link_text] = STATE(663), - [sym_span] = STATE(24), - [sym__bracketed_text_begin] = STATE(1221), + [sym_link_text] = STATE(686), + [sym_span] = STATE(625), + [sym__bracketed_text_begin] = STATE(1241), [sym__comment_with_spaces] = STATE(145), [sym_raw_inline] = STATE(145), [sym_math] = STATE(145), @@ -12313,40 +12369,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(507), }, [85] = { - [sym__inline_without_trailing_space] = STATE(1110), - [sym__element] = STATE(543), + [sym__inline_without_trailing_space] = STATE(1143), + [sym__element] = STATE(572), [sym_emphasis] = STATE(150), - [sym_emphasis_begin] = STATE(1114), + [sym_emphasis_begin] = STATE(1134), [sym_strong] = STATE(150), - [sym_strong_begin] = STATE(1115), + [sym_strong_begin] = STATE(1135), [sym_superscript] = STATE(150), - [sym_superscript_begin] = STATE(1116), + [sym_superscript_begin] = STATE(1136), [sym_subscript] = STATE(150), - [sym_subscript_begin] = STATE(1117), + [sym_subscript_begin] = STATE(1137), [sym_highlighted] = STATE(150), - [sym_highlighted_begin] = STATE(1118), + [sym_highlighted_begin] = STATE(1138), [sym_insert] = STATE(150), - [sym_insert_begin] = STATE(1119), + [sym_insert_begin] = STATE(1139), [sym_delete] = STATE(150), - [sym_delete_begin] = STATE(1120), + [sym_delete_begin] = STATE(1140), [sym_hard_line_break] = STATE(133), [sym__smart_punctuation] = STATE(133), [sym_autolink] = STATE(133), [sym_footnote_reference] = STATE(150), - [sym_footnote_marker_begin] = STATE(1121), + [sym_footnote_marker_begin] = STATE(1141), [sym__image] = STATE(150), [sym_full_reference_image] = STATE(150), [sym_collapsed_reference_image] = STATE(150), [sym_inline_image] = STATE(150), - [sym_image_description] = STATE(678), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(705), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(150), [sym_full_reference_link] = STATE(150), [sym_collapsed_reference_link] = STATE(150), [sym_inline_link] = STATE(150), - [sym_link_text] = STATE(679), - [sym_span] = STATE(543), - [sym__bracketed_text_begin] = STATE(1214), + [sym_link_text] = STATE(706), + [sym_span] = STATE(572), + [sym__bracketed_text_begin] = STATE(1234), [sym__comment_with_spaces] = STATE(133), [sym_raw_inline] = STATE(133), [sym_math] = STATE(133), @@ -12395,40 +12451,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(207), }, [86] = { - [sym__inline_without_trailing_space] = STATE(1123), - [sym__element] = STATE(570), + [sym__inline_without_trailing_space] = STATE(1153), + [sym__element] = STATE(580), [sym_emphasis] = STATE(142), - [sym_emphasis_begin] = STATE(1124), + [sym_emphasis_begin] = STATE(1144), [sym_strong] = STATE(142), - [sym_strong_begin] = STATE(1125), + [sym_strong_begin] = STATE(1145), [sym_superscript] = STATE(142), - [sym_superscript_begin] = STATE(1126), + [sym_superscript_begin] = STATE(1146), [sym_subscript] = STATE(142), - [sym_subscript_begin] = STATE(1127), + [sym_subscript_begin] = STATE(1147), [sym_highlighted] = STATE(142), - [sym_highlighted_begin] = STATE(1128), + [sym_highlighted_begin] = STATE(1148), [sym_insert] = STATE(142), - [sym_insert_begin] = STATE(1129), + [sym_insert_begin] = STATE(1149), [sym_delete] = STATE(142), - [sym_delete_begin] = STATE(1130), + [sym_delete_begin] = STATE(1150), [sym_hard_line_break] = STATE(137), [sym__smart_punctuation] = STATE(137), [sym_autolink] = STATE(137), [sym_footnote_reference] = STATE(142), - [sym_footnote_marker_begin] = STATE(1131), + [sym_footnote_marker_begin] = STATE(1151), [sym__image] = STATE(142), [sym_full_reference_image] = STATE(142), [sym_collapsed_reference_image] = STATE(142), [sym_inline_image] = STATE(142), - [sym_image_description] = STATE(687), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(702), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(142), [sym_full_reference_link] = STATE(142), [sym_collapsed_reference_link] = STATE(142), [sym_inline_link] = STATE(142), - [sym_link_text] = STATE(654), - [sym_span] = STATE(570), - [sym__bracketed_text_begin] = STATE(1215), + [sym_link_text] = STATE(698), + [sym_span] = STATE(580), + [sym__bracketed_text_begin] = STATE(1235), [sym__comment_with_spaces] = STATE(137), [sym_raw_inline] = STATE(137), [sym_math] = STATE(137), @@ -12477,40 +12533,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(257), }, [87] = { - [sym__inline] = STATE(1133), - [sym__element] = STATE(15), + [sym__inline] = STATE(1163), + [sym__element] = STATE(613), [sym_emphasis] = STATE(132), - [sym_emphasis_begin] = STATE(1134), + [sym_emphasis_begin] = STATE(1154), [sym_strong] = STATE(132), - [sym_strong_begin] = STATE(1135), + [sym_strong_begin] = STATE(1155), [sym_superscript] = STATE(132), - [sym_superscript_begin] = STATE(1136), + [sym_superscript_begin] = STATE(1156), [sym_subscript] = STATE(132), - [sym_subscript_begin] = STATE(1137), + [sym_subscript_begin] = STATE(1157), [sym_highlighted] = STATE(132), - [sym_highlighted_begin] = STATE(1138), + [sym_highlighted_begin] = STATE(1158), [sym_insert] = STATE(132), - [sym_insert_begin] = STATE(1139), + [sym_insert_begin] = STATE(1159), [sym_delete] = STATE(132), - [sym_delete_begin] = STATE(1140), + [sym_delete_begin] = STATE(1160), [sym_hard_line_break] = STATE(147), [sym__smart_punctuation] = STATE(147), [sym_autolink] = STATE(147), [sym_footnote_reference] = STATE(132), - [sym_footnote_marker_begin] = STATE(1141), + [sym_footnote_marker_begin] = STATE(1161), [sym__image] = STATE(132), [sym_full_reference_image] = STATE(132), [sym_collapsed_reference_image] = STATE(132), [sym_inline_image] = STATE(132), - [sym_image_description] = STATE(682), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(687), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(132), [sym_full_reference_link] = STATE(132), [sym_collapsed_reference_link] = STATE(132), [sym_inline_link] = STATE(132), - [sym_link_text] = STATE(689), - [sym_span] = STATE(15), - [sym__bracketed_text_begin] = STATE(1216), + [sym_link_text] = STATE(693), + [sym_span] = STATE(613), + [sym__bracketed_text_begin] = STATE(1236), [sym__comment_with_spaces] = STATE(147), [sym_raw_inline] = STATE(147), [sym_math] = STATE(147), @@ -12559,40 +12615,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(153), }, [88] = { - [sym__inline] = STATE(1143), - [sym__element] = STATE(16), + [sym__inline] = STATE(1173), + [sym__element] = STATE(565), [sym_emphasis] = STATE(143), - [sym_emphasis_begin] = STATE(1144), + [sym_emphasis_begin] = STATE(1164), [sym_strong] = STATE(143), - [sym_strong_begin] = STATE(1145), + [sym_strong_begin] = STATE(1165), [sym_superscript] = STATE(143), - [sym_superscript_begin] = STATE(1146), + [sym_superscript_begin] = STATE(1166), [sym_subscript] = STATE(143), - [sym_subscript_begin] = STATE(1147), + [sym_subscript_begin] = STATE(1167), [sym_highlighted] = STATE(143), - [sym_highlighted_begin] = STATE(1148), + [sym_highlighted_begin] = STATE(1168), [sym_insert] = STATE(143), - [sym_insert_begin] = STATE(1149), + [sym_insert_begin] = STATE(1169), [sym_delete] = STATE(143), - [sym_delete_begin] = STATE(1150), + [sym_delete_begin] = STATE(1170), [sym_hard_line_break] = STATE(141), [sym__smart_punctuation] = STATE(141), [sym_autolink] = STATE(141), [sym_footnote_reference] = STATE(143), - [sym_footnote_marker_begin] = STATE(1151), + [sym_footnote_marker_begin] = STATE(1171), [sym__image] = STATE(143), [sym_full_reference_image] = STATE(143), [sym_collapsed_reference_image] = STATE(143), [sym_inline_image] = STATE(143), - [sym_image_description] = STATE(660), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(678), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(143), [sym_full_reference_link] = STATE(143), [sym_collapsed_reference_link] = STATE(143), [sym_inline_link] = STATE(143), - [sym_link_text] = STATE(661), - [sym_span] = STATE(16), - [sym__bracketed_text_begin] = STATE(1217), + [sym_link_text] = STATE(683), + [sym_span] = STATE(565), + [sym__bracketed_text_begin] = STATE(1237), [sym__comment_with_spaces] = STATE(141), [sym_raw_inline] = STATE(141), [sym_math] = STATE(141), @@ -12641,40 +12697,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(307), }, [89] = { - [sym__inline] = STATE(1153), - [sym__element] = STATE(18), + [sym__inline] = STATE(1183), + [sym__element] = STATE(596), [sym_emphasis] = STATE(135), - [sym_emphasis_begin] = STATE(1154), + [sym_emphasis_begin] = STATE(1174), [sym_strong] = STATE(135), - [sym_strong_begin] = STATE(1155), + [sym_strong_begin] = STATE(1175), [sym_superscript] = STATE(135), - [sym_superscript_begin] = STATE(1156), + [sym_superscript_begin] = STATE(1176), [sym_subscript] = STATE(135), - [sym_subscript_begin] = STATE(1157), + [sym_subscript_begin] = STATE(1177), [sym_highlighted] = STATE(135), - [sym_highlighted_begin] = STATE(1158), + [sym_highlighted_begin] = STATE(1178), [sym_insert] = STATE(135), - [sym_insert_begin] = STATE(1159), + [sym_insert_begin] = STATE(1179), [sym_delete] = STATE(135), - [sym_delete_begin] = STATE(1160), + [sym_delete_begin] = STATE(1180), [sym_hard_line_break] = STATE(134), [sym__smart_punctuation] = STATE(134), [sym_autolink] = STATE(134), [sym_footnote_reference] = STATE(135), - [sym_footnote_marker_begin] = STATE(1161), + [sym_footnote_marker_begin] = STATE(1181), [sym__image] = STATE(135), [sym_full_reference_image] = STATE(135), [sym_collapsed_reference_image] = STATE(135), [sym_inline_image] = STATE(135), - [sym_image_description] = STATE(677), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(692), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(135), [sym_full_reference_link] = STATE(135), [sym_collapsed_reference_link] = STATE(135), [sym_inline_link] = STATE(135), - [sym_link_text] = STATE(680), - [sym_span] = STATE(18), - [sym__bracketed_text_begin] = STATE(1218), + [sym_link_text] = STATE(704), + [sym_span] = STATE(596), + [sym__bracketed_text_begin] = STATE(1238), [sym__comment_with_spaces] = STATE(134), [sym_raw_inline] = STATE(134), [sym_math] = STATE(134), @@ -12723,40 +12779,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(357), }, [90] = { - [sym__inline] = STATE(1163), - [sym__element] = STATE(20), + [sym__inline] = STATE(1193), + [sym__element] = STATE(525), [sym_emphasis] = STATE(136), - [sym_emphasis_begin] = STATE(1164), + [sym_emphasis_begin] = STATE(1184), [sym_strong] = STATE(136), - [sym_strong_begin] = STATE(1165), + [sym_strong_begin] = STATE(1185), [sym_superscript] = STATE(136), - [sym_superscript_begin] = STATE(1166), + [sym_superscript_begin] = STATE(1186), [sym_subscript] = STATE(136), - [sym_subscript_begin] = STATE(1167), + [sym_subscript_begin] = STATE(1187), [sym_highlighted] = STATE(136), - [sym_highlighted_begin] = STATE(1168), + [sym_highlighted_begin] = STATE(1188), [sym_insert] = STATE(136), - [sym_insert_begin] = STATE(1169), + [sym_insert_begin] = STATE(1189), [sym_delete] = STATE(136), - [sym_delete_begin] = STATE(1170), + [sym_delete_begin] = STATE(1190), [sym_hard_line_break] = STATE(138), [sym__smart_punctuation] = STATE(138), [sym_autolink] = STATE(138), [sym_footnote_reference] = STATE(136), - [sym_footnote_marker_begin] = STATE(1171), + [sym_footnote_marker_begin] = STATE(1191), [sym__image] = STATE(136), [sym_full_reference_image] = STATE(136), [sym_collapsed_reference_image] = STATE(136), [sym_inline_image] = STATE(136), - [sym_image_description] = STATE(685), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(676), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(136), [sym_full_reference_link] = STATE(136), [sym_collapsed_reference_link] = STATE(136), [sym_inline_link] = STATE(136), - [sym_link_text] = STATE(686), - [sym_span] = STATE(20), - [sym__bracketed_text_begin] = STATE(1219), + [sym_link_text] = STATE(677), + [sym_span] = STATE(525), + [sym__bracketed_text_begin] = STATE(1239), [sym__comment_with_spaces] = STATE(138), [sym_raw_inline] = STATE(138), [sym_math] = STATE(138), @@ -12805,40 +12861,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(407), }, [91] = { - [sym__inline] = STATE(1173), - [sym__element] = STATE(22), + [sym__inline] = STATE(1203), + [sym__element] = STATE(585), [sym_emphasis] = STATE(140), - [sym_emphasis_begin] = STATE(1174), + [sym_emphasis_begin] = STATE(1194), [sym_strong] = STATE(140), - [sym_strong_begin] = STATE(1175), + [sym_strong_begin] = STATE(1195), [sym_superscript] = STATE(140), - [sym_superscript_begin] = STATE(1176), + [sym_superscript_begin] = STATE(1196), [sym_subscript] = STATE(140), - [sym_subscript_begin] = STATE(1177), + [sym_subscript_begin] = STATE(1197), [sym_highlighted] = STATE(140), - [sym_highlighted_begin] = STATE(1178), + [sym_highlighted_begin] = STATE(1198), [sym_insert] = STATE(140), - [sym_insert_begin] = STATE(1179), + [sym_insert_begin] = STATE(1199), [sym_delete] = STATE(140), - [sym_delete_begin] = STATE(1180), + [sym_delete_begin] = STATE(1200), [sym_hard_line_break] = STATE(139), [sym__smart_punctuation] = STATE(139), [sym_autolink] = STATE(139), [sym_footnote_reference] = STATE(140), - [sym_footnote_marker_begin] = STATE(1181), + [sym_footnote_marker_begin] = STATE(1201), [sym__image] = STATE(140), [sym_full_reference_image] = STATE(140), [sym_collapsed_reference_image] = STATE(140), [sym_inline_image] = STATE(140), - [sym_image_description] = STATE(655), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(681), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(140), [sym_full_reference_link] = STATE(140), [sym_collapsed_reference_link] = STATE(140), [sym_inline_link] = STATE(140), - [sym_link_text] = STATE(656), - [sym_span] = STATE(22), - [sym__bracketed_text_begin] = STATE(1220), + [sym_link_text] = STATE(682), + [sym_span] = STATE(585), + [sym__bracketed_text_begin] = STATE(1240), [sym__comment_with_spaces] = STATE(139), [sym_raw_inline] = STATE(139), [sym_math] = STATE(139), @@ -12887,40 +12943,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(457), }, [92] = { - [sym__inline] = STATE(1193), - [sym__element] = STATE(24), + [sym__inline] = STATE(1223), + [sym__element] = STATE(625), [sym_emphasis] = STATE(131), - [sym_emphasis_begin] = STATE(1184), + [sym_emphasis_begin] = STATE(1204), [sym_strong] = STATE(131), - [sym_strong_begin] = STATE(1185), + [sym_strong_begin] = STATE(1205), [sym_superscript] = STATE(131), - [sym_superscript_begin] = STATE(1186), + [sym_superscript_begin] = STATE(1206), [sym_subscript] = STATE(131), - [sym_subscript_begin] = STATE(1187), + [sym_subscript_begin] = STATE(1207), [sym_highlighted] = STATE(131), - [sym_highlighted_begin] = STATE(1188), + [sym_highlighted_begin] = STATE(1208), [sym_insert] = STATE(131), - [sym_insert_begin] = STATE(1189), + [sym_insert_begin] = STATE(1209), [sym_delete] = STATE(131), - [sym_delete_begin] = STATE(1190), + [sym_delete_begin] = STATE(1210), [sym_hard_line_break] = STATE(145), [sym__smart_punctuation] = STATE(145), [sym_autolink] = STATE(145), [sym_footnote_reference] = STATE(131), - [sym_footnote_marker_begin] = STATE(1191), + [sym_footnote_marker_begin] = STATE(1211), [sym__image] = STATE(131), [sym_full_reference_image] = STATE(131), [sym_collapsed_reference_image] = STATE(131), [sym_inline_image] = STATE(131), - [sym_image_description] = STATE(662), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(685), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(131), [sym_full_reference_link] = STATE(131), [sym_collapsed_reference_link] = STATE(131), [sym_inline_link] = STATE(131), - [sym_link_text] = STATE(663), - [sym_span] = STATE(24), - [sym__bracketed_text_begin] = STATE(1221), + [sym_link_text] = STATE(686), + [sym_span] = STATE(625), + [sym__bracketed_text_begin] = STATE(1241), [sym__comment_with_spaces] = STATE(145), [sym_raw_inline] = STATE(145), [sym_math] = STATE(145), @@ -12969,40 +13025,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(507), }, [93] = { - [sym__inline_without_trailing_space] = STATE(906), - [sym__element] = STATE(543), + [sym__inline_without_trailing_space] = STATE(926), + [sym__element] = STATE(572), [sym_emphasis] = STATE(150), - [sym_emphasis_begin] = STATE(1114), + [sym_emphasis_begin] = STATE(1134), [sym_strong] = STATE(150), - [sym_strong_begin] = STATE(1115), + [sym_strong_begin] = STATE(1135), [sym_superscript] = STATE(150), - [sym_superscript_begin] = STATE(1116), + [sym_superscript_begin] = STATE(1136), [sym_subscript] = STATE(150), - [sym_subscript_begin] = STATE(1117), + [sym_subscript_begin] = STATE(1137), [sym_highlighted] = STATE(150), - [sym_highlighted_begin] = STATE(1118), + [sym_highlighted_begin] = STATE(1138), [sym_insert] = STATE(150), - [sym_insert_begin] = STATE(1119), + [sym_insert_begin] = STATE(1139), [sym_delete] = STATE(150), - [sym_delete_begin] = STATE(1120), + [sym_delete_begin] = STATE(1140), [sym_hard_line_break] = STATE(133), [sym__smart_punctuation] = STATE(133), [sym_autolink] = STATE(133), [sym_footnote_reference] = STATE(150), - [sym_footnote_marker_begin] = STATE(1121), + [sym_footnote_marker_begin] = STATE(1141), [sym__image] = STATE(150), [sym_full_reference_image] = STATE(150), [sym_collapsed_reference_image] = STATE(150), [sym_inline_image] = STATE(150), - [sym_image_description] = STATE(678), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(705), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(150), [sym_full_reference_link] = STATE(150), [sym_collapsed_reference_link] = STATE(150), [sym_inline_link] = STATE(150), - [sym_link_text] = STATE(679), - [sym_span] = STATE(543), - [sym__bracketed_text_begin] = STATE(1214), + [sym_link_text] = STATE(706), + [sym_span] = STATE(572), + [sym__bracketed_text_begin] = STATE(1234), [sym__comment_with_spaces] = STATE(133), [sym_raw_inline] = STATE(133), [sym_math] = STATE(133), @@ -13051,40 +13107,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(207), }, [94] = { - [sym__inline_without_trailing_space] = STATE(907), - [sym__element] = STATE(570), + [sym__inline_without_trailing_space] = STATE(927), + [sym__element] = STATE(580), [sym_emphasis] = STATE(142), - [sym_emphasis_begin] = STATE(1124), + [sym_emphasis_begin] = STATE(1144), [sym_strong] = STATE(142), - [sym_strong_begin] = STATE(1125), + [sym_strong_begin] = STATE(1145), [sym_superscript] = STATE(142), - [sym_superscript_begin] = STATE(1126), + [sym_superscript_begin] = STATE(1146), [sym_subscript] = STATE(142), - [sym_subscript_begin] = STATE(1127), + [sym_subscript_begin] = STATE(1147), [sym_highlighted] = STATE(142), - [sym_highlighted_begin] = STATE(1128), + [sym_highlighted_begin] = STATE(1148), [sym_insert] = STATE(142), - [sym_insert_begin] = STATE(1129), + [sym_insert_begin] = STATE(1149), [sym_delete] = STATE(142), - [sym_delete_begin] = STATE(1130), + [sym_delete_begin] = STATE(1150), [sym_hard_line_break] = STATE(137), [sym__smart_punctuation] = STATE(137), [sym_autolink] = STATE(137), [sym_footnote_reference] = STATE(142), - [sym_footnote_marker_begin] = STATE(1131), + [sym_footnote_marker_begin] = STATE(1151), [sym__image] = STATE(142), [sym_full_reference_image] = STATE(142), [sym_collapsed_reference_image] = STATE(142), [sym_inline_image] = STATE(142), - [sym_image_description] = STATE(687), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(702), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(142), [sym_full_reference_link] = STATE(142), [sym_collapsed_reference_link] = STATE(142), [sym_inline_link] = STATE(142), - [sym_link_text] = STATE(654), - [sym_span] = STATE(570), - [sym__bracketed_text_begin] = STATE(1215), + [sym_link_text] = STATE(698), + [sym_span] = STATE(580), + [sym__bracketed_text_begin] = STATE(1235), [sym__comment_with_spaces] = STATE(137), [sym_raw_inline] = STATE(137), [sym_math] = STATE(137), @@ -13133,40 +13189,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(257), }, [95] = { - [sym__inline] = STATE(908), - [sym__element] = STATE(15), + [sym__inline] = STATE(928), + [sym__element] = STATE(613), [sym_emphasis] = STATE(132), - [sym_emphasis_begin] = STATE(1134), + [sym_emphasis_begin] = STATE(1154), [sym_strong] = STATE(132), - [sym_strong_begin] = STATE(1135), + [sym_strong_begin] = STATE(1155), [sym_superscript] = STATE(132), - [sym_superscript_begin] = STATE(1136), + [sym_superscript_begin] = STATE(1156), [sym_subscript] = STATE(132), - [sym_subscript_begin] = STATE(1137), + [sym_subscript_begin] = STATE(1157), [sym_highlighted] = STATE(132), - [sym_highlighted_begin] = STATE(1138), + [sym_highlighted_begin] = STATE(1158), [sym_insert] = STATE(132), - [sym_insert_begin] = STATE(1139), + [sym_insert_begin] = STATE(1159), [sym_delete] = STATE(132), - [sym_delete_begin] = STATE(1140), + [sym_delete_begin] = STATE(1160), [sym_hard_line_break] = STATE(147), [sym__smart_punctuation] = STATE(147), [sym_autolink] = STATE(147), [sym_footnote_reference] = STATE(132), - [sym_footnote_marker_begin] = STATE(1141), + [sym_footnote_marker_begin] = STATE(1161), [sym__image] = STATE(132), [sym_full_reference_image] = STATE(132), [sym_collapsed_reference_image] = STATE(132), [sym_inline_image] = STATE(132), - [sym_image_description] = STATE(682), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(687), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(132), [sym_full_reference_link] = STATE(132), [sym_collapsed_reference_link] = STATE(132), [sym_inline_link] = STATE(132), - [sym_link_text] = STATE(689), - [sym_span] = STATE(15), - [sym__bracketed_text_begin] = STATE(1216), + [sym_link_text] = STATE(693), + [sym_span] = STATE(613), + [sym__bracketed_text_begin] = STATE(1236), [sym__comment_with_spaces] = STATE(147), [sym_raw_inline] = STATE(147), [sym_math] = STATE(147), @@ -13215,40 +13271,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(153), }, [96] = { - [sym__inline] = STATE(909), - [sym__element] = STATE(16), + [sym__inline] = STATE(929), + [sym__element] = STATE(565), [sym_emphasis] = STATE(143), - [sym_emphasis_begin] = STATE(1144), + [sym_emphasis_begin] = STATE(1164), [sym_strong] = STATE(143), - [sym_strong_begin] = STATE(1145), + [sym_strong_begin] = STATE(1165), [sym_superscript] = STATE(143), - [sym_superscript_begin] = STATE(1146), + [sym_superscript_begin] = STATE(1166), [sym_subscript] = STATE(143), - [sym_subscript_begin] = STATE(1147), + [sym_subscript_begin] = STATE(1167), [sym_highlighted] = STATE(143), - [sym_highlighted_begin] = STATE(1148), + [sym_highlighted_begin] = STATE(1168), [sym_insert] = STATE(143), - [sym_insert_begin] = STATE(1149), + [sym_insert_begin] = STATE(1169), [sym_delete] = STATE(143), - [sym_delete_begin] = STATE(1150), + [sym_delete_begin] = STATE(1170), [sym_hard_line_break] = STATE(141), [sym__smart_punctuation] = STATE(141), [sym_autolink] = STATE(141), [sym_footnote_reference] = STATE(143), - [sym_footnote_marker_begin] = STATE(1151), + [sym_footnote_marker_begin] = STATE(1171), [sym__image] = STATE(143), [sym_full_reference_image] = STATE(143), [sym_collapsed_reference_image] = STATE(143), [sym_inline_image] = STATE(143), - [sym_image_description] = STATE(660), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(678), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(143), [sym_full_reference_link] = STATE(143), [sym_collapsed_reference_link] = STATE(143), [sym_inline_link] = STATE(143), - [sym_link_text] = STATE(661), - [sym_span] = STATE(16), - [sym__bracketed_text_begin] = STATE(1217), + [sym_link_text] = STATE(683), + [sym_span] = STATE(565), + [sym__bracketed_text_begin] = STATE(1237), [sym__comment_with_spaces] = STATE(141), [sym_raw_inline] = STATE(141), [sym_math] = STATE(141), @@ -13297,40 +13353,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(307), }, [97] = { - [sym__inline] = STATE(910), - [sym__element] = STATE(18), + [sym__inline] = STATE(930), + [sym__element] = STATE(596), [sym_emphasis] = STATE(135), - [sym_emphasis_begin] = STATE(1154), + [sym_emphasis_begin] = STATE(1174), [sym_strong] = STATE(135), - [sym_strong_begin] = STATE(1155), + [sym_strong_begin] = STATE(1175), [sym_superscript] = STATE(135), - [sym_superscript_begin] = STATE(1156), + [sym_superscript_begin] = STATE(1176), [sym_subscript] = STATE(135), - [sym_subscript_begin] = STATE(1157), + [sym_subscript_begin] = STATE(1177), [sym_highlighted] = STATE(135), - [sym_highlighted_begin] = STATE(1158), + [sym_highlighted_begin] = STATE(1178), [sym_insert] = STATE(135), - [sym_insert_begin] = STATE(1159), + [sym_insert_begin] = STATE(1179), [sym_delete] = STATE(135), - [sym_delete_begin] = STATE(1160), + [sym_delete_begin] = STATE(1180), [sym_hard_line_break] = STATE(134), [sym__smart_punctuation] = STATE(134), [sym_autolink] = STATE(134), [sym_footnote_reference] = STATE(135), - [sym_footnote_marker_begin] = STATE(1161), + [sym_footnote_marker_begin] = STATE(1181), [sym__image] = STATE(135), [sym_full_reference_image] = STATE(135), [sym_collapsed_reference_image] = STATE(135), [sym_inline_image] = STATE(135), - [sym_image_description] = STATE(677), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(692), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(135), [sym_full_reference_link] = STATE(135), [sym_collapsed_reference_link] = STATE(135), [sym_inline_link] = STATE(135), - [sym_link_text] = STATE(680), - [sym_span] = STATE(18), - [sym__bracketed_text_begin] = STATE(1218), + [sym_link_text] = STATE(704), + [sym_span] = STATE(596), + [sym__bracketed_text_begin] = STATE(1238), [sym__comment_with_spaces] = STATE(134), [sym_raw_inline] = STATE(134), [sym_math] = STATE(134), @@ -13379,40 +13435,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(357), }, [98] = { - [sym__inline] = STATE(911), - [sym__element] = STATE(20), + [sym__inline] = STATE(931), + [sym__element] = STATE(525), [sym_emphasis] = STATE(136), - [sym_emphasis_begin] = STATE(1164), + [sym_emphasis_begin] = STATE(1184), [sym_strong] = STATE(136), - [sym_strong_begin] = STATE(1165), + [sym_strong_begin] = STATE(1185), [sym_superscript] = STATE(136), - [sym_superscript_begin] = STATE(1166), + [sym_superscript_begin] = STATE(1186), [sym_subscript] = STATE(136), - [sym_subscript_begin] = STATE(1167), + [sym_subscript_begin] = STATE(1187), [sym_highlighted] = STATE(136), - [sym_highlighted_begin] = STATE(1168), + [sym_highlighted_begin] = STATE(1188), [sym_insert] = STATE(136), - [sym_insert_begin] = STATE(1169), + [sym_insert_begin] = STATE(1189), [sym_delete] = STATE(136), - [sym_delete_begin] = STATE(1170), + [sym_delete_begin] = STATE(1190), [sym_hard_line_break] = STATE(138), [sym__smart_punctuation] = STATE(138), [sym_autolink] = STATE(138), [sym_footnote_reference] = STATE(136), - [sym_footnote_marker_begin] = STATE(1171), + [sym_footnote_marker_begin] = STATE(1191), [sym__image] = STATE(136), [sym_full_reference_image] = STATE(136), [sym_collapsed_reference_image] = STATE(136), [sym_inline_image] = STATE(136), - [sym_image_description] = STATE(685), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(676), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(136), [sym_full_reference_link] = STATE(136), [sym_collapsed_reference_link] = STATE(136), [sym_inline_link] = STATE(136), - [sym_link_text] = STATE(686), - [sym_span] = STATE(20), - [sym__bracketed_text_begin] = STATE(1219), + [sym_link_text] = STATE(677), + [sym_span] = STATE(525), + [sym__bracketed_text_begin] = STATE(1239), [sym__comment_with_spaces] = STATE(138), [sym_raw_inline] = STATE(138), [sym_math] = STATE(138), @@ -13461,40 +13517,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(407), }, [99] = { - [sym__inline] = STATE(912), - [sym__element] = STATE(22), + [sym__inline] = STATE(932), + [sym__element] = STATE(585), [sym_emphasis] = STATE(140), - [sym_emphasis_begin] = STATE(1174), + [sym_emphasis_begin] = STATE(1194), [sym_strong] = STATE(140), - [sym_strong_begin] = STATE(1175), + [sym_strong_begin] = STATE(1195), [sym_superscript] = STATE(140), - [sym_superscript_begin] = STATE(1176), + [sym_superscript_begin] = STATE(1196), [sym_subscript] = STATE(140), - [sym_subscript_begin] = STATE(1177), + [sym_subscript_begin] = STATE(1197), [sym_highlighted] = STATE(140), - [sym_highlighted_begin] = STATE(1178), + [sym_highlighted_begin] = STATE(1198), [sym_insert] = STATE(140), - [sym_insert_begin] = STATE(1179), + [sym_insert_begin] = STATE(1199), [sym_delete] = STATE(140), - [sym_delete_begin] = STATE(1180), + [sym_delete_begin] = STATE(1200), [sym_hard_line_break] = STATE(139), [sym__smart_punctuation] = STATE(139), [sym_autolink] = STATE(139), [sym_footnote_reference] = STATE(140), - [sym_footnote_marker_begin] = STATE(1181), + [sym_footnote_marker_begin] = STATE(1201), [sym__image] = STATE(140), [sym_full_reference_image] = STATE(140), [sym_collapsed_reference_image] = STATE(140), [sym_inline_image] = STATE(140), - [sym_image_description] = STATE(655), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(681), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(140), [sym_full_reference_link] = STATE(140), [sym_collapsed_reference_link] = STATE(140), [sym_inline_link] = STATE(140), - [sym_link_text] = STATE(656), - [sym_span] = STATE(22), - [sym__bracketed_text_begin] = STATE(1220), + [sym_link_text] = STATE(682), + [sym_span] = STATE(585), + [sym__bracketed_text_begin] = STATE(1240), [sym__comment_with_spaces] = STATE(139), [sym_raw_inline] = STATE(139), [sym_math] = STATE(139), @@ -13543,40 +13599,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(457), }, [100] = { - [sym__inline] = STATE(914), - [sym__element] = STATE(24), + [sym__inline] = STATE(934), + [sym__element] = STATE(625), [sym_emphasis] = STATE(131), - [sym_emphasis_begin] = STATE(1184), + [sym_emphasis_begin] = STATE(1204), [sym_strong] = STATE(131), - [sym_strong_begin] = STATE(1185), + [sym_strong_begin] = STATE(1205), [sym_superscript] = STATE(131), - [sym_superscript_begin] = STATE(1186), + [sym_superscript_begin] = STATE(1206), [sym_subscript] = STATE(131), - [sym_subscript_begin] = STATE(1187), + [sym_subscript_begin] = STATE(1207), [sym_highlighted] = STATE(131), - [sym_highlighted_begin] = STATE(1188), + [sym_highlighted_begin] = STATE(1208), [sym_insert] = STATE(131), - [sym_insert_begin] = STATE(1189), + [sym_insert_begin] = STATE(1209), [sym_delete] = STATE(131), - [sym_delete_begin] = STATE(1190), + [sym_delete_begin] = STATE(1210), [sym_hard_line_break] = STATE(145), [sym__smart_punctuation] = STATE(145), [sym_autolink] = STATE(145), [sym_footnote_reference] = STATE(131), - [sym_footnote_marker_begin] = STATE(1191), + [sym_footnote_marker_begin] = STATE(1211), [sym__image] = STATE(131), [sym_full_reference_image] = STATE(131), [sym_collapsed_reference_image] = STATE(131), [sym_inline_image] = STATE(131), - [sym_image_description] = STATE(662), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(685), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(131), [sym_full_reference_link] = STATE(131), [sym_collapsed_reference_link] = STATE(131), [sym_inline_link] = STATE(131), - [sym_link_text] = STATE(663), - [sym_span] = STATE(24), - [sym__bracketed_text_begin] = STATE(1221), + [sym_link_text] = STATE(686), + [sym_span] = STATE(625), + [sym__bracketed_text_begin] = STATE(1241), [sym__comment_with_spaces] = STATE(145), [sym_raw_inline] = STATE(145), [sym_math] = STATE(145), @@ -13625,40 +13681,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(507), }, [101] = { - [sym__inline_without_trailing_space] = STATE(940), - [sym__element] = STATE(543), + [sym__inline_without_trailing_space] = STATE(960), + [sym__element] = STATE(572), [sym_emphasis] = STATE(150), - [sym_emphasis_begin] = STATE(1114), + [sym_emphasis_begin] = STATE(1134), [sym_strong] = STATE(150), - [sym_strong_begin] = STATE(1115), + [sym_strong_begin] = STATE(1135), [sym_superscript] = STATE(150), - [sym_superscript_begin] = STATE(1116), + [sym_superscript_begin] = STATE(1136), [sym_subscript] = STATE(150), - [sym_subscript_begin] = STATE(1117), + [sym_subscript_begin] = STATE(1137), [sym_highlighted] = STATE(150), - [sym_highlighted_begin] = STATE(1118), + [sym_highlighted_begin] = STATE(1138), [sym_insert] = STATE(150), - [sym_insert_begin] = STATE(1119), + [sym_insert_begin] = STATE(1139), [sym_delete] = STATE(150), - [sym_delete_begin] = STATE(1120), + [sym_delete_begin] = STATE(1140), [sym_hard_line_break] = STATE(133), [sym__smart_punctuation] = STATE(133), [sym_autolink] = STATE(133), [sym_footnote_reference] = STATE(150), - [sym_footnote_marker_begin] = STATE(1121), + [sym_footnote_marker_begin] = STATE(1141), [sym__image] = STATE(150), [sym_full_reference_image] = STATE(150), [sym_collapsed_reference_image] = STATE(150), [sym_inline_image] = STATE(150), - [sym_image_description] = STATE(678), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(705), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(150), [sym_full_reference_link] = STATE(150), [sym_collapsed_reference_link] = STATE(150), [sym_inline_link] = STATE(150), - [sym_link_text] = STATE(679), - [sym_span] = STATE(543), - [sym__bracketed_text_begin] = STATE(1214), + [sym_link_text] = STATE(706), + [sym_span] = STATE(572), + [sym__bracketed_text_begin] = STATE(1234), [sym__comment_with_spaces] = STATE(133), [sym_raw_inline] = STATE(133), [sym_math] = STATE(133), @@ -13707,40 +13763,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(207), }, [102] = { - [sym__inline_without_trailing_space] = STATE(941), - [sym__element] = STATE(570), + [sym__inline_without_trailing_space] = STATE(961), + [sym__element] = STATE(580), [sym_emphasis] = STATE(142), - [sym_emphasis_begin] = STATE(1124), + [sym_emphasis_begin] = STATE(1144), [sym_strong] = STATE(142), - [sym_strong_begin] = STATE(1125), + [sym_strong_begin] = STATE(1145), [sym_superscript] = STATE(142), - [sym_superscript_begin] = STATE(1126), + [sym_superscript_begin] = STATE(1146), [sym_subscript] = STATE(142), - [sym_subscript_begin] = STATE(1127), + [sym_subscript_begin] = STATE(1147), [sym_highlighted] = STATE(142), - [sym_highlighted_begin] = STATE(1128), + [sym_highlighted_begin] = STATE(1148), [sym_insert] = STATE(142), - [sym_insert_begin] = STATE(1129), + [sym_insert_begin] = STATE(1149), [sym_delete] = STATE(142), - [sym_delete_begin] = STATE(1130), + [sym_delete_begin] = STATE(1150), [sym_hard_line_break] = STATE(137), [sym__smart_punctuation] = STATE(137), [sym_autolink] = STATE(137), [sym_footnote_reference] = STATE(142), - [sym_footnote_marker_begin] = STATE(1131), + [sym_footnote_marker_begin] = STATE(1151), [sym__image] = STATE(142), [sym_full_reference_image] = STATE(142), [sym_collapsed_reference_image] = STATE(142), [sym_inline_image] = STATE(142), - [sym_image_description] = STATE(687), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(702), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(142), [sym_full_reference_link] = STATE(142), [sym_collapsed_reference_link] = STATE(142), [sym_inline_link] = STATE(142), - [sym_link_text] = STATE(654), - [sym_span] = STATE(570), - [sym__bracketed_text_begin] = STATE(1215), + [sym_link_text] = STATE(698), + [sym_span] = STATE(580), + [sym__bracketed_text_begin] = STATE(1235), [sym__comment_with_spaces] = STATE(137), [sym_raw_inline] = STATE(137), [sym_math] = STATE(137), @@ -13789,40 +13845,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(257), }, [103] = { - [sym__inline] = STATE(942), - [sym__element] = STATE(15), + [sym__inline] = STATE(962), + [sym__element] = STATE(613), [sym_emphasis] = STATE(132), - [sym_emphasis_begin] = STATE(1134), + [sym_emphasis_begin] = STATE(1154), [sym_strong] = STATE(132), - [sym_strong_begin] = STATE(1135), + [sym_strong_begin] = STATE(1155), [sym_superscript] = STATE(132), - [sym_superscript_begin] = STATE(1136), + [sym_superscript_begin] = STATE(1156), [sym_subscript] = STATE(132), - [sym_subscript_begin] = STATE(1137), + [sym_subscript_begin] = STATE(1157), [sym_highlighted] = STATE(132), - [sym_highlighted_begin] = STATE(1138), + [sym_highlighted_begin] = STATE(1158), [sym_insert] = STATE(132), - [sym_insert_begin] = STATE(1139), + [sym_insert_begin] = STATE(1159), [sym_delete] = STATE(132), - [sym_delete_begin] = STATE(1140), + [sym_delete_begin] = STATE(1160), [sym_hard_line_break] = STATE(147), [sym__smart_punctuation] = STATE(147), [sym_autolink] = STATE(147), [sym_footnote_reference] = STATE(132), - [sym_footnote_marker_begin] = STATE(1141), + [sym_footnote_marker_begin] = STATE(1161), [sym__image] = STATE(132), [sym_full_reference_image] = STATE(132), [sym_collapsed_reference_image] = STATE(132), [sym_inline_image] = STATE(132), - [sym_image_description] = STATE(682), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(687), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(132), [sym_full_reference_link] = STATE(132), [sym_collapsed_reference_link] = STATE(132), [sym_inline_link] = STATE(132), - [sym_link_text] = STATE(689), - [sym_span] = STATE(15), - [sym__bracketed_text_begin] = STATE(1216), + [sym_link_text] = STATE(693), + [sym_span] = STATE(613), + [sym__bracketed_text_begin] = STATE(1236), [sym__comment_with_spaces] = STATE(147), [sym_raw_inline] = STATE(147), [sym_math] = STATE(147), @@ -13871,40 +13927,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(153), }, [104] = { - [sym__inline] = STATE(943), - [sym__element] = STATE(16), + [sym__inline] = STATE(963), + [sym__element] = STATE(565), [sym_emphasis] = STATE(143), - [sym_emphasis_begin] = STATE(1144), + [sym_emphasis_begin] = STATE(1164), [sym_strong] = STATE(143), - [sym_strong_begin] = STATE(1145), + [sym_strong_begin] = STATE(1165), [sym_superscript] = STATE(143), - [sym_superscript_begin] = STATE(1146), + [sym_superscript_begin] = STATE(1166), [sym_subscript] = STATE(143), - [sym_subscript_begin] = STATE(1147), + [sym_subscript_begin] = STATE(1167), [sym_highlighted] = STATE(143), - [sym_highlighted_begin] = STATE(1148), + [sym_highlighted_begin] = STATE(1168), [sym_insert] = STATE(143), - [sym_insert_begin] = STATE(1149), + [sym_insert_begin] = STATE(1169), [sym_delete] = STATE(143), - [sym_delete_begin] = STATE(1150), + [sym_delete_begin] = STATE(1170), [sym_hard_line_break] = STATE(141), [sym__smart_punctuation] = STATE(141), [sym_autolink] = STATE(141), [sym_footnote_reference] = STATE(143), - [sym_footnote_marker_begin] = STATE(1151), + [sym_footnote_marker_begin] = STATE(1171), [sym__image] = STATE(143), [sym_full_reference_image] = STATE(143), [sym_collapsed_reference_image] = STATE(143), [sym_inline_image] = STATE(143), - [sym_image_description] = STATE(660), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(678), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(143), [sym_full_reference_link] = STATE(143), [sym_collapsed_reference_link] = STATE(143), [sym_inline_link] = STATE(143), - [sym_link_text] = STATE(661), - [sym_span] = STATE(16), - [sym__bracketed_text_begin] = STATE(1217), + [sym_link_text] = STATE(683), + [sym_span] = STATE(565), + [sym__bracketed_text_begin] = STATE(1237), [sym__comment_with_spaces] = STATE(141), [sym_raw_inline] = STATE(141), [sym_math] = STATE(141), @@ -13953,40 +14009,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(307), }, [105] = { - [sym__inline] = STATE(944), - [sym__element] = STATE(18), + [sym__inline] = STATE(964), + [sym__element] = STATE(596), [sym_emphasis] = STATE(135), - [sym_emphasis_begin] = STATE(1154), + [sym_emphasis_begin] = STATE(1174), [sym_strong] = STATE(135), - [sym_strong_begin] = STATE(1155), + [sym_strong_begin] = STATE(1175), [sym_superscript] = STATE(135), - [sym_superscript_begin] = STATE(1156), + [sym_superscript_begin] = STATE(1176), [sym_subscript] = STATE(135), - [sym_subscript_begin] = STATE(1157), + [sym_subscript_begin] = STATE(1177), [sym_highlighted] = STATE(135), - [sym_highlighted_begin] = STATE(1158), + [sym_highlighted_begin] = STATE(1178), [sym_insert] = STATE(135), - [sym_insert_begin] = STATE(1159), + [sym_insert_begin] = STATE(1179), [sym_delete] = STATE(135), - [sym_delete_begin] = STATE(1160), + [sym_delete_begin] = STATE(1180), [sym_hard_line_break] = STATE(134), [sym__smart_punctuation] = STATE(134), [sym_autolink] = STATE(134), [sym_footnote_reference] = STATE(135), - [sym_footnote_marker_begin] = STATE(1161), + [sym_footnote_marker_begin] = STATE(1181), [sym__image] = STATE(135), [sym_full_reference_image] = STATE(135), [sym_collapsed_reference_image] = STATE(135), [sym_inline_image] = STATE(135), - [sym_image_description] = STATE(677), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(692), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(135), [sym_full_reference_link] = STATE(135), [sym_collapsed_reference_link] = STATE(135), [sym_inline_link] = STATE(135), - [sym_link_text] = STATE(680), - [sym_span] = STATE(18), - [sym__bracketed_text_begin] = STATE(1218), + [sym_link_text] = STATE(704), + [sym_span] = STATE(596), + [sym__bracketed_text_begin] = STATE(1238), [sym__comment_with_spaces] = STATE(134), [sym_raw_inline] = STATE(134), [sym_math] = STATE(134), @@ -14035,40 +14091,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(357), }, [106] = { - [sym__inline] = STATE(945), - [sym__element] = STATE(20), + [sym__inline] = STATE(965), + [sym__element] = STATE(525), [sym_emphasis] = STATE(136), - [sym_emphasis_begin] = STATE(1164), + [sym_emphasis_begin] = STATE(1184), [sym_strong] = STATE(136), - [sym_strong_begin] = STATE(1165), + [sym_strong_begin] = STATE(1185), [sym_superscript] = STATE(136), - [sym_superscript_begin] = STATE(1166), + [sym_superscript_begin] = STATE(1186), [sym_subscript] = STATE(136), - [sym_subscript_begin] = STATE(1167), + [sym_subscript_begin] = STATE(1187), [sym_highlighted] = STATE(136), - [sym_highlighted_begin] = STATE(1168), + [sym_highlighted_begin] = STATE(1188), [sym_insert] = STATE(136), - [sym_insert_begin] = STATE(1169), + [sym_insert_begin] = STATE(1189), [sym_delete] = STATE(136), - [sym_delete_begin] = STATE(1170), + [sym_delete_begin] = STATE(1190), [sym_hard_line_break] = STATE(138), [sym__smart_punctuation] = STATE(138), [sym_autolink] = STATE(138), [sym_footnote_reference] = STATE(136), - [sym_footnote_marker_begin] = STATE(1171), + [sym_footnote_marker_begin] = STATE(1191), [sym__image] = STATE(136), [sym_full_reference_image] = STATE(136), [sym_collapsed_reference_image] = STATE(136), [sym_inline_image] = STATE(136), - [sym_image_description] = STATE(685), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(676), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(136), [sym_full_reference_link] = STATE(136), [sym_collapsed_reference_link] = STATE(136), [sym_inline_link] = STATE(136), - [sym_link_text] = STATE(686), - [sym_span] = STATE(20), - [sym__bracketed_text_begin] = STATE(1219), + [sym_link_text] = STATE(677), + [sym_span] = STATE(525), + [sym__bracketed_text_begin] = STATE(1239), [sym__comment_with_spaces] = STATE(138), [sym_raw_inline] = STATE(138), [sym_math] = STATE(138), @@ -14117,40 +14173,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(407), }, [107] = { - [sym__inline] = STATE(946), - [sym__element] = STATE(22), + [sym__inline] = STATE(966), + [sym__element] = STATE(585), [sym_emphasis] = STATE(140), - [sym_emphasis_begin] = STATE(1174), + [sym_emphasis_begin] = STATE(1194), [sym_strong] = STATE(140), - [sym_strong_begin] = STATE(1175), + [sym_strong_begin] = STATE(1195), [sym_superscript] = STATE(140), - [sym_superscript_begin] = STATE(1176), + [sym_superscript_begin] = STATE(1196), [sym_subscript] = STATE(140), - [sym_subscript_begin] = STATE(1177), + [sym_subscript_begin] = STATE(1197), [sym_highlighted] = STATE(140), - [sym_highlighted_begin] = STATE(1178), + [sym_highlighted_begin] = STATE(1198), [sym_insert] = STATE(140), - [sym_insert_begin] = STATE(1179), + [sym_insert_begin] = STATE(1199), [sym_delete] = STATE(140), - [sym_delete_begin] = STATE(1180), + [sym_delete_begin] = STATE(1200), [sym_hard_line_break] = STATE(139), [sym__smart_punctuation] = STATE(139), [sym_autolink] = STATE(139), [sym_footnote_reference] = STATE(140), - [sym_footnote_marker_begin] = STATE(1181), + [sym_footnote_marker_begin] = STATE(1201), [sym__image] = STATE(140), [sym_full_reference_image] = STATE(140), [sym_collapsed_reference_image] = STATE(140), [sym_inline_image] = STATE(140), - [sym_image_description] = STATE(655), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(681), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(140), [sym_full_reference_link] = STATE(140), [sym_collapsed_reference_link] = STATE(140), [sym_inline_link] = STATE(140), - [sym_link_text] = STATE(656), - [sym_span] = STATE(22), - [sym__bracketed_text_begin] = STATE(1220), + [sym_link_text] = STATE(682), + [sym_span] = STATE(585), + [sym__bracketed_text_begin] = STATE(1240), [sym__comment_with_spaces] = STATE(139), [sym_raw_inline] = STATE(139), [sym_math] = STATE(139), @@ -14199,40 +14255,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(457), }, [108] = { - [sym__inline] = STATE(948), - [sym__element] = STATE(24), + [sym__inline] = STATE(968), + [sym__element] = STATE(625), [sym_emphasis] = STATE(131), - [sym_emphasis_begin] = STATE(1184), + [sym_emphasis_begin] = STATE(1204), [sym_strong] = STATE(131), - [sym_strong_begin] = STATE(1185), + [sym_strong_begin] = STATE(1205), [sym_superscript] = STATE(131), - [sym_superscript_begin] = STATE(1186), + [sym_superscript_begin] = STATE(1206), [sym_subscript] = STATE(131), - [sym_subscript_begin] = STATE(1187), + [sym_subscript_begin] = STATE(1207), [sym_highlighted] = STATE(131), - [sym_highlighted_begin] = STATE(1188), + [sym_highlighted_begin] = STATE(1208), [sym_insert] = STATE(131), - [sym_insert_begin] = STATE(1189), + [sym_insert_begin] = STATE(1209), [sym_delete] = STATE(131), - [sym_delete_begin] = STATE(1190), + [sym_delete_begin] = STATE(1210), [sym_hard_line_break] = STATE(145), [sym__smart_punctuation] = STATE(145), [sym_autolink] = STATE(145), [sym_footnote_reference] = STATE(131), - [sym_footnote_marker_begin] = STATE(1191), + [sym_footnote_marker_begin] = STATE(1211), [sym__image] = STATE(131), [sym_full_reference_image] = STATE(131), [sym_collapsed_reference_image] = STATE(131), [sym_inline_image] = STATE(131), - [sym_image_description] = STATE(662), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(685), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(131), [sym_full_reference_link] = STATE(131), [sym_collapsed_reference_link] = STATE(131), [sym_inline_link] = STATE(131), - [sym_link_text] = STATE(663), - [sym_span] = STATE(24), - [sym__bracketed_text_begin] = STATE(1221), + [sym_link_text] = STATE(686), + [sym_span] = STATE(625), + [sym__bracketed_text_begin] = STATE(1241), [sym__comment_with_spaces] = STATE(145), [sym_raw_inline] = STATE(145), [sym_math] = STATE(145), @@ -14281,40 +14337,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(507), }, [109] = { - [sym__inline] = STATE(968), - [sym__element] = STATE(26), + [sym__inline] = STATE(988), + [sym__element] = STATE(531), [sym_emphasis] = STATE(149), - [sym_emphasis_begin] = STATE(1194), + [sym_emphasis_begin] = STATE(1214), [sym_strong] = STATE(149), - [sym_strong_begin] = STATE(1195), + [sym_strong_begin] = STATE(1215), [sym_superscript] = STATE(149), - [sym_superscript_begin] = STATE(1196), + [sym_superscript_begin] = STATE(1216), [sym_subscript] = STATE(149), - [sym_subscript_begin] = STATE(1197), + [sym_subscript_begin] = STATE(1217), [sym_highlighted] = STATE(149), - [sym_highlighted_begin] = STATE(1198), + [sym_highlighted_begin] = STATE(1218), [sym_insert] = STATE(149), - [sym_insert_begin] = STATE(1199), + [sym_insert_begin] = STATE(1219), [sym_delete] = STATE(149), - [sym_delete_begin] = STATE(1200), + [sym_delete_begin] = STATE(1220), [sym_hard_line_break] = STATE(148), [sym__smart_punctuation] = STATE(148), [sym_autolink] = STATE(148), [sym_footnote_reference] = STATE(149), - [sym_footnote_marker_begin] = STATE(1201), + [sym_footnote_marker_begin] = STATE(1221), [sym__image] = STATE(149), [sym_full_reference_image] = STATE(149), [sym_collapsed_reference_image] = STATE(149), [sym_inline_image] = STATE(149), - [sym_image_description] = STATE(667), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(690), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(149), [sym_full_reference_link] = STATE(149), [sym_collapsed_reference_link] = STATE(149), [sym_inline_link] = STATE(149), - [sym_link_text] = STATE(668), - [sym_span] = STATE(26), - [sym__bracketed_text_begin] = STATE(1222), + [sym_link_text] = STATE(691), + [sym_span] = STATE(531), + [sym__bracketed_text_begin] = STATE(1242), [sym__comment_with_spaces] = STATE(148), [sym_raw_inline] = STATE(148), [sym_math] = STATE(148), @@ -14363,40 +14419,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(101), }, [110] = { - [sym__inline] = STATE(984), - [sym__element] = STATE(26), + [sym__inline] = STATE(1004), + [sym__element] = STATE(531), [sym_emphasis] = STATE(149), - [sym_emphasis_begin] = STATE(1194), + [sym_emphasis_begin] = STATE(1214), [sym_strong] = STATE(149), - [sym_strong_begin] = STATE(1195), + [sym_strong_begin] = STATE(1215), [sym_superscript] = STATE(149), - [sym_superscript_begin] = STATE(1196), + [sym_superscript_begin] = STATE(1216), [sym_subscript] = STATE(149), - [sym_subscript_begin] = STATE(1197), + [sym_subscript_begin] = STATE(1217), [sym_highlighted] = STATE(149), - [sym_highlighted_begin] = STATE(1198), + [sym_highlighted_begin] = STATE(1218), [sym_insert] = STATE(149), - [sym_insert_begin] = STATE(1199), + [sym_insert_begin] = STATE(1219), [sym_delete] = STATE(149), - [sym_delete_begin] = STATE(1200), + [sym_delete_begin] = STATE(1220), [sym_hard_line_break] = STATE(148), [sym__smart_punctuation] = STATE(148), [sym_autolink] = STATE(148), [sym_footnote_reference] = STATE(149), - [sym_footnote_marker_begin] = STATE(1201), + [sym_footnote_marker_begin] = STATE(1221), [sym__image] = STATE(149), [sym_full_reference_image] = STATE(149), [sym_collapsed_reference_image] = STATE(149), [sym_inline_image] = STATE(149), - [sym_image_description] = STATE(667), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(690), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(149), [sym_full_reference_link] = STATE(149), [sym_collapsed_reference_link] = STATE(149), [sym_inline_link] = STATE(149), - [sym_link_text] = STATE(668), - [sym_span] = STATE(26), - [sym__bracketed_text_begin] = STATE(1222), + [sym_link_text] = STATE(691), + [sym_span] = STATE(531), + [sym__bracketed_text_begin] = STATE(1242), [sym__comment_with_spaces] = STATE(148), [sym_raw_inline] = STATE(148), [sym_math] = STATE(148), @@ -14445,40 +14501,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(101), }, [111] = { - [sym__inline] = STATE(1000), - [sym__element] = STATE(26), + [sym__inline] = STATE(1020), + [sym__element] = STATE(531), [sym_emphasis] = STATE(149), - [sym_emphasis_begin] = STATE(1194), + [sym_emphasis_begin] = STATE(1214), [sym_strong] = STATE(149), - [sym_strong_begin] = STATE(1195), + [sym_strong_begin] = STATE(1215), [sym_superscript] = STATE(149), - [sym_superscript_begin] = STATE(1196), + [sym_superscript_begin] = STATE(1216), [sym_subscript] = STATE(149), - [sym_subscript_begin] = STATE(1197), + [sym_subscript_begin] = STATE(1217), [sym_highlighted] = STATE(149), - [sym_highlighted_begin] = STATE(1198), + [sym_highlighted_begin] = STATE(1218), [sym_insert] = STATE(149), - [sym_insert_begin] = STATE(1199), + [sym_insert_begin] = STATE(1219), [sym_delete] = STATE(149), - [sym_delete_begin] = STATE(1200), + [sym_delete_begin] = STATE(1220), [sym_hard_line_break] = STATE(148), [sym__smart_punctuation] = STATE(148), [sym_autolink] = STATE(148), [sym_footnote_reference] = STATE(149), - [sym_footnote_marker_begin] = STATE(1201), + [sym_footnote_marker_begin] = STATE(1221), [sym__image] = STATE(149), [sym_full_reference_image] = STATE(149), [sym_collapsed_reference_image] = STATE(149), [sym_inline_image] = STATE(149), - [sym_image_description] = STATE(667), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(690), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(149), [sym_full_reference_link] = STATE(149), [sym_collapsed_reference_link] = STATE(149), [sym_inline_link] = STATE(149), - [sym_link_text] = STATE(668), - [sym_span] = STATE(26), - [sym__bracketed_text_begin] = STATE(1222), + [sym_link_text] = STATE(691), + [sym_span] = STATE(531), + [sym__bracketed_text_begin] = STATE(1242), [sym__comment_with_spaces] = STATE(148), [sym_raw_inline] = STATE(148), [sym_math] = STATE(148), @@ -14527,40 +14583,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(101), }, [112] = { - [sym__inline] = STATE(1016), - [sym__element] = STATE(26), + [sym__inline] = STATE(1036), + [sym__element] = STATE(531), [sym_emphasis] = STATE(149), - [sym_emphasis_begin] = STATE(1194), + [sym_emphasis_begin] = STATE(1214), [sym_strong] = STATE(149), - [sym_strong_begin] = STATE(1195), + [sym_strong_begin] = STATE(1215), [sym_superscript] = STATE(149), - [sym_superscript_begin] = STATE(1196), + [sym_superscript_begin] = STATE(1216), [sym_subscript] = STATE(149), - [sym_subscript_begin] = STATE(1197), + [sym_subscript_begin] = STATE(1217), [sym_highlighted] = STATE(149), - [sym_highlighted_begin] = STATE(1198), + [sym_highlighted_begin] = STATE(1218), [sym_insert] = STATE(149), - [sym_insert_begin] = STATE(1199), + [sym_insert_begin] = STATE(1219), [sym_delete] = STATE(149), - [sym_delete_begin] = STATE(1200), + [sym_delete_begin] = STATE(1220), [sym_hard_line_break] = STATE(148), [sym__smart_punctuation] = STATE(148), [sym_autolink] = STATE(148), [sym_footnote_reference] = STATE(149), - [sym_footnote_marker_begin] = STATE(1201), + [sym_footnote_marker_begin] = STATE(1221), [sym__image] = STATE(149), [sym_full_reference_image] = STATE(149), [sym_collapsed_reference_image] = STATE(149), [sym_inline_image] = STATE(149), - [sym_image_description] = STATE(667), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(690), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(149), [sym_full_reference_link] = STATE(149), [sym_collapsed_reference_link] = STATE(149), [sym_inline_link] = STATE(149), - [sym_link_text] = STATE(668), - [sym_span] = STATE(26), - [sym__bracketed_text_begin] = STATE(1222), + [sym_link_text] = STATE(691), + [sym_span] = STATE(531), + [sym__bracketed_text_begin] = STATE(1242), [sym__comment_with_spaces] = STATE(148), [sym_raw_inline] = STATE(148), [sym_math] = STATE(148), @@ -14609,40 +14665,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(101), }, [113] = { - [sym__inline] = STATE(1032), - [sym__element] = STATE(26), + [sym__inline] = STATE(1052), + [sym__element] = STATE(531), [sym_emphasis] = STATE(149), - [sym_emphasis_begin] = STATE(1194), + [sym_emphasis_begin] = STATE(1214), [sym_strong] = STATE(149), - [sym_strong_begin] = STATE(1195), + [sym_strong_begin] = STATE(1215), [sym_superscript] = STATE(149), - [sym_superscript_begin] = STATE(1196), + [sym_superscript_begin] = STATE(1216), [sym_subscript] = STATE(149), - [sym_subscript_begin] = STATE(1197), + [sym_subscript_begin] = STATE(1217), [sym_highlighted] = STATE(149), - [sym_highlighted_begin] = STATE(1198), + [sym_highlighted_begin] = STATE(1218), [sym_insert] = STATE(149), - [sym_insert_begin] = STATE(1199), + [sym_insert_begin] = STATE(1219), [sym_delete] = STATE(149), - [sym_delete_begin] = STATE(1200), + [sym_delete_begin] = STATE(1220), [sym_hard_line_break] = STATE(148), [sym__smart_punctuation] = STATE(148), [sym_autolink] = STATE(148), [sym_footnote_reference] = STATE(149), - [sym_footnote_marker_begin] = STATE(1201), + [sym_footnote_marker_begin] = STATE(1221), [sym__image] = STATE(149), [sym_full_reference_image] = STATE(149), [sym_collapsed_reference_image] = STATE(149), [sym_inline_image] = STATE(149), - [sym_image_description] = STATE(667), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(690), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(149), [sym_full_reference_link] = STATE(149), [sym_collapsed_reference_link] = STATE(149), [sym_inline_link] = STATE(149), - [sym_link_text] = STATE(668), - [sym_span] = STATE(26), - [sym__bracketed_text_begin] = STATE(1222), + [sym_link_text] = STATE(691), + [sym_span] = STATE(531), + [sym__bracketed_text_begin] = STATE(1242), [sym__comment_with_spaces] = STATE(148), [sym_raw_inline] = STATE(148), [sym_math] = STATE(148), @@ -14691,40 +14747,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(101), }, [114] = { - [sym__inline] = STATE(1048), - [sym__element] = STATE(26), + [sym__inline] = STATE(1068), + [sym__element] = STATE(531), [sym_emphasis] = STATE(149), - [sym_emphasis_begin] = STATE(1194), + [sym_emphasis_begin] = STATE(1214), [sym_strong] = STATE(149), - [sym_strong_begin] = STATE(1195), + [sym_strong_begin] = STATE(1215), [sym_superscript] = STATE(149), - [sym_superscript_begin] = STATE(1196), + [sym_superscript_begin] = STATE(1216), [sym_subscript] = STATE(149), - [sym_subscript_begin] = STATE(1197), + [sym_subscript_begin] = STATE(1217), [sym_highlighted] = STATE(149), - [sym_highlighted_begin] = STATE(1198), + [sym_highlighted_begin] = STATE(1218), [sym_insert] = STATE(149), - [sym_insert_begin] = STATE(1199), + [sym_insert_begin] = STATE(1219), [sym_delete] = STATE(149), - [sym_delete_begin] = STATE(1200), + [sym_delete_begin] = STATE(1220), [sym_hard_line_break] = STATE(148), [sym__smart_punctuation] = STATE(148), [sym_autolink] = STATE(148), [sym_footnote_reference] = STATE(149), - [sym_footnote_marker_begin] = STATE(1201), + [sym_footnote_marker_begin] = STATE(1221), [sym__image] = STATE(149), [sym_full_reference_image] = STATE(149), [sym_collapsed_reference_image] = STATE(149), [sym_inline_image] = STATE(149), - [sym_image_description] = STATE(667), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(690), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(149), [sym_full_reference_link] = STATE(149), [sym_collapsed_reference_link] = STATE(149), [sym_inline_link] = STATE(149), - [sym_link_text] = STATE(668), - [sym_span] = STATE(26), - [sym__bracketed_text_begin] = STATE(1222), + [sym_link_text] = STATE(691), + [sym_span] = STATE(531), + [sym__bracketed_text_begin] = STATE(1242), [sym__comment_with_spaces] = STATE(148), [sym_raw_inline] = STATE(148), [sym_math] = STATE(148), @@ -14773,40 +14829,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(101), }, [115] = { - [sym__inline] = STATE(1064), - [sym__element] = STATE(26), + [sym__inline] = STATE(1084), + [sym__element] = STATE(531), [sym_emphasis] = STATE(149), - [sym_emphasis_begin] = STATE(1194), + [sym_emphasis_begin] = STATE(1214), [sym_strong] = STATE(149), - [sym_strong_begin] = STATE(1195), + [sym_strong_begin] = STATE(1215), [sym_superscript] = STATE(149), - [sym_superscript_begin] = STATE(1196), + [sym_superscript_begin] = STATE(1216), [sym_subscript] = STATE(149), - [sym_subscript_begin] = STATE(1197), + [sym_subscript_begin] = STATE(1217), [sym_highlighted] = STATE(149), - [sym_highlighted_begin] = STATE(1198), + [sym_highlighted_begin] = STATE(1218), [sym_insert] = STATE(149), - [sym_insert_begin] = STATE(1199), + [sym_insert_begin] = STATE(1219), [sym_delete] = STATE(149), - [sym_delete_begin] = STATE(1200), + [sym_delete_begin] = STATE(1220), [sym_hard_line_break] = STATE(148), [sym__smart_punctuation] = STATE(148), [sym_autolink] = STATE(148), [sym_footnote_reference] = STATE(149), - [sym_footnote_marker_begin] = STATE(1201), + [sym_footnote_marker_begin] = STATE(1221), [sym__image] = STATE(149), [sym_full_reference_image] = STATE(149), [sym_collapsed_reference_image] = STATE(149), [sym_inline_image] = STATE(149), - [sym_image_description] = STATE(667), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(690), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(149), [sym_full_reference_link] = STATE(149), [sym_collapsed_reference_link] = STATE(149), [sym_inline_link] = STATE(149), - [sym_link_text] = STATE(668), - [sym_span] = STATE(26), - [sym__bracketed_text_begin] = STATE(1222), + [sym_link_text] = STATE(691), + [sym_span] = STATE(531), + [sym__bracketed_text_begin] = STATE(1242), [sym__comment_with_spaces] = STATE(148), [sym_raw_inline] = STATE(148), [sym_math] = STATE(148), @@ -14855,40 +14911,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(101), }, [116] = { - [sym__inline] = STATE(1080), - [sym__element] = STATE(26), + [sym__inline] = STATE(1100), + [sym__element] = STATE(531), [sym_emphasis] = STATE(149), - [sym_emphasis_begin] = STATE(1194), + [sym_emphasis_begin] = STATE(1214), [sym_strong] = STATE(149), - [sym_strong_begin] = STATE(1195), + [sym_strong_begin] = STATE(1215), [sym_superscript] = STATE(149), - [sym_superscript_begin] = STATE(1196), + [sym_superscript_begin] = STATE(1216), [sym_subscript] = STATE(149), - [sym_subscript_begin] = STATE(1197), + [sym_subscript_begin] = STATE(1217), [sym_highlighted] = STATE(149), - [sym_highlighted_begin] = STATE(1198), + [sym_highlighted_begin] = STATE(1218), [sym_insert] = STATE(149), - [sym_insert_begin] = STATE(1199), + [sym_insert_begin] = STATE(1219), [sym_delete] = STATE(149), - [sym_delete_begin] = STATE(1200), + [sym_delete_begin] = STATE(1220), [sym_hard_line_break] = STATE(148), [sym__smart_punctuation] = STATE(148), [sym_autolink] = STATE(148), [sym_footnote_reference] = STATE(149), - [sym_footnote_marker_begin] = STATE(1201), + [sym_footnote_marker_begin] = STATE(1221), [sym__image] = STATE(149), [sym_full_reference_image] = STATE(149), [sym_collapsed_reference_image] = STATE(149), [sym_inline_image] = STATE(149), - [sym_image_description] = STATE(667), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(690), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(149), [sym_full_reference_link] = STATE(149), [sym_collapsed_reference_link] = STATE(149), [sym_inline_link] = STATE(149), - [sym_link_text] = STATE(668), - [sym_span] = STATE(26), - [sym__bracketed_text_begin] = STATE(1222), + [sym_link_text] = STATE(691), + [sym_span] = STATE(531), + [sym__bracketed_text_begin] = STATE(1242), [sym__comment_with_spaces] = STATE(148), [sym_raw_inline] = STATE(148), [sym_math] = STATE(148), @@ -14937,40 +14993,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(101), }, [117] = { - [sym__inline_without_trailing_space] = STATE(978), - [sym__element] = STATE(570), + [sym__inline_without_trailing_space] = STATE(916), + [sym__element] = STATE(580), [sym_emphasis] = STATE(142), - [sym_emphasis_begin] = STATE(1124), + [sym_emphasis_begin] = STATE(1144), [sym_strong] = STATE(142), - [sym_strong_begin] = STATE(1125), + [sym_strong_begin] = STATE(1145), [sym_superscript] = STATE(142), - [sym_superscript_begin] = STATE(1126), + [sym_superscript_begin] = STATE(1146), [sym_subscript] = STATE(142), - [sym_subscript_begin] = STATE(1127), + [sym_subscript_begin] = STATE(1147), [sym_highlighted] = STATE(142), - [sym_highlighted_begin] = STATE(1128), + [sym_highlighted_begin] = STATE(1148), [sym_insert] = STATE(142), - [sym_insert_begin] = STATE(1129), + [sym_insert_begin] = STATE(1149), [sym_delete] = STATE(142), - [sym_delete_begin] = STATE(1130), + [sym_delete_begin] = STATE(1150), [sym_hard_line_break] = STATE(137), [sym__smart_punctuation] = STATE(137), [sym_autolink] = STATE(137), [sym_footnote_reference] = STATE(142), - [sym_footnote_marker_begin] = STATE(1131), + [sym_footnote_marker_begin] = STATE(1151), [sym__image] = STATE(142), [sym_full_reference_image] = STATE(142), [sym_collapsed_reference_image] = STATE(142), [sym_inline_image] = STATE(142), - [sym_image_description] = STATE(687), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(702), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(142), [sym_full_reference_link] = STATE(142), [sym_collapsed_reference_link] = STATE(142), [sym_inline_link] = STATE(142), - [sym_link_text] = STATE(654), - [sym_span] = STATE(570), - [sym__bracketed_text_begin] = STATE(1215), + [sym_link_text] = STATE(698), + [sym_span] = STATE(580), + [sym__bracketed_text_begin] = STATE(1235), [sym__comment_with_spaces] = STATE(137), [sym_raw_inline] = STATE(137), [sym_math] = STATE(137), @@ -15019,39 +15075,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(257), }, [118] = { - [sym__element] = STATE(559), + [sym__element] = STATE(621), [sym_emphasis] = STATE(142), - [sym_emphasis_begin] = STATE(1124), + [sym_emphasis_begin] = STATE(1144), [sym_strong] = STATE(142), - [sym_strong_begin] = STATE(1125), + [sym_strong_begin] = STATE(1145), [sym_superscript] = STATE(142), - [sym_superscript_begin] = STATE(1126), + [sym_superscript_begin] = STATE(1146), [sym_subscript] = STATE(142), - [sym_subscript_begin] = STATE(1127), + [sym_subscript_begin] = STATE(1147), [sym_highlighted] = STATE(142), - [sym_highlighted_begin] = STATE(1128), + [sym_highlighted_begin] = STATE(1148), [sym_insert] = STATE(142), - [sym_insert_begin] = STATE(1129), + [sym_insert_begin] = STATE(1149), [sym_delete] = STATE(142), - [sym_delete_begin] = STATE(1130), + [sym_delete_begin] = STATE(1150), [sym_hard_line_break] = STATE(137), [sym__smart_punctuation] = STATE(137), [sym_autolink] = STATE(137), [sym_footnote_reference] = STATE(142), - [sym_footnote_marker_begin] = STATE(1131), + [sym_footnote_marker_begin] = STATE(1151), [sym__image] = STATE(142), [sym_full_reference_image] = STATE(142), [sym_collapsed_reference_image] = STATE(142), [sym_inline_image] = STATE(142), - [sym_image_description] = STATE(687), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(702), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(142), [sym_full_reference_link] = STATE(142), [sym_collapsed_reference_link] = STATE(142), [sym_inline_link] = STATE(142), - [sym_link_text] = STATE(654), - [sym_span] = STATE(559), - [sym__bracketed_text_begin] = STATE(1215), + [sym_link_text] = STATE(698), + [sym_span] = STATE(621), + [sym__bracketed_text_begin] = STATE(1235), [sym__comment_with_spaces] = STATE(137), [sym_raw_inline] = STATE(137), [sym_math] = STATE(137), @@ -15100,39 +15156,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(257), }, [119] = { - [sym__element] = STATE(576), + [sym__element] = STATE(598), [sym_emphasis] = STATE(150), - [sym_emphasis_begin] = STATE(1114), + [sym_emphasis_begin] = STATE(1134), [sym_strong] = STATE(150), - [sym_strong_begin] = STATE(1115), + [sym_strong_begin] = STATE(1135), [sym_superscript] = STATE(150), - [sym_superscript_begin] = STATE(1116), + [sym_superscript_begin] = STATE(1136), [sym_subscript] = STATE(150), - [sym_subscript_begin] = STATE(1117), + [sym_subscript_begin] = STATE(1137), [sym_highlighted] = STATE(150), - [sym_highlighted_begin] = STATE(1118), + [sym_highlighted_begin] = STATE(1138), [sym_insert] = STATE(150), - [sym_insert_begin] = STATE(1119), + [sym_insert_begin] = STATE(1139), [sym_delete] = STATE(150), - [sym_delete_begin] = STATE(1120), + [sym_delete_begin] = STATE(1140), [sym_hard_line_break] = STATE(133), [sym__smart_punctuation] = STATE(133), [sym_autolink] = STATE(133), [sym_footnote_reference] = STATE(150), - [sym_footnote_marker_begin] = STATE(1121), + [sym_footnote_marker_begin] = STATE(1141), [sym__image] = STATE(150), [sym_full_reference_image] = STATE(150), [sym_collapsed_reference_image] = STATE(150), [sym_inline_image] = STATE(150), - [sym_image_description] = STATE(678), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(705), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(150), [sym_full_reference_link] = STATE(150), [sym_collapsed_reference_link] = STATE(150), [sym_inline_link] = STATE(150), - [sym_link_text] = STATE(679), - [sym_span] = STATE(576), - [sym__bracketed_text_begin] = STATE(1214), + [sym_link_text] = STATE(706), + [sym_span] = STATE(598), + [sym__bracketed_text_begin] = STATE(1234), [sym__comment_with_spaces] = STATE(133), [sym_raw_inline] = STATE(133), [sym_math] = STATE(133), @@ -15181,39 +15237,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__verbatim_begin] = ACTIONS(207), }, [120] = { - [sym__element] = STATE(120), + [sym__element] = STATE(636), [sym_emphasis] = STATE(163), - [sym_emphasis_begin] = STATE(1204), + [sym_emphasis_begin] = STATE(1224), [sym_strong] = STATE(163), - [sym_strong_begin] = STATE(1205), + [sym_strong_begin] = STATE(1225), [sym_superscript] = STATE(163), - [sym_superscript_begin] = STATE(1206), + [sym_superscript_begin] = STATE(1226), [sym_subscript] = STATE(163), - [sym_subscript_begin] = STATE(1207), + [sym_subscript_begin] = STATE(1227), [sym_highlighted] = STATE(163), - [sym_highlighted_begin] = STATE(1208), + [sym_highlighted_begin] = STATE(1228), [sym_insert] = STATE(163), - [sym_insert_begin] = STATE(1209), + [sym_insert_begin] = STATE(1229), [sym_delete] = STATE(163), - [sym_delete_begin] = STATE(1210), + [sym_delete_begin] = STATE(1230), [sym_hard_line_break] = STATE(162), [sym__smart_punctuation] = STATE(162), [sym_autolink] = STATE(162), [sym_footnote_reference] = STATE(163), - [sym_footnote_marker_begin] = STATE(1211), + [sym_footnote_marker_begin] = STATE(1231), [sym__image] = STATE(163), [sym_full_reference_image] = STATE(163), [sym_collapsed_reference_image] = STATE(163), [sym_inline_image] = STATE(163), - [sym_image_description] = STATE(671), - [sym__image_description_begin] = STATE(958), + [sym_image_description] = STATE(696), + [sym__image_description_begin] = STATE(1013), [sym__link] = STATE(163), [sym_full_reference_link] = STATE(163), [sym_collapsed_reference_link] = STATE(163), [sym_inline_link] = STATE(163), - [sym_link_text] = STATE(672), - [sym_span] = STATE(120), - [sym__bracketed_text_begin] = STATE(1223), + [sym_link_text] = STATE(697), + [sym_span] = STATE(636), + [sym__bracketed_text_begin] = STATE(1243), [sym__comment_with_spaces] = STATE(162), [sym_raw_inline] = STATE(162), [sym_math] = STATE(162), @@ -15269,11 +15325,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(174), 1, aux_sym__text, - STATE(581), 1, + STATE(601), 1, sym_inline_attribute, - STATE(582), 1, + STATE(602), 1, sym__curly_bracket_span_fallback, - STATE(987), 1, + STATE(1007), 1, sym__curly_bracket_span_begin, ACTIONS(1204), 5, anon_sym_BSLASH, @@ -15318,11 +15374,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(223), 1, aux_sym__text, - STATE(586), 1, + STATE(561), 1, sym_inline_attribute, - STATE(593), 1, + STATE(578), 1, sym__curly_bracket_span_fallback, - STATE(954), 1, + STATE(974), 1, sym__curly_bracket_span_begin, ACTIONS(1204), 5, anon_sym_BSLASH, @@ -15367,11 +15423,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(218), 1, aux_sym__text, - STATE(544), 1, - sym__curly_bracket_span_fallback, - STATE(599), 1, + STATE(594), 1, sym_inline_attribute, - STATE(1019), 1, + STATE(603), 1, + sym__curly_bracket_span_fallback, + STATE(1039), 1, sym__curly_bracket_span_begin, ACTIONS(1204), 5, anon_sym_BSLASH, @@ -15416,11 +15472,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(205), 1, aux_sym__text, - STATE(545), 1, + STATE(542), 1, sym__curly_bracket_span_fallback, - STATE(583), 1, + STATE(624), 1, sym_inline_attribute, - STATE(1107), 1, + STATE(1059), 1, sym__curly_bracket_span_begin, ACTIONS(1204), 5, anon_sym_BSLASH, @@ -15465,11 +15521,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(203), 1, aux_sym__text, - STATE(550), 1, - sym__curly_bracket_span_fallback, - STATE(598), 1, + STATE(606), 1, sym_inline_attribute, - STATE(1003), 1, + STATE(619), 1, + sym__curly_bracket_span_fallback, + STATE(1023), 1, sym__curly_bracket_span_begin, ACTIONS(1204), 5, anon_sym_BSLASH, @@ -15514,11 +15570,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(231), 1, aux_sym__text, - STATE(526), 1, - sym__curly_bracket_span_fallback, - STATE(608), 1, + STATE(543), 1, sym_inline_attribute, - STATE(1035), 1, + STATE(560), 1, + sym__curly_bracket_span_fallback, + STATE(1055), 1, sym__curly_bracket_span_begin, ACTIONS(1204), 5, anon_sym_BSLASH, @@ -15563,11 +15619,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(178), 1, aux_sym__text, - STATE(566), 1, + STATE(562), 1, sym_inline_attribute, - STATE(568), 1, + STATE(563), 1, sym__curly_bracket_span_fallback, - STATE(1051), 1, + STATE(1071), 1, sym__curly_bracket_span_begin, ACTIONS(1204), 5, anon_sym_BSLASH, @@ -15612,11 +15668,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(214), 1, aux_sym__text, - STATE(522), 1, + STATE(570), 1, sym_inline_attribute, - STATE(549), 1, + STATE(571), 1, sym__curly_bracket_span_fallback, - STATE(971), 1, + STATE(991), 1, sym__curly_bracket_span_begin, ACTIONS(1204), 5, anon_sym_BSLASH, @@ -15661,11 +15717,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(190), 1, aux_sym__text, - STATE(573), 1, - sym_inline_attribute, - STATE(575), 1, + STATE(569), 1, sym__curly_bracket_span_fallback, - STATE(1067), 1, + STATE(628), 1, + sym_inline_attribute, + STATE(1087), 1, sym__curly_bracket_span_begin, ACTIONS(1204), 5, anon_sym_BSLASH, @@ -15710,11 +15766,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(201), 1, aux_sym__text, - STATE(561), 1, + STATE(595), 1, sym_inline_attribute, - STATE(562), 1, + STATE(597), 1, sym__curly_bracket_span_fallback, - STATE(1083), 1, + STATE(1103), 1, sym__curly_bracket_span_begin, ACTIONS(1204), 5, anon_sym_BSLASH, @@ -15754,14 +15810,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [560] = 5, + [560] = 6, ACTIONS(1222), 1, anon_sym_LBRACE, - STATE(1067), 1, - sym__curly_bracket_span_begin, - STATE(573), 2, - sym_inline_attribute, + STATE(524), 1, sym__curly_bracket_span_fallback, + STATE(628), 1, + sym_inline_attribute, + STATE(1087), 1, + sym__curly_bracket_span_begin, ACTIONS(1228), 5, anon_sym_BSLASH, sym_en_dash, @@ -15800,14 +15857,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [611] = 5, + [613] = 6, ACTIONS(1206), 1, anon_sym_LBRACE, - STATE(987), 1, - sym__curly_bracket_span_begin, - STATE(581), 2, + STATE(601), 1, sym_inline_attribute, + STATE(605), 1, sym__curly_bracket_span_fallback, + STATE(1007), 1, + sym__curly_bracket_span_begin, ACTIONS(1228), 5, anon_sym_BSLASH, sym_en_dash, @@ -15846,14 +15904,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [662] = 6, + [666] = 6, ACTIONS(1208), 1, anon_sym_LBRACE, - STATE(586), 1, + STATE(561), 1, sym_inline_attribute, - STATE(593), 1, + STATE(578), 1, sym__curly_bracket_span_fallback, - STATE(954), 1, + STATE(974), 1, sym__curly_bracket_span_begin, ACTIONS(1204), 5, anon_sym_BSLASH, @@ -15893,14 +15951,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [715] = 6, + [719] = 6, ACTIONS(1210), 1, anon_sym_LBRACE, - STATE(544), 1, - sym__curly_bracket_span_fallback, - STATE(599), 1, + STATE(594), 1, sym_inline_attribute, - STATE(1019), 1, + STATE(603), 1, + sym__curly_bracket_span_fallback, + STATE(1039), 1, sym__curly_bracket_span_begin, ACTIONS(1204), 5, anon_sym_BSLASH, @@ -15940,14 +15998,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [768] = 5, + [772] = 6, ACTIONS(1210), 1, anon_sym_LBRACE, - STATE(1019), 1, - sym__curly_bracket_span_begin, - STATE(599), 2, + STATE(594), 1, sym_inline_attribute, + STATE(609), 1, sym__curly_bracket_span_fallback, + STATE(1039), 1, + sym__curly_bracket_span_begin, ACTIONS(1228), 5, anon_sym_BSLASH, sym_en_dash, @@ -15986,14 +16045,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [819] = 5, + [825] = 6, ACTIONS(1216), 1, anon_sym_LBRACE, - STATE(1035), 1, - sym__curly_bracket_span_begin, - STATE(608), 2, + STATE(543), 1, sym_inline_attribute, + STATE(568), 1, sym__curly_bracket_span_fallback, + STATE(1055), 1, + sym__curly_bracket_span_begin, ACTIONS(1228), 5, anon_sym_BSLASH, sym_en_dash, @@ -16032,14 +16092,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [870] = 6, + [878] = 6, ACTIONS(1220), 1, anon_sym_LBRACE, - STATE(522), 1, + STATE(570), 1, sym_inline_attribute, - STATE(549), 1, + STATE(571), 1, sym__curly_bracket_span_fallback, - STATE(971), 1, + STATE(991), 1, sym__curly_bracket_span_begin, ACTIONS(1204), 5, anon_sym_BSLASH, @@ -16079,14 +16139,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [923] = 6, + [931] = 6, ACTIONS(1216), 1, anon_sym_LBRACE, - STATE(526), 1, - sym__curly_bracket_span_fallback, - STATE(608), 1, + STATE(543), 1, sym_inline_attribute, - STATE(1035), 1, + STATE(560), 1, + sym__curly_bracket_span_fallback, + STATE(1055), 1, sym__curly_bracket_span_begin, ACTIONS(1204), 5, anon_sym_BSLASH, @@ -16126,14 +16186,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [976] = 6, + [984] = 6, ACTIONS(1218), 1, anon_sym_LBRACE, - STATE(566), 1, + STATE(562), 1, sym_inline_attribute, - STATE(568), 1, + STATE(563), 1, sym__curly_bracket_span_fallback, - STATE(1051), 1, + STATE(1071), 1, sym__curly_bracket_span_begin, ACTIONS(1204), 5, anon_sym_BSLASH, @@ -16173,14 +16233,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [1029] = 5, + [1037] = 6, ACTIONS(1218), 1, anon_sym_LBRACE, - STATE(1051), 1, - sym__curly_bracket_span_begin, - STATE(566), 2, + STATE(562), 1, sym_inline_attribute, + STATE(573), 1, sym__curly_bracket_span_fallback, + STATE(1071), 1, + sym__curly_bracket_span_begin, ACTIONS(1228), 5, anon_sym_BSLASH, sym_en_dash, @@ -16219,14 +16280,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [1080] = 6, + [1090] = 6, ACTIONS(1214), 1, anon_sym_LBRACE, - STATE(550), 1, - sym__curly_bracket_span_fallback, - STATE(598), 1, + STATE(606), 1, sym_inline_attribute, - STATE(1003), 1, + STATE(619), 1, + sym__curly_bracket_span_fallback, + STATE(1023), 1, sym__curly_bracket_span_begin, ACTIONS(1204), 5, anon_sym_BSLASH, @@ -16266,14 +16327,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [1133] = 5, + [1143] = 6, ACTIONS(1220), 1, anon_sym_LBRACE, - STATE(971), 1, - sym__curly_bracket_span_begin, - STATE(522), 2, + STATE(570), 1, sym_inline_attribute, + STATE(574), 1, sym__curly_bracket_span_fallback, + STATE(991), 1, + sym__curly_bracket_span_begin, ACTIONS(1228), 5, anon_sym_BSLASH, sym_en_dash, @@ -16312,14 +16374,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [1184] = 5, + [1196] = 6, ACTIONS(1214), 1, anon_sym_LBRACE, - STATE(1003), 1, - sym__curly_bracket_span_begin, - STATE(598), 2, - sym_inline_attribute, + STATE(576), 1, sym__curly_bracket_span_fallback, + STATE(606), 1, + sym_inline_attribute, + STATE(1023), 1, + sym__curly_bracket_span_begin, ACTIONS(1228), 5, anon_sym_BSLASH, sym_en_dash, @@ -16358,14 +16421,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [1235] = 6, + [1249] = 6, ACTIONS(1212), 1, anon_sym_LBRACE, - STATE(545), 1, + STATE(542), 1, sym__curly_bracket_span_fallback, - STATE(583), 1, + STATE(624), 1, sym_inline_attribute, - STATE(1107), 1, + STATE(1059), 1, sym__curly_bracket_span_begin, ACTIONS(1204), 5, anon_sym_BSLASH, @@ -16405,14 +16468,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [1288] = 6, + [1302] = 6, ACTIONS(1222), 1, anon_sym_LBRACE, - STATE(573), 1, - sym_inline_attribute, - STATE(575), 1, + STATE(569), 1, sym__curly_bracket_span_fallback, - STATE(1067), 1, + STATE(628), 1, + sym_inline_attribute, + STATE(1087), 1, sym__curly_bracket_span_begin, ACTIONS(1204), 5, anon_sym_BSLASH, @@ -16452,14 +16515,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [1341] = 5, + [1355] = 6, ACTIONS(1212), 1, anon_sym_LBRACE, - STATE(1107), 1, - sym__curly_bracket_span_begin, - STATE(583), 2, + STATE(624), 1, sym_inline_attribute, + STATE(631), 1, sym__curly_bracket_span_fallback, + STATE(1059), 1, + sym__curly_bracket_span_begin, ACTIONS(1228), 5, anon_sym_BSLASH, sym_en_dash, @@ -16498,14 +16562,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [1392] = 6, + [1408] = 6, ACTIONS(1206), 1, anon_sym_LBRACE, - STATE(581), 1, + STATE(601), 1, sym_inline_attribute, - STATE(582), 1, + STATE(602), 1, sym__curly_bracket_span_fallback, - STATE(987), 1, + STATE(1007), 1, sym__curly_bracket_span_begin, ACTIONS(1204), 5, anon_sym_BSLASH, @@ -16545,14 +16609,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [1445] = 6, + [1461] = 6, ACTIONS(1224), 1, anon_sym_LBRACE, - STATE(561), 1, + STATE(595), 1, sym_inline_attribute, - STATE(562), 1, + STATE(597), 1, sym__curly_bracket_span_fallback, - STATE(1083), 1, + STATE(1103), 1, sym__curly_bracket_span_begin, ACTIONS(1204), 5, anon_sym_BSLASH, @@ -16592,14 +16656,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [1498] = 5, + [1514] = 6, ACTIONS(1224), 1, anon_sym_LBRACE, - STATE(1083), 1, - sym__curly_bracket_span_begin, - STATE(561), 2, + STATE(595), 1, sym_inline_attribute, + STATE(600), 1, sym__curly_bracket_span_fallback, + STATE(1103), 1, + sym__curly_bracket_span_begin, ACTIONS(1228), 5, anon_sym_BSLASH, sym_en_dash, @@ -16638,14 +16703,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [1549] = 5, + [1567] = 6, ACTIONS(1208), 1, anon_sym_LBRACE, - STATE(954), 1, - sym__curly_bracket_span_begin, - STATE(586), 2, + STATE(561), 1, sym_inline_attribute, + STATE(620), 1, sym__curly_bracket_span_fallback, + STATE(974), 1, + sym__curly_bracket_span_begin, ACTIONS(1228), 5, anon_sym_BSLASH, sym_en_dash, @@ -16684,16 +16750,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [1600] = 7, + [1620] = 7, ACTIONS(1230), 1, anon_sym_LBRACE, - STATE(449), 1, + STATE(452), 1, aux_sym__text, - STATE(618), 1, - sym_inline_attribute, - STATE(619), 1, + STATE(632), 1, sym__curly_bracket_span_fallback, - STATE(1099), 1, + STATE(639), 1, + sym_inline_attribute, + STATE(1119), 1, sym__curly_bracket_span_begin, ACTIONS(1204), 5, anon_sym_BSLASH, @@ -16732,10 +16798,10 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [1655] = 4, + [1675] = 4, ACTIONS(1236), 1, anon_sym_LBRACE_EQ2, - STATE(466), 1, + STATE(472), 1, sym_raw_inline_attribute, ACTIONS(1234), 7, anon_sym_LBRACE_EQ, @@ -16776,10 +16842,10 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [1703] = 4, + [1723] = 4, ACTIONS(1238), 1, anon_sym_LBRACE_EQ2, - STATE(463), 1, + STATE(469), 1, sym_raw_inline_attribute, ACTIONS(1234), 7, anon_sym_LBRACE_EQ, @@ -16820,10 +16886,10 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [1751] = 4, + [1771] = 4, ACTIONS(1240), 1, anon_sym_LBRACE_EQ2, - STATE(282), 1, + STATE(286), 1, sym_raw_inline_attribute, ACTIONS(1234), 7, anon_sym_LBRACE_EQ, @@ -16864,10 +16930,10 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [1799] = 4, + [1819] = 4, ACTIONS(1242), 1, anon_sym_LBRACE_EQ2, - STATE(503), 1, + STATE(507), 1, sym_raw_inline_attribute, ACTIONS(1234), 7, anon_sym_LBRACE_EQ, @@ -16908,10 +16974,10 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [1847] = 4, + [1867] = 4, ACTIONS(1244), 1, anon_sym_LBRACE_EQ2, - STATE(247), 1, + STATE(251), 1, sym_raw_inline_attribute, ACTIONS(1234), 7, anon_sym_LBRACE_EQ, @@ -16952,10 +17018,10 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [1895] = 4, + [1915] = 4, ACTIONS(1246), 1, anon_sym_LBRACE_EQ2, - STATE(352), 1, + STATE(374), 1, sym_raw_inline_attribute, ACTIONS(1234), 7, anon_sym_LBRACE_EQ, @@ -16996,10 +17062,10 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [1943] = 4, + [1963] = 4, ACTIONS(1248), 1, anon_sym_LBRACE_EQ2, - STATE(321), 1, + STATE(323), 1, sym_raw_inline_attribute, ACTIONS(1234), 7, anon_sym_LBRACE_EQ, @@ -17040,10 +17106,10 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [1991] = 4, + [2011] = 4, ACTIONS(1250), 1, anon_sym_LBRACE_EQ2, - STATE(359), 1, + STATE(360), 1, sym_raw_inline_attribute, ACTIONS(1234), 7, anon_sym_LBRACE_EQ, @@ -17084,10 +17150,10 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [2039] = 4, + [2059] = 4, ACTIONS(1252), 1, anon_sym_LBRACE_EQ2, - STATE(396), 1, + STATE(398), 1, sym_raw_inline_attribute, ACTIONS(1234), 7, anon_sym_LBRACE_EQ, @@ -17128,10 +17194,10 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [2087] = 4, + [2107] = 4, ACTIONS(1254), 1, anon_sym_LBRACE_EQ2, - STATE(428), 1, + STATE(431), 1, sym_raw_inline_attribute, ACTIONS(1234), 7, anon_sym_LBRACE_EQ, @@ -17172,14 +17238,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [2135] = 6, + [2155] = 6, ACTIONS(1230), 1, anon_sym_LBRACE, - STATE(618), 1, - sym_inline_attribute, - STATE(619), 1, + STATE(632), 1, sym__curly_bracket_span_fallback, - STATE(1099), 1, + STATE(639), 1, + sym_inline_attribute, + STATE(1119), 1, sym__curly_bracket_span_begin, ACTIONS(1204), 5, anon_sym_BSLASH, @@ -17218,14 +17284,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [2187] = 5, + [2207] = 6, ACTIONS(1230), 1, anon_sym_LBRACE, - STATE(1099), 1, - sym__curly_bracket_span_begin, - STATE(618), 2, - sym_inline_attribute, + STATE(634), 1, sym__curly_bracket_span_fallback, + STATE(639), 1, + sym_inline_attribute, + STATE(1119), 1, + sym__curly_bracket_span_begin, ACTIONS(1228), 5, anon_sym_BSLASH, sym_en_dash, @@ -17263,7 +17330,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [2237] = 3, + [2259] = 3, ACTIONS(1260), 1, sym__non_whitespace_check, ACTIONS(1258), 6, @@ -17305,7 +17372,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [2282] = 3, + [2304] = 3, ACTIONS(1262), 1, sym__non_whitespace_check, ACTIONS(1258), 6, @@ -17347,7 +17414,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [2327] = 3, + [2349] = 3, ACTIONS(1264), 1, sym__non_whitespace_check, ACTIONS(1258), 6, @@ -17389,7 +17456,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [2372] = 3, + [2394] = 3, ACTIONS(1266), 1, sym__non_whitespace_check, ACTIONS(1258), 6, @@ -17431,7 +17498,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [2417] = 3, + [2439] = 3, ACTIONS(1268), 1, sym__non_whitespace_check, ACTIONS(1258), 6, @@ -17473,7 +17540,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [2462] = 3, + [2484] = 3, ACTIONS(1270), 1, sym__non_whitespace_check, ACTIONS(1258), 6, @@ -17515,7 +17582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [2507] = 3, + [2529] = 3, ACTIONS(1272), 1, aux_sym_autolink_token1, ACTIONS(1256), 4, @@ -17557,7 +17624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, aux_sym__text_token1, - [2552] = 5, + [2574] = 5, ACTIONS(1274), 1, anon_sym_LBRACK_RBRACK, ACTIONS(1276), 1, @@ -17601,7 +17668,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [2601] = 4, + [2623] = 4, ACTIONS(1286), 1, anon_sym_LBRACE, STATE(386), 1, @@ -17644,7 +17711,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [2648] = 3, + [2670] = 3, ACTIONS(1292), 1, anon_sym_GT, ACTIONS(1290), 6, @@ -17686,7 +17753,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [2693] = 4, + [2715] = 4, ACTIONS(1298), 1, aux_sym__text_token1, STATE(174), 1, @@ -17729,7 +17796,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [2740] = 3, + [2762] = 3, ACTIONS(1301), 1, sym__non_whitespace_check, ACTIONS(1258), 6, @@ -17771,7 +17838,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [2785] = 3, + [2807] = 3, ACTIONS(1303), 1, anon_sym_GT, ACTIONS(1290), 6, @@ -17813,7 +17880,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [2830] = 3, + [2852] = 3, ACTIONS(1305), 1, aux_sym_autolink_token1, ACTIONS(1256), 4, @@ -17855,7 +17922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, aux_sym__text_token1, - [2875] = 4, + [2897] = 4, ACTIONS(1307), 1, aux_sym__text_token1, STATE(178), 1, @@ -17898,7 +17965,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [2922] = 3, + [2944] = 3, ACTIONS(1310), 1, aux_sym_autolink_token1, ACTIONS(1256), 4, @@ -17940,7 +18007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, aux_sym__text_token1, - [2967] = 3, + [2989] = 3, ACTIONS(1312), 1, sym__non_whitespace_check, ACTIONS(1258), 6, @@ -17982,7 +18049,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [3012] = 3, + [3034] = 3, ACTIONS(1314), 1, sym__non_whitespace_check, ACTIONS(1258), 6, @@ -18024,7 +18091,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [3057] = 3, + [3079] = 3, ACTIONS(1316), 1, sym__non_whitespace_check, ACTIONS(1258), 6, @@ -18066,7 +18133,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [3102] = 3, + [3124] = 3, ACTIONS(1318), 1, sym__non_whitespace_check, ACTIONS(1258), 6, @@ -18108,7 +18175,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [3147] = 3, + [3169] = 3, ACTIONS(1320), 1, aux_sym_autolink_token1, ACTIONS(1256), 3, @@ -18150,7 +18217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, aux_sym__text_token1, - [3192] = 5, + [3214] = 5, ACTIONS(1274), 1, anon_sym_LBRACK_RBRACK, ACTIONS(1276), 1, @@ -18194,10 +18261,10 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [3241] = 4, + [3263] = 4, ACTIONS(1322), 1, anon_sym_LBRACE, - STATE(418), 1, + STATE(421), 1, sym_comment, ACTIONS(1284), 5, anon_sym_BSLASH, @@ -18237,7 +18304,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [3288] = 3, + [3310] = 3, ACTIONS(1324), 1, aux_sym_autolink_token1, ACTIONS(1256), 4, @@ -18279,7 +18346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, aux_sym__text_token1, - [3333] = 3, + [3355] = 3, ACTIONS(1326), 1, aux_sym_autolink_token1, ACTIONS(1256), 4, @@ -18321,7 +18388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, aux_sym__text_token1, - [3378] = 3, + [3400] = 3, ACTIONS(1328), 1, anon_sym_GT, ACTIONS(1290), 6, @@ -18363,7 +18430,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [3423] = 4, + [3445] = 4, ACTIONS(1330), 1, aux_sym__text_token1, STATE(190), 1, @@ -18406,7 +18473,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [3470] = 5, + [3492] = 5, ACTIONS(1274), 1, anon_sym_LBRACK_RBRACK, ACTIONS(1276), 1, @@ -18450,10 +18517,10 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [3519] = 4, + [3541] = 4, ACTIONS(1333), 1, anon_sym_LBRACE, - STATE(270), 1, + STATE(274), 1, sym_comment, ACTIONS(1284), 5, anon_sym_BSLASH, @@ -18493,7 +18560,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [3566] = 3, + [3588] = 3, ACTIONS(1335), 1, sym__non_whitespace_check, ACTIONS(1258), 6, @@ -18535,7 +18602,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [3611] = 3, + [3633] = 3, ACTIONS(1337), 1, sym__non_whitespace_check, ACTIONS(1258), 6, @@ -18577,7 +18644,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [3656] = 5, + [3678] = 5, ACTIONS(1274), 1, anon_sym_LBRACK_RBRACK, ACTIONS(1276), 1, @@ -18621,7 +18688,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [3705] = 3, + [3727] = 3, ACTIONS(1339), 1, aux_sym_autolink_token1, ACTIONS(1256), 4, @@ -18663,7 +18730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, aux_sym__text_token1, - [3750] = 5, + [3772] = 5, ACTIONS(1274), 1, anon_sym_LBRACK_RBRACK, ACTIONS(1276), 1, @@ -18707,10 +18774,10 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [3799] = 4, + [3821] = 4, ACTIONS(1341), 1, anon_sym_LBRACE, - STATE(491), 1, + STATE(495), 1, sym_comment, ACTIONS(1284), 5, anon_sym_BSLASH, @@ -18750,7 +18817,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [3846] = 5, + [3868] = 5, ACTIONS(1274), 1, anon_sym_LBRACK_RBRACK, ACTIONS(1276), 1, @@ -18794,10 +18861,10 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [3895] = 4, + [3917] = 4, ACTIONS(1343), 1, anon_sym_LBRACE, - STATE(343), 1, + STATE(447), 1, sym_comment, ACTIONS(1284), 5, anon_sym_BSLASH, @@ -18837,7 +18904,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [3942] = 4, + [3964] = 4, ACTIONS(1345), 1, aux_sym__text_token1, STATE(201), 1, @@ -18880,7 +18947,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [3989] = 3, + [4011] = 3, ACTIONS(1348), 1, anon_sym_GT, ACTIONS(1290), 6, @@ -18922,7 +18989,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [4034] = 4, + [4056] = 4, ACTIONS(1350), 1, aux_sym__text_token1, STATE(203), 1, @@ -18965,7 +19032,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [4081] = 3, + [4103] = 3, ACTIONS(1353), 1, anon_sym_GT, ACTIONS(1290), 6, @@ -19007,7 +19074,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [4126] = 4, + [4148] = 4, ACTIONS(1355), 1, aux_sym__text_token1, STATE(205), 1, @@ -19050,10 +19117,10 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [4173] = 4, + [4195] = 4, ACTIONS(1358), 1, anon_sym_LBRACE_EQ2, - STATE(613), 1, + STATE(546), 1, sym_raw_inline_attribute, ACTIONS(1234), 7, anon_sym_LBRACE_EQ, @@ -19093,23 +19160,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [4220] = 5, - ACTIONS(1274), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(1276), 1, - anon_sym_LBRACK, - ACTIONS(1279), 1, - anon_sym_LPAREN, + [4242] = 3, + ACTIONS(1360), 1, + sym__non_whitespace_check, ACTIONS(1258), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACK_RBRACK2, + anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1256), 29, + ACTIONS(1256), 31, sym__verbatim_begin, - ts_builtin_sym_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19128,6 +19191,8 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -19137,19 +19202,23 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [4269] = 3, - ACTIONS(1360), 1, - sym__non_whitespace_check, + [4287] = 5, + ACTIONS(1274), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(1276), 1, + anon_sym_LBRACK, + ACTIONS(1279), 1, + anon_sym_LPAREN, ACTIONS(1258), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACK, + anon_sym_LBRACK_RBRACK2, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1256), 31, + ACTIONS(1256), 29, sym__verbatim_begin, - sym_highlighted_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -19168,8 +19237,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LBRACK_RBRACK2, - anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -19179,7 +19246,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [4314] = 3, + [4336] = 3, ACTIONS(1362), 1, sym__non_whitespace_check, ACTIONS(1258), 6, @@ -19221,7 +19288,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [4359] = 3, + [4381] = 3, ACTIONS(1364), 1, anon_sym_GT, ACTIONS(1290), 6, @@ -19263,7 +19330,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [4404] = 3, + [4426] = 3, ACTIONS(1366), 1, aux_sym_autolink_token1, ACTIONS(1256), 4, @@ -19305,7 +19372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, aux_sym__text_token1, - [4449] = 5, + [4471] = 5, ACTIONS(1274), 1, anon_sym_LBRACK_RBRACK, ACTIONS(1276), 1, @@ -19349,10 +19416,10 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [4498] = 4, + [4520] = 4, ACTIONS(1368), 1, anon_sym_LBRACE, - STATE(309), 1, + STATE(312), 1, sym_comment, ACTIONS(1284), 5, anon_sym_BSLASH, @@ -19392,7 +19459,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [4545] = 4, + [4567] = 4, ACTIONS(1370), 1, aux_sym__text_token1, STATE(214), 1, @@ -19435,7 +19502,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [4592] = 3, + [4614] = 3, ACTIONS(1373), 1, sym__non_whitespace_check, ACTIONS(1258), 6, @@ -19477,7 +19544,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [4637] = 3, + [4659] = 3, ACTIONS(1375), 1, anon_sym_GT, ACTIONS(1290), 6, @@ -19519,7 +19586,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [4682] = 3, + [4704] = 3, ACTIONS(1377), 1, anon_sym_GT, ACTIONS(1290), 6, @@ -19561,7 +19628,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [4727] = 4, + [4749] = 4, ACTIONS(1379), 1, aux_sym__text_token1, STATE(218), 1, @@ -19604,7 +19671,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [4774] = 3, + [4796] = 3, ACTIONS(1382), 1, sym__non_whitespace_check, ACTIONS(1258), 6, @@ -19646,7 +19713,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [4819] = 3, + [4841] = 3, ACTIONS(1384), 1, sym__non_whitespace_check, ACTIONS(1258), 6, @@ -19688,7 +19755,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [4864] = 3, + [4886] = 3, ACTIONS(1386), 1, sym__non_whitespace_check, ACTIONS(1258), 6, @@ -19730,7 +19797,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [4909] = 3, + [4931] = 3, ACTIONS(1388), 1, sym__non_whitespace_check, ACTIONS(1258), 6, @@ -19772,7 +19839,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [4954] = 4, + [4976] = 4, ACTIONS(1390), 1, aux_sym__text_token1, STATE(223), 1, @@ -19815,7 +19882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [5001] = 3, + [5023] = 3, ACTIONS(1393), 1, aux_sym_autolink_token1, ACTIONS(1256), 4, @@ -19857,7 +19924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, aux_sym__text_token1, - [5046] = 5, + [5068] = 5, ACTIONS(1274), 1, anon_sym_LBRACK_RBRACK, ACTIONS(1276), 1, @@ -19901,10 +19968,10 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [5095] = 4, + [5117] = 4, ACTIONS(1395), 1, anon_sym_LBRACE, - STATE(348), 1, + STATE(350), 1, sym_comment, ACTIONS(1284), 5, anon_sym_BSLASH, @@ -19944,7 +20011,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [5142] = 3, + [5164] = 3, ACTIONS(1397), 1, aux_sym_autolink_token1, ACTIONS(1256), 4, @@ -19986,7 +20053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_XXX, sym_fixme, aux_sym__text_token1, - [5187] = 5, + [5209] = 5, ACTIONS(1274), 1, anon_sym_LBRACK_RBRACK, ACTIONS(1276), 1, @@ -20030,10 +20097,10 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [5236] = 4, + [5258] = 4, ACTIONS(1399), 1, anon_sym_LBRACE, - STATE(237), 1, + STATE(242), 1, sym_comment, ACTIONS(1284), 5, anon_sym_BSLASH, @@ -20073,7 +20140,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [5283] = 3, + [5305] = 3, ACTIONS(1401), 1, anon_sym_GT, ACTIONS(1290), 6, @@ -20115,7 +20182,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [5328] = 4, + [5350] = 4, ACTIONS(1403), 1, aux_sym__text_token1, STATE(231), 1, @@ -20158,7 +20225,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [5375] = 3, + [5397] = 3, ACTIONS(1406), 1, anon_sym_GT, ACTIONS(1290), 6, @@ -20200,7 +20267,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [5420] = 2, + [5442] = 2, ACTIONS(1410), 6, anon_sym_BSLASH, sym_en_dash, @@ -20240,7 +20307,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [5462] = 2, + [5484] = 2, ACTIONS(1414), 6, anon_sym_BSLASH, sym_en_dash, @@ -20250,47 +20317,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__text_token1, ACTIONS(1412), 31, sym__verbatim_begin, - sym_subscript_end, - anon_sym_LBRACE_, - anon_sym__, - anon_sym_LBRACE_STAR, - anon_sym_STAR, - anon_sym_LBRACE_CARET, - anon_sym_CARET, - anon_sym_LBRACE_TILDE, - anon_sym_TILDE, - anon_sym_LBRACE_EQ, - anon_sym_LBRACE_PLUS, - anon_sym_LBRACE_DASH, - sym_quotation_marks, - sym_ellipsis, - sym_em_dash, - anon_sym_LT, - sym_symbol, - anon_sym_LBRACK_CARET, - anon_sym_BANG_LBRACK, - anon_sym_LBRACK_RBRACK2, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_TODO, - anon_sym_WIP, - anon_sym_NOTE, - anon_sym_INFO, - anon_sym_XXX, - sym_fixme, - sym__whitespace1, - anon_sym_LF, - [5504] = 2, - ACTIONS(1290), 6, - anon_sym_BSLASH, - sym_en_dash, - sym_backslash_escape, - anon_sym_LBRACK, - anon_sym_LBRACE, - aux_sym__text_token1, - ACTIONS(1288), 31, - sym__verbatim_begin, - sym_subscript_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20320,7 +20347,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [5546] = 2, + [5526] = 2, ACTIONS(1418), 6, anon_sym_BSLASH, sym_en_dash, @@ -20330,7 +20357,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__text_token1, ACTIONS(1416), 31, sym__verbatim_begin, - sym_subscript_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20360,7 +20387,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [5588] = 2, + [5568] = 2, ACTIONS(1422), 6, anon_sym_BSLASH, sym_en_dash, @@ -20370,7 +20397,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__text_token1, ACTIONS(1420), 31, sym__verbatim_begin, - sym_subscript_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20400,16 +20427,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [5630] = 2, - ACTIONS(1426), 6, + [5610] = 3, + ACTIONS(1424), 1, + sym__verbatim_begin, + ACTIONS(1258), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1424), 31, - sym__verbatim_begin, + ACTIONS(1256), 30, sym_subscript_end, anon_sym_LBRACE_, anon_sym__, @@ -20440,15 +20468,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [5672] = 2, - ACTIONS(1430), 6, + [5654] = 2, + ACTIONS(1429), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1428), 31, + ACTIONS(1427), 31, sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, @@ -20480,15 +20508,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [5714] = 2, - ACTIONS(1434), 6, + [5696] = 2, + ACTIONS(1433), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1432), 31, + ACTIONS(1431), 31, sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, @@ -20520,15 +20548,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [5756] = 2, - ACTIONS(1410), 6, + [5738] = 2, + ACTIONS(1290), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1408), 31, + ACTIONS(1288), 31, sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, @@ -20560,15 +20588,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [5798] = 2, - ACTIONS(1438), 6, + [5780] = 2, + ACTIONS(1437), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1436), 31, + ACTIONS(1435), 31, sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, @@ -20600,15 +20628,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [5840] = 2, - ACTIONS(1442), 6, + [5822] = 2, + ACTIONS(1441), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1440), 31, + ACTIONS(1439), 31, sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, @@ -20640,17 +20668,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [5882] = 2, - ACTIONS(1446), 6, + [5864] = 2, + ACTIONS(1445), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1444), 31, + ACTIONS(1443), 31, sym__verbatim_begin, - ts_builtin_sym_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -20680,15 +20708,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [5924] = 2, - ACTIONS(1450), 6, + [5906] = 2, + ACTIONS(1449), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1448), 31, + ACTIONS(1447), 31, sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, @@ -20720,15 +20748,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [5966] = 2, - ACTIONS(1454), 6, + [5948] = 2, + ACTIONS(1453), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1452), 31, + ACTIONS(1451), 31, sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, @@ -20760,15 +20788,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [6008] = 2, - ACTIONS(1458), 6, + [5990] = 2, + ACTIONS(1410), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1456), 31, + ACTIONS(1408), 31, sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, @@ -20800,15 +20828,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [6050] = 2, - ACTIONS(1462), 6, + [6032] = 2, + ACTIONS(1457), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1460), 31, + ACTIONS(1455), 31, sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, @@ -20840,15 +20868,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [6092] = 2, - ACTIONS(1466), 6, + [6074] = 2, + ACTIONS(1461), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1464), 31, + ACTIONS(1459), 31, sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, @@ -20880,15 +20908,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [6134] = 2, - ACTIONS(1470), 6, + [6116] = 2, + ACTIONS(1465), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1468), 31, + ACTIONS(1463), 31, sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, @@ -20920,15 +20948,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [6176] = 2, - ACTIONS(1474), 6, + [6158] = 2, + ACTIONS(1469), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1472), 31, + ACTIONS(1467), 31, sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, @@ -20960,15 +20988,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [6218] = 2, - ACTIONS(1478), 6, + [6200] = 2, + ACTIONS(1473), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1476), 31, + ACTIONS(1471), 31, sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, @@ -21000,15 +21028,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [6260] = 2, - ACTIONS(1482), 6, + [6242] = 2, + ACTIONS(1477), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1480), 31, + ACTIONS(1475), 31, sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, @@ -21040,15 +21068,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [6302] = 2, - ACTIONS(1486), 6, + [6284] = 2, + ACTIONS(1481), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1484), 31, + ACTIONS(1479), 31, sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, @@ -21080,15 +21108,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [6344] = 2, - ACTIONS(1490), 6, + [6326] = 2, + ACTIONS(1485), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1488), 31, + ACTIONS(1483), 31, sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, @@ -21120,15 +21148,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [6386] = 2, - ACTIONS(1494), 6, + [6368] = 2, + ACTIONS(1489), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1492), 31, + ACTIONS(1487), 31, sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, @@ -21160,15 +21188,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [6428] = 2, - ACTIONS(1498), 6, + [6410] = 2, + ACTIONS(1493), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1496), 31, + ACTIONS(1491), 31, sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, @@ -21200,15 +21228,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [6470] = 2, - ACTIONS(1502), 6, + [6452] = 2, + ACTIONS(1497), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1500), 31, + ACTIONS(1495), 31, sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, @@ -21240,15 +21268,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [6512] = 2, - ACTIONS(1446), 6, + [6494] = 2, + ACTIONS(1501), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1444), 31, + ACTIONS(1499), 31, sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, @@ -21280,15 +21308,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [6554] = 2, - ACTIONS(1506), 6, + [6536] = 2, + ACTIONS(1505), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1504), 31, + ACTIONS(1503), 31, sym__verbatim_begin, sym_subscript_end, anon_sym_LBRACE_, @@ -21320,17 +21348,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [6596] = 2, - ACTIONS(1506), 6, + [6578] = 2, + ACTIONS(1414), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1504), 31, + ACTIONS(1412), 31, sym__verbatim_begin, - ts_builtin_sym_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21360,18 +21388,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [6638] = 3, - ACTIONS(1508), 1, - sym__verbatim_begin, - ACTIONS(1258), 6, + [6620] = 2, + ACTIONS(1418), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1256), 30, - sym_highlighted_end, + ACTIONS(1416), 31, + sym__verbatim_begin, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21401,17 +21428,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [6682] = 2, - ACTIONS(1513), 6, + [6662] = 2, + ACTIONS(1422), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1511), 31, + ACTIONS(1420), 31, sym__verbatim_begin, - sym_highlighted_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21441,17 +21468,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [6724] = 2, - ACTIONS(1414), 6, + [6704] = 2, + ACTIONS(1509), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1412), 31, + ACTIONS(1507), 31, sym__verbatim_begin, - sym_highlighted_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21481,17 +21508,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [6766] = 2, - ACTIONS(1290), 6, + [6746] = 2, + ACTIONS(1513), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1288), 31, + ACTIONS(1511), 31, sym__verbatim_begin, - ts_builtin_sym_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21521,15 +21548,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [6808] = 2, - ACTIONS(1418), 6, + [6788] = 2, + ACTIONS(1509), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1416), 31, + ACTIONS(1507), 31, sym__verbatim_begin, ts_builtin_sym_end, anon_sym_LBRACE_, @@ -21561,15 +21588,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [6850] = 2, - ACTIONS(1426), 6, + [6830] = 2, + ACTIONS(1513), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1424), 31, + ACTIONS(1511), 31, sym__verbatim_begin, ts_builtin_sym_end, anon_sym_LBRACE_, @@ -21601,16 +21628,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [6892] = 2, - ACTIONS(1290), 6, + [6872] = 3, + ACTIONS(1515), 1, + sym__verbatim_begin, + ACTIONS(1258), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1288), 31, - sym__verbatim_begin, + ACTIONS(1256), 30, sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, @@ -21641,15 +21669,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [6934] = 2, - ACTIONS(1418), 6, + [6916] = 2, + ACTIONS(1429), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1416), 31, + ACTIONS(1427), 31, sym__verbatim_begin, sym_highlighted_end, anon_sym_LBRACE_, @@ -21681,15 +21709,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [6976] = 2, - ACTIONS(1422), 6, + [6958] = 2, + ACTIONS(1433), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1420), 31, + ACTIONS(1431), 31, sym__verbatim_begin, sym_highlighted_end, anon_sym_LBRACE_, @@ -21721,17 +21749,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [7018] = 2, - ACTIONS(1426), 6, + [7000] = 2, + ACTIONS(1433), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1424), 31, + ACTIONS(1431), 31, sym__verbatim_begin, - sym_highlighted_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21761,15 +21789,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [7060] = 2, - ACTIONS(1430), 6, + [7042] = 2, + ACTIONS(1290), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1428), 31, + ACTIONS(1288), 31, sym__verbatim_begin, sym_highlighted_end, anon_sym_LBRACE_, @@ -21801,15 +21829,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [7102] = 2, - ACTIONS(1434), 6, + [7084] = 2, + ACTIONS(1437), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1432), 31, + ACTIONS(1435), 31, sym__verbatim_begin, sym_highlighted_end, anon_sym_LBRACE_, @@ -21841,17 +21869,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [7144] = 2, - ACTIONS(1410), 6, + [7126] = 3, + ACTIONS(1518), 1, + sym__verbatim_begin, + ACTIONS(1258), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1408), 31, - sym__verbatim_begin, - sym_highlighted_end, + ACTIONS(1256), 30, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -21881,15 +21910,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [7186] = 2, - ACTIONS(1438), 6, + [7170] = 2, + ACTIONS(1441), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1436), 31, + ACTIONS(1439), 31, sym__verbatim_begin, sym_highlighted_end, anon_sym_LBRACE_, @@ -21921,15 +21950,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [7228] = 2, - ACTIONS(1442), 6, + [7212] = 2, + ACTIONS(1445), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1440), 31, + ACTIONS(1443), 31, sym__verbatim_begin, sym_highlighted_end, anon_sym_LBRACE_, @@ -21961,18 +21990,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [7270] = 3, - ACTIONS(1515), 1, - sym__verbatim_begin, - ACTIONS(1258), 6, + [7254] = 2, + ACTIONS(1449), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1256), 30, - sym_emphasis_end, + ACTIONS(1447), 31, + sym__verbatim_begin, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22002,17 +22030,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [7314] = 2, - ACTIONS(1513), 6, + [7296] = 2, + ACTIONS(1453), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1511), 31, + ACTIONS(1451), 31, sym__verbatim_begin, - sym_emphasis_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22042,17 +22070,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [7356] = 2, - ACTIONS(1414), 6, + [7338] = 2, + ACTIONS(1410), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1412), 31, + ACTIONS(1408), 31, sym__verbatim_begin, - sym_emphasis_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22082,15 +22110,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [7398] = 2, - ACTIONS(1450), 6, + [7380] = 2, + ACTIONS(1457), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1448), 31, + ACTIONS(1455), 31, sym__verbatim_begin, sym_highlighted_end, anon_sym_LBRACE_, @@ -22122,15 +22150,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [7440] = 2, - ACTIONS(1454), 6, + [7422] = 2, + ACTIONS(1461), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1452), 31, + ACTIONS(1459), 31, sym__verbatim_begin, sym_highlighted_end, anon_sym_LBRACE_, @@ -22162,17 +22190,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [7482] = 2, - ACTIONS(1458), 6, + [7464] = 2, + ACTIONS(1290), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1456), 31, + ACTIONS(1288), 31, sym__verbatim_begin, - sym_highlighted_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22202,17 +22230,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [7524] = 2, - ACTIONS(1462), 6, + [7506] = 2, + ACTIONS(1437), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1460), 31, + ACTIONS(1435), 31, sym__verbatim_begin, - sym_highlighted_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22242,17 +22270,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [7566] = 2, - ACTIONS(1466), 6, + [7548] = 3, + ACTIONS(1521), 1, + sym__verbatim_begin, + ACTIONS(1258), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1464), 31, - sym__verbatim_begin, - sym_highlighted_end, + ACTIONS(1256), 30, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22282,15 +22311,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [7608] = 2, - ACTIONS(1470), 6, + [7592] = 2, + ACTIONS(1465), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1468), 31, + ACTIONS(1463), 31, sym__verbatim_begin, sym_highlighted_end, anon_sym_LBRACE_, @@ -22322,15 +22351,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [7650] = 2, - ACTIONS(1474), 6, + [7634] = 2, + ACTIONS(1469), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1472), 31, + ACTIONS(1467), 31, sym__verbatim_begin, sym_highlighted_end, anon_sym_LBRACE_, @@ -22362,15 +22391,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [7692] = 2, - ACTIONS(1478), 6, + [7676] = 2, + ACTIONS(1473), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1476), 31, + ACTIONS(1471), 31, sym__verbatim_begin, sym_highlighted_end, anon_sym_LBRACE_, @@ -22402,15 +22431,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [7734] = 2, - ACTIONS(1482), 6, + [7718] = 2, + ACTIONS(1477), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1480), 31, + ACTIONS(1475), 31, sym__verbatim_begin, sym_highlighted_end, anon_sym_LBRACE_, @@ -22442,15 +22471,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [7776] = 2, - ACTIONS(1486), 6, + [7760] = 2, + ACTIONS(1481), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1484), 31, + ACTIONS(1479), 31, sym__verbatim_begin, sym_highlighted_end, anon_sym_LBRACE_, @@ -22482,15 +22511,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [7818] = 2, - ACTIONS(1490), 6, + [7802] = 2, + ACTIONS(1485), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1488), 31, + ACTIONS(1483), 31, sym__verbatim_begin, sym_highlighted_end, anon_sym_LBRACE_, @@ -22522,15 +22551,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [7860] = 2, - ACTIONS(1494), 6, + [7844] = 2, + ACTIONS(1489), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1492), 31, + ACTIONS(1487), 31, sym__verbatim_begin, sym_highlighted_end, anon_sym_LBRACE_, @@ -22562,15 +22591,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [7902] = 2, - ACTIONS(1498), 6, + [7886] = 2, + ACTIONS(1493), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1496), 31, + ACTIONS(1491), 31, sym__verbatim_begin, sym_highlighted_end, anon_sym_LBRACE_, @@ -22602,15 +22631,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [7944] = 2, - ACTIONS(1502), 6, + [7928] = 2, + ACTIONS(1497), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1500), 31, + ACTIONS(1495), 31, sym__verbatim_begin, sym_highlighted_end, anon_sym_LBRACE_, @@ -22642,15 +22671,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [7986] = 2, - ACTIONS(1446), 6, + [7970] = 2, + ACTIONS(1501), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1444), 31, + ACTIONS(1499), 31, sym__verbatim_begin, sym_highlighted_end, anon_sym_LBRACE_, @@ -22682,15 +22711,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [8028] = 2, - ACTIONS(1506), 6, + [8012] = 2, + ACTIONS(1505), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1504), 31, + ACTIONS(1503), 31, sym__verbatim_begin, sym_highlighted_end, anon_sym_LBRACE_, @@ -22722,19 +22751,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [8070] = 4, - ACTIONS(1518), 1, - anon_sym_LBRACE, - STATE(308), 1, - sym_comment, - ACTIONS(1284), 5, + [8054] = 2, + ACTIONS(1414), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1282), 30, + ACTIONS(1412), 31, sym__verbatim_begin, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22764,17 +22791,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [8116] = 2, - ACTIONS(1430), 6, + [8096] = 2, + ACTIONS(1418), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1428), 31, + ACTIONS(1416), 31, sym__verbatim_begin, - ts_builtin_sym_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22804,17 +22831,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [8158] = 2, - ACTIONS(1434), 6, + [8138] = 2, + ACTIONS(1422), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1432), 31, + ACTIONS(1420), 31, sym__verbatim_begin, - ts_builtin_sym_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22844,7 +22871,47 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [8200] = 2, + [8180] = 2, + ACTIONS(1509), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE, + aux_sym__text_token1, + ACTIONS(1507), 31, + sym__verbatim_begin, + sym_highlighted_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + sym__whitespace1, + anon_sym_LF, + [8222] = 2, ACTIONS(1513), 6, anon_sym_BSLASH, sym_en_dash, @@ -22854,7 +22921,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__text_token1, ACTIONS(1511), 31, sym__verbatim_begin, - ts_builtin_sym_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22884,15 +22951,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [8242] = 2, - ACTIONS(1290), 6, + [8264] = 2, + ACTIONS(1429), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1288), 31, + ACTIONS(1427), 31, sym__verbatim_begin, sym_emphasis_end, anon_sym_LBRACE_, @@ -22924,18 +22991,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [8284] = 3, - ACTIONS(1520), 1, - sym__verbatim_begin, - ACTIONS(1258), 6, + [8306] = 2, + ACTIONS(1433), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1256), 30, - sym_insert_end, + ACTIONS(1431), 31, + sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -22965,17 +23031,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [8328] = 2, - ACTIONS(1513), 6, + [8348] = 4, + ACTIONS(1524), 1, + anon_sym_LBRACE, + STATE(320), 1, + sym_comment, + ACTIONS(1284), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1511), 31, + ACTIONS(1282), 30, sym__verbatim_begin, - sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23005,17 +23073,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [8370] = 2, - ACTIONS(1414), 6, + [8394] = 2, + ACTIONS(1445), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1412), 31, + ACTIONS(1443), 31, sym__verbatim_begin, - sym_insert_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23045,17 +23113,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [8412] = 2, - ACTIONS(1418), 6, + [8436] = 3, + ACTIONS(1526), 1, + sym__verbatim_begin, + ACTIONS(1258), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1416), 31, - sym__verbatim_begin, - sym_emphasis_end, + ACTIONS(1256), 30, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23085,17 +23154,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [8454] = 2, - ACTIONS(1410), 6, + [8480] = 2, + ACTIONS(1429), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1408), 31, + ACTIONS(1427), 31, sym__verbatim_begin, - ts_builtin_sym_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23125,15 +23194,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [8496] = 2, - ACTIONS(1290), 6, + [8522] = 2, + ACTIONS(1433), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1288), 31, + ACTIONS(1431), 31, sym__verbatim_begin, sym_insert_end, anon_sym_LBRACE_, @@ -23165,17 +23234,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [8538] = 2, - ACTIONS(1418), 6, + [8564] = 2, + ACTIONS(1449), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1416), 31, + ACTIONS(1447), 31, sym__verbatim_begin, - sym_insert_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23205,15 +23274,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [8580] = 2, - ACTIONS(1422), 6, + [8606] = 2, + ACTIONS(1290), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1420), 31, + ACTIONS(1288), 31, sym__verbatim_begin, sym_emphasis_end, anon_sym_LBRACE_, @@ -23245,17 +23314,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [8622] = 2, - ACTIONS(1422), 6, + [8648] = 2, + ACTIONS(1437), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1420), 31, + ACTIONS(1435), 31, sym__verbatim_begin, - sym_insert_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23285,15 +23354,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [8664] = 2, - ACTIONS(1426), 6, + [8690] = 2, + ACTIONS(1290), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1424), 31, + ACTIONS(1288), 31, sym__verbatim_begin, sym_insert_end, anon_sym_LBRACE_, @@ -23325,15 +23394,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [8706] = 2, - ACTIONS(1430), 6, + [8732] = 2, + ACTIONS(1437), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1428), 31, + ACTIONS(1435), 31, sym__verbatim_begin, sym_insert_end, anon_sym_LBRACE_, @@ -23365,15 +23434,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [8748] = 2, - ACTIONS(1434), 6, + [8774] = 2, + ACTIONS(1441), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1432), 31, + ACTIONS(1439), 31, sym__verbatim_begin, sym_insert_end, anon_sym_LBRACE_, @@ -23405,15 +23474,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [8790] = 2, - ACTIONS(1410), 6, + [8816] = 2, + ACTIONS(1445), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1408), 31, + ACTIONS(1443), 31, sym__verbatim_begin, sym_insert_end, anon_sym_LBRACE_, @@ -23445,15 +23514,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [8832] = 2, - ACTIONS(1438), 6, + [8858] = 2, + ACTIONS(1449), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1436), 31, + ACTIONS(1447), 31, sym__verbatim_begin, sym_insert_end, anon_sym_LBRACE_, @@ -23485,15 +23554,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [8874] = 2, - ACTIONS(1442), 6, + [8900] = 2, + ACTIONS(1453), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1440), 31, + ACTIONS(1451), 31, sym__verbatim_begin, sym_insert_end, anon_sym_LBRACE_, @@ -23525,17 +23594,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [8916] = 2, - ACTIONS(1426), 6, + [8942] = 2, + ACTIONS(1410), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1424), 31, + ACTIONS(1408), 31, sym__verbatim_begin, - sym_emphasis_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23565,17 +23634,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [8958] = 2, - ACTIONS(1430), 6, + [8984] = 2, + ACTIONS(1457), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1428), 31, + ACTIONS(1455), 31, sym__verbatim_begin, - sym_emphasis_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23605,17 +23674,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [9000] = 2, - ACTIONS(1434), 6, + [9026] = 2, + ACTIONS(1461), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1432), 31, + ACTIONS(1459), 31, sym__verbatim_begin, - sym_emphasis_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23645,17 +23714,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [9042] = 2, - ACTIONS(1450), 6, + [9068] = 2, + ACTIONS(1453), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1448), 31, + ACTIONS(1451), 31, sym__verbatim_begin, - sym_insert_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23685,17 +23754,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [9084] = 2, - ACTIONS(1454), 6, + [9110] = 2, + ACTIONS(1441), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1452), 31, + ACTIONS(1439), 31, sym__verbatim_begin, - sym_insert_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -23725,15 +23794,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [9126] = 2, - ACTIONS(1458), 6, + [9152] = 2, + ACTIONS(1465), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1456), 31, + ACTIONS(1463), 31, sym__verbatim_begin, sym_insert_end, anon_sym_LBRACE_, @@ -23765,15 +23834,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [9168] = 2, - ACTIONS(1462), 6, + [9194] = 2, + ACTIONS(1469), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1460), 31, + ACTIONS(1467), 31, sym__verbatim_begin, sym_insert_end, anon_sym_LBRACE_, @@ -23805,15 +23874,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [9210] = 2, - ACTIONS(1466), 6, + [9236] = 2, + ACTIONS(1473), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1464), 31, + ACTIONS(1471), 31, sym__verbatim_begin, sym_insert_end, anon_sym_LBRACE_, @@ -23845,15 +23914,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [9252] = 2, - ACTIONS(1470), 6, + [9278] = 2, + ACTIONS(1477), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1468), 31, + ACTIONS(1475), 31, sym__verbatim_begin, sym_insert_end, anon_sym_LBRACE_, @@ -23885,15 +23954,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [9294] = 2, - ACTIONS(1474), 6, + [9320] = 2, + ACTIONS(1481), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1472), 31, + ACTIONS(1479), 31, sym__verbatim_begin, sym_insert_end, anon_sym_LBRACE_, @@ -23925,15 +23994,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [9336] = 2, - ACTIONS(1478), 6, + [9362] = 2, + ACTIONS(1485), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1476), 31, + ACTIONS(1483), 31, sym__verbatim_begin, sym_insert_end, anon_sym_LBRACE_, @@ -23965,15 +24034,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [9378] = 2, - ACTIONS(1482), 6, + [9404] = 2, + ACTIONS(1489), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1480), 31, + ACTIONS(1487), 31, sym__verbatim_begin, sym_insert_end, anon_sym_LBRACE_, @@ -24005,15 +24074,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [9420] = 2, - ACTIONS(1486), 6, + [9446] = 2, + ACTIONS(1493), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1484), 31, + ACTIONS(1491), 31, sym__verbatim_begin, sym_insert_end, anon_sym_LBRACE_, @@ -24045,15 +24114,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [9462] = 2, - ACTIONS(1490), 6, + [9488] = 2, + ACTIONS(1497), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1488), 31, + ACTIONS(1495), 31, sym__verbatim_begin, sym_insert_end, anon_sym_LBRACE_, @@ -24085,15 +24154,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [9504] = 2, - ACTIONS(1494), 6, + [9530] = 2, + ACTIONS(1501), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1492), 31, + ACTIONS(1499), 31, sym__verbatim_begin, sym_insert_end, anon_sym_LBRACE_, @@ -24125,15 +24194,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [9546] = 2, - ACTIONS(1498), 6, + [9572] = 2, + ACTIONS(1505), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1496), 31, + ACTIONS(1503), 31, sym__verbatim_begin, sym_insert_end, anon_sym_LBRACE_, @@ -24165,15 +24234,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [9588] = 2, - ACTIONS(1502), 6, + [9614] = 2, + ACTIONS(1414), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1500), 31, + ACTIONS(1412), 31, sym__verbatim_begin, sym_insert_end, anon_sym_LBRACE_, @@ -24205,15 +24274,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [9630] = 2, - ACTIONS(1446), 6, + [9656] = 2, + ACTIONS(1418), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1444), 31, + ACTIONS(1416), 31, sym__verbatim_begin, sym_insert_end, anon_sym_LBRACE_, @@ -24245,15 +24314,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [9672] = 2, - ACTIONS(1506), 6, + [9698] = 2, + ACTIONS(1422), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1504), 31, + ACTIONS(1420), 31, sym__verbatim_begin, sym_insert_end, anon_sym_LBRACE_, @@ -24285,17 +24354,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [9714] = 2, - ACTIONS(1410), 6, + [9740] = 2, + ACTIONS(1509), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1408), 31, + ACTIONS(1507), 31, sym__verbatim_begin, - sym_emphasis_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24325,17 +24394,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [9756] = 2, - ACTIONS(1438), 6, + [9782] = 2, + ACTIONS(1513), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1436), 31, + ACTIONS(1511), 31, sym__verbatim_begin, - sym_emphasis_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24365,15 +24434,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [9798] = 2, - ACTIONS(1442), 6, + [9824] = 2, + ACTIONS(1445), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1440), 31, + ACTIONS(1443), 31, sym__verbatim_begin, sym_emphasis_end, anon_sym_LBRACE_, @@ -24405,17 +24474,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [9840] = 2, - ACTIONS(1438), 6, + [9866] = 2, + ACTIONS(1449), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1436), 31, + ACTIONS(1447), 31, sym__verbatim_begin, - ts_builtin_sym_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24445,17 +24514,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [9882] = 2, - ACTIONS(1442), 6, + [9908] = 2, + ACTIONS(1453), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1440), 31, + ACTIONS(1451), 31, sym__verbatim_begin, - ts_builtin_sym_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24485,18 +24554,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [9924] = 3, - ACTIONS(1523), 1, - sym__verbatim_begin, - ACTIONS(1258), 6, + [9950] = 2, + ACTIONS(1410), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1256), 30, - sym_delete_end, + ACTIONS(1408), 31, + sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24526,16 +24594,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [9968] = 2, - ACTIONS(1513), 6, + [9992] = 3, + ACTIONS(1529), 1, + sym__verbatim_begin, + ACTIONS(1258), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1511), 31, - sym__verbatim_begin, + ACTIONS(1256), 30, sym_delete_end, anon_sym_LBRACE_, anon_sym__, @@ -24566,15 +24635,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [10010] = 2, - ACTIONS(1414), 6, + [10036] = 2, + ACTIONS(1429), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1412), 31, + ACTIONS(1427), 31, sym__verbatim_begin, sym_delete_end, anon_sym_LBRACE_, @@ -24606,17 +24675,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [10052] = 2, - ACTIONS(1422), 6, + [10078] = 2, + ACTIONS(1433), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1420), 31, + ACTIONS(1431), 31, sym__verbatim_begin, - ts_builtin_sym_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24646,15 +24715,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [10094] = 2, - ACTIONS(1450), 6, + [10120] = 2, + ACTIONS(1457), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1448), 31, + ACTIONS(1455), 31, sym__verbatim_begin, sym_emphasis_end, anon_sym_LBRACE_, @@ -24686,15 +24755,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [10136] = 2, - ACTIONS(1454), 6, + [10162] = 2, + ACTIONS(1461), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1452), 31, + ACTIONS(1459), 31, sym__verbatim_begin, sym_emphasis_end, anon_sym_LBRACE_, @@ -24726,17 +24795,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [10178] = 2, - ACTIONS(1290), 6, + [10204] = 2, + ACTIONS(1410), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1288), 31, + ACTIONS(1408), 31, sym__verbatim_begin, - sym_delete_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24766,15 +24835,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [10220] = 2, - ACTIONS(1418), 6, + [10246] = 2, + ACTIONS(1290), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1416), 31, + ACTIONS(1288), 31, sym__verbatim_begin, sym_delete_end, anon_sym_LBRACE_, @@ -24806,15 +24875,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [10262] = 2, - ACTIONS(1422), 6, + [10288] = 2, + ACTIONS(1437), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1420), 31, + ACTIONS(1435), 31, sym__verbatim_begin, sym_delete_end, anon_sym_LBRACE_, @@ -24846,17 +24915,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [10304] = 2, - ACTIONS(1426), 6, + [10330] = 2, + ACTIONS(1457), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1424), 31, + ACTIONS(1455), 31, sym__verbatim_begin, - sym_delete_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -24886,15 +24955,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [10346] = 2, - ACTIONS(1430), 6, + [10372] = 2, + ACTIONS(1441), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1428), 31, + ACTIONS(1439), 31, sym__verbatim_begin, sym_delete_end, anon_sym_LBRACE_, @@ -24926,15 +24995,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [10388] = 2, - ACTIONS(1434), 6, + [10414] = 2, + ACTIONS(1445), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1432), 31, + ACTIONS(1443), 31, sym__verbatim_begin, sym_delete_end, anon_sym_LBRACE_, @@ -24966,17 +25035,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [10430] = 2, - ACTIONS(1458), 6, + [10456] = 2, + ACTIONS(1449), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1456), 31, + ACTIONS(1447), 31, sym__verbatim_begin, - sym_emphasis_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25006,15 +25075,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [10472] = 2, - ACTIONS(1438), 6, + [10498] = 2, + ACTIONS(1453), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1436), 31, + ACTIONS(1451), 31, sym__verbatim_begin, sym_delete_end, anon_sym_LBRACE_, @@ -25046,17 +25115,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [10514] = 2, - ACTIONS(1442), 6, + [10540] = 2, + ACTIONS(1465), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1440), 31, + ACTIONS(1463), 31, sym__verbatim_begin, - sym_delete_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25086,17 +25155,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [10556] = 2, - ACTIONS(1462), 6, + [10582] = 2, + ACTIONS(1457), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1460), 31, + ACTIONS(1455), 31, sym__verbatim_begin, - sym_emphasis_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25126,17 +25195,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [10598] = 2, - ACTIONS(1466), 6, + [10624] = 2, + ACTIONS(1461), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1464), 31, + ACTIONS(1459), 31, sym__verbatim_begin, - sym_emphasis_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25166,17 +25235,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [10640] = 2, - ACTIONS(1450), 6, + [10666] = 2, + ACTIONS(1469), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1448), 31, + ACTIONS(1467), 31, sym__verbatim_begin, - sym_delete_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25206,15 +25275,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [10682] = 2, - ACTIONS(1454), 6, + [10708] = 2, + ACTIONS(1465), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1452), 31, + ACTIONS(1463), 31, sym__verbatim_begin, sym_delete_end, anon_sym_LBRACE_, @@ -25246,15 +25315,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [10724] = 2, - ACTIONS(1458), 6, + [10750] = 2, + ACTIONS(1469), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1456), 31, + ACTIONS(1467), 31, sym__verbatim_begin, sym_delete_end, anon_sym_LBRACE_, @@ -25286,15 +25355,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [10766] = 2, - ACTIONS(1462), 6, + [10792] = 2, + ACTIONS(1473), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1460), 31, + ACTIONS(1471), 31, sym__verbatim_begin, sym_delete_end, anon_sym_LBRACE_, @@ -25326,15 +25395,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [10808] = 2, - ACTIONS(1466), 6, + [10834] = 2, + ACTIONS(1477), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1464), 31, + ACTIONS(1475), 31, sym__verbatim_begin, sym_delete_end, anon_sym_LBRACE_, @@ -25366,15 +25435,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [10850] = 2, - ACTIONS(1470), 6, + [10876] = 2, + ACTIONS(1481), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1468), 31, + ACTIONS(1479), 31, sym__verbatim_begin, sym_delete_end, anon_sym_LBRACE_, @@ -25406,15 +25475,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [10892] = 2, - ACTIONS(1474), 6, + [10918] = 2, + ACTIONS(1485), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1472), 31, + ACTIONS(1483), 31, sym__verbatim_begin, sym_delete_end, anon_sym_LBRACE_, @@ -25446,15 +25515,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [10934] = 2, - ACTIONS(1478), 6, + [10960] = 2, + ACTIONS(1489), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1476), 31, + ACTIONS(1487), 31, sym__verbatim_begin, sym_delete_end, anon_sym_LBRACE_, @@ -25486,15 +25555,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [10976] = 2, - ACTIONS(1482), 6, + [11002] = 2, + ACTIONS(1493), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1480), 31, + ACTIONS(1491), 31, sym__verbatim_begin, sym_delete_end, anon_sym_LBRACE_, @@ -25526,15 +25595,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [11018] = 2, - ACTIONS(1486), 6, + [11044] = 2, + ACTIONS(1497), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1484), 31, + ACTIONS(1495), 31, sym__verbatim_begin, sym_delete_end, anon_sym_LBRACE_, @@ -25566,15 +25635,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [11060] = 2, - ACTIONS(1490), 6, + [11086] = 2, + ACTIONS(1501), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1488), 31, + ACTIONS(1499), 31, sym__verbatim_begin, sym_delete_end, anon_sym_LBRACE_, @@ -25606,15 +25675,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [11102] = 2, - ACTIONS(1494), 6, + [11128] = 2, + ACTIONS(1505), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1492), 31, + ACTIONS(1503), 31, sym__verbatim_begin, sym_delete_end, anon_sym_LBRACE_, @@ -25646,15 +25715,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [11144] = 2, - ACTIONS(1498), 6, + [11170] = 2, + ACTIONS(1414), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1496), 31, + ACTIONS(1412), 31, sym__verbatim_begin, sym_delete_end, anon_sym_LBRACE_, @@ -25686,15 +25755,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [11186] = 2, - ACTIONS(1502), 6, + [11212] = 2, + ACTIONS(1418), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1500), 31, + ACTIONS(1416), 31, sym__verbatim_begin, sym_delete_end, anon_sym_LBRACE_, @@ -25726,15 +25795,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [11228] = 2, - ACTIONS(1446), 6, + [11254] = 2, + ACTIONS(1422), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1444), 31, + ACTIONS(1420), 31, sym__verbatim_begin, sym_delete_end, anon_sym_LBRACE_, @@ -25766,15 +25835,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [11270] = 2, - ACTIONS(1506), 6, + [11296] = 2, + ACTIONS(1509), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1504), 31, + ACTIONS(1507), 31, sym__verbatim_begin, sym_delete_end, anon_sym_LBRACE_, @@ -25806,17 +25875,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [11312] = 2, - ACTIONS(1470), 6, + [11338] = 2, + ACTIONS(1513), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1468), 31, + ACTIONS(1511), 31, sym__verbatim_begin, - sym_emphasis_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25846,15 +25915,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [11354] = 2, - ACTIONS(1474), 6, + [11380] = 2, + ACTIONS(1473), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1472), 31, + ACTIONS(1471), 31, sym__verbatim_begin, sym_emphasis_end, anon_sym_LBRACE_, @@ -25886,15 +25955,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [11396] = 2, - ACTIONS(1478), 6, + [11422] = 2, + ACTIONS(1477), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1476), 31, + ACTIONS(1475), 31, sym__verbatim_begin, sym_emphasis_end, anon_sym_LBRACE_, @@ -25926,15 +25995,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [11438] = 2, - ACTIONS(1482), 6, + [11464] = 2, + ACTIONS(1481), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1480), 31, + ACTIONS(1479), 31, sym__verbatim_begin, sym_emphasis_end, anon_sym_LBRACE_, @@ -25966,17 +26035,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [11480] = 3, - ACTIONS(1526), 1, - sym__verbatim_begin, - ACTIONS(1258), 6, + [11506] = 2, + ACTIONS(1485), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1256), 30, + ACTIONS(1483), 31, + sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -25996,7 +26065,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_LBRACK_RBRACK2, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -26007,16 +26075,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [11524] = 2, - ACTIONS(1513), 6, + [11548] = 3, + ACTIONS(1532), 1, + sym__verbatim_begin, + ACTIONS(1258), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1511), 31, - sym__verbatim_begin, + ACTIONS(1256), 30, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26047,15 +26116,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [11566] = 2, - ACTIONS(1414), 6, + [11592] = 2, + ACTIONS(1429), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1412), 31, + ACTIONS(1427), 31, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -26087,17 +26156,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [11608] = 2, - ACTIONS(1486), 6, + [11634] = 2, + ACTIONS(1433), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1484), 31, + ACTIONS(1431), 31, sym__verbatim_begin, - sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26117,6 +26185,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_LBRACK_RBRACK2, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -26127,15 +26196,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [11650] = 2, - ACTIONS(1490), 6, + [11676] = 2, + ACTIONS(1489), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1488), 31, + ACTIONS(1487), 31, sym__verbatim_begin, sym_emphasis_end, anon_sym_LBRACE_, @@ -26167,15 +26236,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [11692] = 2, - ACTIONS(1494), 6, + [11718] = 2, + ACTIONS(1493), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1492), 31, + ACTIONS(1491), 31, sym__verbatim_begin, sym_emphasis_end, anon_sym_LBRACE_, @@ -26207,7 +26276,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [11734] = 2, + [11760] = 2, ACTIONS(1290), 6, anon_sym_BSLASH, sym_en_dash, @@ -26247,15 +26316,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [11776] = 2, - ACTIONS(1418), 6, + [11802] = 2, + ACTIONS(1437), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1416), 31, + ACTIONS(1435), 31, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -26287,15 +26356,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [11818] = 2, - ACTIONS(1498), 6, + [11844] = 2, + ACTIONS(1497), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1496), 31, + ACTIONS(1495), 31, sym__verbatim_begin, sym_emphasis_end, anon_sym_LBRACE_, @@ -26327,15 +26396,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [11860] = 2, - ACTIONS(1422), 6, + [11886] = 2, + ACTIONS(1441), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1420), 31, + ACTIONS(1439), 31, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -26367,15 +26436,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [11902] = 2, - ACTIONS(1426), 6, + [11928] = 2, + ACTIONS(1445), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1424), 31, + ACTIONS(1443), 31, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -26407,15 +26476,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [11944] = 2, - ACTIONS(1430), 6, + [11970] = 2, + ACTIONS(1449), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1428), 31, + ACTIONS(1447), 31, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -26447,15 +26516,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [11986] = 2, - ACTIONS(1434), 6, + [12012] = 2, + ACTIONS(1453), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1432), 31, + ACTIONS(1451), 31, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -26487,7 +26556,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [12028] = 2, + [12054] = 2, ACTIONS(1410), 6, anon_sym_BSLASH, sym_en_dash, @@ -26527,15 +26596,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [12070] = 2, - ACTIONS(1438), 6, + [12096] = 2, + ACTIONS(1457), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1436), 31, + ACTIONS(1455), 31, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -26567,15 +26636,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [12112] = 2, - ACTIONS(1442), 6, + [12138] = 2, + ACTIONS(1461), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1440), 31, + ACTIONS(1459), 31, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -26607,15 +26676,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [12154] = 2, - ACTIONS(1502), 6, + [12180] = 2, + ACTIONS(1501), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1500), 31, + ACTIONS(1499), 31, sym__verbatim_begin, sym_emphasis_end, anon_sym_LBRACE_, @@ -26647,16 +26716,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [12196] = 2, - ACTIONS(1450), 6, + [12222] = 2, + ACTIONS(1505), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1448), 31, + ACTIONS(1503), 31, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26676,7 +26746,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_LBRACK_RBRACK2, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -26687,16 +26756,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [12238] = 2, - ACTIONS(1454), 6, + [12264] = 2, + ACTIONS(1414), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1452), 31, + ACTIONS(1412), 31, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -26716,7 +26786,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_LBRACK_RBRACK2, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -26727,15 +26796,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [12280] = 2, - ACTIONS(1458), 6, + [12306] = 2, + ACTIONS(1465), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1456), 31, + ACTIONS(1463), 31, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -26767,15 +26836,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [12322] = 2, - ACTIONS(1462), 6, + [12348] = 2, + ACTIONS(1469), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1460), 31, + ACTIONS(1467), 31, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -26807,15 +26876,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [12364] = 2, - ACTIONS(1466), 6, + [12390] = 2, + ACTIONS(1473), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1464), 31, + ACTIONS(1471), 31, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -26847,15 +26916,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [12406] = 2, - ACTIONS(1470), 6, + [12432] = 2, + ACTIONS(1477), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1468), 31, + ACTIONS(1475), 31, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -26887,15 +26956,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [12448] = 2, - ACTIONS(1474), 6, + [12474] = 2, + ACTIONS(1481), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1472), 31, + ACTIONS(1479), 31, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -26927,15 +26996,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [12490] = 2, - ACTIONS(1478), 6, + [12516] = 2, + ACTIONS(1485), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1476), 31, + ACTIONS(1483), 31, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -26967,15 +27036,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [12532] = 2, - ACTIONS(1482), 6, + [12558] = 2, + ACTIONS(1489), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1480), 31, + ACTIONS(1487), 31, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -27007,15 +27076,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [12574] = 2, - ACTIONS(1486), 6, + [12600] = 2, + ACTIONS(1493), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1484), 31, + ACTIONS(1491), 31, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -27047,15 +27116,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [12616] = 2, - ACTIONS(1490), 6, + [12642] = 2, + ACTIONS(1497), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1488), 31, + ACTIONS(1495), 31, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -27087,15 +27156,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [12658] = 2, - ACTIONS(1494), 6, + [12684] = 2, + ACTIONS(1501), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1492), 31, + ACTIONS(1499), 31, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -27127,15 +27196,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [12700] = 2, - ACTIONS(1498), 6, + [12726] = 2, + ACTIONS(1505), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1496), 31, + ACTIONS(1503), 31, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -27167,15 +27236,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [12742] = 2, - ACTIONS(1502), 6, + [12768] = 2, + ACTIONS(1414), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1500), 31, + ACTIONS(1412), 31, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -27207,15 +27276,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [12784] = 2, - ACTIONS(1446), 6, + [12810] = 2, + ACTIONS(1418), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1444), 31, + ACTIONS(1416), 31, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -27247,15 +27316,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [12826] = 2, - ACTIONS(1506), 6, + [12852] = 2, + ACTIONS(1422), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1504), 31, + ACTIONS(1420), 31, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -27287,17 +27356,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [12868] = 2, - ACTIONS(1446), 6, + [12894] = 2, + ACTIONS(1509), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1444), 31, + ACTIONS(1507), 31, sym__verbatim_begin, - sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27317,6 +27385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_LBRACK_RBRACK2, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -27327,18 +27396,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [12910] = 3, - ACTIONS(1529), 1, - sym__verbatim_begin, - ACTIONS(1258), 6, + [12936] = 2, + ACTIONS(1513), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1256), 30, - sym__square_bracket_span_end, + ACTIONS(1511), 31, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27358,6 +27425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_LBRACK_RBRACK2, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -27368,17 +27436,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [12954] = 2, - ACTIONS(1513), 6, + [12978] = 2, + ACTIONS(1418), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1511), 31, + ACTIONS(1416), 31, sym__verbatim_begin, - sym__square_bracket_span_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27408,17 +27476,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [12996] = 2, - ACTIONS(1414), 6, + [13020] = 2, + ACTIONS(1422), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1412), 31, + ACTIONS(1420), 31, sym__verbatim_begin, - sym__square_bracket_span_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27448,17 +27516,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [13038] = 2, - ACTIONS(1414), 6, + [13062] = 2, + ACTIONS(1509), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1412), 31, + ACTIONS(1507), 31, sym__verbatim_begin, - ts_builtin_sym_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27488,16 +27556,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [13080] = 2, - ACTIONS(1290), 6, + [13104] = 3, + ACTIONS(1535), 1, + sym__verbatim_begin, + ACTIONS(1258), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1288), 31, - sym__verbatim_begin, + ACTIONS(1256), 30, sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, @@ -27528,15 +27597,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [13122] = 2, - ACTIONS(1418), 6, + [13148] = 2, + ACTIONS(1429), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1416), 31, + ACTIONS(1427), 31, sym__verbatim_begin, sym__square_bracket_span_end, anon_sym_LBRACE_, @@ -27568,17 +27637,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [13164] = 2, - ACTIONS(1450), 6, + [13190] = 2, + ACTIONS(1433), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1448), 31, + ACTIONS(1431), 31, sym__verbatim_begin, - ts_builtin_sym_end, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27608,17 +27677,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [13206] = 2, - ACTIONS(1422), 6, + [13232] = 2, + ACTIONS(1513), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1420), 31, + ACTIONS(1511), 31, sym__verbatim_begin, - sym__square_bracket_span_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27648,15 +27717,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [13248] = 2, - ACTIONS(1426), 6, + [13274] = 2, + ACTIONS(1290), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1424), 31, + ACTIONS(1288), 31, sym__verbatim_begin, sym__square_bracket_span_end, anon_sym_LBRACE_, @@ -27688,15 +27757,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [13290] = 2, - ACTIONS(1430), 6, + [13316] = 2, + ACTIONS(1437), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1428), 31, + ACTIONS(1435), 31, sym__verbatim_begin, sym__square_bracket_span_end, anon_sym_LBRACE_, @@ -27728,15 +27797,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [13332] = 2, - ACTIONS(1434), 6, + [13358] = 2, + ACTIONS(1441), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1432), 31, + ACTIONS(1439), 31, sym__verbatim_begin, sym__square_bracket_span_end, anon_sym_LBRACE_, @@ -27768,15 +27837,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [13374] = 2, - ACTIONS(1410), 6, + [13400] = 2, + ACTIONS(1445), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1408), 31, + ACTIONS(1443), 31, sym__verbatim_begin, sym__square_bracket_span_end, anon_sym_LBRACE_, @@ -27808,15 +27877,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [13416] = 2, - ACTIONS(1438), 6, + [13442] = 2, + ACTIONS(1449), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1436), 31, + ACTIONS(1447), 31, sym__verbatim_begin, sym__square_bracket_span_end, anon_sym_LBRACE_, @@ -27848,15 +27917,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [13458] = 2, - ACTIONS(1442), 6, + [13484] = 2, + ACTIONS(1453), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1440), 31, + ACTIONS(1451), 31, sym__verbatim_begin, sym__square_bracket_span_end, anon_sym_LBRACE_, @@ -27888,18 +27957,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [13500] = 3, - ACTIONS(1532), 1, - sym__verbatim_begin, - ACTIONS(1258), 6, + [13526] = 2, + ACTIONS(1410), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1256), 30, - sym_strong_end, + ACTIONS(1408), 31, + sym__verbatim_begin, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -27929,15 +27997,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [13544] = 2, - ACTIONS(1450), 6, + [13568] = 2, + ACTIONS(1457), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1448), 31, + ACTIONS(1455), 31, sym__verbatim_begin, sym__square_bracket_span_end, anon_sym_LBRACE_, @@ -27969,15 +28037,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [13586] = 2, - ACTIONS(1454), 6, + [13610] = 2, + ACTIONS(1461), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1452), 31, + ACTIONS(1459), 31, sym__verbatim_begin, sym__square_bracket_span_end, anon_sym_LBRACE_, @@ -28009,17 +28077,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [13628] = 2, - ACTIONS(1458), 6, + [13652] = 2, + ACTIONS(1461), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1456), 31, + ACTIONS(1459), 31, sym__verbatim_begin, - sym__square_bracket_span_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28049,15 +28117,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [13670] = 2, - ACTIONS(1462), 6, + [13694] = 2, + ACTIONS(1465), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1460), 31, + ACTIONS(1463), 31, sym__verbatim_begin, sym__square_bracket_span_end, anon_sym_LBRACE_, @@ -28089,15 +28157,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [13712] = 2, - ACTIONS(1466), 6, + [13736] = 2, + ACTIONS(1469), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1464), 31, + ACTIONS(1467), 31, sym__verbatim_begin, sym__square_bracket_span_end, anon_sym_LBRACE_, @@ -28129,15 +28197,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [13754] = 2, - ACTIONS(1470), 6, + [13778] = 2, + ACTIONS(1473), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1468), 31, + ACTIONS(1471), 31, sym__verbatim_begin, sym__square_bracket_span_end, anon_sym_LBRACE_, @@ -28169,15 +28237,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [13796] = 2, - ACTIONS(1474), 6, + [13820] = 2, + ACTIONS(1477), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1472), 31, + ACTIONS(1475), 31, sym__verbatim_begin, sym__square_bracket_span_end, anon_sym_LBRACE_, @@ -28209,15 +28277,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [13838] = 2, - ACTIONS(1478), 6, + [13862] = 2, + ACTIONS(1481), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1476), 31, + ACTIONS(1479), 31, sym__verbatim_begin, sym__square_bracket_span_end, anon_sym_LBRACE_, @@ -28249,15 +28317,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [13880] = 2, - ACTIONS(1482), 6, + [13904] = 2, + ACTIONS(1485), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1480), 31, + ACTIONS(1483), 31, sym__verbatim_begin, sym__square_bracket_span_end, anon_sym_LBRACE_, @@ -28289,15 +28357,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [13922] = 2, - ACTIONS(1486), 6, + [13946] = 2, + ACTIONS(1489), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1484), 31, + ACTIONS(1487), 31, sym__verbatim_begin, sym__square_bracket_span_end, anon_sym_LBRACE_, @@ -28329,15 +28397,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [13964] = 2, - ACTIONS(1490), 6, + [13988] = 2, + ACTIONS(1493), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1488), 31, + ACTIONS(1491), 31, sym__verbatim_begin, sym__square_bracket_span_end, anon_sym_LBRACE_, @@ -28369,15 +28437,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [14006] = 2, - ACTIONS(1494), 6, + [14030] = 2, + ACTIONS(1497), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1492), 31, + ACTIONS(1495), 31, sym__verbatim_begin, sym__square_bracket_span_end, anon_sym_LBRACE_, @@ -28409,15 +28477,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [14048] = 2, - ACTIONS(1498), 6, + [14072] = 2, + ACTIONS(1501), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1496), 31, + ACTIONS(1499), 31, sym__verbatim_begin, sym__square_bracket_span_end, anon_sym_LBRACE_, @@ -28449,15 +28517,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [14090] = 2, - ACTIONS(1502), 6, + [14114] = 2, + ACTIONS(1505), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1500), 31, + ACTIONS(1503), 31, sym__verbatim_begin, sym__square_bracket_span_end, anon_sym_LBRACE_, @@ -28489,15 +28557,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [14132] = 2, - ACTIONS(1446), 6, + [14156] = 2, + ACTIONS(1414), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1444), 31, + ACTIONS(1412), 31, sym__verbatim_begin, sym__square_bracket_span_end, anon_sym_LBRACE_, @@ -28529,15 +28597,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [14174] = 2, - ACTIONS(1506), 6, + [14198] = 2, + ACTIONS(1418), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1504), 31, + ACTIONS(1416), 31, sym__verbatim_begin, sym__square_bracket_span_end, anon_sym_LBRACE_, @@ -28569,18 +28637,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [14216] = 3, - ACTIONS(1535), 1, - sym__non_whitespace_check, - ACTIONS(1258), 6, + [14240] = 2, + ACTIONS(1422), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1256), 30, + ACTIONS(1420), 31, sym__verbatim_begin, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28610,18 +28677,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [14260] = 3, - ACTIONS(1537), 1, - sym__non_whitespace_check, - ACTIONS(1258), 6, + [14282] = 2, + ACTIONS(1509), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1256), 30, + ACTIONS(1507), 31, sym__verbatim_begin, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28651,7 +28717,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [14304] = 2, + [14324] = 2, ACTIONS(1513), 6, anon_sym_BSLASH, sym_en_dash, @@ -28661,7 +28727,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__text_token1, ACTIONS(1511), 31, sym__verbatim_begin, - sym_strong_end, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28691,14 +28757,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [14346] = 3, - ACTIONS(1539), 1, - aux_sym_autolink_token1, - ACTIONS(1256), 3, + [14366] = 3, + ACTIONS(1538), 1, + sym__non_whitespace_check, + ACTIONS(1258), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE, + aux_sym__text_token1, + ACTIONS(1256), 30, sym__verbatim_begin, - sym__whitespace1, - anon_sym_LF, - ACTIONS(1258), 33, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28710,19 +28780,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_EQ, anon_sym_LBRACE_PLUS, anon_sym_LBRACE_DASH, - anon_sym_BSLASH, sym_quotation_marks, sym_ellipsis, sym_em_dash, - sym_en_dash, - sym_backslash_escape, anon_sym_LT, sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_LBRACK_RBRACK2, - anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -28731,22 +28796,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_INFO, anon_sym_XXX, sym_fixme, - aux_sym__text_token1, - [14390] = 5, - ACTIONS(1274), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(1276), 1, - anon_sym_LBRACK, - ACTIONS(1279), 1, - anon_sym_LPAREN, + sym__whitespace1, + anon_sym_LF, + [14410] = 3, + ACTIONS(1540), 1, + sym__non_whitespace_check, ACTIONS(1258), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, - anon_sym_LBRACK_RBRACK2, + anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1256), 28, + ACTIONS(1256), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -28766,6 +28828,8 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -28775,17 +28839,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [14438] = 2, - ACTIONS(1414), 6, + [14454] = 2, + ACTIONS(1441), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1412), 31, + ACTIONS(1439), 31, sym__verbatim_begin, - sym_strong_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28815,17 +28879,62 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [14480] = 3, - ACTIONS(1541), 1, - anon_sym_GT, - ACTIONS(1290), 6, + [14496] = 3, + ACTIONS(1542), 1, + aux_sym_autolink_token1, + ACTIONS(1256), 3, + sym__verbatim_begin, + sym__whitespace1, + anon_sym_LF, + ACTIONS(1258), 33, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, anon_sym_BSLASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, sym_en_dash, sym_backslash_escape, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + aux_sym__text_token1, + [14540] = 5, + ACTIONS(1274), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(1276), 1, anon_sym_LBRACK, + ACTIONS(1279), 1, + anon_sym_LPAREN, + ACTIONS(1258), 6, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK_RBRACK2, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1288), 30, + ACTIONS(1256), 28, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -28845,8 +28954,6 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol, anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, - anon_sym_LBRACK_RBRACK2, - anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, anon_sym_WIP, @@ -28856,19 +28963,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [14524] = 4, - ACTIONS(1543), 1, - aux_sym__text_token1, - STATE(449), 1, - aux_sym__text, - ACTIONS(1296), 5, + [14588] = 2, + ACTIONS(1429), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(1294), 30, + aux_sym__text_token1, + ACTIONS(1427), 31, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28898,17 +29003,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [14570] = 2, - ACTIONS(1454), 6, + [14630] = 3, + ACTIONS(1544), 1, + anon_sym_GT, + ACTIONS(1290), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1452), 31, + ACTIONS(1288), 30, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28938,8 +29044,50 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [14612] = 3, + [14674] = 4, ACTIONS(1546), 1, + aux_sym__text_token1, + STATE(452), 1, + aux_sym__text, + ACTIONS(1296), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + anon_sym_LBRACE, + ACTIONS(1294), 30, + sym__verbatim_begin, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + sym__whitespace1, + anon_sym_LF, + [14720] = 3, + ACTIONS(1549), 1, sym__verbatim_begin, ACTIONS(1258), 6, anon_sym_BSLASH, @@ -28949,7 +29097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, aux_sym__text_token1, ACTIONS(1256), 30, - ts_builtin_sym_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -28979,19 +29127,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [14656] = 4, - ACTIONS(1549), 1, - anon_sym_LBRACE, - STATE(456), 1, - sym_comment, - ACTIONS(1284), 5, + [14764] = 2, + ACTIONS(1429), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1282), 30, + ACTIONS(1427), 31, sym__verbatim_begin, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29021,10 +29167,10 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [14702] = 4, - ACTIONS(1551), 1, + [14806] = 4, + ACTIONS(1552), 1, anon_sym_LBRACE, - STATE(609), 1, + STATE(462), 1, sym_comment, ACTIONS(1284), 5, anon_sym_BSLASH, @@ -29063,17 +29209,19 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [14748] = 2, - ACTIONS(1290), 6, + [14852] = 4, + ACTIONS(1554), 1, + anon_sym_LBRACE, + STATE(535), 1, + sym_comment, + ACTIONS(1284), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1288), 31, + ACTIONS(1282), 30, sym__verbatim_begin, - sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29103,15 +29251,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [14790] = 2, - ACTIONS(1418), 6, + [14898] = 2, + ACTIONS(1433), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1416), 31, + ACTIONS(1431), 31, sym__verbatim_begin, sym_strong_end, anon_sym_LBRACE_, @@ -29143,17 +29291,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [14832] = 2, - ACTIONS(1422), 6, + [14940] = 2, + ACTIONS(1465), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1420), 31, + ACTIONS(1463), 31, sym__verbatim_begin, - sym_strong_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29183,17 +29331,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [14874] = 2, - ACTIONS(1426), 6, + [14982] = 2, + ACTIONS(1469), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1424), 31, + ACTIONS(1467), 31, sym__verbatim_begin, - sym_strong_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29223,15 +29371,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [14916] = 2, - ACTIONS(1430), 6, + [15024] = 2, + ACTIONS(1290), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1428), 31, + ACTIONS(1288), 31, sym__verbatim_begin, sym_strong_end, anon_sym_LBRACE_, @@ -29263,15 +29411,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [14958] = 2, - ACTIONS(1434), 6, + [15066] = 2, + ACTIONS(1437), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1432), 31, + ACTIONS(1435), 31, sym__verbatim_begin, sym_strong_end, anon_sym_LBRACE_, @@ -29303,15 +29451,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [15000] = 2, - ACTIONS(1410), 6, + [15108] = 2, + ACTIONS(1441), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1408), 31, + ACTIONS(1439), 31, sym__verbatim_begin, sym_strong_end, anon_sym_LBRACE_, @@ -29343,15 +29491,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [15042] = 2, - ACTIONS(1438), 6, + [15150] = 2, + ACTIONS(1445), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1436), 31, + ACTIONS(1443), 31, sym__verbatim_begin, sym_strong_end, anon_sym_LBRACE_, @@ -29383,15 +29531,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [15084] = 2, - ACTIONS(1442), 6, + [15192] = 2, + ACTIONS(1449), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1440), 31, + ACTIONS(1447), 31, sym__verbatim_begin, sym_strong_end, anon_sym_LBRACE_, @@ -29423,17 +29571,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [15126] = 2, - ACTIONS(1458), 6, + [15234] = 2, + ACTIONS(1453), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1456), 31, + ACTIONS(1451), 31, sym__verbatim_begin, - ts_builtin_sym_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29463,15 +29611,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [15168] = 2, - ACTIONS(1450), 6, + [15276] = 2, + ACTIONS(1410), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1448), 31, + ACTIONS(1408), 31, sym__verbatim_begin, sym_strong_end, anon_sym_LBRACE_, @@ -29503,15 +29651,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [15210] = 2, - ACTIONS(1454), 6, + [15318] = 2, + ACTIONS(1457), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1452), 31, + ACTIONS(1455), 31, sym__verbatim_begin, sym_strong_end, anon_sym_LBRACE_, @@ -29543,15 +29691,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [15252] = 2, - ACTIONS(1458), 6, + [15360] = 2, + ACTIONS(1461), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1456), 31, + ACTIONS(1459), 31, sym__verbatim_begin, sym_strong_end, anon_sym_LBRACE_, @@ -29583,17 +29731,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [15294] = 2, - ACTIONS(1462), 6, + [15402] = 2, + ACTIONS(1473), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1460), 31, + ACTIONS(1471), 31, sym__verbatim_begin, - sym_strong_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -29623,15 +29771,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [15336] = 2, - ACTIONS(1466), 6, + [15444] = 2, + ACTIONS(1465), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1464), 31, + ACTIONS(1463), 31, sym__verbatim_begin, sym_strong_end, anon_sym_LBRACE_, @@ -29663,15 +29811,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [15378] = 2, - ACTIONS(1470), 6, + [15486] = 2, + ACTIONS(1469), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1468), 31, + ACTIONS(1467), 31, sym__verbatim_begin, sym_strong_end, anon_sym_LBRACE_, @@ -29703,15 +29851,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [15420] = 2, - ACTIONS(1474), 6, + [15528] = 2, + ACTIONS(1473), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1472), 31, + ACTIONS(1471), 31, sym__verbatim_begin, sym_strong_end, anon_sym_LBRACE_, @@ -29743,15 +29891,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [15462] = 2, - ACTIONS(1478), 6, + [15570] = 2, + ACTIONS(1477), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1476), 31, + ACTIONS(1475), 31, sym__verbatim_begin, sym_strong_end, anon_sym_LBRACE_, @@ -29783,15 +29931,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [15504] = 2, - ACTIONS(1482), 6, + [15612] = 2, + ACTIONS(1481), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1480), 31, + ACTIONS(1479), 31, sym__verbatim_begin, sym_strong_end, anon_sym_LBRACE_, @@ -29823,15 +29971,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [15546] = 2, - ACTIONS(1486), 6, + [15654] = 2, + ACTIONS(1485), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1484), 31, + ACTIONS(1483), 31, sym__verbatim_begin, sym_strong_end, anon_sym_LBRACE_, @@ -29863,15 +30011,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [15588] = 2, - ACTIONS(1490), 6, + [15696] = 2, + ACTIONS(1489), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1488), 31, + ACTIONS(1487), 31, sym__verbatim_begin, sym_strong_end, anon_sym_LBRACE_, @@ -29903,15 +30051,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [15630] = 2, - ACTIONS(1494), 6, + [15738] = 2, + ACTIONS(1493), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1492), 31, + ACTIONS(1491), 31, sym__verbatim_begin, sym_strong_end, anon_sym_LBRACE_, @@ -29943,15 +30091,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [15672] = 2, - ACTIONS(1498), 6, + [15780] = 2, + ACTIONS(1497), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1496), 31, + ACTIONS(1495), 31, sym__verbatim_begin, sym_strong_end, anon_sym_LBRACE_, @@ -29983,15 +30131,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [15714] = 2, - ACTIONS(1502), 6, + [15822] = 2, + ACTIONS(1501), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1500), 31, + ACTIONS(1499), 31, sym__verbatim_begin, sym_strong_end, anon_sym_LBRACE_, @@ -30023,15 +30171,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [15756] = 2, - ACTIONS(1446), 6, + [15864] = 2, + ACTIONS(1505), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1444), 31, + ACTIONS(1503), 31, sym__verbatim_begin, sym_strong_end, anon_sym_LBRACE_, @@ -30063,15 +30211,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [15798] = 2, - ACTIONS(1506), 6, + [15906] = 2, + ACTIONS(1414), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1504), 31, + ACTIONS(1412), 31, sym__verbatim_begin, sym_strong_end, anon_sym_LBRACE_, @@ -30103,17 +30251,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [15840] = 2, - ACTIONS(1462), 6, + [15948] = 2, + ACTIONS(1418), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1460), 31, + ACTIONS(1416), 31, sym__verbatim_begin, - ts_builtin_sym_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30143,17 +30291,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [15882] = 2, - ACTIONS(1466), 6, + [15990] = 2, + ACTIONS(1422), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1464), 31, + ACTIONS(1420), 31, sym__verbatim_begin, - ts_builtin_sym_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30183,18 +30331,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [15924] = 3, - ACTIONS(1553), 1, - sym__verbatim_begin, - ACTIONS(1258), 6, + [16032] = 2, + ACTIONS(1509), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1256), 30, - sym_superscript_end, + ACTIONS(1507), 31, + sym__verbatim_begin, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30224,7 +30371,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [15968] = 2, + [16074] = 2, ACTIONS(1513), 6, anon_sym_BSLASH, sym_en_dash, @@ -30234,7 +30381,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__text_token1, ACTIONS(1511), 31, sym__verbatim_begin, - sym_superscript_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30264,17 +30411,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [16010] = 2, - ACTIONS(1414), 6, + [16116] = 2, + ACTIONS(1477), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1412), 31, + ACTIONS(1475), 31, sym__verbatim_begin, - sym_superscript_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30304,17 +30451,18 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [16052] = 2, - ACTIONS(1470), 6, + [16158] = 3, + ACTIONS(1556), 1, + sym__verbatim_begin, + ACTIONS(1258), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1468), 31, - sym__verbatim_begin, - ts_builtin_sym_end, + ACTIONS(1256), 30, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30344,17 +30492,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [16094] = 2, - ACTIONS(1474), 6, + [16202] = 2, + ACTIONS(1429), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1472), 31, + ACTIONS(1427), 31, sym__verbatim_begin, - ts_builtin_sym_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30384,17 +30532,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [16136] = 2, - ACTIONS(1478), 6, + [16244] = 2, + ACTIONS(1433), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1476), 31, + ACTIONS(1431), 31, sym__verbatim_begin, - ts_builtin_sym_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30424,17 +30572,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [16178] = 2, - ACTIONS(1290), 6, + [16286] = 2, + ACTIONS(1481), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1288), 31, + ACTIONS(1479), 31, sym__verbatim_begin, - sym_superscript_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30464,17 +30612,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [16220] = 2, - ACTIONS(1418), 6, + [16328] = 2, + ACTIONS(1485), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1416), 31, + ACTIONS(1483), 31, sym__verbatim_begin, - sym_superscript_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30504,17 +30652,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [16262] = 2, - ACTIONS(1482), 6, + [16370] = 2, + ACTIONS(1290), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1480), 31, + ACTIONS(1288), 31, sym__verbatim_begin, - ts_builtin_sym_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30544,15 +30692,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [16304] = 2, - ACTIONS(1422), 6, + [16412] = 2, + ACTIONS(1437), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1420), 31, + ACTIONS(1435), 31, sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, @@ -30584,17 +30732,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [16346] = 2, - ACTIONS(1426), 6, + [16454] = 2, + ACTIONS(1489), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1424), 31, + ACTIONS(1487), 31, sym__verbatim_begin, - sym_superscript_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30624,15 +30772,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [16388] = 2, - ACTIONS(1430), 6, + [16496] = 2, + ACTIONS(1441), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1428), 31, + ACTIONS(1439), 31, sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, @@ -30664,15 +30812,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [16430] = 2, - ACTIONS(1434), 6, + [16538] = 2, + ACTIONS(1445), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1432), 31, + ACTIONS(1443), 31, sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, @@ -30704,15 +30852,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [16472] = 2, - ACTIONS(1410), 6, + [16580] = 2, + ACTIONS(1449), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1408), 31, + ACTIONS(1447), 31, sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, @@ -30744,15 +30892,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [16514] = 2, - ACTIONS(1438), 6, + [16622] = 2, + ACTIONS(1453), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1436), 31, + ACTIONS(1451), 31, sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, @@ -30784,15 +30932,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [16556] = 2, - ACTIONS(1442), 6, + [16664] = 2, + ACTIONS(1410), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1440), 31, + ACTIONS(1408), 31, sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, @@ -30824,17 +30972,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [16598] = 2, - ACTIONS(1486), 6, + [16706] = 2, + ACTIONS(1457), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1484), 31, + ACTIONS(1455), 31, sym__verbatim_begin, - ts_builtin_sym_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30864,17 +31012,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [16640] = 2, - ACTIONS(1490), 6, + [16748] = 2, + ACTIONS(1461), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1488), 31, + ACTIONS(1459), 31, sym__verbatim_begin, - ts_builtin_sym_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30904,15 +31052,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [16682] = 2, - ACTIONS(1494), 6, + [16790] = 2, + ACTIONS(1493), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1492), 31, + ACTIONS(1491), 31, sym__verbatim_begin, ts_builtin_sym_end, anon_sym_LBRACE_, @@ -30944,17 +31092,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [16724] = 2, - ACTIONS(1450), 6, + [16832] = 2, + ACTIONS(1497), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1448), 31, + ACTIONS(1495), 31, sym__verbatim_begin, - sym_superscript_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -30984,17 +31132,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [16766] = 2, - ACTIONS(1454), 6, + [16874] = 2, + ACTIONS(1501), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1452), 31, + ACTIONS(1499), 31, sym__verbatim_begin, - sym_superscript_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31024,15 +31172,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [16808] = 2, - ACTIONS(1458), 6, + [16916] = 2, + ACTIONS(1465), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1456), 31, + ACTIONS(1463), 31, sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, @@ -31064,15 +31212,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [16850] = 2, - ACTIONS(1462), 6, + [16958] = 2, + ACTIONS(1469), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1460), 31, + ACTIONS(1467), 31, sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, @@ -31104,15 +31252,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [16892] = 2, - ACTIONS(1466), 6, + [17000] = 2, + ACTIONS(1473), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1464), 31, + ACTIONS(1471), 31, sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, @@ -31144,15 +31292,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [16934] = 2, - ACTIONS(1470), 6, + [17042] = 2, + ACTIONS(1477), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1468), 31, + ACTIONS(1475), 31, sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, @@ -31184,15 +31332,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [16976] = 2, - ACTIONS(1474), 6, + [17084] = 2, + ACTIONS(1481), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1472), 31, + ACTIONS(1479), 31, sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, @@ -31224,15 +31372,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [17018] = 2, - ACTIONS(1478), 6, + [17126] = 2, + ACTIONS(1485), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1476), 31, + ACTIONS(1483), 31, sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, @@ -31264,15 +31412,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [17060] = 2, - ACTIONS(1482), 6, + [17168] = 2, + ACTIONS(1489), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1480), 31, + ACTIONS(1487), 31, sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, @@ -31304,15 +31452,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [17102] = 2, - ACTIONS(1486), 6, + [17210] = 2, + ACTIONS(1493), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1484), 31, + ACTIONS(1491), 31, sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, @@ -31344,15 +31492,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [17144] = 2, - ACTIONS(1490), 6, + [17252] = 2, + ACTIONS(1497), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1488), 31, + ACTIONS(1495), 31, sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, @@ -31384,15 +31532,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [17186] = 2, - ACTIONS(1494), 6, + [17294] = 2, + ACTIONS(1501), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1492), 31, + ACTIONS(1499), 31, sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, @@ -31424,15 +31572,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [17228] = 2, - ACTIONS(1498), 6, + [17336] = 2, + ACTIONS(1505), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1496), 31, + ACTIONS(1503), 31, sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, @@ -31464,15 +31612,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [17270] = 2, - ACTIONS(1502), 6, + [17378] = 2, + ACTIONS(1414), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1500), 31, + ACTIONS(1412), 31, sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, @@ -31504,15 +31652,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [17312] = 2, - ACTIONS(1446), 6, + [17420] = 2, + ACTIONS(1418), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1444), 31, + ACTIONS(1416), 31, sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, @@ -31544,15 +31692,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [17354] = 2, - ACTIONS(1506), 6, + [17462] = 2, + ACTIONS(1422), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1504), 31, + ACTIONS(1420), 31, sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, @@ -31584,17 +31732,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [17396] = 2, - ACTIONS(1498), 6, + [17504] = 2, + ACTIONS(1509), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1496), 31, + ACTIONS(1507), 31, sym__verbatim_begin, - ts_builtin_sym_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31624,17 +31772,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [17438] = 2, - ACTIONS(1502), 6, + [17546] = 2, + ACTIONS(1513), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1500), 31, + ACTIONS(1511), 31, sym__verbatim_begin, - ts_builtin_sym_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31664,18 +31812,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [17480] = 3, - ACTIONS(1556), 1, - sym__verbatim_begin, - ACTIONS(1258), 6, + [17588] = 2, + ACTIONS(1505), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1256), 30, - sym_subscript_end, + ACTIONS(1503), 31, + sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31705,17 +31852,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [17524] = 2, - ACTIONS(1513), 6, + [17630] = 2, + ACTIONS(1561), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1511), 31, + ACTIONS(1559), 31, sym__verbatim_begin, - sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31735,6 +31880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_LBRACK_RBRACK2, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -31745,17 +31891,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [17566] = 2, - ACTIONS(1506), 6, + [17671] = 2, + ACTIONS(1565), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1504), 31, + ACTIONS(1563), 31, sym__verbatim_begin, - sym_emphasis_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31785,16 +31930,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [17608] = 2, - ACTIONS(1561), 5, + [17712] = 2, + ACTIONS(1569), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1559), 31, + ACTIONS(1567), 31, sym__verbatim_begin, - sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31814,6 +31958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_LBRACK_RBRACK2, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -31824,16 +31969,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [17649] = 2, - ACTIONS(1438), 6, + [17753] = 2, + ACTIONS(1573), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1436), 30, + ACTIONS(1571), 31, sym__verbatim_begin, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31863,16 +32008,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [17690] = 2, - ACTIONS(1442), 6, + [17794] = 2, + ACTIONS(1577), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1440), 30, + ACTIONS(1575), 31, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31902,16 +32047,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [17731] = 2, - ACTIONS(1565), 5, + [17835] = 3, + ACTIONS(1579), 1, + sym__verbatim_begin, + ACTIONS(1258), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1563), 31, - sym__verbatim_begin, - sym_insert_end, + ACTIONS(1256), 29, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31941,16 +32087,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [17772] = 2, - ACTIONS(1569), 5, + [17878] = 2, + ACTIONS(1429), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1567), 31, + ACTIONS(1427), 30, sym__verbatim_begin, - sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -31980,15 +32126,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [17813] = 2, - ACTIONS(1450), 6, + [17919] = 2, + ACTIONS(1433), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1448), 30, + ACTIONS(1431), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32019,16 +32165,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [17854] = 2, - ACTIONS(1454), 6, + [17960] = 2, + ACTIONS(1577), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1452), 30, + ACTIONS(1575), 31, sym__verbatim_begin, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32058,16 +32204,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [17895] = 2, - ACTIONS(1410), 6, + [18001] = 2, + ACTIONS(1573), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1408), 30, + ACTIONS(1571), 31, sym__verbatim_begin, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32097,15 +32243,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [17936] = 2, - ACTIONS(1462), 6, + [18042] = 2, + ACTIONS(1290), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1460), 30, + ACTIONS(1288), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32136,15 +32282,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [17977] = 2, - ACTIONS(1466), 6, + [18083] = 2, + ACTIONS(1437), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1464), 30, + ACTIONS(1435), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32175,16 +32321,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [18018] = 2, - ACTIONS(1470), 6, + [18124] = 2, + ACTIONS(1561), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1468), 30, + ACTIONS(1559), 31, sym__verbatim_begin, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32214,15 +32360,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [18059] = 2, - ACTIONS(1474), 6, + [18165] = 2, + ACTIONS(1441), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1472), 30, + ACTIONS(1439), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32253,15 +32399,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [18100] = 2, - ACTIONS(1478), 6, + [18206] = 2, + ACTIONS(1445), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1476), 30, + ACTIONS(1443), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32292,15 +32438,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [18141] = 2, - ACTIONS(1482), 6, + [18247] = 2, + ACTIONS(1449), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1480), 30, + ACTIONS(1447), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32331,15 +32477,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [18182] = 2, - ACTIONS(1486), 6, + [18288] = 2, + ACTIONS(1453), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1484), 30, + ACTIONS(1451), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32370,15 +32516,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [18223] = 2, - ACTIONS(1490), 6, + [18329] = 2, + ACTIONS(1410), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1488), 30, + ACTIONS(1408), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32409,15 +32555,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [18264] = 2, - ACTIONS(1494), 6, + [18370] = 2, + ACTIONS(1457), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1492), 30, + ACTIONS(1455), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32448,15 +32594,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [18305] = 2, - ACTIONS(1498), 6, + [18411] = 2, + ACTIONS(1461), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1496), 30, + ACTIONS(1459), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32487,16 +32633,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [18346] = 2, - ACTIONS(1502), 6, + [18452] = 2, + ACTIONS(1584), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1500), 30, + ACTIONS(1582), 31, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32526,16 +32672,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [18387] = 2, - ACTIONS(1446), 6, + [18493] = 2, + ACTIONS(1588), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1444), 30, + ACTIONS(1586), 31, sym__verbatim_begin, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32565,15 +32711,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [18428] = 2, - ACTIONS(1506), 6, + [18534] = 2, + ACTIONS(1465), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1504), 30, + ACTIONS(1463), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32604,16 +32750,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [18469] = 3, - ACTIONS(1571), 1, - sym_emphasis_end, - ACTIONS(1284), 5, + [18575] = 2, + ACTIONS(1469), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1282), 30, + ACTIONS(1467), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32644,16 +32789,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [18512] = 2, - ACTIONS(1569), 5, + [18616] = 2, + ACTIONS(1473), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1567), 31, + ACTIONS(1471), 30, sym__verbatim_begin, - sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32683,16 +32828,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [18553] = 2, - ACTIONS(1569), 5, + [18657] = 2, + ACTIONS(1477), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1567), 31, + ACTIONS(1475), 30, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32722,16 +32867,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [18594] = 2, - ACTIONS(1565), 5, + [18698] = 2, + ACTIONS(1481), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1563), 31, + ACTIONS(1479), 30, sym__verbatim_begin, - sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32761,16 +32906,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [18635] = 2, - ACTIONS(1565), 5, + [18739] = 2, + ACTIONS(1485), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1563), 31, + ACTIONS(1483), 30, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32800,14 +32945,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [18676] = 2, - ACTIONS(1575), 5, + [18780] = 2, + ACTIONS(1489), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1573), 31, + ACTIONS(1487), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32828,7 +32974,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_LBRACK_RBRACK2, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -32839,16 +32984,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [18717] = 2, - ACTIONS(1569), 5, + [18821] = 2, + ACTIONS(1493), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1567), 31, + ACTIONS(1491), 30, sym__verbatim_begin, - sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32878,16 +33023,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [18758] = 2, - ACTIONS(1569), 5, + [18862] = 2, + ACTIONS(1497), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1567), 31, + ACTIONS(1495), 30, sym__verbatim_begin, - sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32917,14 +33062,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [18799] = 2, - ACTIONS(1565), 5, + [18903] = 2, + ACTIONS(1501), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1563), 31, + ACTIONS(1499), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -32945,7 +33091,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_LBRACK_RBRACK2, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -32956,16 +33101,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [18840] = 2, - ACTIONS(1575), 5, + [18944] = 2, + ACTIONS(1505), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1573), 31, + ACTIONS(1503), 30, sym__verbatim_begin, - sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -32995,16 +33140,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [18881] = 2, - ACTIONS(1565), 5, + [18985] = 2, + ACTIONS(1414), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1563), 31, + ACTIONS(1412), 30, sym__verbatim_begin, - sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33034,16 +33179,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [18922] = 2, - ACTIONS(1579), 5, + [19026] = 2, + ACTIONS(1418), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1577), 31, + ACTIONS(1416), 30, sym__verbatim_begin, - ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33073,16 +33218,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [18963] = 2, - ACTIONS(1565), 5, + [19067] = 2, + ACTIONS(1422), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1563), 31, + ACTIONS(1420), 30, sym__verbatim_begin, - sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33112,16 +33257,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [19004] = 2, - ACTIONS(1583), 5, + [19108] = 2, + ACTIONS(1509), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1581), 31, + ACTIONS(1507), 30, sym__verbatim_begin, - sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33151,16 +33296,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [19045] = 2, - ACTIONS(1575), 5, + [19149] = 2, + ACTIONS(1513), 6, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, + anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1573), 31, + ACTIONS(1511), 30, sym__verbatim_begin, - sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33190,16 +33335,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [19086] = 2, - ACTIONS(1579), 5, + [19190] = 2, + ACTIONS(1584), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1577), 31, + ACTIONS(1582), 31, sym__verbatim_begin, - sym_strong_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33229,17 +33374,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [19127] = 3, - ACTIONS(1585), 1, - sym_strong_end, - ACTIONS(1284), 5, + [19231] = 2, + ACTIONS(1588), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1282), 30, + ACTIONS(1586), 31, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33269,16 +33413,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [19170] = 2, - ACTIONS(1565), 5, + [19272] = 2, + ACTIONS(1588), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1563), 31, + ACTIONS(1586), 31, sym__verbatim_begin, - sym_highlighted_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33308,16 +33452,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [19211] = 2, - ACTIONS(1561), 5, + [19313] = 2, + ACTIONS(1584), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1559), 31, + ACTIONS(1582), 31, sym__verbatim_begin, - sym__square_bracket_span_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33347,16 +33491,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [19252] = 2, - ACTIONS(1569), 5, + [19354] = 2, + ACTIONS(1592), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1567), 31, + ACTIONS(1590), 31, sym__verbatim_begin, - sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33376,6 +33519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_LBRACK_RBRACK2, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -33386,16 +33530,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [19293] = 2, - ACTIONS(1583), 5, + [19395] = 2, + ACTIONS(1573), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1581), 31, + ACTIONS(1571), 31, sym__verbatim_begin, - sym_emphasis_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33425,16 +33569,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [19334] = 2, - ACTIONS(1583), 5, + [19436] = 2, + ACTIONS(1592), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1581), 31, + ACTIONS(1590), 31, sym__verbatim_begin, - sym_subscript_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33464,16 +33608,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [19375] = 2, - ACTIONS(1583), 5, + [19477] = 2, + ACTIONS(1592), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1581), 31, + ACTIONS(1590), 31, sym__verbatim_begin, - sym_insert_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33503,16 +33647,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [19416] = 2, - ACTIONS(1561), 5, + [19518] = 2, + ACTIONS(1569), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1559), 31, + ACTIONS(1567), 31, sym__verbatim_begin, - sym_delete_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33542,16 +33686,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [19457] = 2, - ACTIONS(1575), 5, + [19559] = 2, + ACTIONS(1584), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1573), 31, + ACTIONS(1582), 31, sym__verbatim_begin, - sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33571,6 +33714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_LBRACK_RBRACK2, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -33581,16 +33725,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [19498] = 2, - ACTIONS(1569), 5, + [19600] = 2, + ACTIONS(1588), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1567), 31, + ACTIONS(1586), 31, sym__verbatim_begin, - sym_delete_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33620,14 +33764,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [19539] = 2, - ACTIONS(1565), 5, + [19641] = 2, + ACTIONS(1584), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1563), 31, + ACTIONS(1582), 31, sym__verbatim_begin, sym_strong_end, anon_sym_LBRACE_, @@ -33659,16 +33803,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [19580] = 3, - ACTIONS(1571), 1, - sym_strong_end, - ACTIONS(1284), 5, + [19682] = 3, + ACTIONS(1594), 1, + sym_emphasis_end, + ACTIONS(1573), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1282), 30, + ACTIONS(1571), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -33699,16 +33843,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [19623] = 2, - ACTIONS(1583), 5, + [19725] = 2, + ACTIONS(1569), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1581), 31, + ACTIONS(1567), 31, sym__verbatim_begin, - ts_builtin_sym_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33738,16 +33882,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [19664] = 2, - ACTIONS(1575), 5, + [19766] = 2, + ACTIONS(1569), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1573), 31, + ACTIONS(1567), 31, sym__verbatim_begin, - ts_builtin_sym_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33777,7 +33921,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [19705] = 2, + [19807] = 2, ACTIONS(1561), 5, anon_sym_BSLASH, sym_en_dash, @@ -33786,6 +33930,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__text_token1, ACTIONS(1559), 31, sym__verbatim_begin, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33805,7 +33950,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_LBRACK_RBRACK2, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -33816,16 +33960,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [19746] = 2, - ACTIONS(1583), 5, + [19848] = 2, + ACTIONS(1569), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1581), 31, + ACTIONS(1567), 31, sym__verbatim_begin, - sym__square_bracket_span_end, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33855,15 +33999,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [19787] = 2, - ACTIONS(1569), 5, + [19889] = 2, + ACTIONS(1592), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1567), 31, + ACTIONS(1590), 31, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33883,7 +34028,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_LBRACK_RBRACK2, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -33894,17 +34038,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [19828] = 3, - ACTIONS(1585), 1, - sym_emphasis_end, - ACTIONS(1284), 5, + [19930] = 2, + ACTIONS(1584), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1282), 30, + ACTIONS(1582), 31, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33934,16 +34077,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [19871] = 2, - ACTIONS(1579), 5, + [19971] = 2, + ACTIONS(1592), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1577), 31, + ACTIONS(1590), 31, sym__verbatim_begin, - sym_insert_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -33973,16 +34116,17 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [19912] = 2, - ACTIONS(1579), 5, + [20012] = 3, + ACTIONS(1594), 1, + sym_strong_end, + ACTIONS(1573), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1577), 31, + ACTIONS(1571), 30, sym__verbatim_begin, - sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -34012,16 +34156,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [19953] = 2, - ACTIONS(1579), 5, + [20055] = 2, + ACTIONS(1561), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1577), 31, + ACTIONS(1559), 31, sym__verbatim_begin, - sym_subscript_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -34051,16 +34195,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [19994] = 2, - ACTIONS(1583), 5, + [20096] = 2, + ACTIONS(1565), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1581), 31, + ACTIONS(1563), 31, sym__verbatim_begin, - sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -34080,6 +34223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_LBRACK_RBRACK2, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -34090,16 +34234,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [20035] = 2, - ACTIONS(1561), 5, + [20137] = 2, + ACTIONS(1592), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1559), 31, + ACTIONS(1590), 31, sym__verbatim_begin, - sym_superscript_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -34129,16 +34273,15 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [20076] = 2, - ACTIONS(1569), 5, + [20178] = 2, + ACTIONS(1577), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1567), 31, + ACTIONS(1575), 31, sym__verbatim_begin, - sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -34158,6 +34301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_LBRACK_RBRACK2, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -34168,16 +34312,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [20117] = 2, - ACTIONS(1561), 5, + [20219] = 2, + ACTIONS(1573), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1559), 31, + ACTIONS(1571), 31, sym__verbatim_begin, - ts_builtin_sym_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -34207,16 +34351,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [20158] = 2, - ACTIONS(1579), 5, + [20260] = 2, + ACTIONS(1561), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1577), 31, + ACTIONS(1559), 31, sym__verbatim_begin, - sym_emphasis_end, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -34246,16 +34390,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [20199] = 2, - ACTIONS(1579), 5, + [20301] = 2, + ACTIONS(1565), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1577), 31, + ACTIONS(1563), 31, sym__verbatim_begin, - sym_highlighted_end, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -34285,16 +34429,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [20240] = 2, - ACTIONS(1561), 5, + [20342] = 2, + ACTIONS(1592), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1559), 31, + ACTIONS(1590), 31, sym__verbatim_begin, - sym_emphasis_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -34324,16 +34468,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [20281] = 2, - ACTIONS(1575), 5, + [20383] = 2, + ACTIONS(1565), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1573), 31, + ACTIONS(1563), 31, sym__verbatim_begin, - sym_emphasis_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -34363,16 +34507,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [20322] = 2, - ACTIONS(1583), 5, + [20424] = 2, + ACTIONS(1561), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1581), 31, + ACTIONS(1559), 31, sym__verbatim_begin, - sym_delete_end, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -34402,16 +34546,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [20363] = 2, - ACTIONS(1575), 5, + [20465] = 2, + ACTIONS(1577), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1573), 31, + ACTIONS(1575), 31, sym__verbatim_begin, - sym__square_bracket_span_end, + sym_strong_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -34441,15 +34585,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [20404] = 2, - ACTIONS(1583), 5, + [20506] = 2, + ACTIONS(1577), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1581), 31, + ACTIONS(1575), 31, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -34469,7 +34614,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_LBRACK_RBRACK2, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -34480,16 +34624,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [20445] = 2, - ACTIONS(1565), 5, + [20547] = 2, + ACTIONS(1561), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1563), 31, + ACTIONS(1559), 31, sym__verbatim_begin, - sym__square_bracket_span_end, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -34519,16 +34663,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [20486] = 2, - ACTIONS(1583), 5, + [20588] = 2, + ACTIONS(1588), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1581), 31, + ACTIONS(1586), 31, sym__verbatim_begin, - sym_superscript_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -34558,16 +34702,134 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [20527] = 2, - ACTIONS(1569), 5, + [20629] = 2, + ACTIONS(1588), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1567), 31, + ACTIONS(1586), 31, sym__verbatim_begin, + sym__square_bracket_span_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + sym__whitespace1, + anon_sym_LF, + [20670] = 2, + ACTIONS(1573), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1571), 31, + sym__verbatim_begin, + sym_highlighted_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + sym__whitespace1, + anon_sym_LF, + [20711] = 2, + ACTIONS(1584), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1582), 31, + sym__verbatim_begin, + sym__square_bracket_span_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + sym__whitespace1, + anon_sym_LF, + [20752] = 3, + ACTIONS(1596), 1, sym_emphasis_end, + ACTIONS(1573), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1571), 30, + sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -34597,16 +34859,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [20568] = 2, - ACTIONS(1575), 5, + [20795] = 2, + ACTIONS(1565), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1573), 31, + ACTIONS(1563), 31, sym__verbatim_begin, - sym_subscript_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -34636,16 +34898,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [20609] = 2, - ACTIONS(1579), 5, + [20836] = 2, + ACTIONS(1569), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1577), 31, + ACTIONS(1567), 31, sym__verbatim_begin, - sym_superscript_end, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -34675,15 +34937,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [20650] = 2, - ACTIONS(1579), 5, + [20877] = 2, + ACTIONS(1588), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1577), 31, + ACTIONS(1586), 31, sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -34703,7 +34966,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_CARET, anon_sym_BANG_LBRACK, anon_sym_LBRACK_RBRACK2, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_TODO, @@ -34714,16 +34976,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [20691] = 2, - ACTIONS(1579), 5, + [20918] = 2, + ACTIONS(1584), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1577), 31, + ACTIONS(1582), 31, sym__verbatim_begin, - sym_delete_end, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -34753,16 +35015,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [20732] = 2, - ACTIONS(1561), 5, + [20959] = 2, + ACTIONS(1584), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1559), 31, + ACTIONS(1582), 31, sym__verbatim_begin, - sym_subscript_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -34792,14 +35054,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [20773] = 2, - ACTIONS(1561), 5, + [21000] = 2, + ACTIONS(1577), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1559), 31, + ACTIONS(1575), 31, sym__verbatim_begin, sym_highlighted_end, anon_sym_LBRACE_, @@ -34831,17 +35093,55 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [20814] = 3, - ACTIONS(1587), 1, + [21041] = 2, + ACTIONS(1569), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1567), 31, sym__verbatim_begin, - ACTIONS(1258), 6, + sym_superscript_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + sym__whitespace1, + anon_sym_LF, + [21082] = 2, + ACTIONS(1588), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1256), 29, + ACTIONS(1586), 31, + sym__verbatim_begin, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -34871,16 +35171,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [20857] = 2, - ACTIONS(1513), 6, + [21123] = 2, + ACTIONS(1565), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1511), 30, + ACTIONS(1563), 31, sym__verbatim_begin, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -34910,16 +35210,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [20898] = 2, - ACTIONS(1414), 6, + [21164] = 2, + ACTIONS(1577), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1412), 30, + ACTIONS(1575), 31, sym__verbatim_begin, + sym_delete_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -34949,16 +35249,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [20939] = 2, - ACTIONS(1575), 5, + [21205] = 2, + ACTIONS(1569), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1573), 31, + ACTIONS(1567), 31, sym__verbatim_begin, - sym_insert_end, + sym_highlighted_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -34988,16 +35288,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [20980] = 2, - ACTIONS(1290), 6, + [21246] = 2, + ACTIONS(1573), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1288), 30, + ACTIONS(1571), 31, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -35027,16 +35327,55 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [21021] = 2, - ACTIONS(1418), 6, + [21287] = 2, + ACTIONS(1592), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1416), 30, + ACTIONS(1590), 31, + sym__verbatim_begin, + sym__square_bracket_span_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + sym__whitespace1, + anon_sym_LF, + [21328] = 2, + ACTIONS(1561), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1559), 31, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -35066,14 +35405,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [21062] = 2, - ACTIONS(1575), 5, + [21369] = 2, + ACTIONS(1573), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1573), 31, + ACTIONS(1571), 31, sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, @@ -35105,14 +35444,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [21103] = 2, - ACTIONS(1565), 5, + [21410] = 2, + ACTIONS(1592), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1563), 31, + ACTIONS(1590), 31, sym__verbatim_begin, sym_superscript_end, anon_sym_LBRACE_, @@ -35144,7 +35483,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [21144] = 2, + [21451] = 2, ACTIONS(1561), 5, anon_sym_BSLASH, sym_en_dash, @@ -35153,7 +35492,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__text_token1, ACTIONS(1559), 31, sym__verbatim_begin, - sym_insert_end, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -35183,16 +35522,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [21185] = 2, - ACTIONS(1422), 6, + [21492] = 2, + ACTIONS(1565), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1420), 30, + ACTIONS(1563), 31, sym__verbatim_begin, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -35222,16 +35561,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [21226] = 2, - ACTIONS(1426), 6, + [21533] = 2, + ACTIONS(1561), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1424), 30, + ACTIONS(1559), 31, sym__verbatim_begin, + sym_superscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -35261,16 +35600,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [21267] = 2, - ACTIONS(1430), 6, + [21574] = 2, + ACTIONS(1577), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1428), 30, + ACTIONS(1575), 31, sym__verbatim_begin, + sym_insert_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -35300,16 +35639,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [21308] = 2, - ACTIONS(1434), 6, + [21615] = 2, + ACTIONS(1584), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1432), 30, + ACTIONS(1582), 31, sym__verbatim_begin, + sym_subscript_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -35339,16 +35678,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [21349] = 2, - ACTIONS(1458), 6, + [21656] = 2, + ACTIONS(1569), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, - anon_sym_LBRACE, aux_sym__text_token1, - ACTIONS(1456), 30, + ACTIONS(1567), 31, sym__verbatim_begin, + sym_emphasis_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -35378,14 +35717,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [21390] = 2, - ACTIONS(1579), 5, + [21697] = 3, + ACTIONS(1596), 1, + sym_strong_end, + ACTIONS(1573), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1577), 30, + ACTIONS(1571), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -35416,15 +35757,328 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [21430] = 2, + [21740] = 2, ACTIONS(1565), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1563), 30, + ACTIONS(1563), 31, + sym__verbatim_begin, + sym_subscript_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + sym__whitespace1, + anon_sym_LF, + [21781] = 2, + ACTIONS(1592), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1590), 31, + sym__verbatim_begin, + sym_subscript_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + sym__whitespace1, + anon_sym_LF, + [21822] = 2, + ACTIONS(1588), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1586), 31, + sym__verbatim_begin, + ts_builtin_sym_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + sym__whitespace1, + anon_sym_LF, + [21863] = 2, + ACTIONS(1573), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1571), 31, + sym__verbatim_begin, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + sym__whitespace1, + anon_sym_LF, + [21904] = 2, + ACTIONS(1565), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1563), 31, + sym__verbatim_begin, + sym__square_bracket_span_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + sym__whitespace1, + anon_sym_LF, + [21945] = 2, + ACTIONS(1565), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1563), 31, + sym__verbatim_begin, + sym_superscript_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + sym__whitespace1, + anon_sym_LF, + [21986] = 2, + ACTIONS(1588), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1586), 31, + sym__verbatim_begin, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + sym__whitespace1, + anon_sym_LF, + [22027] = 2, + ACTIONS(1577), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1575), 31, + sym__verbatim_begin, + sym_superscript_end, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + sym__whitespace1, + anon_sym_LF, + [22068] = 2, + ACTIONS(1577), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1575), 31, sym__verbatim_begin, + sym__square_bracket_span_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -35454,15 +36108,16 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [21470] = 2, - ACTIONS(1583), 5, + [22109] = 2, + ACTIONS(1569), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1581), 30, + ACTIONS(1567), 31, sym__verbatim_begin, + ts_builtin_sym_end, anon_sym_LBRACE_, anon_sym__, anon_sym_LBRACE_STAR, @@ -35492,14 +36147,14 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [21510] = 2, - ACTIONS(1575), 5, + [22150] = 2, + ACTIONS(1584), 5, anon_sym_BSLASH, sym_en_dash, sym_backslash_escape, anon_sym_LBRACK, aux_sym__text_token1, - ACTIONS(1573), 30, + ACTIONS(1582), 30, sym__verbatim_begin, anon_sym_LBRACE_, anon_sym__, @@ -35530,7 +36185,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [21550] = 2, + [22190] = 2, ACTIONS(1561), 5, anon_sym_BSLASH, sym_en_dash, @@ -35568,7 +36223,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [21590] = 2, + [22230] = 2, ACTIONS(1569), 5, anon_sym_BSLASH, sym_en_dash, @@ -35606,537 +36261,727 @@ static const uint16_t ts_small_parse_table[] = { sym_fixme, sym__whitespace1, anon_sym_LF, - [21630] = 9, - ACTIONS(1590), 1, + [22270] = 2, + ACTIONS(1565), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1563), 30, + sym__verbatim_begin, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + sym__whitespace1, + anon_sym_LF, + [22310] = 2, + ACTIONS(1573), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1571), 30, + sym__verbatim_begin, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + sym__whitespace1, + anon_sym_LF, + [22350] = 2, + ACTIONS(1592), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1590), 30, + sym__verbatim_begin, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + sym__whitespace1, + anon_sym_LF, + [22390] = 2, + ACTIONS(1577), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1575), 30, + sym__verbatim_begin, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + sym__whitespace1, + anon_sym_LF, + [22430] = 2, + ACTIONS(1588), 5, + anon_sym_BSLASH, + sym_en_dash, + sym_backslash_escape, + anon_sym_LBRACK, + aux_sym__text_token1, + ACTIONS(1586), 30, + sym__verbatim_begin, + anon_sym_LBRACE_, + anon_sym__, + anon_sym_LBRACE_STAR, + anon_sym_STAR, + anon_sym_LBRACE_CARET, + anon_sym_CARET, + anon_sym_LBRACE_TILDE, + anon_sym_TILDE, + anon_sym_LBRACE_EQ, + anon_sym_LBRACE_PLUS, + anon_sym_LBRACE_DASH, + sym_quotation_marks, + sym_ellipsis, + sym_em_dash, + anon_sym_LT, + sym_symbol, + anon_sym_LBRACK_CARET, + anon_sym_BANG_LBRACK, + anon_sym_LBRACK_RBRACK2, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_TODO, + anon_sym_WIP, + anon_sym_NOTE, + anon_sym_INFO, + anon_sym_XXX, + sym_fixme, + sym__whitespace1, + anon_sym_LF, + [22470] = 9, + ACTIONS(1598), 1, sym__id, - ACTIONS(1592), 1, + ACTIONS(1600), 1, anon_sym_PERCENT, - ACTIONS(1596), 1, + ACTIONS(1604), 1, anon_sym_DOT, - ACTIONS(1598), 1, + ACTIONS(1606), 1, sym__curly_bracket_span_end, - STATE(630), 1, + STATE(649), 1, aux_sym_inline_attribute_repeat1, - STATE(644), 1, + STATE(667), 1, sym__comment_with_newline, - STATE(982), 1, + STATE(993), 1, sym_key, - ACTIONS(1594), 3, + ACTIONS(1602), 3, sym__whitespace1, anon_sym_LF, sym_identifier, - STATE(645), 3, + STATE(666), 3, sym__newline, sym_class, sym_key_value, - [21662] = 9, - ACTIONS(1590), 1, + [22502] = 9, + ACTIONS(1598), 1, sym__id, - ACTIONS(1592), 1, + ACTIONS(1600), 1, anon_sym_PERCENT, - ACTIONS(1596), 1, + ACTIONS(1604), 1, anon_sym_DOT, - ACTIONS(1600), 1, + ACTIONS(1608), 1, sym__curly_bracket_span_end, - STATE(631), 1, + STATE(655), 1, aux_sym_inline_attribute_repeat1, - STATE(644), 1, + STATE(667), 1, sym__comment_with_newline, - STATE(982), 1, + STATE(993), 1, sym_key, - ACTIONS(1594), 3, + ACTIONS(1602), 3, sym__whitespace1, anon_sym_LF, sym_identifier, - STATE(645), 3, + STATE(666), 3, sym__newline, sym_class, sym_key_value, - [21694] = 9, - ACTIONS(1590), 1, + [22534] = 9, + ACTIONS(1598), 1, sym__id, - ACTIONS(1592), 1, + ACTIONS(1600), 1, anon_sym_PERCENT, - ACTIONS(1596), 1, + ACTIONS(1604), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1610), 1, sym__curly_bracket_span_end, - STATE(623), 1, + STATE(643), 1, aux_sym_inline_attribute_repeat1, - STATE(644), 1, + STATE(667), 1, sym__comment_with_newline, - STATE(982), 1, + STATE(993), 1, sym_key, - ACTIONS(1594), 3, + ACTIONS(1602), 3, sym__whitespace1, anon_sym_LF, sym_identifier, - STATE(645), 3, + STATE(666), 3, sym__newline, sym_class, sym_key_value, - [21726] = 9, - ACTIONS(1590), 1, + [22566] = 9, + ACTIONS(1598), 1, sym__id, - ACTIONS(1592), 1, + ACTIONS(1600), 1, anon_sym_PERCENT, - ACTIONS(1596), 1, - anon_sym_DOT, ACTIONS(1604), 1, + anon_sym_DOT, + ACTIONS(1612), 1, sym__curly_bracket_span_end, - STATE(625), 1, + STATE(655), 1, aux_sym_inline_attribute_repeat1, - STATE(644), 1, + STATE(667), 1, sym__comment_with_newline, - STATE(982), 1, + STATE(993), 1, sym_key, - ACTIONS(1594), 3, + ACTIONS(1602), 3, sym__whitespace1, anon_sym_LF, sym_identifier, - STATE(645), 3, + STATE(666), 3, sym__newline, sym_class, sym_key_value, - [21758] = 9, - ACTIONS(1590), 1, + [22598] = 9, + ACTIONS(1598), 1, sym__id, - ACTIONS(1592), 1, + ACTIONS(1600), 1, anon_sym_PERCENT, - ACTIONS(1596), 1, + ACTIONS(1604), 1, anon_sym_DOT, - ACTIONS(1606), 1, + ACTIONS(1614), 1, sym__curly_bracket_span_end, - STATE(627), 1, + STATE(655), 1, aux_sym_inline_attribute_repeat1, - STATE(644), 1, + STATE(667), 1, sym__comment_with_newline, - STATE(982), 1, + STATE(993), 1, sym_key, - ACTIONS(1594), 3, + ACTIONS(1602), 3, sym__whitespace1, anon_sym_LF, sym_identifier, - STATE(645), 3, + STATE(666), 3, sym__newline, sym_class, sym_key_value, - [21790] = 9, - ACTIONS(1608), 1, + [22630] = 9, + ACTIONS(1598), 1, sym__id, - ACTIONS(1611), 1, + ACTIONS(1600), 1, anon_sym_PERCENT, - ACTIONS(1617), 1, + ACTIONS(1604), 1, anon_sym_DOT, - ACTIONS(1620), 1, + ACTIONS(1616), 1, sym__curly_bracket_span_end, - STATE(625), 1, - aux_sym_inline_attribute_repeat1, STATE(644), 1, + aux_sym_inline_attribute_repeat1, + STATE(667), 1, sym__comment_with_newline, - STATE(982), 1, + STATE(993), 1, sym_key, - ACTIONS(1614), 3, + ACTIONS(1602), 3, sym__whitespace1, anon_sym_LF, sym_identifier, - STATE(645), 3, + STATE(666), 3, sym__newline, sym_class, sym_key_value, - [21822] = 9, - ACTIONS(1590), 1, + [22662] = 9, + ACTIONS(1598), 1, sym__id, - ACTIONS(1592), 1, + ACTIONS(1600), 1, anon_sym_PERCENT, - ACTIONS(1596), 1, + ACTIONS(1604), 1, anon_sym_DOT, - ACTIONS(1622), 1, + ACTIONS(1618), 1, sym__curly_bracket_span_end, - STATE(625), 1, + STATE(655), 1, aux_sym_inline_attribute_repeat1, - STATE(644), 1, + STATE(667), 1, sym__comment_with_newline, - STATE(982), 1, + STATE(993), 1, sym_key, - ACTIONS(1594), 3, + ACTIONS(1602), 3, sym__whitespace1, anon_sym_LF, sym_identifier, - STATE(645), 3, + STATE(666), 3, sym__newline, sym_class, sym_key_value, - [21854] = 9, - ACTIONS(1590), 1, + [22694] = 9, + ACTIONS(1598), 1, sym__id, - ACTIONS(1592), 1, + ACTIONS(1600), 1, anon_sym_PERCENT, - ACTIONS(1596), 1, + ACTIONS(1604), 1, anon_sym_DOT, - ACTIONS(1624), 1, + ACTIONS(1620), 1, sym__curly_bracket_span_end, - STATE(625), 1, + STATE(646), 1, aux_sym_inline_attribute_repeat1, - STATE(644), 1, + STATE(667), 1, sym__comment_with_newline, - STATE(982), 1, + STATE(993), 1, sym_key, - ACTIONS(1594), 3, + ACTIONS(1602), 3, sym__whitespace1, anon_sym_LF, sym_identifier, - STATE(645), 3, + STATE(666), 3, sym__newline, sym_class, sym_key_value, - [21886] = 9, - ACTIONS(1590), 1, + [22726] = 9, + ACTIONS(1598), 1, sym__id, - ACTIONS(1592), 1, + ACTIONS(1600), 1, anon_sym_PERCENT, - ACTIONS(1596), 1, + ACTIONS(1604), 1, anon_sym_DOT, - ACTIONS(1626), 1, + ACTIONS(1622), 1, sym__curly_bracket_span_end, - STATE(629), 1, + STATE(655), 1, aux_sym_inline_attribute_repeat1, - STATE(644), 1, + STATE(667), 1, sym__comment_with_newline, - STATE(982), 1, + STATE(993), 1, sym_key, - ACTIONS(1594), 3, + ACTIONS(1602), 3, sym__whitespace1, anon_sym_LF, sym_identifier, - STATE(645), 3, + STATE(666), 3, sym__newline, sym_class, sym_key_value, - [21918] = 9, - ACTIONS(1590), 1, + [22758] = 9, + ACTIONS(1598), 1, sym__id, - ACTIONS(1592), 1, + ACTIONS(1600), 1, anon_sym_PERCENT, - ACTIONS(1596), 1, + ACTIONS(1604), 1, anon_sym_DOT, - ACTIONS(1628), 1, + ACTIONS(1624), 1, sym__curly_bracket_span_end, - STATE(625), 1, + STATE(655), 1, aux_sym_inline_attribute_repeat1, - STATE(644), 1, + STATE(667), 1, sym__comment_with_newline, - STATE(982), 1, + STATE(993), 1, sym_key, - ACTIONS(1594), 3, + ACTIONS(1602), 3, sym__whitespace1, anon_sym_LF, sym_identifier, - STATE(645), 3, + STATE(666), 3, sym__newline, sym_class, sym_key_value, - [21950] = 9, - ACTIONS(1590), 1, + [22790] = 9, + ACTIONS(1598), 1, sym__id, - ACTIONS(1592), 1, + ACTIONS(1600), 1, anon_sym_PERCENT, - ACTIONS(1596), 1, + ACTIONS(1604), 1, anon_sym_DOT, - ACTIONS(1630), 1, + ACTIONS(1626), 1, sym__curly_bracket_span_end, - STATE(625), 1, + STATE(655), 1, aux_sym_inline_attribute_repeat1, - STATE(644), 1, + STATE(667), 1, sym__comment_with_newline, - STATE(982), 1, + STATE(993), 1, sym_key, - ACTIONS(1594), 3, + ACTIONS(1602), 3, sym__whitespace1, anon_sym_LF, sym_identifier, - STATE(645), 3, + STATE(666), 3, sym__newline, sym_class, sym_key_value, - [21982] = 9, - ACTIONS(1590), 1, + [22822] = 9, + ACTIONS(1598), 1, sym__id, - ACTIONS(1592), 1, + ACTIONS(1600), 1, anon_sym_PERCENT, - ACTIONS(1596), 1, + ACTIONS(1604), 1, anon_sym_DOT, - ACTIONS(1632), 1, + ACTIONS(1628), 1, sym__curly_bracket_span_end, - STATE(625), 1, + STATE(652), 1, aux_sym_inline_attribute_repeat1, - STATE(644), 1, + STATE(667), 1, sym__comment_with_newline, - STATE(982), 1, + STATE(993), 1, sym_key, - ACTIONS(1594), 3, + ACTIONS(1602), 3, sym__whitespace1, anon_sym_LF, sym_identifier, - STATE(645), 3, + STATE(666), 3, sym__newline, sym_class, sym_key_value, - [22014] = 9, - ACTIONS(1590), 1, + [22854] = 9, + ACTIONS(1598), 1, sym__id, - ACTIONS(1592), 1, + ACTIONS(1600), 1, anon_sym_PERCENT, - ACTIONS(1596), 1, + ACTIONS(1604), 1, anon_sym_DOT, - ACTIONS(1634), 1, + ACTIONS(1630), 1, sym__curly_bracket_span_end, - STATE(625), 1, + STATE(655), 1, aux_sym_inline_attribute_repeat1, - STATE(644), 1, + STATE(667), 1, sym__comment_with_newline, - STATE(982), 1, + STATE(993), 1, sym_key, - ACTIONS(1594), 3, + ACTIONS(1602), 3, sym__whitespace1, anon_sym_LF, sym_identifier, - STATE(645), 3, + STATE(666), 3, sym__newline, sym_class, sym_key_value, - [22046] = 9, - ACTIONS(1590), 1, + [22886] = 9, + ACTIONS(1598), 1, sym__id, - ACTIONS(1592), 1, + ACTIONS(1600), 1, anon_sym_PERCENT, - ACTIONS(1596), 1, + ACTIONS(1604), 1, anon_sym_DOT, - ACTIONS(1636), 1, + ACTIONS(1632), 1, sym__curly_bracket_span_end, - STATE(634), 1, + STATE(650), 1, aux_sym_inline_attribute_repeat1, - STATE(644), 1, + STATE(667), 1, sym__comment_with_newline, - STATE(982), 1, + STATE(993), 1, sym_key, - ACTIONS(1594), 3, + ACTIONS(1602), 3, sym__whitespace1, anon_sym_LF, sym_identifier, - STATE(645), 3, + STATE(666), 3, sym__newline, sym_class, sym_key_value, - [22078] = 9, - ACTIONS(1590), 1, + [22918] = 9, + ACTIONS(1598), 1, sym__id, - ACTIONS(1592), 1, + ACTIONS(1600), 1, anon_sym_PERCENT, - ACTIONS(1596), 1, + ACTIONS(1604), 1, anon_sym_DOT, - ACTIONS(1638), 1, + ACTIONS(1634), 1, sym__curly_bracket_span_end, - STATE(625), 1, + STATE(657), 1, aux_sym_inline_attribute_repeat1, - STATE(644), 1, + STATE(667), 1, sym__comment_with_newline, - STATE(982), 1, + STATE(993), 1, sym_key, - ACTIONS(1594), 3, + ACTIONS(1602), 3, sym__whitespace1, anon_sym_LF, sym_identifier, - STATE(645), 3, + STATE(666), 3, sym__newline, sym_class, sym_key_value, - [22110] = 9, - ACTIONS(1590), 1, + [22950] = 9, + ACTIONS(1636), 1, sym__id, - ACTIONS(1592), 1, + ACTIONS(1639), 1, anon_sym_PERCENT, - ACTIONS(1596), 1, + ACTIONS(1645), 1, anon_sym_DOT, - ACTIONS(1640), 1, + ACTIONS(1648), 1, sym__curly_bracket_span_end, - STATE(632), 1, + STATE(655), 1, aux_sym_inline_attribute_repeat1, - STATE(644), 1, + STATE(667), 1, sym__comment_with_newline, - STATE(982), 1, + STATE(993), 1, sym_key, - ACTIONS(1594), 3, + ACTIONS(1642), 3, sym__whitespace1, anon_sym_LF, sym_identifier, - STATE(645), 3, + STATE(666), 3, sym__newline, sym_class, sym_key_value, - [22142] = 9, - ACTIONS(1590), 1, + [22982] = 9, + ACTIONS(1598), 1, sym__id, - ACTIONS(1592), 1, + ACTIONS(1600), 1, anon_sym_PERCENT, - ACTIONS(1596), 1, + ACTIONS(1604), 1, anon_sym_DOT, - ACTIONS(1642), 1, + ACTIONS(1650), 1, sym__curly_bracket_span_end, - STATE(625), 1, + STATE(655), 1, aux_sym_inline_attribute_repeat1, - STATE(644), 1, + STATE(667), 1, sym__comment_with_newline, - STATE(982), 1, + STATE(993), 1, sym_key, - ACTIONS(1594), 3, + ACTIONS(1602), 3, sym__whitespace1, anon_sym_LF, sym_identifier, - STATE(645), 3, + STATE(666), 3, sym__newline, sym_class, sym_key_value, - [22174] = 9, - ACTIONS(1590), 1, + [23014] = 9, + ACTIONS(1598), 1, sym__id, - ACTIONS(1592), 1, + ACTIONS(1600), 1, anon_sym_PERCENT, - ACTIONS(1596), 1, + ACTIONS(1604), 1, anon_sym_DOT, - ACTIONS(1644), 1, + ACTIONS(1652), 1, sym__curly_bracket_span_end, - STATE(636), 1, + STATE(655), 1, aux_sym_inline_attribute_repeat1, - STATE(644), 1, + STATE(667), 1, sym__comment_with_newline, - STATE(982), 1, + STATE(993), 1, sym_key, - ACTIONS(1594), 3, + ACTIONS(1602), 3, sym__whitespace1, anon_sym_LF, sym_identifier, - STATE(645), 3, + STATE(666), 3, sym__newline, sym_class, sym_key_value, - [22206] = 9, - ACTIONS(1590), 1, + [23046] = 9, + ACTIONS(1598), 1, sym__id, - ACTIONS(1592), 1, + ACTIONS(1600), 1, anon_sym_PERCENT, - ACTIONS(1596), 1, + ACTIONS(1604), 1, anon_sym_DOT, - ACTIONS(1646), 1, + ACTIONS(1654), 1, sym__curly_bracket_span_end, - STATE(642), 1, + STATE(659), 1, aux_sym_inline_attribute_repeat1, - STATE(644), 1, + STATE(667), 1, sym__comment_with_newline, - STATE(982), 1, + STATE(993), 1, sym_key, - ACTIONS(1594), 3, + ACTIONS(1602), 3, sym__whitespace1, anon_sym_LF, sym_identifier, - STATE(645), 3, + STATE(666), 3, sym__newline, sym_class, sym_key_value, - [22238] = 9, - ACTIONS(1590), 1, + [23078] = 9, + ACTIONS(1598), 1, sym__id, - ACTIONS(1592), 1, + ACTIONS(1600), 1, anon_sym_PERCENT, - ACTIONS(1596), 1, + ACTIONS(1604), 1, anon_sym_DOT, - ACTIONS(1648), 1, + ACTIONS(1656), 1, sym__curly_bracket_span_end, - STATE(641), 1, + STATE(655), 1, aux_sym_inline_attribute_repeat1, - STATE(644), 1, + STATE(667), 1, sym__comment_with_newline, - STATE(982), 1, + STATE(993), 1, sym_key, - ACTIONS(1594), 3, + ACTIONS(1602), 3, sym__whitespace1, anon_sym_LF, sym_identifier, - STATE(645), 3, + STATE(666), 3, sym__newline, sym_class, sym_key_value, - [22270] = 9, - ACTIONS(1590), 1, + [23110] = 9, + ACTIONS(1598), 1, sym__id, - ACTIONS(1592), 1, + ACTIONS(1600), 1, anon_sym_PERCENT, - ACTIONS(1596), 1, + ACTIONS(1604), 1, anon_sym_DOT, - ACTIONS(1650), 1, + ACTIONS(1658), 1, sym__curly_bracket_span_end, - STATE(626), 1, + STATE(656), 1, aux_sym_inline_attribute_repeat1, - STATE(644), 1, + STATE(667), 1, sym__comment_with_newline, - STATE(982), 1, + STATE(993), 1, sym_key, - ACTIONS(1594), 3, + ACTIONS(1602), 3, sym__whitespace1, anon_sym_LF, sym_identifier, - STATE(645), 3, + STATE(666), 3, sym__newline, sym_class, sym_key_value, - [22302] = 9, - ACTIONS(1590), 1, + [23142] = 9, + ACTIONS(1598), 1, sym__id, - ACTIONS(1592), 1, + ACTIONS(1600), 1, anon_sym_PERCENT, - ACTIONS(1596), 1, + ACTIONS(1604), 1, anon_sym_DOT, - ACTIONS(1652), 1, + ACTIONS(1660), 1, sym__curly_bracket_span_end, - STATE(625), 1, + STATE(641), 1, aux_sym_inline_attribute_repeat1, - STATE(644), 1, + STATE(667), 1, sym__comment_with_newline, - STATE(982), 1, + STATE(993), 1, sym_key, - ACTIONS(1594), 3, + ACTIONS(1602), 3, sym__whitespace1, anon_sym_LF, sym_identifier, - STATE(645), 3, + STATE(666), 3, sym__newline, sym_class, sym_key_value, - [22334] = 9, - ACTIONS(1590), 1, + [23174] = 9, + ACTIONS(1598), 1, sym__id, - ACTIONS(1592), 1, + ACTIONS(1600), 1, anon_sym_PERCENT, - ACTIONS(1596), 1, + ACTIONS(1604), 1, anon_sym_DOT, - ACTIONS(1654), 1, + ACTIONS(1662), 1, sym__curly_bracket_span_end, - STATE(625), 1, + STATE(648), 1, aux_sym_inline_attribute_repeat1, - STATE(644), 1, + STATE(667), 1, sym__comment_with_newline, - STATE(982), 1, + STATE(993), 1, sym_key, - ACTIONS(1594), 3, + ACTIONS(1602), 3, sym__whitespace1, anon_sym_LF, sym_identifier, - STATE(645), 3, + STATE(666), 3, sym__newline, sym_class, sym_key_value, - [22366] = 1, - ACTIONS(1656), 7, + [23206] = 1, + ACTIONS(1664), 7, sym__curly_bracket_span_end, sym__id, anon_sym_PERCENT, @@ -36144,8 +36989,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_DOT, sym_identifier, - [22376] = 1, - ACTIONS(1658), 7, + [23216] = 1, + ACTIONS(1666), 7, sym__curly_bracket_span_end, sym__id, anon_sym_PERCENT, @@ -36153,8 +36998,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_DOT, sym_identifier, - [22386] = 1, - ACTIONS(1660), 7, + [23226] = 1, + ACTIONS(1668), 7, sym__curly_bracket_span_end, sym__id, anon_sym_PERCENT, @@ -36162,8 +37007,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_DOT, sym_identifier, - [22396] = 1, - ACTIONS(1662), 7, + [23236] = 1, + ACTIONS(1670), 7, sym__curly_bracket_span_end, sym__id, anon_sym_PERCENT, @@ -36171,8 +37016,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_DOT, sym_identifier, - [22406] = 1, - ACTIONS(1664), 7, + [23246] = 1, + ACTIONS(1672), 7, sym__curly_bracket_span_end, sym__id, anon_sym_PERCENT, @@ -36180,8 +37025,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_DOT, sym_identifier, - [22416] = 1, - ACTIONS(1666), 7, + [23256] = 1, + ACTIONS(1674), 7, sym__curly_bracket_span_end, sym__id, anon_sym_PERCENT, @@ -36189,8 +37034,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_DOT, sym_identifier, - [22426] = 1, - ACTIONS(1668), 7, + [23266] = 1, + ACTIONS(1676), 7, sym__curly_bracket_span_end, sym__id, anon_sym_PERCENT, @@ -36198,8 +37043,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_DOT, sym_identifier, - [22436] = 1, - ACTIONS(1670), 7, + [23276] = 1, + ACTIONS(1678), 7, sym__curly_bracket_span_end, sym__id, anon_sym_PERCENT, @@ -36207,8 +37052,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_DOT, sym_identifier, - [22446] = 1, - ACTIONS(1672), 7, + [23286] = 1, + ACTIONS(1680), 7, sym__curly_bracket_span_end, sym__id, anon_sym_PERCENT, @@ -36216,2461 +37061,2461 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_DOT, sym_identifier, - [22456] = 5, - ACTIONS(1676), 1, + [23296] = 5, + ACTIONS(1684), 1, anon_sym_LBRACK, - ACTIONS(1678), 1, + ACTIONS(1686), 1, anon_sym_LBRACE, - STATE(555), 1, + STATE(618), 1, sym_inline_attribute, - STATE(1051), 1, + STATE(1055), 1, sym__curly_bracket_span_begin, - ACTIONS(1674), 2, + ACTIONS(1682), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - [22473] = 5, - ACTIONS(1676), 1, + [23313] = 5, + ACTIONS(1684), 1, anon_sym_LBRACK, - ACTIONS(1680), 1, + ACTIONS(1688), 1, anon_sym_LBRACE, - STATE(525), 1, + STATE(629), 1, sym_inline_attribute, - STATE(1035), 1, + STATE(1007), 1, sym__curly_bracket_span_begin, - ACTIONS(1674), 2, + ACTIONS(1682), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - [22490] = 6, - ACTIONS(1682), 1, - anon_sym_LBRACK_RBRACK, + [23330] = 5, ACTIONS(1684), 1, anon_sym_LBRACK, - ACTIONS(1686), 1, - anon_sym_LPAREN, - STATE(461), 1, - sym__link_label, - STATE(462), 1, - sym_inline_link_destination, - STATE(1132), 1, - sym__parens_span_begin, - [22509] = 6, - ACTIONS(1688), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(1690), 1, - anon_sym_LBRACK, - ACTIONS(1692), 1, - anon_sym_LPAREN, - STATE(350), 1, - sym__link_label, - STATE(351), 1, - sym_inline_link_destination, - STATE(1182), 1, - sym__parens_span_begin, - [22528] = 6, ACTIONS(1690), 1, - anon_sym_LBRACK, - ACTIONS(1692), 1, - anon_sym_LPAREN, - ACTIONS(1694), 1, - anon_sym_LBRACK_RBRACK, - STATE(353), 1, - sym__link_label, - STATE(354), 1, - sym_inline_link_destination, - STATE(1182), 1, - sym__parens_span_begin, - [22547] = 6, - ACTIONS(1696), 1, + anon_sym_LBRACE, + STATE(604), 1, + sym_inline_attribute, + STATE(1039), 1, + sym__curly_bracket_span_begin, + ACTIONS(1682), 2, anon_sym_LBRACK_RBRACK, - ACTIONS(1698), 1, - anon_sym_LBRACK, - ACTIONS(1700), 1, anon_sym_LPAREN, - STATE(338), 1, - sym__link_label, - STATE(339), 1, - sym_inline_link_destination, - STATE(932), 1, - sym__parens_span_begin, - [22566] = 4, - ACTIONS(1704), 1, + [23347] = 4, + ACTIONS(1694), 1, anon_sym_PERCENT, - STATE(665), 1, + STATE(707), 1, aux_sym__comment_with_newline_repeat1, - STATE(690), 1, + STATE(710), 1, sym__newline, - ACTIONS(1702), 3, + ACTIONS(1692), 3, sym_backslash_escape, aux_sym__comment_with_newline_token1, anon_sym_LF, - [22581] = 5, - ACTIONS(1676), 1, - anon_sym_LBRACK, - ACTIONS(1706), 1, - anon_sym_LBRACE, - STATE(607), 1, - sym_inline_attribute, - STATE(987), 1, - sym__curly_bracket_span_begin, - ACTIONS(1674), 2, - anon_sym_LBRACK_RBRACK, - anon_sym_LPAREN, - [22598] = 6, - ACTIONS(1708), 1, + [23362] = 6, + ACTIONS(1696), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(1710), 1, + ACTIONS(1698), 1, anon_sym_LBRACK, - ACTIONS(1712), 1, + ACTIONS(1700), 1, anon_sym_LPAREN, - STATE(239), 1, + STATE(314), 1, sym__link_label, - STATE(240), 1, + STATE(315), 1, sym_inline_link_destination, - STATE(1152), 1, + STATE(1192), 1, sym__parens_span_begin, - [22617] = 6, - ACTIONS(1710), 1, + [23381] = 6, + ACTIONS(1698), 1, anon_sym_LBRACK, - ACTIONS(1712), 1, + ACTIONS(1700), 1, anon_sym_LPAREN, - ACTIONS(1714), 1, + ACTIONS(1702), 1, anon_sym_LBRACK_RBRACK, - STATE(242), 1, + STATE(317), 1, sym__link_label, - STATE(243), 1, + STATE(318), 1, sym_inline_link_destination, - STATE(1152), 1, + STATE(1192), 1, sym__parens_span_begin, - [22636] = 6, - ACTIONS(1716), 1, + [23400] = 6, + ACTIONS(1704), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(1718), 1, + ACTIONS(1706), 1, anon_sym_LBRACK, - ACTIONS(1720), 1, + ACTIONS(1708), 1, anon_sym_LPAREN, - STATE(388), 1, + STATE(244), 1, sym__link_label, - STATE(389), 1, + STATE(245), 1, sym_inline_link_destination, - STATE(1192), 1, + STATE(1172), 1, sym__parens_span_begin, - [22655] = 6, - ACTIONS(1718), 1, + [23419] = 6, + ACTIONS(1710), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(1712), 1, anon_sym_LBRACK, - ACTIONS(1720), 1, + ACTIONS(1714), 1, anon_sym_LPAREN, - ACTIONS(1722), 1, - anon_sym_LBRACK_RBRACK, - STATE(391), 1, + STATE(349), 1, sym__link_label, - STATE(392), 1, + STATE(428), 1, sym_inline_link_destination, - STATE(1192), 1, + STATE(954), 1, sym__parens_span_begin, - [22674] = 4, - ACTIONS(1724), 1, - anon_sym_PERCENT, - STATE(665), 1, - aux_sym__comment_with_newline_repeat1, - STATE(690), 1, - sym__newline, - ACTIONS(1702), 3, - sym_backslash_escape, - aux_sym__comment_with_newline_token1, - anon_sym_LF, - [22689] = 4, - ACTIONS(1729), 1, + [23438] = 4, + ACTIONS(1716), 1, anon_sym_PERCENT, - STATE(665), 1, + STATE(675), 1, aux_sym__comment_with_newline_repeat1, - STATE(690), 1, + STATE(710), 1, sym__newline, - ACTIONS(1726), 3, + ACTIONS(1692), 3, sym_backslash_escape, aux_sym__comment_with_newline_token1, anon_sym_LF, - [22704] = 5, - ACTIONS(1676), 1, - anon_sym_LBRACK, - ACTIONS(1731), 1, - anon_sym_LBRACE, - STATE(551), 1, - sym_inline_attribute, - STATE(1067), 1, - sym__curly_bracket_span_begin, - ACTIONS(1674), 2, - anon_sym_LBRACK_RBRACK, - anon_sym_LPAREN, - [22721] = 6, - ACTIONS(1733), 1, + [23453] = 6, + ACTIONS(1718), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(1735), 1, + ACTIONS(1720), 1, anon_sym_LBRACK, - ACTIONS(1737), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - STATE(420), 1, + STATE(352), 1, sym__link_label, - STATE(421), 1, + STATE(353), 1, sym_inline_link_destination, STATE(1202), 1, sym__parens_span_begin, - [22740] = 6, - ACTIONS(1735), 1, + [23472] = 6, + ACTIONS(1720), 1, anon_sym_LBRACK, - ACTIONS(1737), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1739), 1, + ACTIONS(1724), 1, anon_sym_LBRACK_RBRACK, - STATE(423), 1, + STATE(355), 1, sym__link_label, - STATE(424), 1, + STATE(356), 1, sym_inline_link_destination, STATE(1202), 1, sym__parens_span_begin, - [22759] = 5, - ACTIONS(1676), 1, + [23491] = 6, + ACTIONS(1706), 1, anon_sym_LBRACK, - ACTIONS(1741), 1, - anon_sym_LBRACE, - STATE(553), 1, - sym_inline_attribute, - STATE(954), 1, - sym__curly_bracket_span_begin, - ACTIONS(1674), 2, - anon_sym_LBRACK_RBRACK, + ACTIONS(1708), 1, anon_sym_LPAREN, - [22776] = 5, - ACTIONS(1676), 1, + ACTIONS(1726), 1, + anon_sym_LBRACK_RBRACK, + STATE(247), 1, + sym__link_label, + STATE(248), 1, + sym_inline_link_destination, + STATE(1172), 1, + sym__parens_span_begin, + [23510] = 5, + ACTIONS(1684), 1, anon_sym_LBRACK, - ACTIONS(1743), 1, + ACTIONS(1728), 1, anon_sym_LBRACE, - STATE(591), 1, + STATE(608), 1, sym_inline_attribute, - STATE(1083), 1, + STATE(1071), 1, sym__curly_bracket_span_begin, - ACTIONS(1674), 2, + ACTIONS(1682), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - [22793] = 6, - ACTIONS(1745), 1, + [23527] = 6, + ACTIONS(1730), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(1747), 1, + ACTIONS(1732), 1, anon_sym_LBRACK, - ACTIONS(1749), 1, + ACTIONS(1734), 1, anon_sym_LPAREN, - STATE(611), 1, + STATE(388), 1, sym__link_label, - STATE(612), 1, + STATE(389), 1, sym_inline_link_destination, STATE(1212), 1, sym__parens_span_begin, - [22812] = 6, - ACTIONS(1747), 1, + [23546] = 6, + ACTIONS(1732), 1, anon_sym_LBRACK, - ACTIONS(1749), 1, + ACTIONS(1734), 1, anon_sym_LPAREN, - ACTIONS(1751), 1, + ACTIONS(1736), 1, anon_sym_LBRACK_RBRACK, - STATE(523), 1, + STATE(391), 1, sym__link_label, - STATE(524), 1, + STATE(392), 1, sym_inline_link_destination, STATE(1212), 1, sym__parens_span_begin, - [22831] = 4, - ACTIONS(1753), 1, - anon_sym_PERCENT, - STATE(658), 1, - aux_sym__comment_with_newline_repeat1, - STATE(690), 1, - sym__newline, - ACTIONS(1702), 3, - sym_backslash_escape, - aux_sym__comment_with_newline_token1, - anon_sym_LF, - [22846] = 5, - ACTIONS(1676), 1, - anon_sym_LBRACK, - ACTIONS(1755), 1, - anon_sym_LBRACE, - STATE(569), 1, - sym_inline_attribute, - STATE(971), 1, - sym__curly_bracket_span_begin, - ACTIONS(1674), 2, + [23565] = 6, + ACTIONS(1738), 1, anon_sym_LBRACK_RBRACK, + ACTIONS(1740), 1, + anon_sym_LBRACK, + ACTIONS(1742), 1, anon_sym_LPAREN, - [22863] = 5, - ACTIONS(1676), 1, + STATE(497), 1, + sym__link_label, + STATE(498), 1, + sym_inline_link_destination, + STATE(1162), 1, + sym__parens_span_begin, + [23584] = 5, + ACTIONS(1684), 1, anon_sym_LBRACK, - ACTIONS(1757), 1, + ACTIONS(1744), 1, anon_sym_LBRACE, - STATE(615), 1, + STATE(530), 1, sym_inline_attribute, - STATE(1099), 1, + STATE(1023), 1, sym__curly_bracket_span_begin, - ACTIONS(1674), 2, + ACTIONS(1682), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - [22880] = 5, - ACTIONS(1676), 1, + [23601] = 6, + ACTIONS(1712), 1, anon_sym_LBRACK, - ACTIONS(1759), 1, - anon_sym_LBRACE, - STATE(546), 1, - sym_inline_attribute, - STATE(1003), 1, - sym__curly_bracket_span_begin, - ACTIONS(1674), 2, - anon_sym_LBRACK_RBRACK, + ACTIONS(1714), 1, anon_sym_LPAREN, - [22897] = 6, - ACTIONS(1761), 1, + ACTIONS(1746), 1, + anon_sym_LBRACK_RBRACK, + STATE(307), 1, + sym__link_label, + STATE(319), 1, + sym_inline_link_destination, + STATE(954), 1, + sym__parens_span_begin, + [23620] = 6, + ACTIONS(1748), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(1763), 1, + ACTIONS(1750), 1, anon_sym_LBRACK, - ACTIONS(1765), 1, + ACTIONS(1752), 1, anon_sym_LPAREN, - STATE(272), 1, + STATE(423), 1, sym__link_label, - STATE(273), 1, + STATE(424), 1, sym_inline_link_destination, - STATE(1162), 1, + STATE(1222), 1, + sym__parens_span_begin, + [23639] = 6, + ACTIONS(1750), 1, + anon_sym_LBRACK, + ACTIONS(1752), 1, + anon_sym_LPAREN, + ACTIONS(1754), 1, + anon_sym_LBRACK_RBRACK, + STATE(426), 1, + sym__link_label, + STATE(427), 1, + sym_inline_link_destination, + STATE(1222), 1, sym__parens_span_begin, - [22916] = 6, - ACTIONS(1767), 1, + [23658] = 6, + ACTIONS(1756), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(1769), 1, + ACTIONS(1758), 1, anon_sym_LBRACK, - ACTIONS(1771), 1, + ACTIONS(1760), 1, anon_sym_LPAREN, - STATE(317), 1, + STATE(276), 1, sym__link_label, - STATE(318), 1, + STATE(277), 1, sym_inline_link_destination, - STATE(1122), 1, + STATE(1182), 1, sym__parens_span_begin, - [22935] = 6, - ACTIONS(1769), 1, + [23677] = 6, + ACTIONS(1740), 1, anon_sym_LBRACK, - ACTIONS(1771), 1, + ACTIONS(1742), 1, anon_sym_LPAREN, - ACTIONS(1773), 1, + ACTIONS(1762), 1, anon_sym_LBRACK_RBRACK, - STATE(336), 1, + STATE(500), 1, sym__link_label, - STATE(337), 1, + STATE(501), 1, sym_inline_link_destination, - STATE(1122), 1, + STATE(1162), 1, sym__parens_span_begin, - [22954] = 6, - ACTIONS(1763), 1, + [23696] = 5, + ACTIONS(1684), 1, anon_sym_LBRACK, - ACTIONS(1765), 1, + ACTIONS(1764), 1, + anon_sym_LBRACE, + STATE(630), 1, + sym_inline_attribute, + STATE(1103), 1, + sym__curly_bracket_span_begin, + ACTIONS(1682), 2, + anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - ACTIONS(1775), 1, + [23713] = 4, + ACTIONS(1766), 1, + anon_sym_PERCENT, + STATE(707), 1, + aux_sym__comment_with_newline_repeat1, + STATE(710), 1, + sym__newline, + ACTIONS(1692), 3, + sym_backslash_escape, + aux_sym__comment_with_newline_token1, + anon_sym_LF, + [23728] = 6, + ACTIONS(1768), 1, anon_sym_LBRACK_RBRACK, - STATE(275), 1, + ACTIONS(1770), 1, + anon_sym_LBRACK, + ACTIONS(1772), 1, + anon_sym_LPAREN, + STATE(537), 1, sym__link_label, - STATE(276), 1, + STATE(538), 1, sym_inline_link_destination, - STATE(1162), 1, + STATE(1232), 1, sym__parens_span_begin, - [22973] = 6, - ACTIONS(1698), 1, + [23747] = 6, + ACTIONS(1770), 1, anon_sym_LBRACK, - ACTIONS(1700), 1, + ACTIONS(1772), 1, anon_sym_LPAREN, - ACTIONS(1777), 1, + ACTIONS(1774), 1, anon_sym_LBRACK_RBRACK, - STATE(297), 1, + STATE(540), 1, sym__link_label, - STATE(298), 1, + STATE(541), 1, sym_inline_link_destination, - STATE(932), 1, + STATE(1232), 1, sym__parens_span_begin, - [22992] = 6, - ACTIONS(1779), 1, + [23766] = 6, + ACTIONS(1776), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(1781), 1, + ACTIONS(1778), 1, anon_sym_LBRACK, - ACTIONS(1783), 1, + ACTIONS(1780), 1, anon_sym_LPAREN, - STATE(493), 1, + STATE(467), 1, sym__link_label, - STATE(494), 1, + STATE(468), 1, sym_inline_link_destination, - STATE(1142), 1, + STATE(1152), 1, sym__parens_span_begin, - [23011] = 5, - ACTIONS(1676), 1, + [23785] = 5, + ACTIONS(1684), 1, anon_sym_LBRACK, - ACTIONS(1785), 1, + ACTIONS(1782), 1, anon_sym_LBRACE, - STATE(560), 1, + STATE(591), 1, sym_inline_attribute, - STATE(1019), 1, + STATE(991), 1, sym__curly_bracket_span_begin, - ACTIONS(1674), 2, + ACTIONS(1682), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - [23028] = 5, - ACTIONS(1676), 1, + [23802] = 5, + ACTIONS(1684), 1, anon_sym_LBRACK, - ACTIONS(1787), 1, + ACTIONS(1784), 1, anon_sym_LBRACE, - STATE(547), 1, + STATE(638), 1, sym_inline_attribute, - STATE(1107), 1, + STATE(1119), 1, sym__curly_bracket_span_begin, - ACTIONS(1674), 2, + ACTIONS(1682), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - [23045] = 6, - ACTIONS(1789), 1, + [23819] = 5, + ACTIONS(1684), 1, + anon_sym_LBRACK, + ACTIONS(1786), 1, + anon_sym_LBRACE, + STATE(592), 1, + sym_inline_attribute, + STATE(974), 1, + sym__curly_bracket_span_begin, + ACTIONS(1682), 2, anon_sym_LBRACK_RBRACK, - ACTIONS(1791), 1, + anon_sym_LPAREN, + [23836] = 6, + ACTIONS(1778), 1, anon_sym_LBRACK, - ACTIONS(1793), 1, + ACTIONS(1780), 1, anon_sym_LPAREN, - STATE(311), 1, + ACTIONS(1788), 1, + anon_sym_LBRACK_RBRACK, + STATE(464), 1, sym__link_label, - STATE(312), 1, + STATE(465), 1, sym_inline_link_destination, - STATE(1172), 1, + STATE(1152), 1, sym__parens_span_begin, - [23064] = 6, - ACTIONS(1791), 1, + [23855] = 5, + ACTIONS(1684), 1, + anon_sym_LBRACK, + ACTIONS(1790), 1, + anon_sym_LBRACE, + STATE(526), 1, + sym_inline_attribute, + STATE(1059), 1, + sym__curly_bracket_span_begin, + ACTIONS(1682), 2, + anon_sym_LBRACK_RBRACK, + anon_sym_LPAREN, + [23872] = 6, + ACTIONS(1758), 1, anon_sym_LBRACK, - ACTIONS(1793), 1, + ACTIONS(1760), 1, anon_sym_LPAREN, - ACTIONS(1795), 1, + ACTIONS(1792), 1, anon_sym_LBRACK_RBRACK, - STATE(314), 1, + STATE(279), 1, sym__link_label, - STATE(315), 1, + STATE(280), 1, sym_inline_link_destination, - STATE(1172), 1, + STATE(1182), 1, sym__parens_span_begin, - [23083] = 6, - ACTIONS(1684), 1, + [23891] = 6, + ACTIONS(1794), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(1796), 1, anon_sym_LBRACK, - ACTIONS(1686), 1, + ACTIONS(1798), 1, + anon_sym_LPAREN, + STATE(338), 1, + sym__link_label, + STATE(339), 1, + sym_inline_link_destination, + STATE(1142), 1, + sym__parens_span_begin, + [23910] = 6, + ACTIONS(1796), 1, + anon_sym_LBRACK, + ACTIONS(1798), 1, anon_sym_LPAREN, - ACTIONS(1797), 1, + ACTIONS(1800), 1, anon_sym_LBRACK_RBRACK, - STATE(458), 1, + STATE(344), 1, sym__link_label, - STATE(459), 1, + STATE(345), 1, sym_inline_link_destination, - STATE(1132), 1, + STATE(1142), 1, sym__parens_span_begin, - [23102] = 4, - ACTIONS(1799), 1, + [23929] = 4, + ACTIONS(1805), 1, + anon_sym_PERCENT, + STATE(707), 1, + aux_sym__comment_with_newline_repeat1, + STATE(710), 1, + sym__newline, + ACTIONS(1802), 3, + sym_backslash_escape, + aux_sym__comment_with_newline_token1, + anon_sym_LF, + [23944] = 4, + ACTIONS(1807), 1, anon_sym_PERCENT, - STATE(664), 1, + STATE(695), 1, aux_sym__comment_with_newline_repeat1, - STATE(690), 1, + STATE(710), 1, sym__newline, - ACTIONS(1702), 3, + ACTIONS(1692), 3, sym_backslash_escape, aux_sym__comment_with_newline_token1, anon_sym_LF, - [23117] = 6, - ACTIONS(1781), 1, + [23959] = 5, + ACTIONS(1684), 1, anon_sym_LBRACK, - ACTIONS(1783), 1, - anon_sym_LPAREN, - ACTIONS(1801), 1, + ACTIONS(1809), 1, + anon_sym_LBRACE, + STATE(584), 1, + sym_inline_attribute, + STATE(1087), 1, + sym__curly_bracket_span_begin, + ACTIONS(1682), 2, anon_sym_LBRACK_RBRACK, - STATE(496), 1, - sym__link_label, - STATE(497), 1, - sym_inline_link_destination, - STATE(1142), 1, - sym__parens_span_begin, - [23136] = 1, - ACTIONS(1803), 4, + anon_sym_LPAREN, + [23976] = 1, + ACTIONS(1811), 4, sym_backslash_escape, anon_sym_PERCENT, aux_sym__comment_with_newline_token1, anon_sym_LF, - [23143] = 3, - ACTIONS(1805), 1, + [23983] = 3, + ACTIONS(1813), 1, anon_sym_DQUOTE, - ACTIONS(1807), 1, + ACTIONS(1815), 1, aux_sym_value_token2, - STATE(647), 1, + STATE(670), 1, sym_value, - [23153] = 2, - ACTIONS(1811), 1, + [23993] = 2, + ACTIONS(1819), 1, anon_sym_LBRACK, - ACTIONS(1809), 2, + ACTIONS(1817), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - [23161] = 2, - ACTIONS(1815), 1, + [24001] = 2, + ACTIONS(1823), 1, anon_sym_LBRACK, - ACTIONS(1813), 2, + ACTIONS(1821), 2, anon_sym_LBRACK_RBRACK, anon_sym_LPAREN, - [23169] = 1, - ACTIONS(1817), 2, - sym__parens_span_mark_begin, - sym__in_fallback, - [23174] = 1, - ACTIONS(1819), 2, - sym__parens_span_mark_begin, + [24009] = 2, + ACTIONS(1825), 1, + sym__superscript_mark_begin, + ACTIONS(1828), 1, sym__in_fallback, - [23179] = 2, - ACTIONS(1821), 1, + [24016] = 2, + ACTIONS(1830), 1, + sym__id, + STATE(668), 1, + sym_class_name, + [24023] = 2, + ACTIONS(1832), 1, sym__emphasis_mark_begin, - ACTIONS(1824), 1, + ACTIONS(1835), 1, sym__in_fallback, - [23186] = 2, - ACTIONS(1824), 1, + [24030] = 2, + ACTIONS(1835), 1, sym__in_fallback, - ACTIONS(1826), 1, + ACTIONS(1837), 1, sym__strong_mark_begin, - [23193] = 2, - ACTIONS(1829), 1, + [24037] = 2, + ACTIONS(1840), 1, sym__curly_bracket_span_mark_begin, - ACTIONS(1832), 1, + ACTIONS(1843), 1, sym__in_fallback, - [23200] = 2, - ACTIONS(1834), 1, + [24044] = 2, + ACTIONS(1845), 1, + sym__highlighted_mark_begin, + ACTIONS(1848), 1, + sym__in_fallback, + [24051] = 2, + ACTIONS(1848), 1, + sym__in_fallback, + ACTIONS(1850), 1, + sym__insert_mark_begin, + [24058] = 2, + ACTIONS(1853), 1, sym__emphasis_mark_begin, - ACTIONS(1837), 1, + ACTIONS(1856), 1, sym__in_fallback, - [23207] = 2, - ACTIONS(1837), 1, + [24065] = 2, + ACTIONS(1856), 1, sym__in_fallback, - ACTIONS(1839), 1, + ACTIONS(1858), 1, sym__strong_mark_begin, - [23214] = 2, - ACTIONS(1837), 1, + [24072] = 2, + ACTIONS(1856), 1, sym__in_fallback, - ACTIONS(1842), 1, + ACTIONS(1861), 1, sym__superscript_mark_begin, - [23221] = 2, - ACTIONS(1837), 1, + [24079] = 2, + ACTIONS(1856), 1, sym__in_fallback, - ACTIONS(1845), 1, + ACTIONS(1864), 1, sym__subscript_mark_begin, - [23228] = 2, - ACTIONS(1837), 1, + [24086] = 2, + ACTIONS(1856), 1, sym__in_fallback, - ACTIONS(1848), 1, + ACTIONS(1867), 1, sym__highlighted_mark_begin, - [23235] = 2, - ACTIONS(1837), 1, + [24093] = 2, + ACTIONS(1856), 1, sym__in_fallback, - ACTIONS(1851), 1, + ACTIONS(1870), 1, sym__insert_mark_begin, - [23242] = 2, - ACTIONS(1837), 1, + [24100] = 2, + ACTIONS(1856), 1, sym__in_fallback, - ACTIONS(1854), 1, + ACTIONS(1873), 1, sym__delete_mark_begin, - [23249] = 2, - ACTIONS(1857), 1, + [24107] = 2, + ACTIONS(1876), 1, anon_sym_LF, - STATE(236), 1, + STATE(241), 1, sym__newline, - [23256] = 2, - ACTIONS(1837), 1, + [24114] = 2, + ACTIONS(1856), 1, sym__in_fallback, - ACTIONS(1859), 1, + ACTIONS(1878), 1, sym__square_bracket_span_mark_begin, - [23263] = 2, - ACTIONS(1837), 1, + [24121] = 2, + ACTIONS(1856), 1, sym__in_fallback, - ACTIONS(1862), 1, + ACTIONS(1881), 1, sym__square_bracket_span_mark_begin, - [23270] = 2, - ACTIONS(1837), 1, + [24128] = 2, + ACTIONS(1856), 1, sym__in_fallback, - ACTIONS(1865), 1, + ACTIONS(1884), 1, sym__square_bracket_span_mark_begin, - [23277] = 2, - ACTIONS(1868), 1, - sym__emphasis_mark_begin, - ACTIONS(1871), 1, - sym__in_fallback, - [23284] = 2, - ACTIONS(1871), 1, + [24135] = 1, + ACTIONS(1856), 2, + sym__parens_span_mark_begin, sym__in_fallback, - ACTIONS(1873), 1, + [24140] = 2, + ACTIONS(1887), 1, + anon_sym_PERCENT, + STATE(969), 1, + sym__comment_with_newline, + [24147] = 2, + ACTIONS(1889), 1, sym__strong_mark_begin, - [23291] = 2, - ACTIONS(1876), 1, + ACTIONS(1892), 1, + sym__in_fallback, + [24154] = 2, + ACTIONS(1894), 1, sym__curly_bracket_span_mark_begin, - ACTIONS(1879), 1, + ACTIONS(1897), 1, sym__in_fallback, - [23298] = 2, - ACTIONS(1881), 1, + [24161] = 2, + ACTIONS(1848), 1, + sym__in_fallback, + ACTIONS(1899), 1, + sym__delete_mark_begin, + [24168] = 2, + ACTIONS(1902), 1, + anon_sym_LF, + STATE(282), 1, + sym__newline, + [24175] = 2, + ACTIONS(1904), 1, sym__emphasis_mark_begin, - ACTIONS(1884), 1, + ACTIONS(1907), 1, sym__in_fallback, - [23305] = 2, - ACTIONS(1884), 1, + [24182] = 2, + ACTIONS(1907), 1, sym__in_fallback, - ACTIONS(1886), 1, + ACTIONS(1909), 1, sym__strong_mark_begin, - [23312] = 2, - ACTIONS(1884), 1, + [24189] = 2, + ACTIONS(1907), 1, sym__in_fallback, - ACTIONS(1889), 1, + ACTIONS(1912), 1, sym__superscript_mark_begin, - [23319] = 2, - ACTIONS(1884), 1, + [24196] = 2, + ACTIONS(1907), 1, sym__in_fallback, - ACTIONS(1892), 1, + ACTIONS(1915), 1, sym__subscript_mark_begin, - [23326] = 2, - ACTIONS(1884), 1, + [24203] = 2, + ACTIONS(1907), 1, sym__in_fallback, - ACTIONS(1895), 1, + ACTIONS(1918), 1, sym__highlighted_mark_begin, - [23333] = 2, - ACTIONS(1884), 1, + [24210] = 2, + ACTIONS(1907), 1, sym__in_fallback, - ACTIONS(1898), 1, + ACTIONS(1921), 1, sym__insert_mark_begin, - [23340] = 2, - ACTIONS(1884), 1, + [24217] = 2, + ACTIONS(1907), 1, sym__in_fallback, - ACTIONS(1901), 1, + ACTIONS(1924), 1, sym__delete_mark_begin, - [23347] = 2, - ACTIONS(1904), 1, + [24224] = 2, + ACTIONS(1927), 1, anon_sym_LF, - STATE(269), 1, + STATE(272), 1, sym__newline, - [23354] = 2, - ACTIONS(1884), 1, + [24231] = 2, + ACTIONS(1907), 1, sym__in_fallback, - ACTIONS(1906), 1, + ACTIONS(1929), 1, sym__square_bracket_span_mark_begin, - [23361] = 2, - ACTIONS(1884), 1, + [24238] = 2, + ACTIONS(1907), 1, sym__in_fallback, - ACTIONS(1909), 1, + ACTIONS(1932), 1, sym__square_bracket_span_mark_begin, - [23368] = 2, - ACTIONS(1884), 1, + [24245] = 2, + ACTIONS(1907), 1, sym__in_fallback, - ACTIONS(1912), 1, + ACTIONS(1935), 1, sym__square_bracket_span_mark_begin, - [23375] = 1, - ACTIONS(1884), 2, + [24252] = 1, + ACTIONS(1907), 2, sym__parens_span_mark_begin, sym__in_fallback, - [23380] = 2, - ACTIONS(1915), 1, - sym__square_bracket_span_mark_begin, - ACTIONS(1918), 1, - sym__in_fallback, - [23387] = 2, - ACTIONS(1920), 1, + [24257] = 2, + ACTIONS(1938), 1, sym__emphasis_mark_begin, - ACTIONS(1923), 1, + ACTIONS(1941), 1, sym__in_fallback, - [23394] = 2, - ACTIONS(1923), 1, + [24264] = 2, + ACTIONS(1941), 1, sym__in_fallback, - ACTIONS(1925), 1, + ACTIONS(1943), 1, sym__strong_mark_begin, - [23401] = 2, - ACTIONS(1928), 1, + [24271] = 2, + ACTIONS(1946), 1, sym__curly_bracket_span_mark_begin, - ACTIONS(1931), 1, + ACTIONS(1949), 1, sym__in_fallback, - [23408] = 2, - ACTIONS(1933), 1, + [24278] = 2, + ACTIONS(1951), 1, + sym__id, + STATE(1046), 1, + sym_reference_label, + [24285] = 2, + ACTIONS(1953), 1, sym__emphasis_mark_begin, - ACTIONS(1936), 1, + ACTIONS(1956), 1, sym__in_fallback, - [23415] = 2, - ACTIONS(1936), 1, + [24292] = 2, + ACTIONS(1956), 1, sym__in_fallback, - ACTIONS(1938), 1, + ACTIONS(1958), 1, sym__strong_mark_begin, - [23422] = 2, - ACTIONS(1936), 1, + [24299] = 2, + ACTIONS(1956), 1, sym__in_fallback, - ACTIONS(1941), 1, + ACTIONS(1961), 1, sym__superscript_mark_begin, - [23429] = 2, - ACTIONS(1936), 1, + [24306] = 2, + ACTIONS(1956), 1, sym__in_fallback, - ACTIONS(1944), 1, + ACTIONS(1964), 1, sym__subscript_mark_begin, - [23436] = 2, - ACTIONS(1936), 1, + [24313] = 2, + ACTIONS(1956), 1, sym__in_fallback, - ACTIONS(1947), 1, + ACTIONS(1967), 1, sym__highlighted_mark_begin, - [23443] = 2, - ACTIONS(1936), 1, + [24320] = 2, + ACTIONS(1956), 1, sym__in_fallback, - ACTIONS(1950), 1, + ACTIONS(1970), 1, sym__insert_mark_begin, - [23450] = 2, - ACTIONS(1936), 1, + [24327] = 2, + ACTIONS(1956), 1, sym__in_fallback, - ACTIONS(1953), 1, + ACTIONS(1973), 1, sym__delete_mark_begin, - [23457] = 2, - ACTIONS(1956), 1, + [24334] = 2, + ACTIONS(1976), 1, anon_sym_LF, - STATE(307), 1, + STATE(311), 1, sym__newline, - [23464] = 2, - ACTIONS(1936), 1, + [24341] = 2, + ACTIONS(1956), 1, sym__in_fallback, - ACTIONS(1958), 1, + ACTIONS(1978), 1, sym__square_bracket_span_mark_begin, - [23471] = 2, - ACTIONS(1936), 1, + [24348] = 2, + ACTIONS(1956), 1, sym__in_fallback, - ACTIONS(1961), 1, + ACTIONS(1981), 1, sym__square_bracket_span_mark_begin, - [23478] = 2, - ACTIONS(1936), 1, + [24355] = 2, + ACTIONS(1956), 1, sym__in_fallback, - ACTIONS(1964), 1, + ACTIONS(1984), 1, sym__square_bracket_span_mark_begin, - [23485] = 1, - ACTIONS(1936), 2, - sym__parens_span_mark_begin, - sym__in_fallback, - [23490] = 1, - ACTIONS(1918), 2, + [24362] = 1, + ACTIONS(1956), 2, sym__parens_span_mark_begin, sym__in_fallback, - [23495] = 2, - ACTIONS(1967), 1, + [24367] = 2, + ACTIONS(1987), 1, sym__emphasis_mark_begin, - ACTIONS(1970), 1, + ACTIONS(1990), 1, sym__in_fallback, - [23502] = 2, - ACTIONS(1970), 1, + [24374] = 2, + ACTIONS(1990), 1, sym__in_fallback, - ACTIONS(1972), 1, + ACTIONS(1992), 1, sym__strong_mark_begin, - [23509] = 2, - ACTIONS(1975), 1, + [24381] = 2, + ACTIONS(1995), 1, sym__curly_bracket_span_mark_begin, - ACTIONS(1978), 1, - sym__in_fallback, - [23516] = 2, - ACTIONS(1918), 1, + ACTIONS(1998), 1, sym__in_fallback, - ACTIONS(1980), 1, - sym__superscript_mark_begin, - [23523] = 2, - ACTIONS(1983), 1, - sym__id, - STATE(646), 1, - sym_class_name, - [23530] = 2, - ACTIONS(1985), 1, + [24388] = 2, + ACTIONS(2000), 1, sym__emphasis_mark_begin, - ACTIONS(1988), 1, + ACTIONS(2003), 1, sym__in_fallback, - [23537] = 2, - ACTIONS(1988), 1, + [24395] = 2, + ACTIONS(2003), 1, sym__in_fallback, - ACTIONS(1990), 1, + ACTIONS(2005), 1, sym__strong_mark_begin, - [23544] = 2, - ACTIONS(1988), 1, + [24402] = 2, + ACTIONS(2003), 1, sym__in_fallback, - ACTIONS(1993), 1, + ACTIONS(2008), 1, sym__superscript_mark_begin, - [23551] = 2, - ACTIONS(1988), 1, + [24409] = 2, + ACTIONS(2003), 1, sym__in_fallback, - ACTIONS(1996), 1, + ACTIONS(2011), 1, sym__subscript_mark_begin, - [23558] = 2, - ACTIONS(1988), 1, + [24416] = 2, + ACTIONS(2003), 1, sym__in_fallback, - ACTIONS(1999), 1, + ACTIONS(2014), 1, sym__highlighted_mark_begin, - [23565] = 2, - ACTIONS(1988), 1, + [24423] = 2, + ACTIONS(2003), 1, sym__in_fallback, - ACTIONS(2002), 1, + ACTIONS(2017), 1, sym__insert_mark_begin, - [23572] = 2, - ACTIONS(1988), 1, + [24430] = 2, + ACTIONS(2003), 1, sym__in_fallback, - ACTIONS(2005), 1, + ACTIONS(2020), 1, sym__delete_mark_begin, - [23579] = 2, - ACTIONS(2008), 1, + [24437] = 2, + ACTIONS(2023), 1, anon_sym_LF, - STATE(347), 1, + STATE(348), 1, sym__newline, - [23586] = 2, - ACTIONS(1988), 1, + [24444] = 2, + ACTIONS(2003), 1, sym__in_fallback, - ACTIONS(2010), 1, + ACTIONS(2025), 1, sym__square_bracket_span_mark_begin, - [23593] = 2, - ACTIONS(1988), 1, + [24451] = 2, + ACTIONS(2003), 1, sym__in_fallback, - ACTIONS(2013), 1, + ACTIONS(2028), 1, sym__square_bracket_span_mark_begin, - [23600] = 2, - ACTIONS(1988), 1, + [24458] = 2, + ACTIONS(2003), 1, sym__in_fallback, - ACTIONS(2016), 1, + ACTIONS(2031), 1, sym__square_bracket_span_mark_begin, - [23607] = 1, - ACTIONS(1988), 2, + [24465] = 1, + ACTIONS(2003), 2, sym__parens_span_mark_begin, sym__in_fallback, - [23612] = 2, - ACTIONS(2019), 1, - anon_sym_PERCENT, - STATE(1074), 1, - sym__comment_with_newline, - [23619] = 2, - ACTIONS(2021), 1, + [24470] = 2, + ACTIONS(2034), 1, sym__emphasis_mark_begin, - ACTIONS(2024), 1, + ACTIONS(2037), 1, sym__in_fallback, - [23626] = 2, - ACTIONS(2024), 1, + [24477] = 2, + ACTIONS(2037), 1, sym__in_fallback, - ACTIONS(2026), 1, + ACTIONS(2039), 1, sym__strong_mark_begin, - [23633] = 2, - ACTIONS(2029), 1, + [24484] = 2, + ACTIONS(2042), 1, sym__curly_bracket_span_mark_begin, - ACTIONS(2032), 1, - sym__in_fallback, - [23640] = 2, - ACTIONS(1918), 1, - sym__in_fallback, - ACTIONS(2034), 1, - sym__subscript_mark_begin, - [23647] = 2, - ACTIONS(1918), 1, + ACTIONS(2045), 1, sym__in_fallback, - ACTIONS(2037), 1, - sym__highlighted_mark_begin, - [23654] = 2, - ACTIONS(1918), 1, + [24491] = 2, + ACTIONS(1848), 1, sym__in_fallback, - ACTIONS(2040), 1, - sym__insert_mark_begin, - [23661] = 2, - ACTIONS(2043), 1, + ACTIONS(2047), 1, + sym__strong_mark_begin, + [24498] = 2, + ACTIONS(2050), 1, sym__emphasis_mark_begin, - ACTIONS(2046), 1, + ACTIONS(2053), 1, sym__in_fallback, - [23668] = 2, - ACTIONS(2046), 1, + [24505] = 2, + ACTIONS(2053), 1, sym__in_fallback, - ACTIONS(2048), 1, + ACTIONS(2055), 1, sym__strong_mark_begin, - [23675] = 2, - ACTIONS(2046), 1, + [24512] = 2, + ACTIONS(2053), 1, sym__in_fallback, - ACTIONS(2051), 1, + ACTIONS(2058), 1, sym__superscript_mark_begin, - [23682] = 2, - ACTIONS(2046), 1, + [24519] = 2, + ACTIONS(2053), 1, sym__in_fallback, - ACTIONS(2054), 1, + ACTIONS(2061), 1, sym__subscript_mark_begin, - [23689] = 2, - ACTIONS(2046), 1, + [24526] = 2, + ACTIONS(2053), 1, sym__in_fallback, - ACTIONS(2057), 1, + ACTIONS(2064), 1, sym__highlighted_mark_begin, - [23696] = 2, - ACTIONS(2046), 1, + [24533] = 2, + ACTIONS(2053), 1, sym__in_fallback, - ACTIONS(2060), 1, + ACTIONS(2067), 1, sym__insert_mark_begin, - [23703] = 2, - ACTIONS(2046), 1, + [24540] = 2, + ACTIONS(2053), 1, sym__in_fallback, - ACTIONS(2063), 1, + ACTIONS(2070), 1, sym__delete_mark_begin, - [23710] = 2, - ACTIONS(2066), 1, + [24547] = 2, + ACTIONS(2073), 1, anon_sym_LF, STATE(384), 1, sym__newline, - [23717] = 2, - ACTIONS(2046), 1, + [24554] = 2, + ACTIONS(2053), 1, sym__in_fallback, - ACTIONS(2068), 1, + ACTIONS(2075), 1, sym__square_bracket_span_mark_begin, - [23724] = 2, - ACTIONS(2046), 1, + [24561] = 2, + ACTIONS(2053), 1, sym__in_fallback, - ACTIONS(2071), 1, + ACTIONS(2078), 1, sym__square_bracket_span_mark_begin, - [23731] = 2, - ACTIONS(2046), 1, + [24568] = 2, + ACTIONS(2053), 1, sym__in_fallback, - ACTIONS(2074), 1, + ACTIONS(2081), 1, sym__square_bracket_span_mark_begin, - [23738] = 1, - ACTIONS(2046), 2, + [24575] = 1, + ACTIONS(2053), 2, sym__parens_span_mark_begin, sym__in_fallback, - [23743] = 2, - ACTIONS(2077), 1, + [24580] = 2, + ACTIONS(1848), 1, + sym__in_fallback, + ACTIONS(2084), 1, + sym__square_bracket_span_mark_begin, + [24587] = 2, + ACTIONS(1848), 1, + sym__in_fallback, + ACTIONS(2087), 1, + sym__square_bracket_span_mark_begin, + [24594] = 2, + ACTIONS(2090), 1, sym__emphasis_mark_begin, - ACTIONS(2080), 1, + ACTIONS(2093), 1, sym__in_fallback, - [23750] = 2, - ACTIONS(2080), 1, + [24601] = 2, + ACTIONS(2093), 1, sym__in_fallback, - ACTIONS(2082), 1, + ACTIONS(2095), 1, sym__strong_mark_begin, - [23757] = 2, - ACTIONS(2085), 1, + [24608] = 2, + ACTIONS(2098), 1, sym__curly_bracket_span_mark_begin, - ACTIONS(2088), 1, + ACTIONS(2101), 1, sym__in_fallback, - [23764] = 2, - ACTIONS(1918), 1, + [24615] = 2, + ACTIONS(1848), 1, sym__in_fallback, - ACTIONS(2090), 1, - sym__delete_mark_begin, - [23771] = 2, - ACTIONS(2093), 1, + ACTIONS(2103), 1, sym__emphasis_mark_begin, - ACTIONS(2096), 1, + [24622] = 2, + ACTIONS(2106), 1, + sym__emphasis_mark_begin, + ACTIONS(2109), 1, sym__in_fallback, - [23778] = 2, - ACTIONS(2096), 1, + [24629] = 2, + ACTIONS(2109), 1, sym__in_fallback, - ACTIONS(2098), 1, + ACTIONS(2111), 1, sym__strong_mark_begin, - [23785] = 2, - ACTIONS(2096), 1, + [24636] = 2, + ACTIONS(2109), 1, sym__in_fallback, - ACTIONS(2101), 1, + ACTIONS(2114), 1, sym__superscript_mark_begin, - [23792] = 2, - ACTIONS(2096), 1, + [24643] = 2, + ACTIONS(2109), 1, sym__in_fallback, - ACTIONS(2104), 1, + ACTIONS(2117), 1, sym__subscript_mark_begin, - [23799] = 2, - ACTIONS(2096), 1, + [24650] = 2, + ACTIONS(2109), 1, sym__in_fallback, - ACTIONS(2107), 1, + ACTIONS(2120), 1, sym__highlighted_mark_begin, - [23806] = 2, - ACTIONS(2096), 1, + [24657] = 2, + ACTIONS(2109), 1, sym__in_fallback, - ACTIONS(2110), 1, + ACTIONS(2123), 1, sym__insert_mark_begin, - [23813] = 2, - ACTIONS(2096), 1, + [24664] = 2, + ACTIONS(2109), 1, sym__in_fallback, - ACTIONS(2113), 1, + ACTIONS(2126), 1, sym__delete_mark_begin, - [23820] = 2, - ACTIONS(2116), 1, + [24671] = 2, + ACTIONS(2129), 1, anon_sym_LF, - STATE(416), 1, + STATE(420), 1, sym__newline, - [23827] = 2, - ACTIONS(2096), 1, + [24678] = 2, + ACTIONS(2109), 1, sym__in_fallback, - ACTIONS(2118), 1, + ACTIONS(2131), 1, sym__square_bracket_span_mark_begin, - [23834] = 2, - ACTIONS(2096), 1, + [24685] = 2, + ACTIONS(2109), 1, sym__in_fallback, - ACTIONS(2121), 1, + ACTIONS(2134), 1, sym__square_bracket_span_mark_begin, - [23841] = 2, - ACTIONS(2096), 1, + [24692] = 2, + ACTIONS(2109), 1, sym__in_fallback, - ACTIONS(2124), 1, + ACTIONS(2137), 1, sym__square_bracket_span_mark_begin, - [23848] = 1, - ACTIONS(2096), 2, + [24699] = 1, + ACTIONS(2109), 2, sym__parens_span_mark_begin, sym__in_fallback, - [23853] = 2, - ACTIONS(2127), 1, - sym__id, - STATE(890), 1, - sym_reference_label, - [23860] = 2, - ACTIONS(2129), 1, + [24704] = 2, + ACTIONS(2140), 1, sym__emphasis_mark_begin, - ACTIONS(2132), 1, + ACTIONS(2143), 1, sym__in_fallback, - [23867] = 2, - ACTIONS(2132), 1, + [24711] = 2, + ACTIONS(2143), 1, sym__in_fallback, - ACTIONS(2134), 1, + ACTIONS(2145), 1, sym__strong_mark_begin, - [23874] = 2, - ACTIONS(2137), 1, + [24718] = 2, + ACTIONS(2148), 1, + sym__emphasis_mark_begin, + ACTIONS(2151), 1, + sym__in_fallback, + [24725] = 2, + ACTIONS(2151), 1, + sym__in_fallback, + ACTIONS(2153), 1, + sym__strong_mark_begin, + [24732] = 2, + ACTIONS(2156), 1, sym__curly_bracket_span_mark_begin, - ACTIONS(2140), 1, + ACTIONS(2159), 1, + sym__in_fallback, + [24739] = 2, + ACTIONS(1848), 1, sym__in_fallback, - [23881] = 2, - ACTIONS(2142), 1, + ACTIONS(2161), 1, + sym__square_bracket_span_mark_begin, + [24746] = 2, + ACTIONS(2164), 1, sym__emphasis_mark_begin, - ACTIONS(2145), 1, + ACTIONS(2167), 1, sym__in_fallback, - [23888] = 2, - ACTIONS(2145), 1, + [24753] = 2, + ACTIONS(2167), 1, sym__in_fallback, - ACTIONS(2147), 1, + ACTIONS(2169), 1, sym__strong_mark_begin, - [23895] = 2, - ACTIONS(2145), 1, + [24760] = 2, + ACTIONS(2167), 1, sym__in_fallback, - ACTIONS(2150), 1, + ACTIONS(2172), 1, sym__superscript_mark_begin, - [23902] = 2, - ACTIONS(2145), 1, + [24767] = 2, + ACTIONS(2167), 1, sym__in_fallback, - ACTIONS(2153), 1, + ACTIONS(2175), 1, sym__subscript_mark_begin, - [23909] = 2, - ACTIONS(2145), 1, + [24774] = 2, + ACTIONS(2167), 1, sym__in_fallback, - ACTIONS(2156), 1, + ACTIONS(2178), 1, sym__highlighted_mark_begin, - [23916] = 2, - ACTIONS(2145), 1, + [24781] = 2, + ACTIONS(2167), 1, sym__in_fallback, - ACTIONS(2159), 1, + ACTIONS(2181), 1, sym__insert_mark_begin, - [23923] = 2, - ACTIONS(2145), 1, + [24788] = 2, + ACTIONS(2167), 1, sym__in_fallback, - ACTIONS(2162), 1, + ACTIONS(2184), 1, sym__delete_mark_begin, - [23930] = 2, - ACTIONS(2165), 1, + [24795] = 2, + ACTIONS(2187), 1, anon_sym_LF, - STATE(605), 1, + STATE(533), 1, sym__newline, - [23937] = 2, - ACTIONS(2145), 1, - sym__in_fallback, + [24802] = 2, ACTIONS(2167), 1, + sym__in_fallback, + ACTIONS(2189), 1, sym__square_bracket_span_mark_begin, - [23944] = 2, - ACTIONS(2145), 1, + [24809] = 2, + ACTIONS(2167), 1, sym__in_fallback, - ACTIONS(2170), 1, + ACTIONS(2192), 1, sym__square_bracket_span_mark_begin, - [23951] = 2, - ACTIONS(2145), 1, + [24816] = 2, + ACTIONS(2167), 1, sym__in_fallback, - ACTIONS(2173), 1, + ACTIONS(2195), 1, sym__square_bracket_span_mark_begin, - [23958] = 1, - ACTIONS(2145), 2, + [24823] = 1, + ACTIONS(2167), 2, sym__parens_span_mark_begin, sym__in_fallback, - [23963] = 2, - ACTIONS(2176), 1, + [24828] = 2, + ACTIONS(2198), 1, sym__emphasis_mark_begin, - ACTIONS(2179), 1, + ACTIONS(2201), 1, sym__in_fallback, - [23970] = 2, - ACTIONS(2179), 1, + [24835] = 2, + ACTIONS(2201), 1, sym__in_fallback, - ACTIONS(2181), 1, + ACTIONS(2203), 1, sym__strong_mark_begin, - [23977] = 2, - ACTIONS(2184), 1, + [24842] = 2, + ACTIONS(2206), 1, sym__curly_bracket_span_mark_begin, - ACTIONS(2187), 1, + ACTIONS(2209), 1, sym__in_fallback, - [23984] = 2, - ACTIONS(2019), 1, + [24849] = 2, + ACTIONS(1887), 1, anon_sym_PERCENT, - STATE(1006), 1, + STATE(1026), 1, sym__comment_with_newline, - [23991] = 2, - ACTIONS(2189), 1, - anon_sym_LF, - STATE(266), 1, - sym__newline, - [23998] = 2, - ACTIONS(1817), 1, + [24856] = 2, + ACTIONS(2211), 1, + sym__curly_bracket_span_mark_begin, + ACTIONS(2214), 1, sym__in_fallback, - ACTIONS(2191), 1, + [24863] = 1, + ACTIONS(1848), 2, + sym__parens_span_mark_begin, + sym__in_fallback, + [24868] = 2, + ACTIONS(2216), 1, sym__emphasis_mark_begin, - [24005] = 2, - ACTIONS(1817), 1, + ACTIONS(2219), 1, + sym__in_fallback, + [24875] = 2, + ACTIONS(2219), 1, sym__in_fallback, - ACTIONS(2194), 1, + ACTIONS(2221), 1, sym__strong_mark_begin, - [24012] = 2, - ACTIONS(1817), 1, + [24882] = 2, + ACTIONS(2219), 1, sym__in_fallback, - ACTIONS(2197), 1, + ACTIONS(2224), 1, sym__superscript_mark_begin, - [24019] = 2, - ACTIONS(2127), 1, + [24889] = 2, + ACTIONS(1951), 1, sym__id, - STATE(1023), 1, + STATE(1043), 1, sym_reference_label, - [24026] = 2, - ACTIONS(1817), 1, + [24896] = 2, + ACTIONS(2219), 1, sym__in_fallback, - ACTIONS(2200), 1, + ACTIONS(2227), 1, sym__subscript_mark_begin, - [24033] = 2, - ACTIONS(2019), 1, + [24903] = 2, + ACTIONS(1887), 1, anon_sym_PERCENT, - STATE(1076), 1, + STATE(1096), 1, sym__comment_with_newline, - [24040] = 2, - ACTIONS(1817), 1, + [24910] = 2, + ACTIONS(2219), 1, sym__in_fallback, - ACTIONS(2203), 1, + ACTIONS(2230), 1, sym__highlighted_mark_begin, - [24047] = 2, - ACTIONS(1817), 1, + [24917] = 2, + ACTIONS(2219), 1, sym__in_fallback, - ACTIONS(2206), 1, + ACTIONS(2233), 1, sym__insert_mark_begin, - [24054] = 2, - ACTIONS(1817), 1, + [24924] = 2, + ACTIONS(2219), 1, sym__in_fallback, - ACTIONS(2209), 1, + ACTIONS(2236), 1, sym__delete_mark_begin, - [24061] = 2, - ACTIONS(2212), 1, + [24931] = 2, + ACTIONS(2239), 1, anon_sym_LF, - STATE(304), 1, + STATE(309), 1, sym__newline, - [24068] = 2, - ACTIONS(1817), 1, + [24938] = 2, + ACTIONS(2219), 1, sym__in_fallback, - ACTIONS(2214), 1, + ACTIONS(2241), 1, sym__square_bracket_span_mark_begin, - [24075] = 2, - ACTIONS(1817), 1, + [24945] = 2, + ACTIONS(2219), 1, sym__in_fallback, - ACTIONS(2217), 1, + ACTIONS(2244), 1, sym__square_bracket_span_mark_begin, - [24082] = 2, - ACTIONS(1817), 1, + [24952] = 2, + ACTIONS(2219), 1, sym__in_fallback, - ACTIONS(2220), 1, + ACTIONS(2247), 1, sym__square_bracket_span_mark_begin, - [24089] = 2, - ACTIONS(2127), 1, + [24959] = 2, + ACTIONS(1951), 1, sym__id, - STATE(1092), 1, + STATE(1112), 1, sym_reference_label, - [24096] = 2, - ACTIONS(1918), 1, + [24966] = 1, + ACTIONS(2219), 2, + sym__parens_span_mark_begin, sym__in_fallback, - ACTIONS(2223), 1, - sym__strong_mark_begin, - [24103] = 2, - ACTIONS(2019), 1, + [24971] = 2, + ACTIONS(1887), 1, anon_sym_PERCENT, - STATE(976), 1, + STATE(1074), 1, sym__comment_with_newline, - [24110] = 2, - ACTIONS(1918), 1, - sym__in_fallback, - ACTIONS(2226), 1, - sym__square_bracket_span_mark_begin, - [24117] = 2, - ACTIONS(2229), 1, + [24978] = 2, + ACTIONS(2250), 1, sym__emphasis_mark_begin, - ACTIONS(2232), 1, + ACTIONS(2253), 1, sym__in_fallback, - [24124] = 2, - ACTIONS(2232), 1, + [24985] = 2, + ACTIONS(2253), 1, sym__in_fallback, - ACTIONS(2234), 1, + ACTIONS(2255), 1, sym__strong_mark_begin, - [24131] = 2, - ACTIONS(2237), 1, + [24992] = 2, + ACTIONS(2258), 1, sym__curly_bracket_span_mark_begin, - ACTIONS(2240), 1, + ACTIONS(2261), 1, sym__in_fallback, - [24138] = 2, - ACTIONS(2127), 1, + [24999] = 2, + ACTIONS(1951), 1, sym__id, - STATE(994), 1, + STATE(984), 1, sym_reference_label, - [24145] = 2, - ACTIONS(2019), 1, + [25006] = 2, + ACTIONS(1887), 1, anon_sym_PERCENT, - STATE(892), 1, + STATE(906), 1, sym__comment_with_newline, - [24152] = 2, - ACTIONS(1918), 1, - sym__in_fallback, - ACTIONS(2242), 1, - sym__square_bracket_span_mark_begin, - [24159] = 2, - ACTIONS(2127), 1, + [25013] = 2, + ACTIONS(1951), 1, sym__id, - STATE(920), 1, + STATE(914), 1, sym_reference_label, - [24166] = 2, - ACTIONS(2019), 1, + [25020] = 2, + ACTIONS(1887), 1, anon_sym_PERCENT, - STATE(1056), 1, + STATE(1077), 1, sym__comment_with_newline, - [24173] = 2, - ACTIONS(2245), 1, - sym__emphasis_mark_begin, - ACTIONS(2248), 1, - sym__in_fallback, - [24180] = 2, - ACTIONS(2248), 1, - sym__in_fallback, - ACTIONS(2250), 1, - sym__strong_mark_begin, - [24187] = 2, - ACTIONS(2127), 1, + [25027] = 2, + ACTIONS(1951), 1, sym__id, - STATE(1073), 1, + STATE(1097), 1, sym_reference_label, - [24194] = 2, - ACTIONS(2019), 1, + [25034] = 2, + ACTIONS(1887), 1, anon_sym_PERCENT, - STATE(924), 1, + STATE(941), 1, sym__comment_with_newline, - [24201] = 2, - ACTIONS(2253), 1, + [25041] = 2, + ACTIONS(2263), 1, sym__emphasis_mark_begin, - ACTIONS(2256), 1, + ACTIONS(2266), 1, sym__in_fallback, - [24208] = 2, - ACTIONS(2256), 1, + [25048] = 2, + ACTIONS(2266), 1, sym__in_fallback, - ACTIONS(2258), 1, + ACTIONS(2268), 1, sym__strong_mark_begin, - [24215] = 2, - ACTIONS(2256), 1, + [25055] = 2, + ACTIONS(2266), 1, sym__in_fallback, - ACTIONS(2261), 1, + ACTIONS(2271), 1, sym__superscript_mark_begin, - [24222] = 2, - ACTIONS(2256), 1, + [25062] = 2, + ACTIONS(2266), 1, sym__in_fallback, - ACTIONS(2264), 1, + ACTIONS(2274), 1, sym__subscript_mark_begin, - [24229] = 2, - ACTIONS(2256), 1, + [25069] = 2, + ACTIONS(2266), 1, sym__in_fallback, - ACTIONS(2267), 1, + ACTIONS(2277), 1, sym__highlighted_mark_begin, - [24236] = 2, - ACTIONS(2127), 1, + [25076] = 2, + ACTIONS(1951), 1, sym__id, - STATE(935), 1, + STATE(949), 1, sym_reference_label, - [24243] = 2, - ACTIONS(2256), 1, + [25083] = 2, + ACTIONS(2266), 1, sym__in_fallback, - ACTIONS(2270), 1, + ACTIONS(2280), 1, sym__insert_mark_begin, - [24250] = 2, - ACTIONS(2019), 1, + [25090] = 2, + ACTIONS(1887), 1, anon_sym_PERCENT, - STATE(1008), 1, + STATE(1015), 1, sym__comment_with_newline, - [24257] = 2, - ACTIONS(2256), 1, + [25097] = 2, + ACTIONS(2266), 1, sym__in_fallback, - ACTIONS(2273), 1, + ACTIONS(2283), 1, sym__delete_mark_begin, - [24264] = 2, - ACTIONS(2276), 1, + [25104] = 2, + ACTIONS(2286), 1, anon_sym_LF, - STATE(455), 1, + STATE(461), 1, sym__newline, - [24271] = 2, - ACTIONS(2256), 1, + [25111] = 2, + ACTIONS(2266), 1, sym__in_fallback, - ACTIONS(2278), 1, + ACTIONS(2288), 1, sym__square_bracket_span_mark_begin, - [24278] = 2, - ACTIONS(2256), 1, + [25118] = 2, + ACTIONS(2266), 1, sym__in_fallback, - ACTIONS(2281), 1, + ACTIONS(2291), 1, sym__square_bracket_span_mark_begin, - [24285] = 2, - ACTIONS(2256), 1, + [25125] = 2, + ACTIONS(2266), 1, sym__in_fallback, - ACTIONS(2284), 1, + ACTIONS(2294), 1, sym__square_bracket_span_mark_begin, - [24292] = 1, - ACTIONS(2256), 2, + [25132] = 1, + ACTIONS(2266), 2, sym__parens_span_mark_begin, sym__in_fallback, - [24297] = 2, - ACTIONS(2127), 1, + [25137] = 2, + ACTIONS(1951), 1, sym__id, - STATE(1041), 1, + STATE(1061), 1, sym_reference_label, - [24304] = 2, - ACTIONS(2019), 1, + [25144] = 2, + ACTIONS(1887), 1, anon_sym_PERCENT, - STATE(1109), 1, + STATE(1129), 1, sym__comment_with_newline, - [24311] = 2, - ACTIONS(2287), 1, + [25151] = 2, + ACTIONS(2297), 1, sym__emphasis_mark_begin, - ACTIONS(2290), 1, + ACTIONS(2300), 1, sym__in_fallback, - [24318] = 2, - ACTIONS(2290), 1, + [25158] = 2, + ACTIONS(2300), 1, sym__in_fallback, - ACTIONS(2292), 1, + ACTIONS(2302), 1, sym__strong_mark_begin, - [24325] = 2, - ACTIONS(2295), 1, + [25165] = 2, + ACTIONS(2305), 1, sym__curly_bracket_span_mark_begin, - ACTIONS(2298), 1, + ACTIONS(2308), 1, sym__in_fallback, - [24332] = 2, - ACTIONS(2127), 1, + [25172] = 2, + ACTIONS(1951), 1, sym__id, - STATE(1183), 1, + STATE(1213), 1, sym_reference_label, - [24339] = 2, - ACTIONS(2019), 1, + [25179] = 2, + ACTIONS(1887), 1, anon_sym_PERCENT, - STATE(905), 1, + STATE(925), 1, sym__comment_with_newline, - [24346] = 2, - ACTIONS(2127), 1, + [25186] = 2, + ACTIONS(1951), 1, sym__id, - STATE(913), 1, + STATE(933), 1, sym_reference_label, - [24353] = 2, - ACTIONS(2019), 1, + [25193] = 2, + ACTIONS(1887), 1, anon_sym_PERCENT, - STATE(939), 1, + STATE(959), 1, sym__comment_with_newline, - [24360] = 2, - ACTIONS(1918), 1, + [25200] = 2, + ACTIONS(1848), 1, sym__in_fallback, - ACTIONS(2300), 1, - sym__emphasis_mark_begin, - [24367] = 2, - ACTIONS(2303), 1, - sym__curly_bracket_span_mark_begin, - ACTIONS(2306), 1, + ACTIONS(2310), 1, + sym__superscript_mark_begin, + [25207] = 2, + ACTIONS(1848), 1, sym__in_fallback, - [24374] = 2, - ACTIONS(1819), 1, + ACTIONS(2313), 1, + sym__subscript_mark_begin, + [25214] = 2, + ACTIONS(1828), 1, sym__in_fallback, - ACTIONS(2308), 1, + ACTIONS(2316), 1, sym__emphasis_mark_begin, - [24381] = 2, - ACTIONS(1819), 1, + [25221] = 2, + ACTIONS(1828), 1, sym__in_fallback, - ACTIONS(2311), 1, + ACTIONS(2319), 1, sym__strong_mark_begin, - [24388] = 2, - ACTIONS(2127), 1, + [25228] = 2, + ACTIONS(1951), 1, sym__id, - STATE(947), 1, + STATE(967), 1, sym_reference_label, - [24395] = 2, - ACTIONS(1819), 1, - sym__in_fallback, - ACTIONS(2314), 1, - sym__superscript_mark_begin, - [24402] = 2, - ACTIONS(1819), 1, + [25235] = 2, + ACTIONS(1828), 1, sym__in_fallback, - ACTIONS(2317), 1, + ACTIONS(2322), 1, sym__subscript_mark_begin, - [24409] = 2, - ACTIONS(1819), 1, + [25242] = 2, + ACTIONS(1828), 1, sym__in_fallback, - ACTIONS(2320), 1, + ACTIONS(2325), 1, sym__highlighted_mark_begin, - [24416] = 2, - ACTIONS(1819), 1, + [25249] = 2, + ACTIONS(1828), 1, sym__in_fallback, - ACTIONS(2323), 1, + ACTIONS(2328), 1, sym__insert_mark_begin, - [24423] = 2, - ACTIONS(1819), 1, + [25256] = 2, + ACTIONS(1828), 1, sym__in_fallback, - ACTIONS(2326), 1, + ACTIONS(2331), 1, sym__delete_mark_begin, - [24430] = 2, - ACTIONS(2329), 1, + [25263] = 2, + ACTIONS(2334), 1, anon_sym_LF, - STATE(489), 1, + STATE(493), 1, sym__newline, - [24437] = 2, - ACTIONS(1819), 1, + [25270] = 2, + ACTIONS(1828), 1, sym__in_fallback, - ACTIONS(2331), 1, + ACTIONS(2336), 1, sym__square_bracket_span_mark_begin, - [24444] = 2, - ACTIONS(1819), 1, + [25277] = 2, + ACTIONS(1828), 1, sym__in_fallback, - ACTIONS(2334), 1, + ACTIONS(2339), 1, sym__square_bracket_span_mark_begin, - [24451] = 2, - ACTIONS(1819), 1, + [25284] = 2, + ACTIONS(1828), 1, sym__in_fallback, - ACTIONS(2337), 1, + ACTIONS(2342), 1, sym__square_bracket_span_mark_begin, - [24458] = 1, - ACTIONS(1837), 2, + [25291] = 1, + ACTIONS(1828), 2, sym__parens_span_mark_begin, sym__in_fallback, - [24463] = 1, - ACTIONS(2340), 1, - sym_highlighted_end, - [24467] = 1, - ACTIONS(2342), 1, - sym__strong_mark_begin, - [24471] = 1, - ACTIONS(2344), 1, - anon_sym_RBRACE, - [24475] = 1, - ACTIONS(2346), 1, - anon_sym_RBRACE, - [24479] = 1, + [25296] = 2, + ACTIONS(1892), 1, + sym__in_fallback, + ACTIONS(2345), 1, + sym__emphasis_mark_begin, + [25303] = 1, ACTIONS(2348), 1, - sym__verbatim_end, - [24483] = 1, + sym_subscript_end, + [25307] = 1, ACTIONS(2350), 1, - anon_sym_RBRACK, - [24487] = 1, + anon_sym_RBRACE, + [25311] = 1, ACTIONS(2352), 1, - sym_highlighted_end, - [24491] = 1, + anon_sym_RBRACE, + [25315] = 1, ACTIONS(2354), 1, - sym__parens_span_end, - [24495] = 1, + sym__verbatim_end, + [25319] = 1, ACTIONS(2356), 1, - sym__square_bracket_span_end, - [24499] = 1, + anon_sym_RBRACE, + [25323] = 1, ACTIONS(2358), 1, - sym__verbatim_end, - [24503] = 1, + sym_emphasis_end, + [25327] = 1, ACTIONS(2360), 1, - anon_sym_RBRACE, - [24507] = 1, + sym_strong_end, + [25331] = 1, ACTIONS(2362), 1, - sym_emphasis_end, - [24511] = 1, + sym_superscript_end, + [25335] = 1, ACTIONS(2364), 1, - sym_strong_end, - [24515] = 1, + sym_subscript_end, + [25339] = 1, ACTIONS(2366), 1, - sym_superscript_end, - [24519] = 1, + sym_highlighted_end, + [25343] = 1, ACTIONS(2368), 1, - sym_subscript_end, - [24523] = 1, + sym_insert_end, + [25347] = 1, ACTIONS(2370), 1, - sym_highlighted_end, - [24527] = 1, + sym_delete_end, + [25351] = 1, ACTIONS(2372), 1, - sym__superscript_mark_begin, - [24531] = 1, + sym__square_bracket_span_end, + [25355] = 1, ACTIONS(2374), 1, - sym__verbatim_end, - [24535] = 1, + anon_sym_RBRACK, + [25359] = 1, ACTIONS(2376), 1, - sym_insert_end, - [24539] = 1, + sym_strong_end, + [25363] = 1, ACTIONS(2378), 1, - anon_sym_EQ, - [24543] = 1, + sym__insert_mark_begin, + [25367] = 1, ACTIONS(2380), 1, - sym__verbatim_end, - [24547] = 1, + sym__delete_mark_begin, + [25371] = 1, ACTIONS(2382), 1, - sym__subscript_mark_begin, - [24551] = 1, + sym__verbatim_end, + [25375] = 1, ACTIONS(2384), 1, sym__verbatim_end, - [24555] = 1, + [25379] = 1, ACTIONS(2386), 1, - anon_sym_RBRACE, - [24559] = 1, + sym__parens_span_end, + [25383] = 1, ACTIONS(2388), 1, - sym_emphasis_end, - [24563] = 1, + sym__emphasis_mark_begin, + [25387] = 1, ACTIONS(2390), 1, - sym_strong_end, - [24567] = 1, + aux_sym_value_token1, + [25391] = 1, ACTIONS(2392), 1, - sym_superscript_end, - [24571] = 1, + sym__verbatim_end, + [25395] = 1, ACTIONS(2394), 1, - sym_subscript_end, - [24575] = 1, + anon_sym_RBRACE, + [25399] = 1, ACTIONS(2396), 1, - sym_highlighted_end, - [24579] = 1, + sym_emphasis_end, + [25403] = 1, ACTIONS(2398), 1, - sym_insert_end, - [24583] = 1, + sym_strong_end, + [25407] = 1, ACTIONS(2400), 1, - sym_delete_end, - [24587] = 1, + sym_superscript_end, + [25411] = 1, ACTIONS(2402), 1, - sym__square_bracket_span_end, - [24591] = 1, + sym_subscript_end, + [25415] = 1, ACTIONS(2404), 1, - anon_sym_RBRACK, - [24595] = 1, + sym_highlighted_end, + [25419] = 1, ACTIONS(2406), 1, - sym__highlighted_mark_begin, - [24599] = 1, + sym_insert_end, + [25423] = 1, ACTIONS(2408), 1, - sym__parens_span_end, - [24603] = 1, + sym_delete_end, + [25427] = 1, ACTIONS(2410), 1, - sym__insert_mark_begin, - [24607] = 1, + sym__square_bracket_span_end, + [25431] = 1, ACTIONS(2412), 1, - anon_sym_RBRACE, - [24611] = 1, + anon_sym_RBRACK, + [25435] = 1, ACTIONS(2414), 1, - sym_delete_end, - [24615] = 1, + anon_sym_RBRACE, + [25439] = 1, ACTIONS(2416), 1, - sym__square_bracket_span_end, - [24619] = 1, + sym__parens_span_end, + [25443] = 1, ACTIONS(2418), 1, - anon_sym_RBRACK, - [24623] = 1, + sym__verbatim_end, + [25447] = 1, ACTIONS(2420), 1, - anon_sym_RBRACK, - [24627] = 1, + anon_sym_RBRACE, + [25451] = 1, ACTIONS(2422), 1, - sym__verbatim_end, - [24631] = 1, + sym__parens_span_end, + [25455] = 1, ACTIONS(2424), 1, - anon_sym_RBRACE, - [24635] = 1, + sym__verbatim_end, + [25459] = 1, ACTIONS(2426), 1, - sym_emphasis_end, - [24639] = 1, + anon_sym_RBRACE, + [25463] = 1, ACTIONS(2428), 1, - sym_strong_end, - [24643] = 1, + sym_emphasis_end, + [25467] = 1, ACTIONS(2430), 1, - sym_superscript_end, - [24647] = 1, + sym_strong_end, + [25471] = 1, ACTIONS(2432), 1, - sym_subscript_end, - [24651] = 1, + sym_superscript_end, + [25475] = 1, ACTIONS(2434), 1, - sym_highlighted_end, - [24655] = 1, + sym_subscript_end, + [25479] = 1, ACTIONS(2436), 1, - sym_insert_end, - [24659] = 1, + sym_highlighted_end, + [25483] = 1, ACTIONS(2438), 1, - sym__parens_span_end, - [24663] = 1, + sym_insert_end, + [25487] = 1, ACTIONS(2440), 1, - sym__parens_span_mark_begin, - [24667] = 1, + sym_delete_end, + [25491] = 1, ACTIONS(2442), 1, - sym__verbatim_end, - [24671] = 1, + sym__square_bracket_span_end, + [25495] = 1, ACTIONS(2444), 1, - sym_delete_end, - [24675] = 1, + anon_sym_RBRACK, + [25499] = 1, + ACTIONS(1676), 1, + anon_sym_RBRACE, + [25503] = 1, ACTIONS(2446), 1, - sym__square_bracket_span_end, - [24679] = 1, + sym__whitespace, + [25507] = 1, ACTIONS(2448), 1, - anon_sym_RBRACK, - [24683] = 1, + sym__verbatim_end, + [25511] = 1, ACTIONS(2450), 1, - sym__delete_mark_begin, - [24687] = 1, + sym__parens_span_mark_begin, + [25515] = 1, ACTIONS(2452), 1, - sym__verbatim_end, - [24691] = 1, + sym__parens_span_end, + [25519] = 1, ACTIONS(2454), 1, - anon_sym_RBRACE, - [24695] = 1, + sym__square_bracket_span_mark_begin, + [25523] = 1, ACTIONS(2456), 1, - sym_emphasis_end, - [24699] = 1, + anon_sym_DQUOTE, + [25527] = 1, ACTIONS(2458), 1, - sym_strong_end, - [24703] = 1, + sym__verbatim_end, + [25531] = 1, ACTIONS(2460), 1, - sym_superscript_end, - [24707] = 1, + anon_sym_RBRACE, + [25535] = 1, ACTIONS(2462), 1, - sym_subscript_end, - [24711] = 1, + sym_emphasis_end, + [25539] = 1, ACTIONS(2464), 1, - sym_highlighted_end, - [24715] = 1, + sym_strong_end, + [25543] = 1, ACTIONS(2466), 1, - sym_insert_end, - [24719] = 1, + sym_superscript_end, + [25547] = 1, ACTIONS(2468), 1, - sym_delete_end, - [24723] = 1, + sym_subscript_end, + [25551] = 1, ACTIONS(2470), 1, - sym__square_bracket_span_end, - [24727] = 1, + sym_highlighted_end, + [25555] = 1, ACTIONS(2472), 1, - anon_sym_RBRACK, - [24731] = 1, + sym_insert_end, + [25559] = 1, ACTIONS(2474), 1, - anon_sym_RBRACE, - [24735] = 1, + sym_delete_end, + [25563] = 1, ACTIONS(2476), 1, - sym__parens_span_end, - [24739] = 1, + sym__square_bracket_span_end, + [25567] = 1, ACTIONS(2478), 1, - sym__square_bracket_span_mark_begin, - [24743] = 1, + anon_sym_RBRACK, + [25571] = 1, ACTIONS(2480), 1, anon_sym_RBRACE, - [24747] = 1, + [25575] = 1, ACTIONS(2482), 1, - sym__verbatim_content, - [24751] = 1, + sym__parens_span_end, + [25579] = 1, ACTIONS(2484), 1, - sym__curly_bracket_span_mark_begin, - [24755] = 1, + sym_emphasis_end, + [25583] = 1, ACTIONS(2486), 1, - sym__verbatim_content, - [24759] = 1, + anon_sym_RBRACE, + [25587] = 1, ACTIONS(2488), 1, - sym__parens_span_end, - [24763] = 1, + sym__verbatim_content, + [25591] = 1, ACTIONS(2490), 1, - sym__parens_span_end, - [24767] = 1, + sym__curly_bracket_span_mark_begin, + [25595] = 1, ACTIONS(2492), 1, - sym__square_bracket_span_mark_begin, - [24771] = 1, - ACTIONS(2494), 1, sym__verbatim_content, - [24775] = 1, + [25599] = 1, + ACTIONS(2494), 1, + anon_sym_RBRACE, + [25603] = 1, ACTIONS(2496), 1, - sym__square_bracket_span_mark_begin, - [24779] = 1, + sym_superscript_end, + [25607] = 1, ACTIONS(2498), 1, - sym__verbatim_content, - [24783] = 1, + sym_subscript_end, + [25611] = 1, ACTIONS(2500), 1, - anon_sym_RBRACE, - [24787] = 1, + sym_strong_end, + [25615] = 1, ACTIONS(2502), 1, - aux_sym_inline_link_destination_token1, - [24791] = 1, + sym_superscript_end, + [25619] = 1, ACTIONS(2504), 1, - anon_sym_RBRACE, - [24795] = 1, + sym_highlighted_end, + [25623] = 1, ACTIONS(2506), 1, sym_insert_end, - [24799] = 1, + [25627] = 1, ACTIONS(2508), 1, - sym__whitespace, - [24803] = 1, + sym_delete_end, + [25631] = 1, ACTIONS(2510), 1, - aux_sym_inline_link_destination_token1, - [24807] = 1, - ACTIONS(2512), 1, sym__square_bracket_span_end, - [24811] = 1, + [25635] = 1, + ACTIONS(2512), 1, + anon_sym_RBRACK, + [25639] = 1, ACTIONS(2514), 1, - sym_language, - [24815] = 1, + sym__whitespace, + [25643] = 1, ACTIONS(2516), 1, - sym__verbatim_content, - [24819] = 1, + aux_sym_inline_link_destination_token1, + [25647] = 1, ACTIONS(2518), 1, - sym__curly_bracket_span_mark_begin, - [24823] = 1, + sym__square_bracket_span_end, + [25651] = 1, ACTIONS(2520), 1, - sym__verbatim_content, - [24827] = 1, + sym_language, + [25655] = 1, ACTIONS(2522), 1, - anon_sym_RBRACE, - [24831] = 1, + sym__verbatim_content, + [25659] = 1, ACTIONS(2524), 1, - sym_subscript_end, - [24835] = 1, + sym__curly_bracket_span_mark_begin, + [25663] = 1, ACTIONS(2526), 1, - sym__verbatim_end, - [24839] = 1, + sym__verbatim_content, + [25667] = 1, ACTIONS(2528), 1, - anon_sym_RBRACE, - [24843] = 1, + anon_sym_EQ, + [25671] = 1, ACTIONS(2530), 1, - sym_emphasis_end, - [24847] = 1, + sym__parens_span_end, + [25675] = 1, ACTIONS(2532), 1, - sym_strong_end, - [24851] = 1, + ts_builtin_sym_end, + [25679] = 1, ACTIONS(2534), 1, - sym_superscript_end, - [24855] = 1, + ts_builtin_sym_end, + [25683] = 1, ACTIONS(2536), 1, - sym_subscript_end, - [24859] = 1, + sym__verbatim_end, + [25687] = 1, ACTIONS(2538), 1, - sym_highlighted_end, - [24863] = 1, + anon_sym_RBRACE, + [25691] = 1, ACTIONS(2540), 1, - anon_sym_EQ, - [24867] = 1, + sym__verbatim_content, + [25695] = 1, ACTIONS(2542), 1, - aux_sym_inline_link_destination_token1, - [24871] = 1, + sym__verbatim_end, + [25699] = 1, ACTIONS(2544), 1, - sym__square_bracket_span_end, - [24875] = 1, + sym__strong_mark_begin, + [25703] = 1, ACTIONS(2546), 1, - sym_language, - [24879] = 1, + sym__superscript_mark_begin, + [25707] = 1, ACTIONS(2548), 1, - sym__verbatim_content, - [24883] = 1, + aux_sym_inline_link_destination_token1, + [25711] = 1, ACTIONS(2550), 1, - sym__curly_bracket_span_mark_begin, - [24887] = 1, + sym__square_bracket_span_end, + [25715] = 1, ACTIONS(2552), 1, - sym__verbatim_content, - [24891] = 1, + sym_language, + [25719] = 1, ACTIONS(2554), 1, - sym_insert_end, - [24895] = 1, - ACTIONS(1666), 1, - anon_sym_RBRACE, - [24899] = 1, + sym__verbatim_content, + [25723] = 1, ACTIONS(2556), 1, - sym__verbatim_end, - [24903] = 1, + sym__curly_bracket_span_mark_begin, + [25727] = 1, ACTIONS(2558), 1, - sym__verbatim_end, - [24907] = 1, + sym__verbatim_content, + [25731] = 1, ACTIONS(2560), 1, - sym_delete_end, - [24911] = 1, + sym__verbatim_end, + [25735] = 1, ACTIONS(2562), 1, - sym__square_bracket_span_end, - [24915] = 1, + sym_subscript_end, + [25739] = 1, ACTIONS(2564), 1, - sym__square_bracket_span_end, - [24919] = 1, + sym_highlighted_end, + [25743] = 1, ACTIONS(2566), 1, sym__verbatim_end, - [24923] = 1, + [25747] = 1, ACTIONS(2568), 1, - sym__verbatim_end, - [24927] = 1, + sym__square_bracket_span_mark_begin, + [25751] = 1, ACTIONS(2570), 1, sym__verbatim_end, - [24931] = 1, + [25755] = 1, ACTIONS(2572), 1, - aux_sym_inline_link_destination_token1, - [24935] = 1, + anon_sym_RBRACE, + [25759] = 1, ACTIONS(2574), 1, - sym__square_bracket_span_end, - [24939] = 1, + sym_insert_end, + [25763] = 1, ACTIONS(2576), 1, - sym_language, - [24943] = 1, + sym_emphasis_end, + [25767] = 1, ACTIONS(2578), 1, - sym__verbatim_content, - [24947] = 1, + sym__verbatim_end, + [25771] = 1, ACTIONS(2580), 1, - sym__curly_bracket_span_mark_begin, - [24951] = 1, + aux_sym_inline_link_destination_token1, + [25775] = 1, ACTIONS(2582), 1, - sym__verbatim_content, - [24955] = 1, + sym__square_bracket_span_end, + [25779] = 1, ACTIONS(2584), 1, - sym__verbatim_end, - [24959] = 1, + sym_language, + [25783] = 1, ACTIONS(2586), 1, - anon_sym_RBRACE, - [24963] = 1, + sym__verbatim_content, + [25787] = 1, ACTIONS(2588), 1, - sym_emphasis_end, - [24967] = 1, + sym__curly_bracket_span_mark_begin, + [25791] = 1, ACTIONS(2590), 1, - anon_sym_RBRACE, - [24971] = 1, + sym__verbatim_content, + [25795] = 1, ACTIONS(2592), 1, sym_strong_end, - [24975] = 1, + [25799] = 1, ACTIONS(2594), 1, - sym_superscript_end, - [24979] = 1, + anon_sym_RBRACE, + [25803] = 1, ACTIONS(2596), 1, - sym_subscript_end, - [24983] = 1, + sym_emphasis_end, + [25807] = 1, ACTIONS(2598), 1, - sym_highlighted_end, - [24987] = 1, + sym_delete_end, + [25811] = 1, ACTIONS(2600), 1, - sym_emphasis_end, - [24991] = 1, + sym_strong_end, + [25815] = 1, ACTIONS(2602), 1, - sym_insert_end, - [24995] = 1, + sym_superscript_end, + [25819] = 1, ACTIONS(2604), 1, - aux_sym_inline_link_destination_token1, - [24999] = 1, + sym_subscript_end, + [25823] = 1, ACTIONS(2606), 1, - sym__square_bracket_span_end, - [25003] = 1, + sym_highlighted_end, + [25827] = 1, ACTIONS(2608), 1, - sym_language, - [25007] = 1, + sym_superscript_end, + [25831] = 1, ACTIONS(2610), 1, - sym__verbatim_content, - [25011] = 1, + sym_insert_end, + [25835] = 1, ACTIONS(2612), 1, - sym__curly_bracket_span_mark_begin, - [25015] = 1, + aux_sym_inline_link_destination_token1, + [25839] = 1, ACTIONS(2614), 1, - sym__verbatim_content, - [25019] = 1, + sym__square_bracket_span_end, + [25843] = 1, ACTIONS(2616), 1, - sym_strong_end, - [25023] = 1, + sym_language, + [25847] = 1, ACTIONS(2618), 1, - sym_delete_end, - [25027] = 1, + sym__verbatim_content, + [25851] = 1, ACTIONS(2620), 1, - sym__square_bracket_span_end, - [25031] = 1, + sym__curly_bracket_span_mark_begin, + [25855] = 1, ACTIONS(2622), 1, - anon_sym_RBRACK, - [25035] = 1, + sym__verbatim_content, + [25859] = 1, ACTIONS(2624), 1, - sym_superscript_end, - [25039] = 1, + sym_subscript_end, + [25863] = 1, ACTIONS(2626), 1, - aux_sym_value_token1, - [25043] = 1, + sym_delete_end, + [25867] = 1, ACTIONS(2628), 1, - sym__parens_span_end, - [25047] = 1, + sym__square_bracket_span_end, + [25871] = 1, ACTIONS(2630), 1, - sym_subscript_end, - [25051] = 1, + anon_sym_RBRACK, + [25875] = 1, ACTIONS(2632), 1, - sym_highlighted_end, - [25055] = 1, + sym__square_bracket_span_end, + [25879] = 1, ACTIONS(2634), 1, - anon_sym_RBRACE, - [25059] = 1, + sym__square_bracket_span_end, + [25883] = 1, ACTIONS(2636), 1, - aux_sym_inline_link_destination_token1, - [25063] = 1, + sym__parens_span_end, + [25887] = 1, ACTIONS(2638), 1, - sym__square_bracket_span_end, - [25067] = 1, + anon_sym_RBRACK, + [25891] = 1, ACTIONS(2640), 1, - sym_language, - [25071] = 1, + sym_highlighted_end, + [25895] = 1, ACTIONS(2642), 1, - sym__verbatim_content, - [25075] = 1, + anon_sym_RBRACE, + [25899] = 1, ACTIONS(2644), 1, - sym__curly_bracket_span_mark_begin, - [25079] = 1, + aux_sym_inline_link_destination_token1, + [25903] = 1, ACTIONS(2646), 1, - sym__verbatim_content, - [25083] = 1, + sym__square_bracket_span_end, + [25907] = 1, ACTIONS(2648), 1, - sym_insert_end, - [25087] = 1, + sym_language, + [25911] = 1, ACTIONS(2650), 1, - sym__verbatim_end, - [25091] = 1, - ACTIONS(1656), 1, - anon_sym_RBRACE, - [25095] = 1, + sym__verbatim_content, + [25915] = 1, ACTIONS(2652), 1, - sym_delete_end, - [25099] = 1, + sym__curly_bracket_span_mark_begin, + [25919] = 1, ACTIONS(2654), 1, - sym__square_bracket_span_end, - [25103] = 1, + sym__verbatim_content, + [25923] = 1, ACTIONS(2656), 1, - anon_sym_RBRACK, - [25107] = 1, + sym_insert_end, + [25927] = 1, ACTIONS(2658), 1, - sym_superscript_end, - [25111] = 1, + aux_sym_inline_link_destination_token1, + [25931] = 1, ACTIONS(2660), 1, - sym__parens_span_end, - [25115] = 1, + sym__curly_bracket_span_mark_begin, + [25935] = 1, ACTIONS(2662), 1, sym_delete_end, - [25119] = 1, + [25939] = 1, ACTIONS(2664), 1, - anon_sym_RBRACE, - [25123] = 1, + sym__square_bracket_span_end, + [25943] = 1, ACTIONS(2666), 1, - aux_sym_inline_link_destination_token1, - [25127] = 1, + anon_sym_RBRACK, + [25947] = 1, ACTIONS(2668), 1, - sym__square_bracket_span_end, - [25131] = 1, + sym__verbatim_end, + [25951] = 1, ACTIONS(2670), 1, - sym_language, - [25135] = 1, + sym__parens_span_end, + [25955] = 1, ACTIONS(2672), 1, - sym__verbatim_content, - [25139] = 1, + sym__square_bracket_span_mark_begin, + [25959] = 1, ACTIONS(2674), 1, - sym__curly_bracket_span_mark_begin, - [25143] = 1, + anon_sym_RBRACE, + [25963] = 1, ACTIONS(2676), 1, - sym__verbatim_content, - [25147] = 1, + aux_sym_inline_link_destination_token1, + [25967] = 1, ACTIONS(2678), 1, sym__square_bracket_span_end, - [25151] = 1, + [25971] = 1, ACTIONS(2680), 1, - sym__square_bracket_span_end, - [25155] = 1, + sym_language, + [25975] = 1, ACTIONS(2682), 1, - sym__verbatim_end, - [25159] = 1, + sym__verbatim_content, + [25979] = 1, ACTIONS(2684), 1, - anon_sym_RBRACE, - [25163] = 1, + sym__curly_bracket_span_mark_begin, + [25983] = 1, ACTIONS(2686), 1, - sym_emphasis_end, - [25167] = 1, + sym__verbatim_content, + [25987] = 1, ACTIONS(2688), 1, - sym_strong_end, - [25171] = 1, + anon_sym_RBRACE, + [25991] = 1, ACTIONS(2690), 1, - sym_superscript_end, - [25175] = 1, + anon_sym_RBRACE, + [25995] = 1, ACTIONS(2692), 1, - sym__whitespace, - [25179] = 1, + sym_emphasis_end, + [25999] = 1, ACTIONS(2694), 1, - sym_subscript_end, - [25183] = 1, + sym__verbatim_end, + [26003] = 1, ACTIONS(2696), 1, - anon_sym_DQUOTE, - [25187] = 1, + anon_sym_RBRACE, + [26007] = 1, ACTIONS(2698), 1, - aux_sym_inline_link_destination_token1, - [25191] = 1, + sym_emphasis_end, + [26011] = 1, ACTIONS(2700), 1, - sym__square_bracket_span_end, - [25195] = 1, + sym_strong_end, + [26015] = 1, ACTIONS(2702), 1, - sym_language, - [25199] = 1, + sym__square_bracket_span_end, + [26019] = 1, ACTIONS(2704), 1, - sym__verbatim_content, - [25203] = 1, + sym_superscript_end, + [26023] = 1, ACTIONS(2706), 1, - sym__curly_bracket_span_mark_begin, - [25207] = 1, + sym__square_bracket_span_end, + [26027] = 1, ACTIONS(2708), 1, - sym__verbatim_content, - [25211] = 1, + aux_sym_inline_link_destination_token1, + [26031] = 1, ACTIONS(2710), 1, - sym__verbatim_end, - [25215] = 1, + sym__square_bracket_span_end, + [26035] = 1, ACTIONS(2712), 1, - sym__parens_span_end, - [25219] = 1, + sym_language, + [26039] = 1, ACTIONS(2714), 1, - sym_insert_end, - [25223] = 1, + sym__verbatim_content, + [26043] = 1, ACTIONS(2716), 1, - sym_delete_end, - [25227] = 1, + sym__curly_bracket_span_mark_begin, + [26047] = 1, ACTIONS(2718), 1, - sym__square_bracket_span_end, - [25231] = 1, + sym__verbatim_content, + [26051] = 1, ACTIONS(2720), 1, - anon_sym_RBRACE, - [25235] = 1, - ACTIONS(2722), 1, sym__verbatim_end, - [25239] = 1, + [26055] = 1, + ACTIONS(2722), 1, + sym__parens_span_end, + [26059] = 1, ACTIONS(2724), 1, - anon_sym_RBRACE, - [25243] = 1, + sym_highlighted_end, + [26063] = 1, ACTIONS(2726), 1, - ts_builtin_sym_end, - [25247] = 1, + sym_insert_end, + [26067] = 1, ACTIONS(2728), 1, - sym_emphasis_end, - [25251] = 1, + sym_delete_end, + [26071] = 1, ACTIONS(2730), 1, - aux_sym_inline_link_destination_token1, - [25255] = 1, + sym_language, + [26075] = 1, ACTIONS(2732), 1, - sym__square_bracket_span_end, - [25259] = 1, + sym__verbatim_end, + [26079] = 1, ACTIONS(2734), 1, - sym_language, - [25263] = 1, + anon_sym_RBRACE, + [26083] = 1, ACTIONS(2736), 1, - sym__verbatim_content, - [25267] = 1, + sym__square_bracket_span_end, + [26087] = 1, ACTIONS(2738), 1, - sym__curly_bracket_span_mark_begin, - [25271] = 1, + sym_emphasis_end, + [26091] = 1, ACTIONS(2740), 1, - sym__verbatim_content, - [25275] = 1, + aux_sym_inline_link_destination_token1, + [26095] = 1, ACTIONS(2742), 1, - ts_builtin_sym_end, - [25279] = 1, + sym__square_bracket_span_end, + [26099] = 1, ACTIONS(2744), 1, - sym_strong_end, - [25283] = 1, + sym_language, + [26103] = 1, ACTIONS(2746), 1, - sym_superscript_end, - [25287] = 1, + sym__verbatim_content, + [26107] = 1, ACTIONS(2748), 1, - sym_subscript_end, - [25291] = 1, + sym__curly_bracket_span_mark_begin, + [26111] = 1, ACTIONS(2750), 1, - sym_highlighted_end, - [25295] = 1, + sym__verbatim_content, + [26115] = 1, ACTIONS(2752), 1, - sym_insert_end, - [25299] = 1, + anon_sym_RBRACK, + [26119] = 1, ACTIONS(2754), 1, - sym_delete_end, - [25303] = 1, + sym_strong_end, + [26123] = 1, ACTIONS(2756), 1, - sym__square_bracket_span_end, - [25307] = 1, + sym_superscript_end, + [26127] = 1, ACTIONS(2758), 1, - sym__verbatim_end, - [25311] = 1, + sym_subscript_end, + [26131] = 1, ACTIONS(2760), 1, - anon_sym_RBRACK, - [25315] = 1, + sym_highlighted_end, + [26135] = 1, ACTIONS(2762), 1, - aux_sym_inline_link_destination_token1, - [25319] = 1, + sym_insert_end, + [26139] = 1, ACTIONS(2764), 1, - sym__square_bracket_span_end, - [25323] = 1, + sym_delete_end, + [26143] = 1, ACTIONS(2766), 1, - sym_language, - [25327] = 1, + sym__square_bracket_span_end, + [26147] = 1, ACTIONS(2768), 1, - sym__verbatim_content, - [25331] = 1, + sym__verbatim_end, + [26151] = 1, ACTIONS(2770), 1, - sym__curly_bracket_span_mark_begin, - [25335] = 1, + anon_sym_RBRACK, + [26155] = 1, ACTIONS(2772), 1, - sym__verbatim_content, - [25339] = 1, + aux_sym_inline_link_destination_token1, + [26159] = 1, ACTIONS(2774), 1, - anon_sym_RBRACK, - [25343] = 1, + sym__square_bracket_span_end, + [26163] = 1, ACTIONS(2776), 1, - sym_emphasis_end, - [25347] = 1, + sym_language, + [26167] = 1, ACTIONS(2778), 1, - sym__parens_span_end, - [25351] = 1, + sym__verbatim_content, + [26171] = 1, ACTIONS(2780), 1, - sym_language, - [25355] = 1, + sym__curly_bracket_span_mark_begin, + [26175] = 1, ACTIONS(2782), 1, - anon_sym_RBRACE, - [25359] = 1, + sym__verbatim_content, + [26179] = 1, ACTIONS(2784), 1, - sym__parens_span_end, - [25363] = 1, + sym__subscript_mark_begin, + [26183] = 1, ACTIONS(2786), 1, - sym__curly_bracket_span_mark_begin, - [25367] = 1, + sym__parens_span_end, + [26187] = 1, ACTIONS(2788), 1, - sym__verbatim_end, - [25371] = 1, + sym__parens_span_end, + [26191] = 1, ACTIONS(2790), 1, - anon_sym_RBRACE, - [25375] = 1, + sym__highlighted_mark_begin, + [26195] = 1, ACTIONS(2792), 1, - sym_emphasis_end, - [25379] = 1, + anon_sym_RBRACE, + [26199] = 1, ACTIONS(2794), 1, - aux_sym_inline_link_destination_token1, - [25383] = 1, + anon_sym_EQ, + [26203] = 1, + ACTIONS(1668), 1, + anon_sym_RBRACE, + [26207] = 1, ACTIONS(2796), 1, - sym__square_bracket_span_end, - [25387] = 1, + sym__verbatim_end, + [26211] = 1, ACTIONS(2798), 1, - sym_language, - [25391] = 1, + anon_sym_RBRACE, + [26215] = 1, ACTIONS(2800), 1, - sym__emphasis_mark_begin, - [25395] = 1, + sym__verbatim_content, + [26219] = 1, ACTIONS(2802), 1, - sym__strong_mark_begin, - [25399] = 1, + aux_sym_inline_link_destination_token1, + [26223] = 1, ACTIONS(2804), 1, - sym__superscript_mark_begin, - [25403] = 1, + sym__square_bracket_span_end, + [26227] = 1, ACTIONS(2806), 1, - sym__subscript_mark_begin, - [25407] = 1, + sym_language, + [26231] = 1, ACTIONS(2808), 1, - sym__highlighted_mark_begin, - [25411] = 1, + sym__emphasis_mark_begin, + [26235] = 1, ACTIONS(2810), 1, - sym__insert_mark_begin, - [25415] = 1, + sym__strong_mark_begin, + [26239] = 1, ACTIONS(2812), 1, - sym__delete_mark_begin, - [25419] = 1, + sym__superscript_mark_begin, + [26243] = 1, ACTIONS(2814), 1, - sym__square_bracket_span_mark_begin, - [25423] = 1, + sym__subscript_mark_begin, + [26247] = 1, ACTIONS(2816), 1, - sym__parens_span_mark_begin, - [25427] = 1, + sym__highlighted_mark_begin, + [26251] = 1, ACTIONS(2818), 1, - sym_strong_end, - [25431] = 1, + sym__insert_mark_begin, + [26255] = 1, ACTIONS(2820), 1, - sym__emphasis_mark_begin, - [25435] = 1, + sym__delete_mark_begin, + [26259] = 1, ACTIONS(2822), 1, - sym__strong_mark_begin, - [25439] = 1, + sym__square_bracket_span_mark_begin, + [26263] = 1, ACTIONS(2824), 1, - sym__superscript_mark_begin, - [25443] = 1, + sym__parens_span_mark_begin, + [26267] = 1, ACTIONS(2826), 1, - sym__subscript_mark_begin, - [25447] = 1, + sym_emphasis_end, + [26271] = 1, ACTIONS(2828), 1, - sym__highlighted_mark_begin, - [25451] = 1, + sym__emphasis_mark_begin, + [26275] = 1, ACTIONS(2830), 1, - sym__insert_mark_begin, - [25455] = 1, + sym__strong_mark_begin, + [26279] = 1, ACTIONS(2832), 1, - sym__delete_mark_begin, - [25459] = 1, + sym__superscript_mark_begin, + [26283] = 1, ACTIONS(2834), 1, - sym__square_bracket_span_mark_begin, - [25463] = 1, + sym__subscript_mark_begin, + [26287] = 1, ACTIONS(2836), 1, - sym__parens_span_mark_begin, - [25467] = 1, + sym__highlighted_mark_begin, + [26291] = 1, ACTIONS(2838), 1, - sym_superscript_end, - [25471] = 1, + sym__insert_mark_begin, + [26295] = 1, ACTIONS(2840), 1, - sym__emphasis_mark_begin, - [25475] = 1, + sym__delete_mark_begin, + [26299] = 1, ACTIONS(2842), 1, - sym__strong_mark_begin, - [25479] = 1, + sym__square_bracket_span_mark_begin, + [26303] = 1, ACTIONS(2844), 1, - sym__superscript_mark_begin, - [25483] = 1, + sym__parens_span_mark_begin, + [26307] = 1, ACTIONS(2846), 1, - sym__subscript_mark_begin, - [25487] = 1, + sym_strong_end, + [26311] = 1, ACTIONS(2848), 1, - sym__highlighted_mark_begin, - [25491] = 1, + sym__emphasis_mark_begin, + [26315] = 1, ACTIONS(2850), 1, - sym__insert_mark_begin, - [25495] = 1, + sym__strong_mark_begin, + [26319] = 1, ACTIONS(2852), 1, - sym__delete_mark_begin, - [25499] = 1, + sym__superscript_mark_begin, + [26323] = 1, ACTIONS(2854), 1, - sym__square_bracket_span_mark_begin, - [25503] = 1, + sym__subscript_mark_begin, + [26327] = 1, ACTIONS(2856), 1, - sym__parens_span_mark_begin, - [25507] = 1, + sym__highlighted_mark_begin, + [26331] = 1, ACTIONS(2858), 1, - sym_subscript_end, - [25511] = 1, + sym__insert_mark_begin, + [26335] = 1, ACTIONS(2860), 1, - sym__emphasis_mark_begin, - [25515] = 1, + sym__delete_mark_begin, + [26339] = 1, ACTIONS(2862), 1, - sym__strong_mark_begin, - [25519] = 1, + sym__square_bracket_span_mark_begin, + [26343] = 1, ACTIONS(2864), 1, - sym__superscript_mark_begin, - [25523] = 1, + sym__parens_span_mark_begin, + [26347] = 1, ACTIONS(2866), 1, - sym__subscript_mark_begin, - [25527] = 1, + sym_superscript_end, + [26351] = 1, ACTIONS(2868), 1, - sym__highlighted_mark_begin, - [25531] = 1, + sym__emphasis_mark_begin, + [26355] = 1, ACTIONS(2870), 1, - sym__insert_mark_begin, - [25535] = 1, + sym__strong_mark_begin, + [26359] = 1, ACTIONS(2872), 1, - sym__delete_mark_begin, - [25539] = 1, + sym__superscript_mark_begin, + [26363] = 1, ACTIONS(2874), 1, - sym__square_bracket_span_mark_begin, - [25543] = 1, + sym__subscript_mark_begin, + [26367] = 1, ACTIONS(2876), 1, - sym__parens_span_mark_begin, - [25547] = 1, + sym__highlighted_mark_begin, + [26371] = 1, ACTIONS(2878), 1, - sym_highlighted_end, - [25551] = 1, + sym__insert_mark_begin, + [26375] = 1, ACTIONS(2880), 1, - sym__emphasis_mark_begin, - [25555] = 1, + sym__delete_mark_begin, + [26379] = 1, ACTIONS(2882), 1, - sym__strong_mark_begin, - [25559] = 1, + sym__square_bracket_span_mark_begin, + [26383] = 1, ACTIONS(2884), 1, - sym__superscript_mark_begin, - [25563] = 1, + sym__parens_span_mark_begin, + [26387] = 1, ACTIONS(2886), 1, - sym__subscript_mark_begin, - [25567] = 1, + sym_subscript_end, + [26391] = 1, ACTIONS(2888), 1, - sym__highlighted_mark_begin, - [25571] = 1, + sym__emphasis_mark_begin, + [26395] = 1, ACTIONS(2890), 1, - sym__insert_mark_begin, - [25575] = 1, + sym__strong_mark_begin, + [26399] = 1, ACTIONS(2892), 1, - sym__delete_mark_begin, - [25579] = 1, + sym__superscript_mark_begin, + [26403] = 1, ACTIONS(2894), 1, - sym__square_bracket_span_mark_begin, - [25583] = 1, + sym__subscript_mark_begin, + [26407] = 1, ACTIONS(2896), 1, - sym__parens_span_mark_begin, - [25587] = 1, + sym__highlighted_mark_begin, + [26411] = 1, ACTIONS(2898), 1, - sym_insert_end, - [25591] = 1, + sym__insert_mark_begin, + [26415] = 1, ACTIONS(2900), 1, - sym__emphasis_mark_begin, - [25595] = 1, + sym__delete_mark_begin, + [26419] = 1, ACTIONS(2902), 1, - sym__strong_mark_begin, - [25599] = 1, + sym__square_bracket_span_mark_begin, + [26423] = 1, ACTIONS(2904), 1, - sym__superscript_mark_begin, - [25603] = 1, + sym__parens_span_mark_begin, + [26427] = 1, ACTIONS(2906), 1, - sym__subscript_mark_begin, - [25607] = 1, + sym_highlighted_end, + [26431] = 1, ACTIONS(2908), 1, - sym__highlighted_mark_begin, - [25611] = 1, + sym__emphasis_mark_begin, + [26435] = 1, ACTIONS(2910), 1, - sym__insert_mark_begin, - [25615] = 1, + sym__strong_mark_begin, + [26439] = 1, ACTIONS(2912), 1, - sym__delete_mark_begin, - [25619] = 1, + sym__superscript_mark_begin, + [26443] = 1, ACTIONS(2914), 1, - sym__square_bracket_span_mark_begin, - [25623] = 1, + sym__subscript_mark_begin, + [26447] = 1, ACTIONS(2916), 1, - sym__parens_span_mark_begin, - [25627] = 1, + sym__highlighted_mark_begin, + [26451] = 1, ACTIONS(2918), 1, - sym_delete_end, - [25631] = 1, + sym__insert_mark_begin, + [26455] = 1, ACTIONS(2920), 1, - sym__emphasis_mark_begin, - [25635] = 1, + sym__delete_mark_begin, + [26459] = 1, ACTIONS(2922), 1, - sym__strong_mark_begin, - [25639] = 1, + sym__square_bracket_span_mark_begin, + [26463] = 1, ACTIONS(2924), 1, - sym__superscript_mark_begin, - [25643] = 1, + sym__parens_span_mark_begin, + [26467] = 1, ACTIONS(2926), 1, - sym__subscript_mark_begin, - [25647] = 1, + sym_insert_end, + [26471] = 1, ACTIONS(2928), 1, - sym__highlighted_mark_begin, - [25651] = 1, + sym__emphasis_mark_begin, + [26475] = 1, ACTIONS(2930), 1, - sym__insert_mark_begin, - [25655] = 1, + sym__strong_mark_begin, + [26479] = 1, ACTIONS(2932), 1, - sym__delete_mark_begin, - [25659] = 1, + sym__superscript_mark_begin, + [26483] = 1, ACTIONS(2934), 1, - sym__square_bracket_span_mark_begin, - [25663] = 1, + sym__subscript_mark_begin, + [26487] = 1, ACTIONS(2936), 1, - sym__parens_span_mark_begin, - [25667] = 1, + sym__highlighted_mark_begin, + [26491] = 1, ACTIONS(2938), 1, - sym__square_bracket_span_end, - [25671] = 1, + sym__insert_mark_begin, + [26495] = 1, ACTIONS(2940), 1, - sym__emphasis_mark_begin, - [25675] = 1, + sym__delete_mark_begin, + [26499] = 1, ACTIONS(2942), 1, - sym__strong_mark_begin, - [25679] = 1, + sym__square_bracket_span_mark_begin, + [26503] = 1, ACTIONS(2944), 1, - sym__superscript_mark_begin, - [25683] = 1, + sym__parens_span_mark_begin, + [26507] = 1, ACTIONS(2946), 1, - sym__subscript_mark_begin, - [25687] = 1, + sym_delete_end, + [26511] = 1, ACTIONS(2948), 1, - sym__highlighted_mark_begin, - [25691] = 1, + sym__emphasis_mark_begin, + [26515] = 1, ACTIONS(2950), 1, - sym__insert_mark_begin, - [25695] = 1, + sym__strong_mark_begin, + [26519] = 1, ACTIONS(2952), 1, - sym__delete_mark_begin, - [25699] = 1, + sym__superscript_mark_begin, + [26523] = 1, ACTIONS(2954), 1, - sym__square_bracket_span_mark_begin, - [25703] = 1, + sym__subscript_mark_begin, + [26527] = 1, ACTIONS(2956), 1, - sym__parens_span_mark_begin, - [25707] = 1, + sym__highlighted_mark_begin, + [26531] = 1, ACTIONS(2958), 1, - anon_sym_RBRACK, - [25711] = 1, + sym__insert_mark_begin, + [26535] = 1, ACTIONS(2960), 1, - sym__emphasis_mark_begin, - [25715] = 1, + sym__delete_mark_begin, + [26539] = 1, ACTIONS(2962), 1, - sym__strong_mark_begin, - [25719] = 1, + sym__square_bracket_span_mark_begin, + [26543] = 1, ACTIONS(2964), 1, - sym__superscript_mark_begin, - [25723] = 1, + sym__parens_span_mark_begin, + [26547] = 1, ACTIONS(2966), 1, - sym__subscript_mark_begin, - [25727] = 1, + sym__square_bracket_span_end, + [26551] = 1, ACTIONS(2968), 1, - sym__highlighted_mark_begin, - [25731] = 1, + sym__emphasis_mark_begin, + [26555] = 1, ACTIONS(2970), 1, - sym__insert_mark_begin, - [25735] = 1, + sym__strong_mark_begin, + [26559] = 1, ACTIONS(2972), 1, - sym__delete_mark_begin, - [25739] = 1, + sym__superscript_mark_begin, + [26563] = 1, ACTIONS(2974), 1, - sym__square_bracket_span_mark_begin, - [25743] = 1, + sym__subscript_mark_begin, + [26567] = 1, ACTIONS(2976), 1, - sym__parens_span_mark_begin, - [25747] = 1, + sym__highlighted_mark_begin, + [26571] = 1, ACTIONS(2978), 1, - sym__emphasis_mark_begin, - [25751] = 1, + sym__insert_mark_begin, + [26575] = 1, ACTIONS(2980), 1, - sym__emphasis_mark_begin, - [25755] = 1, + sym__delete_mark_begin, + [26579] = 1, ACTIONS(2982), 1, - sym__strong_mark_begin, - [25759] = 1, + sym__square_bracket_span_mark_begin, + [26583] = 1, ACTIONS(2984), 1, - sym__superscript_mark_begin, - [25763] = 1, + sym__parens_span_mark_begin, + [26587] = 1, ACTIONS(2986), 1, - sym__subscript_mark_begin, - [25767] = 1, + anon_sym_RBRACK, + [26591] = 1, ACTIONS(2988), 1, - sym__highlighted_mark_begin, - [25771] = 1, + sym__emphasis_mark_begin, + [26595] = 1, ACTIONS(2990), 1, - sym__insert_mark_begin, - [25775] = 1, + sym__strong_mark_begin, + [26599] = 1, ACTIONS(2992), 1, - sym__delete_mark_begin, - [25779] = 1, + sym__superscript_mark_begin, + [26603] = 1, ACTIONS(2994), 1, - sym__square_bracket_span_mark_begin, - [25783] = 1, + sym__subscript_mark_begin, + [26607] = 1, ACTIONS(2996), 1, - sym__parens_span_mark_begin, - [25787] = 1, + sym__highlighted_mark_begin, + [26611] = 1, ACTIONS(2998), 1, - sym_strong_end, - [25791] = 1, + sym__insert_mark_begin, + [26615] = 1, ACTIONS(3000), 1, - sym__square_bracket_span_mark_begin, - [25795] = 1, + sym__delete_mark_begin, + [26619] = 1, ACTIONS(3002), 1, sym__square_bracket_span_mark_begin, - [25799] = 1, + [26623] = 1, ACTIONS(3004), 1, - sym__square_bracket_span_mark_begin, - [25803] = 1, + sym__parens_span_mark_begin, + [26627] = 1, ACTIONS(3006), 1, - sym__square_bracket_span_mark_begin, - [25807] = 1, + sym__verbatim_end, + [26631] = 1, ACTIONS(3008), 1, sym__square_bracket_span_mark_begin, - [25811] = 1, + [26635] = 1, ACTIONS(3010), 1, sym__square_bracket_span_mark_begin, - [25815] = 1, + [26639] = 1, ACTIONS(3012), 1, sym__square_bracket_span_mark_begin, - [25819] = 1, + [26643] = 1, ACTIONS(3014), 1, sym__square_bracket_span_mark_begin, - [25823] = 1, + [26647] = 1, ACTIONS(3016), 1, sym__square_bracket_span_mark_begin, - [25827] = 1, + [26651] = 1, ACTIONS(3018), 1, sym__square_bracket_span_mark_begin, - [25831] = 1, + [26655] = 1, ACTIONS(3020), 1, + sym__square_bracket_span_mark_begin, + [26659] = 1, + ACTIONS(3022), 1, + sym__square_bracket_span_mark_begin, + [26663] = 1, + ACTIONS(3024), 1, + sym__square_bracket_span_mark_begin, + [26667] = 1, + ACTIONS(3026), 1, + sym__square_bracket_span_mark_begin, + [26671] = 1, + ACTIONS(3028), 1, sym__verbatim_end, }; @@ -38686,2415 +39531,2439 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(129)] = 448, [SMALL_STATE(130)] = 504, [SMALL_STATE(131)] = 560, - [SMALL_STATE(132)] = 611, - [SMALL_STATE(133)] = 662, - [SMALL_STATE(134)] = 715, - [SMALL_STATE(135)] = 768, - [SMALL_STATE(136)] = 819, - [SMALL_STATE(137)] = 870, - [SMALL_STATE(138)] = 923, - [SMALL_STATE(139)] = 976, - [SMALL_STATE(140)] = 1029, - [SMALL_STATE(141)] = 1080, - [SMALL_STATE(142)] = 1133, - [SMALL_STATE(143)] = 1184, - [SMALL_STATE(144)] = 1235, - [SMALL_STATE(145)] = 1288, - [SMALL_STATE(146)] = 1341, - [SMALL_STATE(147)] = 1392, - [SMALL_STATE(148)] = 1445, - [SMALL_STATE(149)] = 1498, - [SMALL_STATE(150)] = 1549, - [SMALL_STATE(151)] = 1600, - [SMALL_STATE(152)] = 1655, - [SMALL_STATE(153)] = 1703, - [SMALL_STATE(154)] = 1751, - [SMALL_STATE(155)] = 1799, - [SMALL_STATE(156)] = 1847, - [SMALL_STATE(157)] = 1895, - [SMALL_STATE(158)] = 1943, - [SMALL_STATE(159)] = 1991, - [SMALL_STATE(160)] = 2039, - [SMALL_STATE(161)] = 2087, - [SMALL_STATE(162)] = 2135, - [SMALL_STATE(163)] = 2187, - [SMALL_STATE(164)] = 2237, - [SMALL_STATE(165)] = 2282, - [SMALL_STATE(166)] = 2327, - [SMALL_STATE(167)] = 2372, - [SMALL_STATE(168)] = 2417, - [SMALL_STATE(169)] = 2462, - [SMALL_STATE(170)] = 2507, - [SMALL_STATE(171)] = 2552, - [SMALL_STATE(172)] = 2601, - [SMALL_STATE(173)] = 2648, - [SMALL_STATE(174)] = 2693, - [SMALL_STATE(175)] = 2740, - [SMALL_STATE(176)] = 2785, - [SMALL_STATE(177)] = 2830, - [SMALL_STATE(178)] = 2875, - [SMALL_STATE(179)] = 2922, - [SMALL_STATE(180)] = 2967, - [SMALL_STATE(181)] = 3012, - [SMALL_STATE(182)] = 3057, - [SMALL_STATE(183)] = 3102, - [SMALL_STATE(184)] = 3147, - [SMALL_STATE(185)] = 3192, - [SMALL_STATE(186)] = 3241, - [SMALL_STATE(187)] = 3288, - [SMALL_STATE(188)] = 3333, - [SMALL_STATE(189)] = 3378, - [SMALL_STATE(190)] = 3423, - [SMALL_STATE(191)] = 3470, - [SMALL_STATE(192)] = 3519, - [SMALL_STATE(193)] = 3566, - [SMALL_STATE(194)] = 3611, - [SMALL_STATE(195)] = 3656, - [SMALL_STATE(196)] = 3705, - [SMALL_STATE(197)] = 3750, - [SMALL_STATE(198)] = 3799, - [SMALL_STATE(199)] = 3846, - [SMALL_STATE(200)] = 3895, - [SMALL_STATE(201)] = 3942, - [SMALL_STATE(202)] = 3989, - [SMALL_STATE(203)] = 4034, - [SMALL_STATE(204)] = 4081, - [SMALL_STATE(205)] = 4126, - [SMALL_STATE(206)] = 4173, - [SMALL_STATE(207)] = 4220, - [SMALL_STATE(208)] = 4269, - [SMALL_STATE(209)] = 4314, - [SMALL_STATE(210)] = 4359, - [SMALL_STATE(211)] = 4404, - [SMALL_STATE(212)] = 4449, - [SMALL_STATE(213)] = 4498, - [SMALL_STATE(214)] = 4545, - [SMALL_STATE(215)] = 4592, - [SMALL_STATE(216)] = 4637, - [SMALL_STATE(217)] = 4682, - [SMALL_STATE(218)] = 4727, - [SMALL_STATE(219)] = 4774, - [SMALL_STATE(220)] = 4819, - [SMALL_STATE(221)] = 4864, - [SMALL_STATE(222)] = 4909, - [SMALL_STATE(223)] = 4954, - [SMALL_STATE(224)] = 5001, - [SMALL_STATE(225)] = 5046, - [SMALL_STATE(226)] = 5095, - [SMALL_STATE(227)] = 5142, - [SMALL_STATE(228)] = 5187, - [SMALL_STATE(229)] = 5236, - [SMALL_STATE(230)] = 5283, - [SMALL_STATE(231)] = 5328, - [SMALL_STATE(232)] = 5375, - [SMALL_STATE(233)] = 5420, - [SMALL_STATE(234)] = 5462, - [SMALL_STATE(235)] = 5504, - [SMALL_STATE(236)] = 5546, - [SMALL_STATE(237)] = 5588, - [SMALL_STATE(238)] = 5630, - [SMALL_STATE(239)] = 5672, - [SMALL_STATE(240)] = 5714, - [SMALL_STATE(241)] = 5756, - [SMALL_STATE(242)] = 5798, - [SMALL_STATE(243)] = 5840, - [SMALL_STATE(244)] = 5882, - [SMALL_STATE(245)] = 5924, - [SMALL_STATE(246)] = 5966, - [SMALL_STATE(247)] = 6008, - [SMALL_STATE(248)] = 6050, - [SMALL_STATE(249)] = 6092, - [SMALL_STATE(250)] = 6134, - [SMALL_STATE(251)] = 6176, - [SMALL_STATE(252)] = 6218, - [SMALL_STATE(253)] = 6260, - [SMALL_STATE(254)] = 6302, - [SMALL_STATE(255)] = 6344, - [SMALL_STATE(256)] = 6386, - [SMALL_STATE(257)] = 6428, - [SMALL_STATE(258)] = 6470, - [SMALL_STATE(259)] = 6512, - [SMALL_STATE(260)] = 6554, - [SMALL_STATE(261)] = 6596, - [SMALL_STATE(262)] = 6638, - [SMALL_STATE(263)] = 6682, - [SMALL_STATE(264)] = 6724, - [SMALL_STATE(265)] = 6766, - [SMALL_STATE(266)] = 6808, - [SMALL_STATE(267)] = 6850, - [SMALL_STATE(268)] = 6892, - [SMALL_STATE(269)] = 6934, - [SMALL_STATE(270)] = 6976, - [SMALL_STATE(271)] = 7018, - [SMALL_STATE(272)] = 7060, - [SMALL_STATE(273)] = 7102, - [SMALL_STATE(274)] = 7144, - [SMALL_STATE(275)] = 7186, - [SMALL_STATE(276)] = 7228, - [SMALL_STATE(277)] = 7270, - [SMALL_STATE(278)] = 7314, - [SMALL_STATE(279)] = 7356, - [SMALL_STATE(280)] = 7398, - [SMALL_STATE(281)] = 7440, - [SMALL_STATE(282)] = 7482, - [SMALL_STATE(283)] = 7524, - [SMALL_STATE(284)] = 7566, - [SMALL_STATE(285)] = 7608, - [SMALL_STATE(286)] = 7650, - [SMALL_STATE(287)] = 7692, - [SMALL_STATE(288)] = 7734, - [SMALL_STATE(289)] = 7776, - [SMALL_STATE(290)] = 7818, - [SMALL_STATE(291)] = 7860, - [SMALL_STATE(292)] = 7902, - [SMALL_STATE(293)] = 7944, - [SMALL_STATE(294)] = 7986, - [SMALL_STATE(295)] = 8028, - [SMALL_STATE(296)] = 8070, - [SMALL_STATE(297)] = 8116, - [SMALL_STATE(298)] = 8158, - [SMALL_STATE(299)] = 8200, - [SMALL_STATE(300)] = 8242, - [SMALL_STATE(301)] = 8284, - [SMALL_STATE(302)] = 8328, - [SMALL_STATE(303)] = 8370, - [SMALL_STATE(304)] = 8412, - [SMALL_STATE(305)] = 8454, - [SMALL_STATE(306)] = 8496, - [SMALL_STATE(307)] = 8538, - [SMALL_STATE(308)] = 8580, - [SMALL_STATE(309)] = 8622, - [SMALL_STATE(310)] = 8664, - [SMALL_STATE(311)] = 8706, - [SMALL_STATE(312)] = 8748, - [SMALL_STATE(313)] = 8790, - [SMALL_STATE(314)] = 8832, - [SMALL_STATE(315)] = 8874, - [SMALL_STATE(316)] = 8916, - [SMALL_STATE(317)] = 8958, - [SMALL_STATE(318)] = 9000, - [SMALL_STATE(319)] = 9042, - [SMALL_STATE(320)] = 9084, - [SMALL_STATE(321)] = 9126, - [SMALL_STATE(322)] = 9168, - [SMALL_STATE(323)] = 9210, - [SMALL_STATE(324)] = 9252, - [SMALL_STATE(325)] = 9294, - [SMALL_STATE(326)] = 9336, - [SMALL_STATE(327)] = 9378, - [SMALL_STATE(328)] = 9420, - [SMALL_STATE(329)] = 9462, - [SMALL_STATE(330)] = 9504, - [SMALL_STATE(331)] = 9546, - [SMALL_STATE(332)] = 9588, - [SMALL_STATE(333)] = 9630, - [SMALL_STATE(334)] = 9672, - [SMALL_STATE(335)] = 9714, - [SMALL_STATE(336)] = 9756, - [SMALL_STATE(337)] = 9798, - [SMALL_STATE(338)] = 9840, - [SMALL_STATE(339)] = 9882, - [SMALL_STATE(340)] = 9924, - [SMALL_STATE(341)] = 9968, - [SMALL_STATE(342)] = 10010, - [SMALL_STATE(343)] = 10052, - [SMALL_STATE(344)] = 10094, - [SMALL_STATE(345)] = 10136, - [SMALL_STATE(346)] = 10178, - [SMALL_STATE(347)] = 10220, - [SMALL_STATE(348)] = 10262, - [SMALL_STATE(349)] = 10304, - [SMALL_STATE(350)] = 10346, - [SMALL_STATE(351)] = 10388, - [SMALL_STATE(352)] = 10430, - [SMALL_STATE(353)] = 10472, - [SMALL_STATE(354)] = 10514, - [SMALL_STATE(355)] = 10556, - [SMALL_STATE(356)] = 10598, - [SMALL_STATE(357)] = 10640, - [SMALL_STATE(358)] = 10682, - [SMALL_STATE(359)] = 10724, - [SMALL_STATE(360)] = 10766, - [SMALL_STATE(361)] = 10808, - [SMALL_STATE(362)] = 10850, - [SMALL_STATE(363)] = 10892, - [SMALL_STATE(364)] = 10934, - [SMALL_STATE(365)] = 10976, - [SMALL_STATE(366)] = 11018, - [SMALL_STATE(367)] = 11060, - [SMALL_STATE(368)] = 11102, - [SMALL_STATE(369)] = 11144, - [SMALL_STATE(370)] = 11186, - [SMALL_STATE(371)] = 11228, - [SMALL_STATE(372)] = 11270, - [SMALL_STATE(373)] = 11312, - [SMALL_STATE(374)] = 11354, - [SMALL_STATE(375)] = 11396, - [SMALL_STATE(376)] = 11438, - [SMALL_STATE(377)] = 11480, - [SMALL_STATE(378)] = 11524, - [SMALL_STATE(379)] = 11566, - [SMALL_STATE(380)] = 11608, - [SMALL_STATE(381)] = 11650, - [SMALL_STATE(382)] = 11692, - [SMALL_STATE(383)] = 11734, - [SMALL_STATE(384)] = 11776, - [SMALL_STATE(385)] = 11818, - [SMALL_STATE(386)] = 11860, - [SMALL_STATE(387)] = 11902, - [SMALL_STATE(388)] = 11944, - [SMALL_STATE(389)] = 11986, - [SMALL_STATE(390)] = 12028, - [SMALL_STATE(391)] = 12070, - [SMALL_STATE(392)] = 12112, - [SMALL_STATE(393)] = 12154, - [SMALL_STATE(394)] = 12196, - [SMALL_STATE(395)] = 12238, - [SMALL_STATE(396)] = 12280, - [SMALL_STATE(397)] = 12322, - [SMALL_STATE(398)] = 12364, - [SMALL_STATE(399)] = 12406, - [SMALL_STATE(400)] = 12448, - [SMALL_STATE(401)] = 12490, - [SMALL_STATE(402)] = 12532, - [SMALL_STATE(403)] = 12574, - [SMALL_STATE(404)] = 12616, - [SMALL_STATE(405)] = 12658, - [SMALL_STATE(406)] = 12700, - [SMALL_STATE(407)] = 12742, - [SMALL_STATE(408)] = 12784, - [SMALL_STATE(409)] = 12826, - [SMALL_STATE(410)] = 12868, - [SMALL_STATE(411)] = 12910, - [SMALL_STATE(412)] = 12954, - [SMALL_STATE(413)] = 12996, - [SMALL_STATE(414)] = 13038, - [SMALL_STATE(415)] = 13080, - [SMALL_STATE(416)] = 13122, - [SMALL_STATE(417)] = 13164, - [SMALL_STATE(418)] = 13206, - [SMALL_STATE(419)] = 13248, - [SMALL_STATE(420)] = 13290, - [SMALL_STATE(421)] = 13332, - [SMALL_STATE(422)] = 13374, - [SMALL_STATE(423)] = 13416, - [SMALL_STATE(424)] = 13458, - [SMALL_STATE(425)] = 13500, - [SMALL_STATE(426)] = 13544, - [SMALL_STATE(427)] = 13586, - [SMALL_STATE(428)] = 13628, - [SMALL_STATE(429)] = 13670, - [SMALL_STATE(430)] = 13712, - [SMALL_STATE(431)] = 13754, - [SMALL_STATE(432)] = 13796, - [SMALL_STATE(433)] = 13838, - [SMALL_STATE(434)] = 13880, - [SMALL_STATE(435)] = 13922, - [SMALL_STATE(436)] = 13964, - [SMALL_STATE(437)] = 14006, - [SMALL_STATE(438)] = 14048, - [SMALL_STATE(439)] = 14090, - [SMALL_STATE(440)] = 14132, - [SMALL_STATE(441)] = 14174, - [SMALL_STATE(442)] = 14216, - [SMALL_STATE(443)] = 14260, - [SMALL_STATE(444)] = 14304, - [SMALL_STATE(445)] = 14346, - [SMALL_STATE(446)] = 14390, - [SMALL_STATE(447)] = 14438, - [SMALL_STATE(448)] = 14480, - [SMALL_STATE(449)] = 14524, - [SMALL_STATE(450)] = 14570, - [SMALL_STATE(451)] = 14612, - [SMALL_STATE(452)] = 14656, - [SMALL_STATE(453)] = 14702, - [SMALL_STATE(454)] = 14748, - [SMALL_STATE(455)] = 14790, - [SMALL_STATE(456)] = 14832, - [SMALL_STATE(457)] = 14874, - [SMALL_STATE(458)] = 14916, - [SMALL_STATE(459)] = 14958, - [SMALL_STATE(460)] = 15000, - [SMALL_STATE(461)] = 15042, - [SMALL_STATE(462)] = 15084, - [SMALL_STATE(463)] = 15126, - [SMALL_STATE(464)] = 15168, - [SMALL_STATE(465)] = 15210, - [SMALL_STATE(466)] = 15252, - [SMALL_STATE(467)] = 15294, - [SMALL_STATE(468)] = 15336, - [SMALL_STATE(469)] = 15378, - [SMALL_STATE(470)] = 15420, - [SMALL_STATE(471)] = 15462, - [SMALL_STATE(472)] = 15504, - [SMALL_STATE(473)] = 15546, - [SMALL_STATE(474)] = 15588, - [SMALL_STATE(475)] = 15630, - [SMALL_STATE(476)] = 15672, - [SMALL_STATE(477)] = 15714, - [SMALL_STATE(478)] = 15756, - [SMALL_STATE(479)] = 15798, - [SMALL_STATE(480)] = 15840, - [SMALL_STATE(481)] = 15882, - [SMALL_STATE(482)] = 15924, - [SMALL_STATE(483)] = 15968, - [SMALL_STATE(484)] = 16010, - [SMALL_STATE(485)] = 16052, - [SMALL_STATE(486)] = 16094, - [SMALL_STATE(487)] = 16136, - [SMALL_STATE(488)] = 16178, - [SMALL_STATE(489)] = 16220, - [SMALL_STATE(490)] = 16262, - [SMALL_STATE(491)] = 16304, - [SMALL_STATE(492)] = 16346, - [SMALL_STATE(493)] = 16388, - [SMALL_STATE(494)] = 16430, - [SMALL_STATE(495)] = 16472, - [SMALL_STATE(496)] = 16514, - [SMALL_STATE(497)] = 16556, - [SMALL_STATE(498)] = 16598, - [SMALL_STATE(499)] = 16640, - [SMALL_STATE(500)] = 16682, - [SMALL_STATE(501)] = 16724, - [SMALL_STATE(502)] = 16766, - [SMALL_STATE(503)] = 16808, - [SMALL_STATE(504)] = 16850, - [SMALL_STATE(505)] = 16892, - [SMALL_STATE(506)] = 16934, - [SMALL_STATE(507)] = 16976, - [SMALL_STATE(508)] = 17018, - [SMALL_STATE(509)] = 17060, - [SMALL_STATE(510)] = 17102, - [SMALL_STATE(511)] = 17144, - [SMALL_STATE(512)] = 17186, - [SMALL_STATE(513)] = 17228, - [SMALL_STATE(514)] = 17270, - [SMALL_STATE(515)] = 17312, - [SMALL_STATE(516)] = 17354, - [SMALL_STATE(517)] = 17396, - [SMALL_STATE(518)] = 17438, - [SMALL_STATE(519)] = 17480, - [SMALL_STATE(520)] = 17524, - [SMALL_STATE(521)] = 17566, - [SMALL_STATE(522)] = 17608, - [SMALL_STATE(523)] = 17649, - [SMALL_STATE(524)] = 17690, - [SMALL_STATE(525)] = 17731, - [SMALL_STATE(526)] = 17772, - [SMALL_STATE(527)] = 17813, - [SMALL_STATE(528)] = 17854, - [SMALL_STATE(529)] = 17895, - [SMALL_STATE(530)] = 17936, - [SMALL_STATE(531)] = 17977, - [SMALL_STATE(532)] = 18018, - [SMALL_STATE(533)] = 18059, - [SMALL_STATE(534)] = 18100, - [SMALL_STATE(535)] = 18141, - [SMALL_STATE(536)] = 18182, - [SMALL_STATE(537)] = 18223, - [SMALL_STATE(538)] = 18264, - [SMALL_STATE(539)] = 18305, - [SMALL_STATE(540)] = 18346, - [SMALL_STATE(541)] = 18387, - [SMALL_STATE(542)] = 18428, - [SMALL_STATE(543)] = 18469, - [SMALL_STATE(544)] = 18512, - [SMALL_STATE(545)] = 18553, - [SMALL_STATE(546)] = 18594, - [SMALL_STATE(547)] = 18635, - [SMALL_STATE(548)] = 18676, - [SMALL_STATE(549)] = 18717, - [SMALL_STATE(550)] = 18758, - [SMALL_STATE(551)] = 18799, - [SMALL_STATE(552)] = 18840, - [SMALL_STATE(553)] = 18881, - [SMALL_STATE(554)] = 18922, - [SMALL_STATE(555)] = 18963, - [SMALL_STATE(556)] = 19004, - [SMALL_STATE(557)] = 19045, - [SMALL_STATE(558)] = 19086, - [SMALL_STATE(559)] = 19127, - [SMALL_STATE(560)] = 19170, - [SMALL_STATE(561)] = 19211, - [SMALL_STATE(562)] = 19252, - [SMALL_STATE(563)] = 19293, - [SMALL_STATE(564)] = 19334, - [SMALL_STATE(565)] = 19375, - [SMALL_STATE(566)] = 19416, - [SMALL_STATE(567)] = 19457, - [SMALL_STATE(568)] = 19498, - [SMALL_STATE(569)] = 19539, - [SMALL_STATE(570)] = 19580, - [SMALL_STATE(571)] = 19623, - [SMALL_STATE(572)] = 19664, - [SMALL_STATE(573)] = 19705, - [SMALL_STATE(574)] = 19746, - [SMALL_STATE(575)] = 19787, - [SMALL_STATE(576)] = 19828, - [SMALL_STATE(577)] = 19871, - [SMALL_STATE(578)] = 19912, - [SMALL_STATE(579)] = 19953, - [SMALL_STATE(580)] = 19994, - [SMALL_STATE(581)] = 20035, - [SMALL_STATE(582)] = 20076, - [SMALL_STATE(583)] = 20117, - [SMALL_STATE(584)] = 20158, - [SMALL_STATE(585)] = 20199, - [SMALL_STATE(586)] = 20240, - [SMALL_STATE(587)] = 20281, - [SMALL_STATE(588)] = 20322, - [SMALL_STATE(589)] = 20363, - [SMALL_STATE(590)] = 20404, - [SMALL_STATE(591)] = 20445, - [SMALL_STATE(592)] = 20486, - [SMALL_STATE(593)] = 20527, - [SMALL_STATE(594)] = 20568, - [SMALL_STATE(595)] = 20609, - [SMALL_STATE(596)] = 20650, - [SMALL_STATE(597)] = 20691, - [SMALL_STATE(598)] = 20732, - [SMALL_STATE(599)] = 20773, - [SMALL_STATE(600)] = 20814, - [SMALL_STATE(601)] = 20857, - [SMALL_STATE(602)] = 20898, - [SMALL_STATE(603)] = 20939, - [SMALL_STATE(604)] = 20980, - [SMALL_STATE(605)] = 21021, - [SMALL_STATE(606)] = 21062, - [SMALL_STATE(607)] = 21103, - [SMALL_STATE(608)] = 21144, - [SMALL_STATE(609)] = 21185, - [SMALL_STATE(610)] = 21226, - [SMALL_STATE(611)] = 21267, - [SMALL_STATE(612)] = 21308, - [SMALL_STATE(613)] = 21349, - [SMALL_STATE(614)] = 21390, - [SMALL_STATE(615)] = 21430, - [SMALL_STATE(616)] = 21470, - [SMALL_STATE(617)] = 21510, - [SMALL_STATE(618)] = 21550, - [SMALL_STATE(619)] = 21590, - [SMALL_STATE(620)] = 21630, - [SMALL_STATE(621)] = 21662, - [SMALL_STATE(622)] = 21694, - [SMALL_STATE(623)] = 21726, - [SMALL_STATE(624)] = 21758, - [SMALL_STATE(625)] = 21790, - [SMALL_STATE(626)] = 21822, - [SMALL_STATE(627)] = 21854, - [SMALL_STATE(628)] = 21886, - [SMALL_STATE(629)] = 21918, - [SMALL_STATE(630)] = 21950, - [SMALL_STATE(631)] = 21982, - [SMALL_STATE(632)] = 22014, - [SMALL_STATE(633)] = 22046, - [SMALL_STATE(634)] = 22078, - [SMALL_STATE(635)] = 22110, - [SMALL_STATE(636)] = 22142, - [SMALL_STATE(637)] = 22174, - [SMALL_STATE(638)] = 22206, - [SMALL_STATE(639)] = 22238, - [SMALL_STATE(640)] = 22270, - [SMALL_STATE(641)] = 22302, - [SMALL_STATE(642)] = 22334, - [SMALL_STATE(643)] = 22366, - [SMALL_STATE(644)] = 22376, - [SMALL_STATE(645)] = 22386, - [SMALL_STATE(646)] = 22396, - [SMALL_STATE(647)] = 22406, - [SMALL_STATE(648)] = 22416, - [SMALL_STATE(649)] = 22426, - [SMALL_STATE(650)] = 22436, - [SMALL_STATE(651)] = 22446, - [SMALL_STATE(652)] = 22456, - [SMALL_STATE(653)] = 22473, - [SMALL_STATE(654)] = 22490, - [SMALL_STATE(655)] = 22509, - [SMALL_STATE(656)] = 22528, - [SMALL_STATE(657)] = 22547, - [SMALL_STATE(658)] = 22566, - [SMALL_STATE(659)] = 22581, - [SMALL_STATE(660)] = 22598, - [SMALL_STATE(661)] = 22617, - [SMALL_STATE(662)] = 22636, - [SMALL_STATE(663)] = 22655, - [SMALL_STATE(664)] = 22674, - [SMALL_STATE(665)] = 22689, - [SMALL_STATE(666)] = 22704, - [SMALL_STATE(667)] = 22721, - [SMALL_STATE(668)] = 22740, - [SMALL_STATE(669)] = 22759, - [SMALL_STATE(670)] = 22776, - [SMALL_STATE(671)] = 22793, - [SMALL_STATE(672)] = 22812, - [SMALL_STATE(673)] = 22831, - [SMALL_STATE(674)] = 22846, - [SMALL_STATE(675)] = 22863, - [SMALL_STATE(676)] = 22880, - [SMALL_STATE(677)] = 22897, - [SMALL_STATE(678)] = 22916, - [SMALL_STATE(679)] = 22935, - [SMALL_STATE(680)] = 22954, - [SMALL_STATE(681)] = 22973, - [SMALL_STATE(682)] = 22992, - [SMALL_STATE(683)] = 23011, - [SMALL_STATE(684)] = 23028, - [SMALL_STATE(685)] = 23045, - [SMALL_STATE(686)] = 23064, - [SMALL_STATE(687)] = 23083, - [SMALL_STATE(688)] = 23102, - [SMALL_STATE(689)] = 23117, - [SMALL_STATE(690)] = 23136, - [SMALL_STATE(691)] = 23143, - [SMALL_STATE(692)] = 23153, - [SMALL_STATE(693)] = 23161, - [SMALL_STATE(694)] = 23169, - [SMALL_STATE(695)] = 23174, - [SMALL_STATE(696)] = 23179, - [SMALL_STATE(697)] = 23186, - [SMALL_STATE(698)] = 23193, - [SMALL_STATE(699)] = 23200, - [SMALL_STATE(700)] = 23207, - [SMALL_STATE(701)] = 23214, - [SMALL_STATE(702)] = 23221, - [SMALL_STATE(703)] = 23228, - [SMALL_STATE(704)] = 23235, - [SMALL_STATE(705)] = 23242, - [SMALL_STATE(706)] = 23249, - [SMALL_STATE(707)] = 23256, - [SMALL_STATE(708)] = 23263, - [SMALL_STATE(709)] = 23270, - [SMALL_STATE(710)] = 23277, - [SMALL_STATE(711)] = 23284, - [SMALL_STATE(712)] = 23291, - [SMALL_STATE(713)] = 23298, - [SMALL_STATE(714)] = 23305, - [SMALL_STATE(715)] = 23312, - [SMALL_STATE(716)] = 23319, - [SMALL_STATE(717)] = 23326, - [SMALL_STATE(718)] = 23333, - [SMALL_STATE(719)] = 23340, - [SMALL_STATE(720)] = 23347, - [SMALL_STATE(721)] = 23354, - [SMALL_STATE(722)] = 23361, - [SMALL_STATE(723)] = 23368, - [SMALL_STATE(724)] = 23375, - [SMALL_STATE(725)] = 23380, - [SMALL_STATE(726)] = 23387, - [SMALL_STATE(727)] = 23394, - [SMALL_STATE(728)] = 23401, - [SMALL_STATE(729)] = 23408, - [SMALL_STATE(730)] = 23415, - [SMALL_STATE(731)] = 23422, - [SMALL_STATE(732)] = 23429, - [SMALL_STATE(733)] = 23436, - [SMALL_STATE(734)] = 23443, - [SMALL_STATE(735)] = 23450, - [SMALL_STATE(736)] = 23457, - [SMALL_STATE(737)] = 23464, - [SMALL_STATE(738)] = 23471, - [SMALL_STATE(739)] = 23478, - [SMALL_STATE(740)] = 23485, - [SMALL_STATE(741)] = 23490, - [SMALL_STATE(742)] = 23495, - [SMALL_STATE(743)] = 23502, - [SMALL_STATE(744)] = 23509, - [SMALL_STATE(745)] = 23516, - [SMALL_STATE(746)] = 23523, - [SMALL_STATE(747)] = 23530, - [SMALL_STATE(748)] = 23537, - [SMALL_STATE(749)] = 23544, - [SMALL_STATE(750)] = 23551, - [SMALL_STATE(751)] = 23558, - [SMALL_STATE(752)] = 23565, - [SMALL_STATE(753)] = 23572, - [SMALL_STATE(754)] = 23579, - [SMALL_STATE(755)] = 23586, - [SMALL_STATE(756)] = 23593, - [SMALL_STATE(757)] = 23600, - [SMALL_STATE(758)] = 23607, - [SMALL_STATE(759)] = 23612, - [SMALL_STATE(760)] = 23619, - [SMALL_STATE(761)] = 23626, - [SMALL_STATE(762)] = 23633, - [SMALL_STATE(763)] = 23640, - [SMALL_STATE(764)] = 23647, - [SMALL_STATE(765)] = 23654, - [SMALL_STATE(766)] = 23661, - [SMALL_STATE(767)] = 23668, - [SMALL_STATE(768)] = 23675, - [SMALL_STATE(769)] = 23682, - [SMALL_STATE(770)] = 23689, - [SMALL_STATE(771)] = 23696, - [SMALL_STATE(772)] = 23703, - [SMALL_STATE(773)] = 23710, - [SMALL_STATE(774)] = 23717, - [SMALL_STATE(775)] = 23724, - [SMALL_STATE(776)] = 23731, - [SMALL_STATE(777)] = 23738, - [SMALL_STATE(778)] = 23743, - [SMALL_STATE(779)] = 23750, - [SMALL_STATE(780)] = 23757, - [SMALL_STATE(781)] = 23764, - [SMALL_STATE(782)] = 23771, - [SMALL_STATE(783)] = 23778, - [SMALL_STATE(784)] = 23785, - [SMALL_STATE(785)] = 23792, - [SMALL_STATE(786)] = 23799, - [SMALL_STATE(787)] = 23806, - [SMALL_STATE(788)] = 23813, - [SMALL_STATE(789)] = 23820, - [SMALL_STATE(790)] = 23827, - [SMALL_STATE(791)] = 23834, - [SMALL_STATE(792)] = 23841, - [SMALL_STATE(793)] = 23848, - [SMALL_STATE(794)] = 23853, - [SMALL_STATE(795)] = 23860, - [SMALL_STATE(796)] = 23867, - [SMALL_STATE(797)] = 23874, - [SMALL_STATE(798)] = 23881, - [SMALL_STATE(799)] = 23888, - [SMALL_STATE(800)] = 23895, - [SMALL_STATE(801)] = 23902, - [SMALL_STATE(802)] = 23909, - [SMALL_STATE(803)] = 23916, - [SMALL_STATE(804)] = 23923, - [SMALL_STATE(805)] = 23930, - [SMALL_STATE(806)] = 23937, - [SMALL_STATE(807)] = 23944, - [SMALL_STATE(808)] = 23951, - [SMALL_STATE(809)] = 23958, - [SMALL_STATE(810)] = 23963, - [SMALL_STATE(811)] = 23970, - [SMALL_STATE(812)] = 23977, - [SMALL_STATE(813)] = 23984, - [SMALL_STATE(814)] = 23991, - [SMALL_STATE(815)] = 23998, - [SMALL_STATE(816)] = 24005, - [SMALL_STATE(817)] = 24012, - [SMALL_STATE(818)] = 24019, - [SMALL_STATE(819)] = 24026, - [SMALL_STATE(820)] = 24033, - [SMALL_STATE(821)] = 24040, - [SMALL_STATE(822)] = 24047, - [SMALL_STATE(823)] = 24054, - [SMALL_STATE(824)] = 24061, - [SMALL_STATE(825)] = 24068, - [SMALL_STATE(826)] = 24075, - [SMALL_STATE(827)] = 24082, - [SMALL_STATE(828)] = 24089, - [SMALL_STATE(829)] = 24096, - [SMALL_STATE(830)] = 24103, - [SMALL_STATE(831)] = 24110, - [SMALL_STATE(832)] = 24117, - [SMALL_STATE(833)] = 24124, - [SMALL_STATE(834)] = 24131, - [SMALL_STATE(835)] = 24138, - [SMALL_STATE(836)] = 24145, - [SMALL_STATE(837)] = 24152, - [SMALL_STATE(838)] = 24159, - [SMALL_STATE(839)] = 24166, - [SMALL_STATE(840)] = 24173, - [SMALL_STATE(841)] = 24180, - [SMALL_STATE(842)] = 24187, - [SMALL_STATE(843)] = 24194, - [SMALL_STATE(844)] = 24201, - [SMALL_STATE(845)] = 24208, - [SMALL_STATE(846)] = 24215, - [SMALL_STATE(847)] = 24222, - [SMALL_STATE(848)] = 24229, - [SMALL_STATE(849)] = 24236, - [SMALL_STATE(850)] = 24243, - [SMALL_STATE(851)] = 24250, - [SMALL_STATE(852)] = 24257, - [SMALL_STATE(853)] = 24264, - [SMALL_STATE(854)] = 24271, - [SMALL_STATE(855)] = 24278, - [SMALL_STATE(856)] = 24285, - [SMALL_STATE(857)] = 24292, - [SMALL_STATE(858)] = 24297, - [SMALL_STATE(859)] = 24304, - [SMALL_STATE(860)] = 24311, - [SMALL_STATE(861)] = 24318, - [SMALL_STATE(862)] = 24325, - [SMALL_STATE(863)] = 24332, - [SMALL_STATE(864)] = 24339, - [SMALL_STATE(865)] = 24346, - [SMALL_STATE(866)] = 24353, - [SMALL_STATE(867)] = 24360, - [SMALL_STATE(868)] = 24367, - [SMALL_STATE(869)] = 24374, - [SMALL_STATE(870)] = 24381, - [SMALL_STATE(871)] = 24388, - [SMALL_STATE(872)] = 24395, - [SMALL_STATE(873)] = 24402, - [SMALL_STATE(874)] = 24409, - [SMALL_STATE(875)] = 24416, - [SMALL_STATE(876)] = 24423, - [SMALL_STATE(877)] = 24430, - [SMALL_STATE(878)] = 24437, - [SMALL_STATE(879)] = 24444, - [SMALL_STATE(880)] = 24451, - [SMALL_STATE(881)] = 24458, - [SMALL_STATE(882)] = 24463, - [SMALL_STATE(883)] = 24467, - [SMALL_STATE(884)] = 24471, - [SMALL_STATE(885)] = 24475, - [SMALL_STATE(886)] = 24479, - [SMALL_STATE(887)] = 24483, - [SMALL_STATE(888)] = 24487, - [SMALL_STATE(889)] = 24491, - [SMALL_STATE(890)] = 24495, - [SMALL_STATE(891)] = 24499, - [SMALL_STATE(892)] = 24503, - [SMALL_STATE(893)] = 24507, - [SMALL_STATE(894)] = 24511, - [SMALL_STATE(895)] = 24515, - [SMALL_STATE(896)] = 24519, - [SMALL_STATE(897)] = 24523, - [SMALL_STATE(898)] = 24527, - [SMALL_STATE(899)] = 24531, - [SMALL_STATE(900)] = 24535, - [SMALL_STATE(901)] = 24539, - [SMALL_STATE(902)] = 24543, - [SMALL_STATE(903)] = 24547, - [SMALL_STATE(904)] = 24551, - [SMALL_STATE(905)] = 24555, - [SMALL_STATE(906)] = 24559, - [SMALL_STATE(907)] = 24563, - [SMALL_STATE(908)] = 24567, - [SMALL_STATE(909)] = 24571, - [SMALL_STATE(910)] = 24575, - [SMALL_STATE(911)] = 24579, - [SMALL_STATE(912)] = 24583, - [SMALL_STATE(913)] = 24587, - [SMALL_STATE(914)] = 24591, - [SMALL_STATE(915)] = 24595, - [SMALL_STATE(916)] = 24599, - [SMALL_STATE(917)] = 24603, - [SMALL_STATE(918)] = 24607, - [SMALL_STATE(919)] = 24611, - [SMALL_STATE(920)] = 24615, - [SMALL_STATE(921)] = 24619, - [SMALL_STATE(922)] = 24623, - [SMALL_STATE(923)] = 24627, - [SMALL_STATE(924)] = 24631, - [SMALL_STATE(925)] = 24635, - [SMALL_STATE(926)] = 24639, - [SMALL_STATE(927)] = 24643, - [SMALL_STATE(928)] = 24647, - [SMALL_STATE(929)] = 24651, - [SMALL_STATE(930)] = 24655, - [SMALL_STATE(931)] = 24659, - [SMALL_STATE(932)] = 24663, - [SMALL_STATE(933)] = 24667, - [SMALL_STATE(934)] = 24671, - [SMALL_STATE(935)] = 24675, - [SMALL_STATE(936)] = 24679, - [SMALL_STATE(937)] = 24683, - [SMALL_STATE(938)] = 24687, - [SMALL_STATE(939)] = 24691, - [SMALL_STATE(940)] = 24695, - [SMALL_STATE(941)] = 24699, - [SMALL_STATE(942)] = 24703, - [SMALL_STATE(943)] = 24707, - [SMALL_STATE(944)] = 24711, - [SMALL_STATE(945)] = 24715, - [SMALL_STATE(946)] = 24719, - [SMALL_STATE(947)] = 24723, - [SMALL_STATE(948)] = 24727, - [SMALL_STATE(949)] = 24731, - [SMALL_STATE(950)] = 24735, - [SMALL_STATE(951)] = 24739, - [SMALL_STATE(952)] = 24743, - [SMALL_STATE(953)] = 24747, - [SMALL_STATE(954)] = 24751, - [SMALL_STATE(955)] = 24755, - [SMALL_STATE(956)] = 24759, - [SMALL_STATE(957)] = 24763, - [SMALL_STATE(958)] = 24767, - [SMALL_STATE(959)] = 24771, - [SMALL_STATE(960)] = 24775, - [SMALL_STATE(961)] = 24779, - [SMALL_STATE(962)] = 24783, - [SMALL_STATE(963)] = 24787, - [SMALL_STATE(964)] = 24791, - [SMALL_STATE(965)] = 24795, - [SMALL_STATE(966)] = 24799, - [SMALL_STATE(967)] = 24803, - [SMALL_STATE(968)] = 24807, - [SMALL_STATE(969)] = 24811, - [SMALL_STATE(970)] = 24815, - [SMALL_STATE(971)] = 24819, - [SMALL_STATE(972)] = 24823, - [SMALL_STATE(973)] = 24827, - [SMALL_STATE(974)] = 24831, - [SMALL_STATE(975)] = 24835, - [SMALL_STATE(976)] = 24839, - [SMALL_STATE(977)] = 24843, - [SMALL_STATE(978)] = 24847, - [SMALL_STATE(979)] = 24851, - [SMALL_STATE(980)] = 24855, - [SMALL_STATE(981)] = 24859, - [SMALL_STATE(982)] = 24863, - [SMALL_STATE(983)] = 24867, - [SMALL_STATE(984)] = 24871, - [SMALL_STATE(985)] = 24875, - [SMALL_STATE(986)] = 24879, - [SMALL_STATE(987)] = 24883, - [SMALL_STATE(988)] = 24887, - [SMALL_STATE(989)] = 24891, - [SMALL_STATE(990)] = 24895, - [SMALL_STATE(991)] = 24899, - [SMALL_STATE(992)] = 24903, - [SMALL_STATE(993)] = 24907, - [SMALL_STATE(994)] = 24911, - [SMALL_STATE(995)] = 24915, - [SMALL_STATE(996)] = 24919, - [SMALL_STATE(997)] = 24923, - [SMALL_STATE(998)] = 24927, - [SMALL_STATE(999)] = 24931, - [SMALL_STATE(1000)] = 24935, - [SMALL_STATE(1001)] = 24939, - [SMALL_STATE(1002)] = 24943, - [SMALL_STATE(1003)] = 24947, - [SMALL_STATE(1004)] = 24951, - [SMALL_STATE(1005)] = 24955, - [SMALL_STATE(1006)] = 24959, - [SMALL_STATE(1007)] = 24963, - [SMALL_STATE(1008)] = 24967, - [SMALL_STATE(1009)] = 24971, - [SMALL_STATE(1010)] = 24975, - [SMALL_STATE(1011)] = 24979, - [SMALL_STATE(1012)] = 24983, - [SMALL_STATE(1013)] = 24987, - [SMALL_STATE(1014)] = 24991, - [SMALL_STATE(1015)] = 24995, - [SMALL_STATE(1016)] = 24999, - [SMALL_STATE(1017)] = 25003, - [SMALL_STATE(1018)] = 25007, - [SMALL_STATE(1019)] = 25011, - [SMALL_STATE(1020)] = 25015, - [SMALL_STATE(1021)] = 25019, - [SMALL_STATE(1022)] = 25023, - [SMALL_STATE(1023)] = 25027, - [SMALL_STATE(1024)] = 25031, - [SMALL_STATE(1025)] = 25035, - [SMALL_STATE(1026)] = 25039, - [SMALL_STATE(1027)] = 25043, - [SMALL_STATE(1028)] = 25047, - [SMALL_STATE(1029)] = 25051, - [SMALL_STATE(1030)] = 25055, - [SMALL_STATE(1031)] = 25059, - [SMALL_STATE(1032)] = 25063, - [SMALL_STATE(1033)] = 25067, - [SMALL_STATE(1034)] = 25071, - [SMALL_STATE(1035)] = 25075, - [SMALL_STATE(1036)] = 25079, - [SMALL_STATE(1037)] = 25083, - [SMALL_STATE(1038)] = 25087, - [SMALL_STATE(1039)] = 25091, - [SMALL_STATE(1040)] = 25095, - [SMALL_STATE(1041)] = 25099, - [SMALL_STATE(1042)] = 25103, - [SMALL_STATE(1043)] = 25107, - [SMALL_STATE(1044)] = 25111, - [SMALL_STATE(1045)] = 25115, - [SMALL_STATE(1046)] = 25119, - [SMALL_STATE(1047)] = 25123, - [SMALL_STATE(1048)] = 25127, - [SMALL_STATE(1049)] = 25131, - [SMALL_STATE(1050)] = 25135, - [SMALL_STATE(1051)] = 25139, - [SMALL_STATE(1052)] = 25143, - [SMALL_STATE(1053)] = 25147, - [SMALL_STATE(1054)] = 25151, - [SMALL_STATE(1055)] = 25155, - [SMALL_STATE(1056)] = 25159, - [SMALL_STATE(1057)] = 25163, - [SMALL_STATE(1058)] = 25167, - [SMALL_STATE(1059)] = 25171, - [SMALL_STATE(1060)] = 25175, - [SMALL_STATE(1061)] = 25179, - [SMALL_STATE(1062)] = 25183, - [SMALL_STATE(1063)] = 25187, - [SMALL_STATE(1064)] = 25191, - [SMALL_STATE(1065)] = 25195, - [SMALL_STATE(1066)] = 25199, - [SMALL_STATE(1067)] = 25203, - [SMALL_STATE(1068)] = 25207, - [SMALL_STATE(1069)] = 25211, - [SMALL_STATE(1070)] = 25215, - [SMALL_STATE(1071)] = 25219, - [SMALL_STATE(1072)] = 25223, - [SMALL_STATE(1073)] = 25227, - [SMALL_STATE(1074)] = 25231, - [SMALL_STATE(1075)] = 25235, - [SMALL_STATE(1076)] = 25239, - [SMALL_STATE(1077)] = 25243, - [SMALL_STATE(1078)] = 25247, - [SMALL_STATE(1079)] = 25251, - [SMALL_STATE(1080)] = 25255, - [SMALL_STATE(1081)] = 25259, - [SMALL_STATE(1082)] = 25263, - [SMALL_STATE(1083)] = 25267, - [SMALL_STATE(1084)] = 25271, - [SMALL_STATE(1085)] = 25275, - [SMALL_STATE(1086)] = 25279, - [SMALL_STATE(1087)] = 25283, - [SMALL_STATE(1088)] = 25287, - [SMALL_STATE(1089)] = 25291, - [SMALL_STATE(1090)] = 25295, - [SMALL_STATE(1091)] = 25299, - [SMALL_STATE(1092)] = 25303, - [SMALL_STATE(1093)] = 25307, - [SMALL_STATE(1094)] = 25311, - [SMALL_STATE(1095)] = 25315, - [SMALL_STATE(1096)] = 25319, - [SMALL_STATE(1097)] = 25323, - [SMALL_STATE(1098)] = 25327, - [SMALL_STATE(1099)] = 25331, - [SMALL_STATE(1100)] = 25335, - [SMALL_STATE(1101)] = 25339, - [SMALL_STATE(1102)] = 25343, - [SMALL_STATE(1103)] = 25347, - [SMALL_STATE(1104)] = 25351, - [SMALL_STATE(1105)] = 25355, - [SMALL_STATE(1106)] = 25359, - [SMALL_STATE(1107)] = 25363, - [SMALL_STATE(1108)] = 25367, - [SMALL_STATE(1109)] = 25371, - [SMALL_STATE(1110)] = 25375, - [SMALL_STATE(1111)] = 25379, - [SMALL_STATE(1112)] = 25383, - [SMALL_STATE(1113)] = 25387, - [SMALL_STATE(1114)] = 25391, - [SMALL_STATE(1115)] = 25395, - [SMALL_STATE(1116)] = 25399, - [SMALL_STATE(1117)] = 25403, - [SMALL_STATE(1118)] = 25407, - [SMALL_STATE(1119)] = 25411, - [SMALL_STATE(1120)] = 25415, - [SMALL_STATE(1121)] = 25419, - [SMALL_STATE(1122)] = 25423, - [SMALL_STATE(1123)] = 25427, - [SMALL_STATE(1124)] = 25431, - [SMALL_STATE(1125)] = 25435, - [SMALL_STATE(1126)] = 25439, - [SMALL_STATE(1127)] = 25443, - [SMALL_STATE(1128)] = 25447, - [SMALL_STATE(1129)] = 25451, - [SMALL_STATE(1130)] = 25455, - [SMALL_STATE(1131)] = 25459, - [SMALL_STATE(1132)] = 25463, - [SMALL_STATE(1133)] = 25467, - [SMALL_STATE(1134)] = 25471, - [SMALL_STATE(1135)] = 25475, - [SMALL_STATE(1136)] = 25479, - [SMALL_STATE(1137)] = 25483, - [SMALL_STATE(1138)] = 25487, - [SMALL_STATE(1139)] = 25491, - [SMALL_STATE(1140)] = 25495, - [SMALL_STATE(1141)] = 25499, - [SMALL_STATE(1142)] = 25503, - [SMALL_STATE(1143)] = 25507, - [SMALL_STATE(1144)] = 25511, - [SMALL_STATE(1145)] = 25515, - [SMALL_STATE(1146)] = 25519, - [SMALL_STATE(1147)] = 25523, - [SMALL_STATE(1148)] = 25527, - [SMALL_STATE(1149)] = 25531, - [SMALL_STATE(1150)] = 25535, - [SMALL_STATE(1151)] = 25539, - [SMALL_STATE(1152)] = 25543, - [SMALL_STATE(1153)] = 25547, - [SMALL_STATE(1154)] = 25551, - [SMALL_STATE(1155)] = 25555, - [SMALL_STATE(1156)] = 25559, - [SMALL_STATE(1157)] = 25563, - [SMALL_STATE(1158)] = 25567, - [SMALL_STATE(1159)] = 25571, - [SMALL_STATE(1160)] = 25575, - [SMALL_STATE(1161)] = 25579, - [SMALL_STATE(1162)] = 25583, - [SMALL_STATE(1163)] = 25587, - [SMALL_STATE(1164)] = 25591, - [SMALL_STATE(1165)] = 25595, - [SMALL_STATE(1166)] = 25599, - [SMALL_STATE(1167)] = 25603, - [SMALL_STATE(1168)] = 25607, - [SMALL_STATE(1169)] = 25611, - [SMALL_STATE(1170)] = 25615, - [SMALL_STATE(1171)] = 25619, - [SMALL_STATE(1172)] = 25623, - [SMALL_STATE(1173)] = 25627, - [SMALL_STATE(1174)] = 25631, - [SMALL_STATE(1175)] = 25635, - [SMALL_STATE(1176)] = 25639, - [SMALL_STATE(1177)] = 25643, - [SMALL_STATE(1178)] = 25647, - [SMALL_STATE(1179)] = 25651, - [SMALL_STATE(1180)] = 25655, - [SMALL_STATE(1181)] = 25659, - [SMALL_STATE(1182)] = 25663, - [SMALL_STATE(1183)] = 25667, - [SMALL_STATE(1184)] = 25671, - [SMALL_STATE(1185)] = 25675, - [SMALL_STATE(1186)] = 25679, - [SMALL_STATE(1187)] = 25683, - [SMALL_STATE(1188)] = 25687, - [SMALL_STATE(1189)] = 25691, - [SMALL_STATE(1190)] = 25695, - [SMALL_STATE(1191)] = 25699, - [SMALL_STATE(1192)] = 25703, - [SMALL_STATE(1193)] = 25707, - [SMALL_STATE(1194)] = 25711, - [SMALL_STATE(1195)] = 25715, - [SMALL_STATE(1196)] = 25719, - [SMALL_STATE(1197)] = 25723, - [SMALL_STATE(1198)] = 25727, - [SMALL_STATE(1199)] = 25731, - [SMALL_STATE(1200)] = 25735, - [SMALL_STATE(1201)] = 25739, - [SMALL_STATE(1202)] = 25743, - [SMALL_STATE(1203)] = 25747, - [SMALL_STATE(1204)] = 25751, - [SMALL_STATE(1205)] = 25755, - [SMALL_STATE(1206)] = 25759, - [SMALL_STATE(1207)] = 25763, - [SMALL_STATE(1208)] = 25767, - [SMALL_STATE(1209)] = 25771, - [SMALL_STATE(1210)] = 25775, - [SMALL_STATE(1211)] = 25779, - [SMALL_STATE(1212)] = 25783, - [SMALL_STATE(1213)] = 25787, - [SMALL_STATE(1214)] = 25791, - [SMALL_STATE(1215)] = 25795, - [SMALL_STATE(1216)] = 25799, - [SMALL_STATE(1217)] = 25803, - [SMALL_STATE(1218)] = 25807, - [SMALL_STATE(1219)] = 25811, - [SMALL_STATE(1220)] = 25815, - [SMALL_STATE(1221)] = 25819, - [SMALL_STATE(1222)] = 25823, - [SMALL_STATE(1223)] = 25827, - [SMALL_STATE(1224)] = 25831, + [SMALL_STATE(132)] = 613, + [SMALL_STATE(133)] = 666, + [SMALL_STATE(134)] = 719, + [SMALL_STATE(135)] = 772, + [SMALL_STATE(136)] = 825, + [SMALL_STATE(137)] = 878, + [SMALL_STATE(138)] = 931, + [SMALL_STATE(139)] = 984, + [SMALL_STATE(140)] = 1037, + [SMALL_STATE(141)] = 1090, + [SMALL_STATE(142)] = 1143, + [SMALL_STATE(143)] = 1196, + [SMALL_STATE(144)] = 1249, + [SMALL_STATE(145)] = 1302, + [SMALL_STATE(146)] = 1355, + [SMALL_STATE(147)] = 1408, + [SMALL_STATE(148)] = 1461, + [SMALL_STATE(149)] = 1514, + [SMALL_STATE(150)] = 1567, + [SMALL_STATE(151)] = 1620, + [SMALL_STATE(152)] = 1675, + [SMALL_STATE(153)] = 1723, + [SMALL_STATE(154)] = 1771, + [SMALL_STATE(155)] = 1819, + [SMALL_STATE(156)] = 1867, + [SMALL_STATE(157)] = 1915, + [SMALL_STATE(158)] = 1963, + [SMALL_STATE(159)] = 2011, + [SMALL_STATE(160)] = 2059, + [SMALL_STATE(161)] = 2107, + [SMALL_STATE(162)] = 2155, + [SMALL_STATE(163)] = 2207, + [SMALL_STATE(164)] = 2259, + [SMALL_STATE(165)] = 2304, + [SMALL_STATE(166)] = 2349, + [SMALL_STATE(167)] = 2394, + [SMALL_STATE(168)] = 2439, + [SMALL_STATE(169)] = 2484, + [SMALL_STATE(170)] = 2529, + [SMALL_STATE(171)] = 2574, + [SMALL_STATE(172)] = 2623, + [SMALL_STATE(173)] = 2670, + [SMALL_STATE(174)] = 2715, + [SMALL_STATE(175)] = 2762, + [SMALL_STATE(176)] = 2807, + [SMALL_STATE(177)] = 2852, + [SMALL_STATE(178)] = 2897, + [SMALL_STATE(179)] = 2944, + [SMALL_STATE(180)] = 2989, + [SMALL_STATE(181)] = 3034, + [SMALL_STATE(182)] = 3079, + [SMALL_STATE(183)] = 3124, + [SMALL_STATE(184)] = 3169, + [SMALL_STATE(185)] = 3214, + [SMALL_STATE(186)] = 3263, + [SMALL_STATE(187)] = 3310, + [SMALL_STATE(188)] = 3355, + [SMALL_STATE(189)] = 3400, + [SMALL_STATE(190)] = 3445, + [SMALL_STATE(191)] = 3492, + [SMALL_STATE(192)] = 3541, + [SMALL_STATE(193)] = 3588, + [SMALL_STATE(194)] = 3633, + [SMALL_STATE(195)] = 3678, + [SMALL_STATE(196)] = 3727, + [SMALL_STATE(197)] = 3772, + [SMALL_STATE(198)] = 3821, + [SMALL_STATE(199)] = 3868, + [SMALL_STATE(200)] = 3917, + [SMALL_STATE(201)] = 3964, + [SMALL_STATE(202)] = 4011, + [SMALL_STATE(203)] = 4056, + [SMALL_STATE(204)] = 4103, + [SMALL_STATE(205)] = 4148, + [SMALL_STATE(206)] = 4195, + [SMALL_STATE(207)] = 4242, + [SMALL_STATE(208)] = 4287, + [SMALL_STATE(209)] = 4336, + [SMALL_STATE(210)] = 4381, + [SMALL_STATE(211)] = 4426, + [SMALL_STATE(212)] = 4471, + [SMALL_STATE(213)] = 4520, + [SMALL_STATE(214)] = 4567, + [SMALL_STATE(215)] = 4614, + [SMALL_STATE(216)] = 4659, + [SMALL_STATE(217)] = 4704, + [SMALL_STATE(218)] = 4749, + [SMALL_STATE(219)] = 4796, + [SMALL_STATE(220)] = 4841, + [SMALL_STATE(221)] = 4886, + [SMALL_STATE(222)] = 4931, + [SMALL_STATE(223)] = 4976, + [SMALL_STATE(224)] = 5023, + [SMALL_STATE(225)] = 5068, + [SMALL_STATE(226)] = 5117, + [SMALL_STATE(227)] = 5164, + [SMALL_STATE(228)] = 5209, + [SMALL_STATE(229)] = 5258, + [SMALL_STATE(230)] = 5305, + [SMALL_STATE(231)] = 5350, + [SMALL_STATE(232)] = 5397, + [SMALL_STATE(233)] = 5442, + [SMALL_STATE(234)] = 5484, + [SMALL_STATE(235)] = 5526, + [SMALL_STATE(236)] = 5568, + [SMALL_STATE(237)] = 5610, + [SMALL_STATE(238)] = 5654, + [SMALL_STATE(239)] = 5696, + [SMALL_STATE(240)] = 5738, + [SMALL_STATE(241)] = 5780, + [SMALL_STATE(242)] = 5822, + [SMALL_STATE(243)] = 5864, + [SMALL_STATE(244)] = 5906, + [SMALL_STATE(245)] = 5948, + [SMALL_STATE(246)] = 5990, + [SMALL_STATE(247)] = 6032, + [SMALL_STATE(248)] = 6074, + [SMALL_STATE(249)] = 6116, + [SMALL_STATE(250)] = 6158, + [SMALL_STATE(251)] = 6200, + [SMALL_STATE(252)] = 6242, + [SMALL_STATE(253)] = 6284, + [SMALL_STATE(254)] = 6326, + [SMALL_STATE(255)] = 6368, + [SMALL_STATE(256)] = 6410, + [SMALL_STATE(257)] = 6452, + [SMALL_STATE(258)] = 6494, + [SMALL_STATE(259)] = 6536, + [SMALL_STATE(260)] = 6578, + [SMALL_STATE(261)] = 6620, + [SMALL_STATE(262)] = 6662, + [SMALL_STATE(263)] = 6704, + [SMALL_STATE(264)] = 6746, + [SMALL_STATE(265)] = 6788, + [SMALL_STATE(266)] = 6830, + [SMALL_STATE(267)] = 6872, + [SMALL_STATE(268)] = 6916, + [SMALL_STATE(269)] = 6958, + [SMALL_STATE(270)] = 7000, + [SMALL_STATE(271)] = 7042, + [SMALL_STATE(272)] = 7084, + [SMALL_STATE(273)] = 7126, + [SMALL_STATE(274)] = 7170, + [SMALL_STATE(275)] = 7212, + [SMALL_STATE(276)] = 7254, + [SMALL_STATE(277)] = 7296, + [SMALL_STATE(278)] = 7338, + [SMALL_STATE(279)] = 7380, + [SMALL_STATE(280)] = 7422, + [SMALL_STATE(281)] = 7464, + [SMALL_STATE(282)] = 7506, + [SMALL_STATE(283)] = 7548, + [SMALL_STATE(284)] = 7592, + [SMALL_STATE(285)] = 7634, + [SMALL_STATE(286)] = 7676, + [SMALL_STATE(287)] = 7718, + [SMALL_STATE(288)] = 7760, + [SMALL_STATE(289)] = 7802, + [SMALL_STATE(290)] = 7844, + [SMALL_STATE(291)] = 7886, + [SMALL_STATE(292)] = 7928, + [SMALL_STATE(293)] = 7970, + [SMALL_STATE(294)] = 8012, + [SMALL_STATE(295)] = 8054, + [SMALL_STATE(296)] = 8096, + [SMALL_STATE(297)] = 8138, + [SMALL_STATE(298)] = 8180, + [SMALL_STATE(299)] = 8222, + [SMALL_STATE(300)] = 8264, + [SMALL_STATE(301)] = 8306, + [SMALL_STATE(302)] = 8348, + [SMALL_STATE(303)] = 8394, + [SMALL_STATE(304)] = 8436, + [SMALL_STATE(305)] = 8480, + [SMALL_STATE(306)] = 8522, + [SMALL_STATE(307)] = 8564, + [SMALL_STATE(308)] = 8606, + [SMALL_STATE(309)] = 8648, + [SMALL_STATE(310)] = 8690, + [SMALL_STATE(311)] = 8732, + [SMALL_STATE(312)] = 8774, + [SMALL_STATE(313)] = 8816, + [SMALL_STATE(314)] = 8858, + [SMALL_STATE(315)] = 8900, + [SMALL_STATE(316)] = 8942, + [SMALL_STATE(317)] = 8984, + [SMALL_STATE(318)] = 9026, + [SMALL_STATE(319)] = 9068, + [SMALL_STATE(320)] = 9110, + [SMALL_STATE(321)] = 9152, + [SMALL_STATE(322)] = 9194, + [SMALL_STATE(323)] = 9236, + [SMALL_STATE(324)] = 9278, + [SMALL_STATE(325)] = 9320, + [SMALL_STATE(326)] = 9362, + [SMALL_STATE(327)] = 9404, + [SMALL_STATE(328)] = 9446, + [SMALL_STATE(329)] = 9488, + [SMALL_STATE(330)] = 9530, + [SMALL_STATE(331)] = 9572, + [SMALL_STATE(332)] = 9614, + [SMALL_STATE(333)] = 9656, + [SMALL_STATE(334)] = 9698, + [SMALL_STATE(335)] = 9740, + [SMALL_STATE(336)] = 9782, + [SMALL_STATE(337)] = 9824, + [SMALL_STATE(338)] = 9866, + [SMALL_STATE(339)] = 9908, + [SMALL_STATE(340)] = 9950, + [SMALL_STATE(341)] = 9992, + [SMALL_STATE(342)] = 10036, + [SMALL_STATE(343)] = 10078, + [SMALL_STATE(344)] = 10120, + [SMALL_STATE(345)] = 10162, + [SMALL_STATE(346)] = 10204, + [SMALL_STATE(347)] = 10246, + [SMALL_STATE(348)] = 10288, + [SMALL_STATE(349)] = 10330, + [SMALL_STATE(350)] = 10372, + [SMALL_STATE(351)] = 10414, + [SMALL_STATE(352)] = 10456, + [SMALL_STATE(353)] = 10498, + [SMALL_STATE(354)] = 10540, + [SMALL_STATE(355)] = 10582, + [SMALL_STATE(356)] = 10624, + [SMALL_STATE(357)] = 10666, + [SMALL_STATE(358)] = 10708, + [SMALL_STATE(359)] = 10750, + [SMALL_STATE(360)] = 10792, + [SMALL_STATE(361)] = 10834, + [SMALL_STATE(362)] = 10876, + [SMALL_STATE(363)] = 10918, + [SMALL_STATE(364)] = 10960, + [SMALL_STATE(365)] = 11002, + [SMALL_STATE(366)] = 11044, + [SMALL_STATE(367)] = 11086, + [SMALL_STATE(368)] = 11128, + [SMALL_STATE(369)] = 11170, + [SMALL_STATE(370)] = 11212, + [SMALL_STATE(371)] = 11254, + [SMALL_STATE(372)] = 11296, + [SMALL_STATE(373)] = 11338, + [SMALL_STATE(374)] = 11380, + [SMALL_STATE(375)] = 11422, + [SMALL_STATE(376)] = 11464, + [SMALL_STATE(377)] = 11506, + [SMALL_STATE(378)] = 11548, + [SMALL_STATE(379)] = 11592, + [SMALL_STATE(380)] = 11634, + [SMALL_STATE(381)] = 11676, + [SMALL_STATE(382)] = 11718, + [SMALL_STATE(383)] = 11760, + [SMALL_STATE(384)] = 11802, + [SMALL_STATE(385)] = 11844, + [SMALL_STATE(386)] = 11886, + [SMALL_STATE(387)] = 11928, + [SMALL_STATE(388)] = 11970, + [SMALL_STATE(389)] = 12012, + [SMALL_STATE(390)] = 12054, + [SMALL_STATE(391)] = 12096, + [SMALL_STATE(392)] = 12138, + [SMALL_STATE(393)] = 12180, + [SMALL_STATE(394)] = 12222, + [SMALL_STATE(395)] = 12264, + [SMALL_STATE(396)] = 12306, + [SMALL_STATE(397)] = 12348, + [SMALL_STATE(398)] = 12390, + [SMALL_STATE(399)] = 12432, + [SMALL_STATE(400)] = 12474, + [SMALL_STATE(401)] = 12516, + [SMALL_STATE(402)] = 12558, + [SMALL_STATE(403)] = 12600, + [SMALL_STATE(404)] = 12642, + [SMALL_STATE(405)] = 12684, + [SMALL_STATE(406)] = 12726, + [SMALL_STATE(407)] = 12768, + [SMALL_STATE(408)] = 12810, + [SMALL_STATE(409)] = 12852, + [SMALL_STATE(410)] = 12894, + [SMALL_STATE(411)] = 12936, + [SMALL_STATE(412)] = 12978, + [SMALL_STATE(413)] = 13020, + [SMALL_STATE(414)] = 13062, + [SMALL_STATE(415)] = 13104, + [SMALL_STATE(416)] = 13148, + [SMALL_STATE(417)] = 13190, + [SMALL_STATE(418)] = 13232, + [SMALL_STATE(419)] = 13274, + [SMALL_STATE(420)] = 13316, + [SMALL_STATE(421)] = 13358, + [SMALL_STATE(422)] = 13400, + [SMALL_STATE(423)] = 13442, + [SMALL_STATE(424)] = 13484, + [SMALL_STATE(425)] = 13526, + [SMALL_STATE(426)] = 13568, + [SMALL_STATE(427)] = 13610, + [SMALL_STATE(428)] = 13652, + [SMALL_STATE(429)] = 13694, + [SMALL_STATE(430)] = 13736, + [SMALL_STATE(431)] = 13778, + [SMALL_STATE(432)] = 13820, + [SMALL_STATE(433)] = 13862, + [SMALL_STATE(434)] = 13904, + [SMALL_STATE(435)] = 13946, + [SMALL_STATE(436)] = 13988, + [SMALL_STATE(437)] = 14030, + [SMALL_STATE(438)] = 14072, + [SMALL_STATE(439)] = 14114, + [SMALL_STATE(440)] = 14156, + [SMALL_STATE(441)] = 14198, + [SMALL_STATE(442)] = 14240, + [SMALL_STATE(443)] = 14282, + [SMALL_STATE(444)] = 14324, + [SMALL_STATE(445)] = 14366, + [SMALL_STATE(446)] = 14410, + [SMALL_STATE(447)] = 14454, + [SMALL_STATE(448)] = 14496, + [SMALL_STATE(449)] = 14540, + [SMALL_STATE(450)] = 14588, + [SMALL_STATE(451)] = 14630, + [SMALL_STATE(452)] = 14674, + [SMALL_STATE(453)] = 14720, + [SMALL_STATE(454)] = 14764, + [SMALL_STATE(455)] = 14806, + [SMALL_STATE(456)] = 14852, + [SMALL_STATE(457)] = 14898, + [SMALL_STATE(458)] = 14940, + [SMALL_STATE(459)] = 14982, + [SMALL_STATE(460)] = 15024, + [SMALL_STATE(461)] = 15066, + [SMALL_STATE(462)] = 15108, + [SMALL_STATE(463)] = 15150, + [SMALL_STATE(464)] = 15192, + [SMALL_STATE(465)] = 15234, + [SMALL_STATE(466)] = 15276, + [SMALL_STATE(467)] = 15318, + [SMALL_STATE(468)] = 15360, + [SMALL_STATE(469)] = 15402, + [SMALL_STATE(470)] = 15444, + [SMALL_STATE(471)] = 15486, + [SMALL_STATE(472)] = 15528, + [SMALL_STATE(473)] = 15570, + [SMALL_STATE(474)] = 15612, + [SMALL_STATE(475)] = 15654, + [SMALL_STATE(476)] = 15696, + [SMALL_STATE(477)] = 15738, + [SMALL_STATE(478)] = 15780, + [SMALL_STATE(479)] = 15822, + [SMALL_STATE(480)] = 15864, + [SMALL_STATE(481)] = 15906, + [SMALL_STATE(482)] = 15948, + [SMALL_STATE(483)] = 15990, + [SMALL_STATE(484)] = 16032, + [SMALL_STATE(485)] = 16074, + [SMALL_STATE(486)] = 16116, + [SMALL_STATE(487)] = 16158, + [SMALL_STATE(488)] = 16202, + [SMALL_STATE(489)] = 16244, + [SMALL_STATE(490)] = 16286, + [SMALL_STATE(491)] = 16328, + [SMALL_STATE(492)] = 16370, + [SMALL_STATE(493)] = 16412, + [SMALL_STATE(494)] = 16454, + [SMALL_STATE(495)] = 16496, + [SMALL_STATE(496)] = 16538, + [SMALL_STATE(497)] = 16580, + [SMALL_STATE(498)] = 16622, + [SMALL_STATE(499)] = 16664, + [SMALL_STATE(500)] = 16706, + [SMALL_STATE(501)] = 16748, + [SMALL_STATE(502)] = 16790, + [SMALL_STATE(503)] = 16832, + [SMALL_STATE(504)] = 16874, + [SMALL_STATE(505)] = 16916, + [SMALL_STATE(506)] = 16958, + [SMALL_STATE(507)] = 17000, + [SMALL_STATE(508)] = 17042, + [SMALL_STATE(509)] = 17084, + [SMALL_STATE(510)] = 17126, + [SMALL_STATE(511)] = 17168, + [SMALL_STATE(512)] = 17210, + [SMALL_STATE(513)] = 17252, + [SMALL_STATE(514)] = 17294, + [SMALL_STATE(515)] = 17336, + [SMALL_STATE(516)] = 17378, + [SMALL_STATE(517)] = 17420, + [SMALL_STATE(518)] = 17462, + [SMALL_STATE(519)] = 17504, + [SMALL_STATE(520)] = 17546, + [SMALL_STATE(521)] = 17588, + [SMALL_STATE(522)] = 17630, + [SMALL_STATE(523)] = 17671, + [SMALL_STATE(524)] = 17712, + [SMALL_STATE(525)] = 17753, + [SMALL_STATE(526)] = 17794, + [SMALL_STATE(527)] = 17835, + [SMALL_STATE(528)] = 17878, + [SMALL_STATE(529)] = 17919, + [SMALL_STATE(530)] = 17960, + [SMALL_STATE(531)] = 18001, + [SMALL_STATE(532)] = 18042, + [SMALL_STATE(533)] = 18083, + [SMALL_STATE(534)] = 18124, + [SMALL_STATE(535)] = 18165, + [SMALL_STATE(536)] = 18206, + [SMALL_STATE(537)] = 18247, + [SMALL_STATE(538)] = 18288, + [SMALL_STATE(539)] = 18329, + [SMALL_STATE(540)] = 18370, + [SMALL_STATE(541)] = 18411, + [SMALL_STATE(542)] = 18452, + [SMALL_STATE(543)] = 18493, + [SMALL_STATE(544)] = 18534, + [SMALL_STATE(545)] = 18575, + [SMALL_STATE(546)] = 18616, + [SMALL_STATE(547)] = 18657, + [SMALL_STATE(548)] = 18698, + [SMALL_STATE(549)] = 18739, + [SMALL_STATE(550)] = 18780, + [SMALL_STATE(551)] = 18821, + [SMALL_STATE(552)] = 18862, + [SMALL_STATE(553)] = 18903, + [SMALL_STATE(554)] = 18944, + [SMALL_STATE(555)] = 18985, + [SMALL_STATE(556)] = 19026, + [SMALL_STATE(557)] = 19067, + [SMALL_STATE(558)] = 19108, + [SMALL_STATE(559)] = 19149, + [SMALL_STATE(560)] = 19190, + [SMALL_STATE(561)] = 19231, + [SMALL_STATE(562)] = 19272, + [SMALL_STATE(563)] = 19313, + [SMALL_STATE(564)] = 19354, + [SMALL_STATE(565)] = 19395, + [SMALL_STATE(566)] = 19436, + [SMALL_STATE(567)] = 19477, + [SMALL_STATE(568)] = 19518, + [SMALL_STATE(569)] = 19559, + [SMALL_STATE(570)] = 19600, + [SMALL_STATE(571)] = 19641, + [SMALL_STATE(572)] = 19682, + [SMALL_STATE(573)] = 19725, + [SMALL_STATE(574)] = 19766, + [SMALL_STATE(575)] = 19807, + [SMALL_STATE(576)] = 19848, + [SMALL_STATE(577)] = 19889, + [SMALL_STATE(578)] = 19930, + [SMALL_STATE(579)] = 19971, + [SMALL_STATE(580)] = 20012, + [SMALL_STATE(581)] = 20055, + [SMALL_STATE(582)] = 20096, + [SMALL_STATE(583)] = 20137, + [SMALL_STATE(584)] = 20178, + [SMALL_STATE(585)] = 20219, + [SMALL_STATE(586)] = 20260, + [SMALL_STATE(587)] = 20301, + [SMALL_STATE(588)] = 20342, + [SMALL_STATE(589)] = 20383, + [SMALL_STATE(590)] = 20424, + [SMALL_STATE(591)] = 20465, + [SMALL_STATE(592)] = 20506, + [SMALL_STATE(593)] = 20547, + [SMALL_STATE(594)] = 20588, + [SMALL_STATE(595)] = 20629, + [SMALL_STATE(596)] = 20670, + [SMALL_STATE(597)] = 20711, + [SMALL_STATE(598)] = 20752, + [SMALL_STATE(599)] = 20795, + [SMALL_STATE(600)] = 20836, + [SMALL_STATE(601)] = 20877, + [SMALL_STATE(602)] = 20918, + [SMALL_STATE(603)] = 20959, + [SMALL_STATE(604)] = 21000, + [SMALL_STATE(605)] = 21041, + [SMALL_STATE(606)] = 21082, + [SMALL_STATE(607)] = 21123, + [SMALL_STATE(608)] = 21164, + [SMALL_STATE(609)] = 21205, + [SMALL_STATE(610)] = 21246, + [SMALL_STATE(611)] = 21287, + [SMALL_STATE(612)] = 21328, + [SMALL_STATE(613)] = 21369, + [SMALL_STATE(614)] = 21410, + [SMALL_STATE(615)] = 21451, + [SMALL_STATE(616)] = 21492, + [SMALL_STATE(617)] = 21533, + [SMALL_STATE(618)] = 21574, + [SMALL_STATE(619)] = 21615, + [SMALL_STATE(620)] = 21656, + [SMALL_STATE(621)] = 21697, + [SMALL_STATE(622)] = 21740, + [SMALL_STATE(623)] = 21781, + [SMALL_STATE(624)] = 21822, + [SMALL_STATE(625)] = 21863, + [SMALL_STATE(626)] = 21904, + [SMALL_STATE(627)] = 21945, + [SMALL_STATE(628)] = 21986, + [SMALL_STATE(629)] = 22027, + [SMALL_STATE(630)] = 22068, + [SMALL_STATE(631)] = 22109, + [SMALL_STATE(632)] = 22150, + [SMALL_STATE(633)] = 22190, + [SMALL_STATE(634)] = 22230, + [SMALL_STATE(635)] = 22270, + [SMALL_STATE(636)] = 22310, + [SMALL_STATE(637)] = 22350, + [SMALL_STATE(638)] = 22390, + [SMALL_STATE(639)] = 22430, + [SMALL_STATE(640)] = 22470, + [SMALL_STATE(641)] = 22502, + [SMALL_STATE(642)] = 22534, + [SMALL_STATE(643)] = 22566, + [SMALL_STATE(644)] = 22598, + [SMALL_STATE(645)] = 22630, + [SMALL_STATE(646)] = 22662, + [SMALL_STATE(647)] = 22694, + [SMALL_STATE(648)] = 22726, + [SMALL_STATE(649)] = 22758, + [SMALL_STATE(650)] = 22790, + [SMALL_STATE(651)] = 22822, + [SMALL_STATE(652)] = 22854, + [SMALL_STATE(653)] = 22886, + [SMALL_STATE(654)] = 22918, + [SMALL_STATE(655)] = 22950, + [SMALL_STATE(656)] = 22982, + [SMALL_STATE(657)] = 23014, + [SMALL_STATE(658)] = 23046, + [SMALL_STATE(659)] = 23078, + [SMALL_STATE(660)] = 23110, + [SMALL_STATE(661)] = 23142, + [SMALL_STATE(662)] = 23174, + [SMALL_STATE(663)] = 23206, + [SMALL_STATE(664)] = 23216, + [SMALL_STATE(665)] = 23226, + [SMALL_STATE(666)] = 23236, + [SMALL_STATE(667)] = 23246, + [SMALL_STATE(668)] = 23256, + [SMALL_STATE(669)] = 23266, + [SMALL_STATE(670)] = 23276, + [SMALL_STATE(671)] = 23286, + [SMALL_STATE(672)] = 23296, + [SMALL_STATE(673)] = 23313, + [SMALL_STATE(674)] = 23330, + [SMALL_STATE(675)] = 23347, + [SMALL_STATE(676)] = 23362, + [SMALL_STATE(677)] = 23381, + [SMALL_STATE(678)] = 23400, + [SMALL_STATE(679)] = 23419, + [SMALL_STATE(680)] = 23438, + [SMALL_STATE(681)] = 23453, + [SMALL_STATE(682)] = 23472, + [SMALL_STATE(683)] = 23491, + [SMALL_STATE(684)] = 23510, + [SMALL_STATE(685)] = 23527, + [SMALL_STATE(686)] = 23546, + [SMALL_STATE(687)] = 23565, + [SMALL_STATE(688)] = 23584, + [SMALL_STATE(689)] = 23601, + [SMALL_STATE(690)] = 23620, + [SMALL_STATE(691)] = 23639, + [SMALL_STATE(692)] = 23658, + [SMALL_STATE(693)] = 23677, + [SMALL_STATE(694)] = 23696, + [SMALL_STATE(695)] = 23713, + [SMALL_STATE(696)] = 23728, + [SMALL_STATE(697)] = 23747, + [SMALL_STATE(698)] = 23766, + [SMALL_STATE(699)] = 23785, + [SMALL_STATE(700)] = 23802, + [SMALL_STATE(701)] = 23819, + [SMALL_STATE(702)] = 23836, + [SMALL_STATE(703)] = 23855, + [SMALL_STATE(704)] = 23872, + [SMALL_STATE(705)] = 23891, + [SMALL_STATE(706)] = 23910, + [SMALL_STATE(707)] = 23929, + [SMALL_STATE(708)] = 23944, + [SMALL_STATE(709)] = 23959, + [SMALL_STATE(710)] = 23976, + [SMALL_STATE(711)] = 23983, + [SMALL_STATE(712)] = 23993, + [SMALL_STATE(713)] = 24001, + [SMALL_STATE(714)] = 24009, + [SMALL_STATE(715)] = 24016, + [SMALL_STATE(716)] = 24023, + [SMALL_STATE(717)] = 24030, + [SMALL_STATE(718)] = 24037, + [SMALL_STATE(719)] = 24044, + [SMALL_STATE(720)] = 24051, + [SMALL_STATE(721)] = 24058, + [SMALL_STATE(722)] = 24065, + [SMALL_STATE(723)] = 24072, + [SMALL_STATE(724)] = 24079, + [SMALL_STATE(725)] = 24086, + [SMALL_STATE(726)] = 24093, + [SMALL_STATE(727)] = 24100, + [SMALL_STATE(728)] = 24107, + [SMALL_STATE(729)] = 24114, + [SMALL_STATE(730)] = 24121, + [SMALL_STATE(731)] = 24128, + [SMALL_STATE(732)] = 24135, + [SMALL_STATE(733)] = 24140, + [SMALL_STATE(734)] = 24147, + [SMALL_STATE(735)] = 24154, + [SMALL_STATE(736)] = 24161, + [SMALL_STATE(737)] = 24168, + [SMALL_STATE(738)] = 24175, + [SMALL_STATE(739)] = 24182, + [SMALL_STATE(740)] = 24189, + [SMALL_STATE(741)] = 24196, + [SMALL_STATE(742)] = 24203, + [SMALL_STATE(743)] = 24210, + [SMALL_STATE(744)] = 24217, + [SMALL_STATE(745)] = 24224, + [SMALL_STATE(746)] = 24231, + [SMALL_STATE(747)] = 24238, + [SMALL_STATE(748)] = 24245, + [SMALL_STATE(749)] = 24252, + [SMALL_STATE(750)] = 24257, + [SMALL_STATE(751)] = 24264, + [SMALL_STATE(752)] = 24271, + [SMALL_STATE(753)] = 24278, + [SMALL_STATE(754)] = 24285, + [SMALL_STATE(755)] = 24292, + [SMALL_STATE(756)] = 24299, + [SMALL_STATE(757)] = 24306, + [SMALL_STATE(758)] = 24313, + [SMALL_STATE(759)] = 24320, + [SMALL_STATE(760)] = 24327, + [SMALL_STATE(761)] = 24334, + [SMALL_STATE(762)] = 24341, + [SMALL_STATE(763)] = 24348, + [SMALL_STATE(764)] = 24355, + [SMALL_STATE(765)] = 24362, + [SMALL_STATE(766)] = 24367, + [SMALL_STATE(767)] = 24374, + [SMALL_STATE(768)] = 24381, + [SMALL_STATE(769)] = 24388, + [SMALL_STATE(770)] = 24395, + [SMALL_STATE(771)] = 24402, + [SMALL_STATE(772)] = 24409, + [SMALL_STATE(773)] = 24416, + [SMALL_STATE(774)] = 24423, + [SMALL_STATE(775)] = 24430, + [SMALL_STATE(776)] = 24437, + [SMALL_STATE(777)] = 24444, + [SMALL_STATE(778)] = 24451, + [SMALL_STATE(779)] = 24458, + [SMALL_STATE(780)] = 24465, + [SMALL_STATE(781)] = 24470, + [SMALL_STATE(782)] = 24477, + [SMALL_STATE(783)] = 24484, + [SMALL_STATE(784)] = 24491, + [SMALL_STATE(785)] = 24498, + [SMALL_STATE(786)] = 24505, + [SMALL_STATE(787)] = 24512, + [SMALL_STATE(788)] = 24519, + [SMALL_STATE(789)] = 24526, + [SMALL_STATE(790)] = 24533, + [SMALL_STATE(791)] = 24540, + [SMALL_STATE(792)] = 24547, + [SMALL_STATE(793)] = 24554, + [SMALL_STATE(794)] = 24561, + [SMALL_STATE(795)] = 24568, + [SMALL_STATE(796)] = 24575, + [SMALL_STATE(797)] = 24580, + [SMALL_STATE(798)] = 24587, + [SMALL_STATE(799)] = 24594, + [SMALL_STATE(800)] = 24601, + [SMALL_STATE(801)] = 24608, + [SMALL_STATE(802)] = 24615, + [SMALL_STATE(803)] = 24622, + [SMALL_STATE(804)] = 24629, + [SMALL_STATE(805)] = 24636, + [SMALL_STATE(806)] = 24643, + [SMALL_STATE(807)] = 24650, + [SMALL_STATE(808)] = 24657, + [SMALL_STATE(809)] = 24664, + [SMALL_STATE(810)] = 24671, + [SMALL_STATE(811)] = 24678, + [SMALL_STATE(812)] = 24685, + [SMALL_STATE(813)] = 24692, + [SMALL_STATE(814)] = 24699, + [SMALL_STATE(815)] = 24704, + [SMALL_STATE(816)] = 24711, + [SMALL_STATE(817)] = 24718, + [SMALL_STATE(818)] = 24725, + [SMALL_STATE(819)] = 24732, + [SMALL_STATE(820)] = 24739, + [SMALL_STATE(821)] = 24746, + [SMALL_STATE(822)] = 24753, + [SMALL_STATE(823)] = 24760, + [SMALL_STATE(824)] = 24767, + [SMALL_STATE(825)] = 24774, + [SMALL_STATE(826)] = 24781, + [SMALL_STATE(827)] = 24788, + [SMALL_STATE(828)] = 24795, + [SMALL_STATE(829)] = 24802, + [SMALL_STATE(830)] = 24809, + [SMALL_STATE(831)] = 24816, + [SMALL_STATE(832)] = 24823, + [SMALL_STATE(833)] = 24828, + [SMALL_STATE(834)] = 24835, + [SMALL_STATE(835)] = 24842, + [SMALL_STATE(836)] = 24849, + [SMALL_STATE(837)] = 24856, + [SMALL_STATE(838)] = 24863, + [SMALL_STATE(839)] = 24868, + [SMALL_STATE(840)] = 24875, + [SMALL_STATE(841)] = 24882, + [SMALL_STATE(842)] = 24889, + [SMALL_STATE(843)] = 24896, + [SMALL_STATE(844)] = 24903, + [SMALL_STATE(845)] = 24910, + [SMALL_STATE(846)] = 24917, + [SMALL_STATE(847)] = 24924, + [SMALL_STATE(848)] = 24931, + [SMALL_STATE(849)] = 24938, + [SMALL_STATE(850)] = 24945, + [SMALL_STATE(851)] = 24952, + [SMALL_STATE(852)] = 24959, + [SMALL_STATE(853)] = 24966, + [SMALL_STATE(854)] = 24971, + [SMALL_STATE(855)] = 24978, + [SMALL_STATE(856)] = 24985, + [SMALL_STATE(857)] = 24992, + [SMALL_STATE(858)] = 24999, + [SMALL_STATE(859)] = 25006, + [SMALL_STATE(860)] = 25013, + [SMALL_STATE(861)] = 25020, + [SMALL_STATE(862)] = 25027, + [SMALL_STATE(863)] = 25034, + [SMALL_STATE(864)] = 25041, + [SMALL_STATE(865)] = 25048, + [SMALL_STATE(866)] = 25055, + [SMALL_STATE(867)] = 25062, + [SMALL_STATE(868)] = 25069, + [SMALL_STATE(869)] = 25076, + [SMALL_STATE(870)] = 25083, + [SMALL_STATE(871)] = 25090, + [SMALL_STATE(872)] = 25097, + [SMALL_STATE(873)] = 25104, + [SMALL_STATE(874)] = 25111, + [SMALL_STATE(875)] = 25118, + [SMALL_STATE(876)] = 25125, + [SMALL_STATE(877)] = 25132, + [SMALL_STATE(878)] = 25137, + [SMALL_STATE(879)] = 25144, + [SMALL_STATE(880)] = 25151, + [SMALL_STATE(881)] = 25158, + [SMALL_STATE(882)] = 25165, + [SMALL_STATE(883)] = 25172, + [SMALL_STATE(884)] = 25179, + [SMALL_STATE(885)] = 25186, + [SMALL_STATE(886)] = 25193, + [SMALL_STATE(887)] = 25200, + [SMALL_STATE(888)] = 25207, + [SMALL_STATE(889)] = 25214, + [SMALL_STATE(890)] = 25221, + [SMALL_STATE(891)] = 25228, + [SMALL_STATE(892)] = 25235, + [SMALL_STATE(893)] = 25242, + [SMALL_STATE(894)] = 25249, + [SMALL_STATE(895)] = 25256, + [SMALL_STATE(896)] = 25263, + [SMALL_STATE(897)] = 25270, + [SMALL_STATE(898)] = 25277, + [SMALL_STATE(899)] = 25284, + [SMALL_STATE(900)] = 25291, + [SMALL_STATE(901)] = 25296, + [SMALL_STATE(902)] = 25303, + [SMALL_STATE(903)] = 25307, + [SMALL_STATE(904)] = 25311, + [SMALL_STATE(905)] = 25315, + [SMALL_STATE(906)] = 25319, + [SMALL_STATE(907)] = 25323, + [SMALL_STATE(908)] = 25327, + [SMALL_STATE(909)] = 25331, + [SMALL_STATE(910)] = 25335, + [SMALL_STATE(911)] = 25339, + [SMALL_STATE(912)] = 25343, + [SMALL_STATE(913)] = 25347, + [SMALL_STATE(914)] = 25351, + [SMALL_STATE(915)] = 25355, + [SMALL_STATE(916)] = 25359, + [SMALL_STATE(917)] = 25363, + [SMALL_STATE(918)] = 25367, + [SMALL_STATE(919)] = 25371, + [SMALL_STATE(920)] = 25375, + [SMALL_STATE(921)] = 25379, + [SMALL_STATE(922)] = 25383, + [SMALL_STATE(923)] = 25387, + [SMALL_STATE(924)] = 25391, + [SMALL_STATE(925)] = 25395, + [SMALL_STATE(926)] = 25399, + [SMALL_STATE(927)] = 25403, + [SMALL_STATE(928)] = 25407, + [SMALL_STATE(929)] = 25411, + [SMALL_STATE(930)] = 25415, + [SMALL_STATE(931)] = 25419, + [SMALL_STATE(932)] = 25423, + [SMALL_STATE(933)] = 25427, + [SMALL_STATE(934)] = 25431, + [SMALL_STATE(935)] = 25435, + [SMALL_STATE(936)] = 25439, + [SMALL_STATE(937)] = 25443, + [SMALL_STATE(938)] = 25447, + [SMALL_STATE(939)] = 25451, + [SMALL_STATE(940)] = 25455, + [SMALL_STATE(941)] = 25459, + [SMALL_STATE(942)] = 25463, + [SMALL_STATE(943)] = 25467, + [SMALL_STATE(944)] = 25471, + [SMALL_STATE(945)] = 25475, + [SMALL_STATE(946)] = 25479, + [SMALL_STATE(947)] = 25483, + [SMALL_STATE(948)] = 25487, + [SMALL_STATE(949)] = 25491, + [SMALL_STATE(950)] = 25495, + [SMALL_STATE(951)] = 25499, + [SMALL_STATE(952)] = 25503, + [SMALL_STATE(953)] = 25507, + [SMALL_STATE(954)] = 25511, + [SMALL_STATE(955)] = 25515, + [SMALL_STATE(956)] = 25519, + [SMALL_STATE(957)] = 25523, + [SMALL_STATE(958)] = 25527, + [SMALL_STATE(959)] = 25531, + [SMALL_STATE(960)] = 25535, + [SMALL_STATE(961)] = 25539, + [SMALL_STATE(962)] = 25543, + [SMALL_STATE(963)] = 25547, + [SMALL_STATE(964)] = 25551, + [SMALL_STATE(965)] = 25555, + [SMALL_STATE(966)] = 25559, + [SMALL_STATE(967)] = 25563, + [SMALL_STATE(968)] = 25567, + [SMALL_STATE(969)] = 25571, + [SMALL_STATE(970)] = 25575, + [SMALL_STATE(971)] = 25579, + [SMALL_STATE(972)] = 25583, + [SMALL_STATE(973)] = 25587, + [SMALL_STATE(974)] = 25591, + [SMALL_STATE(975)] = 25595, + [SMALL_STATE(976)] = 25599, + [SMALL_STATE(977)] = 25603, + [SMALL_STATE(978)] = 25607, + [SMALL_STATE(979)] = 25611, + [SMALL_STATE(980)] = 25615, + [SMALL_STATE(981)] = 25619, + [SMALL_STATE(982)] = 25623, + [SMALL_STATE(983)] = 25627, + [SMALL_STATE(984)] = 25631, + [SMALL_STATE(985)] = 25635, + [SMALL_STATE(986)] = 25639, + [SMALL_STATE(987)] = 25643, + [SMALL_STATE(988)] = 25647, + [SMALL_STATE(989)] = 25651, + [SMALL_STATE(990)] = 25655, + [SMALL_STATE(991)] = 25659, + [SMALL_STATE(992)] = 25663, + [SMALL_STATE(993)] = 25667, + [SMALL_STATE(994)] = 25671, + [SMALL_STATE(995)] = 25675, + [SMALL_STATE(996)] = 25679, + [SMALL_STATE(997)] = 25683, + [SMALL_STATE(998)] = 25687, + [SMALL_STATE(999)] = 25691, + [SMALL_STATE(1000)] = 25695, + [SMALL_STATE(1001)] = 25699, + [SMALL_STATE(1002)] = 25703, + [SMALL_STATE(1003)] = 25707, + [SMALL_STATE(1004)] = 25711, + [SMALL_STATE(1005)] = 25715, + [SMALL_STATE(1006)] = 25719, + [SMALL_STATE(1007)] = 25723, + [SMALL_STATE(1008)] = 25727, + [SMALL_STATE(1009)] = 25731, + [SMALL_STATE(1010)] = 25735, + [SMALL_STATE(1011)] = 25739, + [SMALL_STATE(1012)] = 25743, + [SMALL_STATE(1013)] = 25747, + [SMALL_STATE(1014)] = 25751, + [SMALL_STATE(1015)] = 25755, + [SMALL_STATE(1016)] = 25759, + [SMALL_STATE(1017)] = 25763, + [SMALL_STATE(1018)] = 25767, + [SMALL_STATE(1019)] = 25771, + [SMALL_STATE(1020)] = 25775, + [SMALL_STATE(1021)] = 25779, + [SMALL_STATE(1022)] = 25783, + [SMALL_STATE(1023)] = 25787, + [SMALL_STATE(1024)] = 25791, + [SMALL_STATE(1025)] = 25795, + [SMALL_STATE(1026)] = 25799, + [SMALL_STATE(1027)] = 25803, + [SMALL_STATE(1028)] = 25807, + [SMALL_STATE(1029)] = 25811, + [SMALL_STATE(1030)] = 25815, + [SMALL_STATE(1031)] = 25819, + [SMALL_STATE(1032)] = 25823, + [SMALL_STATE(1033)] = 25827, + [SMALL_STATE(1034)] = 25831, + [SMALL_STATE(1035)] = 25835, + [SMALL_STATE(1036)] = 25839, + [SMALL_STATE(1037)] = 25843, + [SMALL_STATE(1038)] = 25847, + [SMALL_STATE(1039)] = 25851, + [SMALL_STATE(1040)] = 25855, + [SMALL_STATE(1041)] = 25859, + [SMALL_STATE(1042)] = 25863, + [SMALL_STATE(1043)] = 25867, + [SMALL_STATE(1044)] = 25871, + [SMALL_STATE(1045)] = 25875, + [SMALL_STATE(1046)] = 25879, + [SMALL_STATE(1047)] = 25883, + [SMALL_STATE(1048)] = 25887, + [SMALL_STATE(1049)] = 25891, + [SMALL_STATE(1050)] = 25895, + [SMALL_STATE(1051)] = 25899, + [SMALL_STATE(1052)] = 25903, + [SMALL_STATE(1053)] = 25907, + [SMALL_STATE(1054)] = 25911, + [SMALL_STATE(1055)] = 25915, + [SMALL_STATE(1056)] = 25919, + [SMALL_STATE(1057)] = 25923, + [SMALL_STATE(1058)] = 25927, + [SMALL_STATE(1059)] = 25931, + [SMALL_STATE(1060)] = 25935, + [SMALL_STATE(1061)] = 25939, + [SMALL_STATE(1062)] = 25943, + [SMALL_STATE(1063)] = 25947, + [SMALL_STATE(1064)] = 25951, + [SMALL_STATE(1065)] = 25955, + [SMALL_STATE(1066)] = 25959, + [SMALL_STATE(1067)] = 25963, + [SMALL_STATE(1068)] = 25967, + [SMALL_STATE(1069)] = 25971, + [SMALL_STATE(1070)] = 25975, + [SMALL_STATE(1071)] = 25979, + [SMALL_STATE(1072)] = 25983, + [SMALL_STATE(1073)] = 25987, + [SMALL_STATE(1074)] = 25991, + [SMALL_STATE(1075)] = 25995, + [SMALL_STATE(1076)] = 25999, + [SMALL_STATE(1077)] = 26003, + [SMALL_STATE(1078)] = 26007, + [SMALL_STATE(1079)] = 26011, + [SMALL_STATE(1080)] = 26015, + [SMALL_STATE(1081)] = 26019, + [SMALL_STATE(1082)] = 26023, + [SMALL_STATE(1083)] = 26027, + [SMALL_STATE(1084)] = 26031, + [SMALL_STATE(1085)] = 26035, + [SMALL_STATE(1086)] = 26039, + [SMALL_STATE(1087)] = 26043, + [SMALL_STATE(1088)] = 26047, + [SMALL_STATE(1089)] = 26051, + [SMALL_STATE(1090)] = 26055, + [SMALL_STATE(1091)] = 26059, + [SMALL_STATE(1092)] = 26063, + [SMALL_STATE(1093)] = 26067, + [SMALL_STATE(1094)] = 26071, + [SMALL_STATE(1095)] = 26075, + [SMALL_STATE(1096)] = 26079, + [SMALL_STATE(1097)] = 26083, + [SMALL_STATE(1098)] = 26087, + [SMALL_STATE(1099)] = 26091, + [SMALL_STATE(1100)] = 26095, + [SMALL_STATE(1101)] = 26099, + [SMALL_STATE(1102)] = 26103, + [SMALL_STATE(1103)] = 26107, + [SMALL_STATE(1104)] = 26111, + [SMALL_STATE(1105)] = 26115, + [SMALL_STATE(1106)] = 26119, + [SMALL_STATE(1107)] = 26123, + [SMALL_STATE(1108)] = 26127, + [SMALL_STATE(1109)] = 26131, + [SMALL_STATE(1110)] = 26135, + [SMALL_STATE(1111)] = 26139, + [SMALL_STATE(1112)] = 26143, + [SMALL_STATE(1113)] = 26147, + [SMALL_STATE(1114)] = 26151, + [SMALL_STATE(1115)] = 26155, + [SMALL_STATE(1116)] = 26159, + [SMALL_STATE(1117)] = 26163, + [SMALL_STATE(1118)] = 26167, + [SMALL_STATE(1119)] = 26171, + [SMALL_STATE(1120)] = 26175, + [SMALL_STATE(1121)] = 26179, + [SMALL_STATE(1122)] = 26183, + [SMALL_STATE(1123)] = 26187, + [SMALL_STATE(1124)] = 26191, + [SMALL_STATE(1125)] = 26195, + [SMALL_STATE(1126)] = 26199, + [SMALL_STATE(1127)] = 26203, + [SMALL_STATE(1128)] = 26207, + [SMALL_STATE(1129)] = 26211, + [SMALL_STATE(1130)] = 26215, + [SMALL_STATE(1131)] = 26219, + [SMALL_STATE(1132)] = 26223, + [SMALL_STATE(1133)] = 26227, + [SMALL_STATE(1134)] = 26231, + [SMALL_STATE(1135)] = 26235, + [SMALL_STATE(1136)] = 26239, + [SMALL_STATE(1137)] = 26243, + [SMALL_STATE(1138)] = 26247, + [SMALL_STATE(1139)] = 26251, + [SMALL_STATE(1140)] = 26255, + [SMALL_STATE(1141)] = 26259, + [SMALL_STATE(1142)] = 26263, + [SMALL_STATE(1143)] = 26267, + [SMALL_STATE(1144)] = 26271, + [SMALL_STATE(1145)] = 26275, + [SMALL_STATE(1146)] = 26279, + [SMALL_STATE(1147)] = 26283, + [SMALL_STATE(1148)] = 26287, + [SMALL_STATE(1149)] = 26291, + [SMALL_STATE(1150)] = 26295, + [SMALL_STATE(1151)] = 26299, + [SMALL_STATE(1152)] = 26303, + [SMALL_STATE(1153)] = 26307, + [SMALL_STATE(1154)] = 26311, + [SMALL_STATE(1155)] = 26315, + [SMALL_STATE(1156)] = 26319, + [SMALL_STATE(1157)] = 26323, + [SMALL_STATE(1158)] = 26327, + [SMALL_STATE(1159)] = 26331, + [SMALL_STATE(1160)] = 26335, + [SMALL_STATE(1161)] = 26339, + [SMALL_STATE(1162)] = 26343, + [SMALL_STATE(1163)] = 26347, + [SMALL_STATE(1164)] = 26351, + [SMALL_STATE(1165)] = 26355, + [SMALL_STATE(1166)] = 26359, + [SMALL_STATE(1167)] = 26363, + [SMALL_STATE(1168)] = 26367, + [SMALL_STATE(1169)] = 26371, + [SMALL_STATE(1170)] = 26375, + [SMALL_STATE(1171)] = 26379, + [SMALL_STATE(1172)] = 26383, + [SMALL_STATE(1173)] = 26387, + [SMALL_STATE(1174)] = 26391, + [SMALL_STATE(1175)] = 26395, + [SMALL_STATE(1176)] = 26399, + [SMALL_STATE(1177)] = 26403, + [SMALL_STATE(1178)] = 26407, + [SMALL_STATE(1179)] = 26411, + [SMALL_STATE(1180)] = 26415, + [SMALL_STATE(1181)] = 26419, + [SMALL_STATE(1182)] = 26423, + [SMALL_STATE(1183)] = 26427, + [SMALL_STATE(1184)] = 26431, + [SMALL_STATE(1185)] = 26435, + [SMALL_STATE(1186)] = 26439, + [SMALL_STATE(1187)] = 26443, + [SMALL_STATE(1188)] = 26447, + [SMALL_STATE(1189)] = 26451, + [SMALL_STATE(1190)] = 26455, + [SMALL_STATE(1191)] = 26459, + [SMALL_STATE(1192)] = 26463, + [SMALL_STATE(1193)] = 26467, + [SMALL_STATE(1194)] = 26471, + [SMALL_STATE(1195)] = 26475, + [SMALL_STATE(1196)] = 26479, + [SMALL_STATE(1197)] = 26483, + [SMALL_STATE(1198)] = 26487, + [SMALL_STATE(1199)] = 26491, + [SMALL_STATE(1200)] = 26495, + [SMALL_STATE(1201)] = 26499, + [SMALL_STATE(1202)] = 26503, + [SMALL_STATE(1203)] = 26507, + [SMALL_STATE(1204)] = 26511, + [SMALL_STATE(1205)] = 26515, + [SMALL_STATE(1206)] = 26519, + [SMALL_STATE(1207)] = 26523, + [SMALL_STATE(1208)] = 26527, + [SMALL_STATE(1209)] = 26531, + [SMALL_STATE(1210)] = 26535, + [SMALL_STATE(1211)] = 26539, + [SMALL_STATE(1212)] = 26543, + [SMALL_STATE(1213)] = 26547, + [SMALL_STATE(1214)] = 26551, + [SMALL_STATE(1215)] = 26555, + [SMALL_STATE(1216)] = 26559, + [SMALL_STATE(1217)] = 26563, + [SMALL_STATE(1218)] = 26567, + [SMALL_STATE(1219)] = 26571, + [SMALL_STATE(1220)] = 26575, + [SMALL_STATE(1221)] = 26579, + [SMALL_STATE(1222)] = 26583, + [SMALL_STATE(1223)] = 26587, + [SMALL_STATE(1224)] = 26591, + [SMALL_STATE(1225)] = 26595, + [SMALL_STATE(1226)] = 26599, + [SMALL_STATE(1227)] = 26603, + [SMALL_STATE(1228)] = 26607, + [SMALL_STATE(1229)] = 26611, + [SMALL_STATE(1230)] = 26615, + [SMALL_STATE(1231)] = 26619, + [SMALL_STATE(1232)] = 26623, + [SMALL_STATE(1233)] = 26627, + [SMALL_STATE(1234)] = 26631, + [SMALL_STATE(1235)] = 26635, + [SMALL_STATE(1236)] = 26639, + [SMALL_STATE(1237)] = 26643, + [SMALL_STATE(1238)] = 26647, + [SMALL_STATE(1239)] = 26651, + [SMALL_STATE(1240)] = 26655, + [SMALL_STATE(1241)] = 26659, + [SMALL_STATE(1242)] = 26663, + [SMALL_STATE(1243)] = 26667, + [SMALL_STATE(1244)] = 26671, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), - [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), + [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), - [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline, 1, 0, 0), + [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline, 1, 0, 1), [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), + [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), - [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), - [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), - [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), + [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), - [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), - [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), + [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), - [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), + [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), - [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), + [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), + [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), - [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), + [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), - [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), - [511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(867), - [514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(166), - [517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(829), - [520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(194), - [523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(745), - [526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(763), - [529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(764), - [532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(765), - [535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(781), - [538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(814), - [541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(144), - [544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(144), - [547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(177), - [550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(831), - [553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(837), - [556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(207), - [559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(725), - [562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(741), - [565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(451), - [568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(299), - [571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(414), - [574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(200), - [577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(14), - [580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(124), - [583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(959), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), + [511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(802), + [514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(166), + [517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(784), + [520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(194), + [523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(887), + [526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(888), + [529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(719), + [532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(720), + [535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(736), + [538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(737), + [541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(144), + [544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(144), + [547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(177), + [550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(797), + [553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(798), + [556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(208), + [559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(820), + [562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(838), + [565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(273), + [568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(450), + [571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(270), + [574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(200), + [577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(14), + [580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(124), + [583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(999), [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(869), - [593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(219), - [596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(870), - [599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(220), - [602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(872), - [605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(873), - [608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(874), - [611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(875), - [614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(876), - [617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(877), - [620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(147), - [623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(147), - [626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(227), - [629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(878), - [632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(879), - [635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(228), - [638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(880), - [641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(695), - [644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(482), - [647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(483), - [650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(484), - [653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(198), - [656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(17), - [659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(121), - [662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(986), + [590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(889), + [593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(219), + [596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(890), + [599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(220), + [602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(714), + [605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(892), + [608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(893), + [611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(894), + [614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(895), + [617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(896), + [620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(147), + [623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(147), + [626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(227), + [629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(897), + [632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(898), + [635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(228), + [638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(899), + [641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(900), + [644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(487), + [647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(488), + [650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(489), + [653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(198), + [656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(17), + [659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(121), + [662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(1006), [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(699), - [670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(180), - [673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(700), - [676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(183), - [679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(701), - [682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(702), - [685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(703), - [688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(704), - [691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(705), - [694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(706), - [697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(141), - [700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(141), - [703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(188), - [706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(707), - [709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(708), - [712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(191), - [715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(709), - [718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(881), - [721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(519), - [724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(520), - [727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(234), - [730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(229), - [733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(19), - [736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(125), - [739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(1002), + [667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(721), + [670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(180), + [673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(722), + [676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(183), + [679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(723), + [682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(724), + [685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(725), + [688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(726), + [691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(727), + [694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(728), + [697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(141), + [700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(141), + [703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(188), + [706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(729), + [709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(730), + [712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(191), + [715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(731), + [718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(732), + [721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(237), + [724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(238), + [727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(239), + [730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(229), + [733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(19), + [736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(125), + [739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(1022), [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(713), - [747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(208), - [750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(714), - [753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(209), - [756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(715), - [759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(716), - [762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(717), - [765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(718), - [768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(719), - [771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(720), - [774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(134), - [777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(134), - [780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(211), - [783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(721), - [786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(722), - [789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(212), - [792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(723), - [795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(724), - [798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(262), - [801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(263), - [804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(264), - [807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(192), - [810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(21), - [813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(123), - [816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(1018), + [744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(738), + [747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(207), + [750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(739), + [753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(209), + [756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(740), + [759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(741), + [762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(742), + [765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(743), + [768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(744), + [771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(745), + [774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(134), + [777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(134), + [780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(211), + [783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(746), + [786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(747), + [789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(212), + [792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(748), + [795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(749), + [798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(267), + [801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(268), + [804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(269), + [807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(192), + [810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(21), + [813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(123), + [816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(1038), [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(729), - [824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(221), - [827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(730), - [830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(222), - [833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(731), - [836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(732), - [839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(733), - [842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(734), - [845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(735), - [848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(736), - [851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(138), - [854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(138), - [857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(224), - [860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(737), - [863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(738), - [866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(225), - [869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(739), - [872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(740), - [875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(301), - [878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(302), - [881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(303), - [884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(213), - [887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(23), - [890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(126), - [893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(1034), + [821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(754), + [824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(221), + [827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(755), + [830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(222), + [833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(756), + [836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(757), + [839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(758), + [842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(759), + [845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(760), + [848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(761), + [851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(138), + [854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(138), + [857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(224), + [860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(762), + [863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(763), + [866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(225), + [869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(764), + [872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(765), + [875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(304), + [878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(305), + [881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(306), + [884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(213), + [887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(23), + [890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(126), + [893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(1054), [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(747), - [901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(167), - [904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(748), - [907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(168), - [910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(749), - [913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(750), - [916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(751), - [919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(752), - [922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(753), - [925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(754), - [928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(139), - [931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(139), - [934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(170), - [937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(755), - [940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(756), - [943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(171), - [946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(757), - [949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(758), - [952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(340), - [955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(341), - [958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(342), - [961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(226), - [964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(25), - [967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(127), - [970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(1050), + [898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(769), + [901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(167), + [904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(770), + [907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(168), + [910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(771), + [913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(772), + [916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(773), + [919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(774), + [922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(775), + [925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(776), + [928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(139), + [931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(139), + [934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(170), + [937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(777), + [940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(778), + [943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(171), + [946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(779), + [949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(780), + [952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(341), + [955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(342), + [958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(343), + [961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(226), + [964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(25), + [967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(127), + [970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(1070), [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(766), - [978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(181), - [981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(767), - [984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(182), - [987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(768), - [990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(769), - [993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(770), - [996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(771), - [999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(772), - [1002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(773), - [1005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(145), - [1008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(145), - [1011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(184), - [1014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(774), - [1017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(775), - [1020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(185), - [1023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(776), - [1026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(777), - [1029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(377), - [1032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(378), - [1035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(379), - [1038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(172), - [1041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(27), - [1044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(129), - [1047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(1066), - [1050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(782), - [1053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(193), - [1056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(783), - [1059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(164), - [1062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(784), - [1065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(785), - [1068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(786), - [1071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(787), - [1074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(788), - [1077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(789), - [1080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(148), - [1083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(148), - [1086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(196), - [1089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(790), - [1092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(791), - [1095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(197), - [1098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(792), - [1101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(793), - [1104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(411), - [1107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(412), - [1110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(413), - [1113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(186), - [1116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(28), - [1119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(130), - [1122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(1082), + [975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(785), + [978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(181), + [981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(786), + [984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(182), + [987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(787), + [990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(788), + [993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(789), + [996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(790), + [999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(791), + [1002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(792), + [1005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(145), + [1008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(145), + [1011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(184), + [1014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(793), + [1017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(794), + [1020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(185), + [1023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(795), + [1026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(796), + [1029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(378), + [1032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(379), + [1035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(380), + [1038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(172), + [1041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(27), + [1044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(129), + [1047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(1086), + [1050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(803), + [1053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(193), + [1056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(804), + [1059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(164), + [1062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(805), + [1065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(806), + [1068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(807), + [1071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(808), + [1074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(809), + [1077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(810), + [1080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(148), + [1083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(148), + [1086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(196), + [1089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(811), + [1092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(812), + [1095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(197), + [1098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(813), + [1101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(814), + [1104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(415), + [1107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(416), + [1110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(417), + [1113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(186), + [1116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(28), + [1119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(130), + [1122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(1102), [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [1127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(798), - [1130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(442), - [1133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(799), - [1136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(443), - [1139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(800), - [1142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(801), - [1145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(802), - [1148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(803), - [1151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(804), - [1154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(805), - [1157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(162), - [1160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(162), - [1163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(445), - [1166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(806), - [1169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(807), - [1172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(446), - [1175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(808), - [1178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(809), - [1181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(600), - [1184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(601), - [1187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(602), - [1190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(453), - [1193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(120), - [1196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(151), - [1199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(1098), + [1127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(821), + [1130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(445), + [1133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(822), + [1136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(446), + [1139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(823), + [1142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(824), + [1145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(825), + [1148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(826), + [1151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(827), + [1154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(828), + [1157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(162), + [1160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(162), + [1163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(448), + [1166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(829), + [1169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(830), + [1172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(449), + [1175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(831), + [1178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(832), + [1181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(527), + [1184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(528), + [1187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(529), + [1190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(456), + [1193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(120), + [1196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(151), + [1199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 9), SHIFT_REPEAT(1118), [1202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element, 1, 0, 0), [1204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__element, 1, 0, 0), - [1206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), - [1208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), - [1210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), - [1212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), - [1214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), - [1216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), - [1218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), - [1220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), - [1222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), - [1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), + [1206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [1208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), + [1210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), + [1212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), + [1214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), + [1216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), + [1218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), + [1220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), + [1222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), + [1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), [1226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element, 1, 100, 0), [1228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__element, 1, 100, 0), - [1230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), - [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verbatim, 3, 0, 7), - [1234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verbatim, 3, 0, 7), - [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [1238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [1240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [1242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [1230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), + [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verbatim, 3, 0, 10), + [1234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verbatim, 3, 0, 10), + [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [1238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [1240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [1242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), [1256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, 0, 0), [1258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, 0, 0), - [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), [1272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_text, 1, 0, 0), [1276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_link_text, 1, 0, 0), REDUCE(sym__symbol_fallback, 1, 0, 0), [1279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_text, 1, 0, 0), REDUCE(sym__symbol_fallback, 1, 0, 0), [1282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 1, 0, 0), [1284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1, 0, 0), - [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), [1288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 2, 0, 0), [1290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 2, 0, 0), - [1292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [1292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__text, 2, 0, 0), [1296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__text, 2, 0, 0), [1298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2, 0, 0), SHIFT_REPEAT(174), - [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), [1307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2, 0, 0), SHIFT_REPEAT(178), [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), [1320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), [1324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), [1326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), - [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), [1330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2, 0, 0), SHIFT_REPEAT(190), - [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), - [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), + [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), - [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), - [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), + [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), + [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), [1345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2, 0, 0), SHIFT_REPEAT(201), - [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), [1350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2, 0, 0), SHIFT_REPEAT(203), - [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), [1355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2, 0, 0), SHIFT_REPEAT(205), - [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), [1366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), - [1368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), + [1368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), [1370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2, 0, 0), SHIFT_REPEAT(214), - [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), [1379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2, 0, 0), SHIFT_REPEAT(218), - [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), [1390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2, 0, 0), SHIFT_REPEAT(223), [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), - [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), - [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), [1403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2, 0, 0), SHIFT_REPEAT(231), - [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [1408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collapsed_reference_link, 2, 0, 4), - [1410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collapsed_reference_link, 2, 0, 4), - [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note, 1, 0, 0), - [1414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_note, 1, 0, 0), - [1416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hard_line_break, 2, 0, 0), - [1418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hard_line_break, 2, 0, 0), - [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_with_spaces, 2, 0, 0), - [1422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__comment_with_spaces, 2, 0, 0), - [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collapsed_reference_image, 2, 0, 1), - [1426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collapsed_reference_image, 2, 0, 1), - [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_reference_image, 2, 0, 2), - [1430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_reference_image, 2, 0, 2), - [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_image, 2, 0, 3), - [1434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_image, 2, 0, 3), - [1436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_reference_link, 2, 0, 5), - [1438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_reference_link, 2, 0, 5), - [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 2, 0, 6), - [1442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 2, 0, 6), - [1444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link_destination, 4, 0, 0), - [1446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link_destination, 4, 0, 0), - [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 3, 0, 0), - [1450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 3, 0, 0), - [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_autolink, 3, 0, 0), - [1454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_autolink, 3, 0, 0), - [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_inline, 4, 0, 8), - [1458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_inline, 4, 0, 8), - [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math, 4, 0, 10), - [1462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math, 4, 0, 10), - [1464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 3, 0, 0), - [1466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comment, 3, 0, 0), - [1468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emphasis, 4, 0, 11), - [1470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_emphasis, 4, 0, 11), - [1472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strong, 4, 0, 11), - [1474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strong, 4, 0, 11), - [1476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_superscript, 4, 0, 12), - [1478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_superscript, 4, 0, 12), - [1480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, 0, 12), - [1482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, 0, 12), - [1484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlighted, 4, 0, 12), - [1486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_highlighted, 4, 0, 12), - [1488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 4, 0, 12), - [1490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 4, 0, 12), - [1492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete, 4, 0, 12), - [1494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete, 4, 0, 12), - [1496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_footnote_reference, 4, 0, 13), - [1498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_footnote_reference, 4, 0, 13), - [1500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_label, 3, 0, 14), - [1502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_label, 3, 0, 14), - [1504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_inline_attribute, 3, 0, 18), - [1506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_inline_attribute, 3, 0, 18), - [1508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, 0, 0), SHIFT(1020), - [1511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_todo, 1, 0, 0), - [1513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_todo, 1, 0, 0), - [1515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, 0, 0), SHIFT(955), - [1518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), - [1520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, 0, 0), SHIFT(1036), - [1523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, 0, 0), SHIFT(1052), - [1526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, 0, 0), SHIFT(1068), - [1529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, 0, 0), SHIFT(1084), - [1532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, 0, 0), SHIFT(972), - [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), - [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [1543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2, 0, 0), SHIFT_REPEAT(449), - [1546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, 0, 0), SHIFT(961), - [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), - [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), - [1553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, 0, 0), SHIFT(988), - [1556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, 0, 0), SHIFT(1004), - [1559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element, 2, 100, 0), - [1561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__element, 2, 100, 0), - [1563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_span, 5, 100, 17), - [1565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_span, 5, 100, 17), - [1567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element, 2, 0, 0), - [1569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__element, 2, 0, 0), - [1571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_without_trailing_space, 1, 0, 0), - [1573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_attribute, 4, 0, 16), - [1575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_attribute, 4, 0, 16), - [1577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_attribute, 3, 0, 0), - [1579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_attribute, 3, 0, 0), - [1581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__curly_bracket_span_fallback, 2, 0, 0), - [1583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__curly_bracket_span_fallback, 2, 0, 0), - [1585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_without_trailing_space, 2, 0, 0), - [1587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, 0, 0), SHIFT(1100), - [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [1598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [1604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [1608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(901), - [1611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(966), - [1614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(645), - [1617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(746), - [1620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2, 0, 0), - [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [1634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [1648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [1656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_with_newline, 4, 0, 20), - [1658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 1, 0, 9), - [1660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 1, 0, 0), - [1662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, 0, 15), - [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value, 3, 0, 19), - [1666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_with_newline, 3, 0, 0), - [1668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 3, 0, 0), - [1670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_name, 1, 0, 0), - [1672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1, 0, 0), - [1674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_text, 4, 0, 0), - [1676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_text, 4, 0, 0), - [1678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [1682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [1684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), - [1686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [1690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [1692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [1696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [1698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), - [1700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [1702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [1704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), - [1706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [1710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), - [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [1718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), - [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [1724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), - [1726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__comment_with_newline_repeat1, 2, 0, 0), SHIFT_REPEAT(690), - [1729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_with_newline_repeat1, 2, 0, 0), - [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), - [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), - [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [1753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), - [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), - [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), - [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [1781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), - [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [1791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), - [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [1799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), - [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [1803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_with_newline_repeat1, 1, 0, 0), - [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [1809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_description, 3, 0, 0), - [1811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_description, 3, 0, 0), - [1813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_description, 4, 0, 0), - [1815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_description, 4, 0, 0), - [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [1821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2, 0, 0), SHIFT(501), - [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [1826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2, 0, 0), SHIFT(501), - [1829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__curly_bracket_span_begin, 1, 0, 0), SHIFT(592), - [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [1834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1, 0, 0), SHIFT(235), - [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [1839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1, 0, 0), SHIFT(235), - [1842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1, 0, 0), SHIFT(235), - [1845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1, 0, 0), SHIFT(235), - [1848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1, 0, 0), SHIFT(235), - [1851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1, 0, 0), SHIFT(235), - [1854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1, 0, 0), SHIFT(235), - [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [1859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1, 0, 0), SHIFT(235), - [1862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1, 0, 0), SHIFT(235), - [1865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1, 0, 0), SHIFT(235), - [1868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2, 0, 0), SHIFT(245), - [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [1873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2, 0, 0), SHIFT(245), - [1876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__curly_bracket_span_begin, 1, 0, 0), SHIFT(564), - [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [1881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1, 0, 0), SHIFT(268), - [1884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [1886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1, 0, 0), SHIFT(268), - [1889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1, 0, 0), SHIFT(268), - [1892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1, 0, 0), SHIFT(268), - [1895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1, 0, 0), SHIFT(268), - [1898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1, 0, 0), SHIFT(268), - [1901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1, 0, 0), SHIFT(268), - [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [1906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1, 0, 0), SHIFT(268), - [1909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1, 0, 0), SHIFT(268), - [1912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1, 0, 0), SHIFT(268), - [1915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1, 0, 0), SHIFT(265), - [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [1920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2, 0, 0), SHIFT(280), - [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [1925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2, 0, 0), SHIFT(280), - [1928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__curly_bracket_span_begin, 1, 0, 0), SHIFT(580), - [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [1933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1, 0, 0), SHIFT(306), - [1936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [1938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1, 0, 0), SHIFT(306), - [1941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1, 0, 0), SHIFT(306), - [1944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1, 0, 0), SHIFT(306), - [1947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1, 0, 0), SHIFT(306), - [1950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1, 0, 0), SHIFT(306), - [1953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1, 0, 0), SHIFT(306), - [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [1958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1, 0, 0), SHIFT(306), - [1961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1, 0, 0), SHIFT(306), - [1964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1, 0, 0), SHIFT(306), - [1967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2, 0, 0), SHIFT(319), - [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [1972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2, 0, 0), SHIFT(319), - [1975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__curly_bracket_span_begin, 1, 0, 0), SHIFT(565), - [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [1980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1, 0, 0), SHIFT(265), - [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [1985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1, 0, 0), SHIFT(346), - [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [1990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1, 0, 0), SHIFT(346), - [1993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1, 0, 0), SHIFT(346), - [1996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1, 0, 0), SHIFT(346), - [1999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1, 0, 0), SHIFT(346), - [2002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1, 0, 0), SHIFT(346), - [2005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1, 0, 0), SHIFT(346), - [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [2010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1, 0, 0), SHIFT(346), - [2013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1, 0, 0), SHIFT(346), - [2016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1, 0, 0), SHIFT(346), - [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [2021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2, 0, 0), SHIFT(357), - [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [2026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2, 0, 0), SHIFT(357), - [2029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__curly_bracket_span_begin, 1, 0, 0), SHIFT(588), - [2032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [2034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1, 0, 0), SHIFT(265), - [2037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1, 0, 0), SHIFT(265), - [2040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1, 0, 0), SHIFT(265), - [2043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1, 0, 0), SHIFT(383), - [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [2048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1, 0, 0), SHIFT(383), - [2051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1, 0, 0), SHIFT(383), - [2054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1, 0, 0), SHIFT(383), - [2057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1, 0, 0), SHIFT(383), - [2060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1, 0, 0), SHIFT(383), - [2063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1, 0, 0), SHIFT(383), - [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [2068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1, 0, 0), SHIFT(383), - [2071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1, 0, 0), SHIFT(383), - [2074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1, 0, 0), SHIFT(383), - [2077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2, 0, 0), SHIFT(394), - [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [2082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2, 0, 0), SHIFT(394), - [2085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__curly_bracket_span_begin, 1, 0, 0), SHIFT(590), - [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [2090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1, 0, 0), SHIFT(265), - [2093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1, 0, 0), SHIFT(415), - [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [2098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1, 0, 0), SHIFT(415), - [2101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1, 0, 0), SHIFT(415), - [2104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1, 0, 0), SHIFT(415), - [2107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1, 0, 0), SHIFT(415), - [2110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1, 0, 0), SHIFT(415), - [2113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1, 0, 0), SHIFT(415), - [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [2118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1, 0, 0), SHIFT(415), - [2121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1, 0, 0), SHIFT(415), - [2124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1, 0, 0), SHIFT(415), - [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [2129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2, 0, 0), SHIFT(426), - [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [2134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2, 0, 0), SHIFT(426), - [2137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__curly_bracket_span_begin, 1, 0, 0), SHIFT(574), - [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [2142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1, 0, 0), SHIFT(604), - [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [2147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1, 0, 0), SHIFT(604), - [2150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1, 0, 0), SHIFT(604), - [2153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1, 0, 0), SHIFT(604), - [2156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1, 0, 0), SHIFT(604), - [2159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1, 0, 0), SHIFT(604), - [2162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1, 0, 0), SHIFT(604), - [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [2167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1, 0, 0), SHIFT(604), - [2170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1, 0, 0), SHIFT(604), - [2173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1, 0, 0), SHIFT(604), - [2176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2, 0, 0), SHIFT(527), - [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [2181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2, 0, 0), SHIFT(527), - [2184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__curly_bracket_span_begin, 1, 0, 0), SHIFT(616), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [2191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1, 0, 0), SHIFT(300), - [2194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1, 0, 0), SHIFT(300), - [2197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1, 0, 0), SHIFT(300), - [2200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1, 0, 0), SHIFT(300), - [2203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1, 0, 0), SHIFT(300), - [2206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1, 0, 0), SHIFT(300), - [2209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1, 0, 0), SHIFT(300), - [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [2214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1, 0, 0), SHIFT(300), - [2217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1, 0, 0), SHIFT(300), - [2220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1, 0, 0), SHIFT(300), - [2223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1, 0, 0), SHIFT(265), - [2226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1, 0, 0), SHIFT(265), - [2229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2, 0, 0), SHIFT(344), - [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [2234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2, 0, 0), SHIFT(344), - [2237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__curly_bracket_span_begin, 1, 0, 0), SHIFT(563), - [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [2242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1, 0, 0), SHIFT(265), - [2245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2, 0, 0), SHIFT(417), - [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [2250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2, 0, 0), SHIFT(417), - [2253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1, 0, 0), SHIFT(454), - [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [2258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1, 0, 0), SHIFT(454), - [2261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1, 0, 0), SHIFT(454), - [2264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1, 0, 0), SHIFT(454), - [2267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1, 0, 0), SHIFT(454), - [2270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1, 0, 0), SHIFT(454), - [2273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1, 0, 0), SHIFT(454), - [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [2278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1, 0, 0), SHIFT(454), - [2281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1, 0, 0), SHIFT(454), - [2284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1, 0, 0), SHIFT(454), - [2287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2, 0, 0), SHIFT(464), - [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [2292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2, 0, 0), SHIFT(464), - [2295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__curly_bracket_span_begin, 1, 0, 0), SHIFT(556), - [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [2300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1, 0, 0), SHIFT(265), - [2303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__curly_bracket_span_begin, 1, 0, 0), SHIFT(571), - [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [2308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1, 0, 0), SHIFT(488), - [2311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1, 0, 0), SHIFT(488), - [2314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1, 0, 0), SHIFT(488), - [2317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1, 0, 0), SHIFT(488), - [2320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1, 0, 0), SHIFT(488), - [2323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1, 0, 0), SHIFT(488), - [2326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1, 0, 0), SHIFT(488), - [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [2331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1, 0, 0), SHIFT(488), - [2334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1, 0, 0), SHIFT(488), - [2337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1, 0, 0), SHIFT(488), - [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [2378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key, 1, 0, 0), - [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [1408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collapsed_reference_link, 2, 0, 6), + [1410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collapsed_reference_link, 2, 0, 6), + [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete, 4, 0, 15), + [1414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete, 4, 0, 15), + [1416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_footnote_reference, 4, 0, 16), + [1418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_footnote_reference, 4, 0, 16), + [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_label, 3, 0, 17), + [1422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_label, 3, 0, 17), + [1424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, 0, 0), SHIFT(1024), + [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_todo, 1, 0, 0), + [1429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_todo, 1, 0, 0), + [1431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note, 1, 0, 0), + [1433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_note, 1, 0, 0), + [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hard_line_break, 2, 0, 0), + [1437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hard_line_break, 2, 0, 0), + [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_with_spaces, 2, 0, 0), + [1441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__comment_with_spaces, 2, 0, 0), + [1443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collapsed_reference_image, 2, 0, 3), + [1445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collapsed_reference_image, 2, 0, 3), + [1447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_reference_image, 2, 0, 4), + [1449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_reference_image, 2, 0, 4), + [1451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_image, 2, 0, 5), + [1453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_image, 2, 0, 5), + [1455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_reference_link, 2, 0, 7), + [1457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_reference_link, 2, 0, 7), + [1459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 2, 0, 8), + [1461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 2, 0, 8), + [1463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 3, 0, 0), + [1465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 3, 0, 0), + [1467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_autolink, 3, 0, 0), + [1469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_autolink, 3, 0, 0), + [1471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_inline, 4, 0, 11), + [1473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_inline, 4, 0, 11), + [1475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math, 4, 0, 13), + [1477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math, 4, 0, 13), + [1479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 3, 0, 0), + [1481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comment, 3, 0, 0), + [1483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_emphasis, 4, 0, 14), + [1485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_emphasis, 4, 0, 14), + [1487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strong, 4, 0, 14), + [1489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strong, 4, 0, 14), + [1491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_superscript, 4, 0, 15), + [1493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_superscript, 4, 0, 15), + [1495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, 0, 15), + [1497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, 0, 15), + [1499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlighted, 4, 0, 15), + [1501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_highlighted, 4, 0, 15), + [1503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 4, 0, 15), + [1505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 4, 0, 15), + [1507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link_destination, 4, 0, 0), + [1509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link_destination, 4, 0, 0), + [1511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_inline_attribute, 3, 0, 22), + [1513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_inline_attribute, 3, 0, 22), + [1515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, 0, 0), SHIFT(1040), + [1518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, 0, 0), SHIFT(1130), + [1521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, 0, 0), SHIFT(975), + [1524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), + [1526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, 0, 0), SHIFT(1056), + [1529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, 0, 0), SHIFT(1072), + [1532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, 0, 0), SHIFT(1088), + [1535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, 0, 0), SHIFT(1104), + [1538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [1540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [1542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [1544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [1546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text, 2, 0, 0), SHIFT_REPEAT(452), + [1549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, 0, 0), SHIFT(992), + [1552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), + [1554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), + [1556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, 0, 0), SHIFT(1008), + [1559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_attribute, 3, 0, 0), + [1561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_attribute, 3, 0, 0), + [1563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_attribute, 4, 0, 20), + [1565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_attribute, 4, 0, 20), + [1567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element, 2, 100, 0), + [1569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__element, 2, 100, 0), + [1571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 1, 0, 1), + [1573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 1, 0, 1), + [1575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_span, 5, 100, 21), + [1577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_span, 5, 100, 21), + [1579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, 0, 0), SHIFT(1120), + [1582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element, 2, 0, 0), + [1584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__element, 2, 0, 0), + [1586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element, 2, 100, 2), + [1588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__element, 2, 100, 2), + [1590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__curly_bracket_span_fallback, 2, 0, 0), + [1592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__curly_bracket_span_fallback, 2, 0, 0), + [1594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_without_trailing_space, 1, 0, 1), + [1596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_without_trailing_space, 2, 0, 9), + [1598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [1604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [1608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [1616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [1620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [1634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [1636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(1126), + [1639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(986), + [1642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(666), + [1645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(715), + [1648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 2, 0, 0), + [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 3, 0, 0), + [1666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1, 0, 0), + [1668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_with_newline, 3, 0, 0), + [1670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 1, 0, 0), + [1672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_attribute_repeat1, 1, 0, 12), + [1674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, 0, 19), + [1676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_with_newline, 4, 0, 24), + [1678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value, 3, 0, 23), + [1680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_name, 1, 0, 0), + [1682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_text, 4, 0, 18), + [1684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_text, 4, 0, 18), + [1686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [1690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [1692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), + [1694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), + [1696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [1698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), + [1700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [1702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [1706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [1712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), + [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [1716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), + [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [1720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), + [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [1724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [1732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), + [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [1740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), + [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [1750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), + [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [1758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), + [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [1766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), + [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [1770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), + [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [1778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), + [1780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [1796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), + [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [1802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__comment_with_newline_repeat1, 2, 0, 0), SHIFT_REPEAT(710), + [1805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_with_newline_repeat1, 2, 0, 0), + [1807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), + [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [1811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_with_newline_repeat1, 1, 0, 0), + [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [1817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_description, 4, 0, 18), + [1819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_description, 4, 0, 18), + [1821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_description, 3, 0, 0), + [1823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_description, 3, 0, 0), + [1825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1, 0, 0), SHIFT(492), + [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [1832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2, 0, 0), SHIFT(505), + [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [1837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2, 0, 0), SHIFT(505), + [1840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__curly_bracket_span_begin, 1, 0, 0), SHIFT(614), + [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [1845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1, 0, 0), SHIFT(281), + [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [1850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1, 0, 0), SHIFT(281), + [1853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1, 0, 0), SHIFT(240), + [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [1858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1, 0, 0), SHIFT(240), + [1861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1, 0, 0), SHIFT(240), + [1864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1, 0, 0), SHIFT(240), + [1867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1, 0, 0), SHIFT(240), + [1870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1, 0, 0), SHIFT(240), + [1873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1, 0, 0), SHIFT(240), + [1876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [1878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1, 0, 0), SHIFT(240), + [1881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1, 0, 0), SHIFT(240), + [1884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1, 0, 0), SHIFT(240), + [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [1889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2, 0, 0), SHIFT(249), + [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [1894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__curly_bracket_span_begin, 1, 0, 0), SHIFT(623), + [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [1899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1, 0, 0), SHIFT(281), + [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [1904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1, 0, 0), SHIFT(271), + [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [1909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1, 0, 0), SHIFT(271), + [1912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1, 0, 0), SHIFT(271), + [1915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1, 0, 0), SHIFT(271), + [1918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1, 0, 0), SHIFT(271), + [1921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1, 0, 0), SHIFT(271), + [1924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1, 0, 0), SHIFT(271), + [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [1929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1, 0, 0), SHIFT(271), + [1932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1, 0, 0), SHIFT(271), + [1935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1, 0, 0), SHIFT(271), + [1938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2, 0, 0), SHIFT(284), + [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [1943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2, 0, 0), SHIFT(284), + [1946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__curly_bracket_span_begin, 1, 0, 0), SHIFT(567), + [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [1953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1, 0, 0), SHIFT(310), + [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [1958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1, 0, 0), SHIFT(310), + [1961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1, 0, 0), SHIFT(310), + [1964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1, 0, 0), SHIFT(310), + [1967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1, 0, 0), SHIFT(310), + [1970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1, 0, 0), SHIFT(310), + [1973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1, 0, 0), SHIFT(310), + [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [1978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1, 0, 0), SHIFT(310), + [1981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1, 0, 0), SHIFT(310), + [1984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1, 0, 0), SHIFT(310), + [1987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2, 0, 0), SHIFT(321), + [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [1992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2, 0, 0), SHIFT(321), + [1995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__curly_bracket_span_begin, 1, 0, 0), SHIFT(588), + [1998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [2000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1, 0, 0), SHIFT(347), + [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [2005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1, 0, 0), SHIFT(347), + [2008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1, 0, 0), SHIFT(347), + [2011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1, 0, 0), SHIFT(347), + [2014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1, 0, 0), SHIFT(347), + [2017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1, 0, 0), SHIFT(347), + [2020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1, 0, 0), SHIFT(347), + [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [2025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1, 0, 0), SHIFT(347), + [2028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1, 0, 0), SHIFT(347), + [2031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1, 0, 0), SHIFT(347), + [2034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2, 0, 0), SHIFT(358), + [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [2039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2, 0, 0), SHIFT(358), + [2042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__curly_bracket_span_begin, 1, 0, 0), SHIFT(583), + [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [2047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1, 0, 0), SHIFT(281), + [2050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1, 0, 0), SHIFT(383), + [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [2055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1, 0, 0), SHIFT(383), + [2058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1, 0, 0), SHIFT(383), + [2061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1, 0, 0), SHIFT(383), + [2064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1, 0, 0), SHIFT(383), + [2067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1, 0, 0), SHIFT(383), + [2070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1, 0, 0), SHIFT(383), + [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [2075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1, 0, 0), SHIFT(383), + [2078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1, 0, 0), SHIFT(383), + [2081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1, 0, 0), SHIFT(383), + [2084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1, 0, 0), SHIFT(281), + [2087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1, 0, 0), SHIFT(281), + [2090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2, 0, 0), SHIFT(396), + [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [2095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2, 0, 0), SHIFT(396), + [2098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__curly_bracket_span_begin, 1, 0, 0), SHIFT(564), + [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [2103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1, 0, 0), SHIFT(281), + [2106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1, 0, 0), SHIFT(419), + [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [2111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1, 0, 0), SHIFT(419), + [2114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1, 0, 0), SHIFT(419), + [2117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1, 0, 0), SHIFT(419), + [2120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1, 0, 0), SHIFT(419), + [2123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1, 0, 0), SHIFT(419), + [2126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1, 0, 0), SHIFT(419), + [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [2131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1, 0, 0), SHIFT(419), + [2134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1, 0, 0), SHIFT(419), + [2137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1, 0, 0), SHIFT(419), + [2140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2, 0, 0), SHIFT(458), + [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [2145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2, 0, 0), SHIFT(458), + [2148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2, 0, 0), SHIFT(429), + [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [2153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2, 0, 0), SHIFT(429), + [2156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__curly_bracket_span_begin, 1, 0, 0), SHIFT(611), + [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [2161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1, 0, 0), SHIFT(281), + [2164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1, 0, 0), SHIFT(532), + [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [2169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1, 0, 0), SHIFT(532), + [2172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1, 0, 0), SHIFT(532), + [2175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1, 0, 0), SHIFT(532), + [2178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1, 0, 0), SHIFT(532), + [2181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1, 0, 0), SHIFT(532), + [2184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1, 0, 0), SHIFT(532), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [2189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1, 0, 0), SHIFT(532), + [2192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1, 0, 0), SHIFT(532), + [2195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1, 0, 0), SHIFT(532), + [2198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2, 0, 0), SHIFT(544), + [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [2203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2, 0, 0), SHIFT(544), + [2206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__curly_bracket_span_begin, 1, 0, 0), SHIFT(637), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [2211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__curly_bracket_span_begin, 1, 0, 0), SHIFT(566), + [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [2216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1, 0, 0), SHIFT(308), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [2221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1, 0, 0), SHIFT(308), + [2224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1, 0, 0), SHIFT(308), + [2227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1, 0, 0), SHIFT(308), + [2230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1, 0, 0), SHIFT(308), + [2233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1, 0, 0), SHIFT(308), + [2236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1, 0, 0), SHIFT(308), + [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [2241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1, 0, 0), SHIFT(308), + [2244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1, 0, 0), SHIFT(308), + [2247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1, 0, 0), SHIFT(308), + [2250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2, 0, 0), SHIFT(354), + [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [2255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2, 0, 0), SHIFT(354), + [2258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__curly_bracket_span_begin, 1, 0, 0), SHIFT(577), + [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [2263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1, 0, 0), SHIFT(460), + [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [2268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1, 0, 0), SHIFT(460), + [2271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1, 0, 0), SHIFT(460), + [2274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1, 0, 0), SHIFT(460), + [2277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1, 0, 0), SHIFT(460), + [2280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1, 0, 0), SHIFT(460), + [2283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1, 0, 0), SHIFT(460), + [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [2288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1, 0, 0), SHIFT(460), + [2291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1, 0, 0), SHIFT(460), + [2294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1, 0, 0), SHIFT(460), + [2297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2, 0, 0), SHIFT(470), + [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [2302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 2, 0, 0), SHIFT(470), + [2305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__curly_bracket_span_begin, 1, 0, 0), SHIFT(579), + [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [2310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superscript_begin, 1, 0, 0), SHIFT(281), + [2313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1, 0, 0), SHIFT(281), + [2316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 1, 0, 0), SHIFT(492), + [2319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_strong_begin, 1, 0, 0), SHIFT(492), + [2322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_subscript_begin, 1, 0, 0), SHIFT(492), + [2325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_highlighted_begin, 1, 0, 0), SHIFT(492), + [2328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_insert_begin, 1, 0, 0), SHIFT(492), + [2331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_delete_begin, 1, 0, 0), SHIFT(492), + [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [2336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1, 0, 0), SHIFT(492), + [2339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_description_begin, 1, 0, 0), SHIFT(492), + [2342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bracketed_text_begin, 1, 0, 0), SHIFT(492), + [2345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_emphasis_begin, 2, 0, 0), SHIFT(249), + [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [2678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_label, 1, 0, 0), - [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [2726] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [2742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline, 1, 0, 0), - [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [2532] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [2534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline, 1, 0, 1), + [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [2632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_label, 1, 0, 0), + [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key, 1, 0, 0), + [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), }; enum ts_external_scanner_symbol_identifiers { @@ -41270,7 +42139,7 @@ static const bool ts_external_scanner_states[52][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__curly_bracket_span_end] = true, }, [21] = { - [ts_external_token__parens_span_mark_begin] = true, + [ts_external_token__superscript_mark_begin] = true, [ts_external_token__in_fallback] = true, }, [22] = { @@ -41286,91 +42155,91 @@ static const bool ts_external_scanner_states[52][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__in_fallback] = true, }, [25] = { - [ts_external_token__superscript_mark_begin] = true, + [ts_external_token__highlighted_mark_begin] = true, [ts_external_token__in_fallback] = true, }, [26] = { - [ts_external_token__subscript_mark_begin] = true, + [ts_external_token__insert_mark_begin] = true, [ts_external_token__in_fallback] = true, }, [27] = { - [ts_external_token__highlighted_mark_begin] = true, + [ts_external_token__subscript_mark_begin] = true, [ts_external_token__in_fallback] = true, }, [28] = { - [ts_external_token__insert_mark_begin] = true, + [ts_external_token__delete_mark_begin] = true, [ts_external_token__in_fallback] = true, }, [29] = { - [ts_external_token__delete_mark_begin] = true, + [ts_external_token__square_bracket_span_mark_begin] = true, [ts_external_token__in_fallback] = true, }, [30] = { - [ts_external_token__square_bracket_span_mark_begin] = true, + [ts_external_token__parens_span_mark_begin] = true, [ts_external_token__in_fallback] = true, }, [31] = { - [ts_external_token_highlighted_end] = true, + [ts_external_token_subscript_end] = true, }, [32] = { - [ts_external_token__strong_mark_begin] = true, + [ts_external_token__verbatim_end] = true, }, [33] = { - [ts_external_token__verbatim_end] = true, + [ts_external_token_emphasis_end] = true, }, [34] = { - [ts_external_token__parens_span_end] = true, + [ts_external_token_strong_end] = true, }, [35] = { - [ts_external_token__square_bracket_span_end] = true, + [ts_external_token_superscript_end] = true, }, [36] = { - [ts_external_token_emphasis_end] = true, + [ts_external_token_highlighted_end] = true, }, [37] = { - [ts_external_token_strong_end] = true, + [ts_external_token_insert_end] = true, }, [38] = { - [ts_external_token_superscript_end] = true, + [ts_external_token_delete_end] = true, }, [39] = { - [ts_external_token_subscript_end] = true, + [ts_external_token__square_bracket_span_end] = true, }, [40] = { - [ts_external_token__superscript_mark_begin] = true, + [ts_external_token__insert_mark_begin] = true, }, [41] = { - [ts_external_token_insert_end] = true, + [ts_external_token__delete_mark_begin] = true, }, [42] = { - [ts_external_token__subscript_mark_begin] = true, + [ts_external_token__parens_span_end] = true, }, [43] = { - [ts_external_token_delete_end] = true, + [ts_external_token__emphasis_mark_begin] = true, }, [44] = { - [ts_external_token__highlighted_mark_begin] = true, + [ts_external_token__parens_span_mark_begin] = true, }, [45] = { - [ts_external_token__insert_mark_begin] = true, + [ts_external_token__square_bracket_span_mark_begin] = true, }, [46] = { - [ts_external_token__parens_span_mark_begin] = true, + [ts_external_token__verbatim_content] = true, }, [47] = { - [ts_external_token__delete_mark_begin] = true, + [ts_external_token__curly_bracket_span_mark_begin] = true, }, [48] = { - [ts_external_token__square_bracket_span_mark_begin] = true, + [ts_external_token__strong_mark_begin] = true, }, [49] = { - [ts_external_token__verbatim_content] = true, + [ts_external_token__superscript_mark_begin] = true, }, [50] = { - [ts_external_token__curly_bracket_span_mark_begin] = true, + [ts_external_token__subscript_mark_begin] = true, }, [51] = { - [ts_external_token__emphasis_mark_begin] = true, + [ts_external_token__highlighted_mark_begin] = true, }, }; diff --git a/tree-sitter-djot-inline/src/scanner.c b/tree-sitter-djot-inline/src/scanner.c index e8918f2..8585b1c 100644 --- a/tree-sitter-djot-inline/src/scanner.c +++ b/tree-sitter-djot-inline/src/scanner.c @@ -95,9 +95,14 @@ typedef struct { uint8_t state; } Scanner; -// States stored by bits in `state` on scanner. -static const uint8_t STATE_BLOCK_BRACKET = 1; -static const uint8_t STATE_FALLBACK_BRACKET_INSIDE_ELEMENT = 1 << 1; +// Tracks if a `[` starts an inline link. +// It's used to prune branches where it does not, fixing precedence +// issues with multiple elements inside the destination. +static const uint8_t STATE_BRACKET_STARTS_INLINE_LINK = 1 << 0; +// Tracks if a `[` starts a span (the Djot element). +// It's used to prune branches where it does not, fixing precedence +// issues where the span wasn't chosen despite being closed first. +static const uint8_t STATE_BRACKET_STARTS_SPAN = 1 << 1; #ifdef DEBUG #include @@ -440,44 +445,68 @@ static bool scan_span_end_marker(TSLexer *lexer, ElementType element) { } } -static bool scan_inline_link_destination(TSLexer *lexer, Element *top_element) { - // The `(` has already been scanned, now we should check for - // an ending `)`. It can also be escaped. +// Scan until `c`, aborting if an ending marker for the `top` element is found. +static bool scan_until(TSLexer *lexer, char c, ElementType *top) { while (!lexer->eof(lexer)) { - switch (lexer->lookahead) { - case '\\': - advance(lexer); - break; - case ')': + if (top && scan_span_end_marker(lexer, *top)) { + return false; + } + if (lexer->lookahead == c) { return true; - default: - break; + } else if (lexer->lookahead == '\\') { + advance(lexer); } advance(lexer); } return false; } -static bool open_bracket_before_closing_marker(TSLexer *lexer, - ElementType element) { - // The `(` has already been scanned, now we should check for - // an ending `)`. It can also be escaped. - while (!lexer->eof(lexer)) { - if (scan_span_end_marker(lexer, element)) { - return false; +// Updates lookahead states that are used to block the acceptance of +// the fallback characters `(` and `{` if there's a valid inline link +// or span to be chosen. +static void update_square_bracket_lookahead_states(Scanner *s, TSLexer *lexer, + Element *top) { + // Reset flags so we can set them later if the scanning succeeds. + s->state &= ~STATE_BRACKET_STARTS_INLINE_LINK; + s->state &= ~STATE_BRACKET_STARTS_SPAN; + + ElementType *top_type = NULL; + if (top) { + top_type = &top->type; + } + + // Scan the `[some text]` span. + if (!scan_until(lexer, ']', top_type)) { + return; + } + advance(lexer); + + if (lexer->lookahead == '(') { + // An inline link may follow. + if (scan_until(lexer, ')', top_type)) { + s->state |= STATE_BRACKET_STARTS_INLINE_LINK; } - switch (lexer->lookahead) { - case '\\': - advance(lexer); - break; - case '[': - return true; - default: - break; + } else if (lexer->lookahead == '{') { + // An inline attribute my follow, turning it into the Djot `span` type. + // + // Please note that we're not parsing the actual inline attribute + // that may have false positives. + // + // An invalid attribute may error out whole tree-sitter parsing + // because we're actively blocking fallback characters, preventing + // the parser from falling back to a paragraph. + // + // For a more correct implementation we should scan the inline attribute + // in the same way as defined in `grammar.js`. + if (scan_until(lexer, '}', top_type)) { + s->state |= STATE_BRACKET_STARTS_SPAN; } - advance(lexer); } - return false; +} + +static bool open_bracket_before_closing_marker(TSLexer *lexer, + ElementType element) { + return scan_until(lexer, '[', &element); } static bool mark_span_begin(Scanner *s, TSLexer *lexer, @@ -498,32 +527,34 @@ static bool mark_span_begin(Scanner *s, TSLexer *lexer, // symbol if we can scan ahead and see that we should be able to parse it as // a link, stopping the contained emphasis from being considered. // - // Additionally `fallback_bracket_inside_element` is used to allow us - // to detect an element ending marker inside the destination - // and allow that. For example here: + // This is done here at `[` as a fallback character so when we reach `(` + // we can abort and prune that branch (since we should parse it as a link). + if (element == SQUARE_BRACKET_SPAN) { + update_square_bracket_lookahead_states(s, lexer, top); + } + + // This is where we've reached the `(` in: // - // *[x](y*) + // [x](a_b_c_d_e) // - if (element == PARENS_SPAN) { - // Should scan ahead and if there's a valid inline link we should not - // allow the fallback to be parsed (favoring the link). - if (!(s->state & STATE_FALLBACK_BRACKET_INSIDE_ELEMENT) && - scan_inline_link_destination(lexer, top)) { - return false; - } - } - if (top && element == SQUARE_BRACKET_SPAN) { - s->state |= STATE_FALLBACK_BRACKET_INSIDE_ELEMENT; + // and if `STATE_BRACKET_CAN_START_INLINE_LINK` is true then we should prune + // the branch and instead treat it as a link. + if (element == PARENS_SPAN && + (s->state & STATE_BRACKET_STARTS_INLINE_LINK)) { + return false; } - if (open_bracket_before_closing_marker(lexer, element)) { - s->state |= STATE_BLOCK_BRACKET; + // For spans `[text]{.class}` we use the same mechanism to solve precedence + // in this example: + // + // [_]{.c}_ + // + // Where we'll block at `{` if we should instead treat it as a span. + if (element == CURLY_BRACKET_SPAN && + (s->state & STATE_BRACKET_STARTS_SPAN)) { + return false; } - // Set `block_bracket` if we find a `]` before we find the closing marker. - // Then deny opening `[` if `block_bracket` is true. - // Reset `block_bracket` when closing an element. - // If there's multiple valid opening spans, for example: // // {_ {_ a_ @@ -551,13 +582,13 @@ static bool mark_span_begin(Scanner *s, TSLexer *lexer, lexer->result_symbol = token; return true; } else { - if (element == SQUARE_BRACKET_SPAN && (s->state & STATE_BLOCK_BRACKET)) { - return false; + // Reset blocking states when the correct branch was chosen. + if (element == PARENS_SPAN) { + s->state &= ~STATE_BRACKET_STARTS_INLINE_LINK; + } else if (element == CURLY_BRACKET_SPAN) { + s->state &= ~STATE_BRACKET_STARTS_SPAN; } - s->state &= ~STATE_BLOCK_BRACKET; - s->state &= ~STATE_FALLBACK_BRACKET_INSIDE_ELEMENT; - lexer->mark_end(lexer); lexer->result_symbol = token; push_element(s, element, 0); return true; @@ -834,9 +865,12 @@ static char *element_type_s(ElementType t) { } static void dump_scanner(Scanner *s) { - printf("fallback_bracket_inside_element: %u\n", - s->state & STATE_FALLBACK_BRACKET_INSIDE_ELEMENT); - printf("block_bracket: %u\n", s->state & STATE_BLOCK_BRACKET); + if (s->state & STATE_BRACKET_STARTS_SPAN) { + printf("STATE_BRACKET_STARTS_SPAN"); + } + if (s->state & STATE_BRACKET_STARTS_INLINE_LINK) { + printf("STATE_BRACKET_STARTS_INLINE_LINK"); + } printf("--- Open elements: %u (last -> first)\n", s->open_elements->size); for (size_t i = 0; i < s->open_elements->size; ++i) { Element *e = *array_get(s->open_elements, i); diff --git a/tree-sitter-djot-inline/test/corpus/syntax.txt b/tree-sitter-djot-inline/test/corpus/syntax.txt index c1c6ad9..507a9f4 100644 --- a/tree-sitter-djot-inline/test/corpus/syntax.txt +++ b/tree-sitter-djot-inline/test/corpus/syntax.txt @@ -1474,26 +1474,26 @@ One [two three]{.class =============================================================================== Span: Precedence =============================================================================== -*[*]{.c} Generates string then an inline attribute +_[_]{.c} Generates string then an inline attribute -[*]{.c*} The Djot playground doesn't handle this case properly +[_]{.c_} The Djot playground doesn't handle this case properly either ------------------------------------------------------------------------------- (inline - (strong - (strong_begin) + (emphasis + (emphasis_begin) (content) - (strong_end)) + (emphasis_end)) (inline_attribute (args (class))) - (strong - (strong_begin) + (span (content) - (strong_end))) + (inline_attribute + (args + (class))))) =============================================================================== Span: Precedence prefer span -:skip =============================================================================== [_]{.c}_ @@ -1669,6 +1669,24 @@ Strong: no space next (inline) +=============================================================================== +Inline: standalone () +=============================================================================== +() + +------------------------------------------------------------------------------- + +(inline) + +=============================================================================== +Inline: space in inline link +=============================================================================== +[x] (/u) + +------------------------------------------------------------------------------- + +(inline) + =============================================================================== Inline: broken things =============================================================================== From e10ad91034e111620e958751804a2010f387d8df Mon Sep 17 00:00:00 2001 From: Jonas Hietala Date: Thu, 16 Jan 2025 20:11:24 +0100 Subject: [PATCH 34/46] fix: Remove unused verbatim field --- tree-sitter-djot/src/scanner.c | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/tree-sitter-djot/src/scanner.c b/tree-sitter-djot/src/scanner.c index 9171243..522d667 100644 --- a/tree-sitter-djot/src/scanner.c +++ b/tree-sitter-djot/src/scanner.c @@ -126,8 +126,6 @@ typedef struct { TokenType delayed_token; uint8_t delayed_token_width; - // The number of ` we are currently matching, or 0 when not inside. - uint8_t verbatim_tick_count; // What's our current block quote level? uint8_t block_quote_level; @@ -1282,7 +1280,7 @@ static bool parse_heading(Scanner *s, TSLexer *lexer, Block *top = peek_block(s); // Avoids consuming `#` inside code/verbatim contexts. - if ((top && top->type == CODE_BLOCK) || s->verbatim_tick_count > 0) { + if ((top && top->type == CODE_BLOCK)) { return false; } @@ -1736,7 +1734,6 @@ void init(Scanner *s) { s->blocks_to_close = 0; s->delayed_token = IGNORED; s->delayed_token_width = 0; - s->verbatim_tick_count = 0; s->block_quote_level = 0; s->indent = 0; } @@ -1764,7 +1761,6 @@ unsigned tree_sitter_djot_external_scanner_serialize(void *payload, buffer[size++] = (char)s->blocks_to_close; buffer[size++] = (char)s->delayed_token; buffer[size++] = (char)s->delayed_token_width; - buffer[size++] = (char)s->verbatim_tick_count; buffer[size++] = (char)s->block_quote_level; buffer[size++] = (char)s->indent; @@ -1786,7 +1782,6 @@ void tree_sitter_djot_external_scanner_deserialize(void *payload, char *buffer, s->blocks_to_close = (uint8_t)buffer[size++]; s->delayed_token = (TokenType)buffer[size++]; s->delayed_token_width = (uint8_t)buffer[size++]; - s->verbatim_tick_count = (uint8_t)buffer[size++]; s->block_quote_level = (uint8_t)buffer[size++]; s->indent = (uint8_t)buffer[size++]; @@ -1971,7 +1966,6 @@ static void dump_scanner(Scanner *s) { printf(" delayed_token: %s\n", token_type_s(s->delayed_token)); printf(" delayed_token_width: %d\n", s->delayed_token_width); } - printf(" verbatim_tick_count: %u\n", s->verbatim_tick_count); printf(" block_quote_level: %u\n", s->block_quote_level); printf(" indent: %u\n", s->indent); printf("===\n"); From d7132b76eb15843688914a6fe3b40c64c16fcde8 Mon Sep 17 00:00:00 2001 From: Jonas Hietala Date: Wed, 22 Jan 2025 21:28:30 +0100 Subject: [PATCH 35/46] fix: Prevent content from jumping out of lists --- tree-sitter-djot/src/scanner.c | 40 ++++-- tree-sitter-djot/test/corpus/syntax.txt | 165 ++++++++++++++++++++++++ 2 files changed, 195 insertions(+), 10 deletions(-) diff --git a/tree-sitter-djot/src/scanner.c b/tree-sitter-djot/src/scanner.c index 522d667..0493561 100644 --- a/tree-sitter-djot/src/scanner.c +++ b/tree-sitter-djot/src/scanner.c @@ -126,7 +126,6 @@ typedef struct { TokenType delayed_token; uint8_t delayed_token_width; - // What's our current block quote level? uint8_t block_quote_level; @@ -395,16 +394,35 @@ static bool handle_blocks_to_close(Scanner *s, TSLexer *lexer) { // Close open list if list markers are different. static bool parse_list_item_continuation(Scanner *s, TSLexer *lexer, bool is_newline) { - if (is_newline) { + Block *list = find_list(s); + if (!list) { return false; } - Block *list = find_list(s); - if (list && s->indent >= list->level) { - lexer->mark_end(lexer); - lexer->result_symbol = LIST_ITEM_CONTINUATION; - return true; + + // A newline may be encountered when a block is wedged inside a list. + // For example: + // + // - Start + // + // [link_def]: /url + // -> + // Another paragraph + // + // Then list item continuation should scan until `A` instead + // of returning false at the newline before (leading to the paragraph + // falling outside of the list content). + if (is_newline) { + advance(s, lexer); + s->indent = consume_whitespace(s, lexer); } - return false; + + if (s->indent < list->level) { + return false; + } + + lexer->mark_end(lexer); + lexer->result_symbol = LIST_ITEM_CONTINUATION; + return true; } // Close a block inside a list. @@ -987,6 +1005,8 @@ static uint8_t consume_line_with_char_or_whitespace(Scanner *s, TSLexer *lexer, } else if (lexer->lookahead == '\r') { advance(s, lexer); } else if (lexer->lookahead == '\n') { + // Blocks should consume the ending newline. + advance(s, lexer); return seen; } else { return 0; @@ -1875,8 +1895,8 @@ static char *token_type_s(TokenType t) { return "THEMATIC_BREAK_DASH"; case THEMATIC_BREAK_STAR: return "THEMATIC_BREAK_STAR"; - case FOOTNOTE_BEGIN: - return "FOOTNOTE_BEGIN"; + case FOOTNOTE_MARK_BEGIN: + return "FOOTNOTE_MARK_BEGIN"; case FOOTNOTE_END: return "FOOTNOTE_END"; case TABLE_CAPTION_BEGIN: diff --git a/tree-sitter-djot/test/corpus/syntax.txt b/tree-sitter-djot/test/corpus/syntax.txt index 8658307..d49a3b2 100644 --- a/tree-sitter-djot/test/corpus/syntax.txt +++ b/tree-sitter-djot/test/corpus/syntax.txt @@ -2464,6 +2464,171 @@ List: Unclosed List in Div (list_item_content (paragraph (inline)))))))) +=============================================================================== +List: Nested divs with block attributes +=============================================================================== +- x + + {#1} + ::: + a + ::: + + {#2} + ::: + b + ::: + +------------------------------------------------------------------------------- +(document + (list + (list_item + (list_marker_dash) + (list_item_content + (paragraph (inline)) + (block_attribute (args (identifier))) + (div + (div_marker_begin) + (content (paragraph (inline))) + (div_marker_end)) + (block_attribute (args (identifier))) + (div + (div_marker_begin) + (content (paragraph (inline))) + (div_marker_end)))))) + +=============================================================================== +List: Nested code block between paragraphs +=============================================================================== +- a + + ``` + x + ``` + + c + +------------------------------------------------------------------------------- +(document + (list + (list_item + (list_marker_dash) + (list_item_content + (paragraph (inline)) + (code_block + (code_block_marker_begin) + (code) + (code_block_marker_end)) + (paragraph (inline)))))) + +=============================================================================== +List: Thematic break between paragraphs +=============================================================================== +- a + + * * * + + b + +------------------------------------------------------------------------------- +(document + (list + (list_item + (list_marker_dash) + (list_item_content + (paragraph (inline)) + (thematic_break) + (paragraph (inline)))))) + +=============================================================================== +List: Quote between paragraphs +=============================================================================== +- a + + > c + + b + +------------------------------------------------------------------------------- +(document + (list + (list_item + (list_marker_dash) + (list_item_content + (paragraph (inline)) + (block_quote + (block_quote_marker) + (content + (paragraph (inline)))) + (paragraph (inline)))))) + +=============================================================================== +List: Link definition between paragraphs +=============================================================================== +- a + + [def]: /u + + b + +------------------------------------------------------------------------------- +(document + (list + (list_item + (list_marker_dash) + (list_item_content + (paragraph (inline)) + (link_reference_definition + (link_label (inline)) + (link_destination)) + (paragraph (inline)))))) + +=============================================================================== +List: Footnote def between paragraphs +=============================================================================== +- a + + [^def]: Footnote + + b + +------------------------------------------------------------------------------- +(document + (list + (list_item + (list_marker_dash) + (list_item_content + (paragraph (inline)) + (footnote + (footnote_marker_begin) + (reference_label) + (footnote_marker_end) + (footnote_content + (paragraph (inline)))) + (paragraph (inline)))))) + +=============================================================================== +List: Table between paragraphs +=============================================================================== +- a + + | a | b | + + b + +------------------------------------------------------------------------------- +(document + (list + (list_item + (list_marker_dash) + (list_item_content + (paragraph (inline)) + (table + (table_row + (table_cell (inline)) + (table_cell (inline)))) + (paragraph (inline)))))) + =============================================================================== Table: single row =============================================================================== From 225169f297458935ad41c716e497095ecf2214de Mon Sep 17 00:00:00 2001 From: Jonas Hietala Date: Wed, 22 Jan 2025 21:41:32 +0100 Subject: [PATCH 36/46] test: Two more broken list cases --- tree-sitter-djot/test/corpus/syntax.txt | 45 +++++++++++++++++++++++++ 1 file changed, 45 insertions(+) diff --git a/tree-sitter-djot/test/corpus/syntax.txt b/tree-sitter-djot/test/corpus/syntax.txt index d49a3b2..4343a5e 100644 --- a/tree-sitter-djot/test/corpus/syntax.txt +++ b/tree-sitter-djot/test/corpus/syntax.txt @@ -2616,6 +2616,51 @@ List: Table between paragraphs b +------------------------------------------------------------------------------- +(document + (list + (list_item + (list_marker_dash) + (list_item_content + (paragraph (inline)) + (table + (table_row + (table_cell (inline)) + (table_cell (inline)))) + (paragraph (inline)))))) + +=============================================================================== +List: Extra space between +=============================================================================== +- a + + +- c + +------------------------------------------------------------------------------- +(document + (list + (list_item + (list_marker_dash) + (list_item_content + (paragraph (inline)) + (table + (table_row + (table_cell (inline)) + (table_cell (inline)))) + (paragraph (inline)))))) + +=============================================================================== +List: Code in list item +=============================================================================== +- b + + ``` + x + ``` + +- c + ------------------------------------------------------------------------------- (document (list From aeb3fc3baf645118aa5baccc5ec27440b77501fa Mon Sep 17 00:00:00 2001 From: Jonas Hietala Date: Thu, 23 Jan 2025 08:42:47 +0100 Subject: [PATCH 37/46] fix: Better spacer detection inside lists --- tree-sitter-djot/grammar.js | 12 + tree-sitter-djot/src/grammar.json | 12 + tree-sitter-djot/src/parser.c | 33359 ++++++++++++---------- tree-sitter-djot/src/scanner.c | 33 +- tree-sitter-djot/test/corpus/syntax.txt | 44 +- 5 files changed, 18183 insertions(+), 15277 deletions(-) diff --git a/tree-sitter-djot/grammar.js b/tree-sitter-djot/grammar.js index 6df6d3f..74a3f11 100644 --- a/tree-sitter-djot/grammar.js +++ b/tree-sitter-djot/grammar.js @@ -330,12 +330,14 @@ module.exports = grammar({ list_item_content: ($) => seq( $._block_with_heading, + $._list_item_content_spacer, optional( repeat( seq( optional($._block_quote_prefix), $._list_item_continuation, $._block_with_heading, + $._list_item_content_spacer, ), ), ), @@ -667,6 +669,16 @@ module.exports = grammar({ // `_list_item_end` is responsible for closing an open list, // if indent or list markers are mismatched. $._list_item_end, + // `_list_item_content_spacer` is either a blankline separating + // list content or a zero-width marker if content continues immediately. + // + // - a + // <- spacer + // ``` + // x + // ``` + // b <- zero-width spacer (followed by a list item continuation). + $._list_item_content_spacer, // Paragraphs are anonymous blocks and open blocks aren't tracked by the // external scanner. `close_paragraph` is a marker that's responsible // for closing the paragraph early, for example on a div marker. diff --git a/tree-sitter-djot/src/grammar.json b/tree-sitter-djot/src/grammar.json index 3036588..3f0d7fd 100644 --- a/tree-sitter-djot/src/grammar.json +++ b/tree-sitter-djot/src/grammar.json @@ -1416,6 +1416,10 @@ "type": "SYMBOL", "name": "_block_with_heading" }, + { + "type": "SYMBOL", + "name": "_list_item_content_spacer" + }, { "type": "CHOICE", "members": [ @@ -1443,6 +1447,10 @@ { "type": "SYMBOL", "name": "_block_with_heading" + }, + { + "type": "SYMBOL", + "name": "_list_item_content_spacer" } ] } @@ -2876,6 +2884,10 @@ "type": "SYMBOL", "name": "_list_item_end" }, + { + "type": "SYMBOL", + "name": "_list_item_content_spacer" + }, { "type": "SYMBOL", "name": "_close_paragraph" diff --git a/tree-sitter-djot/src/parser.c b/tree-sitter-djot/src/parser.c index ae58004..c68a639 100644 --- a/tree-sitter-djot/src/parser.c +++ b/tree-sitter-djot/src/parser.c @@ -5,12 +5,12 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 1133 -#define LARGE_STATE_COUNT 64 -#define SYMBOL_COUNT 205 +#define STATE_COUNT 1319 +#define LARGE_STATE_COUNT 71 +#define SYMBOL_COUNT 207 #define ALIAS_COUNT 9 -#define TOKEN_COUNT 77 -#define EXTERNAL_TOKEN_COUNT 45 +#define TOKEN_COUNT 78 +#define EXTERNAL_TOKEN_COUNT 46 #define FIELD_COUNT 15 #define MAX_ALIAS_SEQUENCE_LENGTH 8 #define PRODUCTION_ID_COUNT 36 @@ -81,154 +81,156 @@ enum ts_symbol_identifiers { sym_list_marker_upper_roman_parens = 63, sym__list_item_continuation = 64, sym__list_item_end = 65, - sym__close_paragraph = 66, - sym__block_quote_begin = 67, - sym__block_quote_continuation = 68, - sym__thematic_break_dash = 69, - sym__thematic_break_star = 70, - sym__footnote_mark_begin = 71, - sym__footnote_end = 72, - sym__table_caption_begin = 73, - sym__table_caption_end = 74, - sym__in_fallback = 75, - sym__error = 76, - sym_document = 77, - sym_frontmatter = 78, - sym_frontmatter_content = 79, - sym__block_with_section = 80, - sym__block_with_heading = 81, - sym__block_element = 82, - sym_section = 83, - sym_heading = 84, - sym__heading_content = 85, - sym_list = 86, - sym__list_dash = 87, - sym__list_item_dash = 88, - sym__list_plus = 89, - sym__list_item_plus = 90, - sym__list_star = 91, - sym__list_item_star = 92, - sym__list_task = 93, - sym__list_item_task = 94, - sym_list_marker_task = 95, - sym_checked = 96, - sym_unchecked = 97, - sym__list_definition = 98, - sym__list_item_definition = 99, - sym__list_decimal_period = 100, - sym__list_item_decimal_period = 101, - sym__list_decimal_paren = 102, - sym__list_item_decimal_paren = 103, - sym__list_decimal_parens = 104, - sym__list_item_decimal_parens = 105, - sym__list_lower_alpha_period = 106, - sym__list_item_lower_alpha_period = 107, - sym__list_lower_alpha_paren = 108, - sym__list_item_lower_alpha_paren = 109, - sym__list_lower_alpha_parens = 110, - sym__list_item_lower_alpha_parens = 111, - sym__list_upper_alpha_period = 112, - sym__list_item_upper_alpha_period = 113, - sym__list_upper_alpha_paren = 114, - sym__list_item_upper_alpha_paren = 115, - sym__list_upper_alpha_parens = 116, - sym__list_item_upper_alpha_parens = 117, - sym__list_lower_roman_period = 118, - sym__list_item_lower_roman_period = 119, - sym__list_lower_roman_paren = 120, - sym__list_item_lower_roman_paren = 121, - sym__list_lower_roman_parens = 122, - sym__list_item_lower_roman_parens = 123, - sym__list_upper_roman_period = 124, - sym__list_item_upper_roman_period = 125, - sym__list_upper_roman_paren = 126, - sym__list_item_upper_roman_paren = 127, - sym__list_upper_roman_parens = 128, - sym__list_item_upper_roman_parens = 129, - sym_list_item_content = 130, - sym_table = 131, - sym__table_content = 132, - sym_table_separator = 133, - sym_table_row = 134, - sym_table_cell = 135, - sym_table_caption = 136, - sym_footnote = 137, - sym_footnote_marker_begin = 138, - sym_footnote_content = 139, - sym_div = 140, - sym__div_marker_begin = 141, - sym_class_name = 142, - sym_code_block = 143, - sym_raw_block = 144, - sym_raw_block_info = 145, - sym_code = 146, - sym__line = 147, - sym_thematic_break = 148, - sym_block_quote = 149, - sym__block_quote_content = 150, - sym__block_quote_prefix = 151, - sym_link_reference_definition = 152, - sym_link_label = 153, - sym_block_attribute = 154, - sym_class = 155, - sym_identifier = 156, - sym_key_value = 157, - sym_key = 158, - sym_value = 159, - sym__paragraph = 160, - sym__paragraph_content = 161, - sym__paragraph_inline_content = 162, - sym__one_or_two_newlines = 163, - sym__inline = 164, - sym__inline_line = 165, - sym__symbol_fallback = 166, - sym_reference_label = 167, - sym__comment_no_newline = 168, - aux_sym_document_repeat1 = 169, - aux_sym_frontmatter_content_repeat1 = 170, - aux_sym__heading_content_repeat1 = 171, - aux_sym__list_dash_repeat1 = 172, - aux_sym__list_plus_repeat1 = 173, - aux_sym__list_star_repeat1 = 174, - aux_sym__list_task_repeat1 = 175, - aux_sym__list_definition_repeat1 = 176, - aux_sym__list_item_definition_repeat1 = 177, - aux_sym__list_decimal_period_repeat1 = 178, - aux_sym__list_decimal_paren_repeat1 = 179, - aux_sym__list_decimal_parens_repeat1 = 180, - aux_sym__list_lower_alpha_period_repeat1 = 181, - aux_sym__list_lower_alpha_paren_repeat1 = 182, - aux_sym__list_lower_alpha_parens_repeat1 = 183, - aux_sym__list_upper_alpha_period_repeat1 = 184, - aux_sym__list_upper_alpha_paren_repeat1 = 185, - aux_sym__list_upper_alpha_parens_repeat1 = 186, - aux_sym__list_lower_roman_period_repeat1 = 187, - aux_sym__list_lower_roman_paren_repeat1 = 188, - aux_sym__list_lower_roman_parens_repeat1 = 189, - aux_sym__list_upper_roman_period_repeat1 = 190, - aux_sym__list_upper_roman_paren_repeat1 = 191, - aux_sym__list_upper_roman_parens_repeat1 = 192, - aux_sym_table_repeat1 = 193, - aux_sym_table_separator_repeat1 = 194, - aux_sym_table_row_repeat1 = 195, - aux_sym_table_caption_repeat1 = 196, - aux_sym_footnote_content_repeat1 = 197, - aux_sym_code_repeat1 = 198, - aux_sym__block_quote_content_repeat1 = 199, - aux_sym__block_quote_prefix_repeat1 = 200, - aux_sym_block_attribute_repeat1 = 201, - aux_sym__paragraph_inline_content_repeat1 = 202, - aux_sym__inline_repeat1 = 203, - aux_sym__comment_no_newline_repeat1 = 204, - alias_sym_args = 205, - anon_alias_sym_class = 206, - alias_sym_definition = 207, - alias_sym_language_marker = 208, - alias_sym_paragraph = 209, - alias_sym_raw_block_marker_begin = 210, - alias_sym_raw_block_marker_end = 211, - alias_sym_section_content = 212, - alias_sym_table_header = 213, + sym__list_item_content_spacer = 66, + sym__close_paragraph = 67, + sym__block_quote_begin = 68, + sym__block_quote_continuation = 69, + sym__thematic_break_dash = 70, + sym__thematic_break_star = 71, + sym__footnote_mark_begin = 72, + sym__footnote_end = 73, + sym__table_caption_begin = 74, + sym__table_caption_end = 75, + sym__in_fallback = 76, + sym__error = 77, + sym_document = 78, + sym_frontmatter = 79, + sym_frontmatter_content = 80, + sym__block_with_section = 81, + sym__block_with_heading = 82, + sym__block_element = 83, + sym_section = 84, + sym_heading = 85, + sym__heading_content = 86, + sym_list = 87, + sym__list_dash = 88, + sym__list_item_dash = 89, + sym__list_plus = 90, + sym__list_item_plus = 91, + sym__list_star = 92, + sym__list_item_star = 93, + sym__list_task = 94, + sym__list_item_task = 95, + sym_list_marker_task = 96, + sym_checked = 97, + sym_unchecked = 98, + sym__list_definition = 99, + sym__list_item_definition = 100, + sym__list_decimal_period = 101, + sym__list_item_decimal_period = 102, + sym__list_decimal_paren = 103, + sym__list_item_decimal_paren = 104, + sym__list_decimal_parens = 105, + sym__list_item_decimal_parens = 106, + sym__list_lower_alpha_period = 107, + sym__list_item_lower_alpha_period = 108, + sym__list_lower_alpha_paren = 109, + sym__list_item_lower_alpha_paren = 110, + sym__list_lower_alpha_parens = 111, + sym__list_item_lower_alpha_parens = 112, + sym__list_upper_alpha_period = 113, + sym__list_item_upper_alpha_period = 114, + sym__list_upper_alpha_paren = 115, + sym__list_item_upper_alpha_paren = 116, + sym__list_upper_alpha_parens = 117, + sym__list_item_upper_alpha_parens = 118, + sym__list_lower_roman_period = 119, + sym__list_item_lower_roman_period = 120, + sym__list_lower_roman_paren = 121, + sym__list_item_lower_roman_paren = 122, + sym__list_lower_roman_parens = 123, + sym__list_item_lower_roman_parens = 124, + sym__list_upper_roman_period = 125, + sym__list_item_upper_roman_period = 126, + sym__list_upper_roman_paren = 127, + sym__list_item_upper_roman_paren = 128, + sym__list_upper_roman_parens = 129, + sym__list_item_upper_roman_parens = 130, + sym_list_item_content = 131, + sym_table = 132, + sym__table_content = 133, + sym_table_separator = 134, + sym_table_row = 135, + sym_table_cell = 136, + sym_table_caption = 137, + sym_footnote = 138, + sym_footnote_marker_begin = 139, + sym_footnote_content = 140, + sym_div = 141, + sym__div_marker_begin = 142, + sym_class_name = 143, + sym_code_block = 144, + sym_raw_block = 145, + sym_raw_block_info = 146, + sym_code = 147, + sym__line = 148, + sym_thematic_break = 149, + sym_block_quote = 150, + sym__block_quote_content = 151, + sym__block_quote_prefix = 152, + sym_link_reference_definition = 153, + sym_link_label = 154, + sym_block_attribute = 155, + sym_class = 156, + sym_identifier = 157, + sym_key_value = 158, + sym_key = 159, + sym_value = 160, + sym__paragraph = 161, + sym__paragraph_content = 162, + sym__paragraph_inline_content = 163, + sym__one_or_two_newlines = 164, + sym__inline = 165, + sym__inline_line = 166, + sym__symbol_fallback = 167, + sym_reference_label = 168, + sym__comment_no_newline = 169, + aux_sym_document_repeat1 = 170, + aux_sym_frontmatter_content_repeat1 = 171, + aux_sym__heading_content_repeat1 = 172, + aux_sym__list_dash_repeat1 = 173, + aux_sym__list_plus_repeat1 = 174, + aux_sym__list_star_repeat1 = 175, + aux_sym__list_task_repeat1 = 176, + aux_sym__list_definition_repeat1 = 177, + aux_sym__list_item_definition_repeat1 = 178, + aux_sym__list_decimal_period_repeat1 = 179, + aux_sym__list_decimal_paren_repeat1 = 180, + aux_sym__list_decimal_parens_repeat1 = 181, + aux_sym__list_lower_alpha_period_repeat1 = 182, + aux_sym__list_lower_alpha_paren_repeat1 = 183, + aux_sym__list_lower_alpha_parens_repeat1 = 184, + aux_sym__list_upper_alpha_period_repeat1 = 185, + aux_sym__list_upper_alpha_paren_repeat1 = 186, + aux_sym__list_upper_alpha_parens_repeat1 = 187, + aux_sym__list_lower_roman_period_repeat1 = 188, + aux_sym__list_lower_roman_paren_repeat1 = 189, + aux_sym__list_lower_roman_parens_repeat1 = 190, + aux_sym__list_upper_roman_period_repeat1 = 191, + aux_sym__list_upper_roman_paren_repeat1 = 192, + aux_sym__list_upper_roman_parens_repeat1 = 193, + aux_sym_list_item_content_repeat1 = 194, + aux_sym_table_repeat1 = 195, + aux_sym_table_separator_repeat1 = 196, + aux_sym_table_row_repeat1 = 197, + aux_sym_table_caption_repeat1 = 198, + aux_sym_footnote_content_repeat1 = 199, + aux_sym_code_repeat1 = 200, + aux_sym__block_quote_content_repeat1 = 201, + aux_sym__block_quote_prefix_repeat1 = 202, + aux_sym_block_attribute_repeat1 = 203, + aux_sym__paragraph_inline_content_repeat1 = 204, + aux_sym__inline_repeat1 = 205, + aux_sym__comment_no_newline_repeat1 = 206, + alias_sym_args = 207, + anon_alias_sym_class = 208, + alias_sym_definition = 209, + alias_sym_language_marker = 210, + alias_sym_paragraph = 211, + alias_sym_raw_block_marker_begin = 212, + alias_sym_raw_block_marker_end = 213, + alias_sym_section_content = 214, + alias_sym_table_header = 215, }; static const char * const ts_symbol_names[] = { @@ -298,6 +300,7 @@ static const char * const ts_symbol_names[] = { [sym_list_marker_upper_roman_parens] = "list_marker_upper_roman_parens", [sym__list_item_continuation] = "_list_item_continuation", [sym__list_item_end] = "_list_item_end", + [sym__list_item_content_spacer] = "_list_item_content_spacer", [sym__close_paragraph] = "_close_paragraph", [sym__block_quote_begin] = "block_quote_marker", [sym__block_quote_continuation] = "_block_quote_continuation", @@ -425,6 +428,7 @@ static const char * const ts_symbol_names[] = { [aux_sym__list_upper_roman_period_repeat1] = "_list_upper_roman_period_repeat1", [aux_sym__list_upper_roman_paren_repeat1] = "_list_upper_roman_paren_repeat1", [aux_sym__list_upper_roman_parens_repeat1] = "_list_upper_roman_parens_repeat1", + [aux_sym_list_item_content_repeat1] = "list_item_content_repeat1", [aux_sym_table_repeat1] = "table_repeat1", [aux_sym_table_separator_repeat1] = "table_separator_repeat1", [aux_sym_table_row_repeat1] = "table_row_repeat1", @@ -515,6 +519,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_list_marker_upper_roman_parens] = sym_list_marker_upper_roman_parens, [sym__list_item_continuation] = sym__list_item_continuation, [sym__list_item_end] = sym__list_item_end, + [sym__list_item_content_spacer] = sym__list_item_content_spacer, [sym__close_paragraph] = sym__close_paragraph, [sym__block_quote_begin] = sym__block_quote_begin, [sym__block_quote_continuation] = sym__block_quote_continuation, @@ -642,6 +647,7 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym__list_upper_roman_period_repeat1] = aux_sym__list_upper_roman_period_repeat1, [aux_sym__list_upper_roman_paren_repeat1] = aux_sym__list_upper_roman_paren_repeat1, [aux_sym__list_upper_roman_parens_repeat1] = aux_sym__list_upper_roman_parens_repeat1, + [aux_sym_list_item_content_repeat1] = aux_sym_list_item_content_repeat1, [aux_sym_table_repeat1] = aux_sym_table_repeat1, [aux_sym_table_separator_repeat1] = aux_sym_table_separator_repeat1, [aux_sym_table_row_repeat1] = aux_sym_table_row_repeat1, @@ -930,6 +936,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, + [sym__list_item_content_spacer] = { + .visible = false, + .named = true, + }, [sym__close_paragraph] = { .visible = false, .named = true, @@ -1438,6 +1448,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_list_item_content_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym_table_repeat1] = { .visible = false, .named = false, @@ -1769,29 +1783,29 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [6] = 6, [7] = 7, [8] = 6, - [9] = 4, - [10] = 7, + [9] = 5, + [10] = 3, [11] = 11, - [12] = 12, + [12] = 11, [13] = 13, - [14] = 12, - [15] = 15, + [14] = 14, + [15] = 11, [16] = 16, - [17] = 15, - [18] = 11, + [17] = 17, + [18] = 16, [19] = 13, - [20] = 11, + [20] = 14, [21] = 13, - [22] = 11, + [22] = 14, [23] = 13, - [24] = 11, + [24] = 14, [25] = 13, - [26] = 12, - [27] = 12, - [28] = 12, - [29] = 29, - [30] = 30, - [31] = 31, + [26] = 14, + [27] = 13, + [28] = 14, + [29] = 11, + [30] = 11, + [31] = 11, [32] = 32, [33] = 33, [34] = 34, @@ -1816,89 +1830,89 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [53] = 53, [54] = 54, [55] = 55, - [56] = 52, - [57] = 55, - [58] = 55, - [59] = 52, - [60] = 52, + [56] = 56, + [57] = 57, + [58] = 58, + [59] = 59, + [60] = 55, [61] = 55, [62] = 55, [63] = 63, - [64] = 64, - [65] = 64, - [66] = 64, - [67] = 67, - [68] = 67, - [69] = 67, + [64] = 63, + [65] = 63, + [66] = 55, + [67] = 63, + [68] = 63, + [69] = 63, [70] = 70, - [71] = 70, - [72] = 70, - [73] = 73, - [74] = 73, - [75] = 73, - [76] = 76, + [71] = 71, + [72] = 71, + [73] = 71, + [74] = 74, + [75] = 74, + [76] = 74, [77] = 77, - [78] = 78, - [79] = 79, + [78] = 77, + [79] = 77, [80] = 80, - [81] = 81, - [82] = 82, + [81] = 80, + [82] = 80, [83] = 83, [84] = 84, [85] = 85, - [86] = 86, + [86] = 83, [87] = 87, [88] = 88, - [89] = 86, - [90] = 87, + [89] = 89, + [90] = 90, [91] = 91, - [92] = 88, - [93] = 81, + [92] = 92, + [93] = 93, [94] = 94, - [95] = 78, + [95] = 93, [96] = 96, - [97] = 97, + [97] = 91, [98] = 98, - [99] = 77, - [100] = 79, - [101] = 79, - [102] = 80, - [103] = 81, - [104] = 82, - [105] = 83, - [106] = 84, - [107] = 85, - [108] = 86, - [109] = 87, - [110] = 88, - [111] = 82, - [112] = 94, - [113] = 76, - [114] = 80, - [115] = 83, - [116] = 91, - [117] = 96, - [118] = 97, - [119] = 84, - [120] = 85, - [121] = 98, - [122] = 122, - [123] = 94, - [124] = 76, - [125] = 96, - [126] = 77, - [127] = 97, - [128] = 122, - [129] = 98, - [130] = 91, - [131] = 78, - [132] = 132, - [133] = 133, - [134] = 134, - [135] = 135, - [136] = 136, - [137] = 137, - [138] = 138, + [99] = 99, + [100] = 90, + [101] = 94, + [102] = 93, + [103] = 103, + [104] = 104, + [105] = 105, + [106] = 106, + [107] = 99, + [108] = 84, + [109] = 85, + [110] = 98, + [111] = 87, + [112] = 88, + [113] = 103, + [114] = 104, + [115] = 103, + [116] = 96, + [117] = 105, + [118] = 106, + [119] = 98, + [120] = 120, + [121] = 104, + [122] = 84, + [123] = 85, + [124] = 83, + [125] = 87, + [126] = 88, + [127] = 99, + [128] = 92, + [129] = 89, + [130] = 90, + [131] = 105, + [132] = 94, + [133] = 92, + [134] = 106, + [135] = 120, + [136] = 96, + [137] = 91, + [138] = 120, [139] = 139, [140] = 140, [141] = 141, @@ -1914,27 +1928,27 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [151] = 151, [152] = 152, [153] = 153, - [154] = 132, - [155] = 134, + [154] = 154, + [155] = 155, [156] = 156, [157] = 157, [158] = 158, [159] = 159, - [160] = 157, - [161] = 133, - [162] = 136, + [160] = 160, + [161] = 161, + [162] = 162, [163] = 163, [164] = 164, - [165] = 140, - [166] = 151, - [167] = 156, - [168] = 163, - [169] = 164, - [170] = 170, - [171] = 171, - [172] = 172, - [173] = 173, - [174] = 174, + [165] = 141, + [166] = 140, + [167] = 167, + [168] = 139, + [169] = 143, + [170] = 148, + [171] = 156, + [172] = 161, + [173] = 167, + [174] = 139, [175] = 175, [176] = 176, [177] = 177, @@ -1947,952 +1961,1138 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [184] = 184, [185] = 185, [186] = 186, - [187] = 170, - [188] = 171, + [187] = 187, + [188] = 188, [189] = 189, - [190] = 190, - [191] = 172, - [192] = 192, - [193] = 193, - [194] = 173, - [195] = 174, - [196] = 175, + [190] = 175, + [191] = 191, + [192] = 176, + [193] = 162, + [194] = 194, + [195] = 195, + [196] = 177, [197] = 197, - [198] = 176, - [199] = 177, - [200] = 135, - [201] = 178, - [202] = 179, - [203] = 180, - [204] = 181, - [205] = 182, - [206] = 137, - [207] = 183, - [208] = 139, - [209] = 184, - [210] = 185, - [211] = 197, - [212] = 142, - [213] = 143, - [214] = 145, + [198] = 178, + [199] = 179, + [200] = 180, + [201] = 201, + [202] = 181, + [203] = 182, + [204] = 204, + [205] = 183, + [206] = 184, + [207] = 185, + [208] = 186, + [209] = 187, + [210] = 142, + [211] = 188, + [212] = 145, + [213] = 189, + [214] = 214, [215] = 146, [216] = 147, - [217] = 148, - [218] = 149, - [219] = 150, - [220] = 152, - [221] = 153, - [222] = 133, - [223] = 136, - [224] = 186, - [225] = 140, - [226] = 151, - [227] = 156, - [228] = 163, - [229] = 164, - [230] = 170, - [231] = 171, - [232] = 172, - [233] = 173, - [234] = 174, - [235] = 175, - [236] = 176, - [237] = 177, - [238] = 178, - [239] = 179, - [240] = 180, - [241] = 181, - [242] = 182, - [243] = 183, - [244] = 184, - [245] = 185, - [246] = 186, - [247] = 189, - [248] = 190, - [249] = 192, - [250] = 197, - [251] = 135, - [252] = 189, - [253] = 190, - [254] = 137, - [255] = 139, - [256] = 141, - [257] = 142, - [258] = 143, - [259] = 158, - [260] = 145, - [261] = 146, - [262] = 147, - [263] = 148, - [264] = 149, - [265] = 150, - [266] = 159, - [267] = 152, - [268] = 153, - [269] = 192, - [270] = 193, - [271] = 141, - [272] = 272, - [273] = 273, - [274] = 274, - [275] = 275, - [276] = 275, - [277] = 275, - [278] = 275, - [279] = 275, + [217] = 150, + [218] = 151, + [219] = 152, + [220] = 153, + [221] = 154, + [222] = 155, + [223] = 191, + [224] = 157, + [225] = 158, + [226] = 226, + [227] = 141, + [228] = 140, + [229] = 143, + [230] = 148, + [231] = 156, + [232] = 161, + [233] = 167, + [234] = 175, + [235] = 176, + [236] = 177, + [237] = 178, + [238] = 179, + [239] = 180, + [240] = 181, + [241] = 182, + [242] = 183, + [243] = 184, + [244] = 185, + [245] = 186, + [246] = 187, + [247] = 188, + [248] = 189, + [249] = 191, + [250] = 194, + [251] = 195, + [252] = 197, + [253] = 201, + [254] = 194, + [255] = 204, + [256] = 195, + [257] = 163, + [258] = 142, + [259] = 145, + [260] = 164, + [261] = 214, + [262] = 146, + [263] = 147, + [264] = 150, + [265] = 151, + [266] = 152, + [267] = 153, + [268] = 154, + [269] = 155, + [270] = 197, + [271] = 157, + [272] = 158, + [273] = 226, + [274] = 201, + [275] = 159, + [276] = 160, + [277] = 204, + [278] = 214, + [279] = 279, [280] = 280, - [281] = 280, + [281] = 281, [282] = 282, [283] = 282, [284] = 282, - [285] = 280, + [285] = 282, [286] = 282, - [287] = 280, - [288] = 282, - [289] = 280, + [287] = 282, + [288] = 288, + [289] = 288, [290] = 290, - [291] = 291, - [292] = 291, - [293] = 291, - [294] = 291, - [295] = 291, - [296] = 296, - [297] = 272, - [298] = 296, - [299] = 296, + [291] = 288, + [292] = 290, + [293] = 290, + [294] = 288, + [295] = 288, + [296] = 290, + [297] = 290, + [298] = 288, + [299] = 290, [300] = 300, - [301] = 301, - [302] = 296, - [303] = 301, + [301] = 300, + [302] = 302, + [303] = 300, [304] = 300, - [305] = 301, + [305] = 300, [306] = 300, - [307] = 301, - [308] = 300, - [309] = 301, - [310] = 300, - [311] = 311, - [312] = 296, + [307] = 307, + [308] = 308, + [309] = 309, + [310] = 310, + [311] = 279, + [312] = 309, [313] = 313, - [314] = 274, - [315] = 315, - [316] = 315, - [317] = 315, - [318] = 318, - [319] = 272, - [320] = 313, - [321] = 315, - [322] = 315, - [323] = 323, - [324] = 274, - [325] = 325, - [326] = 326, - [327] = 327, + [314] = 309, + [315] = 307, + [316] = 309, + [317] = 313, + [318] = 307, + [319] = 313, + [320] = 307, + [321] = 313, + [322] = 307, + [323] = 313, + [324] = 307, + [325] = 313, + [326] = 309, + [327] = 309, [328] = 328, - [329] = 323, - [330] = 330, - [331] = 327, + [329] = 281, + [330] = 308, + [331] = 279, [332] = 332, - [333] = 323, - [334] = 330, - [335] = 327, - [336] = 330, - [337] = 327, - [338] = 323, - [339] = 330, - [340] = 327, - [341] = 328, - [342] = 325, - [343] = 326, - [344] = 332, - [345] = 328, - [346] = 325, - [347] = 326, - [348] = 332, - [349] = 328, - [350] = 325, - [351] = 326, - [352] = 332, - [353] = 330, - [354] = 325, - [355] = 326, - [356] = 332, - [357] = 323, - [358] = 358, - [359] = 359, - [360] = 360, - [361] = 361, - [362] = 358, - [363] = 360, - [364] = 364, - [365] = 365, - [366] = 360, - [367] = 358, - [368] = 64, - [369] = 272, - [370] = 370, - [371] = 360, - [372] = 358, - [373] = 373, - [374] = 313, - [375] = 375, - [376] = 376, - [377] = 375, - [378] = 67, - [379] = 375, - [380] = 64, - [381] = 375, - [382] = 375, + [333] = 328, + [334] = 328, + [335] = 328, + [336] = 328, + [337] = 328, + [338] = 338, + [339] = 281, + [340] = 340, + [341] = 341, + [342] = 342, + [343] = 343, + [344] = 344, + [345] = 345, + [346] = 343, + [347] = 344, + [348] = 345, + [349] = 343, + [350] = 344, + [351] = 345, + [352] = 343, + [353] = 344, + [354] = 345, + [355] = 344, + [356] = 344, + [357] = 345, + [358] = 338, + [359] = 340, + [360] = 341, + [361] = 342, + [362] = 338, + [363] = 340, + [364] = 341, + [365] = 342, + [366] = 338, + [367] = 340, + [368] = 341, + [369] = 342, + [370] = 338, + [371] = 340, + [372] = 341, + [373] = 342, + [374] = 340, + [375] = 341, + [376] = 342, + [377] = 345, + [378] = 343, + [379] = 343, + [380] = 380, + [381] = 381, + [382] = 382, [383] = 383, - [384] = 274, - [385] = 373, - [386] = 373, - [387] = 67, - [388] = 373, - [389] = 70, + [384] = 381, + [385] = 381, + [386] = 71, + [387] = 387, + [388] = 383, + [389] = 383, [390] = 390, - [391] = 391, + [391] = 71, [392] = 392, - [393] = 391, - [394] = 394, - [395] = 390, - [396] = 390, - [397] = 394, - [398] = 394, - [399] = 394, - [400] = 392, - [401] = 391, - [402] = 402, + [393] = 393, + [394] = 392, + [395] = 308, + [396] = 392, + [397] = 392, + [398] = 74, + [399] = 399, + [400] = 279, + [401] = 401, + [402] = 392, [403] = 392, - [404] = 392, - [405] = 70, - [406] = 391, - [407] = 391, - [408] = 390, - [409] = 390, - [410] = 392, - [411] = 394, - [412] = 412, - [413] = 413, - [414] = 414, + [404] = 383, + [405] = 405, + [406] = 71, + [407] = 381, + [408] = 393, + [409] = 281, + [410] = 74, + [411] = 393, + [412] = 74, + [413] = 393, + [414] = 77, [415] = 415, [416] = 416, - [417] = 414, - [418] = 415, - [419] = 414, - [420] = 416, - [421] = 421, - [422] = 416, - [423] = 415, - [424] = 415, - [425] = 414, - [426] = 416, + [417] = 77, + [418] = 418, + [419] = 419, + [420] = 415, + [421] = 416, + [422] = 419, + [423] = 418, + [424] = 419, + [425] = 416, + [426] = 415, [427] = 416, - [428] = 414, - [429] = 429, - [430] = 430, - [431] = 415, - [432] = 432, - [433] = 433, - [434] = 434, - [435] = 433, - [436] = 434, - [437] = 433, - [438] = 434, - [439] = 433, - [440] = 434, - [441] = 433, - [442] = 434, - [443] = 433, - [444] = 434, - [445] = 433, - [446] = 434, - [447] = 433, - [448] = 434, - [449] = 433, - [450] = 434, - [451] = 433, - [452] = 433, - [453] = 434, - [454] = 433, - [455] = 433, - [456] = 456, - [457] = 96, - [458] = 458, - [459] = 81, - [460] = 434, + [428] = 418, + [429] = 415, + [430] = 416, + [431] = 419, + [432] = 418, + [433] = 77, + [434] = 415, + [435] = 416, + [436] = 418, + [437] = 419, + [438] = 419, + [439] = 439, + [440] = 418, + [441] = 415, + [442] = 442, + [443] = 443, + [444] = 442, + [445] = 445, + [446] = 442, + [447] = 443, + [448] = 443, + [449] = 445, + [450] = 445, + [451] = 451, + [452] = 442, + [453] = 445, + [454] = 445, + [455] = 442, + [456] = 443, + [457] = 457, + [458] = 442, + [459] = 459, + [460] = 443, [461] = 461, [462] = 462, - [463] = 82, - [464] = 434, - [465] = 465, - [466] = 433, + [463] = 443, + [464] = 445, + [465] = 99, + [466] = 466, [467] = 467, - [468] = 468, - [469] = 86, - [470] = 470, - [471] = 471, - [472] = 97, - [473] = 434, - [474] = 474, - [475] = 87, - [476] = 434, - [477] = 477, - [478] = 433, - [479] = 434, - [480] = 433, - [481] = 434, - [482] = 433, + [468] = 466, + [469] = 467, + [470] = 466, + [471] = 467, + [472] = 466, + [473] = 467, + [474] = 466, + [475] = 467, + [476] = 466, + [477] = 467, + [478] = 466, + [479] = 467, + [480] = 466, + [481] = 467, + [482] = 482, [483] = 483, - [484] = 434, - [485] = 433, - [486] = 434, - [487] = 433, - [488] = 434, - [489] = 91, - [490] = 91, - [491] = 73, - [492] = 82, - [493] = 81, - [494] = 97, - [495] = 87, - [496] = 496, - [497] = 96, - [498] = 498, + [484] = 484, + [485] = 467, + [486] = 92, + [487] = 87, + [488] = 488, + [489] = 489, + [490] = 490, + [491] = 491, + [492] = 467, + [493] = 466, + [494] = 466, + [495] = 495, + [496] = 466, + [497] = 467, + [498] = 106, [499] = 499, - [500] = 86, - [501] = 501, - [502] = 502, - [503] = 501, - [504] = 504, - [505] = 505, - [506] = 506, - [507] = 507, - [508] = 508, - [509] = 509, - [510] = 510, - [511] = 511, - [512] = 512, - [513] = 513, - [514] = 514, + [500] = 500, + [501] = 466, + [502] = 467, + [503] = 467, + [504] = 98, + [505] = 105, + [506] = 83, + [507] = 466, + [508] = 467, + [509] = 467, + [510] = 466, + [511] = 467, + [512] = 466, + [513] = 466, + [514] = 467, [515] = 515, [516] = 516, - [517] = 517, - [518] = 518, - [519] = 519, - [520] = 520, + [517] = 466, + [518] = 466, + [519] = 467, + [520] = 466, [521] = 521, [522] = 522, - [523] = 523, - [524] = 524, - [525] = 525, - [526] = 510, - [527] = 511, - [528] = 512, - [529] = 529, - [530] = 513, - [531] = 531, - [532] = 514, - [533] = 510, - [534] = 511, - [535] = 512, - [536] = 513, - [537] = 514, - [538] = 515, - [539] = 516, - [540] = 517, - [541] = 518, - [542] = 519, - [543] = 520, - [544] = 521, - [545] = 522, - [546] = 523, - [547] = 524, - [548] = 525, - [549] = 549, - [550] = 515, - [551] = 551, - [552] = 516, - [553] = 553, - [554] = 517, - [555] = 555, - [556] = 518, - [557] = 557, - [558] = 519, + [523] = 467, + [524] = 98, + [525] = 99, + [526] = 526, + [527] = 105, + [528] = 92, + [529] = 106, + [530] = 83, + [531] = 87, + [532] = 98, + [533] = 533, + [534] = 105, + [535] = 535, + [536] = 87, + [537] = 83, + [538] = 99, + [539] = 92, + [540] = 106, + [541] = 80, + [542] = 542, + [543] = 543, + [544] = 544, + [545] = 89, + [546] = 546, + [547] = 547, + [548] = 96, + [549] = 91, + [550] = 90, + [551] = 94, + [552] = 93, + [553] = 103, + [554] = 104, + [555] = 120, + [556] = 84, + [557] = 85, + [558] = 88, [559] = 559, - [560] = 510, - [561] = 511, - [562] = 512, - [563] = 513, - [564] = 514, - [565] = 73, - [566] = 516, - [567] = 517, - [568] = 518, - [569] = 519, - [570] = 520, - [571] = 521, - [572] = 522, - [573] = 523, - [574] = 524, - [575] = 525, - [576] = 520, - [577] = 510, - [578] = 511, - [579] = 512, - [580] = 513, - [581] = 514, - [582] = 515, - [583] = 516, - [584] = 517, - [585] = 518, - [586] = 519, - [587] = 520, - [588] = 521, - [589] = 522, - [590] = 523, - [591] = 524, - [592] = 525, - [593] = 593, - [594] = 521, - [595] = 595, - [596] = 122, - [597] = 522, - [598] = 598, - [599] = 523, - [600] = 600, - [601] = 94, - [602] = 524, - [603] = 76, + [560] = 560, + [561] = 561, + [562] = 562, + [563] = 563, + [564] = 564, + [565] = 565, + [566] = 566, + [567] = 567, + [568] = 568, + [569] = 569, + [570] = 570, + [571] = 571, + [572] = 572, + [573] = 573, + [574] = 574, + [575] = 575, + [576] = 576, + [577] = 562, + [578] = 563, + [579] = 579, + [580] = 542, + [581] = 581, + [582] = 564, + [583] = 583, + [584] = 565, + [585] = 585, + [586] = 566, + [587] = 587, + [588] = 567, + [589] = 562, + [590] = 563, + [591] = 564, + [592] = 565, + [593] = 566, + [594] = 567, + [595] = 568, + [596] = 569, + [597] = 570, + [598] = 571, + [599] = 572, + [600] = 573, + [601] = 574, + [602] = 575, + [603] = 576, [604] = 604, - [605] = 525, - [606] = 98, - [607] = 77, + [605] = 568, + [606] = 606, + [607] = 569, [608] = 608, - [609] = 78, - [610] = 79, - [611] = 80, - [612] = 612, - [613] = 83, - [614] = 84, - [615] = 85, - [616] = 616, - [617] = 501, - [618] = 88, - [619] = 501, - [620] = 501, - [621] = 515, - [622] = 145, - [623] = 157, - [624] = 624, - [625] = 625, - [626] = 626, - [627] = 627, + [609] = 570, + [610] = 610, + [611] = 571, + [612] = 562, + [613] = 563, + [614] = 542, + [615] = 564, + [616] = 565, + [617] = 566, + [618] = 567, + [619] = 568, + [620] = 569, + [621] = 570, + [622] = 571, + [623] = 572, + [624] = 573, + [625] = 574, + [626] = 575, + [627] = 576, [628] = 628, - [629] = 629, - [630] = 98, - [631] = 631, - [632] = 272, - [633] = 633, - [634] = 634, - [635] = 170, - [636] = 171, - [637] = 172, - [638] = 173, - [639] = 174, - [640] = 175, - [641] = 176, - [642] = 177, - [643] = 178, - [644] = 179, - [645] = 180, - [646] = 181, - [647] = 182, - [648] = 183, - [649] = 184, - [650] = 185, - [651] = 651, + [629] = 572, + [630] = 630, + [631] = 573, + [632] = 562, + [633] = 563, + [634] = 542, + [635] = 564, + [636] = 565, + [637] = 566, + [638] = 567, + [639] = 568, + [640] = 569, + [641] = 570, + [642] = 571, + [643] = 572, + [644] = 573, + [645] = 574, + [646] = 575, + [647] = 576, + [648] = 648, + [649] = 574, + [650] = 650, + [651] = 575, [652] = 652, - [653] = 653, + [653] = 576, [654] = 654, - [655] = 655, - [656] = 656, - [657] = 657, - [658] = 77, - [659] = 78, - [660] = 660, - [661] = 661, - [662] = 662, - [663] = 313, - [664] = 79, - [665] = 80, - [666] = 272, - [667] = 667, - [668] = 186, - [669] = 662, - [670] = 670, + [655] = 562, + [656] = 563, + [657] = 542, + [658] = 564, + [659] = 565, + [660] = 566, + [661] = 567, + [662] = 568, + [663] = 569, + [664] = 570, + [665] = 571, + [666] = 572, + [667] = 573, + [668] = 574, + [669] = 575, + [670] = 576, [671] = 671, - [672] = 672, - [673] = 313, - [674] = 272, - [675] = 313, - [676] = 625, - [677] = 189, - [678] = 76, - [679] = 272, - [680] = 133, - [681] = 313, - [682] = 192, - [683] = 193, - [684] = 136, - [685] = 662, - [686] = 272, - [687] = 687, - [688] = 197, - [689] = 313, - [690] = 272, - [691] = 625, - [692] = 135, - [693] = 693, - [694] = 662, - [695] = 695, - [696] = 83, - [697] = 697, - [698] = 140, - [699] = 137, - [700] = 84, - [701] = 139, - [702] = 151, - [703] = 156, - [704] = 141, - [705] = 142, - [706] = 143, + [672] = 543, + [673] = 543, + [674] = 80, + [675] = 543, + [676] = 676, + [677] = 543, + [678] = 543, + [679] = 542, + [680] = 148, + [681] = 279, + [682] = 204, + [683] = 683, + [684] = 684, + [685] = 685, + [686] = 142, + [687] = 226, + [688] = 145, + [689] = 689, + [690] = 690, + [691] = 214, + [692] = 146, + [693] = 147, + [694] = 150, + [695] = 151, + [696] = 152, + [697] = 153, + [698] = 154, + [699] = 155, + [700] = 700, + [701] = 157, + [702] = 158, + [703] = 308, + [704] = 704, + [705] = 705, + [706] = 706, [707] = 707, - [708] = 163, - [709] = 94, - [710] = 146, - [711] = 147, - [712] = 164, - [713] = 148, - [714] = 149, - [715] = 150, - [716] = 85, - [717] = 152, - [718] = 153, + [708] = 708, + [709] = 279, + [710] = 710, + [711] = 711, + [712] = 80, + [713] = 713, + [714] = 714, + [715] = 715, + [716] = 716, + [717] = 308, + [718] = 279, [719] = 719, - [720] = 313, - [721] = 88, - [722] = 313, - [723] = 272, - [724] = 724, - [725] = 122, - [726] = 625, - [727] = 190, + [720] = 720, + [721] = 308, + [722] = 279, + [723] = 308, + [724] = 279, + [725] = 725, + [726] = 710, + [727] = 727, [728] = 728, - [729] = 729, + [729] = 725, [730] = 730, - [731] = 731, - [732] = 732, - [733] = 733, - [734] = 142, - [735] = 143, + [731] = 141, + [732] = 140, + [733] = 308, + [734] = 143, + [735] = 308, [736] = 736, - [737] = 737, - [738] = 193, - [739] = 739, - [740] = 625, - [741] = 741, - [742] = 742, - [743] = 743, - [744] = 744, - [745] = 728, - [746] = 746, - [747] = 747, + [737] = 725, + [738] = 161, + [739] = 167, + [740] = 139, + [741] = 175, + [742] = 176, + [743] = 177, + [744] = 178, + [745] = 179, + [746] = 180, + [747] = 181, [748] = 748, - [749] = 749, - [750] = 750, - [751] = 662, - [752] = 752, - [753] = 145, - [754] = 750, - [755] = 755, - [756] = 146, - [757] = 147, - [758] = 758, + [749] = 182, + [750] = 183, + [751] = 184, + [752] = 185, + [753] = 186, + [754] = 187, + [755] = 188, + [756] = 189, + [757] = 757, + [758] = 710, [759] = 759, - [760] = 148, + [760] = 191, [761] = 761, - [762] = 149, - [763] = 763, - [764] = 764, - [765] = 150, - [766] = 766, + [762] = 308, + [763] = 279, + [764] = 194, + [765] = 88, + [766] = 195, [767] = 767, - [768] = 768, + [768] = 279, [769] = 769, - [770] = 192, - [771] = 152, - [772] = 772, - [773] = 773, - [774] = 741, - [775] = 153, + [770] = 89, + [771] = 162, + [772] = 197, + [773] = 96, + [774] = 91, + [775] = 725, [776] = 776, - [777] = 190, - [778] = 778, - [779] = 274, - [780] = 274, - [781] = 781, - [782] = 749, - [783] = 752, - [784] = 750, - [785] = 755, - [786] = 786, + [777] = 90, + [778] = 94, + [779] = 93, + [780] = 103, + [781] = 104, + [782] = 710, + [783] = 201, + [784] = 120, + [785] = 84, + [786] = 85, [787] = 787, - [788] = 788, - [789] = 789, - [790] = 749, - [791] = 791, - [792] = 792, - [793] = 793, - [794] = 794, - [795] = 795, - [796] = 741, - [797] = 797, + [788] = 156, + [789] = 89, + [790] = 725, + [791] = 710, + [792] = 725, + [793] = 710, + [794] = 725, + [795] = 710, + [796] = 725, + [797] = 710, [798] = 798, [799] = 799, - [800] = 728, + [800] = 800, [801] = 801, [802] = 802, - [803] = 370, - [804] = 625, - [805] = 805, - [806] = 749, + [803] = 158, + [804] = 804, + [805] = 725, + [806] = 806, [807] = 807, - [808] = 808, - [809] = 752, + [808] = 281, + [809] = 809, [810] = 810, - [811] = 750, - [812] = 755, - [813] = 662, - [814] = 814, - [815] = 693, - [816] = 137, + [811] = 811, + [812] = 812, + [813] = 813, + [814] = 725, + [815] = 815, + [816] = 816, [817] = 817, [818] = 818, [819] = 819, - [820] = 135, - [821] = 821, + [820] = 820, + [821] = 710, [822] = 822, - [823] = 728, - [824] = 139, - [825] = 752, - [826] = 749, - [827] = 827, - [828] = 274, - [829] = 752, + [823] = 823, + [824] = 824, + [825] = 825, + [826] = 826, + [827] = 710, + [828] = 818, + [829] = 799, [830] = 830, - [831] = 750, - [832] = 625, - [833] = 662, - [834] = 274, - [835] = 625, - [836] = 662, - [837] = 274, - [838] = 197, - [839] = 141, - [840] = 189, - [841] = 662, - [842] = 755, - [843] = 625, - [844] = 662, - [845] = 274, - [846] = 625, - [847] = 662, - [848] = 848, + [831] = 831, + [832] = 816, + [833] = 833, + [834] = 823, + [835] = 835, + [836] = 836, + [837] = 837, + [838] = 812, + [839] = 839, + [840] = 281, + [841] = 816, + [842] = 842, + [843] = 843, + [844] = 844, + [845] = 823, + [846] = 826, + [847] = 818, + [848] = 799, [849] = 849, - [850] = 625, - [851] = 662, - [852] = 625, - [853] = 662, - [854] = 625, - [855] = 662, - [856] = 625, - [857] = 778, - [858] = 781, - [859] = 662, - [860] = 625, - [861] = 662, - [862] = 830, - [863] = 730, - [864] = 758, - [865] = 759, - [866] = 625, - [867] = 662, - [868] = 805, - [869] = 807, - [870] = 625, - [871] = 274, - [872] = 133, - [873] = 662, - [874] = 778, - [875] = 781, - [876] = 136, + [850] = 850, + [851] = 281, + [852] = 852, + [853] = 853, + [854] = 854, + [855] = 855, + [856] = 856, + [857] = 857, + [858] = 858, + [859] = 859, + [860] = 860, + [861] = 812, + [862] = 816, + [863] = 823, + [864] = 864, + [865] = 826, + [866] = 866, + [867] = 818, + [868] = 799, + [869] = 757, + [870] = 155, + [871] = 871, + [872] = 872, + [873] = 873, + [874] = 874, + [875] = 725, + [876] = 876, [877] = 877, [878] = 878, - [879] = 830, - [880] = 730, - [881] = 758, - [882] = 759, - [883] = 625, - [884] = 741, - [885] = 805, - [886] = 807, - [887] = 140, - [888] = 662, - [889] = 778, - [890] = 781, - [891] = 151, - [892] = 156, - [893] = 163, - [894] = 830, - [895] = 730, - [896] = 758, - [897] = 759, - [898] = 164, - [899] = 170, - [900] = 805, - [901] = 807, - [902] = 171, - [903] = 172, - [904] = 173, - [905] = 778, - [906] = 781, - [907] = 174, - [908] = 175, - [909] = 176, - [910] = 830, - [911] = 730, - [912] = 758, - [913] = 759, - [914] = 177, - [915] = 178, - [916] = 805, - [917] = 807, - [918] = 179, - [919] = 180, - [920] = 181, - [921] = 182, - [922] = 183, - [923] = 184, - [924] = 185, - [925] = 186, - [926] = 817, - [927] = 817, - [928] = 728, - [929] = 817, - [930] = 930, - [931] = 817, - [932] = 755, - [933] = 933, - [934] = 625, - [935] = 935, - [936] = 936, - [937] = 937, - [938] = 461, - [939] = 939, - [940] = 939, - [941] = 941, - [942] = 942, - [943] = 943, - [944] = 944, - [945] = 945, - [946] = 946, - [947] = 947, - [948] = 942, - [949] = 949, - [950] = 950, - [951] = 951, - [952] = 943, - [953] = 937, - [954] = 954, - [955] = 955, - [956] = 944, + [879] = 879, + [880] = 880, + [881] = 816, + [882] = 882, + [883] = 96, + [884] = 91, + [885] = 823, + [886] = 710, + [887] = 826, + [888] = 818, + [889] = 799, + [890] = 90, + [891] = 94, + [892] = 892, + [893] = 893, + [894] = 826, + [895] = 799, + [896] = 896, + [897] = 93, + [898] = 816, + [899] = 103, + [900] = 104, + [901] = 157, + [902] = 281, + [903] = 120, + [904] = 823, + [905] = 84, + [906] = 826, + [907] = 85, + [908] = 818, + [909] = 725, + [910] = 910, + [911] = 88, + [912] = 281, + [913] = 141, + [914] = 140, + [915] = 915, + [916] = 812, + [917] = 710, + [918] = 143, + [919] = 148, + [920] = 156, + [921] = 161, + [922] = 167, + [923] = 139, + [924] = 725, + [925] = 849, + [926] = 877, + [927] = 175, + [928] = 176, + [929] = 177, + [930] = 839, + [931] = 866, + [932] = 806, + [933] = 807, + [934] = 178, + [935] = 179, + [936] = 858, + [937] = 859, + [938] = 180, + [939] = 181, + [940] = 182, + [941] = 710, + [942] = 849, + [943] = 877, + [944] = 183, + [945] = 184, + [946] = 185, + [947] = 839, + [948] = 866, + [949] = 806, + [950] = 807, + [951] = 186, + [952] = 187, + [953] = 858, + [954] = 859, + [955] = 188, + [956] = 189, [957] = 957, - [958] = 945, - [959] = 946, - [960] = 947, - [961] = 961, - [962] = 962, - [963] = 954, - [964] = 964, - [965] = 950, - [966] = 951, - [967] = 935, - [968] = 937, - [969] = 954, - [970] = 955, - [971] = 971, - [972] = 955, - [973] = 937, - [974] = 974, - [975] = 975, - [976] = 950, - [977] = 977, - [978] = 978, - [979] = 951, - [980] = 980, - [981] = 981, - [982] = 982, - [983] = 983, - [984] = 984, + [958] = 849, + [959] = 877, + [960] = 191, + [961] = 725, + [962] = 710, + [963] = 839, + [964] = 866, + [965] = 806, + [966] = 807, + [967] = 281, + [968] = 858, + [969] = 859, + [970] = 194, + [971] = 195, + [972] = 725, + [973] = 849, + [974] = 877, + [975] = 710, + [976] = 197, + [977] = 226, + [978] = 839, + [979] = 866, + [980] = 806, + [981] = 807, + [982] = 281, + [983] = 858, + [984] = 859, [985] = 985, - [986] = 978, - [987] = 987, - [988] = 988, - [989] = 989, - [990] = 990, - [991] = 954, - [992] = 992, - [993] = 993, - [994] = 994, - [995] = 995, - [996] = 996, - [997] = 997, + [986] = 849, + [987] = 877, + [988] = 201, + [989] = 725, + [990] = 710, + [991] = 839, + [992] = 866, + [993] = 806, + [994] = 807, + [995] = 204, + [996] = 858, + [997] = 859, [998] = 998, - [999] = 999, - [1000] = 1000, - [1001] = 1001, - [1002] = 989, - [1003] = 955, - [1004] = 1004, - [1005] = 982, - [1006] = 1006, - [1007] = 1007, - [1008] = 939, - [1009] = 1009, - [1010] = 988, - [1011] = 939, - [1012] = 992, - [1013] = 978, - [1014] = 1014, - [1015] = 993, - [1016] = 1004, - [1017] = 942, - [1018] = 996, - [1019] = 997, - [1020] = 994, - [1021] = 996, - [1022] = 943, - [1023] = 944, - [1024] = 945, - [1025] = 939, - [1026] = 989, - [1027] = 942, - [1028] = 1006, - [1029] = 989, + [999] = 725, + [1000] = 401, + [1001] = 710, + [1002] = 142, + [1003] = 725, + [1004] = 145, + [1005] = 710, + [1006] = 725, + [1007] = 214, + [1008] = 873, + [1009] = 146, + [1010] = 873, + [1011] = 147, + [1012] = 873, + [1013] = 710, + [1014] = 873, + [1015] = 873, + [1016] = 150, + [1017] = 151, + [1018] = 152, + [1019] = 153, + [1020] = 154, + [1021] = 1021, + [1022] = 147, + [1023] = 1023, + [1024] = 1024, + [1025] = 1025, + [1026] = 1026, + [1027] = 1027, + [1028] = 1028, + [1029] = 1029, [1030] = 1030, - [1031] = 943, - [1032] = 988, - [1033] = 944, - [1034] = 945, - [1035] = 946, - [1036] = 947, - [1037] = 993, - [1038] = 946, - [1039] = 1004, - [1040] = 996, - [1041] = 997, - [1042] = 950, - [1043] = 1006, - [1044] = 935, - [1045] = 937, - [1046] = 954, - [1047] = 955, - [1048] = 1004, - [1049] = 982, - [1050] = 1006, - [1051] = 994, - [1052] = 993, - [1053] = 988, - [1054] = 947, - [1055] = 1055, + [1031] = 1031, + [1032] = 1032, + [1033] = 1033, + [1034] = 1034, + [1035] = 1035, + [1036] = 201, + [1037] = 1037, + [1038] = 1031, + [1039] = 1039, + [1040] = 162, + [1041] = 1041, + [1042] = 1042, + [1043] = 1023, + [1044] = 1044, + [1045] = 1045, + [1046] = 1024, + [1047] = 1025, + [1048] = 1048, + [1049] = 1049, + [1050] = 1050, + [1051] = 143, + [1052] = 1052, + [1053] = 1053, + [1054] = 1028, + [1055] = 1029, [1056] = 1056, - [1057] = 997, - [1058] = 993, + [1057] = 1026, + [1058] = 204, [1059] = 1059, - [1060] = 942, - [1061] = 996, - [1062] = 997, - [1063] = 1063, - [1064] = 982, - [1065] = 1065, - [1066] = 978, - [1067] = 943, - [1068] = 1068, - [1069] = 944, - [1070] = 1070, - [1071] = 1006, - [1072] = 936, - [1073] = 950, + [1060] = 1034, + [1061] = 1061, + [1062] = 148, + [1063] = 1044, + [1064] = 156, + [1065] = 1030, + [1066] = 1066, + [1067] = 1034, + [1068] = 161, + [1069] = 142, + [1070] = 1066, + [1071] = 167, + [1072] = 145, + [1073] = 1066, [1074] = 1074, - [1075] = 1030, - [1076] = 1007, - [1077] = 981, - [1078] = 1074, - [1079] = 936, - [1080] = 994, - [1081] = 1081, - [1082] = 1030, - [1083] = 1007, - [1084] = 981, - [1085] = 1074, - [1086] = 936, - [1087] = 1087, - [1088] = 1004, - [1089] = 1030, - [1090] = 1007, - [1091] = 981, - [1092] = 1074, - [1093] = 936, - [1094] = 982, - [1095] = 1095, - [1096] = 1030, - [1097] = 1007, - [1098] = 981, - [1099] = 1074, - [1100] = 1100, - [1101] = 1063, - [1102] = 1102, - [1103] = 983, - [1104] = 1001, - [1105] = 1063, - [1106] = 945, - [1107] = 983, - [1108] = 951, - [1109] = 1063, - [1110] = 988, - [1111] = 983, - [1112] = 978, - [1113] = 1063, - [1114] = 935, - [1115] = 983, - [1116] = 1100, - [1117] = 1095, - [1118] = 1100, - [1119] = 1095, - [1120] = 1100, - [1121] = 1095, - [1122] = 1100, - [1123] = 1095, - [1124] = 1055, - [1125] = 1055, - [1126] = 1055, - [1127] = 1055, - [1128] = 946, - [1129] = 947, - [1130] = 935, - [1131] = 994, - [1132] = 951, + [1075] = 1074, + [1076] = 1076, + [1077] = 1077, + [1078] = 1023, + [1079] = 1024, + [1080] = 1025, + [1081] = 1076, + [1082] = 1077, + [1083] = 1028, + [1084] = 1029, + [1085] = 1030, + [1086] = 1031, + [1087] = 1032, + [1088] = 1033, + [1089] = 1023, + [1090] = 214, + [1091] = 146, + [1092] = 1024, + [1093] = 1044, + [1094] = 1025, + [1095] = 150, + [1096] = 151, + [1097] = 152, + [1098] = 153, + [1099] = 154, + [1100] = 155, + [1101] = 1101, + [1102] = 157, + [1103] = 158, + [1104] = 139, + [1105] = 1028, + [1106] = 1029, + [1107] = 1030, + [1108] = 1031, + [1109] = 1032, + [1110] = 1110, + [1111] = 1050, + [1112] = 1061, + [1113] = 1033, + [1114] = 1074, + [1115] = 1076, + [1116] = 175, + [1117] = 176, + [1118] = 177, + [1119] = 1041, + [1120] = 178, + [1121] = 1121, + [1122] = 1077, + [1123] = 1023, + [1124] = 1024, + [1125] = 1125, + [1126] = 1126, + [1127] = 1025, + [1128] = 1059, + [1129] = 1129, + [1130] = 1130, + [1131] = 1131, + [1132] = 1056, + [1133] = 1066, + [1134] = 1026, + [1135] = 1028, + [1136] = 1029, + [1137] = 1030, + [1138] = 1138, + [1139] = 1031, + [1140] = 1032, + [1141] = 1033, + [1142] = 1041, + [1143] = 1143, + [1144] = 1121, + [1145] = 1050, + [1146] = 179, + [1147] = 1056, + [1148] = 1125, + [1149] = 1026, + [1150] = 180, + [1151] = 1059, + [1152] = 1129, + [1153] = 181, + [1154] = 182, + [1155] = 1155, + [1156] = 183, + [1157] = 1044, + [1158] = 184, + [1159] = 185, + [1160] = 186, + [1161] = 1138, + [1162] = 1034, + [1163] = 187, + [1164] = 188, + [1165] = 1041, + [1166] = 1166, + [1167] = 1121, + [1168] = 189, + [1169] = 141, + [1170] = 1026, + [1171] = 1125, + [1172] = 1066, + [1173] = 191, + [1174] = 1059, + [1175] = 1129, + [1176] = 1074, + [1177] = 1076, + [1178] = 1077, + [1179] = 1023, + [1180] = 1024, + [1181] = 1181, + [1182] = 1025, + [1183] = 140, + [1184] = 1138, + [1185] = 1138, + [1186] = 1077, + [1187] = 1028, + [1188] = 1041, + [1189] = 1029, + [1190] = 1121, + [1191] = 1030, + [1192] = 1031, + [1193] = 1032, + [1194] = 1125, + [1195] = 1033, + [1196] = 1196, + [1197] = 1059, + [1198] = 1129, + [1199] = 1199, + [1200] = 1125, + [1201] = 1201, + [1202] = 1202, + [1203] = 1203, + [1204] = 1204, + [1205] = 1205, + [1206] = 1206, + [1207] = 1138, + [1208] = 1208, + [1209] = 1074, + [1210] = 1041, + [1211] = 1211, + [1212] = 1121, + [1213] = 1032, + [1214] = 1214, + [1215] = 1215, + [1216] = 1125, + [1217] = 1217, + [1218] = 1121, + [1219] = 1059, + [1220] = 1129, + [1221] = 1076, + [1222] = 1033, + [1223] = 1077, + [1224] = 1044, + [1225] = 1225, + [1226] = 1226, + [1227] = 1227, + [1228] = 1034, + [1229] = 1138, + [1230] = 1121, + [1231] = 1121, + [1232] = 1121, + [1233] = 1121, + [1234] = 1121, + [1235] = 1121, + [1236] = 1121, + [1237] = 1121, + [1238] = 1121, + [1239] = 1121, + [1240] = 1121, + [1241] = 1121, + [1242] = 1121, + [1243] = 1045, + [1244] = 1129, + [1245] = 1245, + [1246] = 1110, + [1247] = 1181, + [1248] = 1211, + [1249] = 1249, + [1250] = 1045, + [1251] = 1050, + [1252] = 1056, + [1253] = 1110, + [1254] = 1181, + [1255] = 1211, + [1256] = 1249, + [1257] = 1045, + [1258] = 1026, + [1259] = 1259, + [1260] = 1110, + [1261] = 1181, + [1262] = 1211, + [1263] = 1249, + [1264] = 1045, + [1265] = 1265, + [1266] = 194, + [1267] = 1110, + [1268] = 1181, + [1269] = 1211, + [1270] = 1249, + [1271] = 1045, + [1272] = 1056, + [1273] = 195, + [1274] = 1110, + [1275] = 1181, + [1276] = 1211, + [1277] = 1249, + [1278] = 1044, + [1279] = 1217, + [1280] = 1280, + [1281] = 1215, + [1282] = 1196, + [1283] = 1217, + [1284] = 1284, + [1285] = 1215, + [1286] = 1034, + [1287] = 1217, + [1288] = 197, + [1289] = 1215, + [1290] = 226, + [1291] = 1217, + [1292] = 1050, + [1293] = 1215, + [1294] = 490, + [1295] = 1217, + [1296] = 1296, + [1297] = 1215, + [1298] = 1027, + [1299] = 1202, + [1300] = 1027, + [1301] = 1202, + [1302] = 1027, + [1303] = 1202, + [1304] = 1027, + [1305] = 1202, + [1306] = 1027, + [1307] = 1202, + [1308] = 1280, + [1309] = 1280, + [1310] = 1280, + [1311] = 1280, + [1312] = 1280, + [1313] = 1249, + [1314] = 1066, + [1315] = 1056, + [1316] = 1074, + [1317] = 1076, + [1318] = 1318, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -3442,22 +3642,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, [1] = {.lex_state = 19, .external_lex_state = 2}, [2] = {.lex_state = 19, .external_lex_state = 3}, - [3] = {.lex_state = 19, .external_lex_state = 3}, - [4] = {.lex_state = 19, .external_lex_state = 4}, - [5] = {.lex_state = 19, .external_lex_state = 3}, + [3] = {.lex_state = 19, .external_lex_state = 4}, + [4] = {.lex_state = 19, .external_lex_state = 3}, + [5] = {.lex_state = 19, .external_lex_state = 4}, [6] = {.lex_state = 19, .external_lex_state = 3}, - [7] = {.lex_state = 19, .external_lex_state = 4}, + [7] = {.lex_state = 19, .external_lex_state = 3}, [8] = {.lex_state = 19, .external_lex_state = 4}, [9] = {.lex_state = 19, .external_lex_state = 4}, [10] = {.lex_state = 19, .external_lex_state = 4}, - [11] = {.lex_state = 19, .external_lex_state = 4}, + [11] = {.lex_state = 19, .external_lex_state = 3}, [12] = {.lex_state = 19, .external_lex_state = 3}, [13] = {.lex_state = 19, .external_lex_state = 4}, - [14] = {.lex_state = 19, .external_lex_state = 3}, - [15] = {.lex_state = 19, .external_lex_state = 4}, - [16] = {.lex_state = 19, .external_lex_state = 5}, + [14] = {.lex_state = 19, .external_lex_state = 4}, + [15] = {.lex_state = 19, .external_lex_state = 3}, + [16] = {.lex_state = 19, .external_lex_state = 4}, [17] = {.lex_state = 19, .external_lex_state = 5}, - [18] = {.lex_state = 19, .external_lex_state = 4}, + [18] = {.lex_state = 19, .external_lex_state = 5}, [19] = {.lex_state = 19, .external_lex_state = 4}, [20] = {.lex_state = 19, .external_lex_state = 4}, [21] = {.lex_state = 19, .external_lex_state = 4}, @@ -3465,9 +3665,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [23] = {.lex_state = 19, .external_lex_state = 4}, [24] = {.lex_state = 19, .external_lex_state = 4}, [25] = {.lex_state = 19, .external_lex_state = 4}, - [26] = {.lex_state = 19, .external_lex_state = 3}, - [27] = {.lex_state = 19, .external_lex_state = 3}, - [28] = {.lex_state = 19, .external_lex_state = 3}, + [26] = {.lex_state = 19, .external_lex_state = 4}, + [27] = {.lex_state = 19, .external_lex_state = 4}, + [28] = {.lex_state = 19, .external_lex_state = 4}, [29] = {.lex_state = 19, .external_lex_state = 3}, [30] = {.lex_state = 19, .external_lex_state = 3}, [31] = {.lex_state = 19, .external_lex_state = 3}, @@ -3491,94 +3691,94 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [49] = {.lex_state = 19, .external_lex_state = 3}, [50] = {.lex_state = 19, .external_lex_state = 3}, [51] = {.lex_state = 19, .external_lex_state = 3}, - [52] = {.lex_state = 19, .external_lex_state = 4}, + [52] = {.lex_state = 19, .external_lex_state = 3}, [53] = {.lex_state = 19, .external_lex_state = 3}, [54] = {.lex_state = 19, .external_lex_state = 3}, - [55] = {.lex_state = 19, .external_lex_state = 6}, + [55] = {.lex_state = 19, .external_lex_state = 4}, [56] = {.lex_state = 19, .external_lex_state = 3}, - [57] = {.lex_state = 19, .external_lex_state = 6}, - [58] = {.lex_state = 19, .external_lex_state = 6}, + [57] = {.lex_state = 19, .external_lex_state = 3}, + [58] = {.lex_state = 19, .external_lex_state = 3}, [59] = {.lex_state = 19, .external_lex_state = 3}, [60] = {.lex_state = 19, .external_lex_state = 3}, - [61] = {.lex_state = 19, .external_lex_state = 6}, - [62] = {.lex_state = 19, .external_lex_state = 6}, - [63] = {.lex_state = 19, .external_lex_state = 7}, - [64] = {.lex_state = 19, .external_lex_state = 8}, - [65] = {.lex_state = 19, .external_lex_state = 9}, - [66] = {.lex_state = 19, .external_lex_state = 10}, - [67] = {.lex_state = 19, .external_lex_state = 8}, - [68] = {.lex_state = 19, .external_lex_state = 9}, - [69] = {.lex_state = 19, .external_lex_state = 10}, - [70] = {.lex_state = 19, .external_lex_state = 9}, + [61] = {.lex_state = 19, .external_lex_state = 3}, + [62] = {.lex_state = 19, .external_lex_state = 3}, + [63] = {.lex_state = 19, .external_lex_state = 6}, + [64] = {.lex_state = 19, .external_lex_state = 6}, + [65] = {.lex_state = 19, .external_lex_state = 6}, + [66] = {.lex_state = 19, .external_lex_state = 3}, + [67] = {.lex_state = 19, .external_lex_state = 6}, + [68] = {.lex_state = 19, .external_lex_state = 6}, + [69] = {.lex_state = 19, .external_lex_state = 6}, + [70] = {.lex_state = 19, .external_lex_state = 7}, [71] = {.lex_state = 19, .external_lex_state = 8}, - [72] = {.lex_state = 19, .external_lex_state = 10}, - [73] = {.lex_state = 19, .external_lex_state = 8}, - [74] = {.lex_state = 19, .external_lex_state = 9}, - [75] = {.lex_state = 19, .external_lex_state = 10}, - [76] = {.lex_state = 19, .external_lex_state = 11}, - [77] = {.lex_state = 19, .external_lex_state = 12}, - [78] = {.lex_state = 19, .external_lex_state = 13}, - [79] = {.lex_state = 19, .external_lex_state = 13}, - [80] = {.lex_state = 19, .external_lex_state = 13}, + [72] = {.lex_state = 19, .external_lex_state = 9}, + [73] = {.lex_state = 19, .external_lex_state = 10}, + [74] = {.lex_state = 19, .external_lex_state = 8}, + [75] = {.lex_state = 19, .external_lex_state = 9}, + [76] = {.lex_state = 19, .external_lex_state = 10}, + [77] = {.lex_state = 19, .external_lex_state = 10}, + [78] = {.lex_state = 19, .external_lex_state = 8}, + [79] = {.lex_state = 19, .external_lex_state = 9}, + [80] = {.lex_state = 19, .external_lex_state = 10}, [81] = {.lex_state = 19, .external_lex_state = 8}, - [82] = {.lex_state = 19, .external_lex_state = 8}, - [83] = {.lex_state = 19, .external_lex_state = 12}, - [84] = {.lex_state = 19, .external_lex_state = 13}, - [85] = {.lex_state = 19, .external_lex_state = 13}, - [86] = {.lex_state = 19, .external_lex_state = 8}, - [87] = {.lex_state = 19, .external_lex_state = 8}, - [88] = {.lex_state = 19, .external_lex_state = 14}, - [89] = {.lex_state = 19, .external_lex_state = 10}, - [90] = {.lex_state = 19, .external_lex_state = 10}, - [91] = {.lex_state = 19, .external_lex_state = 9}, - [92] = {.lex_state = 19, .external_lex_state = 15}, - [93] = {.lex_state = 19, .external_lex_state = 10}, - [94] = {.lex_state = 19, .external_lex_state = 16}, - [95] = {.lex_state = 19, .external_lex_state = 17}, - [96] = {.lex_state = 19, .external_lex_state = 9}, - [97] = {.lex_state = 19, .external_lex_state = 9}, - [98] = {.lex_state = 19, .external_lex_state = 16}, - [99] = {.lex_state = 19, .external_lex_state = 16}, - [100] = {.lex_state = 19, .external_lex_state = 17}, - [101] = {.lex_state = 19, .external_lex_state = 11}, - [102] = {.lex_state = 19, .external_lex_state = 11}, - [103] = {.lex_state = 19, .external_lex_state = 9}, - [104] = {.lex_state = 19, .external_lex_state = 9}, - [105] = {.lex_state = 19, .external_lex_state = 16}, - [106] = {.lex_state = 19, .external_lex_state = 11}, - [107] = {.lex_state = 19, .external_lex_state = 11}, - [108] = {.lex_state = 19, .external_lex_state = 9}, - [109] = {.lex_state = 19, .external_lex_state = 9}, - [110] = {.lex_state = 19, .external_lex_state = 18}, + [82] = {.lex_state = 19, .external_lex_state = 9}, + [83] = {.lex_state = 19, .external_lex_state = 10}, + [84] = {.lex_state = 19, .external_lex_state = 11}, + [85] = {.lex_state = 19, .external_lex_state = 11}, + [86] = {.lex_state = 19, .external_lex_state = 9}, + [87] = {.lex_state = 19, .external_lex_state = 9}, + [88] = {.lex_state = 19, .external_lex_state = 12}, + [89] = {.lex_state = 19, .external_lex_state = 13}, + [90] = {.lex_state = 19, .external_lex_state = 14}, + [91] = {.lex_state = 19, .external_lex_state = 15}, + [92] = {.lex_state = 19, .external_lex_state = 10}, + [93] = {.lex_state = 19, .external_lex_state = 15}, + [94] = {.lex_state = 19, .external_lex_state = 14}, + [95] = {.lex_state = 19, .external_lex_state = 11}, + [96] = {.lex_state = 19, .external_lex_state = 16}, + [97] = {.lex_state = 19, .external_lex_state = 17}, + [98] = {.lex_state = 19, .external_lex_state = 10}, + [99] = {.lex_state = 19, .external_lex_state = 10}, + [100] = {.lex_state = 19, .external_lex_state = 16}, + [101] = {.lex_state = 19, .external_lex_state = 16}, + [102] = {.lex_state = 19, .external_lex_state = 17}, + [103] = {.lex_state = 19, .external_lex_state = 17}, + [104] = {.lex_state = 19, .external_lex_state = 17}, + [105] = {.lex_state = 19, .external_lex_state = 10}, + [106] = {.lex_state = 19, .external_lex_state = 10}, + [107] = {.lex_state = 19, .external_lex_state = 9}, + [108] = {.lex_state = 19, .external_lex_state = 17}, + [109] = {.lex_state = 19, .external_lex_state = 17}, + [110] = {.lex_state = 19, .external_lex_state = 9}, [111] = {.lex_state = 19, .external_lex_state = 10}, - [112] = {.lex_state = 19, .external_lex_state = 19}, - [113] = {.lex_state = 19, .external_lex_state = 17}, - [114] = {.lex_state = 19, .external_lex_state = 17}, - [115] = {.lex_state = 19, .external_lex_state = 19}, - [116] = {.lex_state = 19, .external_lex_state = 8}, - [117] = {.lex_state = 19, .external_lex_state = 10}, - [118] = {.lex_state = 19, .external_lex_state = 10}, - [119] = {.lex_state = 19, .external_lex_state = 17}, - [120] = {.lex_state = 19, .external_lex_state = 17}, - [121] = {.lex_state = 19, .external_lex_state = 19}, - [122] = {.lex_state = 19, .external_lex_state = 18}, - [123] = {.lex_state = 19, .external_lex_state = 12}, - [124] = {.lex_state = 19, .external_lex_state = 13}, + [112] = {.lex_state = 19, .external_lex_state = 13}, + [113] = {.lex_state = 19, .external_lex_state = 15}, + [114] = {.lex_state = 19, .external_lex_state = 15}, + [115] = {.lex_state = 19, .external_lex_state = 11}, + [116] = {.lex_state = 19, .external_lex_state = 18}, + [117] = {.lex_state = 19, .external_lex_state = 8}, + [118] = {.lex_state = 19, .external_lex_state = 8}, + [119] = {.lex_state = 19, .external_lex_state = 8}, + [120] = {.lex_state = 19, .external_lex_state = 18}, + [121] = {.lex_state = 19, .external_lex_state = 11}, + [122] = {.lex_state = 19, .external_lex_state = 15}, + [123] = {.lex_state = 19, .external_lex_state = 15}, + [124] = {.lex_state = 19, .external_lex_state = 8}, [125] = {.lex_state = 19, .external_lex_state = 8}, [126] = {.lex_state = 19, .external_lex_state = 19}, [127] = {.lex_state = 19, .external_lex_state = 8}, - [128] = {.lex_state = 19, .external_lex_state = 14}, + [128] = {.lex_state = 19, .external_lex_state = 8}, [129] = {.lex_state = 19, .external_lex_state = 12}, - [130] = {.lex_state = 19, .external_lex_state = 10}, - [131] = {.lex_state = 19, .external_lex_state = 11}, - [132] = {.lex_state = 19, .external_lex_state = 3}, - [133] = {.lex_state = 19, .external_lex_state = 3}, - [134] = {.lex_state = 19, .external_lex_state = 3}, - [135] = {.lex_state = 19, .external_lex_state = 3}, - [136] = {.lex_state = 19, .external_lex_state = 3}, - [137] = {.lex_state = 19, .external_lex_state = 3}, - [138] = {.lex_state = 19, .external_lex_state = 3}, - [139] = {.lex_state = 19, .external_lex_state = 3}, + [130] = {.lex_state = 19, .external_lex_state = 18}, + [131] = {.lex_state = 19, .external_lex_state = 9}, + [132] = {.lex_state = 19, .external_lex_state = 18}, + [133] = {.lex_state = 19, .external_lex_state = 9}, + [134] = {.lex_state = 19, .external_lex_state = 9}, + [135] = {.lex_state = 19, .external_lex_state = 14}, + [136] = {.lex_state = 19, .external_lex_state = 14}, + [137] = {.lex_state = 19, .external_lex_state = 11}, + [138] = {.lex_state = 19, .external_lex_state = 16}, + [139] = {.lex_state = 19, .external_lex_state = 5}, [140] = {.lex_state = 19, .external_lex_state = 3}, [141] = {.lex_state = 19, .external_lex_state = 3}, [142] = {.lex_state = 19, .external_lex_state = 3}, @@ -3593,21 +3793,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [151] = {.lex_state = 19, .external_lex_state = 3}, [152] = {.lex_state = 19, .external_lex_state = 3}, [153] = {.lex_state = 19, .external_lex_state = 3}, - [154] = {.lex_state = 19, .external_lex_state = 4}, - [155] = {.lex_state = 19, .external_lex_state = 4}, + [154] = {.lex_state = 19, .external_lex_state = 3}, + [155] = {.lex_state = 19, .external_lex_state = 3}, [156] = {.lex_state = 19, .external_lex_state = 3}, - [157] = {.lex_state = 19, .external_lex_state = 4}, - [158] = {.lex_state = 19, .external_lex_state = 4}, - [159] = {.lex_state = 19, .external_lex_state = 5}, - [160] = {.lex_state = 19, .external_lex_state = 5}, - [161] = {.lex_state = 19, .external_lex_state = 4}, + [157] = {.lex_state = 19, .external_lex_state = 3}, + [158] = {.lex_state = 19, .external_lex_state = 3}, + [159] = {.lex_state = 19, .external_lex_state = 4}, + [160] = {.lex_state = 19, .external_lex_state = 4}, + [161] = {.lex_state = 19, .external_lex_state = 3}, [162] = {.lex_state = 19, .external_lex_state = 4}, - [163] = {.lex_state = 19, .external_lex_state = 3}, - [164] = {.lex_state = 19, .external_lex_state = 3}, + [163] = {.lex_state = 19, .external_lex_state = 4}, + [164] = {.lex_state = 19, .external_lex_state = 5}, [165] = {.lex_state = 19, .external_lex_state = 4}, [166] = {.lex_state = 19, .external_lex_state = 4}, - [167] = {.lex_state = 19, .external_lex_state = 4}, - [168] = {.lex_state = 19, .external_lex_state = 4}, + [167] = {.lex_state = 19, .external_lex_state = 3}, + [168] = {.lex_state = 19, .external_lex_state = 3}, [169] = {.lex_state = 19, .external_lex_state = 4}, [170] = {.lex_state = 19, .external_lex_state = 4}, [171] = {.lex_state = 19, .external_lex_state = 4}, @@ -3626,33 +3826,33 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [184] = {.lex_state = 19, .external_lex_state = 4}, [185] = {.lex_state = 19, .external_lex_state = 4}, [186] = {.lex_state = 19, .external_lex_state = 4}, - [187] = {.lex_state = 19, .external_lex_state = 3}, - [188] = {.lex_state = 19, .external_lex_state = 3}, + [187] = {.lex_state = 19, .external_lex_state = 4}, + [188] = {.lex_state = 19, .external_lex_state = 4}, [189] = {.lex_state = 19, .external_lex_state = 4}, - [190] = {.lex_state = 19, .external_lex_state = 4}, - [191] = {.lex_state = 19, .external_lex_state = 3}, - [192] = {.lex_state = 19, .external_lex_state = 4}, + [190] = {.lex_state = 19, .external_lex_state = 3}, + [191] = {.lex_state = 19, .external_lex_state = 4}, + [192] = {.lex_state = 19, .external_lex_state = 3}, [193] = {.lex_state = 19, .external_lex_state = 5}, - [194] = {.lex_state = 19, .external_lex_state = 3}, - [195] = {.lex_state = 19, .external_lex_state = 3}, + [194] = {.lex_state = 19, .external_lex_state = 4}, + [195] = {.lex_state = 19, .external_lex_state = 4}, [196] = {.lex_state = 19, .external_lex_state = 3}, [197] = {.lex_state = 19, .external_lex_state = 4}, [198] = {.lex_state = 19, .external_lex_state = 3}, [199] = {.lex_state = 19, .external_lex_state = 3}, - [200] = {.lex_state = 19, .external_lex_state = 4}, - [201] = {.lex_state = 19, .external_lex_state = 3}, + [200] = {.lex_state = 19, .external_lex_state = 3}, + [201] = {.lex_state = 19, .external_lex_state = 4}, [202] = {.lex_state = 19, .external_lex_state = 3}, [203] = {.lex_state = 19, .external_lex_state = 3}, - [204] = {.lex_state = 19, .external_lex_state = 3}, + [204] = {.lex_state = 19, .external_lex_state = 4}, [205] = {.lex_state = 19, .external_lex_state = 3}, - [206] = {.lex_state = 19, .external_lex_state = 4}, + [206] = {.lex_state = 19, .external_lex_state = 3}, [207] = {.lex_state = 19, .external_lex_state = 3}, - [208] = {.lex_state = 19, .external_lex_state = 4}, + [208] = {.lex_state = 19, .external_lex_state = 3}, [209] = {.lex_state = 19, .external_lex_state = 3}, - [210] = {.lex_state = 19, .external_lex_state = 3}, + [210] = {.lex_state = 19, .external_lex_state = 4}, [211] = {.lex_state = 19, .external_lex_state = 3}, [212] = {.lex_state = 19, .external_lex_state = 4}, - [213] = {.lex_state = 19, .external_lex_state = 4}, + [213] = {.lex_state = 19, .external_lex_state = 3}, [214] = {.lex_state = 19, .external_lex_state = 4}, [215] = {.lex_state = 19, .external_lex_state = 4}, [216] = {.lex_state = 19, .external_lex_state = 4}, @@ -3661,10 +3861,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [219] = {.lex_state = 19, .external_lex_state = 4}, [220] = {.lex_state = 19, .external_lex_state = 4}, [221] = {.lex_state = 19, .external_lex_state = 4}, - [222] = {.lex_state = 19, .external_lex_state = 5}, - [223] = {.lex_state = 19, .external_lex_state = 5}, - [224] = {.lex_state = 19, .external_lex_state = 3}, - [225] = {.lex_state = 19, .external_lex_state = 5}, + [222] = {.lex_state = 19, .external_lex_state = 4}, + [223] = {.lex_state = 19, .external_lex_state = 3}, + [224] = {.lex_state = 19, .external_lex_state = 4}, + [225] = {.lex_state = 19, .external_lex_state = 4}, [226] = {.lex_state = 19, .external_lex_state = 5}, [227] = {.lex_state = 19, .external_lex_state = 5}, [228] = {.lex_state = 19, .external_lex_state = 5}, @@ -3691,887 +3891,1073 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [249] = {.lex_state = 19, .external_lex_state = 5}, [250] = {.lex_state = 19, .external_lex_state = 5}, [251] = {.lex_state = 19, .external_lex_state = 5}, - [252] = {.lex_state = 19, .external_lex_state = 3}, - [253] = {.lex_state = 19, .external_lex_state = 3}, - [254] = {.lex_state = 19, .external_lex_state = 5}, + [252] = {.lex_state = 19, .external_lex_state = 5}, + [253] = {.lex_state = 19, .external_lex_state = 5}, + [254] = {.lex_state = 19, .external_lex_state = 3}, [255] = {.lex_state = 19, .external_lex_state = 5}, - [256] = {.lex_state = 19, .external_lex_state = 5}, - [257] = {.lex_state = 19, .external_lex_state = 5}, + [256] = {.lex_state = 19, .external_lex_state = 3}, + [257] = {.lex_state = 19, .external_lex_state = 3}, [258] = {.lex_state = 19, .external_lex_state = 5}, - [259] = {.lex_state = 19, .external_lex_state = 3}, - [260] = {.lex_state = 19, .external_lex_state = 5}, + [259] = {.lex_state = 19, .external_lex_state = 5}, + [260] = {.lex_state = 19, .external_lex_state = 4}, [261] = {.lex_state = 19, .external_lex_state = 5}, [262] = {.lex_state = 19, .external_lex_state = 5}, [263] = {.lex_state = 19, .external_lex_state = 5}, [264] = {.lex_state = 19, .external_lex_state = 5}, [265] = {.lex_state = 19, .external_lex_state = 5}, - [266] = {.lex_state = 19, .external_lex_state = 4}, + [266] = {.lex_state = 19, .external_lex_state = 5}, [267] = {.lex_state = 19, .external_lex_state = 5}, [268] = {.lex_state = 19, .external_lex_state = 5}, - [269] = {.lex_state = 19, .external_lex_state = 3}, - [270] = {.lex_state = 19, .external_lex_state = 4}, - [271] = {.lex_state = 19, .external_lex_state = 4}, - [272] = {.lex_state = 19, .external_lex_state = 7}, - [273] = {.lex_state = 19, .external_lex_state = 3}, - [274] = {.lex_state = 19, .external_lex_state = 7}, - [275] = {.lex_state = 3, .external_lex_state = 20}, - [276] = {.lex_state = 3, .external_lex_state = 20}, - [277] = {.lex_state = 3, .external_lex_state = 20}, - [278] = {.lex_state = 3, .external_lex_state = 20}, - [279] = {.lex_state = 3, .external_lex_state = 20}, - [280] = {.lex_state = 19, .external_lex_state = 21}, - [281] = {.lex_state = 19, .external_lex_state = 21}, - [282] = {.lex_state = 19, .external_lex_state = 21}, - [283] = {.lex_state = 19, .external_lex_state = 21}, - [284] = {.lex_state = 19, .external_lex_state = 21}, - [285] = {.lex_state = 19, .external_lex_state = 21}, - [286] = {.lex_state = 19, .external_lex_state = 21}, - [287] = {.lex_state = 19, .external_lex_state = 21}, + [269] = {.lex_state = 19, .external_lex_state = 5}, + [270] = {.lex_state = 19, .external_lex_state = 3}, + [271] = {.lex_state = 19, .external_lex_state = 5}, + [272] = {.lex_state = 19, .external_lex_state = 5}, + [273] = {.lex_state = 19, .external_lex_state = 4}, + [274] = {.lex_state = 19, .external_lex_state = 3}, + [275] = {.lex_state = 19, .external_lex_state = 3}, + [276] = {.lex_state = 19, .external_lex_state = 3}, + [277] = {.lex_state = 19, .external_lex_state = 3}, + [278] = {.lex_state = 19, .external_lex_state = 3}, + [279] = {.lex_state = 19, .external_lex_state = 7}, + [280] = {.lex_state = 19, .external_lex_state = 3}, + [281] = {.lex_state = 19, .external_lex_state = 7}, + [282] = {.lex_state = 3, .external_lex_state = 20}, + [283] = {.lex_state = 3, .external_lex_state = 20}, + [284] = {.lex_state = 3, .external_lex_state = 20}, + [285] = {.lex_state = 3, .external_lex_state = 20}, + [286] = {.lex_state = 3, .external_lex_state = 20}, + [287] = {.lex_state = 3, .external_lex_state = 20}, [288] = {.lex_state = 19, .external_lex_state = 21}, [289] = {.lex_state = 19, .external_lex_state = 21}, - [290] = {.lex_state = 19, .external_lex_state = 22}, - [291] = {.lex_state = 19, .external_lex_state = 23}, - [292] = {.lex_state = 19, .external_lex_state = 23}, - [293] = {.lex_state = 19, .external_lex_state = 23}, - [294] = {.lex_state = 19, .external_lex_state = 23}, - [295] = {.lex_state = 19, .external_lex_state = 23}, - [296] = {.lex_state = 1, .external_lex_state = 24}, - [297] = {.lex_state = 19, .external_lex_state = 25}, - [298] = {.lex_state = 1, .external_lex_state = 24}, - [299] = {.lex_state = 1, .external_lex_state = 24}, - [300] = {.lex_state = 2, .external_lex_state = 20}, - [301] = {.lex_state = 2, .external_lex_state = 20}, - [302] = {.lex_state = 1, .external_lex_state = 24}, - [303] = {.lex_state = 2, .external_lex_state = 20}, - [304] = {.lex_state = 2, .external_lex_state = 20}, - [305] = {.lex_state = 2, .external_lex_state = 20}, - [306] = {.lex_state = 2, .external_lex_state = 20}, + [290] = {.lex_state = 19, .external_lex_state = 21}, + [291] = {.lex_state = 19, .external_lex_state = 21}, + [292] = {.lex_state = 19, .external_lex_state = 21}, + [293] = {.lex_state = 19, .external_lex_state = 21}, + [294] = {.lex_state = 19, .external_lex_state = 21}, + [295] = {.lex_state = 19, .external_lex_state = 21}, + [296] = {.lex_state = 19, .external_lex_state = 21}, + [297] = {.lex_state = 19, .external_lex_state = 21}, + [298] = {.lex_state = 19, .external_lex_state = 21}, + [299] = {.lex_state = 19, .external_lex_state = 21}, + [300] = {.lex_state = 19, .external_lex_state = 22}, + [301] = {.lex_state = 19, .external_lex_state = 22}, + [302] = {.lex_state = 19, .external_lex_state = 23}, + [303] = {.lex_state = 19, .external_lex_state = 22}, + [304] = {.lex_state = 19, .external_lex_state = 22}, + [305] = {.lex_state = 19, .external_lex_state = 22}, + [306] = {.lex_state = 19, .external_lex_state = 22}, [307] = {.lex_state = 2, .external_lex_state = 20}, - [308] = {.lex_state = 2, .external_lex_state = 20}, - [309] = {.lex_state = 2, .external_lex_state = 20}, - [310] = {.lex_state = 2, .external_lex_state = 20}, - [311] = {.lex_state = 1, .external_lex_state = 24}, - [312] = {.lex_state = 1, .external_lex_state = 24}, - [313] = {.lex_state = 19, .external_lex_state = 25}, - [314] = {.lex_state = 19, .external_lex_state = 25}, - [315] = {.lex_state = 19, .external_lex_state = 20}, - [316] = {.lex_state = 19, .external_lex_state = 20}, - [317] = {.lex_state = 19, .external_lex_state = 20}, - [318] = {.lex_state = 19, .external_lex_state = 22}, - [319] = {.lex_state = 19, .external_lex_state = 26}, - [320] = {.lex_state = 19, .external_lex_state = 26}, - [321] = {.lex_state = 19, .external_lex_state = 20}, - [322] = {.lex_state = 19, .external_lex_state = 20}, - [323] = {.lex_state = 19, .external_lex_state = 27}, - [324] = {.lex_state = 19, .external_lex_state = 26}, - [325] = {.lex_state = 19}, - [326] = {.lex_state = 2}, - [327] = {.lex_state = 19, .external_lex_state = 27}, - [328] = {.lex_state = 19}, - [329] = {.lex_state = 19, .external_lex_state = 27}, - [330] = {.lex_state = 19, .external_lex_state = 27}, - [331] = {.lex_state = 19, .external_lex_state = 27}, - [332] = {.lex_state = 2}, - [333] = {.lex_state = 19, .external_lex_state = 27}, - [334] = {.lex_state = 19, .external_lex_state = 27}, - [335] = {.lex_state = 19, .external_lex_state = 27}, - [336] = {.lex_state = 19, .external_lex_state = 27}, - [337] = {.lex_state = 19, .external_lex_state = 27}, - [338] = {.lex_state = 19, .external_lex_state = 27}, - [339] = {.lex_state = 19, .external_lex_state = 27}, - [340] = {.lex_state = 19, .external_lex_state = 27}, - [341] = {.lex_state = 19}, - [342] = {.lex_state = 19}, - [343] = {.lex_state = 2}, - [344] = {.lex_state = 2}, - [345] = {.lex_state = 19}, - [346] = {.lex_state = 19}, - [347] = {.lex_state = 2}, - [348] = {.lex_state = 2}, - [349] = {.lex_state = 19}, - [350] = {.lex_state = 19}, - [351] = {.lex_state = 2}, - [352] = {.lex_state = 2}, + [308] = {.lex_state = 19, .external_lex_state = 24}, + [309] = {.lex_state = 1, .external_lex_state = 25}, + [310] = {.lex_state = 1, .external_lex_state = 25}, + [311] = {.lex_state = 19, .external_lex_state = 24}, + [312] = {.lex_state = 1, .external_lex_state = 25}, + [313] = {.lex_state = 2, .external_lex_state = 20}, + [314] = {.lex_state = 1, .external_lex_state = 25}, + [315] = {.lex_state = 2, .external_lex_state = 20}, + [316] = {.lex_state = 1, .external_lex_state = 25}, + [317] = {.lex_state = 2, .external_lex_state = 20}, + [318] = {.lex_state = 2, .external_lex_state = 20}, + [319] = {.lex_state = 2, .external_lex_state = 20}, + [320] = {.lex_state = 2, .external_lex_state = 20}, + [321] = {.lex_state = 2, .external_lex_state = 20}, + [322] = {.lex_state = 2, .external_lex_state = 20}, + [323] = {.lex_state = 2, .external_lex_state = 20}, + [324] = {.lex_state = 2, .external_lex_state = 20}, + [325] = {.lex_state = 2, .external_lex_state = 20}, + [326] = {.lex_state = 1, .external_lex_state = 25}, + [327] = {.lex_state = 1, .external_lex_state = 25}, + [328] = {.lex_state = 19, .external_lex_state = 20}, + [329] = {.lex_state = 19, .external_lex_state = 24}, + [330] = {.lex_state = 19, .external_lex_state = 26}, + [331] = {.lex_state = 19, .external_lex_state = 26}, + [332] = {.lex_state = 19, .external_lex_state = 23}, + [333] = {.lex_state = 19, .external_lex_state = 20}, + [334] = {.lex_state = 19, .external_lex_state = 20}, + [335] = {.lex_state = 19, .external_lex_state = 20}, + [336] = {.lex_state = 19, .external_lex_state = 20}, + [337] = {.lex_state = 19, .external_lex_state = 20}, + [338] = {.lex_state = 19}, + [339] = {.lex_state = 19, .external_lex_state = 26}, + [340] = {.lex_state = 19}, + [341] = {.lex_state = 2}, + [342] = {.lex_state = 2}, + [343] = {.lex_state = 19, .external_lex_state = 27}, + [344] = {.lex_state = 19, .external_lex_state = 27}, + [345] = {.lex_state = 19, .external_lex_state = 27}, + [346] = {.lex_state = 19, .external_lex_state = 27}, + [347] = {.lex_state = 19, .external_lex_state = 27}, + [348] = {.lex_state = 19, .external_lex_state = 27}, + [349] = {.lex_state = 19, .external_lex_state = 27}, + [350] = {.lex_state = 19, .external_lex_state = 27}, + [351] = {.lex_state = 19, .external_lex_state = 27}, + [352] = {.lex_state = 19, .external_lex_state = 27}, [353] = {.lex_state = 19, .external_lex_state = 27}, - [354] = {.lex_state = 19}, - [355] = {.lex_state = 2}, - [356] = {.lex_state = 2}, + [354] = {.lex_state = 19, .external_lex_state = 27}, + [355] = {.lex_state = 19, .external_lex_state = 27}, + [356] = {.lex_state = 19, .external_lex_state = 27}, [357] = {.lex_state = 19, .external_lex_state = 27}, - [358] = {.lex_state = 19, .external_lex_state = 20}, + [358] = {.lex_state = 19}, [359] = {.lex_state = 19}, - [360] = {.lex_state = 19, .external_lex_state = 20}, - [361] = {.lex_state = 19}, - [362] = {.lex_state = 19, .external_lex_state = 28}, - [363] = {.lex_state = 19, .external_lex_state = 28}, - [364] = {.lex_state = 19}, - [365] = {.lex_state = 19}, - [366] = {.lex_state = 4}, - [367] = {.lex_state = 4}, - [368] = {.lex_state = 0, .external_lex_state = 29}, - [369] = {.lex_state = 19, .external_lex_state = 22}, - [370] = {.lex_state = 1, .external_lex_state = 24}, + [360] = {.lex_state = 2}, + [361] = {.lex_state = 2}, + [362] = {.lex_state = 19}, + [363] = {.lex_state = 19}, + [364] = {.lex_state = 2}, + [365] = {.lex_state = 2}, + [366] = {.lex_state = 19}, + [367] = {.lex_state = 19}, + [368] = {.lex_state = 2}, + [369] = {.lex_state = 2}, + [370] = {.lex_state = 19}, [371] = {.lex_state = 19}, - [372] = {.lex_state = 19}, - [373] = {.lex_state = 19, .external_lex_state = 20}, - [374] = {.lex_state = 19, .external_lex_state = 22}, - [375] = {.lex_state = 5}, - [376] = {.lex_state = 1, .external_lex_state = 24}, - [377] = {.lex_state = 5}, - [378] = {.lex_state = 0, .external_lex_state = 29}, - [379] = {.lex_state = 5}, - [380] = {.lex_state = 0, .external_lex_state = 30}, - [381] = {.lex_state = 5}, - [382] = {.lex_state = 5}, - [383] = {.lex_state = 5}, - [384] = {.lex_state = 19, .external_lex_state = 22}, - [385] = {.lex_state = 19, .external_lex_state = 28}, - [386] = {.lex_state = 4}, - [387] = {.lex_state = 0, .external_lex_state = 30}, - [388] = {.lex_state = 19}, - [389] = {.lex_state = 0, .external_lex_state = 29}, - [390] = {.lex_state = 0, .external_lex_state = 31}, - [391] = {.lex_state = 39, .external_lex_state = 32}, - [392] = {.lex_state = 39, .external_lex_state = 32}, - [393] = {.lex_state = 39, .external_lex_state = 32}, - [394] = {.lex_state = 39, .external_lex_state = 32}, - [395] = {.lex_state = 0, .external_lex_state = 31}, - [396] = {.lex_state = 0, .external_lex_state = 31}, - [397] = {.lex_state = 39, .external_lex_state = 32}, - [398] = {.lex_state = 39, .external_lex_state = 32}, - [399] = {.lex_state = 39, .external_lex_state = 32}, - [400] = {.lex_state = 39, .external_lex_state = 32}, - [401] = {.lex_state = 39, .external_lex_state = 32}, - [402] = {.lex_state = 0, .external_lex_state = 31}, - [403] = {.lex_state = 39, .external_lex_state = 32}, - [404] = {.lex_state = 39, .external_lex_state = 32}, - [405] = {.lex_state = 0, .external_lex_state = 30}, - [406] = {.lex_state = 39, .external_lex_state = 32}, - [407] = {.lex_state = 39, .external_lex_state = 32}, - [408] = {.lex_state = 0, .external_lex_state = 31}, - [409] = {.lex_state = 0, .external_lex_state = 31}, - [410] = {.lex_state = 39, .external_lex_state = 32}, - [411] = {.lex_state = 39, .external_lex_state = 32}, - [412] = {.lex_state = 39, .external_lex_state = 32}, - [413] = {.lex_state = 0, .external_lex_state = 33}, - [414] = {.lex_state = 0, .external_lex_state = 33}, - [415] = {.lex_state = 0, .external_lex_state = 34}, - [416] = {.lex_state = 0, .external_lex_state = 35}, - [417] = {.lex_state = 0, .external_lex_state = 33}, - [418] = {.lex_state = 0, .external_lex_state = 34}, - [419] = {.lex_state = 0, .external_lex_state = 33}, - [420] = {.lex_state = 0, .external_lex_state = 35}, + [372] = {.lex_state = 2}, + [373] = {.lex_state = 2}, + [374] = {.lex_state = 19}, + [375] = {.lex_state = 2}, + [376] = {.lex_state = 2}, + [377] = {.lex_state = 19, .external_lex_state = 27}, + [378] = {.lex_state = 19, .external_lex_state = 27}, + [379] = {.lex_state = 19, .external_lex_state = 27}, + [380] = {.lex_state = 19}, + [381] = {.lex_state = 19, .external_lex_state = 20}, + [382] = {.lex_state = 19}, + [383] = {.lex_state = 19, .external_lex_state = 20}, + [384] = {.lex_state = 19, .external_lex_state = 28}, + [385] = {.lex_state = 4}, + [386] = {.lex_state = 0, .external_lex_state = 29}, + [387] = {.lex_state = 19}, + [388] = {.lex_state = 4}, + [389] = {.lex_state = 19, .external_lex_state = 28}, + [390] = {.lex_state = 19}, + [391] = {.lex_state = 0, .external_lex_state = 30}, + [392] = {.lex_state = 5}, + [393] = {.lex_state = 19, .external_lex_state = 20}, + [394] = {.lex_state = 5}, + [395] = {.lex_state = 19, .external_lex_state = 23}, + [396] = {.lex_state = 5}, + [397] = {.lex_state = 5}, + [398] = {.lex_state = 0, .external_lex_state = 29}, + [399] = {.lex_state = 5}, + [400] = {.lex_state = 19, .external_lex_state = 23}, + [401] = {.lex_state = 1, .external_lex_state = 25}, + [402] = {.lex_state = 5}, + [403] = {.lex_state = 5}, + [404] = {.lex_state = 19}, + [405] = {.lex_state = 1, .external_lex_state = 25}, + [406] = {.lex_state = 0, .external_lex_state = 31}, + [407] = {.lex_state = 19}, + [408] = {.lex_state = 19, .external_lex_state = 28}, + [409] = {.lex_state = 19, .external_lex_state = 23}, + [410] = {.lex_state = 0, .external_lex_state = 30}, + [411] = {.lex_state = 4}, + [412] = {.lex_state = 0, .external_lex_state = 31}, + [413] = {.lex_state = 19}, + [414] = {.lex_state = 0, .external_lex_state = 29}, + [415] = {.lex_state = 39, .external_lex_state = 32}, + [416] = {.lex_state = 39, .external_lex_state = 32}, + [417] = {.lex_state = 0, .external_lex_state = 31}, + [418] = {.lex_state = 0, .external_lex_state = 33}, + [419] = {.lex_state = 39, .external_lex_state = 32}, + [420] = {.lex_state = 39, .external_lex_state = 32}, [421] = {.lex_state = 39, .external_lex_state = 32}, - [422] = {.lex_state = 0, .external_lex_state = 35}, - [423] = {.lex_state = 0, .external_lex_state = 34}, - [424] = {.lex_state = 0, .external_lex_state = 34}, - [425] = {.lex_state = 0, .external_lex_state = 33}, - [426] = {.lex_state = 0, .external_lex_state = 35}, - [427] = {.lex_state = 0, .external_lex_state = 35}, + [422] = {.lex_state = 39, .external_lex_state = 32}, + [423] = {.lex_state = 0, .external_lex_state = 33}, + [424] = {.lex_state = 39, .external_lex_state = 32}, + [425] = {.lex_state = 39, .external_lex_state = 32}, + [426] = {.lex_state = 39, .external_lex_state = 32}, + [427] = {.lex_state = 39, .external_lex_state = 32}, [428] = {.lex_state = 0, .external_lex_state = 33}, - [429] = {.lex_state = 0, .external_lex_state = 34}, - [430] = {.lex_state = 0, .external_lex_state = 35}, - [431] = {.lex_state = 0, .external_lex_state = 34}, - [432] = {.lex_state = 5}, - [433] = {.lex_state = 0, .external_lex_state = 36}, - [434] = {.lex_state = 0, .external_lex_state = 36}, - [435] = {.lex_state = 0, .external_lex_state = 36}, - [436] = {.lex_state = 0, .external_lex_state = 36}, - [437] = {.lex_state = 0, .external_lex_state = 36}, - [438] = {.lex_state = 0, .external_lex_state = 36}, - [439] = {.lex_state = 0, .external_lex_state = 36}, - [440] = {.lex_state = 0, .external_lex_state = 36}, - [441] = {.lex_state = 0, .external_lex_state = 36}, - [442] = {.lex_state = 0, .external_lex_state = 36}, - [443] = {.lex_state = 0, .external_lex_state = 36}, - [444] = {.lex_state = 0, .external_lex_state = 36}, + [429] = {.lex_state = 39, .external_lex_state = 32}, + [430] = {.lex_state = 39, .external_lex_state = 32}, + [431] = {.lex_state = 39, .external_lex_state = 32}, + [432] = {.lex_state = 0, .external_lex_state = 33}, + [433] = {.lex_state = 0, .external_lex_state = 30}, + [434] = {.lex_state = 39, .external_lex_state = 32}, + [435] = {.lex_state = 39, .external_lex_state = 32}, + [436] = {.lex_state = 0, .external_lex_state = 33}, + [437] = {.lex_state = 39, .external_lex_state = 32}, + [438] = {.lex_state = 39, .external_lex_state = 32}, + [439] = {.lex_state = 0, .external_lex_state = 33}, + [440] = {.lex_state = 0, .external_lex_state = 33}, + [441] = {.lex_state = 39, .external_lex_state = 32}, + [442] = {.lex_state = 0, .external_lex_state = 34}, + [443] = {.lex_state = 0, .external_lex_state = 35}, + [444] = {.lex_state = 0, .external_lex_state = 34}, [445] = {.lex_state = 0, .external_lex_state = 36}, - [446] = {.lex_state = 0, .external_lex_state = 36}, - [447] = {.lex_state = 0, .external_lex_state = 36}, - [448] = {.lex_state = 0, .external_lex_state = 36}, + [446] = {.lex_state = 0, .external_lex_state = 34}, + [447] = {.lex_state = 0, .external_lex_state = 35}, + [448] = {.lex_state = 0, .external_lex_state = 35}, [449] = {.lex_state = 0, .external_lex_state = 36}, [450] = {.lex_state = 0, .external_lex_state = 36}, - [451] = {.lex_state = 0, .external_lex_state = 36}, - [452] = {.lex_state = 0, .external_lex_state = 36}, + [451] = {.lex_state = 0, .external_lex_state = 34}, + [452] = {.lex_state = 0, .external_lex_state = 34}, [453] = {.lex_state = 0, .external_lex_state = 36}, [454] = {.lex_state = 0, .external_lex_state = 36}, - [455] = {.lex_state = 0, .external_lex_state = 36}, - [456] = {.lex_state = 0, .external_lex_state = 36}, - [457] = {.lex_state = 0, .external_lex_state = 29}, - [458] = {.lex_state = 0, .external_lex_state = 36}, - [459] = {.lex_state = 0, .external_lex_state = 29}, - [460] = {.lex_state = 0, .external_lex_state = 36}, - [461] = {.lex_state = 5}, - [462] = {.lex_state = 5}, - [463] = {.lex_state = 0, .external_lex_state = 29}, + [455] = {.lex_state = 0, .external_lex_state = 34}, + [456] = {.lex_state = 0, .external_lex_state = 35}, + [457] = {.lex_state = 39, .external_lex_state = 32}, + [458] = {.lex_state = 0, .external_lex_state = 34}, + [459] = {.lex_state = 0, .external_lex_state = 35}, + [460] = {.lex_state = 0, .external_lex_state = 35}, + [461] = {.lex_state = 39, .external_lex_state = 32}, + [462] = {.lex_state = 0, .external_lex_state = 36}, + [463] = {.lex_state = 0, .external_lex_state = 35}, [464] = {.lex_state = 0, .external_lex_state = 36}, - [465] = {.lex_state = 5}, - [466] = {.lex_state = 0, .external_lex_state = 36}, - [467] = {.lex_state = 5}, - [468] = {.lex_state = 0, .external_lex_state = 36}, - [469] = {.lex_state = 0, .external_lex_state = 29}, - [470] = {.lex_state = 5}, - [471] = {.lex_state = 5}, - [472] = {.lex_state = 0, .external_lex_state = 29}, - [473] = {.lex_state = 0, .external_lex_state = 36}, - [474] = {.lex_state = 5}, - [475] = {.lex_state = 0, .external_lex_state = 29}, - [476] = {.lex_state = 0, .external_lex_state = 36}, - [477] = {.lex_state = 5}, - [478] = {.lex_state = 0, .external_lex_state = 36}, - [479] = {.lex_state = 0, .external_lex_state = 36}, - [480] = {.lex_state = 0, .external_lex_state = 36}, - [481] = {.lex_state = 0, .external_lex_state = 36}, - [482] = {.lex_state = 0, .external_lex_state = 36}, + [465] = {.lex_state = 0, .external_lex_state = 29}, + [466] = {.lex_state = 0, .external_lex_state = 37}, + [467] = {.lex_state = 0, .external_lex_state = 37}, + [468] = {.lex_state = 0, .external_lex_state = 37}, + [469] = {.lex_state = 0, .external_lex_state = 37}, + [470] = {.lex_state = 0, .external_lex_state = 37}, + [471] = {.lex_state = 0, .external_lex_state = 37}, + [472] = {.lex_state = 0, .external_lex_state = 37}, + [473] = {.lex_state = 0, .external_lex_state = 37}, + [474] = {.lex_state = 0, .external_lex_state = 37}, + [475] = {.lex_state = 0, .external_lex_state = 37}, + [476] = {.lex_state = 0, .external_lex_state = 37}, + [477] = {.lex_state = 0, .external_lex_state = 37}, + [478] = {.lex_state = 0, .external_lex_state = 37}, + [479] = {.lex_state = 0, .external_lex_state = 37}, + [480] = {.lex_state = 0, .external_lex_state = 37}, + [481] = {.lex_state = 0, .external_lex_state = 37}, + [482] = {.lex_state = 5}, [483] = {.lex_state = 5}, - [484] = {.lex_state = 0, .external_lex_state = 36}, - [485] = {.lex_state = 0, .external_lex_state = 36}, - [486] = {.lex_state = 0, .external_lex_state = 36}, - [487] = {.lex_state = 0, .external_lex_state = 36}, - [488] = {.lex_state = 0, .external_lex_state = 36}, - [489] = {.lex_state = 0, .external_lex_state = 29}, - [490] = {.lex_state = 0, .external_lex_state = 30}, - [491] = {.lex_state = 0, .external_lex_state = 37}, - [492] = {.lex_state = 0, .external_lex_state = 30}, - [493] = {.lex_state = 0, .external_lex_state = 30}, - [494] = {.lex_state = 0, .external_lex_state = 30}, - [495] = {.lex_state = 0, .external_lex_state = 30}, - [496] = {.lex_state = 0, .external_lex_state = 32}, - [497] = {.lex_state = 0, .external_lex_state = 30}, - [498] = {.lex_state = 0, .external_lex_state = 32}, - [499] = {.lex_state = 0, .external_lex_state = 32}, - [500] = {.lex_state = 0, .external_lex_state = 30}, - [501] = {.lex_state = 7, .external_lex_state = 27}, - [502] = {.lex_state = 39}, - [503] = {.lex_state = 7, .external_lex_state = 27}, - [504] = {.lex_state = 8}, - [505] = {.lex_state = 39, .external_lex_state = 38}, - [506] = {.lex_state = 39}, - [507] = {.lex_state = 8}, - [508] = {.lex_state = 8}, - [509] = {.lex_state = 39, .external_lex_state = 38}, - [510] = {.lex_state = 0, .external_lex_state = 39}, - [511] = {.lex_state = 0, .external_lex_state = 40}, - [512] = {.lex_state = 0, .external_lex_state = 41}, - [513] = {.lex_state = 0, .external_lex_state = 42}, - [514] = {.lex_state = 0, .external_lex_state = 43}, - [515] = {.lex_state = 0, .external_lex_state = 44}, - [516] = {.lex_state = 0, .external_lex_state = 45}, - [517] = {.lex_state = 0, .external_lex_state = 46}, - [518] = {.lex_state = 0, .external_lex_state = 47}, - [519] = {.lex_state = 0, .external_lex_state = 48}, - [520] = {.lex_state = 0, .external_lex_state = 49}, - [521] = {.lex_state = 0, .external_lex_state = 50}, - [522] = {.lex_state = 0, .external_lex_state = 51}, - [523] = {.lex_state = 0, .external_lex_state = 52}, - [524] = {.lex_state = 0, .external_lex_state = 53}, - [525] = {.lex_state = 0, .external_lex_state = 54}, - [526] = {.lex_state = 0, .external_lex_state = 39}, - [527] = {.lex_state = 0, .external_lex_state = 40}, - [528] = {.lex_state = 0, .external_lex_state = 41}, - [529] = {.lex_state = 0, .external_lex_state = 39}, - [530] = {.lex_state = 0, .external_lex_state = 42}, - [531] = {.lex_state = 0, .external_lex_state = 40}, - [532] = {.lex_state = 0, .external_lex_state = 43}, - [533] = {.lex_state = 0, .external_lex_state = 39}, - [534] = {.lex_state = 0, .external_lex_state = 40}, - [535] = {.lex_state = 0, .external_lex_state = 41}, - [536] = {.lex_state = 0, .external_lex_state = 42}, - [537] = {.lex_state = 0, .external_lex_state = 43}, - [538] = {.lex_state = 0, .external_lex_state = 44}, - [539] = {.lex_state = 0, .external_lex_state = 45}, - [540] = {.lex_state = 0, .external_lex_state = 46}, - [541] = {.lex_state = 0, .external_lex_state = 47}, - [542] = {.lex_state = 0, .external_lex_state = 48}, - [543] = {.lex_state = 0, .external_lex_state = 49}, - [544] = {.lex_state = 0, .external_lex_state = 50}, - [545] = {.lex_state = 0, .external_lex_state = 51}, - [546] = {.lex_state = 0, .external_lex_state = 52}, - [547] = {.lex_state = 0, .external_lex_state = 53}, - [548] = {.lex_state = 0, .external_lex_state = 54}, - [549] = {.lex_state = 0, .external_lex_state = 41}, - [550] = {.lex_state = 0, .external_lex_state = 44}, + [484] = {.lex_state = 5}, + [485] = {.lex_state = 0, .external_lex_state = 37}, + [486] = {.lex_state = 0, .external_lex_state = 29}, + [487] = {.lex_state = 0, .external_lex_state = 29}, + [488] = {.lex_state = 5}, + [489] = {.lex_state = 5}, + [490] = {.lex_state = 5}, + [491] = {.lex_state = 5}, + [492] = {.lex_state = 0, .external_lex_state = 37}, + [493] = {.lex_state = 0, .external_lex_state = 37}, + [494] = {.lex_state = 0, .external_lex_state = 37}, + [495] = {.lex_state = 5}, + [496] = {.lex_state = 0, .external_lex_state = 37}, + [497] = {.lex_state = 0, .external_lex_state = 37}, + [498] = {.lex_state = 0, .external_lex_state = 29}, + [499] = {.lex_state = 0, .external_lex_state = 37}, + [500] = {.lex_state = 5}, + [501] = {.lex_state = 0, .external_lex_state = 37}, + [502] = {.lex_state = 0, .external_lex_state = 37}, + [503] = {.lex_state = 0, .external_lex_state = 37}, + [504] = {.lex_state = 0, .external_lex_state = 29}, + [505] = {.lex_state = 0, .external_lex_state = 29}, + [506] = {.lex_state = 0, .external_lex_state = 29}, + [507] = {.lex_state = 0, .external_lex_state = 37}, + [508] = {.lex_state = 0, .external_lex_state = 37}, + [509] = {.lex_state = 0, .external_lex_state = 37}, + [510] = {.lex_state = 0, .external_lex_state = 37}, + [511] = {.lex_state = 0, .external_lex_state = 37}, + [512] = {.lex_state = 0, .external_lex_state = 37}, + [513] = {.lex_state = 0, .external_lex_state = 37}, + [514] = {.lex_state = 0, .external_lex_state = 37}, + [515] = {.lex_state = 0, .external_lex_state = 37}, + [516] = {.lex_state = 0, .external_lex_state = 37}, + [517] = {.lex_state = 0, .external_lex_state = 37}, + [518] = {.lex_state = 0, .external_lex_state = 37}, + [519] = {.lex_state = 0, .external_lex_state = 37}, + [520] = {.lex_state = 0, .external_lex_state = 37}, + [521] = {.lex_state = 0, .external_lex_state = 37}, + [522] = {.lex_state = 5}, + [523] = {.lex_state = 0, .external_lex_state = 37}, + [524] = {.lex_state = 0, .external_lex_state = 30}, + [525] = {.lex_state = 0, .external_lex_state = 30}, + [526] = {.lex_state = 0, .external_lex_state = 32}, + [527] = {.lex_state = 0, .external_lex_state = 30}, + [528] = {.lex_state = 0, .external_lex_state = 31}, + [529] = {.lex_state = 0, .external_lex_state = 30}, + [530] = {.lex_state = 0, .external_lex_state = 30}, + [531] = {.lex_state = 0, .external_lex_state = 30}, + [532] = {.lex_state = 0, .external_lex_state = 31}, + [533] = {.lex_state = 0, .external_lex_state = 32}, + [534] = {.lex_state = 0, .external_lex_state = 31}, + [535] = {.lex_state = 0, .external_lex_state = 32}, + [536] = {.lex_state = 0, .external_lex_state = 31}, + [537] = {.lex_state = 0, .external_lex_state = 31}, + [538] = {.lex_state = 0, .external_lex_state = 31}, + [539] = {.lex_state = 0, .external_lex_state = 30}, + [540] = {.lex_state = 0, .external_lex_state = 31}, + [541] = {.lex_state = 0, .external_lex_state = 38}, + [542] = {.lex_state = 0, .external_lex_state = 39}, + [543] = {.lex_state = 7, .external_lex_state = 27}, + [544] = {.lex_state = 8}, + [545] = {.lex_state = 0, .external_lex_state = 40}, + [546] = {.lex_state = 39, .external_lex_state = 41}, + [547] = {.lex_state = 39}, + [548] = {.lex_state = 0, .external_lex_state = 42}, + [549] = {.lex_state = 0, .external_lex_state = 43}, + [550] = {.lex_state = 0, .external_lex_state = 42}, [551] = {.lex_state = 0, .external_lex_state = 42}, - [552] = {.lex_state = 0, .external_lex_state = 45}, + [552] = {.lex_state = 0, .external_lex_state = 43}, [553] = {.lex_state = 0, .external_lex_state = 43}, - [554] = {.lex_state = 0, .external_lex_state = 46}, - [555] = {.lex_state = 0, .external_lex_state = 44}, - [556] = {.lex_state = 0, .external_lex_state = 47}, - [557] = {.lex_state = 0, .external_lex_state = 45}, - [558] = {.lex_state = 0, .external_lex_state = 48}, - [559] = {.lex_state = 0, .external_lex_state = 46}, - [560] = {.lex_state = 0, .external_lex_state = 39}, - [561] = {.lex_state = 0, .external_lex_state = 40}, - [562] = {.lex_state = 0, .external_lex_state = 41}, - [563] = {.lex_state = 0, .external_lex_state = 42}, - [564] = {.lex_state = 0, .external_lex_state = 43}, - [565] = {.lex_state = 0, .external_lex_state = 55}, - [566] = {.lex_state = 0, .external_lex_state = 45}, - [567] = {.lex_state = 0, .external_lex_state = 46}, - [568] = {.lex_state = 0, .external_lex_state = 47}, - [569] = {.lex_state = 0, .external_lex_state = 48}, - [570] = {.lex_state = 0, .external_lex_state = 49}, - [571] = {.lex_state = 0, .external_lex_state = 50}, - [572] = {.lex_state = 0, .external_lex_state = 51}, - [573] = {.lex_state = 0, .external_lex_state = 52}, - [574] = {.lex_state = 0, .external_lex_state = 53}, - [575] = {.lex_state = 0, .external_lex_state = 54}, - [576] = {.lex_state = 0, .external_lex_state = 49}, - [577] = {.lex_state = 0, .external_lex_state = 39}, - [578] = {.lex_state = 0, .external_lex_state = 40}, - [579] = {.lex_state = 0, .external_lex_state = 41}, - [580] = {.lex_state = 0, .external_lex_state = 42}, - [581] = {.lex_state = 0, .external_lex_state = 43}, - [582] = {.lex_state = 0, .external_lex_state = 44}, - [583] = {.lex_state = 0, .external_lex_state = 45}, - [584] = {.lex_state = 0, .external_lex_state = 46}, - [585] = {.lex_state = 0, .external_lex_state = 47}, + [554] = {.lex_state = 0, .external_lex_state = 43}, + [555] = {.lex_state = 0, .external_lex_state = 42}, + [556] = {.lex_state = 0, .external_lex_state = 43}, + [557] = {.lex_state = 0, .external_lex_state = 43}, + [558] = {.lex_state = 0, .external_lex_state = 40}, + [559] = {.lex_state = 8}, + [560] = {.lex_state = 8}, + [561] = {.lex_state = 39, .external_lex_state = 41}, + [562] = {.lex_state = 0, .external_lex_state = 44}, + [563] = {.lex_state = 0, .external_lex_state = 45}, + [564] = {.lex_state = 0, .external_lex_state = 46}, + [565] = {.lex_state = 0, .external_lex_state = 47}, + [566] = {.lex_state = 0, .external_lex_state = 48}, + [567] = {.lex_state = 0, .external_lex_state = 49}, + [568] = {.lex_state = 0, .external_lex_state = 50}, + [569] = {.lex_state = 0, .external_lex_state = 51}, + [570] = {.lex_state = 0, .external_lex_state = 52}, + [571] = {.lex_state = 0, .external_lex_state = 53}, + [572] = {.lex_state = 0, .external_lex_state = 54}, + [573] = {.lex_state = 0, .external_lex_state = 55}, + [574] = {.lex_state = 0, .external_lex_state = 56}, + [575] = {.lex_state = 0, .external_lex_state = 57}, + [576] = {.lex_state = 0, .external_lex_state = 58}, + [577] = {.lex_state = 0, .external_lex_state = 44}, + [578] = {.lex_state = 0, .external_lex_state = 45}, + [579] = {.lex_state = 0, .external_lex_state = 44}, + [580] = {.lex_state = 0, .external_lex_state = 39}, + [581] = {.lex_state = 0, .external_lex_state = 45}, + [582] = {.lex_state = 0, .external_lex_state = 46}, + [583] = {.lex_state = 0, .external_lex_state = 39}, + [584] = {.lex_state = 0, .external_lex_state = 47}, + [585] = {.lex_state = 0, .external_lex_state = 46}, [586] = {.lex_state = 0, .external_lex_state = 48}, - [587] = {.lex_state = 0, .external_lex_state = 49}, - [588] = {.lex_state = 0, .external_lex_state = 50}, - [589] = {.lex_state = 0, .external_lex_state = 51}, - [590] = {.lex_state = 0, .external_lex_state = 52}, - [591] = {.lex_state = 0, .external_lex_state = 53}, - [592] = {.lex_state = 0, .external_lex_state = 54}, - [593] = {.lex_state = 0, .external_lex_state = 47}, - [594] = {.lex_state = 0, .external_lex_state = 50}, - [595] = {.lex_state = 0, .external_lex_state = 48}, - [596] = {.lex_state = 0, .external_lex_state = 56}, - [597] = {.lex_state = 0, .external_lex_state = 51}, - [598] = {.lex_state = 0, .external_lex_state = 49}, - [599] = {.lex_state = 0, .external_lex_state = 52}, - [600] = {.lex_state = 0, .external_lex_state = 50}, - [601] = {.lex_state = 0, .external_lex_state = 57}, - [602] = {.lex_state = 0, .external_lex_state = 53}, + [587] = {.lex_state = 0, .external_lex_state = 47}, + [588] = {.lex_state = 0, .external_lex_state = 49}, + [589] = {.lex_state = 0, .external_lex_state = 44}, + [590] = {.lex_state = 0, .external_lex_state = 45}, + [591] = {.lex_state = 0, .external_lex_state = 46}, + [592] = {.lex_state = 0, .external_lex_state = 47}, + [593] = {.lex_state = 0, .external_lex_state = 48}, + [594] = {.lex_state = 0, .external_lex_state = 49}, + [595] = {.lex_state = 0, .external_lex_state = 50}, + [596] = {.lex_state = 0, .external_lex_state = 51}, + [597] = {.lex_state = 0, .external_lex_state = 52}, + [598] = {.lex_state = 0, .external_lex_state = 53}, + [599] = {.lex_state = 0, .external_lex_state = 54}, + [600] = {.lex_state = 0, .external_lex_state = 55}, + [601] = {.lex_state = 0, .external_lex_state = 56}, + [602] = {.lex_state = 0, .external_lex_state = 57}, [603] = {.lex_state = 0, .external_lex_state = 58}, - [604] = {.lex_state = 0, .external_lex_state = 51}, - [605] = {.lex_state = 0, .external_lex_state = 54}, - [606] = {.lex_state = 0, .external_lex_state = 57}, - [607] = {.lex_state = 0, .external_lex_state = 57}, - [608] = {.lex_state = 0, .external_lex_state = 52}, - [609] = {.lex_state = 0, .external_lex_state = 58}, - [610] = {.lex_state = 0, .external_lex_state = 58}, - [611] = {.lex_state = 0, .external_lex_state = 58}, - [612] = {.lex_state = 0, .external_lex_state = 53}, - [613] = {.lex_state = 0, .external_lex_state = 57}, - [614] = {.lex_state = 0, .external_lex_state = 58}, - [615] = {.lex_state = 0, .external_lex_state = 58}, - [616] = {.lex_state = 0, .external_lex_state = 54}, - [617] = {.lex_state = 7, .external_lex_state = 27}, - [618] = {.lex_state = 0, .external_lex_state = 56}, - [619] = {.lex_state = 7, .external_lex_state = 27}, - [620] = {.lex_state = 7, .external_lex_state = 27}, - [621] = {.lex_state = 0, .external_lex_state = 44}, - [622] = {.lex_state = 0, .external_lex_state = 36}, - [623] = {.lex_state = 0, .external_lex_state = 36}, - [624] = {.lex_state = 0, .external_lex_state = 34}, - [625] = {.lex_state = 0, .external_lex_state = 34}, - [626] = {.lex_state = 0, .external_lex_state = 35}, - [627] = {.lex_state = 0, .external_lex_state = 33}, - [628] = {.lex_state = 9}, - [629] = {.lex_state = 8}, - [630] = {.lex_state = 0, .external_lex_state = 59}, - [631] = {.lex_state = 10}, - [632] = {.lex_state = 0, .external_lex_state = 60}, - [633] = {.lex_state = 5}, - [634] = {.lex_state = 0, .external_lex_state = 34}, - [635] = {.lex_state = 0, .external_lex_state = 36}, - [636] = {.lex_state = 0, .external_lex_state = 36}, - [637] = {.lex_state = 0, .external_lex_state = 36}, - [638] = {.lex_state = 0, .external_lex_state = 36}, - [639] = {.lex_state = 0, .external_lex_state = 36}, - [640] = {.lex_state = 0, .external_lex_state = 36}, - [641] = {.lex_state = 0, .external_lex_state = 36}, - [642] = {.lex_state = 0, .external_lex_state = 36}, - [643] = {.lex_state = 0, .external_lex_state = 36}, - [644] = {.lex_state = 0, .external_lex_state = 36}, - [645] = {.lex_state = 0, .external_lex_state = 36}, - [646] = {.lex_state = 0, .external_lex_state = 36}, - [647] = {.lex_state = 0, .external_lex_state = 36}, - [648] = {.lex_state = 0, .external_lex_state = 36}, - [649] = {.lex_state = 0, .external_lex_state = 36}, - [650] = {.lex_state = 0, .external_lex_state = 36}, - [651] = {.lex_state = 0, .external_lex_state = 33}, - [652] = {.lex_state = 0, .external_lex_state = 34}, - [653] = {.lex_state = 0, .external_lex_state = 35}, - [654] = {.lex_state = 0, .external_lex_state = 33}, - [655] = {.lex_state = 0, .external_lex_state = 31}, - [656] = {.lex_state = 0, .external_lex_state = 20}, - [657] = {.lex_state = 0, .external_lex_state = 20}, - [658] = {.lex_state = 0, .external_lex_state = 59}, - [659] = {.lex_state = 0, .external_lex_state = 61}, - [660] = {.lex_state = 0, .external_lex_state = 62}, - [661] = {.lex_state = 0, .external_lex_state = 36}, - [662] = {.lex_state = 0, .external_lex_state = 34}, - [663] = {.lex_state = 0, .external_lex_state = 63}, - [664] = {.lex_state = 0, .external_lex_state = 61}, - [665] = {.lex_state = 0, .external_lex_state = 61}, - [666] = {.lex_state = 0, .external_lex_state = 63}, - [667] = {.lex_state = 0, .external_lex_state = 31}, - [668] = {.lex_state = 0, .external_lex_state = 36}, - [669] = {.lex_state = 0, .external_lex_state = 33}, - [670] = {.lex_state = 39, .external_lex_state = 32}, - [671] = {.lex_state = 0, .external_lex_state = 36}, - [672] = {.lex_state = 0, .external_lex_state = 20}, - [673] = {.lex_state = 0, .external_lex_state = 64}, - [674] = {.lex_state = 0, .external_lex_state = 64}, - [675] = {.lex_state = 0, .external_lex_state = 65}, - [676] = {.lex_state = 0, .external_lex_state = 35}, - [677] = {.lex_state = 0, .external_lex_state = 36}, - [678] = {.lex_state = 0, .external_lex_state = 61}, - [679] = {.lex_state = 0, .external_lex_state = 65}, - [680] = {.lex_state = 0, .external_lex_state = 36}, - [681] = {.lex_state = 0, .external_lex_state = 66}, - [682] = {.lex_state = 0, .external_lex_state = 36}, - [683] = {.lex_state = 0, .external_lex_state = 36}, + [604] = {.lex_state = 0, .external_lex_state = 48}, + [605] = {.lex_state = 0, .external_lex_state = 50}, + [606] = {.lex_state = 0, .external_lex_state = 49}, + [607] = {.lex_state = 0, .external_lex_state = 51}, + [608] = {.lex_state = 0, .external_lex_state = 50}, + [609] = {.lex_state = 0, .external_lex_state = 52}, + [610] = {.lex_state = 0, .external_lex_state = 51}, + [611] = {.lex_state = 0, .external_lex_state = 53}, + [612] = {.lex_state = 0, .external_lex_state = 44}, + [613] = {.lex_state = 0, .external_lex_state = 45}, + [614] = {.lex_state = 0, .external_lex_state = 39}, + [615] = {.lex_state = 0, .external_lex_state = 46}, + [616] = {.lex_state = 0, .external_lex_state = 47}, + [617] = {.lex_state = 0, .external_lex_state = 48}, + [618] = {.lex_state = 0, .external_lex_state = 49}, + [619] = {.lex_state = 0, .external_lex_state = 50}, + [620] = {.lex_state = 0, .external_lex_state = 51}, + [621] = {.lex_state = 0, .external_lex_state = 52}, + [622] = {.lex_state = 0, .external_lex_state = 53}, + [623] = {.lex_state = 0, .external_lex_state = 54}, + [624] = {.lex_state = 0, .external_lex_state = 55}, + [625] = {.lex_state = 0, .external_lex_state = 56}, + [626] = {.lex_state = 0, .external_lex_state = 57}, + [627] = {.lex_state = 0, .external_lex_state = 58}, + [628] = {.lex_state = 0, .external_lex_state = 52}, + [629] = {.lex_state = 0, .external_lex_state = 54}, + [630] = {.lex_state = 0, .external_lex_state = 53}, + [631] = {.lex_state = 0, .external_lex_state = 55}, + [632] = {.lex_state = 0, .external_lex_state = 44}, + [633] = {.lex_state = 0, .external_lex_state = 45}, + [634] = {.lex_state = 0, .external_lex_state = 39}, + [635] = {.lex_state = 0, .external_lex_state = 46}, + [636] = {.lex_state = 0, .external_lex_state = 47}, + [637] = {.lex_state = 0, .external_lex_state = 48}, + [638] = {.lex_state = 0, .external_lex_state = 49}, + [639] = {.lex_state = 0, .external_lex_state = 50}, + [640] = {.lex_state = 0, .external_lex_state = 51}, + [641] = {.lex_state = 0, .external_lex_state = 52}, + [642] = {.lex_state = 0, .external_lex_state = 53}, + [643] = {.lex_state = 0, .external_lex_state = 54}, + [644] = {.lex_state = 0, .external_lex_state = 55}, + [645] = {.lex_state = 0, .external_lex_state = 56}, + [646] = {.lex_state = 0, .external_lex_state = 57}, + [647] = {.lex_state = 0, .external_lex_state = 58}, + [648] = {.lex_state = 0, .external_lex_state = 54}, + [649] = {.lex_state = 0, .external_lex_state = 56}, + [650] = {.lex_state = 0, .external_lex_state = 55}, + [651] = {.lex_state = 0, .external_lex_state = 57}, + [652] = {.lex_state = 0, .external_lex_state = 56}, + [653] = {.lex_state = 0, .external_lex_state = 58}, + [654] = {.lex_state = 0, .external_lex_state = 57}, + [655] = {.lex_state = 0, .external_lex_state = 44}, + [656] = {.lex_state = 0, .external_lex_state = 45}, + [657] = {.lex_state = 0, .external_lex_state = 39}, + [658] = {.lex_state = 0, .external_lex_state = 46}, + [659] = {.lex_state = 0, .external_lex_state = 47}, + [660] = {.lex_state = 0, .external_lex_state = 48}, + [661] = {.lex_state = 0, .external_lex_state = 49}, + [662] = {.lex_state = 0, .external_lex_state = 50}, + [663] = {.lex_state = 0, .external_lex_state = 51}, + [664] = {.lex_state = 0, .external_lex_state = 52}, + [665] = {.lex_state = 0, .external_lex_state = 53}, + [666] = {.lex_state = 0, .external_lex_state = 54}, + [667] = {.lex_state = 0, .external_lex_state = 55}, + [668] = {.lex_state = 0, .external_lex_state = 56}, + [669] = {.lex_state = 0, .external_lex_state = 57}, + [670] = {.lex_state = 0, .external_lex_state = 58}, + [671] = {.lex_state = 0, .external_lex_state = 58}, + [672] = {.lex_state = 7, .external_lex_state = 27}, + [673] = {.lex_state = 7, .external_lex_state = 27}, + [674] = {.lex_state = 0, .external_lex_state = 59}, + [675] = {.lex_state = 7, .external_lex_state = 27}, + [676] = {.lex_state = 39}, + [677] = {.lex_state = 7, .external_lex_state = 27}, + [678] = {.lex_state = 7, .external_lex_state = 27}, + [679] = {.lex_state = 0, .external_lex_state = 39}, + [680] = {.lex_state = 0, .external_lex_state = 37}, + [681] = {.lex_state = 0, .external_lex_state = 60}, + [682] = {.lex_state = 0, .external_lex_state = 37}, + [683] = {.lex_state = 0, .external_lex_state = 35}, [684] = {.lex_state = 0, .external_lex_state = 36}, [685] = {.lex_state = 0, .external_lex_state = 35}, - [686] = {.lex_state = 0, .external_lex_state = 66}, - [687] = {.lex_state = 0, .external_lex_state = 20}, - [688] = {.lex_state = 0, .external_lex_state = 36}, - [689] = {.lex_state = 39, .external_lex_state = 22}, - [690] = {.lex_state = 39, .external_lex_state = 22}, - [691] = {.lex_state = 0, .external_lex_state = 31}, - [692] = {.lex_state = 0, .external_lex_state = 36}, - [693] = {.lex_state = 39, .external_lex_state = 32}, - [694] = {.lex_state = 0, .external_lex_state = 31}, - [695] = {.lex_state = 0, .external_lex_state = 20}, - [696] = {.lex_state = 0, .external_lex_state = 59}, - [697] = {.lex_state = 0, .external_lex_state = 35}, - [698] = {.lex_state = 0, .external_lex_state = 36}, - [699] = {.lex_state = 0, .external_lex_state = 36}, - [700] = {.lex_state = 0, .external_lex_state = 61}, - [701] = {.lex_state = 0, .external_lex_state = 36}, - [702] = {.lex_state = 0, .external_lex_state = 36}, - [703] = {.lex_state = 0, .external_lex_state = 36}, - [704] = {.lex_state = 0, .external_lex_state = 36}, - [705] = {.lex_state = 0, .external_lex_state = 36}, - [706] = {.lex_state = 0, .external_lex_state = 36}, - [707] = {.lex_state = 0, .external_lex_state = 31}, - [708] = {.lex_state = 0, .external_lex_state = 36}, - [709] = {.lex_state = 0, .external_lex_state = 59}, + [686] = {.lex_state = 0, .external_lex_state = 37}, + [687] = {.lex_state = 0, .external_lex_state = 37}, + [688] = {.lex_state = 0, .external_lex_state = 37}, + [689] = {.lex_state = 0, .external_lex_state = 34}, + [690] = {.lex_state = 0, .external_lex_state = 33}, + [691] = {.lex_state = 0, .external_lex_state = 37}, + [692] = {.lex_state = 0, .external_lex_state = 37}, + [693] = {.lex_state = 0, .external_lex_state = 37}, + [694] = {.lex_state = 0, .external_lex_state = 37}, + [695] = {.lex_state = 0, .external_lex_state = 37}, + [696] = {.lex_state = 0, .external_lex_state = 37}, + [697] = {.lex_state = 0, .external_lex_state = 37}, + [698] = {.lex_state = 0, .external_lex_state = 37}, + [699] = {.lex_state = 0, .external_lex_state = 37}, + [700] = {.lex_state = 0, .external_lex_state = 20}, + [701] = {.lex_state = 0, .external_lex_state = 37}, + [702] = {.lex_state = 0, .external_lex_state = 37}, + [703] = {.lex_state = 0, .external_lex_state = 61}, + [704] = {.lex_state = 0, .external_lex_state = 20}, + [705] = {.lex_state = 0, .external_lex_state = 34}, + [706] = {.lex_state = 0, .external_lex_state = 33}, + [707] = {.lex_state = 9}, + [708] = {.lex_state = 39, .external_lex_state = 32}, + [709] = {.lex_state = 0, .external_lex_state = 61}, [710] = {.lex_state = 0, .external_lex_state = 36}, - [711] = {.lex_state = 0, .external_lex_state = 36}, - [712] = {.lex_state = 0, .external_lex_state = 36}, - [713] = {.lex_state = 0, .external_lex_state = 36}, - [714] = {.lex_state = 0, .external_lex_state = 36}, - [715] = {.lex_state = 0, .external_lex_state = 36}, - [716] = {.lex_state = 0, .external_lex_state = 61}, - [717] = {.lex_state = 0, .external_lex_state = 36}, - [718] = {.lex_state = 0, .external_lex_state = 36}, - [719] = {.lex_state = 0, .external_lex_state = 62}, - [720] = {.lex_state = 0, .external_lex_state = 22}, - [721] = {.lex_state = 0, .external_lex_state = 67}, - [722] = {.lex_state = 0, .external_lex_state = 60}, - [723] = {.lex_state = 0, .external_lex_state = 22}, - [724] = {.lex_state = 0, .external_lex_state = 62}, - [725] = {.lex_state = 0, .external_lex_state = 67}, + [711] = {.lex_state = 0, .external_lex_state = 37}, + [712] = {.lex_state = 0, .external_lex_state = 62}, + [713] = {.lex_state = 0, .external_lex_state = 20}, + [714] = {.lex_state = 0, .external_lex_state = 20}, + [715] = {.lex_state = 0, .external_lex_state = 20}, + [716] = {.lex_state = 5}, + [717] = {.lex_state = 0, .external_lex_state = 63}, + [718] = {.lex_state = 0, .external_lex_state = 63}, + [719] = {.lex_state = 0, .external_lex_state = 37}, + [720] = {.lex_state = 0, .external_lex_state = 37}, + [721] = {.lex_state = 39, .external_lex_state = 23}, + [722] = {.lex_state = 39, .external_lex_state = 23}, + [723] = {.lex_state = 0, .external_lex_state = 64}, + [724] = {.lex_state = 0, .external_lex_state = 64}, + [725] = {.lex_state = 0, .external_lex_state = 33}, [726] = {.lex_state = 0, .external_lex_state = 33}, [727] = {.lex_state = 0, .external_lex_state = 36}, - [728] = {.lex_state = 10, .external_lex_state = 27}, - [729] = {.lex_state = 0, .external_lex_state = 40}, - [730] = {.lex_state = 0}, - [731] = {.lex_state = 0, .external_lex_state = 43}, - [732] = {.lex_state = 0, .external_lex_state = 46}, - [733] = {.lex_state = 0, .external_lex_state = 49}, - [734] = {.lex_state = 0, .external_lex_state = 32}, - [735] = {.lex_state = 0, .external_lex_state = 32}, - [736] = {.lex_state = 0, .external_lex_state = 39}, - [737] = {.lex_state = 0, .external_lex_state = 52}, - [738] = {.lex_state = 0, .external_lex_state = 32}, - [739] = {.lex_state = 0, .external_lex_state = 41}, - [740] = {.lex_state = 0, .external_lex_state = 40}, - [741] = {.lex_state = 0, .external_lex_state = 68}, - [742] = {.lex_state = 0, .external_lex_state = 44}, - [743] = {.lex_state = 0, .external_lex_state = 68}, - [744] = {.lex_state = 0, .external_lex_state = 47}, - [745] = {.lex_state = 10, .external_lex_state = 27}, - [746] = {.lex_state = 0, .external_lex_state = 50}, - [747] = {.lex_state = 0, .external_lex_state = 53}, - [748] = {.lex_state = 0, .external_lex_state = 69}, - [749] = {.lex_state = 10, .external_lex_state = 27}, - [750] = {.lex_state = 0, .external_lex_state = 28}, - [751] = {.lex_state = 0, .external_lex_state = 40}, - [752] = {.lex_state = 10, .external_lex_state = 27}, - [753] = {.lex_state = 0, .external_lex_state = 32}, - [754] = {.lex_state = 0, .external_lex_state = 28}, - [755] = {.lex_state = 0, .external_lex_state = 70}, - [756] = {.lex_state = 0, .external_lex_state = 32}, - [757] = {.lex_state = 0, .external_lex_state = 32}, - [758] = {.lex_state = 0}, - [759] = {.lex_state = 0}, - [760] = {.lex_state = 0, .external_lex_state = 32}, - [761] = {.lex_state = 0, .external_lex_state = 70}, - [762] = {.lex_state = 0, .external_lex_state = 32}, - [763] = {.lex_state = 0, .external_lex_state = 42}, - [764] = {.lex_state = 0, .external_lex_state = 20}, - [765] = {.lex_state = 0, .external_lex_state = 32}, - [766] = {.lex_state = 0, .external_lex_state = 45}, - [767] = {.lex_state = 0, .external_lex_state = 48}, - [768] = {.lex_state = 0, .external_lex_state = 51}, - [769] = {.lex_state = 0, .external_lex_state = 54}, - [770] = {.lex_state = 0, .external_lex_state = 32}, - [771] = {.lex_state = 0, .external_lex_state = 32}, - [772] = {.lex_state = 0, .external_lex_state = 42}, - [773] = {.lex_state = 0, .external_lex_state = 62}, - [774] = {.lex_state = 0, .external_lex_state = 68}, - [775] = {.lex_state = 0, .external_lex_state = 32}, - [776] = {.lex_state = 39}, - [777] = {.lex_state = 0, .external_lex_state = 32}, - [778] = {.lex_state = 0}, - [779] = {.lex_state = 0, .external_lex_state = 60}, - [780] = {.lex_state = 0, .external_lex_state = 63}, - [781] = {.lex_state = 0}, - [782] = {.lex_state = 10, .external_lex_state = 27}, - [783] = {.lex_state = 10, .external_lex_state = 27}, - [784] = {.lex_state = 0, .external_lex_state = 28}, - [785] = {.lex_state = 0, .external_lex_state = 70}, - [786] = {.lex_state = 0, .external_lex_state = 39}, - [787] = {.lex_state = 0, .external_lex_state = 43}, - [788] = {.lex_state = 0, .external_lex_state = 32}, - [789] = {.lex_state = 5}, - [790] = {.lex_state = 10, .external_lex_state = 27}, - [791] = {.lex_state = 0}, - [792] = {.lex_state = 0, .external_lex_state = 44}, - [793] = {.lex_state = 0, .external_lex_state = 45}, - [794] = {.lex_state = 0}, - [795] = {.lex_state = 0, .external_lex_state = 40}, - [796] = {.lex_state = 0, .external_lex_state = 68}, - [797] = {.lex_state = 0, .external_lex_state = 46}, - [798] = {.lex_state = 0, .external_lex_state = 47}, - [799] = {.lex_state = 0, .external_lex_state = 48}, - [800] = {.lex_state = 10, .external_lex_state = 27}, - [801] = {.lex_state = 0, .external_lex_state = 49}, - [802] = {.lex_state = 0, .external_lex_state = 50}, - [803] = {.lex_state = 0, .external_lex_state = 62}, - [804] = {.lex_state = 0, .external_lex_state = 43}, - [805] = {.lex_state = 0}, - [806] = {.lex_state = 10, .external_lex_state = 27}, + [728] = {.lex_state = 0, .external_lex_state = 65}, + [729] = {.lex_state = 0, .external_lex_state = 36}, + [730] = {.lex_state = 0, .external_lex_state = 34}, + [731] = {.lex_state = 0, .external_lex_state = 37}, + [732] = {.lex_state = 0, .external_lex_state = 37}, + [733] = {.lex_state = 0, .external_lex_state = 66}, + [734] = {.lex_state = 0, .external_lex_state = 37}, + [735] = {.lex_state = 0, .external_lex_state = 60}, + [736] = {.lex_state = 10}, + [737] = {.lex_state = 0, .external_lex_state = 35}, + [738] = {.lex_state = 0, .external_lex_state = 37}, + [739] = {.lex_state = 0, .external_lex_state = 37}, + [740] = {.lex_state = 0, .external_lex_state = 37}, + [741] = {.lex_state = 0, .external_lex_state = 37}, + [742] = {.lex_state = 0, .external_lex_state = 37}, + [743] = {.lex_state = 0, .external_lex_state = 37}, + [744] = {.lex_state = 0, .external_lex_state = 37}, + [745] = {.lex_state = 0, .external_lex_state = 37}, + [746] = {.lex_state = 0, .external_lex_state = 37}, + [747] = {.lex_state = 0, .external_lex_state = 37}, + [748] = {.lex_state = 0, .external_lex_state = 37}, + [749] = {.lex_state = 0, .external_lex_state = 37}, + [750] = {.lex_state = 0, .external_lex_state = 37}, + [751] = {.lex_state = 0, .external_lex_state = 37}, + [752] = {.lex_state = 0, .external_lex_state = 37}, + [753] = {.lex_state = 0, .external_lex_state = 37}, + [754] = {.lex_state = 0, .external_lex_state = 37}, + [755] = {.lex_state = 0, .external_lex_state = 37}, + [756] = {.lex_state = 0, .external_lex_state = 37}, + [757] = {.lex_state = 39, .external_lex_state = 32}, + [758] = {.lex_state = 0, .external_lex_state = 35}, + [759] = {.lex_state = 0, .external_lex_state = 35}, + [760] = {.lex_state = 0, .external_lex_state = 37}, + [761] = {.lex_state = 0, .external_lex_state = 33}, + [762] = {.lex_state = 0, .external_lex_state = 23}, + [763] = {.lex_state = 0, .external_lex_state = 66}, + [764] = {.lex_state = 0, .external_lex_state = 37}, + [765] = {.lex_state = 0, .external_lex_state = 67}, + [766] = {.lex_state = 0, .external_lex_state = 37}, + [767] = {.lex_state = 0, .external_lex_state = 65}, + [768] = {.lex_state = 0, .external_lex_state = 23}, + [769] = {.lex_state = 8}, + [770] = {.lex_state = 0, .external_lex_state = 67}, + [771] = {.lex_state = 0, .external_lex_state = 37}, + [772] = {.lex_state = 0, .external_lex_state = 37}, + [773] = {.lex_state = 0, .external_lex_state = 68}, + [774] = {.lex_state = 0, .external_lex_state = 69}, + [775] = {.lex_state = 0, .external_lex_state = 34}, + [776] = {.lex_state = 0, .external_lex_state = 36}, + [777] = {.lex_state = 0, .external_lex_state = 68}, + [778] = {.lex_state = 0, .external_lex_state = 68}, + [779] = {.lex_state = 0, .external_lex_state = 69}, + [780] = {.lex_state = 0, .external_lex_state = 69}, + [781] = {.lex_state = 0, .external_lex_state = 69}, + [782] = {.lex_state = 0, .external_lex_state = 34}, + [783] = {.lex_state = 0, .external_lex_state = 37}, + [784] = {.lex_state = 0, .external_lex_state = 68}, + [785] = {.lex_state = 0, .external_lex_state = 69}, + [786] = {.lex_state = 0, .external_lex_state = 69}, + [787] = {.lex_state = 0, .external_lex_state = 65}, + [788] = {.lex_state = 0, .external_lex_state = 37}, + [789] = {.lex_state = 0, .external_lex_state = 70}, + [790] = {.lex_state = 0, .external_lex_state = 49}, + [791] = {.lex_state = 0, .external_lex_state = 49}, + [792] = {.lex_state = 0, .external_lex_state = 52}, + [793] = {.lex_state = 0, .external_lex_state = 52}, + [794] = {.lex_state = 0, .external_lex_state = 55}, + [795] = {.lex_state = 0, .external_lex_state = 55}, + [796] = {.lex_state = 0, .external_lex_state = 58}, + [797] = {.lex_state = 0, .external_lex_state = 58}, + [798] = {.lex_state = 0, .external_lex_state = 39}, + [799] = {.lex_state = 0, .external_lex_state = 71}, + [800] = {.lex_state = 0, .external_lex_state = 72}, + [801] = {.lex_state = 0, .external_lex_state = 48}, + [802] = {.lex_state = 0, .external_lex_state = 51}, + [803] = {.lex_state = 0, .external_lex_state = 32}, + [804] = {.lex_state = 0, .external_lex_state = 44}, + [805] = {.lex_state = 0, .external_lex_state = 45}, + [806] = {.lex_state = 0}, [807] = {.lex_state = 0}, - [808] = {.lex_state = 0, .external_lex_state = 70}, - [809] = {.lex_state = 10, .external_lex_state = 27}, - [810] = {.lex_state = 0, .external_lex_state = 20}, - [811] = {.lex_state = 0, .external_lex_state = 28}, - [812] = {.lex_state = 0, .external_lex_state = 70}, - [813] = {.lex_state = 0, .external_lex_state = 43}, - [814] = {.lex_state = 0, .external_lex_state = 51}, - [815] = {.lex_state = 39, .external_lex_state = 38}, - [816] = {.lex_state = 0, .external_lex_state = 32}, - [817] = {.lex_state = 5}, - [818] = {.lex_state = 0, .external_lex_state = 52}, - [819] = {.lex_state = 0, .external_lex_state = 53}, - [820] = {.lex_state = 0, .external_lex_state = 32}, - [821] = {.lex_state = 0, .external_lex_state = 39}, - [822] = {.lex_state = 0, .external_lex_state = 54}, + [808] = {.lex_state = 0, .external_lex_state = 60}, + [809] = {.lex_state = 0, .external_lex_state = 71}, + [810] = {.lex_state = 0, .external_lex_state = 32}, + [811] = {.lex_state = 0, .external_lex_state = 54}, + [812] = {.lex_state = 0, .external_lex_state = 72}, + [813] = {.lex_state = 0, .external_lex_state = 73}, + [814] = {.lex_state = 0, .external_lex_state = 47}, + [815] = {.lex_state = 0, .external_lex_state = 46}, + [816] = {.lex_state = 10, .external_lex_state = 27}, + [817] = {.lex_state = 0, .external_lex_state = 20}, + [818] = {.lex_state = 0, .external_lex_state = 28}, + [819] = {.lex_state = 0, .external_lex_state = 44}, + [820] = {.lex_state = 0, .external_lex_state = 57}, + [821] = {.lex_state = 0, .external_lex_state = 45}, + [822] = {.lex_state = 0, .external_lex_state = 46}, [823] = {.lex_state = 10, .external_lex_state = 27}, - [824] = {.lex_state = 0, .external_lex_state = 32}, - [825] = {.lex_state = 10, .external_lex_state = 27}, + [824] = {.lex_state = 0, .external_lex_state = 49}, + [825] = {.lex_state = 0, .external_lex_state = 52}, [826] = {.lex_state = 10, .external_lex_state = 27}, - [827] = {.lex_state = 0, .external_lex_state = 70}, - [828] = {.lex_state = 0, .external_lex_state = 64}, - [829] = {.lex_state = 10, .external_lex_state = 27}, - [830] = {.lex_state = 0}, - [831] = {.lex_state = 0, .external_lex_state = 28}, - [832] = {.lex_state = 0, .external_lex_state = 46}, - [833] = {.lex_state = 0, .external_lex_state = 46}, - [834] = {.lex_state = 0, .external_lex_state = 65}, - [835] = {.lex_state = 0, .external_lex_state = 49}, - [836] = {.lex_state = 0, .external_lex_state = 49}, - [837] = {.lex_state = 0, .external_lex_state = 66}, - [838] = {.lex_state = 0, .external_lex_state = 32}, - [839] = {.lex_state = 0, .external_lex_state = 32}, - [840] = {.lex_state = 0, .external_lex_state = 32}, - [841] = {.lex_state = 0, .external_lex_state = 52}, - [842] = {.lex_state = 0, .external_lex_state = 70}, - [843] = {.lex_state = 0, .external_lex_state = 41}, - [844] = {.lex_state = 0, .external_lex_state = 41}, - [845] = {.lex_state = 39, .external_lex_state = 22}, - [846] = {.lex_state = 0, .external_lex_state = 44}, - [847] = {.lex_state = 0, .external_lex_state = 44}, - [848] = {.lex_state = 0, .external_lex_state = 41}, - [849] = {.lex_state = 0, .external_lex_state = 70}, - [850] = {.lex_state = 0, .external_lex_state = 47}, - [851] = {.lex_state = 0, .external_lex_state = 47}, - [852] = {.lex_state = 0, .external_lex_state = 50}, - [853] = {.lex_state = 0, .external_lex_state = 50}, - [854] = {.lex_state = 0, .external_lex_state = 53}, - [855] = {.lex_state = 0, .external_lex_state = 53}, - [856] = {.lex_state = 0, .external_lex_state = 42}, - [857] = {.lex_state = 0}, + [827] = {.lex_state = 0, .external_lex_state = 47}, + [828] = {.lex_state = 0, .external_lex_state = 28}, + [829] = {.lex_state = 0, .external_lex_state = 71}, + [830] = {.lex_state = 0, .external_lex_state = 55}, + [831] = {.lex_state = 0, .external_lex_state = 65}, + [832] = {.lex_state = 10, .external_lex_state = 27}, + [833] = {.lex_state = 0, .external_lex_state = 58}, + [834] = {.lex_state = 10, .external_lex_state = 27}, + [835] = {.lex_state = 0}, + [836] = {.lex_state = 39}, + [837] = {.lex_state = 0, .external_lex_state = 39}, + [838] = {.lex_state = 0, .external_lex_state = 72}, + [839] = {.lex_state = 0}, + [840] = {.lex_state = 0, .external_lex_state = 61}, + [841] = {.lex_state = 10, .external_lex_state = 27}, + [842] = {.lex_state = 5}, + [843] = {.lex_state = 0, .external_lex_state = 47}, + [844] = {.lex_state = 0}, + [845] = {.lex_state = 10, .external_lex_state = 27}, + [846] = {.lex_state = 10, .external_lex_state = 27}, + [847] = {.lex_state = 0, .external_lex_state = 28}, + [848] = {.lex_state = 0, .external_lex_state = 71}, + [849] = {.lex_state = 0}, + [850] = {.lex_state = 0, .external_lex_state = 48}, + [851] = {.lex_state = 0, .external_lex_state = 66}, + [852] = {.lex_state = 0, .external_lex_state = 45}, + [853] = {.lex_state = 0, .external_lex_state = 49}, + [854] = {.lex_state = 0, .external_lex_state = 50}, + [855] = {.lex_state = 0, .external_lex_state = 51}, + [856] = {.lex_state = 0, .external_lex_state = 52}, + [857] = {.lex_state = 0, .external_lex_state = 53}, [858] = {.lex_state = 0}, - [859] = {.lex_state = 0, .external_lex_state = 42}, - [860] = {.lex_state = 0, .external_lex_state = 45}, - [861] = {.lex_state = 0, .external_lex_state = 45}, - [862] = {.lex_state = 0}, - [863] = {.lex_state = 0}, - [864] = {.lex_state = 0}, - [865] = {.lex_state = 0}, - [866] = {.lex_state = 0, .external_lex_state = 48}, - [867] = {.lex_state = 0, .external_lex_state = 48}, - [868] = {.lex_state = 0}, - [869] = {.lex_state = 0}, - [870] = {.lex_state = 0, .external_lex_state = 51}, - [871] = {.lex_state = 0, .external_lex_state = 22}, - [872] = {.lex_state = 0, .external_lex_state = 32}, - [873] = {.lex_state = 0, .external_lex_state = 51}, - [874] = {.lex_state = 0}, - [875] = {.lex_state = 0}, - [876] = {.lex_state = 0, .external_lex_state = 32}, - [877] = {.lex_state = 3, .external_lex_state = 27}, - [878] = {.lex_state = 7, .external_lex_state = 27}, - [879] = {.lex_state = 0}, - [880] = {.lex_state = 0}, - [881] = {.lex_state = 0}, - [882] = {.lex_state = 0}, - [883] = {.lex_state = 0, .external_lex_state = 54}, - [884] = {.lex_state = 0, .external_lex_state = 68}, - [885] = {.lex_state = 0}, - [886] = {.lex_state = 0}, - [887] = {.lex_state = 0, .external_lex_state = 32}, - [888] = {.lex_state = 0, .external_lex_state = 54}, - [889] = {.lex_state = 0}, - [890] = {.lex_state = 0}, - [891] = {.lex_state = 0, .external_lex_state = 32}, - [892] = {.lex_state = 0, .external_lex_state = 32}, - [893] = {.lex_state = 0, .external_lex_state = 32}, - [894] = {.lex_state = 0}, - [895] = {.lex_state = 0}, - [896] = {.lex_state = 0}, - [897] = {.lex_state = 0}, - [898] = {.lex_state = 0, .external_lex_state = 32}, - [899] = {.lex_state = 0, .external_lex_state = 32}, - [900] = {.lex_state = 0}, - [901] = {.lex_state = 0}, - [902] = {.lex_state = 0, .external_lex_state = 32}, - [903] = {.lex_state = 0, .external_lex_state = 32}, - [904] = {.lex_state = 0, .external_lex_state = 32}, - [905] = {.lex_state = 0}, - [906] = {.lex_state = 0}, - [907] = {.lex_state = 0, .external_lex_state = 32}, - [908] = {.lex_state = 0, .external_lex_state = 32}, - [909] = {.lex_state = 0, .external_lex_state = 32}, - [910] = {.lex_state = 0}, - [911] = {.lex_state = 0}, - [912] = {.lex_state = 0}, - [913] = {.lex_state = 0}, + [859] = {.lex_state = 0}, + [860] = {.lex_state = 0, .external_lex_state = 71}, + [861] = {.lex_state = 0, .external_lex_state = 72}, + [862] = {.lex_state = 10, .external_lex_state = 27}, + [863] = {.lex_state = 10, .external_lex_state = 27}, + [864] = {.lex_state = 0, .external_lex_state = 20}, + [865] = {.lex_state = 10, .external_lex_state = 27}, + [866] = {.lex_state = 0}, + [867] = {.lex_state = 0, .external_lex_state = 28}, + [868] = {.lex_state = 0, .external_lex_state = 71}, + [869] = {.lex_state = 39, .external_lex_state = 41}, + [870] = {.lex_state = 0, .external_lex_state = 32}, + [871] = {.lex_state = 0, .external_lex_state = 54}, + [872] = {.lex_state = 0, .external_lex_state = 71}, + [873] = {.lex_state = 5}, + [874] = {.lex_state = 0, .external_lex_state = 55}, + [875] = {.lex_state = 0, .external_lex_state = 50}, + [876] = {.lex_state = 0, .external_lex_state = 56}, + [877] = {.lex_state = 0}, + [878] = {.lex_state = 0, .external_lex_state = 57}, + [879] = {.lex_state = 0, .external_lex_state = 45}, + [880] = {.lex_state = 0, .external_lex_state = 58}, + [881] = {.lex_state = 10, .external_lex_state = 27}, + [882] = {.lex_state = 0, .external_lex_state = 44}, + [883] = {.lex_state = 0, .external_lex_state = 74}, + [884] = {.lex_state = 0, .external_lex_state = 75}, + [885] = {.lex_state = 10, .external_lex_state = 27}, + [886] = {.lex_state = 0, .external_lex_state = 50}, + [887] = {.lex_state = 10, .external_lex_state = 27}, + [888] = {.lex_state = 0, .external_lex_state = 28}, + [889] = {.lex_state = 0, .external_lex_state = 71}, + [890] = {.lex_state = 0, .external_lex_state = 74}, + [891] = {.lex_state = 0, .external_lex_state = 74}, + [892] = {.lex_state = 0, .external_lex_state = 47}, + [893] = {.lex_state = 0, .external_lex_state = 71}, + [894] = {.lex_state = 10, .external_lex_state = 27}, + [895] = {.lex_state = 0, .external_lex_state = 71}, + [896] = {.lex_state = 0, .external_lex_state = 71}, + [897] = {.lex_state = 0, .external_lex_state = 75}, + [898] = {.lex_state = 10, .external_lex_state = 27}, + [899] = {.lex_state = 0, .external_lex_state = 75}, + [900] = {.lex_state = 0, .external_lex_state = 75}, + [901] = {.lex_state = 0, .external_lex_state = 32}, + [902] = {.lex_state = 0, .external_lex_state = 63}, + [903] = {.lex_state = 0, .external_lex_state = 74}, + [904] = {.lex_state = 10, .external_lex_state = 27}, + [905] = {.lex_state = 0, .external_lex_state = 75}, + [906] = {.lex_state = 10, .external_lex_state = 27}, + [907] = {.lex_state = 0, .external_lex_state = 75}, + [908] = {.lex_state = 0, .external_lex_state = 28}, + [909] = {.lex_state = 0, .external_lex_state = 46}, + [910] = {.lex_state = 3, .external_lex_state = 27}, + [911] = {.lex_state = 0, .external_lex_state = 70}, + [912] = {.lex_state = 0, .external_lex_state = 23}, + [913] = {.lex_state = 0, .external_lex_state = 32}, [914] = {.lex_state = 0, .external_lex_state = 32}, - [915] = {.lex_state = 0, .external_lex_state = 32}, - [916] = {.lex_state = 0}, - [917] = {.lex_state = 0}, + [915] = {.lex_state = 7, .external_lex_state = 27}, + [916] = {.lex_state = 0, .external_lex_state = 72}, + [917] = {.lex_state = 0, .external_lex_state = 46}, [918] = {.lex_state = 0, .external_lex_state = 32}, [919] = {.lex_state = 0, .external_lex_state = 32}, [920] = {.lex_state = 0, .external_lex_state = 32}, [921] = {.lex_state = 0, .external_lex_state = 32}, [922] = {.lex_state = 0, .external_lex_state = 32}, [923] = {.lex_state = 0, .external_lex_state = 32}, - [924] = {.lex_state = 0, .external_lex_state = 32}, - [925] = {.lex_state = 0, .external_lex_state = 32}, - [926] = {.lex_state = 5}, - [927] = {.lex_state = 5}, - [928] = {.lex_state = 10, .external_lex_state = 27}, - [929] = {.lex_state = 5}, - [930] = {.lex_state = 0, .external_lex_state = 70}, - [931] = {.lex_state = 5}, - [932] = {.lex_state = 0, .external_lex_state = 70}, - [933] = {.lex_state = 5}, - [934] = {.lex_state = 0, .external_lex_state = 52}, - [935] = {.lex_state = 0, .external_lex_state = 27}, - [936] = {.lex_state = 51}, - [937] = {.lex_state = 0, .external_lex_state = 27}, - [938] = {.lex_state = 0, .external_lex_state = 27}, - [939] = {.lex_state = 0, .external_lex_state = 27}, - [940] = {.lex_state = 0, .external_lex_state = 27}, - [941] = {.lex_state = 0}, - [942] = {.lex_state = 0, .external_lex_state = 27}, - [943] = {.lex_state = 0, .external_lex_state = 71}, - [944] = {.lex_state = 0, .external_lex_state = 71}, - [945] = {.lex_state = 0, .external_lex_state = 72}, - [946] = {.lex_state = 0, .external_lex_state = 27}, - [947] = {.lex_state = 0, .external_lex_state = 27}, - [948] = {.lex_state = 0, .external_lex_state = 27}, - [949] = {.lex_state = 0, .external_lex_state = 73}, - [950] = {.lex_state = 0, .external_lex_state = 27}, - [951] = {.lex_state = 0, .external_lex_state = 27}, - [952] = {.lex_state = 0, .external_lex_state = 71}, - [953] = {.lex_state = 0, .external_lex_state = 27}, - [954] = {.lex_state = 0, .external_lex_state = 27}, - [955] = {.lex_state = 0, .external_lex_state = 27}, - [956] = {.lex_state = 0, .external_lex_state = 71}, - [957] = {.lex_state = 0, .external_lex_state = 27}, - [958] = {.lex_state = 0, .external_lex_state = 72}, - [959] = {.lex_state = 0, .external_lex_state = 27}, - [960] = {.lex_state = 0, .external_lex_state = 27}, - [961] = {.lex_state = 0}, - [962] = {.lex_state = 0}, - [963] = {.lex_state = 0, .external_lex_state = 27}, - [964] = {.lex_state = 3}, - [965] = {.lex_state = 0, .external_lex_state = 27}, - [966] = {.lex_state = 0, .external_lex_state = 27}, - [967] = {.lex_state = 0, .external_lex_state = 27}, - [968] = {.lex_state = 0, .external_lex_state = 27}, - [969] = {.lex_state = 0, .external_lex_state = 27}, - [970] = {.lex_state = 0, .external_lex_state = 27}, - [971] = {.lex_state = 0, .external_lex_state = 27}, - [972] = {.lex_state = 0, .external_lex_state = 27}, - [973] = {.lex_state = 0, .external_lex_state = 27}, - [974] = {.lex_state = 0, .external_lex_state = 27}, - [975] = {.lex_state = 3}, - [976] = {.lex_state = 0, .external_lex_state = 27}, - [977] = {.lex_state = 3}, - [978] = {.lex_state = 0, .external_lex_state = 27}, - [979] = {.lex_state = 0, .external_lex_state = 27}, - [980] = {.lex_state = 5}, - [981] = {.lex_state = 5}, - [982] = {.lex_state = 0, .external_lex_state = 27}, - [983] = {.lex_state = 3}, - [984] = {.lex_state = 0, .external_lex_state = 74}, - [985] = {.lex_state = 0}, - [986] = {.lex_state = 0, .external_lex_state = 27}, - [987] = {.lex_state = 0, .external_lex_state = 75}, - [988] = {.lex_state = 0, .external_lex_state = 27}, - [989] = {.lex_state = 0, .external_lex_state = 71}, - [990] = {.lex_state = 0}, - [991] = {.lex_state = 0, .external_lex_state = 27}, - [992] = {.lex_state = 0, .external_lex_state = 27}, - [993] = {.lex_state = 10}, - [994] = {.lex_state = 0, .external_lex_state = 71}, - [995] = {.lex_state = 7}, - [996] = {.lex_state = 0, .external_lex_state = 27}, - [997] = {.lex_state = 0, .external_lex_state = 27}, - [998] = {.lex_state = 11}, - [999] = {.lex_state = 0}, - [1000] = {.lex_state = 0}, - [1001] = {.lex_state = 0, .external_lex_state = 28}, - [1002] = {.lex_state = 0, .external_lex_state = 71}, - [1003] = {.lex_state = 0, .external_lex_state = 27}, - [1004] = {.lex_state = 0, .external_lex_state = 71}, - [1005] = {.lex_state = 0, .external_lex_state = 27}, - [1006] = {.lex_state = 51}, - [1007] = {.lex_state = 10}, - [1008] = {.lex_state = 0, .external_lex_state = 27}, - [1009] = {.lex_state = 51}, - [1010] = {.lex_state = 0, .external_lex_state = 27}, - [1011] = {.lex_state = 0, .external_lex_state = 27}, - [1012] = {.lex_state = 0, .external_lex_state = 27}, - [1013] = {.lex_state = 0, .external_lex_state = 27}, - [1014] = {.lex_state = 0, .external_lex_state = 38}, - [1015] = {.lex_state = 10}, - [1016] = {.lex_state = 0, .external_lex_state = 71}, - [1017] = {.lex_state = 0, .external_lex_state = 27}, - [1018] = {.lex_state = 0, .external_lex_state = 27}, - [1019] = {.lex_state = 0, .external_lex_state = 27}, - [1020] = {.lex_state = 0, .external_lex_state = 71}, - [1021] = {.lex_state = 0, .external_lex_state = 27}, - [1022] = {.lex_state = 0, .external_lex_state = 71}, - [1023] = {.lex_state = 0, .external_lex_state = 71}, - [1024] = {.lex_state = 0, .external_lex_state = 72}, + [924] = {.lex_state = 0, .external_lex_state = 53}, + [925] = {.lex_state = 0}, + [926] = {.lex_state = 0}, + [927] = {.lex_state = 0, .external_lex_state = 32}, + [928] = {.lex_state = 0, .external_lex_state = 32}, + [929] = {.lex_state = 0, .external_lex_state = 32}, + [930] = {.lex_state = 0}, + [931] = {.lex_state = 0}, + [932] = {.lex_state = 0}, + [933] = {.lex_state = 0}, + [934] = {.lex_state = 0, .external_lex_state = 32}, + [935] = {.lex_state = 0, .external_lex_state = 32}, + [936] = {.lex_state = 0}, + [937] = {.lex_state = 0}, + [938] = {.lex_state = 0, .external_lex_state = 32}, + [939] = {.lex_state = 0, .external_lex_state = 32}, + [940] = {.lex_state = 0, .external_lex_state = 32}, + [941] = {.lex_state = 0, .external_lex_state = 53}, + [942] = {.lex_state = 0}, + [943] = {.lex_state = 0}, + [944] = {.lex_state = 0, .external_lex_state = 32}, + [945] = {.lex_state = 0, .external_lex_state = 32}, + [946] = {.lex_state = 0, .external_lex_state = 32}, + [947] = {.lex_state = 0}, + [948] = {.lex_state = 0}, + [949] = {.lex_state = 0}, + [950] = {.lex_state = 0}, + [951] = {.lex_state = 0, .external_lex_state = 32}, + [952] = {.lex_state = 0, .external_lex_state = 32}, + [953] = {.lex_state = 0}, + [954] = {.lex_state = 0}, + [955] = {.lex_state = 0, .external_lex_state = 32}, + [956] = {.lex_state = 0, .external_lex_state = 32}, + [957] = {.lex_state = 0, .external_lex_state = 53}, + [958] = {.lex_state = 0}, + [959] = {.lex_state = 0}, + [960] = {.lex_state = 0, .external_lex_state = 32}, + [961] = {.lex_state = 0, .external_lex_state = 56}, + [962] = {.lex_state = 0, .external_lex_state = 56}, + [963] = {.lex_state = 0}, + [964] = {.lex_state = 0}, + [965] = {.lex_state = 0}, + [966] = {.lex_state = 0}, + [967] = {.lex_state = 39, .external_lex_state = 23}, + [968] = {.lex_state = 0}, + [969] = {.lex_state = 0}, + [970] = {.lex_state = 0, .external_lex_state = 32}, + [971] = {.lex_state = 0, .external_lex_state = 32}, + [972] = {.lex_state = 0, .external_lex_state = 39}, + [973] = {.lex_state = 0}, + [974] = {.lex_state = 0}, + [975] = {.lex_state = 0, .external_lex_state = 39}, + [976] = {.lex_state = 0, .external_lex_state = 32}, + [977] = {.lex_state = 0, .external_lex_state = 32}, + [978] = {.lex_state = 0}, + [979] = {.lex_state = 0}, + [980] = {.lex_state = 0}, + [981] = {.lex_state = 0}, + [982] = {.lex_state = 0, .external_lex_state = 64}, + [983] = {.lex_state = 0}, + [984] = {.lex_state = 0}, + [985] = {.lex_state = 5}, + [986] = {.lex_state = 0}, + [987] = {.lex_state = 0}, + [988] = {.lex_state = 0, .external_lex_state = 32}, + [989] = {.lex_state = 0, .external_lex_state = 48}, + [990] = {.lex_state = 0, .external_lex_state = 48}, + [991] = {.lex_state = 0}, + [992] = {.lex_state = 0}, + [993] = {.lex_state = 0}, + [994] = {.lex_state = 0}, + [995] = {.lex_state = 0, .external_lex_state = 32}, + [996] = {.lex_state = 0}, + [997] = {.lex_state = 0}, + [998] = {.lex_state = 0, .external_lex_state = 56}, + [999] = {.lex_state = 0, .external_lex_state = 51}, + [1000] = {.lex_state = 0, .external_lex_state = 65}, + [1001] = {.lex_state = 0, .external_lex_state = 51}, + [1002] = {.lex_state = 0, .external_lex_state = 32}, + [1003] = {.lex_state = 0, .external_lex_state = 54}, + [1004] = {.lex_state = 0, .external_lex_state = 32}, + [1005] = {.lex_state = 0, .external_lex_state = 54}, + [1006] = {.lex_state = 0, .external_lex_state = 57}, + [1007] = {.lex_state = 0, .external_lex_state = 32}, + [1008] = {.lex_state = 5}, + [1009] = {.lex_state = 0, .external_lex_state = 32}, + [1010] = {.lex_state = 5}, + [1011] = {.lex_state = 0, .external_lex_state = 32}, + [1012] = {.lex_state = 5}, + [1013] = {.lex_state = 0, .external_lex_state = 57}, + [1014] = {.lex_state = 5}, + [1015] = {.lex_state = 5}, + [1016] = {.lex_state = 0, .external_lex_state = 32}, + [1017] = {.lex_state = 0, .external_lex_state = 32}, + [1018] = {.lex_state = 0, .external_lex_state = 32}, + [1019] = {.lex_state = 0, .external_lex_state = 32}, + [1020] = {.lex_state = 0, .external_lex_state = 32}, + [1021] = {.lex_state = 0, .external_lex_state = 50}, + [1022] = {.lex_state = 0, .external_lex_state = 76}, + [1023] = {.lex_state = 0, .external_lex_state = 77}, + [1024] = {.lex_state = 0, .external_lex_state = 27}, [1025] = {.lex_state = 0, .external_lex_state = 27}, - [1026] = {.lex_state = 0, .external_lex_state = 71}, - [1027] = {.lex_state = 0, .external_lex_state = 27}, - [1028] = {.lex_state = 51}, - [1029] = {.lex_state = 0, .external_lex_state = 71}, - [1030] = {.lex_state = 0}, - [1031] = {.lex_state = 0, .external_lex_state = 71}, + [1026] = {.lex_state = 0, .external_lex_state = 27}, + [1027] = {.lex_state = 0, .external_lex_state = 78}, + [1028] = {.lex_state = 0, .external_lex_state = 27}, + [1029] = {.lex_state = 0, .external_lex_state = 27}, + [1030] = {.lex_state = 0, .external_lex_state = 27}, + [1031] = {.lex_state = 0, .external_lex_state = 27}, [1032] = {.lex_state = 0, .external_lex_state = 27}, - [1033] = {.lex_state = 0, .external_lex_state = 71}, - [1034] = {.lex_state = 0, .external_lex_state = 72}, - [1035] = {.lex_state = 0, .external_lex_state = 27}, - [1036] = {.lex_state = 0, .external_lex_state = 27}, - [1037] = {.lex_state = 10}, + [1033] = {.lex_state = 0, .external_lex_state = 27}, + [1034] = {.lex_state = 0, .external_lex_state = 79}, + [1035] = {.lex_state = 0, .external_lex_state = 80}, + [1036] = {.lex_state = 0, .external_lex_state = 76}, + [1037] = {.lex_state = 0, .external_lex_state = 81}, [1038] = {.lex_state = 0, .external_lex_state = 27}, - [1039] = {.lex_state = 0, .external_lex_state = 71}, - [1040] = {.lex_state = 0, .external_lex_state = 27}, + [1039] = {.lex_state = 10}, + [1040] = {.lex_state = 0, .external_lex_state = 76}, [1041] = {.lex_state = 0, .external_lex_state = 27}, - [1042] = {.lex_state = 0, .external_lex_state = 27}, - [1043] = {.lex_state = 51}, + [1042] = {.lex_state = 0}, + [1043] = {.lex_state = 0, .external_lex_state = 77}, [1044] = {.lex_state = 0, .external_lex_state = 27}, - [1045] = {.lex_state = 0, .external_lex_state = 27}, + [1045] = {.lex_state = 51}, [1046] = {.lex_state = 0, .external_lex_state = 27}, [1047] = {.lex_state = 0, .external_lex_state = 27}, - [1048] = {.lex_state = 0, .external_lex_state = 71}, - [1049] = {.lex_state = 0, .external_lex_state = 27}, - [1050] = {.lex_state = 51}, - [1051] = {.lex_state = 0, .external_lex_state = 71}, - [1052] = {.lex_state = 10}, - [1053] = {.lex_state = 0, .external_lex_state = 27}, + [1048] = {.lex_state = 7}, + [1049] = {.lex_state = 0}, + [1050] = {.lex_state = 0, .external_lex_state = 79}, + [1051] = {.lex_state = 0, .external_lex_state = 76}, + [1052] = {.lex_state = 0, .external_lex_state = 27}, + [1053] = {.lex_state = 0, .external_lex_state = 82}, [1054] = {.lex_state = 0, .external_lex_state = 27}, - [1055] = {.lex_state = 0}, - [1056] = {.lex_state = 0, .external_lex_state = 27}, + [1055] = {.lex_state = 0, .external_lex_state = 27}, + [1056] = {.lex_state = 0, .external_lex_state = 79}, [1057] = {.lex_state = 0, .external_lex_state = 27}, - [1058] = {.lex_state = 10}, - [1059] = {.lex_state = 0, .external_lex_state = 38}, - [1060] = {.lex_state = 0, .external_lex_state = 27}, - [1061] = {.lex_state = 0, .external_lex_state = 27}, - [1062] = {.lex_state = 0, .external_lex_state = 27}, - [1063] = {.lex_state = 0}, - [1064] = {.lex_state = 0, .external_lex_state = 27}, + [1058] = {.lex_state = 0, .external_lex_state = 76}, + [1059] = {.lex_state = 0, .external_lex_state = 27}, + [1060] = {.lex_state = 0, .external_lex_state = 79}, + [1061] = {.lex_state = 0, .external_lex_state = 28}, + [1062] = {.lex_state = 0, .external_lex_state = 76}, + [1063] = {.lex_state = 0, .external_lex_state = 27}, + [1064] = {.lex_state = 0, .external_lex_state = 76}, [1065] = {.lex_state = 0, .external_lex_state = 27}, [1066] = {.lex_state = 0, .external_lex_state = 27}, - [1067] = {.lex_state = 0, .external_lex_state = 71}, - [1068] = {.lex_state = 0}, - [1069] = {.lex_state = 0, .external_lex_state = 71}, - [1070] = {.lex_state = 0, .external_lex_state = 76}, - [1071] = {.lex_state = 51}, - [1072] = {.lex_state = 51}, + [1067] = {.lex_state = 0, .external_lex_state = 79}, + [1068] = {.lex_state = 0, .external_lex_state = 76}, + [1069] = {.lex_state = 0, .external_lex_state = 76}, + [1070] = {.lex_state = 0, .external_lex_state = 27}, + [1071] = {.lex_state = 0, .external_lex_state = 76}, + [1072] = {.lex_state = 0, .external_lex_state = 76}, [1073] = {.lex_state = 0, .external_lex_state = 27}, - [1074] = {.lex_state = 12}, - [1075] = {.lex_state = 0}, - [1076] = {.lex_state = 10}, - [1077] = {.lex_state = 5}, - [1078] = {.lex_state = 12}, - [1079] = {.lex_state = 51}, - [1080] = {.lex_state = 0, .external_lex_state = 71}, - [1081] = {.lex_state = 10}, - [1082] = {.lex_state = 0}, - [1083] = {.lex_state = 10}, - [1084] = {.lex_state = 5}, - [1085] = {.lex_state = 12}, - [1086] = {.lex_state = 51}, - [1087] = {.lex_state = 0}, - [1088] = {.lex_state = 0, .external_lex_state = 71}, - [1089] = {.lex_state = 0}, - [1090] = {.lex_state = 10}, - [1091] = {.lex_state = 5}, - [1092] = {.lex_state = 12}, - [1093] = {.lex_state = 51}, + [1074] = {.lex_state = 0, .external_lex_state = 27}, + [1075] = {.lex_state = 0, .external_lex_state = 27}, + [1076] = {.lex_state = 0, .external_lex_state = 79}, + [1077] = {.lex_state = 0, .external_lex_state = 79}, + [1078] = {.lex_state = 0, .external_lex_state = 77}, + [1079] = {.lex_state = 0, .external_lex_state = 27}, + [1080] = {.lex_state = 0, .external_lex_state = 27}, + [1081] = {.lex_state = 0, .external_lex_state = 79}, + [1082] = {.lex_state = 0, .external_lex_state = 79}, + [1083] = {.lex_state = 0, .external_lex_state = 27}, + [1084] = {.lex_state = 0, .external_lex_state = 27}, + [1085] = {.lex_state = 0, .external_lex_state = 27}, + [1086] = {.lex_state = 0, .external_lex_state = 27}, + [1087] = {.lex_state = 0, .external_lex_state = 27}, + [1088] = {.lex_state = 0, .external_lex_state = 27}, + [1089] = {.lex_state = 0, .external_lex_state = 77}, + [1090] = {.lex_state = 0, .external_lex_state = 76}, + [1091] = {.lex_state = 0, .external_lex_state = 76}, + [1092] = {.lex_state = 0, .external_lex_state = 27}, + [1093] = {.lex_state = 0, .external_lex_state = 27}, [1094] = {.lex_state = 0, .external_lex_state = 27}, - [1095] = {.lex_state = 0}, - [1096] = {.lex_state = 0}, - [1097] = {.lex_state = 10}, - [1098] = {.lex_state = 5}, - [1099] = {.lex_state = 12}, - [1100] = {.lex_state = 0, .external_lex_state = 77}, - [1101] = {.lex_state = 0}, - [1102] = {.lex_state = 0}, - [1103] = {.lex_state = 3}, - [1104] = {.lex_state = 0, .external_lex_state = 28}, - [1105] = {.lex_state = 0}, - [1106] = {.lex_state = 0, .external_lex_state = 72}, - [1107] = {.lex_state = 3}, + [1095] = {.lex_state = 0, .external_lex_state = 76}, + [1096] = {.lex_state = 0, .external_lex_state = 76}, + [1097] = {.lex_state = 0, .external_lex_state = 76}, + [1098] = {.lex_state = 0, .external_lex_state = 76}, + [1099] = {.lex_state = 0, .external_lex_state = 76}, + [1100] = {.lex_state = 0, .external_lex_state = 76}, + [1101] = {.lex_state = 0, .external_lex_state = 80}, + [1102] = {.lex_state = 0, .external_lex_state = 76}, + [1103] = {.lex_state = 0, .external_lex_state = 76}, + [1104] = {.lex_state = 0, .external_lex_state = 76}, + [1105] = {.lex_state = 0, .external_lex_state = 27}, + [1106] = {.lex_state = 0, .external_lex_state = 27}, + [1107] = {.lex_state = 0, .external_lex_state = 27}, [1108] = {.lex_state = 0, .external_lex_state = 27}, - [1109] = {.lex_state = 0}, - [1110] = {.lex_state = 0, .external_lex_state = 27}, - [1111] = {.lex_state = 3}, - [1112] = {.lex_state = 0, .external_lex_state = 27}, - [1113] = {.lex_state = 0}, + [1109] = {.lex_state = 0, .external_lex_state = 27}, + [1110] = {.lex_state = 0}, + [1111] = {.lex_state = 0, .external_lex_state = 79}, + [1112] = {.lex_state = 0, .external_lex_state = 28}, + [1113] = {.lex_state = 0, .external_lex_state = 27}, [1114] = {.lex_state = 0, .external_lex_state = 27}, - [1115] = {.lex_state = 3}, - [1116] = {.lex_state = 0, .external_lex_state = 77}, - [1117] = {.lex_state = 0}, - [1118] = {.lex_state = 0, .external_lex_state = 77}, - [1119] = {.lex_state = 0}, - [1120] = {.lex_state = 0, .external_lex_state = 77}, - [1121] = {.lex_state = 0}, - [1122] = {.lex_state = 0, .external_lex_state = 77}, - [1123] = {.lex_state = 0}, - [1124] = {.lex_state = 0}, - [1125] = {.lex_state = 0}, - [1126] = {.lex_state = 0}, - [1127] = {.lex_state = 0}, + [1115] = {.lex_state = 0, .external_lex_state = 79}, + [1116] = {.lex_state = 0, .external_lex_state = 76}, + [1117] = {.lex_state = 0, .external_lex_state = 76}, + [1118] = {.lex_state = 0, .external_lex_state = 76}, + [1119] = {.lex_state = 0, .external_lex_state = 27}, + [1120] = {.lex_state = 0, .external_lex_state = 76}, + [1121] = {.lex_state = 0, .external_lex_state = 76}, + [1122] = {.lex_state = 0, .external_lex_state = 79}, + [1123] = {.lex_state = 0, .external_lex_state = 77}, + [1124] = {.lex_state = 0, .external_lex_state = 27}, + [1125] = {.lex_state = 10}, + [1126] = {.lex_state = 11}, + [1127] = {.lex_state = 0, .external_lex_state = 27}, [1128] = {.lex_state = 0, .external_lex_state = 27}, [1129] = {.lex_state = 0, .external_lex_state = 27}, - [1130] = {.lex_state = 0, .external_lex_state = 27}, - [1131] = {.lex_state = 0, .external_lex_state = 71}, - [1132] = {.lex_state = 0, .external_lex_state = 27}, + [1130] = {.lex_state = 0}, + [1131] = {.lex_state = 0}, + [1132] = {.lex_state = 0, .external_lex_state = 79}, + [1133] = {.lex_state = 0, .external_lex_state = 27}, + [1134] = {.lex_state = 0, .external_lex_state = 27}, + [1135] = {.lex_state = 0, .external_lex_state = 27}, + [1136] = {.lex_state = 0, .external_lex_state = 27}, + [1137] = {.lex_state = 0, .external_lex_state = 27}, + [1138] = {.lex_state = 51}, + [1139] = {.lex_state = 0, .external_lex_state = 27}, + [1140] = {.lex_state = 0, .external_lex_state = 27}, + [1141] = {.lex_state = 0, .external_lex_state = 27}, + [1142] = {.lex_state = 0, .external_lex_state = 27}, + [1143] = {.lex_state = 51}, + [1144] = {.lex_state = 0, .external_lex_state = 76}, + [1145] = {.lex_state = 0, .external_lex_state = 79}, + [1146] = {.lex_state = 0, .external_lex_state = 76}, + [1147] = {.lex_state = 0, .external_lex_state = 79}, + [1148] = {.lex_state = 10}, + [1149] = {.lex_state = 0, .external_lex_state = 27}, + [1150] = {.lex_state = 0, .external_lex_state = 76}, + [1151] = {.lex_state = 0, .external_lex_state = 27}, + [1152] = {.lex_state = 0, .external_lex_state = 27}, + [1153] = {.lex_state = 0, .external_lex_state = 76}, + [1154] = {.lex_state = 0, .external_lex_state = 76}, + [1155] = {.lex_state = 0}, + [1156] = {.lex_state = 0, .external_lex_state = 76}, + [1157] = {.lex_state = 0, .external_lex_state = 27}, + [1158] = {.lex_state = 0, .external_lex_state = 76}, + [1159] = {.lex_state = 0, .external_lex_state = 76}, + [1160] = {.lex_state = 0, .external_lex_state = 76}, + [1161] = {.lex_state = 51}, + [1162] = {.lex_state = 0, .external_lex_state = 79}, + [1163] = {.lex_state = 0, .external_lex_state = 76}, + [1164] = {.lex_state = 0, .external_lex_state = 76}, + [1165] = {.lex_state = 0, .external_lex_state = 27}, + [1166] = {.lex_state = 0, .external_lex_state = 76}, + [1167] = {.lex_state = 0, .external_lex_state = 76}, + [1168] = {.lex_state = 0, .external_lex_state = 76}, + [1169] = {.lex_state = 0, .external_lex_state = 76}, + [1170] = {.lex_state = 0, .external_lex_state = 27}, + [1171] = {.lex_state = 10}, + [1172] = {.lex_state = 0, .external_lex_state = 27}, + [1173] = {.lex_state = 0, .external_lex_state = 76}, + [1174] = {.lex_state = 0, .external_lex_state = 27}, + [1175] = {.lex_state = 0, .external_lex_state = 27}, + [1176] = {.lex_state = 0, .external_lex_state = 27}, + [1177] = {.lex_state = 0, .external_lex_state = 79}, + [1178] = {.lex_state = 0, .external_lex_state = 79}, + [1179] = {.lex_state = 0, .external_lex_state = 77}, + [1180] = {.lex_state = 0, .external_lex_state = 27}, + [1181] = {.lex_state = 10}, + [1182] = {.lex_state = 0, .external_lex_state = 27}, + [1183] = {.lex_state = 0, .external_lex_state = 76}, + [1184] = {.lex_state = 51}, + [1185] = {.lex_state = 51}, + [1186] = {.lex_state = 0, .external_lex_state = 79}, + [1187] = {.lex_state = 0, .external_lex_state = 27}, + [1188] = {.lex_state = 0, .external_lex_state = 27}, + [1189] = {.lex_state = 0, .external_lex_state = 27}, + [1190] = {.lex_state = 0, .external_lex_state = 76}, + [1191] = {.lex_state = 0, .external_lex_state = 27}, + [1192] = {.lex_state = 0, .external_lex_state = 27}, + [1193] = {.lex_state = 0, .external_lex_state = 27}, + [1194] = {.lex_state = 10}, + [1195] = {.lex_state = 0, .external_lex_state = 27}, + [1196] = {.lex_state = 0, .external_lex_state = 27}, + [1197] = {.lex_state = 0, .external_lex_state = 27}, + [1198] = {.lex_state = 0, .external_lex_state = 27}, + [1199] = {.lex_state = 0, .external_lex_state = 41}, + [1200] = {.lex_state = 10}, + [1201] = {.lex_state = 3}, + [1202] = {.lex_state = 0}, + [1203] = {.lex_state = 0, .external_lex_state = 27}, + [1204] = {.lex_state = 5}, + [1205] = {.lex_state = 3}, + [1206] = {.lex_state = 0, .external_lex_state = 41}, + [1207] = {.lex_state = 51}, + [1208] = {.lex_state = 0, .external_lex_state = 27}, + [1209] = {.lex_state = 0, .external_lex_state = 27}, + [1210] = {.lex_state = 0, .external_lex_state = 27}, + [1211] = {.lex_state = 5}, + [1212] = {.lex_state = 0, .external_lex_state = 76}, + [1213] = {.lex_state = 0, .external_lex_state = 27}, + [1214] = {.lex_state = 3}, + [1215] = {.lex_state = 3}, + [1216] = {.lex_state = 10}, + [1217] = {.lex_state = 0}, + [1218] = {.lex_state = 0, .external_lex_state = 76}, + [1219] = {.lex_state = 0, .external_lex_state = 27}, + [1220] = {.lex_state = 0, .external_lex_state = 27}, + [1221] = {.lex_state = 0, .external_lex_state = 79}, + [1222] = {.lex_state = 0, .external_lex_state = 27}, + [1223] = {.lex_state = 0, .external_lex_state = 79}, + [1224] = {.lex_state = 0, .external_lex_state = 27}, + [1225] = {.lex_state = 0, .external_lex_state = 76}, + [1226] = {.lex_state = 0, .external_lex_state = 83}, + [1227] = {.lex_state = 0}, + [1228] = {.lex_state = 0, .external_lex_state = 79}, + [1229] = {.lex_state = 51}, + [1230] = {.lex_state = 0, .external_lex_state = 76}, + [1231] = {.lex_state = 0, .external_lex_state = 76}, + [1232] = {.lex_state = 0, .external_lex_state = 76}, + [1233] = {.lex_state = 0, .external_lex_state = 76}, + [1234] = {.lex_state = 0, .external_lex_state = 76}, + [1235] = {.lex_state = 0, .external_lex_state = 76}, + [1236] = {.lex_state = 0, .external_lex_state = 76}, + [1237] = {.lex_state = 0, .external_lex_state = 76}, + [1238] = {.lex_state = 0, .external_lex_state = 76}, + [1239] = {.lex_state = 0, .external_lex_state = 76}, + [1240] = {.lex_state = 0, .external_lex_state = 76}, + [1241] = {.lex_state = 0, .external_lex_state = 76}, + [1242] = {.lex_state = 0, .external_lex_state = 76}, + [1243] = {.lex_state = 51}, + [1244] = {.lex_state = 0, .external_lex_state = 27}, + [1245] = {.lex_state = 0}, + [1246] = {.lex_state = 0}, + [1247] = {.lex_state = 10}, + [1248] = {.lex_state = 5}, + [1249] = {.lex_state = 12}, + [1250] = {.lex_state = 51}, + [1251] = {.lex_state = 0, .external_lex_state = 79}, + [1252] = {.lex_state = 0, .external_lex_state = 79}, + [1253] = {.lex_state = 0}, + [1254] = {.lex_state = 10}, + [1255] = {.lex_state = 5}, + [1256] = {.lex_state = 12}, + [1257] = {.lex_state = 51}, + [1258] = {.lex_state = 0, .external_lex_state = 27}, + [1259] = {.lex_state = 0, .external_lex_state = 27}, + [1260] = {.lex_state = 0}, + [1261] = {.lex_state = 10}, + [1262] = {.lex_state = 5}, + [1263] = {.lex_state = 12}, + [1264] = {.lex_state = 51}, + [1265] = {.lex_state = 0, .external_lex_state = 27}, + [1266] = {.lex_state = 0, .external_lex_state = 76}, + [1267] = {.lex_state = 0}, + [1268] = {.lex_state = 10}, + [1269] = {.lex_state = 5}, + [1270] = {.lex_state = 12}, + [1271] = {.lex_state = 51}, + [1272] = {.lex_state = 0, .external_lex_state = 79}, + [1273] = {.lex_state = 0, .external_lex_state = 76}, + [1274] = {.lex_state = 0}, + [1275] = {.lex_state = 10}, + [1276] = {.lex_state = 5}, + [1277] = {.lex_state = 12}, + [1278] = {.lex_state = 0, .external_lex_state = 27}, + [1279] = {.lex_state = 0}, + [1280] = {.lex_state = 0}, + [1281] = {.lex_state = 3}, + [1282] = {.lex_state = 0, .external_lex_state = 27}, + [1283] = {.lex_state = 0}, + [1284] = {.lex_state = 0}, + [1285] = {.lex_state = 3}, + [1286] = {.lex_state = 0, .external_lex_state = 79}, + [1287] = {.lex_state = 0}, + [1288] = {.lex_state = 0, .external_lex_state = 76}, + [1289] = {.lex_state = 3}, + [1290] = {.lex_state = 0, .external_lex_state = 76}, + [1291] = {.lex_state = 0}, + [1292] = {.lex_state = 0, .external_lex_state = 79}, + [1293] = {.lex_state = 3}, + [1294] = {.lex_state = 0, .external_lex_state = 27}, + [1295] = {.lex_state = 0}, + [1296] = {.lex_state = 0}, + [1297] = {.lex_state = 3}, + [1298] = {.lex_state = 0, .external_lex_state = 78}, + [1299] = {.lex_state = 0}, + [1300] = {.lex_state = 0, .external_lex_state = 78}, + [1301] = {.lex_state = 0}, + [1302] = {.lex_state = 0, .external_lex_state = 78}, + [1303] = {.lex_state = 0}, + [1304] = {.lex_state = 0, .external_lex_state = 78}, + [1305] = {.lex_state = 0}, + [1306] = {.lex_state = 0, .external_lex_state = 78}, + [1307] = {.lex_state = 0}, + [1308] = {.lex_state = 0}, + [1309] = {.lex_state = 0}, + [1310] = {.lex_state = 0}, + [1311] = {.lex_state = 0}, + [1312] = {.lex_state = 0}, + [1313] = {.lex_state = 12}, + [1314] = {.lex_state = 0, .external_lex_state = 27}, + [1315] = {.lex_state = 0, .external_lex_state = 79}, + [1316] = {.lex_state = 0, .external_lex_state = 27}, + [1317] = {.lex_state = 0, .external_lex_state = 79}, + [1318] = {.lex_state = 0}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -4632,6 +5018,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_roman_parens] = ACTIONS(1), [sym__list_item_continuation] = ACTIONS(1), [sym__list_item_end] = ACTIONS(1), + [sym__list_item_content_spacer] = ACTIONS(1), [sym__close_paragraph] = ACTIONS(1), [sym__block_quote_begin] = ACTIONS(1), [sym__block_quote_continuation] = ACTIONS(1), @@ -4645,98 +5032,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__error] = ACTIONS(1), }, [1] = { - [sym_document] = STATE(1087), - [sym_frontmatter] = STATE(3), - [sym__block_with_section] = STATE(132), - [sym__block_element] = STATE(132), - [sym_section] = STATE(132), - [sym_heading] = STATE(4), - [sym_list] = STATE(132), - [sym__list_dash] = STATE(136), - [sym__list_item_dash] = STATE(634), - [sym__list_plus] = STATE(136), - [sym__list_item_plus] = STATE(651), - [sym__list_star] = STATE(136), - [sym__list_item_star] = STATE(697), - [sym__list_task] = STATE(136), - [sym__list_item_task] = STATE(707), - [sym_list_marker_task] = STATE(47), - [sym__list_definition] = STATE(136), - [sym__list_item_definition] = STATE(736), - [sym__list_decimal_period] = STATE(136), - [sym__list_item_decimal_period] = STATE(795), - [sym__list_decimal_paren] = STATE(136), - [sym__list_item_decimal_paren] = STATE(848), - [sym__list_decimal_parens] = STATE(136), - [sym__list_item_decimal_parens] = STATE(772), - [sym__list_lower_alpha_period] = STATE(136), - [sym__list_item_lower_alpha_period] = STATE(787), - [sym__list_lower_alpha_paren] = STATE(136), - [sym__list_item_lower_alpha_paren] = STATE(792), - [sym__list_lower_alpha_parens] = STATE(136), - [sym__list_item_lower_alpha_parens] = STATE(793), - [sym__list_upper_alpha_period] = STATE(136), - [sym__list_item_upper_alpha_period] = STATE(797), - [sym__list_upper_alpha_paren] = STATE(136), - [sym__list_item_upper_alpha_paren] = STATE(798), - [sym__list_upper_alpha_parens] = STATE(136), - [sym__list_item_upper_alpha_parens] = STATE(799), - [sym__list_lower_roman_period] = STATE(136), - [sym__list_item_lower_roman_period] = STATE(801), - [sym__list_lower_roman_paren] = STATE(136), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(136), - [sym__list_item_lower_roman_parens] = STATE(814), - [sym__list_upper_roman_period] = STATE(136), - [sym__list_item_upper_roman_period] = STATE(818), - [sym__list_upper_roman_paren] = STATE(136), - [sym__list_item_upper_roman_paren] = STATE(819), - [sym__list_upper_roman_parens] = STATE(136), - [sym__list_item_upper_roman_parens] = STATE(822), - [sym_table] = STATE(132), - [sym__table_content] = STATE(66), - [sym_table_separator] = STATE(66), - [sym_table_row] = STATE(72), - [sym_footnote] = STATE(132), - [sym_footnote_marker_begin] = STATE(1100), - [sym_div] = STATE(132), - [sym__div_marker_begin] = STATE(1110), - [sym_code_block] = STATE(132), - [sym_raw_block] = STATE(132), - [sym_thematic_break] = STATE(132), - [sym_block_quote] = STATE(132), - [sym__block_quote_prefix] = STATE(293), - [sym_link_reference_definition] = STATE(132), - [sym_block_attribute] = STATE(132), - [sym__paragraph] = STATE(132), - [sym__paragraph_content] = STATE(842), - [sym__paragraph_inline_content] = STATE(930), - [sym__inline] = STATE(695), - [sym__symbol_fallback] = STATE(358), - [aux_sym_document_repeat1] = STATE(5), - [aux_sym__list_dash_repeat1] = STATE(415), - [aux_sym__list_plus_repeat1] = STATE(428), - [aux_sym__list_star_repeat1] = STATE(422), - [aux_sym__list_task_repeat1] = STATE(408), - [aux_sym__list_definition_repeat1] = STATE(526), - [aux_sym__list_decimal_period_repeat1] = STATE(527), - [aux_sym__list_decimal_paren_repeat1] = STATE(528), - [aux_sym__list_decimal_parens_repeat1] = STATE(530), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(532), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(550), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(552), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(554), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(556), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(558), - [aux_sym__list_lower_roman_period_repeat1] = STATE(576), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(594), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(597), - [aux_sym__list_upper_roman_period_repeat1] = STATE(599), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(602), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(605), - [aux_sym_table_repeat1] = STATE(66), - [aux_sym__block_quote_prefix_repeat1] = STATE(320), - [aux_sym__inline_repeat1] = STATE(358), + [sym_document] = STATE(1284), + [sym_frontmatter] = STATE(4), + [sym__block_with_section] = STATE(275), + [sym__block_element] = STATE(275), + [sym_section] = STATE(275), + [sym_heading] = STATE(5), + [sym_list] = STATE(275), + [sym__list_dash] = STATE(140), + [sym__list_item_dash] = STATE(727), + [sym__list_plus] = STATE(140), + [sym__list_item_plus] = STATE(730), + [sym__list_star] = STATE(140), + [sym__list_item_star] = STATE(759), + [sym__list_task] = STATE(140), + [sym__list_item_task] = STATE(761), + [sym_list_marker_task] = STATE(46), + [sym__list_definition] = STATE(140), + [sym__list_item_definition] = STATE(819), + [sym__list_decimal_period] = STATE(140), + [sym__list_item_decimal_period] = STATE(852), + [sym__list_decimal_paren] = STATE(140), + [sym__list_item_decimal_paren] = STATE(837), + [sym__list_decimal_parens] = STATE(140), + [sym__list_item_decimal_parens] = STATE(815), + [sym__list_lower_alpha_period] = STATE(140), + [sym__list_item_lower_alpha_period] = STATE(843), + [sym__list_lower_alpha_paren] = STATE(140), + [sym__list_item_lower_alpha_paren] = STATE(850), + [sym__list_lower_alpha_parens] = STATE(140), + [sym__list_item_lower_alpha_parens] = STATE(853), + [sym__list_upper_alpha_period] = STATE(140), + [sym__list_item_upper_alpha_period] = STATE(854), + [sym__list_upper_alpha_paren] = STATE(140), + [sym__list_item_upper_alpha_paren] = STATE(855), + [sym__list_upper_alpha_parens] = STATE(140), + [sym__list_item_upper_alpha_parens] = STATE(856), + [sym__list_lower_roman_period] = STATE(140), + [sym__list_item_lower_roman_period] = STATE(857), + [sym__list_lower_roman_paren] = STATE(140), + [sym__list_item_lower_roman_paren] = STATE(871), + [sym__list_lower_roman_parens] = STATE(140), + [sym__list_item_lower_roman_parens] = STATE(874), + [sym__list_upper_roman_period] = STATE(140), + [sym__list_item_upper_roman_period] = STATE(876), + [sym__list_upper_roman_paren] = STATE(140), + [sym__list_item_upper_roman_paren] = STATE(878), + [sym__list_upper_roman_parens] = STATE(140), + [sym__list_item_upper_roman_parens] = STATE(880), + [sym_table] = STATE(275), + [sym__table_content] = STATE(71), + [sym_table_separator] = STATE(71), + [sym_table_row] = STATE(78), + [sym_footnote] = STATE(275), + [sym_footnote_marker_begin] = STATE(1027), + [sym_div] = STATE(275), + [sym__div_marker_begin] = STATE(1041), + [sym_code_block] = STATE(275), + [sym_raw_block] = STATE(275), + [sym_thematic_break] = STATE(275), + [sym_block_quote] = STATE(275), + [sym__block_quote_prefix] = STATE(306), + [sym_link_reference_definition] = STATE(275), + [sym_block_attribute] = STATE(275), + [sym__paragraph] = STATE(275), + [sym__paragraph_content] = STATE(895), + [sym__paragraph_inline_content] = STATE(896), + [sym__inline] = STATE(715), + [sym__symbol_fallback] = STATE(381), + [aux_sym_document_repeat1] = STATE(2), + [aux_sym__list_dash_repeat1] = STATE(450), + [aux_sym__list_plus_repeat1] = STATE(444), + [aux_sym__list_star_repeat1] = STATE(448), + [aux_sym__list_task_repeat1] = STATE(432), + [aux_sym__list_definition_repeat1] = STATE(577), + [aux_sym__list_decimal_period_repeat1] = STATE(578), + [aux_sym__list_decimal_paren_repeat1] = STATE(580), + [aux_sym__list_decimal_parens_repeat1] = STATE(582), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(584), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(586), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(588), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(605), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(607), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(609), + [aux_sym__list_lower_roman_period_repeat1] = STATE(611), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(629), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(631), + [aux_sym__list_upper_roman_period_repeat1] = STATE(649), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(651), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(653), + [aux_sym_table_repeat1] = STATE(71), + [aux_sym__block_quote_prefix_repeat1] = STATE(330), + [aux_sym__inline_repeat1] = STATE(381), [ts_builtin_sym_end] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(5), [anon_sym_PIPE] = ACTIONS(7), @@ -4779,96 +5166,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__thematic_break_star] = ACTIONS(69), }, [2] = { - [sym__block_with_section] = STATE(132), - [sym__block_element] = STATE(132), - [sym_section] = STATE(132), - [sym_heading] = STATE(4), - [sym_list] = STATE(132), - [sym__list_dash] = STATE(136), - [sym__list_item_dash] = STATE(634), - [sym__list_plus] = STATE(136), - [sym__list_item_plus] = STATE(651), - [sym__list_star] = STATE(136), - [sym__list_item_star] = STATE(697), - [sym__list_task] = STATE(136), - [sym__list_item_task] = STATE(707), - [sym_list_marker_task] = STATE(47), - [sym__list_definition] = STATE(136), - [sym__list_item_definition] = STATE(736), - [sym__list_decimal_period] = STATE(136), - [sym__list_item_decimal_period] = STATE(795), - [sym__list_decimal_paren] = STATE(136), - [sym__list_item_decimal_paren] = STATE(848), - [sym__list_decimal_parens] = STATE(136), - [sym__list_item_decimal_parens] = STATE(772), - [sym__list_lower_alpha_period] = STATE(136), - [sym__list_item_lower_alpha_period] = STATE(787), - [sym__list_lower_alpha_paren] = STATE(136), - [sym__list_item_lower_alpha_paren] = STATE(792), - [sym__list_lower_alpha_parens] = STATE(136), - [sym__list_item_lower_alpha_parens] = STATE(793), - [sym__list_upper_alpha_period] = STATE(136), - [sym__list_item_upper_alpha_period] = STATE(797), - [sym__list_upper_alpha_paren] = STATE(136), - [sym__list_item_upper_alpha_paren] = STATE(798), - [sym__list_upper_alpha_parens] = STATE(136), - [sym__list_item_upper_alpha_parens] = STATE(799), - [sym__list_lower_roman_period] = STATE(136), - [sym__list_item_lower_roman_period] = STATE(801), - [sym__list_lower_roman_paren] = STATE(136), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(136), - [sym__list_item_lower_roman_parens] = STATE(814), - [sym__list_upper_roman_period] = STATE(136), - [sym__list_item_upper_roman_period] = STATE(818), - [sym__list_upper_roman_paren] = STATE(136), - [sym__list_item_upper_roman_paren] = STATE(819), - [sym__list_upper_roman_parens] = STATE(136), - [sym__list_item_upper_roman_parens] = STATE(822), - [sym_table] = STATE(132), - [sym__table_content] = STATE(66), - [sym_table_separator] = STATE(66), - [sym_table_row] = STATE(72), - [sym_footnote] = STATE(132), - [sym_footnote_marker_begin] = STATE(1100), - [sym_div] = STATE(132), - [sym__div_marker_begin] = STATE(1110), - [sym_code_block] = STATE(132), - [sym_raw_block] = STATE(132), - [sym_thematic_break] = STATE(132), - [sym_block_quote] = STATE(132), - [sym__block_quote_prefix] = STATE(293), - [sym_link_reference_definition] = STATE(132), - [sym_block_attribute] = STATE(132), - [sym__paragraph] = STATE(132), - [sym__paragraph_content] = STATE(842), - [sym__paragraph_inline_content] = STATE(930), - [sym__inline] = STATE(695), - [sym__symbol_fallback] = STATE(358), + [sym__block_with_section] = STATE(275), + [sym__block_element] = STATE(275), + [sym_section] = STATE(275), + [sym_heading] = STATE(5), + [sym_list] = STATE(275), + [sym__list_dash] = STATE(140), + [sym__list_item_dash] = STATE(727), + [sym__list_plus] = STATE(140), + [sym__list_item_plus] = STATE(730), + [sym__list_star] = STATE(140), + [sym__list_item_star] = STATE(759), + [sym__list_task] = STATE(140), + [sym__list_item_task] = STATE(761), + [sym_list_marker_task] = STATE(46), + [sym__list_definition] = STATE(140), + [sym__list_item_definition] = STATE(819), + [sym__list_decimal_period] = STATE(140), + [sym__list_item_decimal_period] = STATE(852), + [sym__list_decimal_paren] = STATE(140), + [sym__list_item_decimal_paren] = STATE(837), + [sym__list_decimal_parens] = STATE(140), + [sym__list_item_decimal_parens] = STATE(815), + [sym__list_lower_alpha_period] = STATE(140), + [sym__list_item_lower_alpha_period] = STATE(843), + [sym__list_lower_alpha_paren] = STATE(140), + [sym__list_item_lower_alpha_paren] = STATE(850), + [sym__list_lower_alpha_parens] = STATE(140), + [sym__list_item_lower_alpha_parens] = STATE(853), + [sym__list_upper_alpha_period] = STATE(140), + [sym__list_item_upper_alpha_period] = STATE(854), + [sym__list_upper_alpha_paren] = STATE(140), + [sym__list_item_upper_alpha_paren] = STATE(855), + [sym__list_upper_alpha_parens] = STATE(140), + [sym__list_item_upper_alpha_parens] = STATE(856), + [sym__list_lower_roman_period] = STATE(140), + [sym__list_item_lower_roman_period] = STATE(857), + [sym__list_lower_roman_paren] = STATE(140), + [sym__list_item_lower_roman_paren] = STATE(871), + [sym__list_lower_roman_parens] = STATE(140), + [sym__list_item_lower_roman_parens] = STATE(874), + [sym__list_upper_roman_period] = STATE(140), + [sym__list_item_upper_roman_period] = STATE(876), + [sym__list_upper_roman_paren] = STATE(140), + [sym__list_item_upper_roman_paren] = STATE(878), + [sym__list_upper_roman_parens] = STATE(140), + [sym__list_item_upper_roman_parens] = STATE(880), + [sym_table] = STATE(275), + [sym__table_content] = STATE(71), + [sym_table_separator] = STATE(71), + [sym_table_row] = STATE(78), + [sym_footnote] = STATE(275), + [sym_footnote_marker_begin] = STATE(1027), + [sym_div] = STATE(275), + [sym__div_marker_begin] = STATE(1041), + [sym_code_block] = STATE(275), + [sym_raw_block] = STATE(275), + [sym_thematic_break] = STATE(275), + [sym_block_quote] = STATE(275), + [sym__block_quote_prefix] = STATE(306), + [sym_link_reference_definition] = STATE(275), + [sym_block_attribute] = STATE(275), + [sym__paragraph] = STATE(275), + [sym__paragraph_content] = STATE(895), + [sym__paragraph_inline_content] = STATE(896), + [sym__inline] = STATE(715), + [sym__symbol_fallback] = STATE(381), [aux_sym_document_repeat1] = STATE(6), - [aux_sym__list_dash_repeat1] = STATE(415), - [aux_sym__list_plus_repeat1] = STATE(428), - [aux_sym__list_star_repeat1] = STATE(422), - [aux_sym__list_task_repeat1] = STATE(408), - [aux_sym__list_definition_repeat1] = STATE(526), - [aux_sym__list_decimal_period_repeat1] = STATE(527), - [aux_sym__list_decimal_paren_repeat1] = STATE(528), - [aux_sym__list_decimal_parens_repeat1] = STATE(530), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(532), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(550), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(552), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(554), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(556), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(558), - [aux_sym__list_lower_roman_period_repeat1] = STATE(576), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(594), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(597), - [aux_sym__list_upper_roman_period_repeat1] = STATE(599), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(602), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(605), - [aux_sym_table_repeat1] = STATE(66), - [aux_sym__block_quote_prefix_repeat1] = STATE(320), - [aux_sym__inline_repeat1] = STATE(358), + [aux_sym__list_dash_repeat1] = STATE(450), + [aux_sym__list_plus_repeat1] = STATE(444), + [aux_sym__list_star_repeat1] = STATE(448), + [aux_sym__list_task_repeat1] = STATE(432), + [aux_sym__list_definition_repeat1] = STATE(577), + [aux_sym__list_decimal_period_repeat1] = STATE(578), + [aux_sym__list_decimal_paren_repeat1] = STATE(580), + [aux_sym__list_decimal_parens_repeat1] = STATE(582), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(584), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(586), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(588), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(605), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(607), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(609), + [aux_sym__list_lower_roman_period_repeat1] = STATE(611), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(629), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(631), + [aux_sym__list_upper_roman_period_repeat1] = STATE(649), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(651), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(653), + [aux_sym_table_repeat1] = STATE(71), + [aux_sym__block_quote_prefix_repeat1] = STATE(330), + [aux_sym__inline_repeat1] = STATE(381), [ts_builtin_sym_end] = ACTIONS(71), [anon_sym_LBRACK] = ACTIONS(5), [anon_sym_PIPE] = ACTIONS(7), @@ -4910,111 +5297,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__thematic_break_star] = ACTIONS(69), }, [3] = { - [sym__block_with_section] = STATE(132), - [sym__block_element] = STATE(132), - [sym_section] = STATE(132), - [sym_heading] = STATE(4), - [sym_list] = STATE(132), - [sym__list_dash] = STATE(136), - [sym__list_item_dash] = STATE(634), - [sym__list_plus] = STATE(136), - [sym__list_item_plus] = STATE(651), - [sym__list_star] = STATE(136), - [sym__list_item_star] = STATE(697), - [sym__list_task] = STATE(136), - [sym__list_item_task] = STATE(707), - [sym_list_marker_task] = STATE(47), - [sym__list_definition] = STATE(136), - [sym__list_item_definition] = STATE(736), - [sym__list_decimal_period] = STATE(136), - [sym__list_item_decimal_period] = STATE(795), - [sym__list_decimal_paren] = STATE(136), - [sym__list_item_decimal_paren] = STATE(848), - [sym__list_decimal_parens] = STATE(136), - [sym__list_item_decimal_parens] = STATE(772), - [sym__list_lower_alpha_period] = STATE(136), - [sym__list_item_lower_alpha_period] = STATE(787), - [sym__list_lower_alpha_paren] = STATE(136), - [sym__list_item_lower_alpha_paren] = STATE(792), - [sym__list_lower_alpha_parens] = STATE(136), - [sym__list_item_lower_alpha_parens] = STATE(793), - [sym__list_upper_alpha_period] = STATE(136), - [sym__list_item_upper_alpha_period] = STATE(797), - [sym__list_upper_alpha_paren] = STATE(136), - [sym__list_item_upper_alpha_paren] = STATE(798), - [sym__list_upper_alpha_parens] = STATE(136), - [sym__list_item_upper_alpha_parens] = STATE(799), - [sym__list_lower_roman_period] = STATE(136), - [sym__list_item_lower_roman_period] = STATE(801), - [sym__list_lower_roman_paren] = STATE(136), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(136), - [sym__list_item_lower_roman_parens] = STATE(814), - [sym__list_upper_roman_period] = STATE(136), - [sym__list_item_upper_roman_period] = STATE(818), - [sym__list_upper_roman_paren] = STATE(136), - [sym__list_item_upper_roman_paren] = STATE(819), - [sym__list_upper_roman_parens] = STATE(136), - [sym__list_item_upper_roman_parens] = STATE(822), - [sym_table] = STATE(132), - [sym__table_content] = STATE(66), - [sym_table_separator] = STATE(66), - [sym_table_row] = STATE(72), - [sym_footnote] = STATE(132), - [sym_footnote_marker_begin] = STATE(1100), - [sym_div] = STATE(132), - [sym__div_marker_begin] = STATE(1110), - [sym_code_block] = STATE(132), - [sym_raw_block] = STATE(132), - [sym_thematic_break] = STATE(132), - [sym_block_quote] = STATE(132), - [sym__block_quote_prefix] = STATE(293), - [sym_link_reference_definition] = STATE(132), - [sym_block_attribute] = STATE(132), - [sym__paragraph] = STATE(132), - [sym__paragraph_content] = STATE(842), - [sym__paragraph_inline_content] = STATE(930), - [sym__inline] = STATE(695), - [sym__symbol_fallback] = STATE(358), - [aux_sym_document_repeat1] = STATE(2), - [aux_sym__list_dash_repeat1] = STATE(415), - [aux_sym__list_plus_repeat1] = STATE(428), - [aux_sym__list_star_repeat1] = STATE(422), - [aux_sym__list_task_repeat1] = STATE(408), - [aux_sym__list_definition_repeat1] = STATE(526), - [aux_sym__list_decimal_period_repeat1] = STATE(527), - [aux_sym__list_decimal_paren_repeat1] = STATE(528), - [aux_sym__list_decimal_parens_repeat1] = STATE(530), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(532), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(550), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(552), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(554), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(556), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(558), - [aux_sym__list_lower_roman_period_repeat1] = STATE(576), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(594), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(597), - [aux_sym__list_upper_roman_period_repeat1] = STATE(599), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(602), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(605), - [aux_sym_table_repeat1] = STATE(66), - [aux_sym__block_quote_prefix_repeat1] = STATE(320), - [aux_sym__inline_repeat1] = STATE(358), - [ts_builtin_sym_end] = ACTIONS(73), - [anon_sym_LBRACK] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(7), + [sym__block_with_section] = STATE(159), + [sym__block_element] = STATE(159), + [sym_section] = STATE(159), + [sym_heading] = STATE(9), + [sym_list] = STATE(159), + [sym__list_dash] = STATE(166), + [sym__list_item_dash] = STATE(727), + [sym__list_plus] = STATE(166), + [sym__list_item_plus] = STATE(730), + [sym__list_star] = STATE(166), + [sym__list_item_star] = STATE(759), + [sym__list_task] = STATE(166), + [sym__list_item_task] = STATE(761), + [sym_list_marker_task] = STATE(46), + [sym__list_definition] = STATE(166), + [sym__list_item_definition] = STATE(819), + [sym__list_decimal_period] = STATE(166), + [sym__list_item_decimal_period] = STATE(852), + [sym__list_decimal_paren] = STATE(166), + [sym__list_item_decimal_paren] = STATE(837), + [sym__list_decimal_parens] = STATE(166), + [sym__list_item_decimal_parens] = STATE(815), + [sym__list_lower_alpha_period] = STATE(166), + [sym__list_item_lower_alpha_period] = STATE(843), + [sym__list_lower_alpha_paren] = STATE(166), + [sym__list_item_lower_alpha_paren] = STATE(850), + [sym__list_lower_alpha_parens] = STATE(166), + [sym__list_item_lower_alpha_parens] = STATE(853), + [sym__list_upper_alpha_period] = STATE(166), + [sym__list_item_upper_alpha_period] = STATE(854), + [sym__list_upper_alpha_paren] = STATE(166), + [sym__list_item_upper_alpha_paren] = STATE(855), + [sym__list_upper_alpha_parens] = STATE(166), + [sym__list_item_upper_alpha_parens] = STATE(856), + [sym__list_lower_roman_period] = STATE(166), + [sym__list_item_lower_roman_period] = STATE(857), + [sym__list_lower_roman_paren] = STATE(166), + [sym__list_item_lower_roman_paren] = STATE(871), + [sym__list_lower_roman_parens] = STATE(166), + [sym__list_item_lower_roman_parens] = STATE(874), + [sym__list_upper_roman_period] = STATE(166), + [sym__list_item_upper_roman_period] = STATE(876), + [sym__list_upper_roman_paren] = STATE(166), + [sym__list_item_upper_roman_paren] = STATE(878), + [sym__list_upper_roman_parens] = STATE(166), + [sym__list_item_upper_roman_parens] = STATE(880), + [sym_table] = STATE(159), + [sym__table_content] = STATE(72), + [sym_table_separator] = STATE(72), + [sym_table_row] = STATE(79), + [sym_footnote] = STATE(159), + [sym_footnote_marker_begin] = STATE(1302), + [sym_div] = STATE(159), + [sym__div_marker_begin] = STATE(1165), + [sym_code_block] = STATE(159), + [sym_raw_block] = STATE(159), + [sym_thematic_break] = STATE(159), + [sym_block_quote] = STATE(159), + [sym__block_quote_prefix] = STATE(304), + [sym_link_reference_definition] = STATE(159), + [sym_block_attribute] = STATE(159), + [sym__paragraph] = STATE(159), + [sym__paragraph_content] = STATE(848), + [sym__paragraph_inline_content] = STATE(896), + [sym__inline] = STATE(715), + [sym__symbol_fallback] = STATE(381), + [aux_sym_document_repeat1] = STATE(8), + [aux_sym__list_dash_repeat1] = STATE(454), + [aux_sym__list_plus_repeat1] = STATE(455), + [aux_sym__list_star_repeat1] = STATE(456), + [aux_sym__list_task_repeat1] = STATE(436), + [aux_sym__list_definition_repeat1] = STATE(612), + [aux_sym__list_decimal_period_repeat1] = STATE(613), + [aux_sym__list_decimal_paren_repeat1] = STATE(614), + [aux_sym__list_decimal_parens_repeat1] = STATE(615), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(616), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(617), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(618), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(619), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(620), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(621), + [aux_sym__list_lower_roman_period_repeat1] = STATE(622), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(623), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(624), + [aux_sym__list_upper_roman_period_repeat1] = STATE(625), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(626), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(627), + [aux_sym_table_repeat1] = STATE(72), + [aux_sym__block_quote_prefix_repeat1] = STATE(330), + [aux_sym__inline_repeat1] = STATE(381), + [anon_sym_LBRACK] = ACTIONS(73), + [anon_sym_PIPE] = ACTIONS(75), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(11), + [anon_sym_LBRACE] = ACTIONS(77), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(15), + [sym__block_close] = ACTIONS(79), + [sym__newline] = ACTIONS(81), [sym__heading_begin] = ACTIONS(19), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(23), + [sym__code_block_begin] = ACTIONS(83), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -5035,117 +5422,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(65), + [sym__block_quote_begin] = ACTIONS(85), [sym__block_quote_continuation] = ACTIONS(67), - [sym__thematic_break_dash] = ACTIONS(69), - [sym__thematic_break_star] = ACTIONS(69), + [sym__thematic_break_dash] = ACTIONS(87), + [sym__thematic_break_star] = ACTIONS(87), }, [4] = { - [sym__block_with_section] = STATE(154), - [sym__block_element] = STATE(154), - [sym_section] = STATE(154), - [sym_heading] = STATE(9), - [sym_list] = STATE(154), - [sym__list_dash] = STATE(162), - [sym__list_item_dash] = STATE(634), - [sym__list_plus] = STATE(162), - [sym__list_item_plus] = STATE(651), - [sym__list_star] = STATE(162), - [sym__list_item_star] = STATE(697), - [sym__list_task] = STATE(162), - [sym__list_item_task] = STATE(707), - [sym_list_marker_task] = STATE(47), - [sym__list_definition] = STATE(162), - [sym__list_item_definition] = STATE(736), - [sym__list_decimal_period] = STATE(162), - [sym__list_item_decimal_period] = STATE(795), - [sym__list_decimal_paren] = STATE(162), - [sym__list_item_decimal_paren] = STATE(848), - [sym__list_decimal_parens] = STATE(162), - [sym__list_item_decimal_parens] = STATE(772), - [sym__list_lower_alpha_period] = STATE(162), - [sym__list_item_lower_alpha_period] = STATE(787), - [sym__list_lower_alpha_paren] = STATE(162), - [sym__list_item_lower_alpha_paren] = STATE(792), - [sym__list_lower_alpha_parens] = STATE(162), - [sym__list_item_lower_alpha_parens] = STATE(793), - [sym__list_upper_alpha_period] = STATE(162), - [sym__list_item_upper_alpha_period] = STATE(797), - [sym__list_upper_alpha_paren] = STATE(162), - [sym__list_item_upper_alpha_paren] = STATE(798), - [sym__list_upper_alpha_parens] = STATE(162), - [sym__list_item_upper_alpha_parens] = STATE(799), - [sym__list_lower_roman_period] = STATE(162), - [sym__list_item_lower_roman_period] = STATE(801), - [sym__list_lower_roman_paren] = STATE(162), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(162), - [sym__list_item_lower_roman_parens] = STATE(814), - [sym__list_upper_roman_period] = STATE(162), - [sym__list_item_upper_roman_period] = STATE(818), - [sym__list_upper_roman_paren] = STATE(162), - [sym__list_item_upper_roman_paren] = STATE(819), - [sym__list_upper_roman_parens] = STATE(162), - [sym__list_item_upper_roman_parens] = STATE(822), - [sym_table] = STATE(154), - [sym__table_content] = STATE(64), - [sym_table_separator] = STATE(64), - [sym_table_row] = STATE(71), - [sym_footnote] = STATE(154), - [sym_footnote_marker_begin] = STATE(1120), - [sym_div] = STATE(154), - [sym__div_marker_begin] = STATE(1032), - [sym_code_block] = STATE(154), - [sym_raw_block] = STATE(154), - [sym_thematic_break] = STATE(154), - [sym_block_quote] = STATE(154), - [sym__block_quote_prefix] = STATE(292), - [sym_link_reference_definition] = STATE(154), - [sym_block_attribute] = STATE(154), - [sym__paragraph] = STATE(154), - [sym__paragraph_content] = STATE(785), - [sym__paragraph_inline_content] = STATE(930), - [sym__inline] = STATE(695), - [sym__symbol_fallback] = STATE(358), + [sym__block_with_section] = STATE(275), + [sym__block_element] = STATE(275), + [sym_section] = STATE(275), + [sym_heading] = STATE(5), + [sym_list] = STATE(275), + [sym__list_dash] = STATE(140), + [sym__list_item_dash] = STATE(727), + [sym__list_plus] = STATE(140), + [sym__list_item_plus] = STATE(730), + [sym__list_star] = STATE(140), + [sym__list_item_star] = STATE(759), + [sym__list_task] = STATE(140), + [sym__list_item_task] = STATE(761), + [sym_list_marker_task] = STATE(46), + [sym__list_definition] = STATE(140), + [sym__list_item_definition] = STATE(819), + [sym__list_decimal_period] = STATE(140), + [sym__list_item_decimal_period] = STATE(852), + [sym__list_decimal_paren] = STATE(140), + [sym__list_item_decimal_paren] = STATE(837), + [sym__list_decimal_parens] = STATE(140), + [sym__list_item_decimal_parens] = STATE(815), + [sym__list_lower_alpha_period] = STATE(140), + [sym__list_item_lower_alpha_period] = STATE(843), + [sym__list_lower_alpha_paren] = STATE(140), + [sym__list_item_lower_alpha_paren] = STATE(850), + [sym__list_lower_alpha_parens] = STATE(140), + [sym__list_item_lower_alpha_parens] = STATE(853), + [sym__list_upper_alpha_period] = STATE(140), + [sym__list_item_upper_alpha_period] = STATE(854), + [sym__list_upper_alpha_paren] = STATE(140), + [sym__list_item_upper_alpha_paren] = STATE(855), + [sym__list_upper_alpha_parens] = STATE(140), + [sym__list_item_upper_alpha_parens] = STATE(856), + [sym__list_lower_roman_period] = STATE(140), + [sym__list_item_lower_roman_period] = STATE(857), + [sym__list_lower_roman_paren] = STATE(140), + [sym__list_item_lower_roman_paren] = STATE(871), + [sym__list_lower_roman_parens] = STATE(140), + [sym__list_item_lower_roman_parens] = STATE(874), + [sym__list_upper_roman_period] = STATE(140), + [sym__list_item_upper_roman_period] = STATE(876), + [sym__list_upper_roman_paren] = STATE(140), + [sym__list_item_upper_roman_paren] = STATE(878), + [sym__list_upper_roman_parens] = STATE(140), + [sym__list_item_upper_roman_parens] = STATE(880), + [sym_table] = STATE(275), + [sym__table_content] = STATE(71), + [sym_table_separator] = STATE(71), + [sym_table_row] = STATE(78), + [sym_footnote] = STATE(275), + [sym_footnote_marker_begin] = STATE(1027), + [sym_div] = STATE(275), + [sym__div_marker_begin] = STATE(1041), + [sym_code_block] = STATE(275), + [sym_raw_block] = STATE(275), + [sym_thematic_break] = STATE(275), + [sym_block_quote] = STATE(275), + [sym__block_quote_prefix] = STATE(306), + [sym_link_reference_definition] = STATE(275), + [sym_block_attribute] = STATE(275), + [sym__paragraph] = STATE(275), + [sym__paragraph_content] = STATE(895), + [sym__paragraph_inline_content] = STATE(896), + [sym__inline] = STATE(715), + [sym__symbol_fallback] = STATE(381), [aux_sym_document_repeat1] = STATE(7), - [aux_sym__list_dash_repeat1] = STATE(431), - [aux_sym__list_plus_repeat1] = STATE(414), - [aux_sym__list_star_repeat1] = STATE(416), - [aux_sym__list_task_repeat1] = STATE(396), - [aux_sym__list_definition_repeat1] = STATE(560), - [aux_sym__list_decimal_period_repeat1] = STATE(561), - [aux_sym__list_decimal_paren_repeat1] = STATE(562), - [aux_sym__list_decimal_parens_repeat1] = STATE(563), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(564), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(621), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(566), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(567), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(568), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(569), - [aux_sym__list_lower_roman_period_repeat1] = STATE(570), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(571), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(572), - [aux_sym__list_upper_roman_period_repeat1] = STATE(573), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(574), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(575), - [aux_sym_table_repeat1] = STATE(64), - [aux_sym__block_quote_prefix_repeat1] = STATE(320), - [aux_sym__inline_repeat1] = STATE(358), - [anon_sym_LBRACK] = ACTIONS(75), - [anon_sym_PIPE] = ACTIONS(77), + [aux_sym__list_dash_repeat1] = STATE(450), + [aux_sym__list_plus_repeat1] = STATE(444), + [aux_sym__list_star_repeat1] = STATE(448), + [aux_sym__list_task_repeat1] = STATE(432), + [aux_sym__list_definition_repeat1] = STATE(577), + [aux_sym__list_decimal_period_repeat1] = STATE(578), + [aux_sym__list_decimal_paren_repeat1] = STATE(580), + [aux_sym__list_decimal_parens_repeat1] = STATE(582), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(584), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(586), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(588), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(605), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(607), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(609), + [aux_sym__list_lower_roman_period_repeat1] = STATE(611), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(629), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(631), + [aux_sym__list_upper_roman_period_repeat1] = STATE(649), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(651), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(653), + [aux_sym_table_repeat1] = STATE(71), + [aux_sym__block_quote_prefix_repeat1] = STATE(330), + [aux_sym__inline_repeat1] = STATE(381), + [ts_builtin_sym_end] = ACTIONS(71), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(7), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__block_close] = ACTIONS(81), - [sym__newline] = ACTIONS(83), + [sym__newline] = ACTIONS(15), [sym__heading_begin] = ACTIONS(19), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(85), + [sym__code_block_begin] = ACTIONS(23), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -5166,117 +5553,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(87), + [sym__block_quote_begin] = ACTIONS(65), [sym__block_quote_continuation] = ACTIONS(67), - [sym__thematic_break_dash] = ACTIONS(89), - [sym__thematic_break_star] = ACTIONS(89), + [sym__thematic_break_dash] = ACTIONS(69), + [sym__thematic_break_star] = ACTIONS(69), }, [5] = { - [sym__block_with_section] = STATE(132), - [sym__block_element] = STATE(132), - [sym_section] = STATE(132), - [sym_heading] = STATE(4), - [sym_list] = STATE(132), - [sym__list_dash] = STATE(136), - [sym__list_item_dash] = STATE(634), - [sym__list_plus] = STATE(136), - [sym__list_item_plus] = STATE(651), - [sym__list_star] = STATE(136), - [sym__list_item_star] = STATE(697), - [sym__list_task] = STATE(136), - [sym__list_item_task] = STATE(707), - [sym_list_marker_task] = STATE(47), - [sym__list_definition] = STATE(136), - [sym__list_item_definition] = STATE(736), - [sym__list_decimal_period] = STATE(136), - [sym__list_item_decimal_period] = STATE(795), - [sym__list_decimal_paren] = STATE(136), - [sym__list_item_decimal_paren] = STATE(848), - [sym__list_decimal_parens] = STATE(136), - [sym__list_item_decimal_parens] = STATE(772), - [sym__list_lower_alpha_period] = STATE(136), - [sym__list_item_lower_alpha_period] = STATE(787), - [sym__list_lower_alpha_paren] = STATE(136), - [sym__list_item_lower_alpha_paren] = STATE(792), - [sym__list_lower_alpha_parens] = STATE(136), - [sym__list_item_lower_alpha_parens] = STATE(793), - [sym__list_upper_alpha_period] = STATE(136), - [sym__list_item_upper_alpha_period] = STATE(797), - [sym__list_upper_alpha_paren] = STATE(136), - [sym__list_item_upper_alpha_paren] = STATE(798), - [sym__list_upper_alpha_parens] = STATE(136), - [sym__list_item_upper_alpha_parens] = STATE(799), - [sym__list_lower_roman_period] = STATE(136), - [sym__list_item_lower_roman_period] = STATE(801), - [sym__list_lower_roman_paren] = STATE(136), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(136), - [sym__list_item_lower_roman_parens] = STATE(814), - [sym__list_upper_roman_period] = STATE(136), - [sym__list_item_upper_roman_period] = STATE(818), - [sym__list_upper_roman_paren] = STATE(136), - [sym__list_item_upper_roman_paren] = STATE(819), - [sym__list_upper_roman_parens] = STATE(136), - [sym__list_item_upper_roman_parens] = STATE(822), - [sym_table] = STATE(132), - [sym__table_content] = STATE(66), - [sym_table_separator] = STATE(66), - [sym_table_row] = STATE(72), - [sym_footnote] = STATE(132), - [sym_footnote_marker_begin] = STATE(1100), - [sym_div] = STATE(132), - [sym__div_marker_begin] = STATE(1110), - [sym_code_block] = STATE(132), - [sym_raw_block] = STATE(132), - [sym_thematic_break] = STATE(132), - [sym_block_quote] = STATE(132), - [sym__block_quote_prefix] = STATE(293), - [sym_link_reference_definition] = STATE(132), - [sym_block_attribute] = STATE(132), - [sym__paragraph] = STATE(132), - [sym__paragraph_content] = STATE(842), - [sym__paragraph_inline_content] = STATE(930), - [sym__inline] = STATE(695), - [sym__symbol_fallback] = STATE(358), - [aux_sym_document_repeat1] = STATE(6), - [aux_sym__list_dash_repeat1] = STATE(415), - [aux_sym__list_plus_repeat1] = STATE(428), - [aux_sym__list_star_repeat1] = STATE(422), - [aux_sym__list_task_repeat1] = STATE(408), - [aux_sym__list_definition_repeat1] = STATE(526), - [aux_sym__list_decimal_period_repeat1] = STATE(527), - [aux_sym__list_decimal_paren_repeat1] = STATE(528), - [aux_sym__list_decimal_parens_repeat1] = STATE(530), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(532), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(550), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(552), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(554), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(556), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(558), - [aux_sym__list_lower_roman_period_repeat1] = STATE(576), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(594), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(597), - [aux_sym__list_upper_roman_period_repeat1] = STATE(599), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(602), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(605), - [aux_sym_table_repeat1] = STATE(66), - [aux_sym__block_quote_prefix_repeat1] = STATE(320), - [aux_sym__inline_repeat1] = STATE(358), - [ts_builtin_sym_end] = ACTIONS(73), - [anon_sym_LBRACK] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(7), + [sym__block_with_section] = STATE(159), + [sym__block_element] = STATE(159), + [sym_section] = STATE(159), + [sym_heading] = STATE(9), + [sym_list] = STATE(159), + [sym__list_dash] = STATE(166), + [sym__list_item_dash] = STATE(727), + [sym__list_plus] = STATE(166), + [sym__list_item_plus] = STATE(730), + [sym__list_star] = STATE(166), + [sym__list_item_star] = STATE(759), + [sym__list_task] = STATE(166), + [sym__list_item_task] = STATE(761), + [sym_list_marker_task] = STATE(46), + [sym__list_definition] = STATE(166), + [sym__list_item_definition] = STATE(819), + [sym__list_decimal_period] = STATE(166), + [sym__list_item_decimal_period] = STATE(852), + [sym__list_decimal_paren] = STATE(166), + [sym__list_item_decimal_paren] = STATE(837), + [sym__list_decimal_parens] = STATE(166), + [sym__list_item_decimal_parens] = STATE(815), + [sym__list_lower_alpha_period] = STATE(166), + [sym__list_item_lower_alpha_period] = STATE(843), + [sym__list_lower_alpha_paren] = STATE(166), + [sym__list_item_lower_alpha_paren] = STATE(850), + [sym__list_lower_alpha_parens] = STATE(166), + [sym__list_item_lower_alpha_parens] = STATE(853), + [sym__list_upper_alpha_period] = STATE(166), + [sym__list_item_upper_alpha_period] = STATE(854), + [sym__list_upper_alpha_paren] = STATE(166), + [sym__list_item_upper_alpha_paren] = STATE(855), + [sym__list_upper_alpha_parens] = STATE(166), + [sym__list_item_upper_alpha_parens] = STATE(856), + [sym__list_lower_roman_period] = STATE(166), + [sym__list_item_lower_roman_period] = STATE(857), + [sym__list_lower_roman_paren] = STATE(166), + [sym__list_item_lower_roman_paren] = STATE(871), + [sym__list_lower_roman_parens] = STATE(166), + [sym__list_item_lower_roman_parens] = STATE(874), + [sym__list_upper_roman_period] = STATE(166), + [sym__list_item_upper_roman_period] = STATE(876), + [sym__list_upper_roman_paren] = STATE(166), + [sym__list_item_upper_roman_paren] = STATE(878), + [sym__list_upper_roman_parens] = STATE(166), + [sym__list_item_upper_roman_parens] = STATE(880), + [sym_table] = STATE(159), + [sym__table_content] = STATE(72), + [sym_table_separator] = STATE(72), + [sym_table_row] = STATE(79), + [sym_footnote] = STATE(159), + [sym_footnote_marker_begin] = STATE(1302), + [sym_div] = STATE(159), + [sym__div_marker_begin] = STATE(1165), + [sym_code_block] = STATE(159), + [sym_raw_block] = STATE(159), + [sym_thematic_break] = STATE(159), + [sym_block_quote] = STATE(159), + [sym__block_quote_prefix] = STATE(304), + [sym_link_reference_definition] = STATE(159), + [sym_block_attribute] = STATE(159), + [sym__paragraph] = STATE(159), + [sym__paragraph_content] = STATE(848), + [sym__paragraph_inline_content] = STATE(896), + [sym__inline] = STATE(715), + [sym__symbol_fallback] = STATE(381), + [aux_sym_document_repeat1] = STATE(3), + [aux_sym__list_dash_repeat1] = STATE(454), + [aux_sym__list_plus_repeat1] = STATE(455), + [aux_sym__list_star_repeat1] = STATE(456), + [aux_sym__list_task_repeat1] = STATE(436), + [aux_sym__list_definition_repeat1] = STATE(612), + [aux_sym__list_decimal_period_repeat1] = STATE(613), + [aux_sym__list_decimal_paren_repeat1] = STATE(614), + [aux_sym__list_decimal_parens_repeat1] = STATE(615), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(616), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(617), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(618), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(619), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(620), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(621), + [aux_sym__list_lower_roman_period_repeat1] = STATE(622), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(623), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(624), + [aux_sym__list_upper_roman_period_repeat1] = STATE(625), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(626), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(627), + [aux_sym_table_repeat1] = STATE(72), + [aux_sym__block_quote_prefix_repeat1] = STATE(330), + [aux_sym__inline_repeat1] = STATE(381), + [anon_sym_LBRACK] = ACTIONS(73), + [anon_sym_PIPE] = ACTIONS(75), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(11), + [anon_sym_LBRACE] = ACTIONS(77), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(15), + [sym__block_close] = ACTIONS(89), + [sym__newline] = ACTIONS(81), [sym__heading_begin] = ACTIONS(19), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(23), + [sym__code_block_begin] = ACTIONS(83), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -5297,102 +5684,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(65), + [sym__block_quote_begin] = ACTIONS(85), [sym__block_quote_continuation] = ACTIONS(67), - [sym__thematic_break_dash] = ACTIONS(69), - [sym__thematic_break_star] = ACTIONS(69), + [sym__thematic_break_dash] = ACTIONS(87), + [sym__thematic_break_star] = ACTIONS(87), }, [6] = { - [sym__block_with_section] = STATE(132), - [sym__block_element] = STATE(132), - [sym_section] = STATE(132), - [sym_heading] = STATE(4), - [sym_list] = STATE(132), - [sym__list_dash] = STATE(136), - [sym__list_item_dash] = STATE(634), - [sym__list_plus] = STATE(136), - [sym__list_item_plus] = STATE(651), - [sym__list_star] = STATE(136), - [sym__list_item_star] = STATE(697), - [sym__list_task] = STATE(136), - [sym__list_item_task] = STATE(707), - [sym_list_marker_task] = STATE(47), - [sym__list_definition] = STATE(136), - [sym__list_item_definition] = STATE(736), - [sym__list_decimal_period] = STATE(136), - [sym__list_item_decimal_period] = STATE(795), - [sym__list_decimal_paren] = STATE(136), - [sym__list_item_decimal_paren] = STATE(848), - [sym__list_decimal_parens] = STATE(136), - [sym__list_item_decimal_parens] = STATE(772), - [sym__list_lower_alpha_period] = STATE(136), - [sym__list_item_lower_alpha_period] = STATE(787), - [sym__list_lower_alpha_paren] = STATE(136), - [sym__list_item_lower_alpha_paren] = STATE(792), - [sym__list_lower_alpha_parens] = STATE(136), - [sym__list_item_lower_alpha_parens] = STATE(793), - [sym__list_upper_alpha_period] = STATE(136), - [sym__list_item_upper_alpha_period] = STATE(797), - [sym__list_upper_alpha_paren] = STATE(136), - [sym__list_item_upper_alpha_paren] = STATE(798), - [sym__list_upper_alpha_parens] = STATE(136), - [sym__list_item_upper_alpha_parens] = STATE(799), - [sym__list_lower_roman_period] = STATE(136), - [sym__list_item_lower_roman_period] = STATE(801), - [sym__list_lower_roman_paren] = STATE(136), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(136), - [sym__list_item_lower_roman_parens] = STATE(814), - [sym__list_upper_roman_period] = STATE(136), - [sym__list_item_upper_roman_period] = STATE(818), - [sym__list_upper_roman_paren] = STATE(136), - [sym__list_item_upper_roman_paren] = STATE(819), - [sym__list_upper_roman_parens] = STATE(136), - [sym__list_item_upper_roman_parens] = STATE(822), - [sym_table] = STATE(132), - [sym__table_content] = STATE(66), - [sym_table_separator] = STATE(66), - [sym_table_row] = STATE(72), - [sym_footnote] = STATE(132), - [sym_footnote_marker_begin] = STATE(1100), - [sym_div] = STATE(132), - [sym__div_marker_begin] = STATE(1110), - [sym_code_block] = STATE(132), - [sym_raw_block] = STATE(132), - [sym_thematic_break] = STATE(132), - [sym_block_quote] = STATE(132), - [sym__block_quote_prefix] = STATE(293), - [sym_link_reference_definition] = STATE(132), - [sym_block_attribute] = STATE(132), - [sym__paragraph] = STATE(132), - [sym__paragraph_content] = STATE(842), - [sym__paragraph_inline_content] = STATE(930), - [sym__inline] = STATE(695), - [sym__symbol_fallback] = STATE(358), + [sym__block_with_section] = STATE(275), + [sym__block_element] = STATE(275), + [sym_section] = STATE(275), + [sym_heading] = STATE(5), + [sym_list] = STATE(275), + [sym__list_dash] = STATE(140), + [sym__list_item_dash] = STATE(727), + [sym__list_plus] = STATE(140), + [sym__list_item_plus] = STATE(730), + [sym__list_star] = STATE(140), + [sym__list_item_star] = STATE(759), + [sym__list_task] = STATE(140), + [sym__list_item_task] = STATE(761), + [sym_list_marker_task] = STATE(46), + [sym__list_definition] = STATE(140), + [sym__list_item_definition] = STATE(819), + [sym__list_decimal_period] = STATE(140), + [sym__list_item_decimal_period] = STATE(852), + [sym__list_decimal_paren] = STATE(140), + [sym__list_item_decimal_paren] = STATE(837), + [sym__list_decimal_parens] = STATE(140), + [sym__list_item_decimal_parens] = STATE(815), + [sym__list_lower_alpha_period] = STATE(140), + [sym__list_item_lower_alpha_period] = STATE(843), + [sym__list_lower_alpha_paren] = STATE(140), + [sym__list_item_lower_alpha_paren] = STATE(850), + [sym__list_lower_alpha_parens] = STATE(140), + [sym__list_item_lower_alpha_parens] = STATE(853), + [sym__list_upper_alpha_period] = STATE(140), + [sym__list_item_upper_alpha_period] = STATE(854), + [sym__list_upper_alpha_paren] = STATE(140), + [sym__list_item_upper_alpha_paren] = STATE(855), + [sym__list_upper_alpha_parens] = STATE(140), + [sym__list_item_upper_alpha_parens] = STATE(856), + [sym__list_lower_roman_period] = STATE(140), + [sym__list_item_lower_roman_period] = STATE(857), + [sym__list_lower_roman_paren] = STATE(140), + [sym__list_item_lower_roman_paren] = STATE(871), + [sym__list_lower_roman_parens] = STATE(140), + [sym__list_item_lower_roman_parens] = STATE(874), + [sym__list_upper_roman_period] = STATE(140), + [sym__list_item_upper_roman_period] = STATE(876), + [sym__list_upper_roman_paren] = STATE(140), + [sym__list_item_upper_roman_paren] = STATE(878), + [sym__list_upper_roman_parens] = STATE(140), + [sym__list_item_upper_roman_parens] = STATE(880), + [sym_table] = STATE(275), + [sym__table_content] = STATE(71), + [sym_table_separator] = STATE(71), + [sym_table_row] = STATE(78), + [sym_footnote] = STATE(275), + [sym_footnote_marker_begin] = STATE(1027), + [sym_div] = STATE(275), + [sym__div_marker_begin] = STATE(1041), + [sym_code_block] = STATE(275), + [sym_raw_block] = STATE(275), + [sym_thematic_break] = STATE(275), + [sym_block_quote] = STATE(275), + [sym__block_quote_prefix] = STATE(306), + [sym_link_reference_definition] = STATE(275), + [sym_block_attribute] = STATE(275), + [sym__paragraph] = STATE(275), + [sym__paragraph_content] = STATE(895), + [sym__paragraph_inline_content] = STATE(896), + [sym__inline] = STATE(715), + [sym__symbol_fallback] = STATE(381), [aux_sym_document_repeat1] = STATE(6), - [aux_sym__list_dash_repeat1] = STATE(415), - [aux_sym__list_plus_repeat1] = STATE(428), - [aux_sym__list_star_repeat1] = STATE(422), - [aux_sym__list_task_repeat1] = STATE(408), - [aux_sym__list_definition_repeat1] = STATE(526), - [aux_sym__list_decimal_period_repeat1] = STATE(527), - [aux_sym__list_decimal_paren_repeat1] = STATE(528), - [aux_sym__list_decimal_parens_repeat1] = STATE(530), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(532), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(550), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(552), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(554), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(556), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(558), - [aux_sym__list_lower_roman_period_repeat1] = STATE(576), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(594), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(597), - [aux_sym__list_upper_roman_period_repeat1] = STATE(599), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(602), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(605), - [aux_sym_table_repeat1] = STATE(66), - [aux_sym__block_quote_prefix_repeat1] = STATE(320), - [aux_sym__inline_repeat1] = STATE(358), + [aux_sym__list_dash_repeat1] = STATE(450), + [aux_sym__list_plus_repeat1] = STATE(444), + [aux_sym__list_star_repeat1] = STATE(448), + [aux_sym__list_task_repeat1] = STATE(432), + [aux_sym__list_definition_repeat1] = STATE(577), + [aux_sym__list_decimal_period_repeat1] = STATE(578), + [aux_sym__list_decimal_paren_repeat1] = STATE(580), + [aux_sym__list_decimal_parens_repeat1] = STATE(582), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(584), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(586), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(588), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(605), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(607), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(609), + [aux_sym__list_lower_roman_period_repeat1] = STATE(611), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(629), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(631), + [aux_sym__list_upper_roman_period_repeat1] = STATE(649), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(651), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(653), + [aux_sym_table_repeat1] = STATE(71), + [aux_sym__block_quote_prefix_repeat1] = STATE(330), + [aux_sym__inline_repeat1] = STATE(381), [ts_builtin_sym_end] = ACTIONS(91), [anon_sym_LBRACK] = ACTIONS(93), [anon_sym_PIPE] = ACTIONS(96), @@ -5434,111 +5821,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__thematic_break_star] = ACTIONS(186), }, [7] = { - [sym__block_with_section] = STATE(154), - [sym__block_element] = STATE(154), - [sym_section] = STATE(154), - [sym_heading] = STATE(9), - [sym_list] = STATE(154), - [sym__list_dash] = STATE(162), - [sym__list_item_dash] = STATE(634), - [sym__list_plus] = STATE(162), - [sym__list_item_plus] = STATE(651), - [sym__list_star] = STATE(162), - [sym__list_item_star] = STATE(697), - [sym__list_task] = STATE(162), - [sym__list_item_task] = STATE(707), - [sym_list_marker_task] = STATE(47), - [sym__list_definition] = STATE(162), - [sym__list_item_definition] = STATE(736), - [sym__list_decimal_period] = STATE(162), - [sym__list_item_decimal_period] = STATE(795), - [sym__list_decimal_paren] = STATE(162), - [sym__list_item_decimal_paren] = STATE(848), - [sym__list_decimal_parens] = STATE(162), - [sym__list_item_decimal_parens] = STATE(772), - [sym__list_lower_alpha_period] = STATE(162), - [sym__list_item_lower_alpha_period] = STATE(787), - [sym__list_lower_alpha_paren] = STATE(162), - [sym__list_item_lower_alpha_paren] = STATE(792), - [sym__list_lower_alpha_parens] = STATE(162), - [sym__list_item_lower_alpha_parens] = STATE(793), - [sym__list_upper_alpha_period] = STATE(162), - [sym__list_item_upper_alpha_period] = STATE(797), - [sym__list_upper_alpha_paren] = STATE(162), - [sym__list_item_upper_alpha_paren] = STATE(798), - [sym__list_upper_alpha_parens] = STATE(162), - [sym__list_item_upper_alpha_parens] = STATE(799), - [sym__list_lower_roman_period] = STATE(162), - [sym__list_item_lower_roman_period] = STATE(801), - [sym__list_lower_roman_paren] = STATE(162), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(162), - [sym__list_item_lower_roman_parens] = STATE(814), - [sym__list_upper_roman_period] = STATE(162), - [sym__list_item_upper_roman_period] = STATE(818), - [sym__list_upper_roman_paren] = STATE(162), - [sym__list_item_upper_roman_paren] = STATE(819), - [sym__list_upper_roman_parens] = STATE(162), - [sym__list_item_upper_roman_parens] = STATE(822), - [sym_table] = STATE(154), - [sym__table_content] = STATE(64), - [sym_table_separator] = STATE(64), - [sym_table_row] = STATE(71), - [sym_footnote] = STATE(154), - [sym_footnote_marker_begin] = STATE(1120), - [sym_div] = STATE(154), - [sym__div_marker_begin] = STATE(1032), - [sym_code_block] = STATE(154), - [sym_raw_block] = STATE(154), - [sym_thematic_break] = STATE(154), - [sym_block_quote] = STATE(154), - [sym__block_quote_prefix] = STATE(292), - [sym_link_reference_definition] = STATE(154), - [sym_block_attribute] = STATE(154), - [sym__paragraph] = STATE(154), - [sym__paragraph_content] = STATE(785), - [sym__paragraph_inline_content] = STATE(930), - [sym__inline] = STATE(695), - [sym__symbol_fallback] = STATE(358), - [aux_sym_document_repeat1] = STATE(8), - [aux_sym__list_dash_repeat1] = STATE(431), - [aux_sym__list_plus_repeat1] = STATE(414), - [aux_sym__list_star_repeat1] = STATE(416), - [aux_sym__list_task_repeat1] = STATE(396), - [aux_sym__list_definition_repeat1] = STATE(560), - [aux_sym__list_decimal_period_repeat1] = STATE(561), - [aux_sym__list_decimal_paren_repeat1] = STATE(562), - [aux_sym__list_decimal_parens_repeat1] = STATE(563), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(564), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(621), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(566), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(567), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(568), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(569), - [aux_sym__list_lower_roman_period_repeat1] = STATE(570), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(571), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(572), - [aux_sym__list_upper_roman_period_repeat1] = STATE(573), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(574), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(575), - [aux_sym_table_repeat1] = STATE(64), - [aux_sym__block_quote_prefix_repeat1] = STATE(320), - [aux_sym__inline_repeat1] = STATE(358), - [anon_sym_LBRACK] = ACTIONS(75), - [anon_sym_PIPE] = ACTIONS(77), + [sym__block_with_section] = STATE(275), + [sym__block_element] = STATE(275), + [sym_section] = STATE(275), + [sym_heading] = STATE(5), + [sym_list] = STATE(275), + [sym__list_dash] = STATE(140), + [sym__list_item_dash] = STATE(727), + [sym__list_plus] = STATE(140), + [sym__list_item_plus] = STATE(730), + [sym__list_star] = STATE(140), + [sym__list_item_star] = STATE(759), + [sym__list_task] = STATE(140), + [sym__list_item_task] = STATE(761), + [sym_list_marker_task] = STATE(46), + [sym__list_definition] = STATE(140), + [sym__list_item_definition] = STATE(819), + [sym__list_decimal_period] = STATE(140), + [sym__list_item_decimal_period] = STATE(852), + [sym__list_decimal_paren] = STATE(140), + [sym__list_item_decimal_paren] = STATE(837), + [sym__list_decimal_parens] = STATE(140), + [sym__list_item_decimal_parens] = STATE(815), + [sym__list_lower_alpha_period] = STATE(140), + [sym__list_item_lower_alpha_period] = STATE(843), + [sym__list_lower_alpha_paren] = STATE(140), + [sym__list_item_lower_alpha_paren] = STATE(850), + [sym__list_lower_alpha_parens] = STATE(140), + [sym__list_item_lower_alpha_parens] = STATE(853), + [sym__list_upper_alpha_period] = STATE(140), + [sym__list_item_upper_alpha_period] = STATE(854), + [sym__list_upper_alpha_paren] = STATE(140), + [sym__list_item_upper_alpha_paren] = STATE(855), + [sym__list_upper_alpha_parens] = STATE(140), + [sym__list_item_upper_alpha_parens] = STATE(856), + [sym__list_lower_roman_period] = STATE(140), + [sym__list_item_lower_roman_period] = STATE(857), + [sym__list_lower_roman_paren] = STATE(140), + [sym__list_item_lower_roman_paren] = STATE(871), + [sym__list_lower_roman_parens] = STATE(140), + [sym__list_item_lower_roman_parens] = STATE(874), + [sym__list_upper_roman_period] = STATE(140), + [sym__list_item_upper_roman_period] = STATE(876), + [sym__list_upper_roman_paren] = STATE(140), + [sym__list_item_upper_roman_paren] = STATE(878), + [sym__list_upper_roman_parens] = STATE(140), + [sym__list_item_upper_roman_parens] = STATE(880), + [sym_table] = STATE(275), + [sym__table_content] = STATE(71), + [sym_table_separator] = STATE(71), + [sym_table_row] = STATE(78), + [sym_footnote] = STATE(275), + [sym_footnote_marker_begin] = STATE(1027), + [sym_div] = STATE(275), + [sym__div_marker_begin] = STATE(1041), + [sym_code_block] = STATE(275), + [sym_raw_block] = STATE(275), + [sym_thematic_break] = STATE(275), + [sym_block_quote] = STATE(275), + [sym__block_quote_prefix] = STATE(306), + [sym_link_reference_definition] = STATE(275), + [sym_block_attribute] = STATE(275), + [sym__paragraph] = STATE(275), + [sym__paragraph_content] = STATE(895), + [sym__paragraph_inline_content] = STATE(896), + [sym__inline] = STATE(715), + [sym__symbol_fallback] = STATE(381), + [aux_sym_document_repeat1] = STATE(6), + [aux_sym__list_dash_repeat1] = STATE(450), + [aux_sym__list_plus_repeat1] = STATE(444), + [aux_sym__list_star_repeat1] = STATE(448), + [aux_sym__list_task_repeat1] = STATE(432), + [aux_sym__list_definition_repeat1] = STATE(577), + [aux_sym__list_decimal_period_repeat1] = STATE(578), + [aux_sym__list_decimal_paren_repeat1] = STATE(580), + [aux_sym__list_decimal_parens_repeat1] = STATE(582), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(584), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(586), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(588), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(605), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(607), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(609), + [aux_sym__list_lower_roman_period_repeat1] = STATE(611), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(629), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(631), + [aux_sym__list_upper_roman_period_repeat1] = STATE(649), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(651), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(653), + [aux_sym_table_repeat1] = STATE(71), + [aux_sym__block_quote_prefix_repeat1] = STATE(330), + [aux_sym__inline_repeat1] = STATE(381), + [ts_builtin_sym_end] = ACTIONS(189), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(7), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__block_close] = ACTIONS(189), - [sym__newline] = ACTIONS(83), + [sym__newline] = ACTIONS(15), [sym__heading_begin] = ACTIONS(19), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(85), + [sym__code_block_begin] = ACTIONS(23), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -5559,102 +5946,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(87), + [sym__block_quote_begin] = ACTIONS(65), [sym__block_quote_continuation] = ACTIONS(67), - [sym__thematic_break_dash] = ACTIONS(89), - [sym__thematic_break_star] = ACTIONS(89), + [sym__thematic_break_dash] = ACTIONS(69), + [sym__thematic_break_star] = ACTIONS(69), }, [8] = { - [sym__block_with_section] = STATE(154), - [sym__block_element] = STATE(154), - [sym_section] = STATE(154), + [sym__block_with_section] = STATE(159), + [sym__block_element] = STATE(159), + [sym_section] = STATE(159), [sym_heading] = STATE(9), - [sym_list] = STATE(154), - [sym__list_dash] = STATE(162), - [sym__list_item_dash] = STATE(634), - [sym__list_plus] = STATE(162), - [sym__list_item_plus] = STATE(651), - [sym__list_star] = STATE(162), - [sym__list_item_star] = STATE(697), - [sym__list_task] = STATE(162), - [sym__list_item_task] = STATE(707), - [sym_list_marker_task] = STATE(47), - [sym__list_definition] = STATE(162), - [sym__list_item_definition] = STATE(736), - [sym__list_decimal_period] = STATE(162), - [sym__list_item_decimal_period] = STATE(795), - [sym__list_decimal_paren] = STATE(162), - [sym__list_item_decimal_paren] = STATE(848), - [sym__list_decimal_parens] = STATE(162), - [sym__list_item_decimal_parens] = STATE(772), - [sym__list_lower_alpha_period] = STATE(162), - [sym__list_item_lower_alpha_period] = STATE(787), - [sym__list_lower_alpha_paren] = STATE(162), - [sym__list_item_lower_alpha_paren] = STATE(792), - [sym__list_lower_alpha_parens] = STATE(162), - [sym__list_item_lower_alpha_parens] = STATE(793), - [sym__list_upper_alpha_period] = STATE(162), - [sym__list_item_upper_alpha_period] = STATE(797), - [sym__list_upper_alpha_paren] = STATE(162), - [sym__list_item_upper_alpha_paren] = STATE(798), - [sym__list_upper_alpha_parens] = STATE(162), - [sym__list_item_upper_alpha_parens] = STATE(799), - [sym__list_lower_roman_period] = STATE(162), - [sym__list_item_lower_roman_period] = STATE(801), - [sym__list_lower_roman_paren] = STATE(162), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(162), - [sym__list_item_lower_roman_parens] = STATE(814), - [sym__list_upper_roman_period] = STATE(162), - [sym__list_item_upper_roman_period] = STATE(818), - [sym__list_upper_roman_paren] = STATE(162), - [sym__list_item_upper_roman_paren] = STATE(819), - [sym__list_upper_roman_parens] = STATE(162), - [sym__list_item_upper_roman_parens] = STATE(822), - [sym_table] = STATE(154), - [sym__table_content] = STATE(64), - [sym_table_separator] = STATE(64), - [sym_table_row] = STATE(71), - [sym_footnote] = STATE(154), - [sym_footnote_marker_begin] = STATE(1120), - [sym_div] = STATE(154), - [sym__div_marker_begin] = STATE(1032), - [sym_code_block] = STATE(154), - [sym_raw_block] = STATE(154), - [sym_thematic_break] = STATE(154), - [sym_block_quote] = STATE(154), - [sym__block_quote_prefix] = STATE(292), - [sym_link_reference_definition] = STATE(154), - [sym_block_attribute] = STATE(154), - [sym__paragraph] = STATE(154), - [sym__paragraph_content] = STATE(785), - [sym__paragraph_inline_content] = STATE(930), - [sym__inline] = STATE(695), - [sym__symbol_fallback] = STATE(358), + [sym_list] = STATE(159), + [sym__list_dash] = STATE(166), + [sym__list_item_dash] = STATE(727), + [sym__list_plus] = STATE(166), + [sym__list_item_plus] = STATE(730), + [sym__list_star] = STATE(166), + [sym__list_item_star] = STATE(759), + [sym__list_task] = STATE(166), + [sym__list_item_task] = STATE(761), + [sym_list_marker_task] = STATE(46), + [sym__list_definition] = STATE(166), + [sym__list_item_definition] = STATE(819), + [sym__list_decimal_period] = STATE(166), + [sym__list_item_decimal_period] = STATE(852), + [sym__list_decimal_paren] = STATE(166), + [sym__list_item_decimal_paren] = STATE(837), + [sym__list_decimal_parens] = STATE(166), + [sym__list_item_decimal_parens] = STATE(815), + [sym__list_lower_alpha_period] = STATE(166), + [sym__list_item_lower_alpha_period] = STATE(843), + [sym__list_lower_alpha_paren] = STATE(166), + [sym__list_item_lower_alpha_paren] = STATE(850), + [sym__list_lower_alpha_parens] = STATE(166), + [sym__list_item_lower_alpha_parens] = STATE(853), + [sym__list_upper_alpha_period] = STATE(166), + [sym__list_item_upper_alpha_period] = STATE(854), + [sym__list_upper_alpha_paren] = STATE(166), + [sym__list_item_upper_alpha_paren] = STATE(855), + [sym__list_upper_alpha_parens] = STATE(166), + [sym__list_item_upper_alpha_parens] = STATE(856), + [sym__list_lower_roman_period] = STATE(166), + [sym__list_item_lower_roman_period] = STATE(857), + [sym__list_lower_roman_paren] = STATE(166), + [sym__list_item_lower_roman_paren] = STATE(871), + [sym__list_lower_roman_parens] = STATE(166), + [sym__list_item_lower_roman_parens] = STATE(874), + [sym__list_upper_roman_period] = STATE(166), + [sym__list_item_upper_roman_period] = STATE(876), + [sym__list_upper_roman_paren] = STATE(166), + [sym__list_item_upper_roman_paren] = STATE(878), + [sym__list_upper_roman_parens] = STATE(166), + [sym__list_item_upper_roman_parens] = STATE(880), + [sym_table] = STATE(159), + [sym__table_content] = STATE(72), + [sym_table_separator] = STATE(72), + [sym_table_row] = STATE(79), + [sym_footnote] = STATE(159), + [sym_footnote_marker_begin] = STATE(1302), + [sym_div] = STATE(159), + [sym__div_marker_begin] = STATE(1165), + [sym_code_block] = STATE(159), + [sym_raw_block] = STATE(159), + [sym_thematic_break] = STATE(159), + [sym_block_quote] = STATE(159), + [sym__block_quote_prefix] = STATE(304), + [sym_link_reference_definition] = STATE(159), + [sym_block_attribute] = STATE(159), + [sym__paragraph] = STATE(159), + [sym__paragraph_content] = STATE(848), + [sym__paragraph_inline_content] = STATE(896), + [sym__inline] = STATE(715), + [sym__symbol_fallback] = STATE(381), [aux_sym_document_repeat1] = STATE(8), - [aux_sym__list_dash_repeat1] = STATE(431), - [aux_sym__list_plus_repeat1] = STATE(414), - [aux_sym__list_star_repeat1] = STATE(416), - [aux_sym__list_task_repeat1] = STATE(396), - [aux_sym__list_definition_repeat1] = STATE(560), - [aux_sym__list_decimal_period_repeat1] = STATE(561), - [aux_sym__list_decimal_paren_repeat1] = STATE(562), - [aux_sym__list_decimal_parens_repeat1] = STATE(563), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(564), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(621), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(566), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(567), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(568), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(569), - [aux_sym__list_lower_roman_period_repeat1] = STATE(570), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(571), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(572), - [aux_sym__list_upper_roman_period_repeat1] = STATE(573), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(574), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(575), - [aux_sym_table_repeat1] = STATE(64), - [aux_sym__block_quote_prefix_repeat1] = STATE(320), - [aux_sym__inline_repeat1] = STATE(358), + [aux_sym__list_dash_repeat1] = STATE(454), + [aux_sym__list_plus_repeat1] = STATE(455), + [aux_sym__list_star_repeat1] = STATE(456), + [aux_sym__list_task_repeat1] = STATE(436), + [aux_sym__list_definition_repeat1] = STATE(612), + [aux_sym__list_decimal_period_repeat1] = STATE(613), + [aux_sym__list_decimal_paren_repeat1] = STATE(614), + [aux_sym__list_decimal_parens_repeat1] = STATE(615), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(616), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(617), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(618), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(619), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(620), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(621), + [aux_sym__list_lower_roman_period_repeat1] = STATE(622), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(623), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(624), + [aux_sym__list_upper_roman_period_repeat1] = STATE(625), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(626), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(627), + [aux_sym_table_repeat1] = STATE(72), + [aux_sym__block_quote_prefix_repeat1] = STATE(330), + [aux_sym__inline_repeat1] = STATE(381), [anon_sym_LBRACK] = ACTIONS(191), [anon_sym_PIPE] = ACTIONS(194), [anon_sym_LBRACK_CARET] = ACTIONS(99), @@ -5696,100 +6083,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__thematic_break_star] = ACTIONS(209), }, [9] = { - [sym__block_with_section] = STATE(154), - [sym__block_element] = STATE(154), - [sym_section] = STATE(154), + [sym__block_with_section] = STATE(159), + [sym__block_element] = STATE(159), + [sym_section] = STATE(159), [sym_heading] = STATE(9), - [sym_list] = STATE(154), - [sym__list_dash] = STATE(162), - [sym__list_item_dash] = STATE(634), - [sym__list_plus] = STATE(162), - [sym__list_item_plus] = STATE(651), - [sym__list_star] = STATE(162), - [sym__list_item_star] = STATE(697), - [sym__list_task] = STATE(162), - [sym__list_item_task] = STATE(707), - [sym_list_marker_task] = STATE(47), - [sym__list_definition] = STATE(162), - [sym__list_item_definition] = STATE(736), - [sym__list_decimal_period] = STATE(162), - [sym__list_item_decimal_period] = STATE(795), - [sym__list_decimal_paren] = STATE(162), - [sym__list_item_decimal_paren] = STATE(848), - [sym__list_decimal_parens] = STATE(162), - [sym__list_item_decimal_parens] = STATE(772), - [sym__list_lower_alpha_period] = STATE(162), - [sym__list_item_lower_alpha_period] = STATE(787), - [sym__list_lower_alpha_paren] = STATE(162), - [sym__list_item_lower_alpha_paren] = STATE(792), - [sym__list_lower_alpha_parens] = STATE(162), - [sym__list_item_lower_alpha_parens] = STATE(793), - [sym__list_upper_alpha_period] = STATE(162), - [sym__list_item_upper_alpha_period] = STATE(797), - [sym__list_upper_alpha_paren] = STATE(162), - [sym__list_item_upper_alpha_paren] = STATE(798), - [sym__list_upper_alpha_parens] = STATE(162), - [sym__list_item_upper_alpha_parens] = STATE(799), - [sym__list_lower_roman_period] = STATE(162), - [sym__list_item_lower_roman_period] = STATE(801), - [sym__list_lower_roman_paren] = STATE(162), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(162), - [sym__list_item_lower_roman_parens] = STATE(814), - [sym__list_upper_roman_period] = STATE(162), - [sym__list_item_upper_roman_period] = STATE(818), - [sym__list_upper_roman_paren] = STATE(162), - [sym__list_item_upper_roman_paren] = STATE(819), - [sym__list_upper_roman_parens] = STATE(162), - [sym__list_item_upper_roman_parens] = STATE(822), - [sym_table] = STATE(154), - [sym__table_content] = STATE(64), - [sym_table_separator] = STATE(64), - [sym_table_row] = STATE(71), - [sym_footnote] = STATE(154), - [sym_footnote_marker_begin] = STATE(1120), - [sym_div] = STATE(154), - [sym__div_marker_begin] = STATE(1032), - [sym_code_block] = STATE(154), - [sym_raw_block] = STATE(154), - [sym_thematic_break] = STATE(154), - [sym_block_quote] = STATE(154), - [sym__block_quote_prefix] = STATE(292), - [sym_link_reference_definition] = STATE(154), - [sym_block_attribute] = STATE(154), - [sym__paragraph] = STATE(154), - [sym__paragraph_content] = STATE(785), - [sym__paragraph_inline_content] = STATE(930), - [sym__inline] = STATE(695), - [sym__symbol_fallback] = STATE(358), + [sym_list] = STATE(159), + [sym__list_dash] = STATE(166), + [sym__list_item_dash] = STATE(727), + [sym__list_plus] = STATE(166), + [sym__list_item_plus] = STATE(730), + [sym__list_star] = STATE(166), + [sym__list_item_star] = STATE(759), + [sym__list_task] = STATE(166), + [sym__list_item_task] = STATE(761), + [sym_list_marker_task] = STATE(46), + [sym__list_definition] = STATE(166), + [sym__list_item_definition] = STATE(819), + [sym__list_decimal_period] = STATE(166), + [sym__list_item_decimal_period] = STATE(852), + [sym__list_decimal_paren] = STATE(166), + [sym__list_item_decimal_paren] = STATE(837), + [sym__list_decimal_parens] = STATE(166), + [sym__list_item_decimal_parens] = STATE(815), + [sym__list_lower_alpha_period] = STATE(166), + [sym__list_item_lower_alpha_period] = STATE(843), + [sym__list_lower_alpha_paren] = STATE(166), + [sym__list_item_lower_alpha_paren] = STATE(850), + [sym__list_lower_alpha_parens] = STATE(166), + [sym__list_item_lower_alpha_parens] = STATE(853), + [sym__list_upper_alpha_period] = STATE(166), + [sym__list_item_upper_alpha_period] = STATE(854), + [sym__list_upper_alpha_paren] = STATE(166), + [sym__list_item_upper_alpha_paren] = STATE(855), + [sym__list_upper_alpha_parens] = STATE(166), + [sym__list_item_upper_alpha_parens] = STATE(856), + [sym__list_lower_roman_period] = STATE(166), + [sym__list_item_lower_roman_period] = STATE(857), + [sym__list_lower_roman_paren] = STATE(166), + [sym__list_item_lower_roman_paren] = STATE(871), + [sym__list_lower_roman_parens] = STATE(166), + [sym__list_item_lower_roman_parens] = STATE(874), + [sym__list_upper_roman_period] = STATE(166), + [sym__list_item_upper_roman_period] = STATE(876), + [sym__list_upper_roman_paren] = STATE(166), + [sym__list_item_upper_roman_paren] = STATE(878), + [sym__list_upper_roman_parens] = STATE(166), + [sym__list_item_upper_roman_parens] = STATE(880), + [sym_table] = STATE(159), + [sym__table_content] = STATE(72), + [sym_table_separator] = STATE(72), + [sym_table_row] = STATE(79), + [sym_footnote] = STATE(159), + [sym_footnote_marker_begin] = STATE(1302), + [sym_div] = STATE(159), + [sym__div_marker_begin] = STATE(1165), + [sym_code_block] = STATE(159), + [sym_raw_block] = STATE(159), + [sym_thematic_break] = STATE(159), + [sym_block_quote] = STATE(159), + [sym__block_quote_prefix] = STATE(304), + [sym_link_reference_definition] = STATE(159), + [sym_block_attribute] = STATE(159), + [sym__paragraph] = STATE(159), + [sym__paragraph_content] = STATE(848), + [sym__paragraph_inline_content] = STATE(896), + [sym__inline] = STATE(715), + [sym__symbol_fallback] = STATE(381), [aux_sym_document_repeat1] = STATE(10), - [aux_sym__list_dash_repeat1] = STATE(431), - [aux_sym__list_plus_repeat1] = STATE(414), - [aux_sym__list_star_repeat1] = STATE(416), - [aux_sym__list_task_repeat1] = STATE(396), - [aux_sym__list_definition_repeat1] = STATE(560), - [aux_sym__list_decimal_period_repeat1] = STATE(561), - [aux_sym__list_decimal_paren_repeat1] = STATE(562), - [aux_sym__list_decimal_parens_repeat1] = STATE(563), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(564), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(621), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(566), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(567), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(568), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(569), - [aux_sym__list_lower_roman_period_repeat1] = STATE(570), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(571), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(572), - [aux_sym__list_upper_roman_period_repeat1] = STATE(573), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(574), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(575), - [aux_sym_table_repeat1] = STATE(64), - [aux_sym__block_quote_prefix_repeat1] = STATE(320), - [aux_sym__inline_repeat1] = STATE(358), - [anon_sym_LBRACK] = ACTIONS(75), - [anon_sym_PIPE] = ACTIONS(77), + [aux_sym__list_dash_repeat1] = STATE(454), + [aux_sym__list_plus_repeat1] = STATE(455), + [aux_sym__list_star_repeat1] = STATE(456), + [aux_sym__list_task_repeat1] = STATE(436), + [aux_sym__list_definition_repeat1] = STATE(612), + [aux_sym__list_decimal_period_repeat1] = STATE(613), + [aux_sym__list_decimal_paren_repeat1] = STATE(614), + [aux_sym__list_decimal_parens_repeat1] = STATE(615), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(616), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(617), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(618), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(619), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(620), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(621), + [aux_sym__list_lower_roman_period_repeat1] = STATE(622), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(623), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(624), + [aux_sym__list_upper_roman_period_repeat1] = STATE(625), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(626), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(627), + [aux_sym_table_repeat1] = STATE(72), + [aux_sym__block_quote_prefix_repeat1] = STATE(330), + [aux_sym__inline_repeat1] = STATE(381), + [anon_sym_LBRACK] = ACTIONS(73), + [anon_sym_PIPE] = ACTIONS(75), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(77), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), @@ -5797,10 +6184,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), [sym__block_close] = ACTIONS(212), - [sym__newline] = ACTIONS(83), + [sym__newline] = ACTIONS(81), [sym__heading_begin] = ACTIONS(19), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(85), + [sym__code_block_begin] = ACTIONS(83), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -5821,106 +6208,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(87), + [sym__block_quote_begin] = ACTIONS(85), [sym__block_quote_continuation] = ACTIONS(67), - [sym__thematic_break_dash] = ACTIONS(89), - [sym__thematic_break_star] = ACTIONS(89), + [sym__thematic_break_dash] = ACTIONS(87), + [sym__thematic_break_star] = ACTIONS(87), }, [10] = { - [sym__block_with_section] = STATE(154), - [sym__block_element] = STATE(154), - [sym_section] = STATE(154), + [sym__block_with_section] = STATE(159), + [sym__block_element] = STATE(159), + [sym_section] = STATE(159), [sym_heading] = STATE(9), - [sym_list] = STATE(154), - [sym__list_dash] = STATE(162), - [sym__list_item_dash] = STATE(634), - [sym__list_plus] = STATE(162), - [sym__list_item_plus] = STATE(651), - [sym__list_star] = STATE(162), - [sym__list_item_star] = STATE(697), - [sym__list_task] = STATE(162), - [sym__list_item_task] = STATE(707), - [sym_list_marker_task] = STATE(47), - [sym__list_definition] = STATE(162), - [sym__list_item_definition] = STATE(736), - [sym__list_decimal_period] = STATE(162), - [sym__list_item_decimal_period] = STATE(795), - [sym__list_decimal_paren] = STATE(162), - [sym__list_item_decimal_paren] = STATE(848), - [sym__list_decimal_parens] = STATE(162), - [sym__list_item_decimal_parens] = STATE(772), - [sym__list_lower_alpha_period] = STATE(162), - [sym__list_item_lower_alpha_period] = STATE(787), - [sym__list_lower_alpha_paren] = STATE(162), - [sym__list_item_lower_alpha_paren] = STATE(792), - [sym__list_lower_alpha_parens] = STATE(162), - [sym__list_item_lower_alpha_parens] = STATE(793), - [sym__list_upper_alpha_period] = STATE(162), - [sym__list_item_upper_alpha_period] = STATE(797), - [sym__list_upper_alpha_paren] = STATE(162), - [sym__list_item_upper_alpha_paren] = STATE(798), - [sym__list_upper_alpha_parens] = STATE(162), - [sym__list_item_upper_alpha_parens] = STATE(799), - [sym__list_lower_roman_period] = STATE(162), - [sym__list_item_lower_roman_period] = STATE(801), - [sym__list_lower_roman_paren] = STATE(162), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(162), - [sym__list_item_lower_roman_parens] = STATE(814), - [sym__list_upper_roman_period] = STATE(162), - [sym__list_item_upper_roman_period] = STATE(818), - [sym__list_upper_roman_paren] = STATE(162), - [sym__list_item_upper_roman_paren] = STATE(819), - [sym__list_upper_roman_parens] = STATE(162), - [sym__list_item_upper_roman_parens] = STATE(822), - [sym_table] = STATE(154), - [sym__table_content] = STATE(64), - [sym_table_separator] = STATE(64), - [sym_table_row] = STATE(71), - [sym_footnote] = STATE(154), - [sym_footnote_marker_begin] = STATE(1120), - [sym_div] = STATE(154), - [sym__div_marker_begin] = STATE(1032), - [sym_code_block] = STATE(154), - [sym_raw_block] = STATE(154), - [sym_thematic_break] = STATE(154), - [sym_block_quote] = STATE(154), - [sym__block_quote_prefix] = STATE(292), - [sym_link_reference_definition] = STATE(154), - [sym_block_attribute] = STATE(154), - [sym__paragraph] = STATE(154), - [sym__paragraph_content] = STATE(785), - [sym__paragraph_inline_content] = STATE(930), - [sym__inline] = STATE(695), - [sym__symbol_fallback] = STATE(358), + [sym_list] = STATE(159), + [sym__list_dash] = STATE(166), + [sym__list_item_dash] = STATE(727), + [sym__list_plus] = STATE(166), + [sym__list_item_plus] = STATE(730), + [sym__list_star] = STATE(166), + [sym__list_item_star] = STATE(759), + [sym__list_task] = STATE(166), + [sym__list_item_task] = STATE(761), + [sym_list_marker_task] = STATE(46), + [sym__list_definition] = STATE(166), + [sym__list_item_definition] = STATE(819), + [sym__list_decimal_period] = STATE(166), + [sym__list_item_decimal_period] = STATE(852), + [sym__list_decimal_paren] = STATE(166), + [sym__list_item_decimal_paren] = STATE(837), + [sym__list_decimal_parens] = STATE(166), + [sym__list_item_decimal_parens] = STATE(815), + [sym__list_lower_alpha_period] = STATE(166), + [sym__list_item_lower_alpha_period] = STATE(843), + [sym__list_lower_alpha_paren] = STATE(166), + [sym__list_item_lower_alpha_paren] = STATE(850), + [sym__list_lower_alpha_parens] = STATE(166), + [sym__list_item_lower_alpha_parens] = STATE(853), + [sym__list_upper_alpha_period] = STATE(166), + [sym__list_item_upper_alpha_period] = STATE(854), + [sym__list_upper_alpha_paren] = STATE(166), + [sym__list_item_upper_alpha_paren] = STATE(855), + [sym__list_upper_alpha_parens] = STATE(166), + [sym__list_item_upper_alpha_parens] = STATE(856), + [sym__list_lower_roman_period] = STATE(166), + [sym__list_item_lower_roman_period] = STATE(857), + [sym__list_lower_roman_paren] = STATE(166), + [sym__list_item_lower_roman_paren] = STATE(871), + [sym__list_lower_roman_parens] = STATE(166), + [sym__list_item_lower_roman_parens] = STATE(874), + [sym__list_upper_roman_period] = STATE(166), + [sym__list_item_upper_roman_period] = STATE(876), + [sym__list_upper_roman_paren] = STATE(166), + [sym__list_item_upper_roman_paren] = STATE(878), + [sym__list_upper_roman_parens] = STATE(166), + [sym__list_item_upper_roman_parens] = STATE(880), + [sym_table] = STATE(159), + [sym__table_content] = STATE(72), + [sym_table_separator] = STATE(72), + [sym_table_row] = STATE(79), + [sym_footnote] = STATE(159), + [sym_footnote_marker_begin] = STATE(1302), + [sym_div] = STATE(159), + [sym__div_marker_begin] = STATE(1165), + [sym_code_block] = STATE(159), + [sym_raw_block] = STATE(159), + [sym_thematic_break] = STATE(159), + [sym_block_quote] = STATE(159), + [sym__block_quote_prefix] = STATE(304), + [sym_link_reference_definition] = STATE(159), + [sym_block_attribute] = STATE(159), + [sym__paragraph] = STATE(159), + [sym__paragraph_content] = STATE(848), + [sym__paragraph_inline_content] = STATE(896), + [sym__inline] = STATE(715), + [sym__symbol_fallback] = STATE(381), [aux_sym_document_repeat1] = STATE(8), - [aux_sym__list_dash_repeat1] = STATE(431), - [aux_sym__list_plus_repeat1] = STATE(414), - [aux_sym__list_star_repeat1] = STATE(416), - [aux_sym__list_task_repeat1] = STATE(396), - [aux_sym__list_definition_repeat1] = STATE(560), - [aux_sym__list_decimal_period_repeat1] = STATE(561), - [aux_sym__list_decimal_paren_repeat1] = STATE(562), - [aux_sym__list_decimal_parens_repeat1] = STATE(563), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(564), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(621), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(566), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(567), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(568), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(569), - [aux_sym__list_lower_roman_period_repeat1] = STATE(570), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(571), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(572), - [aux_sym__list_upper_roman_period_repeat1] = STATE(573), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(574), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(575), - [aux_sym_table_repeat1] = STATE(64), - [aux_sym__block_quote_prefix_repeat1] = STATE(320), - [aux_sym__inline_repeat1] = STATE(358), - [anon_sym_LBRACK] = ACTIONS(75), - [anon_sym_PIPE] = ACTIONS(77), + [aux_sym__list_dash_repeat1] = STATE(454), + [aux_sym__list_plus_repeat1] = STATE(455), + [aux_sym__list_star_repeat1] = STATE(456), + [aux_sym__list_task_repeat1] = STATE(436), + [aux_sym__list_definition_repeat1] = STATE(612), + [aux_sym__list_decimal_period_repeat1] = STATE(613), + [aux_sym__list_decimal_paren_repeat1] = STATE(614), + [aux_sym__list_decimal_parens_repeat1] = STATE(615), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(616), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(617), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(618), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(619), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(620), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(621), + [aux_sym__list_lower_roman_period_repeat1] = STATE(622), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(623), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(624), + [aux_sym__list_upper_roman_period_repeat1] = STATE(625), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(626), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(627), + [aux_sym_table_repeat1] = STATE(72), + [aux_sym__block_quote_prefix_repeat1] = STATE(330), + [aux_sym__inline_repeat1] = STATE(381), + [anon_sym_LBRACK] = ACTIONS(73), + [anon_sym_PIPE] = ACTIONS(75), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(77), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), @@ -5928,10 +6315,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), [sym__block_close] = ACTIONS(214), - [sym__newline] = ACTIONS(83), + [sym__newline] = ACTIONS(81), [sym__heading_begin] = ACTIONS(19), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(85), + [sym__code_block_begin] = ACTIONS(83), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -5952,116 +6339,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(87), + [sym__block_quote_begin] = ACTIONS(85), [sym__block_quote_continuation] = ACTIONS(67), - [sym__thematic_break_dash] = ACTIONS(89), - [sym__thematic_break_star] = ACTIONS(89), + [sym__thematic_break_dash] = ACTIONS(87), + [sym__thematic_break_star] = ACTIONS(87), }, [11] = { - [sym__block_with_heading] = STATE(266), - [sym__block_element] = STATE(266), - [sym_heading] = STATE(266), - [sym_list] = STATE(266), - [sym__list_dash] = STATE(162), - [sym__list_item_dash] = STATE(634), - [sym__list_plus] = STATE(162), - [sym__list_item_plus] = STATE(651), - [sym__list_star] = STATE(162), - [sym__list_item_star] = STATE(697), - [sym__list_task] = STATE(162), - [sym__list_item_task] = STATE(707), - [sym_list_marker_task] = STATE(47), - [sym__list_definition] = STATE(162), - [sym__list_item_definition] = STATE(736), - [sym__list_decimal_period] = STATE(162), - [sym__list_item_decimal_period] = STATE(795), - [sym__list_decimal_paren] = STATE(162), - [sym__list_item_decimal_paren] = STATE(848), - [sym__list_decimal_parens] = STATE(162), - [sym__list_item_decimal_parens] = STATE(772), - [sym__list_lower_alpha_period] = STATE(162), - [sym__list_item_lower_alpha_period] = STATE(787), - [sym__list_lower_alpha_paren] = STATE(162), - [sym__list_item_lower_alpha_paren] = STATE(792), - [sym__list_lower_alpha_parens] = STATE(162), - [sym__list_item_lower_alpha_parens] = STATE(793), - [sym__list_upper_alpha_period] = STATE(162), - [sym__list_item_upper_alpha_period] = STATE(797), - [sym__list_upper_alpha_paren] = STATE(162), - [sym__list_item_upper_alpha_paren] = STATE(798), - [sym__list_upper_alpha_parens] = STATE(162), - [sym__list_item_upper_alpha_parens] = STATE(799), - [sym__list_lower_roman_period] = STATE(162), - [sym__list_item_lower_roman_period] = STATE(801), - [sym__list_lower_roman_paren] = STATE(162), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(162), - [sym__list_item_lower_roman_parens] = STATE(814), - [sym__list_upper_roman_period] = STATE(162), - [sym__list_item_upper_roman_period] = STATE(818), - [sym__list_upper_roman_paren] = STATE(162), - [sym__list_item_upper_roman_paren] = STATE(819), - [sym__list_upper_roman_parens] = STATE(162), - [sym__list_item_upper_roman_parens] = STATE(822), - [sym_table] = STATE(266), - [sym__table_content] = STATE(64), - [sym_table_separator] = STATE(64), - [sym_table_row] = STATE(71), - [sym_footnote] = STATE(266), - [sym_footnote_marker_begin] = STATE(1120), - [sym_div] = STATE(266), - [sym__div_marker_begin] = STATE(1032), - [sym_code_block] = STATE(266), - [sym_raw_block] = STATE(266), - [sym_thematic_break] = STATE(266), - [sym_block_quote] = STATE(266), - [sym__block_quote_prefix] = STATE(282), - [sym_link_reference_definition] = STATE(266), - [sym_block_attribute] = STATE(266), - [sym__paragraph] = STATE(266), - [sym__paragraph_content] = STATE(785), - [sym__paragraph_inline_content] = STATE(930), - [sym__inline] = STATE(695), - [sym__symbol_fallback] = STATE(358), - [aux_sym__list_dash_repeat1] = STATE(431), - [aux_sym__list_plus_repeat1] = STATE(414), - [aux_sym__list_star_repeat1] = STATE(416), - [aux_sym__list_task_repeat1] = STATE(396), - [aux_sym__list_definition_repeat1] = STATE(560), - [aux_sym__list_decimal_period_repeat1] = STATE(561), - [aux_sym__list_decimal_paren_repeat1] = STATE(562), - [aux_sym__list_decimal_parens_repeat1] = STATE(563), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(564), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(621), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(566), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(567), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(568), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(569), - [aux_sym__list_lower_roman_period_repeat1] = STATE(570), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(571), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(572), - [aux_sym__list_upper_roman_period_repeat1] = STATE(573), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(574), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(575), - [aux_sym_table_repeat1] = STATE(64), - [aux_sym_footnote_content_repeat1] = STATE(13), - [aux_sym__block_quote_prefix_repeat1] = STATE(313), - [aux_sym__inline_repeat1] = STATE(358), - [anon_sym_LBRACK] = ACTIONS(75), - [anon_sym_PIPE] = ACTIONS(77), + [sym__block_with_heading] = STATE(164), + [sym__block_element] = STATE(164), + [sym_heading] = STATE(164), + [sym_list] = STATE(164), + [sym__list_dash] = STATE(228), + [sym__list_item_dash] = STATE(727), + [sym__list_plus] = STATE(228), + [sym__list_item_plus] = STATE(730), + [sym__list_star] = STATE(228), + [sym__list_item_star] = STATE(759), + [sym__list_task] = STATE(228), + [sym__list_item_task] = STATE(761), + [sym_list_marker_task] = STATE(46), + [sym__list_definition] = STATE(228), + [sym__list_item_definition] = STATE(819), + [sym__list_decimal_period] = STATE(228), + [sym__list_item_decimal_period] = STATE(852), + [sym__list_decimal_paren] = STATE(228), + [sym__list_item_decimal_paren] = STATE(837), + [sym__list_decimal_parens] = STATE(228), + [sym__list_item_decimal_parens] = STATE(815), + [sym__list_lower_alpha_period] = STATE(228), + [sym__list_item_lower_alpha_period] = STATE(843), + [sym__list_lower_alpha_paren] = STATE(228), + [sym__list_item_lower_alpha_paren] = STATE(850), + [sym__list_lower_alpha_parens] = STATE(228), + [sym__list_item_lower_alpha_parens] = STATE(853), + [sym__list_upper_alpha_period] = STATE(228), + [sym__list_item_upper_alpha_period] = STATE(854), + [sym__list_upper_alpha_paren] = STATE(228), + [sym__list_item_upper_alpha_paren] = STATE(855), + [sym__list_upper_alpha_parens] = STATE(228), + [sym__list_item_upper_alpha_parens] = STATE(856), + [sym__list_lower_roman_period] = STATE(228), + [sym__list_item_lower_roman_period] = STATE(857), + [sym__list_lower_roman_paren] = STATE(228), + [sym__list_item_lower_roman_paren] = STATE(871), + [sym__list_lower_roman_parens] = STATE(228), + [sym__list_item_lower_roman_parens] = STATE(874), + [sym__list_upper_roman_period] = STATE(228), + [sym__list_item_upper_roman_period] = STATE(876), + [sym__list_upper_roman_paren] = STATE(228), + [sym__list_item_upper_roman_paren] = STATE(878), + [sym__list_upper_roman_parens] = STATE(228), + [sym__list_item_upper_roman_parens] = STATE(880), + [sym_table] = STATE(164), + [sym__table_content] = STATE(73), + [sym_table_separator] = STATE(73), + [sym_table_row] = STATE(77), + [sym_footnote] = STATE(164), + [sym_footnote_marker_begin] = STATE(1306), + [sym_footnote_content] = STATE(1078), + [sym_div] = STATE(164), + [sym__div_marker_begin] = STATE(1210), + [sym_code_block] = STATE(164), + [sym_raw_block] = STATE(164), + [sym_thematic_break] = STATE(164), + [sym_block_quote] = STATE(164), + [sym__block_quote_prefix] = STATE(301), + [sym_link_reference_definition] = STATE(164), + [sym_block_attribute] = STATE(164), + [sym__paragraph] = STATE(164), + [sym__paragraph_content] = STATE(889), + [sym__paragraph_inline_content] = STATE(896), + [sym__inline] = STATE(715), + [sym__symbol_fallback] = STATE(381), + [aux_sym__list_dash_repeat1] = STATE(445), + [aux_sym__list_plus_repeat1] = STATE(446), + [aux_sym__list_star_repeat1] = STATE(447), + [aux_sym__list_task_repeat1] = STATE(423), + [aux_sym__list_definition_repeat1] = STATE(655), + [aux_sym__list_decimal_period_repeat1] = STATE(656), + [aux_sym__list_decimal_paren_repeat1] = STATE(657), + [aux_sym__list_decimal_parens_repeat1] = STATE(658), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(659), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(660), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(661), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(662), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(663), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(664), + [aux_sym__list_lower_roman_period_repeat1] = STATE(665), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(666), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(667), + [aux_sym__list_upper_roman_period_repeat1] = STATE(668), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(669), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(670), + [aux_sym_table_repeat1] = STATE(73), + [aux_sym_footnote_content_repeat1] = STATE(17), + [aux_sym__block_quote_prefix_repeat1] = STATE(330), + [aux_sym__inline_repeat1] = STATE(381), + [anon_sym_LBRACK] = ACTIONS(216), + [anon_sym_PIPE] = ACTIONS(218), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(220), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__block_close] = ACTIONS(216), - [sym__newline] = ACTIONS(218), - [sym__heading_begin] = ACTIONS(19), + [sym__newline] = ACTIONS(222), + [sym__heading_begin] = ACTIONS(224), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(85), + [sym__code_block_begin] = ACTIONS(226), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -6082,116 +6469,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(87), - [sym__block_quote_continuation] = ACTIONS(220), - [sym__thematic_break_dash] = ACTIONS(89), - [sym__thematic_break_star] = ACTIONS(89), + [sym__block_quote_begin] = ACTIONS(228), + [sym__block_quote_continuation] = ACTIONS(230), + [sym__thematic_break_dash] = ACTIONS(232), + [sym__thematic_break_star] = ACTIONS(232), }, [12] = { - [sym__block_with_heading] = STATE(159), - [sym__block_element] = STATE(159), - [sym_heading] = STATE(159), - [sym_list] = STATE(159), - [sym__list_dash] = STATE(223), - [sym__list_item_dash] = STATE(634), - [sym__list_plus] = STATE(223), - [sym__list_item_plus] = STATE(651), - [sym__list_star] = STATE(223), - [sym__list_item_star] = STATE(697), - [sym__list_task] = STATE(223), - [sym__list_item_task] = STATE(707), - [sym_list_marker_task] = STATE(47), - [sym__list_definition] = STATE(223), - [sym__list_item_definition] = STATE(736), - [sym__list_decimal_period] = STATE(223), - [sym__list_item_decimal_period] = STATE(795), - [sym__list_decimal_paren] = STATE(223), - [sym__list_item_decimal_paren] = STATE(848), - [sym__list_decimal_parens] = STATE(223), - [sym__list_item_decimal_parens] = STATE(772), - [sym__list_lower_alpha_period] = STATE(223), - [sym__list_item_lower_alpha_period] = STATE(787), - [sym__list_lower_alpha_paren] = STATE(223), - [sym__list_item_lower_alpha_paren] = STATE(792), - [sym__list_lower_alpha_parens] = STATE(223), - [sym__list_item_lower_alpha_parens] = STATE(793), - [sym__list_upper_alpha_period] = STATE(223), - [sym__list_item_upper_alpha_period] = STATE(797), - [sym__list_upper_alpha_paren] = STATE(223), - [sym__list_item_upper_alpha_paren] = STATE(798), - [sym__list_upper_alpha_parens] = STATE(223), - [sym__list_item_upper_alpha_parens] = STATE(799), - [sym__list_lower_roman_period] = STATE(223), - [sym__list_item_lower_roman_period] = STATE(801), - [sym__list_lower_roman_paren] = STATE(223), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(223), - [sym__list_item_lower_roman_parens] = STATE(814), - [sym__list_upper_roman_period] = STATE(223), - [sym__list_item_upper_roman_period] = STATE(818), - [sym__list_upper_roman_paren] = STATE(223), - [sym__list_item_upper_roman_paren] = STATE(819), - [sym__list_upper_roman_parens] = STATE(223), - [sym__list_item_upper_roman_parens] = STATE(822), - [sym_table] = STATE(159), - [sym__table_content] = STATE(65), - [sym_table_separator] = STATE(65), - [sym_table_row] = STATE(70), - [sym_footnote] = STATE(159), - [sym_footnote_marker_begin] = STATE(1122), - [sym_footnote_content] = STATE(945), - [sym_div] = STATE(159), - [sym__div_marker_begin] = STATE(1053), - [sym_code_block] = STATE(159), - [sym_raw_block] = STATE(159), - [sym_thematic_break] = STATE(159), - [sym_block_quote] = STATE(159), - [sym__block_quote_prefix] = STATE(291), - [sym_link_reference_definition] = STATE(159), - [sym_block_attribute] = STATE(159), - [sym__paragraph] = STATE(159), - [sym__paragraph_content] = STATE(812), - [sym__paragraph_inline_content] = STATE(930), - [sym__inline] = STATE(695), - [sym__symbol_fallback] = STATE(358), - [aux_sym__list_dash_repeat1] = STATE(424), - [aux_sym__list_plus_repeat1] = STATE(425), - [aux_sym__list_star_repeat1] = STATE(427), - [aux_sym__list_task_repeat1] = STATE(409), - [aux_sym__list_definition_repeat1] = STATE(577), - [aux_sym__list_decimal_period_repeat1] = STATE(578), - [aux_sym__list_decimal_paren_repeat1] = STATE(579), - [aux_sym__list_decimal_parens_repeat1] = STATE(580), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(581), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(582), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(583), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(584), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(585), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(586), - [aux_sym__list_lower_roman_period_repeat1] = STATE(587), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(588), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(589), - [aux_sym__list_upper_roman_period_repeat1] = STATE(590), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(591), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(592), - [aux_sym_table_repeat1] = STATE(65), - [aux_sym_footnote_content_repeat1] = STATE(16), - [aux_sym__block_quote_prefix_repeat1] = STATE(320), - [aux_sym__inline_repeat1] = STATE(358), - [anon_sym_LBRACK] = ACTIONS(222), - [anon_sym_PIPE] = ACTIONS(224), + [sym__block_with_heading] = STATE(164), + [sym__block_element] = STATE(164), + [sym_heading] = STATE(164), + [sym_list] = STATE(164), + [sym__list_dash] = STATE(228), + [sym__list_item_dash] = STATE(727), + [sym__list_plus] = STATE(228), + [sym__list_item_plus] = STATE(730), + [sym__list_star] = STATE(228), + [sym__list_item_star] = STATE(759), + [sym__list_task] = STATE(228), + [sym__list_item_task] = STATE(761), + [sym_list_marker_task] = STATE(46), + [sym__list_definition] = STATE(228), + [sym__list_item_definition] = STATE(819), + [sym__list_decimal_period] = STATE(228), + [sym__list_item_decimal_period] = STATE(852), + [sym__list_decimal_paren] = STATE(228), + [sym__list_item_decimal_paren] = STATE(837), + [sym__list_decimal_parens] = STATE(228), + [sym__list_item_decimal_parens] = STATE(815), + [sym__list_lower_alpha_period] = STATE(228), + [sym__list_item_lower_alpha_period] = STATE(843), + [sym__list_lower_alpha_paren] = STATE(228), + [sym__list_item_lower_alpha_paren] = STATE(850), + [sym__list_lower_alpha_parens] = STATE(228), + [sym__list_item_lower_alpha_parens] = STATE(853), + [sym__list_upper_alpha_period] = STATE(228), + [sym__list_item_upper_alpha_period] = STATE(854), + [sym__list_upper_alpha_paren] = STATE(228), + [sym__list_item_upper_alpha_paren] = STATE(855), + [sym__list_upper_alpha_parens] = STATE(228), + [sym__list_item_upper_alpha_parens] = STATE(856), + [sym__list_lower_roman_period] = STATE(228), + [sym__list_item_lower_roman_period] = STATE(857), + [sym__list_lower_roman_paren] = STATE(228), + [sym__list_item_lower_roman_paren] = STATE(871), + [sym__list_lower_roman_parens] = STATE(228), + [sym__list_item_lower_roman_parens] = STATE(874), + [sym__list_upper_roman_period] = STATE(228), + [sym__list_item_upper_roman_period] = STATE(876), + [sym__list_upper_roman_paren] = STATE(228), + [sym__list_item_upper_roman_paren] = STATE(878), + [sym__list_upper_roman_parens] = STATE(228), + [sym__list_item_upper_roman_parens] = STATE(880), + [sym_table] = STATE(164), + [sym__table_content] = STATE(73), + [sym_table_separator] = STATE(73), + [sym_table_row] = STATE(77), + [sym_footnote] = STATE(164), + [sym_footnote_marker_begin] = STATE(1306), + [sym_footnote_content] = STATE(1023), + [sym_div] = STATE(164), + [sym__div_marker_begin] = STATE(1210), + [sym_code_block] = STATE(164), + [sym_raw_block] = STATE(164), + [sym_thematic_break] = STATE(164), + [sym_block_quote] = STATE(164), + [sym__block_quote_prefix] = STATE(301), + [sym_link_reference_definition] = STATE(164), + [sym_block_attribute] = STATE(164), + [sym__paragraph] = STATE(164), + [sym__paragraph_content] = STATE(889), + [sym__paragraph_inline_content] = STATE(896), + [sym__inline] = STATE(715), + [sym__symbol_fallback] = STATE(381), + [aux_sym__list_dash_repeat1] = STATE(445), + [aux_sym__list_plus_repeat1] = STATE(446), + [aux_sym__list_star_repeat1] = STATE(447), + [aux_sym__list_task_repeat1] = STATE(423), + [aux_sym__list_definition_repeat1] = STATE(655), + [aux_sym__list_decimal_period_repeat1] = STATE(656), + [aux_sym__list_decimal_paren_repeat1] = STATE(657), + [aux_sym__list_decimal_parens_repeat1] = STATE(658), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(659), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(660), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(661), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(662), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(663), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(664), + [aux_sym__list_lower_roman_period_repeat1] = STATE(665), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(666), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(667), + [aux_sym__list_upper_roman_period_repeat1] = STATE(668), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(669), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(670), + [aux_sym_table_repeat1] = STATE(73), + [aux_sym_footnote_content_repeat1] = STATE(17), + [aux_sym__block_quote_prefix_repeat1] = STATE(330), + [aux_sym__inline_repeat1] = STATE(381), + [anon_sym_LBRACK] = ACTIONS(216), + [anon_sym_PIPE] = ACTIONS(218), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(220), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(228), - [sym__heading_begin] = ACTIONS(230), + [sym__newline] = ACTIONS(222), + [sym__heading_begin] = ACTIONS(224), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(232), + [sym__code_block_begin] = ACTIONS(226), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -6212,116 +6599,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(234), - [sym__block_quote_continuation] = ACTIONS(236), - [sym__thematic_break_dash] = ACTIONS(238), - [sym__thematic_break_star] = ACTIONS(238), + [sym__block_quote_begin] = ACTIONS(228), + [sym__block_quote_continuation] = ACTIONS(230), + [sym__thematic_break_dash] = ACTIONS(232), + [sym__thematic_break_star] = ACTIONS(232), }, [13] = { - [sym__block_with_heading] = STATE(266), - [sym__block_element] = STATE(266), - [sym_heading] = STATE(266), - [sym_list] = STATE(266), - [sym__list_dash] = STATE(162), - [sym__list_item_dash] = STATE(634), - [sym__list_plus] = STATE(162), - [sym__list_item_plus] = STATE(651), - [sym__list_star] = STATE(162), - [sym__list_item_star] = STATE(697), - [sym__list_task] = STATE(162), - [sym__list_item_task] = STATE(707), - [sym_list_marker_task] = STATE(47), - [sym__list_definition] = STATE(162), - [sym__list_item_definition] = STATE(736), - [sym__list_decimal_period] = STATE(162), - [sym__list_item_decimal_period] = STATE(795), - [sym__list_decimal_paren] = STATE(162), - [sym__list_item_decimal_paren] = STATE(848), - [sym__list_decimal_parens] = STATE(162), - [sym__list_item_decimal_parens] = STATE(772), - [sym__list_lower_alpha_period] = STATE(162), - [sym__list_item_lower_alpha_period] = STATE(787), - [sym__list_lower_alpha_paren] = STATE(162), - [sym__list_item_lower_alpha_paren] = STATE(792), - [sym__list_lower_alpha_parens] = STATE(162), - [sym__list_item_lower_alpha_parens] = STATE(793), - [sym__list_upper_alpha_period] = STATE(162), - [sym__list_item_upper_alpha_period] = STATE(797), - [sym__list_upper_alpha_paren] = STATE(162), - [sym__list_item_upper_alpha_paren] = STATE(798), - [sym__list_upper_alpha_parens] = STATE(162), - [sym__list_item_upper_alpha_parens] = STATE(799), - [sym__list_lower_roman_period] = STATE(162), - [sym__list_item_lower_roman_period] = STATE(801), - [sym__list_lower_roman_paren] = STATE(162), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(162), - [sym__list_item_lower_roman_parens] = STATE(814), - [sym__list_upper_roman_period] = STATE(162), - [sym__list_item_upper_roman_period] = STATE(818), - [sym__list_upper_roman_paren] = STATE(162), - [sym__list_item_upper_roman_paren] = STATE(819), - [sym__list_upper_roman_parens] = STATE(162), - [sym__list_item_upper_roman_parens] = STATE(822), - [sym_table] = STATE(266), - [sym__table_content] = STATE(64), - [sym_table_separator] = STATE(64), - [sym_table_row] = STATE(71), - [sym_footnote] = STATE(266), - [sym_footnote_marker_begin] = STATE(1120), - [sym_div] = STATE(266), - [sym__div_marker_begin] = STATE(1032), - [sym_code_block] = STATE(266), - [sym_raw_block] = STATE(266), - [sym_thematic_break] = STATE(266), - [sym_block_quote] = STATE(266), - [sym__block_quote_prefix] = STATE(287), - [sym_link_reference_definition] = STATE(266), - [sym_block_attribute] = STATE(266), - [sym__paragraph] = STATE(266), - [sym__paragraph_content] = STATE(785), - [sym__paragraph_inline_content] = STATE(930), - [sym__inline] = STATE(695), - [sym__symbol_fallback] = STATE(358), - [aux_sym__list_dash_repeat1] = STATE(431), - [aux_sym__list_plus_repeat1] = STATE(414), - [aux_sym__list_star_repeat1] = STATE(416), - [aux_sym__list_task_repeat1] = STATE(396), - [aux_sym__list_definition_repeat1] = STATE(560), - [aux_sym__list_decimal_period_repeat1] = STATE(561), - [aux_sym__list_decimal_paren_repeat1] = STATE(562), - [aux_sym__list_decimal_parens_repeat1] = STATE(563), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(564), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(621), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(566), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(567), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(568), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(569), - [aux_sym__list_lower_roman_period_repeat1] = STATE(570), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(571), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(572), - [aux_sym__list_upper_roman_period_repeat1] = STATE(573), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(574), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(575), - [aux_sym_table_repeat1] = STATE(64), - [aux_sym_footnote_content_repeat1] = STATE(15), - [aux_sym__block_quote_prefix_repeat1] = STATE(313), - [aux_sym__inline_repeat1] = STATE(358), - [anon_sym_LBRACK] = ACTIONS(75), - [anon_sym_PIPE] = ACTIONS(77), + [sym__block_with_heading] = STATE(260), + [sym__block_element] = STATE(260), + [sym_heading] = STATE(260), + [sym_list] = STATE(260), + [sym__list_dash] = STATE(166), + [sym__list_item_dash] = STATE(727), + [sym__list_plus] = STATE(166), + [sym__list_item_plus] = STATE(730), + [sym__list_star] = STATE(166), + [sym__list_item_star] = STATE(759), + [sym__list_task] = STATE(166), + [sym__list_item_task] = STATE(761), + [sym_list_marker_task] = STATE(46), + [sym__list_definition] = STATE(166), + [sym__list_item_definition] = STATE(819), + [sym__list_decimal_period] = STATE(166), + [sym__list_item_decimal_period] = STATE(852), + [sym__list_decimal_paren] = STATE(166), + [sym__list_item_decimal_paren] = STATE(837), + [sym__list_decimal_parens] = STATE(166), + [sym__list_item_decimal_parens] = STATE(815), + [sym__list_lower_alpha_period] = STATE(166), + [sym__list_item_lower_alpha_period] = STATE(843), + [sym__list_lower_alpha_paren] = STATE(166), + [sym__list_item_lower_alpha_paren] = STATE(850), + [sym__list_lower_alpha_parens] = STATE(166), + [sym__list_item_lower_alpha_parens] = STATE(853), + [sym__list_upper_alpha_period] = STATE(166), + [sym__list_item_upper_alpha_period] = STATE(854), + [sym__list_upper_alpha_paren] = STATE(166), + [sym__list_item_upper_alpha_paren] = STATE(855), + [sym__list_upper_alpha_parens] = STATE(166), + [sym__list_item_upper_alpha_parens] = STATE(856), + [sym__list_lower_roman_period] = STATE(166), + [sym__list_item_lower_roman_period] = STATE(857), + [sym__list_lower_roman_paren] = STATE(166), + [sym__list_item_lower_roman_paren] = STATE(871), + [sym__list_lower_roman_parens] = STATE(166), + [sym__list_item_lower_roman_parens] = STATE(874), + [sym__list_upper_roman_period] = STATE(166), + [sym__list_item_upper_roman_period] = STATE(876), + [sym__list_upper_roman_paren] = STATE(166), + [sym__list_item_upper_roman_paren] = STATE(878), + [sym__list_upper_roman_parens] = STATE(166), + [sym__list_item_upper_roman_parens] = STATE(880), + [sym_table] = STATE(260), + [sym__table_content] = STATE(72), + [sym_table_separator] = STATE(72), + [sym_table_row] = STATE(79), + [sym_footnote] = STATE(260), + [sym_footnote_marker_begin] = STATE(1302), + [sym_div] = STATE(260), + [sym__div_marker_begin] = STATE(1165), + [sym_code_block] = STATE(260), + [sym_raw_block] = STATE(260), + [sym_thematic_break] = STATE(260), + [sym_block_quote] = STATE(260), + [sym__block_quote_prefix] = STATE(288), + [sym_link_reference_definition] = STATE(260), + [sym_block_attribute] = STATE(260), + [sym__paragraph] = STATE(260), + [sym__paragraph_content] = STATE(848), + [sym__paragraph_inline_content] = STATE(896), + [sym__inline] = STATE(715), + [sym__symbol_fallback] = STATE(381), + [aux_sym__list_dash_repeat1] = STATE(454), + [aux_sym__list_plus_repeat1] = STATE(455), + [aux_sym__list_star_repeat1] = STATE(456), + [aux_sym__list_task_repeat1] = STATE(436), + [aux_sym__list_definition_repeat1] = STATE(612), + [aux_sym__list_decimal_period_repeat1] = STATE(613), + [aux_sym__list_decimal_paren_repeat1] = STATE(614), + [aux_sym__list_decimal_parens_repeat1] = STATE(615), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(616), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(617), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(618), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(619), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(620), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(621), + [aux_sym__list_lower_roman_period_repeat1] = STATE(622), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(623), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(624), + [aux_sym__list_upper_roman_period_repeat1] = STATE(625), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(626), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(627), + [aux_sym_table_repeat1] = STATE(72), + [aux_sym_footnote_content_repeat1] = STATE(14), + [aux_sym__block_quote_prefix_repeat1] = STATE(308), + [aux_sym__inline_repeat1] = STATE(381), + [anon_sym_LBRACK] = ACTIONS(73), + [anon_sym_PIPE] = ACTIONS(75), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(77), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__block_close] = ACTIONS(240), - [sym__newline] = ACTIONS(218), + [sym__block_close] = ACTIONS(234), + [sym__newline] = ACTIONS(236), [sym__heading_begin] = ACTIONS(19), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(85), + [sym__code_block_begin] = ACTIONS(83), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -6342,116 +6729,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(87), - [sym__block_quote_continuation] = ACTIONS(220), - [sym__thematic_break_dash] = ACTIONS(89), - [sym__thematic_break_star] = ACTIONS(89), + [sym__block_quote_begin] = ACTIONS(85), + [sym__block_quote_continuation] = ACTIONS(238), + [sym__thematic_break_dash] = ACTIONS(87), + [sym__thematic_break_star] = ACTIONS(87), }, [14] = { - [sym__block_with_heading] = STATE(159), - [sym__block_element] = STATE(159), - [sym_heading] = STATE(159), - [sym_list] = STATE(159), - [sym__list_dash] = STATE(223), - [sym__list_item_dash] = STATE(634), - [sym__list_plus] = STATE(223), - [sym__list_item_plus] = STATE(651), - [sym__list_star] = STATE(223), - [sym__list_item_star] = STATE(697), - [sym__list_task] = STATE(223), - [sym__list_item_task] = STATE(707), - [sym_list_marker_task] = STATE(47), - [sym__list_definition] = STATE(223), - [sym__list_item_definition] = STATE(736), - [sym__list_decimal_period] = STATE(223), - [sym__list_item_decimal_period] = STATE(795), - [sym__list_decimal_paren] = STATE(223), - [sym__list_item_decimal_paren] = STATE(848), - [sym__list_decimal_parens] = STATE(223), - [sym__list_item_decimal_parens] = STATE(772), - [sym__list_lower_alpha_period] = STATE(223), - [sym__list_item_lower_alpha_period] = STATE(787), - [sym__list_lower_alpha_paren] = STATE(223), - [sym__list_item_lower_alpha_paren] = STATE(792), - [sym__list_lower_alpha_parens] = STATE(223), - [sym__list_item_lower_alpha_parens] = STATE(793), - [sym__list_upper_alpha_period] = STATE(223), - [sym__list_item_upper_alpha_period] = STATE(797), - [sym__list_upper_alpha_paren] = STATE(223), - [sym__list_item_upper_alpha_paren] = STATE(798), - [sym__list_upper_alpha_parens] = STATE(223), - [sym__list_item_upper_alpha_parens] = STATE(799), - [sym__list_lower_roman_period] = STATE(223), - [sym__list_item_lower_roman_period] = STATE(801), - [sym__list_lower_roman_paren] = STATE(223), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(223), - [sym__list_item_lower_roman_parens] = STATE(814), - [sym__list_upper_roman_period] = STATE(223), - [sym__list_item_upper_roman_period] = STATE(818), - [sym__list_upper_roman_paren] = STATE(223), - [sym__list_item_upper_roman_paren] = STATE(819), - [sym__list_upper_roman_parens] = STATE(223), - [sym__list_item_upper_roman_parens] = STATE(822), - [sym_table] = STATE(159), - [sym__table_content] = STATE(65), - [sym_table_separator] = STATE(65), - [sym_table_row] = STATE(70), - [sym_footnote] = STATE(159), - [sym_footnote_marker_begin] = STATE(1122), - [sym_footnote_content] = STATE(1106), - [sym_div] = STATE(159), - [sym__div_marker_begin] = STATE(1053), - [sym_code_block] = STATE(159), - [sym_raw_block] = STATE(159), - [sym_thematic_break] = STATE(159), - [sym_block_quote] = STATE(159), - [sym__block_quote_prefix] = STATE(291), - [sym_link_reference_definition] = STATE(159), - [sym_block_attribute] = STATE(159), - [sym__paragraph] = STATE(159), - [sym__paragraph_content] = STATE(812), - [sym__paragraph_inline_content] = STATE(930), - [sym__inline] = STATE(695), - [sym__symbol_fallback] = STATE(358), - [aux_sym__list_dash_repeat1] = STATE(424), - [aux_sym__list_plus_repeat1] = STATE(425), - [aux_sym__list_star_repeat1] = STATE(427), - [aux_sym__list_task_repeat1] = STATE(409), - [aux_sym__list_definition_repeat1] = STATE(577), - [aux_sym__list_decimal_period_repeat1] = STATE(578), - [aux_sym__list_decimal_paren_repeat1] = STATE(579), - [aux_sym__list_decimal_parens_repeat1] = STATE(580), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(581), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(582), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(583), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(584), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(585), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(586), - [aux_sym__list_lower_roman_period_repeat1] = STATE(587), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(588), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(589), - [aux_sym__list_upper_roman_period_repeat1] = STATE(590), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(591), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(592), - [aux_sym_table_repeat1] = STATE(65), + [sym__block_with_heading] = STATE(260), + [sym__block_element] = STATE(260), + [sym_heading] = STATE(260), + [sym_list] = STATE(260), + [sym__list_dash] = STATE(166), + [sym__list_item_dash] = STATE(727), + [sym__list_plus] = STATE(166), + [sym__list_item_plus] = STATE(730), + [sym__list_star] = STATE(166), + [sym__list_item_star] = STATE(759), + [sym__list_task] = STATE(166), + [sym__list_item_task] = STATE(761), + [sym_list_marker_task] = STATE(46), + [sym__list_definition] = STATE(166), + [sym__list_item_definition] = STATE(819), + [sym__list_decimal_period] = STATE(166), + [sym__list_item_decimal_period] = STATE(852), + [sym__list_decimal_paren] = STATE(166), + [sym__list_item_decimal_paren] = STATE(837), + [sym__list_decimal_parens] = STATE(166), + [sym__list_item_decimal_parens] = STATE(815), + [sym__list_lower_alpha_period] = STATE(166), + [sym__list_item_lower_alpha_period] = STATE(843), + [sym__list_lower_alpha_paren] = STATE(166), + [sym__list_item_lower_alpha_paren] = STATE(850), + [sym__list_lower_alpha_parens] = STATE(166), + [sym__list_item_lower_alpha_parens] = STATE(853), + [sym__list_upper_alpha_period] = STATE(166), + [sym__list_item_upper_alpha_period] = STATE(854), + [sym__list_upper_alpha_paren] = STATE(166), + [sym__list_item_upper_alpha_paren] = STATE(855), + [sym__list_upper_alpha_parens] = STATE(166), + [sym__list_item_upper_alpha_parens] = STATE(856), + [sym__list_lower_roman_period] = STATE(166), + [sym__list_item_lower_roman_period] = STATE(857), + [sym__list_lower_roman_paren] = STATE(166), + [sym__list_item_lower_roman_paren] = STATE(871), + [sym__list_lower_roman_parens] = STATE(166), + [sym__list_item_lower_roman_parens] = STATE(874), + [sym__list_upper_roman_period] = STATE(166), + [sym__list_item_upper_roman_period] = STATE(876), + [sym__list_upper_roman_paren] = STATE(166), + [sym__list_item_upper_roman_paren] = STATE(878), + [sym__list_upper_roman_parens] = STATE(166), + [sym__list_item_upper_roman_parens] = STATE(880), + [sym_table] = STATE(260), + [sym__table_content] = STATE(72), + [sym_table_separator] = STATE(72), + [sym_table_row] = STATE(79), + [sym_footnote] = STATE(260), + [sym_footnote_marker_begin] = STATE(1302), + [sym_div] = STATE(260), + [sym__div_marker_begin] = STATE(1165), + [sym_code_block] = STATE(260), + [sym_raw_block] = STATE(260), + [sym_thematic_break] = STATE(260), + [sym_block_quote] = STATE(260), + [sym__block_quote_prefix] = STATE(299), + [sym_link_reference_definition] = STATE(260), + [sym_block_attribute] = STATE(260), + [sym__paragraph] = STATE(260), + [sym__paragraph_content] = STATE(848), + [sym__paragraph_inline_content] = STATE(896), + [sym__inline] = STATE(715), + [sym__symbol_fallback] = STATE(381), + [aux_sym__list_dash_repeat1] = STATE(454), + [aux_sym__list_plus_repeat1] = STATE(455), + [aux_sym__list_star_repeat1] = STATE(456), + [aux_sym__list_task_repeat1] = STATE(436), + [aux_sym__list_definition_repeat1] = STATE(612), + [aux_sym__list_decimal_period_repeat1] = STATE(613), + [aux_sym__list_decimal_paren_repeat1] = STATE(614), + [aux_sym__list_decimal_parens_repeat1] = STATE(615), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(616), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(617), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(618), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(619), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(620), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(621), + [aux_sym__list_lower_roman_period_repeat1] = STATE(622), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(623), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(624), + [aux_sym__list_upper_roman_period_repeat1] = STATE(625), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(626), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(627), + [aux_sym_table_repeat1] = STATE(72), [aux_sym_footnote_content_repeat1] = STATE(16), - [aux_sym__block_quote_prefix_repeat1] = STATE(320), - [aux_sym__inline_repeat1] = STATE(358), - [anon_sym_LBRACK] = ACTIONS(222), - [anon_sym_PIPE] = ACTIONS(224), + [aux_sym__block_quote_prefix_repeat1] = STATE(308), + [aux_sym__inline_repeat1] = STATE(381), + [anon_sym_LBRACK] = ACTIONS(73), + [anon_sym_PIPE] = ACTIONS(75), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(77), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(228), - [sym__heading_begin] = ACTIONS(230), + [sym__block_close] = ACTIONS(240), + [sym__newline] = ACTIONS(236), + [sym__heading_begin] = ACTIONS(19), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(232), + [sym__code_block_begin] = ACTIONS(83), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -6472,101 +6859,231 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(234), - [sym__block_quote_continuation] = ACTIONS(236), - [sym__thematic_break_dash] = ACTIONS(238), - [sym__thematic_break_star] = ACTIONS(238), + [sym__block_quote_begin] = ACTIONS(85), + [sym__block_quote_continuation] = ACTIONS(238), + [sym__thematic_break_dash] = ACTIONS(87), + [sym__thematic_break_star] = ACTIONS(87), }, [15] = { - [sym__block_with_heading] = STATE(266), - [sym__block_element] = STATE(266), - [sym_heading] = STATE(266), - [sym_list] = STATE(266), - [sym__list_dash] = STATE(162), - [sym__list_item_dash] = STATE(634), - [sym__list_plus] = STATE(162), - [sym__list_item_plus] = STATE(651), - [sym__list_star] = STATE(162), - [sym__list_item_star] = STATE(697), - [sym__list_task] = STATE(162), - [sym__list_item_task] = STATE(707), - [sym_list_marker_task] = STATE(47), - [sym__list_definition] = STATE(162), - [sym__list_item_definition] = STATE(736), - [sym__list_decimal_period] = STATE(162), - [sym__list_item_decimal_period] = STATE(795), - [sym__list_decimal_paren] = STATE(162), - [sym__list_item_decimal_paren] = STATE(848), - [sym__list_decimal_parens] = STATE(162), - [sym__list_item_decimal_parens] = STATE(772), - [sym__list_lower_alpha_period] = STATE(162), - [sym__list_item_lower_alpha_period] = STATE(787), - [sym__list_lower_alpha_paren] = STATE(162), - [sym__list_item_lower_alpha_paren] = STATE(792), - [sym__list_lower_alpha_parens] = STATE(162), - [sym__list_item_lower_alpha_parens] = STATE(793), - [sym__list_upper_alpha_period] = STATE(162), - [sym__list_item_upper_alpha_period] = STATE(797), - [sym__list_upper_alpha_paren] = STATE(162), - [sym__list_item_upper_alpha_paren] = STATE(798), - [sym__list_upper_alpha_parens] = STATE(162), - [sym__list_item_upper_alpha_parens] = STATE(799), - [sym__list_lower_roman_period] = STATE(162), - [sym__list_item_lower_roman_period] = STATE(801), - [sym__list_lower_roman_paren] = STATE(162), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(162), - [sym__list_item_lower_roman_parens] = STATE(814), - [sym__list_upper_roman_period] = STATE(162), - [sym__list_item_upper_roman_period] = STATE(818), - [sym__list_upper_roman_paren] = STATE(162), - [sym__list_item_upper_roman_paren] = STATE(819), - [sym__list_upper_roman_parens] = STATE(162), - [sym__list_item_upper_roman_parens] = STATE(822), - [sym_table] = STATE(266), - [sym__table_content] = STATE(64), - [sym_table_separator] = STATE(64), - [sym_table_row] = STATE(71), - [sym_footnote] = STATE(266), - [sym_footnote_marker_begin] = STATE(1120), - [sym_div] = STATE(266), - [sym__div_marker_begin] = STATE(1032), - [sym_code_block] = STATE(266), - [sym_raw_block] = STATE(266), - [sym_thematic_break] = STATE(266), - [sym_block_quote] = STATE(266), - [sym__block_quote_prefix] = STATE(292), - [sym_link_reference_definition] = STATE(266), - [sym_block_attribute] = STATE(266), - [sym__paragraph] = STATE(266), - [sym__paragraph_content] = STATE(785), - [sym__paragraph_inline_content] = STATE(930), - [sym__inline] = STATE(695), - [sym__symbol_fallback] = STATE(358), - [aux_sym__list_dash_repeat1] = STATE(431), - [aux_sym__list_plus_repeat1] = STATE(414), - [aux_sym__list_star_repeat1] = STATE(416), - [aux_sym__list_task_repeat1] = STATE(396), - [aux_sym__list_definition_repeat1] = STATE(560), - [aux_sym__list_decimal_period_repeat1] = STATE(561), - [aux_sym__list_decimal_paren_repeat1] = STATE(562), - [aux_sym__list_decimal_parens_repeat1] = STATE(563), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(564), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(621), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(566), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(567), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(568), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(569), - [aux_sym__list_lower_roman_period_repeat1] = STATE(570), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(571), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(572), - [aux_sym__list_upper_roman_period_repeat1] = STATE(573), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(574), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(575), - [aux_sym_table_repeat1] = STATE(64), - [aux_sym_footnote_content_repeat1] = STATE(15), - [aux_sym__block_quote_prefix_repeat1] = STATE(320), - [aux_sym__inline_repeat1] = STATE(358), + [sym__block_with_heading] = STATE(164), + [sym__block_element] = STATE(164), + [sym_heading] = STATE(164), + [sym_list] = STATE(164), + [sym__list_dash] = STATE(228), + [sym__list_item_dash] = STATE(727), + [sym__list_plus] = STATE(228), + [sym__list_item_plus] = STATE(730), + [sym__list_star] = STATE(228), + [sym__list_item_star] = STATE(759), + [sym__list_task] = STATE(228), + [sym__list_item_task] = STATE(761), + [sym_list_marker_task] = STATE(46), + [sym__list_definition] = STATE(228), + [sym__list_item_definition] = STATE(819), + [sym__list_decimal_period] = STATE(228), + [sym__list_item_decimal_period] = STATE(852), + [sym__list_decimal_paren] = STATE(228), + [sym__list_item_decimal_paren] = STATE(837), + [sym__list_decimal_parens] = STATE(228), + [sym__list_item_decimal_parens] = STATE(815), + [sym__list_lower_alpha_period] = STATE(228), + [sym__list_item_lower_alpha_period] = STATE(843), + [sym__list_lower_alpha_paren] = STATE(228), + [sym__list_item_lower_alpha_paren] = STATE(850), + [sym__list_lower_alpha_parens] = STATE(228), + [sym__list_item_lower_alpha_parens] = STATE(853), + [sym__list_upper_alpha_period] = STATE(228), + [sym__list_item_upper_alpha_period] = STATE(854), + [sym__list_upper_alpha_paren] = STATE(228), + [sym__list_item_upper_alpha_paren] = STATE(855), + [sym__list_upper_alpha_parens] = STATE(228), + [sym__list_item_upper_alpha_parens] = STATE(856), + [sym__list_lower_roman_period] = STATE(228), + [sym__list_item_lower_roman_period] = STATE(857), + [sym__list_lower_roman_paren] = STATE(228), + [sym__list_item_lower_roman_paren] = STATE(871), + [sym__list_lower_roman_parens] = STATE(228), + [sym__list_item_lower_roman_parens] = STATE(874), + [sym__list_upper_roman_period] = STATE(228), + [sym__list_item_upper_roman_period] = STATE(876), + [sym__list_upper_roman_paren] = STATE(228), + [sym__list_item_upper_roman_paren] = STATE(878), + [sym__list_upper_roman_parens] = STATE(228), + [sym__list_item_upper_roman_parens] = STATE(880), + [sym_table] = STATE(164), + [sym__table_content] = STATE(73), + [sym_table_separator] = STATE(73), + [sym_table_row] = STATE(77), + [sym_footnote] = STATE(164), + [sym_footnote_marker_begin] = STATE(1306), + [sym_footnote_content] = STATE(1043), + [sym_div] = STATE(164), + [sym__div_marker_begin] = STATE(1210), + [sym_code_block] = STATE(164), + [sym_raw_block] = STATE(164), + [sym_thematic_break] = STATE(164), + [sym_block_quote] = STATE(164), + [sym__block_quote_prefix] = STATE(301), + [sym_link_reference_definition] = STATE(164), + [sym_block_attribute] = STATE(164), + [sym__paragraph] = STATE(164), + [sym__paragraph_content] = STATE(889), + [sym__paragraph_inline_content] = STATE(896), + [sym__inline] = STATE(715), + [sym__symbol_fallback] = STATE(381), + [aux_sym__list_dash_repeat1] = STATE(445), + [aux_sym__list_plus_repeat1] = STATE(446), + [aux_sym__list_star_repeat1] = STATE(447), + [aux_sym__list_task_repeat1] = STATE(423), + [aux_sym__list_definition_repeat1] = STATE(655), + [aux_sym__list_decimal_period_repeat1] = STATE(656), + [aux_sym__list_decimal_paren_repeat1] = STATE(657), + [aux_sym__list_decimal_parens_repeat1] = STATE(658), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(659), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(660), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(661), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(662), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(663), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(664), + [aux_sym__list_lower_roman_period_repeat1] = STATE(665), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(666), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(667), + [aux_sym__list_upper_roman_period_repeat1] = STATE(668), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(669), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(670), + [aux_sym_table_repeat1] = STATE(73), + [aux_sym_footnote_content_repeat1] = STATE(17), + [aux_sym__block_quote_prefix_repeat1] = STATE(330), + [aux_sym__inline_repeat1] = STATE(381), + [anon_sym_LBRACK] = ACTIONS(216), + [anon_sym_PIPE] = ACTIONS(218), + [anon_sym_LBRACK_CARET] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(220), + [anon_sym_DOT] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(13), + [aux_sym__inline_token1] = ACTIONS(13), + [anon_sym_LBRACE_DASH] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(13), + [anon_sym_PERCENT] = ACTIONS(13), + [sym__newline] = ACTIONS(222), + [sym__heading_begin] = ACTIONS(224), + [sym__div_begin] = ACTIONS(21), + [sym__code_block_begin] = ACTIONS(226), + [sym_list_marker_dash] = ACTIONS(25), + [sym_list_marker_star] = ACTIONS(27), + [sym_list_marker_plus] = ACTIONS(29), + [sym__list_marker_task_begin] = ACTIONS(31), + [sym_list_marker_definition] = ACTIONS(33), + [sym_list_marker_decimal_period] = ACTIONS(35), + [sym_list_marker_lower_alpha_period] = ACTIONS(37), + [sym_list_marker_upper_alpha_period] = ACTIONS(39), + [sym_list_marker_lower_roman_period] = ACTIONS(41), + [sym_list_marker_upper_roman_period] = ACTIONS(43), + [sym_list_marker_decimal_paren] = ACTIONS(45), + [sym_list_marker_lower_alpha_paren] = ACTIONS(47), + [sym_list_marker_upper_alpha_paren] = ACTIONS(49), + [sym_list_marker_lower_roman_paren] = ACTIONS(51), + [sym_list_marker_upper_roman_paren] = ACTIONS(53), + [sym_list_marker_decimal_parens] = ACTIONS(55), + [sym_list_marker_lower_alpha_parens] = ACTIONS(57), + [sym_list_marker_upper_alpha_parens] = ACTIONS(59), + [sym_list_marker_lower_roman_parens] = ACTIONS(61), + [sym_list_marker_upper_roman_parens] = ACTIONS(63), + [sym__block_quote_begin] = ACTIONS(228), + [sym__block_quote_continuation] = ACTIONS(230), + [sym__thematic_break_dash] = ACTIONS(232), + [sym__thematic_break_star] = ACTIONS(232), + }, + [16] = { + [sym__block_with_heading] = STATE(260), + [sym__block_element] = STATE(260), + [sym_heading] = STATE(260), + [sym_list] = STATE(260), + [sym__list_dash] = STATE(166), + [sym__list_item_dash] = STATE(727), + [sym__list_plus] = STATE(166), + [sym__list_item_plus] = STATE(730), + [sym__list_star] = STATE(166), + [sym__list_item_star] = STATE(759), + [sym__list_task] = STATE(166), + [sym__list_item_task] = STATE(761), + [sym_list_marker_task] = STATE(46), + [sym__list_definition] = STATE(166), + [sym__list_item_definition] = STATE(819), + [sym__list_decimal_period] = STATE(166), + [sym__list_item_decimal_period] = STATE(852), + [sym__list_decimal_paren] = STATE(166), + [sym__list_item_decimal_paren] = STATE(837), + [sym__list_decimal_parens] = STATE(166), + [sym__list_item_decimal_parens] = STATE(815), + [sym__list_lower_alpha_period] = STATE(166), + [sym__list_item_lower_alpha_period] = STATE(843), + [sym__list_lower_alpha_paren] = STATE(166), + [sym__list_item_lower_alpha_paren] = STATE(850), + [sym__list_lower_alpha_parens] = STATE(166), + [sym__list_item_lower_alpha_parens] = STATE(853), + [sym__list_upper_alpha_period] = STATE(166), + [sym__list_item_upper_alpha_period] = STATE(854), + [sym__list_upper_alpha_paren] = STATE(166), + [sym__list_item_upper_alpha_paren] = STATE(855), + [sym__list_upper_alpha_parens] = STATE(166), + [sym__list_item_upper_alpha_parens] = STATE(856), + [sym__list_lower_roman_period] = STATE(166), + [sym__list_item_lower_roman_period] = STATE(857), + [sym__list_lower_roman_paren] = STATE(166), + [sym__list_item_lower_roman_paren] = STATE(871), + [sym__list_lower_roman_parens] = STATE(166), + [sym__list_item_lower_roman_parens] = STATE(874), + [sym__list_upper_roman_period] = STATE(166), + [sym__list_item_upper_roman_period] = STATE(876), + [sym__list_upper_roman_paren] = STATE(166), + [sym__list_item_upper_roman_paren] = STATE(878), + [sym__list_upper_roman_parens] = STATE(166), + [sym__list_item_upper_roman_parens] = STATE(880), + [sym_table] = STATE(260), + [sym__table_content] = STATE(72), + [sym_table_separator] = STATE(72), + [sym_table_row] = STATE(79), + [sym_footnote] = STATE(260), + [sym_footnote_marker_begin] = STATE(1302), + [sym_div] = STATE(260), + [sym__div_marker_begin] = STATE(1165), + [sym_code_block] = STATE(260), + [sym_raw_block] = STATE(260), + [sym_thematic_break] = STATE(260), + [sym_block_quote] = STATE(260), + [sym__block_quote_prefix] = STATE(304), + [sym_link_reference_definition] = STATE(260), + [sym_block_attribute] = STATE(260), + [sym__paragraph] = STATE(260), + [sym__paragraph_content] = STATE(848), + [sym__paragraph_inline_content] = STATE(896), + [sym__inline] = STATE(715), + [sym__symbol_fallback] = STATE(381), + [aux_sym__list_dash_repeat1] = STATE(454), + [aux_sym__list_plus_repeat1] = STATE(455), + [aux_sym__list_star_repeat1] = STATE(456), + [aux_sym__list_task_repeat1] = STATE(436), + [aux_sym__list_definition_repeat1] = STATE(612), + [aux_sym__list_decimal_period_repeat1] = STATE(613), + [aux_sym__list_decimal_paren_repeat1] = STATE(614), + [aux_sym__list_decimal_parens_repeat1] = STATE(615), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(616), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(617), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(618), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(619), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(620), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(621), + [aux_sym__list_lower_roman_period_repeat1] = STATE(622), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(623), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(624), + [aux_sym__list_upper_roman_period_repeat1] = STATE(625), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(626), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(627), + [aux_sym_table_repeat1] = STATE(72), + [aux_sym_footnote_content_repeat1] = STATE(16), + [aux_sym__block_quote_prefix_repeat1] = STATE(330), + [aux_sym__inline_repeat1] = STATE(381), [anon_sym_LBRACK] = ACTIONS(242), [anon_sym_PIPE] = ACTIONS(245), [anon_sym_LBRACK_CARET] = ACTIONS(248), @@ -6607,110 +7124,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__thematic_break_dash] = ACTIONS(337), [sym__thematic_break_star] = ACTIONS(337), }, - [16] = { - [sym__block_with_heading] = STATE(159), - [sym__block_element] = STATE(159), - [sym_heading] = STATE(159), - [sym_list] = STATE(159), - [sym__list_dash] = STATE(223), - [sym__list_item_dash] = STATE(634), - [sym__list_plus] = STATE(223), - [sym__list_item_plus] = STATE(651), - [sym__list_star] = STATE(223), - [sym__list_item_star] = STATE(697), - [sym__list_task] = STATE(223), - [sym__list_item_task] = STATE(707), - [sym_list_marker_task] = STATE(47), - [sym__list_definition] = STATE(223), - [sym__list_item_definition] = STATE(736), - [sym__list_decimal_period] = STATE(223), - [sym__list_item_decimal_period] = STATE(795), - [sym__list_decimal_paren] = STATE(223), - [sym__list_item_decimal_paren] = STATE(848), - [sym__list_decimal_parens] = STATE(223), - [sym__list_item_decimal_parens] = STATE(772), - [sym__list_lower_alpha_period] = STATE(223), - [sym__list_item_lower_alpha_period] = STATE(787), - [sym__list_lower_alpha_paren] = STATE(223), - [sym__list_item_lower_alpha_paren] = STATE(792), - [sym__list_lower_alpha_parens] = STATE(223), - [sym__list_item_lower_alpha_parens] = STATE(793), - [sym__list_upper_alpha_period] = STATE(223), - [sym__list_item_upper_alpha_period] = STATE(797), - [sym__list_upper_alpha_paren] = STATE(223), - [sym__list_item_upper_alpha_paren] = STATE(798), - [sym__list_upper_alpha_parens] = STATE(223), - [sym__list_item_upper_alpha_parens] = STATE(799), - [sym__list_lower_roman_period] = STATE(223), - [sym__list_item_lower_roman_period] = STATE(801), - [sym__list_lower_roman_paren] = STATE(223), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(223), - [sym__list_item_lower_roman_parens] = STATE(814), - [sym__list_upper_roman_period] = STATE(223), - [sym__list_item_upper_roman_period] = STATE(818), - [sym__list_upper_roman_paren] = STATE(223), - [sym__list_item_upper_roman_paren] = STATE(819), - [sym__list_upper_roman_parens] = STATE(223), - [sym__list_item_upper_roman_parens] = STATE(822), - [sym_table] = STATE(159), - [sym__table_content] = STATE(65), - [sym_table_separator] = STATE(65), - [sym_table_row] = STATE(70), - [sym_footnote] = STATE(159), - [sym_footnote_marker_begin] = STATE(1122), - [sym_div] = STATE(159), - [sym__div_marker_begin] = STATE(1053), - [sym_code_block] = STATE(159), - [sym_raw_block] = STATE(159), - [sym_thematic_break] = STATE(159), - [sym_block_quote] = STATE(159), - [sym__block_quote_prefix] = STATE(291), - [sym_link_reference_definition] = STATE(159), - [sym_block_attribute] = STATE(159), - [sym__paragraph] = STATE(159), - [sym__paragraph_content] = STATE(812), - [sym__paragraph_inline_content] = STATE(930), - [sym__inline] = STATE(695), - [sym__symbol_fallback] = STATE(358), - [aux_sym__list_dash_repeat1] = STATE(424), - [aux_sym__list_plus_repeat1] = STATE(425), - [aux_sym__list_star_repeat1] = STATE(427), - [aux_sym__list_task_repeat1] = STATE(409), - [aux_sym__list_definition_repeat1] = STATE(577), - [aux_sym__list_decimal_period_repeat1] = STATE(578), - [aux_sym__list_decimal_paren_repeat1] = STATE(579), - [aux_sym__list_decimal_parens_repeat1] = STATE(580), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(581), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(582), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(583), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(584), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(585), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(586), - [aux_sym__list_lower_roman_period_repeat1] = STATE(587), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(588), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(589), - [aux_sym__list_upper_roman_period_repeat1] = STATE(590), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(591), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(592), - [aux_sym_table_repeat1] = STATE(65), - [aux_sym_footnote_content_repeat1] = STATE(17), - [aux_sym__block_quote_prefix_repeat1] = STATE(320), - [aux_sym__inline_repeat1] = STATE(358), - [anon_sym_LBRACK] = ACTIONS(222), - [anon_sym_PIPE] = ACTIONS(224), + [17] = { + [sym__block_with_heading] = STATE(164), + [sym__block_element] = STATE(164), + [sym_heading] = STATE(164), + [sym_list] = STATE(164), + [sym__list_dash] = STATE(228), + [sym__list_item_dash] = STATE(727), + [sym__list_plus] = STATE(228), + [sym__list_item_plus] = STATE(730), + [sym__list_star] = STATE(228), + [sym__list_item_star] = STATE(759), + [sym__list_task] = STATE(228), + [sym__list_item_task] = STATE(761), + [sym_list_marker_task] = STATE(46), + [sym__list_definition] = STATE(228), + [sym__list_item_definition] = STATE(819), + [sym__list_decimal_period] = STATE(228), + [sym__list_item_decimal_period] = STATE(852), + [sym__list_decimal_paren] = STATE(228), + [sym__list_item_decimal_paren] = STATE(837), + [sym__list_decimal_parens] = STATE(228), + [sym__list_item_decimal_parens] = STATE(815), + [sym__list_lower_alpha_period] = STATE(228), + [sym__list_item_lower_alpha_period] = STATE(843), + [sym__list_lower_alpha_paren] = STATE(228), + [sym__list_item_lower_alpha_paren] = STATE(850), + [sym__list_lower_alpha_parens] = STATE(228), + [sym__list_item_lower_alpha_parens] = STATE(853), + [sym__list_upper_alpha_period] = STATE(228), + [sym__list_item_upper_alpha_period] = STATE(854), + [sym__list_upper_alpha_paren] = STATE(228), + [sym__list_item_upper_alpha_paren] = STATE(855), + [sym__list_upper_alpha_parens] = STATE(228), + [sym__list_item_upper_alpha_parens] = STATE(856), + [sym__list_lower_roman_period] = STATE(228), + [sym__list_item_lower_roman_period] = STATE(857), + [sym__list_lower_roman_paren] = STATE(228), + [sym__list_item_lower_roman_paren] = STATE(871), + [sym__list_lower_roman_parens] = STATE(228), + [sym__list_item_lower_roman_parens] = STATE(874), + [sym__list_upper_roman_period] = STATE(228), + [sym__list_item_upper_roman_period] = STATE(876), + [sym__list_upper_roman_paren] = STATE(228), + [sym__list_item_upper_roman_paren] = STATE(878), + [sym__list_upper_roman_parens] = STATE(228), + [sym__list_item_upper_roman_parens] = STATE(880), + [sym_table] = STATE(164), + [sym__table_content] = STATE(73), + [sym_table_separator] = STATE(73), + [sym_table_row] = STATE(77), + [sym_footnote] = STATE(164), + [sym_footnote_marker_begin] = STATE(1306), + [sym_div] = STATE(164), + [sym__div_marker_begin] = STATE(1210), + [sym_code_block] = STATE(164), + [sym_raw_block] = STATE(164), + [sym_thematic_break] = STATE(164), + [sym_block_quote] = STATE(164), + [sym__block_quote_prefix] = STATE(301), + [sym_link_reference_definition] = STATE(164), + [sym_block_attribute] = STATE(164), + [sym__paragraph] = STATE(164), + [sym__paragraph_content] = STATE(889), + [sym__paragraph_inline_content] = STATE(896), + [sym__inline] = STATE(715), + [sym__symbol_fallback] = STATE(381), + [aux_sym__list_dash_repeat1] = STATE(445), + [aux_sym__list_plus_repeat1] = STATE(446), + [aux_sym__list_star_repeat1] = STATE(447), + [aux_sym__list_task_repeat1] = STATE(423), + [aux_sym__list_definition_repeat1] = STATE(655), + [aux_sym__list_decimal_period_repeat1] = STATE(656), + [aux_sym__list_decimal_paren_repeat1] = STATE(657), + [aux_sym__list_decimal_parens_repeat1] = STATE(658), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(659), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(660), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(661), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(662), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(663), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(664), + [aux_sym__list_lower_roman_period_repeat1] = STATE(665), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(666), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(667), + [aux_sym__list_upper_roman_period_repeat1] = STATE(668), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(669), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(670), + [aux_sym_table_repeat1] = STATE(73), + [aux_sym_footnote_content_repeat1] = STATE(18), + [aux_sym__block_quote_prefix_repeat1] = STATE(330), + [aux_sym__inline_repeat1] = STATE(381), + [anon_sym_LBRACK] = ACTIONS(216), + [anon_sym_PIPE] = ACTIONS(218), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(220), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(228), - [sym__heading_begin] = ACTIONS(230), + [sym__newline] = ACTIONS(222), + [sym__heading_begin] = ACTIONS(224), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(232), + [sym__code_block_begin] = ACTIONS(226), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -6731,102 +7248,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(234), - [sym__block_quote_continuation] = ACTIONS(236), - [sym__thematic_break_dash] = ACTIONS(238), - [sym__thematic_break_star] = ACTIONS(238), + [sym__block_quote_begin] = ACTIONS(228), + [sym__block_quote_continuation] = ACTIONS(230), + [sym__thematic_break_dash] = ACTIONS(232), + [sym__thematic_break_star] = ACTIONS(232), [sym__footnote_end] = ACTIONS(340), }, - [17] = { - [sym__block_with_heading] = STATE(159), - [sym__block_element] = STATE(159), - [sym_heading] = STATE(159), - [sym_list] = STATE(159), - [sym__list_dash] = STATE(223), - [sym__list_item_dash] = STATE(634), - [sym__list_plus] = STATE(223), - [sym__list_item_plus] = STATE(651), - [sym__list_star] = STATE(223), - [sym__list_item_star] = STATE(697), - [sym__list_task] = STATE(223), - [sym__list_item_task] = STATE(707), - [sym_list_marker_task] = STATE(47), - [sym__list_definition] = STATE(223), - [sym__list_item_definition] = STATE(736), - [sym__list_decimal_period] = STATE(223), - [sym__list_item_decimal_period] = STATE(795), - [sym__list_decimal_paren] = STATE(223), - [sym__list_item_decimal_paren] = STATE(848), - [sym__list_decimal_parens] = STATE(223), - [sym__list_item_decimal_parens] = STATE(772), - [sym__list_lower_alpha_period] = STATE(223), - [sym__list_item_lower_alpha_period] = STATE(787), - [sym__list_lower_alpha_paren] = STATE(223), - [sym__list_item_lower_alpha_paren] = STATE(792), - [sym__list_lower_alpha_parens] = STATE(223), - [sym__list_item_lower_alpha_parens] = STATE(793), - [sym__list_upper_alpha_period] = STATE(223), - [sym__list_item_upper_alpha_period] = STATE(797), - [sym__list_upper_alpha_paren] = STATE(223), - [sym__list_item_upper_alpha_paren] = STATE(798), - [sym__list_upper_alpha_parens] = STATE(223), - [sym__list_item_upper_alpha_parens] = STATE(799), - [sym__list_lower_roman_period] = STATE(223), - [sym__list_item_lower_roman_period] = STATE(801), - [sym__list_lower_roman_paren] = STATE(223), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(223), - [sym__list_item_lower_roman_parens] = STATE(814), - [sym__list_upper_roman_period] = STATE(223), - [sym__list_item_upper_roman_period] = STATE(818), - [sym__list_upper_roman_paren] = STATE(223), - [sym__list_item_upper_roman_paren] = STATE(819), - [sym__list_upper_roman_parens] = STATE(223), - [sym__list_item_upper_roman_parens] = STATE(822), - [sym_table] = STATE(159), - [sym__table_content] = STATE(65), - [sym_table_separator] = STATE(65), - [sym_table_row] = STATE(70), - [sym_footnote] = STATE(159), - [sym_footnote_marker_begin] = STATE(1122), - [sym_div] = STATE(159), - [sym__div_marker_begin] = STATE(1053), - [sym_code_block] = STATE(159), - [sym_raw_block] = STATE(159), - [sym_thematic_break] = STATE(159), - [sym_block_quote] = STATE(159), - [sym__block_quote_prefix] = STATE(291), - [sym_link_reference_definition] = STATE(159), - [sym_block_attribute] = STATE(159), - [sym__paragraph] = STATE(159), - [sym__paragraph_content] = STATE(812), - [sym__paragraph_inline_content] = STATE(930), - [sym__inline] = STATE(695), - [sym__symbol_fallback] = STATE(358), - [aux_sym__list_dash_repeat1] = STATE(424), - [aux_sym__list_plus_repeat1] = STATE(425), - [aux_sym__list_star_repeat1] = STATE(427), - [aux_sym__list_task_repeat1] = STATE(409), - [aux_sym__list_definition_repeat1] = STATE(577), - [aux_sym__list_decimal_period_repeat1] = STATE(578), - [aux_sym__list_decimal_paren_repeat1] = STATE(579), - [aux_sym__list_decimal_parens_repeat1] = STATE(580), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(581), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(582), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(583), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(584), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(585), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(586), - [aux_sym__list_lower_roman_period_repeat1] = STATE(587), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(588), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(589), - [aux_sym__list_upper_roman_period_repeat1] = STATE(590), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(591), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(592), - [aux_sym_table_repeat1] = STATE(65), - [aux_sym_footnote_content_repeat1] = STATE(17), - [aux_sym__block_quote_prefix_repeat1] = STATE(320), - [aux_sym__inline_repeat1] = STATE(358), + [18] = { + [sym__block_with_heading] = STATE(164), + [sym__block_element] = STATE(164), + [sym_heading] = STATE(164), + [sym_list] = STATE(164), + [sym__list_dash] = STATE(228), + [sym__list_item_dash] = STATE(727), + [sym__list_plus] = STATE(228), + [sym__list_item_plus] = STATE(730), + [sym__list_star] = STATE(228), + [sym__list_item_star] = STATE(759), + [sym__list_task] = STATE(228), + [sym__list_item_task] = STATE(761), + [sym_list_marker_task] = STATE(46), + [sym__list_definition] = STATE(228), + [sym__list_item_definition] = STATE(819), + [sym__list_decimal_period] = STATE(228), + [sym__list_item_decimal_period] = STATE(852), + [sym__list_decimal_paren] = STATE(228), + [sym__list_item_decimal_paren] = STATE(837), + [sym__list_decimal_parens] = STATE(228), + [sym__list_item_decimal_parens] = STATE(815), + [sym__list_lower_alpha_period] = STATE(228), + [sym__list_item_lower_alpha_period] = STATE(843), + [sym__list_lower_alpha_paren] = STATE(228), + [sym__list_item_lower_alpha_paren] = STATE(850), + [sym__list_lower_alpha_parens] = STATE(228), + [sym__list_item_lower_alpha_parens] = STATE(853), + [sym__list_upper_alpha_period] = STATE(228), + [sym__list_item_upper_alpha_period] = STATE(854), + [sym__list_upper_alpha_paren] = STATE(228), + [sym__list_item_upper_alpha_paren] = STATE(855), + [sym__list_upper_alpha_parens] = STATE(228), + [sym__list_item_upper_alpha_parens] = STATE(856), + [sym__list_lower_roman_period] = STATE(228), + [sym__list_item_lower_roman_period] = STATE(857), + [sym__list_lower_roman_paren] = STATE(228), + [sym__list_item_lower_roman_paren] = STATE(871), + [sym__list_lower_roman_parens] = STATE(228), + [sym__list_item_lower_roman_parens] = STATE(874), + [sym__list_upper_roman_period] = STATE(228), + [sym__list_item_upper_roman_period] = STATE(876), + [sym__list_upper_roman_paren] = STATE(228), + [sym__list_item_upper_roman_paren] = STATE(878), + [sym__list_upper_roman_parens] = STATE(228), + [sym__list_item_upper_roman_parens] = STATE(880), + [sym_table] = STATE(164), + [sym__table_content] = STATE(73), + [sym_table_separator] = STATE(73), + [sym_table_row] = STATE(77), + [sym_footnote] = STATE(164), + [sym_footnote_marker_begin] = STATE(1306), + [sym_div] = STATE(164), + [sym__div_marker_begin] = STATE(1210), + [sym_code_block] = STATE(164), + [sym_raw_block] = STATE(164), + [sym_thematic_break] = STATE(164), + [sym_block_quote] = STATE(164), + [sym__block_quote_prefix] = STATE(301), + [sym_link_reference_definition] = STATE(164), + [sym_block_attribute] = STATE(164), + [sym__paragraph] = STATE(164), + [sym__paragraph_content] = STATE(889), + [sym__paragraph_inline_content] = STATE(896), + [sym__inline] = STATE(715), + [sym__symbol_fallback] = STATE(381), + [aux_sym__list_dash_repeat1] = STATE(445), + [aux_sym__list_plus_repeat1] = STATE(446), + [aux_sym__list_star_repeat1] = STATE(447), + [aux_sym__list_task_repeat1] = STATE(423), + [aux_sym__list_definition_repeat1] = STATE(655), + [aux_sym__list_decimal_period_repeat1] = STATE(656), + [aux_sym__list_decimal_paren_repeat1] = STATE(657), + [aux_sym__list_decimal_parens_repeat1] = STATE(658), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(659), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(660), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(661), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(662), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(663), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(664), + [aux_sym__list_lower_roman_period_repeat1] = STATE(665), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(666), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(667), + [aux_sym__list_upper_roman_period_repeat1] = STATE(668), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(669), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(670), + [aux_sym_table_repeat1] = STATE(73), + [aux_sym_footnote_content_repeat1] = STATE(18), + [aux_sym__block_quote_prefix_repeat1] = STATE(330), + [aux_sym__inline_repeat1] = STATE(381), [anon_sym_LBRACK] = ACTIONS(342), [anon_sym_PIPE] = ACTIONS(345), [anon_sym_LBRACK_CARET] = ACTIONS(248), @@ -6867,100 +7384,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__thematic_break_star] = ACTIONS(366), [sym__footnote_end] = ACTIONS(257), }, - [18] = { - [sym__block_with_heading] = STATE(266), - [sym__block_element] = STATE(266), - [sym_heading] = STATE(266), - [sym_list] = STATE(266), - [sym__list_dash] = STATE(162), - [sym__list_item_dash] = STATE(634), - [sym__list_plus] = STATE(162), - [sym__list_item_plus] = STATE(651), - [sym__list_star] = STATE(162), - [sym__list_item_star] = STATE(697), - [sym__list_task] = STATE(162), - [sym__list_item_task] = STATE(707), - [sym_list_marker_task] = STATE(47), - [sym__list_definition] = STATE(162), - [sym__list_item_definition] = STATE(736), - [sym__list_decimal_period] = STATE(162), - [sym__list_item_decimal_period] = STATE(795), - [sym__list_decimal_paren] = STATE(162), - [sym__list_item_decimal_paren] = STATE(848), - [sym__list_decimal_parens] = STATE(162), - [sym__list_item_decimal_parens] = STATE(772), - [sym__list_lower_alpha_period] = STATE(162), - [sym__list_item_lower_alpha_period] = STATE(787), - [sym__list_lower_alpha_paren] = STATE(162), - [sym__list_item_lower_alpha_paren] = STATE(792), - [sym__list_lower_alpha_parens] = STATE(162), - [sym__list_item_lower_alpha_parens] = STATE(793), - [sym__list_upper_alpha_period] = STATE(162), - [sym__list_item_upper_alpha_period] = STATE(797), - [sym__list_upper_alpha_paren] = STATE(162), - [sym__list_item_upper_alpha_paren] = STATE(798), - [sym__list_upper_alpha_parens] = STATE(162), - [sym__list_item_upper_alpha_parens] = STATE(799), - [sym__list_lower_roman_period] = STATE(162), - [sym__list_item_lower_roman_period] = STATE(801), - [sym__list_lower_roman_paren] = STATE(162), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(162), - [sym__list_item_lower_roman_parens] = STATE(814), - [sym__list_upper_roman_period] = STATE(162), - [sym__list_item_upper_roman_period] = STATE(818), - [sym__list_upper_roman_paren] = STATE(162), - [sym__list_item_upper_roman_paren] = STATE(819), - [sym__list_upper_roman_parens] = STATE(162), - [sym__list_item_upper_roman_parens] = STATE(822), - [sym_table] = STATE(266), - [sym__table_content] = STATE(64), - [sym_table_separator] = STATE(64), - [sym_table_row] = STATE(71), - [sym_footnote] = STATE(266), - [sym_footnote_marker_begin] = STATE(1120), - [sym_div] = STATE(266), - [sym__div_marker_begin] = STATE(1032), - [sym_code_block] = STATE(266), - [sym_raw_block] = STATE(266), - [sym_thematic_break] = STATE(266), - [sym_block_quote] = STATE(266), - [sym__block_quote_prefix] = STATE(284), - [sym_link_reference_definition] = STATE(266), - [sym_block_attribute] = STATE(266), - [sym__paragraph] = STATE(266), - [sym__paragraph_content] = STATE(785), - [sym__paragraph_inline_content] = STATE(930), - [sym__inline] = STATE(695), - [sym__symbol_fallback] = STATE(358), - [aux_sym__list_dash_repeat1] = STATE(431), - [aux_sym__list_plus_repeat1] = STATE(414), - [aux_sym__list_star_repeat1] = STATE(416), - [aux_sym__list_task_repeat1] = STATE(396), - [aux_sym__list_definition_repeat1] = STATE(560), - [aux_sym__list_decimal_period_repeat1] = STATE(561), - [aux_sym__list_decimal_paren_repeat1] = STATE(562), - [aux_sym__list_decimal_parens_repeat1] = STATE(563), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(564), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(621), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(566), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(567), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(568), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(569), - [aux_sym__list_lower_roman_period_repeat1] = STATE(570), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(571), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(572), - [aux_sym__list_upper_roman_period_repeat1] = STATE(573), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(574), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(575), - [aux_sym_table_repeat1] = STATE(64), - [aux_sym_footnote_content_repeat1] = STATE(19), - [aux_sym__block_quote_prefix_repeat1] = STATE(313), - [aux_sym__inline_repeat1] = STATE(358), - [anon_sym_LBRACK] = ACTIONS(75), - [anon_sym_PIPE] = ACTIONS(77), + [19] = { + [sym__block_with_heading] = STATE(260), + [sym__block_element] = STATE(260), + [sym_heading] = STATE(260), + [sym_list] = STATE(260), + [sym__list_dash] = STATE(166), + [sym__list_item_dash] = STATE(727), + [sym__list_plus] = STATE(166), + [sym__list_item_plus] = STATE(730), + [sym__list_star] = STATE(166), + [sym__list_item_star] = STATE(759), + [sym__list_task] = STATE(166), + [sym__list_item_task] = STATE(761), + [sym_list_marker_task] = STATE(46), + [sym__list_definition] = STATE(166), + [sym__list_item_definition] = STATE(819), + [sym__list_decimal_period] = STATE(166), + [sym__list_item_decimal_period] = STATE(852), + [sym__list_decimal_paren] = STATE(166), + [sym__list_item_decimal_paren] = STATE(837), + [sym__list_decimal_parens] = STATE(166), + [sym__list_item_decimal_parens] = STATE(815), + [sym__list_lower_alpha_period] = STATE(166), + [sym__list_item_lower_alpha_period] = STATE(843), + [sym__list_lower_alpha_paren] = STATE(166), + [sym__list_item_lower_alpha_paren] = STATE(850), + [sym__list_lower_alpha_parens] = STATE(166), + [sym__list_item_lower_alpha_parens] = STATE(853), + [sym__list_upper_alpha_period] = STATE(166), + [sym__list_item_upper_alpha_period] = STATE(854), + [sym__list_upper_alpha_paren] = STATE(166), + [sym__list_item_upper_alpha_paren] = STATE(855), + [sym__list_upper_alpha_parens] = STATE(166), + [sym__list_item_upper_alpha_parens] = STATE(856), + [sym__list_lower_roman_period] = STATE(166), + [sym__list_item_lower_roman_period] = STATE(857), + [sym__list_lower_roman_paren] = STATE(166), + [sym__list_item_lower_roman_paren] = STATE(871), + [sym__list_lower_roman_parens] = STATE(166), + [sym__list_item_lower_roman_parens] = STATE(874), + [sym__list_upper_roman_period] = STATE(166), + [sym__list_item_upper_roman_period] = STATE(876), + [sym__list_upper_roman_paren] = STATE(166), + [sym__list_item_upper_roman_paren] = STATE(878), + [sym__list_upper_roman_parens] = STATE(166), + [sym__list_item_upper_roman_parens] = STATE(880), + [sym_table] = STATE(260), + [sym__table_content] = STATE(72), + [sym_table_separator] = STATE(72), + [sym_table_row] = STATE(79), + [sym_footnote] = STATE(260), + [sym_footnote_marker_begin] = STATE(1302), + [sym_div] = STATE(260), + [sym__div_marker_begin] = STATE(1165), + [sym_code_block] = STATE(260), + [sym_raw_block] = STATE(260), + [sym_thematic_break] = STATE(260), + [sym_block_quote] = STATE(260), + [sym__block_quote_prefix] = STATE(289), + [sym_link_reference_definition] = STATE(260), + [sym_block_attribute] = STATE(260), + [sym__paragraph] = STATE(260), + [sym__paragraph_content] = STATE(848), + [sym__paragraph_inline_content] = STATE(896), + [sym__inline] = STATE(715), + [sym__symbol_fallback] = STATE(381), + [aux_sym__list_dash_repeat1] = STATE(454), + [aux_sym__list_plus_repeat1] = STATE(455), + [aux_sym__list_star_repeat1] = STATE(456), + [aux_sym__list_task_repeat1] = STATE(436), + [aux_sym__list_definition_repeat1] = STATE(612), + [aux_sym__list_decimal_period_repeat1] = STATE(613), + [aux_sym__list_decimal_paren_repeat1] = STATE(614), + [aux_sym__list_decimal_parens_repeat1] = STATE(615), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(616), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(617), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(618), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(619), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(620), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(621), + [aux_sym__list_lower_roman_period_repeat1] = STATE(622), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(623), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(624), + [aux_sym__list_upper_roman_period_repeat1] = STATE(625), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(626), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(627), + [aux_sym_table_repeat1] = STATE(72), + [aux_sym_footnote_content_repeat1] = STATE(20), + [aux_sym__block_quote_prefix_repeat1] = STATE(308), + [aux_sym__inline_repeat1] = STATE(381), + [anon_sym_LBRACK] = ACTIONS(73), + [anon_sym_PIPE] = ACTIONS(75), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(77), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), @@ -6968,10 +7485,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), [sym__block_close] = ACTIONS(369), - [sym__newline] = ACTIONS(218), + [sym__newline] = ACTIONS(236), [sym__heading_begin] = ACTIONS(19), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(85), + [sym__code_block_begin] = ACTIONS(83), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -6992,105 +7509,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(87), - [sym__block_quote_continuation] = ACTIONS(220), - [sym__thematic_break_dash] = ACTIONS(89), - [sym__thematic_break_star] = ACTIONS(89), + [sym__block_quote_begin] = ACTIONS(85), + [sym__block_quote_continuation] = ACTIONS(238), + [sym__thematic_break_dash] = ACTIONS(87), + [sym__thematic_break_star] = ACTIONS(87), }, - [19] = { - [sym__block_with_heading] = STATE(266), - [sym__block_element] = STATE(266), - [sym_heading] = STATE(266), - [sym_list] = STATE(266), - [sym__list_dash] = STATE(162), - [sym__list_item_dash] = STATE(634), - [sym__list_plus] = STATE(162), - [sym__list_item_plus] = STATE(651), - [sym__list_star] = STATE(162), - [sym__list_item_star] = STATE(697), - [sym__list_task] = STATE(162), - [sym__list_item_task] = STATE(707), - [sym_list_marker_task] = STATE(47), - [sym__list_definition] = STATE(162), - [sym__list_item_definition] = STATE(736), - [sym__list_decimal_period] = STATE(162), - [sym__list_item_decimal_period] = STATE(795), - [sym__list_decimal_paren] = STATE(162), - [sym__list_item_decimal_paren] = STATE(848), - [sym__list_decimal_parens] = STATE(162), - [sym__list_item_decimal_parens] = STATE(772), - [sym__list_lower_alpha_period] = STATE(162), - [sym__list_item_lower_alpha_period] = STATE(787), - [sym__list_lower_alpha_paren] = STATE(162), - [sym__list_item_lower_alpha_paren] = STATE(792), - [sym__list_lower_alpha_parens] = STATE(162), - [sym__list_item_lower_alpha_parens] = STATE(793), - [sym__list_upper_alpha_period] = STATE(162), - [sym__list_item_upper_alpha_period] = STATE(797), - [sym__list_upper_alpha_paren] = STATE(162), - [sym__list_item_upper_alpha_paren] = STATE(798), - [sym__list_upper_alpha_parens] = STATE(162), - [sym__list_item_upper_alpha_parens] = STATE(799), - [sym__list_lower_roman_period] = STATE(162), - [sym__list_item_lower_roman_period] = STATE(801), - [sym__list_lower_roman_paren] = STATE(162), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(162), - [sym__list_item_lower_roman_parens] = STATE(814), - [sym__list_upper_roman_period] = STATE(162), - [sym__list_item_upper_roman_period] = STATE(818), - [sym__list_upper_roman_paren] = STATE(162), - [sym__list_item_upper_roman_paren] = STATE(819), - [sym__list_upper_roman_parens] = STATE(162), - [sym__list_item_upper_roman_parens] = STATE(822), - [sym_table] = STATE(266), - [sym__table_content] = STATE(64), - [sym_table_separator] = STATE(64), - [sym_table_row] = STATE(71), - [sym_footnote] = STATE(266), - [sym_footnote_marker_begin] = STATE(1120), - [sym_div] = STATE(266), - [sym__div_marker_begin] = STATE(1032), - [sym_code_block] = STATE(266), - [sym_raw_block] = STATE(266), - [sym_thematic_break] = STATE(266), - [sym_block_quote] = STATE(266), - [sym__block_quote_prefix] = STATE(281), - [sym_link_reference_definition] = STATE(266), - [sym_block_attribute] = STATE(266), - [sym__paragraph] = STATE(266), - [sym__paragraph_content] = STATE(785), - [sym__paragraph_inline_content] = STATE(930), - [sym__inline] = STATE(695), - [sym__symbol_fallback] = STATE(358), - [aux_sym__list_dash_repeat1] = STATE(431), - [aux_sym__list_plus_repeat1] = STATE(414), - [aux_sym__list_star_repeat1] = STATE(416), - [aux_sym__list_task_repeat1] = STATE(396), - [aux_sym__list_definition_repeat1] = STATE(560), - [aux_sym__list_decimal_period_repeat1] = STATE(561), - [aux_sym__list_decimal_paren_repeat1] = STATE(562), - [aux_sym__list_decimal_parens_repeat1] = STATE(563), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(564), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(621), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(566), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(567), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(568), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(569), - [aux_sym__list_lower_roman_period_repeat1] = STATE(570), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(571), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(572), - [aux_sym__list_upper_roman_period_repeat1] = STATE(573), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(574), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(575), - [aux_sym_table_repeat1] = STATE(64), - [aux_sym_footnote_content_repeat1] = STATE(15), - [aux_sym__block_quote_prefix_repeat1] = STATE(313), - [aux_sym__inline_repeat1] = STATE(358), - [anon_sym_LBRACK] = ACTIONS(75), - [anon_sym_PIPE] = ACTIONS(77), + [20] = { + [sym__block_with_heading] = STATE(260), + [sym__block_element] = STATE(260), + [sym_heading] = STATE(260), + [sym_list] = STATE(260), + [sym__list_dash] = STATE(166), + [sym__list_item_dash] = STATE(727), + [sym__list_plus] = STATE(166), + [sym__list_item_plus] = STATE(730), + [sym__list_star] = STATE(166), + [sym__list_item_star] = STATE(759), + [sym__list_task] = STATE(166), + [sym__list_item_task] = STATE(761), + [sym_list_marker_task] = STATE(46), + [sym__list_definition] = STATE(166), + [sym__list_item_definition] = STATE(819), + [sym__list_decimal_period] = STATE(166), + [sym__list_item_decimal_period] = STATE(852), + [sym__list_decimal_paren] = STATE(166), + [sym__list_item_decimal_paren] = STATE(837), + [sym__list_decimal_parens] = STATE(166), + [sym__list_item_decimal_parens] = STATE(815), + [sym__list_lower_alpha_period] = STATE(166), + [sym__list_item_lower_alpha_period] = STATE(843), + [sym__list_lower_alpha_paren] = STATE(166), + [sym__list_item_lower_alpha_paren] = STATE(850), + [sym__list_lower_alpha_parens] = STATE(166), + [sym__list_item_lower_alpha_parens] = STATE(853), + [sym__list_upper_alpha_period] = STATE(166), + [sym__list_item_upper_alpha_period] = STATE(854), + [sym__list_upper_alpha_paren] = STATE(166), + [sym__list_item_upper_alpha_paren] = STATE(855), + [sym__list_upper_alpha_parens] = STATE(166), + [sym__list_item_upper_alpha_parens] = STATE(856), + [sym__list_lower_roman_period] = STATE(166), + [sym__list_item_lower_roman_period] = STATE(857), + [sym__list_lower_roman_paren] = STATE(166), + [sym__list_item_lower_roman_paren] = STATE(871), + [sym__list_lower_roman_parens] = STATE(166), + [sym__list_item_lower_roman_parens] = STATE(874), + [sym__list_upper_roman_period] = STATE(166), + [sym__list_item_upper_roman_period] = STATE(876), + [sym__list_upper_roman_paren] = STATE(166), + [sym__list_item_upper_roman_paren] = STATE(878), + [sym__list_upper_roman_parens] = STATE(166), + [sym__list_item_upper_roman_parens] = STATE(880), + [sym_table] = STATE(260), + [sym__table_content] = STATE(72), + [sym_table_separator] = STATE(72), + [sym_table_row] = STATE(79), + [sym_footnote] = STATE(260), + [sym_footnote_marker_begin] = STATE(1302), + [sym_div] = STATE(260), + [sym__div_marker_begin] = STATE(1165), + [sym_code_block] = STATE(260), + [sym_raw_block] = STATE(260), + [sym_thematic_break] = STATE(260), + [sym_block_quote] = STATE(260), + [sym__block_quote_prefix] = STATE(290), + [sym_link_reference_definition] = STATE(260), + [sym_block_attribute] = STATE(260), + [sym__paragraph] = STATE(260), + [sym__paragraph_content] = STATE(848), + [sym__paragraph_inline_content] = STATE(896), + [sym__inline] = STATE(715), + [sym__symbol_fallback] = STATE(381), + [aux_sym__list_dash_repeat1] = STATE(454), + [aux_sym__list_plus_repeat1] = STATE(455), + [aux_sym__list_star_repeat1] = STATE(456), + [aux_sym__list_task_repeat1] = STATE(436), + [aux_sym__list_definition_repeat1] = STATE(612), + [aux_sym__list_decimal_period_repeat1] = STATE(613), + [aux_sym__list_decimal_paren_repeat1] = STATE(614), + [aux_sym__list_decimal_parens_repeat1] = STATE(615), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(616), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(617), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(618), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(619), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(620), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(621), + [aux_sym__list_lower_roman_period_repeat1] = STATE(622), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(623), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(624), + [aux_sym__list_upper_roman_period_repeat1] = STATE(625), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(626), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(627), + [aux_sym_table_repeat1] = STATE(72), + [aux_sym_footnote_content_repeat1] = STATE(16), + [aux_sym__block_quote_prefix_repeat1] = STATE(308), + [aux_sym__inline_repeat1] = STATE(381), + [anon_sym_LBRACK] = ACTIONS(73), + [anon_sym_PIPE] = ACTIONS(75), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(77), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), @@ -7098,10 +7615,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), [sym__block_close] = ACTIONS(371), - [sym__newline] = ACTIONS(218), + [sym__newline] = ACTIONS(236), [sym__heading_begin] = ACTIONS(19), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(85), + [sym__code_block_begin] = ACTIONS(83), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -7122,105 +7639,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(87), - [sym__block_quote_continuation] = ACTIONS(220), - [sym__thematic_break_dash] = ACTIONS(89), - [sym__thematic_break_star] = ACTIONS(89), + [sym__block_quote_begin] = ACTIONS(85), + [sym__block_quote_continuation] = ACTIONS(238), + [sym__thematic_break_dash] = ACTIONS(87), + [sym__thematic_break_star] = ACTIONS(87), }, - [20] = { - [sym__block_with_heading] = STATE(266), - [sym__block_element] = STATE(266), - [sym_heading] = STATE(266), - [sym_list] = STATE(266), - [sym__list_dash] = STATE(162), - [sym__list_item_dash] = STATE(634), - [sym__list_plus] = STATE(162), - [sym__list_item_plus] = STATE(651), - [sym__list_star] = STATE(162), - [sym__list_item_star] = STATE(697), - [sym__list_task] = STATE(162), - [sym__list_item_task] = STATE(707), - [sym_list_marker_task] = STATE(47), - [sym__list_definition] = STATE(162), - [sym__list_item_definition] = STATE(736), - [sym__list_decimal_period] = STATE(162), - [sym__list_item_decimal_period] = STATE(795), - [sym__list_decimal_paren] = STATE(162), - [sym__list_item_decimal_paren] = STATE(848), - [sym__list_decimal_parens] = STATE(162), - [sym__list_item_decimal_parens] = STATE(772), - [sym__list_lower_alpha_period] = STATE(162), - [sym__list_item_lower_alpha_period] = STATE(787), - [sym__list_lower_alpha_paren] = STATE(162), - [sym__list_item_lower_alpha_paren] = STATE(792), - [sym__list_lower_alpha_parens] = STATE(162), - [sym__list_item_lower_alpha_parens] = STATE(793), - [sym__list_upper_alpha_period] = STATE(162), - [sym__list_item_upper_alpha_period] = STATE(797), - [sym__list_upper_alpha_paren] = STATE(162), - [sym__list_item_upper_alpha_paren] = STATE(798), - [sym__list_upper_alpha_parens] = STATE(162), - [sym__list_item_upper_alpha_parens] = STATE(799), - [sym__list_lower_roman_period] = STATE(162), - [sym__list_item_lower_roman_period] = STATE(801), - [sym__list_lower_roman_paren] = STATE(162), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(162), - [sym__list_item_lower_roman_parens] = STATE(814), - [sym__list_upper_roman_period] = STATE(162), - [sym__list_item_upper_roman_period] = STATE(818), - [sym__list_upper_roman_paren] = STATE(162), - [sym__list_item_upper_roman_paren] = STATE(819), - [sym__list_upper_roman_parens] = STATE(162), - [sym__list_item_upper_roman_parens] = STATE(822), - [sym_table] = STATE(266), - [sym__table_content] = STATE(64), - [sym_table_separator] = STATE(64), - [sym_table_row] = STATE(71), - [sym_footnote] = STATE(266), - [sym_footnote_marker_begin] = STATE(1120), - [sym_div] = STATE(266), - [sym__div_marker_begin] = STATE(1032), - [sym_code_block] = STATE(266), - [sym_raw_block] = STATE(266), - [sym_thematic_break] = STATE(266), - [sym_block_quote] = STATE(266), - [sym__block_quote_prefix] = STATE(286), - [sym_link_reference_definition] = STATE(266), - [sym_block_attribute] = STATE(266), - [sym__paragraph] = STATE(266), - [sym__paragraph_content] = STATE(785), - [sym__paragraph_inline_content] = STATE(930), - [sym__inline] = STATE(695), - [sym__symbol_fallback] = STATE(358), - [aux_sym__list_dash_repeat1] = STATE(431), - [aux_sym__list_plus_repeat1] = STATE(414), - [aux_sym__list_star_repeat1] = STATE(416), - [aux_sym__list_task_repeat1] = STATE(396), - [aux_sym__list_definition_repeat1] = STATE(560), - [aux_sym__list_decimal_period_repeat1] = STATE(561), - [aux_sym__list_decimal_paren_repeat1] = STATE(562), - [aux_sym__list_decimal_parens_repeat1] = STATE(563), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(564), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(621), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(566), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(567), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(568), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(569), - [aux_sym__list_lower_roman_period_repeat1] = STATE(570), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(571), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(572), - [aux_sym__list_upper_roman_period_repeat1] = STATE(573), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(574), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(575), - [aux_sym_table_repeat1] = STATE(64), - [aux_sym_footnote_content_repeat1] = STATE(21), - [aux_sym__block_quote_prefix_repeat1] = STATE(313), - [aux_sym__inline_repeat1] = STATE(358), - [anon_sym_LBRACK] = ACTIONS(75), - [anon_sym_PIPE] = ACTIONS(77), + [21] = { + [sym__block_with_heading] = STATE(260), + [sym__block_element] = STATE(260), + [sym_heading] = STATE(260), + [sym_list] = STATE(260), + [sym__list_dash] = STATE(166), + [sym__list_item_dash] = STATE(727), + [sym__list_plus] = STATE(166), + [sym__list_item_plus] = STATE(730), + [sym__list_star] = STATE(166), + [sym__list_item_star] = STATE(759), + [sym__list_task] = STATE(166), + [sym__list_item_task] = STATE(761), + [sym_list_marker_task] = STATE(46), + [sym__list_definition] = STATE(166), + [sym__list_item_definition] = STATE(819), + [sym__list_decimal_period] = STATE(166), + [sym__list_item_decimal_period] = STATE(852), + [sym__list_decimal_paren] = STATE(166), + [sym__list_item_decimal_paren] = STATE(837), + [sym__list_decimal_parens] = STATE(166), + [sym__list_item_decimal_parens] = STATE(815), + [sym__list_lower_alpha_period] = STATE(166), + [sym__list_item_lower_alpha_period] = STATE(843), + [sym__list_lower_alpha_paren] = STATE(166), + [sym__list_item_lower_alpha_paren] = STATE(850), + [sym__list_lower_alpha_parens] = STATE(166), + [sym__list_item_lower_alpha_parens] = STATE(853), + [sym__list_upper_alpha_period] = STATE(166), + [sym__list_item_upper_alpha_period] = STATE(854), + [sym__list_upper_alpha_paren] = STATE(166), + [sym__list_item_upper_alpha_paren] = STATE(855), + [sym__list_upper_alpha_parens] = STATE(166), + [sym__list_item_upper_alpha_parens] = STATE(856), + [sym__list_lower_roman_period] = STATE(166), + [sym__list_item_lower_roman_period] = STATE(857), + [sym__list_lower_roman_paren] = STATE(166), + [sym__list_item_lower_roman_paren] = STATE(871), + [sym__list_lower_roman_parens] = STATE(166), + [sym__list_item_lower_roman_parens] = STATE(874), + [sym__list_upper_roman_period] = STATE(166), + [sym__list_item_upper_roman_period] = STATE(876), + [sym__list_upper_roman_paren] = STATE(166), + [sym__list_item_upper_roman_paren] = STATE(878), + [sym__list_upper_roman_parens] = STATE(166), + [sym__list_item_upper_roman_parens] = STATE(880), + [sym_table] = STATE(260), + [sym__table_content] = STATE(72), + [sym_table_separator] = STATE(72), + [sym_table_row] = STATE(79), + [sym_footnote] = STATE(260), + [sym_footnote_marker_begin] = STATE(1302), + [sym_div] = STATE(260), + [sym__div_marker_begin] = STATE(1165), + [sym_code_block] = STATE(260), + [sym_raw_block] = STATE(260), + [sym_thematic_break] = STATE(260), + [sym_block_quote] = STATE(260), + [sym__block_quote_prefix] = STATE(291), + [sym_link_reference_definition] = STATE(260), + [sym_block_attribute] = STATE(260), + [sym__paragraph] = STATE(260), + [sym__paragraph_content] = STATE(848), + [sym__paragraph_inline_content] = STATE(896), + [sym__inline] = STATE(715), + [sym__symbol_fallback] = STATE(381), + [aux_sym__list_dash_repeat1] = STATE(454), + [aux_sym__list_plus_repeat1] = STATE(455), + [aux_sym__list_star_repeat1] = STATE(456), + [aux_sym__list_task_repeat1] = STATE(436), + [aux_sym__list_definition_repeat1] = STATE(612), + [aux_sym__list_decimal_period_repeat1] = STATE(613), + [aux_sym__list_decimal_paren_repeat1] = STATE(614), + [aux_sym__list_decimal_parens_repeat1] = STATE(615), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(616), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(617), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(618), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(619), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(620), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(621), + [aux_sym__list_lower_roman_period_repeat1] = STATE(622), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(623), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(624), + [aux_sym__list_upper_roman_period_repeat1] = STATE(625), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(626), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(627), + [aux_sym_table_repeat1] = STATE(72), + [aux_sym_footnote_content_repeat1] = STATE(22), + [aux_sym__block_quote_prefix_repeat1] = STATE(308), + [aux_sym__inline_repeat1] = STATE(381), + [anon_sym_LBRACK] = ACTIONS(73), + [anon_sym_PIPE] = ACTIONS(75), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(77), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), @@ -7228,10 +7745,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), [sym__block_close] = ACTIONS(373), - [sym__newline] = ACTIONS(218), + [sym__newline] = ACTIONS(236), [sym__heading_begin] = ACTIONS(19), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(85), + [sym__code_block_begin] = ACTIONS(83), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -7252,105 +7769,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(87), - [sym__block_quote_continuation] = ACTIONS(220), - [sym__thematic_break_dash] = ACTIONS(89), - [sym__thematic_break_star] = ACTIONS(89), + [sym__block_quote_begin] = ACTIONS(85), + [sym__block_quote_continuation] = ACTIONS(238), + [sym__thematic_break_dash] = ACTIONS(87), + [sym__thematic_break_star] = ACTIONS(87), }, - [21] = { - [sym__block_with_heading] = STATE(266), - [sym__block_element] = STATE(266), - [sym_heading] = STATE(266), - [sym_list] = STATE(266), - [sym__list_dash] = STATE(162), - [sym__list_item_dash] = STATE(634), - [sym__list_plus] = STATE(162), - [sym__list_item_plus] = STATE(651), - [sym__list_star] = STATE(162), - [sym__list_item_star] = STATE(697), - [sym__list_task] = STATE(162), - [sym__list_item_task] = STATE(707), - [sym_list_marker_task] = STATE(47), - [sym__list_definition] = STATE(162), - [sym__list_item_definition] = STATE(736), - [sym__list_decimal_period] = STATE(162), - [sym__list_item_decimal_period] = STATE(795), - [sym__list_decimal_paren] = STATE(162), - [sym__list_item_decimal_paren] = STATE(848), - [sym__list_decimal_parens] = STATE(162), - [sym__list_item_decimal_parens] = STATE(772), - [sym__list_lower_alpha_period] = STATE(162), - [sym__list_item_lower_alpha_period] = STATE(787), - [sym__list_lower_alpha_paren] = STATE(162), - [sym__list_item_lower_alpha_paren] = STATE(792), - [sym__list_lower_alpha_parens] = STATE(162), - [sym__list_item_lower_alpha_parens] = STATE(793), - [sym__list_upper_alpha_period] = STATE(162), - [sym__list_item_upper_alpha_period] = STATE(797), - [sym__list_upper_alpha_paren] = STATE(162), - [sym__list_item_upper_alpha_paren] = STATE(798), - [sym__list_upper_alpha_parens] = STATE(162), - [sym__list_item_upper_alpha_parens] = STATE(799), - [sym__list_lower_roman_period] = STATE(162), - [sym__list_item_lower_roman_period] = STATE(801), - [sym__list_lower_roman_paren] = STATE(162), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(162), - [sym__list_item_lower_roman_parens] = STATE(814), - [sym__list_upper_roman_period] = STATE(162), - [sym__list_item_upper_roman_period] = STATE(818), - [sym__list_upper_roman_paren] = STATE(162), - [sym__list_item_upper_roman_paren] = STATE(819), - [sym__list_upper_roman_parens] = STATE(162), - [sym__list_item_upper_roman_parens] = STATE(822), - [sym_table] = STATE(266), - [sym__table_content] = STATE(64), - [sym_table_separator] = STATE(64), - [sym_table_row] = STATE(71), - [sym_footnote] = STATE(266), - [sym_footnote_marker_begin] = STATE(1120), - [sym_div] = STATE(266), - [sym__div_marker_begin] = STATE(1032), - [sym_code_block] = STATE(266), - [sym_raw_block] = STATE(266), - [sym_thematic_break] = STATE(266), - [sym_block_quote] = STATE(266), - [sym__block_quote_prefix] = STATE(285), - [sym_link_reference_definition] = STATE(266), - [sym_block_attribute] = STATE(266), - [sym__paragraph] = STATE(266), - [sym__paragraph_content] = STATE(785), - [sym__paragraph_inline_content] = STATE(930), - [sym__inline] = STATE(695), - [sym__symbol_fallback] = STATE(358), - [aux_sym__list_dash_repeat1] = STATE(431), - [aux_sym__list_plus_repeat1] = STATE(414), - [aux_sym__list_star_repeat1] = STATE(416), - [aux_sym__list_task_repeat1] = STATE(396), - [aux_sym__list_definition_repeat1] = STATE(560), - [aux_sym__list_decimal_period_repeat1] = STATE(561), - [aux_sym__list_decimal_paren_repeat1] = STATE(562), - [aux_sym__list_decimal_parens_repeat1] = STATE(563), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(564), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(621), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(566), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(567), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(568), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(569), - [aux_sym__list_lower_roman_period_repeat1] = STATE(570), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(571), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(572), - [aux_sym__list_upper_roman_period_repeat1] = STATE(573), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(574), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(575), - [aux_sym_table_repeat1] = STATE(64), - [aux_sym_footnote_content_repeat1] = STATE(15), - [aux_sym__block_quote_prefix_repeat1] = STATE(313), - [aux_sym__inline_repeat1] = STATE(358), - [anon_sym_LBRACK] = ACTIONS(75), - [anon_sym_PIPE] = ACTIONS(77), + [22] = { + [sym__block_with_heading] = STATE(260), + [sym__block_element] = STATE(260), + [sym_heading] = STATE(260), + [sym_list] = STATE(260), + [sym__list_dash] = STATE(166), + [sym__list_item_dash] = STATE(727), + [sym__list_plus] = STATE(166), + [sym__list_item_plus] = STATE(730), + [sym__list_star] = STATE(166), + [sym__list_item_star] = STATE(759), + [sym__list_task] = STATE(166), + [sym__list_item_task] = STATE(761), + [sym_list_marker_task] = STATE(46), + [sym__list_definition] = STATE(166), + [sym__list_item_definition] = STATE(819), + [sym__list_decimal_period] = STATE(166), + [sym__list_item_decimal_period] = STATE(852), + [sym__list_decimal_paren] = STATE(166), + [sym__list_item_decimal_paren] = STATE(837), + [sym__list_decimal_parens] = STATE(166), + [sym__list_item_decimal_parens] = STATE(815), + [sym__list_lower_alpha_period] = STATE(166), + [sym__list_item_lower_alpha_period] = STATE(843), + [sym__list_lower_alpha_paren] = STATE(166), + [sym__list_item_lower_alpha_paren] = STATE(850), + [sym__list_lower_alpha_parens] = STATE(166), + [sym__list_item_lower_alpha_parens] = STATE(853), + [sym__list_upper_alpha_period] = STATE(166), + [sym__list_item_upper_alpha_period] = STATE(854), + [sym__list_upper_alpha_paren] = STATE(166), + [sym__list_item_upper_alpha_paren] = STATE(855), + [sym__list_upper_alpha_parens] = STATE(166), + [sym__list_item_upper_alpha_parens] = STATE(856), + [sym__list_lower_roman_period] = STATE(166), + [sym__list_item_lower_roman_period] = STATE(857), + [sym__list_lower_roman_paren] = STATE(166), + [sym__list_item_lower_roman_paren] = STATE(871), + [sym__list_lower_roman_parens] = STATE(166), + [sym__list_item_lower_roman_parens] = STATE(874), + [sym__list_upper_roman_period] = STATE(166), + [sym__list_item_upper_roman_period] = STATE(876), + [sym__list_upper_roman_paren] = STATE(166), + [sym__list_item_upper_roman_paren] = STATE(878), + [sym__list_upper_roman_parens] = STATE(166), + [sym__list_item_upper_roman_parens] = STATE(880), + [sym_table] = STATE(260), + [sym__table_content] = STATE(72), + [sym_table_separator] = STATE(72), + [sym_table_row] = STATE(79), + [sym_footnote] = STATE(260), + [sym_footnote_marker_begin] = STATE(1302), + [sym_div] = STATE(260), + [sym__div_marker_begin] = STATE(1165), + [sym_code_block] = STATE(260), + [sym_raw_block] = STATE(260), + [sym_thematic_break] = STATE(260), + [sym_block_quote] = STATE(260), + [sym__block_quote_prefix] = STATE(292), + [sym_link_reference_definition] = STATE(260), + [sym_block_attribute] = STATE(260), + [sym__paragraph] = STATE(260), + [sym__paragraph_content] = STATE(848), + [sym__paragraph_inline_content] = STATE(896), + [sym__inline] = STATE(715), + [sym__symbol_fallback] = STATE(381), + [aux_sym__list_dash_repeat1] = STATE(454), + [aux_sym__list_plus_repeat1] = STATE(455), + [aux_sym__list_star_repeat1] = STATE(456), + [aux_sym__list_task_repeat1] = STATE(436), + [aux_sym__list_definition_repeat1] = STATE(612), + [aux_sym__list_decimal_period_repeat1] = STATE(613), + [aux_sym__list_decimal_paren_repeat1] = STATE(614), + [aux_sym__list_decimal_parens_repeat1] = STATE(615), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(616), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(617), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(618), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(619), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(620), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(621), + [aux_sym__list_lower_roman_period_repeat1] = STATE(622), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(623), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(624), + [aux_sym__list_upper_roman_period_repeat1] = STATE(625), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(626), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(627), + [aux_sym_table_repeat1] = STATE(72), + [aux_sym_footnote_content_repeat1] = STATE(16), + [aux_sym__block_quote_prefix_repeat1] = STATE(308), + [aux_sym__inline_repeat1] = STATE(381), + [anon_sym_LBRACK] = ACTIONS(73), + [anon_sym_PIPE] = ACTIONS(75), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(77), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), @@ -7358,10 +7875,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), [sym__block_close] = ACTIONS(375), - [sym__newline] = ACTIONS(218), + [sym__newline] = ACTIONS(236), [sym__heading_begin] = ACTIONS(19), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(85), + [sym__code_block_begin] = ACTIONS(83), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -7382,246 +7899,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(87), - [sym__block_quote_continuation] = ACTIONS(220), - [sym__thematic_break_dash] = ACTIONS(89), - [sym__thematic_break_star] = ACTIONS(89), - }, - [22] = { - [sym__block_with_heading] = STATE(266), - [sym__block_element] = STATE(266), - [sym_heading] = STATE(266), - [sym_list] = STATE(266), - [sym__list_dash] = STATE(162), - [sym__list_item_dash] = STATE(634), - [sym__list_plus] = STATE(162), - [sym__list_item_plus] = STATE(651), - [sym__list_star] = STATE(162), - [sym__list_item_star] = STATE(697), - [sym__list_task] = STATE(162), - [sym__list_item_task] = STATE(707), - [sym_list_marker_task] = STATE(47), - [sym__list_definition] = STATE(162), - [sym__list_item_definition] = STATE(736), - [sym__list_decimal_period] = STATE(162), - [sym__list_item_decimal_period] = STATE(795), - [sym__list_decimal_paren] = STATE(162), - [sym__list_item_decimal_paren] = STATE(848), - [sym__list_decimal_parens] = STATE(162), - [sym__list_item_decimal_parens] = STATE(772), - [sym__list_lower_alpha_period] = STATE(162), - [sym__list_item_lower_alpha_period] = STATE(787), - [sym__list_lower_alpha_paren] = STATE(162), - [sym__list_item_lower_alpha_paren] = STATE(792), - [sym__list_lower_alpha_parens] = STATE(162), - [sym__list_item_lower_alpha_parens] = STATE(793), - [sym__list_upper_alpha_period] = STATE(162), - [sym__list_item_upper_alpha_period] = STATE(797), - [sym__list_upper_alpha_paren] = STATE(162), - [sym__list_item_upper_alpha_paren] = STATE(798), - [sym__list_upper_alpha_parens] = STATE(162), - [sym__list_item_upper_alpha_parens] = STATE(799), - [sym__list_lower_roman_period] = STATE(162), - [sym__list_item_lower_roman_period] = STATE(801), - [sym__list_lower_roman_paren] = STATE(162), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(162), - [sym__list_item_lower_roman_parens] = STATE(814), - [sym__list_upper_roman_period] = STATE(162), - [sym__list_item_upper_roman_period] = STATE(818), - [sym__list_upper_roman_paren] = STATE(162), - [sym__list_item_upper_roman_paren] = STATE(819), - [sym__list_upper_roman_parens] = STATE(162), - [sym__list_item_upper_roman_parens] = STATE(822), - [sym_table] = STATE(266), - [sym__table_content] = STATE(64), - [sym_table_separator] = STATE(64), - [sym_table_row] = STATE(71), - [sym_footnote] = STATE(266), - [sym_footnote_marker_begin] = STATE(1120), - [sym_div] = STATE(266), - [sym__div_marker_begin] = STATE(1032), - [sym_code_block] = STATE(266), - [sym_raw_block] = STATE(266), - [sym_thematic_break] = STATE(266), - [sym_block_quote] = STATE(266), - [sym__block_quote_prefix] = STATE(288), - [sym_link_reference_definition] = STATE(266), - [sym_block_attribute] = STATE(266), - [sym__paragraph] = STATE(266), - [sym__paragraph_content] = STATE(785), - [sym__paragraph_inline_content] = STATE(930), - [sym__inline] = STATE(695), - [sym__symbol_fallback] = STATE(358), - [aux_sym__list_dash_repeat1] = STATE(431), - [aux_sym__list_plus_repeat1] = STATE(414), - [aux_sym__list_star_repeat1] = STATE(416), - [aux_sym__list_task_repeat1] = STATE(396), - [aux_sym__list_definition_repeat1] = STATE(560), - [aux_sym__list_decimal_period_repeat1] = STATE(561), - [aux_sym__list_decimal_paren_repeat1] = STATE(562), - [aux_sym__list_decimal_parens_repeat1] = STATE(563), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(564), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(621), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(566), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(567), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(568), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(569), - [aux_sym__list_lower_roman_period_repeat1] = STATE(570), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(571), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(572), - [aux_sym__list_upper_roman_period_repeat1] = STATE(573), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(574), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(575), - [aux_sym_table_repeat1] = STATE(64), - [aux_sym_footnote_content_repeat1] = STATE(23), - [aux_sym__block_quote_prefix_repeat1] = STATE(313), - [aux_sym__inline_repeat1] = STATE(358), - [anon_sym_LBRACK] = ACTIONS(75), - [anon_sym_PIPE] = ACTIONS(77), - [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_DOT] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(13), - [aux_sym__inline_token1] = ACTIONS(13), - [anon_sym_LBRACE_DASH] = ACTIONS(13), - [anon_sym_POUND] = ACTIONS(13), - [anon_sym_PERCENT] = ACTIONS(13), - [sym__block_close] = ACTIONS(377), - [sym__newline] = ACTIONS(218), - [sym__heading_begin] = ACTIONS(19), - [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(85), - [sym_list_marker_dash] = ACTIONS(25), - [sym_list_marker_star] = ACTIONS(27), - [sym_list_marker_plus] = ACTIONS(29), - [sym__list_marker_task_begin] = ACTIONS(31), - [sym_list_marker_definition] = ACTIONS(33), - [sym_list_marker_decimal_period] = ACTIONS(35), - [sym_list_marker_lower_alpha_period] = ACTIONS(37), - [sym_list_marker_upper_alpha_period] = ACTIONS(39), - [sym_list_marker_lower_roman_period] = ACTIONS(41), - [sym_list_marker_upper_roman_period] = ACTIONS(43), - [sym_list_marker_decimal_paren] = ACTIONS(45), - [sym_list_marker_lower_alpha_paren] = ACTIONS(47), - [sym_list_marker_upper_alpha_paren] = ACTIONS(49), - [sym_list_marker_lower_roman_paren] = ACTIONS(51), - [sym_list_marker_upper_roman_paren] = ACTIONS(53), - [sym_list_marker_decimal_parens] = ACTIONS(55), - [sym_list_marker_lower_alpha_parens] = ACTIONS(57), - [sym_list_marker_upper_alpha_parens] = ACTIONS(59), - [sym_list_marker_lower_roman_parens] = ACTIONS(61), - [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(87), - [sym__block_quote_continuation] = ACTIONS(220), - [sym__thematic_break_dash] = ACTIONS(89), - [sym__thematic_break_star] = ACTIONS(89), + [sym__block_quote_begin] = ACTIONS(85), + [sym__block_quote_continuation] = ACTIONS(238), + [sym__thematic_break_dash] = ACTIONS(87), + [sym__thematic_break_star] = ACTIONS(87), }, [23] = { - [sym__block_with_heading] = STATE(266), - [sym__block_element] = STATE(266), - [sym_heading] = STATE(266), - [sym_list] = STATE(266), - [sym__list_dash] = STATE(162), - [sym__list_item_dash] = STATE(634), - [sym__list_plus] = STATE(162), - [sym__list_item_plus] = STATE(651), - [sym__list_star] = STATE(162), - [sym__list_item_star] = STATE(697), - [sym__list_task] = STATE(162), - [sym__list_item_task] = STATE(707), - [sym_list_marker_task] = STATE(47), - [sym__list_definition] = STATE(162), - [sym__list_item_definition] = STATE(736), - [sym__list_decimal_period] = STATE(162), - [sym__list_item_decimal_period] = STATE(795), - [sym__list_decimal_paren] = STATE(162), - [sym__list_item_decimal_paren] = STATE(848), - [sym__list_decimal_parens] = STATE(162), - [sym__list_item_decimal_parens] = STATE(772), - [sym__list_lower_alpha_period] = STATE(162), - [sym__list_item_lower_alpha_period] = STATE(787), - [sym__list_lower_alpha_paren] = STATE(162), - [sym__list_item_lower_alpha_paren] = STATE(792), - [sym__list_lower_alpha_parens] = STATE(162), - [sym__list_item_lower_alpha_parens] = STATE(793), - [sym__list_upper_alpha_period] = STATE(162), - [sym__list_item_upper_alpha_period] = STATE(797), - [sym__list_upper_alpha_paren] = STATE(162), - [sym__list_item_upper_alpha_paren] = STATE(798), - [sym__list_upper_alpha_parens] = STATE(162), - [sym__list_item_upper_alpha_parens] = STATE(799), - [sym__list_lower_roman_period] = STATE(162), - [sym__list_item_lower_roman_period] = STATE(801), - [sym__list_lower_roman_paren] = STATE(162), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(162), - [sym__list_item_lower_roman_parens] = STATE(814), - [sym__list_upper_roman_period] = STATE(162), - [sym__list_item_upper_roman_period] = STATE(818), - [sym__list_upper_roman_paren] = STATE(162), - [sym__list_item_upper_roman_paren] = STATE(819), - [sym__list_upper_roman_parens] = STATE(162), - [sym__list_item_upper_roman_parens] = STATE(822), - [sym_table] = STATE(266), - [sym__table_content] = STATE(64), - [sym_table_separator] = STATE(64), - [sym_table_row] = STATE(71), - [sym_footnote] = STATE(266), - [sym_footnote_marker_begin] = STATE(1120), - [sym_div] = STATE(266), - [sym__div_marker_begin] = STATE(1032), - [sym_code_block] = STATE(266), - [sym_raw_block] = STATE(266), - [sym_thematic_break] = STATE(266), - [sym_block_quote] = STATE(266), - [sym__block_quote_prefix] = STATE(280), - [sym_link_reference_definition] = STATE(266), - [sym_block_attribute] = STATE(266), - [sym__paragraph] = STATE(266), - [sym__paragraph_content] = STATE(785), - [sym__paragraph_inline_content] = STATE(930), - [sym__inline] = STATE(695), - [sym__symbol_fallback] = STATE(358), - [aux_sym__list_dash_repeat1] = STATE(431), - [aux_sym__list_plus_repeat1] = STATE(414), - [aux_sym__list_star_repeat1] = STATE(416), - [aux_sym__list_task_repeat1] = STATE(396), - [aux_sym__list_definition_repeat1] = STATE(560), - [aux_sym__list_decimal_period_repeat1] = STATE(561), - [aux_sym__list_decimal_paren_repeat1] = STATE(562), - [aux_sym__list_decimal_parens_repeat1] = STATE(563), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(564), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(621), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(566), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(567), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(568), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(569), - [aux_sym__list_lower_roman_period_repeat1] = STATE(570), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(571), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(572), - [aux_sym__list_upper_roman_period_repeat1] = STATE(573), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(574), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(575), - [aux_sym_table_repeat1] = STATE(64), - [aux_sym_footnote_content_repeat1] = STATE(15), - [aux_sym__block_quote_prefix_repeat1] = STATE(313), - [aux_sym__inline_repeat1] = STATE(358), - [anon_sym_LBRACK] = ACTIONS(75), - [anon_sym_PIPE] = ACTIONS(77), + [sym__block_with_heading] = STATE(260), + [sym__block_element] = STATE(260), + [sym_heading] = STATE(260), + [sym_list] = STATE(260), + [sym__list_dash] = STATE(166), + [sym__list_item_dash] = STATE(727), + [sym__list_plus] = STATE(166), + [sym__list_item_plus] = STATE(730), + [sym__list_star] = STATE(166), + [sym__list_item_star] = STATE(759), + [sym__list_task] = STATE(166), + [sym__list_item_task] = STATE(761), + [sym_list_marker_task] = STATE(46), + [sym__list_definition] = STATE(166), + [sym__list_item_definition] = STATE(819), + [sym__list_decimal_period] = STATE(166), + [sym__list_item_decimal_period] = STATE(852), + [sym__list_decimal_paren] = STATE(166), + [sym__list_item_decimal_paren] = STATE(837), + [sym__list_decimal_parens] = STATE(166), + [sym__list_item_decimal_parens] = STATE(815), + [sym__list_lower_alpha_period] = STATE(166), + [sym__list_item_lower_alpha_period] = STATE(843), + [sym__list_lower_alpha_paren] = STATE(166), + [sym__list_item_lower_alpha_paren] = STATE(850), + [sym__list_lower_alpha_parens] = STATE(166), + [sym__list_item_lower_alpha_parens] = STATE(853), + [sym__list_upper_alpha_period] = STATE(166), + [sym__list_item_upper_alpha_period] = STATE(854), + [sym__list_upper_alpha_paren] = STATE(166), + [sym__list_item_upper_alpha_paren] = STATE(855), + [sym__list_upper_alpha_parens] = STATE(166), + [sym__list_item_upper_alpha_parens] = STATE(856), + [sym__list_lower_roman_period] = STATE(166), + [sym__list_item_lower_roman_period] = STATE(857), + [sym__list_lower_roman_paren] = STATE(166), + [sym__list_item_lower_roman_paren] = STATE(871), + [sym__list_lower_roman_parens] = STATE(166), + [sym__list_item_lower_roman_parens] = STATE(874), + [sym__list_upper_roman_period] = STATE(166), + [sym__list_item_upper_roman_period] = STATE(876), + [sym__list_upper_roman_paren] = STATE(166), + [sym__list_item_upper_roman_paren] = STATE(878), + [sym__list_upper_roman_parens] = STATE(166), + [sym__list_item_upper_roman_parens] = STATE(880), + [sym_table] = STATE(260), + [sym__table_content] = STATE(72), + [sym_table_separator] = STATE(72), + [sym_table_row] = STATE(79), + [sym_footnote] = STATE(260), + [sym_footnote_marker_begin] = STATE(1302), + [sym_div] = STATE(260), + [sym__div_marker_begin] = STATE(1165), + [sym_code_block] = STATE(260), + [sym_raw_block] = STATE(260), + [sym_thematic_break] = STATE(260), + [sym_block_quote] = STATE(260), + [sym__block_quote_prefix] = STATE(294), + [sym_link_reference_definition] = STATE(260), + [sym_block_attribute] = STATE(260), + [sym__paragraph] = STATE(260), + [sym__paragraph_content] = STATE(848), + [sym__paragraph_inline_content] = STATE(896), + [sym__inline] = STATE(715), + [sym__symbol_fallback] = STATE(381), + [aux_sym__list_dash_repeat1] = STATE(454), + [aux_sym__list_plus_repeat1] = STATE(455), + [aux_sym__list_star_repeat1] = STATE(456), + [aux_sym__list_task_repeat1] = STATE(436), + [aux_sym__list_definition_repeat1] = STATE(612), + [aux_sym__list_decimal_period_repeat1] = STATE(613), + [aux_sym__list_decimal_paren_repeat1] = STATE(614), + [aux_sym__list_decimal_parens_repeat1] = STATE(615), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(616), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(617), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(618), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(619), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(620), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(621), + [aux_sym__list_lower_roman_period_repeat1] = STATE(622), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(623), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(624), + [aux_sym__list_upper_roman_period_repeat1] = STATE(625), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(626), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(627), + [aux_sym_table_repeat1] = STATE(72), + [aux_sym_footnote_content_repeat1] = STATE(24), + [aux_sym__block_quote_prefix_repeat1] = STATE(308), + [aux_sym__inline_repeat1] = STATE(381), + [anon_sym_LBRACK] = ACTIONS(73), + [anon_sym_PIPE] = ACTIONS(75), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(77), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__block_close] = ACTIONS(379), - [sym__newline] = ACTIONS(218), + [sym__block_close] = ACTIONS(377), + [sym__newline] = ACTIONS(236), [sym__heading_begin] = ACTIONS(19), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(85), + [sym__code_block_begin] = ACTIONS(83), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -7642,116 +8029,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(87), - [sym__block_quote_continuation] = ACTIONS(220), - [sym__thematic_break_dash] = ACTIONS(89), - [sym__thematic_break_star] = ACTIONS(89), + [sym__block_quote_begin] = ACTIONS(85), + [sym__block_quote_continuation] = ACTIONS(238), + [sym__thematic_break_dash] = ACTIONS(87), + [sym__thematic_break_star] = ACTIONS(87), }, [24] = { - [sym__block_with_heading] = STATE(266), - [sym__block_element] = STATE(266), - [sym_heading] = STATE(266), - [sym_list] = STATE(266), - [sym__list_dash] = STATE(162), - [sym__list_item_dash] = STATE(634), - [sym__list_plus] = STATE(162), - [sym__list_item_plus] = STATE(651), - [sym__list_star] = STATE(162), - [sym__list_item_star] = STATE(697), - [sym__list_task] = STATE(162), - [sym__list_item_task] = STATE(707), - [sym_list_marker_task] = STATE(47), - [sym__list_definition] = STATE(162), - [sym__list_item_definition] = STATE(736), - [sym__list_decimal_period] = STATE(162), - [sym__list_item_decimal_period] = STATE(795), - [sym__list_decimal_paren] = STATE(162), - [sym__list_item_decimal_paren] = STATE(848), - [sym__list_decimal_parens] = STATE(162), - [sym__list_item_decimal_parens] = STATE(772), - [sym__list_lower_alpha_period] = STATE(162), - [sym__list_item_lower_alpha_period] = STATE(787), - [sym__list_lower_alpha_paren] = STATE(162), - [sym__list_item_lower_alpha_paren] = STATE(792), - [sym__list_lower_alpha_parens] = STATE(162), - [sym__list_item_lower_alpha_parens] = STATE(793), - [sym__list_upper_alpha_period] = STATE(162), - [sym__list_item_upper_alpha_period] = STATE(797), - [sym__list_upper_alpha_paren] = STATE(162), - [sym__list_item_upper_alpha_paren] = STATE(798), - [sym__list_upper_alpha_parens] = STATE(162), - [sym__list_item_upper_alpha_parens] = STATE(799), - [sym__list_lower_roman_period] = STATE(162), - [sym__list_item_lower_roman_period] = STATE(801), - [sym__list_lower_roman_paren] = STATE(162), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(162), - [sym__list_item_lower_roman_parens] = STATE(814), - [sym__list_upper_roman_period] = STATE(162), - [sym__list_item_upper_roman_period] = STATE(818), - [sym__list_upper_roman_paren] = STATE(162), - [sym__list_item_upper_roman_paren] = STATE(819), - [sym__list_upper_roman_parens] = STATE(162), - [sym__list_item_upper_roman_parens] = STATE(822), - [sym_table] = STATE(266), - [sym__table_content] = STATE(64), - [sym_table_separator] = STATE(64), - [sym_table_row] = STATE(71), - [sym_footnote] = STATE(266), - [sym_footnote_marker_begin] = STATE(1120), - [sym_div] = STATE(266), - [sym__div_marker_begin] = STATE(1032), - [sym_code_block] = STATE(266), - [sym_raw_block] = STATE(266), - [sym_thematic_break] = STATE(266), - [sym_block_quote] = STATE(266), - [sym__block_quote_prefix] = STATE(283), - [sym_link_reference_definition] = STATE(266), - [sym_block_attribute] = STATE(266), - [sym__paragraph] = STATE(266), - [sym__paragraph_content] = STATE(785), - [sym__paragraph_inline_content] = STATE(930), - [sym__inline] = STATE(695), - [sym__symbol_fallback] = STATE(358), - [aux_sym__list_dash_repeat1] = STATE(431), - [aux_sym__list_plus_repeat1] = STATE(414), - [aux_sym__list_star_repeat1] = STATE(416), - [aux_sym__list_task_repeat1] = STATE(396), - [aux_sym__list_definition_repeat1] = STATE(560), - [aux_sym__list_decimal_period_repeat1] = STATE(561), - [aux_sym__list_decimal_paren_repeat1] = STATE(562), - [aux_sym__list_decimal_parens_repeat1] = STATE(563), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(564), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(621), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(566), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(567), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(568), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(569), - [aux_sym__list_lower_roman_period_repeat1] = STATE(570), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(571), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(572), - [aux_sym__list_upper_roman_period_repeat1] = STATE(573), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(574), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(575), - [aux_sym_table_repeat1] = STATE(64), - [aux_sym_footnote_content_repeat1] = STATE(25), - [aux_sym__block_quote_prefix_repeat1] = STATE(313), - [aux_sym__inline_repeat1] = STATE(358), - [anon_sym_LBRACK] = ACTIONS(75), - [anon_sym_PIPE] = ACTIONS(77), + [sym__block_with_heading] = STATE(260), + [sym__block_element] = STATE(260), + [sym_heading] = STATE(260), + [sym_list] = STATE(260), + [sym__list_dash] = STATE(166), + [sym__list_item_dash] = STATE(727), + [sym__list_plus] = STATE(166), + [sym__list_item_plus] = STATE(730), + [sym__list_star] = STATE(166), + [sym__list_item_star] = STATE(759), + [sym__list_task] = STATE(166), + [sym__list_item_task] = STATE(761), + [sym_list_marker_task] = STATE(46), + [sym__list_definition] = STATE(166), + [sym__list_item_definition] = STATE(819), + [sym__list_decimal_period] = STATE(166), + [sym__list_item_decimal_period] = STATE(852), + [sym__list_decimal_paren] = STATE(166), + [sym__list_item_decimal_paren] = STATE(837), + [sym__list_decimal_parens] = STATE(166), + [sym__list_item_decimal_parens] = STATE(815), + [sym__list_lower_alpha_period] = STATE(166), + [sym__list_item_lower_alpha_period] = STATE(843), + [sym__list_lower_alpha_paren] = STATE(166), + [sym__list_item_lower_alpha_paren] = STATE(850), + [sym__list_lower_alpha_parens] = STATE(166), + [sym__list_item_lower_alpha_parens] = STATE(853), + [sym__list_upper_alpha_period] = STATE(166), + [sym__list_item_upper_alpha_period] = STATE(854), + [sym__list_upper_alpha_paren] = STATE(166), + [sym__list_item_upper_alpha_paren] = STATE(855), + [sym__list_upper_alpha_parens] = STATE(166), + [sym__list_item_upper_alpha_parens] = STATE(856), + [sym__list_lower_roman_period] = STATE(166), + [sym__list_item_lower_roman_period] = STATE(857), + [sym__list_lower_roman_paren] = STATE(166), + [sym__list_item_lower_roman_paren] = STATE(871), + [sym__list_lower_roman_parens] = STATE(166), + [sym__list_item_lower_roman_parens] = STATE(874), + [sym__list_upper_roman_period] = STATE(166), + [sym__list_item_upper_roman_period] = STATE(876), + [sym__list_upper_roman_paren] = STATE(166), + [sym__list_item_upper_roman_paren] = STATE(878), + [sym__list_upper_roman_parens] = STATE(166), + [sym__list_item_upper_roman_parens] = STATE(880), + [sym_table] = STATE(260), + [sym__table_content] = STATE(72), + [sym_table_separator] = STATE(72), + [sym_table_row] = STATE(79), + [sym_footnote] = STATE(260), + [sym_footnote_marker_begin] = STATE(1302), + [sym_div] = STATE(260), + [sym__div_marker_begin] = STATE(1165), + [sym_code_block] = STATE(260), + [sym_raw_block] = STATE(260), + [sym_thematic_break] = STATE(260), + [sym_block_quote] = STATE(260), + [sym__block_quote_prefix] = STATE(297), + [sym_link_reference_definition] = STATE(260), + [sym_block_attribute] = STATE(260), + [sym__paragraph] = STATE(260), + [sym__paragraph_content] = STATE(848), + [sym__paragraph_inline_content] = STATE(896), + [sym__inline] = STATE(715), + [sym__symbol_fallback] = STATE(381), + [aux_sym__list_dash_repeat1] = STATE(454), + [aux_sym__list_plus_repeat1] = STATE(455), + [aux_sym__list_star_repeat1] = STATE(456), + [aux_sym__list_task_repeat1] = STATE(436), + [aux_sym__list_definition_repeat1] = STATE(612), + [aux_sym__list_decimal_period_repeat1] = STATE(613), + [aux_sym__list_decimal_paren_repeat1] = STATE(614), + [aux_sym__list_decimal_parens_repeat1] = STATE(615), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(616), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(617), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(618), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(619), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(620), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(621), + [aux_sym__list_lower_roman_period_repeat1] = STATE(622), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(623), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(624), + [aux_sym__list_upper_roman_period_repeat1] = STATE(625), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(626), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(627), + [aux_sym_table_repeat1] = STATE(72), + [aux_sym_footnote_content_repeat1] = STATE(16), + [aux_sym__block_quote_prefix_repeat1] = STATE(308), + [aux_sym__inline_repeat1] = STATE(381), + [anon_sym_LBRACK] = ACTIONS(73), + [anon_sym_PIPE] = ACTIONS(75), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(77), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__block_close] = ACTIONS(381), - [sym__newline] = ACTIONS(218), + [sym__block_close] = ACTIONS(379), + [sym__newline] = ACTIONS(236), [sym__heading_begin] = ACTIONS(19), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(85), + [sym__code_block_begin] = ACTIONS(83), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -7772,116 +8159,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(87), - [sym__block_quote_continuation] = ACTIONS(220), - [sym__thematic_break_dash] = ACTIONS(89), - [sym__thematic_break_star] = ACTIONS(89), + [sym__block_quote_begin] = ACTIONS(85), + [sym__block_quote_continuation] = ACTIONS(238), + [sym__thematic_break_dash] = ACTIONS(87), + [sym__thematic_break_star] = ACTIONS(87), }, [25] = { - [sym__block_with_heading] = STATE(266), - [sym__block_element] = STATE(266), - [sym_heading] = STATE(266), - [sym_list] = STATE(266), - [sym__list_dash] = STATE(162), - [sym__list_item_dash] = STATE(634), - [sym__list_plus] = STATE(162), - [sym__list_item_plus] = STATE(651), - [sym__list_star] = STATE(162), - [sym__list_item_star] = STATE(697), - [sym__list_task] = STATE(162), - [sym__list_item_task] = STATE(707), - [sym_list_marker_task] = STATE(47), - [sym__list_definition] = STATE(162), - [sym__list_item_definition] = STATE(736), - [sym__list_decimal_period] = STATE(162), - [sym__list_item_decimal_period] = STATE(795), - [sym__list_decimal_paren] = STATE(162), - [sym__list_item_decimal_paren] = STATE(848), - [sym__list_decimal_parens] = STATE(162), - [sym__list_item_decimal_parens] = STATE(772), - [sym__list_lower_alpha_period] = STATE(162), - [sym__list_item_lower_alpha_period] = STATE(787), - [sym__list_lower_alpha_paren] = STATE(162), - [sym__list_item_lower_alpha_paren] = STATE(792), - [sym__list_lower_alpha_parens] = STATE(162), - [sym__list_item_lower_alpha_parens] = STATE(793), - [sym__list_upper_alpha_period] = STATE(162), - [sym__list_item_upper_alpha_period] = STATE(797), - [sym__list_upper_alpha_paren] = STATE(162), - [sym__list_item_upper_alpha_paren] = STATE(798), - [sym__list_upper_alpha_parens] = STATE(162), - [sym__list_item_upper_alpha_parens] = STATE(799), - [sym__list_lower_roman_period] = STATE(162), - [sym__list_item_lower_roman_period] = STATE(801), - [sym__list_lower_roman_paren] = STATE(162), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(162), - [sym__list_item_lower_roman_parens] = STATE(814), - [sym__list_upper_roman_period] = STATE(162), - [sym__list_item_upper_roman_period] = STATE(818), - [sym__list_upper_roman_paren] = STATE(162), - [sym__list_item_upper_roman_paren] = STATE(819), - [sym__list_upper_roman_parens] = STATE(162), - [sym__list_item_upper_roman_parens] = STATE(822), - [sym_table] = STATE(266), - [sym__table_content] = STATE(64), - [sym_table_separator] = STATE(64), - [sym_table_row] = STATE(71), - [sym_footnote] = STATE(266), - [sym_footnote_marker_begin] = STATE(1120), - [sym_div] = STATE(266), - [sym__div_marker_begin] = STATE(1032), - [sym_code_block] = STATE(266), - [sym_raw_block] = STATE(266), - [sym_thematic_break] = STATE(266), - [sym_block_quote] = STATE(266), - [sym__block_quote_prefix] = STATE(289), - [sym_link_reference_definition] = STATE(266), - [sym_block_attribute] = STATE(266), - [sym__paragraph] = STATE(266), - [sym__paragraph_content] = STATE(785), - [sym__paragraph_inline_content] = STATE(930), - [sym__inline] = STATE(695), - [sym__symbol_fallback] = STATE(358), - [aux_sym__list_dash_repeat1] = STATE(431), - [aux_sym__list_plus_repeat1] = STATE(414), - [aux_sym__list_star_repeat1] = STATE(416), - [aux_sym__list_task_repeat1] = STATE(396), - [aux_sym__list_definition_repeat1] = STATE(560), - [aux_sym__list_decimal_period_repeat1] = STATE(561), - [aux_sym__list_decimal_paren_repeat1] = STATE(562), - [aux_sym__list_decimal_parens_repeat1] = STATE(563), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(564), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(621), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(566), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(567), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(568), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(569), - [aux_sym__list_lower_roman_period_repeat1] = STATE(570), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(571), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(572), - [aux_sym__list_upper_roman_period_repeat1] = STATE(573), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(574), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(575), - [aux_sym_table_repeat1] = STATE(64), - [aux_sym_footnote_content_repeat1] = STATE(15), - [aux_sym__block_quote_prefix_repeat1] = STATE(313), - [aux_sym__inline_repeat1] = STATE(358), - [anon_sym_LBRACK] = ACTIONS(75), - [anon_sym_PIPE] = ACTIONS(77), + [sym__block_with_heading] = STATE(260), + [sym__block_element] = STATE(260), + [sym_heading] = STATE(260), + [sym_list] = STATE(260), + [sym__list_dash] = STATE(166), + [sym__list_item_dash] = STATE(727), + [sym__list_plus] = STATE(166), + [sym__list_item_plus] = STATE(730), + [sym__list_star] = STATE(166), + [sym__list_item_star] = STATE(759), + [sym__list_task] = STATE(166), + [sym__list_item_task] = STATE(761), + [sym_list_marker_task] = STATE(46), + [sym__list_definition] = STATE(166), + [sym__list_item_definition] = STATE(819), + [sym__list_decimal_period] = STATE(166), + [sym__list_item_decimal_period] = STATE(852), + [sym__list_decimal_paren] = STATE(166), + [sym__list_item_decimal_paren] = STATE(837), + [sym__list_decimal_parens] = STATE(166), + [sym__list_item_decimal_parens] = STATE(815), + [sym__list_lower_alpha_period] = STATE(166), + [sym__list_item_lower_alpha_period] = STATE(843), + [sym__list_lower_alpha_paren] = STATE(166), + [sym__list_item_lower_alpha_paren] = STATE(850), + [sym__list_lower_alpha_parens] = STATE(166), + [sym__list_item_lower_alpha_parens] = STATE(853), + [sym__list_upper_alpha_period] = STATE(166), + [sym__list_item_upper_alpha_period] = STATE(854), + [sym__list_upper_alpha_paren] = STATE(166), + [sym__list_item_upper_alpha_paren] = STATE(855), + [sym__list_upper_alpha_parens] = STATE(166), + [sym__list_item_upper_alpha_parens] = STATE(856), + [sym__list_lower_roman_period] = STATE(166), + [sym__list_item_lower_roman_period] = STATE(857), + [sym__list_lower_roman_paren] = STATE(166), + [sym__list_item_lower_roman_paren] = STATE(871), + [sym__list_lower_roman_parens] = STATE(166), + [sym__list_item_lower_roman_parens] = STATE(874), + [sym__list_upper_roman_period] = STATE(166), + [sym__list_item_upper_roman_period] = STATE(876), + [sym__list_upper_roman_paren] = STATE(166), + [sym__list_item_upper_roman_paren] = STATE(878), + [sym__list_upper_roman_parens] = STATE(166), + [sym__list_item_upper_roman_parens] = STATE(880), + [sym_table] = STATE(260), + [sym__table_content] = STATE(72), + [sym_table_separator] = STATE(72), + [sym_table_row] = STATE(79), + [sym_footnote] = STATE(260), + [sym_footnote_marker_begin] = STATE(1302), + [sym_div] = STATE(260), + [sym__div_marker_begin] = STATE(1165), + [sym_code_block] = STATE(260), + [sym_raw_block] = STATE(260), + [sym_thematic_break] = STATE(260), + [sym_block_quote] = STATE(260), + [sym__block_quote_prefix] = STATE(295), + [sym_link_reference_definition] = STATE(260), + [sym_block_attribute] = STATE(260), + [sym__paragraph] = STATE(260), + [sym__paragraph_content] = STATE(848), + [sym__paragraph_inline_content] = STATE(896), + [sym__inline] = STATE(715), + [sym__symbol_fallback] = STATE(381), + [aux_sym__list_dash_repeat1] = STATE(454), + [aux_sym__list_plus_repeat1] = STATE(455), + [aux_sym__list_star_repeat1] = STATE(456), + [aux_sym__list_task_repeat1] = STATE(436), + [aux_sym__list_definition_repeat1] = STATE(612), + [aux_sym__list_decimal_period_repeat1] = STATE(613), + [aux_sym__list_decimal_paren_repeat1] = STATE(614), + [aux_sym__list_decimal_parens_repeat1] = STATE(615), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(616), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(617), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(618), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(619), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(620), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(621), + [aux_sym__list_lower_roman_period_repeat1] = STATE(622), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(623), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(624), + [aux_sym__list_upper_roman_period_repeat1] = STATE(625), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(626), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(627), + [aux_sym_table_repeat1] = STATE(72), + [aux_sym_footnote_content_repeat1] = STATE(26), + [aux_sym__block_quote_prefix_repeat1] = STATE(308), + [aux_sym__inline_repeat1] = STATE(381), + [anon_sym_LBRACK] = ACTIONS(73), + [anon_sym_PIPE] = ACTIONS(75), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(77), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__block_close] = ACTIONS(383), - [sym__newline] = ACTIONS(218), + [sym__block_close] = ACTIONS(381), + [sym__newline] = ACTIONS(236), [sym__heading_begin] = ACTIONS(19), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(85), + [sym__code_block_begin] = ACTIONS(83), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -7902,116 +8289,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(87), - [sym__block_quote_continuation] = ACTIONS(220), - [sym__thematic_break_dash] = ACTIONS(89), - [sym__thematic_break_star] = ACTIONS(89), + [sym__block_quote_begin] = ACTIONS(85), + [sym__block_quote_continuation] = ACTIONS(238), + [sym__thematic_break_dash] = ACTIONS(87), + [sym__thematic_break_star] = ACTIONS(87), }, [26] = { - [sym__block_with_heading] = STATE(159), - [sym__block_element] = STATE(159), - [sym_heading] = STATE(159), - [sym_list] = STATE(159), - [sym__list_dash] = STATE(223), - [sym__list_item_dash] = STATE(634), - [sym__list_plus] = STATE(223), - [sym__list_item_plus] = STATE(651), - [sym__list_star] = STATE(223), - [sym__list_item_star] = STATE(697), - [sym__list_task] = STATE(223), - [sym__list_item_task] = STATE(707), - [sym_list_marker_task] = STATE(47), - [sym__list_definition] = STATE(223), - [sym__list_item_definition] = STATE(736), - [sym__list_decimal_period] = STATE(223), - [sym__list_item_decimal_period] = STATE(795), - [sym__list_decimal_paren] = STATE(223), - [sym__list_item_decimal_paren] = STATE(848), - [sym__list_decimal_parens] = STATE(223), - [sym__list_item_decimal_parens] = STATE(772), - [sym__list_lower_alpha_period] = STATE(223), - [sym__list_item_lower_alpha_period] = STATE(787), - [sym__list_lower_alpha_paren] = STATE(223), - [sym__list_item_lower_alpha_paren] = STATE(792), - [sym__list_lower_alpha_parens] = STATE(223), - [sym__list_item_lower_alpha_parens] = STATE(793), - [sym__list_upper_alpha_period] = STATE(223), - [sym__list_item_upper_alpha_period] = STATE(797), - [sym__list_upper_alpha_paren] = STATE(223), - [sym__list_item_upper_alpha_paren] = STATE(798), - [sym__list_upper_alpha_parens] = STATE(223), - [sym__list_item_upper_alpha_parens] = STATE(799), - [sym__list_lower_roman_period] = STATE(223), - [sym__list_item_lower_roman_period] = STATE(801), - [sym__list_lower_roman_paren] = STATE(223), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(223), - [sym__list_item_lower_roman_parens] = STATE(814), - [sym__list_upper_roman_period] = STATE(223), - [sym__list_item_upper_roman_period] = STATE(818), - [sym__list_upper_roman_paren] = STATE(223), - [sym__list_item_upper_roman_paren] = STATE(819), - [sym__list_upper_roman_parens] = STATE(223), - [sym__list_item_upper_roman_parens] = STATE(822), - [sym_table] = STATE(159), - [sym__table_content] = STATE(65), - [sym_table_separator] = STATE(65), - [sym_table_row] = STATE(70), - [sym_footnote] = STATE(159), - [sym_footnote_marker_begin] = STATE(1122), - [sym_footnote_content] = STATE(1024), - [sym_div] = STATE(159), - [sym__div_marker_begin] = STATE(1053), - [sym_code_block] = STATE(159), - [sym_raw_block] = STATE(159), - [sym_thematic_break] = STATE(159), - [sym_block_quote] = STATE(159), - [sym__block_quote_prefix] = STATE(291), - [sym_link_reference_definition] = STATE(159), - [sym_block_attribute] = STATE(159), - [sym__paragraph] = STATE(159), - [sym__paragraph_content] = STATE(812), - [sym__paragraph_inline_content] = STATE(930), - [sym__inline] = STATE(695), - [sym__symbol_fallback] = STATE(358), - [aux_sym__list_dash_repeat1] = STATE(424), - [aux_sym__list_plus_repeat1] = STATE(425), - [aux_sym__list_star_repeat1] = STATE(427), - [aux_sym__list_task_repeat1] = STATE(409), - [aux_sym__list_definition_repeat1] = STATE(577), - [aux_sym__list_decimal_period_repeat1] = STATE(578), - [aux_sym__list_decimal_paren_repeat1] = STATE(579), - [aux_sym__list_decimal_parens_repeat1] = STATE(580), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(581), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(582), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(583), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(584), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(585), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(586), - [aux_sym__list_lower_roman_period_repeat1] = STATE(587), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(588), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(589), - [aux_sym__list_upper_roman_period_repeat1] = STATE(590), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(591), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(592), - [aux_sym_table_repeat1] = STATE(65), + [sym__block_with_heading] = STATE(260), + [sym__block_element] = STATE(260), + [sym_heading] = STATE(260), + [sym_list] = STATE(260), + [sym__list_dash] = STATE(166), + [sym__list_item_dash] = STATE(727), + [sym__list_plus] = STATE(166), + [sym__list_item_plus] = STATE(730), + [sym__list_star] = STATE(166), + [sym__list_item_star] = STATE(759), + [sym__list_task] = STATE(166), + [sym__list_item_task] = STATE(761), + [sym_list_marker_task] = STATE(46), + [sym__list_definition] = STATE(166), + [sym__list_item_definition] = STATE(819), + [sym__list_decimal_period] = STATE(166), + [sym__list_item_decimal_period] = STATE(852), + [sym__list_decimal_paren] = STATE(166), + [sym__list_item_decimal_paren] = STATE(837), + [sym__list_decimal_parens] = STATE(166), + [sym__list_item_decimal_parens] = STATE(815), + [sym__list_lower_alpha_period] = STATE(166), + [sym__list_item_lower_alpha_period] = STATE(843), + [sym__list_lower_alpha_paren] = STATE(166), + [sym__list_item_lower_alpha_paren] = STATE(850), + [sym__list_lower_alpha_parens] = STATE(166), + [sym__list_item_lower_alpha_parens] = STATE(853), + [sym__list_upper_alpha_period] = STATE(166), + [sym__list_item_upper_alpha_period] = STATE(854), + [sym__list_upper_alpha_paren] = STATE(166), + [sym__list_item_upper_alpha_paren] = STATE(855), + [sym__list_upper_alpha_parens] = STATE(166), + [sym__list_item_upper_alpha_parens] = STATE(856), + [sym__list_lower_roman_period] = STATE(166), + [sym__list_item_lower_roman_period] = STATE(857), + [sym__list_lower_roman_paren] = STATE(166), + [sym__list_item_lower_roman_paren] = STATE(871), + [sym__list_lower_roman_parens] = STATE(166), + [sym__list_item_lower_roman_parens] = STATE(874), + [sym__list_upper_roman_period] = STATE(166), + [sym__list_item_upper_roman_period] = STATE(876), + [sym__list_upper_roman_paren] = STATE(166), + [sym__list_item_upper_roman_paren] = STATE(878), + [sym__list_upper_roman_parens] = STATE(166), + [sym__list_item_upper_roman_parens] = STATE(880), + [sym_table] = STATE(260), + [sym__table_content] = STATE(72), + [sym_table_separator] = STATE(72), + [sym_table_row] = STATE(79), + [sym_footnote] = STATE(260), + [sym_footnote_marker_begin] = STATE(1302), + [sym_div] = STATE(260), + [sym__div_marker_begin] = STATE(1165), + [sym_code_block] = STATE(260), + [sym_raw_block] = STATE(260), + [sym_thematic_break] = STATE(260), + [sym_block_quote] = STATE(260), + [sym__block_quote_prefix] = STATE(293), + [sym_link_reference_definition] = STATE(260), + [sym_block_attribute] = STATE(260), + [sym__paragraph] = STATE(260), + [sym__paragraph_content] = STATE(848), + [sym__paragraph_inline_content] = STATE(896), + [sym__inline] = STATE(715), + [sym__symbol_fallback] = STATE(381), + [aux_sym__list_dash_repeat1] = STATE(454), + [aux_sym__list_plus_repeat1] = STATE(455), + [aux_sym__list_star_repeat1] = STATE(456), + [aux_sym__list_task_repeat1] = STATE(436), + [aux_sym__list_definition_repeat1] = STATE(612), + [aux_sym__list_decimal_period_repeat1] = STATE(613), + [aux_sym__list_decimal_paren_repeat1] = STATE(614), + [aux_sym__list_decimal_parens_repeat1] = STATE(615), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(616), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(617), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(618), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(619), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(620), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(621), + [aux_sym__list_lower_roman_period_repeat1] = STATE(622), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(623), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(624), + [aux_sym__list_upper_roman_period_repeat1] = STATE(625), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(626), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(627), + [aux_sym_table_repeat1] = STATE(72), [aux_sym_footnote_content_repeat1] = STATE(16), - [aux_sym__block_quote_prefix_repeat1] = STATE(320), - [aux_sym__inline_repeat1] = STATE(358), - [anon_sym_LBRACK] = ACTIONS(222), - [anon_sym_PIPE] = ACTIONS(224), + [aux_sym__block_quote_prefix_repeat1] = STATE(308), + [aux_sym__inline_repeat1] = STATE(381), + [anon_sym_LBRACK] = ACTIONS(73), + [anon_sym_PIPE] = ACTIONS(75), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(77), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(228), - [sym__heading_begin] = ACTIONS(230), + [sym__block_close] = ACTIONS(383), + [sym__newline] = ACTIONS(236), + [sym__heading_begin] = ACTIONS(19), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(232), + [sym__code_block_begin] = ACTIONS(83), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -8032,116 +8419,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(234), - [sym__block_quote_continuation] = ACTIONS(236), - [sym__thematic_break_dash] = ACTIONS(238), - [sym__thematic_break_star] = ACTIONS(238), + [sym__block_quote_begin] = ACTIONS(85), + [sym__block_quote_continuation] = ACTIONS(238), + [sym__thematic_break_dash] = ACTIONS(87), + [sym__thematic_break_star] = ACTIONS(87), }, [27] = { - [sym__block_with_heading] = STATE(159), - [sym__block_element] = STATE(159), - [sym_heading] = STATE(159), - [sym_list] = STATE(159), - [sym__list_dash] = STATE(223), - [sym__list_item_dash] = STATE(634), - [sym__list_plus] = STATE(223), - [sym__list_item_plus] = STATE(651), - [sym__list_star] = STATE(223), - [sym__list_item_star] = STATE(697), - [sym__list_task] = STATE(223), - [sym__list_item_task] = STATE(707), - [sym_list_marker_task] = STATE(47), - [sym__list_definition] = STATE(223), - [sym__list_item_definition] = STATE(736), - [sym__list_decimal_period] = STATE(223), - [sym__list_item_decimal_period] = STATE(795), - [sym__list_decimal_paren] = STATE(223), - [sym__list_item_decimal_paren] = STATE(848), - [sym__list_decimal_parens] = STATE(223), - [sym__list_item_decimal_parens] = STATE(772), - [sym__list_lower_alpha_period] = STATE(223), - [sym__list_item_lower_alpha_period] = STATE(787), - [sym__list_lower_alpha_paren] = STATE(223), - [sym__list_item_lower_alpha_paren] = STATE(792), - [sym__list_lower_alpha_parens] = STATE(223), - [sym__list_item_lower_alpha_parens] = STATE(793), - [sym__list_upper_alpha_period] = STATE(223), - [sym__list_item_upper_alpha_period] = STATE(797), - [sym__list_upper_alpha_paren] = STATE(223), - [sym__list_item_upper_alpha_paren] = STATE(798), - [sym__list_upper_alpha_parens] = STATE(223), - [sym__list_item_upper_alpha_parens] = STATE(799), - [sym__list_lower_roman_period] = STATE(223), - [sym__list_item_lower_roman_period] = STATE(801), - [sym__list_lower_roman_paren] = STATE(223), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(223), - [sym__list_item_lower_roman_parens] = STATE(814), - [sym__list_upper_roman_period] = STATE(223), - [sym__list_item_upper_roman_period] = STATE(818), - [sym__list_upper_roman_paren] = STATE(223), - [sym__list_item_upper_roman_paren] = STATE(819), - [sym__list_upper_roman_parens] = STATE(223), - [sym__list_item_upper_roman_parens] = STATE(822), - [sym_table] = STATE(159), - [sym__table_content] = STATE(65), - [sym_table_separator] = STATE(65), - [sym_table_row] = STATE(70), - [sym_footnote] = STATE(159), - [sym_footnote_marker_begin] = STATE(1122), - [sym_footnote_content] = STATE(958), - [sym_div] = STATE(159), - [sym__div_marker_begin] = STATE(1053), - [sym_code_block] = STATE(159), - [sym_raw_block] = STATE(159), - [sym_thematic_break] = STATE(159), - [sym_block_quote] = STATE(159), - [sym__block_quote_prefix] = STATE(291), - [sym_link_reference_definition] = STATE(159), - [sym_block_attribute] = STATE(159), - [sym__paragraph] = STATE(159), - [sym__paragraph_content] = STATE(812), - [sym__paragraph_inline_content] = STATE(930), - [sym__inline] = STATE(695), - [sym__symbol_fallback] = STATE(358), - [aux_sym__list_dash_repeat1] = STATE(424), - [aux_sym__list_plus_repeat1] = STATE(425), - [aux_sym__list_star_repeat1] = STATE(427), - [aux_sym__list_task_repeat1] = STATE(409), - [aux_sym__list_definition_repeat1] = STATE(577), - [aux_sym__list_decimal_period_repeat1] = STATE(578), - [aux_sym__list_decimal_paren_repeat1] = STATE(579), - [aux_sym__list_decimal_parens_repeat1] = STATE(580), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(581), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(582), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(583), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(584), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(585), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(586), - [aux_sym__list_lower_roman_period_repeat1] = STATE(587), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(588), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(589), - [aux_sym__list_upper_roman_period_repeat1] = STATE(590), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(591), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(592), - [aux_sym_table_repeat1] = STATE(65), - [aux_sym_footnote_content_repeat1] = STATE(16), - [aux_sym__block_quote_prefix_repeat1] = STATE(320), - [aux_sym__inline_repeat1] = STATE(358), - [anon_sym_LBRACK] = ACTIONS(222), - [anon_sym_PIPE] = ACTIONS(224), + [sym__block_with_heading] = STATE(260), + [sym__block_element] = STATE(260), + [sym_heading] = STATE(260), + [sym_list] = STATE(260), + [sym__list_dash] = STATE(166), + [sym__list_item_dash] = STATE(727), + [sym__list_plus] = STATE(166), + [sym__list_item_plus] = STATE(730), + [sym__list_star] = STATE(166), + [sym__list_item_star] = STATE(759), + [sym__list_task] = STATE(166), + [sym__list_item_task] = STATE(761), + [sym_list_marker_task] = STATE(46), + [sym__list_definition] = STATE(166), + [sym__list_item_definition] = STATE(819), + [sym__list_decimal_period] = STATE(166), + [sym__list_item_decimal_period] = STATE(852), + [sym__list_decimal_paren] = STATE(166), + [sym__list_item_decimal_paren] = STATE(837), + [sym__list_decimal_parens] = STATE(166), + [sym__list_item_decimal_parens] = STATE(815), + [sym__list_lower_alpha_period] = STATE(166), + [sym__list_item_lower_alpha_period] = STATE(843), + [sym__list_lower_alpha_paren] = STATE(166), + [sym__list_item_lower_alpha_paren] = STATE(850), + [sym__list_lower_alpha_parens] = STATE(166), + [sym__list_item_lower_alpha_parens] = STATE(853), + [sym__list_upper_alpha_period] = STATE(166), + [sym__list_item_upper_alpha_period] = STATE(854), + [sym__list_upper_alpha_paren] = STATE(166), + [sym__list_item_upper_alpha_paren] = STATE(855), + [sym__list_upper_alpha_parens] = STATE(166), + [sym__list_item_upper_alpha_parens] = STATE(856), + [sym__list_lower_roman_period] = STATE(166), + [sym__list_item_lower_roman_period] = STATE(857), + [sym__list_lower_roman_paren] = STATE(166), + [sym__list_item_lower_roman_paren] = STATE(871), + [sym__list_lower_roman_parens] = STATE(166), + [sym__list_item_lower_roman_parens] = STATE(874), + [sym__list_upper_roman_period] = STATE(166), + [sym__list_item_upper_roman_period] = STATE(876), + [sym__list_upper_roman_paren] = STATE(166), + [sym__list_item_upper_roman_paren] = STATE(878), + [sym__list_upper_roman_parens] = STATE(166), + [sym__list_item_upper_roman_parens] = STATE(880), + [sym_table] = STATE(260), + [sym__table_content] = STATE(72), + [sym_table_separator] = STATE(72), + [sym_table_row] = STATE(79), + [sym_footnote] = STATE(260), + [sym_footnote_marker_begin] = STATE(1302), + [sym_div] = STATE(260), + [sym__div_marker_begin] = STATE(1165), + [sym_code_block] = STATE(260), + [sym_raw_block] = STATE(260), + [sym_thematic_break] = STATE(260), + [sym_block_quote] = STATE(260), + [sym__block_quote_prefix] = STATE(298), + [sym_link_reference_definition] = STATE(260), + [sym_block_attribute] = STATE(260), + [sym__paragraph] = STATE(260), + [sym__paragraph_content] = STATE(848), + [sym__paragraph_inline_content] = STATE(896), + [sym__inline] = STATE(715), + [sym__symbol_fallback] = STATE(381), + [aux_sym__list_dash_repeat1] = STATE(454), + [aux_sym__list_plus_repeat1] = STATE(455), + [aux_sym__list_star_repeat1] = STATE(456), + [aux_sym__list_task_repeat1] = STATE(436), + [aux_sym__list_definition_repeat1] = STATE(612), + [aux_sym__list_decimal_period_repeat1] = STATE(613), + [aux_sym__list_decimal_paren_repeat1] = STATE(614), + [aux_sym__list_decimal_parens_repeat1] = STATE(615), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(616), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(617), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(618), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(619), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(620), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(621), + [aux_sym__list_lower_roman_period_repeat1] = STATE(622), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(623), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(624), + [aux_sym__list_upper_roman_period_repeat1] = STATE(625), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(626), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(627), + [aux_sym_table_repeat1] = STATE(72), + [aux_sym_footnote_content_repeat1] = STATE(28), + [aux_sym__block_quote_prefix_repeat1] = STATE(308), + [aux_sym__inline_repeat1] = STATE(381), + [anon_sym_LBRACK] = ACTIONS(73), + [anon_sym_PIPE] = ACTIONS(75), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(77), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(228), - [sym__heading_begin] = ACTIONS(230), + [sym__block_close] = ACTIONS(385), + [sym__newline] = ACTIONS(236), + [sym__heading_begin] = ACTIONS(19), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(232), + [sym__code_block_begin] = ACTIONS(83), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -8162,116 +8549,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(234), - [sym__block_quote_continuation] = ACTIONS(236), - [sym__thematic_break_dash] = ACTIONS(238), - [sym__thematic_break_star] = ACTIONS(238), + [sym__block_quote_begin] = ACTIONS(85), + [sym__block_quote_continuation] = ACTIONS(238), + [sym__thematic_break_dash] = ACTIONS(87), + [sym__thematic_break_star] = ACTIONS(87), }, [28] = { - [sym__block_with_heading] = STATE(159), - [sym__block_element] = STATE(159), - [sym_heading] = STATE(159), - [sym_list] = STATE(159), - [sym__list_dash] = STATE(223), - [sym__list_item_dash] = STATE(634), - [sym__list_plus] = STATE(223), - [sym__list_item_plus] = STATE(651), - [sym__list_star] = STATE(223), - [sym__list_item_star] = STATE(697), - [sym__list_task] = STATE(223), - [sym__list_item_task] = STATE(707), - [sym_list_marker_task] = STATE(47), - [sym__list_definition] = STATE(223), - [sym__list_item_definition] = STATE(736), - [sym__list_decimal_period] = STATE(223), - [sym__list_item_decimal_period] = STATE(795), - [sym__list_decimal_paren] = STATE(223), - [sym__list_item_decimal_paren] = STATE(848), - [sym__list_decimal_parens] = STATE(223), - [sym__list_item_decimal_parens] = STATE(772), - [sym__list_lower_alpha_period] = STATE(223), - [sym__list_item_lower_alpha_period] = STATE(787), - [sym__list_lower_alpha_paren] = STATE(223), - [sym__list_item_lower_alpha_paren] = STATE(792), - [sym__list_lower_alpha_parens] = STATE(223), - [sym__list_item_lower_alpha_parens] = STATE(793), - [sym__list_upper_alpha_period] = STATE(223), - [sym__list_item_upper_alpha_period] = STATE(797), - [sym__list_upper_alpha_paren] = STATE(223), - [sym__list_item_upper_alpha_paren] = STATE(798), - [sym__list_upper_alpha_parens] = STATE(223), - [sym__list_item_upper_alpha_parens] = STATE(799), - [sym__list_lower_roman_period] = STATE(223), - [sym__list_item_lower_roman_period] = STATE(801), - [sym__list_lower_roman_paren] = STATE(223), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(223), - [sym__list_item_lower_roman_parens] = STATE(814), - [sym__list_upper_roman_period] = STATE(223), - [sym__list_item_upper_roman_period] = STATE(818), - [sym__list_upper_roman_paren] = STATE(223), - [sym__list_item_upper_roman_paren] = STATE(819), - [sym__list_upper_roman_parens] = STATE(223), - [sym__list_item_upper_roman_parens] = STATE(822), - [sym_table] = STATE(159), - [sym__table_content] = STATE(65), - [sym_table_separator] = STATE(65), - [sym_table_row] = STATE(70), - [sym_footnote] = STATE(159), - [sym_footnote_marker_begin] = STATE(1122), - [sym_footnote_content] = STATE(1034), - [sym_div] = STATE(159), - [sym__div_marker_begin] = STATE(1053), - [sym_code_block] = STATE(159), - [sym_raw_block] = STATE(159), - [sym_thematic_break] = STATE(159), - [sym_block_quote] = STATE(159), - [sym__block_quote_prefix] = STATE(291), - [sym_link_reference_definition] = STATE(159), - [sym_block_attribute] = STATE(159), - [sym__paragraph] = STATE(159), - [sym__paragraph_content] = STATE(812), - [sym__paragraph_inline_content] = STATE(930), - [sym__inline] = STATE(695), - [sym__symbol_fallback] = STATE(358), - [aux_sym__list_dash_repeat1] = STATE(424), - [aux_sym__list_plus_repeat1] = STATE(425), - [aux_sym__list_star_repeat1] = STATE(427), - [aux_sym__list_task_repeat1] = STATE(409), - [aux_sym__list_definition_repeat1] = STATE(577), - [aux_sym__list_decimal_period_repeat1] = STATE(578), - [aux_sym__list_decimal_paren_repeat1] = STATE(579), - [aux_sym__list_decimal_parens_repeat1] = STATE(580), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(581), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(582), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(583), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(584), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(585), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(586), - [aux_sym__list_lower_roman_period_repeat1] = STATE(587), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(588), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(589), - [aux_sym__list_upper_roman_period_repeat1] = STATE(590), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(591), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(592), - [aux_sym_table_repeat1] = STATE(65), + [sym__block_with_heading] = STATE(260), + [sym__block_element] = STATE(260), + [sym_heading] = STATE(260), + [sym_list] = STATE(260), + [sym__list_dash] = STATE(166), + [sym__list_item_dash] = STATE(727), + [sym__list_plus] = STATE(166), + [sym__list_item_plus] = STATE(730), + [sym__list_star] = STATE(166), + [sym__list_item_star] = STATE(759), + [sym__list_task] = STATE(166), + [sym__list_item_task] = STATE(761), + [sym_list_marker_task] = STATE(46), + [sym__list_definition] = STATE(166), + [sym__list_item_definition] = STATE(819), + [sym__list_decimal_period] = STATE(166), + [sym__list_item_decimal_period] = STATE(852), + [sym__list_decimal_paren] = STATE(166), + [sym__list_item_decimal_paren] = STATE(837), + [sym__list_decimal_parens] = STATE(166), + [sym__list_item_decimal_parens] = STATE(815), + [sym__list_lower_alpha_period] = STATE(166), + [sym__list_item_lower_alpha_period] = STATE(843), + [sym__list_lower_alpha_paren] = STATE(166), + [sym__list_item_lower_alpha_paren] = STATE(850), + [sym__list_lower_alpha_parens] = STATE(166), + [sym__list_item_lower_alpha_parens] = STATE(853), + [sym__list_upper_alpha_period] = STATE(166), + [sym__list_item_upper_alpha_period] = STATE(854), + [sym__list_upper_alpha_paren] = STATE(166), + [sym__list_item_upper_alpha_paren] = STATE(855), + [sym__list_upper_alpha_parens] = STATE(166), + [sym__list_item_upper_alpha_parens] = STATE(856), + [sym__list_lower_roman_period] = STATE(166), + [sym__list_item_lower_roman_period] = STATE(857), + [sym__list_lower_roman_paren] = STATE(166), + [sym__list_item_lower_roman_paren] = STATE(871), + [sym__list_lower_roman_parens] = STATE(166), + [sym__list_item_lower_roman_parens] = STATE(874), + [sym__list_upper_roman_period] = STATE(166), + [sym__list_item_upper_roman_period] = STATE(876), + [sym__list_upper_roman_paren] = STATE(166), + [sym__list_item_upper_roman_paren] = STATE(878), + [sym__list_upper_roman_parens] = STATE(166), + [sym__list_item_upper_roman_parens] = STATE(880), + [sym_table] = STATE(260), + [sym__table_content] = STATE(72), + [sym_table_separator] = STATE(72), + [sym_table_row] = STATE(79), + [sym_footnote] = STATE(260), + [sym_footnote_marker_begin] = STATE(1302), + [sym_div] = STATE(260), + [sym__div_marker_begin] = STATE(1165), + [sym_code_block] = STATE(260), + [sym_raw_block] = STATE(260), + [sym_thematic_break] = STATE(260), + [sym_block_quote] = STATE(260), + [sym__block_quote_prefix] = STATE(296), + [sym_link_reference_definition] = STATE(260), + [sym_block_attribute] = STATE(260), + [sym__paragraph] = STATE(260), + [sym__paragraph_content] = STATE(848), + [sym__paragraph_inline_content] = STATE(896), + [sym__inline] = STATE(715), + [sym__symbol_fallback] = STATE(381), + [aux_sym__list_dash_repeat1] = STATE(454), + [aux_sym__list_plus_repeat1] = STATE(455), + [aux_sym__list_star_repeat1] = STATE(456), + [aux_sym__list_task_repeat1] = STATE(436), + [aux_sym__list_definition_repeat1] = STATE(612), + [aux_sym__list_decimal_period_repeat1] = STATE(613), + [aux_sym__list_decimal_paren_repeat1] = STATE(614), + [aux_sym__list_decimal_parens_repeat1] = STATE(615), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(616), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(617), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(618), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(619), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(620), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(621), + [aux_sym__list_lower_roman_period_repeat1] = STATE(622), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(623), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(624), + [aux_sym__list_upper_roman_period_repeat1] = STATE(625), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(626), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(627), + [aux_sym_table_repeat1] = STATE(72), [aux_sym_footnote_content_repeat1] = STATE(16), - [aux_sym__block_quote_prefix_repeat1] = STATE(320), - [aux_sym__inline_repeat1] = STATE(358), - [anon_sym_LBRACK] = ACTIONS(222), - [anon_sym_PIPE] = ACTIONS(224), + [aux_sym__block_quote_prefix_repeat1] = STATE(308), + [aux_sym__inline_repeat1] = STATE(381), + [anon_sym_LBRACK] = ACTIONS(73), + [anon_sym_PIPE] = ACTIONS(75), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(77), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(228), - [sym__heading_begin] = ACTIONS(230), + [sym__block_close] = ACTIONS(387), + [sym__newline] = ACTIONS(236), + [sym__heading_begin] = ACTIONS(19), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(232), + [sym__code_block_begin] = ACTIONS(83), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -8292,115 +8679,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(234), - [sym__block_quote_continuation] = ACTIONS(236), - [sym__thematic_break_dash] = ACTIONS(238), - [sym__thematic_break_star] = ACTIONS(238), + [sym__block_quote_begin] = ACTIONS(85), + [sym__block_quote_continuation] = ACTIONS(238), + [sym__thematic_break_dash] = ACTIONS(87), + [sym__thematic_break_star] = ACTIONS(87), }, [29] = { - [sym__block_with_heading] = STATE(440), - [sym__block_element] = STATE(440), - [sym_heading] = STATE(440), - [sym_list] = STATE(440), - [sym__list_dash] = STATE(684), - [sym__list_item_dash] = STATE(634), - [sym__list_plus] = STATE(684), - [sym__list_item_plus] = STATE(651), - [sym__list_star] = STATE(684), - [sym__list_item_star] = STATE(697), - [sym__list_task] = STATE(684), - [sym__list_item_task] = STATE(707), - [sym_list_marker_task] = STATE(47), - [sym__list_definition] = STATE(684), - [sym__list_item_definition] = STATE(736), - [sym__list_decimal_period] = STATE(684), - [sym__list_item_decimal_period] = STATE(795), - [sym__list_decimal_paren] = STATE(684), - [sym__list_item_decimal_paren] = STATE(848), - [sym__list_decimal_parens] = STATE(684), - [sym__list_item_decimal_parens] = STATE(772), - [sym__list_lower_alpha_period] = STATE(684), - [sym__list_item_lower_alpha_period] = STATE(787), - [sym__list_lower_alpha_paren] = STATE(684), - [sym__list_item_lower_alpha_paren] = STATE(792), - [sym__list_lower_alpha_parens] = STATE(684), - [sym__list_item_lower_alpha_parens] = STATE(793), - [sym__list_upper_alpha_period] = STATE(684), - [sym__list_item_upper_alpha_period] = STATE(797), - [sym__list_upper_alpha_paren] = STATE(684), - [sym__list_item_upper_alpha_paren] = STATE(798), - [sym__list_upper_alpha_parens] = STATE(684), - [sym__list_item_upper_alpha_parens] = STATE(799), - [sym__list_lower_roman_period] = STATE(684), - [sym__list_item_lower_roman_period] = STATE(801), - [sym__list_lower_roman_paren] = STATE(684), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(684), - [sym__list_item_lower_roman_parens] = STATE(814), - [sym__list_upper_roman_period] = STATE(684), - [sym__list_item_upper_roman_period] = STATE(818), - [sym__list_upper_roman_paren] = STATE(684), - [sym__list_item_upper_roman_paren] = STATE(819), - [sym__list_upper_roman_parens] = STATE(684), - [sym__list_item_upper_roman_parens] = STATE(822), - [sym_list_item_content] = STATE(763), - [sym_table] = STATE(440), - [sym__table_content] = STATE(368), - [sym_table_separator] = STATE(368), - [sym_table_row] = STATE(389), - [sym_footnote] = STATE(440), - [sym_footnote_marker_begin] = STATE(1116), - [sym_div] = STATE(440), - [sym__div_marker_begin] = STATE(988), - [sym_code_block] = STATE(440), - [sym_raw_block] = STATE(440), - [sym_thematic_break] = STATE(440), - [sym_block_quote] = STATE(440), - [sym__block_quote_prefix] = STATE(294), - [sym_link_reference_definition] = STATE(440), - [sym_block_attribute] = STATE(440), - [sym__paragraph] = STATE(440), - [sym__paragraph_content] = STATE(932), - [sym__paragraph_inline_content] = STATE(930), - [sym__inline] = STATE(695), - [sym__symbol_fallback] = STATE(358), - [aux_sym__list_dash_repeat1] = STATE(423), - [aux_sym__list_plus_repeat1] = STATE(417), - [aux_sym__list_star_repeat1] = STATE(420), - [aux_sym__list_task_repeat1] = STATE(395), - [aux_sym__list_definition_repeat1] = STATE(510), - [aux_sym__list_decimal_period_repeat1] = STATE(511), - [aux_sym__list_decimal_paren_repeat1] = STATE(512), - [aux_sym__list_decimal_parens_repeat1] = STATE(513), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(514), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(515), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(516), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(517), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(518), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(519), - [aux_sym__list_lower_roman_period_repeat1] = STATE(520), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(521), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(522), - [aux_sym__list_upper_roman_period_repeat1] = STATE(523), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(524), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(525), - [aux_sym_table_repeat1] = STATE(368), - [aux_sym__block_quote_prefix_repeat1] = STATE(320), - [aux_sym__inline_repeat1] = STATE(358), - [anon_sym_LBRACK] = ACTIONS(385), - [anon_sym_PIPE] = ACTIONS(387), + [sym__block_with_heading] = STATE(164), + [sym__block_element] = STATE(164), + [sym_heading] = STATE(164), + [sym_list] = STATE(164), + [sym__list_dash] = STATE(228), + [sym__list_item_dash] = STATE(727), + [sym__list_plus] = STATE(228), + [sym__list_item_plus] = STATE(730), + [sym__list_star] = STATE(228), + [sym__list_item_star] = STATE(759), + [sym__list_task] = STATE(228), + [sym__list_item_task] = STATE(761), + [sym_list_marker_task] = STATE(46), + [sym__list_definition] = STATE(228), + [sym__list_item_definition] = STATE(819), + [sym__list_decimal_period] = STATE(228), + [sym__list_item_decimal_period] = STATE(852), + [sym__list_decimal_paren] = STATE(228), + [sym__list_item_decimal_paren] = STATE(837), + [sym__list_decimal_parens] = STATE(228), + [sym__list_item_decimal_parens] = STATE(815), + [sym__list_lower_alpha_period] = STATE(228), + [sym__list_item_lower_alpha_period] = STATE(843), + [sym__list_lower_alpha_paren] = STATE(228), + [sym__list_item_lower_alpha_paren] = STATE(850), + [sym__list_lower_alpha_parens] = STATE(228), + [sym__list_item_lower_alpha_parens] = STATE(853), + [sym__list_upper_alpha_period] = STATE(228), + [sym__list_item_upper_alpha_period] = STATE(854), + [sym__list_upper_alpha_paren] = STATE(228), + [sym__list_item_upper_alpha_paren] = STATE(855), + [sym__list_upper_alpha_parens] = STATE(228), + [sym__list_item_upper_alpha_parens] = STATE(856), + [sym__list_lower_roman_period] = STATE(228), + [sym__list_item_lower_roman_period] = STATE(857), + [sym__list_lower_roman_paren] = STATE(228), + [sym__list_item_lower_roman_paren] = STATE(871), + [sym__list_lower_roman_parens] = STATE(228), + [sym__list_item_lower_roman_parens] = STATE(874), + [sym__list_upper_roman_period] = STATE(228), + [sym__list_item_upper_roman_period] = STATE(876), + [sym__list_upper_roman_paren] = STATE(228), + [sym__list_item_upper_roman_paren] = STATE(878), + [sym__list_upper_roman_parens] = STATE(228), + [sym__list_item_upper_roman_parens] = STATE(880), + [sym_table] = STATE(164), + [sym__table_content] = STATE(73), + [sym_table_separator] = STATE(73), + [sym_table_row] = STATE(77), + [sym_footnote] = STATE(164), + [sym_footnote_marker_begin] = STATE(1306), + [sym_footnote_content] = STATE(1123), + [sym_div] = STATE(164), + [sym__div_marker_begin] = STATE(1210), + [sym_code_block] = STATE(164), + [sym_raw_block] = STATE(164), + [sym_thematic_break] = STATE(164), + [sym_block_quote] = STATE(164), + [sym__block_quote_prefix] = STATE(301), + [sym_link_reference_definition] = STATE(164), + [sym_block_attribute] = STATE(164), + [sym__paragraph] = STATE(164), + [sym__paragraph_content] = STATE(889), + [sym__paragraph_inline_content] = STATE(896), + [sym__inline] = STATE(715), + [sym__symbol_fallback] = STATE(381), + [aux_sym__list_dash_repeat1] = STATE(445), + [aux_sym__list_plus_repeat1] = STATE(446), + [aux_sym__list_star_repeat1] = STATE(447), + [aux_sym__list_task_repeat1] = STATE(423), + [aux_sym__list_definition_repeat1] = STATE(655), + [aux_sym__list_decimal_period_repeat1] = STATE(656), + [aux_sym__list_decimal_paren_repeat1] = STATE(657), + [aux_sym__list_decimal_parens_repeat1] = STATE(658), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(659), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(660), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(661), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(662), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(663), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(664), + [aux_sym__list_lower_roman_period_repeat1] = STATE(665), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(666), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(667), + [aux_sym__list_upper_roman_period_repeat1] = STATE(668), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(669), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(670), + [aux_sym_table_repeat1] = STATE(73), + [aux_sym_footnote_content_repeat1] = STATE(17), + [aux_sym__block_quote_prefix_repeat1] = STATE(330), + [aux_sym__inline_repeat1] = STATE(381), + [anon_sym_LBRACK] = ACTIONS(216), + [anon_sym_PIPE] = ACTIONS(218), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(220), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(391), - [sym__heading_begin] = ACTIONS(393), + [sym__newline] = ACTIONS(222), + [sym__heading_begin] = ACTIONS(224), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(395), + [sym__code_block_begin] = ACTIONS(226), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -8421,115 +8809,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(397), - [sym__block_quote_continuation] = ACTIONS(399), - [sym__thematic_break_dash] = ACTIONS(401), - [sym__thematic_break_star] = ACTIONS(401), + [sym__block_quote_begin] = ACTIONS(228), + [sym__block_quote_continuation] = ACTIONS(230), + [sym__thematic_break_dash] = ACTIONS(232), + [sym__thematic_break_star] = ACTIONS(232), }, [30] = { - [sym__block_with_heading] = STATE(486), - [sym__block_element] = STATE(486), - [sym_heading] = STATE(486), - [sym_list] = STATE(486), - [sym__list_dash] = STATE(684), - [sym__list_item_dash] = STATE(634), - [sym__list_plus] = STATE(684), - [sym__list_item_plus] = STATE(651), - [sym__list_star] = STATE(684), - [sym__list_item_star] = STATE(697), - [sym__list_task] = STATE(684), - [sym__list_item_task] = STATE(707), - [sym_list_marker_task] = STATE(47), - [sym__list_definition] = STATE(684), - [sym__list_item_definition] = STATE(736), - [sym__list_decimal_period] = STATE(684), - [sym__list_item_decimal_period] = STATE(795), - [sym__list_decimal_paren] = STATE(684), - [sym__list_item_decimal_paren] = STATE(848), - [sym__list_decimal_parens] = STATE(684), - [sym__list_item_decimal_parens] = STATE(772), - [sym__list_lower_alpha_period] = STATE(684), - [sym__list_item_lower_alpha_period] = STATE(787), - [sym__list_lower_alpha_paren] = STATE(684), - [sym__list_item_lower_alpha_paren] = STATE(792), - [sym__list_lower_alpha_parens] = STATE(684), - [sym__list_item_lower_alpha_parens] = STATE(793), - [sym__list_upper_alpha_period] = STATE(684), - [sym__list_item_upper_alpha_period] = STATE(797), - [sym__list_upper_alpha_paren] = STATE(684), - [sym__list_item_upper_alpha_paren] = STATE(798), - [sym__list_upper_alpha_parens] = STATE(684), - [sym__list_item_upper_alpha_parens] = STATE(799), - [sym__list_lower_roman_period] = STATE(684), - [sym__list_item_lower_roman_period] = STATE(801), - [sym__list_lower_roman_paren] = STATE(684), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(684), - [sym__list_item_lower_roman_parens] = STATE(814), - [sym__list_upper_roman_period] = STATE(684), - [sym__list_item_upper_roman_period] = STATE(818), - [sym__list_upper_roman_paren] = STATE(684), - [sym__list_item_upper_roman_paren] = STATE(819), - [sym__list_upper_roman_parens] = STATE(684), - [sym__list_item_upper_roman_parens] = STATE(822), - [sym_list_item_content] = STATE(739), - [sym_table] = STATE(486), - [sym__table_content] = STATE(368), - [sym_table_separator] = STATE(368), - [sym_table_row] = STATE(389), - [sym_footnote] = STATE(486), - [sym_footnote_marker_begin] = STATE(1116), - [sym_div] = STATE(486), - [sym__div_marker_begin] = STATE(988), - [sym_code_block] = STATE(486), - [sym_raw_block] = STATE(486), - [sym_thematic_break] = STATE(486), - [sym_block_quote] = STATE(486), - [sym__block_quote_prefix] = STATE(294), - [sym_link_reference_definition] = STATE(486), - [sym_block_attribute] = STATE(486), - [sym__paragraph] = STATE(486), - [sym__paragraph_content] = STATE(932), - [sym__paragraph_inline_content] = STATE(930), - [sym__inline] = STATE(695), - [sym__symbol_fallback] = STATE(358), - [aux_sym__list_dash_repeat1] = STATE(423), - [aux_sym__list_plus_repeat1] = STATE(417), - [aux_sym__list_star_repeat1] = STATE(420), - [aux_sym__list_task_repeat1] = STATE(395), - [aux_sym__list_definition_repeat1] = STATE(510), - [aux_sym__list_decimal_period_repeat1] = STATE(511), - [aux_sym__list_decimal_paren_repeat1] = STATE(512), - [aux_sym__list_decimal_parens_repeat1] = STATE(513), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(514), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(515), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(516), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(517), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(518), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(519), - [aux_sym__list_lower_roman_period_repeat1] = STATE(520), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(521), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(522), - [aux_sym__list_upper_roman_period_repeat1] = STATE(523), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(524), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(525), - [aux_sym_table_repeat1] = STATE(368), - [aux_sym__block_quote_prefix_repeat1] = STATE(320), - [aux_sym__inline_repeat1] = STATE(358), - [anon_sym_LBRACK] = ACTIONS(385), - [anon_sym_PIPE] = ACTIONS(387), + [sym__block_with_heading] = STATE(164), + [sym__block_element] = STATE(164), + [sym_heading] = STATE(164), + [sym_list] = STATE(164), + [sym__list_dash] = STATE(228), + [sym__list_item_dash] = STATE(727), + [sym__list_plus] = STATE(228), + [sym__list_item_plus] = STATE(730), + [sym__list_star] = STATE(228), + [sym__list_item_star] = STATE(759), + [sym__list_task] = STATE(228), + [sym__list_item_task] = STATE(761), + [sym_list_marker_task] = STATE(46), + [sym__list_definition] = STATE(228), + [sym__list_item_definition] = STATE(819), + [sym__list_decimal_period] = STATE(228), + [sym__list_item_decimal_period] = STATE(852), + [sym__list_decimal_paren] = STATE(228), + [sym__list_item_decimal_paren] = STATE(837), + [sym__list_decimal_parens] = STATE(228), + [sym__list_item_decimal_parens] = STATE(815), + [sym__list_lower_alpha_period] = STATE(228), + [sym__list_item_lower_alpha_period] = STATE(843), + [sym__list_lower_alpha_paren] = STATE(228), + [sym__list_item_lower_alpha_paren] = STATE(850), + [sym__list_lower_alpha_parens] = STATE(228), + [sym__list_item_lower_alpha_parens] = STATE(853), + [sym__list_upper_alpha_period] = STATE(228), + [sym__list_item_upper_alpha_period] = STATE(854), + [sym__list_upper_alpha_paren] = STATE(228), + [sym__list_item_upper_alpha_paren] = STATE(855), + [sym__list_upper_alpha_parens] = STATE(228), + [sym__list_item_upper_alpha_parens] = STATE(856), + [sym__list_lower_roman_period] = STATE(228), + [sym__list_item_lower_roman_period] = STATE(857), + [sym__list_lower_roman_paren] = STATE(228), + [sym__list_item_lower_roman_paren] = STATE(871), + [sym__list_lower_roman_parens] = STATE(228), + [sym__list_item_lower_roman_parens] = STATE(874), + [sym__list_upper_roman_period] = STATE(228), + [sym__list_item_upper_roman_period] = STATE(876), + [sym__list_upper_roman_paren] = STATE(228), + [sym__list_item_upper_roman_paren] = STATE(878), + [sym__list_upper_roman_parens] = STATE(228), + [sym__list_item_upper_roman_parens] = STATE(880), + [sym_table] = STATE(164), + [sym__table_content] = STATE(73), + [sym_table_separator] = STATE(73), + [sym_table_row] = STATE(77), + [sym_footnote] = STATE(164), + [sym_footnote_marker_begin] = STATE(1306), + [sym_footnote_content] = STATE(1089), + [sym_div] = STATE(164), + [sym__div_marker_begin] = STATE(1210), + [sym_code_block] = STATE(164), + [sym_raw_block] = STATE(164), + [sym_thematic_break] = STATE(164), + [sym_block_quote] = STATE(164), + [sym__block_quote_prefix] = STATE(301), + [sym_link_reference_definition] = STATE(164), + [sym_block_attribute] = STATE(164), + [sym__paragraph] = STATE(164), + [sym__paragraph_content] = STATE(889), + [sym__paragraph_inline_content] = STATE(896), + [sym__inline] = STATE(715), + [sym__symbol_fallback] = STATE(381), + [aux_sym__list_dash_repeat1] = STATE(445), + [aux_sym__list_plus_repeat1] = STATE(446), + [aux_sym__list_star_repeat1] = STATE(447), + [aux_sym__list_task_repeat1] = STATE(423), + [aux_sym__list_definition_repeat1] = STATE(655), + [aux_sym__list_decimal_period_repeat1] = STATE(656), + [aux_sym__list_decimal_paren_repeat1] = STATE(657), + [aux_sym__list_decimal_parens_repeat1] = STATE(658), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(659), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(660), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(661), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(662), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(663), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(664), + [aux_sym__list_lower_roman_period_repeat1] = STATE(665), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(666), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(667), + [aux_sym__list_upper_roman_period_repeat1] = STATE(668), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(669), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(670), + [aux_sym_table_repeat1] = STATE(73), + [aux_sym_footnote_content_repeat1] = STATE(17), + [aux_sym__block_quote_prefix_repeat1] = STATE(330), + [aux_sym__inline_repeat1] = STATE(381), + [anon_sym_LBRACK] = ACTIONS(216), + [anon_sym_PIPE] = ACTIONS(218), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(220), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(403), - [sym__heading_begin] = ACTIONS(393), + [sym__newline] = ACTIONS(222), + [sym__heading_begin] = ACTIONS(224), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(395), + [sym__code_block_begin] = ACTIONS(226), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -8550,115 +8939,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(397), - [sym__block_quote_continuation] = ACTIONS(399), - [sym__thematic_break_dash] = ACTIONS(401), - [sym__thematic_break_star] = ACTIONS(401), + [sym__block_quote_begin] = ACTIONS(228), + [sym__block_quote_continuation] = ACTIONS(230), + [sym__thematic_break_dash] = ACTIONS(232), + [sym__thematic_break_star] = ACTIONS(232), }, [31] = { - [sym__block_with_heading] = STATE(460), - [sym__block_element] = STATE(460), - [sym_heading] = STATE(460), - [sym_list] = STATE(460), - [sym__list_dash] = STATE(684), - [sym__list_item_dash] = STATE(634), - [sym__list_plus] = STATE(684), - [sym__list_item_plus] = STATE(651), - [sym__list_star] = STATE(684), - [sym__list_item_star] = STATE(697), - [sym__list_task] = STATE(684), - [sym__list_item_task] = STATE(707), - [sym_list_marker_task] = STATE(47), - [sym__list_definition] = STATE(684), - [sym__list_item_definition] = STATE(736), - [sym__list_decimal_period] = STATE(684), - [sym__list_item_decimal_period] = STATE(795), - [sym__list_decimal_paren] = STATE(684), - [sym__list_item_decimal_paren] = STATE(848), - [sym__list_decimal_parens] = STATE(684), - [sym__list_item_decimal_parens] = STATE(772), - [sym__list_lower_alpha_period] = STATE(684), - [sym__list_item_lower_alpha_period] = STATE(787), - [sym__list_lower_alpha_paren] = STATE(684), - [sym__list_item_lower_alpha_paren] = STATE(792), - [sym__list_lower_alpha_parens] = STATE(684), - [sym__list_item_lower_alpha_parens] = STATE(793), - [sym__list_upper_alpha_period] = STATE(684), - [sym__list_item_upper_alpha_period] = STATE(797), - [sym__list_upper_alpha_paren] = STATE(684), - [sym__list_item_upper_alpha_paren] = STATE(798), - [sym__list_upper_alpha_parens] = STATE(684), - [sym__list_item_upper_alpha_parens] = STATE(799), - [sym__list_lower_roman_period] = STATE(684), - [sym__list_item_lower_roman_period] = STATE(801), - [sym__list_lower_roman_paren] = STATE(684), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(684), - [sym__list_item_lower_roman_parens] = STATE(814), - [sym__list_upper_roman_period] = STATE(684), - [sym__list_item_upper_roman_period] = STATE(818), - [sym__list_upper_roman_paren] = STATE(684), - [sym__list_item_upper_roman_paren] = STATE(819), - [sym__list_upper_roman_parens] = STATE(684), - [sym__list_item_upper_roman_parens] = STATE(822), - [sym_list_item_content] = STATE(652), - [sym_table] = STATE(460), - [sym__table_content] = STATE(368), - [sym_table_separator] = STATE(368), - [sym_table_row] = STATE(389), - [sym_footnote] = STATE(460), - [sym_footnote_marker_begin] = STATE(1116), - [sym_div] = STATE(460), - [sym__div_marker_begin] = STATE(988), - [sym_code_block] = STATE(460), - [sym_raw_block] = STATE(460), - [sym_thematic_break] = STATE(460), - [sym_block_quote] = STATE(460), - [sym__block_quote_prefix] = STATE(294), - [sym_link_reference_definition] = STATE(460), - [sym_block_attribute] = STATE(460), - [sym__paragraph] = STATE(460), - [sym__paragraph_content] = STATE(932), - [sym__paragraph_inline_content] = STATE(930), - [sym__inline] = STATE(695), - [sym__symbol_fallback] = STATE(358), - [aux_sym__list_dash_repeat1] = STATE(423), - [aux_sym__list_plus_repeat1] = STATE(417), - [aux_sym__list_star_repeat1] = STATE(420), - [aux_sym__list_task_repeat1] = STATE(395), - [aux_sym__list_definition_repeat1] = STATE(510), - [aux_sym__list_decimal_period_repeat1] = STATE(511), - [aux_sym__list_decimal_paren_repeat1] = STATE(512), - [aux_sym__list_decimal_parens_repeat1] = STATE(513), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(514), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(515), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(516), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(517), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(518), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(519), - [aux_sym__list_lower_roman_period_repeat1] = STATE(520), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(521), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(522), - [aux_sym__list_upper_roman_period_repeat1] = STATE(523), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(524), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(525), - [aux_sym_table_repeat1] = STATE(368), - [aux_sym__block_quote_prefix_repeat1] = STATE(320), - [aux_sym__inline_repeat1] = STATE(358), - [anon_sym_LBRACK] = ACTIONS(385), - [anon_sym_PIPE] = ACTIONS(387), + [sym__block_with_heading] = STATE(164), + [sym__block_element] = STATE(164), + [sym_heading] = STATE(164), + [sym_list] = STATE(164), + [sym__list_dash] = STATE(228), + [sym__list_item_dash] = STATE(727), + [sym__list_plus] = STATE(228), + [sym__list_item_plus] = STATE(730), + [sym__list_star] = STATE(228), + [sym__list_item_star] = STATE(759), + [sym__list_task] = STATE(228), + [sym__list_item_task] = STATE(761), + [sym_list_marker_task] = STATE(46), + [sym__list_definition] = STATE(228), + [sym__list_item_definition] = STATE(819), + [sym__list_decimal_period] = STATE(228), + [sym__list_item_decimal_period] = STATE(852), + [sym__list_decimal_paren] = STATE(228), + [sym__list_item_decimal_paren] = STATE(837), + [sym__list_decimal_parens] = STATE(228), + [sym__list_item_decimal_parens] = STATE(815), + [sym__list_lower_alpha_period] = STATE(228), + [sym__list_item_lower_alpha_period] = STATE(843), + [sym__list_lower_alpha_paren] = STATE(228), + [sym__list_item_lower_alpha_paren] = STATE(850), + [sym__list_lower_alpha_parens] = STATE(228), + [sym__list_item_lower_alpha_parens] = STATE(853), + [sym__list_upper_alpha_period] = STATE(228), + [sym__list_item_upper_alpha_period] = STATE(854), + [sym__list_upper_alpha_paren] = STATE(228), + [sym__list_item_upper_alpha_paren] = STATE(855), + [sym__list_upper_alpha_parens] = STATE(228), + [sym__list_item_upper_alpha_parens] = STATE(856), + [sym__list_lower_roman_period] = STATE(228), + [sym__list_item_lower_roman_period] = STATE(857), + [sym__list_lower_roman_paren] = STATE(228), + [sym__list_item_lower_roman_paren] = STATE(871), + [sym__list_lower_roman_parens] = STATE(228), + [sym__list_item_lower_roman_parens] = STATE(874), + [sym__list_upper_roman_period] = STATE(228), + [sym__list_item_upper_roman_period] = STATE(876), + [sym__list_upper_roman_paren] = STATE(228), + [sym__list_item_upper_roman_paren] = STATE(878), + [sym__list_upper_roman_parens] = STATE(228), + [sym__list_item_upper_roman_parens] = STATE(880), + [sym_table] = STATE(164), + [sym__table_content] = STATE(73), + [sym_table_separator] = STATE(73), + [sym_table_row] = STATE(77), + [sym_footnote] = STATE(164), + [sym_footnote_marker_begin] = STATE(1306), + [sym_footnote_content] = STATE(1179), + [sym_div] = STATE(164), + [sym__div_marker_begin] = STATE(1210), + [sym_code_block] = STATE(164), + [sym_raw_block] = STATE(164), + [sym_thematic_break] = STATE(164), + [sym_block_quote] = STATE(164), + [sym__block_quote_prefix] = STATE(301), + [sym_link_reference_definition] = STATE(164), + [sym_block_attribute] = STATE(164), + [sym__paragraph] = STATE(164), + [sym__paragraph_content] = STATE(889), + [sym__paragraph_inline_content] = STATE(896), + [sym__inline] = STATE(715), + [sym__symbol_fallback] = STATE(381), + [aux_sym__list_dash_repeat1] = STATE(445), + [aux_sym__list_plus_repeat1] = STATE(446), + [aux_sym__list_star_repeat1] = STATE(447), + [aux_sym__list_task_repeat1] = STATE(423), + [aux_sym__list_definition_repeat1] = STATE(655), + [aux_sym__list_decimal_period_repeat1] = STATE(656), + [aux_sym__list_decimal_paren_repeat1] = STATE(657), + [aux_sym__list_decimal_parens_repeat1] = STATE(658), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(659), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(660), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(661), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(662), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(663), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(664), + [aux_sym__list_lower_roman_period_repeat1] = STATE(665), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(666), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(667), + [aux_sym__list_upper_roman_period_repeat1] = STATE(668), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(669), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(670), + [aux_sym_table_repeat1] = STATE(73), + [aux_sym_footnote_content_repeat1] = STATE(17), + [aux_sym__block_quote_prefix_repeat1] = STATE(330), + [aux_sym__inline_repeat1] = STATE(381), + [anon_sym_LBRACK] = ACTIONS(216), + [anon_sym_PIPE] = ACTIONS(218), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(220), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(405), - [sym__heading_begin] = ACTIONS(393), + [sym__newline] = ACTIONS(222), + [sym__heading_begin] = ACTIONS(224), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(395), + [sym__code_block_begin] = ACTIONS(226), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -8679,115 +9069,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(397), - [sym__block_quote_continuation] = ACTIONS(399), - [sym__thematic_break_dash] = ACTIONS(401), - [sym__thematic_break_star] = ACTIONS(401), + [sym__block_quote_begin] = ACTIONS(228), + [sym__block_quote_continuation] = ACTIONS(230), + [sym__thematic_break_dash] = ACTIONS(232), + [sym__thematic_break_star] = ACTIONS(232), }, [32] = { - [sym__block_with_heading] = STATE(473), - [sym__block_element] = STATE(473), - [sym_heading] = STATE(473), - [sym_list] = STATE(473), - [sym__list_dash] = STATE(684), - [sym__list_item_dash] = STATE(634), - [sym__list_plus] = STATE(684), - [sym__list_item_plus] = STATE(651), - [sym__list_star] = STATE(684), - [sym__list_item_star] = STATE(697), - [sym__list_task] = STATE(684), - [sym__list_item_task] = STATE(707), - [sym_list_marker_task] = STATE(47), - [sym__list_definition] = STATE(684), - [sym__list_item_definition] = STATE(736), - [sym__list_decimal_period] = STATE(684), - [sym__list_item_decimal_period] = STATE(795), - [sym__list_decimal_paren] = STATE(684), - [sym__list_item_decimal_paren] = STATE(848), - [sym__list_decimal_parens] = STATE(684), - [sym__list_item_decimal_parens] = STATE(772), - [sym__list_lower_alpha_period] = STATE(684), - [sym__list_item_lower_alpha_period] = STATE(787), - [sym__list_lower_alpha_paren] = STATE(684), - [sym__list_item_lower_alpha_paren] = STATE(792), - [sym__list_lower_alpha_parens] = STATE(684), - [sym__list_item_lower_alpha_parens] = STATE(793), - [sym__list_upper_alpha_period] = STATE(684), - [sym__list_item_upper_alpha_period] = STATE(797), - [sym__list_upper_alpha_paren] = STATE(684), - [sym__list_item_upper_alpha_paren] = STATE(798), - [sym__list_upper_alpha_parens] = STATE(684), - [sym__list_item_upper_alpha_parens] = STATE(799), - [sym__list_lower_roman_period] = STATE(684), - [sym__list_item_lower_roman_period] = STATE(801), - [sym__list_lower_roman_paren] = STATE(684), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(684), - [sym__list_item_lower_roman_parens] = STATE(814), - [sym__list_upper_roman_period] = STATE(684), - [sym__list_item_upper_roman_period] = STATE(818), - [sym__list_upper_roman_paren] = STATE(684), - [sym__list_item_upper_roman_paren] = STATE(819), - [sym__list_upper_roman_parens] = STATE(684), - [sym__list_item_upper_roman_parens] = STATE(822), - [sym_list_item_content] = STATE(653), - [sym_table] = STATE(473), - [sym__table_content] = STATE(368), - [sym_table_separator] = STATE(368), - [sym_table_row] = STATE(389), - [sym_footnote] = STATE(473), - [sym_footnote_marker_begin] = STATE(1116), - [sym_div] = STATE(473), - [sym__div_marker_begin] = STATE(988), - [sym_code_block] = STATE(473), - [sym_raw_block] = STATE(473), - [sym_thematic_break] = STATE(473), - [sym_block_quote] = STATE(473), - [sym__block_quote_prefix] = STATE(294), - [sym_link_reference_definition] = STATE(473), - [sym_block_attribute] = STATE(473), - [sym__paragraph] = STATE(473), - [sym__paragraph_content] = STATE(932), - [sym__paragraph_inline_content] = STATE(930), - [sym__inline] = STATE(695), - [sym__symbol_fallback] = STATE(358), - [aux_sym__list_dash_repeat1] = STATE(423), - [aux_sym__list_plus_repeat1] = STATE(417), - [aux_sym__list_star_repeat1] = STATE(420), - [aux_sym__list_task_repeat1] = STATE(395), - [aux_sym__list_definition_repeat1] = STATE(510), - [aux_sym__list_decimal_period_repeat1] = STATE(511), - [aux_sym__list_decimal_paren_repeat1] = STATE(512), - [aux_sym__list_decimal_parens_repeat1] = STATE(513), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(514), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(515), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(516), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(517), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(518), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(519), - [aux_sym__list_lower_roman_period_repeat1] = STATE(520), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(521), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(522), - [aux_sym__list_upper_roman_period_repeat1] = STATE(523), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(524), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(525), - [aux_sym_table_repeat1] = STATE(368), - [aux_sym__block_quote_prefix_repeat1] = STATE(320), - [aux_sym__inline_repeat1] = STATE(358), - [anon_sym_LBRACK] = ACTIONS(385), - [anon_sym_PIPE] = ACTIONS(387), + [sym__block_with_heading] = STATE(1237), + [sym__block_element] = STATE(1237), + [sym_heading] = STATE(1237), + [sym_list] = STATE(1237), + [sym__list_dash] = STATE(1183), + [sym__list_item_dash] = STATE(727), + [sym__list_plus] = STATE(1183), + [sym__list_item_plus] = STATE(730), + [sym__list_star] = STATE(1183), + [sym__list_item_star] = STATE(759), + [sym__list_task] = STATE(1183), + [sym__list_item_task] = STATE(761), + [sym_list_marker_task] = STATE(46), + [sym__list_definition] = STATE(1183), + [sym__list_item_definition] = STATE(819), + [sym__list_decimal_period] = STATE(1183), + [sym__list_item_decimal_period] = STATE(852), + [sym__list_decimal_paren] = STATE(1183), + [sym__list_item_decimal_paren] = STATE(837), + [sym__list_decimal_parens] = STATE(1183), + [sym__list_item_decimal_parens] = STATE(815), + [sym__list_lower_alpha_period] = STATE(1183), + [sym__list_item_lower_alpha_period] = STATE(843), + [sym__list_lower_alpha_paren] = STATE(1183), + [sym__list_item_lower_alpha_paren] = STATE(850), + [sym__list_lower_alpha_parens] = STATE(1183), + [sym__list_item_lower_alpha_parens] = STATE(853), + [sym__list_upper_alpha_period] = STATE(1183), + [sym__list_item_upper_alpha_period] = STATE(854), + [sym__list_upper_alpha_paren] = STATE(1183), + [sym__list_item_upper_alpha_paren] = STATE(855), + [sym__list_upper_alpha_parens] = STATE(1183), + [sym__list_item_upper_alpha_parens] = STATE(856), + [sym__list_lower_roman_period] = STATE(1183), + [sym__list_item_lower_roman_period] = STATE(857), + [sym__list_lower_roman_paren] = STATE(1183), + [sym__list_item_lower_roman_paren] = STATE(871), + [sym__list_lower_roman_parens] = STATE(1183), + [sym__list_item_lower_roman_parens] = STATE(874), + [sym__list_upper_roman_period] = STATE(1183), + [sym__list_item_upper_roman_period] = STATE(876), + [sym__list_upper_roman_paren] = STATE(1183), + [sym__list_item_upper_roman_paren] = STATE(878), + [sym__list_upper_roman_parens] = STATE(1183), + [sym__list_item_upper_roman_parens] = STATE(880), + [sym_list_item_content] = STATE(822), + [sym_table] = STATE(1237), + [sym__table_content] = STATE(406), + [sym_table_separator] = STATE(406), + [sym_table_row] = STATE(417), + [sym_footnote] = STATE(1237), + [sym_footnote_marker_begin] = STATE(1298), + [sym_div] = STATE(1237), + [sym__div_marker_begin] = STATE(1119), + [sym_code_block] = STATE(1237), + [sym_raw_block] = STATE(1237), + [sym_thematic_break] = STATE(1237), + [sym_block_quote] = STATE(1237), + [sym__block_quote_prefix] = STATE(300), + [sym_link_reference_definition] = STATE(1237), + [sym_block_attribute] = STATE(1237), + [sym__paragraph] = STATE(1237), + [sym__paragraph_content] = STATE(799), + [sym__paragraph_inline_content] = STATE(896), + [sym__inline] = STATE(715), + [sym__symbol_fallback] = STATE(381), + [aux_sym__list_dash_repeat1] = STATE(453), + [aux_sym__list_plus_repeat1] = STATE(458), + [aux_sym__list_star_repeat1] = STATE(463), + [aux_sym__list_task_repeat1] = STATE(440), + [aux_sym__list_definition_repeat1] = STATE(562), + [aux_sym__list_decimal_period_repeat1] = STATE(563), + [aux_sym__list_decimal_paren_repeat1] = STATE(542), + [aux_sym__list_decimal_parens_repeat1] = STATE(564), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(565), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(566), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(567), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(568), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(569), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(570), + [aux_sym__list_lower_roman_period_repeat1] = STATE(571), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(572), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(573), + [aux_sym__list_upper_roman_period_repeat1] = STATE(574), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(575), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(576), + [aux_sym_table_repeat1] = STATE(406), + [aux_sym__block_quote_prefix_repeat1] = STATE(330), + [aux_sym__inline_repeat1] = STATE(381), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_PIPE] = ACTIONS(391), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(393), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(407), - [sym__heading_begin] = ACTIONS(393), + [sym__newline] = ACTIONS(395), + [sym__heading_begin] = ACTIONS(397), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(395), + [sym__code_block_begin] = ACTIONS(399), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -8808,115 +9198,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(397), - [sym__block_quote_continuation] = ACTIONS(399), - [sym__thematic_break_dash] = ACTIONS(401), - [sym__thematic_break_star] = ACTIONS(401), + [sym__block_quote_begin] = ACTIONS(401), + [sym__block_quote_continuation] = ACTIONS(403), + [sym__thematic_break_dash] = ACTIONS(405), + [sym__thematic_break_star] = ACTIONS(405), }, [33] = { - [sym__block_with_heading] = STATE(453), - [sym__block_element] = STATE(453), - [sym_heading] = STATE(453), - [sym_list] = STATE(453), - [sym__list_dash] = STATE(684), - [sym__list_item_dash] = STATE(634), - [sym__list_plus] = STATE(684), - [sym__list_item_plus] = STATE(651), - [sym__list_star] = STATE(684), - [sym__list_item_star] = STATE(697), - [sym__list_task] = STATE(684), - [sym__list_item_task] = STATE(707), - [sym_list_marker_task] = STATE(47), - [sym__list_definition] = STATE(684), - [sym__list_item_definition] = STATE(736), - [sym__list_decimal_period] = STATE(684), - [sym__list_item_decimal_period] = STATE(795), - [sym__list_decimal_paren] = STATE(684), - [sym__list_item_decimal_paren] = STATE(848), - [sym__list_decimal_parens] = STATE(684), - [sym__list_item_decimal_parens] = STATE(772), - [sym__list_lower_alpha_period] = STATE(684), - [sym__list_item_lower_alpha_period] = STATE(787), - [sym__list_lower_alpha_paren] = STATE(684), - [sym__list_item_lower_alpha_paren] = STATE(792), - [sym__list_lower_alpha_parens] = STATE(684), - [sym__list_item_lower_alpha_parens] = STATE(793), - [sym__list_upper_alpha_period] = STATE(684), - [sym__list_item_upper_alpha_period] = STATE(797), - [sym__list_upper_alpha_paren] = STATE(684), - [sym__list_item_upper_alpha_paren] = STATE(798), - [sym__list_upper_alpha_parens] = STATE(684), - [sym__list_item_upper_alpha_parens] = STATE(799), - [sym__list_lower_roman_period] = STATE(684), - [sym__list_item_lower_roman_period] = STATE(801), - [sym__list_lower_roman_paren] = STATE(684), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(684), - [sym__list_item_lower_roman_parens] = STATE(814), - [sym__list_upper_roman_period] = STATE(684), - [sym__list_item_upper_roman_period] = STATE(818), - [sym__list_upper_roman_paren] = STATE(684), - [sym__list_item_upper_roman_paren] = STATE(819), - [sym__list_upper_roman_parens] = STATE(684), - [sym__list_item_upper_roman_parens] = STATE(822), - [sym_list_item_content] = STATE(654), - [sym_table] = STATE(453), - [sym__table_content] = STATE(368), - [sym_table_separator] = STATE(368), - [sym_table_row] = STATE(389), - [sym_footnote] = STATE(453), - [sym_footnote_marker_begin] = STATE(1116), - [sym_div] = STATE(453), - [sym__div_marker_begin] = STATE(988), - [sym_code_block] = STATE(453), - [sym_raw_block] = STATE(453), - [sym_thematic_break] = STATE(453), - [sym_block_quote] = STATE(453), - [sym__block_quote_prefix] = STATE(294), - [sym_link_reference_definition] = STATE(453), - [sym_block_attribute] = STATE(453), - [sym__paragraph] = STATE(453), - [sym__paragraph_content] = STATE(932), - [sym__paragraph_inline_content] = STATE(930), - [sym__inline] = STATE(695), - [sym__symbol_fallback] = STATE(358), - [aux_sym__list_dash_repeat1] = STATE(423), - [aux_sym__list_plus_repeat1] = STATE(417), - [aux_sym__list_star_repeat1] = STATE(420), - [aux_sym__list_task_repeat1] = STATE(395), - [aux_sym__list_definition_repeat1] = STATE(510), - [aux_sym__list_decimal_period_repeat1] = STATE(511), - [aux_sym__list_decimal_paren_repeat1] = STATE(512), - [aux_sym__list_decimal_parens_repeat1] = STATE(513), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(514), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(515), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(516), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(517), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(518), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(519), - [aux_sym__list_lower_roman_period_repeat1] = STATE(520), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(521), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(522), - [aux_sym__list_upper_roman_period_repeat1] = STATE(523), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(524), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(525), - [aux_sym_table_repeat1] = STATE(368), - [aux_sym__block_quote_prefix_repeat1] = STATE(320), - [aux_sym__inline_repeat1] = STATE(358), - [anon_sym_LBRACK] = ACTIONS(385), - [anon_sym_PIPE] = ACTIONS(387), + [sym__block_with_heading] = STATE(1232), + [sym__block_element] = STATE(1232), + [sym_heading] = STATE(1232), + [sym_list] = STATE(1232), + [sym__list_dash] = STATE(1183), + [sym__list_item_dash] = STATE(727), + [sym__list_plus] = STATE(1183), + [sym__list_item_plus] = STATE(730), + [sym__list_star] = STATE(1183), + [sym__list_item_star] = STATE(759), + [sym__list_task] = STATE(1183), + [sym__list_item_task] = STATE(761), + [sym_list_marker_task] = STATE(46), + [sym__list_definition] = STATE(1183), + [sym__list_item_definition] = STATE(819), + [sym__list_decimal_period] = STATE(1183), + [sym__list_item_decimal_period] = STATE(852), + [sym__list_decimal_paren] = STATE(1183), + [sym__list_item_decimal_paren] = STATE(837), + [sym__list_decimal_parens] = STATE(1183), + [sym__list_item_decimal_parens] = STATE(815), + [sym__list_lower_alpha_period] = STATE(1183), + [sym__list_item_lower_alpha_period] = STATE(843), + [sym__list_lower_alpha_paren] = STATE(1183), + [sym__list_item_lower_alpha_paren] = STATE(850), + [sym__list_lower_alpha_parens] = STATE(1183), + [sym__list_item_lower_alpha_parens] = STATE(853), + [sym__list_upper_alpha_period] = STATE(1183), + [sym__list_item_upper_alpha_period] = STATE(854), + [sym__list_upper_alpha_paren] = STATE(1183), + [sym__list_item_upper_alpha_paren] = STATE(855), + [sym__list_upper_alpha_parens] = STATE(1183), + [sym__list_item_upper_alpha_parens] = STATE(856), + [sym__list_lower_roman_period] = STATE(1183), + [sym__list_item_lower_roman_period] = STATE(857), + [sym__list_lower_roman_paren] = STATE(1183), + [sym__list_item_lower_roman_paren] = STATE(871), + [sym__list_lower_roman_parens] = STATE(1183), + [sym__list_item_lower_roman_parens] = STATE(874), + [sym__list_upper_roman_period] = STATE(1183), + [sym__list_item_upper_roman_period] = STATE(876), + [sym__list_upper_roman_paren] = STATE(1183), + [sym__list_item_upper_roman_paren] = STATE(878), + [sym__list_upper_roman_parens] = STATE(1183), + [sym__list_item_upper_roman_parens] = STATE(880), + [sym_list_item_content] = STATE(798), + [sym_table] = STATE(1232), + [sym__table_content] = STATE(406), + [sym_table_separator] = STATE(406), + [sym_table_row] = STATE(417), + [sym_footnote] = STATE(1232), + [sym_footnote_marker_begin] = STATE(1298), + [sym_div] = STATE(1232), + [sym__div_marker_begin] = STATE(1119), + [sym_code_block] = STATE(1232), + [sym_raw_block] = STATE(1232), + [sym_thematic_break] = STATE(1232), + [sym_block_quote] = STATE(1232), + [sym__block_quote_prefix] = STATE(300), + [sym_link_reference_definition] = STATE(1232), + [sym_block_attribute] = STATE(1232), + [sym__paragraph] = STATE(1232), + [sym__paragraph_content] = STATE(799), + [sym__paragraph_inline_content] = STATE(896), + [sym__inline] = STATE(715), + [sym__symbol_fallback] = STATE(381), + [aux_sym__list_dash_repeat1] = STATE(453), + [aux_sym__list_plus_repeat1] = STATE(458), + [aux_sym__list_star_repeat1] = STATE(463), + [aux_sym__list_task_repeat1] = STATE(440), + [aux_sym__list_definition_repeat1] = STATE(562), + [aux_sym__list_decimal_period_repeat1] = STATE(563), + [aux_sym__list_decimal_paren_repeat1] = STATE(542), + [aux_sym__list_decimal_parens_repeat1] = STATE(564), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(565), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(566), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(567), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(568), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(569), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(570), + [aux_sym__list_lower_roman_period_repeat1] = STATE(571), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(572), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(573), + [aux_sym__list_upper_roman_period_repeat1] = STATE(574), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(575), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(576), + [aux_sym_table_repeat1] = STATE(406), + [aux_sym__block_quote_prefix_repeat1] = STATE(330), + [aux_sym__inline_repeat1] = STATE(381), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_PIPE] = ACTIONS(391), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(393), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(409), - [sym__heading_begin] = ACTIONS(393), + [sym__newline] = ACTIONS(407), + [sym__heading_begin] = ACTIONS(397), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(395), + [sym__code_block_begin] = ACTIONS(399), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -8937,115 +9327,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(397), - [sym__block_quote_continuation] = ACTIONS(399), - [sym__thematic_break_dash] = ACTIONS(401), - [sym__thematic_break_star] = ACTIONS(401), + [sym__block_quote_begin] = ACTIONS(401), + [sym__block_quote_continuation] = ACTIONS(403), + [sym__thematic_break_dash] = ACTIONS(405), + [sym__thematic_break_star] = ACTIONS(405), }, [34] = { - [sym__block_with_heading] = STATE(450), - [sym__block_element] = STATE(450), - [sym_heading] = STATE(450), - [sym_list] = STATE(450), - [sym__list_dash] = STATE(684), - [sym__list_item_dash] = STATE(634), - [sym__list_plus] = STATE(684), - [sym__list_item_plus] = STATE(651), - [sym__list_star] = STATE(684), - [sym__list_item_star] = STATE(697), - [sym__list_task] = STATE(684), - [sym__list_item_task] = STATE(707), - [sym_list_marker_task] = STATE(47), - [sym__list_definition] = STATE(684), - [sym__list_item_definition] = STATE(736), - [sym__list_decimal_period] = STATE(684), - [sym__list_item_decimal_period] = STATE(795), - [sym__list_decimal_paren] = STATE(684), - [sym__list_item_decimal_paren] = STATE(848), - [sym__list_decimal_parens] = STATE(684), - [sym__list_item_decimal_parens] = STATE(772), - [sym__list_lower_alpha_period] = STATE(684), - [sym__list_item_lower_alpha_period] = STATE(787), - [sym__list_lower_alpha_paren] = STATE(684), - [sym__list_item_lower_alpha_paren] = STATE(792), - [sym__list_lower_alpha_parens] = STATE(684), - [sym__list_item_lower_alpha_parens] = STATE(793), - [sym__list_upper_alpha_period] = STATE(684), - [sym__list_item_upper_alpha_period] = STATE(797), - [sym__list_upper_alpha_paren] = STATE(684), - [sym__list_item_upper_alpha_paren] = STATE(798), - [sym__list_upper_alpha_parens] = STATE(684), - [sym__list_item_upper_alpha_parens] = STATE(799), - [sym__list_lower_roman_period] = STATE(684), - [sym__list_item_lower_roman_period] = STATE(801), - [sym__list_lower_roman_paren] = STATE(684), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(684), - [sym__list_item_lower_roman_parens] = STATE(814), - [sym__list_upper_roman_period] = STATE(684), - [sym__list_item_upper_roman_period] = STATE(818), - [sym__list_upper_roman_paren] = STATE(684), - [sym__list_item_upper_roman_paren] = STATE(819), - [sym__list_upper_roman_parens] = STATE(684), - [sym__list_item_upper_roman_parens] = STATE(822), - [sym_list_item_content] = STATE(655), - [sym_table] = STATE(450), - [sym__table_content] = STATE(368), - [sym_table_separator] = STATE(368), - [sym_table_row] = STATE(389), - [sym_footnote] = STATE(450), - [sym_footnote_marker_begin] = STATE(1116), - [sym_div] = STATE(450), - [sym__div_marker_begin] = STATE(988), - [sym_code_block] = STATE(450), - [sym_raw_block] = STATE(450), - [sym_thematic_break] = STATE(450), - [sym_block_quote] = STATE(450), - [sym__block_quote_prefix] = STATE(294), - [sym_link_reference_definition] = STATE(450), - [sym_block_attribute] = STATE(450), - [sym__paragraph] = STATE(450), - [sym__paragraph_content] = STATE(932), - [sym__paragraph_inline_content] = STATE(930), - [sym__inline] = STATE(695), - [sym__symbol_fallback] = STATE(358), - [aux_sym__list_dash_repeat1] = STATE(423), - [aux_sym__list_plus_repeat1] = STATE(417), - [aux_sym__list_star_repeat1] = STATE(420), - [aux_sym__list_task_repeat1] = STATE(395), - [aux_sym__list_definition_repeat1] = STATE(510), - [aux_sym__list_decimal_period_repeat1] = STATE(511), - [aux_sym__list_decimal_paren_repeat1] = STATE(512), - [aux_sym__list_decimal_parens_repeat1] = STATE(513), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(514), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(515), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(516), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(517), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(518), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(519), - [aux_sym__list_lower_roman_period_repeat1] = STATE(520), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(521), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(522), - [aux_sym__list_upper_roman_period_repeat1] = STATE(523), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(524), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(525), - [aux_sym_table_repeat1] = STATE(368), - [aux_sym__block_quote_prefix_repeat1] = STATE(320), - [aux_sym__inline_repeat1] = STATE(358), - [anon_sym_LBRACK] = ACTIONS(385), - [anon_sym_PIPE] = ACTIONS(387), + [sym__block_with_heading] = STATE(1218), + [sym__block_element] = STATE(1218), + [sym_heading] = STATE(1218), + [sym_list] = STATE(1218), + [sym__list_dash] = STATE(1183), + [sym__list_item_dash] = STATE(727), + [sym__list_plus] = STATE(1183), + [sym__list_item_plus] = STATE(730), + [sym__list_star] = STATE(1183), + [sym__list_item_star] = STATE(759), + [sym__list_task] = STATE(1183), + [sym__list_item_task] = STATE(761), + [sym_list_marker_task] = STATE(46), + [sym__list_definition] = STATE(1183), + [sym__list_item_definition] = STATE(819), + [sym__list_decimal_period] = STATE(1183), + [sym__list_item_decimal_period] = STATE(852), + [sym__list_decimal_paren] = STATE(1183), + [sym__list_item_decimal_paren] = STATE(837), + [sym__list_decimal_parens] = STATE(1183), + [sym__list_item_decimal_parens] = STATE(815), + [sym__list_lower_alpha_period] = STATE(1183), + [sym__list_item_lower_alpha_period] = STATE(843), + [sym__list_lower_alpha_paren] = STATE(1183), + [sym__list_item_lower_alpha_paren] = STATE(850), + [sym__list_lower_alpha_parens] = STATE(1183), + [sym__list_item_lower_alpha_parens] = STATE(853), + [sym__list_upper_alpha_period] = STATE(1183), + [sym__list_item_upper_alpha_period] = STATE(854), + [sym__list_upper_alpha_paren] = STATE(1183), + [sym__list_item_upper_alpha_paren] = STATE(855), + [sym__list_upper_alpha_parens] = STATE(1183), + [sym__list_item_upper_alpha_parens] = STATE(856), + [sym__list_lower_roman_period] = STATE(1183), + [sym__list_item_lower_roman_period] = STATE(857), + [sym__list_lower_roman_paren] = STATE(1183), + [sym__list_item_lower_roman_paren] = STATE(871), + [sym__list_lower_roman_parens] = STATE(1183), + [sym__list_item_lower_roman_parens] = STATE(874), + [sym__list_upper_roman_period] = STATE(1183), + [sym__list_item_upper_roman_period] = STATE(876), + [sym__list_upper_roman_paren] = STATE(1183), + [sym__list_item_upper_roman_paren] = STATE(878), + [sym__list_upper_roman_parens] = STATE(1183), + [sym__list_item_upper_roman_parens] = STATE(880), + [sym_list_item_content] = STATE(776), + [sym_table] = STATE(1218), + [sym__table_content] = STATE(406), + [sym_table_separator] = STATE(406), + [sym_table_row] = STATE(417), + [sym_footnote] = STATE(1218), + [sym_footnote_marker_begin] = STATE(1298), + [sym_div] = STATE(1218), + [sym__div_marker_begin] = STATE(1119), + [sym_code_block] = STATE(1218), + [sym_raw_block] = STATE(1218), + [sym_thematic_break] = STATE(1218), + [sym_block_quote] = STATE(1218), + [sym__block_quote_prefix] = STATE(300), + [sym_link_reference_definition] = STATE(1218), + [sym_block_attribute] = STATE(1218), + [sym__paragraph] = STATE(1218), + [sym__paragraph_content] = STATE(799), + [sym__paragraph_inline_content] = STATE(896), + [sym__inline] = STATE(715), + [sym__symbol_fallback] = STATE(381), + [aux_sym__list_dash_repeat1] = STATE(453), + [aux_sym__list_plus_repeat1] = STATE(458), + [aux_sym__list_star_repeat1] = STATE(463), + [aux_sym__list_task_repeat1] = STATE(440), + [aux_sym__list_definition_repeat1] = STATE(562), + [aux_sym__list_decimal_period_repeat1] = STATE(563), + [aux_sym__list_decimal_paren_repeat1] = STATE(542), + [aux_sym__list_decimal_parens_repeat1] = STATE(564), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(565), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(566), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(567), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(568), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(569), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(570), + [aux_sym__list_lower_roman_period_repeat1] = STATE(571), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(572), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(573), + [aux_sym__list_upper_roman_period_repeat1] = STATE(574), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(575), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(576), + [aux_sym_table_repeat1] = STATE(406), + [aux_sym__block_quote_prefix_repeat1] = STATE(330), + [aux_sym__inline_repeat1] = STATE(381), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_PIPE] = ACTIONS(391), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(393), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(411), - [sym__heading_begin] = ACTIONS(393), + [sym__newline] = ACTIONS(409), + [sym__heading_begin] = ACTIONS(397), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(395), + [sym__code_block_begin] = ACTIONS(399), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -9066,115 +9456,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(397), - [sym__block_quote_continuation] = ACTIONS(399), - [sym__thematic_break_dash] = ACTIONS(401), - [sym__thematic_break_star] = ACTIONS(401), + [sym__block_quote_begin] = ACTIONS(401), + [sym__block_quote_continuation] = ACTIONS(403), + [sym__thematic_break_dash] = ACTIONS(405), + [sym__thematic_break_star] = ACTIONS(405), }, [35] = { - [sym__block_with_heading] = STATE(488), - [sym__block_element] = STATE(488), - [sym_heading] = STATE(488), - [sym_list] = STATE(488), - [sym__list_dash] = STATE(684), - [sym__list_item_dash] = STATE(634), - [sym__list_plus] = STATE(684), - [sym__list_item_plus] = STATE(651), - [sym__list_star] = STATE(684), - [sym__list_item_star] = STATE(697), - [sym__list_task] = STATE(684), - [sym__list_item_task] = STATE(707), - [sym_list_marker_task] = STATE(47), - [sym__list_definition] = STATE(684), - [sym__list_item_definition] = STATE(736), - [sym__list_decimal_period] = STATE(684), - [sym__list_item_decimal_period] = STATE(795), - [sym__list_decimal_paren] = STATE(684), - [sym__list_item_decimal_paren] = STATE(848), - [sym__list_decimal_parens] = STATE(684), - [sym__list_item_decimal_parens] = STATE(772), - [sym__list_lower_alpha_period] = STATE(684), - [sym__list_item_lower_alpha_period] = STATE(787), - [sym__list_lower_alpha_paren] = STATE(684), - [sym__list_item_lower_alpha_paren] = STATE(792), - [sym__list_lower_alpha_parens] = STATE(684), - [sym__list_item_lower_alpha_parens] = STATE(793), - [sym__list_upper_alpha_period] = STATE(684), - [sym__list_item_upper_alpha_period] = STATE(797), - [sym__list_upper_alpha_paren] = STATE(684), - [sym__list_item_upper_alpha_paren] = STATE(798), - [sym__list_upper_alpha_parens] = STATE(684), - [sym__list_item_upper_alpha_parens] = STATE(799), - [sym__list_lower_roman_period] = STATE(684), - [sym__list_item_lower_roman_period] = STATE(801), - [sym__list_lower_roman_paren] = STATE(684), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(684), - [sym__list_item_lower_roman_parens] = STATE(814), - [sym__list_upper_roman_period] = STATE(684), - [sym__list_item_upper_roman_period] = STATE(818), - [sym__list_upper_roman_paren] = STATE(684), - [sym__list_item_upper_roman_paren] = STATE(819), - [sym__list_upper_roman_parens] = STATE(684), - [sym__list_item_upper_roman_parens] = STATE(822), - [sym_list_item_content] = STATE(742), - [sym_table] = STATE(488), - [sym__table_content] = STATE(368), - [sym_table_separator] = STATE(368), - [sym_table_row] = STATE(389), - [sym_footnote] = STATE(488), - [sym_footnote_marker_begin] = STATE(1116), - [sym_div] = STATE(488), - [sym__div_marker_begin] = STATE(988), - [sym_code_block] = STATE(488), - [sym_raw_block] = STATE(488), - [sym_thematic_break] = STATE(488), - [sym_block_quote] = STATE(488), - [sym__block_quote_prefix] = STATE(294), - [sym_link_reference_definition] = STATE(488), - [sym_block_attribute] = STATE(488), - [sym__paragraph] = STATE(488), - [sym__paragraph_content] = STATE(932), - [sym__paragraph_inline_content] = STATE(930), - [sym__inline] = STATE(695), - [sym__symbol_fallback] = STATE(358), - [aux_sym__list_dash_repeat1] = STATE(423), - [aux_sym__list_plus_repeat1] = STATE(417), - [aux_sym__list_star_repeat1] = STATE(420), - [aux_sym__list_task_repeat1] = STATE(395), - [aux_sym__list_definition_repeat1] = STATE(510), - [aux_sym__list_decimal_period_repeat1] = STATE(511), - [aux_sym__list_decimal_paren_repeat1] = STATE(512), - [aux_sym__list_decimal_parens_repeat1] = STATE(513), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(514), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(515), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(516), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(517), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(518), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(519), - [aux_sym__list_lower_roman_period_repeat1] = STATE(520), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(521), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(522), - [aux_sym__list_upper_roman_period_repeat1] = STATE(523), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(524), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(525), - [aux_sym_table_repeat1] = STATE(368), - [aux_sym__block_quote_prefix_repeat1] = STATE(320), - [aux_sym__inline_repeat1] = STATE(358), - [anon_sym_LBRACK] = ACTIONS(385), - [anon_sym_PIPE] = ACTIONS(387), + [sym__block_with_heading] = STATE(1233), + [sym__block_element] = STATE(1233), + [sym_heading] = STATE(1233), + [sym_list] = STATE(1233), + [sym__list_dash] = STATE(1183), + [sym__list_item_dash] = STATE(727), + [sym__list_plus] = STATE(1183), + [sym__list_item_plus] = STATE(730), + [sym__list_star] = STATE(1183), + [sym__list_item_star] = STATE(759), + [sym__list_task] = STATE(1183), + [sym__list_item_task] = STATE(761), + [sym_list_marker_task] = STATE(46), + [sym__list_definition] = STATE(1183), + [sym__list_item_definition] = STATE(819), + [sym__list_decimal_period] = STATE(1183), + [sym__list_item_decimal_period] = STATE(852), + [sym__list_decimal_paren] = STATE(1183), + [sym__list_item_decimal_paren] = STATE(837), + [sym__list_decimal_parens] = STATE(1183), + [sym__list_item_decimal_parens] = STATE(815), + [sym__list_lower_alpha_period] = STATE(1183), + [sym__list_item_lower_alpha_period] = STATE(843), + [sym__list_lower_alpha_paren] = STATE(1183), + [sym__list_item_lower_alpha_paren] = STATE(850), + [sym__list_lower_alpha_parens] = STATE(1183), + [sym__list_item_lower_alpha_parens] = STATE(853), + [sym__list_upper_alpha_period] = STATE(1183), + [sym__list_item_upper_alpha_period] = STATE(854), + [sym__list_upper_alpha_paren] = STATE(1183), + [sym__list_item_upper_alpha_paren] = STATE(855), + [sym__list_upper_alpha_parens] = STATE(1183), + [sym__list_item_upper_alpha_parens] = STATE(856), + [sym__list_lower_roman_period] = STATE(1183), + [sym__list_item_lower_roman_period] = STATE(857), + [sym__list_lower_roman_paren] = STATE(1183), + [sym__list_item_lower_roman_paren] = STATE(871), + [sym__list_lower_roman_parens] = STATE(1183), + [sym__list_item_lower_roman_parens] = STATE(874), + [sym__list_upper_roman_period] = STATE(1183), + [sym__list_item_upper_roman_period] = STATE(876), + [sym__list_upper_roman_paren] = STATE(1183), + [sym__list_item_upper_roman_paren] = STATE(878), + [sym__list_upper_roman_parens] = STATE(1183), + [sym__list_item_upper_roman_parens] = STATE(880), + [sym_list_item_content] = STATE(801), + [sym_table] = STATE(1233), + [sym__table_content] = STATE(406), + [sym_table_separator] = STATE(406), + [sym_table_row] = STATE(417), + [sym_footnote] = STATE(1233), + [sym_footnote_marker_begin] = STATE(1298), + [sym_div] = STATE(1233), + [sym__div_marker_begin] = STATE(1119), + [sym_code_block] = STATE(1233), + [sym_raw_block] = STATE(1233), + [sym_thematic_break] = STATE(1233), + [sym_block_quote] = STATE(1233), + [sym__block_quote_prefix] = STATE(300), + [sym_link_reference_definition] = STATE(1233), + [sym_block_attribute] = STATE(1233), + [sym__paragraph] = STATE(1233), + [sym__paragraph_content] = STATE(799), + [sym__paragraph_inline_content] = STATE(896), + [sym__inline] = STATE(715), + [sym__symbol_fallback] = STATE(381), + [aux_sym__list_dash_repeat1] = STATE(453), + [aux_sym__list_plus_repeat1] = STATE(458), + [aux_sym__list_star_repeat1] = STATE(463), + [aux_sym__list_task_repeat1] = STATE(440), + [aux_sym__list_definition_repeat1] = STATE(562), + [aux_sym__list_decimal_period_repeat1] = STATE(563), + [aux_sym__list_decimal_paren_repeat1] = STATE(542), + [aux_sym__list_decimal_parens_repeat1] = STATE(564), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(565), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(566), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(567), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(568), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(569), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(570), + [aux_sym__list_lower_roman_period_repeat1] = STATE(571), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(572), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(573), + [aux_sym__list_upper_roman_period_repeat1] = STATE(574), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(575), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(576), + [aux_sym_table_repeat1] = STATE(406), + [aux_sym__block_quote_prefix_repeat1] = STATE(330), + [aux_sym__inline_repeat1] = STATE(381), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_PIPE] = ACTIONS(391), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(393), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(413), - [sym__heading_begin] = ACTIONS(393), + [sym__newline] = ACTIONS(411), + [sym__heading_begin] = ACTIONS(397), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(395), + [sym__code_block_begin] = ACTIONS(399), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -9195,115 +9585,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(397), - [sym__block_quote_continuation] = ACTIONS(399), - [sym__thematic_break_dash] = ACTIONS(401), - [sym__thematic_break_star] = ACTIONS(401), + [sym__block_quote_begin] = ACTIONS(401), + [sym__block_quote_continuation] = ACTIONS(403), + [sym__thematic_break_dash] = ACTIONS(405), + [sym__thematic_break_star] = ACTIONS(405), }, [36] = { - [sym__block_with_heading] = STATE(434), - [sym__block_element] = STATE(434), - [sym_heading] = STATE(434), - [sym_list] = STATE(434), - [sym__list_dash] = STATE(684), - [sym__list_item_dash] = STATE(634), - [sym__list_plus] = STATE(684), - [sym__list_item_plus] = STATE(651), - [sym__list_star] = STATE(684), - [sym__list_item_star] = STATE(697), - [sym__list_task] = STATE(684), - [sym__list_item_task] = STATE(707), - [sym_list_marker_task] = STATE(47), - [sym__list_definition] = STATE(684), - [sym__list_item_definition] = STATE(736), - [sym__list_decimal_period] = STATE(684), - [sym__list_item_decimal_period] = STATE(795), - [sym__list_decimal_paren] = STATE(684), - [sym__list_item_decimal_paren] = STATE(848), - [sym__list_decimal_parens] = STATE(684), - [sym__list_item_decimal_parens] = STATE(772), - [sym__list_lower_alpha_period] = STATE(684), - [sym__list_item_lower_alpha_period] = STATE(787), - [sym__list_lower_alpha_paren] = STATE(684), - [sym__list_item_lower_alpha_paren] = STATE(792), - [sym__list_lower_alpha_parens] = STATE(684), - [sym__list_item_lower_alpha_parens] = STATE(793), - [sym__list_upper_alpha_period] = STATE(684), - [sym__list_item_upper_alpha_period] = STATE(797), - [sym__list_upper_alpha_paren] = STATE(684), - [sym__list_item_upper_alpha_paren] = STATE(798), - [sym__list_upper_alpha_parens] = STATE(684), - [sym__list_item_upper_alpha_parens] = STATE(799), - [sym__list_lower_roman_period] = STATE(684), - [sym__list_item_lower_roman_period] = STATE(801), - [sym__list_lower_roman_paren] = STATE(684), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(684), - [sym__list_item_lower_roman_parens] = STATE(814), - [sym__list_upper_roman_period] = STATE(684), - [sym__list_item_upper_roman_period] = STATE(818), - [sym__list_upper_roman_paren] = STATE(684), - [sym__list_item_upper_roman_paren] = STATE(819), - [sym__list_upper_roman_parens] = STATE(684), - [sym__list_item_upper_roman_parens] = STATE(822), - [sym_list_item_content] = STATE(744), - [sym_table] = STATE(434), - [sym__table_content] = STATE(368), - [sym_table_separator] = STATE(368), - [sym_table_row] = STATE(389), - [sym_footnote] = STATE(434), - [sym_footnote_marker_begin] = STATE(1116), - [sym_div] = STATE(434), - [sym__div_marker_begin] = STATE(988), - [sym_code_block] = STATE(434), - [sym_raw_block] = STATE(434), - [sym_thematic_break] = STATE(434), - [sym_block_quote] = STATE(434), - [sym__block_quote_prefix] = STATE(294), - [sym_link_reference_definition] = STATE(434), - [sym_block_attribute] = STATE(434), - [sym__paragraph] = STATE(434), - [sym__paragraph_content] = STATE(932), - [sym__paragraph_inline_content] = STATE(930), - [sym__inline] = STATE(695), - [sym__symbol_fallback] = STATE(358), - [aux_sym__list_dash_repeat1] = STATE(423), - [aux_sym__list_plus_repeat1] = STATE(417), - [aux_sym__list_star_repeat1] = STATE(420), - [aux_sym__list_task_repeat1] = STATE(395), - [aux_sym__list_definition_repeat1] = STATE(510), - [aux_sym__list_decimal_period_repeat1] = STATE(511), - [aux_sym__list_decimal_paren_repeat1] = STATE(512), - [aux_sym__list_decimal_parens_repeat1] = STATE(513), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(514), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(515), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(516), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(517), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(518), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(519), - [aux_sym__list_lower_roman_period_repeat1] = STATE(520), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(521), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(522), - [aux_sym__list_upper_roman_period_repeat1] = STATE(523), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(524), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(525), - [aux_sym_table_repeat1] = STATE(368), - [aux_sym__block_quote_prefix_repeat1] = STATE(320), - [aux_sym__inline_repeat1] = STATE(358), - [anon_sym_LBRACK] = ACTIONS(385), - [anon_sym_PIPE] = ACTIONS(387), + [sym__block_with_heading] = STATE(1234), + [sym__block_element] = STATE(1234), + [sym_heading] = STATE(1234), + [sym_list] = STATE(1234), + [sym__list_dash] = STATE(1183), + [sym__list_item_dash] = STATE(727), + [sym__list_plus] = STATE(1183), + [sym__list_item_plus] = STATE(730), + [sym__list_star] = STATE(1183), + [sym__list_item_star] = STATE(759), + [sym__list_task] = STATE(1183), + [sym__list_item_task] = STATE(761), + [sym_list_marker_task] = STATE(46), + [sym__list_definition] = STATE(1183), + [sym__list_item_definition] = STATE(819), + [sym__list_decimal_period] = STATE(1183), + [sym__list_item_decimal_period] = STATE(852), + [sym__list_decimal_paren] = STATE(1183), + [sym__list_item_decimal_paren] = STATE(837), + [sym__list_decimal_parens] = STATE(1183), + [sym__list_item_decimal_parens] = STATE(815), + [sym__list_lower_alpha_period] = STATE(1183), + [sym__list_item_lower_alpha_period] = STATE(843), + [sym__list_lower_alpha_paren] = STATE(1183), + [sym__list_item_lower_alpha_paren] = STATE(850), + [sym__list_lower_alpha_parens] = STATE(1183), + [sym__list_item_lower_alpha_parens] = STATE(853), + [sym__list_upper_alpha_period] = STATE(1183), + [sym__list_item_upper_alpha_period] = STATE(854), + [sym__list_upper_alpha_paren] = STATE(1183), + [sym__list_item_upper_alpha_paren] = STATE(855), + [sym__list_upper_alpha_parens] = STATE(1183), + [sym__list_item_upper_alpha_parens] = STATE(856), + [sym__list_lower_roman_period] = STATE(1183), + [sym__list_item_lower_roman_period] = STATE(857), + [sym__list_lower_roman_paren] = STATE(1183), + [sym__list_item_lower_roman_paren] = STATE(871), + [sym__list_lower_roman_parens] = STATE(1183), + [sym__list_item_lower_roman_parens] = STATE(874), + [sym__list_upper_roman_period] = STATE(1183), + [sym__list_item_upper_roman_period] = STATE(876), + [sym__list_upper_roman_paren] = STATE(1183), + [sym__list_item_upper_roman_paren] = STATE(878), + [sym__list_upper_roman_parens] = STATE(1183), + [sym__list_item_upper_roman_parens] = STATE(880), + [sym_list_item_content] = STATE(802), + [sym_table] = STATE(1234), + [sym__table_content] = STATE(406), + [sym_table_separator] = STATE(406), + [sym_table_row] = STATE(417), + [sym_footnote] = STATE(1234), + [sym_footnote_marker_begin] = STATE(1298), + [sym_div] = STATE(1234), + [sym__div_marker_begin] = STATE(1119), + [sym_code_block] = STATE(1234), + [sym_raw_block] = STATE(1234), + [sym_thematic_break] = STATE(1234), + [sym_block_quote] = STATE(1234), + [sym__block_quote_prefix] = STATE(300), + [sym_link_reference_definition] = STATE(1234), + [sym_block_attribute] = STATE(1234), + [sym__paragraph] = STATE(1234), + [sym__paragraph_content] = STATE(799), + [sym__paragraph_inline_content] = STATE(896), + [sym__inline] = STATE(715), + [sym__symbol_fallback] = STATE(381), + [aux_sym__list_dash_repeat1] = STATE(453), + [aux_sym__list_plus_repeat1] = STATE(458), + [aux_sym__list_star_repeat1] = STATE(463), + [aux_sym__list_task_repeat1] = STATE(440), + [aux_sym__list_definition_repeat1] = STATE(562), + [aux_sym__list_decimal_period_repeat1] = STATE(563), + [aux_sym__list_decimal_paren_repeat1] = STATE(542), + [aux_sym__list_decimal_parens_repeat1] = STATE(564), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(565), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(566), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(567), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(568), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(569), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(570), + [aux_sym__list_lower_roman_period_repeat1] = STATE(571), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(572), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(573), + [aux_sym__list_upper_roman_period_repeat1] = STATE(574), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(575), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(576), + [aux_sym_table_repeat1] = STATE(406), + [aux_sym__block_quote_prefix_repeat1] = STATE(330), + [aux_sym__inline_repeat1] = STATE(381), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_PIPE] = ACTIONS(391), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(393), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(415), - [sym__heading_begin] = ACTIONS(393), + [sym__newline] = ACTIONS(413), + [sym__heading_begin] = ACTIONS(397), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(395), + [sym__code_block_begin] = ACTIONS(399), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -9324,115 +9714,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(397), - [sym__block_quote_continuation] = ACTIONS(399), - [sym__thematic_break_dash] = ACTIONS(401), - [sym__thematic_break_star] = ACTIONS(401), + [sym__block_quote_begin] = ACTIONS(401), + [sym__block_quote_continuation] = ACTIONS(403), + [sym__thematic_break_dash] = ACTIONS(405), + [sym__thematic_break_star] = ACTIONS(405), }, [37] = { - [sym__block_with_heading] = STATE(436), - [sym__block_element] = STATE(436), - [sym_heading] = STATE(436), - [sym_list] = STATE(436), - [sym__list_dash] = STATE(684), - [sym__list_item_dash] = STATE(634), - [sym__list_plus] = STATE(684), - [sym__list_item_plus] = STATE(651), - [sym__list_star] = STATE(684), - [sym__list_item_star] = STATE(697), - [sym__list_task] = STATE(684), - [sym__list_item_task] = STATE(707), - [sym_list_marker_task] = STATE(47), - [sym__list_definition] = STATE(684), - [sym__list_item_definition] = STATE(736), - [sym__list_decimal_period] = STATE(684), - [sym__list_item_decimal_period] = STATE(795), - [sym__list_decimal_paren] = STATE(684), - [sym__list_item_decimal_paren] = STATE(848), - [sym__list_decimal_parens] = STATE(684), - [sym__list_item_decimal_parens] = STATE(772), - [sym__list_lower_alpha_period] = STATE(684), - [sym__list_item_lower_alpha_period] = STATE(787), - [sym__list_lower_alpha_paren] = STATE(684), - [sym__list_item_lower_alpha_paren] = STATE(792), - [sym__list_lower_alpha_parens] = STATE(684), - [sym__list_item_lower_alpha_parens] = STATE(793), - [sym__list_upper_alpha_period] = STATE(684), - [sym__list_item_upper_alpha_period] = STATE(797), - [sym__list_upper_alpha_paren] = STATE(684), - [sym__list_item_upper_alpha_paren] = STATE(798), - [sym__list_upper_alpha_parens] = STATE(684), - [sym__list_item_upper_alpha_parens] = STATE(799), - [sym__list_lower_roman_period] = STATE(684), - [sym__list_item_lower_roman_period] = STATE(801), - [sym__list_lower_roman_paren] = STATE(684), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(684), - [sym__list_item_lower_roman_parens] = STATE(814), - [sym__list_upper_roman_period] = STATE(684), - [sym__list_item_upper_roman_period] = STATE(818), - [sym__list_upper_roman_paren] = STATE(684), - [sym__list_item_upper_roman_paren] = STATE(819), - [sym__list_upper_roman_parens] = STATE(684), - [sym__list_item_upper_roman_parens] = STATE(822), - [sym_list_item_content] = STATE(746), - [sym_table] = STATE(436), - [sym__table_content] = STATE(368), - [sym_table_separator] = STATE(368), - [sym_table_row] = STATE(389), - [sym_footnote] = STATE(436), - [sym_footnote_marker_begin] = STATE(1116), - [sym_div] = STATE(436), - [sym__div_marker_begin] = STATE(988), - [sym_code_block] = STATE(436), - [sym_raw_block] = STATE(436), - [sym_thematic_break] = STATE(436), - [sym_block_quote] = STATE(436), - [sym__block_quote_prefix] = STATE(294), - [sym_link_reference_definition] = STATE(436), - [sym_block_attribute] = STATE(436), - [sym__paragraph] = STATE(436), - [sym__paragraph_content] = STATE(932), - [sym__paragraph_inline_content] = STATE(930), - [sym__inline] = STATE(695), - [sym__symbol_fallback] = STATE(358), - [aux_sym__list_dash_repeat1] = STATE(423), - [aux_sym__list_plus_repeat1] = STATE(417), - [aux_sym__list_star_repeat1] = STATE(420), - [aux_sym__list_task_repeat1] = STATE(395), - [aux_sym__list_definition_repeat1] = STATE(510), - [aux_sym__list_decimal_period_repeat1] = STATE(511), - [aux_sym__list_decimal_paren_repeat1] = STATE(512), - [aux_sym__list_decimal_parens_repeat1] = STATE(513), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(514), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(515), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(516), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(517), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(518), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(519), - [aux_sym__list_lower_roman_period_repeat1] = STATE(520), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(521), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(522), - [aux_sym__list_upper_roman_period_repeat1] = STATE(523), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(524), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(525), - [aux_sym_table_repeat1] = STATE(368), - [aux_sym__block_quote_prefix_repeat1] = STATE(320), - [aux_sym__inline_repeat1] = STATE(358), - [anon_sym_LBRACK] = ACTIONS(385), - [anon_sym_PIPE] = ACTIONS(387), + [sym__block_with_heading] = STATE(1235), + [sym__block_element] = STATE(1235), + [sym_heading] = STATE(1235), + [sym_list] = STATE(1235), + [sym__list_dash] = STATE(1183), + [sym__list_item_dash] = STATE(727), + [sym__list_plus] = STATE(1183), + [sym__list_item_plus] = STATE(730), + [sym__list_star] = STATE(1183), + [sym__list_item_star] = STATE(759), + [sym__list_task] = STATE(1183), + [sym__list_item_task] = STATE(761), + [sym_list_marker_task] = STATE(46), + [sym__list_definition] = STATE(1183), + [sym__list_item_definition] = STATE(819), + [sym__list_decimal_period] = STATE(1183), + [sym__list_item_decimal_period] = STATE(852), + [sym__list_decimal_paren] = STATE(1183), + [sym__list_item_decimal_paren] = STATE(837), + [sym__list_decimal_parens] = STATE(1183), + [sym__list_item_decimal_parens] = STATE(815), + [sym__list_lower_alpha_period] = STATE(1183), + [sym__list_item_lower_alpha_period] = STATE(843), + [sym__list_lower_alpha_paren] = STATE(1183), + [sym__list_item_lower_alpha_paren] = STATE(850), + [sym__list_lower_alpha_parens] = STATE(1183), + [sym__list_item_lower_alpha_parens] = STATE(853), + [sym__list_upper_alpha_period] = STATE(1183), + [sym__list_item_upper_alpha_period] = STATE(854), + [sym__list_upper_alpha_paren] = STATE(1183), + [sym__list_item_upper_alpha_paren] = STATE(855), + [sym__list_upper_alpha_parens] = STATE(1183), + [sym__list_item_upper_alpha_parens] = STATE(856), + [sym__list_lower_roman_period] = STATE(1183), + [sym__list_item_lower_roman_period] = STATE(857), + [sym__list_lower_roman_paren] = STATE(1183), + [sym__list_item_lower_roman_paren] = STATE(871), + [sym__list_lower_roman_parens] = STATE(1183), + [sym__list_item_lower_roman_parens] = STATE(874), + [sym__list_upper_roman_period] = STATE(1183), + [sym__list_item_upper_roman_period] = STATE(876), + [sym__list_upper_roman_paren] = STATE(1183), + [sym__list_item_upper_roman_paren] = STATE(878), + [sym__list_upper_roman_parens] = STATE(1183), + [sym__list_item_upper_roman_parens] = STATE(880), + [sym_list_item_content] = STATE(811), + [sym_table] = STATE(1235), + [sym__table_content] = STATE(406), + [sym_table_separator] = STATE(406), + [sym_table_row] = STATE(417), + [sym_footnote] = STATE(1235), + [sym_footnote_marker_begin] = STATE(1298), + [sym_div] = STATE(1235), + [sym__div_marker_begin] = STATE(1119), + [sym_code_block] = STATE(1235), + [sym_raw_block] = STATE(1235), + [sym_thematic_break] = STATE(1235), + [sym_block_quote] = STATE(1235), + [sym__block_quote_prefix] = STATE(300), + [sym_link_reference_definition] = STATE(1235), + [sym_block_attribute] = STATE(1235), + [sym__paragraph] = STATE(1235), + [sym__paragraph_content] = STATE(799), + [sym__paragraph_inline_content] = STATE(896), + [sym__inline] = STATE(715), + [sym__symbol_fallback] = STATE(381), + [aux_sym__list_dash_repeat1] = STATE(453), + [aux_sym__list_plus_repeat1] = STATE(458), + [aux_sym__list_star_repeat1] = STATE(463), + [aux_sym__list_task_repeat1] = STATE(440), + [aux_sym__list_definition_repeat1] = STATE(562), + [aux_sym__list_decimal_period_repeat1] = STATE(563), + [aux_sym__list_decimal_paren_repeat1] = STATE(542), + [aux_sym__list_decimal_parens_repeat1] = STATE(564), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(565), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(566), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(567), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(568), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(569), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(570), + [aux_sym__list_lower_roman_period_repeat1] = STATE(571), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(572), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(573), + [aux_sym__list_upper_roman_period_repeat1] = STATE(574), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(575), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(576), + [aux_sym_table_repeat1] = STATE(406), + [aux_sym__block_quote_prefix_repeat1] = STATE(330), + [aux_sym__inline_repeat1] = STATE(381), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_PIPE] = ACTIONS(391), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(393), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(417), - [sym__heading_begin] = ACTIONS(393), + [sym__newline] = ACTIONS(415), + [sym__heading_begin] = ACTIONS(397), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(395), + [sym__code_block_begin] = ACTIONS(399), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -9453,115 +9843,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(397), - [sym__block_quote_continuation] = ACTIONS(399), - [sym__thematic_break_dash] = ACTIONS(401), - [sym__thematic_break_star] = ACTIONS(401), + [sym__block_quote_begin] = ACTIONS(401), + [sym__block_quote_continuation] = ACTIONS(403), + [sym__thematic_break_dash] = ACTIONS(405), + [sym__thematic_break_star] = ACTIONS(405), }, [38] = { - [sym__block_with_heading] = STATE(438), - [sym__block_element] = STATE(438), - [sym_heading] = STATE(438), - [sym_list] = STATE(438), - [sym__list_dash] = STATE(684), - [sym__list_item_dash] = STATE(634), - [sym__list_plus] = STATE(684), - [sym__list_item_plus] = STATE(651), - [sym__list_star] = STATE(684), - [sym__list_item_star] = STATE(697), - [sym__list_task] = STATE(684), - [sym__list_item_task] = STATE(707), - [sym_list_marker_task] = STATE(47), - [sym__list_definition] = STATE(684), - [sym__list_item_definition] = STATE(736), - [sym__list_decimal_period] = STATE(684), - [sym__list_item_decimal_period] = STATE(795), - [sym__list_decimal_paren] = STATE(684), - [sym__list_item_decimal_paren] = STATE(848), - [sym__list_decimal_parens] = STATE(684), - [sym__list_item_decimal_parens] = STATE(772), - [sym__list_lower_alpha_period] = STATE(684), - [sym__list_item_lower_alpha_period] = STATE(787), - [sym__list_lower_alpha_paren] = STATE(684), - [sym__list_item_lower_alpha_paren] = STATE(792), - [sym__list_lower_alpha_parens] = STATE(684), - [sym__list_item_lower_alpha_parens] = STATE(793), - [sym__list_upper_alpha_period] = STATE(684), - [sym__list_item_upper_alpha_period] = STATE(797), - [sym__list_upper_alpha_paren] = STATE(684), - [sym__list_item_upper_alpha_paren] = STATE(798), - [sym__list_upper_alpha_parens] = STATE(684), - [sym__list_item_upper_alpha_parens] = STATE(799), - [sym__list_lower_roman_period] = STATE(684), - [sym__list_item_lower_roman_period] = STATE(801), - [sym__list_lower_roman_paren] = STATE(684), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(684), - [sym__list_item_lower_roman_parens] = STATE(814), - [sym__list_upper_roman_period] = STATE(684), - [sym__list_item_upper_roman_period] = STATE(818), - [sym__list_upper_roman_paren] = STATE(684), - [sym__list_item_upper_roman_paren] = STATE(819), - [sym__list_upper_roman_parens] = STATE(684), - [sym__list_item_upper_roman_parens] = STATE(822), - [sym_list_item_content] = STATE(747), - [sym_table] = STATE(438), - [sym__table_content] = STATE(368), - [sym_table_separator] = STATE(368), - [sym_table_row] = STATE(389), - [sym_footnote] = STATE(438), - [sym_footnote_marker_begin] = STATE(1116), - [sym_div] = STATE(438), - [sym__div_marker_begin] = STATE(988), - [sym_code_block] = STATE(438), - [sym_raw_block] = STATE(438), - [sym_thematic_break] = STATE(438), - [sym_block_quote] = STATE(438), - [sym__block_quote_prefix] = STATE(294), - [sym_link_reference_definition] = STATE(438), - [sym_block_attribute] = STATE(438), - [sym__paragraph] = STATE(438), - [sym__paragraph_content] = STATE(932), - [sym__paragraph_inline_content] = STATE(930), - [sym__inline] = STATE(695), - [sym__symbol_fallback] = STATE(358), - [aux_sym__list_dash_repeat1] = STATE(423), - [aux_sym__list_plus_repeat1] = STATE(417), - [aux_sym__list_star_repeat1] = STATE(420), - [aux_sym__list_task_repeat1] = STATE(395), - [aux_sym__list_definition_repeat1] = STATE(510), - [aux_sym__list_decimal_period_repeat1] = STATE(511), - [aux_sym__list_decimal_paren_repeat1] = STATE(512), - [aux_sym__list_decimal_parens_repeat1] = STATE(513), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(514), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(515), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(516), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(517), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(518), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(519), - [aux_sym__list_lower_roman_period_repeat1] = STATE(520), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(521), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(522), - [aux_sym__list_upper_roman_period_repeat1] = STATE(523), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(524), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(525), - [aux_sym_table_repeat1] = STATE(368), - [aux_sym__block_quote_prefix_repeat1] = STATE(320), - [aux_sym__inline_repeat1] = STATE(358), - [anon_sym_LBRACK] = ACTIONS(385), - [anon_sym_PIPE] = ACTIONS(387), + [sym__block_with_heading] = STATE(1236), + [sym__block_element] = STATE(1236), + [sym_heading] = STATE(1236), + [sym_list] = STATE(1236), + [sym__list_dash] = STATE(1183), + [sym__list_item_dash] = STATE(727), + [sym__list_plus] = STATE(1183), + [sym__list_item_plus] = STATE(730), + [sym__list_star] = STATE(1183), + [sym__list_item_star] = STATE(759), + [sym__list_task] = STATE(1183), + [sym__list_item_task] = STATE(761), + [sym_list_marker_task] = STATE(46), + [sym__list_definition] = STATE(1183), + [sym__list_item_definition] = STATE(819), + [sym__list_decimal_period] = STATE(1183), + [sym__list_item_decimal_period] = STATE(852), + [sym__list_decimal_paren] = STATE(1183), + [sym__list_item_decimal_paren] = STATE(837), + [sym__list_decimal_parens] = STATE(1183), + [sym__list_item_decimal_parens] = STATE(815), + [sym__list_lower_alpha_period] = STATE(1183), + [sym__list_item_lower_alpha_period] = STATE(843), + [sym__list_lower_alpha_paren] = STATE(1183), + [sym__list_item_lower_alpha_paren] = STATE(850), + [sym__list_lower_alpha_parens] = STATE(1183), + [sym__list_item_lower_alpha_parens] = STATE(853), + [sym__list_upper_alpha_period] = STATE(1183), + [sym__list_item_upper_alpha_period] = STATE(854), + [sym__list_upper_alpha_paren] = STATE(1183), + [sym__list_item_upper_alpha_paren] = STATE(855), + [sym__list_upper_alpha_parens] = STATE(1183), + [sym__list_item_upper_alpha_parens] = STATE(856), + [sym__list_lower_roman_period] = STATE(1183), + [sym__list_item_lower_roman_period] = STATE(857), + [sym__list_lower_roman_paren] = STATE(1183), + [sym__list_item_lower_roman_paren] = STATE(871), + [sym__list_lower_roman_parens] = STATE(1183), + [sym__list_item_lower_roman_parens] = STATE(874), + [sym__list_upper_roman_period] = STATE(1183), + [sym__list_item_upper_roman_period] = STATE(876), + [sym__list_upper_roman_paren] = STATE(1183), + [sym__list_item_upper_roman_paren] = STATE(878), + [sym__list_upper_roman_parens] = STATE(1183), + [sym__list_item_upper_roman_parens] = STATE(880), + [sym_list_item_content] = STATE(820), + [sym_table] = STATE(1236), + [sym__table_content] = STATE(406), + [sym_table_separator] = STATE(406), + [sym_table_row] = STATE(417), + [sym_footnote] = STATE(1236), + [sym_footnote_marker_begin] = STATE(1298), + [sym_div] = STATE(1236), + [sym__div_marker_begin] = STATE(1119), + [sym_code_block] = STATE(1236), + [sym_raw_block] = STATE(1236), + [sym_thematic_break] = STATE(1236), + [sym_block_quote] = STATE(1236), + [sym__block_quote_prefix] = STATE(300), + [sym_link_reference_definition] = STATE(1236), + [sym_block_attribute] = STATE(1236), + [sym__paragraph] = STATE(1236), + [sym__paragraph_content] = STATE(799), + [sym__paragraph_inline_content] = STATE(896), + [sym__inline] = STATE(715), + [sym__symbol_fallback] = STATE(381), + [aux_sym__list_dash_repeat1] = STATE(453), + [aux_sym__list_plus_repeat1] = STATE(458), + [aux_sym__list_star_repeat1] = STATE(463), + [aux_sym__list_task_repeat1] = STATE(440), + [aux_sym__list_definition_repeat1] = STATE(562), + [aux_sym__list_decimal_period_repeat1] = STATE(563), + [aux_sym__list_decimal_paren_repeat1] = STATE(542), + [aux_sym__list_decimal_parens_repeat1] = STATE(564), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(565), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(566), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(567), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(568), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(569), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(570), + [aux_sym__list_lower_roman_period_repeat1] = STATE(571), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(572), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(573), + [aux_sym__list_upper_roman_period_repeat1] = STATE(574), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(575), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(576), + [aux_sym_table_repeat1] = STATE(406), + [aux_sym__block_quote_prefix_repeat1] = STATE(330), + [aux_sym__inline_repeat1] = STATE(381), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_PIPE] = ACTIONS(391), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(393), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(419), - [sym__heading_begin] = ACTIONS(393), + [sym__newline] = ACTIONS(417), + [sym__heading_begin] = ACTIONS(397), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(395), + [sym__code_block_begin] = ACTIONS(399), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -9582,115 +9972,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(397), - [sym__block_quote_continuation] = ACTIONS(399), - [sym__thematic_break_dash] = ACTIONS(401), - [sym__thematic_break_star] = ACTIONS(401), + [sym__block_quote_begin] = ACTIONS(401), + [sym__block_quote_continuation] = ACTIONS(403), + [sym__thematic_break_dash] = ACTIONS(405), + [sym__thematic_break_star] = ACTIONS(405), }, [39] = { - [sym__block_with_heading] = STATE(473), - [sym__block_element] = STATE(473), - [sym_heading] = STATE(473), - [sym_list] = STATE(473), - [sym__list_dash] = STATE(684), - [sym__list_item_dash] = STATE(634), - [sym__list_plus] = STATE(684), - [sym__list_item_plus] = STATE(651), - [sym__list_star] = STATE(684), - [sym__list_item_star] = STATE(697), - [sym__list_task] = STATE(684), - [sym__list_item_task] = STATE(707), - [sym_list_marker_task] = STATE(47), - [sym__list_definition] = STATE(684), - [sym__list_item_definition] = STATE(736), - [sym__list_decimal_period] = STATE(684), - [sym__list_item_decimal_period] = STATE(795), - [sym__list_decimal_paren] = STATE(684), - [sym__list_item_decimal_paren] = STATE(848), - [sym__list_decimal_parens] = STATE(684), - [sym__list_item_decimal_parens] = STATE(772), - [sym__list_lower_alpha_period] = STATE(684), - [sym__list_item_lower_alpha_period] = STATE(787), - [sym__list_lower_alpha_paren] = STATE(684), - [sym__list_item_lower_alpha_paren] = STATE(792), - [sym__list_lower_alpha_parens] = STATE(684), - [sym__list_item_lower_alpha_parens] = STATE(793), - [sym__list_upper_alpha_period] = STATE(684), - [sym__list_item_upper_alpha_period] = STATE(797), - [sym__list_upper_alpha_paren] = STATE(684), - [sym__list_item_upper_alpha_paren] = STATE(798), - [sym__list_upper_alpha_parens] = STATE(684), - [sym__list_item_upper_alpha_parens] = STATE(799), - [sym__list_lower_roman_period] = STATE(684), - [sym__list_item_lower_roman_period] = STATE(801), - [sym__list_lower_roman_paren] = STATE(684), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(684), - [sym__list_item_lower_roman_parens] = STATE(814), - [sym__list_upper_roman_period] = STATE(684), - [sym__list_item_upper_roman_period] = STATE(818), - [sym__list_upper_roman_paren] = STATE(684), - [sym__list_item_upper_roman_paren] = STATE(819), - [sym__list_upper_roman_parens] = STATE(684), - [sym__list_item_upper_roman_parens] = STATE(822), - [sym_list_item_content] = STATE(626), - [sym_table] = STATE(473), - [sym__table_content] = STATE(368), - [sym_table_separator] = STATE(368), - [sym_table_row] = STATE(389), - [sym_footnote] = STATE(473), - [sym_footnote_marker_begin] = STATE(1116), - [sym_div] = STATE(473), - [sym__div_marker_begin] = STATE(988), - [sym_code_block] = STATE(473), - [sym_raw_block] = STATE(473), - [sym_thematic_break] = STATE(473), - [sym_block_quote] = STATE(473), - [sym__block_quote_prefix] = STATE(294), - [sym_link_reference_definition] = STATE(473), - [sym_block_attribute] = STATE(473), - [sym__paragraph] = STATE(473), - [sym__paragraph_content] = STATE(932), - [sym__paragraph_inline_content] = STATE(930), - [sym__inline] = STATE(695), - [sym__symbol_fallback] = STATE(358), - [aux_sym__list_dash_repeat1] = STATE(423), - [aux_sym__list_plus_repeat1] = STATE(417), - [aux_sym__list_star_repeat1] = STATE(420), - [aux_sym__list_task_repeat1] = STATE(395), - [aux_sym__list_definition_repeat1] = STATE(510), - [aux_sym__list_decimal_period_repeat1] = STATE(511), - [aux_sym__list_decimal_paren_repeat1] = STATE(512), - [aux_sym__list_decimal_parens_repeat1] = STATE(513), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(514), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(515), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(516), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(517), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(518), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(519), - [aux_sym__list_lower_roman_period_repeat1] = STATE(520), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(521), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(522), - [aux_sym__list_upper_roman_period_repeat1] = STATE(523), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(524), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(525), - [aux_sym_table_repeat1] = STATE(368), - [aux_sym__block_quote_prefix_repeat1] = STATE(320), - [aux_sym__inline_repeat1] = STATE(358), - [anon_sym_LBRACK] = ACTIONS(385), - [anon_sym_PIPE] = ACTIONS(387), + [sym__block_with_heading] = STATE(1121), + [sym__block_element] = STATE(1121), + [sym_heading] = STATE(1121), + [sym_list] = STATE(1121), + [sym__list_dash] = STATE(1183), + [sym__list_item_dash] = STATE(727), + [sym__list_plus] = STATE(1183), + [sym__list_item_plus] = STATE(730), + [sym__list_star] = STATE(1183), + [sym__list_item_star] = STATE(759), + [sym__list_task] = STATE(1183), + [sym__list_item_task] = STATE(761), + [sym_list_marker_task] = STATE(46), + [sym__list_definition] = STATE(1183), + [sym__list_item_definition] = STATE(819), + [sym__list_decimal_period] = STATE(1183), + [sym__list_item_decimal_period] = STATE(852), + [sym__list_decimal_paren] = STATE(1183), + [sym__list_item_decimal_paren] = STATE(837), + [sym__list_decimal_parens] = STATE(1183), + [sym__list_item_decimal_parens] = STATE(815), + [sym__list_lower_alpha_period] = STATE(1183), + [sym__list_item_lower_alpha_period] = STATE(843), + [sym__list_lower_alpha_paren] = STATE(1183), + [sym__list_item_lower_alpha_paren] = STATE(850), + [sym__list_lower_alpha_parens] = STATE(1183), + [sym__list_item_lower_alpha_parens] = STATE(853), + [sym__list_upper_alpha_period] = STATE(1183), + [sym__list_item_upper_alpha_period] = STATE(854), + [sym__list_upper_alpha_paren] = STATE(1183), + [sym__list_item_upper_alpha_paren] = STATE(855), + [sym__list_upper_alpha_parens] = STATE(1183), + [sym__list_item_upper_alpha_parens] = STATE(856), + [sym__list_lower_roman_period] = STATE(1183), + [sym__list_item_lower_roman_period] = STATE(857), + [sym__list_lower_roman_paren] = STATE(1183), + [sym__list_item_lower_roman_paren] = STATE(871), + [sym__list_lower_roman_parens] = STATE(1183), + [sym__list_item_lower_roman_parens] = STATE(874), + [sym__list_upper_roman_period] = STATE(1183), + [sym__list_item_upper_roman_period] = STATE(876), + [sym__list_upper_roman_paren] = STATE(1183), + [sym__list_item_upper_roman_paren] = STATE(878), + [sym__list_upper_roman_parens] = STATE(1183), + [sym__list_item_upper_roman_parens] = STATE(880), + [sym_list_item_content] = STATE(683), + [sym_table] = STATE(1121), + [sym__table_content] = STATE(406), + [sym_table_separator] = STATE(406), + [sym_table_row] = STATE(417), + [sym_footnote] = STATE(1121), + [sym_footnote_marker_begin] = STATE(1298), + [sym_div] = STATE(1121), + [sym__div_marker_begin] = STATE(1119), + [sym_code_block] = STATE(1121), + [sym_raw_block] = STATE(1121), + [sym_thematic_break] = STATE(1121), + [sym_block_quote] = STATE(1121), + [sym__block_quote_prefix] = STATE(300), + [sym_link_reference_definition] = STATE(1121), + [sym_block_attribute] = STATE(1121), + [sym__paragraph] = STATE(1121), + [sym__paragraph_content] = STATE(799), + [sym__paragraph_inline_content] = STATE(896), + [sym__inline] = STATE(715), + [sym__symbol_fallback] = STATE(381), + [aux_sym__list_dash_repeat1] = STATE(453), + [aux_sym__list_plus_repeat1] = STATE(458), + [aux_sym__list_star_repeat1] = STATE(463), + [aux_sym__list_task_repeat1] = STATE(440), + [aux_sym__list_definition_repeat1] = STATE(562), + [aux_sym__list_decimal_period_repeat1] = STATE(563), + [aux_sym__list_decimal_paren_repeat1] = STATE(542), + [aux_sym__list_decimal_parens_repeat1] = STATE(564), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(565), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(566), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(567), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(568), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(569), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(570), + [aux_sym__list_lower_roman_period_repeat1] = STATE(571), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(572), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(573), + [aux_sym__list_upper_roman_period_repeat1] = STATE(574), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(575), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(576), + [aux_sym_table_repeat1] = STATE(406), + [aux_sym__block_quote_prefix_repeat1] = STATE(330), + [aux_sym__inline_repeat1] = STATE(381), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_PIPE] = ACTIONS(391), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(393), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(407), - [sym__heading_begin] = ACTIONS(393), + [sym__newline] = ACTIONS(419), + [sym__heading_begin] = ACTIONS(397), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(395), + [sym__code_block_begin] = ACTIONS(399), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -9711,105 +10101,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(397), - [sym__block_quote_continuation] = ACTIONS(399), - [sym__thematic_break_dash] = ACTIONS(401), - [sym__thematic_break_star] = ACTIONS(401), + [sym__block_quote_begin] = ACTIONS(401), + [sym__block_quote_continuation] = ACTIONS(403), + [sym__thematic_break_dash] = ACTIONS(405), + [sym__thematic_break_star] = ACTIONS(405), }, [40] = { - [sym__block_with_heading] = STATE(442), - [sym__block_element] = STATE(442), - [sym_heading] = STATE(442), - [sym_list] = STATE(442), - [sym__list_dash] = STATE(684), - [sym__list_item_dash] = STATE(634), - [sym__list_plus] = STATE(684), - [sym__list_item_plus] = STATE(651), - [sym__list_star] = STATE(684), - [sym__list_item_star] = STATE(697), - [sym__list_task] = STATE(684), - [sym__list_item_task] = STATE(707), - [sym_list_marker_task] = STATE(47), - [sym__list_definition] = STATE(684), - [sym__list_item_definition] = STATE(736), - [sym__list_decimal_period] = STATE(684), - [sym__list_item_decimal_period] = STATE(795), - [sym__list_decimal_paren] = STATE(684), - [sym__list_item_decimal_paren] = STATE(848), - [sym__list_decimal_parens] = STATE(684), - [sym__list_item_decimal_parens] = STATE(772), - [sym__list_lower_alpha_period] = STATE(684), - [sym__list_item_lower_alpha_period] = STATE(787), - [sym__list_lower_alpha_paren] = STATE(684), - [sym__list_item_lower_alpha_paren] = STATE(792), - [sym__list_lower_alpha_parens] = STATE(684), - [sym__list_item_lower_alpha_parens] = STATE(793), - [sym__list_upper_alpha_period] = STATE(684), - [sym__list_item_upper_alpha_period] = STATE(797), - [sym__list_upper_alpha_paren] = STATE(684), - [sym__list_item_upper_alpha_paren] = STATE(798), - [sym__list_upper_alpha_parens] = STATE(684), - [sym__list_item_upper_alpha_parens] = STATE(799), - [sym__list_lower_roman_period] = STATE(684), - [sym__list_item_lower_roman_period] = STATE(801), - [sym__list_lower_roman_paren] = STATE(684), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(684), - [sym__list_item_lower_roman_parens] = STATE(814), - [sym__list_upper_roman_period] = STATE(684), - [sym__list_item_upper_roman_period] = STATE(818), - [sym__list_upper_roman_paren] = STATE(684), - [sym__list_item_upper_roman_paren] = STATE(819), - [sym__list_upper_roman_parens] = STATE(684), - [sym__list_item_upper_roman_parens] = STATE(822), - [sym_list_item_content] = STATE(766), - [sym_table] = STATE(442), - [sym__table_content] = STATE(368), - [sym_table_separator] = STATE(368), - [sym_table_row] = STATE(389), - [sym_footnote] = STATE(442), - [sym_footnote_marker_begin] = STATE(1116), - [sym_div] = STATE(442), - [sym__div_marker_begin] = STATE(988), - [sym_code_block] = STATE(442), - [sym_raw_block] = STATE(442), - [sym_thematic_break] = STATE(442), - [sym_block_quote] = STATE(442), - [sym__block_quote_prefix] = STATE(294), - [sym_link_reference_definition] = STATE(442), - [sym_block_attribute] = STATE(442), - [sym__paragraph] = STATE(442), - [sym__paragraph_content] = STATE(932), - [sym__paragraph_inline_content] = STATE(930), - [sym__inline] = STATE(695), - [sym__symbol_fallback] = STATE(358), - [aux_sym__list_dash_repeat1] = STATE(423), - [aux_sym__list_plus_repeat1] = STATE(417), - [aux_sym__list_star_repeat1] = STATE(420), - [aux_sym__list_task_repeat1] = STATE(395), - [aux_sym__list_definition_repeat1] = STATE(510), - [aux_sym__list_decimal_period_repeat1] = STATE(511), - [aux_sym__list_decimal_paren_repeat1] = STATE(512), - [aux_sym__list_decimal_parens_repeat1] = STATE(513), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(514), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(515), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(516), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(517), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(518), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(519), - [aux_sym__list_lower_roman_period_repeat1] = STATE(520), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(521), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(522), - [aux_sym__list_upper_roman_period_repeat1] = STATE(523), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(524), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(525), - [aux_sym_table_repeat1] = STATE(368), - [aux_sym__block_quote_prefix_repeat1] = STATE(320), - [aux_sym__inline_repeat1] = STATE(358), - [anon_sym_LBRACK] = ACTIONS(385), - [anon_sym_PIPE] = ACTIONS(387), + [sym__block_with_heading] = STATE(1238), + [sym__block_element] = STATE(1238), + [sym_heading] = STATE(1238), + [sym_list] = STATE(1238), + [sym__list_dash] = STATE(1183), + [sym__list_item_dash] = STATE(727), + [sym__list_plus] = STATE(1183), + [sym__list_item_plus] = STATE(730), + [sym__list_star] = STATE(1183), + [sym__list_item_star] = STATE(759), + [sym__list_task] = STATE(1183), + [sym__list_item_task] = STATE(761), + [sym_list_marker_task] = STATE(46), + [sym__list_definition] = STATE(1183), + [sym__list_item_definition] = STATE(819), + [sym__list_decimal_period] = STATE(1183), + [sym__list_item_decimal_period] = STATE(852), + [sym__list_decimal_paren] = STATE(1183), + [sym__list_item_decimal_paren] = STATE(837), + [sym__list_decimal_parens] = STATE(1183), + [sym__list_item_decimal_parens] = STATE(815), + [sym__list_lower_alpha_period] = STATE(1183), + [sym__list_item_lower_alpha_period] = STATE(843), + [sym__list_lower_alpha_paren] = STATE(1183), + [sym__list_item_lower_alpha_paren] = STATE(850), + [sym__list_lower_alpha_parens] = STATE(1183), + [sym__list_item_lower_alpha_parens] = STATE(853), + [sym__list_upper_alpha_period] = STATE(1183), + [sym__list_item_upper_alpha_period] = STATE(854), + [sym__list_upper_alpha_paren] = STATE(1183), + [sym__list_item_upper_alpha_paren] = STATE(855), + [sym__list_upper_alpha_parens] = STATE(1183), + [sym__list_item_upper_alpha_parens] = STATE(856), + [sym__list_lower_roman_period] = STATE(1183), + [sym__list_item_lower_roman_period] = STATE(857), + [sym__list_lower_roman_paren] = STATE(1183), + [sym__list_item_lower_roman_paren] = STATE(871), + [sym__list_lower_roman_parens] = STATE(1183), + [sym__list_item_lower_roman_parens] = STATE(874), + [sym__list_upper_roman_period] = STATE(1183), + [sym__list_item_upper_roman_period] = STATE(876), + [sym__list_upper_roman_paren] = STATE(1183), + [sym__list_item_upper_roman_paren] = STATE(878), + [sym__list_upper_roman_parens] = STATE(1183), + [sym__list_item_upper_roman_parens] = STATE(880), + [sym_list_item_content] = STATE(824), + [sym_table] = STATE(1238), + [sym__table_content] = STATE(406), + [sym_table_separator] = STATE(406), + [sym_table_row] = STATE(417), + [sym_footnote] = STATE(1238), + [sym_footnote_marker_begin] = STATE(1298), + [sym_div] = STATE(1238), + [sym__div_marker_begin] = STATE(1119), + [sym_code_block] = STATE(1238), + [sym_raw_block] = STATE(1238), + [sym_thematic_break] = STATE(1238), + [sym_block_quote] = STATE(1238), + [sym__block_quote_prefix] = STATE(300), + [sym_link_reference_definition] = STATE(1238), + [sym_block_attribute] = STATE(1238), + [sym__paragraph] = STATE(1238), + [sym__paragraph_content] = STATE(799), + [sym__paragraph_inline_content] = STATE(896), + [sym__inline] = STATE(715), + [sym__symbol_fallback] = STATE(381), + [aux_sym__list_dash_repeat1] = STATE(453), + [aux_sym__list_plus_repeat1] = STATE(458), + [aux_sym__list_star_repeat1] = STATE(463), + [aux_sym__list_task_repeat1] = STATE(440), + [aux_sym__list_definition_repeat1] = STATE(562), + [aux_sym__list_decimal_period_repeat1] = STATE(563), + [aux_sym__list_decimal_paren_repeat1] = STATE(542), + [aux_sym__list_decimal_parens_repeat1] = STATE(564), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(565), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(566), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(567), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(568), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(569), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(570), + [aux_sym__list_lower_roman_period_repeat1] = STATE(571), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(572), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(573), + [aux_sym__list_upper_roman_period_repeat1] = STATE(574), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(575), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(576), + [aux_sym_table_repeat1] = STATE(406), + [aux_sym__block_quote_prefix_repeat1] = STATE(330), + [aux_sym__inline_repeat1] = STATE(381), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_PIPE] = ACTIONS(391), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(393), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), @@ -9817,9 +10207,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), [sym__newline] = ACTIONS(421), - [sym__heading_begin] = ACTIONS(393), + [sym__heading_begin] = ACTIONS(397), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(395), + [sym__code_block_begin] = ACTIONS(399), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -9840,105 +10230,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(397), - [sym__block_quote_continuation] = ACTIONS(399), - [sym__thematic_break_dash] = ACTIONS(401), - [sym__thematic_break_star] = ACTIONS(401), + [sym__block_quote_begin] = ACTIONS(401), + [sym__block_quote_continuation] = ACTIONS(403), + [sym__thematic_break_dash] = ACTIONS(405), + [sym__thematic_break_star] = ACTIONS(405), }, [41] = { - [sym__block_with_heading] = STATE(444), - [sym__block_element] = STATE(444), - [sym_heading] = STATE(444), - [sym_list] = STATE(444), - [sym__list_dash] = STATE(684), - [sym__list_item_dash] = STATE(634), - [sym__list_plus] = STATE(684), - [sym__list_item_plus] = STATE(651), - [sym__list_star] = STATE(684), - [sym__list_item_star] = STATE(697), - [sym__list_task] = STATE(684), - [sym__list_item_task] = STATE(707), - [sym_list_marker_task] = STATE(47), - [sym__list_definition] = STATE(684), - [sym__list_item_definition] = STATE(736), - [sym__list_decimal_period] = STATE(684), - [sym__list_item_decimal_period] = STATE(795), - [sym__list_decimal_paren] = STATE(684), - [sym__list_item_decimal_paren] = STATE(848), - [sym__list_decimal_parens] = STATE(684), - [sym__list_item_decimal_parens] = STATE(772), - [sym__list_lower_alpha_period] = STATE(684), - [sym__list_item_lower_alpha_period] = STATE(787), - [sym__list_lower_alpha_paren] = STATE(684), - [sym__list_item_lower_alpha_paren] = STATE(792), - [sym__list_lower_alpha_parens] = STATE(684), - [sym__list_item_lower_alpha_parens] = STATE(793), - [sym__list_upper_alpha_period] = STATE(684), - [sym__list_item_upper_alpha_period] = STATE(797), - [sym__list_upper_alpha_paren] = STATE(684), - [sym__list_item_upper_alpha_paren] = STATE(798), - [sym__list_upper_alpha_parens] = STATE(684), - [sym__list_item_upper_alpha_parens] = STATE(799), - [sym__list_lower_roman_period] = STATE(684), - [sym__list_item_lower_roman_period] = STATE(801), - [sym__list_lower_roman_paren] = STATE(684), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(684), - [sym__list_item_lower_roman_parens] = STATE(814), - [sym__list_upper_roman_period] = STATE(684), - [sym__list_item_upper_roman_period] = STATE(818), - [sym__list_upper_roman_paren] = STATE(684), - [sym__list_item_upper_roman_paren] = STATE(819), - [sym__list_upper_roman_parens] = STATE(684), - [sym__list_item_upper_roman_parens] = STATE(822), - [sym_list_item_content] = STATE(767), - [sym_table] = STATE(444), - [sym__table_content] = STATE(368), - [sym_table_separator] = STATE(368), - [sym_table_row] = STATE(389), - [sym_footnote] = STATE(444), - [sym_footnote_marker_begin] = STATE(1116), - [sym_div] = STATE(444), - [sym__div_marker_begin] = STATE(988), - [sym_code_block] = STATE(444), - [sym_raw_block] = STATE(444), - [sym_thematic_break] = STATE(444), - [sym_block_quote] = STATE(444), - [sym__block_quote_prefix] = STATE(294), - [sym_link_reference_definition] = STATE(444), - [sym_block_attribute] = STATE(444), - [sym__paragraph] = STATE(444), - [sym__paragraph_content] = STATE(932), - [sym__paragraph_inline_content] = STATE(930), - [sym__inline] = STATE(695), - [sym__symbol_fallback] = STATE(358), - [aux_sym__list_dash_repeat1] = STATE(423), - [aux_sym__list_plus_repeat1] = STATE(417), - [aux_sym__list_star_repeat1] = STATE(420), - [aux_sym__list_task_repeat1] = STATE(395), - [aux_sym__list_definition_repeat1] = STATE(510), - [aux_sym__list_decimal_period_repeat1] = STATE(511), - [aux_sym__list_decimal_paren_repeat1] = STATE(512), - [aux_sym__list_decimal_parens_repeat1] = STATE(513), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(514), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(515), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(516), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(517), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(518), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(519), - [aux_sym__list_lower_roman_period_repeat1] = STATE(520), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(521), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(522), - [aux_sym__list_upper_roman_period_repeat1] = STATE(523), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(524), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(525), - [aux_sym_table_repeat1] = STATE(368), - [aux_sym__block_quote_prefix_repeat1] = STATE(320), - [aux_sym__inline_repeat1] = STATE(358), - [anon_sym_LBRACK] = ACTIONS(385), - [anon_sym_PIPE] = ACTIONS(387), + [sym__block_with_heading] = STATE(1239), + [sym__block_element] = STATE(1239), + [sym_heading] = STATE(1239), + [sym_list] = STATE(1239), + [sym__list_dash] = STATE(1183), + [sym__list_item_dash] = STATE(727), + [sym__list_plus] = STATE(1183), + [sym__list_item_plus] = STATE(730), + [sym__list_star] = STATE(1183), + [sym__list_item_star] = STATE(759), + [sym__list_task] = STATE(1183), + [sym__list_item_task] = STATE(761), + [sym_list_marker_task] = STATE(46), + [sym__list_definition] = STATE(1183), + [sym__list_item_definition] = STATE(819), + [sym__list_decimal_period] = STATE(1183), + [sym__list_item_decimal_period] = STATE(852), + [sym__list_decimal_paren] = STATE(1183), + [sym__list_item_decimal_paren] = STATE(837), + [sym__list_decimal_parens] = STATE(1183), + [sym__list_item_decimal_parens] = STATE(815), + [sym__list_lower_alpha_period] = STATE(1183), + [sym__list_item_lower_alpha_period] = STATE(843), + [sym__list_lower_alpha_paren] = STATE(1183), + [sym__list_item_lower_alpha_paren] = STATE(850), + [sym__list_lower_alpha_parens] = STATE(1183), + [sym__list_item_lower_alpha_parens] = STATE(853), + [sym__list_upper_alpha_period] = STATE(1183), + [sym__list_item_upper_alpha_period] = STATE(854), + [sym__list_upper_alpha_paren] = STATE(1183), + [sym__list_item_upper_alpha_paren] = STATE(855), + [sym__list_upper_alpha_parens] = STATE(1183), + [sym__list_item_upper_alpha_parens] = STATE(856), + [sym__list_lower_roman_period] = STATE(1183), + [sym__list_item_lower_roman_period] = STATE(857), + [sym__list_lower_roman_paren] = STATE(1183), + [sym__list_item_lower_roman_paren] = STATE(871), + [sym__list_lower_roman_parens] = STATE(1183), + [sym__list_item_lower_roman_parens] = STATE(874), + [sym__list_upper_roman_period] = STATE(1183), + [sym__list_item_upper_roman_period] = STATE(876), + [sym__list_upper_roman_paren] = STATE(1183), + [sym__list_item_upper_roman_paren] = STATE(878), + [sym__list_upper_roman_parens] = STATE(1183), + [sym__list_item_upper_roman_parens] = STATE(880), + [sym_list_item_content] = STATE(825), + [sym_table] = STATE(1239), + [sym__table_content] = STATE(406), + [sym_table_separator] = STATE(406), + [sym_table_row] = STATE(417), + [sym_footnote] = STATE(1239), + [sym_footnote_marker_begin] = STATE(1298), + [sym_div] = STATE(1239), + [sym__div_marker_begin] = STATE(1119), + [sym_code_block] = STATE(1239), + [sym_raw_block] = STATE(1239), + [sym_thematic_break] = STATE(1239), + [sym_block_quote] = STATE(1239), + [sym__block_quote_prefix] = STATE(300), + [sym_link_reference_definition] = STATE(1239), + [sym_block_attribute] = STATE(1239), + [sym__paragraph] = STATE(1239), + [sym__paragraph_content] = STATE(799), + [sym__paragraph_inline_content] = STATE(896), + [sym__inline] = STATE(715), + [sym__symbol_fallback] = STATE(381), + [aux_sym__list_dash_repeat1] = STATE(453), + [aux_sym__list_plus_repeat1] = STATE(458), + [aux_sym__list_star_repeat1] = STATE(463), + [aux_sym__list_task_repeat1] = STATE(440), + [aux_sym__list_definition_repeat1] = STATE(562), + [aux_sym__list_decimal_period_repeat1] = STATE(563), + [aux_sym__list_decimal_paren_repeat1] = STATE(542), + [aux_sym__list_decimal_parens_repeat1] = STATE(564), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(565), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(566), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(567), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(568), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(569), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(570), + [aux_sym__list_lower_roman_period_repeat1] = STATE(571), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(572), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(573), + [aux_sym__list_upper_roman_period_repeat1] = STATE(574), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(575), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(576), + [aux_sym_table_repeat1] = STATE(406), + [aux_sym__block_quote_prefix_repeat1] = STATE(330), + [aux_sym__inline_repeat1] = STATE(381), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_PIPE] = ACTIONS(391), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(393), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), @@ -9946,9 +10336,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), [sym__newline] = ACTIONS(423), - [sym__heading_begin] = ACTIONS(393), + [sym__heading_begin] = ACTIONS(397), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(395), + [sym__code_block_begin] = ACTIONS(399), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -9969,105 +10359,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(397), - [sym__block_quote_continuation] = ACTIONS(399), - [sym__thematic_break_dash] = ACTIONS(401), - [sym__thematic_break_star] = ACTIONS(401), + [sym__block_quote_begin] = ACTIONS(401), + [sym__block_quote_continuation] = ACTIONS(403), + [sym__thematic_break_dash] = ACTIONS(405), + [sym__thematic_break_star] = ACTIONS(405), }, [42] = { - [sym__block_with_heading] = STATE(446), - [sym__block_element] = STATE(446), - [sym_heading] = STATE(446), - [sym_list] = STATE(446), - [sym__list_dash] = STATE(684), - [sym__list_item_dash] = STATE(634), - [sym__list_plus] = STATE(684), - [sym__list_item_plus] = STATE(651), - [sym__list_star] = STATE(684), - [sym__list_item_star] = STATE(697), - [sym__list_task] = STATE(684), - [sym__list_item_task] = STATE(707), - [sym_list_marker_task] = STATE(47), - [sym__list_definition] = STATE(684), - [sym__list_item_definition] = STATE(736), - [sym__list_decimal_period] = STATE(684), - [sym__list_item_decimal_period] = STATE(795), - [sym__list_decimal_paren] = STATE(684), - [sym__list_item_decimal_paren] = STATE(848), - [sym__list_decimal_parens] = STATE(684), - [sym__list_item_decimal_parens] = STATE(772), - [sym__list_lower_alpha_period] = STATE(684), - [sym__list_item_lower_alpha_period] = STATE(787), - [sym__list_lower_alpha_paren] = STATE(684), - [sym__list_item_lower_alpha_paren] = STATE(792), - [sym__list_lower_alpha_parens] = STATE(684), - [sym__list_item_lower_alpha_parens] = STATE(793), - [sym__list_upper_alpha_period] = STATE(684), - [sym__list_item_upper_alpha_period] = STATE(797), - [sym__list_upper_alpha_paren] = STATE(684), - [sym__list_item_upper_alpha_paren] = STATE(798), - [sym__list_upper_alpha_parens] = STATE(684), - [sym__list_item_upper_alpha_parens] = STATE(799), - [sym__list_lower_roman_period] = STATE(684), - [sym__list_item_lower_roman_period] = STATE(801), - [sym__list_lower_roman_paren] = STATE(684), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(684), - [sym__list_item_lower_roman_parens] = STATE(814), - [sym__list_upper_roman_period] = STATE(684), - [sym__list_item_upper_roman_period] = STATE(818), - [sym__list_upper_roman_paren] = STATE(684), - [sym__list_item_upper_roman_paren] = STATE(819), - [sym__list_upper_roman_parens] = STATE(684), - [sym__list_item_upper_roman_parens] = STATE(822), - [sym_list_item_content] = STATE(768), - [sym_table] = STATE(446), - [sym__table_content] = STATE(368), - [sym_table_separator] = STATE(368), - [sym_table_row] = STATE(389), - [sym_footnote] = STATE(446), - [sym_footnote_marker_begin] = STATE(1116), - [sym_div] = STATE(446), - [sym__div_marker_begin] = STATE(988), - [sym_code_block] = STATE(446), - [sym_raw_block] = STATE(446), - [sym_thematic_break] = STATE(446), - [sym_block_quote] = STATE(446), - [sym__block_quote_prefix] = STATE(294), - [sym_link_reference_definition] = STATE(446), - [sym_block_attribute] = STATE(446), - [sym__paragraph] = STATE(446), - [sym__paragraph_content] = STATE(932), - [sym__paragraph_inline_content] = STATE(930), - [sym__inline] = STATE(695), - [sym__symbol_fallback] = STATE(358), - [aux_sym__list_dash_repeat1] = STATE(423), - [aux_sym__list_plus_repeat1] = STATE(417), - [aux_sym__list_star_repeat1] = STATE(420), - [aux_sym__list_task_repeat1] = STATE(395), - [aux_sym__list_definition_repeat1] = STATE(510), - [aux_sym__list_decimal_period_repeat1] = STATE(511), - [aux_sym__list_decimal_paren_repeat1] = STATE(512), - [aux_sym__list_decimal_parens_repeat1] = STATE(513), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(514), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(515), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(516), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(517), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(518), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(519), - [aux_sym__list_lower_roman_period_repeat1] = STATE(520), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(521), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(522), - [aux_sym__list_upper_roman_period_repeat1] = STATE(523), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(524), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(525), - [aux_sym_table_repeat1] = STATE(368), - [aux_sym__block_quote_prefix_repeat1] = STATE(320), - [aux_sym__inline_repeat1] = STATE(358), - [anon_sym_LBRACK] = ACTIONS(385), - [anon_sym_PIPE] = ACTIONS(387), + [sym__block_with_heading] = STATE(1240), + [sym__block_element] = STATE(1240), + [sym_heading] = STATE(1240), + [sym_list] = STATE(1240), + [sym__list_dash] = STATE(1183), + [sym__list_item_dash] = STATE(727), + [sym__list_plus] = STATE(1183), + [sym__list_item_plus] = STATE(730), + [sym__list_star] = STATE(1183), + [sym__list_item_star] = STATE(759), + [sym__list_task] = STATE(1183), + [sym__list_item_task] = STATE(761), + [sym_list_marker_task] = STATE(46), + [sym__list_definition] = STATE(1183), + [sym__list_item_definition] = STATE(819), + [sym__list_decimal_period] = STATE(1183), + [sym__list_item_decimal_period] = STATE(852), + [sym__list_decimal_paren] = STATE(1183), + [sym__list_item_decimal_paren] = STATE(837), + [sym__list_decimal_parens] = STATE(1183), + [sym__list_item_decimal_parens] = STATE(815), + [sym__list_lower_alpha_period] = STATE(1183), + [sym__list_item_lower_alpha_period] = STATE(843), + [sym__list_lower_alpha_paren] = STATE(1183), + [sym__list_item_lower_alpha_paren] = STATE(850), + [sym__list_lower_alpha_parens] = STATE(1183), + [sym__list_item_lower_alpha_parens] = STATE(853), + [sym__list_upper_alpha_period] = STATE(1183), + [sym__list_item_upper_alpha_period] = STATE(854), + [sym__list_upper_alpha_paren] = STATE(1183), + [sym__list_item_upper_alpha_paren] = STATE(855), + [sym__list_upper_alpha_parens] = STATE(1183), + [sym__list_item_upper_alpha_parens] = STATE(856), + [sym__list_lower_roman_period] = STATE(1183), + [sym__list_item_lower_roman_period] = STATE(857), + [sym__list_lower_roman_paren] = STATE(1183), + [sym__list_item_lower_roman_paren] = STATE(871), + [sym__list_lower_roman_parens] = STATE(1183), + [sym__list_item_lower_roman_parens] = STATE(874), + [sym__list_upper_roman_period] = STATE(1183), + [sym__list_item_upper_roman_period] = STATE(876), + [sym__list_upper_roman_paren] = STATE(1183), + [sym__list_item_upper_roman_paren] = STATE(878), + [sym__list_upper_roman_parens] = STATE(1183), + [sym__list_item_upper_roman_parens] = STATE(880), + [sym_list_item_content] = STATE(830), + [sym_table] = STATE(1240), + [sym__table_content] = STATE(406), + [sym_table_separator] = STATE(406), + [sym_table_row] = STATE(417), + [sym_footnote] = STATE(1240), + [sym_footnote_marker_begin] = STATE(1298), + [sym_div] = STATE(1240), + [sym__div_marker_begin] = STATE(1119), + [sym_code_block] = STATE(1240), + [sym_raw_block] = STATE(1240), + [sym_thematic_break] = STATE(1240), + [sym_block_quote] = STATE(1240), + [sym__block_quote_prefix] = STATE(300), + [sym_link_reference_definition] = STATE(1240), + [sym_block_attribute] = STATE(1240), + [sym__paragraph] = STATE(1240), + [sym__paragraph_content] = STATE(799), + [sym__paragraph_inline_content] = STATE(896), + [sym__inline] = STATE(715), + [sym__symbol_fallback] = STATE(381), + [aux_sym__list_dash_repeat1] = STATE(453), + [aux_sym__list_plus_repeat1] = STATE(458), + [aux_sym__list_star_repeat1] = STATE(463), + [aux_sym__list_task_repeat1] = STATE(440), + [aux_sym__list_definition_repeat1] = STATE(562), + [aux_sym__list_decimal_period_repeat1] = STATE(563), + [aux_sym__list_decimal_paren_repeat1] = STATE(542), + [aux_sym__list_decimal_parens_repeat1] = STATE(564), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(565), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(566), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(567), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(568), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(569), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(570), + [aux_sym__list_lower_roman_period_repeat1] = STATE(571), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(572), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(573), + [aux_sym__list_upper_roman_period_repeat1] = STATE(574), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(575), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(576), + [aux_sym_table_repeat1] = STATE(406), + [aux_sym__block_quote_prefix_repeat1] = STATE(330), + [aux_sym__inline_repeat1] = STATE(381), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_PIPE] = ACTIONS(391), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(393), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), @@ -10075,9 +10465,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), [sym__newline] = ACTIONS(425), - [sym__heading_begin] = ACTIONS(393), + [sym__heading_begin] = ACTIONS(397), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(395), + [sym__code_block_begin] = ACTIONS(399), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -10098,105 +10488,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(397), - [sym__block_quote_continuation] = ACTIONS(399), - [sym__thematic_break_dash] = ACTIONS(401), - [sym__thematic_break_star] = ACTIONS(401), + [sym__block_quote_begin] = ACTIONS(401), + [sym__block_quote_continuation] = ACTIONS(403), + [sym__thematic_break_dash] = ACTIONS(405), + [sym__thematic_break_star] = ACTIONS(405), }, [43] = { - [sym__block_with_heading] = STATE(448), - [sym__block_element] = STATE(448), - [sym_heading] = STATE(448), - [sym_list] = STATE(448), - [sym__list_dash] = STATE(684), - [sym__list_item_dash] = STATE(634), - [sym__list_plus] = STATE(684), - [sym__list_item_plus] = STATE(651), - [sym__list_star] = STATE(684), - [sym__list_item_star] = STATE(697), - [sym__list_task] = STATE(684), - [sym__list_item_task] = STATE(707), - [sym_list_marker_task] = STATE(47), - [sym__list_definition] = STATE(684), - [sym__list_item_definition] = STATE(736), - [sym__list_decimal_period] = STATE(684), - [sym__list_item_decimal_period] = STATE(795), - [sym__list_decimal_paren] = STATE(684), - [sym__list_item_decimal_paren] = STATE(848), - [sym__list_decimal_parens] = STATE(684), - [sym__list_item_decimal_parens] = STATE(772), - [sym__list_lower_alpha_period] = STATE(684), - [sym__list_item_lower_alpha_period] = STATE(787), - [sym__list_lower_alpha_paren] = STATE(684), - [sym__list_item_lower_alpha_paren] = STATE(792), - [sym__list_lower_alpha_parens] = STATE(684), - [sym__list_item_lower_alpha_parens] = STATE(793), - [sym__list_upper_alpha_period] = STATE(684), - [sym__list_item_upper_alpha_period] = STATE(797), - [sym__list_upper_alpha_paren] = STATE(684), - [sym__list_item_upper_alpha_paren] = STATE(798), - [sym__list_upper_alpha_parens] = STATE(684), - [sym__list_item_upper_alpha_parens] = STATE(799), - [sym__list_lower_roman_period] = STATE(684), - [sym__list_item_lower_roman_period] = STATE(801), - [sym__list_lower_roman_paren] = STATE(684), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(684), - [sym__list_item_lower_roman_parens] = STATE(814), - [sym__list_upper_roman_period] = STATE(684), - [sym__list_item_upper_roman_period] = STATE(818), - [sym__list_upper_roman_paren] = STATE(684), - [sym__list_item_upper_roman_paren] = STATE(819), - [sym__list_upper_roman_parens] = STATE(684), - [sym__list_item_upper_roman_parens] = STATE(822), - [sym_list_item_content] = STATE(769), - [sym_table] = STATE(448), - [sym__table_content] = STATE(368), - [sym_table_separator] = STATE(368), - [sym_table_row] = STATE(389), - [sym_footnote] = STATE(448), - [sym_footnote_marker_begin] = STATE(1116), - [sym_div] = STATE(448), - [sym__div_marker_begin] = STATE(988), - [sym_code_block] = STATE(448), - [sym_raw_block] = STATE(448), - [sym_thematic_break] = STATE(448), - [sym_block_quote] = STATE(448), - [sym__block_quote_prefix] = STATE(294), - [sym_link_reference_definition] = STATE(448), - [sym_block_attribute] = STATE(448), - [sym__paragraph] = STATE(448), - [sym__paragraph_content] = STATE(932), - [sym__paragraph_inline_content] = STATE(930), - [sym__inline] = STATE(695), - [sym__symbol_fallback] = STATE(358), - [aux_sym__list_dash_repeat1] = STATE(423), - [aux_sym__list_plus_repeat1] = STATE(417), - [aux_sym__list_star_repeat1] = STATE(420), - [aux_sym__list_task_repeat1] = STATE(395), - [aux_sym__list_definition_repeat1] = STATE(510), - [aux_sym__list_decimal_period_repeat1] = STATE(511), - [aux_sym__list_decimal_paren_repeat1] = STATE(512), - [aux_sym__list_decimal_parens_repeat1] = STATE(513), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(514), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(515), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(516), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(517), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(518), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(519), - [aux_sym__list_lower_roman_period_repeat1] = STATE(520), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(521), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(522), - [aux_sym__list_upper_roman_period_repeat1] = STATE(523), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(524), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(525), - [aux_sym_table_repeat1] = STATE(368), - [aux_sym__block_quote_prefix_repeat1] = STATE(320), - [aux_sym__inline_repeat1] = STATE(358), - [anon_sym_LBRACK] = ACTIONS(385), - [anon_sym_PIPE] = ACTIONS(387), + [sym__block_with_heading] = STATE(1241), + [sym__block_element] = STATE(1241), + [sym_heading] = STATE(1241), + [sym_list] = STATE(1241), + [sym__list_dash] = STATE(1183), + [sym__list_item_dash] = STATE(727), + [sym__list_plus] = STATE(1183), + [sym__list_item_plus] = STATE(730), + [sym__list_star] = STATE(1183), + [sym__list_item_star] = STATE(759), + [sym__list_task] = STATE(1183), + [sym__list_item_task] = STATE(761), + [sym_list_marker_task] = STATE(46), + [sym__list_definition] = STATE(1183), + [sym__list_item_definition] = STATE(819), + [sym__list_decimal_period] = STATE(1183), + [sym__list_item_decimal_period] = STATE(852), + [sym__list_decimal_paren] = STATE(1183), + [sym__list_item_decimal_paren] = STATE(837), + [sym__list_decimal_parens] = STATE(1183), + [sym__list_item_decimal_parens] = STATE(815), + [sym__list_lower_alpha_period] = STATE(1183), + [sym__list_item_lower_alpha_period] = STATE(843), + [sym__list_lower_alpha_paren] = STATE(1183), + [sym__list_item_lower_alpha_paren] = STATE(850), + [sym__list_lower_alpha_parens] = STATE(1183), + [sym__list_item_lower_alpha_parens] = STATE(853), + [sym__list_upper_alpha_period] = STATE(1183), + [sym__list_item_upper_alpha_period] = STATE(854), + [sym__list_upper_alpha_paren] = STATE(1183), + [sym__list_item_upper_alpha_paren] = STATE(855), + [sym__list_upper_alpha_parens] = STATE(1183), + [sym__list_item_upper_alpha_parens] = STATE(856), + [sym__list_lower_roman_period] = STATE(1183), + [sym__list_item_lower_roman_period] = STATE(857), + [sym__list_lower_roman_paren] = STATE(1183), + [sym__list_item_lower_roman_paren] = STATE(871), + [sym__list_lower_roman_parens] = STATE(1183), + [sym__list_item_lower_roman_parens] = STATE(874), + [sym__list_upper_roman_period] = STATE(1183), + [sym__list_item_upper_roman_period] = STATE(876), + [sym__list_upper_roman_paren] = STATE(1183), + [sym__list_item_upper_roman_paren] = STATE(878), + [sym__list_upper_roman_parens] = STATE(1183), + [sym__list_item_upper_roman_parens] = STATE(880), + [sym_list_item_content] = STATE(833), + [sym_table] = STATE(1241), + [sym__table_content] = STATE(406), + [sym_table_separator] = STATE(406), + [sym_table_row] = STATE(417), + [sym_footnote] = STATE(1241), + [sym_footnote_marker_begin] = STATE(1298), + [sym_div] = STATE(1241), + [sym__div_marker_begin] = STATE(1119), + [sym_code_block] = STATE(1241), + [sym_raw_block] = STATE(1241), + [sym_thematic_break] = STATE(1241), + [sym_block_quote] = STATE(1241), + [sym__block_quote_prefix] = STATE(300), + [sym_link_reference_definition] = STATE(1241), + [sym_block_attribute] = STATE(1241), + [sym__paragraph] = STATE(1241), + [sym__paragraph_content] = STATE(799), + [sym__paragraph_inline_content] = STATE(896), + [sym__inline] = STATE(715), + [sym__symbol_fallback] = STATE(381), + [aux_sym__list_dash_repeat1] = STATE(453), + [aux_sym__list_plus_repeat1] = STATE(458), + [aux_sym__list_star_repeat1] = STATE(463), + [aux_sym__list_task_repeat1] = STATE(440), + [aux_sym__list_definition_repeat1] = STATE(562), + [aux_sym__list_decimal_period_repeat1] = STATE(563), + [aux_sym__list_decimal_paren_repeat1] = STATE(542), + [aux_sym__list_decimal_parens_repeat1] = STATE(564), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(565), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(566), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(567), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(568), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(569), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(570), + [aux_sym__list_lower_roman_period_repeat1] = STATE(571), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(572), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(573), + [aux_sym__list_upper_roman_period_repeat1] = STATE(574), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(575), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(576), + [aux_sym_table_repeat1] = STATE(406), + [aux_sym__block_quote_prefix_repeat1] = STATE(330), + [aux_sym__inline_repeat1] = STATE(381), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_PIPE] = ACTIONS(391), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(393), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), @@ -10204,9 +10594,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), [sym__newline] = ACTIONS(427), - [sym__heading_begin] = ACTIONS(393), + [sym__heading_begin] = ACTIONS(397), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(395), + [sym__code_block_begin] = ACTIONS(399), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -10227,115 +10617,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(397), - [sym__block_quote_continuation] = ACTIONS(399), - [sym__thematic_break_dash] = ACTIONS(401), - [sym__thematic_break_star] = ACTIONS(401), + [sym__block_quote_begin] = ACTIONS(401), + [sym__block_quote_continuation] = ACTIONS(403), + [sym__thematic_break_dash] = ACTIONS(405), + [sym__thematic_break_star] = ACTIONS(405), }, [44] = { - [sym__block_with_heading] = STATE(453), - [sym__block_element] = STATE(453), - [sym_heading] = STATE(453), - [sym_list] = STATE(453), - [sym__list_dash] = STATE(684), - [sym__list_item_dash] = STATE(634), - [sym__list_plus] = STATE(684), - [sym__list_item_plus] = STATE(651), - [sym__list_star] = STATE(684), - [sym__list_item_star] = STATE(697), - [sym__list_task] = STATE(684), - [sym__list_item_task] = STATE(707), - [sym_list_marker_task] = STATE(47), - [sym__list_definition] = STATE(684), - [sym__list_item_definition] = STATE(736), - [sym__list_decimal_period] = STATE(684), - [sym__list_item_decimal_period] = STATE(795), - [sym__list_decimal_paren] = STATE(684), - [sym__list_item_decimal_paren] = STATE(848), - [sym__list_decimal_parens] = STATE(684), - [sym__list_item_decimal_parens] = STATE(772), - [sym__list_lower_alpha_period] = STATE(684), - [sym__list_item_lower_alpha_period] = STATE(787), - [sym__list_lower_alpha_paren] = STATE(684), - [sym__list_item_lower_alpha_paren] = STATE(792), - [sym__list_lower_alpha_parens] = STATE(684), - [sym__list_item_lower_alpha_parens] = STATE(793), - [sym__list_upper_alpha_period] = STATE(684), - [sym__list_item_upper_alpha_period] = STATE(797), - [sym__list_upper_alpha_paren] = STATE(684), - [sym__list_item_upper_alpha_paren] = STATE(798), - [sym__list_upper_alpha_parens] = STATE(684), - [sym__list_item_upper_alpha_parens] = STATE(799), - [sym__list_lower_roman_period] = STATE(684), - [sym__list_item_lower_roman_period] = STATE(801), - [sym__list_lower_roman_paren] = STATE(684), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(684), - [sym__list_item_lower_roman_parens] = STATE(814), - [sym__list_upper_roman_period] = STATE(684), - [sym__list_item_upper_roman_period] = STATE(818), - [sym__list_upper_roman_paren] = STATE(684), - [sym__list_item_upper_roman_paren] = STATE(819), - [sym__list_upper_roman_parens] = STATE(684), - [sym__list_item_upper_roman_parens] = STATE(822), - [sym_list_item_content] = STATE(627), - [sym_table] = STATE(453), - [sym__table_content] = STATE(368), - [sym_table_separator] = STATE(368), - [sym_table_row] = STATE(389), - [sym_footnote] = STATE(453), - [sym_footnote_marker_begin] = STATE(1116), - [sym_div] = STATE(453), - [sym__div_marker_begin] = STATE(988), - [sym_code_block] = STATE(453), - [sym_raw_block] = STATE(453), - [sym_thematic_break] = STATE(453), - [sym_block_quote] = STATE(453), - [sym__block_quote_prefix] = STATE(294), - [sym_link_reference_definition] = STATE(453), - [sym_block_attribute] = STATE(453), - [sym__paragraph] = STATE(453), - [sym__paragraph_content] = STATE(932), - [sym__paragraph_inline_content] = STATE(930), - [sym__inline] = STATE(695), - [sym__symbol_fallback] = STATE(358), - [aux_sym__list_dash_repeat1] = STATE(423), - [aux_sym__list_plus_repeat1] = STATE(417), - [aux_sym__list_star_repeat1] = STATE(420), - [aux_sym__list_task_repeat1] = STATE(395), - [aux_sym__list_definition_repeat1] = STATE(510), - [aux_sym__list_decimal_period_repeat1] = STATE(511), - [aux_sym__list_decimal_paren_repeat1] = STATE(512), - [aux_sym__list_decimal_parens_repeat1] = STATE(513), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(514), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(515), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(516), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(517), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(518), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(519), - [aux_sym__list_lower_roman_period_repeat1] = STATE(520), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(521), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(522), - [aux_sym__list_upper_roman_period_repeat1] = STATE(523), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(524), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(525), - [aux_sym_table_repeat1] = STATE(368), - [aux_sym__block_quote_prefix_repeat1] = STATE(320), - [aux_sym__inline_repeat1] = STATE(358), - [anon_sym_LBRACK] = ACTIONS(385), - [anon_sym_PIPE] = ACTIONS(387), + [sym__block_with_heading] = STATE(1144), + [sym__block_element] = STATE(1144), + [sym_heading] = STATE(1144), + [sym_list] = STATE(1144), + [sym__list_dash] = STATE(1183), + [sym__list_item_dash] = STATE(727), + [sym__list_plus] = STATE(1183), + [sym__list_item_plus] = STATE(730), + [sym__list_star] = STATE(1183), + [sym__list_item_star] = STATE(759), + [sym__list_task] = STATE(1183), + [sym__list_item_task] = STATE(761), + [sym_list_marker_task] = STATE(46), + [sym__list_definition] = STATE(1183), + [sym__list_item_definition] = STATE(819), + [sym__list_decimal_period] = STATE(1183), + [sym__list_item_decimal_period] = STATE(852), + [sym__list_decimal_paren] = STATE(1183), + [sym__list_item_decimal_paren] = STATE(837), + [sym__list_decimal_parens] = STATE(1183), + [sym__list_item_decimal_parens] = STATE(815), + [sym__list_lower_alpha_period] = STATE(1183), + [sym__list_item_lower_alpha_period] = STATE(843), + [sym__list_lower_alpha_paren] = STATE(1183), + [sym__list_item_lower_alpha_paren] = STATE(850), + [sym__list_lower_alpha_parens] = STATE(1183), + [sym__list_item_lower_alpha_parens] = STATE(853), + [sym__list_upper_alpha_period] = STATE(1183), + [sym__list_item_upper_alpha_period] = STATE(854), + [sym__list_upper_alpha_paren] = STATE(1183), + [sym__list_item_upper_alpha_paren] = STATE(855), + [sym__list_upper_alpha_parens] = STATE(1183), + [sym__list_item_upper_alpha_parens] = STATE(856), + [sym__list_lower_roman_period] = STATE(1183), + [sym__list_item_lower_roman_period] = STATE(857), + [sym__list_lower_roman_paren] = STATE(1183), + [sym__list_item_lower_roman_paren] = STATE(871), + [sym__list_lower_roman_parens] = STATE(1183), + [sym__list_item_lower_roman_parens] = STATE(874), + [sym__list_upper_roman_period] = STATE(1183), + [sym__list_item_upper_roman_period] = STATE(876), + [sym__list_upper_roman_paren] = STATE(1183), + [sym__list_item_upper_roman_paren] = STATE(878), + [sym__list_upper_roman_parens] = STATE(1183), + [sym__list_item_upper_roman_parens] = STATE(880), + [sym_list_item_content] = STATE(705), + [sym_table] = STATE(1144), + [sym__table_content] = STATE(406), + [sym_table_separator] = STATE(406), + [sym_table_row] = STATE(417), + [sym_footnote] = STATE(1144), + [sym_footnote_marker_begin] = STATE(1298), + [sym_div] = STATE(1144), + [sym__div_marker_begin] = STATE(1119), + [sym_code_block] = STATE(1144), + [sym_raw_block] = STATE(1144), + [sym_thematic_break] = STATE(1144), + [sym_block_quote] = STATE(1144), + [sym__block_quote_prefix] = STATE(300), + [sym_link_reference_definition] = STATE(1144), + [sym_block_attribute] = STATE(1144), + [sym__paragraph] = STATE(1144), + [sym__paragraph_content] = STATE(799), + [sym__paragraph_inline_content] = STATE(896), + [sym__inline] = STATE(715), + [sym__symbol_fallback] = STATE(381), + [aux_sym__list_dash_repeat1] = STATE(453), + [aux_sym__list_plus_repeat1] = STATE(458), + [aux_sym__list_star_repeat1] = STATE(463), + [aux_sym__list_task_repeat1] = STATE(440), + [aux_sym__list_definition_repeat1] = STATE(562), + [aux_sym__list_decimal_period_repeat1] = STATE(563), + [aux_sym__list_decimal_paren_repeat1] = STATE(542), + [aux_sym__list_decimal_parens_repeat1] = STATE(564), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(565), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(566), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(567), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(568), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(569), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(570), + [aux_sym__list_lower_roman_period_repeat1] = STATE(571), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(572), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(573), + [aux_sym__list_upper_roman_period_repeat1] = STATE(574), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(575), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(576), + [aux_sym_table_repeat1] = STATE(406), + [aux_sym__block_quote_prefix_repeat1] = STATE(330), + [aux_sym__inline_repeat1] = STATE(381), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_PIPE] = ACTIONS(391), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(393), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(409), - [sym__heading_begin] = ACTIONS(393), + [sym__newline] = ACTIONS(429), + [sym__heading_begin] = ACTIONS(397), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(395), + [sym__code_block_begin] = ACTIONS(399), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -10356,115 +10746,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(397), - [sym__block_quote_continuation] = ACTIONS(399), - [sym__thematic_break_dash] = ACTIONS(401), - [sym__thematic_break_star] = ACTIONS(401), + [sym__block_quote_begin] = ACTIONS(401), + [sym__block_quote_continuation] = ACTIONS(403), + [sym__thematic_break_dash] = ACTIONS(405), + [sym__thematic_break_star] = ACTIONS(405), }, [45] = { - [sym__block_with_heading] = STATE(476), - [sym__block_element] = STATE(476), - [sym_heading] = STATE(476), - [sym_list] = STATE(476), - [sym__list_dash] = STATE(684), - [sym__list_item_dash] = STATE(634), - [sym__list_plus] = STATE(684), - [sym__list_item_plus] = STATE(651), - [sym__list_star] = STATE(684), - [sym__list_item_star] = STATE(697), - [sym__list_task] = STATE(684), - [sym__list_item_task] = STATE(707), - [sym_list_marker_task] = STATE(47), - [sym__list_definition] = STATE(684), - [sym__list_item_definition] = STATE(736), - [sym__list_decimal_period] = STATE(684), - [sym__list_item_decimal_period] = STATE(795), - [sym__list_decimal_paren] = STATE(684), - [sym__list_item_decimal_paren] = STATE(848), - [sym__list_decimal_parens] = STATE(684), - [sym__list_item_decimal_parens] = STATE(772), - [sym__list_lower_alpha_period] = STATE(684), - [sym__list_item_lower_alpha_period] = STATE(787), - [sym__list_lower_alpha_paren] = STATE(684), - [sym__list_item_lower_alpha_paren] = STATE(792), - [sym__list_lower_alpha_parens] = STATE(684), - [sym__list_item_lower_alpha_parens] = STATE(793), - [sym__list_upper_alpha_period] = STATE(684), - [sym__list_item_upper_alpha_period] = STATE(797), - [sym__list_upper_alpha_paren] = STATE(684), - [sym__list_item_upper_alpha_paren] = STATE(798), - [sym__list_upper_alpha_parens] = STATE(684), - [sym__list_item_upper_alpha_parens] = STATE(799), - [sym__list_lower_roman_period] = STATE(684), - [sym__list_item_lower_roman_period] = STATE(801), - [sym__list_lower_roman_paren] = STATE(684), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(684), - [sym__list_item_lower_roman_parens] = STATE(814), - [sym__list_upper_roman_period] = STATE(684), - [sym__list_item_upper_roman_period] = STATE(818), - [sym__list_upper_roman_paren] = STATE(684), - [sym__list_item_upper_roman_paren] = STATE(819), - [sym__list_upper_roman_parens] = STATE(684), - [sym__list_item_upper_roman_parens] = STATE(822), - [sym_list_item_content] = STATE(729), - [sym_table] = STATE(476), - [sym__table_content] = STATE(368), - [sym_table_separator] = STATE(368), - [sym_table_row] = STATE(389), - [sym_footnote] = STATE(476), - [sym_footnote_marker_begin] = STATE(1116), - [sym_div] = STATE(476), - [sym__div_marker_begin] = STATE(988), - [sym_code_block] = STATE(476), - [sym_raw_block] = STATE(476), - [sym_thematic_break] = STATE(476), - [sym_block_quote] = STATE(476), - [sym__block_quote_prefix] = STATE(294), - [sym_link_reference_definition] = STATE(476), - [sym_block_attribute] = STATE(476), - [sym__paragraph] = STATE(476), - [sym__paragraph_content] = STATE(932), - [sym__paragraph_inline_content] = STATE(930), - [sym__inline] = STATE(695), - [sym__symbol_fallback] = STATE(358), - [aux_sym__list_dash_repeat1] = STATE(423), - [aux_sym__list_plus_repeat1] = STATE(417), - [aux_sym__list_star_repeat1] = STATE(420), - [aux_sym__list_task_repeat1] = STATE(395), - [aux_sym__list_definition_repeat1] = STATE(510), - [aux_sym__list_decimal_period_repeat1] = STATE(511), - [aux_sym__list_decimal_paren_repeat1] = STATE(512), - [aux_sym__list_decimal_parens_repeat1] = STATE(513), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(514), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(515), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(516), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(517), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(518), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(519), - [aux_sym__list_lower_roman_period_repeat1] = STATE(520), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(521), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(522), - [aux_sym__list_upper_roman_period_repeat1] = STATE(523), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(524), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(525), - [aux_sym_table_repeat1] = STATE(368), - [aux_sym__block_quote_prefix_repeat1] = STATE(320), - [aux_sym__inline_repeat1] = STATE(358), - [anon_sym_LBRACK] = ACTIONS(385), - [anon_sym_PIPE] = ACTIONS(387), + [sym__block_with_heading] = STATE(1167), + [sym__block_element] = STATE(1167), + [sym_heading] = STATE(1167), + [sym_list] = STATE(1167), + [sym__list_dash] = STATE(1183), + [sym__list_item_dash] = STATE(727), + [sym__list_plus] = STATE(1183), + [sym__list_item_plus] = STATE(730), + [sym__list_star] = STATE(1183), + [sym__list_item_star] = STATE(759), + [sym__list_task] = STATE(1183), + [sym__list_item_task] = STATE(761), + [sym_list_marker_task] = STATE(46), + [sym__list_definition] = STATE(1183), + [sym__list_item_definition] = STATE(819), + [sym__list_decimal_period] = STATE(1183), + [sym__list_item_decimal_period] = STATE(852), + [sym__list_decimal_paren] = STATE(1183), + [sym__list_item_decimal_paren] = STATE(837), + [sym__list_decimal_parens] = STATE(1183), + [sym__list_item_decimal_parens] = STATE(815), + [sym__list_lower_alpha_period] = STATE(1183), + [sym__list_item_lower_alpha_period] = STATE(843), + [sym__list_lower_alpha_paren] = STATE(1183), + [sym__list_item_lower_alpha_paren] = STATE(850), + [sym__list_lower_alpha_parens] = STATE(1183), + [sym__list_item_lower_alpha_parens] = STATE(853), + [sym__list_upper_alpha_period] = STATE(1183), + [sym__list_item_upper_alpha_period] = STATE(854), + [sym__list_upper_alpha_paren] = STATE(1183), + [sym__list_item_upper_alpha_paren] = STATE(855), + [sym__list_upper_alpha_parens] = STATE(1183), + [sym__list_item_upper_alpha_parens] = STATE(856), + [sym__list_lower_roman_period] = STATE(1183), + [sym__list_item_lower_roman_period] = STATE(857), + [sym__list_lower_roman_paren] = STATE(1183), + [sym__list_item_lower_roman_paren] = STATE(871), + [sym__list_lower_roman_parens] = STATE(1183), + [sym__list_item_lower_roman_parens] = STATE(874), + [sym__list_upper_roman_period] = STATE(1183), + [sym__list_item_upper_roman_period] = STATE(876), + [sym__list_upper_roman_paren] = STATE(1183), + [sym__list_item_upper_roman_paren] = STATE(878), + [sym__list_upper_roman_parens] = STATE(1183), + [sym__list_item_upper_roman_parens] = STATE(880), + [sym_list_item_content] = STATE(879), + [sym_table] = STATE(1167), + [sym__table_content] = STATE(406), + [sym_table_separator] = STATE(406), + [sym_table_row] = STATE(417), + [sym_footnote] = STATE(1167), + [sym_footnote_marker_begin] = STATE(1298), + [sym_div] = STATE(1167), + [sym__div_marker_begin] = STATE(1119), + [sym_code_block] = STATE(1167), + [sym_raw_block] = STATE(1167), + [sym_thematic_break] = STATE(1167), + [sym_block_quote] = STATE(1167), + [sym__block_quote_prefix] = STATE(300), + [sym_link_reference_definition] = STATE(1167), + [sym_block_attribute] = STATE(1167), + [sym__paragraph] = STATE(1167), + [sym__paragraph_content] = STATE(799), + [sym__paragraph_inline_content] = STATE(896), + [sym__inline] = STATE(715), + [sym__symbol_fallback] = STATE(381), + [aux_sym__list_dash_repeat1] = STATE(453), + [aux_sym__list_plus_repeat1] = STATE(458), + [aux_sym__list_star_repeat1] = STATE(463), + [aux_sym__list_task_repeat1] = STATE(440), + [aux_sym__list_definition_repeat1] = STATE(562), + [aux_sym__list_decimal_period_repeat1] = STATE(563), + [aux_sym__list_decimal_paren_repeat1] = STATE(542), + [aux_sym__list_decimal_parens_repeat1] = STATE(564), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(565), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(566), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(567), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(568), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(569), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(570), + [aux_sym__list_lower_roman_period_repeat1] = STATE(571), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(572), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(573), + [aux_sym__list_upper_roman_period_repeat1] = STATE(574), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(575), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(576), + [aux_sym_table_repeat1] = STATE(406), + [aux_sym__block_quote_prefix_repeat1] = STATE(330), + [aux_sym__inline_repeat1] = STATE(381), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_PIPE] = ACTIONS(391), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(393), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(429), - [sym__heading_begin] = ACTIONS(393), + [sym__newline] = ACTIONS(431), + [sym__heading_begin] = ACTIONS(397), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(395), + [sym__code_block_begin] = ACTIONS(399), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -10485,115 +10875,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(397), - [sym__block_quote_continuation] = ACTIONS(399), - [sym__thematic_break_dash] = ACTIONS(401), - [sym__thematic_break_star] = ACTIONS(401), + [sym__block_quote_begin] = ACTIONS(401), + [sym__block_quote_continuation] = ACTIONS(403), + [sym__thematic_break_dash] = ACTIONS(405), + [sym__thematic_break_star] = ACTIONS(405), }, [46] = { - [sym__block_with_heading] = STATE(464), - [sym__block_element] = STATE(464), - [sym_heading] = STATE(464), - [sym_list] = STATE(464), - [sym__list_dash] = STATE(684), - [sym__list_item_dash] = STATE(634), - [sym__list_plus] = STATE(684), - [sym__list_item_plus] = STATE(651), - [sym__list_star] = STATE(684), - [sym__list_item_star] = STATE(697), - [sym__list_task] = STATE(684), - [sym__list_item_task] = STATE(707), - [sym_list_marker_task] = STATE(47), - [sym__list_definition] = STATE(684), - [sym__list_item_definition] = STATE(736), - [sym__list_decimal_period] = STATE(684), - [sym__list_item_decimal_period] = STATE(795), - [sym__list_decimal_paren] = STATE(684), - [sym__list_item_decimal_paren] = STATE(848), - [sym__list_decimal_parens] = STATE(684), - [sym__list_item_decimal_parens] = STATE(772), - [sym__list_lower_alpha_period] = STATE(684), - [sym__list_item_lower_alpha_period] = STATE(787), - [sym__list_lower_alpha_paren] = STATE(684), - [sym__list_item_lower_alpha_paren] = STATE(792), - [sym__list_lower_alpha_parens] = STATE(684), - [sym__list_item_lower_alpha_parens] = STATE(793), - [sym__list_upper_alpha_period] = STATE(684), - [sym__list_item_upper_alpha_period] = STATE(797), - [sym__list_upper_alpha_paren] = STATE(684), - [sym__list_item_upper_alpha_paren] = STATE(798), - [sym__list_upper_alpha_parens] = STATE(684), - [sym__list_item_upper_alpha_parens] = STATE(799), - [sym__list_lower_roman_period] = STATE(684), - [sym__list_item_lower_roman_period] = STATE(801), - [sym__list_lower_roman_paren] = STATE(684), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(684), - [sym__list_item_lower_roman_parens] = STATE(814), - [sym__list_upper_roman_period] = STATE(684), - [sym__list_item_upper_roman_period] = STATE(818), - [sym__list_upper_roman_paren] = STATE(684), - [sym__list_item_upper_roman_paren] = STATE(819), - [sym__list_upper_roman_parens] = STATE(684), - [sym__list_item_upper_roman_parens] = STATE(822), - [sym_list_item_content] = STATE(731), - [sym_table] = STATE(464), - [sym__table_content] = STATE(368), - [sym_table_separator] = STATE(368), - [sym_table_row] = STATE(389), - [sym_footnote] = STATE(464), - [sym_footnote_marker_begin] = STATE(1116), - [sym_div] = STATE(464), - [sym__div_marker_begin] = STATE(988), - [sym_code_block] = STATE(464), - [sym_raw_block] = STATE(464), - [sym_thematic_break] = STATE(464), - [sym_block_quote] = STATE(464), - [sym__block_quote_prefix] = STATE(294), - [sym_link_reference_definition] = STATE(464), - [sym_block_attribute] = STATE(464), - [sym__paragraph] = STATE(464), - [sym__paragraph_content] = STATE(932), - [sym__paragraph_inline_content] = STATE(930), - [sym__inline] = STATE(695), - [sym__symbol_fallback] = STATE(358), - [aux_sym__list_dash_repeat1] = STATE(423), - [aux_sym__list_plus_repeat1] = STATE(417), - [aux_sym__list_star_repeat1] = STATE(420), - [aux_sym__list_task_repeat1] = STATE(395), - [aux_sym__list_definition_repeat1] = STATE(510), - [aux_sym__list_decimal_period_repeat1] = STATE(511), - [aux_sym__list_decimal_paren_repeat1] = STATE(512), - [aux_sym__list_decimal_parens_repeat1] = STATE(513), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(514), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(515), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(516), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(517), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(518), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(519), - [aux_sym__list_lower_roman_period_repeat1] = STATE(520), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(521), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(522), - [aux_sym__list_upper_roman_period_repeat1] = STATE(523), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(524), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(525), - [aux_sym_table_repeat1] = STATE(368), - [aux_sym__block_quote_prefix_repeat1] = STATE(320), - [aux_sym__inline_repeat1] = STATE(358), - [anon_sym_LBRACK] = ACTIONS(385), - [anon_sym_PIPE] = ACTIONS(387), + [sym__block_with_heading] = STATE(1242), + [sym__block_element] = STATE(1242), + [sym_heading] = STATE(1242), + [sym_list] = STATE(1242), + [sym__list_dash] = STATE(1183), + [sym__list_item_dash] = STATE(727), + [sym__list_plus] = STATE(1183), + [sym__list_item_plus] = STATE(730), + [sym__list_star] = STATE(1183), + [sym__list_item_star] = STATE(759), + [sym__list_task] = STATE(1183), + [sym__list_item_task] = STATE(761), + [sym_list_marker_task] = STATE(46), + [sym__list_definition] = STATE(1183), + [sym__list_item_definition] = STATE(819), + [sym__list_decimal_period] = STATE(1183), + [sym__list_item_decimal_period] = STATE(852), + [sym__list_decimal_paren] = STATE(1183), + [sym__list_item_decimal_paren] = STATE(837), + [sym__list_decimal_parens] = STATE(1183), + [sym__list_item_decimal_parens] = STATE(815), + [sym__list_lower_alpha_period] = STATE(1183), + [sym__list_item_lower_alpha_period] = STATE(843), + [sym__list_lower_alpha_paren] = STATE(1183), + [sym__list_item_lower_alpha_paren] = STATE(850), + [sym__list_lower_alpha_parens] = STATE(1183), + [sym__list_item_lower_alpha_parens] = STATE(853), + [sym__list_upper_alpha_period] = STATE(1183), + [sym__list_item_upper_alpha_period] = STATE(854), + [sym__list_upper_alpha_paren] = STATE(1183), + [sym__list_item_upper_alpha_paren] = STATE(855), + [sym__list_upper_alpha_parens] = STATE(1183), + [sym__list_item_upper_alpha_parens] = STATE(856), + [sym__list_lower_roman_period] = STATE(1183), + [sym__list_item_lower_roman_period] = STATE(857), + [sym__list_lower_roman_paren] = STATE(1183), + [sym__list_item_lower_roman_paren] = STATE(871), + [sym__list_lower_roman_parens] = STATE(1183), + [sym__list_item_lower_roman_parens] = STATE(874), + [sym__list_upper_roman_period] = STATE(1183), + [sym__list_item_upper_roman_period] = STATE(876), + [sym__list_upper_roman_paren] = STATE(1183), + [sym__list_item_upper_roman_paren] = STATE(878), + [sym__list_upper_roman_parens] = STATE(1183), + [sym__list_item_upper_roman_parens] = STATE(880), + [sym_list_item_content] = STATE(706), + [sym_table] = STATE(1242), + [sym__table_content] = STATE(406), + [sym_table_separator] = STATE(406), + [sym_table_row] = STATE(417), + [sym_footnote] = STATE(1242), + [sym_footnote_marker_begin] = STATE(1298), + [sym_div] = STATE(1242), + [sym__div_marker_begin] = STATE(1119), + [sym_code_block] = STATE(1242), + [sym_raw_block] = STATE(1242), + [sym_thematic_break] = STATE(1242), + [sym_block_quote] = STATE(1242), + [sym__block_quote_prefix] = STATE(300), + [sym_link_reference_definition] = STATE(1242), + [sym_block_attribute] = STATE(1242), + [sym__paragraph] = STATE(1242), + [sym__paragraph_content] = STATE(799), + [sym__paragraph_inline_content] = STATE(896), + [sym__inline] = STATE(715), + [sym__symbol_fallback] = STATE(381), + [aux_sym__list_dash_repeat1] = STATE(453), + [aux_sym__list_plus_repeat1] = STATE(458), + [aux_sym__list_star_repeat1] = STATE(463), + [aux_sym__list_task_repeat1] = STATE(440), + [aux_sym__list_definition_repeat1] = STATE(562), + [aux_sym__list_decimal_period_repeat1] = STATE(563), + [aux_sym__list_decimal_paren_repeat1] = STATE(542), + [aux_sym__list_decimal_parens_repeat1] = STATE(564), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(565), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(566), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(567), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(568), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(569), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(570), + [aux_sym__list_lower_roman_period_repeat1] = STATE(571), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(572), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(573), + [aux_sym__list_upper_roman_period_repeat1] = STATE(574), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(575), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(576), + [aux_sym_table_repeat1] = STATE(406), + [aux_sym__block_quote_prefix_repeat1] = STATE(330), + [aux_sym__inline_repeat1] = STATE(381), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_PIPE] = ACTIONS(391), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(393), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(431), - [sym__heading_begin] = ACTIONS(393), + [sym__newline] = ACTIONS(433), + [sym__heading_begin] = ACTIONS(397), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(395), + [sym__code_block_begin] = ACTIONS(399), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -10614,115 +11004,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(397), - [sym__block_quote_continuation] = ACTIONS(399), - [sym__thematic_break_dash] = ACTIONS(401), - [sym__thematic_break_star] = ACTIONS(401), + [sym__block_quote_begin] = ACTIONS(401), + [sym__block_quote_continuation] = ACTIONS(403), + [sym__thematic_break_dash] = ACTIONS(405), + [sym__thematic_break_star] = ACTIONS(405), }, [47] = { - [sym__block_with_heading] = STATE(450), - [sym__block_element] = STATE(450), - [sym_heading] = STATE(450), - [sym_list] = STATE(450), - [sym__list_dash] = STATE(684), - [sym__list_item_dash] = STATE(634), - [sym__list_plus] = STATE(684), - [sym__list_item_plus] = STATE(651), - [sym__list_star] = STATE(684), - [sym__list_item_star] = STATE(697), - [sym__list_task] = STATE(684), - [sym__list_item_task] = STATE(707), - [sym_list_marker_task] = STATE(47), - [sym__list_definition] = STATE(684), - [sym__list_item_definition] = STATE(736), - [sym__list_decimal_period] = STATE(684), - [sym__list_item_decimal_period] = STATE(795), - [sym__list_decimal_paren] = STATE(684), - [sym__list_item_decimal_paren] = STATE(848), - [sym__list_decimal_parens] = STATE(684), - [sym__list_item_decimal_parens] = STATE(772), - [sym__list_lower_alpha_period] = STATE(684), - [sym__list_item_lower_alpha_period] = STATE(787), - [sym__list_lower_alpha_paren] = STATE(684), - [sym__list_item_lower_alpha_paren] = STATE(792), - [sym__list_lower_alpha_parens] = STATE(684), - [sym__list_item_lower_alpha_parens] = STATE(793), - [sym__list_upper_alpha_period] = STATE(684), - [sym__list_item_upper_alpha_period] = STATE(797), - [sym__list_upper_alpha_paren] = STATE(684), - [sym__list_item_upper_alpha_paren] = STATE(798), - [sym__list_upper_alpha_parens] = STATE(684), - [sym__list_item_upper_alpha_parens] = STATE(799), - [sym__list_lower_roman_period] = STATE(684), - [sym__list_item_lower_roman_period] = STATE(801), - [sym__list_lower_roman_paren] = STATE(684), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(684), - [sym__list_item_lower_roman_parens] = STATE(814), - [sym__list_upper_roman_period] = STATE(684), - [sym__list_item_upper_roman_period] = STATE(818), - [sym__list_upper_roman_paren] = STATE(684), - [sym__list_item_upper_roman_paren] = STATE(819), - [sym__list_upper_roman_parens] = STATE(684), - [sym__list_item_upper_roman_parens] = STATE(822), - [sym_list_item_content] = STATE(667), - [sym_table] = STATE(450), - [sym__table_content] = STATE(368), - [sym_table_separator] = STATE(368), - [sym_table_row] = STATE(389), - [sym_footnote] = STATE(450), - [sym_footnote_marker_begin] = STATE(1116), - [sym_div] = STATE(450), - [sym__div_marker_begin] = STATE(988), - [sym_code_block] = STATE(450), - [sym_raw_block] = STATE(450), - [sym_thematic_break] = STATE(450), - [sym_block_quote] = STATE(450), - [sym__block_quote_prefix] = STATE(294), - [sym_link_reference_definition] = STATE(450), - [sym_block_attribute] = STATE(450), - [sym__paragraph] = STATE(450), - [sym__paragraph_content] = STATE(932), - [sym__paragraph_inline_content] = STATE(930), - [sym__inline] = STATE(695), - [sym__symbol_fallback] = STATE(358), - [aux_sym__list_dash_repeat1] = STATE(423), - [aux_sym__list_plus_repeat1] = STATE(417), - [aux_sym__list_star_repeat1] = STATE(420), - [aux_sym__list_task_repeat1] = STATE(395), - [aux_sym__list_definition_repeat1] = STATE(510), - [aux_sym__list_decimal_period_repeat1] = STATE(511), - [aux_sym__list_decimal_paren_repeat1] = STATE(512), - [aux_sym__list_decimal_parens_repeat1] = STATE(513), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(514), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(515), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(516), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(517), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(518), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(519), - [aux_sym__list_lower_roman_period_repeat1] = STATE(520), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(521), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(522), - [aux_sym__list_upper_roman_period_repeat1] = STATE(523), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(524), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(525), - [aux_sym_table_repeat1] = STATE(368), - [aux_sym__block_quote_prefix_repeat1] = STATE(320), - [aux_sym__inline_repeat1] = STATE(358), - [anon_sym_LBRACK] = ACTIONS(385), - [anon_sym_PIPE] = ACTIONS(387), + [sym__block_with_heading] = STATE(1190), + [sym__block_element] = STATE(1190), + [sym_heading] = STATE(1190), + [sym_list] = STATE(1190), + [sym__list_dash] = STATE(1183), + [sym__list_item_dash] = STATE(727), + [sym__list_plus] = STATE(1183), + [sym__list_item_plus] = STATE(730), + [sym__list_star] = STATE(1183), + [sym__list_item_star] = STATE(759), + [sym__list_task] = STATE(1183), + [sym__list_item_task] = STATE(761), + [sym_list_marker_task] = STATE(46), + [sym__list_definition] = STATE(1183), + [sym__list_item_definition] = STATE(819), + [sym__list_decimal_period] = STATE(1183), + [sym__list_item_decimal_period] = STATE(852), + [sym__list_decimal_paren] = STATE(1183), + [sym__list_item_decimal_paren] = STATE(837), + [sym__list_decimal_parens] = STATE(1183), + [sym__list_item_decimal_parens] = STATE(815), + [sym__list_lower_alpha_period] = STATE(1183), + [sym__list_item_lower_alpha_period] = STATE(843), + [sym__list_lower_alpha_paren] = STATE(1183), + [sym__list_item_lower_alpha_paren] = STATE(850), + [sym__list_lower_alpha_parens] = STATE(1183), + [sym__list_item_lower_alpha_parens] = STATE(853), + [sym__list_upper_alpha_period] = STATE(1183), + [sym__list_item_upper_alpha_period] = STATE(854), + [sym__list_upper_alpha_paren] = STATE(1183), + [sym__list_item_upper_alpha_paren] = STATE(855), + [sym__list_upper_alpha_parens] = STATE(1183), + [sym__list_item_upper_alpha_parens] = STATE(856), + [sym__list_lower_roman_period] = STATE(1183), + [sym__list_item_lower_roman_period] = STATE(857), + [sym__list_lower_roman_paren] = STATE(1183), + [sym__list_item_lower_roman_paren] = STATE(871), + [sym__list_lower_roman_parens] = STATE(1183), + [sym__list_item_lower_roman_parens] = STATE(874), + [sym__list_upper_roman_period] = STATE(1183), + [sym__list_item_upper_roman_period] = STATE(876), + [sym__list_upper_roman_paren] = STATE(1183), + [sym__list_item_upper_roman_paren] = STATE(878), + [sym__list_upper_roman_parens] = STATE(1183), + [sym__list_item_upper_roman_parens] = STATE(880), + [sym_list_item_content] = STATE(892), + [sym_table] = STATE(1190), + [sym__table_content] = STATE(406), + [sym_table_separator] = STATE(406), + [sym_table_row] = STATE(417), + [sym_footnote] = STATE(1190), + [sym_footnote_marker_begin] = STATE(1298), + [sym_div] = STATE(1190), + [sym__div_marker_begin] = STATE(1119), + [sym_code_block] = STATE(1190), + [sym_raw_block] = STATE(1190), + [sym_thematic_break] = STATE(1190), + [sym_block_quote] = STATE(1190), + [sym__block_quote_prefix] = STATE(300), + [sym_link_reference_definition] = STATE(1190), + [sym_block_attribute] = STATE(1190), + [sym__paragraph] = STATE(1190), + [sym__paragraph_content] = STATE(799), + [sym__paragraph_inline_content] = STATE(896), + [sym__inline] = STATE(715), + [sym__symbol_fallback] = STATE(381), + [aux_sym__list_dash_repeat1] = STATE(453), + [aux_sym__list_plus_repeat1] = STATE(458), + [aux_sym__list_star_repeat1] = STATE(463), + [aux_sym__list_task_repeat1] = STATE(440), + [aux_sym__list_definition_repeat1] = STATE(562), + [aux_sym__list_decimal_period_repeat1] = STATE(563), + [aux_sym__list_decimal_paren_repeat1] = STATE(542), + [aux_sym__list_decimal_parens_repeat1] = STATE(564), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(565), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(566), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(567), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(568), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(569), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(570), + [aux_sym__list_lower_roman_period_repeat1] = STATE(571), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(572), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(573), + [aux_sym__list_upper_roman_period_repeat1] = STATE(574), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(575), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(576), + [aux_sym_table_repeat1] = STATE(406), + [aux_sym__block_quote_prefix_repeat1] = STATE(330), + [aux_sym__inline_repeat1] = STATE(381), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_PIPE] = ACTIONS(391), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(393), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(411), - [sym__heading_begin] = ACTIONS(393), + [sym__newline] = ACTIONS(435), + [sym__heading_begin] = ACTIONS(397), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(395), + [sym__code_block_begin] = ACTIONS(399), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -10743,115 +11133,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(397), - [sym__block_quote_continuation] = ACTIONS(399), - [sym__thematic_break_dash] = ACTIONS(401), - [sym__thematic_break_star] = ACTIONS(401), + [sym__block_quote_begin] = ACTIONS(401), + [sym__block_quote_continuation] = ACTIONS(403), + [sym__thematic_break_dash] = ACTIONS(405), + [sym__thematic_break_star] = ACTIONS(405), }, [48] = { - [sym__block_with_heading] = STATE(479), - [sym__block_element] = STATE(479), - [sym_heading] = STATE(479), - [sym_list] = STATE(479), - [sym__list_dash] = STATE(684), - [sym__list_item_dash] = STATE(634), - [sym__list_plus] = STATE(684), - [sym__list_item_plus] = STATE(651), - [sym__list_star] = STATE(684), - [sym__list_item_star] = STATE(697), - [sym__list_task] = STATE(684), - [sym__list_item_task] = STATE(707), - [sym_list_marker_task] = STATE(47), - [sym__list_definition] = STATE(684), - [sym__list_item_definition] = STATE(736), - [sym__list_decimal_period] = STATE(684), - [sym__list_item_decimal_period] = STATE(795), - [sym__list_decimal_paren] = STATE(684), - [sym__list_item_decimal_paren] = STATE(848), - [sym__list_decimal_parens] = STATE(684), - [sym__list_item_decimal_parens] = STATE(772), - [sym__list_lower_alpha_period] = STATE(684), - [sym__list_item_lower_alpha_period] = STATE(787), - [sym__list_lower_alpha_paren] = STATE(684), - [sym__list_item_lower_alpha_paren] = STATE(792), - [sym__list_lower_alpha_parens] = STATE(684), - [sym__list_item_lower_alpha_parens] = STATE(793), - [sym__list_upper_alpha_period] = STATE(684), - [sym__list_item_upper_alpha_period] = STATE(797), - [sym__list_upper_alpha_paren] = STATE(684), - [sym__list_item_upper_alpha_paren] = STATE(798), - [sym__list_upper_alpha_parens] = STATE(684), - [sym__list_item_upper_alpha_parens] = STATE(799), - [sym__list_lower_roman_period] = STATE(684), - [sym__list_item_lower_roman_period] = STATE(801), - [sym__list_lower_roman_paren] = STATE(684), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(684), - [sym__list_item_lower_roman_parens] = STATE(814), - [sym__list_upper_roman_period] = STATE(684), - [sym__list_item_upper_roman_period] = STATE(818), - [sym__list_upper_roman_paren] = STATE(684), - [sym__list_item_upper_roman_paren] = STATE(819), - [sym__list_upper_roman_parens] = STATE(684), - [sym__list_item_upper_roman_parens] = STATE(822), - [sym_list_item_content] = STATE(732), - [sym_table] = STATE(479), - [sym__table_content] = STATE(368), - [sym_table_separator] = STATE(368), - [sym_table_row] = STATE(389), - [sym_footnote] = STATE(479), - [sym_footnote_marker_begin] = STATE(1116), - [sym_div] = STATE(479), - [sym__div_marker_begin] = STATE(988), - [sym_code_block] = STATE(479), - [sym_raw_block] = STATE(479), - [sym_thematic_break] = STATE(479), - [sym_block_quote] = STATE(479), - [sym__block_quote_prefix] = STATE(294), - [sym_link_reference_definition] = STATE(479), - [sym_block_attribute] = STATE(479), - [sym__paragraph] = STATE(479), - [sym__paragraph_content] = STATE(932), - [sym__paragraph_inline_content] = STATE(930), - [sym__inline] = STATE(695), - [sym__symbol_fallback] = STATE(358), - [aux_sym__list_dash_repeat1] = STATE(423), - [aux_sym__list_plus_repeat1] = STATE(417), - [aux_sym__list_star_repeat1] = STATE(420), - [aux_sym__list_task_repeat1] = STATE(395), - [aux_sym__list_definition_repeat1] = STATE(510), - [aux_sym__list_decimal_period_repeat1] = STATE(511), - [aux_sym__list_decimal_paren_repeat1] = STATE(512), - [aux_sym__list_decimal_parens_repeat1] = STATE(513), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(514), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(515), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(516), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(517), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(518), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(519), - [aux_sym__list_lower_roman_period_repeat1] = STATE(520), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(521), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(522), - [aux_sym__list_upper_roman_period_repeat1] = STATE(523), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(524), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(525), - [aux_sym_table_repeat1] = STATE(368), - [aux_sym__block_quote_prefix_repeat1] = STATE(320), - [aux_sym__inline_repeat1] = STATE(358), - [anon_sym_LBRACK] = ACTIONS(385), - [anon_sym_PIPE] = ACTIONS(387), + [sym__block_with_heading] = STATE(1212), + [sym__block_element] = STATE(1212), + [sym_heading] = STATE(1212), + [sym_list] = STATE(1212), + [sym__list_dash] = STATE(1183), + [sym__list_item_dash] = STATE(727), + [sym__list_plus] = STATE(1183), + [sym__list_item_plus] = STATE(730), + [sym__list_star] = STATE(1183), + [sym__list_item_star] = STATE(759), + [sym__list_task] = STATE(1183), + [sym__list_item_task] = STATE(761), + [sym_list_marker_task] = STATE(46), + [sym__list_definition] = STATE(1183), + [sym__list_item_definition] = STATE(819), + [sym__list_decimal_period] = STATE(1183), + [sym__list_item_decimal_period] = STATE(852), + [sym__list_decimal_paren] = STATE(1183), + [sym__list_item_decimal_paren] = STATE(837), + [sym__list_decimal_parens] = STATE(1183), + [sym__list_item_decimal_parens] = STATE(815), + [sym__list_lower_alpha_period] = STATE(1183), + [sym__list_item_lower_alpha_period] = STATE(843), + [sym__list_lower_alpha_paren] = STATE(1183), + [sym__list_item_lower_alpha_paren] = STATE(850), + [sym__list_lower_alpha_parens] = STATE(1183), + [sym__list_item_lower_alpha_parens] = STATE(853), + [sym__list_upper_alpha_period] = STATE(1183), + [sym__list_item_upper_alpha_period] = STATE(854), + [sym__list_upper_alpha_paren] = STATE(1183), + [sym__list_item_upper_alpha_paren] = STATE(855), + [sym__list_upper_alpha_parens] = STATE(1183), + [sym__list_item_upper_alpha_parens] = STATE(856), + [sym__list_lower_roman_period] = STATE(1183), + [sym__list_item_lower_roman_period] = STATE(857), + [sym__list_lower_roman_paren] = STATE(1183), + [sym__list_item_lower_roman_paren] = STATE(871), + [sym__list_lower_roman_parens] = STATE(1183), + [sym__list_item_lower_roman_parens] = STATE(874), + [sym__list_upper_roman_period] = STATE(1183), + [sym__list_item_upper_roman_period] = STATE(876), + [sym__list_upper_roman_paren] = STATE(1183), + [sym__list_item_upper_roman_paren] = STATE(878), + [sym__list_upper_roman_parens] = STATE(1183), + [sym__list_item_upper_roman_parens] = STATE(880), + [sym_list_item_content] = STATE(1021), + [sym_table] = STATE(1212), + [sym__table_content] = STATE(406), + [sym_table_separator] = STATE(406), + [sym_table_row] = STATE(417), + [sym_footnote] = STATE(1212), + [sym_footnote_marker_begin] = STATE(1298), + [sym_div] = STATE(1212), + [sym__div_marker_begin] = STATE(1119), + [sym_code_block] = STATE(1212), + [sym_raw_block] = STATE(1212), + [sym_thematic_break] = STATE(1212), + [sym_block_quote] = STATE(1212), + [sym__block_quote_prefix] = STATE(300), + [sym_link_reference_definition] = STATE(1212), + [sym_block_attribute] = STATE(1212), + [sym__paragraph] = STATE(1212), + [sym__paragraph_content] = STATE(799), + [sym__paragraph_inline_content] = STATE(896), + [sym__inline] = STATE(715), + [sym__symbol_fallback] = STATE(381), + [aux_sym__list_dash_repeat1] = STATE(453), + [aux_sym__list_plus_repeat1] = STATE(458), + [aux_sym__list_star_repeat1] = STATE(463), + [aux_sym__list_task_repeat1] = STATE(440), + [aux_sym__list_definition_repeat1] = STATE(562), + [aux_sym__list_decimal_period_repeat1] = STATE(563), + [aux_sym__list_decimal_paren_repeat1] = STATE(542), + [aux_sym__list_decimal_parens_repeat1] = STATE(564), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(565), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(566), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(567), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(568), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(569), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(570), + [aux_sym__list_lower_roman_period_repeat1] = STATE(571), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(572), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(573), + [aux_sym__list_upper_roman_period_repeat1] = STATE(574), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(575), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(576), + [aux_sym_table_repeat1] = STATE(406), + [aux_sym__block_quote_prefix_repeat1] = STATE(330), + [aux_sym__inline_repeat1] = STATE(381), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_PIPE] = ACTIONS(391), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(393), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(433), - [sym__heading_begin] = ACTIONS(393), + [sym__newline] = ACTIONS(437), + [sym__heading_begin] = ACTIONS(397), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(395), + [sym__code_block_begin] = ACTIONS(399), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -10872,115 +11262,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(397), - [sym__block_quote_continuation] = ACTIONS(399), - [sym__thematic_break_dash] = ACTIONS(401), - [sym__thematic_break_star] = ACTIONS(401), + [sym__block_quote_begin] = ACTIONS(401), + [sym__block_quote_continuation] = ACTIONS(403), + [sym__thematic_break_dash] = ACTIONS(405), + [sym__thematic_break_star] = ACTIONS(405), }, [49] = { - [sym__block_with_heading] = STATE(481), - [sym__block_element] = STATE(481), - [sym_heading] = STATE(481), - [sym_list] = STATE(481), - [sym__list_dash] = STATE(684), - [sym__list_item_dash] = STATE(634), - [sym__list_plus] = STATE(684), - [sym__list_item_plus] = STATE(651), - [sym__list_star] = STATE(684), - [sym__list_item_star] = STATE(697), - [sym__list_task] = STATE(684), - [sym__list_item_task] = STATE(707), - [sym_list_marker_task] = STATE(47), - [sym__list_definition] = STATE(684), - [sym__list_item_definition] = STATE(736), - [sym__list_decimal_period] = STATE(684), - [sym__list_item_decimal_period] = STATE(795), - [sym__list_decimal_paren] = STATE(684), - [sym__list_item_decimal_paren] = STATE(848), - [sym__list_decimal_parens] = STATE(684), - [sym__list_item_decimal_parens] = STATE(772), - [sym__list_lower_alpha_period] = STATE(684), - [sym__list_item_lower_alpha_period] = STATE(787), - [sym__list_lower_alpha_paren] = STATE(684), - [sym__list_item_lower_alpha_paren] = STATE(792), - [sym__list_lower_alpha_parens] = STATE(684), - [sym__list_item_lower_alpha_parens] = STATE(793), - [sym__list_upper_alpha_period] = STATE(684), - [sym__list_item_upper_alpha_period] = STATE(797), - [sym__list_upper_alpha_paren] = STATE(684), - [sym__list_item_upper_alpha_paren] = STATE(798), - [sym__list_upper_alpha_parens] = STATE(684), - [sym__list_item_upper_alpha_parens] = STATE(799), - [sym__list_lower_roman_period] = STATE(684), - [sym__list_item_lower_roman_period] = STATE(801), - [sym__list_lower_roman_paren] = STATE(684), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(684), - [sym__list_item_lower_roman_parens] = STATE(814), - [sym__list_upper_roman_period] = STATE(684), - [sym__list_item_upper_roman_period] = STATE(818), - [sym__list_upper_roman_paren] = STATE(684), - [sym__list_item_upper_roman_paren] = STATE(819), - [sym__list_upper_roman_parens] = STATE(684), - [sym__list_item_upper_roman_parens] = STATE(822), - [sym_list_item_content] = STATE(733), - [sym_table] = STATE(481), - [sym__table_content] = STATE(368), - [sym_table_separator] = STATE(368), - [sym_table_row] = STATE(389), - [sym_footnote] = STATE(481), - [sym_footnote_marker_begin] = STATE(1116), - [sym_div] = STATE(481), - [sym__div_marker_begin] = STATE(988), - [sym_code_block] = STATE(481), - [sym_raw_block] = STATE(481), - [sym_thematic_break] = STATE(481), - [sym_block_quote] = STATE(481), - [sym__block_quote_prefix] = STATE(294), - [sym_link_reference_definition] = STATE(481), - [sym_block_attribute] = STATE(481), - [sym__paragraph] = STATE(481), - [sym__paragraph_content] = STATE(932), - [sym__paragraph_inline_content] = STATE(930), - [sym__inline] = STATE(695), - [sym__symbol_fallback] = STATE(358), - [aux_sym__list_dash_repeat1] = STATE(423), - [aux_sym__list_plus_repeat1] = STATE(417), - [aux_sym__list_star_repeat1] = STATE(420), - [aux_sym__list_task_repeat1] = STATE(395), - [aux_sym__list_definition_repeat1] = STATE(510), - [aux_sym__list_decimal_period_repeat1] = STATE(511), - [aux_sym__list_decimal_paren_repeat1] = STATE(512), - [aux_sym__list_decimal_parens_repeat1] = STATE(513), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(514), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(515), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(516), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(517), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(518), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(519), - [aux_sym__list_lower_roman_period_repeat1] = STATE(520), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(521), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(522), - [aux_sym__list_upper_roman_period_repeat1] = STATE(523), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(524), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(525), - [aux_sym_table_repeat1] = STATE(368), - [aux_sym__block_quote_prefix_repeat1] = STATE(320), - [aux_sym__inline_repeat1] = STATE(358), - [anon_sym_LBRACK] = ACTIONS(385), - [anon_sym_PIPE] = ACTIONS(387), + [sym__block_with_heading] = STATE(1230), + [sym__block_element] = STATE(1230), + [sym_heading] = STATE(1230), + [sym_list] = STATE(1230), + [sym__list_dash] = STATE(1183), + [sym__list_item_dash] = STATE(727), + [sym__list_plus] = STATE(1183), + [sym__list_item_plus] = STATE(730), + [sym__list_star] = STATE(1183), + [sym__list_item_star] = STATE(759), + [sym__list_task] = STATE(1183), + [sym__list_item_task] = STATE(761), + [sym_list_marker_task] = STATE(46), + [sym__list_definition] = STATE(1183), + [sym__list_item_definition] = STATE(819), + [sym__list_decimal_period] = STATE(1183), + [sym__list_item_decimal_period] = STATE(852), + [sym__list_decimal_paren] = STATE(1183), + [sym__list_item_decimal_paren] = STATE(837), + [sym__list_decimal_parens] = STATE(1183), + [sym__list_item_decimal_parens] = STATE(815), + [sym__list_lower_alpha_period] = STATE(1183), + [sym__list_item_lower_alpha_period] = STATE(843), + [sym__list_lower_alpha_paren] = STATE(1183), + [sym__list_item_lower_alpha_paren] = STATE(850), + [sym__list_lower_alpha_parens] = STATE(1183), + [sym__list_item_lower_alpha_parens] = STATE(853), + [sym__list_upper_alpha_period] = STATE(1183), + [sym__list_item_upper_alpha_period] = STATE(854), + [sym__list_upper_alpha_paren] = STATE(1183), + [sym__list_item_upper_alpha_paren] = STATE(855), + [sym__list_upper_alpha_parens] = STATE(1183), + [sym__list_item_upper_alpha_parens] = STATE(856), + [sym__list_lower_roman_period] = STATE(1183), + [sym__list_item_lower_roman_period] = STATE(857), + [sym__list_lower_roman_paren] = STATE(1183), + [sym__list_item_lower_roman_paren] = STATE(871), + [sym__list_lower_roman_parens] = STATE(1183), + [sym__list_item_lower_roman_parens] = STATE(874), + [sym__list_upper_roman_period] = STATE(1183), + [sym__list_item_upper_roman_period] = STATE(876), + [sym__list_upper_roman_paren] = STATE(1183), + [sym__list_item_upper_roman_paren] = STATE(878), + [sym__list_upper_roman_parens] = STATE(1183), + [sym__list_item_upper_roman_parens] = STATE(880), + [sym_list_item_content] = STATE(957), + [sym_table] = STATE(1230), + [sym__table_content] = STATE(406), + [sym_table_separator] = STATE(406), + [sym_table_row] = STATE(417), + [sym_footnote] = STATE(1230), + [sym_footnote_marker_begin] = STATE(1298), + [sym_div] = STATE(1230), + [sym__div_marker_begin] = STATE(1119), + [sym_code_block] = STATE(1230), + [sym_raw_block] = STATE(1230), + [sym_thematic_break] = STATE(1230), + [sym_block_quote] = STATE(1230), + [sym__block_quote_prefix] = STATE(300), + [sym_link_reference_definition] = STATE(1230), + [sym_block_attribute] = STATE(1230), + [sym__paragraph] = STATE(1230), + [sym__paragraph_content] = STATE(799), + [sym__paragraph_inline_content] = STATE(896), + [sym__inline] = STATE(715), + [sym__symbol_fallback] = STATE(381), + [aux_sym__list_dash_repeat1] = STATE(453), + [aux_sym__list_plus_repeat1] = STATE(458), + [aux_sym__list_star_repeat1] = STATE(463), + [aux_sym__list_task_repeat1] = STATE(440), + [aux_sym__list_definition_repeat1] = STATE(562), + [aux_sym__list_decimal_period_repeat1] = STATE(563), + [aux_sym__list_decimal_paren_repeat1] = STATE(542), + [aux_sym__list_decimal_parens_repeat1] = STATE(564), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(565), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(566), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(567), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(568), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(569), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(570), + [aux_sym__list_lower_roman_period_repeat1] = STATE(571), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(572), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(573), + [aux_sym__list_upper_roman_period_repeat1] = STATE(574), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(575), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(576), + [aux_sym_table_repeat1] = STATE(406), + [aux_sym__block_quote_prefix_repeat1] = STATE(330), + [aux_sym__inline_repeat1] = STATE(381), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_PIPE] = ACTIONS(391), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(393), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(435), - [sym__heading_begin] = ACTIONS(393), + [sym__newline] = ACTIONS(439), + [sym__heading_begin] = ACTIONS(397), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(395), + [sym__code_block_begin] = ACTIONS(399), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -11001,115 +11391,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(397), - [sym__block_quote_continuation] = ACTIONS(399), - [sym__thematic_break_dash] = ACTIONS(401), - [sym__thematic_break_star] = ACTIONS(401), + [sym__block_quote_begin] = ACTIONS(401), + [sym__block_quote_continuation] = ACTIONS(403), + [sym__thematic_break_dash] = ACTIONS(405), + [sym__thematic_break_star] = ACTIONS(405), }, [50] = { - [sym__block_with_heading] = STATE(484), - [sym__block_element] = STATE(484), - [sym_heading] = STATE(484), - [sym_list] = STATE(484), - [sym__list_dash] = STATE(684), - [sym__list_item_dash] = STATE(634), - [sym__list_plus] = STATE(684), - [sym__list_item_plus] = STATE(651), - [sym__list_star] = STATE(684), - [sym__list_item_star] = STATE(697), - [sym__list_task] = STATE(684), - [sym__list_item_task] = STATE(707), - [sym_list_marker_task] = STATE(47), - [sym__list_definition] = STATE(684), - [sym__list_item_definition] = STATE(736), - [sym__list_decimal_period] = STATE(684), - [sym__list_item_decimal_period] = STATE(795), - [sym__list_decimal_paren] = STATE(684), - [sym__list_item_decimal_paren] = STATE(848), - [sym__list_decimal_parens] = STATE(684), - [sym__list_item_decimal_parens] = STATE(772), - [sym__list_lower_alpha_period] = STATE(684), - [sym__list_item_lower_alpha_period] = STATE(787), - [sym__list_lower_alpha_paren] = STATE(684), - [sym__list_item_lower_alpha_paren] = STATE(792), - [sym__list_lower_alpha_parens] = STATE(684), - [sym__list_item_lower_alpha_parens] = STATE(793), - [sym__list_upper_alpha_period] = STATE(684), - [sym__list_item_upper_alpha_period] = STATE(797), - [sym__list_upper_alpha_paren] = STATE(684), - [sym__list_item_upper_alpha_paren] = STATE(798), - [sym__list_upper_alpha_parens] = STATE(684), - [sym__list_item_upper_alpha_parens] = STATE(799), - [sym__list_lower_roman_period] = STATE(684), - [sym__list_item_lower_roman_period] = STATE(801), - [sym__list_lower_roman_paren] = STATE(684), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(684), - [sym__list_item_lower_roman_parens] = STATE(814), - [sym__list_upper_roman_period] = STATE(684), - [sym__list_item_upper_roman_period] = STATE(818), - [sym__list_upper_roman_paren] = STATE(684), - [sym__list_item_upper_roman_paren] = STATE(819), - [sym__list_upper_roman_parens] = STATE(684), - [sym__list_item_upper_roman_parens] = STATE(822), - [sym_list_item_content] = STATE(737), - [sym_table] = STATE(484), - [sym__table_content] = STATE(368), - [sym_table_separator] = STATE(368), - [sym_table_row] = STATE(389), - [sym_footnote] = STATE(484), - [sym_footnote_marker_begin] = STATE(1116), - [sym_div] = STATE(484), - [sym__div_marker_begin] = STATE(988), - [sym_code_block] = STATE(484), - [sym_raw_block] = STATE(484), - [sym_thematic_break] = STATE(484), - [sym_block_quote] = STATE(484), - [sym__block_quote_prefix] = STATE(294), - [sym_link_reference_definition] = STATE(484), - [sym_block_attribute] = STATE(484), - [sym__paragraph] = STATE(484), - [sym__paragraph_content] = STATE(932), - [sym__paragraph_inline_content] = STATE(930), - [sym__inline] = STATE(695), - [sym__symbol_fallback] = STATE(358), - [aux_sym__list_dash_repeat1] = STATE(423), - [aux_sym__list_plus_repeat1] = STATE(417), - [aux_sym__list_star_repeat1] = STATE(420), - [aux_sym__list_task_repeat1] = STATE(395), - [aux_sym__list_definition_repeat1] = STATE(510), - [aux_sym__list_decimal_period_repeat1] = STATE(511), - [aux_sym__list_decimal_paren_repeat1] = STATE(512), - [aux_sym__list_decimal_parens_repeat1] = STATE(513), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(514), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(515), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(516), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(517), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(518), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(519), - [aux_sym__list_lower_roman_period_repeat1] = STATE(520), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(521), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(522), - [aux_sym__list_upper_roman_period_repeat1] = STATE(523), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(524), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(525), - [aux_sym_table_repeat1] = STATE(368), - [aux_sym__block_quote_prefix_repeat1] = STATE(320), - [aux_sym__inline_repeat1] = STATE(358), - [anon_sym_LBRACK] = ACTIONS(385), - [anon_sym_PIPE] = ACTIONS(387), + [sym__block_with_heading] = STATE(1231), + [sym__block_element] = STATE(1231), + [sym_heading] = STATE(1231), + [sym_list] = STATE(1231), + [sym__list_dash] = STATE(1183), + [sym__list_item_dash] = STATE(727), + [sym__list_plus] = STATE(1183), + [sym__list_item_plus] = STATE(730), + [sym__list_star] = STATE(1183), + [sym__list_item_star] = STATE(759), + [sym__list_task] = STATE(1183), + [sym__list_item_task] = STATE(761), + [sym_list_marker_task] = STATE(46), + [sym__list_definition] = STATE(1183), + [sym__list_item_definition] = STATE(819), + [sym__list_decimal_period] = STATE(1183), + [sym__list_item_decimal_period] = STATE(852), + [sym__list_decimal_paren] = STATE(1183), + [sym__list_item_decimal_paren] = STATE(837), + [sym__list_decimal_parens] = STATE(1183), + [sym__list_item_decimal_parens] = STATE(815), + [sym__list_lower_alpha_period] = STATE(1183), + [sym__list_item_lower_alpha_period] = STATE(843), + [sym__list_lower_alpha_paren] = STATE(1183), + [sym__list_item_lower_alpha_paren] = STATE(850), + [sym__list_lower_alpha_parens] = STATE(1183), + [sym__list_item_lower_alpha_parens] = STATE(853), + [sym__list_upper_alpha_period] = STATE(1183), + [sym__list_item_upper_alpha_period] = STATE(854), + [sym__list_upper_alpha_paren] = STATE(1183), + [sym__list_item_upper_alpha_paren] = STATE(855), + [sym__list_upper_alpha_parens] = STATE(1183), + [sym__list_item_upper_alpha_parens] = STATE(856), + [sym__list_lower_roman_period] = STATE(1183), + [sym__list_item_lower_roman_period] = STATE(857), + [sym__list_lower_roman_paren] = STATE(1183), + [sym__list_item_lower_roman_paren] = STATE(871), + [sym__list_lower_roman_parens] = STATE(1183), + [sym__list_item_lower_roman_parens] = STATE(874), + [sym__list_upper_roman_period] = STATE(1183), + [sym__list_item_upper_roman_period] = STATE(876), + [sym__list_upper_roman_paren] = STATE(1183), + [sym__list_item_upper_roman_paren] = STATE(878), + [sym__list_upper_roman_parens] = STATE(1183), + [sym__list_item_upper_roman_parens] = STATE(880), + [sym_list_item_content] = STATE(998), + [sym_table] = STATE(1231), + [sym__table_content] = STATE(406), + [sym_table_separator] = STATE(406), + [sym_table_row] = STATE(417), + [sym_footnote] = STATE(1231), + [sym_footnote_marker_begin] = STATE(1298), + [sym_div] = STATE(1231), + [sym__div_marker_begin] = STATE(1119), + [sym_code_block] = STATE(1231), + [sym_raw_block] = STATE(1231), + [sym_thematic_break] = STATE(1231), + [sym_block_quote] = STATE(1231), + [sym__block_quote_prefix] = STATE(300), + [sym_link_reference_definition] = STATE(1231), + [sym_block_attribute] = STATE(1231), + [sym__paragraph] = STATE(1231), + [sym__paragraph_content] = STATE(799), + [sym__paragraph_inline_content] = STATE(896), + [sym__inline] = STATE(715), + [sym__symbol_fallback] = STATE(381), + [aux_sym__list_dash_repeat1] = STATE(453), + [aux_sym__list_plus_repeat1] = STATE(458), + [aux_sym__list_star_repeat1] = STATE(463), + [aux_sym__list_task_repeat1] = STATE(440), + [aux_sym__list_definition_repeat1] = STATE(562), + [aux_sym__list_decimal_period_repeat1] = STATE(563), + [aux_sym__list_decimal_paren_repeat1] = STATE(542), + [aux_sym__list_decimal_parens_repeat1] = STATE(564), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(565), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(566), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(567), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(568), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(569), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(570), + [aux_sym__list_lower_roman_period_repeat1] = STATE(571), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(572), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(573), + [aux_sym__list_upper_roman_period_repeat1] = STATE(574), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(575), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(576), + [aux_sym_table_repeat1] = STATE(406), + [aux_sym__block_quote_prefix_repeat1] = STATE(330), + [aux_sym__inline_repeat1] = STATE(381), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_PIPE] = ACTIONS(391), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(393), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(437), - [sym__heading_begin] = ACTIONS(393), + [sym__newline] = ACTIONS(441), + [sym__heading_begin] = ACTIONS(397), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(395), + [sym__code_block_begin] = ACTIONS(399), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -11130,115 +11520,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(397), - [sym__block_quote_continuation] = ACTIONS(399), - [sym__thematic_break_dash] = ACTIONS(401), - [sym__thematic_break_star] = ACTIONS(401), + [sym__block_quote_begin] = ACTIONS(401), + [sym__block_quote_continuation] = ACTIONS(403), + [sym__thematic_break_dash] = ACTIONS(405), + [sym__thematic_break_star] = ACTIONS(405), }, [51] = { - [sym__block_with_heading] = STATE(460), - [sym__block_element] = STATE(460), - [sym_heading] = STATE(460), - [sym_list] = STATE(460), - [sym__list_dash] = STATE(684), - [sym__list_item_dash] = STATE(634), - [sym__list_plus] = STATE(684), - [sym__list_item_plus] = STATE(651), - [sym__list_star] = STATE(684), - [sym__list_item_star] = STATE(697), - [sym__list_task] = STATE(684), - [sym__list_item_task] = STATE(707), - [sym_list_marker_task] = STATE(47), - [sym__list_definition] = STATE(684), - [sym__list_item_definition] = STATE(736), - [sym__list_decimal_period] = STATE(684), - [sym__list_item_decimal_period] = STATE(795), - [sym__list_decimal_paren] = STATE(684), - [sym__list_item_decimal_paren] = STATE(848), - [sym__list_decimal_parens] = STATE(684), - [sym__list_item_decimal_parens] = STATE(772), - [sym__list_lower_alpha_period] = STATE(684), - [sym__list_item_lower_alpha_period] = STATE(787), - [sym__list_lower_alpha_paren] = STATE(684), - [sym__list_item_lower_alpha_paren] = STATE(792), - [sym__list_lower_alpha_parens] = STATE(684), - [sym__list_item_lower_alpha_parens] = STATE(793), - [sym__list_upper_alpha_period] = STATE(684), - [sym__list_item_upper_alpha_period] = STATE(797), - [sym__list_upper_alpha_paren] = STATE(684), - [sym__list_item_upper_alpha_paren] = STATE(798), - [sym__list_upper_alpha_parens] = STATE(684), - [sym__list_item_upper_alpha_parens] = STATE(799), - [sym__list_lower_roman_period] = STATE(684), - [sym__list_item_lower_roman_period] = STATE(801), - [sym__list_lower_roman_paren] = STATE(684), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(684), - [sym__list_item_lower_roman_parens] = STATE(814), - [sym__list_upper_roman_period] = STATE(684), - [sym__list_item_upper_roman_period] = STATE(818), - [sym__list_upper_roman_paren] = STATE(684), - [sym__list_item_upper_roman_paren] = STATE(819), - [sym__list_upper_roman_parens] = STATE(684), - [sym__list_item_upper_roman_parens] = STATE(822), - [sym_list_item_content] = STATE(624), - [sym_table] = STATE(460), - [sym__table_content] = STATE(368), - [sym_table_separator] = STATE(368), - [sym_table_row] = STATE(389), - [sym_footnote] = STATE(460), - [sym_footnote_marker_begin] = STATE(1116), - [sym_div] = STATE(460), - [sym__div_marker_begin] = STATE(988), - [sym_code_block] = STATE(460), - [sym_raw_block] = STATE(460), - [sym_thematic_break] = STATE(460), - [sym_block_quote] = STATE(460), - [sym__block_quote_prefix] = STATE(294), - [sym_link_reference_definition] = STATE(460), - [sym_block_attribute] = STATE(460), - [sym__paragraph] = STATE(460), - [sym__paragraph_content] = STATE(932), - [sym__paragraph_inline_content] = STATE(930), - [sym__inline] = STATE(695), - [sym__symbol_fallback] = STATE(358), - [aux_sym__list_dash_repeat1] = STATE(423), - [aux_sym__list_plus_repeat1] = STATE(417), - [aux_sym__list_star_repeat1] = STATE(420), - [aux_sym__list_task_repeat1] = STATE(395), - [aux_sym__list_definition_repeat1] = STATE(510), - [aux_sym__list_decimal_period_repeat1] = STATE(511), - [aux_sym__list_decimal_paren_repeat1] = STATE(512), - [aux_sym__list_decimal_parens_repeat1] = STATE(513), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(514), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(515), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(516), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(517), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(518), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(519), - [aux_sym__list_lower_roman_period_repeat1] = STATE(520), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(521), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(522), - [aux_sym__list_upper_roman_period_repeat1] = STATE(523), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(524), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(525), - [aux_sym_table_repeat1] = STATE(368), - [aux_sym__block_quote_prefix_repeat1] = STATE(320), - [aux_sym__inline_repeat1] = STATE(358), - [anon_sym_LBRACK] = ACTIONS(385), - [anon_sym_PIPE] = ACTIONS(387), + [sym__block_with_heading] = STATE(1218), + [sym__block_element] = STATE(1218), + [sym_heading] = STATE(1218), + [sym_list] = STATE(1218), + [sym__list_dash] = STATE(1183), + [sym__list_item_dash] = STATE(727), + [sym__list_plus] = STATE(1183), + [sym__list_item_plus] = STATE(730), + [sym__list_star] = STATE(1183), + [sym__list_item_star] = STATE(759), + [sym__list_task] = STATE(1183), + [sym__list_item_task] = STATE(761), + [sym_list_marker_task] = STATE(46), + [sym__list_definition] = STATE(1183), + [sym__list_item_definition] = STATE(819), + [sym__list_decimal_period] = STATE(1183), + [sym__list_item_decimal_period] = STATE(852), + [sym__list_decimal_paren] = STATE(1183), + [sym__list_item_decimal_paren] = STATE(837), + [sym__list_decimal_parens] = STATE(1183), + [sym__list_item_decimal_parens] = STATE(815), + [sym__list_lower_alpha_period] = STATE(1183), + [sym__list_item_lower_alpha_period] = STATE(843), + [sym__list_lower_alpha_paren] = STATE(1183), + [sym__list_item_lower_alpha_paren] = STATE(850), + [sym__list_lower_alpha_parens] = STATE(1183), + [sym__list_item_lower_alpha_parens] = STATE(853), + [sym__list_upper_alpha_period] = STATE(1183), + [sym__list_item_upper_alpha_period] = STATE(854), + [sym__list_upper_alpha_paren] = STATE(1183), + [sym__list_item_upper_alpha_paren] = STATE(855), + [sym__list_upper_alpha_parens] = STATE(1183), + [sym__list_item_upper_alpha_parens] = STATE(856), + [sym__list_lower_roman_period] = STATE(1183), + [sym__list_item_lower_roman_period] = STATE(857), + [sym__list_lower_roman_paren] = STATE(1183), + [sym__list_item_lower_roman_paren] = STATE(871), + [sym__list_lower_roman_parens] = STATE(1183), + [sym__list_item_lower_roman_parens] = STATE(874), + [sym__list_upper_roman_period] = STATE(1183), + [sym__list_item_upper_roman_period] = STATE(876), + [sym__list_upper_roman_paren] = STATE(1183), + [sym__list_item_upper_roman_paren] = STATE(878), + [sym__list_upper_roman_parens] = STATE(1183), + [sym__list_item_upper_roman_parens] = STATE(880), + [sym_list_item_content] = STATE(684), + [sym_table] = STATE(1218), + [sym__table_content] = STATE(406), + [sym_table_separator] = STATE(406), + [sym_table_row] = STATE(417), + [sym_footnote] = STATE(1218), + [sym_footnote_marker_begin] = STATE(1298), + [sym_div] = STATE(1218), + [sym__div_marker_begin] = STATE(1119), + [sym_code_block] = STATE(1218), + [sym_raw_block] = STATE(1218), + [sym_thematic_break] = STATE(1218), + [sym_block_quote] = STATE(1218), + [sym__block_quote_prefix] = STATE(300), + [sym_link_reference_definition] = STATE(1218), + [sym_block_attribute] = STATE(1218), + [sym__paragraph] = STATE(1218), + [sym__paragraph_content] = STATE(799), + [sym__paragraph_inline_content] = STATE(896), + [sym__inline] = STATE(715), + [sym__symbol_fallback] = STATE(381), + [aux_sym__list_dash_repeat1] = STATE(453), + [aux_sym__list_plus_repeat1] = STATE(458), + [aux_sym__list_star_repeat1] = STATE(463), + [aux_sym__list_task_repeat1] = STATE(440), + [aux_sym__list_definition_repeat1] = STATE(562), + [aux_sym__list_decimal_period_repeat1] = STATE(563), + [aux_sym__list_decimal_paren_repeat1] = STATE(542), + [aux_sym__list_decimal_parens_repeat1] = STATE(564), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(565), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(566), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(567), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(568), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(569), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(570), + [aux_sym__list_lower_roman_period_repeat1] = STATE(571), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(572), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(573), + [aux_sym__list_upper_roman_period_repeat1] = STATE(574), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(575), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(576), + [aux_sym_table_repeat1] = STATE(406), + [aux_sym__block_quote_prefix_repeat1] = STATE(330), + [aux_sym__inline_repeat1] = STATE(381), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_PIPE] = ACTIONS(391), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(393), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(405), - [sym__heading_begin] = ACTIONS(393), + [sym__newline] = ACTIONS(409), + [sym__heading_begin] = ACTIONS(397), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(395), + [sym__code_block_begin] = ACTIONS(399), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -11259,118 +11649,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(397), - [sym__block_quote_continuation] = ACTIONS(399), - [sym__thematic_break_dash] = ACTIONS(401), - [sym__thematic_break_star] = ACTIONS(401), + [sym__block_quote_begin] = ACTIONS(401), + [sym__block_quote_continuation] = ACTIONS(403), + [sym__thematic_break_dash] = ACTIONS(405), + [sym__thematic_break_star] = ACTIONS(405), }, [52] = { - [sym__block_element] = STATE(157), - [sym_heading] = STATE(157), - [sym_list] = STATE(157), - [sym__list_dash] = STATE(162), - [sym__list_item_dash] = STATE(634), - [sym__list_plus] = STATE(162), - [sym__list_item_plus] = STATE(651), - [sym__list_star] = STATE(162), - [sym__list_item_star] = STATE(697), - [sym__list_task] = STATE(162), - [sym__list_item_task] = STATE(707), - [sym_list_marker_task] = STATE(47), - [sym__list_definition] = STATE(162), - [sym__list_item_definition] = STATE(736), - [sym__list_decimal_period] = STATE(162), - [sym__list_item_decimal_period] = STATE(795), - [sym__list_decimal_paren] = STATE(162), - [sym__list_item_decimal_paren] = STATE(848), - [sym__list_decimal_parens] = STATE(162), - [sym__list_item_decimal_parens] = STATE(772), - [sym__list_lower_alpha_period] = STATE(162), - [sym__list_item_lower_alpha_period] = STATE(787), - [sym__list_lower_alpha_paren] = STATE(162), - [sym__list_item_lower_alpha_paren] = STATE(792), - [sym__list_lower_alpha_parens] = STATE(162), - [sym__list_item_lower_alpha_parens] = STATE(793), - [sym__list_upper_alpha_period] = STATE(162), - [sym__list_item_upper_alpha_period] = STATE(797), - [sym__list_upper_alpha_paren] = STATE(162), - [sym__list_item_upper_alpha_paren] = STATE(798), - [sym__list_upper_alpha_parens] = STATE(162), - [sym__list_item_upper_alpha_parens] = STATE(799), - [sym__list_lower_roman_period] = STATE(162), - [sym__list_item_lower_roman_period] = STATE(801), - [sym__list_lower_roman_paren] = STATE(162), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(162), - [sym__list_item_lower_roman_parens] = STATE(814), - [sym__list_upper_roman_period] = STATE(162), - [sym__list_item_upper_roman_period] = STATE(818), - [sym__list_upper_roman_paren] = STATE(162), - [sym__list_item_upper_roman_paren] = STATE(819), - [sym__list_upper_roman_parens] = STATE(162), - [sym__list_item_upper_roman_parens] = STATE(822), - [sym_table] = STATE(157), - [sym__table_content] = STATE(64), - [sym_table_separator] = STATE(64), - [sym_table_row] = STATE(71), - [sym_footnote] = STATE(157), - [sym_footnote_marker_begin] = STATE(1120), - [sym_div] = STATE(157), - [sym__div_marker_begin] = STATE(1032), - [sym_code_block] = STATE(157), - [sym_raw_block] = STATE(157), - [sym_thematic_break] = STATE(157), - [sym_block_quote] = STATE(157), - [sym__block_quote_prefix] = STATE(292), - [sym_link_reference_definition] = STATE(157), - [sym_block_attribute] = STATE(157), - [sym__paragraph] = STATE(157), - [sym__paragraph_content] = STATE(785), - [sym__paragraph_inline_content] = STATE(930), - [sym__inline] = STATE(695), - [sym__symbol_fallback] = STATE(358), - [aux_sym__list_dash_repeat1] = STATE(431), - [aux_sym__list_plus_repeat1] = STATE(414), - [aux_sym__list_star_repeat1] = STATE(416), - [aux_sym__list_task_repeat1] = STATE(396), - [aux_sym__list_definition_repeat1] = STATE(560), - [aux_sym__list_decimal_period_repeat1] = STATE(561), - [aux_sym__list_decimal_paren_repeat1] = STATE(562), - [aux_sym__list_decimal_parens_repeat1] = STATE(563), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(564), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(621), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(566), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(567), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(568), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(569), - [aux_sym__list_lower_roman_period_repeat1] = STATE(570), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(571), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(572), - [aux_sym__list_upper_roman_period_repeat1] = STATE(573), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(574), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(575), - [aux_sym_table_repeat1] = STATE(64), - [aux_sym__block_quote_prefix_repeat1] = STATE(320), - [aux_sym__inline_repeat1] = STATE(358), - [anon_sym_LBRACK] = ACTIONS(439), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_LBRACK_CARET] = ACTIONS(439), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(439), - [aux_sym_identifier_token1] = ACTIONS(439), - [aux_sym__inline_token1] = ACTIONS(439), - [anon_sym_LBRACE_DASH] = ACTIONS(439), - [anon_sym_POUND] = ACTIONS(439), - [anon_sym_PERCENT] = ACTIONS(439), - [sym__block_close] = ACTIONS(441), - [sym__newline] = ACTIONS(443), - [sym__heading_begin] = ACTIONS(19), + [sym__block_with_heading] = STATE(1121), + [sym__block_element] = STATE(1121), + [sym_heading] = STATE(1121), + [sym_list] = STATE(1121), + [sym__list_dash] = STATE(1183), + [sym__list_item_dash] = STATE(727), + [sym__list_plus] = STATE(1183), + [sym__list_item_plus] = STATE(730), + [sym__list_star] = STATE(1183), + [sym__list_item_star] = STATE(759), + [sym__list_task] = STATE(1183), + [sym__list_item_task] = STATE(761), + [sym_list_marker_task] = STATE(46), + [sym__list_definition] = STATE(1183), + [sym__list_item_definition] = STATE(819), + [sym__list_decimal_period] = STATE(1183), + [sym__list_item_decimal_period] = STATE(852), + [sym__list_decimal_paren] = STATE(1183), + [sym__list_item_decimal_paren] = STATE(837), + [sym__list_decimal_parens] = STATE(1183), + [sym__list_item_decimal_parens] = STATE(815), + [sym__list_lower_alpha_period] = STATE(1183), + [sym__list_item_lower_alpha_period] = STATE(843), + [sym__list_lower_alpha_paren] = STATE(1183), + [sym__list_item_lower_alpha_paren] = STATE(850), + [sym__list_lower_alpha_parens] = STATE(1183), + [sym__list_item_lower_alpha_parens] = STATE(853), + [sym__list_upper_alpha_period] = STATE(1183), + [sym__list_item_upper_alpha_period] = STATE(854), + [sym__list_upper_alpha_paren] = STATE(1183), + [sym__list_item_upper_alpha_paren] = STATE(855), + [sym__list_upper_alpha_parens] = STATE(1183), + [sym__list_item_upper_alpha_parens] = STATE(856), + [sym__list_lower_roman_period] = STATE(1183), + [sym__list_item_lower_roman_period] = STATE(857), + [sym__list_lower_roman_paren] = STATE(1183), + [sym__list_item_lower_roman_paren] = STATE(871), + [sym__list_lower_roman_parens] = STATE(1183), + [sym__list_item_lower_roman_parens] = STATE(874), + [sym__list_upper_roman_period] = STATE(1183), + [sym__list_item_upper_roman_period] = STATE(876), + [sym__list_upper_roman_paren] = STATE(1183), + [sym__list_item_upper_roman_paren] = STATE(878), + [sym__list_upper_roman_parens] = STATE(1183), + [sym__list_item_upper_roman_parens] = STATE(880), + [sym_list_item_content] = STATE(685), + [sym_table] = STATE(1121), + [sym__table_content] = STATE(406), + [sym_table_separator] = STATE(406), + [sym_table_row] = STATE(417), + [sym_footnote] = STATE(1121), + [sym_footnote_marker_begin] = STATE(1298), + [sym_div] = STATE(1121), + [sym__div_marker_begin] = STATE(1119), + [sym_code_block] = STATE(1121), + [sym_raw_block] = STATE(1121), + [sym_thematic_break] = STATE(1121), + [sym_block_quote] = STATE(1121), + [sym__block_quote_prefix] = STATE(300), + [sym_link_reference_definition] = STATE(1121), + [sym_block_attribute] = STATE(1121), + [sym__paragraph] = STATE(1121), + [sym__paragraph_content] = STATE(799), + [sym__paragraph_inline_content] = STATE(896), + [sym__inline] = STATE(715), + [sym__symbol_fallback] = STATE(381), + [aux_sym__list_dash_repeat1] = STATE(453), + [aux_sym__list_plus_repeat1] = STATE(458), + [aux_sym__list_star_repeat1] = STATE(463), + [aux_sym__list_task_repeat1] = STATE(440), + [aux_sym__list_definition_repeat1] = STATE(562), + [aux_sym__list_decimal_period_repeat1] = STATE(563), + [aux_sym__list_decimal_paren_repeat1] = STATE(542), + [aux_sym__list_decimal_parens_repeat1] = STATE(564), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(565), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(566), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(567), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(568), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(569), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(570), + [aux_sym__list_lower_roman_period_repeat1] = STATE(571), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(572), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(573), + [aux_sym__list_upper_roman_period_repeat1] = STATE(574), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(575), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(576), + [aux_sym_table_repeat1] = STATE(406), + [aux_sym__block_quote_prefix_repeat1] = STATE(330), + [aux_sym__inline_repeat1] = STATE(381), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_PIPE] = ACTIONS(391), + [anon_sym_LBRACK_CARET] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_DOT] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(13), + [aux_sym__inline_token1] = ACTIONS(13), + [anon_sym_LBRACE_DASH] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(13), + [anon_sym_PERCENT] = ACTIONS(13), + [sym__newline] = ACTIONS(419), + [sym__heading_begin] = ACTIONS(397), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(85), - [sym_list_marker_dash] = ACTIONS(441), - [sym_list_marker_star] = ACTIONS(441), - [sym_list_marker_plus] = ACTIONS(441), - [sym__list_marker_task_begin] = ACTIONS(441), + [sym__code_block_begin] = ACTIONS(399), + [sym_list_marker_dash] = ACTIONS(25), + [sym_list_marker_star] = ACTIONS(27), + [sym_list_marker_plus] = ACTIONS(29), + [sym__list_marker_task_begin] = ACTIONS(31), [sym_list_marker_definition] = ACTIONS(33), [sym_list_marker_decimal_period] = ACTIONS(35), [sym_list_marker_lower_alpha_period] = ACTIONS(37), @@ -11387,114 +11778,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(87), - [sym__block_quote_continuation] = ACTIONS(441), - [sym__thematic_break_dash] = ACTIONS(89), - [sym__thematic_break_star] = ACTIONS(89), + [sym__block_quote_begin] = ACTIONS(401), + [sym__block_quote_continuation] = ACTIONS(403), + [sym__thematic_break_dash] = ACTIONS(405), + [sym__thematic_break_star] = ACTIONS(405), }, [53] = { - [sym__block_with_heading] = STATE(661), - [sym__block_element] = STATE(661), - [sym_heading] = STATE(661), - [sym_list] = STATE(661), - [sym__list_dash] = STATE(684), - [sym__list_item_dash] = STATE(634), - [sym__list_plus] = STATE(684), - [sym__list_item_plus] = STATE(651), - [sym__list_star] = STATE(684), - [sym__list_item_star] = STATE(697), - [sym__list_task] = STATE(684), - [sym__list_item_task] = STATE(707), - [sym_list_marker_task] = STATE(47), - [sym__list_definition] = STATE(684), - [sym__list_item_definition] = STATE(736), - [sym__list_decimal_period] = STATE(684), - [sym__list_item_decimal_period] = STATE(795), - [sym__list_decimal_paren] = STATE(684), - [sym__list_item_decimal_paren] = STATE(848), - [sym__list_decimal_parens] = STATE(684), - [sym__list_item_decimal_parens] = STATE(772), - [sym__list_lower_alpha_period] = STATE(684), - [sym__list_item_lower_alpha_period] = STATE(787), - [sym__list_lower_alpha_paren] = STATE(684), - [sym__list_item_lower_alpha_paren] = STATE(792), - [sym__list_lower_alpha_parens] = STATE(684), - [sym__list_item_lower_alpha_parens] = STATE(793), - [sym__list_upper_alpha_period] = STATE(684), - [sym__list_item_upper_alpha_period] = STATE(797), - [sym__list_upper_alpha_paren] = STATE(684), - [sym__list_item_upper_alpha_paren] = STATE(798), - [sym__list_upper_alpha_parens] = STATE(684), - [sym__list_item_upper_alpha_parens] = STATE(799), - [sym__list_lower_roman_period] = STATE(684), - [sym__list_item_lower_roman_period] = STATE(801), - [sym__list_lower_roman_paren] = STATE(684), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(684), - [sym__list_item_lower_roman_parens] = STATE(814), - [sym__list_upper_roman_period] = STATE(684), - [sym__list_item_upper_roman_period] = STATE(818), - [sym__list_upper_roman_paren] = STATE(684), - [sym__list_item_upper_roman_paren] = STATE(819), - [sym__list_upper_roman_parens] = STATE(684), - [sym__list_item_upper_roman_parens] = STATE(822), - [sym_table] = STATE(661), - [sym__table_content] = STATE(368), - [sym_table_separator] = STATE(368), - [sym_table_row] = STATE(389), - [sym_footnote] = STATE(661), - [sym_footnote_marker_begin] = STATE(1116), - [sym_div] = STATE(661), - [sym__div_marker_begin] = STATE(988), - [sym_code_block] = STATE(661), - [sym_raw_block] = STATE(661), - [sym_thematic_break] = STATE(661), - [sym_block_quote] = STATE(661), - [sym__block_quote_prefix] = STATE(294), - [sym_link_reference_definition] = STATE(661), - [sym_block_attribute] = STATE(661), - [sym__paragraph] = STATE(661), - [sym__paragraph_content] = STATE(932), - [sym__paragraph_inline_content] = STATE(930), - [sym__inline] = STATE(695), - [sym__symbol_fallback] = STATE(358), - [aux_sym__list_dash_repeat1] = STATE(423), - [aux_sym__list_plus_repeat1] = STATE(417), - [aux_sym__list_star_repeat1] = STATE(420), - [aux_sym__list_task_repeat1] = STATE(395), - [aux_sym__list_definition_repeat1] = STATE(510), - [aux_sym__list_decimal_period_repeat1] = STATE(511), - [aux_sym__list_decimal_paren_repeat1] = STATE(512), - [aux_sym__list_decimal_parens_repeat1] = STATE(513), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(514), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(515), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(516), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(517), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(518), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(519), - [aux_sym__list_lower_roman_period_repeat1] = STATE(520), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(521), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(522), - [aux_sym__list_upper_roman_period_repeat1] = STATE(523), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(524), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(525), - [aux_sym_table_repeat1] = STATE(368), - [aux_sym__block_quote_prefix_repeat1] = STATE(320), - [aux_sym__inline_repeat1] = STATE(358), - [anon_sym_LBRACK] = ACTIONS(385), - [anon_sym_PIPE] = ACTIONS(387), + [sym__block_with_heading] = STATE(1144), + [sym__block_element] = STATE(1144), + [sym_heading] = STATE(1144), + [sym_list] = STATE(1144), + [sym__list_dash] = STATE(1183), + [sym__list_item_dash] = STATE(727), + [sym__list_plus] = STATE(1183), + [sym__list_item_plus] = STATE(730), + [sym__list_star] = STATE(1183), + [sym__list_item_star] = STATE(759), + [sym__list_task] = STATE(1183), + [sym__list_item_task] = STATE(761), + [sym_list_marker_task] = STATE(46), + [sym__list_definition] = STATE(1183), + [sym__list_item_definition] = STATE(819), + [sym__list_decimal_period] = STATE(1183), + [sym__list_item_decimal_period] = STATE(852), + [sym__list_decimal_paren] = STATE(1183), + [sym__list_item_decimal_paren] = STATE(837), + [sym__list_decimal_parens] = STATE(1183), + [sym__list_item_decimal_parens] = STATE(815), + [sym__list_lower_alpha_period] = STATE(1183), + [sym__list_item_lower_alpha_period] = STATE(843), + [sym__list_lower_alpha_paren] = STATE(1183), + [sym__list_item_lower_alpha_paren] = STATE(850), + [sym__list_lower_alpha_parens] = STATE(1183), + [sym__list_item_lower_alpha_parens] = STATE(853), + [sym__list_upper_alpha_period] = STATE(1183), + [sym__list_item_upper_alpha_period] = STATE(854), + [sym__list_upper_alpha_paren] = STATE(1183), + [sym__list_item_upper_alpha_paren] = STATE(855), + [sym__list_upper_alpha_parens] = STATE(1183), + [sym__list_item_upper_alpha_parens] = STATE(856), + [sym__list_lower_roman_period] = STATE(1183), + [sym__list_item_lower_roman_period] = STATE(857), + [sym__list_lower_roman_paren] = STATE(1183), + [sym__list_item_lower_roman_paren] = STATE(871), + [sym__list_lower_roman_parens] = STATE(1183), + [sym__list_item_lower_roman_parens] = STATE(874), + [sym__list_upper_roman_period] = STATE(1183), + [sym__list_item_upper_roman_period] = STATE(876), + [sym__list_upper_roman_paren] = STATE(1183), + [sym__list_item_upper_roman_paren] = STATE(878), + [sym__list_upper_roman_parens] = STATE(1183), + [sym__list_item_upper_roman_parens] = STATE(880), + [sym_list_item_content] = STATE(689), + [sym_table] = STATE(1144), + [sym__table_content] = STATE(406), + [sym_table_separator] = STATE(406), + [sym_table_row] = STATE(417), + [sym_footnote] = STATE(1144), + [sym_footnote_marker_begin] = STATE(1298), + [sym_div] = STATE(1144), + [sym__div_marker_begin] = STATE(1119), + [sym_code_block] = STATE(1144), + [sym_raw_block] = STATE(1144), + [sym_thematic_break] = STATE(1144), + [sym_block_quote] = STATE(1144), + [sym__block_quote_prefix] = STATE(300), + [sym_link_reference_definition] = STATE(1144), + [sym_block_attribute] = STATE(1144), + [sym__paragraph] = STATE(1144), + [sym__paragraph_content] = STATE(799), + [sym__paragraph_inline_content] = STATE(896), + [sym__inline] = STATE(715), + [sym__symbol_fallback] = STATE(381), + [aux_sym__list_dash_repeat1] = STATE(453), + [aux_sym__list_plus_repeat1] = STATE(458), + [aux_sym__list_star_repeat1] = STATE(463), + [aux_sym__list_task_repeat1] = STATE(440), + [aux_sym__list_definition_repeat1] = STATE(562), + [aux_sym__list_decimal_period_repeat1] = STATE(563), + [aux_sym__list_decimal_paren_repeat1] = STATE(542), + [aux_sym__list_decimal_parens_repeat1] = STATE(564), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(565), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(566), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(567), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(568), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(569), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(570), + [aux_sym__list_lower_roman_period_repeat1] = STATE(571), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(572), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(573), + [aux_sym__list_upper_roman_period_repeat1] = STATE(574), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(575), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(576), + [aux_sym_table_repeat1] = STATE(406), + [aux_sym__block_quote_prefix_repeat1] = STATE(330), + [aux_sym__inline_repeat1] = STATE(381), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_PIPE] = ACTIONS(391), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(393), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(445), - [sym__heading_begin] = ACTIONS(393), + [sym__newline] = ACTIONS(429), + [sym__heading_begin] = ACTIONS(397), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(395), + [sym__code_block_begin] = ACTIONS(399), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -11515,114 +11907,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(397), - [sym__block_quote_continuation] = ACTIONS(399), - [sym__thematic_break_dash] = ACTIONS(401), - [sym__thematic_break_star] = ACTIONS(401), + [sym__block_quote_begin] = ACTIONS(401), + [sym__block_quote_continuation] = ACTIONS(403), + [sym__thematic_break_dash] = ACTIONS(405), + [sym__thematic_break_star] = ACTIONS(405), }, [54] = { - [sym__block_with_heading] = STATE(671), - [sym__block_element] = STATE(671), - [sym_heading] = STATE(671), - [sym_list] = STATE(671), - [sym__list_dash] = STATE(684), - [sym__list_item_dash] = STATE(634), - [sym__list_plus] = STATE(684), - [sym__list_item_plus] = STATE(651), - [sym__list_star] = STATE(684), - [sym__list_item_star] = STATE(697), - [sym__list_task] = STATE(684), - [sym__list_item_task] = STATE(707), - [sym_list_marker_task] = STATE(47), - [sym__list_definition] = STATE(684), - [sym__list_item_definition] = STATE(736), - [sym__list_decimal_period] = STATE(684), - [sym__list_item_decimal_period] = STATE(795), - [sym__list_decimal_paren] = STATE(684), - [sym__list_item_decimal_paren] = STATE(848), - [sym__list_decimal_parens] = STATE(684), - [sym__list_item_decimal_parens] = STATE(772), - [sym__list_lower_alpha_period] = STATE(684), - [sym__list_item_lower_alpha_period] = STATE(787), - [sym__list_lower_alpha_paren] = STATE(684), - [sym__list_item_lower_alpha_paren] = STATE(792), - [sym__list_lower_alpha_parens] = STATE(684), - [sym__list_item_lower_alpha_parens] = STATE(793), - [sym__list_upper_alpha_period] = STATE(684), - [sym__list_item_upper_alpha_period] = STATE(797), - [sym__list_upper_alpha_paren] = STATE(684), - [sym__list_item_upper_alpha_paren] = STATE(798), - [sym__list_upper_alpha_parens] = STATE(684), - [sym__list_item_upper_alpha_parens] = STATE(799), - [sym__list_lower_roman_period] = STATE(684), - [sym__list_item_lower_roman_period] = STATE(801), - [sym__list_lower_roman_paren] = STATE(684), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(684), - [sym__list_item_lower_roman_parens] = STATE(814), - [sym__list_upper_roman_period] = STATE(684), - [sym__list_item_upper_roman_period] = STATE(818), - [sym__list_upper_roman_paren] = STATE(684), - [sym__list_item_upper_roman_paren] = STATE(819), - [sym__list_upper_roman_parens] = STATE(684), - [sym__list_item_upper_roman_parens] = STATE(822), - [sym_table] = STATE(671), - [sym__table_content] = STATE(368), - [sym_table_separator] = STATE(368), - [sym_table_row] = STATE(389), - [sym_footnote] = STATE(671), - [sym_footnote_marker_begin] = STATE(1116), - [sym_div] = STATE(671), - [sym__div_marker_begin] = STATE(988), - [sym_code_block] = STATE(671), - [sym_raw_block] = STATE(671), - [sym_thematic_break] = STATE(671), - [sym_block_quote] = STATE(671), - [sym__block_quote_prefix] = STATE(294), - [sym_link_reference_definition] = STATE(671), - [sym_block_attribute] = STATE(671), - [sym__paragraph] = STATE(671), - [sym__paragraph_content] = STATE(932), - [sym__paragraph_inline_content] = STATE(930), - [sym__inline] = STATE(695), - [sym__symbol_fallback] = STATE(358), - [aux_sym__list_dash_repeat1] = STATE(423), - [aux_sym__list_plus_repeat1] = STATE(417), - [aux_sym__list_star_repeat1] = STATE(420), - [aux_sym__list_task_repeat1] = STATE(395), - [aux_sym__list_definition_repeat1] = STATE(510), - [aux_sym__list_decimal_period_repeat1] = STATE(511), - [aux_sym__list_decimal_paren_repeat1] = STATE(512), - [aux_sym__list_decimal_parens_repeat1] = STATE(513), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(514), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(515), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(516), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(517), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(518), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(519), - [aux_sym__list_lower_roman_period_repeat1] = STATE(520), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(521), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(522), - [aux_sym__list_upper_roman_period_repeat1] = STATE(523), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(524), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(525), - [aux_sym_table_repeat1] = STATE(368), - [aux_sym__block_quote_prefix_repeat1] = STATE(320), - [aux_sym__inline_repeat1] = STATE(358), - [anon_sym_LBRACK] = ACTIONS(385), - [anon_sym_PIPE] = ACTIONS(387), + [sym__block_with_heading] = STATE(1242), + [sym__block_element] = STATE(1242), + [sym_heading] = STATE(1242), + [sym_list] = STATE(1242), + [sym__list_dash] = STATE(1183), + [sym__list_item_dash] = STATE(727), + [sym__list_plus] = STATE(1183), + [sym__list_item_plus] = STATE(730), + [sym__list_star] = STATE(1183), + [sym__list_item_star] = STATE(759), + [sym__list_task] = STATE(1183), + [sym__list_item_task] = STATE(761), + [sym_list_marker_task] = STATE(46), + [sym__list_definition] = STATE(1183), + [sym__list_item_definition] = STATE(819), + [sym__list_decimal_period] = STATE(1183), + [sym__list_item_decimal_period] = STATE(852), + [sym__list_decimal_paren] = STATE(1183), + [sym__list_item_decimal_paren] = STATE(837), + [sym__list_decimal_parens] = STATE(1183), + [sym__list_item_decimal_parens] = STATE(815), + [sym__list_lower_alpha_period] = STATE(1183), + [sym__list_item_lower_alpha_period] = STATE(843), + [sym__list_lower_alpha_paren] = STATE(1183), + [sym__list_item_lower_alpha_paren] = STATE(850), + [sym__list_lower_alpha_parens] = STATE(1183), + [sym__list_item_lower_alpha_parens] = STATE(853), + [sym__list_upper_alpha_period] = STATE(1183), + [sym__list_item_upper_alpha_period] = STATE(854), + [sym__list_upper_alpha_paren] = STATE(1183), + [sym__list_item_upper_alpha_paren] = STATE(855), + [sym__list_upper_alpha_parens] = STATE(1183), + [sym__list_item_upper_alpha_parens] = STATE(856), + [sym__list_lower_roman_period] = STATE(1183), + [sym__list_item_lower_roman_period] = STATE(857), + [sym__list_lower_roman_paren] = STATE(1183), + [sym__list_item_lower_roman_paren] = STATE(871), + [sym__list_lower_roman_parens] = STATE(1183), + [sym__list_item_lower_roman_parens] = STATE(874), + [sym__list_upper_roman_period] = STATE(1183), + [sym__list_item_upper_roman_period] = STATE(876), + [sym__list_upper_roman_paren] = STATE(1183), + [sym__list_item_upper_roman_paren] = STATE(878), + [sym__list_upper_roman_parens] = STATE(1183), + [sym__list_item_upper_roman_parens] = STATE(880), + [sym_list_item_content] = STATE(690), + [sym_table] = STATE(1242), + [sym__table_content] = STATE(406), + [sym_table_separator] = STATE(406), + [sym_table_row] = STATE(417), + [sym_footnote] = STATE(1242), + [sym_footnote_marker_begin] = STATE(1298), + [sym_div] = STATE(1242), + [sym__div_marker_begin] = STATE(1119), + [sym_code_block] = STATE(1242), + [sym_raw_block] = STATE(1242), + [sym_thematic_break] = STATE(1242), + [sym_block_quote] = STATE(1242), + [sym__block_quote_prefix] = STATE(300), + [sym_link_reference_definition] = STATE(1242), + [sym_block_attribute] = STATE(1242), + [sym__paragraph] = STATE(1242), + [sym__paragraph_content] = STATE(799), + [sym__paragraph_inline_content] = STATE(896), + [sym__inline] = STATE(715), + [sym__symbol_fallback] = STATE(381), + [aux_sym__list_dash_repeat1] = STATE(453), + [aux_sym__list_plus_repeat1] = STATE(458), + [aux_sym__list_star_repeat1] = STATE(463), + [aux_sym__list_task_repeat1] = STATE(440), + [aux_sym__list_definition_repeat1] = STATE(562), + [aux_sym__list_decimal_period_repeat1] = STATE(563), + [aux_sym__list_decimal_paren_repeat1] = STATE(542), + [aux_sym__list_decimal_parens_repeat1] = STATE(564), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(565), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(566), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(567), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(568), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(569), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(570), + [aux_sym__list_lower_roman_period_repeat1] = STATE(571), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(572), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(573), + [aux_sym__list_upper_roman_period_repeat1] = STATE(574), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(575), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(576), + [aux_sym_table_repeat1] = STATE(406), + [aux_sym__block_quote_prefix_repeat1] = STATE(330), + [aux_sym__inline_repeat1] = STATE(381), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_PIPE] = ACTIONS(391), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(393), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(447), - [sym__heading_begin] = ACTIONS(393), + [sym__newline] = ACTIONS(433), + [sym__heading_begin] = ACTIONS(397), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(395), + [sym__code_block_begin] = ACTIONS(399), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -11643,113 +12036,242 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(397), - [sym__block_quote_continuation] = ACTIONS(399), - [sym__thematic_break_dash] = ACTIONS(401), - [sym__thematic_break_star] = ACTIONS(401), + [sym__block_quote_begin] = ACTIONS(401), + [sym__block_quote_continuation] = ACTIONS(403), + [sym__thematic_break_dash] = ACTIONS(405), + [sym__thematic_break_star] = ACTIONS(405), }, [55] = { - [sym__block_element] = STATE(498), - [sym_heading] = STATE(498), - [sym_list] = STATE(498), - [sym__list_dash] = STATE(876), - [sym__list_item_dash] = STATE(634), - [sym__list_plus] = STATE(876), - [sym__list_item_plus] = STATE(651), - [sym__list_star] = STATE(876), - [sym__list_item_star] = STATE(697), - [sym__list_task] = STATE(876), - [sym__list_item_task] = STATE(707), - [sym_list_marker_task] = STATE(47), - [sym__list_definition] = STATE(876), - [sym__list_item_definition] = STATE(736), - [sym__list_decimal_period] = STATE(876), - [sym__list_item_decimal_period] = STATE(795), - [sym__list_decimal_paren] = STATE(876), - [sym__list_item_decimal_paren] = STATE(848), - [sym__list_decimal_parens] = STATE(876), - [sym__list_item_decimal_parens] = STATE(772), - [sym__list_lower_alpha_period] = STATE(876), - [sym__list_item_lower_alpha_period] = STATE(787), - [sym__list_lower_alpha_paren] = STATE(876), - [sym__list_item_lower_alpha_paren] = STATE(792), - [sym__list_lower_alpha_parens] = STATE(876), - [sym__list_item_lower_alpha_parens] = STATE(793), - [sym__list_upper_alpha_period] = STATE(876), - [sym__list_item_upper_alpha_period] = STATE(797), - [sym__list_upper_alpha_paren] = STATE(876), - [sym__list_item_upper_alpha_paren] = STATE(798), - [sym__list_upper_alpha_parens] = STATE(876), - [sym__list_item_upper_alpha_parens] = STATE(799), - [sym__list_lower_roman_period] = STATE(876), - [sym__list_item_lower_roman_period] = STATE(801), - [sym__list_lower_roman_paren] = STATE(876), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(876), - [sym__list_item_lower_roman_parens] = STATE(814), - [sym__list_upper_roman_period] = STATE(876), - [sym__list_item_upper_roman_period] = STATE(818), - [sym__list_upper_roman_paren] = STATE(876), - [sym__list_item_upper_roman_paren] = STATE(819), - [sym__list_upper_roman_parens] = STATE(876), - [sym__list_item_upper_roman_parens] = STATE(822), - [sym_table] = STATE(498), - [sym__table_content] = STATE(380), - [sym_table_separator] = STATE(380), - [sym_table_row] = STATE(405), - [sym_footnote] = STATE(498), - [sym_footnote_marker_begin] = STATE(1118), - [sym_div] = STATE(498), - [sym__div_marker_begin] = STATE(1010), - [sym_code_block] = STATE(498), - [sym_raw_block] = STATE(498), - [sym_thematic_break] = STATE(498), - [sym_block_quote] = STATE(498), - [sym__block_quote_content] = STATE(1088), - [sym__block_quote_prefix] = STATE(295), - [sym_link_reference_definition] = STATE(498), - [sym_block_attribute] = STATE(498), - [sym__paragraph] = STATE(498), - [sym__paragraph_content] = STATE(755), - [sym__paragraph_inline_content] = STATE(930), - [sym__inline] = STATE(695), - [sym__symbol_fallback] = STATE(358), - [aux_sym__list_dash_repeat1] = STATE(418), - [aux_sym__list_plus_repeat1] = STATE(419), - [aux_sym__list_star_repeat1] = STATE(426), - [aux_sym__list_task_repeat1] = STATE(390), - [aux_sym__list_definition_repeat1] = STATE(533), - [aux_sym__list_decimal_period_repeat1] = STATE(534), - [aux_sym__list_decimal_paren_repeat1] = STATE(535), - [aux_sym__list_decimal_parens_repeat1] = STATE(536), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(537), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(538), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(539), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(540), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(541), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(542), - [aux_sym__list_lower_roman_period_repeat1] = STATE(543), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(544), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(545), - [aux_sym__list_upper_roman_period_repeat1] = STATE(546), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(547), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(548), - [aux_sym_table_repeat1] = STATE(380), - [aux_sym__block_quote_prefix_repeat1] = STATE(320), - [aux_sym__inline_repeat1] = STATE(358), - [anon_sym_LBRACK] = ACTIONS(449), - [anon_sym_PIPE] = ACTIONS(451), + [sym__block_element] = STATE(162), + [sym_heading] = STATE(162), + [sym_list] = STATE(162), + [sym__list_dash] = STATE(166), + [sym__list_item_dash] = STATE(727), + [sym__list_plus] = STATE(166), + [sym__list_item_plus] = STATE(730), + [sym__list_star] = STATE(166), + [sym__list_item_star] = STATE(759), + [sym__list_task] = STATE(166), + [sym__list_item_task] = STATE(761), + [sym_list_marker_task] = STATE(46), + [sym__list_definition] = STATE(166), + [sym__list_item_definition] = STATE(819), + [sym__list_decimal_period] = STATE(166), + [sym__list_item_decimal_period] = STATE(852), + [sym__list_decimal_paren] = STATE(166), + [sym__list_item_decimal_paren] = STATE(837), + [sym__list_decimal_parens] = STATE(166), + [sym__list_item_decimal_parens] = STATE(815), + [sym__list_lower_alpha_period] = STATE(166), + [sym__list_item_lower_alpha_period] = STATE(843), + [sym__list_lower_alpha_paren] = STATE(166), + [sym__list_item_lower_alpha_paren] = STATE(850), + [sym__list_lower_alpha_parens] = STATE(166), + [sym__list_item_lower_alpha_parens] = STATE(853), + [sym__list_upper_alpha_period] = STATE(166), + [sym__list_item_upper_alpha_period] = STATE(854), + [sym__list_upper_alpha_paren] = STATE(166), + [sym__list_item_upper_alpha_paren] = STATE(855), + [sym__list_upper_alpha_parens] = STATE(166), + [sym__list_item_upper_alpha_parens] = STATE(856), + [sym__list_lower_roman_period] = STATE(166), + [sym__list_item_lower_roman_period] = STATE(857), + [sym__list_lower_roman_paren] = STATE(166), + [sym__list_item_lower_roman_paren] = STATE(871), + [sym__list_lower_roman_parens] = STATE(166), + [sym__list_item_lower_roman_parens] = STATE(874), + [sym__list_upper_roman_period] = STATE(166), + [sym__list_item_upper_roman_period] = STATE(876), + [sym__list_upper_roman_paren] = STATE(166), + [sym__list_item_upper_roman_paren] = STATE(878), + [sym__list_upper_roman_parens] = STATE(166), + [sym__list_item_upper_roman_parens] = STATE(880), + [sym_table] = STATE(162), + [sym__table_content] = STATE(72), + [sym_table_separator] = STATE(72), + [sym_table_row] = STATE(79), + [sym_footnote] = STATE(162), + [sym_footnote_marker_begin] = STATE(1302), + [sym_div] = STATE(162), + [sym__div_marker_begin] = STATE(1165), + [sym_code_block] = STATE(162), + [sym_raw_block] = STATE(162), + [sym_thematic_break] = STATE(162), + [sym_block_quote] = STATE(162), + [sym__block_quote_prefix] = STATE(304), + [sym_link_reference_definition] = STATE(162), + [sym_block_attribute] = STATE(162), + [sym__paragraph] = STATE(162), + [sym__paragraph_content] = STATE(848), + [sym__paragraph_inline_content] = STATE(896), + [sym__inline] = STATE(715), + [sym__symbol_fallback] = STATE(381), + [aux_sym__list_dash_repeat1] = STATE(454), + [aux_sym__list_plus_repeat1] = STATE(455), + [aux_sym__list_star_repeat1] = STATE(456), + [aux_sym__list_task_repeat1] = STATE(436), + [aux_sym__list_definition_repeat1] = STATE(612), + [aux_sym__list_decimal_period_repeat1] = STATE(613), + [aux_sym__list_decimal_paren_repeat1] = STATE(614), + [aux_sym__list_decimal_parens_repeat1] = STATE(615), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(616), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(617), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(618), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(619), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(620), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(621), + [aux_sym__list_lower_roman_period_repeat1] = STATE(622), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(623), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(624), + [aux_sym__list_upper_roman_period_repeat1] = STATE(625), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(626), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(627), + [aux_sym_table_repeat1] = STATE(72), + [aux_sym__block_quote_prefix_repeat1] = STATE(330), + [aux_sym__inline_repeat1] = STATE(381), + [anon_sym_LBRACK] = ACTIONS(443), + [anon_sym_PIPE] = ACTIONS(443), + [anon_sym_LBRACK_CARET] = ACTIONS(443), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_DOT] = ACTIONS(443), + [aux_sym_identifier_token1] = ACTIONS(443), + [aux_sym__inline_token1] = ACTIONS(443), + [anon_sym_LBRACE_DASH] = ACTIONS(443), + [anon_sym_POUND] = ACTIONS(443), + [anon_sym_PERCENT] = ACTIONS(443), + [sym__block_close] = ACTIONS(445), + [sym__newline] = ACTIONS(447), + [sym__heading_begin] = ACTIONS(19), + [sym__div_begin] = ACTIONS(21), + [sym__code_block_begin] = ACTIONS(83), + [sym_list_marker_dash] = ACTIONS(445), + [sym_list_marker_star] = ACTIONS(445), + [sym_list_marker_plus] = ACTIONS(445), + [sym__list_marker_task_begin] = ACTIONS(445), + [sym_list_marker_definition] = ACTIONS(33), + [sym_list_marker_decimal_period] = ACTIONS(35), + [sym_list_marker_lower_alpha_period] = ACTIONS(37), + [sym_list_marker_upper_alpha_period] = ACTIONS(39), + [sym_list_marker_lower_roman_period] = ACTIONS(41), + [sym_list_marker_upper_roman_period] = ACTIONS(43), + [sym_list_marker_decimal_paren] = ACTIONS(45), + [sym_list_marker_lower_alpha_paren] = ACTIONS(47), + [sym_list_marker_upper_alpha_paren] = ACTIONS(49), + [sym_list_marker_lower_roman_paren] = ACTIONS(51), + [sym_list_marker_upper_roman_paren] = ACTIONS(53), + [sym_list_marker_decimal_parens] = ACTIONS(55), + [sym_list_marker_lower_alpha_parens] = ACTIONS(57), + [sym_list_marker_upper_alpha_parens] = ACTIONS(59), + [sym_list_marker_lower_roman_parens] = ACTIONS(61), + [sym_list_marker_upper_roman_parens] = ACTIONS(63), + [sym__block_quote_begin] = ACTIONS(85), + [sym__block_quote_continuation] = ACTIONS(445), + [sym__thematic_break_dash] = ACTIONS(87), + [sym__thematic_break_star] = ACTIONS(87), + }, + [56] = { + [sym__block_with_heading] = STATE(1225), + [sym__block_element] = STATE(1225), + [sym_heading] = STATE(1225), + [sym_list] = STATE(1225), + [sym__list_dash] = STATE(1183), + [sym__list_item_dash] = STATE(727), + [sym__list_plus] = STATE(1183), + [sym__list_item_plus] = STATE(730), + [sym__list_star] = STATE(1183), + [sym__list_item_star] = STATE(759), + [sym__list_task] = STATE(1183), + [sym__list_item_task] = STATE(761), + [sym_list_marker_task] = STATE(46), + [sym__list_definition] = STATE(1183), + [sym__list_item_definition] = STATE(819), + [sym__list_decimal_period] = STATE(1183), + [sym__list_item_decimal_period] = STATE(852), + [sym__list_decimal_paren] = STATE(1183), + [sym__list_item_decimal_paren] = STATE(837), + [sym__list_decimal_parens] = STATE(1183), + [sym__list_item_decimal_parens] = STATE(815), + [sym__list_lower_alpha_period] = STATE(1183), + [sym__list_item_lower_alpha_period] = STATE(843), + [sym__list_lower_alpha_paren] = STATE(1183), + [sym__list_item_lower_alpha_paren] = STATE(850), + [sym__list_lower_alpha_parens] = STATE(1183), + [sym__list_item_lower_alpha_parens] = STATE(853), + [sym__list_upper_alpha_period] = STATE(1183), + [sym__list_item_upper_alpha_period] = STATE(854), + [sym__list_upper_alpha_paren] = STATE(1183), + [sym__list_item_upper_alpha_paren] = STATE(855), + [sym__list_upper_alpha_parens] = STATE(1183), + [sym__list_item_upper_alpha_parens] = STATE(856), + [sym__list_lower_roman_period] = STATE(1183), + [sym__list_item_lower_roman_period] = STATE(857), + [sym__list_lower_roman_paren] = STATE(1183), + [sym__list_item_lower_roman_paren] = STATE(871), + [sym__list_lower_roman_parens] = STATE(1183), + [sym__list_item_lower_roman_parens] = STATE(874), + [sym__list_upper_roman_period] = STATE(1183), + [sym__list_item_upper_roman_period] = STATE(876), + [sym__list_upper_roman_paren] = STATE(1183), + [sym__list_item_upper_roman_paren] = STATE(878), + [sym__list_upper_roman_parens] = STATE(1183), + [sym__list_item_upper_roman_parens] = STATE(880), + [sym_table] = STATE(1225), + [sym__table_content] = STATE(406), + [sym_table_separator] = STATE(406), + [sym_table_row] = STATE(417), + [sym_footnote] = STATE(1225), + [sym_footnote_marker_begin] = STATE(1298), + [sym_div] = STATE(1225), + [sym__div_marker_begin] = STATE(1119), + [sym_code_block] = STATE(1225), + [sym_raw_block] = STATE(1225), + [sym_thematic_break] = STATE(1225), + [sym_block_quote] = STATE(1225), + [sym__block_quote_prefix] = STATE(300), + [sym_link_reference_definition] = STATE(1225), + [sym_block_attribute] = STATE(1225), + [sym__paragraph] = STATE(1225), + [sym__paragraph_content] = STATE(799), + [sym__paragraph_inline_content] = STATE(896), + [sym__inline] = STATE(715), + [sym__symbol_fallback] = STATE(381), + [aux_sym__list_dash_repeat1] = STATE(453), + [aux_sym__list_plus_repeat1] = STATE(458), + [aux_sym__list_star_repeat1] = STATE(463), + [aux_sym__list_task_repeat1] = STATE(440), + [aux_sym__list_definition_repeat1] = STATE(562), + [aux_sym__list_decimal_period_repeat1] = STATE(563), + [aux_sym__list_decimal_paren_repeat1] = STATE(542), + [aux_sym__list_decimal_parens_repeat1] = STATE(564), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(565), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(566), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(567), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(568), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(569), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(570), + [aux_sym__list_lower_roman_period_repeat1] = STATE(571), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(572), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(573), + [aux_sym__list_upper_roman_period_repeat1] = STATE(574), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(575), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(576), + [aux_sym_table_repeat1] = STATE(406), + [aux_sym__block_quote_prefix_repeat1] = STATE(330), + [aux_sym__inline_repeat1] = STATE(381), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_PIPE] = ACTIONS(391), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(393), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__heading_begin] = ACTIONS(455), + [sym__newline] = ACTIONS(449), + [sym__heading_begin] = ACTIONS(397), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(457), + [sym__code_block_begin] = ACTIONS(399), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -11770,117 +12292,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(459), - [sym__block_quote_continuation] = ACTIONS(67), - [sym__thematic_break_dash] = ACTIONS(461), - [sym__thematic_break_star] = ACTIONS(461), + [sym__block_quote_begin] = ACTIONS(401), + [sym__block_quote_continuation] = ACTIONS(403), + [sym__thematic_break_dash] = ACTIONS(405), + [sym__thematic_break_star] = ACTIONS(405), }, - [56] = { - [sym__block_element] = STATE(160), - [sym_heading] = STATE(160), - [sym_list] = STATE(160), - [sym__list_dash] = STATE(223), - [sym__list_item_dash] = STATE(634), - [sym__list_plus] = STATE(223), - [sym__list_item_plus] = STATE(651), - [sym__list_star] = STATE(223), - [sym__list_item_star] = STATE(697), - [sym__list_task] = STATE(223), - [sym__list_item_task] = STATE(707), - [sym_list_marker_task] = STATE(47), - [sym__list_definition] = STATE(223), - [sym__list_item_definition] = STATE(736), - [sym__list_decimal_period] = STATE(223), - [sym__list_item_decimal_period] = STATE(795), - [sym__list_decimal_paren] = STATE(223), - [sym__list_item_decimal_paren] = STATE(848), - [sym__list_decimal_parens] = STATE(223), - [sym__list_item_decimal_parens] = STATE(772), - [sym__list_lower_alpha_period] = STATE(223), - [sym__list_item_lower_alpha_period] = STATE(787), - [sym__list_lower_alpha_paren] = STATE(223), - [sym__list_item_lower_alpha_paren] = STATE(792), - [sym__list_lower_alpha_parens] = STATE(223), - [sym__list_item_lower_alpha_parens] = STATE(793), - [sym__list_upper_alpha_period] = STATE(223), - [sym__list_item_upper_alpha_period] = STATE(797), - [sym__list_upper_alpha_paren] = STATE(223), - [sym__list_item_upper_alpha_paren] = STATE(798), - [sym__list_upper_alpha_parens] = STATE(223), - [sym__list_item_upper_alpha_parens] = STATE(799), - [sym__list_lower_roman_period] = STATE(223), - [sym__list_item_lower_roman_period] = STATE(801), - [sym__list_lower_roman_paren] = STATE(223), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(223), - [sym__list_item_lower_roman_parens] = STATE(814), - [sym__list_upper_roman_period] = STATE(223), - [sym__list_item_upper_roman_period] = STATE(818), - [sym__list_upper_roman_paren] = STATE(223), - [sym__list_item_upper_roman_paren] = STATE(819), - [sym__list_upper_roman_parens] = STATE(223), - [sym__list_item_upper_roman_parens] = STATE(822), - [sym_table] = STATE(160), - [sym__table_content] = STATE(65), - [sym_table_separator] = STATE(65), - [sym_table_row] = STATE(70), - [sym_footnote] = STATE(160), - [sym_footnote_marker_begin] = STATE(1122), - [sym_div] = STATE(160), - [sym__div_marker_begin] = STATE(1053), - [sym_code_block] = STATE(160), - [sym_raw_block] = STATE(160), - [sym_thematic_break] = STATE(160), - [sym_block_quote] = STATE(160), - [sym__block_quote_prefix] = STATE(291), - [sym_link_reference_definition] = STATE(160), - [sym_block_attribute] = STATE(160), - [sym__paragraph] = STATE(160), - [sym__paragraph_content] = STATE(812), - [sym__paragraph_inline_content] = STATE(930), - [sym__inline] = STATE(695), - [sym__symbol_fallback] = STATE(358), - [aux_sym__list_dash_repeat1] = STATE(424), - [aux_sym__list_plus_repeat1] = STATE(425), - [aux_sym__list_star_repeat1] = STATE(427), - [aux_sym__list_task_repeat1] = STATE(409), - [aux_sym__list_definition_repeat1] = STATE(577), - [aux_sym__list_decimal_period_repeat1] = STATE(578), - [aux_sym__list_decimal_paren_repeat1] = STATE(579), - [aux_sym__list_decimal_parens_repeat1] = STATE(580), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(581), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(582), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(583), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(584), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(585), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(586), - [aux_sym__list_lower_roman_period_repeat1] = STATE(587), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(588), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(589), - [aux_sym__list_upper_roman_period_repeat1] = STATE(590), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(591), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(592), - [aux_sym_table_repeat1] = STATE(65), - [aux_sym__block_quote_prefix_repeat1] = STATE(320), - [aux_sym__inline_repeat1] = STATE(358), - [anon_sym_LBRACK] = ACTIONS(439), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_LBRACK_CARET] = ACTIONS(439), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(439), - [aux_sym_identifier_token1] = ACTIONS(439), - [aux_sym__inline_token1] = ACTIONS(439), - [anon_sym_LBRACE_DASH] = ACTIONS(439), - [anon_sym_POUND] = ACTIONS(439), - [anon_sym_PERCENT] = ACTIONS(439), - [sym__newline] = ACTIONS(463), - [sym__heading_begin] = ACTIONS(230), + [57] = { + [sym__block_with_heading] = STATE(1166), + [sym__block_element] = STATE(1166), + [sym_heading] = STATE(1166), + [sym_list] = STATE(1166), + [sym__list_dash] = STATE(1183), + [sym__list_item_dash] = STATE(727), + [sym__list_plus] = STATE(1183), + [sym__list_item_plus] = STATE(730), + [sym__list_star] = STATE(1183), + [sym__list_item_star] = STATE(759), + [sym__list_task] = STATE(1183), + [sym__list_item_task] = STATE(761), + [sym_list_marker_task] = STATE(46), + [sym__list_definition] = STATE(1183), + [sym__list_item_definition] = STATE(819), + [sym__list_decimal_period] = STATE(1183), + [sym__list_item_decimal_period] = STATE(852), + [sym__list_decimal_paren] = STATE(1183), + [sym__list_item_decimal_paren] = STATE(837), + [sym__list_decimal_parens] = STATE(1183), + [sym__list_item_decimal_parens] = STATE(815), + [sym__list_lower_alpha_period] = STATE(1183), + [sym__list_item_lower_alpha_period] = STATE(843), + [sym__list_lower_alpha_paren] = STATE(1183), + [sym__list_item_lower_alpha_paren] = STATE(850), + [sym__list_lower_alpha_parens] = STATE(1183), + [sym__list_item_lower_alpha_parens] = STATE(853), + [sym__list_upper_alpha_period] = STATE(1183), + [sym__list_item_upper_alpha_period] = STATE(854), + [sym__list_upper_alpha_paren] = STATE(1183), + [sym__list_item_upper_alpha_paren] = STATE(855), + [sym__list_upper_alpha_parens] = STATE(1183), + [sym__list_item_upper_alpha_parens] = STATE(856), + [sym__list_lower_roman_period] = STATE(1183), + [sym__list_item_lower_roman_period] = STATE(857), + [sym__list_lower_roman_paren] = STATE(1183), + [sym__list_item_lower_roman_paren] = STATE(871), + [sym__list_lower_roman_parens] = STATE(1183), + [sym__list_item_lower_roman_parens] = STATE(874), + [sym__list_upper_roman_period] = STATE(1183), + [sym__list_item_upper_roman_period] = STATE(876), + [sym__list_upper_roman_paren] = STATE(1183), + [sym__list_item_upper_roman_paren] = STATE(878), + [sym__list_upper_roman_parens] = STATE(1183), + [sym__list_item_upper_roman_parens] = STATE(880), + [sym_table] = STATE(1166), + [sym__table_content] = STATE(406), + [sym_table_separator] = STATE(406), + [sym_table_row] = STATE(417), + [sym_footnote] = STATE(1166), + [sym_footnote_marker_begin] = STATE(1298), + [sym_div] = STATE(1166), + [sym__div_marker_begin] = STATE(1119), + [sym_code_block] = STATE(1166), + [sym_raw_block] = STATE(1166), + [sym_thematic_break] = STATE(1166), + [sym_block_quote] = STATE(1166), + [sym__block_quote_prefix] = STATE(300), + [sym_link_reference_definition] = STATE(1166), + [sym_block_attribute] = STATE(1166), + [sym__paragraph] = STATE(1166), + [sym__paragraph_content] = STATE(799), + [sym__paragraph_inline_content] = STATE(896), + [sym__inline] = STATE(715), + [sym__symbol_fallback] = STATE(381), + [aux_sym__list_dash_repeat1] = STATE(453), + [aux_sym__list_plus_repeat1] = STATE(458), + [aux_sym__list_star_repeat1] = STATE(463), + [aux_sym__list_task_repeat1] = STATE(440), + [aux_sym__list_definition_repeat1] = STATE(562), + [aux_sym__list_decimal_period_repeat1] = STATE(563), + [aux_sym__list_decimal_paren_repeat1] = STATE(542), + [aux_sym__list_decimal_parens_repeat1] = STATE(564), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(565), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(566), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(567), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(568), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(569), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(570), + [aux_sym__list_lower_roman_period_repeat1] = STATE(571), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(572), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(573), + [aux_sym__list_upper_roman_period_repeat1] = STATE(574), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(575), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(576), + [aux_sym_table_repeat1] = STATE(406), + [aux_sym__block_quote_prefix_repeat1] = STATE(330), + [aux_sym__inline_repeat1] = STATE(381), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_PIPE] = ACTIONS(391), + [anon_sym_LBRACK_CARET] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_DOT] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(13), + [aux_sym__inline_token1] = ACTIONS(13), + [anon_sym_LBRACE_DASH] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(13), + [anon_sym_PERCENT] = ACTIONS(13), + [sym__newline] = ACTIONS(451), + [sym__heading_begin] = ACTIONS(397), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(232), - [sym_list_marker_dash] = ACTIONS(441), - [sym_list_marker_star] = ACTIONS(441), - [sym_list_marker_plus] = ACTIONS(441), - [sym__list_marker_task_begin] = ACTIONS(441), + [sym__code_block_begin] = ACTIONS(399), + [sym_list_marker_dash] = ACTIONS(25), + [sym_list_marker_star] = ACTIONS(27), + [sym_list_marker_plus] = ACTIONS(29), + [sym__list_marker_task_begin] = ACTIONS(31), [sym_list_marker_definition] = ACTIONS(33), [sym_list_marker_decimal_period] = ACTIONS(35), [sym_list_marker_lower_alpha_period] = ACTIONS(37), @@ -11897,113 +12420,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(234), - [sym__block_quote_continuation] = ACTIONS(441), - [sym__thematic_break_dash] = ACTIONS(238), - [sym__thematic_break_star] = ACTIONS(238), + [sym__block_quote_begin] = ACTIONS(401), + [sym__block_quote_continuation] = ACTIONS(403), + [sym__thematic_break_dash] = ACTIONS(405), + [sym__thematic_break_star] = ACTIONS(405), }, - [57] = { - [sym__block_element] = STATE(498), - [sym_heading] = STATE(498), - [sym_list] = STATE(498), - [sym__list_dash] = STATE(876), - [sym__list_item_dash] = STATE(634), - [sym__list_plus] = STATE(876), - [sym__list_item_plus] = STATE(651), - [sym__list_star] = STATE(876), - [sym__list_item_star] = STATE(697), - [sym__list_task] = STATE(876), - [sym__list_item_task] = STATE(707), - [sym_list_marker_task] = STATE(47), - [sym__list_definition] = STATE(876), - [sym__list_item_definition] = STATE(736), - [sym__list_decimal_period] = STATE(876), - [sym__list_item_decimal_period] = STATE(795), - [sym__list_decimal_paren] = STATE(876), - [sym__list_item_decimal_paren] = STATE(848), - [sym__list_decimal_parens] = STATE(876), - [sym__list_item_decimal_parens] = STATE(772), - [sym__list_lower_alpha_period] = STATE(876), - [sym__list_item_lower_alpha_period] = STATE(787), - [sym__list_lower_alpha_paren] = STATE(876), - [sym__list_item_lower_alpha_paren] = STATE(792), - [sym__list_lower_alpha_parens] = STATE(876), - [sym__list_item_lower_alpha_parens] = STATE(793), - [sym__list_upper_alpha_period] = STATE(876), - [sym__list_item_upper_alpha_period] = STATE(797), - [sym__list_upper_alpha_paren] = STATE(876), - [sym__list_item_upper_alpha_paren] = STATE(798), - [sym__list_upper_alpha_parens] = STATE(876), - [sym__list_item_upper_alpha_parens] = STATE(799), - [sym__list_lower_roman_period] = STATE(876), - [sym__list_item_lower_roman_period] = STATE(801), - [sym__list_lower_roman_paren] = STATE(876), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(876), - [sym__list_item_lower_roman_parens] = STATE(814), - [sym__list_upper_roman_period] = STATE(876), - [sym__list_item_upper_roman_period] = STATE(818), - [sym__list_upper_roman_paren] = STATE(876), - [sym__list_item_upper_roman_paren] = STATE(819), - [sym__list_upper_roman_parens] = STATE(876), - [sym__list_item_upper_roman_parens] = STATE(822), - [sym_table] = STATE(498), - [sym__table_content] = STATE(380), - [sym_table_separator] = STATE(380), - [sym_table_row] = STATE(405), - [sym_footnote] = STATE(498), - [sym_footnote_marker_begin] = STATE(1118), - [sym_div] = STATE(498), - [sym__div_marker_begin] = STATE(1010), - [sym_code_block] = STATE(498), - [sym_raw_block] = STATE(498), - [sym_thematic_break] = STATE(498), - [sym_block_quote] = STATE(498), - [sym__block_quote_content] = STATE(1039), - [sym__block_quote_prefix] = STATE(295), - [sym_link_reference_definition] = STATE(498), - [sym_block_attribute] = STATE(498), - [sym__paragraph] = STATE(498), - [sym__paragraph_content] = STATE(755), - [sym__paragraph_inline_content] = STATE(930), - [sym__inline] = STATE(695), - [sym__symbol_fallback] = STATE(358), - [aux_sym__list_dash_repeat1] = STATE(418), - [aux_sym__list_plus_repeat1] = STATE(419), - [aux_sym__list_star_repeat1] = STATE(426), - [aux_sym__list_task_repeat1] = STATE(390), - [aux_sym__list_definition_repeat1] = STATE(533), - [aux_sym__list_decimal_period_repeat1] = STATE(534), - [aux_sym__list_decimal_paren_repeat1] = STATE(535), - [aux_sym__list_decimal_parens_repeat1] = STATE(536), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(537), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(538), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(539), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(540), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(541), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(542), - [aux_sym__list_lower_roman_period_repeat1] = STATE(543), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(544), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(545), - [aux_sym__list_upper_roman_period_repeat1] = STATE(546), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(547), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(548), - [aux_sym_table_repeat1] = STATE(380), - [aux_sym__block_quote_prefix_repeat1] = STATE(320), - [aux_sym__inline_repeat1] = STATE(358), - [anon_sym_LBRACK] = ACTIONS(449), - [anon_sym_PIPE] = ACTIONS(451), + [58] = { + [sym__block_with_heading] = STATE(711), + [sym__block_element] = STATE(711), + [sym_heading] = STATE(711), + [sym_list] = STATE(711), + [sym__list_dash] = STATE(732), + [sym__list_item_dash] = STATE(727), + [sym__list_plus] = STATE(732), + [sym__list_item_plus] = STATE(730), + [sym__list_star] = STATE(732), + [sym__list_item_star] = STATE(759), + [sym__list_task] = STATE(732), + [sym__list_item_task] = STATE(761), + [sym_list_marker_task] = STATE(46), + [sym__list_definition] = STATE(732), + [sym__list_item_definition] = STATE(819), + [sym__list_decimal_period] = STATE(732), + [sym__list_item_decimal_period] = STATE(852), + [sym__list_decimal_paren] = STATE(732), + [sym__list_item_decimal_paren] = STATE(837), + [sym__list_decimal_parens] = STATE(732), + [sym__list_item_decimal_parens] = STATE(815), + [sym__list_lower_alpha_period] = STATE(732), + [sym__list_item_lower_alpha_period] = STATE(843), + [sym__list_lower_alpha_paren] = STATE(732), + [sym__list_item_lower_alpha_paren] = STATE(850), + [sym__list_lower_alpha_parens] = STATE(732), + [sym__list_item_lower_alpha_parens] = STATE(853), + [sym__list_upper_alpha_period] = STATE(732), + [sym__list_item_upper_alpha_period] = STATE(854), + [sym__list_upper_alpha_paren] = STATE(732), + [sym__list_item_upper_alpha_paren] = STATE(855), + [sym__list_upper_alpha_parens] = STATE(732), + [sym__list_item_upper_alpha_parens] = STATE(856), + [sym__list_lower_roman_period] = STATE(732), + [sym__list_item_lower_roman_period] = STATE(857), + [sym__list_lower_roman_paren] = STATE(732), + [sym__list_item_lower_roman_paren] = STATE(871), + [sym__list_lower_roman_parens] = STATE(732), + [sym__list_item_lower_roman_parens] = STATE(874), + [sym__list_upper_roman_period] = STATE(732), + [sym__list_item_upper_roman_period] = STATE(876), + [sym__list_upper_roman_paren] = STATE(732), + [sym__list_item_upper_roman_paren] = STATE(878), + [sym__list_upper_roman_parens] = STATE(732), + [sym__list_item_upper_roman_parens] = STATE(880), + [sym_table] = STATE(711), + [sym__table_content] = STATE(386), + [sym_table_separator] = STATE(386), + [sym_table_row] = STATE(414), + [sym_footnote] = STATE(711), + [sym_footnote_marker_begin] = STATE(1304), + [sym_div] = STATE(711), + [sym__div_marker_begin] = STATE(1188), + [sym_code_block] = STATE(711), + [sym_raw_block] = STATE(711), + [sym_thematic_break] = STATE(711), + [sym_block_quote] = STATE(711), + [sym__block_quote_prefix] = STATE(305), + [sym_link_reference_definition] = STATE(711), + [sym_block_attribute] = STATE(711), + [sym__paragraph] = STATE(711), + [sym__paragraph_content] = STATE(868), + [sym__paragraph_inline_content] = STATE(896), + [sym__inline] = STATE(715), + [sym__symbol_fallback] = STATE(381), + [aux_sym__list_dash_repeat1] = STATE(449), + [aux_sym__list_plus_repeat1] = STATE(452), + [aux_sym__list_star_repeat1] = STATE(460), + [aux_sym__list_task_repeat1] = STATE(418), + [aux_sym__list_definition_repeat1] = STATE(632), + [aux_sym__list_decimal_period_repeat1] = STATE(633), + [aux_sym__list_decimal_paren_repeat1] = STATE(634), + [aux_sym__list_decimal_parens_repeat1] = STATE(635), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(636), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(637), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(638), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(639), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(640), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(641), + [aux_sym__list_lower_roman_period_repeat1] = STATE(642), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(643), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(644), + [aux_sym__list_upper_roman_period_repeat1] = STATE(645), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(646), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(647), + [aux_sym_table_repeat1] = STATE(386), + [aux_sym__block_quote_prefix_repeat1] = STATE(330), + [aux_sym__inline_repeat1] = STATE(381), + [anon_sym_LBRACK] = ACTIONS(453), + [anon_sym_PIPE] = ACTIONS(455), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(457), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__heading_begin] = ACTIONS(455), + [sym__newline] = ACTIONS(459), + [sym__heading_begin] = ACTIONS(461), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(457), + [sym__code_block_begin] = ACTIONS(463), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -12024,113 +12548,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(459), - [sym__block_quote_continuation] = ACTIONS(67), - [sym__thematic_break_dash] = ACTIONS(461), - [sym__thematic_break_star] = ACTIONS(461), + [sym__block_quote_begin] = ACTIONS(465), + [sym__block_quote_continuation] = ACTIONS(467), + [sym__thematic_break_dash] = ACTIONS(469), + [sym__thematic_break_star] = ACTIONS(469), }, - [58] = { - [sym__block_element] = STATE(498), - [sym_heading] = STATE(498), - [sym_list] = STATE(498), - [sym__list_dash] = STATE(876), - [sym__list_item_dash] = STATE(634), - [sym__list_plus] = STATE(876), - [sym__list_item_plus] = STATE(651), - [sym__list_star] = STATE(876), - [sym__list_item_star] = STATE(697), - [sym__list_task] = STATE(876), - [sym__list_item_task] = STATE(707), - [sym_list_marker_task] = STATE(47), - [sym__list_definition] = STATE(876), - [sym__list_item_definition] = STATE(736), - [sym__list_decimal_period] = STATE(876), - [sym__list_item_decimal_period] = STATE(795), - [sym__list_decimal_paren] = STATE(876), - [sym__list_item_decimal_paren] = STATE(848), - [sym__list_decimal_parens] = STATE(876), - [sym__list_item_decimal_parens] = STATE(772), - [sym__list_lower_alpha_period] = STATE(876), - [sym__list_item_lower_alpha_period] = STATE(787), - [sym__list_lower_alpha_paren] = STATE(876), - [sym__list_item_lower_alpha_paren] = STATE(792), - [sym__list_lower_alpha_parens] = STATE(876), - [sym__list_item_lower_alpha_parens] = STATE(793), - [sym__list_upper_alpha_period] = STATE(876), - [sym__list_item_upper_alpha_period] = STATE(797), - [sym__list_upper_alpha_paren] = STATE(876), - [sym__list_item_upper_alpha_paren] = STATE(798), - [sym__list_upper_alpha_parens] = STATE(876), - [sym__list_item_upper_alpha_parens] = STATE(799), - [sym__list_lower_roman_period] = STATE(876), - [sym__list_item_lower_roman_period] = STATE(801), - [sym__list_lower_roman_paren] = STATE(876), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(876), - [sym__list_item_lower_roman_parens] = STATE(814), - [sym__list_upper_roman_period] = STATE(876), - [sym__list_item_upper_roman_period] = STATE(818), - [sym__list_upper_roman_paren] = STATE(876), - [sym__list_item_upper_roman_paren] = STATE(819), - [sym__list_upper_roman_parens] = STATE(876), - [sym__list_item_upper_roman_parens] = STATE(822), - [sym_table] = STATE(498), - [sym__table_content] = STATE(380), - [sym_table_separator] = STATE(380), - [sym_table_row] = STATE(405), - [sym_footnote] = STATE(498), - [sym_footnote_marker_begin] = STATE(1118), - [sym_div] = STATE(498), - [sym__div_marker_begin] = STATE(1010), - [sym_code_block] = STATE(498), - [sym_raw_block] = STATE(498), - [sym_thematic_break] = STATE(498), - [sym_block_quote] = STATE(498), - [sym__block_quote_content] = STATE(1016), - [sym__block_quote_prefix] = STATE(295), - [sym_link_reference_definition] = STATE(498), - [sym_block_attribute] = STATE(498), - [sym__paragraph] = STATE(498), - [sym__paragraph_content] = STATE(755), - [sym__paragraph_inline_content] = STATE(930), - [sym__inline] = STATE(695), - [sym__symbol_fallback] = STATE(358), - [aux_sym__list_dash_repeat1] = STATE(418), - [aux_sym__list_plus_repeat1] = STATE(419), - [aux_sym__list_star_repeat1] = STATE(426), - [aux_sym__list_task_repeat1] = STATE(390), - [aux_sym__list_definition_repeat1] = STATE(533), - [aux_sym__list_decimal_period_repeat1] = STATE(534), - [aux_sym__list_decimal_paren_repeat1] = STATE(535), - [aux_sym__list_decimal_parens_repeat1] = STATE(536), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(537), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(538), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(539), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(540), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(541), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(542), - [aux_sym__list_lower_roman_period_repeat1] = STATE(543), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(544), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(545), - [aux_sym__list_upper_roman_period_repeat1] = STATE(546), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(547), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(548), - [aux_sym_table_repeat1] = STATE(380), - [aux_sym__block_quote_prefix_repeat1] = STATE(320), - [aux_sym__inline_repeat1] = STATE(358), - [anon_sym_LBRACK] = ACTIONS(449), - [anon_sym_PIPE] = ACTIONS(451), + [59] = { + [sym__block_with_heading] = STATE(720), + [sym__block_element] = STATE(720), + [sym_heading] = STATE(720), + [sym_list] = STATE(720), + [sym__list_dash] = STATE(732), + [sym__list_item_dash] = STATE(727), + [sym__list_plus] = STATE(732), + [sym__list_item_plus] = STATE(730), + [sym__list_star] = STATE(732), + [sym__list_item_star] = STATE(759), + [sym__list_task] = STATE(732), + [sym__list_item_task] = STATE(761), + [sym_list_marker_task] = STATE(46), + [sym__list_definition] = STATE(732), + [sym__list_item_definition] = STATE(819), + [sym__list_decimal_period] = STATE(732), + [sym__list_item_decimal_period] = STATE(852), + [sym__list_decimal_paren] = STATE(732), + [sym__list_item_decimal_paren] = STATE(837), + [sym__list_decimal_parens] = STATE(732), + [sym__list_item_decimal_parens] = STATE(815), + [sym__list_lower_alpha_period] = STATE(732), + [sym__list_item_lower_alpha_period] = STATE(843), + [sym__list_lower_alpha_paren] = STATE(732), + [sym__list_item_lower_alpha_paren] = STATE(850), + [sym__list_lower_alpha_parens] = STATE(732), + [sym__list_item_lower_alpha_parens] = STATE(853), + [sym__list_upper_alpha_period] = STATE(732), + [sym__list_item_upper_alpha_period] = STATE(854), + [sym__list_upper_alpha_paren] = STATE(732), + [sym__list_item_upper_alpha_paren] = STATE(855), + [sym__list_upper_alpha_parens] = STATE(732), + [sym__list_item_upper_alpha_parens] = STATE(856), + [sym__list_lower_roman_period] = STATE(732), + [sym__list_item_lower_roman_period] = STATE(857), + [sym__list_lower_roman_paren] = STATE(732), + [sym__list_item_lower_roman_paren] = STATE(871), + [sym__list_lower_roman_parens] = STATE(732), + [sym__list_item_lower_roman_parens] = STATE(874), + [sym__list_upper_roman_period] = STATE(732), + [sym__list_item_upper_roman_period] = STATE(876), + [sym__list_upper_roman_paren] = STATE(732), + [sym__list_item_upper_roman_paren] = STATE(878), + [sym__list_upper_roman_parens] = STATE(732), + [sym__list_item_upper_roman_parens] = STATE(880), + [sym_table] = STATE(720), + [sym__table_content] = STATE(386), + [sym_table_separator] = STATE(386), + [sym_table_row] = STATE(414), + [sym_footnote] = STATE(720), + [sym_footnote_marker_begin] = STATE(1304), + [sym_div] = STATE(720), + [sym__div_marker_begin] = STATE(1188), + [sym_code_block] = STATE(720), + [sym_raw_block] = STATE(720), + [sym_thematic_break] = STATE(720), + [sym_block_quote] = STATE(720), + [sym__block_quote_prefix] = STATE(305), + [sym_link_reference_definition] = STATE(720), + [sym_block_attribute] = STATE(720), + [sym__paragraph] = STATE(720), + [sym__paragraph_content] = STATE(868), + [sym__paragraph_inline_content] = STATE(896), + [sym__inline] = STATE(715), + [sym__symbol_fallback] = STATE(381), + [aux_sym__list_dash_repeat1] = STATE(449), + [aux_sym__list_plus_repeat1] = STATE(452), + [aux_sym__list_star_repeat1] = STATE(460), + [aux_sym__list_task_repeat1] = STATE(418), + [aux_sym__list_definition_repeat1] = STATE(632), + [aux_sym__list_decimal_period_repeat1] = STATE(633), + [aux_sym__list_decimal_paren_repeat1] = STATE(634), + [aux_sym__list_decimal_parens_repeat1] = STATE(635), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(636), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(637), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(638), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(639), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(640), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(641), + [aux_sym__list_lower_roman_period_repeat1] = STATE(642), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(643), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(644), + [aux_sym__list_upper_roman_period_repeat1] = STATE(645), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(646), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(647), + [aux_sym_table_repeat1] = STATE(386), + [aux_sym__block_quote_prefix_repeat1] = STATE(330), + [aux_sym__inline_repeat1] = STATE(381), + [anon_sym_LBRACK] = ACTIONS(453), + [anon_sym_PIPE] = ACTIONS(455), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(457), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__heading_begin] = ACTIONS(455), + [sym__newline] = ACTIONS(471), + [sym__heading_begin] = ACTIONS(461), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(457), + [sym__code_block_begin] = ACTIONS(463), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -12151,117 +12676,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(459), - [sym__block_quote_continuation] = ACTIONS(67), - [sym__thematic_break_dash] = ACTIONS(461), - [sym__thematic_break_star] = ACTIONS(461), + [sym__block_quote_begin] = ACTIONS(465), + [sym__block_quote_continuation] = ACTIONS(467), + [sym__thematic_break_dash] = ACTIONS(469), + [sym__thematic_break_star] = ACTIONS(469), }, - [59] = { - [sym__block_element] = STATE(157), - [sym_heading] = STATE(157), - [sym_list] = STATE(157), - [sym__list_dash] = STATE(162), - [sym__list_item_dash] = STATE(634), - [sym__list_plus] = STATE(162), - [sym__list_item_plus] = STATE(651), - [sym__list_star] = STATE(162), - [sym__list_item_star] = STATE(697), - [sym__list_task] = STATE(162), - [sym__list_item_task] = STATE(707), - [sym_list_marker_task] = STATE(47), - [sym__list_definition] = STATE(162), - [sym__list_item_definition] = STATE(736), - [sym__list_decimal_period] = STATE(162), - [sym__list_item_decimal_period] = STATE(795), - [sym__list_decimal_paren] = STATE(162), - [sym__list_item_decimal_paren] = STATE(848), - [sym__list_decimal_parens] = STATE(162), - [sym__list_item_decimal_parens] = STATE(772), - [sym__list_lower_alpha_period] = STATE(162), - [sym__list_item_lower_alpha_period] = STATE(787), - [sym__list_lower_alpha_paren] = STATE(162), - [sym__list_item_lower_alpha_paren] = STATE(792), - [sym__list_lower_alpha_parens] = STATE(162), - [sym__list_item_lower_alpha_parens] = STATE(793), - [sym__list_upper_alpha_period] = STATE(162), - [sym__list_item_upper_alpha_period] = STATE(797), - [sym__list_upper_alpha_paren] = STATE(162), - [sym__list_item_upper_alpha_paren] = STATE(798), - [sym__list_upper_alpha_parens] = STATE(162), - [sym__list_item_upper_alpha_parens] = STATE(799), - [sym__list_lower_roman_period] = STATE(162), - [sym__list_item_lower_roman_period] = STATE(801), - [sym__list_lower_roman_paren] = STATE(162), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(162), - [sym__list_item_lower_roman_parens] = STATE(814), - [sym__list_upper_roman_period] = STATE(162), - [sym__list_item_upper_roman_period] = STATE(818), - [sym__list_upper_roman_paren] = STATE(162), - [sym__list_item_upper_roman_paren] = STATE(819), - [sym__list_upper_roman_parens] = STATE(162), - [sym__list_item_upper_roman_parens] = STATE(822), - [sym_table] = STATE(157), - [sym__table_content] = STATE(64), - [sym_table_separator] = STATE(64), - [sym_table_row] = STATE(71), - [sym_footnote] = STATE(157), - [sym_footnote_marker_begin] = STATE(1120), - [sym_div] = STATE(157), - [sym__div_marker_begin] = STATE(1032), - [sym_code_block] = STATE(157), - [sym_raw_block] = STATE(157), - [sym_thematic_break] = STATE(157), - [sym_block_quote] = STATE(157), - [sym__block_quote_prefix] = STATE(292), - [sym_link_reference_definition] = STATE(157), - [sym_block_attribute] = STATE(157), - [sym__paragraph] = STATE(157), - [sym__paragraph_content] = STATE(785), - [sym__paragraph_inline_content] = STATE(930), - [sym__inline] = STATE(695), - [sym__symbol_fallback] = STATE(358), - [aux_sym__list_dash_repeat1] = STATE(431), - [aux_sym__list_plus_repeat1] = STATE(414), - [aux_sym__list_star_repeat1] = STATE(416), - [aux_sym__list_task_repeat1] = STATE(396), - [aux_sym__list_definition_repeat1] = STATE(560), - [aux_sym__list_decimal_period_repeat1] = STATE(561), - [aux_sym__list_decimal_paren_repeat1] = STATE(562), - [aux_sym__list_decimal_parens_repeat1] = STATE(563), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(564), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(621), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(566), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(567), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(568), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(569), - [aux_sym__list_lower_roman_period_repeat1] = STATE(570), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(571), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(572), - [aux_sym__list_upper_roman_period_repeat1] = STATE(573), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(574), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(575), - [aux_sym_table_repeat1] = STATE(64), - [aux_sym__block_quote_prefix_repeat1] = STATE(320), - [aux_sym__inline_repeat1] = STATE(358), - [anon_sym_LBRACK] = ACTIONS(439), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_LBRACK_CARET] = ACTIONS(439), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(439), - [aux_sym_identifier_token1] = ACTIONS(439), - [aux_sym__inline_token1] = ACTIONS(439), - [anon_sym_LBRACE_DASH] = ACTIONS(439), - [anon_sym_POUND] = ACTIONS(439), - [anon_sym_PERCENT] = ACTIONS(439), - [sym__newline] = ACTIONS(443), - [sym__heading_begin] = ACTIONS(19), + [60] = { + [sym__block_element] = STATE(193), + [sym_heading] = STATE(193), + [sym_list] = STATE(193), + [sym__list_dash] = STATE(228), + [sym__list_item_dash] = STATE(727), + [sym__list_plus] = STATE(228), + [sym__list_item_plus] = STATE(730), + [sym__list_star] = STATE(228), + [sym__list_item_star] = STATE(759), + [sym__list_task] = STATE(228), + [sym__list_item_task] = STATE(761), + [sym_list_marker_task] = STATE(46), + [sym__list_definition] = STATE(228), + [sym__list_item_definition] = STATE(819), + [sym__list_decimal_period] = STATE(228), + [sym__list_item_decimal_period] = STATE(852), + [sym__list_decimal_paren] = STATE(228), + [sym__list_item_decimal_paren] = STATE(837), + [sym__list_decimal_parens] = STATE(228), + [sym__list_item_decimal_parens] = STATE(815), + [sym__list_lower_alpha_period] = STATE(228), + [sym__list_item_lower_alpha_period] = STATE(843), + [sym__list_lower_alpha_paren] = STATE(228), + [sym__list_item_lower_alpha_paren] = STATE(850), + [sym__list_lower_alpha_parens] = STATE(228), + [sym__list_item_lower_alpha_parens] = STATE(853), + [sym__list_upper_alpha_period] = STATE(228), + [sym__list_item_upper_alpha_period] = STATE(854), + [sym__list_upper_alpha_paren] = STATE(228), + [sym__list_item_upper_alpha_paren] = STATE(855), + [sym__list_upper_alpha_parens] = STATE(228), + [sym__list_item_upper_alpha_parens] = STATE(856), + [sym__list_lower_roman_period] = STATE(228), + [sym__list_item_lower_roman_period] = STATE(857), + [sym__list_lower_roman_paren] = STATE(228), + [sym__list_item_lower_roman_paren] = STATE(871), + [sym__list_lower_roman_parens] = STATE(228), + [sym__list_item_lower_roman_parens] = STATE(874), + [sym__list_upper_roman_period] = STATE(228), + [sym__list_item_upper_roman_period] = STATE(876), + [sym__list_upper_roman_paren] = STATE(228), + [sym__list_item_upper_roman_paren] = STATE(878), + [sym__list_upper_roman_parens] = STATE(228), + [sym__list_item_upper_roman_parens] = STATE(880), + [sym_table] = STATE(193), + [sym__table_content] = STATE(73), + [sym_table_separator] = STATE(73), + [sym_table_row] = STATE(77), + [sym_footnote] = STATE(193), + [sym_footnote_marker_begin] = STATE(1306), + [sym_div] = STATE(193), + [sym__div_marker_begin] = STATE(1210), + [sym_code_block] = STATE(193), + [sym_raw_block] = STATE(193), + [sym_thematic_break] = STATE(193), + [sym_block_quote] = STATE(193), + [sym__block_quote_prefix] = STATE(301), + [sym_link_reference_definition] = STATE(193), + [sym_block_attribute] = STATE(193), + [sym__paragraph] = STATE(193), + [sym__paragraph_content] = STATE(889), + [sym__paragraph_inline_content] = STATE(896), + [sym__inline] = STATE(715), + [sym__symbol_fallback] = STATE(381), + [aux_sym__list_dash_repeat1] = STATE(445), + [aux_sym__list_plus_repeat1] = STATE(446), + [aux_sym__list_star_repeat1] = STATE(447), + [aux_sym__list_task_repeat1] = STATE(423), + [aux_sym__list_definition_repeat1] = STATE(655), + [aux_sym__list_decimal_period_repeat1] = STATE(656), + [aux_sym__list_decimal_paren_repeat1] = STATE(657), + [aux_sym__list_decimal_parens_repeat1] = STATE(658), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(659), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(660), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(661), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(662), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(663), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(664), + [aux_sym__list_lower_roman_period_repeat1] = STATE(665), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(666), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(667), + [aux_sym__list_upper_roman_period_repeat1] = STATE(668), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(669), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(670), + [aux_sym_table_repeat1] = STATE(73), + [aux_sym__block_quote_prefix_repeat1] = STATE(330), + [aux_sym__inline_repeat1] = STATE(381), + [anon_sym_LBRACK] = ACTIONS(443), + [anon_sym_PIPE] = ACTIONS(443), + [anon_sym_LBRACK_CARET] = ACTIONS(443), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_DOT] = ACTIONS(443), + [aux_sym_identifier_token1] = ACTIONS(443), + [aux_sym__inline_token1] = ACTIONS(443), + [anon_sym_LBRACE_DASH] = ACTIONS(443), + [anon_sym_POUND] = ACTIONS(443), + [anon_sym_PERCENT] = ACTIONS(443), + [sym__newline] = ACTIONS(473), + [sym__heading_begin] = ACTIONS(224), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(85), - [sym_list_marker_dash] = ACTIONS(441), - [sym_list_marker_star] = ACTIONS(441), - [sym_list_marker_plus] = ACTIONS(441), - [sym__list_marker_task_begin] = ACTIONS(441), + [sym__code_block_begin] = ACTIONS(226), + [sym_list_marker_dash] = ACTIONS(445), + [sym_list_marker_star] = ACTIONS(445), + [sym_list_marker_plus] = ACTIONS(445), + [sym__list_marker_task_begin] = ACTIONS(445), [sym_list_marker_definition] = ACTIONS(33), [sym_list_marker_decimal_period] = ACTIONS(35), [sym_list_marker_lower_alpha_period] = ACTIONS(37), @@ -12278,117 +12803,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(87), - [sym__block_quote_continuation] = ACTIONS(441), - [sym__thematic_break_dash] = ACTIONS(89), - [sym__thematic_break_star] = ACTIONS(89), + [sym__block_quote_begin] = ACTIONS(228), + [sym__block_quote_continuation] = ACTIONS(445), + [sym__thematic_break_dash] = ACTIONS(232), + [sym__thematic_break_star] = ACTIONS(232), }, - [60] = { - [sym__block_element] = STATE(623), - [sym_heading] = STATE(623), - [sym_list] = STATE(623), - [sym__list_dash] = STATE(684), - [sym__list_item_dash] = STATE(634), - [sym__list_plus] = STATE(684), - [sym__list_item_plus] = STATE(651), - [sym__list_star] = STATE(684), - [sym__list_item_star] = STATE(697), - [sym__list_task] = STATE(684), - [sym__list_item_task] = STATE(707), - [sym_list_marker_task] = STATE(47), - [sym__list_definition] = STATE(684), - [sym__list_item_definition] = STATE(736), - [sym__list_decimal_period] = STATE(684), - [sym__list_item_decimal_period] = STATE(795), - [sym__list_decimal_paren] = STATE(684), - [sym__list_item_decimal_paren] = STATE(848), - [sym__list_decimal_parens] = STATE(684), - [sym__list_item_decimal_parens] = STATE(772), - [sym__list_lower_alpha_period] = STATE(684), - [sym__list_item_lower_alpha_period] = STATE(787), - [sym__list_lower_alpha_paren] = STATE(684), - [sym__list_item_lower_alpha_paren] = STATE(792), - [sym__list_lower_alpha_parens] = STATE(684), - [sym__list_item_lower_alpha_parens] = STATE(793), - [sym__list_upper_alpha_period] = STATE(684), - [sym__list_item_upper_alpha_period] = STATE(797), - [sym__list_upper_alpha_paren] = STATE(684), - [sym__list_item_upper_alpha_paren] = STATE(798), - [sym__list_upper_alpha_parens] = STATE(684), - [sym__list_item_upper_alpha_parens] = STATE(799), - [sym__list_lower_roman_period] = STATE(684), - [sym__list_item_lower_roman_period] = STATE(801), - [sym__list_lower_roman_paren] = STATE(684), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(684), - [sym__list_item_lower_roman_parens] = STATE(814), - [sym__list_upper_roman_period] = STATE(684), - [sym__list_item_upper_roman_period] = STATE(818), - [sym__list_upper_roman_paren] = STATE(684), - [sym__list_item_upper_roman_paren] = STATE(819), - [sym__list_upper_roman_parens] = STATE(684), - [sym__list_item_upper_roman_parens] = STATE(822), - [sym_table] = STATE(623), - [sym__table_content] = STATE(368), - [sym_table_separator] = STATE(368), - [sym_table_row] = STATE(389), - [sym_footnote] = STATE(623), - [sym_footnote_marker_begin] = STATE(1116), - [sym_div] = STATE(623), - [sym__div_marker_begin] = STATE(988), - [sym_code_block] = STATE(623), - [sym_raw_block] = STATE(623), - [sym_thematic_break] = STATE(623), - [sym_block_quote] = STATE(623), - [sym__block_quote_prefix] = STATE(294), - [sym_link_reference_definition] = STATE(623), - [sym_block_attribute] = STATE(623), - [sym__paragraph] = STATE(623), - [sym__paragraph_content] = STATE(932), - [sym__paragraph_inline_content] = STATE(930), - [sym__inline] = STATE(695), - [sym__symbol_fallback] = STATE(358), - [aux_sym__list_dash_repeat1] = STATE(423), - [aux_sym__list_plus_repeat1] = STATE(417), - [aux_sym__list_star_repeat1] = STATE(420), - [aux_sym__list_task_repeat1] = STATE(395), - [aux_sym__list_definition_repeat1] = STATE(510), - [aux_sym__list_decimal_period_repeat1] = STATE(511), - [aux_sym__list_decimal_paren_repeat1] = STATE(512), - [aux_sym__list_decimal_parens_repeat1] = STATE(513), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(514), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(515), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(516), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(517), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(518), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(519), - [aux_sym__list_lower_roman_period_repeat1] = STATE(520), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(521), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(522), - [aux_sym__list_upper_roman_period_repeat1] = STATE(523), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(524), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(525), - [aux_sym_table_repeat1] = STATE(368), - [aux_sym__block_quote_prefix_repeat1] = STATE(320), - [aux_sym__inline_repeat1] = STATE(358), - [anon_sym_LBRACK] = ACTIONS(439), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_LBRACK_CARET] = ACTIONS(439), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(439), - [aux_sym_identifier_token1] = ACTIONS(439), - [aux_sym__inline_token1] = ACTIONS(439), - [anon_sym_LBRACE_DASH] = ACTIONS(439), - [anon_sym_POUND] = ACTIONS(439), - [anon_sym_PERCENT] = ACTIONS(439), - [sym__newline] = ACTIONS(465), - [sym__heading_begin] = ACTIONS(393), + [61] = { + [sym__block_element] = STATE(1040), + [sym_heading] = STATE(1040), + [sym_list] = STATE(1040), + [sym__list_dash] = STATE(1183), + [sym__list_item_dash] = STATE(727), + [sym__list_plus] = STATE(1183), + [sym__list_item_plus] = STATE(730), + [sym__list_star] = STATE(1183), + [sym__list_item_star] = STATE(759), + [sym__list_task] = STATE(1183), + [sym__list_item_task] = STATE(761), + [sym_list_marker_task] = STATE(46), + [sym__list_definition] = STATE(1183), + [sym__list_item_definition] = STATE(819), + [sym__list_decimal_period] = STATE(1183), + [sym__list_item_decimal_period] = STATE(852), + [sym__list_decimal_paren] = STATE(1183), + [sym__list_item_decimal_paren] = STATE(837), + [sym__list_decimal_parens] = STATE(1183), + [sym__list_item_decimal_parens] = STATE(815), + [sym__list_lower_alpha_period] = STATE(1183), + [sym__list_item_lower_alpha_period] = STATE(843), + [sym__list_lower_alpha_paren] = STATE(1183), + [sym__list_item_lower_alpha_paren] = STATE(850), + [sym__list_lower_alpha_parens] = STATE(1183), + [sym__list_item_lower_alpha_parens] = STATE(853), + [sym__list_upper_alpha_period] = STATE(1183), + [sym__list_item_upper_alpha_period] = STATE(854), + [sym__list_upper_alpha_paren] = STATE(1183), + [sym__list_item_upper_alpha_paren] = STATE(855), + [sym__list_upper_alpha_parens] = STATE(1183), + [sym__list_item_upper_alpha_parens] = STATE(856), + [sym__list_lower_roman_period] = STATE(1183), + [sym__list_item_lower_roman_period] = STATE(857), + [sym__list_lower_roman_paren] = STATE(1183), + [sym__list_item_lower_roman_paren] = STATE(871), + [sym__list_lower_roman_parens] = STATE(1183), + [sym__list_item_lower_roman_parens] = STATE(874), + [sym__list_upper_roman_period] = STATE(1183), + [sym__list_item_upper_roman_period] = STATE(876), + [sym__list_upper_roman_paren] = STATE(1183), + [sym__list_item_upper_roman_paren] = STATE(878), + [sym__list_upper_roman_parens] = STATE(1183), + [sym__list_item_upper_roman_parens] = STATE(880), + [sym_table] = STATE(1040), + [sym__table_content] = STATE(406), + [sym_table_separator] = STATE(406), + [sym_table_row] = STATE(417), + [sym_footnote] = STATE(1040), + [sym_footnote_marker_begin] = STATE(1298), + [sym_div] = STATE(1040), + [sym__div_marker_begin] = STATE(1119), + [sym_code_block] = STATE(1040), + [sym_raw_block] = STATE(1040), + [sym_thematic_break] = STATE(1040), + [sym_block_quote] = STATE(1040), + [sym__block_quote_prefix] = STATE(300), + [sym_link_reference_definition] = STATE(1040), + [sym_block_attribute] = STATE(1040), + [sym__paragraph] = STATE(1040), + [sym__paragraph_content] = STATE(799), + [sym__paragraph_inline_content] = STATE(896), + [sym__inline] = STATE(715), + [sym__symbol_fallback] = STATE(381), + [aux_sym__list_dash_repeat1] = STATE(453), + [aux_sym__list_plus_repeat1] = STATE(458), + [aux_sym__list_star_repeat1] = STATE(463), + [aux_sym__list_task_repeat1] = STATE(440), + [aux_sym__list_definition_repeat1] = STATE(562), + [aux_sym__list_decimal_period_repeat1] = STATE(563), + [aux_sym__list_decimal_paren_repeat1] = STATE(542), + [aux_sym__list_decimal_parens_repeat1] = STATE(564), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(565), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(566), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(567), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(568), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(569), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(570), + [aux_sym__list_lower_roman_period_repeat1] = STATE(571), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(572), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(573), + [aux_sym__list_upper_roman_period_repeat1] = STATE(574), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(575), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(576), + [aux_sym_table_repeat1] = STATE(406), + [aux_sym__block_quote_prefix_repeat1] = STATE(330), + [aux_sym__inline_repeat1] = STATE(381), + [anon_sym_LBRACK] = ACTIONS(443), + [anon_sym_PIPE] = ACTIONS(443), + [anon_sym_LBRACK_CARET] = ACTIONS(443), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_DOT] = ACTIONS(443), + [aux_sym_identifier_token1] = ACTIONS(443), + [aux_sym__inline_token1] = ACTIONS(443), + [anon_sym_LBRACE_DASH] = ACTIONS(443), + [anon_sym_POUND] = ACTIONS(443), + [anon_sym_PERCENT] = ACTIONS(443), + [sym__newline] = ACTIONS(475), + [sym__heading_begin] = ACTIONS(397), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(395), - [sym_list_marker_dash] = ACTIONS(441), - [sym_list_marker_star] = ACTIONS(441), - [sym_list_marker_plus] = ACTIONS(441), - [sym__list_marker_task_begin] = ACTIONS(441), + [sym__code_block_begin] = ACTIONS(399), + [sym_list_marker_dash] = ACTIONS(445), + [sym_list_marker_star] = ACTIONS(445), + [sym_list_marker_plus] = ACTIONS(445), + [sym__list_marker_task_begin] = ACTIONS(445), [sym_list_marker_definition] = ACTIONS(33), [sym_list_marker_decimal_period] = ACTIONS(35), [sym_list_marker_lower_alpha_period] = ACTIONS(37), @@ -12405,113 +12930,240 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(397), - [sym__block_quote_continuation] = ACTIONS(441), - [sym__thematic_break_dash] = ACTIONS(401), - [sym__thematic_break_star] = ACTIONS(401), + [sym__block_quote_begin] = ACTIONS(401), + [sym__block_quote_continuation] = ACTIONS(445), + [sym__thematic_break_dash] = ACTIONS(405), + [sym__thematic_break_star] = ACTIONS(405), }, - [61] = { - [sym__block_element] = STATE(498), - [sym_heading] = STATE(498), - [sym_list] = STATE(498), - [sym__list_dash] = STATE(876), - [sym__list_item_dash] = STATE(634), - [sym__list_plus] = STATE(876), - [sym__list_item_plus] = STATE(651), - [sym__list_star] = STATE(876), - [sym__list_item_star] = STATE(697), - [sym__list_task] = STATE(876), - [sym__list_item_task] = STATE(707), - [sym_list_marker_task] = STATE(47), - [sym__list_definition] = STATE(876), - [sym__list_item_definition] = STATE(736), - [sym__list_decimal_period] = STATE(876), - [sym__list_item_decimal_period] = STATE(795), - [sym__list_decimal_paren] = STATE(876), - [sym__list_item_decimal_paren] = STATE(848), - [sym__list_decimal_parens] = STATE(876), - [sym__list_item_decimal_parens] = STATE(772), - [sym__list_lower_alpha_period] = STATE(876), - [sym__list_item_lower_alpha_period] = STATE(787), - [sym__list_lower_alpha_paren] = STATE(876), - [sym__list_item_lower_alpha_paren] = STATE(792), - [sym__list_lower_alpha_parens] = STATE(876), - [sym__list_item_lower_alpha_parens] = STATE(793), - [sym__list_upper_alpha_period] = STATE(876), - [sym__list_item_upper_alpha_period] = STATE(797), - [sym__list_upper_alpha_paren] = STATE(876), - [sym__list_item_upper_alpha_paren] = STATE(798), - [sym__list_upper_alpha_parens] = STATE(876), - [sym__list_item_upper_alpha_parens] = STATE(799), - [sym__list_lower_roman_period] = STATE(876), - [sym__list_item_lower_roman_period] = STATE(801), - [sym__list_lower_roman_paren] = STATE(876), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(876), - [sym__list_item_lower_roman_parens] = STATE(814), - [sym__list_upper_roman_period] = STATE(876), - [sym__list_item_upper_roman_period] = STATE(818), - [sym__list_upper_roman_paren] = STATE(876), - [sym__list_item_upper_roman_paren] = STATE(819), - [sym__list_upper_roman_parens] = STATE(876), - [sym__list_item_upper_roman_parens] = STATE(822), - [sym_table] = STATE(498), - [sym__table_content] = STATE(380), - [sym_table_separator] = STATE(380), - [sym_table_row] = STATE(405), - [sym_footnote] = STATE(498), - [sym_footnote_marker_begin] = STATE(1118), - [sym_div] = STATE(498), - [sym__div_marker_begin] = STATE(1010), - [sym_code_block] = STATE(498), - [sym_raw_block] = STATE(498), - [sym_thematic_break] = STATE(498), - [sym_block_quote] = STATE(498), - [sym__block_quote_content] = STATE(1048), - [sym__block_quote_prefix] = STATE(295), - [sym_link_reference_definition] = STATE(498), - [sym_block_attribute] = STATE(498), - [sym__paragraph] = STATE(498), - [sym__paragraph_content] = STATE(755), - [sym__paragraph_inline_content] = STATE(930), - [sym__inline] = STATE(695), - [sym__symbol_fallback] = STATE(358), - [aux_sym__list_dash_repeat1] = STATE(418), - [aux_sym__list_plus_repeat1] = STATE(419), - [aux_sym__list_star_repeat1] = STATE(426), - [aux_sym__list_task_repeat1] = STATE(390), - [aux_sym__list_definition_repeat1] = STATE(533), - [aux_sym__list_decimal_period_repeat1] = STATE(534), - [aux_sym__list_decimal_paren_repeat1] = STATE(535), - [aux_sym__list_decimal_parens_repeat1] = STATE(536), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(537), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(538), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(539), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(540), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(541), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(542), - [aux_sym__list_lower_roman_period_repeat1] = STATE(543), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(544), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(545), - [aux_sym__list_upper_roman_period_repeat1] = STATE(546), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(547), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(548), - [aux_sym_table_repeat1] = STATE(380), - [aux_sym__block_quote_prefix_repeat1] = STATE(320), - [aux_sym__inline_repeat1] = STATE(358), - [anon_sym_LBRACK] = ACTIONS(449), - [anon_sym_PIPE] = ACTIONS(451), + [62] = { + [sym__block_element] = STATE(162), + [sym_heading] = STATE(162), + [sym_list] = STATE(162), + [sym__list_dash] = STATE(166), + [sym__list_item_dash] = STATE(727), + [sym__list_plus] = STATE(166), + [sym__list_item_plus] = STATE(730), + [sym__list_star] = STATE(166), + [sym__list_item_star] = STATE(759), + [sym__list_task] = STATE(166), + [sym__list_item_task] = STATE(761), + [sym_list_marker_task] = STATE(46), + [sym__list_definition] = STATE(166), + [sym__list_item_definition] = STATE(819), + [sym__list_decimal_period] = STATE(166), + [sym__list_item_decimal_period] = STATE(852), + [sym__list_decimal_paren] = STATE(166), + [sym__list_item_decimal_paren] = STATE(837), + [sym__list_decimal_parens] = STATE(166), + [sym__list_item_decimal_parens] = STATE(815), + [sym__list_lower_alpha_period] = STATE(166), + [sym__list_item_lower_alpha_period] = STATE(843), + [sym__list_lower_alpha_paren] = STATE(166), + [sym__list_item_lower_alpha_paren] = STATE(850), + [sym__list_lower_alpha_parens] = STATE(166), + [sym__list_item_lower_alpha_parens] = STATE(853), + [sym__list_upper_alpha_period] = STATE(166), + [sym__list_item_upper_alpha_period] = STATE(854), + [sym__list_upper_alpha_paren] = STATE(166), + [sym__list_item_upper_alpha_paren] = STATE(855), + [sym__list_upper_alpha_parens] = STATE(166), + [sym__list_item_upper_alpha_parens] = STATE(856), + [sym__list_lower_roman_period] = STATE(166), + [sym__list_item_lower_roman_period] = STATE(857), + [sym__list_lower_roman_paren] = STATE(166), + [sym__list_item_lower_roman_paren] = STATE(871), + [sym__list_lower_roman_parens] = STATE(166), + [sym__list_item_lower_roman_parens] = STATE(874), + [sym__list_upper_roman_period] = STATE(166), + [sym__list_item_upper_roman_period] = STATE(876), + [sym__list_upper_roman_paren] = STATE(166), + [sym__list_item_upper_roman_paren] = STATE(878), + [sym__list_upper_roman_parens] = STATE(166), + [sym__list_item_upper_roman_parens] = STATE(880), + [sym_table] = STATE(162), + [sym__table_content] = STATE(72), + [sym_table_separator] = STATE(72), + [sym_table_row] = STATE(79), + [sym_footnote] = STATE(162), + [sym_footnote_marker_begin] = STATE(1302), + [sym_div] = STATE(162), + [sym__div_marker_begin] = STATE(1165), + [sym_code_block] = STATE(162), + [sym_raw_block] = STATE(162), + [sym_thematic_break] = STATE(162), + [sym_block_quote] = STATE(162), + [sym__block_quote_prefix] = STATE(304), + [sym_link_reference_definition] = STATE(162), + [sym_block_attribute] = STATE(162), + [sym__paragraph] = STATE(162), + [sym__paragraph_content] = STATE(848), + [sym__paragraph_inline_content] = STATE(896), + [sym__inline] = STATE(715), + [sym__symbol_fallback] = STATE(381), + [aux_sym__list_dash_repeat1] = STATE(454), + [aux_sym__list_plus_repeat1] = STATE(455), + [aux_sym__list_star_repeat1] = STATE(456), + [aux_sym__list_task_repeat1] = STATE(436), + [aux_sym__list_definition_repeat1] = STATE(612), + [aux_sym__list_decimal_period_repeat1] = STATE(613), + [aux_sym__list_decimal_paren_repeat1] = STATE(614), + [aux_sym__list_decimal_parens_repeat1] = STATE(615), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(616), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(617), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(618), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(619), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(620), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(621), + [aux_sym__list_lower_roman_period_repeat1] = STATE(622), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(623), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(624), + [aux_sym__list_upper_roman_period_repeat1] = STATE(625), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(626), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(627), + [aux_sym_table_repeat1] = STATE(72), + [aux_sym__block_quote_prefix_repeat1] = STATE(330), + [aux_sym__inline_repeat1] = STATE(381), + [anon_sym_LBRACK] = ACTIONS(443), + [anon_sym_PIPE] = ACTIONS(443), + [anon_sym_LBRACK_CARET] = ACTIONS(443), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_DOT] = ACTIONS(443), + [aux_sym_identifier_token1] = ACTIONS(443), + [aux_sym__inline_token1] = ACTIONS(443), + [anon_sym_LBRACE_DASH] = ACTIONS(443), + [anon_sym_POUND] = ACTIONS(443), + [anon_sym_PERCENT] = ACTIONS(443), + [sym__newline] = ACTIONS(447), + [sym__heading_begin] = ACTIONS(19), + [sym__div_begin] = ACTIONS(21), + [sym__code_block_begin] = ACTIONS(83), + [sym_list_marker_dash] = ACTIONS(445), + [sym_list_marker_star] = ACTIONS(445), + [sym_list_marker_plus] = ACTIONS(445), + [sym__list_marker_task_begin] = ACTIONS(445), + [sym_list_marker_definition] = ACTIONS(33), + [sym_list_marker_decimal_period] = ACTIONS(35), + [sym_list_marker_lower_alpha_period] = ACTIONS(37), + [sym_list_marker_upper_alpha_period] = ACTIONS(39), + [sym_list_marker_lower_roman_period] = ACTIONS(41), + [sym_list_marker_upper_roman_period] = ACTIONS(43), + [sym_list_marker_decimal_paren] = ACTIONS(45), + [sym_list_marker_lower_alpha_paren] = ACTIONS(47), + [sym_list_marker_upper_alpha_paren] = ACTIONS(49), + [sym_list_marker_lower_roman_paren] = ACTIONS(51), + [sym_list_marker_upper_roman_paren] = ACTIONS(53), + [sym_list_marker_decimal_parens] = ACTIONS(55), + [sym_list_marker_lower_alpha_parens] = ACTIONS(57), + [sym_list_marker_upper_alpha_parens] = ACTIONS(59), + [sym_list_marker_lower_roman_parens] = ACTIONS(61), + [sym_list_marker_upper_roman_parens] = ACTIONS(63), + [sym__block_quote_begin] = ACTIONS(85), + [sym__block_quote_continuation] = ACTIONS(445), + [sym__thematic_break_dash] = ACTIONS(87), + [sym__thematic_break_star] = ACTIONS(87), + }, + [63] = { + [sym__block_element] = STATE(533), + [sym_heading] = STATE(533), + [sym_list] = STATE(533), + [sym__list_dash] = STATE(914), + [sym__list_item_dash] = STATE(727), + [sym__list_plus] = STATE(914), + [sym__list_item_plus] = STATE(730), + [sym__list_star] = STATE(914), + [sym__list_item_star] = STATE(759), + [sym__list_task] = STATE(914), + [sym__list_item_task] = STATE(761), + [sym_list_marker_task] = STATE(46), + [sym__list_definition] = STATE(914), + [sym__list_item_definition] = STATE(819), + [sym__list_decimal_period] = STATE(914), + [sym__list_item_decimal_period] = STATE(852), + [sym__list_decimal_paren] = STATE(914), + [sym__list_item_decimal_paren] = STATE(837), + [sym__list_decimal_parens] = STATE(914), + [sym__list_item_decimal_parens] = STATE(815), + [sym__list_lower_alpha_period] = STATE(914), + [sym__list_item_lower_alpha_period] = STATE(843), + [sym__list_lower_alpha_paren] = STATE(914), + [sym__list_item_lower_alpha_paren] = STATE(850), + [sym__list_lower_alpha_parens] = STATE(914), + [sym__list_item_lower_alpha_parens] = STATE(853), + [sym__list_upper_alpha_period] = STATE(914), + [sym__list_item_upper_alpha_period] = STATE(854), + [sym__list_upper_alpha_paren] = STATE(914), + [sym__list_item_upper_alpha_paren] = STATE(855), + [sym__list_upper_alpha_parens] = STATE(914), + [sym__list_item_upper_alpha_parens] = STATE(856), + [sym__list_lower_roman_period] = STATE(914), + [sym__list_item_lower_roman_period] = STATE(857), + [sym__list_lower_roman_paren] = STATE(914), + [sym__list_item_lower_roman_paren] = STATE(871), + [sym__list_lower_roman_parens] = STATE(914), + [sym__list_item_lower_roman_parens] = STATE(874), + [sym__list_upper_roman_period] = STATE(914), + [sym__list_item_upper_roman_period] = STATE(876), + [sym__list_upper_roman_paren] = STATE(914), + [sym__list_item_upper_roman_paren] = STATE(878), + [sym__list_upper_roman_parens] = STATE(914), + [sym__list_item_upper_roman_parens] = STATE(880), + [sym_table] = STATE(533), + [sym__table_content] = STATE(391), + [sym_table_separator] = STATE(391), + [sym_table_row] = STATE(433), + [sym_footnote] = STATE(533), + [sym_footnote_marker_begin] = STATE(1300), + [sym_div] = STATE(533), + [sym__div_marker_begin] = STATE(1142), + [sym_code_block] = STATE(533), + [sym_raw_block] = STATE(533), + [sym_thematic_break] = STATE(533), + [sym_block_quote] = STATE(533), + [sym__block_quote_content] = STATE(1315), + [sym__block_quote_prefix] = STATE(303), + [sym_link_reference_definition] = STATE(533), + [sym_block_attribute] = STATE(533), + [sym__paragraph] = STATE(533), + [sym__paragraph_content] = STATE(829), + [sym__paragraph_inline_content] = STATE(896), + [sym__inline] = STATE(715), + [sym__symbol_fallback] = STATE(381), + [aux_sym__list_dash_repeat1] = STATE(464), + [aux_sym__list_plus_repeat1] = STATE(442), + [aux_sym__list_star_repeat1] = STATE(443), + [aux_sym__list_task_repeat1] = STATE(428), + [aux_sym__list_definition_repeat1] = STATE(589), + [aux_sym__list_decimal_period_repeat1] = STATE(590), + [aux_sym__list_decimal_paren_repeat1] = STATE(679), + [aux_sym__list_decimal_parens_repeat1] = STATE(591), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(592), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(593), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(594), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(595), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(596), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(597), + [aux_sym__list_lower_roman_period_repeat1] = STATE(598), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(599), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(600), + [aux_sym__list_upper_roman_period_repeat1] = STATE(601), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(602), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(603), + [aux_sym_table_repeat1] = STATE(391), + [aux_sym__block_quote_prefix_repeat1] = STATE(330), + [aux_sym__inline_repeat1] = STATE(381), + [anon_sym_LBRACK] = ACTIONS(477), + [anon_sym_PIPE] = ACTIONS(479), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(481), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__heading_begin] = ACTIONS(455), + [sym__heading_begin] = ACTIONS(483), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(457), + [sym__code_block_begin] = ACTIONS(485), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -12532,113 +13184,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(459), + [sym__block_quote_begin] = ACTIONS(487), [sym__block_quote_continuation] = ACTIONS(67), - [sym__thematic_break_dash] = ACTIONS(461), - [sym__thematic_break_star] = ACTIONS(461), + [sym__thematic_break_dash] = ACTIONS(489), + [sym__thematic_break_star] = ACTIONS(489), }, - [62] = { - [sym__block_element] = STATE(498), - [sym_heading] = STATE(498), - [sym_list] = STATE(498), - [sym__list_dash] = STATE(876), - [sym__list_item_dash] = STATE(634), - [sym__list_plus] = STATE(876), - [sym__list_item_plus] = STATE(651), - [sym__list_star] = STATE(876), - [sym__list_item_star] = STATE(697), - [sym__list_task] = STATE(876), - [sym__list_item_task] = STATE(707), - [sym_list_marker_task] = STATE(47), - [sym__list_definition] = STATE(876), - [sym__list_item_definition] = STATE(736), - [sym__list_decimal_period] = STATE(876), - [sym__list_item_decimal_period] = STATE(795), - [sym__list_decimal_paren] = STATE(876), - [sym__list_item_decimal_paren] = STATE(848), - [sym__list_decimal_parens] = STATE(876), - [sym__list_item_decimal_parens] = STATE(772), - [sym__list_lower_alpha_period] = STATE(876), - [sym__list_item_lower_alpha_period] = STATE(787), - [sym__list_lower_alpha_paren] = STATE(876), - [sym__list_item_lower_alpha_paren] = STATE(792), - [sym__list_lower_alpha_parens] = STATE(876), - [sym__list_item_lower_alpha_parens] = STATE(793), - [sym__list_upper_alpha_period] = STATE(876), - [sym__list_item_upper_alpha_period] = STATE(797), - [sym__list_upper_alpha_paren] = STATE(876), - [sym__list_item_upper_alpha_paren] = STATE(798), - [sym__list_upper_alpha_parens] = STATE(876), - [sym__list_item_upper_alpha_parens] = STATE(799), - [sym__list_lower_roman_period] = STATE(876), - [sym__list_item_lower_roman_period] = STATE(801), - [sym__list_lower_roman_paren] = STATE(876), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(876), - [sym__list_item_lower_roman_parens] = STATE(814), - [sym__list_upper_roman_period] = STATE(876), - [sym__list_item_upper_roman_period] = STATE(818), - [sym__list_upper_roman_paren] = STATE(876), - [sym__list_item_upper_roman_paren] = STATE(819), - [sym__list_upper_roman_parens] = STATE(876), - [sym__list_item_upper_roman_parens] = STATE(822), - [sym_table] = STATE(498), - [sym__table_content] = STATE(380), - [sym_table_separator] = STATE(380), - [sym_table_row] = STATE(405), - [sym_footnote] = STATE(498), - [sym_footnote_marker_begin] = STATE(1118), - [sym_div] = STATE(498), - [sym__div_marker_begin] = STATE(1010), - [sym_code_block] = STATE(498), - [sym_raw_block] = STATE(498), - [sym_thematic_break] = STATE(498), - [sym_block_quote] = STATE(498), - [sym__block_quote_content] = STATE(1004), - [sym__block_quote_prefix] = STATE(295), - [sym_link_reference_definition] = STATE(498), - [sym_block_attribute] = STATE(498), - [sym__paragraph] = STATE(498), - [sym__paragraph_content] = STATE(755), - [sym__paragraph_inline_content] = STATE(930), - [sym__inline] = STATE(695), - [sym__symbol_fallback] = STATE(358), - [aux_sym__list_dash_repeat1] = STATE(418), - [aux_sym__list_plus_repeat1] = STATE(419), - [aux_sym__list_star_repeat1] = STATE(426), - [aux_sym__list_task_repeat1] = STATE(390), - [aux_sym__list_definition_repeat1] = STATE(533), - [aux_sym__list_decimal_period_repeat1] = STATE(534), - [aux_sym__list_decimal_paren_repeat1] = STATE(535), - [aux_sym__list_decimal_parens_repeat1] = STATE(536), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(537), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(538), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(539), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(540), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(541), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(542), - [aux_sym__list_lower_roman_period_repeat1] = STATE(543), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(544), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(545), - [aux_sym__list_upper_roman_period_repeat1] = STATE(546), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(547), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(548), - [aux_sym_table_repeat1] = STATE(380), - [aux_sym__block_quote_prefix_repeat1] = STATE(320), - [aux_sym__inline_repeat1] = STATE(358), - [anon_sym_LBRACK] = ACTIONS(449), - [anon_sym_PIPE] = ACTIONS(451), + [64] = { + [sym__block_element] = STATE(533), + [sym_heading] = STATE(533), + [sym_list] = STATE(533), + [sym__list_dash] = STATE(914), + [sym__list_item_dash] = STATE(727), + [sym__list_plus] = STATE(914), + [sym__list_item_plus] = STATE(730), + [sym__list_star] = STATE(914), + [sym__list_item_star] = STATE(759), + [sym__list_task] = STATE(914), + [sym__list_item_task] = STATE(761), + [sym_list_marker_task] = STATE(46), + [sym__list_definition] = STATE(914), + [sym__list_item_definition] = STATE(819), + [sym__list_decimal_period] = STATE(914), + [sym__list_item_decimal_period] = STATE(852), + [sym__list_decimal_paren] = STATE(914), + [sym__list_item_decimal_paren] = STATE(837), + [sym__list_decimal_parens] = STATE(914), + [sym__list_item_decimal_parens] = STATE(815), + [sym__list_lower_alpha_period] = STATE(914), + [sym__list_item_lower_alpha_period] = STATE(843), + [sym__list_lower_alpha_paren] = STATE(914), + [sym__list_item_lower_alpha_paren] = STATE(850), + [sym__list_lower_alpha_parens] = STATE(914), + [sym__list_item_lower_alpha_parens] = STATE(853), + [sym__list_upper_alpha_period] = STATE(914), + [sym__list_item_upper_alpha_period] = STATE(854), + [sym__list_upper_alpha_paren] = STATE(914), + [sym__list_item_upper_alpha_paren] = STATE(855), + [sym__list_upper_alpha_parens] = STATE(914), + [sym__list_item_upper_alpha_parens] = STATE(856), + [sym__list_lower_roman_period] = STATE(914), + [sym__list_item_lower_roman_period] = STATE(857), + [sym__list_lower_roman_paren] = STATE(914), + [sym__list_item_lower_roman_paren] = STATE(871), + [sym__list_lower_roman_parens] = STATE(914), + [sym__list_item_lower_roman_parens] = STATE(874), + [sym__list_upper_roman_period] = STATE(914), + [sym__list_item_upper_roman_period] = STATE(876), + [sym__list_upper_roman_paren] = STATE(914), + [sym__list_item_upper_roman_paren] = STATE(878), + [sym__list_upper_roman_parens] = STATE(914), + [sym__list_item_upper_roman_parens] = STATE(880), + [sym_table] = STATE(533), + [sym__table_content] = STATE(391), + [sym_table_separator] = STATE(391), + [sym_table_row] = STATE(433), + [sym_footnote] = STATE(533), + [sym_footnote_marker_begin] = STATE(1300), + [sym_div] = STATE(533), + [sym__div_marker_begin] = STATE(1142), + [sym_code_block] = STATE(533), + [sym_raw_block] = STATE(533), + [sym_thematic_break] = STATE(533), + [sym_block_quote] = STATE(533), + [sym__block_quote_content] = STATE(1132), + [sym__block_quote_prefix] = STATE(303), + [sym_link_reference_definition] = STATE(533), + [sym_block_attribute] = STATE(533), + [sym__paragraph] = STATE(533), + [sym__paragraph_content] = STATE(829), + [sym__paragraph_inline_content] = STATE(896), + [sym__inline] = STATE(715), + [sym__symbol_fallback] = STATE(381), + [aux_sym__list_dash_repeat1] = STATE(464), + [aux_sym__list_plus_repeat1] = STATE(442), + [aux_sym__list_star_repeat1] = STATE(443), + [aux_sym__list_task_repeat1] = STATE(428), + [aux_sym__list_definition_repeat1] = STATE(589), + [aux_sym__list_decimal_period_repeat1] = STATE(590), + [aux_sym__list_decimal_paren_repeat1] = STATE(679), + [aux_sym__list_decimal_parens_repeat1] = STATE(591), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(592), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(593), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(594), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(595), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(596), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(597), + [aux_sym__list_lower_roman_period_repeat1] = STATE(598), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(599), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(600), + [aux_sym__list_upper_roman_period_repeat1] = STATE(601), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(602), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(603), + [aux_sym_table_repeat1] = STATE(391), + [aux_sym__block_quote_prefix_repeat1] = STATE(330), + [aux_sym__inline_repeat1] = STATE(381), + [anon_sym_LBRACK] = ACTIONS(477), + [anon_sym_PIPE] = ACTIONS(479), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(481), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__heading_begin] = ACTIONS(455), + [sym__heading_begin] = ACTIONS(483), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(457), + [sym__code_block_begin] = ACTIONS(485), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -12659,111 +13311,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(459), + [sym__block_quote_begin] = ACTIONS(487), [sym__block_quote_continuation] = ACTIONS(67), - [sym__thematic_break_dash] = ACTIONS(461), - [sym__thematic_break_star] = ACTIONS(461), + [sym__thematic_break_dash] = ACTIONS(489), + [sym__thematic_break_star] = ACTIONS(489), }, - [63] = { - [sym__block_element] = STATE(788), - [sym_list] = STATE(788), - [sym__list_dash] = STATE(876), - [sym__list_item_dash] = STATE(634), - [sym__list_plus] = STATE(876), - [sym__list_item_plus] = STATE(651), - [sym__list_star] = STATE(876), - [sym__list_item_star] = STATE(697), - [sym__list_task] = STATE(876), - [sym__list_item_task] = STATE(707), - [sym_list_marker_task] = STATE(47), - [sym__list_definition] = STATE(876), - [sym__list_item_definition] = STATE(736), - [sym__list_decimal_period] = STATE(876), - [sym__list_item_decimal_period] = STATE(795), - [sym__list_decimal_paren] = STATE(876), - [sym__list_item_decimal_paren] = STATE(848), - [sym__list_decimal_parens] = STATE(876), - [sym__list_item_decimal_parens] = STATE(772), - [sym__list_lower_alpha_period] = STATE(876), - [sym__list_item_lower_alpha_period] = STATE(787), - [sym__list_lower_alpha_paren] = STATE(876), - [sym__list_item_lower_alpha_paren] = STATE(792), - [sym__list_lower_alpha_parens] = STATE(876), - [sym__list_item_lower_alpha_parens] = STATE(793), - [sym__list_upper_alpha_period] = STATE(876), - [sym__list_item_upper_alpha_period] = STATE(797), - [sym__list_upper_alpha_paren] = STATE(876), - [sym__list_item_upper_alpha_paren] = STATE(798), - [sym__list_upper_alpha_parens] = STATE(876), - [sym__list_item_upper_alpha_parens] = STATE(799), - [sym__list_lower_roman_period] = STATE(876), - [sym__list_item_lower_roman_period] = STATE(801), - [sym__list_lower_roman_paren] = STATE(876), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(876), - [sym__list_item_lower_roman_parens] = STATE(814), - [sym__list_upper_roman_period] = STATE(876), - [sym__list_item_upper_roman_period] = STATE(818), - [sym__list_upper_roman_paren] = STATE(876), - [sym__list_item_upper_roman_paren] = STATE(819), - [sym__list_upper_roman_parens] = STATE(876), - [sym__list_item_upper_roman_parens] = STATE(822), - [sym_table] = STATE(788), - [sym__table_content] = STATE(380), - [sym_table_separator] = STATE(380), - [sym_table_row] = STATE(405), - [sym_footnote] = STATE(788), - [sym_footnote_marker_begin] = STATE(1118), - [sym_div] = STATE(788), - [sym__div_marker_begin] = STATE(1010), - [sym_code_block] = STATE(788), - [sym_raw_block] = STATE(788), - [sym_thematic_break] = STATE(788), - [sym_block_quote] = STATE(788), - [sym__block_quote_prefix] = STATE(295), - [sym_link_reference_definition] = STATE(788), - [sym_block_attribute] = STATE(788), - [sym__paragraph] = STATE(788), - [sym__paragraph_content] = STATE(755), - [sym__paragraph_inline_content] = STATE(930), - [sym__inline] = STATE(695), - [sym__symbol_fallback] = STATE(358), - [aux_sym__list_dash_repeat1] = STATE(418), - [aux_sym__list_plus_repeat1] = STATE(419), - [aux_sym__list_star_repeat1] = STATE(426), - [aux_sym__list_task_repeat1] = STATE(390), - [aux_sym__list_definition_repeat1] = STATE(533), - [aux_sym__list_decimal_period_repeat1] = STATE(534), - [aux_sym__list_decimal_paren_repeat1] = STATE(535), - [aux_sym__list_decimal_parens_repeat1] = STATE(536), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(537), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(538), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(539), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(540), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(541), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(542), - [aux_sym__list_lower_roman_period_repeat1] = STATE(543), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(544), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(545), - [aux_sym__list_upper_roman_period_repeat1] = STATE(546), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(547), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(548), - [aux_sym_table_repeat1] = STATE(380), - [aux_sym__block_quote_prefix_repeat1] = STATE(320), - [aux_sym__inline_repeat1] = STATE(358), - [anon_sym_LBRACK] = ACTIONS(449), - [anon_sym_PIPE] = ACTIONS(451), + [65] = { + [sym__block_element] = STATE(533), + [sym_heading] = STATE(533), + [sym_list] = STATE(533), + [sym__list_dash] = STATE(914), + [sym__list_item_dash] = STATE(727), + [sym__list_plus] = STATE(914), + [sym__list_item_plus] = STATE(730), + [sym__list_star] = STATE(914), + [sym__list_item_star] = STATE(759), + [sym__list_task] = STATE(914), + [sym__list_item_task] = STATE(761), + [sym_list_marker_task] = STATE(46), + [sym__list_definition] = STATE(914), + [sym__list_item_definition] = STATE(819), + [sym__list_decimal_period] = STATE(914), + [sym__list_item_decimal_period] = STATE(852), + [sym__list_decimal_paren] = STATE(914), + [sym__list_item_decimal_paren] = STATE(837), + [sym__list_decimal_parens] = STATE(914), + [sym__list_item_decimal_parens] = STATE(815), + [sym__list_lower_alpha_period] = STATE(914), + [sym__list_item_lower_alpha_period] = STATE(843), + [sym__list_lower_alpha_paren] = STATE(914), + [sym__list_item_lower_alpha_paren] = STATE(850), + [sym__list_lower_alpha_parens] = STATE(914), + [sym__list_item_lower_alpha_parens] = STATE(853), + [sym__list_upper_alpha_period] = STATE(914), + [sym__list_item_upper_alpha_period] = STATE(854), + [sym__list_upper_alpha_paren] = STATE(914), + [sym__list_item_upper_alpha_paren] = STATE(855), + [sym__list_upper_alpha_parens] = STATE(914), + [sym__list_item_upper_alpha_parens] = STATE(856), + [sym__list_lower_roman_period] = STATE(914), + [sym__list_item_lower_roman_period] = STATE(857), + [sym__list_lower_roman_paren] = STATE(914), + [sym__list_item_lower_roman_paren] = STATE(871), + [sym__list_lower_roman_parens] = STATE(914), + [sym__list_item_lower_roman_parens] = STATE(874), + [sym__list_upper_roman_period] = STATE(914), + [sym__list_item_upper_roman_period] = STATE(876), + [sym__list_upper_roman_paren] = STATE(914), + [sym__list_item_upper_roman_paren] = STATE(878), + [sym__list_upper_roman_parens] = STATE(914), + [sym__list_item_upper_roman_parens] = STATE(880), + [sym_table] = STATE(533), + [sym__table_content] = STATE(391), + [sym_table_separator] = STATE(391), + [sym_table_row] = STATE(433), + [sym_footnote] = STATE(533), + [sym_footnote_marker_begin] = STATE(1300), + [sym_div] = STATE(533), + [sym__div_marker_begin] = STATE(1142), + [sym_code_block] = STATE(533), + [sym_raw_block] = STATE(533), + [sym_thematic_break] = STATE(533), + [sym_block_quote] = STATE(533), + [sym__block_quote_content] = STATE(1147), + [sym__block_quote_prefix] = STATE(303), + [sym_link_reference_definition] = STATE(533), + [sym_block_attribute] = STATE(533), + [sym__paragraph] = STATE(533), + [sym__paragraph_content] = STATE(829), + [sym__paragraph_inline_content] = STATE(896), + [sym__inline] = STATE(715), + [sym__symbol_fallback] = STATE(381), + [aux_sym__list_dash_repeat1] = STATE(464), + [aux_sym__list_plus_repeat1] = STATE(442), + [aux_sym__list_star_repeat1] = STATE(443), + [aux_sym__list_task_repeat1] = STATE(428), + [aux_sym__list_definition_repeat1] = STATE(589), + [aux_sym__list_decimal_period_repeat1] = STATE(590), + [aux_sym__list_decimal_paren_repeat1] = STATE(679), + [aux_sym__list_decimal_parens_repeat1] = STATE(591), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(592), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(593), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(594), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(595), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(596), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(597), + [aux_sym__list_lower_roman_period_repeat1] = STATE(598), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(599), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(600), + [aux_sym__list_upper_roman_period_repeat1] = STATE(601), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(602), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(603), + [aux_sym_table_repeat1] = STATE(391), + [aux_sym__block_quote_prefix_repeat1] = STATE(330), + [aux_sym__inline_repeat1] = STATE(381), + [anon_sym_LBRACK] = ACTIONS(477), + [anon_sym_PIPE] = ACTIONS(479), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(481), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__block_close] = ACTIONS(467), + [sym__heading_begin] = ACTIONS(483), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(457), + [sym__code_block_begin] = ACTIONS(485), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -12784,36 +13438,669 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(459), - [sym__block_quote_continuation] = ACTIONS(469), - [sym__thematic_break_dash] = ACTIONS(461), - [sym__thematic_break_star] = ACTIONS(461), + [sym__block_quote_begin] = ACTIONS(487), + [sym__block_quote_continuation] = ACTIONS(67), + [sym__thematic_break_dash] = ACTIONS(489), + [sym__thematic_break_star] = ACTIONS(489), }, -}; - -static const uint16_t ts_small_parse_table[] = { + [66] = { + [sym__block_element] = STATE(771), + [sym_heading] = STATE(771), + [sym_list] = STATE(771), + [sym__list_dash] = STATE(732), + [sym__list_item_dash] = STATE(727), + [sym__list_plus] = STATE(732), + [sym__list_item_plus] = STATE(730), + [sym__list_star] = STATE(732), + [sym__list_item_star] = STATE(759), + [sym__list_task] = STATE(732), + [sym__list_item_task] = STATE(761), + [sym_list_marker_task] = STATE(46), + [sym__list_definition] = STATE(732), + [sym__list_item_definition] = STATE(819), + [sym__list_decimal_period] = STATE(732), + [sym__list_item_decimal_period] = STATE(852), + [sym__list_decimal_paren] = STATE(732), + [sym__list_item_decimal_paren] = STATE(837), + [sym__list_decimal_parens] = STATE(732), + [sym__list_item_decimal_parens] = STATE(815), + [sym__list_lower_alpha_period] = STATE(732), + [sym__list_item_lower_alpha_period] = STATE(843), + [sym__list_lower_alpha_paren] = STATE(732), + [sym__list_item_lower_alpha_paren] = STATE(850), + [sym__list_lower_alpha_parens] = STATE(732), + [sym__list_item_lower_alpha_parens] = STATE(853), + [sym__list_upper_alpha_period] = STATE(732), + [sym__list_item_upper_alpha_period] = STATE(854), + [sym__list_upper_alpha_paren] = STATE(732), + [sym__list_item_upper_alpha_paren] = STATE(855), + [sym__list_upper_alpha_parens] = STATE(732), + [sym__list_item_upper_alpha_parens] = STATE(856), + [sym__list_lower_roman_period] = STATE(732), + [sym__list_item_lower_roman_period] = STATE(857), + [sym__list_lower_roman_paren] = STATE(732), + [sym__list_item_lower_roman_paren] = STATE(871), + [sym__list_lower_roman_parens] = STATE(732), + [sym__list_item_lower_roman_parens] = STATE(874), + [sym__list_upper_roman_period] = STATE(732), + [sym__list_item_upper_roman_period] = STATE(876), + [sym__list_upper_roman_paren] = STATE(732), + [sym__list_item_upper_roman_paren] = STATE(878), + [sym__list_upper_roman_parens] = STATE(732), + [sym__list_item_upper_roman_parens] = STATE(880), + [sym_table] = STATE(771), + [sym__table_content] = STATE(386), + [sym_table_separator] = STATE(386), + [sym_table_row] = STATE(414), + [sym_footnote] = STATE(771), + [sym_footnote_marker_begin] = STATE(1304), + [sym_div] = STATE(771), + [sym__div_marker_begin] = STATE(1188), + [sym_code_block] = STATE(771), + [sym_raw_block] = STATE(771), + [sym_thematic_break] = STATE(771), + [sym_block_quote] = STATE(771), + [sym__block_quote_prefix] = STATE(305), + [sym_link_reference_definition] = STATE(771), + [sym_block_attribute] = STATE(771), + [sym__paragraph] = STATE(771), + [sym__paragraph_content] = STATE(868), + [sym__paragraph_inline_content] = STATE(896), + [sym__inline] = STATE(715), + [sym__symbol_fallback] = STATE(381), + [aux_sym__list_dash_repeat1] = STATE(449), + [aux_sym__list_plus_repeat1] = STATE(452), + [aux_sym__list_star_repeat1] = STATE(460), + [aux_sym__list_task_repeat1] = STATE(418), + [aux_sym__list_definition_repeat1] = STATE(632), + [aux_sym__list_decimal_period_repeat1] = STATE(633), + [aux_sym__list_decimal_paren_repeat1] = STATE(634), + [aux_sym__list_decimal_parens_repeat1] = STATE(635), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(636), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(637), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(638), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(639), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(640), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(641), + [aux_sym__list_lower_roman_period_repeat1] = STATE(642), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(643), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(644), + [aux_sym__list_upper_roman_period_repeat1] = STATE(645), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(646), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(647), + [aux_sym_table_repeat1] = STATE(386), + [aux_sym__block_quote_prefix_repeat1] = STATE(330), + [aux_sym__inline_repeat1] = STATE(381), + [anon_sym_LBRACK] = ACTIONS(443), + [anon_sym_PIPE] = ACTIONS(443), + [anon_sym_LBRACK_CARET] = ACTIONS(443), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_DOT] = ACTIONS(443), + [aux_sym_identifier_token1] = ACTIONS(443), + [aux_sym__inline_token1] = ACTIONS(443), + [anon_sym_LBRACE_DASH] = ACTIONS(443), + [anon_sym_POUND] = ACTIONS(443), + [anon_sym_PERCENT] = ACTIONS(443), + [sym__newline] = ACTIONS(491), + [sym__heading_begin] = ACTIONS(461), + [sym__div_begin] = ACTIONS(21), + [sym__code_block_begin] = ACTIONS(463), + [sym_list_marker_dash] = ACTIONS(445), + [sym_list_marker_star] = ACTIONS(445), + [sym_list_marker_plus] = ACTIONS(445), + [sym__list_marker_task_begin] = ACTIONS(445), + [sym_list_marker_definition] = ACTIONS(33), + [sym_list_marker_decimal_period] = ACTIONS(35), + [sym_list_marker_lower_alpha_period] = ACTIONS(37), + [sym_list_marker_upper_alpha_period] = ACTIONS(39), + [sym_list_marker_lower_roman_period] = ACTIONS(41), + [sym_list_marker_upper_roman_period] = ACTIONS(43), + [sym_list_marker_decimal_paren] = ACTIONS(45), + [sym_list_marker_lower_alpha_paren] = ACTIONS(47), + [sym_list_marker_upper_alpha_paren] = ACTIONS(49), + [sym_list_marker_lower_roman_paren] = ACTIONS(51), + [sym_list_marker_upper_roman_paren] = ACTIONS(53), + [sym_list_marker_decimal_parens] = ACTIONS(55), + [sym_list_marker_lower_alpha_parens] = ACTIONS(57), + [sym_list_marker_upper_alpha_parens] = ACTIONS(59), + [sym_list_marker_lower_roman_parens] = ACTIONS(61), + [sym_list_marker_upper_roman_parens] = ACTIONS(63), + [sym__block_quote_begin] = ACTIONS(465), + [sym__block_quote_continuation] = ACTIONS(445), + [sym__thematic_break_dash] = ACTIONS(469), + [sym__thematic_break_star] = ACTIONS(469), + }, + [67] = { + [sym__block_element] = STATE(533), + [sym_heading] = STATE(533), + [sym_list] = STATE(533), + [sym__list_dash] = STATE(914), + [sym__list_item_dash] = STATE(727), + [sym__list_plus] = STATE(914), + [sym__list_item_plus] = STATE(730), + [sym__list_star] = STATE(914), + [sym__list_item_star] = STATE(759), + [sym__list_task] = STATE(914), + [sym__list_item_task] = STATE(761), + [sym_list_marker_task] = STATE(46), + [sym__list_definition] = STATE(914), + [sym__list_item_definition] = STATE(819), + [sym__list_decimal_period] = STATE(914), + [sym__list_item_decimal_period] = STATE(852), + [sym__list_decimal_paren] = STATE(914), + [sym__list_item_decimal_paren] = STATE(837), + [sym__list_decimal_parens] = STATE(914), + [sym__list_item_decimal_parens] = STATE(815), + [sym__list_lower_alpha_period] = STATE(914), + [sym__list_item_lower_alpha_period] = STATE(843), + [sym__list_lower_alpha_paren] = STATE(914), + [sym__list_item_lower_alpha_paren] = STATE(850), + [sym__list_lower_alpha_parens] = STATE(914), + [sym__list_item_lower_alpha_parens] = STATE(853), + [sym__list_upper_alpha_period] = STATE(914), + [sym__list_item_upper_alpha_period] = STATE(854), + [sym__list_upper_alpha_paren] = STATE(914), + [sym__list_item_upper_alpha_paren] = STATE(855), + [sym__list_upper_alpha_parens] = STATE(914), + [sym__list_item_upper_alpha_parens] = STATE(856), + [sym__list_lower_roman_period] = STATE(914), + [sym__list_item_lower_roman_period] = STATE(857), + [sym__list_lower_roman_paren] = STATE(914), + [sym__list_item_lower_roman_paren] = STATE(871), + [sym__list_lower_roman_parens] = STATE(914), + [sym__list_item_lower_roman_parens] = STATE(874), + [sym__list_upper_roman_period] = STATE(914), + [sym__list_item_upper_roman_period] = STATE(876), + [sym__list_upper_roman_paren] = STATE(914), + [sym__list_item_upper_roman_paren] = STATE(878), + [sym__list_upper_roman_parens] = STATE(914), + [sym__list_item_upper_roman_parens] = STATE(880), + [sym_table] = STATE(533), + [sym__table_content] = STATE(391), + [sym_table_separator] = STATE(391), + [sym_table_row] = STATE(433), + [sym_footnote] = STATE(533), + [sym_footnote_marker_begin] = STATE(1300), + [sym_div] = STATE(533), + [sym__div_marker_begin] = STATE(1142), + [sym_code_block] = STATE(533), + [sym_raw_block] = STATE(533), + [sym_thematic_break] = STATE(533), + [sym_block_quote] = STATE(533), + [sym__block_quote_content] = STATE(1252), + [sym__block_quote_prefix] = STATE(303), + [sym_link_reference_definition] = STATE(533), + [sym_block_attribute] = STATE(533), + [sym__paragraph] = STATE(533), + [sym__paragraph_content] = STATE(829), + [sym__paragraph_inline_content] = STATE(896), + [sym__inline] = STATE(715), + [sym__symbol_fallback] = STATE(381), + [aux_sym__list_dash_repeat1] = STATE(464), + [aux_sym__list_plus_repeat1] = STATE(442), + [aux_sym__list_star_repeat1] = STATE(443), + [aux_sym__list_task_repeat1] = STATE(428), + [aux_sym__list_definition_repeat1] = STATE(589), + [aux_sym__list_decimal_period_repeat1] = STATE(590), + [aux_sym__list_decimal_paren_repeat1] = STATE(679), + [aux_sym__list_decimal_parens_repeat1] = STATE(591), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(592), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(593), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(594), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(595), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(596), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(597), + [aux_sym__list_lower_roman_period_repeat1] = STATE(598), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(599), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(600), + [aux_sym__list_upper_roman_period_repeat1] = STATE(601), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(602), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(603), + [aux_sym_table_repeat1] = STATE(391), + [aux_sym__block_quote_prefix_repeat1] = STATE(330), + [aux_sym__inline_repeat1] = STATE(381), + [anon_sym_LBRACK] = ACTIONS(477), + [anon_sym_PIPE] = ACTIONS(479), + [anon_sym_LBRACK_CARET] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(481), + [anon_sym_DOT] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(13), + [aux_sym__inline_token1] = ACTIONS(13), + [anon_sym_LBRACE_DASH] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(13), + [anon_sym_PERCENT] = ACTIONS(13), + [sym__heading_begin] = ACTIONS(483), + [sym__div_begin] = ACTIONS(21), + [sym__code_block_begin] = ACTIONS(485), + [sym_list_marker_dash] = ACTIONS(25), + [sym_list_marker_star] = ACTIONS(27), + [sym_list_marker_plus] = ACTIONS(29), + [sym__list_marker_task_begin] = ACTIONS(31), + [sym_list_marker_definition] = ACTIONS(33), + [sym_list_marker_decimal_period] = ACTIONS(35), + [sym_list_marker_lower_alpha_period] = ACTIONS(37), + [sym_list_marker_upper_alpha_period] = ACTIONS(39), + [sym_list_marker_lower_roman_period] = ACTIONS(41), + [sym_list_marker_upper_roman_period] = ACTIONS(43), + [sym_list_marker_decimal_paren] = ACTIONS(45), + [sym_list_marker_lower_alpha_paren] = ACTIONS(47), + [sym_list_marker_upper_alpha_paren] = ACTIONS(49), + [sym_list_marker_lower_roman_paren] = ACTIONS(51), + [sym_list_marker_upper_roman_paren] = ACTIONS(53), + [sym_list_marker_decimal_parens] = ACTIONS(55), + [sym_list_marker_lower_alpha_parens] = ACTIONS(57), + [sym_list_marker_upper_alpha_parens] = ACTIONS(59), + [sym_list_marker_lower_roman_parens] = ACTIONS(61), + [sym_list_marker_upper_roman_parens] = ACTIONS(63), + [sym__block_quote_begin] = ACTIONS(487), + [sym__block_quote_continuation] = ACTIONS(67), + [sym__thematic_break_dash] = ACTIONS(489), + [sym__thematic_break_star] = ACTIONS(489), + }, + [68] = { + [sym__block_element] = STATE(533), + [sym_heading] = STATE(533), + [sym_list] = STATE(533), + [sym__list_dash] = STATE(914), + [sym__list_item_dash] = STATE(727), + [sym__list_plus] = STATE(914), + [sym__list_item_plus] = STATE(730), + [sym__list_star] = STATE(914), + [sym__list_item_star] = STATE(759), + [sym__list_task] = STATE(914), + [sym__list_item_task] = STATE(761), + [sym_list_marker_task] = STATE(46), + [sym__list_definition] = STATE(914), + [sym__list_item_definition] = STATE(819), + [sym__list_decimal_period] = STATE(914), + [sym__list_item_decimal_period] = STATE(852), + [sym__list_decimal_paren] = STATE(914), + [sym__list_item_decimal_paren] = STATE(837), + [sym__list_decimal_parens] = STATE(914), + [sym__list_item_decimal_parens] = STATE(815), + [sym__list_lower_alpha_period] = STATE(914), + [sym__list_item_lower_alpha_period] = STATE(843), + [sym__list_lower_alpha_paren] = STATE(914), + [sym__list_item_lower_alpha_paren] = STATE(850), + [sym__list_lower_alpha_parens] = STATE(914), + [sym__list_item_lower_alpha_parens] = STATE(853), + [sym__list_upper_alpha_period] = STATE(914), + [sym__list_item_upper_alpha_period] = STATE(854), + [sym__list_upper_alpha_paren] = STATE(914), + [sym__list_item_upper_alpha_paren] = STATE(855), + [sym__list_upper_alpha_parens] = STATE(914), + [sym__list_item_upper_alpha_parens] = STATE(856), + [sym__list_lower_roman_period] = STATE(914), + [sym__list_item_lower_roman_period] = STATE(857), + [sym__list_lower_roman_paren] = STATE(914), + [sym__list_item_lower_roman_paren] = STATE(871), + [sym__list_lower_roman_parens] = STATE(914), + [sym__list_item_lower_roman_parens] = STATE(874), + [sym__list_upper_roman_period] = STATE(914), + [sym__list_item_upper_roman_period] = STATE(876), + [sym__list_upper_roman_paren] = STATE(914), + [sym__list_item_upper_roman_paren] = STATE(878), + [sym__list_upper_roman_parens] = STATE(914), + [sym__list_item_upper_roman_parens] = STATE(880), + [sym_table] = STATE(533), + [sym__table_content] = STATE(391), + [sym_table_separator] = STATE(391), + [sym_table_row] = STATE(433), + [sym_footnote] = STATE(533), + [sym_footnote_marker_begin] = STATE(1300), + [sym_div] = STATE(533), + [sym__div_marker_begin] = STATE(1142), + [sym_code_block] = STATE(533), + [sym_raw_block] = STATE(533), + [sym_thematic_break] = STATE(533), + [sym_block_quote] = STATE(533), + [sym__block_quote_content] = STATE(1272), + [sym__block_quote_prefix] = STATE(303), + [sym_link_reference_definition] = STATE(533), + [sym_block_attribute] = STATE(533), + [sym__paragraph] = STATE(533), + [sym__paragraph_content] = STATE(829), + [sym__paragraph_inline_content] = STATE(896), + [sym__inline] = STATE(715), + [sym__symbol_fallback] = STATE(381), + [aux_sym__list_dash_repeat1] = STATE(464), + [aux_sym__list_plus_repeat1] = STATE(442), + [aux_sym__list_star_repeat1] = STATE(443), + [aux_sym__list_task_repeat1] = STATE(428), + [aux_sym__list_definition_repeat1] = STATE(589), + [aux_sym__list_decimal_period_repeat1] = STATE(590), + [aux_sym__list_decimal_paren_repeat1] = STATE(679), + [aux_sym__list_decimal_parens_repeat1] = STATE(591), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(592), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(593), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(594), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(595), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(596), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(597), + [aux_sym__list_lower_roman_period_repeat1] = STATE(598), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(599), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(600), + [aux_sym__list_upper_roman_period_repeat1] = STATE(601), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(602), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(603), + [aux_sym_table_repeat1] = STATE(391), + [aux_sym__block_quote_prefix_repeat1] = STATE(330), + [aux_sym__inline_repeat1] = STATE(381), + [anon_sym_LBRACK] = ACTIONS(477), + [anon_sym_PIPE] = ACTIONS(479), + [anon_sym_LBRACK_CARET] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(481), + [anon_sym_DOT] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(13), + [aux_sym__inline_token1] = ACTIONS(13), + [anon_sym_LBRACE_DASH] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(13), + [anon_sym_PERCENT] = ACTIONS(13), + [sym__heading_begin] = ACTIONS(483), + [sym__div_begin] = ACTIONS(21), + [sym__code_block_begin] = ACTIONS(485), + [sym_list_marker_dash] = ACTIONS(25), + [sym_list_marker_star] = ACTIONS(27), + [sym_list_marker_plus] = ACTIONS(29), + [sym__list_marker_task_begin] = ACTIONS(31), + [sym_list_marker_definition] = ACTIONS(33), + [sym_list_marker_decimal_period] = ACTIONS(35), + [sym_list_marker_lower_alpha_period] = ACTIONS(37), + [sym_list_marker_upper_alpha_period] = ACTIONS(39), + [sym_list_marker_lower_roman_period] = ACTIONS(41), + [sym_list_marker_upper_roman_period] = ACTIONS(43), + [sym_list_marker_decimal_paren] = ACTIONS(45), + [sym_list_marker_lower_alpha_paren] = ACTIONS(47), + [sym_list_marker_upper_alpha_paren] = ACTIONS(49), + [sym_list_marker_lower_roman_paren] = ACTIONS(51), + [sym_list_marker_upper_roman_paren] = ACTIONS(53), + [sym_list_marker_decimal_parens] = ACTIONS(55), + [sym_list_marker_lower_alpha_parens] = ACTIONS(57), + [sym_list_marker_upper_alpha_parens] = ACTIONS(59), + [sym_list_marker_lower_roman_parens] = ACTIONS(61), + [sym_list_marker_upper_roman_parens] = ACTIONS(63), + [sym__block_quote_begin] = ACTIONS(487), + [sym__block_quote_continuation] = ACTIONS(67), + [sym__thematic_break_dash] = ACTIONS(489), + [sym__thematic_break_star] = ACTIONS(489), + }, + [69] = { + [sym__block_element] = STATE(533), + [sym_heading] = STATE(533), + [sym_list] = STATE(533), + [sym__list_dash] = STATE(914), + [sym__list_item_dash] = STATE(727), + [sym__list_plus] = STATE(914), + [sym__list_item_plus] = STATE(730), + [sym__list_star] = STATE(914), + [sym__list_item_star] = STATE(759), + [sym__list_task] = STATE(914), + [sym__list_item_task] = STATE(761), + [sym_list_marker_task] = STATE(46), + [sym__list_definition] = STATE(914), + [sym__list_item_definition] = STATE(819), + [sym__list_decimal_period] = STATE(914), + [sym__list_item_decimal_period] = STATE(852), + [sym__list_decimal_paren] = STATE(914), + [sym__list_item_decimal_paren] = STATE(837), + [sym__list_decimal_parens] = STATE(914), + [sym__list_item_decimal_parens] = STATE(815), + [sym__list_lower_alpha_period] = STATE(914), + [sym__list_item_lower_alpha_period] = STATE(843), + [sym__list_lower_alpha_paren] = STATE(914), + [sym__list_item_lower_alpha_paren] = STATE(850), + [sym__list_lower_alpha_parens] = STATE(914), + [sym__list_item_lower_alpha_parens] = STATE(853), + [sym__list_upper_alpha_period] = STATE(914), + [sym__list_item_upper_alpha_period] = STATE(854), + [sym__list_upper_alpha_paren] = STATE(914), + [sym__list_item_upper_alpha_paren] = STATE(855), + [sym__list_upper_alpha_parens] = STATE(914), + [sym__list_item_upper_alpha_parens] = STATE(856), + [sym__list_lower_roman_period] = STATE(914), + [sym__list_item_lower_roman_period] = STATE(857), + [sym__list_lower_roman_paren] = STATE(914), + [sym__list_item_lower_roman_paren] = STATE(871), + [sym__list_lower_roman_parens] = STATE(914), + [sym__list_item_lower_roman_parens] = STATE(874), + [sym__list_upper_roman_period] = STATE(914), + [sym__list_item_upper_roman_period] = STATE(876), + [sym__list_upper_roman_paren] = STATE(914), + [sym__list_item_upper_roman_paren] = STATE(878), + [sym__list_upper_roman_parens] = STATE(914), + [sym__list_item_upper_roman_parens] = STATE(880), + [sym_table] = STATE(533), + [sym__table_content] = STATE(391), + [sym_table_separator] = STATE(391), + [sym_table_row] = STATE(433), + [sym_footnote] = STATE(533), + [sym_footnote_marker_begin] = STATE(1300), + [sym_div] = STATE(533), + [sym__div_marker_begin] = STATE(1142), + [sym_code_block] = STATE(533), + [sym_raw_block] = STATE(533), + [sym_thematic_break] = STATE(533), + [sym_block_quote] = STATE(533), + [sym__block_quote_content] = STATE(1056), + [sym__block_quote_prefix] = STATE(303), + [sym_link_reference_definition] = STATE(533), + [sym_block_attribute] = STATE(533), + [sym__paragraph] = STATE(533), + [sym__paragraph_content] = STATE(829), + [sym__paragraph_inline_content] = STATE(896), + [sym__inline] = STATE(715), + [sym__symbol_fallback] = STATE(381), + [aux_sym__list_dash_repeat1] = STATE(464), + [aux_sym__list_plus_repeat1] = STATE(442), + [aux_sym__list_star_repeat1] = STATE(443), + [aux_sym__list_task_repeat1] = STATE(428), + [aux_sym__list_definition_repeat1] = STATE(589), + [aux_sym__list_decimal_period_repeat1] = STATE(590), + [aux_sym__list_decimal_paren_repeat1] = STATE(679), + [aux_sym__list_decimal_parens_repeat1] = STATE(591), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(592), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(593), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(594), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(595), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(596), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(597), + [aux_sym__list_lower_roman_period_repeat1] = STATE(598), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(599), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(600), + [aux_sym__list_upper_roman_period_repeat1] = STATE(601), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(602), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(603), + [aux_sym_table_repeat1] = STATE(391), + [aux_sym__block_quote_prefix_repeat1] = STATE(330), + [aux_sym__inline_repeat1] = STATE(381), + [anon_sym_LBRACK] = ACTIONS(477), + [anon_sym_PIPE] = ACTIONS(479), + [anon_sym_LBRACK_CARET] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(481), + [anon_sym_DOT] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(13), + [aux_sym__inline_token1] = ACTIONS(13), + [anon_sym_LBRACE_DASH] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(13), + [anon_sym_PERCENT] = ACTIONS(13), + [sym__heading_begin] = ACTIONS(483), + [sym__div_begin] = ACTIONS(21), + [sym__code_block_begin] = ACTIONS(485), + [sym_list_marker_dash] = ACTIONS(25), + [sym_list_marker_star] = ACTIONS(27), + [sym_list_marker_plus] = ACTIONS(29), + [sym__list_marker_task_begin] = ACTIONS(31), + [sym_list_marker_definition] = ACTIONS(33), + [sym_list_marker_decimal_period] = ACTIONS(35), + [sym_list_marker_lower_alpha_period] = ACTIONS(37), + [sym_list_marker_upper_alpha_period] = ACTIONS(39), + [sym_list_marker_lower_roman_period] = ACTIONS(41), + [sym_list_marker_upper_roman_period] = ACTIONS(43), + [sym_list_marker_decimal_paren] = ACTIONS(45), + [sym_list_marker_lower_alpha_paren] = ACTIONS(47), + [sym_list_marker_upper_alpha_paren] = ACTIONS(49), + [sym_list_marker_lower_roman_paren] = ACTIONS(51), + [sym_list_marker_upper_roman_paren] = ACTIONS(53), + [sym_list_marker_decimal_parens] = ACTIONS(55), + [sym_list_marker_lower_alpha_parens] = ACTIONS(57), + [sym_list_marker_upper_alpha_parens] = ACTIONS(59), + [sym_list_marker_lower_roman_parens] = ACTIONS(61), + [sym_list_marker_upper_roman_parens] = ACTIONS(63), + [sym__block_quote_begin] = ACTIONS(487), + [sym__block_quote_continuation] = ACTIONS(67), + [sym__thematic_break_dash] = ACTIONS(489), + [sym__thematic_break_star] = ACTIONS(489), + }, + [70] = { + [sym__block_element] = STATE(810), + [sym_list] = STATE(810), + [sym__list_dash] = STATE(914), + [sym__list_item_dash] = STATE(727), + [sym__list_plus] = STATE(914), + [sym__list_item_plus] = STATE(730), + [sym__list_star] = STATE(914), + [sym__list_item_star] = STATE(759), + [sym__list_task] = STATE(914), + [sym__list_item_task] = STATE(761), + [sym_list_marker_task] = STATE(46), + [sym__list_definition] = STATE(914), + [sym__list_item_definition] = STATE(819), + [sym__list_decimal_period] = STATE(914), + [sym__list_item_decimal_period] = STATE(852), + [sym__list_decimal_paren] = STATE(914), + [sym__list_item_decimal_paren] = STATE(837), + [sym__list_decimal_parens] = STATE(914), + [sym__list_item_decimal_parens] = STATE(815), + [sym__list_lower_alpha_period] = STATE(914), + [sym__list_item_lower_alpha_period] = STATE(843), + [sym__list_lower_alpha_paren] = STATE(914), + [sym__list_item_lower_alpha_paren] = STATE(850), + [sym__list_lower_alpha_parens] = STATE(914), + [sym__list_item_lower_alpha_parens] = STATE(853), + [sym__list_upper_alpha_period] = STATE(914), + [sym__list_item_upper_alpha_period] = STATE(854), + [sym__list_upper_alpha_paren] = STATE(914), + [sym__list_item_upper_alpha_paren] = STATE(855), + [sym__list_upper_alpha_parens] = STATE(914), + [sym__list_item_upper_alpha_parens] = STATE(856), + [sym__list_lower_roman_period] = STATE(914), + [sym__list_item_lower_roman_period] = STATE(857), + [sym__list_lower_roman_paren] = STATE(914), + [sym__list_item_lower_roman_paren] = STATE(871), + [sym__list_lower_roman_parens] = STATE(914), + [sym__list_item_lower_roman_parens] = STATE(874), + [sym__list_upper_roman_period] = STATE(914), + [sym__list_item_upper_roman_period] = STATE(876), + [sym__list_upper_roman_paren] = STATE(914), + [sym__list_item_upper_roman_paren] = STATE(878), + [sym__list_upper_roman_parens] = STATE(914), + [sym__list_item_upper_roman_parens] = STATE(880), + [sym_table] = STATE(810), + [sym__table_content] = STATE(391), + [sym_table_separator] = STATE(391), + [sym_table_row] = STATE(433), + [sym_footnote] = STATE(810), + [sym_footnote_marker_begin] = STATE(1300), + [sym_div] = STATE(810), + [sym__div_marker_begin] = STATE(1142), + [sym_code_block] = STATE(810), + [sym_raw_block] = STATE(810), + [sym_thematic_break] = STATE(810), + [sym_block_quote] = STATE(810), + [sym__block_quote_prefix] = STATE(303), + [sym_link_reference_definition] = STATE(810), + [sym_block_attribute] = STATE(810), + [sym__paragraph] = STATE(810), + [sym__paragraph_content] = STATE(829), + [sym__paragraph_inline_content] = STATE(896), + [sym__inline] = STATE(715), + [sym__symbol_fallback] = STATE(381), + [aux_sym__list_dash_repeat1] = STATE(464), + [aux_sym__list_plus_repeat1] = STATE(442), + [aux_sym__list_star_repeat1] = STATE(443), + [aux_sym__list_task_repeat1] = STATE(428), + [aux_sym__list_definition_repeat1] = STATE(589), + [aux_sym__list_decimal_period_repeat1] = STATE(590), + [aux_sym__list_decimal_paren_repeat1] = STATE(679), + [aux_sym__list_decimal_parens_repeat1] = STATE(591), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(592), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(593), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(594), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(595), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(596), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(597), + [aux_sym__list_lower_roman_period_repeat1] = STATE(598), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(599), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(600), + [aux_sym__list_upper_roman_period_repeat1] = STATE(601), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(602), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(603), + [aux_sym_table_repeat1] = STATE(391), + [aux_sym__block_quote_prefix_repeat1] = STATE(330), + [aux_sym__inline_repeat1] = STATE(381), + [anon_sym_LBRACK] = ACTIONS(477), + [anon_sym_PIPE] = ACTIONS(479), + [anon_sym_LBRACK_CARET] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(481), + [anon_sym_DOT] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(13), + [aux_sym__inline_token1] = ACTIONS(13), + [anon_sym_LBRACE_DASH] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(13), + [anon_sym_PERCENT] = ACTIONS(13), + [sym__block_close] = ACTIONS(493), + [sym__div_begin] = ACTIONS(21), + [sym__code_block_begin] = ACTIONS(485), + [sym_list_marker_dash] = ACTIONS(25), + [sym_list_marker_star] = ACTIONS(27), + [sym_list_marker_plus] = ACTIONS(29), + [sym__list_marker_task_begin] = ACTIONS(31), + [sym_list_marker_definition] = ACTIONS(33), + [sym_list_marker_decimal_period] = ACTIONS(35), + [sym_list_marker_lower_alpha_period] = ACTIONS(37), + [sym_list_marker_upper_alpha_period] = ACTIONS(39), + [sym_list_marker_lower_roman_period] = ACTIONS(41), + [sym_list_marker_upper_roman_period] = ACTIONS(43), + [sym_list_marker_decimal_paren] = ACTIONS(45), + [sym_list_marker_lower_alpha_paren] = ACTIONS(47), + [sym_list_marker_upper_alpha_paren] = ACTIONS(49), + [sym_list_marker_lower_roman_paren] = ACTIONS(51), + [sym_list_marker_upper_roman_paren] = ACTIONS(53), + [sym_list_marker_decimal_parens] = ACTIONS(55), + [sym_list_marker_lower_alpha_parens] = ACTIONS(57), + [sym_list_marker_upper_alpha_parens] = ACTIONS(59), + [sym_list_marker_lower_roman_parens] = ACTIONS(61), + [sym_list_marker_upper_roman_parens] = ACTIONS(63), + [sym__block_quote_begin] = ACTIONS(487), + [sym__block_quote_continuation] = ACTIONS(495), + [sym__thematic_break_dash] = ACTIONS(489), + [sym__thematic_break_star] = ACTIONS(489), + }, +}; + +static const uint16_t ts_small_parse_table[] = { [0] = 11, - ACTIONS(474), 1, + ACTIONS(502), 1, anon_sym_PIPE, - ACTIONS(478), 1, + ACTIONS(504), 1, sym__newline, - ACTIONS(480), 1, + ACTIONS(506), 1, sym__block_quote_continuation, - ACTIONS(482), 1, + ACTIONS(508), 1, sym__table_caption_begin, - STATE(71), 1, + STATE(78), 1, sym_table_row, - STATE(186), 1, + STATE(223), 1, sym_table_caption, - STATE(720), 1, + STATE(762), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1089), 1, + STATE(1110), 1, sym__block_quote_prefix, - STATE(67), 3, + STATE(74), 3, sym__table_content, sym_table_separator, aux_sym_table_repeat1, - ACTIONS(472), 9, + ACTIONS(500), 9, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, @@ -12823,8 +14110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(476), 27, - sym__block_close, + ACTIONS(498), 27, sym__heading_begin, sym__div_begin, sym__code_block_begin, @@ -12851,28 +14137,29 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_begin, sym__thematic_break_dash, sym__thematic_break_star, + ts_builtin_sym_end, [70] = 11, - ACTIONS(480), 1, + ACTIONS(506), 1, sym__block_quote_continuation, - ACTIONS(484), 1, + ACTIONS(510), 1, anon_sym_PIPE, - ACTIONS(486), 1, + ACTIONS(512), 1, sym__newline, - ACTIONS(488), 1, + ACTIONS(514), 1, sym__table_caption_begin, - STATE(70), 1, + STATE(79), 1, sym_table_row, - STATE(246), 1, + STATE(191), 1, sym_table_caption, - STATE(720), 1, + STATE(762), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1096), 1, + STATE(1260), 1, sym__block_quote_prefix, - STATE(68), 3, + STATE(75), 3, sym__table_content, sym_table_separator, aux_sym_table_repeat1, - ACTIONS(472), 9, + ACTIONS(500), 9, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, @@ -12882,7 +14169,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(476), 27, + ACTIONS(498), 27, + sym__block_close, sym__heading_begin, sym__div_begin, sym__code_block_begin, @@ -12909,29 +14197,28 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_begin, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, [140] = 11, - ACTIONS(480), 1, + ACTIONS(506), 1, sym__block_quote_continuation, - ACTIONS(490), 1, + ACTIONS(516), 1, anon_sym_PIPE, - ACTIONS(492), 1, + ACTIONS(518), 1, sym__newline, - ACTIONS(494), 1, + ACTIONS(520), 1, sym__table_caption_begin, - STATE(72), 1, + STATE(77), 1, sym_table_row, - STATE(224), 1, + STATE(249), 1, sym_table_caption, - STATE(720), 1, + STATE(762), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1030), 1, + STATE(1274), 1, sym__block_quote_prefix, - STATE(69), 3, + STATE(76), 3, sym__table_content, sym_table_separator, aux_sym_table_repeat1, - ACTIONS(472), 9, + ACTIONS(500), 9, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, @@ -12941,7 +14228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(476), 27, + ACTIONS(498), 27, sym__heading_begin, sym__div_begin, sym__code_block_begin, @@ -12968,23 +14255,23 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_begin, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, + sym__footnote_end, [210] = 8, - ACTIONS(498), 1, + ACTIONS(526), 1, anon_sym_PIPE, - ACTIONS(503), 1, + ACTIONS(529), 1, sym__block_quote_continuation, - STATE(71), 1, + STATE(78), 1, sym_table_row, - STATE(720), 1, + STATE(762), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1089), 1, + STATE(1110), 1, sym__block_quote_prefix, - STATE(67), 3, + STATE(74), 3, sym__table_content, sym_table_separator, aux_sym_table_repeat1, - ACTIONS(496), 9, + ACTIONS(524), 9, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, @@ -12994,8 +14281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(501), 29, - sym__block_close, + ACTIONS(522), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -13024,22 +14310,23 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__table_caption_begin, + ts_builtin_sym_end, [273] = 8, - ACTIONS(503), 1, + ACTIONS(529), 1, sym__block_quote_continuation, - ACTIONS(506), 1, + ACTIONS(532), 1, anon_sym_PIPE, - STATE(70), 1, + STATE(79), 1, sym_table_row, - STATE(720), 1, + STATE(762), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1096), 1, + STATE(1260), 1, sym__block_quote_prefix, - STATE(68), 3, + STATE(75), 3, sym__table_content, sym_table_separator, aux_sym_table_repeat1, - ACTIONS(496), 9, + ACTIONS(524), 9, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, @@ -13049,7 +14336,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(501), 29, + ACTIONS(522), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -13077,24 +14365,23 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_begin, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, sym__table_caption_begin, [336] = 8, - ACTIONS(503), 1, + ACTIONS(529), 1, sym__block_quote_continuation, - ACTIONS(509), 1, + ACTIONS(535), 1, anon_sym_PIPE, - STATE(72), 1, + STATE(77), 1, sym_table_row, - STATE(720), 1, + STATE(762), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1030), 1, + STATE(1274), 1, sym__block_quote_prefix, - STATE(69), 3, + STATE(76), 3, sym__table_content, sym_table_separator, aux_sym_table_repeat1, - ACTIONS(496), 9, + ACTIONS(524), 9, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, @@ -13104,7 +14391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(501), 29, + ACTIONS(522), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -13132,20 +14419,20 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_begin, sym__thematic_break_dash, sym__thematic_break_star, + sym__footnote_end, sym__table_caption_begin, - ts_builtin_sym_end, [399] = 7, - ACTIONS(514), 1, + ACTIONS(540), 1, anon_sym_PIPE, - ACTIONS(519), 1, + ACTIONS(545), 1, sym__block_quote_continuation, - STATE(91), 1, + STATE(92), 1, sym_table_separator, - STATE(720), 1, + STATE(762), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1113), 1, + STATE(1295), 1, sym__block_quote_prefix, - ACTIONS(512), 9, + ACTIONS(538), 9, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, @@ -13155,7 +14442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(517), 29, + ACTIONS(543), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -13186,17 +14473,17 @@ static const uint16_t ts_small_parse_table[] = { sym__footnote_end, sym__table_caption_begin, [457] = 7, - ACTIONS(519), 1, + ACTIONS(545), 1, sym__block_quote_continuation, - ACTIONS(522), 1, + ACTIONS(548), 1, anon_sym_PIPE, - STATE(116), 1, + STATE(128), 1, sym_table_separator, - STATE(720), 1, + STATE(762), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1109), 1, + STATE(1217), 1, sym__block_quote_prefix, - ACTIONS(512), 9, + ACTIONS(538), 9, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, @@ -13206,8 +14493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(517), 29, - sym__block_close, + ACTIONS(543), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -13236,18 +14522,19 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__table_caption_begin, + ts_builtin_sym_end, [515] = 7, - ACTIONS(519), 1, + ACTIONS(545), 1, sym__block_quote_continuation, - ACTIONS(525), 1, + ACTIONS(551), 1, anon_sym_PIPE, - STATE(130), 1, + STATE(133), 1, sym_table_separator, - STATE(720), 1, + STATE(762), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1063), 1, + STATE(1287), 1, sym__block_quote_prefix, - ACTIONS(512), 9, + ACTIONS(538), 9, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, @@ -13257,7 +14544,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(517), 29, + ACTIONS(543), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -13286,13 +14574,12 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__table_caption_begin, - ts_builtin_sym_end, [573] = 4, - ACTIONS(482), 1, + ACTIONS(520), 1, sym__table_caption_begin, - STATE(192), 1, + STATE(252), 1, sym_table_caption, - ACTIONS(528), 10, + ACTIONS(554), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -13303,8 +14590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(530), 29, - sym__block_close, + ACTIONS(556), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -13333,12 +14619,13 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, + sym__footnote_end, [623] = 4, - ACTIONS(488), 1, + ACTIONS(508), 1, sym__table_caption_begin, - STATE(249), 1, + STATE(270), 1, sym_table_caption, - ACTIONS(528), 10, + ACTIONS(554), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -13349,7 +14636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(530), 29, + ACTIONS(556), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -13378,13 +14665,13 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, + ts_builtin_sym_end, [673] = 4, - ACTIONS(494), 1, + ACTIONS(514), 1, sym__table_caption_begin, - STATE(269), 1, + STATE(197), 1, sym_table_caption, - ACTIONS(528), 10, + ACTIONS(554), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -13395,7 +14682,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(530), 29, + ACTIONS(556), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -13424,11 +14712,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [723] = 3, - ACTIONS(536), 1, - sym__code_block_end, - ACTIONS(532), 10, + [723] = 2, + ACTIONS(558), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -13439,7 +14724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(534), 29, + ACTIONS(560), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -13469,10 +14754,11 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_end, - [770] = 3, - ACTIONS(542), 1, - sym__div_end, - ACTIONS(538), 10, + sym__table_caption_begin, + [768] = 3, + ACTIONS(566), 1, + sym__code_block_end, + ACTIONS(562), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -13483,7 +14769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(540), 29, + ACTIONS(564), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -13513,10 +14799,10 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [817] = 3, - ACTIONS(548), 1, + [815] = 3, + ACTIONS(572), 1, sym__code_block_end, - ACTIONS(544), 10, + ACTIONS(568), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -13527,7 +14813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(546), 29, + ACTIONS(570), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -13557,10 +14843,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [864] = 3, - ACTIONS(554), 1, - sym__code_block_end, - ACTIONS(550), 10, + [862] = 2, + ACTIONS(558), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -13571,7 +14855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(552), 29, + ACTIONS(560), 30, sym__block_close, sym__newline, sym__heading_begin, @@ -13601,10 +14885,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [911] = 3, - ACTIONS(560), 1, - sym__code_block_end, - ACTIONS(556), 10, + sym__table_caption_begin, + [907] = 2, + ACTIONS(574), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -13615,7 +14898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(558), 29, + ACTIONS(576), 30, sym__block_close, sym__newline, sym__heading_begin, @@ -13645,8 +14928,11 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [958] = 2, - ACTIONS(562), 10, + sym__table_caption_begin, + [952] = 3, + ACTIONS(582), 1, + sym__eof_or_newline, + ACTIONS(578), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -13657,7 +14943,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(564), 30, + ACTIONS(580), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -13687,9 +14973,10 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__table_caption_begin, - [1003] = 2, - ACTIONS(566), 10, + [999] = 3, + ACTIONS(586), 1, + sym__eof_or_newline, + ACTIONS(584), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -13700,8 +14987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(568), 30, - sym__block_close, + ACTIONS(588), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -13730,11 +15016,11 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__table_caption_begin, - [1048] = 3, - ACTIONS(574), 1, + sym__footnote_end, + [1046] = 3, + ACTIONS(594), 1, sym__div_end, - ACTIONS(570), 10, + ACTIONS(590), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -13745,7 +15031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(572), 29, + ACTIONS(592), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -13775,10 +15061,10 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [1095] = 3, - ACTIONS(580), 1, + [1093] = 3, + ACTIONS(600), 1, sym__code_block_end, - ACTIONS(576), 10, + ACTIONS(598), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -13789,8 +15075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(578), 29, - sym__block_close, + ACTIONS(596), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -13819,10 +15104,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [1142] = 3, - ACTIONS(586), 1, - sym__code_block_end, - ACTIONS(582), 10, + ts_builtin_sym_end, + [1140] = 2, + ACTIONS(602), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -13833,8 +15117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(584), 29, - sym__block_close, + ACTIONS(604), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -13863,8 +15146,12 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [1189] = 2, - ACTIONS(588), 10, + sym__footnote_end, + sym__table_caption_begin, + [1185] = 3, + ACTIONS(610), 1, + sym__code_block_end, + ACTIONS(608), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -13875,8 +15162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(590), 30, - sym__block_close, + ACTIONS(606), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -13905,9 +15191,11 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__table_caption_begin, - [1234] = 2, - ACTIONS(592), 10, + ts_builtin_sym_end, + [1232] = 3, + ACTIONS(616), 1, + sym__div_end, + ACTIONS(612), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -13918,7 +15206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(594), 30, + ACTIONS(614), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -13948,11 +15236,10 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__table_caption_begin, [1279] = 3, - ACTIONS(600), 1, - sym__eof_or_newline, - ACTIONS(596), 10, + ACTIONS(618), 1, + sym__code_block_end, + ACTIONS(608), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -13963,7 +15250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(598), 29, + ACTIONS(606), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -13993,8 +15280,10 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [1326] = 2, - ACTIONS(588), 10, + [1326] = 3, + ACTIONS(624), 1, + sym__div_end, + ACTIONS(620), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -14005,7 +15294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(590), 30, + ACTIONS(622), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -14034,10 +15323,11 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__table_caption_begin, - ts_builtin_sym_end, - [1371] = 2, - ACTIONS(592), 10, + sym__footnote_end, + [1373] = 3, + ACTIONS(626), 1, + sym__code_block_end, + ACTIONS(598), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -14048,7 +15338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(594), 30, + ACTIONS(596), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -14077,10 +15367,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__table_caption_begin, - ts_builtin_sym_end, - [1416] = 2, - ACTIONS(602), 10, + sym__footnote_end, + [1420] = 2, + ACTIONS(628), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -14091,7 +15380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(604), 30, + ACTIONS(630), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -14122,10 +15411,8 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, sym__footnote_end, sym__table_caption_begin, - [1461] = 3, - ACTIONS(606), 1, - sym__eof_or_newline, - ACTIONS(596), 10, + [1465] = 2, + ACTIONS(632), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -14136,7 +15423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(598), 29, + ACTIONS(634), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -14165,9 +15452,12 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [1508] = 2, - ACTIONS(562), 10, + sym__footnote_end, + sym__table_caption_begin, + [1510] = 3, + ACTIONS(636), 1, + sym__div_end, + ACTIONS(590), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -14178,7 +15468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(564), 30, + ACTIONS(592), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -14207,12 +15497,11 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__table_caption_begin, - ts_builtin_sym_end, - [1553] = 3, - ACTIONS(612), 1, + sym__footnote_end, + [1557] = 3, + ACTIONS(638), 1, sym__div_end, - ACTIONS(608), 10, + ACTIONS(612), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -14223,7 +15512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(610), 29, + ACTIONS(614), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -14253,10 +15542,10 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_end, - [1600] = 3, - ACTIONS(614), 1, + [1604] = 3, + ACTIONS(640), 1, sym__code_block_end, - ACTIONS(544), 10, + ACTIONS(608), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -14267,7 +15556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(546), 29, + ACTIONS(606), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -14296,9 +15585,11 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [1647] = 2, - ACTIONS(616), 10, + sym__footnote_end, + [1651] = 3, + ACTIONS(646), 1, + sym__code_block_end, + ACTIONS(642), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -14309,7 +15600,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(618), 30, + ACTIONS(644), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -14339,9 +15630,10 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_end, - sym__table_caption_begin, - [1692] = 2, - ACTIONS(620), 10, + [1698] = 3, + ACTIONS(652), 1, + sym__code_block_end, + ACTIONS(648), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -14352,7 +15644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(622), 30, + ACTIONS(650), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -14382,11 +15674,8 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_end, - sym__table_caption_begin, - [1737] = 3, - ACTIONS(628), 1, - sym__div_end, - ACTIONS(624), 10, + [1745] = 2, + ACTIONS(654), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -14397,7 +15686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(626), 29, + ACTIONS(656), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -14427,10 +15716,9 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_end, - [1784] = 3, - ACTIONS(630), 1, - sym__div_end, - ACTIONS(538), 10, + sym__table_caption_begin, + [1790] = 2, + ACTIONS(658), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -14441,7 +15729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(540), 29, + ACTIONS(660), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -14471,10 +15759,9 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_end, - [1831] = 3, - ACTIONS(632), 1, - sym__code_block_end, - ACTIONS(550), 10, + sym__table_caption_begin, + [1835] = 2, + ACTIONS(632), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -14485,7 +15772,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(552), 29, + ACTIONS(634), 30, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -14514,11 +15802,11 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [1878] = 3, - ACTIONS(634), 1, + sym__table_caption_begin, + [1880] = 3, + ACTIONS(662), 1, sym__code_block_end, - ACTIONS(550), 10, + ACTIONS(562), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -14529,7 +15817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(552), 29, + ACTIONS(564), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -14559,10 +15847,10 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_end, - [1925] = 3, - ACTIONS(636), 1, + [1927] = 3, + ACTIONS(664), 1, sym__code_block_end, - ACTIONS(556), 10, + ACTIONS(568), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -14573,7 +15861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(558), 29, + ACTIONS(570), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -14603,8 +15891,8 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_end, - [1972] = 2, - ACTIONS(562), 10, + [1974] = 2, + ACTIONS(628), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -14615,7 +15903,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(564), 30, + ACTIONS(630), 30, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -14644,10 +15933,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, sym__table_caption_begin, - [2017] = 2, - ACTIONS(566), 10, + [2019] = 2, + ACTIONS(574), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -14658,7 +15946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(568), 30, + ACTIONS(576), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -14689,10 +15977,10 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, sym__footnote_end, sym__table_caption_begin, - [2062] = 3, - ACTIONS(638), 1, - sym__div_end, - ACTIONS(570), 10, + [2064] = 3, + ACTIONS(666), 1, + sym__eof_or_newline, + ACTIONS(578), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -14703,7 +15991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(572), 29, + ACTIONS(580), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -14733,10 +16021,10 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__footnote_end, - [2109] = 3, - ACTIONS(640), 1, + [2111] = 3, + ACTIONS(668), 1, sym__code_block_end, - ACTIONS(576), 10, + ACTIONS(642), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -14747,7 +16035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(578), 29, + ACTIONS(644), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -14776,11 +16064,11 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, - [2156] = 3, - ACTIONS(642), 1, + ts_builtin_sym_end, + [2158] = 3, + ACTIONS(670), 1, sym__code_block_end, - ACTIONS(582), 10, + ACTIONS(648), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -14791,7 +16079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(584), 29, + ACTIONS(650), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -14820,9 +16108,11 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, - [2203] = 2, - ACTIONS(588), 10, + ts_builtin_sym_end, + [2205] = 3, + ACTIONS(672), 1, + sym__code_block_end, + ACTIONS(642), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -14833,7 +16123,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(590), 30, + ACTIONS(644), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -14862,10 +16153,10 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, - sym__table_caption_begin, - [2248] = 2, - ACTIONS(592), 10, + [2252] = 3, + ACTIONS(674), 1, + sym__div_end, + ACTIONS(620), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -14876,7 +16167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(594), 30, + ACTIONS(622), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -14905,12 +16196,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, - sym__table_caption_begin, - [2293] = 3, - ACTIONS(644), 1, - sym__eof_or_newline, - ACTIONS(596), 10, + ts_builtin_sym_end, + [2299] = 2, + ACTIONS(654), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -14921,7 +16209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(598), 29, + ACTIONS(656), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -14950,9 +16238,10 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, - [2340] = 2, - ACTIONS(566), 10, + sym__table_caption_begin, + ts_builtin_sym_end, + [2344] = 2, + ACTIONS(658), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -14963,7 +16252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(568), 30, + ACTIONS(660), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -14994,10 +16283,8 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, sym__table_caption_begin, ts_builtin_sym_end, - [2385] = 3, - ACTIONS(646), 1, - sym__div_end, - ACTIONS(608), 10, + [2389] = 2, + ACTIONS(628), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -15008,7 +16295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(610), 29, + ACTIONS(630), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -15037,11 +16324,12 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, + sym__table_caption_begin, ts_builtin_sym_end, - [2432] = 3, - ACTIONS(648), 1, - sym__code_block_end, - ACTIONS(532), 10, + [2434] = 3, + ACTIONS(680), 1, + sym__div_end, + ACTIONS(678), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -15052,7 +16340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(534), 29, + ACTIONS(676), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -15082,10 +16370,10 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, ts_builtin_sym_end, - [2479] = 3, - ACTIONS(650), 1, + [2481] = 3, + ACTIONS(682), 1, sym__code_block_end, - ACTIONS(556), 10, + ACTIONS(648), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -15096,7 +16384,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(558), 29, + ACTIONS(650), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -15125,11 +16414,10 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [2526] = 3, - ACTIONS(652), 1, - sym__div_end, - ACTIONS(570), 10, + [2528] = 3, + ACTIONS(684), 1, + sym__code_block_end, + ACTIONS(562), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -15140,7 +16428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(572), 29, + ACTIONS(564), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -15170,8 +16458,10 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, ts_builtin_sym_end, - [2573] = 2, - ACTIONS(602), 10, + [2575] = 3, + ACTIONS(686), 1, + sym__code_block_end, + ACTIONS(568), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -15182,8 +16472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(604), 30, - sym__block_close, + ACTIONS(570), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -15212,9 +16501,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__table_caption_begin, - [2618] = 2, - ACTIONS(616), 10, + ts_builtin_sym_end, + [2622] = 2, + ACTIONS(558), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -15225,7 +16514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(618), 30, + ACTIONS(560), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -15256,8 +16545,8 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, sym__table_caption_begin, ts_builtin_sym_end, - [2663] = 2, - ACTIONS(620), 10, + [2667] = 2, + ACTIONS(574), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -15268,7 +16557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(622), 30, + ACTIONS(576), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -15299,10 +16588,10 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, sym__table_caption_begin, ts_builtin_sym_end, - [2708] = 3, - ACTIONS(654), 1, - sym__code_block_end, - ACTIONS(576), 10, + [2712] = 3, + ACTIONS(688), 1, + sym__eof_or_newline, + ACTIONS(578), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -15313,7 +16602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(578), 29, + ACTIONS(580), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -15343,10 +16632,8 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, ts_builtin_sym_end, - [2755] = 3, - ACTIONS(656), 1, - sym__code_block_end, - ACTIONS(582), 10, + [2759] = 2, + ACTIONS(632), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -15357,7 +16644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(584), 29, + ACTIONS(634), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -15386,11 +16673,10 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, + sym__table_caption_begin, ts_builtin_sym_end, - [2802] = 3, - ACTIONS(658), 1, - sym__div_end, - ACTIONS(624), 10, + [2804] = 2, + ACTIONS(602), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -15401,7 +16687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(626), 29, + ACTIONS(604), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -15430,11 +16716,12 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, + sym__table_caption_begin, ts_builtin_sym_end, [2849] = 3, - ACTIONS(662), 1, + ACTIONS(690), 1, sym__eof_or_newline, - ACTIONS(660), 10, + ACTIONS(584), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -15445,7 +16732,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(664), 29, + ACTIONS(588), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -15474,11 +16762,10 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, [2896] = 3, - ACTIONS(666), 1, + ACTIONS(692), 1, sym__div_end, - ACTIONS(608), 10, + ACTIONS(590), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -15489,8 +16776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(610), 29, - sym__block_close, + ACTIONS(592), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -15519,10 +16805,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [2943] = 3, - ACTIONS(668), 1, - sym__code_block_end, - ACTIONS(532), 10, + ts_builtin_sym_end, + [2943] = 2, + ACTIONS(654), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -15533,7 +16818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(534), 29, + ACTIONS(656), 30, sym__block_close, sym__newline, sym__heading_begin, @@ -15563,8 +16848,11 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [2990] = 2, - ACTIONS(616), 10, + sym__table_caption_begin, + [2988] = 3, + ACTIONS(694), 1, + sym__div_end, + ACTIONS(612), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -15575,8 +16863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(618), 30, - sym__block_close, + ACTIONS(614), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -15605,11 +16892,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__table_caption_begin, - [3035] = 3, - ACTIONS(670), 1, - sym__div_end, - ACTIONS(538), 10, + ts_builtin_sym_end, + [3035] = 2, + ACTIONS(602), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -15620,7 +16905,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(540), 29, + ACTIONS(604), 30, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -15649,9 +16935,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [3082] = 2, - ACTIONS(620), 10, + sym__table_caption_begin, + [3080] = 2, + ACTIONS(658), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -15662,7 +16948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(622), 30, + ACTIONS(660), 30, sym__block_close, sym__newline, sym__heading_begin, @@ -15693,10 +16979,10 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__table_caption_begin, - [3127] = 3, - ACTIONS(672), 1, - sym__eof_or_newline, - ACTIONS(660), 10, + [3125] = 3, + ACTIONS(696), 1, + sym__div_end, + ACTIONS(678), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -15707,7 +16993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(664), 29, + ACTIONS(676), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -15737,10 +17023,10 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [3174] = 3, - ACTIONS(674), 1, + [3172] = 3, + ACTIONS(698), 1, sym__div_end, - ACTIONS(624), 10, + ACTIONS(620), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -15751,7 +17037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(626), 29, + ACTIONS(622), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -15781,8 +17067,10 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [3221] = 2, - ACTIONS(602), 10, + [3219] = 3, + ACTIONS(700), 1, + sym__code_block_end, + ACTIONS(598), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -15793,7 +17081,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(604), 30, + ACTIONS(596), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -15822,12 +17111,10 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__table_caption_begin, - ts_builtin_sym_end, [3266] = 3, - ACTIONS(676), 1, - sym__code_block_end, - ACTIONS(544), 10, + ACTIONS(702), 1, + sym__div_end, + ACTIONS(678), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -15838,7 +17125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(546), 29, + ACTIONS(676), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -15869,7 +17156,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, sym__footnote_end, [3313] = 2, - ACTIONS(680), 10, + ACTIONS(704), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -15880,7 +17167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(678), 29, + ACTIONS(706), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -15909,9 +17196,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, + sym__footnote_end, [3357] = 2, - ACTIONS(684), 10, + ACTIONS(710), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -15922,7 +17209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(682), 29, + ACTIONS(708), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -15953,7 +17240,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, ts_builtin_sym_end, [3401] = 2, - ACTIONS(688), 10, + ACTIONS(714), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -15964,7 +17251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(686), 29, + ACTIONS(712), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -15995,7 +17282,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, ts_builtin_sym_end, [3445] = 2, - ACTIONS(692), 10, + ACTIONS(718), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -16006,7 +17293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(690), 29, + ACTIONS(716), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -16037,7 +17324,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, ts_builtin_sym_end, [3489] = 2, - ACTIONS(696), 10, + ACTIONS(722), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -16048,7 +17335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(694), 29, + ACTIONS(720), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -16079,7 +17366,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, ts_builtin_sym_end, [3533] = 2, - ACTIONS(700), 10, + ACTIONS(726), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -16090,7 +17377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(698), 29, + ACTIONS(724), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -16121,7 +17408,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, ts_builtin_sym_end, [3577] = 2, - ACTIONS(704), 10, + ACTIONS(730), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -16132,7 +17419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(702), 29, + ACTIONS(728), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -16163,7 +17450,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, ts_builtin_sym_end, [3621] = 2, - ACTIONS(708), 10, + ACTIONS(734), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -16174,7 +17461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(706), 29, + ACTIONS(732), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -16205,7 +17492,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, ts_builtin_sym_end, [3665] = 2, - ACTIONS(712), 10, + ACTIONS(738), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -16216,7 +17503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(710), 29, + ACTIONS(736), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -16247,7 +17534,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, ts_builtin_sym_end, [3709] = 2, - ACTIONS(716), 10, + ACTIONS(742), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -16258,7 +17545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(714), 29, + ACTIONS(740), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -16289,7 +17576,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, ts_builtin_sym_end, [3753] = 2, - ACTIONS(720), 10, + ACTIONS(746), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -16300,7 +17587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(718), 29, + ACTIONS(744), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -16331,7 +17618,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, ts_builtin_sym_end, [3797] = 2, - ACTIONS(724), 10, + ACTIONS(750), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -16342,7 +17629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(722), 29, + ACTIONS(748), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -16373,7 +17660,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, ts_builtin_sym_end, [3841] = 2, - ACTIONS(728), 10, + ACTIONS(754), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -16384,7 +17671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(726), 29, + ACTIONS(752), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -16415,7 +17702,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, ts_builtin_sym_end, [3885] = 2, - ACTIONS(732), 10, + ACTIONS(758), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -16426,7 +17713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(730), 29, + ACTIONS(756), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -16457,7 +17744,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, ts_builtin_sym_end, [3929] = 2, - ACTIONS(736), 10, + ACTIONS(762), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -16468,7 +17755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(734), 29, + ACTIONS(760), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -16499,7 +17786,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, ts_builtin_sym_end, [3973] = 2, - ACTIONS(740), 10, + ACTIONS(766), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -16510,7 +17797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(738), 29, + ACTIONS(764), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -16541,7 +17828,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, ts_builtin_sym_end, [4017] = 2, - ACTIONS(744), 10, + ACTIONS(770), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -16552,7 +17839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(742), 29, + ACTIONS(768), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -16583,7 +17870,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, ts_builtin_sym_end, [4061] = 2, - ACTIONS(748), 10, + ACTIONS(774), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -16594,7 +17881,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(746), 29, + ACTIONS(772), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -16625,7 +17912,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, ts_builtin_sym_end, [4105] = 2, - ACTIONS(752), 10, + ACTIONS(778), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -16636,7 +17923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(750), 29, + ACTIONS(776), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -16667,7 +17954,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, ts_builtin_sym_end, [4149] = 2, - ACTIONS(756), 10, + ACTIONS(782), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -16678,7 +17965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(754), 29, + ACTIONS(780), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -16709,7 +17996,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, ts_builtin_sym_end, [4193] = 2, - ACTIONS(760), 10, + ACTIONS(784), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -16720,7 +18007,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(758), 29, + ACTIONS(786), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -16749,9 +18037,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, [4237] = 2, - ACTIONS(764), 10, + ACTIONS(788), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -16762,7 +18049,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(762), 29, + ACTIONS(790), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -16791,9 +18079,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, [4281] = 2, - ACTIONS(680), 10, + ACTIONS(794), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -16804,8 +18091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(678), 29, - sym__block_close, + ACTIONS(792), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -16834,8 +18120,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, + ts_builtin_sym_end, [4325] = 2, - ACTIONS(688), 10, + ACTIONS(796), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -16846,7 +18133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(686), 29, + ACTIONS(798), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -16877,7 +18164,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, [4369] = 2, - ACTIONS(768), 10, + ACTIONS(800), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -16888,7 +18175,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(766), 29, + ACTIONS(802), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -16917,9 +18205,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, [4413] = 2, - ACTIONS(770), 10, + ACTIONS(804), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -16930,8 +18217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(772), 29, - sym__block_close, + ACTIONS(806), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -16960,8 +18246,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, + sym__footnote_end, [4457] = 2, - ACTIONS(774), 10, + ACTIONS(714), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -16972,7 +18259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(776), 29, + ACTIONS(712), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -17003,7 +18290,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, [4501] = 2, - ACTIONS(778), 10, + ACTIONS(710), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -17014,7 +18301,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(780), 29, + ACTIONS(708), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -17043,9 +18331,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, [4545] = 2, - ACTIONS(770), 10, + ACTIONS(810), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -17056,7 +18343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(772), 29, + ACTIONS(808), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -17085,9 +18372,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, + ts_builtin_sym_end, [4589] = 2, - ACTIONS(684), 10, + ACTIONS(704), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -17098,8 +18385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(682), 29, - sym__block_close, + ACTIONS(706), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -17128,8 +18414,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, + ts_builtin_sym_end, [4633] = 2, - ACTIONS(696), 10, + ACTIONS(722), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -17140,7 +18427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(694), 29, + ACTIONS(720), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -17171,7 +18458,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, [4677] = 2, - ACTIONS(784), 10, + ACTIONS(742), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -17182,7 +18469,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(782), 29, + ACTIONS(740), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -17211,9 +18499,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, [4721] = 2, - ACTIONS(788), 10, + ACTIONS(774), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -17224,7 +18511,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(786), 29, + ACTIONS(772), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -17253,9 +18541,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, [4765] = 2, - ACTIONS(712), 10, + ACTIONS(794), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -17266,7 +18553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(710), 29, + ACTIONS(792), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -17297,7 +18584,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, [4809] = 2, - ACTIONS(756), 10, + ACTIONS(810), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -17308,7 +18595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(754), 29, + ACTIONS(808), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -17339,7 +18626,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, [4853] = 2, - ACTIONS(768), 10, + ACTIONS(704), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -17350,7 +18637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(766), 29, + ACTIONS(706), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -17381,7 +18668,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, [4897] = 2, - ACTIONS(784), 10, + ACTIONS(812), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -17392,7 +18679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(782), 29, + ACTIONS(814), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -17423,7 +18710,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, [4941] = 2, - ACTIONS(788), 10, + ACTIONS(816), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -17434,7 +18721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(786), 29, + ACTIONS(818), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -17465,7 +18752,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, [4985] = 2, - ACTIONS(790), 10, + ACTIONS(820), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -17476,7 +18763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(792), 29, + ACTIONS(822), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -17507,7 +18794,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, [5029] = 2, - ACTIONS(794), 10, + ACTIONS(824), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -17518,7 +18805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(796), 29, + ACTIONS(826), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -17549,7 +18836,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, [5073] = 2, - ACTIONS(798), 10, + ACTIONS(828), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -17560,7 +18847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(800), 29, + ACTIONS(830), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -17591,7 +18878,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, [5117] = 2, - ACTIONS(802), 10, + ACTIONS(832), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -17602,7 +18889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(804), 29, + ACTIONS(834), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -17633,7 +18920,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, [5161] = 2, - ACTIONS(806), 10, + ACTIONS(836), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -17644,7 +18931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(808), 29, + ACTIONS(838), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -17675,7 +18962,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, [5205] = 2, - ACTIONS(810), 10, + ACTIONS(840), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -17686,7 +18973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(812), 29, + ACTIONS(842), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -17717,7 +19004,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, [5249] = 2, - ACTIONS(814), 10, + ACTIONS(844), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -17728,7 +19015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(816), 29, + ACTIONS(846), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -17759,7 +19046,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, [5293] = 2, - ACTIONS(818), 10, + ACTIONS(848), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -17770,7 +19057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(820), 29, + ACTIONS(850), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -17801,7 +19088,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, [5337] = 2, - ACTIONS(822), 10, + ACTIONS(852), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -17812,7 +19099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(824), 29, + ACTIONS(854), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -17843,7 +19130,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, [5381] = 2, - ACTIONS(826), 10, + ACTIONS(856), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -17854,7 +19141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(828), 29, + ACTIONS(858), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -17885,7 +19172,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, [5425] = 2, - ACTIONS(830), 10, + ACTIONS(860), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -17896,7 +19183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(832), 29, + ACTIONS(862), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -17927,7 +19214,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, [5469] = 2, - ACTIONS(834), 10, + ACTIONS(864), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -17938,7 +19225,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(836), 29, + ACTIONS(866), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -17969,7 +19256,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, [5513] = 2, - ACTIONS(838), 10, + ACTIONS(868), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -17980,7 +19267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(840), 29, + ACTIONS(870), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -18011,7 +19298,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, [5557] = 2, - ACTIONS(842), 10, + ACTIONS(812), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -18022,8 +19309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(844), 29, - sym__block_close, + ACTIONS(814), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -18052,8 +19338,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, + ts_builtin_sym_end, [5601] = 2, - ACTIONS(846), 10, + ACTIONS(554), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -18064,7 +19351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(848), 29, + ACTIONS(556), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -18095,7 +19382,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, [5645] = 2, - ACTIONS(850), 10, + ACTIONS(816), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -18106,8 +19393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(852), 29, - sym__block_close, + ACTIONS(818), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -18136,8 +19422,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, + ts_builtin_sym_end, [5689] = 2, - ACTIONS(528), 10, + ACTIONS(796), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -18148,8 +19435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(530), 29, - sym__block_close, + ACTIONS(798), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -18178,8 +19464,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, + sym__footnote_end, [5733] = 2, - ACTIONS(790), 10, + ACTIONS(872), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -18190,7 +19477,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(792), 29, + ACTIONS(874), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -18219,9 +19507,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, [5777] = 2, - ACTIONS(794), 10, + ACTIONS(876), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -18232,7 +19519,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(796), 29, + ACTIONS(878), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -18261,9 +19549,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, [5821] = 2, - ACTIONS(854), 10, + ACTIONS(820), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -18274,8 +19561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(856), 29, - sym__block_close, + ACTIONS(822), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -18304,8 +19590,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, + ts_builtin_sym_end, [5865] = 2, - ACTIONS(858), 10, + ACTIONS(880), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -18316,7 +19603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(860), 29, + ACTIONS(882), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -18347,7 +19634,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, [5909] = 2, - ACTIONS(798), 10, + ACTIONS(824), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -18358,7 +19645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(800), 29, + ACTIONS(826), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -18389,7 +19676,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, ts_builtin_sym_end, [5953] = 2, - ACTIONS(862), 10, + ACTIONS(828), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -18400,8 +19687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(864), 29, - sym__block_close, + ACTIONS(830), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -18430,8 +19716,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, + ts_builtin_sym_end, [5997] = 2, - ACTIONS(866), 10, + ACTIONS(832), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -18442,7 +19729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(868), 29, + ACTIONS(834), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -18471,9 +19758,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, + ts_builtin_sym_end, [6041] = 2, - ACTIONS(802), 10, + ACTIONS(884), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -18484,7 +19771,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(804), 29, + ACTIONS(886), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -18513,9 +19801,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, [6085] = 2, - ACTIONS(806), 10, + ACTIONS(836), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -18526,7 +19813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(808), 29, + ACTIONS(838), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -18557,7 +19844,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, ts_builtin_sym_end, [6129] = 2, - ACTIONS(810), 10, + ACTIONS(840), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -18568,7 +19855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(812), 29, + ACTIONS(842), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -18599,7 +19886,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, ts_builtin_sym_end, [6173] = 2, - ACTIONS(870), 10, + ACTIONS(888), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -18610,7 +19897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(872), 29, + ACTIONS(890), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -18641,7 +19928,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, [6217] = 2, - ACTIONS(814), 10, + ACTIONS(844), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -18652,7 +19939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(816), 29, + ACTIONS(846), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -18683,7 +19970,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, ts_builtin_sym_end, [6261] = 2, - ACTIONS(818), 10, + ACTIONS(848), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -18694,7 +19981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(820), 29, + ACTIONS(850), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -18725,7 +20012,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, ts_builtin_sym_end, [6305] = 2, - ACTIONS(692), 10, + ACTIONS(852), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -18736,8 +20023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(690), 29, - sym__block_close, + ACTIONS(854), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -18766,8 +20052,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, + ts_builtin_sym_end, [6349] = 2, - ACTIONS(822), 10, + ACTIONS(856), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -18778,7 +20065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(824), 29, + ACTIONS(858), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -18809,7 +20096,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, ts_builtin_sym_end, [6393] = 2, - ACTIONS(826), 10, + ACTIONS(860), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -18820,7 +20107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(828), 29, + ACTIONS(862), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -18851,7 +20138,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, ts_builtin_sym_end, [6437] = 2, - ACTIONS(830), 10, + ACTIONS(718), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -18862,7 +20149,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(832), 29, + ACTIONS(716), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -18891,9 +20179,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, [6481] = 2, - ACTIONS(834), 10, + ACTIONS(864), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -18904,7 +20191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(836), 29, + ACTIONS(866), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -18935,7 +20222,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, ts_builtin_sym_end, [6525] = 2, - ACTIONS(838), 10, + ACTIONS(730), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -18946,7 +20233,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(840), 29, + ACTIONS(728), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -18975,9 +20263,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, [6569] = 2, - ACTIONS(700), 10, + ACTIONS(868), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -18988,8 +20275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(698), 29, - sym__block_close, + ACTIONS(870), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -19018,8 +20304,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, + ts_builtin_sym_end, [6613] = 2, - ACTIONS(842), 10, + ACTIONS(892), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -19030,7 +20317,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(844), 29, + ACTIONS(894), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -19059,9 +20347,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, [6657] = 2, - ACTIONS(708), 10, + ACTIONS(734), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -19072,7 +20359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(706), 29, + ACTIONS(732), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -19103,7 +20390,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, [6701] = 2, - ACTIONS(846), 10, + ACTIONS(738), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -19114,7 +20401,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(848), 29, + ACTIONS(736), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -19143,9 +20431,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, [6745] = 2, - ACTIONS(850), 10, + ACTIONS(750), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -19156,7 +20443,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(852), 29, + ACTIONS(748), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -19185,9 +20473,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, [6789] = 2, - ACTIONS(870), 10, + ACTIONS(754), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -19198,7 +20485,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(872), 29, + ACTIONS(752), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -19227,9 +20515,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, [6833] = 2, - ACTIONS(720), 10, + ACTIONS(758), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -19240,7 +20527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(718), 29, + ACTIONS(756), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -19271,7 +20558,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, [6877] = 2, - ACTIONS(724), 10, + ACTIONS(762), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -19282,7 +20569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(722), 29, + ACTIONS(760), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -19313,7 +20600,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, [6921] = 2, - ACTIONS(732), 10, + ACTIONS(766), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -19324,7 +20611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(730), 29, + ACTIONS(764), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -19355,7 +20642,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, [6965] = 2, - ACTIONS(736), 10, + ACTIONS(770), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -19366,7 +20653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(734), 29, + ACTIONS(768), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -19397,7 +20684,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, [7009] = 2, - ACTIONS(740), 10, + ACTIONS(554), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -19408,8 +20695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(738), 29, - sym__block_close, + ACTIONS(556), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -19438,8 +20724,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, + ts_builtin_sym_end, [7053] = 2, - ACTIONS(744), 10, + ACTIONS(778), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -19450,7 +20737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(742), 29, + ACTIONS(776), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -19481,7 +20768,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, [7097] = 2, - ACTIONS(748), 10, + ACTIONS(782), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -19492,7 +20779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(746), 29, + ACTIONS(780), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -19523,7 +20810,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, [7141] = 2, - ACTIONS(752), 10, + ACTIONS(896), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -19534,8 +20821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(750), 29, - sym__block_close, + ACTIONS(898), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -19564,8 +20850,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, + sym__footnote_end, [7185] = 2, - ACTIONS(760), 10, + ACTIONS(714), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -19576,8 +20863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(758), 29, - sym__block_close, + ACTIONS(712), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -19606,8 +20892,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, + sym__footnote_end, [7229] = 2, - ACTIONS(764), 10, + ACTIONS(710), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -19618,8 +20905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(762), 29, - sym__block_close, + ACTIONS(708), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -19648,8 +20934,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, + sym__footnote_end, [7273] = 2, - ACTIONS(684), 10, + ACTIONS(722), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -19660,7 +20947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(682), 29, + ACTIONS(720), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -19691,7 +20978,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, sym__footnote_end, [7317] = 2, - ACTIONS(696), 10, + ACTIONS(742), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -19702,7 +20989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(694), 29, + ACTIONS(740), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -19733,7 +21020,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, sym__footnote_end, [7361] = 2, - ACTIONS(528), 10, + ACTIONS(774), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -19744,7 +21031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(530), 29, + ACTIONS(772), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -19773,9 +21060,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, + sym__footnote_end, [7405] = 2, - ACTIONS(712), 10, + ACTIONS(794), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -19786,7 +21073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(710), 29, + ACTIONS(792), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -19817,7 +21104,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, sym__footnote_end, [7449] = 2, - ACTIONS(756), 10, + ACTIONS(810), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -19828,7 +21115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(754), 29, + ACTIONS(808), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -19859,7 +21146,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, sym__footnote_end, [7493] = 2, - ACTIONS(768), 10, + ACTIONS(812), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -19870,7 +21157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(766), 29, + ACTIONS(814), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -19901,7 +21188,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, sym__footnote_end, [7537] = 2, - ACTIONS(784), 10, + ACTIONS(816), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -19912,7 +21199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(782), 29, + ACTIONS(818), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -19943,7 +21230,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, sym__footnote_end, [7581] = 2, - ACTIONS(788), 10, + ACTIONS(820), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -19954,7 +21241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(786), 29, + ACTIONS(822), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -19985,7 +21272,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, sym__footnote_end, [7625] = 2, - ACTIONS(790), 10, + ACTIONS(824), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -19996,7 +21283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(792), 29, + ACTIONS(826), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -20027,7 +21314,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, sym__footnote_end, [7669] = 2, - ACTIONS(794), 10, + ACTIONS(828), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -20038,7 +21325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(796), 29, + ACTIONS(830), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -20069,7 +21356,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, sym__footnote_end, [7713] = 2, - ACTIONS(798), 10, + ACTIONS(832), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -20080,7 +21367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(800), 29, + ACTIONS(834), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -20111,7 +21398,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, sym__footnote_end, [7757] = 2, - ACTIONS(802), 10, + ACTIONS(836), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -20122,7 +21409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(804), 29, + ACTIONS(838), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -20153,7 +21440,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, sym__footnote_end, [7801] = 2, - ACTIONS(806), 10, + ACTIONS(840), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -20164,7 +21451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(808), 29, + ACTIONS(842), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -20195,7 +21482,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, sym__footnote_end, [7845] = 2, - ACTIONS(810), 10, + ACTIONS(844), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -20206,7 +21493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(812), 29, + ACTIONS(846), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -20237,7 +21524,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, sym__footnote_end, [7889] = 2, - ACTIONS(814), 10, + ACTIONS(848), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -20248,7 +21535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(816), 29, + ACTIONS(850), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -20279,7 +21566,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, sym__footnote_end, [7933] = 2, - ACTIONS(818), 10, + ACTIONS(852), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -20290,7 +21577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(820), 29, + ACTIONS(854), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -20321,7 +21608,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, sym__footnote_end, [7977] = 2, - ACTIONS(822), 10, + ACTIONS(856), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -20332,7 +21619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(824), 29, + ACTIONS(858), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -20363,7 +21650,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, sym__footnote_end, [8021] = 2, - ACTIONS(826), 10, + ACTIONS(860), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -20374,7 +21661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(828), 29, + ACTIONS(862), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -20405,7 +21692,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, sym__footnote_end, [8065] = 2, - ACTIONS(830), 10, + ACTIONS(864), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -20416,7 +21703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(832), 29, + ACTIONS(866), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -20447,7 +21734,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, sym__footnote_end, [8109] = 2, - ACTIONS(834), 10, + ACTIONS(868), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -20458,7 +21745,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(836), 29, + ACTIONS(870), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -20489,7 +21776,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, sym__footnote_end, [8153] = 2, - ACTIONS(838), 10, + ACTIONS(554), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -20500,7 +21787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(840), 29, + ACTIONS(556), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -20531,7 +21818,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, sym__footnote_end, [8197] = 2, - ACTIONS(842), 10, + ACTIONS(872), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -20542,7 +21829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(844), 29, + ACTIONS(874), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -20573,7 +21860,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, sym__footnote_end, [8241] = 2, - ACTIONS(846), 10, + ACTIONS(876), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -20584,7 +21871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(848), 29, + ACTIONS(878), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -20615,7 +21902,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, sym__footnote_end, [8285] = 2, - ACTIONS(850), 10, + ACTIONS(880), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -20626,7 +21913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(852), 29, + ACTIONS(882), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -20657,7 +21944,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, sym__footnote_end, [8329] = 2, - ACTIONS(528), 10, + ACTIONS(884), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -20668,7 +21955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(530), 29, + ACTIONS(886), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -20699,7 +21986,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, sym__footnote_end, [8373] = 2, - ACTIONS(854), 10, + ACTIONS(872), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -20710,7 +21997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(856), 29, + ACTIONS(874), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -20739,9 +22026,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, + ts_builtin_sym_end, [8417] = 2, - ACTIONS(858), 10, + ACTIONS(888), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -20752,7 +22039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(860), 29, + ACTIONS(890), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -20783,7 +22070,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, sym__footnote_end, [8461] = 2, - ACTIONS(862), 10, + ACTIONS(876), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -20794,7 +22081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(864), 29, + ACTIONS(878), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -20823,9 +22110,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, + ts_builtin_sym_end, [8505] = 2, - ACTIONS(870), 10, + ACTIONS(800), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -20836,7 +22123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(872), 29, + ACTIONS(802), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -20865,9 +22152,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, + ts_builtin_sym_end, [8549] = 2, - ACTIONS(692), 10, + ACTIONS(718), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -20878,7 +22165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(690), 29, + ACTIONS(716), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -20909,7 +22196,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, sym__footnote_end, [8593] = 2, - ACTIONS(854), 10, + ACTIONS(730), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -20920,7 +22207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(856), 29, + ACTIONS(728), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -20949,9 +22236,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, + sym__footnote_end, [8637] = 2, - ACTIONS(858), 10, + ACTIONS(804), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -20962,7 +22249,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(860), 29, + ACTIONS(806), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -20991,9 +22279,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, [8681] = 2, - ACTIONS(700), 10, + ACTIONS(892), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -21004,7 +22291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(698), 29, + ACTIONS(894), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -21035,7 +22322,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, sym__footnote_end, [8725] = 2, - ACTIONS(708), 10, + ACTIONS(734), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -21046,7 +22333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(706), 29, + ACTIONS(732), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -21077,7 +22364,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, sym__footnote_end, [8769] = 2, - ACTIONS(716), 10, + ACTIONS(738), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -21088,7 +22375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(714), 29, + ACTIONS(736), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -21119,7 +22406,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, sym__footnote_end, [8813] = 2, - ACTIONS(720), 10, + ACTIONS(750), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -21130,7 +22417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(718), 29, + ACTIONS(748), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -21161,7 +22448,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, sym__footnote_end, [8857] = 2, - ACTIONS(724), 10, + ACTIONS(754), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -21172,7 +22459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(722), 29, + ACTIONS(752), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -21203,7 +22490,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, sym__footnote_end, [8901] = 2, - ACTIONS(774), 10, + ACTIONS(758), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -21214,7 +22501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(776), 29, + ACTIONS(756), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -21243,9 +22530,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, + sym__footnote_end, [8945] = 2, - ACTIONS(732), 10, + ACTIONS(762), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -21256,7 +22543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(730), 29, + ACTIONS(760), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -21287,7 +22574,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, sym__footnote_end, [8989] = 2, - ACTIONS(736), 10, + ACTIONS(766), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -21298,7 +22585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(734), 29, + ACTIONS(764), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -21329,7 +22616,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, sym__footnote_end, [9033] = 2, - ACTIONS(740), 10, + ACTIONS(770), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -21340,7 +22627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(738), 29, + ACTIONS(768), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -21371,7 +22658,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, sym__footnote_end, [9077] = 2, - ACTIONS(744), 10, + ACTIONS(880), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -21382,7 +22669,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(742), 29, + ACTIONS(882), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -21411,9 +22698,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, + ts_builtin_sym_end, [9121] = 2, - ACTIONS(748), 10, + ACTIONS(778), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -21424,7 +22711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(746), 29, + ACTIONS(776), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -21455,7 +22742,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, sym__footnote_end, [9165] = 2, - ACTIONS(752), 10, + ACTIONS(782), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -21466,7 +22753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(750), 29, + ACTIONS(780), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -21497,7 +22784,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, sym__footnote_end, [9209] = 2, - ACTIONS(778), 10, + ACTIONS(896), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -21508,7 +22795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(780), 29, + ACTIONS(898), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -21539,7 +22826,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, [9253] = 2, - ACTIONS(760), 10, + ACTIONS(884), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -21550,7 +22837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(758), 29, + ACTIONS(886), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -21579,9 +22866,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, + ts_builtin_sym_end, [9297] = 2, - ACTIONS(764), 10, + ACTIONS(784), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -21592,7 +22879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(762), 29, + ACTIONS(786), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -21621,9 +22908,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, + ts_builtin_sym_end, [9341] = 2, - ACTIONS(862), 10, + ACTIONS(788), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -21634,7 +22921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(864), 29, + ACTIONS(790), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -21665,7 +22952,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, ts_builtin_sym_end, [9385] = 2, - ACTIONS(866), 10, + ACTIONS(888), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -21676,8 +22963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(868), 29, - sym__block_close, + ACTIONS(890), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -21706,8 +22992,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, + ts_builtin_sym_end, [9429] = 2, - ACTIONS(716), 10, + ACTIONS(892), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -21718,8 +23005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(714), 29, - sym__block_close, + ACTIONS(894), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -21748,12 +23034,13 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, + ts_builtin_sym_end, [9473] = 4, - ACTIONS(878), 1, + ACTIONS(904), 1, sym__block_quote_continuation, - STATE(272), 1, + STATE(279), 1, aux_sym__block_quote_prefix_repeat1, - ACTIONS(874), 10, + ACTIONS(900), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -21764,7 +23051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(876), 26, + ACTIONS(902), 26, sym__block_close, sym__div_begin, sym__code_block_begin, @@ -21792,7 +23079,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, [9520] = 2, - ACTIONS(881), 10, + ACTIONS(907), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -21803,7 +23090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(883), 28, + ACTIONS(909), 28, sym__newline, sym__heading_begin, sym__div_begin, @@ -21833,7 +23120,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, [9563] = 2, - ACTIONS(439), 10, + ACTIONS(443), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -21844,7 +23131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(441), 27, + ACTIONS(445), 27, sym__block_close, sym__div_begin, sym__code_block_begin, @@ -21873,32 +23160,32 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, [9605] = 12, - ACTIONS(887), 1, + ACTIONS(913), 1, anon_sym_RBRACE, - ACTIONS(889), 1, + ACTIONS(915), 1, anon_sym_DOT, - ACTIONS(892), 1, + ACTIONS(918), 1, aux_sym_identifier_token1, - ACTIONS(895), 1, + ACTIONS(921), 1, sym__whitespace1, - ACTIONS(897), 1, + ACTIONS(923), 1, anon_sym_PERCENT, - ACTIONS(900), 1, + ACTIONS(926), 1, sym__id, - STATE(382), 1, + STATE(396), 1, aux_sym_block_attribute_repeat1, - STATE(477), 1, + STATE(495), 1, sym__comment_no_newline, - STATE(1000), 1, + STATE(1131), 1, sym_key, - ACTIONS(902), 2, + ACTIONS(928), 2, sym__eof_or_newline, sym__newline_inline, - STATE(432), 3, + STATE(491), 3, sym_class, sym_identifier, sym_key_value, - ACTIONS(885), 7, + ACTIONS(911), 7, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -21907,32 +23194,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, [9651] = 12, - ACTIONS(889), 1, + ACTIONS(915), 1, anon_sym_DOT, - ACTIONS(892), 1, + ACTIONS(918), 1, aux_sym_identifier_token1, - ACTIONS(895), 1, + ACTIONS(921), 1, sym__whitespace1, - ACTIONS(897), 1, + ACTIONS(923), 1, anon_sym_PERCENT, - ACTIONS(900), 1, + ACTIONS(926), 1, sym__id, - ACTIONS(904), 1, + ACTIONS(930), 1, anon_sym_RBRACE, - STATE(375), 1, + STATE(402), 1, aux_sym_block_attribute_repeat1, - STATE(477), 1, + STATE(495), 1, sym__comment_no_newline, - STATE(1000), 1, + STATE(1131), 1, sym_key, - ACTIONS(902), 2, + ACTIONS(928), 2, sym__eof_or_newline, sym__newline_inline, - STATE(432), 3, + STATE(491), 3, sym_class, sym_identifier, sym_key_value, - ACTIONS(885), 7, + ACTIONS(911), 7, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -21941,32 +23228,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, [9697] = 12, - ACTIONS(889), 1, + ACTIONS(915), 1, anon_sym_DOT, - ACTIONS(892), 1, + ACTIONS(918), 1, aux_sym_identifier_token1, - ACTIONS(895), 1, + ACTIONS(921), 1, sym__whitespace1, - ACTIONS(897), 1, + ACTIONS(923), 1, anon_sym_PERCENT, - ACTIONS(900), 1, + ACTIONS(926), 1, sym__id, - ACTIONS(906), 1, + ACTIONS(932), 1, anon_sym_RBRACE, - STATE(381), 1, + STATE(392), 1, aux_sym_block_attribute_repeat1, - STATE(477), 1, + STATE(495), 1, sym__comment_no_newline, - STATE(1000), 1, + STATE(1131), 1, sym_key, - ACTIONS(902), 2, + ACTIONS(928), 2, sym__eof_or_newline, sym__newline_inline, - STATE(432), 3, + STATE(491), 3, sym_class, sym_identifier, sym_key_value, - ACTIONS(885), 7, + ACTIONS(911), 7, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -21975,32 +23262,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, [9743] = 12, - ACTIONS(889), 1, + ACTIONS(915), 1, anon_sym_DOT, - ACTIONS(892), 1, + ACTIONS(918), 1, aux_sym_identifier_token1, - ACTIONS(895), 1, + ACTIONS(921), 1, sym__whitespace1, - ACTIONS(897), 1, + ACTIONS(923), 1, anon_sym_PERCENT, - ACTIONS(900), 1, + ACTIONS(926), 1, sym__id, - ACTIONS(908), 1, + ACTIONS(934), 1, anon_sym_RBRACE, - STATE(379), 1, + STATE(403), 1, aux_sym_block_attribute_repeat1, - STATE(477), 1, + STATE(495), 1, sym__comment_no_newline, - STATE(1000), 1, + STATE(1131), 1, sym_key, - ACTIONS(902), 2, + ACTIONS(928), 2, sym__eof_or_newline, sym__newline_inline, - STATE(432), 3, + STATE(491), 3, sym_class, sym_identifier, sym_key_value, - ACTIONS(885), 7, + ACTIONS(911), 7, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -22009,32 +23296,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, [9789] = 12, - ACTIONS(889), 1, + ACTIONS(915), 1, anon_sym_DOT, - ACTIONS(892), 1, + ACTIONS(918), 1, aux_sym_identifier_token1, - ACTIONS(895), 1, + ACTIONS(921), 1, sym__whitespace1, - ACTIONS(897), 1, + ACTIONS(923), 1, anon_sym_PERCENT, - ACTIONS(900), 1, + ACTIONS(926), 1, sym__id, - ACTIONS(910), 1, + ACTIONS(936), 1, anon_sym_RBRACE, - STATE(377), 1, + STATE(394), 1, aux_sym_block_attribute_repeat1, - STATE(477), 1, + STATE(495), 1, + sym__comment_no_newline, + STATE(1131), 1, + sym_key, + ACTIONS(928), 2, + sym__eof_or_newline, + sym__newline_inline, + STATE(491), 3, + sym_class, + sym_identifier, + sym_key_value, + ACTIONS(911), 7, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACK_CARET, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + anon_sym_POUND, + [9835] = 12, + ACTIONS(915), 1, + anon_sym_DOT, + ACTIONS(918), 1, + aux_sym_identifier_token1, + ACTIONS(921), 1, + sym__whitespace1, + ACTIONS(923), 1, + anon_sym_PERCENT, + ACTIONS(926), 1, + sym__id, + ACTIONS(938), 1, + anon_sym_RBRACE, + STATE(397), 1, + aux_sym_block_attribute_repeat1, + STATE(495), 1, sym__comment_no_newline, - STATE(1000), 1, + STATE(1131), 1, sym_key, - ACTIONS(902), 2, + ACTIONS(928), 2, sym__eof_or_newline, sym__newline_inline, - STATE(432), 3, + STATE(491), 3, sym_class, sym_identifier, sym_key_value, - ACTIONS(885), 7, + ACTIONS(911), 7, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -22042,26 +23363,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE_DASH, anon_sym_POUND, - [9835] = 11, + [9881] = 11, ACTIONS(31), 1, sym__list_marker_task_begin, - ACTIONS(912), 1, + ACTIONS(940), 1, anon_sym_PIPE, - ACTIONS(914), 1, + ACTIONS(942), 1, anon_sym_LBRACK_CARET, - ACTIONS(916), 1, + ACTIONS(944), 1, sym__block_close, - ACTIONS(918), 1, + ACTIONS(946), 1, sym_list_marker_dash, - ACTIONS(920), 1, + ACTIONS(948), 1, sym_list_marker_star, - ACTIONS(922), 1, + ACTIONS(950), 1, sym_list_marker_plus, - STATE(34), 1, + STATE(54), 1, sym_list_marker_task, - STATE(672), 1, + STATE(713), 1, sym__inline, - STATE(358), 2, + STATE(381), 2, sym__symbol_fallback, aux_sym__inline_repeat1, ACTIONS(13), 8, @@ -22073,26 +23394,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [9877] = 11, + [9923] = 11, ACTIONS(31), 1, sym__list_marker_task_begin, - ACTIONS(912), 1, + ACTIONS(940), 1, anon_sym_PIPE, - ACTIONS(914), 1, + ACTIONS(942), 1, anon_sym_LBRACK_CARET, - ACTIONS(918), 1, + ACTIONS(946), 1, sym_list_marker_dash, - ACTIONS(920), 1, + ACTIONS(948), 1, sym_list_marker_star, - ACTIONS(922), 1, + ACTIONS(950), 1, sym_list_marker_plus, - ACTIONS(924), 1, + ACTIONS(952), 1, sym__block_close, - STATE(34), 1, + STATE(54), 1, sym_list_marker_task, - STATE(672), 1, + STATE(713), 1, sym__inline, - STATE(358), 2, + STATE(381), 2, sym__symbol_fallback, aux_sym__inline_repeat1, ACTIONS(13), 8, @@ -22104,26 +23425,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [9919] = 11, + [9965] = 11, ACTIONS(31), 1, sym__list_marker_task_begin, - ACTIONS(912), 1, + ACTIONS(940), 1, anon_sym_PIPE, - ACTIONS(914), 1, + ACTIONS(942), 1, anon_sym_LBRACK_CARET, - ACTIONS(918), 1, + ACTIONS(946), 1, sym_list_marker_dash, - ACTIONS(920), 1, + ACTIONS(948), 1, sym_list_marker_star, - ACTIONS(922), 1, + ACTIONS(950), 1, sym_list_marker_plus, - ACTIONS(926), 1, + ACTIONS(954), 1, sym__block_close, - STATE(34), 1, + STATE(54), 1, sym_list_marker_task, - STATE(672), 1, + STATE(713), 1, sym__inline, - STATE(358), 2, + STATE(381), 2, sym__symbol_fallback, aux_sym__inline_repeat1, ACTIONS(13), 8, @@ -22135,26 +23456,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [9961] = 11, + [10007] = 11, ACTIONS(31), 1, sym__list_marker_task_begin, - ACTIONS(912), 1, + ACTIONS(940), 1, anon_sym_PIPE, - ACTIONS(914), 1, + ACTIONS(942), 1, anon_sym_LBRACK_CARET, - ACTIONS(918), 1, + ACTIONS(946), 1, sym_list_marker_dash, - ACTIONS(920), 1, + ACTIONS(948), 1, sym_list_marker_star, - ACTIONS(922), 1, + ACTIONS(950), 1, sym_list_marker_plus, - ACTIONS(928), 1, + ACTIONS(956), 1, sym__block_close, - STATE(34), 1, + STATE(54), 1, sym_list_marker_task, - STATE(672), 1, + STATE(713), 1, sym__inline, - STATE(358), 2, + STATE(381), 2, sym__symbol_fallback, aux_sym__inline_repeat1, ACTIONS(13), 8, @@ -22166,26 +23487,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [10003] = 11, + [10049] = 11, ACTIONS(31), 1, sym__list_marker_task_begin, - ACTIONS(912), 1, + ACTIONS(940), 1, anon_sym_PIPE, - ACTIONS(914), 1, + ACTIONS(942), 1, anon_sym_LBRACK_CARET, - ACTIONS(918), 1, + ACTIONS(946), 1, sym_list_marker_dash, - ACTIONS(920), 1, + ACTIONS(948), 1, sym_list_marker_star, - ACTIONS(922), 1, + ACTIONS(950), 1, sym_list_marker_plus, - ACTIONS(930), 1, + ACTIONS(958), 1, sym__block_close, - STATE(34), 1, + STATE(54), 1, sym_list_marker_task, - STATE(672), 1, + STATE(713), 1, sym__inline, - STATE(358), 2, + STATE(381), 2, sym__symbol_fallback, aux_sym__inline_repeat1, ACTIONS(13), 8, @@ -22197,26 +23518,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [10045] = 11, + [10091] = 11, ACTIONS(31), 1, sym__list_marker_task_begin, - ACTIONS(912), 1, + ACTIONS(940), 1, anon_sym_PIPE, - ACTIONS(914), 1, + ACTIONS(942), 1, anon_sym_LBRACK_CARET, - ACTIONS(918), 1, + ACTIONS(946), 1, sym_list_marker_dash, - ACTIONS(920), 1, + ACTIONS(948), 1, sym_list_marker_star, - ACTIONS(922), 1, + ACTIONS(950), 1, sym_list_marker_plus, - ACTIONS(932), 1, + ACTIONS(960), 1, sym__block_close, - STATE(34), 1, + STATE(54), 1, sym_list_marker_task, - STATE(672), 1, + STATE(713), 1, sym__inline, - STATE(358), 2, + STATE(381), 2, sym__symbol_fallback, aux_sym__inline_repeat1, ACTIONS(13), 8, @@ -22228,26 +23549,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [10087] = 11, + [10133] = 11, ACTIONS(31), 1, sym__list_marker_task_begin, - ACTIONS(912), 1, + ACTIONS(940), 1, anon_sym_PIPE, - ACTIONS(914), 1, + ACTIONS(942), 1, anon_sym_LBRACK_CARET, - ACTIONS(918), 1, + ACTIONS(946), 1, sym_list_marker_dash, - ACTIONS(920), 1, + ACTIONS(948), 1, sym_list_marker_star, - ACTIONS(922), 1, + ACTIONS(950), 1, sym_list_marker_plus, - ACTIONS(934), 1, + ACTIONS(962), 1, sym__block_close, - STATE(34), 1, + STATE(54), 1, sym_list_marker_task, - STATE(672), 1, + STATE(713), 1, sym__inline, - STATE(358), 2, + STATE(381), 2, sym__symbol_fallback, aux_sym__inline_repeat1, ACTIONS(13), 8, @@ -22259,26 +23580,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [10129] = 11, + [10175] = 11, ACTIONS(31), 1, sym__list_marker_task_begin, - ACTIONS(912), 1, + ACTIONS(940), 1, anon_sym_PIPE, - ACTIONS(914), 1, + ACTIONS(942), 1, anon_sym_LBRACK_CARET, - ACTIONS(918), 1, + ACTIONS(946), 1, sym_list_marker_dash, - ACTIONS(920), 1, + ACTIONS(948), 1, sym_list_marker_star, - ACTIONS(922), 1, + ACTIONS(950), 1, sym_list_marker_plus, - ACTIONS(936), 1, + ACTIONS(964), 1, sym__block_close, - STATE(34), 1, + STATE(54), 1, sym_list_marker_task, - STATE(672), 1, + STATE(713), 1, sym__inline, - STATE(358), 2, + STATE(381), 2, sym__symbol_fallback, aux_sym__inline_repeat1, ACTIONS(13), 8, @@ -22290,26 +23611,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [10171] = 11, + [10217] = 11, ACTIONS(31), 1, sym__list_marker_task_begin, - ACTIONS(912), 1, + ACTIONS(940), 1, anon_sym_PIPE, - ACTIONS(914), 1, + ACTIONS(942), 1, anon_sym_LBRACK_CARET, - ACTIONS(918), 1, + ACTIONS(946), 1, sym_list_marker_dash, - ACTIONS(920), 1, + ACTIONS(948), 1, sym_list_marker_star, - ACTIONS(922), 1, + ACTIONS(950), 1, sym_list_marker_plus, - ACTIONS(938), 1, + ACTIONS(966), 1, sym__block_close, - STATE(34), 1, + STATE(54), 1, sym_list_marker_task, - STATE(672), 1, + STATE(713), 1, sym__inline, - STATE(358), 2, + STATE(381), 2, sym__symbol_fallback, aux_sym__inline_repeat1, ACTIONS(13), 8, @@ -22321,26 +23642,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [10213] = 11, + [10259] = 11, ACTIONS(31), 1, sym__list_marker_task_begin, - ACTIONS(912), 1, + ACTIONS(940), 1, anon_sym_PIPE, - ACTIONS(914), 1, + ACTIONS(942), 1, anon_sym_LBRACK_CARET, - ACTIONS(918), 1, + ACTIONS(946), 1, sym_list_marker_dash, - ACTIONS(920), 1, + ACTIONS(948), 1, sym_list_marker_star, - ACTIONS(922), 1, + ACTIONS(950), 1, sym_list_marker_plus, - ACTIONS(940), 1, + ACTIONS(968), 1, sym__block_close, - STATE(34), 1, + STATE(54), 1, sym_list_marker_task, - STATE(672), 1, + STATE(713), 1, sym__inline, - STATE(358), 2, + STATE(381), 2, sym__symbol_fallback, aux_sym__inline_repeat1, ACTIONS(13), 8, @@ -22352,27 +23673,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [10255] = 9, - ACTIONS(914), 1, - anon_sym_LBRACK_CARET, + [10301] = 11, + ACTIONS(31), 1, + sym__list_marker_task_begin, + ACTIONS(940), 1, + anon_sym_PIPE, ACTIONS(942), 1, - sym__block_quote_continuation, - STATE(364), 1, - sym__block_quote_prefix, - STATE(374), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(695), 1, + anon_sym_LBRACK_CARET, + ACTIONS(946), 1, + sym_list_marker_dash, + ACTIONS(948), 1, + sym_list_marker_star, + ACTIONS(950), 1, + sym_list_marker_plus, + ACTIONS(970), 1, + sym__block_close, + STATE(54), 1, + sym_list_marker_task, + STATE(713), 1, sym__inline, - STATE(849), 1, - sym__paragraph_content, - STATE(930), 1, - sym__paragraph_inline_content, - STATE(358), 2, + STATE(381), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(13), 9, + ACTIONS(13), 8, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -22380,24 +23704,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [10292] = 10, + [10343] = 11, ACTIONS(31), 1, sym__list_marker_task_begin, - ACTIONS(914), 1, + ACTIONS(940), 1, + anon_sym_PIPE, + ACTIONS(942), 1, anon_sym_LBRACK_CARET, - ACTIONS(918), 1, + ACTIONS(946), 1, sym_list_marker_dash, - ACTIONS(920), 1, + ACTIONS(948), 1, sym_list_marker_star, - ACTIONS(922), 1, + ACTIONS(950), 1, sym_list_marker_plus, - ACTIONS(944), 1, - anon_sym_PIPE, - STATE(34), 1, + ACTIONS(972), 1, + sym__block_close, + STATE(54), 1, sym_list_marker_task, - STATE(672), 1, + STATE(713), 1, sym__inline, - STATE(358), 2, + STATE(381), 2, sym__symbol_fallback, aux_sym__inline_repeat1, ACTIONS(13), 8, @@ -22409,24 +23735,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [10331] = 10, + [10385] = 10, ACTIONS(31), 1, sym__list_marker_task_begin, - ACTIONS(912), 1, - anon_sym_PIPE, - ACTIONS(914), 1, + ACTIONS(942), 1, anon_sym_LBRACK_CARET, - ACTIONS(918), 1, + ACTIONS(946), 1, sym_list_marker_dash, - ACTIONS(920), 1, + ACTIONS(948), 1, sym_list_marker_star, - ACTIONS(922), 1, + ACTIONS(950), 1, sym_list_marker_plus, - STATE(34), 1, + ACTIONS(974), 1, + anon_sym_PIPE, + STATE(54), 1, sym_list_marker_task, - STATE(672), 1, + STATE(713), 1, sym__inline, - STATE(358), 2, + STATE(381), 2, sym__symbol_fallback, aux_sym__inline_repeat1, ACTIONS(13), 8, @@ -22438,24 +23764,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [10370] = 10, + [10424] = 10, ACTIONS(31), 1, sym__list_marker_task_begin, - ACTIONS(914), 1, + ACTIONS(942), 1, anon_sym_LBRACK_CARET, - ACTIONS(918), 1, + ACTIONS(946), 1, sym_list_marker_dash, - ACTIONS(920), 1, + ACTIONS(948), 1, sym_list_marker_star, - ACTIONS(922), 1, + ACTIONS(950), 1, sym_list_marker_plus, - ACTIONS(946), 1, + ACTIONS(976), 1, anon_sym_PIPE, - STATE(34), 1, + STATE(54), 1, sym_list_marker_task, - STATE(672), 1, + STATE(713), 1, sym__inline, - STATE(358), 2, + STATE(381), 2, sym__symbol_fallback, aux_sym__inline_repeat1, ACTIONS(13), 8, @@ -22467,24 +23793,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [10409] = 10, + [10463] = 9, + ACTIONS(942), 1, + anon_sym_LBRACK_CARET, + ACTIONS(978), 1, + sym__block_quote_continuation, + STATE(390), 1, + sym__block_quote_prefix, + STATE(395), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(715), 1, + sym__inline, + STATE(872), 1, + sym__paragraph_content, + STATE(896), 1, + sym__paragraph_inline_content, + STATE(381), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(13), 9, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + anon_sym_POUND, + anon_sym_PERCENT, + [10500] = 10, ACTIONS(31), 1, sym__list_marker_task_begin, - ACTIONS(914), 1, + ACTIONS(942), 1, anon_sym_LBRACK_CARET, - ACTIONS(918), 1, + ACTIONS(946), 1, sym_list_marker_dash, - ACTIONS(920), 1, + ACTIONS(948), 1, sym_list_marker_star, - ACTIONS(922), 1, + ACTIONS(950), 1, sym_list_marker_plus, - ACTIONS(948), 1, + ACTIONS(980), 1, anon_sym_PIPE, - STATE(34), 1, + STATE(54), 1, sym_list_marker_task, - STATE(672), 1, + STATE(713), 1, sym__inline, - STATE(358), 2, + STATE(381), 2, sym__symbol_fallback, aux_sym__inline_repeat1, ACTIONS(13), 8, @@ -22496,24 +23850,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [10448] = 10, + [10539] = 10, ACTIONS(31), 1, sym__list_marker_task_begin, - ACTIONS(914), 1, + ACTIONS(940), 1, + anon_sym_PIPE, + ACTIONS(942), 1, anon_sym_LBRACK_CARET, - ACTIONS(918), 1, + ACTIONS(946), 1, sym_list_marker_dash, - ACTIONS(920), 1, + ACTIONS(948), 1, sym_list_marker_star, - ACTIONS(922), 1, - sym_list_marker_plus, ACTIONS(950), 1, - anon_sym_PIPE, - STATE(34), 1, + sym_list_marker_plus, + STATE(54), 1, sym_list_marker_task, - STATE(672), 1, + STATE(713), 1, sym__inline, - STATE(358), 2, + STATE(381), 2, sym__symbol_fallback, aux_sym__inline_repeat1, ACTIONS(13), 8, @@ -22525,25 +23879,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [10487] = 8, - ACTIONS(954), 1, - anon_sym_NULL, - ACTIONS(956), 1, + [10578] = 10, + ACTIONS(31), 1, + sym__list_marker_task_begin, + ACTIONS(942), 1, anon_sym_LBRACK_CARET, - ACTIONS(958), 1, - sym__table_caption_end, - STATE(311), 1, - aux_sym_table_caption_repeat1, - STATE(376), 1, - sym__inline_line, - STATE(1001), 1, + ACTIONS(946), 1, + sym_list_marker_dash, + ACTIONS(948), 1, + sym_list_marker_star, + ACTIONS(950), 1, + sym_list_marker_plus, + ACTIONS(982), 1, + anon_sym_PIPE, + STATE(54), 1, + sym_list_marker_task, + STATE(713), 1, sym__inline, - STATE(362), 2, + STATE(381), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(952), 9, + ACTIONS(13), 8, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -22551,21 +23908,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [10521] = 4, - ACTIONS(960), 1, - sym__block_quote_continuation, - STATE(297), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(876), 5, - sym__block_close, - sym_list_marker_dash, - sym_list_marker_star, - sym_list_marker_plus, + [10617] = 10, + ACTIONS(31), 1, sym__list_marker_task_begin, - ACTIONS(874), 10, - anon_sym_LBRACK, + ACTIONS(942), 1, + anon_sym_LBRACK_CARET, + ACTIONS(946), 1, + sym_list_marker_dash, + ACTIONS(948), 1, + sym_list_marker_star, + ACTIONS(950), 1, + sym_list_marker_plus, + ACTIONS(984), 1, anon_sym_PIPE, + STATE(54), 1, + sym_list_marker_task, + STATE(713), 1, + sym__inline, + STATE(381), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(13), 8, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + anon_sym_POUND, + anon_sym_PERCENT, + [10656] = 7, + ACTIONS(989), 1, + sym_table_cell_alignment, + ACTIONS(991), 1, anon_sym_LBRACK_CARET, + STATE(933), 1, + sym_table_cell, + STATE(1155), 1, + sym__inline, + ACTIONS(928), 2, + sym__eof_or_newline, + sym__newline_inline, + STATE(407), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(986), 9, + anon_sym_LBRACK, + anon_sym_PIPE, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -22573,23 +23962,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [10547] = 8, - ACTIONS(956), 1, + [10688] = 4, + ACTIONS(998), 1, + sym__block_quote_continuation, + STATE(311), 1, + aux_sym__block_quote_prefix_repeat1, + ACTIONS(996), 5, + sym__block_close, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + ACTIONS(994), 10, + anon_sym_LBRACK, + anon_sym_PIPE, anon_sym_LBRACK_CARET, - ACTIONS(963), 1, + anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + anon_sym_POUND, + anon_sym_PERCENT, + [10714] = 8, + ACTIONS(1002), 1, anon_sym_NULL, - ACTIONS(965), 1, + ACTIONS(1004), 1, + anon_sym_LBRACK_CARET, + ACTIONS(1006), 1, sym__table_caption_end, - STATE(311), 1, + STATE(310), 1, aux_sym_table_caption_repeat1, - STATE(376), 1, + STATE(405), 1, sym__inline_line, - STATE(1001), 1, + STATE(1061), 1, sym__inline, - STATE(362), 2, + STATE(384), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(952), 9, + ACTIONS(1000), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -22599,23 +24010,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [10581] = 8, - ACTIONS(956), 1, - anon_sym_LBRACK_CARET, - ACTIONS(967), 1, + [10748] = 8, + ACTIONS(1011), 1, anon_sym_NULL, - ACTIONS(969), 1, + ACTIONS(1013), 1, + anon_sym_LBRACK_CARET, + ACTIONS(1016), 1, sym__table_caption_end, - STATE(311), 1, + STATE(310), 1, aux_sym_table_caption_repeat1, - STATE(376), 1, + STATE(405), 1, sym__inline_line, - STATE(1001), 1, + STATE(1061), 1, sym__inline, - STATE(362), 2, + STATE(384), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(952), 9, + ACTIONS(1008), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -22625,22 +24036,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [10615] = 7, - ACTIONS(974), 1, - sym_table_cell_alignment, - ACTIONS(976), 1, + [10782] = 4, + ACTIONS(1018), 1, + sym__block_quote_continuation, + STATE(311), 1, + aux_sym__block_quote_prefix_repeat1, + ACTIONS(902), 5, + sym__block_close, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + ACTIONS(900), 10, + anon_sym_LBRACK, + anon_sym_PIPE, anon_sym_LBRACK_CARET, - STATE(759), 1, - sym_table_cell, - STATE(941), 1, + anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + anon_sym_POUND, + anon_sym_PERCENT, + [10808] = 8, + ACTIONS(1004), 1, + anon_sym_LBRACK_CARET, + ACTIONS(1021), 1, + anon_sym_NULL, + ACTIONS(1023), 1, + sym__table_caption_end, + STATE(310), 1, + aux_sym_table_caption_repeat1, + STATE(405), 1, + sym__inline_line, + STATE(1061), 1, sym__inline, - ACTIONS(902), 2, - sym__eof_or_newline, - sym__newline_inline, - STATE(372), 2, + STATE(384), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(971), 9, + ACTIONS(1000), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -22650,22 +24084,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [10647] = 7, - ACTIONS(976), 1, + [10842] = 7, + ACTIONS(991), 1, anon_sym_LBRACK_CARET, - ACTIONS(979), 1, + ACTIONS(1025), 1, sym_table_cell_alignment, - STATE(781), 1, + STATE(926), 1, sym_table_cell, - STATE(941), 1, + STATE(1155), 1, sym__inline, - ACTIONS(902), 2, + ACTIONS(928), 2, sym__eof_or_newline, sym__newline_inline, - STATE(372), 2, + STATE(407), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(971), 9, + ACTIONS(986), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -22675,23 +24109,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [10679] = 8, - ACTIONS(956), 1, + [10874] = 8, + ACTIONS(1004), 1, anon_sym_LBRACK_CARET, - ACTIONS(981), 1, + ACTIONS(1027), 1, anon_sym_NULL, - ACTIONS(983), 1, + ACTIONS(1029), 1, sym__table_caption_end, - STATE(311), 1, + STATE(310), 1, aux_sym_table_caption_repeat1, - STATE(376), 1, + STATE(405), 1, sym__inline_line, - STATE(1001), 1, + STATE(1061), 1, sym__inline, - STATE(362), 2, + STATE(384), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(952), 9, + ACTIONS(1000), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -22701,22 +24135,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [10713] = 7, - ACTIONS(976), 1, + [10908] = 7, + ACTIONS(991), 1, anon_sym_LBRACK_CARET, - ACTIONS(985), 1, + ACTIONS(1031), 1, sym_table_cell_alignment, - STATE(858), 1, + STATE(807), 1, sym_table_cell, - STATE(941), 1, + STATE(1155), 1, sym__inline, - ACTIONS(902), 2, + ACTIONS(928), 2, sym__eof_or_newline, sym__newline_inline, - STATE(372), 2, + STATE(407), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(971), 9, + ACTIONS(986), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -22726,22 +24160,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [10745] = 7, - ACTIONS(976), 1, + [10940] = 8, + ACTIONS(1004), 1, anon_sym_LBRACK_CARET, - ACTIONS(987), 1, - sym_table_cell_alignment, - STATE(865), 1, - sym_table_cell, - STATE(941), 1, + ACTIONS(1033), 1, + anon_sym_NULL, + ACTIONS(1035), 1, + sym__table_caption_end, + STATE(310), 1, + aux_sym_table_caption_repeat1, + STATE(405), 1, + sym__inline_line, + STATE(1061), 1, sym__inline, - ACTIONS(902), 2, - sym__eof_or_newline, - sym__newline_inline, - STATE(372), 2, + STATE(384), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(971), 9, + ACTIONS(1000), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -22751,22 +24186,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [10777] = 7, - ACTIONS(976), 1, + [10974] = 7, + ACTIONS(991), 1, anon_sym_LBRACK_CARET, - ACTIONS(989), 1, + ACTIONS(1037), 1, sym_table_cell_alignment, - STATE(875), 1, + STATE(943), 1, sym_table_cell, - STATE(941), 1, + STATE(1155), 1, sym__inline, - ACTIONS(902), 2, + ACTIONS(928), 2, sym__eof_or_newline, sym__newline_inline, - STATE(372), 2, + STATE(407), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(971), 9, + ACTIONS(986), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -22776,22 +24211,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [10809] = 7, - ACTIONS(976), 1, - anon_sym_LBRACK_CARET, + [11006] = 7, ACTIONS(991), 1, + anon_sym_LBRACK_CARET, + ACTIONS(1039), 1, sym_table_cell_alignment, - STATE(882), 1, + STATE(950), 1, sym_table_cell, - STATE(941), 1, + STATE(1155), 1, sym__inline, - ACTIONS(902), 2, + ACTIONS(928), 2, sym__eof_or_newline, sym__newline_inline, - STATE(372), 2, + STATE(407), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(971), 9, + ACTIONS(986), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -22801,22 +24236,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [10841] = 7, - ACTIONS(976), 1, + [11038] = 7, + ACTIONS(991), 1, anon_sym_LBRACK_CARET, - ACTIONS(993), 1, + ACTIONS(1041), 1, sym_table_cell_alignment, - STATE(890), 1, + STATE(959), 1, sym_table_cell, - STATE(941), 1, + STATE(1155), 1, sym__inline, - ACTIONS(902), 2, + ACTIONS(928), 2, sym__eof_or_newline, sym__newline_inline, - STATE(372), 2, + STATE(407), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(971), 9, + ACTIONS(986), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -22826,22 +24261,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [10873] = 7, - ACTIONS(976), 1, + [11070] = 7, + ACTIONS(991), 1, anon_sym_LBRACK_CARET, - ACTIONS(995), 1, + ACTIONS(1043), 1, sym_table_cell_alignment, - STATE(897), 1, + STATE(966), 1, sym_table_cell, - STATE(941), 1, + STATE(1155), 1, sym__inline, - ACTIONS(902), 2, + ACTIONS(928), 2, sym__eof_or_newline, sym__newline_inline, - STATE(372), 2, + STATE(407), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(971), 9, + ACTIONS(986), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -22851,22 +24286,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [10905] = 7, - ACTIONS(976), 1, + [11102] = 7, + ACTIONS(991), 1, anon_sym_LBRACK_CARET, - ACTIONS(997), 1, + ACTIONS(1045), 1, sym_table_cell_alignment, - STATE(906), 1, + STATE(974), 1, sym_table_cell, - STATE(941), 1, + STATE(1155), 1, sym__inline, - ACTIONS(902), 2, + ACTIONS(928), 2, sym__eof_or_newline, sym__newline_inline, - STATE(372), 2, + STATE(407), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(971), 9, + ACTIONS(986), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -22876,22 +24311,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [10937] = 7, - ACTIONS(976), 1, + [11134] = 7, + ACTIONS(991), 1, anon_sym_LBRACK_CARET, - ACTIONS(999), 1, + ACTIONS(1047), 1, sym_table_cell_alignment, - STATE(913), 1, + STATE(981), 1, sym_table_cell, - STATE(941), 1, + STATE(1155), 1, sym__inline, - ACTIONS(902), 2, + ACTIONS(928), 2, sym__eof_or_newline, sym__newline_inline, - STATE(372), 2, + STATE(407), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(971), 9, + ACTIONS(986), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -22901,23 +24336,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [10969] = 8, - ACTIONS(1004), 1, - anon_sym_NULL, - ACTIONS(1006), 1, + [11166] = 7, + ACTIONS(991), 1, anon_sym_LBRACK_CARET, - ACTIONS(1009), 1, - sym__table_caption_end, - STATE(311), 1, - aux_sym_table_caption_repeat1, - STATE(376), 1, - sym__inline_line, - STATE(1001), 1, + ACTIONS(1049), 1, + sym_table_cell_alignment, + STATE(987), 1, + sym_table_cell, + STATE(1155), 1, sym__inline, - STATE(362), 2, + ACTIONS(928), 2, + sym__eof_or_newline, + sym__newline_inline, + STATE(407), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1001), 9, + ACTIONS(986), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -22927,23 +24361,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11003] = 8, - ACTIONS(956), 1, + [11198] = 7, + ACTIONS(991), 1, anon_sym_LBRACK_CARET, - ACTIONS(1011), 1, - anon_sym_NULL, - ACTIONS(1013), 1, - sym__table_caption_end, - STATE(311), 1, - aux_sym_table_caption_repeat1, - STATE(376), 1, - sym__inline_line, - STATE(1001), 1, + ACTIONS(1051), 1, + sym_table_cell_alignment, + STATE(994), 1, + sym_table_cell, + STATE(1155), 1, sym__inline, - STATE(362), 2, + ACTIONS(928), 2, + sym__eof_or_newline, + sym__newline_inline, + STATE(407), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(952), 9, + ACTIONS(986), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -22953,40 +24386,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11037] = 4, - ACTIONS(1019), 1, - sym__block_quote_continuation, - STATE(297), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(1017), 5, - sym__block_close, - sym_list_marker_dash, - sym_list_marker_star, - sym_list_marker_plus, - sym__list_marker_task_begin, - ACTIONS(1015), 10, - anon_sym_LBRACK, - anon_sym_PIPE, + [11230] = 7, + ACTIONS(991), 1, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - [11063] = 2, - ACTIONS(441), 6, - sym__block_close, - sym_list_marker_dash, - sym_list_marker_star, - sym_list_marker_plus, - sym__list_marker_task_begin, - sym__block_quote_continuation, - ACTIONS(439), 10, + ACTIONS(1053), 1, + sym_table_cell_alignment, + STATE(877), 1, + sym_table_cell, + STATE(1155), 1, + sym__inline, + ACTIONS(928), 2, + sym__eof_or_newline, + sym__newline_inline, + STATE(407), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(986), 9, anon_sym_LBRACK, anon_sym_PIPE, - anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -22994,20 +24411,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11084] = 6, - ACTIONS(1024), 1, + [11262] = 8, + ACTIONS(1004), 1, anon_sym_LBRACK_CARET, - STATE(1068), 1, + ACTIONS(1055), 1, + anon_sym_NULL, + ACTIONS(1057), 1, + sym__table_caption_end, + STATE(310), 1, + aux_sym_table_caption_repeat1, + STATE(405), 1, + sym__inline_line, + STATE(1061), 1, sym__inline, - STATE(1126), 1, - sym_link_label, - ACTIONS(902), 2, - sym__eof_or_newline, - sym__newline_inline, - STATE(367), 2, + STATE(384), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1021), 9, + ACTIONS(1000), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -23017,20 +24437,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11113] = 6, - ACTIONS(1024), 1, + [11296] = 8, + ACTIONS(1004), 1, anon_sym_LBRACK_CARET, - STATE(1068), 1, + ACTIONS(1059), 1, + anon_sym_NULL, + ACTIONS(1061), 1, + sym__table_caption_end, + STATE(310), 1, + aux_sym_table_caption_repeat1, + STATE(405), 1, + sym__inline_line, + STATE(1061), 1, sym__inline, - STATE(1127), 1, - sym_link_label, - ACTIONS(902), 2, - sym__eof_or_newline, - sym__newline_inline, - STATE(367), 2, + STATE(384), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1021), 9, + ACTIONS(1000), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -23040,20 +24463,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11142] = 6, - ACTIONS(1024), 1, + [11330] = 6, + ACTIONS(1066), 1, anon_sym_LBRACK_CARET, - STATE(1055), 1, + STATE(1280), 1, sym_link_label, - STATE(1068), 1, + STATE(1296), 1, sym__inline, - ACTIONS(902), 2, + ACTIONS(928), 2, sym__eof_or_newline, sym__newline_inline, - STATE(367), 2, + STATE(385), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1021), 9, + ACTIONS(1063), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -23063,23 +24486,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11171] = 7, - ACTIONS(914), 1, - anon_sym_LBRACK_CARET, - ACTIONS(942), 1, + [11359] = 2, + ACTIONS(445), 6, + sym__block_close, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, sym__block_quote_continuation, - STATE(365), 1, - sym__block_quote_prefix, - STATE(374), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(764), 1, - sym__inline, - STATE(358), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(13), 9, + ACTIONS(443), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -23087,17 +24505,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11202] = 4, - ACTIONS(1027), 1, + [11380] = 4, + ACTIONS(67), 1, sym__block_quote_continuation, - STATE(319), 1, + STATE(331), 1, aux_sym__block_quote_prefix_repeat1, - ACTIONS(876), 4, + ACTIONS(996), 4, sym_list_marker_dash, sym_list_marker_star, sym_list_marker_plus, sym__list_marker_task_begin, - ACTIONS(874), 10, + ACTIONS(994), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -23108,17 +24526,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11227] = 4, - ACTIONS(67), 1, + [11405] = 4, + ACTIONS(1069), 1, sym__block_quote_continuation, - STATE(319), 1, + STATE(331), 1, aux_sym__block_quote_prefix_repeat1, - ACTIONS(1017), 4, + ACTIONS(902), 4, sym_list_marker_dash, sym_list_marker_star, sym_list_marker_plus, sym__list_marker_task_begin, - ACTIONS(1015), 10, + ACTIONS(900), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -23129,20 +24547,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11252] = 6, - ACTIONS(1024), 1, + [11430] = 7, + ACTIONS(942), 1, anon_sym_LBRACK_CARET, - STATE(1068), 1, + ACTIONS(978), 1, + sym__block_quote_continuation, + STATE(387), 1, + sym__block_quote_prefix, + STATE(395), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(817), 1, sym__inline, - STATE(1124), 1, - sym_link_label, - ACTIONS(902), 2, - sym__eof_or_newline, - sym__newline_inline, - STATE(367), 2, + STATE(381), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1021), 9, + ACTIONS(13), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -23152,20 +24571,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11281] = 6, - ACTIONS(1024), 1, + [11461] = 6, + ACTIONS(1066), 1, anon_sym_LBRACK_CARET, - STATE(1068), 1, + STATE(1296), 1, sym__inline, - STATE(1125), 1, + STATE(1308), 1, sym_link_label, - ACTIONS(902), 2, + ACTIONS(928), 2, sym__eof_or_newline, sym__newline_inline, - STATE(367), 2, + STATE(385), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1021), 9, + ACTIONS(1063), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -23175,19 +24594,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11310] = 6, - ACTIONS(1032), 1, + [11490] = 6, + ACTIONS(1066), 1, anon_sym_LBRACK_CARET, - ACTIONS(1034), 1, - sym__newline, - STATE(941), 1, + STATE(1296), 1, sym__inline, - STATE(990), 1, - sym_table_cell, - STATE(372), 2, + STATE(1309), 1, + sym_link_label, + ACTIONS(928), 2, + sym__eof_or_newline, + sym__newline_inline, + STATE(385), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1030), 9, + ACTIONS(1063), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -23197,17 +24617,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11338] = 2, - ACTIONS(441), 5, - sym_list_marker_dash, - sym_list_marker_star, - sym_list_marker_plus, - sym__list_marker_task_begin, - sym__block_quote_continuation, - ACTIONS(439), 10, + [11519] = 6, + ACTIONS(1066), 1, + anon_sym_LBRACK_CARET, + STATE(1296), 1, + sym__inline, + STATE(1310), 1, + sym_link_label, + ACTIONS(928), 2, + sym__eof_or_newline, + sym__newline_inline, + STATE(385), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(1063), 9, anon_sym_LBRACK, anon_sym_PIPE, - anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -23215,19 +24640,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11358] = 6, - ACTIONS(956), 1, + [11548] = 6, + ACTIONS(1066), 1, anon_sym_LBRACK_CARET, - STATE(298), 1, - aux_sym_table_caption_repeat1, - STATE(376), 1, - sym__inline_line, - STATE(1001), 1, + STATE(1296), 1, sym__inline, - STATE(362), 2, + STATE(1311), 1, + sym_link_label, + ACTIONS(928), 2, + sym__eof_or_newline, + sym__newline_inline, + STATE(385), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(952), 9, + ACTIONS(1063), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -23237,19 +24663,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11386] = 6, - ACTIONS(979), 1, - sym_table_cell_alignment, - ACTIONS(1032), 1, + [11577] = 6, + ACTIONS(1066), 1, anon_sym_LBRACK_CARET, - STATE(781), 1, - sym_table_cell, - STATE(941), 1, + STATE(1296), 1, sym__inline, - STATE(372), 2, + STATE(1312), 1, + sym_link_label, + ACTIONS(928), 2, + sym__eof_or_newline, + sym__newline_inline, + STATE(385), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1030), 9, + ACTIONS(1063), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -23259,19 +24686,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11414] = 6, - ACTIONS(1032), 1, + [11606] = 6, + ACTIONS(1004), 1, anon_sym_LBRACK_CARET, - ACTIONS(1036), 1, - sym__newline, - STATE(941), 1, + STATE(767), 1, + sym__inline_line, + STATE(1111), 1, + sym__heading_content, + STATE(1112), 1, sym__inline, - STATE(990), 1, - sym_table_cell, - STATE(372), 2, + STATE(384), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1030), 9, + ACTIONS(1000), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -23281,19 +24708,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11442] = 6, - ACTIONS(956), 1, + [11634] = 2, + ACTIONS(445), 5, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym__block_quote_continuation, + ACTIONS(443), 10, + anon_sym_LBRACK, + anon_sym_PIPE, anon_sym_LBRACK_CARET, - STATE(724), 1, + anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + anon_sym_POUND, + anon_sym_PERCENT, + [11654] = 6, + ACTIONS(1004), 1, + anon_sym_LBRACK_CARET, + STATE(316), 1, + aux_sym_table_caption_repeat1, + STATE(405), 1, sym__inline_line, - STATE(1029), 1, - sym__heading_content, - STATE(1104), 1, + STATE(1061), 1, sym__inline, - STATE(362), 2, + STATE(384), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(952), 9, + ACTIONS(1000), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -23303,19 +24748,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11470] = 6, - ACTIONS(1032), 1, + [11682] = 6, + ACTIONS(1053), 1, + sym_table_cell_alignment, + ACTIONS(1074), 1, anon_sym_LBRACK_CARET, - ACTIONS(1038), 1, - sym__newline, - STATE(941), 1, + STATE(877), 1, + sym_table_cell, + STATE(1155), 1, sym__inline, - STATE(990), 1, + STATE(407), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(1072), 9, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + anon_sym_POUND, + anon_sym_PERCENT, + [11710] = 6, + ACTIONS(1031), 1, + sym_table_cell_alignment, + ACTIONS(1074), 1, + anon_sym_LBRACK_CARET, + STATE(807), 1, sym_table_cell, - STATE(372), 2, + STATE(1155), 1, + sym__inline, + STATE(407), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1030), 9, + ACTIONS(1072), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -23325,19 +24792,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11498] = 6, - ACTIONS(1032), 1, + [11738] = 6, + ACTIONS(1074), 1, anon_sym_LBRACK_CARET, - ACTIONS(1040), 1, + ACTIONS(1076), 1, sym__newline, - STATE(941), 1, - sym__inline, - STATE(990), 1, + STATE(1049), 1, sym_table_cell, - STATE(372), 2, + STATE(1155), 1, + sym__inline, + STATE(407), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1030), 9, + ACTIONS(1072), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -23347,19 +24814,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11526] = 6, - ACTIONS(1032), 1, + [11766] = 6, + ACTIONS(1074), 1, anon_sym_LBRACK_CARET, - ACTIONS(1042), 1, + ACTIONS(1078), 1, sym__newline, - STATE(941), 1, - sym__inline, - STATE(990), 1, + STATE(1049), 1, sym_table_cell, - STATE(372), 2, + STATE(1155), 1, + sym__inline, + STATE(407), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1030), 9, + ACTIONS(1072), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -23369,19 +24836,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11554] = 6, - ACTIONS(974), 1, - sym_table_cell_alignment, - ACTIONS(1032), 1, + [11794] = 6, + ACTIONS(1074), 1, anon_sym_LBRACK_CARET, - STATE(759), 1, + ACTIONS(1080), 1, + sym__newline, + STATE(1049), 1, sym_table_cell, - STATE(941), 1, + STATE(1155), 1, sym__inline, - STATE(372), 2, + STATE(407), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1030), 9, + ACTIONS(1072), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -23391,19 +24858,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11582] = 6, - ACTIONS(1032), 1, + [11822] = 6, + ACTIONS(1074), 1, anon_sym_LBRACK_CARET, - ACTIONS(1044), 1, + ACTIONS(1082), 1, sym__newline, - STATE(941), 1, - sym__inline, - STATE(990), 1, + STATE(1049), 1, sym_table_cell, - STATE(372), 2, + STATE(1155), 1, + sym__inline, + STATE(407), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1030), 9, + ACTIONS(1072), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -23413,19 +24880,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11610] = 6, - ACTIONS(1032), 1, + [11850] = 6, + ACTIONS(1074), 1, anon_sym_LBRACK_CARET, - ACTIONS(1046), 1, + ACTIONS(1084), 1, sym__newline, - STATE(941), 1, - sym__inline, - STATE(990), 1, + STATE(1049), 1, sym_table_cell, - STATE(372), 2, + STATE(1155), 1, + sym__inline, + STATE(407), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1030), 9, + ACTIONS(1072), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -23435,19 +24902,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11638] = 6, - ACTIONS(1032), 1, + [11878] = 6, + ACTIONS(1074), 1, anon_sym_LBRACK_CARET, - ACTIONS(1048), 1, + ACTIONS(1086), 1, sym__newline, - STATE(941), 1, - sym__inline, - STATE(990), 1, + STATE(1049), 1, sym_table_cell, - STATE(372), 2, + STATE(1155), 1, + sym__inline, + STATE(407), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1030), 9, + ACTIONS(1072), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -23457,19 +24924,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11666] = 6, - ACTIONS(1032), 1, + [11906] = 6, + ACTIONS(1074), 1, anon_sym_LBRACK_CARET, - ACTIONS(1050), 1, + ACTIONS(1088), 1, sym__newline, - STATE(941), 1, - sym__inline, - STATE(990), 1, + STATE(1049), 1, sym_table_cell, - STATE(372), 2, + STATE(1155), 1, + sym__inline, + STATE(407), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1030), 9, + ACTIONS(1072), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -23479,19 +24946,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11694] = 6, - ACTIONS(1032), 1, + [11934] = 6, + ACTIONS(1074), 1, anon_sym_LBRACK_CARET, - ACTIONS(1052), 1, + ACTIONS(1090), 1, sym__newline, - STATE(941), 1, - sym__inline, - STATE(990), 1, + STATE(1049), 1, sym_table_cell, - STATE(372), 2, + STATE(1155), 1, + sym__inline, + STATE(407), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1030), 9, + ACTIONS(1072), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -23501,19 +24968,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11722] = 6, - ACTIONS(1032), 1, + [11962] = 6, + ACTIONS(1074), 1, anon_sym_LBRACK_CARET, - ACTIONS(1054), 1, + ACTIONS(1092), 1, sym__newline, - STATE(941), 1, - sym__inline, - STATE(990), 1, + STATE(1049), 1, sym_table_cell, - STATE(372), 2, + STATE(1155), 1, + sym__inline, + STATE(407), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1030), 9, + ACTIONS(1072), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -23523,19 +24990,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11750] = 6, - ACTIONS(1032), 1, + [11990] = 6, + ACTIONS(1074), 1, anon_sym_LBRACK_CARET, - ACTIONS(1056), 1, + ACTIONS(1094), 1, sym__newline, - STATE(941), 1, - sym__inline, - STATE(990), 1, + STATE(1049), 1, sym_table_cell, - STATE(372), 2, + STATE(1155), 1, + sym__inline, + STATE(407), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1030), 9, + ACTIONS(1072), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -23545,19 +25012,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11778] = 6, - ACTIONS(1032), 1, + [12018] = 6, + ACTIONS(1074), 1, anon_sym_LBRACK_CARET, - ACTIONS(1058), 1, + ACTIONS(1096), 1, sym__newline, - STATE(941), 1, - sym__inline, - STATE(990), 1, + STATE(1049), 1, sym_table_cell, - STATE(372), 2, + STATE(1155), 1, + sym__inline, + STATE(407), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1030), 9, + ACTIONS(1072), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -23567,19 +25034,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11806] = 6, - ACTIONS(956), 1, + [12046] = 6, + ACTIONS(1074), 1, anon_sym_LBRACK_CARET, - STATE(724), 1, - sym__inline_line, - STATE(989), 1, - sym__heading_content, - STATE(1104), 1, + ACTIONS(1098), 1, + sym__newline, + STATE(1049), 1, + sym_table_cell, + STATE(1155), 1, sym__inline, - STATE(362), 2, + STATE(407), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(952), 9, + ACTIONS(1072), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -23589,19 +25056,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11834] = 6, - ACTIONS(956), 1, + [12074] = 6, + ACTIONS(1074), 1, anon_sym_LBRACK_CARET, - STATE(299), 1, - aux_sym_table_caption_repeat1, - STATE(376), 1, - sym__inline_line, - STATE(1001), 1, + ACTIONS(1100), 1, + sym__newline, + STATE(1049), 1, + sym_table_cell, + STATE(1155), 1, sym__inline, - STATE(362), 2, + STATE(407), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(952), 9, + ACTIONS(1072), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -23611,19 +25078,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11862] = 6, - ACTIONS(985), 1, - sym_table_cell_alignment, - ACTIONS(1032), 1, + [12102] = 6, + ACTIONS(1074), 1, anon_sym_LBRACK_CARET, - STATE(858), 1, + ACTIONS(1102), 1, + sym__newline, + STATE(1049), 1, sym_table_cell, - STATE(941), 1, + STATE(1155), 1, sym__inline, - STATE(372), 2, + STATE(407), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1030), 9, + ACTIONS(1072), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -23633,19 +25100,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11890] = 6, - ACTIONS(987), 1, - sym_table_cell_alignment, - ACTIONS(1032), 1, + [12130] = 6, + ACTIONS(1074), 1, anon_sym_LBRACK_CARET, - STATE(865), 1, + ACTIONS(1104), 1, + sym__newline, + STATE(1049), 1, sym_table_cell, - STATE(941), 1, + STATE(1155), 1, sym__inline, - STATE(372), 2, + STATE(407), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1030), 9, + ACTIONS(1072), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -23655,19 +25122,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11918] = 6, - ACTIONS(956), 1, + [12158] = 6, + ACTIONS(1004), 1, anon_sym_LBRACK_CARET, - STATE(724), 1, + STATE(767), 1, sym__inline_line, - STATE(1026), 1, + STATE(1050), 1, sym__heading_content, - STATE(1104), 1, + STATE(1112), 1, sym__inline, - STATE(362), 2, + STATE(384), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(952), 9, + ACTIONS(1000), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -23677,19 +25144,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11946] = 6, - ACTIONS(956), 1, + [12186] = 6, + ACTIONS(1004), 1, anon_sym_LBRACK_CARET, - STATE(312), 1, + STATE(327), 1, aux_sym_table_caption_repeat1, - STATE(376), 1, + STATE(405), 1, sym__inline_line, - STATE(1001), 1, + STATE(1061), 1, sym__inline, - STATE(362), 2, + STATE(384), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(952), 9, + ACTIONS(1000), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -23699,19 +25166,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11974] = 6, - ACTIONS(989), 1, + [12214] = 6, + ACTIONS(1025), 1, sym_table_cell_alignment, - ACTIONS(1032), 1, + ACTIONS(1074), 1, anon_sym_LBRACK_CARET, - STATE(875), 1, + STATE(926), 1, sym_table_cell, - STATE(941), 1, + STATE(1155), 1, sym__inline, - STATE(372), 2, + STATE(407), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1030), 9, + ACTIONS(1072), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -23721,19 +25188,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [12002] = 6, - ACTIONS(991), 1, + [12242] = 6, + ACTIONS(989), 1, sym_table_cell_alignment, - ACTIONS(1032), 1, + ACTIONS(1074), 1, anon_sym_LBRACK_CARET, - STATE(882), 1, + STATE(933), 1, sym_table_cell, - STATE(941), 1, + STATE(1155), 1, sym__inline, - STATE(372), 2, + STATE(407), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1030), 9, + ACTIONS(1072), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -23743,19 +25210,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [12030] = 6, - ACTIONS(956), 1, + [12270] = 6, + ACTIONS(1004), 1, anon_sym_LBRACK_CARET, - STATE(724), 1, + STATE(767), 1, sym__inline_line, - STATE(1002), 1, - sym__heading_content, - STATE(1104), 1, + STATE(1112), 1, sym__inline, - STATE(362), 2, + STATE(1292), 1, + sym__heading_content, + STATE(384), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(952), 9, + ACTIONS(1000), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -23765,19 +25232,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [12058] = 6, - ACTIONS(956), 1, + [12298] = 6, + ACTIONS(1004), 1, anon_sym_LBRACK_CARET, - STATE(302), 1, + STATE(309), 1, aux_sym_table_caption_repeat1, - STATE(376), 1, + STATE(405), 1, sym__inline_line, - STATE(1001), 1, + STATE(1061), 1, sym__inline, - STATE(362), 2, + STATE(384), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(952), 9, + ACTIONS(1000), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -23787,19 +25254,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [12086] = 6, - ACTIONS(993), 1, + [12326] = 6, + ACTIONS(1037), 1, sym_table_cell_alignment, - ACTIONS(1032), 1, + ACTIONS(1074), 1, anon_sym_LBRACK_CARET, - STATE(890), 1, + STATE(943), 1, sym_table_cell, - STATE(941), 1, + STATE(1155), 1, sym__inline, - STATE(372), 2, + STATE(407), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1030), 9, + ACTIONS(1072), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -23809,19 +25276,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [12114] = 6, - ACTIONS(995), 1, + [12354] = 6, + ACTIONS(1039), 1, sym_table_cell_alignment, - ACTIONS(1032), 1, + ACTIONS(1074), 1, anon_sym_LBRACK_CARET, - STATE(897), 1, + STATE(950), 1, sym_table_cell, - STATE(941), 1, + STATE(1155), 1, sym__inline, - STATE(372), 2, + STATE(407), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1030), 9, + ACTIONS(1072), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -23831,19 +25298,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [12142] = 6, - ACTIONS(1032), 1, + [12382] = 6, + ACTIONS(1004), 1, anon_sym_LBRACK_CARET, - ACTIONS(1060), 1, - sym__newline, - STATE(941), 1, + STATE(767), 1, + sym__inline_line, + STATE(1112), 1, sym__inline, - STATE(990), 1, - sym_table_cell, - STATE(372), 2, + STATE(1145), 1, + sym__heading_content, + STATE(384), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1030), 9, + ACTIONS(1000), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -23853,19 +25320,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [12170] = 6, - ACTIONS(956), 1, + [12410] = 6, + ACTIONS(1004), 1, anon_sym_LBRACK_CARET, - STATE(296), 1, + STATE(314), 1, aux_sym_table_caption_repeat1, - STATE(376), 1, + STATE(405), 1, sym__inline_line, - STATE(1001), 1, + STATE(1061), 1, sym__inline, - STATE(362), 2, + STATE(384), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(952), 9, + ACTIONS(1000), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -23875,19 +25342,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [12198] = 6, - ACTIONS(997), 1, + [12438] = 6, + ACTIONS(1041), 1, sym_table_cell_alignment, - ACTIONS(1032), 1, + ACTIONS(1074), 1, anon_sym_LBRACK_CARET, - STATE(906), 1, + STATE(959), 1, sym_table_cell, - STATE(941), 1, + STATE(1155), 1, sym__inline, - STATE(372), 2, + STATE(407), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1030), 9, + ACTIONS(1072), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -23897,19 +25364,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [12226] = 6, - ACTIONS(999), 1, + [12466] = 6, + ACTIONS(1043), 1, sym_table_cell_alignment, - ACTIONS(1032), 1, + ACTIONS(1074), 1, anon_sym_LBRACK_CARET, - STATE(913), 1, + STATE(966), 1, sym_table_cell, - STATE(941), 1, + STATE(1155), 1, sym__inline, - STATE(372), 2, + STATE(407), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1030), 9, + ACTIONS(1072), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -23919,19 +25386,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [12254] = 6, - ACTIONS(1032), 1, + [12494] = 6, + ACTIONS(1004), 1, anon_sym_LBRACK_CARET, - ACTIONS(1062), 1, - sym__newline, - STATE(941), 1, + STATE(767), 1, + sym__inline_line, + STATE(1112), 1, sym__inline, - STATE(990), 1, - sym_table_cell, - STATE(372), 2, + STATE(1251), 1, + sym__heading_content, + STATE(384), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1030), 9, + ACTIONS(1000), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -23941,16 +25408,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [12282] = 4, - ACTIONS(914), 1, + [12522] = 6, + ACTIONS(1004), 1, anon_sym_LBRACK_CARET, - ACTIONS(1066), 2, - sym__eof_or_newline, - sym__newline_inline, - STATE(360), 2, + STATE(312), 1, + aux_sym_table_caption_repeat1, + STATE(405), 1, + sym__inline_line, + STATE(1061), 1, + sym__inline, + STATE(384), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1064), 9, + ACTIONS(1000), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -23960,17 +25430,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [12305] = 5, - ACTIONS(1032), 1, + [12550] = 6, + ACTIONS(1045), 1, + sym_table_cell_alignment, + ACTIONS(1074), 1, anon_sym_LBRACK_CARET, - STATE(941), 1, - sym__inline, - STATE(990), 1, + STATE(974), 1, sym_table_cell, - STATE(372), 2, + STATE(1155), 1, + sym__inline, + STATE(407), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1030), 9, + ACTIONS(1072), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -23980,16 +25452,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [12330] = 4, - ACTIONS(1071), 1, + [12578] = 6, + ACTIONS(1047), 1, + sym_table_cell_alignment, + ACTIONS(1074), 1, anon_sym_LBRACK_CARET, - ACTIONS(1074), 2, - sym__eof_or_newline, - sym__newline_inline, - STATE(360), 2, + STATE(981), 1, + sym_table_cell, + STATE(1155), 1, + sym__inline, + STATE(407), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1068), 9, + ACTIONS(1072), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -23999,17 +25474,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [12353] = 5, - ACTIONS(956), 1, + [12606] = 6, + ACTIONS(1004), 1, anon_sym_LBRACK_CARET, - STATE(773), 1, + STATE(326), 1, + aux_sym_table_caption_repeat1, + STATE(405), 1, sym__inline_line, - STATE(1104), 1, + STATE(1061), 1, sym__inline, - STATE(362), 2, + STATE(384), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(952), 9, + ACTIONS(1000), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -24019,15 +25496,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [12378] = 4, - ACTIONS(956), 1, + [12634] = 6, + ACTIONS(1049), 1, + sym_table_cell_alignment, + ACTIONS(1074), 1, anon_sym_LBRACK_CARET, - ACTIONS(1066), 1, - sym__eof_or_newline, - STATE(363), 2, + STATE(987), 1, + sym_table_cell, + STATE(1155), 1, + sym__inline, + STATE(407), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1076), 9, + ACTIONS(1072), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -24037,15 +25518,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [12400] = 4, + [12662] = 6, + ACTIONS(1051), 1, + sym_table_cell_alignment, ACTIONS(1074), 1, - sym__eof_or_newline, - ACTIONS(1081), 1, anon_sym_LBRACK_CARET, - STATE(363), 2, + STATE(994), 1, + sym_table_cell, + STATE(1155), 1, + sym__inline, + STATE(407), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1078), 9, + ACTIONS(1072), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -24055,15 +25540,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [12422] = 4, - ACTIONS(914), 1, + [12690] = 6, + ACTIONS(1074), 1, anon_sym_LBRACK_CARET, - STATE(672), 1, + ACTIONS(1106), 1, + sym__newline, + STATE(1049), 1, + sym_table_cell, + STATE(1155), 1, sym__inline, - STATE(358), 2, + STATE(407), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(13), 9, + ACTIONS(1072), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -24073,15 +25562,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [12444] = 4, - ACTIONS(914), 1, + [12718] = 6, + ACTIONS(1074), 1, anon_sym_LBRACK_CARET, - STATE(810), 1, + ACTIONS(1108), 1, + sym__newline, + STATE(1049), 1, + sym_table_cell, + STATE(1155), 1, sym__inline, - STATE(358), 2, + STATE(407), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(13), 9, + ACTIONS(1072), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -24091,15 +25584,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [12466] = 4, - ACTIONS(1087), 1, - anon_sym_RBRACK, - ACTIONS(1089), 1, + [12746] = 6, + ACTIONS(1074), 1, anon_sym_LBRACK_CARET, - STATE(366), 2, + ACTIONS(1110), 1, + sym__newline, + STATE(1049), 1, + sym_table_cell, + STATE(1155), 1, + sym__inline, + STATE(407), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1084), 9, + ACTIONS(1072), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -24109,15 +25606,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [12488] = 4, - ACTIONS(1094), 1, - anon_sym_RBRACK, - ACTIONS(1096), 1, + [12774] = 5, + ACTIONS(1004), 1, anon_sym_LBRACK_CARET, - STATE(366), 2, + STATE(831), 1, + sym__inline_line, + STATE(1112), 1, + sym__inline, + STATE(384), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1092), 9, + ACTIONS(1000), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -24127,39 +25626,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [12510] = 10, - ACTIONS(480), 1, - sym__block_quote_continuation, - ACTIONS(1098), 1, - anon_sym_PIPE, - ACTIONS(1100), 1, - sym__newline, - ACTIONS(1102), 1, - sym__table_caption_begin, - STATE(389), 1, - sym_table_row, - STATE(668), 1, - sym_table_caption, - STATE(720), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(1075), 1, - sym__block_quote_prefix, - ACTIONS(476), 2, - sym__list_item_continuation, - sym__list_item_end, - STATE(378), 3, - sym__table_content, - sym_table_separator, - aux_sym_table_repeat1, - [12544] = 3, - ACTIONS(1104), 1, - sym__block_quote_continuation, - STATE(369), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(874), 10, + [12799] = 4, + ACTIONS(942), 1, + anon_sym_LBRACK_CARET, + ACTIONS(1114), 2, + sym__eof_or_newline, + sym__newline_inline, + STATE(383), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(1112), 9, anon_sym_LBRACK, anon_sym_PIPE, - anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -24167,14 +25645,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [12563] = 2, - ACTIONS(1109), 1, - sym__table_caption_end, - ACTIONS(1107), 11, + [12822] = 5, + ACTIONS(1074), 1, + anon_sym_LBRACK_CARET, + STATE(1049), 1, + sym_table_cell, + STATE(1155), 1, + sym__inline, + STATE(407), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(1072), 9, anon_sym_LBRACK, anon_sym_PIPE, - anon_sym_NULL, - anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -24182,13 +25665,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [12580] = 3, - ACTIONS(1114), 1, + [12847] = 4, + ACTIONS(1119), 1, anon_sym_LBRACK_CARET, - STATE(371), 2, + ACTIONS(1122), 2, + sym__eof_or_newline, + sym__newline_inline, + STATE(383), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1111), 9, + ACTIONS(1116), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -24198,16 +25684,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [12599] = 4, - ACTIONS(1032), 1, + [12870] = 4, + ACTIONS(1004), 1, anon_sym_LBRACK_CARET, - ACTIONS(1094), 1, - anon_sym_PIPE, - STATE(371), 2, - sym__symbol_fallback, + ACTIONS(1114), 1, + sym__eof_or_newline, + STATE(389), 2, + sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1117), 8, + ACTIONS(1124), 9, anon_sym_LBRACK, + anon_sym_PIPE, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -24215,14 +25702,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [12620] = 2, - ACTIONS(1121), 2, - sym__eof_or_newline, - sym__newline_inline, - ACTIONS(1119), 10, + [12892] = 4, + ACTIONS(1128), 1, + anon_sym_RBRACK, + ACTIONS(1130), 1, + anon_sym_LBRACK_CARET, + STATE(388), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(1126), 9, anon_sym_LBRACK, anon_sym_PIPE, - anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -24230,15 +25720,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [12637] = 3, - ACTIONS(942), 1, + [12914] = 10, + ACTIONS(506), 1, sym__block_quote_continuation, - STATE(369), 1, + ACTIONS(1132), 1, + anon_sym_PIPE, + ACTIONS(1134), 1, + sym__newline, + ACTIONS(1136), 1, + sym__table_caption_begin, + STATE(414), 1, + sym_table_row, + STATE(760), 1, + sym_table_caption, + STATE(762), 1, aux_sym__block_quote_prefix_repeat1, - ACTIONS(1015), 10, + STATE(1267), 1, + sym__block_quote_prefix, + ACTIONS(498), 2, + sym__list_item_continuation, + sym__list_item_end, + STATE(398), 3, + sym__table_content, + sym_table_separator, + aux_sym_table_repeat1, + [12948] = 4, + ACTIONS(942), 1, + anon_sym_LBRACK_CARET, + STATE(864), 1, + sym__inline, + STATE(381), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(13), 9, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + anon_sym_POUND, + anon_sym_PERCENT, + [12970] = 4, + ACTIONS(1141), 1, + anon_sym_RBRACK, + ACTIONS(1143), 1, + anon_sym_LBRACK_CARET, + STATE(388), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(1138), 9, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + anon_sym_POUND, + anon_sym_PERCENT, + [12992] = 4, + ACTIONS(1122), 1, + sym__eof_or_newline, + ACTIONS(1149), 1, + anon_sym_LBRACK_CARET, + STATE(389), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(1146), 9, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + anon_sym_POUND, + anon_sym_PERCENT, + [13014] = 4, + ACTIONS(942), 1, anon_sym_LBRACK_CARET, + STATE(713), 1, + sym__inline, + STATE(381), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(13), 9, + anon_sym_LBRACK, + anon_sym_PIPE, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -24246,36 +25816,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [12656] = 10, - ACTIONS(895), 1, + [13036] = 10, + ACTIONS(498), 1, + sym__block_close, + ACTIONS(506), 1, + sym__block_quote_continuation, + ACTIONS(1152), 1, + anon_sym_PIPE, + ACTIONS(1154), 1, + sym__newline, + ACTIONS(1156), 1, + sym__table_caption_begin, + STATE(433), 1, + sym_table_row, + STATE(762), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(960), 1, + sym_table_caption, + STATE(1253), 1, + sym__block_quote_prefix, + STATE(410), 3, + sym__table_content, + sym_table_separator, + aux_sym_table_repeat1, + [13069] = 10, + ACTIONS(921), 1, sym__whitespace1, - ACTIONS(1123), 1, + ACTIONS(1158), 1, anon_sym_RBRACE, - ACTIONS(1125), 1, + ACTIONS(1160), 1, anon_sym_DOT, - ACTIONS(1127), 1, + ACTIONS(1162), 1, aux_sym_identifier_token1, - ACTIONS(1129), 1, + ACTIONS(1164), 1, anon_sym_PERCENT, - ACTIONS(1131), 1, + ACTIONS(1166), 1, sym__id, - STATE(383), 1, + STATE(399), 1, aux_sym_block_attribute_repeat1, - STATE(477), 1, + STATE(495), 1, sym__comment_no_newline, - STATE(1000), 1, + STATE(1131), 1, sym_key, - STATE(432), 3, + STATE(491), 3, sym_class, sym_identifier, sym_key_value, - [12689] = 2, - ACTIONS(1135), 1, - sym__table_caption_end, - ACTIONS(1133), 11, + [13102] = 2, + ACTIONS(1170), 2, + sym__eof_or_newline, + sym__newline_inline, + ACTIONS(1168), 10, anon_sym_LBRACK, anon_sym_PIPE, - anon_sym_NULL, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -24284,171 +25877,275 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [12706] = 10, - ACTIONS(895), 1, + [13119] = 10, + ACTIONS(921), 1, sym__whitespace1, - ACTIONS(1125), 1, + ACTIONS(1160), 1, anon_sym_DOT, - ACTIONS(1127), 1, + ACTIONS(1162), 1, aux_sym_identifier_token1, - ACTIONS(1129), 1, + ACTIONS(1164), 1, anon_sym_PERCENT, - ACTIONS(1131), 1, + ACTIONS(1166), 1, sym__id, - ACTIONS(1137), 1, + ACTIONS(1172), 1, anon_sym_RBRACE, - STATE(383), 1, + STATE(399), 1, aux_sym_block_attribute_repeat1, - STATE(477), 1, + STATE(495), 1, sym__comment_no_newline, - STATE(1000), 1, + STATE(1131), 1, sym_key, - STATE(432), 3, + STATE(491), 3, sym_class, sym_identifier, sym_key_value, - [12739] = 7, - ACTIONS(503), 1, + [13152] = 3, + ACTIONS(978), 1, sym__block_quote_continuation, - ACTIONS(1139), 1, - anon_sym_PIPE, - STATE(389), 1, - sym_table_row, - STATE(720), 1, + STATE(400), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1075), 1, - sym__block_quote_prefix, - STATE(378), 3, - sym__table_content, - sym_table_separator, - aux_sym_table_repeat1, - ACTIONS(501), 4, - sym__newline, - sym__list_item_continuation, - sym__list_item_end, - sym__table_caption_begin, - [12766] = 10, - ACTIONS(895), 1, + ACTIONS(994), 10, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACK_CARET, + anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + anon_sym_POUND, + anon_sym_PERCENT, + [13171] = 10, + ACTIONS(921), 1, sym__whitespace1, - ACTIONS(1125), 1, + ACTIONS(1160), 1, anon_sym_DOT, - ACTIONS(1127), 1, + ACTIONS(1162), 1, aux_sym_identifier_token1, - ACTIONS(1129), 1, + ACTIONS(1164), 1, anon_sym_PERCENT, - ACTIONS(1131), 1, + ACTIONS(1166), 1, sym__id, - ACTIONS(1142), 1, + ACTIONS(1174), 1, anon_sym_RBRACE, - STATE(383), 1, + STATE(399), 1, aux_sym_block_attribute_repeat1, - STATE(477), 1, + STATE(495), 1, sym__comment_no_newline, - STATE(1000), 1, + STATE(1131), 1, sym_key, - STATE(432), 3, + STATE(491), 3, sym_class, sym_identifier, sym_key_value, - [12799] = 10, - ACTIONS(476), 1, - sym__block_close, - ACTIONS(480), 1, + [13204] = 10, + ACTIONS(921), 1, + sym__whitespace1, + ACTIONS(1160), 1, + anon_sym_DOT, + ACTIONS(1162), 1, + aux_sym_identifier_token1, + ACTIONS(1164), 1, + anon_sym_PERCENT, + ACTIONS(1166), 1, + sym__id, + ACTIONS(1176), 1, + anon_sym_RBRACE, + STATE(399), 1, + aux_sym_block_attribute_repeat1, + STATE(495), 1, + sym__comment_no_newline, + STATE(1131), 1, + sym_key, + STATE(491), 3, + sym_class, + sym_identifier, + sym_key_value, + [13237] = 7, + ACTIONS(529), 1, sym__block_quote_continuation, - ACTIONS(1144), 1, + ACTIONS(1178), 1, anon_sym_PIPE, - ACTIONS(1146), 1, - sym__newline, - ACTIONS(1148), 1, - sym__table_caption_begin, - STATE(405), 1, + STATE(414), 1, sym_table_row, - STATE(720), 1, + STATE(762), 1, aux_sym__block_quote_prefix_repeat1, - STATE(925), 1, - sym_table_caption, - STATE(1082), 1, + STATE(1267), 1, sym__block_quote_prefix, - STATE(387), 3, + STATE(398), 3, sym__table_content, sym_table_separator, aux_sym_table_repeat1, - [12832] = 10, - ACTIONS(895), 1, - sym__whitespace1, - ACTIONS(1125), 1, + ACTIONS(522), 4, + sym__newline, + sym__list_item_continuation, + sym__list_item_end, + sym__table_caption_begin, + [13264] = 10, + ACTIONS(1181), 1, + anon_sym_RBRACE, + ACTIONS(1183), 1, anon_sym_DOT, - ACTIONS(1127), 1, + ACTIONS(1186), 1, aux_sym_identifier_token1, - ACTIONS(1129), 1, + ACTIONS(1189), 1, + sym__whitespace1, + ACTIONS(1192), 1, anon_sym_PERCENT, - ACTIONS(1131), 1, + ACTIONS(1195), 1, sym__id, - ACTIONS(1150), 1, - anon_sym_RBRACE, - STATE(383), 1, + STATE(399), 1, aux_sym_block_attribute_repeat1, - STATE(477), 1, + STATE(495), 1, sym__comment_no_newline, - STATE(1000), 1, + STATE(1131), 1, sym_key, - STATE(432), 3, + STATE(491), 3, sym_class, sym_identifier, sym_key_value, - [12865] = 10, - ACTIONS(895), 1, + [13297] = 3, + ACTIONS(1198), 1, + sym__block_quote_continuation, + STATE(400), 1, + aux_sym__block_quote_prefix_repeat1, + ACTIONS(900), 10, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACK_CARET, + anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + anon_sym_POUND, + anon_sym_PERCENT, + [13316] = 2, + ACTIONS(1203), 1, + sym__table_caption_end, + ACTIONS(1201), 11, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_NULL, + anon_sym_LBRACK_CARET, + anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + anon_sym_POUND, + anon_sym_PERCENT, + [13333] = 10, + ACTIONS(921), 1, sym__whitespace1, - ACTIONS(1125), 1, + ACTIONS(1160), 1, anon_sym_DOT, - ACTIONS(1127), 1, + ACTIONS(1162), 1, aux_sym_identifier_token1, - ACTIONS(1129), 1, + ACTIONS(1164), 1, anon_sym_PERCENT, - ACTIONS(1131), 1, + ACTIONS(1166), 1, sym__id, - ACTIONS(1152), 1, + ACTIONS(1205), 1, anon_sym_RBRACE, - STATE(383), 1, + STATE(399), 1, aux_sym_block_attribute_repeat1, - STATE(477), 1, + STATE(495), 1, sym__comment_no_newline, - STATE(1000), 1, + STATE(1131), 1, sym_key, - STATE(432), 3, + STATE(491), 3, sym_class, sym_identifier, sym_key_value, - [12898] = 10, - ACTIONS(1154), 1, - anon_sym_RBRACE, - ACTIONS(1156), 1, + [13366] = 10, + ACTIONS(921), 1, + sym__whitespace1, + ACTIONS(1160), 1, anon_sym_DOT, - ACTIONS(1159), 1, - aux_sym_identifier_token1, ACTIONS(1162), 1, - sym__whitespace1, - ACTIONS(1165), 1, + aux_sym_identifier_token1, + ACTIONS(1164), 1, anon_sym_PERCENT, - ACTIONS(1168), 1, + ACTIONS(1166), 1, sym__id, - STATE(383), 1, + ACTIONS(1207), 1, + anon_sym_RBRACE, + STATE(399), 1, aux_sym_block_attribute_repeat1, - STATE(477), 1, + STATE(495), 1, sym__comment_no_newline, - STATE(1000), 1, + STATE(1131), 1, sym_key, - STATE(432), 3, + STATE(491), 3, sym_class, sym_identifier, sym_key_value, - [12931] = 2, - ACTIONS(441), 1, - sym__block_quote_continuation, - ACTIONS(439), 10, + [13399] = 3, + ACTIONS(1212), 1, + anon_sym_LBRACK_CARET, + STATE(404), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(1209), 9, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + anon_sym_POUND, + anon_sym_PERCENT, + [13418] = 2, + ACTIONS(1217), 1, + sym__table_caption_end, + ACTIONS(1215), 11, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_NULL, + anon_sym_LBRACK_CARET, + anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + anon_sym_POUND, + anon_sym_PERCENT, + [13435] = 10, + ACTIONS(498), 1, + sym__list_item_content_spacer, + ACTIONS(506), 1, + sym__block_quote_continuation, + ACTIONS(1219), 1, + anon_sym_PIPE, + ACTIONS(1221), 1, + sym__newline, + ACTIONS(1223), 1, + sym__table_caption_begin, + STATE(417), 1, + sym_table_row, + STATE(762), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(1173), 1, + sym_table_caption, + STATE(1246), 1, + sym__block_quote_prefix, + STATE(412), 3, + sym__table_content, + sym_table_separator, + aux_sym_table_repeat1, + [13468] = 4, + ACTIONS(1074), 1, anon_sym_LBRACK_CARET, + ACTIONS(1128), 1, + anon_sym_PIPE, + STATE(404), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(1225), 8, + anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -24456,10 +26153,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [12947] = 2, - ACTIONS(1121), 1, + [13489] = 2, + ACTIONS(1170), 1, sym__eof_or_newline, - ACTIONS(1119), 10, + ACTIONS(1168), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -24470,10 +26167,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [12963] = 1, - ACTIONS(1119), 11, + [13505] = 2, + ACTIONS(445), 1, + sym__block_quote_continuation, + ACTIONS(443), 10, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, @@ -24483,28 +26181,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [12977] = 7, - ACTIONS(503), 1, + [13521] = 7, + ACTIONS(529), 1, sym__block_quote_continuation, - ACTIONS(1171), 1, + ACTIONS(1227), 1, anon_sym_PIPE, - STATE(405), 1, + STATE(433), 1, sym_table_row, - STATE(720), 1, + STATE(762), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1082), 1, + STATE(1253), 1, sym__block_quote_prefix, - ACTIONS(501), 3, + ACTIONS(522), 3, sym__block_close, sym__newline, sym__table_caption_begin, - STATE(387), 3, + STATE(410), 3, sym__table_content, sym_table_separator, aux_sym_table_repeat1, - [13003] = 1, - ACTIONS(1119), 10, + [13547] = 1, + ACTIONS(1168), 11, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, @@ -24514,6798 +26213,7930 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [13016] = 6, - ACTIONS(519), 1, + [13561] = 7, + ACTIONS(529), 1, sym__block_quote_continuation, - ACTIONS(1174), 1, + ACTIONS(1230), 1, anon_sym_PIPE, - STATE(489), 1, - sym_table_separator, - STATE(720), 1, + STATE(417), 1, + sym_table_row, + STATE(762), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1101), 1, + STATE(1246), 1, sym__block_quote_prefix, - ACTIONS(517), 4, + ACTIONS(522), 3, sym__newline, - sym__list_item_continuation, - sym__list_item_end, + sym__list_item_content_spacer, sym__table_caption_begin, - [13038] = 8, - ACTIONS(31), 1, - sym__list_marker_task_begin, - ACTIONS(1177), 1, - sym__block_close, - ACTIONS(1179), 1, + STATE(412), 3, + sym__table_content, + sym_table_separator, + aux_sym_table_repeat1, + [13587] = 1, + ACTIONS(1168), 10, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACK_CARET, + anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + anon_sym_POUND, + anon_sym_PERCENT, + [13600] = 6, + ACTIONS(545), 1, sym__block_quote_continuation, - STATE(47), 1, - sym_list_marker_task, - STATE(402), 1, - aux_sym__list_task_repeat1, - STATE(675), 1, + ACTIONS(1233), 1, + anon_sym_PIPE, + STATE(486), 1, + sym_table_separator, + STATE(762), 1, aux_sym__block_quote_prefix_repeat1, - STATE(707), 1, - sym__list_item_task, - STATE(748), 1, + STATE(1291), 1, sym__block_quote_prefix, - [13063] = 7, - ACTIONS(1181), 1, + ACTIONS(543), 4, + sym__newline, + sym__list_item_continuation, + sym__list_item_end, + sym__table_caption_begin, + [13622] = 7, + ACTIONS(1236), 1, aux_sym__line_token1, - ACTIONS(1183), 1, + ACTIONS(1238), 1, sym__block_close, - ACTIONS(1185), 1, + ACTIONS(1240), 1, sym__block_quote_continuation, - STATE(689), 1, + STATE(721), 1, aux_sym__block_quote_prefix_repeat1, - STATE(776), 1, + STATE(836), 1, sym__block_quote_prefix, - STATE(1069), 1, + STATE(1076), 1, sym_code, - STATE(412), 2, + STATE(457), 2, sym__line, aux_sym_code_repeat1, - [13086] = 7, - ACTIONS(1181), 1, + [13645] = 7, + ACTIONS(1236), 1, aux_sym__line_token1, - ACTIONS(1185), 1, + ACTIONS(1240), 1, sym__block_quote_continuation, - ACTIONS(1187), 1, + ACTIONS(1242), 1, sym__block_close, - STATE(689), 1, + STATE(721), 1, aux_sym__block_quote_prefix_repeat1, - STATE(776), 1, + STATE(836), 1, sym__block_quote_prefix, - STATE(943), 1, + STATE(1178), 1, sym_code, - STATE(412), 2, + STATE(457), 2, sym__line, aux_sym_code_repeat1, - [13109] = 7, - ACTIONS(1181), 1, + [13668] = 6, + ACTIONS(545), 1, + sym__block_quote_continuation, + ACTIONS(1244), 1, + anon_sym_PIPE, + STATE(528), 1, + sym_table_separator, + STATE(762), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(1279), 1, + sym__block_quote_prefix, + ACTIONS(543), 3, + sym__newline, + sym__list_item_content_spacer, + sym__table_caption_begin, + [13689] = 8, + ACTIONS(31), 1, + sym__list_marker_task_begin, + ACTIONS(1247), 1, + sym__block_close, + ACTIONS(1249), 1, + sym__block_quote_continuation, + STATE(46), 1, + sym_list_marker_task, + STATE(439), 1, + aux_sym__list_task_repeat1, + STATE(717), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(761), 1, + sym__list_item_task, + STATE(813), 1, + sym__block_quote_prefix, + [13714] = 7, + ACTIONS(1236), 1, aux_sym__line_token1, - ACTIONS(1185), 1, + ACTIONS(1240), 1, sym__block_quote_continuation, - ACTIONS(1189), 1, + ACTIONS(1251), 1, sym__block_close, - STATE(689), 1, + STATE(721), 1, aux_sym__block_quote_prefix_repeat1, - STATE(776), 1, + STATE(836), 1, sym__block_quote_prefix, - STATE(944), 1, + STATE(1286), 1, sym_code, - STATE(412), 2, + STATE(457), 2, sym__line, aux_sym_code_repeat1, - [13132] = 7, - ACTIONS(1181), 1, + [13737] = 7, + ACTIONS(1236), 1, aux_sym__line_token1, - ACTIONS(1185), 1, + ACTIONS(1240), 1, sym__block_quote_continuation, - ACTIONS(1191), 1, + ACTIONS(1253), 1, sym__block_close, - STATE(689), 1, + STATE(721), 1, aux_sym__block_quote_prefix_repeat1, - STATE(776), 1, + STATE(836), 1, sym__block_quote_prefix, - STATE(1080), 1, + STATE(1317), 1, sym_code, - STATE(412), 2, + STATE(457), 2, sym__line, aux_sym_code_repeat1, - [13155] = 8, - ACTIONS(31), 1, - sym__list_marker_task_begin, - ACTIONS(1179), 1, + [13760] = 7, + ACTIONS(1236), 1, + aux_sym__line_token1, + ACTIONS(1240), 1, sym__block_quote_continuation, - ACTIONS(1193), 1, + ACTIONS(1255), 1, sym__block_close, - STATE(47), 1, - sym_list_marker_task, - STATE(402), 1, - aux_sym__list_task_repeat1, - STATE(675), 1, + STATE(721), 1, aux_sym__block_quote_prefix_repeat1, - STATE(707), 1, - sym__list_item_task, - STATE(748), 1, + STATE(836), 1, sym__block_quote_prefix, - [13180] = 8, + STATE(1186), 1, + sym_code, + STATE(457), 2, + sym__line, + aux_sym_code_repeat1, + [13783] = 7, + ACTIONS(1236), 1, + aux_sym__line_token1, + ACTIONS(1240), 1, + sym__block_quote_continuation, + ACTIONS(1257), 1, + sym__block_close, + STATE(721), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(836), 1, + sym__block_quote_prefix, + STATE(1034), 1, + sym_code, + STATE(457), 2, + sym__line, + aux_sym_code_repeat1, + [13806] = 8, ACTIONS(31), 1, sym__list_marker_task_begin, - ACTIONS(1179), 1, + ACTIONS(1249), 1, sym__block_quote_continuation, - ACTIONS(1195), 1, + ACTIONS(1259), 1, sym__block_close, - STATE(47), 1, + STATE(46), 1, sym_list_marker_task, - STATE(402), 1, + STATE(439), 1, aux_sym__list_task_repeat1, - STATE(675), 1, + STATE(717), 1, aux_sym__block_quote_prefix_repeat1, - STATE(707), 1, + STATE(761), 1, sym__list_item_task, - STATE(748), 1, + STATE(813), 1, sym__block_quote_prefix, - [13205] = 7, - ACTIONS(1181), 1, + [13831] = 7, + ACTIONS(1236), 1, aux_sym__line_token1, - ACTIONS(1185), 1, + ACTIONS(1240), 1, sym__block_quote_continuation, - ACTIONS(1197), 1, + ACTIONS(1261), 1, sym__block_close, - STATE(689), 1, + STATE(721), 1, aux_sym__block_quote_prefix_repeat1, - STATE(776), 1, + STATE(836), 1, sym__block_quote_prefix, - STATE(1020), 1, + STATE(1067), 1, sym_code, - STATE(412), 2, + STATE(457), 2, sym__line, aux_sym_code_repeat1, - [13228] = 7, - ACTIONS(1181), 1, + [13854] = 7, + ACTIONS(1236), 1, aux_sym__line_token1, - ACTIONS(1185), 1, + ACTIONS(1240), 1, sym__block_quote_continuation, - ACTIONS(1199), 1, + ACTIONS(1263), 1, sym__block_close, - STATE(689), 1, + STATE(721), 1, aux_sym__block_quote_prefix_repeat1, - STATE(776), 1, + STATE(836), 1, sym__block_quote_prefix, - STATE(994), 1, + STATE(1077), 1, sym_code, - STATE(412), 2, + STATE(457), 2, sym__line, aux_sym_code_repeat1, - [13251] = 7, - ACTIONS(1181), 1, + [13877] = 7, + ACTIONS(1236), 1, aux_sym__line_token1, - ACTIONS(1185), 1, + ACTIONS(1240), 1, sym__block_quote_continuation, - ACTIONS(1201), 1, + ACTIONS(1265), 1, sym__block_close, - STATE(689), 1, + STATE(721), 1, aux_sym__block_quote_prefix_repeat1, - STATE(776), 1, + STATE(836), 1, sym__block_quote_prefix, - STATE(1051), 1, + STATE(1115), 1, sym_code, - STATE(412), 2, + STATE(457), 2, sym__line, aux_sym_code_repeat1, - [13274] = 7, - ACTIONS(1181), 1, + [13900] = 7, + ACTIONS(1236), 1, aux_sym__line_token1, - ACTIONS(1185), 1, + ACTIONS(1240), 1, sym__block_quote_continuation, - ACTIONS(1203), 1, + ACTIONS(1267), 1, sym__block_close, - STATE(689), 1, + STATE(721), 1, aux_sym__block_quote_prefix_repeat1, - STATE(776), 1, + STATE(836), 1, sym__block_quote_prefix, - STATE(1022), 1, + STATE(1122), 1, sym_code, - STATE(412), 2, + STATE(457), 2, sym__line, aux_sym_code_repeat1, - [13297] = 7, - ACTIONS(1181), 1, + [13923] = 8, + ACTIONS(31), 1, + sym__list_marker_task_begin, + ACTIONS(1249), 1, + sym__block_quote_continuation, + ACTIONS(1269), 1, + sym__block_close, + STATE(46), 1, + sym_list_marker_task, + STATE(439), 1, + aux_sym__list_task_repeat1, + STATE(717), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(761), 1, + sym__list_item_task, + STATE(813), 1, + sym__block_quote_prefix, + [13948] = 7, + ACTIONS(1236), 1, aux_sym__line_token1, - ACTIONS(1185), 1, + ACTIONS(1240), 1, sym__block_quote_continuation, - ACTIONS(1205), 1, + ACTIONS(1271), 1, sym__block_close, - STATE(689), 1, + STATE(721), 1, aux_sym__block_quote_prefix_repeat1, - STATE(776), 1, + STATE(836), 1, sym__block_quote_prefix, - STATE(1023), 1, + STATE(1221), 1, sym_code, - STATE(412), 2, + STATE(457), 2, sym__line, aux_sym_code_repeat1, - [13320] = 8, - ACTIONS(1207), 1, - sym__block_close, - ACTIONS(1209), 1, - sym__list_marker_task_begin, - ACTIONS(1212), 1, - sym__block_quote_continuation, - STATE(47), 1, - sym_list_marker_task, - STATE(402), 1, - aux_sym__list_task_repeat1, - STATE(675), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(707), 1, - sym__list_item_task, - STATE(748), 1, - sym__block_quote_prefix, - [13345] = 7, - ACTIONS(1181), 1, + [13971] = 7, + ACTIONS(1236), 1, aux_sym__line_token1, - ACTIONS(1185), 1, + ACTIONS(1240), 1, sym__block_quote_continuation, - ACTIONS(1215), 1, + ACTIONS(1273), 1, sym__block_close, - STATE(689), 1, + STATE(721), 1, aux_sym__block_quote_prefix_repeat1, - STATE(776), 1, + STATE(836), 1, sym__block_quote_prefix, - STATE(952), 1, + STATE(1223), 1, sym_code, - STATE(412), 2, + STATE(457), 2, sym__line, aux_sym_code_repeat1, - [13368] = 7, - ACTIONS(1181), 1, + [13994] = 7, + ACTIONS(1236), 1, aux_sym__line_token1, - ACTIONS(1185), 1, + ACTIONS(1240), 1, sym__block_quote_continuation, - ACTIONS(1217), 1, + ACTIONS(1275), 1, sym__block_close, - STATE(689), 1, + STATE(721), 1, aux_sym__block_quote_prefix_repeat1, - STATE(776), 1, + STATE(836), 1, sym__block_quote_prefix, - STATE(1031), 1, + STATE(1060), 1, sym_code, - STATE(412), 2, + STATE(457), 2, sym__line, aux_sym_code_repeat1, - [13391] = 6, - ACTIONS(519), 1, + [14017] = 8, + ACTIONS(31), 1, + sym__list_marker_task_begin, + ACTIONS(1249), 1, sym__block_quote_continuation, - ACTIONS(1219), 1, + ACTIONS(1277), 1, + sym__block_close, + STATE(46), 1, + sym_list_marker_task, + STATE(439), 1, + aux_sym__list_task_repeat1, + STATE(717), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(761), 1, + sym__list_item_task, + STATE(813), 1, + sym__block_quote_prefix, + [14042] = 6, + ACTIONS(545), 1, + sym__block_quote_continuation, + ACTIONS(1279), 1, anon_sym_PIPE, - STATE(490), 1, + STATE(539), 1, sym_table_separator, - STATE(720), 1, + STATE(762), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1105), 1, + STATE(1283), 1, sym__block_quote_prefix, - ACTIONS(517), 3, + ACTIONS(543), 3, sym__block_close, sym__newline, sym__table_caption_begin, - [13412] = 7, - ACTIONS(1181), 1, + [14063] = 7, + ACTIONS(1236), 1, aux_sym__line_token1, - ACTIONS(1185), 1, + ACTIONS(1240), 1, sym__block_quote_continuation, - ACTIONS(1222), 1, + ACTIONS(1282), 1, sym__block_close, - STATE(689), 1, + STATE(721), 1, aux_sym__block_quote_prefix_repeat1, - STATE(776), 1, + STATE(836), 1, sym__block_quote_prefix, - STATE(1033), 1, + STATE(1081), 1, sym_code, - STATE(412), 2, + STATE(457), 2, sym__line, aux_sym_code_repeat1, - [13435] = 7, - ACTIONS(1181), 1, + [14086] = 7, + ACTIONS(1236), 1, aux_sym__line_token1, - ACTIONS(1185), 1, + ACTIONS(1240), 1, sym__block_quote_continuation, - ACTIONS(1224), 1, + ACTIONS(1284), 1, sym__block_close, - STATE(689), 1, + STATE(721), 1, aux_sym__block_quote_prefix_repeat1, - STATE(776), 1, + STATE(836), 1, sym__block_quote_prefix, - STATE(956), 1, + STATE(1082), 1, sym_code, - STATE(412), 2, + STATE(457), 2, sym__line, aux_sym_code_repeat1, - [13458] = 8, - ACTIONS(31), 1, - sym__list_marker_task_begin, - ACTIONS(1179), 1, - sym__block_quote_continuation, - ACTIONS(1226), 1, - sym__block_close, - STATE(47), 1, - sym_list_marker_task, - STATE(402), 1, - aux_sym__list_task_repeat1, - STATE(675), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(707), 1, - sym__list_item_task, - STATE(748), 1, - sym__block_quote_prefix, - [13483] = 8, + [14109] = 8, ACTIONS(31), 1, sym__list_marker_task_begin, - ACTIONS(1179), 1, + ACTIONS(1249), 1, sym__block_quote_continuation, - ACTIONS(1228), 1, + ACTIONS(1286), 1, sym__block_close, - STATE(47), 1, + STATE(46), 1, sym_list_marker_task, - STATE(402), 1, + STATE(439), 1, aux_sym__list_task_repeat1, - STATE(675), 1, + STATE(717), 1, aux_sym__block_quote_prefix_repeat1, - STATE(707), 1, + STATE(761), 1, sym__list_item_task, - STATE(748), 1, + STATE(813), 1, sym__block_quote_prefix, - [13508] = 7, - ACTIONS(1181), 1, + [14134] = 7, + ACTIONS(1236), 1, aux_sym__line_token1, - ACTIONS(1185), 1, + ACTIONS(1240), 1, sym__block_quote_continuation, - ACTIONS(1230), 1, + ACTIONS(1288), 1, sym__block_close, - STATE(689), 1, + STATE(721), 1, aux_sym__block_quote_prefix_repeat1, - STATE(776), 1, + STATE(836), 1, sym__block_quote_prefix, - STATE(1067), 1, + STATE(1162), 1, sym_code, - STATE(412), 2, + STATE(457), 2, sym__line, aux_sym_code_repeat1, - [13531] = 7, - ACTIONS(1181), 1, + [14157] = 7, + ACTIONS(1236), 1, aux_sym__line_token1, - ACTIONS(1185), 1, + ACTIONS(1240), 1, sym__block_quote_continuation, - ACTIONS(1232), 1, + ACTIONS(1290), 1, sym__block_close, - STATE(689), 1, + STATE(721), 1, aux_sym__block_quote_prefix_repeat1, - STATE(776), 1, + STATE(836), 1, sym__block_quote_prefix, - STATE(1131), 1, + STATE(1228), 1, sym_code, - STATE(412), 2, + STATE(457), 2, sym__line, aux_sym_code_repeat1, - [13554] = 6, - ACTIONS(1181), 1, - aux_sym__line_token1, - ACTIONS(1185), 1, + [14180] = 8, + ACTIONS(1292), 1, + sym__block_close, + ACTIONS(1294), 1, + sym__list_marker_task_begin, + ACTIONS(1297), 1, + sym__block_quote_continuation, + STATE(46), 1, + sym_list_marker_task, + STATE(439), 1, + aux_sym__list_task_repeat1, + STATE(717), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(761), 1, + sym__list_item_task, + STATE(813), 1, + sym__block_quote_prefix, + [14205] = 8, + ACTIONS(31), 1, + sym__list_marker_task_begin, + ACTIONS(1249), 1, sym__block_quote_continuation, - ACTIONS(1234), 1, + ACTIONS(1300), 1, sym__block_close, - STATE(689), 1, + STATE(46), 1, + sym_list_marker_task, + STATE(439), 1, + aux_sym__list_task_repeat1, + STATE(717), 1, aux_sym__block_quote_prefix_repeat1, - STATE(776), 1, + STATE(761), 1, + sym__list_item_task, + STATE(813), 1, sym__block_quote_prefix, - STATE(421), 2, - sym__line, - aux_sym_code_repeat1, - [13574] = 7, + [14230] = 7, ACTIONS(1236), 1, - sym__block_close, - ACTIONS(1238), 1, - sym_list_marker_plus, - ACTIONS(1241), 1, + aux_sym__line_token1, + ACTIONS(1240), 1, sym__block_quote_continuation, - STATE(413), 1, - aux_sym__list_plus_repeat1, - STATE(651), 1, - sym__list_item_plus, - STATE(663), 1, + ACTIONS(1302), 1, + sym__block_close, + STATE(721), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1070), 1, + STATE(836), 1, sym__block_quote_prefix, - [13596] = 7, + STATE(1177), 1, + sym_code, + STATE(457), 2, + sym__line, + aux_sym_code_repeat1, + [14253] = 7, ACTIONS(29), 1, sym_list_marker_plus, - ACTIONS(1244), 1, + ACTIONS(1304), 1, sym__block_close, - ACTIONS(1246), 1, + ACTIONS(1306), 1, sym__block_quote_continuation, - STATE(413), 1, + STATE(451), 1, aux_sym__list_plus_repeat1, - STATE(651), 1, + STATE(730), 1, sym__list_item_plus, - STATE(663), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(1070), 1, - sym__block_quote_prefix, - [13618] = 7, - ACTIONS(25), 1, - sym_list_marker_dash, - ACTIONS(1248), 1, - sym__block_close, - ACTIONS(1250), 1, - sym__block_quote_continuation, - STATE(429), 1, - aux_sym__list_dash_repeat1, - STATE(634), 1, - sym__list_item_dash, - STATE(722), 1, + STATE(733), 1, aux_sym__block_quote_prefix_repeat1, - STATE(987), 1, + STATE(1226), 1, sym__block_quote_prefix, - [13640] = 7, + [14275] = 7, ACTIONS(27), 1, sym_list_marker_star, - ACTIONS(1252), 1, + ACTIONS(1308), 1, sym__block_close, - ACTIONS(1254), 1, + ACTIONS(1310), 1, sym__block_quote_continuation, - STATE(430), 1, + STATE(459), 1, aux_sym__list_star_repeat1, - STATE(673), 1, + STATE(703), 1, aux_sym__block_quote_prefix_repeat1, - STATE(697), 1, + STATE(759), 1, sym__list_item_star, - STATE(984), 1, + STATE(1037), 1, sym__block_quote_prefix, - [13662] = 7, + [14297] = 7, ACTIONS(29), 1, sym_list_marker_plus, - ACTIONS(1246), 1, + ACTIONS(1306), 1, sym__block_quote_continuation, - ACTIONS(1256), 1, + ACTIONS(1312), 1, sym__block_close, - STATE(413), 1, + STATE(451), 1, aux_sym__list_plus_repeat1, - STATE(651), 1, + STATE(730), 1, sym__list_item_plus, - STATE(663), 1, + STATE(733), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1070), 1, + STATE(1226), 1, sym__block_quote_prefix, - [13684] = 7, + [14319] = 7, ACTIONS(25), 1, sym_list_marker_dash, - ACTIONS(1250), 1, - sym__block_quote_continuation, - ACTIONS(1258), 1, + ACTIONS(1314), 1, sym__block_close, - STATE(429), 1, + ACTIONS(1316), 1, + sym__block_quote_continuation, + STATE(462), 1, aux_sym__list_dash_repeat1, - STATE(634), 1, + STATE(727), 1, sym__list_item_dash, - STATE(722), 1, + STATE(735), 1, aux_sym__block_quote_prefix_repeat1, - STATE(987), 1, + STATE(1053), 1, sym__block_quote_prefix, - [13706] = 7, + [14341] = 7, ACTIONS(29), 1, sym_list_marker_plus, - ACTIONS(1246), 1, + ACTIONS(1306), 1, sym__block_quote_continuation, - ACTIONS(1260), 1, + ACTIONS(1318), 1, sym__block_close, - STATE(413), 1, + STATE(451), 1, aux_sym__list_plus_repeat1, - STATE(651), 1, + STATE(730), 1, sym__list_item_plus, - STATE(663), 1, + STATE(733), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1070), 1, + STATE(1226), 1, sym__block_quote_prefix, - [13728] = 7, + [14363] = 7, ACTIONS(27), 1, sym_list_marker_star, - ACTIONS(1254), 1, + ACTIONS(1310), 1, sym__block_quote_continuation, - ACTIONS(1262), 1, + ACTIONS(1320), 1, sym__block_close, - STATE(430), 1, + STATE(459), 1, aux_sym__list_star_repeat1, - STATE(673), 1, + STATE(703), 1, aux_sym__block_quote_prefix_repeat1, - STATE(697), 1, + STATE(759), 1, sym__list_item_star, - STATE(984), 1, - sym__block_quote_prefix, - [13750] = 6, - ACTIONS(1264), 1, - aux_sym__line_token1, - ACTIONS(1267), 1, - sym__block_close, - ACTIONS(1269), 1, - sym__block_quote_continuation, - STATE(689), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(776), 1, + STATE(1037), 1, sym__block_quote_prefix, - STATE(421), 2, - sym__line, - aux_sym_code_repeat1, - [13770] = 7, + [14385] = 7, ACTIONS(27), 1, sym_list_marker_star, - ACTIONS(1254), 1, + ACTIONS(1310), 1, sym__block_quote_continuation, - ACTIONS(1272), 1, + ACTIONS(1322), 1, sym__block_close, - STATE(430), 1, + STATE(459), 1, aux_sym__list_star_repeat1, - STATE(673), 1, + STATE(703), 1, aux_sym__block_quote_prefix_repeat1, - STATE(697), 1, + STATE(759), 1, sym__list_item_star, - STATE(984), 1, + STATE(1037), 1, sym__block_quote_prefix, - [13792] = 7, + [14407] = 7, ACTIONS(25), 1, sym_list_marker_dash, - ACTIONS(1250), 1, + ACTIONS(1316), 1, sym__block_quote_continuation, - ACTIONS(1274), 1, + ACTIONS(1324), 1, sym__block_close, - STATE(429), 1, + STATE(462), 1, aux_sym__list_dash_repeat1, - STATE(634), 1, + STATE(727), 1, sym__list_item_dash, - STATE(722), 1, + STATE(735), 1, aux_sym__block_quote_prefix_repeat1, - STATE(987), 1, + STATE(1053), 1, sym__block_quote_prefix, - [13814] = 7, + [14429] = 7, ACTIONS(25), 1, sym_list_marker_dash, - ACTIONS(1250), 1, + ACTIONS(1316), 1, sym__block_quote_continuation, - ACTIONS(1276), 1, + ACTIONS(1326), 1, sym__block_close, - STATE(429), 1, + STATE(462), 1, aux_sym__list_dash_repeat1, - STATE(634), 1, + STATE(727), 1, sym__list_item_dash, - STATE(722), 1, + STATE(735), 1, aux_sym__block_quote_prefix_repeat1, - STATE(987), 1, + STATE(1053), 1, sym__block_quote_prefix, - [13836] = 7, - ACTIONS(29), 1, + [14451] = 7, + ACTIONS(1328), 1, + sym__block_close, + ACTIONS(1330), 1, + sym_list_marker_plus, + ACTIONS(1333), 1, + sym__block_quote_continuation, + STATE(451), 1, + aux_sym__list_plus_repeat1, + STATE(730), 1, + sym__list_item_plus, + STATE(733), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(1226), 1, + sym__block_quote_prefix, + [14473] = 7, + ACTIONS(29), 1, sym_list_marker_plus, - ACTIONS(1246), 1, + ACTIONS(1306), 1, sym__block_quote_continuation, - ACTIONS(1278), 1, + ACTIONS(1336), 1, sym__block_close, - STATE(413), 1, + STATE(451), 1, aux_sym__list_plus_repeat1, - STATE(651), 1, + STATE(730), 1, sym__list_item_plus, - STATE(663), 1, + STATE(733), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1070), 1, + STATE(1226), 1, sym__block_quote_prefix, - [13858] = 7, - ACTIONS(27), 1, - sym_list_marker_star, - ACTIONS(1254), 1, + [14495] = 7, + ACTIONS(25), 1, + sym_list_marker_dash, + ACTIONS(1316), 1, sym__block_quote_continuation, - ACTIONS(1280), 1, + ACTIONS(1338), 1, sym__block_close, - STATE(430), 1, - aux_sym__list_star_repeat1, - STATE(673), 1, + STATE(462), 1, + aux_sym__list_dash_repeat1, + STATE(727), 1, + sym__list_item_dash, + STATE(735), 1, aux_sym__block_quote_prefix_repeat1, - STATE(697), 1, - sym__list_item_star, - STATE(984), 1, + STATE(1053), 1, + sym__block_quote_prefix, + [14517] = 7, + ACTIONS(25), 1, + sym_list_marker_dash, + ACTIONS(1316), 1, + sym__block_quote_continuation, + ACTIONS(1340), 1, + sym__block_close, + STATE(462), 1, + aux_sym__list_dash_repeat1, + STATE(727), 1, + sym__list_item_dash, + STATE(735), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(1053), 1, + sym__block_quote_prefix, + [14539] = 7, + ACTIONS(29), 1, + sym_list_marker_plus, + ACTIONS(1306), 1, + sym__block_quote_continuation, + ACTIONS(1342), 1, + sym__block_close, + STATE(451), 1, + aux_sym__list_plus_repeat1, + STATE(730), 1, + sym__list_item_plus, + STATE(733), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(1226), 1, sym__block_quote_prefix, - [13880] = 7, + [14561] = 7, ACTIONS(27), 1, sym_list_marker_star, - ACTIONS(1254), 1, + ACTIONS(1310), 1, sym__block_quote_continuation, - ACTIONS(1282), 1, + ACTIONS(1344), 1, sym__block_close, - STATE(430), 1, + STATE(459), 1, aux_sym__list_star_repeat1, - STATE(673), 1, + STATE(703), 1, aux_sym__block_quote_prefix_repeat1, - STATE(697), 1, + STATE(759), 1, sym__list_item_star, - STATE(984), 1, + STATE(1037), 1, + sym__block_quote_prefix, + [14583] = 6, + ACTIONS(1236), 1, + aux_sym__line_token1, + ACTIONS(1240), 1, + sym__block_quote_continuation, + ACTIONS(1346), 1, + sym__block_close, + STATE(721), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(836), 1, sym__block_quote_prefix, - [13902] = 7, + STATE(461), 2, + sym__line, + aux_sym_code_repeat1, + [14603] = 7, ACTIONS(29), 1, sym_list_marker_plus, - ACTIONS(1246), 1, + ACTIONS(1306), 1, sym__block_quote_continuation, - ACTIONS(1284), 1, + ACTIONS(1348), 1, sym__block_close, - STATE(413), 1, + STATE(451), 1, aux_sym__list_plus_repeat1, - STATE(651), 1, + STATE(730), 1, sym__list_item_plus, - STATE(663), 1, + STATE(733), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1070), 1, + STATE(1226), 1, sym__block_quote_prefix, - [13924] = 7, - ACTIONS(1286), 1, + [14625] = 7, + ACTIONS(1350), 1, sym__block_close, - ACTIONS(1288), 1, + ACTIONS(1352), 1, + sym_list_marker_star, + ACTIONS(1355), 1, + sym__block_quote_continuation, + STATE(459), 1, + aux_sym__list_star_repeat1, + STATE(703), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(759), 1, + sym__list_item_star, + STATE(1037), 1, + sym__block_quote_prefix, + [14647] = 7, + ACTIONS(27), 1, + sym_list_marker_star, + ACTIONS(1310), 1, + sym__block_quote_continuation, + ACTIONS(1358), 1, + sym__block_close, + STATE(459), 1, + aux_sym__list_star_repeat1, + STATE(703), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(759), 1, + sym__list_item_star, + STATE(1037), 1, + sym__block_quote_prefix, + [14669] = 6, + ACTIONS(1360), 1, + aux_sym__line_token1, + ACTIONS(1363), 1, + sym__block_close, + ACTIONS(1365), 1, + sym__block_quote_continuation, + STATE(721), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(836), 1, + sym__block_quote_prefix, + STATE(461), 2, + sym__line, + aux_sym_code_repeat1, + [14689] = 7, + ACTIONS(1368), 1, + sym__block_close, + ACTIONS(1370), 1, sym_list_marker_dash, - ACTIONS(1291), 1, + ACTIONS(1373), 1, sym__block_quote_continuation, - STATE(429), 1, + STATE(462), 1, aux_sym__list_dash_repeat1, - STATE(634), 1, + STATE(727), 1, sym__list_item_dash, - STATE(722), 1, + STATE(735), 1, aux_sym__block_quote_prefix_repeat1, - STATE(987), 1, + STATE(1053), 1, sym__block_quote_prefix, - [13946] = 7, - ACTIONS(1294), 1, - sym__block_close, - ACTIONS(1296), 1, + [14711] = 7, + ACTIONS(27), 1, sym_list_marker_star, - ACTIONS(1299), 1, + ACTIONS(1310), 1, sym__block_quote_continuation, - STATE(430), 1, + ACTIONS(1376), 1, + sym__block_close, + STATE(459), 1, aux_sym__list_star_repeat1, - STATE(673), 1, + STATE(703), 1, aux_sym__block_quote_prefix_repeat1, - STATE(697), 1, + STATE(759), 1, sym__list_item_star, - STATE(984), 1, + STATE(1037), 1, sym__block_quote_prefix, - [13968] = 7, + [14733] = 7, ACTIONS(25), 1, sym_list_marker_dash, - ACTIONS(1250), 1, + ACTIONS(1316), 1, sym__block_quote_continuation, - ACTIONS(1302), 1, + ACTIONS(1378), 1, sym__block_close, - STATE(429), 1, + STATE(462), 1, aux_sym__list_dash_repeat1, - STATE(634), 1, + STATE(727), 1, sym__list_item_dash, - STATE(722), 1, + STATE(735), 1, aux_sym__block_quote_prefix_repeat1, - STATE(987), 1, + STATE(1053), 1, sym__block_quote_prefix, - [13990] = 1, - ACTIONS(1304), 6, - anon_sym_RBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - sym__whitespace1, - anon_sym_PERCENT, - sym__id, - [13999] = 6, - ACTIONS(1306), 1, + [14755] = 1, + ACTIONS(634), 6, + sym__newline, sym__list_item_continuation, - ACTIONS(1308), 1, sym__list_item_end, - ACTIONS(1310), 1, sym__block_quote_continuation, - STATE(456), 1, - aux_sym__list_item_definition_repeat1, - STATE(681), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(949), 1, - sym__block_quote_prefix, - [14018] = 6, - ACTIONS(1306), 1, + sym__table_caption_begin, + anon_sym_PIPE, + [14764] = 6, + ACTIONS(1380), 1, sym__list_item_continuation, - ACTIONS(1310), 1, - sym__block_quote_continuation, - ACTIONS(1312), 1, + ACTIONS(1382), 1, sym__list_item_end, - STATE(435), 1, - aux_sym__list_item_definition_repeat1, - STATE(681), 1, + ACTIONS(1384), 1, + sym__block_quote_continuation, + STATE(467), 1, + aux_sym_list_item_content_repeat1, + STATE(723), 1, aux_sym__block_quote_prefix_repeat1, - STATE(949), 1, + STATE(1035), 1, sym__block_quote_prefix, - [14037] = 6, - ACTIONS(1306), 1, + [14783] = 6, + ACTIONS(1380), 1, sym__list_item_continuation, - ACTIONS(1310), 1, + ACTIONS(1384), 1, sym__block_quote_continuation, - ACTIONS(1314), 1, + ACTIONS(1386), 1, sym__list_item_end, - STATE(456), 1, - aux_sym__list_item_definition_repeat1, - STATE(681), 1, + STATE(499), 1, + aux_sym_list_item_content_repeat1, + STATE(723), 1, aux_sym__block_quote_prefix_repeat1, - STATE(949), 1, + STATE(1035), 1, sym__block_quote_prefix, - [14056] = 6, - ACTIONS(1306), 1, + [14802] = 6, + ACTIONS(1380), 1, sym__list_item_continuation, - ACTIONS(1310), 1, + ACTIONS(1384), 1, sym__block_quote_continuation, - ACTIONS(1316), 1, + ACTIONS(1388), 1, sym__list_item_end, - STATE(437), 1, - aux_sym__list_item_definition_repeat1, - STATE(681), 1, + STATE(523), 1, + aux_sym_list_item_content_repeat1, + STATE(723), 1, aux_sym__block_quote_prefix_repeat1, - STATE(949), 1, + STATE(1035), 1, sym__block_quote_prefix, - [14075] = 6, - ACTIONS(1306), 1, + [14821] = 6, + ACTIONS(1380), 1, sym__list_item_continuation, - ACTIONS(1310), 1, + ACTIONS(1384), 1, sym__block_quote_continuation, - ACTIONS(1318), 1, + ACTIONS(1390), 1, sym__list_item_end, - STATE(456), 1, - aux_sym__list_item_definition_repeat1, - STATE(681), 1, + STATE(499), 1, + aux_sym_list_item_content_repeat1, + STATE(723), 1, aux_sym__block_quote_prefix_repeat1, - STATE(949), 1, + STATE(1035), 1, sym__block_quote_prefix, - [14094] = 6, - ACTIONS(1306), 1, + [14840] = 6, + ACTIONS(1380), 1, sym__list_item_continuation, - ACTIONS(1310), 1, + ACTIONS(1384), 1, sym__block_quote_continuation, - ACTIONS(1320), 1, + ACTIONS(1392), 1, sym__list_item_end, - STATE(439), 1, - aux_sym__list_item_definition_repeat1, - STATE(681), 1, + STATE(471), 1, + aux_sym_list_item_content_repeat1, + STATE(723), 1, aux_sym__block_quote_prefix_repeat1, - STATE(949), 1, + STATE(1035), 1, sym__block_quote_prefix, - [14113] = 6, - ACTIONS(1306), 1, + [14859] = 6, + ACTIONS(1380), 1, sym__list_item_continuation, - ACTIONS(1310), 1, + ACTIONS(1384), 1, sym__block_quote_continuation, - ACTIONS(1322), 1, + ACTIONS(1394), 1, sym__list_item_end, - STATE(456), 1, - aux_sym__list_item_definition_repeat1, - STATE(681), 1, + STATE(499), 1, + aux_sym_list_item_content_repeat1, + STATE(723), 1, aux_sym__block_quote_prefix_repeat1, - STATE(949), 1, + STATE(1035), 1, sym__block_quote_prefix, - [14132] = 6, - ACTIONS(1306), 1, + [14878] = 6, + ACTIONS(1380), 1, sym__list_item_continuation, - ACTIONS(1310), 1, + ACTIONS(1384), 1, sym__block_quote_continuation, - ACTIONS(1324), 1, + ACTIONS(1396), 1, sym__list_item_end, - STATE(441), 1, - aux_sym__list_item_definition_repeat1, - STATE(681), 1, + STATE(473), 1, + aux_sym_list_item_content_repeat1, + STATE(723), 1, aux_sym__block_quote_prefix_repeat1, - STATE(949), 1, + STATE(1035), 1, sym__block_quote_prefix, - [14151] = 6, - ACTIONS(1306), 1, + [14897] = 6, + ACTIONS(1380), 1, sym__list_item_continuation, - ACTIONS(1310), 1, + ACTIONS(1384), 1, sym__block_quote_continuation, - ACTIONS(1326), 1, + ACTIONS(1398), 1, sym__list_item_end, - STATE(456), 1, - aux_sym__list_item_definition_repeat1, - STATE(681), 1, + STATE(499), 1, + aux_sym_list_item_content_repeat1, + STATE(723), 1, aux_sym__block_quote_prefix_repeat1, - STATE(949), 1, + STATE(1035), 1, sym__block_quote_prefix, - [14170] = 6, - ACTIONS(1306), 1, + [14916] = 6, + ACTIONS(1380), 1, sym__list_item_continuation, - ACTIONS(1310), 1, + ACTIONS(1384), 1, sym__block_quote_continuation, - ACTIONS(1328), 1, + ACTIONS(1400), 1, sym__list_item_end, - STATE(443), 1, - aux_sym__list_item_definition_repeat1, - STATE(681), 1, + STATE(475), 1, + aux_sym_list_item_content_repeat1, + STATE(723), 1, aux_sym__block_quote_prefix_repeat1, - STATE(949), 1, + STATE(1035), 1, sym__block_quote_prefix, - [14189] = 6, - ACTIONS(1306), 1, + [14935] = 6, + ACTIONS(1380), 1, sym__list_item_continuation, - ACTIONS(1310), 1, + ACTIONS(1384), 1, sym__block_quote_continuation, - ACTIONS(1330), 1, + ACTIONS(1402), 1, sym__list_item_end, - STATE(456), 1, - aux_sym__list_item_definition_repeat1, - STATE(681), 1, + STATE(499), 1, + aux_sym_list_item_content_repeat1, + STATE(723), 1, aux_sym__block_quote_prefix_repeat1, - STATE(949), 1, + STATE(1035), 1, sym__block_quote_prefix, - [14208] = 6, - ACTIONS(1306), 1, + [14954] = 6, + ACTIONS(1380), 1, sym__list_item_continuation, - ACTIONS(1310), 1, + ACTIONS(1384), 1, sym__block_quote_continuation, - ACTIONS(1332), 1, + ACTIONS(1404), 1, sym__list_item_end, - STATE(445), 1, - aux_sym__list_item_definition_repeat1, - STATE(681), 1, + STATE(477), 1, + aux_sym_list_item_content_repeat1, + STATE(723), 1, aux_sym__block_quote_prefix_repeat1, - STATE(949), 1, + STATE(1035), 1, sym__block_quote_prefix, - [14227] = 6, - ACTIONS(1306), 1, + [14973] = 6, + ACTIONS(1380), 1, sym__list_item_continuation, - ACTIONS(1310), 1, + ACTIONS(1384), 1, sym__block_quote_continuation, - ACTIONS(1334), 1, + ACTIONS(1406), 1, sym__list_item_end, - STATE(456), 1, - aux_sym__list_item_definition_repeat1, - STATE(681), 1, + STATE(499), 1, + aux_sym_list_item_content_repeat1, + STATE(723), 1, aux_sym__block_quote_prefix_repeat1, - STATE(949), 1, + STATE(1035), 1, sym__block_quote_prefix, - [14246] = 6, - ACTIONS(1306), 1, + [14992] = 6, + ACTIONS(1380), 1, sym__list_item_continuation, - ACTIONS(1310), 1, + ACTIONS(1384), 1, sym__block_quote_continuation, - ACTIONS(1336), 1, + ACTIONS(1408), 1, sym__list_item_end, - STATE(447), 1, - aux_sym__list_item_definition_repeat1, - STATE(681), 1, + STATE(479), 1, + aux_sym_list_item_content_repeat1, + STATE(723), 1, aux_sym__block_quote_prefix_repeat1, - STATE(949), 1, + STATE(1035), 1, sym__block_quote_prefix, - [14265] = 6, - ACTIONS(1306), 1, + [15011] = 6, + ACTIONS(1380), 1, sym__list_item_continuation, - ACTIONS(1310), 1, + ACTIONS(1384), 1, sym__block_quote_continuation, - ACTIONS(1338), 1, + ACTIONS(1410), 1, sym__list_item_end, - STATE(456), 1, - aux_sym__list_item_definition_repeat1, - STATE(681), 1, + STATE(499), 1, + aux_sym_list_item_content_repeat1, + STATE(723), 1, aux_sym__block_quote_prefix_repeat1, - STATE(949), 1, + STATE(1035), 1, sym__block_quote_prefix, - [14284] = 6, - ACTIONS(1306), 1, + [15030] = 6, + ACTIONS(1380), 1, sym__list_item_continuation, - ACTIONS(1310), 1, + ACTIONS(1384), 1, sym__block_quote_continuation, - ACTIONS(1340), 1, + ACTIONS(1412), 1, sym__list_item_end, - STATE(449), 1, - aux_sym__list_item_definition_repeat1, - STATE(681), 1, + STATE(481), 1, + aux_sym_list_item_content_repeat1, + STATE(723), 1, aux_sym__block_quote_prefix_repeat1, - STATE(949), 1, + STATE(1035), 1, sym__block_quote_prefix, - [14303] = 6, - ACTIONS(1306), 1, + [15049] = 6, + ACTIONS(1380), 1, sym__list_item_continuation, - ACTIONS(1310), 1, + ACTIONS(1384), 1, sym__block_quote_continuation, - ACTIONS(1342), 1, + ACTIONS(1414), 1, sym__list_item_end, - STATE(456), 1, - aux_sym__list_item_definition_repeat1, - STATE(681), 1, + STATE(499), 1, + aux_sym_list_item_content_repeat1, + STATE(723), 1, aux_sym__block_quote_prefix_repeat1, - STATE(949), 1, + STATE(1035), 1, sym__block_quote_prefix, - [14322] = 6, - ACTIONS(1306), 1, + [15068] = 1, + ACTIONS(1416), 6, + anon_sym_RBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + sym__whitespace1, + anon_sym_PERCENT, + sym__id, + [15077] = 1, + ACTIONS(1418), 6, + anon_sym_RBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + sym__whitespace1, + anon_sym_PERCENT, + sym__id, + [15086] = 1, + ACTIONS(1420), 6, + anon_sym_RBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + sym__whitespace1, + anon_sym_PERCENT, + sym__id, + [15095] = 6, + ACTIONS(1380), 1, sym__list_item_continuation, - ACTIONS(1310), 1, + ACTIONS(1384), 1, sym__block_quote_continuation, - ACTIONS(1344), 1, + ACTIONS(1422), 1, sym__list_item_end, - STATE(451), 1, - aux_sym__list_item_definition_repeat1, - STATE(681), 1, + STATE(499), 1, + aux_sym_list_item_content_repeat1, + STATE(723), 1, aux_sym__block_quote_prefix_repeat1, - STATE(949), 1, + STATE(1035), 1, sym__block_quote_prefix, - [14341] = 6, - ACTIONS(1306), 1, + [15114] = 1, + ACTIONS(604), 6, + sym__newline, sym__list_item_continuation, - ACTIONS(1310), 1, - sym__block_quote_continuation, - ACTIONS(1346), 1, sym__list_item_end, - STATE(456), 1, - aux_sym__list_item_definition_repeat1, - STATE(681), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(949), 1, - sym__block_quote_prefix, - [14360] = 6, - ACTIONS(1306), 1, - sym__list_item_continuation, - ACTIONS(1310), 1, sym__block_quote_continuation, - ACTIONS(1348), 1, + sym__table_caption_begin, + anon_sym_PIPE, + [15123] = 1, + ACTIONS(576), 6, + sym__newline, + sym__list_item_continuation, sym__list_item_end, - STATE(456), 1, - aux_sym__list_item_definition_repeat1, - STATE(681), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(949), 1, - sym__block_quote_prefix, - [14379] = 6, - ACTIONS(1306), 1, + sym__block_quote_continuation, + sym__table_caption_begin, + anon_sym_PIPE, + [15132] = 1, + ACTIONS(1424), 6, + anon_sym_RBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + sym__whitespace1, + anon_sym_PERCENT, + sym__id, + [15141] = 1, + ACTIONS(1426), 6, + anon_sym_RBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + sym__whitespace1, + anon_sym_PERCENT, + sym__id, + [15150] = 1, + ACTIONS(1428), 6, + anon_sym_RBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + sym__whitespace1, + anon_sym_PERCENT, + sym__id, + [15159] = 1, + ACTIONS(1430), 6, + anon_sym_RBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + sym__whitespace1, + anon_sym_PERCENT, + sym__id, + [15168] = 6, + ACTIONS(1380), 1, sym__list_item_continuation, - ACTIONS(1310), 1, + ACTIONS(1384), 1, sym__block_quote_continuation, - ACTIONS(1350), 1, + ACTIONS(1432), 1, sym__list_item_end, - STATE(455), 1, - aux_sym__list_item_definition_repeat1, - STATE(681), 1, + STATE(499), 1, + aux_sym_list_item_content_repeat1, + STATE(723), 1, aux_sym__block_quote_prefix_repeat1, - STATE(949), 1, + STATE(1035), 1, sym__block_quote_prefix, - [14398] = 6, - ACTIONS(1306), 1, + [15187] = 6, + ACTIONS(1380), 1, sym__list_item_continuation, - ACTIONS(1310), 1, + ACTIONS(1384), 1, sym__block_quote_continuation, - ACTIONS(1352), 1, + ACTIONS(1434), 1, sym__list_item_end, - STATE(456), 1, - aux_sym__list_item_definition_repeat1, - STATE(681), 1, + STATE(502), 1, + aux_sym_list_item_content_repeat1, + STATE(723), 1, aux_sym__block_quote_prefix_repeat1, - STATE(949), 1, + STATE(1035), 1, sym__block_quote_prefix, - [14417] = 6, - ACTIONS(1306), 1, + [15206] = 6, + ACTIONS(1380), 1, sym__list_item_continuation, - ACTIONS(1310), 1, + ACTIONS(1384), 1, sym__block_quote_continuation, - ACTIONS(1354), 1, + ACTIONS(1436), 1, sym__list_item_end, - STATE(456), 1, - aux_sym__list_item_definition_repeat1, - STATE(681), 1, + STATE(485), 1, + aux_sym_list_item_content_repeat1, + STATE(723), 1, aux_sym__block_quote_prefix_repeat1, - STATE(949), 1, + STATE(1035), 1, sym__block_quote_prefix, - [14436] = 6, - ACTIONS(1356), 1, + [15225] = 1, + ACTIONS(1438), 6, + anon_sym_RBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + sym__whitespace1, + anon_sym_PERCENT, + sym__id, + [15234] = 6, + ACTIONS(1380), 1, sym__list_item_continuation, - ACTIONS(1359), 1, - sym__list_item_end, - ACTIONS(1361), 1, + ACTIONS(1384), 1, sym__block_quote_continuation, - STATE(456), 1, - aux_sym__list_item_definition_repeat1, - STATE(681), 1, + ACTIONS(1440), 1, + sym__list_item_end, + STATE(503), 1, + aux_sym_list_item_content_repeat1, + STATE(723), 1, aux_sym__block_quote_prefix_repeat1, - STATE(949), 1, + STATE(1035), 1, sym__block_quote_prefix, - [14455] = 1, - ACTIONS(618), 6, - sym__newline, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - sym__table_caption_begin, - anon_sym_PIPE, - [14464] = 6, - ACTIONS(1306), 1, + [15253] = 6, + ACTIONS(1380), 1, sym__list_item_continuation, - ACTIONS(1310), 1, + ACTIONS(1384), 1, sym__block_quote_continuation, - ACTIONS(1364), 1, + ACTIONS(1442), 1, sym__list_item_end, - STATE(456), 1, - aux_sym__list_item_definition_repeat1, - STATE(681), 1, + STATE(499), 1, + aux_sym_list_item_content_repeat1, + STATE(723), 1, aux_sym__block_quote_prefix_repeat1, - STATE(949), 1, + STATE(1035), 1, sym__block_quote_prefix, - [14483] = 1, - ACTIONS(564), 6, + [15272] = 1, + ACTIONS(660), 6, sym__newline, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, sym__table_caption_begin, anon_sym_PIPE, - [14492] = 6, - ACTIONS(1306), 1, + [15281] = 6, + ACTIONS(1444), 1, sym__list_item_continuation, - ACTIONS(1310), 1, - sym__block_quote_continuation, - ACTIONS(1366), 1, + ACTIONS(1447), 1, sym__list_item_end, - STATE(452), 1, - aux_sym__list_item_definition_repeat1, - STATE(681), 1, + ACTIONS(1449), 1, + sym__block_quote_continuation, + STATE(499), 1, + aux_sym_list_item_content_repeat1, + STATE(723), 1, aux_sym__block_quote_prefix_repeat1, - STATE(949), 1, + STATE(1035), 1, sym__block_quote_prefix, - [14511] = 1, - ACTIONS(1368), 6, - anon_sym_RBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - sym__whitespace1, - anon_sym_PERCENT, - sym__id, - [14520] = 1, - ACTIONS(1370), 6, + [15300] = 1, + ACTIONS(1452), 6, anon_sym_RBRACE, anon_sym_DOT, aux_sym_identifier_token1, sym__whitespace1, anon_sym_PERCENT, sym__id, - [14529] = 1, - ACTIONS(568), 6, - sym__newline, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - sym__table_caption_begin, - anon_sym_PIPE, - [14538] = 6, - ACTIONS(1306), 1, + [15309] = 6, + ACTIONS(1380), 1, sym__list_item_continuation, - ACTIONS(1310), 1, + ACTIONS(1384), 1, sym__block_quote_continuation, - ACTIONS(1372), 1, + ACTIONS(1454), 1, sym__list_item_end, - STATE(466), 1, - aux_sym__list_item_definition_repeat1, - STATE(681), 1, + STATE(497), 1, + aux_sym_list_item_content_repeat1, + STATE(723), 1, aux_sym__block_quote_prefix_repeat1, - STATE(949), 1, + STATE(1035), 1, sym__block_quote_prefix, - [14557] = 1, - ACTIONS(1374), 6, - anon_sym_RBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - sym__whitespace1, - anon_sym_PERCENT, - sym__id, - [14566] = 6, - ACTIONS(1306), 1, + [15328] = 6, + ACTIONS(1380), 1, sym__list_item_continuation, - ACTIONS(1310), 1, + ACTIONS(1384), 1, sym__block_quote_continuation, - ACTIONS(1376), 1, + ACTIONS(1456), 1, sym__list_item_end, - STATE(456), 1, - aux_sym__list_item_definition_repeat1, - STATE(681), 1, + STATE(499), 1, + aux_sym_list_item_content_repeat1, + STATE(723), 1, aux_sym__block_quote_prefix_repeat1, - STATE(949), 1, + STATE(1035), 1, sym__block_quote_prefix, - [14585] = 1, - ACTIONS(1378), 6, - anon_sym_RBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - sym__whitespace1, - anon_sym_PERCENT, - sym__id, - [14594] = 6, - ACTIONS(1306), 1, + [15347] = 6, + ACTIONS(1380), 1, sym__list_item_continuation, - ACTIONS(1310), 1, + ACTIONS(1384), 1, sym__block_quote_continuation, - ACTIONS(1380), 1, + ACTIONS(1458), 1, sym__list_item_end, - STATE(458), 1, - aux_sym__list_item_definition_repeat1, - STATE(681), 1, + STATE(499), 1, + aux_sym_list_item_content_repeat1, + STATE(723), 1, aux_sym__block_quote_prefix_repeat1, - STATE(949), 1, + STATE(1035), 1, sym__block_quote_prefix, - [14613] = 1, - ACTIONS(590), 6, + [15366] = 1, + ACTIONS(630), 6, sym__newline, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, sym__table_caption_begin, anon_sym_PIPE, - [14622] = 1, - ACTIONS(1382), 6, - anon_sym_RBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - sym__whitespace1, - anon_sym_PERCENT, - sym__id, - [14631] = 1, - ACTIONS(1384), 6, - anon_sym_RBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - sym__whitespace1, - anon_sym_PERCENT, - sym__id, - [14640] = 1, - ACTIONS(622), 6, + [15375] = 1, + ACTIONS(656), 6, sym__newline, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, sym__table_caption_begin, anon_sym_PIPE, - [14649] = 6, - ACTIONS(1306), 1, - sym__list_item_continuation, - ACTIONS(1310), 1, - sym__block_quote_continuation, - ACTIONS(1386), 1, - sym__list_item_end, - STATE(454), 1, - aux_sym__list_item_definition_repeat1, - STATE(681), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(949), 1, - sym__block_quote_prefix, - [14668] = 1, - ACTIONS(1388), 6, - anon_sym_RBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - sym__whitespace1, - anon_sym_PERCENT, - sym__id, - [14677] = 1, - ACTIONS(594), 6, + [15384] = 1, + ACTIONS(560), 6, sym__newline, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, sym__table_caption_begin, anon_sym_PIPE, - [14686] = 6, - ACTIONS(1306), 1, + [15393] = 6, + ACTIONS(1380), 1, sym__list_item_continuation, - ACTIONS(1310), 1, + ACTIONS(1384), 1, sym__block_quote_continuation, - ACTIONS(1390), 1, + ACTIONS(1460), 1, sym__list_item_end, - STATE(478), 1, - aux_sym__list_item_definition_repeat1, - STATE(681), 1, + STATE(508), 1, + aux_sym_list_item_content_repeat1, + STATE(723), 1, aux_sym__block_quote_prefix_repeat1, - STATE(949), 1, + STATE(1035), 1, sym__block_quote_prefix, - [14705] = 1, - ACTIONS(1392), 6, - anon_sym_RBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - sym__whitespace1, - anon_sym_PERCENT, - sym__id, - [14714] = 6, - ACTIONS(1306), 1, + [15412] = 6, + ACTIONS(1380), 1, sym__list_item_continuation, - ACTIONS(1310), 1, + ACTIONS(1384), 1, sym__block_quote_continuation, - ACTIONS(1394), 1, + ACTIONS(1462), 1, sym__list_item_end, - STATE(456), 1, - aux_sym__list_item_definition_repeat1, - STATE(681), 1, + STATE(499), 1, + aux_sym_list_item_content_repeat1, + STATE(723), 1, aux_sym__block_quote_prefix_repeat1, - STATE(949), 1, + STATE(1035), 1, sym__block_quote_prefix, - [14733] = 6, - ACTIONS(1306), 1, + [15431] = 6, + ACTIONS(1380), 1, sym__list_item_continuation, - ACTIONS(1310), 1, + ACTIONS(1384), 1, sym__block_quote_continuation, - ACTIONS(1396), 1, + ACTIONS(1464), 1, sym__list_item_end, - STATE(480), 1, - aux_sym__list_item_definition_repeat1, - STATE(681), 1, + STATE(499), 1, + aux_sym_list_item_content_repeat1, + STATE(723), 1, aux_sym__block_quote_prefix_repeat1, - STATE(949), 1, + STATE(1035), 1, sym__block_quote_prefix, - [14752] = 6, - ACTIONS(1306), 1, + [15450] = 6, + ACTIONS(1380), 1, sym__list_item_continuation, - ACTIONS(1310), 1, + ACTIONS(1384), 1, sym__block_quote_continuation, - ACTIONS(1398), 1, + ACTIONS(1466), 1, sym__list_item_end, - STATE(456), 1, - aux_sym__list_item_definition_repeat1, - STATE(681), 1, + STATE(511), 1, + aux_sym_list_item_content_repeat1, + STATE(723), 1, aux_sym__block_quote_prefix_repeat1, - STATE(949), 1, + STATE(1035), 1, sym__block_quote_prefix, - [14771] = 6, - ACTIONS(1306), 1, + [15469] = 6, + ACTIONS(1380), 1, sym__list_item_continuation, - ACTIONS(1310), 1, + ACTIONS(1384), 1, sym__block_quote_continuation, - ACTIONS(1400), 1, + ACTIONS(1468), 1, sym__list_item_end, - STATE(482), 1, - aux_sym__list_item_definition_repeat1, - STATE(681), 1, + STATE(499), 1, + aux_sym_list_item_content_repeat1, + STATE(723), 1, aux_sym__block_quote_prefix_repeat1, - STATE(949), 1, + STATE(1035), 1, sym__block_quote_prefix, - [14790] = 6, - ACTIONS(1306), 1, + [15488] = 6, + ACTIONS(1380), 1, sym__list_item_continuation, - ACTIONS(1310), 1, + ACTIONS(1384), 1, sym__block_quote_continuation, - ACTIONS(1402), 1, + ACTIONS(1470), 1, sym__list_item_end, - STATE(456), 1, - aux_sym__list_item_definition_repeat1, - STATE(681), 1, + STATE(514), 1, + aux_sym_list_item_content_repeat1, + STATE(723), 1, aux_sym__block_quote_prefix_repeat1, - STATE(949), 1, + STATE(1035), 1, sym__block_quote_prefix, - [14809] = 1, - ACTIONS(1404), 6, - anon_sym_RBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - sym__whitespace1, - anon_sym_PERCENT, - sym__id, - [14818] = 6, - ACTIONS(1306), 1, + [15507] = 6, + ACTIONS(1380), 1, sym__list_item_continuation, - ACTIONS(1310), 1, + ACTIONS(1384), 1, sym__block_quote_continuation, - ACTIONS(1406), 1, + ACTIONS(1472), 1, sym__list_item_end, - STATE(485), 1, - aux_sym__list_item_definition_repeat1, - STATE(681), 1, + STATE(509), 1, + aux_sym_list_item_content_repeat1, + STATE(723), 1, aux_sym__block_quote_prefix_repeat1, - STATE(949), 1, + STATE(1035), 1, sym__block_quote_prefix, - [14837] = 6, - ACTIONS(1306), 1, + [15526] = 6, + ACTIONS(1380), 1, sym__list_item_continuation, - ACTIONS(1310), 1, + ACTIONS(1384), 1, sym__block_quote_continuation, - ACTIONS(1408), 1, + ACTIONS(1474), 1, + sym__list_item_end, + STATE(499), 1, + aux_sym_list_item_content_repeat1, + STATE(723), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(1035), 1, + sym__block_quote_prefix, + [15545] = 6, + ACTIONS(1384), 1, + sym__block_quote_continuation, + ACTIONS(1476), 1, + sym__list_item_continuation, + ACTIONS(1478), 1, sym__list_item_end, - STATE(456), 1, + STATE(521), 1, aux_sym__list_item_definition_repeat1, - STATE(681), 1, + STATE(723), 1, aux_sym__block_quote_prefix_repeat1, - STATE(949), 1, + STATE(1101), 1, sym__block_quote_prefix, - [14856] = 6, - ACTIONS(1306), 1, + [15564] = 6, + ACTIONS(1480), 1, sym__list_item_continuation, - ACTIONS(1310), 1, - sym__block_quote_continuation, - ACTIONS(1410), 1, + ACTIONS(1483), 1, sym__list_item_end, - STATE(487), 1, + ACTIONS(1485), 1, + sym__block_quote_continuation, + STATE(516), 1, aux_sym__list_item_definition_repeat1, - STATE(681), 1, + STATE(723), 1, aux_sym__block_quote_prefix_repeat1, - STATE(949), 1, + STATE(1101), 1, sym__block_quote_prefix, - [14875] = 6, - ACTIONS(1306), 1, + [15583] = 6, + ACTIONS(1380), 1, sym__list_item_continuation, - ACTIONS(1310), 1, + ACTIONS(1384), 1, sym__block_quote_continuation, - ACTIONS(1412), 1, + ACTIONS(1488), 1, sym__list_item_end, - STATE(456), 1, - aux_sym__list_item_definition_repeat1, - STATE(681), 1, + STATE(492), 1, + aux_sym_list_item_content_repeat1, + STATE(723), 1, aux_sym__block_quote_prefix_repeat1, - STATE(949), 1, + STATE(1035), 1, sym__block_quote_prefix, - [14894] = 6, - ACTIONS(1306), 1, + [15602] = 6, + ACTIONS(1380), 1, sym__list_item_continuation, - ACTIONS(1310), 1, + ACTIONS(1384), 1, sym__block_quote_continuation, - ACTIONS(1414), 1, + ACTIONS(1490), 1, sym__list_item_end, - STATE(433), 1, + STATE(519), 1, + aux_sym_list_item_content_repeat1, + STATE(723), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(1035), 1, + sym__block_quote_prefix, + [15621] = 6, + ACTIONS(1380), 1, + sym__list_item_continuation, + ACTIONS(1384), 1, + sym__block_quote_continuation, + ACTIONS(1492), 1, + sym__list_item_end, + STATE(499), 1, + aux_sym_list_item_content_repeat1, + STATE(723), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(1035), 1, + sym__block_quote_prefix, + [15640] = 6, + ACTIONS(1380), 1, + sym__list_item_continuation, + ACTIONS(1384), 1, + sym__block_quote_continuation, + ACTIONS(1494), 1, + sym__list_item_end, + STATE(469), 1, + aux_sym_list_item_content_repeat1, + STATE(723), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(1035), 1, + sym__block_quote_prefix, + [15659] = 6, + ACTIONS(1384), 1, + sym__block_quote_continuation, + ACTIONS(1476), 1, + sym__list_item_continuation, + ACTIONS(1496), 1, + sym__list_item_end, + STATE(516), 1, aux_sym__list_item_definition_repeat1, - STATE(681), 1, + STATE(723), 1, aux_sym__block_quote_prefix_repeat1, - STATE(949), 1, + STATE(1101), 1, sym__block_quote_prefix, - [14913] = 1, - ACTIONS(604), 6, - sym__newline, + [15678] = 1, + ACTIONS(1498), 6, + anon_sym_RBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + sym__whitespace1, + anon_sym_PERCENT, + sym__id, + [15687] = 6, + ACTIONS(1380), 1, sym__list_item_continuation, + ACTIONS(1384), 1, + sym__block_quote_continuation, + ACTIONS(1500), 1, sym__list_item_end, + STATE(499), 1, + aux_sym_list_item_content_repeat1, + STATE(723), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(1035), 1, + sym__block_quote_prefix, + [15706] = 1, + ACTIONS(630), 5, + sym__block_close, + sym__newline, sym__block_quote_continuation, sym__table_caption_begin, anon_sym_PIPE, - [14922] = 1, - ACTIONS(604), 5, + [15714] = 1, + ACTIONS(634), 5, sym__block_close, sym__newline, sym__block_quote_continuation, sym__table_caption_begin, anon_sym_PIPE, - [14930] = 3, - ACTIONS(1102), 1, - sym__table_caption_begin, - STATE(682), 1, - sym_table_caption, - ACTIONS(530), 3, - sym__list_item_continuation, - sym__list_item_end, + [15722] = 4, + ACTIONS(1502), 1, + sym__block_close, + ACTIONS(1504), 1, sym__block_quote_continuation, - [14942] = 1, - ACTIONS(568), 5, + STATE(526), 1, + aux_sym__block_quote_content_repeat1, + STATE(70), 2, + sym__block_quote_prefix, + aux_sym__block_quote_prefix_repeat1, + [15736] = 1, + ACTIONS(656), 5, sym__block_close, sym__newline, sym__block_quote_continuation, sym__table_caption_begin, anon_sym_PIPE, - [14950] = 1, - ACTIONS(564), 5, - sym__block_close, + [15744] = 1, + ACTIONS(604), 5, sym__newline, + sym__list_item_content_spacer, sym__block_quote_continuation, sym__table_caption_begin, anon_sym_PIPE, - [14958] = 1, - ACTIONS(622), 5, + [15752] = 1, + ACTIONS(660), 5, sym__block_close, sym__newline, sym__block_quote_continuation, sym__table_caption_begin, anon_sym_PIPE, - [14966] = 1, - ACTIONS(594), 5, + [15760] = 1, + ACTIONS(560), 5, sym__block_close, sym__newline, sym__block_quote_continuation, sym__table_caption_begin, anon_sym_PIPE, - [14974] = 4, - ACTIONS(1416), 1, + [15768] = 1, + ACTIONS(576), 5, sym__block_close, - ACTIONS(1418), 1, + sym__newline, sym__block_quote_continuation, - STATE(496), 1, - aux_sym__block_quote_content_repeat1, - STATE(63), 2, - sym__block_quote_prefix, - aux_sym__block_quote_prefix_repeat1, - [14988] = 1, - ACTIONS(618), 5, - sym__block_close, + sym__table_caption_begin, + anon_sym_PIPE, + [15776] = 1, + ACTIONS(630), 5, sym__newline, + sym__list_item_content_spacer, sym__block_quote_continuation, sym__table_caption_begin, anon_sym_PIPE, - [14996] = 4, - ACTIONS(1421), 1, + [15784] = 4, + ACTIONS(1507), 1, sym__block_close, - ACTIONS(1423), 1, + ACTIONS(1509), 1, sym__block_quote_continuation, - STATE(499), 1, + STATE(535), 1, aux_sym__block_quote_content_repeat1, - STATE(63), 2, + STATE(70), 2, sym__block_quote_prefix, aux_sym__block_quote_prefix_repeat1, - [15010] = 4, - ACTIONS(1423), 1, + [15798] = 1, + ACTIONS(656), 5, + sym__newline, + sym__list_item_content_spacer, + sym__block_quote_continuation, + sym__table_caption_begin, + anon_sym_PIPE, + [15806] = 4, + ACTIONS(1509), 1, sym__block_quote_continuation, - ACTIONS(1425), 1, + ACTIONS(1511), 1, sym__block_close, - STATE(496), 1, + STATE(526), 1, aux_sym__block_quote_content_repeat1, - STATE(63), 2, + STATE(70), 2, sym__block_quote_prefix, aux_sym__block_quote_prefix_repeat1, - [15024] = 1, - ACTIONS(590), 5, + [15820] = 1, + ACTIONS(576), 5, + sym__newline, + sym__list_item_content_spacer, + sym__block_quote_continuation, + sym__table_caption_begin, + anon_sym_PIPE, + [15828] = 1, + ACTIONS(560), 5, + sym__newline, + sym__list_item_content_spacer, + sym__block_quote_continuation, + sym__table_caption_begin, + anon_sym_PIPE, + [15836] = 1, + ACTIONS(634), 5, + sym__newline, + sym__list_item_content_spacer, + sym__block_quote_continuation, + sym__table_caption_begin, + anon_sym_PIPE, + [15844] = 1, + ACTIONS(604), 5, sym__block_close, sym__newline, sym__block_quote_continuation, sym__table_caption_begin, anon_sym_PIPE, - [15032] = 4, - ACTIONS(1427), 1, - anon_sym_EQ, - ACTIONS(1429), 1, - sym_language, - ACTIONS(1431), 1, + [15852] = 1, + ACTIONS(660), 5, sym__newline, - STATE(1062), 1, - sym_raw_block_info, - [15045] = 3, - ACTIONS(1433), 1, - aux_sym__line_token1, - STATE(1014), 1, - sym_frontmatter_content, - STATE(505), 2, - sym__line, - aux_sym_frontmatter_content_repeat1, - [15056] = 4, - ACTIONS(1427), 1, + sym__list_item_content_spacer, + sym__block_quote_continuation, + sym__table_caption_begin, + anon_sym_PIPE, + [15860] = 3, + ACTIONS(1136), 1, + sym__table_caption_begin, + STATE(772), 1, + sym_table_caption, + ACTIONS(556), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [15872] = 4, + ACTIONS(45), 1, + sym_list_marker_decimal_paren, + ACTIONS(1513), 1, + sym__block_close, + STATE(583), 1, + aux_sym__list_decimal_paren_repeat1, + STATE(837), 1, + sym__list_item_decimal_paren, + [15885] = 4, + ACTIONS(1515), 1, anon_sym_EQ, - ACTIONS(1435), 1, + ACTIONS(1517), 1, sym_language, - ACTIONS(1437), 1, + ACTIONS(1519), 1, sym__newline, - STATE(1057), 1, + STATE(1244), 1, sym_raw_block_info, - [15069] = 3, - ACTIONS(1439), 1, + [15898] = 3, + ACTIONS(1521), 1, anon_sym_PERCENT, - STATE(508), 1, + STATE(559), 1, aux_sym__comment_no_newline_repeat1, - ACTIONS(1441), 2, + ACTIONS(1523), 2, sym_backslash_escape, aux_sym__comment_no_newline_token1, - [15080] = 3, - ACTIONS(1433), 1, + [15909] = 2, + ACTIONS(1525), 1, + sym__eof_or_newline, + ACTIONS(588), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [15918] = 3, + ACTIONS(1527), 1, aux_sym__line_token1, - ACTIONS(1443), 1, + ACTIONS(1529), 1, sym_frontmatter_marker, - STATE(509), 2, + STATE(561), 2, sym__line, aux_sym_frontmatter_content_repeat1, - [15091] = 3, - ACTIONS(1433), 1, + [15929] = 3, + ACTIONS(1527), 1, aux_sym__line_token1, - STATE(1059), 1, + STATE(1206), 1, sym_frontmatter_content, - STATE(505), 2, + STATE(546), 2, sym__line, aux_sym_frontmatter_content_repeat1, - [15102] = 3, - ACTIONS(1445), 1, + [15940] = 2, + ACTIONS(1531), 1, + sym__div_end, + ACTIONS(622), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [15949] = 2, + ACTIONS(1533), 1, + sym__code_block_end, + ACTIONS(596), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [15958] = 2, + ACTIONS(1535), 1, + sym__div_end, + ACTIONS(592), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [15967] = 2, + ACTIONS(1537), 1, + sym__div_end, + ACTIONS(614), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [15976] = 2, + ACTIONS(1539), 1, + sym__code_block_end, + ACTIONS(606), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [15985] = 2, + ACTIONS(1541), 1, + sym__code_block_end, + ACTIONS(644), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [15994] = 2, + ACTIONS(1543), 1, + sym__code_block_end, + ACTIONS(650), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [16003] = 2, + ACTIONS(1545), 1, + sym__div_end, + ACTIONS(676), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [16012] = 2, + ACTIONS(1547), 1, + sym__code_block_end, + ACTIONS(564), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [16021] = 2, + ACTIONS(1549), 1, + sym__code_block_end, + ACTIONS(570), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [16030] = 2, + ACTIONS(1551), 1, + sym__eof_or_newline, + ACTIONS(580), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [16039] = 3, + ACTIONS(1553), 1, anon_sym_PERCENT, - STATE(504), 1, + STATE(559), 1, aux_sym__comment_no_newline_repeat1, - ACTIONS(1441), 2, + ACTIONS(1555), 2, sym_backslash_escape, aux_sym__comment_no_newline_token1, - [15113] = 3, - ACTIONS(1447), 1, + [16050] = 3, + ACTIONS(1558), 1, anon_sym_PERCENT, - STATE(508), 1, + STATE(544), 1, aux_sym__comment_no_newline_repeat1, - ACTIONS(1449), 2, + ACTIONS(1523), 2, sym_backslash_escape, aux_sym__comment_no_newline_token1, - [15124] = 3, - ACTIONS(1452), 1, + [16061] = 3, + ACTIONS(1560), 1, aux_sym__line_token1, - ACTIONS(1455), 1, + ACTIONS(1563), 1, sym_frontmatter_marker, - STATE(509), 2, + STATE(561), 2, sym__line, aux_sym_frontmatter_content_repeat1, - [15135] = 4, + [16072] = 4, ACTIONS(33), 1, sym_list_marker_definition, - ACTIONS(1457), 1, + ACTIONS(1565), 1, sym__block_close, - STATE(529), 1, + STATE(579), 1, aux_sym__list_definition_repeat1, - STATE(736), 1, + STATE(819), 1, sym__list_item_definition, - [15148] = 4, + [16085] = 4, ACTIONS(35), 1, sym_list_marker_decimal_period, - ACTIONS(1459), 1, + ACTIONS(1567), 1, sym__block_close, - STATE(531), 1, + STATE(581), 1, aux_sym__list_decimal_period_repeat1, - STATE(795), 1, + STATE(852), 1, sym__list_item_decimal_period, - [15161] = 4, - ACTIONS(45), 1, - sym_list_marker_decimal_paren, - ACTIONS(1461), 1, - sym__block_close, - STATE(549), 1, - aux_sym__list_decimal_paren_repeat1, - STATE(848), 1, - sym__list_item_decimal_paren, - [15174] = 4, + [16098] = 4, ACTIONS(55), 1, sym_list_marker_decimal_parens, - ACTIONS(1463), 1, + ACTIONS(1569), 1, sym__block_close, - STATE(551), 1, + STATE(585), 1, aux_sym__list_decimal_parens_repeat1, - STATE(772), 1, + STATE(815), 1, sym__list_item_decimal_parens, - [15187] = 4, + [16111] = 4, ACTIONS(37), 1, sym_list_marker_lower_alpha_period, - ACTIONS(1465), 1, + ACTIONS(1571), 1, sym__block_close, - STATE(553), 1, + STATE(587), 1, aux_sym__list_lower_alpha_period_repeat1, - STATE(787), 1, + STATE(843), 1, sym__list_item_lower_alpha_period, - [15200] = 4, + [16124] = 4, ACTIONS(47), 1, sym_list_marker_lower_alpha_paren, - ACTIONS(1467), 1, + ACTIONS(1573), 1, sym__block_close, - STATE(555), 1, + STATE(604), 1, aux_sym__list_lower_alpha_paren_repeat1, - STATE(792), 1, + STATE(850), 1, sym__list_item_lower_alpha_paren, - [15213] = 4, + [16137] = 4, ACTIONS(57), 1, sym_list_marker_lower_alpha_parens, - ACTIONS(1469), 1, + ACTIONS(1575), 1, sym__block_close, - STATE(557), 1, + STATE(606), 1, aux_sym__list_lower_alpha_parens_repeat1, - STATE(793), 1, + STATE(853), 1, sym__list_item_lower_alpha_parens, - [15226] = 4, + [16150] = 4, ACTIONS(39), 1, sym_list_marker_upper_alpha_period, - ACTIONS(1471), 1, + ACTIONS(1577), 1, sym__block_close, - STATE(559), 1, + STATE(608), 1, aux_sym__list_upper_alpha_period_repeat1, - STATE(797), 1, + STATE(854), 1, sym__list_item_upper_alpha_period, - [15239] = 4, + [16163] = 4, ACTIONS(49), 1, sym_list_marker_upper_alpha_paren, - ACTIONS(1473), 1, + ACTIONS(1579), 1, sym__block_close, - STATE(593), 1, + STATE(610), 1, aux_sym__list_upper_alpha_paren_repeat1, - STATE(798), 1, + STATE(855), 1, sym__list_item_upper_alpha_paren, - [15252] = 4, + [16176] = 4, ACTIONS(59), 1, sym_list_marker_upper_alpha_parens, - ACTIONS(1475), 1, + ACTIONS(1581), 1, sym__block_close, - STATE(595), 1, + STATE(628), 1, aux_sym__list_upper_alpha_parens_repeat1, - STATE(799), 1, + STATE(856), 1, sym__list_item_upper_alpha_parens, - [15265] = 4, + [16189] = 4, ACTIONS(41), 1, sym_list_marker_lower_roman_period, - ACTIONS(1477), 1, + ACTIONS(1583), 1, sym__block_close, - STATE(598), 1, + STATE(630), 1, aux_sym__list_lower_roman_period_repeat1, - STATE(801), 1, + STATE(857), 1, sym__list_item_lower_roman_period, - [15278] = 4, + [16202] = 4, ACTIONS(51), 1, sym_list_marker_lower_roman_paren, - ACTIONS(1479), 1, + ACTIONS(1585), 1, sym__block_close, - STATE(600), 1, + STATE(648), 1, aux_sym__list_lower_roman_paren_repeat1, - STATE(802), 1, + STATE(871), 1, sym__list_item_lower_roman_paren, - [15291] = 4, + [16215] = 4, ACTIONS(61), 1, sym_list_marker_lower_roman_parens, - ACTIONS(1481), 1, + ACTIONS(1587), 1, sym__block_close, - STATE(604), 1, + STATE(650), 1, aux_sym__list_lower_roman_parens_repeat1, - STATE(814), 1, + STATE(874), 1, sym__list_item_lower_roman_parens, - [15304] = 4, + [16228] = 4, ACTIONS(43), 1, sym_list_marker_upper_roman_period, - ACTIONS(1483), 1, + ACTIONS(1589), 1, sym__block_close, - STATE(608), 1, + STATE(652), 1, aux_sym__list_upper_roman_period_repeat1, - STATE(818), 1, + STATE(876), 1, sym__list_item_upper_roman_period, - [15317] = 4, + [16241] = 4, ACTIONS(53), 1, sym_list_marker_upper_roman_paren, - ACTIONS(1485), 1, + ACTIONS(1591), 1, sym__block_close, - STATE(612), 1, + STATE(654), 1, aux_sym__list_upper_roman_paren_repeat1, - STATE(819), 1, + STATE(878), 1, sym__list_item_upper_roman_paren, - [15330] = 4, + [16254] = 4, ACTIONS(63), 1, sym_list_marker_upper_roman_parens, - ACTIONS(1487), 1, + ACTIONS(1593), 1, sym__block_close, - STATE(616), 1, + STATE(671), 1, aux_sym__list_upper_roman_parens_repeat1, - STATE(822), 1, + STATE(880), 1, sym__list_item_upper_roman_parens, - [15343] = 4, + [16267] = 4, ACTIONS(33), 1, sym_list_marker_definition, - ACTIONS(1489), 1, + ACTIONS(1595), 1, sym__block_close, - STATE(529), 1, + STATE(579), 1, aux_sym__list_definition_repeat1, - STATE(736), 1, + STATE(819), 1, sym__list_item_definition, - [15356] = 4, + [16280] = 4, ACTIONS(35), 1, sym_list_marker_decimal_period, - ACTIONS(1491), 1, + ACTIONS(1597), 1, sym__block_close, - STATE(531), 1, + STATE(581), 1, aux_sym__list_decimal_period_repeat1, - STATE(795), 1, + STATE(852), 1, sym__list_item_decimal_period, - [15369] = 4, + [16293] = 4, + ACTIONS(1599), 1, + sym__block_close, + ACTIONS(1601), 1, + sym_list_marker_definition, + STATE(579), 1, + aux_sym__list_definition_repeat1, + STATE(819), 1, + sym__list_item_definition, + [16306] = 4, ACTIONS(45), 1, sym_list_marker_decimal_paren, - ACTIONS(1493), 1, + ACTIONS(1604), 1, sym__block_close, - STATE(549), 1, + STATE(583), 1, aux_sym__list_decimal_paren_repeat1, - STATE(848), 1, + STATE(837), 1, sym__list_item_decimal_paren, - [15382] = 4, - ACTIONS(1495), 1, + [16319] = 4, + ACTIONS(1606), 1, sym__block_close, - ACTIONS(1497), 1, - sym_list_marker_definition, - STATE(529), 1, - aux_sym__list_definition_repeat1, - STATE(736), 1, - sym__list_item_definition, - [15395] = 4, + ACTIONS(1608), 1, + sym_list_marker_decimal_period, + STATE(581), 1, + aux_sym__list_decimal_period_repeat1, + STATE(852), 1, + sym__list_item_decimal_period, + [16332] = 4, ACTIONS(55), 1, sym_list_marker_decimal_parens, - ACTIONS(1500), 1, + ACTIONS(1611), 1, sym__block_close, - STATE(551), 1, + STATE(585), 1, aux_sym__list_decimal_parens_repeat1, - STATE(772), 1, + STATE(815), 1, sym__list_item_decimal_parens, - [15408] = 4, - ACTIONS(1502), 1, + [16345] = 4, + ACTIONS(1613), 1, sym__block_close, - ACTIONS(1504), 1, - sym_list_marker_decimal_period, - STATE(531), 1, - aux_sym__list_decimal_period_repeat1, - STATE(795), 1, - sym__list_item_decimal_period, - [15421] = 4, + ACTIONS(1615), 1, + sym_list_marker_decimal_paren, + STATE(583), 1, + aux_sym__list_decimal_paren_repeat1, + STATE(837), 1, + sym__list_item_decimal_paren, + [16358] = 4, ACTIONS(37), 1, sym_list_marker_lower_alpha_period, - ACTIONS(1507), 1, + ACTIONS(1618), 1, sym__block_close, - STATE(553), 1, + STATE(587), 1, aux_sym__list_lower_alpha_period_repeat1, - STATE(787), 1, + STATE(843), 1, + sym__list_item_lower_alpha_period, + [16371] = 4, + ACTIONS(1620), 1, + sym__block_close, + ACTIONS(1622), 1, + sym_list_marker_decimal_parens, + STATE(585), 1, + aux_sym__list_decimal_parens_repeat1, + STATE(815), 1, + sym__list_item_decimal_parens, + [16384] = 4, + ACTIONS(47), 1, + sym_list_marker_lower_alpha_paren, + ACTIONS(1625), 1, + sym__block_close, + STATE(604), 1, + aux_sym__list_lower_alpha_paren_repeat1, + STATE(850), 1, + sym__list_item_lower_alpha_paren, + [16397] = 4, + ACTIONS(1627), 1, + sym__block_close, + ACTIONS(1629), 1, + sym_list_marker_lower_alpha_period, + STATE(587), 1, + aux_sym__list_lower_alpha_period_repeat1, + STATE(843), 1, sym__list_item_lower_alpha_period, - [15434] = 4, + [16410] = 4, + ACTIONS(57), 1, + sym_list_marker_lower_alpha_parens, + ACTIONS(1632), 1, + sym__block_close, + STATE(606), 1, + aux_sym__list_lower_alpha_parens_repeat1, + STATE(853), 1, + sym__list_item_lower_alpha_parens, + [16423] = 4, ACTIONS(33), 1, sym_list_marker_definition, - ACTIONS(1509), 1, + ACTIONS(1634), 1, sym__block_close, - STATE(529), 1, + STATE(579), 1, aux_sym__list_definition_repeat1, - STATE(736), 1, + STATE(819), 1, sym__list_item_definition, - [15447] = 4, + [16436] = 4, ACTIONS(35), 1, sym_list_marker_decimal_period, - ACTIONS(1511), 1, + ACTIONS(1636), 1, sym__block_close, - STATE(531), 1, + STATE(581), 1, aux_sym__list_decimal_period_repeat1, - STATE(795), 1, + STATE(852), 1, sym__list_item_decimal_period, - [15460] = 4, - ACTIONS(45), 1, - sym_list_marker_decimal_paren, - ACTIONS(1513), 1, - sym__block_close, - STATE(549), 1, - aux_sym__list_decimal_paren_repeat1, - STATE(848), 1, - sym__list_item_decimal_paren, - [15473] = 4, + [16449] = 4, ACTIONS(55), 1, sym_list_marker_decimal_parens, - ACTIONS(1515), 1, + ACTIONS(1638), 1, sym__block_close, - STATE(551), 1, + STATE(585), 1, aux_sym__list_decimal_parens_repeat1, - STATE(772), 1, + STATE(815), 1, sym__list_item_decimal_parens, - [15486] = 4, + [16462] = 4, ACTIONS(37), 1, sym_list_marker_lower_alpha_period, - ACTIONS(1517), 1, + ACTIONS(1640), 1, sym__block_close, - STATE(553), 1, + STATE(587), 1, aux_sym__list_lower_alpha_period_repeat1, - STATE(787), 1, + STATE(843), 1, sym__list_item_lower_alpha_period, - [15499] = 4, + [16475] = 4, ACTIONS(47), 1, sym_list_marker_lower_alpha_paren, - ACTIONS(1519), 1, + ACTIONS(1642), 1, sym__block_close, - STATE(555), 1, + STATE(604), 1, aux_sym__list_lower_alpha_paren_repeat1, - STATE(792), 1, + STATE(850), 1, sym__list_item_lower_alpha_paren, - [15512] = 4, + [16488] = 4, ACTIONS(57), 1, sym_list_marker_lower_alpha_parens, - ACTIONS(1521), 1, + ACTIONS(1644), 1, sym__block_close, - STATE(557), 1, + STATE(606), 1, aux_sym__list_lower_alpha_parens_repeat1, - STATE(793), 1, + STATE(853), 1, sym__list_item_lower_alpha_parens, - [15525] = 4, + [16501] = 4, ACTIONS(39), 1, sym_list_marker_upper_alpha_period, - ACTIONS(1523), 1, + ACTIONS(1646), 1, sym__block_close, - STATE(559), 1, + STATE(608), 1, aux_sym__list_upper_alpha_period_repeat1, - STATE(797), 1, + STATE(854), 1, sym__list_item_upper_alpha_period, - [15538] = 4, + [16514] = 4, ACTIONS(49), 1, sym_list_marker_upper_alpha_paren, - ACTIONS(1525), 1, + ACTIONS(1648), 1, sym__block_close, - STATE(593), 1, + STATE(610), 1, aux_sym__list_upper_alpha_paren_repeat1, - STATE(798), 1, + STATE(855), 1, sym__list_item_upper_alpha_paren, - [15551] = 4, + [16527] = 4, ACTIONS(59), 1, sym_list_marker_upper_alpha_parens, - ACTIONS(1527), 1, + ACTIONS(1650), 1, sym__block_close, - STATE(595), 1, + STATE(628), 1, aux_sym__list_upper_alpha_parens_repeat1, - STATE(799), 1, + STATE(856), 1, sym__list_item_upper_alpha_parens, - [15564] = 4, + [16540] = 4, ACTIONS(41), 1, sym_list_marker_lower_roman_period, - ACTIONS(1529), 1, + ACTIONS(1652), 1, sym__block_close, - STATE(598), 1, + STATE(630), 1, aux_sym__list_lower_roman_period_repeat1, - STATE(801), 1, + STATE(857), 1, sym__list_item_lower_roman_period, - [15577] = 4, + [16553] = 4, ACTIONS(51), 1, sym_list_marker_lower_roman_paren, - ACTIONS(1531), 1, + ACTIONS(1654), 1, sym__block_close, - STATE(600), 1, + STATE(648), 1, aux_sym__list_lower_roman_paren_repeat1, - STATE(802), 1, + STATE(871), 1, sym__list_item_lower_roman_paren, - [15590] = 4, + [16566] = 4, ACTIONS(61), 1, sym_list_marker_lower_roman_parens, - ACTIONS(1533), 1, + ACTIONS(1656), 1, sym__block_close, - STATE(604), 1, + STATE(650), 1, aux_sym__list_lower_roman_parens_repeat1, - STATE(814), 1, + STATE(874), 1, sym__list_item_lower_roman_parens, - [15603] = 4, + [16579] = 4, ACTIONS(43), 1, sym_list_marker_upper_roman_period, - ACTIONS(1535), 1, + ACTIONS(1658), 1, sym__block_close, - STATE(608), 1, + STATE(652), 1, aux_sym__list_upper_roman_period_repeat1, - STATE(818), 1, + STATE(876), 1, sym__list_item_upper_roman_period, - [15616] = 4, + [16592] = 4, ACTIONS(53), 1, sym_list_marker_upper_roman_paren, - ACTIONS(1537), 1, + ACTIONS(1660), 1, sym__block_close, - STATE(612), 1, + STATE(654), 1, aux_sym__list_upper_roman_paren_repeat1, - STATE(819), 1, + STATE(878), 1, sym__list_item_upper_roman_paren, - [15629] = 4, + [16605] = 4, ACTIONS(63), 1, sym_list_marker_upper_roman_parens, - ACTIONS(1539), 1, + ACTIONS(1662), 1, sym__block_close, - STATE(616), 1, + STATE(671), 1, aux_sym__list_upper_roman_parens_repeat1, - STATE(822), 1, + STATE(880), 1, sym__list_item_upper_roman_parens, - [15642] = 4, - ACTIONS(1541), 1, + [16618] = 4, + ACTIONS(1664), 1, sym__block_close, - ACTIONS(1543), 1, - sym_list_marker_decimal_paren, - STATE(549), 1, - aux_sym__list_decimal_paren_repeat1, - STATE(848), 1, - sym__list_item_decimal_paren, - [15655] = 4, - ACTIONS(47), 1, + ACTIONS(1666), 1, sym_list_marker_lower_alpha_paren, - ACTIONS(1546), 1, - sym__block_close, - STATE(555), 1, + STATE(604), 1, aux_sym__list_lower_alpha_paren_repeat1, - STATE(792), 1, + STATE(850), 1, sym__list_item_lower_alpha_paren, - [15668] = 4, - ACTIONS(1548), 1, - sym__block_close, - ACTIONS(1550), 1, - sym_list_marker_decimal_parens, - STATE(551), 1, - aux_sym__list_decimal_parens_repeat1, - STATE(772), 1, - sym__list_item_decimal_parens, - [15681] = 4, - ACTIONS(57), 1, - sym_list_marker_lower_alpha_parens, - ACTIONS(1553), 1, - sym__block_close, - STATE(557), 1, - aux_sym__list_lower_alpha_parens_repeat1, - STATE(793), 1, - sym__list_item_lower_alpha_parens, - [15694] = 4, - ACTIONS(1555), 1, - sym__block_close, - ACTIONS(1557), 1, - sym_list_marker_lower_alpha_period, - STATE(553), 1, - aux_sym__list_lower_alpha_period_repeat1, - STATE(787), 1, - sym__list_item_lower_alpha_period, - [15707] = 4, + [16631] = 4, ACTIONS(39), 1, sym_list_marker_upper_alpha_period, - ACTIONS(1560), 1, + ACTIONS(1669), 1, sym__block_close, - STATE(559), 1, + STATE(608), 1, aux_sym__list_upper_alpha_period_repeat1, - STATE(797), 1, + STATE(854), 1, sym__list_item_upper_alpha_period, - [15720] = 4, - ACTIONS(1562), 1, + [16644] = 4, + ACTIONS(1671), 1, sym__block_close, - ACTIONS(1564), 1, - sym_list_marker_lower_alpha_paren, - STATE(555), 1, - aux_sym__list_lower_alpha_paren_repeat1, - STATE(792), 1, - sym__list_item_lower_alpha_paren, - [15733] = 4, + ACTIONS(1673), 1, + sym_list_marker_lower_alpha_parens, + STATE(606), 1, + aux_sym__list_lower_alpha_parens_repeat1, + STATE(853), 1, + sym__list_item_lower_alpha_parens, + [16657] = 4, ACTIONS(49), 1, sym_list_marker_upper_alpha_paren, - ACTIONS(1567), 1, + ACTIONS(1676), 1, sym__block_close, - STATE(593), 1, + STATE(610), 1, aux_sym__list_upper_alpha_paren_repeat1, - STATE(798), 1, + STATE(855), 1, sym__list_item_upper_alpha_paren, - [15746] = 4, - ACTIONS(1569), 1, + [16670] = 4, + ACTIONS(1678), 1, sym__block_close, - ACTIONS(1571), 1, - sym_list_marker_lower_alpha_parens, - STATE(557), 1, - aux_sym__list_lower_alpha_parens_repeat1, - STATE(793), 1, - sym__list_item_lower_alpha_parens, - [15759] = 4, + ACTIONS(1680), 1, + sym_list_marker_upper_alpha_period, + STATE(608), 1, + aux_sym__list_upper_alpha_period_repeat1, + STATE(854), 1, + sym__list_item_upper_alpha_period, + [16683] = 4, ACTIONS(59), 1, sym_list_marker_upper_alpha_parens, - ACTIONS(1574), 1, + ACTIONS(1683), 1, sym__block_close, - STATE(595), 1, + STATE(628), 1, aux_sym__list_upper_alpha_parens_repeat1, - STATE(799), 1, + STATE(856), 1, sym__list_item_upper_alpha_parens, - [15772] = 4, - ACTIONS(1576), 1, + [16696] = 4, + ACTIONS(1685), 1, sym__block_close, - ACTIONS(1578), 1, - sym_list_marker_upper_alpha_period, - STATE(559), 1, - aux_sym__list_upper_alpha_period_repeat1, - STATE(797), 1, - sym__list_item_upper_alpha_period, - [15785] = 4, + ACTIONS(1687), 1, + sym_list_marker_upper_alpha_paren, + STATE(610), 1, + aux_sym__list_upper_alpha_paren_repeat1, + STATE(855), 1, + sym__list_item_upper_alpha_paren, + [16709] = 4, + ACTIONS(41), 1, + sym_list_marker_lower_roman_period, + ACTIONS(1690), 1, + sym__block_close, + STATE(630), 1, + aux_sym__list_lower_roman_period_repeat1, + STATE(857), 1, + sym__list_item_lower_roman_period, + [16722] = 4, ACTIONS(33), 1, sym_list_marker_definition, - ACTIONS(1581), 1, + ACTIONS(1692), 1, sym__block_close, - STATE(529), 1, + STATE(579), 1, aux_sym__list_definition_repeat1, - STATE(736), 1, + STATE(819), 1, sym__list_item_definition, - [15798] = 4, + [16735] = 4, ACTIONS(35), 1, sym_list_marker_decimal_period, - ACTIONS(1583), 1, + ACTIONS(1694), 1, sym__block_close, - STATE(531), 1, + STATE(581), 1, aux_sym__list_decimal_period_repeat1, - STATE(795), 1, + STATE(852), 1, sym__list_item_decimal_period, - [15811] = 4, + [16748] = 4, ACTIONS(45), 1, sym_list_marker_decimal_paren, - ACTIONS(1585), 1, + ACTIONS(1696), 1, sym__block_close, - STATE(549), 1, + STATE(583), 1, aux_sym__list_decimal_paren_repeat1, - STATE(848), 1, + STATE(837), 1, sym__list_item_decimal_paren, - [15824] = 4, + [16761] = 4, ACTIONS(55), 1, sym_list_marker_decimal_parens, - ACTIONS(1587), 1, + ACTIONS(1698), 1, sym__block_close, - STATE(551), 1, + STATE(585), 1, aux_sym__list_decimal_parens_repeat1, - STATE(772), 1, + STATE(815), 1, sym__list_item_decimal_parens, - [15837] = 4, + [16774] = 4, ACTIONS(37), 1, sym_list_marker_lower_alpha_period, - ACTIONS(1589), 1, + ACTIONS(1700), 1, sym__block_close, - STATE(553), 1, + STATE(587), 1, aux_sym__list_lower_alpha_period_repeat1, - STATE(787), 1, + STATE(843), 1, sym__list_item_lower_alpha_period, - [15850] = 3, - ACTIONS(1148), 1, - sym__table_caption_begin, - STATE(770), 1, - sym_table_caption, - ACTIONS(530), 2, + [16787] = 4, + ACTIONS(47), 1, + sym_list_marker_lower_alpha_paren, + ACTIONS(1702), 1, sym__block_close, - sym__block_quote_continuation, - [15861] = 4, + STATE(604), 1, + aux_sym__list_lower_alpha_paren_repeat1, + STATE(850), 1, + sym__list_item_lower_alpha_paren, + [16800] = 4, ACTIONS(57), 1, sym_list_marker_lower_alpha_parens, - ACTIONS(1591), 1, + ACTIONS(1704), 1, sym__block_close, - STATE(557), 1, + STATE(606), 1, aux_sym__list_lower_alpha_parens_repeat1, - STATE(793), 1, + STATE(853), 1, sym__list_item_lower_alpha_parens, - [15874] = 4, + [16813] = 4, ACTIONS(39), 1, sym_list_marker_upper_alpha_period, - ACTIONS(1593), 1, + ACTIONS(1706), 1, sym__block_close, - STATE(559), 1, + STATE(608), 1, aux_sym__list_upper_alpha_period_repeat1, - STATE(797), 1, + STATE(854), 1, sym__list_item_upper_alpha_period, - [15887] = 4, + [16826] = 4, ACTIONS(49), 1, sym_list_marker_upper_alpha_paren, - ACTIONS(1595), 1, + ACTIONS(1708), 1, sym__block_close, - STATE(593), 1, + STATE(610), 1, aux_sym__list_upper_alpha_paren_repeat1, - STATE(798), 1, + STATE(855), 1, sym__list_item_upper_alpha_paren, - [15900] = 4, + [16839] = 4, ACTIONS(59), 1, sym_list_marker_upper_alpha_parens, - ACTIONS(1597), 1, + ACTIONS(1710), 1, sym__block_close, - STATE(595), 1, + STATE(628), 1, aux_sym__list_upper_alpha_parens_repeat1, - STATE(799), 1, + STATE(856), 1, sym__list_item_upper_alpha_parens, - [15913] = 4, + [16852] = 4, ACTIONS(41), 1, sym_list_marker_lower_roman_period, - ACTIONS(1599), 1, + ACTIONS(1712), 1, sym__block_close, - STATE(598), 1, + STATE(630), 1, aux_sym__list_lower_roman_period_repeat1, - STATE(801), 1, + STATE(857), 1, sym__list_item_lower_roman_period, - [15926] = 4, + [16865] = 4, ACTIONS(51), 1, sym_list_marker_lower_roman_paren, - ACTIONS(1601), 1, + ACTIONS(1714), 1, sym__block_close, - STATE(600), 1, + STATE(648), 1, aux_sym__list_lower_roman_paren_repeat1, - STATE(802), 1, + STATE(871), 1, sym__list_item_lower_roman_paren, - [15939] = 4, + [16878] = 4, ACTIONS(61), 1, sym_list_marker_lower_roman_parens, - ACTIONS(1603), 1, + ACTIONS(1716), 1, sym__block_close, - STATE(604), 1, + STATE(650), 1, aux_sym__list_lower_roman_parens_repeat1, - STATE(814), 1, + STATE(874), 1, sym__list_item_lower_roman_parens, - [15952] = 4, + [16891] = 4, ACTIONS(43), 1, sym_list_marker_upper_roman_period, - ACTIONS(1605), 1, + ACTIONS(1718), 1, sym__block_close, - STATE(608), 1, + STATE(652), 1, aux_sym__list_upper_roman_period_repeat1, - STATE(818), 1, + STATE(876), 1, sym__list_item_upper_roman_period, - [15965] = 4, + [16904] = 4, ACTIONS(53), 1, sym_list_marker_upper_roman_paren, - ACTIONS(1607), 1, + ACTIONS(1720), 1, sym__block_close, - STATE(612), 1, + STATE(654), 1, aux_sym__list_upper_roman_paren_repeat1, - STATE(819), 1, + STATE(878), 1, sym__list_item_upper_roman_paren, - [15978] = 4, + [16917] = 4, ACTIONS(63), 1, sym_list_marker_upper_roman_parens, - ACTIONS(1609), 1, + ACTIONS(1722), 1, sym__block_close, - STATE(616), 1, + STATE(671), 1, aux_sym__list_upper_roman_parens_repeat1, - STATE(822), 1, + STATE(880), 1, sym__list_item_upper_roman_parens, - [15991] = 4, - ACTIONS(41), 1, - sym_list_marker_lower_roman_period, - ACTIONS(1611), 1, + [16930] = 4, + ACTIONS(1724), 1, + sym__block_close, + ACTIONS(1726), 1, + sym_list_marker_upper_alpha_parens, + STATE(628), 1, + aux_sym__list_upper_alpha_parens_repeat1, + STATE(856), 1, + sym__list_item_upper_alpha_parens, + [16943] = 4, + ACTIONS(51), 1, + sym_list_marker_lower_roman_paren, + ACTIONS(1729), 1, + sym__block_close, + STATE(648), 1, + aux_sym__list_lower_roman_paren_repeat1, + STATE(871), 1, + sym__list_item_lower_roman_paren, + [16956] = 4, + ACTIONS(1731), 1, sym__block_close, - STATE(598), 1, + ACTIONS(1733), 1, + sym_list_marker_lower_roman_period, + STATE(630), 1, aux_sym__list_lower_roman_period_repeat1, - STATE(801), 1, + STATE(857), 1, sym__list_item_lower_roman_period, - [16004] = 4, + [16969] = 4, + ACTIONS(61), 1, + sym_list_marker_lower_roman_parens, + ACTIONS(1736), 1, + sym__block_close, + STATE(650), 1, + aux_sym__list_lower_roman_parens_repeat1, + STATE(874), 1, + sym__list_item_lower_roman_parens, + [16982] = 4, ACTIONS(33), 1, sym_list_marker_definition, - ACTIONS(1613), 1, + ACTIONS(1738), 1, sym__block_close, - STATE(529), 1, + STATE(579), 1, aux_sym__list_definition_repeat1, - STATE(736), 1, + STATE(819), 1, sym__list_item_definition, - [16017] = 4, + [16995] = 4, ACTIONS(35), 1, sym_list_marker_decimal_period, - ACTIONS(1615), 1, + ACTIONS(1740), 1, sym__block_close, - STATE(531), 1, + STATE(581), 1, aux_sym__list_decimal_period_repeat1, - STATE(795), 1, + STATE(852), 1, sym__list_item_decimal_period, - [16030] = 4, + [17008] = 4, ACTIONS(45), 1, sym_list_marker_decimal_paren, - ACTIONS(1617), 1, + ACTIONS(1742), 1, sym__block_close, - STATE(549), 1, + STATE(583), 1, aux_sym__list_decimal_paren_repeat1, - STATE(848), 1, + STATE(837), 1, sym__list_item_decimal_paren, - [16043] = 4, + [17021] = 4, ACTIONS(55), 1, sym_list_marker_decimal_parens, - ACTIONS(1619), 1, + ACTIONS(1744), 1, sym__block_close, - STATE(551), 1, + STATE(585), 1, aux_sym__list_decimal_parens_repeat1, - STATE(772), 1, + STATE(815), 1, sym__list_item_decimal_parens, - [16056] = 4, + [17034] = 4, ACTIONS(37), 1, sym_list_marker_lower_alpha_period, - ACTIONS(1621), 1, + ACTIONS(1746), 1, sym__block_close, - STATE(553), 1, + STATE(587), 1, aux_sym__list_lower_alpha_period_repeat1, - STATE(787), 1, + STATE(843), 1, sym__list_item_lower_alpha_period, - [16069] = 4, + [17047] = 4, ACTIONS(47), 1, sym_list_marker_lower_alpha_paren, - ACTIONS(1623), 1, + ACTIONS(1748), 1, sym__block_close, - STATE(555), 1, + STATE(604), 1, aux_sym__list_lower_alpha_paren_repeat1, - STATE(792), 1, + STATE(850), 1, sym__list_item_lower_alpha_paren, - [16082] = 4, + [17060] = 4, ACTIONS(57), 1, sym_list_marker_lower_alpha_parens, - ACTIONS(1625), 1, + ACTIONS(1750), 1, sym__block_close, - STATE(557), 1, + STATE(606), 1, aux_sym__list_lower_alpha_parens_repeat1, - STATE(793), 1, + STATE(853), 1, sym__list_item_lower_alpha_parens, - [16095] = 4, + [17073] = 4, ACTIONS(39), 1, sym_list_marker_upper_alpha_period, - ACTIONS(1627), 1, + ACTIONS(1752), 1, sym__block_close, - STATE(559), 1, + STATE(608), 1, aux_sym__list_upper_alpha_period_repeat1, - STATE(797), 1, + STATE(854), 1, sym__list_item_upper_alpha_period, - [16108] = 4, + [17086] = 4, ACTIONS(49), 1, sym_list_marker_upper_alpha_paren, - ACTIONS(1629), 1, + ACTIONS(1754), 1, sym__block_close, - STATE(593), 1, + STATE(610), 1, aux_sym__list_upper_alpha_paren_repeat1, - STATE(798), 1, + STATE(855), 1, sym__list_item_upper_alpha_paren, - [16121] = 4, + [17099] = 4, ACTIONS(59), 1, sym_list_marker_upper_alpha_parens, - ACTIONS(1631), 1, + ACTIONS(1756), 1, sym__block_close, - STATE(595), 1, + STATE(628), 1, aux_sym__list_upper_alpha_parens_repeat1, - STATE(799), 1, + STATE(856), 1, sym__list_item_upper_alpha_parens, - [16134] = 4, + [17112] = 4, ACTIONS(41), 1, sym_list_marker_lower_roman_period, - ACTIONS(1633), 1, + ACTIONS(1758), 1, sym__block_close, - STATE(598), 1, + STATE(630), 1, aux_sym__list_lower_roman_period_repeat1, - STATE(801), 1, + STATE(857), 1, sym__list_item_lower_roman_period, - [16147] = 4, + [17125] = 4, ACTIONS(51), 1, sym_list_marker_lower_roman_paren, - ACTIONS(1635), 1, + ACTIONS(1760), 1, sym__block_close, - STATE(600), 1, + STATE(648), 1, aux_sym__list_lower_roman_paren_repeat1, - STATE(802), 1, + STATE(871), 1, sym__list_item_lower_roman_paren, - [16160] = 4, + [17138] = 4, ACTIONS(61), 1, sym_list_marker_lower_roman_parens, - ACTIONS(1637), 1, + ACTIONS(1762), 1, sym__block_close, - STATE(604), 1, + STATE(650), 1, aux_sym__list_lower_roman_parens_repeat1, - STATE(814), 1, + STATE(874), 1, sym__list_item_lower_roman_parens, - [16173] = 4, + [17151] = 4, ACTIONS(43), 1, sym_list_marker_upper_roman_period, - ACTIONS(1639), 1, + ACTIONS(1764), 1, sym__block_close, - STATE(608), 1, + STATE(652), 1, aux_sym__list_upper_roman_period_repeat1, - STATE(818), 1, + STATE(876), 1, sym__list_item_upper_roman_period, - [16186] = 4, + [17164] = 4, ACTIONS(53), 1, sym_list_marker_upper_roman_paren, - ACTIONS(1641), 1, + ACTIONS(1766), 1, sym__block_close, - STATE(612), 1, + STATE(654), 1, aux_sym__list_upper_roman_paren_repeat1, - STATE(819), 1, + STATE(878), 1, sym__list_item_upper_roman_paren, - [16199] = 4, + [17177] = 4, ACTIONS(63), 1, sym_list_marker_upper_roman_parens, - ACTIONS(1643), 1, + ACTIONS(1768), 1, sym__block_close, - STATE(616), 1, + STATE(671), 1, aux_sym__list_upper_roman_parens_repeat1, - STATE(822), 1, + STATE(880), 1, sym__list_item_upper_roman_parens, - [16212] = 4, - ACTIONS(1645), 1, + [17190] = 4, + ACTIONS(1770), 1, sym__block_close, - ACTIONS(1647), 1, - sym_list_marker_upper_alpha_paren, - STATE(593), 1, - aux_sym__list_upper_alpha_paren_repeat1, - STATE(798), 1, - sym__list_item_upper_alpha_paren, - [16225] = 4, - ACTIONS(51), 1, + ACTIONS(1772), 1, sym_list_marker_lower_roman_paren, - ACTIONS(1650), 1, - sym__block_close, - STATE(600), 1, + STATE(648), 1, aux_sym__list_lower_roman_paren_repeat1, - STATE(802), 1, + STATE(871), 1, sym__list_item_lower_roman_paren, - [16238] = 4, - ACTIONS(1652), 1, - sym__block_close, - ACTIONS(1654), 1, - sym_list_marker_upper_alpha_parens, - STATE(595), 1, - aux_sym__list_upper_alpha_parens_repeat1, - STATE(799), 1, - sym__list_item_upper_alpha_parens, - [16251] = 2, - ACTIONS(1657), 1, - sym__eof_or_newline, - ACTIONS(664), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [16260] = 4, - ACTIONS(61), 1, - sym_list_marker_lower_roman_parens, - ACTIONS(1659), 1, - sym__block_close, - STATE(604), 1, - aux_sym__list_lower_roman_parens_repeat1, - STATE(814), 1, - sym__list_item_lower_roman_parens, - [16273] = 4, - ACTIONS(1661), 1, - sym__block_close, - ACTIONS(1663), 1, - sym_list_marker_lower_roman_period, - STATE(598), 1, - aux_sym__list_lower_roman_period_repeat1, - STATE(801), 1, - sym__list_item_lower_roman_period, - [16286] = 4, + [17203] = 4, ACTIONS(43), 1, sym_list_marker_upper_roman_period, - ACTIONS(1666), 1, + ACTIONS(1775), 1, sym__block_close, - STATE(608), 1, + STATE(652), 1, aux_sym__list_upper_roman_period_repeat1, - STATE(818), 1, + STATE(876), 1, sym__list_item_upper_roman_period, - [16299] = 4, - ACTIONS(1668), 1, + [17216] = 4, + ACTIONS(1777), 1, sym__block_close, - ACTIONS(1670), 1, - sym_list_marker_lower_roman_paren, - STATE(600), 1, - aux_sym__list_lower_roman_paren_repeat1, - STATE(802), 1, - sym__list_item_lower_roman_paren, - [16312] = 2, - ACTIONS(1673), 1, - sym__div_end, - ACTIONS(610), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [16321] = 4, + ACTIONS(1779), 1, + sym_list_marker_lower_roman_parens, + STATE(650), 1, + aux_sym__list_lower_roman_parens_repeat1, + STATE(874), 1, + sym__list_item_lower_roman_parens, + [17229] = 4, ACTIONS(53), 1, sym_list_marker_upper_roman_paren, - ACTIONS(1675), 1, + ACTIONS(1782), 1, sym__block_close, - STATE(612), 1, + STATE(654), 1, aux_sym__list_upper_roman_paren_repeat1, - STATE(819), 1, + STATE(878), 1, sym__list_item_upper_roman_paren, - [16334] = 2, - ACTIONS(1677), 1, - sym__code_block_end, - ACTIONS(534), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [16343] = 4, - ACTIONS(1679), 1, + [17242] = 4, + ACTIONS(1784), 1, sym__block_close, - ACTIONS(1681), 1, - sym_list_marker_lower_roman_parens, - STATE(604), 1, - aux_sym__list_lower_roman_parens_repeat1, - STATE(814), 1, - sym__list_item_lower_roman_parens, - [16356] = 4, + ACTIONS(1786), 1, + sym_list_marker_upper_roman_period, + STATE(652), 1, + aux_sym__list_upper_roman_period_repeat1, + STATE(876), 1, + sym__list_item_upper_roman_period, + [17255] = 4, ACTIONS(63), 1, sym_list_marker_upper_roman_parens, - ACTIONS(1684), 1, + ACTIONS(1789), 1, sym__block_close, - STATE(616), 1, + STATE(671), 1, aux_sym__list_upper_roman_parens_repeat1, - STATE(822), 1, + STATE(880), 1, sym__list_item_upper_roman_parens, - [16369] = 2, - ACTIONS(1686), 1, - sym__div_end, - ACTIONS(626), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [16378] = 2, - ACTIONS(1688), 1, - sym__div_end, - ACTIONS(540), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [16387] = 4, - ACTIONS(1690), 1, + [17268] = 4, + ACTIONS(1791), 1, + sym__block_close, + ACTIONS(1793), 1, + sym_list_marker_upper_roman_paren, + STATE(654), 1, + aux_sym__list_upper_roman_paren_repeat1, + STATE(878), 1, + sym__list_item_upper_roman_paren, + [17281] = 4, + ACTIONS(33), 1, + sym_list_marker_definition, + ACTIONS(1796), 1, + sym__block_close, + STATE(579), 1, + aux_sym__list_definition_repeat1, + STATE(819), 1, + sym__list_item_definition, + [17294] = 4, + ACTIONS(35), 1, + sym_list_marker_decimal_period, + ACTIONS(1798), 1, + sym__block_close, + STATE(581), 1, + aux_sym__list_decimal_period_repeat1, + STATE(852), 1, + sym__list_item_decimal_period, + [17307] = 4, + ACTIONS(45), 1, + sym_list_marker_decimal_paren, + ACTIONS(1800), 1, + sym__block_close, + STATE(583), 1, + aux_sym__list_decimal_paren_repeat1, + STATE(837), 1, + sym__list_item_decimal_paren, + [17320] = 4, + ACTIONS(55), 1, + sym_list_marker_decimal_parens, + ACTIONS(1802), 1, + sym__block_close, + STATE(585), 1, + aux_sym__list_decimal_parens_repeat1, + STATE(815), 1, + sym__list_item_decimal_parens, + [17333] = 4, + ACTIONS(37), 1, + sym_list_marker_lower_alpha_period, + ACTIONS(1804), 1, + sym__block_close, + STATE(587), 1, + aux_sym__list_lower_alpha_period_repeat1, + STATE(843), 1, + sym__list_item_lower_alpha_period, + [17346] = 4, + ACTIONS(47), 1, + sym_list_marker_lower_alpha_paren, + ACTIONS(1806), 1, + sym__block_close, + STATE(604), 1, + aux_sym__list_lower_alpha_paren_repeat1, + STATE(850), 1, + sym__list_item_lower_alpha_paren, + [17359] = 4, + ACTIONS(57), 1, + sym_list_marker_lower_alpha_parens, + ACTIONS(1808), 1, + sym__block_close, + STATE(606), 1, + aux_sym__list_lower_alpha_parens_repeat1, + STATE(853), 1, + sym__list_item_lower_alpha_parens, + [17372] = 4, + ACTIONS(39), 1, + sym_list_marker_upper_alpha_period, + ACTIONS(1810), 1, sym__block_close, - ACTIONS(1692), 1, - sym_list_marker_upper_roman_period, STATE(608), 1, + aux_sym__list_upper_alpha_period_repeat1, + STATE(854), 1, + sym__list_item_upper_alpha_period, + [17385] = 4, + ACTIONS(49), 1, + sym_list_marker_upper_alpha_paren, + ACTIONS(1812), 1, + sym__block_close, + STATE(610), 1, + aux_sym__list_upper_alpha_paren_repeat1, + STATE(855), 1, + sym__list_item_upper_alpha_paren, + [17398] = 4, + ACTIONS(59), 1, + sym_list_marker_upper_alpha_parens, + ACTIONS(1814), 1, + sym__block_close, + STATE(628), 1, + aux_sym__list_upper_alpha_parens_repeat1, + STATE(856), 1, + sym__list_item_upper_alpha_parens, + [17411] = 4, + ACTIONS(41), 1, + sym_list_marker_lower_roman_period, + ACTIONS(1816), 1, + sym__block_close, + STATE(630), 1, + aux_sym__list_lower_roman_period_repeat1, + STATE(857), 1, + sym__list_item_lower_roman_period, + [17424] = 4, + ACTIONS(51), 1, + sym_list_marker_lower_roman_paren, + ACTIONS(1818), 1, + sym__block_close, + STATE(648), 1, + aux_sym__list_lower_roman_paren_repeat1, + STATE(871), 1, + sym__list_item_lower_roman_paren, + [17437] = 4, + ACTIONS(61), 1, + sym_list_marker_lower_roman_parens, + ACTIONS(1820), 1, + sym__block_close, + STATE(650), 1, + aux_sym__list_lower_roman_parens_repeat1, + STATE(874), 1, + sym__list_item_lower_roman_parens, + [17450] = 4, + ACTIONS(43), 1, + sym_list_marker_upper_roman_period, + ACTIONS(1822), 1, + sym__block_close, + STATE(652), 1, aux_sym__list_upper_roman_period_repeat1, - STATE(818), 1, + STATE(876), 1, sym__list_item_upper_roman_period, - [16400] = 2, - ACTIONS(1695), 1, - sym__code_block_end, - ACTIONS(546), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [16409] = 2, - ACTIONS(1697), 1, - sym__code_block_end, - ACTIONS(552), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [16418] = 2, - ACTIONS(1699), 1, - sym__code_block_end, - ACTIONS(558), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [16427] = 4, - ACTIONS(1701), 1, - sym__block_close, - ACTIONS(1703), 1, + [17463] = 4, + ACTIONS(53), 1, sym_list_marker_upper_roman_paren, - STATE(612), 1, + ACTIONS(1824), 1, + sym__block_close, + STATE(654), 1, aux_sym__list_upper_roman_paren_repeat1, - STATE(819), 1, + STATE(878), 1, sym__list_item_upper_roman_paren, - [16440] = 2, - ACTIONS(1706), 1, - sym__div_end, - ACTIONS(572), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [16449] = 2, - ACTIONS(1708), 1, - sym__code_block_end, - ACTIONS(578), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [16458] = 2, - ACTIONS(1710), 1, - sym__code_block_end, - ACTIONS(584), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [16467] = 4, - ACTIONS(1712), 1, + [17476] = 4, + ACTIONS(63), 1, + sym_list_marker_upper_roman_parens, + ACTIONS(1826), 1, sym__block_close, - ACTIONS(1714), 1, + STATE(671), 1, + aux_sym__list_upper_roman_parens_repeat1, + STATE(880), 1, + sym__list_item_upper_roman_parens, + [17489] = 4, + ACTIONS(1828), 1, + sym__block_close, + ACTIONS(1830), 1, sym_list_marker_upper_roman_parens, - STATE(616), 1, + STATE(671), 1, aux_sym__list_upper_roman_parens_repeat1, - STATE(822), 1, + STATE(880), 1, sym__list_item_upper_roman_parens, - [16480] = 4, - ACTIONS(1427), 1, + [17502] = 4, + ACTIONS(1515), 1, anon_sym_EQ, - ACTIONS(1717), 1, + ACTIONS(1833), 1, sym_language, - ACTIONS(1719), 1, + ACTIONS(1835), 1, sym__newline, - STATE(997), 1, + STATE(1129), 1, sym_raw_block_info, - [16493] = 2, - ACTIONS(1721), 1, - sym__eof_or_newline, - ACTIONS(598), 3, - sym__list_item_continuation, - sym__list_item_end, + [17515] = 4, + ACTIONS(1515), 1, + anon_sym_EQ, + ACTIONS(1837), 1, + sym_language, + ACTIONS(1839), 1, + sym__newline, + STATE(1152), 1, + sym_raw_block_info, + [17528] = 3, + ACTIONS(1156), 1, + sym__table_caption_begin, + STATE(976), 1, + sym_table_caption, + ACTIONS(556), 2, + sym__block_close, sym__block_quote_continuation, - [16502] = 4, - ACTIONS(1427), 1, + [17539] = 4, + ACTIONS(1515), 1, anon_sym_EQ, - ACTIONS(1723), 1, + ACTIONS(1841), 1, sym_language, - ACTIONS(1725), 1, + ACTIONS(1843), 1, sym__newline, - STATE(1019), 1, + STATE(1175), 1, sym_raw_block_info, - [16515] = 4, - ACTIONS(1427), 1, + [17552] = 3, + ACTIONS(1527), 1, + aux_sym__line_token1, + STATE(1199), 1, + sym_frontmatter_content, + STATE(546), 2, + sym__line, + aux_sym_frontmatter_content_repeat1, + [17563] = 4, + ACTIONS(1515), 1, anon_sym_EQ, - ACTIONS(1727), 1, + ACTIONS(1845), 1, sym_language, - ACTIONS(1729), 1, + ACTIONS(1847), 1, sym__newline, - STATE(1041), 1, + STATE(1198), 1, sym_raw_block_info, - [16528] = 4, - ACTIONS(47), 1, - sym_list_marker_lower_alpha_paren, - ACTIONS(1731), 1, + [17576] = 4, + ACTIONS(1515), 1, + anon_sym_EQ, + ACTIONS(1849), 1, + sym_language, + ACTIONS(1851), 1, + sym__newline, + STATE(1220), 1, + sym_raw_block_info, + [17589] = 4, + ACTIONS(45), 1, + sym_list_marker_decimal_paren, + ACTIONS(1853), 1, sym__block_close, - STATE(555), 1, - aux_sym__list_lower_alpha_paren_repeat1, - STATE(792), 1, - sym__list_item_lower_alpha_paren, - [16541] = 1, - ACTIONS(730), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [16547] = 1, - ACTIONS(772), 3, + STATE(583), 1, + aux_sym__list_decimal_paren_repeat1, + STATE(837), 1, + sym__list_item_decimal_paren, + [17602] = 1, + ACTIONS(740), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [16553] = 1, - ACTIONS(1733), 3, - sym__block_close, + [17608] = 3, + ACTIONS(902), 1, sym_list_marker_dash, + ACTIONS(1855), 1, sym__block_quote_continuation, - [16559] = 1, - ACTIONS(1735), 3, - sym__block_close, - sym_list_marker_dash, + STATE(681), 1, + aux_sym__block_quote_prefix_repeat1, + [17618] = 1, + ACTIONS(890), 3, + sym__list_item_continuation, + sym__list_item_end, sym__block_quote_continuation, - [16565] = 1, - ACTIONS(1737), 3, + [17624] = 1, + ACTIONS(1858), 3, sym__block_close, sym_list_marker_star, sym__block_quote_continuation, - [16571] = 1, - ACTIONS(1739), 3, - sym__block_close, - sym_list_marker_plus, - sym__block_quote_continuation, - [16577] = 2, - ACTIONS(1743), 1, - anon_sym_SPACE, - ACTIONS(1741), 2, - anon_sym_x, - anon_sym_X, - [16585] = 1, - ACTIONS(1745), 3, - anon_sym_PERCENT, - sym_backslash_escape, - aux_sym__comment_no_newline_token1, - [16591] = 2, - ACTIONS(1747), 1, - sym__div_end, - ACTIONS(626), 2, + [17630] = 1, + ACTIONS(1860), 3, sym__block_close, - sym__block_quote_continuation, - [16599] = 3, - ACTIONS(1749), 1, - anon_sym_DQUOTE, - ACTIONS(1751), 1, - aux_sym_value_token2, - STATE(467), 1, - sym_value, - [16609] = 3, - ACTIONS(876), 1, sym_list_marker_dash, - ACTIONS(1753), 1, sym__block_quote_continuation, - STATE(632), 1, - aux_sym__block_quote_prefix_repeat1, - [16619] = 2, - ACTIONS(1756), 1, - anon_sym_LBRACK, - STATE(975), 2, - sym_checked, - sym_unchecked, - [16627] = 1, - ACTIONS(1758), 3, + [17636] = 1, + ACTIONS(1862), 3, sym__block_close, - sym_list_marker_dash, + sym_list_marker_star, sym__block_quote_continuation, - [16633] = 1, - ACTIONS(792), 3, + [17642] = 1, + ACTIONS(716), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [16639] = 1, - ACTIONS(796), 3, + [17648] = 1, + ACTIONS(898), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [16645] = 1, - ACTIONS(800), 3, + [17654] = 1, + ACTIONS(728), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [16651] = 1, - ACTIONS(804), 3, - sym__list_item_continuation, - sym__list_item_end, + [17660] = 1, + ACTIONS(1864), 3, + sym__block_close, + sym_list_marker_plus, sym__block_quote_continuation, - [16657] = 1, - ACTIONS(808), 3, - sym__list_item_continuation, - sym__list_item_end, + [17666] = 1, + ACTIONS(1866), 3, + sym__block_close, + sym__list_marker_task_begin, sym__block_quote_continuation, - [16663] = 1, - ACTIONS(812), 3, + [17672] = 1, + ACTIONS(894), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [16669] = 1, - ACTIONS(816), 3, + [17678] = 1, + ACTIONS(732), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [16675] = 1, - ACTIONS(820), 3, + [17684] = 1, + ACTIONS(736), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [16681] = 1, - ACTIONS(824), 3, + [17690] = 1, + ACTIONS(748), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [16687] = 1, - ACTIONS(828), 3, + [17696] = 1, + ACTIONS(752), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [16693] = 1, - ACTIONS(832), 3, + [17702] = 1, + ACTIONS(756), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [16699] = 1, - ACTIONS(836), 3, + [17708] = 1, + ACTIONS(760), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [16705] = 1, - ACTIONS(840), 3, + [17714] = 1, + ACTIONS(764), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [16711] = 1, - ACTIONS(844), 3, + [17720] = 1, + ACTIONS(768), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [16717] = 1, - ACTIONS(848), 3, + [17726] = 3, + ACTIONS(1868), 1, + sym__eof_or_newline, + ACTIONS(1870), 1, + sym__newline_inline, + STATE(704), 1, + aux_sym__paragraph_inline_content_repeat1, + [17736] = 1, + ACTIONS(776), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [16723] = 1, - ACTIONS(852), 3, + [17742] = 1, + ACTIONS(780), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [16729] = 1, - ACTIONS(1760), 3, + [17748] = 3, + ACTIONS(996), 1, + sym_list_marker_star, + ACTIONS(1310), 1, + sym__block_quote_continuation, + STATE(709), 1, + aux_sym__block_quote_prefix_repeat1, + [17758] = 3, + ACTIONS(1872), 1, + sym__eof_or_newline, + ACTIONS(1874), 1, + sym__newline_inline, + STATE(704), 1, + aux_sym__paragraph_inline_content_repeat1, + [17768] = 1, + ACTIONS(1877), 3, sym__block_close, sym_list_marker_plus, sym__block_quote_continuation, - [16735] = 1, - ACTIONS(1762), 3, + [17774] = 1, + ACTIONS(1879), 3, sym__block_close, - sym_list_marker_dash, + sym__list_marker_task_begin, sym__block_quote_continuation, - [16741] = 1, - ACTIONS(1764), 3, + [17780] = 2, + ACTIONS(1883), 1, + anon_sym_SPACE, + ACTIONS(1881), 2, + anon_sym_x, + anon_sym_X, + [17788] = 1, + ACTIONS(1363), 3, sym__block_close, - sym_list_marker_star, sym__block_quote_continuation, - [16747] = 1, - ACTIONS(1766), 3, - sym__block_close, - sym_list_marker_plus, + aux_sym__line_token1, + [17794] = 3, + ACTIONS(902), 1, + sym_list_marker_star, + ACTIONS(1885), 1, sym__block_quote_continuation, - [16753] = 1, - ACTIONS(1768), 3, + STATE(709), 1, + aux_sym__block_quote_prefix_repeat1, + [17804] = 1, + ACTIONS(1888), 3, sym__block_close, - sym__list_marker_task_begin, + sym_list_marker_dash, sym__block_quote_continuation, - [16759] = 3, - ACTIONS(1770), 1, - sym__eof_or_newline, - ACTIONS(1772), 1, + [17810] = 1, + ACTIONS(1483), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [17816] = 3, + ACTIONS(556), 1, + sym__list_item_content_spacer, + ACTIONS(1223), 1, + sym__table_caption_begin, + STATE(1288), 1, + sym_table_caption, + [17826] = 3, + ACTIONS(1870), 1, sym__newline_inline, - STATE(657), 1, + ACTIONS(1890), 1, + sym__eof_or_newline, + STATE(700), 1, aux_sym__paragraph_inline_content_repeat1, - [16769] = 3, - ACTIONS(1774), 1, + [17836] = 3, + ACTIONS(1870), 1, + sym__newline_inline, + ACTIONS(1890), 1, sym__eof_or_newline, - ACTIONS(1776), 1, + STATE(704), 1, + aux_sym__paragraph_inline_content_repeat1, + [17846] = 3, + ACTIONS(1870), 1, sym__newline_inline, - STATE(657), 1, + ACTIONS(1892), 1, + sym__eof_or_newline, + STATE(714), 1, aux_sym__paragraph_inline_content_repeat1, - [16779] = 2, - ACTIONS(1779), 1, - sym__div_end, - ACTIONS(540), 2, - sym__block_close, + [17856] = 2, + ACTIONS(1894), 1, + anon_sym_LBRACK, + STATE(1201), 2, + sym_checked, + sym_unchecked, + [17864] = 3, + ACTIONS(996), 1, + sym__list_marker_task_begin, + ACTIONS(1249), 1, sym__block_quote_continuation, - [16787] = 2, - ACTIONS(1781), 1, - sym__code_block_end, - ACTIONS(546), 2, - sym__block_close, + STATE(718), 1, + aux_sym__block_quote_prefix_repeat1, + [17874] = 3, + ACTIONS(902), 1, + sym__list_marker_task_begin, + ACTIONS(1896), 1, sym__block_quote_continuation, - [16795] = 3, - ACTIONS(1783), 1, - sym__block_close, - ACTIONS(1785), 1, - sym__heading_continuation, - STATE(660), 1, - aux_sym__heading_content_repeat1, - [16805] = 1, - ACTIONS(1359), 3, + STATE(718), 1, + aux_sym__block_quote_prefix_repeat1, + [17884] = 1, + ACTIONS(1899), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [16811] = 1, - ACTIONS(1788), 3, - sym__block_close, - sym_list_marker_dash, + [17890] = 1, + ACTIONS(1901), 3, + sym__list_item_continuation, + sym__list_item_end, sym__block_quote_continuation, - [16817] = 3, - ACTIONS(1017), 1, - sym_list_marker_plus, - ACTIONS(1246), 1, + [17896] = 3, + ACTIONS(996), 1, + aux_sym__line_token1, + ACTIONS(1240), 1, sym__block_quote_continuation, - STATE(666), 1, + STATE(722), 1, aux_sym__block_quote_prefix_repeat1, - [16827] = 2, - ACTIONS(1790), 1, - sym__code_block_end, - ACTIONS(552), 2, - sym__block_close, + [17906] = 3, + ACTIONS(902), 1, + aux_sym__line_token1, + ACTIONS(1903), 1, sym__block_quote_continuation, - [16835] = 2, - ACTIONS(1792), 1, - sym__code_block_end, - ACTIONS(558), 2, - sym__block_close, + STATE(722), 1, + aux_sym__block_quote_prefix_repeat1, + [17916] = 3, + ACTIONS(996), 1, + sym__list_item_continuation, + ACTIONS(1384), 1, sym__block_quote_continuation, - [16843] = 3, - ACTIONS(876), 1, - sym_list_marker_plus, - ACTIONS(1794), 1, + STATE(724), 1, + aux_sym__block_quote_prefix_repeat1, + [17926] = 3, + ACTIONS(902), 1, + sym__list_item_continuation, + ACTIONS(1906), 1, sym__block_quote_continuation, - STATE(666), 1, + STATE(724), 1, aux_sym__block_quote_prefix_repeat1, - [16853] = 1, - ACTIONS(1797), 3, + [17936] = 1, + ACTIONS(1909), 3, sym__block_close, sym__list_marker_task_begin, sym__block_quote_continuation, - [16859] = 1, - ACTIONS(530), 3, - sym__list_item_continuation, - sym__list_item_end, + [17942] = 1, + ACTIONS(1888), 3, + sym__block_close, + sym__list_marker_task_begin, sym__block_quote_continuation, - [16865] = 1, - ACTIONS(1788), 3, + [17948] = 1, + ACTIONS(1911), 3, sym__block_close, - sym_list_marker_plus, + sym_list_marker_dash, sym__block_quote_continuation, - [16871] = 1, - ACTIONS(1267), 3, + [17954] = 3, + ACTIONS(1913), 1, + sym__block_close, + ACTIONS(1915), 1, + sym__heading_continuation, + STATE(728), 1, + aux_sym__heading_content_repeat1, + [17964] = 1, + ACTIONS(1909), 3, sym__block_close, + sym_list_marker_dash, sym__block_quote_continuation, - aux_sym__line_token1, - [16877] = 1, - ACTIONS(1799), 3, + [17970] = 1, + ACTIONS(1918), 3, + sym__block_close, + sym_list_marker_plus, + sym__block_quote_continuation, + [17976] = 1, + ACTIONS(712), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [16883] = 3, - ACTIONS(1772), 1, - sym__newline_inline, - ACTIONS(1801), 1, - sym__eof_or_newline, - STATE(656), 1, - aux_sym__paragraph_inline_content_repeat1, - [16893] = 3, - ACTIONS(1017), 1, - sym_list_marker_star, - ACTIONS(1254), 1, + [17982] = 1, + ACTIONS(708), 3, + sym__list_item_continuation, + sym__list_item_end, sym__block_quote_continuation, - STATE(674), 1, - aux_sym__block_quote_prefix_repeat1, - [16903] = 3, - ACTIONS(876), 1, - sym_list_marker_star, - ACTIONS(1803), 1, + [17988] = 3, + ACTIONS(996), 1, + sym_list_marker_plus, + ACTIONS(1306), 1, sym__block_quote_continuation, - STATE(674), 1, + STATE(763), 1, aux_sym__block_quote_prefix_repeat1, - [16913] = 3, - ACTIONS(1017), 1, - sym__list_marker_task_begin, - ACTIONS(1179), 1, + [17998] = 1, + ACTIONS(720), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [18004] = 3, + ACTIONS(996), 1, + sym_list_marker_dash, + ACTIONS(1316), 1, sym__block_quote_continuation, - STATE(679), 1, + STATE(681), 1, aux_sym__block_quote_prefix_repeat1, - [16923] = 1, - ACTIONS(1735), 3, + [18014] = 3, + ACTIONS(1920), 1, + anon_sym_DQUOTE, + ACTIONS(1922), 1, + aux_sym_value_token2, + STATE(489), 1, + sym_value, + [18024] = 1, + ACTIONS(1909), 3, sym__block_close, sym_list_marker_star, sym__block_quote_continuation, - [16929] = 1, - ACTIONS(856), 3, + [18030] = 1, + ACTIONS(792), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [16935] = 2, - ACTIONS(1806), 1, - sym__code_block_end, - ACTIONS(534), 2, - sym__block_close, - sym__block_quote_continuation, - [16943] = 3, - ACTIONS(876), 1, - sym__list_marker_task_begin, - ACTIONS(1808), 1, - sym__block_quote_continuation, - STATE(679), 1, - aux_sym__block_quote_prefix_repeat1, - [16953] = 1, - ACTIONS(682), 3, + [18036] = 1, + ACTIONS(808), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [16959] = 3, - ACTIONS(1017), 1, + [18042] = 1, + ACTIONS(706), 3, sym__list_item_continuation, - ACTIONS(1310), 1, + sym__list_item_end, sym__block_quote_continuation, - STATE(686), 1, - aux_sym__block_quote_prefix_repeat1, - [16969] = 1, - ACTIONS(864), 3, + [18048] = 1, + ACTIONS(814), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [16975] = 1, - ACTIONS(868), 3, + [18054] = 1, + ACTIONS(818), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [16981] = 1, - ACTIONS(694), 3, + [18060] = 1, + ACTIONS(822), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [16987] = 1, - ACTIONS(1788), 3, - sym__block_close, - sym_list_marker_star, - sym__block_quote_continuation, - [16993] = 3, - ACTIONS(876), 1, + [18066] = 1, + ACTIONS(826), 3, sym__list_item_continuation, - ACTIONS(1811), 1, + sym__list_item_end, sym__block_quote_continuation, - STATE(686), 1, - aux_sym__block_quote_prefix_repeat1, - [17003] = 3, - ACTIONS(1772), 1, - sym__newline_inline, - ACTIONS(1801), 1, - sym__eof_or_newline, - STATE(657), 1, - aux_sym__paragraph_inline_content_repeat1, - [17013] = 1, - ACTIONS(872), 3, + [18072] = 1, + ACTIONS(830), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [17019] = 3, - ACTIONS(1017), 1, - aux_sym__line_token1, - ACTIONS(1185), 1, - sym__block_quote_continuation, - STATE(690), 1, - aux_sym__block_quote_prefix_repeat1, - [17029] = 3, - ACTIONS(876), 1, - aux_sym__line_token1, - ACTIONS(1814), 1, - sym__block_quote_continuation, - STATE(690), 1, - aux_sym__block_quote_prefix_repeat1, - [17039] = 1, - ACTIONS(1735), 3, - sym__block_close, - sym__list_marker_task_begin, - sym__block_quote_continuation, - [17045] = 1, - ACTIONS(690), 3, + [18078] = 1, + ACTIONS(834), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [17051] = 1, - ACTIONS(1817), 3, - sym__block_close, - sym__block_quote_continuation, - aux_sym__line_token1, - [17057] = 1, - ACTIONS(1788), 3, - sym__block_close, - sym__list_marker_task_begin, - sym__block_quote_continuation, - [17063] = 3, - ACTIONS(1772), 1, - sym__newline_inline, - ACTIONS(1819), 1, - sym__eof_or_newline, - STATE(687), 1, - aux_sym__paragraph_inline_content_repeat1, - [17073] = 2, - ACTIONS(1821), 1, - sym__div_end, - ACTIONS(572), 2, - sym__block_close, - sym__block_quote_continuation, - [17081] = 1, - ACTIONS(1823), 3, - sym__block_close, - sym_list_marker_star, + [18084] = 1, + ACTIONS(838), 3, + sym__list_item_continuation, + sym__list_item_end, sym__block_quote_continuation, - [17087] = 1, - ACTIONS(710), 3, + [18090] = 1, + ACTIONS(1924), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [17093] = 1, - ACTIONS(698), 3, + [18096] = 1, + ACTIONS(842), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [17099] = 2, - ACTIONS(1825), 1, - sym__code_block_end, - ACTIONS(578), 2, - sym__block_close, + [18102] = 1, + ACTIONS(846), 3, + sym__list_item_continuation, + sym__list_item_end, sym__block_quote_continuation, - [17107] = 1, - ACTIONS(706), 3, + [18108] = 1, + ACTIONS(850), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [17113] = 1, - ACTIONS(754), 3, + [18114] = 1, + ACTIONS(854), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [17119] = 1, - ACTIONS(766), 3, + [18120] = 1, + ACTIONS(858), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [17125] = 1, - ACTIONS(714), 3, + [18126] = 1, + ACTIONS(862), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [17131] = 1, - ACTIONS(718), 3, + [18132] = 1, + ACTIONS(866), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [17137] = 1, - ACTIONS(722), 3, + [18138] = 1, + ACTIONS(870), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [17143] = 1, - ACTIONS(1827), 3, + [18144] = 1, + ACTIONS(1926), 3, sym__block_close, - sym__list_marker_task_begin, sym__block_quote_continuation, - [17149] = 1, - ACTIONS(782), 3, - sym__list_item_continuation, - sym__list_item_end, + aux_sym__line_token1, + [18150] = 1, + ACTIONS(1888), 3, + sym__block_close, + sym_list_marker_star, sym__block_quote_continuation, - [17155] = 2, - ACTIONS(1829), 1, - sym__div_end, - ACTIONS(610), 2, + [18156] = 1, + ACTIONS(1928), 3, sym__block_close, + sym_list_marker_star, sym__block_quote_continuation, - [17163] = 1, - ACTIONS(734), 3, + [18162] = 1, + ACTIONS(556), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [17169] = 1, - ACTIONS(738), 3, - sym__list_item_continuation, - sym__list_item_end, + [18168] = 1, + ACTIONS(1930), 3, + sym__block_close, + sym__list_marker_task_begin, sym__block_quote_continuation, - [17175] = 1, - ACTIONS(786), 3, - sym__list_item_continuation, - sym__list_item_end, + [18174] = 3, + ACTIONS(506), 1, sym__block_quote_continuation, - [17181] = 1, - ACTIONS(742), 3, - sym__list_item_continuation, - sym__list_item_end, + ACTIONS(996), 1, + anon_sym_PIPE, + STATE(768), 1, + aux_sym__block_quote_prefix_repeat1, + [18184] = 3, + ACTIONS(902), 1, + sym_list_marker_plus, + ACTIONS(1932), 1, sym__block_quote_continuation, - [17187] = 1, - ACTIONS(746), 3, + STATE(763), 1, + aux_sym__block_quote_prefix_repeat1, + [18194] = 1, + ACTIONS(874), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [17193] = 1, - ACTIONS(750), 3, + [18200] = 2, + ACTIONS(1935), 1, + sym__eof_or_newline, + ACTIONS(580), 2, + sym__block_close, + sym__block_quote_continuation, + [18208] = 1, + ACTIONS(878), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [17199] = 2, - ACTIONS(1831), 1, - sym__code_block_end, - ACTIONS(584), 2, + [18214] = 3, + ACTIONS(1937), 1, + sym__block_close, + ACTIONS(1939), 1, + sym__heading_continuation, + STATE(787), 1, + aux_sym__heading_content_repeat1, + [18224] = 3, + ACTIONS(902), 1, + anon_sym_PIPE, + ACTIONS(1941), 1, + sym__block_quote_continuation, + STATE(768), 1, + aux_sym__block_quote_prefix_repeat1, + [18234] = 1, + ACTIONS(1944), 3, + anon_sym_PERCENT, + sym_backslash_escape, + aux_sym__comment_no_newline_token1, + [18240] = 2, + ACTIONS(1946), 1, + sym__eof_or_newline, + ACTIONS(588), 2, sym__block_close, sym__block_quote_continuation, - [17207] = 1, - ACTIONS(758), 3, + [18248] = 1, + ACTIONS(798), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [17213] = 1, - ACTIONS(762), 3, + [18254] = 1, + ACTIONS(882), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [17219] = 3, - ACTIONS(1833), 1, + [18260] = 2, + ACTIONS(1948), 1, + sym__div_end, + ACTIONS(622), 2, sym__block_close, - ACTIONS(1835), 1, - sym__heading_continuation, - STATE(660), 1, - aux_sym__heading_content_repeat1, - [17229] = 3, - ACTIONS(480), 1, sym__block_quote_continuation, - ACTIONS(1017), 1, - anon_sym_PIPE, - STATE(723), 1, - aux_sym__block_quote_prefix_repeat1, - [17239] = 2, - ACTIONS(1837), 1, - sym__eof_or_newline, - ACTIONS(598), 2, + [18268] = 2, + ACTIONS(1950), 1, + sym__code_block_end, + ACTIONS(596), 2, + sym__block_close, + sym__block_quote_continuation, + [18276] = 1, + ACTIONS(1909), 3, sym__block_close, + sym_list_marker_plus, sym__block_quote_continuation, - [17247] = 3, - ACTIONS(1017), 1, + [18282] = 1, + ACTIONS(1952), 3, + sym__block_close, sym_list_marker_dash, - ACTIONS(1250), 1, sym__block_quote_continuation, - STATE(632), 1, - aux_sym__block_quote_prefix_repeat1, - [17257] = 3, - ACTIONS(876), 1, - anon_sym_PIPE, - ACTIONS(1839), 1, + [18288] = 2, + ACTIONS(1954), 1, + sym__div_end, + ACTIONS(592), 2, + sym__block_close, sym__block_quote_continuation, - STATE(723), 1, - aux_sym__block_quote_prefix_repeat1, - [17267] = 3, - ACTIONS(1835), 1, - sym__heading_continuation, - ACTIONS(1842), 1, + [18296] = 2, + ACTIONS(1956), 1, + sym__div_end, + ACTIONS(614), 2, sym__block_close, - STATE(719), 1, - aux_sym__heading_content_repeat1, - [17277] = 2, - ACTIONS(1844), 1, - sym__eof_or_newline, - ACTIONS(664), 2, + sym__block_quote_continuation, + [18304] = 2, + ACTIONS(1958), 1, + sym__code_block_end, + ACTIONS(606), 2, + sym__block_close, + sym__block_quote_continuation, + [18312] = 2, + ACTIONS(1960), 1, + sym__code_block_end, + ACTIONS(644), 2, sym__block_close, sym__block_quote_continuation, - [17285] = 1, - ACTIONS(1735), 3, + [18320] = 2, + ACTIONS(1962), 1, + sym__code_block_end, + ACTIONS(650), 2, + sym__block_close, + sym__block_quote_continuation, + [18328] = 1, + ACTIONS(1888), 3, sym__block_close, sym_list_marker_plus, sym__block_quote_continuation, - [17291] = 1, - ACTIONS(860), 3, + [18334] = 1, + ACTIONS(886), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [17297] = 2, - ACTIONS(1846), 1, - sym_table_cell_alignment, - ACTIONS(1848), 1, - sym__newline, - [17304] = 1, - ACTIONS(1850), 2, - sym__block_close, - sym_list_marker_decimal_period, - [17309] = 2, - ACTIONS(1852), 1, - anon_sym_PIPE, - STATE(794), 1, - aux_sym_table_row_repeat1, - [17316] = 1, - ACTIONS(1854), 2, - sym__block_close, - sym_list_marker_lower_alpha_period, - [17321] = 1, - ACTIONS(1856), 2, + [18340] = 2, + ACTIONS(1964), 1, + sym__div_end, + ACTIONS(676), 2, sym__block_close, - sym_list_marker_upper_alpha_period, - [17326] = 1, - ACTIONS(1858), 2, + sym__block_quote_continuation, + [18348] = 2, + ACTIONS(1966), 1, + sym__code_block_end, + ACTIONS(564), 2, sym__block_close, - sym_list_marker_lower_roman_period, - [17331] = 1, - ACTIONS(718), 2, + sym__block_quote_continuation, + [18356] = 2, + ACTIONS(1968), 1, + sym__code_block_end, + ACTIONS(570), 2, sym__block_close, sym__block_quote_continuation, - [17336] = 1, - ACTIONS(722), 2, + [18364] = 3, + ACTIONS(1939), 1, + sym__heading_continuation, + ACTIONS(1970), 1, sym__block_close, + STATE(728), 1, + aux_sym__heading_content_repeat1, + [18374] = 1, + ACTIONS(772), 3, + sym__list_item_continuation, + sym__list_item_end, sym__block_quote_continuation, - [17341] = 1, - ACTIONS(1860), 2, + [18380] = 2, + ACTIONS(588), 1, + sym__list_item_content_spacer, + ACTIONS(1972), 1, + sym__eof_or_newline, + [18387] = 1, + ACTIONS(1909), 2, sym__block_close, - sym_list_marker_definition, - [17346] = 1, - ACTIONS(1862), 2, + sym_list_marker_lower_alpha_parens, + [18392] = 1, + ACTIONS(1888), 2, sym__block_close, - sym_list_marker_upper_roman_period, - [17351] = 1, - ACTIONS(868), 2, + sym_list_marker_lower_alpha_parens, + [18397] = 1, + ACTIONS(1909), 2, sym__block_close, - sym__block_quote_continuation, - [17356] = 1, - ACTIONS(1864), 2, + sym_list_marker_upper_alpha_parens, + [18402] = 1, + ACTIONS(1888), 2, sym__block_close, - sym_list_marker_decimal_paren, - [17361] = 1, - ACTIONS(1735), 2, + sym_list_marker_upper_alpha_parens, + [18407] = 1, + ACTIONS(1909), 2, sym__block_close, - sym_list_marker_decimal_period, - [17366] = 1, - ACTIONS(1866), 2, - sym__footnote_mark_begin, - sym__in_fallback, - [17371] = 1, - ACTIONS(1868), 2, + sym_list_marker_lower_roman_parens, + [18412] = 1, + ACTIONS(1888), 2, sym__block_close, - sym_list_marker_lower_alpha_paren, - [17376] = 2, - ACTIONS(1866), 1, - sym__in_fallback, - ACTIONS(1870), 1, - sym__footnote_mark_begin, - [17383] = 1, - ACTIONS(1873), 2, + sym_list_marker_lower_roman_parens, + [18417] = 1, + ACTIONS(1909), 2, sym__block_close, - sym_list_marker_upper_alpha_paren, - [17388] = 2, - ACTIONS(1846), 1, - sym_table_cell_alignment, - ACTIONS(1875), 1, - sym__newline, - [17395] = 1, - ACTIONS(1877), 2, + sym_list_marker_upper_roman_parens, + [18422] = 1, + ACTIONS(1888), 2, sym__block_close, - sym_list_marker_lower_roman_paren, - [17400] = 1, - ACTIONS(1879), 2, + sym_list_marker_upper_roman_parens, + [18427] = 1, + ACTIONS(1974), 2, sym__block_close, - sym_list_marker_upper_roman_paren, - [17405] = 2, - ACTIONS(31), 1, - sym__list_marker_task_begin, - STATE(34), 1, - sym_list_marker_task, - [17412] = 2, - ACTIONS(1846), 1, - sym_table_cell_alignment, - ACTIONS(1881), 1, - sym__newline, - [17419] = 2, - ACTIONS(1883), 1, + sym_list_marker_decimal_paren, + [18432] = 1, + ACTIONS(1976), 2, sym__eof_or_newline, - STATE(152), 1, - sym__one_or_two_newlines, - [17426] = 1, - ACTIONS(1788), 2, + sym__close_paragraph, + [18437] = 2, + ACTIONS(1978), 1, + sym__footnote_mark_begin, + ACTIONS(1981), 1, + sym__in_fallback, + [18444] = 1, + ACTIONS(1983), 2, sym__block_close, - sym_list_marker_decimal_period, - [17431] = 2, - ACTIONS(1846), 1, - sym_table_cell_alignment, - ACTIONS(1885), 1, - sym__newline, - [17438] = 1, - ACTIONS(730), 2, + sym_list_marker_lower_alpha_paren, + [18449] = 1, + ACTIONS(1985), 2, sym__block_close, - sym__block_quote_continuation, - [17443] = 2, - ACTIONS(1887), 1, - sym__eof_or_newline, - STATE(717), 1, - sym__one_or_two_newlines, - [17450] = 1, - ACTIONS(1889), 2, - sym__eof_or_newline, - sym__close_paragraph, - [17455] = 1, - ACTIONS(734), 2, + sym_list_marker_upper_alpha_paren, + [18454] = 1, + ACTIONS(780), 2, sym__block_close, sym__block_quote_continuation, - [17460] = 1, - ACTIONS(738), 2, + [18459] = 1, + ACTIONS(1987), 2, sym__block_close, - sym__block_quote_continuation, - [17465] = 2, - ACTIONS(1891), 1, + sym_list_marker_definition, + [18464] = 1, + ACTIONS(1909), 2, + sym__block_close, + sym_list_marker_decimal_period, + [18469] = 2, + ACTIONS(1989), 1, anon_sym_PIPE, - STATE(805), 1, + STATE(858), 1, aux_sym_table_separator_repeat1, - [17472] = 2, - ACTIONS(1852), 1, + [18476] = 2, + ACTIONS(1991), 1, anon_sym_PIPE, - STATE(807), 1, + STATE(859), 1, aux_sym_table_row_repeat1, - [17479] = 1, - ACTIONS(742), 2, - sym__block_close, + [18483] = 1, + ACTIONS(445), 2, + sym_list_marker_dash, sym__block_quote_continuation, - [17484] = 1, - ACTIONS(1893), 2, + [18488] = 1, + ACTIONS(1993), 2, sym__eof_or_newline, sym__close_paragraph, - [17489] = 1, - ACTIONS(746), 2, + [18493] = 1, + ACTIONS(1502), 2, sym__block_close, sym__block_quote_continuation, - [17494] = 1, - ACTIONS(1895), 2, + [18498] = 1, + ACTIONS(1995), 2, + sym__block_close, + sym_list_marker_lower_roman_paren, + [18503] = 1, + ACTIONS(1981), 2, + sym__footnote_mark_begin, + sym__in_fallback, + [18508] = 2, + ACTIONS(31), 1, + sym__list_marker_task_begin, + STATE(54), 1, + sym_list_marker_task, + [18515] = 1, + ACTIONS(1909), 2, + sym__block_close, + sym_list_marker_lower_alpha_period, + [18520] = 1, + ACTIONS(1997), 2, sym__block_close, sym_list_marker_decimal_parens, - [17499] = 1, - ACTIONS(1774), 2, + [18525] = 2, + ACTIONS(1999), 1, + sym_table_cell_alignment, + ACTIONS(2001), 1, + sym__newline, + [18532] = 1, + ACTIONS(1872), 2, sym__eof_or_newline, sym__newline_inline, - [17504] = 1, - ACTIONS(750), 2, + [18537] = 2, + ACTIONS(2003), 1, + sym__eof_or_newline, + STATE(157), 1, + sym__one_or_two_newlines, + [18544] = 1, + ACTIONS(2005), 2, sym__block_close, - sym__block_quote_continuation, - [17509] = 1, - ACTIONS(1897), 2, + sym_list_marker_definition, + [18549] = 1, + ACTIONS(2007), 2, sym__block_close, - sym_list_marker_lower_alpha_parens, - [17514] = 1, - ACTIONS(1899), 2, + sym_list_marker_upper_roman_paren, + [18554] = 1, + ACTIONS(1888), 2, sym__block_close, - sym_list_marker_upper_alpha_parens, - [17519] = 1, - ACTIONS(1901), 2, + sym_list_marker_decimal_period, + [18559] = 1, + ACTIONS(2009), 2, sym__block_close, - sym_list_marker_lower_roman_parens, - [17524] = 1, - ACTIONS(1903), 2, + sym_list_marker_decimal_parens, + [18564] = 2, + ACTIONS(1999), 1, + sym_table_cell_alignment, + ACTIONS(2011), 1, + sym__newline, + [18571] = 1, + ACTIONS(2013), 2, sym__block_close, - sym_list_marker_upper_roman_parens, - [17529] = 1, - ACTIONS(864), 2, + sym_list_marker_lower_alpha_parens, + [18576] = 1, + ACTIONS(2015), 2, sym__block_close, - sym__block_quote_continuation, - [17534] = 1, - ACTIONS(758), 2, + sym_list_marker_upper_alpha_parens, + [18581] = 2, + ACTIONS(1999), 1, + sym_table_cell_alignment, + ACTIONS(2017), 1, + sym__newline, + [18588] = 1, + ACTIONS(1888), 2, sym__block_close, - sym__block_quote_continuation, - [17539] = 1, - ACTIONS(1905), 2, + sym_list_marker_lower_alpha_period, + [18593] = 2, + ACTIONS(2019), 1, + sym__eof_or_newline, + STATE(1102), 1, + sym__one_or_two_newlines, + [18600] = 1, + ACTIONS(2021), 2, + sym__eof_or_newline, + sym__close_paragraph, + [18605] = 1, + ACTIONS(2023), 2, sym__block_close, - sym_list_marker_decimal_parens, - [17544] = 1, - ACTIONS(1783), 2, + sym_list_marker_lower_roman_parens, + [18610] = 1, + ACTIONS(1913), 2, sym__block_close, sym__heading_continuation, - [17549] = 1, - ACTIONS(1907), 2, - sym__footnote_mark_begin, - sym__in_fallback, - [17554] = 1, - ACTIONS(762), 2, + [18615] = 2, + ACTIONS(1999), 1, + sym_table_cell_alignment, + ACTIONS(2025), 1, + sym__newline, + [18622] = 1, + ACTIONS(2027), 2, sym__block_close, - sym__block_quote_continuation, - [17559] = 2, - ACTIONS(1181), 1, + sym_list_marker_upper_roman_parens, + [18627] = 2, + ACTIONS(1999), 1, + sym_table_cell_alignment, + ACTIONS(2029), 1, + sym__newline, + [18634] = 2, + ACTIONS(2031), 1, + anon_sym_PIPE, + STATE(835), 1, + aux_sym_table_separator_repeat1, + [18641] = 2, + ACTIONS(1236), 1, aux_sym__line_token1, - STATE(670), 1, + STATE(708), 1, sym__line, - [17566] = 1, - ACTIONS(860), 2, + [18648] = 1, + ACTIONS(2034), 2, sym__block_close, - sym__block_quote_continuation, - [17571] = 2, - ACTIONS(1909), 1, + sym_list_marker_decimal_paren, + [18653] = 1, + ACTIONS(2036), 2, + sym__footnote_mark_begin, + sym__in_fallback, + [18658] = 2, + ACTIONS(1989), 1, anon_sym_PIPE, - STATE(830), 1, + STATE(835), 1, aux_sym_table_separator_repeat1, - [17578] = 1, - ACTIONS(441), 2, - sym_list_marker_dash, - sym__block_quote_continuation, - [17583] = 1, - ACTIONS(441), 2, - sym_list_marker_plus, + [18665] = 1, + ACTIONS(445), 2, + sym_list_marker_star, sym__block_quote_continuation, - [17588] = 2, - ACTIONS(1911), 1, + [18670] = 2, + ACTIONS(1999), 1, + sym_table_cell_alignment, + ACTIONS(2038), 1, + sym__newline, + [18677] = 2, + ACTIONS(2040), 1, + sym__id, + STATE(522), 1, + sym_class_name, + [18684] = 1, + ACTIONS(2042), 2, + sym__block_close, + sym_list_marker_lower_alpha_period, + [18689] = 2, + ACTIONS(2044), 1, anon_sym_PIPE, - STATE(730), 1, + STATE(844), 1, aux_sym_table_row_repeat1, - [17595] = 2, - ACTIONS(1846), 1, + [18696] = 2, + ACTIONS(1999), 1, sym_table_cell_alignment, - ACTIONS(1913), 1, + ACTIONS(2047), 1, sym__newline, - [17602] = 2, - ACTIONS(1846), 1, + [18703] = 2, + ACTIONS(1999), 1, sym_table_cell_alignment, - ACTIONS(1915), 1, + ACTIONS(2049), 1, sym__newline, - [17609] = 2, - ACTIONS(1917), 1, + [18710] = 2, + ACTIONS(2051), 1, sym__eof_or_newline, - STATE(771), 1, + STATE(901), 1, sym__one_or_two_newlines, - [17616] = 1, - ACTIONS(1919), 2, + [18717] = 1, + ACTIONS(2053), 2, sym__eof_or_newline, sym__close_paragraph, - [17621] = 1, - ACTIONS(1921), 2, - sym__block_close, - sym_list_marker_definition, - [17626] = 1, - ACTIONS(1923), 2, - sym__block_close, - sym_list_marker_lower_alpha_period, - [17631] = 1, - ACTIONS(1416), 2, - sym__block_close, - sym__block_quote_continuation, - [17636] = 2, - ACTIONS(1925), 1, - sym__id, - STATE(465), 1, - sym_class_name, - [17643] = 2, - ACTIONS(1846), 1, - sym_table_cell_alignment, - ACTIONS(1927), 1, - sym__newline, - [17650] = 2, - ACTIONS(1929), 1, + [18722] = 2, + ACTIONS(2055), 1, anon_sym_PIPE, - STATE(791), 1, + STATE(839), 1, aux_sym_table_separator_repeat1, - [17657] = 1, - ACTIONS(1932), 2, + [18729] = 1, + ACTIONS(2057), 2, sym__block_close, sym_list_marker_lower_alpha_paren, - [17662] = 1, - ACTIONS(1934), 2, - sym__block_close, - sym_list_marker_lower_alpha_parens, - [17667] = 2, - ACTIONS(1936), 1, - anon_sym_PIPE, - STATE(794), 1, - aux_sym_table_row_repeat1, - [17674] = 1, - ACTIONS(1939), 2, + [18734] = 1, + ACTIONS(445), 2, + sym_list_marker_plus, + sym__block_quote_continuation, + [18739] = 1, + ACTIONS(2059), 2, sym__block_close, sym_list_marker_decimal_period, - [17679] = 1, - ACTIONS(1941), 2, - sym__footnote_mark_begin, - sym__in_fallback, - [17684] = 1, - ACTIONS(1943), 2, + [18744] = 1, + ACTIONS(2061), 2, + sym__block_close, + sym_list_marker_lower_alpha_parens, + [18749] = 1, + ACTIONS(2063), 2, sym__block_close, sym_list_marker_upper_alpha_period, - [17689] = 1, - ACTIONS(1945), 2, + [18754] = 1, + ACTIONS(2065), 2, sym__block_close, sym_list_marker_upper_alpha_paren, - [17694] = 1, - ACTIONS(1947), 2, + [18759] = 1, + ACTIONS(2067), 2, sym__block_close, sym_list_marker_upper_alpha_parens, - [17699] = 2, - ACTIONS(1846), 1, - sym_table_cell_alignment, - ACTIONS(1949), 1, - sym__newline, - [17706] = 1, - ACTIONS(1951), 2, + [18764] = 1, + ACTIONS(2069), 2, sym__block_close, sym_list_marker_lower_roman_period, - [17711] = 1, - ACTIONS(1953), 2, - sym__block_close, - sym_list_marker_lower_roman_paren, - [17716] = 1, - ACTIONS(1109), 2, - sym__block_close, - sym__heading_continuation, - [17721] = 1, - ACTIONS(1735), 2, - sym__block_close, - sym_list_marker_lower_alpha_period, - [17726] = 2, - ACTIONS(1955), 1, + [18769] = 2, + ACTIONS(2071), 1, anon_sym_PIPE, - STATE(791), 1, + STATE(835), 1, aux_sym_table_separator_repeat1, - [17733] = 2, - ACTIONS(1846), 1, - sym_table_cell_alignment, - ACTIONS(1957), 1, - sym__newline, - [17740] = 2, - ACTIONS(1959), 1, + [18776] = 2, + ACTIONS(2073), 1, anon_sym_PIPE, - STATE(794), 1, + STATE(844), 1, aux_sym_table_row_repeat1, - [17747] = 1, - ACTIONS(1961), 2, + [18783] = 1, + ACTIONS(2075), 2, sym__eof_or_newline, sym__close_paragraph, - [17752] = 2, - ACTIONS(1846), 1, + [18788] = 1, + ACTIONS(2077), 2, + sym__footnote_mark_begin, + sym__in_fallback, + [18793] = 2, + ACTIONS(1999), 1, + sym_table_cell_alignment, + ACTIONS(2079), 1, + sym__newline, + [18800] = 2, + ACTIONS(1999), 1, sym_table_cell_alignment, - ACTIONS(1963), 1, + ACTIONS(2081), 1, sym__newline, - [17759] = 1, - ACTIONS(1965), 2, + [18807] = 1, + ACTIONS(2083), 2, sym__eof_or_newline, sym__newline_inline, - [17764] = 2, - ACTIONS(1967), 1, + [18812] = 2, + ACTIONS(1999), 1, + sym_table_cell_alignment, + ACTIONS(2085), 1, + sym__newline, + [18819] = 2, + ACTIONS(1991), 1, + anon_sym_PIPE, + STATE(844), 1, + aux_sym_table_row_repeat1, + [18826] = 2, + ACTIONS(2087), 1, sym__eof_or_newline, - STATE(220), 1, + STATE(224), 1, sym__one_or_two_newlines, - [17771] = 1, - ACTIONS(1969), 2, + [18833] = 1, + ACTIONS(2089), 2, sym__eof_or_newline, sym__close_paragraph, - [17776] = 1, - ACTIONS(1788), 2, - sym__block_close, - sym_list_marker_lower_alpha_period, - [17781] = 1, - ACTIONS(1971), 2, - sym__block_close, - sym_list_marker_lower_roman_parens, - [17786] = 1, - ACTIONS(1817), 2, + [18838] = 1, + ACTIONS(1926), 2, sym_frontmatter_marker, aux_sym__line_token1, - [17791] = 1, - ACTIONS(698), 2, + [18843] = 1, + ACTIONS(768), 2, sym__block_close, sym__block_quote_continuation, - [17796] = 2, - ACTIONS(1973), 1, + [18848] = 1, + ACTIONS(2091), 2, + sym__block_close, + sym_list_marker_lower_roman_paren, + [18853] = 1, + ACTIONS(2093), 2, + sym__eof_or_newline, + sym__close_paragraph, + [18858] = 2, + ACTIONS(2095), 1, sym__id, - STATE(981), 1, + STATE(1211), 1, sym_reference_label, - [17803] = 1, - ACTIONS(1975), 2, + [18865] = 1, + ACTIONS(2097), 2, + sym__block_close, + sym_list_marker_lower_roman_parens, + [18870] = 1, + ACTIONS(1909), 2, + sym__block_close, + sym_list_marker_upper_alpha_period, + [18875] = 1, + ACTIONS(2099), 2, sym__block_close, sym_list_marker_upper_roman_period, - [17808] = 1, - ACTIONS(1977), 2, + [18880] = 2, + ACTIONS(2101), 1, + anon_sym_PIPE, + STATE(866), 1, + aux_sym_table_row_repeat1, + [18887] = 1, + ACTIONS(2103), 2, sym__block_close, sym_list_marker_upper_roman_paren, - [17813] = 1, - ACTIONS(690), 2, - sym__block_close, - sym__block_quote_continuation, - [17818] = 1, - ACTIONS(1979), 2, + [18892] = 1, + ACTIONS(2105), 2, sym__block_close, - sym_list_marker_definition, - [17823] = 1, - ACTIONS(1981), 2, + sym_list_marker_decimal_period, + [18897] = 1, + ACTIONS(2107), 2, sym__block_close, sym_list_marker_upper_roman_parens, - [17828] = 2, - ACTIONS(1846), 1, + [18902] = 2, + ACTIONS(1999), 1, sym_table_cell_alignment, - ACTIONS(1983), 1, + ACTIONS(2109), 1, sym__newline, - [17835] = 1, - ACTIONS(706), 2, + [18909] = 1, + ACTIONS(2111), 2, sym__block_close, - sym__block_quote_continuation, - [17840] = 2, - ACTIONS(1846), 1, + sym_list_marker_definition, + [18914] = 2, + ACTIONS(622), 1, + sym__list_item_content_spacer, + ACTIONS(2113), 1, + sym__div_end, + [18921] = 2, + ACTIONS(596), 1, + sym__list_item_content_spacer, + ACTIONS(2115), 1, + sym__code_block_end, + [18928] = 2, + ACTIONS(1999), 1, sym_table_cell_alignment, - ACTIONS(1985), 1, + ACTIONS(2117), 1, sym__newline, - [17847] = 2, - ACTIONS(1846), 1, + [18935] = 1, + ACTIONS(1888), 2, + sym__block_close, + sym_list_marker_upper_alpha_period, + [18940] = 2, + ACTIONS(1999), 1, sym_table_cell_alignment, - ACTIONS(1987), 1, + ACTIONS(2119), 1, sym__newline, - [17854] = 1, - ACTIONS(1989), 2, + [18947] = 2, + ACTIONS(2121), 1, + sym__eof_or_newline, + STATE(701), 1, + sym__one_or_two_newlines, + [18954] = 1, + ACTIONS(2123), 2, sym__eof_or_newline, sym__close_paragraph, - [17859] = 1, - ACTIONS(441), 2, - sym_list_marker_star, - sym__block_quote_continuation, - [17864] = 2, - ACTIONS(1846), 1, + [18959] = 2, + ACTIONS(592), 1, + sym__list_item_content_spacer, + ACTIONS(2125), 1, + sym__div_end, + [18966] = 2, + ACTIONS(614), 1, + sym__list_item_content_spacer, + ACTIONS(2127), 1, + sym__div_end, + [18973] = 1, + ACTIONS(2129), 2, + sym__block_close, + sym_list_marker_lower_alpha_period, + [18978] = 1, + ACTIONS(2131), 2, + sym__eof_or_newline, + sym__close_paragraph, + [18983] = 2, + ACTIONS(1999), 1, sym_table_cell_alignment, - ACTIONS(1991), 1, + ACTIONS(2133), 1, sym__newline, - [17871] = 2, - ACTIONS(1891), 1, - anon_sym_PIPE, - STATE(791), 1, - aux_sym_table_separator_repeat1, - [17878] = 2, - ACTIONS(1993), 1, + [18990] = 1, + ACTIONS(2135), 2, sym__eof_or_newline, - STATE(267), 1, - sym__one_or_two_newlines, - [17885] = 1, - ACTIONS(1735), 2, + sym__close_paragraph, + [18995] = 1, + ACTIONS(2137), 2, + sym__eof_or_newline, + sym__close_paragraph, + [19000] = 2, + ACTIONS(606), 1, + sym__list_item_content_spacer, + ACTIONS(2139), 1, + sym__code_block_end, + [19007] = 2, + ACTIONS(1999), 1, + sym_table_cell_alignment, + ACTIONS(2141), 1, + sym__newline, + [19014] = 2, + ACTIONS(644), 1, + sym__list_item_content_spacer, + ACTIONS(2143), 1, + sym__code_block_end, + [19021] = 2, + ACTIONS(650), 1, + sym__list_item_content_spacer, + ACTIONS(2145), 1, + sym__code_block_end, + [19028] = 1, + ACTIONS(776), 2, sym__block_close, - sym_list_marker_upper_alpha_period, - [17890] = 1, - ACTIONS(1788), 2, - sym__block_close, - sym_list_marker_upper_alpha_period, - [17895] = 1, - ACTIONS(441), 2, - sym__list_marker_task_begin, sym__block_quote_continuation, - [17900] = 1, - ACTIONS(1735), 2, - sym__block_close, - sym_list_marker_lower_roman_period, - [17905] = 1, - ACTIONS(1788), 2, - sym__block_close, - sym_list_marker_lower_roman_period, - [17910] = 1, - ACTIONS(441), 2, - sym__list_item_continuation, + [19033] = 1, + ACTIONS(445), 2, + sym__list_marker_task_begin, sym__block_quote_continuation, - [17915] = 1, - ACTIONS(872), 2, + [19038] = 2, + ACTIONS(676), 1, + sym__list_item_content_spacer, + ACTIONS(2147), 1, + sym__div_end, + [19045] = 2, + ACTIONS(1999), 1, + sym_table_cell_alignment, + ACTIONS(2149), 1, + sym__newline, + [19052] = 2, + ACTIONS(564), 1, + sym__list_item_content_spacer, + ACTIONS(2151), 1, + sym__code_block_end, + [19059] = 2, + ACTIONS(1999), 1, + sym_table_cell_alignment, + ACTIONS(2153), 1, + sym__newline, + [19066] = 2, + ACTIONS(570), 1, + sym__list_item_content_spacer, + ACTIONS(2155), 1, + sym__code_block_end, + [19073] = 2, + ACTIONS(2157), 1, + sym__eof_or_newline, + STATE(271), 1, + sym__one_or_two_newlines, + [19080] = 1, + ACTIONS(1909), 2, sym__block_close, + sym_list_marker_decimal_parens, + [19085] = 2, + ACTIONS(2159), 1, + sym__whitespace1, + ACTIONS(2161), 1, + sym__newline, + [19092] = 2, + ACTIONS(580), 1, + sym__list_item_content_spacer, + ACTIONS(2163), 1, + sym__eof_or_newline, + [19099] = 1, + ACTIONS(445), 2, sym__block_quote_continuation, - [17920] = 1, - ACTIONS(714), 2, + anon_sym_PIPE, + [19104] = 1, + ACTIONS(712), 2, sym__block_close, sym__block_quote_continuation, - [17925] = 1, - ACTIONS(856), 2, + [19109] = 1, + ACTIONS(708), 2, sym__block_close, sym__block_quote_continuation, - [17930] = 1, - ACTIONS(1788), 2, - sym__block_close, - sym_list_marker_upper_roman_period, - [17935] = 1, - ACTIONS(1995), 2, - sym__eof_or_newline, - sym__close_paragraph, - [17940] = 1, - ACTIONS(1735), 2, + [19114] = 2, + ACTIONS(2165), 1, + sym_language, + ACTIONS(2167), 1, + sym__newline, + [19121] = 1, + ACTIONS(2169), 2, + sym__footnote_mark_begin, + sym__in_fallback, + [19126] = 1, + ACTIONS(1888), 2, sym__block_close, - sym_list_marker_decimal_paren, - [17945] = 1, - ACTIONS(1788), 2, + sym_list_marker_decimal_parens, + [19131] = 1, + ACTIONS(720), 2, sym__block_close, - sym_list_marker_decimal_paren, - [17950] = 1, - ACTIONS(441), 2, sym__block_quote_continuation, - aux_sym__line_token1, - [17955] = 1, - ACTIONS(1735), 2, - sym__block_close, - sym_list_marker_lower_alpha_paren, - [17960] = 1, - ACTIONS(1788), 2, - sym__block_close, - sym_list_marker_lower_alpha_paren, - [17965] = 1, - ACTIONS(1997), 2, - sym__block_close, - sym_list_marker_decimal_paren, - [17970] = 1, - ACTIONS(1999), 2, - sym__eof_or_newline, - sym__close_paragraph, - [17975] = 1, - ACTIONS(1735), 2, - sym__block_close, - sym_list_marker_upper_alpha_paren, - [17980] = 1, - ACTIONS(1788), 2, + [19136] = 1, + ACTIONS(740), 2, sym__block_close, - sym_list_marker_upper_alpha_paren, - [17985] = 1, - ACTIONS(1735), 2, + sym__block_quote_continuation, + [19141] = 1, + ACTIONS(772), 2, sym__block_close, - sym_list_marker_lower_roman_paren, - [17990] = 1, - ACTIONS(1788), 2, + sym__block_quote_continuation, + [19146] = 1, + ACTIONS(792), 2, sym__block_close, - sym_list_marker_lower_roman_paren, - [17995] = 1, - ACTIONS(1735), 2, + sym__block_quote_continuation, + [19151] = 1, + ACTIONS(808), 2, sym__block_close, - sym_list_marker_upper_roman_paren, - [18000] = 1, - ACTIONS(1788), 2, + sym__block_quote_continuation, + [19156] = 1, + ACTIONS(706), 2, sym__block_close, - sym_list_marker_upper_roman_paren, - [18005] = 1, - ACTIONS(1735), 2, + sym__block_quote_continuation, + [19161] = 1, + ACTIONS(1909), 2, sym__block_close, - sym_list_marker_decimal_parens, - [18010] = 2, - ACTIONS(2001), 1, + sym_list_marker_lower_roman_period, + [19166] = 2, + ACTIONS(2171), 1, anon_sym_PIPE, - STATE(862), 1, + STATE(930), 1, aux_sym_table_separator_repeat1, - [18017] = 2, - ACTIONS(2003), 1, + [19173] = 2, + ACTIONS(2173), 1, anon_sym_PIPE, - STATE(863), 1, + STATE(931), 1, aux_sym_table_row_repeat1, - [18024] = 1, - ACTIONS(1788), 2, + [19180] = 1, + ACTIONS(814), 2, sym__block_close, - sym_list_marker_decimal_parens, - [18029] = 1, - ACTIONS(1735), 2, + sym__block_quote_continuation, + [19185] = 1, + ACTIONS(818), 2, sym__block_close, - sym_list_marker_lower_alpha_parens, - [18034] = 1, - ACTIONS(1788), 2, + sym__block_quote_continuation, + [19190] = 1, + ACTIONS(822), 2, sym__block_close, - sym_list_marker_lower_alpha_parens, - [18039] = 2, - ACTIONS(2005), 1, + sym__block_quote_continuation, + [19195] = 2, + ACTIONS(2175), 1, anon_sym_PIPE, - STATE(791), 1, + STATE(835), 1, aux_sym_table_separator_repeat1, - [18046] = 2, - ACTIONS(2007), 1, + [19202] = 2, + ACTIONS(2177), 1, anon_sym_PIPE, - STATE(794), 1, + STATE(844), 1, aux_sym_table_row_repeat1, - [18053] = 2, - ACTIONS(2005), 1, + [19209] = 2, + ACTIONS(2175), 1, anon_sym_PIPE, - STATE(868), 1, + STATE(936), 1, aux_sym_table_separator_repeat1, - [18060] = 2, - ACTIONS(2007), 1, + [19216] = 2, + ACTIONS(2177), 1, anon_sym_PIPE, - STATE(869), 1, + STATE(937), 1, aux_sym_table_row_repeat1, - [18067] = 1, - ACTIONS(1735), 2, + [19223] = 1, + ACTIONS(826), 2, sym__block_close, - sym_list_marker_upper_alpha_parens, - [18072] = 1, - ACTIONS(1788), 2, + sym__block_quote_continuation, + [19228] = 1, + ACTIONS(830), 2, sym__block_close, - sym_list_marker_upper_alpha_parens, - [18077] = 2, - ACTIONS(2009), 1, + sym__block_quote_continuation, + [19233] = 2, + ACTIONS(2179), 1, anon_sym_PIPE, - STATE(791), 1, + STATE(835), 1, aux_sym_table_separator_repeat1, - [18084] = 2, - ACTIONS(2011), 1, + [19240] = 2, + ACTIONS(2181), 1, anon_sym_PIPE, - STATE(794), 1, + STATE(844), 1, aux_sym_table_row_repeat1, - [18091] = 1, - ACTIONS(1735), 2, + [19247] = 1, + ACTIONS(834), 2, sym__block_close, - sym_list_marker_lower_roman_parens, - [18096] = 1, - ACTIONS(441), 2, sym__block_quote_continuation, - anon_sym_PIPE, - [18101] = 1, - ACTIONS(682), 2, + [19252] = 1, + ACTIONS(838), 2, sym__block_close, sym__block_quote_continuation, - [18106] = 1, - ACTIONS(1788), 2, + [19257] = 1, + ACTIONS(842), 2, sym__block_close, - sym_list_marker_lower_roman_parens, - [18111] = 2, - ACTIONS(2013), 1, + sym__block_quote_continuation, + [19262] = 1, + ACTIONS(1888), 2, + sym__block_close, + sym_list_marker_lower_roman_period, + [19267] = 2, + ACTIONS(2183), 1, anon_sym_PIPE, - STATE(879), 1, + STATE(947), 1, aux_sym_table_separator_repeat1, - [18118] = 2, - ACTIONS(2015), 1, + [19274] = 2, + ACTIONS(2185), 1, anon_sym_PIPE, - STATE(880), 1, + STATE(948), 1, aux_sym_table_row_repeat1, - [18125] = 1, - ACTIONS(694), 2, + [19281] = 1, + ACTIONS(846), 2, sym__block_close, sym__block_quote_continuation, - [18130] = 2, - ACTIONS(2017), 1, - sym__whitespace1, - ACTIONS(2019), 1, - sym__newline, - [18137] = 2, - ACTIONS(2021), 1, - sym_language, - ACTIONS(2023), 1, - sym__newline, - [18144] = 2, - ACTIONS(2025), 1, + [19286] = 1, + ACTIONS(850), 2, + sym__block_close, + sym__block_quote_continuation, + [19291] = 1, + ACTIONS(854), 2, + sym__block_close, + sym__block_quote_continuation, + [19296] = 2, + ACTIONS(2187), 1, anon_sym_PIPE, - STATE(791), 1, + STATE(835), 1, aux_sym_table_separator_repeat1, - [18151] = 2, - ACTIONS(2027), 1, + [19303] = 2, + ACTIONS(2189), 1, anon_sym_PIPE, - STATE(794), 1, + STATE(844), 1, aux_sym_table_row_repeat1, - [18158] = 2, - ACTIONS(2025), 1, + [19310] = 2, + ACTIONS(2187), 1, anon_sym_PIPE, - STATE(885), 1, + STATE(953), 1, aux_sym_table_separator_repeat1, - [18165] = 2, - ACTIONS(2027), 1, + [19317] = 2, + ACTIONS(2189), 1, anon_sym_PIPE, - STATE(886), 1, + STATE(954), 1, aux_sym_table_row_repeat1, - [18172] = 1, - ACTIONS(1735), 2, + [19324] = 1, + ACTIONS(858), 2, sym__block_close, - sym_list_marker_upper_roman_parens, - [18177] = 1, - ACTIONS(2029), 2, - sym__footnote_mark_begin, - sym__in_fallback, - [18182] = 2, - ACTIONS(2031), 1, + sym__block_quote_continuation, + [19329] = 1, + ACTIONS(862), 2, + sym__block_close, + sym__block_quote_continuation, + [19334] = 2, + ACTIONS(2191), 1, anon_sym_PIPE, - STATE(791), 1, + STATE(835), 1, aux_sym_table_separator_repeat1, - [18189] = 2, - ACTIONS(2033), 1, + [19341] = 2, + ACTIONS(2193), 1, anon_sym_PIPE, - STATE(794), 1, + STATE(844), 1, aux_sym_table_row_repeat1, - [18196] = 1, - ACTIONS(710), 2, + [19348] = 1, + ACTIONS(866), 2, sym__block_close, sym__block_quote_continuation, - [18201] = 1, - ACTIONS(1788), 2, + [19353] = 1, + ACTIONS(870), 2, sym__block_close, - sym_list_marker_upper_roman_parens, - [18206] = 2, - ACTIONS(2035), 1, + sym__block_quote_continuation, + [19358] = 1, + ACTIONS(2195), 2, + sym__block_close, + sym_list_marker_lower_roman_period, + [19363] = 2, + ACTIONS(2197), 1, anon_sym_PIPE, - STATE(894), 1, + STATE(963), 1, aux_sym_table_separator_repeat1, - [18213] = 2, - ACTIONS(2037), 1, + [19370] = 2, + ACTIONS(2199), 1, anon_sym_PIPE, - STATE(895), 1, + STATE(964), 1, aux_sym_table_row_repeat1, - [18220] = 1, - ACTIONS(754), 2, + [19377] = 1, + ACTIONS(556), 2, sym__block_close, sym__block_quote_continuation, - [18225] = 1, - ACTIONS(766), 2, + [19382] = 1, + ACTIONS(1909), 2, sym__block_close, - sym__block_quote_continuation, - [18230] = 1, - ACTIONS(782), 2, + sym_list_marker_upper_roman_period, + [19387] = 1, + ACTIONS(1888), 2, sym__block_close, - sym__block_quote_continuation, - [18235] = 2, - ACTIONS(2039), 1, + sym_list_marker_upper_roman_period, + [19392] = 2, + ACTIONS(2201), 1, anon_sym_PIPE, - STATE(791), 1, + STATE(835), 1, aux_sym_table_separator_repeat1, - [18242] = 2, - ACTIONS(2041), 1, + [19399] = 2, + ACTIONS(2203), 1, anon_sym_PIPE, - STATE(794), 1, + STATE(844), 1, aux_sym_table_row_repeat1, - [18249] = 2, - ACTIONS(2039), 1, + [19406] = 2, + ACTIONS(2201), 1, anon_sym_PIPE, - STATE(900), 1, + STATE(968), 1, aux_sym_table_separator_repeat1, - [18256] = 2, - ACTIONS(2041), 1, + [19413] = 2, + ACTIONS(2203), 1, anon_sym_PIPE, - STATE(901), 1, + STATE(969), 1, aux_sym_table_row_repeat1, - [18263] = 1, - ACTIONS(786), 2, - sym__block_close, - sym__block_quote_continuation, - [18268] = 1, - ACTIONS(792), 2, - sym__block_close, + [19420] = 1, + ACTIONS(445), 2, sym__block_quote_continuation, - [18273] = 2, - ACTIONS(2043), 1, + aux_sym__line_token1, + [19425] = 2, + ACTIONS(2205), 1, anon_sym_PIPE, - STATE(791), 1, + STATE(835), 1, aux_sym_table_separator_repeat1, - [18280] = 2, - ACTIONS(2045), 1, + [19432] = 2, + ACTIONS(2207), 1, anon_sym_PIPE, - STATE(794), 1, + STATE(844), 1, aux_sym_table_row_repeat1, - [18287] = 1, - ACTIONS(796), 2, + [19439] = 1, + ACTIONS(874), 2, sym__block_close, sym__block_quote_continuation, - [18292] = 1, - ACTIONS(800), 2, + [19444] = 1, + ACTIONS(878), 2, sym__block_close, sym__block_quote_continuation, - [18297] = 1, - ACTIONS(804), 2, + [19449] = 1, + ACTIONS(1909), 2, sym__block_close, - sym__block_quote_continuation, - [18302] = 2, - ACTIONS(2047), 1, + sym_list_marker_decimal_paren, + [19454] = 2, + ACTIONS(2209), 1, anon_sym_PIPE, - STATE(910), 1, + STATE(978), 1, aux_sym_table_separator_repeat1, - [18309] = 2, - ACTIONS(2049), 1, + [19461] = 2, + ACTIONS(2211), 1, anon_sym_PIPE, - STATE(911), 1, + STATE(979), 1, aux_sym_table_row_repeat1, - [18316] = 1, - ACTIONS(808), 2, + [19468] = 1, + ACTIONS(1888), 2, sym__block_close, - sym__block_quote_continuation, - [18321] = 1, - ACTIONS(812), 2, + sym_list_marker_decimal_paren, + [19473] = 1, + ACTIONS(882), 2, sym__block_close, sym__block_quote_continuation, - [18326] = 1, - ACTIONS(816), 2, + [19478] = 1, + ACTIONS(898), 2, sym__block_close, sym__block_quote_continuation, - [18331] = 2, - ACTIONS(2051), 1, + [19483] = 2, + ACTIONS(2213), 1, anon_sym_PIPE, - STATE(791), 1, + STATE(835), 1, aux_sym_table_separator_repeat1, - [18338] = 2, - ACTIONS(2053), 1, + [19490] = 2, + ACTIONS(2215), 1, anon_sym_PIPE, - STATE(794), 1, + STATE(844), 1, aux_sym_table_row_repeat1, - [18345] = 2, - ACTIONS(2051), 1, + [19497] = 2, + ACTIONS(2213), 1, anon_sym_PIPE, - STATE(916), 1, + STATE(983), 1, aux_sym_table_separator_repeat1, - [18352] = 2, - ACTIONS(2053), 1, + [19504] = 2, + ACTIONS(2215), 1, anon_sym_PIPE, - STATE(917), 1, + STATE(984), 1, aux_sym_table_row_repeat1, - [18359] = 1, - ACTIONS(820), 2, - sym__block_close, + [19511] = 1, + ACTIONS(445), 2, + sym__list_item_continuation, sym__block_quote_continuation, - [18364] = 1, - ACTIONS(824), 2, + [19516] = 2, + ACTIONS(2217), 1, + anon_sym_PIPE, + STATE(835), 1, + aux_sym_table_separator_repeat1, + [19523] = 2, + ACTIONS(2219), 1, + anon_sym_PIPE, + STATE(844), 1, + aux_sym_table_row_repeat1, + [19530] = 2, + ACTIONS(2221), 1, + sym__id, + STATE(1259), 1, + sym_class_name, + [19537] = 2, + ACTIONS(2223), 1, + anon_sym_PIPE, + STATE(991), 1, + aux_sym_table_separator_repeat1, + [19544] = 2, + ACTIONS(2225), 1, + anon_sym_PIPE, + STATE(992), 1, + aux_sym_table_row_repeat1, + [19551] = 1, + ACTIONS(886), 2, sym__block_close, sym__block_quote_continuation, - [18369] = 2, - ACTIONS(2055), 1, + [19556] = 1, + ACTIONS(1909), 2, + sym__block_close, + sym_list_marker_lower_alpha_paren, + [19561] = 1, + ACTIONS(1888), 2, + sym__block_close, + sym_list_marker_lower_alpha_paren, + [19566] = 2, + ACTIONS(2227), 1, + anon_sym_PIPE, + STATE(835), 1, + aux_sym_table_separator_repeat1, + [19573] = 2, + ACTIONS(2229), 1, + anon_sym_PIPE, + STATE(844), 1, + aux_sym_table_row_repeat1, + [19580] = 2, + ACTIONS(2227), 1, anon_sym_PIPE, - STATE(791), 1, + STATE(996), 1, aux_sym_table_separator_repeat1, - [18376] = 2, - ACTIONS(2057), 1, + [19587] = 2, + ACTIONS(2229), 1, anon_sym_PIPE, - STATE(794), 1, + STATE(997), 1, aux_sym_table_row_repeat1, - [18383] = 1, - ACTIONS(828), 2, + [19594] = 1, + ACTIONS(890), 2, sym__block_close, sym__block_quote_continuation, - [18388] = 1, - ACTIONS(832), 2, + [19599] = 2, + ACTIONS(2231), 1, + anon_sym_PIPE, + STATE(835), 1, + aux_sym_table_separator_repeat1, + [19606] = 2, + ACTIONS(2233), 1, + anon_sym_PIPE, + STATE(844), 1, + aux_sym_table_row_repeat1, + [19613] = 1, + ACTIONS(2235), 2, sym__block_close, - sym__block_quote_continuation, - [18393] = 1, - ACTIONS(836), 2, + sym_list_marker_upper_roman_period, + [19618] = 1, + ACTIONS(1909), 2, sym__block_close, - sym__block_quote_continuation, - [18398] = 1, - ACTIONS(840), 2, + sym_list_marker_upper_alpha_paren, + [19623] = 1, + ACTIONS(1203), 2, sym__block_close, - sym__block_quote_continuation, - [18403] = 1, - ACTIONS(844), 2, + sym__heading_continuation, + [19628] = 1, + ACTIONS(1888), 2, sym__block_close, - sym__block_quote_continuation, - [18408] = 1, - ACTIONS(848), 2, + sym_list_marker_upper_alpha_paren, + [19633] = 1, + ACTIONS(716), 2, sym__block_close, sym__block_quote_continuation, - [18413] = 1, - ACTIONS(852), 2, + [19638] = 1, + ACTIONS(1909), 2, + sym__block_close, + sym_list_marker_lower_roman_paren, + [19643] = 1, + ACTIONS(728), 2, sym__block_close, sym__block_quote_continuation, - [18418] = 1, - ACTIONS(530), 2, + [19648] = 1, + ACTIONS(1888), 2, + sym__block_close, + sym_list_marker_lower_roman_paren, + [19653] = 1, + ACTIONS(1909), 2, + sym__block_close, + sym_list_marker_upper_roman_paren, + [19658] = 1, + ACTIONS(894), 2, sym__block_close, sym__block_quote_continuation, - [18423] = 2, - ACTIONS(1973), 1, + [19663] = 2, + ACTIONS(2095), 1, sym__id, - STATE(1077), 1, + STATE(1248), 1, sym_reference_label, - [18430] = 2, - ACTIONS(1973), 1, + [19670] = 1, + ACTIONS(732), 2, + sym__block_close, + sym__block_quote_continuation, + [19675] = 2, + ACTIONS(2095), 1, sym__id, - STATE(1084), 1, + STATE(1255), 1, sym_reference_label, - [18437] = 2, - ACTIONS(1846), 1, - sym_table_cell_alignment, - ACTIONS(2059), 1, - sym__newline, - [18444] = 2, - ACTIONS(1973), 1, + [19682] = 1, + ACTIONS(736), 2, + sym__block_close, + sym__block_quote_continuation, + [19687] = 2, + ACTIONS(2095), 1, sym__id, - STATE(1091), 1, + STATE(1262), 1, sym_reference_label, - [18451] = 1, - ACTIONS(2061), 2, - sym__eof_or_newline, - sym__close_paragraph, - [18456] = 2, - ACTIONS(1973), 1, + [19694] = 1, + ACTIONS(1888), 2, + sym__block_close, + sym_list_marker_upper_roman_paren, + [19699] = 2, + ACTIONS(2095), 1, sym__id, - STATE(1098), 1, + STATE(1269), 1, sym_reference_label, - [18463] = 1, - ACTIONS(2063), 2, - sym__eof_or_newline, - sym__close_paragraph, - [18468] = 2, - ACTIONS(2065), 1, + [19706] = 2, + ACTIONS(2095), 1, sym__id, - STATE(974), 1, - sym_class_name, - [18475] = 1, - ACTIONS(1735), 2, + STATE(1276), 1, + sym_reference_label, + [19713] = 1, + ACTIONS(748), 2, sym__block_close, - sym_list_marker_upper_roman_period, - [18480] = 1, - ACTIONS(2067), 1, + sym__block_quote_continuation, + [19718] = 1, + ACTIONS(752), 2, + sym__block_close, + sym__block_quote_continuation, + [19723] = 1, + ACTIONS(756), 2, + sym__block_close, + sym__block_quote_continuation, + [19728] = 1, + ACTIONS(760), 2, + sym__block_close, + sym__block_quote_continuation, + [19733] = 1, + ACTIONS(764), 2, + sym__block_close, + sym__block_quote_continuation, + [19738] = 1, + ACTIONS(2237), 2, + sym__block_close, + sym_list_marker_upper_alpha_period, + [19743] = 1, + ACTIONS(736), 1, + sym__list_item_content_spacer, + [19747] = 1, + ACTIONS(2239), 1, + sym__footnote_end, + [19751] = 1, + ACTIONS(2241), 1, sym__newline, - [18484] = 1, - ACTIONS(2069), 1, - sym__whitespace, - [18488] = 1, - ACTIONS(2071), 1, + [19755] = 1, + ACTIONS(2243), 1, sym__newline, - [18492] = 1, - ACTIONS(1368), 1, + [19759] = 1, + ACTIONS(2245), 1, sym__newline, - [18496] = 1, - ACTIONS(2073), 1, + [19763] = 1, + ACTIONS(2247), 1, + sym__footnote_mark_begin, + [19767] = 1, + ACTIONS(2249), 1, sym__newline, - [18500] = 1, - ACTIONS(2075), 1, + [19771] = 1, + ACTIONS(2251), 1, sym__newline, - [18504] = 1, - ACTIONS(2077), 1, - anon_sym_PIPE, - [18508] = 1, - ACTIONS(2079), 1, + [19775] = 1, + ACTIONS(2253), 1, sym__newline, - [18512] = 1, - ACTIONS(2081), 1, - sym__block_close, - [18516] = 1, - ACTIONS(2083), 1, + [19779] = 1, + ACTIONS(2255), 1, + sym__newline, + [19783] = 1, + ACTIONS(2257), 1, + sym__newline, + [19787] = 1, + ACTIONS(2259), 1, + sym__newline, + [19791] = 1, + ACTIONS(2261), 1, sym__block_close, - [18520] = 1, - ACTIONS(2085), 1, + [19795] = 1, + ACTIONS(2263), 1, + sym__list_item_continuation, + [19799] = 1, + ACTIONS(886), 1, + sym__list_item_content_spacer, + [19803] = 1, + ACTIONS(948), 1, + sym_list_marker_star, + [19807] = 1, + ACTIONS(2265), 1, + sym__newline, + [19811] = 1, + ACTIONS(1999), 1, + sym_table_cell_alignment, + [19815] = 1, + ACTIONS(798), 1, + sym__list_item_content_spacer, + [19819] = 1, + ACTIONS(2267), 1, + sym__newline, + [19823] = 1, + ACTIONS(2269), 1, + anon_sym_DQUOTE, + [19827] = 1, + ACTIONS(2271), 1, sym__footnote_end, - [18524] = 1, - ACTIONS(2087), 1, + [19831] = 1, + ACTIONS(2273), 1, sym__newline, - [18528] = 1, - ACTIONS(2089), 1, + [19835] = 1, + ACTIONS(2275), 1, + sym__whitespace, + [19839] = 1, + ACTIONS(2277), 1, sym__newline, - [18532] = 1, - ACTIONS(2091), 1, + [19843] = 1, + ACTIONS(2279), 1, sym__newline, - [18536] = 1, - ACTIONS(2093), 1, - sym__list_item_continuation, - [18540] = 1, - ACTIONS(2095), 1, + [19847] = 1, + ACTIONS(2281), 1, + sym_language, + [19851] = 1, + ACTIONS(2283), 1, + anon_sym_PIPE, + [19855] = 1, + ACTIONS(2285), 1, + sym__block_close, + [19859] = 1, + ACTIONS(720), 1, + sym__list_item_content_spacer, + [19863] = 1, + ACTIONS(2287), 1, sym__newline, - [18544] = 1, - ACTIONS(2097), 1, + [19867] = 1, + ACTIONS(946), 1, + sym_list_marker_dash, + [19871] = 1, + ACTIONS(2289), 1, sym__newline, - [18548] = 1, - ACTIONS(2099), 1, + [19875] = 1, + ACTIONS(2291), 1, + sym__newline, + [19879] = 1, + ACTIONS(2293), 1, sym__block_close, - [18552] = 1, - ACTIONS(2101), 1, + [19883] = 1, + ACTIONS(2295), 1, + sym__newline, + [19887] = 1, + ACTIONS(890), 1, + sym__list_item_content_spacer, + [19891] = 1, + ACTIONS(2297), 1, sym__newline, - [18556] = 1, - ACTIONS(2103), 1, + [19895] = 1, + ACTIONS(2299), 1, + sym__block_close, + [19899] = 1, + ACTIONS(2301), 1, + sym__eof_or_newline, + [19903] = 1, + ACTIONS(740), 1, + sym__list_item_content_spacer, + [19907] = 1, + ACTIONS(2303), 1, sym__newline, - [18560] = 1, - ACTIONS(2105), 1, + [19911] = 1, + ACTIONS(772), 1, + sym__list_item_content_spacer, + [19915] = 1, + ACTIONS(2305), 1, sym__newline, - [18564] = 1, - ACTIONS(2107), 1, + [19919] = 1, + ACTIONS(2307), 1, + sym__newline, + [19923] = 1, + ACTIONS(2309), 1, sym__block_close, - [18568] = 1, - ACTIONS(2109), 1, + [19927] = 1, + ACTIONS(792), 1, + sym__list_item_content_spacer, + [19931] = 1, + ACTIONS(716), 1, + sym__list_item_content_spacer, + [19935] = 1, + ACTIONS(2311), 1, sym__newline, - [18572] = 1, - ACTIONS(2111), 1, - sym__footnote_end, - [18576] = 1, - ACTIONS(2113), 1, + [19939] = 1, + ACTIONS(808), 1, + sym__list_item_content_spacer, + [19943] = 1, + ACTIONS(728), 1, + sym__list_item_content_spacer, + [19947] = 1, + ACTIONS(2313), 1, sym__newline, - [18580] = 1, - ACTIONS(2115), 1, + [19951] = 1, + ACTIONS(2315), 1, sym__newline, - [18584] = 1, - ACTIONS(2117), 1, - anon_sym_RBRACK, - [18588] = 1, - ACTIONS(2119), 1, - anon_sym_RBRACK, - [18592] = 1, - ACTIONS(2121), 1, + [19955] = 1, + ACTIONS(2317), 1, sym__newline, - [18596] = 1, - ACTIONS(2123), 1, - sym__whitespace1, - [18600] = 1, - ACTIONS(2125), 1, + [19959] = 1, + ACTIONS(2319), 1, + sym__block_close, + [19963] = 1, + ACTIONS(2321), 1, + sym__block_close, + [19967] = 1, + ACTIONS(2323), 1, + sym__footnote_end, + [19971] = 1, + ACTIONS(2325), 1, sym__newline, - [18604] = 1, - ACTIONS(2127), 1, + [19975] = 1, + ACTIONS(2327), 1, sym__newline, - [18608] = 1, - ACTIONS(2129), 1, + [19979] = 1, + ACTIONS(2329), 1, + sym__block_close, + [19983] = 1, + ACTIONS(2331), 1, + sym__block_close, + [19987] = 1, + ACTIONS(2333), 1, sym__newline, - [18612] = 1, - ACTIONS(2131), 1, + [19991] = 1, + ACTIONS(2335), 1, sym__newline, - [18616] = 1, - ACTIONS(2133), 1, + [19995] = 1, + ACTIONS(2337), 1, sym__newline, - [18620] = 1, - ACTIONS(2135), 1, + [19999] = 1, + ACTIONS(2339), 1, sym__newline, - [18624] = 1, - ACTIONS(2137), 1, + [20003] = 1, + ACTIONS(2341), 1, sym__newline, - [18628] = 1, - ACTIONS(2139), 1, + [20007] = 1, + ACTIONS(2343), 1, sym__newline, - [18632] = 1, - ACTIONS(2141), 1, + [20011] = 1, + ACTIONS(2345), 1, + sym__footnote_end, + [20015] = 1, + ACTIONS(894), 1, + sym__list_item_content_spacer, + [20019] = 1, + ACTIONS(732), 1, + sym__list_item_content_spacer, + [20023] = 1, + ACTIONS(2347), 1, sym__newline, - [18636] = 1, - ACTIONS(2143), 1, + [20027] = 1, + ACTIONS(2349), 1, sym__newline, - [18640] = 1, - ACTIONS(2145), 1, - sym__whitespace1, - [18644] = 1, - ACTIONS(2147), 1, + [20031] = 1, + ACTIONS(2351), 1, sym__newline, - [18648] = 1, - ACTIONS(2149), 1, - sym__whitespace1, - [18652] = 1, - ACTIONS(2151), 1, + [20035] = 1, + ACTIONS(748), 1, + sym__list_item_content_spacer, + [20039] = 1, + ACTIONS(752), 1, + sym__list_item_content_spacer, + [20043] = 1, + ACTIONS(756), 1, + sym__list_item_content_spacer, + [20047] = 1, + ACTIONS(760), 1, + sym__list_item_content_spacer, + [20051] = 1, + ACTIONS(764), 1, + sym__list_item_content_spacer, + [20055] = 1, + ACTIONS(768), 1, + sym__list_item_content_spacer, + [20059] = 1, + ACTIONS(2353), 1, + sym__list_item_continuation, + [20063] = 1, + ACTIONS(776), 1, + sym__list_item_content_spacer, + [20067] = 1, + ACTIONS(780), 1, + sym__list_item_content_spacer, + [20071] = 1, + ACTIONS(706), 1, + sym__list_item_content_spacer, + [20075] = 1, + ACTIONS(2355), 1, sym__newline, - [18656] = 1, - ACTIONS(2153), 1, + [20079] = 1, + ACTIONS(2357), 1, sym__newline, - [18660] = 1, - ACTIONS(2155), 1, - anon_sym_RBRACK_COLON, - [18664] = 1, - ACTIONS(2157), 1, - anon_sym_RBRACK_COLON, - [18668] = 1, - ACTIONS(2159), 1, + [20083] = 1, + ACTIONS(2359), 1, sym__newline, - [18672] = 1, - ACTIONS(2161), 1, - sym__whitespace1, - [18676] = 1, - ACTIONS(920), 1, - sym_list_marker_star, - [18680] = 1, - ACTIONS(2163), 1, - anon_sym_PIPE, - [18684] = 1, - ACTIONS(2165), 1, + [20087] = 1, + ACTIONS(2361), 1, sym__newline, - [18688] = 1, - ACTIONS(918), 1, - sym_list_marker_dash, - [18692] = 1, - ACTIONS(2167), 1, + [20091] = 1, + ACTIONS(2363), 1, sym__newline, - [18696] = 1, - ACTIONS(2169), 1, - sym__block_close, - [18700] = 1, - ACTIONS(2171), 1, + [20095] = 1, + ACTIONS(2365), 1, anon_sym_PIPE, - [18704] = 1, - ACTIONS(2173), 1, + [20099] = 1, + ACTIONS(2367), 1, + sym__block_close, + [20103] = 1, + ACTIONS(2369), 1, + sym__eof_or_newline, + [20107] = 1, + ACTIONS(2371), 1, sym__newline, - [18708] = 1, - ACTIONS(2175), 1, + [20111] = 1, + ACTIONS(2373), 1, sym__newline, - [18712] = 1, - ACTIONS(2177), 1, - sym_table_cell_alignment, - [18716] = 1, - ACTIONS(2179), 1, + [20115] = 1, + ACTIONS(2375), 1, sym__block_close, - [18720] = 1, - ACTIONS(2181), 1, - sym_language, - [18724] = 1, - ACTIONS(2183), 1, + [20119] = 1, + ACTIONS(814), 1, + sym__list_item_content_spacer, + [20123] = 1, + ACTIONS(818), 1, + sym__list_item_content_spacer, + [20127] = 1, + ACTIONS(822), 1, + sym__list_item_content_spacer, + [20131] = 1, + ACTIONS(2377), 1, sym__newline, - [18728] = 1, - ACTIONS(2185), 1, + [20135] = 1, + ACTIONS(826), 1, + sym__list_item_content_spacer, + [20139] = 1, + ACTIONS(2379), 1, + sym__list_item_content_spacer, + [20143] = 1, + ACTIONS(2381), 1, + sym__block_close, + [20147] = 1, + ACTIONS(2383), 1, + sym__footnote_end, + [20151] = 1, + ACTIONS(2385), 1, sym__newline, - [18732] = 1, - ACTIONS(2187), 1, + [20155] = 1, + ACTIONS(2387), 1, + sym_table_cell_alignment, + [20159] = 1, + ACTIONS(2389), 1, aux_sym_value_token1, - [18736] = 1, - ACTIONS(2189), 1, + [20163] = 1, + ACTIONS(2391), 1, + sym__newline, + [20167] = 1, + ACTIONS(2393), 1, + sym__newline, + [20171] = 1, + ACTIONS(2395), 1, + sym__newline, + [20175] = 1, + ACTIONS(2397), 1, anon_sym_EQ, - [18740] = 1, - ACTIONS(2191), 1, + [20179] = 1, + ACTIONS(2399), 1, anon_sym_EQ, - [18744] = 1, - ACTIONS(2193), 1, - sym__eof_or_newline, - [18748] = 1, - ACTIONS(2195), 1, - sym__block_close, - [18752] = 1, - ACTIONS(2197), 1, - sym__newline, - [18756] = 1, - ACTIONS(2199), 1, + [20183] = 1, + ACTIONS(2401), 1, sym__block_close, - [18760] = 1, - ACTIONS(2201), 1, - sym__newline, - [18764] = 1, - ACTIONS(2203), 1, - sym__whitespace, - [18768] = 1, - ACTIONS(2205), 1, - sym_table_cell_alignment, - [18772] = 1, - ACTIONS(2207), 1, + [20187] = 1, + ACTIONS(2403), 1, sym__newline, - [18776] = 1, - ACTIONS(2209), 1, - sym__whitespace, - [18780] = 1, - ACTIONS(2211), 1, + [20191] = 1, + ACTIONS(2405), 1, sym__newline, - [18784] = 1, - ACTIONS(2213), 1, + [20195] = 1, + ACTIONS(2407), 1, sym__newline, - [18788] = 1, - ACTIONS(2215), 1, + [20199] = 1, + ACTIONS(2409), 1, sym__newline, - [18792] = 1, - ACTIONS(2217), 1, + [20203] = 1, + ACTIONS(2411), 1, sym__newline, - [18796] = 1, - ACTIONS(2219), 1, - sym_frontmatter_marker, - [18800] = 1, - ACTIONS(2221), 1, - sym_table_cell_alignment, - [18804] = 1, - ACTIONS(2223), 1, - sym__block_close, - [18808] = 1, - ACTIONS(2225), 1, + [20207] = 1, + ACTIONS(2413), 1, + sym__whitespace, + [20211] = 1, + ACTIONS(2415), 1, sym__newline, - [18812] = 1, - ACTIONS(2227), 1, + [20215] = 1, + ACTIONS(2417), 1, sym__newline, - [18816] = 1, - ACTIONS(2229), 1, + [20219] = 1, + ACTIONS(2419), 1, sym__newline, - [18820] = 1, - ACTIONS(2231), 1, - sym__block_close, - [18824] = 1, - ACTIONS(2233), 1, + [20223] = 1, + ACTIONS(2421), 1, sym__newline, - [18828] = 1, - ACTIONS(2235), 1, + [20227] = 1, + ACTIONS(2423), 1, + sym__whitespace, + [20231] = 1, + ACTIONS(2425), 1, + sym__list_item_content_spacer, + [20235] = 1, + ACTIONS(2427), 1, sym__block_close, - [18832] = 1, - ACTIONS(2237), 1, + [20239] = 1, + ACTIONS(830), 1, + sym__list_item_content_spacer, + [20243] = 1, + ACTIONS(2429), 1, sym__block_close, - [18836] = 1, - ACTIONS(2239), 1, - sym__footnote_end, - [18840] = 1, - ACTIONS(2241), 1, + [20247] = 1, + ACTIONS(2431), 1, + sym_table_cell_alignment, + [20251] = 1, + ACTIONS(2433), 1, sym__newline, - [18844] = 1, - ACTIONS(2243), 1, - sym__block_close, - [18848] = 1, - ACTIONS(2245), 1, + [20255] = 1, + ACTIONS(834), 1, + sym__list_item_content_spacer, + [20259] = 1, + ACTIONS(2435), 1, sym__newline, - [18852] = 1, - ACTIONS(2247), 1, - sym__whitespace, - [18856] = 1, - ACTIONS(2249), 1, - sym__block_close, - [18860] = 1, - ACTIONS(2251), 1, + [20263] = 1, + ACTIONS(2437), 1, + sym__newline, + [20267] = 1, + ACTIONS(838), 1, + sym__list_item_content_spacer, + [20271] = 1, + ACTIONS(842), 1, + sym__list_item_content_spacer, + [20275] = 1, + ACTIONS(2439), 1, anon_sym_PIPE, - [18864] = 1, - ACTIONS(2253), 1, - sym__block_close, - [18868] = 1, - ACTIONS(2255), 1, + [20279] = 1, + ACTIONS(846), 1, + sym__list_item_content_spacer, + [20283] = 1, + ACTIONS(2441), 1, sym__newline, - [18872] = 1, - ACTIONS(2257), 1, + [20287] = 1, + ACTIONS(850), 1, + sym__list_item_content_spacer, + [20291] = 1, + ACTIONS(854), 1, + sym__list_item_content_spacer, + [20295] = 1, + ACTIONS(858), 1, + sym__list_item_content_spacer, + [20299] = 1, + ACTIONS(2443), 1, + sym__whitespace, + [20303] = 1, + ACTIONS(2445), 1, sym__block_close, - [18876] = 1, - ACTIONS(2259), 1, - sym__footnote_end, - [18880] = 1, - ACTIONS(2261), 1, - sym__newline, - [18884] = 1, - ACTIONS(2263), 1, + [20307] = 1, + ACTIONS(862), 1, + sym__list_item_content_spacer, + [20311] = 1, + ACTIONS(866), 1, + sym__list_item_content_spacer, + [20315] = 1, + ACTIONS(2447), 1, sym__newline, - [18888] = 1, - ACTIONS(2265), 1, + [20319] = 1, + ACTIONS(2449), 1, + sym__list_item_content_spacer, + [20323] = 1, + ACTIONS(2451), 1, + sym__list_item_content_spacer, + [20327] = 1, + ACTIONS(870), 1, + sym__list_item_content_spacer, + [20331] = 1, + ACTIONS(712), 1, + sym__list_item_content_spacer, + [20335] = 1, + ACTIONS(2453), 1, + sym__newline, + [20339] = 1, + ACTIONS(2455), 1, sym_table_cell_alignment, - [18892] = 1, - ACTIONS(2267), 1, + [20343] = 1, + ACTIONS(2457), 1, sym__newline, - [18896] = 1, - ACTIONS(2269), 1, - sym__block_close, - [18900] = 1, - ACTIONS(2271), 1, + [20347] = 1, + ACTIONS(556), 1, + sym__list_item_content_spacer, + [20351] = 1, + ACTIONS(2459), 1, sym__newline, - [18904] = 1, - ACTIONS(2273), 1, + [20355] = 1, + ACTIONS(2461), 1, sym__newline, - [18908] = 1, - ACTIONS(2275), 1, + [20359] = 1, + ACTIONS(2463), 1, sym__newline, - [18912] = 1, - ACTIONS(2277), 1, + [20363] = 1, + ACTIONS(2465), 1, + sym__block_close, + [20367] = 1, + ACTIONS(2467), 1, + sym__block_close, + [20371] = 1, + ACTIONS(2469), 1, + sym__footnote_end, + [20375] = 1, + ACTIONS(2471), 1, + sym__newline, + [20379] = 1, + ACTIONS(2473), 1, + sym_table_cell_alignment, + [20383] = 1, + ACTIONS(2475), 1, + sym__newline, + [20387] = 1, + ACTIONS(708), 1, + sym__list_item_content_spacer, + [20391] = 1, + ACTIONS(2477), 1, sym__whitespace, - [18916] = 1, - ACTIONS(2279), 1, + [20395] = 1, + ACTIONS(2479), 1, + sym__whitespace, + [20399] = 1, + ACTIONS(2481), 1, + sym__block_close, + [20403] = 1, + ACTIONS(2483), 1, sym__newline, - [18920] = 1, - ACTIONS(2281), 1, + [20407] = 1, + ACTIONS(2485), 1, sym__newline, - [18924] = 1, - ACTIONS(2283), 1, + [20411] = 1, + ACTIONS(2487), 1, sym__newline, - [18928] = 1, - ACTIONS(2285), 1, + [20415] = 1, + ACTIONS(2489), 1, + sym__list_item_content_spacer, + [20419] = 1, + ACTIONS(2491), 1, sym__newline, - [18932] = 1, - ACTIONS(2287), 1, - sym__block_close, - [18936] = 1, - ACTIONS(2289), 1, + [20423] = 1, + ACTIONS(2493), 1, sym__newline, - [18940] = 1, - ACTIONS(2291), 1, - sym__whitespace, - [18944] = 1, - ACTIONS(2293), 1, - sym__block_close, - [18948] = 1, - ACTIONS(2295), 1, + [20427] = 1, + ACTIONS(2495), 1, + sym__newline, + [20431] = 1, + ACTIONS(2497), 1, sym_table_cell_alignment, - [18952] = 1, - ACTIONS(2297), 1, + [20435] = 1, + ACTIONS(2499), 1, sym__newline, - [18956] = 1, - ACTIONS(2299), 1, + [20439] = 1, + ACTIONS(2501), 1, sym__newline, - [18960] = 1, - ACTIONS(2301), 1, - anon_sym_RBRACK, - [18964] = 1, - ACTIONS(2303), 1, + [20443] = 1, + ACTIONS(2503), 1, sym__newline, - [18968] = 1, - ACTIONS(2305), 1, + [20447] = 1, + ACTIONS(2505), 1, sym__newline, - [18972] = 1, - ACTIONS(2307), 1, + [20451] = 1, + ACTIONS(2507), 1, + sym_frontmatter_marker, + [20455] = 1, + ACTIONS(2509), 1, sym_table_cell_alignment, - [18976] = 1, - ACTIONS(2309), 1, + [20459] = 1, + ACTIONS(2511), 1, + sym__whitespace1, + [20463] = 1, + ACTIONS(2513), 1, + anon_sym_COLON, + [20467] = 1, + ACTIONS(2515), 1, + sym__newline, + [20471] = 1, + ACTIONS(2517), 1, + anon_sym_RBRACK_COLON, + [20475] = 1, + ACTIONS(2519), 1, + sym__whitespace1, + [20479] = 1, + ACTIONS(2521), 1, sym_frontmatter_marker, - [18980] = 1, - ACTIONS(2311), 1, + [20483] = 1, + ACTIONS(2523), 1, + sym__whitespace, + [20487] = 1, + ACTIONS(2525), 1, sym__newline, - [18984] = 1, - ACTIONS(2313), 1, + [20491] = 1, + ACTIONS(2527), 1, sym__newline, - [18988] = 1, - ACTIONS(2315), 1, + [20495] = 1, + ACTIONS(2529), 1, sym__newline, - [18992] = 1, - ACTIONS(2317), 1, + [20499] = 1, + ACTIONS(2531), 1, + anon_sym_RBRACK_COLON, + [20503] = 1, + ACTIONS(2533), 1, + sym__list_item_content_spacer, + [20507] = 1, + ACTIONS(2535), 1, + sym__newline, + [20511] = 1, + ACTIONS(2537), 1, + sym__whitespace1, + [20515] = 1, + ACTIONS(2539), 1, + sym__whitespace1, + [20519] = 1, + ACTIONS(2541), 1, + sym_table_cell_alignment, + [20523] = 1, + ACTIONS(2543), 1, anon_sym_PIPE, - [18996] = 1, - ACTIONS(2319), 1, + [20527] = 1, + ACTIONS(2545), 1, + sym__list_item_content_spacer, + [20531] = 1, + ACTIONS(2547), 1, sym__newline, - [19000] = 1, - ACTIONS(2321), 1, + [20535] = 1, + ACTIONS(2549), 1, sym__newline, - [19004] = 1, - ACTIONS(2323), 1, + [20539] = 1, + ACTIONS(2551), 1, + sym__block_close, + [20543] = 1, + ACTIONS(2553), 1, sym__newline, - [19008] = 1, - ACTIONS(2325), 1, + [20547] = 1, + ACTIONS(2555), 1, sym__block_close, - [19012] = 1, - ACTIONS(2327), 1, + [20551] = 1, + ACTIONS(2557), 1, + sym__newline, + [20555] = 1, + ACTIONS(2559), 1, + sym__list_item_content_spacer, + [20559] = 1, + ACTIONS(950), 1, + sym_list_marker_plus, + [20563] = 1, + ACTIONS(2561), 1, anon_sym_RBRACK, - [19016] = 1, - ACTIONS(2329), 1, + [20567] = 1, + ACTIONS(2563), 1, sym__block_close, - [19020] = 1, - ACTIONS(922), 1, - sym_list_marker_plus, - [19024] = 1, - ACTIONS(2331), 1, + [20571] = 1, + ACTIONS(2565), 1, sym__whitespace, - [19028] = 1, - ACTIONS(2333), 1, + [20575] = 1, + ACTIONS(2567), 1, + sym__list_item_content_spacer, + [20579] = 1, + ACTIONS(2569), 1, + sym__list_item_content_spacer, + [20583] = 1, + ACTIONS(2571), 1, + sym__list_item_content_spacer, + [20587] = 1, + ACTIONS(2573), 1, + sym__list_item_content_spacer, + [20591] = 1, + ACTIONS(2575), 1, + sym__list_item_content_spacer, + [20595] = 1, + ACTIONS(2577), 1, + sym__list_item_content_spacer, + [20599] = 1, + ACTIONS(2579), 1, + sym__list_item_content_spacer, + [20603] = 1, + ACTIONS(2581), 1, + sym__list_item_content_spacer, + [20607] = 1, + ACTIONS(2583), 1, + sym__list_item_content_spacer, + [20611] = 1, + ACTIONS(2585), 1, + sym__list_item_content_spacer, + [20615] = 1, + ACTIONS(2587), 1, + sym__list_item_content_spacer, + [20619] = 1, + ACTIONS(2589), 1, + sym__list_item_content_spacer, + [20623] = 1, + ACTIONS(2591), 1, + sym__list_item_content_spacer, + [20627] = 1, + ACTIONS(2593), 1, sym__whitespace, - [19032] = 1, - ACTIONS(2335), 1, + [20631] = 1, + ACTIONS(2595), 1, sym__newline, - [19036] = 1, - ACTIONS(2337), 1, - sym_link_destination, - [19040] = 1, - ACTIONS(2339), 1, + [20635] = 1, + ACTIONS(2597), 1, + anon_sym_RBRACK, + [20639] = 1, + ACTIONS(2599), 1, anon_sym_PIPE, - [19044] = 1, - ACTIONS(2341), 1, + [20643] = 1, + ACTIONS(2601), 1, sym_table_cell_alignment, - [19048] = 1, - ACTIONS(2343), 1, + [20647] = 1, + ACTIONS(2603), 1, anon_sym_RBRACK_COLON, - [19052] = 1, - ACTIONS(2345), 1, + [20651] = 1, + ACTIONS(2605), 1, sym_link_destination, - [19056] = 1, - ACTIONS(2347), 1, + [20655] = 1, + ACTIONS(2607), 1, sym__whitespace, - [19060] = 1, - ACTIONS(2349), 1, + [20659] = 1, + ACTIONS(2609), 1, sym__block_close, - [19064] = 1, - ACTIONS(1846), 1, - sym_table_cell_alignment, - [19068] = 1, - ACTIONS(2351), 1, + [20663] = 1, + ACTIONS(2611), 1, + sym__block_close, + [20667] = 1, + ACTIONS(2613), 1, anon_sym_PIPE, - [19072] = 1, - ACTIONS(2353), 1, + [20671] = 1, + ACTIONS(2615), 1, sym_table_cell_alignment, - [19076] = 1, - ACTIONS(2355), 1, + [20675] = 1, + ACTIONS(2617), 1, anon_sym_RBRACK_COLON, - [19080] = 1, - ACTIONS(2357), 1, + [20679] = 1, + ACTIONS(2619), 1, + sym_link_destination, + [20683] = 1, + ACTIONS(2621), 1, + sym__whitespace, + [20687] = 1, + ACTIONS(2623), 1, + sym__newline, + [20691] = 1, + ACTIONS(2625), 1, + sym__newline, + [20695] = 1, + ACTIONS(2627), 1, + anon_sym_PIPE, + [20699] = 1, + ACTIONS(2629), 1, + sym_table_cell_alignment, + [20703] = 1, + ACTIONS(2631), 1, + anon_sym_RBRACK_COLON, + [20707] = 1, + ACTIONS(2633), 1, sym_link_destination, - [19084] = 1, - ACTIONS(2359), 1, + [20711] = 1, + ACTIONS(2635), 1, sym__whitespace, - [19088] = 1, - ACTIONS(2361), 1, - ts_builtin_sym_end, - [19092] = 1, - ACTIONS(2363), 1, - sym__block_close, - [19096] = 1, - ACTIONS(2365), 1, + [20715] = 1, + ACTIONS(2637), 1, + sym__newline, + [20719] = 1, + ACTIONS(874), 1, + sym__list_item_content_spacer, + [20723] = 1, + ACTIONS(2639), 1, anon_sym_PIPE, - [19100] = 1, - ACTIONS(2367), 1, + [20727] = 1, + ACTIONS(2641), 1, sym_table_cell_alignment, - [19104] = 1, - ACTIONS(2369), 1, + [20731] = 1, + ACTIONS(2643), 1, anon_sym_RBRACK_COLON, - [19108] = 1, - ACTIONS(2371), 1, + [20735] = 1, + ACTIONS(2645), 1, sym_link_destination, - [19112] = 1, - ACTIONS(2373), 1, + [20739] = 1, + ACTIONS(2647), 1, sym__whitespace, - [19116] = 1, - ACTIONS(2375), 1, - sym__newline, - [19120] = 1, - ACTIONS(2377), 1, - anon_sym_COLON, - [19124] = 1, - ACTIONS(2379), 1, + [20743] = 1, + ACTIONS(2649), 1, + sym__block_close, + [20747] = 1, + ACTIONS(878), 1, + sym__list_item_content_spacer, + [20751] = 1, + ACTIONS(2651), 1, anon_sym_PIPE, - [19128] = 1, - ACTIONS(2381), 1, + [20755] = 1, + ACTIONS(2653), 1, sym_table_cell_alignment, - [19132] = 1, - ACTIONS(2383), 1, + [20759] = 1, + ACTIONS(2655), 1, anon_sym_RBRACK_COLON, - [19136] = 1, - ACTIONS(2385), 1, + [20763] = 1, + ACTIONS(2657), 1, sym_link_destination, - [19140] = 1, - ACTIONS(2387), 1, - sym__footnote_mark_begin, - [19144] = 1, - ACTIONS(2389), 1, + [20767] = 1, + ACTIONS(2659), 1, + sym__newline, + [20771] = 1, + ACTIONS(2661), 1, anon_sym_PIPE, - [19148] = 1, - ACTIONS(2391), 1, - anon_sym_DQUOTE, - [19152] = 1, - ACTIONS(2393), 1, + [20775] = 1, + ACTIONS(2663), 1, + anon_sym_RBRACK, + [20779] = 1, + ACTIONS(2665), 1, sym__whitespace1, - [19156] = 1, - ACTIONS(2395), 1, - sym__eof_or_newline, - [19160] = 1, - ACTIONS(2397), 1, + [20783] = 1, + ACTIONS(2667), 1, + sym__newline, + [20787] = 1, + ACTIONS(2669), 1, anon_sym_PIPE, - [19164] = 1, - ACTIONS(2399), 1, - sym__footnote_end, - [19168] = 1, - ACTIONS(2401), 1, + [20791] = 1, + ACTIONS(2671), 1, + ts_builtin_sym_end, + [20795] = 1, + ACTIONS(2673), 1, sym__whitespace1, - [19172] = 1, - ACTIONS(2403), 1, - sym__newline, - [19176] = 1, - ACTIONS(2405), 1, + [20799] = 1, + ACTIONS(2675), 1, + sym__block_close, + [20803] = 1, + ACTIONS(2677), 1, anon_sym_PIPE, - [19180] = 1, - ACTIONS(2407), 1, - sym__newline, - [19184] = 1, - ACTIONS(2409), 1, + [20807] = 1, + ACTIONS(882), 1, + sym__list_item_content_spacer, + [20811] = 1, + ACTIONS(2679), 1, sym__whitespace1, - [19188] = 1, - ACTIONS(2411), 1, - sym__newline, - [19192] = 1, - ACTIONS(2413), 1, + [20815] = 1, + ACTIONS(898), 1, + sym__list_item_content_spacer, + [20819] = 1, + ACTIONS(2681), 1, anon_sym_PIPE, - [19196] = 1, - ACTIONS(2415), 1, + [20823] = 1, + ACTIONS(2683), 1, + sym__block_close, + [20827] = 1, + ACTIONS(2685), 1, + sym__whitespace1, + [20831] = 1, + ACTIONS(1428), 1, sym__newline, - [19200] = 1, - ACTIONS(2417), 1, + [20835] = 1, + ACTIONS(2687), 1, + anon_sym_PIPE, + [20839] = 1, + ACTIONS(2689), 1, + anon_sym_RBRACK, + [20843] = 1, + ACTIONS(2691), 1, sym__whitespace1, - [19204] = 1, - ACTIONS(2419), 1, + [20847] = 1, + ACTIONS(2693), 1, sym__footnote_mark_begin, - [19208] = 1, - ACTIONS(2421), 1, + [20851] = 1, + ACTIONS(2695), 1, anon_sym_COLON, - [19212] = 1, - ACTIONS(2423), 1, + [20855] = 1, + ACTIONS(2697), 1, sym__footnote_mark_begin, - [19216] = 1, - ACTIONS(2425), 1, + [20859] = 1, + ACTIONS(2699), 1, anon_sym_COLON, - [19220] = 1, - ACTIONS(2427), 1, + [20863] = 1, + ACTIONS(2701), 1, sym__footnote_mark_begin, - [19224] = 1, - ACTIONS(2429), 1, + [20867] = 1, + ACTIONS(2703), 1, anon_sym_COLON, - [19228] = 1, - ACTIONS(2431), 1, + [20871] = 1, + ACTIONS(2705), 1, sym__footnote_mark_begin, - [19232] = 1, - ACTIONS(2433), 1, + [20875] = 1, + ACTIONS(2707), 1, anon_sym_COLON, - [19236] = 1, - ACTIONS(2435), 1, + [20879] = 1, + ACTIONS(2709), 1, + sym__footnote_mark_begin, + [20883] = 1, + ACTIONS(2711), 1, + anon_sym_COLON, + [20887] = 1, + ACTIONS(2713), 1, anon_sym_RBRACK, - [19240] = 1, - ACTIONS(2437), 1, + [20891] = 1, + ACTIONS(2715), 1, anon_sym_RBRACK, - [19244] = 1, - ACTIONS(2439), 1, + [20895] = 1, + ACTIONS(2717), 1, anon_sym_RBRACK, - [19248] = 1, - ACTIONS(2441), 1, + [20899] = 1, + ACTIONS(2719), 1, anon_sym_RBRACK, - [19252] = 1, - ACTIONS(2443), 1, - sym__newline, - [19256] = 1, - ACTIONS(2445), 1, - sym__newline, - [19260] = 1, - ACTIONS(2447), 1, + [20903] = 1, + ACTIONS(2721), 1, + anon_sym_RBRACK, + [20907] = 1, + ACTIONS(2723), 1, + sym_link_destination, + [20911] = 1, + ACTIONS(2725), 1, sym__newline, - [19264] = 1, - ACTIONS(2449), 1, + [20915] = 1, + ACTIONS(2727), 1, sym__block_close, - [19268] = 1, - ACTIONS(2451), 1, + [20919] = 1, + ACTIONS(2729), 1, sym__newline, + [20923] = 1, + ACTIONS(2731), 1, + sym__block_close, + [20927] = 1, + ACTIONS(2733), 1, + anon_sym_PIPE, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(64)] = 0, - [SMALL_STATE(65)] = 70, - [SMALL_STATE(66)] = 140, - [SMALL_STATE(67)] = 210, - [SMALL_STATE(68)] = 273, - [SMALL_STATE(69)] = 336, - [SMALL_STATE(70)] = 399, - [SMALL_STATE(71)] = 457, - [SMALL_STATE(72)] = 515, - [SMALL_STATE(73)] = 573, - [SMALL_STATE(74)] = 623, - [SMALL_STATE(75)] = 673, - [SMALL_STATE(76)] = 723, - [SMALL_STATE(77)] = 770, - [SMALL_STATE(78)] = 817, - [SMALL_STATE(79)] = 864, - [SMALL_STATE(80)] = 911, - [SMALL_STATE(81)] = 958, - [SMALL_STATE(82)] = 1003, - [SMALL_STATE(83)] = 1048, - [SMALL_STATE(84)] = 1095, - [SMALL_STATE(85)] = 1142, - [SMALL_STATE(86)] = 1189, - [SMALL_STATE(87)] = 1234, - [SMALL_STATE(88)] = 1279, - [SMALL_STATE(89)] = 1326, - [SMALL_STATE(90)] = 1371, - [SMALL_STATE(91)] = 1416, - [SMALL_STATE(92)] = 1461, - [SMALL_STATE(93)] = 1508, - [SMALL_STATE(94)] = 1553, - [SMALL_STATE(95)] = 1600, - [SMALL_STATE(96)] = 1647, - [SMALL_STATE(97)] = 1692, - [SMALL_STATE(98)] = 1737, - [SMALL_STATE(99)] = 1784, - [SMALL_STATE(100)] = 1831, - [SMALL_STATE(101)] = 1878, - [SMALL_STATE(102)] = 1925, - [SMALL_STATE(103)] = 1972, - [SMALL_STATE(104)] = 2017, - [SMALL_STATE(105)] = 2062, - [SMALL_STATE(106)] = 2109, - [SMALL_STATE(107)] = 2156, - [SMALL_STATE(108)] = 2203, - [SMALL_STATE(109)] = 2248, - [SMALL_STATE(110)] = 2293, - [SMALL_STATE(111)] = 2340, - [SMALL_STATE(112)] = 2385, - [SMALL_STATE(113)] = 2432, - [SMALL_STATE(114)] = 2479, - [SMALL_STATE(115)] = 2526, - [SMALL_STATE(116)] = 2573, - [SMALL_STATE(117)] = 2618, - [SMALL_STATE(118)] = 2663, - [SMALL_STATE(119)] = 2708, - [SMALL_STATE(120)] = 2755, - [SMALL_STATE(121)] = 2802, - [SMALL_STATE(122)] = 2849, - [SMALL_STATE(123)] = 2896, - [SMALL_STATE(124)] = 2943, - [SMALL_STATE(125)] = 2990, - [SMALL_STATE(126)] = 3035, - [SMALL_STATE(127)] = 3082, - [SMALL_STATE(128)] = 3127, - [SMALL_STATE(129)] = 3174, - [SMALL_STATE(130)] = 3221, - [SMALL_STATE(131)] = 3266, - [SMALL_STATE(132)] = 3313, - [SMALL_STATE(133)] = 3357, - [SMALL_STATE(134)] = 3401, - [SMALL_STATE(135)] = 3445, - [SMALL_STATE(136)] = 3489, - [SMALL_STATE(137)] = 3533, - [SMALL_STATE(138)] = 3577, - [SMALL_STATE(139)] = 3621, - [SMALL_STATE(140)] = 3665, - [SMALL_STATE(141)] = 3709, - [SMALL_STATE(142)] = 3753, - [SMALL_STATE(143)] = 3797, - [SMALL_STATE(144)] = 3841, - [SMALL_STATE(145)] = 3885, - [SMALL_STATE(146)] = 3929, - [SMALL_STATE(147)] = 3973, - [SMALL_STATE(148)] = 4017, - [SMALL_STATE(149)] = 4061, - [SMALL_STATE(150)] = 4105, - [SMALL_STATE(151)] = 4149, - [SMALL_STATE(152)] = 4193, - [SMALL_STATE(153)] = 4237, - [SMALL_STATE(154)] = 4281, - [SMALL_STATE(155)] = 4325, - [SMALL_STATE(156)] = 4369, - [SMALL_STATE(157)] = 4413, - [SMALL_STATE(158)] = 4457, - [SMALL_STATE(159)] = 4501, - [SMALL_STATE(160)] = 4545, - [SMALL_STATE(161)] = 4589, - [SMALL_STATE(162)] = 4633, - [SMALL_STATE(163)] = 4677, - [SMALL_STATE(164)] = 4721, - [SMALL_STATE(165)] = 4765, - [SMALL_STATE(166)] = 4809, - [SMALL_STATE(167)] = 4853, - [SMALL_STATE(168)] = 4897, - [SMALL_STATE(169)] = 4941, - [SMALL_STATE(170)] = 4985, - [SMALL_STATE(171)] = 5029, - [SMALL_STATE(172)] = 5073, - [SMALL_STATE(173)] = 5117, - [SMALL_STATE(174)] = 5161, - [SMALL_STATE(175)] = 5205, - [SMALL_STATE(176)] = 5249, - [SMALL_STATE(177)] = 5293, - [SMALL_STATE(178)] = 5337, - [SMALL_STATE(179)] = 5381, - [SMALL_STATE(180)] = 5425, - [SMALL_STATE(181)] = 5469, - [SMALL_STATE(182)] = 5513, - [SMALL_STATE(183)] = 5557, - [SMALL_STATE(184)] = 5601, - [SMALL_STATE(185)] = 5645, - [SMALL_STATE(186)] = 5689, - [SMALL_STATE(187)] = 5733, - [SMALL_STATE(188)] = 5777, - [SMALL_STATE(189)] = 5821, - [SMALL_STATE(190)] = 5865, - [SMALL_STATE(191)] = 5909, - [SMALL_STATE(192)] = 5953, - [SMALL_STATE(193)] = 5997, - [SMALL_STATE(194)] = 6041, - [SMALL_STATE(195)] = 6085, - [SMALL_STATE(196)] = 6129, - [SMALL_STATE(197)] = 6173, - [SMALL_STATE(198)] = 6217, - [SMALL_STATE(199)] = 6261, - [SMALL_STATE(200)] = 6305, - [SMALL_STATE(201)] = 6349, - [SMALL_STATE(202)] = 6393, - [SMALL_STATE(203)] = 6437, - [SMALL_STATE(204)] = 6481, - [SMALL_STATE(205)] = 6525, - [SMALL_STATE(206)] = 6569, - [SMALL_STATE(207)] = 6613, - [SMALL_STATE(208)] = 6657, - [SMALL_STATE(209)] = 6701, - [SMALL_STATE(210)] = 6745, - [SMALL_STATE(211)] = 6789, - [SMALL_STATE(212)] = 6833, - [SMALL_STATE(213)] = 6877, - [SMALL_STATE(214)] = 6921, - [SMALL_STATE(215)] = 6965, - [SMALL_STATE(216)] = 7009, - [SMALL_STATE(217)] = 7053, - [SMALL_STATE(218)] = 7097, - [SMALL_STATE(219)] = 7141, - [SMALL_STATE(220)] = 7185, - [SMALL_STATE(221)] = 7229, - [SMALL_STATE(222)] = 7273, - [SMALL_STATE(223)] = 7317, - [SMALL_STATE(224)] = 7361, - [SMALL_STATE(225)] = 7405, - [SMALL_STATE(226)] = 7449, - [SMALL_STATE(227)] = 7493, - [SMALL_STATE(228)] = 7537, - [SMALL_STATE(229)] = 7581, - [SMALL_STATE(230)] = 7625, - [SMALL_STATE(231)] = 7669, - [SMALL_STATE(232)] = 7713, - [SMALL_STATE(233)] = 7757, - [SMALL_STATE(234)] = 7801, - [SMALL_STATE(235)] = 7845, - [SMALL_STATE(236)] = 7889, - [SMALL_STATE(237)] = 7933, - [SMALL_STATE(238)] = 7977, - [SMALL_STATE(239)] = 8021, - [SMALL_STATE(240)] = 8065, - [SMALL_STATE(241)] = 8109, - [SMALL_STATE(242)] = 8153, - [SMALL_STATE(243)] = 8197, - [SMALL_STATE(244)] = 8241, - [SMALL_STATE(245)] = 8285, - [SMALL_STATE(246)] = 8329, - [SMALL_STATE(247)] = 8373, - [SMALL_STATE(248)] = 8417, - [SMALL_STATE(249)] = 8461, - [SMALL_STATE(250)] = 8505, - [SMALL_STATE(251)] = 8549, - [SMALL_STATE(252)] = 8593, - [SMALL_STATE(253)] = 8637, - [SMALL_STATE(254)] = 8681, - [SMALL_STATE(255)] = 8725, - [SMALL_STATE(256)] = 8769, - [SMALL_STATE(257)] = 8813, - [SMALL_STATE(258)] = 8857, - [SMALL_STATE(259)] = 8901, - [SMALL_STATE(260)] = 8945, - [SMALL_STATE(261)] = 8989, - [SMALL_STATE(262)] = 9033, - [SMALL_STATE(263)] = 9077, - [SMALL_STATE(264)] = 9121, - [SMALL_STATE(265)] = 9165, - [SMALL_STATE(266)] = 9209, - [SMALL_STATE(267)] = 9253, - [SMALL_STATE(268)] = 9297, - [SMALL_STATE(269)] = 9341, - [SMALL_STATE(270)] = 9385, - [SMALL_STATE(271)] = 9429, - [SMALL_STATE(272)] = 9473, - [SMALL_STATE(273)] = 9520, - [SMALL_STATE(274)] = 9563, - [SMALL_STATE(275)] = 9605, - [SMALL_STATE(276)] = 9651, - [SMALL_STATE(277)] = 9697, - [SMALL_STATE(278)] = 9743, - [SMALL_STATE(279)] = 9789, - [SMALL_STATE(280)] = 9835, - [SMALL_STATE(281)] = 9877, - [SMALL_STATE(282)] = 9919, - [SMALL_STATE(283)] = 9961, - [SMALL_STATE(284)] = 10003, - [SMALL_STATE(285)] = 10045, - [SMALL_STATE(286)] = 10087, - [SMALL_STATE(287)] = 10129, - [SMALL_STATE(288)] = 10171, - [SMALL_STATE(289)] = 10213, - [SMALL_STATE(290)] = 10255, - [SMALL_STATE(291)] = 10292, - [SMALL_STATE(292)] = 10331, - [SMALL_STATE(293)] = 10370, - [SMALL_STATE(294)] = 10409, - [SMALL_STATE(295)] = 10448, - [SMALL_STATE(296)] = 10487, - [SMALL_STATE(297)] = 10521, - [SMALL_STATE(298)] = 10547, - [SMALL_STATE(299)] = 10581, - [SMALL_STATE(300)] = 10615, - [SMALL_STATE(301)] = 10647, - [SMALL_STATE(302)] = 10679, - [SMALL_STATE(303)] = 10713, - [SMALL_STATE(304)] = 10745, - [SMALL_STATE(305)] = 10777, - [SMALL_STATE(306)] = 10809, - [SMALL_STATE(307)] = 10841, - [SMALL_STATE(308)] = 10873, - [SMALL_STATE(309)] = 10905, - [SMALL_STATE(310)] = 10937, - [SMALL_STATE(311)] = 10969, - [SMALL_STATE(312)] = 11003, - [SMALL_STATE(313)] = 11037, - [SMALL_STATE(314)] = 11063, - [SMALL_STATE(315)] = 11084, - [SMALL_STATE(316)] = 11113, - [SMALL_STATE(317)] = 11142, - [SMALL_STATE(318)] = 11171, - [SMALL_STATE(319)] = 11202, - [SMALL_STATE(320)] = 11227, - [SMALL_STATE(321)] = 11252, - [SMALL_STATE(322)] = 11281, - [SMALL_STATE(323)] = 11310, - [SMALL_STATE(324)] = 11338, - [SMALL_STATE(325)] = 11358, - [SMALL_STATE(326)] = 11386, - [SMALL_STATE(327)] = 11414, - [SMALL_STATE(328)] = 11442, - [SMALL_STATE(329)] = 11470, - [SMALL_STATE(330)] = 11498, - [SMALL_STATE(331)] = 11526, - [SMALL_STATE(332)] = 11554, - [SMALL_STATE(333)] = 11582, - [SMALL_STATE(334)] = 11610, - [SMALL_STATE(335)] = 11638, - [SMALL_STATE(336)] = 11666, - [SMALL_STATE(337)] = 11694, - [SMALL_STATE(338)] = 11722, - [SMALL_STATE(339)] = 11750, - [SMALL_STATE(340)] = 11778, - [SMALL_STATE(341)] = 11806, - [SMALL_STATE(342)] = 11834, - [SMALL_STATE(343)] = 11862, - [SMALL_STATE(344)] = 11890, - [SMALL_STATE(345)] = 11918, - [SMALL_STATE(346)] = 11946, - [SMALL_STATE(347)] = 11974, - [SMALL_STATE(348)] = 12002, - [SMALL_STATE(349)] = 12030, - [SMALL_STATE(350)] = 12058, - [SMALL_STATE(351)] = 12086, - [SMALL_STATE(352)] = 12114, - [SMALL_STATE(353)] = 12142, - [SMALL_STATE(354)] = 12170, - [SMALL_STATE(355)] = 12198, - [SMALL_STATE(356)] = 12226, - [SMALL_STATE(357)] = 12254, - [SMALL_STATE(358)] = 12282, - [SMALL_STATE(359)] = 12305, - [SMALL_STATE(360)] = 12330, - [SMALL_STATE(361)] = 12353, - [SMALL_STATE(362)] = 12378, - [SMALL_STATE(363)] = 12400, - [SMALL_STATE(364)] = 12422, - [SMALL_STATE(365)] = 12444, - [SMALL_STATE(366)] = 12466, - [SMALL_STATE(367)] = 12488, - [SMALL_STATE(368)] = 12510, - [SMALL_STATE(369)] = 12544, - [SMALL_STATE(370)] = 12563, - [SMALL_STATE(371)] = 12580, - [SMALL_STATE(372)] = 12599, - [SMALL_STATE(373)] = 12620, - [SMALL_STATE(374)] = 12637, - [SMALL_STATE(375)] = 12656, - [SMALL_STATE(376)] = 12689, - [SMALL_STATE(377)] = 12706, - [SMALL_STATE(378)] = 12739, - [SMALL_STATE(379)] = 12766, - [SMALL_STATE(380)] = 12799, - [SMALL_STATE(381)] = 12832, - [SMALL_STATE(382)] = 12865, - [SMALL_STATE(383)] = 12898, - [SMALL_STATE(384)] = 12931, - [SMALL_STATE(385)] = 12947, - [SMALL_STATE(386)] = 12963, - [SMALL_STATE(387)] = 12977, - [SMALL_STATE(388)] = 13003, - [SMALL_STATE(389)] = 13016, - [SMALL_STATE(390)] = 13038, - [SMALL_STATE(391)] = 13063, - [SMALL_STATE(392)] = 13086, - [SMALL_STATE(393)] = 13109, - [SMALL_STATE(394)] = 13132, - [SMALL_STATE(395)] = 13155, - [SMALL_STATE(396)] = 13180, - [SMALL_STATE(397)] = 13205, - [SMALL_STATE(398)] = 13228, - [SMALL_STATE(399)] = 13251, - [SMALL_STATE(400)] = 13274, - [SMALL_STATE(401)] = 13297, - [SMALL_STATE(402)] = 13320, - [SMALL_STATE(403)] = 13345, - [SMALL_STATE(404)] = 13368, - [SMALL_STATE(405)] = 13391, - [SMALL_STATE(406)] = 13412, - [SMALL_STATE(407)] = 13435, - [SMALL_STATE(408)] = 13458, - [SMALL_STATE(409)] = 13483, - [SMALL_STATE(410)] = 13508, - [SMALL_STATE(411)] = 13531, - [SMALL_STATE(412)] = 13554, - [SMALL_STATE(413)] = 13574, - [SMALL_STATE(414)] = 13596, - [SMALL_STATE(415)] = 13618, - [SMALL_STATE(416)] = 13640, - [SMALL_STATE(417)] = 13662, - [SMALL_STATE(418)] = 13684, - [SMALL_STATE(419)] = 13706, - [SMALL_STATE(420)] = 13728, - [SMALL_STATE(421)] = 13750, - [SMALL_STATE(422)] = 13770, - [SMALL_STATE(423)] = 13792, - [SMALL_STATE(424)] = 13814, - [SMALL_STATE(425)] = 13836, - [SMALL_STATE(426)] = 13858, - [SMALL_STATE(427)] = 13880, - [SMALL_STATE(428)] = 13902, - [SMALL_STATE(429)] = 13924, - [SMALL_STATE(430)] = 13946, - [SMALL_STATE(431)] = 13968, - [SMALL_STATE(432)] = 13990, - [SMALL_STATE(433)] = 13999, - [SMALL_STATE(434)] = 14018, - [SMALL_STATE(435)] = 14037, - [SMALL_STATE(436)] = 14056, - [SMALL_STATE(437)] = 14075, - [SMALL_STATE(438)] = 14094, - [SMALL_STATE(439)] = 14113, - [SMALL_STATE(440)] = 14132, - [SMALL_STATE(441)] = 14151, - [SMALL_STATE(442)] = 14170, - [SMALL_STATE(443)] = 14189, - [SMALL_STATE(444)] = 14208, - [SMALL_STATE(445)] = 14227, - [SMALL_STATE(446)] = 14246, - [SMALL_STATE(447)] = 14265, - [SMALL_STATE(448)] = 14284, - [SMALL_STATE(449)] = 14303, - [SMALL_STATE(450)] = 14322, - [SMALL_STATE(451)] = 14341, - [SMALL_STATE(452)] = 14360, - [SMALL_STATE(453)] = 14379, - [SMALL_STATE(454)] = 14398, - [SMALL_STATE(455)] = 14417, - [SMALL_STATE(456)] = 14436, - [SMALL_STATE(457)] = 14455, - [SMALL_STATE(458)] = 14464, - [SMALL_STATE(459)] = 14483, - [SMALL_STATE(460)] = 14492, - [SMALL_STATE(461)] = 14511, - [SMALL_STATE(462)] = 14520, - [SMALL_STATE(463)] = 14529, - [SMALL_STATE(464)] = 14538, - [SMALL_STATE(465)] = 14557, - [SMALL_STATE(466)] = 14566, - [SMALL_STATE(467)] = 14585, - [SMALL_STATE(468)] = 14594, - [SMALL_STATE(469)] = 14613, - [SMALL_STATE(470)] = 14622, - [SMALL_STATE(471)] = 14631, - [SMALL_STATE(472)] = 14640, - [SMALL_STATE(473)] = 14649, - [SMALL_STATE(474)] = 14668, - [SMALL_STATE(475)] = 14677, - [SMALL_STATE(476)] = 14686, - [SMALL_STATE(477)] = 14705, - [SMALL_STATE(478)] = 14714, - [SMALL_STATE(479)] = 14733, - [SMALL_STATE(480)] = 14752, - [SMALL_STATE(481)] = 14771, - [SMALL_STATE(482)] = 14790, - [SMALL_STATE(483)] = 14809, - [SMALL_STATE(484)] = 14818, - [SMALL_STATE(485)] = 14837, - [SMALL_STATE(486)] = 14856, - [SMALL_STATE(487)] = 14875, - [SMALL_STATE(488)] = 14894, - [SMALL_STATE(489)] = 14913, - [SMALL_STATE(490)] = 14922, - [SMALL_STATE(491)] = 14930, - [SMALL_STATE(492)] = 14942, - [SMALL_STATE(493)] = 14950, - [SMALL_STATE(494)] = 14958, - [SMALL_STATE(495)] = 14966, - [SMALL_STATE(496)] = 14974, - [SMALL_STATE(497)] = 14988, - [SMALL_STATE(498)] = 14996, - [SMALL_STATE(499)] = 15010, - [SMALL_STATE(500)] = 15024, - [SMALL_STATE(501)] = 15032, - [SMALL_STATE(502)] = 15045, - [SMALL_STATE(503)] = 15056, - [SMALL_STATE(504)] = 15069, - [SMALL_STATE(505)] = 15080, - [SMALL_STATE(506)] = 15091, - [SMALL_STATE(507)] = 15102, - [SMALL_STATE(508)] = 15113, - [SMALL_STATE(509)] = 15124, - [SMALL_STATE(510)] = 15135, - [SMALL_STATE(511)] = 15148, - [SMALL_STATE(512)] = 15161, - [SMALL_STATE(513)] = 15174, - [SMALL_STATE(514)] = 15187, - [SMALL_STATE(515)] = 15200, - [SMALL_STATE(516)] = 15213, - [SMALL_STATE(517)] = 15226, - [SMALL_STATE(518)] = 15239, - [SMALL_STATE(519)] = 15252, - [SMALL_STATE(520)] = 15265, - [SMALL_STATE(521)] = 15278, - [SMALL_STATE(522)] = 15291, - [SMALL_STATE(523)] = 15304, - [SMALL_STATE(524)] = 15317, - [SMALL_STATE(525)] = 15330, - [SMALL_STATE(526)] = 15343, - [SMALL_STATE(527)] = 15356, - [SMALL_STATE(528)] = 15369, - [SMALL_STATE(529)] = 15382, - [SMALL_STATE(530)] = 15395, - [SMALL_STATE(531)] = 15408, - [SMALL_STATE(532)] = 15421, - [SMALL_STATE(533)] = 15434, - [SMALL_STATE(534)] = 15447, - [SMALL_STATE(535)] = 15460, - [SMALL_STATE(536)] = 15473, - [SMALL_STATE(537)] = 15486, - [SMALL_STATE(538)] = 15499, - [SMALL_STATE(539)] = 15512, - [SMALL_STATE(540)] = 15525, - [SMALL_STATE(541)] = 15538, - [SMALL_STATE(542)] = 15551, - [SMALL_STATE(543)] = 15564, - [SMALL_STATE(544)] = 15577, - [SMALL_STATE(545)] = 15590, - [SMALL_STATE(546)] = 15603, - [SMALL_STATE(547)] = 15616, - [SMALL_STATE(548)] = 15629, - [SMALL_STATE(549)] = 15642, - [SMALL_STATE(550)] = 15655, - [SMALL_STATE(551)] = 15668, - [SMALL_STATE(552)] = 15681, - [SMALL_STATE(553)] = 15694, - [SMALL_STATE(554)] = 15707, - [SMALL_STATE(555)] = 15720, - [SMALL_STATE(556)] = 15733, - [SMALL_STATE(557)] = 15746, - [SMALL_STATE(558)] = 15759, - [SMALL_STATE(559)] = 15772, - [SMALL_STATE(560)] = 15785, - [SMALL_STATE(561)] = 15798, - [SMALL_STATE(562)] = 15811, - [SMALL_STATE(563)] = 15824, - [SMALL_STATE(564)] = 15837, - [SMALL_STATE(565)] = 15850, - [SMALL_STATE(566)] = 15861, - [SMALL_STATE(567)] = 15874, - [SMALL_STATE(568)] = 15887, - [SMALL_STATE(569)] = 15900, - [SMALL_STATE(570)] = 15913, - [SMALL_STATE(571)] = 15926, - [SMALL_STATE(572)] = 15939, - [SMALL_STATE(573)] = 15952, - [SMALL_STATE(574)] = 15965, - [SMALL_STATE(575)] = 15978, - [SMALL_STATE(576)] = 15991, - [SMALL_STATE(577)] = 16004, - [SMALL_STATE(578)] = 16017, - [SMALL_STATE(579)] = 16030, - [SMALL_STATE(580)] = 16043, - [SMALL_STATE(581)] = 16056, - [SMALL_STATE(582)] = 16069, - [SMALL_STATE(583)] = 16082, - [SMALL_STATE(584)] = 16095, - [SMALL_STATE(585)] = 16108, - [SMALL_STATE(586)] = 16121, - [SMALL_STATE(587)] = 16134, - [SMALL_STATE(588)] = 16147, - [SMALL_STATE(589)] = 16160, - [SMALL_STATE(590)] = 16173, - [SMALL_STATE(591)] = 16186, - [SMALL_STATE(592)] = 16199, - [SMALL_STATE(593)] = 16212, - [SMALL_STATE(594)] = 16225, - [SMALL_STATE(595)] = 16238, - [SMALL_STATE(596)] = 16251, - [SMALL_STATE(597)] = 16260, - [SMALL_STATE(598)] = 16273, - [SMALL_STATE(599)] = 16286, - [SMALL_STATE(600)] = 16299, - [SMALL_STATE(601)] = 16312, - [SMALL_STATE(602)] = 16321, - [SMALL_STATE(603)] = 16334, - [SMALL_STATE(604)] = 16343, - [SMALL_STATE(605)] = 16356, - [SMALL_STATE(606)] = 16369, - [SMALL_STATE(607)] = 16378, - [SMALL_STATE(608)] = 16387, - [SMALL_STATE(609)] = 16400, - [SMALL_STATE(610)] = 16409, - [SMALL_STATE(611)] = 16418, - [SMALL_STATE(612)] = 16427, - [SMALL_STATE(613)] = 16440, - [SMALL_STATE(614)] = 16449, - [SMALL_STATE(615)] = 16458, - [SMALL_STATE(616)] = 16467, - [SMALL_STATE(617)] = 16480, - [SMALL_STATE(618)] = 16493, - [SMALL_STATE(619)] = 16502, - [SMALL_STATE(620)] = 16515, - [SMALL_STATE(621)] = 16528, - [SMALL_STATE(622)] = 16541, - [SMALL_STATE(623)] = 16547, - [SMALL_STATE(624)] = 16553, - [SMALL_STATE(625)] = 16559, - [SMALL_STATE(626)] = 16565, - [SMALL_STATE(627)] = 16571, - [SMALL_STATE(628)] = 16577, - [SMALL_STATE(629)] = 16585, - [SMALL_STATE(630)] = 16591, - [SMALL_STATE(631)] = 16599, - [SMALL_STATE(632)] = 16609, - [SMALL_STATE(633)] = 16619, - [SMALL_STATE(634)] = 16627, - [SMALL_STATE(635)] = 16633, - [SMALL_STATE(636)] = 16639, - [SMALL_STATE(637)] = 16645, - [SMALL_STATE(638)] = 16651, - [SMALL_STATE(639)] = 16657, - [SMALL_STATE(640)] = 16663, - [SMALL_STATE(641)] = 16669, - [SMALL_STATE(642)] = 16675, - [SMALL_STATE(643)] = 16681, - [SMALL_STATE(644)] = 16687, - [SMALL_STATE(645)] = 16693, - [SMALL_STATE(646)] = 16699, - [SMALL_STATE(647)] = 16705, - [SMALL_STATE(648)] = 16711, - [SMALL_STATE(649)] = 16717, - [SMALL_STATE(650)] = 16723, - [SMALL_STATE(651)] = 16729, - [SMALL_STATE(652)] = 16735, - [SMALL_STATE(653)] = 16741, - [SMALL_STATE(654)] = 16747, - [SMALL_STATE(655)] = 16753, - [SMALL_STATE(656)] = 16759, - [SMALL_STATE(657)] = 16769, - [SMALL_STATE(658)] = 16779, - [SMALL_STATE(659)] = 16787, - [SMALL_STATE(660)] = 16795, - [SMALL_STATE(661)] = 16805, - [SMALL_STATE(662)] = 16811, - [SMALL_STATE(663)] = 16817, - [SMALL_STATE(664)] = 16827, - [SMALL_STATE(665)] = 16835, - [SMALL_STATE(666)] = 16843, - [SMALL_STATE(667)] = 16853, - [SMALL_STATE(668)] = 16859, - [SMALL_STATE(669)] = 16865, - [SMALL_STATE(670)] = 16871, - [SMALL_STATE(671)] = 16877, - [SMALL_STATE(672)] = 16883, - [SMALL_STATE(673)] = 16893, - [SMALL_STATE(674)] = 16903, - [SMALL_STATE(675)] = 16913, - [SMALL_STATE(676)] = 16923, - [SMALL_STATE(677)] = 16929, - [SMALL_STATE(678)] = 16935, - [SMALL_STATE(679)] = 16943, - [SMALL_STATE(680)] = 16953, - [SMALL_STATE(681)] = 16959, - [SMALL_STATE(682)] = 16969, - [SMALL_STATE(683)] = 16975, - [SMALL_STATE(684)] = 16981, - [SMALL_STATE(685)] = 16987, - [SMALL_STATE(686)] = 16993, - [SMALL_STATE(687)] = 17003, - [SMALL_STATE(688)] = 17013, - [SMALL_STATE(689)] = 17019, - [SMALL_STATE(690)] = 17029, - [SMALL_STATE(691)] = 17039, - [SMALL_STATE(692)] = 17045, - [SMALL_STATE(693)] = 17051, - [SMALL_STATE(694)] = 17057, - [SMALL_STATE(695)] = 17063, - [SMALL_STATE(696)] = 17073, - [SMALL_STATE(697)] = 17081, - [SMALL_STATE(698)] = 17087, - [SMALL_STATE(699)] = 17093, - [SMALL_STATE(700)] = 17099, - [SMALL_STATE(701)] = 17107, - [SMALL_STATE(702)] = 17113, - [SMALL_STATE(703)] = 17119, - [SMALL_STATE(704)] = 17125, - [SMALL_STATE(705)] = 17131, - [SMALL_STATE(706)] = 17137, - [SMALL_STATE(707)] = 17143, - [SMALL_STATE(708)] = 17149, - [SMALL_STATE(709)] = 17155, - [SMALL_STATE(710)] = 17163, - [SMALL_STATE(711)] = 17169, - [SMALL_STATE(712)] = 17175, - [SMALL_STATE(713)] = 17181, - [SMALL_STATE(714)] = 17187, - [SMALL_STATE(715)] = 17193, - [SMALL_STATE(716)] = 17199, - [SMALL_STATE(717)] = 17207, - [SMALL_STATE(718)] = 17213, - [SMALL_STATE(719)] = 17219, - [SMALL_STATE(720)] = 17229, - [SMALL_STATE(721)] = 17239, - [SMALL_STATE(722)] = 17247, - [SMALL_STATE(723)] = 17257, - [SMALL_STATE(724)] = 17267, - [SMALL_STATE(725)] = 17277, - [SMALL_STATE(726)] = 17285, - [SMALL_STATE(727)] = 17291, - [SMALL_STATE(728)] = 17297, - [SMALL_STATE(729)] = 17304, - [SMALL_STATE(730)] = 17309, - [SMALL_STATE(731)] = 17316, - [SMALL_STATE(732)] = 17321, - [SMALL_STATE(733)] = 17326, - [SMALL_STATE(734)] = 17331, - [SMALL_STATE(735)] = 17336, - [SMALL_STATE(736)] = 17341, - [SMALL_STATE(737)] = 17346, - [SMALL_STATE(738)] = 17351, - [SMALL_STATE(739)] = 17356, - [SMALL_STATE(740)] = 17361, - [SMALL_STATE(741)] = 17366, - [SMALL_STATE(742)] = 17371, - [SMALL_STATE(743)] = 17376, - [SMALL_STATE(744)] = 17383, - [SMALL_STATE(745)] = 17388, - [SMALL_STATE(746)] = 17395, - [SMALL_STATE(747)] = 17400, - [SMALL_STATE(748)] = 17405, - [SMALL_STATE(749)] = 17412, - [SMALL_STATE(750)] = 17419, - [SMALL_STATE(751)] = 17426, - [SMALL_STATE(752)] = 17431, - [SMALL_STATE(753)] = 17438, - [SMALL_STATE(754)] = 17443, - [SMALL_STATE(755)] = 17450, - [SMALL_STATE(756)] = 17455, - [SMALL_STATE(757)] = 17460, - [SMALL_STATE(758)] = 17465, - [SMALL_STATE(759)] = 17472, - [SMALL_STATE(760)] = 17479, - [SMALL_STATE(761)] = 17484, - [SMALL_STATE(762)] = 17489, - [SMALL_STATE(763)] = 17494, - [SMALL_STATE(764)] = 17499, - [SMALL_STATE(765)] = 17504, - [SMALL_STATE(766)] = 17509, - [SMALL_STATE(767)] = 17514, - [SMALL_STATE(768)] = 17519, - [SMALL_STATE(769)] = 17524, - [SMALL_STATE(770)] = 17529, - [SMALL_STATE(771)] = 17534, - [SMALL_STATE(772)] = 17539, - [SMALL_STATE(773)] = 17544, - [SMALL_STATE(774)] = 17549, - [SMALL_STATE(775)] = 17554, - [SMALL_STATE(776)] = 17559, - [SMALL_STATE(777)] = 17566, - [SMALL_STATE(778)] = 17571, - [SMALL_STATE(779)] = 17578, - [SMALL_STATE(780)] = 17583, - [SMALL_STATE(781)] = 17588, - [SMALL_STATE(782)] = 17595, - [SMALL_STATE(783)] = 17602, - [SMALL_STATE(784)] = 17609, - [SMALL_STATE(785)] = 17616, - [SMALL_STATE(786)] = 17621, - [SMALL_STATE(787)] = 17626, - [SMALL_STATE(788)] = 17631, - [SMALL_STATE(789)] = 17636, - [SMALL_STATE(790)] = 17643, - [SMALL_STATE(791)] = 17650, - [SMALL_STATE(792)] = 17657, - [SMALL_STATE(793)] = 17662, - [SMALL_STATE(794)] = 17667, - [SMALL_STATE(795)] = 17674, - [SMALL_STATE(796)] = 17679, - [SMALL_STATE(797)] = 17684, - [SMALL_STATE(798)] = 17689, - [SMALL_STATE(799)] = 17694, - [SMALL_STATE(800)] = 17699, - [SMALL_STATE(801)] = 17706, - [SMALL_STATE(802)] = 17711, - [SMALL_STATE(803)] = 17716, - [SMALL_STATE(804)] = 17721, - [SMALL_STATE(805)] = 17726, - [SMALL_STATE(806)] = 17733, - [SMALL_STATE(807)] = 17740, - [SMALL_STATE(808)] = 17747, - [SMALL_STATE(809)] = 17752, - [SMALL_STATE(810)] = 17759, - [SMALL_STATE(811)] = 17764, - [SMALL_STATE(812)] = 17771, - [SMALL_STATE(813)] = 17776, - [SMALL_STATE(814)] = 17781, - [SMALL_STATE(815)] = 17786, - [SMALL_STATE(816)] = 17791, - [SMALL_STATE(817)] = 17796, - [SMALL_STATE(818)] = 17803, - [SMALL_STATE(819)] = 17808, - [SMALL_STATE(820)] = 17813, - [SMALL_STATE(821)] = 17818, - [SMALL_STATE(822)] = 17823, - [SMALL_STATE(823)] = 17828, - [SMALL_STATE(824)] = 17835, - [SMALL_STATE(825)] = 17840, - [SMALL_STATE(826)] = 17847, - [SMALL_STATE(827)] = 17854, - [SMALL_STATE(828)] = 17859, - [SMALL_STATE(829)] = 17864, - [SMALL_STATE(830)] = 17871, - [SMALL_STATE(831)] = 17878, - [SMALL_STATE(832)] = 17885, - [SMALL_STATE(833)] = 17890, - [SMALL_STATE(834)] = 17895, - [SMALL_STATE(835)] = 17900, - [SMALL_STATE(836)] = 17905, - [SMALL_STATE(837)] = 17910, - [SMALL_STATE(838)] = 17915, - [SMALL_STATE(839)] = 17920, - [SMALL_STATE(840)] = 17925, - [SMALL_STATE(841)] = 17930, - [SMALL_STATE(842)] = 17935, - [SMALL_STATE(843)] = 17940, - [SMALL_STATE(844)] = 17945, - [SMALL_STATE(845)] = 17950, - [SMALL_STATE(846)] = 17955, - [SMALL_STATE(847)] = 17960, - [SMALL_STATE(848)] = 17965, - [SMALL_STATE(849)] = 17970, - [SMALL_STATE(850)] = 17975, - [SMALL_STATE(851)] = 17980, - [SMALL_STATE(852)] = 17985, - [SMALL_STATE(853)] = 17990, - [SMALL_STATE(854)] = 17995, - [SMALL_STATE(855)] = 18000, - [SMALL_STATE(856)] = 18005, - [SMALL_STATE(857)] = 18010, - [SMALL_STATE(858)] = 18017, - [SMALL_STATE(859)] = 18024, - [SMALL_STATE(860)] = 18029, - [SMALL_STATE(861)] = 18034, - [SMALL_STATE(862)] = 18039, - [SMALL_STATE(863)] = 18046, - [SMALL_STATE(864)] = 18053, - [SMALL_STATE(865)] = 18060, - [SMALL_STATE(866)] = 18067, - [SMALL_STATE(867)] = 18072, - [SMALL_STATE(868)] = 18077, - [SMALL_STATE(869)] = 18084, - [SMALL_STATE(870)] = 18091, - [SMALL_STATE(871)] = 18096, - [SMALL_STATE(872)] = 18101, - [SMALL_STATE(873)] = 18106, - [SMALL_STATE(874)] = 18111, - [SMALL_STATE(875)] = 18118, - [SMALL_STATE(876)] = 18125, - [SMALL_STATE(877)] = 18130, - [SMALL_STATE(878)] = 18137, - [SMALL_STATE(879)] = 18144, - [SMALL_STATE(880)] = 18151, - [SMALL_STATE(881)] = 18158, - [SMALL_STATE(882)] = 18165, - [SMALL_STATE(883)] = 18172, - [SMALL_STATE(884)] = 18177, - [SMALL_STATE(885)] = 18182, - [SMALL_STATE(886)] = 18189, - [SMALL_STATE(887)] = 18196, - [SMALL_STATE(888)] = 18201, - [SMALL_STATE(889)] = 18206, - [SMALL_STATE(890)] = 18213, - [SMALL_STATE(891)] = 18220, - [SMALL_STATE(892)] = 18225, - [SMALL_STATE(893)] = 18230, - [SMALL_STATE(894)] = 18235, - [SMALL_STATE(895)] = 18242, - [SMALL_STATE(896)] = 18249, - [SMALL_STATE(897)] = 18256, - [SMALL_STATE(898)] = 18263, - [SMALL_STATE(899)] = 18268, - [SMALL_STATE(900)] = 18273, - [SMALL_STATE(901)] = 18280, - [SMALL_STATE(902)] = 18287, - [SMALL_STATE(903)] = 18292, - [SMALL_STATE(904)] = 18297, - [SMALL_STATE(905)] = 18302, - [SMALL_STATE(906)] = 18309, - [SMALL_STATE(907)] = 18316, - [SMALL_STATE(908)] = 18321, - [SMALL_STATE(909)] = 18326, - [SMALL_STATE(910)] = 18331, - [SMALL_STATE(911)] = 18338, - [SMALL_STATE(912)] = 18345, - [SMALL_STATE(913)] = 18352, - [SMALL_STATE(914)] = 18359, - [SMALL_STATE(915)] = 18364, - [SMALL_STATE(916)] = 18369, - [SMALL_STATE(917)] = 18376, - [SMALL_STATE(918)] = 18383, - [SMALL_STATE(919)] = 18388, - [SMALL_STATE(920)] = 18393, - [SMALL_STATE(921)] = 18398, - [SMALL_STATE(922)] = 18403, - [SMALL_STATE(923)] = 18408, - [SMALL_STATE(924)] = 18413, - [SMALL_STATE(925)] = 18418, - [SMALL_STATE(926)] = 18423, - [SMALL_STATE(927)] = 18430, - [SMALL_STATE(928)] = 18437, - [SMALL_STATE(929)] = 18444, - [SMALL_STATE(930)] = 18451, - [SMALL_STATE(931)] = 18456, - [SMALL_STATE(932)] = 18463, - [SMALL_STATE(933)] = 18468, - [SMALL_STATE(934)] = 18475, - [SMALL_STATE(935)] = 18480, - [SMALL_STATE(936)] = 18484, - [SMALL_STATE(937)] = 18488, - [SMALL_STATE(938)] = 18492, - [SMALL_STATE(939)] = 18496, - [SMALL_STATE(940)] = 18500, - [SMALL_STATE(941)] = 18504, - [SMALL_STATE(942)] = 18508, - [SMALL_STATE(943)] = 18512, - [SMALL_STATE(944)] = 18516, - [SMALL_STATE(945)] = 18520, - [SMALL_STATE(946)] = 18524, - [SMALL_STATE(947)] = 18528, - [SMALL_STATE(948)] = 18532, - [SMALL_STATE(949)] = 18536, - [SMALL_STATE(950)] = 18540, - [SMALL_STATE(951)] = 18544, - [SMALL_STATE(952)] = 18548, - [SMALL_STATE(953)] = 18552, - [SMALL_STATE(954)] = 18556, - [SMALL_STATE(955)] = 18560, - [SMALL_STATE(956)] = 18564, - [SMALL_STATE(957)] = 18568, - [SMALL_STATE(958)] = 18572, - [SMALL_STATE(959)] = 18576, - [SMALL_STATE(960)] = 18580, - [SMALL_STATE(961)] = 18584, - [SMALL_STATE(962)] = 18588, - [SMALL_STATE(963)] = 18592, - [SMALL_STATE(964)] = 18596, - [SMALL_STATE(965)] = 18600, - [SMALL_STATE(966)] = 18604, - [SMALL_STATE(967)] = 18608, - [SMALL_STATE(968)] = 18612, - [SMALL_STATE(969)] = 18616, - [SMALL_STATE(970)] = 18620, - [SMALL_STATE(971)] = 18624, - [SMALL_STATE(972)] = 18628, - [SMALL_STATE(973)] = 18632, - [SMALL_STATE(974)] = 18636, - [SMALL_STATE(975)] = 18640, - [SMALL_STATE(976)] = 18644, - [SMALL_STATE(977)] = 18648, - [SMALL_STATE(978)] = 18652, - [SMALL_STATE(979)] = 18656, - [SMALL_STATE(980)] = 18660, - [SMALL_STATE(981)] = 18664, - [SMALL_STATE(982)] = 18668, - [SMALL_STATE(983)] = 18672, - [SMALL_STATE(984)] = 18676, - [SMALL_STATE(985)] = 18680, - [SMALL_STATE(986)] = 18684, - [SMALL_STATE(987)] = 18688, - [SMALL_STATE(988)] = 18692, - [SMALL_STATE(989)] = 18696, - [SMALL_STATE(990)] = 18700, - [SMALL_STATE(991)] = 18704, - [SMALL_STATE(992)] = 18708, - [SMALL_STATE(993)] = 18712, - [SMALL_STATE(994)] = 18716, - [SMALL_STATE(995)] = 18720, - [SMALL_STATE(996)] = 18724, - [SMALL_STATE(997)] = 18728, - [SMALL_STATE(998)] = 18732, - [SMALL_STATE(999)] = 18736, - [SMALL_STATE(1000)] = 18740, - [SMALL_STATE(1001)] = 18744, - [SMALL_STATE(1002)] = 18748, - [SMALL_STATE(1003)] = 18752, - [SMALL_STATE(1004)] = 18756, - [SMALL_STATE(1005)] = 18760, - [SMALL_STATE(1006)] = 18764, - [SMALL_STATE(1007)] = 18768, - [SMALL_STATE(1008)] = 18772, - [SMALL_STATE(1009)] = 18776, - [SMALL_STATE(1010)] = 18780, - [SMALL_STATE(1011)] = 18784, - [SMALL_STATE(1012)] = 18788, - [SMALL_STATE(1013)] = 18792, - [SMALL_STATE(1014)] = 18796, - [SMALL_STATE(1015)] = 18800, - [SMALL_STATE(1016)] = 18804, - [SMALL_STATE(1017)] = 18808, - [SMALL_STATE(1018)] = 18812, - [SMALL_STATE(1019)] = 18816, - [SMALL_STATE(1020)] = 18820, - [SMALL_STATE(1021)] = 18824, - [SMALL_STATE(1022)] = 18828, - [SMALL_STATE(1023)] = 18832, - [SMALL_STATE(1024)] = 18836, - [SMALL_STATE(1025)] = 18840, - [SMALL_STATE(1026)] = 18844, - [SMALL_STATE(1027)] = 18848, - [SMALL_STATE(1028)] = 18852, - [SMALL_STATE(1029)] = 18856, - [SMALL_STATE(1030)] = 18860, - [SMALL_STATE(1031)] = 18864, - [SMALL_STATE(1032)] = 18868, - [SMALL_STATE(1033)] = 18872, - [SMALL_STATE(1034)] = 18876, - [SMALL_STATE(1035)] = 18880, - [SMALL_STATE(1036)] = 18884, - [SMALL_STATE(1037)] = 18888, - [SMALL_STATE(1038)] = 18892, - [SMALL_STATE(1039)] = 18896, - [SMALL_STATE(1040)] = 18900, - [SMALL_STATE(1041)] = 18904, - [SMALL_STATE(1042)] = 18908, - [SMALL_STATE(1043)] = 18912, - [SMALL_STATE(1044)] = 18916, - [SMALL_STATE(1045)] = 18920, - [SMALL_STATE(1046)] = 18924, - [SMALL_STATE(1047)] = 18928, - [SMALL_STATE(1048)] = 18932, - [SMALL_STATE(1049)] = 18936, - [SMALL_STATE(1050)] = 18940, - [SMALL_STATE(1051)] = 18944, - [SMALL_STATE(1052)] = 18948, - [SMALL_STATE(1053)] = 18952, - [SMALL_STATE(1054)] = 18956, - [SMALL_STATE(1055)] = 18960, - [SMALL_STATE(1056)] = 18964, - [SMALL_STATE(1057)] = 18968, - [SMALL_STATE(1058)] = 18972, - [SMALL_STATE(1059)] = 18976, - [SMALL_STATE(1060)] = 18980, - [SMALL_STATE(1061)] = 18984, - [SMALL_STATE(1062)] = 18988, - [SMALL_STATE(1063)] = 18992, - [SMALL_STATE(1064)] = 18996, - [SMALL_STATE(1065)] = 19000, - [SMALL_STATE(1066)] = 19004, - [SMALL_STATE(1067)] = 19008, - [SMALL_STATE(1068)] = 19012, - [SMALL_STATE(1069)] = 19016, - [SMALL_STATE(1070)] = 19020, - [SMALL_STATE(1071)] = 19024, - [SMALL_STATE(1072)] = 19028, - [SMALL_STATE(1073)] = 19032, - [SMALL_STATE(1074)] = 19036, - [SMALL_STATE(1075)] = 19040, - [SMALL_STATE(1076)] = 19044, - [SMALL_STATE(1077)] = 19048, - [SMALL_STATE(1078)] = 19052, - [SMALL_STATE(1079)] = 19056, - [SMALL_STATE(1080)] = 19060, - [SMALL_STATE(1081)] = 19064, - [SMALL_STATE(1082)] = 19068, - [SMALL_STATE(1083)] = 19072, - [SMALL_STATE(1084)] = 19076, - [SMALL_STATE(1085)] = 19080, - [SMALL_STATE(1086)] = 19084, - [SMALL_STATE(1087)] = 19088, - [SMALL_STATE(1088)] = 19092, - [SMALL_STATE(1089)] = 19096, - [SMALL_STATE(1090)] = 19100, - [SMALL_STATE(1091)] = 19104, - [SMALL_STATE(1092)] = 19108, - [SMALL_STATE(1093)] = 19112, - [SMALL_STATE(1094)] = 19116, - [SMALL_STATE(1095)] = 19120, - [SMALL_STATE(1096)] = 19124, - [SMALL_STATE(1097)] = 19128, - [SMALL_STATE(1098)] = 19132, - [SMALL_STATE(1099)] = 19136, - [SMALL_STATE(1100)] = 19140, - [SMALL_STATE(1101)] = 19144, - [SMALL_STATE(1102)] = 19148, - [SMALL_STATE(1103)] = 19152, - [SMALL_STATE(1104)] = 19156, - [SMALL_STATE(1105)] = 19160, - [SMALL_STATE(1106)] = 19164, - [SMALL_STATE(1107)] = 19168, - [SMALL_STATE(1108)] = 19172, - [SMALL_STATE(1109)] = 19176, - [SMALL_STATE(1110)] = 19180, - [SMALL_STATE(1111)] = 19184, - [SMALL_STATE(1112)] = 19188, - [SMALL_STATE(1113)] = 19192, - [SMALL_STATE(1114)] = 19196, - [SMALL_STATE(1115)] = 19200, - [SMALL_STATE(1116)] = 19204, - [SMALL_STATE(1117)] = 19208, - [SMALL_STATE(1118)] = 19212, - [SMALL_STATE(1119)] = 19216, - [SMALL_STATE(1120)] = 19220, - [SMALL_STATE(1121)] = 19224, - [SMALL_STATE(1122)] = 19228, - [SMALL_STATE(1123)] = 19232, - [SMALL_STATE(1124)] = 19236, - [SMALL_STATE(1125)] = 19240, - [SMALL_STATE(1126)] = 19244, - [SMALL_STATE(1127)] = 19248, - [SMALL_STATE(1128)] = 19252, - [SMALL_STATE(1129)] = 19256, - [SMALL_STATE(1130)] = 19260, - [SMALL_STATE(1131)] = 19264, - [SMALL_STATE(1132)] = 19268, + [SMALL_STATE(71)] = 0, + [SMALL_STATE(72)] = 70, + [SMALL_STATE(73)] = 140, + [SMALL_STATE(74)] = 210, + [SMALL_STATE(75)] = 273, + [SMALL_STATE(76)] = 336, + [SMALL_STATE(77)] = 399, + [SMALL_STATE(78)] = 457, + [SMALL_STATE(79)] = 515, + [SMALL_STATE(80)] = 573, + [SMALL_STATE(81)] = 623, + [SMALL_STATE(82)] = 673, + [SMALL_STATE(83)] = 723, + [SMALL_STATE(84)] = 768, + [SMALL_STATE(85)] = 815, + [SMALL_STATE(86)] = 862, + [SMALL_STATE(87)] = 907, + [SMALL_STATE(88)] = 952, + [SMALL_STATE(89)] = 999, + [SMALL_STATE(90)] = 1046, + [SMALL_STATE(91)] = 1093, + [SMALL_STATE(92)] = 1140, + [SMALL_STATE(93)] = 1185, + [SMALL_STATE(94)] = 1232, + [SMALL_STATE(95)] = 1279, + [SMALL_STATE(96)] = 1326, + [SMALL_STATE(97)] = 1373, + [SMALL_STATE(98)] = 1420, + [SMALL_STATE(99)] = 1465, + [SMALL_STATE(100)] = 1510, + [SMALL_STATE(101)] = 1557, + [SMALL_STATE(102)] = 1604, + [SMALL_STATE(103)] = 1651, + [SMALL_STATE(104)] = 1698, + [SMALL_STATE(105)] = 1745, + [SMALL_STATE(106)] = 1790, + [SMALL_STATE(107)] = 1835, + [SMALL_STATE(108)] = 1880, + [SMALL_STATE(109)] = 1927, + [SMALL_STATE(110)] = 1974, + [SMALL_STATE(111)] = 2019, + [SMALL_STATE(112)] = 2064, + [SMALL_STATE(113)] = 2111, + [SMALL_STATE(114)] = 2158, + [SMALL_STATE(115)] = 2205, + [SMALL_STATE(116)] = 2252, + [SMALL_STATE(117)] = 2299, + [SMALL_STATE(118)] = 2344, + [SMALL_STATE(119)] = 2389, + [SMALL_STATE(120)] = 2434, + [SMALL_STATE(121)] = 2481, + [SMALL_STATE(122)] = 2528, + [SMALL_STATE(123)] = 2575, + [SMALL_STATE(124)] = 2622, + [SMALL_STATE(125)] = 2667, + [SMALL_STATE(126)] = 2712, + [SMALL_STATE(127)] = 2759, + [SMALL_STATE(128)] = 2804, + [SMALL_STATE(129)] = 2849, + [SMALL_STATE(130)] = 2896, + [SMALL_STATE(131)] = 2943, + [SMALL_STATE(132)] = 2988, + [SMALL_STATE(133)] = 3035, + [SMALL_STATE(134)] = 3080, + [SMALL_STATE(135)] = 3125, + [SMALL_STATE(136)] = 3172, + [SMALL_STATE(137)] = 3219, + [SMALL_STATE(138)] = 3266, + [SMALL_STATE(139)] = 3313, + [SMALL_STATE(140)] = 3357, + [SMALL_STATE(141)] = 3401, + [SMALL_STATE(142)] = 3445, + [SMALL_STATE(143)] = 3489, + [SMALL_STATE(144)] = 3533, + [SMALL_STATE(145)] = 3577, + [SMALL_STATE(146)] = 3621, + [SMALL_STATE(147)] = 3665, + [SMALL_STATE(148)] = 3709, + [SMALL_STATE(149)] = 3753, + [SMALL_STATE(150)] = 3797, + [SMALL_STATE(151)] = 3841, + [SMALL_STATE(152)] = 3885, + [SMALL_STATE(153)] = 3929, + [SMALL_STATE(154)] = 3973, + [SMALL_STATE(155)] = 4017, + [SMALL_STATE(156)] = 4061, + [SMALL_STATE(157)] = 4105, + [SMALL_STATE(158)] = 4149, + [SMALL_STATE(159)] = 4193, + [SMALL_STATE(160)] = 4237, + [SMALL_STATE(161)] = 4281, + [SMALL_STATE(162)] = 4325, + [SMALL_STATE(163)] = 4369, + [SMALL_STATE(164)] = 4413, + [SMALL_STATE(165)] = 4457, + [SMALL_STATE(166)] = 4501, + [SMALL_STATE(167)] = 4545, + [SMALL_STATE(168)] = 4589, + [SMALL_STATE(169)] = 4633, + [SMALL_STATE(170)] = 4677, + [SMALL_STATE(171)] = 4721, + [SMALL_STATE(172)] = 4765, + [SMALL_STATE(173)] = 4809, + [SMALL_STATE(174)] = 4853, + [SMALL_STATE(175)] = 4897, + [SMALL_STATE(176)] = 4941, + [SMALL_STATE(177)] = 4985, + [SMALL_STATE(178)] = 5029, + [SMALL_STATE(179)] = 5073, + [SMALL_STATE(180)] = 5117, + [SMALL_STATE(181)] = 5161, + [SMALL_STATE(182)] = 5205, + [SMALL_STATE(183)] = 5249, + [SMALL_STATE(184)] = 5293, + [SMALL_STATE(185)] = 5337, + [SMALL_STATE(186)] = 5381, + [SMALL_STATE(187)] = 5425, + [SMALL_STATE(188)] = 5469, + [SMALL_STATE(189)] = 5513, + [SMALL_STATE(190)] = 5557, + [SMALL_STATE(191)] = 5601, + [SMALL_STATE(192)] = 5645, + [SMALL_STATE(193)] = 5689, + [SMALL_STATE(194)] = 5733, + [SMALL_STATE(195)] = 5777, + [SMALL_STATE(196)] = 5821, + [SMALL_STATE(197)] = 5865, + [SMALL_STATE(198)] = 5909, + [SMALL_STATE(199)] = 5953, + [SMALL_STATE(200)] = 5997, + [SMALL_STATE(201)] = 6041, + [SMALL_STATE(202)] = 6085, + [SMALL_STATE(203)] = 6129, + [SMALL_STATE(204)] = 6173, + [SMALL_STATE(205)] = 6217, + [SMALL_STATE(206)] = 6261, + [SMALL_STATE(207)] = 6305, + [SMALL_STATE(208)] = 6349, + [SMALL_STATE(209)] = 6393, + [SMALL_STATE(210)] = 6437, + [SMALL_STATE(211)] = 6481, + [SMALL_STATE(212)] = 6525, + [SMALL_STATE(213)] = 6569, + [SMALL_STATE(214)] = 6613, + [SMALL_STATE(215)] = 6657, + [SMALL_STATE(216)] = 6701, + [SMALL_STATE(217)] = 6745, + [SMALL_STATE(218)] = 6789, + [SMALL_STATE(219)] = 6833, + [SMALL_STATE(220)] = 6877, + [SMALL_STATE(221)] = 6921, + [SMALL_STATE(222)] = 6965, + [SMALL_STATE(223)] = 7009, + [SMALL_STATE(224)] = 7053, + [SMALL_STATE(225)] = 7097, + [SMALL_STATE(226)] = 7141, + [SMALL_STATE(227)] = 7185, + [SMALL_STATE(228)] = 7229, + [SMALL_STATE(229)] = 7273, + [SMALL_STATE(230)] = 7317, + [SMALL_STATE(231)] = 7361, + [SMALL_STATE(232)] = 7405, + [SMALL_STATE(233)] = 7449, + [SMALL_STATE(234)] = 7493, + [SMALL_STATE(235)] = 7537, + [SMALL_STATE(236)] = 7581, + [SMALL_STATE(237)] = 7625, + [SMALL_STATE(238)] = 7669, + [SMALL_STATE(239)] = 7713, + [SMALL_STATE(240)] = 7757, + [SMALL_STATE(241)] = 7801, + [SMALL_STATE(242)] = 7845, + [SMALL_STATE(243)] = 7889, + [SMALL_STATE(244)] = 7933, + [SMALL_STATE(245)] = 7977, + [SMALL_STATE(246)] = 8021, + [SMALL_STATE(247)] = 8065, + [SMALL_STATE(248)] = 8109, + [SMALL_STATE(249)] = 8153, + [SMALL_STATE(250)] = 8197, + [SMALL_STATE(251)] = 8241, + [SMALL_STATE(252)] = 8285, + [SMALL_STATE(253)] = 8329, + [SMALL_STATE(254)] = 8373, + [SMALL_STATE(255)] = 8417, + [SMALL_STATE(256)] = 8461, + [SMALL_STATE(257)] = 8505, + [SMALL_STATE(258)] = 8549, + [SMALL_STATE(259)] = 8593, + [SMALL_STATE(260)] = 8637, + [SMALL_STATE(261)] = 8681, + [SMALL_STATE(262)] = 8725, + [SMALL_STATE(263)] = 8769, + [SMALL_STATE(264)] = 8813, + [SMALL_STATE(265)] = 8857, + [SMALL_STATE(266)] = 8901, + [SMALL_STATE(267)] = 8945, + [SMALL_STATE(268)] = 8989, + [SMALL_STATE(269)] = 9033, + [SMALL_STATE(270)] = 9077, + [SMALL_STATE(271)] = 9121, + [SMALL_STATE(272)] = 9165, + [SMALL_STATE(273)] = 9209, + [SMALL_STATE(274)] = 9253, + [SMALL_STATE(275)] = 9297, + [SMALL_STATE(276)] = 9341, + [SMALL_STATE(277)] = 9385, + [SMALL_STATE(278)] = 9429, + [SMALL_STATE(279)] = 9473, + [SMALL_STATE(280)] = 9520, + [SMALL_STATE(281)] = 9563, + [SMALL_STATE(282)] = 9605, + [SMALL_STATE(283)] = 9651, + [SMALL_STATE(284)] = 9697, + [SMALL_STATE(285)] = 9743, + [SMALL_STATE(286)] = 9789, + [SMALL_STATE(287)] = 9835, + [SMALL_STATE(288)] = 9881, + [SMALL_STATE(289)] = 9923, + [SMALL_STATE(290)] = 9965, + [SMALL_STATE(291)] = 10007, + [SMALL_STATE(292)] = 10049, + [SMALL_STATE(293)] = 10091, + [SMALL_STATE(294)] = 10133, + [SMALL_STATE(295)] = 10175, + [SMALL_STATE(296)] = 10217, + [SMALL_STATE(297)] = 10259, + [SMALL_STATE(298)] = 10301, + [SMALL_STATE(299)] = 10343, + [SMALL_STATE(300)] = 10385, + [SMALL_STATE(301)] = 10424, + [SMALL_STATE(302)] = 10463, + [SMALL_STATE(303)] = 10500, + [SMALL_STATE(304)] = 10539, + [SMALL_STATE(305)] = 10578, + [SMALL_STATE(306)] = 10617, + [SMALL_STATE(307)] = 10656, + [SMALL_STATE(308)] = 10688, + [SMALL_STATE(309)] = 10714, + [SMALL_STATE(310)] = 10748, + [SMALL_STATE(311)] = 10782, + [SMALL_STATE(312)] = 10808, + [SMALL_STATE(313)] = 10842, + [SMALL_STATE(314)] = 10874, + [SMALL_STATE(315)] = 10908, + [SMALL_STATE(316)] = 10940, + [SMALL_STATE(317)] = 10974, + [SMALL_STATE(318)] = 11006, + [SMALL_STATE(319)] = 11038, + [SMALL_STATE(320)] = 11070, + [SMALL_STATE(321)] = 11102, + [SMALL_STATE(322)] = 11134, + [SMALL_STATE(323)] = 11166, + [SMALL_STATE(324)] = 11198, + [SMALL_STATE(325)] = 11230, + [SMALL_STATE(326)] = 11262, + [SMALL_STATE(327)] = 11296, + [SMALL_STATE(328)] = 11330, + [SMALL_STATE(329)] = 11359, + [SMALL_STATE(330)] = 11380, + [SMALL_STATE(331)] = 11405, + [SMALL_STATE(332)] = 11430, + [SMALL_STATE(333)] = 11461, + [SMALL_STATE(334)] = 11490, + [SMALL_STATE(335)] = 11519, + [SMALL_STATE(336)] = 11548, + [SMALL_STATE(337)] = 11577, + [SMALL_STATE(338)] = 11606, + [SMALL_STATE(339)] = 11634, + [SMALL_STATE(340)] = 11654, + [SMALL_STATE(341)] = 11682, + [SMALL_STATE(342)] = 11710, + [SMALL_STATE(343)] = 11738, + [SMALL_STATE(344)] = 11766, + [SMALL_STATE(345)] = 11794, + [SMALL_STATE(346)] = 11822, + [SMALL_STATE(347)] = 11850, + [SMALL_STATE(348)] = 11878, + [SMALL_STATE(349)] = 11906, + [SMALL_STATE(350)] = 11934, + [SMALL_STATE(351)] = 11962, + [SMALL_STATE(352)] = 11990, + [SMALL_STATE(353)] = 12018, + [SMALL_STATE(354)] = 12046, + [SMALL_STATE(355)] = 12074, + [SMALL_STATE(356)] = 12102, + [SMALL_STATE(357)] = 12130, + [SMALL_STATE(358)] = 12158, + [SMALL_STATE(359)] = 12186, + [SMALL_STATE(360)] = 12214, + [SMALL_STATE(361)] = 12242, + [SMALL_STATE(362)] = 12270, + [SMALL_STATE(363)] = 12298, + [SMALL_STATE(364)] = 12326, + [SMALL_STATE(365)] = 12354, + [SMALL_STATE(366)] = 12382, + [SMALL_STATE(367)] = 12410, + [SMALL_STATE(368)] = 12438, + [SMALL_STATE(369)] = 12466, + [SMALL_STATE(370)] = 12494, + [SMALL_STATE(371)] = 12522, + [SMALL_STATE(372)] = 12550, + [SMALL_STATE(373)] = 12578, + [SMALL_STATE(374)] = 12606, + [SMALL_STATE(375)] = 12634, + [SMALL_STATE(376)] = 12662, + [SMALL_STATE(377)] = 12690, + [SMALL_STATE(378)] = 12718, + [SMALL_STATE(379)] = 12746, + [SMALL_STATE(380)] = 12774, + [SMALL_STATE(381)] = 12799, + [SMALL_STATE(382)] = 12822, + [SMALL_STATE(383)] = 12847, + [SMALL_STATE(384)] = 12870, + [SMALL_STATE(385)] = 12892, + [SMALL_STATE(386)] = 12914, + [SMALL_STATE(387)] = 12948, + [SMALL_STATE(388)] = 12970, + [SMALL_STATE(389)] = 12992, + [SMALL_STATE(390)] = 13014, + [SMALL_STATE(391)] = 13036, + [SMALL_STATE(392)] = 13069, + [SMALL_STATE(393)] = 13102, + [SMALL_STATE(394)] = 13119, + [SMALL_STATE(395)] = 13152, + [SMALL_STATE(396)] = 13171, + [SMALL_STATE(397)] = 13204, + [SMALL_STATE(398)] = 13237, + [SMALL_STATE(399)] = 13264, + [SMALL_STATE(400)] = 13297, + [SMALL_STATE(401)] = 13316, + [SMALL_STATE(402)] = 13333, + [SMALL_STATE(403)] = 13366, + [SMALL_STATE(404)] = 13399, + [SMALL_STATE(405)] = 13418, + [SMALL_STATE(406)] = 13435, + [SMALL_STATE(407)] = 13468, + [SMALL_STATE(408)] = 13489, + [SMALL_STATE(409)] = 13505, + [SMALL_STATE(410)] = 13521, + [SMALL_STATE(411)] = 13547, + [SMALL_STATE(412)] = 13561, + [SMALL_STATE(413)] = 13587, + [SMALL_STATE(414)] = 13600, + [SMALL_STATE(415)] = 13622, + [SMALL_STATE(416)] = 13645, + [SMALL_STATE(417)] = 13668, + [SMALL_STATE(418)] = 13689, + [SMALL_STATE(419)] = 13714, + [SMALL_STATE(420)] = 13737, + [SMALL_STATE(421)] = 13760, + [SMALL_STATE(422)] = 13783, + [SMALL_STATE(423)] = 13806, + [SMALL_STATE(424)] = 13831, + [SMALL_STATE(425)] = 13854, + [SMALL_STATE(426)] = 13877, + [SMALL_STATE(427)] = 13900, + [SMALL_STATE(428)] = 13923, + [SMALL_STATE(429)] = 13948, + [SMALL_STATE(430)] = 13971, + [SMALL_STATE(431)] = 13994, + [SMALL_STATE(432)] = 14017, + [SMALL_STATE(433)] = 14042, + [SMALL_STATE(434)] = 14063, + [SMALL_STATE(435)] = 14086, + [SMALL_STATE(436)] = 14109, + [SMALL_STATE(437)] = 14134, + [SMALL_STATE(438)] = 14157, + [SMALL_STATE(439)] = 14180, + [SMALL_STATE(440)] = 14205, + [SMALL_STATE(441)] = 14230, + [SMALL_STATE(442)] = 14253, + [SMALL_STATE(443)] = 14275, + [SMALL_STATE(444)] = 14297, + [SMALL_STATE(445)] = 14319, + [SMALL_STATE(446)] = 14341, + [SMALL_STATE(447)] = 14363, + [SMALL_STATE(448)] = 14385, + [SMALL_STATE(449)] = 14407, + [SMALL_STATE(450)] = 14429, + [SMALL_STATE(451)] = 14451, + [SMALL_STATE(452)] = 14473, + [SMALL_STATE(453)] = 14495, + [SMALL_STATE(454)] = 14517, + [SMALL_STATE(455)] = 14539, + [SMALL_STATE(456)] = 14561, + [SMALL_STATE(457)] = 14583, + [SMALL_STATE(458)] = 14603, + [SMALL_STATE(459)] = 14625, + [SMALL_STATE(460)] = 14647, + [SMALL_STATE(461)] = 14669, + [SMALL_STATE(462)] = 14689, + [SMALL_STATE(463)] = 14711, + [SMALL_STATE(464)] = 14733, + [SMALL_STATE(465)] = 14755, + [SMALL_STATE(466)] = 14764, + [SMALL_STATE(467)] = 14783, + [SMALL_STATE(468)] = 14802, + [SMALL_STATE(469)] = 14821, + [SMALL_STATE(470)] = 14840, + [SMALL_STATE(471)] = 14859, + [SMALL_STATE(472)] = 14878, + [SMALL_STATE(473)] = 14897, + [SMALL_STATE(474)] = 14916, + [SMALL_STATE(475)] = 14935, + [SMALL_STATE(476)] = 14954, + [SMALL_STATE(477)] = 14973, + [SMALL_STATE(478)] = 14992, + [SMALL_STATE(479)] = 15011, + [SMALL_STATE(480)] = 15030, + [SMALL_STATE(481)] = 15049, + [SMALL_STATE(482)] = 15068, + [SMALL_STATE(483)] = 15077, + [SMALL_STATE(484)] = 15086, + [SMALL_STATE(485)] = 15095, + [SMALL_STATE(486)] = 15114, + [SMALL_STATE(487)] = 15123, + [SMALL_STATE(488)] = 15132, + [SMALL_STATE(489)] = 15141, + [SMALL_STATE(490)] = 15150, + [SMALL_STATE(491)] = 15159, + [SMALL_STATE(492)] = 15168, + [SMALL_STATE(493)] = 15187, + [SMALL_STATE(494)] = 15206, + [SMALL_STATE(495)] = 15225, + [SMALL_STATE(496)] = 15234, + [SMALL_STATE(497)] = 15253, + [SMALL_STATE(498)] = 15272, + [SMALL_STATE(499)] = 15281, + [SMALL_STATE(500)] = 15300, + [SMALL_STATE(501)] = 15309, + [SMALL_STATE(502)] = 15328, + [SMALL_STATE(503)] = 15347, + [SMALL_STATE(504)] = 15366, + [SMALL_STATE(505)] = 15375, + [SMALL_STATE(506)] = 15384, + [SMALL_STATE(507)] = 15393, + [SMALL_STATE(508)] = 15412, + [SMALL_STATE(509)] = 15431, + [SMALL_STATE(510)] = 15450, + [SMALL_STATE(511)] = 15469, + [SMALL_STATE(512)] = 15488, + [SMALL_STATE(513)] = 15507, + [SMALL_STATE(514)] = 15526, + [SMALL_STATE(515)] = 15545, + [SMALL_STATE(516)] = 15564, + [SMALL_STATE(517)] = 15583, + [SMALL_STATE(518)] = 15602, + [SMALL_STATE(519)] = 15621, + [SMALL_STATE(520)] = 15640, + [SMALL_STATE(521)] = 15659, + [SMALL_STATE(522)] = 15678, + [SMALL_STATE(523)] = 15687, + [SMALL_STATE(524)] = 15706, + [SMALL_STATE(525)] = 15714, + [SMALL_STATE(526)] = 15722, + [SMALL_STATE(527)] = 15736, + [SMALL_STATE(528)] = 15744, + [SMALL_STATE(529)] = 15752, + [SMALL_STATE(530)] = 15760, + [SMALL_STATE(531)] = 15768, + [SMALL_STATE(532)] = 15776, + [SMALL_STATE(533)] = 15784, + [SMALL_STATE(534)] = 15798, + [SMALL_STATE(535)] = 15806, + [SMALL_STATE(536)] = 15820, + [SMALL_STATE(537)] = 15828, + [SMALL_STATE(538)] = 15836, + [SMALL_STATE(539)] = 15844, + [SMALL_STATE(540)] = 15852, + [SMALL_STATE(541)] = 15860, + [SMALL_STATE(542)] = 15872, + [SMALL_STATE(543)] = 15885, + [SMALL_STATE(544)] = 15898, + [SMALL_STATE(545)] = 15909, + [SMALL_STATE(546)] = 15918, + [SMALL_STATE(547)] = 15929, + [SMALL_STATE(548)] = 15940, + [SMALL_STATE(549)] = 15949, + [SMALL_STATE(550)] = 15958, + [SMALL_STATE(551)] = 15967, + [SMALL_STATE(552)] = 15976, + [SMALL_STATE(553)] = 15985, + [SMALL_STATE(554)] = 15994, + [SMALL_STATE(555)] = 16003, + [SMALL_STATE(556)] = 16012, + [SMALL_STATE(557)] = 16021, + [SMALL_STATE(558)] = 16030, + [SMALL_STATE(559)] = 16039, + [SMALL_STATE(560)] = 16050, + [SMALL_STATE(561)] = 16061, + [SMALL_STATE(562)] = 16072, + [SMALL_STATE(563)] = 16085, + [SMALL_STATE(564)] = 16098, + [SMALL_STATE(565)] = 16111, + [SMALL_STATE(566)] = 16124, + [SMALL_STATE(567)] = 16137, + [SMALL_STATE(568)] = 16150, + [SMALL_STATE(569)] = 16163, + [SMALL_STATE(570)] = 16176, + [SMALL_STATE(571)] = 16189, + [SMALL_STATE(572)] = 16202, + [SMALL_STATE(573)] = 16215, + [SMALL_STATE(574)] = 16228, + [SMALL_STATE(575)] = 16241, + [SMALL_STATE(576)] = 16254, + [SMALL_STATE(577)] = 16267, + [SMALL_STATE(578)] = 16280, + [SMALL_STATE(579)] = 16293, + [SMALL_STATE(580)] = 16306, + [SMALL_STATE(581)] = 16319, + [SMALL_STATE(582)] = 16332, + [SMALL_STATE(583)] = 16345, + [SMALL_STATE(584)] = 16358, + [SMALL_STATE(585)] = 16371, + [SMALL_STATE(586)] = 16384, + [SMALL_STATE(587)] = 16397, + [SMALL_STATE(588)] = 16410, + [SMALL_STATE(589)] = 16423, + [SMALL_STATE(590)] = 16436, + [SMALL_STATE(591)] = 16449, + [SMALL_STATE(592)] = 16462, + [SMALL_STATE(593)] = 16475, + [SMALL_STATE(594)] = 16488, + [SMALL_STATE(595)] = 16501, + [SMALL_STATE(596)] = 16514, + [SMALL_STATE(597)] = 16527, + [SMALL_STATE(598)] = 16540, + [SMALL_STATE(599)] = 16553, + [SMALL_STATE(600)] = 16566, + [SMALL_STATE(601)] = 16579, + [SMALL_STATE(602)] = 16592, + [SMALL_STATE(603)] = 16605, + [SMALL_STATE(604)] = 16618, + [SMALL_STATE(605)] = 16631, + [SMALL_STATE(606)] = 16644, + [SMALL_STATE(607)] = 16657, + [SMALL_STATE(608)] = 16670, + [SMALL_STATE(609)] = 16683, + [SMALL_STATE(610)] = 16696, + [SMALL_STATE(611)] = 16709, + [SMALL_STATE(612)] = 16722, + [SMALL_STATE(613)] = 16735, + [SMALL_STATE(614)] = 16748, + [SMALL_STATE(615)] = 16761, + [SMALL_STATE(616)] = 16774, + [SMALL_STATE(617)] = 16787, + [SMALL_STATE(618)] = 16800, + [SMALL_STATE(619)] = 16813, + [SMALL_STATE(620)] = 16826, + [SMALL_STATE(621)] = 16839, + [SMALL_STATE(622)] = 16852, + [SMALL_STATE(623)] = 16865, + [SMALL_STATE(624)] = 16878, + [SMALL_STATE(625)] = 16891, + [SMALL_STATE(626)] = 16904, + [SMALL_STATE(627)] = 16917, + [SMALL_STATE(628)] = 16930, + [SMALL_STATE(629)] = 16943, + [SMALL_STATE(630)] = 16956, + [SMALL_STATE(631)] = 16969, + [SMALL_STATE(632)] = 16982, + [SMALL_STATE(633)] = 16995, + [SMALL_STATE(634)] = 17008, + [SMALL_STATE(635)] = 17021, + [SMALL_STATE(636)] = 17034, + [SMALL_STATE(637)] = 17047, + [SMALL_STATE(638)] = 17060, + [SMALL_STATE(639)] = 17073, + [SMALL_STATE(640)] = 17086, + [SMALL_STATE(641)] = 17099, + [SMALL_STATE(642)] = 17112, + [SMALL_STATE(643)] = 17125, + [SMALL_STATE(644)] = 17138, + [SMALL_STATE(645)] = 17151, + [SMALL_STATE(646)] = 17164, + [SMALL_STATE(647)] = 17177, + [SMALL_STATE(648)] = 17190, + [SMALL_STATE(649)] = 17203, + [SMALL_STATE(650)] = 17216, + [SMALL_STATE(651)] = 17229, + [SMALL_STATE(652)] = 17242, + [SMALL_STATE(653)] = 17255, + [SMALL_STATE(654)] = 17268, + [SMALL_STATE(655)] = 17281, + [SMALL_STATE(656)] = 17294, + [SMALL_STATE(657)] = 17307, + [SMALL_STATE(658)] = 17320, + [SMALL_STATE(659)] = 17333, + [SMALL_STATE(660)] = 17346, + [SMALL_STATE(661)] = 17359, + [SMALL_STATE(662)] = 17372, + [SMALL_STATE(663)] = 17385, + [SMALL_STATE(664)] = 17398, + [SMALL_STATE(665)] = 17411, + [SMALL_STATE(666)] = 17424, + [SMALL_STATE(667)] = 17437, + [SMALL_STATE(668)] = 17450, + [SMALL_STATE(669)] = 17463, + [SMALL_STATE(670)] = 17476, + [SMALL_STATE(671)] = 17489, + [SMALL_STATE(672)] = 17502, + [SMALL_STATE(673)] = 17515, + [SMALL_STATE(674)] = 17528, + [SMALL_STATE(675)] = 17539, + [SMALL_STATE(676)] = 17552, + [SMALL_STATE(677)] = 17563, + [SMALL_STATE(678)] = 17576, + [SMALL_STATE(679)] = 17589, + [SMALL_STATE(680)] = 17602, + [SMALL_STATE(681)] = 17608, + [SMALL_STATE(682)] = 17618, + [SMALL_STATE(683)] = 17624, + [SMALL_STATE(684)] = 17630, + [SMALL_STATE(685)] = 17636, + [SMALL_STATE(686)] = 17642, + [SMALL_STATE(687)] = 17648, + [SMALL_STATE(688)] = 17654, + [SMALL_STATE(689)] = 17660, + [SMALL_STATE(690)] = 17666, + [SMALL_STATE(691)] = 17672, + [SMALL_STATE(692)] = 17678, + [SMALL_STATE(693)] = 17684, + [SMALL_STATE(694)] = 17690, + [SMALL_STATE(695)] = 17696, + [SMALL_STATE(696)] = 17702, + [SMALL_STATE(697)] = 17708, + [SMALL_STATE(698)] = 17714, + [SMALL_STATE(699)] = 17720, + [SMALL_STATE(700)] = 17726, + [SMALL_STATE(701)] = 17736, + [SMALL_STATE(702)] = 17742, + [SMALL_STATE(703)] = 17748, + [SMALL_STATE(704)] = 17758, + [SMALL_STATE(705)] = 17768, + [SMALL_STATE(706)] = 17774, + [SMALL_STATE(707)] = 17780, + [SMALL_STATE(708)] = 17788, + [SMALL_STATE(709)] = 17794, + [SMALL_STATE(710)] = 17804, + [SMALL_STATE(711)] = 17810, + [SMALL_STATE(712)] = 17816, + [SMALL_STATE(713)] = 17826, + [SMALL_STATE(714)] = 17836, + [SMALL_STATE(715)] = 17846, + [SMALL_STATE(716)] = 17856, + [SMALL_STATE(717)] = 17864, + [SMALL_STATE(718)] = 17874, + [SMALL_STATE(719)] = 17884, + [SMALL_STATE(720)] = 17890, + [SMALL_STATE(721)] = 17896, + [SMALL_STATE(722)] = 17906, + [SMALL_STATE(723)] = 17916, + [SMALL_STATE(724)] = 17926, + [SMALL_STATE(725)] = 17936, + [SMALL_STATE(726)] = 17942, + [SMALL_STATE(727)] = 17948, + [SMALL_STATE(728)] = 17954, + [SMALL_STATE(729)] = 17964, + [SMALL_STATE(730)] = 17970, + [SMALL_STATE(731)] = 17976, + [SMALL_STATE(732)] = 17982, + [SMALL_STATE(733)] = 17988, + [SMALL_STATE(734)] = 17998, + [SMALL_STATE(735)] = 18004, + [SMALL_STATE(736)] = 18014, + [SMALL_STATE(737)] = 18024, + [SMALL_STATE(738)] = 18030, + [SMALL_STATE(739)] = 18036, + [SMALL_STATE(740)] = 18042, + [SMALL_STATE(741)] = 18048, + [SMALL_STATE(742)] = 18054, + [SMALL_STATE(743)] = 18060, + [SMALL_STATE(744)] = 18066, + [SMALL_STATE(745)] = 18072, + [SMALL_STATE(746)] = 18078, + [SMALL_STATE(747)] = 18084, + [SMALL_STATE(748)] = 18090, + [SMALL_STATE(749)] = 18096, + [SMALL_STATE(750)] = 18102, + [SMALL_STATE(751)] = 18108, + [SMALL_STATE(752)] = 18114, + [SMALL_STATE(753)] = 18120, + [SMALL_STATE(754)] = 18126, + [SMALL_STATE(755)] = 18132, + [SMALL_STATE(756)] = 18138, + [SMALL_STATE(757)] = 18144, + [SMALL_STATE(758)] = 18150, + [SMALL_STATE(759)] = 18156, + [SMALL_STATE(760)] = 18162, + [SMALL_STATE(761)] = 18168, + [SMALL_STATE(762)] = 18174, + [SMALL_STATE(763)] = 18184, + [SMALL_STATE(764)] = 18194, + [SMALL_STATE(765)] = 18200, + [SMALL_STATE(766)] = 18208, + [SMALL_STATE(767)] = 18214, + [SMALL_STATE(768)] = 18224, + [SMALL_STATE(769)] = 18234, + [SMALL_STATE(770)] = 18240, + [SMALL_STATE(771)] = 18248, + [SMALL_STATE(772)] = 18254, + [SMALL_STATE(773)] = 18260, + [SMALL_STATE(774)] = 18268, + [SMALL_STATE(775)] = 18276, + [SMALL_STATE(776)] = 18282, + [SMALL_STATE(777)] = 18288, + [SMALL_STATE(778)] = 18296, + [SMALL_STATE(779)] = 18304, + [SMALL_STATE(780)] = 18312, + [SMALL_STATE(781)] = 18320, + [SMALL_STATE(782)] = 18328, + [SMALL_STATE(783)] = 18334, + [SMALL_STATE(784)] = 18340, + [SMALL_STATE(785)] = 18348, + [SMALL_STATE(786)] = 18356, + [SMALL_STATE(787)] = 18364, + [SMALL_STATE(788)] = 18374, + [SMALL_STATE(789)] = 18380, + [SMALL_STATE(790)] = 18387, + [SMALL_STATE(791)] = 18392, + [SMALL_STATE(792)] = 18397, + [SMALL_STATE(793)] = 18402, + [SMALL_STATE(794)] = 18407, + [SMALL_STATE(795)] = 18412, + [SMALL_STATE(796)] = 18417, + [SMALL_STATE(797)] = 18422, + [SMALL_STATE(798)] = 18427, + [SMALL_STATE(799)] = 18432, + [SMALL_STATE(800)] = 18437, + [SMALL_STATE(801)] = 18444, + [SMALL_STATE(802)] = 18449, + [SMALL_STATE(803)] = 18454, + [SMALL_STATE(804)] = 18459, + [SMALL_STATE(805)] = 18464, + [SMALL_STATE(806)] = 18469, + [SMALL_STATE(807)] = 18476, + [SMALL_STATE(808)] = 18483, + [SMALL_STATE(809)] = 18488, + [SMALL_STATE(810)] = 18493, + [SMALL_STATE(811)] = 18498, + [SMALL_STATE(812)] = 18503, + [SMALL_STATE(813)] = 18508, + [SMALL_STATE(814)] = 18515, + [SMALL_STATE(815)] = 18520, + [SMALL_STATE(816)] = 18525, + [SMALL_STATE(817)] = 18532, + [SMALL_STATE(818)] = 18537, + [SMALL_STATE(819)] = 18544, + [SMALL_STATE(820)] = 18549, + [SMALL_STATE(821)] = 18554, + [SMALL_STATE(822)] = 18559, + [SMALL_STATE(823)] = 18564, + [SMALL_STATE(824)] = 18571, + [SMALL_STATE(825)] = 18576, + [SMALL_STATE(826)] = 18581, + [SMALL_STATE(827)] = 18588, + [SMALL_STATE(828)] = 18593, + [SMALL_STATE(829)] = 18600, + [SMALL_STATE(830)] = 18605, + [SMALL_STATE(831)] = 18610, + [SMALL_STATE(832)] = 18615, + [SMALL_STATE(833)] = 18622, + [SMALL_STATE(834)] = 18627, + [SMALL_STATE(835)] = 18634, + [SMALL_STATE(836)] = 18641, + [SMALL_STATE(837)] = 18648, + [SMALL_STATE(838)] = 18653, + [SMALL_STATE(839)] = 18658, + [SMALL_STATE(840)] = 18665, + [SMALL_STATE(841)] = 18670, + [SMALL_STATE(842)] = 18677, + [SMALL_STATE(843)] = 18684, + [SMALL_STATE(844)] = 18689, + [SMALL_STATE(845)] = 18696, + [SMALL_STATE(846)] = 18703, + [SMALL_STATE(847)] = 18710, + [SMALL_STATE(848)] = 18717, + [SMALL_STATE(849)] = 18722, + [SMALL_STATE(850)] = 18729, + [SMALL_STATE(851)] = 18734, + [SMALL_STATE(852)] = 18739, + [SMALL_STATE(853)] = 18744, + [SMALL_STATE(854)] = 18749, + [SMALL_STATE(855)] = 18754, + [SMALL_STATE(856)] = 18759, + [SMALL_STATE(857)] = 18764, + [SMALL_STATE(858)] = 18769, + [SMALL_STATE(859)] = 18776, + [SMALL_STATE(860)] = 18783, + [SMALL_STATE(861)] = 18788, + [SMALL_STATE(862)] = 18793, + [SMALL_STATE(863)] = 18800, + [SMALL_STATE(864)] = 18807, + [SMALL_STATE(865)] = 18812, + [SMALL_STATE(866)] = 18819, + [SMALL_STATE(867)] = 18826, + [SMALL_STATE(868)] = 18833, + [SMALL_STATE(869)] = 18838, + [SMALL_STATE(870)] = 18843, + [SMALL_STATE(871)] = 18848, + [SMALL_STATE(872)] = 18853, + [SMALL_STATE(873)] = 18858, + [SMALL_STATE(874)] = 18865, + [SMALL_STATE(875)] = 18870, + [SMALL_STATE(876)] = 18875, + [SMALL_STATE(877)] = 18880, + [SMALL_STATE(878)] = 18887, + [SMALL_STATE(879)] = 18892, + [SMALL_STATE(880)] = 18897, + [SMALL_STATE(881)] = 18902, + [SMALL_STATE(882)] = 18909, + [SMALL_STATE(883)] = 18914, + [SMALL_STATE(884)] = 18921, + [SMALL_STATE(885)] = 18928, + [SMALL_STATE(886)] = 18935, + [SMALL_STATE(887)] = 18940, + [SMALL_STATE(888)] = 18947, + [SMALL_STATE(889)] = 18954, + [SMALL_STATE(890)] = 18959, + [SMALL_STATE(891)] = 18966, + [SMALL_STATE(892)] = 18973, + [SMALL_STATE(893)] = 18978, + [SMALL_STATE(894)] = 18983, + [SMALL_STATE(895)] = 18990, + [SMALL_STATE(896)] = 18995, + [SMALL_STATE(897)] = 19000, + [SMALL_STATE(898)] = 19007, + [SMALL_STATE(899)] = 19014, + [SMALL_STATE(900)] = 19021, + [SMALL_STATE(901)] = 19028, + [SMALL_STATE(902)] = 19033, + [SMALL_STATE(903)] = 19038, + [SMALL_STATE(904)] = 19045, + [SMALL_STATE(905)] = 19052, + [SMALL_STATE(906)] = 19059, + [SMALL_STATE(907)] = 19066, + [SMALL_STATE(908)] = 19073, + [SMALL_STATE(909)] = 19080, + [SMALL_STATE(910)] = 19085, + [SMALL_STATE(911)] = 19092, + [SMALL_STATE(912)] = 19099, + [SMALL_STATE(913)] = 19104, + [SMALL_STATE(914)] = 19109, + [SMALL_STATE(915)] = 19114, + [SMALL_STATE(916)] = 19121, + [SMALL_STATE(917)] = 19126, + [SMALL_STATE(918)] = 19131, + [SMALL_STATE(919)] = 19136, + [SMALL_STATE(920)] = 19141, + [SMALL_STATE(921)] = 19146, + [SMALL_STATE(922)] = 19151, + [SMALL_STATE(923)] = 19156, + [SMALL_STATE(924)] = 19161, + [SMALL_STATE(925)] = 19166, + [SMALL_STATE(926)] = 19173, + [SMALL_STATE(927)] = 19180, + [SMALL_STATE(928)] = 19185, + [SMALL_STATE(929)] = 19190, + [SMALL_STATE(930)] = 19195, + [SMALL_STATE(931)] = 19202, + [SMALL_STATE(932)] = 19209, + [SMALL_STATE(933)] = 19216, + [SMALL_STATE(934)] = 19223, + [SMALL_STATE(935)] = 19228, + [SMALL_STATE(936)] = 19233, + [SMALL_STATE(937)] = 19240, + [SMALL_STATE(938)] = 19247, + [SMALL_STATE(939)] = 19252, + [SMALL_STATE(940)] = 19257, + [SMALL_STATE(941)] = 19262, + [SMALL_STATE(942)] = 19267, + [SMALL_STATE(943)] = 19274, + [SMALL_STATE(944)] = 19281, + [SMALL_STATE(945)] = 19286, + [SMALL_STATE(946)] = 19291, + [SMALL_STATE(947)] = 19296, + [SMALL_STATE(948)] = 19303, + [SMALL_STATE(949)] = 19310, + [SMALL_STATE(950)] = 19317, + [SMALL_STATE(951)] = 19324, + [SMALL_STATE(952)] = 19329, + [SMALL_STATE(953)] = 19334, + [SMALL_STATE(954)] = 19341, + [SMALL_STATE(955)] = 19348, + [SMALL_STATE(956)] = 19353, + [SMALL_STATE(957)] = 19358, + [SMALL_STATE(958)] = 19363, + [SMALL_STATE(959)] = 19370, + [SMALL_STATE(960)] = 19377, + [SMALL_STATE(961)] = 19382, + [SMALL_STATE(962)] = 19387, + [SMALL_STATE(963)] = 19392, + [SMALL_STATE(964)] = 19399, + [SMALL_STATE(965)] = 19406, + [SMALL_STATE(966)] = 19413, + [SMALL_STATE(967)] = 19420, + [SMALL_STATE(968)] = 19425, + [SMALL_STATE(969)] = 19432, + [SMALL_STATE(970)] = 19439, + [SMALL_STATE(971)] = 19444, + [SMALL_STATE(972)] = 19449, + [SMALL_STATE(973)] = 19454, + [SMALL_STATE(974)] = 19461, + [SMALL_STATE(975)] = 19468, + [SMALL_STATE(976)] = 19473, + [SMALL_STATE(977)] = 19478, + [SMALL_STATE(978)] = 19483, + [SMALL_STATE(979)] = 19490, + [SMALL_STATE(980)] = 19497, + [SMALL_STATE(981)] = 19504, + [SMALL_STATE(982)] = 19511, + [SMALL_STATE(983)] = 19516, + [SMALL_STATE(984)] = 19523, + [SMALL_STATE(985)] = 19530, + [SMALL_STATE(986)] = 19537, + [SMALL_STATE(987)] = 19544, + [SMALL_STATE(988)] = 19551, + [SMALL_STATE(989)] = 19556, + [SMALL_STATE(990)] = 19561, + [SMALL_STATE(991)] = 19566, + [SMALL_STATE(992)] = 19573, + [SMALL_STATE(993)] = 19580, + [SMALL_STATE(994)] = 19587, + [SMALL_STATE(995)] = 19594, + [SMALL_STATE(996)] = 19599, + [SMALL_STATE(997)] = 19606, + [SMALL_STATE(998)] = 19613, + [SMALL_STATE(999)] = 19618, + [SMALL_STATE(1000)] = 19623, + [SMALL_STATE(1001)] = 19628, + [SMALL_STATE(1002)] = 19633, + [SMALL_STATE(1003)] = 19638, + [SMALL_STATE(1004)] = 19643, + [SMALL_STATE(1005)] = 19648, + [SMALL_STATE(1006)] = 19653, + [SMALL_STATE(1007)] = 19658, + [SMALL_STATE(1008)] = 19663, + [SMALL_STATE(1009)] = 19670, + [SMALL_STATE(1010)] = 19675, + [SMALL_STATE(1011)] = 19682, + [SMALL_STATE(1012)] = 19687, + [SMALL_STATE(1013)] = 19694, + [SMALL_STATE(1014)] = 19699, + [SMALL_STATE(1015)] = 19706, + [SMALL_STATE(1016)] = 19713, + [SMALL_STATE(1017)] = 19718, + [SMALL_STATE(1018)] = 19723, + [SMALL_STATE(1019)] = 19728, + [SMALL_STATE(1020)] = 19733, + [SMALL_STATE(1021)] = 19738, + [SMALL_STATE(1022)] = 19743, + [SMALL_STATE(1023)] = 19747, + [SMALL_STATE(1024)] = 19751, + [SMALL_STATE(1025)] = 19755, + [SMALL_STATE(1026)] = 19759, + [SMALL_STATE(1027)] = 19763, + [SMALL_STATE(1028)] = 19767, + [SMALL_STATE(1029)] = 19771, + [SMALL_STATE(1030)] = 19775, + [SMALL_STATE(1031)] = 19779, + [SMALL_STATE(1032)] = 19783, + [SMALL_STATE(1033)] = 19787, + [SMALL_STATE(1034)] = 19791, + [SMALL_STATE(1035)] = 19795, + [SMALL_STATE(1036)] = 19799, + [SMALL_STATE(1037)] = 19803, + [SMALL_STATE(1038)] = 19807, + [SMALL_STATE(1039)] = 19811, + [SMALL_STATE(1040)] = 19815, + [SMALL_STATE(1041)] = 19819, + [SMALL_STATE(1042)] = 19823, + [SMALL_STATE(1043)] = 19827, + [SMALL_STATE(1044)] = 19831, + [SMALL_STATE(1045)] = 19835, + [SMALL_STATE(1046)] = 19839, + [SMALL_STATE(1047)] = 19843, + [SMALL_STATE(1048)] = 19847, + [SMALL_STATE(1049)] = 19851, + [SMALL_STATE(1050)] = 19855, + [SMALL_STATE(1051)] = 19859, + [SMALL_STATE(1052)] = 19863, + [SMALL_STATE(1053)] = 19867, + [SMALL_STATE(1054)] = 19871, + [SMALL_STATE(1055)] = 19875, + [SMALL_STATE(1056)] = 19879, + [SMALL_STATE(1057)] = 19883, + [SMALL_STATE(1058)] = 19887, + [SMALL_STATE(1059)] = 19891, + [SMALL_STATE(1060)] = 19895, + [SMALL_STATE(1061)] = 19899, + [SMALL_STATE(1062)] = 19903, + [SMALL_STATE(1063)] = 19907, + [SMALL_STATE(1064)] = 19911, + [SMALL_STATE(1065)] = 19915, + [SMALL_STATE(1066)] = 19919, + [SMALL_STATE(1067)] = 19923, + [SMALL_STATE(1068)] = 19927, + [SMALL_STATE(1069)] = 19931, + [SMALL_STATE(1070)] = 19935, + [SMALL_STATE(1071)] = 19939, + [SMALL_STATE(1072)] = 19943, + [SMALL_STATE(1073)] = 19947, + [SMALL_STATE(1074)] = 19951, + [SMALL_STATE(1075)] = 19955, + [SMALL_STATE(1076)] = 19959, + [SMALL_STATE(1077)] = 19963, + [SMALL_STATE(1078)] = 19967, + [SMALL_STATE(1079)] = 19971, + [SMALL_STATE(1080)] = 19975, + [SMALL_STATE(1081)] = 19979, + [SMALL_STATE(1082)] = 19983, + [SMALL_STATE(1083)] = 19987, + [SMALL_STATE(1084)] = 19991, + [SMALL_STATE(1085)] = 19995, + [SMALL_STATE(1086)] = 19999, + [SMALL_STATE(1087)] = 20003, + [SMALL_STATE(1088)] = 20007, + [SMALL_STATE(1089)] = 20011, + [SMALL_STATE(1090)] = 20015, + [SMALL_STATE(1091)] = 20019, + [SMALL_STATE(1092)] = 20023, + [SMALL_STATE(1093)] = 20027, + [SMALL_STATE(1094)] = 20031, + [SMALL_STATE(1095)] = 20035, + [SMALL_STATE(1096)] = 20039, + [SMALL_STATE(1097)] = 20043, + [SMALL_STATE(1098)] = 20047, + [SMALL_STATE(1099)] = 20051, + [SMALL_STATE(1100)] = 20055, + [SMALL_STATE(1101)] = 20059, + [SMALL_STATE(1102)] = 20063, + [SMALL_STATE(1103)] = 20067, + [SMALL_STATE(1104)] = 20071, + [SMALL_STATE(1105)] = 20075, + [SMALL_STATE(1106)] = 20079, + [SMALL_STATE(1107)] = 20083, + [SMALL_STATE(1108)] = 20087, + [SMALL_STATE(1109)] = 20091, + [SMALL_STATE(1110)] = 20095, + [SMALL_STATE(1111)] = 20099, + [SMALL_STATE(1112)] = 20103, + [SMALL_STATE(1113)] = 20107, + [SMALL_STATE(1114)] = 20111, + [SMALL_STATE(1115)] = 20115, + [SMALL_STATE(1116)] = 20119, + [SMALL_STATE(1117)] = 20123, + [SMALL_STATE(1118)] = 20127, + [SMALL_STATE(1119)] = 20131, + [SMALL_STATE(1120)] = 20135, + [SMALL_STATE(1121)] = 20139, + [SMALL_STATE(1122)] = 20143, + [SMALL_STATE(1123)] = 20147, + [SMALL_STATE(1124)] = 20151, + [SMALL_STATE(1125)] = 20155, + [SMALL_STATE(1126)] = 20159, + [SMALL_STATE(1127)] = 20163, + [SMALL_STATE(1128)] = 20167, + [SMALL_STATE(1129)] = 20171, + [SMALL_STATE(1130)] = 20175, + [SMALL_STATE(1131)] = 20179, + [SMALL_STATE(1132)] = 20183, + [SMALL_STATE(1133)] = 20187, + [SMALL_STATE(1134)] = 20191, + [SMALL_STATE(1135)] = 20195, + [SMALL_STATE(1136)] = 20199, + [SMALL_STATE(1137)] = 20203, + [SMALL_STATE(1138)] = 20207, + [SMALL_STATE(1139)] = 20211, + [SMALL_STATE(1140)] = 20215, + [SMALL_STATE(1141)] = 20219, + [SMALL_STATE(1142)] = 20223, + [SMALL_STATE(1143)] = 20227, + [SMALL_STATE(1144)] = 20231, + [SMALL_STATE(1145)] = 20235, + [SMALL_STATE(1146)] = 20239, + [SMALL_STATE(1147)] = 20243, + [SMALL_STATE(1148)] = 20247, + [SMALL_STATE(1149)] = 20251, + [SMALL_STATE(1150)] = 20255, + [SMALL_STATE(1151)] = 20259, + [SMALL_STATE(1152)] = 20263, + [SMALL_STATE(1153)] = 20267, + [SMALL_STATE(1154)] = 20271, + [SMALL_STATE(1155)] = 20275, + [SMALL_STATE(1156)] = 20279, + [SMALL_STATE(1157)] = 20283, + [SMALL_STATE(1158)] = 20287, + [SMALL_STATE(1159)] = 20291, + [SMALL_STATE(1160)] = 20295, + [SMALL_STATE(1161)] = 20299, + [SMALL_STATE(1162)] = 20303, + [SMALL_STATE(1163)] = 20307, + [SMALL_STATE(1164)] = 20311, + [SMALL_STATE(1165)] = 20315, + [SMALL_STATE(1166)] = 20319, + [SMALL_STATE(1167)] = 20323, + [SMALL_STATE(1168)] = 20327, + [SMALL_STATE(1169)] = 20331, + [SMALL_STATE(1170)] = 20335, + [SMALL_STATE(1171)] = 20339, + [SMALL_STATE(1172)] = 20343, + [SMALL_STATE(1173)] = 20347, + [SMALL_STATE(1174)] = 20351, + [SMALL_STATE(1175)] = 20355, + [SMALL_STATE(1176)] = 20359, + [SMALL_STATE(1177)] = 20363, + [SMALL_STATE(1178)] = 20367, + [SMALL_STATE(1179)] = 20371, + [SMALL_STATE(1180)] = 20375, + [SMALL_STATE(1181)] = 20379, + [SMALL_STATE(1182)] = 20383, + [SMALL_STATE(1183)] = 20387, + [SMALL_STATE(1184)] = 20391, + [SMALL_STATE(1185)] = 20395, + [SMALL_STATE(1186)] = 20399, + [SMALL_STATE(1187)] = 20403, + [SMALL_STATE(1188)] = 20407, + [SMALL_STATE(1189)] = 20411, + [SMALL_STATE(1190)] = 20415, + [SMALL_STATE(1191)] = 20419, + [SMALL_STATE(1192)] = 20423, + [SMALL_STATE(1193)] = 20427, + [SMALL_STATE(1194)] = 20431, + [SMALL_STATE(1195)] = 20435, + [SMALL_STATE(1196)] = 20439, + [SMALL_STATE(1197)] = 20443, + [SMALL_STATE(1198)] = 20447, + [SMALL_STATE(1199)] = 20451, + [SMALL_STATE(1200)] = 20455, + [SMALL_STATE(1201)] = 20459, + [SMALL_STATE(1202)] = 20463, + [SMALL_STATE(1203)] = 20467, + [SMALL_STATE(1204)] = 20471, + [SMALL_STATE(1205)] = 20475, + [SMALL_STATE(1206)] = 20479, + [SMALL_STATE(1207)] = 20483, + [SMALL_STATE(1208)] = 20487, + [SMALL_STATE(1209)] = 20491, + [SMALL_STATE(1210)] = 20495, + [SMALL_STATE(1211)] = 20499, + [SMALL_STATE(1212)] = 20503, + [SMALL_STATE(1213)] = 20507, + [SMALL_STATE(1214)] = 20511, + [SMALL_STATE(1215)] = 20515, + [SMALL_STATE(1216)] = 20519, + [SMALL_STATE(1217)] = 20523, + [SMALL_STATE(1218)] = 20527, + [SMALL_STATE(1219)] = 20531, + [SMALL_STATE(1220)] = 20535, + [SMALL_STATE(1221)] = 20539, + [SMALL_STATE(1222)] = 20543, + [SMALL_STATE(1223)] = 20547, + [SMALL_STATE(1224)] = 20551, + [SMALL_STATE(1225)] = 20555, + [SMALL_STATE(1226)] = 20559, + [SMALL_STATE(1227)] = 20563, + [SMALL_STATE(1228)] = 20567, + [SMALL_STATE(1229)] = 20571, + [SMALL_STATE(1230)] = 20575, + [SMALL_STATE(1231)] = 20579, + [SMALL_STATE(1232)] = 20583, + [SMALL_STATE(1233)] = 20587, + [SMALL_STATE(1234)] = 20591, + [SMALL_STATE(1235)] = 20595, + [SMALL_STATE(1236)] = 20599, + [SMALL_STATE(1237)] = 20603, + [SMALL_STATE(1238)] = 20607, + [SMALL_STATE(1239)] = 20611, + [SMALL_STATE(1240)] = 20615, + [SMALL_STATE(1241)] = 20619, + [SMALL_STATE(1242)] = 20623, + [SMALL_STATE(1243)] = 20627, + [SMALL_STATE(1244)] = 20631, + [SMALL_STATE(1245)] = 20635, + [SMALL_STATE(1246)] = 20639, + [SMALL_STATE(1247)] = 20643, + [SMALL_STATE(1248)] = 20647, + [SMALL_STATE(1249)] = 20651, + [SMALL_STATE(1250)] = 20655, + [SMALL_STATE(1251)] = 20659, + [SMALL_STATE(1252)] = 20663, + [SMALL_STATE(1253)] = 20667, + [SMALL_STATE(1254)] = 20671, + [SMALL_STATE(1255)] = 20675, + [SMALL_STATE(1256)] = 20679, + [SMALL_STATE(1257)] = 20683, + [SMALL_STATE(1258)] = 20687, + [SMALL_STATE(1259)] = 20691, + [SMALL_STATE(1260)] = 20695, + [SMALL_STATE(1261)] = 20699, + [SMALL_STATE(1262)] = 20703, + [SMALL_STATE(1263)] = 20707, + [SMALL_STATE(1264)] = 20711, + [SMALL_STATE(1265)] = 20715, + [SMALL_STATE(1266)] = 20719, + [SMALL_STATE(1267)] = 20723, + [SMALL_STATE(1268)] = 20727, + [SMALL_STATE(1269)] = 20731, + [SMALL_STATE(1270)] = 20735, + [SMALL_STATE(1271)] = 20739, + [SMALL_STATE(1272)] = 20743, + [SMALL_STATE(1273)] = 20747, + [SMALL_STATE(1274)] = 20751, + [SMALL_STATE(1275)] = 20755, + [SMALL_STATE(1276)] = 20759, + [SMALL_STATE(1277)] = 20763, + [SMALL_STATE(1278)] = 20767, + [SMALL_STATE(1279)] = 20771, + [SMALL_STATE(1280)] = 20775, + [SMALL_STATE(1281)] = 20779, + [SMALL_STATE(1282)] = 20783, + [SMALL_STATE(1283)] = 20787, + [SMALL_STATE(1284)] = 20791, + [SMALL_STATE(1285)] = 20795, + [SMALL_STATE(1286)] = 20799, + [SMALL_STATE(1287)] = 20803, + [SMALL_STATE(1288)] = 20807, + [SMALL_STATE(1289)] = 20811, + [SMALL_STATE(1290)] = 20815, + [SMALL_STATE(1291)] = 20819, + [SMALL_STATE(1292)] = 20823, + [SMALL_STATE(1293)] = 20827, + [SMALL_STATE(1294)] = 20831, + [SMALL_STATE(1295)] = 20835, + [SMALL_STATE(1296)] = 20839, + [SMALL_STATE(1297)] = 20843, + [SMALL_STATE(1298)] = 20847, + [SMALL_STATE(1299)] = 20851, + [SMALL_STATE(1300)] = 20855, + [SMALL_STATE(1301)] = 20859, + [SMALL_STATE(1302)] = 20863, + [SMALL_STATE(1303)] = 20867, + [SMALL_STATE(1304)] = 20871, + [SMALL_STATE(1305)] = 20875, + [SMALL_STATE(1306)] = 20879, + [SMALL_STATE(1307)] = 20883, + [SMALL_STATE(1308)] = 20887, + [SMALL_STATE(1309)] = 20891, + [SMALL_STATE(1310)] = 20895, + [SMALL_STATE(1311)] = 20899, + [SMALL_STATE(1312)] = 20903, + [SMALL_STATE(1313)] = 20907, + [SMALL_STATE(1314)] = 20911, + [SMALL_STATE(1315)] = 20915, + [SMALL_STATE(1316)] = 20919, + [SMALL_STATE(1317)] = 20923, + [SMALL_STATE(1318)] = 20927, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 0, 0, 0), - [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [71] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 2, 0, 0), - [73] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 1, 0, 0), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [71] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 1, 0, 0), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), [91] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), - [93] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(317), - [96] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(301), - [99] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(743), - [102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(275), - [105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(358), - [108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(132), - [111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(328), - [114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(877), - [117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(936), - [120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(51), + [93] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(328), + [96] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(325), + [99] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(800), + [102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(282), + [105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(381), + [108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(275), + [111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(338), + [114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(910), + [117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(1045), + [120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(34), [123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(39), [126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(44), - [129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(633), - [132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(290), + [129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(716), + [132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(302), [135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(45), - [138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(46), + [138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(47), [141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(48), [144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(49), [147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(50), - [150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(30), + [150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(33), [153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(35), [156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(36), [159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(37), [162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(38), - [165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(29), + [165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(32), [168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(40), [171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(41), [174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(42), [177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(43), - [180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(57), - [183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(324), - [186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(133), - [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(315), - [194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(307), - [197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(278), - [200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(154), - [203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(1086), - [206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(62), - [209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(161), - [212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), - [224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), - [226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), - [228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(315), - [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(307), - [248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(743), - [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(278), - [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(358), + [180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(68), + [183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(339), + [186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(141), + [189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 2, 0, 0), + [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(335), + [194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(319), + [197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(284), + [200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(159), + [203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(1257), + [206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(65), + [209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(165), + [212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(335), + [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(319), + [248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(800), + [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(284), + [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(381), [257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), - [259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(266), - [262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(328), - [265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(877), - [268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(1086), - [271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(51), + [259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(260), + [262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(338), + [265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(910), + [268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(1257), + [271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(34), [274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(39), [277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(44), - [280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(633), - [283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(290), + [280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(716), + [283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(302), [286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(45), - [289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(46), + [289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(47), [292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(48), [295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(49), [298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(50), - [301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(30), + [301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(33), [304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(35), [307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(36), [310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(37), [313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(38), - [316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(29), + [316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(32), [319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(40), [322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(41), [325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(42), [328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(43), - [331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(62), - [334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(59), - [337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(161), + [331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(65), + [334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(62), + [337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(165), [340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_footnote_content, 1, 0, 0), - [342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(316), - [345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(309), - [348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(279), - [351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(159), - [354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(349), - [357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(1093), - [360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(55), - [363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(56), - [366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(222), - [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 1, 0, 1), - [441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 1, 0, 1), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), - [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 1, 0, 0), - [469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 1, 0, 0), SHIFT_REPEAT(324), - [472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 1, 0, 0), - [474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), - [476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 1, 0, 0), - [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), - [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), - [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), - [498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(351), - [501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), - [503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(871), - [506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(355), - [509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(326), - [512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_content, 1, 0, 0), - [514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__table_content, 1, 0, 0), SHIFT(1058), - [517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_content, 1, 0, 0), - [519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__table_content, 1, 0, 0), SHIFT(871), - [522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__table_content, 1, 0, 0), SHIFT(1037), - [525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__table_content, 1, 0, 0), SHIFT(1052), - [528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 2, 0, 0), - [530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 2, 0, 0), - [532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 4, 0, 0), - [534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 4, 0, 0), - [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 4, 0, 22), - [540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 4, 0, 22), - [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 5, 0, 24), - [546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 5, 0, 24), - [548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 5, 0, 25), - [552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 5, 0, 25), - [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 5, 0, 26), - [558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 5, 0, 26), - [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_separator, 5, 0, 0), - [564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_separator, 5, 0, 0), - [566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_row, 5, 0, 0), - [568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_row, 5, 0, 0), - [570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 5, 0, 22), - [572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 5, 0, 22), - [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 6, 0, 29), - [578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 6, 0, 29), - [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 6, 0, 30), - [584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 6, 0, 30), - [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_separator, 6, 0, 0), - [590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_separator, 6, 0, 0), - [592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_row, 6, 0, 0), - [594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_row, 6, 0, 0), - [596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_or_two_newlines, 1, 0, 0), - [598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_or_two_newlines, 1, 0, 0), - [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(337), + [345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(323), + [348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(283), + [351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(164), + [354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(370), + [357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(1271), + [360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(69), + [363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(60), + [366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(227), + [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 1, 0, 1), + [445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 1, 0, 1), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 1, 0, 0), + [495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 1, 0, 0), SHIFT_REPEAT(339), + [498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 1, 0, 0), + [500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 1, 0, 0), + [502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), + [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), + [524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), + [526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(341), + [529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(912), + [532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(368), + [535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(375), + [538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_content, 1, 0, 0), + [540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__table_content, 1, 0, 0), SHIFT(1216), + [543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_content, 1, 0, 0), + [545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__table_content, 1, 0, 0), SHIFT(912), + [548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__table_content, 1, 0, 0), SHIFT(1200), + [551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__table_content, 1, 0, 0), SHIFT(1171), + [554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 2, 0, 0), + [556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 2, 0, 0), + [558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_separator, 6, 0, 0), + [560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_separator, 6, 0, 0), + [562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 6, 0, 29), + [564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 6, 0, 29), + [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 6, 0, 30), + [570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 6, 0, 30), + [572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_row, 6, 0, 0), + [576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_row, 6, 0, 0), + [578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_or_two_newlines, 1, 0, 0), + [580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_or_two_newlines, 1, 0, 0), + [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heading, 3, 0, 4), + [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heading, 3, 0, 4), + [590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 4, 0, 15), + [592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 4, 0, 15), + [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 4, 0, 0), + [598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 4, 0, 0), + [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), [602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_content, 2, 0, 8), [604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_content, 2, 0, 8), - [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 3, 0, 15), - [610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 3, 0, 15), - [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_separator, 4, 0, 0), - [618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_separator, 4, 0, 0), - [620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_row, 4, 0, 0), - [622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_row, 4, 0, 0), - [624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 4, 0, 15), - [626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 4, 0, 15), - [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heading, 3, 0, 4), - [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heading, 3, 0, 4), - [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 1, 0, 0), - [680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 1, 0, 0), - [682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_thematic_break, 1, 0, 0), - [684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_thematic_break, 1, 0, 0), - [686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 2, 0, 7), - [688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 2, 0, 7), - [690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_caption, 3, 0, 23), - [692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_caption, 3, 0, 23), - [694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 1, 0, 0), - [696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 1, 0, 0), - [698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 5, 0, 15), - [700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 5, 0, 15), - [702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frontmatter, 6, 0, 28), - [704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_frontmatter, 6, 0, 28), - [706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 6, 0, 0), - [708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 6, 0, 0), - [710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph, 2, 0, 9), - [712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__paragraph, 2, 0, 9), - [714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_footnote, 6, 0, 31), - [716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_footnote, 6, 0, 31), - [718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 6, 0, 15), - [720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 6, 0, 15), - [722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 6, 0, 22), - [724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 6, 0, 22), - [726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frontmatter, 7, 0, 32), - [728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_frontmatter, 7, 0, 32), - [730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 7, 0, 24), - [732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 7, 0, 24), - [734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 7, 0, 25), - [736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 7, 0, 25), - [738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 7, 0, 33), - [740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 7, 0, 33), - [742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 7, 0, 22), - [744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 7, 0, 22), - [746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 8, 0, 29), - [748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 8, 0, 29), - [750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 8, 0, 34), - [752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 8, 0, 34), - [754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_dash, 2, 0, 0), - [756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_dash, 2, 0, 0), - [758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 8, 0, 35), - [760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 8, 0, 35), - [762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_or_two_newlines, 2, 0, 0), - [764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_or_two_newlines, 2, 0, 0), - [766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_plus, 2, 0, 0), - [768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_plus, 2, 0, 0), - [770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_with_heading, 2, 0, 0), - [772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_with_heading, 2, 0, 0), - [774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 3, 0, 14), - [776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 3, 0, 14), - [778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 1, 0, 0), - [780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 1, 0, 0), - [782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_star, 2, 0, 0), - [784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_star, 2, 0, 0), - [786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_task, 2, 0, 0), - [788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_task, 2, 0, 0), - [790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_definition, 2, 0, 0), - [792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_definition, 2, 0, 0), - [794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_decimal_period, 2, 0, 0), - [796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_decimal_period, 2, 0, 0), - [798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_decimal_paren, 2, 0, 0), - [800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_decimal_paren, 2, 0, 0), - [802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_decimal_parens, 2, 0, 0), - [804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_decimal_parens, 2, 0, 0), - [806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_alpha_period, 2, 0, 0), - [808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_alpha_period, 2, 0, 0), - [810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_alpha_paren, 2, 0, 0), - [812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_alpha_paren, 2, 0, 0), - [814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_alpha_parens, 2, 0, 0), - [816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_alpha_parens, 2, 0, 0), - [818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_alpha_period, 2, 0, 0), - [820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_alpha_period, 2, 0, 0), - [822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_alpha_paren, 2, 0, 0), - [824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_alpha_paren, 2, 0, 0), - [826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_alpha_parens, 2, 0, 0), - [828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_alpha_parens, 2, 0, 0), - [830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_roman_period, 2, 0, 0), - [832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_roman_period, 2, 0, 0), - [834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_roman_paren, 2, 0, 0), - [836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_roman_paren, 2, 0, 0), - [838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_roman_parens, 2, 0, 0), - [840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_roman_parens, 2, 0, 0), - [842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_roman_period, 2, 0, 0), - [844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_roman_period, 2, 0, 0), - [846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_roman_paren, 2, 0, 0), - [848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_roman_paren, 2, 0, 0), - [850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_roman_parens, 2, 0, 0), - [852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_roman_parens, 2, 0, 0), - [854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_quote, 3, 0, 12), - [856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_quote, 3, 0, 12), - [858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_attribute, 3, 0, 0), - [860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_attribute, 3, 0, 0), - [862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 3, 0, 0), - [864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 3, 0, 0), - [866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heading, 4, 0, 4), - [868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heading, 4, 0, 4), - [870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_attribute, 4, 0, 21), - [872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_attribute, 4, 0, 21), - [874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), - [876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), - [878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(274), - [881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_task, 3, 0, 11), - [883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_task, 3, 0, 11), - [885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), - [887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), - [889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), SHIFT(789), - [892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), SHIFT(462), - [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), SHIFT(507), - [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), - [902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), - [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), - [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), - [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), - [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), - [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), - [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), - [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), - [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), - [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), - [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), - [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(314), - [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), - [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), SHIFT(372), - [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), - [976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), SHIFT(796), - [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), - [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), - [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), - [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), - [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), - [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), - [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), - [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), - [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), - [1001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 2, 0, 0), SHIFT_REPEAT(362), - [1004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 2, 0, 0), - [1006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 2, 0, 0), SHIFT_REPEAT(884), - [1009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_caption_repeat1, 2, 0, 0), - [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), - [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [1015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_quote_prefix, 1, 0, 0), - [1017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_quote_prefix, 1, 0, 0), - [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [1021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), SHIFT(367), - [1024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), SHIFT(774), - [1027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(324), - [1030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), - [1032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), - [1034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [1036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [1038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [1040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [1042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [1044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [1046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [1048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [1050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [1054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [1056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [1058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [1062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [1064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [1066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline, 1, 0, 0), - [1068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(360), - [1071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(741), - [1074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), - [1076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [1078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(363), - [1081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(884), - [1084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(366), - [1087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), - [1089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(774), - [1092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), - [1094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline, 1, 0, 0), - [1096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), - [1098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [1100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [1104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(384), - [1107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_line, 2, 0, 0), - [1109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_line, 2, 0, 0), - [1111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(371), - [1114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(796), - [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), - [1119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 2, -1000, 0), - [1121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 2, -1000, 0), - [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [1133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 1, 0, 0), - [1135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_caption_repeat1, 1, 0, 0), - [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [1139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(343), - [1142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [1144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [1146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [1148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [1150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [1152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [1154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), - [1156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(789), - [1159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(462), - [1162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(432), - [1165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(507), - [1168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(999), - [1171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(347), - [1174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__table_content, 1, 0, 0), SHIFT(993), - [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [1207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 2, 0, 0), - [1209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 2, 0, 0), SHIFT_REPEAT(633), - [1212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 2, 0, 0), SHIFT_REPEAT(834), - [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [1219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__table_content, 1, 0, 0), SHIFT(1015), - [1222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [1224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [1226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [1228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [1232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [1234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code, 1, 0, 0), - [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), - [1238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), SHIFT_REPEAT(44), - [1241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), SHIFT_REPEAT(780), - [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [1264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_repeat1, 2, 0, 0), SHIFT_REPEAT(992), - [1267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_code_repeat1, 2, 0, 0), - [1269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_repeat1, 2, 0, 0), SHIFT_REPEAT(845), - [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 2, 0, 0), - [1288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 2, 0, 0), SHIFT_REPEAT(51), - [1291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 2, 0, 0), SHIFT_REPEAT(779), - [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), - [1296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), SHIFT_REPEAT(39), - [1299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), SHIFT_REPEAT(828), - [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [1304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 1, 0, 0), - [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [1356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(53), - [1359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 2, 0, 0), - [1361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(837), - [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [1368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_name, 1, 0, 0), - [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1, 0, 0), - [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, 0, 13), - [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value, 3, 0, 20), - [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_no_newline, 3, 0, 19), - [1384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_no_newline, 2, 0, 0), - [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1, 0, 0), - [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 1, 0, 6), - [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [1400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [1402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [1404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 3, 0, 0), - [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [1408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [1416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 2, 0, 0), - [1418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(274), - [1421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_quote_content, 1, 0, 0), - [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [1425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_quote_content, 2, 0, 0), - [1427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), - [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), - [1443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frontmatter_content, 1, 0, 0), - [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [1447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_no_newline_repeat1, 2, 0, 0), - [1449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__comment_no_newline_repeat1, 2, 0, 0), SHIFT_REPEAT(629), - [1452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_frontmatter_content_repeat1, 2, 0, 0), SHIFT_REPEAT(1012), - [1455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_frontmatter_content_repeat1, 2, 0, 0), - [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [1495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_definition_repeat1, 2, 0, 0), - [1497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(290), - [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_period_repeat1, 2, 0, 0), - [1504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_decimal_period_repeat1, 2, 0, 0), SHIFT_REPEAT(45), - [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [1541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_paren_repeat1, 2, 0, 0), - [1543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_decimal_paren_repeat1, 2, 0, 0), SHIFT_REPEAT(30), - [1546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [1548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_parens_repeat1, 2, 0, 0), - [1550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_decimal_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(29), - [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [1555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_period_repeat1, 2, 0, 0), - [1557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_period_repeat1, 2, 0, 0), SHIFT_REPEAT(46), - [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [1562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_paren_repeat1, 2, 0, 0), - [1564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_paren_repeat1, 2, 0, 0), SHIFT_REPEAT(35), - [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [1569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_parens_repeat1, 2, 0, 0), - [1571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(40), - [1574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [1576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_period_repeat1, 2, 0, 0), - [1578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_period_repeat1, 2, 0, 0), SHIFT_REPEAT(48), - [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [1645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_paren_repeat1, 2, 0, 0), - [1647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_paren_repeat1, 2, 0, 0), SHIFT_REPEAT(36), - [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [1652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_parens_repeat1, 2, 0, 0), - [1654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(41), - [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [1661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_period_repeat1, 2, 0, 0), - [1663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_period_repeat1, 2, 0, 0), SHIFT_REPEAT(49), - [1666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [1668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_paren_repeat1, 2, 0, 0), - [1670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_paren_repeat1, 2, 0, 0), SHIFT_REPEAT(37), - [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [1679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_parens_repeat1, 2, 0, 0), - [1681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(42), - [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [1686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [1690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_period_repeat1, 2, 0, 0), - [1692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_period_repeat1, 2, 0, 0), SHIFT_REPEAT(50), - [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [1701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_paren_repeat1, 2, 0, 0), - [1703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_paren_repeat1, 2, 0, 0), SHIFT_REPEAT(38), - [1706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [1712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_parens_repeat1, 2, 0, 0), - [1714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(43), - [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [1733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dash, 2, 0, 4), - [1735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_item_content, 2, 0, 0), - [1737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 2, 0, 4), - [1739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 2, 0, 4), - [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [1745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_no_newline_repeat1, 1, 0, 0), - [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [1753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(779), - [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 1, 0, 2), - [1760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 1, 0, 2), - [1762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dash, 3, 0, 16), - [1764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 3, 0, 16), - [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 3, 0, 16), - [1768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_task, 3, 0, 16), - [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__paragraph_inline_content_repeat1, 2, 0, 0), - [1776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__paragraph_inline_content_repeat1, 2, 0, 0), SHIFT_REPEAT(318), - [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [1783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__heading_content_repeat1, 2, 0, 0), - [1785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__heading_content_repeat1, 2, 0, 0), SHIFT_REPEAT(361), - [1788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_item_content, 3, 0, 0), - [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [1794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(780), - [1797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_task, 2, 0, 4), - [1799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 3, 0, 0), - [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [1803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(828), - [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [1808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(834), - [1811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(837), - [1814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(845), - [1817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line, 2, 0, 0), - [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [1823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 1, 0, 2), - [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [1827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 1, 0, 2), - [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [1833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heading_content, 2, 0, 0), - [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [1839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(871), - [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heading_content, 1, 0, 0), - [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [1850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_decimal_period, 2, 0, 4), - [1852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_alpha_period, 2, 0, 4), - [1856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_alpha_period, 2, 0, 4), - [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_roman_period, 2, 0, 4), - [1860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_definition_repeat1, 1, 0, 3), - [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_roman_period, 2, 0, 4), - [1864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_decimal_paren, 2, 0, 4), - [1866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [1868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_alpha_paren, 2, 0, 4), - [1870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1, 0, 0), SHIFT(373), - [1873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_alpha_paren, 2, 0, 4), - [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [1877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_roman_paren, 2, 0, 4), - [1879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_roman_paren, 2, 0, 4), - [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [1893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_inline_content, 3, 0, 0), - [1895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_decimal_parens, 2, 0, 4), - [1897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_alpha_parens, 2, 0, 4), - [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_alpha_parens, 2, 0, 4), - [1901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_roman_parens, 2, 0, 4), - [1903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_roman_parens, 2, 0, 4), - [1905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_parens_repeat1, 1, 0, 2), - [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [1921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_definition, 4, 0, 18), - [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_period_repeat1, 1, 0, 2), - [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [1929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_separator_repeat1, 2, 0, 0), SHIFT_REPEAT(1081), - [1932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_paren_repeat1, 1, 0, 2), - [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_parens_repeat1, 1, 0, 2), - [1936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(359), - [1939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_period_repeat1, 1, 0, 2), - [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [1943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_period_repeat1, 1, 0, 2), - [1945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_paren_repeat1, 1, 0, 2), - [1947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_parens_repeat1, 1, 0, 2), - [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [1951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_period_repeat1, 1, 0, 2), - [1953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_paren_repeat1, 1, 0, 2), - [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [1961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_inline_content, 4, 0, 0), - [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [1965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__paragraph_inline_content_repeat1, 3, 0, 0), - [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [1971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_parens_repeat1, 1, 0, 2), - [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [1975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_period_repeat1, 1, 0, 2), - [1977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_paren_repeat1, 1, 0, 2), - [1979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_definition, 5, 0, 27), - [1981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_parens_repeat1, 1, 0, 2), - [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [1989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_inline_content, 2, 0, 0), - [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [1997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_paren_repeat1, 1, 0, 2), - [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [2019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__div_marker_begin, 1, 0, 0), - [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [2061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_content, 1, 0, 0), - [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [2077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_cell, 1, 0, 5), - [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [2123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_checked, 3, 0, 0), - [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [2143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__div_marker_begin, 3, 0, 10), - [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [2149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unchecked, 3, 0, 0), - [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [2155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_label, 1, 0, 0), - [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [2163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_separator_repeat1, 2, 0, 0), - [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [2171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_row_repeat1, 2, 0, 0), - [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [2189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key, 1, 0, 0), - [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [2321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block_info, 2, 0, 17), - [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [2327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_label, 1, 0, 5), - [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [2361] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 5, 0, 24), + [608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 5, 0, 24), + [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 4, 0, 22), + [614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 4, 0, 22), + [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 3, 0, 15), + [622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 3, 0, 15), + [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_separator, 4, 0, 0), + [630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_separator, 4, 0, 0), + [632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_row, 4, 0, 0), + [634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_row, 4, 0, 0), + [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 5, 0, 25), + [644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 5, 0, 25), + [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 5, 0, 26), + [650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 5, 0, 26), + [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_separator, 5, 0, 0), + [656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_separator, 5, 0, 0), + [658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_row, 5, 0, 0), + [660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_row, 5, 0, 0), + [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 5, 0, 22), + [678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 5, 0, 22), + [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_definition, 2, 0, 0), + [706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_definition, 2, 0, 0), + [708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 1, 0, 0), + [710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 1, 0, 0), + [712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_thematic_break, 1, 0, 0), + [714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_thematic_break, 1, 0, 0), + [716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 5, 0, 15), + [718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 5, 0, 15), + [720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph, 2, 0, 9), + [722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__paragraph, 2, 0, 9), + [724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frontmatter, 6, 0, 28), + [726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_frontmatter, 6, 0, 28), + [728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 6, 0, 0), + [730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 6, 0, 0), + [732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 6, 0, 15), + [734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 6, 0, 15), + [736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 6, 0, 22), + [738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 6, 0, 22), + [740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_dash, 2, 0, 0), + [742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_dash, 2, 0, 0), + [744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frontmatter, 7, 0, 32), + [746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_frontmatter, 7, 0, 32), + [748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 7, 0, 24), + [750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 7, 0, 24), + [752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 7, 0, 25), + [754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 7, 0, 25), + [756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 7, 0, 33), + [758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 7, 0, 33), + [760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 7, 0, 22), + [762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 7, 0, 22), + [764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 8, 0, 29), + [766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 8, 0, 29), + [768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 8, 0, 34), + [770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 8, 0, 34), + [772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_plus, 2, 0, 0), + [774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_plus, 2, 0, 0), + [776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 8, 0, 35), + [778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 8, 0, 35), + [780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_or_two_newlines, 2, 0, 0), + [782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_or_two_newlines, 2, 0, 0), + [784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 1, 0, 0), + [786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 1, 0, 0), + [788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 2, 0, 7), + [790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 2, 0, 7), + [792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_star, 2, 0, 0), + [794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_star, 2, 0, 0), + [796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_with_heading, 2, 0, 0), + [798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_with_heading, 2, 0, 0), + [800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 3, 0, 14), + [802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 3, 0, 14), + [804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 1, 0, 0), + [806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 1, 0, 0), + [808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_task, 2, 0, 0), + [810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_task, 2, 0, 0), + [812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_decimal_period, 2, 0, 0), + [814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_decimal_period, 2, 0, 0), + [816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_decimal_paren, 2, 0, 0), + [818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_decimal_paren, 2, 0, 0), + [820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_decimal_parens, 2, 0, 0), + [822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_decimal_parens, 2, 0, 0), + [824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_alpha_period, 2, 0, 0), + [826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_alpha_period, 2, 0, 0), + [828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_alpha_paren, 2, 0, 0), + [830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_alpha_paren, 2, 0, 0), + [832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_alpha_parens, 2, 0, 0), + [834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_alpha_parens, 2, 0, 0), + [836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_alpha_period, 2, 0, 0), + [838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_alpha_period, 2, 0, 0), + [840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_alpha_paren, 2, 0, 0), + [842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_alpha_paren, 2, 0, 0), + [844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_alpha_parens, 2, 0, 0), + [846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_alpha_parens, 2, 0, 0), + [848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_roman_period, 2, 0, 0), + [850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_roman_period, 2, 0, 0), + [852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_roman_paren, 2, 0, 0), + [854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_roman_paren, 2, 0, 0), + [856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_roman_parens, 2, 0, 0), + [858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_roman_parens, 2, 0, 0), + [860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_roman_period, 2, 0, 0), + [862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_roman_period, 2, 0, 0), + [864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_roman_paren, 2, 0, 0), + [866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_roman_paren, 2, 0, 0), + [868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_roman_parens, 2, 0, 0), + [870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_roman_parens, 2, 0, 0), + [872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_quote, 3, 0, 12), + [874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_quote, 3, 0, 12), + [876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_attribute, 3, 0, 0), + [878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_attribute, 3, 0, 0), + [880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 3, 0, 0), + [882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 3, 0, 0), + [884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_attribute, 4, 0, 21), + [886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_attribute, 4, 0, 21), + [888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_caption, 3, 0, 23), + [890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_caption, 3, 0, 23), + [892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_footnote, 6, 0, 31), + [894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_footnote, 6, 0, 31), + [896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heading, 4, 0, 4), + [898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heading, 4, 0, 4), + [900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), + [902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), + [904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(281), + [907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_task, 3, 0, 11), + [909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_task, 3, 0, 11), + [911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), + [913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), + [915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), SHIFT(842), + [918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), SHIFT(484), + [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), SHIFT(560), + [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), + [928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), + [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), + [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), + [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), + [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), + [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), + [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), + [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), + [986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), SHIFT(407), + [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), + [991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), SHIFT(861), + [994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_quote_prefix, 1, 0, 0), + [996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_quote_prefix, 1, 0, 0), + [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), + [1002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), + [1004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [1008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 2, 0, 0), SHIFT_REPEAT(384), + [1011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 2, 0, 0), + [1013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 2, 0, 0), SHIFT_REPEAT(916), + [1016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_caption_repeat1, 2, 0, 0), + [1018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(329), + [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), + [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), + [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), + [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), + [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), + [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), + [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), + [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), + [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), + [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), + [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), + [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), + [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), + [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), + [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [1063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), SHIFT(385), + [1066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), SHIFT(838), + [1069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(339), + [1072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [1074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), + [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [1078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [1080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [1082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [1084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [1086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [1090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [1094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [1096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [1098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [1100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [1104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [1106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [1108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [1110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [1112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), + [1114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline, 1, 0, 0), + [1116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(383), + [1119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(812), + [1122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), + [1124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), + [1126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), + [1128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline, 1, 0, 0), + [1130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), + [1132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [1134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [1136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [1138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(388), + [1141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), + [1143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(838), + [1146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(389), + [1149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(916), + [1152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [1154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [1156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [1158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [1160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [1162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [1164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [1168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 2, -1000, 0), + [1170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 2, -1000, 0), + [1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [1176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [1178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(372), + [1181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), + [1183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(842), + [1186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(484), + [1189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(491), + [1192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(560), + [1195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(1130), + [1198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(409), + [1201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_line, 2, 0, 0), + [1203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_line, 2, 0, 0), + [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [1209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(404), + [1212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(861), + [1215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 1, 0, 0), + [1217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_caption_repeat1, 1, 0, 0), + [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), + [1227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(364), + [1230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(360), + [1233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__table_content, 1, 0, 0), SHIFT(1194), + [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [1238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [1240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [1242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [1244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__table_content, 1, 0, 0), SHIFT(1125), + [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [1279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__table_content, 1, 0, 0), SHIFT(1148), + [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [1292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 2, 0, 0), + [1294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 2, 0, 0), SHIFT_REPEAT(716), + [1297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 2, 0, 0), SHIFT_REPEAT(902), + [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [1328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), + [1330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), SHIFT_REPEAT(44), + [1333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), SHIFT_REPEAT(851), + [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code, 1, 0, 0), + [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), + [1352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), SHIFT_REPEAT(39), + [1355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), SHIFT_REPEAT(840), + [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [1360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_repeat1, 2, 0, 0), SHIFT_REPEAT(1282), + [1363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_code_repeat1, 2, 0, 0), + [1365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_repeat1, 2, 0, 0), SHIFT_REPEAT(967), + [1368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 2, 0, 0), + [1370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 2, 0, 0), SHIFT_REPEAT(34), + [1373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 2, 0, 0), SHIFT_REPEAT(808), + [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [1400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [1402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [1408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [1416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 3, 0, 0), + [1418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_no_newline, 3, 0, 19), + [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1, 0, 0), + [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1, 0, 0), + [1426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value, 3, 0, 20), + [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_name, 1, 0, 0), + [1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 1, 0, 0), + [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [1438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 1, 0, 6), + [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [1442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [1444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_item_content_repeat1, 2, 0, 0), SHIFT_REPEAT(56), + [1447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_item_content_repeat1, 2, 0, 0), + [1449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_item_content_repeat1, 2, 0, 0), SHIFT_REPEAT(982), + [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_no_newline, 2, 0, 0), + [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [1480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(58), + [1483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 2, 0, 0), + [1485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(982), + [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [1498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, 0, 13), + [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 2, 0, 0), + [1504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(281), + [1507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_quote_content, 1, 0, 0), + [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [1511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_quote_content, 2, 0, 0), + [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), + [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), + [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), + [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [1529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frontmatter_content, 1, 0, 0), + [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [1553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_no_newline_repeat1, 2, 0, 0), + [1555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__comment_no_newline_repeat1, 2, 0, 0), SHIFT_REPEAT(769), + [1558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), + [1560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_frontmatter_content_repeat1, 2, 0, 0), SHIFT_REPEAT(1196), + [1563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_frontmatter_content_repeat1, 2, 0, 0), + [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [1599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_definition_repeat1, 2, 0, 0), + [1601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(302), + [1604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [1606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_period_repeat1, 2, 0, 0), + [1608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_decimal_period_repeat1, 2, 0, 0), SHIFT_REPEAT(45), + [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [1613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_paren_repeat1, 2, 0, 0), + [1615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_decimal_paren_repeat1, 2, 0, 0), SHIFT_REPEAT(33), + [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [1620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_parens_repeat1, 2, 0, 0), + [1622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_decimal_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(32), + [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [1627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_period_repeat1, 2, 0, 0), + [1629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_period_repeat1, 2, 0, 0), SHIFT_REPEAT(47), + [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [1634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [1648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_paren_repeat1, 2, 0, 0), + [1666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_paren_repeat1, 2, 0, 0), SHIFT_REPEAT(35), + [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [1671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_parens_repeat1, 2, 0, 0), + [1673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(40), + [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [1678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_period_repeat1, 2, 0, 0), + [1680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_period_repeat1, 2, 0, 0), SHIFT_REPEAT(48), + [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [1685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_paren_repeat1, 2, 0, 0), + [1687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_paren_repeat1, 2, 0, 0), SHIFT_REPEAT(36), + [1690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [1692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [1696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [1700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [1702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [1706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [1724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_parens_repeat1, 2, 0, 0), + [1726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(41), + [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [1731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_period_repeat1, 2, 0, 0), + [1733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_period_repeat1, 2, 0, 0), SHIFT_REPEAT(49), + [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [1766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_paren_repeat1, 2, 0, 0), + [1772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_paren_repeat1, 2, 0, 0), SHIFT_REPEAT(37), + [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [1777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_parens_repeat1, 2, 0, 0), + [1779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(42), + [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [1784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_period_repeat1, 2, 0, 0), + [1786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_period_repeat1, 2, 0, 0), SHIFT_REPEAT(50), + [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [1791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_paren_repeat1, 2, 0, 0), + [1793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_paren_repeat1, 2, 0, 0), SHIFT_REPEAT(38), + [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [1828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_parens_repeat1, 2, 0, 0), + [1830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(43), + [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [1855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(808), + [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 2, 0, 4), + [1860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dash, 3, 0, 16), + [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 3, 0, 16), + [1864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 3, 0, 16), + [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_task, 3, 0, 16), + [1868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [1872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__paragraph_inline_content_repeat1, 2, 0, 0), + [1874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__paragraph_inline_content_repeat1, 2, 0, 0), SHIFT_REPEAT(332), + [1877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 2, 0, 4), + [1879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_task, 2, 0, 4), + [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [1885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(840), + [1888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_item_content, 4, 0, 0), + [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [1896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(902), + [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_item_content_repeat1, 3, 0, 0), + [1901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 3, 0, 0), + [1903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(967), + [1906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(982), + [1909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_item_content, 3, 0, 0), + [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 1, 0, 2), + [1913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__heading_content_repeat1, 2, 0, 0), + [1915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__heading_content_repeat1, 2, 0, 0), SHIFT_REPEAT(380), + [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 1, 0, 2), + [1920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [1924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_item_content_repeat1, 4, 0, 0), + [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line, 2, 0, 0), + [1928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 1, 0, 2), + [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 1, 0, 2), + [1932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(851), + [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [1937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heading_content, 1, 0, 0), + [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [1941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(912), + [1944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_no_newline_repeat1, 1, 0, 0), + [1946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [1948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [1952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dash, 2, 0, 4), + [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [1958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [1966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heading_content, 2, 0, 0), + [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_decimal_paren, 2, 0, 4), + [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [1978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1, 0, 0), SHIFT(393), + [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [1983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_alpha_paren, 2, 0, 4), + [1985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_alpha_paren, 2, 0, 4), + [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_definition, 4, 0, 18), + [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [1993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_inline_content, 3, 0, 0), + [1995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_roman_paren, 2, 0, 4), + [1997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_parens_repeat1, 1, 0, 2), + [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [2005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_definition_repeat1, 1, 0, 3), + [2007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_roman_paren, 2, 0, 4), + [2009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_decimal_parens, 2, 0, 4), + [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [2013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_alpha_parens, 2, 0, 4), + [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_alpha_parens, 2, 0, 4), + [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_roman_parens, 2, 0, 4), + [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [2027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_roman_parens, 2, 0, 4), + [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [2031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_separator_repeat1, 2, 0, 0), SHIFT_REPEAT(1039), + [2034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_paren_repeat1, 1, 0, 2), + [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [2042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_period_repeat1, 1, 0, 2), + [2044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(382), + [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [2057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_paren_repeat1, 1, 0, 2), + [2059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_period_repeat1, 1, 0, 2), + [2061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_parens_repeat1, 1, 0, 2), + [2063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_period_repeat1, 1, 0, 2), + [2065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_paren_repeat1, 1, 0, 2), + [2067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_parens_repeat1, 1, 0, 2), + [2069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_period_repeat1, 1, 0, 2), + [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [2075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_inline_content, 4, 0, 0), + [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [2083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__paragraph_inline_content_repeat1, 3, 0, 0), + [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [2091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_paren_repeat1, 1, 0, 2), + [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [2097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_parens_repeat1, 1, 0, 2), + [2099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_period_repeat1, 1, 0, 2), + [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [2103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_paren_repeat1, 1, 0, 2), + [2105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_decimal_period, 2, 0, 4), + [2107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_parens_repeat1, 1, 0, 2), + [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [2111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_definition, 5, 0, 27), + [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [2129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_alpha_period, 2, 0, 4), + [2131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_inline_content, 2, 0, 0), + [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [2137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_content, 1, 0, 0), + [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [2161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__div_marker_begin, 1, 0, 0), + [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_roman_period, 2, 0, 4), + [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [2235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_roman_period, 2, 0, 4), + [2237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_alpha_period, 2, 0, 4), + [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [2283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_row_repeat1, 2, 0, 0), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [2397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key, 1, 0, 0), + [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [2439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_cell, 1, 0, 5), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [2517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_label, 1, 0, 0), + [2519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_checked, 3, 0, 0), + [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [2537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unchecked, 3, 0, 0), + [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [2625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__div_marker_begin, 3, 0, 10), + [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [2637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block_info, 2, 0, 17), + [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [2671] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [2689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_label, 1, 0, 5), + [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [2733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_separator_repeat1, 2, 0, 0), }; enum ts_external_scanner_symbol_identifiers { @@ -31343,17 +34174,18 @@ enum ts_external_scanner_symbol_identifiers { ts_external_token_list_marker_upper_roman_parens = 31, ts_external_token__list_item_continuation = 32, ts_external_token__list_item_end = 33, - ts_external_token__close_paragraph = 34, - ts_external_token__block_quote_begin = 35, - ts_external_token__block_quote_continuation = 36, - ts_external_token__thematic_break_dash = 37, - ts_external_token__thematic_break_star = 38, - ts_external_token__footnote_mark_begin = 39, - ts_external_token__footnote_end = 40, - ts_external_token__table_caption_begin = 41, - ts_external_token__table_caption_end = 42, - ts_external_token__in_fallback = 43, - ts_external_token__error = 44, + ts_external_token__list_item_content_spacer = 34, + ts_external_token__close_paragraph = 35, + ts_external_token__block_quote_begin = 36, + ts_external_token__block_quote_continuation = 37, + ts_external_token__thematic_break_dash = 38, + ts_external_token__thematic_break_star = 39, + ts_external_token__footnote_mark_begin = 40, + ts_external_token__footnote_end = 41, + ts_external_token__table_caption_begin = 42, + ts_external_token__table_caption_end = 43, + ts_external_token__in_fallback = 44, + ts_external_token__error = 45, }; static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { @@ -31391,6 +34223,7 @@ static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { [ts_external_token_list_marker_upper_roman_parens] = sym_list_marker_upper_roman_parens, [ts_external_token__list_item_continuation] = sym__list_item_continuation, [ts_external_token__list_item_end] = sym__list_item_end, + [ts_external_token__list_item_content_spacer] = sym__list_item_content_spacer, [ts_external_token__close_paragraph] = sym__close_paragraph, [ts_external_token__block_quote_begin] = sym__block_quote_begin, [ts_external_token__block_quote_continuation] = sym__block_quote_continuation, @@ -31404,7 +34237,7 @@ static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { [ts_external_token__error] = sym__error, }; -static const bool ts_external_scanner_states[78][EXTERNAL_TOKEN_COUNT] = { +static const bool ts_external_scanner_states[84][EXTERNAL_TOKEN_COUNT] = { [1] = { [ts_external_token__ignored] = true, [ts_external_token__block_close] = true, @@ -31440,6 +34273,7 @@ static const bool ts_external_scanner_states[78][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_list_marker_upper_roman_parens] = true, [ts_external_token__list_item_continuation] = true, [ts_external_token__list_item_end] = true, + [ts_external_token__list_item_content_spacer] = true, [ts_external_token__close_paragraph] = true, [ts_external_token__block_quote_begin] = true, [ts_external_token__block_quote_continuation] = true, @@ -31634,7 +34468,6 @@ static const bool ts_external_scanner_states[78][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__thematic_break_star] = true, }, [8] = { - [ts_external_token__block_close] = true, [ts_external_token__newline] = true, [ts_external_token__heading_begin] = true, [ts_external_token__div_begin] = true, @@ -31666,6 +34499,7 @@ static const bool ts_external_scanner_states[78][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__table_caption_begin] = true, }, [9] = { + [ts_external_token__block_close] = true, [ts_external_token__newline] = true, [ts_external_token__heading_begin] = true, [ts_external_token__div_begin] = true, @@ -31694,7 +34528,6 @@ static const bool ts_external_scanner_states[78][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__block_quote_continuation] = true, [ts_external_token__thematic_break_dash] = true, [ts_external_token__thematic_break_star] = true, - [ts_external_token__footnote_end] = true, [ts_external_token__table_caption_begin] = true, }, [10] = { @@ -31726,9 +34559,11 @@ static const bool ts_external_scanner_states[78][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__block_quote_continuation] = true, [ts_external_token__thematic_break_dash] = true, [ts_external_token__thematic_break_star] = true, + [ts_external_token__footnote_end] = true, [ts_external_token__table_caption_begin] = true, }, [11] = { + [ts_external_token__block_close] = true, [ts_external_token__newline] = true, [ts_external_token__heading_begin] = true, [ts_external_token__div_begin] = true, @@ -31758,14 +34593,13 @@ static const bool ts_external_scanner_states[78][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__block_quote_continuation] = true, [ts_external_token__thematic_break_dash] = true, [ts_external_token__thematic_break_star] = true, - [ts_external_token__footnote_end] = true, }, [12] = { [ts_external_token__block_close] = true, + [ts_external_token__eof_or_newline] = true, [ts_external_token__newline] = true, [ts_external_token__heading_begin] = true, [ts_external_token__div_begin] = true, - [ts_external_token__div_end] = true, [ts_external_token__code_block_begin] = true, [ts_external_token_list_marker_dash] = true, [ts_external_token_list_marker_star] = true, @@ -31793,12 +34627,11 @@ static const bool ts_external_scanner_states[78][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__thematic_break_star] = true, }, [13] = { - [ts_external_token__block_close] = true, + [ts_external_token__eof_or_newline] = true, [ts_external_token__newline] = true, [ts_external_token__heading_begin] = true, [ts_external_token__div_begin] = true, [ts_external_token__code_block_begin] = true, - [ts_external_token__code_block_end] = true, [ts_external_token_list_marker_dash] = true, [ts_external_token_list_marker_star] = true, [ts_external_token_list_marker_plus] = true, @@ -31823,13 +34656,14 @@ static const bool ts_external_scanner_states[78][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__block_quote_continuation] = true, [ts_external_token__thematic_break_dash] = true, [ts_external_token__thematic_break_star] = true, + [ts_external_token__footnote_end] = true, }, [14] = { [ts_external_token__block_close] = true, - [ts_external_token__eof_or_newline] = true, [ts_external_token__newline] = true, [ts_external_token__heading_begin] = true, [ts_external_token__div_begin] = true, + [ts_external_token__div_end] = true, [ts_external_token__code_block_begin] = true, [ts_external_token_list_marker_dash] = true, [ts_external_token_list_marker_star] = true, @@ -31857,11 +34691,11 @@ static const bool ts_external_scanner_states[78][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__thematic_break_star] = true, }, [15] = { - [ts_external_token__eof_or_newline] = true, [ts_external_token__newline] = true, [ts_external_token__heading_begin] = true, [ts_external_token__div_begin] = true, [ts_external_token__code_block_begin] = true, + [ts_external_token__code_block_end] = true, [ts_external_token_list_marker_dash] = true, [ts_external_token_list_marker_star] = true, [ts_external_token_list_marker_plus] = true, @@ -31949,12 +34783,13 @@ static const bool ts_external_scanner_states[78][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__block_quote_continuation] = true, [ts_external_token__thematic_break_dash] = true, [ts_external_token__thematic_break_star] = true, + [ts_external_token__footnote_end] = true, }, [18] = { - [ts_external_token__eof_or_newline] = true, [ts_external_token__newline] = true, [ts_external_token__heading_begin] = true, [ts_external_token__div_begin] = true, + [ts_external_token__div_end] = true, [ts_external_token__code_block_begin] = true, [ts_external_token_list_marker_dash] = true, [ts_external_token_list_marker_star] = true, @@ -31980,13 +34815,12 @@ static const bool ts_external_scanner_states[78][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__block_quote_continuation] = true, [ts_external_token__thematic_break_dash] = true, [ts_external_token__thematic_break_star] = true, - [ts_external_token__footnote_end] = true, }, [19] = { + [ts_external_token__eof_or_newline] = true, [ts_external_token__newline] = true, [ts_external_token__heading_begin] = true, [ts_external_token__div_begin] = true, - [ts_external_token__div_end] = true, [ts_external_token__code_block_begin] = true, [ts_external_token_list_marker_dash] = true, [ts_external_token_list_marker_star] = true, @@ -32025,18 +34859,15 @@ static const bool ts_external_scanner_states[78][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__list_marker_task_begin] = true, }, [22] = { - [ts_external_token__block_quote_continuation] = true, - }, - [23] = { [ts_external_token_list_marker_dash] = true, [ts_external_token_list_marker_star] = true, [ts_external_token_list_marker_plus] = true, [ts_external_token__list_marker_task_begin] = true, }, - [24] = { - [ts_external_token__table_caption_end] = true, + [23] = { + [ts_external_token__block_quote_continuation] = true, }, - [25] = { + [24] = { [ts_external_token__block_close] = true, [ts_external_token_list_marker_dash] = true, [ts_external_token_list_marker_star] = true, @@ -32044,6 +34875,9 @@ static const bool ts_external_scanner_states[78][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__list_marker_task_begin] = true, [ts_external_token__block_quote_continuation] = true, }, + [25] = { + [ts_external_token__table_caption_end] = true, + }, [26] = { [ts_external_token_list_marker_dash] = true, [ts_external_token_list_marker_star] = true, @@ -32071,9 +34905,10 @@ static const bool ts_external_scanner_states[78][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__table_caption_begin] = true, }, [31] = { - [ts_external_token__block_close] = true, - [ts_external_token__list_marker_task_begin] = true, + [ts_external_token__newline] = true, + [ts_external_token__list_item_content_spacer] = true, [ts_external_token__block_quote_continuation] = true, + [ts_external_token__table_caption_begin] = true, }, [32] = { [ts_external_token__block_close] = true, @@ -32081,12 +34916,12 @@ static const bool ts_external_scanner_states[78][EXTERNAL_TOKEN_COUNT] = { }, [33] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_plus] = true, + [ts_external_token__list_marker_task_begin] = true, [ts_external_token__block_quote_continuation] = true, }, [34] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_dash] = true, + [ts_external_token_list_marker_plus] = true, [ts_external_token__block_quote_continuation] = true, }, [35] = { @@ -32095,138 +34930,137 @@ static const bool ts_external_scanner_states[78][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__block_quote_continuation] = true, }, [36] = { - [ts_external_token__list_item_continuation] = true, - [ts_external_token__list_item_end] = true, + [ts_external_token__block_close] = true, + [ts_external_token_list_marker_dash] = true, [ts_external_token__block_quote_continuation] = true, }, [37] = { [ts_external_token__list_item_continuation] = true, [ts_external_token__list_item_end] = true, [ts_external_token__block_quote_continuation] = true, - [ts_external_token__table_caption_begin] = true, }, [38] = { - [ts_external_token_frontmatter_marker] = true, + [ts_external_token__list_item_continuation] = true, + [ts_external_token__list_item_end] = true, + [ts_external_token__block_quote_continuation] = true, + [ts_external_token__table_caption_begin] = true, }, [39] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_definition] = true, + [ts_external_token_list_marker_decimal_paren] = true, }, [40] = { - [ts_external_token__block_close] = true, - [ts_external_token_list_marker_decimal_period] = true, + [ts_external_token__eof_or_newline] = true, + [ts_external_token__list_item_continuation] = true, + [ts_external_token__list_item_end] = true, + [ts_external_token__block_quote_continuation] = true, }, [41] = { - [ts_external_token__block_close] = true, - [ts_external_token_list_marker_decimal_paren] = true, + [ts_external_token_frontmatter_marker] = true, }, [42] = { - [ts_external_token__block_close] = true, - [ts_external_token_list_marker_decimal_parens] = true, + [ts_external_token__div_end] = true, + [ts_external_token__list_item_continuation] = true, + [ts_external_token__list_item_end] = true, + [ts_external_token__block_quote_continuation] = true, }, [43] = { - [ts_external_token__block_close] = true, - [ts_external_token_list_marker_lower_alpha_period] = true, + [ts_external_token__code_block_end] = true, + [ts_external_token__list_item_continuation] = true, + [ts_external_token__list_item_end] = true, + [ts_external_token__block_quote_continuation] = true, }, [44] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_lower_alpha_paren] = true, + [ts_external_token_list_marker_definition] = true, }, [45] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_lower_alpha_parens] = true, + [ts_external_token_list_marker_decimal_period] = true, }, [46] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_upper_alpha_period] = true, + [ts_external_token_list_marker_decimal_parens] = true, }, [47] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_upper_alpha_paren] = true, + [ts_external_token_list_marker_lower_alpha_period] = true, }, [48] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_upper_alpha_parens] = true, + [ts_external_token_list_marker_lower_alpha_paren] = true, }, [49] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_lower_roman_period] = true, + [ts_external_token_list_marker_lower_alpha_parens] = true, }, [50] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_lower_roman_paren] = true, + [ts_external_token_list_marker_upper_alpha_period] = true, }, [51] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_lower_roman_parens] = true, + [ts_external_token_list_marker_upper_alpha_paren] = true, }, [52] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_upper_roman_period] = true, + [ts_external_token_list_marker_upper_alpha_parens] = true, }, [53] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_upper_roman_paren] = true, + [ts_external_token_list_marker_lower_roman_period] = true, }, [54] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_upper_roman_parens] = true, + [ts_external_token_list_marker_lower_roman_paren] = true, }, [55] = { [ts_external_token__block_close] = true, - [ts_external_token__block_quote_continuation] = true, - [ts_external_token__table_caption_begin] = true, + [ts_external_token_list_marker_lower_roman_parens] = true, }, [56] = { - [ts_external_token__eof_or_newline] = true, - [ts_external_token__list_item_continuation] = true, - [ts_external_token__list_item_end] = true, - [ts_external_token__block_quote_continuation] = true, + [ts_external_token__block_close] = true, + [ts_external_token_list_marker_upper_roman_period] = true, }, [57] = { - [ts_external_token__div_end] = true, - [ts_external_token__list_item_continuation] = true, - [ts_external_token__list_item_end] = true, - [ts_external_token__block_quote_continuation] = true, + [ts_external_token__block_close] = true, + [ts_external_token_list_marker_upper_roman_paren] = true, }, [58] = { - [ts_external_token__code_block_end] = true, - [ts_external_token__list_item_continuation] = true, - [ts_external_token__list_item_end] = true, - [ts_external_token__block_quote_continuation] = true, + [ts_external_token__block_close] = true, + [ts_external_token_list_marker_upper_roman_parens] = true, }, [59] = { [ts_external_token__block_close] = true, - [ts_external_token__div_end] = true, [ts_external_token__block_quote_continuation] = true, + [ts_external_token__table_caption_begin] = true, }, [60] = { [ts_external_token_list_marker_dash] = true, [ts_external_token__block_quote_continuation] = true, }, [61] = { - [ts_external_token__block_close] = true, - [ts_external_token__code_block_end] = true, + [ts_external_token_list_marker_star] = true, [ts_external_token__block_quote_continuation] = true, }, [62] = { - [ts_external_token__block_close] = true, - [ts_external_token__heading_continuation] = true, + [ts_external_token__list_item_content_spacer] = true, + [ts_external_token__table_caption_begin] = true, }, [63] = { - [ts_external_token_list_marker_plus] = true, + [ts_external_token__list_marker_task_begin] = true, [ts_external_token__block_quote_continuation] = true, }, [64] = { - [ts_external_token_list_marker_star] = true, + [ts_external_token__list_item_continuation] = true, [ts_external_token__block_quote_continuation] = true, }, [65] = { - [ts_external_token__list_marker_task_begin] = true, - [ts_external_token__block_quote_continuation] = true, + [ts_external_token__block_close] = true, + [ts_external_token__heading_continuation] = true, }, [66] = { - [ts_external_token__list_item_continuation] = true, + [ts_external_token_list_marker_plus] = true, [ts_external_token__block_quote_continuation] = true, }, [67] = { @@ -32235,37 +35069,62 @@ static const bool ts_external_scanner_states[78][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__block_quote_continuation] = true, }, [68] = { - [ts_external_token__footnote_mark_begin] = true, - [ts_external_token__in_fallback] = true, + [ts_external_token__block_close] = true, + [ts_external_token__div_end] = true, + [ts_external_token__block_quote_continuation] = true, }, [69] = { - [ts_external_token__list_marker_task_begin] = true, + [ts_external_token__block_close] = true, + [ts_external_token__code_block_end] = true, + [ts_external_token__block_quote_continuation] = true, }, [70] = { [ts_external_token__eof_or_newline] = true, - [ts_external_token__close_paragraph] = true, + [ts_external_token__list_item_content_spacer] = true, }, [71] = { - [ts_external_token__block_close] = true, + [ts_external_token__eof_or_newline] = true, + [ts_external_token__close_paragraph] = true, }, [72] = { - [ts_external_token__footnote_end] = true, + [ts_external_token__footnote_mark_begin] = true, + [ts_external_token__in_fallback] = true, }, [73] = { - [ts_external_token__list_item_continuation] = true, + [ts_external_token__list_marker_task_begin] = true, }, [74] = { - [ts_external_token_list_marker_star] = true, + [ts_external_token__div_end] = true, + [ts_external_token__list_item_content_spacer] = true, }, [75] = { - [ts_external_token_list_marker_dash] = true, + [ts_external_token__code_block_end] = true, + [ts_external_token__list_item_content_spacer] = true, }, [76] = { - [ts_external_token_list_marker_plus] = true, + [ts_external_token__list_item_content_spacer] = true, }, [77] = { + [ts_external_token__footnote_end] = true, + }, + [78] = { [ts_external_token__footnote_mark_begin] = true, }, + [79] = { + [ts_external_token__block_close] = true, + }, + [80] = { + [ts_external_token__list_item_continuation] = true, + }, + [81] = { + [ts_external_token_list_marker_star] = true, + }, + [82] = { + [ts_external_token_list_marker_dash] = true, + }, + [83] = { + [ts_external_token_list_marker_plus] = true, + }, }; #ifdef __cplusplus diff --git a/tree-sitter-djot/src/scanner.c b/tree-sitter-djot/src/scanner.c index 0493561..f5ad7d6 100644 --- a/tree-sitter-djot/src/scanner.c +++ b/tree-sitter-djot/src/scanner.c @@ -49,6 +49,7 @@ typedef enum { LIST_MARKER_UPPER_ROMAN_PARENS, LIST_ITEM_CONTINUATION, LIST_ITEM_END, + LIST_ITEM_CONTENT_SPACER, CLOSE_PARAGRAPH, BLOCK_QUOTE_BEGIN, BLOCK_QUOTE_CONTINUATION, @@ -391,6 +392,16 @@ static bool handle_blocks_to_close(Scanner *s, TSLexer *lexer) { } } +static bool parse_list_item_content_spacer(Scanner *s, TSLexer *lexer, + bool is_newline) { + if (is_newline) { + advance(s, lexer); + lexer->mark_end(lexer); + } + lexer->result_symbol = LIST_ITEM_CONTENT_SPACER; + return true; +} + // Close open list if list markers are different. static bool parse_list_item_continuation(Scanner *s, TSLexer *lexer, bool is_newline) { @@ -399,23 +410,6 @@ static bool parse_list_item_continuation(Scanner *s, TSLexer *lexer, return false; } - // A newline may be encountered when a block is wedged inside a list. - // For example: - // - // - Start - // - // [link_def]: /url - // -> - // Another paragraph - // - // Then list item continuation should scan until `A` instead - // of returning false at the newline before (leading to the paragraph - // falling outside of the list content). - if (is_newline) { - advance(s, lexer); - s->indent = consume_whitespace(s, lexer); - } - if (s->indent < list->level) { return false; } @@ -1648,6 +1642,11 @@ bool tree_sitter_djot_external_scanner_scan(void *payload, TSLexer *lexer, return true; } + if (valid_symbols[LIST_ITEM_CONTENT_SPACER] && + parse_list_item_content_spacer(s, lexer, is_newline)) { + return true; + } + if (valid_symbols[LIST_ITEM_CONTINUATION] && parse_list_item_continuation(s, lexer, is_newline)) { return true; diff --git a/tree-sitter-djot/test/corpus/syntax.txt b/tree-sitter-djot/test/corpus/syntax.txt index 4343a5e..ec450d0 100644 --- a/tree-sitter-djot/test/corpus/syntax.txt +++ b/tree-sitter-djot/test/corpus/syntax.txt @@ -2464,6 +2464,28 @@ List: Unclosed List in Div (list_item_content (paragraph (inline)))))))) +=============================================================================== +List: Code block starts list +=============================================================================== +- ``` + x + ``` + + a + +------------------------------------------------------------------------------- +(document + (list + (list_item + (list_marker_dash) + (list_item_content + (code_block + (code_block_marker_begin) + (code) + (code_block_marker_end)) + (paragraph (inline)))))) + + =============================================================================== List: Nested divs with block attributes =============================================================================== @@ -2630,7 +2652,7 @@ List: Table between paragraphs (paragraph (inline)))))) =============================================================================== -List: Extra space between +List: Extra space between (the Djot playground also treats them as one list) =============================================================================== - a @@ -2643,11 +2665,10 @@ List: Extra space between (list_item (list_marker_dash) (list_item_content - (paragraph (inline)) - (table - (table_row - (table_cell (inline)) - (table_cell (inline)))) + (paragraph (inline)))) + (list_item + (list_marker_dash) + (list_item_content (paragraph (inline)))))) =============================================================================== @@ -2668,10 +2689,13 @@ List: Code in list item (list_marker_dash) (list_item_content (paragraph (inline)) - (table - (table_row - (table_cell (inline)) - (table_cell (inline)))) + (code_block + (code_block_marker_begin) + (code) + (code_block_marker_end)))) + (list_item + (list_marker_dash) + (list_item_content (paragraph (inline)))))) =============================================================================== From 5426b106ae81951e1ee782ecf711445f319c080b Mon Sep 17 00:00:00 2001 From: Jonas Hietala Date: Thu, 23 Jan 2025 09:28:50 +0100 Subject: [PATCH 38/46] feat: Proper block parsing of footer content (like in lists) --- tree-sitter-djot/grammar.js | 40 +- tree-sitter-djot/src/grammar.json | 78 +- tree-sitter-djot/src/node-types.json | 4 + tree-sitter-djot/src/parser.c | 38380 ++++++++++------------ tree-sitter-djot/src/scanner.c | 37 +- tree-sitter-djot/test/corpus/syntax.txt | 451 +- 6 files changed, 17321 insertions(+), 21669 deletions(-) diff --git a/tree-sitter-djot/grammar.js b/tree-sitter-djot/grammar.js index 74a3f11..33f944c 100644 --- a/tree-sitter-djot/grammar.js +++ b/tree-sitter-djot/grammar.js @@ -330,14 +330,14 @@ module.exports = grammar({ list_item_content: ($) => seq( $._block_with_heading, - $._list_item_content_spacer, + $._indented_content_spacer, optional( repeat( seq( optional($._block_quote_prefix), $._list_item_continuation, $._block_with_heading, - $._list_item_content_spacer, + $._indented_content_spacer, ), ), ), @@ -395,11 +395,26 @@ module.exports = grammar({ $._footnote_mark_begin, field("label", $.reference_label), alias("]:", $.footnote_marker_end), + $._whitespace1, field("content", $.footnote_content), - $._footnote_end, ), footnote_marker_begin: (_) => "[^", - footnote_content: ($) => repeat1($._block_with_heading), + footnote_content: ($) => + seq( + $._block_with_heading, + $._indented_content_spacer, + optional( + repeat( + seq( + optional($._block_quote_prefix), + $._footnote_continuation, + $._block_with_heading, + $._indented_content_spacer, + ), + ), + ), + $._footnote_end, + ), div: ($) => seq( @@ -664,13 +679,13 @@ module.exports = grammar({ $.list_marker_upper_alpha_parens, $.list_marker_lower_roman_parens, $.list_marker_upper_roman_parens, - // List item continuation consumes whitespace indentation for lists. + // Continuations consumes whitespace indentation. $._list_item_continuation, // `_list_item_end` is responsible for closing an open list, // if indent or list markers are mismatched. $._list_item_end, - // `_list_item_content_spacer` is either a blankline separating - // list content or a zero-width marker if content continues immediately. + // `_indented_content_spacer` is either a blankline separating + // indented content or a zero-width marker if content continues immediately. // // - a // <- spacer @@ -678,7 +693,8 @@ module.exports = grammar({ // x // ``` // b <- zero-width spacer (followed by a list item continuation). - $._list_item_content_spacer, + // + $._indented_content_spacer, // Paragraphs are anonymous blocks and open blocks aren't tracked by the // external scanner. `close_paragraph` is a marker that's responsible // for closing the paragraph early, for example on a div marker. @@ -689,13 +705,17 @@ module.exports = grammar({ // // > a <- `block_quote_begin` (before the paragraph) // > b <- `block_quote_continuation` (inside the paragraph) + // $._block_quote_continuation, $._thematic_break_dash, $._thematic_break_star, - // Footnotes have significant whitespace. + // Footnotes have significant whitespace and can contain blocks, + // the same as lists. $._footnote_mark_begin, + // Continuations consumes whitespace indentation. + $._footnote_continuation, $._footnote_end, - // Table captions have significant whitespace. + // Table captions have significant whitespace but contain only inline. $._table_caption_begin, $._table_caption_end, diff --git a/tree-sitter-djot/src/grammar.json b/tree-sitter-djot/src/grammar.json index 3f0d7fd..95f620a 100644 --- a/tree-sitter-djot/src/grammar.json +++ b/tree-sitter-djot/src/grammar.json @@ -1418,7 +1418,7 @@ }, { "type": "SYMBOL", - "name": "_list_item_content_spacer" + "name": "_indented_content_spacer" }, { "type": "CHOICE", @@ -1450,7 +1450,7 @@ }, { "type": "SYMBOL", - "name": "_list_item_content_spacer" + "name": "_indented_content_spacer" } ] } @@ -1738,6 +1738,10 @@ "named": true, "value": "footnote_marker_end" }, + { + "type": "SYMBOL", + "name": "_whitespace1" + }, { "type": "FIELD", "name": "content", @@ -1745,10 +1749,6 @@ "type": "SYMBOL", "name": "footnote_content" } - }, - { - "type": "SYMBOL", - "name": "_footnote_end" } ] }, @@ -1757,11 +1757,61 @@ "value": "[^" }, "footnote_content": { - "type": "REPEAT1", - "content": { - "type": "SYMBOL", - "name": "_block_with_heading" - } + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_block_with_heading" + }, + { + "type": "SYMBOL", + "name": "_indented_content_spacer" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_block_quote_prefix" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "_footnote_continuation" + }, + { + "type": "SYMBOL", + "name": "_block_with_heading" + }, + { + "type": "SYMBOL", + "name": "_indented_content_spacer" + } + ] + } + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "_footnote_end" + } + ] }, "div": { "type": "SEQ", @@ -2886,7 +2936,7 @@ }, { "type": "SYMBOL", - "name": "_list_item_content_spacer" + "name": "_indented_content_spacer" }, { "type": "SYMBOL", @@ -2912,6 +2962,10 @@ "type": "SYMBOL", "name": "_footnote_mark_begin" }, + { + "type": "SYMBOL", + "name": "_footnote_continuation" + }, { "type": "SYMBOL", "name": "_footnote_end" diff --git a/tree-sitter-djot/src/node-types.json b/tree-sitter-djot/src/node-types.json index 6209a5e..8322788 100644 --- a/tree-sitter-djot/src/node-types.json +++ b/tree-sitter-djot/src/node-types.json @@ -448,6 +448,10 @@ "type": "block_quote", "named": true }, + { + "type": "block_quote_marker", + "named": true + }, { "type": "code_block", "named": true diff --git a/tree-sitter-djot/src/parser.c b/tree-sitter-djot/src/parser.c index c68a639..b45cf4e 100644 --- a/tree-sitter-djot/src/parser.c +++ b/tree-sitter-djot/src/parser.c @@ -5,12 +5,12 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 1319 -#define LARGE_STATE_COUNT 71 -#define SYMBOL_COUNT 207 +#define STATE_COUNT 1193 +#define LARGE_STATE_COUNT 66 +#define SYMBOL_COUNT 209 #define ALIAS_COUNT 9 -#define TOKEN_COUNT 78 -#define EXTERNAL_TOKEN_COUNT 46 +#define TOKEN_COUNT 79 +#define EXTERNAL_TOKEN_COUNT 47 #define FIELD_COUNT 15 #define MAX_ALIAS_SEQUENCE_LENGTH 8 #define PRODUCTION_ID_COUNT 36 @@ -81,156 +81,158 @@ enum ts_symbol_identifiers { sym_list_marker_upper_roman_parens = 63, sym__list_item_continuation = 64, sym__list_item_end = 65, - sym__list_item_content_spacer = 66, + sym__indented_content_spacer = 66, sym__close_paragraph = 67, sym__block_quote_begin = 68, sym__block_quote_continuation = 69, sym__thematic_break_dash = 70, sym__thematic_break_star = 71, sym__footnote_mark_begin = 72, - sym__footnote_end = 73, - sym__table_caption_begin = 74, - sym__table_caption_end = 75, - sym__in_fallback = 76, - sym__error = 77, - sym_document = 78, - sym_frontmatter = 79, - sym_frontmatter_content = 80, - sym__block_with_section = 81, - sym__block_with_heading = 82, - sym__block_element = 83, - sym_section = 84, - sym_heading = 85, - sym__heading_content = 86, - sym_list = 87, - sym__list_dash = 88, - sym__list_item_dash = 89, - sym__list_plus = 90, - sym__list_item_plus = 91, - sym__list_star = 92, - sym__list_item_star = 93, - sym__list_task = 94, - sym__list_item_task = 95, - sym_list_marker_task = 96, - sym_checked = 97, - sym_unchecked = 98, - sym__list_definition = 99, - sym__list_item_definition = 100, - sym__list_decimal_period = 101, - sym__list_item_decimal_period = 102, - sym__list_decimal_paren = 103, - sym__list_item_decimal_paren = 104, - sym__list_decimal_parens = 105, - sym__list_item_decimal_parens = 106, - sym__list_lower_alpha_period = 107, - sym__list_item_lower_alpha_period = 108, - sym__list_lower_alpha_paren = 109, - sym__list_item_lower_alpha_paren = 110, - sym__list_lower_alpha_parens = 111, - sym__list_item_lower_alpha_parens = 112, - sym__list_upper_alpha_period = 113, - sym__list_item_upper_alpha_period = 114, - sym__list_upper_alpha_paren = 115, - sym__list_item_upper_alpha_paren = 116, - sym__list_upper_alpha_parens = 117, - sym__list_item_upper_alpha_parens = 118, - sym__list_lower_roman_period = 119, - sym__list_item_lower_roman_period = 120, - sym__list_lower_roman_paren = 121, - sym__list_item_lower_roman_paren = 122, - sym__list_lower_roman_parens = 123, - sym__list_item_lower_roman_parens = 124, - sym__list_upper_roman_period = 125, - sym__list_item_upper_roman_period = 126, - sym__list_upper_roman_paren = 127, - sym__list_item_upper_roman_paren = 128, - sym__list_upper_roman_parens = 129, - sym__list_item_upper_roman_parens = 130, - sym_list_item_content = 131, - sym_table = 132, - sym__table_content = 133, - sym_table_separator = 134, - sym_table_row = 135, - sym_table_cell = 136, - sym_table_caption = 137, - sym_footnote = 138, - sym_footnote_marker_begin = 139, - sym_footnote_content = 140, - sym_div = 141, - sym__div_marker_begin = 142, - sym_class_name = 143, - sym_code_block = 144, - sym_raw_block = 145, - sym_raw_block_info = 146, - sym_code = 147, - sym__line = 148, - sym_thematic_break = 149, - sym_block_quote = 150, - sym__block_quote_content = 151, - sym__block_quote_prefix = 152, - sym_link_reference_definition = 153, - sym_link_label = 154, - sym_block_attribute = 155, - sym_class = 156, - sym_identifier = 157, - sym_key_value = 158, - sym_key = 159, - sym_value = 160, - sym__paragraph = 161, - sym__paragraph_content = 162, - sym__paragraph_inline_content = 163, - sym__one_or_two_newlines = 164, - sym__inline = 165, - sym__inline_line = 166, - sym__symbol_fallback = 167, - sym_reference_label = 168, - sym__comment_no_newline = 169, - aux_sym_document_repeat1 = 170, - aux_sym_frontmatter_content_repeat1 = 171, - aux_sym__heading_content_repeat1 = 172, - aux_sym__list_dash_repeat1 = 173, - aux_sym__list_plus_repeat1 = 174, - aux_sym__list_star_repeat1 = 175, - aux_sym__list_task_repeat1 = 176, - aux_sym__list_definition_repeat1 = 177, - aux_sym__list_item_definition_repeat1 = 178, - aux_sym__list_decimal_period_repeat1 = 179, - aux_sym__list_decimal_paren_repeat1 = 180, - aux_sym__list_decimal_parens_repeat1 = 181, - aux_sym__list_lower_alpha_period_repeat1 = 182, - aux_sym__list_lower_alpha_paren_repeat1 = 183, - aux_sym__list_lower_alpha_parens_repeat1 = 184, - aux_sym__list_upper_alpha_period_repeat1 = 185, - aux_sym__list_upper_alpha_paren_repeat1 = 186, - aux_sym__list_upper_alpha_parens_repeat1 = 187, - aux_sym__list_lower_roman_period_repeat1 = 188, - aux_sym__list_lower_roman_paren_repeat1 = 189, - aux_sym__list_lower_roman_parens_repeat1 = 190, - aux_sym__list_upper_roman_period_repeat1 = 191, - aux_sym__list_upper_roman_paren_repeat1 = 192, - aux_sym__list_upper_roman_parens_repeat1 = 193, - aux_sym_list_item_content_repeat1 = 194, - aux_sym_table_repeat1 = 195, - aux_sym_table_separator_repeat1 = 196, - aux_sym_table_row_repeat1 = 197, - aux_sym_table_caption_repeat1 = 198, - aux_sym_footnote_content_repeat1 = 199, - aux_sym_code_repeat1 = 200, - aux_sym__block_quote_content_repeat1 = 201, - aux_sym__block_quote_prefix_repeat1 = 202, - aux_sym_block_attribute_repeat1 = 203, - aux_sym__paragraph_inline_content_repeat1 = 204, - aux_sym__inline_repeat1 = 205, - aux_sym__comment_no_newline_repeat1 = 206, - alias_sym_args = 207, - anon_alias_sym_class = 208, - alias_sym_definition = 209, - alias_sym_language_marker = 210, - alias_sym_paragraph = 211, - alias_sym_raw_block_marker_begin = 212, - alias_sym_raw_block_marker_end = 213, - alias_sym_section_content = 214, - alias_sym_table_header = 215, + sym__footnote_continuation = 73, + sym__footnote_end = 74, + sym__table_caption_begin = 75, + sym__table_caption_end = 76, + sym__in_fallback = 77, + sym__error = 78, + sym_document = 79, + sym_frontmatter = 80, + sym_frontmatter_content = 81, + sym__block_with_section = 82, + sym__block_with_heading = 83, + sym__block_element = 84, + sym_section = 85, + sym_heading = 86, + sym__heading_content = 87, + sym_list = 88, + sym__list_dash = 89, + sym__list_item_dash = 90, + sym__list_plus = 91, + sym__list_item_plus = 92, + sym__list_star = 93, + sym__list_item_star = 94, + sym__list_task = 95, + sym__list_item_task = 96, + sym_list_marker_task = 97, + sym_checked = 98, + sym_unchecked = 99, + sym__list_definition = 100, + sym__list_item_definition = 101, + sym__list_decimal_period = 102, + sym__list_item_decimal_period = 103, + sym__list_decimal_paren = 104, + sym__list_item_decimal_paren = 105, + sym__list_decimal_parens = 106, + sym__list_item_decimal_parens = 107, + sym__list_lower_alpha_period = 108, + sym__list_item_lower_alpha_period = 109, + sym__list_lower_alpha_paren = 110, + sym__list_item_lower_alpha_paren = 111, + sym__list_lower_alpha_parens = 112, + sym__list_item_lower_alpha_parens = 113, + sym__list_upper_alpha_period = 114, + sym__list_item_upper_alpha_period = 115, + sym__list_upper_alpha_paren = 116, + sym__list_item_upper_alpha_paren = 117, + sym__list_upper_alpha_parens = 118, + sym__list_item_upper_alpha_parens = 119, + sym__list_lower_roman_period = 120, + sym__list_item_lower_roman_period = 121, + sym__list_lower_roman_paren = 122, + sym__list_item_lower_roman_paren = 123, + sym__list_lower_roman_parens = 124, + sym__list_item_lower_roman_parens = 125, + sym__list_upper_roman_period = 126, + sym__list_item_upper_roman_period = 127, + sym__list_upper_roman_paren = 128, + sym__list_item_upper_roman_paren = 129, + sym__list_upper_roman_parens = 130, + sym__list_item_upper_roman_parens = 131, + sym_list_item_content = 132, + sym_table = 133, + sym__table_content = 134, + sym_table_separator = 135, + sym_table_row = 136, + sym_table_cell = 137, + sym_table_caption = 138, + sym_footnote = 139, + sym_footnote_marker_begin = 140, + sym_footnote_content = 141, + sym_div = 142, + sym__div_marker_begin = 143, + sym_class_name = 144, + sym_code_block = 145, + sym_raw_block = 146, + sym_raw_block_info = 147, + sym_code = 148, + sym__line = 149, + sym_thematic_break = 150, + sym_block_quote = 151, + sym__block_quote_content = 152, + sym__block_quote_prefix = 153, + sym_link_reference_definition = 154, + sym_link_label = 155, + sym_block_attribute = 156, + sym_class = 157, + sym_identifier = 158, + sym_key_value = 159, + sym_key = 160, + sym_value = 161, + sym__paragraph = 162, + sym__paragraph_content = 163, + sym__paragraph_inline_content = 164, + sym__one_or_two_newlines = 165, + sym__inline = 166, + sym__inline_line = 167, + sym__symbol_fallback = 168, + sym_reference_label = 169, + sym__comment_no_newline = 170, + aux_sym_document_repeat1 = 171, + aux_sym_frontmatter_content_repeat1 = 172, + aux_sym__heading_content_repeat1 = 173, + aux_sym__list_dash_repeat1 = 174, + aux_sym__list_plus_repeat1 = 175, + aux_sym__list_star_repeat1 = 176, + aux_sym__list_task_repeat1 = 177, + aux_sym__list_definition_repeat1 = 178, + aux_sym__list_item_definition_repeat1 = 179, + aux_sym__list_decimal_period_repeat1 = 180, + aux_sym__list_decimal_paren_repeat1 = 181, + aux_sym__list_decimal_parens_repeat1 = 182, + aux_sym__list_lower_alpha_period_repeat1 = 183, + aux_sym__list_lower_alpha_paren_repeat1 = 184, + aux_sym__list_lower_alpha_parens_repeat1 = 185, + aux_sym__list_upper_alpha_period_repeat1 = 186, + aux_sym__list_upper_alpha_paren_repeat1 = 187, + aux_sym__list_upper_alpha_parens_repeat1 = 188, + aux_sym__list_lower_roman_period_repeat1 = 189, + aux_sym__list_lower_roman_paren_repeat1 = 190, + aux_sym__list_lower_roman_parens_repeat1 = 191, + aux_sym__list_upper_roman_period_repeat1 = 192, + aux_sym__list_upper_roman_paren_repeat1 = 193, + aux_sym__list_upper_roman_parens_repeat1 = 194, + aux_sym_list_item_content_repeat1 = 195, + aux_sym_table_repeat1 = 196, + aux_sym_table_separator_repeat1 = 197, + aux_sym_table_row_repeat1 = 198, + aux_sym_table_caption_repeat1 = 199, + aux_sym_footnote_content_repeat1 = 200, + aux_sym_div_repeat1 = 201, + aux_sym_code_repeat1 = 202, + aux_sym__block_quote_content_repeat1 = 203, + aux_sym__block_quote_prefix_repeat1 = 204, + aux_sym_block_attribute_repeat1 = 205, + aux_sym__paragraph_inline_content_repeat1 = 206, + aux_sym__inline_repeat1 = 207, + aux_sym__comment_no_newline_repeat1 = 208, + alias_sym_args = 209, + anon_alias_sym_class = 210, + alias_sym_definition = 211, + alias_sym_language_marker = 212, + alias_sym_paragraph = 213, + alias_sym_raw_block_marker_begin = 214, + alias_sym_raw_block_marker_end = 215, + alias_sym_section_content = 216, + alias_sym_table_header = 217, }; static const char * const ts_symbol_names[] = { @@ -300,13 +302,14 @@ static const char * const ts_symbol_names[] = { [sym_list_marker_upper_roman_parens] = "list_marker_upper_roman_parens", [sym__list_item_continuation] = "_list_item_continuation", [sym__list_item_end] = "_list_item_end", - [sym__list_item_content_spacer] = "_list_item_content_spacer", + [sym__indented_content_spacer] = "_indented_content_spacer", [sym__close_paragraph] = "_close_paragraph", [sym__block_quote_begin] = "block_quote_marker", [sym__block_quote_continuation] = "_block_quote_continuation", [sym__thematic_break_dash] = "_thematic_break_dash", [sym__thematic_break_star] = "_thematic_break_star", [sym__footnote_mark_begin] = "_footnote_mark_begin", + [sym__footnote_continuation] = "_footnote_continuation", [sym__footnote_end] = "_footnote_end", [sym__table_caption_begin] = "marker", [sym__table_caption_end] = "_table_caption_end", @@ -434,6 +437,7 @@ static const char * const ts_symbol_names[] = { [aux_sym_table_row_repeat1] = "table_row_repeat1", [aux_sym_table_caption_repeat1] = "table_caption_repeat1", [aux_sym_footnote_content_repeat1] = "footnote_content_repeat1", + [aux_sym_div_repeat1] = "div_repeat1", [aux_sym_code_repeat1] = "code_repeat1", [aux_sym__block_quote_content_repeat1] = "_block_quote_content_repeat1", [aux_sym__block_quote_prefix_repeat1] = "_block_quote_prefix_repeat1", @@ -519,13 +523,14 @@ static const TSSymbol ts_symbol_map[] = { [sym_list_marker_upper_roman_parens] = sym_list_marker_upper_roman_parens, [sym__list_item_continuation] = sym__list_item_continuation, [sym__list_item_end] = sym__list_item_end, - [sym__list_item_content_spacer] = sym__list_item_content_spacer, + [sym__indented_content_spacer] = sym__indented_content_spacer, [sym__close_paragraph] = sym__close_paragraph, [sym__block_quote_begin] = sym__block_quote_begin, [sym__block_quote_continuation] = sym__block_quote_continuation, [sym__thematic_break_dash] = sym__thematic_break_dash, [sym__thematic_break_star] = sym__thematic_break_star, [sym__footnote_mark_begin] = sym__footnote_mark_begin, + [sym__footnote_continuation] = sym__footnote_continuation, [sym__footnote_end] = sym__footnote_end, [sym__table_caption_begin] = sym__heading_begin, [sym__table_caption_end] = sym__table_caption_end, @@ -653,6 +658,7 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_table_row_repeat1] = aux_sym_table_row_repeat1, [aux_sym_table_caption_repeat1] = aux_sym_table_caption_repeat1, [aux_sym_footnote_content_repeat1] = aux_sym_footnote_content_repeat1, + [aux_sym_div_repeat1] = aux_sym_div_repeat1, [aux_sym_code_repeat1] = aux_sym_code_repeat1, [aux_sym__block_quote_content_repeat1] = aux_sym__block_quote_content_repeat1, [aux_sym__block_quote_prefix_repeat1] = aux_sym__block_quote_prefix_repeat1, @@ -936,7 +942,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, - [sym__list_item_content_spacer] = { + [sym__indented_content_spacer] = { .visible = false, .named = true, }, @@ -964,6 +970,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, + [sym__footnote_continuation] = { + .visible = false, + .named = true, + }, [sym__footnote_end] = { .visible = false, .named = true, @@ -1472,6 +1482,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_div_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym_code_repeat1] = { .visible = false, .named = false, @@ -1670,7 +1684,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_content, 4}, {field_info, 2}, [37] = - {field_content, 4}, + {field_content, 5}, {field_label, 2}, [39] = {field_content, 4}, @@ -1761,8 +1775,8 @@ static const uint16_t ts_non_terminal_alias_map[] = { aux_sym_table_caption_repeat1, 2, aux_sym_table_caption_repeat1, sym__block_quote_content, - aux_sym_footnote_content_repeat1, 2, - aux_sym_footnote_content_repeat1, + aux_sym_div_repeat1, 2, + aux_sym_div_repeat1, sym__block_quote_content, aux_sym_block_attribute_repeat1, 2, aux_sym_block_attribute_repeat1, @@ -1781,31 +1795,31 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4] = 4, [5] = 5, [6] = 6, - [7] = 7, - [8] = 6, - [9] = 5, + [7] = 2, + [8] = 8, + [9] = 8, [10] = 3, [11] = 11, [12] = 11, [13] = 13, - [14] = 14, - [15] = 11, - [16] = 16, - [17] = 17, - [18] = 16, + [14] = 11, + [15] = 15, + [16] = 13, + [17] = 11, + [18] = 13, [19] = 13, - [20] = 14, + [20] = 11, [21] = 13, - [22] = 14, - [23] = 13, - [24] = 14, - [25] = 13, - [26] = 14, - [27] = 13, - [28] = 14, - [29] = 11, - [30] = 11, - [31] = 11, + [22] = 22, + [23] = 23, + [24] = 24, + [25] = 25, + [26] = 26, + [27] = 27, + [28] = 28, + [29] = 29, + [30] = 30, + [31] = 31, [32] = 32, [33] = 33, [34] = 34, @@ -1814,16 +1828,16 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [37] = 37, [38] = 38, [39] = 39, - [40] = 40, + [40] = 34, [41] = 41, [42] = 42, - [43] = 43, + [43] = 34, [44] = 44, [45] = 45, - [46] = 46, + [46] = 34, [47] = 47, [48] = 48, - [49] = 49, + [49] = 34, [50] = 50, [51] = 51, [52] = 52, @@ -1832,88 +1846,88 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [55] = 55, [56] = 56, [57] = 57, - [58] = 58, - [59] = 59, + [58] = 55, + [59] = 57, [60] = 55, [61] = 55, - [62] = 55, - [63] = 63, - [64] = 63, - [65] = 63, - [66] = 55, - [67] = 63, - [68] = 63, - [69] = 63, + [62] = 57, + [63] = 57, + [64] = 57, + [65] = 65, + [66] = 66, + [67] = 66, + [68] = 68, + [69] = 68, [70] = 70, - [71] = 71, - [72] = 71, - [73] = 71, + [71] = 70, + [72] = 72, + [73] = 72, [74] = 74, - [75] = 74, - [76] = 74, + [75] = 75, + [76] = 76, [77] = 77, - [78] = 77, - [79] = 77, + [78] = 78, + [79] = 79, [80] = 80, [81] = 80, - [82] = 80, + [82] = 82, [83] = 83, [84] = 84, [85] = 85, - [86] = 83, + [86] = 86, [87] = 87, [88] = 88, [89] = 89, [90] = 90, [91] = 91, - [92] = 92, - [93] = 93, - [94] = 94, - [95] = 93, + [92] = 82, + [93] = 74, + [94] = 85, + [95] = 95, [96] = 96, - [97] = 91, - [98] = 98, - [99] = 99, - [100] = 90, - [101] = 94, - [102] = 93, - [103] = 103, - [104] = 104, - [105] = 105, - [106] = 106, - [107] = 99, - [108] = 84, - [109] = 85, - [110] = 98, - [111] = 87, - [112] = 88, - [113] = 103, - [114] = 104, - [115] = 103, - [116] = 96, - [117] = 105, - [118] = 106, - [119] = 98, + [97] = 86, + [98] = 90, + [99] = 87, + [100] = 75, + [101] = 83, + [102] = 84, + [103] = 76, + [104] = 77, + [105] = 78, + [106] = 79, + [107] = 96, + [108] = 88, + [109] = 89, + [110] = 91, + [111] = 111, + [112] = 112, + [113] = 113, + [114] = 114, + [115] = 115, + [116] = 116, + [117] = 117, + [118] = 118, + [119] = 119, [120] = 120, - [121] = 104, - [122] = 84, - [123] = 85, - [124] = 83, - [125] = 87, - [126] = 88, - [127] = 99, - [128] = 92, - [129] = 89, - [130] = 90, - [131] = 105, - [132] = 94, - [133] = 92, - [134] = 106, - [135] = 120, - [136] = 96, - [137] = 91, - [138] = 120, - [139] = 139, + [121] = 121, + [122] = 122, + [123] = 123, + [124] = 124, + [125] = 125, + [126] = 126, + [127] = 127, + [128] = 128, + [129] = 129, + [130] = 130, + [131] = 131, + [132] = 132, + [133] = 133, + [134] = 134, + [135] = 135, + [136] = 136, + [137] = 137, + [138] = 111, + [139] = 115, [140] = 140, [141] = 141, [142] = 142, @@ -1921,13 +1935,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [144] = 144, [145] = 145, [146] = 146, - [147] = 147, - [148] = 148, - [149] = 149, - [150] = 150, - [151] = 151, - [152] = 152, - [153] = 153, + [147] = 118, + [148] = 124, + [149] = 132, + [150] = 136, + [151] = 140, + [152] = 145, + [153] = 146, [154] = 154, [155] = 155, [156] = 156, @@ -1939,1160 +1953,1034 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [162] = 162, [163] = 163, [164] = 164, - [165] = 141, - [166] = 140, + [165] = 165, + [166] = 166, [167] = 167, - [168] = 139, - [169] = 143, - [170] = 148, - [171] = 156, - [172] = 161, - [173] = 167, - [174] = 139, - [175] = 175, - [176] = 176, - [177] = 177, - [178] = 178, - [179] = 179, - [180] = 180, - [181] = 181, - [182] = 182, - [183] = 183, - [184] = 184, - [185] = 185, - [186] = 186, - [187] = 187, - [188] = 188, - [189] = 189, - [190] = 175, - [191] = 191, - [192] = 176, - [193] = 162, - [194] = 194, - [195] = 195, - [196] = 177, - [197] = 197, - [198] = 178, - [199] = 179, - [200] = 180, - [201] = 201, - [202] = 181, - [203] = 182, - [204] = 204, - [205] = 183, - [206] = 184, - [207] = 185, - [208] = 186, - [209] = 187, - [210] = 142, - [211] = 188, - [212] = 145, - [213] = 189, - [214] = 214, - [215] = 146, - [216] = 147, - [217] = 150, - [218] = 151, - [219] = 152, - [220] = 153, - [221] = 154, - [222] = 155, - [223] = 191, - [224] = 157, - [225] = 158, - [226] = 226, - [227] = 141, - [228] = 140, - [229] = 143, - [230] = 148, - [231] = 156, - [232] = 161, - [233] = 167, - [234] = 175, - [235] = 176, - [236] = 177, - [237] = 178, - [238] = 179, - [239] = 180, - [240] = 181, - [241] = 182, - [242] = 183, - [243] = 184, - [244] = 185, - [245] = 186, - [246] = 187, - [247] = 188, - [248] = 189, - [249] = 191, - [250] = 194, - [251] = 195, - [252] = 197, - [253] = 201, - [254] = 194, - [255] = 204, - [256] = 195, - [257] = 163, - [258] = 142, - [259] = 145, - [260] = 164, - [261] = 214, - [262] = 146, - [263] = 147, - [264] = 150, - [265] = 151, - [266] = 152, - [267] = 153, - [268] = 154, - [269] = 155, - [270] = 197, - [271] = 157, - [272] = 158, - [273] = 226, - [274] = 201, - [275] = 159, - [276] = 160, - [277] = 204, - [278] = 214, - [279] = 279, - [280] = 280, - [281] = 281, - [282] = 282, - [283] = 282, - [284] = 282, - [285] = 282, - [286] = 282, - [287] = 282, - [288] = 288, - [289] = 288, - [290] = 290, - [291] = 288, - [292] = 290, - [293] = 290, - [294] = 288, - [295] = 288, - [296] = 290, - [297] = 290, - [298] = 288, - [299] = 290, - [300] = 300, - [301] = 300, - [302] = 302, - [303] = 300, - [304] = 300, - [305] = 300, - [306] = 300, - [307] = 307, + [168] = 154, + [169] = 169, + [170] = 155, + [171] = 171, + [172] = 172, + [173] = 156, + [174] = 112, + [175] = 157, + [176] = 158, + [177] = 159, + [178] = 114, + [179] = 160, + [180] = 161, + [181] = 116, + [182] = 162, + [183] = 163, + [184] = 164, + [185] = 165, + [186] = 166, + [187] = 117, + [188] = 167, + [189] = 120, + [190] = 121, + [191] = 122, + [192] = 123, + [193] = 169, + [194] = 126, + [195] = 127, + [196] = 128, + [197] = 129, + [198] = 130, + [199] = 131, + [200] = 133, + [201] = 134, + [202] = 135, + [203] = 137, + [204] = 171, + [205] = 172, + [206] = 142, + [207] = 143, + [208] = 208, + [209] = 144, + [210] = 210, + [211] = 211, + [212] = 212, + [213] = 213, + [214] = 213, + [215] = 213, + [216] = 213, + [217] = 213, + [218] = 218, + [219] = 219, + [220] = 219, + [221] = 218, + [222] = 219, + [223] = 218, + [224] = 218, + [225] = 219, + [226] = 219, + [227] = 218, + [228] = 228, + [229] = 229, + [230] = 229, + [231] = 229, + [232] = 229, + [233] = 229, + [234] = 234, + [235] = 234, + [236] = 234, + [237] = 237, + [238] = 211, + [239] = 239, + [240] = 240, + [241] = 234, + [242] = 234, + [243] = 243, + [244] = 239, + [245] = 243, + [246] = 239, + [247] = 243, + [248] = 239, + [249] = 243, + [250] = 239, + [251] = 243, + [252] = 252, + [253] = 240, + [254] = 211, + [255] = 212, + [256] = 252, + [257] = 257, + [258] = 252, + [259] = 252, + [260] = 252, + [261] = 261, + [262] = 262, + [263] = 263, + [264] = 264, + [265] = 212, + [266] = 266, + [267] = 267, + [268] = 268, + [269] = 266, + [270] = 261, + [271] = 267, + [272] = 266, + [273] = 267, + [274] = 267, + [275] = 261, + [276] = 267, + [277] = 266, + [278] = 261, + [279] = 268, + [280] = 263, + [281] = 264, + [282] = 262, + [283] = 268, + [284] = 263, + [285] = 264, + [286] = 262, + [287] = 268, + [288] = 263, + [289] = 264, + [290] = 262, + [291] = 261, + [292] = 263, + [293] = 264, + [294] = 262, + [295] = 266, + [296] = 296, + [297] = 297, + [298] = 298, + [299] = 299, + [300] = 297, + [301] = 66, + [302] = 298, + [303] = 303, + [304] = 297, + [305] = 298, + [306] = 306, + [307] = 297, [308] = 308, - [309] = 309, - [310] = 310, - [311] = 279, - [312] = 309, + [309] = 308, + [310] = 66, + [311] = 66, + [312] = 68, [313] = 313, - [314] = 309, - [315] = 307, - [316] = 309, - [317] = 313, - [318] = 307, - [319] = 313, - [320] = 307, - [321] = 313, - [322] = 307, - [323] = 313, - [324] = 307, - [325] = 313, - [326] = 309, - [327] = 309, - [328] = 328, - [329] = 281, - [330] = 308, - [331] = 279, + [314] = 314, + [315] = 308, + [316] = 308, + [317] = 240, + [318] = 318, + [319] = 319, + [320] = 308, + [321] = 211, + [322] = 298, + [323] = 68, + [324] = 212, + [325] = 68, + [326] = 314, + [327] = 314, + [328] = 314, + [329] = 70, + [330] = 330, + [331] = 70, [332] = 332, - [333] = 328, - [334] = 328, - [335] = 328, - [336] = 328, - [337] = 328, + [333] = 333, + [334] = 330, + [335] = 335, + [336] = 332, + [337] = 333, [338] = 338, - [339] = 281, - [340] = 340, - [341] = 341, - [342] = 342, - [343] = 343, - [344] = 344, - [345] = 345, - [346] = 343, - [347] = 344, - [348] = 345, - [349] = 343, - [350] = 344, - [351] = 345, - [352] = 343, - [353] = 344, - [354] = 345, - [355] = 344, - [356] = 344, - [357] = 345, - [358] = 338, - [359] = 340, - [360] = 341, - [361] = 342, - [362] = 338, - [363] = 340, - [364] = 341, - [365] = 342, - [366] = 338, - [367] = 340, - [368] = 341, - [369] = 342, - [370] = 338, - [371] = 340, - [372] = 341, - [373] = 342, - [374] = 340, - [375] = 341, - [376] = 342, - [377] = 345, - [378] = 343, - [379] = 343, + [339] = 330, + [340] = 338, + [341] = 330, + [342] = 333, + [343] = 333, + [344] = 338, + [345] = 330, + [346] = 338, + [347] = 70, + [348] = 332, + [349] = 333, + [350] = 332, + [351] = 338, + [352] = 332, + [353] = 353, + [354] = 353, + [355] = 355, + [356] = 353, + [357] = 355, + [358] = 353, + [359] = 359, + [360] = 359, + [361] = 361, + [362] = 359, + [363] = 355, + [364] = 359, + [365] = 365, + [366] = 366, + [367] = 355, + [368] = 368, + [369] = 369, + [370] = 355, + [371] = 353, + [372] = 359, + [373] = 373, + [374] = 374, + [375] = 375, + [376] = 376, + [377] = 377, + [378] = 378, + [379] = 379, [380] = 380, [381] = 381, - [382] = 382, + [382] = 375, [383] = 383, - [384] = 381, - [385] = 381, - [386] = 71, - [387] = 387, - [388] = 383, - [389] = 383, - [390] = 390, - [391] = 71, - [392] = 392, - [393] = 393, - [394] = 392, - [395] = 308, - [396] = 392, - [397] = 392, - [398] = 74, - [399] = 399, - [400] = 279, - [401] = 401, - [402] = 392, - [403] = 392, - [404] = 383, - [405] = 405, - [406] = 71, + [384] = 384, + [385] = 385, + [386] = 375, + [387] = 381, + [388] = 375, + [389] = 381, + [390] = 375, + [391] = 381, + [392] = 375, + [393] = 381, + [394] = 375, + [395] = 381, + [396] = 375, + [397] = 381, + [398] = 375, + [399] = 381, + [400] = 375, + [401] = 381, + [402] = 375, + [403] = 381, + [404] = 375, + [405] = 381, + [406] = 375, [407] = 381, - [408] = 393, - [409] = 281, - [410] = 74, - [411] = 393, - [412] = 74, - [413] = 393, - [414] = 77, + [408] = 375, + [409] = 381, + [410] = 375, + [411] = 381, + [412] = 375, + [413] = 381, + [414] = 384, [415] = 415, - [416] = 416, - [417] = 77, - [418] = 418, - [419] = 419, - [420] = 415, - [421] = 416, - [422] = 419, - [423] = 418, - [424] = 419, - [425] = 416, - [426] = 415, - [427] = 416, - [428] = 418, - [429] = 415, - [430] = 416, - [431] = 419, - [432] = 418, - [433] = 77, - [434] = 415, - [435] = 416, - [436] = 418, - [437] = 419, - [438] = 419, - [439] = 439, - [440] = 418, - [441] = 415, + [416] = 381, + [417] = 417, + [418] = 96, + [419] = 384, + [420] = 385, + [421] = 375, + [422] = 76, + [423] = 77, + [424] = 375, + [425] = 83, + [426] = 84, + [427] = 88, + [428] = 381, + [429] = 89, + [430] = 381, + [431] = 431, + [432] = 375, + [433] = 384, + [434] = 385, + [435] = 385, + [436] = 436, + [437] = 381, + [438] = 438, + [439] = 384, + [440] = 440, + [441] = 385, [442] = 442, - [443] = 443, - [444] = 442, - [445] = 445, - [446] = 442, - [447] = 443, - [448] = 443, - [449] = 445, - [450] = 445, + [443] = 89, + [444] = 89, + [445] = 76, + [446] = 84, + [447] = 83, + [448] = 448, + [449] = 449, + [450] = 77, [451] = 451, - [452] = 442, - [453] = 445, - [454] = 445, - [455] = 442, - [456] = 443, - [457] = 457, - [458] = 442, - [459] = 459, - [460] = 443, + [452] = 88, + [453] = 77, + [454] = 83, + [455] = 96, + [456] = 72, + [457] = 76, + [458] = 84, + [459] = 88, + [460] = 96, [461] = 461, [462] = 462, - [463] = 443, - [464] = 445, - [465] = 99, + [463] = 463, + [464] = 462, + [465] = 72, [466] = 466, - [467] = 467, - [468] = 466, - [469] = 467, - [470] = 466, - [471] = 467, - [472] = 466, - [473] = 467, - [474] = 466, - [475] = 467, - [476] = 466, - [477] = 467, - [478] = 466, - [479] = 467, - [480] = 466, - [481] = 467, + [467] = 95, + [468] = 468, + [469] = 469, + [470] = 90, + [471] = 75, + [472] = 78, + [473] = 79, + [474] = 80, + [475] = 74, + [476] = 82, + [477] = 85, + [478] = 86, + [479] = 87, + [480] = 91, + [481] = 481, [482] = 482, [483] = 483, [484] = 484, - [485] = 467, - [486] = 92, - [487] = 87, + [485] = 485, + [486] = 486, + [487] = 487, [488] = 488, [489] = 489, [490] = 490, [491] = 491, - [492] = 467, - [493] = 466, - [494] = 466, + [492] = 461, + [493] = 493, + [494] = 494, [495] = 495, - [496] = 466, - [497] = 467, - [498] = 106, - [499] = 499, - [500] = 500, - [501] = 466, - [502] = 467, - [503] = 467, - [504] = 98, - [505] = 105, - [506] = 83, - [507] = 466, - [508] = 467, - [509] = 467, - [510] = 466, - [511] = 467, - [512] = 466, - [513] = 466, - [514] = 467, - [515] = 515, - [516] = 516, - [517] = 466, - [518] = 466, - [519] = 467, - [520] = 466, - [521] = 521, - [522] = 522, - [523] = 467, - [524] = 98, - [525] = 99, - [526] = 526, - [527] = 105, - [528] = 92, - [529] = 106, - [530] = 83, - [531] = 87, - [532] = 98, - [533] = 533, - [534] = 105, - [535] = 535, - [536] = 87, - [537] = 83, - [538] = 99, - [539] = 92, - [540] = 106, - [541] = 80, - [542] = 542, - [543] = 543, - [544] = 544, - [545] = 89, - [546] = 546, - [547] = 547, - [548] = 96, - [549] = 91, - [550] = 90, - [551] = 94, - [552] = 93, - [553] = 103, - [554] = 104, - [555] = 120, - [556] = 84, - [557] = 85, - [558] = 88, - [559] = 559, + [496] = 496, + [497] = 497, + [498] = 498, + [499] = 483, + [500] = 484, + [501] = 485, + [502] = 486, + [503] = 487, + [504] = 488, + [505] = 489, + [506] = 490, + [507] = 491, + [508] = 461, + [509] = 493, + [510] = 494, + [511] = 495, + [512] = 512, + [513] = 496, + [514] = 497, + [515] = 483, + [516] = 484, + [517] = 485, + [518] = 486, + [519] = 487, + [520] = 488, + [521] = 489, + [522] = 490, + [523] = 491, + [524] = 461, + [525] = 493, + [526] = 494, + [527] = 495, + [528] = 512, + [529] = 496, + [530] = 497, + [531] = 483, + [532] = 484, + [533] = 483, + [534] = 484, + [535] = 485, + [536] = 486, + [537] = 487, + [538] = 488, + [539] = 489, + [540] = 490, + [541] = 491, + [542] = 461, + [543] = 493, + [544] = 494, + [545] = 495, + [546] = 512, + [547] = 496, + [548] = 497, + [549] = 485, + [550] = 550, + [551] = 486, + [552] = 552, + [553] = 487, + [554] = 554, + [555] = 488, + [556] = 556, + [557] = 489, + [558] = 558, + [559] = 490, [560] = 560, - [561] = 561, + [561] = 491, [562] = 562, [563] = 563, - [564] = 564, + [564] = 493, [565] = 565, - [566] = 566, + [566] = 494, [567] = 567, - [568] = 568, + [568] = 495, [569] = 569, - [570] = 570, + [570] = 512, [571] = 571, - [572] = 572, + [572] = 496, [573] = 573, - [574] = 574, - [575] = 575, - [576] = 576, - [577] = 562, - [578] = 563, + [574] = 462, + [575] = 462, + [576] = 497, + [577] = 462, + [578] = 578, [579] = 579, - [580] = 542, - [581] = 581, - [582] = 564, - [583] = 583, - [584] = 565, + [580] = 580, + [581] = 512, + [582] = 112, + [583] = 240, + [584] = 584, [585] = 585, - [586] = 566, + [586] = 211, [587] = 587, - [588] = 567, - [589] = 562, - [590] = 563, - [591] = 564, - [592] = 565, - [593] = 566, - [594] = 567, - [595] = 568, - [596] = 569, - [597] = 570, - [598] = 571, - [599] = 572, - [600] = 573, - [601] = 574, - [602] = 575, - [603] = 576, - [604] = 604, - [605] = 568, - [606] = 606, - [607] = 569, - [608] = 608, - [609] = 570, - [610] = 610, - [611] = 571, - [612] = 562, - [613] = 563, - [614] = 542, - [615] = 564, - [616] = 565, - [617] = 566, - [618] = 567, - [619] = 568, - [620] = 569, - [621] = 570, - [622] = 571, - [623] = 572, - [624] = 573, - [625] = 574, - [626] = 575, - [627] = 576, - [628] = 628, - [629] = 572, - [630] = 630, - [631] = 573, - [632] = 562, - [633] = 563, - [634] = 542, - [635] = 564, - [636] = 565, - [637] = 566, - [638] = 567, - [639] = 568, - [640] = 569, - [641] = 570, - [642] = 571, - [643] = 572, - [644] = 573, - [645] = 574, - [646] = 575, - [647] = 576, - [648] = 648, - [649] = 574, - [650] = 650, - [651] = 575, - [652] = 652, - [653] = 576, - [654] = 654, - [655] = 562, - [656] = 563, - [657] = 542, - [658] = 564, - [659] = 565, - [660] = 566, - [661] = 567, - [662] = 568, - [663] = 569, - [664] = 570, - [665] = 571, - [666] = 572, - [667] = 573, - [668] = 574, - [669] = 575, - [670] = 576, + [588] = 211, + [589] = 589, + [590] = 590, + [591] = 591, + [592] = 592, + [593] = 113, + [594] = 594, + [595] = 595, + [596] = 596, + [597] = 597, + [598] = 598, + [599] = 95, + [600] = 600, + [601] = 601, + [602] = 143, + [603] = 144, + [604] = 240, + [605] = 118, + [606] = 124, + [607] = 132, + [608] = 136, + [609] = 140, + [610] = 145, + [611] = 146, + [612] = 595, + [613] = 613, + [614] = 614, + [615] = 615, + [616] = 616, + [617] = 154, + [618] = 155, + [619] = 156, + [620] = 157, + [621] = 158, + [622] = 159, + [623] = 160, + [624] = 161, + [625] = 162, + [626] = 163, + [627] = 164, + [628] = 165, + [629] = 166, + [630] = 167, + [631] = 169, + [632] = 211, + [633] = 633, + [634] = 634, + [635] = 635, + [636] = 636, + [637] = 637, + [638] = 171, + [639] = 172, + [640] = 141, + [641] = 641, + [642] = 642, + [643] = 114, + [644] = 75, + [645] = 601, + [646] = 116, + [647] = 78, + [648] = 79, + [649] = 80, + [650] = 117, + [651] = 74, + [652] = 120, + [653] = 82, + [654] = 595, + [655] = 121, + [656] = 122, + [657] = 123, + [658] = 658, + [659] = 126, + [660] = 127, + [661] = 128, + [662] = 129, + [663] = 130, + [664] = 131, + [665] = 85, + [666] = 133, + [667] = 134, + [668] = 135, + [669] = 137, + [670] = 240, [671] = 671, - [672] = 543, - [673] = 543, - [674] = 80, - [675] = 543, - [676] = 676, - [677] = 543, - [678] = 543, - [679] = 542, - [680] = 148, - [681] = 279, - [682] = 204, - [683] = 683, - [684] = 684, - [685] = 685, - [686] = 142, - [687] = 226, - [688] = 145, + [672] = 672, + [673] = 673, + [674] = 211, + [675] = 240, + [676] = 211, + [677] = 86, + [678] = 87, + [679] = 240, + [680] = 211, + [681] = 240, + [682] = 211, + [683] = 240, + [684] = 211, + [685] = 601, + [686] = 595, + [687] = 72, + [688] = 91, [689] = 689, - [690] = 690, - [691] = 214, - [692] = 146, - [693] = 147, - [694] = 150, - [695] = 151, - [696] = 152, - [697] = 153, - [698] = 154, - [699] = 155, - [700] = 700, - [701] = 157, - [702] = 158, - [703] = 308, + [690] = 240, + [691] = 691, + [692] = 692, + [693] = 693, + [694] = 694, + [695] = 601, + [696] = 90, + [697] = 697, + [698] = 601, + [699] = 595, + [700] = 601, + [701] = 595, + [702] = 702, + [703] = 703, [704] = 704, [705] = 705, [706] = 706, [707] = 707, [708] = 708, - [709] = 279, - [710] = 710, - [711] = 711, - [712] = 80, + [709] = 709, + [710] = 595, + [711] = 87, + [712] = 171, [713] = 713, [714] = 714, - [715] = 715, + [715] = 172, [716] = 716, - [717] = 308, - [718] = 279, - [719] = 719, + [717] = 717, + [718] = 718, + [719] = 86, [720] = 720, - [721] = 308, - [722] = 279, - [723] = 308, - [724] = 279, + [721] = 721, + [722] = 722, + [723] = 212, + [724] = 724, [725] = 725, - [726] = 710, + [726] = 726, [727] = 727, [728] = 728, - [729] = 725, + [729] = 729, [730] = 730, - [731] = 141, - [732] = 140, - [733] = 308, - [734] = 143, - [735] = 308, + [731] = 731, + [732] = 112, + [733] = 589, + [734] = 113, + [735] = 735, [736] = 736, - [737] = 725, - [738] = 161, - [739] = 167, - [740] = 139, - [741] = 175, - [742] = 176, - [743] = 177, - [744] = 178, - [745] = 179, - [746] = 180, - [747] = 181, - [748] = 748, - [749] = 182, - [750] = 183, - [751] = 184, - [752] = 185, - [753] = 186, - [754] = 187, - [755] = 188, - [756] = 189, - [757] = 757, - [758] = 710, - [759] = 759, - [760] = 191, - [761] = 761, - [762] = 308, - [763] = 279, - [764] = 194, - [765] = 88, - [766] = 195, - [767] = 767, - [768] = 279, - [769] = 769, - [770] = 89, - [771] = 162, - [772] = 197, - [773] = 96, - [774] = 91, - [775] = 725, - [776] = 776, - [777] = 90, - [778] = 94, - [779] = 93, - [780] = 103, - [781] = 104, - [782] = 710, - [783] = 201, - [784] = 120, - [785] = 84, - [786] = 85, + [737] = 737, + [738] = 91, + [739] = 739, + [740] = 740, + [741] = 705, + [742] = 742, + [743] = 743, + [744] = 318, + [745] = 114, + [746] = 118, + [747] = 124, + [748] = 116, + [749] = 132, + [750] = 136, + [751] = 140, + [752] = 145, + [753] = 117, + [754] = 146, + [755] = 120, + [756] = 154, + [757] = 155, + [758] = 121, + [759] = 122, + [760] = 724, + [761] = 123, + [762] = 762, + [763] = 126, + [764] = 730, + [765] = 765, + [766] = 127, + [767] = 735, + [768] = 768, + [769] = 705, + [770] = 697, + [771] = 739, + [772] = 128, + [773] = 705, + [774] = 697, + [775] = 775, + [776] = 129, + [777] = 777, + [778] = 130, + [779] = 131, + [780] = 156, + [781] = 133, + [782] = 134, + [783] = 135, + [784] = 137, + [785] = 601, + [786] = 735, [787] = 787, - [788] = 156, - [789] = 89, - [790] = 725, - [791] = 710, - [792] = 725, - [793] = 710, - [794] = 725, - [795] = 710, - [796] = 725, - [797] = 710, - [798] = 798, + [788] = 212, + [789] = 157, + [790] = 158, + [791] = 159, + [792] = 160, + [793] = 724, + [794] = 730, + [795] = 161, + [796] = 796, + [797] = 595, + [798] = 735, [799] = 799, - [800] = 800, + [800] = 697, [801] = 801, - [802] = 802, - [803] = 158, - [804] = 804, - [805] = 725, + [802] = 739, + [803] = 705, + [804] = 730, + [805] = 805, [806] = 806, [807] = 807, - [808] = 281, + [808] = 808, [809] = 809, [810] = 810, [811] = 811, - [812] = 812, + [812] = 162, [813] = 813, - [814] = 725, - [815] = 815, - [816] = 816, - [817] = 817, + [814] = 814, + [815] = 163, + [816] = 164, + [817] = 85, [818] = 818, [819] = 819, [820] = 820, - [821] = 710, + [821] = 821, [822] = 822, - [823] = 823, - [824] = 824, - [825] = 825, - [826] = 826, - [827] = 710, - [828] = 818, - [829] = 799, - [830] = 830, - [831] = 831, - [832] = 816, - [833] = 833, - [834] = 823, + [823] = 165, + [824] = 166, + [825] = 167, + [826] = 730, + [827] = 212, + [828] = 739, + [829] = 212, + [830] = 169, + [831] = 601, + [832] = 595, + [833] = 735, + [834] = 212, [835] = 835, [836] = 836, - [837] = 837, - [838] = 812, - [839] = 839, - [840] = 281, - [841] = 816, - [842] = 842, - [843] = 843, - [844] = 844, - [845] = 823, - [846] = 826, - [847] = 818, - [848] = 799, + [837] = 697, + [838] = 601, + [839] = 739, + [840] = 595, + [841] = 841, + [842] = 143, + [843] = 601, + [844] = 595, + [845] = 212, + [846] = 601, + [847] = 595, + [848] = 212, [849] = 849, - [850] = 850, - [851] = 281, - [852] = 852, - [853] = 853, + [850] = 601, + [851] = 601, + [852] = 595, + [853] = 144, [854] = 854, - [855] = 855, - [856] = 856, - [857] = 857, + [855] = 601, + [856] = 595, + [857] = 212, [858] = 858, - [859] = 859, - [860] = 860, - [861] = 812, - [862] = 816, - [863] = 823, - [864] = 864, - [865] = 826, - [866] = 866, - [867] = 818, - [868] = 799, - [869] = 757, - [870] = 155, - [871] = 871, - [872] = 872, - [873] = 873, - [874] = 874, - [875] = 725, - [876] = 876, - [877] = 877, - [878] = 878, - [879] = 879, - [880] = 880, - [881] = 816, - [882] = 882, - [883] = 96, - [884] = 91, - [885] = 823, - [886] = 710, - [887] = 826, - [888] = 818, - [889] = 799, - [890] = 90, - [891] = 94, - [892] = 892, - [893] = 893, - [894] = 826, - [895] = 799, + [859] = 718, + [860] = 720, + [861] = 805, + [862] = 808, + [863] = 835, + [864] = 836, + [865] = 727, + [866] = 728, + [867] = 867, + [868] = 718, + [869] = 720, + [870] = 805, + [871] = 808, + [872] = 835, + [873] = 836, + [874] = 727, + [875] = 728, + [876] = 601, + [877] = 595, + [878] = 601, + [879] = 718, + [880] = 720, + [881] = 595, + [882] = 601, + [883] = 95, + [884] = 805, + [885] = 808, + [886] = 835, + [887] = 836, + [888] = 595, + [889] = 727, + [890] = 728, + [891] = 891, + [892] = 601, + [893] = 595, + [894] = 718, + [895] = 720, [896] = 896, - [897] = 93, - [898] = 816, - [899] = 103, - [900] = 104, - [901] = 157, - [902] = 281, - [903] = 120, - [904] = 823, - [905] = 84, - [906] = 826, - [907] = 85, - [908] = 818, - [909] = 725, - [910] = 910, - [911] = 88, - [912] = 281, - [913] = 141, - [914] = 140, - [915] = 915, - [916] = 812, - [917] = 710, - [918] = 143, - [919] = 148, - [920] = 156, - [921] = 161, - [922] = 167, - [923] = 139, - [924] = 725, - [925] = 849, - [926] = 877, - [927] = 175, - [928] = 176, - [929] = 177, - [930] = 839, - [931] = 866, - [932] = 806, - [933] = 807, - [934] = 178, - [935] = 179, - [936] = 858, - [937] = 859, - [938] = 180, - [939] = 181, - [940] = 182, - [941] = 710, - [942] = 849, - [943] = 877, - [944] = 183, - [945] = 184, - [946] = 185, - [947] = 839, - [948] = 866, - [949] = 806, - [950] = 807, - [951] = 186, - [952] = 187, - [953] = 858, - [954] = 859, - [955] = 188, - [956] = 189, - [957] = 957, - [958] = 849, - [959] = 877, - [960] = 191, - [961] = 725, - [962] = 710, - [963] = 839, - [964] = 866, - [965] = 806, - [966] = 807, - [967] = 281, - [968] = 858, - [969] = 859, - [970] = 194, - [971] = 195, - [972] = 725, - [973] = 849, - [974] = 877, - [975] = 710, - [976] = 197, - [977] = 226, - [978] = 839, - [979] = 866, - [980] = 806, - [981] = 807, - [982] = 281, - [983] = 858, - [984] = 859, - [985] = 985, - [986] = 849, - [987] = 877, - [988] = 201, - [989] = 725, - [990] = 710, - [991] = 839, - [992] = 866, - [993] = 806, - [994] = 807, - [995] = 204, - [996] = 858, - [997] = 859, - [998] = 998, - [999] = 725, - [1000] = 401, - [1001] = 710, - [1002] = 142, - [1003] = 725, - [1004] = 145, - [1005] = 710, - [1006] = 725, - [1007] = 214, - [1008] = 873, - [1009] = 146, - [1010] = 873, - [1011] = 147, - [1012] = 873, - [1013] = 710, - [1014] = 873, - [1015] = 873, - [1016] = 150, - [1017] = 151, - [1018] = 152, - [1019] = 153, - [1020] = 154, - [1021] = 1021, - [1022] = 147, - [1023] = 1023, - [1024] = 1024, - [1025] = 1025, - [1026] = 1026, + [897] = 805, + [898] = 808, + [899] = 835, + [900] = 836, + [901] = 90, + [902] = 727, + [903] = 728, + [904] = 75, + [905] = 601, + [906] = 906, + [907] = 724, + [908] = 78, + [909] = 79, + [910] = 740, + [911] = 740, + [912] = 595, + [913] = 740, + [914] = 80, + [915] = 740, + [916] = 74, + [917] = 82, + [918] = 918, + [919] = 919, + [920] = 920, + [921] = 921, + [922] = 922, + [923] = 923, + [924] = 924, + [925] = 925, + [926] = 926, + [927] = 927, + [928] = 921, + [929] = 929, + [930] = 930, + [931] = 931, + [932] = 932, + [933] = 933, + [934] = 934, + [935] = 922, + [936] = 936, + [937] = 932, + [938] = 923, + [939] = 939, + [940] = 925, + [941] = 926, + [942] = 942, + [943] = 943, + [944] = 929, + [945] = 930, + [946] = 931, + [947] = 932, + [948] = 933, + [949] = 934, + [950] = 128, + [951] = 129, + [952] = 922, + [953] = 953, + [954] = 130, + [955] = 923, + [956] = 956, + [957] = 919, + [958] = 131, + [959] = 959, + [960] = 927, + [961] = 121, + [962] = 933, + [963] = 963, + [964] = 964, + [965] = 934, + [966] = 966, + [967] = 383, + [968] = 968, + [969] = 133, + [970] = 970, + [971] = 134, + [972] = 972, + [973] = 135, + [974] = 974, + [975] = 137, + [976] = 924, + [977] = 977, + [978] = 921, + [979] = 922, + [980] = 923, + [981] = 924, + [982] = 925, + [983] = 926, + [984] = 966, + [985] = 122, + [986] = 929, + [987] = 930, + [988] = 931, + [989] = 932, + [990] = 933, + [991] = 934, + [992] = 123, + [993] = 993, + [994] = 994, + [995] = 995, + [996] = 996, + [997] = 959, + [998] = 927, + [999] = 999, + [1000] = 970, + [1001] = 1001, + [1002] = 1002, + [1003] = 1003, + [1004] = 143, + [1005] = 1005, + [1006] = 144, + [1007] = 966, + [1008] = 1008, + [1009] = 1009, + [1010] = 1010, + [1011] = 970, + [1012] = 1012, + [1013] = 959, + [1014] = 1014, + [1015] = 118, + [1016] = 1016, + [1017] = 124, + [1018] = 132, + [1019] = 136, + [1020] = 140, + [1021] = 145, + [1022] = 146, + [1023] = 154, + [1024] = 155, + [1025] = 156, + [1026] = 1010, [1027] = 1027, [1028] = 1028, - [1029] = 1029, + [1029] = 924, [1030] = 1030, - [1031] = 1031, + [1031] = 157, [1032] = 1032, - [1033] = 1033, - [1034] = 1034, - [1035] = 1035, - [1036] = 201, - [1037] = 1037, - [1038] = 1031, - [1039] = 1039, - [1040] = 162, - [1041] = 1041, - [1042] = 1042, - [1043] = 1023, - [1044] = 1044, + [1033] = 158, + [1034] = 159, + [1035] = 963, + [1036] = 964, + [1037] = 921, + [1038] = 922, + [1039] = 923, + [1040] = 1040, + [1041] = 160, + [1042] = 977, + [1043] = 925, + [1044] = 926, [1045] = 1045, - [1046] = 1024, - [1047] = 1025, - [1048] = 1048, - [1049] = 1049, - [1050] = 1050, - [1051] = 143, - [1052] = 1052, - [1053] = 1053, - [1054] = 1028, - [1055] = 1029, - [1056] = 1056, - [1057] = 1026, - [1058] = 204, - [1059] = 1059, - [1060] = 1034, - [1061] = 1061, - [1062] = 148, - [1063] = 1044, - [1064] = 156, - [1065] = 1030, - [1066] = 1066, - [1067] = 1034, - [1068] = 161, - [1069] = 142, - [1070] = 1066, - [1071] = 167, - [1072] = 145, - [1073] = 1066, - [1074] = 1074, - [1075] = 1074, - [1076] = 1076, + [1046] = 920, + [1047] = 161, + [1048] = 162, + [1049] = 163, + [1050] = 1010, + [1051] = 1051, + [1052] = 1028, + [1053] = 925, + [1054] = 929, + [1055] = 164, + [1056] = 1032, + [1057] = 165, + [1058] = 166, + [1059] = 963, + [1060] = 964, + [1061] = 930, + [1062] = 931, + [1063] = 932, + [1064] = 933, + [1065] = 167, + [1066] = 977, + [1067] = 934, + [1068] = 120, + [1069] = 1045, + [1070] = 920, + [1071] = 117, + [1072] = 169, + [1073] = 1073, + [1074] = 1010, + [1075] = 1075, + [1076] = 1028, [1077] = 1077, - [1078] = 1023, - [1079] = 1024, - [1080] = 1025, - [1081] = 1076, - [1082] = 1077, - [1083] = 1028, - [1084] = 1029, - [1085] = 1030, - [1086] = 1031, - [1087] = 1032, - [1088] = 1033, - [1089] = 1023, - [1090] = 214, - [1091] = 146, - [1092] = 1024, - [1093] = 1044, - [1094] = 1025, - [1095] = 150, - [1096] = 151, - [1097] = 152, - [1098] = 153, - [1099] = 154, - [1100] = 155, + [1078] = 1028, + [1079] = 1079, + [1080] = 1032, + [1081] = 1081, + [1082] = 994, + [1083] = 963, + [1084] = 964, + [1085] = 1051, + [1086] = 1086, + [1087] = 959, + [1088] = 927, + [1089] = 1089, + [1090] = 977, + [1091] = 1091, + [1092] = 1092, + [1093] = 1045, + [1094] = 920, + [1095] = 141, + [1096] = 1096, + [1097] = 1010, + [1098] = 126, + [1099] = 1028, + [1100] = 966, [1101] = 1101, - [1102] = 157, - [1103] = 158, - [1104] = 139, - [1105] = 1028, - [1106] = 1029, - [1107] = 1030, - [1108] = 1031, - [1109] = 1032, - [1110] = 1110, - [1111] = 1050, - [1112] = 1061, - [1113] = 1033, - [1114] = 1074, - [1115] = 1076, - [1116] = 175, - [1117] = 176, - [1118] = 177, - [1119] = 1041, - [1120] = 178, - [1121] = 1121, - [1122] = 1077, - [1123] = 1023, - [1124] = 1024, - [1125] = 1125, - [1126] = 1126, - [1127] = 1025, - [1128] = 1059, - [1129] = 1129, - [1130] = 1130, - [1131] = 1131, - [1132] = 1056, - [1133] = 1066, - [1134] = 1026, - [1135] = 1028, - [1136] = 1029, - [1137] = 1030, - [1138] = 1138, - [1139] = 1031, - [1140] = 1032, - [1141] = 1033, - [1142] = 1041, - [1143] = 1143, - [1144] = 1121, - [1145] = 1050, - [1146] = 179, - [1147] = 1056, - [1148] = 1125, - [1149] = 1026, - [1150] = 180, - [1151] = 1059, - [1152] = 1129, - [1153] = 181, - [1154] = 182, - [1155] = 1155, - [1156] = 183, - [1157] = 1044, - [1158] = 184, - [1159] = 185, - [1160] = 186, - [1161] = 1138, - [1162] = 1034, - [1163] = 187, - [1164] = 188, - [1165] = 1041, + [1102] = 171, + [1103] = 1032, + [1104] = 172, + [1105] = 1032, + [1106] = 963, + [1107] = 964, + [1108] = 1108, + [1109] = 972, + [1110] = 970, + [1111] = 994, + [1112] = 959, + [1113] = 977, + [1114] = 927, + [1115] = 1115, + [1116] = 1045, + [1117] = 920, + [1118] = 1028, + [1119] = 1028, + [1120] = 1028, + [1121] = 1028, + [1122] = 1028, + [1123] = 1028, + [1124] = 1028, + [1125] = 1028, + [1126] = 1028, + [1127] = 1028, + [1128] = 1028, + [1129] = 1028, + [1130] = 1028, + [1131] = 1028, + [1132] = 1014, + [1133] = 112, + [1134] = 113, + [1135] = 1135, + [1136] = 995, + [1137] = 1005, + [1138] = 1009, + [1139] = 1014, + [1140] = 929, + [1141] = 930, + [1142] = 1135, + [1143] = 995, + [1144] = 1005, + [1145] = 1009, + [1146] = 1014, + [1147] = 1147, + [1148] = 1148, + [1149] = 1135, + [1150] = 995, + [1151] = 1005, + [1152] = 1009, + [1153] = 1014, + [1154] = 114, + [1155] = 966, + [1156] = 1135, + [1157] = 995, + [1158] = 1005, + [1159] = 1009, + [1160] = 931, + [1161] = 943, + [1162] = 1162, + [1163] = 942, + [1164] = 116, + [1165] = 943, [1166] = 1166, - [1167] = 1121, - [1168] = 189, - [1169] = 141, - [1170] = 1026, - [1171] = 1125, - [1172] = 1066, - [1173] = 191, - [1174] = 1059, - [1175] = 1129, - [1176] = 1074, - [1177] = 1076, - [1178] = 1077, - [1179] = 1023, - [1180] = 1024, - [1181] = 1181, - [1182] = 1025, - [1183] = 140, - [1184] = 1138, - [1185] = 1138, - [1186] = 1077, - [1187] = 1028, - [1188] = 1041, - [1189] = 1029, - [1190] = 1121, - [1191] = 1030, - [1192] = 1031, - [1193] = 1032, - [1194] = 1125, - [1195] = 1033, - [1196] = 1196, - [1197] = 1059, - [1198] = 1129, - [1199] = 1199, - [1200] = 1125, - [1201] = 1201, - [1202] = 1202, - [1203] = 1203, - [1204] = 1204, - [1205] = 1205, - [1206] = 1206, - [1207] = 1138, - [1208] = 1208, - [1209] = 1074, - [1210] = 1041, - [1211] = 1211, - [1212] = 1121, - [1213] = 1032, - [1214] = 1214, - [1215] = 1215, - [1216] = 1125, - [1217] = 1217, - [1218] = 1121, - [1219] = 1059, - [1220] = 1129, - [1221] = 1076, - [1222] = 1033, - [1223] = 1077, - [1224] = 1044, - [1225] = 1225, - [1226] = 1226, - [1227] = 1227, - [1228] = 1034, - [1229] = 1138, - [1230] = 1121, - [1231] = 1121, - [1232] = 1121, - [1233] = 1121, - [1234] = 1121, - [1235] = 1121, - [1236] = 1121, - [1237] = 1121, - [1238] = 1121, - [1239] = 1121, - [1240] = 1121, - [1241] = 1121, - [1242] = 1121, - [1243] = 1045, - [1244] = 1129, - [1245] = 1245, - [1246] = 1110, - [1247] = 1181, - [1248] = 1211, - [1249] = 1249, - [1250] = 1045, - [1251] = 1050, - [1252] = 1056, - [1253] = 1110, - [1254] = 1181, - [1255] = 1211, - [1256] = 1249, - [1257] = 1045, - [1258] = 1026, - [1259] = 1259, - [1260] = 1110, - [1261] = 1181, - [1262] = 1211, - [1263] = 1249, - [1264] = 1045, - [1265] = 1265, - [1266] = 194, - [1267] = 1110, - [1268] = 1181, - [1269] = 1211, - [1270] = 1249, - [1271] = 1045, - [1272] = 1056, - [1273] = 195, - [1274] = 1110, - [1275] = 1181, - [1276] = 1211, - [1277] = 1249, - [1278] = 1044, - [1279] = 1217, - [1280] = 1280, - [1281] = 1215, - [1282] = 1196, - [1283] = 1217, - [1284] = 1284, - [1285] = 1215, - [1286] = 1034, - [1287] = 1217, - [1288] = 197, - [1289] = 1215, - [1290] = 226, - [1291] = 1217, - [1292] = 1050, - [1293] = 1215, - [1294] = 490, - [1295] = 1217, - [1296] = 1296, - [1297] = 1215, - [1298] = 1027, - [1299] = 1202, - [1300] = 1027, - [1301] = 1202, - [1302] = 1027, - [1303] = 1202, - [1304] = 1027, - [1305] = 1202, - [1306] = 1027, - [1307] = 1202, - [1308] = 1280, - [1309] = 1280, - [1310] = 1280, - [1311] = 1280, - [1312] = 1280, - [1313] = 1249, - [1314] = 1066, - [1315] = 1056, - [1316] = 1074, - [1317] = 1076, - [1318] = 1318, + [1167] = 942, + [1168] = 970, + [1169] = 943, + [1170] = 1170, + [1171] = 942, + [1172] = 127, + [1173] = 943, + [1174] = 1045, + [1175] = 942, + [1176] = 1008, + [1177] = 919, + [1178] = 1008, + [1179] = 1135, + [1180] = 1008, + [1181] = 919, + [1182] = 1008, + [1183] = 919, + [1184] = 1030, + [1185] = 1030, + [1186] = 1030, + [1187] = 1030, + [1188] = 921, + [1189] = 1189, + [1190] = 924, + [1191] = 994, + [1192] = 926, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -3241,13 +3129,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\n') ADVANCE(67); END_STATE(); case 9: - if (lookahead == '\r') SKIP(9); - if (lookahead == ' ') ADVANCE(28); - if (lookahead == 'X') ADVANCE(25); - if (lookahead == 'x') ADVANCE(23); - END_STATE(); - case 10: - if (lookahead == '\r') ADVANCE(10); + if (lookahead == '\r') ADVANCE(9); if (lookahead == '"') ADVANCE(47); if (lookahead == '-') ADVANCE(31); if (lookahead == ':') ADVANCE(13); @@ -3258,17 +3140,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(50); END_STATE(); + case 10: + if (lookahead == '\r') SKIP(10); + if (lookahead == ' ') ADVANCE(28); + if (lookahead == 'X') ADVANCE(25); + if (lookahead == 'x') ADVANCE(23); + END_STATE(); case 11: - if (lookahead == '\r') ADVANCE(48); + if (lookahead == '\r') SKIP(11); if (lookahead != 0 && - lookahead != '\n' && - lookahead != '"') ADVANCE(49); + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ') ADVANCE(42); END_STATE(); case 12: - if (lookahead == '\r') SKIP(12); + if (lookahead == '\r') ADVANCE(48); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ') ADVANCE(42); + lookahead != '\n' && + lookahead != '"') ADVANCE(49); END_STATE(); case 13: if (lookahead == '-') ADVANCE(31); @@ -3642,25 +3530,25 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, [1] = {.lex_state = 19, .external_lex_state = 2}, [2] = {.lex_state = 19, .external_lex_state = 3}, - [3] = {.lex_state = 19, .external_lex_state = 4}, - [4] = {.lex_state = 19, .external_lex_state = 3}, + [3] = {.lex_state = 19, .external_lex_state = 3}, + [4] = {.lex_state = 19, .external_lex_state = 4}, [5] = {.lex_state = 19, .external_lex_state = 4}, - [6] = {.lex_state = 19, .external_lex_state = 3}, + [6] = {.lex_state = 19, .external_lex_state = 4}, [7] = {.lex_state = 19, .external_lex_state = 3}, [8] = {.lex_state = 19, .external_lex_state = 4}, - [9] = {.lex_state = 19, .external_lex_state = 4}, - [10] = {.lex_state = 19, .external_lex_state = 4}, + [9] = {.lex_state = 19, .external_lex_state = 3}, + [10] = {.lex_state = 19, .external_lex_state = 3}, [11] = {.lex_state = 19, .external_lex_state = 3}, [12] = {.lex_state = 19, .external_lex_state = 3}, - [13] = {.lex_state = 19, .external_lex_state = 4}, - [14] = {.lex_state = 19, .external_lex_state = 4}, + [13] = {.lex_state = 19, .external_lex_state = 3}, + [14] = {.lex_state = 19, .external_lex_state = 3}, [15] = {.lex_state = 19, .external_lex_state = 3}, - [16] = {.lex_state = 19, .external_lex_state = 4}, - [17] = {.lex_state = 19, .external_lex_state = 5}, - [18] = {.lex_state = 19, .external_lex_state = 5}, - [19] = {.lex_state = 19, .external_lex_state = 4}, - [20] = {.lex_state = 19, .external_lex_state = 4}, - [21] = {.lex_state = 19, .external_lex_state = 4}, + [16] = {.lex_state = 19, .external_lex_state = 3}, + [17] = {.lex_state = 19, .external_lex_state = 3}, + [18] = {.lex_state = 19, .external_lex_state = 3}, + [19] = {.lex_state = 19, .external_lex_state = 3}, + [20] = {.lex_state = 19, .external_lex_state = 3}, + [21] = {.lex_state = 19, .external_lex_state = 3}, [22] = {.lex_state = 19, .external_lex_state = 4}, [23] = {.lex_state = 19, .external_lex_state = 4}, [24] = {.lex_state = 19, .external_lex_state = 4}, @@ -3668,124 +3556,124 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [26] = {.lex_state = 19, .external_lex_state = 4}, [27] = {.lex_state = 19, .external_lex_state = 4}, [28] = {.lex_state = 19, .external_lex_state = 4}, - [29] = {.lex_state = 19, .external_lex_state = 3}, - [30] = {.lex_state = 19, .external_lex_state = 3}, - [31] = {.lex_state = 19, .external_lex_state = 3}, - [32] = {.lex_state = 19, .external_lex_state = 3}, - [33] = {.lex_state = 19, .external_lex_state = 3}, - [34] = {.lex_state = 19, .external_lex_state = 3}, - [35] = {.lex_state = 19, .external_lex_state = 3}, - [36] = {.lex_state = 19, .external_lex_state = 3}, - [37] = {.lex_state = 19, .external_lex_state = 3}, - [38] = {.lex_state = 19, .external_lex_state = 3}, - [39] = {.lex_state = 19, .external_lex_state = 3}, - [40] = {.lex_state = 19, .external_lex_state = 3}, - [41] = {.lex_state = 19, .external_lex_state = 3}, - [42] = {.lex_state = 19, .external_lex_state = 3}, - [43] = {.lex_state = 19, .external_lex_state = 3}, - [44] = {.lex_state = 19, .external_lex_state = 3}, - [45] = {.lex_state = 19, .external_lex_state = 3}, - [46] = {.lex_state = 19, .external_lex_state = 3}, - [47] = {.lex_state = 19, .external_lex_state = 3}, - [48] = {.lex_state = 19, .external_lex_state = 3}, - [49] = {.lex_state = 19, .external_lex_state = 3}, - [50] = {.lex_state = 19, .external_lex_state = 3}, - [51] = {.lex_state = 19, .external_lex_state = 3}, - [52] = {.lex_state = 19, .external_lex_state = 3}, - [53] = {.lex_state = 19, .external_lex_state = 3}, - [54] = {.lex_state = 19, .external_lex_state = 3}, - [55] = {.lex_state = 19, .external_lex_state = 4}, - [56] = {.lex_state = 19, .external_lex_state = 3}, - [57] = {.lex_state = 19, .external_lex_state = 3}, - [58] = {.lex_state = 19, .external_lex_state = 3}, - [59] = {.lex_state = 19, .external_lex_state = 3}, - [60] = {.lex_state = 19, .external_lex_state = 3}, - [61] = {.lex_state = 19, .external_lex_state = 3}, - [62] = {.lex_state = 19, .external_lex_state = 3}, - [63] = {.lex_state = 19, .external_lex_state = 6}, - [64] = {.lex_state = 19, .external_lex_state = 6}, + [29] = {.lex_state = 19, .external_lex_state = 4}, + [30] = {.lex_state = 19, .external_lex_state = 4}, + [31] = {.lex_state = 19, .external_lex_state = 4}, + [32] = {.lex_state = 19, .external_lex_state = 4}, + [33] = {.lex_state = 19, .external_lex_state = 4}, + [34] = {.lex_state = 19, .external_lex_state = 4}, + [35] = {.lex_state = 19, .external_lex_state = 4}, + [36] = {.lex_state = 19, .external_lex_state = 4}, + [37] = {.lex_state = 19, .external_lex_state = 4}, + [38] = {.lex_state = 19, .external_lex_state = 4}, + [39] = {.lex_state = 19, .external_lex_state = 4}, + [40] = {.lex_state = 19, .external_lex_state = 4}, + [41] = {.lex_state = 19, .external_lex_state = 4}, + [42] = {.lex_state = 19, .external_lex_state = 4}, + [43] = {.lex_state = 19, .external_lex_state = 4}, + [44] = {.lex_state = 19, .external_lex_state = 4}, + [45] = {.lex_state = 19, .external_lex_state = 4}, + [46] = {.lex_state = 19, .external_lex_state = 4}, + [47] = {.lex_state = 19, .external_lex_state = 4}, + [48] = {.lex_state = 19, .external_lex_state = 4}, + [49] = {.lex_state = 19, .external_lex_state = 4}, + [50] = {.lex_state = 19, .external_lex_state = 4}, + [51] = {.lex_state = 19, .external_lex_state = 4}, + [52] = {.lex_state = 19, .external_lex_state = 4}, + [53] = {.lex_state = 19, .external_lex_state = 4}, + [54] = {.lex_state = 19, .external_lex_state = 4}, + [55] = {.lex_state = 19, .external_lex_state = 3}, + [56] = {.lex_state = 19, .external_lex_state = 4}, + [57] = {.lex_state = 19, .external_lex_state = 5}, + [58] = {.lex_state = 19, .external_lex_state = 4}, + [59] = {.lex_state = 19, .external_lex_state = 5}, + [60] = {.lex_state = 19, .external_lex_state = 4}, + [61] = {.lex_state = 19, .external_lex_state = 4}, + [62] = {.lex_state = 19, .external_lex_state = 5}, + [63] = {.lex_state = 19, .external_lex_state = 5}, + [64] = {.lex_state = 19, .external_lex_state = 5}, [65] = {.lex_state = 19, .external_lex_state = 6}, - [66] = {.lex_state = 19, .external_lex_state = 3}, - [67] = {.lex_state = 19, .external_lex_state = 6}, - [68] = {.lex_state = 19, .external_lex_state = 6}, - [69] = {.lex_state = 19, .external_lex_state = 6}, - [70] = {.lex_state = 19, .external_lex_state = 7}, - [71] = {.lex_state = 19, .external_lex_state = 8}, - [72] = {.lex_state = 19, .external_lex_state = 9}, - [73] = {.lex_state = 19, .external_lex_state = 10}, - [74] = {.lex_state = 19, .external_lex_state = 8}, + [66] = {.lex_state = 19, .external_lex_state = 7}, + [67] = {.lex_state = 19, .external_lex_state = 8}, + [68] = {.lex_state = 19, .external_lex_state = 7}, + [69] = {.lex_state = 19, .external_lex_state = 8}, + [70] = {.lex_state = 19, .external_lex_state = 8}, + [71] = {.lex_state = 19, .external_lex_state = 7}, + [72] = {.lex_state = 19, .external_lex_state = 7}, + [73] = {.lex_state = 19, .external_lex_state = 8}, + [74] = {.lex_state = 19, .external_lex_state = 9}, [75] = {.lex_state = 19, .external_lex_state = 9}, - [76] = {.lex_state = 19, .external_lex_state = 10}, - [77] = {.lex_state = 19, .external_lex_state = 10}, - [78] = {.lex_state = 19, .external_lex_state = 8}, - [79] = {.lex_state = 19, .external_lex_state = 9}, - [80] = {.lex_state = 19, .external_lex_state = 10}, - [81] = {.lex_state = 19, .external_lex_state = 8}, + [76] = {.lex_state = 19, .external_lex_state = 8}, + [77] = {.lex_state = 19, .external_lex_state = 8}, + [78] = {.lex_state = 19, .external_lex_state = 10}, + [79] = {.lex_state = 19, .external_lex_state = 10}, + [80] = {.lex_state = 19, .external_lex_state = 9}, + [81] = {.lex_state = 19, .external_lex_state = 11}, [82] = {.lex_state = 19, .external_lex_state = 9}, - [83] = {.lex_state = 19, .external_lex_state = 10}, - [84] = {.lex_state = 19, .external_lex_state = 11}, - [85] = {.lex_state = 19, .external_lex_state = 11}, + [83] = {.lex_state = 19, .external_lex_state = 8}, + [84] = {.lex_state = 19, .external_lex_state = 8}, + [85] = {.lex_state = 19, .external_lex_state = 10}, [86] = {.lex_state = 19, .external_lex_state = 9}, [87] = {.lex_state = 19, .external_lex_state = 9}, - [88] = {.lex_state = 19, .external_lex_state = 12}, - [89] = {.lex_state = 19, .external_lex_state = 13}, - [90] = {.lex_state = 19, .external_lex_state = 14}, - [91] = {.lex_state = 19, .external_lex_state = 15}, - [92] = {.lex_state = 19, .external_lex_state = 10}, - [93] = {.lex_state = 19, .external_lex_state = 15}, - [94] = {.lex_state = 19, .external_lex_state = 14}, - [95] = {.lex_state = 19, .external_lex_state = 11}, - [96] = {.lex_state = 19, .external_lex_state = 16}, - [97] = {.lex_state = 19, .external_lex_state = 17}, - [98] = {.lex_state = 19, .external_lex_state = 10}, - [99] = {.lex_state = 19, .external_lex_state = 10}, - [100] = {.lex_state = 19, .external_lex_state = 16}, - [101] = {.lex_state = 19, .external_lex_state = 16}, - [102] = {.lex_state = 19, .external_lex_state = 17}, - [103] = {.lex_state = 19, .external_lex_state = 17}, - [104] = {.lex_state = 19, .external_lex_state = 17}, - [105] = {.lex_state = 19, .external_lex_state = 10}, - [106] = {.lex_state = 19, .external_lex_state = 10}, - [107] = {.lex_state = 19, .external_lex_state = 9}, - [108] = {.lex_state = 19, .external_lex_state = 17}, - [109] = {.lex_state = 19, .external_lex_state = 17}, - [110] = {.lex_state = 19, .external_lex_state = 9}, - [111] = {.lex_state = 19, .external_lex_state = 10}, - [112] = {.lex_state = 19, .external_lex_state = 13}, - [113] = {.lex_state = 19, .external_lex_state = 15}, - [114] = {.lex_state = 19, .external_lex_state = 15}, - [115] = {.lex_state = 19, .external_lex_state = 11}, - [116] = {.lex_state = 19, .external_lex_state = 18}, - [117] = {.lex_state = 19, .external_lex_state = 8}, - [118] = {.lex_state = 19, .external_lex_state = 8}, - [119] = {.lex_state = 19, .external_lex_state = 8}, - [120] = {.lex_state = 19, .external_lex_state = 18}, - [121] = {.lex_state = 19, .external_lex_state = 11}, - [122] = {.lex_state = 19, .external_lex_state = 15}, - [123] = {.lex_state = 19, .external_lex_state = 15}, - [124] = {.lex_state = 19, .external_lex_state = 8}, - [125] = {.lex_state = 19, .external_lex_state = 8}, - [126] = {.lex_state = 19, .external_lex_state = 19}, - [127] = {.lex_state = 19, .external_lex_state = 8}, - [128] = {.lex_state = 19, .external_lex_state = 8}, - [129] = {.lex_state = 19, .external_lex_state = 12}, - [130] = {.lex_state = 19, .external_lex_state = 18}, - [131] = {.lex_state = 19, .external_lex_state = 9}, - [132] = {.lex_state = 19, .external_lex_state = 18}, - [133] = {.lex_state = 19, .external_lex_state = 9}, - [134] = {.lex_state = 19, .external_lex_state = 9}, - [135] = {.lex_state = 19, .external_lex_state = 14}, - [136] = {.lex_state = 19, .external_lex_state = 14}, - [137] = {.lex_state = 19, .external_lex_state = 11}, - [138] = {.lex_state = 19, .external_lex_state = 16}, - [139] = {.lex_state = 19, .external_lex_state = 5}, - [140] = {.lex_state = 19, .external_lex_state = 3}, + [88] = {.lex_state = 19, .external_lex_state = 8}, + [89] = {.lex_state = 19, .external_lex_state = 8}, + [90] = {.lex_state = 19, .external_lex_state = 10}, + [91] = {.lex_state = 19, .external_lex_state = 12}, + [92] = {.lex_state = 19, .external_lex_state = 11}, + [93] = {.lex_state = 19, .external_lex_state = 11}, + [94] = {.lex_state = 19, .external_lex_state = 13}, + [95] = {.lex_state = 19, .external_lex_state = 14}, + [96] = {.lex_state = 19, .external_lex_state = 7}, + [97] = {.lex_state = 19, .external_lex_state = 11}, + [98] = {.lex_state = 19, .external_lex_state = 13}, + [99] = {.lex_state = 19, .external_lex_state = 11}, + [100] = {.lex_state = 19, .external_lex_state = 11}, + [101] = {.lex_state = 19, .external_lex_state = 7}, + [102] = {.lex_state = 19, .external_lex_state = 7}, + [103] = {.lex_state = 19, .external_lex_state = 7}, + [104] = {.lex_state = 19, .external_lex_state = 7}, + [105] = {.lex_state = 19, .external_lex_state = 13}, + [106] = {.lex_state = 19, .external_lex_state = 13}, + [107] = {.lex_state = 19, .external_lex_state = 8}, + [108] = {.lex_state = 19, .external_lex_state = 7}, + [109] = {.lex_state = 19, .external_lex_state = 7}, + [110] = {.lex_state = 19, .external_lex_state = 14}, + [111] = {.lex_state = 19, .external_lex_state = 4}, + [112] = {.lex_state = 19, .external_lex_state = 4}, + [113] = {.lex_state = 19, .external_lex_state = 3}, + [114] = {.lex_state = 19, .external_lex_state = 4}, + [115] = {.lex_state = 19, .external_lex_state = 4}, + [116] = {.lex_state = 19, .external_lex_state = 4}, + [117] = {.lex_state = 19, .external_lex_state = 4}, + [118] = {.lex_state = 19, .external_lex_state = 4}, + [119] = {.lex_state = 19, .external_lex_state = 4}, + [120] = {.lex_state = 19, .external_lex_state = 4}, + [121] = {.lex_state = 19, .external_lex_state = 4}, + [122] = {.lex_state = 19, .external_lex_state = 4}, + [123] = {.lex_state = 19, .external_lex_state = 4}, + [124] = {.lex_state = 19, .external_lex_state = 4}, + [125] = {.lex_state = 19, .external_lex_state = 4}, + [126] = {.lex_state = 19, .external_lex_state = 4}, + [127] = {.lex_state = 19, .external_lex_state = 4}, + [128] = {.lex_state = 19, .external_lex_state = 4}, + [129] = {.lex_state = 19, .external_lex_state = 4}, + [130] = {.lex_state = 19, .external_lex_state = 4}, + [131] = {.lex_state = 19, .external_lex_state = 4}, + [132] = {.lex_state = 19, .external_lex_state = 4}, + [133] = {.lex_state = 19, .external_lex_state = 4}, + [134] = {.lex_state = 19, .external_lex_state = 4}, + [135] = {.lex_state = 19, .external_lex_state = 4}, + [136] = {.lex_state = 19, .external_lex_state = 4}, + [137] = {.lex_state = 19, .external_lex_state = 4}, + [138] = {.lex_state = 19, .external_lex_state = 3}, + [139] = {.lex_state = 19, .external_lex_state = 3}, + [140] = {.lex_state = 19, .external_lex_state = 4}, [141] = {.lex_state = 19, .external_lex_state = 3}, [142] = {.lex_state = 19, .external_lex_state = 3}, [143] = {.lex_state = 19, .external_lex_state = 3}, [144] = {.lex_state = 19, .external_lex_state = 3}, - [145] = {.lex_state = 19, .external_lex_state = 3}, - [146] = {.lex_state = 19, .external_lex_state = 3}, + [145] = {.lex_state = 19, .external_lex_state = 4}, + [146] = {.lex_state = 19, .external_lex_state = 4}, [147] = {.lex_state = 19, .external_lex_state = 3}, [148] = {.lex_state = 19, .external_lex_state = 3}, [149] = {.lex_state = 19, .external_lex_state = 3}, @@ -3798,1166 +3686,1040 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [156] = {.lex_state = 19, .external_lex_state = 3}, [157] = {.lex_state = 19, .external_lex_state = 3}, [158] = {.lex_state = 19, .external_lex_state = 3}, - [159] = {.lex_state = 19, .external_lex_state = 4}, - [160] = {.lex_state = 19, .external_lex_state = 4}, + [159] = {.lex_state = 19, .external_lex_state = 3}, + [160] = {.lex_state = 19, .external_lex_state = 3}, [161] = {.lex_state = 19, .external_lex_state = 3}, - [162] = {.lex_state = 19, .external_lex_state = 4}, - [163] = {.lex_state = 19, .external_lex_state = 4}, - [164] = {.lex_state = 19, .external_lex_state = 5}, - [165] = {.lex_state = 19, .external_lex_state = 4}, - [166] = {.lex_state = 19, .external_lex_state = 4}, + [162] = {.lex_state = 19, .external_lex_state = 3}, + [163] = {.lex_state = 19, .external_lex_state = 3}, + [164] = {.lex_state = 19, .external_lex_state = 3}, + [165] = {.lex_state = 19, .external_lex_state = 3}, + [166] = {.lex_state = 19, .external_lex_state = 3}, [167] = {.lex_state = 19, .external_lex_state = 3}, - [168] = {.lex_state = 19, .external_lex_state = 3}, - [169] = {.lex_state = 19, .external_lex_state = 4}, + [168] = {.lex_state = 19, .external_lex_state = 4}, + [169] = {.lex_state = 19, .external_lex_state = 3}, [170] = {.lex_state = 19, .external_lex_state = 4}, - [171] = {.lex_state = 19, .external_lex_state = 4}, - [172] = {.lex_state = 19, .external_lex_state = 4}, + [171] = {.lex_state = 19, .external_lex_state = 3}, + [172] = {.lex_state = 19, .external_lex_state = 3}, [173] = {.lex_state = 19, .external_lex_state = 4}, - [174] = {.lex_state = 19, .external_lex_state = 4}, + [174] = {.lex_state = 19, .external_lex_state = 3}, [175] = {.lex_state = 19, .external_lex_state = 4}, [176] = {.lex_state = 19, .external_lex_state = 4}, [177] = {.lex_state = 19, .external_lex_state = 4}, - [178] = {.lex_state = 19, .external_lex_state = 4}, + [178] = {.lex_state = 19, .external_lex_state = 3}, [179] = {.lex_state = 19, .external_lex_state = 4}, [180] = {.lex_state = 19, .external_lex_state = 4}, - [181] = {.lex_state = 19, .external_lex_state = 4}, + [181] = {.lex_state = 19, .external_lex_state = 3}, [182] = {.lex_state = 19, .external_lex_state = 4}, [183] = {.lex_state = 19, .external_lex_state = 4}, [184] = {.lex_state = 19, .external_lex_state = 4}, [185] = {.lex_state = 19, .external_lex_state = 4}, [186] = {.lex_state = 19, .external_lex_state = 4}, - [187] = {.lex_state = 19, .external_lex_state = 4}, + [187] = {.lex_state = 19, .external_lex_state = 3}, [188] = {.lex_state = 19, .external_lex_state = 4}, - [189] = {.lex_state = 19, .external_lex_state = 4}, + [189] = {.lex_state = 19, .external_lex_state = 3}, [190] = {.lex_state = 19, .external_lex_state = 3}, - [191] = {.lex_state = 19, .external_lex_state = 4}, + [191] = {.lex_state = 19, .external_lex_state = 3}, [192] = {.lex_state = 19, .external_lex_state = 3}, - [193] = {.lex_state = 19, .external_lex_state = 5}, - [194] = {.lex_state = 19, .external_lex_state = 4}, - [195] = {.lex_state = 19, .external_lex_state = 4}, + [193] = {.lex_state = 19, .external_lex_state = 4}, + [194] = {.lex_state = 19, .external_lex_state = 3}, + [195] = {.lex_state = 19, .external_lex_state = 3}, [196] = {.lex_state = 19, .external_lex_state = 3}, - [197] = {.lex_state = 19, .external_lex_state = 4}, + [197] = {.lex_state = 19, .external_lex_state = 3}, [198] = {.lex_state = 19, .external_lex_state = 3}, [199] = {.lex_state = 19, .external_lex_state = 3}, [200] = {.lex_state = 19, .external_lex_state = 3}, - [201] = {.lex_state = 19, .external_lex_state = 4}, + [201] = {.lex_state = 19, .external_lex_state = 3}, [202] = {.lex_state = 19, .external_lex_state = 3}, [203] = {.lex_state = 19, .external_lex_state = 3}, [204] = {.lex_state = 19, .external_lex_state = 4}, - [205] = {.lex_state = 19, .external_lex_state = 3}, - [206] = {.lex_state = 19, .external_lex_state = 3}, - [207] = {.lex_state = 19, .external_lex_state = 3}, + [205] = {.lex_state = 19, .external_lex_state = 4}, + [206] = {.lex_state = 19, .external_lex_state = 4}, + [207] = {.lex_state = 19, .external_lex_state = 4}, [208] = {.lex_state = 19, .external_lex_state = 3}, - [209] = {.lex_state = 19, .external_lex_state = 3}, + [209] = {.lex_state = 19, .external_lex_state = 4}, [210] = {.lex_state = 19, .external_lex_state = 4}, - [211] = {.lex_state = 19, .external_lex_state = 3}, - [212] = {.lex_state = 19, .external_lex_state = 4}, - [213] = {.lex_state = 19, .external_lex_state = 3}, - [214] = {.lex_state = 19, .external_lex_state = 4}, - [215] = {.lex_state = 19, .external_lex_state = 4}, - [216] = {.lex_state = 19, .external_lex_state = 4}, - [217] = {.lex_state = 19, .external_lex_state = 4}, - [218] = {.lex_state = 19, .external_lex_state = 4}, - [219] = {.lex_state = 19, .external_lex_state = 4}, - [220] = {.lex_state = 19, .external_lex_state = 4}, - [221] = {.lex_state = 19, .external_lex_state = 4}, - [222] = {.lex_state = 19, .external_lex_state = 4}, - [223] = {.lex_state = 19, .external_lex_state = 3}, - [224] = {.lex_state = 19, .external_lex_state = 4}, - [225] = {.lex_state = 19, .external_lex_state = 4}, - [226] = {.lex_state = 19, .external_lex_state = 5}, - [227] = {.lex_state = 19, .external_lex_state = 5}, - [228] = {.lex_state = 19, .external_lex_state = 5}, - [229] = {.lex_state = 19, .external_lex_state = 5}, - [230] = {.lex_state = 19, .external_lex_state = 5}, - [231] = {.lex_state = 19, .external_lex_state = 5}, - [232] = {.lex_state = 19, .external_lex_state = 5}, - [233] = {.lex_state = 19, .external_lex_state = 5}, - [234] = {.lex_state = 19, .external_lex_state = 5}, - [235] = {.lex_state = 19, .external_lex_state = 5}, - [236] = {.lex_state = 19, .external_lex_state = 5}, - [237] = {.lex_state = 19, .external_lex_state = 5}, - [238] = {.lex_state = 19, .external_lex_state = 5}, - [239] = {.lex_state = 19, .external_lex_state = 5}, - [240] = {.lex_state = 19, .external_lex_state = 5}, - [241] = {.lex_state = 19, .external_lex_state = 5}, - [242] = {.lex_state = 19, .external_lex_state = 5}, - [243] = {.lex_state = 19, .external_lex_state = 5}, - [244] = {.lex_state = 19, .external_lex_state = 5}, - [245] = {.lex_state = 19, .external_lex_state = 5}, - [246] = {.lex_state = 19, .external_lex_state = 5}, - [247] = {.lex_state = 19, .external_lex_state = 5}, - [248] = {.lex_state = 19, .external_lex_state = 5}, - [249] = {.lex_state = 19, .external_lex_state = 5}, - [250] = {.lex_state = 19, .external_lex_state = 5}, - [251] = {.lex_state = 19, .external_lex_state = 5}, - [252] = {.lex_state = 19, .external_lex_state = 5}, - [253] = {.lex_state = 19, .external_lex_state = 5}, - [254] = {.lex_state = 19, .external_lex_state = 3}, - [255] = {.lex_state = 19, .external_lex_state = 5}, - [256] = {.lex_state = 19, .external_lex_state = 3}, - [257] = {.lex_state = 19, .external_lex_state = 3}, - [258] = {.lex_state = 19, .external_lex_state = 5}, - [259] = {.lex_state = 19, .external_lex_state = 5}, - [260] = {.lex_state = 19, .external_lex_state = 4}, - [261] = {.lex_state = 19, .external_lex_state = 5}, - [262] = {.lex_state = 19, .external_lex_state = 5}, - [263] = {.lex_state = 19, .external_lex_state = 5}, - [264] = {.lex_state = 19, .external_lex_state = 5}, - [265] = {.lex_state = 19, .external_lex_state = 5}, - [266] = {.lex_state = 19, .external_lex_state = 5}, - [267] = {.lex_state = 19, .external_lex_state = 5}, - [268] = {.lex_state = 19, .external_lex_state = 5}, - [269] = {.lex_state = 19, .external_lex_state = 5}, - [270] = {.lex_state = 19, .external_lex_state = 3}, - [271] = {.lex_state = 19, .external_lex_state = 5}, - [272] = {.lex_state = 19, .external_lex_state = 5}, - [273] = {.lex_state = 19, .external_lex_state = 4}, - [274] = {.lex_state = 19, .external_lex_state = 3}, - [275] = {.lex_state = 19, .external_lex_state = 3}, - [276] = {.lex_state = 19, .external_lex_state = 3}, - [277] = {.lex_state = 19, .external_lex_state = 3}, - [278] = {.lex_state = 19, .external_lex_state = 3}, - [279] = {.lex_state = 19, .external_lex_state = 7}, - [280] = {.lex_state = 19, .external_lex_state = 3}, - [281] = {.lex_state = 19, .external_lex_state = 7}, - [282] = {.lex_state = 3, .external_lex_state = 20}, - [283] = {.lex_state = 3, .external_lex_state = 20}, - [284] = {.lex_state = 3, .external_lex_state = 20}, - [285] = {.lex_state = 3, .external_lex_state = 20}, - [286] = {.lex_state = 3, .external_lex_state = 20}, - [287] = {.lex_state = 3, .external_lex_state = 20}, - [288] = {.lex_state = 19, .external_lex_state = 21}, - [289] = {.lex_state = 19, .external_lex_state = 21}, - [290] = {.lex_state = 19, .external_lex_state = 21}, - [291] = {.lex_state = 19, .external_lex_state = 21}, - [292] = {.lex_state = 19, .external_lex_state = 21}, - [293] = {.lex_state = 19, .external_lex_state = 21}, - [294] = {.lex_state = 19, .external_lex_state = 21}, - [295] = {.lex_state = 19, .external_lex_state = 21}, - [296] = {.lex_state = 19, .external_lex_state = 21}, - [297] = {.lex_state = 19, .external_lex_state = 21}, - [298] = {.lex_state = 19, .external_lex_state = 21}, - [299] = {.lex_state = 19, .external_lex_state = 21}, - [300] = {.lex_state = 19, .external_lex_state = 22}, - [301] = {.lex_state = 19, .external_lex_state = 22}, - [302] = {.lex_state = 19, .external_lex_state = 23}, - [303] = {.lex_state = 19, .external_lex_state = 22}, - [304] = {.lex_state = 19, .external_lex_state = 22}, - [305] = {.lex_state = 19, .external_lex_state = 22}, - [306] = {.lex_state = 19, .external_lex_state = 22}, - [307] = {.lex_state = 2, .external_lex_state = 20}, - [308] = {.lex_state = 19, .external_lex_state = 24}, - [309] = {.lex_state = 1, .external_lex_state = 25}, - [310] = {.lex_state = 1, .external_lex_state = 25}, - [311] = {.lex_state = 19, .external_lex_state = 24}, - [312] = {.lex_state = 1, .external_lex_state = 25}, - [313] = {.lex_state = 2, .external_lex_state = 20}, - [314] = {.lex_state = 1, .external_lex_state = 25}, - [315] = {.lex_state = 2, .external_lex_state = 20}, - [316] = {.lex_state = 1, .external_lex_state = 25}, - [317] = {.lex_state = 2, .external_lex_state = 20}, - [318] = {.lex_state = 2, .external_lex_state = 20}, - [319] = {.lex_state = 2, .external_lex_state = 20}, - [320] = {.lex_state = 2, .external_lex_state = 20}, - [321] = {.lex_state = 2, .external_lex_state = 20}, - [322] = {.lex_state = 2, .external_lex_state = 20}, - [323] = {.lex_state = 2, .external_lex_state = 20}, - [324] = {.lex_state = 2, .external_lex_state = 20}, - [325] = {.lex_state = 2, .external_lex_state = 20}, - [326] = {.lex_state = 1, .external_lex_state = 25}, - [327] = {.lex_state = 1, .external_lex_state = 25}, - [328] = {.lex_state = 19, .external_lex_state = 20}, - [329] = {.lex_state = 19, .external_lex_state = 24}, - [330] = {.lex_state = 19, .external_lex_state = 26}, - [331] = {.lex_state = 19, .external_lex_state = 26}, - [332] = {.lex_state = 19, .external_lex_state = 23}, - [333] = {.lex_state = 19, .external_lex_state = 20}, - [334] = {.lex_state = 19, .external_lex_state = 20}, - [335] = {.lex_state = 19, .external_lex_state = 20}, - [336] = {.lex_state = 19, .external_lex_state = 20}, - [337] = {.lex_state = 19, .external_lex_state = 20}, - [338] = {.lex_state = 19}, - [339] = {.lex_state = 19, .external_lex_state = 26}, - [340] = {.lex_state = 19}, - [341] = {.lex_state = 2}, - [342] = {.lex_state = 2}, - [343] = {.lex_state = 19, .external_lex_state = 27}, - [344] = {.lex_state = 19, .external_lex_state = 27}, - [345] = {.lex_state = 19, .external_lex_state = 27}, - [346] = {.lex_state = 19, .external_lex_state = 27}, - [347] = {.lex_state = 19, .external_lex_state = 27}, - [348] = {.lex_state = 19, .external_lex_state = 27}, - [349] = {.lex_state = 19, .external_lex_state = 27}, - [350] = {.lex_state = 19, .external_lex_state = 27}, - [351] = {.lex_state = 19, .external_lex_state = 27}, - [352] = {.lex_state = 19, .external_lex_state = 27}, - [353] = {.lex_state = 19, .external_lex_state = 27}, - [354] = {.lex_state = 19, .external_lex_state = 27}, - [355] = {.lex_state = 19, .external_lex_state = 27}, - [356] = {.lex_state = 19, .external_lex_state = 27}, - [357] = {.lex_state = 19, .external_lex_state = 27}, - [358] = {.lex_state = 19}, - [359] = {.lex_state = 19}, - [360] = {.lex_state = 2}, - [361] = {.lex_state = 2}, - [362] = {.lex_state = 19}, - [363] = {.lex_state = 19}, - [364] = {.lex_state = 2}, - [365] = {.lex_state = 2}, - [366] = {.lex_state = 19}, - [367] = {.lex_state = 19}, - [368] = {.lex_state = 2}, - [369] = {.lex_state = 2}, - [370] = {.lex_state = 19}, - [371] = {.lex_state = 19}, - [372] = {.lex_state = 2}, - [373] = {.lex_state = 2}, - [374] = {.lex_state = 19}, - [375] = {.lex_state = 2}, - [376] = {.lex_state = 2}, - [377] = {.lex_state = 19, .external_lex_state = 27}, - [378] = {.lex_state = 19, .external_lex_state = 27}, - [379] = {.lex_state = 19, .external_lex_state = 27}, - [380] = {.lex_state = 19}, - [381] = {.lex_state = 19, .external_lex_state = 20}, - [382] = {.lex_state = 19}, - [383] = {.lex_state = 19, .external_lex_state = 20}, - [384] = {.lex_state = 19, .external_lex_state = 28}, - [385] = {.lex_state = 4}, - [386] = {.lex_state = 0, .external_lex_state = 29}, - [387] = {.lex_state = 19}, - [388] = {.lex_state = 4}, - [389] = {.lex_state = 19, .external_lex_state = 28}, - [390] = {.lex_state = 19}, - [391] = {.lex_state = 0, .external_lex_state = 30}, - [392] = {.lex_state = 5}, - [393] = {.lex_state = 19, .external_lex_state = 20}, - [394] = {.lex_state = 5}, - [395] = {.lex_state = 19, .external_lex_state = 23}, - [396] = {.lex_state = 5}, - [397] = {.lex_state = 5}, - [398] = {.lex_state = 0, .external_lex_state = 29}, - [399] = {.lex_state = 5}, - [400] = {.lex_state = 19, .external_lex_state = 23}, - [401] = {.lex_state = 1, .external_lex_state = 25}, - [402] = {.lex_state = 5}, - [403] = {.lex_state = 5}, - [404] = {.lex_state = 19}, - [405] = {.lex_state = 1, .external_lex_state = 25}, - [406] = {.lex_state = 0, .external_lex_state = 31}, - [407] = {.lex_state = 19}, - [408] = {.lex_state = 19, .external_lex_state = 28}, - [409] = {.lex_state = 19, .external_lex_state = 23}, - [410] = {.lex_state = 0, .external_lex_state = 30}, - [411] = {.lex_state = 4}, - [412] = {.lex_state = 0, .external_lex_state = 31}, - [413] = {.lex_state = 19}, - [414] = {.lex_state = 0, .external_lex_state = 29}, - [415] = {.lex_state = 39, .external_lex_state = 32}, - [416] = {.lex_state = 39, .external_lex_state = 32}, - [417] = {.lex_state = 0, .external_lex_state = 31}, - [418] = {.lex_state = 0, .external_lex_state = 33}, - [419] = {.lex_state = 39, .external_lex_state = 32}, - [420] = {.lex_state = 39, .external_lex_state = 32}, - [421] = {.lex_state = 39, .external_lex_state = 32}, - [422] = {.lex_state = 39, .external_lex_state = 32}, - [423] = {.lex_state = 0, .external_lex_state = 33}, - [424] = {.lex_state = 39, .external_lex_state = 32}, - [425] = {.lex_state = 39, .external_lex_state = 32}, - [426] = {.lex_state = 39, .external_lex_state = 32}, - [427] = {.lex_state = 39, .external_lex_state = 32}, - [428] = {.lex_state = 0, .external_lex_state = 33}, - [429] = {.lex_state = 39, .external_lex_state = 32}, - [430] = {.lex_state = 39, .external_lex_state = 32}, - [431] = {.lex_state = 39, .external_lex_state = 32}, - [432] = {.lex_state = 0, .external_lex_state = 33}, - [433] = {.lex_state = 0, .external_lex_state = 30}, - [434] = {.lex_state = 39, .external_lex_state = 32}, - [435] = {.lex_state = 39, .external_lex_state = 32}, - [436] = {.lex_state = 0, .external_lex_state = 33}, - [437] = {.lex_state = 39, .external_lex_state = 32}, - [438] = {.lex_state = 39, .external_lex_state = 32}, + [211] = {.lex_state = 19, .external_lex_state = 6}, + [212] = {.lex_state = 19, .external_lex_state = 6}, + [213] = {.lex_state = 3, .external_lex_state = 15}, + [214] = {.lex_state = 3, .external_lex_state = 15}, + [215] = {.lex_state = 3, .external_lex_state = 15}, + [216] = {.lex_state = 3, .external_lex_state = 15}, + [217] = {.lex_state = 3, .external_lex_state = 15}, + [218] = {.lex_state = 19, .external_lex_state = 16}, + [219] = {.lex_state = 19, .external_lex_state = 16}, + [220] = {.lex_state = 19, .external_lex_state = 16}, + [221] = {.lex_state = 19, .external_lex_state = 16}, + [222] = {.lex_state = 19, .external_lex_state = 16}, + [223] = {.lex_state = 19, .external_lex_state = 16}, + [224] = {.lex_state = 19, .external_lex_state = 16}, + [225] = {.lex_state = 19, .external_lex_state = 16}, + [226] = {.lex_state = 19, .external_lex_state = 16}, + [227] = {.lex_state = 19, .external_lex_state = 16}, + [228] = {.lex_state = 19, .external_lex_state = 17}, + [229] = {.lex_state = 19, .external_lex_state = 18}, + [230] = {.lex_state = 19, .external_lex_state = 18}, + [231] = {.lex_state = 19, .external_lex_state = 18}, + [232] = {.lex_state = 19, .external_lex_state = 18}, + [233] = {.lex_state = 19, .external_lex_state = 18}, + [234] = {.lex_state = 1, .external_lex_state = 19}, + [235] = {.lex_state = 1, .external_lex_state = 19}, + [236] = {.lex_state = 1, .external_lex_state = 19}, + [237] = {.lex_state = 1, .external_lex_state = 19}, + [238] = {.lex_state = 19, .external_lex_state = 20}, + [239] = {.lex_state = 2, .external_lex_state = 15}, + [240] = {.lex_state = 19, .external_lex_state = 20}, + [241] = {.lex_state = 1, .external_lex_state = 19}, + [242] = {.lex_state = 1, .external_lex_state = 19}, + [243] = {.lex_state = 2, .external_lex_state = 15}, + [244] = {.lex_state = 2, .external_lex_state = 15}, + [245] = {.lex_state = 2, .external_lex_state = 15}, + [246] = {.lex_state = 2, .external_lex_state = 15}, + [247] = {.lex_state = 2, .external_lex_state = 15}, + [248] = {.lex_state = 2, .external_lex_state = 15}, + [249] = {.lex_state = 2, .external_lex_state = 15}, + [250] = {.lex_state = 2, .external_lex_state = 15}, + [251] = {.lex_state = 2, .external_lex_state = 15}, + [252] = {.lex_state = 19, .external_lex_state = 15}, + [253] = {.lex_state = 19, .external_lex_state = 21}, + [254] = {.lex_state = 19, .external_lex_state = 21}, + [255] = {.lex_state = 19, .external_lex_state = 20}, + [256] = {.lex_state = 19, .external_lex_state = 15}, + [257] = {.lex_state = 19, .external_lex_state = 17}, + [258] = {.lex_state = 19, .external_lex_state = 15}, + [259] = {.lex_state = 19, .external_lex_state = 15}, + [260] = {.lex_state = 19, .external_lex_state = 15}, + [261] = {.lex_state = 19, .external_lex_state = 22}, + [262] = {.lex_state = 2}, + [263] = {.lex_state = 19}, + [264] = {.lex_state = 2}, + [265] = {.lex_state = 19, .external_lex_state = 21}, + [266] = {.lex_state = 19, .external_lex_state = 22}, + [267] = {.lex_state = 19, .external_lex_state = 22}, + [268] = {.lex_state = 19}, + [269] = {.lex_state = 19, .external_lex_state = 22}, + [270] = {.lex_state = 19, .external_lex_state = 22}, + [271] = {.lex_state = 19, .external_lex_state = 22}, + [272] = {.lex_state = 19, .external_lex_state = 22}, + [273] = {.lex_state = 19, .external_lex_state = 22}, + [274] = {.lex_state = 19, .external_lex_state = 22}, + [275] = {.lex_state = 19, .external_lex_state = 22}, + [276] = {.lex_state = 19, .external_lex_state = 22}, + [277] = {.lex_state = 19, .external_lex_state = 22}, + [278] = {.lex_state = 19, .external_lex_state = 22}, + [279] = {.lex_state = 19}, + [280] = {.lex_state = 19}, + [281] = {.lex_state = 2}, + [282] = {.lex_state = 2}, + [283] = {.lex_state = 19}, + [284] = {.lex_state = 19}, + [285] = {.lex_state = 2}, + [286] = {.lex_state = 2}, + [287] = {.lex_state = 19}, + [288] = {.lex_state = 19}, + [289] = {.lex_state = 2}, + [290] = {.lex_state = 2}, + [291] = {.lex_state = 19, .external_lex_state = 22}, + [292] = {.lex_state = 19}, + [293] = {.lex_state = 2}, + [294] = {.lex_state = 2}, + [295] = {.lex_state = 19, .external_lex_state = 22}, + [296] = {.lex_state = 19}, + [297] = {.lex_state = 19, .external_lex_state = 15}, + [298] = {.lex_state = 19, .external_lex_state = 15}, + [299] = {.lex_state = 19}, + [300] = {.lex_state = 19, .external_lex_state = 23}, + [301] = {.lex_state = 0, .external_lex_state = 24}, + [302] = {.lex_state = 4}, + [303] = {.lex_state = 19}, + [304] = {.lex_state = 4}, + [305] = {.lex_state = 19, .external_lex_state = 23}, + [306] = {.lex_state = 19}, + [307] = {.lex_state = 19}, + [308] = {.lex_state = 5}, + [309] = {.lex_state = 5}, + [310] = {.lex_state = 0, .external_lex_state = 25}, + [311] = {.lex_state = 0, .external_lex_state = 26}, + [312] = {.lex_state = 0, .external_lex_state = 24}, + [313] = {.lex_state = 1, .external_lex_state = 19}, + [314] = {.lex_state = 19, .external_lex_state = 15}, + [315] = {.lex_state = 5}, + [316] = {.lex_state = 5}, + [317] = {.lex_state = 19, .external_lex_state = 17}, + [318] = {.lex_state = 1, .external_lex_state = 19}, + [319] = {.lex_state = 5}, + [320] = {.lex_state = 5}, + [321] = {.lex_state = 19, .external_lex_state = 17}, + [322] = {.lex_state = 19}, + [323] = {.lex_state = 0, .external_lex_state = 25}, + [324] = {.lex_state = 19, .external_lex_state = 17}, + [325] = {.lex_state = 0, .external_lex_state = 26}, + [326] = {.lex_state = 19, .external_lex_state = 23}, + [327] = {.lex_state = 4}, + [328] = {.lex_state = 19}, + [329] = {.lex_state = 0, .external_lex_state = 24}, + [330] = {.lex_state = 39, .external_lex_state = 27}, + [331] = {.lex_state = 0, .external_lex_state = 25}, + [332] = {.lex_state = 39, .external_lex_state = 27}, + [333] = {.lex_state = 39, .external_lex_state = 27}, + [334] = {.lex_state = 39, .external_lex_state = 27}, + [335] = {.lex_state = 0, .external_lex_state = 28}, + [336] = {.lex_state = 39, .external_lex_state = 27}, + [337] = {.lex_state = 39, .external_lex_state = 27}, + [338] = {.lex_state = 0, .external_lex_state = 28}, + [339] = {.lex_state = 39, .external_lex_state = 27}, + [340] = {.lex_state = 0, .external_lex_state = 28}, + [341] = {.lex_state = 39, .external_lex_state = 27}, + [342] = {.lex_state = 39, .external_lex_state = 27}, + [343] = {.lex_state = 39, .external_lex_state = 27}, + [344] = {.lex_state = 0, .external_lex_state = 28}, + [345] = {.lex_state = 39, .external_lex_state = 27}, + [346] = {.lex_state = 0, .external_lex_state = 28}, + [347] = {.lex_state = 0, .external_lex_state = 26}, + [348] = {.lex_state = 39, .external_lex_state = 27}, + [349] = {.lex_state = 39, .external_lex_state = 27}, + [350] = {.lex_state = 39, .external_lex_state = 27}, + [351] = {.lex_state = 0, .external_lex_state = 28}, + [352] = {.lex_state = 39, .external_lex_state = 27}, + [353] = {.lex_state = 0, .external_lex_state = 29}, + [354] = {.lex_state = 0, .external_lex_state = 29}, + [355] = {.lex_state = 0, .external_lex_state = 30}, + [356] = {.lex_state = 0, .external_lex_state = 29}, + [357] = {.lex_state = 0, .external_lex_state = 30}, + [358] = {.lex_state = 0, .external_lex_state = 29}, + [359] = {.lex_state = 0, .external_lex_state = 31}, + [360] = {.lex_state = 0, .external_lex_state = 31}, + [361] = {.lex_state = 0, .external_lex_state = 31}, + [362] = {.lex_state = 0, .external_lex_state = 31}, + [363] = {.lex_state = 0, .external_lex_state = 30}, + [364] = {.lex_state = 0, .external_lex_state = 31}, + [365] = {.lex_state = 0, .external_lex_state = 30}, + [366] = {.lex_state = 39, .external_lex_state = 27}, + [367] = {.lex_state = 0, .external_lex_state = 30}, + [368] = {.lex_state = 0, .external_lex_state = 29}, + [369] = {.lex_state = 39, .external_lex_state = 27}, + [370] = {.lex_state = 0, .external_lex_state = 30}, + [371] = {.lex_state = 0, .external_lex_state = 29}, + [372] = {.lex_state = 0, .external_lex_state = 31}, + [373] = {.lex_state = 5}, + [374] = {.lex_state = 5}, + [375] = {.lex_state = 0, .external_lex_state = 32}, + [376] = {.lex_state = 5}, + [377] = {.lex_state = 5}, + [378] = {.lex_state = 5}, + [379] = {.lex_state = 0, .external_lex_state = 32}, + [380] = {.lex_state = 0, .external_lex_state = 32}, + [381] = {.lex_state = 0, .external_lex_state = 32}, + [382] = {.lex_state = 0, .external_lex_state = 32}, + [383] = {.lex_state = 5}, + [384] = {.lex_state = 0, .external_lex_state = 33}, + [385] = {.lex_state = 0, .external_lex_state = 33}, + [386] = {.lex_state = 0, .external_lex_state = 32}, + [387] = {.lex_state = 0, .external_lex_state = 32}, + [388] = {.lex_state = 0, .external_lex_state = 32}, + [389] = {.lex_state = 0, .external_lex_state = 32}, + [390] = {.lex_state = 0, .external_lex_state = 32}, + [391] = {.lex_state = 0, .external_lex_state = 32}, + [392] = {.lex_state = 0, .external_lex_state = 32}, + [393] = {.lex_state = 0, .external_lex_state = 32}, + [394] = {.lex_state = 0, .external_lex_state = 32}, + [395] = {.lex_state = 0, .external_lex_state = 32}, + [396] = {.lex_state = 0, .external_lex_state = 32}, + [397] = {.lex_state = 0, .external_lex_state = 32}, + [398] = {.lex_state = 0, .external_lex_state = 32}, + [399] = {.lex_state = 0, .external_lex_state = 32}, + [400] = {.lex_state = 0, .external_lex_state = 32}, + [401] = {.lex_state = 0, .external_lex_state = 32}, + [402] = {.lex_state = 0, .external_lex_state = 32}, + [403] = {.lex_state = 0, .external_lex_state = 32}, + [404] = {.lex_state = 0, .external_lex_state = 32}, + [405] = {.lex_state = 0, .external_lex_state = 32}, + [406] = {.lex_state = 0, .external_lex_state = 32}, + [407] = {.lex_state = 0, .external_lex_state = 32}, + [408] = {.lex_state = 0, .external_lex_state = 32}, + [409] = {.lex_state = 0, .external_lex_state = 32}, + [410] = {.lex_state = 0, .external_lex_state = 32}, + [411] = {.lex_state = 0, .external_lex_state = 32}, + [412] = {.lex_state = 0, .external_lex_state = 32}, + [413] = {.lex_state = 0, .external_lex_state = 32}, + [414] = {.lex_state = 0, .external_lex_state = 33}, + [415] = {.lex_state = 0, .external_lex_state = 32}, + [416] = {.lex_state = 0, .external_lex_state = 32}, + [417] = {.lex_state = 5}, + [418] = {.lex_state = 0, .external_lex_state = 24}, + [419] = {.lex_state = 0, .external_lex_state = 33}, + [420] = {.lex_state = 0, .external_lex_state = 33}, + [421] = {.lex_state = 0, .external_lex_state = 32}, + [422] = {.lex_state = 0, .external_lex_state = 24}, + [423] = {.lex_state = 0, .external_lex_state = 24}, + [424] = {.lex_state = 0, .external_lex_state = 32}, + [425] = {.lex_state = 0, .external_lex_state = 24}, + [426] = {.lex_state = 0, .external_lex_state = 24}, + [427] = {.lex_state = 0, .external_lex_state = 24}, + [428] = {.lex_state = 0, .external_lex_state = 32}, + [429] = {.lex_state = 0, .external_lex_state = 24}, + [430] = {.lex_state = 0, .external_lex_state = 32}, + [431] = {.lex_state = 0, .external_lex_state = 32}, + [432] = {.lex_state = 0, .external_lex_state = 32}, + [433] = {.lex_state = 0, .external_lex_state = 33}, + [434] = {.lex_state = 0, .external_lex_state = 33}, + [435] = {.lex_state = 0, .external_lex_state = 33}, + [436] = {.lex_state = 5}, + [437] = {.lex_state = 0, .external_lex_state = 32}, + [438] = {.lex_state = 5}, [439] = {.lex_state = 0, .external_lex_state = 33}, [440] = {.lex_state = 0, .external_lex_state = 33}, - [441] = {.lex_state = 39, .external_lex_state = 32}, - [442] = {.lex_state = 0, .external_lex_state = 34}, - [443] = {.lex_state = 0, .external_lex_state = 35}, - [444] = {.lex_state = 0, .external_lex_state = 34}, - [445] = {.lex_state = 0, .external_lex_state = 36}, - [446] = {.lex_state = 0, .external_lex_state = 34}, - [447] = {.lex_state = 0, .external_lex_state = 35}, - [448] = {.lex_state = 0, .external_lex_state = 35}, - [449] = {.lex_state = 0, .external_lex_state = 36}, - [450] = {.lex_state = 0, .external_lex_state = 36}, - [451] = {.lex_state = 0, .external_lex_state = 34}, - [452] = {.lex_state = 0, .external_lex_state = 34}, - [453] = {.lex_state = 0, .external_lex_state = 36}, - [454] = {.lex_state = 0, .external_lex_state = 36}, - [455] = {.lex_state = 0, .external_lex_state = 34}, - [456] = {.lex_state = 0, .external_lex_state = 35}, - [457] = {.lex_state = 39, .external_lex_state = 32}, - [458] = {.lex_state = 0, .external_lex_state = 34}, - [459] = {.lex_state = 0, .external_lex_state = 35}, - [460] = {.lex_state = 0, .external_lex_state = 35}, - [461] = {.lex_state = 39, .external_lex_state = 32}, - [462] = {.lex_state = 0, .external_lex_state = 36}, - [463] = {.lex_state = 0, .external_lex_state = 35}, - [464] = {.lex_state = 0, .external_lex_state = 36}, - [465] = {.lex_state = 0, .external_lex_state = 29}, - [466] = {.lex_state = 0, .external_lex_state = 37}, + [441] = {.lex_state = 0, .external_lex_state = 33}, + [442] = {.lex_state = 5}, + [443] = {.lex_state = 0, .external_lex_state = 25}, + [444] = {.lex_state = 0, .external_lex_state = 26}, + [445] = {.lex_state = 0, .external_lex_state = 26}, + [446] = {.lex_state = 0, .external_lex_state = 26}, + [447] = {.lex_state = 0, .external_lex_state = 26}, + [448] = {.lex_state = 0, .external_lex_state = 27}, + [449] = {.lex_state = 0, .external_lex_state = 27}, + [450] = {.lex_state = 0, .external_lex_state = 26}, + [451] = {.lex_state = 0, .external_lex_state = 27}, + [452] = {.lex_state = 0, .external_lex_state = 26}, + [453] = {.lex_state = 0, .external_lex_state = 25}, + [454] = {.lex_state = 0, .external_lex_state = 25}, + [455] = {.lex_state = 0, .external_lex_state = 26}, + [456] = {.lex_state = 0, .external_lex_state = 34}, + [457] = {.lex_state = 0, .external_lex_state = 25}, + [458] = {.lex_state = 0, .external_lex_state = 25}, + [459] = {.lex_state = 0, .external_lex_state = 25}, + [460] = {.lex_state = 0, .external_lex_state = 25}, + [461] = {.lex_state = 0, .external_lex_state = 35}, + [462] = {.lex_state = 7, .external_lex_state = 22}, + [463] = {.lex_state = 39}, + [464] = {.lex_state = 7, .external_lex_state = 22}, + [465] = {.lex_state = 0, .external_lex_state = 36}, + [466] = {.lex_state = 8}, [467] = {.lex_state = 0, .external_lex_state = 37}, - [468] = {.lex_state = 0, .external_lex_state = 37}, - [469] = {.lex_state = 0, .external_lex_state = 37}, - [470] = {.lex_state = 0, .external_lex_state = 37}, - [471] = {.lex_state = 0, .external_lex_state = 37}, - [472] = {.lex_state = 0, .external_lex_state = 37}, - [473] = {.lex_state = 0, .external_lex_state = 37}, - [474] = {.lex_state = 0, .external_lex_state = 37}, - [475] = {.lex_state = 0, .external_lex_state = 37}, - [476] = {.lex_state = 0, .external_lex_state = 37}, - [477] = {.lex_state = 0, .external_lex_state = 37}, - [478] = {.lex_state = 0, .external_lex_state = 37}, - [479] = {.lex_state = 0, .external_lex_state = 37}, + [468] = {.lex_state = 39, .external_lex_state = 38}, + [469] = {.lex_state = 39}, + [470] = {.lex_state = 0, .external_lex_state = 39}, + [471] = {.lex_state = 0, .external_lex_state = 40}, + [472] = {.lex_state = 0, .external_lex_state = 39}, + [473] = {.lex_state = 0, .external_lex_state = 39}, + [474] = {.lex_state = 0, .external_lex_state = 40}, + [475] = {.lex_state = 0, .external_lex_state = 40}, + [476] = {.lex_state = 0, .external_lex_state = 40}, + [477] = {.lex_state = 0, .external_lex_state = 39}, + [478] = {.lex_state = 0, .external_lex_state = 40}, + [479] = {.lex_state = 0, .external_lex_state = 40}, [480] = {.lex_state = 0, .external_lex_state = 37}, - [481] = {.lex_state = 0, .external_lex_state = 37}, - [482] = {.lex_state = 5}, - [483] = {.lex_state = 5}, - [484] = {.lex_state = 5}, - [485] = {.lex_state = 0, .external_lex_state = 37}, - [486] = {.lex_state = 0, .external_lex_state = 29}, - [487] = {.lex_state = 0, .external_lex_state = 29}, - [488] = {.lex_state = 5}, - [489] = {.lex_state = 5}, - [490] = {.lex_state = 5}, - [491] = {.lex_state = 5}, - [492] = {.lex_state = 0, .external_lex_state = 37}, - [493] = {.lex_state = 0, .external_lex_state = 37}, - [494] = {.lex_state = 0, .external_lex_state = 37}, - [495] = {.lex_state = 5}, - [496] = {.lex_state = 0, .external_lex_state = 37}, - [497] = {.lex_state = 0, .external_lex_state = 37}, - [498] = {.lex_state = 0, .external_lex_state = 29}, - [499] = {.lex_state = 0, .external_lex_state = 37}, - [500] = {.lex_state = 5}, - [501] = {.lex_state = 0, .external_lex_state = 37}, - [502] = {.lex_state = 0, .external_lex_state = 37}, - [503] = {.lex_state = 0, .external_lex_state = 37}, - [504] = {.lex_state = 0, .external_lex_state = 29}, - [505] = {.lex_state = 0, .external_lex_state = 29}, - [506] = {.lex_state = 0, .external_lex_state = 29}, - [507] = {.lex_state = 0, .external_lex_state = 37}, - [508] = {.lex_state = 0, .external_lex_state = 37}, - [509] = {.lex_state = 0, .external_lex_state = 37}, - [510] = {.lex_state = 0, .external_lex_state = 37}, - [511] = {.lex_state = 0, .external_lex_state = 37}, - [512] = {.lex_state = 0, .external_lex_state = 37}, - [513] = {.lex_state = 0, .external_lex_state = 37}, - [514] = {.lex_state = 0, .external_lex_state = 37}, - [515] = {.lex_state = 0, .external_lex_state = 37}, - [516] = {.lex_state = 0, .external_lex_state = 37}, - [517] = {.lex_state = 0, .external_lex_state = 37}, - [518] = {.lex_state = 0, .external_lex_state = 37}, - [519] = {.lex_state = 0, .external_lex_state = 37}, - [520] = {.lex_state = 0, .external_lex_state = 37}, - [521] = {.lex_state = 0, .external_lex_state = 37}, - [522] = {.lex_state = 5}, - [523] = {.lex_state = 0, .external_lex_state = 37}, - [524] = {.lex_state = 0, .external_lex_state = 30}, - [525] = {.lex_state = 0, .external_lex_state = 30}, - [526] = {.lex_state = 0, .external_lex_state = 32}, - [527] = {.lex_state = 0, .external_lex_state = 30}, - [528] = {.lex_state = 0, .external_lex_state = 31}, - [529] = {.lex_state = 0, .external_lex_state = 30}, - [530] = {.lex_state = 0, .external_lex_state = 30}, - [531] = {.lex_state = 0, .external_lex_state = 30}, - [532] = {.lex_state = 0, .external_lex_state = 31}, - [533] = {.lex_state = 0, .external_lex_state = 32}, - [534] = {.lex_state = 0, .external_lex_state = 31}, - [535] = {.lex_state = 0, .external_lex_state = 32}, - [536] = {.lex_state = 0, .external_lex_state = 31}, - [537] = {.lex_state = 0, .external_lex_state = 31}, - [538] = {.lex_state = 0, .external_lex_state = 31}, - [539] = {.lex_state = 0, .external_lex_state = 30}, - [540] = {.lex_state = 0, .external_lex_state = 31}, - [541] = {.lex_state = 0, .external_lex_state = 38}, - [542] = {.lex_state = 0, .external_lex_state = 39}, - [543] = {.lex_state = 7, .external_lex_state = 27}, - [544] = {.lex_state = 8}, - [545] = {.lex_state = 0, .external_lex_state = 40}, - [546] = {.lex_state = 39, .external_lex_state = 41}, - [547] = {.lex_state = 39}, - [548] = {.lex_state = 0, .external_lex_state = 42}, + [481] = {.lex_state = 8}, + [482] = {.lex_state = 8}, + [483] = {.lex_state = 0, .external_lex_state = 41}, + [484] = {.lex_state = 0, .external_lex_state = 42}, + [485] = {.lex_state = 0, .external_lex_state = 43}, + [486] = {.lex_state = 0, .external_lex_state = 44}, + [487] = {.lex_state = 0, .external_lex_state = 45}, + [488] = {.lex_state = 0, .external_lex_state = 46}, + [489] = {.lex_state = 0, .external_lex_state = 47}, + [490] = {.lex_state = 0, .external_lex_state = 48}, + [491] = {.lex_state = 0, .external_lex_state = 49}, + [492] = {.lex_state = 0, .external_lex_state = 35}, + [493] = {.lex_state = 0, .external_lex_state = 50}, + [494] = {.lex_state = 0, .external_lex_state = 51}, + [495] = {.lex_state = 0, .external_lex_state = 52}, + [496] = {.lex_state = 0, .external_lex_state = 53}, + [497] = {.lex_state = 0, .external_lex_state = 54}, + [498] = {.lex_state = 39, .external_lex_state = 38}, + [499] = {.lex_state = 0, .external_lex_state = 41}, + [500] = {.lex_state = 0, .external_lex_state = 42}, + [501] = {.lex_state = 0, .external_lex_state = 43}, + [502] = {.lex_state = 0, .external_lex_state = 44}, + [503] = {.lex_state = 0, .external_lex_state = 45}, + [504] = {.lex_state = 0, .external_lex_state = 46}, + [505] = {.lex_state = 0, .external_lex_state = 47}, + [506] = {.lex_state = 0, .external_lex_state = 48}, + [507] = {.lex_state = 0, .external_lex_state = 49}, + [508] = {.lex_state = 0, .external_lex_state = 35}, + [509] = {.lex_state = 0, .external_lex_state = 50}, + [510] = {.lex_state = 0, .external_lex_state = 51}, + [511] = {.lex_state = 0, .external_lex_state = 52}, + [512] = {.lex_state = 0, .external_lex_state = 55}, + [513] = {.lex_state = 0, .external_lex_state = 53}, + [514] = {.lex_state = 0, .external_lex_state = 54}, + [515] = {.lex_state = 0, .external_lex_state = 41}, + [516] = {.lex_state = 0, .external_lex_state = 42}, + [517] = {.lex_state = 0, .external_lex_state = 43}, + [518] = {.lex_state = 0, .external_lex_state = 44}, + [519] = {.lex_state = 0, .external_lex_state = 45}, + [520] = {.lex_state = 0, .external_lex_state = 46}, + [521] = {.lex_state = 0, .external_lex_state = 47}, + [522] = {.lex_state = 0, .external_lex_state = 48}, + [523] = {.lex_state = 0, .external_lex_state = 49}, + [524] = {.lex_state = 0, .external_lex_state = 35}, + [525] = {.lex_state = 0, .external_lex_state = 50}, + [526] = {.lex_state = 0, .external_lex_state = 51}, + [527] = {.lex_state = 0, .external_lex_state = 52}, + [528] = {.lex_state = 0, .external_lex_state = 55}, + [529] = {.lex_state = 0, .external_lex_state = 53}, + [530] = {.lex_state = 0, .external_lex_state = 54}, + [531] = {.lex_state = 0, .external_lex_state = 41}, + [532] = {.lex_state = 0, .external_lex_state = 42}, + [533] = {.lex_state = 0, .external_lex_state = 41}, + [534] = {.lex_state = 0, .external_lex_state = 42}, + [535] = {.lex_state = 0, .external_lex_state = 43}, + [536] = {.lex_state = 0, .external_lex_state = 44}, + [537] = {.lex_state = 0, .external_lex_state = 45}, + [538] = {.lex_state = 0, .external_lex_state = 46}, + [539] = {.lex_state = 0, .external_lex_state = 47}, + [540] = {.lex_state = 0, .external_lex_state = 48}, + [541] = {.lex_state = 0, .external_lex_state = 49}, + [542] = {.lex_state = 0, .external_lex_state = 35}, + [543] = {.lex_state = 0, .external_lex_state = 50}, + [544] = {.lex_state = 0, .external_lex_state = 51}, + [545] = {.lex_state = 0, .external_lex_state = 52}, + [546] = {.lex_state = 0, .external_lex_state = 55}, + [547] = {.lex_state = 0, .external_lex_state = 53}, + [548] = {.lex_state = 0, .external_lex_state = 54}, [549] = {.lex_state = 0, .external_lex_state = 43}, - [550] = {.lex_state = 0, .external_lex_state = 42}, - [551] = {.lex_state = 0, .external_lex_state = 42}, - [552] = {.lex_state = 0, .external_lex_state = 43}, - [553] = {.lex_state = 0, .external_lex_state = 43}, + [550] = {.lex_state = 0, .external_lex_state = 41}, + [551] = {.lex_state = 0, .external_lex_state = 44}, + [552] = {.lex_state = 0, .external_lex_state = 42}, + [553] = {.lex_state = 0, .external_lex_state = 45}, [554] = {.lex_state = 0, .external_lex_state = 43}, - [555] = {.lex_state = 0, .external_lex_state = 42}, - [556] = {.lex_state = 0, .external_lex_state = 43}, - [557] = {.lex_state = 0, .external_lex_state = 43}, - [558] = {.lex_state = 0, .external_lex_state = 40}, - [559] = {.lex_state = 8}, - [560] = {.lex_state = 8}, - [561] = {.lex_state = 39, .external_lex_state = 41}, - [562] = {.lex_state = 0, .external_lex_state = 44}, - [563] = {.lex_state = 0, .external_lex_state = 45}, - [564] = {.lex_state = 0, .external_lex_state = 46}, - [565] = {.lex_state = 0, .external_lex_state = 47}, - [566] = {.lex_state = 0, .external_lex_state = 48}, - [567] = {.lex_state = 0, .external_lex_state = 49}, - [568] = {.lex_state = 0, .external_lex_state = 50}, - [569] = {.lex_state = 0, .external_lex_state = 51}, - [570] = {.lex_state = 0, .external_lex_state = 52}, - [571] = {.lex_state = 0, .external_lex_state = 53}, - [572] = {.lex_state = 0, .external_lex_state = 54}, - [573] = {.lex_state = 0, .external_lex_state = 55}, - [574] = {.lex_state = 0, .external_lex_state = 56}, - [575] = {.lex_state = 0, .external_lex_state = 57}, - [576] = {.lex_state = 0, .external_lex_state = 58}, - [577] = {.lex_state = 0, .external_lex_state = 44}, - [578] = {.lex_state = 0, .external_lex_state = 45}, - [579] = {.lex_state = 0, .external_lex_state = 44}, - [580] = {.lex_state = 0, .external_lex_state = 39}, - [581] = {.lex_state = 0, .external_lex_state = 45}, - [582] = {.lex_state = 0, .external_lex_state = 46}, - [583] = {.lex_state = 0, .external_lex_state = 39}, - [584] = {.lex_state = 0, .external_lex_state = 47}, - [585] = {.lex_state = 0, .external_lex_state = 46}, - [586] = {.lex_state = 0, .external_lex_state = 48}, - [587] = {.lex_state = 0, .external_lex_state = 47}, - [588] = {.lex_state = 0, .external_lex_state = 49}, - [589] = {.lex_state = 0, .external_lex_state = 44}, - [590] = {.lex_state = 0, .external_lex_state = 45}, - [591] = {.lex_state = 0, .external_lex_state = 46}, - [592] = {.lex_state = 0, .external_lex_state = 47}, - [593] = {.lex_state = 0, .external_lex_state = 48}, - [594] = {.lex_state = 0, .external_lex_state = 49}, - [595] = {.lex_state = 0, .external_lex_state = 50}, - [596] = {.lex_state = 0, .external_lex_state = 51}, - [597] = {.lex_state = 0, .external_lex_state = 52}, - [598] = {.lex_state = 0, .external_lex_state = 53}, - [599] = {.lex_state = 0, .external_lex_state = 54}, - [600] = {.lex_state = 0, .external_lex_state = 55}, - [601] = {.lex_state = 0, .external_lex_state = 56}, - [602] = {.lex_state = 0, .external_lex_state = 57}, - [603] = {.lex_state = 0, .external_lex_state = 58}, - [604] = {.lex_state = 0, .external_lex_state = 48}, - [605] = {.lex_state = 0, .external_lex_state = 50}, - [606] = {.lex_state = 0, .external_lex_state = 49}, - [607] = {.lex_state = 0, .external_lex_state = 51}, - [608] = {.lex_state = 0, .external_lex_state = 50}, - [609] = {.lex_state = 0, .external_lex_state = 52}, - [610] = {.lex_state = 0, .external_lex_state = 51}, - [611] = {.lex_state = 0, .external_lex_state = 53}, - [612] = {.lex_state = 0, .external_lex_state = 44}, - [613] = {.lex_state = 0, .external_lex_state = 45}, - [614] = {.lex_state = 0, .external_lex_state = 39}, - [615] = {.lex_state = 0, .external_lex_state = 46}, - [616] = {.lex_state = 0, .external_lex_state = 47}, - [617] = {.lex_state = 0, .external_lex_state = 48}, - [618] = {.lex_state = 0, .external_lex_state = 49}, - [619] = {.lex_state = 0, .external_lex_state = 50}, - [620] = {.lex_state = 0, .external_lex_state = 51}, - [621] = {.lex_state = 0, .external_lex_state = 52}, - [622] = {.lex_state = 0, .external_lex_state = 53}, - [623] = {.lex_state = 0, .external_lex_state = 54}, - [624] = {.lex_state = 0, .external_lex_state = 55}, - [625] = {.lex_state = 0, .external_lex_state = 56}, - [626] = {.lex_state = 0, .external_lex_state = 57}, - [627] = {.lex_state = 0, .external_lex_state = 58}, - [628] = {.lex_state = 0, .external_lex_state = 52}, - [629] = {.lex_state = 0, .external_lex_state = 54}, - [630] = {.lex_state = 0, .external_lex_state = 53}, - [631] = {.lex_state = 0, .external_lex_state = 55}, - [632] = {.lex_state = 0, .external_lex_state = 44}, - [633] = {.lex_state = 0, .external_lex_state = 45}, - [634] = {.lex_state = 0, .external_lex_state = 39}, - [635] = {.lex_state = 0, .external_lex_state = 46}, - [636] = {.lex_state = 0, .external_lex_state = 47}, - [637] = {.lex_state = 0, .external_lex_state = 48}, - [638] = {.lex_state = 0, .external_lex_state = 49}, - [639] = {.lex_state = 0, .external_lex_state = 50}, - [640] = {.lex_state = 0, .external_lex_state = 51}, - [641] = {.lex_state = 0, .external_lex_state = 52}, - [642] = {.lex_state = 0, .external_lex_state = 53}, - [643] = {.lex_state = 0, .external_lex_state = 54}, - [644] = {.lex_state = 0, .external_lex_state = 55}, - [645] = {.lex_state = 0, .external_lex_state = 56}, - [646] = {.lex_state = 0, .external_lex_state = 57}, - [647] = {.lex_state = 0, .external_lex_state = 58}, - [648] = {.lex_state = 0, .external_lex_state = 54}, - [649] = {.lex_state = 0, .external_lex_state = 56}, - [650] = {.lex_state = 0, .external_lex_state = 55}, - [651] = {.lex_state = 0, .external_lex_state = 57}, - [652] = {.lex_state = 0, .external_lex_state = 56}, - [653] = {.lex_state = 0, .external_lex_state = 58}, - [654] = {.lex_state = 0, .external_lex_state = 57}, - [655] = {.lex_state = 0, .external_lex_state = 44}, - [656] = {.lex_state = 0, .external_lex_state = 45}, - [657] = {.lex_state = 0, .external_lex_state = 39}, - [658] = {.lex_state = 0, .external_lex_state = 46}, - [659] = {.lex_state = 0, .external_lex_state = 47}, - [660] = {.lex_state = 0, .external_lex_state = 48}, - [661] = {.lex_state = 0, .external_lex_state = 49}, - [662] = {.lex_state = 0, .external_lex_state = 50}, - [663] = {.lex_state = 0, .external_lex_state = 51}, - [664] = {.lex_state = 0, .external_lex_state = 52}, - [665] = {.lex_state = 0, .external_lex_state = 53}, - [666] = {.lex_state = 0, .external_lex_state = 54}, - [667] = {.lex_state = 0, .external_lex_state = 55}, - [668] = {.lex_state = 0, .external_lex_state = 56}, - [669] = {.lex_state = 0, .external_lex_state = 57}, - [670] = {.lex_state = 0, .external_lex_state = 58}, - [671] = {.lex_state = 0, .external_lex_state = 58}, - [672] = {.lex_state = 7, .external_lex_state = 27}, - [673] = {.lex_state = 7, .external_lex_state = 27}, - [674] = {.lex_state = 0, .external_lex_state = 59}, - [675] = {.lex_state = 7, .external_lex_state = 27}, - [676] = {.lex_state = 39}, - [677] = {.lex_state = 7, .external_lex_state = 27}, - [678] = {.lex_state = 7, .external_lex_state = 27}, - [679] = {.lex_state = 0, .external_lex_state = 39}, - [680] = {.lex_state = 0, .external_lex_state = 37}, - [681] = {.lex_state = 0, .external_lex_state = 60}, - [682] = {.lex_state = 0, .external_lex_state = 37}, - [683] = {.lex_state = 0, .external_lex_state = 35}, - [684] = {.lex_state = 0, .external_lex_state = 36}, - [685] = {.lex_state = 0, .external_lex_state = 35}, - [686] = {.lex_state = 0, .external_lex_state = 37}, - [687] = {.lex_state = 0, .external_lex_state = 37}, - [688] = {.lex_state = 0, .external_lex_state = 37}, - [689] = {.lex_state = 0, .external_lex_state = 34}, - [690] = {.lex_state = 0, .external_lex_state = 33}, - [691] = {.lex_state = 0, .external_lex_state = 37}, - [692] = {.lex_state = 0, .external_lex_state = 37}, - [693] = {.lex_state = 0, .external_lex_state = 37}, - [694] = {.lex_state = 0, .external_lex_state = 37}, - [695] = {.lex_state = 0, .external_lex_state = 37}, - [696] = {.lex_state = 0, .external_lex_state = 37}, - [697] = {.lex_state = 0, .external_lex_state = 37}, - [698] = {.lex_state = 0, .external_lex_state = 37}, - [699] = {.lex_state = 0, .external_lex_state = 37}, - [700] = {.lex_state = 0, .external_lex_state = 20}, - [701] = {.lex_state = 0, .external_lex_state = 37}, - [702] = {.lex_state = 0, .external_lex_state = 37}, - [703] = {.lex_state = 0, .external_lex_state = 61}, - [704] = {.lex_state = 0, .external_lex_state = 20}, - [705] = {.lex_state = 0, .external_lex_state = 34}, - [706] = {.lex_state = 0, .external_lex_state = 33}, - [707] = {.lex_state = 9}, - [708] = {.lex_state = 39, .external_lex_state = 32}, - [709] = {.lex_state = 0, .external_lex_state = 61}, - [710] = {.lex_state = 0, .external_lex_state = 36}, - [711] = {.lex_state = 0, .external_lex_state = 37}, - [712] = {.lex_state = 0, .external_lex_state = 62}, - [713] = {.lex_state = 0, .external_lex_state = 20}, - [714] = {.lex_state = 0, .external_lex_state = 20}, - [715] = {.lex_state = 0, .external_lex_state = 20}, - [716] = {.lex_state = 5}, - [717] = {.lex_state = 0, .external_lex_state = 63}, - [718] = {.lex_state = 0, .external_lex_state = 63}, - [719] = {.lex_state = 0, .external_lex_state = 37}, - [720] = {.lex_state = 0, .external_lex_state = 37}, - [721] = {.lex_state = 39, .external_lex_state = 23}, - [722] = {.lex_state = 39, .external_lex_state = 23}, - [723] = {.lex_state = 0, .external_lex_state = 64}, - [724] = {.lex_state = 0, .external_lex_state = 64}, - [725] = {.lex_state = 0, .external_lex_state = 33}, - [726] = {.lex_state = 0, .external_lex_state = 33}, - [727] = {.lex_state = 0, .external_lex_state = 36}, - [728] = {.lex_state = 0, .external_lex_state = 65}, - [729] = {.lex_state = 0, .external_lex_state = 36}, - [730] = {.lex_state = 0, .external_lex_state = 34}, - [731] = {.lex_state = 0, .external_lex_state = 37}, - [732] = {.lex_state = 0, .external_lex_state = 37}, - [733] = {.lex_state = 0, .external_lex_state = 66}, - [734] = {.lex_state = 0, .external_lex_state = 37}, - [735] = {.lex_state = 0, .external_lex_state = 60}, - [736] = {.lex_state = 10}, - [737] = {.lex_state = 0, .external_lex_state = 35}, - [738] = {.lex_state = 0, .external_lex_state = 37}, - [739] = {.lex_state = 0, .external_lex_state = 37}, - [740] = {.lex_state = 0, .external_lex_state = 37}, - [741] = {.lex_state = 0, .external_lex_state = 37}, - [742] = {.lex_state = 0, .external_lex_state = 37}, - [743] = {.lex_state = 0, .external_lex_state = 37}, - [744] = {.lex_state = 0, .external_lex_state = 37}, - [745] = {.lex_state = 0, .external_lex_state = 37}, - [746] = {.lex_state = 0, .external_lex_state = 37}, - [747] = {.lex_state = 0, .external_lex_state = 37}, - [748] = {.lex_state = 0, .external_lex_state = 37}, - [749] = {.lex_state = 0, .external_lex_state = 37}, - [750] = {.lex_state = 0, .external_lex_state = 37}, - [751] = {.lex_state = 0, .external_lex_state = 37}, - [752] = {.lex_state = 0, .external_lex_state = 37}, - [753] = {.lex_state = 0, .external_lex_state = 37}, - [754] = {.lex_state = 0, .external_lex_state = 37}, - [755] = {.lex_state = 0, .external_lex_state = 37}, - [756] = {.lex_state = 0, .external_lex_state = 37}, - [757] = {.lex_state = 39, .external_lex_state = 32}, - [758] = {.lex_state = 0, .external_lex_state = 35}, - [759] = {.lex_state = 0, .external_lex_state = 35}, - [760] = {.lex_state = 0, .external_lex_state = 37}, - [761] = {.lex_state = 0, .external_lex_state = 33}, - [762] = {.lex_state = 0, .external_lex_state = 23}, - [763] = {.lex_state = 0, .external_lex_state = 66}, - [764] = {.lex_state = 0, .external_lex_state = 37}, - [765] = {.lex_state = 0, .external_lex_state = 67}, - [766] = {.lex_state = 0, .external_lex_state = 37}, - [767] = {.lex_state = 0, .external_lex_state = 65}, - [768] = {.lex_state = 0, .external_lex_state = 23}, - [769] = {.lex_state = 8}, - [770] = {.lex_state = 0, .external_lex_state = 67}, - [771] = {.lex_state = 0, .external_lex_state = 37}, - [772] = {.lex_state = 0, .external_lex_state = 37}, - [773] = {.lex_state = 0, .external_lex_state = 68}, - [774] = {.lex_state = 0, .external_lex_state = 69}, - [775] = {.lex_state = 0, .external_lex_state = 34}, - [776] = {.lex_state = 0, .external_lex_state = 36}, - [777] = {.lex_state = 0, .external_lex_state = 68}, - [778] = {.lex_state = 0, .external_lex_state = 68}, - [779] = {.lex_state = 0, .external_lex_state = 69}, - [780] = {.lex_state = 0, .external_lex_state = 69}, - [781] = {.lex_state = 0, .external_lex_state = 69}, - [782] = {.lex_state = 0, .external_lex_state = 34}, - [783] = {.lex_state = 0, .external_lex_state = 37}, - [784] = {.lex_state = 0, .external_lex_state = 68}, - [785] = {.lex_state = 0, .external_lex_state = 69}, - [786] = {.lex_state = 0, .external_lex_state = 69}, - [787] = {.lex_state = 0, .external_lex_state = 65}, - [788] = {.lex_state = 0, .external_lex_state = 37}, - [789] = {.lex_state = 0, .external_lex_state = 70}, - [790] = {.lex_state = 0, .external_lex_state = 49}, - [791] = {.lex_state = 0, .external_lex_state = 49}, - [792] = {.lex_state = 0, .external_lex_state = 52}, - [793] = {.lex_state = 0, .external_lex_state = 52}, - [794] = {.lex_state = 0, .external_lex_state = 55}, - [795] = {.lex_state = 0, .external_lex_state = 55}, - [796] = {.lex_state = 0, .external_lex_state = 58}, - [797] = {.lex_state = 0, .external_lex_state = 58}, - [798] = {.lex_state = 0, .external_lex_state = 39}, - [799] = {.lex_state = 0, .external_lex_state = 71}, - [800] = {.lex_state = 0, .external_lex_state = 72}, - [801] = {.lex_state = 0, .external_lex_state = 48}, - [802] = {.lex_state = 0, .external_lex_state = 51}, - [803] = {.lex_state = 0, .external_lex_state = 32}, - [804] = {.lex_state = 0, .external_lex_state = 44}, - [805] = {.lex_state = 0, .external_lex_state = 45}, - [806] = {.lex_state = 0}, - [807] = {.lex_state = 0}, - [808] = {.lex_state = 0, .external_lex_state = 60}, - [809] = {.lex_state = 0, .external_lex_state = 71}, - [810] = {.lex_state = 0, .external_lex_state = 32}, - [811] = {.lex_state = 0, .external_lex_state = 54}, - [812] = {.lex_state = 0, .external_lex_state = 72}, - [813] = {.lex_state = 0, .external_lex_state = 73}, - [814] = {.lex_state = 0, .external_lex_state = 47}, - [815] = {.lex_state = 0, .external_lex_state = 46}, - [816] = {.lex_state = 10, .external_lex_state = 27}, - [817] = {.lex_state = 0, .external_lex_state = 20}, - [818] = {.lex_state = 0, .external_lex_state = 28}, - [819] = {.lex_state = 0, .external_lex_state = 44}, - [820] = {.lex_state = 0, .external_lex_state = 57}, - [821] = {.lex_state = 0, .external_lex_state = 45}, - [822] = {.lex_state = 0, .external_lex_state = 46}, - [823] = {.lex_state = 10, .external_lex_state = 27}, - [824] = {.lex_state = 0, .external_lex_state = 49}, - [825] = {.lex_state = 0, .external_lex_state = 52}, - [826] = {.lex_state = 10, .external_lex_state = 27}, - [827] = {.lex_state = 0, .external_lex_state = 47}, - [828] = {.lex_state = 0, .external_lex_state = 28}, - [829] = {.lex_state = 0, .external_lex_state = 71}, - [830] = {.lex_state = 0, .external_lex_state = 55}, - [831] = {.lex_state = 0, .external_lex_state = 65}, - [832] = {.lex_state = 10, .external_lex_state = 27}, - [833] = {.lex_state = 0, .external_lex_state = 58}, - [834] = {.lex_state = 10, .external_lex_state = 27}, + [555] = {.lex_state = 0, .external_lex_state = 46}, + [556] = {.lex_state = 0, .external_lex_state = 44}, + [557] = {.lex_state = 0, .external_lex_state = 47}, + [558] = {.lex_state = 0, .external_lex_state = 45}, + [559] = {.lex_state = 0, .external_lex_state = 48}, + [560] = {.lex_state = 0, .external_lex_state = 46}, + [561] = {.lex_state = 0, .external_lex_state = 49}, + [562] = {.lex_state = 0, .external_lex_state = 47}, + [563] = {.lex_state = 0, .external_lex_state = 48}, + [564] = {.lex_state = 0, .external_lex_state = 50}, + [565] = {.lex_state = 0, .external_lex_state = 49}, + [566] = {.lex_state = 0, .external_lex_state = 51}, + [567] = {.lex_state = 0, .external_lex_state = 35}, + [568] = {.lex_state = 0, .external_lex_state = 52}, + [569] = {.lex_state = 0, .external_lex_state = 50}, + [570] = {.lex_state = 0, .external_lex_state = 55}, + [571] = {.lex_state = 0, .external_lex_state = 51}, + [572] = {.lex_state = 0, .external_lex_state = 53}, + [573] = {.lex_state = 0, .external_lex_state = 52}, + [574] = {.lex_state = 7, .external_lex_state = 22}, + [575] = {.lex_state = 7, .external_lex_state = 22}, + [576] = {.lex_state = 0, .external_lex_state = 54}, + [577] = {.lex_state = 7, .external_lex_state = 22}, + [578] = {.lex_state = 0, .external_lex_state = 55}, + [579] = {.lex_state = 0, .external_lex_state = 53}, + [580] = {.lex_state = 0, .external_lex_state = 54}, + [581] = {.lex_state = 0, .external_lex_state = 55}, + [582] = {.lex_state = 0, .external_lex_state = 32}, + [583] = {.lex_state = 0, .external_lex_state = 17}, + [584] = {.lex_state = 9}, + [585] = {.lex_state = 0, .external_lex_state = 30}, + [586] = {.lex_state = 0, .external_lex_state = 56}, + [587] = {.lex_state = 0, .external_lex_state = 31}, + [588] = {.lex_state = 0, .external_lex_state = 17}, + [589] = {.lex_state = 39, .external_lex_state = 27}, + [590] = {.lex_state = 0, .external_lex_state = 29}, + [591] = {.lex_state = 0, .external_lex_state = 28}, + [592] = {.lex_state = 0, .external_lex_state = 28}, + [593] = {.lex_state = 0, .external_lex_state = 32}, + [594] = {.lex_state = 39, .external_lex_state = 27}, + [595] = {.lex_state = 0, .external_lex_state = 31}, + [596] = {.lex_state = 0, .external_lex_state = 15}, + [597] = {.lex_state = 0, .external_lex_state = 15}, + [598] = {.lex_state = 0, .external_lex_state = 57}, + [599] = {.lex_state = 0, .external_lex_state = 58}, + [600] = {.lex_state = 0, .external_lex_state = 57}, + [601] = {.lex_state = 0, .external_lex_state = 30}, + [602] = {.lex_state = 0, .external_lex_state = 32}, + [603] = {.lex_state = 0, .external_lex_state = 32}, + [604] = {.lex_state = 0, .external_lex_state = 59}, + [605] = {.lex_state = 0, .external_lex_state = 32}, + [606] = {.lex_state = 0, .external_lex_state = 32}, + [607] = {.lex_state = 0, .external_lex_state = 32}, + [608] = {.lex_state = 0, .external_lex_state = 32}, + [609] = {.lex_state = 0, .external_lex_state = 32}, + [610] = {.lex_state = 0, .external_lex_state = 32}, + [611] = {.lex_state = 0, .external_lex_state = 32}, + [612] = {.lex_state = 0, .external_lex_state = 30}, + [613] = {.lex_state = 0, .external_lex_state = 32}, + [614] = {.lex_state = 0, .external_lex_state = 15}, + [615] = {.lex_state = 0, .external_lex_state = 15}, + [616] = {.lex_state = 0, .external_lex_state = 15}, + [617] = {.lex_state = 0, .external_lex_state = 32}, + [618] = {.lex_state = 0, .external_lex_state = 32}, + [619] = {.lex_state = 0, .external_lex_state = 32}, + [620] = {.lex_state = 0, .external_lex_state = 32}, + [621] = {.lex_state = 0, .external_lex_state = 32}, + [622] = {.lex_state = 0, .external_lex_state = 32}, + [623] = {.lex_state = 0, .external_lex_state = 32}, + [624] = {.lex_state = 0, .external_lex_state = 32}, + [625] = {.lex_state = 0, .external_lex_state = 32}, + [626] = {.lex_state = 0, .external_lex_state = 32}, + [627] = {.lex_state = 0, .external_lex_state = 32}, + [628] = {.lex_state = 0, .external_lex_state = 32}, + [629] = {.lex_state = 0, .external_lex_state = 32}, + [630] = {.lex_state = 0, .external_lex_state = 32}, + [631] = {.lex_state = 0, .external_lex_state = 32}, + [632] = {.lex_state = 0, .external_lex_state = 59}, + [633] = {.lex_state = 5}, + [634] = {.lex_state = 0, .external_lex_state = 32}, + [635] = {.lex_state = 0, .external_lex_state = 32}, + [636] = {.lex_state = 0, .external_lex_state = 30}, + [637] = {.lex_state = 0, .external_lex_state = 29}, + [638] = {.lex_state = 0, .external_lex_state = 32}, + [639] = {.lex_state = 0, .external_lex_state = 32}, + [640] = {.lex_state = 0, .external_lex_state = 32}, + [641] = {.lex_state = 0, .external_lex_state = 57}, + [642] = {.lex_state = 8}, + [643] = {.lex_state = 0, .external_lex_state = 32}, + [644] = {.lex_state = 0, .external_lex_state = 60}, + [645] = {.lex_state = 0, .external_lex_state = 29}, + [646] = {.lex_state = 0, .external_lex_state = 32}, + [647] = {.lex_state = 0, .external_lex_state = 61}, + [648] = {.lex_state = 0, .external_lex_state = 61}, + [649] = {.lex_state = 0, .external_lex_state = 60}, + [650] = {.lex_state = 0, .external_lex_state = 32}, + [651] = {.lex_state = 0, .external_lex_state = 60}, + [652] = {.lex_state = 0, .external_lex_state = 32}, + [653] = {.lex_state = 0, .external_lex_state = 60}, + [654] = {.lex_state = 0, .external_lex_state = 29}, + [655] = {.lex_state = 0, .external_lex_state = 32}, + [656] = {.lex_state = 0, .external_lex_state = 32}, + [657] = {.lex_state = 0, .external_lex_state = 32}, + [658] = {.lex_state = 0, .external_lex_state = 32}, + [659] = {.lex_state = 0, .external_lex_state = 32}, + [660] = {.lex_state = 0, .external_lex_state = 32}, + [661] = {.lex_state = 0, .external_lex_state = 32}, + [662] = {.lex_state = 0, .external_lex_state = 32}, + [663] = {.lex_state = 0, .external_lex_state = 32}, + [664] = {.lex_state = 0, .external_lex_state = 32}, + [665] = {.lex_state = 0, .external_lex_state = 61}, + [666] = {.lex_state = 0, .external_lex_state = 32}, + [667] = {.lex_state = 0, .external_lex_state = 32}, + [668] = {.lex_state = 0, .external_lex_state = 32}, + [669] = {.lex_state = 0, .external_lex_state = 32}, + [670] = {.lex_state = 0, .external_lex_state = 62}, + [671] = {.lex_state = 0, .external_lex_state = 31}, + [672] = {.lex_state = 0, .external_lex_state = 33}, + [673] = {.lex_state = 0, .external_lex_state = 33}, + [674] = {.lex_state = 0, .external_lex_state = 62}, + [675] = {.lex_state = 0, .external_lex_state = 63}, + [676] = {.lex_state = 0, .external_lex_state = 63}, + [677] = {.lex_state = 0, .external_lex_state = 60}, + [678] = {.lex_state = 0, .external_lex_state = 60}, + [679] = {.lex_state = 39, .external_lex_state = 17}, + [680] = {.lex_state = 39, .external_lex_state = 17}, + [681] = {.lex_state = 0, .external_lex_state = 64}, + [682] = {.lex_state = 0, .external_lex_state = 64}, + [683] = {.lex_state = 0, .external_lex_state = 65}, + [684] = {.lex_state = 0, .external_lex_state = 65}, + [685] = {.lex_state = 0, .external_lex_state = 28}, + [686] = {.lex_state = 0, .external_lex_state = 28}, + [687] = {.lex_state = 0, .external_lex_state = 66}, + [688] = {.lex_state = 0, .external_lex_state = 58}, + [689] = {.lex_state = 0, .external_lex_state = 30}, + [690] = {.lex_state = 0, .external_lex_state = 56}, + [691] = {.lex_state = 0, .external_lex_state = 28}, + [692] = {.lex_state = 0, .external_lex_state = 31}, + [693] = {.lex_state = 0, .external_lex_state = 29}, + [694] = {.lex_state = 10}, + [695] = {.lex_state = 0, .external_lex_state = 31}, + [696] = {.lex_state = 0, .external_lex_state = 61}, + [697] = {.lex_state = 9, .external_lex_state = 22}, + [698] = {.lex_state = 0, .external_lex_state = 52}, + [699] = {.lex_state = 0, .external_lex_state = 52}, + [700] = {.lex_state = 0, .external_lex_state = 54}, + [701] = {.lex_state = 0, .external_lex_state = 54}, + [702] = {.lex_state = 0, .external_lex_state = 44}, + [703] = {.lex_state = 0, .external_lex_state = 47}, + [704] = {.lex_state = 0, .external_lex_state = 48}, + [705] = {.lex_state = 0, .external_lex_state = 67}, + [706] = {.lex_state = 0, .external_lex_state = 49}, + [707] = {.lex_state = 0, .external_lex_state = 35}, + [708] = {.lex_state = 0, .external_lex_state = 35}, + [709] = {.lex_state = 0, .external_lex_state = 52}, + [710] = {.lex_state = 0, .external_lex_state = 42}, + [711] = {.lex_state = 0, .external_lex_state = 68}, + [712] = {.lex_state = 0, .external_lex_state = 27}, + [713] = {.lex_state = 0, .external_lex_state = 54}, + [714] = {.lex_state = 0, .external_lex_state = 57}, + [715] = {.lex_state = 0, .external_lex_state = 27}, + [716] = {.lex_state = 0, .external_lex_state = 44}, + [717] = {.lex_state = 39}, + [718] = {.lex_state = 0}, + [719] = {.lex_state = 0, .external_lex_state = 68}, + [720] = {.lex_state = 0}, + [721] = {.lex_state = 0, .external_lex_state = 41}, + [722] = {.lex_state = 0, .external_lex_state = 45}, + [723] = {.lex_state = 0, .external_lex_state = 59}, + [724] = {.lex_state = 0, .external_lex_state = 69}, + [725] = {.lex_state = 0, .external_lex_state = 50}, + [726] = {.lex_state = 0, .external_lex_state = 51}, + [727] = {.lex_state = 0}, + [728] = {.lex_state = 0}, + [729] = {.lex_state = 0, .external_lex_state = 67}, + [730] = {.lex_state = 9, .external_lex_state = 22}, + [731] = {.lex_state = 0, .external_lex_state = 15}, + [732] = {.lex_state = 0, .external_lex_state = 27}, + [733] = {.lex_state = 39, .external_lex_state = 38}, + [734] = {.lex_state = 0, .external_lex_state = 27}, + [735] = {.lex_state = 9, .external_lex_state = 22}, + [736] = {.lex_state = 0, .external_lex_state = 52}, + [737] = {.lex_state = 0, .external_lex_state = 27}, + [738] = {.lex_state = 0, .external_lex_state = 70}, + [739] = {.lex_state = 0, .external_lex_state = 23}, + [740] = {.lex_state = 5}, + [741] = {.lex_state = 0, .external_lex_state = 67}, + [742] = {.lex_state = 0, .external_lex_state = 55}, + [743] = {.lex_state = 0, .external_lex_state = 53}, + [744] = {.lex_state = 0, .external_lex_state = 57}, + [745] = {.lex_state = 0, .external_lex_state = 27}, + [746] = {.lex_state = 0, .external_lex_state = 27}, + [747] = {.lex_state = 0, .external_lex_state = 27}, + [748] = {.lex_state = 0, .external_lex_state = 27}, + [749] = {.lex_state = 0, .external_lex_state = 27}, + [750] = {.lex_state = 0, .external_lex_state = 27}, + [751] = {.lex_state = 0, .external_lex_state = 27}, + [752] = {.lex_state = 0, .external_lex_state = 27}, + [753] = {.lex_state = 0, .external_lex_state = 27}, + [754] = {.lex_state = 0, .external_lex_state = 27}, + [755] = {.lex_state = 0, .external_lex_state = 27}, + [756] = {.lex_state = 0, .external_lex_state = 27}, + [757] = {.lex_state = 0, .external_lex_state = 27}, + [758] = {.lex_state = 0, .external_lex_state = 27}, + [759] = {.lex_state = 0, .external_lex_state = 27}, + [760] = {.lex_state = 0, .external_lex_state = 69}, + [761] = {.lex_state = 0, .external_lex_state = 27}, + [762] = {.lex_state = 0, .external_lex_state = 54}, + [763] = {.lex_state = 0, .external_lex_state = 27}, + [764] = {.lex_state = 9, .external_lex_state = 22}, + [765] = {.lex_state = 0, .external_lex_state = 41}, + [766] = {.lex_state = 0, .external_lex_state = 27}, + [767] = {.lex_state = 9, .external_lex_state = 22}, + [768] = {.lex_state = 0, .external_lex_state = 67}, + [769] = {.lex_state = 0, .external_lex_state = 67}, + [770] = {.lex_state = 9, .external_lex_state = 22}, + [771] = {.lex_state = 0, .external_lex_state = 23}, + [772] = {.lex_state = 0, .external_lex_state = 27}, + [773] = {.lex_state = 0, .external_lex_state = 67}, + [774] = {.lex_state = 9, .external_lex_state = 22}, + [775] = {.lex_state = 0, .external_lex_state = 67}, + [776] = {.lex_state = 0, .external_lex_state = 27}, + [777] = {.lex_state = 5}, + [778] = {.lex_state = 0, .external_lex_state = 27}, + [779] = {.lex_state = 0, .external_lex_state = 27}, + [780] = {.lex_state = 0, .external_lex_state = 27}, + [781] = {.lex_state = 0, .external_lex_state = 27}, + [782] = {.lex_state = 0, .external_lex_state = 27}, + [783] = {.lex_state = 0, .external_lex_state = 27}, + [784] = {.lex_state = 0, .external_lex_state = 27}, + [785] = {.lex_state = 0, .external_lex_state = 45}, + [786] = {.lex_state = 9, .external_lex_state = 22}, + [787] = {.lex_state = 0}, + [788] = {.lex_state = 0, .external_lex_state = 56}, + [789] = {.lex_state = 0, .external_lex_state = 27}, + [790] = {.lex_state = 0, .external_lex_state = 27}, + [791] = {.lex_state = 0, .external_lex_state = 27}, + [792] = {.lex_state = 0, .external_lex_state = 27}, + [793] = {.lex_state = 0, .external_lex_state = 69}, + [794] = {.lex_state = 9, .external_lex_state = 22}, + [795] = {.lex_state = 0, .external_lex_state = 27}, + [796] = {.lex_state = 0, .external_lex_state = 43}, + [797] = {.lex_state = 0, .external_lex_state = 45}, + [798] = {.lex_state = 9, .external_lex_state = 22}, + [799] = {.lex_state = 0, .external_lex_state = 69}, + [800] = {.lex_state = 9, .external_lex_state = 22}, + [801] = {.lex_state = 0, .external_lex_state = 46}, + [802] = {.lex_state = 0, .external_lex_state = 23}, + [803] = {.lex_state = 0, .external_lex_state = 67}, + [804] = {.lex_state = 9, .external_lex_state = 22}, + [805] = {.lex_state = 0}, + [806] = {.lex_state = 0, .external_lex_state = 71}, + [807] = {.lex_state = 0, .external_lex_state = 67}, + [808] = {.lex_state = 0}, + [809] = {.lex_state = 0, .external_lex_state = 42}, + [810] = {.lex_state = 0, .external_lex_state = 45}, + [811] = {.lex_state = 0, .external_lex_state = 48}, + [812] = {.lex_state = 0, .external_lex_state = 27}, + [813] = {.lex_state = 0, .external_lex_state = 47}, + [814] = {.lex_state = 0}, + [815] = {.lex_state = 0, .external_lex_state = 27}, + [816] = {.lex_state = 0, .external_lex_state = 27}, + [817] = {.lex_state = 0, .external_lex_state = 72}, + [818] = {.lex_state = 0, .external_lex_state = 55}, + [819] = {.lex_state = 0, .external_lex_state = 43}, + [820] = {.lex_state = 0, .external_lex_state = 46}, + [821] = {.lex_state = 0, .external_lex_state = 49}, + [822] = {.lex_state = 0, .external_lex_state = 51}, + [823] = {.lex_state = 0, .external_lex_state = 27}, + [824] = {.lex_state = 0, .external_lex_state = 27}, + [825] = {.lex_state = 0, .external_lex_state = 27}, + [826] = {.lex_state = 9, .external_lex_state = 22}, + [827] = {.lex_state = 0, .external_lex_state = 62}, + [828] = {.lex_state = 0, .external_lex_state = 23}, + [829] = {.lex_state = 0, .external_lex_state = 17}, + [830] = {.lex_state = 0, .external_lex_state = 27}, + [831] = {.lex_state = 0, .external_lex_state = 48}, + [832] = {.lex_state = 0, .external_lex_state = 48}, + [833] = {.lex_state = 9, .external_lex_state = 22}, + [834] = {.lex_state = 0, .external_lex_state = 63}, [835] = {.lex_state = 0}, - [836] = {.lex_state = 39}, - [837] = {.lex_state = 0, .external_lex_state = 39}, - [838] = {.lex_state = 0, .external_lex_state = 72}, - [839] = {.lex_state = 0}, - [840] = {.lex_state = 0, .external_lex_state = 61}, - [841] = {.lex_state = 10, .external_lex_state = 27}, - [842] = {.lex_state = 5}, - [843] = {.lex_state = 0, .external_lex_state = 47}, - [844] = {.lex_state = 0}, - [845] = {.lex_state = 10, .external_lex_state = 27}, - [846] = {.lex_state = 10, .external_lex_state = 27}, - [847] = {.lex_state = 0, .external_lex_state = 28}, - [848] = {.lex_state = 0, .external_lex_state = 71}, - [849] = {.lex_state = 0}, - [850] = {.lex_state = 0, .external_lex_state = 48}, - [851] = {.lex_state = 0, .external_lex_state = 66}, - [852] = {.lex_state = 0, .external_lex_state = 45}, - [853] = {.lex_state = 0, .external_lex_state = 49}, - [854] = {.lex_state = 0, .external_lex_state = 50}, - [855] = {.lex_state = 0, .external_lex_state = 51}, - [856] = {.lex_state = 0, .external_lex_state = 52}, - [857] = {.lex_state = 0, .external_lex_state = 53}, - [858] = {.lex_state = 0}, + [836] = {.lex_state = 0}, + [837] = {.lex_state = 9, .external_lex_state = 22}, + [838] = {.lex_state = 0, .external_lex_state = 50}, + [839] = {.lex_state = 0, .external_lex_state = 23}, + [840] = {.lex_state = 0, .external_lex_state = 50}, + [841] = {.lex_state = 0, .external_lex_state = 42}, + [842] = {.lex_state = 0, .external_lex_state = 27}, + [843] = {.lex_state = 0, .external_lex_state = 55}, + [844] = {.lex_state = 0, .external_lex_state = 55}, + [845] = {.lex_state = 39, .external_lex_state = 17}, + [846] = {.lex_state = 0, .external_lex_state = 43}, + [847] = {.lex_state = 0, .external_lex_state = 43}, + [848] = {.lex_state = 0, .external_lex_state = 64}, + [849] = {.lex_state = 0, .external_lex_state = 67}, + [850] = {.lex_state = 0, .external_lex_state = 42}, + [851] = {.lex_state = 0, .external_lex_state = 46}, + [852] = {.lex_state = 0, .external_lex_state = 46}, + [853] = {.lex_state = 0, .external_lex_state = 27}, + [854] = {.lex_state = 0, .external_lex_state = 53}, + [855] = {.lex_state = 0, .external_lex_state = 49}, + [856] = {.lex_state = 0, .external_lex_state = 49}, + [857] = {.lex_state = 0, .external_lex_state = 65}, + [858] = {.lex_state = 0, .external_lex_state = 15}, [859] = {.lex_state = 0}, - [860] = {.lex_state = 0, .external_lex_state = 71}, - [861] = {.lex_state = 0, .external_lex_state = 72}, - [862] = {.lex_state = 10, .external_lex_state = 27}, - [863] = {.lex_state = 10, .external_lex_state = 27}, - [864] = {.lex_state = 0, .external_lex_state = 20}, - [865] = {.lex_state = 10, .external_lex_state = 27}, + [860] = {.lex_state = 0}, + [861] = {.lex_state = 0}, + [862] = {.lex_state = 0}, + [863] = {.lex_state = 0}, + [864] = {.lex_state = 0}, + [865] = {.lex_state = 0}, [866] = {.lex_state = 0}, - [867] = {.lex_state = 0, .external_lex_state = 28}, - [868] = {.lex_state = 0, .external_lex_state = 71}, - [869] = {.lex_state = 39, .external_lex_state = 41}, - [870] = {.lex_state = 0, .external_lex_state = 32}, - [871] = {.lex_state = 0, .external_lex_state = 54}, - [872] = {.lex_state = 0, .external_lex_state = 71}, - [873] = {.lex_state = 5}, - [874] = {.lex_state = 0, .external_lex_state = 55}, - [875] = {.lex_state = 0, .external_lex_state = 50}, - [876] = {.lex_state = 0, .external_lex_state = 56}, - [877] = {.lex_state = 0}, - [878] = {.lex_state = 0, .external_lex_state = 57}, - [879] = {.lex_state = 0, .external_lex_state = 45}, - [880] = {.lex_state = 0, .external_lex_state = 58}, - [881] = {.lex_state = 10, .external_lex_state = 27}, + [867] = {.lex_state = 5}, + [868] = {.lex_state = 0}, + [869] = {.lex_state = 0}, + [870] = {.lex_state = 0}, + [871] = {.lex_state = 0}, + [872] = {.lex_state = 0}, + [873] = {.lex_state = 0}, + [874] = {.lex_state = 0}, + [875] = {.lex_state = 0}, + [876] = {.lex_state = 0, .external_lex_state = 51}, + [877] = {.lex_state = 0, .external_lex_state = 51}, + [878] = {.lex_state = 0, .external_lex_state = 53}, + [879] = {.lex_state = 0}, + [880] = {.lex_state = 0}, + [881] = {.lex_state = 0, .external_lex_state = 53}, [882] = {.lex_state = 0, .external_lex_state = 44}, - [883] = {.lex_state = 0, .external_lex_state = 74}, - [884] = {.lex_state = 0, .external_lex_state = 75}, - [885] = {.lex_state = 10, .external_lex_state = 27}, - [886] = {.lex_state = 0, .external_lex_state = 50}, - [887] = {.lex_state = 10, .external_lex_state = 27}, - [888] = {.lex_state = 0, .external_lex_state = 28}, - [889] = {.lex_state = 0, .external_lex_state = 71}, - [890] = {.lex_state = 0, .external_lex_state = 74}, - [891] = {.lex_state = 0, .external_lex_state = 74}, + [883] = {.lex_state = 0, .external_lex_state = 70}, + [884] = {.lex_state = 0}, + [885] = {.lex_state = 0}, + [886] = {.lex_state = 0}, + [887] = {.lex_state = 0}, + [888] = {.lex_state = 0, .external_lex_state = 44}, + [889] = {.lex_state = 0}, + [890] = {.lex_state = 0}, + [891] = {.lex_state = 3, .external_lex_state = 22}, [892] = {.lex_state = 0, .external_lex_state = 47}, - [893] = {.lex_state = 0, .external_lex_state = 71}, - [894] = {.lex_state = 10, .external_lex_state = 27}, - [895] = {.lex_state = 0, .external_lex_state = 71}, - [896] = {.lex_state = 0, .external_lex_state = 71}, - [897] = {.lex_state = 0, .external_lex_state = 75}, - [898] = {.lex_state = 10, .external_lex_state = 27}, - [899] = {.lex_state = 0, .external_lex_state = 75}, - [900] = {.lex_state = 0, .external_lex_state = 75}, - [901] = {.lex_state = 0, .external_lex_state = 32}, - [902] = {.lex_state = 0, .external_lex_state = 63}, - [903] = {.lex_state = 0, .external_lex_state = 74}, - [904] = {.lex_state = 10, .external_lex_state = 27}, - [905] = {.lex_state = 0, .external_lex_state = 75}, - [906] = {.lex_state = 10, .external_lex_state = 27}, - [907] = {.lex_state = 0, .external_lex_state = 75}, - [908] = {.lex_state = 0, .external_lex_state = 28}, - [909] = {.lex_state = 0, .external_lex_state = 46}, - [910] = {.lex_state = 3, .external_lex_state = 27}, - [911] = {.lex_state = 0, .external_lex_state = 70}, - [912] = {.lex_state = 0, .external_lex_state = 23}, - [913] = {.lex_state = 0, .external_lex_state = 32}, - [914] = {.lex_state = 0, .external_lex_state = 32}, - [915] = {.lex_state = 7, .external_lex_state = 27}, - [916] = {.lex_state = 0, .external_lex_state = 72}, - [917] = {.lex_state = 0, .external_lex_state = 46}, - [918] = {.lex_state = 0, .external_lex_state = 32}, - [919] = {.lex_state = 0, .external_lex_state = 32}, - [920] = {.lex_state = 0, .external_lex_state = 32}, - [921] = {.lex_state = 0, .external_lex_state = 32}, - [922] = {.lex_state = 0, .external_lex_state = 32}, - [923] = {.lex_state = 0, .external_lex_state = 32}, - [924] = {.lex_state = 0, .external_lex_state = 53}, - [925] = {.lex_state = 0}, - [926] = {.lex_state = 0}, - [927] = {.lex_state = 0, .external_lex_state = 32}, - [928] = {.lex_state = 0, .external_lex_state = 32}, - [929] = {.lex_state = 0, .external_lex_state = 32}, - [930] = {.lex_state = 0}, - [931] = {.lex_state = 0}, - [932] = {.lex_state = 0}, - [933] = {.lex_state = 0}, - [934] = {.lex_state = 0, .external_lex_state = 32}, - [935] = {.lex_state = 0, .external_lex_state = 32}, - [936] = {.lex_state = 0}, - [937] = {.lex_state = 0}, - [938] = {.lex_state = 0, .external_lex_state = 32}, - [939] = {.lex_state = 0, .external_lex_state = 32}, - [940] = {.lex_state = 0, .external_lex_state = 32}, - [941] = {.lex_state = 0, .external_lex_state = 53}, - [942] = {.lex_state = 0}, + [893] = {.lex_state = 0, .external_lex_state = 47}, + [894] = {.lex_state = 0}, + [895] = {.lex_state = 0}, + [896] = {.lex_state = 0, .external_lex_state = 41}, + [897] = {.lex_state = 0}, + [898] = {.lex_state = 0}, + [899] = {.lex_state = 0}, + [900] = {.lex_state = 0}, + [901] = {.lex_state = 0, .external_lex_state = 72}, + [902] = {.lex_state = 0}, + [903] = {.lex_state = 0}, + [904] = {.lex_state = 0, .external_lex_state = 68}, + [905] = {.lex_state = 0, .external_lex_state = 35}, + [906] = {.lex_state = 7, .external_lex_state = 22}, + [907] = {.lex_state = 0, .external_lex_state = 69}, + [908] = {.lex_state = 0, .external_lex_state = 72}, + [909] = {.lex_state = 0, .external_lex_state = 72}, + [910] = {.lex_state = 5}, + [911] = {.lex_state = 5}, + [912] = {.lex_state = 0, .external_lex_state = 35}, + [913] = {.lex_state = 5}, + [914] = {.lex_state = 0, .external_lex_state = 68}, + [915] = {.lex_state = 5}, + [916] = {.lex_state = 0, .external_lex_state = 68}, + [917] = {.lex_state = 0, .external_lex_state = 68}, + [918] = {.lex_state = 0, .external_lex_state = 50}, + [919] = {.lex_state = 0}, + [920] = {.lex_state = 0, .external_lex_state = 73}, + [921] = {.lex_state = 0, .external_lex_state = 22}, + [922] = {.lex_state = 0, .external_lex_state = 74}, + [923] = {.lex_state = 0, .external_lex_state = 74}, + [924] = {.lex_state = 0, .external_lex_state = 22}, + [925] = {.lex_state = 0, .external_lex_state = 22}, + [926] = {.lex_state = 0, .external_lex_state = 22}, + [927] = {.lex_state = 0, .external_lex_state = 22}, + [928] = {.lex_state = 0, .external_lex_state = 22}, + [929] = {.lex_state = 0, .external_lex_state = 22}, + [930] = {.lex_state = 0, .external_lex_state = 22}, + [931] = {.lex_state = 0, .external_lex_state = 22}, + [932] = {.lex_state = 0, .external_lex_state = 22}, + [933] = {.lex_state = 0, .external_lex_state = 22}, + [934] = {.lex_state = 0, .external_lex_state = 22}, + [935] = {.lex_state = 0, .external_lex_state = 74}, + [936] = {.lex_state = 0, .external_lex_state = 75}, + [937] = {.lex_state = 0, .external_lex_state = 22}, + [938] = {.lex_state = 0, .external_lex_state = 74}, + [939] = {.lex_state = 0, .external_lex_state = 22}, + [940] = {.lex_state = 0, .external_lex_state = 22}, + [941] = {.lex_state = 0, .external_lex_state = 22}, + [942] = {.lex_state = 3}, [943] = {.lex_state = 0}, - [944] = {.lex_state = 0, .external_lex_state = 32}, - [945] = {.lex_state = 0, .external_lex_state = 32}, - [946] = {.lex_state = 0, .external_lex_state = 32}, - [947] = {.lex_state = 0}, - [948] = {.lex_state = 0}, - [949] = {.lex_state = 0}, - [950] = {.lex_state = 0}, - [951] = {.lex_state = 0, .external_lex_state = 32}, - [952] = {.lex_state = 0, .external_lex_state = 32}, - [953] = {.lex_state = 0}, - [954] = {.lex_state = 0}, - [955] = {.lex_state = 0, .external_lex_state = 32}, - [956] = {.lex_state = 0, .external_lex_state = 32}, - [957] = {.lex_state = 0, .external_lex_state = 53}, - [958] = {.lex_state = 0}, - [959] = {.lex_state = 0}, - [960] = {.lex_state = 0, .external_lex_state = 32}, - [961] = {.lex_state = 0, .external_lex_state = 56}, - [962] = {.lex_state = 0, .external_lex_state = 56}, - [963] = {.lex_state = 0}, - [964] = {.lex_state = 0}, - [965] = {.lex_state = 0}, - [966] = {.lex_state = 0}, - [967] = {.lex_state = 39, .external_lex_state = 23}, - [968] = {.lex_state = 0}, - [969] = {.lex_state = 0}, - [970] = {.lex_state = 0, .external_lex_state = 32}, - [971] = {.lex_state = 0, .external_lex_state = 32}, - [972] = {.lex_state = 0, .external_lex_state = 39}, - [973] = {.lex_state = 0}, - [974] = {.lex_state = 0}, - [975] = {.lex_state = 0, .external_lex_state = 39}, - [976] = {.lex_state = 0, .external_lex_state = 32}, - [977] = {.lex_state = 0, .external_lex_state = 32}, - [978] = {.lex_state = 0}, - [979] = {.lex_state = 0}, - [980] = {.lex_state = 0}, - [981] = {.lex_state = 0}, - [982] = {.lex_state = 0, .external_lex_state = 64}, - [983] = {.lex_state = 0}, - [984] = {.lex_state = 0}, - [985] = {.lex_state = 5}, - [986] = {.lex_state = 0}, - [987] = {.lex_state = 0}, - [988] = {.lex_state = 0, .external_lex_state = 32}, - [989] = {.lex_state = 0, .external_lex_state = 48}, - [990] = {.lex_state = 0, .external_lex_state = 48}, - [991] = {.lex_state = 0}, - [992] = {.lex_state = 0}, - [993] = {.lex_state = 0}, - [994] = {.lex_state = 0}, - [995] = {.lex_state = 0, .external_lex_state = 32}, - [996] = {.lex_state = 0}, - [997] = {.lex_state = 0}, - [998] = {.lex_state = 0, .external_lex_state = 56}, - [999] = {.lex_state = 0, .external_lex_state = 51}, - [1000] = {.lex_state = 0, .external_lex_state = 65}, - [1001] = {.lex_state = 0, .external_lex_state = 51}, - [1002] = {.lex_state = 0, .external_lex_state = 32}, - [1003] = {.lex_state = 0, .external_lex_state = 54}, - [1004] = {.lex_state = 0, .external_lex_state = 32}, - [1005] = {.lex_state = 0, .external_lex_state = 54}, - [1006] = {.lex_state = 0, .external_lex_state = 57}, - [1007] = {.lex_state = 0, .external_lex_state = 32}, - [1008] = {.lex_state = 5}, - [1009] = {.lex_state = 0, .external_lex_state = 32}, - [1010] = {.lex_state = 5}, - [1011] = {.lex_state = 0, .external_lex_state = 32}, - [1012] = {.lex_state = 5}, - [1013] = {.lex_state = 0, .external_lex_state = 57}, - [1014] = {.lex_state = 5}, - [1015] = {.lex_state = 5}, - [1016] = {.lex_state = 0, .external_lex_state = 32}, - [1017] = {.lex_state = 0, .external_lex_state = 32}, - [1018] = {.lex_state = 0, .external_lex_state = 32}, - [1019] = {.lex_state = 0, .external_lex_state = 32}, - [1020] = {.lex_state = 0, .external_lex_state = 32}, - [1021] = {.lex_state = 0, .external_lex_state = 50}, - [1022] = {.lex_state = 0, .external_lex_state = 76}, - [1023] = {.lex_state = 0, .external_lex_state = 77}, - [1024] = {.lex_state = 0, .external_lex_state = 27}, - [1025] = {.lex_state = 0, .external_lex_state = 27}, - [1026] = {.lex_state = 0, .external_lex_state = 27}, - [1027] = {.lex_state = 0, .external_lex_state = 78}, - [1028] = {.lex_state = 0, .external_lex_state = 27}, - [1029] = {.lex_state = 0, .external_lex_state = 27}, - [1030] = {.lex_state = 0, .external_lex_state = 27}, - [1031] = {.lex_state = 0, .external_lex_state = 27}, - [1032] = {.lex_state = 0, .external_lex_state = 27}, - [1033] = {.lex_state = 0, .external_lex_state = 27}, - [1034] = {.lex_state = 0, .external_lex_state = 79}, - [1035] = {.lex_state = 0, .external_lex_state = 80}, - [1036] = {.lex_state = 0, .external_lex_state = 76}, - [1037] = {.lex_state = 0, .external_lex_state = 81}, - [1038] = {.lex_state = 0, .external_lex_state = 27}, - [1039] = {.lex_state = 10}, - [1040] = {.lex_state = 0, .external_lex_state = 76}, - [1041] = {.lex_state = 0, .external_lex_state = 27}, - [1042] = {.lex_state = 0}, - [1043] = {.lex_state = 0, .external_lex_state = 77}, - [1044] = {.lex_state = 0, .external_lex_state = 27}, + [944] = {.lex_state = 0, .external_lex_state = 22}, + [945] = {.lex_state = 0, .external_lex_state = 22}, + [946] = {.lex_state = 0, .external_lex_state = 22}, + [947] = {.lex_state = 0, .external_lex_state = 22}, + [948] = {.lex_state = 0, .external_lex_state = 22}, + [949] = {.lex_state = 0, .external_lex_state = 22}, + [950] = {.lex_state = 0, .external_lex_state = 73}, + [951] = {.lex_state = 0, .external_lex_state = 73}, + [952] = {.lex_state = 0, .external_lex_state = 74}, + [953] = {.lex_state = 3}, + [954] = {.lex_state = 0, .external_lex_state = 73}, + [955] = {.lex_state = 0, .external_lex_state = 74}, + [956] = {.lex_state = 0, .external_lex_state = 73}, + [957] = {.lex_state = 0}, + [958] = {.lex_state = 0, .external_lex_state = 73}, + [959] = {.lex_state = 0, .external_lex_state = 74}, + [960] = {.lex_state = 0, .external_lex_state = 22}, + [961] = {.lex_state = 0, .external_lex_state = 73}, + [962] = {.lex_state = 0, .external_lex_state = 22}, + [963] = {.lex_state = 0, .external_lex_state = 22}, + [964] = {.lex_state = 0, .external_lex_state = 22}, + [965] = {.lex_state = 0, .external_lex_state = 22}, + [966] = {.lex_state = 0, .external_lex_state = 22}, + [967] = {.lex_state = 0, .external_lex_state = 22}, + [968] = {.lex_state = 0, .external_lex_state = 22}, + [969] = {.lex_state = 0, .external_lex_state = 73}, + [970] = {.lex_state = 0, .external_lex_state = 74}, + [971] = {.lex_state = 0, .external_lex_state = 73}, + [972] = {.lex_state = 0, .external_lex_state = 22}, + [973] = {.lex_state = 0, .external_lex_state = 73}, + [974] = {.lex_state = 0, .external_lex_state = 38}, + [975] = {.lex_state = 0, .external_lex_state = 73}, + [976] = {.lex_state = 0, .external_lex_state = 22}, + [977] = {.lex_state = 3}, + [978] = {.lex_state = 0, .external_lex_state = 22}, + [979] = {.lex_state = 0, .external_lex_state = 74}, + [980] = {.lex_state = 0, .external_lex_state = 74}, + [981] = {.lex_state = 0, .external_lex_state = 22}, + [982] = {.lex_state = 0, .external_lex_state = 22}, + [983] = {.lex_state = 0, .external_lex_state = 22}, + [984] = {.lex_state = 0, .external_lex_state = 22}, + [985] = {.lex_state = 0, .external_lex_state = 73}, + [986] = {.lex_state = 0, .external_lex_state = 22}, + [987] = {.lex_state = 0, .external_lex_state = 22}, + [988] = {.lex_state = 0, .external_lex_state = 22}, + [989] = {.lex_state = 0, .external_lex_state = 22}, + [990] = {.lex_state = 0, .external_lex_state = 22}, + [991] = {.lex_state = 0, .external_lex_state = 22}, + [992] = {.lex_state = 0, .external_lex_state = 73}, + [993] = {.lex_state = 0, .external_lex_state = 76}, + [994] = {.lex_state = 0, .external_lex_state = 74}, + [995] = {.lex_state = 9}, + [996] = {.lex_state = 0, .external_lex_state = 73}, + [997] = {.lex_state = 0, .external_lex_state = 74}, + [998] = {.lex_state = 0, .external_lex_state = 22}, + [999] = {.lex_state = 5}, + [1000] = {.lex_state = 0, .external_lex_state = 74}, + [1001] = {.lex_state = 0, .external_lex_state = 73}, + [1002] = {.lex_state = 0}, + [1003] = {.lex_state = 0}, + [1004] = {.lex_state = 0, .external_lex_state = 73}, + [1005] = {.lex_state = 5}, + [1006] = {.lex_state = 0, .external_lex_state = 73}, + [1007] = {.lex_state = 0, .external_lex_state = 22}, + [1008] = {.lex_state = 0, .external_lex_state = 77}, + [1009] = {.lex_state = 11}, + [1010] = {.lex_state = 0, .external_lex_state = 22}, + [1011] = {.lex_state = 0, .external_lex_state = 74}, + [1012] = {.lex_state = 9}, + [1013] = {.lex_state = 0, .external_lex_state = 74}, + [1014] = {.lex_state = 51}, + [1015] = {.lex_state = 0, .external_lex_state = 73}, + [1016] = {.lex_state = 0, .external_lex_state = 22}, + [1017] = {.lex_state = 0, .external_lex_state = 73}, + [1018] = {.lex_state = 0, .external_lex_state = 73}, + [1019] = {.lex_state = 0, .external_lex_state = 73}, + [1020] = {.lex_state = 0, .external_lex_state = 73}, + [1021] = {.lex_state = 0, .external_lex_state = 73}, + [1022] = {.lex_state = 0, .external_lex_state = 73}, + [1023] = {.lex_state = 0, .external_lex_state = 73}, + [1024] = {.lex_state = 0, .external_lex_state = 73}, + [1025] = {.lex_state = 0, .external_lex_state = 73}, + [1026] = {.lex_state = 0, .external_lex_state = 22}, + [1027] = {.lex_state = 0}, + [1028] = {.lex_state = 0, .external_lex_state = 73}, + [1029] = {.lex_state = 0, .external_lex_state = 22}, + [1030] = {.lex_state = 0}, + [1031] = {.lex_state = 0, .external_lex_state = 73}, + [1032] = {.lex_state = 9}, + [1033] = {.lex_state = 0, .external_lex_state = 73}, + [1034] = {.lex_state = 0, .external_lex_state = 73}, + [1035] = {.lex_state = 0, .external_lex_state = 22}, + [1036] = {.lex_state = 0, .external_lex_state = 22}, + [1037] = {.lex_state = 0, .external_lex_state = 22}, + [1038] = {.lex_state = 0, .external_lex_state = 74}, + [1039] = {.lex_state = 0, .external_lex_state = 74}, + [1040] = {.lex_state = 0}, + [1041] = {.lex_state = 0, .external_lex_state = 73}, + [1042] = {.lex_state = 3}, + [1043] = {.lex_state = 0, .external_lex_state = 22}, + [1044] = {.lex_state = 0, .external_lex_state = 22}, [1045] = {.lex_state = 51}, - [1046] = {.lex_state = 0, .external_lex_state = 27}, - [1047] = {.lex_state = 0, .external_lex_state = 27}, - [1048] = {.lex_state = 7}, - [1049] = {.lex_state = 0}, - [1050] = {.lex_state = 0, .external_lex_state = 79}, - [1051] = {.lex_state = 0, .external_lex_state = 76}, - [1052] = {.lex_state = 0, .external_lex_state = 27}, - [1053] = {.lex_state = 0, .external_lex_state = 82}, - [1054] = {.lex_state = 0, .external_lex_state = 27}, - [1055] = {.lex_state = 0, .external_lex_state = 27}, - [1056] = {.lex_state = 0, .external_lex_state = 79}, - [1057] = {.lex_state = 0, .external_lex_state = 27}, - [1058] = {.lex_state = 0, .external_lex_state = 76}, - [1059] = {.lex_state = 0, .external_lex_state = 27}, - [1060] = {.lex_state = 0, .external_lex_state = 79}, - [1061] = {.lex_state = 0, .external_lex_state = 28}, - [1062] = {.lex_state = 0, .external_lex_state = 76}, - [1063] = {.lex_state = 0, .external_lex_state = 27}, - [1064] = {.lex_state = 0, .external_lex_state = 76}, - [1065] = {.lex_state = 0, .external_lex_state = 27}, - [1066] = {.lex_state = 0, .external_lex_state = 27}, - [1067] = {.lex_state = 0, .external_lex_state = 79}, - [1068] = {.lex_state = 0, .external_lex_state = 76}, - [1069] = {.lex_state = 0, .external_lex_state = 76}, - [1070] = {.lex_state = 0, .external_lex_state = 27}, - [1071] = {.lex_state = 0, .external_lex_state = 76}, - [1072] = {.lex_state = 0, .external_lex_state = 76}, - [1073] = {.lex_state = 0, .external_lex_state = 27}, - [1074] = {.lex_state = 0, .external_lex_state = 27}, - [1075] = {.lex_state = 0, .external_lex_state = 27}, - [1076] = {.lex_state = 0, .external_lex_state = 79}, - [1077] = {.lex_state = 0, .external_lex_state = 79}, - [1078] = {.lex_state = 0, .external_lex_state = 77}, - [1079] = {.lex_state = 0, .external_lex_state = 27}, - [1080] = {.lex_state = 0, .external_lex_state = 27}, - [1081] = {.lex_state = 0, .external_lex_state = 79}, - [1082] = {.lex_state = 0, .external_lex_state = 79}, - [1083] = {.lex_state = 0, .external_lex_state = 27}, - [1084] = {.lex_state = 0, .external_lex_state = 27}, - [1085] = {.lex_state = 0, .external_lex_state = 27}, - [1086] = {.lex_state = 0, .external_lex_state = 27}, - [1087] = {.lex_state = 0, .external_lex_state = 27}, - [1088] = {.lex_state = 0, .external_lex_state = 27}, - [1089] = {.lex_state = 0, .external_lex_state = 77}, - [1090] = {.lex_state = 0, .external_lex_state = 76}, - [1091] = {.lex_state = 0, .external_lex_state = 76}, - [1092] = {.lex_state = 0, .external_lex_state = 27}, - [1093] = {.lex_state = 0, .external_lex_state = 27}, - [1094] = {.lex_state = 0, .external_lex_state = 27}, - [1095] = {.lex_state = 0, .external_lex_state = 76}, - [1096] = {.lex_state = 0, .external_lex_state = 76}, - [1097] = {.lex_state = 0, .external_lex_state = 76}, - [1098] = {.lex_state = 0, .external_lex_state = 76}, - [1099] = {.lex_state = 0, .external_lex_state = 76}, - [1100] = {.lex_state = 0, .external_lex_state = 76}, - [1101] = {.lex_state = 0, .external_lex_state = 80}, - [1102] = {.lex_state = 0, .external_lex_state = 76}, - [1103] = {.lex_state = 0, .external_lex_state = 76}, - [1104] = {.lex_state = 0, .external_lex_state = 76}, - [1105] = {.lex_state = 0, .external_lex_state = 27}, - [1106] = {.lex_state = 0, .external_lex_state = 27}, - [1107] = {.lex_state = 0, .external_lex_state = 27}, - [1108] = {.lex_state = 0, .external_lex_state = 27}, - [1109] = {.lex_state = 0, .external_lex_state = 27}, - [1110] = {.lex_state = 0}, - [1111] = {.lex_state = 0, .external_lex_state = 79}, - [1112] = {.lex_state = 0, .external_lex_state = 28}, - [1113] = {.lex_state = 0, .external_lex_state = 27}, - [1114] = {.lex_state = 0, .external_lex_state = 27}, + [1046] = {.lex_state = 0, .external_lex_state = 73}, + [1047] = {.lex_state = 0, .external_lex_state = 73}, + [1048] = {.lex_state = 0, .external_lex_state = 73}, + [1049] = {.lex_state = 0, .external_lex_state = 73}, + [1050] = {.lex_state = 0, .external_lex_state = 22}, + [1051] = {.lex_state = 0, .external_lex_state = 23}, + [1052] = {.lex_state = 0, .external_lex_state = 73}, + [1053] = {.lex_state = 0, .external_lex_state = 22}, + [1054] = {.lex_state = 0, .external_lex_state = 22}, + [1055] = {.lex_state = 0, .external_lex_state = 73}, + [1056] = {.lex_state = 9}, + [1057] = {.lex_state = 0, .external_lex_state = 73}, + [1058] = {.lex_state = 0, .external_lex_state = 73}, + [1059] = {.lex_state = 0, .external_lex_state = 22}, + [1060] = {.lex_state = 0, .external_lex_state = 22}, + [1061] = {.lex_state = 0, .external_lex_state = 22}, + [1062] = {.lex_state = 0, .external_lex_state = 22}, + [1063] = {.lex_state = 0, .external_lex_state = 22}, + [1064] = {.lex_state = 0, .external_lex_state = 22}, + [1065] = {.lex_state = 0, .external_lex_state = 73}, + [1066] = {.lex_state = 3}, + [1067] = {.lex_state = 0, .external_lex_state = 22}, + [1068] = {.lex_state = 0, .external_lex_state = 73}, + [1069] = {.lex_state = 51}, + [1070] = {.lex_state = 0, .external_lex_state = 73}, + [1071] = {.lex_state = 0, .external_lex_state = 73}, + [1072] = {.lex_state = 0, .external_lex_state = 73}, + [1073] = {.lex_state = 0, .external_lex_state = 78}, + [1074] = {.lex_state = 0, .external_lex_state = 22}, + [1075] = {.lex_state = 12}, + [1076] = {.lex_state = 0, .external_lex_state = 73}, + [1077] = {.lex_state = 0}, + [1078] = {.lex_state = 0, .external_lex_state = 73}, + [1079] = {.lex_state = 3}, + [1080] = {.lex_state = 9}, + [1081] = {.lex_state = 0, .external_lex_state = 22}, + [1082] = {.lex_state = 0, .external_lex_state = 74}, + [1083] = {.lex_state = 0, .external_lex_state = 22}, + [1084] = {.lex_state = 0, .external_lex_state = 22}, + [1085] = {.lex_state = 0, .external_lex_state = 23}, + [1086] = {.lex_state = 3}, + [1087] = {.lex_state = 0, .external_lex_state = 74}, + [1088] = {.lex_state = 0, .external_lex_state = 22}, + [1089] = {.lex_state = 0}, + [1090] = {.lex_state = 3}, + [1091] = {.lex_state = 7}, + [1092] = {.lex_state = 0, .external_lex_state = 78}, + [1093] = {.lex_state = 51}, + [1094] = {.lex_state = 0, .external_lex_state = 73}, + [1095] = {.lex_state = 0, .external_lex_state = 73}, + [1096] = {.lex_state = 0}, + [1097] = {.lex_state = 0, .external_lex_state = 22}, + [1098] = {.lex_state = 0, .external_lex_state = 73}, + [1099] = {.lex_state = 0, .external_lex_state = 73}, + [1100] = {.lex_state = 0, .external_lex_state = 22}, + [1101] = {.lex_state = 0}, + [1102] = {.lex_state = 0, .external_lex_state = 73}, + [1103] = {.lex_state = 9}, + [1104] = {.lex_state = 0, .external_lex_state = 73}, + [1105] = {.lex_state = 9}, + [1106] = {.lex_state = 0, .external_lex_state = 22}, + [1107] = {.lex_state = 0, .external_lex_state = 22}, + [1108] = {.lex_state = 0}, + [1109] = {.lex_state = 0, .external_lex_state = 22}, + [1110] = {.lex_state = 0, .external_lex_state = 74}, + [1111] = {.lex_state = 0, .external_lex_state = 74}, + [1112] = {.lex_state = 0, .external_lex_state = 74}, + [1113] = {.lex_state = 3}, + [1114] = {.lex_state = 0, .external_lex_state = 22}, [1115] = {.lex_state = 0, .external_lex_state = 79}, - [1116] = {.lex_state = 0, .external_lex_state = 76}, - [1117] = {.lex_state = 0, .external_lex_state = 76}, - [1118] = {.lex_state = 0, .external_lex_state = 76}, - [1119] = {.lex_state = 0, .external_lex_state = 27}, - [1120] = {.lex_state = 0, .external_lex_state = 76}, - [1121] = {.lex_state = 0, .external_lex_state = 76}, - [1122] = {.lex_state = 0, .external_lex_state = 79}, - [1123] = {.lex_state = 0, .external_lex_state = 77}, - [1124] = {.lex_state = 0, .external_lex_state = 27}, - [1125] = {.lex_state = 10}, - [1126] = {.lex_state = 11}, - [1127] = {.lex_state = 0, .external_lex_state = 27}, - [1128] = {.lex_state = 0, .external_lex_state = 27}, - [1129] = {.lex_state = 0, .external_lex_state = 27}, - [1130] = {.lex_state = 0}, - [1131] = {.lex_state = 0}, - [1132] = {.lex_state = 0, .external_lex_state = 79}, - [1133] = {.lex_state = 0, .external_lex_state = 27}, - [1134] = {.lex_state = 0, .external_lex_state = 27}, - [1135] = {.lex_state = 0, .external_lex_state = 27}, - [1136] = {.lex_state = 0, .external_lex_state = 27}, - [1137] = {.lex_state = 0, .external_lex_state = 27}, - [1138] = {.lex_state = 51}, - [1139] = {.lex_state = 0, .external_lex_state = 27}, - [1140] = {.lex_state = 0, .external_lex_state = 27}, - [1141] = {.lex_state = 0, .external_lex_state = 27}, - [1142] = {.lex_state = 0, .external_lex_state = 27}, - [1143] = {.lex_state = 51}, - [1144] = {.lex_state = 0, .external_lex_state = 76}, - [1145] = {.lex_state = 0, .external_lex_state = 79}, - [1146] = {.lex_state = 0, .external_lex_state = 76}, - [1147] = {.lex_state = 0, .external_lex_state = 79}, - [1148] = {.lex_state = 10}, - [1149] = {.lex_state = 0, .external_lex_state = 27}, - [1150] = {.lex_state = 0, .external_lex_state = 76}, - [1151] = {.lex_state = 0, .external_lex_state = 27}, - [1152] = {.lex_state = 0, .external_lex_state = 27}, - [1153] = {.lex_state = 0, .external_lex_state = 76}, - [1154] = {.lex_state = 0, .external_lex_state = 76}, - [1155] = {.lex_state = 0}, - [1156] = {.lex_state = 0, .external_lex_state = 76}, - [1157] = {.lex_state = 0, .external_lex_state = 27}, - [1158] = {.lex_state = 0, .external_lex_state = 76}, - [1159] = {.lex_state = 0, .external_lex_state = 76}, - [1160] = {.lex_state = 0, .external_lex_state = 76}, - [1161] = {.lex_state = 51}, - [1162] = {.lex_state = 0, .external_lex_state = 79}, - [1163] = {.lex_state = 0, .external_lex_state = 76}, - [1164] = {.lex_state = 0, .external_lex_state = 76}, - [1165] = {.lex_state = 0, .external_lex_state = 27}, - [1166] = {.lex_state = 0, .external_lex_state = 76}, - [1167] = {.lex_state = 0, .external_lex_state = 76}, - [1168] = {.lex_state = 0, .external_lex_state = 76}, - [1169] = {.lex_state = 0, .external_lex_state = 76}, - [1170] = {.lex_state = 0, .external_lex_state = 27}, - [1171] = {.lex_state = 10}, - [1172] = {.lex_state = 0, .external_lex_state = 27}, - [1173] = {.lex_state = 0, .external_lex_state = 76}, - [1174] = {.lex_state = 0, .external_lex_state = 27}, - [1175] = {.lex_state = 0, .external_lex_state = 27}, - [1176] = {.lex_state = 0, .external_lex_state = 27}, - [1177] = {.lex_state = 0, .external_lex_state = 79}, - [1178] = {.lex_state = 0, .external_lex_state = 79}, - [1179] = {.lex_state = 0, .external_lex_state = 77}, - [1180] = {.lex_state = 0, .external_lex_state = 27}, - [1181] = {.lex_state = 10}, - [1182] = {.lex_state = 0, .external_lex_state = 27}, - [1183] = {.lex_state = 0, .external_lex_state = 76}, - [1184] = {.lex_state = 51}, - [1185] = {.lex_state = 51}, - [1186] = {.lex_state = 0, .external_lex_state = 79}, - [1187] = {.lex_state = 0, .external_lex_state = 27}, - [1188] = {.lex_state = 0, .external_lex_state = 27}, - [1189] = {.lex_state = 0, .external_lex_state = 27}, - [1190] = {.lex_state = 0, .external_lex_state = 76}, - [1191] = {.lex_state = 0, .external_lex_state = 27}, - [1192] = {.lex_state = 0, .external_lex_state = 27}, - [1193] = {.lex_state = 0, .external_lex_state = 27}, - [1194] = {.lex_state = 10}, - [1195] = {.lex_state = 0, .external_lex_state = 27}, - [1196] = {.lex_state = 0, .external_lex_state = 27}, - [1197] = {.lex_state = 0, .external_lex_state = 27}, - [1198] = {.lex_state = 0, .external_lex_state = 27}, - [1199] = {.lex_state = 0, .external_lex_state = 41}, - [1200] = {.lex_state = 10}, - [1201] = {.lex_state = 3}, - [1202] = {.lex_state = 0}, - [1203] = {.lex_state = 0, .external_lex_state = 27}, - [1204] = {.lex_state = 5}, - [1205] = {.lex_state = 3}, - [1206] = {.lex_state = 0, .external_lex_state = 41}, - [1207] = {.lex_state = 51}, - [1208] = {.lex_state = 0, .external_lex_state = 27}, - [1209] = {.lex_state = 0, .external_lex_state = 27}, - [1210] = {.lex_state = 0, .external_lex_state = 27}, - [1211] = {.lex_state = 5}, - [1212] = {.lex_state = 0, .external_lex_state = 76}, - [1213] = {.lex_state = 0, .external_lex_state = 27}, - [1214] = {.lex_state = 3}, - [1215] = {.lex_state = 3}, - [1216] = {.lex_state = 10}, - [1217] = {.lex_state = 0}, - [1218] = {.lex_state = 0, .external_lex_state = 76}, - [1219] = {.lex_state = 0, .external_lex_state = 27}, - [1220] = {.lex_state = 0, .external_lex_state = 27}, - [1221] = {.lex_state = 0, .external_lex_state = 79}, - [1222] = {.lex_state = 0, .external_lex_state = 27}, - [1223] = {.lex_state = 0, .external_lex_state = 79}, - [1224] = {.lex_state = 0, .external_lex_state = 27}, - [1225] = {.lex_state = 0, .external_lex_state = 76}, - [1226] = {.lex_state = 0, .external_lex_state = 83}, - [1227] = {.lex_state = 0}, - [1228] = {.lex_state = 0, .external_lex_state = 79}, - [1229] = {.lex_state = 51}, - [1230] = {.lex_state = 0, .external_lex_state = 76}, - [1231] = {.lex_state = 0, .external_lex_state = 76}, - [1232] = {.lex_state = 0, .external_lex_state = 76}, - [1233] = {.lex_state = 0, .external_lex_state = 76}, - [1234] = {.lex_state = 0, .external_lex_state = 76}, - [1235] = {.lex_state = 0, .external_lex_state = 76}, - [1236] = {.lex_state = 0, .external_lex_state = 76}, - [1237] = {.lex_state = 0, .external_lex_state = 76}, - [1238] = {.lex_state = 0, .external_lex_state = 76}, - [1239] = {.lex_state = 0, .external_lex_state = 76}, - [1240] = {.lex_state = 0, .external_lex_state = 76}, - [1241] = {.lex_state = 0, .external_lex_state = 76}, - [1242] = {.lex_state = 0, .external_lex_state = 76}, - [1243] = {.lex_state = 51}, - [1244] = {.lex_state = 0, .external_lex_state = 27}, - [1245] = {.lex_state = 0}, - [1246] = {.lex_state = 0}, - [1247] = {.lex_state = 10}, - [1248] = {.lex_state = 5}, - [1249] = {.lex_state = 12}, - [1250] = {.lex_state = 51}, - [1251] = {.lex_state = 0, .external_lex_state = 79}, - [1252] = {.lex_state = 0, .external_lex_state = 79}, - [1253] = {.lex_state = 0}, - [1254] = {.lex_state = 10}, - [1255] = {.lex_state = 5}, - [1256] = {.lex_state = 12}, - [1257] = {.lex_state = 51}, - [1258] = {.lex_state = 0, .external_lex_state = 27}, - [1259] = {.lex_state = 0, .external_lex_state = 27}, - [1260] = {.lex_state = 0}, - [1261] = {.lex_state = 10}, - [1262] = {.lex_state = 5}, - [1263] = {.lex_state = 12}, - [1264] = {.lex_state = 51}, - [1265] = {.lex_state = 0, .external_lex_state = 27}, - [1266] = {.lex_state = 0, .external_lex_state = 76}, - [1267] = {.lex_state = 0}, - [1268] = {.lex_state = 10}, - [1269] = {.lex_state = 5}, - [1270] = {.lex_state = 12}, - [1271] = {.lex_state = 51}, - [1272] = {.lex_state = 0, .external_lex_state = 79}, - [1273] = {.lex_state = 0, .external_lex_state = 76}, - [1274] = {.lex_state = 0}, - [1275] = {.lex_state = 10}, - [1276] = {.lex_state = 5}, - [1277] = {.lex_state = 12}, - [1278] = {.lex_state = 0, .external_lex_state = 27}, - [1279] = {.lex_state = 0}, - [1280] = {.lex_state = 0}, - [1281] = {.lex_state = 3}, - [1282] = {.lex_state = 0, .external_lex_state = 27}, - [1283] = {.lex_state = 0}, - [1284] = {.lex_state = 0}, - [1285] = {.lex_state = 3}, - [1286] = {.lex_state = 0, .external_lex_state = 79}, - [1287] = {.lex_state = 0}, - [1288] = {.lex_state = 0, .external_lex_state = 76}, - [1289] = {.lex_state = 3}, - [1290] = {.lex_state = 0, .external_lex_state = 76}, - [1291] = {.lex_state = 0}, - [1292] = {.lex_state = 0, .external_lex_state = 79}, - [1293] = {.lex_state = 3}, - [1294] = {.lex_state = 0, .external_lex_state = 27}, - [1295] = {.lex_state = 0}, - [1296] = {.lex_state = 0}, - [1297] = {.lex_state = 3}, - [1298] = {.lex_state = 0, .external_lex_state = 78}, - [1299] = {.lex_state = 0}, - [1300] = {.lex_state = 0, .external_lex_state = 78}, - [1301] = {.lex_state = 0}, - [1302] = {.lex_state = 0, .external_lex_state = 78}, - [1303] = {.lex_state = 0}, - [1304] = {.lex_state = 0, .external_lex_state = 78}, - [1305] = {.lex_state = 0}, - [1306] = {.lex_state = 0, .external_lex_state = 78}, - [1307] = {.lex_state = 0}, - [1308] = {.lex_state = 0}, - [1309] = {.lex_state = 0}, - [1310] = {.lex_state = 0}, - [1311] = {.lex_state = 0}, - [1312] = {.lex_state = 0}, - [1313] = {.lex_state = 12}, - [1314] = {.lex_state = 0, .external_lex_state = 27}, - [1315] = {.lex_state = 0, .external_lex_state = 79}, - [1316] = {.lex_state = 0, .external_lex_state = 27}, - [1317] = {.lex_state = 0, .external_lex_state = 79}, - [1318] = {.lex_state = 0}, + [1116] = {.lex_state = 51}, + [1117] = {.lex_state = 0, .external_lex_state = 73}, + [1118] = {.lex_state = 0, .external_lex_state = 73}, + [1119] = {.lex_state = 0, .external_lex_state = 73}, + [1120] = {.lex_state = 0, .external_lex_state = 73}, + [1121] = {.lex_state = 0, .external_lex_state = 73}, + [1122] = {.lex_state = 0, .external_lex_state = 73}, + [1123] = {.lex_state = 0, .external_lex_state = 73}, + [1124] = {.lex_state = 0, .external_lex_state = 73}, + [1125] = {.lex_state = 0, .external_lex_state = 73}, + [1126] = {.lex_state = 0, .external_lex_state = 73}, + [1127] = {.lex_state = 0, .external_lex_state = 73}, + [1128] = {.lex_state = 0, .external_lex_state = 73}, + [1129] = {.lex_state = 0, .external_lex_state = 73}, + [1130] = {.lex_state = 0, .external_lex_state = 73}, + [1131] = {.lex_state = 0, .external_lex_state = 73}, + [1132] = {.lex_state = 51}, + [1133] = {.lex_state = 0, .external_lex_state = 73}, + [1134] = {.lex_state = 0, .external_lex_state = 73}, + [1135] = {.lex_state = 0}, + [1136] = {.lex_state = 9}, + [1137] = {.lex_state = 5}, + [1138] = {.lex_state = 11}, + [1139] = {.lex_state = 51}, + [1140] = {.lex_state = 0, .external_lex_state = 22}, + [1141] = {.lex_state = 0, .external_lex_state = 22}, + [1142] = {.lex_state = 0}, + [1143] = {.lex_state = 9}, + [1144] = {.lex_state = 5}, + [1145] = {.lex_state = 11}, + [1146] = {.lex_state = 51}, + [1147] = {.lex_state = 0, .external_lex_state = 22}, + [1148] = {.lex_state = 0}, + [1149] = {.lex_state = 0}, + [1150] = {.lex_state = 9}, + [1151] = {.lex_state = 5}, + [1152] = {.lex_state = 11}, + [1153] = {.lex_state = 51}, + [1154] = {.lex_state = 0, .external_lex_state = 73}, + [1155] = {.lex_state = 0, .external_lex_state = 22}, + [1156] = {.lex_state = 0}, + [1157] = {.lex_state = 9}, + [1158] = {.lex_state = 5}, + [1159] = {.lex_state = 11}, + [1160] = {.lex_state = 0, .external_lex_state = 22}, + [1161] = {.lex_state = 0}, + [1162] = {.lex_state = 51}, + [1163] = {.lex_state = 3}, + [1164] = {.lex_state = 0, .external_lex_state = 73}, + [1165] = {.lex_state = 0}, + [1166] = {.lex_state = 0, .external_lex_state = 38}, + [1167] = {.lex_state = 3}, + [1168] = {.lex_state = 0, .external_lex_state = 74}, + [1169] = {.lex_state = 0}, + [1170] = {.lex_state = 0, .external_lex_state = 73}, + [1171] = {.lex_state = 3}, + [1172] = {.lex_state = 0, .external_lex_state = 73}, + [1173] = {.lex_state = 0}, + [1174] = {.lex_state = 51}, + [1175] = {.lex_state = 3}, + [1176] = {.lex_state = 0, .external_lex_state = 77}, + [1177] = {.lex_state = 0}, + [1178] = {.lex_state = 0, .external_lex_state = 77}, + [1179] = {.lex_state = 0}, + [1180] = {.lex_state = 0, .external_lex_state = 77}, + [1181] = {.lex_state = 0}, + [1182] = {.lex_state = 0, .external_lex_state = 77}, + [1183] = {.lex_state = 0}, + [1184] = {.lex_state = 0}, + [1185] = {.lex_state = 0}, + [1186] = {.lex_state = 0}, + [1187] = {.lex_state = 0}, + [1188] = {.lex_state = 0, .external_lex_state = 22}, + [1189] = {.lex_state = 0, .external_lex_state = 80}, + [1190] = {.lex_state = 0, .external_lex_state = 22}, + [1191] = {.lex_state = 0, .external_lex_state = 74}, + [1192] = {.lex_state = 0, .external_lex_state = 22}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -5018,13 +4780,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_roman_parens] = ACTIONS(1), [sym__list_item_continuation] = ACTIONS(1), [sym__list_item_end] = ACTIONS(1), - [sym__list_item_content_spacer] = ACTIONS(1), + [sym__indented_content_spacer] = ACTIONS(1), [sym__close_paragraph] = ACTIONS(1), [sym__block_quote_begin] = ACTIONS(1), [sym__block_quote_continuation] = ACTIONS(1), [sym__thematic_break_dash] = ACTIONS(1), [sym__thematic_break_star] = ACTIONS(1), [sym__footnote_mark_begin] = ACTIONS(1), + [sym__footnote_continuation] = ACTIONS(1), [sym__footnote_end] = ACTIONS(1), [sym__table_caption_begin] = ACTIONS(1), [sym__table_caption_end] = ACTIONS(1), @@ -5032,98 +4795,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__error] = ACTIONS(1), }, [1] = { - [sym_document] = STATE(1284), + [sym_document] = STATE(1002), [sym_frontmatter] = STATE(4), - [sym__block_with_section] = STATE(275), - [sym__block_element] = STATE(275), - [sym_section] = STATE(275), - [sym_heading] = STATE(5), - [sym_list] = STATE(275), - [sym__list_dash] = STATE(140), - [sym__list_item_dash] = STATE(727), - [sym__list_plus] = STATE(140), - [sym__list_item_plus] = STATE(730), - [sym__list_star] = STATE(140), - [sym__list_item_star] = STATE(759), - [sym__list_task] = STATE(140), - [sym__list_item_task] = STATE(761), - [sym_list_marker_task] = STATE(46), - [sym__list_definition] = STATE(140), - [sym__list_item_definition] = STATE(819), - [sym__list_decimal_period] = STATE(140), - [sym__list_item_decimal_period] = STATE(852), - [sym__list_decimal_paren] = STATE(140), - [sym__list_item_decimal_paren] = STATE(837), - [sym__list_decimal_parens] = STATE(140), - [sym__list_item_decimal_parens] = STATE(815), - [sym__list_lower_alpha_period] = STATE(140), - [sym__list_item_lower_alpha_period] = STATE(843), - [sym__list_lower_alpha_paren] = STATE(140), - [sym__list_item_lower_alpha_paren] = STATE(850), - [sym__list_lower_alpha_parens] = STATE(140), - [sym__list_item_lower_alpha_parens] = STATE(853), - [sym__list_upper_alpha_period] = STATE(140), - [sym__list_item_upper_alpha_period] = STATE(854), - [sym__list_upper_alpha_paren] = STATE(140), - [sym__list_item_upper_alpha_paren] = STATE(855), - [sym__list_upper_alpha_parens] = STATE(140), - [sym__list_item_upper_alpha_parens] = STATE(856), - [sym__list_lower_roman_period] = STATE(140), - [sym__list_item_lower_roman_period] = STATE(857), - [sym__list_lower_roman_paren] = STATE(140), - [sym__list_item_lower_roman_paren] = STATE(871), - [sym__list_lower_roman_parens] = STATE(140), - [sym__list_item_lower_roman_parens] = STATE(874), - [sym__list_upper_roman_period] = STATE(140), - [sym__list_item_upper_roman_period] = STATE(876), - [sym__list_upper_roman_paren] = STATE(140), - [sym__list_item_upper_roman_paren] = STATE(878), - [sym__list_upper_roman_parens] = STATE(140), - [sym__list_item_upper_roman_parens] = STATE(880), - [sym_table] = STATE(275), - [sym__table_content] = STATE(71), - [sym_table_separator] = STATE(71), - [sym_table_row] = STATE(78), - [sym_footnote] = STATE(275), - [sym_footnote_marker_begin] = STATE(1027), - [sym_div] = STATE(275), - [sym__div_marker_begin] = STATE(1041), - [sym_code_block] = STATE(275), - [sym_raw_block] = STATE(275), - [sym_thematic_break] = STATE(275), - [sym_block_quote] = STATE(275), - [sym__block_quote_prefix] = STATE(306), - [sym_link_reference_definition] = STATE(275), - [sym_block_attribute] = STATE(275), - [sym__paragraph] = STATE(275), - [sym__paragraph_content] = STATE(895), - [sym__paragraph_inline_content] = STATE(896), - [sym__inline] = STATE(715), - [sym__symbol_fallback] = STATE(381), - [aux_sym_document_repeat1] = STATE(2), - [aux_sym__list_dash_repeat1] = STATE(450), - [aux_sym__list_plus_repeat1] = STATE(444), - [aux_sym__list_star_repeat1] = STATE(448), - [aux_sym__list_task_repeat1] = STATE(432), - [aux_sym__list_definition_repeat1] = STATE(577), - [aux_sym__list_decimal_period_repeat1] = STATE(578), - [aux_sym__list_decimal_paren_repeat1] = STATE(580), - [aux_sym__list_decimal_parens_repeat1] = STATE(582), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(584), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(586), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(588), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(605), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(607), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(609), - [aux_sym__list_lower_roman_period_repeat1] = STATE(611), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(629), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(631), - [aux_sym__list_upper_roman_period_repeat1] = STATE(649), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(651), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(653), - [aux_sym_table_repeat1] = STATE(71), - [aux_sym__block_quote_prefix_repeat1] = STATE(330), - [aux_sym__inline_repeat1] = STATE(381), + [sym__block_with_section] = STATE(111), + [sym__block_element] = STATE(111), + [sym_section] = STATE(111), + [sym_heading] = STATE(3), + [sym_list] = STATE(111), + [sym__list_dash] = STATE(209), + [sym__list_item_dash] = STATE(636), + [sym__list_plus] = STATE(209), + [sym__list_item_plus] = STATE(637), + [sym__list_star] = STATE(209), + [sym__list_item_star] = STATE(671), + [sym__list_task] = STATE(209), + [sym__list_item_task] = STATE(691), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(209), + [sym__list_item_definition] = STATE(896), + [sym__list_decimal_period] = STATE(209), + [sym__list_item_decimal_period] = STATE(841), + [sym__list_decimal_paren] = STATE(209), + [sym__list_item_decimal_paren] = STATE(796), + [sym__list_decimal_parens] = STATE(209), + [sym__list_item_decimal_parens] = STATE(716), + [sym__list_lower_alpha_period] = STATE(209), + [sym__list_item_lower_alpha_period] = STATE(722), + [sym__list_lower_alpha_paren] = STATE(209), + [sym__list_item_lower_alpha_paren] = STATE(801), + [sym__list_lower_alpha_parens] = STATE(209), + [sym__list_item_lower_alpha_parens] = STATE(813), + [sym__list_upper_alpha_period] = STATE(209), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(209), + [sym__list_item_upper_alpha_paren] = STATE(706), + [sym__list_upper_alpha_parens] = STATE(209), + [sym__list_item_upper_alpha_parens] = STATE(707), + [sym__list_lower_roman_period] = STATE(209), + [sym__list_item_lower_roman_period] = STATE(725), + [sym__list_lower_roman_paren] = STATE(209), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(209), + [sym__list_item_lower_roman_parens] = STATE(736), + [sym__list_upper_roman_period] = STATE(209), + [sym__list_item_upper_roman_period] = STATE(742), + [sym__list_upper_roman_paren] = STATE(209), + [sym__list_item_upper_roman_paren] = STATE(743), + [sym__list_upper_roman_parens] = STATE(209), + [sym__list_item_upper_roman_parens] = STATE(762), + [sym_table] = STATE(111), + [sym__table_content] = STATE(66), + [sym_table_separator] = STATE(66), + [sym_table_row] = STATE(71), + [sym_footnote] = STATE(111), + [sym_footnote_marker_begin] = STATE(1008), + [sym_div] = STATE(111), + [sym__div_marker_begin] = STATE(1010), + [sym_code_block] = STATE(111), + [sym_raw_block] = STATE(111), + [sym_thematic_break] = STATE(111), + [sym_block_quote] = STATE(111), + [sym__block_quote_prefix] = STATE(230), + [sym_link_reference_definition] = STATE(111), + [sym_block_attribute] = STATE(111), + [sym__paragraph] = STATE(111), + [sym__paragraph_content] = STATE(769), + [sym__paragraph_inline_content] = STATE(775), + [sym__inline] = STATE(616), + [sym__symbol_fallback] = STATE(297), + [aux_sym_document_repeat1] = STATE(5), + [aux_sym__list_dash_repeat1] = STATE(363), + [aux_sym__list_plus_repeat1] = STATE(371), + [aux_sym__list_star_repeat1] = STATE(372), + [aux_sym__list_task_repeat1] = STATE(351), + [aux_sym__list_definition_repeat1] = STATE(531), + [aux_sym__list_decimal_period_repeat1] = STATE(532), + [aux_sym__list_decimal_paren_repeat1] = STATE(549), + [aux_sym__list_decimal_parens_repeat1] = STATE(551), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(553), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(555), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(557), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(559), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(561), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(461), + [aux_sym__list_lower_roman_period_repeat1] = STATE(564), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(566), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(568), + [aux_sym__list_upper_roman_period_repeat1] = STATE(570), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(572), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(576), + [aux_sym_table_repeat1] = STATE(66), + [aux_sym__block_quote_prefix_repeat1] = STATE(253), + [aux_sym__inline_repeat1] = STATE(297), [ts_builtin_sym_end] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(5), [anon_sym_PIPE] = ACTIONS(7), @@ -5166,111 +4929,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__thematic_break_star] = ACTIONS(69), }, [2] = { - [sym__block_with_section] = STATE(275), - [sym__block_element] = STATE(275), - [sym_section] = STATE(275), - [sym_heading] = STATE(5), - [sym_list] = STATE(275), - [sym__list_dash] = STATE(140), - [sym__list_item_dash] = STATE(727), - [sym__list_plus] = STATE(140), - [sym__list_item_plus] = STATE(730), - [sym__list_star] = STATE(140), - [sym__list_item_star] = STATE(759), - [sym__list_task] = STATE(140), - [sym__list_item_task] = STATE(761), - [sym_list_marker_task] = STATE(46), - [sym__list_definition] = STATE(140), - [sym__list_item_definition] = STATE(819), - [sym__list_decimal_period] = STATE(140), - [sym__list_item_decimal_period] = STATE(852), - [sym__list_decimal_paren] = STATE(140), - [sym__list_item_decimal_paren] = STATE(837), - [sym__list_decimal_parens] = STATE(140), - [sym__list_item_decimal_parens] = STATE(815), - [sym__list_lower_alpha_period] = STATE(140), - [sym__list_item_lower_alpha_period] = STATE(843), - [sym__list_lower_alpha_paren] = STATE(140), - [sym__list_item_lower_alpha_paren] = STATE(850), - [sym__list_lower_alpha_parens] = STATE(140), - [sym__list_item_lower_alpha_parens] = STATE(853), - [sym__list_upper_alpha_period] = STATE(140), - [sym__list_item_upper_alpha_period] = STATE(854), - [sym__list_upper_alpha_paren] = STATE(140), - [sym__list_item_upper_alpha_paren] = STATE(855), - [sym__list_upper_alpha_parens] = STATE(140), - [sym__list_item_upper_alpha_parens] = STATE(856), - [sym__list_lower_roman_period] = STATE(140), - [sym__list_item_lower_roman_period] = STATE(857), - [sym__list_lower_roman_paren] = STATE(140), - [sym__list_item_lower_roman_paren] = STATE(871), - [sym__list_lower_roman_parens] = STATE(140), - [sym__list_item_lower_roman_parens] = STATE(874), - [sym__list_upper_roman_period] = STATE(140), - [sym__list_item_upper_roman_period] = STATE(876), - [sym__list_upper_roman_paren] = STATE(140), - [sym__list_item_upper_roman_paren] = STATE(878), - [sym__list_upper_roman_parens] = STATE(140), - [sym__list_item_upper_roman_parens] = STATE(880), - [sym_table] = STATE(275), - [sym__table_content] = STATE(71), - [sym_table_separator] = STATE(71), - [sym_table_row] = STATE(78), - [sym_footnote] = STATE(275), - [sym_footnote_marker_begin] = STATE(1027), - [sym_div] = STATE(275), - [sym__div_marker_begin] = STATE(1041), - [sym_code_block] = STATE(275), - [sym_raw_block] = STATE(275), - [sym_thematic_break] = STATE(275), - [sym_block_quote] = STATE(275), - [sym__block_quote_prefix] = STATE(306), - [sym_link_reference_definition] = STATE(275), - [sym_block_attribute] = STATE(275), - [sym__paragraph] = STATE(275), - [sym__paragraph_content] = STATE(895), - [sym__paragraph_inline_content] = STATE(896), - [sym__inline] = STATE(715), - [sym__symbol_fallback] = STATE(381), - [aux_sym_document_repeat1] = STATE(6), - [aux_sym__list_dash_repeat1] = STATE(450), - [aux_sym__list_plus_repeat1] = STATE(444), - [aux_sym__list_star_repeat1] = STATE(448), - [aux_sym__list_task_repeat1] = STATE(432), - [aux_sym__list_definition_repeat1] = STATE(577), - [aux_sym__list_decimal_period_repeat1] = STATE(578), - [aux_sym__list_decimal_paren_repeat1] = STATE(580), - [aux_sym__list_decimal_parens_repeat1] = STATE(582), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(584), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(586), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(588), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(605), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(607), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(609), - [aux_sym__list_lower_roman_period_repeat1] = STATE(611), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(629), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(631), - [aux_sym__list_upper_roman_period_repeat1] = STATE(649), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(651), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(653), - [aux_sym_table_repeat1] = STATE(71), - [aux_sym__block_quote_prefix_repeat1] = STATE(330), - [aux_sym__inline_repeat1] = STATE(381), - [ts_builtin_sym_end] = ACTIONS(71), - [anon_sym_LBRACK] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(7), + [sym__block_with_section] = STATE(138), + [sym__block_element] = STATE(138), + [sym_section] = STATE(138), + [sym_heading] = STATE(10), + [sym_list] = STATE(138), + [sym__list_dash] = STATE(144), + [sym__list_item_dash] = STATE(636), + [sym__list_plus] = STATE(144), + [sym__list_item_plus] = STATE(637), + [sym__list_star] = STATE(144), + [sym__list_item_star] = STATE(671), + [sym__list_task] = STATE(144), + [sym__list_item_task] = STATE(691), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(144), + [sym__list_item_definition] = STATE(896), + [sym__list_decimal_period] = STATE(144), + [sym__list_item_decimal_period] = STATE(841), + [sym__list_decimal_paren] = STATE(144), + [sym__list_item_decimal_paren] = STATE(796), + [sym__list_decimal_parens] = STATE(144), + [sym__list_item_decimal_parens] = STATE(716), + [sym__list_lower_alpha_period] = STATE(144), + [sym__list_item_lower_alpha_period] = STATE(722), + [sym__list_lower_alpha_paren] = STATE(144), + [sym__list_item_lower_alpha_paren] = STATE(801), + [sym__list_lower_alpha_parens] = STATE(144), + [sym__list_item_lower_alpha_parens] = STATE(813), + [sym__list_upper_alpha_period] = STATE(144), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(144), + [sym__list_item_upper_alpha_paren] = STATE(706), + [sym__list_upper_alpha_parens] = STATE(144), + [sym__list_item_upper_alpha_parens] = STATE(707), + [sym__list_lower_roman_period] = STATE(144), + [sym__list_item_lower_roman_period] = STATE(725), + [sym__list_lower_roman_paren] = STATE(144), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(144), + [sym__list_item_lower_roman_parens] = STATE(736), + [sym__list_upper_roman_period] = STATE(144), + [sym__list_item_upper_roman_period] = STATE(742), + [sym__list_upper_roman_paren] = STATE(144), + [sym__list_item_upper_roman_paren] = STATE(743), + [sym__list_upper_roman_parens] = STATE(144), + [sym__list_item_upper_roman_parens] = STATE(762), + [sym_table] = STATE(138), + [sym__table_content] = STATE(67), + [sym_table_separator] = STATE(67), + [sym_table_row] = STATE(70), + [sym_footnote] = STATE(138), + [sym_footnote_marker_begin] = STATE(1180), + [sym_div] = STATE(138), + [sym__div_marker_begin] = STATE(1074), + [sym_code_block] = STATE(138), + [sym_raw_block] = STATE(138), + [sym_thematic_break] = STATE(138), + [sym_block_quote] = STATE(138), + [sym__block_quote_prefix] = STATE(233), + [sym_link_reference_definition] = STATE(138), + [sym_block_attribute] = STATE(138), + [sym__paragraph] = STATE(138), + [sym__paragraph_content] = STATE(773), + [sym__paragraph_inline_content] = STATE(775), + [sym__inline] = STATE(616), + [sym__symbol_fallback] = STATE(297), + [aux_sym_document_repeat1] = STATE(9), + [aux_sym__list_dash_repeat1] = STATE(357), + [aux_sym__list_plus_repeat1] = STATE(358), + [aux_sym__list_star_repeat1] = STATE(359), + [aux_sym__list_task_repeat1] = STATE(344), + [aux_sym__list_definition_repeat1] = STATE(515), + [aux_sym__list_decimal_period_repeat1] = STATE(516), + [aux_sym__list_decimal_paren_repeat1] = STATE(517), + [aux_sym__list_decimal_parens_repeat1] = STATE(518), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(519), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(520), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(521), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(522), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(523), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(524), + [aux_sym__list_lower_roman_period_repeat1] = STATE(525), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(526), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(527), + [aux_sym__list_upper_roman_period_repeat1] = STATE(528), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(529), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(530), + [aux_sym_table_repeat1] = STATE(67), + [aux_sym__block_quote_prefix_repeat1] = STATE(253), + [aux_sym__inline_repeat1] = STATE(297), + [anon_sym_LBRACK] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(73), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(11), + [anon_sym_LBRACE] = ACTIONS(75), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(15), + [sym__block_close] = ACTIONS(77), + [sym__newline] = ACTIONS(79), [sym__heading_begin] = ACTIONS(19), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(23), + [sym__code_block_begin] = ACTIONS(81), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -5291,117 +5054,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(65), + [sym__block_quote_begin] = ACTIONS(83), [sym__block_quote_continuation] = ACTIONS(67), - [sym__thematic_break_dash] = ACTIONS(69), - [sym__thematic_break_star] = ACTIONS(69), + [sym__thematic_break_dash] = ACTIONS(85), + [sym__thematic_break_star] = ACTIONS(85), }, [3] = { - [sym__block_with_section] = STATE(159), - [sym__block_element] = STATE(159), - [sym_section] = STATE(159), - [sym_heading] = STATE(9), - [sym_list] = STATE(159), - [sym__list_dash] = STATE(166), - [sym__list_item_dash] = STATE(727), - [sym__list_plus] = STATE(166), - [sym__list_item_plus] = STATE(730), - [sym__list_star] = STATE(166), - [sym__list_item_star] = STATE(759), - [sym__list_task] = STATE(166), - [sym__list_item_task] = STATE(761), - [sym_list_marker_task] = STATE(46), - [sym__list_definition] = STATE(166), - [sym__list_item_definition] = STATE(819), - [sym__list_decimal_period] = STATE(166), - [sym__list_item_decimal_period] = STATE(852), - [sym__list_decimal_paren] = STATE(166), - [sym__list_item_decimal_paren] = STATE(837), - [sym__list_decimal_parens] = STATE(166), - [sym__list_item_decimal_parens] = STATE(815), - [sym__list_lower_alpha_period] = STATE(166), - [sym__list_item_lower_alpha_period] = STATE(843), - [sym__list_lower_alpha_paren] = STATE(166), - [sym__list_item_lower_alpha_paren] = STATE(850), - [sym__list_lower_alpha_parens] = STATE(166), - [sym__list_item_lower_alpha_parens] = STATE(853), - [sym__list_upper_alpha_period] = STATE(166), - [sym__list_item_upper_alpha_period] = STATE(854), - [sym__list_upper_alpha_paren] = STATE(166), - [sym__list_item_upper_alpha_paren] = STATE(855), - [sym__list_upper_alpha_parens] = STATE(166), - [sym__list_item_upper_alpha_parens] = STATE(856), - [sym__list_lower_roman_period] = STATE(166), - [sym__list_item_lower_roman_period] = STATE(857), - [sym__list_lower_roman_paren] = STATE(166), - [sym__list_item_lower_roman_paren] = STATE(871), - [sym__list_lower_roman_parens] = STATE(166), - [sym__list_item_lower_roman_parens] = STATE(874), - [sym__list_upper_roman_period] = STATE(166), - [sym__list_item_upper_roman_period] = STATE(876), - [sym__list_upper_roman_paren] = STATE(166), - [sym__list_item_upper_roman_paren] = STATE(878), - [sym__list_upper_roman_parens] = STATE(166), - [sym__list_item_upper_roman_parens] = STATE(880), - [sym_table] = STATE(159), - [sym__table_content] = STATE(72), - [sym_table_separator] = STATE(72), - [sym_table_row] = STATE(79), - [sym_footnote] = STATE(159), - [sym_footnote_marker_begin] = STATE(1302), - [sym_div] = STATE(159), - [sym__div_marker_begin] = STATE(1165), - [sym_code_block] = STATE(159), - [sym_raw_block] = STATE(159), - [sym_thematic_break] = STATE(159), - [sym_block_quote] = STATE(159), - [sym__block_quote_prefix] = STATE(304), - [sym_link_reference_definition] = STATE(159), - [sym_block_attribute] = STATE(159), - [sym__paragraph] = STATE(159), - [sym__paragraph_content] = STATE(848), - [sym__paragraph_inline_content] = STATE(896), - [sym__inline] = STATE(715), - [sym__symbol_fallback] = STATE(381), - [aux_sym_document_repeat1] = STATE(8), - [aux_sym__list_dash_repeat1] = STATE(454), - [aux_sym__list_plus_repeat1] = STATE(455), - [aux_sym__list_star_repeat1] = STATE(456), - [aux_sym__list_task_repeat1] = STATE(436), - [aux_sym__list_definition_repeat1] = STATE(612), - [aux_sym__list_decimal_period_repeat1] = STATE(613), - [aux_sym__list_decimal_paren_repeat1] = STATE(614), - [aux_sym__list_decimal_parens_repeat1] = STATE(615), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(616), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(617), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(618), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(619), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(620), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(621), - [aux_sym__list_lower_roman_period_repeat1] = STATE(622), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(623), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(624), - [aux_sym__list_upper_roman_period_repeat1] = STATE(625), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(626), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(627), - [aux_sym_table_repeat1] = STATE(72), - [aux_sym__block_quote_prefix_repeat1] = STATE(330), - [aux_sym__inline_repeat1] = STATE(381), - [anon_sym_LBRACK] = ACTIONS(73), - [anon_sym_PIPE] = ACTIONS(75), + [sym__block_with_section] = STATE(138), + [sym__block_element] = STATE(138), + [sym_section] = STATE(138), + [sym_heading] = STATE(10), + [sym_list] = STATE(138), + [sym__list_dash] = STATE(144), + [sym__list_item_dash] = STATE(636), + [sym__list_plus] = STATE(144), + [sym__list_item_plus] = STATE(637), + [sym__list_star] = STATE(144), + [sym__list_item_star] = STATE(671), + [sym__list_task] = STATE(144), + [sym__list_item_task] = STATE(691), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(144), + [sym__list_item_definition] = STATE(896), + [sym__list_decimal_period] = STATE(144), + [sym__list_item_decimal_period] = STATE(841), + [sym__list_decimal_paren] = STATE(144), + [sym__list_item_decimal_paren] = STATE(796), + [sym__list_decimal_parens] = STATE(144), + [sym__list_item_decimal_parens] = STATE(716), + [sym__list_lower_alpha_period] = STATE(144), + [sym__list_item_lower_alpha_period] = STATE(722), + [sym__list_lower_alpha_paren] = STATE(144), + [sym__list_item_lower_alpha_paren] = STATE(801), + [sym__list_lower_alpha_parens] = STATE(144), + [sym__list_item_lower_alpha_parens] = STATE(813), + [sym__list_upper_alpha_period] = STATE(144), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(144), + [sym__list_item_upper_alpha_paren] = STATE(706), + [sym__list_upper_alpha_parens] = STATE(144), + [sym__list_item_upper_alpha_parens] = STATE(707), + [sym__list_lower_roman_period] = STATE(144), + [sym__list_item_lower_roman_period] = STATE(725), + [sym__list_lower_roman_paren] = STATE(144), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(144), + [sym__list_item_lower_roman_parens] = STATE(736), + [sym__list_upper_roman_period] = STATE(144), + [sym__list_item_upper_roman_period] = STATE(742), + [sym__list_upper_roman_paren] = STATE(144), + [sym__list_item_upper_roman_paren] = STATE(743), + [sym__list_upper_roman_parens] = STATE(144), + [sym__list_item_upper_roman_parens] = STATE(762), + [sym_table] = STATE(138), + [sym__table_content] = STATE(67), + [sym_table_separator] = STATE(67), + [sym_table_row] = STATE(70), + [sym_footnote] = STATE(138), + [sym_footnote_marker_begin] = STATE(1180), + [sym_div] = STATE(138), + [sym__div_marker_begin] = STATE(1074), + [sym_code_block] = STATE(138), + [sym_raw_block] = STATE(138), + [sym_thematic_break] = STATE(138), + [sym_block_quote] = STATE(138), + [sym__block_quote_prefix] = STATE(233), + [sym_link_reference_definition] = STATE(138), + [sym_block_attribute] = STATE(138), + [sym__paragraph] = STATE(138), + [sym__paragraph_content] = STATE(773), + [sym__paragraph_inline_content] = STATE(775), + [sym__inline] = STATE(616), + [sym__symbol_fallback] = STATE(297), + [aux_sym_document_repeat1] = STATE(7), + [aux_sym__list_dash_repeat1] = STATE(357), + [aux_sym__list_plus_repeat1] = STATE(358), + [aux_sym__list_star_repeat1] = STATE(359), + [aux_sym__list_task_repeat1] = STATE(344), + [aux_sym__list_definition_repeat1] = STATE(515), + [aux_sym__list_decimal_period_repeat1] = STATE(516), + [aux_sym__list_decimal_paren_repeat1] = STATE(517), + [aux_sym__list_decimal_parens_repeat1] = STATE(518), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(519), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(520), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(521), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(522), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(523), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(524), + [aux_sym__list_lower_roman_period_repeat1] = STATE(525), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(526), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(527), + [aux_sym__list_upper_roman_period_repeat1] = STATE(528), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(529), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(530), + [aux_sym_table_repeat1] = STATE(67), + [aux_sym__block_quote_prefix_repeat1] = STATE(253), + [aux_sym__inline_repeat1] = STATE(297), + [anon_sym_LBRACK] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(73), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(75), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__block_close] = ACTIONS(79), - [sym__newline] = ACTIONS(81), + [sym__block_close] = ACTIONS(87), + [sym__newline] = ACTIONS(79), [sym__heading_begin] = ACTIONS(19), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(83), + [sym__code_block_begin] = ACTIONS(81), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -5422,103 +5185,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(85), + [sym__block_quote_begin] = ACTIONS(83), [sym__block_quote_continuation] = ACTIONS(67), - [sym__thematic_break_dash] = ACTIONS(87), - [sym__thematic_break_star] = ACTIONS(87), + [sym__thematic_break_dash] = ACTIONS(85), + [sym__thematic_break_star] = ACTIONS(85), }, [4] = { - [sym__block_with_section] = STATE(275), - [sym__block_element] = STATE(275), - [sym_section] = STATE(275), - [sym_heading] = STATE(5), - [sym_list] = STATE(275), - [sym__list_dash] = STATE(140), - [sym__list_item_dash] = STATE(727), - [sym__list_plus] = STATE(140), - [sym__list_item_plus] = STATE(730), - [sym__list_star] = STATE(140), - [sym__list_item_star] = STATE(759), - [sym__list_task] = STATE(140), - [sym__list_item_task] = STATE(761), - [sym_list_marker_task] = STATE(46), - [sym__list_definition] = STATE(140), - [sym__list_item_definition] = STATE(819), - [sym__list_decimal_period] = STATE(140), - [sym__list_item_decimal_period] = STATE(852), - [sym__list_decimal_paren] = STATE(140), - [sym__list_item_decimal_paren] = STATE(837), - [sym__list_decimal_parens] = STATE(140), - [sym__list_item_decimal_parens] = STATE(815), - [sym__list_lower_alpha_period] = STATE(140), - [sym__list_item_lower_alpha_period] = STATE(843), - [sym__list_lower_alpha_paren] = STATE(140), - [sym__list_item_lower_alpha_paren] = STATE(850), - [sym__list_lower_alpha_parens] = STATE(140), - [sym__list_item_lower_alpha_parens] = STATE(853), - [sym__list_upper_alpha_period] = STATE(140), - [sym__list_item_upper_alpha_period] = STATE(854), - [sym__list_upper_alpha_paren] = STATE(140), - [sym__list_item_upper_alpha_paren] = STATE(855), - [sym__list_upper_alpha_parens] = STATE(140), - [sym__list_item_upper_alpha_parens] = STATE(856), - [sym__list_lower_roman_period] = STATE(140), - [sym__list_item_lower_roman_period] = STATE(857), - [sym__list_lower_roman_paren] = STATE(140), - [sym__list_item_lower_roman_paren] = STATE(871), - [sym__list_lower_roman_parens] = STATE(140), - [sym__list_item_lower_roman_parens] = STATE(874), - [sym__list_upper_roman_period] = STATE(140), - [sym__list_item_upper_roman_period] = STATE(876), - [sym__list_upper_roman_paren] = STATE(140), - [sym__list_item_upper_roman_paren] = STATE(878), - [sym__list_upper_roman_parens] = STATE(140), - [sym__list_item_upper_roman_parens] = STATE(880), - [sym_table] = STATE(275), - [sym__table_content] = STATE(71), - [sym_table_separator] = STATE(71), - [sym_table_row] = STATE(78), - [sym_footnote] = STATE(275), - [sym_footnote_marker_begin] = STATE(1027), - [sym_div] = STATE(275), - [sym__div_marker_begin] = STATE(1041), - [sym_code_block] = STATE(275), - [sym_raw_block] = STATE(275), - [sym_thematic_break] = STATE(275), - [sym_block_quote] = STATE(275), - [sym__block_quote_prefix] = STATE(306), - [sym_link_reference_definition] = STATE(275), - [sym_block_attribute] = STATE(275), - [sym__paragraph] = STATE(275), - [sym__paragraph_content] = STATE(895), - [sym__paragraph_inline_content] = STATE(896), - [sym__inline] = STATE(715), - [sym__symbol_fallback] = STATE(381), - [aux_sym_document_repeat1] = STATE(7), - [aux_sym__list_dash_repeat1] = STATE(450), - [aux_sym__list_plus_repeat1] = STATE(444), - [aux_sym__list_star_repeat1] = STATE(448), - [aux_sym__list_task_repeat1] = STATE(432), - [aux_sym__list_definition_repeat1] = STATE(577), - [aux_sym__list_decimal_period_repeat1] = STATE(578), - [aux_sym__list_decimal_paren_repeat1] = STATE(580), - [aux_sym__list_decimal_parens_repeat1] = STATE(582), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(584), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(586), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(588), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(605), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(607), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(609), - [aux_sym__list_lower_roman_period_repeat1] = STATE(611), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(629), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(631), - [aux_sym__list_upper_roman_period_repeat1] = STATE(649), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(651), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(653), - [aux_sym_table_repeat1] = STATE(71), - [aux_sym__block_quote_prefix_repeat1] = STATE(330), - [aux_sym__inline_repeat1] = STATE(381), - [ts_builtin_sym_end] = ACTIONS(71), + [sym__block_with_section] = STATE(111), + [sym__block_element] = STATE(111), + [sym_section] = STATE(111), + [sym_heading] = STATE(3), + [sym_list] = STATE(111), + [sym__list_dash] = STATE(209), + [sym__list_item_dash] = STATE(636), + [sym__list_plus] = STATE(209), + [sym__list_item_plus] = STATE(637), + [sym__list_star] = STATE(209), + [sym__list_item_star] = STATE(671), + [sym__list_task] = STATE(209), + [sym__list_item_task] = STATE(691), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(209), + [sym__list_item_definition] = STATE(896), + [sym__list_decimal_period] = STATE(209), + [sym__list_item_decimal_period] = STATE(841), + [sym__list_decimal_paren] = STATE(209), + [sym__list_item_decimal_paren] = STATE(796), + [sym__list_decimal_parens] = STATE(209), + [sym__list_item_decimal_parens] = STATE(716), + [sym__list_lower_alpha_period] = STATE(209), + [sym__list_item_lower_alpha_period] = STATE(722), + [sym__list_lower_alpha_paren] = STATE(209), + [sym__list_item_lower_alpha_paren] = STATE(801), + [sym__list_lower_alpha_parens] = STATE(209), + [sym__list_item_lower_alpha_parens] = STATE(813), + [sym__list_upper_alpha_period] = STATE(209), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(209), + [sym__list_item_upper_alpha_paren] = STATE(706), + [sym__list_upper_alpha_parens] = STATE(209), + [sym__list_item_upper_alpha_parens] = STATE(707), + [sym__list_lower_roman_period] = STATE(209), + [sym__list_item_lower_roman_period] = STATE(725), + [sym__list_lower_roman_paren] = STATE(209), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(209), + [sym__list_item_lower_roman_parens] = STATE(736), + [sym__list_upper_roman_period] = STATE(209), + [sym__list_item_upper_roman_period] = STATE(742), + [sym__list_upper_roman_paren] = STATE(209), + [sym__list_item_upper_roman_paren] = STATE(743), + [sym__list_upper_roman_parens] = STATE(209), + [sym__list_item_upper_roman_parens] = STATE(762), + [sym_table] = STATE(111), + [sym__table_content] = STATE(66), + [sym_table_separator] = STATE(66), + [sym_table_row] = STATE(71), + [sym_footnote] = STATE(111), + [sym_footnote_marker_begin] = STATE(1008), + [sym_div] = STATE(111), + [sym__div_marker_begin] = STATE(1010), + [sym_code_block] = STATE(111), + [sym_raw_block] = STATE(111), + [sym_thematic_break] = STATE(111), + [sym_block_quote] = STATE(111), + [sym__block_quote_prefix] = STATE(230), + [sym_link_reference_definition] = STATE(111), + [sym_block_attribute] = STATE(111), + [sym__paragraph] = STATE(111), + [sym__paragraph_content] = STATE(769), + [sym__paragraph_inline_content] = STATE(775), + [sym__inline] = STATE(616), + [sym__symbol_fallback] = STATE(297), + [aux_sym_document_repeat1] = STATE(6), + [aux_sym__list_dash_repeat1] = STATE(363), + [aux_sym__list_plus_repeat1] = STATE(371), + [aux_sym__list_star_repeat1] = STATE(372), + [aux_sym__list_task_repeat1] = STATE(351), + [aux_sym__list_definition_repeat1] = STATE(531), + [aux_sym__list_decimal_period_repeat1] = STATE(532), + [aux_sym__list_decimal_paren_repeat1] = STATE(549), + [aux_sym__list_decimal_parens_repeat1] = STATE(551), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(553), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(555), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(557), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(559), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(561), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(461), + [aux_sym__list_lower_roman_period_repeat1] = STATE(564), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(566), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(568), + [aux_sym__list_upper_roman_period_repeat1] = STATE(570), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(572), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(576), + [aux_sym_table_repeat1] = STATE(66), + [aux_sym__block_quote_prefix_repeat1] = STATE(253), + [aux_sym__inline_repeat1] = STATE(297), + [ts_builtin_sym_end] = ACTIONS(89), [anon_sym_LBRACK] = ACTIONS(5), [anon_sym_PIPE] = ACTIONS(7), [anon_sym_LBRACK_CARET] = ACTIONS(9), @@ -5559,111 +5322,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__thematic_break_star] = ACTIONS(69), }, [5] = { - [sym__block_with_section] = STATE(159), - [sym__block_element] = STATE(159), - [sym_section] = STATE(159), - [sym_heading] = STATE(9), - [sym_list] = STATE(159), - [sym__list_dash] = STATE(166), - [sym__list_item_dash] = STATE(727), - [sym__list_plus] = STATE(166), - [sym__list_item_plus] = STATE(730), - [sym__list_star] = STATE(166), - [sym__list_item_star] = STATE(759), - [sym__list_task] = STATE(166), - [sym__list_item_task] = STATE(761), - [sym_list_marker_task] = STATE(46), - [sym__list_definition] = STATE(166), - [sym__list_item_definition] = STATE(819), - [sym__list_decimal_period] = STATE(166), - [sym__list_item_decimal_period] = STATE(852), - [sym__list_decimal_paren] = STATE(166), - [sym__list_item_decimal_paren] = STATE(837), - [sym__list_decimal_parens] = STATE(166), - [sym__list_item_decimal_parens] = STATE(815), - [sym__list_lower_alpha_period] = STATE(166), - [sym__list_item_lower_alpha_period] = STATE(843), - [sym__list_lower_alpha_paren] = STATE(166), - [sym__list_item_lower_alpha_paren] = STATE(850), - [sym__list_lower_alpha_parens] = STATE(166), - [sym__list_item_lower_alpha_parens] = STATE(853), - [sym__list_upper_alpha_period] = STATE(166), - [sym__list_item_upper_alpha_period] = STATE(854), - [sym__list_upper_alpha_paren] = STATE(166), - [sym__list_item_upper_alpha_paren] = STATE(855), - [sym__list_upper_alpha_parens] = STATE(166), - [sym__list_item_upper_alpha_parens] = STATE(856), - [sym__list_lower_roman_period] = STATE(166), - [sym__list_item_lower_roman_period] = STATE(857), - [sym__list_lower_roman_paren] = STATE(166), - [sym__list_item_lower_roman_paren] = STATE(871), - [sym__list_lower_roman_parens] = STATE(166), - [sym__list_item_lower_roman_parens] = STATE(874), - [sym__list_upper_roman_period] = STATE(166), - [sym__list_item_upper_roman_period] = STATE(876), - [sym__list_upper_roman_paren] = STATE(166), - [sym__list_item_upper_roman_paren] = STATE(878), - [sym__list_upper_roman_parens] = STATE(166), - [sym__list_item_upper_roman_parens] = STATE(880), - [sym_table] = STATE(159), - [sym__table_content] = STATE(72), - [sym_table_separator] = STATE(72), - [sym_table_row] = STATE(79), - [sym_footnote] = STATE(159), - [sym_footnote_marker_begin] = STATE(1302), - [sym_div] = STATE(159), - [sym__div_marker_begin] = STATE(1165), - [sym_code_block] = STATE(159), - [sym_raw_block] = STATE(159), - [sym_thematic_break] = STATE(159), - [sym_block_quote] = STATE(159), - [sym__block_quote_prefix] = STATE(304), - [sym_link_reference_definition] = STATE(159), - [sym_block_attribute] = STATE(159), - [sym__paragraph] = STATE(159), - [sym__paragraph_content] = STATE(848), - [sym__paragraph_inline_content] = STATE(896), - [sym__inline] = STATE(715), - [sym__symbol_fallback] = STATE(381), - [aux_sym_document_repeat1] = STATE(3), - [aux_sym__list_dash_repeat1] = STATE(454), - [aux_sym__list_plus_repeat1] = STATE(455), - [aux_sym__list_star_repeat1] = STATE(456), - [aux_sym__list_task_repeat1] = STATE(436), - [aux_sym__list_definition_repeat1] = STATE(612), - [aux_sym__list_decimal_period_repeat1] = STATE(613), - [aux_sym__list_decimal_paren_repeat1] = STATE(614), - [aux_sym__list_decimal_parens_repeat1] = STATE(615), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(616), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(617), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(618), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(619), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(620), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(621), - [aux_sym__list_lower_roman_period_repeat1] = STATE(622), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(623), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(624), - [aux_sym__list_upper_roman_period_repeat1] = STATE(625), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(626), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(627), - [aux_sym_table_repeat1] = STATE(72), - [aux_sym__block_quote_prefix_repeat1] = STATE(330), - [aux_sym__inline_repeat1] = STATE(381), - [anon_sym_LBRACK] = ACTIONS(73), - [anon_sym_PIPE] = ACTIONS(75), + [sym__block_with_section] = STATE(111), + [sym__block_element] = STATE(111), + [sym_section] = STATE(111), + [sym_heading] = STATE(3), + [sym_list] = STATE(111), + [sym__list_dash] = STATE(209), + [sym__list_item_dash] = STATE(636), + [sym__list_plus] = STATE(209), + [sym__list_item_plus] = STATE(637), + [sym__list_star] = STATE(209), + [sym__list_item_star] = STATE(671), + [sym__list_task] = STATE(209), + [sym__list_item_task] = STATE(691), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(209), + [sym__list_item_definition] = STATE(896), + [sym__list_decimal_period] = STATE(209), + [sym__list_item_decimal_period] = STATE(841), + [sym__list_decimal_paren] = STATE(209), + [sym__list_item_decimal_paren] = STATE(796), + [sym__list_decimal_parens] = STATE(209), + [sym__list_item_decimal_parens] = STATE(716), + [sym__list_lower_alpha_period] = STATE(209), + [sym__list_item_lower_alpha_period] = STATE(722), + [sym__list_lower_alpha_paren] = STATE(209), + [sym__list_item_lower_alpha_paren] = STATE(801), + [sym__list_lower_alpha_parens] = STATE(209), + [sym__list_item_lower_alpha_parens] = STATE(813), + [sym__list_upper_alpha_period] = STATE(209), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(209), + [sym__list_item_upper_alpha_paren] = STATE(706), + [sym__list_upper_alpha_parens] = STATE(209), + [sym__list_item_upper_alpha_parens] = STATE(707), + [sym__list_lower_roman_period] = STATE(209), + [sym__list_item_lower_roman_period] = STATE(725), + [sym__list_lower_roman_paren] = STATE(209), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(209), + [sym__list_item_lower_roman_parens] = STATE(736), + [sym__list_upper_roman_period] = STATE(209), + [sym__list_item_upper_roman_period] = STATE(742), + [sym__list_upper_roman_paren] = STATE(209), + [sym__list_item_upper_roman_paren] = STATE(743), + [sym__list_upper_roman_parens] = STATE(209), + [sym__list_item_upper_roman_parens] = STATE(762), + [sym_table] = STATE(111), + [sym__table_content] = STATE(66), + [sym_table_separator] = STATE(66), + [sym_table_row] = STATE(71), + [sym_footnote] = STATE(111), + [sym_footnote_marker_begin] = STATE(1008), + [sym_div] = STATE(111), + [sym__div_marker_begin] = STATE(1010), + [sym_code_block] = STATE(111), + [sym_raw_block] = STATE(111), + [sym_thematic_break] = STATE(111), + [sym_block_quote] = STATE(111), + [sym__block_quote_prefix] = STATE(230), + [sym_link_reference_definition] = STATE(111), + [sym_block_attribute] = STATE(111), + [sym__paragraph] = STATE(111), + [sym__paragraph_content] = STATE(769), + [sym__paragraph_inline_content] = STATE(775), + [sym__inline] = STATE(616), + [sym__symbol_fallback] = STATE(297), + [aux_sym_document_repeat1] = STATE(8), + [aux_sym__list_dash_repeat1] = STATE(363), + [aux_sym__list_plus_repeat1] = STATE(371), + [aux_sym__list_star_repeat1] = STATE(372), + [aux_sym__list_task_repeat1] = STATE(351), + [aux_sym__list_definition_repeat1] = STATE(531), + [aux_sym__list_decimal_period_repeat1] = STATE(532), + [aux_sym__list_decimal_paren_repeat1] = STATE(549), + [aux_sym__list_decimal_parens_repeat1] = STATE(551), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(553), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(555), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(557), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(559), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(561), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(461), + [aux_sym__list_lower_roman_period_repeat1] = STATE(564), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(566), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(568), + [aux_sym__list_upper_roman_period_repeat1] = STATE(570), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(572), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(576), + [aux_sym_table_repeat1] = STATE(66), + [aux_sym__block_quote_prefix_repeat1] = STATE(253), + [aux_sym__inline_repeat1] = STATE(297), + [ts_builtin_sym_end] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(7), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__block_close] = ACTIONS(89), - [sym__newline] = ACTIONS(81), + [sym__newline] = ACTIONS(15), [sym__heading_begin] = ACTIONS(19), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(83), + [sym__code_block_begin] = ACTIONS(23), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -5684,234 +5447,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(85), + [sym__block_quote_begin] = ACTIONS(65), [sym__block_quote_continuation] = ACTIONS(67), - [sym__thematic_break_dash] = ACTIONS(87), - [sym__thematic_break_star] = ACTIONS(87), + [sym__thematic_break_dash] = ACTIONS(69), + [sym__thematic_break_star] = ACTIONS(69), }, [6] = { - [sym__block_with_section] = STATE(275), - [sym__block_element] = STATE(275), - [sym_section] = STATE(275), - [sym_heading] = STATE(5), - [sym_list] = STATE(275), - [sym__list_dash] = STATE(140), - [sym__list_item_dash] = STATE(727), - [sym__list_plus] = STATE(140), - [sym__list_item_plus] = STATE(730), - [sym__list_star] = STATE(140), - [sym__list_item_star] = STATE(759), - [sym__list_task] = STATE(140), - [sym__list_item_task] = STATE(761), - [sym_list_marker_task] = STATE(46), - [sym__list_definition] = STATE(140), - [sym__list_item_definition] = STATE(819), - [sym__list_decimal_period] = STATE(140), - [sym__list_item_decimal_period] = STATE(852), - [sym__list_decimal_paren] = STATE(140), - [sym__list_item_decimal_paren] = STATE(837), - [sym__list_decimal_parens] = STATE(140), - [sym__list_item_decimal_parens] = STATE(815), - [sym__list_lower_alpha_period] = STATE(140), - [sym__list_item_lower_alpha_period] = STATE(843), - [sym__list_lower_alpha_paren] = STATE(140), - [sym__list_item_lower_alpha_paren] = STATE(850), - [sym__list_lower_alpha_parens] = STATE(140), - [sym__list_item_lower_alpha_parens] = STATE(853), - [sym__list_upper_alpha_period] = STATE(140), - [sym__list_item_upper_alpha_period] = STATE(854), - [sym__list_upper_alpha_paren] = STATE(140), - [sym__list_item_upper_alpha_paren] = STATE(855), - [sym__list_upper_alpha_parens] = STATE(140), - [sym__list_item_upper_alpha_parens] = STATE(856), - [sym__list_lower_roman_period] = STATE(140), - [sym__list_item_lower_roman_period] = STATE(857), - [sym__list_lower_roman_paren] = STATE(140), - [sym__list_item_lower_roman_paren] = STATE(871), - [sym__list_lower_roman_parens] = STATE(140), - [sym__list_item_lower_roman_parens] = STATE(874), - [sym__list_upper_roman_period] = STATE(140), - [sym__list_item_upper_roman_period] = STATE(876), - [sym__list_upper_roman_paren] = STATE(140), - [sym__list_item_upper_roman_paren] = STATE(878), - [sym__list_upper_roman_parens] = STATE(140), - [sym__list_item_upper_roman_parens] = STATE(880), - [sym_table] = STATE(275), - [sym__table_content] = STATE(71), - [sym_table_separator] = STATE(71), - [sym_table_row] = STATE(78), - [sym_footnote] = STATE(275), - [sym_footnote_marker_begin] = STATE(1027), - [sym_div] = STATE(275), - [sym__div_marker_begin] = STATE(1041), - [sym_code_block] = STATE(275), - [sym_raw_block] = STATE(275), - [sym_thematic_break] = STATE(275), - [sym_block_quote] = STATE(275), - [sym__block_quote_prefix] = STATE(306), - [sym_link_reference_definition] = STATE(275), - [sym_block_attribute] = STATE(275), - [sym__paragraph] = STATE(275), - [sym__paragraph_content] = STATE(895), - [sym__paragraph_inline_content] = STATE(896), - [sym__inline] = STATE(715), - [sym__symbol_fallback] = STATE(381), - [aux_sym_document_repeat1] = STATE(6), - [aux_sym__list_dash_repeat1] = STATE(450), - [aux_sym__list_plus_repeat1] = STATE(444), - [aux_sym__list_star_repeat1] = STATE(448), - [aux_sym__list_task_repeat1] = STATE(432), - [aux_sym__list_definition_repeat1] = STATE(577), - [aux_sym__list_decimal_period_repeat1] = STATE(578), - [aux_sym__list_decimal_paren_repeat1] = STATE(580), - [aux_sym__list_decimal_parens_repeat1] = STATE(582), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(584), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(586), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(588), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(605), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(607), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(609), - [aux_sym__list_lower_roman_period_repeat1] = STATE(611), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(629), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(631), - [aux_sym__list_upper_roman_period_repeat1] = STATE(649), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(651), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(653), - [aux_sym_table_repeat1] = STATE(71), - [aux_sym__block_quote_prefix_repeat1] = STATE(330), - [aux_sym__inline_repeat1] = STATE(381), + [sym__block_with_section] = STATE(111), + [sym__block_element] = STATE(111), + [sym_section] = STATE(111), + [sym_heading] = STATE(3), + [sym_list] = STATE(111), + [sym__list_dash] = STATE(209), + [sym__list_item_dash] = STATE(636), + [sym__list_plus] = STATE(209), + [sym__list_item_plus] = STATE(637), + [sym__list_star] = STATE(209), + [sym__list_item_star] = STATE(671), + [sym__list_task] = STATE(209), + [sym__list_item_task] = STATE(691), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(209), + [sym__list_item_definition] = STATE(896), + [sym__list_decimal_period] = STATE(209), + [sym__list_item_decimal_period] = STATE(841), + [sym__list_decimal_paren] = STATE(209), + [sym__list_item_decimal_paren] = STATE(796), + [sym__list_decimal_parens] = STATE(209), + [sym__list_item_decimal_parens] = STATE(716), + [sym__list_lower_alpha_period] = STATE(209), + [sym__list_item_lower_alpha_period] = STATE(722), + [sym__list_lower_alpha_paren] = STATE(209), + [sym__list_item_lower_alpha_paren] = STATE(801), + [sym__list_lower_alpha_parens] = STATE(209), + [sym__list_item_lower_alpha_parens] = STATE(813), + [sym__list_upper_alpha_period] = STATE(209), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(209), + [sym__list_item_upper_alpha_paren] = STATE(706), + [sym__list_upper_alpha_parens] = STATE(209), + [sym__list_item_upper_alpha_parens] = STATE(707), + [sym__list_lower_roman_period] = STATE(209), + [sym__list_item_lower_roman_period] = STATE(725), + [sym__list_lower_roman_paren] = STATE(209), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(209), + [sym__list_item_lower_roman_parens] = STATE(736), + [sym__list_upper_roman_period] = STATE(209), + [sym__list_item_upper_roman_period] = STATE(742), + [sym__list_upper_roman_paren] = STATE(209), + [sym__list_item_upper_roman_paren] = STATE(743), + [sym__list_upper_roman_parens] = STATE(209), + [sym__list_item_upper_roman_parens] = STATE(762), + [sym_table] = STATE(111), + [sym__table_content] = STATE(66), + [sym_table_separator] = STATE(66), + [sym_table_row] = STATE(71), + [sym_footnote] = STATE(111), + [sym_footnote_marker_begin] = STATE(1008), + [sym_div] = STATE(111), + [sym__div_marker_begin] = STATE(1010), + [sym_code_block] = STATE(111), + [sym_raw_block] = STATE(111), + [sym_thematic_break] = STATE(111), + [sym_block_quote] = STATE(111), + [sym__block_quote_prefix] = STATE(230), + [sym_link_reference_definition] = STATE(111), + [sym_block_attribute] = STATE(111), + [sym__paragraph] = STATE(111), + [sym__paragraph_content] = STATE(769), + [sym__paragraph_inline_content] = STATE(775), + [sym__inline] = STATE(616), + [sym__symbol_fallback] = STATE(297), + [aux_sym_document_repeat1] = STATE(8), + [aux_sym__list_dash_repeat1] = STATE(363), + [aux_sym__list_plus_repeat1] = STATE(371), + [aux_sym__list_star_repeat1] = STATE(372), + [aux_sym__list_task_repeat1] = STATE(351), + [aux_sym__list_definition_repeat1] = STATE(531), + [aux_sym__list_decimal_period_repeat1] = STATE(532), + [aux_sym__list_decimal_paren_repeat1] = STATE(549), + [aux_sym__list_decimal_parens_repeat1] = STATE(551), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(553), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(555), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(557), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(559), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(561), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(461), + [aux_sym__list_lower_roman_period_repeat1] = STATE(564), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(566), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(568), + [aux_sym__list_upper_roman_period_repeat1] = STATE(570), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(572), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(576), + [aux_sym_table_repeat1] = STATE(66), + [aux_sym__block_quote_prefix_repeat1] = STATE(253), + [aux_sym__inline_repeat1] = STATE(297), [ts_builtin_sym_end] = ACTIONS(91), - [anon_sym_LBRACK] = ACTIONS(93), - [anon_sym_PIPE] = ACTIONS(96), - [anon_sym_LBRACK_CARET] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(105), - [aux_sym_identifier_token1] = ACTIONS(105), - [aux_sym__inline_token1] = ACTIONS(105), - [anon_sym_LBRACE_DASH] = ACTIONS(105), - [anon_sym_POUND] = ACTIONS(105), - [anon_sym_PERCENT] = ACTIONS(105), - [sym__newline] = ACTIONS(108), - [sym__heading_begin] = ACTIONS(111), - [sym__div_begin] = ACTIONS(114), - [sym__code_block_begin] = ACTIONS(117), - [sym_list_marker_dash] = ACTIONS(120), - [sym_list_marker_star] = ACTIONS(123), - [sym_list_marker_plus] = ACTIONS(126), - [sym__list_marker_task_begin] = ACTIONS(129), - [sym_list_marker_definition] = ACTIONS(132), - [sym_list_marker_decimal_period] = ACTIONS(135), - [sym_list_marker_lower_alpha_period] = ACTIONS(138), - [sym_list_marker_upper_alpha_period] = ACTIONS(141), - [sym_list_marker_lower_roman_period] = ACTIONS(144), - [sym_list_marker_upper_roman_period] = ACTIONS(147), - [sym_list_marker_decimal_paren] = ACTIONS(150), - [sym_list_marker_lower_alpha_paren] = ACTIONS(153), - [sym_list_marker_upper_alpha_paren] = ACTIONS(156), - [sym_list_marker_lower_roman_paren] = ACTIONS(159), - [sym_list_marker_upper_roman_paren] = ACTIONS(162), - [sym_list_marker_decimal_parens] = ACTIONS(165), - [sym_list_marker_lower_alpha_parens] = ACTIONS(168), - [sym_list_marker_upper_alpha_parens] = ACTIONS(171), - [sym_list_marker_lower_roman_parens] = ACTIONS(174), - [sym_list_marker_upper_roman_parens] = ACTIONS(177), - [sym__block_quote_begin] = ACTIONS(180), - [sym__block_quote_continuation] = ACTIONS(183), - [sym__thematic_break_dash] = ACTIONS(186), - [sym__thematic_break_star] = ACTIONS(186), - }, - [7] = { - [sym__block_with_section] = STATE(275), - [sym__block_element] = STATE(275), - [sym_section] = STATE(275), - [sym_heading] = STATE(5), - [sym_list] = STATE(275), - [sym__list_dash] = STATE(140), - [sym__list_item_dash] = STATE(727), - [sym__list_plus] = STATE(140), - [sym__list_item_plus] = STATE(730), - [sym__list_star] = STATE(140), - [sym__list_item_star] = STATE(759), - [sym__list_task] = STATE(140), - [sym__list_item_task] = STATE(761), - [sym_list_marker_task] = STATE(46), - [sym__list_definition] = STATE(140), - [sym__list_item_definition] = STATE(819), - [sym__list_decimal_period] = STATE(140), - [sym__list_item_decimal_period] = STATE(852), - [sym__list_decimal_paren] = STATE(140), - [sym__list_item_decimal_paren] = STATE(837), - [sym__list_decimal_parens] = STATE(140), - [sym__list_item_decimal_parens] = STATE(815), - [sym__list_lower_alpha_period] = STATE(140), - [sym__list_item_lower_alpha_period] = STATE(843), - [sym__list_lower_alpha_paren] = STATE(140), - [sym__list_item_lower_alpha_paren] = STATE(850), - [sym__list_lower_alpha_parens] = STATE(140), - [sym__list_item_lower_alpha_parens] = STATE(853), - [sym__list_upper_alpha_period] = STATE(140), - [sym__list_item_upper_alpha_period] = STATE(854), - [sym__list_upper_alpha_paren] = STATE(140), - [sym__list_item_upper_alpha_paren] = STATE(855), - [sym__list_upper_alpha_parens] = STATE(140), - [sym__list_item_upper_alpha_parens] = STATE(856), - [sym__list_lower_roman_period] = STATE(140), - [sym__list_item_lower_roman_period] = STATE(857), - [sym__list_lower_roman_paren] = STATE(140), - [sym__list_item_lower_roman_paren] = STATE(871), - [sym__list_lower_roman_parens] = STATE(140), - [sym__list_item_lower_roman_parens] = STATE(874), - [sym__list_upper_roman_period] = STATE(140), - [sym__list_item_upper_roman_period] = STATE(876), - [sym__list_upper_roman_paren] = STATE(140), - [sym__list_item_upper_roman_paren] = STATE(878), - [sym__list_upper_roman_parens] = STATE(140), - [sym__list_item_upper_roman_parens] = STATE(880), - [sym_table] = STATE(275), - [sym__table_content] = STATE(71), - [sym_table_separator] = STATE(71), - [sym_table_row] = STATE(78), - [sym_footnote] = STATE(275), - [sym_footnote_marker_begin] = STATE(1027), - [sym_div] = STATE(275), - [sym__div_marker_begin] = STATE(1041), - [sym_code_block] = STATE(275), - [sym_raw_block] = STATE(275), - [sym_thematic_break] = STATE(275), - [sym_block_quote] = STATE(275), - [sym__block_quote_prefix] = STATE(306), - [sym_link_reference_definition] = STATE(275), - [sym_block_attribute] = STATE(275), - [sym__paragraph] = STATE(275), - [sym__paragraph_content] = STATE(895), - [sym__paragraph_inline_content] = STATE(896), - [sym__inline] = STATE(715), - [sym__symbol_fallback] = STATE(381), - [aux_sym_document_repeat1] = STATE(6), - [aux_sym__list_dash_repeat1] = STATE(450), - [aux_sym__list_plus_repeat1] = STATE(444), - [aux_sym__list_star_repeat1] = STATE(448), - [aux_sym__list_task_repeat1] = STATE(432), - [aux_sym__list_definition_repeat1] = STATE(577), - [aux_sym__list_decimal_period_repeat1] = STATE(578), - [aux_sym__list_decimal_paren_repeat1] = STATE(580), - [aux_sym__list_decimal_parens_repeat1] = STATE(582), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(584), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(586), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(588), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(605), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(607), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(609), - [aux_sym__list_lower_roman_period_repeat1] = STATE(611), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(629), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(631), - [aux_sym__list_upper_roman_period_repeat1] = STATE(649), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(651), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(653), - [aux_sym_table_repeat1] = STATE(71), - [aux_sym__block_quote_prefix_repeat1] = STATE(330), - [aux_sym__inline_repeat1] = STATE(381), - [ts_builtin_sym_end] = ACTIONS(189), [anon_sym_LBRACK] = ACTIONS(5), [anon_sym_PIPE] = ACTIONS(7), [anon_sym_LBRACK_CARET] = ACTIONS(9), @@ -5951,243 +5583,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__thematic_break_dash] = ACTIONS(69), [sym__thematic_break_star] = ACTIONS(69), }, - [8] = { - [sym__block_with_section] = STATE(159), - [sym__block_element] = STATE(159), - [sym_section] = STATE(159), - [sym_heading] = STATE(9), - [sym_list] = STATE(159), - [sym__list_dash] = STATE(166), - [sym__list_item_dash] = STATE(727), - [sym__list_plus] = STATE(166), - [sym__list_item_plus] = STATE(730), - [sym__list_star] = STATE(166), - [sym__list_item_star] = STATE(759), - [sym__list_task] = STATE(166), - [sym__list_item_task] = STATE(761), - [sym_list_marker_task] = STATE(46), - [sym__list_definition] = STATE(166), - [sym__list_item_definition] = STATE(819), - [sym__list_decimal_period] = STATE(166), - [sym__list_item_decimal_period] = STATE(852), - [sym__list_decimal_paren] = STATE(166), - [sym__list_item_decimal_paren] = STATE(837), - [sym__list_decimal_parens] = STATE(166), - [sym__list_item_decimal_parens] = STATE(815), - [sym__list_lower_alpha_period] = STATE(166), - [sym__list_item_lower_alpha_period] = STATE(843), - [sym__list_lower_alpha_paren] = STATE(166), - [sym__list_item_lower_alpha_paren] = STATE(850), - [sym__list_lower_alpha_parens] = STATE(166), - [sym__list_item_lower_alpha_parens] = STATE(853), - [sym__list_upper_alpha_period] = STATE(166), - [sym__list_item_upper_alpha_period] = STATE(854), - [sym__list_upper_alpha_paren] = STATE(166), - [sym__list_item_upper_alpha_paren] = STATE(855), - [sym__list_upper_alpha_parens] = STATE(166), - [sym__list_item_upper_alpha_parens] = STATE(856), - [sym__list_lower_roman_period] = STATE(166), - [sym__list_item_lower_roman_period] = STATE(857), - [sym__list_lower_roman_paren] = STATE(166), - [sym__list_item_lower_roman_paren] = STATE(871), - [sym__list_lower_roman_parens] = STATE(166), - [sym__list_item_lower_roman_parens] = STATE(874), - [sym__list_upper_roman_period] = STATE(166), - [sym__list_item_upper_roman_period] = STATE(876), - [sym__list_upper_roman_paren] = STATE(166), - [sym__list_item_upper_roman_paren] = STATE(878), - [sym__list_upper_roman_parens] = STATE(166), - [sym__list_item_upper_roman_parens] = STATE(880), - [sym_table] = STATE(159), - [sym__table_content] = STATE(72), - [sym_table_separator] = STATE(72), - [sym_table_row] = STATE(79), - [sym_footnote] = STATE(159), - [sym_footnote_marker_begin] = STATE(1302), - [sym_div] = STATE(159), - [sym__div_marker_begin] = STATE(1165), - [sym_code_block] = STATE(159), - [sym_raw_block] = STATE(159), - [sym_thematic_break] = STATE(159), - [sym_block_quote] = STATE(159), - [sym__block_quote_prefix] = STATE(304), - [sym_link_reference_definition] = STATE(159), - [sym_block_attribute] = STATE(159), - [sym__paragraph] = STATE(159), - [sym__paragraph_content] = STATE(848), - [sym__paragraph_inline_content] = STATE(896), - [sym__inline] = STATE(715), - [sym__symbol_fallback] = STATE(381), - [aux_sym_document_repeat1] = STATE(8), - [aux_sym__list_dash_repeat1] = STATE(454), - [aux_sym__list_plus_repeat1] = STATE(455), - [aux_sym__list_star_repeat1] = STATE(456), - [aux_sym__list_task_repeat1] = STATE(436), - [aux_sym__list_definition_repeat1] = STATE(612), - [aux_sym__list_decimal_period_repeat1] = STATE(613), - [aux_sym__list_decimal_paren_repeat1] = STATE(614), - [aux_sym__list_decimal_parens_repeat1] = STATE(615), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(616), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(617), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(618), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(619), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(620), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(621), - [aux_sym__list_lower_roman_period_repeat1] = STATE(622), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(623), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(624), - [aux_sym__list_upper_roman_period_repeat1] = STATE(625), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(626), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(627), - [aux_sym_table_repeat1] = STATE(72), - [aux_sym__block_quote_prefix_repeat1] = STATE(330), - [aux_sym__inline_repeat1] = STATE(381), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_PIPE] = ACTIONS(194), - [anon_sym_LBRACK_CARET] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(197), - [anon_sym_DOT] = ACTIONS(105), - [aux_sym_identifier_token1] = ACTIONS(105), - [aux_sym__inline_token1] = ACTIONS(105), - [anon_sym_LBRACE_DASH] = ACTIONS(105), - [anon_sym_POUND] = ACTIONS(105), - [anon_sym_PERCENT] = ACTIONS(105), - [sym__block_close] = ACTIONS(91), - [sym__newline] = ACTIONS(200), - [sym__heading_begin] = ACTIONS(111), - [sym__div_begin] = ACTIONS(114), - [sym__code_block_begin] = ACTIONS(203), - [sym_list_marker_dash] = ACTIONS(120), - [sym_list_marker_star] = ACTIONS(123), - [sym_list_marker_plus] = ACTIONS(126), - [sym__list_marker_task_begin] = ACTIONS(129), - [sym_list_marker_definition] = ACTIONS(132), - [sym_list_marker_decimal_period] = ACTIONS(135), - [sym_list_marker_lower_alpha_period] = ACTIONS(138), - [sym_list_marker_upper_alpha_period] = ACTIONS(141), - [sym_list_marker_lower_roman_period] = ACTIONS(144), - [sym_list_marker_upper_roman_period] = ACTIONS(147), - [sym_list_marker_decimal_paren] = ACTIONS(150), - [sym_list_marker_lower_alpha_paren] = ACTIONS(153), - [sym_list_marker_upper_alpha_paren] = ACTIONS(156), - [sym_list_marker_lower_roman_paren] = ACTIONS(159), - [sym_list_marker_upper_roman_paren] = ACTIONS(162), - [sym_list_marker_decimal_parens] = ACTIONS(165), - [sym_list_marker_lower_alpha_parens] = ACTIONS(168), - [sym_list_marker_upper_alpha_parens] = ACTIONS(171), - [sym_list_marker_lower_roman_parens] = ACTIONS(174), - [sym_list_marker_upper_roman_parens] = ACTIONS(177), - [sym__block_quote_begin] = ACTIONS(206), - [sym__block_quote_continuation] = ACTIONS(183), - [sym__thematic_break_dash] = ACTIONS(209), - [sym__thematic_break_star] = ACTIONS(209), - }, - [9] = { - [sym__block_with_section] = STATE(159), - [sym__block_element] = STATE(159), - [sym_section] = STATE(159), - [sym_heading] = STATE(9), - [sym_list] = STATE(159), - [sym__list_dash] = STATE(166), - [sym__list_item_dash] = STATE(727), - [sym__list_plus] = STATE(166), - [sym__list_item_plus] = STATE(730), - [sym__list_star] = STATE(166), - [sym__list_item_star] = STATE(759), - [sym__list_task] = STATE(166), - [sym__list_item_task] = STATE(761), - [sym_list_marker_task] = STATE(46), - [sym__list_definition] = STATE(166), - [sym__list_item_definition] = STATE(819), - [sym__list_decimal_period] = STATE(166), - [sym__list_item_decimal_period] = STATE(852), - [sym__list_decimal_paren] = STATE(166), - [sym__list_item_decimal_paren] = STATE(837), - [sym__list_decimal_parens] = STATE(166), - [sym__list_item_decimal_parens] = STATE(815), - [sym__list_lower_alpha_period] = STATE(166), - [sym__list_item_lower_alpha_period] = STATE(843), - [sym__list_lower_alpha_paren] = STATE(166), - [sym__list_item_lower_alpha_paren] = STATE(850), - [sym__list_lower_alpha_parens] = STATE(166), - [sym__list_item_lower_alpha_parens] = STATE(853), - [sym__list_upper_alpha_period] = STATE(166), - [sym__list_item_upper_alpha_period] = STATE(854), - [sym__list_upper_alpha_paren] = STATE(166), - [sym__list_item_upper_alpha_paren] = STATE(855), - [sym__list_upper_alpha_parens] = STATE(166), - [sym__list_item_upper_alpha_parens] = STATE(856), - [sym__list_lower_roman_period] = STATE(166), - [sym__list_item_lower_roman_period] = STATE(857), - [sym__list_lower_roman_paren] = STATE(166), - [sym__list_item_lower_roman_paren] = STATE(871), - [sym__list_lower_roman_parens] = STATE(166), - [sym__list_item_lower_roman_parens] = STATE(874), - [sym__list_upper_roman_period] = STATE(166), - [sym__list_item_upper_roman_period] = STATE(876), - [sym__list_upper_roman_paren] = STATE(166), - [sym__list_item_upper_roman_paren] = STATE(878), - [sym__list_upper_roman_parens] = STATE(166), - [sym__list_item_upper_roman_parens] = STATE(880), - [sym_table] = STATE(159), - [sym__table_content] = STATE(72), - [sym_table_separator] = STATE(72), - [sym_table_row] = STATE(79), - [sym_footnote] = STATE(159), - [sym_footnote_marker_begin] = STATE(1302), - [sym_div] = STATE(159), - [sym__div_marker_begin] = STATE(1165), - [sym_code_block] = STATE(159), - [sym_raw_block] = STATE(159), - [sym_thematic_break] = STATE(159), - [sym_block_quote] = STATE(159), - [sym__block_quote_prefix] = STATE(304), - [sym_link_reference_definition] = STATE(159), - [sym_block_attribute] = STATE(159), - [sym__paragraph] = STATE(159), - [sym__paragraph_content] = STATE(848), - [sym__paragraph_inline_content] = STATE(896), - [sym__inline] = STATE(715), - [sym__symbol_fallback] = STATE(381), - [aux_sym_document_repeat1] = STATE(10), - [aux_sym__list_dash_repeat1] = STATE(454), - [aux_sym__list_plus_repeat1] = STATE(455), - [aux_sym__list_star_repeat1] = STATE(456), - [aux_sym__list_task_repeat1] = STATE(436), - [aux_sym__list_definition_repeat1] = STATE(612), - [aux_sym__list_decimal_period_repeat1] = STATE(613), - [aux_sym__list_decimal_paren_repeat1] = STATE(614), - [aux_sym__list_decimal_parens_repeat1] = STATE(615), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(616), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(617), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(618), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(619), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(620), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(621), - [aux_sym__list_lower_roman_period_repeat1] = STATE(622), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(623), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(624), - [aux_sym__list_upper_roman_period_repeat1] = STATE(625), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(626), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(627), - [aux_sym_table_repeat1] = STATE(72), - [aux_sym__block_quote_prefix_repeat1] = STATE(330), - [aux_sym__inline_repeat1] = STATE(381), - [anon_sym_LBRACK] = ACTIONS(73), - [anon_sym_PIPE] = ACTIONS(75), + [7] = { + [sym__block_with_section] = STATE(138), + [sym__block_element] = STATE(138), + [sym_section] = STATE(138), + [sym_heading] = STATE(10), + [sym_list] = STATE(138), + [sym__list_dash] = STATE(144), + [sym__list_item_dash] = STATE(636), + [sym__list_plus] = STATE(144), + [sym__list_item_plus] = STATE(637), + [sym__list_star] = STATE(144), + [sym__list_item_star] = STATE(671), + [sym__list_task] = STATE(144), + [sym__list_item_task] = STATE(691), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(144), + [sym__list_item_definition] = STATE(896), + [sym__list_decimal_period] = STATE(144), + [sym__list_item_decimal_period] = STATE(841), + [sym__list_decimal_paren] = STATE(144), + [sym__list_item_decimal_paren] = STATE(796), + [sym__list_decimal_parens] = STATE(144), + [sym__list_item_decimal_parens] = STATE(716), + [sym__list_lower_alpha_period] = STATE(144), + [sym__list_item_lower_alpha_period] = STATE(722), + [sym__list_lower_alpha_paren] = STATE(144), + [sym__list_item_lower_alpha_paren] = STATE(801), + [sym__list_lower_alpha_parens] = STATE(144), + [sym__list_item_lower_alpha_parens] = STATE(813), + [sym__list_upper_alpha_period] = STATE(144), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(144), + [sym__list_item_upper_alpha_paren] = STATE(706), + [sym__list_upper_alpha_parens] = STATE(144), + [sym__list_item_upper_alpha_parens] = STATE(707), + [sym__list_lower_roman_period] = STATE(144), + [sym__list_item_lower_roman_period] = STATE(725), + [sym__list_lower_roman_paren] = STATE(144), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(144), + [sym__list_item_lower_roman_parens] = STATE(736), + [sym__list_upper_roman_period] = STATE(144), + [sym__list_item_upper_roman_period] = STATE(742), + [sym__list_upper_roman_paren] = STATE(144), + [sym__list_item_upper_roman_paren] = STATE(743), + [sym__list_upper_roman_parens] = STATE(144), + [sym__list_item_upper_roman_parens] = STATE(762), + [sym_table] = STATE(138), + [sym__table_content] = STATE(67), + [sym_table_separator] = STATE(67), + [sym_table_row] = STATE(70), + [sym_footnote] = STATE(138), + [sym_footnote_marker_begin] = STATE(1180), + [sym_div] = STATE(138), + [sym__div_marker_begin] = STATE(1074), + [sym_code_block] = STATE(138), + [sym_raw_block] = STATE(138), + [sym_thematic_break] = STATE(138), + [sym_block_quote] = STATE(138), + [sym__block_quote_prefix] = STATE(233), + [sym_link_reference_definition] = STATE(138), + [sym_block_attribute] = STATE(138), + [sym__paragraph] = STATE(138), + [sym__paragraph_content] = STATE(773), + [sym__paragraph_inline_content] = STATE(775), + [sym__inline] = STATE(616), + [sym__symbol_fallback] = STATE(297), + [aux_sym_document_repeat1] = STATE(9), + [aux_sym__list_dash_repeat1] = STATE(357), + [aux_sym__list_plus_repeat1] = STATE(358), + [aux_sym__list_star_repeat1] = STATE(359), + [aux_sym__list_task_repeat1] = STATE(344), + [aux_sym__list_definition_repeat1] = STATE(515), + [aux_sym__list_decimal_period_repeat1] = STATE(516), + [aux_sym__list_decimal_paren_repeat1] = STATE(517), + [aux_sym__list_decimal_parens_repeat1] = STATE(518), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(519), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(520), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(521), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(522), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(523), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(524), + [aux_sym__list_lower_roman_period_repeat1] = STATE(525), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(526), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(527), + [aux_sym__list_upper_roman_period_repeat1] = STATE(528), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(529), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(530), + [aux_sym_table_repeat1] = STATE(67), + [aux_sym__block_quote_prefix_repeat1] = STATE(253), + [aux_sym__inline_repeat1] = STATE(297), + [anon_sym_LBRACK] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(73), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(75), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__block_close] = ACTIONS(212), - [sym__newline] = ACTIONS(81), + [sym__block_close] = ACTIONS(93), + [sym__newline] = ACTIONS(79), [sym__heading_begin] = ACTIONS(19), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(83), + [sym__code_block_begin] = ACTIONS(81), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -6208,106 +5709,368 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(85), + [sym__block_quote_begin] = ACTIONS(83), [sym__block_quote_continuation] = ACTIONS(67), - [sym__thematic_break_dash] = ACTIONS(87), - [sym__thematic_break_star] = ACTIONS(87), + [sym__thematic_break_dash] = ACTIONS(85), + [sym__thematic_break_star] = ACTIONS(85), }, - [10] = { - [sym__block_with_section] = STATE(159), - [sym__block_element] = STATE(159), - [sym_section] = STATE(159), - [sym_heading] = STATE(9), - [sym_list] = STATE(159), - [sym__list_dash] = STATE(166), - [sym__list_item_dash] = STATE(727), - [sym__list_plus] = STATE(166), - [sym__list_item_plus] = STATE(730), - [sym__list_star] = STATE(166), - [sym__list_item_star] = STATE(759), - [sym__list_task] = STATE(166), - [sym__list_item_task] = STATE(761), - [sym_list_marker_task] = STATE(46), - [sym__list_definition] = STATE(166), - [sym__list_item_definition] = STATE(819), - [sym__list_decimal_period] = STATE(166), - [sym__list_item_decimal_period] = STATE(852), - [sym__list_decimal_paren] = STATE(166), - [sym__list_item_decimal_paren] = STATE(837), - [sym__list_decimal_parens] = STATE(166), - [sym__list_item_decimal_parens] = STATE(815), - [sym__list_lower_alpha_period] = STATE(166), - [sym__list_item_lower_alpha_period] = STATE(843), - [sym__list_lower_alpha_paren] = STATE(166), - [sym__list_item_lower_alpha_paren] = STATE(850), - [sym__list_lower_alpha_parens] = STATE(166), - [sym__list_item_lower_alpha_parens] = STATE(853), - [sym__list_upper_alpha_period] = STATE(166), - [sym__list_item_upper_alpha_period] = STATE(854), - [sym__list_upper_alpha_paren] = STATE(166), - [sym__list_item_upper_alpha_paren] = STATE(855), - [sym__list_upper_alpha_parens] = STATE(166), - [sym__list_item_upper_alpha_parens] = STATE(856), - [sym__list_lower_roman_period] = STATE(166), - [sym__list_item_lower_roman_period] = STATE(857), - [sym__list_lower_roman_paren] = STATE(166), - [sym__list_item_lower_roman_paren] = STATE(871), - [sym__list_lower_roman_parens] = STATE(166), - [sym__list_item_lower_roman_parens] = STATE(874), - [sym__list_upper_roman_period] = STATE(166), - [sym__list_item_upper_roman_period] = STATE(876), - [sym__list_upper_roman_paren] = STATE(166), - [sym__list_item_upper_roman_paren] = STATE(878), - [sym__list_upper_roman_parens] = STATE(166), - [sym__list_item_upper_roman_parens] = STATE(880), - [sym_table] = STATE(159), - [sym__table_content] = STATE(72), - [sym_table_separator] = STATE(72), - [sym_table_row] = STATE(79), - [sym_footnote] = STATE(159), - [sym_footnote_marker_begin] = STATE(1302), - [sym_div] = STATE(159), - [sym__div_marker_begin] = STATE(1165), - [sym_code_block] = STATE(159), - [sym_raw_block] = STATE(159), - [sym_thematic_break] = STATE(159), - [sym_block_quote] = STATE(159), - [sym__block_quote_prefix] = STATE(304), - [sym_link_reference_definition] = STATE(159), - [sym_block_attribute] = STATE(159), - [sym__paragraph] = STATE(159), - [sym__paragraph_content] = STATE(848), - [sym__paragraph_inline_content] = STATE(896), - [sym__inline] = STATE(715), - [sym__symbol_fallback] = STATE(381), + [8] = { + [sym__block_with_section] = STATE(111), + [sym__block_element] = STATE(111), + [sym_section] = STATE(111), + [sym_heading] = STATE(3), + [sym_list] = STATE(111), + [sym__list_dash] = STATE(209), + [sym__list_item_dash] = STATE(636), + [sym__list_plus] = STATE(209), + [sym__list_item_plus] = STATE(637), + [sym__list_star] = STATE(209), + [sym__list_item_star] = STATE(671), + [sym__list_task] = STATE(209), + [sym__list_item_task] = STATE(691), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(209), + [sym__list_item_definition] = STATE(896), + [sym__list_decimal_period] = STATE(209), + [sym__list_item_decimal_period] = STATE(841), + [sym__list_decimal_paren] = STATE(209), + [sym__list_item_decimal_paren] = STATE(796), + [sym__list_decimal_parens] = STATE(209), + [sym__list_item_decimal_parens] = STATE(716), + [sym__list_lower_alpha_period] = STATE(209), + [sym__list_item_lower_alpha_period] = STATE(722), + [sym__list_lower_alpha_paren] = STATE(209), + [sym__list_item_lower_alpha_paren] = STATE(801), + [sym__list_lower_alpha_parens] = STATE(209), + [sym__list_item_lower_alpha_parens] = STATE(813), + [sym__list_upper_alpha_period] = STATE(209), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(209), + [sym__list_item_upper_alpha_paren] = STATE(706), + [sym__list_upper_alpha_parens] = STATE(209), + [sym__list_item_upper_alpha_parens] = STATE(707), + [sym__list_lower_roman_period] = STATE(209), + [sym__list_item_lower_roman_period] = STATE(725), + [sym__list_lower_roman_paren] = STATE(209), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(209), + [sym__list_item_lower_roman_parens] = STATE(736), + [sym__list_upper_roman_period] = STATE(209), + [sym__list_item_upper_roman_period] = STATE(742), + [sym__list_upper_roman_paren] = STATE(209), + [sym__list_item_upper_roman_paren] = STATE(743), + [sym__list_upper_roman_parens] = STATE(209), + [sym__list_item_upper_roman_parens] = STATE(762), + [sym_table] = STATE(111), + [sym__table_content] = STATE(66), + [sym_table_separator] = STATE(66), + [sym_table_row] = STATE(71), + [sym_footnote] = STATE(111), + [sym_footnote_marker_begin] = STATE(1008), + [sym_div] = STATE(111), + [sym__div_marker_begin] = STATE(1010), + [sym_code_block] = STATE(111), + [sym_raw_block] = STATE(111), + [sym_thematic_break] = STATE(111), + [sym_block_quote] = STATE(111), + [sym__block_quote_prefix] = STATE(230), + [sym_link_reference_definition] = STATE(111), + [sym_block_attribute] = STATE(111), + [sym__paragraph] = STATE(111), + [sym__paragraph_content] = STATE(769), + [sym__paragraph_inline_content] = STATE(775), + [sym__inline] = STATE(616), + [sym__symbol_fallback] = STATE(297), [aux_sym_document_repeat1] = STATE(8), - [aux_sym__list_dash_repeat1] = STATE(454), - [aux_sym__list_plus_repeat1] = STATE(455), - [aux_sym__list_star_repeat1] = STATE(456), - [aux_sym__list_task_repeat1] = STATE(436), - [aux_sym__list_definition_repeat1] = STATE(612), - [aux_sym__list_decimal_period_repeat1] = STATE(613), - [aux_sym__list_decimal_paren_repeat1] = STATE(614), - [aux_sym__list_decimal_parens_repeat1] = STATE(615), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(616), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(617), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(618), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(619), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(620), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(621), - [aux_sym__list_lower_roman_period_repeat1] = STATE(622), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(623), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(624), - [aux_sym__list_upper_roman_period_repeat1] = STATE(625), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(626), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(627), - [aux_sym_table_repeat1] = STATE(72), - [aux_sym__block_quote_prefix_repeat1] = STATE(330), - [aux_sym__inline_repeat1] = STATE(381), - [anon_sym_LBRACK] = ACTIONS(73), - [anon_sym_PIPE] = ACTIONS(75), + [aux_sym__list_dash_repeat1] = STATE(363), + [aux_sym__list_plus_repeat1] = STATE(371), + [aux_sym__list_star_repeat1] = STATE(372), + [aux_sym__list_task_repeat1] = STATE(351), + [aux_sym__list_definition_repeat1] = STATE(531), + [aux_sym__list_decimal_period_repeat1] = STATE(532), + [aux_sym__list_decimal_paren_repeat1] = STATE(549), + [aux_sym__list_decimal_parens_repeat1] = STATE(551), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(553), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(555), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(557), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(559), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(561), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(461), + [aux_sym__list_lower_roman_period_repeat1] = STATE(564), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(566), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(568), + [aux_sym__list_upper_roman_period_repeat1] = STATE(570), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(572), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(576), + [aux_sym_table_repeat1] = STATE(66), + [aux_sym__block_quote_prefix_repeat1] = STATE(253), + [aux_sym__inline_repeat1] = STATE(297), + [ts_builtin_sym_end] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(97), + [anon_sym_PIPE] = ACTIONS(100), + [anon_sym_LBRACK_CARET] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(106), + [anon_sym_DOT] = ACTIONS(109), + [aux_sym_identifier_token1] = ACTIONS(109), + [aux_sym__inline_token1] = ACTIONS(109), + [anon_sym_LBRACE_DASH] = ACTIONS(109), + [anon_sym_POUND] = ACTIONS(109), + [anon_sym_PERCENT] = ACTIONS(109), + [sym__newline] = ACTIONS(112), + [sym__heading_begin] = ACTIONS(115), + [sym__div_begin] = ACTIONS(118), + [sym__code_block_begin] = ACTIONS(121), + [sym_list_marker_dash] = ACTIONS(124), + [sym_list_marker_star] = ACTIONS(127), + [sym_list_marker_plus] = ACTIONS(130), + [sym__list_marker_task_begin] = ACTIONS(133), + [sym_list_marker_definition] = ACTIONS(136), + [sym_list_marker_decimal_period] = ACTIONS(139), + [sym_list_marker_lower_alpha_period] = ACTIONS(142), + [sym_list_marker_upper_alpha_period] = ACTIONS(145), + [sym_list_marker_lower_roman_period] = ACTIONS(148), + [sym_list_marker_upper_roman_period] = ACTIONS(151), + [sym_list_marker_decimal_paren] = ACTIONS(154), + [sym_list_marker_lower_alpha_paren] = ACTIONS(157), + [sym_list_marker_upper_alpha_paren] = ACTIONS(160), + [sym_list_marker_lower_roman_paren] = ACTIONS(163), + [sym_list_marker_upper_roman_paren] = ACTIONS(166), + [sym_list_marker_decimal_parens] = ACTIONS(169), + [sym_list_marker_lower_alpha_parens] = ACTIONS(172), + [sym_list_marker_upper_alpha_parens] = ACTIONS(175), + [sym_list_marker_lower_roman_parens] = ACTIONS(178), + [sym_list_marker_upper_roman_parens] = ACTIONS(181), + [sym__block_quote_begin] = ACTIONS(184), + [sym__block_quote_continuation] = ACTIONS(187), + [sym__thematic_break_dash] = ACTIONS(190), + [sym__thematic_break_star] = ACTIONS(190), + }, + [9] = { + [sym__block_with_section] = STATE(138), + [sym__block_element] = STATE(138), + [sym_section] = STATE(138), + [sym_heading] = STATE(10), + [sym_list] = STATE(138), + [sym__list_dash] = STATE(144), + [sym__list_item_dash] = STATE(636), + [sym__list_plus] = STATE(144), + [sym__list_item_plus] = STATE(637), + [sym__list_star] = STATE(144), + [sym__list_item_star] = STATE(671), + [sym__list_task] = STATE(144), + [sym__list_item_task] = STATE(691), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(144), + [sym__list_item_definition] = STATE(896), + [sym__list_decimal_period] = STATE(144), + [sym__list_item_decimal_period] = STATE(841), + [sym__list_decimal_paren] = STATE(144), + [sym__list_item_decimal_paren] = STATE(796), + [sym__list_decimal_parens] = STATE(144), + [sym__list_item_decimal_parens] = STATE(716), + [sym__list_lower_alpha_period] = STATE(144), + [sym__list_item_lower_alpha_period] = STATE(722), + [sym__list_lower_alpha_paren] = STATE(144), + [sym__list_item_lower_alpha_paren] = STATE(801), + [sym__list_lower_alpha_parens] = STATE(144), + [sym__list_item_lower_alpha_parens] = STATE(813), + [sym__list_upper_alpha_period] = STATE(144), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(144), + [sym__list_item_upper_alpha_paren] = STATE(706), + [sym__list_upper_alpha_parens] = STATE(144), + [sym__list_item_upper_alpha_parens] = STATE(707), + [sym__list_lower_roman_period] = STATE(144), + [sym__list_item_lower_roman_period] = STATE(725), + [sym__list_lower_roman_paren] = STATE(144), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(144), + [sym__list_item_lower_roman_parens] = STATE(736), + [sym__list_upper_roman_period] = STATE(144), + [sym__list_item_upper_roman_period] = STATE(742), + [sym__list_upper_roman_paren] = STATE(144), + [sym__list_item_upper_roman_paren] = STATE(743), + [sym__list_upper_roman_parens] = STATE(144), + [sym__list_item_upper_roman_parens] = STATE(762), + [sym_table] = STATE(138), + [sym__table_content] = STATE(67), + [sym_table_separator] = STATE(67), + [sym_table_row] = STATE(70), + [sym_footnote] = STATE(138), + [sym_footnote_marker_begin] = STATE(1180), + [sym_div] = STATE(138), + [sym__div_marker_begin] = STATE(1074), + [sym_code_block] = STATE(138), + [sym_raw_block] = STATE(138), + [sym_thematic_break] = STATE(138), + [sym_block_quote] = STATE(138), + [sym__block_quote_prefix] = STATE(233), + [sym_link_reference_definition] = STATE(138), + [sym_block_attribute] = STATE(138), + [sym__paragraph] = STATE(138), + [sym__paragraph_content] = STATE(773), + [sym__paragraph_inline_content] = STATE(775), + [sym__inline] = STATE(616), + [sym__symbol_fallback] = STATE(297), + [aux_sym_document_repeat1] = STATE(9), + [aux_sym__list_dash_repeat1] = STATE(357), + [aux_sym__list_plus_repeat1] = STATE(358), + [aux_sym__list_star_repeat1] = STATE(359), + [aux_sym__list_task_repeat1] = STATE(344), + [aux_sym__list_definition_repeat1] = STATE(515), + [aux_sym__list_decimal_period_repeat1] = STATE(516), + [aux_sym__list_decimal_paren_repeat1] = STATE(517), + [aux_sym__list_decimal_parens_repeat1] = STATE(518), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(519), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(520), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(521), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(522), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(523), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(524), + [aux_sym__list_lower_roman_period_repeat1] = STATE(525), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(526), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(527), + [aux_sym__list_upper_roman_period_repeat1] = STATE(528), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(529), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(530), + [aux_sym_table_repeat1] = STATE(67), + [aux_sym__block_quote_prefix_repeat1] = STATE(253), + [aux_sym__inline_repeat1] = STATE(297), + [anon_sym_LBRACK] = ACTIONS(193), + [anon_sym_PIPE] = ACTIONS(196), + [anon_sym_LBRACK_CARET] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(199), + [anon_sym_DOT] = ACTIONS(109), + [aux_sym_identifier_token1] = ACTIONS(109), + [aux_sym__inline_token1] = ACTIONS(109), + [anon_sym_LBRACE_DASH] = ACTIONS(109), + [anon_sym_POUND] = ACTIONS(109), + [anon_sym_PERCENT] = ACTIONS(109), + [sym__block_close] = ACTIONS(95), + [sym__newline] = ACTIONS(202), + [sym__heading_begin] = ACTIONS(115), + [sym__div_begin] = ACTIONS(118), + [sym__code_block_begin] = ACTIONS(205), + [sym_list_marker_dash] = ACTIONS(124), + [sym_list_marker_star] = ACTIONS(127), + [sym_list_marker_plus] = ACTIONS(130), + [sym__list_marker_task_begin] = ACTIONS(133), + [sym_list_marker_definition] = ACTIONS(136), + [sym_list_marker_decimal_period] = ACTIONS(139), + [sym_list_marker_lower_alpha_period] = ACTIONS(142), + [sym_list_marker_upper_alpha_period] = ACTIONS(145), + [sym_list_marker_lower_roman_period] = ACTIONS(148), + [sym_list_marker_upper_roman_period] = ACTIONS(151), + [sym_list_marker_decimal_paren] = ACTIONS(154), + [sym_list_marker_lower_alpha_paren] = ACTIONS(157), + [sym_list_marker_upper_alpha_paren] = ACTIONS(160), + [sym_list_marker_lower_roman_paren] = ACTIONS(163), + [sym_list_marker_upper_roman_paren] = ACTIONS(166), + [sym_list_marker_decimal_parens] = ACTIONS(169), + [sym_list_marker_lower_alpha_parens] = ACTIONS(172), + [sym_list_marker_upper_alpha_parens] = ACTIONS(175), + [sym_list_marker_lower_roman_parens] = ACTIONS(178), + [sym_list_marker_upper_roman_parens] = ACTIONS(181), + [sym__block_quote_begin] = ACTIONS(208), + [sym__block_quote_continuation] = ACTIONS(187), + [sym__thematic_break_dash] = ACTIONS(211), + [sym__thematic_break_star] = ACTIONS(211), + }, + [10] = { + [sym__block_with_section] = STATE(138), + [sym__block_element] = STATE(138), + [sym_section] = STATE(138), + [sym_heading] = STATE(10), + [sym_list] = STATE(138), + [sym__list_dash] = STATE(144), + [sym__list_item_dash] = STATE(636), + [sym__list_plus] = STATE(144), + [sym__list_item_plus] = STATE(637), + [sym__list_star] = STATE(144), + [sym__list_item_star] = STATE(671), + [sym__list_task] = STATE(144), + [sym__list_item_task] = STATE(691), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(144), + [sym__list_item_definition] = STATE(896), + [sym__list_decimal_period] = STATE(144), + [sym__list_item_decimal_period] = STATE(841), + [sym__list_decimal_paren] = STATE(144), + [sym__list_item_decimal_paren] = STATE(796), + [sym__list_decimal_parens] = STATE(144), + [sym__list_item_decimal_parens] = STATE(716), + [sym__list_lower_alpha_period] = STATE(144), + [sym__list_item_lower_alpha_period] = STATE(722), + [sym__list_lower_alpha_paren] = STATE(144), + [sym__list_item_lower_alpha_paren] = STATE(801), + [sym__list_lower_alpha_parens] = STATE(144), + [sym__list_item_lower_alpha_parens] = STATE(813), + [sym__list_upper_alpha_period] = STATE(144), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(144), + [sym__list_item_upper_alpha_paren] = STATE(706), + [sym__list_upper_alpha_parens] = STATE(144), + [sym__list_item_upper_alpha_parens] = STATE(707), + [sym__list_lower_roman_period] = STATE(144), + [sym__list_item_lower_roman_period] = STATE(725), + [sym__list_lower_roman_paren] = STATE(144), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(144), + [sym__list_item_lower_roman_parens] = STATE(736), + [sym__list_upper_roman_period] = STATE(144), + [sym__list_item_upper_roman_period] = STATE(742), + [sym__list_upper_roman_paren] = STATE(144), + [sym__list_item_upper_roman_paren] = STATE(743), + [sym__list_upper_roman_parens] = STATE(144), + [sym__list_item_upper_roman_parens] = STATE(762), + [sym_table] = STATE(138), + [sym__table_content] = STATE(67), + [sym_table_separator] = STATE(67), + [sym_table_row] = STATE(70), + [sym_footnote] = STATE(138), + [sym_footnote_marker_begin] = STATE(1180), + [sym_div] = STATE(138), + [sym__div_marker_begin] = STATE(1074), + [sym_code_block] = STATE(138), + [sym_raw_block] = STATE(138), + [sym_thematic_break] = STATE(138), + [sym_block_quote] = STATE(138), + [sym__block_quote_prefix] = STATE(233), + [sym_link_reference_definition] = STATE(138), + [sym_block_attribute] = STATE(138), + [sym__paragraph] = STATE(138), + [sym__paragraph_content] = STATE(773), + [sym__paragraph_inline_content] = STATE(775), + [sym__inline] = STATE(616), + [sym__symbol_fallback] = STATE(297), + [aux_sym_document_repeat1] = STATE(2), + [aux_sym__list_dash_repeat1] = STATE(357), + [aux_sym__list_plus_repeat1] = STATE(358), + [aux_sym__list_star_repeat1] = STATE(359), + [aux_sym__list_task_repeat1] = STATE(344), + [aux_sym__list_definition_repeat1] = STATE(515), + [aux_sym__list_decimal_period_repeat1] = STATE(516), + [aux_sym__list_decimal_paren_repeat1] = STATE(517), + [aux_sym__list_decimal_parens_repeat1] = STATE(518), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(519), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(520), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(521), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(522), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(523), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(524), + [aux_sym__list_lower_roman_period_repeat1] = STATE(525), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(526), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(527), + [aux_sym__list_upper_roman_period_repeat1] = STATE(528), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(529), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(530), + [aux_sym_table_repeat1] = STATE(67), + [aux_sym__block_quote_prefix_repeat1] = STATE(253), + [aux_sym__inline_repeat1] = STATE(297), + [anon_sym_LBRACK] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(73), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(75), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), @@ -6315,10 +6078,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), [sym__block_close] = ACTIONS(214), - [sym__newline] = ACTIONS(81), + [sym__newline] = ACTIONS(79), [sym__heading_begin] = ACTIONS(19), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(83), + [sym__code_block_begin] = ACTIONS(81), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -6339,116 +6102,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(85), + [sym__block_quote_begin] = ACTIONS(83), [sym__block_quote_continuation] = ACTIONS(67), - [sym__thematic_break_dash] = ACTIONS(87), - [sym__thematic_break_star] = ACTIONS(87), + [sym__thematic_break_dash] = ACTIONS(85), + [sym__thematic_break_star] = ACTIONS(85), }, [11] = { - [sym__block_with_heading] = STATE(164), - [sym__block_element] = STATE(164), - [sym_heading] = STATE(164), - [sym_list] = STATE(164), - [sym__list_dash] = STATE(228), - [sym__list_item_dash] = STATE(727), - [sym__list_plus] = STATE(228), - [sym__list_item_plus] = STATE(730), - [sym__list_star] = STATE(228), - [sym__list_item_star] = STATE(759), - [sym__list_task] = STATE(228), - [sym__list_item_task] = STATE(761), - [sym_list_marker_task] = STATE(46), - [sym__list_definition] = STATE(228), - [sym__list_item_definition] = STATE(819), - [sym__list_decimal_period] = STATE(228), - [sym__list_item_decimal_period] = STATE(852), - [sym__list_decimal_paren] = STATE(228), - [sym__list_item_decimal_paren] = STATE(837), - [sym__list_decimal_parens] = STATE(228), - [sym__list_item_decimal_parens] = STATE(815), - [sym__list_lower_alpha_period] = STATE(228), - [sym__list_item_lower_alpha_period] = STATE(843), - [sym__list_lower_alpha_paren] = STATE(228), - [sym__list_item_lower_alpha_paren] = STATE(850), - [sym__list_lower_alpha_parens] = STATE(228), - [sym__list_item_lower_alpha_parens] = STATE(853), - [sym__list_upper_alpha_period] = STATE(228), - [sym__list_item_upper_alpha_period] = STATE(854), - [sym__list_upper_alpha_paren] = STATE(228), - [sym__list_item_upper_alpha_paren] = STATE(855), - [sym__list_upper_alpha_parens] = STATE(228), - [sym__list_item_upper_alpha_parens] = STATE(856), - [sym__list_lower_roman_period] = STATE(228), - [sym__list_item_lower_roman_period] = STATE(857), - [sym__list_lower_roman_paren] = STATE(228), - [sym__list_item_lower_roman_paren] = STATE(871), - [sym__list_lower_roman_parens] = STATE(228), - [sym__list_item_lower_roman_parens] = STATE(874), - [sym__list_upper_roman_period] = STATE(228), - [sym__list_item_upper_roman_period] = STATE(876), - [sym__list_upper_roman_paren] = STATE(228), - [sym__list_item_upper_roman_paren] = STATE(878), - [sym__list_upper_roman_parens] = STATE(228), - [sym__list_item_upper_roman_parens] = STATE(880), - [sym_table] = STATE(164), - [sym__table_content] = STATE(73), - [sym_table_separator] = STATE(73), - [sym_table_row] = STATE(77), - [sym_footnote] = STATE(164), - [sym_footnote_marker_begin] = STATE(1306), - [sym_footnote_content] = STATE(1078), - [sym_div] = STATE(164), - [sym__div_marker_begin] = STATE(1210), - [sym_code_block] = STATE(164), - [sym_raw_block] = STATE(164), - [sym_thematic_break] = STATE(164), - [sym_block_quote] = STATE(164), - [sym__block_quote_prefix] = STATE(301), - [sym_link_reference_definition] = STATE(164), - [sym_block_attribute] = STATE(164), - [sym__paragraph] = STATE(164), - [sym__paragraph_content] = STATE(889), - [sym__paragraph_inline_content] = STATE(896), - [sym__inline] = STATE(715), - [sym__symbol_fallback] = STATE(381), - [aux_sym__list_dash_repeat1] = STATE(445), - [aux_sym__list_plus_repeat1] = STATE(446), - [aux_sym__list_star_repeat1] = STATE(447), - [aux_sym__list_task_repeat1] = STATE(423), - [aux_sym__list_definition_repeat1] = STATE(655), - [aux_sym__list_decimal_period_repeat1] = STATE(656), - [aux_sym__list_decimal_paren_repeat1] = STATE(657), - [aux_sym__list_decimal_parens_repeat1] = STATE(658), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(659), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(660), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(661), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(662), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(663), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(664), - [aux_sym__list_lower_roman_period_repeat1] = STATE(665), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(666), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(667), - [aux_sym__list_upper_roman_period_repeat1] = STATE(668), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(669), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(670), - [aux_sym_table_repeat1] = STATE(73), - [aux_sym_footnote_content_repeat1] = STATE(17), - [aux_sym__block_quote_prefix_repeat1] = STATE(330), - [aux_sym__inline_repeat1] = STATE(381), - [anon_sym_LBRACK] = ACTIONS(216), - [anon_sym_PIPE] = ACTIONS(218), + [sym__block_with_heading] = STATE(208), + [sym__block_element] = STATE(208), + [sym_heading] = STATE(208), + [sym_list] = STATE(208), + [sym__list_dash] = STATE(144), + [sym__list_item_dash] = STATE(636), + [sym__list_plus] = STATE(144), + [sym__list_item_plus] = STATE(637), + [sym__list_star] = STATE(144), + [sym__list_item_star] = STATE(671), + [sym__list_task] = STATE(144), + [sym__list_item_task] = STATE(691), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(144), + [sym__list_item_definition] = STATE(896), + [sym__list_decimal_period] = STATE(144), + [sym__list_item_decimal_period] = STATE(841), + [sym__list_decimal_paren] = STATE(144), + [sym__list_item_decimal_paren] = STATE(796), + [sym__list_decimal_parens] = STATE(144), + [sym__list_item_decimal_parens] = STATE(716), + [sym__list_lower_alpha_period] = STATE(144), + [sym__list_item_lower_alpha_period] = STATE(722), + [sym__list_lower_alpha_paren] = STATE(144), + [sym__list_item_lower_alpha_paren] = STATE(801), + [sym__list_lower_alpha_parens] = STATE(144), + [sym__list_item_lower_alpha_parens] = STATE(813), + [sym__list_upper_alpha_period] = STATE(144), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(144), + [sym__list_item_upper_alpha_paren] = STATE(706), + [sym__list_upper_alpha_parens] = STATE(144), + [sym__list_item_upper_alpha_parens] = STATE(707), + [sym__list_lower_roman_period] = STATE(144), + [sym__list_item_lower_roman_period] = STATE(725), + [sym__list_lower_roman_paren] = STATE(144), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(144), + [sym__list_item_lower_roman_parens] = STATE(736), + [sym__list_upper_roman_period] = STATE(144), + [sym__list_item_upper_roman_period] = STATE(742), + [sym__list_upper_roman_paren] = STATE(144), + [sym__list_item_upper_roman_paren] = STATE(743), + [sym__list_upper_roman_parens] = STATE(144), + [sym__list_item_upper_roman_parens] = STATE(762), + [sym_table] = STATE(208), + [sym__table_content] = STATE(67), + [sym_table_separator] = STATE(67), + [sym_table_row] = STATE(70), + [sym_footnote] = STATE(208), + [sym_footnote_marker_begin] = STATE(1180), + [sym_div] = STATE(208), + [sym__div_marker_begin] = STATE(1074), + [sym_code_block] = STATE(208), + [sym_raw_block] = STATE(208), + [sym_thematic_break] = STATE(208), + [sym_block_quote] = STATE(208), + [sym__block_quote_prefix] = STATE(221), + [sym_link_reference_definition] = STATE(208), + [sym_block_attribute] = STATE(208), + [sym__paragraph] = STATE(208), + [sym__paragraph_content] = STATE(773), + [sym__paragraph_inline_content] = STATE(775), + [sym__inline] = STATE(616), + [sym__symbol_fallback] = STATE(297), + [aux_sym__list_dash_repeat1] = STATE(357), + [aux_sym__list_plus_repeat1] = STATE(358), + [aux_sym__list_star_repeat1] = STATE(359), + [aux_sym__list_task_repeat1] = STATE(344), + [aux_sym__list_definition_repeat1] = STATE(515), + [aux_sym__list_decimal_period_repeat1] = STATE(516), + [aux_sym__list_decimal_paren_repeat1] = STATE(517), + [aux_sym__list_decimal_parens_repeat1] = STATE(518), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(519), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(520), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(521), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(522), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(523), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(524), + [aux_sym__list_lower_roman_period_repeat1] = STATE(525), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(526), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(527), + [aux_sym__list_upper_roman_period_repeat1] = STATE(528), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(529), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(530), + [aux_sym_table_repeat1] = STATE(67), + [aux_sym_div_repeat1] = STATE(15), + [aux_sym__block_quote_prefix_repeat1] = STATE(240), + [aux_sym__inline_repeat1] = STATE(297), + [anon_sym_LBRACK] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(73), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(75), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(222), - [sym__heading_begin] = ACTIONS(224), + [sym__block_close] = ACTIONS(216), + [sym__newline] = ACTIONS(218), + [sym__heading_begin] = ACTIONS(19), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(226), + [sym__code_block_begin] = ACTIONS(81), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -6469,116 +6232,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(228), - [sym__block_quote_continuation] = ACTIONS(230), - [sym__thematic_break_dash] = ACTIONS(232), - [sym__thematic_break_star] = ACTIONS(232), + [sym__block_quote_begin] = ACTIONS(83), + [sym__block_quote_continuation] = ACTIONS(220), + [sym__thematic_break_dash] = ACTIONS(85), + [sym__thematic_break_star] = ACTIONS(85), }, [12] = { - [sym__block_with_heading] = STATE(164), - [sym__block_element] = STATE(164), - [sym_heading] = STATE(164), - [sym_list] = STATE(164), - [sym__list_dash] = STATE(228), - [sym__list_item_dash] = STATE(727), - [sym__list_plus] = STATE(228), - [sym__list_item_plus] = STATE(730), - [sym__list_star] = STATE(228), - [sym__list_item_star] = STATE(759), - [sym__list_task] = STATE(228), - [sym__list_item_task] = STATE(761), - [sym_list_marker_task] = STATE(46), - [sym__list_definition] = STATE(228), - [sym__list_item_definition] = STATE(819), - [sym__list_decimal_period] = STATE(228), - [sym__list_item_decimal_period] = STATE(852), - [sym__list_decimal_paren] = STATE(228), - [sym__list_item_decimal_paren] = STATE(837), - [sym__list_decimal_parens] = STATE(228), - [sym__list_item_decimal_parens] = STATE(815), - [sym__list_lower_alpha_period] = STATE(228), - [sym__list_item_lower_alpha_period] = STATE(843), - [sym__list_lower_alpha_paren] = STATE(228), - [sym__list_item_lower_alpha_paren] = STATE(850), - [sym__list_lower_alpha_parens] = STATE(228), - [sym__list_item_lower_alpha_parens] = STATE(853), - [sym__list_upper_alpha_period] = STATE(228), - [sym__list_item_upper_alpha_period] = STATE(854), - [sym__list_upper_alpha_paren] = STATE(228), - [sym__list_item_upper_alpha_paren] = STATE(855), - [sym__list_upper_alpha_parens] = STATE(228), - [sym__list_item_upper_alpha_parens] = STATE(856), - [sym__list_lower_roman_period] = STATE(228), - [sym__list_item_lower_roman_period] = STATE(857), - [sym__list_lower_roman_paren] = STATE(228), - [sym__list_item_lower_roman_paren] = STATE(871), - [sym__list_lower_roman_parens] = STATE(228), - [sym__list_item_lower_roman_parens] = STATE(874), - [sym__list_upper_roman_period] = STATE(228), - [sym__list_item_upper_roman_period] = STATE(876), - [sym__list_upper_roman_paren] = STATE(228), - [sym__list_item_upper_roman_paren] = STATE(878), - [sym__list_upper_roman_parens] = STATE(228), - [sym__list_item_upper_roman_parens] = STATE(880), - [sym_table] = STATE(164), - [sym__table_content] = STATE(73), - [sym_table_separator] = STATE(73), - [sym_table_row] = STATE(77), - [sym_footnote] = STATE(164), - [sym_footnote_marker_begin] = STATE(1306), - [sym_footnote_content] = STATE(1023), - [sym_div] = STATE(164), - [sym__div_marker_begin] = STATE(1210), - [sym_code_block] = STATE(164), - [sym_raw_block] = STATE(164), - [sym_thematic_break] = STATE(164), - [sym_block_quote] = STATE(164), - [sym__block_quote_prefix] = STATE(301), - [sym_link_reference_definition] = STATE(164), - [sym_block_attribute] = STATE(164), - [sym__paragraph] = STATE(164), - [sym__paragraph_content] = STATE(889), - [sym__paragraph_inline_content] = STATE(896), - [sym__inline] = STATE(715), - [sym__symbol_fallback] = STATE(381), - [aux_sym__list_dash_repeat1] = STATE(445), - [aux_sym__list_plus_repeat1] = STATE(446), - [aux_sym__list_star_repeat1] = STATE(447), - [aux_sym__list_task_repeat1] = STATE(423), - [aux_sym__list_definition_repeat1] = STATE(655), - [aux_sym__list_decimal_period_repeat1] = STATE(656), - [aux_sym__list_decimal_paren_repeat1] = STATE(657), - [aux_sym__list_decimal_parens_repeat1] = STATE(658), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(659), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(660), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(661), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(662), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(663), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(664), - [aux_sym__list_lower_roman_period_repeat1] = STATE(665), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(666), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(667), - [aux_sym__list_upper_roman_period_repeat1] = STATE(668), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(669), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(670), - [aux_sym_table_repeat1] = STATE(73), - [aux_sym_footnote_content_repeat1] = STATE(17), - [aux_sym__block_quote_prefix_repeat1] = STATE(330), - [aux_sym__inline_repeat1] = STATE(381), - [anon_sym_LBRACK] = ACTIONS(216), - [anon_sym_PIPE] = ACTIONS(218), + [sym__block_with_heading] = STATE(208), + [sym__block_element] = STATE(208), + [sym_heading] = STATE(208), + [sym_list] = STATE(208), + [sym__list_dash] = STATE(144), + [sym__list_item_dash] = STATE(636), + [sym__list_plus] = STATE(144), + [sym__list_item_plus] = STATE(637), + [sym__list_star] = STATE(144), + [sym__list_item_star] = STATE(671), + [sym__list_task] = STATE(144), + [sym__list_item_task] = STATE(691), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(144), + [sym__list_item_definition] = STATE(896), + [sym__list_decimal_period] = STATE(144), + [sym__list_item_decimal_period] = STATE(841), + [sym__list_decimal_paren] = STATE(144), + [sym__list_item_decimal_paren] = STATE(796), + [sym__list_decimal_parens] = STATE(144), + [sym__list_item_decimal_parens] = STATE(716), + [sym__list_lower_alpha_period] = STATE(144), + [sym__list_item_lower_alpha_period] = STATE(722), + [sym__list_lower_alpha_paren] = STATE(144), + [sym__list_item_lower_alpha_paren] = STATE(801), + [sym__list_lower_alpha_parens] = STATE(144), + [sym__list_item_lower_alpha_parens] = STATE(813), + [sym__list_upper_alpha_period] = STATE(144), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(144), + [sym__list_item_upper_alpha_paren] = STATE(706), + [sym__list_upper_alpha_parens] = STATE(144), + [sym__list_item_upper_alpha_parens] = STATE(707), + [sym__list_lower_roman_period] = STATE(144), + [sym__list_item_lower_roman_period] = STATE(725), + [sym__list_lower_roman_paren] = STATE(144), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(144), + [sym__list_item_lower_roman_parens] = STATE(736), + [sym__list_upper_roman_period] = STATE(144), + [sym__list_item_upper_roman_period] = STATE(742), + [sym__list_upper_roman_paren] = STATE(144), + [sym__list_item_upper_roman_paren] = STATE(743), + [sym__list_upper_roman_parens] = STATE(144), + [sym__list_item_upper_roman_parens] = STATE(762), + [sym_table] = STATE(208), + [sym__table_content] = STATE(67), + [sym_table_separator] = STATE(67), + [sym_table_row] = STATE(70), + [sym_footnote] = STATE(208), + [sym_footnote_marker_begin] = STATE(1180), + [sym_div] = STATE(208), + [sym__div_marker_begin] = STATE(1074), + [sym_code_block] = STATE(208), + [sym_raw_block] = STATE(208), + [sym_thematic_break] = STATE(208), + [sym_block_quote] = STATE(208), + [sym__block_quote_prefix] = STATE(227), + [sym_link_reference_definition] = STATE(208), + [sym_block_attribute] = STATE(208), + [sym__paragraph] = STATE(208), + [sym__paragraph_content] = STATE(773), + [sym__paragraph_inline_content] = STATE(775), + [sym__inline] = STATE(616), + [sym__symbol_fallback] = STATE(297), + [aux_sym__list_dash_repeat1] = STATE(357), + [aux_sym__list_plus_repeat1] = STATE(358), + [aux_sym__list_star_repeat1] = STATE(359), + [aux_sym__list_task_repeat1] = STATE(344), + [aux_sym__list_definition_repeat1] = STATE(515), + [aux_sym__list_decimal_period_repeat1] = STATE(516), + [aux_sym__list_decimal_paren_repeat1] = STATE(517), + [aux_sym__list_decimal_parens_repeat1] = STATE(518), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(519), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(520), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(521), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(522), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(523), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(524), + [aux_sym__list_lower_roman_period_repeat1] = STATE(525), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(526), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(527), + [aux_sym__list_upper_roman_period_repeat1] = STATE(528), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(529), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(530), + [aux_sym_table_repeat1] = STATE(67), + [aux_sym_div_repeat1] = STATE(15), + [aux_sym__block_quote_prefix_repeat1] = STATE(240), + [aux_sym__inline_repeat1] = STATE(297), + [anon_sym_LBRACK] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(73), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(75), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(222), - [sym__heading_begin] = ACTIONS(224), + [sym__block_close] = ACTIONS(222), + [sym__newline] = ACTIONS(218), + [sym__heading_begin] = ACTIONS(19), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(226), + [sym__code_block_begin] = ACTIONS(81), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -6599,116 +6362,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(228), - [sym__block_quote_continuation] = ACTIONS(230), - [sym__thematic_break_dash] = ACTIONS(232), - [sym__thematic_break_star] = ACTIONS(232), + [sym__block_quote_begin] = ACTIONS(83), + [sym__block_quote_continuation] = ACTIONS(220), + [sym__thematic_break_dash] = ACTIONS(85), + [sym__thematic_break_star] = ACTIONS(85), }, [13] = { - [sym__block_with_heading] = STATE(260), - [sym__block_element] = STATE(260), - [sym_heading] = STATE(260), - [sym_list] = STATE(260), - [sym__list_dash] = STATE(166), - [sym__list_item_dash] = STATE(727), - [sym__list_plus] = STATE(166), - [sym__list_item_plus] = STATE(730), - [sym__list_star] = STATE(166), - [sym__list_item_star] = STATE(759), - [sym__list_task] = STATE(166), - [sym__list_item_task] = STATE(761), - [sym_list_marker_task] = STATE(46), - [sym__list_definition] = STATE(166), - [sym__list_item_definition] = STATE(819), - [sym__list_decimal_period] = STATE(166), - [sym__list_item_decimal_period] = STATE(852), - [sym__list_decimal_paren] = STATE(166), - [sym__list_item_decimal_paren] = STATE(837), - [sym__list_decimal_parens] = STATE(166), - [sym__list_item_decimal_parens] = STATE(815), - [sym__list_lower_alpha_period] = STATE(166), - [sym__list_item_lower_alpha_period] = STATE(843), - [sym__list_lower_alpha_paren] = STATE(166), - [sym__list_item_lower_alpha_paren] = STATE(850), - [sym__list_lower_alpha_parens] = STATE(166), - [sym__list_item_lower_alpha_parens] = STATE(853), - [sym__list_upper_alpha_period] = STATE(166), - [sym__list_item_upper_alpha_period] = STATE(854), - [sym__list_upper_alpha_paren] = STATE(166), - [sym__list_item_upper_alpha_paren] = STATE(855), - [sym__list_upper_alpha_parens] = STATE(166), - [sym__list_item_upper_alpha_parens] = STATE(856), - [sym__list_lower_roman_period] = STATE(166), - [sym__list_item_lower_roman_period] = STATE(857), - [sym__list_lower_roman_paren] = STATE(166), - [sym__list_item_lower_roman_paren] = STATE(871), - [sym__list_lower_roman_parens] = STATE(166), - [sym__list_item_lower_roman_parens] = STATE(874), - [sym__list_upper_roman_period] = STATE(166), - [sym__list_item_upper_roman_period] = STATE(876), - [sym__list_upper_roman_paren] = STATE(166), - [sym__list_item_upper_roman_paren] = STATE(878), - [sym__list_upper_roman_parens] = STATE(166), - [sym__list_item_upper_roman_parens] = STATE(880), - [sym_table] = STATE(260), - [sym__table_content] = STATE(72), - [sym_table_separator] = STATE(72), - [sym_table_row] = STATE(79), - [sym_footnote] = STATE(260), - [sym_footnote_marker_begin] = STATE(1302), - [sym_div] = STATE(260), - [sym__div_marker_begin] = STATE(1165), - [sym_code_block] = STATE(260), - [sym_raw_block] = STATE(260), - [sym_thematic_break] = STATE(260), - [sym_block_quote] = STATE(260), - [sym__block_quote_prefix] = STATE(288), - [sym_link_reference_definition] = STATE(260), - [sym_block_attribute] = STATE(260), - [sym__paragraph] = STATE(260), - [sym__paragraph_content] = STATE(848), - [sym__paragraph_inline_content] = STATE(896), - [sym__inline] = STATE(715), - [sym__symbol_fallback] = STATE(381), - [aux_sym__list_dash_repeat1] = STATE(454), - [aux_sym__list_plus_repeat1] = STATE(455), - [aux_sym__list_star_repeat1] = STATE(456), - [aux_sym__list_task_repeat1] = STATE(436), - [aux_sym__list_definition_repeat1] = STATE(612), - [aux_sym__list_decimal_period_repeat1] = STATE(613), - [aux_sym__list_decimal_paren_repeat1] = STATE(614), - [aux_sym__list_decimal_parens_repeat1] = STATE(615), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(616), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(617), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(618), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(619), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(620), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(621), - [aux_sym__list_lower_roman_period_repeat1] = STATE(622), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(623), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(624), - [aux_sym__list_upper_roman_period_repeat1] = STATE(625), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(626), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(627), - [aux_sym_table_repeat1] = STATE(72), - [aux_sym_footnote_content_repeat1] = STATE(14), - [aux_sym__block_quote_prefix_repeat1] = STATE(308), - [aux_sym__inline_repeat1] = STATE(381), - [anon_sym_LBRACK] = ACTIONS(73), - [anon_sym_PIPE] = ACTIONS(75), + [sym__block_with_heading] = STATE(208), + [sym__block_element] = STATE(208), + [sym_heading] = STATE(208), + [sym_list] = STATE(208), + [sym__list_dash] = STATE(144), + [sym__list_item_dash] = STATE(636), + [sym__list_plus] = STATE(144), + [sym__list_item_plus] = STATE(637), + [sym__list_star] = STATE(144), + [sym__list_item_star] = STATE(671), + [sym__list_task] = STATE(144), + [sym__list_item_task] = STATE(691), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(144), + [sym__list_item_definition] = STATE(896), + [sym__list_decimal_period] = STATE(144), + [sym__list_item_decimal_period] = STATE(841), + [sym__list_decimal_paren] = STATE(144), + [sym__list_item_decimal_paren] = STATE(796), + [sym__list_decimal_parens] = STATE(144), + [sym__list_item_decimal_parens] = STATE(716), + [sym__list_lower_alpha_period] = STATE(144), + [sym__list_item_lower_alpha_period] = STATE(722), + [sym__list_lower_alpha_paren] = STATE(144), + [sym__list_item_lower_alpha_paren] = STATE(801), + [sym__list_lower_alpha_parens] = STATE(144), + [sym__list_item_lower_alpha_parens] = STATE(813), + [sym__list_upper_alpha_period] = STATE(144), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(144), + [sym__list_item_upper_alpha_paren] = STATE(706), + [sym__list_upper_alpha_parens] = STATE(144), + [sym__list_item_upper_alpha_parens] = STATE(707), + [sym__list_lower_roman_period] = STATE(144), + [sym__list_item_lower_roman_period] = STATE(725), + [sym__list_lower_roman_paren] = STATE(144), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(144), + [sym__list_item_lower_roman_parens] = STATE(736), + [sym__list_upper_roman_period] = STATE(144), + [sym__list_item_upper_roman_period] = STATE(742), + [sym__list_upper_roman_paren] = STATE(144), + [sym__list_item_upper_roman_paren] = STATE(743), + [sym__list_upper_roman_parens] = STATE(144), + [sym__list_item_upper_roman_parens] = STATE(762), + [sym_table] = STATE(208), + [sym__table_content] = STATE(67), + [sym_table_separator] = STATE(67), + [sym_table_row] = STATE(70), + [sym_footnote] = STATE(208), + [sym_footnote_marker_begin] = STATE(1180), + [sym_div] = STATE(208), + [sym__div_marker_begin] = STATE(1074), + [sym_code_block] = STATE(208), + [sym_raw_block] = STATE(208), + [sym_thematic_break] = STATE(208), + [sym_block_quote] = STATE(208), + [sym__block_quote_prefix] = STATE(226), + [sym_link_reference_definition] = STATE(208), + [sym_block_attribute] = STATE(208), + [sym__paragraph] = STATE(208), + [sym__paragraph_content] = STATE(773), + [sym__paragraph_inline_content] = STATE(775), + [sym__inline] = STATE(616), + [sym__symbol_fallback] = STATE(297), + [aux_sym__list_dash_repeat1] = STATE(357), + [aux_sym__list_plus_repeat1] = STATE(358), + [aux_sym__list_star_repeat1] = STATE(359), + [aux_sym__list_task_repeat1] = STATE(344), + [aux_sym__list_definition_repeat1] = STATE(515), + [aux_sym__list_decimal_period_repeat1] = STATE(516), + [aux_sym__list_decimal_paren_repeat1] = STATE(517), + [aux_sym__list_decimal_parens_repeat1] = STATE(518), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(519), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(520), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(521), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(522), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(523), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(524), + [aux_sym__list_lower_roman_period_repeat1] = STATE(525), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(526), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(527), + [aux_sym__list_upper_roman_period_repeat1] = STATE(528), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(529), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(530), + [aux_sym_table_repeat1] = STATE(67), + [aux_sym_div_repeat1] = STATE(14), + [aux_sym__block_quote_prefix_repeat1] = STATE(240), + [aux_sym__inline_repeat1] = STATE(297), + [anon_sym_LBRACK] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(73), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(75), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__block_close] = ACTIONS(234), - [sym__newline] = ACTIONS(236), + [sym__block_close] = ACTIONS(224), + [sym__newline] = ACTIONS(218), [sym__heading_begin] = ACTIONS(19), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(83), + [sym__code_block_begin] = ACTIONS(81), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -6729,116 +6492,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(85), - [sym__block_quote_continuation] = ACTIONS(238), - [sym__thematic_break_dash] = ACTIONS(87), - [sym__thematic_break_star] = ACTIONS(87), + [sym__block_quote_begin] = ACTIONS(83), + [sym__block_quote_continuation] = ACTIONS(220), + [sym__thematic_break_dash] = ACTIONS(85), + [sym__thematic_break_star] = ACTIONS(85), }, [14] = { - [sym__block_with_heading] = STATE(260), - [sym__block_element] = STATE(260), - [sym_heading] = STATE(260), - [sym_list] = STATE(260), - [sym__list_dash] = STATE(166), - [sym__list_item_dash] = STATE(727), - [sym__list_plus] = STATE(166), - [sym__list_item_plus] = STATE(730), - [sym__list_star] = STATE(166), - [sym__list_item_star] = STATE(759), - [sym__list_task] = STATE(166), - [sym__list_item_task] = STATE(761), - [sym_list_marker_task] = STATE(46), - [sym__list_definition] = STATE(166), - [sym__list_item_definition] = STATE(819), - [sym__list_decimal_period] = STATE(166), - [sym__list_item_decimal_period] = STATE(852), - [sym__list_decimal_paren] = STATE(166), - [sym__list_item_decimal_paren] = STATE(837), - [sym__list_decimal_parens] = STATE(166), - [sym__list_item_decimal_parens] = STATE(815), - [sym__list_lower_alpha_period] = STATE(166), - [sym__list_item_lower_alpha_period] = STATE(843), - [sym__list_lower_alpha_paren] = STATE(166), - [sym__list_item_lower_alpha_paren] = STATE(850), - [sym__list_lower_alpha_parens] = STATE(166), - [sym__list_item_lower_alpha_parens] = STATE(853), - [sym__list_upper_alpha_period] = STATE(166), - [sym__list_item_upper_alpha_period] = STATE(854), - [sym__list_upper_alpha_paren] = STATE(166), - [sym__list_item_upper_alpha_paren] = STATE(855), - [sym__list_upper_alpha_parens] = STATE(166), - [sym__list_item_upper_alpha_parens] = STATE(856), - [sym__list_lower_roman_period] = STATE(166), - [sym__list_item_lower_roman_period] = STATE(857), - [sym__list_lower_roman_paren] = STATE(166), - [sym__list_item_lower_roman_paren] = STATE(871), - [sym__list_lower_roman_parens] = STATE(166), - [sym__list_item_lower_roman_parens] = STATE(874), - [sym__list_upper_roman_period] = STATE(166), - [sym__list_item_upper_roman_period] = STATE(876), - [sym__list_upper_roman_paren] = STATE(166), - [sym__list_item_upper_roman_paren] = STATE(878), - [sym__list_upper_roman_parens] = STATE(166), - [sym__list_item_upper_roman_parens] = STATE(880), - [sym_table] = STATE(260), - [sym__table_content] = STATE(72), - [sym_table_separator] = STATE(72), - [sym_table_row] = STATE(79), - [sym_footnote] = STATE(260), - [sym_footnote_marker_begin] = STATE(1302), - [sym_div] = STATE(260), - [sym__div_marker_begin] = STATE(1165), - [sym_code_block] = STATE(260), - [sym_raw_block] = STATE(260), - [sym_thematic_break] = STATE(260), - [sym_block_quote] = STATE(260), - [sym__block_quote_prefix] = STATE(299), - [sym_link_reference_definition] = STATE(260), - [sym_block_attribute] = STATE(260), - [sym__paragraph] = STATE(260), - [sym__paragraph_content] = STATE(848), - [sym__paragraph_inline_content] = STATE(896), - [sym__inline] = STATE(715), - [sym__symbol_fallback] = STATE(381), - [aux_sym__list_dash_repeat1] = STATE(454), - [aux_sym__list_plus_repeat1] = STATE(455), - [aux_sym__list_star_repeat1] = STATE(456), - [aux_sym__list_task_repeat1] = STATE(436), - [aux_sym__list_definition_repeat1] = STATE(612), - [aux_sym__list_decimal_period_repeat1] = STATE(613), - [aux_sym__list_decimal_paren_repeat1] = STATE(614), - [aux_sym__list_decimal_parens_repeat1] = STATE(615), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(616), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(617), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(618), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(619), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(620), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(621), - [aux_sym__list_lower_roman_period_repeat1] = STATE(622), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(623), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(624), - [aux_sym__list_upper_roman_period_repeat1] = STATE(625), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(626), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(627), - [aux_sym_table_repeat1] = STATE(72), - [aux_sym_footnote_content_repeat1] = STATE(16), - [aux_sym__block_quote_prefix_repeat1] = STATE(308), - [aux_sym__inline_repeat1] = STATE(381), - [anon_sym_LBRACK] = ACTIONS(73), - [anon_sym_PIPE] = ACTIONS(75), + [sym__block_with_heading] = STATE(208), + [sym__block_element] = STATE(208), + [sym_heading] = STATE(208), + [sym_list] = STATE(208), + [sym__list_dash] = STATE(144), + [sym__list_item_dash] = STATE(636), + [sym__list_plus] = STATE(144), + [sym__list_item_plus] = STATE(637), + [sym__list_star] = STATE(144), + [sym__list_item_star] = STATE(671), + [sym__list_task] = STATE(144), + [sym__list_item_task] = STATE(691), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(144), + [sym__list_item_definition] = STATE(896), + [sym__list_decimal_period] = STATE(144), + [sym__list_item_decimal_period] = STATE(841), + [sym__list_decimal_paren] = STATE(144), + [sym__list_item_decimal_paren] = STATE(796), + [sym__list_decimal_parens] = STATE(144), + [sym__list_item_decimal_parens] = STATE(716), + [sym__list_lower_alpha_period] = STATE(144), + [sym__list_item_lower_alpha_period] = STATE(722), + [sym__list_lower_alpha_paren] = STATE(144), + [sym__list_item_lower_alpha_paren] = STATE(801), + [sym__list_lower_alpha_parens] = STATE(144), + [sym__list_item_lower_alpha_parens] = STATE(813), + [sym__list_upper_alpha_period] = STATE(144), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(144), + [sym__list_item_upper_alpha_paren] = STATE(706), + [sym__list_upper_alpha_parens] = STATE(144), + [sym__list_item_upper_alpha_parens] = STATE(707), + [sym__list_lower_roman_period] = STATE(144), + [sym__list_item_lower_roman_period] = STATE(725), + [sym__list_lower_roman_paren] = STATE(144), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(144), + [sym__list_item_lower_roman_parens] = STATE(736), + [sym__list_upper_roman_period] = STATE(144), + [sym__list_item_upper_roman_period] = STATE(742), + [sym__list_upper_roman_paren] = STATE(144), + [sym__list_item_upper_roman_paren] = STATE(743), + [sym__list_upper_roman_parens] = STATE(144), + [sym__list_item_upper_roman_parens] = STATE(762), + [sym_table] = STATE(208), + [sym__table_content] = STATE(67), + [sym_table_separator] = STATE(67), + [sym_table_row] = STATE(70), + [sym_footnote] = STATE(208), + [sym_footnote_marker_begin] = STATE(1180), + [sym_div] = STATE(208), + [sym__div_marker_begin] = STATE(1074), + [sym_code_block] = STATE(208), + [sym_raw_block] = STATE(208), + [sym_thematic_break] = STATE(208), + [sym_block_quote] = STATE(208), + [sym__block_quote_prefix] = STATE(224), + [sym_link_reference_definition] = STATE(208), + [sym_block_attribute] = STATE(208), + [sym__paragraph] = STATE(208), + [sym__paragraph_content] = STATE(773), + [sym__paragraph_inline_content] = STATE(775), + [sym__inline] = STATE(616), + [sym__symbol_fallback] = STATE(297), + [aux_sym__list_dash_repeat1] = STATE(357), + [aux_sym__list_plus_repeat1] = STATE(358), + [aux_sym__list_star_repeat1] = STATE(359), + [aux_sym__list_task_repeat1] = STATE(344), + [aux_sym__list_definition_repeat1] = STATE(515), + [aux_sym__list_decimal_period_repeat1] = STATE(516), + [aux_sym__list_decimal_paren_repeat1] = STATE(517), + [aux_sym__list_decimal_parens_repeat1] = STATE(518), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(519), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(520), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(521), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(522), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(523), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(524), + [aux_sym__list_lower_roman_period_repeat1] = STATE(525), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(526), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(527), + [aux_sym__list_upper_roman_period_repeat1] = STATE(528), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(529), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(530), + [aux_sym_table_repeat1] = STATE(67), + [aux_sym_div_repeat1] = STATE(15), + [aux_sym__block_quote_prefix_repeat1] = STATE(240), + [aux_sym__inline_repeat1] = STATE(297), + [anon_sym_LBRACK] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(73), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(75), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__block_close] = ACTIONS(240), - [sym__newline] = ACTIONS(236), + [sym__block_close] = ACTIONS(226), + [sym__newline] = ACTIONS(218), [sym__heading_begin] = ACTIONS(19), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(83), + [sym__code_block_begin] = ACTIONS(81), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -6859,116 +6622,246 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(85), - [sym__block_quote_continuation] = ACTIONS(238), - [sym__thematic_break_dash] = ACTIONS(87), - [sym__thematic_break_star] = ACTIONS(87), + [sym__block_quote_begin] = ACTIONS(83), + [sym__block_quote_continuation] = ACTIONS(220), + [sym__thematic_break_dash] = ACTIONS(85), + [sym__thematic_break_star] = ACTIONS(85), }, [15] = { - [sym__block_with_heading] = STATE(164), - [sym__block_element] = STATE(164), - [sym_heading] = STATE(164), - [sym_list] = STATE(164), - [sym__list_dash] = STATE(228), - [sym__list_item_dash] = STATE(727), - [sym__list_plus] = STATE(228), - [sym__list_item_plus] = STATE(730), - [sym__list_star] = STATE(228), - [sym__list_item_star] = STATE(759), - [sym__list_task] = STATE(228), - [sym__list_item_task] = STATE(761), - [sym_list_marker_task] = STATE(46), - [sym__list_definition] = STATE(228), - [sym__list_item_definition] = STATE(819), - [sym__list_decimal_period] = STATE(228), - [sym__list_item_decimal_period] = STATE(852), - [sym__list_decimal_paren] = STATE(228), - [sym__list_item_decimal_paren] = STATE(837), - [sym__list_decimal_parens] = STATE(228), - [sym__list_item_decimal_parens] = STATE(815), - [sym__list_lower_alpha_period] = STATE(228), - [sym__list_item_lower_alpha_period] = STATE(843), - [sym__list_lower_alpha_paren] = STATE(228), - [sym__list_item_lower_alpha_paren] = STATE(850), - [sym__list_lower_alpha_parens] = STATE(228), - [sym__list_item_lower_alpha_parens] = STATE(853), - [sym__list_upper_alpha_period] = STATE(228), - [sym__list_item_upper_alpha_period] = STATE(854), - [sym__list_upper_alpha_paren] = STATE(228), - [sym__list_item_upper_alpha_paren] = STATE(855), - [sym__list_upper_alpha_parens] = STATE(228), - [sym__list_item_upper_alpha_parens] = STATE(856), - [sym__list_lower_roman_period] = STATE(228), - [sym__list_item_lower_roman_period] = STATE(857), - [sym__list_lower_roman_paren] = STATE(228), - [sym__list_item_lower_roman_paren] = STATE(871), - [sym__list_lower_roman_parens] = STATE(228), - [sym__list_item_lower_roman_parens] = STATE(874), - [sym__list_upper_roman_period] = STATE(228), - [sym__list_item_upper_roman_period] = STATE(876), - [sym__list_upper_roman_paren] = STATE(228), - [sym__list_item_upper_roman_paren] = STATE(878), - [sym__list_upper_roman_parens] = STATE(228), - [sym__list_item_upper_roman_parens] = STATE(880), - [sym_table] = STATE(164), - [sym__table_content] = STATE(73), - [sym_table_separator] = STATE(73), - [sym_table_row] = STATE(77), - [sym_footnote] = STATE(164), - [sym_footnote_marker_begin] = STATE(1306), - [sym_footnote_content] = STATE(1043), - [sym_div] = STATE(164), - [sym__div_marker_begin] = STATE(1210), - [sym_code_block] = STATE(164), - [sym_raw_block] = STATE(164), - [sym_thematic_break] = STATE(164), - [sym_block_quote] = STATE(164), - [sym__block_quote_prefix] = STATE(301), - [sym_link_reference_definition] = STATE(164), - [sym_block_attribute] = STATE(164), - [sym__paragraph] = STATE(164), - [sym__paragraph_content] = STATE(889), - [sym__paragraph_inline_content] = STATE(896), - [sym__inline] = STATE(715), - [sym__symbol_fallback] = STATE(381), - [aux_sym__list_dash_repeat1] = STATE(445), - [aux_sym__list_plus_repeat1] = STATE(446), - [aux_sym__list_star_repeat1] = STATE(447), - [aux_sym__list_task_repeat1] = STATE(423), - [aux_sym__list_definition_repeat1] = STATE(655), - [aux_sym__list_decimal_period_repeat1] = STATE(656), - [aux_sym__list_decimal_paren_repeat1] = STATE(657), - [aux_sym__list_decimal_parens_repeat1] = STATE(658), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(659), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(660), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(661), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(662), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(663), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(664), - [aux_sym__list_lower_roman_period_repeat1] = STATE(665), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(666), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(667), - [aux_sym__list_upper_roman_period_repeat1] = STATE(668), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(669), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(670), - [aux_sym_table_repeat1] = STATE(73), - [aux_sym_footnote_content_repeat1] = STATE(17), - [aux_sym__block_quote_prefix_repeat1] = STATE(330), - [aux_sym__inline_repeat1] = STATE(381), - [anon_sym_LBRACK] = ACTIONS(216), - [anon_sym_PIPE] = ACTIONS(218), + [sym__block_with_heading] = STATE(208), + [sym__block_element] = STATE(208), + [sym_heading] = STATE(208), + [sym_list] = STATE(208), + [sym__list_dash] = STATE(144), + [sym__list_item_dash] = STATE(636), + [sym__list_plus] = STATE(144), + [sym__list_item_plus] = STATE(637), + [sym__list_star] = STATE(144), + [sym__list_item_star] = STATE(671), + [sym__list_task] = STATE(144), + [sym__list_item_task] = STATE(691), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(144), + [sym__list_item_definition] = STATE(896), + [sym__list_decimal_period] = STATE(144), + [sym__list_item_decimal_period] = STATE(841), + [sym__list_decimal_paren] = STATE(144), + [sym__list_item_decimal_paren] = STATE(796), + [sym__list_decimal_parens] = STATE(144), + [sym__list_item_decimal_parens] = STATE(716), + [sym__list_lower_alpha_period] = STATE(144), + [sym__list_item_lower_alpha_period] = STATE(722), + [sym__list_lower_alpha_paren] = STATE(144), + [sym__list_item_lower_alpha_paren] = STATE(801), + [sym__list_lower_alpha_parens] = STATE(144), + [sym__list_item_lower_alpha_parens] = STATE(813), + [sym__list_upper_alpha_period] = STATE(144), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(144), + [sym__list_item_upper_alpha_paren] = STATE(706), + [sym__list_upper_alpha_parens] = STATE(144), + [sym__list_item_upper_alpha_parens] = STATE(707), + [sym__list_lower_roman_period] = STATE(144), + [sym__list_item_lower_roman_period] = STATE(725), + [sym__list_lower_roman_paren] = STATE(144), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(144), + [sym__list_item_lower_roman_parens] = STATE(736), + [sym__list_upper_roman_period] = STATE(144), + [sym__list_item_upper_roman_period] = STATE(742), + [sym__list_upper_roman_paren] = STATE(144), + [sym__list_item_upper_roman_paren] = STATE(743), + [sym__list_upper_roman_parens] = STATE(144), + [sym__list_item_upper_roman_parens] = STATE(762), + [sym_table] = STATE(208), + [sym__table_content] = STATE(67), + [sym_table_separator] = STATE(67), + [sym_table_row] = STATE(70), + [sym_footnote] = STATE(208), + [sym_footnote_marker_begin] = STATE(1180), + [sym_div] = STATE(208), + [sym__div_marker_begin] = STATE(1074), + [sym_code_block] = STATE(208), + [sym_raw_block] = STATE(208), + [sym_thematic_break] = STATE(208), + [sym_block_quote] = STATE(208), + [sym__block_quote_prefix] = STATE(233), + [sym_link_reference_definition] = STATE(208), + [sym_block_attribute] = STATE(208), + [sym__paragraph] = STATE(208), + [sym__paragraph_content] = STATE(773), + [sym__paragraph_inline_content] = STATE(775), + [sym__inline] = STATE(616), + [sym__symbol_fallback] = STATE(297), + [aux_sym__list_dash_repeat1] = STATE(357), + [aux_sym__list_plus_repeat1] = STATE(358), + [aux_sym__list_star_repeat1] = STATE(359), + [aux_sym__list_task_repeat1] = STATE(344), + [aux_sym__list_definition_repeat1] = STATE(515), + [aux_sym__list_decimal_period_repeat1] = STATE(516), + [aux_sym__list_decimal_paren_repeat1] = STATE(517), + [aux_sym__list_decimal_parens_repeat1] = STATE(518), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(519), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(520), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(521), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(522), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(523), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(524), + [aux_sym__list_lower_roman_period_repeat1] = STATE(525), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(526), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(527), + [aux_sym__list_upper_roman_period_repeat1] = STATE(528), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(529), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(530), + [aux_sym_table_repeat1] = STATE(67), + [aux_sym_div_repeat1] = STATE(15), + [aux_sym__block_quote_prefix_repeat1] = STATE(253), + [aux_sym__inline_repeat1] = STATE(297), + [anon_sym_LBRACK] = ACTIONS(228), + [anon_sym_PIPE] = ACTIONS(231), + [anon_sym_LBRACK_CARET] = ACTIONS(234), + [anon_sym_LBRACE] = ACTIONS(237), + [anon_sym_DOT] = ACTIONS(240), + [aux_sym_identifier_token1] = ACTIONS(240), + [aux_sym__inline_token1] = ACTIONS(240), + [anon_sym_LBRACE_DASH] = ACTIONS(240), + [anon_sym_POUND] = ACTIONS(240), + [anon_sym_PERCENT] = ACTIONS(240), + [sym__block_close] = ACTIONS(243), + [sym__newline] = ACTIONS(245), + [sym__heading_begin] = ACTIONS(248), + [sym__div_begin] = ACTIONS(251), + [sym__code_block_begin] = ACTIONS(254), + [sym_list_marker_dash] = ACTIONS(257), + [sym_list_marker_star] = ACTIONS(260), + [sym_list_marker_plus] = ACTIONS(263), + [sym__list_marker_task_begin] = ACTIONS(266), + [sym_list_marker_definition] = ACTIONS(269), + [sym_list_marker_decimal_period] = ACTIONS(272), + [sym_list_marker_lower_alpha_period] = ACTIONS(275), + [sym_list_marker_upper_alpha_period] = ACTIONS(278), + [sym_list_marker_lower_roman_period] = ACTIONS(281), + [sym_list_marker_upper_roman_period] = ACTIONS(284), + [sym_list_marker_decimal_paren] = ACTIONS(287), + [sym_list_marker_lower_alpha_paren] = ACTIONS(290), + [sym_list_marker_upper_alpha_paren] = ACTIONS(293), + [sym_list_marker_lower_roman_paren] = ACTIONS(296), + [sym_list_marker_upper_roman_paren] = ACTIONS(299), + [sym_list_marker_decimal_parens] = ACTIONS(302), + [sym_list_marker_lower_alpha_parens] = ACTIONS(305), + [sym_list_marker_upper_alpha_parens] = ACTIONS(308), + [sym_list_marker_lower_roman_parens] = ACTIONS(311), + [sym_list_marker_upper_roman_parens] = ACTIONS(314), + [sym__block_quote_begin] = ACTIONS(317), + [sym__block_quote_continuation] = ACTIONS(320), + [sym__thematic_break_dash] = ACTIONS(323), + [sym__thematic_break_star] = ACTIONS(323), + }, + [16] = { + [sym__block_with_heading] = STATE(208), + [sym__block_element] = STATE(208), + [sym_heading] = STATE(208), + [sym_list] = STATE(208), + [sym__list_dash] = STATE(144), + [sym__list_item_dash] = STATE(636), + [sym__list_plus] = STATE(144), + [sym__list_item_plus] = STATE(637), + [sym__list_star] = STATE(144), + [sym__list_item_star] = STATE(671), + [sym__list_task] = STATE(144), + [sym__list_item_task] = STATE(691), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(144), + [sym__list_item_definition] = STATE(896), + [sym__list_decimal_period] = STATE(144), + [sym__list_item_decimal_period] = STATE(841), + [sym__list_decimal_paren] = STATE(144), + [sym__list_item_decimal_paren] = STATE(796), + [sym__list_decimal_parens] = STATE(144), + [sym__list_item_decimal_parens] = STATE(716), + [sym__list_lower_alpha_period] = STATE(144), + [sym__list_item_lower_alpha_period] = STATE(722), + [sym__list_lower_alpha_paren] = STATE(144), + [sym__list_item_lower_alpha_paren] = STATE(801), + [sym__list_lower_alpha_parens] = STATE(144), + [sym__list_item_lower_alpha_parens] = STATE(813), + [sym__list_upper_alpha_period] = STATE(144), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(144), + [sym__list_item_upper_alpha_paren] = STATE(706), + [sym__list_upper_alpha_parens] = STATE(144), + [sym__list_item_upper_alpha_parens] = STATE(707), + [sym__list_lower_roman_period] = STATE(144), + [sym__list_item_lower_roman_period] = STATE(725), + [sym__list_lower_roman_paren] = STATE(144), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(144), + [sym__list_item_lower_roman_parens] = STATE(736), + [sym__list_upper_roman_period] = STATE(144), + [sym__list_item_upper_roman_period] = STATE(742), + [sym__list_upper_roman_paren] = STATE(144), + [sym__list_item_upper_roman_paren] = STATE(743), + [sym__list_upper_roman_parens] = STATE(144), + [sym__list_item_upper_roman_parens] = STATE(762), + [sym_table] = STATE(208), + [sym__table_content] = STATE(67), + [sym_table_separator] = STATE(67), + [sym_table_row] = STATE(70), + [sym_footnote] = STATE(208), + [sym_footnote_marker_begin] = STATE(1180), + [sym_div] = STATE(208), + [sym__div_marker_begin] = STATE(1074), + [sym_code_block] = STATE(208), + [sym_raw_block] = STATE(208), + [sym_thematic_break] = STATE(208), + [sym_block_quote] = STATE(208), + [sym__block_quote_prefix] = STATE(219), + [sym_link_reference_definition] = STATE(208), + [sym_block_attribute] = STATE(208), + [sym__paragraph] = STATE(208), + [sym__paragraph_content] = STATE(773), + [sym__paragraph_inline_content] = STATE(775), + [sym__inline] = STATE(616), + [sym__symbol_fallback] = STATE(297), + [aux_sym__list_dash_repeat1] = STATE(357), + [aux_sym__list_plus_repeat1] = STATE(358), + [aux_sym__list_star_repeat1] = STATE(359), + [aux_sym__list_task_repeat1] = STATE(344), + [aux_sym__list_definition_repeat1] = STATE(515), + [aux_sym__list_decimal_period_repeat1] = STATE(516), + [aux_sym__list_decimal_paren_repeat1] = STATE(517), + [aux_sym__list_decimal_parens_repeat1] = STATE(518), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(519), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(520), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(521), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(522), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(523), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(524), + [aux_sym__list_lower_roman_period_repeat1] = STATE(525), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(526), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(527), + [aux_sym__list_upper_roman_period_repeat1] = STATE(528), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(529), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(530), + [aux_sym_table_repeat1] = STATE(67), + [aux_sym_div_repeat1] = STATE(17), + [aux_sym__block_quote_prefix_repeat1] = STATE(240), + [aux_sym__inline_repeat1] = STATE(297), + [anon_sym_LBRACK] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(73), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(75), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(222), - [sym__heading_begin] = ACTIONS(224), + [sym__block_close] = ACTIONS(326), + [sym__newline] = ACTIONS(218), + [sym__heading_begin] = ACTIONS(19), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(226), + [sym__code_block_begin] = ACTIONS(81), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -6989,245 +6882,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(228), - [sym__block_quote_continuation] = ACTIONS(230), - [sym__thematic_break_dash] = ACTIONS(232), - [sym__thematic_break_star] = ACTIONS(232), - }, - [16] = { - [sym__block_with_heading] = STATE(260), - [sym__block_element] = STATE(260), - [sym_heading] = STATE(260), - [sym_list] = STATE(260), - [sym__list_dash] = STATE(166), - [sym__list_item_dash] = STATE(727), - [sym__list_plus] = STATE(166), - [sym__list_item_plus] = STATE(730), - [sym__list_star] = STATE(166), - [sym__list_item_star] = STATE(759), - [sym__list_task] = STATE(166), - [sym__list_item_task] = STATE(761), - [sym_list_marker_task] = STATE(46), - [sym__list_definition] = STATE(166), - [sym__list_item_definition] = STATE(819), - [sym__list_decimal_period] = STATE(166), - [sym__list_item_decimal_period] = STATE(852), - [sym__list_decimal_paren] = STATE(166), - [sym__list_item_decimal_paren] = STATE(837), - [sym__list_decimal_parens] = STATE(166), - [sym__list_item_decimal_parens] = STATE(815), - [sym__list_lower_alpha_period] = STATE(166), - [sym__list_item_lower_alpha_period] = STATE(843), - [sym__list_lower_alpha_paren] = STATE(166), - [sym__list_item_lower_alpha_paren] = STATE(850), - [sym__list_lower_alpha_parens] = STATE(166), - [sym__list_item_lower_alpha_parens] = STATE(853), - [sym__list_upper_alpha_period] = STATE(166), - [sym__list_item_upper_alpha_period] = STATE(854), - [sym__list_upper_alpha_paren] = STATE(166), - [sym__list_item_upper_alpha_paren] = STATE(855), - [sym__list_upper_alpha_parens] = STATE(166), - [sym__list_item_upper_alpha_parens] = STATE(856), - [sym__list_lower_roman_period] = STATE(166), - [sym__list_item_lower_roman_period] = STATE(857), - [sym__list_lower_roman_paren] = STATE(166), - [sym__list_item_lower_roman_paren] = STATE(871), - [sym__list_lower_roman_parens] = STATE(166), - [sym__list_item_lower_roman_parens] = STATE(874), - [sym__list_upper_roman_period] = STATE(166), - [sym__list_item_upper_roman_period] = STATE(876), - [sym__list_upper_roman_paren] = STATE(166), - [sym__list_item_upper_roman_paren] = STATE(878), - [sym__list_upper_roman_parens] = STATE(166), - [sym__list_item_upper_roman_parens] = STATE(880), - [sym_table] = STATE(260), - [sym__table_content] = STATE(72), - [sym_table_separator] = STATE(72), - [sym_table_row] = STATE(79), - [sym_footnote] = STATE(260), - [sym_footnote_marker_begin] = STATE(1302), - [sym_div] = STATE(260), - [sym__div_marker_begin] = STATE(1165), - [sym_code_block] = STATE(260), - [sym_raw_block] = STATE(260), - [sym_thematic_break] = STATE(260), - [sym_block_quote] = STATE(260), - [sym__block_quote_prefix] = STATE(304), - [sym_link_reference_definition] = STATE(260), - [sym_block_attribute] = STATE(260), - [sym__paragraph] = STATE(260), - [sym__paragraph_content] = STATE(848), - [sym__paragraph_inline_content] = STATE(896), - [sym__inline] = STATE(715), - [sym__symbol_fallback] = STATE(381), - [aux_sym__list_dash_repeat1] = STATE(454), - [aux_sym__list_plus_repeat1] = STATE(455), - [aux_sym__list_star_repeat1] = STATE(456), - [aux_sym__list_task_repeat1] = STATE(436), - [aux_sym__list_definition_repeat1] = STATE(612), - [aux_sym__list_decimal_period_repeat1] = STATE(613), - [aux_sym__list_decimal_paren_repeat1] = STATE(614), - [aux_sym__list_decimal_parens_repeat1] = STATE(615), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(616), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(617), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(618), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(619), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(620), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(621), - [aux_sym__list_lower_roman_period_repeat1] = STATE(622), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(623), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(624), - [aux_sym__list_upper_roman_period_repeat1] = STATE(625), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(626), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(627), - [aux_sym_table_repeat1] = STATE(72), - [aux_sym_footnote_content_repeat1] = STATE(16), - [aux_sym__block_quote_prefix_repeat1] = STATE(330), - [aux_sym__inline_repeat1] = STATE(381), - [anon_sym_LBRACK] = ACTIONS(242), - [anon_sym_PIPE] = ACTIONS(245), - [anon_sym_LBRACK_CARET] = ACTIONS(248), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_DOT] = ACTIONS(254), - [aux_sym_identifier_token1] = ACTIONS(254), - [aux_sym__inline_token1] = ACTIONS(254), - [anon_sym_LBRACE_DASH] = ACTIONS(254), - [anon_sym_POUND] = ACTIONS(254), - [anon_sym_PERCENT] = ACTIONS(254), - [sym__block_close] = ACTIONS(257), - [sym__newline] = ACTIONS(259), - [sym__heading_begin] = ACTIONS(262), - [sym__div_begin] = ACTIONS(265), - [sym__code_block_begin] = ACTIONS(268), - [sym_list_marker_dash] = ACTIONS(271), - [sym_list_marker_star] = ACTIONS(274), - [sym_list_marker_plus] = ACTIONS(277), - [sym__list_marker_task_begin] = ACTIONS(280), - [sym_list_marker_definition] = ACTIONS(283), - [sym_list_marker_decimal_period] = ACTIONS(286), - [sym_list_marker_lower_alpha_period] = ACTIONS(289), - [sym_list_marker_upper_alpha_period] = ACTIONS(292), - [sym_list_marker_lower_roman_period] = ACTIONS(295), - [sym_list_marker_upper_roman_period] = ACTIONS(298), - [sym_list_marker_decimal_paren] = ACTIONS(301), - [sym_list_marker_lower_alpha_paren] = ACTIONS(304), - [sym_list_marker_upper_alpha_paren] = ACTIONS(307), - [sym_list_marker_lower_roman_paren] = ACTIONS(310), - [sym_list_marker_upper_roman_paren] = ACTIONS(313), - [sym_list_marker_decimal_parens] = ACTIONS(316), - [sym_list_marker_lower_alpha_parens] = ACTIONS(319), - [sym_list_marker_upper_alpha_parens] = ACTIONS(322), - [sym_list_marker_lower_roman_parens] = ACTIONS(325), - [sym_list_marker_upper_roman_parens] = ACTIONS(328), - [sym__block_quote_begin] = ACTIONS(331), - [sym__block_quote_continuation] = ACTIONS(334), - [sym__thematic_break_dash] = ACTIONS(337), - [sym__thematic_break_star] = ACTIONS(337), + [sym__block_quote_begin] = ACTIONS(83), + [sym__block_quote_continuation] = ACTIONS(220), + [sym__thematic_break_dash] = ACTIONS(85), + [sym__thematic_break_star] = ACTIONS(85), }, [17] = { - [sym__block_with_heading] = STATE(164), - [sym__block_element] = STATE(164), - [sym_heading] = STATE(164), - [sym_list] = STATE(164), - [sym__list_dash] = STATE(228), - [sym__list_item_dash] = STATE(727), - [sym__list_plus] = STATE(228), - [sym__list_item_plus] = STATE(730), - [sym__list_star] = STATE(228), - [sym__list_item_star] = STATE(759), - [sym__list_task] = STATE(228), - [sym__list_item_task] = STATE(761), - [sym_list_marker_task] = STATE(46), - [sym__list_definition] = STATE(228), - [sym__list_item_definition] = STATE(819), - [sym__list_decimal_period] = STATE(228), - [sym__list_item_decimal_period] = STATE(852), - [sym__list_decimal_paren] = STATE(228), - [sym__list_item_decimal_paren] = STATE(837), - [sym__list_decimal_parens] = STATE(228), - [sym__list_item_decimal_parens] = STATE(815), - [sym__list_lower_alpha_period] = STATE(228), - [sym__list_item_lower_alpha_period] = STATE(843), - [sym__list_lower_alpha_paren] = STATE(228), - [sym__list_item_lower_alpha_paren] = STATE(850), - [sym__list_lower_alpha_parens] = STATE(228), - [sym__list_item_lower_alpha_parens] = STATE(853), - [sym__list_upper_alpha_period] = STATE(228), - [sym__list_item_upper_alpha_period] = STATE(854), - [sym__list_upper_alpha_paren] = STATE(228), - [sym__list_item_upper_alpha_paren] = STATE(855), - [sym__list_upper_alpha_parens] = STATE(228), - [sym__list_item_upper_alpha_parens] = STATE(856), - [sym__list_lower_roman_period] = STATE(228), - [sym__list_item_lower_roman_period] = STATE(857), - [sym__list_lower_roman_paren] = STATE(228), - [sym__list_item_lower_roman_paren] = STATE(871), - [sym__list_lower_roman_parens] = STATE(228), - [sym__list_item_lower_roman_parens] = STATE(874), - [sym__list_upper_roman_period] = STATE(228), - [sym__list_item_upper_roman_period] = STATE(876), - [sym__list_upper_roman_paren] = STATE(228), - [sym__list_item_upper_roman_paren] = STATE(878), - [sym__list_upper_roman_parens] = STATE(228), - [sym__list_item_upper_roman_parens] = STATE(880), - [sym_table] = STATE(164), - [sym__table_content] = STATE(73), - [sym_table_separator] = STATE(73), - [sym_table_row] = STATE(77), - [sym_footnote] = STATE(164), - [sym_footnote_marker_begin] = STATE(1306), - [sym_div] = STATE(164), - [sym__div_marker_begin] = STATE(1210), - [sym_code_block] = STATE(164), - [sym_raw_block] = STATE(164), - [sym_thematic_break] = STATE(164), - [sym_block_quote] = STATE(164), - [sym__block_quote_prefix] = STATE(301), - [sym_link_reference_definition] = STATE(164), - [sym_block_attribute] = STATE(164), - [sym__paragraph] = STATE(164), - [sym__paragraph_content] = STATE(889), - [sym__paragraph_inline_content] = STATE(896), - [sym__inline] = STATE(715), - [sym__symbol_fallback] = STATE(381), - [aux_sym__list_dash_repeat1] = STATE(445), - [aux_sym__list_plus_repeat1] = STATE(446), - [aux_sym__list_star_repeat1] = STATE(447), - [aux_sym__list_task_repeat1] = STATE(423), - [aux_sym__list_definition_repeat1] = STATE(655), - [aux_sym__list_decimal_period_repeat1] = STATE(656), - [aux_sym__list_decimal_paren_repeat1] = STATE(657), - [aux_sym__list_decimal_parens_repeat1] = STATE(658), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(659), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(660), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(661), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(662), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(663), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(664), - [aux_sym__list_lower_roman_period_repeat1] = STATE(665), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(666), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(667), - [aux_sym__list_upper_roman_period_repeat1] = STATE(668), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(669), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(670), - [aux_sym_table_repeat1] = STATE(73), - [aux_sym_footnote_content_repeat1] = STATE(18), - [aux_sym__block_quote_prefix_repeat1] = STATE(330), - [aux_sym__inline_repeat1] = STATE(381), - [anon_sym_LBRACK] = ACTIONS(216), - [anon_sym_PIPE] = ACTIONS(218), + [sym__block_with_heading] = STATE(208), + [sym__block_element] = STATE(208), + [sym_heading] = STATE(208), + [sym_list] = STATE(208), + [sym__list_dash] = STATE(144), + [sym__list_item_dash] = STATE(636), + [sym__list_plus] = STATE(144), + [sym__list_item_plus] = STATE(637), + [sym__list_star] = STATE(144), + [sym__list_item_star] = STATE(671), + [sym__list_task] = STATE(144), + [sym__list_item_task] = STATE(691), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(144), + [sym__list_item_definition] = STATE(896), + [sym__list_decimal_period] = STATE(144), + [sym__list_item_decimal_period] = STATE(841), + [sym__list_decimal_paren] = STATE(144), + [sym__list_item_decimal_paren] = STATE(796), + [sym__list_decimal_parens] = STATE(144), + [sym__list_item_decimal_parens] = STATE(716), + [sym__list_lower_alpha_period] = STATE(144), + [sym__list_item_lower_alpha_period] = STATE(722), + [sym__list_lower_alpha_paren] = STATE(144), + [sym__list_item_lower_alpha_paren] = STATE(801), + [sym__list_lower_alpha_parens] = STATE(144), + [sym__list_item_lower_alpha_parens] = STATE(813), + [sym__list_upper_alpha_period] = STATE(144), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(144), + [sym__list_item_upper_alpha_paren] = STATE(706), + [sym__list_upper_alpha_parens] = STATE(144), + [sym__list_item_upper_alpha_parens] = STATE(707), + [sym__list_lower_roman_period] = STATE(144), + [sym__list_item_lower_roman_period] = STATE(725), + [sym__list_lower_roman_paren] = STATE(144), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(144), + [sym__list_item_lower_roman_parens] = STATE(736), + [sym__list_upper_roman_period] = STATE(144), + [sym__list_item_upper_roman_period] = STATE(742), + [sym__list_upper_roman_paren] = STATE(144), + [sym__list_item_upper_roman_paren] = STATE(743), + [sym__list_upper_roman_parens] = STATE(144), + [sym__list_item_upper_roman_parens] = STATE(762), + [sym_table] = STATE(208), + [sym__table_content] = STATE(67), + [sym_table_separator] = STATE(67), + [sym_table_row] = STATE(70), + [sym_footnote] = STATE(208), + [sym_footnote_marker_begin] = STATE(1180), + [sym_div] = STATE(208), + [sym__div_marker_begin] = STATE(1074), + [sym_code_block] = STATE(208), + [sym_raw_block] = STATE(208), + [sym_thematic_break] = STATE(208), + [sym_block_quote] = STATE(208), + [sym__block_quote_prefix] = STATE(218), + [sym_link_reference_definition] = STATE(208), + [sym_block_attribute] = STATE(208), + [sym__paragraph] = STATE(208), + [sym__paragraph_content] = STATE(773), + [sym__paragraph_inline_content] = STATE(775), + [sym__inline] = STATE(616), + [sym__symbol_fallback] = STATE(297), + [aux_sym__list_dash_repeat1] = STATE(357), + [aux_sym__list_plus_repeat1] = STATE(358), + [aux_sym__list_star_repeat1] = STATE(359), + [aux_sym__list_task_repeat1] = STATE(344), + [aux_sym__list_definition_repeat1] = STATE(515), + [aux_sym__list_decimal_period_repeat1] = STATE(516), + [aux_sym__list_decimal_paren_repeat1] = STATE(517), + [aux_sym__list_decimal_parens_repeat1] = STATE(518), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(519), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(520), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(521), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(522), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(523), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(524), + [aux_sym__list_lower_roman_period_repeat1] = STATE(525), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(526), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(527), + [aux_sym__list_upper_roman_period_repeat1] = STATE(528), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(529), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(530), + [aux_sym_table_repeat1] = STATE(67), + [aux_sym_div_repeat1] = STATE(15), + [aux_sym__block_quote_prefix_repeat1] = STATE(240), + [aux_sym__inline_repeat1] = STATE(297), + [anon_sym_LBRACK] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(73), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(75), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(222), - [sym__heading_begin] = ACTIONS(224), + [sym__block_close] = ACTIONS(328), + [sym__newline] = ACTIONS(218), + [sym__heading_begin] = ACTIONS(19), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(226), + [sym__code_block_begin] = ACTIONS(81), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -7248,247 +7012,246 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(228), - [sym__block_quote_continuation] = ACTIONS(230), - [sym__thematic_break_dash] = ACTIONS(232), - [sym__thematic_break_star] = ACTIONS(232), - [sym__footnote_end] = ACTIONS(340), + [sym__block_quote_begin] = ACTIONS(83), + [sym__block_quote_continuation] = ACTIONS(220), + [sym__thematic_break_dash] = ACTIONS(85), + [sym__thematic_break_star] = ACTIONS(85), }, [18] = { - [sym__block_with_heading] = STATE(164), - [sym__block_element] = STATE(164), - [sym_heading] = STATE(164), - [sym_list] = STATE(164), - [sym__list_dash] = STATE(228), - [sym__list_item_dash] = STATE(727), - [sym__list_plus] = STATE(228), - [sym__list_item_plus] = STATE(730), - [sym__list_star] = STATE(228), - [sym__list_item_star] = STATE(759), - [sym__list_task] = STATE(228), - [sym__list_item_task] = STATE(761), - [sym_list_marker_task] = STATE(46), - [sym__list_definition] = STATE(228), - [sym__list_item_definition] = STATE(819), - [sym__list_decimal_period] = STATE(228), - [sym__list_item_decimal_period] = STATE(852), - [sym__list_decimal_paren] = STATE(228), - [sym__list_item_decimal_paren] = STATE(837), - [sym__list_decimal_parens] = STATE(228), - [sym__list_item_decimal_parens] = STATE(815), - [sym__list_lower_alpha_period] = STATE(228), - [sym__list_item_lower_alpha_period] = STATE(843), - [sym__list_lower_alpha_paren] = STATE(228), - [sym__list_item_lower_alpha_paren] = STATE(850), - [sym__list_lower_alpha_parens] = STATE(228), - [sym__list_item_lower_alpha_parens] = STATE(853), - [sym__list_upper_alpha_period] = STATE(228), - [sym__list_item_upper_alpha_period] = STATE(854), - [sym__list_upper_alpha_paren] = STATE(228), - [sym__list_item_upper_alpha_paren] = STATE(855), - [sym__list_upper_alpha_parens] = STATE(228), - [sym__list_item_upper_alpha_parens] = STATE(856), - [sym__list_lower_roman_period] = STATE(228), - [sym__list_item_lower_roman_period] = STATE(857), - [sym__list_lower_roman_paren] = STATE(228), - [sym__list_item_lower_roman_paren] = STATE(871), - [sym__list_lower_roman_parens] = STATE(228), - [sym__list_item_lower_roman_parens] = STATE(874), - [sym__list_upper_roman_period] = STATE(228), - [sym__list_item_upper_roman_period] = STATE(876), - [sym__list_upper_roman_paren] = STATE(228), - [sym__list_item_upper_roman_paren] = STATE(878), - [sym__list_upper_roman_parens] = STATE(228), - [sym__list_item_upper_roman_parens] = STATE(880), - [sym_table] = STATE(164), - [sym__table_content] = STATE(73), - [sym_table_separator] = STATE(73), - [sym_table_row] = STATE(77), - [sym_footnote] = STATE(164), - [sym_footnote_marker_begin] = STATE(1306), - [sym_div] = STATE(164), - [sym__div_marker_begin] = STATE(1210), - [sym_code_block] = STATE(164), - [sym_raw_block] = STATE(164), - [sym_thematic_break] = STATE(164), - [sym_block_quote] = STATE(164), - [sym__block_quote_prefix] = STATE(301), - [sym_link_reference_definition] = STATE(164), - [sym_block_attribute] = STATE(164), - [sym__paragraph] = STATE(164), - [sym__paragraph_content] = STATE(889), - [sym__paragraph_inline_content] = STATE(896), - [sym__inline] = STATE(715), - [sym__symbol_fallback] = STATE(381), - [aux_sym__list_dash_repeat1] = STATE(445), - [aux_sym__list_plus_repeat1] = STATE(446), - [aux_sym__list_star_repeat1] = STATE(447), - [aux_sym__list_task_repeat1] = STATE(423), - [aux_sym__list_definition_repeat1] = STATE(655), - [aux_sym__list_decimal_period_repeat1] = STATE(656), - [aux_sym__list_decimal_paren_repeat1] = STATE(657), - [aux_sym__list_decimal_parens_repeat1] = STATE(658), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(659), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(660), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(661), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(662), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(663), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(664), - [aux_sym__list_lower_roman_period_repeat1] = STATE(665), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(666), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(667), - [aux_sym__list_upper_roman_period_repeat1] = STATE(668), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(669), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(670), - [aux_sym_table_repeat1] = STATE(73), - [aux_sym_footnote_content_repeat1] = STATE(18), - [aux_sym__block_quote_prefix_repeat1] = STATE(330), - [aux_sym__inline_repeat1] = STATE(381), - [anon_sym_LBRACK] = ACTIONS(342), - [anon_sym_PIPE] = ACTIONS(345), - [anon_sym_LBRACK_CARET] = ACTIONS(248), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_DOT] = ACTIONS(254), - [aux_sym_identifier_token1] = ACTIONS(254), - [aux_sym__inline_token1] = ACTIONS(254), - [anon_sym_LBRACE_DASH] = ACTIONS(254), - [anon_sym_POUND] = ACTIONS(254), - [anon_sym_PERCENT] = ACTIONS(254), - [sym__newline] = ACTIONS(351), - [sym__heading_begin] = ACTIONS(354), - [sym__div_begin] = ACTIONS(265), - [sym__code_block_begin] = ACTIONS(357), - [sym_list_marker_dash] = ACTIONS(271), - [sym_list_marker_star] = ACTIONS(274), - [sym_list_marker_plus] = ACTIONS(277), - [sym__list_marker_task_begin] = ACTIONS(280), - [sym_list_marker_definition] = ACTIONS(283), - [sym_list_marker_decimal_period] = ACTIONS(286), - [sym_list_marker_lower_alpha_period] = ACTIONS(289), - [sym_list_marker_upper_alpha_period] = ACTIONS(292), - [sym_list_marker_lower_roman_period] = ACTIONS(295), - [sym_list_marker_upper_roman_period] = ACTIONS(298), - [sym_list_marker_decimal_paren] = ACTIONS(301), - [sym_list_marker_lower_alpha_paren] = ACTIONS(304), - [sym_list_marker_upper_alpha_paren] = ACTIONS(307), - [sym_list_marker_lower_roman_paren] = ACTIONS(310), - [sym_list_marker_upper_roman_paren] = ACTIONS(313), - [sym_list_marker_decimal_parens] = ACTIONS(316), - [sym_list_marker_lower_alpha_parens] = ACTIONS(319), - [sym_list_marker_upper_alpha_parens] = ACTIONS(322), - [sym_list_marker_lower_roman_parens] = ACTIONS(325), - [sym_list_marker_upper_roman_parens] = ACTIONS(328), - [sym__block_quote_begin] = ACTIONS(360), - [sym__block_quote_continuation] = ACTIONS(363), - [sym__thematic_break_dash] = ACTIONS(366), - [sym__thematic_break_star] = ACTIONS(366), - [sym__footnote_end] = ACTIONS(257), + [sym__block_with_heading] = STATE(208), + [sym__block_element] = STATE(208), + [sym_heading] = STATE(208), + [sym_list] = STATE(208), + [sym__list_dash] = STATE(144), + [sym__list_item_dash] = STATE(636), + [sym__list_plus] = STATE(144), + [sym__list_item_plus] = STATE(637), + [sym__list_star] = STATE(144), + [sym__list_item_star] = STATE(671), + [sym__list_task] = STATE(144), + [sym__list_item_task] = STATE(691), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(144), + [sym__list_item_definition] = STATE(896), + [sym__list_decimal_period] = STATE(144), + [sym__list_item_decimal_period] = STATE(841), + [sym__list_decimal_paren] = STATE(144), + [sym__list_item_decimal_paren] = STATE(796), + [sym__list_decimal_parens] = STATE(144), + [sym__list_item_decimal_parens] = STATE(716), + [sym__list_lower_alpha_period] = STATE(144), + [sym__list_item_lower_alpha_period] = STATE(722), + [sym__list_lower_alpha_paren] = STATE(144), + [sym__list_item_lower_alpha_paren] = STATE(801), + [sym__list_lower_alpha_parens] = STATE(144), + [sym__list_item_lower_alpha_parens] = STATE(813), + [sym__list_upper_alpha_period] = STATE(144), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(144), + [sym__list_item_upper_alpha_paren] = STATE(706), + [sym__list_upper_alpha_parens] = STATE(144), + [sym__list_item_upper_alpha_parens] = STATE(707), + [sym__list_lower_roman_period] = STATE(144), + [sym__list_item_lower_roman_period] = STATE(725), + [sym__list_lower_roman_paren] = STATE(144), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(144), + [sym__list_item_lower_roman_parens] = STATE(736), + [sym__list_upper_roman_period] = STATE(144), + [sym__list_item_upper_roman_period] = STATE(742), + [sym__list_upper_roman_paren] = STATE(144), + [sym__list_item_upper_roman_paren] = STATE(743), + [sym__list_upper_roman_parens] = STATE(144), + [sym__list_item_upper_roman_parens] = STATE(762), + [sym_table] = STATE(208), + [sym__table_content] = STATE(67), + [sym_table_separator] = STATE(67), + [sym_table_row] = STATE(70), + [sym_footnote] = STATE(208), + [sym_footnote_marker_begin] = STATE(1180), + [sym_div] = STATE(208), + [sym__div_marker_begin] = STATE(1074), + [sym_code_block] = STATE(208), + [sym_raw_block] = STATE(208), + [sym_thematic_break] = STATE(208), + [sym_block_quote] = STATE(208), + [sym__block_quote_prefix] = STATE(220), + [sym_link_reference_definition] = STATE(208), + [sym_block_attribute] = STATE(208), + [sym__paragraph] = STATE(208), + [sym__paragraph_content] = STATE(773), + [sym__paragraph_inline_content] = STATE(775), + [sym__inline] = STATE(616), + [sym__symbol_fallback] = STATE(297), + [aux_sym__list_dash_repeat1] = STATE(357), + [aux_sym__list_plus_repeat1] = STATE(358), + [aux_sym__list_star_repeat1] = STATE(359), + [aux_sym__list_task_repeat1] = STATE(344), + [aux_sym__list_definition_repeat1] = STATE(515), + [aux_sym__list_decimal_period_repeat1] = STATE(516), + [aux_sym__list_decimal_paren_repeat1] = STATE(517), + [aux_sym__list_decimal_parens_repeat1] = STATE(518), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(519), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(520), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(521), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(522), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(523), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(524), + [aux_sym__list_lower_roman_period_repeat1] = STATE(525), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(526), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(527), + [aux_sym__list_upper_roman_period_repeat1] = STATE(528), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(529), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(530), + [aux_sym_table_repeat1] = STATE(67), + [aux_sym_div_repeat1] = STATE(11), + [aux_sym__block_quote_prefix_repeat1] = STATE(240), + [aux_sym__inline_repeat1] = STATE(297), + [anon_sym_LBRACK] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(73), + [anon_sym_LBRACK_CARET] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DOT] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(13), + [aux_sym__inline_token1] = ACTIONS(13), + [anon_sym_LBRACE_DASH] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(13), + [anon_sym_PERCENT] = ACTIONS(13), + [sym__block_close] = ACTIONS(330), + [sym__newline] = ACTIONS(218), + [sym__heading_begin] = ACTIONS(19), + [sym__div_begin] = ACTIONS(21), + [sym__code_block_begin] = ACTIONS(81), + [sym_list_marker_dash] = ACTIONS(25), + [sym_list_marker_star] = ACTIONS(27), + [sym_list_marker_plus] = ACTIONS(29), + [sym__list_marker_task_begin] = ACTIONS(31), + [sym_list_marker_definition] = ACTIONS(33), + [sym_list_marker_decimal_period] = ACTIONS(35), + [sym_list_marker_lower_alpha_period] = ACTIONS(37), + [sym_list_marker_upper_alpha_period] = ACTIONS(39), + [sym_list_marker_lower_roman_period] = ACTIONS(41), + [sym_list_marker_upper_roman_period] = ACTIONS(43), + [sym_list_marker_decimal_paren] = ACTIONS(45), + [sym_list_marker_lower_alpha_paren] = ACTIONS(47), + [sym_list_marker_upper_alpha_paren] = ACTIONS(49), + [sym_list_marker_lower_roman_paren] = ACTIONS(51), + [sym_list_marker_upper_roman_paren] = ACTIONS(53), + [sym_list_marker_decimal_parens] = ACTIONS(55), + [sym_list_marker_lower_alpha_parens] = ACTIONS(57), + [sym_list_marker_upper_alpha_parens] = ACTIONS(59), + [sym_list_marker_lower_roman_parens] = ACTIONS(61), + [sym_list_marker_upper_roman_parens] = ACTIONS(63), + [sym__block_quote_begin] = ACTIONS(83), + [sym__block_quote_continuation] = ACTIONS(220), + [sym__thematic_break_dash] = ACTIONS(85), + [sym__thematic_break_star] = ACTIONS(85), }, [19] = { - [sym__block_with_heading] = STATE(260), - [sym__block_element] = STATE(260), - [sym_heading] = STATE(260), - [sym_list] = STATE(260), - [sym__list_dash] = STATE(166), - [sym__list_item_dash] = STATE(727), - [sym__list_plus] = STATE(166), - [sym__list_item_plus] = STATE(730), - [sym__list_star] = STATE(166), - [sym__list_item_star] = STATE(759), - [sym__list_task] = STATE(166), - [sym__list_item_task] = STATE(761), - [sym_list_marker_task] = STATE(46), - [sym__list_definition] = STATE(166), - [sym__list_item_definition] = STATE(819), - [sym__list_decimal_period] = STATE(166), - [sym__list_item_decimal_period] = STATE(852), - [sym__list_decimal_paren] = STATE(166), - [sym__list_item_decimal_paren] = STATE(837), - [sym__list_decimal_parens] = STATE(166), - [sym__list_item_decimal_parens] = STATE(815), - [sym__list_lower_alpha_period] = STATE(166), - [sym__list_item_lower_alpha_period] = STATE(843), - [sym__list_lower_alpha_paren] = STATE(166), - [sym__list_item_lower_alpha_paren] = STATE(850), - [sym__list_lower_alpha_parens] = STATE(166), - [sym__list_item_lower_alpha_parens] = STATE(853), - [sym__list_upper_alpha_period] = STATE(166), - [sym__list_item_upper_alpha_period] = STATE(854), - [sym__list_upper_alpha_paren] = STATE(166), - [sym__list_item_upper_alpha_paren] = STATE(855), - [sym__list_upper_alpha_parens] = STATE(166), - [sym__list_item_upper_alpha_parens] = STATE(856), - [sym__list_lower_roman_period] = STATE(166), - [sym__list_item_lower_roman_period] = STATE(857), - [sym__list_lower_roman_paren] = STATE(166), - [sym__list_item_lower_roman_paren] = STATE(871), - [sym__list_lower_roman_parens] = STATE(166), - [sym__list_item_lower_roman_parens] = STATE(874), - [sym__list_upper_roman_period] = STATE(166), - [sym__list_item_upper_roman_period] = STATE(876), - [sym__list_upper_roman_paren] = STATE(166), - [sym__list_item_upper_roman_paren] = STATE(878), - [sym__list_upper_roman_parens] = STATE(166), - [sym__list_item_upper_roman_parens] = STATE(880), - [sym_table] = STATE(260), - [sym__table_content] = STATE(72), - [sym_table_separator] = STATE(72), - [sym_table_row] = STATE(79), - [sym_footnote] = STATE(260), - [sym_footnote_marker_begin] = STATE(1302), - [sym_div] = STATE(260), - [sym__div_marker_begin] = STATE(1165), - [sym_code_block] = STATE(260), - [sym_raw_block] = STATE(260), - [sym_thematic_break] = STATE(260), - [sym_block_quote] = STATE(260), - [sym__block_quote_prefix] = STATE(289), - [sym_link_reference_definition] = STATE(260), - [sym_block_attribute] = STATE(260), - [sym__paragraph] = STATE(260), - [sym__paragraph_content] = STATE(848), - [sym__paragraph_inline_content] = STATE(896), - [sym__inline] = STATE(715), - [sym__symbol_fallback] = STATE(381), - [aux_sym__list_dash_repeat1] = STATE(454), - [aux_sym__list_plus_repeat1] = STATE(455), - [aux_sym__list_star_repeat1] = STATE(456), - [aux_sym__list_task_repeat1] = STATE(436), - [aux_sym__list_definition_repeat1] = STATE(612), - [aux_sym__list_decimal_period_repeat1] = STATE(613), - [aux_sym__list_decimal_paren_repeat1] = STATE(614), - [aux_sym__list_decimal_parens_repeat1] = STATE(615), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(616), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(617), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(618), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(619), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(620), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(621), - [aux_sym__list_lower_roman_period_repeat1] = STATE(622), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(623), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(624), - [aux_sym__list_upper_roman_period_repeat1] = STATE(625), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(626), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(627), - [aux_sym_table_repeat1] = STATE(72), - [aux_sym_footnote_content_repeat1] = STATE(20), - [aux_sym__block_quote_prefix_repeat1] = STATE(308), - [aux_sym__inline_repeat1] = STATE(381), - [anon_sym_LBRACK] = ACTIONS(73), - [anon_sym_PIPE] = ACTIONS(75), + [sym__block_with_heading] = STATE(208), + [sym__block_element] = STATE(208), + [sym_heading] = STATE(208), + [sym_list] = STATE(208), + [sym__list_dash] = STATE(144), + [sym__list_item_dash] = STATE(636), + [sym__list_plus] = STATE(144), + [sym__list_item_plus] = STATE(637), + [sym__list_star] = STATE(144), + [sym__list_item_star] = STATE(671), + [sym__list_task] = STATE(144), + [sym__list_item_task] = STATE(691), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(144), + [sym__list_item_definition] = STATE(896), + [sym__list_decimal_period] = STATE(144), + [sym__list_item_decimal_period] = STATE(841), + [sym__list_decimal_paren] = STATE(144), + [sym__list_item_decimal_paren] = STATE(796), + [sym__list_decimal_parens] = STATE(144), + [sym__list_item_decimal_parens] = STATE(716), + [sym__list_lower_alpha_period] = STATE(144), + [sym__list_item_lower_alpha_period] = STATE(722), + [sym__list_lower_alpha_paren] = STATE(144), + [sym__list_item_lower_alpha_paren] = STATE(801), + [sym__list_lower_alpha_parens] = STATE(144), + [sym__list_item_lower_alpha_parens] = STATE(813), + [sym__list_upper_alpha_period] = STATE(144), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(144), + [sym__list_item_upper_alpha_paren] = STATE(706), + [sym__list_upper_alpha_parens] = STATE(144), + [sym__list_item_upper_alpha_parens] = STATE(707), + [sym__list_lower_roman_period] = STATE(144), + [sym__list_item_lower_roman_period] = STATE(725), + [sym__list_lower_roman_paren] = STATE(144), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(144), + [sym__list_item_lower_roman_parens] = STATE(736), + [sym__list_upper_roman_period] = STATE(144), + [sym__list_item_upper_roman_period] = STATE(742), + [sym__list_upper_roman_paren] = STATE(144), + [sym__list_item_upper_roman_paren] = STATE(743), + [sym__list_upper_roman_parens] = STATE(144), + [sym__list_item_upper_roman_parens] = STATE(762), + [sym_table] = STATE(208), + [sym__table_content] = STATE(67), + [sym_table_separator] = STATE(67), + [sym_table_row] = STATE(70), + [sym_footnote] = STATE(208), + [sym_footnote_marker_begin] = STATE(1180), + [sym_div] = STATE(208), + [sym__div_marker_begin] = STATE(1074), + [sym_code_block] = STATE(208), + [sym_raw_block] = STATE(208), + [sym_thematic_break] = STATE(208), + [sym_block_quote] = STATE(208), + [sym__block_quote_prefix] = STATE(222), + [sym_link_reference_definition] = STATE(208), + [sym_block_attribute] = STATE(208), + [sym__paragraph] = STATE(208), + [sym__paragraph_content] = STATE(773), + [sym__paragraph_inline_content] = STATE(775), + [sym__inline] = STATE(616), + [sym__symbol_fallback] = STATE(297), + [aux_sym__list_dash_repeat1] = STATE(357), + [aux_sym__list_plus_repeat1] = STATE(358), + [aux_sym__list_star_repeat1] = STATE(359), + [aux_sym__list_task_repeat1] = STATE(344), + [aux_sym__list_definition_repeat1] = STATE(515), + [aux_sym__list_decimal_period_repeat1] = STATE(516), + [aux_sym__list_decimal_paren_repeat1] = STATE(517), + [aux_sym__list_decimal_parens_repeat1] = STATE(518), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(519), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(520), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(521), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(522), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(523), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(524), + [aux_sym__list_lower_roman_period_repeat1] = STATE(525), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(526), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(527), + [aux_sym__list_upper_roman_period_repeat1] = STATE(528), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(529), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(530), + [aux_sym_table_repeat1] = STATE(67), + [aux_sym_div_repeat1] = STATE(20), + [aux_sym__block_quote_prefix_repeat1] = STATE(240), + [aux_sym__inline_repeat1] = STATE(297), + [anon_sym_LBRACK] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(73), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(75), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__block_close] = ACTIONS(369), - [sym__newline] = ACTIONS(236), + [sym__block_close] = ACTIONS(332), + [sym__newline] = ACTIONS(218), [sym__heading_begin] = ACTIONS(19), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(83), + [sym__code_block_begin] = ACTIONS(81), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -7509,116 +7272,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(85), - [sym__block_quote_continuation] = ACTIONS(238), - [sym__thematic_break_dash] = ACTIONS(87), - [sym__thematic_break_star] = ACTIONS(87), + [sym__block_quote_begin] = ACTIONS(83), + [sym__block_quote_continuation] = ACTIONS(220), + [sym__thematic_break_dash] = ACTIONS(85), + [sym__thematic_break_star] = ACTIONS(85), }, [20] = { - [sym__block_with_heading] = STATE(260), - [sym__block_element] = STATE(260), - [sym_heading] = STATE(260), - [sym_list] = STATE(260), - [sym__list_dash] = STATE(166), - [sym__list_item_dash] = STATE(727), - [sym__list_plus] = STATE(166), - [sym__list_item_plus] = STATE(730), - [sym__list_star] = STATE(166), - [sym__list_item_star] = STATE(759), - [sym__list_task] = STATE(166), - [sym__list_item_task] = STATE(761), - [sym_list_marker_task] = STATE(46), - [sym__list_definition] = STATE(166), - [sym__list_item_definition] = STATE(819), - [sym__list_decimal_period] = STATE(166), - [sym__list_item_decimal_period] = STATE(852), - [sym__list_decimal_paren] = STATE(166), - [sym__list_item_decimal_paren] = STATE(837), - [sym__list_decimal_parens] = STATE(166), - [sym__list_item_decimal_parens] = STATE(815), - [sym__list_lower_alpha_period] = STATE(166), - [sym__list_item_lower_alpha_period] = STATE(843), - [sym__list_lower_alpha_paren] = STATE(166), - [sym__list_item_lower_alpha_paren] = STATE(850), - [sym__list_lower_alpha_parens] = STATE(166), - [sym__list_item_lower_alpha_parens] = STATE(853), - [sym__list_upper_alpha_period] = STATE(166), - [sym__list_item_upper_alpha_period] = STATE(854), - [sym__list_upper_alpha_paren] = STATE(166), - [sym__list_item_upper_alpha_paren] = STATE(855), - [sym__list_upper_alpha_parens] = STATE(166), - [sym__list_item_upper_alpha_parens] = STATE(856), - [sym__list_lower_roman_period] = STATE(166), - [sym__list_item_lower_roman_period] = STATE(857), - [sym__list_lower_roman_paren] = STATE(166), - [sym__list_item_lower_roman_paren] = STATE(871), - [sym__list_lower_roman_parens] = STATE(166), - [sym__list_item_lower_roman_parens] = STATE(874), - [sym__list_upper_roman_period] = STATE(166), - [sym__list_item_upper_roman_period] = STATE(876), - [sym__list_upper_roman_paren] = STATE(166), - [sym__list_item_upper_roman_paren] = STATE(878), - [sym__list_upper_roman_parens] = STATE(166), - [sym__list_item_upper_roman_parens] = STATE(880), - [sym_table] = STATE(260), - [sym__table_content] = STATE(72), - [sym_table_separator] = STATE(72), - [sym_table_row] = STATE(79), - [sym_footnote] = STATE(260), - [sym_footnote_marker_begin] = STATE(1302), - [sym_div] = STATE(260), - [sym__div_marker_begin] = STATE(1165), - [sym_code_block] = STATE(260), - [sym_raw_block] = STATE(260), - [sym_thematic_break] = STATE(260), - [sym_block_quote] = STATE(260), - [sym__block_quote_prefix] = STATE(290), - [sym_link_reference_definition] = STATE(260), - [sym_block_attribute] = STATE(260), - [sym__paragraph] = STATE(260), - [sym__paragraph_content] = STATE(848), - [sym__paragraph_inline_content] = STATE(896), - [sym__inline] = STATE(715), - [sym__symbol_fallback] = STATE(381), - [aux_sym__list_dash_repeat1] = STATE(454), - [aux_sym__list_plus_repeat1] = STATE(455), - [aux_sym__list_star_repeat1] = STATE(456), - [aux_sym__list_task_repeat1] = STATE(436), - [aux_sym__list_definition_repeat1] = STATE(612), - [aux_sym__list_decimal_period_repeat1] = STATE(613), - [aux_sym__list_decimal_paren_repeat1] = STATE(614), - [aux_sym__list_decimal_parens_repeat1] = STATE(615), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(616), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(617), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(618), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(619), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(620), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(621), - [aux_sym__list_lower_roman_period_repeat1] = STATE(622), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(623), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(624), - [aux_sym__list_upper_roman_period_repeat1] = STATE(625), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(626), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(627), - [aux_sym_table_repeat1] = STATE(72), - [aux_sym_footnote_content_repeat1] = STATE(16), - [aux_sym__block_quote_prefix_repeat1] = STATE(308), - [aux_sym__inline_repeat1] = STATE(381), - [anon_sym_LBRACK] = ACTIONS(73), - [anon_sym_PIPE] = ACTIONS(75), + [sym__block_with_heading] = STATE(208), + [sym__block_element] = STATE(208), + [sym_heading] = STATE(208), + [sym_list] = STATE(208), + [sym__list_dash] = STATE(144), + [sym__list_item_dash] = STATE(636), + [sym__list_plus] = STATE(144), + [sym__list_item_plus] = STATE(637), + [sym__list_star] = STATE(144), + [sym__list_item_star] = STATE(671), + [sym__list_task] = STATE(144), + [sym__list_item_task] = STATE(691), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(144), + [sym__list_item_definition] = STATE(896), + [sym__list_decimal_period] = STATE(144), + [sym__list_item_decimal_period] = STATE(841), + [sym__list_decimal_paren] = STATE(144), + [sym__list_item_decimal_paren] = STATE(796), + [sym__list_decimal_parens] = STATE(144), + [sym__list_item_decimal_parens] = STATE(716), + [sym__list_lower_alpha_period] = STATE(144), + [sym__list_item_lower_alpha_period] = STATE(722), + [sym__list_lower_alpha_paren] = STATE(144), + [sym__list_item_lower_alpha_paren] = STATE(801), + [sym__list_lower_alpha_parens] = STATE(144), + [sym__list_item_lower_alpha_parens] = STATE(813), + [sym__list_upper_alpha_period] = STATE(144), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(144), + [sym__list_item_upper_alpha_paren] = STATE(706), + [sym__list_upper_alpha_parens] = STATE(144), + [sym__list_item_upper_alpha_parens] = STATE(707), + [sym__list_lower_roman_period] = STATE(144), + [sym__list_item_lower_roman_period] = STATE(725), + [sym__list_lower_roman_paren] = STATE(144), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(144), + [sym__list_item_lower_roman_parens] = STATE(736), + [sym__list_upper_roman_period] = STATE(144), + [sym__list_item_upper_roman_period] = STATE(742), + [sym__list_upper_roman_paren] = STATE(144), + [sym__list_item_upper_roman_paren] = STATE(743), + [sym__list_upper_roman_parens] = STATE(144), + [sym__list_item_upper_roman_parens] = STATE(762), + [sym_table] = STATE(208), + [sym__table_content] = STATE(67), + [sym_table_separator] = STATE(67), + [sym_table_row] = STATE(70), + [sym_footnote] = STATE(208), + [sym_footnote_marker_begin] = STATE(1180), + [sym_div] = STATE(208), + [sym__div_marker_begin] = STATE(1074), + [sym_code_block] = STATE(208), + [sym_raw_block] = STATE(208), + [sym_thematic_break] = STATE(208), + [sym_block_quote] = STATE(208), + [sym__block_quote_prefix] = STATE(223), + [sym_link_reference_definition] = STATE(208), + [sym_block_attribute] = STATE(208), + [sym__paragraph] = STATE(208), + [sym__paragraph_content] = STATE(773), + [sym__paragraph_inline_content] = STATE(775), + [sym__inline] = STATE(616), + [sym__symbol_fallback] = STATE(297), + [aux_sym__list_dash_repeat1] = STATE(357), + [aux_sym__list_plus_repeat1] = STATE(358), + [aux_sym__list_star_repeat1] = STATE(359), + [aux_sym__list_task_repeat1] = STATE(344), + [aux_sym__list_definition_repeat1] = STATE(515), + [aux_sym__list_decimal_period_repeat1] = STATE(516), + [aux_sym__list_decimal_paren_repeat1] = STATE(517), + [aux_sym__list_decimal_parens_repeat1] = STATE(518), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(519), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(520), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(521), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(522), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(523), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(524), + [aux_sym__list_lower_roman_period_repeat1] = STATE(525), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(526), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(527), + [aux_sym__list_upper_roman_period_repeat1] = STATE(528), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(529), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(530), + [aux_sym_table_repeat1] = STATE(67), + [aux_sym_div_repeat1] = STATE(15), + [aux_sym__block_quote_prefix_repeat1] = STATE(240), + [aux_sym__inline_repeat1] = STATE(297), + [anon_sym_LBRACK] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(73), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(75), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__block_close] = ACTIONS(371), - [sym__newline] = ACTIONS(236), + [sym__block_close] = ACTIONS(334), + [sym__newline] = ACTIONS(218), [sym__heading_begin] = ACTIONS(19), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(83), + [sym__code_block_begin] = ACTIONS(81), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -7639,116 +7402,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(85), - [sym__block_quote_continuation] = ACTIONS(238), - [sym__thematic_break_dash] = ACTIONS(87), - [sym__thematic_break_star] = ACTIONS(87), + [sym__block_quote_begin] = ACTIONS(83), + [sym__block_quote_continuation] = ACTIONS(220), + [sym__thematic_break_dash] = ACTIONS(85), + [sym__thematic_break_star] = ACTIONS(85), }, [21] = { - [sym__block_with_heading] = STATE(260), - [sym__block_element] = STATE(260), - [sym_heading] = STATE(260), - [sym_list] = STATE(260), - [sym__list_dash] = STATE(166), - [sym__list_item_dash] = STATE(727), - [sym__list_plus] = STATE(166), - [sym__list_item_plus] = STATE(730), - [sym__list_star] = STATE(166), - [sym__list_item_star] = STATE(759), - [sym__list_task] = STATE(166), - [sym__list_item_task] = STATE(761), - [sym_list_marker_task] = STATE(46), - [sym__list_definition] = STATE(166), - [sym__list_item_definition] = STATE(819), - [sym__list_decimal_period] = STATE(166), - [sym__list_item_decimal_period] = STATE(852), - [sym__list_decimal_paren] = STATE(166), - [sym__list_item_decimal_paren] = STATE(837), - [sym__list_decimal_parens] = STATE(166), - [sym__list_item_decimal_parens] = STATE(815), - [sym__list_lower_alpha_period] = STATE(166), - [sym__list_item_lower_alpha_period] = STATE(843), - [sym__list_lower_alpha_paren] = STATE(166), - [sym__list_item_lower_alpha_paren] = STATE(850), - [sym__list_lower_alpha_parens] = STATE(166), - [sym__list_item_lower_alpha_parens] = STATE(853), - [sym__list_upper_alpha_period] = STATE(166), - [sym__list_item_upper_alpha_period] = STATE(854), - [sym__list_upper_alpha_paren] = STATE(166), - [sym__list_item_upper_alpha_paren] = STATE(855), - [sym__list_upper_alpha_parens] = STATE(166), - [sym__list_item_upper_alpha_parens] = STATE(856), - [sym__list_lower_roman_period] = STATE(166), - [sym__list_item_lower_roman_period] = STATE(857), - [sym__list_lower_roman_paren] = STATE(166), - [sym__list_item_lower_roman_paren] = STATE(871), - [sym__list_lower_roman_parens] = STATE(166), - [sym__list_item_lower_roman_parens] = STATE(874), - [sym__list_upper_roman_period] = STATE(166), - [sym__list_item_upper_roman_period] = STATE(876), - [sym__list_upper_roman_paren] = STATE(166), - [sym__list_item_upper_roman_paren] = STATE(878), - [sym__list_upper_roman_parens] = STATE(166), - [sym__list_item_upper_roman_parens] = STATE(880), - [sym_table] = STATE(260), - [sym__table_content] = STATE(72), - [sym_table_separator] = STATE(72), - [sym_table_row] = STATE(79), - [sym_footnote] = STATE(260), - [sym_footnote_marker_begin] = STATE(1302), - [sym_div] = STATE(260), - [sym__div_marker_begin] = STATE(1165), - [sym_code_block] = STATE(260), - [sym_raw_block] = STATE(260), - [sym_thematic_break] = STATE(260), - [sym_block_quote] = STATE(260), - [sym__block_quote_prefix] = STATE(291), - [sym_link_reference_definition] = STATE(260), - [sym_block_attribute] = STATE(260), - [sym__paragraph] = STATE(260), - [sym__paragraph_content] = STATE(848), - [sym__paragraph_inline_content] = STATE(896), - [sym__inline] = STATE(715), - [sym__symbol_fallback] = STATE(381), - [aux_sym__list_dash_repeat1] = STATE(454), - [aux_sym__list_plus_repeat1] = STATE(455), - [aux_sym__list_star_repeat1] = STATE(456), - [aux_sym__list_task_repeat1] = STATE(436), - [aux_sym__list_definition_repeat1] = STATE(612), - [aux_sym__list_decimal_period_repeat1] = STATE(613), - [aux_sym__list_decimal_paren_repeat1] = STATE(614), - [aux_sym__list_decimal_parens_repeat1] = STATE(615), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(616), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(617), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(618), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(619), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(620), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(621), - [aux_sym__list_lower_roman_period_repeat1] = STATE(622), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(623), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(624), - [aux_sym__list_upper_roman_period_repeat1] = STATE(625), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(626), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(627), - [aux_sym_table_repeat1] = STATE(72), - [aux_sym_footnote_content_repeat1] = STATE(22), - [aux_sym__block_quote_prefix_repeat1] = STATE(308), - [aux_sym__inline_repeat1] = STATE(381), - [anon_sym_LBRACK] = ACTIONS(73), - [anon_sym_PIPE] = ACTIONS(75), + [sym__block_with_heading] = STATE(208), + [sym__block_element] = STATE(208), + [sym_heading] = STATE(208), + [sym_list] = STATE(208), + [sym__list_dash] = STATE(144), + [sym__list_item_dash] = STATE(636), + [sym__list_plus] = STATE(144), + [sym__list_item_plus] = STATE(637), + [sym__list_star] = STATE(144), + [sym__list_item_star] = STATE(671), + [sym__list_task] = STATE(144), + [sym__list_item_task] = STATE(691), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(144), + [sym__list_item_definition] = STATE(896), + [sym__list_decimal_period] = STATE(144), + [sym__list_item_decimal_period] = STATE(841), + [sym__list_decimal_paren] = STATE(144), + [sym__list_item_decimal_paren] = STATE(796), + [sym__list_decimal_parens] = STATE(144), + [sym__list_item_decimal_parens] = STATE(716), + [sym__list_lower_alpha_period] = STATE(144), + [sym__list_item_lower_alpha_period] = STATE(722), + [sym__list_lower_alpha_paren] = STATE(144), + [sym__list_item_lower_alpha_paren] = STATE(801), + [sym__list_lower_alpha_parens] = STATE(144), + [sym__list_item_lower_alpha_parens] = STATE(813), + [sym__list_upper_alpha_period] = STATE(144), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(144), + [sym__list_item_upper_alpha_paren] = STATE(706), + [sym__list_upper_alpha_parens] = STATE(144), + [sym__list_item_upper_alpha_parens] = STATE(707), + [sym__list_lower_roman_period] = STATE(144), + [sym__list_item_lower_roman_period] = STATE(725), + [sym__list_lower_roman_paren] = STATE(144), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(144), + [sym__list_item_lower_roman_parens] = STATE(736), + [sym__list_upper_roman_period] = STATE(144), + [sym__list_item_upper_roman_period] = STATE(742), + [sym__list_upper_roman_paren] = STATE(144), + [sym__list_item_upper_roman_paren] = STATE(743), + [sym__list_upper_roman_parens] = STATE(144), + [sym__list_item_upper_roman_parens] = STATE(762), + [sym_table] = STATE(208), + [sym__table_content] = STATE(67), + [sym_table_separator] = STATE(67), + [sym_table_row] = STATE(70), + [sym_footnote] = STATE(208), + [sym_footnote_marker_begin] = STATE(1180), + [sym_div] = STATE(208), + [sym__div_marker_begin] = STATE(1074), + [sym_code_block] = STATE(208), + [sym_raw_block] = STATE(208), + [sym_thematic_break] = STATE(208), + [sym_block_quote] = STATE(208), + [sym__block_quote_prefix] = STATE(225), + [sym_link_reference_definition] = STATE(208), + [sym_block_attribute] = STATE(208), + [sym__paragraph] = STATE(208), + [sym__paragraph_content] = STATE(773), + [sym__paragraph_inline_content] = STATE(775), + [sym__inline] = STATE(616), + [sym__symbol_fallback] = STATE(297), + [aux_sym__list_dash_repeat1] = STATE(357), + [aux_sym__list_plus_repeat1] = STATE(358), + [aux_sym__list_star_repeat1] = STATE(359), + [aux_sym__list_task_repeat1] = STATE(344), + [aux_sym__list_definition_repeat1] = STATE(515), + [aux_sym__list_decimal_period_repeat1] = STATE(516), + [aux_sym__list_decimal_paren_repeat1] = STATE(517), + [aux_sym__list_decimal_parens_repeat1] = STATE(518), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(519), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(520), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(521), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(522), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(523), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(524), + [aux_sym__list_lower_roman_period_repeat1] = STATE(525), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(526), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(527), + [aux_sym__list_upper_roman_period_repeat1] = STATE(528), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(529), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(530), + [aux_sym_table_repeat1] = STATE(67), + [aux_sym_div_repeat1] = STATE(12), + [aux_sym__block_quote_prefix_repeat1] = STATE(240), + [aux_sym__inline_repeat1] = STATE(297), + [anon_sym_LBRACK] = ACTIONS(71), + [anon_sym_PIPE] = ACTIONS(73), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(75), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__block_close] = ACTIONS(373), - [sym__newline] = ACTIONS(236), + [sym__block_close] = ACTIONS(336), + [sym__newline] = ACTIONS(218), [sym__heading_begin] = ACTIONS(19), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(83), + [sym__code_block_begin] = ACTIONS(81), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -7769,116 +7532,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(85), - [sym__block_quote_continuation] = ACTIONS(238), - [sym__thematic_break_dash] = ACTIONS(87), - [sym__thematic_break_star] = ACTIONS(87), + [sym__block_quote_begin] = ACTIONS(83), + [sym__block_quote_continuation] = ACTIONS(220), + [sym__thematic_break_dash] = ACTIONS(85), + [sym__thematic_break_star] = ACTIONS(85), }, [22] = { - [sym__block_with_heading] = STATE(260), - [sym__block_element] = STATE(260), - [sym_heading] = STATE(260), - [sym_list] = STATE(260), - [sym__list_dash] = STATE(166), - [sym__list_item_dash] = STATE(727), - [sym__list_plus] = STATE(166), - [sym__list_item_plus] = STATE(730), - [sym__list_star] = STATE(166), - [sym__list_item_star] = STATE(759), - [sym__list_task] = STATE(166), - [sym__list_item_task] = STATE(761), - [sym_list_marker_task] = STATE(46), - [sym__list_definition] = STATE(166), - [sym__list_item_definition] = STATE(819), - [sym__list_decimal_period] = STATE(166), - [sym__list_item_decimal_period] = STATE(852), - [sym__list_decimal_paren] = STATE(166), - [sym__list_item_decimal_paren] = STATE(837), - [sym__list_decimal_parens] = STATE(166), - [sym__list_item_decimal_parens] = STATE(815), - [sym__list_lower_alpha_period] = STATE(166), - [sym__list_item_lower_alpha_period] = STATE(843), - [sym__list_lower_alpha_paren] = STATE(166), - [sym__list_item_lower_alpha_paren] = STATE(850), - [sym__list_lower_alpha_parens] = STATE(166), - [sym__list_item_lower_alpha_parens] = STATE(853), - [sym__list_upper_alpha_period] = STATE(166), - [sym__list_item_upper_alpha_period] = STATE(854), - [sym__list_upper_alpha_paren] = STATE(166), - [sym__list_item_upper_alpha_paren] = STATE(855), - [sym__list_upper_alpha_parens] = STATE(166), - [sym__list_item_upper_alpha_parens] = STATE(856), - [sym__list_lower_roman_period] = STATE(166), - [sym__list_item_lower_roman_period] = STATE(857), - [sym__list_lower_roman_paren] = STATE(166), - [sym__list_item_lower_roman_paren] = STATE(871), - [sym__list_lower_roman_parens] = STATE(166), - [sym__list_item_lower_roman_parens] = STATE(874), - [sym__list_upper_roman_period] = STATE(166), - [sym__list_item_upper_roman_period] = STATE(876), - [sym__list_upper_roman_paren] = STATE(166), - [sym__list_item_upper_roman_paren] = STATE(878), - [sym__list_upper_roman_parens] = STATE(166), - [sym__list_item_upper_roman_parens] = STATE(880), - [sym_table] = STATE(260), - [sym__table_content] = STATE(72), - [sym_table_separator] = STATE(72), - [sym_table_row] = STATE(79), - [sym_footnote] = STATE(260), - [sym_footnote_marker_begin] = STATE(1302), - [sym_div] = STATE(260), - [sym__div_marker_begin] = STATE(1165), - [sym_code_block] = STATE(260), - [sym_raw_block] = STATE(260), - [sym_thematic_break] = STATE(260), - [sym_block_quote] = STATE(260), - [sym__block_quote_prefix] = STATE(292), - [sym_link_reference_definition] = STATE(260), - [sym_block_attribute] = STATE(260), - [sym__paragraph] = STATE(260), - [sym__paragraph_content] = STATE(848), - [sym__paragraph_inline_content] = STATE(896), - [sym__inline] = STATE(715), - [sym__symbol_fallback] = STATE(381), - [aux_sym__list_dash_repeat1] = STATE(454), - [aux_sym__list_plus_repeat1] = STATE(455), - [aux_sym__list_star_repeat1] = STATE(456), - [aux_sym__list_task_repeat1] = STATE(436), - [aux_sym__list_definition_repeat1] = STATE(612), - [aux_sym__list_decimal_period_repeat1] = STATE(613), - [aux_sym__list_decimal_paren_repeat1] = STATE(614), - [aux_sym__list_decimal_parens_repeat1] = STATE(615), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(616), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(617), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(618), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(619), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(620), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(621), - [aux_sym__list_lower_roman_period_repeat1] = STATE(622), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(623), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(624), - [aux_sym__list_upper_roman_period_repeat1] = STATE(625), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(626), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(627), - [aux_sym_table_repeat1] = STATE(72), - [aux_sym_footnote_content_repeat1] = STATE(16), - [aux_sym__block_quote_prefix_repeat1] = STATE(308), - [aux_sym__inline_repeat1] = STATE(381), - [anon_sym_LBRACK] = ACTIONS(73), - [anon_sym_PIPE] = ACTIONS(75), + [sym__block_with_heading] = STATE(1028), + [sym__block_element] = STATE(1028), + [sym_heading] = STATE(1028), + [sym_list] = STATE(1028), + [sym__list_dash] = STATE(1006), + [sym__list_item_dash] = STATE(636), + [sym__list_plus] = STATE(1006), + [sym__list_item_plus] = STATE(637), + [sym__list_star] = STATE(1006), + [sym__list_item_star] = STATE(671), + [sym__list_task] = STATE(1006), + [sym__list_item_task] = STATE(691), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(1006), + [sym__list_item_definition] = STATE(896), + [sym__list_decimal_period] = STATE(1006), + [sym__list_item_decimal_period] = STATE(841), + [sym__list_decimal_paren] = STATE(1006), + [sym__list_item_decimal_paren] = STATE(796), + [sym__list_decimal_parens] = STATE(1006), + [sym__list_item_decimal_parens] = STATE(716), + [sym__list_lower_alpha_period] = STATE(1006), + [sym__list_item_lower_alpha_period] = STATE(722), + [sym__list_lower_alpha_paren] = STATE(1006), + [sym__list_item_lower_alpha_paren] = STATE(801), + [sym__list_lower_alpha_parens] = STATE(1006), + [sym__list_item_lower_alpha_parens] = STATE(813), + [sym__list_upper_alpha_period] = STATE(1006), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(1006), + [sym__list_item_upper_alpha_paren] = STATE(706), + [sym__list_upper_alpha_parens] = STATE(1006), + [sym__list_item_upper_alpha_parens] = STATE(707), + [sym__list_lower_roman_period] = STATE(1006), + [sym__list_item_lower_roman_period] = STATE(725), + [sym__list_lower_roman_paren] = STATE(1006), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(1006), + [sym__list_item_lower_roman_parens] = STATE(736), + [sym__list_upper_roman_period] = STATE(1006), + [sym__list_item_upper_roman_period] = STATE(742), + [sym__list_upper_roman_paren] = STATE(1006), + [sym__list_item_upper_roman_paren] = STATE(743), + [sym__list_upper_roman_parens] = STATE(1006), + [sym__list_item_upper_roman_parens] = STATE(762), + [sym_list_item_content] = STATE(587), + [sym_table] = STATE(1028), + [sym__table_content] = STATE(310), + [sym_table_separator] = STATE(310), + [sym_table_row] = STATE(331), + [sym_footnote] = STATE(1028), + [sym_footnote_marker_begin] = STATE(1176), + [sym_div] = STATE(1028), + [sym__div_marker_begin] = STATE(1026), + [sym_code_block] = STATE(1028), + [sym_raw_block] = STATE(1028), + [sym_thematic_break] = STATE(1028), + [sym_block_quote] = STATE(1028), + [sym__block_quote_prefix] = STATE(231), + [sym_link_reference_definition] = STATE(1028), + [sym_block_attribute] = STATE(1028), + [sym__paragraph] = STATE(1028), + [sym__paragraph_content] = STATE(705), + [sym__paragraph_inline_content] = STATE(775), + [sym__inline] = STATE(616), + [sym__symbol_fallback] = STATE(297), + [aux_sym__list_dash_repeat1] = STATE(355), + [aux_sym__list_plus_repeat1] = STATE(356), + [aux_sym__list_star_repeat1] = STATE(362), + [aux_sym__list_task_repeat1] = STATE(346), + [aux_sym__list_definition_repeat1] = STATE(483), + [aux_sym__list_decimal_period_repeat1] = STATE(484), + [aux_sym__list_decimal_paren_repeat1] = STATE(485), + [aux_sym__list_decimal_parens_repeat1] = STATE(486), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(487), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(488), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(489), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(490), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(491), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(492), + [aux_sym__list_lower_roman_period_repeat1] = STATE(493), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(494), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(495), + [aux_sym__list_upper_roman_period_repeat1] = STATE(581), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(497), + [aux_sym_table_repeat1] = STATE(310), + [aux_sym__block_quote_prefix_repeat1] = STATE(253), + [aux_sym__inline_repeat1] = STATE(297), + [anon_sym_LBRACK] = ACTIONS(338), + [anon_sym_PIPE] = ACTIONS(340), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(342), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__block_close] = ACTIONS(375), - [sym__newline] = ACTIONS(236), - [sym__heading_begin] = ACTIONS(19), + [sym__newline] = ACTIONS(344), + [sym__heading_begin] = ACTIONS(346), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(83), + [sym__code_block_begin] = ACTIONS(348), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -7899,116 +7661,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(85), - [sym__block_quote_continuation] = ACTIONS(238), - [sym__thematic_break_dash] = ACTIONS(87), - [sym__thematic_break_star] = ACTIONS(87), + [sym__block_quote_begin] = ACTIONS(350), + [sym__block_quote_continuation] = ACTIONS(352), + [sym__thematic_break_dash] = ACTIONS(354), + [sym__thematic_break_star] = ACTIONS(354), }, [23] = { - [sym__block_with_heading] = STATE(260), - [sym__block_element] = STATE(260), - [sym_heading] = STATE(260), - [sym_list] = STATE(260), - [sym__list_dash] = STATE(166), - [sym__list_item_dash] = STATE(727), - [sym__list_plus] = STATE(166), - [sym__list_item_plus] = STATE(730), - [sym__list_star] = STATE(166), - [sym__list_item_star] = STATE(759), - [sym__list_task] = STATE(166), - [sym__list_item_task] = STATE(761), - [sym_list_marker_task] = STATE(46), - [sym__list_definition] = STATE(166), - [sym__list_item_definition] = STATE(819), - [sym__list_decimal_period] = STATE(166), - [sym__list_item_decimal_period] = STATE(852), - [sym__list_decimal_paren] = STATE(166), - [sym__list_item_decimal_paren] = STATE(837), - [sym__list_decimal_parens] = STATE(166), - [sym__list_item_decimal_parens] = STATE(815), - [sym__list_lower_alpha_period] = STATE(166), - [sym__list_item_lower_alpha_period] = STATE(843), - [sym__list_lower_alpha_paren] = STATE(166), - [sym__list_item_lower_alpha_paren] = STATE(850), - [sym__list_lower_alpha_parens] = STATE(166), - [sym__list_item_lower_alpha_parens] = STATE(853), - [sym__list_upper_alpha_period] = STATE(166), - [sym__list_item_upper_alpha_period] = STATE(854), - [sym__list_upper_alpha_paren] = STATE(166), - [sym__list_item_upper_alpha_paren] = STATE(855), - [sym__list_upper_alpha_parens] = STATE(166), - [sym__list_item_upper_alpha_parens] = STATE(856), - [sym__list_lower_roman_period] = STATE(166), - [sym__list_item_lower_roman_period] = STATE(857), - [sym__list_lower_roman_paren] = STATE(166), - [sym__list_item_lower_roman_paren] = STATE(871), - [sym__list_lower_roman_parens] = STATE(166), - [sym__list_item_lower_roman_parens] = STATE(874), - [sym__list_upper_roman_period] = STATE(166), - [sym__list_item_upper_roman_period] = STATE(876), - [sym__list_upper_roman_paren] = STATE(166), - [sym__list_item_upper_roman_paren] = STATE(878), - [sym__list_upper_roman_parens] = STATE(166), - [sym__list_item_upper_roman_parens] = STATE(880), - [sym_table] = STATE(260), - [sym__table_content] = STATE(72), - [sym_table_separator] = STATE(72), - [sym_table_row] = STATE(79), - [sym_footnote] = STATE(260), - [sym_footnote_marker_begin] = STATE(1302), - [sym_div] = STATE(260), - [sym__div_marker_begin] = STATE(1165), - [sym_code_block] = STATE(260), - [sym_raw_block] = STATE(260), - [sym_thematic_break] = STATE(260), - [sym_block_quote] = STATE(260), - [sym__block_quote_prefix] = STATE(294), - [sym_link_reference_definition] = STATE(260), - [sym_block_attribute] = STATE(260), - [sym__paragraph] = STATE(260), - [sym__paragraph_content] = STATE(848), - [sym__paragraph_inline_content] = STATE(896), - [sym__inline] = STATE(715), - [sym__symbol_fallback] = STATE(381), - [aux_sym__list_dash_repeat1] = STATE(454), - [aux_sym__list_plus_repeat1] = STATE(455), - [aux_sym__list_star_repeat1] = STATE(456), - [aux_sym__list_task_repeat1] = STATE(436), - [aux_sym__list_definition_repeat1] = STATE(612), - [aux_sym__list_decimal_period_repeat1] = STATE(613), - [aux_sym__list_decimal_paren_repeat1] = STATE(614), - [aux_sym__list_decimal_parens_repeat1] = STATE(615), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(616), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(617), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(618), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(619), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(620), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(621), - [aux_sym__list_lower_roman_period_repeat1] = STATE(622), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(623), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(624), - [aux_sym__list_upper_roman_period_repeat1] = STATE(625), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(626), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(627), - [aux_sym_table_repeat1] = STATE(72), - [aux_sym_footnote_content_repeat1] = STATE(24), - [aux_sym__block_quote_prefix_repeat1] = STATE(308), - [aux_sym__inline_repeat1] = STATE(381), - [anon_sym_LBRACK] = ACTIONS(73), - [anon_sym_PIPE] = ACTIONS(75), + [sym__block_with_heading] = STATE(1126), + [sym__block_element] = STATE(1126), + [sym_heading] = STATE(1126), + [sym_list] = STATE(1126), + [sym__list_dash] = STATE(1006), + [sym__list_item_dash] = STATE(636), + [sym__list_plus] = STATE(1006), + [sym__list_item_plus] = STATE(637), + [sym__list_star] = STATE(1006), + [sym__list_item_star] = STATE(671), + [sym__list_task] = STATE(1006), + [sym__list_item_task] = STATE(691), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(1006), + [sym__list_item_definition] = STATE(896), + [sym__list_decimal_period] = STATE(1006), + [sym__list_item_decimal_period] = STATE(841), + [sym__list_decimal_paren] = STATE(1006), + [sym__list_item_decimal_paren] = STATE(796), + [sym__list_decimal_parens] = STATE(1006), + [sym__list_item_decimal_parens] = STATE(716), + [sym__list_lower_alpha_period] = STATE(1006), + [sym__list_item_lower_alpha_period] = STATE(722), + [sym__list_lower_alpha_paren] = STATE(1006), + [sym__list_item_lower_alpha_paren] = STATE(801), + [sym__list_lower_alpha_parens] = STATE(1006), + [sym__list_item_lower_alpha_parens] = STATE(813), + [sym__list_upper_alpha_period] = STATE(1006), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(1006), + [sym__list_item_upper_alpha_paren] = STATE(706), + [sym__list_upper_alpha_parens] = STATE(1006), + [sym__list_item_upper_alpha_parens] = STATE(707), + [sym__list_lower_roman_period] = STATE(1006), + [sym__list_item_lower_roman_period] = STATE(725), + [sym__list_lower_roman_paren] = STATE(1006), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(1006), + [sym__list_item_lower_roman_parens] = STATE(736), + [sym__list_upper_roman_period] = STATE(1006), + [sym__list_item_upper_roman_period] = STATE(742), + [sym__list_upper_roman_paren] = STATE(1006), + [sym__list_item_upper_roman_paren] = STATE(743), + [sym__list_upper_roman_parens] = STATE(1006), + [sym__list_item_upper_roman_parens] = STATE(762), + [sym_list_item_content] = STATE(702), + [sym_table] = STATE(1126), + [sym__table_content] = STATE(310), + [sym_table_separator] = STATE(310), + [sym_table_row] = STATE(331), + [sym_footnote] = STATE(1126), + [sym_footnote_marker_begin] = STATE(1176), + [sym_div] = STATE(1126), + [sym__div_marker_begin] = STATE(1026), + [sym_code_block] = STATE(1126), + [sym_raw_block] = STATE(1126), + [sym_thematic_break] = STATE(1126), + [sym_block_quote] = STATE(1126), + [sym__block_quote_prefix] = STATE(231), + [sym_link_reference_definition] = STATE(1126), + [sym_block_attribute] = STATE(1126), + [sym__paragraph] = STATE(1126), + [sym__paragraph_content] = STATE(705), + [sym__paragraph_inline_content] = STATE(775), + [sym__inline] = STATE(616), + [sym__symbol_fallback] = STATE(297), + [aux_sym__list_dash_repeat1] = STATE(355), + [aux_sym__list_plus_repeat1] = STATE(356), + [aux_sym__list_star_repeat1] = STATE(362), + [aux_sym__list_task_repeat1] = STATE(346), + [aux_sym__list_definition_repeat1] = STATE(483), + [aux_sym__list_decimal_period_repeat1] = STATE(484), + [aux_sym__list_decimal_paren_repeat1] = STATE(485), + [aux_sym__list_decimal_parens_repeat1] = STATE(486), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(487), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(488), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(489), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(490), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(491), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(492), + [aux_sym__list_lower_roman_period_repeat1] = STATE(493), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(494), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(495), + [aux_sym__list_upper_roman_period_repeat1] = STATE(581), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(497), + [aux_sym_table_repeat1] = STATE(310), + [aux_sym__block_quote_prefix_repeat1] = STATE(253), + [aux_sym__inline_repeat1] = STATE(297), + [anon_sym_LBRACK] = ACTIONS(338), + [anon_sym_PIPE] = ACTIONS(340), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(342), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__block_close] = ACTIONS(377), - [sym__newline] = ACTIONS(236), - [sym__heading_begin] = ACTIONS(19), + [sym__newline] = ACTIONS(356), + [sym__heading_begin] = ACTIONS(346), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(83), + [sym__code_block_begin] = ACTIONS(348), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -8029,116 +7790,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(85), - [sym__block_quote_continuation] = ACTIONS(238), - [sym__thematic_break_dash] = ACTIONS(87), - [sym__thematic_break_star] = ACTIONS(87), + [sym__block_quote_begin] = ACTIONS(350), + [sym__block_quote_continuation] = ACTIONS(352), + [sym__thematic_break_dash] = ACTIONS(354), + [sym__thematic_break_star] = ACTIONS(354), }, [24] = { - [sym__block_with_heading] = STATE(260), - [sym__block_element] = STATE(260), - [sym_heading] = STATE(260), - [sym_list] = STATE(260), - [sym__list_dash] = STATE(166), - [sym__list_item_dash] = STATE(727), - [sym__list_plus] = STATE(166), - [sym__list_item_plus] = STATE(730), - [sym__list_star] = STATE(166), - [sym__list_item_star] = STATE(759), - [sym__list_task] = STATE(166), - [sym__list_item_task] = STATE(761), - [sym_list_marker_task] = STATE(46), - [sym__list_definition] = STATE(166), - [sym__list_item_definition] = STATE(819), - [sym__list_decimal_period] = STATE(166), - [sym__list_item_decimal_period] = STATE(852), - [sym__list_decimal_paren] = STATE(166), - [sym__list_item_decimal_paren] = STATE(837), - [sym__list_decimal_parens] = STATE(166), - [sym__list_item_decimal_parens] = STATE(815), - [sym__list_lower_alpha_period] = STATE(166), - [sym__list_item_lower_alpha_period] = STATE(843), - [sym__list_lower_alpha_paren] = STATE(166), - [sym__list_item_lower_alpha_paren] = STATE(850), - [sym__list_lower_alpha_parens] = STATE(166), - [sym__list_item_lower_alpha_parens] = STATE(853), - [sym__list_upper_alpha_period] = STATE(166), - [sym__list_item_upper_alpha_period] = STATE(854), - [sym__list_upper_alpha_paren] = STATE(166), - [sym__list_item_upper_alpha_paren] = STATE(855), - [sym__list_upper_alpha_parens] = STATE(166), - [sym__list_item_upper_alpha_parens] = STATE(856), - [sym__list_lower_roman_period] = STATE(166), - [sym__list_item_lower_roman_period] = STATE(857), - [sym__list_lower_roman_paren] = STATE(166), - [sym__list_item_lower_roman_paren] = STATE(871), - [sym__list_lower_roman_parens] = STATE(166), - [sym__list_item_lower_roman_parens] = STATE(874), - [sym__list_upper_roman_period] = STATE(166), - [sym__list_item_upper_roman_period] = STATE(876), - [sym__list_upper_roman_paren] = STATE(166), - [sym__list_item_upper_roman_paren] = STATE(878), - [sym__list_upper_roman_parens] = STATE(166), - [sym__list_item_upper_roman_parens] = STATE(880), - [sym_table] = STATE(260), - [sym__table_content] = STATE(72), - [sym_table_separator] = STATE(72), - [sym_table_row] = STATE(79), - [sym_footnote] = STATE(260), - [sym_footnote_marker_begin] = STATE(1302), - [sym_div] = STATE(260), - [sym__div_marker_begin] = STATE(1165), - [sym_code_block] = STATE(260), - [sym_raw_block] = STATE(260), - [sym_thematic_break] = STATE(260), - [sym_block_quote] = STATE(260), - [sym__block_quote_prefix] = STATE(297), - [sym_link_reference_definition] = STATE(260), - [sym_block_attribute] = STATE(260), - [sym__paragraph] = STATE(260), - [sym__paragraph_content] = STATE(848), - [sym__paragraph_inline_content] = STATE(896), - [sym__inline] = STATE(715), - [sym__symbol_fallback] = STATE(381), - [aux_sym__list_dash_repeat1] = STATE(454), - [aux_sym__list_plus_repeat1] = STATE(455), - [aux_sym__list_star_repeat1] = STATE(456), - [aux_sym__list_task_repeat1] = STATE(436), - [aux_sym__list_definition_repeat1] = STATE(612), - [aux_sym__list_decimal_period_repeat1] = STATE(613), - [aux_sym__list_decimal_paren_repeat1] = STATE(614), - [aux_sym__list_decimal_parens_repeat1] = STATE(615), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(616), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(617), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(618), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(619), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(620), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(621), - [aux_sym__list_lower_roman_period_repeat1] = STATE(622), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(623), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(624), - [aux_sym__list_upper_roman_period_repeat1] = STATE(625), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(626), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(627), - [aux_sym_table_repeat1] = STATE(72), - [aux_sym_footnote_content_repeat1] = STATE(16), - [aux_sym__block_quote_prefix_repeat1] = STATE(308), - [aux_sym__inline_repeat1] = STATE(381), - [anon_sym_LBRACK] = ACTIONS(73), - [anon_sym_PIPE] = ACTIONS(75), + [sym__block_with_heading] = STATE(1120), + [sym__block_element] = STATE(1120), + [sym_heading] = STATE(1120), + [sym_list] = STATE(1120), + [sym__list_dash] = STATE(1006), + [sym__list_item_dash] = STATE(636), + [sym__list_plus] = STATE(1006), + [sym__list_item_plus] = STATE(637), + [sym__list_star] = STATE(1006), + [sym__list_item_star] = STATE(671), + [sym__list_task] = STATE(1006), + [sym__list_item_task] = STATE(691), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(1006), + [sym__list_item_definition] = STATE(896), + [sym__list_decimal_period] = STATE(1006), + [sym__list_item_decimal_period] = STATE(841), + [sym__list_decimal_paren] = STATE(1006), + [sym__list_item_decimal_paren] = STATE(796), + [sym__list_decimal_parens] = STATE(1006), + [sym__list_item_decimal_parens] = STATE(716), + [sym__list_lower_alpha_period] = STATE(1006), + [sym__list_item_lower_alpha_period] = STATE(722), + [sym__list_lower_alpha_paren] = STATE(1006), + [sym__list_item_lower_alpha_paren] = STATE(801), + [sym__list_lower_alpha_parens] = STATE(1006), + [sym__list_item_lower_alpha_parens] = STATE(813), + [sym__list_upper_alpha_period] = STATE(1006), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(1006), + [sym__list_item_upper_alpha_paren] = STATE(706), + [sym__list_upper_alpha_parens] = STATE(1006), + [sym__list_item_upper_alpha_parens] = STATE(707), + [sym__list_lower_roman_period] = STATE(1006), + [sym__list_item_lower_roman_period] = STATE(725), + [sym__list_lower_roman_paren] = STATE(1006), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(1006), + [sym__list_item_lower_roman_parens] = STATE(736), + [sym__list_upper_roman_period] = STATE(1006), + [sym__list_item_upper_roman_period] = STATE(742), + [sym__list_upper_roman_paren] = STATE(1006), + [sym__list_item_upper_roman_paren] = STATE(743), + [sym__list_upper_roman_parens] = STATE(1006), + [sym__list_item_upper_roman_parens] = STATE(762), + [sym_list_item_content] = STATE(818), + [sym_table] = STATE(1120), + [sym__table_content] = STATE(310), + [sym_table_separator] = STATE(310), + [sym_table_row] = STATE(331), + [sym_footnote] = STATE(1120), + [sym_footnote_marker_begin] = STATE(1176), + [sym_div] = STATE(1120), + [sym__div_marker_begin] = STATE(1026), + [sym_code_block] = STATE(1120), + [sym_raw_block] = STATE(1120), + [sym_thematic_break] = STATE(1120), + [sym_block_quote] = STATE(1120), + [sym__block_quote_prefix] = STATE(231), + [sym_link_reference_definition] = STATE(1120), + [sym_block_attribute] = STATE(1120), + [sym__paragraph] = STATE(1120), + [sym__paragraph_content] = STATE(705), + [sym__paragraph_inline_content] = STATE(775), + [sym__inline] = STATE(616), + [sym__symbol_fallback] = STATE(297), + [aux_sym__list_dash_repeat1] = STATE(355), + [aux_sym__list_plus_repeat1] = STATE(356), + [aux_sym__list_star_repeat1] = STATE(362), + [aux_sym__list_task_repeat1] = STATE(346), + [aux_sym__list_definition_repeat1] = STATE(483), + [aux_sym__list_decimal_period_repeat1] = STATE(484), + [aux_sym__list_decimal_paren_repeat1] = STATE(485), + [aux_sym__list_decimal_parens_repeat1] = STATE(486), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(487), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(488), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(489), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(490), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(491), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(492), + [aux_sym__list_lower_roman_period_repeat1] = STATE(493), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(494), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(495), + [aux_sym__list_upper_roman_period_repeat1] = STATE(581), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(497), + [aux_sym_table_repeat1] = STATE(310), + [aux_sym__block_quote_prefix_repeat1] = STATE(253), + [aux_sym__inline_repeat1] = STATE(297), + [anon_sym_LBRACK] = ACTIONS(338), + [anon_sym_PIPE] = ACTIONS(340), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(342), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__block_close] = ACTIONS(379), - [sym__newline] = ACTIONS(236), - [sym__heading_begin] = ACTIONS(19), + [sym__newline] = ACTIONS(358), + [sym__heading_begin] = ACTIONS(346), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(83), + [sym__code_block_begin] = ACTIONS(348), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -8159,116 +7919,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(85), - [sym__block_quote_continuation] = ACTIONS(238), - [sym__thematic_break_dash] = ACTIONS(87), - [sym__thematic_break_star] = ACTIONS(87), + [sym__block_quote_begin] = ACTIONS(350), + [sym__block_quote_continuation] = ACTIONS(352), + [sym__thematic_break_dash] = ACTIONS(354), + [sym__thematic_break_star] = ACTIONS(354), }, [25] = { - [sym__block_with_heading] = STATE(260), - [sym__block_element] = STATE(260), - [sym_heading] = STATE(260), - [sym_list] = STATE(260), - [sym__list_dash] = STATE(166), - [sym__list_item_dash] = STATE(727), - [sym__list_plus] = STATE(166), - [sym__list_item_plus] = STATE(730), - [sym__list_star] = STATE(166), - [sym__list_item_star] = STATE(759), - [sym__list_task] = STATE(166), - [sym__list_item_task] = STATE(761), - [sym_list_marker_task] = STATE(46), - [sym__list_definition] = STATE(166), - [sym__list_item_definition] = STATE(819), - [sym__list_decimal_period] = STATE(166), - [sym__list_item_decimal_period] = STATE(852), - [sym__list_decimal_paren] = STATE(166), - [sym__list_item_decimal_paren] = STATE(837), - [sym__list_decimal_parens] = STATE(166), - [sym__list_item_decimal_parens] = STATE(815), - [sym__list_lower_alpha_period] = STATE(166), - [sym__list_item_lower_alpha_period] = STATE(843), - [sym__list_lower_alpha_paren] = STATE(166), - [sym__list_item_lower_alpha_paren] = STATE(850), - [sym__list_lower_alpha_parens] = STATE(166), - [sym__list_item_lower_alpha_parens] = STATE(853), - [sym__list_upper_alpha_period] = STATE(166), - [sym__list_item_upper_alpha_period] = STATE(854), - [sym__list_upper_alpha_paren] = STATE(166), - [sym__list_item_upper_alpha_paren] = STATE(855), - [sym__list_upper_alpha_parens] = STATE(166), - [sym__list_item_upper_alpha_parens] = STATE(856), - [sym__list_lower_roman_period] = STATE(166), - [sym__list_item_lower_roman_period] = STATE(857), - [sym__list_lower_roman_paren] = STATE(166), - [sym__list_item_lower_roman_paren] = STATE(871), - [sym__list_lower_roman_parens] = STATE(166), - [sym__list_item_lower_roman_parens] = STATE(874), - [sym__list_upper_roman_period] = STATE(166), - [sym__list_item_upper_roman_period] = STATE(876), - [sym__list_upper_roman_paren] = STATE(166), - [sym__list_item_upper_roman_paren] = STATE(878), - [sym__list_upper_roman_parens] = STATE(166), - [sym__list_item_upper_roman_parens] = STATE(880), - [sym_table] = STATE(260), - [sym__table_content] = STATE(72), - [sym_table_separator] = STATE(72), - [sym_table_row] = STATE(79), - [sym_footnote] = STATE(260), - [sym_footnote_marker_begin] = STATE(1302), - [sym_div] = STATE(260), - [sym__div_marker_begin] = STATE(1165), - [sym_code_block] = STATE(260), - [sym_raw_block] = STATE(260), - [sym_thematic_break] = STATE(260), - [sym_block_quote] = STATE(260), - [sym__block_quote_prefix] = STATE(295), - [sym_link_reference_definition] = STATE(260), - [sym_block_attribute] = STATE(260), - [sym__paragraph] = STATE(260), - [sym__paragraph_content] = STATE(848), - [sym__paragraph_inline_content] = STATE(896), - [sym__inline] = STATE(715), - [sym__symbol_fallback] = STATE(381), - [aux_sym__list_dash_repeat1] = STATE(454), - [aux_sym__list_plus_repeat1] = STATE(455), - [aux_sym__list_star_repeat1] = STATE(456), - [aux_sym__list_task_repeat1] = STATE(436), - [aux_sym__list_definition_repeat1] = STATE(612), - [aux_sym__list_decimal_period_repeat1] = STATE(613), - [aux_sym__list_decimal_paren_repeat1] = STATE(614), - [aux_sym__list_decimal_parens_repeat1] = STATE(615), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(616), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(617), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(618), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(619), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(620), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(621), - [aux_sym__list_lower_roman_period_repeat1] = STATE(622), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(623), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(624), - [aux_sym__list_upper_roman_period_repeat1] = STATE(625), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(626), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(627), - [aux_sym_table_repeat1] = STATE(72), - [aux_sym_footnote_content_repeat1] = STATE(26), - [aux_sym__block_quote_prefix_repeat1] = STATE(308), - [aux_sym__inline_repeat1] = STATE(381), - [anon_sym_LBRACK] = ACTIONS(73), - [anon_sym_PIPE] = ACTIONS(75), + [sym__block_with_heading] = STATE(1121), + [sym__block_element] = STATE(1121), + [sym_heading] = STATE(1121), + [sym_list] = STATE(1121), + [sym__list_dash] = STATE(1006), + [sym__list_item_dash] = STATE(636), + [sym__list_plus] = STATE(1006), + [sym__list_item_plus] = STATE(637), + [sym__list_star] = STATE(1006), + [sym__list_item_star] = STATE(671), + [sym__list_task] = STATE(1006), + [sym__list_item_task] = STATE(691), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(1006), + [sym__list_item_definition] = STATE(896), + [sym__list_decimal_period] = STATE(1006), + [sym__list_item_decimal_period] = STATE(841), + [sym__list_decimal_paren] = STATE(1006), + [sym__list_item_decimal_paren] = STATE(796), + [sym__list_decimal_parens] = STATE(1006), + [sym__list_item_decimal_parens] = STATE(716), + [sym__list_lower_alpha_period] = STATE(1006), + [sym__list_item_lower_alpha_period] = STATE(722), + [sym__list_lower_alpha_paren] = STATE(1006), + [sym__list_item_lower_alpha_paren] = STATE(801), + [sym__list_lower_alpha_parens] = STATE(1006), + [sym__list_item_lower_alpha_parens] = STATE(813), + [sym__list_upper_alpha_period] = STATE(1006), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(1006), + [sym__list_item_upper_alpha_paren] = STATE(706), + [sym__list_upper_alpha_parens] = STATE(1006), + [sym__list_item_upper_alpha_parens] = STATE(707), + [sym__list_lower_roman_period] = STATE(1006), + [sym__list_item_lower_roman_period] = STATE(725), + [sym__list_lower_roman_paren] = STATE(1006), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(1006), + [sym__list_item_lower_roman_parens] = STATE(736), + [sym__list_upper_roman_period] = STATE(1006), + [sym__list_item_upper_roman_period] = STATE(742), + [sym__list_upper_roman_paren] = STATE(1006), + [sym__list_item_upper_roman_paren] = STATE(743), + [sym__list_upper_roman_parens] = STATE(1006), + [sym__list_item_upper_roman_parens] = STATE(762), + [sym_list_item_content] = STATE(819), + [sym_table] = STATE(1121), + [sym__table_content] = STATE(310), + [sym_table_separator] = STATE(310), + [sym_table_row] = STATE(331), + [sym_footnote] = STATE(1121), + [sym_footnote_marker_begin] = STATE(1176), + [sym_div] = STATE(1121), + [sym__div_marker_begin] = STATE(1026), + [sym_code_block] = STATE(1121), + [sym_raw_block] = STATE(1121), + [sym_thematic_break] = STATE(1121), + [sym_block_quote] = STATE(1121), + [sym__block_quote_prefix] = STATE(231), + [sym_link_reference_definition] = STATE(1121), + [sym_block_attribute] = STATE(1121), + [sym__paragraph] = STATE(1121), + [sym__paragraph_content] = STATE(705), + [sym__paragraph_inline_content] = STATE(775), + [sym__inline] = STATE(616), + [sym__symbol_fallback] = STATE(297), + [aux_sym__list_dash_repeat1] = STATE(355), + [aux_sym__list_plus_repeat1] = STATE(356), + [aux_sym__list_star_repeat1] = STATE(362), + [aux_sym__list_task_repeat1] = STATE(346), + [aux_sym__list_definition_repeat1] = STATE(483), + [aux_sym__list_decimal_period_repeat1] = STATE(484), + [aux_sym__list_decimal_paren_repeat1] = STATE(485), + [aux_sym__list_decimal_parens_repeat1] = STATE(486), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(487), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(488), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(489), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(490), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(491), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(492), + [aux_sym__list_lower_roman_period_repeat1] = STATE(493), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(494), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(495), + [aux_sym__list_upper_roman_period_repeat1] = STATE(581), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(497), + [aux_sym_table_repeat1] = STATE(310), + [aux_sym__block_quote_prefix_repeat1] = STATE(253), + [aux_sym__inline_repeat1] = STATE(297), + [anon_sym_LBRACK] = ACTIONS(338), + [anon_sym_PIPE] = ACTIONS(340), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(342), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__block_close] = ACTIONS(381), - [sym__newline] = ACTIONS(236), - [sym__heading_begin] = ACTIONS(19), + [sym__newline] = ACTIONS(360), + [sym__heading_begin] = ACTIONS(346), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(83), + [sym__code_block_begin] = ACTIONS(348), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -8289,116 +8048,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(85), - [sym__block_quote_continuation] = ACTIONS(238), - [sym__thematic_break_dash] = ACTIONS(87), - [sym__thematic_break_star] = ACTIONS(87), + [sym__block_quote_begin] = ACTIONS(350), + [sym__block_quote_continuation] = ACTIONS(352), + [sym__thematic_break_dash] = ACTIONS(354), + [sym__thematic_break_star] = ACTIONS(354), }, [26] = { - [sym__block_with_heading] = STATE(260), - [sym__block_element] = STATE(260), - [sym_heading] = STATE(260), - [sym_list] = STATE(260), - [sym__list_dash] = STATE(166), - [sym__list_item_dash] = STATE(727), - [sym__list_plus] = STATE(166), - [sym__list_item_plus] = STATE(730), - [sym__list_star] = STATE(166), - [sym__list_item_star] = STATE(759), - [sym__list_task] = STATE(166), - [sym__list_item_task] = STATE(761), - [sym_list_marker_task] = STATE(46), - [sym__list_definition] = STATE(166), - [sym__list_item_definition] = STATE(819), - [sym__list_decimal_period] = STATE(166), - [sym__list_item_decimal_period] = STATE(852), - [sym__list_decimal_paren] = STATE(166), - [sym__list_item_decimal_paren] = STATE(837), - [sym__list_decimal_parens] = STATE(166), - [sym__list_item_decimal_parens] = STATE(815), - [sym__list_lower_alpha_period] = STATE(166), - [sym__list_item_lower_alpha_period] = STATE(843), - [sym__list_lower_alpha_paren] = STATE(166), - [sym__list_item_lower_alpha_paren] = STATE(850), - [sym__list_lower_alpha_parens] = STATE(166), - [sym__list_item_lower_alpha_parens] = STATE(853), - [sym__list_upper_alpha_period] = STATE(166), - [sym__list_item_upper_alpha_period] = STATE(854), - [sym__list_upper_alpha_paren] = STATE(166), - [sym__list_item_upper_alpha_paren] = STATE(855), - [sym__list_upper_alpha_parens] = STATE(166), - [sym__list_item_upper_alpha_parens] = STATE(856), - [sym__list_lower_roman_period] = STATE(166), - [sym__list_item_lower_roman_period] = STATE(857), - [sym__list_lower_roman_paren] = STATE(166), - [sym__list_item_lower_roman_paren] = STATE(871), - [sym__list_lower_roman_parens] = STATE(166), - [sym__list_item_lower_roman_parens] = STATE(874), - [sym__list_upper_roman_period] = STATE(166), - [sym__list_item_upper_roman_period] = STATE(876), - [sym__list_upper_roman_paren] = STATE(166), - [sym__list_item_upper_roman_paren] = STATE(878), - [sym__list_upper_roman_parens] = STATE(166), - [sym__list_item_upper_roman_parens] = STATE(880), - [sym_table] = STATE(260), - [sym__table_content] = STATE(72), - [sym_table_separator] = STATE(72), - [sym_table_row] = STATE(79), - [sym_footnote] = STATE(260), - [sym_footnote_marker_begin] = STATE(1302), - [sym_div] = STATE(260), - [sym__div_marker_begin] = STATE(1165), - [sym_code_block] = STATE(260), - [sym_raw_block] = STATE(260), - [sym_thematic_break] = STATE(260), - [sym_block_quote] = STATE(260), - [sym__block_quote_prefix] = STATE(293), - [sym_link_reference_definition] = STATE(260), - [sym_block_attribute] = STATE(260), - [sym__paragraph] = STATE(260), - [sym__paragraph_content] = STATE(848), - [sym__paragraph_inline_content] = STATE(896), - [sym__inline] = STATE(715), - [sym__symbol_fallback] = STATE(381), - [aux_sym__list_dash_repeat1] = STATE(454), - [aux_sym__list_plus_repeat1] = STATE(455), - [aux_sym__list_star_repeat1] = STATE(456), - [aux_sym__list_task_repeat1] = STATE(436), - [aux_sym__list_definition_repeat1] = STATE(612), - [aux_sym__list_decimal_period_repeat1] = STATE(613), - [aux_sym__list_decimal_paren_repeat1] = STATE(614), - [aux_sym__list_decimal_parens_repeat1] = STATE(615), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(616), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(617), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(618), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(619), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(620), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(621), - [aux_sym__list_lower_roman_period_repeat1] = STATE(622), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(623), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(624), - [aux_sym__list_upper_roman_period_repeat1] = STATE(625), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(626), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(627), - [aux_sym_table_repeat1] = STATE(72), - [aux_sym_footnote_content_repeat1] = STATE(16), - [aux_sym__block_quote_prefix_repeat1] = STATE(308), - [aux_sym__inline_repeat1] = STATE(381), - [anon_sym_LBRACK] = ACTIONS(73), - [anon_sym_PIPE] = ACTIONS(75), + [sym__block_with_heading] = STATE(1127), + [sym__block_element] = STATE(1127), + [sym_heading] = STATE(1127), + [sym_list] = STATE(1127), + [sym__list_dash] = STATE(1006), + [sym__list_item_dash] = STATE(636), + [sym__list_plus] = STATE(1006), + [sym__list_item_plus] = STATE(637), + [sym__list_star] = STATE(1006), + [sym__list_item_star] = STATE(671), + [sym__list_task] = STATE(1006), + [sym__list_item_task] = STATE(691), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(1006), + [sym__list_item_definition] = STATE(896), + [sym__list_decimal_period] = STATE(1006), + [sym__list_item_decimal_period] = STATE(841), + [sym__list_decimal_paren] = STATE(1006), + [sym__list_item_decimal_paren] = STATE(796), + [sym__list_decimal_parens] = STATE(1006), + [sym__list_item_decimal_parens] = STATE(716), + [sym__list_lower_alpha_period] = STATE(1006), + [sym__list_item_lower_alpha_period] = STATE(722), + [sym__list_lower_alpha_paren] = STATE(1006), + [sym__list_item_lower_alpha_paren] = STATE(801), + [sym__list_lower_alpha_parens] = STATE(1006), + [sym__list_item_lower_alpha_parens] = STATE(813), + [sym__list_upper_alpha_period] = STATE(1006), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(1006), + [sym__list_item_upper_alpha_paren] = STATE(706), + [sym__list_upper_alpha_parens] = STATE(1006), + [sym__list_item_upper_alpha_parens] = STATE(707), + [sym__list_lower_roman_period] = STATE(1006), + [sym__list_item_lower_roman_period] = STATE(725), + [sym__list_lower_roman_paren] = STATE(1006), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(1006), + [sym__list_item_lower_roman_parens] = STATE(736), + [sym__list_upper_roman_period] = STATE(1006), + [sym__list_item_upper_roman_period] = STATE(742), + [sym__list_upper_roman_paren] = STATE(1006), + [sym__list_item_upper_roman_paren] = STATE(743), + [sym__list_upper_roman_parens] = STATE(1006), + [sym__list_item_upper_roman_parens] = STATE(762), + [sym_list_item_content] = STATE(703), + [sym_table] = STATE(1127), + [sym__table_content] = STATE(310), + [sym_table_separator] = STATE(310), + [sym_table_row] = STATE(331), + [sym_footnote] = STATE(1127), + [sym_footnote_marker_begin] = STATE(1176), + [sym_div] = STATE(1127), + [sym__div_marker_begin] = STATE(1026), + [sym_code_block] = STATE(1127), + [sym_raw_block] = STATE(1127), + [sym_thematic_break] = STATE(1127), + [sym_block_quote] = STATE(1127), + [sym__block_quote_prefix] = STATE(231), + [sym_link_reference_definition] = STATE(1127), + [sym_block_attribute] = STATE(1127), + [sym__paragraph] = STATE(1127), + [sym__paragraph_content] = STATE(705), + [sym__paragraph_inline_content] = STATE(775), + [sym__inline] = STATE(616), + [sym__symbol_fallback] = STATE(297), + [aux_sym__list_dash_repeat1] = STATE(355), + [aux_sym__list_plus_repeat1] = STATE(356), + [aux_sym__list_star_repeat1] = STATE(362), + [aux_sym__list_task_repeat1] = STATE(346), + [aux_sym__list_definition_repeat1] = STATE(483), + [aux_sym__list_decimal_period_repeat1] = STATE(484), + [aux_sym__list_decimal_paren_repeat1] = STATE(485), + [aux_sym__list_decimal_parens_repeat1] = STATE(486), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(487), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(488), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(489), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(490), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(491), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(492), + [aux_sym__list_lower_roman_period_repeat1] = STATE(493), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(494), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(495), + [aux_sym__list_upper_roman_period_repeat1] = STATE(581), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(497), + [aux_sym_table_repeat1] = STATE(310), + [aux_sym__block_quote_prefix_repeat1] = STATE(253), + [aux_sym__inline_repeat1] = STATE(297), + [anon_sym_LBRACK] = ACTIONS(338), + [anon_sym_PIPE] = ACTIONS(340), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(342), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__block_close] = ACTIONS(383), - [sym__newline] = ACTIONS(236), - [sym__heading_begin] = ACTIONS(19), + [sym__newline] = ACTIONS(362), + [sym__heading_begin] = ACTIONS(346), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(83), + [sym__code_block_begin] = ACTIONS(348), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -8419,116 +8177,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(85), - [sym__block_quote_continuation] = ACTIONS(238), - [sym__thematic_break_dash] = ACTIONS(87), - [sym__thematic_break_star] = ACTIONS(87), + [sym__block_quote_begin] = ACTIONS(350), + [sym__block_quote_continuation] = ACTIONS(352), + [sym__thematic_break_dash] = ACTIONS(354), + [sym__thematic_break_star] = ACTIONS(354), }, [27] = { - [sym__block_with_heading] = STATE(260), - [sym__block_element] = STATE(260), - [sym_heading] = STATE(260), - [sym_list] = STATE(260), - [sym__list_dash] = STATE(166), - [sym__list_item_dash] = STATE(727), - [sym__list_plus] = STATE(166), - [sym__list_item_plus] = STATE(730), - [sym__list_star] = STATE(166), - [sym__list_item_star] = STATE(759), - [sym__list_task] = STATE(166), - [sym__list_item_task] = STATE(761), - [sym_list_marker_task] = STATE(46), - [sym__list_definition] = STATE(166), - [sym__list_item_definition] = STATE(819), - [sym__list_decimal_period] = STATE(166), - [sym__list_item_decimal_period] = STATE(852), - [sym__list_decimal_paren] = STATE(166), - [sym__list_item_decimal_paren] = STATE(837), - [sym__list_decimal_parens] = STATE(166), - [sym__list_item_decimal_parens] = STATE(815), - [sym__list_lower_alpha_period] = STATE(166), - [sym__list_item_lower_alpha_period] = STATE(843), - [sym__list_lower_alpha_paren] = STATE(166), - [sym__list_item_lower_alpha_paren] = STATE(850), - [sym__list_lower_alpha_parens] = STATE(166), - [sym__list_item_lower_alpha_parens] = STATE(853), - [sym__list_upper_alpha_period] = STATE(166), - [sym__list_item_upper_alpha_period] = STATE(854), - [sym__list_upper_alpha_paren] = STATE(166), - [sym__list_item_upper_alpha_paren] = STATE(855), - [sym__list_upper_alpha_parens] = STATE(166), - [sym__list_item_upper_alpha_parens] = STATE(856), - [sym__list_lower_roman_period] = STATE(166), - [sym__list_item_lower_roman_period] = STATE(857), - [sym__list_lower_roman_paren] = STATE(166), - [sym__list_item_lower_roman_paren] = STATE(871), - [sym__list_lower_roman_parens] = STATE(166), - [sym__list_item_lower_roman_parens] = STATE(874), - [sym__list_upper_roman_period] = STATE(166), - [sym__list_item_upper_roman_period] = STATE(876), - [sym__list_upper_roman_paren] = STATE(166), - [sym__list_item_upper_roman_paren] = STATE(878), - [sym__list_upper_roman_parens] = STATE(166), - [sym__list_item_upper_roman_parens] = STATE(880), - [sym_table] = STATE(260), - [sym__table_content] = STATE(72), - [sym_table_separator] = STATE(72), - [sym_table_row] = STATE(79), - [sym_footnote] = STATE(260), - [sym_footnote_marker_begin] = STATE(1302), - [sym_div] = STATE(260), - [sym__div_marker_begin] = STATE(1165), - [sym_code_block] = STATE(260), - [sym_raw_block] = STATE(260), - [sym_thematic_break] = STATE(260), - [sym_block_quote] = STATE(260), - [sym__block_quote_prefix] = STATE(298), - [sym_link_reference_definition] = STATE(260), - [sym_block_attribute] = STATE(260), - [sym__paragraph] = STATE(260), - [sym__paragraph_content] = STATE(848), - [sym__paragraph_inline_content] = STATE(896), - [sym__inline] = STATE(715), - [sym__symbol_fallback] = STATE(381), - [aux_sym__list_dash_repeat1] = STATE(454), - [aux_sym__list_plus_repeat1] = STATE(455), - [aux_sym__list_star_repeat1] = STATE(456), - [aux_sym__list_task_repeat1] = STATE(436), - [aux_sym__list_definition_repeat1] = STATE(612), - [aux_sym__list_decimal_period_repeat1] = STATE(613), - [aux_sym__list_decimal_paren_repeat1] = STATE(614), - [aux_sym__list_decimal_parens_repeat1] = STATE(615), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(616), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(617), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(618), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(619), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(620), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(621), - [aux_sym__list_lower_roman_period_repeat1] = STATE(622), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(623), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(624), - [aux_sym__list_upper_roman_period_repeat1] = STATE(625), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(626), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(627), - [aux_sym_table_repeat1] = STATE(72), - [aux_sym_footnote_content_repeat1] = STATE(28), - [aux_sym__block_quote_prefix_repeat1] = STATE(308), - [aux_sym__inline_repeat1] = STATE(381), - [anon_sym_LBRACK] = ACTIONS(73), - [anon_sym_PIPE] = ACTIONS(75), + [sym__block_with_heading] = STATE(1078), + [sym__block_element] = STATE(1078), + [sym_heading] = STATE(1078), + [sym_list] = STATE(1078), + [sym__list_dash] = STATE(1006), + [sym__list_item_dash] = STATE(636), + [sym__list_plus] = STATE(1006), + [sym__list_item_plus] = STATE(637), + [sym__list_star] = STATE(1006), + [sym__list_item_star] = STATE(671), + [sym__list_task] = STATE(1006), + [sym__list_item_task] = STATE(691), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(1006), + [sym__list_item_definition] = STATE(896), + [sym__list_decimal_period] = STATE(1006), + [sym__list_item_decimal_period] = STATE(841), + [sym__list_decimal_paren] = STATE(1006), + [sym__list_item_decimal_paren] = STATE(796), + [sym__list_decimal_parens] = STATE(1006), + [sym__list_item_decimal_parens] = STATE(716), + [sym__list_lower_alpha_period] = STATE(1006), + [sym__list_item_lower_alpha_period] = STATE(722), + [sym__list_lower_alpha_paren] = STATE(1006), + [sym__list_item_lower_alpha_paren] = STATE(801), + [sym__list_lower_alpha_parens] = STATE(1006), + [sym__list_item_lower_alpha_parens] = STATE(813), + [sym__list_upper_alpha_period] = STATE(1006), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(1006), + [sym__list_item_upper_alpha_paren] = STATE(706), + [sym__list_upper_alpha_parens] = STATE(1006), + [sym__list_item_upper_alpha_parens] = STATE(707), + [sym__list_lower_roman_period] = STATE(1006), + [sym__list_item_lower_roman_period] = STATE(725), + [sym__list_lower_roman_paren] = STATE(1006), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(1006), + [sym__list_item_lower_roman_parens] = STATE(736), + [sym__list_upper_roman_period] = STATE(1006), + [sym__list_item_upper_roman_period] = STATE(742), + [sym__list_upper_roman_paren] = STATE(1006), + [sym__list_item_upper_roman_paren] = STATE(743), + [sym__list_upper_roman_parens] = STATE(1006), + [sym__list_item_upper_roman_parens] = STATE(762), + [sym_list_item_content] = STATE(585), + [sym_table] = STATE(1078), + [sym__table_content] = STATE(310), + [sym_table_separator] = STATE(310), + [sym_table_row] = STATE(331), + [sym_footnote] = STATE(1078), + [sym_footnote_marker_begin] = STATE(1176), + [sym_div] = STATE(1078), + [sym__div_marker_begin] = STATE(1026), + [sym_code_block] = STATE(1078), + [sym_raw_block] = STATE(1078), + [sym_thematic_break] = STATE(1078), + [sym_block_quote] = STATE(1078), + [sym__block_quote_prefix] = STATE(231), + [sym_link_reference_definition] = STATE(1078), + [sym_block_attribute] = STATE(1078), + [sym__paragraph] = STATE(1078), + [sym__paragraph_content] = STATE(705), + [sym__paragraph_inline_content] = STATE(775), + [sym__inline] = STATE(616), + [sym__symbol_fallback] = STATE(297), + [aux_sym__list_dash_repeat1] = STATE(355), + [aux_sym__list_plus_repeat1] = STATE(356), + [aux_sym__list_star_repeat1] = STATE(362), + [aux_sym__list_task_repeat1] = STATE(346), + [aux_sym__list_definition_repeat1] = STATE(483), + [aux_sym__list_decimal_period_repeat1] = STATE(484), + [aux_sym__list_decimal_paren_repeat1] = STATE(485), + [aux_sym__list_decimal_parens_repeat1] = STATE(486), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(487), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(488), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(489), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(490), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(491), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(492), + [aux_sym__list_lower_roman_period_repeat1] = STATE(493), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(494), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(495), + [aux_sym__list_upper_roman_period_repeat1] = STATE(581), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(497), + [aux_sym_table_repeat1] = STATE(310), + [aux_sym__block_quote_prefix_repeat1] = STATE(253), + [aux_sym__inline_repeat1] = STATE(297), + [anon_sym_LBRACK] = ACTIONS(338), + [anon_sym_PIPE] = ACTIONS(340), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(342), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__block_close] = ACTIONS(385), - [sym__newline] = ACTIONS(236), - [sym__heading_begin] = ACTIONS(19), + [sym__newline] = ACTIONS(364), + [sym__heading_begin] = ACTIONS(346), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(83), + [sym__code_block_begin] = ACTIONS(348), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -8549,116 +8306,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(85), - [sym__block_quote_continuation] = ACTIONS(238), - [sym__thematic_break_dash] = ACTIONS(87), - [sym__thematic_break_star] = ACTIONS(87), + [sym__block_quote_begin] = ACTIONS(350), + [sym__block_quote_continuation] = ACTIONS(352), + [sym__thematic_break_dash] = ACTIONS(354), + [sym__thematic_break_star] = ACTIONS(354), }, [28] = { - [sym__block_with_heading] = STATE(260), - [sym__block_element] = STATE(260), - [sym_heading] = STATE(260), - [sym_list] = STATE(260), - [sym__list_dash] = STATE(166), - [sym__list_item_dash] = STATE(727), - [sym__list_plus] = STATE(166), - [sym__list_item_plus] = STATE(730), - [sym__list_star] = STATE(166), - [sym__list_item_star] = STATE(759), - [sym__list_task] = STATE(166), - [sym__list_item_task] = STATE(761), - [sym_list_marker_task] = STATE(46), - [sym__list_definition] = STATE(166), - [sym__list_item_definition] = STATE(819), - [sym__list_decimal_period] = STATE(166), - [sym__list_item_decimal_period] = STATE(852), - [sym__list_decimal_paren] = STATE(166), - [sym__list_item_decimal_paren] = STATE(837), - [sym__list_decimal_parens] = STATE(166), - [sym__list_item_decimal_parens] = STATE(815), - [sym__list_lower_alpha_period] = STATE(166), - [sym__list_item_lower_alpha_period] = STATE(843), - [sym__list_lower_alpha_paren] = STATE(166), - [sym__list_item_lower_alpha_paren] = STATE(850), - [sym__list_lower_alpha_parens] = STATE(166), - [sym__list_item_lower_alpha_parens] = STATE(853), - [sym__list_upper_alpha_period] = STATE(166), - [sym__list_item_upper_alpha_period] = STATE(854), - [sym__list_upper_alpha_paren] = STATE(166), - [sym__list_item_upper_alpha_paren] = STATE(855), - [sym__list_upper_alpha_parens] = STATE(166), - [sym__list_item_upper_alpha_parens] = STATE(856), - [sym__list_lower_roman_period] = STATE(166), - [sym__list_item_lower_roman_period] = STATE(857), - [sym__list_lower_roman_paren] = STATE(166), - [sym__list_item_lower_roman_paren] = STATE(871), - [sym__list_lower_roman_parens] = STATE(166), - [sym__list_item_lower_roman_parens] = STATE(874), - [sym__list_upper_roman_period] = STATE(166), - [sym__list_item_upper_roman_period] = STATE(876), - [sym__list_upper_roman_paren] = STATE(166), - [sym__list_item_upper_roman_paren] = STATE(878), - [sym__list_upper_roman_parens] = STATE(166), - [sym__list_item_upper_roman_parens] = STATE(880), - [sym_table] = STATE(260), - [sym__table_content] = STATE(72), - [sym_table_separator] = STATE(72), - [sym_table_row] = STATE(79), - [sym_footnote] = STATE(260), - [sym_footnote_marker_begin] = STATE(1302), - [sym_div] = STATE(260), - [sym__div_marker_begin] = STATE(1165), - [sym_code_block] = STATE(260), - [sym_raw_block] = STATE(260), - [sym_thematic_break] = STATE(260), - [sym_block_quote] = STATE(260), - [sym__block_quote_prefix] = STATE(296), - [sym_link_reference_definition] = STATE(260), - [sym_block_attribute] = STATE(260), - [sym__paragraph] = STATE(260), - [sym__paragraph_content] = STATE(848), - [sym__paragraph_inline_content] = STATE(896), - [sym__inline] = STATE(715), - [sym__symbol_fallback] = STATE(381), - [aux_sym__list_dash_repeat1] = STATE(454), - [aux_sym__list_plus_repeat1] = STATE(455), - [aux_sym__list_star_repeat1] = STATE(456), - [aux_sym__list_task_repeat1] = STATE(436), - [aux_sym__list_definition_repeat1] = STATE(612), - [aux_sym__list_decimal_period_repeat1] = STATE(613), - [aux_sym__list_decimal_paren_repeat1] = STATE(614), - [aux_sym__list_decimal_parens_repeat1] = STATE(615), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(616), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(617), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(618), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(619), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(620), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(621), - [aux_sym__list_lower_roman_period_repeat1] = STATE(622), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(623), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(624), - [aux_sym__list_upper_roman_period_repeat1] = STATE(625), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(626), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(627), - [aux_sym_table_repeat1] = STATE(72), - [aux_sym_footnote_content_repeat1] = STATE(16), - [aux_sym__block_quote_prefix_repeat1] = STATE(308), - [aux_sym__inline_repeat1] = STATE(381), - [anon_sym_LBRACK] = ACTIONS(73), - [anon_sym_PIPE] = ACTIONS(75), + [sym__block_with_heading] = STATE(1028), + [sym__block_element] = STATE(1028), + [sym_heading] = STATE(1028), + [sym_list] = STATE(1028), + [sym__list_dash] = STATE(1006), + [sym__list_item_dash] = STATE(636), + [sym__list_plus] = STATE(1006), + [sym__list_item_plus] = STATE(637), + [sym__list_star] = STATE(1006), + [sym__list_item_star] = STATE(671), + [sym__list_task] = STATE(1006), + [sym__list_item_task] = STATE(691), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(1006), + [sym__list_item_definition] = STATE(896), + [sym__list_decimal_period] = STATE(1006), + [sym__list_item_decimal_period] = STATE(841), + [sym__list_decimal_paren] = STATE(1006), + [sym__list_item_decimal_paren] = STATE(796), + [sym__list_decimal_parens] = STATE(1006), + [sym__list_item_decimal_parens] = STATE(716), + [sym__list_lower_alpha_period] = STATE(1006), + [sym__list_item_lower_alpha_period] = STATE(722), + [sym__list_lower_alpha_paren] = STATE(1006), + [sym__list_item_lower_alpha_paren] = STATE(801), + [sym__list_lower_alpha_parens] = STATE(1006), + [sym__list_item_lower_alpha_parens] = STATE(813), + [sym__list_upper_alpha_period] = STATE(1006), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(1006), + [sym__list_item_upper_alpha_paren] = STATE(706), + [sym__list_upper_alpha_parens] = STATE(1006), + [sym__list_item_upper_alpha_parens] = STATE(707), + [sym__list_lower_roman_period] = STATE(1006), + [sym__list_item_lower_roman_period] = STATE(725), + [sym__list_lower_roman_paren] = STATE(1006), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(1006), + [sym__list_item_lower_roman_parens] = STATE(736), + [sym__list_upper_roman_period] = STATE(1006), + [sym__list_item_upper_roman_period] = STATE(742), + [sym__list_upper_roman_paren] = STATE(1006), + [sym__list_item_upper_roman_paren] = STATE(743), + [sym__list_upper_roman_parens] = STATE(1006), + [sym__list_item_upper_roman_parens] = STATE(762), + [sym_list_item_content] = STATE(692), + [sym_table] = STATE(1028), + [sym__table_content] = STATE(310), + [sym_table_separator] = STATE(310), + [sym_table_row] = STATE(331), + [sym_footnote] = STATE(1028), + [sym_footnote_marker_begin] = STATE(1176), + [sym_div] = STATE(1028), + [sym__div_marker_begin] = STATE(1026), + [sym_code_block] = STATE(1028), + [sym_raw_block] = STATE(1028), + [sym_thematic_break] = STATE(1028), + [sym_block_quote] = STATE(1028), + [sym__block_quote_prefix] = STATE(231), + [sym_link_reference_definition] = STATE(1028), + [sym_block_attribute] = STATE(1028), + [sym__paragraph] = STATE(1028), + [sym__paragraph_content] = STATE(705), + [sym__paragraph_inline_content] = STATE(775), + [sym__inline] = STATE(616), + [sym__symbol_fallback] = STATE(297), + [aux_sym__list_dash_repeat1] = STATE(355), + [aux_sym__list_plus_repeat1] = STATE(356), + [aux_sym__list_star_repeat1] = STATE(362), + [aux_sym__list_task_repeat1] = STATE(346), + [aux_sym__list_definition_repeat1] = STATE(483), + [aux_sym__list_decimal_period_repeat1] = STATE(484), + [aux_sym__list_decimal_paren_repeat1] = STATE(485), + [aux_sym__list_decimal_parens_repeat1] = STATE(486), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(487), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(488), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(489), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(490), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(491), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(492), + [aux_sym__list_lower_roman_period_repeat1] = STATE(493), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(494), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(495), + [aux_sym__list_upper_roman_period_repeat1] = STATE(581), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(497), + [aux_sym_table_repeat1] = STATE(310), + [aux_sym__block_quote_prefix_repeat1] = STATE(253), + [aux_sym__inline_repeat1] = STATE(297), + [anon_sym_LBRACK] = ACTIONS(338), + [anon_sym_PIPE] = ACTIONS(340), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(342), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__block_close] = ACTIONS(387), - [sym__newline] = ACTIONS(236), - [sym__heading_begin] = ACTIONS(19), + [sym__newline] = ACTIONS(344), + [sym__heading_begin] = ACTIONS(346), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(83), + [sym__code_block_begin] = ACTIONS(348), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -8679,116 +8435,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(85), - [sym__block_quote_continuation] = ACTIONS(238), - [sym__thematic_break_dash] = ACTIONS(87), - [sym__thematic_break_star] = ACTIONS(87), + [sym__block_quote_begin] = ACTIONS(350), + [sym__block_quote_continuation] = ACTIONS(352), + [sym__thematic_break_dash] = ACTIONS(354), + [sym__thematic_break_star] = ACTIONS(354), }, [29] = { - [sym__block_with_heading] = STATE(164), - [sym__block_element] = STATE(164), - [sym_heading] = STATE(164), - [sym_list] = STATE(164), - [sym__list_dash] = STATE(228), - [sym__list_item_dash] = STATE(727), - [sym__list_plus] = STATE(228), - [sym__list_item_plus] = STATE(730), - [sym__list_star] = STATE(228), - [sym__list_item_star] = STATE(759), - [sym__list_task] = STATE(228), - [sym__list_item_task] = STATE(761), - [sym_list_marker_task] = STATE(46), - [sym__list_definition] = STATE(228), - [sym__list_item_definition] = STATE(819), - [sym__list_decimal_period] = STATE(228), - [sym__list_item_decimal_period] = STATE(852), - [sym__list_decimal_paren] = STATE(228), - [sym__list_item_decimal_paren] = STATE(837), - [sym__list_decimal_parens] = STATE(228), - [sym__list_item_decimal_parens] = STATE(815), - [sym__list_lower_alpha_period] = STATE(228), - [sym__list_item_lower_alpha_period] = STATE(843), - [sym__list_lower_alpha_paren] = STATE(228), - [sym__list_item_lower_alpha_paren] = STATE(850), - [sym__list_lower_alpha_parens] = STATE(228), - [sym__list_item_lower_alpha_parens] = STATE(853), - [sym__list_upper_alpha_period] = STATE(228), - [sym__list_item_upper_alpha_period] = STATE(854), - [sym__list_upper_alpha_paren] = STATE(228), - [sym__list_item_upper_alpha_paren] = STATE(855), - [sym__list_upper_alpha_parens] = STATE(228), - [sym__list_item_upper_alpha_parens] = STATE(856), - [sym__list_lower_roman_period] = STATE(228), - [sym__list_item_lower_roman_period] = STATE(857), - [sym__list_lower_roman_paren] = STATE(228), - [sym__list_item_lower_roman_paren] = STATE(871), - [sym__list_lower_roman_parens] = STATE(228), - [sym__list_item_lower_roman_parens] = STATE(874), - [sym__list_upper_roman_period] = STATE(228), - [sym__list_item_upper_roman_period] = STATE(876), - [sym__list_upper_roman_paren] = STATE(228), - [sym__list_item_upper_roman_paren] = STATE(878), - [sym__list_upper_roman_parens] = STATE(228), - [sym__list_item_upper_roman_parens] = STATE(880), - [sym_table] = STATE(164), - [sym__table_content] = STATE(73), - [sym_table_separator] = STATE(73), - [sym_table_row] = STATE(77), - [sym_footnote] = STATE(164), - [sym_footnote_marker_begin] = STATE(1306), - [sym_footnote_content] = STATE(1123), - [sym_div] = STATE(164), - [sym__div_marker_begin] = STATE(1210), - [sym_code_block] = STATE(164), - [sym_raw_block] = STATE(164), - [sym_thematic_break] = STATE(164), - [sym_block_quote] = STATE(164), - [sym__block_quote_prefix] = STATE(301), - [sym_link_reference_definition] = STATE(164), - [sym_block_attribute] = STATE(164), - [sym__paragraph] = STATE(164), - [sym__paragraph_content] = STATE(889), - [sym__paragraph_inline_content] = STATE(896), - [sym__inline] = STATE(715), - [sym__symbol_fallback] = STATE(381), - [aux_sym__list_dash_repeat1] = STATE(445), - [aux_sym__list_plus_repeat1] = STATE(446), - [aux_sym__list_star_repeat1] = STATE(447), - [aux_sym__list_task_repeat1] = STATE(423), - [aux_sym__list_definition_repeat1] = STATE(655), - [aux_sym__list_decimal_period_repeat1] = STATE(656), - [aux_sym__list_decimal_paren_repeat1] = STATE(657), - [aux_sym__list_decimal_parens_repeat1] = STATE(658), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(659), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(660), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(661), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(662), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(663), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(664), - [aux_sym__list_lower_roman_period_repeat1] = STATE(665), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(666), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(667), - [aux_sym__list_upper_roman_period_repeat1] = STATE(668), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(669), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(670), - [aux_sym_table_repeat1] = STATE(73), - [aux_sym_footnote_content_repeat1] = STATE(17), - [aux_sym__block_quote_prefix_repeat1] = STATE(330), - [aux_sym__inline_repeat1] = STATE(381), - [anon_sym_LBRACK] = ACTIONS(216), - [anon_sym_PIPE] = ACTIONS(218), + [sym__block_with_heading] = STATE(1052), + [sym__block_element] = STATE(1052), + [sym_heading] = STATE(1052), + [sym_list] = STATE(1052), + [sym__list_dash] = STATE(1006), + [sym__list_item_dash] = STATE(636), + [sym__list_plus] = STATE(1006), + [sym__list_item_plus] = STATE(637), + [sym__list_star] = STATE(1006), + [sym__list_item_star] = STATE(671), + [sym__list_task] = STATE(1006), + [sym__list_item_task] = STATE(691), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(1006), + [sym__list_item_definition] = STATE(896), + [sym__list_decimal_period] = STATE(1006), + [sym__list_item_decimal_period] = STATE(841), + [sym__list_decimal_paren] = STATE(1006), + [sym__list_item_decimal_paren] = STATE(796), + [sym__list_decimal_parens] = STATE(1006), + [sym__list_item_decimal_parens] = STATE(716), + [sym__list_lower_alpha_period] = STATE(1006), + [sym__list_item_lower_alpha_period] = STATE(722), + [sym__list_lower_alpha_paren] = STATE(1006), + [sym__list_item_lower_alpha_paren] = STATE(801), + [sym__list_lower_alpha_parens] = STATE(1006), + [sym__list_item_lower_alpha_parens] = STATE(813), + [sym__list_upper_alpha_period] = STATE(1006), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(1006), + [sym__list_item_upper_alpha_paren] = STATE(706), + [sym__list_upper_alpha_parens] = STATE(1006), + [sym__list_item_upper_alpha_parens] = STATE(707), + [sym__list_lower_roman_period] = STATE(1006), + [sym__list_item_lower_roman_period] = STATE(725), + [sym__list_lower_roman_paren] = STATE(1006), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(1006), + [sym__list_item_lower_roman_parens] = STATE(736), + [sym__list_upper_roman_period] = STATE(1006), + [sym__list_item_upper_roman_period] = STATE(742), + [sym__list_upper_roman_paren] = STATE(1006), + [sym__list_item_upper_roman_paren] = STATE(743), + [sym__list_upper_roman_parens] = STATE(1006), + [sym__list_item_upper_roman_parens] = STATE(762), + [sym_list_item_content] = STATE(590), + [sym_table] = STATE(1052), + [sym__table_content] = STATE(310), + [sym_table_separator] = STATE(310), + [sym_table_row] = STATE(331), + [sym_footnote] = STATE(1052), + [sym_footnote_marker_begin] = STATE(1176), + [sym_div] = STATE(1052), + [sym__div_marker_begin] = STATE(1026), + [sym_code_block] = STATE(1052), + [sym_raw_block] = STATE(1052), + [sym_thematic_break] = STATE(1052), + [sym_block_quote] = STATE(1052), + [sym__block_quote_prefix] = STATE(231), + [sym_link_reference_definition] = STATE(1052), + [sym_block_attribute] = STATE(1052), + [sym__paragraph] = STATE(1052), + [sym__paragraph_content] = STATE(705), + [sym__paragraph_inline_content] = STATE(775), + [sym__inline] = STATE(616), + [sym__symbol_fallback] = STATE(297), + [aux_sym__list_dash_repeat1] = STATE(355), + [aux_sym__list_plus_repeat1] = STATE(356), + [aux_sym__list_star_repeat1] = STATE(362), + [aux_sym__list_task_repeat1] = STATE(346), + [aux_sym__list_definition_repeat1] = STATE(483), + [aux_sym__list_decimal_period_repeat1] = STATE(484), + [aux_sym__list_decimal_paren_repeat1] = STATE(485), + [aux_sym__list_decimal_parens_repeat1] = STATE(486), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(487), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(488), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(489), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(490), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(491), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(492), + [aux_sym__list_lower_roman_period_repeat1] = STATE(493), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(494), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(495), + [aux_sym__list_upper_roman_period_repeat1] = STATE(581), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(497), + [aux_sym_table_repeat1] = STATE(310), + [aux_sym__block_quote_prefix_repeat1] = STATE(253), + [aux_sym__inline_repeat1] = STATE(297), + [anon_sym_LBRACK] = ACTIONS(338), + [anon_sym_PIPE] = ACTIONS(340), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(342), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(222), - [sym__heading_begin] = ACTIONS(224), + [sym__newline] = ACTIONS(366), + [sym__heading_begin] = ACTIONS(346), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(226), + [sym__code_block_begin] = ACTIONS(348), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -8809,116 +8564,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(228), - [sym__block_quote_continuation] = ACTIONS(230), - [sym__thematic_break_dash] = ACTIONS(232), - [sym__thematic_break_star] = ACTIONS(232), + [sym__block_quote_begin] = ACTIONS(350), + [sym__block_quote_continuation] = ACTIONS(352), + [sym__thematic_break_dash] = ACTIONS(354), + [sym__thematic_break_star] = ACTIONS(354), }, [30] = { - [sym__block_with_heading] = STATE(164), - [sym__block_element] = STATE(164), - [sym_heading] = STATE(164), - [sym_list] = STATE(164), - [sym__list_dash] = STATE(228), - [sym__list_item_dash] = STATE(727), - [sym__list_plus] = STATE(228), - [sym__list_item_plus] = STATE(730), - [sym__list_star] = STATE(228), - [sym__list_item_star] = STATE(759), - [sym__list_task] = STATE(228), - [sym__list_item_task] = STATE(761), - [sym_list_marker_task] = STATE(46), - [sym__list_definition] = STATE(228), - [sym__list_item_definition] = STATE(819), - [sym__list_decimal_period] = STATE(228), - [sym__list_item_decimal_period] = STATE(852), - [sym__list_decimal_paren] = STATE(228), - [sym__list_item_decimal_paren] = STATE(837), - [sym__list_decimal_parens] = STATE(228), - [sym__list_item_decimal_parens] = STATE(815), - [sym__list_lower_alpha_period] = STATE(228), - [sym__list_item_lower_alpha_period] = STATE(843), - [sym__list_lower_alpha_paren] = STATE(228), - [sym__list_item_lower_alpha_paren] = STATE(850), - [sym__list_lower_alpha_parens] = STATE(228), - [sym__list_item_lower_alpha_parens] = STATE(853), - [sym__list_upper_alpha_period] = STATE(228), - [sym__list_item_upper_alpha_period] = STATE(854), - [sym__list_upper_alpha_paren] = STATE(228), - [sym__list_item_upper_alpha_paren] = STATE(855), - [sym__list_upper_alpha_parens] = STATE(228), - [sym__list_item_upper_alpha_parens] = STATE(856), - [sym__list_lower_roman_period] = STATE(228), - [sym__list_item_lower_roman_period] = STATE(857), - [sym__list_lower_roman_paren] = STATE(228), - [sym__list_item_lower_roman_paren] = STATE(871), - [sym__list_lower_roman_parens] = STATE(228), - [sym__list_item_lower_roman_parens] = STATE(874), - [sym__list_upper_roman_period] = STATE(228), - [sym__list_item_upper_roman_period] = STATE(876), - [sym__list_upper_roman_paren] = STATE(228), - [sym__list_item_upper_roman_paren] = STATE(878), - [sym__list_upper_roman_parens] = STATE(228), - [sym__list_item_upper_roman_parens] = STATE(880), - [sym_table] = STATE(164), - [sym__table_content] = STATE(73), - [sym_table_separator] = STATE(73), - [sym_table_row] = STATE(77), - [sym_footnote] = STATE(164), - [sym_footnote_marker_begin] = STATE(1306), - [sym_footnote_content] = STATE(1089), - [sym_div] = STATE(164), - [sym__div_marker_begin] = STATE(1210), - [sym_code_block] = STATE(164), - [sym_raw_block] = STATE(164), - [sym_thematic_break] = STATE(164), - [sym_block_quote] = STATE(164), - [sym__block_quote_prefix] = STATE(301), - [sym_link_reference_definition] = STATE(164), - [sym_block_attribute] = STATE(164), - [sym__paragraph] = STATE(164), - [sym__paragraph_content] = STATE(889), - [sym__paragraph_inline_content] = STATE(896), - [sym__inline] = STATE(715), - [sym__symbol_fallback] = STATE(381), - [aux_sym__list_dash_repeat1] = STATE(445), - [aux_sym__list_plus_repeat1] = STATE(446), - [aux_sym__list_star_repeat1] = STATE(447), - [aux_sym__list_task_repeat1] = STATE(423), - [aux_sym__list_definition_repeat1] = STATE(655), - [aux_sym__list_decimal_period_repeat1] = STATE(656), - [aux_sym__list_decimal_paren_repeat1] = STATE(657), - [aux_sym__list_decimal_parens_repeat1] = STATE(658), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(659), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(660), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(661), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(662), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(663), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(664), - [aux_sym__list_lower_roman_period_repeat1] = STATE(665), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(666), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(667), - [aux_sym__list_upper_roman_period_repeat1] = STATE(668), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(669), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(670), - [aux_sym_table_repeat1] = STATE(73), - [aux_sym_footnote_content_repeat1] = STATE(17), - [aux_sym__block_quote_prefix_repeat1] = STATE(330), - [aux_sym__inline_repeat1] = STATE(381), - [anon_sym_LBRACK] = ACTIONS(216), - [anon_sym_PIPE] = ACTIONS(218), + [sym__block_with_heading] = STATE(1131), + [sym__block_element] = STATE(1131), + [sym_heading] = STATE(1131), + [sym_list] = STATE(1131), + [sym__list_dash] = STATE(1006), + [sym__list_item_dash] = STATE(636), + [sym__list_plus] = STATE(1006), + [sym__list_item_plus] = STATE(637), + [sym__list_star] = STATE(1006), + [sym__list_item_star] = STATE(671), + [sym__list_task] = STATE(1006), + [sym__list_item_task] = STATE(691), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(1006), + [sym__list_item_definition] = STATE(896), + [sym__list_decimal_period] = STATE(1006), + [sym__list_item_decimal_period] = STATE(841), + [sym__list_decimal_paren] = STATE(1006), + [sym__list_item_decimal_paren] = STATE(796), + [sym__list_decimal_parens] = STATE(1006), + [sym__list_item_decimal_parens] = STATE(716), + [sym__list_lower_alpha_period] = STATE(1006), + [sym__list_item_lower_alpha_period] = STATE(722), + [sym__list_lower_alpha_paren] = STATE(1006), + [sym__list_item_lower_alpha_paren] = STATE(801), + [sym__list_lower_alpha_parens] = STATE(1006), + [sym__list_item_lower_alpha_parens] = STATE(813), + [sym__list_upper_alpha_period] = STATE(1006), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(1006), + [sym__list_item_upper_alpha_paren] = STATE(706), + [sym__list_upper_alpha_parens] = STATE(1006), + [sym__list_item_upper_alpha_parens] = STATE(707), + [sym__list_lower_roman_period] = STATE(1006), + [sym__list_item_lower_roman_period] = STATE(725), + [sym__list_lower_roman_paren] = STATE(1006), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(1006), + [sym__list_item_lower_roman_parens] = STATE(736), + [sym__list_upper_roman_period] = STATE(1006), + [sym__list_item_upper_roman_period] = STATE(742), + [sym__list_upper_roman_paren] = STATE(1006), + [sym__list_item_upper_roman_paren] = STATE(743), + [sym__list_upper_roman_parens] = STATE(1006), + [sym__list_item_upper_roman_parens] = STATE(762), + [sym_list_item_content] = STATE(591), + [sym_table] = STATE(1131), + [sym__table_content] = STATE(310), + [sym_table_separator] = STATE(310), + [sym_table_row] = STATE(331), + [sym_footnote] = STATE(1131), + [sym_footnote_marker_begin] = STATE(1176), + [sym_div] = STATE(1131), + [sym__div_marker_begin] = STATE(1026), + [sym_code_block] = STATE(1131), + [sym_raw_block] = STATE(1131), + [sym_thematic_break] = STATE(1131), + [sym_block_quote] = STATE(1131), + [sym__block_quote_prefix] = STATE(231), + [sym_link_reference_definition] = STATE(1131), + [sym_block_attribute] = STATE(1131), + [sym__paragraph] = STATE(1131), + [sym__paragraph_content] = STATE(705), + [sym__paragraph_inline_content] = STATE(775), + [sym__inline] = STATE(616), + [sym__symbol_fallback] = STATE(297), + [aux_sym__list_dash_repeat1] = STATE(355), + [aux_sym__list_plus_repeat1] = STATE(356), + [aux_sym__list_star_repeat1] = STATE(362), + [aux_sym__list_task_repeat1] = STATE(346), + [aux_sym__list_definition_repeat1] = STATE(483), + [aux_sym__list_decimal_period_repeat1] = STATE(484), + [aux_sym__list_decimal_paren_repeat1] = STATE(485), + [aux_sym__list_decimal_parens_repeat1] = STATE(486), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(487), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(488), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(489), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(490), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(491), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(492), + [aux_sym__list_lower_roman_period_repeat1] = STATE(493), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(494), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(495), + [aux_sym__list_upper_roman_period_repeat1] = STATE(581), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(497), + [aux_sym_table_repeat1] = STATE(310), + [aux_sym__block_quote_prefix_repeat1] = STATE(253), + [aux_sym__inline_repeat1] = STATE(297), + [anon_sym_LBRACK] = ACTIONS(338), + [anon_sym_PIPE] = ACTIONS(340), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(342), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(222), - [sym__heading_begin] = ACTIONS(224), + [sym__newline] = ACTIONS(368), + [sym__heading_begin] = ACTIONS(346), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(226), + [sym__code_block_begin] = ACTIONS(348), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -8939,116 +8693,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(228), - [sym__block_quote_continuation] = ACTIONS(230), - [sym__thematic_break_dash] = ACTIONS(232), - [sym__thematic_break_star] = ACTIONS(232), + [sym__block_quote_begin] = ACTIONS(350), + [sym__block_quote_continuation] = ACTIONS(352), + [sym__thematic_break_dash] = ACTIONS(354), + [sym__thematic_break_star] = ACTIONS(354), }, [31] = { - [sym__block_with_heading] = STATE(164), - [sym__block_element] = STATE(164), - [sym_heading] = STATE(164), - [sym_list] = STATE(164), - [sym__list_dash] = STATE(228), - [sym__list_item_dash] = STATE(727), - [sym__list_plus] = STATE(228), - [sym__list_item_plus] = STATE(730), - [sym__list_star] = STATE(228), - [sym__list_item_star] = STATE(759), - [sym__list_task] = STATE(228), - [sym__list_item_task] = STATE(761), - [sym_list_marker_task] = STATE(46), - [sym__list_definition] = STATE(228), - [sym__list_item_definition] = STATE(819), - [sym__list_decimal_period] = STATE(228), - [sym__list_item_decimal_period] = STATE(852), - [sym__list_decimal_paren] = STATE(228), - [sym__list_item_decimal_paren] = STATE(837), - [sym__list_decimal_parens] = STATE(228), - [sym__list_item_decimal_parens] = STATE(815), - [sym__list_lower_alpha_period] = STATE(228), - [sym__list_item_lower_alpha_period] = STATE(843), - [sym__list_lower_alpha_paren] = STATE(228), - [sym__list_item_lower_alpha_paren] = STATE(850), - [sym__list_lower_alpha_parens] = STATE(228), - [sym__list_item_lower_alpha_parens] = STATE(853), - [sym__list_upper_alpha_period] = STATE(228), - [sym__list_item_upper_alpha_period] = STATE(854), - [sym__list_upper_alpha_paren] = STATE(228), - [sym__list_item_upper_alpha_paren] = STATE(855), - [sym__list_upper_alpha_parens] = STATE(228), - [sym__list_item_upper_alpha_parens] = STATE(856), - [sym__list_lower_roman_period] = STATE(228), - [sym__list_item_lower_roman_period] = STATE(857), - [sym__list_lower_roman_paren] = STATE(228), - [sym__list_item_lower_roman_paren] = STATE(871), - [sym__list_lower_roman_parens] = STATE(228), - [sym__list_item_lower_roman_parens] = STATE(874), - [sym__list_upper_roman_period] = STATE(228), - [sym__list_item_upper_roman_period] = STATE(876), - [sym__list_upper_roman_paren] = STATE(228), - [sym__list_item_upper_roman_paren] = STATE(878), - [sym__list_upper_roman_parens] = STATE(228), - [sym__list_item_upper_roman_parens] = STATE(880), - [sym_table] = STATE(164), - [sym__table_content] = STATE(73), - [sym_table_separator] = STATE(73), - [sym_table_row] = STATE(77), - [sym_footnote] = STATE(164), - [sym_footnote_marker_begin] = STATE(1306), - [sym_footnote_content] = STATE(1179), - [sym_div] = STATE(164), - [sym__div_marker_begin] = STATE(1210), - [sym_code_block] = STATE(164), - [sym_raw_block] = STATE(164), - [sym_thematic_break] = STATE(164), - [sym_block_quote] = STATE(164), - [sym__block_quote_prefix] = STATE(301), - [sym_link_reference_definition] = STATE(164), - [sym_block_attribute] = STATE(164), - [sym__paragraph] = STATE(164), - [sym__paragraph_content] = STATE(889), - [sym__paragraph_inline_content] = STATE(896), - [sym__inline] = STATE(715), - [sym__symbol_fallback] = STATE(381), - [aux_sym__list_dash_repeat1] = STATE(445), - [aux_sym__list_plus_repeat1] = STATE(446), - [aux_sym__list_star_repeat1] = STATE(447), - [aux_sym__list_task_repeat1] = STATE(423), - [aux_sym__list_definition_repeat1] = STATE(655), - [aux_sym__list_decimal_period_repeat1] = STATE(656), - [aux_sym__list_decimal_paren_repeat1] = STATE(657), - [aux_sym__list_decimal_parens_repeat1] = STATE(658), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(659), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(660), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(661), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(662), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(663), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(664), - [aux_sym__list_lower_roman_period_repeat1] = STATE(665), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(666), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(667), - [aux_sym__list_upper_roman_period_repeat1] = STATE(668), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(669), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(670), - [aux_sym_table_repeat1] = STATE(73), - [aux_sym_footnote_content_repeat1] = STATE(17), - [aux_sym__block_quote_prefix_repeat1] = STATE(330), - [aux_sym__inline_repeat1] = STATE(381), - [anon_sym_LBRACK] = ACTIONS(216), - [anon_sym_PIPE] = ACTIONS(218), + [sym__block_with_heading] = STATE(1122), + [sym__block_element] = STATE(1122), + [sym_heading] = STATE(1122), + [sym_list] = STATE(1122), + [sym__list_dash] = STATE(1006), + [sym__list_item_dash] = STATE(636), + [sym__list_plus] = STATE(1006), + [sym__list_item_plus] = STATE(637), + [sym__list_star] = STATE(1006), + [sym__list_item_star] = STATE(671), + [sym__list_task] = STATE(1006), + [sym__list_item_task] = STATE(691), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(1006), + [sym__list_item_definition] = STATE(896), + [sym__list_decimal_period] = STATE(1006), + [sym__list_item_decimal_period] = STATE(841), + [sym__list_decimal_paren] = STATE(1006), + [sym__list_item_decimal_paren] = STATE(796), + [sym__list_decimal_parens] = STATE(1006), + [sym__list_item_decimal_parens] = STATE(716), + [sym__list_lower_alpha_period] = STATE(1006), + [sym__list_item_lower_alpha_period] = STATE(722), + [sym__list_lower_alpha_paren] = STATE(1006), + [sym__list_item_lower_alpha_paren] = STATE(801), + [sym__list_lower_alpha_parens] = STATE(1006), + [sym__list_item_lower_alpha_parens] = STATE(813), + [sym__list_upper_alpha_period] = STATE(1006), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(1006), + [sym__list_item_upper_alpha_paren] = STATE(706), + [sym__list_upper_alpha_parens] = STATE(1006), + [sym__list_item_upper_alpha_parens] = STATE(707), + [sym__list_lower_roman_period] = STATE(1006), + [sym__list_item_lower_roman_period] = STATE(725), + [sym__list_lower_roman_paren] = STATE(1006), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(1006), + [sym__list_item_lower_roman_parens] = STATE(736), + [sym__list_upper_roman_period] = STATE(1006), + [sym__list_item_upper_roman_period] = STATE(742), + [sym__list_upper_roman_paren] = STATE(1006), + [sym__list_item_upper_roman_paren] = STATE(743), + [sym__list_upper_roman_parens] = STATE(1006), + [sym__list_item_upper_roman_parens] = STATE(762), + [sym_list_item_content] = STATE(820), + [sym_table] = STATE(1122), + [sym__table_content] = STATE(310), + [sym_table_separator] = STATE(310), + [sym_table_row] = STATE(331), + [sym_footnote] = STATE(1122), + [sym_footnote_marker_begin] = STATE(1176), + [sym_div] = STATE(1122), + [sym__div_marker_begin] = STATE(1026), + [sym_code_block] = STATE(1122), + [sym_raw_block] = STATE(1122), + [sym_thematic_break] = STATE(1122), + [sym_block_quote] = STATE(1122), + [sym__block_quote_prefix] = STATE(231), + [sym_link_reference_definition] = STATE(1122), + [sym_block_attribute] = STATE(1122), + [sym__paragraph] = STATE(1122), + [sym__paragraph_content] = STATE(705), + [sym__paragraph_inline_content] = STATE(775), + [sym__inline] = STATE(616), + [sym__symbol_fallback] = STATE(297), + [aux_sym__list_dash_repeat1] = STATE(355), + [aux_sym__list_plus_repeat1] = STATE(356), + [aux_sym__list_star_repeat1] = STATE(362), + [aux_sym__list_task_repeat1] = STATE(346), + [aux_sym__list_definition_repeat1] = STATE(483), + [aux_sym__list_decimal_period_repeat1] = STATE(484), + [aux_sym__list_decimal_paren_repeat1] = STATE(485), + [aux_sym__list_decimal_parens_repeat1] = STATE(486), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(487), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(488), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(489), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(490), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(491), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(492), + [aux_sym__list_lower_roman_period_repeat1] = STATE(493), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(494), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(495), + [aux_sym__list_upper_roman_period_repeat1] = STATE(581), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(497), + [aux_sym_table_repeat1] = STATE(310), + [aux_sym__block_quote_prefix_repeat1] = STATE(253), + [aux_sym__inline_repeat1] = STATE(297), + [anon_sym_LBRACK] = ACTIONS(338), + [anon_sym_PIPE] = ACTIONS(340), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(342), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(222), - [sym__heading_begin] = ACTIONS(224), + [sym__newline] = ACTIONS(370), + [sym__heading_begin] = ACTIONS(346), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(226), + [sym__code_block_begin] = ACTIONS(348), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -9069,115 +8822,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(228), - [sym__block_quote_continuation] = ACTIONS(230), - [sym__thematic_break_dash] = ACTIONS(232), - [sym__thematic_break_star] = ACTIONS(232), + [sym__block_quote_begin] = ACTIONS(350), + [sym__block_quote_continuation] = ACTIONS(352), + [sym__thematic_break_dash] = ACTIONS(354), + [sym__thematic_break_star] = ACTIONS(354), }, [32] = { - [sym__block_with_heading] = STATE(1237), - [sym__block_element] = STATE(1237), - [sym_heading] = STATE(1237), - [sym_list] = STATE(1237), - [sym__list_dash] = STATE(1183), - [sym__list_item_dash] = STATE(727), - [sym__list_plus] = STATE(1183), - [sym__list_item_plus] = STATE(730), - [sym__list_star] = STATE(1183), - [sym__list_item_star] = STATE(759), - [sym__list_task] = STATE(1183), - [sym__list_item_task] = STATE(761), - [sym_list_marker_task] = STATE(46), - [sym__list_definition] = STATE(1183), - [sym__list_item_definition] = STATE(819), - [sym__list_decimal_period] = STATE(1183), - [sym__list_item_decimal_period] = STATE(852), - [sym__list_decimal_paren] = STATE(1183), - [sym__list_item_decimal_paren] = STATE(837), - [sym__list_decimal_parens] = STATE(1183), - [sym__list_item_decimal_parens] = STATE(815), - [sym__list_lower_alpha_period] = STATE(1183), - [sym__list_item_lower_alpha_period] = STATE(843), - [sym__list_lower_alpha_paren] = STATE(1183), - [sym__list_item_lower_alpha_paren] = STATE(850), - [sym__list_lower_alpha_parens] = STATE(1183), - [sym__list_item_lower_alpha_parens] = STATE(853), - [sym__list_upper_alpha_period] = STATE(1183), - [sym__list_item_upper_alpha_period] = STATE(854), - [sym__list_upper_alpha_paren] = STATE(1183), - [sym__list_item_upper_alpha_paren] = STATE(855), - [sym__list_upper_alpha_parens] = STATE(1183), - [sym__list_item_upper_alpha_parens] = STATE(856), - [sym__list_lower_roman_period] = STATE(1183), - [sym__list_item_lower_roman_period] = STATE(857), - [sym__list_lower_roman_paren] = STATE(1183), - [sym__list_item_lower_roman_paren] = STATE(871), - [sym__list_lower_roman_parens] = STATE(1183), - [sym__list_item_lower_roman_parens] = STATE(874), - [sym__list_upper_roman_period] = STATE(1183), - [sym__list_item_upper_roman_period] = STATE(876), - [sym__list_upper_roman_paren] = STATE(1183), - [sym__list_item_upper_roman_paren] = STATE(878), - [sym__list_upper_roman_parens] = STATE(1183), - [sym__list_item_upper_roman_parens] = STATE(880), - [sym_list_item_content] = STATE(822), - [sym_table] = STATE(1237), - [sym__table_content] = STATE(406), - [sym_table_separator] = STATE(406), - [sym_table_row] = STATE(417), - [sym_footnote] = STATE(1237), - [sym_footnote_marker_begin] = STATE(1298), - [sym_div] = STATE(1237), - [sym__div_marker_begin] = STATE(1119), - [sym_code_block] = STATE(1237), - [sym_raw_block] = STATE(1237), - [sym_thematic_break] = STATE(1237), - [sym_block_quote] = STATE(1237), - [sym__block_quote_prefix] = STATE(300), - [sym_link_reference_definition] = STATE(1237), - [sym_block_attribute] = STATE(1237), - [sym__paragraph] = STATE(1237), - [sym__paragraph_content] = STATE(799), - [sym__paragraph_inline_content] = STATE(896), - [sym__inline] = STATE(715), - [sym__symbol_fallback] = STATE(381), - [aux_sym__list_dash_repeat1] = STATE(453), - [aux_sym__list_plus_repeat1] = STATE(458), - [aux_sym__list_star_repeat1] = STATE(463), - [aux_sym__list_task_repeat1] = STATE(440), - [aux_sym__list_definition_repeat1] = STATE(562), - [aux_sym__list_decimal_period_repeat1] = STATE(563), - [aux_sym__list_decimal_paren_repeat1] = STATE(542), - [aux_sym__list_decimal_parens_repeat1] = STATE(564), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(565), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(566), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(567), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(568), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(569), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(570), - [aux_sym__list_lower_roman_period_repeat1] = STATE(571), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(572), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(573), - [aux_sym__list_upper_roman_period_repeat1] = STATE(574), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(575), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(576), - [aux_sym_table_repeat1] = STATE(406), - [aux_sym__block_quote_prefix_repeat1] = STATE(330), - [aux_sym__inline_repeat1] = STATE(381), - [anon_sym_LBRACK] = ACTIONS(389), - [anon_sym_PIPE] = ACTIONS(391), + [sym__block_with_heading] = STATE(1128), + [sym__block_element] = STATE(1128), + [sym_heading] = STATE(1128), + [sym_list] = STATE(1128), + [sym__list_dash] = STATE(1006), + [sym__list_item_dash] = STATE(636), + [sym__list_plus] = STATE(1006), + [sym__list_item_plus] = STATE(637), + [sym__list_star] = STATE(1006), + [sym__list_item_star] = STATE(671), + [sym__list_task] = STATE(1006), + [sym__list_item_task] = STATE(691), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(1006), + [sym__list_item_definition] = STATE(896), + [sym__list_decimal_period] = STATE(1006), + [sym__list_item_decimal_period] = STATE(841), + [sym__list_decimal_paren] = STATE(1006), + [sym__list_item_decimal_paren] = STATE(796), + [sym__list_decimal_parens] = STATE(1006), + [sym__list_item_decimal_parens] = STATE(716), + [sym__list_lower_alpha_period] = STATE(1006), + [sym__list_item_lower_alpha_period] = STATE(722), + [sym__list_lower_alpha_paren] = STATE(1006), + [sym__list_item_lower_alpha_paren] = STATE(801), + [sym__list_lower_alpha_parens] = STATE(1006), + [sym__list_item_lower_alpha_parens] = STATE(813), + [sym__list_upper_alpha_period] = STATE(1006), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(1006), + [sym__list_item_upper_alpha_paren] = STATE(706), + [sym__list_upper_alpha_parens] = STATE(1006), + [sym__list_item_upper_alpha_parens] = STATE(707), + [sym__list_lower_roman_period] = STATE(1006), + [sym__list_item_lower_roman_period] = STATE(725), + [sym__list_lower_roman_paren] = STATE(1006), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(1006), + [sym__list_item_lower_roman_parens] = STATE(736), + [sym__list_upper_roman_period] = STATE(1006), + [sym__list_item_upper_roman_period] = STATE(742), + [sym__list_upper_roman_paren] = STATE(1006), + [sym__list_item_upper_roman_paren] = STATE(743), + [sym__list_upper_roman_parens] = STATE(1006), + [sym__list_item_upper_roman_parens] = STATE(762), + [sym_list_item_content] = STATE(708), + [sym_table] = STATE(1128), + [sym__table_content] = STATE(310), + [sym_table_separator] = STATE(310), + [sym_table_row] = STATE(331), + [sym_footnote] = STATE(1128), + [sym_footnote_marker_begin] = STATE(1176), + [sym_div] = STATE(1128), + [sym__div_marker_begin] = STATE(1026), + [sym_code_block] = STATE(1128), + [sym_raw_block] = STATE(1128), + [sym_thematic_break] = STATE(1128), + [sym_block_quote] = STATE(1128), + [sym__block_quote_prefix] = STATE(231), + [sym_link_reference_definition] = STATE(1128), + [sym_block_attribute] = STATE(1128), + [sym__paragraph] = STATE(1128), + [sym__paragraph_content] = STATE(705), + [sym__paragraph_inline_content] = STATE(775), + [sym__inline] = STATE(616), + [sym__symbol_fallback] = STATE(297), + [aux_sym__list_dash_repeat1] = STATE(355), + [aux_sym__list_plus_repeat1] = STATE(356), + [aux_sym__list_star_repeat1] = STATE(362), + [aux_sym__list_task_repeat1] = STATE(346), + [aux_sym__list_definition_repeat1] = STATE(483), + [aux_sym__list_decimal_period_repeat1] = STATE(484), + [aux_sym__list_decimal_paren_repeat1] = STATE(485), + [aux_sym__list_decimal_parens_repeat1] = STATE(486), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(487), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(488), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(489), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(490), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(491), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(492), + [aux_sym__list_lower_roman_period_repeat1] = STATE(493), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(494), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(495), + [aux_sym__list_upper_roman_period_repeat1] = STATE(581), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(497), + [aux_sym_table_repeat1] = STATE(310), + [aux_sym__block_quote_prefix_repeat1] = STATE(253), + [aux_sym__inline_repeat1] = STATE(297), + [anon_sym_LBRACK] = ACTIONS(338), + [anon_sym_PIPE] = ACTIONS(340), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(342), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(395), - [sym__heading_begin] = ACTIONS(397), + [sym__newline] = ACTIONS(372), + [sym__heading_begin] = ACTIONS(346), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(399), + [sym__code_block_begin] = ACTIONS(348), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -9198,115 +8951,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(401), - [sym__block_quote_continuation] = ACTIONS(403), - [sym__thematic_break_dash] = ACTIONS(405), - [sym__thematic_break_star] = ACTIONS(405), + [sym__block_quote_begin] = ACTIONS(350), + [sym__block_quote_continuation] = ACTIONS(352), + [sym__thematic_break_dash] = ACTIONS(354), + [sym__thematic_break_star] = ACTIONS(354), }, [33] = { - [sym__block_with_heading] = STATE(1232), - [sym__block_element] = STATE(1232), - [sym_heading] = STATE(1232), - [sym_list] = STATE(1232), - [sym__list_dash] = STATE(1183), - [sym__list_item_dash] = STATE(727), - [sym__list_plus] = STATE(1183), - [sym__list_item_plus] = STATE(730), - [sym__list_star] = STATE(1183), - [sym__list_item_star] = STATE(759), - [sym__list_task] = STATE(1183), - [sym__list_item_task] = STATE(761), - [sym_list_marker_task] = STATE(46), - [sym__list_definition] = STATE(1183), - [sym__list_item_definition] = STATE(819), - [sym__list_decimal_period] = STATE(1183), - [sym__list_item_decimal_period] = STATE(852), - [sym__list_decimal_paren] = STATE(1183), - [sym__list_item_decimal_paren] = STATE(837), - [sym__list_decimal_parens] = STATE(1183), - [sym__list_item_decimal_parens] = STATE(815), - [sym__list_lower_alpha_period] = STATE(1183), - [sym__list_item_lower_alpha_period] = STATE(843), - [sym__list_lower_alpha_paren] = STATE(1183), - [sym__list_item_lower_alpha_paren] = STATE(850), - [sym__list_lower_alpha_parens] = STATE(1183), - [sym__list_item_lower_alpha_parens] = STATE(853), - [sym__list_upper_alpha_period] = STATE(1183), - [sym__list_item_upper_alpha_period] = STATE(854), - [sym__list_upper_alpha_paren] = STATE(1183), - [sym__list_item_upper_alpha_paren] = STATE(855), - [sym__list_upper_alpha_parens] = STATE(1183), - [sym__list_item_upper_alpha_parens] = STATE(856), - [sym__list_lower_roman_period] = STATE(1183), - [sym__list_item_lower_roman_period] = STATE(857), - [sym__list_lower_roman_paren] = STATE(1183), - [sym__list_item_lower_roman_paren] = STATE(871), - [sym__list_lower_roman_parens] = STATE(1183), - [sym__list_item_lower_roman_parens] = STATE(874), - [sym__list_upper_roman_period] = STATE(1183), - [sym__list_item_upper_roman_period] = STATE(876), - [sym__list_upper_roman_paren] = STATE(1183), - [sym__list_item_upper_roman_paren] = STATE(878), - [sym__list_upper_roman_parens] = STATE(1183), - [sym__list_item_upper_roman_parens] = STATE(880), - [sym_list_item_content] = STATE(798), - [sym_table] = STATE(1232), - [sym__table_content] = STATE(406), - [sym_table_separator] = STATE(406), - [sym_table_row] = STATE(417), - [sym_footnote] = STATE(1232), - [sym_footnote_marker_begin] = STATE(1298), - [sym_div] = STATE(1232), - [sym__div_marker_begin] = STATE(1119), - [sym_code_block] = STATE(1232), - [sym_raw_block] = STATE(1232), - [sym_thematic_break] = STATE(1232), - [sym_block_quote] = STATE(1232), - [sym__block_quote_prefix] = STATE(300), - [sym_link_reference_definition] = STATE(1232), - [sym_block_attribute] = STATE(1232), - [sym__paragraph] = STATE(1232), - [sym__paragraph_content] = STATE(799), - [sym__paragraph_inline_content] = STATE(896), - [sym__inline] = STATE(715), - [sym__symbol_fallback] = STATE(381), - [aux_sym__list_dash_repeat1] = STATE(453), - [aux_sym__list_plus_repeat1] = STATE(458), - [aux_sym__list_star_repeat1] = STATE(463), - [aux_sym__list_task_repeat1] = STATE(440), - [aux_sym__list_definition_repeat1] = STATE(562), - [aux_sym__list_decimal_period_repeat1] = STATE(563), - [aux_sym__list_decimal_paren_repeat1] = STATE(542), - [aux_sym__list_decimal_parens_repeat1] = STATE(564), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(565), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(566), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(567), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(568), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(569), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(570), - [aux_sym__list_lower_roman_period_repeat1] = STATE(571), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(572), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(573), - [aux_sym__list_upper_roman_period_repeat1] = STATE(574), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(575), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(576), - [aux_sym_table_repeat1] = STATE(406), - [aux_sym__block_quote_prefix_repeat1] = STATE(330), - [aux_sym__inline_repeat1] = STATE(381), - [anon_sym_LBRACK] = ACTIONS(389), - [anon_sym_PIPE] = ACTIONS(391), + [sym__block_with_heading] = STATE(1129), + [sym__block_element] = STATE(1129), + [sym_heading] = STATE(1129), + [sym_list] = STATE(1129), + [sym__list_dash] = STATE(1006), + [sym__list_item_dash] = STATE(636), + [sym__list_plus] = STATE(1006), + [sym__list_item_plus] = STATE(637), + [sym__list_star] = STATE(1006), + [sym__list_item_star] = STATE(671), + [sym__list_task] = STATE(1006), + [sym__list_item_task] = STATE(691), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(1006), + [sym__list_item_definition] = STATE(896), + [sym__list_decimal_period] = STATE(1006), + [sym__list_item_decimal_period] = STATE(841), + [sym__list_decimal_paren] = STATE(1006), + [sym__list_item_decimal_paren] = STATE(796), + [sym__list_decimal_parens] = STATE(1006), + [sym__list_item_decimal_parens] = STATE(716), + [sym__list_lower_alpha_period] = STATE(1006), + [sym__list_item_lower_alpha_period] = STATE(722), + [sym__list_lower_alpha_paren] = STATE(1006), + [sym__list_item_lower_alpha_paren] = STATE(801), + [sym__list_lower_alpha_parens] = STATE(1006), + [sym__list_item_lower_alpha_parens] = STATE(813), + [sym__list_upper_alpha_period] = STATE(1006), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(1006), + [sym__list_item_upper_alpha_paren] = STATE(706), + [sym__list_upper_alpha_parens] = STATE(1006), + [sym__list_item_upper_alpha_parens] = STATE(707), + [sym__list_lower_roman_period] = STATE(1006), + [sym__list_item_lower_roman_period] = STATE(725), + [sym__list_lower_roman_paren] = STATE(1006), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(1006), + [sym__list_item_lower_roman_parens] = STATE(736), + [sym__list_upper_roman_period] = STATE(1006), + [sym__list_item_upper_roman_period] = STATE(742), + [sym__list_upper_roman_paren] = STATE(1006), + [sym__list_item_upper_roman_paren] = STATE(743), + [sym__list_upper_roman_parens] = STATE(1006), + [sym__list_item_upper_roman_parens] = STATE(762), + [sym_list_item_content] = STATE(709), + [sym_table] = STATE(1129), + [sym__table_content] = STATE(310), + [sym_table_separator] = STATE(310), + [sym_table_row] = STATE(331), + [sym_footnote] = STATE(1129), + [sym_footnote_marker_begin] = STATE(1176), + [sym_div] = STATE(1129), + [sym__div_marker_begin] = STATE(1026), + [sym_code_block] = STATE(1129), + [sym_raw_block] = STATE(1129), + [sym_thematic_break] = STATE(1129), + [sym_block_quote] = STATE(1129), + [sym__block_quote_prefix] = STATE(231), + [sym_link_reference_definition] = STATE(1129), + [sym_block_attribute] = STATE(1129), + [sym__paragraph] = STATE(1129), + [sym__paragraph_content] = STATE(705), + [sym__paragraph_inline_content] = STATE(775), + [sym__inline] = STATE(616), + [sym__symbol_fallback] = STATE(297), + [aux_sym__list_dash_repeat1] = STATE(355), + [aux_sym__list_plus_repeat1] = STATE(356), + [aux_sym__list_star_repeat1] = STATE(362), + [aux_sym__list_task_repeat1] = STATE(346), + [aux_sym__list_definition_repeat1] = STATE(483), + [aux_sym__list_decimal_period_repeat1] = STATE(484), + [aux_sym__list_decimal_paren_repeat1] = STATE(485), + [aux_sym__list_decimal_parens_repeat1] = STATE(486), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(487), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(488), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(489), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(490), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(491), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(492), + [aux_sym__list_lower_roman_period_repeat1] = STATE(493), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(494), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(495), + [aux_sym__list_upper_roman_period_repeat1] = STATE(581), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(497), + [aux_sym_table_repeat1] = STATE(310), + [aux_sym__block_quote_prefix_repeat1] = STATE(253), + [aux_sym__inline_repeat1] = STATE(297), + [anon_sym_LBRACK] = ACTIONS(338), + [anon_sym_PIPE] = ACTIONS(340), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(342), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(407), - [sym__heading_begin] = ACTIONS(397), + [sym__newline] = ACTIONS(374), + [sym__heading_begin] = ACTIONS(346), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(399), + [sym__code_block_begin] = ACTIONS(348), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -9327,115 +9080,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(401), - [sym__block_quote_continuation] = ACTIONS(403), - [sym__thematic_break_dash] = ACTIONS(405), - [sym__thematic_break_star] = ACTIONS(405), + [sym__block_quote_begin] = ACTIONS(350), + [sym__block_quote_continuation] = ACTIONS(352), + [sym__thematic_break_dash] = ACTIONS(354), + [sym__thematic_break_star] = ACTIONS(354), }, [34] = { - [sym__block_with_heading] = STATE(1218), - [sym__block_element] = STATE(1218), - [sym_heading] = STATE(1218), - [sym_list] = STATE(1218), - [sym__list_dash] = STATE(1183), - [sym__list_item_dash] = STATE(727), - [sym__list_plus] = STATE(1183), - [sym__list_item_plus] = STATE(730), - [sym__list_star] = STATE(1183), - [sym__list_item_star] = STATE(759), - [sym__list_task] = STATE(1183), - [sym__list_item_task] = STATE(761), - [sym_list_marker_task] = STATE(46), - [sym__list_definition] = STATE(1183), - [sym__list_item_definition] = STATE(819), - [sym__list_decimal_period] = STATE(1183), - [sym__list_item_decimal_period] = STATE(852), - [sym__list_decimal_paren] = STATE(1183), - [sym__list_item_decimal_paren] = STATE(837), - [sym__list_decimal_parens] = STATE(1183), - [sym__list_item_decimal_parens] = STATE(815), - [sym__list_lower_alpha_period] = STATE(1183), - [sym__list_item_lower_alpha_period] = STATE(843), - [sym__list_lower_alpha_paren] = STATE(1183), - [sym__list_item_lower_alpha_paren] = STATE(850), - [sym__list_lower_alpha_parens] = STATE(1183), - [sym__list_item_lower_alpha_parens] = STATE(853), - [sym__list_upper_alpha_period] = STATE(1183), - [sym__list_item_upper_alpha_period] = STATE(854), - [sym__list_upper_alpha_paren] = STATE(1183), - [sym__list_item_upper_alpha_paren] = STATE(855), - [sym__list_upper_alpha_parens] = STATE(1183), - [sym__list_item_upper_alpha_parens] = STATE(856), - [sym__list_lower_roman_period] = STATE(1183), - [sym__list_item_lower_roman_period] = STATE(857), - [sym__list_lower_roman_paren] = STATE(1183), - [sym__list_item_lower_roman_paren] = STATE(871), - [sym__list_lower_roman_parens] = STATE(1183), - [sym__list_item_lower_roman_parens] = STATE(874), - [sym__list_upper_roman_period] = STATE(1183), - [sym__list_item_upper_roman_period] = STATE(876), - [sym__list_upper_roman_paren] = STATE(1183), - [sym__list_item_upper_roman_paren] = STATE(878), - [sym__list_upper_roman_parens] = STATE(1183), - [sym__list_item_upper_roman_parens] = STATE(880), - [sym_list_item_content] = STATE(776), - [sym_table] = STATE(1218), - [sym__table_content] = STATE(406), - [sym_table_separator] = STATE(406), - [sym_table_row] = STATE(417), - [sym_footnote] = STATE(1218), - [sym_footnote_marker_begin] = STATE(1298), - [sym_div] = STATE(1218), - [sym__div_marker_begin] = STATE(1119), - [sym_code_block] = STATE(1218), - [sym_raw_block] = STATE(1218), - [sym_thematic_break] = STATE(1218), - [sym_block_quote] = STATE(1218), - [sym__block_quote_prefix] = STATE(300), - [sym_link_reference_definition] = STATE(1218), - [sym_block_attribute] = STATE(1218), - [sym__paragraph] = STATE(1218), - [sym__paragraph_content] = STATE(799), - [sym__paragraph_inline_content] = STATE(896), - [sym__inline] = STATE(715), - [sym__symbol_fallback] = STATE(381), - [aux_sym__list_dash_repeat1] = STATE(453), - [aux_sym__list_plus_repeat1] = STATE(458), - [aux_sym__list_star_repeat1] = STATE(463), - [aux_sym__list_task_repeat1] = STATE(440), - [aux_sym__list_definition_repeat1] = STATE(562), - [aux_sym__list_decimal_period_repeat1] = STATE(563), - [aux_sym__list_decimal_paren_repeat1] = STATE(542), - [aux_sym__list_decimal_parens_repeat1] = STATE(564), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(565), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(566), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(567), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(568), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(569), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(570), - [aux_sym__list_lower_roman_period_repeat1] = STATE(571), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(572), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(573), - [aux_sym__list_upper_roman_period_repeat1] = STATE(574), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(575), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(576), - [aux_sym_table_repeat1] = STATE(406), - [aux_sym__block_quote_prefix_repeat1] = STATE(330), - [aux_sym__inline_repeat1] = STATE(381), - [anon_sym_LBRACK] = ACTIONS(389), - [anon_sym_PIPE] = ACTIONS(391), + [sym__block_with_heading] = STATE(920), + [sym__block_element] = STATE(920), + [sym_heading] = STATE(920), + [sym_list] = STATE(920), + [sym__list_dash] = STATE(1006), + [sym__list_item_dash] = STATE(636), + [sym__list_plus] = STATE(1006), + [sym__list_item_plus] = STATE(637), + [sym__list_star] = STATE(1006), + [sym__list_item_star] = STATE(671), + [sym__list_task] = STATE(1006), + [sym__list_item_task] = STATE(691), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(1006), + [sym__list_item_definition] = STATE(896), + [sym__list_decimal_period] = STATE(1006), + [sym__list_item_decimal_period] = STATE(841), + [sym__list_decimal_paren] = STATE(1006), + [sym__list_item_decimal_paren] = STATE(796), + [sym__list_decimal_parens] = STATE(1006), + [sym__list_item_decimal_parens] = STATE(716), + [sym__list_lower_alpha_period] = STATE(1006), + [sym__list_item_lower_alpha_period] = STATE(722), + [sym__list_lower_alpha_paren] = STATE(1006), + [sym__list_item_lower_alpha_paren] = STATE(801), + [sym__list_lower_alpha_parens] = STATE(1006), + [sym__list_item_lower_alpha_parens] = STATE(813), + [sym__list_upper_alpha_period] = STATE(1006), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(1006), + [sym__list_item_upper_alpha_paren] = STATE(706), + [sym__list_upper_alpha_parens] = STATE(1006), + [sym__list_item_upper_alpha_parens] = STATE(707), + [sym__list_lower_roman_period] = STATE(1006), + [sym__list_item_lower_roman_period] = STATE(725), + [sym__list_lower_roman_paren] = STATE(1006), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(1006), + [sym__list_item_lower_roman_parens] = STATE(736), + [sym__list_upper_roman_period] = STATE(1006), + [sym__list_item_upper_roman_period] = STATE(742), + [sym__list_upper_roman_paren] = STATE(1006), + [sym__list_item_upper_roman_paren] = STATE(743), + [sym__list_upper_roman_parens] = STATE(1006), + [sym__list_item_upper_roman_parens] = STATE(762), + [sym_table] = STATE(920), + [sym__table_content] = STATE(310), + [sym_table_separator] = STATE(310), + [sym_table_row] = STATE(331), + [sym_footnote] = STATE(920), + [sym_footnote_marker_begin] = STATE(1176), + [sym_footnote_content] = STATE(121), + [sym_div] = STATE(920), + [sym__div_marker_begin] = STATE(1026), + [sym_code_block] = STATE(920), + [sym_raw_block] = STATE(920), + [sym_thematic_break] = STATE(920), + [sym_block_quote] = STATE(920), + [sym__block_quote_prefix] = STATE(231), + [sym_link_reference_definition] = STATE(920), + [sym_block_attribute] = STATE(920), + [sym__paragraph] = STATE(920), + [sym__paragraph_content] = STATE(705), + [sym__paragraph_inline_content] = STATE(775), + [sym__inline] = STATE(616), + [sym__symbol_fallback] = STATE(297), + [aux_sym__list_dash_repeat1] = STATE(355), + [aux_sym__list_plus_repeat1] = STATE(356), + [aux_sym__list_star_repeat1] = STATE(362), + [aux_sym__list_task_repeat1] = STATE(346), + [aux_sym__list_definition_repeat1] = STATE(483), + [aux_sym__list_decimal_period_repeat1] = STATE(484), + [aux_sym__list_decimal_paren_repeat1] = STATE(485), + [aux_sym__list_decimal_parens_repeat1] = STATE(486), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(487), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(488), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(489), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(490), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(491), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(492), + [aux_sym__list_lower_roman_period_repeat1] = STATE(493), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(494), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(495), + [aux_sym__list_upper_roman_period_repeat1] = STATE(581), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(497), + [aux_sym_table_repeat1] = STATE(310), + [aux_sym__block_quote_prefix_repeat1] = STATE(253), + [aux_sym__inline_repeat1] = STATE(297), + [anon_sym_LBRACK] = ACTIONS(338), + [anon_sym_PIPE] = ACTIONS(340), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(342), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(409), - [sym__heading_begin] = ACTIONS(397), + [sym__newline] = ACTIONS(376), + [sym__heading_begin] = ACTIONS(346), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(399), + [sym__code_block_begin] = ACTIONS(348), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -9456,115 +9209,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(401), - [sym__block_quote_continuation] = ACTIONS(403), - [sym__thematic_break_dash] = ACTIONS(405), - [sym__thematic_break_star] = ACTIONS(405), + [sym__block_quote_begin] = ACTIONS(350), + [sym__block_quote_continuation] = ACTIONS(352), + [sym__thematic_break_dash] = ACTIONS(354), + [sym__thematic_break_star] = ACTIONS(354), }, [35] = { - [sym__block_with_heading] = STATE(1233), - [sym__block_element] = STATE(1233), - [sym_heading] = STATE(1233), - [sym_list] = STATE(1233), - [sym__list_dash] = STATE(1183), - [sym__list_item_dash] = STATE(727), - [sym__list_plus] = STATE(1183), - [sym__list_item_plus] = STATE(730), - [sym__list_star] = STATE(1183), - [sym__list_item_star] = STATE(759), - [sym__list_task] = STATE(1183), - [sym__list_item_task] = STATE(761), - [sym_list_marker_task] = STATE(46), - [sym__list_definition] = STATE(1183), - [sym__list_item_definition] = STATE(819), - [sym__list_decimal_period] = STATE(1183), - [sym__list_item_decimal_period] = STATE(852), - [sym__list_decimal_paren] = STATE(1183), - [sym__list_item_decimal_paren] = STATE(837), - [sym__list_decimal_parens] = STATE(1183), - [sym__list_item_decimal_parens] = STATE(815), - [sym__list_lower_alpha_period] = STATE(1183), - [sym__list_item_lower_alpha_period] = STATE(843), - [sym__list_lower_alpha_paren] = STATE(1183), - [sym__list_item_lower_alpha_paren] = STATE(850), - [sym__list_lower_alpha_parens] = STATE(1183), - [sym__list_item_lower_alpha_parens] = STATE(853), - [sym__list_upper_alpha_period] = STATE(1183), - [sym__list_item_upper_alpha_period] = STATE(854), - [sym__list_upper_alpha_paren] = STATE(1183), - [sym__list_item_upper_alpha_paren] = STATE(855), - [sym__list_upper_alpha_parens] = STATE(1183), - [sym__list_item_upper_alpha_parens] = STATE(856), - [sym__list_lower_roman_period] = STATE(1183), - [sym__list_item_lower_roman_period] = STATE(857), - [sym__list_lower_roman_paren] = STATE(1183), - [sym__list_item_lower_roman_paren] = STATE(871), - [sym__list_lower_roman_parens] = STATE(1183), - [sym__list_item_lower_roman_parens] = STATE(874), - [sym__list_upper_roman_period] = STATE(1183), - [sym__list_item_upper_roman_period] = STATE(876), - [sym__list_upper_roman_paren] = STATE(1183), - [sym__list_item_upper_roman_paren] = STATE(878), - [sym__list_upper_roman_parens] = STATE(1183), - [sym__list_item_upper_roman_parens] = STATE(880), - [sym_list_item_content] = STATE(801), - [sym_table] = STATE(1233), - [sym__table_content] = STATE(406), - [sym_table_separator] = STATE(406), - [sym_table_row] = STATE(417), - [sym_footnote] = STATE(1233), - [sym_footnote_marker_begin] = STATE(1298), - [sym_div] = STATE(1233), - [sym__div_marker_begin] = STATE(1119), - [sym_code_block] = STATE(1233), - [sym_raw_block] = STATE(1233), - [sym_thematic_break] = STATE(1233), - [sym_block_quote] = STATE(1233), - [sym__block_quote_prefix] = STATE(300), - [sym_link_reference_definition] = STATE(1233), - [sym_block_attribute] = STATE(1233), - [sym__paragraph] = STATE(1233), - [sym__paragraph_content] = STATE(799), - [sym__paragraph_inline_content] = STATE(896), - [sym__inline] = STATE(715), - [sym__symbol_fallback] = STATE(381), - [aux_sym__list_dash_repeat1] = STATE(453), - [aux_sym__list_plus_repeat1] = STATE(458), - [aux_sym__list_star_repeat1] = STATE(463), - [aux_sym__list_task_repeat1] = STATE(440), - [aux_sym__list_definition_repeat1] = STATE(562), - [aux_sym__list_decimal_period_repeat1] = STATE(563), - [aux_sym__list_decimal_paren_repeat1] = STATE(542), - [aux_sym__list_decimal_parens_repeat1] = STATE(564), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(565), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(566), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(567), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(568), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(569), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(570), - [aux_sym__list_lower_roman_period_repeat1] = STATE(571), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(572), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(573), - [aux_sym__list_upper_roman_period_repeat1] = STATE(574), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(575), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(576), - [aux_sym_table_repeat1] = STATE(406), - [aux_sym__block_quote_prefix_repeat1] = STATE(330), - [aux_sym__inline_repeat1] = STATE(381), - [anon_sym_LBRACK] = ACTIONS(389), - [anon_sym_PIPE] = ACTIONS(391), + [sym__block_with_heading] = STATE(1123), + [sym__block_element] = STATE(1123), + [sym_heading] = STATE(1123), + [sym_list] = STATE(1123), + [sym__list_dash] = STATE(1006), + [sym__list_item_dash] = STATE(636), + [sym__list_plus] = STATE(1006), + [sym__list_item_plus] = STATE(637), + [sym__list_star] = STATE(1006), + [sym__list_item_star] = STATE(671), + [sym__list_task] = STATE(1006), + [sym__list_item_task] = STATE(691), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(1006), + [sym__list_item_definition] = STATE(896), + [sym__list_decimal_period] = STATE(1006), + [sym__list_item_decimal_period] = STATE(841), + [sym__list_decimal_paren] = STATE(1006), + [sym__list_item_decimal_paren] = STATE(796), + [sym__list_decimal_parens] = STATE(1006), + [sym__list_item_decimal_parens] = STATE(716), + [sym__list_lower_alpha_period] = STATE(1006), + [sym__list_item_lower_alpha_period] = STATE(722), + [sym__list_lower_alpha_paren] = STATE(1006), + [sym__list_item_lower_alpha_paren] = STATE(801), + [sym__list_lower_alpha_parens] = STATE(1006), + [sym__list_item_lower_alpha_parens] = STATE(813), + [sym__list_upper_alpha_period] = STATE(1006), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(1006), + [sym__list_item_upper_alpha_paren] = STATE(706), + [sym__list_upper_alpha_parens] = STATE(1006), + [sym__list_item_upper_alpha_parens] = STATE(707), + [sym__list_lower_roman_period] = STATE(1006), + [sym__list_item_lower_roman_period] = STATE(725), + [sym__list_lower_roman_paren] = STATE(1006), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(1006), + [sym__list_item_lower_roman_parens] = STATE(736), + [sym__list_upper_roman_period] = STATE(1006), + [sym__list_item_upper_roman_period] = STATE(742), + [sym__list_upper_roman_paren] = STATE(1006), + [sym__list_item_upper_roman_paren] = STATE(743), + [sym__list_upper_roman_parens] = STATE(1006), + [sym__list_item_upper_roman_parens] = STATE(762), + [sym_list_item_content] = STATE(821), + [sym_table] = STATE(1123), + [sym__table_content] = STATE(310), + [sym_table_separator] = STATE(310), + [sym_table_row] = STATE(331), + [sym_footnote] = STATE(1123), + [sym_footnote_marker_begin] = STATE(1176), + [sym_div] = STATE(1123), + [sym__div_marker_begin] = STATE(1026), + [sym_code_block] = STATE(1123), + [sym_raw_block] = STATE(1123), + [sym_thematic_break] = STATE(1123), + [sym_block_quote] = STATE(1123), + [sym__block_quote_prefix] = STATE(231), + [sym_link_reference_definition] = STATE(1123), + [sym_block_attribute] = STATE(1123), + [sym__paragraph] = STATE(1123), + [sym__paragraph_content] = STATE(705), + [sym__paragraph_inline_content] = STATE(775), + [sym__inline] = STATE(616), + [sym__symbol_fallback] = STATE(297), + [aux_sym__list_dash_repeat1] = STATE(355), + [aux_sym__list_plus_repeat1] = STATE(356), + [aux_sym__list_star_repeat1] = STATE(362), + [aux_sym__list_task_repeat1] = STATE(346), + [aux_sym__list_definition_repeat1] = STATE(483), + [aux_sym__list_decimal_period_repeat1] = STATE(484), + [aux_sym__list_decimal_paren_repeat1] = STATE(485), + [aux_sym__list_decimal_parens_repeat1] = STATE(486), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(487), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(488), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(489), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(490), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(491), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(492), + [aux_sym__list_lower_roman_period_repeat1] = STATE(493), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(494), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(495), + [aux_sym__list_upper_roman_period_repeat1] = STATE(581), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(497), + [aux_sym_table_repeat1] = STATE(310), + [aux_sym__block_quote_prefix_repeat1] = STATE(253), + [aux_sym__inline_repeat1] = STATE(297), + [anon_sym_LBRACK] = ACTIONS(338), + [anon_sym_PIPE] = ACTIONS(340), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(342), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(411), - [sym__heading_begin] = ACTIONS(397), + [sym__newline] = ACTIONS(378), + [sym__heading_begin] = ACTIONS(346), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(399), + [sym__code_block_begin] = ACTIONS(348), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -9585,115 +9338,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(401), - [sym__block_quote_continuation] = ACTIONS(403), - [sym__thematic_break_dash] = ACTIONS(405), - [sym__thematic_break_star] = ACTIONS(405), + [sym__block_quote_begin] = ACTIONS(350), + [sym__block_quote_continuation] = ACTIONS(352), + [sym__thematic_break_dash] = ACTIONS(354), + [sym__thematic_break_star] = ACTIONS(354), }, [36] = { - [sym__block_with_heading] = STATE(1234), - [sym__block_element] = STATE(1234), - [sym_heading] = STATE(1234), - [sym_list] = STATE(1234), - [sym__list_dash] = STATE(1183), - [sym__list_item_dash] = STATE(727), - [sym__list_plus] = STATE(1183), - [sym__list_item_plus] = STATE(730), - [sym__list_star] = STATE(1183), - [sym__list_item_star] = STATE(759), - [sym__list_task] = STATE(1183), - [sym__list_item_task] = STATE(761), - [sym_list_marker_task] = STATE(46), - [sym__list_definition] = STATE(1183), - [sym__list_item_definition] = STATE(819), - [sym__list_decimal_period] = STATE(1183), - [sym__list_item_decimal_period] = STATE(852), - [sym__list_decimal_paren] = STATE(1183), - [sym__list_item_decimal_paren] = STATE(837), - [sym__list_decimal_parens] = STATE(1183), - [sym__list_item_decimal_parens] = STATE(815), - [sym__list_lower_alpha_period] = STATE(1183), - [sym__list_item_lower_alpha_period] = STATE(843), - [sym__list_lower_alpha_paren] = STATE(1183), - [sym__list_item_lower_alpha_paren] = STATE(850), - [sym__list_lower_alpha_parens] = STATE(1183), - [sym__list_item_lower_alpha_parens] = STATE(853), - [sym__list_upper_alpha_period] = STATE(1183), - [sym__list_item_upper_alpha_period] = STATE(854), - [sym__list_upper_alpha_paren] = STATE(1183), - [sym__list_item_upper_alpha_paren] = STATE(855), - [sym__list_upper_alpha_parens] = STATE(1183), - [sym__list_item_upper_alpha_parens] = STATE(856), - [sym__list_lower_roman_period] = STATE(1183), - [sym__list_item_lower_roman_period] = STATE(857), - [sym__list_lower_roman_paren] = STATE(1183), - [sym__list_item_lower_roman_paren] = STATE(871), - [sym__list_lower_roman_parens] = STATE(1183), - [sym__list_item_lower_roman_parens] = STATE(874), - [sym__list_upper_roman_period] = STATE(1183), - [sym__list_item_upper_roman_period] = STATE(876), - [sym__list_upper_roman_paren] = STATE(1183), - [sym__list_item_upper_roman_paren] = STATE(878), - [sym__list_upper_roman_parens] = STATE(1183), - [sym__list_item_upper_roman_parens] = STATE(880), - [sym_list_item_content] = STATE(802), - [sym_table] = STATE(1234), - [sym__table_content] = STATE(406), - [sym_table_separator] = STATE(406), - [sym_table_row] = STATE(417), - [sym_footnote] = STATE(1234), - [sym_footnote_marker_begin] = STATE(1298), - [sym_div] = STATE(1234), - [sym__div_marker_begin] = STATE(1119), - [sym_code_block] = STATE(1234), - [sym_raw_block] = STATE(1234), - [sym_thematic_break] = STATE(1234), - [sym_block_quote] = STATE(1234), - [sym__block_quote_prefix] = STATE(300), - [sym_link_reference_definition] = STATE(1234), - [sym_block_attribute] = STATE(1234), - [sym__paragraph] = STATE(1234), - [sym__paragraph_content] = STATE(799), - [sym__paragraph_inline_content] = STATE(896), - [sym__inline] = STATE(715), - [sym__symbol_fallback] = STATE(381), - [aux_sym__list_dash_repeat1] = STATE(453), - [aux_sym__list_plus_repeat1] = STATE(458), - [aux_sym__list_star_repeat1] = STATE(463), - [aux_sym__list_task_repeat1] = STATE(440), - [aux_sym__list_definition_repeat1] = STATE(562), - [aux_sym__list_decimal_period_repeat1] = STATE(563), - [aux_sym__list_decimal_paren_repeat1] = STATE(542), - [aux_sym__list_decimal_parens_repeat1] = STATE(564), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(565), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(566), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(567), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(568), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(569), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(570), - [aux_sym__list_lower_roman_period_repeat1] = STATE(571), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(572), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(573), - [aux_sym__list_upper_roman_period_repeat1] = STATE(574), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(575), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(576), - [aux_sym_table_repeat1] = STATE(406), - [aux_sym__block_quote_prefix_repeat1] = STATE(330), - [aux_sym__inline_repeat1] = STATE(381), - [anon_sym_LBRACK] = ACTIONS(389), - [anon_sym_PIPE] = ACTIONS(391), + [sym__block_with_heading] = STATE(1124), + [sym__block_element] = STATE(1124), + [sym_heading] = STATE(1124), + [sym_list] = STATE(1124), + [sym__list_dash] = STATE(1006), + [sym__list_item_dash] = STATE(636), + [sym__list_plus] = STATE(1006), + [sym__list_item_plus] = STATE(637), + [sym__list_star] = STATE(1006), + [sym__list_item_star] = STATE(671), + [sym__list_task] = STATE(1006), + [sym__list_item_task] = STATE(691), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(1006), + [sym__list_item_definition] = STATE(896), + [sym__list_decimal_period] = STATE(1006), + [sym__list_item_decimal_period] = STATE(841), + [sym__list_decimal_paren] = STATE(1006), + [sym__list_item_decimal_paren] = STATE(796), + [sym__list_decimal_parens] = STATE(1006), + [sym__list_item_decimal_parens] = STATE(716), + [sym__list_lower_alpha_period] = STATE(1006), + [sym__list_item_lower_alpha_period] = STATE(722), + [sym__list_lower_alpha_paren] = STATE(1006), + [sym__list_item_lower_alpha_paren] = STATE(801), + [sym__list_lower_alpha_parens] = STATE(1006), + [sym__list_item_lower_alpha_parens] = STATE(813), + [sym__list_upper_alpha_period] = STATE(1006), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(1006), + [sym__list_item_upper_alpha_paren] = STATE(706), + [sym__list_upper_alpha_parens] = STATE(1006), + [sym__list_item_upper_alpha_parens] = STATE(707), + [sym__list_lower_roman_period] = STATE(1006), + [sym__list_item_lower_roman_period] = STATE(725), + [sym__list_lower_roman_paren] = STATE(1006), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(1006), + [sym__list_item_lower_roman_parens] = STATE(736), + [sym__list_upper_roman_period] = STATE(1006), + [sym__list_item_upper_roman_period] = STATE(742), + [sym__list_upper_roman_paren] = STATE(1006), + [sym__list_item_upper_roman_paren] = STATE(743), + [sym__list_upper_roman_parens] = STATE(1006), + [sym__list_item_upper_roman_parens] = STATE(762), + [sym_list_item_content] = STATE(822), + [sym_table] = STATE(1124), + [sym__table_content] = STATE(310), + [sym_table_separator] = STATE(310), + [sym_table_row] = STATE(331), + [sym_footnote] = STATE(1124), + [sym_footnote_marker_begin] = STATE(1176), + [sym_div] = STATE(1124), + [sym__div_marker_begin] = STATE(1026), + [sym_code_block] = STATE(1124), + [sym_raw_block] = STATE(1124), + [sym_thematic_break] = STATE(1124), + [sym_block_quote] = STATE(1124), + [sym__block_quote_prefix] = STATE(231), + [sym_link_reference_definition] = STATE(1124), + [sym_block_attribute] = STATE(1124), + [sym__paragraph] = STATE(1124), + [sym__paragraph_content] = STATE(705), + [sym__paragraph_inline_content] = STATE(775), + [sym__inline] = STATE(616), + [sym__symbol_fallback] = STATE(297), + [aux_sym__list_dash_repeat1] = STATE(355), + [aux_sym__list_plus_repeat1] = STATE(356), + [aux_sym__list_star_repeat1] = STATE(362), + [aux_sym__list_task_repeat1] = STATE(346), + [aux_sym__list_definition_repeat1] = STATE(483), + [aux_sym__list_decimal_period_repeat1] = STATE(484), + [aux_sym__list_decimal_paren_repeat1] = STATE(485), + [aux_sym__list_decimal_parens_repeat1] = STATE(486), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(487), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(488), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(489), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(490), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(491), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(492), + [aux_sym__list_lower_roman_period_repeat1] = STATE(493), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(494), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(495), + [aux_sym__list_upper_roman_period_repeat1] = STATE(581), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(497), + [aux_sym_table_repeat1] = STATE(310), + [aux_sym__block_quote_prefix_repeat1] = STATE(253), + [aux_sym__inline_repeat1] = STATE(297), + [anon_sym_LBRACK] = ACTIONS(338), + [anon_sym_PIPE] = ACTIONS(340), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(342), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(413), - [sym__heading_begin] = ACTIONS(397), + [sym__newline] = ACTIONS(380), + [sym__heading_begin] = ACTIONS(346), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(399), + [sym__code_block_begin] = ACTIONS(348), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -9714,115 +9467,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(401), - [sym__block_quote_continuation] = ACTIONS(403), - [sym__thematic_break_dash] = ACTIONS(405), - [sym__thematic_break_star] = ACTIONS(405), + [sym__block_quote_begin] = ACTIONS(350), + [sym__block_quote_continuation] = ACTIONS(352), + [sym__thematic_break_dash] = ACTIONS(354), + [sym__thematic_break_star] = ACTIONS(354), }, [37] = { - [sym__block_with_heading] = STATE(1235), - [sym__block_element] = STATE(1235), - [sym_heading] = STATE(1235), - [sym_list] = STATE(1235), - [sym__list_dash] = STATE(1183), - [sym__list_item_dash] = STATE(727), - [sym__list_plus] = STATE(1183), - [sym__list_item_plus] = STATE(730), - [sym__list_star] = STATE(1183), - [sym__list_item_star] = STATE(759), - [sym__list_task] = STATE(1183), - [sym__list_item_task] = STATE(761), - [sym_list_marker_task] = STATE(46), - [sym__list_definition] = STATE(1183), - [sym__list_item_definition] = STATE(819), - [sym__list_decimal_period] = STATE(1183), - [sym__list_item_decimal_period] = STATE(852), - [sym__list_decimal_paren] = STATE(1183), - [sym__list_item_decimal_paren] = STATE(837), - [sym__list_decimal_parens] = STATE(1183), - [sym__list_item_decimal_parens] = STATE(815), - [sym__list_lower_alpha_period] = STATE(1183), - [sym__list_item_lower_alpha_period] = STATE(843), - [sym__list_lower_alpha_paren] = STATE(1183), - [sym__list_item_lower_alpha_paren] = STATE(850), - [sym__list_lower_alpha_parens] = STATE(1183), - [sym__list_item_lower_alpha_parens] = STATE(853), - [sym__list_upper_alpha_period] = STATE(1183), - [sym__list_item_upper_alpha_period] = STATE(854), - [sym__list_upper_alpha_paren] = STATE(1183), - [sym__list_item_upper_alpha_paren] = STATE(855), - [sym__list_upper_alpha_parens] = STATE(1183), - [sym__list_item_upper_alpha_parens] = STATE(856), - [sym__list_lower_roman_period] = STATE(1183), - [sym__list_item_lower_roman_period] = STATE(857), - [sym__list_lower_roman_paren] = STATE(1183), - [sym__list_item_lower_roman_paren] = STATE(871), - [sym__list_lower_roman_parens] = STATE(1183), - [sym__list_item_lower_roman_parens] = STATE(874), - [sym__list_upper_roman_period] = STATE(1183), - [sym__list_item_upper_roman_period] = STATE(876), - [sym__list_upper_roman_paren] = STATE(1183), - [sym__list_item_upper_roman_paren] = STATE(878), - [sym__list_upper_roman_parens] = STATE(1183), - [sym__list_item_upper_roman_parens] = STATE(880), - [sym_list_item_content] = STATE(811), - [sym_table] = STATE(1235), - [sym__table_content] = STATE(406), - [sym_table_separator] = STATE(406), - [sym_table_row] = STATE(417), - [sym_footnote] = STATE(1235), - [sym_footnote_marker_begin] = STATE(1298), - [sym_div] = STATE(1235), - [sym__div_marker_begin] = STATE(1119), - [sym_code_block] = STATE(1235), - [sym_raw_block] = STATE(1235), - [sym_thematic_break] = STATE(1235), - [sym_block_quote] = STATE(1235), - [sym__block_quote_prefix] = STATE(300), - [sym_link_reference_definition] = STATE(1235), - [sym_block_attribute] = STATE(1235), - [sym__paragraph] = STATE(1235), - [sym__paragraph_content] = STATE(799), - [sym__paragraph_inline_content] = STATE(896), - [sym__inline] = STATE(715), - [sym__symbol_fallback] = STATE(381), - [aux_sym__list_dash_repeat1] = STATE(453), - [aux_sym__list_plus_repeat1] = STATE(458), - [aux_sym__list_star_repeat1] = STATE(463), - [aux_sym__list_task_repeat1] = STATE(440), - [aux_sym__list_definition_repeat1] = STATE(562), - [aux_sym__list_decimal_period_repeat1] = STATE(563), - [aux_sym__list_decimal_paren_repeat1] = STATE(542), - [aux_sym__list_decimal_parens_repeat1] = STATE(564), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(565), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(566), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(567), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(568), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(569), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(570), - [aux_sym__list_lower_roman_period_repeat1] = STATE(571), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(572), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(573), - [aux_sym__list_upper_roman_period_repeat1] = STATE(574), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(575), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(576), - [aux_sym_table_repeat1] = STATE(406), - [aux_sym__block_quote_prefix_repeat1] = STATE(330), - [aux_sym__inline_repeat1] = STATE(381), - [anon_sym_LBRACK] = ACTIONS(389), - [anon_sym_PIPE] = ACTIONS(391), + [sym__block_with_heading] = STATE(1125), + [sym__block_element] = STATE(1125), + [sym_heading] = STATE(1125), + [sym_list] = STATE(1125), + [sym__list_dash] = STATE(1006), + [sym__list_item_dash] = STATE(636), + [sym__list_plus] = STATE(1006), + [sym__list_item_plus] = STATE(637), + [sym__list_star] = STATE(1006), + [sym__list_item_star] = STATE(671), + [sym__list_task] = STATE(1006), + [sym__list_item_task] = STATE(691), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(1006), + [sym__list_item_definition] = STATE(896), + [sym__list_decimal_period] = STATE(1006), + [sym__list_item_decimal_period] = STATE(841), + [sym__list_decimal_paren] = STATE(1006), + [sym__list_item_decimal_paren] = STATE(796), + [sym__list_decimal_parens] = STATE(1006), + [sym__list_item_decimal_parens] = STATE(716), + [sym__list_lower_alpha_period] = STATE(1006), + [sym__list_item_lower_alpha_period] = STATE(722), + [sym__list_lower_alpha_paren] = STATE(1006), + [sym__list_item_lower_alpha_paren] = STATE(801), + [sym__list_lower_alpha_parens] = STATE(1006), + [sym__list_item_lower_alpha_parens] = STATE(813), + [sym__list_upper_alpha_period] = STATE(1006), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(1006), + [sym__list_item_upper_alpha_paren] = STATE(706), + [sym__list_upper_alpha_parens] = STATE(1006), + [sym__list_item_upper_alpha_parens] = STATE(707), + [sym__list_lower_roman_period] = STATE(1006), + [sym__list_item_lower_roman_period] = STATE(725), + [sym__list_lower_roman_paren] = STATE(1006), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(1006), + [sym__list_item_lower_roman_parens] = STATE(736), + [sym__list_upper_roman_period] = STATE(1006), + [sym__list_item_upper_roman_period] = STATE(742), + [sym__list_upper_roman_paren] = STATE(1006), + [sym__list_item_upper_roman_paren] = STATE(743), + [sym__list_upper_roman_parens] = STATE(1006), + [sym__list_item_upper_roman_parens] = STATE(762), + [sym_list_item_content] = STATE(854), + [sym_table] = STATE(1125), + [sym__table_content] = STATE(310), + [sym_table_separator] = STATE(310), + [sym_table_row] = STATE(331), + [sym_footnote] = STATE(1125), + [sym_footnote_marker_begin] = STATE(1176), + [sym_div] = STATE(1125), + [sym__div_marker_begin] = STATE(1026), + [sym_code_block] = STATE(1125), + [sym_raw_block] = STATE(1125), + [sym_thematic_break] = STATE(1125), + [sym_block_quote] = STATE(1125), + [sym__block_quote_prefix] = STATE(231), + [sym_link_reference_definition] = STATE(1125), + [sym_block_attribute] = STATE(1125), + [sym__paragraph] = STATE(1125), + [sym__paragraph_content] = STATE(705), + [sym__paragraph_inline_content] = STATE(775), + [sym__inline] = STATE(616), + [sym__symbol_fallback] = STATE(297), + [aux_sym__list_dash_repeat1] = STATE(355), + [aux_sym__list_plus_repeat1] = STATE(356), + [aux_sym__list_star_repeat1] = STATE(362), + [aux_sym__list_task_repeat1] = STATE(346), + [aux_sym__list_definition_repeat1] = STATE(483), + [aux_sym__list_decimal_period_repeat1] = STATE(484), + [aux_sym__list_decimal_paren_repeat1] = STATE(485), + [aux_sym__list_decimal_parens_repeat1] = STATE(486), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(487), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(488), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(489), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(490), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(491), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(492), + [aux_sym__list_lower_roman_period_repeat1] = STATE(493), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(494), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(495), + [aux_sym__list_upper_roman_period_repeat1] = STATE(581), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(497), + [aux_sym_table_repeat1] = STATE(310), + [aux_sym__block_quote_prefix_repeat1] = STATE(253), + [aux_sym__inline_repeat1] = STATE(297), + [anon_sym_LBRACK] = ACTIONS(338), + [anon_sym_PIPE] = ACTIONS(340), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(342), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(415), - [sym__heading_begin] = ACTIONS(397), + [sym__newline] = ACTIONS(382), + [sym__heading_begin] = ACTIONS(346), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(399), + [sym__code_block_begin] = ACTIONS(348), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -9843,115 +9596,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(401), - [sym__block_quote_continuation] = ACTIONS(403), - [sym__thematic_break_dash] = ACTIONS(405), - [sym__thematic_break_star] = ACTIONS(405), + [sym__block_quote_begin] = ACTIONS(350), + [sym__block_quote_continuation] = ACTIONS(352), + [sym__thematic_break_dash] = ACTIONS(354), + [sym__thematic_break_star] = ACTIONS(354), }, [38] = { - [sym__block_with_heading] = STATE(1236), - [sym__block_element] = STATE(1236), - [sym_heading] = STATE(1236), - [sym_list] = STATE(1236), - [sym__list_dash] = STATE(1183), - [sym__list_item_dash] = STATE(727), - [sym__list_plus] = STATE(1183), - [sym__list_item_plus] = STATE(730), - [sym__list_star] = STATE(1183), - [sym__list_item_star] = STATE(759), - [sym__list_task] = STATE(1183), - [sym__list_item_task] = STATE(761), - [sym_list_marker_task] = STATE(46), - [sym__list_definition] = STATE(1183), - [sym__list_item_definition] = STATE(819), - [sym__list_decimal_period] = STATE(1183), - [sym__list_item_decimal_period] = STATE(852), - [sym__list_decimal_paren] = STATE(1183), - [sym__list_item_decimal_paren] = STATE(837), - [sym__list_decimal_parens] = STATE(1183), - [sym__list_item_decimal_parens] = STATE(815), - [sym__list_lower_alpha_period] = STATE(1183), - [sym__list_item_lower_alpha_period] = STATE(843), - [sym__list_lower_alpha_paren] = STATE(1183), - [sym__list_item_lower_alpha_paren] = STATE(850), - [sym__list_lower_alpha_parens] = STATE(1183), - [sym__list_item_lower_alpha_parens] = STATE(853), - [sym__list_upper_alpha_period] = STATE(1183), - [sym__list_item_upper_alpha_period] = STATE(854), - [sym__list_upper_alpha_paren] = STATE(1183), - [sym__list_item_upper_alpha_paren] = STATE(855), - [sym__list_upper_alpha_parens] = STATE(1183), - [sym__list_item_upper_alpha_parens] = STATE(856), - [sym__list_lower_roman_period] = STATE(1183), - [sym__list_item_lower_roman_period] = STATE(857), - [sym__list_lower_roman_paren] = STATE(1183), - [sym__list_item_lower_roman_paren] = STATE(871), - [sym__list_lower_roman_parens] = STATE(1183), - [sym__list_item_lower_roman_parens] = STATE(874), - [sym__list_upper_roman_period] = STATE(1183), - [sym__list_item_upper_roman_period] = STATE(876), - [sym__list_upper_roman_paren] = STATE(1183), - [sym__list_item_upper_roman_paren] = STATE(878), - [sym__list_upper_roman_parens] = STATE(1183), - [sym__list_item_upper_roman_parens] = STATE(880), - [sym_list_item_content] = STATE(820), - [sym_table] = STATE(1236), - [sym__table_content] = STATE(406), - [sym_table_separator] = STATE(406), - [sym_table_row] = STATE(417), - [sym_footnote] = STATE(1236), - [sym_footnote_marker_begin] = STATE(1298), - [sym_div] = STATE(1236), - [sym__div_marker_begin] = STATE(1119), - [sym_code_block] = STATE(1236), - [sym_raw_block] = STATE(1236), - [sym_thematic_break] = STATE(1236), - [sym_block_quote] = STATE(1236), - [sym__block_quote_prefix] = STATE(300), - [sym_link_reference_definition] = STATE(1236), - [sym_block_attribute] = STATE(1236), - [sym__paragraph] = STATE(1236), - [sym__paragraph_content] = STATE(799), - [sym__paragraph_inline_content] = STATE(896), - [sym__inline] = STATE(715), - [sym__symbol_fallback] = STATE(381), - [aux_sym__list_dash_repeat1] = STATE(453), - [aux_sym__list_plus_repeat1] = STATE(458), - [aux_sym__list_star_repeat1] = STATE(463), - [aux_sym__list_task_repeat1] = STATE(440), - [aux_sym__list_definition_repeat1] = STATE(562), - [aux_sym__list_decimal_period_repeat1] = STATE(563), - [aux_sym__list_decimal_paren_repeat1] = STATE(542), - [aux_sym__list_decimal_parens_repeat1] = STATE(564), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(565), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(566), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(567), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(568), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(569), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(570), - [aux_sym__list_lower_roman_period_repeat1] = STATE(571), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(572), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(573), - [aux_sym__list_upper_roman_period_repeat1] = STATE(574), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(575), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(576), - [aux_sym_table_repeat1] = STATE(406), - [aux_sym__block_quote_prefix_repeat1] = STATE(330), - [aux_sym__inline_repeat1] = STATE(381), - [anon_sym_LBRACK] = ACTIONS(389), - [anon_sym_PIPE] = ACTIONS(391), + [sym__block_with_heading] = STATE(1130), + [sym__block_element] = STATE(1130), + [sym_heading] = STATE(1130), + [sym_list] = STATE(1130), + [sym__list_dash] = STATE(1006), + [sym__list_item_dash] = STATE(636), + [sym__list_plus] = STATE(1006), + [sym__list_item_plus] = STATE(637), + [sym__list_star] = STATE(1006), + [sym__list_item_star] = STATE(671), + [sym__list_task] = STATE(1006), + [sym__list_item_task] = STATE(691), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(1006), + [sym__list_item_definition] = STATE(896), + [sym__list_decimal_period] = STATE(1006), + [sym__list_item_decimal_period] = STATE(841), + [sym__list_decimal_paren] = STATE(1006), + [sym__list_item_decimal_paren] = STATE(796), + [sym__list_decimal_parens] = STATE(1006), + [sym__list_item_decimal_parens] = STATE(716), + [sym__list_lower_alpha_period] = STATE(1006), + [sym__list_item_lower_alpha_period] = STATE(722), + [sym__list_lower_alpha_paren] = STATE(1006), + [sym__list_item_lower_alpha_paren] = STATE(801), + [sym__list_lower_alpha_parens] = STATE(1006), + [sym__list_item_lower_alpha_parens] = STATE(813), + [sym__list_upper_alpha_period] = STATE(1006), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(1006), + [sym__list_item_upper_alpha_paren] = STATE(706), + [sym__list_upper_alpha_parens] = STATE(1006), + [sym__list_item_upper_alpha_parens] = STATE(707), + [sym__list_lower_roman_period] = STATE(1006), + [sym__list_item_lower_roman_period] = STATE(725), + [sym__list_lower_roman_paren] = STATE(1006), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(1006), + [sym__list_item_lower_roman_parens] = STATE(736), + [sym__list_upper_roman_period] = STATE(1006), + [sym__list_item_upper_roman_period] = STATE(742), + [sym__list_upper_roman_paren] = STATE(1006), + [sym__list_item_upper_roman_paren] = STATE(743), + [sym__list_upper_roman_parens] = STATE(1006), + [sym__list_item_upper_roman_parens] = STATE(762), + [sym_list_item_content] = STATE(713), + [sym_table] = STATE(1130), + [sym__table_content] = STATE(310), + [sym_table_separator] = STATE(310), + [sym_table_row] = STATE(331), + [sym_footnote] = STATE(1130), + [sym_footnote_marker_begin] = STATE(1176), + [sym_div] = STATE(1130), + [sym__div_marker_begin] = STATE(1026), + [sym_code_block] = STATE(1130), + [sym_raw_block] = STATE(1130), + [sym_thematic_break] = STATE(1130), + [sym_block_quote] = STATE(1130), + [sym__block_quote_prefix] = STATE(231), + [sym_link_reference_definition] = STATE(1130), + [sym_block_attribute] = STATE(1130), + [sym__paragraph] = STATE(1130), + [sym__paragraph_content] = STATE(705), + [sym__paragraph_inline_content] = STATE(775), + [sym__inline] = STATE(616), + [sym__symbol_fallback] = STATE(297), + [aux_sym__list_dash_repeat1] = STATE(355), + [aux_sym__list_plus_repeat1] = STATE(356), + [aux_sym__list_star_repeat1] = STATE(362), + [aux_sym__list_task_repeat1] = STATE(346), + [aux_sym__list_definition_repeat1] = STATE(483), + [aux_sym__list_decimal_period_repeat1] = STATE(484), + [aux_sym__list_decimal_paren_repeat1] = STATE(485), + [aux_sym__list_decimal_parens_repeat1] = STATE(486), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(487), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(488), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(489), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(490), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(491), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(492), + [aux_sym__list_lower_roman_period_repeat1] = STATE(493), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(494), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(495), + [aux_sym__list_upper_roman_period_repeat1] = STATE(581), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(497), + [aux_sym_table_repeat1] = STATE(310), + [aux_sym__block_quote_prefix_repeat1] = STATE(253), + [aux_sym__inline_repeat1] = STATE(297), + [anon_sym_LBRACK] = ACTIONS(338), + [anon_sym_PIPE] = ACTIONS(340), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(342), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(417), - [sym__heading_begin] = ACTIONS(397), + [sym__newline] = ACTIONS(384), + [sym__heading_begin] = ACTIONS(346), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(399), + [sym__code_block_begin] = ACTIONS(348), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -9972,115 +9725,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(401), - [sym__block_quote_continuation] = ACTIONS(403), - [sym__thematic_break_dash] = ACTIONS(405), - [sym__thematic_break_star] = ACTIONS(405), + [sym__block_quote_begin] = ACTIONS(350), + [sym__block_quote_continuation] = ACTIONS(352), + [sym__thematic_break_dash] = ACTIONS(354), + [sym__thematic_break_star] = ACTIONS(354), }, [39] = { - [sym__block_with_heading] = STATE(1121), - [sym__block_element] = STATE(1121), - [sym_heading] = STATE(1121), - [sym_list] = STATE(1121), - [sym__list_dash] = STATE(1183), - [sym__list_item_dash] = STATE(727), - [sym__list_plus] = STATE(1183), - [sym__list_item_plus] = STATE(730), - [sym__list_star] = STATE(1183), - [sym__list_item_star] = STATE(759), - [sym__list_task] = STATE(1183), - [sym__list_item_task] = STATE(761), - [sym_list_marker_task] = STATE(46), - [sym__list_definition] = STATE(1183), - [sym__list_item_definition] = STATE(819), - [sym__list_decimal_period] = STATE(1183), - [sym__list_item_decimal_period] = STATE(852), - [sym__list_decimal_paren] = STATE(1183), - [sym__list_item_decimal_paren] = STATE(837), - [sym__list_decimal_parens] = STATE(1183), - [sym__list_item_decimal_parens] = STATE(815), - [sym__list_lower_alpha_period] = STATE(1183), - [sym__list_item_lower_alpha_period] = STATE(843), - [sym__list_lower_alpha_paren] = STATE(1183), - [sym__list_item_lower_alpha_paren] = STATE(850), - [sym__list_lower_alpha_parens] = STATE(1183), - [sym__list_item_lower_alpha_parens] = STATE(853), - [sym__list_upper_alpha_period] = STATE(1183), - [sym__list_item_upper_alpha_period] = STATE(854), - [sym__list_upper_alpha_paren] = STATE(1183), - [sym__list_item_upper_alpha_paren] = STATE(855), - [sym__list_upper_alpha_parens] = STATE(1183), - [sym__list_item_upper_alpha_parens] = STATE(856), - [sym__list_lower_roman_period] = STATE(1183), - [sym__list_item_lower_roman_period] = STATE(857), - [sym__list_lower_roman_paren] = STATE(1183), - [sym__list_item_lower_roman_paren] = STATE(871), - [sym__list_lower_roman_parens] = STATE(1183), - [sym__list_item_lower_roman_parens] = STATE(874), - [sym__list_upper_roman_period] = STATE(1183), - [sym__list_item_upper_roman_period] = STATE(876), - [sym__list_upper_roman_paren] = STATE(1183), - [sym__list_item_upper_roman_paren] = STATE(878), - [sym__list_upper_roman_parens] = STATE(1183), - [sym__list_item_upper_roman_parens] = STATE(880), - [sym_list_item_content] = STATE(683), - [sym_table] = STATE(1121), - [sym__table_content] = STATE(406), - [sym_table_separator] = STATE(406), - [sym_table_row] = STATE(417), - [sym_footnote] = STATE(1121), - [sym_footnote_marker_begin] = STATE(1298), - [sym_div] = STATE(1121), - [sym__div_marker_begin] = STATE(1119), - [sym_code_block] = STATE(1121), - [sym_raw_block] = STATE(1121), - [sym_thematic_break] = STATE(1121), - [sym_block_quote] = STATE(1121), - [sym__block_quote_prefix] = STATE(300), - [sym_link_reference_definition] = STATE(1121), - [sym_block_attribute] = STATE(1121), - [sym__paragraph] = STATE(1121), - [sym__paragraph_content] = STATE(799), - [sym__paragraph_inline_content] = STATE(896), - [sym__inline] = STATE(715), - [sym__symbol_fallback] = STATE(381), - [aux_sym__list_dash_repeat1] = STATE(453), - [aux_sym__list_plus_repeat1] = STATE(458), - [aux_sym__list_star_repeat1] = STATE(463), - [aux_sym__list_task_repeat1] = STATE(440), - [aux_sym__list_definition_repeat1] = STATE(562), - [aux_sym__list_decimal_period_repeat1] = STATE(563), - [aux_sym__list_decimal_paren_repeat1] = STATE(542), - [aux_sym__list_decimal_parens_repeat1] = STATE(564), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(565), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(566), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(567), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(568), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(569), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(570), - [aux_sym__list_lower_roman_period_repeat1] = STATE(571), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(572), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(573), - [aux_sym__list_upper_roman_period_repeat1] = STATE(574), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(575), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(576), - [aux_sym_table_repeat1] = STATE(406), - [aux_sym__block_quote_prefix_repeat1] = STATE(330), - [aux_sym__inline_repeat1] = STATE(381), - [anon_sym_LBRACK] = ACTIONS(389), - [anon_sym_PIPE] = ACTIONS(391), + [sym__block_with_heading] = STATE(1052), + [sym__block_element] = STATE(1052), + [sym_heading] = STATE(1052), + [sym_list] = STATE(1052), + [sym__list_dash] = STATE(1006), + [sym__list_item_dash] = STATE(636), + [sym__list_plus] = STATE(1006), + [sym__list_item_plus] = STATE(637), + [sym__list_star] = STATE(1006), + [sym__list_item_star] = STATE(671), + [sym__list_task] = STATE(1006), + [sym__list_item_task] = STATE(691), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(1006), + [sym__list_item_definition] = STATE(896), + [sym__list_decimal_period] = STATE(1006), + [sym__list_item_decimal_period] = STATE(841), + [sym__list_decimal_paren] = STATE(1006), + [sym__list_item_decimal_paren] = STATE(796), + [sym__list_decimal_parens] = STATE(1006), + [sym__list_item_decimal_parens] = STATE(716), + [sym__list_lower_alpha_period] = STATE(1006), + [sym__list_item_lower_alpha_period] = STATE(722), + [sym__list_lower_alpha_paren] = STATE(1006), + [sym__list_item_lower_alpha_paren] = STATE(801), + [sym__list_lower_alpha_parens] = STATE(1006), + [sym__list_item_lower_alpha_parens] = STATE(813), + [sym__list_upper_alpha_period] = STATE(1006), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(1006), + [sym__list_item_upper_alpha_paren] = STATE(706), + [sym__list_upper_alpha_parens] = STATE(1006), + [sym__list_item_upper_alpha_parens] = STATE(707), + [sym__list_lower_roman_period] = STATE(1006), + [sym__list_item_lower_roman_period] = STATE(725), + [sym__list_lower_roman_paren] = STATE(1006), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(1006), + [sym__list_item_lower_roman_parens] = STATE(736), + [sym__list_upper_roman_period] = STATE(1006), + [sym__list_item_upper_roman_period] = STATE(742), + [sym__list_upper_roman_paren] = STATE(1006), + [sym__list_item_upper_roman_paren] = STATE(743), + [sym__list_upper_roman_parens] = STATE(1006), + [sym__list_item_upper_roman_parens] = STATE(762), + [sym_list_item_content] = STATE(693), + [sym_table] = STATE(1052), + [sym__table_content] = STATE(310), + [sym_table_separator] = STATE(310), + [sym_table_row] = STATE(331), + [sym_footnote] = STATE(1052), + [sym_footnote_marker_begin] = STATE(1176), + [sym_div] = STATE(1052), + [sym__div_marker_begin] = STATE(1026), + [sym_code_block] = STATE(1052), + [sym_raw_block] = STATE(1052), + [sym_thematic_break] = STATE(1052), + [sym_block_quote] = STATE(1052), + [sym__block_quote_prefix] = STATE(231), + [sym_link_reference_definition] = STATE(1052), + [sym_block_attribute] = STATE(1052), + [sym__paragraph] = STATE(1052), + [sym__paragraph_content] = STATE(705), + [sym__paragraph_inline_content] = STATE(775), + [sym__inline] = STATE(616), + [sym__symbol_fallback] = STATE(297), + [aux_sym__list_dash_repeat1] = STATE(355), + [aux_sym__list_plus_repeat1] = STATE(356), + [aux_sym__list_star_repeat1] = STATE(362), + [aux_sym__list_task_repeat1] = STATE(346), + [aux_sym__list_definition_repeat1] = STATE(483), + [aux_sym__list_decimal_period_repeat1] = STATE(484), + [aux_sym__list_decimal_paren_repeat1] = STATE(485), + [aux_sym__list_decimal_parens_repeat1] = STATE(486), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(487), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(488), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(489), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(490), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(491), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(492), + [aux_sym__list_lower_roman_period_repeat1] = STATE(493), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(494), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(495), + [aux_sym__list_upper_roman_period_repeat1] = STATE(581), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(497), + [aux_sym_table_repeat1] = STATE(310), + [aux_sym__block_quote_prefix_repeat1] = STATE(253), + [aux_sym__inline_repeat1] = STATE(297), + [anon_sym_LBRACK] = ACTIONS(338), + [anon_sym_PIPE] = ACTIONS(340), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(342), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(419), - [sym__heading_begin] = ACTIONS(397), + [sym__newline] = ACTIONS(366), + [sym__heading_begin] = ACTIONS(346), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(399), + [sym__code_block_begin] = ACTIONS(348), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -10101,115 +9854,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(401), - [sym__block_quote_continuation] = ACTIONS(403), - [sym__thematic_break_dash] = ACTIONS(405), - [sym__thematic_break_star] = ACTIONS(405), + [sym__block_quote_begin] = ACTIONS(350), + [sym__block_quote_continuation] = ACTIONS(352), + [sym__thematic_break_dash] = ACTIONS(354), + [sym__thematic_break_star] = ACTIONS(354), }, [40] = { - [sym__block_with_heading] = STATE(1238), - [sym__block_element] = STATE(1238), - [sym_heading] = STATE(1238), - [sym_list] = STATE(1238), - [sym__list_dash] = STATE(1183), - [sym__list_item_dash] = STATE(727), - [sym__list_plus] = STATE(1183), - [sym__list_item_plus] = STATE(730), - [sym__list_star] = STATE(1183), - [sym__list_item_star] = STATE(759), - [sym__list_task] = STATE(1183), - [sym__list_item_task] = STATE(761), - [sym_list_marker_task] = STATE(46), - [sym__list_definition] = STATE(1183), - [sym__list_item_definition] = STATE(819), - [sym__list_decimal_period] = STATE(1183), - [sym__list_item_decimal_period] = STATE(852), - [sym__list_decimal_paren] = STATE(1183), - [sym__list_item_decimal_paren] = STATE(837), - [sym__list_decimal_parens] = STATE(1183), - [sym__list_item_decimal_parens] = STATE(815), - [sym__list_lower_alpha_period] = STATE(1183), - [sym__list_item_lower_alpha_period] = STATE(843), - [sym__list_lower_alpha_paren] = STATE(1183), - [sym__list_item_lower_alpha_paren] = STATE(850), - [sym__list_lower_alpha_parens] = STATE(1183), - [sym__list_item_lower_alpha_parens] = STATE(853), - [sym__list_upper_alpha_period] = STATE(1183), - [sym__list_item_upper_alpha_period] = STATE(854), - [sym__list_upper_alpha_paren] = STATE(1183), - [sym__list_item_upper_alpha_paren] = STATE(855), - [sym__list_upper_alpha_parens] = STATE(1183), - [sym__list_item_upper_alpha_parens] = STATE(856), - [sym__list_lower_roman_period] = STATE(1183), - [sym__list_item_lower_roman_period] = STATE(857), - [sym__list_lower_roman_paren] = STATE(1183), - [sym__list_item_lower_roman_paren] = STATE(871), - [sym__list_lower_roman_parens] = STATE(1183), - [sym__list_item_lower_roman_parens] = STATE(874), - [sym__list_upper_roman_period] = STATE(1183), - [sym__list_item_upper_roman_period] = STATE(876), - [sym__list_upper_roman_paren] = STATE(1183), - [sym__list_item_upper_roman_paren] = STATE(878), - [sym__list_upper_roman_parens] = STATE(1183), - [sym__list_item_upper_roman_parens] = STATE(880), - [sym_list_item_content] = STATE(824), - [sym_table] = STATE(1238), - [sym__table_content] = STATE(406), - [sym_table_separator] = STATE(406), - [sym_table_row] = STATE(417), - [sym_footnote] = STATE(1238), - [sym_footnote_marker_begin] = STATE(1298), - [sym_div] = STATE(1238), - [sym__div_marker_begin] = STATE(1119), - [sym_code_block] = STATE(1238), - [sym_raw_block] = STATE(1238), - [sym_thematic_break] = STATE(1238), - [sym_block_quote] = STATE(1238), - [sym__block_quote_prefix] = STATE(300), - [sym_link_reference_definition] = STATE(1238), - [sym_block_attribute] = STATE(1238), - [sym__paragraph] = STATE(1238), - [sym__paragraph_content] = STATE(799), - [sym__paragraph_inline_content] = STATE(896), - [sym__inline] = STATE(715), - [sym__symbol_fallback] = STATE(381), - [aux_sym__list_dash_repeat1] = STATE(453), - [aux_sym__list_plus_repeat1] = STATE(458), - [aux_sym__list_star_repeat1] = STATE(463), - [aux_sym__list_task_repeat1] = STATE(440), - [aux_sym__list_definition_repeat1] = STATE(562), - [aux_sym__list_decimal_period_repeat1] = STATE(563), - [aux_sym__list_decimal_paren_repeat1] = STATE(542), - [aux_sym__list_decimal_parens_repeat1] = STATE(564), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(565), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(566), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(567), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(568), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(569), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(570), - [aux_sym__list_lower_roman_period_repeat1] = STATE(571), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(572), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(573), - [aux_sym__list_upper_roman_period_repeat1] = STATE(574), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(575), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(576), - [aux_sym_table_repeat1] = STATE(406), - [aux_sym__block_quote_prefix_repeat1] = STATE(330), - [aux_sym__inline_repeat1] = STATE(381), - [anon_sym_LBRACK] = ACTIONS(389), - [anon_sym_PIPE] = ACTIONS(391), + [sym__block_with_heading] = STATE(1046), + [sym__block_element] = STATE(1046), + [sym_heading] = STATE(1046), + [sym_list] = STATE(1046), + [sym__list_dash] = STATE(1006), + [sym__list_item_dash] = STATE(636), + [sym__list_plus] = STATE(1006), + [sym__list_item_plus] = STATE(637), + [sym__list_star] = STATE(1006), + [sym__list_item_star] = STATE(671), + [sym__list_task] = STATE(1006), + [sym__list_item_task] = STATE(691), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(1006), + [sym__list_item_definition] = STATE(896), + [sym__list_decimal_period] = STATE(1006), + [sym__list_item_decimal_period] = STATE(841), + [sym__list_decimal_paren] = STATE(1006), + [sym__list_item_decimal_paren] = STATE(796), + [sym__list_decimal_parens] = STATE(1006), + [sym__list_item_decimal_parens] = STATE(716), + [sym__list_lower_alpha_period] = STATE(1006), + [sym__list_item_lower_alpha_period] = STATE(722), + [sym__list_lower_alpha_paren] = STATE(1006), + [sym__list_item_lower_alpha_paren] = STATE(801), + [sym__list_lower_alpha_parens] = STATE(1006), + [sym__list_item_lower_alpha_parens] = STATE(813), + [sym__list_upper_alpha_period] = STATE(1006), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(1006), + [sym__list_item_upper_alpha_paren] = STATE(706), + [sym__list_upper_alpha_parens] = STATE(1006), + [sym__list_item_upper_alpha_parens] = STATE(707), + [sym__list_lower_roman_period] = STATE(1006), + [sym__list_item_lower_roman_period] = STATE(725), + [sym__list_lower_roman_paren] = STATE(1006), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(1006), + [sym__list_item_lower_roman_parens] = STATE(736), + [sym__list_upper_roman_period] = STATE(1006), + [sym__list_item_upper_roman_period] = STATE(742), + [sym__list_upper_roman_paren] = STATE(1006), + [sym__list_item_upper_roman_paren] = STATE(743), + [sym__list_upper_roman_parens] = STATE(1006), + [sym__list_item_upper_roman_parens] = STATE(762), + [sym_table] = STATE(1046), + [sym__table_content] = STATE(310), + [sym_table_separator] = STATE(310), + [sym_table_row] = STATE(331), + [sym_footnote] = STATE(1046), + [sym_footnote_marker_begin] = STATE(1176), + [sym_footnote_content] = STATE(961), + [sym_div] = STATE(1046), + [sym__div_marker_begin] = STATE(1026), + [sym_code_block] = STATE(1046), + [sym_raw_block] = STATE(1046), + [sym_thematic_break] = STATE(1046), + [sym_block_quote] = STATE(1046), + [sym__block_quote_prefix] = STATE(231), + [sym_link_reference_definition] = STATE(1046), + [sym_block_attribute] = STATE(1046), + [sym__paragraph] = STATE(1046), + [sym__paragraph_content] = STATE(705), + [sym__paragraph_inline_content] = STATE(775), + [sym__inline] = STATE(616), + [sym__symbol_fallback] = STATE(297), + [aux_sym__list_dash_repeat1] = STATE(355), + [aux_sym__list_plus_repeat1] = STATE(356), + [aux_sym__list_star_repeat1] = STATE(362), + [aux_sym__list_task_repeat1] = STATE(346), + [aux_sym__list_definition_repeat1] = STATE(483), + [aux_sym__list_decimal_period_repeat1] = STATE(484), + [aux_sym__list_decimal_paren_repeat1] = STATE(485), + [aux_sym__list_decimal_parens_repeat1] = STATE(486), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(487), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(488), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(489), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(490), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(491), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(492), + [aux_sym__list_lower_roman_period_repeat1] = STATE(493), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(494), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(495), + [aux_sym__list_upper_roman_period_repeat1] = STATE(581), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(497), + [aux_sym_table_repeat1] = STATE(310), + [aux_sym__block_quote_prefix_repeat1] = STATE(253), + [aux_sym__inline_repeat1] = STATE(297), + [anon_sym_LBRACK] = ACTIONS(338), + [anon_sym_PIPE] = ACTIONS(340), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(342), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(421), - [sym__heading_begin] = ACTIONS(397), + [sym__newline] = ACTIONS(386), + [sym__heading_begin] = ACTIONS(346), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(399), + [sym__code_block_begin] = ACTIONS(348), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -10230,115 +9983,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(401), - [sym__block_quote_continuation] = ACTIONS(403), - [sym__thematic_break_dash] = ACTIONS(405), - [sym__thematic_break_star] = ACTIONS(405), + [sym__block_quote_begin] = ACTIONS(350), + [sym__block_quote_continuation] = ACTIONS(352), + [sym__thematic_break_dash] = ACTIONS(354), + [sym__thematic_break_star] = ACTIONS(354), }, [41] = { - [sym__block_with_heading] = STATE(1239), - [sym__block_element] = STATE(1239), - [sym_heading] = STATE(1239), - [sym_list] = STATE(1239), - [sym__list_dash] = STATE(1183), - [sym__list_item_dash] = STATE(727), - [sym__list_plus] = STATE(1183), - [sym__list_item_plus] = STATE(730), - [sym__list_star] = STATE(1183), - [sym__list_item_star] = STATE(759), - [sym__list_task] = STATE(1183), - [sym__list_item_task] = STATE(761), - [sym_list_marker_task] = STATE(46), - [sym__list_definition] = STATE(1183), - [sym__list_item_definition] = STATE(819), - [sym__list_decimal_period] = STATE(1183), - [sym__list_item_decimal_period] = STATE(852), - [sym__list_decimal_paren] = STATE(1183), - [sym__list_item_decimal_paren] = STATE(837), - [sym__list_decimal_parens] = STATE(1183), - [sym__list_item_decimal_parens] = STATE(815), - [sym__list_lower_alpha_period] = STATE(1183), - [sym__list_item_lower_alpha_period] = STATE(843), - [sym__list_lower_alpha_paren] = STATE(1183), - [sym__list_item_lower_alpha_paren] = STATE(850), - [sym__list_lower_alpha_parens] = STATE(1183), - [sym__list_item_lower_alpha_parens] = STATE(853), - [sym__list_upper_alpha_period] = STATE(1183), - [sym__list_item_upper_alpha_period] = STATE(854), - [sym__list_upper_alpha_paren] = STATE(1183), - [sym__list_item_upper_alpha_paren] = STATE(855), - [sym__list_upper_alpha_parens] = STATE(1183), - [sym__list_item_upper_alpha_parens] = STATE(856), - [sym__list_lower_roman_period] = STATE(1183), - [sym__list_item_lower_roman_period] = STATE(857), - [sym__list_lower_roman_paren] = STATE(1183), - [sym__list_item_lower_roman_paren] = STATE(871), - [sym__list_lower_roman_parens] = STATE(1183), - [sym__list_item_lower_roman_parens] = STATE(874), - [sym__list_upper_roman_period] = STATE(1183), - [sym__list_item_upper_roman_period] = STATE(876), - [sym__list_upper_roman_paren] = STATE(1183), - [sym__list_item_upper_roman_paren] = STATE(878), - [sym__list_upper_roman_parens] = STATE(1183), - [sym__list_item_upper_roman_parens] = STATE(880), - [sym_list_item_content] = STATE(825), - [sym_table] = STATE(1239), - [sym__table_content] = STATE(406), - [sym_table_separator] = STATE(406), - [sym_table_row] = STATE(417), - [sym_footnote] = STATE(1239), - [sym_footnote_marker_begin] = STATE(1298), - [sym_div] = STATE(1239), - [sym__div_marker_begin] = STATE(1119), - [sym_code_block] = STATE(1239), - [sym_raw_block] = STATE(1239), - [sym_thematic_break] = STATE(1239), - [sym_block_quote] = STATE(1239), - [sym__block_quote_prefix] = STATE(300), - [sym_link_reference_definition] = STATE(1239), - [sym_block_attribute] = STATE(1239), - [sym__paragraph] = STATE(1239), - [sym__paragraph_content] = STATE(799), - [sym__paragraph_inline_content] = STATE(896), - [sym__inline] = STATE(715), - [sym__symbol_fallback] = STATE(381), - [aux_sym__list_dash_repeat1] = STATE(453), - [aux_sym__list_plus_repeat1] = STATE(458), - [aux_sym__list_star_repeat1] = STATE(463), - [aux_sym__list_task_repeat1] = STATE(440), - [aux_sym__list_definition_repeat1] = STATE(562), - [aux_sym__list_decimal_period_repeat1] = STATE(563), - [aux_sym__list_decimal_paren_repeat1] = STATE(542), - [aux_sym__list_decimal_parens_repeat1] = STATE(564), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(565), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(566), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(567), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(568), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(569), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(570), - [aux_sym__list_lower_roman_period_repeat1] = STATE(571), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(572), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(573), - [aux_sym__list_upper_roman_period_repeat1] = STATE(574), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(575), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(576), - [aux_sym_table_repeat1] = STATE(406), - [aux_sym__block_quote_prefix_repeat1] = STATE(330), - [aux_sym__inline_repeat1] = STATE(381), - [anon_sym_LBRACK] = ACTIONS(389), - [anon_sym_PIPE] = ACTIONS(391), + [sym__block_with_heading] = STATE(1076), + [sym__block_element] = STATE(1076), + [sym_heading] = STATE(1076), + [sym_list] = STATE(1076), + [sym__list_dash] = STATE(1006), + [sym__list_item_dash] = STATE(636), + [sym__list_plus] = STATE(1006), + [sym__list_item_plus] = STATE(637), + [sym__list_star] = STATE(1006), + [sym__list_item_star] = STATE(671), + [sym__list_task] = STATE(1006), + [sym__list_item_task] = STATE(691), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(1006), + [sym__list_item_definition] = STATE(896), + [sym__list_decimal_period] = STATE(1006), + [sym__list_item_decimal_period] = STATE(841), + [sym__list_decimal_paren] = STATE(1006), + [sym__list_item_decimal_paren] = STATE(796), + [sym__list_decimal_parens] = STATE(1006), + [sym__list_item_decimal_parens] = STATE(716), + [sym__list_lower_alpha_period] = STATE(1006), + [sym__list_item_lower_alpha_period] = STATE(722), + [sym__list_lower_alpha_paren] = STATE(1006), + [sym__list_item_lower_alpha_paren] = STATE(801), + [sym__list_lower_alpha_parens] = STATE(1006), + [sym__list_item_lower_alpha_parens] = STATE(813), + [sym__list_upper_alpha_period] = STATE(1006), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(1006), + [sym__list_item_upper_alpha_paren] = STATE(706), + [sym__list_upper_alpha_parens] = STATE(1006), + [sym__list_item_upper_alpha_parens] = STATE(707), + [sym__list_lower_roman_period] = STATE(1006), + [sym__list_item_lower_roman_period] = STATE(725), + [sym__list_lower_roman_paren] = STATE(1006), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(1006), + [sym__list_item_lower_roman_parens] = STATE(736), + [sym__list_upper_roman_period] = STATE(1006), + [sym__list_item_upper_roman_period] = STATE(742), + [sym__list_upper_roman_paren] = STATE(1006), + [sym__list_item_upper_roman_paren] = STATE(743), + [sym__list_upper_roman_parens] = STATE(1006), + [sym__list_item_upper_roman_parens] = STATE(762), + [sym_list_item_content] = STATE(809), + [sym_table] = STATE(1076), + [sym__table_content] = STATE(310), + [sym_table_separator] = STATE(310), + [sym_table_row] = STATE(331), + [sym_footnote] = STATE(1076), + [sym_footnote_marker_begin] = STATE(1176), + [sym_div] = STATE(1076), + [sym__div_marker_begin] = STATE(1026), + [sym_code_block] = STATE(1076), + [sym_raw_block] = STATE(1076), + [sym_thematic_break] = STATE(1076), + [sym_block_quote] = STATE(1076), + [sym__block_quote_prefix] = STATE(231), + [sym_link_reference_definition] = STATE(1076), + [sym_block_attribute] = STATE(1076), + [sym__paragraph] = STATE(1076), + [sym__paragraph_content] = STATE(705), + [sym__paragraph_inline_content] = STATE(775), + [sym__inline] = STATE(616), + [sym__symbol_fallback] = STATE(297), + [aux_sym__list_dash_repeat1] = STATE(355), + [aux_sym__list_plus_repeat1] = STATE(356), + [aux_sym__list_star_repeat1] = STATE(362), + [aux_sym__list_task_repeat1] = STATE(346), + [aux_sym__list_definition_repeat1] = STATE(483), + [aux_sym__list_decimal_period_repeat1] = STATE(484), + [aux_sym__list_decimal_paren_repeat1] = STATE(485), + [aux_sym__list_decimal_parens_repeat1] = STATE(486), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(487), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(488), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(489), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(490), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(491), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(492), + [aux_sym__list_lower_roman_period_repeat1] = STATE(493), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(494), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(495), + [aux_sym__list_upper_roman_period_repeat1] = STATE(581), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(497), + [aux_sym_table_repeat1] = STATE(310), + [aux_sym__block_quote_prefix_repeat1] = STATE(253), + [aux_sym__inline_repeat1] = STATE(297), + [anon_sym_LBRACK] = ACTIONS(338), + [anon_sym_PIPE] = ACTIONS(340), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(342), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(423), - [sym__heading_begin] = ACTIONS(397), + [sym__newline] = ACTIONS(388), + [sym__heading_begin] = ACTIONS(346), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(399), + [sym__code_block_begin] = ACTIONS(348), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -10359,115 +10112,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(401), - [sym__block_quote_continuation] = ACTIONS(403), - [sym__thematic_break_dash] = ACTIONS(405), - [sym__thematic_break_star] = ACTIONS(405), + [sym__block_quote_begin] = ACTIONS(350), + [sym__block_quote_continuation] = ACTIONS(352), + [sym__thematic_break_dash] = ACTIONS(354), + [sym__thematic_break_star] = ACTIONS(354), }, [42] = { - [sym__block_with_heading] = STATE(1240), - [sym__block_element] = STATE(1240), - [sym_heading] = STATE(1240), - [sym_list] = STATE(1240), - [sym__list_dash] = STATE(1183), - [sym__list_item_dash] = STATE(727), - [sym__list_plus] = STATE(1183), - [sym__list_item_plus] = STATE(730), - [sym__list_star] = STATE(1183), - [sym__list_item_star] = STATE(759), - [sym__list_task] = STATE(1183), - [sym__list_item_task] = STATE(761), - [sym_list_marker_task] = STATE(46), - [sym__list_definition] = STATE(1183), - [sym__list_item_definition] = STATE(819), - [sym__list_decimal_period] = STATE(1183), - [sym__list_item_decimal_period] = STATE(852), - [sym__list_decimal_paren] = STATE(1183), - [sym__list_item_decimal_paren] = STATE(837), - [sym__list_decimal_parens] = STATE(1183), - [sym__list_item_decimal_parens] = STATE(815), - [sym__list_lower_alpha_period] = STATE(1183), - [sym__list_item_lower_alpha_period] = STATE(843), - [sym__list_lower_alpha_paren] = STATE(1183), - [sym__list_item_lower_alpha_paren] = STATE(850), - [sym__list_lower_alpha_parens] = STATE(1183), - [sym__list_item_lower_alpha_parens] = STATE(853), - [sym__list_upper_alpha_period] = STATE(1183), - [sym__list_item_upper_alpha_period] = STATE(854), - [sym__list_upper_alpha_paren] = STATE(1183), - [sym__list_item_upper_alpha_paren] = STATE(855), - [sym__list_upper_alpha_parens] = STATE(1183), - [sym__list_item_upper_alpha_parens] = STATE(856), - [sym__list_lower_roman_period] = STATE(1183), - [sym__list_item_lower_roman_period] = STATE(857), - [sym__list_lower_roman_paren] = STATE(1183), - [sym__list_item_lower_roman_paren] = STATE(871), - [sym__list_lower_roman_parens] = STATE(1183), - [sym__list_item_lower_roman_parens] = STATE(874), - [sym__list_upper_roman_period] = STATE(1183), - [sym__list_item_upper_roman_period] = STATE(876), - [sym__list_upper_roman_paren] = STATE(1183), - [sym__list_item_upper_roman_paren] = STATE(878), - [sym__list_upper_roman_parens] = STATE(1183), - [sym__list_item_upper_roman_parens] = STATE(880), - [sym_list_item_content] = STATE(830), - [sym_table] = STATE(1240), - [sym__table_content] = STATE(406), - [sym_table_separator] = STATE(406), - [sym_table_row] = STATE(417), - [sym_footnote] = STATE(1240), - [sym_footnote_marker_begin] = STATE(1298), - [sym_div] = STATE(1240), - [sym__div_marker_begin] = STATE(1119), - [sym_code_block] = STATE(1240), - [sym_raw_block] = STATE(1240), - [sym_thematic_break] = STATE(1240), - [sym_block_quote] = STATE(1240), - [sym__block_quote_prefix] = STATE(300), - [sym_link_reference_definition] = STATE(1240), - [sym_block_attribute] = STATE(1240), - [sym__paragraph] = STATE(1240), - [sym__paragraph_content] = STATE(799), - [sym__paragraph_inline_content] = STATE(896), - [sym__inline] = STATE(715), - [sym__symbol_fallback] = STATE(381), - [aux_sym__list_dash_repeat1] = STATE(453), - [aux_sym__list_plus_repeat1] = STATE(458), - [aux_sym__list_star_repeat1] = STATE(463), - [aux_sym__list_task_repeat1] = STATE(440), - [aux_sym__list_definition_repeat1] = STATE(562), - [aux_sym__list_decimal_period_repeat1] = STATE(563), - [aux_sym__list_decimal_paren_repeat1] = STATE(542), - [aux_sym__list_decimal_parens_repeat1] = STATE(564), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(565), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(566), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(567), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(568), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(569), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(570), - [aux_sym__list_lower_roman_period_repeat1] = STATE(571), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(572), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(573), - [aux_sym__list_upper_roman_period_repeat1] = STATE(574), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(575), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(576), - [aux_sym_table_repeat1] = STATE(406), - [aux_sym__block_quote_prefix_repeat1] = STATE(330), - [aux_sym__inline_repeat1] = STATE(381), - [anon_sym_LBRACK] = ACTIONS(389), - [anon_sym_PIPE] = ACTIONS(391), + [sym__block_with_heading] = STATE(1078), + [sym__block_element] = STATE(1078), + [sym_heading] = STATE(1078), + [sym_list] = STATE(1078), + [sym__list_dash] = STATE(1006), + [sym__list_item_dash] = STATE(636), + [sym__list_plus] = STATE(1006), + [sym__list_item_plus] = STATE(637), + [sym__list_star] = STATE(1006), + [sym__list_item_star] = STATE(671), + [sym__list_task] = STATE(1006), + [sym__list_item_task] = STATE(691), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(1006), + [sym__list_item_definition] = STATE(896), + [sym__list_decimal_period] = STATE(1006), + [sym__list_item_decimal_period] = STATE(841), + [sym__list_decimal_paren] = STATE(1006), + [sym__list_item_decimal_paren] = STATE(796), + [sym__list_decimal_parens] = STATE(1006), + [sym__list_item_decimal_parens] = STATE(716), + [sym__list_lower_alpha_period] = STATE(1006), + [sym__list_item_lower_alpha_period] = STATE(722), + [sym__list_lower_alpha_paren] = STATE(1006), + [sym__list_item_lower_alpha_paren] = STATE(801), + [sym__list_lower_alpha_parens] = STATE(1006), + [sym__list_item_lower_alpha_parens] = STATE(813), + [sym__list_upper_alpha_period] = STATE(1006), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(1006), + [sym__list_item_upper_alpha_paren] = STATE(706), + [sym__list_upper_alpha_parens] = STATE(1006), + [sym__list_item_upper_alpha_parens] = STATE(707), + [sym__list_lower_roman_period] = STATE(1006), + [sym__list_item_lower_roman_period] = STATE(725), + [sym__list_lower_roman_paren] = STATE(1006), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(1006), + [sym__list_item_lower_roman_parens] = STATE(736), + [sym__list_upper_roman_period] = STATE(1006), + [sym__list_item_upper_roman_period] = STATE(742), + [sym__list_upper_roman_paren] = STATE(1006), + [sym__list_item_upper_roman_paren] = STATE(743), + [sym__list_upper_roman_parens] = STATE(1006), + [sym__list_item_upper_roman_parens] = STATE(762), + [sym_list_item_content] = STATE(689), + [sym_table] = STATE(1078), + [sym__table_content] = STATE(310), + [sym_table_separator] = STATE(310), + [sym_table_row] = STATE(331), + [sym_footnote] = STATE(1078), + [sym_footnote_marker_begin] = STATE(1176), + [sym_div] = STATE(1078), + [sym__div_marker_begin] = STATE(1026), + [sym_code_block] = STATE(1078), + [sym_raw_block] = STATE(1078), + [sym_thematic_break] = STATE(1078), + [sym_block_quote] = STATE(1078), + [sym__block_quote_prefix] = STATE(231), + [sym_link_reference_definition] = STATE(1078), + [sym_block_attribute] = STATE(1078), + [sym__paragraph] = STATE(1078), + [sym__paragraph_content] = STATE(705), + [sym__paragraph_inline_content] = STATE(775), + [sym__inline] = STATE(616), + [sym__symbol_fallback] = STATE(297), + [aux_sym__list_dash_repeat1] = STATE(355), + [aux_sym__list_plus_repeat1] = STATE(356), + [aux_sym__list_star_repeat1] = STATE(362), + [aux_sym__list_task_repeat1] = STATE(346), + [aux_sym__list_definition_repeat1] = STATE(483), + [aux_sym__list_decimal_period_repeat1] = STATE(484), + [aux_sym__list_decimal_paren_repeat1] = STATE(485), + [aux_sym__list_decimal_parens_repeat1] = STATE(486), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(487), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(488), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(489), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(490), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(491), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(492), + [aux_sym__list_lower_roman_period_repeat1] = STATE(493), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(494), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(495), + [aux_sym__list_upper_roman_period_repeat1] = STATE(581), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(497), + [aux_sym_table_repeat1] = STATE(310), + [aux_sym__block_quote_prefix_repeat1] = STATE(253), + [aux_sym__inline_repeat1] = STATE(297), + [anon_sym_LBRACK] = ACTIONS(338), + [anon_sym_PIPE] = ACTIONS(340), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(342), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(425), - [sym__heading_begin] = ACTIONS(397), + [sym__newline] = ACTIONS(364), + [sym__heading_begin] = ACTIONS(346), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(399), + [sym__code_block_begin] = ACTIONS(348), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -10488,115 +10241,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(401), - [sym__block_quote_continuation] = ACTIONS(403), - [sym__thematic_break_dash] = ACTIONS(405), - [sym__thematic_break_star] = ACTIONS(405), + [sym__block_quote_begin] = ACTIONS(350), + [sym__block_quote_continuation] = ACTIONS(352), + [sym__thematic_break_dash] = ACTIONS(354), + [sym__thematic_break_star] = ACTIONS(354), }, [43] = { - [sym__block_with_heading] = STATE(1241), - [sym__block_element] = STATE(1241), - [sym_heading] = STATE(1241), - [sym_list] = STATE(1241), - [sym__list_dash] = STATE(1183), - [sym__list_item_dash] = STATE(727), - [sym__list_plus] = STATE(1183), - [sym__list_item_plus] = STATE(730), - [sym__list_star] = STATE(1183), - [sym__list_item_star] = STATE(759), - [sym__list_task] = STATE(1183), - [sym__list_item_task] = STATE(761), - [sym_list_marker_task] = STATE(46), - [sym__list_definition] = STATE(1183), - [sym__list_item_definition] = STATE(819), - [sym__list_decimal_period] = STATE(1183), - [sym__list_item_decimal_period] = STATE(852), - [sym__list_decimal_paren] = STATE(1183), - [sym__list_item_decimal_paren] = STATE(837), - [sym__list_decimal_parens] = STATE(1183), - [sym__list_item_decimal_parens] = STATE(815), - [sym__list_lower_alpha_period] = STATE(1183), - [sym__list_item_lower_alpha_period] = STATE(843), - [sym__list_lower_alpha_paren] = STATE(1183), - [sym__list_item_lower_alpha_paren] = STATE(850), - [sym__list_lower_alpha_parens] = STATE(1183), - [sym__list_item_lower_alpha_parens] = STATE(853), - [sym__list_upper_alpha_period] = STATE(1183), - [sym__list_item_upper_alpha_period] = STATE(854), - [sym__list_upper_alpha_paren] = STATE(1183), - [sym__list_item_upper_alpha_paren] = STATE(855), - [sym__list_upper_alpha_parens] = STATE(1183), - [sym__list_item_upper_alpha_parens] = STATE(856), - [sym__list_lower_roman_period] = STATE(1183), - [sym__list_item_lower_roman_period] = STATE(857), - [sym__list_lower_roman_paren] = STATE(1183), - [sym__list_item_lower_roman_paren] = STATE(871), - [sym__list_lower_roman_parens] = STATE(1183), - [sym__list_item_lower_roman_parens] = STATE(874), - [sym__list_upper_roman_period] = STATE(1183), - [sym__list_item_upper_roman_period] = STATE(876), - [sym__list_upper_roman_paren] = STATE(1183), - [sym__list_item_upper_roman_paren] = STATE(878), - [sym__list_upper_roman_parens] = STATE(1183), - [sym__list_item_upper_roman_parens] = STATE(880), - [sym_list_item_content] = STATE(833), - [sym_table] = STATE(1241), - [sym__table_content] = STATE(406), - [sym_table_separator] = STATE(406), - [sym_table_row] = STATE(417), - [sym_footnote] = STATE(1241), - [sym_footnote_marker_begin] = STATE(1298), - [sym_div] = STATE(1241), - [sym__div_marker_begin] = STATE(1119), - [sym_code_block] = STATE(1241), - [sym_raw_block] = STATE(1241), - [sym_thematic_break] = STATE(1241), - [sym_block_quote] = STATE(1241), - [sym__block_quote_prefix] = STATE(300), - [sym_link_reference_definition] = STATE(1241), - [sym_block_attribute] = STATE(1241), - [sym__paragraph] = STATE(1241), - [sym__paragraph_content] = STATE(799), - [sym__paragraph_inline_content] = STATE(896), - [sym__inline] = STATE(715), - [sym__symbol_fallback] = STATE(381), - [aux_sym__list_dash_repeat1] = STATE(453), - [aux_sym__list_plus_repeat1] = STATE(458), - [aux_sym__list_star_repeat1] = STATE(463), - [aux_sym__list_task_repeat1] = STATE(440), - [aux_sym__list_definition_repeat1] = STATE(562), - [aux_sym__list_decimal_period_repeat1] = STATE(563), - [aux_sym__list_decimal_paren_repeat1] = STATE(542), - [aux_sym__list_decimal_parens_repeat1] = STATE(564), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(565), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(566), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(567), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(568), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(569), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(570), - [aux_sym__list_lower_roman_period_repeat1] = STATE(571), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(572), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(573), - [aux_sym__list_upper_roman_period_repeat1] = STATE(574), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(575), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(576), - [aux_sym_table_repeat1] = STATE(406), - [aux_sym__block_quote_prefix_repeat1] = STATE(330), - [aux_sym__inline_repeat1] = STATE(381), - [anon_sym_LBRACK] = ACTIONS(389), - [anon_sym_PIPE] = ACTIONS(391), + [sym__block_with_heading] = STATE(1070), + [sym__block_element] = STATE(1070), + [sym_heading] = STATE(1070), + [sym_list] = STATE(1070), + [sym__list_dash] = STATE(1006), + [sym__list_item_dash] = STATE(636), + [sym__list_plus] = STATE(1006), + [sym__list_item_plus] = STATE(637), + [sym__list_star] = STATE(1006), + [sym__list_item_star] = STATE(671), + [sym__list_task] = STATE(1006), + [sym__list_item_task] = STATE(691), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(1006), + [sym__list_item_definition] = STATE(896), + [sym__list_decimal_period] = STATE(1006), + [sym__list_item_decimal_period] = STATE(841), + [sym__list_decimal_paren] = STATE(1006), + [sym__list_item_decimal_paren] = STATE(796), + [sym__list_decimal_parens] = STATE(1006), + [sym__list_item_decimal_parens] = STATE(716), + [sym__list_lower_alpha_period] = STATE(1006), + [sym__list_item_lower_alpha_period] = STATE(722), + [sym__list_lower_alpha_paren] = STATE(1006), + [sym__list_item_lower_alpha_paren] = STATE(801), + [sym__list_lower_alpha_parens] = STATE(1006), + [sym__list_item_lower_alpha_parens] = STATE(813), + [sym__list_upper_alpha_period] = STATE(1006), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(1006), + [sym__list_item_upper_alpha_paren] = STATE(706), + [sym__list_upper_alpha_parens] = STATE(1006), + [sym__list_item_upper_alpha_parens] = STATE(707), + [sym__list_lower_roman_period] = STATE(1006), + [sym__list_item_lower_roman_period] = STATE(725), + [sym__list_lower_roman_paren] = STATE(1006), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(1006), + [sym__list_item_lower_roman_parens] = STATE(736), + [sym__list_upper_roman_period] = STATE(1006), + [sym__list_item_upper_roman_period] = STATE(742), + [sym__list_upper_roman_paren] = STATE(1006), + [sym__list_item_upper_roman_paren] = STATE(743), + [sym__list_upper_roman_parens] = STATE(1006), + [sym__list_item_upper_roman_parens] = STATE(762), + [sym_table] = STATE(1070), + [sym__table_content] = STATE(310), + [sym_table_separator] = STATE(310), + [sym_table_row] = STATE(331), + [sym_footnote] = STATE(1070), + [sym_footnote_marker_begin] = STATE(1176), + [sym_footnote_content] = STATE(758), + [sym_div] = STATE(1070), + [sym__div_marker_begin] = STATE(1026), + [sym_code_block] = STATE(1070), + [sym_raw_block] = STATE(1070), + [sym_thematic_break] = STATE(1070), + [sym_block_quote] = STATE(1070), + [sym__block_quote_prefix] = STATE(231), + [sym_link_reference_definition] = STATE(1070), + [sym_block_attribute] = STATE(1070), + [sym__paragraph] = STATE(1070), + [sym__paragraph_content] = STATE(705), + [sym__paragraph_inline_content] = STATE(775), + [sym__inline] = STATE(616), + [sym__symbol_fallback] = STATE(297), + [aux_sym__list_dash_repeat1] = STATE(355), + [aux_sym__list_plus_repeat1] = STATE(356), + [aux_sym__list_star_repeat1] = STATE(362), + [aux_sym__list_task_repeat1] = STATE(346), + [aux_sym__list_definition_repeat1] = STATE(483), + [aux_sym__list_decimal_period_repeat1] = STATE(484), + [aux_sym__list_decimal_paren_repeat1] = STATE(485), + [aux_sym__list_decimal_parens_repeat1] = STATE(486), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(487), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(488), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(489), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(490), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(491), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(492), + [aux_sym__list_lower_roman_period_repeat1] = STATE(493), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(494), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(495), + [aux_sym__list_upper_roman_period_repeat1] = STATE(581), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(497), + [aux_sym_table_repeat1] = STATE(310), + [aux_sym__block_quote_prefix_repeat1] = STATE(253), + [aux_sym__inline_repeat1] = STATE(297), + [anon_sym_LBRACK] = ACTIONS(338), + [anon_sym_PIPE] = ACTIONS(340), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(342), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(427), - [sym__heading_begin] = ACTIONS(397), + [sym__newline] = ACTIONS(390), + [sym__heading_begin] = ACTIONS(346), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(399), + [sym__code_block_begin] = ACTIONS(348), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -10617,115 +10370,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(401), - [sym__block_quote_continuation] = ACTIONS(403), - [sym__thematic_break_dash] = ACTIONS(405), - [sym__thematic_break_star] = ACTIONS(405), + [sym__block_quote_begin] = ACTIONS(350), + [sym__block_quote_continuation] = ACTIONS(352), + [sym__thematic_break_dash] = ACTIONS(354), + [sym__thematic_break_star] = ACTIONS(354), }, [44] = { - [sym__block_with_heading] = STATE(1144), - [sym__block_element] = STATE(1144), - [sym_heading] = STATE(1144), - [sym_list] = STATE(1144), - [sym__list_dash] = STATE(1183), - [sym__list_item_dash] = STATE(727), - [sym__list_plus] = STATE(1183), - [sym__list_item_plus] = STATE(730), - [sym__list_star] = STATE(1183), - [sym__list_item_star] = STATE(759), - [sym__list_task] = STATE(1183), - [sym__list_item_task] = STATE(761), - [sym_list_marker_task] = STATE(46), - [sym__list_definition] = STATE(1183), - [sym__list_item_definition] = STATE(819), - [sym__list_decimal_period] = STATE(1183), - [sym__list_item_decimal_period] = STATE(852), - [sym__list_decimal_paren] = STATE(1183), - [sym__list_item_decimal_paren] = STATE(837), - [sym__list_decimal_parens] = STATE(1183), - [sym__list_item_decimal_parens] = STATE(815), - [sym__list_lower_alpha_period] = STATE(1183), - [sym__list_item_lower_alpha_period] = STATE(843), - [sym__list_lower_alpha_paren] = STATE(1183), - [sym__list_item_lower_alpha_paren] = STATE(850), - [sym__list_lower_alpha_parens] = STATE(1183), - [sym__list_item_lower_alpha_parens] = STATE(853), - [sym__list_upper_alpha_period] = STATE(1183), - [sym__list_item_upper_alpha_period] = STATE(854), - [sym__list_upper_alpha_paren] = STATE(1183), - [sym__list_item_upper_alpha_paren] = STATE(855), - [sym__list_upper_alpha_parens] = STATE(1183), - [sym__list_item_upper_alpha_parens] = STATE(856), - [sym__list_lower_roman_period] = STATE(1183), - [sym__list_item_lower_roman_period] = STATE(857), - [sym__list_lower_roman_paren] = STATE(1183), - [sym__list_item_lower_roman_paren] = STATE(871), - [sym__list_lower_roman_parens] = STATE(1183), - [sym__list_item_lower_roman_parens] = STATE(874), - [sym__list_upper_roman_period] = STATE(1183), - [sym__list_item_upper_roman_period] = STATE(876), - [sym__list_upper_roman_paren] = STATE(1183), - [sym__list_item_upper_roman_paren] = STATE(878), - [sym__list_upper_roman_parens] = STATE(1183), - [sym__list_item_upper_roman_parens] = STATE(880), - [sym_list_item_content] = STATE(705), - [sym_table] = STATE(1144), - [sym__table_content] = STATE(406), - [sym_table_separator] = STATE(406), - [sym_table_row] = STATE(417), - [sym_footnote] = STATE(1144), - [sym_footnote_marker_begin] = STATE(1298), - [sym_div] = STATE(1144), - [sym__div_marker_begin] = STATE(1119), - [sym_code_block] = STATE(1144), - [sym_raw_block] = STATE(1144), - [sym_thematic_break] = STATE(1144), - [sym_block_quote] = STATE(1144), - [sym__block_quote_prefix] = STATE(300), - [sym_link_reference_definition] = STATE(1144), - [sym_block_attribute] = STATE(1144), - [sym__paragraph] = STATE(1144), - [sym__paragraph_content] = STATE(799), - [sym__paragraph_inline_content] = STATE(896), - [sym__inline] = STATE(715), - [sym__symbol_fallback] = STATE(381), - [aux_sym__list_dash_repeat1] = STATE(453), - [aux_sym__list_plus_repeat1] = STATE(458), - [aux_sym__list_star_repeat1] = STATE(463), - [aux_sym__list_task_repeat1] = STATE(440), - [aux_sym__list_definition_repeat1] = STATE(562), - [aux_sym__list_decimal_period_repeat1] = STATE(563), - [aux_sym__list_decimal_paren_repeat1] = STATE(542), - [aux_sym__list_decimal_parens_repeat1] = STATE(564), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(565), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(566), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(567), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(568), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(569), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(570), - [aux_sym__list_lower_roman_period_repeat1] = STATE(571), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(572), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(573), - [aux_sym__list_upper_roman_period_repeat1] = STATE(574), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(575), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(576), - [aux_sym_table_repeat1] = STATE(406), - [aux_sym__block_quote_prefix_repeat1] = STATE(330), - [aux_sym__inline_repeat1] = STATE(381), - [anon_sym_LBRACK] = ACTIONS(389), - [anon_sym_PIPE] = ACTIONS(391), + [sym__block_with_heading] = STATE(1099), + [sym__block_element] = STATE(1099), + [sym_heading] = STATE(1099), + [sym_list] = STATE(1099), + [sym__list_dash] = STATE(1006), + [sym__list_item_dash] = STATE(636), + [sym__list_plus] = STATE(1006), + [sym__list_item_plus] = STATE(637), + [sym__list_star] = STATE(1006), + [sym__list_item_star] = STATE(671), + [sym__list_task] = STATE(1006), + [sym__list_item_task] = STATE(691), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(1006), + [sym__list_item_definition] = STATE(896), + [sym__list_decimal_period] = STATE(1006), + [sym__list_item_decimal_period] = STATE(841), + [sym__list_decimal_paren] = STATE(1006), + [sym__list_item_decimal_paren] = STATE(796), + [sym__list_decimal_parens] = STATE(1006), + [sym__list_item_decimal_parens] = STATE(716), + [sym__list_lower_alpha_period] = STATE(1006), + [sym__list_item_lower_alpha_period] = STATE(722), + [sym__list_lower_alpha_paren] = STATE(1006), + [sym__list_item_lower_alpha_paren] = STATE(801), + [sym__list_lower_alpha_parens] = STATE(1006), + [sym__list_item_lower_alpha_parens] = STATE(813), + [sym__list_upper_alpha_period] = STATE(1006), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(1006), + [sym__list_item_upper_alpha_paren] = STATE(706), + [sym__list_upper_alpha_parens] = STATE(1006), + [sym__list_item_upper_alpha_parens] = STATE(707), + [sym__list_lower_roman_period] = STATE(1006), + [sym__list_item_lower_roman_period] = STATE(725), + [sym__list_lower_roman_paren] = STATE(1006), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(1006), + [sym__list_item_lower_roman_parens] = STATE(736), + [sym__list_upper_roman_period] = STATE(1006), + [sym__list_item_upper_roman_period] = STATE(742), + [sym__list_upper_roman_paren] = STATE(1006), + [sym__list_item_upper_roman_paren] = STATE(743), + [sym__list_upper_roman_parens] = STATE(1006), + [sym__list_item_upper_roman_parens] = STATE(762), + [sym_list_item_content] = STATE(810), + [sym_table] = STATE(1099), + [sym__table_content] = STATE(310), + [sym_table_separator] = STATE(310), + [sym_table_row] = STATE(331), + [sym_footnote] = STATE(1099), + [sym_footnote_marker_begin] = STATE(1176), + [sym_div] = STATE(1099), + [sym__div_marker_begin] = STATE(1026), + [sym_code_block] = STATE(1099), + [sym_raw_block] = STATE(1099), + [sym_thematic_break] = STATE(1099), + [sym_block_quote] = STATE(1099), + [sym__block_quote_prefix] = STATE(231), + [sym_link_reference_definition] = STATE(1099), + [sym_block_attribute] = STATE(1099), + [sym__paragraph] = STATE(1099), + [sym__paragraph_content] = STATE(705), + [sym__paragraph_inline_content] = STATE(775), + [sym__inline] = STATE(616), + [sym__symbol_fallback] = STATE(297), + [aux_sym__list_dash_repeat1] = STATE(355), + [aux_sym__list_plus_repeat1] = STATE(356), + [aux_sym__list_star_repeat1] = STATE(362), + [aux_sym__list_task_repeat1] = STATE(346), + [aux_sym__list_definition_repeat1] = STATE(483), + [aux_sym__list_decimal_period_repeat1] = STATE(484), + [aux_sym__list_decimal_paren_repeat1] = STATE(485), + [aux_sym__list_decimal_parens_repeat1] = STATE(486), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(487), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(488), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(489), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(490), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(491), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(492), + [aux_sym__list_lower_roman_period_repeat1] = STATE(493), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(494), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(495), + [aux_sym__list_upper_roman_period_repeat1] = STATE(581), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(497), + [aux_sym_table_repeat1] = STATE(310), + [aux_sym__block_quote_prefix_repeat1] = STATE(253), + [aux_sym__inline_repeat1] = STATE(297), + [anon_sym_LBRACK] = ACTIONS(338), + [anon_sym_PIPE] = ACTIONS(340), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(342), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(429), - [sym__heading_begin] = ACTIONS(397), + [sym__newline] = ACTIONS(392), + [sym__heading_begin] = ACTIONS(346), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(399), + [sym__code_block_begin] = ACTIONS(348), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -10746,115 +10499,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(401), - [sym__block_quote_continuation] = ACTIONS(403), - [sym__thematic_break_dash] = ACTIONS(405), - [sym__thematic_break_star] = ACTIONS(405), + [sym__block_quote_begin] = ACTIONS(350), + [sym__block_quote_continuation] = ACTIONS(352), + [sym__thematic_break_dash] = ACTIONS(354), + [sym__thematic_break_star] = ACTIONS(354), }, [45] = { - [sym__block_with_heading] = STATE(1167), - [sym__block_element] = STATE(1167), - [sym_heading] = STATE(1167), - [sym_list] = STATE(1167), - [sym__list_dash] = STATE(1183), - [sym__list_item_dash] = STATE(727), - [sym__list_plus] = STATE(1183), - [sym__list_item_plus] = STATE(730), - [sym__list_star] = STATE(1183), - [sym__list_item_star] = STATE(759), - [sym__list_task] = STATE(1183), - [sym__list_item_task] = STATE(761), - [sym_list_marker_task] = STATE(46), - [sym__list_definition] = STATE(1183), - [sym__list_item_definition] = STATE(819), - [sym__list_decimal_period] = STATE(1183), - [sym__list_item_decimal_period] = STATE(852), - [sym__list_decimal_paren] = STATE(1183), - [sym__list_item_decimal_paren] = STATE(837), - [sym__list_decimal_parens] = STATE(1183), - [sym__list_item_decimal_parens] = STATE(815), - [sym__list_lower_alpha_period] = STATE(1183), - [sym__list_item_lower_alpha_period] = STATE(843), - [sym__list_lower_alpha_paren] = STATE(1183), - [sym__list_item_lower_alpha_paren] = STATE(850), - [sym__list_lower_alpha_parens] = STATE(1183), - [sym__list_item_lower_alpha_parens] = STATE(853), - [sym__list_upper_alpha_period] = STATE(1183), - [sym__list_item_upper_alpha_period] = STATE(854), - [sym__list_upper_alpha_paren] = STATE(1183), - [sym__list_item_upper_alpha_paren] = STATE(855), - [sym__list_upper_alpha_parens] = STATE(1183), - [sym__list_item_upper_alpha_parens] = STATE(856), - [sym__list_lower_roman_period] = STATE(1183), - [sym__list_item_lower_roman_period] = STATE(857), - [sym__list_lower_roman_paren] = STATE(1183), - [sym__list_item_lower_roman_paren] = STATE(871), - [sym__list_lower_roman_parens] = STATE(1183), - [sym__list_item_lower_roman_parens] = STATE(874), - [sym__list_upper_roman_period] = STATE(1183), - [sym__list_item_upper_roman_period] = STATE(876), - [sym__list_upper_roman_paren] = STATE(1183), - [sym__list_item_upper_roman_paren] = STATE(878), - [sym__list_upper_roman_parens] = STATE(1183), - [sym__list_item_upper_roman_parens] = STATE(880), - [sym_list_item_content] = STATE(879), - [sym_table] = STATE(1167), - [sym__table_content] = STATE(406), - [sym_table_separator] = STATE(406), - [sym_table_row] = STATE(417), - [sym_footnote] = STATE(1167), - [sym_footnote_marker_begin] = STATE(1298), - [sym_div] = STATE(1167), - [sym__div_marker_begin] = STATE(1119), - [sym_code_block] = STATE(1167), - [sym_raw_block] = STATE(1167), - [sym_thematic_break] = STATE(1167), - [sym_block_quote] = STATE(1167), - [sym__block_quote_prefix] = STATE(300), - [sym_link_reference_definition] = STATE(1167), - [sym_block_attribute] = STATE(1167), - [sym__paragraph] = STATE(1167), - [sym__paragraph_content] = STATE(799), - [sym__paragraph_inline_content] = STATE(896), - [sym__inline] = STATE(715), - [sym__symbol_fallback] = STATE(381), - [aux_sym__list_dash_repeat1] = STATE(453), - [aux_sym__list_plus_repeat1] = STATE(458), - [aux_sym__list_star_repeat1] = STATE(463), - [aux_sym__list_task_repeat1] = STATE(440), - [aux_sym__list_definition_repeat1] = STATE(562), - [aux_sym__list_decimal_period_repeat1] = STATE(563), - [aux_sym__list_decimal_paren_repeat1] = STATE(542), - [aux_sym__list_decimal_parens_repeat1] = STATE(564), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(565), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(566), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(567), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(568), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(569), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(570), - [aux_sym__list_lower_roman_period_repeat1] = STATE(571), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(572), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(573), - [aux_sym__list_upper_roman_period_repeat1] = STATE(574), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(575), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(576), - [aux_sym_table_repeat1] = STATE(406), - [aux_sym__block_quote_prefix_repeat1] = STATE(330), - [aux_sym__inline_repeat1] = STATE(381), - [anon_sym_LBRACK] = ACTIONS(389), - [anon_sym_PIPE] = ACTIONS(391), + [sym__block_with_heading] = STATE(1131), + [sym__block_element] = STATE(1131), + [sym_heading] = STATE(1131), + [sym_list] = STATE(1131), + [sym__list_dash] = STATE(1006), + [sym__list_item_dash] = STATE(636), + [sym__list_plus] = STATE(1006), + [sym__list_item_plus] = STATE(637), + [sym__list_star] = STATE(1006), + [sym__list_item_star] = STATE(671), + [sym__list_task] = STATE(1006), + [sym__list_item_task] = STATE(691), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(1006), + [sym__list_item_definition] = STATE(896), + [sym__list_decimal_period] = STATE(1006), + [sym__list_item_decimal_period] = STATE(841), + [sym__list_decimal_paren] = STATE(1006), + [sym__list_item_decimal_paren] = STATE(796), + [sym__list_decimal_parens] = STATE(1006), + [sym__list_item_decimal_parens] = STATE(716), + [sym__list_lower_alpha_period] = STATE(1006), + [sym__list_item_lower_alpha_period] = STATE(722), + [sym__list_lower_alpha_paren] = STATE(1006), + [sym__list_item_lower_alpha_paren] = STATE(801), + [sym__list_lower_alpha_parens] = STATE(1006), + [sym__list_item_lower_alpha_parens] = STATE(813), + [sym__list_upper_alpha_period] = STATE(1006), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(1006), + [sym__list_item_upper_alpha_paren] = STATE(706), + [sym__list_upper_alpha_parens] = STATE(1006), + [sym__list_item_upper_alpha_parens] = STATE(707), + [sym__list_lower_roman_period] = STATE(1006), + [sym__list_item_lower_roman_period] = STATE(725), + [sym__list_lower_roman_paren] = STATE(1006), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(1006), + [sym__list_item_lower_roman_parens] = STATE(736), + [sym__list_upper_roman_period] = STATE(1006), + [sym__list_item_upper_roman_period] = STATE(742), + [sym__list_upper_roman_paren] = STATE(1006), + [sym__list_item_upper_roman_paren] = STATE(743), + [sym__list_upper_roman_parens] = STATE(1006), + [sym__list_item_upper_roman_parens] = STATE(762), + [sym_list_item_content] = STATE(592), + [sym_table] = STATE(1131), + [sym__table_content] = STATE(310), + [sym_table_separator] = STATE(310), + [sym_table_row] = STATE(331), + [sym_footnote] = STATE(1131), + [sym_footnote_marker_begin] = STATE(1176), + [sym_div] = STATE(1131), + [sym__div_marker_begin] = STATE(1026), + [sym_code_block] = STATE(1131), + [sym_raw_block] = STATE(1131), + [sym_thematic_break] = STATE(1131), + [sym_block_quote] = STATE(1131), + [sym__block_quote_prefix] = STATE(231), + [sym_link_reference_definition] = STATE(1131), + [sym_block_attribute] = STATE(1131), + [sym__paragraph] = STATE(1131), + [sym__paragraph_content] = STATE(705), + [sym__paragraph_inline_content] = STATE(775), + [sym__inline] = STATE(616), + [sym__symbol_fallback] = STATE(297), + [aux_sym__list_dash_repeat1] = STATE(355), + [aux_sym__list_plus_repeat1] = STATE(356), + [aux_sym__list_star_repeat1] = STATE(362), + [aux_sym__list_task_repeat1] = STATE(346), + [aux_sym__list_definition_repeat1] = STATE(483), + [aux_sym__list_decimal_period_repeat1] = STATE(484), + [aux_sym__list_decimal_paren_repeat1] = STATE(485), + [aux_sym__list_decimal_parens_repeat1] = STATE(486), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(487), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(488), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(489), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(490), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(491), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(492), + [aux_sym__list_lower_roman_period_repeat1] = STATE(493), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(494), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(495), + [aux_sym__list_upper_roman_period_repeat1] = STATE(581), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(497), + [aux_sym_table_repeat1] = STATE(310), + [aux_sym__block_quote_prefix_repeat1] = STATE(253), + [aux_sym__inline_repeat1] = STATE(297), + [anon_sym_LBRACK] = ACTIONS(338), + [anon_sym_PIPE] = ACTIONS(340), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(342), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(431), - [sym__heading_begin] = ACTIONS(397), + [sym__newline] = ACTIONS(368), + [sym__heading_begin] = ACTIONS(346), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(399), + [sym__code_block_begin] = ACTIONS(348), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -10875,115 +10628,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(401), - [sym__block_quote_continuation] = ACTIONS(403), - [sym__thematic_break_dash] = ACTIONS(405), - [sym__thematic_break_star] = ACTIONS(405), + [sym__block_quote_begin] = ACTIONS(350), + [sym__block_quote_continuation] = ACTIONS(352), + [sym__thematic_break_dash] = ACTIONS(354), + [sym__thematic_break_star] = ACTIONS(354), }, [46] = { - [sym__block_with_heading] = STATE(1242), - [sym__block_element] = STATE(1242), - [sym_heading] = STATE(1242), - [sym_list] = STATE(1242), - [sym__list_dash] = STATE(1183), - [sym__list_item_dash] = STATE(727), - [sym__list_plus] = STATE(1183), - [sym__list_item_plus] = STATE(730), - [sym__list_star] = STATE(1183), - [sym__list_item_star] = STATE(759), - [sym__list_task] = STATE(1183), - [sym__list_item_task] = STATE(761), - [sym_list_marker_task] = STATE(46), - [sym__list_definition] = STATE(1183), - [sym__list_item_definition] = STATE(819), - [sym__list_decimal_period] = STATE(1183), - [sym__list_item_decimal_period] = STATE(852), - [sym__list_decimal_paren] = STATE(1183), - [sym__list_item_decimal_paren] = STATE(837), - [sym__list_decimal_parens] = STATE(1183), - [sym__list_item_decimal_parens] = STATE(815), - [sym__list_lower_alpha_period] = STATE(1183), - [sym__list_item_lower_alpha_period] = STATE(843), - [sym__list_lower_alpha_paren] = STATE(1183), - [sym__list_item_lower_alpha_paren] = STATE(850), - [sym__list_lower_alpha_parens] = STATE(1183), - [sym__list_item_lower_alpha_parens] = STATE(853), - [sym__list_upper_alpha_period] = STATE(1183), - [sym__list_item_upper_alpha_period] = STATE(854), - [sym__list_upper_alpha_paren] = STATE(1183), - [sym__list_item_upper_alpha_paren] = STATE(855), - [sym__list_upper_alpha_parens] = STATE(1183), - [sym__list_item_upper_alpha_parens] = STATE(856), - [sym__list_lower_roman_period] = STATE(1183), - [sym__list_item_lower_roman_period] = STATE(857), - [sym__list_lower_roman_paren] = STATE(1183), - [sym__list_item_lower_roman_paren] = STATE(871), - [sym__list_lower_roman_parens] = STATE(1183), - [sym__list_item_lower_roman_parens] = STATE(874), - [sym__list_upper_roman_period] = STATE(1183), - [sym__list_item_upper_roman_period] = STATE(876), - [sym__list_upper_roman_paren] = STATE(1183), - [sym__list_item_upper_roman_paren] = STATE(878), - [sym__list_upper_roman_parens] = STATE(1183), - [sym__list_item_upper_roman_parens] = STATE(880), - [sym_list_item_content] = STATE(706), - [sym_table] = STATE(1242), - [sym__table_content] = STATE(406), - [sym_table_separator] = STATE(406), - [sym_table_row] = STATE(417), - [sym_footnote] = STATE(1242), - [sym_footnote_marker_begin] = STATE(1298), - [sym_div] = STATE(1242), - [sym__div_marker_begin] = STATE(1119), - [sym_code_block] = STATE(1242), - [sym_raw_block] = STATE(1242), - [sym_thematic_break] = STATE(1242), - [sym_block_quote] = STATE(1242), - [sym__block_quote_prefix] = STATE(300), - [sym_link_reference_definition] = STATE(1242), - [sym_block_attribute] = STATE(1242), - [sym__paragraph] = STATE(1242), - [sym__paragraph_content] = STATE(799), - [sym__paragraph_inline_content] = STATE(896), - [sym__inline] = STATE(715), - [sym__symbol_fallback] = STATE(381), - [aux_sym__list_dash_repeat1] = STATE(453), - [aux_sym__list_plus_repeat1] = STATE(458), - [aux_sym__list_star_repeat1] = STATE(463), - [aux_sym__list_task_repeat1] = STATE(440), - [aux_sym__list_definition_repeat1] = STATE(562), - [aux_sym__list_decimal_period_repeat1] = STATE(563), - [aux_sym__list_decimal_paren_repeat1] = STATE(542), - [aux_sym__list_decimal_parens_repeat1] = STATE(564), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(565), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(566), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(567), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(568), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(569), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(570), - [aux_sym__list_lower_roman_period_repeat1] = STATE(571), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(572), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(573), - [aux_sym__list_upper_roman_period_repeat1] = STATE(574), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(575), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(576), - [aux_sym_table_repeat1] = STATE(406), - [aux_sym__block_quote_prefix_repeat1] = STATE(330), - [aux_sym__inline_repeat1] = STATE(381), - [anon_sym_LBRACK] = ACTIONS(389), - [anon_sym_PIPE] = ACTIONS(391), + [sym__block_with_heading] = STATE(1094), + [sym__block_element] = STATE(1094), + [sym_heading] = STATE(1094), + [sym_list] = STATE(1094), + [sym__list_dash] = STATE(1006), + [sym__list_item_dash] = STATE(636), + [sym__list_plus] = STATE(1006), + [sym__list_item_plus] = STATE(637), + [sym__list_star] = STATE(1006), + [sym__list_item_star] = STATE(671), + [sym__list_task] = STATE(1006), + [sym__list_item_task] = STATE(691), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(1006), + [sym__list_item_definition] = STATE(896), + [sym__list_decimal_period] = STATE(1006), + [sym__list_item_decimal_period] = STATE(841), + [sym__list_decimal_paren] = STATE(1006), + [sym__list_item_decimal_paren] = STATE(796), + [sym__list_decimal_parens] = STATE(1006), + [sym__list_item_decimal_parens] = STATE(716), + [sym__list_lower_alpha_period] = STATE(1006), + [sym__list_item_lower_alpha_period] = STATE(722), + [sym__list_lower_alpha_paren] = STATE(1006), + [sym__list_item_lower_alpha_paren] = STATE(801), + [sym__list_lower_alpha_parens] = STATE(1006), + [sym__list_item_lower_alpha_parens] = STATE(813), + [sym__list_upper_alpha_period] = STATE(1006), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(1006), + [sym__list_item_upper_alpha_paren] = STATE(706), + [sym__list_upper_alpha_parens] = STATE(1006), + [sym__list_item_upper_alpha_parens] = STATE(707), + [sym__list_lower_roman_period] = STATE(1006), + [sym__list_item_lower_roman_period] = STATE(725), + [sym__list_lower_roman_paren] = STATE(1006), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(1006), + [sym__list_item_lower_roman_parens] = STATE(736), + [sym__list_upper_roman_period] = STATE(1006), + [sym__list_item_upper_roman_period] = STATE(742), + [sym__list_upper_roman_paren] = STATE(1006), + [sym__list_item_upper_roman_paren] = STATE(743), + [sym__list_upper_roman_parens] = STATE(1006), + [sym__list_item_upper_roman_parens] = STATE(762), + [sym_table] = STATE(1094), + [sym__table_content] = STATE(310), + [sym_table_separator] = STATE(310), + [sym_table_row] = STATE(331), + [sym_footnote] = STATE(1094), + [sym_footnote_marker_begin] = STATE(1176), + [sym_footnote_content] = STATE(190), + [sym_div] = STATE(1094), + [sym__div_marker_begin] = STATE(1026), + [sym_code_block] = STATE(1094), + [sym_raw_block] = STATE(1094), + [sym_thematic_break] = STATE(1094), + [sym_block_quote] = STATE(1094), + [sym__block_quote_prefix] = STATE(231), + [sym_link_reference_definition] = STATE(1094), + [sym_block_attribute] = STATE(1094), + [sym__paragraph] = STATE(1094), + [sym__paragraph_content] = STATE(705), + [sym__paragraph_inline_content] = STATE(775), + [sym__inline] = STATE(616), + [sym__symbol_fallback] = STATE(297), + [aux_sym__list_dash_repeat1] = STATE(355), + [aux_sym__list_plus_repeat1] = STATE(356), + [aux_sym__list_star_repeat1] = STATE(362), + [aux_sym__list_task_repeat1] = STATE(346), + [aux_sym__list_definition_repeat1] = STATE(483), + [aux_sym__list_decimal_period_repeat1] = STATE(484), + [aux_sym__list_decimal_paren_repeat1] = STATE(485), + [aux_sym__list_decimal_parens_repeat1] = STATE(486), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(487), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(488), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(489), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(490), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(491), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(492), + [aux_sym__list_lower_roman_period_repeat1] = STATE(493), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(494), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(495), + [aux_sym__list_upper_roman_period_repeat1] = STATE(581), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(497), + [aux_sym_table_repeat1] = STATE(310), + [aux_sym__block_quote_prefix_repeat1] = STATE(253), + [aux_sym__inline_repeat1] = STATE(297), + [anon_sym_LBRACK] = ACTIONS(338), + [anon_sym_PIPE] = ACTIONS(340), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(342), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(433), - [sym__heading_begin] = ACTIONS(397), + [sym__newline] = ACTIONS(394), + [sym__heading_begin] = ACTIONS(346), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(399), + [sym__code_block_begin] = ACTIONS(348), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -11004,115 +10757,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(401), - [sym__block_quote_continuation] = ACTIONS(403), - [sym__thematic_break_dash] = ACTIONS(405), - [sym__thematic_break_star] = ACTIONS(405), + [sym__block_quote_begin] = ACTIONS(350), + [sym__block_quote_continuation] = ACTIONS(352), + [sym__thematic_break_dash] = ACTIONS(354), + [sym__thematic_break_star] = ACTIONS(354), }, [47] = { - [sym__block_with_heading] = STATE(1190), - [sym__block_element] = STATE(1190), - [sym_heading] = STATE(1190), - [sym_list] = STATE(1190), - [sym__list_dash] = STATE(1183), - [sym__list_item_dash] = STATE(727), - [sym__list_plus] = STATE(1183), - [sym__list_item_plus] = STATE(730), - [sym__list_star] = STATE(1183), - [sym__list_item_star] = STATE(759), - [sym__list_task] = STATE(1183), - [sym__list_item_task] = STATE(761), - [sym_list_marker_task] = STATE(46), - [sym__list_definition] = STATE(1183), - [sym__list_item_definition] = STATE(819), - [sym__list_decimal_period] = STATE(1183), - [sym__list_item_decimal_period] = STATE(852), - [sym__list_decimal_paren] = STATE(1183), - [sym__list_item_decimal_paren] = STATE(837), - [sym__list_decimal_parens] = STATE(1183), - [sym__list_item_decimal_parens] = STATE(815), - [sym__list_lower_alpha_period] = STATE(1183), - [sym__list_item_lower_alpha_period] = STATE(843), - [sym__list_lower_alpha_paren] = STATE(1183), - [sym__list_item_lower_alpha_paren] = STATE(850), - [sym__list_lower_alpha_parens] = STATE(1183), - [sym__list_item_lower_alpha_parens] = STATE(853), - [sym__list_upper_alpha_period] = STATE(1183), - [sym__list_item_upper_alpha_period] = STATE(854), - [sym__list_upper_alpha_paren] = STATE(1183), - [sym__list_item_upper_alpha_paren] = STATE(855), - [sym__list_upper_alpha_parens] = STATE(1183), - [sym__list_item_upper_alpha_parens] = STATE(856), - [sym__list_lower_roman_period] = STATE(1183), - [sym__list_item_lower_roman_period] = STATE(857), - [sym__list_lower_roman_paren] = STATE(1183), - [sym__list_item_lower_roman_paren] = STATE(871), - [sym__list_lower_roman_parens] = STATE(1183), - [sym__list_item_lower_roman_parens] = STATE(874), - [sym__list_upper_roman_period] = STATE(1183), - [sym__list_item_upper_roman_period] = STATE(876), - [sym__list_upper_roman_paren] = STATE(1183), - [sym__list_item_upper_roman_paren] = STATE(878), - [sym__list_upper_roman_parens] = STATE(1183), - [sym__list_item_upper_roman_parens] = STATE(880), - [sym_list_item_content] = STATE(892), - [sym_table] = STATE(1190), - [sym__table_content] = STATE(406), - [sym_table_separator] = STATE(406), - [sym_table_row] = STATE(417), - [sym_footnote] = STATE(1190), - [sym_footnote_marker_begin] = STATE(1298), - [sym_div] = STATE(1190), - [sym__div_marker_begin] = STATE(1119), - [sym_code_block] = STATE(1190), - [sym_raw_block] = STATE(1190), - [sym_thematic_break] = STATE(1190), - [sym_block_quote] = STATE(1190), - [sym__block_quote_prefix] = STATE(300), - [sym_link_reference_definition] = STATE(1190), - [sym_block_attribute] = STATE(1190), - [sym__paragraph] = STATE(1190), - [sym__paragraph_content] = STATE(799), - [sym__paragraph_inline_content] = STATE(896), - [sym__inline] = STATE(715), - [sym__symbol_fallback] = STATE(381), - [aux_sym__list_dash_repeat1] = STATE(453), - [aux_sym__list_plus_repeat1] = STATE(458), - [aux_sym__list_star_repeat1] = STATE(463), - [aux_sym__list_task_repeat1] = STATE(440), - [aux_sym__list_definition_repeat1] = STATE(562), - [aux_sym__list_decimal_period_repeat1] = STATE(563), - [aux_sym__list_decimal_paren_repeat1] = STATE(542), - [aux_sym__list_decimal_parens_repeat1] = STATE(564), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(565), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(566), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(567), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(568), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(569), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(570), - [aux_sym__list_lower_roman_period_repeat1] = STATE(571), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(572), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(573), - [aux_sym__list_upper_roman_period_repeat1] = STATE(574), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(575), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(576), - [aux_sym_table_repeat1] = STATE(406), - [aux_sym__block_quote_prefix_repeat1] = STATE(330), - [aux_sym__inline_repeat1] = STATE(381), - [anon_sym_LBRACK] = ACTIONS(389), - [anon_sym_PIPE] = ACTIONS(391), + [sym__block_with_heading] = STATE(1118), + [sym__block_element] = STATE(1118), + [sym_heading] = STATE(1118), + [sym_list] = STATE(1118), + [sym__list_dash] = STATE(1006), + [sym__list_item_dash] = STATE(636), + [sym__list_plus] = STATE(1006), + [sym__list_item_plus] = STATE(637), + [sym__list_star] = STATE(1006), + [sym__list_item_star] = STATE(671), + [sym__list_task] = STATE(1006), + [sym__list_item_task] = STATE(691), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(1006), + [sym__list_item_definition] = STATE(896), + [sym__list_decimal_period] = STATE(1006), + [sym__list_item_decimal_period] = STATE(841), + [sym__list_decimal_paren] = STATE(1006), + [sym__list_item_decimal_paren] = STATE(796), + [sym__list_decimal_parens] = STATE(1006), + [sym__list_item_decimal_parens] = STATE(716), + [sym__list_lower_alpha_period] = STATE(1006), + [sym__list_item_lower_alpha_period] = STATE(722), + [sym__list_lower_alpha_paren] = STATE(1006), + [sym__list_item_lower_alpha_paren] = STATE(801), + [sym__list_lower_alpha_parens] = STATE(1006), + [sym__list_item_lower_alpha_parens] = STATE(813), + [sym__list_upper_alpha_period] = STATE(1006), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(1006), + [sym__list_item_upper_alpha_paren] = STATE(706), + [sym__list_upper_alpha_parens] = STATE(1006), + [sym__list_item_upper_alpha_parens] = STATE(707), + [sym__list_lower_roman_period] = STATE(1006), + [sym__list_item_lower_roman_period] = STATE(725), + [sym__list_lower_roman_paren] = STATE(1006), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(1006), + [sym__list_item_lower_roman_parens] = STATE(736), + [sym__list_upper_roman_period] = STATE(1006), + [sym__list_item_upper_roman_period] = STATE(742), + [sym__list_upper_roman_paren] = STATE(1006), + [sym__list_item_upper_roman_paren] = STATE(743), + [sym__list_upper_roman_parens] = STATE(1006), + [sym__list_item_upper_roman_parens] = STATE(762), + [sym_list_item_content] = STATE(811), + [sym_table] = STATE(1118), + [sym__table_content] = STATE(310), + [sym_table_separator] = STATE(310), + [sym_table_row] = STATE(331), + [sym_footnote] = STATE(1118), + [sym_footnote_marker_begin] = STATE(1176), + [sym_div] = STATE(1118), + [sym__div_marker_begin] = STATE(1026), + [sym_code_block] = STATE(1118), + [sym_raw_block] = STATE(1118), + [sym_thematic_break] = STATE(1118), + [sym_block_quote] = STATE(1118), + [sym__block_quote_prefix] = STATE(231), + [sym_link_reference_definition] = STATE(1118), + [sym_block_attribute] = STATE(1118), + [sym__paragraph] = STATE(1118), + [sym__paragraph_content] = STATE(705), + [sym__paragraph_inline_content] = STATE(775), + [sym__inline] = STATE(616), + [sym__symbol_fallback] = STATE(297), + [aux_sym__list_dash_repeat1] = STATE(355), + [aux_sym__list_plus_repeat1] = STATE(356), + [aux_sym__list_star_repeat1] = STATE(362), + [aux_sym__list_task_repeat1] = STATE(346), + [aux_sym__list_definition_repeat1] = STATE(483), + [aux_sym__list_decimal_period_repeat1] = STATE(484), + [aux_sym__list_decimal_paren_repeat1] = STATE(485), + [aux_sym__list_decimal_parens_repeat1] = STATE(486), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(487), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(488), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(489), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(490), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(491), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(492), + [aux_sym__list_lower_roman_period_repeat1] = STATE(493), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(494), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(495), + [aux_sym__list_upper_roman_period_repeat1] = STATE(581), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(497), + [aux_sym_table_repeat1] = STATE(310), + [aux_sym__block_quote_prefix_repeat1] = STATE(253), + [aux_sym__inline_repeat1] = STATE(297), + [anon_sym_LBRACK] = ACTIONS(338), + [anon_sym_PIPE] = ACTIONS(340), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(342), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(435), - [sym__heading_begin] = ACTIONS(397), + [sym__newline] = ACTIONS(396), + [sym__heading_begin] = ACTIONS(346), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(399), + [sym__code_block_begin] = ACTIONS(348), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -11133,115 +10886,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(401), - [sym__block_quote_continuation] = ACTIONS(403), - [sym__thematic_break_dash] = ACTIONS(405), - [sym__thematic_break_star] = ACTIONS(405), + [sym__block_quote_begin] = ACTIONS(350), + [sym__block_quote_continuation] = ACTIONS(352), + [sym__thematic_break_dash] = ACTIONS(354), + [sym__thematic_break_star] = ACTIONS(354), }, [48] = { - [sym__block_with_heading] = STATE(1212), - [sym__block_element] = STATE(1212), - [sym_heading] = STATE(1212), - [sym_list] = STATE(1212), - [sym__list_dash] = STATE(1183), - [sym__list_item_dash] = STATE(727), - [sym__list_plus] = STATE(1183), - [sym__list_item_plus] = STATE(730), - [sym__list_star] = STATE(1183), - [sym__list_item_star] = STATE(759), - [sym__list_task] = STATE(1183), - [sym__list_item_task] = STATE(761), - [sym_list_marker_task] = STATE(46), - [sym__list_definition] = STATE(1183), - [sym__list_item_definition] = STATE(819), - [sym__list_decimal_period] = STATE(1183), - [sym__list_item_decimal_period] = STATE(852), - [sym__list_decimal_paren] = STATE(1183), - [sym__list_item_decimal_paren] = STATE(837), - [sym__list_decimal_parens] = STATE(1183), - [sym__list_item_decimal_parens] = STATE(815), - [sym__list_lower_alpha_period] = STATE(1183), - [sym__list_item_lower_alpha_period] = STATE(843), - [sym__list_lower_alpha_paren] = STATE(1183), - [sym__list_item_lower_alpha_paren] = STATE(850), - [sym__list_lower_alpha_parens] = STATE(1183), - [sym__list_item_lower_alpha_parens] = STATE(853), - [sym__list_upper_alpha_period] = STATE(1183), - [sym__list_item_upper_alpha_period] = STATE(854), - [sym__list_upper_alpha_paren] = STATE(1183), - [sym__list_item_upper_alpha_paren] = STATE(855), - [sym__list_upper_alpha_parens] = STATE(1183), - [sym__list_item_upper_alpha_parens] = STATE(856), - [sym__list_lower_roman_period] = STATE(1183), - [sym__list_item_lower_roman_period] = STATE(857), - [sym__list_lower_roman_paren] = STATE(1183), - [sym__list_item_lower_roman_paren] = STATE(871), - [sym__list_lower_roman_parens] = STATE(1183), - [sym__list_item_lower_roman_parens] = STATE(874), - [sym__list_upper_roman_period] = STATE(1183), - [sym__list_item_upper_roman_period] = STATE(876), - [sym__list_upper_roman_paren] = STATE(1183), - [sym__list_item_upper_roman_paren] = STATE(878), - [sym__list_upper_roman_parens] = STATE(1183), - [sym__list_item_upper_roman_parens] = STATE(880), - [sym_list_item_content] = STATE(1021), - [sym_table] = STATE(1212), - [sym__table_content] = STATE(406), - [sym_table_separator] = STATE(406), - [sym_table_row] = STATE(417), - [sym_footnote] = STATE(1212), - [sym_footnote_marker_begin] = STATE(1298), - [sym_div] = STATE(1212), - [sym__div_marker_begin] = STATE(1119), - [sym_code_block] = STATE(1212), - [sym_raw_block] = STATE(1212), - [sym_thematic_break] = STATE(1212), - [sym_block_quote] = STATE(1212), - [sym__block_quote_prefix] = STATE(300), - [sym_link_reference_definition] = STATE(1212), - [sym_block_attribute] = STATE(1212), - [sym__paragraph] = STATE(1212), - [sym__paragraph_content] = STATE(799), - [sym__paragraph_inline_content] = STATE(896), - [sym__inline] = STATE(715), - [sym__symbol_fallback] = STATE(381), - [aux_sym__list_dash_repeat1] = STATE(453), - [aux_sym__list_plus_repeat1] = STATE(458), - [aux_sym__list_star_repeat1] = STATE(463), - [aux_sym__list_task_repeat1] = STATE(440), - [aux_sym__list_definition_repeat1] = STATE(562), - [aux_sym__list_decimal_period_repeat1] = STATE(563), - [aux_sym__list_decimal_paren_repeat1] = STATE(542), - [aux_sym__list_decimal_parens_repeat1] = STATE(564), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(565), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(566), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(567), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(568), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(569), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(570), - [aux_sym__list_lower_roman_period_repeat1] = STATE(571), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(572), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(573), - [aux_sym__list_upper_roman_period_repeat1] = STATE(574), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(575), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(576), - [aux_sym_table_repeat1] = STATE(406), - [aux_sym__block_quote_prefix_repeat1] = STATE(330), - [aux_sym__inline_repeat1] = STATE(381), - [anon_sym_LBRACK] = ACTIONS(389), - [anon_sym_PIPE] = ACTIONS(391), + [sym__block_with_heading] = STATE(1119), + [sym__block_element] = STATE(1119), + [sym_heading] = STATE(1119), + [sym_list] = STATE(1119), + [sym__list_dash] = STATE(1006), + [sym__list_item_dash] = STATE(636), + [sym__list_plus] = STATE(1006), + [sym__list_item_plus] = STATE(637), + [sym__list_star] = STATE(1006), + [sym__list_item_star] = STATE(671), + [sym__list_task] = STATE(1006), + [sym__list_item_task] = STATE(691), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(1006), + [sym__list_item_definition] = STATE(896), + [sym__list_decimal_period] = STATE(1006), + [sym__list_item_decimal_period] = STATE(841), + [sym__list_decimal_paren] = STATE(1006), + [sym__list_item_decimal_paren] = STATE(796), + [sym__list_decimal_parens] = STATE(1006), + [sym__list_item_decimal_parens] = STATE(716), + [sym__list_lower_alpha_period] = STATE(1006), + [sym__list_item_lower_alpha_period] = STATE(722), + [sym__list_lower_alpha_paren] = STATE(1006), + [sym__list_item_lower_alpha_paren] = STATE(801), + [sym__list_lower_alpha_parens] = STATE(1006), + [sym__list_item_lower_alpha_parens] = STATE(813), + [sym__list_upper_alpha_period] = STATE(1006), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(1006), + [sym__list_item_upper_alpha_paren] = STATE(706), + [sym__list_upper_alpha_parens] = STATE(1006), + [sym__list_item_upper_alpha_parens] = STATE(707), + [sym__list_lower_roman_period] = STATE(1006), + [sym__list_item_lower_roman_period] = STATE(725), + [sym__list_lower_roman_paren] = STATE(1006), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(1006), + [sym__list_item_lower_roman_parens] = STATE(736), + [sym__list_upper_roman_period] = STATE(1006), + [sym__list_item_upper_roman_period] = STATE(742), + [sym__list_upper_roman_paren] = STATE(1006), + [sym__list_item_upper_roman_paren] = STATE(743), + [sym__list_upper_roman_parens] = STATE(1006), + [sym__list_item_upper_roman_parens] = STATE(762), + [sym_list_item_content] = STATE(918), + [sym_table] = STATE(1119), + [sym__table_content] = STATE(310), + [sym_table_separator] = STATE(310), + [sym_table_row] = STATE(331), + [sym_footnote] = STATE(1119), + [sym_footnote_marker_begin] = STATE(1176), + [sym_div] = STATE(1119), + [sym__div_marker_begin] = STATE(1026), + [sym_code_block] = STATE(1119), + [sym_raw_block] = STATE(1119), + [sym_thematic_break] = STATE(1119), + [sym_block_quote] = STATE(1119), + [sym__block_quote_prefix] = STATE(231), + [sym_link_reference_definition] = STATE(1119), + [sym_block_attribute] = STATE(1119), + [sym__paragraph] = STATE(1119), + [sym__paragraph_content] = STATE(705), + [sym__paragraph_inline_content] = STATE(775), + [sym__inline] = STATE(616), + [sym__symbol_fallback] = STATE(297), + [aux_sym__list_dash_repeat1] = STATE(355), + [aux_sym__list_plus_repeat1] = STATE(356), + [aux_sym__list_star_repeat1] = STATE(362), + [aux_sym__list_task_repeat1] = STATE(346), + [aux_sym__list_definition_repeat1] = STATE(483), + [aux_sym__list_decimal_period_repeat1] = STATE(484), + [aux_sym__list_decimal_paren_repeat1] = STATE(485), + [aux_sym__list_decimal_parens_repeat1] = STATE(486), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(487), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(488), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(489), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(490), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(491), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(492), + [aux_sym__list_lower_roman_period_repeat1] = STATE(493), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(494), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(495), + [aux_sym__list_upper_roman_period_repeat1] = STATE(581), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(497), + [aux_sym_table_repeat1] = STATE(310), + [aux_sym__block_quote_prefix_repeat1] = STATE(253), + [aux_sym__inline_repeat1] = STATE(297), + [anon_sym_LBRACK] = ACTIONS(338), + [anon_sym_PIPE] = ACTIONS(340), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(342), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(437), - [sym__heading_begin] = ACTIONS(397), + [sym__newline] = ACTIONS(398), + [sym__heading_begin] = ACTIONS(346), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(399), + [sym__code_block_begin] = ACTIONS(348), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -11262,115 +11015,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(401), - [sym__block_quote_continuation] = ACTIONS(403), - [sym__thematic_break_dash] = ACTIONS(405), - [sym__thematic_break_star] = ACTIONS(405), + [sym__block_quote_begin] = ACTIONS(350), + [sym__block_quote_continuation] = ACTIONS(352), + [sym__thematic_break_dash] = ACTIONS(354), + [sym__thematic_break_star] = ACTIONS(354), }, [49] = { - [sym__block_with_heading] = STATE(1230), - [sym__block_element] = STATE(1230), - [sym_heading] = STATE(1230), - [sym_list] = STATE(1230), - [sym__list_dash] = STATE(1183), - [sym__list_item_dash] = STATE(727), - [sym__list_plus] = STATE(1183), - [sym__list_item_plus] = STATE(730), - [sym__list_star] = STATE(1183), - [sym__list_item_star] = STATE(759), - [sym__list_task] = STATE(1183), - [sym__list_item_task] = STATE(761), - [sym_list_marker_task] = STATE(46), - [sym__list_definition] = STATE(1183), - [sym__list_item_definition] = STATE(819), - [sym__list_decimal_period] = STATE(1183), - [sym__list_item_decimal_period] = STATE(852), - [sym__list_decimal_paren] = STATE(1183), - [sym__list_item_decimal_paren] = STATE(837), - [sym__list_decimal_parens] = STATE(1183), - [sym__list_item_decimal_parens] = STATE(815), - [sym__list_lower_alpha_period] = STATE(1183), - [sym__list_item_lower_alpha_period] = STATE(843), - [sym__list_lower_alpha_paren] = STATE(1183), - [sym__list_item_lower_alpha_paren] = STATE(850), - [sym__list_lower_alpha_parens] = STATE(1183), - [sym__list_item_lower_alpha_parens] = STATE(853), - [sym__list_upper_alpha_period] = STATE(1183), - [sym__list_item_upper_alpha_period] = STATE(854), - [sym__list_upper_alpha_paren] = STATE(1183), - [sym__list_item_upper_alpha_paren] = STATE(855), - [sym__list_upper_alpha_parens] = STATE(1183), - [sym__list_item_upper_alpha_parens] = STATE(856), - [sym__list_lower_roman_period] = STATE(1183), - [sym__list_item_lower_roman_period] = STATE(857), - [sym__list_lower_roman_paren] = STATE(1183), - [sym__list_item_lower_roman_paren] = STATE(871), - [sym__list_lower_roman_parens] = STATE(1183), - [sym__list_item_lower_roman_parens] = STATE(874), - [sym__list_upper_roman_period] = STATE(1183), - [sym__list_item_upper_roman_period] = STATE(876), - [sym__list_upper_roman_paren] = STATE(1183), - [sym__list_item_upper_roman_paren] = STATE(878), - [sym__list_upper_roman_parens] = STATE(1183), - [sym__list_item_upper_roman_parens] = STATE(880), - [sym_list_item_content] = STATE(957), - [sym_table] = STATE(1230), - [sym__table_content] = STATE(406), - [sym_table_separator] = STATE(406), - [sym_table_row] = STATE(417), - [sym_footnote] = STATE(1230), - [sym_footnote_marker_begin] = STATE(1298), - [sym_div] = STATE(1230), - [sym__div_marker_begin] = STATE(1119), - [sym_code_block] = STATE(1230), - [sym_raw_block] = STATE(1230), - [sym_thematic_break] = STATE(1230), - [sym_block_quote] = STATE(1230), - [sym__block_quote_prefix] = STATE(300), - [sym_link_reference_definition] = STATE(1230), - [sym_block_attribute] = STATE(1230), - [sym__paragraph] = STATE(1230), - [sym__paragraph_content] = STATE(799), - [sym__paragraph_inline_content] = STATE(896), - [sym__inline] = STATE(715), - [sym__symbol_fallback] = STATE(381), - [aux_sym__list_dash_repeat1] = STATE(453), - [aux_sym__list_plus_repeat1] = STATE(458), - [aux_sym__list_star_repeat1] = STATE(463), - [aux_sym__list_task_repeat1] = STATE(440), - [aux_sym__list_definition_repeat1] = STATE(562), - [aux_sym__list_decimal_period_repeat1] = STATE(563), - [aux_sym__list_decimal_paren_repeat1] = STATE(542), - [aux_sym__list_decimal_parens_repeat1] = STATE(564), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(565), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(566), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(567), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(568), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(569), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(570), - [aux_sym__list_lower_roman_period_repeat1] = STATE(571), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(572), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(573), - [aux_sym__list_upper_roman_period_repeat1] = STATE(574), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(575), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(576), - [aux_sym_table_repeat1] = STATE(406), - [aux_sym__block_quote_prefix_repeat1] = STATE(330), - [aux_sym__inline_repeat1] = STATE(381), - [anon_sym_LBRACK] = ACTIONS(389), - [anon_sym_PIPE] = ACTIONS(391), + [sym__block_with_heading] = STATE(1117), + [sym__block_element] = STATE(1117), + [sym_heading] = STATE(1117), + [sym_list] = STATE(1117), + [sym__list_dash] = STATE(1006), + [sym__list_item_dash] = STATE(636), + [sym__list_plus] = STATE(1006), + [sym__list_item_plus] = STATE(637), + [sym__list_star] = STATE(1006), + [sym__list_item_star] = STATE(671), + [sym__list_task] = STATE(1006), + [sym__list_item_task] = STATE(691), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(1006), + [sym__list_item_definition] = STATE(896), + [sym__list_decimal_period] = STATE(1006), + [sym__list_item_decimal_period] = STATE(841), + [sym__list_decimal_paren] = STATE(1006), + [sym__list_item_decimal_paren] = STATE(796), + [sym__list_decimal_parens] = STATE(1006), + [sym__list_item_decimal_parens] = STATE(716), + [sym__list_lower_alpha_period] = STATE(1006), + [sym__list_item_lower_alpha_period] = STATE(722), + [sym__list_lower_alpha_paren] = STATE(1006), + [sym__list_item_lower_alpha_paren] = STATE(801), + [sym__list_lower_alpha_parens] = STATE(1006), + [sym__list_item_lower_alpha_parens] = STATE(813), + [sym__list_upper_alpha_period] = STATE(1006), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(1006), + [sym__list_item_upper_alpha_paren] = STATE(706), + [sym__list_upper_alpha_parens] = STATE(1006), + [sym__list_item_upper_alpha_parens] = STATE(707), + [sym__list_lower_roman_period] = STATE(1006), + [sym__list_item_lower_roman_period] = STATE(725), + [sym__list_lower_roman_paren] = STATE(1006), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(1006), + [sym__list_item_lower_roman_parens] = STATE(736), + [sym__list_upper_roman_period] = STATE(1006), + [sym__list_item_upper_roman_period] = STATE(742), + [sym__list_upper_roman_paren] = STATE(1006), + [sym__list_item_upper_roman_paren] = STATE(743), + [sym__list_upper_roman_parens] = STATE(1006), + [sym__list_item_upper_roman_parens] = STATE(762), + [sym_table] = STATE(1117), + [sym__table_content] = STATE(310), + [sym_table_separator] = STATE(310), + [sym_table_row] = STATE(331), + [sym_footnote] = STATE(1117), + [sym_footnote_marker_begin] = STATE(1176), + [sym_footnote_content] = STATE(655), + [sym_div] = STATE(1117), + [sym__div_marker_begin] = STATE(1026), + [sym_code_block] = STATE(1117), + [sym_raw_block] = STATE(1117), + [sym_thematic_break] = STATE(1117), + [sym_block_quote] = STATE(1117), + [sym__block_quote_prefix] = STATE(231), + [sym_link_reference_definition] = STATE(1117), + [sym_block_attribute] = STATE(1117), + [sym__paragraph] = STATE(1117), + [sym__paragraph_content] = STATE(705), + [sym__paragraph_inline_content] = STATE(775), + [sym__inline] = STATE(616), + [sym__symbol_fallback] = STATE(297), + [aux_sym__list_dash_repeat1] = STATE(355), + [aux_sym__list_plus_repeat1] = STATE(356), + [aux_sym__list_star_repeat1] = STATE(362), + [aux_sym__list_task_repeat1] = STATE(346), + [aux_sym__list_definition_repeat1] = STATE(483), + [aux_sym__list_decimal_period_repeat1] = STATE(484), + [aux_sym__list_decimal_paren_repeat1] = STATE(485), + [aux_sym__list_decimal_parens_repeat1] = STATE(486), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(487), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(488), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(489), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(490), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(491), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(492), + [aux_sym__list_lower_roman_period_repeat1] = STATE(493), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(494), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(495), + [aux_sym__list_upper_roman_period_repeat1] = STATE(581), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(497), + [aux_sym_table_repeat1] = STATE(310), + [aux_sym__block_quote_prefix_repeat1] = STATE(253), + [aux_sym__inline_repeat1] = STATE(297), + [anon_sym_LBRACK] = ACTIONS(338), + [anon_sym_PIPE] = ACTIONS(340), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(342), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(439), - [sym__heading_begin] = ACTIONS(397), + [sym__newline] = ACTIONS(400), + [sym__heading_begin] = ACTIONS(346), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(399), + [sym__code_block_begin] = ACTIONS(348), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -11391,115 +11144,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(401), - [sym__block_quote_continuation] = ACTIONS(403), - [sym__thematic_break_dash] = ACTIONS(405), - [sym__thematic_break_star] = ACTIONS(405), + [sym__block_quote_begin] = ACTIONS(350), + [sym__block_quote_continuation] = ACTIONS(352), + [sym__thematic_break_dash] = ACTIONS(354), + [sym__thematic_break_star] = ACTIONS(354), }, [50] = { - [sym__block_with_heading] = STATE(1231), - [sym__block_element] = STATE(1231), - [sym_heading] = STATE(1231), - [sym_list] = STATE(1231), - [sym__list_dash] = STATE(1183), - [sym__list_item_dash] = STATE(727), - [sym__list_plus] = STATE(1183), - [sym__list_item_plus] = STATE(730), - [sym__list_star] = STATE(1183), - [sym__list_item_star] = STATE(759), - [sym__list_task] = STATE(1183), - [sym__list_item_task] = STATE(761), - [sym_list_marker_task] = STATE(46), - [sym__list_definition] = STATE(1183), - [sym__list_item_definition] = STATE(819), - [sym__list_decimal_period] = STATE(1183), - [sym__list_item_decimal_period] = STATE(852), - [sym__list_decimal_paren] = STATE(1183), - [sym__list_item_decimal_paren] = STATE(837), - [sym__list_decimal_parens] = STATE(1183), - [sym__list_item_decimal_parens] = STATE(815), - [sym__list_lower_alpha_period] = STATE(1183), - [sym__list_item_lower_alpha_period] = STATE(843), - [sym__list_lower_alpha_paren] = STATE(1183), - [sym__list_item_lower_alpha_paren] = STATE(850), - [sym__list_lower_alpha_parens] = STATE(1183), - [sym__list_item_lower_alpha_parens] = STATE(853), - [sym__list_upper_alpha_period] = STATE(1183), - [sym__list_item_upper_alpha_period] = STATE(854), - [sym__list_upper_alpha_paren] = STATE(1183), - [sym__list_item_upper_alpha_paren] = STATE(855), - [sym__list_upper_alpha_parens] = STATE(1183), - [sym__list_item_upper_alpha_parens] = STATE(856), - [sym__list_lower_roman_period] = STATE(1183), - [sym__list_item_lower_roman_period] = STATE(857), - [sym__list_lower_roman_paren] = STATE(1183), - [sym__list_item_lower_roman_paren] = STATE(871), - [sym__list_lower_roman_parens] = STATE(1183), - [sym__list_item_lower_roman_parens] = STATE(874), - [sym__list_upper_roman_period] = STATE(1183), - [sym__list_item_upper_roman_period] = STATE(876), - [sym__list_upper_roman_paren] = STATE(1183), - [sym__list_item_upper_roman_paren] = STATE(878), - [sym__list_upper_roman_parens] = STATE(1183), - [sym__list_item_upper_roman_parens] = STATE(880), - [sym_list_item_content] = STATE(998), - [sym_table] = STATE(1231), - [sym__table_content] = STATE(406), - [sym_table_separator] = STATE(406), - [sym_table_row] = STATE(417), - [sym_footnote] = STATE(1231), - [sym_footnote_marker_begin] = STATE(1298), - [sym_div] = STATE(1231), - [sym__div_marker_begin] = STATE(1119), - [sym_code_block] = STATE(1231), - [sym_raw_block] = STATE(1231), - [sym_thematic_break] = STATE(1231), - [sym_block_quote] = STATE(1231), - [sym__block_quote_prefix] = STATE(300), - [sym_link_reference_definition] = STATE(1231), - [sym_block_attribute] = STATE(1231), - [sym__paragraph] = STATE(1231), - [sym__paragraph_content] = STATE(799), - [sym__paragraph_inline_content] = STATE(896), - [sym__inline] = STATE(715), - [sym__symbol_fallback] = STATE(381), - [aux_sym__list_dash_repeat1] = STATE(453), - [aux_sym__list_plus_repeat1] = STATE(458), - [aux_sym__list_star_repeat1] = STATE(463), - [aux_sym__list_task_repeat1] = STATE(440), - [aux_sym__list_definition_repeat1] = STATE(562), - [aux_sym__list_decimal_period_repeat1] = STATE(563), - [aux_sym__list_decimal_paren_repeat1] = STATE(542), - [aux_sym__list_decimal_parens_repeat1] = STATE(564), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(565), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(566), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(567), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(568), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(569), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(570), - [aux_sym__list_lower_roman_period_repeat1] = STATE(571), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(572), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(573), - [aux_sym__list_upper_roman_period_repeat1] = STATE(574), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(575), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(576), - [aux_sym_table_repeat1] = STATE(406), - [aux_sym__block_quote_prefix_repeat1] = STATE(330), - [aux_sym__inline_repeat1] = STATE(381), - [anon_sym_LBRACK] = ACTIONS(389), - [anon_sym_PIPE] = ACTIONS(391), + [sym__block_with_heading] = STATE(635), + [sym__block_element] = STATE(635), + [sym_heading] = STATE(635), + [sym_list] = STATE(635), + [sym__list_dash] = STATE(603), + [sym__list_item_dash] = STATE(636), + [sym__list_plus] = STATE(603), + [sym__list_item_plus] = STATE(637), + [sym__list_star] = STATE(603), + [sym__list_item_star] = STATE(671), + [sym__list_task] = STATE(603), + [sym__list_item_task] = STATE(691), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(603), + [sym__list_item_definition] = STATE(896), + [sym__list_decimal_period] = STATE(603), + [sym__list_item_decimal_period] = STATE(841), + [sym__list_decimal_paren] = STATE(603), + [sym__list_item_decimal_paren] = STATE(796), + [sym__list_decimal_parens] = STATE(603), + [sym__list_item_decimal_parens] = STATE(716), + [sym__list_lower_alpha_period] = STATE(603), + [sym__list_item_lower_alpha_period] = STATE(722), + [sym__list_lower_alpha_paren] = STATE(603), + [sym__list_item_lower_alpha_paren] = STATE(801), + [sym__list_lower_alpha_parens] = STATE(603), + [sym__list_item_lower_alpha_parens] = STATE(813), + [sym__list_upper_alpha_period] = STATE(603), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(603), + [sym__list_item_upper_alpha_paren] = STATE(706), + [sym__list_upper_alpha_parens] = STATE(603), + [sym__list_item_upper_alpha_parens] = STATE(707), + [sym__list_lower_roman_period] = STATE(603), + [sym__list_item_lower_roman_period] = STATE(725), + [sym__list_lower_roman_paren] = STATE(603), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(603), + [sym__list_item_lower_roman_parens] = STATE(736), + [sym__list_upper_roman_period] = STATE(603), + [sym__list_item_upper_roman_period] = STATE(742), + [sym__list_upper_roman_paren] = STATE(603), + [sym__list_item_upper_roman_paren] = STATE(743), + [sym__list_upper_roman_parens] = STATE(603), + [sym__list_item_upper_roman_parens] = STATE(762), + [sym_table] = STATE(635), + [sym__table_content] = STATE(301), + [sym_table_separator] = STATE(301), + [sym_table_row] = STATE(329), + [sym_footnote] = STATE(635), + [sym_footnote_marker_begin] = STATE(1182), + [sym_div] = STATE(635), + [sym__div_marker_begin] = STATE(1097), + [sym_code_block] = STATE(635), + [sym_raw_block] = STATE(635), + [sym_thematic_break] = STATE(635), + [sym_block_quote] = STATE(635), + [sym__block_quote_prefix] = STATE(229), + [sym_link_reference_definition] = STATE(635), + [sym_block_attribute] = STATE(635), + [sym__paragraph] = STATE(635), + [sym__paragraph_content] = STATE(803), + [sym__paragraph_inline_content] = STATE(775), + [sym__inline] = STATE(616), + [sym__symbol_fallback] = STATE(297), + [aux_sym__list_dash_repeat1] = STATE(367), + [aux_sym__list_plus_repeat1] = STATE(353), + [aux_sym__list_star_repeat1] = STATE(364), + [aux_sym__list_task_repeat1] = STATE(338), + [aux_sym__list_definition_repeat1] = STATE(533), + [aux_sym__list_decimal_period_repeat1] = STATE(534), + [aux_sym__list_decimal_paren_repeat1] = STATE(535), + [aux_sym__list_decimal_parens_repeat1] = STATE(536), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(537), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(538), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(539), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(540), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(541), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(542), + [aux_sym__list_lower_roman_period_repeat1] = STATE(543), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(544), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(545), + [aux_sym__list_upper_roman_period_repeat1] = STATE(546), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(547), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(548), + [aux_sym_table_repeat1] = STATE(301), + [aux_sym__block_quote_prefix_repeat1] = STATE(253), + [aux_sym__inline_repeat1] = STATE(297), + [anon_sym_LBRACK] = ACTIONS(402), + [anon_sym_PIPE] = ACTIONS(404), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(406), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(441), - [sym__heading_begin] = ACTIONS(397), + [sym__newline] = ACTIONS(408), + [sym__heading_begin] = ACTIONS(410), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(399), + [sym__code_block_begin] = ACTIONS(412), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -11520,115 +11272,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(401), - [sym__block_quote_continuation] = ACTIONS(403), - [sym__thematic_break_dash] = ACTIONS(405), - [sym__thematic_break_star] = ACTIONS(405), + [sym__block_quote_begin] = ACTIONS(414), + [sym__block_quote_continuation] = ACTIONS(416), + [sym__thematic_break_dash] = ACTIONS(418), + [sym__thematic_break_star] = ACTIONS(418), }, [51] = { - [sym__block_with_heading] = STATE(1218), - [sym__block_element] = STATE(1218), - [sym_heading] = STATE(1218), - [sym_list] = STATE(1218), - [sym__list_dash] = STATE(1183), - [sym__list_item_dash] = STATE(727), - [sym__list_plus] = STATE(1183), - [sym__list_item_plus] = STATE(730), - [sym__list_star] = STATE(1183), - [sym__list_item_star] = STATE(759), - [sym__list_task] = STATE(1183), - [sym__list_item_task] = STATE(761), - [sym_list_marker_task] = STATE(46), - [sym__list_definition] = STATE(1183), - [sym__list_item_definition] = STATE(819), - [sym__list_decimal_period] = STATE(1183), - [sym__list_item_decimal_period] = STATE(852), - [sym__list_decimal_paren] = STATE(1183), - [sym__list_item_decimal_paren] = STATE(837), - [sym__list_decimal_parens] = STATE(1183), - [sym__list_item_decimal_parens] = STATE(815), - [sym__list_lower_alpha_period] = STATE(1183), - [sym__list_item_lower_alpha_period] = STATE(843), - [sym__list_lower_alpha_paren] = STATE(1183), - [sym__list_item_lower_alpha_paren] = STATE(850), - [sym__list_lower_alpha_parens] = STATE(1183), - [sym__list_item_lower_alpha_parens] = STATE(853), - [sym__list_upper_alpha_period] = STATE(1183), - [sym__list_item_upper_alpha_period] = STATE(854), - [sym__list_upper_alpha_paren] = STATE(1183), - [sym__list_item_upper_alpha_paren] = STATE(855), - [sym__list_upper_alpha_parens] = STATE(1183), - [sym__list_item_upper_alpha_parens] = STATE(856), - [sym__list_lower_roman_period] = STATE(1183), - [sym__list_item_lower_roman_period] = STATE(857), - [sym__list_lower_roman_paren] = STATE(1183), - [sym__list_item_lower_roman_paren] = STATE(871), - [sym__list_lower_roman_parens] = STATE(1183), - [sym__list_item_lower_roman_parens] = STATE(874), - [sym__list_upper_roman_period] = STATE(1183), - [sym__list_item_upper_roman_period] = STATE(876), - [sym__list_upper_roman_paren] = STATE(1183), - [sym__list_item_upper_roman_paren] = STATE(878), - [sym__list_upper_roman_parens] = STATE(1183), - [sym__list_item_upper_roman_parens] = STATE(880), - [sym_list_item_content] = STATE(684), - [sym_table] = STATE(1218), - [sym__table_content] = STATE(406), - [sym_table_separator] = STATE(406), - [sym_table_row] = STATE(417), - [sym_footnote] = STATE(1218), - [sym_footnote_marker_begin] = STATE(1298), - [sym_div] = STATE(1218), - [sym__div_marker_begin] = STATE(1119), - [sym_code_block] = STATE(1218), - [sym_raw_block] = STATE(1218), - [sym_thematic_break] = STATE(1218), - [sym_block_quote] = STATE(1218), - [sym__block_quote_prefix] = STATE(300), - [sym_link_reference_definition] = STATE(1218), - [sym_block_attribute] = STATE(1218), - [sym__paragraph] = STATE(1218), - [sym__paragraph_content] = STATE(799), - [sym__paragraph_inline_content] = STATE(896), - [sym__inline] = STATE(715), - [sym__symbol_fallback] = STATE(381), - [aux_sym__list_dash_repeat1] = STATE(453), - [aux_sym__list_plus_repeat1] = STATE(458), - [aux_sym__list_star_repeat1] = STATE(463), - [aux_sym__list_task_repeat1] = STATE(440), - [aux_sym__list_definition_repeat1] = STATE(562), - [aux_sym__list_decimal_period_repeat1] = STATE(563), - [aux_sym__list_decimal_paren_repeat1] = STATE(542), - [aux_sym__list_decimal_parens_repeat1] = STATE(564), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(565), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(566), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(567), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(568), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(569), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(570), - [aux_sym__list_lower_roman_period_repeat1] = STATE(571), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(572), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(573), - [aux_sym__list_upper_roman_period_repeat1] = STATE(574), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(575), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(576), - [aux_sym_table_repeat1] = STATE(406), - [aux_sym__block_quote_prefix_repeat1] = STATE(330), - [aux_sym__inline_repeat1] = STATE(381), - [anon_sym_LBRACK] = ACTIONS(389), - [anon_sym_PIPE] = ACTIONS(391), + [sym__block_with_heading] = STATE(613), + [sym__block_element] = STATE(613), + [sym_heading] = STATE(613), + [sym_list] = STATE(613), + [sym__list_dash] = STATE(603), + [sym__list_item_dash] = STATE(636), + [sym__list_plus] = STATE(603), + [sym__list_item_plus] = STATE(637), + [sym__list_star] = STATE(603), + [sym__list_item_star] = STATE(671), + [sym__list_task] = STATE(603), + [sym__list_item_task] = STATE(691), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(603), + [sym__list_item_definition] = STATE(896), + [sym__list_decimal_period] = STATE(603), + [sym__list_item_decimal_period] = STATE(841), + [sym__list_decimal_paren] = STATE(603), + [sym__list_item_decimal_paren] = STATE(796), + [sym__list_decimal_parens] = STATE(603), + [sym__list_item_decimal_parens] = STATE(716), + [sym__list_lower_alpha_period] = STATE(603), + [sym__list_item_lower_alpha_period] = STATE(722), + [sym__list_lower_alpha_paren] = STATE(603), + [sym__list_item_lower_alpha_paren] = STATE(801), + [sym__list_lower_alpha_parens] = STATE(603), + [sym__list_item_lower_alpha_parens] = STATE(813), + [sym__list_upper_alpha_period] = STATE(603), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(603), + [sym__list_item_upper_alpha_paren] = STATE(706), + [sym__list_upper_alpha_parens] = STATE(603), + [sym__list_item_upper_alpha_parens] = STATE(707), + [sym__list_lower_roman_period] = STATE(603), + [sym__list_item_lower_roman_period] = STATE(725), + [sym__list_lower_roman_paren] = STATE(603), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(603), + [sym__list_item_lower_roman_parens] = STATE(736), + [sym__list_upper_roman_period] = STATE(603), + [sym__list_item_upper_roman_period] = STATE(742), + [sym__list_upper_roman_paren] = STATE(603), + [sym__list_item_upper_roman_paren] = STATE(743), + [sym__list_upper_roman_parens] = STATE(603), + [sym__list_item_upper_roman_parens] = STATE(762), + [sym_table] = STATE(613), + [sym__table_content] = STATE(301), + [sym_table_separator] = STATE(301), + [sym_table_row] = STATE(329), + [sym_footnote] = STATE(613), + [sym_footnote_marker_begin] = STATE(1182), + [sym_div] = STATE(613), + [sym__div_marker_begin] = STATE(1097), + [sym_code_block] = STATE(613), + [sym_raw_block] = STATE(613), + [sym_thematic_break] = STATE(613), + [sym_block_quote] = STATE(613), + [sym__block_quote_prefix] = STATE(229), + [sym_link_reference_definition] = STATE(613), + [sym_block_attribute] = STATE(613), + [sym__paragraph] = STATE(613), + [sym__paragraph_content] = STATE(803), + [sym__paragraph_inline_content] = STATE(775), + [sym__inline] = STATE(616), + [sym__symbol_fallback] = STATE(297), + [aux_sym__list_dash_repeat1] = STATE(367), + [aux_sym__list_plus_repeat1] = STATE(353), + [aux_sym__list_star_repeat1] = STATE(364), + [aux_sym__list_task_repeat1] = STATE(338), + [aux_sym__list_definition_repeat1] = STATE(533), + [aux_sym__list_decimal_period_repeat1] = STATE(534), + [aux_sym__list_decimal_paren_repeat1] = STATE(535), + [aux_sym__list_decimal_parens_repeat1] = STATE(536), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(537), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(538), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(539), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(540), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(541), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(542), + [aux_sym__list_lower_roman_period_repeat1] = STATE(543), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(544), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(545), + [aux_sym__list_upper_roman_period_repeat1] = STATE(546), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(547), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(548), + [aux_sym_table_repeat1] = STATE(301), + [aux_sym__block_quote_prefix_repeat1] = STATE(253), + [aux_sym__inline_repeat1] = STATE(297), + [anon_sym_LBRACK] = ACTIONS(402), + [anon_sym_PIPE] = ACTIONS(404), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(406), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(409), - [sym__heading_begin] = ACTIONS(397), + [sym__newline] = ACTIONS(420), + [sym__heading_begin] = ACTIONS(410), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(399), + [sym__code_block_begin] = ACTIONS(412), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -11649,115 +11400,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(401), - [sym__block_quote_continuation] = ACTIONS(403), - [sym__thematic_break_dash] = ACTIONS(405), - [sym__thematic_break_star] = ACTIONS(405), + [sym__block_quote_begin] = ACTIONS(414), + [sym__block_quote_continuation] = ACTIONS(416), + [sym__thematic_break_dash] = ACTIONS(418), + [sym__thematic_break_star] = ACTIONS(418), }, [52] = { - [sym__block_with_heading] = STATE(1121), - [sym__block_element] = STATE(1121), - [sym_heading] = STATE(1121), - [sym_list] = STATE(1121), - [sym__list_dash] = STATE(1183), - [sym__list_item_dash] = STATE(727), - [sym__list_plus] = STATE(1183), - [sym__list_item_plus] = STATE(730), - [sym__list_star] = STATE(1183), - [sym__list_item_star] = STATE(759), - [sym__list_task] = STATE(1183), - [sym__list_item_task] = STATE(761), - [sym_list_marker_task] = STATE(46), - [sym__list_definition] = STATE(1183), - [sym__list_item_definition] = STATE(819), - [sym__list_decimal_period] = STATE(1183), - [sym__list_item_decimal_period] = STATE(852), - [sym__list_decimal_paren] = STATE(1183), - [sym__list_item_decimal_paren] = STATE(837), - [sym__list_decimal_parens] = STATE(1183), - [sym__list_item_decimal_parens] = STATE(815), - [sym__list_lower_alpha_period] = STATE(1183), - [sym__list_item_lower_alpha_period] = STATE(843), - [sym__list_lower_alpha_paren] = STATE(1183), - [sym__list_item_lower_alpha_paren] = STATE(850), - [sym__list_lower_alpha_parens] = STATE(1183), - [sym__list_item_lower_alpha_parens] = STATE(853), - [sym__list_upper_alpha_period] = STATE(1183), - [sym__list_item_upper_alpha_period] = STATE(854), - [sym__list_upper_alpha_paren] = STATE(1183), - [sym__list_item_upper_alpha_paren] = STATE(855), - [sym__list_upper_alpha_parens] = STATE(1183), - [sym__list_item_upper_alpha_parens] = STATE(856), - [sym__list_lower_roman_period] = STATE(1183), - [sym__list_item_lower_roman_period] = STATE(857), - [sym__list_lower_roman_paren] = STATE(1183), - [sym__list_item_lower_roman_paren] = STATE(871), - [sym__list_lower_roman_parens] = STATE(1183), - [sym__list_item_lower_roman_parens] = STATE(874), - [sym__list_upper_roman_period] = STATE(1183), - [sym__list_item_upper_roman_period] = STATE(876), - [sym__list_upper_roman_paren] = STATE(1183), - [sym__list_item_upper_roman_paren] = STATE(878), - [sym__list_upper_roman_parens] = STATE(1183), - [sym__list_item_upper_roman_parens] = STATE(880), - [sym_list_item_content] = STATE(685), - [sym_table] = STATE(1121), - [sym__table_content] = STATE(406), - [sym_table_separator] = STATE(406), - [sym_table_row] = STATE(417), - [sym_footnote] = STATE(1121), - [sym_footnote_marker_begin] = STATE(1298), - [sym_div] = STATE(1121), - [sym__div_marker_begin] = STATE(1119), - [sym_code_block] = STATE(1121), - [sym_raw_block] = STATE(1121), - [sym_thematic_break] = STATE(1121), - [sym_block_quote] = STATE(1121), - [sym__block_quote_prefix] = STATE(300), - [sym_link_reference_definition] = STATE(1121), - [sym_block_attribute] = STATE(1121), - [sym__paragraph] = STATE(1121), - [sym__paragraph_content] = STATE(799), - [sym__paragraph_inline_content] = STATE(896), - [sym__inline] = STATE(715), - [sym__symbol_fallback] = STATE(381), - [aux_sym__list_dash_repeat1] = STATE(453), - [aux_sym__list_plus_repeat1] = STATE(458), - [aux_sym__list_star_repeat1] = STATE(463), - [aux_sym__list_task_repeat1] = STATE(440), - [aux_sym__list_definition_repeat1] = STATE(562), - [aux_sym__list_decimal_period_repeat1] = STATE(563), - [aux_sym__list_decimal_paren_repeat1] = STATE(542), - [aux_sym__list_decimal_parens_repeat1] = STATE(564), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(565), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(566), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(567), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(568), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(569), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(570), - [aux_sym__list_lower_roman_period_repeat1] = STATE(571), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(572), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(573), - [aux_sym__list_upper_roman_period_repeat1] = STATE(574), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(575), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(576), - [aux_sym_table_repeat1] = STATE(406), - [aux_sym__block_quote_prefix_repeat1] = STATE(330), - [aux_sym__inline_repeat1] = STATE(381), - [anon_sym_LBRACK] = ACTIONS(389), - [anon_sym_PIPE] = ACTIONS(391), + [sym__block_with_heading] = STATE(1170), + [sym__block_element] = STATE(1170), + [sym_heading] = STATE(1170), + [sym_list] = STATE(1170), + [sym__list_dash] = STATE(1006), + [sym__list_item_dash] = STATE(636), + [sym__list_plus] = STATE(1006), + [sym__list_item_plus] = STATE(637), + [sym__list_star] = STATE(1006), + [sym__list_item_star] = STATE(671), + [sym__list_task] = STATE(1006), + [sym__list_item_task] = STATE(691), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(1006), + [sym__list_item_definition] = STATE(896), + [sym__list_decimal_period] = STATE(1006), + [sym__list_item_decimal_period] = STATE(841), + [sym__list_decimal_paren] = STATE(1006), + [sym__list_item_decimal_paren] = STATE(796), + [sym__list_decimal_parens] = STATE(1006), + [sym__list_item_decimal_parens] = STATE(716), + [sym__list_lower_alpha_period] = STATE(1006), + [sym__list_item_lower_alpha_period] = STATE(722), + [sym__list_lower_alpha_paren] = STATE(1006), + [sym__list_item_lower_alpha_paren] = STATE(801), + [sym__list_lower_alpha_parens] = STATE(1006), + [sym__list_item_lower_alpha_parens] = STATE(813), + [sym__list_upper_alpha_period] = STATE(1006), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(1006), + [sym__list_item_upper_alpha_paren] = STATE(706), + [sym__list_upper_alpha_parens] = STATE(1006), + [sym__list_item_upper_alpha_parens] = STATE(707), + [sym__list_lower_roman_period] = STATE(1006), + [sym__list_item_lower_roman_period] = STATE(725), + [sym__list_lower_roman_paren] = STATE(1006), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(1006), + [sym__list_item_lower_roman_parens] = STATE(736), + [sym__list_upper_roman_period] = STATE(1006), + [sym__list_item_upper_roman_period] = STATE(742), + [sym__list_upper_roman_paren] = STATE(1006), + [sym__list_item_upper_roman_paren] = STATE(743), + [sym__list_upper_roman_parens] = STATE(1006), + [sym__list_item_upper_roman_parens] = STATE(762), + [sym_table] = STATE(1170), + [sym__table_content] = STATE(310), + [sym_table_separator] = STATE(310), + [sym_table_row] = STATE(331), + [sym_footnote] = STATE(1170), + [sym_footnote_marker_begin] = STATE(1176), + [sym_div] = STATE(1170), + [sym__div_marker_begin] = STATE(1026), + [sym_code_block] = STATE(1170), + [sym_raw_block] = STATE(1170), + [sym_thematic_break] = STATE(1170), + [sym_block_quote] = STATE(1170), + [sym__block_quote_prefix] = STATE(231), + [sym_link_reference_definition] = STATE(1170), + [sym_block_attribute] = STATE(1170), + [sym__paragraph] = STATE(1170), + [sym__paragraph_content] = STATE(705), + [sym__paragraph_inline_content] = STATE(775), + [sym__inline] = STATE(616), + [sym__symbol_fallback] = STATE(297), + [aux_sym__list_dash_repeat1] = STATE(355), + [aux_sym__list_plus_repeat1] = STATE(356), + [aux_sym__list_star_repeat1] = STATE(362), + [aux_sym__list_task_repeat1] = STATE(346), + [aux_sym__list_definition_repeat1] = STATE(483), + [aux_sym__list_decimal_period_repeat1] = STATE(484), + [aux_sym__list_decimal_paren_repeat1] = STATE(485), + [aux_sym__list_decimal_parens_repeat1] = STATE(486), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(487), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(488), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(489), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(490), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(491), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(492), + [aux_sym__list_lower_roman_period_repeat1] = STATE(493), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(494), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(495), + [aux_sym__list_upper_roman_period_repeat1] = STATE(581), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(497), + [aux_sym_table_repeat1] = STATE(310), + [aux_sym__block_quote_prefix_repeat1] = STATE(253), + [aux_sym__inline_repeat1] = STATE(297), + [anon_sym_LBRACK] = ACTIONS(338), + [anon_sym_PIPE] = ACTIONS(340), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(342), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(419), - [sym__heading_begin] = ACTIONS(397), + [sym__newline] = ACTIONS(422), + [sym__heading_begin] = ACTIONS(346), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(399), + [sym__code_block_begin] = ACTIONS(348), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -11778,115 +11528,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(401), - [sym__block_quote_continuation] = ACTIONS(403), - [sym__thematic_break_dash] = ACTIONS(405), - [sym__thematic_break_star] = ACTIONS(405), + [sym__block_quote_begin] = ACTIONS(350), + [sym__block_quote_continuation] = ACTIONS(352), + [sym__thematic_break_dash] = ACTIONS(354), + [sym__thematic_break_star] = ACTIONS(354), }, [53] = { - [sym__block_with_heading] = STATE(1144), - [sym__block_element] = STATE(1144), - [sym_heading] = STATE(1144), - [sym_list] = STATE(1144), - [sym__list_dash] = STATE(1183), - [sym__list_item_dash] = STATE(727), - [sym__list_plus] = STATE(1183), - [sym__list_item_plus] = STATE(730), - [sym__list_star] = STATE(1183), - [sym__list_item_star] = STATE(759), - [sym__list_task] = STATE(1183), - [sym__list_item_task] = STATE(761), - [sym_list_marker_task] = STATE(46), - [sym__list_definition] = STATE(1183), - [sym__list_item_definition] = STATE(819), - [sym__list_decimal_period] = STATE(1183), - [sym__list_item_decimal_period] = STATE(852), - [sym__list_decimal_paren] = STATE(1183), - [sym__list_item_decimal_paren] = STATE(837), - [sym__list_decimal_parens] = STATE(1183), - [sym__list_item_decimal_parens] = STATE(815), - [sym__list_lower_alpha_period] = STATE(1183), - [sym__list_item_lower_alpha_period] = STATE(843), - [sym__list_lower_alpha_paren] = STATE(1183), - [sym__list_item_lower_alpha_paren] = STATE(850), - [sym__list_lower_alpha_parens] = STATE(1183), - [sym__list_item_lower_alpha_parens] = STATE(853), - [sym__list_upper_alpha_period] = STATE(1183), - [sym__list_item_upper_alpha_period] = STATE(854), - [sym__list_upper_alpha_paren] = STATE(1183), - [sym__list_item_upper_alpha_paren] = STATE(855), - [sym__list_upper_alpha_parens] = STATE(1183), - [sym__list_item_upper_alpha_parens] = STATE(856), - [sym__list_lower_roman_period] = STATE(1183), - [sym__list_item_lower_roman_period] = STATE(857), - [sym__list_lower_roman_paren] = STATE(1183), - [sym__list_item_lower_roman_paren] = STATE(871), - [sym__list_lower_roman_parens] = STATE(1183), - [sym__list_item_lower_roman_parens] = STATE(874), - [sym__list_upper_roman_period] = STATE(1183), - [sym__list_item_upper_roman_period] = STATE(876), - [sym__list_upper_roman_paren] = STATE(1183), - [sym__list_item_upper_roman_paren] = STATE(878), - [sym__list_upper_roman_parens] = STATE(1183), - [sym__list_item_upper_roman_parens] = STATE(880), - [sym_list_item_content] = STATE(689), - [sym_table] = STATE(1144), - [sym__table_content] = STATE(406), - [sym_table_separator] = STATE(406), - [sym_table_row] = STATE(417), - [sym_footnote] = STATE(1144), - [sym_footnote_marker_begin] = STATE(1298), - [sym_div] = STATE(1144), - [sym__div_marker_begin] = STATE(1119), - [sym_code_block] = STATE(1144), - [sym_raw_block] = STATE(1144), - [sym_thematic_break] = STATE(1144), - [sym_block_quote] = STATE(1144), - [sym__block_quote_prefix] = STATE(300), - [sym_link_reference_definition] = STATE(1144), - [sym_block_attribute] = STATE(1144), - [sym__paragraph] = STATE(1144), - [sym__paragraph_content] = STATE(799), - [sym__paragraph_inline_content] = STATE(896), - [sym__inline] = STATE(715), - [sym__symbol_fallback] = STATE(381), - [aux_sym__list_dash_repeat1] = STATE(453), - [aux_sym__list_plus_repeat1] = STATE(458), - [aux_sym__list_star_repeat1] = STATE(463), - [aux_sym__list_task_repeat1] = STATE(440), - [aux_sym__list_definition_repeat1] = STATE(562), - [aux_sym__list_decimal_period_repeat1] = STATE(563), - [aux_sym__list_decimal_paren_repeat1] = STATE(542), - [aux_sym__list_decimal_parens_repeat1] = STATE(564), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(565), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(566), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(567), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(568), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(569), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(570), - [aux_sym__list_lower_roman_period_repeat1] = STATE(571), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(572), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(573), - [aux_sym__list_upper_roman_period_repeat1] = STATE(574), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(575), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(576), - [aux_sym_table_repeat1] = STATE(406), - [aux_sym__block_quote_prefix_repeat1] = STATE(330), - [aux_sym__inline_repeat1] = STATE(381), - [anon_sym_LBRACK] = ACTIONS(389), - [anon_sym_PIPE] = ACTIONS(391), + [sym__block_with_heading] = STATE(996), + [sym__block_element] = STATE(996), + [sym_heading] = STATE(996), + [sym_list] = STATE(996), + [sym__list_dash] = STATE(1006), + [sym__list_item_dash] = STATE(636), + [sym__list_plus] = STATE(1006), + [sym__list_item_plus] = STATE(637), + [sym__list_star] = STATE(1006), + [sym__list_item_star] = STATE(671), + [sym__list_task] = STATE(1006), + [sym__list_item_task] = STATE(691), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(1006), + [sym__list_item_definition] = STATE(896), + [sym__list_decimal_period] = STATE(1006), + [sym__list_item_decimal_period] = STATE(841), + [sym__list_decimal_paren] = STATE(1006), + [sym__list_item_decimal_paren] = STATE(796), + [sym__list_decimal_parens] = STATE(1006), + [sym__list_item_decimal_parens] = STATE(716), + [sym__list_lower_alpha_period] = STATE(1006), + [sym__list_item_lower_alpha_period] = STATE(722), + [sym__list_lower_alpha_paren] = STATE(1006), + [sym__list_item_lower_alpha_paren] = STATE(801), + [sym__list_lower_alpha_parens] = STATE(1006), + [sym__list_item_lower_alpha_parens] = STATE(813), + [sym__list_upper_alpha_period] = STATE(1006), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(1006), + [sym__list_item_upper_alpha_paren] = STATE(706), + [sym__list_upper_alpha_parens] = STATE(1006), + [sym__list_item_upper_alpha_parens] = STATE(707), + [sym__list_lower_roman_period] = STATE(1006), + [sym__list_item_lower_roman_period] = STATE(725), + [sym__list_lower_roman_paren] = STATE(1006), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(1006), + [sym__list_item_lower_roman_parens] = STATE(736), + [sym__list_upper_roman_period] = STATE(1006), + [sym__list_item_upper_roman_period] = STATE(742), + [sym__list_upper_roman_paren] = STATE(1006), + [sym__list_item_upper_roman_paren] = STATE(743), + [sym__list_upper_roman_parens] = STATE(1006), + [sym__list_item_upper_roman_parens] = STATE(762), + [sym_table] = STATE(996), + [sym__table_content] = STATE(310), + [sym_table_separator] = STATE(310), + [sym_table_row] = STATE(331), + [sym_footnote] = STATE(996), + [sym_footnote_marker_begin] = STATE(1176), + [sym_div] = STATE(996), + [sym__div_marker_begin] = STATE(1026), + [sym_code_block] = STATE(996), + [sym_raw_block] = STATE(996), + [sym_thematic_break] = STATE(996), + [sym_block_quote] = STATE(996), + [sym__block_quote_prefix] = STATE(231), + [sym_link_reference_definition] = STATE(996), + [sym_block_attribute] = STATE(996), + [sym__paragraph] = STATE(996), + [sym__paragraph_content] = STATE(705), + [sym__paragraph_inline_content] = STATE(775), + [sym__inline] = STATE(616), + [sym__symbol_fallback] = STATE(297), + [aux_sym__list_dash_repeat1] = STATE(355), + [aux_sym__list_plus_repeat1] = STATE(356), + [aux_sym__list_star_repeat1] = STATE(362), + [aux_sym__list_task_repeat1] = STATE(346), + [aux_sym__list_definition_repeat1] = STATE(483), + [aux_sym__list_decimal_period_repeat1] = STATE(484), + [aux_sym__list_decimal_paren_repeat1] = STATE(485), + [aux_sym__list_decimal_parens_repeat1] = STATE(486), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(487), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(488), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(489), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(490), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(491), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(492), + [aux_sym__list_lower_roman_period_repeat1] = STATE(493), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(494), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(495), + [aux_sym__list_upper_roman_period_repeat1] = STATE(581), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(497), + [aux_sym_table_repeat1] = STATE(310), + [aux_sym__block_quote_prefix_repeat1] = STATE(253), + [aux_sym__inline_repeat1] = STATE(297), + [anon_sym_LBRACK] = ACTIONS(338), + [anon_sym_PIPE] = ACTIONS(340), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(342), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(429), - [sym__heading_begin] = ACTIONS(397), + [sym__newline] = ACTIONS(424), + [sym__heading_begin] = ACTIONS(346), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(399), + [sym__code_block_begin] = ACTIONS(348), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -11907,115 +11656,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(401), - [sym__block_quote_continuation] = ACTIONS(403), - [sym__thematic_break_dash] = ACTIONS(405), - [sym__thematic_break_star] = ACTIONS(405), + [sym__block_quote_begin] = ACTIONS(350), + [sym__block_quote_continuation] = ACTIONS(352), + [sym__thematic_break_dash] = ACTIONS(354), + [sym__thematic_break_star] = ACTIONS(354), }, [54] = { - [sym__block_with_heading] = STATE(1242), - [sym__block_element] = STATE(1242), - [sym_heading] = STATE(1242), - [sym_list] = STATE(1242), - [sym__list_dash] = STATE(1183), - [sym__list_item_dash] = STATE(727), - [sym__list_plus] = STATE(1183), - [sym__list_item_plus] = STATE(730), - [sym__list_star] = STATE(1183), - [sym__list_item_star] = STATE(759), - [sym__list_task] = STATE(1183), - [sym__list_item_task] = STATE(761), - [sym_list_marker_task] = STATE(46), - [sym__list_definition] = STATE(1183), - [sym__list_item_definition] = STATE(819), - [sym__list_decimal_period] = STATE(1183), - [sym__list_item_decimal_period] = STATE(852), - [sym__list_decimal_paren] = STATE(1183), - [sym__list_item_decimal_paren] = STATE(837), - [sym__list_decimal_parens] = STATE(1183), - [sym__list_item_decimal_parens] = STATE(815), - [sym__list_lower_alpha_period] = STATE(1183), - [sym__list_item_lower_alpha_period] = STATE(843), - [sym__list_lower_alpha_paren] = STATE(1183), - [sym__list_item_lower_alpha_paren] = STATE(850), - [sym__list_lower_alpha_parens] = STATE(1183), - [sym__list_item_lower_alpha_parens] = STATE(853), - [sym__list_upper_alpha_period] = STATE(1183), - [sym__list_item_upper_alpha_period] = STATE(854), - [sym__list_upper_alpha_paren] = STATE(1183), - [sym__list_item_upper_alpha_paren] = STATE(855), - [sym__list_upper_alpha_parens] = STATE(1183), - [sym__list_item_upper_alpha_parens] = STATE(856), - [sym__list_lower_roman_period] = STATE(1183), - [sym__list_item_lower_roman_period] = STATE(857), - [sym__list_lower_roman_paren] = STATE(1183), - [sym__list_item_lower_roman_paren] = STATE(871), - [sym__list_lower_roman_parens] = STATE(1183), - [sym__list_item_lower_roman_parens] = STATE(874), - [sym__list_upper_roman_period] = STATE(1183), - [sym__list_item_upper_roman_period] = STATE(876), - [sym__list_upper_roman_paren] = STATE(1183), - [sym__list_item_upper_roman_paren] = STATE(878), - [sym__list_upper_roman_parens] = STATE(1183), - [sym__list_item_upper_roman_parens] = STATE(880), - [sym_list_item_content] = STATE(690), - [sym_table] = STATE(1242), - [sym__table_content] = STATE(406), - [sym_table_separator] = STATE(406), - [sym_table_row] = STATE(417), - [sym_footnote] = STATE(1242), - [sym_footnote_marker_begin] = STATE(1298), - [sym_div] = STATE(1242), - [sym__div_marker_begin] = STATE(1119), - [sym_code_block] = STATE(1242), - [sym_raw_block] = STATE(1242), - [sym_thematic_break] = STATE(1242), - [sym_block_quote] = STATE(1242), - [sym__block_quote_prefix] = STATE(300), - [sym_link_reference_definition] = STATE(1242), - [sym_block_attribute] = STATE(1242), - [sym__paragraph] = STATE(1242), - [sym__paragraph_content] = STATE(799), - [sym__paragraph_inline_content] = STATE(896), - [sym__inline] = STATE(715), - [sym__symbol_fallback] = STATE(381), - [aux_sym__list_dash_repeat1] = STATE(453), - [aux_sym__list_plus_repeat1] = STATE(458), - [aux_sym__list_star_repeat1] = STATE(463), - [aux_sym__list_task_repeat1] = STATE(440), - [aux_sym__list_definition_repeat1] = STATE(562), - [aux_sym__list_decimal_period_repeat1] = STATE(563), - [aux_sym__list_decimal_paren_repeat1] = STATE(542), - [aux_sym__list_decimal_parens_repeat1] = STATE(564), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(565), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(566), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(567), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(568), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(569), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(570), - [aux_sym__list_lower_roman_period_repeat1] = STATE(571), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(572), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(573), - [aux_sym__list_upper_roman_period_repeat1] = STATE(574), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(575), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(576), - [aux_sym_table_repeat1] = STATE(406), - [aux_sym__block_quote_prefix_repeat1] = STATE(330), - [aux_sym__inline_repeat1] = STATE(381), - [anon_sym_LBRACK] = ACTIONS(389), - [anon_sym_PIPE] = ACTIONS(391), + [sym__block_with_heading] = STATE(1001), + [sym__block_element] = STATE(1001), + [sym_heading] = STATE(1001), + [sym_list] = STATE(1001), + [sym__list_dash] = STATE(1006), + [sym__list_item_dash] = STATE(636), + [sym__list_plus] = STATE(1006), + [sym__list_item_plus] = STATE(637), + [sym__list_star] = STATE(1006), + [sym__list_item_star] = STATE(671), + [sym__list_task] = STATE(1006), + [sym__list_item_task] = STATE(691), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(1006), + [sym__list_item_definition] = STATE(896), + [sym__list_decimal_period] = STATE(1006), + [sym__list_item_decimal_period] = STATE(841), + [sym__list_decimal_paren] = STATE(1006), + [sym__list_item_decimal_paren] = STATE(796), + [sym__list_decimal_parens] = STATE(1006), + [sym__list_item_decimal_parens] = STATE(716), + [sym__list_lower_alpha_period] = STATE(1006), + [sym__list_item_lower_alpha_period] = STATE(722), + [sym__list_lower_alpha_paren] = STATE(1006), + [sym__list_item_lower_alpha_paren] = STATE(801), + [sym__list_lower_alpha_parens] = STATE(1006), + [sym__list_item_lower_alpha_parens] = STATE(813), + [sym__list_upper_alpha_period] = STATE(1006), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(1006), + [sym__list_item_upper_alpha_paren] = STATE(706), + [sym__list_upper_alpha_parens] = STATE(1006), + [sym__list_item_upper_alpha_parens] = STATE(707), + [sym__list_lower_roman_period] = STATE(1006), + [sym__list_item_lower_roman_period] = STATE(725), + [sym__list_lower_roman_paren] = STATE(1006), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(1006), + [sym__list_item_lower_roman_parens] = STATE(736), + [sym__list_upper_roman_period] = STATE(1006), + [sym__list_item_upper_roman_period] = STATE(742), + [sym__list_upper_roman_paren] = STATE(1006), + [sym__list_item_upper_roman_paren] = STATE(743), + [sym__list_upper_roman_parens] = STATE(1006), + [sym__list_item_upper_roman_parens] = STATE(762), + [sym_table] = STATE(1001), + [sym__table_content] = STATE(310), + [sym_table_separator] = STATE(310), + [sym_table_row] = STATE(331), + [sym_footnote] = STATE(1001), + [sym_footnote_marker_begin] = STATE(1176), + [sym_div] = STATE(1001), + [sym__div_marker_begin] = STATE(1026), + [sym_code_block] = STATE(1001), + [sym_raw_block] = STATE(1001), + [sym_thematic_break] = STATE(1001), + [sym_block_quote] = STATE(1001), + [sym__block_quote_prefix] = STATE(231), + [sym_link_reference_definition] = STATE(1001), + [sym_block_attribute] = STATE(1001), + [sym__paragraph] = STATE(1001), + [sym__paragraph_content] = STATE(705), + [sym__paragraph_inline_content] = STATE(775), + [sym__inline] = STATE(616), + [sym__symbol_fallback] = STATE(297), + [aux_sym__list_dash_repeat1] = STATE(355), + [aux_sym__list_plus_repeat1] = STATE(356), + [aux_sym__list_star_repeat1] = STATE(362), + [aux_sym__list_task_repeat1] = STATE(346), + [aux_sym__list_definition_repeat1] = STATE(483), + [aux_sym__list_decimal_period_repeat1] = STATE(484), + [aux_sym__list_decimal_paren_repeat1] = STATE(485), + [aux_sym__list_decimal_parens_repeat1] = STATE(486), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(487), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(488), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(489), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(490), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(491), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(492), + [aux_sym__list_lower_roman_period_repeat1] = STATE(493), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(494), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(495), + [aux_sym__list_upper_roman_period_repeat1] = STATE(581), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(497), + [aux_sym_table_repeat1] = STATE(310), + [aux_sym__block_quote_prefix_repeat1] = STATE(253), + [aux_sym__inline_repeat1] = STATE(297), + [anon_sym_LBRACK] = ACTIONS(338), + [anon_sym_PIPE] = ACTIONS(340), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(342), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(433), - [sym__heading_begin] = ACTIONS(397), + [sym__newline] = ACTIONS(426), + [sym__heading_begin] = ACTIONS(346), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(399), + [sym__code_block_begin] = ACTIONS(348), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -12036,118 +11784,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(401), - [sym__block_quote_continuation] = ACTIONS(403), - [sym__thematic_break_dash] = ACTIONS(405), - [sym__thematic_break_star] = ACTIONS(405), + [sym__block_quote_begin] = ACTIONS(350), + [sym__block_quote_continuation] = ACTIONS(352), + [sym__thematic_break_dash] = ACTIONS(354), + [sym__thematic_break_star] = ACTIONS(354), }, [55] = { - [sym__block_element] = STATE(162), - [sym_heading] = STATE(162), - [sym_list] = STATE(162), - [sym__list_dash] = STATE(166), - [sym__list_item_dash] = STATE(727), - [sym__list_plus] = STATE(166), - [sym__list_item_plus] = STATE(730), - [sym__list_star] = STATE(166), - [sym__list_item_star] = STATE(759), - [sym__list_task] = STATE(166), - [sym__list_item_task] = STATE(761), - [sym_list_marker_task] = STATE(46), - [sym__list_definition] = STATE(166), - [sym__list_item_definition] = STATE(819), - [sym__list_decimal_period] = STATE(166), - [sym__list_item_decimal_period] = STATE(852), - [sym__list_decimal_paren] = STATE(166), - [sym__list_item_decimal_paren] = STATE(837), - [sym__list_decimal_parens] = STATE(166), - [sym__list_item_decimal_parens] = STATE(815), - [sym__list_lower_alpha_period] = STATE(166), - [sym__list_item_lower_alpha_period] = STATE(843), - [sym__list_lower_alpha_paren] = STATE(166), - [sym__list_item_lower_alpha_paren] = STATE(850), - [sym__list_lower_alpha_parens] = STATE(166), - [sym__list_item_lower_alpha_parens] = STATE(853), - [sym__list_upper_alpha_period] = STATE(166), - [sym__list_item_upper_alpha_period] = STATE(854), - [sym__list_upper_alpha_paren] = STATE(166), - [sym__list_item_upper_alpha_paren] = STATE(855), - [sym__list_upper_alpha_parens] = STATE(166), - [sym__list_item_upper_alpha_parens] = STATE(856), - [sym__list_lower_roman_period] = STATE(166), - [sym__list_item_lower_roman_period] = STATE(857), - [sym__list_lower_roman_paren] = STATE(166), - [sym__list_item_lower_roman_paren] = STATE(871), - [sym__list_lower_roman_parens] = STATE(166), - [sym__list_item_lower_roman_parens] = STATE(874), - [sym__list_upper_roman_period] = STATE(166), - [sym__list_item_upper_roman_period] = STATE(876), - [sym__list_upper_roman_paren] = STATE(166), - [sym__list_item_upper_roman_paren] = STATE(878), - [sym__list_upper_roman_parens] = STATE(166), - [sym__list_item_upper_roman_parens] = STATE(880), - [sym_table] = STATE(162), - [sym__table_content] = STATE(72), - [sym_table_separator] = STATE(72), - [sym_table_row] = STATE(79), - [sym_footnote] = STATE(162), - [sym_footnote_marker_begin] = STATE(1302), - [sym_div] = STATE(162), - [sym__div_marker_begin] = STATE(1165), - [sym_code_block] = STATE(162), - [sym_raw_block] = STATE(162), - [sym_thematic_break] = STATE(162), - [sym_block_quote] = STATE(162), - [sym__block_quote_prefix] = STATE(304), - [sym_link_reference_definition] = STATE(162), - [sym_block_attribute] = STATE(162), - [sym__paragraph] = STATE(162), - [sym__paragraph_content] = STATE(848), - [sym__paragraph_inline_content] = STATE(896), - [sym__inline] = STATE(715), - [sym__symbol_fallback] = STATE(381), - [aux_sym__list_dash_repeat1] = STATE(454), - [aux_sym__list_plus_repeat1] = STATE(455), - [aux_sym__list_star_repeat1] = STATE(456), - [aux_sym__list_task_repeat1] = STATE(436), - [aux_sym__list_definition_repeat1] = STATE(612), - [aux_sym__list_decimal_period_repeat1] = STATE(613), - [aux_sym__list_decimal_paren_repeat1] = STATE(614), - [aux_sym__list_decimal_parens_repeat1] = STATE(615), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(616), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(617), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(618), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(619), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(620), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(621), - [aux_sym__list_lower_roman_period_repeat1] = STATE(622), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(623), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(624), - [aux_sym__list_upper_roman_period_repeat1] = STATE(625), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(626), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(627), - [aux_sym_table_repeat1] = STATE(72), - [aux_sym__block_quote_prefix_repeat1] = STATE(330), - [aux_sym__inline_repeat1] = STATE(381), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(443), - [anon_sym_LBRACK_CARET] = ACTIONS(443), - [anon_sym_LBRACE] = ACTIONS(443), - [anon_sym_DOT] = ACTIONS(443), - [aux_sym_identifier_token1] = ACTIONS(443), - [aux_sym__inline_token1] = ACTIONS(443), - [anon_sym_LBRACE_DASH] = ACTIONS(443), - [anon_sym_POUND] = ACTIONS(443), - [anon_sym_PERCENT] = ACTIONS(443), - [sym__block_close] = ACTIONS(445), - [sym__newline] = ACTIONS(447), + [sym__block_element] = STATE(141), + [sym_heading] = STATE(141), + [sym_list] = STATE(141), + [sym__list_dash] = STATE(144), + [sym__list_item_dash] = STATE(636), + [sym__list_plus] = STATE(144), + [sym__list_item_plus] = STATE(637), + [sym__list_star] = STATE(144), + [sym__list_item_star] = STATE(671), + [sym__list_task] = STATE(144), + [sym__list_item_task] = STATE(691), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(144), + [sym__list_item_definition] = STATE(896), + [sym__list_decimal_period] = STATE(144), + [sym__list_item_decimal_period] = STATE(841), + [sym__list_decimal_paren] = STATE(144), + [sym__list_item_decimal_paren] = STATE(796), + [sym__list_decimal_parens] = STATE(144), + [sym__list_item_decimal_parens] = STATE(716), + [sym__list_lower_alpha_period] = STATE(144), + [sym__list_item_lower_alpha_period] = STATE(722), + [sym__list_lower_alpha_paren] = STATE(144), + [sym__list_item_lower_alpha_paren] = STATE(801), + [sym__list_lower_alpha_parens] = STATE(144), + [sym__list_item_lower_alpha_parens] = STATE(813), + [sym__list_upper_alpha_period] = STATE(144), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(144), + [sym__list_item_upper_alpha_paren] = STATE(706), + [sym__list_upper_alpha_parens] = STATE(144), + [sym__list_item_upper_alpha_parens] = STATE(707), + [sym__list_lower_roman_period] = STATE(144), + [sym__list_item_lower_roman_period] = STATE(725), + [sym__list_lower_roman_paren] = STATE(144), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(144), + [sym__list_item_lower_roman_parens] = STATE(736), + [sym__list_upper_roman_period] = STATE(144), + [sym__list_item_upper_roman_period] = STATE(742), + [sym__list_upper_roman_paren] = STATE(144), + [sym__list_item_upper_roman_paren] = STATE(743), + [sym__list_upper_roman_parens] = STATE(144), + [sym__list_item_upper_roman_parens] = STATE(762), + [sym_table] = STATE(141), + [sym__table_content] = STATE(67), + [sym_table_separator] = STATE(67), + [sym_table_row] = STATE(70), + [sym_footnote] = STATE(141), + [sym_footnote_marker_begin] = STATE(1180), + [sym_div] = STATE(141), + [sym__div_marker_begin] = STATE(1074), + [sym_code_block] = STATE(141), + [sym_raw_block] = STATE(141), + [sym_thematic_break] = STATE(141), + [sym_block_quote] = STATE(141), + [sym__block_quote_prefix] = STATE(233), + [sym_link_reference_definition] = STATE(141), + [sym_block_attribute] = STATE(141), + [sym__paragraph] = STATE(141), + [sym__paragraph_content] = STATE(773), + [sym__paragraph_inline_content] = STATE(775), + [sym__inline] = STATE(616), + [sym__symbol_fallback] = STATE(297), + [aux_sym__list_dash_repeat1] = STATE(357), + [aux_sym__list_plus_repeat1] = STATE(358), + [aux_sym__list_star_repeat1] = STATE(359), + [aux_sym__list_task_repeat1] = STATE(344), + [aux_sym__list_definition_repeat1] = STATE(515), + [aux_sym__list_decimal_period_repeat1] = STATE(516), + [aux_sym__list_decimal_paren_repeat1] = STATE(517), + [aux_sym__list_decimal_parens_repeat1] = STATE(518), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(519), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(520), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(521), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(522), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(523), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(524), + [aux_sym__list_lower_roman_period_repeat1] = STATE(525), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(526), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(527), + [aux_sym__list_upper_roman_period_repeat1] = STATE(528), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(529), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(530), + [aux_sym_table_repeat1] = STATE(67), + [aux_sym__block_quote_prefix_repeat1] = STATE(253), + [aux_sym__inline_repeat1] = STATE(297), + [anon_sym_LBRACK] = ACTIONS(428), + [anon_sym_PIPE] = ACTIONS(428), + [anon_sym_LBRACK_CARET] = ACTIONS(428), + [anon_sym_LBRACE] = ACTIONS(428), + [anon_sym_DOT] = ACTIONS(428), + [aux_sym_identifier_token1] = ACTIONS(428), + [aux_sym__inline_token1] = ACTIONS(428), + [anon_sym_LBRACE_DASH] = ACTIONS(428), + [anon_sym_POUND] = ACTIONS(428), + [anon_sym_PERCENT] = ACTIONS(428), + [sym__block_close] = ACTIONS(430), + [sym__newline] = ACTIONS(432), [sym__heading_begin] = ACTIONS(19), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(83), - [sym_list_marker_dash] = ACTIONS(445), - [sym_list_marker_star] = ACTIONS(445), - [sym_list_marker_plus] = ACTIONS(445), - [sym__list_marker_task_begin] = ACTIONS(445), + [sym__code_block_begin] = ACTIONS(81), + [sym_list_marker_dash] = ACTIONS(430), + [sym_list_marker_star] = ACTIONS(430), + [sym_list_marker_plus] = ACTIONS(430), + [sym__list_marker_task_begin] = ACTIONS(430), [sym_list_marker_definition] = ACTIONS(33), [sym_list_marker_decimal_period] = ACTIONS(35), [sym_list_marker_lower_alpha_period] = ACTIONS(37), @@ -12164,114 +11912,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(85), - [sym__block_quote_continuation] = ACTIONS(445), - [sym__thematic_break_dash] = ACTIONS(87), - [sym__thematic_break_star] = ACTIONS(87), + [sym__block_quote_begin] = ACTIONS(83), + [sym__block_quote_continuation] = ACTIONS(430), + [sym__thematic_break_dash] = ACTIONS(85), + [sym__thematic_break_star] = ACTIONS(85), }, [56] = { - [sym__block_with_heading] = STATE(1225), - [sym__block_element] = STATE(1225), - [sym_heading] = STATE(1225), - [sym_list] = STATE(1225), - [sym__list_dash] = STATE(1183), - [sym__list_item_dash] = STATE(727), - [sym__list_plus] = STATE(1183), - [sym__list_item_plus] = STATE(730), - [sym__list_star] = STATE(1183), - [sym__list_item_star] = STATE(759), - [sym__list_task] = STATE(1183), - [sym__list_item_task] = STATE(761), - [sym_list_marker_task] = STATE(46), - [sym__list_definition] = STATE(1183), - [sym__list_item_definition] = STATE(819), - [sym__list_decimal_period] = STATE(1183), - [sym__list_item_decimal_period] = STATE(852), - [sym__list_decimal_paren] = STATE(1183), - [sym__list_item_decimal_paren] = STATE(837), - [sym__list_decimal_parens] = STATE(1183), - [sym__list_item_decimal_parens] = STATE(815), - [sym__list_lower_alpha_period] = STATE(1183), - [sym__list_item_lower_alpha_period] = STATE(843), - [sym__list_lower_alpha_paren] = STATE(1183), - [sym__list_item_lower_alpha_paren] = STATE(850), - [sym__list_lower_alpha_parens] = STATE(1183), - [sym__list_item_lower_alpha_parens] = STATE(853), - [sym__list_upper_alpha_period] = STATE(1183), - [sym__list_item_upper_alpha_period] = STATE(854), - [sym__list_upper_alpha_paren] = STATE(1183), - [sym__list_item_upper_alpha_paren] = STATE(855), - [sym__list_upper_alpha_parens] = STATE(1183), - [sym__list_item_upper_alpha_parens] = STATE(856), - [sym__list_lower_roman_period] = STATE(1183), - [sym__list_item_lower_roman_period] = STATE(857), - [sym__list_lower_roman_paren] = STATE(1183), - [sym__list_item_lower_roman_paren] = STATE(871), - [sym__list_lower_roman_parens] = STATE(1183), - [sym__list_item_lower_roman_parens] = STATE(874), - [sym__list_upper_roman_period] = STATE(1183), - [sym__list_item_upper_roman_period] = STATE(876), - [sym__list_upper_roman_paren] = STATE(1183), - [sym__list_item_upper_roman_paren] = STATE(878), - [sym__list_upper_roman_parens] = STATE(1183), - [sym__list_item_upper_roman_parens] = STATE(880), - [sym_table] = STATE(1225), - [sym__table_content] = STATE(406), - [sym_table_separator] = STATE(406), - [sym_table_row] = STATE(417), - [sym_footnote] = STATE(1225), - [sym_footnote_marker_begin] = STATE(1298), - [sym_div] = STATE(1225), - [sym__div_marker_begin] = STATE(1119), - [sym_code_block] = STATE(1225), - [sym_raw_block] = STATE(1225), - [sym_thematic_break] = STATE(1225), - [sym_block_quote] = STATE(1225), - [sym__block_quote_prefix] = STATE(300), - [sym_link_reference_definition] = STATE(1225), - [sym_block_attribute] = STATE(1225), - [sym__paragraph] = STATE(1225), - [sym__paragraph_content] = STATE(799), - [sym__paragraph_inline_content] = STATE(896), - [sym__inline] = STATE(715), - [sym__symbol_fallback] = STATE(381), - [aux_sym__list_dash_repeat1] = STATE(453), - [aux_sym__list_plus_repeat1] = STATE(458), - [aux_sym__list_star_repeat1] = STATE(463), - [aux_sym__list_task_repeat1] = STATE(440), - [aux_sym__list_definition_repeat1] = STATE(562), - [aux_sym__list_decimal_period_repeat1] = STATE(563), - [aux_sym__list_decimal_paren_repeat1] = STATE(542), - [aux_sym__list_decimal_parens_repeat1] = STATE(564), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(565), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(566), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(567), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(568), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(569), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(570), - [aux_sym__list_lower_roman_period_repeat1] = STATE(571), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(572), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(573), - [aux_sym__list_upper_roman_period_repeat1] = STATE(574), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(575), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(576), - [aux_sym_table_repeat1] = STATE(406), - [aux_sym__block_quote_prefix_repeat1] = STATE(330), - [aux_sym__inline_repeat1] = STATE(381), - [anon_sym_LBRACK] = ACTIONS(389), - [anon_sym_PIPE] = ACTIONS(391), + [sym__block_with_heading] = STATE(956), + [sym__block_element] = STATE(956), + [sym_heading] = STATE(956), + [sym_list] = STATE(956), + [sym__list_dash] = STATE(1006), + [sym__list_item_dash] = STATE(636), + [sym__list_plus] = STATE(1006), + [sym__list_item_plus] = STATE(637), + [sym__list_star] = STATE(1006), + [sym__list_item_star] = STATE(671), + [sym__list_task] = STATE(1006), + [sym__list_item_task] = STATE(691), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(1006), + [sym__list_item_definition] = STATE(896), + [sym__list_decimal_period] = STATE(1006), + [sym__list_item_decimal_period] = STATE(841), + [sym__list_decimal_paren] = STATE(1006), + [sym__list_item_decimal_paren] = STATE(796), + [sym__list_decimal_parens] = STATE(1006), + [sym__list_item_decimal_parens] = STATE(716), + [sym__list_lower_alpha_period] = STATE(1006), + [sym__list_item_lower_alpha_period] = STATE(722), + [sym__list_lower_alpha_paren] = STATE(1006), + [sym__list_item_lower_alpha_paren] = STATE(801), + [sym__list_lower_alpha_parens] = STATE(1006), + [sym__list_item_lower_alpha_parens] = STATE(813), + [sym__list_upper_alpha_period] = STATE(1006), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(1006), + [sym__list_item_upper_alpha_paren] = STATE(706), + [sym__list_upper_alpha_parens] = STATE(1006), + [sym__list_item_upper_alpha_parens] = STATE(707), + [sym__list_lower_roman_period] = STATE(1006), + [sym__list_item_lower_roman_period] = STATE(725), + [sym__list_lower_roman_paren] = STATE(1006), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(1006), + [sym__list_item_lower_roman_parens] = STATE(736), + [sym__list_upper_roman_period] = STATE(1006), + [sym__list_item_upper_roman_period] = STATE(742), + [sym__list_upper_roman_paren] = STATE(1006), + [sym__list_item_upper_roman_paren] = STATE(743), + [sym__list_upper_roman_parens] = STATE(1006), + [sym__list_item_upper_roman_parens] = STATE(762), + [sym_table] = STATE(956), + [sym__table_content] = STATE(310), + [sym_table_separator] = STATE(310), + [sym_table_row] = STATE(331), + [sym_footnote] = STATE(956), + [sym_footnote_marker_begin] = STATE(1176), + [sym_div] = STATE(956), + [sym__div_marker_begin] = STATE(1026), + [sym_code_block] = STATE(956), + [sym_raw_block] = STATE(956), + [sym_thematic_break] = STATE(956), + [sym_block_quote] = STATE(956), + [sym__block_quote_prefix] = STATE(231), + [sym_link_reference_definition] = STATE(956), + [sym_block_attribute] = STATE(956), + [sym__paragraph] = STATE(956), + [sym__paragraph_content] = STATE(705), + [sym__paragraph_inline_content] = STATE(775), + [sym__inline] = STATE(616), + [sym__symbol_fallback] = STATE(297), + [aux_sym__list_dash_repeat1] = STATE(355), + [aux_sym__list_plus_repeat1] = STATE(356), + [aux_sym__list_star_repeat1] = STATE(362), + [aux_sym__list_task_repeat1] = STATE(346), + [aux_sym__list_definition_repeat1] = STATE(483), + [aux_sym__list_decimal_period_repeat1] = STATE(484), + [aux_sym__list_decimal_paren_repeat1] = STATE(485), + [aux_sym__list_decimal_parens_repeat1] = STATE(486), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(487), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(488), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(489), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(490), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(491), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(492), + [aux_sym__list_lower_roman_period_repeat1] = STATE(493), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(494), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(495), + [aux_sym__list_upper_roman_period_repeat1] = STATE(581), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(497), + [aux_sym_table_repeat1] = STATE(310), + [aux_sym__block_quote_prefix_repeat1] = STATE(253), + [aux_sym__inline_repeat1] = STATE(297), + [anon_sym_LBRACK] = ACTIONS(338), + [anon_sym_PIPE] = ACTIONS(340), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(342), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(449), - [sym__heading_begin] = ACTIONS(397), + [sym__newline] = ACTIONS(434), + [sym__heading_begin] = ACTIONS(346), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(399), + [sym__code_block_begin] = ACTIONS(348), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -12292,114 +12040,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(401), - [sym__block_quote_continuation] = ACTIONS(403), - [sym__thematic_break_dash] = ACTIONS(405), - [sym__thematic_break_star] = ACTIONS(405), + [sym__block_quote_begin] = ACTIONS(350), + [sym__block_quote_continuation] = ACTIONS(352), + [sym__thematic_break_dash] = ACTIONS(354), + [sym__thematic_break_star] = ACTIONS(354), }, [57] = { - [sym__block_with_heading] = STATE(1166), - [sym__block_element] = STATE(1166), - [sym_heading] = STATE(1166), - [sym_list] = STATE(1166), - [sym__list_dash] = STATE(1183), - [sym__list_item_dash] = STATE(727), - [sym__list_plus] = STATE(1183), - [sym__list_item_plus] = STATE(730), - [sym__list_star] = STATE(1183), - [sym__list_item_star] = STATE(759), - [sym__list_task] = STATE(1183), - [sym__list_item_task] = STATE(761), - [sym_list_marker_task] = STATE(46), - [sym__list_definition] = STATE(1183), - [sym__list_item_definition] = STATE(819), - [sym__list_decimal_period] = STATE(1183), - [sym__list_item_decimal_period] = STATE(852), - [sym__list_decimal_paren] = STATE(1183), - [sym__list_item_decimal_paren] = STATE(837), - [sym__list_decimal_parens] = STATE(1183), - [sym__list_item_decimal_parens] = STATE(815), - [sym__list_lower_alpha_period] = STATE(1183), - [sym__list_item_lower_alpha_period] = STATE(843), - [sym__list_lower_alpha_paren] = STATE(1183), - [sym__list_item_lower_alpha_paren] = STATE(850), - [sym__list_lower_alpha_parens] = STATE(1183), - [sym__list_item_lower_alpha_parens] = STATE(853), - [sym__list_upper_alpha_period] = STATE(1183), - [sym__list_item_upper_alpha_period] = STATE(854), - [sym__list_upper_alpha_paren] = STATE(1183), - [sym__list_item_upper_alpha_paren] = STATE(855), - [sym__list_upper_alpha_parens] = STATE(1183), - [sym__list_item_upper_alpha_parens] = STATE(856), - [sym__list_lower_roman_period] = STATE(1183), - [sym__list_item_lower_roman_period] = STATE(857), - [sym__list_lower_roman_paren] = STATE(1183), - [sym__list_item_lower_roman_paren] = STATE(871), - [sym__list_lower_roman_parens] = STATE(1183), - [sym__list_item_lower_roman_parens] = STATE(874), - [sym__list_upper_roman_period] = STATE(1183), - [sym__list_item_upper_roman_period] = STATE(876), - [sym__list_upper_roman_paren] = STATE(1183), - [sym__list_item_upper_roman_paren] = STATE(878), - [sym__list_upper_roman_parens] = STATE(1183), - [sym__list_item_upper_roman_parens] = STATE(880), - [sym_table] = STATE(1166), - [sym__table_content] = STATE(406), - [sym_table_separator] = STATE(406), - [sym_table_row] = STATE(417), - [sym_footnote] = STATE(1166), - [sym_footnote_marker_begin] = STATE(1298), - [sym_div] = STATE(1166), - [sym__div_marker_begin] = STATE(1119), - [sym_code_block] = STATE(1166), - [sym_raw_block] = STATE(1166), - [sym_thematic_break] = STATE(1166), - [sym_block_quote] = STATE(1166), - [sym__block_quote_prefix] = STATE(300), - [sym_link_reference_definition] = STATE(1166), - [sym_block_attribute] = STATE(1166), - [sym__paragraph] = STATE(1166), - [sym__paragraph_content] = STATE(799), - [sym__paragraph_inline_content] = STATE(896), - [sym__inline] = STATE(715), - [sym__symbol_fallback] = STATE(381), - [aux_sym__list_dash_repeat1] = STATE(453), - [aux_sym__list_plus_repeat1] = STATE(458), - [aux_sym__list_star_repeat1] = STATE(463), - [aux_sym__list_task_repeat1] = STATE(440), - [aux_sym__list_definition_repeat1] = STATE(562), - [aux_sym__list_decimal_period_repeat1] = STATE(563), - [aux_sym__list_decimal_paren_repeat1] = STATE(542), - [aux_sym__list_decimal_parens_repeat1] = STATE(564), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(565), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(566), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(567), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(568), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(569), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(570), - [aux_sym__list_lower_roman_period_repeat1] = STATE(571), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(572), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(573), - [aux_sym__list_upper_roman_period_repeat1] = STATE(574), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(575), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(576), - [aux_sym_table_repeat1] = STATE(406), - [aux_sym__block_quote_prefix_repeat1] = STATE(330), - [aux_sym__inline_repeat1] = STATE(381), - [anon_sym_LBRACK] = ACTIONS(389), - [anon_sym_PIPE] = ACTIONS(391), + [sym__block_element] = STATE(449), + [sym_heading] = STATE(449), + [sym_list] = STATE(449), + [sym__list_dash] = STATE(853), + [sym__list_item_dash] = STATE(636), + [sym__list_plus] = STATE(853), + [sym__list_item_plus] = STATE(637), + [sym__list_star] = STATE(853), + [sym__list_item_star] = STATE(671), + [sym__list_task] = STATE(853), + [sym__list_item_task] = STATE(691), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(853), + [sym__list_item_definition] = STATE(896), + [sym__list_decimal_period] = STATE(853), + [sym__list_item_decimal_period] = STATE(841), + [sym__list_decimal_paren] = STATE(853), + [sym__list_item_decimal_paren] = STATE(796), + [sym__list_decimal_parens] = STATE(853), + [sym__list_item_decimal_parens] = STATE(716), + [sym__list_lower_alpha_period] = STATE(853), + [sym__list_item_lower_alpha_period] = STATE(722), + [sym__list_lower_alpha_paren] = STATE(853), + [sym__list_item_lower_alpha_paren] = STATE(801), + [sym__list_lower_alpha_parens] = STATE(853), + [sym__list_item_lower_alpha_parens] = STATE(813), + [sym__list_upper_alpha_period] = STATE(853), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(853), + [sym__list_item_upper_alpha_paren] = STATE(706), + [sym__list_upper_alpha_parens] = STATE(853), + [sym__list_item_upper_alpha_parens] = STATE(707), + [sym__list_lower_roman_period] = STATE(853), + [sym__list_item_lower_roman_period] = STATE(725), + [sym__list_lower_roman_paren] = STATE(853), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(853), + [sym__list_item_lower_roman_parens] = STATE(736), + [sym__list_upper_roman_period] = STATE(853), + [sym__list_item_upper_roman_period] = STATE(742), + [sym__list_upper_roman_paren] = STATE(853), + [sym__list_item_upper_roman_paren] = STATE(743), + [sym__list_upper_roman_parens] = STATE(853), + [sym__list_item_upper_roman_parens] = STATE(762), + [sym_table] = STATE(449), + [sym__table_content] = STATE(311), + [sym_table_separator] = STATE(311), + [sym_table_row] = STATE(347), + [sym_footnote] = STATE(449), + [sym_footnote_marker_begin] = STATE(1178), + [sym_div] = STATE(449), + [sym__div_marker_begin] = STATE(1050), + [sym_code_block] = STATE(449), + [sym_raw_block] = STATE(449), + [sym_thematic_break] = STATE(449), + [sym_block_quote] = STATE(449), + [sym__block_quote_content] = STATE(1013), + [sym__block_quote_prefix] = STATE(232), + [sym_link_reference_definition] = STATE(449), + [sym_block_attribute] = STATE(449), + [sym__paragraph] = STATE(449), + [sym__paragraph_content] = STATE(741), + [sym__paragraph_inline_content] = STATE(775), + [sym__inline] = STATE(616), + [sym__symbol_fallback] = STATE(297), + [aux_sym__list_dash_repeat1] = STATE(370), + [aux_sym__list_plus_repeat1] = STATE(354), + [aux_sym__list_star_repeat1] = STATE(360), + [aux_sym__list_task_repeat1] = STATE(340), + [aux_sym__list_definition_repeat1] = STATE(499), + [aux_sym__list_decimal_period_repeat1] = STATE(500), + [aux_sym__list_decimal_paren_repeat1] = STATE(501), + [aux_sym__list_decimal_parens_repeat1] = STATE(502), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(503), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(504), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(505), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(506), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(507), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(508), + [aux_sym__list_lower_roman_period_repeat1] = STATE(509), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(510), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(511), + [aux_sym__list_upper_roman_period_repeat1] = STATE(512), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(513), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(514), + [aux_sym_table_repeat1] = STATE(311), + [aux_sym__block_quote_prefix_repeat1] = STATE(253), + [aux_sym__inline_repeat1] = STATE(297), + [anon_sym_LBRACK] = ACTIONS(436), + [anon_sym_PIPE] = ACTIONS(438), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(440), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(451), - [sym__heading_begin] = ACTIONS(397), + [sym__heading_begin] = ACTIONS(442), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(399), + [sym__code_block_begin] = ACTIONS(444), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -12420,118 +12167,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(401), - [sym__block_quote_continuation] = ACTIONS(403), - [sym__thematic_break_dash] = ACTIONS(405), - [sym__thematic_break_star] = ACTIONS(405), + [sym__block_quote_begin] = ACTIONS(446), + [sym__block_quote_continuation] = ACTIONS(67), + [sym__thematic_break_dash] = ACTIONS(448), + [sym__thematic_break_star] = ACTIONS(448), }, [58] = { - [sym__block_with_heading] = STATE(711), - [sym__block_element] = STATE(711), - [sym_heading] = STATE(711), - [sym_list] = STATE(711), - [sym__list_dash] = STATE(732), - [sym__list_item_dash] = STATE(727), - [sym__list_plus] = STATE(732), - [sym__list_item_plus] = STATE(730), - [sym__list_star] = STATE(732), - [sym__list_item_star] = STATE(759), - [sym__list_task] = STATE(732), - [sym__list_item_task] = STATE(761), - [sym_list_marker_task] = STATE(46), - [sym__list_definition] = STATE(732), - [sym__list_item_definition] = STATE(819), - [sym__list_decimal_period] = STATE(732), - [sym__list_item_decimal_period] = STATE(852), - [sym__list_decimal_paren] = STATE(732), - [sym__list_item_decimal_paren] = STATE(837), - [sym__list_decimal_parens] = STATE(732), - [sym__list_item_decimal_parens] = STATE(815), - [sym__list_lower_alpha_period] = STATE(732), - [sym__list_item_lower_alpha_period] = STATE(843), - [sym__list_lower_alpha_paren] = STATE(732), - [sym__list_item_lower_alpha_paren] = STATE(850), - [sym__list_lower_alpha_parens] = STATE(732), - [sym__list_item_lower_alpha_parens] = STATE(853), - [sym__list_upper_alpha_period] = STATE(732), - [sym__list_item_upper_alpha_period] = STATE(854), - [sym__list_upper_alpha_paren] = STATE(732), - [sym__list_item_upper_alpha_paren] = STATE(855), - [sym__list_upper_alpha_parens] = STATE(732), - [sym__list_item_upper_alpha_parens] = STATE(856), - [sym__list_lower_roman_period] = STATE(732), - [sym__list_item_lower_roman_period] = STATE(857), - [sym__list_lower_roman_paren] = STATE(732), - [sym__list_item_lower_roman_paren] = STATE(871), - [sym__list_lower_roman_parens] = STATE(732), - [sym__list_item_lower_roman_parens] = STATE(874), - [sym__list_upper_roman_period] = STATE(732), - [sym__list_item_upper_roman_period] = STATE(876), - [sym__list_upper_roman_paren] = STATE(732), - [sym__list_item_upper_roman_paren] = STATE(878), - [sym__list_upper_roman_parens] = STATE(732), - [sym__list_item_upper_roman_parens] = STATE(880), - [sym_table] = STATE(711), - [sym__table_content] = STATE(386), - [sym_table_separator] = STATE(386), - [sym_table_row] = STATE(414), - [sym_footnote] = STATE(711), - [sym_footnote_marker_begin] = STATE(1304), - [sym_div] = STATE(711), - [sym__div_marker_begin] = STATE(1188), - [sym_code_block] = STATE(711), - [sym_raw_block] = STATE(711), - [sym_thematic_break] = STATE(711), - [sym_block_quote] = STATE(711), - [sym__block_quote_prefix] = STATE(305), - [sym_link_reference_definition] = STATE(711), - [sym_block_attribute] = STATE(711), - [sym__paragraph] = STATE(711), - [sym__paragraph_content] = STATE(868), - [sym__paragraph_inline_content] = STATE(896), - [sym__inline] = STATE(715), - [sym__symbol_fallback] = STATE(381), - [aux_sym__list_dash_repeat1] = STATE(449), - [aux_sym__list_plus_repeat1] = STATE(452), - [aux_sym__list_star_repeat1] = STATE(460), - [aux_sym__list_task_repeat1] = STATE(418), - [aux_sym__list_definition_repeat1] = STATE(632), - [aux_sym__list_decimal_period_repeat1] = STATE(633), - [aux_sym__list_decimal_paren_repeat1] = STATE(634), - [aux_sym__list_decimal_parens_repeat1] = STATE(635), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(636), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(637), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(638), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(639), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(640), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(641), - [aux_sym__list_lower_roman_period_repeat1] = STATE(642), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(643), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(644), - [aux_sym__list_upper_roman_period_repeat1] = STATE(645), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(646), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(647), - [aux_sym_table_repeat1] = STATE(386), - [aux_sym__block_quote_prefix_repeat1] = STATE(330), - [aux_sym__inline_repeat1] = STATE(381), - [anon_sym_LBRACK] = ACTIONS(453), - [anon_sym_PIPE] = ACTIONS(455), - [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(457), - [anon_sym_DOT] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(13), - [aux_sym__inline_token1] = ACTIONS(13), - [anon_sym_LBRACE_DASH] = ACTIONS(13), - [anon_sym_POUND] = ACTIONS(13), - [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(459), - [sym__heading_begin] = ACTIONS(461), + [sym__block_element] = STATE(1095), + [sym_heading] = STATE(1095), + [sym_list] = STATE(1095), + [sym__list_dash] = STATE(1006), + [sym__list_item_dash] = STATE(636), + [sym__list_plus] = STATE(1006), + [sym__list_item_plus] = STATE(637), + [sym__list_star] = STATE(1006), + [sym__list_item_star] = STATE(671), + [sym__list_task] = STATE(1006), + [sym__list_item_task] = STATE(691), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(1006), + [sym__list_item_definition] = STATE(896), + [sym__list_decimal_period] = STATE(1006), + [sym__list_item_decimal_period] = STATE(841), + [sym__list_decimal_paren] = STATE(1006), + [sym__list_item_decimal_paren] = STATE(796), + [sym__list_decimal_parens] = STATE(1006), + [sym__list_item_decimal_parens] = STATE(716), + [sym__list_lower_alpha_period] = STATE(1006), + [sym__list_item_lower_alpha_period] = STATE(722), + [sym__list_lower_alpha_paren] = STATE(1006), + [sym__list_item_lower_alpha_paren] = STATE(801), + [sym__list_lower_alpha_parens] = STATE(1006), + [sym__list_item_lower_alpha_parens] = STATE(813), + [sym__list_upper_alpha_period] = STATE(1006), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(1006), + [sym__list_item_upper_alpha_paren] = STATE(706), + [sym__list_upper_alpha_parens] = STATE(1006), + [sym__list_item_upper_alpha_parens] = STATE(707), + [sym__list_lower_roman_period] = STATE(1006), + [sym__list_item_lower_roman_period] = STATE(725), + [sym__list_lower_roman_paren] = STATE(1006), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(1006), + [sym__list_item_lower_roman_parens] = STATE(736), + [sym__list_upper_roman_period] = STATE(1006), + [sym__list_item_upper_roman_period] = STATE(742), + [sym__list_upper_roman_paren] = STATE(1006), + [sym__list_item_upper_roman_paren] = STATE(743), + [sym__list_upper_roman_parens] = STATE(1006), + [sym__list_item_upper_roman_parens] = STATE(762), + [sym_table] = STATE(1095), + [sym__table_content] = STATE(310), + [sym_table_separator] = STATE(310), + [sym_table_row] = STATE(331), + [sym_footnote] = STATE(1095), + [sym_footnote_marker_begin] = STATE(1176), + [sym_div] = STATE(1095), + [sym__div_marker_begin] = STATE(1026), + [sym_code_block] = STATE(1095), + [sym_raw_block] = STATE(1095), + [sym_thematic_break] = STATE(1095), + [sym_block_quote] = STATE(1095), + [sym__block_quote_prefix] = STATE(231), + [sym_link_reference_definition] = STATE(1095), + [sym_block_attribute] = STATE(1095), + [sym__paragraph] = STATE(1095), + [sym__paragraph_content] = STATE(705), + [sym__paragraph_inline_content] = STATE(775), + [sym__inline] = STATE(616), + [sym__symbol_fallback] = STATE(297), + [aux_sym__list_dash_repeat1] = STATE(355), + [aux_sym__list_plus_repeat1] = STATE(356), + [aux_sym__list_star_repeat1] = STATE(362), + [aux_sym__list_task_repeat1] = STATE(346), + [aux_sym__list_definition_repeat1] = STATE(483), + [aux_sym__list_decimal_period_repeat1] = STATE(484), + [aux_sym__list_decimal_paren_repeat1] = STATE(485), + [aux_sym__list_decimal_parens_repeat1] = STATE(486), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(487), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(488), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(489), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(490), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(491), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(492), + [aux_sym__list_lower_roman_period_repeat1] = STATE(493), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(494), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(495), + [aux_sym__list_upper_roman_period_repeat1] = STATE(581), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(497), + [aux_sym_table_repeat1] = STATE(310), + [aux_sym__block_quote_prefix_repeat1] = STATE(253), + [aux_sym__inline_repeat1] = STATE(297), + [anon_sym_LBRACK] = ACTIONS(428), + [anon_sym_PIPE] = ACTIONS(428), + [anon_sym_LBRACK_CARET] = ACTIONS(428), + [anon_sym_LBRACE] = ACTIONS(428), + [anon_sym_DOT] = ACTIONS(428), + [aux_sym_identifier_token1] = ACTIONS(428), + [aux_sym__inline_token1] = ACTIONS(428), + [anon_sym_LBRACE_DASH] = ACTIONS(428), + [anon_sym_POUND] = ACTIONS(428), + [anon_sym_PERCENT] = ACTIONS(428), + [sym__newline] = ACTIONS(450), + [sym__heading_begin] = ACTIONS(346), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(463), - [sym_list_marker_dash] = ACTIONS(25), - [sym_list_marker_star] = ACTIONS(27), - [sym_list_marker_plus] = ACTIONS(29), - [sym__list_marker_task_begin] = ACTIONS(31), + [sym__code_block_begin] = ACTIONS(348), + [sym_list_marker_dash] = ACTIONS(430), + [sym_list_marker_star] = ACTIONS(430), + [sym_list_marker_plus] = ACTIONS(430), + [sym__list_marker_task_begin] = ACTIONS(430), [sym_list_marker_definition] = ACTIONS(33), [sym_list_marker_decimal_period] = ACTIONS(35), [sym_list_marker_lower_alpha_period] = ACTIONS(37), @@ -12548,114 +12294,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(465), - [sym__block_quote_continuation] = ACTIONS(467), - [sym__thematic_break_dash] = ACTIONS(469), - [sym__thematic_break_star] = ACTIONS(469), + [sym__block_quote_begin] = ACTIONS(350), + [sym__block_quote_continuation] = ACTIONS(430), + [sym__thematic_break_dash] = ACTIONS(354), + [sym__thematic_break_star] = ACTIONS(354), }, [59] = { - [sym__block_with_heading] = STATE(720), - [sym__block_element] = STATE(720), - [sym_heading] = STATE(720), - [sym_list] = STATE(720), - [sym__list_dash] = STATE(732), - [sym__list_item_dash] = STATE(727), - [sym__list_plus] = STATE(732), - [sym__list_item_plus] = STATE(730), - [sym__list_star] = STATE(732), - [sym__list_item_star] = STATE(759), - [sym__list_task] = STATE(732), - [sym__list_item_task] = STATE(761), - [sym_list_marker_task] = STATE(46), - [sym__list_definition] = STATE(732), - [sym__list_item_definition] = STATE(819), - [sym__list_decimal_period] = STATE(732), - [sym__list_item_decimal_period] = STATE(852), - [sym__list_decimal_paren] = STATE(732), - [sym__list_item_decimal_paren] = STATE(837), - [sym__list_decimal_parens] = STATE(732), - [sym__list_item_decimal_parens] = STATE(815), - [sym__list_lower_alpha_period] = STATE(732), - [sym__list_item_lower_alpha_period] = STATE(843), - [sym__list_lower_alpha_paren] = STATE(732), - [sym__list_item_lower_alpha_paren] = STATE(850), - [sym__list_lower_alpha_parens] = STATE(732), - [sym__list_item_lower_alpha_parens] = STATE(853), - [sym__list_upper_alpha_period] = STATE(732), - [sym__list_item_upper_alpha_period] = STATE(854), - [sym__list_upper_alpha_paren] = STATE(732), - [sym__list_item_upper_alpha_paren] = STATE(855), - [sym__list_upper_alpha_parens] = STATE(732), - [sym__list_item_upper_alpha_parens] = STATE(856), - [sym__list_lower_roman_period] = STATE(732), - [sym__list_item_lower_roman_period] = STATE(857), - [sym__list_lower_roman_paren] = STATE(732), - [sym__list_item_lower_roman_paren] = STATE(871), - [sym__list_lower_roman_parens] = STATE(732), - [sym__list_item_lower_roman_parens] = STATE(874), - [sym__list_upper_roman_period] = STATE(732), - [sym__list_item_upper_roman_period] = STATE(876), - [sym__list_upper_roman_paren] = STATE(732), - [sym__list_item_upper_roman_paren] = STATE(878), - [sym__list_upper_roman_parens] = STATE(732), - [sym__list_item_upper_roman_parens] = STATE(880), - [sym_table] = STATE(720), - [sym__table_content] = STATE(386), - [sym_table_separator] = STATE(386), - [sym_table_row] = STATE(414), - [sym_footnote] = STATE(720), - [sym_footnote_marker_begin] = STATE(1304), - [sym_div] = STATE(720), - [sym__div_marker_begin] = STATE(1188), - [sym_code_block] = STATE(720), - [sym_raw_block] = STATE(720), - [sym_thematic_break] = STATE(720), - [sym_block_quote] = STATE(720), - [sym__block_quote_prefix] = STATE(305), - [sym_link_reference_definition] = STATE(720), - [sym_block_attribute] = STATE(720), - [sym__paragraph] = STATE(720), - [sym__paragraph_content] = STATE(868), - [sym__paragraph_inline_content] = STATE(896), - [sym__inline] = STATE(715), - [sym__symbol_fallback] = STATE(381), - [aux_sym__list_dash_repeat1] = STATE(449), - [aux_sym__list_plus_repeat1] = STATE(452), - [aux_sym__list_star_repeat1] = STATE(460), - [aux_sym__list_task_repeat1] = STATE(418), - [aux_sym__list_definition_repeat1] = STATE(632), - [aux_sym__list_decimal_period_repeat1] = STATE(633), - [aux_sym__list_decimal_paren_repeat1] = STATE(634), - [aux_sym__list_decimal_parens_repeat1] = STATE(635), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(636), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(637), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(638), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(639), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(640), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(641), - [aux_sym__list_lower_roman_period_repeat1] = STATE(642), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(643), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(644), - [aux_sym__list_upper_roman_period_repeat1] = STATE(645), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(646), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(647), - [aux_sym_table_repeat1] = STATE(386), - [aux_sym__block_quote_prefix_repeat1] = STATE(330), - [aux_sym__inline_repeat1] = STATE(381), - [anon_sym_LBRACK] = ACTIONS(453), - [anon_sym_PIPE] = ACTIONS(455), + [sym__block_element] = STATE(449), + [sym_heading] = STATE(449), + [sym_list] = STATE(449), + [sym__list_dash] = STATE(853), + [sym__list_item_dash] = STATE(636), + [sym__list_plus] = STATE(853), + [sym__list_item_plus] = STATE(637), + [sym__list_star] = STATE(853), + [sym__list_item_star] = STATE(671), + [sym__list_task] = STATE(853), + [sym__list_item_task] = STATE(691), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(853), + [sym__list_item_definition] = STATE(896), + [sym__list_decimal_period] = STATE(853), + [sym__list_item_decimal_period] = STATE(841), + [sym__list_decimal_paren] = STATE(853), + [sym__list_item_decimal_paren] = STATE(796), + [sym__list_decimal_parens] = STATE(853), + [sym__list_item_decimal_parens] = STATE(716), + [sym__list_lower_alpha_period] = STATE(853), + [sym__list_item_lower_alpha_period] = STATE(722), + [sym__list_lower_alpha_paren] = STATE(853), + [sym__list_item_lower_alpha_paren] = STATE(801), + [sym__list_lower_alpha_parens] = STATE(853), + [sym__list_item_lower_alpha_parens] = STATE(813), + [sym__list_upper_alpha_period] = STATE(853), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(853), + [sym__list_item_upper_alpha_paren] = STATE(706), + [sym__list_upper_alpha_parens] = STATE(853), + [sym__list_item_upper_alpha_parens] = STATE(707), + [sym__list_lower_roman_period] = STATE(853), + [sym__list_item_lower_roman_period] = STATE(725), + [sym__list_lower_roman_paren] = STATE(853), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(853), + [sym__list_item_lower_roman_parens] = STATE(736), + [sym__list_upper_roman_period] = STATE(853), + [sym__list_item_upper_roman_period] = STATE(742), + [sym__list_upper_roman_paren] = STATE(853), + [sym__list_item_upper_roman_paren] = STATE(743), + [sym__list_upper_roman_parens] = STATE(853), + [sym__list_item_upper_roman_parens] = STATE(762), + [sym_table] = STATE(449), + [sym__table_content] = STATE(311), + [sym_table_separator] = STATE(311), + [sym_table_row] = STATE(347), + [sym_footnote] = STATE(449), + [sym_footnote_marker_begin] = STATE(1178), + [sym_div] = STATE(449), + [sym__div_marker_begin] = STATE(1050), + [sym_code_block] = STATE(449), + [sym_raw_block] = STATE(449), + [sym_thematic_break] = STATE(449), + [sym_block_quote] = STATE(449), + [sym__block_quote_content] = STATE(959), + [sym__block_quote_prefix] = STATE(232), + [sym_link_reference_definition] = STATE(449), + [sym_block_attribute] = STATE(449), + [sym__paragraph] = STATE(449), + [sym__paragraph_content] = STATE(741), + [sym__paragraph_inline_content] = STATE(775), + [sym__inline] = STATE(616), + [sym__symbol_fallback] = STATE(297), + [aux_sym__list_dash_repeat1] = STATE(370), + [aux_sym__list_plus_repeat1] = STATE(354), + [aux_sym__list_star_repeat1] = STATE(360), + [aux_sym__list_task_repeat1] = STATE(340), + [aux_sym__list_definition_repeat1] = STATE(499), + [aux_sym__list_decimal_period_repeat1] = STATE(500), + [aux_sym__list_decimal_paren_repeat1] = STATE(501), + [aux_sym__list_decimal_parens_repeat1] = STATE(502), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(503), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(504), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(505), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(506), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(507), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(508), + [aux_sym__list_lower_roman_period_repeat1] = STATE(509), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(510), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(511), + [aux_sym__list_upper_roman_period_repeat1] = STATE(512), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(513), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(514), + [aux_sym_table_repeat1] = STATE(311), + [aux_sym__block_quote_prefix_repeat1] = STATE(253), + [aux_sym__inline_repeat1] = STATE(297), + [anon_sym_LBRACK] = ACTIONS(436), + [anon_sym_PIPE] = ACTIONS(438), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(457), + [anon_sym_LBRACE] = ACTIONS(440), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(471), - [sym__heading_begin] = ACTIONS(461), + [sym__heading_begin] = ACTIONS(442), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(463), + [sym__code_block_begin] = ACTIONS(444), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -12676,117 +12421,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(465), - [sym__block_quote_continuation] = ACTIONS(467), - [sym__thematic_break_dash] = ACTIONS(469), - [sym__thematic_break_star] = ACTIONS(469), + [sym__block_quote_begin] = ACTIONS(446), + [sym__block_quote_continuation] = ACTIONS(67), + [sym__thematic_break_dash] = ACTIONS(448), + [sym__thematic_break_star] = ACTIONS(448), }, [60] = { - [sym__block_element] = STATE(193), - [sym_heading] = STATE(193), - [sym_list] = STATE(193), - [sym__list_dash] = STATE(228), - [sym__list_item_dash] = STATE(727), - [sym__list_plus] = STATE(228), - [sym__list_item_plus] = STATE(730), - [sym__list_star] = STATE(228), - [sym__list_item_star] = STATE(759), - [sym__list_task] = STATE(228), - [sym__list_item_task] = STATE(761), - [sym_list_marker_task] = STATE(46), - [sym__list_definition] = STATE(228), - [sym__list_item_definition] = STATE(819), - [sym__list_decimal_period] = STATE(228), - [sym__list_item_decimal_period] = STATE(852), - [sym__list_decimal_paren] = STATE(228), - [sym__list_item_decimal_paren] = STATE(837), - [sym__list_decimal_parens] = STATE(228), - [sym__list_item_decimal_parens] = STATE(815), - [sym__list_lower_alpha_period] = STATE(228), - [sym__list_item_lower_alpha_period] = STATE(843), - [sym__list_lower_alpha_paren] = STATE(228), - [sym__list_item_lower_alpha_paren] = STATE(850), - [sym__list_lower_alpha_parens] = STATE(228), - [sym__list_item_lower_alpha_parens] = STATE(853), - [sym__list_upper_alpha_period] = STATE(228), - [sym__list_item_upper_alpha_period] = STATE(854), - [sym__list_upper_alpha_paren] = STATE(228), - [sym__list_item_upper_alpha_paren] = STATE(855), - [sym__list_upper_alpha_parens] = STATE(228), - [sym__list_item_upper_alpha_parens] = STATE(856), - [sym__list_lower_roman_period] = STATE(228), - [sym__list_item_lower_roman_period] = STATE(857), - [sym__list_lower_roman_paren] = STATE(228), - [sym__list_item_lower_roman_paren] = STATE(871), - [sym__list_lower_roman_parens] = STATE(228), - [sym__list_item_lower_roman_parens] = STATE(874), - [sym__list_upper_roman_period] = STATE(228), - [sym__list_item_upper_roman_period] = STATE(876), - [sym__list_upper_roman_paren] = STATE(228), - [sym__list_item_upper_roman_paren] = STATE(878), - [sym__list_upper_roman_parens] = STATE(228), - [sym__list_item_upper_roman_parens] = STATE(880), - [sym_table] = STATE(193), - [sym__table_content] = STATE(73), - [sym_table_separator] = STATE(73), - [sym_table_row] = STATE(77), - [sym_footnote] = STATE(193), - [sym_footnote_marker_begin] = STATE(1306), - [sym_div] = STATE(193), - [sym__div_marker_begin] = STATE(1210), - [sym_code_block] = STATE(193), - [sym_raw_block] = STATE(193), - [sym_thematic_break] = STATE(193), - [sym_block_quote] = STATE(193), - [sym__block_quote_prefix] = STATE(301), - [sym_link_reference_definition] = STATE(193), - [sym_block_attribute] = STATE(193), - [sym__paragraph] = STATE(193), - [sym__paragraph_content] = STATE(889), - [sym__paragraph_inline_content] = STATE(896), - [sym__inline] = STATE(715), - [sym__symbol_fallback] = STATE(381), - [aux_sym__list_dash_repeat1] = STATE(445), - [aux_sym__list_plus_repeat1] = STATE(446), - [aux_sym__list_star_repeat1] = STATE(447), - [aux_sym__list_task_repeat1] = STATE(423), - [aux_sym__list_definition_repeat1] = STATE(655), - [aux_sym__list_decimal_period_repeat1] = STATE(656), - [aux_sym__list_decimal_paren_repeat1] = STATE(657), - [aux_sym__list_decimal_parens_repeat1] = STATE(658), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(659), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(660), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(661), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(662), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(663), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(664), - [aux_sym__list_lower_roman_period_repeat1] = STATE(665), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(666), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(667), - [aux_sym__list_upper_roman_period_repeat1] = STATE(668), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(669), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(670), - [aux_sym_table_repeat1] = STATE(73), - [aux_sym__block_quote_prefix_repeat1] = STATE(330), - [aux_sym__inline_repeat1] = STATE(381), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(443), - [anon_sym_LBRACK_CARET] = ACTIONS(443), - [anon_sym_LBRACE] = ACTIONS(443), - [anon_sym_DOT] = ACTIONS(443), - [aux_sym_identifier_token1] = ACTIONS(443), - [aux_sym__inline_token1] = ACTIONS(443), - [anon_sym_LBRACE_DASH] = ACTIONS(443), - [anon_sym_POUND] = ACTIONS(443), - [anon_sym_PERCENT] = ACTIONS(443), - [sym__newline] = ACTIONS(473), - [sym__heading_begin] = ACTIONS(224), + [sym__block_element] = STATE(640), + [sym_heading] = STATE(640), + [sym_list] = STATE(640), + [sym__list_dash] = STATE(603), + [sym__list_item_dash] = STATE(636), + [sym__list_plus] = STATE(603), + [sym__list_item_plus] = STATE(637), + [sym__list_star] = STATE(603), + [sym__list_item_star] = STATE(671), + [sym__list_task] = STATE(603), + [sym__list_item_task] = STATE(691), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(603), + [sym__list_item_definition] = STATE(896), + [sym__list_decimal_period] = STATE(603), + [sym__list_item_decimal_period] = STATE(841), + [sym__list_decimal_paren] = STATE(603), + [sym__list_item_decimal_paren] = STATE(796), + [sym__list_decimal_parens] = STATE(603), + [sym__list_item_decimal_parens] = STATE(716), + [sym__list_lower_alpha_period] = STATE(603), + [sym__list_item_lower_alpha_period] = STATE(722), + [sym__list_lower_alpha_paren] = STATE(603), + [sym__list_item_lower_alpha_paren] = STATE(801), + [sym__list_lower_alpha_parens] = STATE(603), + [sym__list_item_lower_alpha_parens] = STATE(813), + [sym__list_upper_alpha_period] = STATE(603), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(603), + [sym__list_item_upper_alpha_paren] = STATE(706), + [sym__list_upper_alpha_parens] = STATE(603), + [sym__list_item_upper_alpha_parens] = STATE(707), + [sym__list_lower_roman_period] = STATE(603), + [sym__list_item_lower_roman_period] = STATE(725), + [sym__list_lower_roman_paren] = STATE(603), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(603), + [sym__list_item_lower_roman_parens] = STATE(736), + [sym__list_upper_roman_period] = STATE(603), + [sym__list_item_upper_roman_period] = STATE(742), + [sym__list_upper_roman_paren] = STATE(603), + [sym__list_item_upper_roman_paren] = STATE(743), + [sym__list_upper_roman_parens] = STATE(603), + [sym__list_item_upper_roman_parens] = STATE(762), + [sym_table] = STATE(640), + [sym__table_content] = STATE(301), + [sym_table_separator] = STATE(301), + [sym_table_row] = STATE(329), + [sym_footnote] = STATE(640), + [sym_footnote_marker_begin] = STATE(1182), + [sym_div] = STATE(640), + [sym__div_marker_begin] = STATE(1097), + [sym_code_block] = STATE(640), + [sym_raw_block] = STATE(640), + [sym_thematic_break] = STATE(640), + [sym_block_quote] = STATE(640), + [sym__block_quote_prefix] = STATE(229), + [sym_link_reference_definition] = STATE(640), + [sym_block_attribute] = STATE(640), + [sym__paragraph] = STATE(640), + [sym__paragraph_content] = STATE(803), + [sym__paragraph_inline_content] = STATE(775), + [sym__inline] = STATE(616), + [sym__symbol_fallback] = STATE(297), + [aux_sym__list_dash_repeat1] = STATE(367), + [aux_sym__list_plus_repeat1] = STATE(353), + [aux_sym__list_star_repeat1] = STATE(364), + [aux_sym__list_task_repeat1] = STATE(338), + [aux_sym__list_definition_repeat1] = STATE(533), + [aux_sym__list_decimal_period_repeat1] = STATE(534), + [aux_sym__list_decimal_paren_repeat1] = STATE(535), + [aux_sym__list_decimal_parens_repeat1] = STATE(536), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(537), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(538), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(539), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(540), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(541), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(542), + [aux_sym__list_lower_roman_period_repeat1] = STATE(543), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(544), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(545), + [aux_sym__list_upper_roman_period_repeat1] = STATE(546), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(547), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(548), + [aux_sym_table_repeat1] = STATE(301), + [aux_sym__block_quote_prefix_repeat1] = STATE(253), + [aux_sym__inline_repeat1] = STATE(297), + [anon_sym_LBRACK] = ACTIONS(428), + [anon_sym_PIPE] = ACTIONS(428), + [anon_sym_LBRACK_CARET] = ACTIONS(428), + [anon_sym_LBRACE] = ACTIONS(428), + [anon_sym_DOT] = ACTIONS(428), + [aux_sym_identifier_token1] = ACTIONS(428), + [aux_sym__inline_token1] = ACTIONS(428), + [anon_sym_LBRACE_DASH] = ACTIONS(428), + [anon_sym_POUND] = ACTIONS(428), + [anon_sym_PERCENT] = ACTIONS(428), + [sym__newline] = ACTIONS(452), + [sym__heading_begin] = ACTIONS(410), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(226), - [sym_list_marker_dash] = ACTIONS(445), - [sym_list_marker_star] = ACTIONS(445), - [sym_list_marker_plus] = ACTIONS(445), - [sym__list_marker_task_begin] = ACTIONS(445), + [sym__code_block_begin] = ACTIONS(412), + [sym_list_marker_dash] = ACTIONS(430), + [sym_list_marker_star] = ACTIONS(430), + [sym_list_marker_plus] = ACTIONS(430), + [sym__list_marker_task_begin] = ACTIONS(430), [sym_list_marker_definition] = ACTIONS(33), [sym_list_marker_decimal_period] = ACTIONS(35), [sym_list_marker_lower_alpha_period] = ACTIONS(37), @@ -12803,244 +12548,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(228), - [sym__block_quote_continuation] = ACTIONS(445), - [sym__thematic_break_dash] = ACTIONS(232), - [sym__thematic_break_star] = ACTIONS(232), + [sym__block_quote_begin] = ACTIONS(414), + [sym__block_quote_continuation] = ACTIONS(430), + [sym__thematic_break_dash] = ACTIONS(418), + [sym__thematic_break_star] = ACTIONS(418), }, [61] = { - [sym__block_element] = STATE(1040), - [sym_heading] = STATE(1040), - [sym_list] = STATE(1040), - [sym__list_dash] = STATE(1183), - [sym__list_item_dash] = STATE(727), - [sym__list_plus] = STATE(1183), - [sym__list_item_plus] = STATE(730), - [sym__list_star] = STATE(1183), - [sym__list_item_star] = STATE(759), - [sym__list_task] = STATE(1183), - [sym__list_item_task] = STATE(761), - [sym_list_marker_task] = STATE(46), - [sym__list_definition] = STATE(1183), - [sym__list_item_definition] = STATE(819), - [sym__list_decimal_period] = STATE(1183), - [sym__list_item_decimal_period] = STATE(852), - [sym__list_decimal_paren] = STATE(1183), - [sym__list_item_decimal_paren] = STATE(837), - [sym__list_decimal_parens] = STATE(1183), - [sym__list_item_decimal_parens] = STATE(815), - [sym__list_lower_alpha_period] = STATE(1183), - [sym__list_item_lower_alpha_period] = STATE(843), - [sym__list_lower_alpha_paren] = STATE(1183), - [sym__list_item_lower_alpha_paren] = STATE(850), - [sym__list_lower_alpha_parens] = STATE(1183), - [sym__list_item_lower_alpha_parens] = STATE(853), - [sym__list_upper_alpha_period] = STATE(1183), - [sym__list_item_upper_alpha_period] = STATE(854), - [sym__list_upper_alpha_paren] = STATE(1183), - [sym__list_item_upper_alpha_paren] = STATE(855), - [sym__list_upper_alpha_parens] = STATE(1183), - [sym__list_item_upper_alpha_parens] = STATE(856), - [sym__list_lower_roman_period] = STATE(1183), - [sym__list_item_lower_roman_period] = STATE(857), - [sym__list_lower_roman_paren] = STATE(1183), - [sym__list_item_lower_roman_paren] = STATE(871), - [sym__list_lower_roman_parens] = STATE(1183), - [sym__list_item_lower_roman_parens] = STATE(874), - [sym__list_upper_roman_period] = STATE(1183), - [sym__list_item_upper_roman_period] = STATE(876), - [sym__list_upper_roman_paren] = STATE(1183), - [sym__list_item_upper_roman_paren] = STATE(878), - [sym__list_upper_roman_parens] = STATE(1183), - [sym__list_item_upper_roman_parens] = STATE(880), - [sym_table] = STATE(1040), - [sym__table_content] = STATE(406), - [sym_table_separator] = STATE(406), - [sym_table_row] = STATE(417), - [sym_footnote] = STATE(1040), - [sym_footnote_marker_begin] = STATE(1298), - [sym_div] = STATE(1040), - [sym__div_marker_begin] = STATE(1119), - [sym_code_block] = STATE(1040), - [sym_raw_block] = STATE(1040), - [sym_thematic_break] = STATE(1040), - [sym_block_quote] = STATE(1040), - [sym__block_quote_prefix] = STATE(300), - [sym_link_reference_definition] = STATE(1040), - [sym_block_attribute] = STATE(1040), - [sym__paragraph] = STATE(1040), - [sym__paragraph_content] = STATE(799), - [sym__paragraph_inline_content] = STATE(896), - [sym__inline] = STATE(715), - [sym__symbol_fallback] = STATE(381), - [aux_sym__list_dash_repeat1] = STATE(453), - [aux_sym__list_plus_repeat1] = STATE(458), - [aux_sym__list_star_repeat1] = STATE(463), - [aux_sym__list_task_repeat1] = STATE(440), - [aux_sym__list_definition_repeat1] = STATE(562), - [aux_sym__list_decimal_period_repeat1] = STATE(563), - [aux_sym__list_decimal_paren_repeat1] = STATE(542), - [aux_sym__list_decimal_parens_repeat1] = STATE(564), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(565), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(566), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(567), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(568), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(569), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(570), - [aux_sym__list_lower_roman_period_repeat1] = STATE(571), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(572), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(573), - [aux_sym__list_upper_roman_period_repeat1] = STATE(574), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(575), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(576), - [aux_sym_table_repeat1] = STATE(406), - [aux_sym__block_quote_prefix_repeat1] = STATE(330), - [aux_sym__inline_repeat1] = STATE(381), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(443), - [anon_sym_LBRACK_CARET] = ACTIONS(443), - [anon_sym_LBRACE] = ACTIONS(443), - [anon_sym_DOT] = ACTIONS(443), - [aux_sym_identifier_token1] = ACTIONS(443), - [aux_sym__inline_token1] = ACTIONS(443), - [anon_sym_LBRACE_DASH] = ACTIONS(443), - [anon_sym_POUND] = ACTIONS(443), - [anon_sym_PERCENT] = ACTIONS(443), - [sym__newline] = ACTIONS(475), - [sym__heading_begin] = ACTIONS(397), - [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(399), - [sym_list_marker_dash] = ACTIONS(445), - [sym_list_marker_star] = ACTIONS(445), - [sym_list_marker_plus] = ACTIONS(445), - [sym__list_marker_task_begin] = ACTIONS(445), - [sym_list_marker_definition] = ACTIONS(33), - [sym_list_marker_decimal_period] = ACTIONS(35), - [sym_list_marker_lower_alpha_period] = ACTIONS(37), - [sym_list_marker_upper_alpha_period] = ACTIONS(39), - [sym_list_marker_lower_roman_period] = ACTIONS(41), - [sym_list_marker_upper_roman_period] = ACTIONS(43), - [sym_list_marker_decimal_paren] = ACTIONS(45), - [sym_list_marker_lower_alpha_paren] = ACTIONS(47), - [sym_list_marker_upper_alpha_paren] = ACTIONS(49), - [sym_list_marker_lower_roman_paren] = ACTIONS(51), - [sym_list_marker_upper_roman_paren] = ACTIONS(53), - [sym_list_marker_decimal_parens] = ACTIONS(55), - [sym_list_marker_lower_alpha_parens] = ACTIONS(57), - [sym_list_marker_upper_alpha_parens] = ACTIONS(59), - [sym_list_marker_lower_roman_parens] = ACTIONS(61), - [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(401), - [sym__block_quote_continuation] = ACTIONS(445), - [sym__thematic_break_dash] = ACTIONS(405), - [sym__thematic_break_star] = ACTIONS(405), - }, - [62] = { - [sym__block_element] = STATE(162), - [sym_heading] = STATE(162), - [sym_list] = STATE(162), - [sym__list_dash] = STATE(166), - [sym__list_item_dash] = STATE(727), - [sym__list_plus] = STATE(166), - [sym__list_item_plus] = STATE(730), - [sym__list_star] = STATE(166), - [sym__list_item_star] = STATE(759), - [sym__list_task] = STATE(166), - [sym__list_item_task] = STATE(761), - [sym_list_marker_task] = STATE(46), - [sym__list_definition] = STATE(166), - [sym__list_item_definition] = STATE(819), - [sym__list_decimal_period] = STATE(166), - [sym__list_item_decimal_period] = STATE(852), - [sym__list_decimal_paren] = STATE(166), - [sym__list_item_decimal_paren] = STATE(837), - [sym__list_decimal_parens] = STATE(166), - [sym__list_item_decimal_parens] = STATE(815), - [sym__list_lower_alpha_period] = STATE(166), - [sym__list_item_lower_alpha_period] = STATE(843), - [sym__list_lower_alpha_paren] = STATE(166), - [sym__list_item_lower_alpha_paren] = STATE(850), - [sym__list_lower_alpha_parens] = STATE(166), - [sym__list_item_lower_alpha_parens] = STATE(853), - [sym__list_upper_alpha_period] = STATE(166), - [sym__list_item_upper_alpha_period] = STATE(854), - [sym__list_upper_alpha_paren] = STATE(166), - [sym__list_item_upper_alpha_paren] = STATE(855), - [sym__list_upper_alpha_parens] = STATE(166), - [sym__list_item_upper_alpha_parens] = STATE(856), - [sym__list_lower_roman_period] = STATE(166), - [sym__list_item_lower_roman_period] = STATE(857), - [sym__list_lower_roman_paren] = STATE(166), - [sym__list_item_lower_roman_paren] = STATE(871), - [sym__list_lower_roman_parens] = STATE(166), - [sym__list_item_lower_roman_parens] = STATE(874), - [sym__list_upper_roman_period] = STATE(166), - [sym__list_item_upper_roman_period] = STATE(876), - [sym__list_upper_roman_paren] = STATE(166), - [sym__list_item_upper_roman_paren] = STATE(878), - [sym__list_upper_roman_parens] = STATE(166), - [sym__list_item_upper_roman_parens] = STATE(880), - [sym_table] = STATE(162), - [sym__table_content] = STATE(72), - [sym_table_separator] = STATE(72), - [sym_table_row] = STATE(79), - [sym_footnote] = STATE(162), - [sym_footnote_marker_begin] = STATE(1302), - [sym_div] = STATE(162), - [sym__div_marker_begin] = STATE(1165), - [sym_code_block] = STATE(162), - [sym_raw_block] = STATE(162), - [sym_thematic_break] = STATE(162), - [sym_block_quote] = STATE(162), - [sym__block_quote_prefix] = STATE(304), - [sym_link_reference_definition] = STATE(162), - [sym_block_attribute] = STATE(162), - [sym__paragraph] = STATE(162), - [sym__paragraph_content] = STATE(848), - [sym__paragraph_inline_content] = STATE(896), - [sym__inline] = STATE(715), - [sym__symbol_fallback] = STATE(381), - [aux_sym__list_dash_repeat1] = STATE(454), - [aux_sym__list_plus_repeat1] = STATE(455), - [aux_sym__list_star_repeat1] = STATE(456), - [aux_sym__list_task_repeat1] = STATE(436), - [aux_sym__list_definition_repeat1] = STATE(612), - [aux_sym__list_decimal_period_repeat1] = STATE(613), - [aux_sym__list_decimal_paren_repeat1] = STATE(614), - [aux_sym__list_decimal_parens_repeat1] = STATE(615), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(616), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(617), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(618), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(619), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(620), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(621), - [aux_sym__list_lower_roman_period_repeat1] = STATE(622), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(623), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(624), - [aux_sym__list_upper_roman_period_repeat1] = STATE(625), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(626), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(627), - [aux_sym_table_repeat1] = STATE(72), - [aux_sym__block_quote_prefix_repeat1] = STATE(330), - [aux_sym__inline_repeat1] = STATE(381), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(443), - [anon_sym_LBRACK_CARET] = ACTIONS(443), - [anon_sym_LBRACE] = ACTIONS(443), - [anon_sym_DOT] = ACTIONS(443), - [aux_sym_identifier_token1] = ACTIONS(443), - [aux_sym__inline_token1] = ACTIONS(443), - [anon_sym_LBRACE_DASH] = ACTIONS(443), - [anon_sym_POUND] = ACTIONS(443), - [anon_sym_PERCENT] = ACTIONS(443), - [sym__newline] = ACTIONS(447), + [sym__block_element] = STATE(141), + [sym_heading] = STATE(141), + [sym_list] = STATE(141), + [sym__list_dash] = STATE(144), + [sym__list_item_dash] = STATE(636), + [sym__list_plus] = STATE(144), + [sym__list_item_plus] = STATE(637), + [sym__list_star] = STATE(144), + [sym__list_item_star] = STATE(671), + [sym__list_task] = STATE(144), + [sym__list_item_task] = STATE(691), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(144), + [sym__list_item_definition] = STATE(896), + [sym__list_decimal_period] = STATE(144), + [sym__list_item_decimal_period] = STATE(841), + [sym__list_decimal_paren] = STATE(144), + [sym__list_item_decimal_paren] = STATE(796), + [sym__list_decimal_parens] = STATE(144), + [sym__list_item_decimal_parens] = STATE(716), + [sym__list_lower_alpha_period] = STATE(144), + [sym__list_item_lower_alpha_period] = STATE(722), + [sym__list_lower_alpha_paren] = STATE(144), + [sym__list_item_lower_alpha_paren] = STATE(801), + [sym__list_lower_alpha_parens] = STATE(144), + [sym__list_item_lower_alpha_parens] = STATE(813), + [sym__list_upper_alpha_period] = STATE(144), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(144), + [sym__list_item_upper_alpha_paren] = STATE(706), + [sym__list_upper_alpha_parens] = STATE(144), + [sym__list_item_upper_alpha_parens] = STATE(707), + [sym__list_lower_roman_period] = STATE(144), + [sym__list_item_lower_roman_period] = STATE(725), + [sym__list_lower_roman_paren] = STATE(144), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(144), + [sym__list_item_lower_roman_parens] = STATE(736), + [sym__list_upper_roman_period] = STATE(144), + [sym__list_item_upper_roman_period] = STATE(742), + [sym__list_upper_roman_paren] = STATE(144), + [sym__list_item_upper_roman_paren] = STATE(743), + [sym__list_upper_roman_parens] = STATE(144), + [sym__list_item_upper_roman_parens] = STATE(762), + [sym_table] = STATE(141), + [sym__table_content] = STATE(67), + [sym_table_separator] = STATE(67), + [sym_table_row] = STATE(70), + [sym_footnote] = STATE(141), + [sym_footnote_marker_begin] = STATE(1180), + [sym_div] = STATE(141), + [sym__div_marker_begin] = STATE(1074), + [sym_code_block] = STATE(141), + [sym_raw_block] = STATE(141), + [sym_thematic_break] = STATE(141), + [sym_block_quote] = STATE(141), + [sym__block_quote_prefix] = STATE(233), + [sym_link_reference_definition] = STATE(141), + [sym_block_attribute] = STATE(141), + [sym__paragraph] = STATE(141), + [sym__paragraph_content] = STATE(773), + [sym__paragraph_inline_content] = STATE(775), + [sym__inline] = STATE(616), + [sym__symbol_fallback] = STATE(297), + [aux_sym__list_dash_repeat1] = STATE(357), + [aux_sym__list_plus_repeat1] = STATE(358), + [aux_sym__list_star_repeat1] = STATE(359), + [aux_sym__list_task_repeat1] = STATE(344), + [aux_sym__list_definition_repeat1] = STATE(515), + [aux_sym__list_decimal_period_repeat1] = STATE(516), + [aux_sym__list_decimal_paren_repeat1] = STATE(517), + [aux_sym__list_decimal_parens_repeat1] = STATE(518), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(519), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(520), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(521), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(522), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(523), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(524), + [aux_sym__list_lower_roman_period_repeat1] = STATE(525), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(526), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(527), + [aux_sym__list_upper_roman_period_repeat1] = STATE(528), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(529), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(530), + [aux_sym_table_repeat1] = STATE(67), + [aux_sym__block_quote_prefix_repeat1] = STATE(253), + [aux_sym__inline_repeat1] = STATE(297), + [anon_sym_LBRACK] = ACTIONS(428), + [anon_sym_PIPE] = ACTIONS(428), + [anon_sym_LBRACK_CARET] = ACTIONS(428), + [anon_sym_LBRACE] = ACTIONS(428), + [anon_sym_DOT] = ACTIONS(428), + [aux_sym_identifier_token1] = ACTIONS(428), + [aux_sym__inline_token1] = ACTIONS(428), + [anon_sym_LBRACE_DASH] = ACTIONS(428), + [anon_sym_POUND] = ACTIONS(428), + [anon_sym_PERCENT] = ACTIONS(428), + [sym__newline] = ACTIONS(432), [sym__heading_begin] = ACTIONS(19), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(83), - [sym_list_marker_dash] = ACTIONS(445), - [sym_list_marker_star] = ACTIONS(445), - [sym_list_marker_plus] = ACTIONS(445), - [sym__list_marker_task_begin] = ACTIONS(445), + [sym__code_block_begin] = ACTIONS(81), + [sym_list_marker_dash] = ACTIONS(430), + [sym_list_marker_star] = ACTIONS(430), + [sym_list_marker_plus] = ACTIONS(430), + [sym__list_marker_task_begin] = ACTIONS(430), [sym_list_marker_definition] = ACTIONS(33), [sym_list_marker_decimal_period] = ACTIONS(35), [sym_list_marker_lower_alpha_period] = ACTIONS(37), @@ -13057,113 +12675,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(85), - [sym__block_quote_continuation] = ACTIONS(445), - [sym__thematic_break_dash] = ACTIONS(87), - [sym__thematic_break_star] = ACTIONS(87), + [sym__block_quote_begin] = ACTIONS(83), + [sym__block_quote_continuation] = ACTIONS(430), + [sym__thematic_break_dash] = ACTIONS(85), + [sym__thematic_break_star] = ACTIONS(85), }, - [63] = { - [sym__block_element] = STATE(533), - [sym_heading] = STATE(533), - [sym_list] = STATE(533), - [sym__list_dash] = STATE(914), - [sym__list_item_dash] = STATE(727), - [sym__list_plus] = STATE(914), - [sym__list_item_plus] = STATE(730), - [sym__list_star] = STATE(914), - [sym__list_item_star] = STATE(759), - [sym__list_task] = STATE(914), - [sym__list_item_task] = STATE(761), - [sym_list_marker_task] = STATE(46), - [sym__list_definition] = STATE(914), - [sym__list_item_definition] = STATE(819), - [sym__list_decimal_period] = STATE(914), - [sym__list_item_decimal_period] = STATE(852), - [sym__list_decimal_paren] = STATE(914), - [sym__list_item_decimal_paren] = STATE(837), - [sym__list_decimal_parens] = STATE(914), - [sym__list_item_decimal_parens] = STATE(815), - [sym__list_lower_alpha_period] = STATE(914), - [sym__list_item_lower_alpha_period] = STATE(843), - [sym__list_lower_alpha_paren] = STATE(914), - [sym__list_item_lower_alpha_paren] = STATE(850), - [sym__list_lower_alpha_parens] = STATE(914), - [sym__list_item_lower_alpha_parens] = STATE(853), - [sym__list_upper_alpha_period] = STATE(914), - [sym__list_item_upper_alpha_period] = STATE(854), - [sym__list_upper_alpha_paren] = STATE(914), - [sym__list_item_upper_alpha_paren] = STATE(855), - [sym__list_upper_alpha_parens] = STATE(914), - [sym__list_item_upper_alpha_parens] = STATE(856), - [sym__list_lower_roman_period] = STATE(914), - [sym__list_item_lower_roman_period] = STATE(857), - [sym__list_lower_roman_paren] = STATE(914), - [sym__list_item_lower_roman_paren] = STATE(871), - [sym__list_lower_roman_parens] = STATE(914), - [sym__list_item_lower_roman_parens] = STATE(874), - [sym__list_upper_roman_period] = STATE(914), - [sym__list_item_upper_roman_period] = STATE(876), - [sym__list_upper_roman_paren] = STATE(914), - [sym__list_item_upper_roman_paren] = STATE(878), - [sym__list_upper_roman_parens] = STATE(914), - [sym__list_item_upper_roman_parens] = STATE(880), - [sym_table] = STATE(533), - [sym__table_content] = STATE(391), - [sym_table_separator] = STATE(391), - [sym_table_row] = STATE(433), - [sym_footnote] = STATE(533), - [sym_footnote_marker_begin] = STATE(1300), - [sym_div] = STATE(533), - [sym__div_marker_begin] = STATE(1142), - [sym_code_block] = STATE(533), - [sym_raw_block] = STATE(533), - [sym_thematic_break] = STATE(533), - [sym_block_quote] = STATE(533), - [sym__block_quote_content] = STATE(1315), - [sym__block_quote_prefix] = STATE(303), - [sym_link_reference_definition] = STATE(533), - [sym_block_attribute] = STATE(533), - [sym__paragraph] = STATE(533), - [sym__paragraph_content] = STATE(829), - [sym__paragraph_inline_content] = STATE(896), - [sym__inline] = STATE(715), - [sym__symbol_fallback] = STATE(381), - [aux_sym__list_dash_repeat1] = STATE(464), - [aux_sym__list_plus_repeat1] = STATE(442), - [aux_sym__list_star_repeat1] = STATE(443), - [aux_sym__list_task_repeat1] = STATE(428), - [aux_sym__list_definition_repeat1] = STATE(589), - [aux_sym__list_decimal_period_repeat1] = STATE(590), - [aux_sym__list_decimal_paren_repeat1] = STATE(679), - [aux_sym__list_decimal_parens_repeat1] = STATE(591), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(592), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(593), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(594), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(595), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(596), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(597), - [aux_sym__list_lower_roman_period_repeat1] = STATE(598), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(599), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(600), - [aux_sym__list_upper_roman_period_repeat1] = STATE(601), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(602), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(603), - [aux_sym_table_repeat1] = STATE(391), - [aux_sym__block_quote_prefix_repeat1] = STATE(330), - [aux_sym__inline_repeat1] = STATE(381), - [anon_sym_LBRACK] = ACTIONS(477), - [anon_sym_PIPE] = ACTIONS(479), + [62] = { + [sym__block_element] = STATE(449), + [sym_heading] = STATE(449), + [sym_list] = STATE(449), + [sym__list_dash] = STATE(853), + [sym__list_item_dash] = STATE(636), + [sym__list_plus] = STATE(853), + [sym__list_item_plus] = STATE(637), + [sym__list_star] = STATE(853), + [sym__list_item_star] = STATE(671), + [sym__list_task] = STATE(853), + [sym__list_item_task] = STATE(691), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(853), + [sym__list_item_definition] = STATE(896), + [sym__list_decimal_period] = STATE(853), + [sym__list_item_decimal_period] = STATE(841), + [sym__list_decimal_paren] = STATE(853), + [sym__list_item_decimal_paren] = STATE(796), + [sym__list_decimal_parens] = STATE(853), + [sym__list_item_decimal_parens] = STATE(716), + [sym__list_lower_alpha_period] = STATE(853), + [sym__list_item_lower_alpha_period] = STATE(722), + [sym__list_lower_alpha_paren] = STATE(853), + [sym__list_item_lower_alpha_paren] = STATE(801), + [sym__list_lower_alpha_parens] = STATE(853), + [sym__list_item_lower_alpha_parens] = STATE(813), + [sym__list_upper_alpha_period] = STATE(853), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(853), + [sym__list_item_upper_alpha_paren] = STATE(706), + [sym__list_upper_alpha_parens] = STATE(853), + [sym__list_item_upper_alpha_parens] = STATE(707), + [sym__list_lower_roman_period] = STATE(853), + [sym__list_item_lower_roman_period] = STATE(725), + [sym__list_lower_roman_paren] = STATE(853), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(853), + [sym__list_item_lower_roman_parens] = STATE(736), + [sym__list_upper_roman_period] = STATE(853), + [sym__list_item_upper_roman_period] = STATE(742), + [sym__list_upper_roman_paren] = STATE(853), + [sym__list_item_upper_roman_paren] = STATE(743), + [sym__list_upper_roman_parens] = STATE(853), + [sym__list_item_upper_roman_parens] = STATE(762), + [sym_table] = STATE(449), + [sym__table_content] = STATE(311), + [sym_table_separator] = STATE(311), + [sym_table_row] = STATE(347), + [sym_footnote] = STATE(449), + [sym_footnote_marker_begin] = STATE(1178), + [sym_div] = STATE(449), + [sym__div_marker_begin] = STATE(1050), + [sym_code_block] = STATE(449), + [sym_raw_block] = STATE(449), + [sym_thematic_break] = STATE(449), + [sym_block_quote] = STATE(449), + [sym__block_quote_content] = STATE(1087), + [sym__block_quote_prefix] = STATE(232), + [sym_link_reference_definition] = STATE(449), + [sym_block_attribute] = STATE(449), + [sym__paragraph] = STATE(449), + [sym__paragraph_content] = STATE(741), + [sym__paragraph_inline_content] = STATE(775), + [sym__inline] = STATE(616), + [sym__symbol_fallback] = STATE(297), + [aux_sym__list_dash_repeat1] = STATE(370), + [aux_sym__list_plus_repeat1] = STATE(354), + [aux_sym__list_star_repeat1] = STATE(360), + [aux_sym__list_task_repeat1] = STATE(340), + [aux_sym__list_definition_repeat1] = STATE(499), + [aux_sym__list_decimal_period_repeat1] = STATE(500), + [aux_sym__list_decimal_paren_repeat1] = STATE(501), + [aux_sym__list_decimal_parens_repeat1] = STATE(502), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(503), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(504), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(505), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(506), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(507), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(508), + [aux_sym__list_lower_roman_period_repeat1] = STATE(509), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(510), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(511), + [aux_sym__list_upper_roman_period_repeat1] = STATE(512), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(513), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(514), + [aux_sym_table_repeat1] = STATE(311), + [aux_sym__block_quote_prefix_repeat1] = STATE(253), + [aux_sym__inline_repeat1] = STATE(297), + [anon_sym_LBRACK] = ACTIONS(436), + [anon_sym_PIPE] = ACTIONS(438), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(440), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__heading_begin] = ACTIONS(483), + [sym__heading_begin] = ACTIONS(442), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(485), + [sym__code_block_begin] = ACTIONS(444), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -13184,113 +12802,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(487), + [sym__block_quote_begin] = ACTIONS(446), [sym__block_quote_continuation] = ACTIONS(67), - [sym__thematic_break_dash] = ACTIONS(489), - [sym__thematic_break_star] = ACTIONS(489), + [sym__thematic_break_dash] = ACTIONS(448), + [sym__thematic_break_star] = ACTIONS(448), }, - [64] = { - [sym__block_element] = STATE(533), - [sym_heading] = STATE(533), - [sym_list] = STATE(533), - [sym__list_dash] = STATE(914), - [sym__list_item_dash] = STATE(727), - [sym__list_plus] = STATE(914), - [sym__list_item_plus] = STATE(730), - [sym__list_star] = STATE(914), - [sym__list_item_star] = STATE(759), - [sym__list_task] = STATE(914), - [sym__list_item_task] = STATE(761), - [sym_list_marker_task] = STATE(46), - [sym__list_definition] = STATE(914), - [sym__list_item_definition] = STATE(819), - [sym__list_decimal_period] = STATE(914), - [sym__list_item_decimal_period] = STATE(852), - [sym__list_decimal_paren] = STATE(914), - [sym__list_item_decimal_paren] = STATE(837), - [sym__list_decimal_parens] = STATE(914), - [sym__list_item_decimal_parens] = STATE(815), - [sym__list_lower_alpha_period] = STATE(914), - [sym__list_item_lower_alpha_period] = STATE(843), - [sym__list_lower_alpha_paren] = STATE(914), - [sym__list_item_lower_alpha_paren] = STATE(850), - [sym__list_lower_alpha_parens] = STATE(914), - [sym__list_item_lower_alpha_parens] = STATE(853), - [sym__list_upper_alpha_period] = STATE(914), - [sym__list_item_upper_alpha_period] = STATE(854), - [sym__list_upper_alpha_paren] = STATE(914), - [sym__list_item_upper_alpha_paren] = STATE(855), - [sym__list_upper_alpha_parens] = STATE(914), - [sym__list_item_upper_alpha_parens] = STATE(856), - [sym__list_lower_roman_period] = STATE(914), - [sym__list_item_lower_roman_period] = STATE(857), - [sym__list_lower_roman_paren] = STATE(914), - [sym__list_item_lower_roman_paren] = STATE(871), - [sym__list_lower_roman_parens] = STATE(914), - [sym__list_item_lower_roman_parens] = STATE(874), - [sym__list_upper_roman_period] = STATE(914), - [sym__list_item_upper_roman_period] = STATE(876), - [sym__list_upper_roman_paren] = STATE(914), - [sym__list_item_upper_roman_paren] = STATE(878), - [sym__list_upper_roman_parens] = STATE(914), - [sym__list_item_upper_roman_parens] = STATE(880), - [sym_table] = STATE(533), - [sym__table_content] = STATE(391), - [sym_table_separator] = STATE(391), - [sym_table_row] = STATE(433), - [sym_footnote] = STATE(533), - [sym_footnote_marker_begin] = STATE(1300), - [sym_div] = STATE(533), - [sym__div_marker_begin] = STATE(1142), - [sym_code_block] = STATE(533), - [sym_raw_block] = STATE(533), - [sym_thematic_break] = STATE(533), - [sym_block_quote] = STATE(533), - [sym__block_quote_content] = STATE(1132), - [sym__block_quote_prefix] = STATE(303), - [sym_link_reference_definition] = STATE(533), - [sym_block_attribute] = STATE(533), - [sym__paragraph] = STATE(533), - [sym__paragraph_content] = STATE(829), - [sym__paragraph_inline_content] = STATE(896), - [sym__inline] = STATE(715), - [sym__symbol_fallback] = STATE(381), - [aux_sym__list_dash_repeat1] = STATE(464), - [aux_sym__list_plus_repeat1] = STATE(442), - [aux_sym__list_star_repeat1] = STATE(443), - [aux_sym__list_task_repeat1] = STATE(428), - [aux_sym__list_definition_repeat1] = STATE(589), - [aux_sym__list_decimal_period_repeat1] = STATE(590), - [aux_sym__list_decimal_paren_repeat1] = STATE(679), - [aux_sym__list_decimal_parens_repeat1] = STATE(591), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(592), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(593), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(594), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(595), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(596), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(597), - [aux_sym__list_lower_roman_period_repeat1] = STATE(598), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(599), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(600), - [aux_sym__list_upper_roman_period_repeat1] = STATE(601), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(602), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(603), - [aux_sym_table_repeat1] = STATE(391), - [aux_sym__block_quote_prefix_repeat1] = STATE(330), - [aux_sym__inline_repeat1] = STATE(381), - [anon_sym_LBRACK] = ACTIONS(477), - [anon_sym_PIPE] = ACTIONS(479), + [63] = { + [sym__block_element] = STATE(449), + [sym_heading] = STATE(449), + [sym_list] = STATE(449), + [sym__list_dash] = STATE(853), + [sym__list_item_dash] = STATE(636), + [sym__list_plus] = STATE(853), + [sym__list_item_plus] = STATE(637), + [sym__list_star] = STATE(853), + [sym__list_item_star] = STATE(671), + [sym__list_task] = STATE(853), + [sym__list_item_task] = STATE(691), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(853), + [sym__list_item_definition] = STATE(896), + [sym__list_decimal_period] = STATE(853), + [sym__list_item_decimal_period] = STATE(841), + [sym__list_decimal_paren] = STATE(853), + [sym__list_item_decimal_paren] = STATE(796), + [sym__list_decimal_parens] = STATE(853), + [sym__list_item_decimal_parens] = STATE(716), + [sym__list_lower_alpha_period] = STATE(853), + [sym__list_item_lower_alpha_period] = STATE(722), + [sym__list_lower_alpha_paren] = STATE(853), + [sym__list_item_lower_alpha_paren] = STATE(801), + [sym__list_lower_alpha_parens] = STATE(853), + [sym__list_item_lower_alpha_parens] = STATE(813), + [sym__list_upper_alpha_period] = STATE(853), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(853), + [sym__list_item_upper_alpha_paren] = STATE(706), + [sym__list_upper_alpha_parens] = STATE(853), + [sym__list_item_upper_alpha_parens] = STATE(707), + [sym__list_lower_roman_period] = STATE(853), + [sym__list_item_lower_roman_period] = STATE(725), + [sym__list_lower_roman_paren] = STATE(853), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(853), + [sym__list_item_lower_roman_parens] = STATE(736), + [sym__list_upper_roman_period] = STATE(853), + [sym__list_item_upper_roman_period] = STATE(742), + [sym__list_upper_roman_paren] = STATE(853), + [sym__list_item_upper_roman_paren] = STATE(743), + [sym__list_upper_roman_parens] = STATE(853), + [sym__list_item_upper_roman_parens] = STATE(762), + [sym_table] = STATE(449), + [sym__table_content] = STATE(311), + [sym_table_separator] = STATE(311), + [sym_table_row] = STATE(347), + [sym_footnote] = STATE(449), + [sym_footnote_marker_begin] = STATE(1178), + [sym_div] = STATE(449), + [sym__div_marker_begin] = STATE(1050), + [sym_code_block] = STATE(449), + [sym_raw_block] = STATE(449), + [sym_thematic_break] = STATE(449), + [sym_block_quote] = STATE(449), + [sym__block_quote_content] = STATE(997), + [sym__block_quote_prefix] = STATE(232), + [sym_link_reference_definition] = STATE(449), + [sym_block_attribute] = STATE(449), + [sym__paragraph] = STATE(449), + [sym__paragraph_content] = STATE(741), + [sym__paragraph_inline_content] = STATE(775), + [sym__inline] = STATE(616), + [sym__symbol_fallback] = STATE(297), + [aux_sym__list_dash_repeat1] = STATE(370), + [aux_sym__list_plus_repeat1] = STATE(354), + [aux_sym__list_star_repeat1] = STATE(360), + [aux_sym__list_task_repeat1] = STATE(340), + [aux_sym__list_definition_repeat1] = STATE(499), + [aux_sym__list_decimal_period_repeat1] = STATE(500), + [aux_sym__list_decimal_paren_repeat1] = STATE(501), + [aux_sym__list_decimal_parens_repeat1] = STATE(502), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(503), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(504), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(505), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(506), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(507), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(508), + [aux_sym__list_lower_roman_period_repeat1] = STATE(509), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(510), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(511), + [aux_sym__list_upper_roman_period_repeat1] = STATE(512), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(513), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(514), + [aux_sym_table_repeat1] = STATE(311), + [aux_sym__block_quote_prefix_repeat1] = STATE(253), + [aux_sym__inline_repeat1] = STATE(297), + [anon_sym_LBRACK] = ACTIONS(436), + [anon_sym_PIPE] = ACTIONS(438), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(440), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__heading_begin] = ACTIONS(483), + [sym__heading_begin] = ACTIONS(442), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(485), + [sym__code_block_begin] = ACTIONS(444), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -13311,113 +12929,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(487), + [sym__block_quote_begin] = ACTIONS(446), [sym__block_quote_continuation] = ACTIONS(67), - [sym__thematic_break_dash] = ACTIONS(489), - [sym__thematic_break_star] = ACTIONS(489), + [sym__thematic_break_dash] = ACTIONS(448), + [sym__thematic_break_star] = ACTIONS(448), }, - [65] = { - [sym__block_element] = STATE(533), - [sym_heading] = STATE(533), - [sym_list] = STATE(533), - [sym__list_dash] = STATE(914), - [sym__list_item_dash] = STATE(727), - [sym__list_plus] = STATE(914), - [sym__list_item_plus] = STATE(730), - [sym__list_star] = STATE(914), - [sym__list_item_star] = STATE(759), - [sym__list_task] = STATE(914), - [sym__list_item_task] = STATE(761), - [sym_list_marker_task] = STATE(46), - [sym__list_definition] = STATE(914), - [sym__list_item_definition] = STATE(819), - [sym__list_decimal_period] = STATE(914), - [sym__list_item_decimal_period] = STATE(852), - [sym__list_decimal_paren] = STATE(914), - [sym__list_item_decimal_paren] = STATE(837), - [sym__list_decimal_parens] = STATE(914), - [sym__list_item_decimal_parens] = STATE(815), - [sym__list_lower_alpha_period] = STATE(914), - [sym__list_item_lower_alpha_period] = STATE(843), - [sym__list_lower_alpha_paren] = STATE(914), - [sym__list_item_lower_alpha_paren] = STATE(850), - [sym__list_lower_alpha_parens] = STATE(914), - [sym__list_item_lower_alpha_parens] = STATE(853), - [sym__list_upper_alpha_period] = STATE(914), - [sym__list_item_upper_alpha_period] = STATE(854), - [sym__list_upper_alpha_paren] = STATE(914), - [sym__list_item_upper_alpha_paren] = STATE(855), - [sym__list_upper_alpha_parens] = STATE(914), - [sym__list_item_upper_alpha_parens] = STATE(856), - [sym__list_lower_roman_period] = STATE(914), - [sym__list_item_lower_roman_period] = STATE(857), - [sym__list_lower_roman_paren] = STATE(914), - [sym__list_item_lower_roman_paren] = STATE(871), - [sym__list_lower_roman_parens] = STATE(914), - [sym__list_item_lower_roman_parens] = STATE(874), - [sym__list_upper_roman_period] = STATE(914), - [sym__list_item_upper_roman_period] = STATE(876), - [sym__list_upper_roman_paren] = STATE(914), - [sym__list_item_upper_roman_paren] = STATE(878), - [sym__list_upper_roman_parens] = STATE(914), - [sym__list_item_upper_roman_parens] = STATE(880), - [sym_table] = STATE(533), - [sym__table_content] = STATE(391), - [sym_table_separator] = STATE(391), - [sym_table_row] = STATE(433), - [sym_footnote] = STATE(533), - [sym_footnote_marker_begin] = STATE(1300), - [sym_div] = STATE(533), - [sym__div_marker_begin] = STATE(1142), - [sym_code_block] = STATE(533), - [sym_raw_block] = STATE(533), - [sym_thematic_break] = STATE(533), - [sym_block_quote] = STATE(533), - [sym__block_quote_content] = STATE(1147), - [sym__block_quote_prefix] = STATE(303), - [sym_link_reference_definition] = STATE(533), - [sym_block_attribute] = STATE(533), - [sym__paragraph] = STATE(533), - [sym__paragraph_content] = STATE(829), - [sym__paragraph_inline_content] = STATE(896), - [sym__inline] = STATE(715), - [sym__symbol_fallback] = STATE(381), - [aux_sym__list_dash_repeat1] = STATE(464), - [aux_sym__list_plus_repeat1] = STATE(442), - [aux_sym__list_star_repeat1] = STATE(443), - [aux_sym__list_task_repeat1] = STATE(428), - [aux_sym__list_definition_repeat1] = STATE(589), - [aux_sym__list_decimal_period_repeat1] = STATE(590), - [aux_sym__list_decimal_paren_repeat1] = STATE(679), - [aux_sym__list_decimal_parens_repeat1] = STATE(591), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(592), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(593), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(594), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(595), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(596), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(597), - [aux_sym__list_lower_roman_period_repeat1] = STATE(598), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(599), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(600), - [aux_sym__list_upper_roman_period_repeat1] = STATE(601), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(602), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(603), - [aux_sym_table_repeat1] = STATE(391), - [aux_sym__block_quote_prefix_repeat1] = STATE(330), - [aux_sym__inline_repeat1] = STATE(381), - [anon_sym_LBRACK] = ACTIONS(477), - [anon_sym_PIPE] = ACTIONS(479), + [64] = { + [sym__block_element] = STATE(449), + [sym_heading] = STATE(449), + [sym_list] = STATE(449), + [sym__list_dash] = STATE(853), + [sym__list_item_dash] = STATE(636), + [sym__list_plus] = STATE(853), + [sym__list_item_plus] = STATE(637), + [sym__list_star] = STATE(853), + [sym__list_item_star] = STATE(671), + [sym__list_task] = STATE(853), + [sym__list_item_task] = STATE(691), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(853), + [sym__list_item_definition] = STATE(896), + [sym__list_decimal_period] = STATE(853), + [sym__list_item_decimal_period] = STATE(841), + [sym__list_decimal_paren] = STATE(853), + [sym__list_item_decimal_paren] = STATE(796), + [sym__list_decimal_parens] = STATE(853), + [sym__list_item_decimal_parens] = STATE(716), + [sym__list_lower_alpha_period] = STATE(853), + [sym__list_item_lower_alpha_period] = STATE(722), + [sym__list_lower_alpha_paren] = STATE(853), + [sym__list_item_lower_alpha_paren] = STATE(801), + [sym__list_lower_alpha_parens] = STATE(853), + [sym__list_item_lower_alpha_parens] = STATE(813), + [sym__list_upper_alpha_period] = STATE(853), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(853), + [sym__list_item_upper_alpha_paren] = STATE(706), + [sym__list_upper_alpha_parens] = STATE(853), + [sym__list_item_upper_alpha_parens] = STATE(707), + [sym__list_lower_roman_period] = STATE(853), + [sym__list_item_lower_roman_period] = STATE(725), + [sym__list_lower_roman_paren] = STATE(853), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(853), + [sym__list_item_lower_roman_parens] = STATE(736), + [sym__list_upper_roman_period] = STATE(853), + [sym__list_item_upper_roman_period] = STATE(742), + [sym__list_upper_roman_paren] = STATE(853), + [sym__list_item_upper_roman_paren] = STATE(743), + [sym__list_upper_roman_parens] = STATE(853), + [sym__list_item_upper_roman_parens] = STATE(762), + [sym_table] = STATE(449), + [sym__table_content] = STATE(311), + [sym_table_separator] = STATE(311), + [sym_table_row] = STATE(347), + [sym_footnote] = STATE(449), + [sym_footnote_marker_begin] = STATE(1178), + [sym_div] = STATE(449), + [sym__div_marker_begin] = STATE(1050), + [sym_code_block] = STATE(449), + [sym_raw_block] = STATE(449), + [sym_thematic_break] = STATE(449), + [sym_block_quote] = STATE(449), + [sym__block_quote_content] = STATE(1112), + [sym__block_quote_prefix] = STATE(232), + [sym_link_reference_definition] = STATE(449), + [sym_block_attribute] = STATE(449), + [sym__paragraph] = STATE(449), + [sym__paragraph_content] = STATE(741), + [sym__paragraph_inline_content] = STATE(775), + [sym__inline] = STATE(616), + [sym__symbol_fallback] = STATE(297), + [aux_sym__list_dash_repeat1] = STATE(370), + [aux_sym__list_plus_repeat1] = STATE(354), + [aux_sym__list_star_repeat1] = STATE(360), + [aux_sym__list_task_repeat1] = STATE(340), + [aux_sym__list_definition_repeat1] = STATE(499), + [aux_sym__list_decimal_period_repeat1] = STATE(500), + [aux_sym__list_decimal_paren_repeat1] = STATE(501), + [aux_sym__list_decimal_parens_repeat1] = STATE(502), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(503), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(504), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(505), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(506), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(507), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(508), + [aux_sym__list_lower_roman_period_repeat1] = STATE(509), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(510), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(511), + [aux_sym__list_upper_roman_period_repeat1] = STATE(512), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(513), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(514), + [aux_sym_table_repeat1] = STATE(311), + [aux_sym__block_quote_prefix_repeat1] = STATE(253), + [aux_sym__inline_repeat1] = STATE(297), + [anon_sym_LBRACK] = ACTIONS(436), + [anon_sym_PIPE] = ACTIONS(438), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(440), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__heading_begin] = ACTIONS(483), + [sym__heading_begin] = ACTIONS(442), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(485), + [sym__code_block_begin] = ACTIONS(444), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -13438,240 +13056,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(487), + [sym__block_quote_begin] = ACTIONS(446), [sym__block_quote_continuation] = ACTIONS(67), - [sym__thematic_break_dash] = ACTIONS(489), - [sym__thematic_break_star] = ACTIONS(489), - }, - [66] = { - [sym__block_element] = STATE(771), - [sym_heading] = STATE(771), - [sym_list] = STATE(771), - [sym__list_dash] = STATE(732), - [sym__list_item_dash] = STATE(727), - [sym__list_plus] = STATE(732), - [sym__list_item_plus] = STATE(730), - [sym__list_star] = STATE(732), - [sym__list_item_star] = STATE(759), - [sym__list_task] = STATE(732), - [sym__list_item_task] = STATE(761), - [sym_list_marker_task] = STATE(46), - [sym__list_definition] = STATE(732), - [sym__list_item_definition] = STATE(819), - [sym__list_decimal_period] = STATE(732), - [sym__list_item_decimal_period] = STATE(852), - [sym__list_decimal_paren] = STATE(732), - [sym__list_item_decimal_paren] = STATE(837), - [sym__list_decimal_parens] = STATE(732), - [sym__list_item_decimal_parens] = STATE(815), - [sym__list_lower_alpha_period] = STATE(732), - [sym__list_item_lower_alpha_period] = STATE(843), - [sym__list_lower_alpha_paren] = STATE(732), - [sym__list_item_lower_alpha_paren] = STATE(850), - [sym__list_lower_alpha_parens] = STATE(732), - [sym__list_item_lower_alpha_parens] = STATE(853), - [sym__list_upper_alpha_period] = STATE(732), - [sym__list_item_upper_alpha_period] = STATE(854), - [sym__list_upper_alpha_paren] = STATE(732), - [sym__list_item_upper_alpha_paren] = STATE(855), - [sym__list_upper_alpha_parens] = STATE(732), - [sym__list_item_upper_alpha_parens] = STATE(856), - [sym__list_lower_roman_period] = STATE(732), - [sym__list_item_lower_roman_period] = STATE(857), - [sym__list_lower_roman_paren] = STATE(732), - [sym__list_item_lower_roman_paren] = STATE(871), - [sym__list_lower_roman_parens] = STATE(732), - [sym__list_item_lower_roman_parens] = STATE(874), - [sym__list_upper_roman_period] = STATE(732), - [sym__list_item_upper_roman_period] = STATE(876), - [sym__list_upper_roman_paren] = STATE(732), - [sym__list_item_upper_roman_paren] = STATE(878), - [sym__list_upper_roman_parens] = STATE(732), - [sym__list_item_upper_roman_parens] = STATE(880), - [sym_table] = STATE(771), - [sym__table_content] = STATE(386), - [sym_table_separator] = STATE(386), - [sym_table_row] = STATE(414), - [sym_footnote] = STATE(771), - [sym_footnote_marker_begin] = STATE(1304), - [sym_div] = STATE(771), - [sym__div_marker_begin] = STATE(1188), - [sym_code_block] = STATE(771), - [sym_raw_block] = STATE(771), - [sym_thematic_break] = STATE(771), - [sym_block_quote] = STATE(771), - [sym__block_quote_prefix] = STATE(305), - [sym_link_reference_definition] = STATE(771), - [sym_block_attribute] = STATE(771), - [sym__paragraph] = STATE(771), - [sym__paragraph_content] = STATE(868), - [sym__paragraph_inline_content] = STATE(896), - [sym__inline] = STATE(715), - [sym__symbol_fallback] = STATE(381), - [aux_sym__list_dash_repeat1] = STATE(449), - [aux_sym__list_plus_repeat1] = STATE(452), - [aux_sym__list_star_repeat1] = STATE(460), - [aux_sym__list_task_repeat1] = STATE(418), - [aux_sym__list_definition_repeat1] = STATE(632), - [aux_sym__list_decimal_period_repeat1] = STATE(633), - [aux_sym__list_decimal_paren_repeat1] = STATE(634), - [aux_sym__list_decimal_parens_repeat1] = STATE(635), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(636), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(637), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(638), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(639), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(640), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(641), - [aux_sym__list_lower_roman_period_repeat1] = STATE(642), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(643), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(644), - [aux_sym__list_upper_roman_period_repeat1] = STATE(645), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(646), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(647), - [aux_sym_table_repeat1] = STATE(386), - [aux_sym__block_quote_prefix_repeat1] = STATE(330), - [aux_sym__inline_repeat1] = STATE(381), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(443), - [anon_sym_LBRACK_CARET] = ACTIONS(443), - [anon_sym_LBRACE] = ACTIONS(443), - [anon_sym_DOT] = ACTIONS(443), - [aux_sym_identifier_token1] = ACTIONS(443), - [aux_sym__inline_token1] = ACTIONS(443), - [anon_sym_LBRACE_DASH] = ACTIONS(443), - [anon_sym_POUND] = ACTIONS(443), - [anon_sym_PERCENT] = ACTIONS(443), - [sym__newline] = ACTIONS(491), - [sym__heading_begin] = ACTIONS(461), - [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(463), - [sym_list_marker_dash] = ACTIONS(445), - [sym_list_marker_star] = ACTIONS(445), - [sym_list_marker_plus] = ACTIONS(445), - [sym__list_marker_task_begin] = ACTIONS(445), - [sym_list_marker_definition] = ACTIONS(33), - [sym_list_marker_decimal_period] = ACTIONS(35), - [sym_list_marker_lower_alpha_period] = ACTIONS(37), - [sym_list_marker_upper_alpha_period] = ACTIONS(39), - [sym_list_marker_lower_roman_period] = ACTIONS(41), - [sym_list_marker_upper_roman_period] = ACTIONS(43), - [sym_list_marker_decimal_paren] = ACTIONS(45), - [sym_list_marker_lower_alpha_paren] = ACTIONS(47), - [sym_list_marker_upper_alpha_paren] = ACTIONS(49), - [sym_list_marker_lower_roman_paren] = ACTIONS(51), - [sym_list_marker_upper_roman_paren] = ACTIONS(53), - [sym_list_marker_decimal_parens] = ACTIONS(55), - [sym_list_marker_lower_alpha_parens] = ACTIONS(57), - [sym_list_marker_upper_alpha_parens] = ACTIONS(59), - [sym_list_marker_lower_roman_parens] = ACTIONS(61), - [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(465), - [sym__block_quote_continuation] = ACTIONS(445), - [sym__thematic_break_dash] = ACTIONS(469), - [sym__thematic_break_star] = ACTIONS(469), + [sym__thematic_break_dash] = ACTIONS(448), + [sym__thematic_break_star] = ACTIONS(448), }, - [67] = { - [sym__block_element] = STATE(533), - [sym_heading] = STATE(533), - [sym_list] = STATE(533), - [sym__list_dash] = STATE(914), - [sym__list_item_dash] = STATE(727), - [sym__list_plus] = STATE(914), - [sym__list_item_plus] = STATE(730), - [sym__list_star] = STATE(914), - [sym__list_item_star] = STATE(759), - [sym__list_task] = STATE(914), - [sym__list_item_task] = STATE(761), - [sym_list_marker_task] = STATE(46), - [sym__list_definition] = STATE(914), - [sym__list_item_definition] = STATE(819), - [sym__list_decimal_period] = STATE(914), - [sym__list_item_decimal_period] = STATE(852), - [sym__list_decimal_paren] = STATE(914), - [sym__list_item_decimal_paren] = STATE(837), - [sym__list_decimal_parens] = STATE(914), - [sym__list_item_decimal_parens] = STATE(815), - [sym__list_lower_alpha_period] = STATE(914), - [sym__list_item_lower_alpha_period] = STATE(843), - [sym__list_lower_alpha_paren] = STATE(914), - [sym__list_item_lower_alpha_paren] = STATE(850), - [sym__list_lower_alpha_parens] = STATE(914), - [sym__list_item_lower_alpha_parens] = STATE(853), - [sym__list_upper_alpha_period] = STATE(914), - [sym__list_item_upper_alpha_period] = STATE(854), - [sym__list_upper_alpha_paren] = STATE(914), - [sym__list_item_upper_alpha_paren] = STATE(855), - [sym__list_upper_alpha_parens] = STATE(914), - [sym__list_item_upper_alpha_parens] = STATE(856), - [sym__list_lower_roman_period] = STATE(914), - [sym__list_item_lower_roman_period] = STATE(857), - [sym__list_lower_roman_paren] = STATE(914), - [sym__list_item_lower_roman_paren] = STATE(871), - [sym__list_lower_roman_parens] = STATE(914), - [sym__list_item_lower_roman_parens] = STATE(874), - [sym__list_upper_roman_period] = STATE(914), - [sym__list_item_upper_roman_period] = STATE(876), - [sym__list_upper_roman_paren] = STATE(914), - [sym__list_item_upper_roman_paren] = STATE(878), - [sym__list_upper_roman_parens] = STATE(914), - [sym__list_item_upper_roman_parens] = STATE(880), - [sym_table] = STATE(533), - [sym__table_content] = STATE(391), - [sym_table_separator] = STATE(391), - [sym_table_row] = STATE(433), - [sym_footnote] = STATE(533), - [sym_footnote_marker_begin] = STATE(1300), - [sym_div] = STATE(533), - [sym__div_marker_begin] = STATE(1142), - [sym_code_block] = STATE(533), - [sym_raw_block] = STATE(533), - [sym_thematic_break] = STATE(533), - [sym_block_quote] = STATE(533), - [sym__block_quote_content] = STATE(1252), - [sym__block_quote_prefix] = STATE(303), - [sym_link_reference_definition] = STATE(533), - [sym_block_attribute] = STATE(533), - [sym__paragraph] = STATE(533), - [sym__paragraph_content] = STATE(829), - [sym__paragraph_inline_content] = STATE(896), - [sym__inline] = STATE(715), - [sym__symbol_fallback] = STATE(381), - [aux_sym__list_dash_repeat1] = STATE(464), - [aux_sym__list_plus_repeat1] = STATE(442), - [aux_sym__list_star_repeat1] = STATE(443), - [aux_sym__list_task_repeat1] = STATE(428), - [aux_sym__list_definition_repeat1] = STATE(589), - [aux_sym__list_decimal_period_repeat1] = STATE(590), - [aux_sym__list_decimal_paren_repeat1] = STATE(679), - [aux_sym__list_decimal_parens_repeat1] = STATE(591), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(592), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(593), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(594), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(595), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(596), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(597), - [aux_sym__list_lower_roman_period_repeat1] = STATE(598), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(599), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(600), - [aux_sym__list_upper_roman_period_repeat1] = STATE(601), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(602), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(603), - [aux_sym_table_repeat1] = STATE(391), - [aux_sym__block_quote_prefix_repeat1] = STATE(330), - [aux_sym__inline_repeat1] = STATE(381), - [anon_sym_LBRACK] = ACTIONS(477), - [anon_sym_PIPE] = ACTIONS(479), + [65] = { + [sym__block_element] = STATE(737), + [sym_list] = STATE(737), + [sym__list_dash] = STATE(853), + [sym__list_item_dash] = STATE(636), + [sym__list_plus] = STATE(853), + [sym__list_item_plus] = STATE(637), + [sym__list_star] = STATE(853), + [sym__list_item_star] = STATE(671), + [sym__list_task] = STATE(853), + [sym__list_item_task] = STATE(691), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(853), + [sym__list_item_definition] = STATE(896), + [sym__list_decimal_period] = STATE(853), + [sym__list_item_decimal_period] = STATE(841), + [sym__list_decimal_paren] = STATE(853), + [sym__list_item_decimal_paren] = STATE(796), + [sym__list_decimal_parens] = STATE(853), + [sym__list_item_decimal_parens] = STATE(716), + [sym__list_lower_alpha_period] = STATE(853), + [sym__list_item_lower_alpha_period] = STATE(722), + [sym__list_lower_alpha_paren] = STATE(853), + [sym__list_item_lower_alpha_paren] = STATE(801), + [sym__list_lower_alpha_parens] = STATE(853), + [sym__list_item_lower_alpha_parens] = STATE(813), + [sym__list_upper_alpha_period] = STATE(853), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(853), + [sym__list_item_upper_alpha_paren] = STATE(706), + [sym__list_upper_alpha_parens] = STATE(853), + [sym__list_item_upper_alpha_parens] = STATE(707), + [sym__list_lower_roman_period] = STATE(853), + [sym__list_item_lower_roman_period] = STATE(725), + [sym__list_lower_roman_paren] = STATE(853), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(853), + [sym__list_item_lower_roman_parens] = STATE(736), + [sym__list_upper_roman_period] = STATE(853), + [sym__list_item_upper_roman_period] = STATE(742), + [sym__list_upper_roman_paren] = STATE(853), + [sym__list_item_upper_roman_paren] = STATE(743), + [sym__list_upper_roman_parens] = STATE(853), + [sym__list_item_upper_roman_parens] = STATE(762), + [sym_table] = STATE(737), + [sym__table_content] = STATE(311), + [sym_table_separator] = STATE(311), + [sym_table_row] = STATE(347), + [sym_footnote] = STATE(737), + [sym_footnote_marker_begin] = STATE(1178), + [sym_div] = STATE(737), + [sym__div_marker_begin] = STATE(1050), + [sym_code_block] = STATE(737), + [sym_raw_block] = STATE(737), + [sym_thematic_break] = STATE(737), + [sym_block_quote] = STATE(737), + [sym__block_quote_prefix] = STATE(232), + [sym_link_reference_definition] = STATE(737), + [sym_block_attribute] = STATE(737), + [sym__paragraph] = STATE(737), + [sym__paragraph_content] = STATE(741), + [sym__paragraph_inline_content] = STATE(775), + [sym__inline] = STATE(616), + [sym__symbol_fallback] = STATE(297), + [aux_sym__list_dash_repeat1] = STATE(370), + [aux_sym__list_plus_repeat1] = STATE(354), + [aux_sym__list_star_repeat1] = STATE(360), + [aux_sym__list_task_repeat1] = STATE(340), + [aux_sym__list_definition_repeat1] = STATE(499), + [aux_sym__list_decimal_period_repeat1] = STATE(500), + [aux_sym__list_decimal_paren_repeat1] = STATE(501), + [aux_sym__list_decimal_parens_repeat1] = STATE(502), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(503), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(504), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(505), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(506), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(507), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(508), + [aux_sym__list_lower_roman_period_repeat1] = STATE(509), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(510), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(511), + [aux_sym__list_upper_roman_period_repeat1] = STATE(512), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(513), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(514), + [aux_sym_table_repeat1] = STATE(311), + [aux_sym__block_quote_prefix_repeat1] = STATE(253), + [aux_sym__inline_repeat1] = STATE(297), + [anon_sym_LBRACK] = ACTIONS(436), + [anon_sym_PIPE] = ACTIONS(438), [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(440), [anon_sym_DOT] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(13), [aux_sym__inline_token1] = ACTIONS(13), [anon_sym_LBRACE_DASH] = ACTIONS(13), [anon_sym_POUND] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(13), - [sym__heading_begin] = ACTIONS(483), + [sym__block_close] = ACTIONS(454), [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(485), + [sym__code_block_begin] = ACTIONS(444), [sym_list_marker_dash] = ACTIONS(25), [sym_list_marker_star] = ACTIONS(27), [sym_list_marker_plus] = ACTIONS(29), @@ -13692,415 +13181,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(59), [sym_list_marker_lower_roman_parens] = ACTIONS(61), [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(487), - [sym__block_quote_continuation] = ACTIONS(67), - [sym__thematic_break_dash] = ACTIONS(489), - [sym__thematic_break_star] = ACTIONS(489), - }, - [68] = { - [sym__block_element] = STATE(533), - [sym_heading] = STATE(533), - [sym_list] = STATE(533), - [sym__list_dash] = STATE(914), - [sym__list_item_dash] = STATE(727), - [sym__list_plus] = STATE(914), - [sym__list_item_plus] = STATE(730), - [sym__list_star] = STATE(914), - [sym__list_item_star] = STATE(759), - [sym__list_task] = STATE(914), - [sym__list_item_task] = STATE(761), - [sym_list_marker_task] = STATE(46), - [sym__list_definition] = STATE(914), - [sym__list_item_definition] = STATE(819), - [sym__list_decimal_period] = STATE(914), - [sym__list_item_decimal_period] = STATE(852), - [sym__list_decimal_paren] = STATE(914), - [sym__list_item_decimal_paren] = STATE(837), - [sym__list_decimal_parens] = STATE(914), - [sym__list_item_decimal_parens] = STATE(815), - [sym__list_lower_alpha_period] = STATE(914), - [sym__list_item_lower_alpha_period] = STATE(843), - [sym__list_lower_alpha_paren] = STATE(914), - [sym__list_item_lower_alpha_paren] = STATE(850), - [sym__list_lower_alpha_parens] = STATE(914), - [sym__list_item_lower_alpha_parens] = STATE(853), - [sym__list_upper_alpha_period] = STATE(914), - [sym__list_item_upper_alpha_period] = STATE(854), - [sym__list_upper_alpha_paren] = STATE(914), - [sym__list_item_upper_alpha_paren] = STATE(855), - [sym__list_upper_alpha_parens] = STATE(914), - [sym__list_item_upper_alpha_parens] = STATE(856), - [sym__list_lower_roman_period] = STATE(914), - [sym__list_item_lower_roman_period] = STATE(857), - [sym__list_lower_roman_paren] = STATE(914), - [sym__list_item_lower_roman_paren] = STATE(871), - [sym__list_lower_roman_parens] = STATE(914), - [sym__list_item_lower_roman_parens] = STATE(874), - [sym__list_upper_roman_period] = STATE(914), - [sym__list_item_upper_roman_period] = STATE(876), - [sym__list_upper_roman_paren] = STATE(914), - [sym__list_item_upper_roman_paren] = STATE(878), - [sym__list_upper_roman_parens] = STATE(914), - [sym__list_item_upper_roman_parens] = STATE(880), - [sym_table] = STATE(533), - [sym__table_content] = STATE(391), - [sym_table_separator] = STATE(391), - [sym_table_row] = STATE(433), - [sym_footnote] = STATE(533), - [sym_footnote_marker_begin] = STATE(1300), - [sym_div] = STATE(533), - [sym__div_marker_begin] = STATE(1142), - [sym_code_block] = STATE(533), - [sym_raw_block] = STATE(533), - [sym_thematic_break] = STATE(533), - [sym_block_quote] = STATE(533), - [sym__block_quote_content] = STATE(1272), - [sym__block_quote_prefix] = STATE(303), - [sym_link_reference_definition] = STATE(533), - [sym_block_attribute] = STATE(533), - [sym__paragraph] = STATE(533), - [sym__paragraph_content] = STATE(829), - [sym__paragraph_inline_content] = STATE(896), - [sym__inline] = STATE(715), - [sym__symbol_fallback] = STATE(381), - [aux_sym__list_dash_repeat1] = STATE(464), - [aux_sym__list_plus_repeat1] = STATE(442), - [aux_sym__list_star_repeat1] = STATE(443), - [aux_sym__list_task_repeat1] = STATE(428), - [aux_sym__list_definition_repeat1] = STATE(589), - [aux_sym__list_decimal_period_repeat1] = STATE(590), - [aux_sym__list_decimal_paren_repeat1] = STATE(679), - [aux_sym__list_decimal_parens_repeat1] = STATE(591), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(592), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(593), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(594), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(595), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(596), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(597), - [aux_sym__list_lower_roman_period_repeat1] = STATE(598), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(599), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(600), - [aux_sym__list_upper_roman_period_repeat1] = STATE(601), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(602), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(603), - [aux_sym_table_repeat1] = STATE(391), - [aux_sym__block_quote_prefix_repeat1] = STATE(330), - [aux_sym__inline_repeat1] = STATE(381), - [anon_sym_LBRACK] = ACTIONS(477), - [anon_sym_PIPE] = ACTIONS(479), - [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(481), - [anon_sym_DOT] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(13), - [aux_sym__inline_token1] = ACTIONS(13), - [anon_sym_LBRACE_DASH] = ACTIONS(13), - [anon_sym_POUND] = ACTIONS(13), - [anon_sym_PERCENT] = ACTIONS(13), - [sym__heading_begin] = ACTIONS(483), - [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(485), - [sym_list_marker_dash] = ACTIONS(25), - [sym_list_marker_star] = ACTIONS(27), - [sym_list_marker_plus] = ACTIONS(29), - [sym__list_marker_task_begin] = ACTIONS(31), - [sym_list_marker_definition] = ACTIONS(33), - [sym_list_marker_decimal_period] = ACTIONS(35), - [sym_list_marker_lower_alpha_period] = ACTIONS(37), - [sym_list_marker_upper_alpha_period] = ACTIONS(39), - [sym_list_marker_lower_roman_period] = ACTIONS(41), - [sym_list_marker_upper_roman_period] = ACTIONS(43), - [sym_list_marker_decimal_paren] = ACTIONS(45), - [sym_list_marker_lower_alpha_paren] = ACTIONS(47), - [sym_list_marker_upper_alpha_paren] = ACTIONS(49), - [sym_list_marker_lower_roman_paren] = ACTIONS(51), - [sym_list_marker_upper_roman_paren] = ACTIONS(53), - [sym_list_marker_decimal_parens] = ACTIONS(55), - [sym_list_marker_lower_alpha_parens] = ACTIONS(57), - [sym_list_marker_upper_alpha_parens] = ACTIONS(59), - [sym_list_marker_lower_roman_parens] = ACTIONS(61), - [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(487), - [sym__block_quote_continuation] = ACTIONS(67), - [sym__thematic_break_dash] = ACTIONS(489), - [sym__thematic_break_star] = ACTIONS(489), - }, - [69] = { - [sym__block_element] = STATE(533), - [sym_heading] = STATE(533), - [sym_list] = STATE(533), - [sym__list_dash] = STATE(914), - [sym__list_item_dash] = STATE(727), - [sym__list_plus] = STATE(914), - [sym__list_item_plus] = STATE(730), - [sym__list_star] = STATE(914), - [sym__list_item_star] = STATE(759), - [sym__list_task] = STATE(914), - [sym__list_item_task] = STATE(761), - [sym_list_marker_task] = STATE(46), - [sym__list_definition] = STATE(914), - [sym__list_item_definition] = STATE(819), - [sym__list_decimal_period] = STATE(914), - [sym__list_item_decimal_period] = STATE(852), - [sym__list_decimal_paren] = STATE(914), - [sym__list_item_decimal_paren] = STATE(837), - [sym__list_decimal_parens] = STATE(914), - [sym__list_item_decimal_parens] = STATE(815), - [sym__list_lower_alpha_period] = STATE(914), - [sym__list_item_lower_alpha_period] = STATE(843), - [sym__list_lower_alpha_paren] = STATE(914), - [sym__list_item_lower_alpha_paren] = STATE(850), - [sym__list_lower_alpha_parens] = STATE(914), - [sym__list_item_lower_alpha_parens] = STATE(853), - [sym__list_upper_alpha_period] = STATE(914), - [sym__list_item_upper_alpha_period] = STATE(854), - [sym__list_upper_alpha_paren] = STATE(914), - [sym__list_item_upper_alpha_paren] = STATE(855), - [sym__list_upper_alpha_parens] = STATE(914), - [sym__list_item_upper_alpha_parens] = STATE(856), - [sym__list_lower_roman_period] = STATE(914), - [sym__list_item_lower_roman_period] = STATE(857), - [sym__list_lower_roman_paren] = STATE(914), - [sym__list_item_lower_roman_paren] = STATE(871), - [sym__list_lower_roman_parens] = STATE(914), - [sym__list_item_lower_roman_parens] = STATE(874), - [sym__list_upper_roman_period] = STATE(914), - [sym__list_item_upper_roman_period] = STATE(876), - [sym__list_upper_roman_paren] = STATE(914), - [sym__list_item_upper_roman_paren] = STATE(878), - [sym__list_upper_roman_parens] = STATE(914), - [sym__list_item_upper_roman_parens] = STATE(880), - [sym_table] = STATE(533), - [sym__table_content] = STATE(391), - [sym_table_separator] = STATE(391), - [sym_table_row] = STATE(433), - [sym_footnote] = STATE(533), - [sym_footnote_marker_begin] = STATE(1300), - [sym_div] = STATE(533), - [sym__div_marker_begin] = STATE(1142), - [sym_code_block] = STATE(533), - [sym_raw_block] = STATE(533), - [sym_thematic_break] = STATE(533), - [sym_block_quote] = STATE(533), - [sym__block_quote_content] = STATE(1056), - [sym__block_quote_prefix] = STATE(303), - [sym_link_reference_definition] = STATE(533), - [sym_block_attribute] = STATE(533), - [sym__paragraph] = STATE(533), - [sym__paragraph_content] = STATE(829), - [sym__paragraph_inline_content] = STATE(896), - [sym__inline] = STATE(715), - [sym__symbol_fallback] = STATE(381), - [aux_sym__list_dash_repeat1] = STATE(464), - [aux_sym__list_plus_repeat1] = STATE(442), - [aux_sym__list_star_repeat1] = STATE(443), - [aux_sym__list_task_repeat1] = STATE(428), - [aux_sym__list_definition_repeat1] = STATE(589), - [aux_sym__list_decimal_period_repeat1] = STATE(590), - [aux_sym__list_decimal_paren_repeat1] = STATE(679), - [aux_sym__list_decimal_parens_repeat1] = STATE(591), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(592), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(593), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(594), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(595), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(596), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(597), - [aux_sym__list_lower_roman_period_repeat1] = STATE(598), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(599), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(600), - [aux_sym__list_upper_roman_period_repeat1] = STATE(601), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(602), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(603), - [aux_sym_table_repeat1] = STATE(391), - [aux_sym__block_quote_prefix_repeat1] = STATE(330), - [aux_sym__inline_repeat1] = STATE(381), - [anon_sym_LBRACK] = ACTIONS(477), - [anon_sym_PIPE] = ACTIONS(479), - [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(481), - [anon_sym_DOT] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(13), - [aux_sym__inline_token1] = ACTIONS(13), - [anon_sym_LBRACE_DASH] = ACTIONS(13), - [anon_sym_POUND] = ACTIONS(13), - [anon_sym_PERCENT] = ACTIONS(13), - [sym__heading_begin] = ACTIONS(483), - [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(485), - [sym_list_marker_dash] = ACTIONS(25), - [sym_list_marker_star] = ACTIONS(27), - [sym_list_marker_plus] = ACTIONS(29), - [sym__list_marker_task_begin] = ACTIONS(31), - [sym_list_marker_definition] = ACTIONS(33), - [sym_list_marker_decimal_period] = ACTIONS(35), - [sym_list_marker_lower_alpha_period] = ACTIONS(37), - [sym_list_marker_upper_alpha_period] = ACTIONS(39), - [sym_list_marker_lower_roman_period] = ACTIONS(41), - [sym_list_marker_upper_roman_period] = ACTIONS(43), - [sym_list_marker_decimal_paren] = ACTIONS(45), - [sym_list_marker_lower_alpha_paren] = ACTIONS(47), - [sym_list_marker_upper_alpha_paren] = ACTIONS(49), - [sym_list_marker_lower_roman_paren] = ACTIONS(51), - [sym_list_marker_upper_roman_paren] = ACTIONS(53), - [sym_list_marker_decimal_parens] = ACTIONS(55), - [sym_list_marker_lower_alpha_parens] = ACTIONS(57), - [sym_list_marker_upper_alpha_parens] = ACTIONS(59), - [sym_list_marker_lower_roman_parens] = ACTIONS(61), - [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(487), - [sym__block_quote_continuation] = ACTIONS(67), - [sym__thematic_break_dash] = ACTIONS(489), - [sym__thematic_break_star] = ACTIONS(489), - }, - [70] = { - [sym__block_element] = STATE(810), - [sym_list] = STATE(810), - [sym__list_dash] = STATE(914), - [sym__list_item_dash] = STATE(727), - [sym__list_plus] = STATE(914), - [sym__list_item_plus] = STATE(730), - [sym__list_star] = STATE(914), - [sym__list_item_star] = STATE(759), - [sym__list_task] = STATE(914), - [sym__list_item_task] = STATE(761), - [sym_list_marker_task] = STATE(46), - [sym__list_definition] = STATE(914), - [sym__list_item_definition] = STATE(819), - [sym__list_decimal_period] = STATE(914), - [sym__list_item_decimal_period] = STATE(852), - [sym__list_decimal_paren] = STATE(914), - [sym__list_item_decimal_paren] = STATE(837), - [sym__list_decimal_parens] = STATE(914), - [sym__list_item_decimal_parens] = STATE(815), - [sym__list_lower_alpha_period] = STATE(914), - [sym__list_item_lower_alpha_period] = STATE(843), - [sym__list_lower_alpha_paren] = STATE(914), - [sym__list_item_lower_alpha_paren] = STATE(850), - [sym__list_lower_alpha_parens] = STATE(914), - [sym__list_item_lower_alpha_parens] = STATE(853), - [sym__list_upper_alpha_period] = STATE(914), - [sym__list_item_upper_alpha_period] = STATE(854), - [sym__list_upper_alpha_paren] = STATE(914), - [sym__list_item_upper_alpha_paren] = STATE(855), - [sym__list_upper_alpha_parens] = STATE(914), - [sym__list_item_upper_alpha_parens] = STATE(856), - [sym__list_lower_roman_period] = STATE(914), - [sym__list_item_lower_roman_period] = STATE(857), - [sym__list_lower_roman_paren] = STATE(914), - [sym__list_item_lower_roman_paren] = STATE(871), - [sym__list_lower_roman_parens] = STATE(914), - [sym__list_item_lower_roman_parens] = STATE(874), - [sym__list_upper_roman_period] = STATE(914), - [sym__list_item_upper_roman_period] = STATE(876), - [sym__list_upper_roman_paren] = STATE(914), - [sym__list_item_upper_roman_paren] = STATE(878), - [sym__list_upper_roman_parens] = STATE(914), - [sym__list_item_upper_roman_parens] = STATE(880), - [sym_table] = STATE(810), - [sym__table_content] = STATE(391), - [sym_table_separator] = STATE(391), - [sym_table_row] = STATE(433), - [sym_footnote] = STATE(810), - [sym_footnote_marker_begin] = STATE(1300), - [sym_div] = STATE(810), - [sym__div_marker_begin] = STATE(1142), - [sym_code_block] = STATE(810), - [sym_raw_block] = STATE(810), - [sym_thematic_break] = STATE(810), - [sym_block_quote] = STATE(810), - [sym__block_quote_prefix] = STATE(303), - [sym_link_reference_definition] = STATE(810), - [sym_block_attribute] = STATE(810), - [sym__paragraph] = STATE(810), - [sym__paragraph_content] = STATE(829), - [sym__paragraph_inline_content] = STATE(896), - [sym__inline] = STATE(715), - [sym__symbol_fallback] = STATE(381), - [aux_sym__list_dash_repeat1] = STATE(464), - [aux_sym__list_plus_repeat1] = STATE(442), - [aux_sym__list_star_repeat1] = STATE(443), - [aux_sym__list_task_repeat1] = STATE(428), - [aux_sym__list_definition_repeat1] = STATE(589), - [aux_sym__list_decimal_period_repeat1] = STATE(590), - [aux_sym__list_decimal_paren_repeat1] = STATE(679), - [aux_sym__list_decimal_parens_repeat1] = STATE(591), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(592), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(593), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(594), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(595), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(596), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(597), - [aux_sym__list_lower_roman_period_repeat1] = STATE(598), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(599), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(600), - [aux_sym__list_upper_roman_period_repeat1] = STATE(601), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(602), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(603), - [aux_sym_table_repeat1] = STATE(391), - [aux_sym__block_quote_prefix_repeat1] = STATE(330), - [aux_sym__inline_repeat1] = STATE(381), - [anon_sym_LBRACK] = ACTIONS(477), - [anon_sym_PIPE] = ACTIONS(479), - [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(481), - [anon_sym_DOT] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(13), - [aux_sym__inline_token1] = ACTIONS(13), - [anon_sym_LBRACE_DASH] = ACTIONS(13), - [anon_sym_POUND] = ACTIONS(13), - [anon_sym_PERCENT] = ACTIONS(13), - [sym__block_close] = ACTIONS(493), - [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(485), - [sym_list_marker_dash] = ACTIONS(25), - [sym_list_marker_star] = ACTIONS(27), - [sym_list_marker_plus] = ACTIONS(29), - [sym__list_marker_task_begin] = ACTIONS(31), - [sym_list_marker_definition] = ACTIONS(33), - [sym_list_marker_decimal_period] = ACTIONS(35), - [sym_list_marker_lower_alpha_period] = ACTIONS(37), - [sym_list_marker_upper_alpha_period] = ACTIONS(39), - [sym_list_marker_lower_roman_period] = ACTIONS(41), - [sym_list_marker_upper_roman_period] = ACTIONS(43), - [sym_list_marker_decimal_paren] = ACTIONS(45), - [sym_list_marker_lower_alpha_paren] = ACTIONS(47), - [sym_list_marker_upper_alpha_paren] = ACTIONS(49), - [sym_list_marker_lower_roman_paren] = ACTIONS(51), - [sym_list_marker_upper_roman_paren] = ACTIONS(53), - [sym_list_marker_decimal_parens] = ACTIONS(55), - [sym_list_marker_lower_alpha_parens] = ACTIONS(57), - [sym_list_marker_upper_alpha_parens] = ACTIONS(59), - [sym_list_marker_lower_roman_parens] = ACTIONS(61), - [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(487), - [sym__block_quote_continuation] = ACTIONS(495), - [sym__thematic_break_dash] = ACTIONS(489), - [sym__thematic_break_star] = ACTIONS(489), + [sym__block_quote_begin] = ACTIONS(446), + [sym__block_quote_continuation] = ACTIONS(456), + [sym__thematic_break_dash] = ACTIONS(448), + [sym__thematic_break_star] = ACTIONS(448), }, }; static const uint16_t ts_small_parse_table[] = { [0] = 11, - ACTIONS(502), 1, + ACTIONS(463), 1, anon_sym_PIPE, - ACTIONS(504), 1, + ACTIONS(465), 1, sym__newline, - ACTIONS(506), 1, + ACTIONS(467), 1, sym__block_quote_continuation, - ACTIONS(508), 1, + ACTIONS(469), 1, sym__table_caption_begin, - STATE(78), 1, + STATE(71), 1, sym_table_row, - STATE(223), 1, + STATE(193), 1, sym_table_caption, - STATE(762), 1, + STATE(583), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1110), 1, + STATE(1179), 1, sym__block_quote_prefix, - STATE(74), 3, + STATE(68), 3, sym__table_content, sym_table_separator, aux_sym_table_repeat1, - ACTIONS(500), 9, + ACTIONS(461), 9, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, @@ -14110,7 +13220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(498), 27, + ACTIONS(459), 27, sym__heading_begin, sym__div_begin, sym__code_block_begin, @@ -14139,27 +13249,27 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, ts_builtin_sym_end, [70] = 11, - ACTIONS(506), 1, + ACTIONS(467), 1, sym__block_quote_continuation, - ACTIONS(510), 1, + ACTIONS(471), 1, anon_sym_PIPE, - ACTIONS(512), 1, + ACTIONS(473), 1, sym__newline, - ACTIONS(514), 1, + ACTIONS(475), 1, sym__table_caption_begin, - STATE(79), 1, + STATE(70), 1, sym_table_row, - STATE(191), 1, + STATE(169), 1, sym_table_caption, - STATE(762), 1, + STATE(583), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1260), 1, + STATE(1149), 1, sym__block_quote_prefix, - STATE(75), 3, + STATE(69), 3, sym__table_content, sym_table_separator, aux_sym_table_repeat1, - ACTIONS(500), 9, + ACTIONS(461), 9, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, @@ -14169,7 +13279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(498), 27, + ACTIONS(459), 27, sym__block_close, sym__heading_begin, sym__div_begin, @@ -14197,28 +13307,22 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_begin, sym__thematic_break_dash, sym__thematic_break_star, - [140] = 11, - ACTIONS(506), 1, - sym__block_quote_continuation, - ACTIONS(516), 1, + [140] = 8, + ACTIONS(481), 1, anon_sym_PIPE, - ACTIONS(518), 1, - sym__newline, - ACTIONS(520), 1, - sym__table_caption_begin, - STATE(77), 1, + ACTIONS(484), 1, + sym__block_quote_continuation, + STATE(71), 1, sym_table_row, - STATE(249), 1, - sym_table_caption, - STATE(762), 1, + STATE(583), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1274), 1, + STATE(1179), 1, sym__block_quote_prefix, - STATE(76), 3, + STATE(68), 3, sym__table_content, sym_table_separator, aux_sym_table_repeat1, - ACTIONS(500), 9, + ACTIONS(479), 9, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, @@ -14228,7 +13332,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(498), 27, + ACTIONS(477), 29, + sym__newline, sym__heading_begin, sym__div_begin, sym__code_block_begin, @@ -14255,23 +13360,24 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_begin, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, - [210] = 8, - ACTIONS(526), 1, - anon_sym_PIPE, - ACTIONS(529), 1, + sym__table_caption_begin, + ts_builtin_sym_end, + [203] = 8, + ACTIONS(484), 1, sym__block_quote_continuation, - STATE(78), 1, + ACTIONS(487), 1, + anon_sym_PIPE, + STATE(70), 1, sym_table_row, - STATE(762), 1, + STATE(583), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1110), 1, + STATE(1149), 1, sym__block_quote_prefix, - STATE(74), 3, + STATE(69), 3, sym__table_content, sym_table_separator, aux_sym_table_repeat1, - ACTIONS(524), 9, + ACTIONS(479), 9, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, @@ -14281,7 +13387,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(522), 29, + ACTIONS(477), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -14310,23 +13417,18 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__table_caption_begin, - ts_builtin_sym_end, - [273] = 8, - ACTIONS(529), 1, - sym__block_quote_continuation, - ACTIONS(532), 1, + [266] = 7, + ACTIONS(492), 1, anon_sym_PIPE, - STATE(79), 1, - sym_table_row, - STATE(762), 1, + ACTIONS(497), 1, + sym__block_quote_continuation, + STATE(107), 1, + sym_table_separator, + STATE(583), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1260), 1, + STATE(1169), 1, sym__block_quote_prefix, - STATE(75), 3, - sym__table_content, - sym_table_separator, - aux_sym_table_repeat1, - ACTIONS(524), 9, + ACTIONS(490), 9, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, @@ -14336,7 +13438,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(522), 29, + ACTIONS(495), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -14366,22 +13468,18 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__table_caption_begin, - [336] = 8, - ACTIONS(529), 1, + [324] = 7, + ACTIONS(497), 1, sym__block_quote_continuation, - ACTIONS(535), 1, + ACTIONS(500), 1, anon_sym_PIPE, - STATE(77), 1, - sym_table_row, - STATE(762), 1, + STATE(96), 1, + sym_table_separator, + STATE(583), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1274), 1, + STATE(943), 1, sym__block_quote_prefix, - STATE(76), 3, - sym__table_content, - sym_table_separator, - aux_sym_table_repeat1, - ACTIONS(524), 9, + ACTIONS(490), 9, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, @@ -14391,7 +13489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(522), 29, + ACTIONS(495), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -14419,21 +13517,16 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_begin, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, sym__table_caption_begin, - [399] = 7, - ACTIONS(540), 1, - anon_sym_PIPE, - ACTIONS(545), 1, - sym__block_quote_continuation, - STATE(92), 1, - sym_table_separator, - STATE(762), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(1295), 1, - sym__block_quote_prefix, - ACTIONS(538), 9, + ts_builtin_sym_end, + [382] = 4, + ACTIONS(469), 1, + sym__table_caption_begin, + STATE(112), 1, + sym_table_caption, + ACTIONS(505), 10, anon_sym_LBRACK, + anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -14442,7 +13535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(543), 29, + ACTIONS(503), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -14468,23 +13561,18 @@ static const uint16_t ts_small_parse_table[] = { sym_list_marker_lower_roman_parens, sym_list_marker_upper_roman_parens, sym__block_quote_begin, + sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, + ts_builtin_sym_end, + [432] = 4, + ACTIONS(475), 1, sym__table_caption_begin, - [457] = 7, - ACTIONS(545), 1, - sym__block_quote_continuation, - ACTIONS(548), 1, - anon_sym_PIPE, - STATE(128), 1, - sym_table_separator, - STATE(762), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(1217), 1, - sym__block_quote_prefix, - ACTIONS(538), 9, + STATE(174), 1, + sym_table_caption, + ACTIONS(505), 10, anon_sym_LBRACK, + anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -14493,7 +13581,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(543), 29, + ACTIONS(503), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -14519,23 +13608,15 @@ static const uint16_t ts_small_parse_table[] = { sym_list_marker_lower_roman_parens, sym_list_marker_upper_roman_parens, sym__block_quote_begin, + sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__table_caption_begin, - ts_builtin_sym_end, - [515] = 7, - ACTIONS(545), 1, - sym__block_quote_continuation, - ACTIONS(551), 1, - anon_sym_PIPE, - STATE(133), 1, - sym_table_separator, - STATE(762), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(1287), 1, - sym__block_quote_prefix, - ACTIONS(538), 9, + [482] = 3, + ACTIONS(511), 1, + sym__code_block_end, + ACTIONS(507), 10, anon_sym_LBRACK, + anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -14544,7 +13625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(543), 29, + ACTIONS(509), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -14571,15 +13652,13 @@ static const uint16_t ts_small_parse_table[] = { sym_list_marker_lower_roman_parens, sym_list_marker_upper_roman_parens, sym__block_quote_begin, + sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__table_caption_begin, - [573] = 4, - ACTIONS(520), 1, - sym__table_caption_begin, - STATE(252), 1, - sym_table_caption, - ACTIONS(554), 10, + [529] = 3, + ACTIONS(517), 1, + sym__code_block_end, + ACTIONS(513), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -14590,7 +13669,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(556), 29, + ACTIONS(515), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -14619,13 +13699,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, - [623] = 4, - ACTIONS(508), 1, - sym__table_caption_begin, - STATE(270), 1, - sym_table_caption, - ACTIONS(554), 10, + [576] = 2, + ACTIONS(519), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -14636,7 +13711,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(556), 29, + ACTIONS(521), 30, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -14665,13 +13741,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [673] = 4, - ACTIONS(514), 1, sym__table_caption_begin, - STATE(197), 1, - sym_table_caption, - ACTIONS(554), 10, + [621] = 2, + ACTIONS(523), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -14682,7 +13754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(556), 29, + ACTIONS(525), 30, sym__block_close, sym__newline, sym__heading_begin, @@ -14712,8 +13784,11 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [723] = 2, - ACTIONS(558), 10, + sym__table_caption_begin, + [666] = 3, + ACTIONS(531), 1, + sym__div_end, + ACTIONS(527), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -14724,7 +13799,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(560), 30, + ACTIONS(529), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -14753,12 +13829,10 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, - sym__table_caption_begin, - [768] = 3, - ACTIONS(566), 1, - sym__code_block_end, - ACTIONS(562), 10, + [713] = 3, + ACTIONS(537), 1, + sym__div_end, + ACTIONS(533), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -14769,7 +13843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(564), 29, + ACTIONS(535), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -14799,10 +13873,10 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [815] = 3, - ACTIONS(572), 1, + [760] = 3, + ACTIONS(543), 1, sym__code_block_end, - ACTIONS(568), 10, + ACTIONS(539), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -14813,7 +13887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(570), 29, + ACTIONS(541), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -14843,8 +13917,10 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [862] = 2, - ACTIONS(558), 10, + [807] = 3, + ACTIONS(545), 1, + sym__code_block_end, + ACTIONS(539), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -14855,8 +13931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(560), 30, - sym__block_close, + ACTIONS(541), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -14885,9 +13960,11 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__table_caption_begin, - [907] = 2, - ACTIONS(574), 10, + ts_builtin_sym_end, + [854] = 3, + ACTIONS(551), 1, + sym__code_block_end, + ACTIONS(547), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -14898,7 +13975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(576), 30, + ACTIONS(549), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -14928,11 +14005,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__table_caption_begin, - [952] = 3, - ACTIONS(582), 1, - sym__eof_or_newline, - ACTIONS(578), 10, + [901] = 2, + ACTIONS(553), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -14943,7 +14017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(580), 29, + ACTIONS(555), 30, sym__block_close, sym__newline, sym__heading_begin, @@ -14973,10 +14047,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [999] = 3, - ACTIONS(586), 1, - sym__eof_or_newline, - ACTIONS(584), 10, + sym__table_caption_begin, + [946] = 2, + ACTIONS(557), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -14987,7 +14060,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(588), 29, + ACTIONS(559), 30, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -15016,11 +14090,11 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, - [1046] = 3, - ACTIONS(594), 1, + sym__table_caption_begin, + [991] = 3, + ACTIONS(565), 1, sym__div_end, - ACTIONS(590), 10, + ACTIONS(561), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -15031,7 +14105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(592), 29, + ACTIONS(563), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -15061,10 +14135,10 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [1093] = 3, - ACTIONS(600), 1, + [1038] = 3, + ACTIONS(571), 1, sym__code_block_end, - ACTIONS(598), 10, + ACTIONS(567), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -15075,7 +14149,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(596), 29, + ACTIONS(569), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -15104,9 +14179,10 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [1140] = 2, - ACTIONS(602), 10, + [1085] = 3, + ACTIONS(577), 1, + sym__code_block_end, + ACTIONS(573), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -15117,7 +14193,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(604), 30, + ACTIONS(575), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -15146,12 +14223,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, - sym__table_caption_begin, - [1185] = 3, - ACTIONS(610), 1, - sym__code_block_end, - ACTIONS(608), 10, + [1132] = 2, + ACTIONS(579), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -15162,7 +14235,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(606), 29, + ACTIONS(581), 30, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -15191,11 +14265,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [1232] = 3, - ACTIONS(616), 1, - sym__div_end, - ACTIONS(612), 10, + sym__table_caption_begin, + [1177] = 2, + ACTIONS(583), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -15206,7 +14278,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(614), 29, + ACTIONS(585), 30, sym__block_close, sym__newline, sym__heading_begin, @@ -15236,10 +14308,11 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [1279] = 3, - ACTIONS(618), 1, - sym__code_block_end, - ACTIONS(608), 10, + sym__table_caption_begin, + [1222] = 3, + ACTIONS(591), 1, + sym__div_end, + ACTIONS(587), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -15250,7 +14323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(606), 29, + ACTIONS(589), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -15280,10 +14353,10 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [1326] = 3, - ACTIONS(624), 1, - sym__div_end, - ACTIONS(620), 10, + [1269] = 3, + ACTIONS(597), 1, + sym__eof_or_newline, + ACTIONS(595), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -15294,7 +14367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(622), 29, + ACTIONS(593), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -15323,11 +14396,11 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, - [1373] = 3, - ACTIONS(626), 1, + ts_builtin_sym_end, + [1316] = 3, + ACTIONS(599), 1, sym__code_block_end, - ACTIONS(598), 10, + ACTIONS(547), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -15338,7 +14411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(596), 29, + ACTIONS(549), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -15367,9 +14440,11 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, - [1420] = 2, - ACTIONS(628), 10, + ts_builtin_sym_end, + [1363] = 3, + ACTIONS(601), 1, + sym__code_block_end, + ACTIONS(507), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -15380,7 +14455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(630), 30, + ACTIONS(509), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -15409,10 +14484,11 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, - sym__table_caption_begin, - [1465] = 2, - ACTIONS(632), 10, + ts_builtin_sym_end, + [1410] = 3, + ACTIONS(603), 1, + sym__div_end, + ACTIONS(561), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -15423,7 +14499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(634), 30, + ACTIONS(563), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -15452,12 +14528,11 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, - sym__table_caption_begin, - [1510] = 3, - ACTIONS(636), 1, - sym__div_end, - ACTIONS(590), 10, + ts_builtin_sym_end, + [1457] = 3, + ACTIONS(609), 1, + sym__eof_or_newline, + ACTIONS(605), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -15468,7 +14543,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(592), 29, + ACTIONS(607), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -15497,11 +14573,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, - [1557] = 3, - ACTIONS(638), 1, - sym__div_end, - ACTIONS(612), 10, + [1504] = 2, + ACTIONS(613), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -15512,7 +14585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(614), 29, + ACTIONS(611), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -15541,11 +14614,12 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, - [1604] = 3, - ACTIONS(640), 1, + sym__table_caption_begin, + ts_builtin_sym_end, + [1549] = 3, + ACTIONS(615), 1, sym__code_block_end, - ACTIONS(608), 10, + ACTIONS(567), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -15556,7 +14630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(606), 29, + ACTIONS(569), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -15585,11 +14659,11 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, - [1651] = 3, - ACTIONS(646), 1, - sym__code_block_end, - ACTIONS(642), 10, + ts_builtin_sym_end, + [1596] = 3, + ACTIONS(617), 1, + sym__div_end, + ACTIONS(587), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -15600,7 +14674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(644), 29, + ACTIONS(589), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -15629,11 +14703,11 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, - [1698] = 3, - ACTIONS(652), 1, + ts_builtin_sym_end, + [1643] = 3, + ACTIONS(619), 1, sym__code_block_end, - ACTIONS(648), 10, + ACTIONS(573), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -15644,7 +14718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(650), 29, + ACTIONS(575), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -15673,9 +14747,11 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, - [1745] = 2, - ACTIONS(654), 10, + ts_builtin_sym_end, + [1690] = 3, + ACTIONS(621), 1, + sym__code_block_end, + ACTIONS(513), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -15686,7 +14762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(656), 30, + ACTIONS(515), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -15715,10 +14791,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, - sym__table_caption_begin, - [1790] = 2, - ACTIONS(658), 10, + ts_builtin_sym_end, + [1737] = 2, + ACTIONS(553), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -15729,7 +14804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(660), 30, + ACTIONS(555), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -15758,10 +14833,10 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, sym__table_caption_begin, - [1835] = 2, - ACTIONS(632), 10, + ts_builtin_sym_end, + [1782] = 2, + ACTIONS(557), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -15772,8 +14847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(634), 30, - sym__block_close, + ACTIONS(559), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -15803,10 +14877,9 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__table_caption_begin, - [1880] = 3, - ACTIONS(662), 1, - sym__code_block_end, - ACTIONS(562), 10, + ts_builtin_sym_end, + [1827] = 2, + ACTIONS(519), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -15817,7 +14890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(564), 29, + ACTIONS(521), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -15846,11 +14919,10 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, - [1927] = 3, - ACTIONS(664), 1, - sym__code_block_end, - ACTIONS(568), 10, + sym__table_caption_begin, + ts_builtin_sym_end, + [1872] = 2, + ACTIONS(523), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -15861,7 +14933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(570), 29, + ACTIONS(525), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -15890,9 +14962,12 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, - [1974] = 2, - ACTIONS(628), 10, + sym__table_caption_begin, + ts_builtin_sym_end, + [1917] = 3, + ACTIONS(623), 1, + sym__div_end, + ACTIONS(527), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -15903,8 +14978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(630), 30, - sym__block_close, + ACTIONS(529), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -15933,9 +15007,11 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__table_caption_begin, - [2019] = 2, - ACTIONS(574), 10, + ts_builtin_sym_end, + [1964] = 3, + ACTIONS(625), 1, + sym__div_end, + ACTIONS(533), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -15946,7 +15022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(576), 30, + ACTIONS(535), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -15975,12 +15051,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, - sym__table_caption_begin, - [2064] = 3, - ACTIONS(666), 1, - sym__eof_or_newline, - ACTIONS(578), 10, + ts_builtin_sym_end, + [2011] = 2, + ACTIONS(613), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -15991,7 +15064,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(580), 29, + ACTIONS(611), 30, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -16020,11 +15094,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, - [2111] = 3, - ACTIONS(668), 1, - sym__code_block_end, - ACTIONS(642), 10, + sym__table_caption_begin, + [2056] = 2, + ACTIONS(579), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -16035,7 +15107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(644), 29, + ACTIONS(581), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -16064,11 +15136,10 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, + sym__table_caption_begin, ts_builtin_sym_end, - [2158] = 3, - ACTIONS(670), 1, - sym__code_block_end, - ACTIONS(648), 10, + [2101] = 2, + ACTIONS(583), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -16079,7 +15150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(650), 29, + ACTIONS(585), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -16108,11 +15179,12 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, + sym__table_caption_begin, ts_builtin_sym_end, - [2205] = 3, - ACTIONS(672), 1, - sym__code_block_end, - ACTIONS(642), 10, + [2146] = 3, + ACTIONS(627), 1, + sym__eof_or_newline, + ACTIONS(595), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -16123,7 +15195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(644), 29, + ACTIONS(593), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -16153,10 +15225,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [2252] = 3, - ACTIONS(674), 1, - sym__div_end, - ACTIONS(620), 10, + [2193] = 2, + ACTIONS(631), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -16167,7 +15237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(622), 29, + ACTIONS(629), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -16197,8 +15267,8 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, ts_builtin_sym_end, - [2299] = 2, - ACTIONS(654), 10, + [2237] = 2, + ACTIONS(635), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -16209,7 +15279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(656), 30, + ACTIONS(633), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -16238,10 +15308,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__table_caption_begin, ts_builtin_sym_end, - [2344] = 2, - ACTIONS(658), 10, + [2281] = 2, + ACTIONS(637), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -16252,7 +15321,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(660), 30, + ACTIONS(639), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -16281,10 +15351,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__table_caption_begin, - ts_builtin_sym_end, - [2389] = 2, - ACTIONS(628), 10, + [2325] = 2, + ACTIONS(643), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -16295,7 +15363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(630), 30, + ACTIONS(641), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -16324,12 +15392,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__table_caption_begin, ts_builtin_sym_end, - [2434] = 3, - ACTIONS(680), 1, - sym__div_end, - ACTIONS(678), 10, + [2369] = 2, + ACTIONS(647), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -16340,7 +15405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(676), 29, + ACTIONS(645), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -16370,10 +15435,8 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, ts_builtin_sym_end, - [2481] = 3, - ACTIONS(682), 1, - sym__code_block_end, - ACTIONS(648), 10, + [2413] = 2, + ACTIONS(651), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -16384,8 +15447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(650), 29, - sym__block_close, + ACTIONS(649), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -16414,10 +15476,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [2528] = 3, - ACTIONS(684), 1, - sym__code_block_end, - ACTIONS(562), 10, + ts_builtin_sym_end, + [2457] = 2, + ACTIONS(655), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -16428,7 +15489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(564), 29, + ACTIONS(653), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -16458,10 +15519,8 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, ts_builtin_sym_end, - [2575] = 3, - ACTIONS(686), 1, - sym__code_block_end, - ACTIONS(568), 10, + [2501] = 2, + ACTIONS(659), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -16472,7 +15531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(570), 29, + ACTIONS(657), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -16502,8 +15561,8 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, ts_builtin_sym_end, - [2622] = 2, - ACTIONS(558), 10, + [2545] = 2, + ACTIONS(663), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -16514,7 +15573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(560), 30, + ACTIONS(661), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -16543,10 +15602,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__table_caption_begin, ts_builtin_sym_end, - [2667] = 2, - ACTIONS(574), 10, + [2589] = 2, + ACTIONS(667), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -16557,7 +15615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(576), 30, + ACTIONS(665), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -16586,12 +15644,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__table_caption_begin, ts_builtin_sym_end, - [2712] = 3, - ACTIONS(688), 1, - sym__eof_or_newline, - ACTIONS(578), 10, + [2633] = 2, + ACTIONS(671), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -16602,7 +15657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(580), 29, + ACTIONS(669), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -16632,8 +15687,8 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, ts_builtin_sym_end, - [2759] = 2, - ACTIONS(632), 10, + [2677] = 2, + ACTIONS(675), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -16644,7 +15699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(634), 30, + ACTIONS(673), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -16673,10 +15728,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__table_caption_begin, ts_builtin_sym_end, - [2804] = 2, - ACTIONS(602), 10, + [2721] = 2, + ACTIONS(679), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -16687,7 +15741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(604), 30, + ACTIONS(677), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -16716,12 +15770,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__table_caption_begin, ts_builtin_sym_end, - [2849] = 3, - ACTIONS(690), 1, - sym__eof_or_newline, - ACTIONS(584), 10, + [2765] = 2, + ACTIONS(683), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -16732,8 +15783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(588), 29, - sym__block_close, + ACTIONS(681), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -16762,10 +15812,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [2896] = 3, - ACTIONS(692), 1, - sym__div_end, - ACTIONS(590), 10, + ts_builtin_sym_end, + [2809] = 2, + ACTIONS(687), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -16776,7 +15825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(592), 29, + ACTIONS(685), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -16806,8 +15855,8 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, ts_builtin_sym_end, - [2943] = 2, - ACTIONS(654), 10, + [2853] = 2, + ACTIONS(691), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -16818,8 +15867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(656), 30, - sym__block_close, + ACTIONS(689), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -16848,11 +15896,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__table_caption_begin, - [2988] = 3, - ACTIONS(694), 1, - sym__div_end, - ACTIONS(612), 10, + ts_builtin_sym_end, + [2897] = 2, + ACTIONS(695), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -16863,7 +15909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(614), 29, + ACTIONS(693), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -16893,8 +15939,8 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, ts_builtin_sym_end, - [3035] = 2, - ACTIONS(602), 10, + [2941] = 2, + ACTIONS(699), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -16905,8 +15951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(604), 30, - sym__block_close, + ACTIONS(697), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -16935,9 +15980,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__table_caption_begin, - [3080] = 2, - ACTIONS(658), 10, + ts_builtin_sym_end, + [2985] = 2, + ACTIONS(703), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -16948,8 +15993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(660), 30, - sym__block_close, + ACTIONS(701), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -16978,11 +16022,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__table_caption_begin, - [3125] = 3, - ACTIONS(696), 1, - sym__div_end, - ACTIONS(678), 10, + ts_builtin_sym_end, + [3029] = 2, + ACTIONS(707), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -16993,8 +16035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(676), 29, - sym__block_close, + ACTIONS(705), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -17023,10 +16064,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [3172] = 3, - ACTIONS(698), 1, - sym__div_end, - ACTIONS(620), 10, + ts_builtin_sym_end, + [3073] = 2, + ACTIONS(711), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -17037,8 +16077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(622), 29, - sym__block_close, + ACTIONS(709), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -17067,10 +16106,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [3219] = 3, - ACTIONS(700), 1, - sym__code_block_end, - ACTIONS(598), 10, + ts_builtin_sym_end, + [3117] = 2, + ACTIONS(715), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -17081,8 +16119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(596), 29, - sym__block_close, + ACTIONS(713), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -17111,10 +16148,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [3266] = 3, - ACTIONS(702), 1, - sym__div_end, - ACTIONS(678), 10, + ts_builtin_sym_end, + [3161] = 2, + ACTIONS(719), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -17125,7 +16161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(676), 29, + ACTIONS(717), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -17154,9 +16190,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, - [3313] = 2, - ACTIONS(704), 10, + ts_builtin_sym_end, + [3205] = 2, + ACTIONS(723), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -17167,7 +16203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(706), 29, + ACTIONS(721), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -17196,9 +16232,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, - [3357] = 2, - ACTIONS(710), 10, + ts_builtin_sym_end, + [3249] = 2, + ACTIONS(727), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -17209,7 +16245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(708), 29, + ACTIONS(725), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -17239,8 +16275,8 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, ts_builtin_sym_end, - [3401] = 2, - ACTIONS(714), 10, + [3293] = 2, + ACTIONS(731), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -17251,7 +16287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(712), 29, + ACTIONS(729), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -17281,8 +16317,8 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, ts_builtin_sym_end, - [3445] = 2, - ACTIONS(718), 10, + [3337] = 2, + ACTIONS(735), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -17293,7 +16329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(716), 29, + ACTIONS(733), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -17323,8 +16359,8 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, ts_builtin_sym_end, - [3489] = 2, - ACTIONS(722), 10, + [3381] = 2, + ACTIONS(631), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -17335,7 +16371,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(720), 29, + ACTIONS(629), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -17364,9 +16401,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [3533] = 2, - ACTIONS(726), 10, + [3425] = 2, + ACTIONS(647), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -17377,7 +16413,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(724), 29, + ACTIONS(645), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -17406,9 +16443,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [3577] = 2, - ACTIONS(730), 10, + [3469] = 2, + ACTIONS(739), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -17419,7 +16455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(728), 29, + ACTIONS(737), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -17449,8 +16485,8 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, ts_builtin_sym_end, - [3621] = 2, - ACTIONS(734), 10, + [3513] = 2, + ACTIONS(741), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -17461,7 +16497,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(732), 29, + ACTIONS(743), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -17490,9 +16527,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [3665] = 2, - ACTIONS(738), 10, + [3557] = 2, + ACTIONS(745), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -17503,7 +16539,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(736), 29, + ACTIONS(747), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -17532,9 +16569,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [3709] = 2, - ACTIONS(742), 10, + [3601] = 2, + ACTIONS(749), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -17545,7 +16581,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(740), 29, + ACTIONS(751), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -17574,9 +16611,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [3753] = 2, - ACTIONS(746), 10, + [3645] = 2, + ACTIONS(753), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -17587,7 +16623,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(744), 29, + ACTIONS(755), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -17616,9 +16653,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [3797] = 2, - ACTIONS(750), 10, + [3689] = 2, + ACTIONS(759), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -17629,7 +16665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(748), 29, + ACTIONS(757), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -17659,8 +16695,8 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, ts_builtin_sym_end, - [3841] = 2, - ACTIONS(754), 10, + [3733] = 2, + ACTIONS(763), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -17671,7 +16707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(752), 29, + ACTIONS(761), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -17701,8 +16737,8 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, ts_builtin_sym_end, - [3885] = 2, - ACTIONS(758), 10, + [3777] = 2, + ACTIONS(659), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -17713,7 +16749,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(756), 29, + ACTIONS(657), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -17742,9 +16779,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [3929] = 2, - ACTIONS(762), 10, + [3821] = 2, + ACTIONS(683), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -17755,7 +16791,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(760), 29, + ACTIONS(681), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -17784,9 +16821,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [3973] = 2, - ACTIONS(766), 10, + [3865] = 2, + ACTIONS(715), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -17797,7 +16833,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(764), 29, + ACTIONS(713), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -17826,9 +16863,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [4017] = 2, - ACTIONS(770), 10, + [3909] = 2, + ACTIONS(731), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -17839,7 +16875,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(768), 29, + ACTIONS(729), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -17868,9 +16905,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [4061] = 2, - ACTIONS(774), 10, + [3953] = 2, + ACTIONS(739), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -17881,7 +16917,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(772), 29, + ACTIONS(737), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -17910,9 +16947,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [4105] = 2, - ACTIONS(778), 10, + [3997] = 2, + ACTIONS(759), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -17923,7 +16959,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(776), 29, + ACTIONS(757), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -17952,9 +16989,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [4149] = 2, - ACTIONS(782), 10, + [4041] = 2, + ACTIONS(763), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -17965,7 +17001,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(780), 29, + ACTIONS(761), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -17994,9 +17031,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [4193] = 2, - ACTIONS(784), 10, + [4085] = 2, + ACTIONS(765), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -18007,7 +17043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(786), 29, + ACTIONS(767), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -18037,8 +17073,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [4237] = 2, - ACTIONS(788), 10, + [4129] = 2, + ACTIONS(769), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -18049,7 +17085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(790), 29, + ACTIONS(771), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -18079,8 +17115,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [4281] = 2, - ACTIONS(794), 10, + [4173] = 2, + ACTIONS(773), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -18091,7 +17127,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(792), 29, + ACTIONS(775), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -18120,9 +17157,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [4325] = 2, - ACTIONS(796), 10, + [4217] = 2, + ACTIONS(777), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -18133,7 +17169,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(798), 29, + ACTIONS(779), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -18163,8 +17199,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [4369] = 2, - ACTIONS(800), 10, + [4261] = 2, + ACTIONS(781), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -18175,7 +17211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(802), 29, + ACTIONS(783), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -18205,8 +17241,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [4413] = 2, - ACTIONS(804), 10, + [4305] = 2, + ACTIONS(785), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -18217,7 +17253,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(806), 29, + ACTIONS(787), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -18246,9 +17283,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, - [4457] = 2, - ACTIONS(714), 10, + [4349] = 2, + ACTIONS(789), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -18259,7 +17295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(712), 29, + ACTIONS(791), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -18289,8 +17325,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [4501] = 2, - ACTIONS(710), 10, + [4393] = 2, + ACTIONS(793), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -18301,7 +17337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(708), 29, + ACTIONS(795), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -18331,8 +17367,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [4545] = 2, - ACTIONS(810), 10, + [4437] = 2, + ACTIONS(797), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -18343,7 +17379,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(808), 29, + ACTIONS(799), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -18372,9 +17409,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [4589] = 2, - ACTIONS(704), 10, + [4481] = 2, + ACTIONS(801), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -18385,7 +17421,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(706), 29, + ACTIONS(803), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -18414,9 +17451,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [4633] = 2, - ACTIONS(722), 10, + [4525] = 2, + ACTIONS(805), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -18427,7 +17463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(720), 29, + ACTIONS(807), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -18457,8 +17493,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [4677] = 2, - ACTIONS(742), 10, + [4569] = 2, + ACTIONS(809), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -18469,7 +17505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(740), 29, + ACTIONS(811), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -18499,8 +17535,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [4721] = 2, - ACTIONS(774), 10, + [4613] = 2, + ACTIONS(813), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -18511,7 +17547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(772), 29, + ACTIONS(815), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -18541,8 +17577,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [4765] = 2, - ACTIONS(794), 10, + [4657] = 2, + ACTIONS(817), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -18553,7 +17589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(792), 29, + ACTIONS(819), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -18583,8 +17619,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [4809] = 2, - ACTIONS(810), 10, + [4701] = 2, + ACTIONS(765), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -18595,8 +17631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(808), 29, - sym__block_close, + ACTIONS(767), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -18625,8 +17660,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [4853] = 2, - ACTIONS(704), 10, + ts_builtin_sym_end, + [4745] = 2, + ACTIONS(505), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -18637,7 +17673,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(706), 29, + ACTIONS(503), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -18667,8 +17703,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [4897] = 2, - ACTIONS(812), 10, + [4789] = 2, + ACTIONS(769), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -18679,8 +17715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(814), 29, - sym__block_close, + ACTIONS(771), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -18709,8 +17744,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [4941] = 2, - ACTIONS(816), 10, + ts_builtin_sym_end, + [4833] = 2, + ACTIONS(821), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -18721,7 +17757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(818), 29, + ACTIONS(823), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -18751,8 +17787,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [4985] = 2, - ACTIONS(820), 10, + [4877] = 2, + ACTIONS(825), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -18763,7 +17799,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(822), 29, + ACTIONS(827), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -18793,8 +17829,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [5029] = 2, - ACTIONS(824), 10, + [4921] = 2, + ACTIONS(773), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -18805,8 +17841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(826), 29, - sym__block_close, + ACTIONS(775), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -18835,8 +17870,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [5073] = 2, - ACTIONS(828), 10, + ts_builtin_sym_end, + [4965] = 2, + ACTIONS(635), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -18847,7 +17883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(830), 29, + ACTIONS(633), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -18877,8 +17913,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [5117] = 2, - ACTIONS(832), 10, + [5009] = 2, + ACTIONS(777), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -18889,8 +17925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(834), 29, - sym__block_close, + ACTIONS(779), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -18919,8 +17954,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [5161] = 2, - ACTIONS(836), 10, + ts_builtin_sym_end, + [5053] = 2, + ACTIONS(781), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -18931,8 +17967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(838), 29, - sym__block_close, + ACTIONS(783), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -18961,8 +17996,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [5205] = 2, - ACTIONS(840), 10, + ts_builtin_sym_end, + [5097] = 2, + ACTIONS(785), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -18973,8 +18009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(842), 29, - sym__block_close, + ACTIONS(787), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -19003,8 +18038,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [5249] = 2, - ACTIONS(844), 10, + ts_builtin_sym_end, + [5141] = 2, + ACTIONS(643), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -19015,7 +18051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(846), 29, + ACTIONS(641), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -19045,8 +18081,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [5293] = 2, - ACTIONS(848), 10, + [5185] = 2, + ACTIONS(789), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -19057,8 +18093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(850), 29, - sym__block_close, + ACTIONS(791), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -19087,8 +18122,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [5337] = 2, - ACTIONS(852), 10, + ts_builtin_sym_end, + [5229] = 2, + ACTIONS(793), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -19099,8 +18135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(854), 29, - sym__block_close, + ACTIONS(795), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -19129,8 +18164,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [5381] = 2, - ACTIONS(856), 10, + ts_builtin_sym_end, + [5273] = 2, + ACTIONS(651), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -19141,7 +18177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(858), 29, + ACTIONS(649), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -19171,8 +18207,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [5425] = 2, - ACTIONS(860), 10, + [5317] = 2, + ACTIONS(797), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -19183,8 +18219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(862), 29, - sym__block_close, + ACTIONS(799), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -19213,8 +18248,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [5469] = 2, - ACTIONS(864), 10, + ts_builtin_sym_end, + [5361] = 2, + ACTIONS(801), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -19225,8 +18261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(866), 29, - sym__block_close, + ACTIONS(803), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -19255,8 +18290,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [5513] = 2, - ACTIONS(868), 10, + ts_builtin_sym_end, + [5405] = 2, + ACTIONS(805), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -19267,8 +18303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(870), 29, - sym__block_close, + ACTIONS(807), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -19297,8 +18332,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [5557] = 2, - ACTIONS(812), 10, + ts_builtin_sym_end, + [5449] = 2, + ACTIONS(809), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -19309,7 +18345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(814), 29, + ACTIONS(811), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -19339,8 +18375,8 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, ts_builtin_sym_end, - [5601] = 2, - ACTIONS(554), 10, + [5493] = 2, + ACTIONS(813), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -19351,8 +18387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(556), 29, - sym__block_close, + ACTIONS(815), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -19381,8 +18416,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [5645] = 2, - ACTIONS(816), 10, + ts_builtin_sym_end, + [5537] = 2, + ACTIONS(655), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -19393,7 +18429,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(818), 29, + ACTIONS(653), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -19422,9 +18459,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [5689] = 2, - ACTIONS(796), 10, + [5581] = 2, + ACTIONS(817), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -19435,7 +18471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(798), 29, + ACTIONS(819), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -19464,9 +18500,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__footnote_end, - [5733] = 2, - ACTIONS(872), 10, + ts_builtin_sym_end, + [5625] = 2, + ACTIONS(667), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -19477,7 +18513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(874), 29, + ACTIONS(665), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -19507,8 +18543,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [5777] = 2, - ACTIONS(876), 10, + [5669] = 2, + ACTIONS(671), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -19519,7 +18555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(878), 29, + ACTIONS(669), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -19549,8 +18585,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [5821] = 2, - ACTIONS(820), 10, + [5713] = 2, + ACTIONS(675), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -19561,7 +18597,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(822), 29, + ACTIONS(673), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -19590,9 +18627,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [5865] = 2, - ACTIONS(880), 10, + [5757] = 2, + ACTIONS(679), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -19603,7 +18639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(882), 29, + ACTIONS(677), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -19633,8 +18669,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [5909] = 2, - ACTIONS(824), 10, + [5801] = 2, + ACTIONS(505), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -19645,7 +18681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(826), 29, + ACTIONS(503), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -19675,8 +18711,8 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, ts_builtin_sym_end, - [5953] = 2, - ACTIONS(828), 10, + [5845] = 2, + ACTIONS(691), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -19687,7 +18723,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(830), 29, + ACTIONS(689), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -19716,9 +18753,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [5997] = 2, - ACTIONS(832), 10, + [5889] = 2, + ACTIONS(695), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -19729,7 +18765,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(834), 29, + ACTIONS(693), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -19758,9 +18795,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [6041] = 2, - ACTIONS(884), 10, + [5933] = 2, + ACTIONS(699), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -19771,7 +18807,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(886), 29, + ACTIONS(697), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -19801,8 +18837,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [6085] = 2, - ACTIONS(836), 10, + [5977] = 2, + ACTIONS(703), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -19813,7 +18849,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(838), 29, + ACTIONS(701), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -19842,9 +18879,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [6129] = 2, - ACTIONS(840), 10, + [6021] = 2, + ACTIONS(707), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -19855,7 +18891,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(842), 29, + ACTIONS(705), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -19884,9 +18921,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [6173] = 2, - ACTIONS(888), 10, + [6065] = 2, + ACTIONS(711), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -19897,7 +18933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(890), 29, + ACTIONS(709), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -19927,8 +18963,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [6217] = 2, - ACTIONS(844), 10, + [6109] = 2, + ACTIONS(719), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -19939,7 +18975,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(846), 29, + ACTIONS(717), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -19968,9 +19005,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [6261] = 2, - ACTIONS(848), 10, + [6153] = 2, + ACTIONS(723), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -19981,7 +19017,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(850), 29, + ACTIONS(721), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -20010,9 +19047,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [6305] = 2, - ACTIONS(852), 10, + [6197] = 2, + ACTIONS(727), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -20023,7 +19059,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(854), 29, + ACTIONS(725), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -20052,9 +19089,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [6349] = 2, - ACTIONS(856), 10, + [6241] = 2, + ACTIONS(735), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -20065,7 +19101,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(858), 29, + ACTIONS(733), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -20094,9 +19131,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [6393] = 2, - ACTIONS(860), 10, + [6285] = 2, + ACTIONS(821), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -20107,7 +19143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(862), 29, + ACTIONS(823), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -20137,8 +19173,8 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, ts_builtin_sym_end, - [6437] = 2, - ACTIONS(718), 10, + [6329] = 2, + ACTIONS(825), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -20149,8 +19185,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(716), 29, - sym__block_close, + ACTIONS(827), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -20179,8 +19214,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [6481] = 2, - ACTIONS(864), 10, + ts_builtin_sym_end, + [6373] = 2, + ACTIONS(745), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -20191,7 +19227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(866), 29, + ACTIONS(747), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -20221,8 +19257,8 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, ts_builtin_sym_end, - [6525] = 2, - ACTIONS(730), 10, + [6417] = 2, + ACTIONS(749), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -20233,8 +19269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(728), 29, - sym__block_close, + ACTIONS(751), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -20263,8 +19298,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [6569] = 2, - ACTIONS(868), 10, + ts_builtin_sym_end, + [6461] = 2, + ACTIONS(829), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -20275,7 +19311,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(870), 29, + ACTIONS(831), 29, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -20304,9 +19341,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [6613] = 2, - ACTIONS(892), 10, + [6505] = 2, + ACTIONS(753), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -20317,8 +19353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(894), 29, - sym__block_close, + ACTIONS(755), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -20347,8 +19382,9 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [6657] = 2, - ACTIONS(734), 10, + ts_builtin_sym_end, + [6549] = 2, + ACTIONS(833), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -20359,8 +19395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(732), 29, - sym__block_close, + ACTIONS(835), 28, sym__newline, sym__heading_begin, sym__div_begin, @@ -20389,8 +19424,12 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [6701] = 2, - ACTIONS(738), 10, + [6592] = 4, + ACTIONS(841), 1, + sym__block_quote_continuation, + STATE(211), 1, + aux_sym__block_quote_prefix_repeat1, + ACTIONS(837), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -20401,10 +19440,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(736), 29, + ACTIONS(839), 26, sym__block_close, - sym__newline, - sym__heading_begin, sym__div_begin, sym__code_block_begin, sym_list_marker_dash, @@ -20428,11 +19465,10 @@ static const uint16_t ts_small_parse_table[] = { sym_list_marker_lower_roman_parens, sym_list_marker_upper_roman_parens, sym__block_quote_begin, - sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [6745] = 2, - ACTIONS(750), 10, + [6639] = 2, + ACTIONS(428), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -20443,10 +19479,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(748), 29, + ACTIONS(430), 27, sym__block_close, - sym__newline, - sym__heading_begin, sym__div_begin, sym__code_block_begin, sym_list_marker_dash, @@ -20473,137 +19507,200 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [6789] = 2, - ACTIONS(754), 10, + [6681] = 12, + ACTIONS(846), 1, + anon_sym_RBRACE, + ACTIONS(848), 1, + anon_sym_DOT, + ACTIONS(851), 1, + aux_sym_identifier_token1, + ACTIONS(854), 1, + sym__whitespace1, + ACTIONS(856), 1, + anon_sym_PERCENT, + ACTIONS(859), 1, + sym__id, + STATE(320), 1, + aux_sym_block_attribute_repeat1, + STATE(374), 1, + sym__comment_no_newline, + STATE(1096), 1, + sym_key, + ACTIONS(861), 2, + sym__eof_or_newline, + sym__newline_inline, + STATE(436), 3, + sym_class, + sym_identifier, + sym_key_value, + ACTIONS(844), 7, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, anon_sym_POUND, + [6727] = 12, + ACTIONS(848), 1, + anon_sym_DOT, + ACTIONS(851), 1, + aux_sym_identifier_token1, + ACTIONS(854), 1, + sym__whitespace1, + ACTIONS(856), 1, anon_sym_PERCENT, - ACTIONS(752), 29, - sym__block_close, - sym__newline, - sym__heading_begin, - sym__div_begin, - sym__code_block_begin, - sym_list_marker_dash, - sym_list_marker_star, - sym_list_marker_plus, - sym__list_marker_task_begin, - sym_list_marker_definition, - sym_list_marker_decimal_period, - sym_list_marker_lower_alpha_period, - sym_list_marker_upper_alpha_period, - sym_list_marker_lower_roman_period, - sym_list_marker_upper_roman_period, - sym_list_marker_decimal_paren, - sym_list_marker_lower_alpha_paren, - sym_list_marker_upper_alpha_paren, - sym_list_marker_lower_roman_paren, - sym_list_marker_upper_roman_paren, - sym_list_marker_decimal_parens, - sym_list_marker_lower_alpha_parens, - sym_list_marker_upper_alpha_parens, - sym_list_marker_lower_roman_parens, - sym_list_marker_upper_roman_parens, - sym__block_quote_begin, - sym__block_quote_continuation, - sym__thematic_break_dash, - sym__thematic_break_star, - [6833] = 2, - ACTIONS(758), 10, + ACTIONS(859), 1, + sym__id, + ACTIONS(863), 1, + anon_sym_RBRACE, + STATE(316), 1, + aux_sym_block_attribute_repeat1, + STATE(374), 1, + sym__comment_no_newline, + STATE(1096), 1, + sym_key, + ACTIONS(861), 2, + sym__eof_or_newline, + sym__newline_inline, + STATE(436), 3, + sym_class, + sym_identifier, + sym_key_value, + ACTIONS(844), 7, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + anon_sym_POUND, + [6773] = 12, + ACTIONS(848), 1, anon_sym_DOT, + ACTIONS(851), 1, aux_sym_identifier_token1, + ACTIONS(854), 1, + sym__whitespace1, + ACTIONS(856), 1, + anon_sym_PERCENT, + ACTIONS(859), 1, + sym__id, + ACTIONS(865), 1, + anon_sym_RBRACE, + STATE(308), 1, + aux_sym_block_attribute_repeat1, + STATE(374), 1, + sym__comment_no_newline, + STATE(1096), 1, + sym_key, + ACTIONS(861), 2, + sym__eof_or_newline, + sym__newline_inline, + STATE(436), 3, + sym_class, + sym_identifier, + sym_key_value, + ACTIONS(844), 7, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACK_CARET, + anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, anon_sym_POUND, + [6819] = 12, + ACTIONS(848), 1, + anon_sym_DOT, + ACTIONS(851), 1, + aux_sym_identifier_token1, + ACTIONS(854), 1, + sym__whitespace1, + ACTIONS(856), 1, anon_sym_PERCENT, - ACTIONS(756), 29, - sym__block_close, - sym__newline, - sym__heading_begin, - sym__div_begin, - sym__code_block_begin, - sym_list_marker_dash, - sym_list_marker_star, - sym_list_marker_plus, - sym__list_marker_task_begin, - sym_list_marker_definition, - sym_list_marker_decimal_period, - sym_list_marker_lower_alpha_period, - sym_list_marker_upper_alpha_period, - sym_list_marker_lower_roman_period, - sym_list_marker_upper_roman_period, - sym_list_marker_decimal_paren, - sym_list_marker_lower_alpha_paren, - sym_list_marker_upper_alpha_paren, - sym_list_marker_lower_roman_paren, - sym_list_marker_upper_roman_paren, - sym_list_marker_decimal_parens, - sym_list_marker_lower_alpha_parens, - sym_list_marker_upper_alpha_parens, - sym_list_marker_lower_roman_parens, - sym_list_marker_upper_roman_parens, - sym__block_quote_begin, - sym__block_quote_continuation, - sym__thematic_break_dash, - sym__thematic_break_star, - [6877] = 2, - ACTIONS(762), 10, + ACTIONS(859), 1, + sym__id, + ACTIONS(867), 1, + anon_sym_RBRACE, + STATE(315), 1, + aux_sym_block_attribute_repeat1, + STATE(374), 1, + sym__comment_no_newline, + STATE(1096), 1, + sym_key, + ACTIONS(861), 2, + sym__eof_or_newline, + sym__newline_inline, + STATE(436), 3, + sym_class, + sym_identifier, + sym_key_value, + ACTIONS(844), 7, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + anon_sym_POUND, + [6865] = 12, + ACTIONS(848), 1, anon_sym_DOT, + ACTIONS(851), 1, aux_sym_identifier_token1, + ACTIONS(854), 1, + sym__whitespace1, + ACTIONS(856), 1, + anon_sym_PERCENT, + ACTIONS(859), 1, + sym__id, + ACTIONS(869), 1, + anon_sym_RBRACE, + STATE(309), 1, + aux_sym_block_attribute_repeat1, + STATE(374), 1, + sym__comment_no_newline, + STATE(1096), 1, + sym_key, + ACTIONS(861), 2, + sym__eof_or_newline, + sym__newline_inline, + STATE(436), 3, + sym_class, + sym_identifier, + sym_key_value, + ACTIONS(844), 7, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACK_CARET, + anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, anon_sym_POUND, - anon_sym_PERCENT, - ACTIONS(760), 29, + [6911] = 11, + ACTIONS(31), 1, + sym__list_marker_task_begin, + ACTIONS(871), 1, + anon_sym_PIPE, + ACTIONS(873), 1, + anon_sym_LBRACK_CARET, + ACTIONS(875), 1, sym__block_close, - sym__newline, - sym__heading_begin, - sym__div_begin, - sym__code_block_begin, + ACTIONS(877), 1, sym_list_marker_dash, + ACTIONS(879), 1, sym_list_marker_star, + ACTIONS(881), 1, sym_list_marker_plus, - sym__list_marker_task_begin, - sym_list_marker_definition, - sym_list_marker_decimal_period, - sym_list_marker_lower_alpha_period, - sym_list_marker_upper_alpha_period, - sym_list_marker_lower_roman_period, - sym_list_marker_upper_roman_period, - sym_list_marker_decimal_paren, - sym_list_marker_lower_alpha_paren, - sym_list_marker_upper_alpha_paren, - sym_list_marker_lower_roman_paren, - sym_list_marker_upper_roman_paren, - sym_list_marker_decimal_parens, - sym_list_marker_lower_alpha_parens, - sym_list_marker_upper_alpha_parens, - sym_list_marker_lower_roman_parens, - sym_list_marker_upper_roman_parens, - sym__block_quote_begin, - sym__block_quote_continuation, - sym__thematic_break_dash, - sym__thematic_break_star, - [6921] = 2, - ACTIONS(766), 10, + STATE(30), 1, + sym_list_marker_task, + STATE(614), 1, + sym__inline, + STATE(297), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(13), 8, anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -20611,41 +19708,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(764), 29, - sym__block_close, - sym__newline, - sym__heading_begin, - sym__div_begin, - sym__code_block_begin, + [6953] = 11, + ACTIONS(31), 1, + sym__list_marker_task_begin, + ACTIONS(871), 1, + anon_sym_PIPE, + ACTIONS(873), 1, + anon_sym_LBRACK_CARET, + ACTIONS(877), 1, sym_list_marker_dash, + ACTIONS(879), 1, sym_list_marker_star, + ACTIONS(881), 1, sym_list_marker_plus, - sym__list_marker_task_begin, - sym_list_marker_definition, - sym_list_marker_decimal_period, - sym_list_marker_lower_alpha_period, - sym_list_marker_upper_alpha_period, - sym_list_marker_lower_roman_period, - sym_list_marker_upper_roman_period, - sym_list_marker_decimal_paren, - sym_list_marker_lower_alpha_paren, - sym_list_marker_upper_alpha_paren, - sym_list_marker_lower_roman_paren, - sym_list_marker_upper_roman_paren, - sym_list_marker_decimal_parens, - sym_list_marker_lower_alpha_parens, - sym_list_marker_upper_alpha_parens, - sym_list_marker_lower_roman_parens, - sym_list_marker_upper_roman_parens, - sym__block_quote_begin, - sym__block_quote_continuation, - sym__thematic_break_dash, - sym__thematic_break_star, - [6965] = 2, - ACTIONS(770), 10, + ACTIONS(883), 1, + sym__block_close, + STATE(30), 1, + sym_list_marker_task, + STATE(614), 1, + sym__inline, + STATE(297), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(13), 8, anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -20653,41 +19739,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(768), 29, - sym__block_close, - sym__newline, - sym__heading_begin, - sym__div_begin, - sym__code_block_begin, + [6995] = 11, + ACTIONS(31), 1, + sym__list_marker_task_begin, + ACTIONS(871), 1, + anon_sym_PIPE, + ACTIONS(873), 1, + anon_sym_LBRACK_CARET, + ACTIONS(877), 1, sym_list_marker_dash, + ACTIONS(879), 1, sym_list_marker_star, + ACTIONS(881), 1, sym_list_marker_plus, - sym__list_marker_task_begin, - sym_list_marker_definition, - sym_list_marker_decimal_period, - sym_list_marker_lower_alpha_period, - sym_list_marker_upper_alpha_period, - sym_list_marker_lower_roman_period, - sym_list_marker_upper_roman_period, - sym_list_marker_decimal_paren, - sym_list_marker_lower_alpha_paren, - sym_list_marker_upper_alpha_paren, - sym_list_marker_lower_roman_paren, - sym_list_marker_upper_roman_paren, - sym_list_marker_decimal_parens, - sym_list_marker_lower_alpha_parens, - sym_list_marker_upper_alpha_parens, - sym_list_marker_lower_roman_parens, - sym_list_marker_upper_roman_parens, - sym__block_quote_begin, - sym__block_quote_continuation, - sym__thematic_break_dash, - sym__thematic_break_star, - [7009] = 2, - ACTIONS(554), 10, + ACTIONS(885), 1, + sym__block_close, + STATE(30), 1, + sym_list_marker_task, + STATE(614), 1, + sym__inline, + STATE(297), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(13), 8, anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -20695,41 +19770,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(556), 29, - sym__newline, - sym__heading_begin, - sym__div_begin, - sym__code_block_begin, + [7037] = 11, + ACTIONS(31), 1, + sym__list_marker_task_begin, + ACTIONS(871), 1, + anon_sym_PIPE, + ACTIONS(873), 1, + anon_sym_LBRACK_CARET, + ACTIONS(877), 1, sym_list_marker_dash, + ACTIONS(879), 1, sym_list_marker_star, + ACTIONS(881), 1, sym_list_marker_plus, - sym__list_marker_task_begin, - sym_list_marker_definition, - sym_list_marker_decimal_period, - sym_list_marker_lower_alpha_period, - sym_list_marker_upper_alpha_period, - sym_list_marker_lower_roman_period, - sym_list_marker_upper_roman_period, - sym_list_marker_decimal_paren, - sym_list_marker_lower_alpha_paren, - sym_list_marker_upper_alpha_paren, - sym_list_marker_lower_roman_paren, - sym_list_marker_upper_roman_paren, - sym_list_marker_decimal_parens, - sym_list_marker_lower_alpha_parens, - sym_list_marker_upper_alpha_parens, - sym_list_marker_lower_roman_parens, - sym_list_marker_upper_roman_parens, - sym__block_quote_begin, - sym__block_quote_continuation, - sym__thematic_break_dash, - sym__thematic_break_star, - ts_builtin_sym_end, - [7053] = 2, - ACTIONS(778), 10, + ACTIONS(887), 1, + sym__block_close, + STATE(30), 1, + sym_list_marker_task, + STATE(614), 1, + sym__inline, + STATE(297), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(13), 8, anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -20737,41 +19801,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(776), 29, - sym__block_close, - sym__newline, - sym__heading_begin, - sym__div_begin, - sym__code_block_begin, + [7079] = 11, + ACTIONS(31), 1, + sym__list_marker_task_begin, + ACTIONS(871), 1, + anon_sym_PIPE, + ACTIONS(873), 1, + anon_sym_LBRACK_CARET, + ACTIONS(877), 1, sym_list_marker_dash, + ACTIONS(879), 1, sym_list_marker_star, + ACTIONS(881), 1, sym_list_marker_plus, - sym__list_marker_task_begin, - sym_list_marker_definition, - sym_list_marker_decimal_period, - sym_list_marker_lower_alpha_period, - sym_list_marker_upper_alpha_period, - sym_list_marker_lower_roman_period, - sym_list_marker_upper_roman_period, - sym_list_marker_decimal_paren, - sym_list_marker_lower_alpha_paren, - sym_list_marker_upper_alpha_paren, - sym_list_marker_lower_roman_paren, - sym_list_marker_upper_roman_paren, - sym_list_marker_decimal_parens, - sym_list_marker_lower_alpha_parens, - sym_list_marker_upper_alpha_parens, - sym_list_marker_lower_roman_parens, - sym_list_marker_upper_roman_parens, - sym__block_quote_begin, - sym__block_quote_continuation, - sym__thematic_break_dash, - sym__thematic_break_star, - [7097] = 2, - ACTIONS(782), 10, + ACTIONS(889), 1, + sym__block_close, + STATE(30), 1, + sym_list_marker_task, + STATE(614), 1, + sym__inline, + STATE(297), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(13), 8, anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -20779,41 +19832,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(780), 29, - sym__block_close, - sym__newline, - sym__heading_begin, - sym__div_begin, - sym__code_block_begin, + [7121] = 11, + ACTIONS(31), 1, + sym__list_marker_task_begin, + ACTIONS(871), 1, + anon_sym_PIPE, + ACTIONS(873), 1, + anon_sym_LBRACK_CARET, + ACTIONS(877), 1, sym_list_marker_dash, + ACTIONS(879), 1, sym_list_marker_star, + ACTIONS(881), 1, sym_list_marker_plus, - sym__list_marker_task_begin, - sym_list_marker_definition, - sym_list_marker_decimal_period, - sym_list_marker_lower_alpha_period, - sym_list_marker_upper_alpha_period, - sym_list_marker_lower_roman_period, - sym_list_marker_upper_roman_period, - sym_list_marker_decimal_paren, - sym_list_marker_lower_alpha_paren, - sym_list_marker_upper_alpha_paren, - sym_list_marker_lower_roman_paren, - sym_list_marker_upper_roman_paren, - sym_list_marker_decimal_parens, - sym_list_marker_lower_alpha_parens, - sym_list_marker_upper_alpha_parens, - sym_list_marker_lower_roman_parens, - sym_list_marker_upper_roman_parens, - sym__block_quote_begin, - sym__block_quote_continuation, - sym__thematic_break_dash, - sym__thematic_break_star, - [7141] = 2, - ACTIONS(896), 10, + ACTIONS(891), 1, + sym__block_close, + STATE(30), 1, + sym_list_marker_task, + STATE(614), 1, + sym__inline, + STATE(297), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(13), 8, anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -20821,41 +19863,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(898), 29, - sym__newline, - sym__heading_begin, - sym__div_begin, - sym__code_block_begin, + [7163] = 11, + ACTIONS(31), 1, + sym__list_marker_task_begin, + ACTIONS(871), 1, + anon_sym_PIPE, + ACTIONS(873), 1, + anon_sym_LBRACK_CARET, + ACTIONS(877), 1, sym_list_marker_dash, + ACTIONS(879), 1, sym_list_marker_star, + ACTIONS(881), 1, sym_list_marker_plus, - sym__list_marker_task_begin, - sym_list_marker_definition, - sym_list_marker_decimal_period, - sym_list_marker_lower_alpha_period, - sym_list_marker_upper_alpha_period, - sym_list_marker_lower_roman_period, - sym_list_marker_upper_roman_period, - sym_list_marker_decimal_paren, - sym_list_marker_lower_alpha_paren, - sym_list_marker_upper_alpha_paren, - sym_list_marker_lower_roman_paren, - sym_list_marker_upper_roman_paren, - sym_list_marker_decimal_parens, - sym_list_marker_lower_alpha_parens, - sym_list_marker_upper_alpha_parens, - sym_list_marker_lower_roman_parens, - sym_list_marker_upper_roman_parens, - sym__block_quote_begin, - sym__block_quote_continuation, - sym__thematic_break_dash, - sym__thematic_break_star, - sym__footnote_end, - [7185] = 2, - ACTIONS(714), 10, + ACTIONS(893), 1, + sym__block_close, + STATE(30), 1, + sym_list_marker_task, + STATE(614), 1, + sym__inline, + STATE(297), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(13), 8, anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -20863,41 +19894,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(712), 29, - sym__newline, - sym__heading_begin, - sym__div_begin, - sym__code_block_begin, + [7205] = 11, + ACTIONS(31), 1, + sym__list_marker_task_begin, + ACTIONS(871), 1, + anon_sym_PIPE, + ACTIONS(873), 1, + anon_sym_LBRACK_CARET, + ACTIONS(877), 1, sym_list_marker_dash, + ACTIONS(879), 1, sym_list_marker_star, + ACTIONS(881), 1, sym_list_marker_plus, - sym__list_marker_task_begin, - sym_list_marker_definition, - sym_list_marker_decimal_period, - sym_list_marker_lower_alpha_period, - sym_list_marker_upper_alpha_period, - sym_list_marker_lower_roman_period, - sym_list_marker_upper_roman_period, - sym_list_marker_decimal_paren, - sym_list_marker_lower_alpha_paren, - sym_list_marker_upper_alpha_paren, - sym_list_marker_lower_roman_paren, - sym_list_marker_upper_roman_paren, - sym_list_marker_decimal_parens, - sym_list_marker_lower_alpha_parens, - sym_list_marker_upper_alpha_parens, - sym_list_marker_lower_roman_parens, - sym_list_marker_upper_roman_parens, - sym__block_quote_begin, - sym__block_quote_continuation, - sym__thematic_break_dash, - sym__thematic_break_star, - sym__footnote_end, - [7229] = 2, - ACTIONS(710), 10, + ACTIONS(895), 1, + sym__block_close, + STATE(30), 1, + sym_list_marker_task, + STATE(614), 1, + sym__inline, + STATE(297), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(13), 8, anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -20905,41 +19925,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(708), 29, - sym__newline, - sym__heading_begin, - sym__div_begin, - sym__code_block_begin, + [7247] = 11, + ACTIONS(31), 1, + sym__list_marker_task_begin, + ACTIONS(871), 1, + anon_sym_PIPE, + ACTIONS(873), 1, + anon_sym_LBRACK_CARET, + ACTIONS(877), 1, sym_list_marker_dash, + ACTIONS(879), 1, sym_list_marker_star, + ACTIONS(881), 1, sym_list_marker_plus, - sym__list_marker_task_begin, - sym_list_marker_definition, - sym_list_marker_decimal_period, - sym_list_marker_lower_alpha_period, - sym_list_marker_upper_alpha_period, - sym_list_marker_lower_roman_period, - sym_list_marker_upper_roman_period, - sym_list_marker_decimal_paren, - sym_list_marker_lower_alpha_paren, - sym_list_marker_upper_alpha_paren, - sym_list_marker_lower_roman_paren, - sym_list_marker_upper_roman_paren, - sym_list_marker_decimal_parens, - sym_list_marker_lower_alpha_parens, - sym_list_marker_upper_alpha_parens, - sym_list_marker_lower_roman_parens, - sym_list_marker_upper_roman_parens, - sym__block_quote_begin, - sym__block_quote_continuation, - sym__thematic_break_dash, - sym__thematic_break_star, - sym__footnote_end, - [7273] = 2, - ACTIONS(722), 10, + ACTIONS(897), 1, + sym__block_close, + STATE(30), 1, + sym_list_marker_task, + STATE(614), 1, + sym__inline, + STATE(297), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(13), 8, anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -20947,41 +19956,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(720), 29, - sym__newline, - sym__heading_begin, - sym__div_begin, - sym__code_block_begin, + [7289] = 11, + ACTIONS(31), 1, + sym__list_marker_task_begin, + ACTIONS(871), 1, + anon_sym_PIPE, + ACTIONS(873), 1, + anon_sym_LBRACK_CARET, + ACTIONS(877), 1, sym_list_marker_dash, + ACTIONS(879), 1, sym_list_marker_star, + ACTIONS(881), 1, sym_list_marker_plus, - sym__list_marker_task_begin, - sym_list_marker_definition, - sym_list_marker_decimal_period, - sym_list_marker_lower_alpha_period, - sym_list_marker_upper_alpha_period, - sym_list_marker_lower_roman_period, - sym_list_marker_upper_roman_period, - sym_list_marker_decimal_paren, - sym_list_marker_lower_alpha_paren, - sym_list_marker_upper_alpha_paren, - sym_list_marker_lower_roman_paren, - sym_list_marker_upper_roman_paren, - sym_list_marker_decimal_parens, - sym_list_marker_lower_alpha_parens, - sym_list_marker_upper_alpha_parens, - sym_list_marker_lower_roman_parens, - sym_list_marker_upper_roman_parens, - sym__block_quote_begin, - sym__block_quote_continuation, - sym__thematic_break_dash, - sym__thematic_break_star, - sym__footnote_end, - [7317] = 2, - ACTIONS(742), 10, + ACTIONS(899), 1, + sym__block_close, + STATE(30), 1, + sym_list_marker_task, + STATE(614), 1, + sym__inline, + STATE(297), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(13), 8, anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -20989,41 +19987,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(740), 29, - sym__newline, - sym__heading_begin, - sym__div_begin, - sym__code_block_begin, - sym_list_marker_dash, - sym_list_marker_star, - sym_list_marker_plus, - sym__list_marker_task_begin, - sym_list_marker_definition, - sym_list_marker_decimal_period, - sym_list_marker_lower_alpha_period, - sym_list_marker_upper_alpha_period, - sym_list_marker_lower_roman_period, - sym_list_marker_upper_roman_period, - sym_list_marker_decimal_paren, - sym_list_marker_lower_alpha_paren, - sym_list_marker_upper_alpha_paren, - sym_list_marker_lower_roman_paren, - sym_list_marker_upper_roman_paren, - sym_list_marker_decimal_parens, - sym_list_marker_lower_alpha_parens, - sym_list_marker_upper_alpha_parens, - sym_list_marker_lower_roman_parens, - sym_list_marker_upper_roman_parens, - sym__block_quote_begin, + [7331] = 9, + ACTIONS(873), 1, + anon_sym_LBRACK_CARET, + ACTIONS(901), 1, sym__block_quote_continuation, - sym__thematic_break_dash, - sym__thematic_break_star, - sym__footnote_end, - [7361] = 2, - ACTIONS(774), 10, + STATE(303), 1, + sym__block_quote_prefix, + STATE(317), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(616), 1, + sym__inline, + STATE(775), 1, + sym__paragraph_inline_content, + STATE(807), 1, + sym__paragraph_content, + STATE(297), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(13), 9, anon_sym_LBRACK, anon_sym_PIPE, - anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -21031,41 +20015,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(772), 29, - sym__newline, - sym__heading_begin, - sym__div_begin, - sym__code_block_begin, + [7368] = 10, + ACTIONS(31), 1, + sym__list_marker_task_begin, + ACTIONS(873), 1, + anon_sym_LBRACK_CARET, + ACTIONS(877), 1, sym_list_marker_dash, + ACTIONS(879), 1, sym_list_marker_star, + ACTIONS(881), 1, sym_list_marker_plus, - sym__list_marker_task_begin, - sym_list_marker_definition, - sym_list_marker_decimal_period, - sym_list_marker_lower_alpha_period, - sym_list_marker_upper_alpha_period, - sym_list_marker_lower_roman_period, - sym_list_marker_upper_roman_period, - sym_list_marker_decimal_paren, - sym_list_marker_lower_alpha_paren, - sym_list_marker_upper_alpha_paren, - sym_list_marker_lower_roman_paren, - sym_list_marker_upper_roman_paren, - sym_list_marker_decimal_parens, - sym_list_marker_lower_alpha_parens, - sym_list_marker_upper_alpha_parens, - sym_list_marker_lower_roman_parens, - sym_list_marker_upper_roman_parens, - sym__block_quote_begin, - sym__block_quote_continuation, - sym__thematic_break_dash, - sym__thematic_break_star, - sym__footnote_end, - [7405] = 2, - ACTIONS(794), 10, - anon_sym_LBRACK, + ACTIONS(903), 1, anon_sym_PIPE, - anon_sym_LBRACK_CARET, + STATE(30), 1, + sym_list_marker_task, + STATE(614), 1, + sym__inline, + STATE(297), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(13), 8, + anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -21073,2686 +20044,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(792), 29, - sym__newline, - sym__heading_begin, - sym__div_begin, - sym__code_block_begin, - sym_list_marker_dash, - sym_list_marker_star, - sym_list_marker_plus, - sym__list_marker_task_begin, - sym_list_marker_definition, - sym_list_marker_decimal_period, - sym_list_marker_lower_alpha_period, - sym_list_marker_upper_alpha_period, - sym_list_marker_lower_roman_period, - sym_list_marker_upper_roman_period, - sym_list_marker_decimal_paren, - sym_list_marker_lower_alpha_paren, - sym_list_marker_upper_alpha_paren, - sym_list_marker_lower_roman_paren, - sym_list_marker_upper_roman_paren, - sym_list_marker_decimal_parens, - sym_list_marker_lower_alpha_parens, - sym_list_marker_upper_alpha_parens, - sym_list_marker_lower_roman_parens, - sym_list_marker_upper_roman_parens, - sym__block_quote_begin, - sym__block_quote_continuation, - sym__thematic_break_dash, - sym__thematic_break_star, - sym__footnote_end, - [7449] = 2, - ACTIONS(810), 10, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - ACTIONS(808), 29, - sym__newline, - sym__heading_begin, - sym__div_begin, - sym__code_block_begin, - sym_list_marker_dash, - sym_list_marker_star, - sym_list_marker_plus, - sym__list_marker_task_begin, - sym_list_marker_definition, - sym_list_marker_decimal_period, - sym_list_marker_lower_alpha_period, - sym_list_marker_upper_alpha_period, - sym_list_marker_lower_roman_period, - sym_list_marker_upper_roman_period, - sym_list_marker_decimal_paren, - sym_list_marker_lower_alpha_paren, - sym_list_marker_upper_alpha_paren, - sym_list_marker_lower_roman_paren, - sym_list_marker_upper_roman_paren, - sym_list_marker_decimal_parens, - sym_list_marker_lower_alpha_parens, - sym_list_marker_upper_alpha_parens, - sym_list_marker_lower_roman_parens, - sym_list_marker_upper_roman_parens, - sym__block_quote_begin, - sym__block_quote_continuation, - sym__thematic_break_dash, - sym__thematic_break_star, - sym__footnote_end, - [7493] = 2, - ACTIONS(812), 10, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - ACTIONS(814), 29, - sym__newline, - sym__heading_begin, - sym__div_begin, - sym__code_block_begin, - sym_list_marker_dash, - sym_list_marker_star, - sym_list_marker_plus, - sym__list_marker_task_begin, - sym_list_marker_definition, - sym_list_marker_decimal_period, - sym_list_marker_lower_alpha_period, - sym_list_marker_upper_alpha_period, - sym_list_marker_lower_roman_period, - sym_list_marker_upper_roman_period, - sym_list_marker_decimal_paren, - sym_list_marker_lower_alpha_paren, - sym_list_marker_upper_alpha_paren, - sym_list_marker_lower_roman_paren, - sym_list_marker_upper_roman_paren, - sym_list_marker_decimal_parens, - sym_list_marker_lower_alpha_parens, - sym_list_marker_upper_alpha_parens, - sym_list_marker_lower_roman_parens, - sym_list_marker_upper_roman_parens, - sym__block_quote_begin, - sym__block_quote_continuation, - sym__thematic_break_dash, - sym__thematic_break_star, - sym__footnote_end, - [7537] = 2, - ACTIONS(816), 10, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - ACTIONS(818), 29, - sym__newline, - sym__heading_begin, - sym__div_begin, - sym__code_block_begin, - sym_list_marker_dash, - sym_list_marker_star, - sym_list_marker_plus, - sym__list_marker_task_begin, - sym_list_marker_definition, - sym_list_marker_decimal_period, - sym_list_marker_lower_alpha_period, - sym_list_marker_upper_alpha_period, - sym_list_marker_lower_roman_period, - sym_list_marker_upper_roman_period, - sym_list_marker_decimal_paren, - sym_list_marker_lower_alpha_paren, - sym_list_marker_upper_alpha_paren, - sym_list_marker_lower_roman_paren, - sym_list_marker_upper_roman_paren, - sym_list_marker_decimal_parens, - sym_list_marker_lower_alpha_parens, - sym_list_marker_upper_alpha_parens, - sym_list_marker_lower_roman_parens, - sym_list_marker_upper_roman_parens, - sym__block_quote_begin, - sym__block_quote_continuation, - sym__thematic_break_dash, - sym__thematic_break_star, - sym__footnote_end, - [7581] = 2, - ACTIONS(820), 10, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - ACTIONS(822), 29, - sym__newline, - sym__heading_begin, - sym__div_begin, - sym__code_block_begin, - sym_list_marker_dash, - sym_list_marker_star, - sym_list_marker_plus, - sym__list_marker_task_begin, - sym_list_marker_definition, - sym_list_marker_decimal_period, - sym_list_marker_lower_alpha_period, - sym_list_marker_upper_alpha_period, - sym_list_marker_lower_roman_period, - sym_list_marker_upper_roman_period, - sym_list_marker_decimal_paren, - sym_list_marker_lower_alpha_paren, - sym_list_marker_upper_alpha_paren, - sym_list_marker_lower_roman_paren, - sym_list_marker_upper_roman_paren, - sym_list_marker_decimal_parens, - sym_list_marker_lower_alpha_parens, - sym_list_marker_upper_alpha_parens, - sym_list_marker_lower_roman_parens, - sym_list_marker_upper_roman_parens, - sym__block_quote_begin, - sym__block_quote_continuation, - sym__thematic_break_dash, - sym__thematic_break_star, - sym__footnote_end, - [7625] = 2, - ACTIONS(824), 10, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - ACTIONS(826), 29, - sym__newline, - sym__heading_begin, - sym__div_begin, - sym__code_block_begin, - sym_list_marker_dash, - sym_list_marker_star, - sym_list_marker_plus, - sym__list_marker_task_begin, - sym_list_marker_definition, - sym_list_marker_decimal_period, - sym_list_marker_lower_alpha_period, - sym_list_marker_upper_alpha_period, - sym_list_marker_lower_roman_period, - sym_list_marker_upper_roman_period, - sym_list_marker_decimal_paren, - sym_list_marker_lower_alpha_paren, - sym_list_marker_upper_alpha_paren, - sym_list_marker_lower_roman_paren, - sym_list_marker_upper_roman_paren, - sym_list_marker_decimal_parens, - sym_list_marker_lower_alpha_parens, - sym_list_marker_upper_alpha_parens, - sym_list_marker_lower_roman_parens, - sym_list_marker_upper_roman_parens, - sym__block_quote_begin, - sym__block_quote_continuation, - sym__thematic_break_dash, - sym__thematic_break_star, - sym__footnote_end, - [7669] = 2, - ACTIONS(828), 10, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - ACTIONS(830), 29, - sym__newline, - sym__heading_begin, - sym__div_begin, - sym__code_block_begin, - sym_list_marker_dash, - sym_list_marker_star, - sym_list_marker_plus, - sym__list_marker_task_begin, - sym_list_marker_definition, - sym_list_marker_decimal_period, - sym_list_marker_lower_alpha_period, - sym_list_marker_upper_alpha_period, - sym_list_marker_lower_roman_period, - sym_list_marker_upper_roman_period, - sym_list_marker_decimal_paren, - sym_list_marker_lower_alpha_paren, - sym_list_marker_upper_alpha_paren, - sym_list_marker_lower_roman_paren, - sym_list_marker_upper_roman_paren, - sym_list_marker_decimal_parens, - sym_list_marker_lower_alpha_parens, - sym_list_marker_upper_alpha_parens, - sym_list_marker_lower_roman_parens, - sym_list_marker_upper_roman_parens, - sym__block_quote_begin, - sym__block_quote_continuation, - sym__thematic_break_dash, - sym__thematic_break_star, - sym__footnote_end, - [7713] = 2, - ACTIONS(832), 10, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - ACTIONS(834), 29, - sym__newline, - sym__heading_begin, - sym__div_begin, - sym__code_block_begin, - sym_list_marker_dash, - sym_list_marker_star, - sym_list_marker_plus, - sym__list_marker_task_begin, - sym_list_marker_definition, - sym_list_marker_decimal_period, - sym_list_marker_lower_alpha_period, - sym_list_marker_upper_alpha_period, - sym_list_marker_lower_roman_period, - sym_list_marker_upper_roman_period, - sym_list_marker_decimal_paren, - sym_list_marker_lower_alpha_paren, - sym_list_marker_upper_alpha_paren, - sym_list_marker_lower_roman_paren, - sym_list_marker_upper_roman_paren, - sym_list_marker_decimal_parens, - sym_list_marker_lower_alpha_parens, - sym_list_marker_upper_alpha_parens, - sym_list_marker_lower_roman_parens, - sym_list_marker_upper_roman_parens, - sym__block_quote_begin, - sym__block_quote_continuation, - sym__thematic_break_dash, - sym__thematic_break_star, - sym__footnote_end, - [7757] = 2, - ACTIONS(836), 10, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - ACTIONS(838), 29, - sym__newline, - sym__heading_begin, - sym__div_begin, - sym__code_block_begin, - sym_list_marker_dash, - sym_list_marker_star, - sym_list_marker_plus, - sym__list_marker_task_begin, - sym_list_marker_definition, - sym_list_marker_decimal_period, - sym_list_marker_lower_alpha_period, - sym_list_marker_upper_alpha_period, - sym_list_marker_lower_roman_period, - sym_list_marker_upper_roman_period, - sym_list_marker_decimal_paren, - sym_list_marker_lower_alpha_paren, - sym_list_marker_upper_alpha_paren, - sym_list_marker_lower_roman_paren, - sym_list_marker_upper_roman_paren, - sym_list_marker_decimal_parens, - sym_list_marker_lower_alpha_parens, - sym_list_marker_upper_alpha_parens, - sym_list_marker_lower_roman_parens, - sym_list_marker_upper_roman_parens, - sym__block_quote_begin, - sym__block_quote_continuation, - sym__thematic_break_dash, - sym__thematic_break_star, - sym__footnote_end, - [7801] = 2, - ACTIONS(840), 10, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - ACTIONS(842), 29, - sym__newline, - sym__heading_begin, - sym__div_begin, - sym__code_block_begin, - sym_list_marker_dash, - sym_list_marker_star, - sym_list_marker_plus, - sym__list_marker_task_begin, - sym_list_marker_definition, - sym_list_marker_decimal_period, - sym_list_marker_lower_alpha_period, - sym_list_marker_upper_alpha_period, - sym_list_marker_lower_roman_period, - sym_list_marker_upper_roman_period, - sym_list_marker_decimal_paren, - sym_list_marker_lower_alpha_paren, - sym_list_marker_upper_alpha_paren, - sym_list_marker_lower_roman_paren, - sym_list_marker_upper_roman_paren, - sym_list_marker_decimal_parens, - sym_list_marker_lower_alpha_parens, - sym_list_marker_upper_alpha_parens, - sym_list_marker_lower_roman_parens, - sym_list_marker_upper_roman_parens, - sym__block_quote_begin, - sym__block_quote_continuation, - sym__thematic_break_dash, - sym__thematic_break_star, - sym__footnote_end, - [7845] = 2, - ACTIONS(844), 10, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - ACTIONS(846), 29, - sym__newline, - sym__heading_begin, - sym__div_begin, - sym__code_block_begin, - sym_list_marker_dash, - sym_list_marker_star, - sym_list_marker_plus, - sym__list_marker_task_begin, - sym_list_marker_definition, - sym_list_marker_decimal_period, - sym_list_marker_lower_alpha_period, - sym_list_marker_upper_alpha_period, - sym_list_marker_lower_roman_period, - sym_list_marker_upper_roman_period, - sym_list_marker_decimal_paren, - sym_list_marker_lower_alpha_paren, - sym_list_marker_upper_alpha_paren, - sym_list_marker_lower_roman_paren, - sym_list_marker_upper_roman_paren, - sym_list_marker_decimal_parens, - sym_list_marker_lower_alpha_parens, - sym_list_marker_upper_alpha_parens, - sym_list_marker_lower_roman_parens, - sym_list_marker_upper_roman_parens, - sym__block_quote_begin, - sym__block_quote_continuation, - sym__thematic_break_dash, - sym__thematic_break_star, - sym__footnote_end, - [7889] = 2, - ACTIONS(848), 10, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - ACTIONS(850), 29, - sym__newline, - sym__heading_begin, - sym__div_begin, - sym__code_block_begin, - sym_list_marker_dash, - sym_list_marker_star, - sym_list_marker_plus, - sym__list_marker_task_begin, - sym_list_marker_definition, - sym_list_marker_decimal_period, - sym_list_marker_lower_alpha_period, - sym_list_marker_upper_alpha_period, - sym_list_marker_lower_roman_period, - sym_list_marker_upper_roman_period, - sym_list_marker_decimal_paren, - sym_list_marker_lower_alpha_paren, - sym_list_marker_upper_alpha_paren, - sym_list_marker_lower_roman_paren, - sym_list_marker_upper_roman_paren, - sym_list_marker_decimal_parens, - sym_list_marker_lower_alpha_parens, - sym_list_marker_upper_alpha_parens, - sym_list_marker_lower_roman_parens, - sym_list_marker_upper_roman_parens, - sym__block_quote_begin, - sym__block_quote_continuation, - sym__thematic_break_dash, - sym__thematic_break_star, - sym__footnote_end, - [7933] = 2, - ACTIONS(852), 10, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - ACTIONS(854), 29, - sym__newline, - sym__heading_begin, - sym__div_begin, - sym__code_block_begin, - sym_list_marker_dash, - sym_list_marker_star, - sym_list_marker_plus, - sym__list_marker_task_begin, - sym_list_marker_definition, - sym_list_marker_decimal_period, - sym_list_marker_lower_alpha_period, - sym_list_marker_upper_alpha_period, - sym_list_marker_lower_roman_period, - sym_list_marker_upper_roman_period, - sym_list_marker_decimal_paren, - sym_list_marker_lower_alpha_paren, - sym_list_marker_upper_alpha_paren, - sym_list_marker_lower_roman_paren, - sym_list_marker_upper_roman_paren, - sym_list_marker_decimal_parens, - sym_list_marker_lower_alpha_parens, - sym_list_marker_upper_alpha_parens, - sym_list_marker_lower_roman_parens, - sym_list_marker_upper_roman_parens, - sym__block_quote_begin, - sym__block_quote_continuation, - sym__thematic_break_dash, - sym__thematic_break_star, - sym__footnote_end, - [7977] = 2, - ACTIONS(856), 10, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - ACTIONS(858), 29, - sym__newline, - sym__heading_begin, - sym__div_begin, - sym__code_block_begin, - sym_list_marker_dash, - sym_list_marker_star, - sym_list_marker_plus, - sym__list_marker_task_begin, - sym_list_marker_definition, - sym_list_marker_decimal_period, - sym_list_marker_lower_alpha_period, - sym_list_marker_upper_alpha_period, - sym_list_marker_lower_roman_period, - sym_list_marker_upper_roman_period, - sym_list_marker_decimal_paren, - sym_list_marker_lower_alpha_paren, - sym_list_marker_upper_alpha_paren, - sym_list_marker_lower_roman_paren, - sym_list_marker_upper_roman_paren, - sym_list_marker_decimal_parens, - sym_list_marker_lower_alpha_parens, - sym_list_marker_upper_alpha_parens, - sym_list_marker_lower_roman_parens, - sym_list_marker_upper_roman_parens, - sym__block_quote_begin, - sym__block_quote_continuation, - sym__thematic_break_dash, - sym__thematic_break_star, - sym__footnote_end, - [8021] = 2, - ACTIONS(860), 10, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - ACTIONS(862), 29, - sym__newline, - sym__heading_begin, - sym__div_begin, - sym__code_block_begin, - sym_list_marker_dash, - sym_list_marker_star, - sym_list_marker_plus, - sym__list_marker_task_begin, - sym_list_marker_definition, - sym_list_marker_decimal_period, - sym_list_marker_lower_alpha_period, - sym_list_marker_upper_alpha_period, - sym_list_marker_lower_roman_period, - sym_list_marker_upper_roman_period, - sym_list_marker_decimal_paren, - sym_list_marker_lower_alpha_paren, - sym_list_marker_upper_alpha_paren, - sym_list_marker_lower_roman_paren, - sym_list_marker_upper_roman_paren, - sym_list_marker_decimal_parens, - sym_list_marker_lower_alpha_parens, - sym_list_marker_upper_alpha_parens, - sym_list_marker_lower_roman_parens, - sym_list_marker_upper_roman_parens, - sym__block_quote_begin, - sym__block_quote_continuation, - sym__thematic_break_dash, - sym__thematic_break_star, - sym__footnote_end, - [8065] = 2, - ACTIONS(864), 10, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - ACTIONS(866), 29, - sym__newline, - sym__heading_begin, - sym__div_begin, - sym__code_block_begin, - sym_list_marker_dash, - sym_list_marker_star, - sym_list_marker_plus, - sym__list_marker_task_begin, - sym_list_marker_definition, - sym_list_marker_decimal_period, - sym_list_marker_lower_alpha_period, - sym_list_marker_upper_alpha_period, - sym_list_marker_lower_roman_period, - sym_list_marker_upper_roman_period, - sym_list_marker_decimal_paren, - sym_list_marker_lower_alpha_paren, - sym_list_marker_upper_alpha_paren, - sym_list_marker_lower_roman_paren, - sym_list_marker_upper_roman_paren, - sym_list_marker_decimal_parens, - sym_list_marker_lower_alpha_parens, - sym_list_marker_upper_alpha_parens, - sym_list_marker_lower_roman_parens, - sym_list_marker_upper_roman_parens, - sym__block_quote_begin, - sym__block_quote_continuation, - sym__thematic_break_dash, - sym__thematic_break_star, - sym__footnote_end, - [8109] = 2, - ACTIONS(868), 10, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - ACTIONS(870), 29, - sym__newline, - sym__heading_begin, - sym__div_begin, - sym__code_block_begin, - sym_list_marker_dash, - sym_list_marker_star, - sym_list_marker_plus, - sym__list_marker_task_begin, - sym_list_marker_definition, - sym_list_marker_decimal_period, - sym_list_marker_lower_alpha_period, - sym_list_marker_upper_alpha_period, - sym_list_marker_lower_roman_period, - sym_list_marker_upper_roman_period, - sym_list_marker_decimal_paren, - sym_list_marker_lower_alpha_paren, - sym_list_marker_upper_alpha_paren, - sym_list_marker_lower_roman_paren, - sym_list_marker_upper_roman_paren, - sym_list_marker_decimal_parens, - sym_list_marker_lower_alpha_parens, - sym_list_marker_upper_alpha_parens, - sym_list_marker_lower_roman_parens, - sym_list_marker_upper_roman_parens, - sym__block_quote_begin, - sym__block_quote_continuation, - sym__thematic_break_dash, - sym__thematic_break_star, - sym__footnote_end, - [8153] = 2, - ACTIONS(554), 10, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - ACTIONS(556), 29, - sym__newline, - sym__heading_begin, - sym__div_begin, - sym__code_block_begin, - sym_list_marker_dash, - sym_list_marker_star, - sym_list_marker_plus, - sym__list_marker_task_begin, - sym_list_marker_definition, - sym_list_marker_decimal_period, - sym_list_marker_lower_alpha_period, - sym_list_marker_upper_alpha_period, - sym_list_marker_lower_roman_period, - sym_list_marker_upper_roman_period, - sym_list_marker_decimal_paren, - sym_list_marker_lower_alpha_paren, - sym_list_marker_upper_alpha_paren, - sym_list_marker_lower_roman_paren, - sym_list_marker_upper_roman_paren, - sym_list_marker_decimal_parens, - sym_list_marker_lower_alpha_parens, - sym_list_marker_upper_alpha_parens, - sym_list_marker_lower_roman_parens, - sym_list_marker_upper_roman_parens, - sym__block_quote_begin, - sym__block_quote_continuation, - sym__thematic_break_dash, - sym__thematic_break_star, - sym__footnote_end, - [8197] = 2, - ACTIONS(872), 10, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - ACTIONS(874), 29, - sym__newline, - sym__heading_begin, - sym__div_begin, - sym__code_block_begin, - sym_list_marker_dash, - sym_list_marker_star, - sym_list_marker_plus, - sym__list_marker_task_begin, - sym_list_marker_definition, - sym_list_marker_decimal_period, - sym_list_marker_lower_alpha_period, - sym_list_marker_upper_alpha_period, - sym_list_marker_lower_roman_period, - sym_list_marker_upper_roman_period, - sym_list_marker_decimal_paren, - sym_list_marker_lower_alpha_paren, - sym_list_marker_upper_alpha_paren, - sym_list_marker_lower_roman_paren, - sym_list_marker_upper_roman_paren, - sym_list_marker_decimal_parens, - sym_list_marker_lower_alpha_parens, - sym_list_marker_upper_alpha_parens, - sym_list_marker_lower_roman_parens, - sym_list_marker_upper_roman_parens, - sym__block_quote_begin, - sym__block_quote_continuation, - sym__thematic_break_dash, - sym__thematic_break_star, - sym__footnote_end, - [8241] = 2, - ACTIONS(876), 10, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - ACTIONS(878), 29, - sym__newline, - sym__heading_begin, - sym__div_begin, - sym__code_block_begin, - sym_list_marker_dash, - sym_list_marker_star, - sym_list_marker_plus, - sym__list_marker_task_begin, - sym_list_marker_definition, - sym_list_marker_decimal_period, - sym_list_marker_lower_alpha_period, - sym_list_marker_upper_alpha_period, - sym_list_marker_lower_roman_period, - sym_list_marker_upper_roman_period, - sym_list_marker_decimal_paren, - sym_list_marker_lower_alpha_paren, - sym_list_marker_upper_alpha_paren, - sym_list_marker_lower_roman_paren, - sym_list_marker_upper_roman_paren, - sym_list_marker_decimal_parens, - sym_list_marker_lower_alpha_parens, - sym_list_marker_upper_alpha_parens, - sym_list_marker_lower_roman_parens, - sym_list_marker_upper_roman_parens, - sym__block_quote_begin, - sym__block_quote_continuation, - sym__thematic_break_dash, - sym__thematic_break_star, - sym__footnote_end, - [8285] = 2, - ACTIONS(880), 10, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - ACTIONS(882), 29, - sym__newline, - sym__heading_begin, - sym__div_begin, - sym__code_block_begin, - sym_list_marker_dash, - sym_list_marker_star, - sym_list_marker_plus, - sym__list_marker_task_begin, - sym_list_marker_definition, - sym_list_marker_decimal_period, - sym_list_marker_lower_alpha_period, - sym_list_marker_upper_alpha_period, - sym_list_marker_lower_roman_period, - sym_list_marker_upper_roman_period, - sym_list_marker_decimal_paren, - sym_list_marker_lower_alpha_paren, - sym_list_marker_upper_alpha_paren, - sym_list_marker_lower_roman_paren, - sym_list_marker_upper_roman_paren, - sym_list_marker_decimal_parens, - sym_list_marker_lower_alpha_parens, - sym_list_marker_upper_alpha_parens, - sym_list_marker_lower_roman_parens, - sym_list_marker_upper_roman_parens, - sym__block_quote_begin, - sym__block_quote_continuation, - sym__thematic_break_dash, - sym__thematic_break_star, - sym__footnote_end, - [8329] = 2, - ACTIONS(884), 10, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - ACTIONS(886), 29, - sym__newline, - sym__heading_begin, - sym__div_begin, - sym__code_block_begin, - sym_list_marker_dash, - sym_list_marker_star, - sym_list_marker_plus, - sym__list_marker_task_begin, - sym_list_marker_definition, - sym_list_marker_decimal_period, - sym_list_marker_lower_alpha_period, - sym_list_marker_upper_alpha_period, - sym_list_marker_lower_roman_period, - sym_list_marker_upper_roman_period, - sym_list_marker_decimal_paren, - sym_list_marker_lower_alpha_paren, - sym_list_marker_upper_alpha_paren, - sym_list_marker_lower_roman_paren, - sym_list_marker_upper_roman_paren, - sym_list_marker_decimal_parens, - sym_list_marker_lower_alpha_parens, - sym_list_marker_upper_alpha_parens, - sym_list_marker_lower_roman_parens, - sym_list_marker_upper_roman_parens, - sym__block_quote_begin, - sym__block_quote_continuation, - sym__thematic_break_dash, - sym__thematic_break_star, - sym__footnote_end, - [8373] = 2, - ACTIONS(872), 10, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - ACTIONS(874), 29, - sym__newline, - sym__heading_begin, - sym__div_begin, - sym__code_block_begin, - sym_list_marker_dash, - sym_list_marker_star, - sym_list_marker_plus, - sym__list_marker_task_begin, - sym_list_marker_definition, - sym_list_marker_decimal_period, - sym_list_marker_lower_alpha_period, - sym_list_marker_upper_alpha_period, - sym_list_marker_lower_roman_period, - sym_list_marker_upper_roman_period, - sym_list_marker_decimal_paren, - sym_list_marker_lower_alpha_paren, - sym_list_marker_upper_alpha_paren, - sym_list_marker_lower_roman_paren, - sym_list_marker_upper_roman_paren, - sym_list_marker_decimal_parens, - sym_list_marker_lower_alpha_parens, - sym_list_marker_upper_alpha_parens, - sym_list_marker_lower_roman_parens, - sym_list_marker_upper_roman_parens, - sym__block_quote_begin, - sym__block_quote_continuation, - sym__thematic_break_dash, - sym__thematic_break_star, - ts_builtin_sym_end, - [8417] = 2, - ACTIONS(888), 10, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - ACTIONS(890), 29, - sym__newline, - sym__heading_begin, - sym__div_begin, - sym__code_block_begin, - sym_list_marker_dash, - sym_list_marker_star, - sym_list_marker_plus, - sym__list_marker_task_begin, - sym_list_marker_definition, - sym_list_marker_decimal_period, - sym_list_marker_lower_alpha_period, - sym_list_marker_upper_alpha_period, - sym_list_marker_lower_roman_period, - sym_list_marker_upper_roman_period, - sym_list_marker_decimal_paren, - sym_list_marker_lower_alpha_paren, - sym_list_marker_upper_alpha_paren, - sym_list_marker_lower_roman_paren, - sym_list_marker_upper_roman_paren, - sym_list_marker_decimal_parens, - sym_list_marker_lower_alpha_parens, - sym_list_marker_upper_alpha_parens, - sym_list_marker_lower_roman_parens, - sym_list_marker_upper_roman_parens, - sym__block_quote_begin, - sym__block_quote_continuation, - sym__thematic_break_dash, - sym__thematic_break_star, - sym__footnote_end, - [8461] = 2, - ACTIONS(876), 10, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - ACTIONS(878), 29, - sym__newline, - sym__heading_begin, - sym__div_begin, - sym__code_block_begin, - sym_list_marker_dash, - sym_list_marker_star, - sym_list_marker_plus, - sym__list_marker_task_begin, - sym_list_marker_definition, - sym_list_marker_decimal_period, - sym_list_marker_lower_alpha_period, - sym_list_marker_upper_alpha_period, - sym_list_marker_lower_roman_period, - sym_list_marker_upper_roman_period, - sym_list_marker_decimal_paren, - sym_list_marker_lower_alpha_paren, - sym_list_marker_upper_alpha_paren, - sym_list_marker_lower_roman_paren, - sym_list_marker_upper_roman_paren, - sym_list_marker_decimal_parens, - sym_list_marker_lower_alpha_parens, - sym_list_marker_upper_alpha_parens, - sym_list_marker_lower_roman_parens, - sym_list_marker_upper_roman_parens, - sym__block_quote_begin, - sym__block_quote_continuation, - sym__thematic_break_dash, - sym__thematic_break_star, - ts_builtin_sym_end, - [8505] = 2, - ACTIONS(800), 10, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - ACTIONS(802), 29, - sym__newline, - sym__heading_begin, - sym__div_begin, - sym__code_block_begin, - sym_list_marker_dash, - sym_list_marker_star, - sym_list_marker_plus, - sym__list_marker_task_begin, - sym_list_marker_definition, - sym_list_marker_decimal_period, - sym_list_marker_lower_alpha_period, - sym_list_marker_upper_alpha_period, - sym_list_marker_lower_roman_period, - sym_list_marker_upper_roman_period, - sym_list_marker_decimal_paren, - sym_list_marker_lower_alpha_paren, - sym_list_marker_upper_alpha_paren, - sym_list_marker_lower_roman_paren, - sym_list_marker_upper_roman_paren, - sym_list_marker_decimal_parens, - sym_list_marker_lower_alpha_parens, - sym_list_marker_upper_alpha_parens, - sym_list_marker_lower_roman_parens, - sym_list_marker_upper_roman_parens, - sym__block_quote_begin, - sym__block_quote_continuation, - sym__thematic_break_dash, - sym__thematic_break_star, - ts_builtin_sym_end, - [8549] = 2, - ACTIONS(718), 10, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - ACTIONS(716), 29, - sym__newline, - sym__heading_begin, - sym__div_begin, - sym__code_block_begin, - sym_list_marker_dash, - sym_list_marker_star, - sym_list_marker_plus, - sym__list_marker_task_begin, - sym_list_marker_definition, - sym_list_marker_decimal_period, - sym_list_marker_lower_alpha_period, - sym_list_marker_upper_alpha_period, - sym_list_marker_lower_roman_period, - sym_list_marker_upper_roman_period, - sym_list_marker_decimal_paren, - sym_list_marker_lower_alpha_paren, - sym_list_marker_upper_alpha_paren, - sym_list_marker_lower_roman_paren, - sym_list_marker_upper_roman_paren, - sym_list_marker_decimal_parens, - sym_list_marker_lower_alpha_parens, - sym_list_marker_upper_alpha_parens, - sym_list_marker_lower_roman_parens, - sym_list_marker_upper_roman_parens, - sym__block_quote_begin, - sym__block_quote_continuation, - sym__thematic_break_dash, - sym__thematic_break_star, - sym__footnote_end, - [8593] = 2, - ACTIONS(730), 10, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - ACTIONS(728), 29, - sym__newline, - sym__heading_begin, - sym__div_begin, - sym__code_block_begin, - sym_list_marker_dash, - sym_list_marker_star, - sym_list_marker_plus, - sym__list_marker_task_begin, - sym_list_marker_definition, - sym_list_marker_decimal_period, - sym_list_marker_lower_alpha_period, - sym_list_marker_upper_alpha_period, - sym_list_marker_lower_roman_period, - sym_list_marker_upper_roman_period, - sym_list_marker_decimal_paren, - sym_list_marker_lower_alpha_paren, - sym_list_marker_upper_alpha_paren, - sym_list_marker_lower_roman_paren, - sym_list_marker_upper_roman_paren, - sym_list_marker_decimal_parens, - sym_list_marker_lower_alpha_parens, - sym_list_marker_upper_alpha_parens, - sym_list_marker_lower_roman_parens, - sym_list_marker_upper_roman_parens, - sym__block_quote_begin, - sym__block_quote_continuation, - sym__thematic_break_dash, - sym__thematic_break_star, - sym__footnote_end, - [8637] = 2, - ACTIONS(804), 10, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - ACTIONS(806), 29, - sym__block_close, - sym__newline, - sym__heading_begin, - sym__div_begin, - sym__code_block_begin, - sym_list_marker_dash, - sym_list_marker_star, - sym_list_marker_plus, - sym__list_marker_task_begin, - sym_list_marker_definition, - sym_list_marker_decimal_period, - sym_list_marker_lower_alpha_period, - sym_list_marker_upper_alpha_period, - sym_list_marker_lower_roman_period, - sym_list_marker_upper_roman_period, - sym_list_marker_decimal_paren, - sym_list_marker_lower_alpha_paren, - sym_list_marker_upper_alpha_paren, - sym_list_marker_lower_roman_paren, - sym_list_marker_upper_roman_paren, - sym_list_marker_decimal_parens, - sym_list_marker_lower_alpha_parens, - sym_list_marker_upper_alpha_parens, - sym_list_marker_lower_roman_parens, - sym_list_marker_upper_roman_parens, - sym__block_quote_begin, - sym__block_quote_continuation, - sym__thematic_break_dash, - sym__thematic_break_star, - [8681] = 2, - ACTIONS(892), 10, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - ACTIONS(894), 29, - sym__newline, - sym__heading_begin, - sym__div_begin, - sym__code_block_begin, - sym_list_marker_dash, - sym_list_marker_star, - sym_list_marker_plus, - sym__list_marker_task_begin, - sym_list_marker_definition, - sym_list_marker_decimal_period, - sym_list_marker_lower_alpha_period, - sym_list_marker_upper_alpha_period, - sym_list_marker_lower_roman_period, - sym_list_marker_upper_roman_period, - sym_list_marker_decimal_paren, - sym_list_marker_lower_alpha_paren, - sym_list_marker_upper_alpha_paren, - sym_list_marker_lower_roman_paren, - sym_list_marker_upper_roman_paren, - sym_list_marker_decimal_parens, - sym_list_marker_lower_alpha_parens, - sym_list_marker_upper_alpha_parens, - sym_list_marker_lower_roman_parens, - sym_list_marker_upper_roman_parens, - sym__block_quote_begin, - sym__block_quote_continuation, - sym__thematic_break_dash, - sym__thematic_break_star, - sym__footnote_end, - [8725] = 2, - ACTIONS(734), 10, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - ACTIONS(732), 29, - sym__newline, - sym__heading_begin, - sym__div_begin, - sym__code_block_begin, - sym_list_marker_dash, - sym_list_marker_star, - sym_list_marker_plus, - sym__list_marker_task_begin, - sym_list_marker_definition, - sym_list_marker_decimal_period, - sym_list_marker_lower_alpha_period, - sym_list_marker_upper_alpha_period, - sym_list_marker_lower_roman_period, - sym_list_marker_upper_roman_period, - sym_list_marker_decimal_paren, - sym_list_marker_lower_alpha_paren, - sym_list_marker_upper_alpha_paren, - sym_list_marker_lower_roman_paren, - sym_list_marker_upper_roman_paren, - sym_list_marker_decimal_parens, - sym_list_marker_lower_alpha_parens, - sym_list_marker_upper_alpha_parens, - sym_list_marker_lower_roman_parens, - sym_list_marker_upper_roman_parens, - sym__block_quote_begin, - sym__block_quote_continuation, - sym__thematic_break_dash, - sym__thematic_break_star, - sym__footnote_end, - [8769] = 2, - ACTIONS(738), 10, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - ACTIONS(736), 29, - sym__newline, - sym__heading_begin, - sym__div_begin, - sym__code_block_begin, - sym_list_marker_dash, - sym_list_marker_star, - sym_list_marker_plus, - sym__list_marker_task_begin, - sym_list_marker_definition, - sym_list_marker_decimal_period, - sym_list_marker_lower_alpha_period, - sym_list_marker_upper_alpha_period, - sym_list_marker_lower_roman_period, - sym_list_marker_upper_roman_period, - sym_list_marker_decimal_paren, - sym_list_marker_lower_alpha_paren, - sym_list_marker_upper_alpha_paren, - sym_list_marker_lower_roman_paren, - sym_list_marker_upper_roman_paren, - sym_list_marker_decimal_parens, - sym_list_marker_lower_alpha_parens, - sym_list_marker_upper_alpha_parens, - sym_list_marker_lower_roman_parens, - sym_list_marker_upper_roman_parens, - sym__block_quote_begin, - sym__block_quote_continuation, - sym__thematic_break_dash, - sym__thematic_break_star, - sym__footnote_end, - [8813] = 2, - ACTIONS(750), 10, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - ACTIONS(748), 29, - sym__newline, - sym__heading_begin, - sym__div_begin, - sym__code_block_begin, - sym_list_marker_dash, - sym_list_marker_star, - sym_list_marker_plus, - sym__list_marker_task_begin, - sym_list_marker_definition, - sym_list_marker_decimal_period, - sym_list_marker_lower_alpha_period, - sym_list_marker_upper_alpha_period, - sym_list_marker_lower_roman_period, - sym_list_marker_upper_roman_period, - sym_list_marker_decimal_paren, - sym_list_marker_lower_alpha_paren, - sym_list_marker_upper_alpha_paren, - sym_list_marker_lower_roman_paren, - sym_list_marker_upper_roman_paren, - sym_list_marker_decimal_parens, - sym_list_marker_lower_alpha_parens, - sym_list_marker_upper_alpha_parens, - sym_list_marker_lower_roman_parens, - sym_list_marker_upper_roman_parens, - sym__block_quote_begin, - sym__block_quote_continuation, - sym__thematic_break_dash, - sym__thematic_break_star, - sym__footnote_end, - [8857] = 2, - ACTIONS(754), 10, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - ACTIONS(752), 29, - sym__newline, - sym__heading_begin, - sym__div_begin, - sym__code_block_begin, - sym_list_marker_dash, - sym_list_marker_star, - sym_list_marker_plus, - sym__list_marker_task_begin, - sym_list_marker_definition, - sym_list_marker_decimal_period, - sym_list_marker_lower_alpha_period, - sym_list_marker_upper_alpha_period, - sym_list_marker_lower_roman_period, - sym_list_marker_upper_roman_period, - sym_list_marker_decimal_paren, - sym_list_marker_lower_alpha_paren, - sym_list_marker_upper_alpha_paren, - sym_list_marker_lower_roman_paren, - sym_list_marker_upper_roman_paren, - sym_list_marker_decimal_parens, - sym_list_marker_lower_alpha_parens, - sym_list_marker_upper_alpha_parens, - sym_list_marker_lower_roman_parens, - sym_list_marker_upper_roman_parens, - sym__block_quote_begin, - sym__block_quote_continuation, - sym__thematic_break_dash, - sym__thematic_break_star, - sym__footnote_end, - [8901] = 2, - ACTIONS(758), 10, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - ACTIONS(756), 29, - sym__newline, - sym__heading_begin, - sym__div_begin, - sym__code_block_begin, - sym_list_marker_dash, - sym_list_marker_star, - sym_list_marker_plus, - sym__list_marker_task_begin, - sym_list_marker_definition, - sym_list_marker_decimal_period, - sym_list_marker_lower_alpha_period, - sym_list_marker_upper_alpha_period, - sym_list_marker_lower_roman_period, - sym_list_marker_upper_roman_period, - sym_list_marker_decimal_paren, - sym_list_marker_lower_alpha_paren, - sym_list_marker_upper_alpha_paren, - sym_list_marker_lower_roman_paren, - sym_list_marker_upper_roman_paren, - sym_list_marker_decimal_parens, - sym_list_marker_lower_alpha_parens, - sym_list_marker_upper_alpha_parens, - sym_list_marker_lower_roman_parens, - sym_list_marker_upper_roman_parens, - sym__block_quote_begin, - sym__block_quote_continuation, - sym__thematic_break_dash, - sym__thematic_break_star, - sym__footnote_end, - [8945] = 2, - ACTIONS(762), 10, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - ACTIONS(760), 29, - sym__newline, - sym__heading_begin, - sym__div_begin, - sym__code_block_begin, - sym_list_marker_dash, - sym_list_marker_star, - sym_list_marker_plus, - sym__list_marker_task_begin, - sym_list_marker_definition, - sym_list_marker_decimal_period, - sym_list_marker_lower_alpha_period, - sym_list_marker_upper_alpha_period, - sym_list_marker_lower_roman_period, - sym_list_marker_upper_roman_period, - sym_list_marker_decimal_paren, - sym_list_marker_lower_alpha_paren, - sym_list_marker_upper_alpha_paren, - sym_list_marker_lower_roman_paren, - sym_list_marker_upper_roman_paren, - sym_list_marker_decimal_parens, - sym_list_marker_lower_alpha_parens, - sym_list_marker_upper_alpha_parens, - sym_list_marker_lower_roman_parens, - sym_list_marker_upper_roman_parens, - sym__block_quote_begin, - sym__block_quote_continuation, - sym__thematic_break_dash, - sym__thematic_break_star, - sym__footnote_end, - [8989] = 2, - ACTIONS(766), 10, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - ACTIONS(764), 29, - sym__newline, - sym__heading_begin, - sym__div_begin, - sym__code_block_begin, - sym_list_marker_dash, - sym_list_marker_star, - sym_list_marker_plus, - sym__list_marker_task_begin, - sym_list_marker_definition, - sym_list_marker_decimal_period, - sym_list_marker_lower_alpha_period, - sym_list_marker_upper_alpha_period, - sym_list_marker_lower_roman_period, - sym_list_marker_upper_roman_period, - sym_list_marker_decimal_paren, - sym_list_marker_lower_alpha_paren, - sym_list_marker_upper_alpha_paren, - sym_list_marker_lower_roman_paren, - sym_list_marker_upper_roman_paren, - sym_list_marker_decimal_parens, - sym_list_marker_lower_alpha_parens, - sym_list_marker_upper_alpha_parens, - sym_list_marker_lower_roman_parens, - sym_list_marker_upper_roman_parens, - sym__block_quote_begin, - sym__block_quote_continuation, - sym__thematic_break_dash, - sym__thematic_break_star, - sym__footnote_end, - [9033] = 2, - ACTIONS(770), 10, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - ACTIONS(768), 29, - sym__newline, - sym__heading_begin, - sym__div_begin, - sym__code_block_begin, - sym_list_marker_dash, - sym_list_marker_star, - sym_list_marker_plus, - sym__list_marker_task_begin, - sym_list_marker_definition, - sym_list_marker_decimal_period, - sym_list_marker_lower_alpha_period, - sym_list_marker_upper_alpha_period, - sym_list_marker_lower_roman_period, - sym_list_marker_upper_roman_period, - sym_list_marker_decimal_paren, - sym_list_marker_lower_alpha_paren, - sym_list_marker_upper_alpha_paren, - sym_list_marker_lower_roman_paren, - sym_list_marker_upper_roman_paren, - sym_list_marker_decimal_parens, - sym_list_marker_lower_alpha_parens, - sym_list_marker_upper_alpha_parens, - sym_list_marker_lower_roman_parens, - sym_list_marker_upper_roman_parens, - sym__block_quote_begin, - sym__block_quote_continuation, - sym__thematic_break_dash, - sym__thematic_break_star, - sym__footnote_end, - [9077] = 2, - ACTIONS(880), 10, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - ACTIONS(882), 29, - sym__newline, - sym__heading_begin, - sym__div_begin, - sym__code_block_begin, - sym_list_marker_dash, - sym_list_marker_star, - sym_list_marker_plus, - sym__list_marker_task_begin, - sym_list_marker_definition, - sym_list_marker_decimal_period, - sym_list_marker_lower_alpha_period, - sym_list_marker_upper_alpha_period, - sym_list_marker_lower_roman_period, - sym_list_marker_upper_roman_period, - sym_list_marker_decimal_paren, - sym_list_marker_lower_alpha_paren, - sym_list_marker_upper_alpha_paren, - sym_list_marker_lower_roman_paren, - sym_list_marker_upper_roman_paren, - sym_list_marker_decimal_parens, - sym_list_marker_lower_alpha_parens, - sym_list_marker_upper_alpha_parens, - sym_list_marker_lower_roman_parens, - sym_list_marker_upper_roman_parens, - sym__block_quote_begin, - sym__block_quote_continuation, - sym__thematic_break_dash, - sym__thematic_break_star, - ts_builtin_sym_end, - [9121] = 2, - ACTIONS(778), 10, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - ACTIONS(776), 29, - sym__newline, - sym__heading_begin, - sym__div_begin, - sym__code_block_begin, - sym_list_marker_dash, - sym_list_marker_star, - sym_list_marker_plus, - sym__list_marker_task_begin, - sym_list_marker_definition, - sym_list_marker_decimal_period, - sym_list_marker_lower_alpha_period, - sym_list_marker_upper_alpha_period, - sym_list_marker_lower_roman_period, - sym_list_marker_upper_roman_period, - sym_list_marker_decimal_paren, - sym_list_marker_lower_alpha_paren, - sym_list_marker_upper_alpha_paren, - sym_list_marker_lower_roman_paren, - sym_list_marker_upper_roman_paren, - sym_list_marker_decimal_parens, - sym_list_marker_lower_alpha_parens, - sym_list_marker_upper_alpha_parens, - sym_list_marker_lower_roman_parens, - sym_list_marker_upper_roman_parens, - sym__block_quote_begin, - sym__block_quote_continuation, - sym__thematic_break_dash, - sym__thematic_break_star, - sym__footnote_end, - [9165] = 2, - ACTIONS(782), 10, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - ACTIONS(780), 29, - sym__newline, - sym__heading_begin, - sym__div_begin, - sym__code_block_begin, - sym_list_marker_dash, - sym_list_marker_star, - sym_list_marker_plus, - sym__list_marker_task_begin, - sym_list_marker_definition, - sym_list_marker_decimal_period, - sym_list_marker_lower_alpha_period, - sym_list_marker_upper_alpha_period, - sym_list_marker_lower_roman_period, - sym_list_marker_upper_roman_period, - sym_list_marker_decimal_paren, - sym_list_marker_lower_alpha_paren, - sym_list_marker_upper_alpha_paren, - sym_list_marker_lower_roman_paren, - sym_list_marker_upper_roman_paren, - sym_list_marker_decimal_parens, - sym_list_marker_lower_alpha_parens, - sym_list_marker_upper_alpha_parens, - sym_list_marker_lower_roman_parens, - sym_list_marker_upper_roman_parens, - sym__block_quote_begin, - sym__block_quote_continuation, - sym__thematic_break_dash, - sym__thematic_break_star, - sym__footnote_end, - [9209] = 2, - ACTIONS(896), 10, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - ACTIONS(898), 29, - sym__block_close, - sym__newline, - sym__heading_begin, - sym__div_begin, - sym__code_block_begin, - sym_list_marker_dash, - sym_list_marker_star, - sym_list_marker_plus, - sym__list_marker_task_begin, - sym_list_marker_definition, - sym_list_marker_decimal_period, - sym_list_marker_lower_alpha_period, - sym_list_marker_upper_alpha_period, - sym_list_marker_lower_roman_period, - sym_list_marker_upper_roman_period, - sym_list_marker_decimal_paren, - sym_list_marker_lower_alpha_paren, - sym_list_marker_upper_alpha_paren, - sym_list_marker_lower_roman_paren, - sym_list_marker_upper_roman_paren, - sym_list_marker_decimal_parens, - sym_list_marker_lower_alpha_parens, - sym_list_marker_upper_alpha_parens, - sym_list_marker_lower_roman_parens, - sym_list_marker_upper_roman_parens, - sym__block_quote_begin, - sym__block_quote_continuation, - sym__thematic_break_dash, - sym__thematic_break_star, - [9253] = 2, - ACTIONS(884), 10, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - ACTIONS(886), 29, - sym__newline, - sym__heading_begin, - sym__div_begin, - sym__code_block_begin, - sym_list_marker_dash, - sym_list_marker_star, - sym_list_marker_plus, - sym__list_marker_task_begin, - sym_list_marker_definition, - sym_list_marker_decimal_period, - sym_list_marker_lower_alpha_period, - sym_list_marker_upper_alpha_period, - sym_list_marker_lower_roman_period, - sym_list_marker_upper_roman_period, - sym_list_marker_decimal_paren, - sym_list_marker_lower_alpha_paren, - sym_list_marker_upper_alpha_paren, - sym_list_marker_lower_roman_paren, - sym_list_marker_upper_roman_paren, - sym_list_marker_decimal_parens, - sym_list_marker_lower_alpha_parens, - sym_list_marker_upper_alpha_parens, - sym_list_marker_lower_roman_parens, - sym_list_marker_upper_roman_parens, - sym__block_quote_begin, - sym__block_quote_continuation, - sym__thematic_break_dash, - sym__thematic_break_star, - ts_builtin_sym_end, - [9297] = 2, - ACTIONS(784), 10, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - ACTIONS(786), 29, - sym__newline, - sym__heading_begin, - sym__div_begin, - sym__code_block_begin, - sym_list_marker_dash, - sym_list_marker_star, - sym_list_marker_plus, - sym__list_marker_task_begin, - sym_list_marker_definition, - sym_list_marker_decimal_period, - sym_list_marker_lower_alpha_period, - sym_list_marker_upper_alpha_period, - sym_list_marker_lower_roman_period, - sym_list_marker_upper_roman_period, - sym_list_marker_decimal_paren, - sym_list_marker_lower_alpha_paren, - sym_list_marker_upper_alpha_paren, - sym_list_marker_lower_roman_paren, - sym_list_marker_upper_roman_paren, - sym_list_marker_decimal_parens, - sym_list_marker_lower_alpha_parens, - sym_list_marker_upper_alpha_parens, - sym_list_marker_lower_roman_parens, - sym_list_marker_upper_roman_parens, - sym__block_quote_begin, - sym__block_quote_continuation, - sym__thematic_break_dash, - sym__thematic_break_star, - ts_builtin_sym_end, - [9341] = 2, - ACTIONS(788), 10, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - ACTIONS(790), 29, - sym__newline, - sym__heading_begin, - sym__div_begin, - sym__code_block_begin, - sym_list_marker_dash, - sym_list_marker_star, - sym_list_marker_plus, - sym__list_marker_task_begin, - sym_list_marker_definition, - sym_list_marker_decimal_period, - sym_list_marker_lower_alpha_period, - sym_list_marker_upper_alpha_period, - sym_list_marker_lower_roman_period, - sym_list_marker_upper_roman_period, - sym_list_marker_decimal_paren, - sym_list_marker_lower_alpha_paren, - sym_list_marker_upper_alpha_paren, - sym_list_marker_lower_roman_paren, - sym_list_marker_upper_roman_paren, - sym_list_marker_decimal_parens, - sym_list_marker_lower_alpha_parens, - sym_list_marker_upper_alpha_parens, - sym_list_marker_lower_roman_parens, - sym_list_marker_upper_roman_parens, - sym__block_quote_begin, - sym__block_quote_continuation, - sym__thematic_break_dash, - sym__thematic_break_star, - ts_builtin_sym_end, - [9385] = 2, - ACTIONS(888), 10, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - ACTIONS(890), 29, - sym__newline, - sym__heading_begin, - sym__div_begin, - sym__code_block_begin, - sym_list_marker_dash, - sym_list_marker_star, - sym_list_marker_plus, - sym__list_marker_task_begin, - sym_list_marker_definition, - sym_list_marker_decimal_period, - sym_list_marker_lower_alpha_period, - sym_list_marker_upper_alpha_period, - sym_list_marker_lower_roman_period, - sym_list_marker_upper_roman_period, - sym_list_marker_decimal_paren, - sym_list_marker_lower_alpha_paren, - sym_list_marker_upper_alpha_paren, - sym_list_marker_lower_roman_paren, - sym_list_marker_upper_roman_paren, - sym_list_marker_decimal_parens, - sym_list_marker_lower_alpha_parens, - sym_list_marker_upper_alpha_parens, - sym_list_marker_lower_roman_parens, - sym_list_marker_upper_roman_parens, - sym__block_quote_begin, - sym__block_quote_continuation, - sym__thematic_break_dash, - sym__thematic_break_star, - ts_builtin_sym_end, - [9429] = 2, - ACTIONS(892), 10, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - ACTIONS(894), 29, - sym__newline, - sym__heading_begin, - sym__div_begin, - sym__code_block_begin, - sym_list_marker_dash, - sym_list_marker_star, - sym_list_marker_plus, - sym__list_marker_task_begin, - sym_list_marker_definition, - sym_list_marker_decimal_period, - sym_list_marker_lower_alpha_period, - sym_list_marker_upper_alpha_period, - sym_list_marker_lower_roman_period, - sym_list_marker_upper_roman_period, - sym_list_marker_decimal_paren, - sym_list_marker_lower_alpha_paren, - sym_list_marker_upper_alpha_paren, - sym_list_marker_lower_roman_paren, - sym_list_marker_upper_roman_paren, - sym_list_marker_decimal_parens, - sym_list_marker_lower_alpha_parens, - sym_list_marker_upper_alpha_parens, - sym_list_marker_lower_roman_parens, - sym_list_marker_upper_roman_parens, - sym__block_quote_begin, - sym__block_quote_continuation, - sym__thematic_break_dash, - sym__thematic_break_star, - ts_builtin_sym_end, - [9473] = 4, - ACTIONS(904), 1, - sym__block_quote_continuation, - STATE(279), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(900), 10, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - ACTIONS(902), 26, - sym__block_close, - sym__div_begin, - sym__code_block_begin, - sym_list_marker_dash, - sym_list_marker_star, - sym_list_marker_plus, - sym__list_marker_task_begin, - sym_list_marker_definition, - sym_list_marker_decimal_period, - sym_list_marker_lower_alpha_period, - sym_list_marker_upper_alpha_period, - sym_list_marker_lower_roman_period, - sym_list_marker_upper_roman_period, - sym_list_marker_decimal_paren, - sym_list_marker_lower_alpha_paren, - sym_list_marker_upper_alpha_paren, - sym_list_marker_lower_roman_paren, - sym_list_marker_upper_roman_paren, - sym_list_marker_decimal_parens, - sym_list_marker_lower_alpha_parens, - sym_list_marker_upper_alpha_parens, - sym_list_marker_lower_roman_parens, - sym_list_marker_upper_roman_parens, - sym__block_quote_begin, - sym__thematic_break_dash, - sym__thematic_break_star, - [9520] = 2, - ACTIONS(907), 10, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - ACTIONS(909), 28, - sym__newline, - sym__heading_begin, - sym__div_begin, - sym__code_block_begin, - sym_list_marker_dash, - sym_list_marker_star, - sym_list_marker_plus, - sym__list_marker_task_begin, - sym_list_marker_definition, - sym_list_marker_decimal_period, - sym_list_marker_lower_alpha_period, - sym_list_marker_upper_alpha_period, - sym_list_marker_lower_roman_period, - sym_list_marker_upper_roman_period, - sym_list_marker_decimal_paren, - sym_list_marker_lower_alpha_paren, - sym_list_marker_upper_alpha_paren, - sym_list_marker_lower_roman_paren, - sym_list_marker_upper_roman_paren, - sym_list_marker_decimal_parens, - sym_list_marker_lower_alpha_parens, - sym_list_marker_upper_alpha_parens, - sym_list_marker_lower_roman_parens, - sym_list_marker_upper_roman_parens, - sym__block_quote_begin, - sym__block_quote_continuation, - sym__thematic_break_dash, - sym__thematic_break_star, - [9563] = 2, - ACTIONS(443), 10, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - ACTIONS(445), 27, - sym__block_close, - sym__div_begin, - sym__code_block_begin, - sym_list_marker_dash, - sym_list_marker_star, - sym_list_marker_plus, - sym__list_marker_task_begin, - sym_list_marker_definition, - sym_list_marker_decimal_period, - sym_list_marker_lower_alpha_period, - sym_list_marker_upper_alpha_period, - sym_list_marker_lower_roman_period, - sym_list_marker_upper_roman_period, - sym_list_marker_decimal_paren, - sym_list_marker_lower_alpha_paren, - sym_list_marker_upper_alpha_paren, - sym_list_marker_lower_roman_paren, - sym_list_marker_upper_roman_paren, - sym_list_marker_decimal_parens, - sym_list_marker_lower_alpha_parens, - sym_list_marker_upper_alpha_parens, - sym_list_marker_lower_roman_parens, - sym_list_marker_upper_roman_parens, - sym__block_quote_begin, - sym__block_quote_continuation, - sym__thematic_break_dash, - sym__thematic_break_star, - [9605] = 12, - ACTIONS(913), 1, - anon_sym_RBRACE, - ACTIONS(915), 1, - anon_sym_DOT, - ACTIONS(918), 1, - aux_sym_identifier_token1, - ACTIONS(921), 1, - sym__whitespace1, - ACTIONS(923), 1, - anon_sym_PERCENT, - ACTIONS(926), 1, - sym__id, - STATE(396), 1, - aux_sym_block_attribute_repeat1, - STATE(495), 1, - sym__comment_no_newline, - STATE(1131), 1, - sym_key, - ACTIONS(928), 2, - sym__eof_or_newline, - sym__newline_inline, - STATE(491), 3, - sym_class, - sym_identifier, - sym_key_value, - ACTIONS(911), 7, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - [9651] = 12, - ACTIONS(915), 1, - anon_sym_DOT, - ACTIONS(918), 1, - aux_sym_identifier_token1, - ACTIONS(921), 1, - sym__whitespace1, - ACTIONS(923), 1, - anon_sym_PERCENT, - ACTIONS(926), 1, - sym__id, - ACTIONS(930), 1, - anon_sym_RBRACE, - STATE(402), 1, - aux_sym_block_attribute_repeat1, - STATE(495), 1, - sym__comment_no_newline, - STATE(1131), 1, - sym_key, - ACTIONS(928), 2, - sym__eof_or_newline, - sym__newline_inline, - STATE(491), 3, - sym_class, - sym_identifier, - sym_key_value, - ACTIONS(911), 7, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - [9697] = 12, - ACTIONS(915), 1, - anon_sym_DOT, - ACTIONS(918), 1, - aux_sym_identifier_token1, - ACTIONS(921), 1, - sym__whitespace1, - ACTIONS(923), 1, - anon_sym_PERCENT, - ACTIONS(926), 1, - sym__id, - ACTIONS(932), 1, - anon_sym_RBRACE, - STATE(392), 1, - aux_sym_block_attribute_repeat1, - STATE(495), 1, - sym__comment_no_newline, - STATE(1131), 1, - sym_key, - ACTIONS(928), 2, - sym__eof_or_newline, - sym__newline_inline, - STATE(491), 3, - sym_class, - sym_identifier, - sym_key_value, - ACTIONS(911), 7, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - [9743] = 12, - ACTIONS(915), 1, - anon_sym_DOT, - ACTIONS(918), 1, - aux_sym_identifier_token1, - ACTIONS(921), 1, - sym__whitespace1, - ACTIONS(923), 1, - anon_sym_PERCENT, - ACTIONS(926), 1, - sym__id, - ACTIONS(934), 1, - anon_sym_RBRACE, - STATE(403), 1, - aux_sym_block_attribute_repeat1, - STATE(495), 1, - sym__comment_no_newline, - STATE(1131), 1, - sym_key, - ACTIONS(928), 2, - sym__eof_or_newline, - sym__newline_inline, - STATE(491), 3, - sym_class, - sym_identifier, - sym_key_value, - ACTIONS(911), 7, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - [9789] = 12, - ACTIONS(915), 1, - anon_sym_DOT, - ACTIONS(918), 1, - aux_sym_identifier_token1, - ACTIONS(921), 1, - sym__whitespace1, - ACTIONS(923), 1, - anon_sym_PERCENT, - ACTIONS(926), 1, - sym__id, - ACTIONS(936), 1, - anon_sym_RBRACE, - STATE(394), 1, - aux_sym_block_attribute_repeat1, - STATE(495), 1, - sym__comment_no_newline, - STATE(1131), 1, - sym_key, - ACTIONS(928), 2, - sym__eof_or_newline, - sym__newline_inline, - STATE(491), 3, - sym_class, - sym_identifier, - sym_key_value, - ACTIONS(911), 7, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - [9835] = 12, - ACTIONS(915), 1, - anon_sym_DOT, - ACTIONS(918), 1, - aux_sym_identifier_token1, - ACTIONS(921), 1, - sym__whitespace1, - ACTIONS(923), 1, - anon_sym_PERCENT, - ACTIONS(926), 1, - sym__id, - ACTIONS(938), 1, - anon_sym_RBRACE, - STATE(397), 1, - aux_sym_block_attribute_repeat1, - STATE(495), 1, - sym__comment_no_newline, - STATE(1131), 1, - sym_key, - ACTIONS(928), 2, - sym__eof_or_newline, - sym__newline_inline, - STATE(491), 3, - sym_class, - sym_identifier, - sym_key_value, - ACTIONS(911), 7, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - [9881] = 11, - ACTIONS(31), 1, - sym__list_marker_task_begin, - ACTIONS(940), 1, - anon_sym_PIPE, - ACTIONS(942), 1, - anon_sym_LBRACK_CARET, - ACTIONS(944), 1, - sym__block_close, - ACTIONS(946), 1, - sym_list_marker_dash, - ACTIONS(948), 1, - sym_list_marker_star, - ACTIONS(950), 1, - sym_list_marker_plus, - STATE(54), 1, - sym_list_marker_task, - STATE(713), 1, - sym__inline, - STATE(381), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(13), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - [9923] = 11, - ACTIONS(31), 1, - sym__list_marker_task_begin, - ACTIONS(940), 1, - anon_sym_PIPE, - ACTIONS(942), 1, - anon_sym_LBRACK_CARET, - ACTIONS(946), 1, - sym_list_marker_dash, - ACTIONS(948), 1, - sym_list_marker_star, - ACTIONS(950), 1, - sym_list_marker_plus, - ACTIONS(952), 1, - sym__block_close, - STATE(54), 1, - sym_list_marker_task, - STATE(713), 1, - sym__inline, - STATE(381), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(13), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - [9965] = 11, - ACTIONS(31), 1, - sym__list_marker_task_begin, - ACTIONS(940), 1, - anon_sym_PIPE, - ACTIONS(942), 1, - anon_sym_LBRACK_CARET, - ACTIONS(946), 1, - sym_list_marker_dash, - ACTIONS(948), 1, - sym_list_marker_star, - ACTIONS(950), 1, - sym_list_marker_plus, - ACTIONS(954), 1, - sym__block_close, - STATE(54), 1, - sym_list_marker_task, - STATE(713), 1, - sym__inline, - STATE(381), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(13), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - [10007] = 11, - ACTIONS(31), 1, - sym__list_marker_task_begin, - ACTIONS(940), 1, - anon_sym_PIPE, - ACTIONS(942), 1, - anon_sym_LBRACK_CARET, - ACTIONS(946), 1, - sym_list_marker_dash, - ACTIONS(948), 1, - sym_list_marker_star, - ACTIONS(950), 1, - sym_list_marker_plus, - ACTIONS(956), 1, - sym__block_close, - STATE(54), 1, - sym_list_marker_task, - STATE(713), 1, - sym__inline, - STATE(381), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(13), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - [10049] = 11, - ACTIONS(31), 1, - sym__list_marker_task_begin, - ACTIONS(940), 1, - anon_sym_PIPE, - ACTIONS(942), 1, - anon_sym_LBRACK_CARET, - ACTIONS(946), 1, - sym_list_marker_dash, - ACTIONS(948), 1, - sym_list_marker_star, - ACTIONS(950), 1, - sym_list_marker_plus, - ACTIONS(958), 1, - sym__block_close, - STATE(54), 1, - sym_list_marker_task, - STATE(713), 1, - sym__inline, - STATE(381), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(13), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - [10091] = 11, - ACTIONS(31), 1, - sym__list_marker_task_begin, - ACTIONS(940), 1, - anon_sym_PIPE, - ACTIONS(942), 1, - anon_sym_LBRACK_CARET, - ACTIONS(946), 1, - sym_list_marker_dash, - ACTIONS(948), 1, - sym_list_marker_star, - ACTIONS(950), 1, - sym_list_marker_plus, - ACTIONS(960), 1, - sym__block_close, - STATE(54), 1, - sym_list_marker_task, - STATE(713), 1, - sym__inline, - STATE(381), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(13), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - [10133] = 11, - ACTIONS(31), 1, - sym__list_marker_task_begin, - ACTIONS(940), 1, - anon_sym_PIPE, - ACTIONS(942), 1, - anon_sym_LBRACK_CARET, - ACTIONS(946), 1, - sym_list_marker_dash, - ACTIONS(948), 1, - sym_list_marker_star, - ACTIONS(950), 1, - sym_list_marker_plus, - ACTIONS(962), 1, - sym__block_close, - STATE(54), 1, - sym_list_marker_task, - STATE(713), 1, - sym__inline, - STATE(381), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(13), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - [10175] = 11, - ACTIONS(31), 1, - sym__list_marker_task_begin, - ACTIONS(940), 1, - anon_sym_PIPE, - ACTIONS(942), 1, - anon_sym_LBRACK_CARET, - ACTIONS(946), 1, - sym_list_marker_dash, - ACTIONS(948), 1, - sym_list_marker_star, - ACTIONS(950), 1, - sym_list_marker_plus, - ACTIONS(964), 1, - sym__block_close, - STATE(54), 1, - sym_list_marker_task, - STATE(713), 1, - sym__inline, - STATE(381), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(13), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - [10217] = 11, - ACTIONS(31), 1, - sym__list_marker_task_begin, - ACTIONS(940), 1, - anon_sym_PIPE, - ACTIONS(942), 1, - anon_sym_LBRACK_CARET, - ACTIONS(946), 1, - sym_list_marker_dash, - ACTIONS(948), 1, - sym_list_marker_star, - ACTIONS(950), 1, - sym_list_marker_plus, - ACTIONS(966), 1, - sym__block_close, - STATE(54), 1, - sym_list_marker_task, - STATE(713), 1, - sym__inline, - STATE(381), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(13), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - [10259] = 11, - ACTIONS(31), 1, - sym__list_marker_task_begin, - ACTIONS(940), 1, - anon_sym_PIPE, - ACTIONS(942), 1, - anon_sym_LBRACK_CARET, - ACTIONS(946), 1, - sym_list_marker_dash, - ACTIONS(948), 1, - sym_list_marker_star, - ACTIONS(950), 1, - sym_list_marker_plus, - ACTIONS(968), 1, - sym__block_close, - STATE(54), 1, - sym_list_marker_task, - STATE(713), 1, - sym__inline, - STATE(381), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(13), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - [10301] = 11, - ACTIONS(31), 1, - sym__list_marker_task_begin, - ACTIONS(940), 1, - anon_sym_PIPE, - ACTIONS(942), 1, - anon_sym_LBRACK_CARET, - ACTIONS(946), 1, - sym_list_marker_dash, - ACTIONS(948), 1, - sym_list_marker_star, - ACTIONS(950), 1, - sym_list_marker_plus, - ACTIONS(970), 1, - sym__block_close, - STATE(54), 1, - sym_list_marker_task, - STATE(713), 1, - sym__inline, - STATE(381), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(13), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - [10343] = 11, - ACTIONS(31), 1, - sym__list_marker_task_begin, - ACTIONS(940), 1, - anon_sym_PIPE, - ACTIONS(942), 1, - anon_sym_LBRACK_CARET, - ACTIONS(946), 1, - sym_list_marker_dash, - ACTIONS(948), 1, - sym_list_marker_star, - ACTIONS(950), 1, - sym_list_marker_plus, - ACTIONS(972), 1, - sym__block_close, - STATE(54), 1, - sym_list_marker_task, - STATE(713), 1, - sym__inline, - STATE(381), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(13), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - [10385] = 10, + [7407] = 10, ACTIONS(31), 1, sym__list_marker_task_begin, - ACTIONS(942), 1, + ACTIONS(873), 1, anon_sym_LBRACK_CARET, - ACTIONS(946), 1, + ACTIONS(877), 1, sym_list_marker_dash, - ACTIONS(948), 1, + ACTIONS(879), 1, sym_list_marker_star, - ACTIONS(950), 1, + ACTIONS(881), 1, sym_list_marker_plus, - ACTIONS(974), 1, + ACTIONS(905), 1, anon_sym_PIPE, - STATE(54), 1, + STATE(30), 1, sym_list_marker_task, - STATE(713), 1, + STATE(614), 1, sym__inline, - STATE(381), 2, + STATE(297), 2, sym__symbol_fallback, aux_sym__inline_repeat1, ACTIONS(13), 8, @@ -23764,24 +20073,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [10424] = 10, + [7446] = 10, ACTIONS(31), 1, sym__list_marker_task_begin, - ACTIONS(942), 1, + ACTIONS(873), 1, anon_sym_LBRACK_CARET, - ACTIONS(946), 1, + ACTIONS(877), 1, sym_list_marker_dash, - ACTIONS(948), 1, + ACTIONS(879), 1, sym_list_marker_star, - ACTIONS(950), 1, + ACTIONS(881), 1, sym_list_marker_plus, - ACTIONS(976), 1, + ACTIONS(907), 1, anon_sym_PIPE, - STATE(54), 1, + STATE(30), 1, sym_list_marker_task, - STATE(713), 1, + STATE(614), 1, sym__inline, - STATE(381), 2, + STATE(297), 2, sym__symbol_fallback, aux_sym__inline_repeat1, ACTIONS(13), 8, @@ -23793,81 +20102,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [10463] = 9, - ACTIONS(942), 1, - anon_sym_LBRACK_CARET, - ACTIONS(978), 1, - sym__block_quote_continuation, - STATE(390), 1, - sym__block_quote_prefix, - STATE(395), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(715), 1, - sym__inline, - STATE(872), 1, - sym__paragraph_content, - STATE(896), 1, - sym__paragraph_inline_content, - STATE(381), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(13), 9, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - [10500] = 10, + [7485] = 10, ACTIONS(31), 1, sym__list_marker_task_begin, - ACTIONS(942), 1, + ACTIONS(873), 1, anon_sym_LBRACK_CARET, - ACTIONS(946), 1, + ACTIONS(877), 1, sym_list_marker_dash, - ACTIONS(948), 1, + ACTIONS(879), 1, sym_list_marker_star, - ACTIONS(950), 1, + ACTIONS(881), 1, sym_list_marker_plus, - ACTIONS(980), 1, - anon_sym_PIPE, - STATE(54), 1, - sym_list_marker_task, - STATE(713), 1, - sym__inline, - STATE(381), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(13), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - [10539] = 10, - ACTIONS(31), 1, - sym__list_marker_task_begin, - ACTIONS(940), 1, + ACTIONS(909), 1, anon_sym_PIPE, - ACTIONS(942), 1, - anon_sym_LBRACK_CARET, - ACTIONS(946), 1, - sym_list_marker_dash, - ACTIONS(948), 1, - sym_list_marker_star, - ACTIONS(950), 1, - sym_list_marker_plus, - STATE(54), 1, + STATE(30), 1, sym_list_marker_task, - STATE(713), 1, + STATE(614), 1, sym__inline, - STATE(381), 2, + STATE(297), 2, sym__symbol_fallback, aux_sym__inline_repeat1, ACTIONS(13), 8, @@ -23879,53 +20131,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [10578] = 10, + [7524] = 10, ACTIONS(31), 1, sym__list_marker_task_begin, - ACTIONS(942), 1, - anon_sym_LBRACK_CARET, - ACTIONS(946), 1, - sym_list_marker_dash, - ACTIONS(948), 1, - sym_list_marker_star, - ACTIONS(950), 1, - sym_list_marker_plus, - ACTIONS(982), 1, + ACTIONS(871), 1, anon_sym_PIPE, - STATE(54), 1, - sym_list_marker_task, - STATE(713), 1, - sym__inline, - STATE(381), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(13), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - [10617] = 10, - ACTIONS(31), 1, - sym__list_marker_task_begin, - ACTIONS(942), 1, + ACTIONS(873), 1, anon_sym_LBRACK_CARET, - ACTIONS(946), 1, + ACTIONS(877), 1, sym_list_marker_dash, - ACTIONS(948), 1, + ACTIONS(879), 1, sym_list_marker_star, - ACTIONS(950), 1, + ACTIONS(881), 1, sym_list_marker_plus, - ACTIONS(984), 1, - anon_sym_PIPE, - STATE(54), 1, + STATE(30), 1, sym_list_marker_task, - STATE(713), 1, + STATE(614), 1, sym__inline, - STATE(381), 2, + STATE(297), 2, sym__symbol_fallback, aux_sym__inline_repeat1, ACTIONS(13), 8, @@ -23937,70 +20160,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [10656] = 7, - ACTIONS(989), 1, - sym_table_cell_alignment, - ACTIONS(991), 1, - anon_sym_LBRACK_CARET, - STATE(933), 1, - sym_table_cell, - STATE(1155), 1, - sym__inline, - ACTIONS(928), 2, - sym__eof_or_newline, - sym__newline_inline, - STATE(407), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(986), 9, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - [10688] = 4, - ACTIONS(998), 1, - sym__block_quote_continuation, - STATE(311), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(996), 5, - sym__block_close, - sym_list_marker_dash, - sym_list_marker_star, - sym_list_marker_plus, - sym__list_marker_task_begin, - ACTIONS(994), 10, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - [10714] = 8, - ACTIONS(1002), 1, + [7563] = 8, + ACTIONS(913), 1, anon_sym_NULL, - ACTIONS(1004), 1, + ACTIONS(915), 1, anon_sym_LBRACK_CARET, - ACTIONS(1006), 1, + ACTIONS(917), 1, sym__table_caption_end, - STATE(310), 1, + STATE(237), 1, aux_sym_table_caption_repeat1, - STATE(405), 1, + STATE(313), 1, sym__inline_line, - STATE(1061), 1, + STATE(1085), 1, sym__inline, - STATE(384), 2, + STATE(300), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1000), 9, + ACTIONS(911), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -24010,47 +20186,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [10748] = 8, - ACTIONS(1011), 1, - anon_sym_NULL, - ACTIONS(1013), 1, + [7597] = 8, + ACTIONS(915), 1, anon_sym_LBRACK_CARET, - ACTIONS(1016), 1, + ACTIONS(919), 1, + anon_sym_NULL, + ACTIONS(921), 1, sym__table_caption_end, - STATE(310), 1, + STATE(237), 1, aux_sym_table_caption_repeat1, - STATE(405), 1, + STATE(313), 1, sym__inline_line, - STATE(1061), 1, + STATE(1085), 1, sym__inline, - STATE(384), 2, + STATE(300), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1008), 9, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - [10782] = 4, - ACTIONS(1018), 1, - sym__block_quote_continuation, - STATE(311), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(902), 5, - sym__block_close, - sym_list_marker_dash, - sym_list_marker_star, - sym_list_marker_plus, - sym__list_marker_task_begin, - ACTIONS(900), 10, + ACTIONS(911), 9, anon_sym_LBRACK, anon_sym_PIPE, - anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -24058,48 +20212,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [10808] = 8, - ACTIONS(1004), 1, + [7631] = 8, + ACTIONS(915), 1, anon_sym_LBRACK_CARET, - ACTIONS(1021), 1, + ACTIONS(923), 1, anon_sym_NULL, - ACTIONS(1023), 1, + ACTIONS(925), 1, sym__table_caption_end, - STATE(310), 1, + STATE(237), 1, aux_sym_table_caption_repeat1, - STATE(405), 1, + STATE(313), 1, sym__inline_line, - STATE(1061), 1, - sym__inline, - STATE(384), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(1000), 9, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - [10842] = 7, - ACTIONS(991), 1, - anon_sym_LBRACK_CARET, - ACTIONS(1025), 1, - sym_table_cell_alignment, - STATE(926), 1, - sym_table_cell, - STATE(1155), 1, + STATE(1085), 1, sym__inline, - ACTIONS(928), 2, - sym__eof_or_newline, - sym__newline_inline, - STATE(407), 2, + STATE(300), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(986), 9, + ACTIONS(911), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -24109,23 +20238,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [10874] = 8, - ACTIONS(1004), 1, - anon_sym_LBRACK_CARET, - ACTIONS(1027), 1, + [7665] = 8, + ACTIONS(930), 1, anon_sym_NULL, - ACTIONS(1029), 1, + ACTIONS(932), 1, + anon_sym_LBRACK_CARET, + ACTIONS(935), 1, sym__table_caption_end, - STATE(310), 1, + STATE(237), 1, aux_sym_table_caption_repeat1, - STATE(405), 1, + STATE(313), 1, sym__inline_line, - STATE(1061), 1, + STATE(1085), 1, sym__inline, - STATE(384), 2, + STATE(300), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1000), 9, + ACTIONS(927), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -24135,22 +20264,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [10908] = 7, - ACTIONS(991), 1, + [7699] = 4, + ACTIONS(937), 1, + sym__block_quote_continuation, + STATE(238), 1, + aux_sym__block_quote_prefix_repeat1, + ACTIONS(839), 5, + sym__block_close, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + ACTIONS(837), 10, + anon_sym_LBRACK, + anon_sym_PIPE, anon_sym_LBRACK_CARET, - ACTIONS(1031), 1, + anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + anon_sym_POUND, + anon_sym_PERCENT, + [7725] = 7, + ACTIONS(943), 1, sym_table_cell_alignment, - STATE(807), 1, + ACTIONS(945), 1, + anon_sym_LBRACK_CARET, + STATE(720), 1, sym_table_cell, - STATE(1155), 1, + STATE(1089), 1, sym__inline, - ACTIONS(928), 2, + ACTIONS(861), 2, sym__eof_or_newline, sym__newline_inline, - STATE(407), 2, + STATE(307), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(986), 9, + ACTIONS(940), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -24160,25 +20311,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [10940] = 8, - ACTIONS(1004), 1, - anon_sym_LBRACK_CARET, - ACTIONS(1033), 1, - anon_sym_NULL, - ACTIONS(1035), 1, - sym__table_caption_end, - STATE(310), 1, - aux_sym_table_caption_repeat1, - STATE(405), 1, - sym__inline_line, - STATE(1061), 1, - sym__inline, - STATE(384), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(1000), 9, + [7757] = 4, + ACTIONS(952), 1, + sym__block_quote_continuation, + STATE(238), 1, + aux_sym__block_quote_prefix_repeat1, + ACTIONS(950), 5, + sym__block_close, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + ACTIONS(948), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -24186,22 +20333,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [10974] = 7, - ACTIONS(991), 1, + [7783] = 8, + ACTIONS(915), 1, anon_sym_LBRACK_CARET, - ACTIONS(1037), 1, - sym_table_cell_alignment, - STATE(943), 1, - sym_table_cell, - STATE(1155), 1, + ACTIONS(954), 1, + anon_sym_NULL, + ACTIONS(956), 1, + sym__table_caption_end, + STATE(237), 1, + aux_sym_table_caption_repeat1, + STATE(313), 1, + sym__inline_line, + STATE(1085), 1, sym__inline, - ACTIONS(928), 2, - sym__eof_or_newline, - sym__newline_inline, - STATE(407), 2, + STATE(300), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(986), 9, + ACTIONS(911), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -24211,22 +20359,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11006] = 7, - ACTIONS(991), 1, + [7817] = 8, + ACTIONS(915), 1, anon_sym_LBRACK_CARET, - ACTIONS(1039), 1, - sym_table_cell_alignment, - STATE(950), 1, - sym_table_cell, - STATE(1155), 1, + ACTIONS(958), 1, + anon_sym_NULL, + ACTIONS(960), 1, + sym__table_caption_end, + STATE(237), 1, + aux_sym_table_caption_repeat1, + STATE(313), 1, + sym__inline_line, + STATE(1085), 1, sym__inline, - ACTIONS(928), 2, - sym__eof_or_newline, - sym__newline_inline, - STATE(407), 2, + STATE(300), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(986), 9, + ACTIONS(911), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -24236,22 +20385,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11038] = 7, - ACTIONS(991), 1, + [7851] = 7, + ACTIONS(945), 1, anon_sym_LBRACK_CARET, - ACTIONS(1041), 1, + ACTIONS(962), 1, sym_table_cell_alignment, - STATE(959), 1, + STATE(836), 1, sym_table_cell, - STATE(1155), 1, + STATE(1089), 1, sym__inline, - ACTIONS(928), 2, + ACTIONS(861), 2, sym__eof_or_newline, sym__newline_inline, - STATE(407), 2, + STATE(307), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(986), 9, + ACTIONS(940), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -24261,22 +20410,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11070] = 7, - ACTIONS(991), 1, + [7883] = 7, + ACTIONS(945), 1, anon_sym_LBRACK_CARET, - ACTIONS(1043), 1, + ACTIONS(964), 1, sym_table_cell_alignment, - STATE(966), 1, + STATE(860), 1, sym_table_cell, - STATE(1155), 1, + STATE(1089), 1, sym__inline, - ACTIONS(928), 2, + ACTIONS(861), 2, sym__eof_or_newline, sym__newline_inline, - STATE(407), 2, + STATE(307), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(986), 9, + ACTIONS(940), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -24286,22 +20435,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11102] = 7, - ACTIONS(991), 1, + [7915] = 7, + ACTIONS(945), 1, anon_sym_LBRACK_CARET, - ACTIONS(1045), 1, + ACTIONS(966), 1, sym_table_cell_alignment, - STATE(974), 1, + STATE(864), 1, sym_table_cell, - STATE(1155), 1, + STATE(1089), 1, sym__inline, - ACTIONS(928), 2, + ACTIONS(861), 2, sym__eof_or_newline, sym__newline_inline, - STATE(407), 2, + STATE(307), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(986), 9, + ACTIONS(940), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -24311,22 +20460,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11134] = 7, - ACTIONS(991), 1, + [7947] = 7, + ACTIONS(945), 1, anon_sym_LBRACK_CARET, - ACTIONS(1047), 1, + ACTIONS(968), 1, sym_table_cell_alignment, - STATE(981), 1, + STATE(869), 1, sym_table_cell, - STATE(1155), 1, + STATE(1089), 1, sym__inline, - ACTIONS(928), 2, + ACTIONS(861), 2, sym__eof_or_newline, sym__newline_inline, - STATE(407), 2, + STATE(307), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(986), 9, + ACTIONS(940), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -24336,22 +20485,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11166] = 7, - ACTIONS(991), 1, + [7979] = 7, + ACTIONS(945), 1, anon_sym_LBRACK_CARET, - ACTIONS(1049), 1, + ACTIONS(970), 1, sym_table_cell_alignment, - STATE(987), 1, + STATE(873), 1, sym_table_cell, - STATE(1155), 1, + STATE(1089), 1, sym__inline, - ACTIONS(928), 2, + ACTIONS(861), 2, sym__eof_or_newline, sym__newline_inline, - STATE(407), 2, + STATE(307), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(986), 9, + ACTIONS(940), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -24361,22 +20510,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11198] = 7, - ACTIONS(991), 1, + [8011] = 7, + ACTIONS(945), 1, anon_sym_LBRACK_CARET, - ACTIONS(1051), 1, + ACTIONS(972), 1, sym_table_cell_alignment, - STATE(994), 1, + STATE(880), 1, sym_table_cell, - STATE(1155), 1, + STATE(1089), 1, sym__inline, - ACTIONS(928), 2, + ACTIONS(861), 2, sym__eof_or_newline, sym__newline_inline, - STATE(407), 2, + STATE(307), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(986), 9, + ACTIONS(940), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -24386,22 +20535,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11230] = 7, - ACTIONS(991), 1, + [8043] = 7, + ACTIONS(945), 1, anon_sym_LBRACK_CARET, - ACTIONS(1053), 1, + ACTIONS(974), 1, sym_table_cell_alignment, - STATE(877), 1, + STATE(887), 1, sym_table_cell, - STATE(1155), 1, + STATE(1089), 1, sym__inline, - ACTIONS(928), 2, + ACTIONS(861), 2, sym__eof_or_newline, sym__newline_inline, - STATE(407), 2, + STATE(307), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(986), 9, + ACTIONS(940), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -24411,23 +20560,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11262] = 8, - ACTIONS(1004), 1, + [8075] = 7, + ACTIONS(945), 1, anon_sym_LBRACK_CARET, - ACTIONS(1055), 1, - anon_sym_NULL, - ACTIONS(1057), 1, - sym__table_caption_end, - STATE(310), 1, - aux_sym_table_caption_repeat1, - STATE(405), 1, - sym__inline_line, - STATE(1061), 1, + ACTIONS(976), 1, + sym_table_cell_alignment, + STATE(895), 1, + sym_table_cell, + STATE(1089), 1, sym__inline, - STATE(384), 2, + ACTIONS(861), 2, + sym__eof_or_newline, + sym__newline_inline, + STATE(307), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1000), 9, + ACTIONS(940), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -24437,23 +20585,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11296] = 8, - ACTIONS(1004), 1, + [8107] = 7, + ACTIONS(945), 1, anon_sym_LBRACK_CARET, - ACTIONS(1059), 1, - anon_sym_NULL, - ACTIONS(1061), 1, - sym__table_caption_end, - STATE(310), 1, - aux_sym_table_caption_repeat1, - STATE(405), 1, - sym__inline_line, - STATE(1061), 1, + ACTIONS(978), 1, + sym_table_cell_alignment, + STATE(900), 1, + sym_table_cell, + STATE(1089), 1, sym__inline, - STATE(384), 2, + ACTIONS(861), 2, + sym__eof_or_newline, + sym__newline_inline, + STATE(307), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1000), 9, + ACTIONS(940), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -24463,20 +20610,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11330] = 6, - ACTIONS(1066), 1, + [8139] = 6, + ACTIONS(983), 1, anon_sym_LBRACK_CARET, - STATE(1280), 1, + STATE(1030), 1, sym_link_label, - STATE(1296), 1, + STATE(1040), 1, sym__inline, - ACTIONS(928), 2, + ACTIONS(861), 2, sym__eof_or_newline, sym__newline_inline, - STATE(385), 2, + STATE(304), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1063), 9, + ACTIONS(980), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -24486,15 +20633,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11359] = 2, - ACTIONS(445), 6, - sym__block_close, + [8168] = 4, + ACTIONS(67), 1, + sym__block_quote_continuation, + STATE(254), 1, + aux_sym__block_quote_prefix_repeat1, + ACTIONS(950), 4, sym_list_marker_dash, sym_list_marker_star, sym_list_marker_plus, sym__list_marker_task_begin, - sym__block_quote_continuation, - ACTIONS(443), 10, + ACTIONS(948), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -24505,17 +20654,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11380] = 4, - ACTIONS(67), 1, + [8193] = 4, + ACTIONS(986), 1, sym__block_quote_continuation, - STATE(331), 1, + STATE(254), 1, aux_sym__block_quote_prefix_repeat1, - ACTIONS(996), 4, + ACTIONS(839), 4, sym_list_marker_dash, sym_list_marker_star, sym_list_marker_plus, sym__list_marker_task_begin, - ACTIONS(994), 10, + ACTIONS(837), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -24526,67 +20675,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11405] = 4, - ACTIONS(1069), 1, - sym__block_quote_continuation, - STATE(331), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(902), 4, + [8218] = 2, + ACTIONS(430), 6, + sym__block_close, sym_list_marker_dash, sym_list_marker_star, sym_list_marker_plus, sym__list_marker_task_begin, - ACTIONS(900), 10, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - [11430] = 7, - ACTIONS(942), 1, - anon_sym_LBRACK_CARET, - ACTIONS(978), 1, sym__block_quote_continuation, - STATE(387), 1, - sym__block_quote_prefix, - STATE(395), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(817), 1, - sym__inline, - STATE(381), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(13), 9, + ACTIONS(428), 10, anon_sym_LBRACK, anon_sym_PIPE, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - [11461] = 6, - ACTIONS(1066), 1, anon_sym_LBRACK_CARET, - STATE(1296), 1, - sym__inline, - STATE(1308), 1, - sym_link_label, - ACTIONS(928), 2, - sym__eof_or_newline, - sym__newline_inline, - STATE(385), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(1063), 9, - anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -24594,20 +20694,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11490] = 6, - ACTIONS(1066), 1, + [8239] = 6, + ACTIONS(983), 1, anon_sym_LBRACK_CARET, - STATE(1296), 1, + STATE(1040), 1, sym__inline, - STATE(1309), 1, + STATE(1187), 1, sym_link_label, - ACTIONS(928), 2, + ACTIONS(861), 2, sym__eof_or_newline, sym__newline_inline, - STATE(385), 2, + STATE(304), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1063), 9, + ACTIONS(980), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -24617,20 +20717,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11519] = 6, - ACTIONS(1066), 1, + [8268] = 7, + ACTIONS(873), 1, anon_sym_LBRACK_CARET, - STATE(1296), 1, + ACTIONS(901), 1, + sym__block_quote_continuation, + STATE(306), 1, + sym__block_quote_prefix, + STATE(317), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(858), 1, sym__inline, - STATE(1310), 1, - sym_link_label, - ACTIONS(928), 2, - sym__eof_or_newline, - sym__newline_inline, - STATE(385), 2, + STATE(297), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1063), 9, + ACTIONS(13), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -24640,20 +20741,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11548] = 6, - ACTIONS(1066), 1, + [8299] = 6, + ACTIONS(983), 1, anon_sym_LBRACK_CARET, - STATE(1296), 1, + STATE(1040), 1, sym__inline, - STATE(1311), 1, + STATE(1184), 1, sym_link_label, - ACTIONS(928), 2, + ACTIONS(861), 2, sym__eof_or_newline, sym__newline_inline, - STATE(385), 2, + STATE(304), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1063), 9, + ACTIONS(980), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -24663,126 +20764,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11577] = 6, - ACTIONS(1066), 1, + [8328] = 6, + ACTIONS(983), 1, anon_sym_LBRACK_CARET, - STATE(1296), 1, + STATE(1040), 1, sym__inline, - STATE(1312), 1, + STATE(1185), 1, sym_link_label, - ACTIONS(928), 2, + ACTIONS(861), 2, sym__eof_or_newline, sym__newline_inline, - STATE(385), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(1063), 9, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - [11606] = 6, - ACTIONS(1004), 1, - anon_sym_LBRACK_CARET, - STATE(767), 1, - sym__inline_line, - STATE(1111), 1, - sym__heading_content, - STATE(1112), 1, - sym__inline, - STATE(384), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(1000), 9, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - [11634] = 2, - ACTIONS(445), 5, - sym_list_marker_dash, - sym_list_marker_star, - sym_list_marker_plus, - sym__list_marker_task_begin, - sym__block_quote_continuation, - ACTIONS(443), 10, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - [11654] = 6, - ACTIONS(1004), 1, - anon_sym_LBRACK_CARET, - STATE(316), 1, - aux_sym_table_caption_repeat1, - STATE(405), 1, - sym__inline_line, - STATE(1061), 1, - sym__inline, - STATE(384), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(1000), 9, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - [11682] = 6, - ACTIONS(1053), 1, - sym_table_cell_alignment, - ACTIONS(1074), 1, - anon_sym_LBRACK_CARET, - STATE(877), 1, - sym_table_cell, - STATE(1155), 1, - sym__inline, - STATE(407), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(1072), 9, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - [11710] = 6, - ACTIONS(1031), 1, - sym_table_cell_alignment, - ACTIONS(1074), 1, - anon_sym_LBRACK_CARET, - STATE(807), 1, - sym_table_cell, - STATE(1155), 1, - sym__inline, - STATE(407), 2, + STATE(304), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1072), 9, + ACTIONS(980), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -24792,19 +20787,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11738] = 6, - ACTIONS(1074), 1, + [8357] = 6, + ACTIONS(983), 1, anon_sym_LBRACK_CARET, - ACTIONS(1076), 1, - sym__newline, - STATE(1049), 1, - sym_table_cell, - STATE(1155), 1, + STATE(1040), 1, sym__inline, - STATE(407), 2, + STATE(1186), 1, + sym_link_label, + ACTIONS(861), 2, + sym__eof_or_newline, + sym__newline_inline, + STATE(304), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1072), 9, + ACTIONS(980), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -24814,19 +20810,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11766] = 6, - ACTIONS(1074), 1, + [8386] = 6, + ACTIONS(991), 1, anon_sym_LBRACK_CARET, - ACTIONS(1078), 1, + ACTIONS(993), 1, sym__newline, - STATE(1049), 1, - sym_table_cell, - STATE(1155), 1, + STATE(1089), 1, sym__inline, - STATE(407), 2, + STATE(1148), 1, + sym_table_cell, + STATE(307), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1072), 9, + ACTIONS(989), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -24836,19 +20832,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11794] = 6, - ACTIONS(1074), 1, + [8414] = 6, + ACTIONS(962), 1, + sym_table_cell_alignment, + ACTIONS(991), 1, anon_sym_LBRACK_CARET, - ACTIONS(1080), 1, - sym__newline, - STATE(1049), 1, + STATE(836), 1, sym_table_cell, - STATE(1155), 1, + STATE(1089), 1, sym__inline, - STATE(407), 2, + STATE(307), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1072), 9, + ACTIONS(989), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -24858,19 +20854,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11822] = 6, - ACTIONS(1074), 1, + [8442] = 6, + ACTIONS(915), 1, anon_sym_LBRACK_CARET, - ACTIONS(1082), 1, - sym__newline, - STATE(1049), 1, - sym_table_cell, - STATE(1155), 1, + STATE(236), 1, + aux_sym_table_caption_repeat1, + STATE(313), 1, + sym__inline_line, + STATE(1085), 1, sym__inline, - STATE(407), 2, + STATE(300), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1072), 9, + ACTIONS(911), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -24880,19 +20876,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11850] = 6, - ACTIONS(1074), 1, + [8470] = 6, + ACTIONS(943), 1, + sym_table_cell_alignment, + ACTIONS(991), 1, anon_sym_LBRACK_CARET, - ACTIONS(1084), 1, - sym__newline, - STATE(1049), 1, + STATE(720), 1, sym_table_cell, - STATE(1155), 1, + STATE(1089), 1, sym__inline, - STATE(407), 2, + STATE(307), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1072), 9, + ACTIONS(989), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -24902,21 +20898,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11878] = 6, - ACTIONS(1074), 1, - anon_sym_LBRACK_CARET, - ACTIONS(1086), 1, - sym__newline, - STATE(1049), 1, - sym_table_cell, - STATE(1155), 1, - sym__inline, - STATE(407), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(1072), 9, + [8498] = 2, + ACTIONS(430), 5, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym__block_quote_continuation, + ACTIONS(428), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -24924,19 +20916,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11906] = 6, - ACTIONS(1074), 1, + [8518] = 6, + ACTIONS(991), 1, anon_sym_LBRACK_CARET, - ACTIONS(1088), 1, + ACTIONS(995), 1, sym__newline, - STATE(1049), 1, - sym_table_cell, - STATE(1155), 1, + STATE(1089), 1, sym__inline, - STATE(407), 2, + STATE(1148), 1, + sym_table_cell, + STATE(307), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1072), 9, + ACTIONS(989), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -24946,19 +20938,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11934] = 6, - ACTIONS(1074), 1, + [8546] = 6, + ACTIONS(991), 1, anon_sym_LBRACK_CARET, - ACTIONS(1090), 1, + ACTIONS(997), 1, sym__newline, - STATE(1049), 1, - sym_table_cell, - STATE(1155), 1, + STATE(1089), 1, sym__inline, - STATE(407), 2, + STATE(1148), 1, + sym_table_cell, + STATE(307), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1072), 9, + ACTIONS(989), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -24968,19 +20960,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11962] = 6, - ACTIONS(1074), 1, + [8574] = 6, + ACTIONS(915), 1, anon_sym_LBRACK_CARET, - ACTIONS(1092), 1, - sym__newline, - STATE(1049), 1, - sym_table_cell, - STATE(1155), 1, + STATE(641), 1, + sym__inline_line, + STATE(1051), 1, sym__inline, - STATE(407), 2, + STATE(1191), 1, + sym__heading_content, + STATE(300), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1072), 9, + ACTIONS(911), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -24990,19 +20982,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [11990] = 6, - ACTIONS(1074), 1, + [8602] = 6, + ACTIONS(991), 1, anon_sym_LBRACK_CARET, - ACTIONS(1094), 1, + ACTIONS(999), 1, sym__newline, - STATE(1049), 1, - sym_table_cell, - STATE(1155), 1, + STATE(1089), 1, sym__inline, - STATE(407), 2, + STATE(1148), 1, + sym_table_cell, + STATE(307), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1072), 9, + ACTIONS(989), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -25012,19 +21004,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [12018] = 6, - ACTIONS(1074), 1, + [8630] = 6, + ACTIONS(991), 1, anon_sym_LBRACK_CARET, - ACTIONS(1096), 1, + ACTIONS(1001), 1, sym__newline, - STATE(1049), 1, - sym_table_cell, - STATE(1155), 1, + STATE(1089), 1, sym__inline, - STATE(407), 2, + STATE(1148), 1, + sym_table_cell, + STATE(307), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1072), 9, + ACTIONS(989), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -25034,19 +21026,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [12046] = 6, - ACTIONS(1074), 1, + [8658] = 6, + ACTIONS(991), 1, anon_sym_LBRACK_CARET, - ACTIONS(1098), 1, + ACTIONS(1003), 1, sym__newline, - STATE(1049), 1, - sym_table_cell, - STATE(1155), 1, + STATE(1089), 1, sym__inline, - STATE(407), 2, + STATE(1148), 1, + sym_table_cell, + STATE(307), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1072), 9, + ACTIONS(989), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -25056,19 +21048,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [12074] = 6, - ACTIONS(1074), 1, + [8686] = 6, + ACTIONS(991), 1, anon_sym_LBRACK_CARET, - ACTIONS(1100), 1, + ACTIONS(1005), 1, sym__newline, - STATE(1049), 1, - sym_table_cell, - STATE(1155), 1, + STATE(1089), 1, sym__inline, - STATE(407), 2, + STATE(1148), 1, + sym_table_cell, + STATE(307), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1072), 9, + ACTIONS(989), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -25078,19 +21070,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [12102] = 6, - ACTIONS(1074), 1, + [8714] = 6, + ACTIONS(991), 1, anon_sym_LBRACK_CARET, - ACTIONS(1102), 1, + ACTIONS(1007), 1, sym__newline, - STATE(1049), 1, - sym_table_cell, - STATE(1155), 1, + STATE(1089), 1, sym__inline, - STATE(407), 2, + STATE(1148), 1, + sym_table_cell, + STATE(307), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1072), 9, + ACTIONS(989), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -25100,19 +21092,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [12130] = 6, - ACTIONS(1074), 1, + [8742] = 6, + ACTIONS(991), 1, anon_sym_LBRACK_CARET, - ACTIONS(1104), 1, + ACTIONS(1009), 1, sym__newline, - STATE(1049), 1, - sym_table_cell, - STATE(1155), 1, + STATE(1089), 1, sym__inline, - STATE(407), 2, + STATE(1148), 1, + sym_table_cell, + STATE(307), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1072), 9, + ACTIONS(989), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -25122,19 +21114,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [12158] = 6, - ACTIONS(1004), 1, + [8770] = 6, + ACTIONS(991), 1, anon_sym_LBRACK_CARET, - STATE(767), 1, - sym__inline_line, - STATE(1050), 1, - sym__heading_content, - STATE(1112), 1, + ACTIONS(1011), 1, + sym__newline, + STATE(1089), 1, sym__inline, - STATE(384), 2, + STATE(1148), 1, + sym_table_cell, + STATE(307), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1000), 9, + ACTIONS(989), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -25144,19 +21136,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [12186] = 6, - ACTIONS(1004), 1, + [8798] = 6, + ACTIONS(991), 1, anon_sym_LBRACK_CARET, - STATE(327), 1, - aux_sym_table_caption_repeat1, - STATE(405), 1, - sym__inline_line, - STATE(1061), 1, + ACTIONS(1013), 1, + sym__newline, + STATE(1089), 1, sym__inline, - STATE(384), 2, + STATE(1148), 1, + sym_table_cell, + STATE(307), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1000), 9, + ACTIONS(989), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -25166,19 +21158,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [12214] = 6, - ACTIONS(1025), 1, - sym_table_cell_alignment, - ACTIONS(1074), 1, + [8826] = 6, + ACTIONS(991), 1, anon_sym_LBRACK_CARET, - STATE(926), 1, - sym_table_cell, - STATE(1155), 1, + ACTIONS(1015), 1, + sym__newline, + STATE(1089), 1, sym__inline, - STATE(407), 2, + STATE(1148), 1, + sym_table_cell, + STATE(307), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1072), 9, + ACTIONS(989), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -25188,19 +21180,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [12242] = 6, - ACTIONS(989), 1, - sym_table_cell_alignment, - ACTIONS(1074), 1, + [8854] = 6, + ACTIONS(991), 1, anon_sym_LBRACK_CARET, - STATE(933), 1, - sym_table_cell, - STATE(1155), 1, + ACTIONS(1017), 1, + sym__newline, + STATE(1089), 1, sym__inline, - STATE(407), 2, + STATE(1148), 1, + sym_table_cell, + STATE(307), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1072), 9, + ACTIONS(989), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -25210,19 +21202,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [12270] = 6, - ACTIONS(1004), 1, + [8882] = 6, + ACTIONS(915), 1, anon_sym_LBRACK_CARET, - STATE(767), 1, + STATE(641), 1, sym__inline_line, - STATE(1112), 1, + STATE(1051), 1, sym__inline, - STATE(1292), 1, + STATE(1082), 1, sym__heading_content, - STATE(384), 2, + STATE(300), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1000), 9, + ACTIONS(911), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -25232,19 +21224,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [12298] = 6, - ACTIONS(1004), 1, + [8910] = 6, + ACTIONS(915), 1, anon_sym_LBRACK_CARET, - STATE(309), 1, + STATE(234), 1, aux_sym_table_caption_repeat1, - STATE(405), 1, + STATE(313), 1, sym__inline_line, - STATE(1061), 1, + STATE(1085), 1, sym__inline, - STATE(384), 2, + STATE(300), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1000), 9, + ACTIONS(911), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -25254,19 +21246,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [12326] = 6, - ACTIONS(1037), 1, + [8938] = 6, + ACTIONS(964), 1, sym_table_cell_alignment, - ACTIONS(1074), 1, + ACTIONS(991), 1, anon_sym_LBRACK_CARET, - STATE(943), 1, + STATE(860), 1, sym_table_cell, - STATE(1155), 1, + STATE(1089), 1, sym__inline, - STATE(407), 2, + STATE(307), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1072), 9, + ACTIONS(989), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -25276,19 +21268,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [12354] = 6, - ACTIONS(1039), 1, + [8966] = 6, + ACTIONS(966), 1, sym_table_cell_alignment, - ACTIONS(1074), 1, + ACTIONS(991), 1, anon_sym_LBRACK_CARET, - STATE(950), 1, + STATE(864), 1, sym_table_cell, - STATE(1155), 1, + STATE(1089), 1, sym__inline, - STATE(407), 2, + STATE(307), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1072), 9, + ACTIONS(989), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -25298,19 +21290,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [12382] = 6, - ACTIONS(1004), 1, + [8994] = 6, + ACTIONS(915), 1, anon_sym_LBRACK_CARET, - STATE(767), 1, + STATE(641), 1, sym__inline_line, - STATE(1112), 1, - sym__inline, - STATE(1145), 1, + STATE(994), 1, sym__heading_content, - STATE(384), 2, + STATE(1051), 1, + sym__inline, + STATE(300), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1000), 9, + ACTIONS(911), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -25320,19 +21312,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [12410] = 6, - ACTIONS(1004), 1, + [9022] = 6, + ACTIONS(915), 1, anon_sym_LBRACK_CARET, - STATE(314), 1, + STATE(242), 1, aux_sym_table_caption_repeat1, - STATE(405), 1, + STATE(313), 1, sym__inline_line, - STATE(1061), 1, + STATE(1085), 1, sym__inline, - STATE(384), 2, + STATE(300), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1000), 9, + ACTIONS(911), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -25342,19 +21334,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [12438] = 6, - ACTIONS(1041), 1, + [9050] = 6, + ACTIONS(968), 1, sym_table_cell_alignment, - ACTIONS(1074), 1, + ACTIONS(991), 1, anon_sym_LBRACK_CARET, - STATE(959), 1, + STATE(869), 1, sym_table_cell, - STATE(1155), 1, + STATE(1089), 1, sym__inline, - STATE(407), 2, + STATE(307), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1072), 9, + ACTIONS(989), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -25364,19 +21356,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [12466] = 6, - ACTIONS(1043), 1, + [9078] = 6, + ACTIONS(970), 1, sym_table_cell_alignment, - ACTIONS(1074), 1, + ACTIONS(991), 1, anon_sym_LBRACK_CARET, - STATE(966), 1, + STATE(873), 1, sym_table_cell, - STATE(1155), 1, + STATE(1089), 1, sym__inline, - STATE(407), 2, + STATE(307), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1072), 9, + ACTIONS(989), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -25386,19 +21378,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [12494] = 6, - ACTIONS(1004), 1, + [9106] = 6, + ACTIONS(915), 1, anon_sym_LBRACK_CARET, - STATE(767), 1, + STATE(641), 1, sym__inline_line, - STATE(1112), 1, + STATE(1051), 1, sym__inline, - STATE(1251), 1, + STATE(1111), 1, sym__heading_content, - STATE(384), 2, + STATE(300), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1000), 9, + ACTIONS(911), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -25408,19 +21400,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [12522] = 6, - ACTIONS(1004), 1, + [9134] = 6, + ACTIONS(915), 1, anon_sym_LBRACK_CARET, - STATE(312), 1, + STATE(241), 1, aux_sym_table_caption_repeat1, - STATE(405), 1, + STATE(313), 1, sym__inline_line, - STATE(1061), 1, + STATE(1085), 1, sym__inline, - STATE(384), 2, + STATE(300), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1000), 9, + ACTIONS(911), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -25430,19 +21422,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [12550] = 6, - ACTIONS(1045), 1, + [9162] = 6, + ACTIONS(972), 1, sym_table_cell_alignment, - ACTIONS(1074), 1, + ACTIONS(991), 1, anon_sym_LBRACK_CARET, - STATE(974), 1, + STATE(880), 1, sym_table_cell, - STATE(1155), 1, + STATE(1089), 1, sym__inline, - STATE(407), 2, + STATE(307), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1072), 9, + ACTIONS(989), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -25452,19 +21444,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [12578] = 6, - ACTIONS(1047), 1, + [9190] = 6, + ACTIONS(974), 1, sym_table_cell_alignment, - ACTIONS(1074), 1, + ACTIONS(991), 1, anon_sym_LBRACK_CARET, - STATE(981), 1, + STATE(887), 1, sym_table_cell, - STATE(1155), 1, + STATE(1089), 1, sym__inline, - STATE(407), 2, + STATE(307), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1072), 9, + ACTIONS(989), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -25474,19 +21466,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [12606] = 6, - ACTIONS(1004), 1, + [9218] = 6, + ACTIONS(991), 1, anon_sym_LBRACK_CARET, - STATE(326), 1, - aux_sym_table_caption_repeat1, - STATE(405), 1, - sym__inline_line, - STATE(1061), 1, + ACTIONS(1019), 1, + sym__newline, + STATE(1089), 1, sym__inline, - STATE(384), 2, + STATE(1148), 1, + sym_table_cell, + STATE(307), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1000), 9, + ACTIONS(989), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -25496,19 +21488,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [12634] = 6, - ACTIONS(1049), 1, - sym_table_cell_alignment, - ACTIONS(1074), 1, + [9246] = 6, + ACTIONS(915), 1, anon_sym_LBRACK_CARET, - STATE(987), 1, - sym_table_cell, - STATE(1155), 1, + STATE(235), 1, + aux_sym_table_caption_repeat1, + STATE(313), 1, + sym__inline_line, + STATE(1085), 1, sym__inline, - STATE(407), 2, + STATE(300), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1072), 9, + ACTIONS(911), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -25518,19 +21510,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [12662] = 6, - ACTIONS(1051), 1, + [9274] = 6, + ACTIONS(976), 1, sym_table_cell_alignment, - ACTIONS(1074), 1, + ACTIONS(991), 1, anon_sym_LBRACK_CARET, - STATE(994), 1, + STATE(895), 1, sym_table_cell, - STATE(1155), 1, + STATE(1089), 1, sym__inline, - STATE(407), 2, + STATE(307), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1072), 9, + ACTIONS(989), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -25540,19 +21532,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [12690] = 6, - ACTIONS(1074), 1, + [9302] = 6, + ACTIONS(978), 1, + sym_table_cell_alignment, + ACTIONS(991), 1, anon_sym_LBRACK_CARET, - ACTIONS(1106), 1, - sym__newline, - STATE(1049), 1, + STATE(900), 1, sym_table_cell, - STATE(1155), 1, + STATE(1089), 1, sym__inline, - STATE(407), 2, + STATE(307), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1072), 9, + ACTIONS(989), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -25562,41 +21554,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [12718] = 6, - ACTIONS(1074), 1, + [9330] = 6, + ACTIONS(991), 1, anon_sym_LBRACK_CARET, - ACTIONS(1108), 1, + ACTIONS(1021), 1, sym__newline, - STATE(1049), 1, - sym_table_cell, - STATE(1155), 1, + STATE(1089), 1, sym__inline, - STATE(407), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(1072), 9, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - [12746] = 6, - ACTIONS(1074), 1, - anon_sym_LBRACK_CARET, - ACTIONS(1110), 1, - sym__newline, - STATE(1049), 1, + STATE(1148), 1, sym_table_cell, - STATE(1155), 1, - sym__inline, - STATE(407), 2, + STATE(307), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1072), 9, + ACTIONS(989), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -25606,17 +21576,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [12774] = 5, - ACTIONS(1004), 1, + [9358] = 5, + ACTIONS(991), 1, anon_sym_LBRACK_CARET, - STATE(831), 1, - sym__inline_line, - STATE(1112), 1, + STATE(1089), 1, sym__inline, - STATE(384), 2, + STATE(1148), 1, + sym_table_cell, + STATE(307), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1000), 9, + ACTIONS(989), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -25626,36 +21596,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [12799] = 4, - ACTIONS(942), 1, + [9383] = 4, + ACTIONS(873), 1, anon_sym_LBRACK_CARET, - ACTIONS(1114), 2, + ACTIONS(1025), 2, sym__eof_or_newline, sym__newline_inline, - STATE(383), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(1112), 9, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - [12822] = 5, - ACTIONS(1074), 1, - anon_sym_LBRACK_CARET, - STATE(1049), 1, - sym_table_cell, - STATE(1155), 1, - sym__inline, - STATE(407), 2, + STATE(298), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1072), 9, + ACTIONS(1023), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -25665,16 +21615,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [12847] = 4, - ACTIONS(1119), 1, + [9406] = 4, + ACTIONS(1030), 1, anon_sym_LBRACK_CARET, - ACTIONS(1122), 2, + ACTIONS(1033), 2, sym__eof_or_newline, sym__newline_inline, - STATE(383), 2, + STATE(298), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1116), 9, + ACTIONS(1027), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -25684,15 +21634,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [12870] = 4, - ACTIONS(1004), 1, + [9429] = 5, + ACTIONS(915), 1, anon_sym_LBRACK_CARET, - ACTIONS(1114), 1, - sym__eof_or_newline, - STATE(389), 2, + STATE(714), 1, + sym__inline_line, + STATE(1051), 1, + sym__inline, + STATE(300), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1124), 9, + ACTIONS(911), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -25702,15 +21654,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [12892] = 4, - ACTIONS(1128), 1, - anon_sym_RBRACK, - ACTIONS(1130), 1, + [9454] = 4, + ACTIONS(915), 1, anon_sym_LBRACK_CARET, - STATE(388), 2, + ACTIONS(1025), 1, + sym__eof_or_newline, + STATE(305), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1126), 9, + ACTIONS(1035), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -25720,57 +21672,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [12914] = 10, - ACTIONS(506), 1, + [9476] = 10, + ACTIONS(467), 1, sym__block_quote_continuation, - ACTIONS(1132), 1, + ACTIONS(1037), 1, anon_sym_PIPE, - ACTIONS(1134), 1, + ACTIONS(1039), 1, sym__newline, - ACTIONS(1136), 1, + ACTIONS(1041), 1, sym__table_caption_begin, - STATE(414), 1, + STATE(329), 1, sym_table_row, - STATE(760), 1, - sym_table_caption, - STATE(762), 1, + STATE(583), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1267), 1, + STATE(631), 1, + sym_table_caption, + STATE(1156), 1, sym__block_quote_prefix, - ACTIONS(498), 2, + ACTIONS(459), 2, sym__list_item_continuation, sym__list_item_end, - STATE(398), 3, + STATE(312), 3, sym__table_content, sym_table_separator, aux_sym_table_repeat1, - [12948] = 4, - ACTIONS(942), 1, - anon_sym_LBRACK_CARET, - STATE(864), 1, - sym__inline, - STATE(381), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(13), 9, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - [12970] = 4, - ACTIONS(1141), 1, + [9510] = 4, + ACTIONS(1046), 1, anon_sym_RBRACK, - ACTIONS(1143), 1, + ACTIONS(1048), 1, anon_sym_LBRACK_CARET, - STATE(388), 2, + STATE(302), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1138), 9, + ACTIONS(1043), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -25780,15 +21714,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [12992] = 4, - ACTIONS(1122), 1, - sym__eof_or_newline, - ACTIONS(1149), 1, + [9532] = 4, + ACTIONS(873), 1, anon_sym_LBRACK_CARET, - STATE(389), 2, + STATE(614), 1, + sym__inline, + STATE(297), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1146), 9, + ACTIONS(13), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, @@ -25798,78 +21732,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [13014] = 4, - ACTIONS(942), 1, + [9554] = 4, + ACTIONS(1053), 1, + anon_sym_RBRACK, + ACTIONS(1055), 1, anon_sym_LBRACK_CARET, - STATE(713), 1, - sym__inline, - STATE(381), 2, + STATE(302), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(13), 9, + ACTIONS(1051), 9, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - [13036] = 10, - ACTIONS(498), 1, - sym__block_close, - ACTIONS(506), 1, - sym__block_quote_continuation, - ACTIONS(1152), 1, - anon_sym_PIPE, - ACTIONS(1154), 1, - sym__newline, - ACTIONS(1156), 1, - sym__table_caption_begin, - STATE(433), 1, - sym_table_row, - STATE(762), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(960), 1, - sym_table_caption, - STATE(1253), 1, - sym__block_quote_prefix, - STATE(410), 3, - sym__table_content, - sym_table_separator, - aux_sym_table_repeat1, - [13069] = 10, - ACTIONS(921), 1, - sym__whitespace1, - ACTIONS(1158), 1, - anon_sym_RBRACE, - ACTIONS(1160), 1, - anon_sym_DOT, - ACTIONS(1162), 1, - aux_sym_identifier_token1, - ACTIONS(1164), 1, - anon_sym_PERCENT, - ACTIONS(1166), 1, - sym__id, - STATE(399), 1, - aux_sym_block_attribute_repeat1, - STATE(495), 1, - sym__comment_no_newline, - STATE(1131), 1, - sym_key, - STATE(491), 3, - sym_class, - sym_identifier, - sym_key_value, - [13102] = 2, - ACTIONS(1170), 2, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + anon_sym_POUND, + anon_sym_PERCENT, + [9576] = 4, + ACTIONS(1033), 1, sym__eof_or_newline, - sym__newline_inline, - ACTIONS(1168), 10, + ACTIONS(1060), 1, + anon_sym_LBRACK_CARET, + STATE(305), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(1057), 9, anon_sym_LBRACK, anon_sym_PIPE, - anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -25877,38 +21768,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [13119] = 10, - ACTIONS(921), 1, - sym__whitespace1, - ACTIONS(1160), 1, + [9598] = 4, + ACTIONS(873), 1, + anon_sym_LBRACK_CARET, + STATE(731), 1, + sym__inline, + STATE(297), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(13), 9, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACE, anon_sym_DOT, - ACTIONS(1162), 1, aux_sym_identifier_token1, - ACTIONS(1164), 1, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(1166), 1, - sym__id, - ACTIONS(1172), 1, - anon_sym_RBRACE, - STATE(399), 1, - aux_sym_block_attribute_repeat1, - STATE(495), 1, - sym__comment_no_newline, - STATE(1131), 1, - sym_key, - STATE(491), 3, - sym_class, - sym_identifier, - sym_key_value, - [13152] = 3, - ACTIONS(978), 1, - sym__block_quote_continuation, - STATE(400), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(994), 10, - anon_sym_LBRACK, - anon_sym_PIPE, + [9620] = 4, + ACTIONS(991), 1, anon_sym_LBRACK_CARET, + ACTIONS(1053), 1, + anon_sym_PIPE, + STATE(322), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(1063), 8, + anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -25916,103 +21803,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [13171] = 10, - ACTIONS(921), 1, + [9641] = 10, + ACTIONS(854), 1, sym__whitespace1, - ACTIONS(1160), 1, + ACTIONS(1065), 1, + anon_sym_RBRACE, + ACTIONS(1067), 1, anon_sym_DOT, - ACTIONS(1162), 1, + ACTIONS(1069), 1, aux_sym_identifier_token1, - ACTIONS(1164), 1, + ACTIONS(1071), 1, anon_sym_PERCENT, - ACTIONS(1166), 1, + ACTIONS(1073), 1, sym__id, - ACTIONS(1174), 1, - anon_sym_RBRACE, - STATE(399), 1, + STATE(319), 1, aux_sym_block_attribute_repeat1, - STATE(495), 1, + STATE(374), 1, sym__comment_no_newline, - STATE(1131), 1, + STATE(1096), 1, sym_key, - STATE(491), 3, + STATE(436), 3, sym_class, sym_identifier, sym_key_value, - [13204] = 10, - ACTIONS(921), 1, + [9674] = 10, + ACTIONS(854), 1, sym__whitespace1, - ACTIONS(1160), 1, + ACTIONS(1067), 1, anon_sym_DOT, - ACTIONS(1162), 1, + ACTIONS(1069), 1, aux_sym_identifier_token1, - ACTIONS(1164), 1, + ACTIONS(1071), 1, anon_sym_PERCENT, - ACTIONS(1166), 1, + ACTIONS(1073), 1, sym__id, - ACTIONS(1176), 1, + ACTIONS(1075), 1, anon_sym_RBRACE, - STATE(399), 1, + STATE(319), 1, aux_sym_block_attribute_repeat1, - STATE(495), 1, + STATE(374), 1, sym__comment_no_newline, - STATE(1131), 1, + STATE(1096), 1, sym_key, - STATE(491), 3, + STATE(436), 3, sym_class, sym_identifier, sym_key_value, - [13237] = 7, - ACTIONS(529), 1, + [9707] = 10, + ACTIONS(459), 1, + sym__indented_content_spacer, + ACTIONS(467), 1, sym__block_quote_continuation, - ACTIONS(1178), 1, + ACTIONS(1077), 1, anon_sym_PIPE, - STATE(414), 1, + ACTIONS(1079), 1, + sym__newline, + ACTIONS(1081), 1, + sym__table_caption_begin, + STATE(331), 1, sym_table_row, - STATE(762), 1, + STATE(583), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1267), 1, + STATE(1072), 1, + sym_table_caption, + STATE(1135), 1, sym__block_quote_prefix, - STATE(398), 3, + STATE(323), 3, sym__table_content, sym_table_separator, aux_sym_table_repeat1, - ACTIONS(522), 4, + [9740] = 10, + ACTIONS(459), 1, + sym__block_close, + ACTIONS(467), 1, + sym__block_quote_continuation, + ACTIONS(1083), 1, + anon_sym_PIPE, + ACTIONS(1085), 1, sym__newline, - sym__list_item_continuation, - sym__list_item_end, + ACTIONS(1087), 1, sym__table_caption_begin, - [13264] = 10, - ACTIONS(1181), 1, - anon_sym_RBRACE, - ACTIONS(1183), 1, - anon_sym_DOT, - ACTIONS(1186), 1, - aux_sym_identifier_token1, - ACTIONS(1189), 1, - sym__whitespace1, - ACTIONS(1192), 1, - anon_sym_PERCENT, - ACTIONS(1195), 1, - sym__id, - STATE(399), 1, - aux_sym_block_attribute_repeat1, - STATE(495), 1, - sym__comment_no_newline, - STATE(1131), 1, - sym_key, - STATE(491), 3, - sym_class, - sym_identifier, - sym_key_value, - [13297] = 3, - ACTIONS(1198), 1, + STATE(347), 1, + sym_table_row, + STATE(583), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(830), 1, + sym_table_caption, + STATE(1142), 1, + sym__block_quote_prefix, + STATE(325), 3, + sym__table_content, + sym_table_separator, + aux_sym_table_repeat1, + [9773] = 7, + ACTIONS(484), 1, sym__block_quote_continuation, - STATE(400), 1, + ACTIONS(1089), 1, + anon_sym_PIPE, + STATE(329), 1, + sym_table_row, + STATE(583), 1, aux_sym__block_quote_prefix_repeat1, - ACTIONS(900), 10, + STATE(1156), 1, + sym__block_quote_prefix, + STATE(312), 3, + sym__table_content, + sym_table_separator, + aux_sym_table_repeat1, + ACTIONS(477), 4, + sym__newline, + sym__list_item_continuation, + sym__list_item_end, + sym__table_caption_begin, + [9800] = 2, + ACTIONS(1094), 1, + sym__table_caption_end, + ACTIONS(1092), 11, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_NULL, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -26021,13 +21930,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [13316] = 2, - ACTIONS(1203), 1, - sym__table_caption_end, - ACTIONS(1201), 11, + [9817] = 2, + ACTIONS(1098), 2, + sym__eof_or_newline, + sym__newline_inline, + ACTIONS(1096), 10, anon_sym_LBRACK, anon_sym_PIPE, - anon_sym_NULL, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -26036,61 +21945,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [13333] = 10, - ACTIONS(921), 1, + [9834] = 10, + ACTIONS(854), 1, sym__whitespace1, - ACTIONS(1160), 1, + ACTIONS(1067), 1, anon_sym_DOT, - ACTIONS(1162), 1, + ACTIONS(1069), 1, aux_sym_identifier_token1, - ACTIONS(1164), 1, + ACTIONS(1071), 1, anon_sym_PERCENT, - ACTIONS(1166), 1, + ACTIONS(1073), 1, sym__id, - ACTIONS(1205), 1, + ACTIONS(1100), 1, anon_sym_RBRACE, - STATE(399), 1, + STATE(319), 1, aux_sym_block_attribute_repeat1, - STATE(495), 1, + STATE(374), 1, sym__comment_no_newline, - STATE(1131), 1, + STATE(1096), 1, sym_key, - STATE(491), 3, + STATE(436), 3, sym_class, sym_identifier, sym_key_value, - [13366] = 10, - ACTIONS(921), 1, + [9867] = 10, + ACTIONS(854), 1, sym__whitespace1, - ACTIONS(1160), 1, + ACTIONS(1067), 1, anon_sym_DOT, - ACTIONS(1162), 1, + ACTIONS(1069), 1, aux_sym_identifier_token1, - ACTIONS(1164), 1, + ACTIONS(1071), 1, anon_sym_PERCENT, - ACTIONS(1166), 1, + ACTIONS(1073), 1, sym__id, - ACTIONS(1207), 1, + ACTIONS(1102), 1, anon_sym_RBRACE, - STATE(399), 1, + STATE(319), 1, aux_sym_block_attribute_repeat1, - STATE(495), 1, + STATE(374), 1, sym__comment_no_newline, - STATE(1131), 1, + STATE(1096), 1, sym_key, - STATE(491), 3, + STATE(436), 3, sym_class, sym_identifier, sym_key_value, - [13399] = 3, - ACTIONS(1212), 1, - anon_sym_LBRACK_CARET, - STATE(404), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(1209), 9, + [9900] = 3, + ACTIONS(901), 1, + sym__block_quote_continuation, + STATE(321), 1, + aux_sym__block_quote_prefix_repeat1, + ACTIONS(948), 10, anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -26098,10 +22007,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [13418] = 2, - ACTIONS(1217), 1, + [9919] = 2, + ACTIONS(1106), 1, sym__table_caption_end, - ACTIONS(1215), 11, + ACTIONS(1104), 11, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_NULL, @@ -26113,50 +22022,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [13435] = 10, - ACTIONS(498), 1, - sym__list_item_content_spacer, - ACTIONS(506), 1, - sym__block_quote_continuation, - ACTIONS(1219), 1, - anon_sym_PIPE, - ACTIONS(1221), 1, - sym__newline, - ACTIONS(1223), 1, - sym__table_caption_begin, - STATE(417), 1, - sym_table_row, - STATE(762), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(1173), 1, - sym_table_caption, - STATE(1246), 1, - sym__block_quote_prefix, - STATE(412), 3, - sym__table_content, - sym_table_separator, - aux_sym_table_repeat1, - [13468] = 4, - ACTIONS(1074), 1, - anon_sym_LBRACK_CARET, - ACTIONS(1128), 1, - anon_sym_PIPE, - STATE(404), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(1225), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, + [9936] = 10, + ACTIONS(1108), 1, + anon_sym_RBRACE, + ACTIONS(1110), 1, anon_sym_DOT, + ACTIONS(1113), 1, aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, + ACTIONS(1116), 1, + sym__whitespace1, + ACTIONS(1119), 1, anon_sym_PERCENT, - [13489] = 2, - ACTIONS(1170), 1, - sym__eof_or_newline, - ACTIONS(1168), 10, + ACTIONS(1122), 1, + sym__id, + STATE(319), 1, + aux_sym_block_attribute_repeat1, + STATE(374), 1, + sym__comment_no_newline, + STATE(1096), 1, + sym_key, + STATE(436), 3, + sym_class, + sym_identifier, + sym_key_value, + [9969] = 10, + ACTIONS(854), 1, + sym__whitespace1, + ACTIONS(1067), 1, + anon_sym_DOT, + ACTIONS(1069), 1, + aux_sym_identifier_token1, + ACTIONS(1071), 1, + anon_sym_PERCENT, + ACTIONS(1073), 1, + sym__id, + ACTIONS(1125), 1, + anon_sym_RBRACE, + STATE(319), 1, + aux_sym_block_attribute_repeat1, + STATE(374), 1, + sym__comment_no_newline, + STATE(1096), 1, + sym_key, + STATE(436), 3, + sym_class, + sym_identifier, + sym_key_value, + [10002] = 3, + ACTIONS(1127), 1, + sym__block_quote_continuation, + STATE(321), 1, + aux_sym__block_quote_prefix_repeat1, + ACTIONS(837), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -26167,13 +22084,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [13505] = 2, - ACTIONS(445), 1, - sym__block_quote_continuation, - ACTIONS(443), 10, + [10021] = 3, + ACTIONS(1133), 1, + anon_sym_LBRACK_CARET, + STATE(322), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(1130), 9, anon_sym_LBRACK, anon_sym_PIPE, - anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -26181,29 +22100,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [13521] = 7, - ACTIONS(529), 1, + [10040] = 7, + ACTIONS(484), 1, sym__block_quote_continuation, - ACTIONS(1227), 1, + ACTIONS(1136), 1, anon_sym_PIPE, - STATE(433), 1, + STATE(331), 1, sym_table_row, - STATE(762), 1, + STATE(583), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1253), 1, + STATE(1135), 1, sym__block_quote_prefix, - ACTIONS(522), 3, - sym__block_close, + ACTIONS(477), 3, sym__newline, + sym__indented_content_spacer, sym__table_caption_begin, - STATE(410), 3, + STATE(323), 3, sym__table_content, sym_table_separator, aux_sym_table_repeat1, - [13547] = 1, - ACTIONS(1168), 11, + [10066] = 2, + ACTIONS(430), 1, + sym__block_quote_continuation, + ACTIONS(428), 10, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, @@ -26213,27 +22133,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [13561] = 7, - ACTIONS(529), 1, + [10082] = 7, + ACTIONS(484), 1, sym__block_quote_continuation, - ACTIONS(1230), 1, + ACTIONS(1139), 1, anon_sym_PIPE, - STATE(417), 1, + STATE(347), 1, sym_table_row, - STATE(762), 1, + STATE(583), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1246), 1, + STATE(1142), 1, sym__block_quote_prefix, - ACTIONS(522), 3, + ACTIONS(477), 3, + sym__block_close, sym__newline, - sym__list_item_content_spacer, sym__table_caption_begin, - STATE(412), 3, + STATE(325), 3, sym__table_content, sym_table_separator, aux_sym_table_repeat1, - [13587] = 1, - ACTIONS(1168), 10, + [10108] = 2, + ACTIONS(1098), 1, + sym__eof_or_newline, + ACTIONS(1096), 10, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_LBRACK_CARET, @@ -26244,7899 +22166,7508 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [13600] = 6, - ACTIONS(545), 1, + [10124] = 1, + ACTIONS(1096), 11, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_LBRACK_CARET, + anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + anon_sym_POUND, + anon_sym_PERCENT, + [10138] = 1, + ACTIONS(1096), 10, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACK_CARET, + anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + anon_sym_POUND, + anon_sym_PERCENT, + [10151] = 6, + ACTIONS(497), 1, sym__block_quote_continuation, - ACTIONS(1233), 1, + ACTIONS(1142), 1, anon_sym_PIPE, - STATE(486), 1, + STATE(418), 1, sym_table_separator, - STATE(762), 1, + STATE(583), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1291), 1, + STATE(1173), 1, sym__block_quote_prefix, - ACTIONS(543), 4, + ACTIONS(495), 4, sym__newline, sym__list_item_continuation, - sym__list_item_end, - sym__table_caption_begin, - [13622] = 7, - ACTIONS(1236), 1, - aux_sym__line_token1, - ACTIONS(1238), 1, - sym__block_close, - ACTIONS(1240), 1, - sym__block_quote_continuation, - STATE(721), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(836), 1, - sym__block_quote_prefix, - STATE(1076), 1, - sym_code, - STATE(457), 2, - sym__line, - aux_sym_code_repeat1, - [13645] = 7, - ACTIONS(1236), 1, + sym__list_item_end, + sym__table_caption_begin, + [10173] = 7, + ACTIONS(1145), 1, aux_sym__line_token1, - ACTIONS(1240), 1, - sym__block_quote_continuation, - ACTIONS(1242), 1, + ACTIONS(1147), 1, sym__block_close, - STATE(721), 1, + ACTIONS(1149), 1, + sym__block_quote_continuation, + STATE(679), 1, aux_sym__block_quote_prefix_repeat1, - STATE(836), 1, + STATE(717), 1, sym__block_quote_prefix, - STATE(1178), 1, + STATE(1011), 1, sym_code, - STATE(457), 2, + STATE(366), 2, sym__line, aux_sym_code_repeat1, - [13668] = 6, - ACTIONS(545), 1, + [10196] = 6, + ACTIONS(497), 1, sym__block_quote_continuation, - ACTIONS(1244), 1, + ACTIONS(1151), 1, anon_sym_PIPE, - STATE(528), 1, + STATE(460), 1, sym_table_separator, - STATE(762), 1, + STATE(583), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1279), 1, + STATE(1161), 1, sym__block_quote_prefix, - ACTIONS(543), 3, + ACTIONS(495), 3, sym__newline, - sym__list_item_content_spacer, + sym__indented_content_spacer, sym__table_caption_begin, - [13689] = 8, - ACTIONS(31), 1, - sym__list_marker_task_begin, - ACTIONS(1247), 1, - sym__block_close, - ACTIONS(1249), 1, - sym__block_quote_continuation, - STATE(46), 1, - sym_list_marker_task, - STATE(439), 1, - aux_sym__list_task_repeat1, - STATE(717), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(761), 1, - sym__list_item_task, - STATE(813), 1, - sym__block_quote_prefix, - [13714] = 7, - ACTIONS(1236), 1, + [10217] = 7, + ACTIONS(1145), 1, aux_sym__line_token1, - ACTIONS(1240), 1, + ACTIONS(1149), 1, sym__block_quote_continuation, - ACTIONS(1251), 1, + ACTIONS(1154), 1, sym__block_close, - STATE(721), 1, + STATE(679), 1, aux_sym__block_quote_prefix_repeat1, - STATE(836), 1, + STATE(717), 1, sym__block_quote_prefix, - STATE(1286), 1, + STATE(979), 1, sym_code, - STATE(457), 2, + STATE(366), 2, sym__line, aux_sym_code_repeat1, - [13737] = 7, - ACTIONS(1236), 1, + [10240] = 7, + ACTIONS(1145), 1, aux_sym__line_token1, - ACTIONS(1240), 1, + ACTIONS(1149), 1, sym__block_quote_continuation, - ACTIONS(1253), 1, + ACTIONS(1156), 1, sym__block_close, - STATE(721), 1, + STATE(679), 1, aux_sym__block_quote_prefix_repeat1, - STATE(836), 1, + STATE(717), 1, sym__block_quote_prefix, - STATE(1317), 1, + STATE(980), 1, sym_code, - STATE(457), 2, + STATE(366), 2, sym__line, aux_sym_code_repeat1, - [13760] = 7, - ACTIONS(1236), 1, + [10263] = 7, + ACTIONS(1145), 1, aux_sym__line_token1, - ACTIONS(1240), 1, + ACTIONS(1149), 1, sym__block_quote_continuation, - ACTIONS(1255), 1, + ACTIONS(1158), 1, sym__block_close, - STATE(721), 1, + STATE(679), 1, aux_sym__block_quote_prefix_repeat1, - STATE(836), 1, + STATE(717), 1, sym__block_quote_prefix, - STATE(1186), 1, + STATE(1000), 1, sym_code, - STATE(457), 2, + STATE(366), 2, sym__line, aux_sym_code_repeat1, - [13783] = 7, - ACTIONS(1236), 1, - aux_sym__line_token1, - ACTIONS(1240), 1, - sym__block_quote_continuation, - ACTIONS(1257), 1, + [10286] = 8, + ACTIONS(1160), 1, sym__block_close, - STATE(721), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(836), 1, - sym__block_quote_prefix, - STATE(1034), 1, - sym_code, - STATE(457), 2, - sym__line, - aux_sym_code_repeat1, - [13806] = 8, - ACTIONS(31), 1, + ACTIONS(1162), 1, sym__list_marker_task_begin, - ACTIONS(1249), 1, + ACTIONS(1165), 1, sym__block_quote_continuation, - ACTIONS(1259), 1, - sym__block_close, - STATE(46), 1, + STATE(45), 1, sym_list_marker_task, - STATE(439), 1, + STATE(335), 1, aux_sym__list_task_repeat1, - STATE(717), 1, + STATE(675), 1, aux_sym__block_quote_prefix_repeat1, - STATE(761), 1, + STATE(691), 1, sym__list_item_task, - STATE(813), 1, + STATE(806), 1, sym__block_quote_prefix, - [13831] = 7, - ACTIONS(1236), 1, + [10311] = 7, + ACTIONS(1145), 1, aux_sym__line_token1, - ACTIONS(1240), 1, + ACTIONS(1149), 1, sym__block_quote_continuation, - ACTIONS(1261), 1, + ACTIONS(1168), 1, sym__block_close, - STATE(721), 1, + STATE(679), 1, aux_sym__block_quote_prefix_repeat1, - STATE(836), 1, + STATE(717), 1, sym__block_quote_prefix, - STATE(1067), 1, + STATE(935), 1, sym_code, - STATE(457), 2, + STATE(366), 2, sym__line, aux_sym_code_repeat1, - [13854] = 7, - ACTIONS(1236), 1, + [10334] = 7, + ACTIONS(1145), 1, aux_sym__line_token1, - ACTIONS(1240), 1, + ACTIONS(1149), 1, sym__block_quote_continuation, - ACTIONS(1263), 1, + ACTIONS(1170), 1, sym__block_close, - STATE(721), 1, + STATE(679), 1, aux_sym__block_quote_prefix_repeat1, - STATE(836), 1, + STATE(717), 1, sym__block_quote_prefix, - STATE(1077), 1, + STATE(938), 1, sym_code, - STATE(457), 2, + STATE(366), 2, sym__line, aux_sym_code_repeat1, - [13877] = 7, - ACTIONS(1236), 1, - aux_sym__line_token1, - ACTIONS(1240), 1, - sym__block_quote_continuation, - ACTIONS(1265), 1, + [10357] = 8, + ACTIONS(31), 1, + sym__list_marker_task_begin, + ACTIONS(1172), 1, sym__block_close, - STATE(721), 1, + ACTIONS(1174), 1, + sym__block_quote_continuation, + STATE(45), 1, + sym_list_marker_task, + STATE(335), 1, + aux_sym__list_task_repeat1, + STATE(675), 1, aux_sym__block_quote_prefix_repeat1, - STATE(836), 1, + STATE(691), 1, + sym__list_item_task, + STATE(806), 1, sym__block_quote_prefix, - STATE(1115), 1, - sym_code, - STATE(457), 2, - sym__line, - aux_sym_code_repeat1, - [13900] = 7, - ACTIONS(1236), 1, + [10382] = 7, + ACTIONS(1145), 1, aux_sym__line_token1, - ACTIONS(1240), 1, + ACTIONS(1149), 1, sym__block_quote_continuation, - ACTIONS(1267), 1, + ACTIONS(1176), 1, sym__block_close, - STATE(721), 1, + STATE(679), 1, aux_sym__block_quote_prefix_repeat1, - STATE(836), 1, + STATE(717), 1, sym__block_quote_prefix, - STATE(1122), 1, + STATE(970), 1, sym_code, - STATE(457), 2, + STATE(366), 2, sym__line, aux_sym_code_repeat1, - [13923] = 8, + [10405] = 8, ACTIONS(31), 1, sym__list_marker_task_begin, - ACTIONS(1249), 1, + ACTIONS(1174), 1, sym__block_quote_continuation, - ACTIONS(1269), 1, + ACTIONS(1178), 1, sym__block_close, - STATE(46), 1, + STATE(45), 1, sym_list_marker_task, - STATE(439), 1, + STATE(335), 1, aux_sym__list_task_repeat1, - STATE(717), 1, + STATE(675), 1, aux_sym__block_quote_prefix_repeat1, - STATE(761), 1, + STATE(691), 1, sym__list_item_task, - STATE(813), 1, + STATE(806), 1, sym__block_quote_prefix, - [13948] = 7, - ACTIONS(1236), 1, + [10430] = 7, + ACTIONS(1145), 1, aux_sym__line_token1, - ACTIONS(1240), 1, + ACTIONS(1149), 1, sym__block_quote_continuation, - ACTIONS(1271), 1, + ACTIONS(1180), 1, sym__block_close, - STATE(721), 1, + STATE(679), 1, aux_sym__block_quote_prefix_repeat1, - STATE(836), 1, + STATE(717), 1, sym__block_quote_prefix, - STATE(1221), 1, + STATE(1110), 1, sym_code, - STATE(457), 2, + STATE(366), 2, sym__line, aux_sym_code_repeat1, - [13971] = 7, - ACTIONS(1236), 1, + [10453] = 7, + ACTIONS(1145), 1, aux_sym__line_token1, - ACTIONS(1240), 1, + ACTIONS(1149), 1, sym__block_quote_continuation, - ACTIONS(1273), 1, + ACTIONS(1182), 1, sym__block_close, - STATE(721), 1, + STATE(679), 1, aux_sym__block_quote_prefix_repeat1, - STATE(836), 1, + STATE(717), 1, sym__block_quote_prefix, - STATE(1223), 1, + STATE(1039), 1, sym_code, - STATE(457), 2, + STATE(366), 2, sym__line, aux_sym_code_repeat1, - [13994] = 7, - ACTIONS(1236), 1, + [10476] = 7, + ACTIONS(1145), 1, aux_sym__line_token1, - ACTIONS(1240), 1, + ACTIONS(1149), 1, sym__block_quote_continuation, - ACTIONS(1275), 1, + ACTIONS(1184), 1, sym__block_close, - STATE(721), 1, + STATE(679), 1, aux_sym__block_quote_prefix_repeat1, - STATE(836), 1, + STATE(717), 1, sym__block_quote_prefix, - STATE(1060), 1, + STATE(955), 1, sym_code, - STATE(457), 2, + STATE(366), 2, sym__line, aux_sym_code_repeat1, - [14017] = 8, + [10499] = 8, ACTIONS(31), 1, sym__list_marker_task_begin, - ACTIONS(1249), 1, + ACTIONS(1174), 1, sym__block_quote_continuation, - ACTIONS(1277), 1, + ACTIONS(1186), 1, sym__block_close, - STATE(46), 1, + STATE(45), 1, sym_list_marker_task, - STATE(439), 1, + STATE(335), 1, aux_sym__list_task_repeat1, - STATE(717), 1, + STATE(675), 1, aux_sym__block_quote_prefix_repeat1, - STATE(761), 1, + STATE(691), 1, sym__list_item_task, - STATE(813), 1, - sym__block_quote_prefix, - [14042] = 6, - ACTIONS(545), 1, - sym__block_quote_continuation, - ACTIONS(1279), 1, - anon_sym_PIPE, - STATE(539), 1, - sym_table_separator, - STATE(762), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(1283), 1, - sym__block_quote_prefix, - ACTIONS(543), 3, - sym__block_close, - sym__newline, - sym__table_caption_begin, - [14063] = 7, - ACTIONS(1236), 1, - aux_sym__line_token1, - ACTIONS(1240), 1, - sym__block_quote_continuation, - ACTIONS(1282), 1, - sym__block_close, - STATE(721), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(836), 1, + STATE(806), 1, sym__block_quote_prefix, - STATE(1081), 1, - sym_code, - STATE(457), 2, - sym__line, - aux_sym_code_repeat1, - [14086] = 7, - ACTIONS(1236), 1, + [10524] = 7, + ACTIONS(1145), 1, aux_sym__line_token1, - ACTIONS(1240), 1, + ACTIONS(1149), 1, sym__block_quote_continuation, - ACTIONS(1284), 1, + ACTIONS(1188), 1, sym__block_close, - STATE(721), 1, + STATE(679), 1, aux_sym__block_quote_prefix_repeat1, - STATE(836), 1, + STATE(717), 1, sym__block_quote_prefix, - STATE(1082), 1, + STATE(1168), 1, sym_code, - STATE(457), 2, + STATE(366), 2, sym__line, aux_sym_code_repeat1, - [14109] = 8, + [10547] = 8, ACTIONS(31), 1, sym__list_marker_task_begin, - ACTIONS(1249), 1, + ACTIONS(1174), 1, sym__block_quote_continuation, - ACTIONS(1286), 1, + ACTIONS(1190), 1, sym__block_close, - STATE(46), 1, + STATE(45), 1, sym_list_marker_task, - STATE(439), 1, + STATE(335), 1, aux_sym__list_task_repeat1, - STATE(717), 1, + STATE(675), 1, aux_sym__block_quote_prefix_repeat1, - STATE(761), 1, + STATE(691), 1, sym__list_item_task, - STATE(813), 1, + STATE(806), 1, + sym__block_quote_prefix, + [10572] = 6, + ACTIONS(497), 1, + sym__block_quote_continuation, + ACTIONS(1192), 1, + anon_sym_PIPE, + STATE(455), 1, + sym_table_separator, + STATE(583), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(1165), 1, sym__block_quote_prefix, - [14134] = 7, - ACTIONS(1236), 1, + ACTIONS(495), 3, + sym__block_close, + sym__newline, + sym__table_caption_begin, + [10593] = 7, + ACTIONS(1145), 1, aux_sym__line_token1, - ACTIONS(1240), 1, + ACTIONS(1149), 1, sym__block_quote_continuation, - ACTIONS(1288), 1, + ACTIONS(1195), 1, sym__block_close, - STATE(721), 1, + STATE(679), 1, aux_sym__block_quote_prefix_repeat1, - STATE(836), 1, + STATE(717), 1, sym__block_quote_prefix, - STATE(1162), 1, + STATE(922), 1, sym_code, - STATE(457), 2, + STATE(366), 2, sym__line, aux_sym_code_repeat1, - [14157] = 7, - ACTIONS(1236), 1, + [10616] = 7, + ACTIONS(1145), 1, aux_sym__line_token1, - ACTIONS(1240), 1, + ACTIONS(1149), 1, sym__block_quote_continuation, - ACTIONS(1290), 1, + ACTIONS(1197), 1, sym__block_close, - STATE(721), 1, + STATE(679), 1, aux_sym__block_quote_prefix_repeat1, - STATE(836), 1, + STATE(717), 1, sym__block_quote_prefix, - STATE(1228), 1, + STATE(923), 1, sym_code, - STATE(457), 2, + STATE(366), 2, sym__line, aux_sym_code_repeat1, - [14180] = 8, - ACTIONS(1292), 1, - sym__block_close, - ACTIONS(1294), 1, - sym__list_marker_task_begin, - ACTIONS(1297), 1, + [10639] = 7, + ACTIONS(1145), 1, + aux_sym__line_token1, + ACTIONS(1149), 1, sym__block_quote_continuation, - STATE(46), 1, - sym_list_marker_task, - STATE(439), 1, - aux_sym__list_task_repeat1, - STATE(717), 1, + ACTIONS(1199), 1, + sym__block_close, + STATE(679), 1, aux_sym__block_quote_prefix_repeat1, - STATE(761), 1, - sym__list_item_task, - STATE(813), 1, + STATE(717), 1, sym__block_quote_prefix, - [14205] = 8, + STATE(952), 1, + sym_code, + STATE(366), 2, + sym__line, + aux_sym_code_repeat1, + [10662] = 8, ACTIONS(31), 1, sym__list_marker_task_begin, - ACTIONS(1249), 1, + ACTIONS(1174), 1, sym__block_quote_continuation, - ACTIONS(1300), 1, + ACTIONS(1201), 1, sym__block_close, - STATE(46), 1, + STATE(45), 1, sym_list_marker_task, - STATE(439), 1, + STATE(335), 1, aux_sym__list_task_repeat1, - STATE(717), 1, + STATE(675), 1, aux_sym__block_quote_prefix_repeat1, - STATE(761), 1, + STATE(691), 1, sym__list_item_task, - STATE(813), 1, + STATE(806), 1, sym__block_quote_prefix, - [14230] = 7, - ACTIONS(1236), 1, + [10687] = 7, + ACTIONS(1145), 1, aux_sym__line_token1, - ACTIONS(1240), 1, + ACTIONS(1149), 1, sym__block_quote_continuation, - ACTIONS(1302), 1, + ACTIONS(1203), 1, sym__block_close, - STATE(721), 1, + STATE(679), 1, aux_sym__block_quote_prefix_repeat1, - STATE(836), 1, + STATE(717), 1, sym__block_quote_prefix, - STATE(1177), 1, + STATE(1038), 1, sym_code, - STATE(457), 2, + STATE(366), 2, sym__line, aux_sym_code_repeat1, - [14253] = 7, + [10710] = 7, ACTIONS(29), 1, sym_list_marker_plus, - ACTIONS(1304), 1, + ACTIONS(1205), 1, sym__block_close, - ACTIONS(1306), 1, + ACTIONS(1207), 1, sym__block_quote_continuation, - STATE(451), 1, + STATE(368), 1, aux_sym__list_plus_repeat1, - STATE(730), 1, + STATE(604), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(637), 1, sym__list_item_plus, - STATE(733), 1, + STATE(1189), 1, + sym__block_quote_prefix, + [10732] = 7, + ACTIONS(29), 1, + sym_list_marker_plus, + ACTIONS(1207), 1, + sym__block_quote_continuation, + ACTIONS(1209), 1, + sym__block_close, + STATE(368), 1, + aux_sym__list_plus_repeat1, + STATE(604), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1226), 1, + STATE(637), 1, + sym__list_item_plus, + STATE(1189), 1, sym__block_quote_prefix, - [14275] = 7, - ACTIONS(27), 1, - sym_list_marker_star, - ACTIONS(1308), 1, + [10754] = 7, + ACTIONS(25), 1, + sym_list_marker_dash, + ACTIONS(1211), 1, sym__block_close, - ACTIONS(1310), 1, + ACTIONS(1213), 1, sym__block_quote_continuation, - STATE(459), 1, - aux_sym__list_star_repeat1, - STATE(703), 1, + STATE(365), 1, + aux_sym__list_dash_repeat1, + STATE(636), 1, + sym__list_item_dash, + STATE(690), 1, aux_sym__block_quote_prefix_repeat1, - STATE(759), 1, - sym__list_item_star, - STATE(1037), 1, + STATE(1115), 1, sym__block_quote_prefix, - [14297] = 7, + [10776] = 7, ACTIONS(29), 1, sym_list_marker_plus, - ACTIONS(1306), 1, + ACTIONS(1207), 1, sym__block_quote_continuation, - ACTIONS(1312), 1, + ACTIONS(1215), 1, sym__block_close, - STATE(451), 1, + STATE(368), 1, aux_sym__list_plus_repeat1, - STATE(730), 1, - sym__list_item_plus, - STATE(733), 1, + STATE(604), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1226), 1, + STATE(637), 1, + sym__list_item_plus, + STATE(1189), 1, sym__block_quote_prefix, - [14319] = 7, + [10798] = 7, ACTIONS(25), 1, sym_list_marker_dash, - ACTIONS(1314), 1, - sym__block_close, - ACTIONS(1316), 1, + ACTIONS(1213), 1, sym__block_quote_continuation, - STATE(462), 1, + ACTIONS(1217), 1, + sym__block_close, + STATE(365), 1, aux_sym__list_dash_repeat1, - STATE(727), 1, + STATE(636), 1, sym__list_item_dash, - STATE(735), 1, + STATE(690), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1053), 1, + STATE(1115), 1, sym__block_quote_prefix, - [14341] = 7, + [10820] = 7, ACTIONS(29), 1, sym_list_marker_plus, - ACTIONS(1306), 1, + ACTIONS(1207), 1, sym__block_quote_continuation, - ACTIONS(1318), 1, + ACTIONS(1219), 1, sym__block_close, - STATE(451), 1, + STATE(368), 1, aux_sym__list_plus_repeat1, - STATE(730), 1, + STATE(604), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(637), 1, sym__list_item_plus, - STATE(733), 1, + STATE(1189), 1, + sym__block_quote_prefix, + [10842] = 7, + ACTIONS(27), 1, + sym_list_marker_star, + ACTIONS(1221), 1, + sym__block_close, + ACTIONS(1223), 1, + sym__block_quote_continuation, + STATE(361), 1, + aux_sym__list_star_repeat1, + STATE(670), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(671), 1, + sym__list_item_star, + STATE(936), 1, + sym__block_quote_prefix, + [10864] = 7, + ACTIONS(27), 1, + sym_list_marker_star, + ACTIONS(1223), 1, + sym__block_quote_continuation, + ACTIONS(1225), 1, + sym__block_close, + STATE(361), 1, + aux_sym__list_star_repeat1, + STATE(670), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(671), 1, + sym__list_item_star, + STATE(936), 1, + sym__block_quote_prefix, + [10886] = 7, + ACTIONS(1227), 1, + sym__block_close, + ACTIONS(1229), 1, + sym_list_marker_star, + ACTIONS(1232), 1, + sym__block_quote_continuation, + STATE(361), 1, + aux_sym__list_star_repeat1, + STATE(670), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1226), 1, + STATE(671), 1, + sym__list_item_star, + STATE(936), 1, sym__block_quote_prefix, - [14363] = 7, + [10908] = 7, ACTIONS(27), 1, sym_list_marker_star, - ACTIONS(1310), 1, + ACTIONS(1223), 1, + sym__block_quote_continuation, + ACTIONS(1235), 1, + sym__block_close, + STATE(361), 1, + aux_sym__list_star_repeat1, + STATE(670), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(671), 1, + sym__list_item_star, + STATE(936), 1, + sym__block_quote_prefix, + [10930] = 7, + ACTIONS(25), 1, + sym_list_marker_dash, + ACTIONS(1213), 1, sym__block_quote_continuation, - ACTIONS(1320), 1, + ACTIONS(1237), 1, sym__block_close, - STATE(459), 1, - aux_sym__list_star_repeat1, - STATE(703), 1, + STATE(365), 1, + aux_sym__list_dash_repeat1, + STATE(636), 1, + sym__list_item_dash, + STATE(690), 1, aux_sym__block_quote_prefix_repeat1, - STATE(759), 1, - sym__list_item_star, - STATE(1037), 1, + STATE(1115), 1, sym__block_quote_prefix, - [14385] = 7, + [10952] = 7, ACTIONS(27), 1, sym_list_marker_star, - ACTIONS(1310), 1, + ACTIONS(1223), 1, sym__block_quote_continuation, - ACTIONS(1322), 1, + ACTIONS(1239), 1, sym__block_close, - STATE(459), 1, + STATE(361), 1, aux_sym__list_star_repeat1, - STATE(703), 1, + STATE(670), 1, aux_sym__block_quote_prefix_repeat1, - STATE(759), 1, + STATE(671), 1, sym__list_item_star, - STATE(1037), 1, + STATE(936), 1, sym__block_quote_prefix, - [14407] = 7, - ACTIONS(25), 1, + [10974] = 7, + ACTIONS(1241), 1, + sym__block_close, + ACTIONS(1243), 1, sym_list_marker_dash, - ACTIONS(1316), 1, + ACTIONS(1246), 1, sym__block_quote_continuation, - ACTIONS(1324), 1, - sym__block_close, - STATE(462), 1, + STATE(365), 1, aux_sym__list_dash_repeat1, - STATE(727), 1, + STATE(636), 1, sym__list_item_dash, - STATE(735), 1, + STATE(690), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(1115), 1, + sym__block_quote_prefix, + [10996] = 6, + ACTIONS(1145), 1, + aux_sym__line_token1, + ACTIONS(1149), 1, + sym__block_quote_continuation, + ACTIONS(1249), 1, + sym__block_close, + STATE(679), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1053), 1, + STATE(717), 1, sym__block_quote_prefix, - [14429] = 7, + STATE(369), 2, + sym__line, + aux_sym_code_repeat1, + [11016] = 7, ACTIONS(25), 1, sym_list_marker_dash, - ACTIONS(1316), 1, + ACTIONS(1213), 1, sym__block_quote_continuation, - ACTIONS(1326), 1, + ACTIONS(1251), 1, sym__block_close, - STATE(462), 1, + STATE(365), 1, aux_sym__list_dash_repeat1, - STATE(727), 1, + STATE(636), 1, sym__list_item_dash, - STATE(735), 1, + STATE(690), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1053), 1, + STATE(1115), 1, sym__block_quote_prefix, - [14451] = 7, - ACTIONS(1328), 1, + [11038] = 7, + ACTIONS(1253), 1, sym__block_close, - ACTIONS(1330), 1, + ACTIONS(1255), 1, sym_list_marker_plus, - ACTIONS(1333), 1, + ACTIONS(1258), 1, sym__block_quote_continuation, - STATE(451), 1, + STATE(368), 1, aux_sym__list_plus_repeat1, - STATE(730), 1, - sym__list_item_plus, - STATE(733), 1, + STATE(604), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1226), 1, - sym__block_quote_prefix, - [14473] = 7, - ACTIONS(29), 1, - sym_list_marker_plus, - ACTIONS(1306), 1, - sym__block_quote_continuation, - ACTIONS(1336), 1, - sym__block_close, - STATE(451), 1, - aux_sym__list_plus_repeat1, - STATE(730), 1, + STATE(637), 1, sym__list_item_plus, - STATE(733), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(1226), 1, + STATE(1189), 1, sym__block_quote_prefix, - [14495] = 7, - ACTIONS(25), 1, - sym_list_marker_dash, - ACTIONS(1316), 1, - sym__block_quote_continuation, - ACTIONS(1338), 1, + [11060] = 6, + ACTIONS(1261), 1, + aux_sym__line_token1, + ACTIONS(1264), 1, sym__block_close, - STATE(462), 1, - aux_sym__list_dash_repeat1, - STATE(727), 1, - sym__list_item_dash, - STATE(735), 1, + ACTIONS(1266), 1, + sym__block_quote_continuation, + STATE(679), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1053), 1, + STATE(717), 1, sym__block_quote_prefix, - [14517] = 7, + STATE(369), 2, + sym__line, + aux_sym_code_repeat1, + [11080] = 7, ACTIONS(25), 1, sym_list_marker_dash, - ACTIONS(1316), 1, + ACTIONS(1213), 1, sym__block_quote_continuation, - ACTIONS(1340), 1, + ACTIONS(1269), 1, sym__block_close, - STATE(462), 1, + STATE(365), 1, aux_sym__list_dash_repeat1, - STATE(727), 1, + STATE(636), 1, sym__list_item_dash, - STATE(735), 1, + STATE(690), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1053), 1, + STATE(1115), 1, sym__block_quote_prefix, - [14539] = 7, + [11102] = 7, ACTIONS(29), 1, sym_list_marker_plus, - ACTIONS(1306), 1, + ACTIONS(1207), 1, sym__block_quote_continuation, - ACTIONS(1342), 1, + ACTIONS(1271), 1, sym__block_close, - STATE(451), 1, + STATE(368), 1, aux_sym__list_plus_repeat1, - STATE(730), 1, - sym__list_item_plus, - STATE(733), 1, + STATE(604), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1226), 1, + STATE(637), 1, + sym__list_item_plus, + STATE(1189), 1, sym__block_quote_prefix, - [14561] = 7, + [11124] = 7, ACTIONS(27), 1, sym_list_marker_star, - ACTIONS(1310), 1, + ACTIONS(1223), 1, sym__block_quote_continuation, - ACTIONS(1344), 1, + ACTIONS(1273), 1, sym__block_close, - STATE(459), 1, + STATE(361), 1, aux_sym__list_star_repeat1, - STATE(703), 1, + STATE(670), 1, aux_sym__block_quote_prefix_repeat1, - STATE(759), 1, + STATE(671), 1, sym__list_item_star, - STATE(1037), 1, + STATE(936), 1, sym__block_quote_prefix, - [14583] = 6, - ACTIONS(1236), 1, - aux_sym__line_token1, - ACTIONS(1240), 1, + [11146] = 1, + ACTIONS(1275), 6, + anon_sym_RBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + sym__whitespace1, + anon_sym_PERCENT, + sym__id, + [11155] = 1, + ACTIONS(1277), 6, + anon_sym_RBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + sym__whitespace1, + anon_sym_PERCENT, + sym__id, + [11164] = 6, + ACTIONS(1279), 1, + sym__list_item_continuation, + ACTIONS(1281), 1, + sym__list_item_end, + ACTIONS(1283), 1, sym__block_quote_continuation, - ACTIONS(1346), 1, - sym__block_close, - STATE(721), 1, + STATE(381), 1, + aux_sym_list_item_content_repeat1, + STATE(681), 1, aux_sym__block_quote_prefix_repeat1, - STATE(836), 1, + STATE(1073), 1, sym__block_quote_prefix, - STATE(461), 2, - sym__line, - aux_sym_code_repeat1, - [14603] = 7, - ACTIONS(29), 1, - sym_list_marker_plus, - ACTIONS(1306), 1, + [11183] = 1, + ACTIONS(1285), 6, + anon_sym_RBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + sym__whitespace1, + anon_sym_PERCENT, + sym__id, + [11192] = 1, + ACTIONS(1287), 6, + anon_sym_RBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + sym__whitespace1, + anon_sym_PERCENT, + sym__id, + [11201] = 1, + ACTIONS(1289), 6, + anon_sym_RBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + sym__whitespace1, + anon_sym_PERCENT, + sym__id, + [11210] = 6, + ACTIONS(1283), 1, sym__block_quote_continuation, - ACTIONS(1348), 1, - sym__block_close, - STATE(451), 1, - aux_sym__list_plus_repeat1, - STATE(730), 1, - sym__list_item_plus, - STATE(733), 1, + ACTIONS(1291), 1, + sym__list_item_continuation, + ACTIONS(1293), 1, + sym__list_item_end, + STATE(415), 1, + aux_sym__list_item_definition_repeat1, + STATE(681), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1226), 1, + STATE(1092), 1, sym__block_quote_prefix, - [14625] = 7, - ACTIONS(1350), 1, - sym__block_close, - ACTIONS(1352), 1, - sym_list_marker_star, - ACTIONS(1355), 1, + [11229] = 6, + ACTIONS(1295), 1, + sym__list_item_continuation, + ACTIONS(1298), 1, + sym__list_item_end, + ACTIONS(1300), 1, sym__block_quote_continuation, - STATE(459), 1, - aux_sym__list_star_repeat1, - STATE(703), 1, + STATE(380), 1, + aux_sym_list_item_content_repeat1, + STATE(681), 1, aux_sym__block_quote_prefix_repeat1, - STATE(759), 1, - sym__list_item_star, - STATE(1037), 1, + STATE(1073), 1, sym__block_quote_prefix, - [14647] = 7, - ACTIONS(27), 1, - sym_list_marker_star, - ACTIONS(1310), 1, + [11248] = 6, + ACTIONS(1279), 1, + sym__list_item_continuation, + ACTIONS(1283), 1, sym__block_quote_continuation, - ACTIONS(1358), 1, - sym__block_close, - STATE(459), 1, - aux_sym__list_star_repeat1, - STATE(703), 1, + ACTIONS(1303), 1, + sym__list_item_end, + STATE(380), 1, + aux_sym_list_item_content_repeat1, + STATE(681), 1, aux_sym__block_quote_prefix_repeat1, - STATE(759), 1, - sym__list_item_star, - STATE(1037), 1, + STATE(1073), 1, sym__block_quote_prefix, - [14669] = 6, - ACTIONS(1360), 1, - aux_sym__line_token1, - ACTIONS(1363), 1, - sym__block_close, - ACTIONS(1365), 1, + [11267] = 6, + ACTIONS(1279), 1, + sym__list_item_continuation, + ACTIONS(1283), 1, sym__block_quote_continuation, - STATE(721), 1, + ACTIONS(1305), 1, + sym__list_item_end, + STATE(416), 1, + aux_sym_list_item_content_repeat1, + STATE(681), 1, aux_sym__block_quote_prefix_repeat1, - STATE(836), 1, + STATE(1073), 1, sym__block_quote_prefix, - STATE(461), 2, - sym__line, - aux_sym_code_repeat1, - [14689] = 7, - ACTIONS(1368), 1, - sym__block_close, - ACTIONS(1370), 1, - sym_list_marker_dash, - ACTIONS(1373), 1, + [11286] = 1, + ACTIONS(1307), 6, + anon_sym_RBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + sym__whitespace1, + anon_sym_PERCENT, + sym__id, + [11295] = 6, + ACTIONS(1309), 1, sym__block_quote_continuation, - STATE(462), 1, - aux_sym__list_dash_repeat1, - STATE(727), 1, - sym__list_item_dash, - STATE(735), 1, + ACTIONS(1311), 1, + sym__footnote_continuation, + ACTIONS(1313), 1, + sym__footnote_end, + STATE(385), 1, + aux_sym_footnote_content_repeat1, + STATE(683), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1053), 1, + STATE(993), 1, sym__block_quote_prefix, - [14711] = 7, - ACTIONS(27), 1, - sym_list_marker_star, - ACTIONS(1310), 1, + [11314] = 6, + ACTIONS(1309), 1, sym__block_quote_continuation, - ACTIONS(1376), 1, - sym__block_close, - STATE(459), 1, - aux_sym__list_star_repeat1, - STATE(703), 1, + ACTIONS(1311), 1, + sym__footnote_continuation, + ACTIONS(1315), 1, + sym__footnote_end, + STATE(440), 1, + aux_sym_footnote_content_repeat1, + STATE(683), 1, aux_sym__block_quote_prefix_repeat1, - STATE(759), 1, - sym__list_item_star, - STATE(1037), 1, + STATE(993), 1, sym__block_quote_prefix, - [14733] = 7, - ACTIONS(25), 1, - sym_list_marker_dash, - ACTIONS(1316), 1, + [11333] = 6, + ACTIONS(1279), 1, + sym__list_item_continuation, + ACTIONS(1283), 1, sym__block_quote_continuation, - ACTIONS(1378), 1, - sym__block_close, - STATE(462), 1, - aux_sym__list_dash_repeat1, - STATE(727), 1, - sym__list_item_dash, - STATE(735), 1, + ACTIONS(1317), 1, + sym__list_item_end, + STATE(387), 1, + aux_sym_list_item_content_repeat1, + STATE(681), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1053), 1, + STATE(1073), 1, sym__block_quote_prefix, - [14755] = 1, - ACTIONS(634), 6, - sym__newline, + [11352] = 6, + ACTIONS(1279), 1, sym__list_item_continuation, + ACTIONS(1283), 1, + sym__block_quote_continuation, + ACTIONS(1319), 1, sym__list_item_end, + STATE(380), 1, + aux_sym_list_item_content_repeat1, + STATE(681), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(1073), 1, + sym__block_quote_prefix, + [11371] = 6, + ACTIONS(1279), 1, + sym__list_item_continuation, + ACTIONS(1283), 1, sym__block_quote_continuation, - sym__table_caption_begin, - anon_sym_PIPE, - [14764] = 6, - ACTIONS(1380), 1, + ACTIONS(1321), 1, + sym__list_item_end, + STATE(389), 1, + aux_sym_list_item_content_repeat1, + STATE(681), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(1073), 1, + sym__block_quote_prefix, + [11390] = 6, + ACTIONS(1279), 1, sym__list_item_continuation, - ACTIONS(1382), 1, + ACTIONS(1283), 1, + sym__block_quote_continuation, + ACTIONS(1323), 1, sym__list_item_end, - ACTIONS(1384), 1, + STATE(380), 1, + aux_sym_list_item_content_repeat1, + STATE(681), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(1073), 1, + sym__block_quote_prefix, + [11409] = 6, + ACTIONS(1279), 1, + sym__list_item_continuation, + ACTIONS(1283), 1, sym__block_quote_continuation, - STATE(467), 1, + ACTIONS(1325), 1, + sym__list_item_end, + STATE(391), 1, aux_sym_list_item_content_repeat1, - STATE(723), 1, + STATE(681), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1035), 1, + STATE(1073), 1, sym__block_quote_prefix, - [14783] = 6, - ACTIONS(1380), 1, + [11428] = 6, + ACTIONS(1279), 1, sym__list_item_continuation, - ACTIONS(1384), 1, + ACTIONS(1283), 1, sym__block_quote_continuation, - ACTIONS(1386), 1, + ACTIONS(1327), 1, sym__list_item_end, - STATE(499), 1, + STATE(380), 1, aux_sym_list_item_content_repeat1, - STATE(723), 1, + STATE(681), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1035), 1, + STATE(1073), 1, sym__block_quote_prefix, - [14802] = 6, - ACTIONS(1380), 1, + [11447] = 6, + ACTIONS(1279), 1, sym__list_item_continuation, - ACTIONS(1384), 1, + ACTIONS(1283), 1, sym__block_quote_continuation, - ACTIONS(1388), 1, + ACTIONS(1329), 1, sym__list_item_end, - STATE(523), 1, + STATE(393), 1, aux_sym_list_item_content_repeat1, - STATE(723), 1, + STATE(681), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1035), 1, + STATE(1073), 1, sym__block_quote_prefix, - [14821] = 6, - ACTIONS(1380), 1, + [11466] = 6, + ACTIONS(1279), 1, sym__list_item_continuation, - ACTIONS(1384), 1, + ACTIONS(1283), 1, sym__block_quote_continuation, - ACTIONS(1390), 1, + ACTIONS(1331), 1, sym__list_item_end, - STATE(499), 1, + STATE(380), 1, aux_sym_list_item_content_repeat1, - STATE(723), 1, + STATE(681), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1035), 1, + STATE(1073), 1, sym__block_quote_prefix, - [14840] = 6, - ACTIONS(1380), 1, + [11485] = 6, + ACTIONS(1279), 1, sym__list_item_continuation, - ACTIONS(1384), 1, + ACTIONS(1283), 1, sym__block_quote_continuation, - ACTIONS(1392), 1, + ACTIONS(1333), 1, sym__list_item_end, - STATE(471), 1, + STATE(395), 1, aux_sym_list_item_content_repeat1, - STATE(723), 1, + STATE(681), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1035), 1, + STATE(1073), 1, sym__block_quote_prefix, - [14859] = 6, - ACTIONS(1380), 1, + [11504] = 6, + ACTIONS(1279), 1, sym__list_item_continuation, - ACTIONS(1384), 1, + ACTIONS(1283), 1, sym__block_quote_continuation, - ACTIONS(1394), 1, + ACTIONS(1335), 1, sym__list_item_end, - STATE(499), 1, + STATE(380), 1, aux_sym_list_item_content_repeat1, - STATE(723), 1, + STATE(681), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1035), 1, + STATE(1073), 1, sym__block_quote_prefix, - [14878] = 6, - ACTIONS(1380), 1, + [11523] = 6, + ACTIONS(1279), 1, sym__list_item_continuation, - ACTIONS(1384), 1, + ACTIONS(1283), 1, sym__block_quote_continuation, - ACTIONS(1396), 1, + ACTIONS(1337), 1, + sym__list_item_end, + STATE(397), 1, + aux_sym_list_item_content_repeat1, + STATE(681), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(1073), 1, + sym__block_quote_prefix, + [11542] = 6, + ACTIONS(1279), 1, + sym__list_item_continuation, + ACTIONS(1283), 1, + sym__block_quote_continuation, + ACTIONS(1339), 1, + sym__list_item_end, + STATE(380), 1, + aux_sym_list_item_content_repeat1, + STATE(681), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(1073), 1, + sym__block_quote_prefix, + [11561] = 6, + ACTIONS(1279), 1, + sym__list_item_continuation, + ACTIONS(1283), 1, + sym__block_quote_continuation, + ACTIONS(1341), 1, + sym__list_item_end, + STATE(399), 1, + aux_sym_list_item_content_repeat1, + STATE(681), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(1073), 1, + sym__block_quote_prefix, + [11580] = 6, + ACTIONS(1279), 1, + sym__list_item_continuation, + ACTIONS(1283), 1, + sym__block_quote_continuation, + ACTIONS(1343), 1, + sym__list_item_end, + STATE(380), 1, + aux_sym_list_item_content_repeat1, + STATE(681), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(1073), 1, + sym__block_quote_prefix, + [11599] = 6, + ACTIONS(1279), 1, + sym__list_item_continuation, + ACTIONS(1283), 1, + sym__block_quote_continuation, + ACTIONS(1345), 1, sym__list_item_end, - STATE(473), 1, + STATE(401), 1, aux_sym_list_item_content_repeat1, - STATE(723), 1, + STATE(681), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1035), 1, + STATE(1073), 1, sym__block_quote_prefix, - [14897] = 6, - ACTIONS(1380), 1, + [11618] = 6, + ACTIONS(1279), 1, sym__list_item_continuation, - ACTIONS(1384), 1, + ACTIONS(1283), 1, sym__block_quote_continuation, - ACTIONS(1398), 1, + ACTIONS(1347), 1, sym__list_item_end, - STATE(499), 1, + STATE(380), 1, aux_sym_list_item_content_repeat1, - STATE(723), 1, + STATE(681), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1035), 1, + STATE(1073), 1, sym__block_quote_prefix, - [14916] = 6, - ACTIONS(1380), 1, + [11637] = 6, + ACTIONS(1279), 1, sym__list_item_continuation, - ACTIONS(1384), 1, + ACTIONS(1283), 1, sym__block_quote_continuation, - ACTIONS(1400), 1, + ACTIONS(1349), 1, sym__list_item_end, - STATE(475), 1, + STATE(403), 1, aux_sym_list_item_content_repeat1, - STATE(723), 1, + STATE(681), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1035), 1, + STATE(1073), 1, sym__block_quote_prefix, - [14935] = 6, - ACTIONS(1380), 1, + [11656] = 6, + ACTIONS(1279), 1, sym__list_item_continuation, - ACTIONS(1384), 1, + ACTIONS(1283), 1, sym__block_quote_continuation, - ACTIONS(1402), 1, + ACTIONS(1351), 1, sym__list_item_end, - STATE(499), 1, + STATE(380), 1, aux_sym_list_item_content_repeat1, - STATE(723), 1, + STATE(681), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1035), 1, + STATE(1073), 1, sym__block_quote_prefix, - [14954] = 6, - ACTIONS(1380), 1, + [11675] = 6, + ACTIONS(1279), 1, sym__list_item_continuation, - ACTIONS(1384), 1, + ACTIONS(1283), 1, sym__block_quote_continuation, - ACTIONS(1404), 1, + ACTIONS(1353), 1, sym__list_item_end, - STATE(477), 1, + STATE(405), 1, aux_sym_list_item_content_repeat1, - STATE(723), 1, + STATE(681), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1035), 1, + STATE(1073), 1, sym__block_quote_prefix, - [14973] = 6, - ACTIONS(1380), 1, + [11694] = 6, + ACTIONS(1279), 1, sym__list_item_continuation, - ACTIONS(1384), 1, + ACTIONS(1283), 1, sym__block_quote_continuation, - ACTIONS(1406), 1, + ACTIONS(1355), 1, sym__list_item_end, - STATE(499), 1, + STATE(380), 1, aux_sym_list_item_content_repeat1, - STATE(723), 1, + STATE(681), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1035), 1, + STATE(1073), 1, sym__block_quote_prefix, - [14992] = 6, - ACTIONS(1380), 1, + [11713] = 6, + ACTIONS(1279), 1, sym__list_item_continuation, - ACTIONS(1384), 1, + ACTIONS(1283), 1, sym__block_quote_continuation, - ACTIONS(1408), 1, + ACTIONS(1357), 1, sym__list_item_end, - STATE(479), 1, + STATE(407), 1, aux_sym_list_item_content_repeat1, - STATE(723), 1, + STATE(681), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1035), 1, + STATE(1073), 1, sym__block_quote_prefix, - [15011] = 6, - ACTIONS(1380), 1, + [11732] = 6, + ACTIONS(1279), 1, sym__list_item_continuation, - ACTIONS(1384), 1, + ACTIONS(1283), 1, sym__block_quote_continuation, - ACTIONS(1410), 1, + ACTIONS(1359), 1, sym__list_item_end, - STATE(499), 1, + STATE(380), 1, aux_sym_list_item_content_repeat1, - STATE(723), 1, + STATE(681), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1035), 1, + STATE(1073), 1, sym__block_quote_prefix, - [15030] = 6, - ACTIONS(1380), 1, + [11751] = 6, + ACTIONS(1279), 1, sym__list_item_continuation, - ACTIONS(1384), 1, + ACTIONS(1283), 1, sym__block_quote_continuation, - ACTIONS(1412), 1, + ACTIONS(1361), 1, sym__list_item_end, - STATE(481), 1, + STATE(409), 1, aux_sym_list_item_content_repeat1, - STATE(723), 1, + STATE(681), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1035), 1, + STATE(1073), 1, sym__block_quote_prefix, - [15049] = 6, - ACTIONS(1380), 1, + [11770] = 6, + ACTIONS(1279), 1, sym__list_item_continuation, - ACTIONS(1384), 1, + ACTIONS(1283), 1, sym__block_quote_continuation, - ACTIONS(1414), 1, + ACTIONS(1363), 1, sym__list_item_end, - STATE(499), 1, + STATE(380), 1, aux_sym_list_item_content_repeat1, - STATE(723), 1, + STATE(681), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1035), 1, + STATE(1073), 1, sym__block_quote_prefix, - [15068] = 1, - ACTIONS(1416), 6, - anon_sym_RBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - sym__whitespace1, - anon_sym_PERCENT, - sym__id, - [15077] = 1, - ACTIONS(1418), 6, - anon_sym_RBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - sym__whitespace1, - anon_sym_PERCENT, - sym__id, - [15086] = 1, - ACTIONS(1420), 6, - anon_sym_RBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - sym__whitespace1, - anon_sym_PERCENT, - sym__id, - [15095] = 6, - ACTIONS(1380), 1, + [11789] = 6, + ACTIONS(1279), 1, sym__list_item_continuation, - ACTIONS(1384), 1, + ACTIONS(1283), 1, sym__block_quote_continuation, - ACTIONS(1422), 1, + ACTIONS(1365), 1, sym__list_item_end, - STATE(499), 1, + STATE(411), 1, aux_sym_list_item_content_repeat1, - STATE(723), 1, + STATE(681), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1035), 1, + STATE(1073), 1, sym__block_quote_prefix, - [15114] = 1, - ACTIONS(604), 6, - sym__newline, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - sym__table_caption_begin, - anon_sym_PIPE, - [15123] = 1, - ACTIONS(576), 6, - sym__newline, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - sym__table_caption_begin, - anon_sym_PIPE, - [15132] = 1, - ACTIONS(1424), 6, - anon_sym_RBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - sym__whitespace1, - anon_sym_PERCENT, - sym__id, - [15141] = 1, - ACTIONS(1426), 6, - anon_sym_RBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - sym__whitespace1, - anon_sym_PERCENT, - sym__id, - [15150] = 1, - ACTIONS(1428), 6, - anon_sym_RBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - sym__whitespace1, - anon_sym_PERCENT, - sym__id, - [15159] = 1, - ACTIONS(1430), 6, - anon_sym_RBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - sym__whitespace1, - anon_sym_PERCENT, - sym__id, - [15168] = 6, - ACTIONS(1380), 1, + [11808] = 6, + ACTIONS(1279), 1, sym__list_item_continuation, - ACTIONS(1384), 1, + ACTIONS(1283), 1, sym__block_quote_continuation, - ACTIONS(1432), 1, + ACTIONS(1367), 1, sym__list_item_end, - STATE(499), 1, + STATE(380), 1, aux_sym_list_item_content_repeat1, - STATE(723), 1, + STATE(681), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1035), 1, + STATE(1073), 1, sym__block_quote_prefix, - [15187] = 6, - ACTIONS(1380), 1, + [11827] = 6, + ACTIONS(1279), 1, sym__list_item_continuation, - ACTIONS(1384), 1, + ACTIONS(1283), 1, sym__block_quote_continuation, - ACTIONS(1434), 1, + ACTIONS(1369), 1, sym__list_item_end, - STATE(502), 1, + STATE(413), 1, aux_sym_list_item_content_repeat1, - STATE(723), 1, + STATE(681), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1035), 1, + STATE(1073), 1, sym__block_quote_prefix, - [15206] = 6, - ACTIONS(1380), 1, + [11846] = 6, + ACTIONS(1279), 1, sym__list_item_continuation, - ACTIONS(1384), 1, + ACTIONS(1283), 1, sym__block_quote_continuation, - ACTIONS(1436), 1, + ACTIONS(1371), 1, sym__list_item_end, - STATE(485), 1, + STATE(380), 1, aux_sym_list_item_content_repeat1, - STATE(723), 1, + STATE(681), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1035), 1, + STATE(1073), 1, sym__block_quote_prefix, - [15225] = 1, - ACTIONS(1438), 6, - anon_sym_RBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - sym__whitespace1, - anon_sym_PERCENT, - sym__id, - [15234] = 6, - ACTIONS(1380), 1, - sym__list_item_continuation, - ACTIONS(1384), 1, + [11865] = 6, + ACTIONS(1309), 1, sym__block_quote_continuation, - ACTIONS(1440), 1, - sym__list_item_end, - STATE(503), 1, - aux_sym_list_item_content_repeat1, - STATE(723), 1, + ACTIONS(1311), 1, + sym__footnote_continuation, + ACTIONS(1373), 1, + sym__footnote_end, + STATE(435), 1, + aux_sym_footnote_content_repeat1, + STATE(683), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1035), 1, + STATE(993), 1, sym__block_quote_prefix, - [15253] = 6, - ACTIONS(1380), 1, - sym__list_item_continuation, - ACTIONS(1384), 1, + [11884] = 6, + ACTIONS(1283), 1, sym__block_quote_continuation, - ACTIONS(1442), 1, + ACTIONS(1291), 1, + sym__list_item_continuation, + ACTIONS(1375), 1, sym__list_item_end, - STATE(499), 1, - aux_sym_list_item_content_repeat1, - STATE(723), 1, + STATE(431), 1, + aux_sym__list_item_definition_repeat1, + STATE(681), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1035), 1, + STATE(1092), 1, sym__block_quote_prefix, - [15272] = 1, - ACTIONS(660), 6, - sym__newline, + [11903] = 6, + ACTIONS(1279), 1, sym__list_item_continuation, - sym__list_item_end, + ACTIONS(1283), 1, sym__block_quote_continuation, - sym__table_caption_begin, - anon_sym_PIPE, - [15281] = 6, - ACTIONS(1444), 1, - sym__list_item_continuation, - ACTIONS(1447), 1, + ACTIONS(1377), 1, sym__list_item_end, - ACTIONS(1449), 1, - sym__block_quote_continuation, - STATE(499), 1, + STATE(380), 1, aux_sym_list_item_content_repeat1, - STATE(723), 1, + STATE(681), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1035), 1, + STATE(1073), 1, sym__block_quote_prefix, - [15300] = 1, - ACTIONS(1452), 6, + [11922] = 1, + ACTIONS(1379), 6, anon_sym_RBRACE, anon_sym_DOT, aux_sym_identifier_token1, sym__whitespace1, anon_sym_PERCENT, sym__id, - [15309] = 6, - ACTIONS(1380), 1, + [11931] = 1, + ACTIONS(611), 6, + sym__newline, sym__list_item_continuation, - ACTIONS(1384), 1, - sym__block_quote_continuation, - ACTIONS(1454), 1, sym__list_item_end, - STATE(497), 1, - aux_sym_list_item_content_repeat1, - STATE(723), 1, + sym__block_quote_continuation, + sym__table_caption_begin, + anon_sym_PIPE, + [11940] = 6, + ACTIONS(1309), 1, + sym__block_quote_continuation, + ACTIONS(1311), 1, + sym__footnote_continuation, + ACTIONS(1381), 1, + sym__footnote_end, + STATE(420), 1, + aux_sym_footnote_content_repeat1, + STATE(683), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1035), 1, + STATE(993), 1, sym__block_quote_prefix, - [15328] = 6, - ACTIONS(1380), 1, - sym__list_item_continuation, - ACTIONS(1384), 1, + [11959] = 6, + ACTIONS(1309), 1, sym__block_quote_continuation, - ACTIONS(1456), 1, - sym__list_item_end, - STATE(499), 1, - aux_sym_list_item_content_repeat1, - STATE(723), 1, + ACTIONS(1311), 1, + sym__footnote_continuation, + ACTIONS(1383), 1, + sym__footnote_end, + STATE(440), 1, + aux_sym_footnote_content_repeat1, + STATE(683), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1035), 1, + STATE(993), 1, sym__block_quote_prefix, - [15347] = 6, - ACTIONS(1380), 1, + [11978] = 6, + ACTIONS(1279), 1, sym__list_item_continuation, - ACTIONS(1384), 1, + ACTIONS(1283), 1, sym__block_quote_continuation, - ACTIONS(1458), 1, + ACTIONS(1385), 1, sym__list_item_end, - STATE(499), 1, + STATE(428), 1, aux_sym_list_item_content_repeat1, - STATE(723), 1, + STATE(681), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1035), 1, + STATE(1073), 1, sym__block_quote_prefix, - [15366] = 1, - ACTIONS(630), 6, - sym__newline, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - sym__table_caption_begin, - anon_sym_PIPE, - [15375] = 1, - ACTIONS(656), 6, + [11997] = 1, + ACTIONS(521), 6, sym__newline, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, sym__table_caption_begin, anon_sym_PIPE, - [15384] = 1, - ACTIONS(560), 6, + [12006] = 1, + ACTIONS(525), 6, sym__newline, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, sym__table_caption_begin, anon_sym_PIPE, - [15393] = 6, - ACTIONS(1380), 1, + [12015] = 6, + ACTIONS(1279), 1, sym__list_item_continuation, - ACTIONS(1384), 1, + ACTIONS(1283), 1, sym__block_quote_continuation, - ACTIONS(1460), 1, + ACTIONS(1387), 1, sym__list_item_end, - STATE(508), 1, + STATE(430), 1, aux_sym_list_item_content_repeat1, - STATE(723), 1, + STATE(681), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1035), 1, + STATE(1073), 1, sym__block_quote_prefix, - [15412] = 6, - ACTIONS(1380), 1, + [12034] = 1, + ACTIONS(555), 6, + sym__newline, sym__list_item_continuation, - ACTIONS(1384), 1, - sym__block_quote_continuation, - ACTIONS(1462), 1, sym__list_item_end, - STATE(499), 1, - aux_sym_list_item_content_repeat1, - STATE(723), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(1035), 1, - sym__block_quote_prefix, - [15431] = 6, - ACTIONS(1380), 1, - sym__list_item_continuation, - ACTIONS(1384), 1, sym__block_quote_continuation, - ACTIONS(1464), 1, - sym__list_item_end, - STATE(499), 1, - aux_sym_list_item_content_repeat1, - STATE(723), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(1035), 1, - sym__block_quote_prefix, - [15450] = 6, - ACTIONS(1380), 1, + sym__table_caption_begin, + anon_sym_PIPE, + [12043] = 1, + ACTIONS(559), 6, + sym__newline, sym__list_item_continuation, - ACTIONS(1384), 1, - sym__block_quote_continuation, - ACTIONS(1466), 1, sym__list_item_end, - STATE(511), 1, - aux_sym_list_item_content_repeat1, - STATE(723), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(1035), 1, - sym__block_quote_prefix, - [15469] = 6, - ACTIONS(1380), 1, - sym__list_item_continuation, - ACTIONS(1384), 1, sym__block_quote_continuation, - ACTIONS(1468), 1, - sym__list_item_end, - STATE(499), 1, - aux_sym_list_item_content_repeat1, - STATE(723), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(1035), 1, - sym__block_quote_prefix, - [15488] = 6, - ACTIONS(1380), 1, + sym__table_caption_begin, + anon_sym_PIPE, + [12052] = 1, + ACTIONS(581), 6, + sym__newline, sym__list_item_continuation, - ACTIONS(1384), 1, - sym__block_quote_continuation, - ACTIONS(1470), 1, sym__list_item_end, - STATE(514), 1, - aux_sym_list_item_content_repeat1, - STATE(723), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(1035), 1, - sym__block_quote_prefix, - [15507] = 6, - ACTIONS(1380), 1, + sym__block_quote_continuation, + sym__table_caption_begin, + anon_sym_PIPE, + [12061] = 6, + ACTIONS(1279), 1, sym__list_item_continuation, - ACTIONS(1384), 1, + ACTIONS(1283), 1, sym__block_quote_continuation, - ACTIONS(1472), 1, + ACTIONS(1389), 1, sym__list_item_end, - STATE(509), 1, + STATE(380), 1, aux_sym_list_item_content_repeat1, - STATE(723), 1, + STATE(681), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1035), 1, + STATE(1073), 1, sym__block_quote_prefix, - [15526] = 6, - ACTIONS(1380), 1, + [12080] = 1, + ACTIONS(585), 6, + sym__newline, sym__list_item_continuation, - ACTIONS(1384), 1, - sym__block_quote_continuation, - ACTIONS(1474), 1, sym__list_item_end, - STATE(499), 1, - aux_sym_list_item_content_repeat1, - STATE(723), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(1035), 1, - sym__block_quote_prefix, - [15545] = 6, - ACTIONS(1384), 1, sym__block_quote_continuation, - ACTIONS(1476), 1, + sym__table_caption_begin, + anon_sym_PIPE, + [12089] = 6, + ACTIONS(1279), 1, sym__list_item_continuation, - ACTIONS(1478), 1, + ACTIONS(1283), 1, + sym__block_quote_continuation, + ACTIONS(1391), 1, sym__list_item_end, - STATE(521), 1, - aux_sym__list_item_definition_repeat1, - STATE(723), 1, + STATE(380), 1, + aux_sym_list_item_content_repeat1, + STATE(681), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1101), 1, + STATE(1073), 1, sym__block_quote_prefix, - [15564] = 6, - ACTIONS(1480), 1, + [12108] = 6, + ACTIONS(1393), 1, sym__list_item_continuation, - ACTIONS(1483), 1, + ACTIONS(1396), 1, sym__list_item_end, - ACTIONS(1485), 1, + ACTIONS(1398), 1, sym__block_quote_continuation, - STATE(516), 1, + STATE(431), 1, aux_sym__list_item_definition_repeat1, - STATE(723), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(1101), 1, - sym__block_quote_prefix, - [15583] = 6, - ACTIONS(1380), 1, - sym__list_item_continuation, - ACTIONS(1384), 1, - sym__block_quote_continuation, - ACTIONS(1488), 1, - sym__list_item_end, - STATE(492), 1, - aux_sym_list_item_content_repeat1, - STATE(723), 1, + STATE(681), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1035), 1, + STATE(1092), 1, sym__block_quote_prefix, - [15602] = 6, - ACTIONS(1380), 1, + [12127] = 6, + ACTIONS(1279), 1, sym__list_item_continuation, - ACTIONS(1384), 1, + ACTIONS(1283), 1, sym__block_quote_continuation, - ACTIONS(1490), 1, + ACTIONS(1401), 1, sym__list_item_end, - STATE(519), 1, + STATE(437), 1, aux_sym_list_item_content_repeat1, - STATE(723), 1, + STATE(681), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1035), 1, + STATE(1073), 1, sym__block_quote_prefix, - [15621] = 6, - ACTIONS(1380), 1, - sym__list_item_continuation, - ACTIONS(1384), 1, + [12146] = 6, + ACTIONS(1309), 1, sym__block_quote_continuation, - ACTIONS(1492), 1, - sym__list_item_end, - STATE(499), 1, - aux_sym_list_item_content_repeat1, - STATE(723), 1, + ACTIONS(1311), 1, + sym__footnote_continuation, + ACTIONS(1403), 1, + sym__footnote_end, + STATE(434), 1, + aux_sym_footnote_content_repeat1, + STATE(683), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1035), 1, + STATE(993), 1, sym__block_quote_prefix, - [15640] = 6, - ACTIONS(1380), 1, - sym__list_item_continuation, - ACTIONS(1384), 1, + [12165] = 6, + ACTIONS(1309), 1, sym__block_quote_continuation, - ACTIONS(1494), 1, - sym__list_item_end, - STATE(469), 1, - aux_sym_list_item_content_repeat1, - STATE(723), 1, + ACTIONS(1311), 1, + sym__footnote_continuation, + ACTIONS(1405), 1, + sym__footnote_end, + STATE(440), 1, + aux_sym_footnote_content_repeat1, + STATE(683), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1035), 1, + STATE(993), 1, sym__block_quote_prefix, - [15659] = 6, - ACTIONS(1384), 1, + [12184] = 6, + ACTIONS(1309), 1, sym__block_quote_continuation, - ACTIONS(1476), 1, - sym__list_item_continuation, - ACTIONS(1496), 1, - sym__list_item_end, - STATE(516), 1, - aux_sym__list_item_definition_repeat1, - STATE(723), 1, + ACTIONS(1311), 1, + sym__footnote_continuation, + ACTIONS(1407), 1, + sym__footnote_end, + STATE(440), 1, + aux_sym_footnote_content_repeat1, + STATE(683), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1101), 1, + STATE(993), 1, sym__block_quote_prefix, - [15678] = 1, - ACTIONS(1498), 6, + [12203] = 1, + ACTIONS(1409), 6, anon_sym_RBRACE, anon_sym_DOT, aux_sym_identifier_token1, sym__whitespace1, anon_sym_PERCENT, sym__id, - [15687] = 6, - ACTIONS(1380), 1, + [12212] = 6, + ACTIONS(1279), 1, sym__list_item_continuation, - ACTIONS(1384), 1, + ACTIONS(1283), 1, sym__block_quote_continuation, - ACTIONS(1500), 1, + ACTIONS(1411), 1, sym__list_item_end, - STATE(499), 1, + STATE(380), 1, aux_sym_list_item_content_repeat1, - STATE(723), 1, + STATE(681), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1035), 1, + STATE(1073), 1, sym__block_quote_prefix, - [15706] = 1, - ACTIONS(630), 5, - sym__block_close, - sym__newline, - sym__block_quote_continuation, - sym__table_caption_begin, - anon_sym_PIPE, - [15714] = 1, - ACTIONS(634), 5, - sym__block_close, - sym__newline, - sym__block_quote_continuation, - sym__table_caption_begin, - anon_sym_PIPE, - [15722] = 4, - ACTIONS(1502), 1, - sym__block_close, - ACTIONS(1504), 1, + [12231] = 1, + ACTIONS(1413), 6, + anon_sym_RBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + sym__whitespace1, + anon_sym_PERCENT, + sym__id, + [12240] = 6, + ACTIONS(1309), 1, sym__block_quote_continuation, - STATE(526), 1, - aux_sym__block_quote_content_repeat1, - STATE(70), 2, + ACTIONS(1311), 1, + sym__footnote_continuation, + ACTIONS(1415), 1, + sym__footnote_end, + STATE(441), 1, + aux_sym_footnote_content_repeat1, + STATE(683), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(993), 1, sym__block_quote_prefix, + [12259] = 6, + ACTIONS(1417), 1, + sym__block_quote_continuation, + ACTIONS(1420), 1, + sym__footnote_continuation, + ACTIONS(1423), 1, + sym__footnote_end, + STATE(440), 1, + aux_sym_footnote_content_repeat1, + STATE(683), 1, aux_sym__block_quote_prefix_repeat1, - [15736] = 1, - ACTIONS(656), 5, - sym__block_close, - sym__newline, + STATE(993), 1, + sym__block_quote_prefix, + [12278] = 6, + ACTIONS(1309), 1, sym__block_quote_continuation, - sym__table_caption_begin, - anon_sym_PIPE, - [15744] = 1, - ACTIONS(604), 5, + ACTIONS(1311), 1, + sym__footnote_continuation, + ACTIONS(1425), 1, + sym__footnote_end, + STATE(440), 1, + aux_sym_footnote_content_repeat1, + STATE(683), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(993), 1, + sym__block_quote_prefix, + [12297] = 1, + ACTIONS(1427), 6, + anon_sym_RBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + sym__whitespace1, + anon_sym_PERCENT, + sym__id, + [12306] = 1, + ACTIONS(585), 5, sym__newline, - sym__list_item_content_spacer, + sym__indented_content_spacer, sym__block_quote_continuation, sym__table_caption_begin, anon_sym_PIPE, - [15752] = 1, - ACTIONS(660), 5, + [12314] = 1, + ACTIONS(585), 5, sym__block_close, sym__newline, sym__block_quote_continuation, sym__table_caption_begin, anon_sym_PIPE, - [15760] = 1, - ACTIONS(560), 5, + [12322] = 1, + ACTIONS(521), 5, sym__block_close, sym__newline, sym__block_quote_continuation, sym__table_caption_begin, anon_sym_PIPE, - [15768] = 1, - ACTIONS(576), 5, + [12330] = 1, + ACTIONS(559), 5, sym__block_close, sym__newline, sym__block_quote_continuation, sym__table_caption_begin, anon_sym_PIPE, - [15776] = 1, - ACTIONS(630), 5, + [12338] = 1, + ACTIONS(555), 5, + sym__block_close, sym__newline, - sym__list_item_content_spacer, sym__block_quote_continuation, sym__table_caption_begin, anon_sym_PIPE, - [15784] = 4, - ACTIONS(1507), 1, + [12346] = 4, + ACTIONS(1429), 1, sym__block_close, - ACTIONS(1509), 1, + ACTIONS(1431), 1, + sym__block_quote_continuation, + STATE(451), 1, + aux_sym__block_quote_content_repeat1, + STATE(65), 2, + sym__block_quote_prefix, + aux_sym__block_quote_prefix_repeat1, + [12360] = 4, + ACTIONS(1431), 1, sym__block_quote_continuation, - STATE(535), 1, + ACTIONS(1433), 1, + sym__block_close, + STATE(448), 1, aux_sym__block_quote_content_repeat1, - STATE(70), 2, + STATE(65), 2, sym__block_quote_prefix, aux_sym__block_quote_prefix_repeat1, - [15798] = 1, - ACTIONS(656), 5, + [12374] = 1, + ACTIONS(525), 5, + sym__block_close, sym__newline, - sym__list_item_content_spacer, sym__block_quote_continuation, sym__table_caption_begin, anon_sym_PIPE, - [15806] = 4, - ACTIONS(1509), 1, - sym__block_quote_continuation, - ACTIONS(1511), 1, + [12382] = 4, + ACTIONS(1435), 1, sym__block_close, - STATE(526), 1, + ACTIONS(1437), 1, + sym__block_quote_continuation, + STATE(451), 1, aux_sym__block_quote_content_repeat1, - STATE(70), 2, + STATE(65), 2, sym__block_quote_prefix, aux_sym__block_quote_prefix_repeat1, - [15820] = 1, - ACTIONS(576), 5, + [12396] = 1, + ACTIONS(581), 5, + sym__block_close, sym__newline, - sym__list_item_content_spacer, sym__block_quote_continuation, sym__table_caption_begin, anon_sym_PIPE, - [15828] = 1, - ACTIONS(560), 5, + [12404] = 1, + ACTIONS(525), 5, sym__newline, - sym__list_item_content_spacer, + sym__indented_content_spacer, sym__block_quote_continuation, sym__table_caption_begin, anon_sym_PIPE, - [15836] = 1, - ACTIONS(634), 5, + [12412] = 1, + ACTIONS(555), 5, sym__newline, - sym__list_item_content_spacer, + sym__indented_content_spacer, sym__block_quote_continuation, sym__table_caption_begin, anon_sym_PIPE, - [15844] = 1, - ACTIONS(604), 5, + [12420] = 1, + ACTIONS(611), 5, sym__block_close, sym__newline, sym__block_quote_continuation, sym__table_caption_begin, anon_sym_PIPE, - [15852] = 1, - ACTIONS(660), 5, + [12428] = 3, + ACTIONS(1041), 1, + sym__table_caption_begin, + STATE(582), 1, + sym_table_caption, + ACTIONS(503), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [12440] = 1, + ACTIONS(521), 5, sym__newline, - sym__list_item_content_spacer, + sym__indented_content_spacer, sym__block_quote_continuation, sym__table_caption_begin, anon_sym_PIPE, - [15860] = 3, - ACTIONS(1136), 1, + [12448] = 1, + ACTIONS(559), 5, + sym__newline, + sym__indented_content_spacer, + sym__block_quote_continuation, sym__table_caption_begin, - STATE(772), 1, - sym_table_caption, - ACTIONS(556), 3, - sym__list_item_continuation, - sym__list_item_end, + anon_sym_PIPE, + [12456] = 1, + ACTIONS(581), 5, + sym__newline, + sym__indented_content_spacer, sym__block_quote_continuation, - [15872] = 4, - ACTIONS(45), 1, - sym_list_marker_decimal_paren, - ACTIONS(1513), 1, + sym__table_caption_begin, + anon_sym_PIPE, + [12464] = 1, + ACTIONS(611), 5, + sym__newline, + sym__indented_content_spacer, + sym__block_quote_continuation, + sym__table_caption_begin, + anon_sym_PIPE, + [12472] = 4, + ACTIONS(59), 1, + sym_list_marker_upper_alpha_parens, + ACTIONS(1440), 1, sym__block_close, - STATE(583), 1, - aux_sym__list_decimal_paren_repeat1, - STATE(837), 1, - sym__list_item_decimal_paren, - [15885] = 4, - ACTIONS(1515), 1, + STATE(567), 1, + aux_sym__list_upper_alpha_parens_repeat1, + STATE(707), 1, + sym__list_item_upper_alpha_parens, + [12485] = 4, + ACTIONS(1442), 1, anon_sym_EQ, - ACTIONS(1517), 1, + ACTIONS(1444), 1, sym_language, - ACTIONS(1519), 1, + ACTIONS(1446), 1, sym__newline, - STATE(1244), 1, + STATE(1107), 1, sym_raw_block_info, - [15898] = 3, - ACTIONS(1521), 1, + [12498] = 3, + ACTIONS(1448), 1, + aux_sym__line_token1, + STATE(974), 1, + sym_frontmatter_content, + STATE(468), 2, + sym__line, + aux_sym_frontmatter_content_repeat1, + [12509] = 4, + ACTIONS(1442), 1, + anon_sym_EQ, + ACTIONS(1450), 1, + sym_language, + ACTIONS(1452), 1, + sym__newline, + STATE(964), 1, + sym_raw_block_info, + [12522] = 3, + ACTIONS(1087), 1, + sym__table_caption_begin, + STATE(732), 1, + sym_table_caption, + ACTIONS(503), 2, + sym__block_close, + sym__block_quote_continuation, + [12533] = 3, + ACTIONS(1454), 1, anon_sym_PERCENT, - STATE(559), 1, + STATE(482), 1, aux_sym__comment_no_newline_repeat1, - ACTIONS(1523), 2, + ACTIONS(1456), 2, sym_backslash_escape, aux_sym__comment_no_newline_token1, - [15909] = 2, - ACTIONS(1525), 1, + [12544] = 2, + ACTIONS(1458), 1, sym__eof_or_newline, - ACTIONS(588), 3, + ACTIONS(607), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [15918] = 3, - ACTIONS(1527), 1, + [12553] = 3, + ACTIONS(1448), 1, aux_sym__line_token1, - ACTIONS(1529), 1, + ACTIONS(1460), 1, sym_frontmatter_marker, - STATE(561), 2, + STATE(498), 2, sym__line, aux_sym_frontmatter_content_repeat1, - [15929] = 3, - ACTIONS(1527), 1, + [12564] = 3, + ACTIONS(1448), 1, aux_sym__line_token1, - STATE(1206), 1, + STATE(1166), 1, sym_frontmatter_content, - STATE(546), 2, + STATE(468), 2, sym__line, aux_sym_frontmatter_content_repeat1, - [15940] = 2, - ACTIONS(1531), 1, + [12575] = 2, + ACTIONS(1462), 1, sym__div_end, - ACTIONS(622), 3, + ACTIONS(589), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [15949] = 2, - ACTIONS(1533), 1, + [12584] = 2, + ACTIONS(1464), 1, sym__code_block_end, - ACTIONS(596), 3, + ACTIONS(515), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [15958] = 2, - ACTIONS(1535), 1, + [12593] = 2, + ACTIONS(1466), 1, sym__div_end, - ACTIONS(592), 3, + ACTIONS(529), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [15967] = 2, - ACTIONS(1537), 1, + [12602] = 2, + ACTIONS(1468), 1, sym__div_end, - ACTIONS(614), 3, + ACTIONS(535), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [15976] = 2, - ACTIONS(1539), 1, + [12611] = 2, + ACTIONS(1470), 1, sym__code_block_end, - ACTIONS(606), 3, + ACTIONS(541), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [15985] = 2, - ACTIONS(1541), 1, + [12620] = 2, + ACTIONS(1472), 1, sym__code_block_end, - ACTIONS(644), 3, + ACTIONS(509), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [15994] = 2, - ACTIONS(1543), 1, + [12629] = 2, + ACTIONS(1474), 1, sym__code_block_end, - ACTIONS(650), 3, + ACTIONS(549), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [16003] = 2, - ACTIONS(1545), 1, + [12638] = 2, + ACTIONS(1476), 1, sym__div_end, - ACTIONS(676), 3, + ACTIONS(563), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [16012] = 2, - ACTIONS(1547), 1, + [12647] = 2, + ACTIONS(1478), 1, sym__code_block_end, - ACTIONS(564), 3, + ACTIONS(569), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [16021] = 2, - ACTIONS(1549), 1, + [12656] = 2, + ACTIONS(1480), 1, sym__code_block_end, - ACTIONS(570), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [16030] = 2, - ACTIONS(1551), 1, - sym__eof_or_newline, - ACTIONS(580), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [16039] = 3, - ACTIONS(1553), 1, - anon_sym_PERCENT, - STATE(559), 1, - aux_sym__comment_no_newline_repeat1, - ACTIONS(1555), 2, - sym_backslash_escape, - aux_sym__comment_no_newline_token1, - [16050] = 3, - ACTIONS(1558), 1, - anon_sym_PERCENT, - STATE(544), 1, - aux_sym__comment_no_newline_repeat1, - ACTIONS(1523), 2, - sym_backslash_escape, - aux_sym__comment_no_newline_token1, - [16061] = 3, - ACTIONS(1560), 1, - aux_sym__line_token1, - ACTIONS(1563), 1, - sym_frontmatter_marker, - STATE(561), 2, - sym__line, - aux_sym_frontmatter_content_repeat1, - [16072] = 4, - ACTIONS(33), 1, - sym_list_marker_definition, - ACTIONS(1565), 1, - sym__block_close, - STATE(579), 1, - aux_sym__list_definition_repeat1, - STATE(819), 1, - sym__list_item_definition, - [16085] = 4, - ACTIONS(35), 1, - sym_list_marker_decimal_period, - ACTIONS(1567), 1, - sym__block_close, - STATE(581), 1, - aux_sym__list_decimal_period_repeat1, - STATE(852), 1, - sym__list_item_decimal_period, - [16098] = 4, - ACTIONS(55), 1, - sym_list_marker_decimal_parens, - ACTIONS(1569), 1, - sym__block_close, - STATE(585), 1, - aux_sym__list_decimal_parens_repeat1, - STATE(815), 1, - sym__list_item_decimal_parens, - [16111] = 4, - ACTIONS(37), 1, - sym_list_marker_lower_alpha_period, - ACTIONS(1571), 1, - sym__block_close, - STATE(587), 1, - aux_sym__list_lower_alpha_period_repeat1, - STATE(843), 1, - sym__list_item_lower_alpha_period, - [16124] = 4, - ACTIONS(47), 1, - sym_list_marker_lower_alpha_paren, - ACTIONS(1573), 1, - sym__block_close, - STATE(604), 1, - aux_sym__list_lower_alpha_paren_repeat1, - STATE(850), 1, - sym__list_item_lower_alpha_paren, - [16137] = 4, - ACTIONS(57), 1, - sym_list_marker_lower_alpha_parens, - ACTIONS(1575), 1, - sym__block_close, - STATE(606), 1, - aux_sym__list_lower_alpha_parens_repeat1, - STATE(853), 1, - sym__list_item_lower_alpha_parens, - [16150] = 4, - ACTIONS(39), 1, - sym_list_marker_upper_alpha_period, - ACTIONS(1577), 1, - sym__block_close, - STATE(608), 1, - aux_sym__list_upper_alpha_period_repeat1, - STATE(854), 1, - sym__list_item_upper_alpha_period, - [16163] = 4, - ACTIONS(49), 1, - sym_list_marker_upper_alpha_paren, - ACTIONS(1579), 1, - sym__block_close, - STATE(610), 1, - aux_sym__list_upper_alpha_paren_repeat1, - STATE(855), 1, - sym__list_item_upper_alpha_paren, - [16176] = 4, - ACTIONS(59), 1, - sym_list_marker_upper_alpha_parens, - ACTIONS(1581), 1, - sym__block_close, - STATE(628), 1, - aux_sym__list_upper_alpha_parens_repeat1, - STATE(856), 1, - sym__list_item_upper_alpha_parens, - [16189] = 4, - ACTIONS(41), 1, - sym_list_marker_lower_roman_period, - ACTIONS(1583), 1, - sym__block_close, - STATE(630), 1, - aux_sym__list_lower_roman_period_repeat1, - STATE(857), 1, - sym__list_item_lower_roman_period, - [16202] = 4, - ACTIONS(51), 1, - sym_list_marker_lower_roman_paren, - ACTIONS(1585), 1, - sym__block_close, - STATE(648), 1, - aux_sym__list_lower_roman_paren_repeat1, - STATE(871), 1, - sym__list_item_lower_roman_paren, - [16215] = 4, - ACTIONS(61), 1, - sym_list_marker_lower_roman_parens, - ACTIONS(1587), 1, - sym__block_close, - STATE(650), 1, - aux_sym__list_lower_roman_parens_repeat1, - STATE(874), 1, - sym__list_item_lower_roman_parens, - [16228] = 4, - ACTIONS(43), 1, - sym_list_marker_upper_roman_period, - ACTIONS(1589), 1, - sym__block_close, - STATE(652), 1, - aux_sym__list_upper_roman_period_repeat1, - STATE(876), 1, - sym__list_item_upper_roman_period, - [16241] = 4, - ACTIONS(53), 1, - sym_list_marker_upper_roman_paren, - ACTIONS(1591), 1, - sym__block_close, - STATE(654), 1, - aux_sym__list_upper_roman_paren_repeat1, - STATE(878), 1, - sym__list_item_upper_roman_paren, - [16254] = 4, - ACTIONS(63), 1, - sym_list_marker_upper_roman_parens, - ACTIONS(1593), 1, - sym__block_close, - STATE(671), 1, - aux_sym__list_upper_roman_parens_repeat1, - STATE(880), 1, - sym__list_item_upper_roman_parens, - [16267] = 4, - ACTIONS(33), 1, - sym_list_marker_definition, - ACTIONS(1595), 1, - sym__block_close, - STATE(579), 1, - aux_sym__list_definition_repeat1, - STATE(819), 1, - sym__list_item_definition, - [16280] = 4, - ACTIONS(35), 1, - sym_list_marker_decimal_period, - ACTIONS(1597), 1, - sym__block_close, - STATE(581), 1, - aux_sym__list_decimal_period_repeat1, - STATE(852), 1, - sym__list_item_decimal_period, - [16293] = 4, - ACTIONS(1599), 1, - sym__block_close, - ACTIONS(1601), 1, - sym_list_marker_definition, - STATE(579), 1, - aux_sym__list_definition_repeat1, - STATE(819), 1, - sym__list_item_definition, - [16306] = 4, - ACTIONS(45), 1, - sym_list_marker_decimal_paren, - ACTIONS(1604), 1, - sym__block_close, - STATE(583), 1, - aux_sym__list_decimal_paren_repeat1, - STATE(837), 1, - sym__list_item_decimal_paren, - [16319] = 4, - ACTIONS(1606), 1, - sym__block_close, - ACTIONS(1608), 1, - sym_list_marker_decimal_period, - STATE(581), 1, - aux_sym__list_decimal_period_repeat1, - STATE(852), 1, - sym__list_item_decimal_period, - [16332] = 4, - ACTIONS(55), 1, - sym_list_marker_decimal_parens, - ACTIONS(1611), 1, - sym__block_close, - STATE(585), 1, - aux_sym__list_decimal_parens_repeat1, - STATE(815), 1, - sym__list_item_decimal_parens, - [16345] = 4, - ACTIONS(1613), 1, - sym__block_close, - ACTIONS(1615), 1, - sym_list_marker_decimal_paren, - STATE(583), 1, - aux_sym__list_decimal_paren_repeat1, - STATE(837), 1, - sym__list_item_decimal_paren, - [16358] = 4, - ACTIONS(37), 1, - sym_list_marker_lower_alpha_period, - ACTIONS(1618), 1, - sym__block_close, - STATE(587), 1, - aux_sym__list_lower_alpha_period_repeat1, - STATE(843), 1, - sym__list_item_lower_alpha_period, - [16371] = 4, - ACTIONS(1620), 1, - sym__block_close, - ACTIONS(1622), 1, - sym_list_marker_decimal_parens, - STATE(585), 1, - aux_sym__list_decimal_parens_repeat1, - STATE(815), 1, - sym__list_item_decimal_parens, - [16384] = 4, - ACTIONS(47), 1, - sym_list_marker_lower_alpha_paren, - ACTIONS(1625), 1, - sym__block_close, - STATE(604), 1, - aux_sym__list_lower_alpha_paren_repeat1, - STATE(850), 1, - sym__list_item_lower_alpha_paren, - [16397] = 4, - ACTIONS(1627), 1, - sym__block_close, - ACTIONS(1629), 1, - sym_list_marker_lower_alpha_period, - STATE(587), 1, - aux_sym__list_lower_alpha_period_repeat1, - STATE(843), 1, - sym__list_item_lower_alpha_period, - [16410] = 4, - ACTIONS(57), 1, - sym_list_marker_lower_alpha_parens, - ACTIONS(1632), 1, - sym__block_close, - STATE(606), 1, - aux_sym__list_lower_alpha_parens_repeat1, - STATE(853), 1, - sym__list_item_lower_alpha_parens, - [16423] = 4, + ACTIONS(575), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [12665] = 2, + ACTIONS(1482), 1, + sym__eof_or_newline, + ACTIONS(593), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [12674] = 3, + ACTIONS(1484), 1, + anon_sym_PERCENT, + STATE(466), 1, + aux_sym__comment_no_newline_repeat1, + ACTIONS(1456), 2, + sym_backslash_escape, + aux_sym__comment_no_newline_token1, + [12685] = 3, + ACTIONS(1486), 1, + anon_sym_PERCENT, + STATE(482), 1, + aux_sym__comment_no_newline_repeat1, + ACTIONS(1488), 2, + sym_backslash_escape, + aux_sym__comment_no_newline_token1, + [12696] = 4, ACTIONS(33), 1, sym_list_marker_definition, - ACTIONS(1634), 1, + ACTIONS(1491), 1, sym__block_close, - STATE(579), 1, + STATE(550), 1, aux_sym__list_definition_repeat1, - STATE(819), 1, + STATE(896), 1, sym__list_item_definition, - [16436] = 4, + [12709] = 4, ACTIONS(35), 1, sym_list_marker_decimal_period, - ACTIONS(1636), 1, + ACTIONS(1493), 1, sym__block_close, - STATE(581), 1, + STATE(552), 1, aux_sym__list_decimal_period_repeat1, - STATE(852), 1, + STATE(841), 1, sym__list_item_decimal_period, - [16449] = 4, + [12722] = 4, + ACTIONS(45), 1, + sym_list_marker_decimal_paren, + ACTIONS(1495), 1, + sym__block_close, + STATE(554), 1, + aux_sym__list_decimal_paren_repeat1, + STATE(796), 1, + sym__list_item_decimal_paren, + [12735] = 4, ACTIONS(55), 1, sym_list_marker_decimal_parens, - ACTIONS(1638), 1, + ACTIONS(1497), 1, sym__block_close, - STATE(585), 1, + STATE(556), 1, aux_sym__list_decimal_parens_repeat1, - STATE(815), 1, + STATE(716), 1, sym__list_item_decimal_parens, - [16462] = 4, + [12748] = 4, ACTIONS(37), 1, sym_list_marker_lower_alpha_period, - ACTIONS(1640), 1, + ACTIONS(1499), 1, sym__block_close, - STATE(587), 1, + STATE(558), 1, aux_sym__list_lower_alpha_period_repeat1, - STATE(843), 1, + STATE(722), 1, sym__list_item_lower_alpha_period, - [16475] = 4, + [12761] = 4, ACTIONS(47), 1, sym_list_marker_lower_alpha_paren, - ACTIONS(1642), 1, + ACTIONS(1501), 1, sym__block_close, - STATE(604), 1, + STATE(560), 1, aux_sym__list_lower_alpha_paren_repeat1, - STATE(850), 1, + STATE(801), 1, sym__list_item_lower_alpha_paren, - [16488] = 4, + [12774] = 4, ACTIONS(57), 1, sym_list_marker_lower_alpha_parens, - ACTIONS(1644), 1, + ACTIONS(1503), 1, sym__block_close, - STATE(606), 1, + STATE(562), 1, aux_sym__list_lower_alpha_parens_repeat1, - STATE(853), 1, + STATE(813), 1, sym__list_item_lower_alpha_parens, - [16501] = 4, + [12787] = 4, ACTIONS(39), 1, sym_list_marker_upper_alpha_period, - ACTIONS(1646), 1, + ACTIONS(1505), 1, sym__block_close, - STATE(608), 1, + STATE(563), 1, aux_sym__list_upper_alpha_period_repeat1, - STATE(854), 1, + STATE(704), 1, sym__list_item_upper_alpha_period, - [16514] = 4, + [12800] = 4, ACTIONS(49), 1, sym_list_marker_upper_alpha_paren, - ACTIONS(1648), 1, + ACTIONS(1507), 1, sym__block_close, - STATE(610), 1, + STATE(565), 1, aux_sym__list_upper_alpha_paren_repeat1, - STATE(855), 1, + STATE(706), 1, sym__list_item_upper_alpha_paren, - [16527] = 4, + [12813] = 4, ACTIONS(59), 1, sym_list_marker_upper_alpha_parens, - ACTIONS(1650), 1, + ACTIONS(1509), 1, sym__block_close, - STATE(628), 1, + STATE(567), 1, aux_sym__list_upper_alpha_parens_repeat1, - STATE(856), 1, + STATE(707), 1, sym__list_item_upper_alpha_parens, - [16540] = 4, + [12826] = 4, ACTIONS(41), 1, sym_list_marker_lower_roman_period, - ACTIONS(1652), 1, + ACTIONS(1511), 1, sym__block_close, - STATE(630), 1, + STATE(569), 1, aux_sym__list_lower_roman_period_repeat1, - STATE(857), 1, + STATE(725), 1, sym__list_item_lower_roman_period, - [16553] = 4, + [12839] = 4, ACTIONS(51), 1, sym_list_marker_lower_roman_paren, - ACTIONS(1654), 1, + ACTIONS(1513), 1, sym__block_close, - STATE(648), 1, + STATE(571), 1, aux_sym__list_lower_roman_paren_repeat1, - STATE(871), 1, + STATE(726), 1, sym__list_item_lower_roman_paren, - [16566] = 4, + [12852] = 4, ACTIONS(61), 1, sym_list_marker_lower_roman_parens, - ACTIONS(1656), 1, + ACTIONS(1515), 1, sym__block_close, - STATE(650), 1, + STATE(573), 1, aux_sym__list_lower_roman_parens_repeat1, - STATE(874), 1, + STATE(736), 1, sym__list_item_lower_roman_parens, - [16579] = 4, - ACTIONS(43), 1, - sym_list_marker_upper_roman_period, - ACTIONS(1658), 1, - sym__block_close, - STATE(652), 1, - aux_sym__list_upper_roman_period_repeat1, - STATE(876), 1, - sym__list_item_upper_roman_period, - [16592] = 4, + [12865] = 4, ACTIONS(53), 1, sym_list_marker_upper_roman_paren, - ACTIONS(1660), 1, + ACTIONS(1517), 1, sym__block_close, - STATE(654), 1, + STATE(579), 1, aux_sym__list_upper_roman_paren_repeat1, - STATE(878), 1, + STATE(743), 1, sym__list_item_upper_roman_paren, - [16605] = 4, + [12878] = 4, ACTIONS(63), 1, sym_list_marker_upper_roman_parens, - ACTIONS(1662), 1, + ACTIONS(1519), 1, sym__block_close, - STATE(671), 1, + STATE(580), 1, aux_sym__list_upper_roman_parens_repeat1, - STATE(880), 1, + STATE(762), 1, sym__list_item_upper_roman_parens, - [16618] = 4, - ACTIONS(1664), 1, + [12891] = 3, + ACTIONS(1521), 1, + aux_sym__line_token1, + ACTIONS(1524), 1, + sym_frontmatter_marker, + STATE(498), 2, + sym__line, + aux_sym_frontmatter_content_repeat1, + [12902] = 4, + ACTIONS(33), 1, + sym_list_marker_definition, + ACTIONS(1526), 1, + sym__block_close, + STATE(550), 1, + aux_sym__list_definition_repeat1, + STATE(896), 1, + sym__list_item_definition, + [12915] = 4, + ACTIONS(35), 1, + sym_list_marker_decimal_period, + ACTIONS(1528), 1, + sym__block_close, + STATE(552), 1, + aux_sym__list_decimal_period_repeat1, + STATE(841), 1, + sym__list_item_decimal_period, + [12928] = 4, + ACTIONS(45), 1, + sym_list_marker_decimal_paren, + ACTIONS(1530), 1, + sym__block_close, + STATE(554), 1, + aux_sym__list_decimal_paren_repeat1, + STATE(796), 1, + sym__list_item_decimal_paren, + [12941] = 4, + ACTIONS(55), 1, + sym_list_marker_decimal_parens, + ACTIONS(1532), 1, + sym__block_close, + STATE(556), 1, + aux_sym__list_decimal_parens_repeat1, + STATE(716), 1, + sym__list_item_decimal_parens, + [12954] = 4, + ACTIONS(37), 1, + sym_list_marker_lower_alpha_period, + ACTIONS(1534), 1, sym__block_close, - ACTIONS(1666), 1, + STATE(558), 1, + aux_sym__list_lower_alpha_period_repeat1, + STATE(722), 1, + sym__list_item_lower_alpha_period, + [12967] = 4, + ACTIONS(47), 1, sym_list_marker_lower_alpha_paren, - STATE(604), 1, + ACTIONS(1536), 1, + sym__block_close, + STATE(560), 1, aux_sym__list_lower_alpha_paren_repeat1, - STATE(850), 1, + STATE(801), 1, sym__list_item_lower_alpha_paren, - [16631] = 4, + [12980] = 4, + ACTIONS(57), 1, + sym_list_marker_lower_alpha_parens, + ACTIONS(1538), 1, + sym__block_close, + STATE(562), 1, + aux_sym__list_lower_alpha_parens_repeat1, + STATE(813), 1, + sym__list_item_lower_alpha_parens, + [12993] = 4, ACTIONS(39), 1, sym_list_marker_upper_alpha_period, - ACTIONS(1669), 1, + ACTIONS(1540), 1, sym__block_close, - STATE(608), 1, + STATE(563), 1, aux_sym__list_upper_alpha_period_repeat1, - STATE(854), 1, + STATE(704), 1, sym__list_item_upper_alpha_period, - [16644] = 4, - ACTIONS(1671), 1, - sym__block_close, - ACTIONS(1673), 1, - sym_list_marker_lower_alpha_parens, - STATE(606), 1, - aux_sym__list_lower_alpha_parens_repeat1, - STATE(853), 1, - sym__list_item_lower_alpha_parens, - [16657] = 4, + [13006] = 4, ACTIONS(49), 1, sym_list_marker_upper_alpha_paren, - ACTIONS(1676), 1, + ACTIONS(1542), 1, sym__block_close, - STATE(610), 1, + STATE(565), 1, aux_sym__list_upper_alpha_paren_repeat1, - STATE(855), 1, + STATE(706), 1, sym__list_item_upper_alpha_paren, - [16670] = 4, - ACTIONS(1678), 1, - sym__block_close, - ACTIONS(1680), 1, - sym_list_marker_upper_alpha_period, - STATE(608), 1, - aux_sym__list_upper_alpha_period_repeat1, - STATE(854), 1, - sym__list_item_upper_alpha_period, - [16683] = 4, + [13019] = 4, ACTIONS(59), 1, sym_list_marker_upper_alpha_parens, - ACTIONS(1683), 1, + ACTIONS(1544), 1, sym__block_close, - STATE(628), 1, + STATE(567), 1, aux_sym__list_upper_alpha_parens_repeat1, - STATE(856), 1, + STATE(707), 1, sym__list_item_upper_alpha_parens, - [16696] = 4, - ACTIONS(1685), 1, - sym__block_close, - ACTIONS(1687), 1, - sym_list_marker_upper_alpha_paren, - STATE(610), 1, - aux_sym__list_upper_alpha_paren_repeat1, - STATE(855), 1, - sym__list_item_upper_alpha_paren, - [16709] = 4, + [13032] = 4, ACTIONS(41), 1, sym_list_marker_lower_roman_period, - ACTIONS(1690), 1, + ACTIONS(1546), 1, sym__block_close, - STATE(630), 1, + STATE(569), 1, aux_sym__list_lower_roman_period_repeat1, - STATE(857), 1, + STATE(725), 1, sym__list_item_lower_roman_period, - [16722] = 4, + [13045] = 4, + ACTIONS(51), 1, + sym_list_marker_lower_roman_paren, + ACTIONS(1548), 1, + sym__block_close, + STATE(571), 1, + aux_sym__list_lower_roman_paren_repeat1, + STATE(726), 1, + sym__list_item_lower_roman_paren, + [13058] = 4, + ACTIONS(61), 1, + sym_list_marker_lower_roman_parens, + ACTIONS(1550), 1, + sym__block_close, + STATE(573), 1, + aux_sym__list_lower_roman_parens_repeat1, + STATE(736), 1, + sym__list_item_lower_roman_parens, + [13071] = 4, + ACTIONS(43), 1, + sym_list_marker_upper_roman_period, + ACTIONS(1552), 1, + sym__block_close, + STATE(578), 1, + aux_sym__list_upper_roman_period_repeat1, + STATE(742), 1, + sym__list_item_upper_roman_period, + [13084] = 4, + ACTIONS(53), 1, + sym_list_marker_upper_roman_paren, + ACTIONS(1554), 1, + sym__block_close, + STATE(579), 1, + aux_sym__list_upper_roman_paren_repeat1, + STATE(743), 1, + sym__list_item_upper_roman_paren, + [13097] = 4, + ACTIONS(63), 1, + sym_list_marker_upper_roman_parens, + ACTIONS(1556), 1, + sym__block_close, + STATE(580), 1, + aux_sym__list_upper_roman_parens_repeat1, + STATE(762), 1, + sym__list_item_upper_roman_parens, + [13110] = 4, ACTIONS(33), 1, sym_list_marker_definition, - ACTIONS(1692), 1, + ACTIONS(1558), 1, sym__block_close, - STATE(579), 1, + STATE(550), 1, aux_sym__list_definition_repeat1, - STATE(819), 1, + STATE(896), 1, sym__list_item_definition, - [16735] = 4, + [13123] = 4, ACTIONS(35), 1, sym_list_marker_decimal_period, - ACTIONS(1694), 1, + ACTIONS(1560), 1, sym__block_close, - STATE(581), 1, + STATE(552), 1, aux_sym__list_decimal_period_repeat1, - STATE(852), 1, + STATE(841), 1, sym__list_item_decimal_period, - [16748] = 4, + [13136] = 4, ACTIONS(45), 1, sym_list_marker_decimal_paren, - ACTIONS(1696), 1, + ACTIONS(1562), 1, sym__block_close, - STATE(583), 1, + STATE(554), 1, aux_sym__list_decimal_paren_repeat1, - STATE(837), 1, + STATE(796), 1, sym__list_item_decimal_paren, - [16761] = 4, + [13149] = 4, ACTIONS(55), 1, sym_list_marker_decimal_parens, - ACTIONS(1698), 1, + ACTIONS(1564), 1, sym__block_close, - STATE(585), 1, + STATE(556), 1, aux_sym__list_decimal_parens_repeat1, - STATE(815), 1, + STATE(716), 1, sym__list_item_decimal_parens, - [16774] = 4, + [13162] = 4, ACTIONS(37), 1, sym_list_marker_lower_alpha_period, - ACTIONS(1700), 1, + ACTIONS(1566), 1, sym__block_close, - STATE(587), 1, + STATE(558), 1, aux_sym__list_lower_alpha_period_repeat1, - STATE(843), 1, + STATE(722), 1, sym__list_item_lower_alpha_period, - [16787] = 4, + [13175] = 4, ACTIONS(47), 1, sym_list_marker_lower_alpha_paren, - ACTIONS(1702), 1, + ACTIONS(1568), 1, sym__block_close, - STATE(604), 1, + STATE(560), 1, aux_sym__list_lower_alpha_paren_repeat1, - STATE(850), 1, + STATE(801), 1, sym__list_item_lower_alpha_paren, - [16800] = 4, + [13188] = 4, ACTIONS(57), 1, sym_list_marker_lower_alpha_parens, - ACTIONS(1704), 1, + ACTIONS(1570), 1, sym__block_close, - STATE(606), 1, + STATE(562), 1, aux_sym__list_lower_alpha_parens_repeat1, - STATE(853), 1, + STATE(813), 1, sym__list_item_lower_alpha_parens, - [16813] = 4, + [13201] = 4, ACTIONS(39), 1, sym_list_marker_upper_alpha_period, - ACTIONS(1706), 1, + ACTIONS(1572), 1, sym__block_close, - STATE(608), 1, + STATE(563), 1, aux_sym__list_upper_alpha_period_repeat1, - STATE(854), 1, + STATE(704), 1, sym__list_item_upper_alpha_period, - [16826] = 4, + [13214] = 4, ACTIONS(49), 1, sym_list_marker_upper_alpha_paren, - ACTIONS(1708), 1, + ACTIONS(1574), 1, sym__block_close, - STATE(610), 1, + STATE(565), 1, aux_sym__list_upper_alpha_paren_repeat1, - STATE(855), 1, + STATE(706), 1, sym__list_item_upper_alpha_paren, - [16839] = 4, + [13227] = 4, ACTIONS(59), 1, sym_list_marker_upper_alpha_parens, - ACTIONS(1710), 1, + ACTIONS(1576), 1, sym__block_close, - STATE(628), 1, + STATE(567), 1, aux_sym__list_upper_alpha_parens_repeat1, - STATE(856), 1, + STATE(707), 1, sym__list_item_upper_alpha_parens, - [16852] = 4, + [13240] = 4, ACTIONS(41), 1, sym_list_marker_lower_roman_period, - ACTIONS(1712), 1, + ACTIONS(1578), 1, sym__block_close, - STATE(630), 1, + STATE(569), 1, aux_sym__list_lower_roman_period_repeat1, - STATE(857), 1, + STATE(725), 1, sym__list_item_lower_roman_period, - [16865] = 4, + [13253] = 4, ACTIONS(51), 1, sym_list_marker_lower_roman_paren, - ACTIONS(1714), 1, + ACTIONS(1580), 1, sym__block_close, - STATE(648), 1, + STATE(571), 1, aux_sym__list_lower_roman_paren_repeat1, - STATE(871), 1, + STATE(726), 1, sym__list_item_lower_roman_paren, - [16878] = 4, + [13266] = 4, ACTIONS(61), 1, sym_list_marker_lower_roman_parens, - ACTIONS(1716), 1, + ACTIONS(1582), 1, sym__block_close, - STATE(650), 1, + STATE(573), 1, aux_sym__list_lower_roman_parens_repeat1, - STATE(874), 1, + STATE(736), 1, sym__list_item_lower_roman_parens, - [16891] = 4, + [13279] = 4, ACTIONS(43), 1, sym_list_marker_upper_roman_period, - ACTIONS(1718), 1, + ACTIONS(1584), 1, sym__block_close, - STATE(652), 1, + STATE(578), 1, aux_sym__list_upper_roman_period_repeat1, - STATE(876), 1, + STATE(742), 1, sym__list_item_upper_roman_period, - [16904] = 4, + [13292] = 4, ACTIONS(53), 1, sym_list_marker_upper_roman_paren, - ACTIONS(1720), 1, + ACTIONS(1586), 1, sym__block_close, - STATE(654), 1, + STATE(579), 1, aux_sym__list_upper_roman_paren_repeat1, - STATE(878), 1, + STATE(743), 1, sym__list_item_upper_roman_paren, - [16917] = 4, + [13305] = 4, ACTIONS(63), 1, sym_list_marker_upper_roman_parens, - ACTIONS(1722), 1, + ACTIONS(1588), 1, sym__block_close, - STATE(671), 1, + STATE(580), 1, aux_sym__list_upper_roman_parens_repeat1, - STATE(880), 1, + STATE(762), 1, sym__list_item_upper_roman_parens, - [16930] = 4, - ACTIONS(1724), 1, - sym__block_close, - ACTIONS(1726), 1, - sym_list_marker_upper_alpha_parens, - STATE(628), 1, - aux_sym__list_upper_alpha_parens_repeat1, - STATE(856), 1, - sym__list_item_upper_alpha_parens, - [16943] = 4, - ACTIONS(51), 1, - sym_list_marker_lower_roman_paren, - ACTIONS(1729), 1, - sym__block_close, - STATE(648), 1, - aux_sym__list_lower_roman_paren_repeat1, - STATE(871), 1, - sym__list_item_lower_roman_paren, - [16956] = 4, - ACTIONS(1731), 1, + [13318] = 4, + ACTIONS(33), 1, + sym_list_marker_definition, + ACTIONS(1590), 1, sym__block_close, - ACTIONS(1733), 1, - sym_list_marker_lower_roman_period, - STATE(630), 1, - aux_sym__list_lower_roman_period_repeat1, - STATE(857), 1, - sym__list_item_lower_roman_period, - [16969] = 4, - ACTIONS(61), 1, - sym_list_marker_lower_roman_parens, - ACTIONS(1736), 1, + STATE(550), 1, + aux_sym__list_definition_repeat1, + STATE(896), 1, + sym__list_item_definition, + [13331] = 4, + ACTIONS(35), 1, + sym_list_marker_decimal_period, + ACTIONS(1592), 1, sym__block_close, - STATE(650), 1, - aux_sym__list_lower_roman_parens_repeat1, - STATE(874), 1, - sym__list_item_lower_roman_parens, - [16982] = 4, + STATE(552), 1, + aux_sym__list_decimal_period_repeat1, + STATE(841), 1, + sym__list_item_decimal_period, + [13344] = 4, ACTIONS(33), 1, sym_list_marker_definition, - ACTIONS(1738), 1, + ACTIONS(1594), 1, sym__block_close, - STATE(579), 1, + STATE(550), 1, aux_sym__list_definition_repeat1, - STATE(819), 1, + STATE(896), 1, sym__list_item_definition, - [16995] = 4, + [13357] = 4, ACTIONS(35), 1, sym_list_marker_decimal_period, - ACTIONS(1740), 1, + ACTIONS(1596), 1, sym__block_close, - STATE(581), 1, + STATE(552), 1, aux_sym__list_decimal_period_repeat1, - STATE(852), 1, + STATE(841), 1, sym__list_item_decimal_period, - [17008] = 4, + [13370] = 4, ACTIONS(45), 1, sym_list_marker_decimal_paren, - ACTIONS(1742), 1, + ACTIONS(1598), 1, sym__block_close, - STATE(583), 1, + STATE(554), 1, aux_sym__list_decimal_paren_repeat1, - STATE(837), 1, + STATE(796), 1, sym__list_item_decimal_paren, - [17021] = 4, + [13383] = 4, ACTIONS(55), 1, sym_list_marker_decimal_parens, - ACTIONS(1744), 1, + ACTIONS(1600), 1, sym__block_close, - STATE(585), 1, + STATE(556), 1, aux_sym__list_decimal_parens_repeat1, - STATE(815), 1, + STATE(716), 1, sym__list_item_decimal_parens, - [17034] = 4, + [13396] = 4, ACTIONS(37), 1, sym_list_marker_lower_alpha_period, - ACTIONS(1746), 1, + ACTIONS(1602), 1, sym__block_close, - STATE(587), 1, + STATE(558), 1, aux_sym__list_lower_alpha_period_repeat1, - STATE(843), 1, + STATE(722), 1, sym__list_item_lower_alpha_period, - [17047] = 4, + [13409] = 4, ACTIONS(47), 1, sym_list_marker_lower_alpha_paren, - ACTIONS(1748), 1, + ACTIONS(1604), 1, sym__block_close, - STATE(604), 1, + STATE(560), 1, aux_sym__list_lower_alpha_paren_repeat1, - STATE(850), 1, + STATE(801), 1, sym__list_item_lower_alpha_paren, - [17060] = 4, + [13422] = 4, ACTIONS(57), 1, sym_list_marker_lower_alpha_parens, - ACTIONS(1750), 1, + ACTIONS(1606), 1, sym__block_close, - STATE(606), 1, + STATE(562), 1, aux_sym__list_lower_alpha_parens_repeat1, - STATE(853), 1, + STATE(813), 1, sym__list_item_lower_alpha_parens, - [17073] = 4, + [13435] = 4, ACTIONS(39), 1, sym_list_marker_upper_alpha_period, - ACTIONS(1752), 1, + ACTIONS(1608), 1, sym__block_close, - STATE(608), 1, + STATE(563), 1, aux_sym__list_upper_alpha_period_repeat1, - STATE(854), 1, + STATE(704), 1, sym__list_item_upper_alpha_period, - [17086] = 4, + [13448] = 4, ACTIONS(49), 1, sym_list_marker_upper_alpha_paren, - ACTIONS(1754), 1, + ACTIONS(1610), 1, sym__block_close, - STATE(610), 1, + STATE(565), 1, aux_sym__list_upper_alpha_paren_repeat1, - STATE(855), 1, + STATE(706), 1, sym__list_item_upper_alpha_paren, - [17099] = 4, + [13461] = 4, ACTIONS(59), 1, sym_list_marker_upper_alpha_parens, - ACTIONS(1756), 1, + ACTIONS(1612), 1, sym__block_close, - STATE(628), 1, + STATE(567), 1, aux_sym__list_upper_alpha_parens_repeat1, - STATE(856), 1, + STATE(707), 1, sym__list_item_upper_alpha_parens, - [17112] = 4, + [13474] = 4, ACTIONS(41), 1, sym_list_marker_lower_roman_period, - ACTIONS(1758), 1, + ACTIONS(1614), 1, sym__block_close, - STATE(630), 1, + STATE(569), 1, aux_sym__list_lower_roman_period_repeat1, - STATE(857), 1, + STATE(725), 1, sym__list_item_lower_roman_period, - [17125] = 4, + [13487] = 4, ACTIONS(51), 1, sym_list_marker_lower_roman_paren, - ACTIONS(1760), 1, + ACTIONS(1616), 1, sym__block_close, - STATE(648), 1, + STATE(571), 1, aux_sym__list_lower_roman_paren_repeat1, - STATE(871), 1, + STATE(726), 1, sym__list_item_lower_roman_paren, - [17138] = 4, + [13500] = 4, ACTIONS(61), 1, sym_list_marker_lower_roman_parens, - ACTIONS(1762), 1, + ACTIONS(1618), 1, sym__block_close, - STATE(650), 1, + STATE(573), 1, aux_sym__list_lower_roman_parens_repeat1, - STATE(874), 1, + STATE(736), 1, sym__list_item_lower_roman_parens, - [17151] = 4, - ACTIONS(43), 1, - sym_list_marker_upper_roman_period, - ACTIONS(1764), 1, - sym__block_close, - STATE(652), 1, - aux_sym__list_upper_roman_period_repeat1, - STATE(876), 1, - sym__list_item_upper_roman_period, - [17164] = 4, - ACTIONS(53), 1, - sym_list_marker_upper_roman_paren, - ACTIONS(1766), 1, - sym__block_close, - STATE(654), 1, - aux_sym__list_upper_roman_paren_repeat1, - STATE(878), 1, - sym__list_item_upper_roman_paren, - [17177] = 4, - ACTIONS(63), 1, - sym_list_marker_upper_roman_parens, - ACTIONS(1768), 1, - sym__block_close, - STATE(671), 1, - aux_sym__list_upper_roman_parens_repeat1, - STATE(880), 1, - sym__list_item_upper_roman_parens, - [17190] = 4, - ACTIONS(1770), 1, - sym__block_close, - ACTIONS(1772), 1, - sym_list_marker_lower_roman_paren, - STATE(648), 1, - aux_sym__list_lower_roman_paren_repeat1, - STATE(871), 1, - sym__list_item_lower_roman_paren, - [17203] = 4, + [13513] = 4, ACTIONS(43), 1, sym_list_marker_upper_roman_period, - ACTIONS(1775), 1, + ACTIONS(1620), 1, sym__block_close, - STATE(652), 1, + STATE(578), 1, aux_sym__list_upper_roman_period_repeat1, - STATE(876), 1, + STATE(742), 1, sym__list_item_upper_roman_period, - [17216] = 4, - ACTIONS(1777), 1, - sym__block_close, - ACTIONS(1779), 1, - sym_list_marker_lower_roman_parens, - STATE(650), 1, - aux_sym__list_lower_roman_parens_repeat1, - STATE(874), 1, - sym__list_item_lower_roman_parens, - [17229] = 4, + [13526] = 4, ACTIONS(53), 1, sym_list_marker_upper_roman_paren, - ACTIONS(1782), 1, + ACTIONS(1622), 1, sym__block_close, - STATE(654), 1, + STATE(579), 1, aux_sym__list_upper_roman_paren_repeat1, - STATE(878), 1, + STATE(743), 1, sym__list_item_upper_roman_paren, - [17242] = 4, - ACTIONS(1784), 1, - sym__block_close, - ACTIONS(1786), 1, - sym_list_marker_upper_roman_period, - STATE(652), 1, - aux_sym__list_upper_roman_period_repeat1, - STATE(876), 1, - sym__list_item_upper_roman_period, - [17255] = 4, + [13539] = 4, ACTIONS(63), 1, sym_list_marker_upper_roman_parens, - ACTIONS(1789), 1, + ACTIONS(1624), 1, sym__block_close, - STATE(671), 1, + STATE(580), 1, aux_sym__list_upper_roman_parens_repeat1, - STATE(880), 1, + STATE(762), 1, sym__list_item_upper_roman_parens, - [17268] = 4, - ACTIONS(1791), 1, - sym__block_close, - ACTIONS(1793), 1, - sym_list_marker_upper_roman_paren, - STATE(654), 1, - aux_sym__list_upper_roman_paren_repeat1, - STATE(878), 1, - sym__list_item_upper_roman_paren, - [17281] = 4, - ACTIONS(33), 1, - sym_list_marker_definition, - ACTIONS(1796), 1, - sym__block_close, - STATE(579), 1, - aux_sym__list_definition_repeat1, - STATE(819), 1, - sym__list_item_definition, - [17294] = 4, - ACTIONS(35), 1, - sym_list_marker_decimal_period, - ACTIONS(1798), 1, - sym__block_close, - STATE(581), 1, - aux_sym__list_decimal_period_repeat1, - STATE(852), 1, - sym__list_item_decimal_period, - [17307] = 4, + [13552] = 4, ACTIONS(45), 1, sym_list_marker_decimal_paren, - ACTIONS(1800), 1, + ACTIONS(1626), 1, sym__block_close, - STATE(583), 1, + STATE(554), 1, aux_sym__list_decimal_paren_repeat1, - STATE(837), 1, + STATE(796), 1, sym__list_item_decimal_paren, - [17320] = 4, + [13565] = 4, + ACTIONS(1628), 1, + sym__block_close, + ACTIONS(1630), 1, + sym_list_marker_definition, + STATE(550), 1, + aux_sym__list_definition_repeat1, + STATE(896), 1, + sym__list_item_definition, + [13578] = 4, ACTIONS(55), 1, sym_list_marker_decimal_parens, - ACTIONS(1802), 1, + ACTIONS(1633), 1, sym__block_close, - STATE(585), 1, + STATE(556), 1, aux_sym__list_decimal_parens_repeat1, - STATE(815), 1, + STATE(716), 1, sym__list_item_decimal_parens, - [17333] = 4, + [13591] = 4, + ACTIONS(1635), 1, + sym__block_close, + ACTIONS(1637), 1, + sym_list_marker_decimal_period, + STATE(552), 1, + aux_sym__list_decimal_period_repeat1, + STATE(841), 1, + sym__list_item_decimal_period, + [13604] = 4, ACTIONS(37), 1, sym_list_marker_lower_alpha_period, - ACTIONS(1804), 1, + ACTIONS(1640), 1, sym__block_close, - STATE(587), 1, + STATE(558), 1, aux_sym__list_lower_alpha_period_repeat1, - STATE(843), 1, + STATE(722), 1, sym__list_item_lower_alpha_period, - [17346] = 4, + [13617] = 4, + ACTIONS(1642), 1, + sym__block_close, + ACTIONS(1644), 1, + sym_list_marker_decimal_paren, + STATE(554), 1, + aux_sym__list_decimal_paren_repeat1, + STATE(796), 1, + sym__list_item_decimal_paren, + [13630] = 4, ACTIONS(47), 1, sym_list_marker_lower_alpha_paren, - ACTIONS(1806), 1, + ACTIONS(1647), 1, sym__block_close, - STATE(604), 1, + STATE(560), 1, aux_sym__list_lower_alpha_paren_repeat1, - STATE(850), 1, + STATE(801), 1, sym__list_item_lower_alpha_paren, - [17359] = 4, + [13643] = 4, + ACTIONS(1649), 1, + sym__block_close, + ACTIONS(1651), 1, + sym_list_marker_decimal_parens, + STATE(556), 1, + aux_sym__list_decimal_parens_repeat1, + STATE(716), 1, + sym__list_item_decimal_parens, + [13656] = 4, ACTIONS(57), 1, sym_list_marker_lower_alpha_parens, - ACTIONS(1808), 1, + ACTIONS(1654), 1, sym__block_close, - STATE(606), 1, + STATE(562), 1, aux_sym__list_lower_alpha_parens_repeat1, - STATE(853), 1, + STATE(813), 1, sym__list_item_lower_alpha_parens, - [17372] = 4, + [13669] = 4, + ACTIONS(1656), 1, + sym__block_close, + ACTIONS(1658), 1, + sym_list_marker_lower_alpha_period, + STATE(558), 1, + aux_sym__list_lower_alpha_period_repeat1, + STATE(722), 1, + sym__list_item_lower_alpha_period, + [13682] = 4, ACTIONS(39), 1, sym_list_marker_upper_alpha_period, - ACTIONS(1810), 1, + ACTIONS(1661), 1, sym__block_close, - STATE(608), 1, + STATE(563), 1, aux_sym__list_upper_alpha_period_repeat1, - STATE(854), 1, + STATE(704), 1, sym__list_item_upper_alpha_period, - [17385] = 4, + [13695] = 4, + ACTIONS(1663), 1, + sym__block_close, + ACTIONS(1665), 1, + sym_list_marker_lower_alpha_paren, + STATE(560), 1, + aux_sym__list_lower_alpha_paren_repeat1, + STATE(801), 1, + sym__list_item_lower_alpha_paren, + [13708] = 4, ACTIONS(49), 1, sym_list_marker_upper_alpha_paren, - ACTIONS(1812), 1, + ACTIONS(1668), 1, sym__block_close, - STATE(610), 1, + STATE(565), 1, aux_sym__list_upper_alpha_paren_repeat1, - STATE(855), 1, + STATE(706), 1, sym__list_item_upper_alpha_paren, - [17398] = 4, - ACTIONS(59), 1, - sym_list_marker_upper_alpha_parens, - ACTIONS(1814), 1, + [13721] = 4, + ACTIONS(1670), 1, sym__block_close, - STATE(628), 1, - aux_sym__list_upper_alpha_parens_repeat1, - STATE(856), 1, - sym__list_item_upper_alpha_parens, - [17411] = 4, + ACTIONS(1672), 1, + sym_list_marker_lower_alpha_parens, + STATE(562), 1, + aux_sym__list_lower_alpha_parens_repeat1, + STATE(813), 1, + sym__list_item_lower_alpha_parens, + [13734] = 4, + ACTIONS(1675), 1, + sym__block_close, + ACTIONS(1677), 1, + sym_list_marker_upper_alpha_period, + STATE(563), 1, + aux_sym__list_upper_alpha_period_repeat1, + STATE(704), 1, + sym__list_item_upper_alpha_period, + [13747] = 4, ACTIONS(41), 1, sym_list_marker_lower_roman_period, - ACTIONS(1816), 1, + ACTIONS(1680), 1, sym__block_close, - STATE(630), 1, + STATE(569), 1, aux_sym__list_lower_roman_period_repeat1, - STATE(857), 1, + STATE(725), 1, sym__list_item_lower_roman_period, - [17424] = 4, + [13760] = 4, + ACTIONS(1682), 1, + sym__block_close, + ACTIONS(1684), 1, + sym_list_marker_upper_alpha_paren, + STATE(565), 1, + aux_sym__list_upper_alpha_paren_repeat1, + STATE(706), 1, + sym__list_item_upper_alpha_paren, + [13773] = 4, ACTIONS(51), 1, sym_list_marker_lower_roman_paren, - ACTIONS(1818), 1, + ACTIONS(1687), 1, sym__block_close, - STATE(648), 1, + STATE(571), 1, aux_sym__list_lower_roman_paren_repeat1, - STATE(871), 1, + STATE(726), 1, sym__list_item_lower_roman_paren, - [17437] = 4, + [13786] = 4, + ACTIONS(1689), 1, + sym__block_close, + ACTIONS(1691), 1, + sym_list_marker_upper_alpha_parens, + STATE(567), 1, + aux_sym__list_upper_alpha_parens_repeat1, + STATE(707), 1, + sym__list_item_upper_alpha_parens, + [13799] = 4, ACTIONS(61), 1, sym_list_marker_lower_roman_parens, - ACTIONS(1820), 1, + ACTIONS(1694), 1, sym__block_close, - STATE(650), 1, + STATE(573), 1, aux_sym__list_lower_roman_parens_repeat1, - STATE(874), 1, + STATE(736), 1, sym__list_item_lower_roman_parens, - [17450] = 4, + [13812] = 4, + ACTIONS(1696), 1, + sym__block_close, + ACTIONS(1698), 1, + sym_list_marker_lower_roman_period, + STATE(569), 1, + aux_sym__list_lower_roman_period_repeat1, + STATE(725), 1, + sym__list_item_lower_roman_period, + [13825] = 4, ACTIONS(43), 1, sym_list_marker_upper_roman_period, - ACTIONS(1822), 1, + ACTIONS(1701), 1, sym__block_close, - STATE(652), 1, + STATE(578), 1, aux_sym__list_upper_roman_period_repeat1, - STATE(876), 1, + STATE(742), 1, sym__list_item_upper_roman_period, - [17463] = 4, + [13838] = 4, + ACTIONS(1703), 1, + sym__block_close, + ACTIONS(1705), 1, + sym_list_marker_lower_roman_paren, + STATE(571), 1, + aux_sym__list_lower_roman_paren_repeat1, + STATE(726), 1, + sym__list_item_lower_roman_paren, + [13851] = 4, ACTIONS(53), 1, sym_list_marker_upper_roman_paren, - ACTIONS(1824), 1, + ACTIONS(1708), 1, sym__block_close, - STATE(654), 1, + STATE(579), 1, aux_sym__list_upper_roman_paren_repeat1, - STATE(878), 1, + STATE(743), 1, sym__list_item_upper_roman_paren, - [17476] = 4, - ACTIONS(63), 1, - sym_list_marker_upper_roman_parens, - ACTIONS(1826), 1, - sym__block_close, - STATE(671), 1, - aux_sym__list_upper_roman_parens_repeat1, - STATE(880), 1, - sym__list_item_upper_roman_parens, - [17489] = 4, - ACTIONS(1828), 1, + [13864] = 4, + ACTIONS(1710), 1, sym__block_close, - ACTIONS(1830), 1, - sym_list_marker_upper_roman_parens, - STATE(671), 1, - aux_sym__list_upper_roman_parens_repeat1, - STATE(880), 1, - sym__list_item_upper_roman_parens, - [17502] = 4, - ACTIONS(1515), 1, + ACTIONS(1712), 1, + sym_list_marker_lower_roman_parens, + STATE(573), 1, + aux_sym__list_lower_roman_parens_repeat1, + STATE(736), 1, + sym__list_item_lower_roman_parens, + [13877] = 4, + ACTIONS(1442), 1, anon_sym_EQ, - ACTIONS(1833), 1, + ACTIONS(1715), 1, sym_language, - ACTIONS(1835), 1, + ACTIONS(1717), 1, sym__newline, - STATE(1129), 1, + STATE(1036), 1, sym_raw_block_info, - [17515] = 4, - ACTIONS(1515), 1, + [13890] = 4, + ACTIONS(1442), 1, anon_sym_EQ, - ACTIONS(1837), 1, + ACTIONS(1719), 1, sym_language, - ACTIONS(1839), 1, + ACTIONS(1721), 1, sym__newline, - STATE(1152), 1, + STATE(1060), 1, sym_raw_block_info, - [17528] = 3, - ACTIONS(1156), 1, - sym__table_caption_begin, - STATE(976), 1, - sym_table_caption, - ACTIONS(556), 2, + [13903] = 4, + ACTIONS(63), 1, + sym_list_marker_upper_roman_parens, + ACTIONS(1723), 1, sym__block_close, - sym__block_quote_continuation, - [17539] = 4, - ACTIONS(1515), 1, - anon_sym_EQ, - ACTIONS(1841), 1, - sym_language, - ACTIONS(1843), 1, - sym__newline, - STATE(1175), 1, - sym_raw_block_info, - [17552] = 3, - ACTIONS(1527), 1, - aux_sym__line_token1, - STATE(1199), 1, - sym_frontmatter_content, - STATE(546), 2, - sym__line, - aux_sym_frontmatter_content_repeat1, - [17563] = 4, - ACTIONS(1515), 1, - anon_sym_EQ, - ACTIONS(1845), 1, - sym_language, - ACTIONS(1847), 1, - sym__newline, - STATE(1198), 1, - sym_raw_block_info, - [17576] = 4, - ACTIONS(1515), 1, + STATE(580), 1, + aux_sym__list_upper_roman_parens_repeat1, + STATE(762), 1, + sym__list_item_upper_roman_parens, + [13916] = 4, + ACTIONS(1442), 1, anon_sym_EQ, - ACTIONS(1849), 1, + ACTIONS(1725), 1, sym_language, - ACTIONS(1851), 1, + ACTIONS(1727), 1, sym__newline, - STATE(1220), 1, + STATE(1084), 1, sym_raw_block_info, - [17589] = 4, - ACTIONS(45), 1, - sym_list_marker_decimal_paren, - ACTIONS(1853), 1, + [13929] = 4, + ACTIONS(1729), 1, sym__block_close, - STATE(583), 1, - aux_sym__list_decimal_paren_repeat1, - STATE(837), 1, - sym__list_item_decimal_paren, - [17602] = 1, - ACTIONS(740), 3, + ACTIONS(1731), 1, + sym_list_marker_upper_roman_period, + STATE(578), 1, + aux_sym__list_upper_roman_period_repeat1, + STATE(742), 1, + sym__list_item_upper_roman_period, + [13942] = 4, + ACTIONS(1734), 1, + sym__block_close, + ACTIONS(1736), 1, + sym_list_marker_upper_roman_paren, + STATE(579), 1, + aux_sym__list_upper_roman_paren_repeat1, + STATE(743), 1, + sym__list_item_upper_roman_paren, + [13955] = 4, + ACTIONS(1739), 1, + sym__block_close, + ACTIONS(1741), 1, + sym_list_marker_upper_roman_parens, + STATE(580), 1, + aux_sym__list_upper_roman_parens_repeat1, + STATE(762), 1, + sym__list_item_upper_roman_parens, + [13968] = 4, + ACTIONS(43), 1, + sym_list_marker_upper_roman_period, + ACTIONS(1744), 1, + sym__block_close, + STATE(578), 1, + aux_sym__list_upper_roman_period_repeat1, + STATE(742), 1, + sym__list_item_upper_roman_period, + [13981] = 1, + ACTIONS(633), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [17608] = 3, - ACTIONS(902), 1, + [13987] = 3, + ACTIONS(467), 1, + sym__block_quote_continuation, + ACTIONS(950), 1, + anon_sym_PIPE, + STATE(588), 1, + aux_sym__block_quote_prefix_repeat1, + [13997] = 3, + ACTIONS(1746), 1, + anon_sym_DQUOTE, + ACTIONS(1748), 1, + aux_sym_value_token2, + STATE(417), 1, + sym_value, + [14007] = 1, + ACTIONS(1750), 3, + sym__block_close, + sym_list_marker_dash, + sym__block_quote_continuation, + [14013] = 3, + ACTIONS(839), 1, sym_list_marker_dash, - ACTIONS(1855), 1, + ACTIONS(1752), 1, sym__block_quote_continuation, - STATE(681), 1, + STATE(586), 1, + aux_sym__block_quote_prefix_repeat1, + [14023] = 1, + ACTIONS(1755), 3, + sym__block_close, + sym_list_marker_star, + sym__block_quote_continuation, + [14029] = 3, + ACTIONS(839), 1, + anon_sym_PIPE, + ACTIONS(1757), 1, + sym__block_quote_continuation, + STATE(588), 1, aux_sym__block_quote_prefix_repeat1, - [17618] = 1, - ACTIONS(890), 3, + [14039] = 1, + ACTIONS(1760), 3, + sym__block_close, + sym__block_quote_continuation, + aux_sym__line_token1, + [14045] = 1, + ACTIONS(1762), 3, + sym__block_close, + sym_list_marker_plus, + sym__block_quote_continuation, + [14051] = 1, + ACTIONS(1764), 3, + sym__block_close, + sym__list_marker_task_begin, + sym__block_quote_continuation, + [14057] = 1, + ACTIONS(1766), 3, + sym__block_close, + sym__list_marker_task_begin, + sym__block_quote_continuation, + [14063] = 1, + ACTIONS(639), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [17624] = 1, - ACTIONS(1858), 3, + [14069] = 1, + ACTIONS(1264), 3, + sym__block_close, + sym__block_quote_continuation, + aux_sym__line_token1, + [14075] = 1, + ACTIONS(1768), 3, sym__block_close, sym_list_marker_star, sym__block_quote_continuation, - [17630] = 1, - ACTIONS(1860), 3, + [14081] = 3, + ACTIONS(1770), 1, + sym__eof_or_newline, + ACTIONS(1772), 1, + sym__newline_inline, + STATE(597), 1, + aux_sym__paragraph_inline_content_repeat1, + [14091] = 3, + ACTIONS(1774), 1, + sym__eof_or_newline, + ACTIONS(1776), 1, + sym__newline_inline, + STATE(597), 1, + aux_sym__paragraph_inline_content_repeat1, + [14101] = 3, + ACTIONS(1779), 1, + sym__block_close, + ACTIONS(1781), 1, + sym__heading_continuation, + STATE(600), 1, + aux_sym__heading_content_repeat1, + [14111] = 2, + ACTIONS(1783), 1, + sym__eof_or_newline, + ACTIONS(607), 2, sym__block_close, - sym_list_marker_dash, sym__block_quote_continuation, - [17636] = 1, - ACTIONS(1862), 3, + [14119] = 3, + ACTIONS(1785), 1, sym__block_close, - sym_list_marker_star, + ACTIONS(1787), 1, + sym__heading_continuation, + STATE(600), 1, + aux_sym__heading_content_repeat1, + [14129] = 1, + ACTIONS(1790), 3, + sym__block_close, + sym_list_marker_dash, sym__block_quote_continuation, - [17642] = 1, - ACTIONS(716), 3, + [14135] = 1, + ACTIONS(751), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [17648] = 1, - ACTIONS(898), 3, + [14141] = 1, + ACTIONS(755), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [14147] = 3, + ACTIONS(950), 1, + sym_list_marker_plus, + ACTIONS(1207), 1, + sym__block_quote_continuation, + STATE(632), 1, + aux_sym__block_quote_prefix_repeat1, + [14157] = 1, + ACTIONS(657), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [17654] = 1, - ACTIONS(728), 3, + [14163] = 1, + ACTIONS(681), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [17660] = 1, - ACTIONS(1864), 3, - sym__block_close, - sym_list_marker_plus, + [14169] = 1, + ACTIONS(713), 3, + sym__list_item_continuation, + sym__list_item_end, sym__block_quote_continuation, - [17666] = 1, - ACTIONS(1866), 3, + [14175] = 1, + ACTIONS(729), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [14181] = 1, + ACTIONS(737), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [14187] = 1, + ACTIONS(757), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [14193] = 1, + ACTIONS(761), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [14199] = 1, + ACTIONS(1768), 3, sym__block_close, - sym__list_marker_task_begin, + sym_list_marker_dash, + sym__block_quote_continuation, + [14205] = 1, + ACTIONS(1396), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [14211] = 3, + ACTIONS(1772), 1, + sym__newline_inline, + ACTIONS(1792), 1, + sym__eof_or_newline, + STATE(596), 1, + aux_sym__paragraph_inline_content_repeat1, + [14221] = 3, + ACTIONS(1772), 1, + sym__newline_inline, + ACTIONS(1792), 1, + sym__eof_or_newline, + STATE(597), 1, + aux_sym__paragraph_inline_content_repeat1, + [14231] = 3, + ACTIONS(1772), 1, + sym__newline_inline, + ACTIONS(1794), 1, + sym__eof_or_newline, + STATE(615), 1, + aux_sym__paragraph_inline_content_repeat1, + [14241] = 1, + ACTIONS(767), 3, + sym__list_item_continuation, + sym__list_item_end, sym__block_quote_continuation, - [17672] = 1, - ACTIONS(894), 3, + [14247] = 1, + ACTIONS(771), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [17678] = 1, - ACTIONS(732), 3, + [14253] = 1, + ACTIONS(775), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [17684] = 1, - ACTIONS(736), 3, + [14259] = 1, + ACTIONS(779), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [17690] = 1, - ACTIONS(748), 3, + [14265] = 1, + ACTIONS(783), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [17696] = 1, - ACTIONS(752), 3, + [14271] = 1, + ACTIONS(787), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [17702] = 1, - ACTIONS(756), 3, + [14277] = 1, + ACTIONS(791), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [17708] = 1, - ACTIONS(760), 3, + [14283] = 1, + ACTIONS(795), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [17714] = 1, - ACTIONS(764), 3, + [14289] = 1, + ACTIONS(799), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [17720] = 1, - ACTIONS(768), 3, + [14295] = 1, + ACTIONS(803), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [17726] = 3, - ACTIONS(1868), 1, - sym__eof_or_newline, - ACTIONS(1870), 1, - sym__newline_inline, - STATE(704), 1, - aux_sym__paragraph_inline_content_repeat1, - [17736] = 1, - ACTIONS(776), 3, + [14301] = 1, + ACTIONS(807), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [17742] = 1, - ACTIONS(780), 3, + [14307] = 1, + ACTIONS(811), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [17748] = 3, - ACTIONS(996), 1, - sym_list_marker_star, - ACTIONS(1310), 1, - sym__block_quote_continuation, - STATE(709), 1, - aux_sym__block_quote_prefix_repeat1, - [17758] = 3, - ACTIONS(1872), 1, - sym__eof_or_newline, - ACTIONS(1874), 1, - sym__newline_inline, - STATE(704), 1, - aux_sym__paragraph_inline_content_repeat1, - [17768] = 1, - ACTIONS(1877), 3, - sym__block_close, - sym_list_marker_plus, - sym__block_quote_continuation, - [17774] = 1, - ACTIONS(1879), 3, - sym__block_close, - sym__list_marker_task_begin, - sym__block_quote_continuation, - [17780] = 2, - ACTIONS(1883), 1, - anon_sym_SPACE, - ACTIONS(1881), 2, - anon_sym_x, - anon_sym_X, - [17788] = 1, - ACTIONS(1363), 3, - sym__block_close, - sym__block_quote_continuation, - aux_sym__line_token1, - [17794] = 3, - ACTIONS(902), 1, - sym_list_marker_star, - ACTIONS(1885), 1, - sym__block_quote_continuation, - STATE(709), 1, - aux_sym__block_quote_prefix_repeat1, - [17804] = 1, - ACTIONS(1888), 3, - sym__block_close, - sym_list_marker_dash, - sym__block_quote_continuation, - [17810] = 1, - ACTIONS(1483), 3, + [14313] = 1, + ACTIONS(815), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [17816] = 3, - ACTIONS(556), 1, - sym__list_item_content_spacer, - ACTIONS(1223), 1, - sym__table_caption_begin, - STATE(1288), 1, - sym_table_caption, - [17826] = 3, - ACTIONS(1870), 1, - sym__newline_inline, - ACTIONS(1890), 1, - sym__eof_or_newline, - STATE(700), 1, - aux_sym__paragraph_inline_content_repeat1, - [17836] = 3, - ACTIONS(1870), 1, - sym__newline_inline, - ACTIONS(1890), 1, - sym__eof_or_newline, - STATE(704), 1, - aux_sym__paragraph_inline_content_repeat1, - [17846] = 3, - ACTIONS(1870), 1, - sym__newline_inline, - ACTIONS(1892), 1, - sym__eof_or_newline, - STATE(714), 1, - aux_sym__paragraph_inline_content_repeat1, - [17856] = 2, - ACTIONS(1894), 1, - anon_sym_LBRACK, - STATE(1201), 2, - sym_checked, - sym_unchecked, - [17864] = 3, - ACTIONS(996), 1, - sym__list_marker_task_begin, - ACTIONS(1249), 1, - sym__block_quote_continuation, - STATE(718), 1, - aux_sym__block_quote_prefix_repeat1, - [17874] = 3, - ACTIONS(902), 1, - sym__list_marker_task_begin, - ACTIONS(1896), 1, - sym__block_quote_continuation, - STATE(718), 1, - aux_sym__block_quote_prefix_repeat1, - [17884] = 1, - ACTIONS(1899), 3, + [14319] = 1, + ACTIONS(819), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [17890] = 1, - ACTIONS(1901), 3, + [14325] = 1, + ACTIONS(503), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [17896] = 3, - ACTIONS(996), 1, - aux_sym__line_token1, - ACTIONS(1240), 1, - sym__block_quote_continuation, - STATE(722), 1, - aux_sym__block_quote_prefix_repeat1, - [17906] = 3, - ACTIONS(902), 1, - aux_sym__line_token1, - ACTIONS(1903), 1, + [14331] = 3, + ACTIONS(839), 1, + sym_list_marker_plus, + ACTIONS(1796), 1, sym__block_quote_continuation, - STATE(722), 1, + STATE(632), 1, aux_sym__block_quote_prefix_repeat1, - [17916] = 3, - ACTIONS(996), 1, + [14341] = 2, + ACTIONS(1799), 1, + anon_sym_LBRACK, + STATE(953), 2, + sym_checked, + sym_unchecked, + [14349] = 1, + ACTIONS(1801), 3, sym__list_item_continuation, - ACTIONS(1384), 1, + sym__list_item_end, sym__block_quote_continuation, - STATE(724), 1, - aux_sym__block_quote_prefix_repeat1, - [17926] = 3, - ACTIONS(902), 1, + [14355] = 1, + ACTIONS(1803), 3, sym__list_item_continuation, - ACTIONS(1906), 1, - sym__block_quote_continuation, - STATE(724), 1, - aux_sym__block_quote_prefix_repeat1, - [17936] = 1, - ACTIONS(1909), 3, - sym__block_close, - sym__list_marker_task_begin, - sym__block_quote_continuation, - [17942] = 1, - ACTIONS(1888), 3, - sym__block_close, - sym__list_marker_task_begin, - sym__block_quote_continuation, - [17948] = 1, - ACTIONS(1911), 3, - sym__block_close, - sym_list_marker_dash, + sym__list_item_end, sym__block_quote_continuation, - [17954] = 3, - ACTIONS(1913), 1, - sym__block_close, - ACTIONS(1915), 1, - sym__heading_continuation, - STATE(728), 1, - aux_sym__heading_content_repeat1, - [17964] = 1, - ACTIONS(1909), 3, + [14361] = 1, + ACTIONS(1805), 3, sym__block_close, sym_list_marker_dash, sym__block_quote_continuation, - [17970] = 1, - ACTIONS(1918), 3, + [14367] = 1, + ACTIONS(1807), 3, sym__block_close, sym_list_marker_plus, sym__block_quote_continuation, - [17976] = 1, - ACTIONS(712), 3, + [14373] = 1, + ACTIONS(823), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [17982] = 1, - ACTIONS(708), 3, + [14379] = 1, + ACTIONS(827), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [17988] = 3, - ACTIONS(996), 1, - sym_list_marker_plus, - ACTIONS(1306), 1, + [14385] = 1, + ACTIONS(743), 3, + sym__list_item_continuation, + sym__list_item_end, sym__block_quote_continuation, - STATE(763), 1, - aux_sym__block_quote_prefix_repeat1, - [17998] = 1, - ACTIONS(720), 3, + [14391] = 3, + ACTIONS(1781), 1, + sym__heading_continuation, + ACTIONS(1809), 1, + sym__block_close, + STATE(598), 1, + aux_sym__heading_content_repeat1, + [14401] = 1, + ACTIONS(1811), 3, + anon_sym_PERCENT, + sym_backslash_escape, + aux_sym__comment_no_newline_token1, + [14407] = 1, + ACTIONS(641), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [18004] = 3, - ACTIONS(996), 1, - sym_list_marker_dash, - ACTIONS(1316), 1, + [14413] = 2, + ACTIONS(1813), 1, + sym__code_block_end, + ACTIONS(515), 2, + sym__block_close, sym__block_quote_continuation, - STATE(681), 1, - aux_sym__block_quote_prefix_repeat1, - [18014] = 3, - ACTIONS(1920), 1, - anon_sym_DQUOTE, - ACTIONS(1922), 1, - aux_sym_value_token2, - STATE(489), 1, - sym_value, - [18024] = 1, - ACTIONS(1909), 3, + [14421] = 1, + ACTIONS(1790), 3, sym__block_close, - sym_list_marker_star, + sym_list_marker_plus, sym__block_quote_continuation, - [18030] = 1, - ACTIONS(792), 3, + [14427] = 1, + ACTIONS(649), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [18036] = 1, - ACTIONS(808), 3, - sym__list_item_continuation, - sym__list_item_end, + [14433] = 2, + ACTIONS(1815), 1, + sym__div_end, + ACTIONS(529), 2, + sym__block_close, sym__block_quote_continuation, - [18042] = 1, - ACTIONS(706), 3, - sym__list_item_continuation, - sym__list_item_end, + [14441] = 2, + ACTIONS(1817), 1, + sym__div_end, + ACTIONS(535), 2, + sym__block_close, sym__block_quote_continuation, - [18048] = 1, - ACTIONS(814), 3, + [14449] = 2, + ACTIONS(1819), 1, + sym__code_block_end, + ACTIONS(541), 2, + sym__block_close, + sym__block_quote_continuation, + [14457] = 1, + ACTIONS(653), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [18054] = 1, - ACTIONS(818), 3, + [14463] = 2, + ACTIONS(1821), 1, + sym__code_block_end, + ACTIONS(509), 2, + sym__block_close, + sym__block_quote_continuation, + [14471] = 1, + ACTIONS(665), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [18060] = 1, - ACTIONS(822), 3, + [14477] = 2, + ACTIONS(1823), 1, + sym__code_block_end, + ACTIONS(549), 2, + sym__block_close, + sym__block_quote_continuation, + [14485] = 1, + ACTIONS(1768), 3, + sym__block_close, + sym_list_marker_plus, + sym__block_quote_continuation, + [14491] = 1, + ACTIONS(669), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [18066] = 1, - ACTIONS(826), 3, + [14497] = 1, + ACTIONS(673), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [18072] = 1, - ACTIONS(830), 3, + [14503] = 1, + ACTIONS(677), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [18078] = 1, - ACTIONS(834), 3, + [14509] = 1, + ACTIONS(1825), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [18084] = 1, - ACTIONS(838), 3, + [14515] = 1, + ACTIONS(689), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [18090] = 1, - ACTIONS(1924), 3, + [14521] = 1, + ACTIONS(693), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [18096] = 1, - ACTIONS(842), 3, + [14527] = 1, + ACTIONS(697), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [18102] = 1, - ACTIONS(846), 3, + [14533] = 1, + ACTIONS(701), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [18108] = 1, - ACTIONS(850), 3, + [14539] = 1, + ACTIONS(705), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [18114] = 1, - ACTIONS(854), 3, + [14545] = 1, + ACTIONS(709), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [18120] = 1, - ACTIONS(858), 3, + [14551] = 2, + ACTIONS(1827), 1, + sym__div_end, + ACTIONS(563), 2, + sym__block_close, + sym__block_quote_continuation, + [14559] = 1, + ACTIONS(717), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [18126] = 1, - ACTIONS(862), 3, + [14565] = 1, + ACTIONS(721), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [18132] = 1, - ACTIONS(866), 3, + [14571] = 1, + ACTIONS(725), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [18138] = 1, - ACTIONS(870), 3, + [14577] = 1, + ACTIONS(733), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [18144] = 1, - ACTIONS(1926), 3, - sym__block_close, - sym__block_quote_continuation, - aux_sym__line_token1, - [18150] = 1, - ACTIONS(1888), 3, - sym__block_close, + [14583] = 3, + ACTIONS(950), 1, sym_list_marker_star, + ACTIONS(1223), 1, sym__block_quote_continuation, - [18156] = 1, - ACTIONS(1928), 3, + STATE(674), 1, + aux_sym__block_quote_prefix_repeat1, + [14593] = 1, + ACTIONS(1829), 3, sym__block_close, sym_list_marker_star, sym__block_quote_continuation, - [18162] = 1, - ACTIONS(556), 3, - sym__list_item_continuation, - sym__list_item_end, + [14599] = 1, + ACTIONS(1831), 3, sym__block_quote_continuation, - [18168] = 1, - ACTIONS(1930), 3, - sym__block_close, - sym__list_marker_task_begin, + sym__footnote_continuation, + sym__footnote_end, + [14605] = 1, + ACTIONS(1833), 3, sym__block_quote_continuation, - [18174] = 3, - ACTIONS(506), 1, + sym__footnote_continuation, + sym__footnote_end, + [14611] = 3, + ACTIONS(839), 1, + sym_list_marker_star, + ACTIONS(1835), 1, sym__block_quote_continuation, - ACTIONS(996), 1, - anon_sym_PIPE, - STATE(768), 1, + STATE(674), 1, aux_sym__block_quote_prefix_repeat1, - [18184] = 3, - ACTIONS(902), 1, - sym_list_marker_plus, - ACTIONS(1932), 1, + [14621] = 3, + ACTIONS(950), 1, + sym__list_marker_task_begin, + ACTIONS(1174), 1, sym__block_quote_continuation, - STATE(763), 1, + STATE(676), 1, aux_sym__block_quote_prefix_repeat1, - [18194] = 1, - ACTIONS(874), 3, - sym__list_item_continuation, - sym__list_item_end, + [14631] = 3, + ACTIONS(839), 1, + sym__list_marker_task_begin, + ACTIONS(1838), 1, sym__block_quote_continuation, - [18200] = 2, - ACTIONS(1935), 1, - sym__eof_or_newline, - ACTIONS(580), 2, + STATE(676), 1, + aux_sym__block_quote_prefix_repeat1, + [14641] = 2, + ACTIONS(1841), 1, + sym__code_block_end, + ACTIONS(569), 2, sym__block_close, sym__block_quote_continuation, - [18208] = 1, - ACTIONS(878), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [18214] = 3, - ACTIONS(1937), 1, + [14649] = 2, + ACTIONS(1843), 1, + sym__code_block_end, + ACTIONS(575), 2, sym__block_close, - ACTIONS(1939), 1, - sym__heading_continuation, - STATE(787), 1, - aux_sym__heading_content_repeat1, - [18224] = 3, - ACTIONS(902), 1, - anon_sym_PIPE, - ACTIONS(1941), 1, sym__block_quote_continuation, - STATE(768), 1, + [14657] = 3, + ACTIONS(950), 1, + aux_sym__line_token1, + ACTIONS(1149), 1, + sym__block_quote_continuation, + STATE(680), 1, aux_sym__block_quote_prefix_repeat1, - [18234] = 1, - ACTIONS(1944), 3, - anon_sym_PERCENT, - sym_backslash_escape, - aux_sym__comment_no_newline_token1, - [18240] = 2, - ACTIONS(1946), 1, - sym__eof_or_newline, - ACTIONS(588), 2, - sym__block_close, + [14667] = 3, + ACTIONS(839), 1, + aux_sym__line_token1, + ACTIONS(1845), 1, sym__block_quote_continuation, - [18248] = 1, - ACTIONS(798), 3, + STATE(680), 1, + aux_sym__block_quote_prefix_repeat1, + [14677] = 3, + ACTIONS(950), 1, sym__list_item_continuation, - sym__list_item_end, + ACTIONS(1283), 1, sym__block_quote_continuation, - [18254] = 1, - ACTIONS(882), 3, + STATE(682), 1, + aux_sym__block_quote_prefix_repeat1, + [14687] = 3, + ACTIONS(839), 1, sym__list_item_continuation, - sym__list_item_end, + ACTIONS(1848), 1, sym__block_quote_continuation, - [18260] = 2, - ACTIONS(1948), 1, - sym__div_end, - ACTIONS(622), 2, - sym__block_close, + STATE(682), 1, + aux_sym__block_quote_prefix_repeat1, + [14697] = 3, + ACTIONS(950), 1, + sym__footnote_continuation, + ACTIONS(1309), 1, sym__block_quote_continuation, - [18268] = 2, - ACTIONS(1950), 1, - sym__code_block_end, - ACTIONS(596), 2, - sym__block_close, + STATE(684), 1, + aux_sym__block_quote_prefix_repeat1, + [14707] = 3, + ACTIONS(839), 1, + sym__footnote_continuation, + ACTIONS(1851), 1, sym__block_quote_continuation, - [18276] = 1, - ACTIONS(1909), 3, + STATE(684), 1, + aux_sym__block_quote_prefix_repeat1, + [14717] = 1, + ACTIONS(1790), 3, sym__block_close, - sym_list_marker_plus, + sym__list_marker_task_begin, sym__block_quote_continuation, - [18282] = 1, - ACTIONS(1952), 3, + [14723] = 1, + ACTIONS(1768), 3, sym__block_close, - sym_list_marker_dash, + sym__list_marker_task_begin, sym__block_quote_continuation, - [18288] = 2, - ACTIONS(1954), 1, - sym__div_end, - ACTIONS(592), 2, + [14729] = 3, + ACTIONS(503), 1, + sym__indented_content_spacer, + ACTIONS(1081), 1, + sym__table_caption_begin, + STATE(1133), 1, + sym_table_caption, + [14739] = 2, + ACTIONS(1854), 1, + sym__eof_or_newline, + ACTIONS(593), 2, sym__block_close, sym__block_quote_continuation, - [18296] = 2, - ACTIONS(1956), 1, - sym__div_end, - ACTIONS(614), 2, + [14747] = 1, + ACTIONS(1856), 3, sym__block_close, + sym_list_marker_dash, sym__block_quote_continuation, - [18304] = 2, - ACTIONS(1958), 1, - sym__code_block_end, - ACTIONS(606), 2, - sym__block_close, + [14753] = 3, + ACTIONS(950), 1, + sym_list_marker_dash, + ACTIONS(1213), 1, sym__block_quote_continuation, - [18312] = 2, - ACTIONS(1960), 1, - sym__code_block_end, - ACTIONS(644), 2, + STATE(586), 1, + aux_sym__block_quote_prefix_repeat1, + [14763] = 1, + ACTIONS(1858), 3, sym__block_close, + sym__list_marker_task_begin, sym__block_quote_continuation, - [18320] = 2, - ACTIONS(1962), 1, - sym__code_block_end, - ACTIONS(650), 2, + [14769] = 1, + ACTIONS(1860), 3, sym__block_close, + sym_list_marker_star, sym__block_quote_continuation, - [18328] = 1, - ACTIONS(1888), 3, + [14775] = 1, + ACTIONS(1862), 3, sym__block_close, sym_list_marker_plus, sym__block_quote_continuation, - [18334] = 1, - ACTIONS(886), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [18340] = 2, - ACTIONS(1964), 1, - sym__div_end, - ACTIONS(676), 2, - sym__block_close, - sym__block_quote_continuation, - [18348] = 2, - ACTIONS(1966), 1, - sym__code_block_end, - ACTIONS(564), 2, - sym__block_close, - sym__block_quote_continuation, - [18356] = 2, - ACTIONS(1968), 1, - sym__code_block_end, - ACTIONS(570), 2, + [14781] = 2, + ACTIONS(1866), 1, + anon_sym_SPACE, + ACTIONS(1864), 2, + anon_sym_x, + anon_sym_X, + [14789] = 1, + ACTIONS(1790), 3, sym__block_close, + sym_list_marker_star, sym__block_quote_continuation, - [18364] = 3, - ACTIONS(1939), 1, - sym__heading_continuation, - ACTIONS(1970), 1, + [14795] = 2, + ACTIONS(1868), 1, + sym__div_end, + ACTIONS(589), 2, sym__block_close, - STATE(728), 1, - aux_sym__heading_content_repeat1, - [18374] = 1, - ACTIONS(772), 3, - sym__list_item_continuation, - sym__list_item_end, sym__block_quote_continuation, - [18380] = 2, - ACTIONS(588), 1, - sym__list_item_content_spacer, - ACTIONS(1972), 1, - sym__eof_or_newline, - [18387] = 1, - ACTIONS(1909), 2, - sym__block_close, - sym_list_marker_lower_alpha_parens, - [18392] = 1, - ACTIONS(1888), 2, - sym__block_close, - sym_list_marker_lower_alpha_parens, - [18397] = 1, - ACTIONS(1909), 2, - sym__block_close, - sym_list_marker_upper_alpha_parens, - [18402] = 1, - ACTIONS(1888), 2, - sym__block_close, - sym_list_marker_upper_alpha_parens, - [18407] = 1, - ACTIONS(1909), 2, + [14803] = 2, + ACTIONS(1870), 1, + sym_table_cell_alignment, + ACTIONS(1872), 1, + sym__newline, + [14810] = 1, + ACTIONS(1790), 2, sym__block_close, sym_list_marker_lower_roman_parens, - [18412] = 1, - ACTIONS(1888), 2, + [14815] = 1, + ACTIONS(1768), 2, sym__block_close, sym_list_marker_lower_roman_parens, - [18417] = 1, - ACTIONS(1909), 2, + [14820] = 1, + ACTIONS(1790), 2, sym__block_close, sym_list_marker_upper_roman_parens, - [18422] = 1, - ACTIONS(1888), 2, + [14825] = 1, + ACTIONS(1768), 2, sym__block_close, sym_list_marker_upper_roman_parens, - [18427] = 1, - ACTIONS(1974), 2, + [14830] = 1, + ACTIONS(1874), 2, sym__block_close, - sym_list_marker_decimal_paren, - [18432] = 1, - ACTIONS(1976), 2, + sym_list_marker_decimal_parens, + [14835] = 1, + ACTIONS(1876), 2, + sym__block_close, + sym_list_marker_lower_alpha_parens, + [14840] = 1, + ACTIONS(1878), 2, + sym__block_close, + sym_list_marker_upper_alpha_period, + [14845] = 1, + ACTIONS(1880), 2, sym__eof_or_newline, sym__close_paragraph, - [18437] = 2, - ACTIONS(1978), 1, - sym__footnote_mark_begin, - ACTIONS(1981), 1, - sym__in_fallback, - [18444] = 1, - ACTIONS(1983), 2, - sym__block_close, - sym_list_marker_lower_alpha_paren, - [18449] = 1, - ACTIONS(1985), 2, + [14850] = 1, + ACTIONS(1882), 2, sym__block_close, sym_list_marker_upper_alpha_paren, - [18454] = 1, - ACTIONS(780), 2, + [14855] = 1, + ACTIONS(1884), 2, sym__block_close, - sym__block_quote_continuation, - [18459] = 1, - ACTIONS(1987), 2, + sym_list_marker_upper_alpha_parens, + [14860] = 1, + ACTIONS(1886), 2, sym__block_close, - sym_list_marker_definition, - [18464] = 1, - ACTIONS(1909), 2, + sym_list_marker_upper_alpha_parens, + [14865] = 1, + ACTIONS(1888), 2, + sym__block_close, + sym_list_marker_lower_roman_parens, + [14870] = 1, + ACTIONS(1768), 2, sym__block_close, sym_list_marker_decimal_period, - [18469] = 2, - ACTIONS(1989), 1, + [14875] = 2, + ACTIONS(575), 1, + sym__indented_content_spacer, + ACTIONS(1890), 1, + sym__code_block_end, + [14882] = 1, + ACTIONS(823), 2, + sym__block_close, + sym__block_quote_continuation, + [14887] = 1, + ACTIONS(1892), 2, + sym__block_close, + sym_list_marker_upper_roman_parens, + [14892] = 1, + ACTIONS(1785), 2, + sym__block_close, + sym__heading_continuation, + [14897] = 1, + ACTIONS(827), 2, + sym__block_close, + sym__block_quote_continuation, + [14902] = 1, + ACTIONS(1894), 2, + sym__block_close, + sym_list_marker_decimal_parens, + [14907] = 2, + ACTIONS(1145), 1, + aux_sym__line_token1, + STATE(594), 1, + sym__line, + [14914] = 2, + ACTIONS(1896), 1, anon_sym_PIPE, - STATE(858), 1, + STATE(805), 1, aux_sym_table_separator_repeat1, - [18476] = 2, - ACTIONS(1991), 1, + [14921] = 2, + ACTIONS(569), 1, + sym__indented_content_spacer, + ACTIONS(1898), 1, + sym__code_block_end, + [14928] = 2, + ACTIONS(1900), 1, anon_sym_PIPE, - STATE(859), 1, + STATE(808), 1, aux_sym_table_row_repeat1, - [18483] = 1, - ACTIONS(445), 2, - sym_list_marker_dash, - sym__block_quote_continuation, - [18488] = 1, - ACTIONS(1993), 2, - sym__eof_or_newline, - sym__close_paragraph, - [18493] = 1, - ACTIONS(1502), 2, + [14935] = 1, + ACTIONS(1902), 2, sym__block_close, - sym__block_quote_continuation, - [18498] = 1, - ACTIONS(1995), 2, + sym_list_marker_definition, + [14940] = 1, + ACTIONS(1904), 2, sym__block_close, - sym_list_marker_lower_roman_paren, - [18503] = 1, - ACTIONS(1981), 2, + sym_list_marker_lower_alpha_period, + [14945] = 1, + ACTIONS(430), 2, + sym_list_marker_plus, + sym__block_quote_continuation, + [14950] = 1, + ACTIONS(1906), 2, sym__footnote_mark_begin, sym__in_fallback, - [18508] = 2, - ACTIONS(31), 1, - sym__list_marker_task_begin, - STATE(54), 1, - sym_list_marker_task, - [18515] = 1, - ACTIONS(1909), 2, + [14955] = 1, + ACTIONS(1908), 2, sym__block_close, - sym_list_marker_lower_alpha_period, - [18520] = 1, - ACTIONS(1997), 2, + sym_list_marker_lower_roman_period, + [14960] = 1, + ACTIONS(1910), 2, sym__block_close, - sym_list_marker_decimal_parens, - [18525] = 2, - ACTIONS(1999), 1, + sym_list_marker_lower_roman_paren, + [14965] = 2, + ACTIONS(1912), 1, + anon_sym_PIPE, + STATE(787), 1, + aux_sym_table_separator_repeat1, + [14972] = 2, + ACTIONS(1914), 1, + anon_sym_PIPE, + STATE(814), 1, + aux_sym_table_row_repeat1, + [14979] = 1, + ACTIONS(1916), 2, + sym__eof_or_newline, + sym__close_paragraph, + [14984] = 2, + ACTIONS(1870), 1, sym_table_cell_alignment, - ACTIONS(2001), 1, + ACTIONS(1918), 1, sym__newline, - [18532] = 1, - ACTIONS(1872), 2, + [14991] = 1, + ACTIONS(1920), 2, sym__eof_or_newline, sym__newline_inline, - [18537] = 2, - ACTIONS(2003), 1, - sym__eof_or_newline, - STATE(157), 1, - sym__one_or_two_newlines, - [18544] = 1, - ACTIONS(2005), 2, - sym__block_close, - sym_list_marker_definition, - [18549] = 1, - ACTIONS(2007), 2, - sym__block_close, - sym_list_marker_upper_roman_paren, - [18554] = 1, - ACTIONS(1888), 2, + [14996] = 1, + ACTIONS(633), 2, sym__block_close, - sym_list_marker_decimal_period, - [18559] = 1, - ACTIONS(2009), 2, + sym__block_quote_continuation, + [15001] = 1, + ACTIONS(1760), 2, + sym_frontmatter_marker, + aux_sym__line_token1, + [15006] = 1, + ACTIONS(639), 2, sym__block_close, - sym_list_marker_decimal_parens, - [18564] = 2, - ACTIONS(1999), 1, + sym__block_quote_continuation, + [15011] = 2, + ACTIONS(1870), 1, sym_table_cell_alignment, - ACTIONS(2011), 1, + ACTIONS(1922), 1, sym__newline, - [18571] = 1, - ACTIONS(2013), 2, - sym__block_close, - sym_list_marker_lower_alpha_parens, - [18576] = 1, - ACTIONS(2015), 2, + [15018] = 1, + ACTIONS(1924), 2, sym__block_close, - sym_list_marker_upper_alpha_parens, - [18581] = 2, - ACTIONS(1999), 1, - sym_table_cell_alignment, - ACTIONS(2017), 1, - sym__newline, - [18588] = 1, - ACTIONS(1888), 2, + sym_list_marker_lower_roman_parens, + [15023] = 1, + ACTIONS(1435), 2, sym__block_close, - sym_list_marker_lower_alpha_period, - [18593] = 2, - ACTIONS(2019), 1, + sym__block_quote_continuation, + [15028] = 2, + ACTIONS(593), 1, + sym__indented_content_spacer, + ACTIONS(1926), 1, + sym__eof_or_newline, + [15035] = 2, + ACTIONS(1928), 1, sym__eof_or_newline, - STATE(1102), 1, + STATE(969), 1, sym__one_or_two_newlines, - [18600] = 1, - ACTIONS(2021), 2, + [15042] = 2, + ACTIONS(1930), 1, + sym__id, + STATE(1005), 1, + sym_reference_label, + [15049] = 1, + ACTIONS(1932), 2, sym__eof_or_newline, sym__close_paragraph, - [18605] = 1, - ACTIONS(2023), 2, + [15054] = 1, + ACTIONS(1934), 2, sym__block_close, - sym_list_marker_lower_roman_parens, - [18610] = 1, - ACTIONS(1913), 2, + sym_list_marker_upper_roman_period, + [15059] = 1, + ACTIONS(1936), 2, sym__block_close, - sym__heading_continuation, - [18615] = 2, - ACTIONS(1999), 1, - sym_table_cell_alignment, - ACTIONS(2025), 1, - sym__newline, - [18622] = 1, - ACTIONS(2027), 2, + sym_list_marker_upper_roman_paren, + [15064] = 1, + ACTIONS(1106), 2, sym__block_close, - sym_list_marker_upper_roman_parens, - [18627] = 2, - ACTIONS(1999), 1, - sym_table_cell_alignment, - ACTIONS(2029), 1, - sym__newline, - [18634] = 2, - ACTIONS(2031), 1, - anon_sym_PIPE, - STATE(835), 1, - aux_sym_table_separator_repeat1, - [18641] = 2, - ACTIONS(1236), 1, - aux_sym__line_token1, - STATE(708), 1, - sym__line, - [18648] = 1, - ACTIONS(2034), 2, + sym__heading_continuation, + [15069] = 1, + ACTIONS(641), 2, sym__block_close, - sym_list_marker_decimal_paren, - [18653] = 1, - ACTIONS(2036), 2, - sym__footnote_mark_begin, - sym__in_fallback, - [18658] = 2, - ACTIONS(1989), 1, - anon_sym_PIPE, - STATE(835), 1, - aux_sym_table_separator_repeat1, - [18665] = 1, - ACTIONS(445), 2, - sym_list_marker_star, sym__block_quote_continuation, - [18670] = 2, - ACTIONS(1999), 1, - sym_table_cell_alignment, - ACTIONS(2038), 1, - sym__newline, - [18677] = 2, - ACTIONS(2040), 1, - sym__id, - STATE(522), 1, - sym_class_name, - [18684] = 1, - ACTIONS(2042), 2, + [15074] = 1, + ACTIONS(657), 2, sym__block_close, - sym_list_marker_lower_alpha_period, - [18689] = 2, - ACTIONS(2044), 1, - anon_sym_PIPE, - STATE(844), 1, - aux_sym_table_row_repeat1, - [18696] = 2, - ACTIONS(1999), 1, - sym_table_cell_alignment, - ACTIONS(2047), 1, - sym__newline, - [18703] = 2, - ACTIONS(1999), 1, - sym_table_cell_alignment, - ACTIONS(2049), 1, - sym__newline, - [18710] = 2, - ACTIONS(2051), 1, - sym__eof_or_newline, - STATE(901), 1, - sym__one_or_two_newlines, - [18717] = 1, - ACTIONS(2053), 2, - sym__eof_or_newline, - sym__close_paragraph, - [18722] = 2, - ACTIONS(2055), 1, - anon_sym_PIPE, - STATE(839), 1, - aux_sym_table_separator_repeat1, - [18729] = 1, - ACTIONS(2057), 2, + sym__block_quote_continuation, + [15079] = 1, + ACTIONS(681), 2, sym__block_close, - sym_list_marker_lower_alpha_paren, - [18734] = 1, - ACTIONS(445), 2, - sym_list_marker_plus, sym__block_quote_continuation, - [18739] = 1, - ACTIONS(2059), 2, + [15084] = 1, + ACTIONS(649), 2, sym__block_close, - sym_list_marker_decimal_period, - [18744] = 1, - ACTIONS(2061), 2, + sym__block_quote_continuation, + [15089] = 1, + ACTIONS(713), 2, sym__block_close, - sym_list_marker_lower_alpha_parens, - [18749] = 1, - ACTIONS(2063), 2, + sym__block_quote_continuation, + [15094] = 1, + ACTIONS(729), 2, sym__block_close, - sym_list_marker_upper_alpha_period, - [18754] = 1, - ACTIONS(2065), 2, + sym__block_quote_continuation, + [15099] = 1, + ACTIONS(737), 2, sym__block_close, - sym_list_marker_upper_alpha_paren, - [18759] = 1, - ACTIONS(2067), 2, + sym__block_quote_continuation, + [15104] = 1, + ACTIONS(757), 2, sym__block_close, - sym_list_marker_upper_alpha_parens, - [18764] = 1, - ACTIONS(2069), 2, + sym__block_quote_continuation, + [15109] = 1, + ACTIONS(653), 2, sym__block_close, - sym_list_marker_lower_roman_period, - [18769] = 2, - ACTIONS(2071), 1, - anon_sym_PIPE, - STATE(835), 1, - aux_sym_table_separator_repeat1, - [18776] = 2, - ACTIONS(2073), 1, - anon_sym_PIPE, - STATE(844), 1, - aux_sym_table_row_repeat1, - [18783] = 1, - ACTIONS(2075), 2, - sym__eof_or_newline, - sym__close_paragraph, - [18788] = 1, - ACTIONS(2077), 2, - sym__footnote_mark_begin, - sym__in_fallback, - [18793] = 2, - ACTIONS(1999), 1, - sym_table_cell_alignment, - ACTIONS(2079), 1, - sym__newline, - [18800] = 2, - ACTIONS(1999), 1, - sym_table_cell_alignment, - ACTIONS(2081), 1, - sym__newline, - [18807] = 1, - ACTIONS(2083), 2, - sym__eof_or_newline, - sym__newline_inline, - [18812] = 2, - ACTIONS(1999), 1, - sym_table_cell_alignment, - ACTIONS(2085), 1, - sym__newline, - [18819] = 2, - ACTIONS(1991), 1, - anon_sym_PIPE, - STATE(844), 1, - aux_sym_table_row_repeat1, - [18826] = 2, - ACTIONS(2087), 1, - sym__eof_or_newline, - STATE(224), 1, - sym__one_or_two_newlines, - [18833] = 1, - ACTIONS(2089), 2, - sym__eof_or_newline, - sym__close_paragraph, - [18838] = 1, - ACTIONS(1926), 2, - sym_frontmatter_marker, - aux_sym__line_token1, - [18843] = 1, - ACTIONS(768), 2, + sym__block_quote_continuation, + [15114] = 1, + ACTIONS(761), 2, sym__block_close, sym__block_quote_continuation, - [18848] = 1, - ACTIONS(2091), 2, + [15119] = 1, + ACTIONS(665), 2, sym__block_close, - sym_list_marker_lower_roman_paren, - [18853] = 1, - ACTIONS(2093), 2, - sym__eof_or_newline, - sym__close_paragraph, - [18858] = 2, - ACTIONS(2095), 1, - sym__id, - STATE(1211), 1, - sym_reference_label, - [18865] = 1, - ACTIONS(2097), 2, + sym__block_quote_continuation, + [15124] = 1, + ACTIONS(767), 2, sym__block_close, - sym_list_marker_lower_roman_parens, - [18870] = 1, - ACTIONS(1909), 2, + sym__block_quote_continuation, + [15129] = 1, + ACTIONS(771), 2, sym__block_close, - sym_list_marker_upper_alpha_period, - [18875] = 1, - ACTIONS(2099), 2, + sym__block_quote_continuation, + [15134] = 1, + ACTIONS(669), 2, sym__block_close, - sym_list_marker_upper_roman_period, - [18880] = 2, - ACTIONS(2101), 1, - anon_sym_PIPE, - STATE(866), 1, - aux_sym_table_row_repeat1, - [18887] = 1, - ACTIONS(2103), 2, + sym__block_quote_continuation, + [15139] = 1, + ACTIONS(673), 2, sym__block_close, - sym_list_marker_upper_roman_paren, - [18892] = 1, - ACTIONS(2105), 2, + sym__block_quote_continuation, + [15144] = 1, + ACTIONS(1938), 2, + sym__footnote_mark_begin, + sym__in_fallback, + [15149] = 1, + ACTIONS(677), 2, sym__block_close, - sym_list_marker_decimal_period, - [18897] = 1, - ACTIONS(2107), 2, + sym__block_quote_continuation, + [15154] = 1, + ACTIONS(1940), 2, sym__block_close, sym_list_marker_upper_roman_parens, - [18902] = 2, - ACTIONS(1999), 1, - sym_table_cell_alignment, - ACTIONS(2109), 1, - sym__newline, - [18909] = 1, - ACTIONS(2111), 2, - sym__block_close, - sym_list_marker_definition, - [18914] = 2, - ACTIONS(622), 1, - sym__list_item_content_spacer, - ACTIONS(2113), 1, - sym__div_end, - [18921] = 2, - ACTIONS(596), 1, - sym__list_item_content_spacer, - ACTIONS(2115), 1, - sym__code_block_end, - [18928] = 2, - ACTIONS(1999), 1, - sym_table_cell_alignment, - ACTIONS(2117), 1, - sym__newline, - [18935] = 1, - ACTIONS(1888), 2, - sym__block_close, - sym_list_marker_upper_alpha_period, - [18940] = 2, - ACTIONS(1999), 1, - sym_table_cell_alignment, - ACTIONS(2119), 1, - sym__newline, - [18947] = 2, - ACTIONS(2121), 1, - sym__eof_or_newline, - STATE(701), 1, - sym__one_or_two_newlines, - [18954] = 1, - ACTIONS(2123), 2, - sym__eof_or_newline, - sym__close_paragraph, - [18959] = 2, - ACTIONS(592), 1, - sym__list_item_content_spacer, - ACTIONS(2125), 1, - sym__div_end, - [18966] = 2, - ACTIONS(614), 1, - sym__list_item_content_spacer, - ACTIONS(2127), 1, - sym__div_end, - [18973] = 1, - ACTIONS(2129), 2, + [15159] = 1, + ACTIONS(689), 2, sym__block_close, - sym_list_marker_lower_alpha_period, - [18978] = 1, - ACTIONS(2131), 2, - sym__eof_or_newline, - sym__close_paragraph, - [18983] = 2, - ACTIONS(1999), 1, - sym_table_cell_alignment, - ACTIONS(2133), 1, - sym__newline, - [18990] = 1, - ACTIONS(2135), 2, - sym__eof_or_newline, - sym__close_paragraph, - [18995] = 1, - ACTIONS(2137), 2, - sym__eof_or_newline, - sym__close_paragraph, - [19000] = 2, - ACTIONS(606), 1, - sym__list_item_content_spacer, - ACTIONS(2139), 1, - sym__code_block_end, - [19007] = 2, - ACTIONS(1999), 1, - sym_table_cell_alignment, - ACTIONS(2141), 1, - sym__newline, - [19014] = 2, - ACTIONS(644), 1, - sym__list_item_content_spacer, - ACTIONS(2143), 1, - sym__code_block_end, - [19021] = 2, - ACTIONS(650), 1, - sym__list_item_content_spacer, - ACTIONS(2145), 1, - sym__code_block_end, - [19028] = 1, - ACTIONS(776), 2, + sym__block_quote_continuation, + [15164] = 2, + ACTIONS(1870), 1, + sym_table_cell_alignment, + ACTIONS(1942), 1, + sym__newline, + [15171] = 1, + ACTIONS(1944), 2, + sym__block_close, + sym_list_marker_definition, + [15176] = 1, + ACTIONS(693), 2, sym__block_close, sym__block_quote_continuation, - [19033] = 1, - ACTIONS(445), 2, - sym__list_marker_task_begin, - sym__block_quote_continuation, - [19038] = 2, - ACTIONS(676), 1, - sym__list_item_content_spacer, - ACTIONS(2147), 1, - sym__div_end, - [19045] = 2, - ACTIONS(1999), 1, + [15181] = 2, + ACTIONS(1870), 1, sym_table_cell_alignment, - ACTIONS(2149), 1, + ACTIONS(1946), 1, sym__newline, - [19052] = 2, - ACTIONS(564), 1, - sym__list_item_content_spacer, - ACTIONS(2151), 1, - sym__code_block_end, - [19059] = 2, - ACTIONS(1999), 1, + [15188] = 1, + ACTIONS(1948), 2, + sym__eof_or_newline, + sym__close_paragraph, + [15193] = 1, + ACTIONS(1950), 2, + sym__eof_or_newline, + sym__close_paragraph, + [15198] = 2, + ACTIONS(1870), 1, sym_table_cell_alignment, - ACTIONS(2153), 1, + ACTIONS(1952), 1, sym__newline, - [19066] = 2, - ACTIONS(570), 1, - sym__list_item_content_spacer, - ACTIONS(2155), 1, - sym__code_block_end, - [19073] = 2, - ACTIONS(2157), 1, + [15205] = 2, + ACTIONS(1954), 1, sym__eof_or_newline, - STATE(271), 1, + STATE(781), 1, sym__one_or_two_newlines, - [19080] = 1, - ACTIONS(1909), 2, + [15212] = 1, + ACTIONS(697), 2, sym__block_close, - sym_list_marker_decimal_parens, - [19085] = 2, - ACTIONS(2159), 1, - sym__whitespace1, - ACTIONS(2161), 1, + sym__block_quote_continuation, + [15217] = 1, + ACTIONS(1956), 2, + sym__eof_or_newline, + sym__close_paragraph, + [15222] = 2, + ACTIONS(1870), 1, + sym_table_cell_alignment, + ACTIONS(1958), 1, sym__newline, - [19092] = 2, - ACTIONS(580), 1, - sym__list_item_content_spacer, - ACTIONS(2163), 1, + [15229] = 1, + ACTIONS(1960), 2, sym__eof_or_newline, - [19099] = 1, - ACTIONS(445), 2, - sym__block_quote_continuation, - anon_sym_PIPE, - [19104] = 1, - ACTIONS(712), 2, + sym__close_paragraph, + [15234] = 1, + ACTIONS(701), 2, sym__block_close, sym__block_quote_continuation, - [19109] = 1, - ACTIONS(708), 2, + [15239] = 2, + ACTIONS(1962), 1, + sym__id, + STATE(377), 1, + sym_class_name, + [15246] = 1, + ACTIONS(705), 2, sym__block_close, sym__block_quote_continuation, - [19114] = 2, - ACTIONS(2165), 1, - sym_language, - ACTIONS(2167), 1, - sym__newline, - [19121] = 1, - ACTIONS(2169), 2, - sym__footnote_mark_begin, - sym__in_fallback, - [19126] = 1, - ACTIONS(1888), 2, - sym__block_close, - sym_list_marker_decimal_parens, - [19131] = 1, - ACTIONS(720), 2, + [15251] = 1, + ACTIONS(709), 2, sym__block_close, sym__block_quote_continuation, - [19136] = 1, - ACTIONS(740), 2, + [15256] = 1, + ACTIONS(775), 2, sym__block_close, sym__block_quote_continuation, - [19141] = 1, - ACTIONS(772), 2, + [15261] = 1, + ACTIONS(717), 2, sym__block_close, sym__block_quote_continuation, - [19146] = 1, - ACTIONS(792), 2, + [15266] = 1, + ACTIONS(721), 2, sym__block_close, sym__block_quote_continuation, - [19151] = 1, - ACTIONS(808), 2, + [15271] = 1, + ACTIONS(725), 2, sym__block_close, sym__block_quote_continuation, - [19156] = 1, - ACTIONS(706), 2, + [15276] = 1, + ACTIONS(733), 2, sym__block_close, sym__block_quote_continuation, - [19161] = 1, - ACTIONS(1909), 2, + [15281] = 1, + ACTIONS(1790), 2, sym__block_close, - sym_list_marker_lower_roman_period, - [19166] = 2, - ACTIONS(2171), 1, + sym_list_marker_lower_alpha_period, + [15286] = 2, + ACTIONS(1870), 1, + sym_table_cell_alignment, + ACTIONS(1964), 1, + sym__newline, + [15293] = 2, + ACTIONS(1966), 1, anon_sym_PIPE, - STATE(930), 1, + STATE(787), 1, aux_sym_table_separator_repeat1, - [19173] = 2, - ACTIONS(2173), 1, - anon_sym_PIPE, - STATE(931), 1, - aux_sym_table_row_repeat1, - [19180] = 1, - ACTIONS(814), 2, + [15300] = 1, + ACTIONS(430), 2, + sym_list_marker_dash, + sym__block_quote_continuation, + [15305] = 1, + ACTIONS(779), 2, sym__block_close, sym__block_quote_continuation, - [19185] = 1, - ACTIONS(818), 2, + [15310] = 1, + ACTIONS(783), 2, sym__block_close, sym__block_quote_continuation, - [19190] = 1, - ACTIONS(822), 2, + [15315] = 1, + ACTIONS(787), 2, sym__block_close, sym__block_quote_continuation, - [19195] = 2, - ACTIONS(2175), 1, + [15320] = 1, + ACTIONS(791), 2, + sym__block_close, + sym__block_quote_continuation, + [15325] = 1, + ACTIONS(1969), 2, + sym__footnote_mark_begin, + sym__in_fallback, + [15330] = 2, + ACTIONS(1870), 1, + sym_table_cell_alignment, + ACTIONS(1971), 1, + sym__newline, + [15337] = 1, + ACTIONS(795), 2, + sym__block_close, + sym__block_quote_continuation, + [15342] = 1, + ACTIONS(1973), 2, + sym__block_close, + sym_list_marker_decimal_paren, + [15347] = 1, + ACTIONS(1768), 2, + sym__block_close, + sym_list_marker_lower_alpha_period, + [15352] = 2, + ACTIONS(1870), 1, + sym_table_cell_alignment, + ACTIONS(1975), 1, + sym__newline, + [15359] = 2, + ACTIONS(1906), 1, + sym__in_fallback, + ACTIONS(1977), 1, + sym__footnote_mark_begin, + [15366] = 2, + ACTIONS(1870), 1, + sym_table_cell_alignment, + ACTIONS(1980), 1, + sym__newline, + [15373] = 1, + ACTIONS(1982), 2, + sym__block_close, + sym_list_marker_lower_alpha_paren, + [15378] = 2, + ACTIONS(1984), 1, + sym__eof_or_newline, + STATE(200), 1, + sym__one_or_two_newlines, + [15385] = 1, + ACTIONS(1986), 2, + sym__eof_or_newline, + sym__close_paragraph, + [15390] = 2, + ACTIONS(1870), 1, + sym_table_cell_alignment, + ACTIONS(1988), 1, + sym__newline, + [15397] = 2, + ACTIONS(1990), 1, anon_sym_PIPE, - STATE(835), 1, + STATE(787), 1, aux_sym_table_separator_repeat1, - [19202] = 2, - ACTIONS(2177), 1, + [15404] = 2, + ACTIONS(31), 1, + sym__list_marker_task_begin, + STATE(30), 1, + sym_list_marker_task, + [15411] = 1, + ACTIONS(1992), 2, + sym__eof_or_newline, + sym__close_paragraph, + [15416] = 2, + ACTIONS(1994), 1, anon_sym_PIPE, - STATE(844), 1, + STATE(814), 1, aux_sym_table_row_repeat1, - [19209] = 2, - ACTIONS(2175), 1, - anon_sym_PIPE, - STATE(936), 1, - aux_sym_table_separator_repeat1, - [19216] = 2, - ACTIONS(2177), 1, + [15423] = 1, + ACTIONS(1996), 2, + sym__block_close, + sym_list_marker_decimal_period, + [15428] = 1, + ACTIONS(1998), 2, + sym__block_close, + sym_list_marker_lower_alpha_period, + [15433] = 1, + ACTIONS(2000), 2, + sym__block_close, + sym_list_marker_upper_alpha_period, + [15438] = 1, + ACTIONS(799), 2, + sym__block_close, + sym__block_quote_continuation, + [15443] = 1, + ACTIONS(2002), 2, + sym__block_close, + sym_list_marker_lower_alpha_parens, + [15448] = 2, + ACTIONS(2004), 1, anon_sym_PIPE, - STATE(937), 1, + STATE(814), 1, aux_sym_table_row_repeat1, - [19223] = 1, - ACTIONS(826), 2, + [15455] = 1, + ACTIONS(803), 2, sym__block_close, sym__block_quote_continuation, - [19228] = 1, - ACTIONS(830), 2, + [15460] = 1, + ACTIONS(807), 2, sym__block_close, sym__block_quote_continuation, - [19233] = 2, - ACTIONS(2179), 1, - anon_sym_PIPE, - STATE(835), 1, - aux_sym_table_separator_repeat1, - [19240] = 2, - ACTIONS(2181), 1, - anon_sym_PIPE, - STATE(844), 1, - aux_sym_table_row_repeat1, - [19247] = 1, - ACTIONS(834), 2, + [15465] = 2, + ACTIONS(563), 1, + sym__indented_content_spacer, + ACTIONS(2007), 1, + sym__div_end, + [15472] = 1, + ACTIONS(2009), 2, + sym__block_close, + sym_list_marker_upper_roman_period, + [15477] = 1, + ACTIONS(2011), 2, + sym__block_close, + sym_list_marker_decimal_paren, + [15482] = 1, + ACTIONS(2013), 2, + sym__block_close, + sym_list_marker_lower_alpha_paren, + [15487] = 1, + ACTIONS(2015), 2, + sym__block_close, + sym_list_marker_upper_alpha_paren, + [15492] = 1, + ACTIONS(2017), 2, + sym__block_close, + sym_list_marker_lower_roman_paren, + [15497] = 1, + ACTIONS(811), 2, sym__block_close, sym__block_quote_continuation, - [19252] = 1, - ACTIONS(838), 2, + [15502] = 1, + ACTIONS(815), 2, sym__block_close, sym__block_quote_continuation, - [19257] = 1, - ACTIONS(842), 2, + [15507] = 1, + ACTIONS(819), 2, sym__block_close, sym__block_quote_continuation, - [19262] = 1, - ACTIONS(1888), 2, + [15512] = 2, + ACTIONS(1870), 1, + sym_table_cell_alignment, + ACTIONS(2019), 1, + sym__newline, + [15519] = 1, + ACTIONS(430), 2, + sym_list_marker_star, + sym__block_quote_continuation, + [15524] = 2, + ACTIONS(2021), 1, + sym__eof_or_newline, + STATE(133), 1, + sym__one_or_two_newlines, + [15531] = 1, + ACTIONS(430), 2, + sym__block_quote_continuation, + anon_sym_PIPE, + [15536] = 1, + ACTIONS(503), 2, sym__block_close, - sym_list_marker_lower_roman_period, - [19267] = 2, - ACTIONS(2183), 1, + sym__block_quote_continuation, + [15541] = 1, + ACTIONS(1790), 2, + sym__block_close, + sym_list_marker_upper_alpha_period, + [15546] = 1, + ACTIONS(1768), 2, + sym__block_close, + sym_list_marker_upper_alpha_period, + [15551] = 2, + ACTIONS(1870), 1, + sym_table_cell_alignment, + ACTIONS(2023), 1, + sym__newline, + [15558] = 1, + ACTIONS(430), 2, + sym__list_marker_task_begin, + sym__block_quote_continuation, + [15563] = 2, + ACTIONS(1990), 1, anon_sym_PIPE, - STATE(947), 1, + STATE(727), 1, aux_sym_table_separator_repeat1, - [19274] = 2, - ACTIONS(2185), 1, + [15570] = 2, + ACTIONS(1994), 1, anon_sym_PIPE, - STATE(948), 1, + STATE(728), 1, aux_sym_table_row_repeat1, - [19281] = 1, - ACTIONS(846), 2, + [15577] = 2, + ACTIONS(1870), 1, + sym_table_cell_alignment, + ACTIONS(2025), 1, + sym__newline, + [15584] = 1, + ACTIONS(1790), 2, + sym__block_close, + sym_list_marker_lower_roman_period, + [15589] = 2, + ACTIONS(2027), 1, + sym__eof_or_newline, + STATE(666), 1, + sym__one_or_two_newlines, + [15596] = 1, + ACTIONS(1768), 2, + sym__block_close, + sym_list_marker_lower_roman_period, + [15601] = 1, + ACTIONS(2029), 2, + sym__block_close, + sym_list_marker_decimal_period, + [15606] = 1, + ACTIONS(751), 2, sym__block_close, sym__block_quote_continuation, - [19286] = 1, - ACTIONS(850), 2, + [15611] = 1, + ACTIONS(1790), 2, + sym__block_close, + sym_list_marker_upper_roman_period, + [15616] = 1, + ACTIONS(1768), 2, sym__block_close, + sym_list_marker_upper_roman_period, + [15621] = 1, + ACTIONS(430), 2, sym__block_quote_continuation, - [19291] = 1, - ACTIONS(854), 2, + aux_sym__line_token1, + [15626] = 1, + ACTIONS(1790), 2, + sym__block_close, + sym_list_marker_decimal_paren, + [15631] = 1, + ACTIONS(1768), 2, sym__block_close, + sym_list_marker_decimal_paren, + [15636] = 1, + ACTIONS(430), 2, + sym__list_item_continuation, sym__block_quote_continuation, - [19296] = 2, - ACTIONS(2187), 1, + [15641] = 1, + ACTIONS(2031), 2, + sym__eof_or_newline, + sym__close_paragraph, + [15646] = 1, + ACTIONS(1790), 2, + sym__block_close, + sym_list_marker_decimal_period, + [15651] = 1, + ACTIONS(1790), 2, + sym__block_close, + sym_list_marker_lower_alpha_paren, + [15656] = 1, + ACTIONS(1768), 2, + sym__block_close, + sym_list_marker_lower_alpha_paren, + [15661] = 1, + ACTIONS(755), 2, + sym__block_close, + sym__block_quote_continuation, + [15666] = 1, + ACTIONS(2033), 2, + sym__block_close, + sym_list_marker_upper_roman_paren, + [15671] = 1, + ACTIONS(1790), 2, + sym__block_close, + sym_list_marker_upper_alpha_paren, + [15676] = 1, + ACTIONS(1768), 2, + sym__block_close, + sym_list_marker_upper_alpha_paren, + [15681] = 1, + ACTIONS(430), 2, + sym__block_quote_continuation, + sym__footnote_continuation, + [15686] = 1, + ACTIONS(1774), 2, + sym__eof_or_newline, + sym__newline_inline, + [15691] = 2, + ACTIONS(2035), 1, anon_sym_PIPE, - STATE(835), 1, + STATE(861), 1, aux_sym_table_separator_repeat1, - [19303] = 2, - ACTIONS(2189), 1, + [15698] = 2, + ACTIONS(2037), 1, anon_sym_PIPE, - STATE(844), 1, + STATE(862), 1, aux_sym_table_row_repeat1, - [19310] = 2, - ACTIONS(2187), 1, + [15705] = 2, + ACTIONS(2039), 1, anon_sym_PIPE, - STATE(953), 1, + STATE(787), 1, aux_sym_table_separator_repeat1, - [19317] = 2, - ACTIONS(2189), 1, + [15712] = 2, + ACTIONS(2041), 1, anon_sym_PIPE, - STATE(954), 1, + STATE(814), 1, aux_sym_table_row_repeat1, - [19324] = 1, - ACTIONS(858), 2, - sym__block_close, - sym__block_quote_continuation, - [19329] = 1, - ACTIONS(862), 2, - sym__block_close, - sym__block_quote_continuation, - [19334] = 2, - ACTIONS(2191), 1, + [15719] = 2, + ACTIONS(2039), 1, anon_sym_PIPE, - STATE(835), 1, + STATE(865), 1, aux_sym_table_separator_repeat1, - [19341] = 2, - ACTIONS(2193), 1, + [15726] = 2, + ACTIONS(2041), 1, anon_sym_PIPE, - STATE(844), 1, + STATE(866), 1, aux_sym_table_row_repeat1, - [19348] = 1, - ACTIONS(866), 2, - sym__block_close, - sym__block_quote_continuation, - [19353] = 1, - ACTIONS(870), 2, - sym__block_close, - sym__block_quote_continuation, - [19358] = 1, - ACTIONS(2195), 2, - sym__block_close, - sym_list_marker_lower_roman_period, - [19363] = 2, - ACTIONS(2197), 1, + [15733] = 2, + ACTIONS(2043), 1, anon_sym_PIPE, - STATE(963), 1, + STATE(787), 1, aux_sym_table_separator_repeat1, - [19370] = 2, - ACTIONS(2199), 1, + [15740] = 2, + ACTIONS(2045), 1, anon_sym_PIPE, - STATE(964), 1, + STATE(814), 1, aux_sym_table_row_repeat1, - [19377] = 1, - ACTIONS(556), 2, - sym__block_close, - sym__block_quote_continuation, - [19382] = 1, - ACTIONS(1909), 2, - sym__block_close, - sym_list_marker_upper_roman_period, - [19387] = 1, - ACTIONS(1888), 2, - sym__block_close, - sym_list_marker_upper_roman_period, - [19392] = 2, - ACTIONS(2201), 1, + [15747] = 2, + ACTIONS(2047), 1, + sym__id, + STATE(968), 1, + sym_class_name, + [15754] = 2, + ACTIONS(2049), 1, anon_sym_PIPE, - STATE(835), 1, + STATE(870), 1, aux_sym_table_separator_repeat1, - [19399] = 2, - ACTIONS(2203), 1, + [15761] = 2, + ACTIONS(2051), 1, anon_sym_PIPE, - STATE(844), 1, + STATE(871), 1, aux_sym_table_row_repeat1, - [19406] = 2, - ACTIONS(2201), 1, + [15768] = 2, + ACTIONS(2053), 1, anon_sym_PIPE, - STATE(968), 1, + STATE(787), 1, aux_sym_table_separator_repeat1, - [19413] = 2, - ACTIONS(2203), 1, + [15775] = 2, + ACTIONS(2055), 1, anon_sym_PIPE, - STATE(969), 1, + STATE(814), 1, aux_sym_table_row_repeat1, - [19420] = 1, - ACTIONS(445), 2, - sym__block_quote_continuation, - aux_sym__line_token1, - [19425] = 2, - ACTIONS(2205), 1, + [15782] = 2, + ACTIONS(2053), 1, + anon_sym_PIPE, + STATE(874), 1, + aux_sym_table_separator_repeat1, + [15789] = 2, + ACTIONS(2055), 1, + anon_sym_PIPE, + STATE(875), 1, + aux_sym_table_row_repeat1, + [15796] = 2, + ACTIONS(2057), 1, anon_sym_PIPE, - STATE(835), 1, + STATE(787), 1, aux_sym_table_separator_repeat1, - [19432] = 2, - ACTIONS(2207), 1, + [15803] = 2, + ACTIONS(2059), 1, anon_sym_PIPE, - STATE(844), 1, + STATE(814), 1, aux_sym_table_row_repeat1, - [19439] = 1, - ACTIONS(874), 2, + [15810] = 1, + ACTIONS(1790), 2, sym__block_close, - sym__block_quote_continuation, - [19444] = 1, - ACTIONS(878), 2, + sym_list_marker_lower_roman_paren, + [15815] = 1, + ACTIONS(1768), 2, sym__block_close, - sym__block_quote_continuation, - [19449] = 1, - ACTIONS(1909), 2, + sym_list_marker_lower_roman_paren, + [15820] = 1, + ACTIONS(1790), 2, sym__block_close, - sym_list_marker_decimal_paren, - [19454] = 2, - ACTIONS(2209), 1, + sym_list_marker_upper_roman_paren, + [15825] = 2, + ACTIONS(2061), 1, anon_sym_PIPE, - STATE(978), 1, + STATE(884), 1, aux_sym_table_separator_repeat1, - [19461] = 2, - ACTIONS(2211), 1, + [15832] = 2, + ACTIONS(2063), 1, anon_sym_PIPE, - STATE(979), 1, + STATE(885), 1, aux_sym_table_row_repeat1, - [19468] = 1, - ACTIONS(1888), 2, - sym__block_close, - sym_list_marker_decimal_paren, - [19473] = 1, - ACTIONS(882), 2, + [15839] = 1, + ACTIONS(1768), 2, sym__block_close, - sym__block_quote_continuation, - [19478] = 1, - ACTIONS(898), 2, + sym_list_marker_upper_roman_paren, + [15844] = 1, + ACTIONS(1790), 2, sym__block_close, - sym__block_quote_continuation, - [19483] = 2, - ACTIONS(2213), 1, + sym_list_marker_decimal_parens, + [15849] = 2, + ACTIONS(607), 1, + sym__indented_content_spacer, + ACTIONS(2065), 1, + sym__eof_or_newline, + [15856] = 2, + ACTIONS(2067), 1, anon_sym_PIPE, - STATE(835), 1, + STATE(787), 1, aux_sym_table_separator_repeat1, - [19490] = 2, - ACTIONS(2215), 1, + [15863] = 2, + ACTIONS(2069), 1, anon_sym_PIPE, - STATE(844), 1, + STATE(814), 1, aux_sym_table_row_repeat1, - [19497] = 2, - ACTIONS(2213), 1, + [15870] = 2, + ACTIONS(2067), 1, anon_sym_PIPE, - STATE(983), 1, + STATE(889), 1, aux_sym_table_separator_repeat1, - [19504] = 2, - ACTIONS(2215), 1, + [15877] = 2, + ACTIONS(2069), 1, anon_sym_PIPE, - STATE(984), 1, + STATE(890), 1, aux_sym_table_row_repeat1, - [19511] = 1, - ACTIONS(445), 2, - sym__list_item_continuation, - sym__block_quote_continuation, - [19516] = 2, - ACTIONS(2217), 1, + [15884] = 1, + ACTIONS(1768), 2, + sym__block_close, + sym_list_marker_decimal_parens, + [15889] = 2, + ACTIONS(2071), 1, anon_sym_PIPE, - STATE(835), 1, + STATE(787), 1, aux_sym_table_separator_repeat1, - [19523] = 2, - ACTIONS(2219), 1, + [15896] = 2, + ACTIONS(2073), 1, anon_sym_PIPE, - STATE(844), 1, + STATE(814), 1, aux_sym_table_row_repeat1, - [19530] = 2, - ACTIONS(2221), 1, - sym__id, - STATE(1259), 1, - sym_class_name, - [19537] = 2, - ACTIONS(2223), 1, + [15903] = 2, + ACTIONS(2075), 1, + sym__whitespace1, + ACTIONS(2077), 1, + sym__newline, + [15910] = 1, + ACTIONS(1790), 2, + sym__block_close, + sym_list_marker_lower_alpha_parens, + [15915] = 1, + ACTIONS(1768), 2, + sym__block_close, + sym_list_marker_lower_alpha_parens, + [15920] = 2, + ACTIONS(2079), 1, anon_sym_PIPE, - STATE(991), 1, + STATE(897), 1, aux_sym_table_separator_repeat1, - [19544] = 2, - ACTIONS(2225), 1, + [15927] = 2, + ACTIONS(2081), 1, anon_sym_PIPE, - STATE(992), 1, + STATE(898), 1, aux_sym_table_row_repeat1, - [19551] = 1, - ACTIONS(886), 2, - sym__block_close, - sym__block_quote_continuation, - [19556] = 1, - ACTIONS(1909), 2, - sym__block_close, - sym_list_marker_lower_alpha_paren, - [19561] = 1, - ACTIONS(1888), 2, + [15934] = 1, + ACTIONS(2083), 2, sym__block_close, - sym_list_marker_lower_alpha_paren, - [19566] = 2, - ACTIONS(2227), 1, + sym_list_marker_definition, + [15939] = 2, + ACTIONS(2085), 1, anon_sym_PIPE, - STATE(835), 1, + STATE(787), 1, aux_sym_table_separator_repeat1, - [19573] = 2, - ACTIONS(2229), 1, + [15946] = 2, + ACTIONS(2087), 1, anon_sym_PIPE, - STATE(844), 1, + STATE(814), 1, aux_sym_table_row_repeat1, - [19580] = 2, - ACTIONS(2227), 1, + [15953] = 2, + ACTIONS(2085), 1, anon_sym_PIPE, - STATE(996), 1, + STATE(902), 1, aux_sym_table_separator_repeat1, - [19587] = 2, - ACTIONS(2229), 1, + [15960] = 2, + ACTIONS(2087), 1, anon_sym_PIPE, - STATE(997), 1, + STATE(903), 1, aux_sym_table_row_repeat1, - [19594] = 1, - ACTIONS(890), 2, - sym__block_close, - sym__block_quote_continuation, - [19599] = 2, - ACTIONS(2231), 1, + [15967] = 2, + ACTIONS(589), 1, + sym__indented_content_spacer, + ACTIONS(2089), 1, + sym__div_end, + [15974] = 2, + ACTIONS(2091), 1, anon_sym_PIPE, - STATE(835), 1, + STATE(787), 1, aux_sym_table_separator_repeat1, - [19606] = 2, - ACTIONS(2233), 1, + [15981] = 2, + ACTIONS(2093), 1, anon_sym_PIPE, - STATE(844), 1, + STATE(814), 1, aux_sym_table_row_repeat1, - [19613] = 1, - ACTIONS(2235), 2, - sym__block_close, - sym_list_marker_upper_roman_period, - [19618] = 1, - ACTIONS(1909), 2, - sym__block_close, - sym_list_marker_upper_alpha_paren, - [19623] = 1, - ACTIONS(1203), 2, - sym__block_close, - sym__heading_continuation, - [19628] = 1, - ACTIONS(1888), 2, - sym__block_close, - sym_list_marker_upper_alpha_paren, - [19633] = 1, - ACTIONS(716), 2, - sym__block_close, - sym__block_quote_continuation, - [19638] = 1, - ACTIONS(1909), 2, - sym__block_close, - sym_list_marker_lower_roman_paren, - [19643] = 1, - ACTIONS(728), 2, - sym__block_close, - sym__block_quote_continuation, - [19648] = 1, - ACTIONS(1888), 2, - sym__block_close, - sym_list_marker_lower_roman_paren, - [19653] = 1, - ACTIONS(1909), 2, - sym__block_close, - sym_list_marker_upper_roman_paren, - [19658] = 1, - ACTIONS(894), 2, - sym__block_close, - sym__block_quote_continuation, - [19663] = 2, + [15988] = 2, + ACTIONS(515), 1, + sym__indented_content_spacer, ACTIONS(2095), 1, - sym__id, - STATE(1248), 1, - sym_reference_label, - [19670] = 1, - ACTIONS(732), 2, + sym__code_block_end, + [15995] = 1, + ACTIONS(1790), 2, sym__block_close, - sym__block_quote_continuation, - [19675] = 2, - ACTIONS(2095), 1, + sym_list_marker_upper_alpha_parens, + [16000] = 2, + ACTIONS(2097), 1, + sym_language, + ACTIONS(2099), 1, + sym__newline, + [16007] = 1, + ACTIONS(2101), 2, + sym__footnote_mark_begin, + sym__in_fallback, + [16012] = 2, + ACTIONS(529), 1, + sym__indented_content_spacer, + ACTIONS(2103), 1, + sym__div_end, + [16019] = 2, + ACTIONS(535), 1, + sym__indented_content_spacer, + ACTIONS(2105), 1, + sym__div_end, + [16026] = 2, + ACTIONS(1930), 1, sym__id, - STATE(1255), 1, + STATE(1137), 1, sym_reference_label, - [19682] = 1, - ACTIONS(736), 2, - sym__block_close, - sym__block_quote_continuation, - [19687] = 2, - ACTIONS(2095), 1, + [16033] = 2, + ACTIONS(1930), 1, sym__id, - STATE(1262), 1, + STATE(1144), 1, sym_reference_label, - [19694] = 1, - ACTIONS(1888), 2, + [16040] = 1, + ACTIONS(1768), 2, sym__block_close, - sym_list_marker_upper_roman_paren, - [19699] = 2, - ACTIONS(2095), 1, + sym_list_marker_upper_alpha_parens, + [16045] = 2, + ACTIONS(1930), 1, sym__id, - STATE(1269), 1, + STATE(1151), 1, sym_reference_label, - [19706] = 2, - ACTIONS(2095), 1, + [16052] = 2, + ACTIONS(541), 1, + sym__indented_content_spacer, + ACTIONS(2107), 1, + sym__code_block_end, + [16059] = 2, + ACTIONS(1930), 1, sym__id, - STATE(1276), 1, + STATE(1158), 1, sym_reference_label, - [19713] = 1, - ACTIONS(748), 2, + [16066] = 2, + ACTIONS(509), 1, + sym__indented_content_spacer, + ACTIONS(2109), 1, + sym__code_block_end, + [16073] = 2, + ACTIONS(549), 1, + sym__indented_content_spacer, + ACTIONS(2111), 1, + sym__code_block_end, + [16080] = 1, + ACTIONS(2113), 2, sym__block_close, - sym__block_quote_continuation, - [19718] = 1, - ACTIONS(752), 2, + sym_list_marker_lower_roman_period, + [16085] = 1, + ACTIONS(2115), 1, + anon_sym_COLON, + [16089] = 1, + ACTIONS(2117), 1, + sym__indented_content_spacer, + [16093] = 1, + ACTIONS(2119), 1, + sym__newline, + [16097] = 1, + ACTIONS(2121), 1, sym__block_close, - sym__block_quote_continuation, - [19723] = 1, - ACTIONS(756), 2, + [16101] = 1, + ACTIONS(2123), 1, sym__block_close, - sym__block_quote_continuation, - [19728] = 1, - ACTIONS(760), 2, + [16105] = 1, + ACTIONS(2125), 1, + sym__newline, + [16109] = 1, + ACTIONS(2127), 1, + sym__newline, + [16113] = 1, + ACTIONS(2129), 1, + sym__newline, + [16117] = 1, + ACTIONS(2131), 1, + sym__newline, + [16121] = 1, + ACTIONS(2133), 1, + sym__newline, + [16125] = 1, + ACTIONS(2135), 1, + sym__newline, + [16129] = 1, + ACTIONS(2137), 1, + sym__newline, + [16133] = 1, + ACTIONS(2139), 1, + sym__newline, + [16137] = 1, + ACTIONS(2141), 1, + sym__newline, + [16141] = 1, + ACTIONS(2143), 1, + sym__newline, + [16145] = 1, + ACTIONS(2145), 1, + sym__newline, + [16149] = 1, + ACTIONS(2147), 1, sym__block_close, - sym__block_quote_continuation, - [19733] = 1, - ACTIONS(764), 2, + [16153] = 1, + ACTIONS(879), 1, + sym_list_marker_star, + [16157] = 1, + ACTIONS(2149), 1, + sym__newline, + [16161] = 1, + ACTIONS(2151), 1, sym__block_close, - sym__block_quote_continuation, - [19738] = 1, - ACTIONS(2237), 2, + [16165] = 1, + ACTIONS(2153), 1, + sym__newline, + [16169] = 1, + ACTIONS(2155), 1, + sym__newline, + [16173] = 1, + ACTIONS(2157), 1, + sym__newline, + [16177] = 1, + ACTIONS(2159), 1, + sym__whitespace1, + [16181] = 1, + ACTIONS(2161), 1, + anon_sym_PIPE, + [16185] = 1, + ACTIONS(2163), 1, + sym__newline, + [16189] = 1, + ACTIONS(2165), 1, + sym__newline, + [16193] = 1, + ACTIONS(2167), 1, + sym__newline, + [16197] = 1, + ACTIONS(2169), 1, + sym__newline, + [16201] = 1, + ACTIONS(2171), 1, + sym__newline, + [16205] = 1, + ACTIONS(2173), 1, + sym__newline, + [16209] = 1, + ACTIONS(697), 1, + sym__indented_content_spacer, + [16213] = 1, + ACTIONS(701), 1, + sym__indented_content_spacer, + [16217] = 1, + ACTIONS(2175), 1, sym__block_close, - sym_list_marker_upper_alpha_period, - [19743] = 1, - ACTIONS(736), 1, - sym__list_item_content_spacer, - [19747] = 1, + [16221] = 1, + ACTIONS(2177), 1, + sym__whitespace1, + [16225] = 1, + ACTIONS(705), 1, + sym__indented_content_spacer, + [16229] = 1, + ACTIONS(2179), 1, + sym__block_close, + [16233] = 1, + ACTIONS(2181), 1, + sym__indented_content_spacer, + [16237] = 1, + ACTIONS(2183), 1, + anon_sym_COLON, + [16241] = 1, + ACTIONS(709), 1, + sym__indented_content_spacer, + [16245] = 1, + ACTIONS(2185), 1, + sym__block_close, + [16249] = 1, + ACTIONS(2187), 1, + sym__newline, + [16253] = 1, + ACTIONS(669), 1, + sym__indented_content_spacer, + [16257] = 1, + ACTIONS(2189), 1, + sym__newline, + [16261] = 1, + ACTIONS(2191), 1, + sym__newline, + [16265] = 1, + ACTIONS(2193), 1, + sym__newline, + [16269] = 1, + ACTIONS(2195), 1, + sym__newline, + [16273] = 1, + ACTIONS(2197), 1, + sym__newline, + [16277] = 1, + ACTIONS(1307), 1, + sym__newline, + [16281] = 1, + ACTIONS(2199), 1, + sym__newline, + [16285] = 1, + ACTIONS(717), 1, + sym__indented_content_spacer, + [16289] = 1, + ACTIONS(2201), 1, + sym__block_close, + [16293] = 1, + ACTIONS(721), 1, + sym__indented_content_spacer, + [16297] = 1, + ACTIONS(2203), 1, + sym__newline, + [16301] = 1, + ACTIONS(725), 1, + sym__indented_content_spacer, + [16305] = 1, + ACTIONS(2205), 1, + sym_frontmatter_marker, + [16309] = 1, + ACTIONS(733), 1, + sym__indented_content_spacer, + [16313] = 1, + ACTIONS(2207), 1, + sym__newline, + [16317] = 1, + ACTIONS(2209), 1, + sym__whitespace1, + [16321] = 1, + ACTIONS(2211), 1, + sym__newline, + [16325] = 1, + ACTIONS(2213), 1, + sym__block_close, + [16329] = 1, + ACTIONS(2215), 1, + sym__block_close, + [16333] = 1, + ACTIONS(2217), 1, + sym__newline, + [16337] = 1, + ACTIONS(2219), 1, + sym__newline, + [16341] = 1, + ACTIONS(2221), 1, + sym__newline, + [16345] = 1, + ACTIONS(2223), 1, + sym__newline, + [16349] = 1, + ACTIONS(673), 1, + sym__indented_content_spacer, + [16353] = 1, + ACTIONS(2225), 1, + sym__newline, + [16357] = 1, + ACTIONS(2227), 1, + sym__newline, + [16361] = 1, + ACTIONS(2229), 1, + sym__newline, + [16365] = 1, + ACTIONS(2231), 1, + sym__newline, + [16369] = 1, + ACTIONS(2233), 1, + sym__newline, + [16373] = 1, + ACTIONS(2235), 1, + sym__newline, + [16377] = 1, + ACTIONS(677), 1, + sym__indented_content_spacer, + [16381] = 1, + ACTIONS(2237), 1, + sym__footnote_continuation, + [16385] = 1, ACTIONS(2239), 1, - sym__footnote_end, - [19751] = 1, + sym__block_close, + [16389] = 1, ACTIONS(2241), 1, - sym__newline, - [19755] = 1, + sym_table_cell_alignment, + [16393] = 1, ACTIONS(2243), 1, - sym__newline, - [19759] = 1, + sym__indented_content_spacer, + [16397] = 1, ACTIONS(2245), 1, - sym__newline, - [19763] = 1, + sym__block_close, + [16401] = 1, ACTIONS(2247), 1, - sym__footnote_mark_begin, - [19767] = 1, - ACTIONS(2249), 1, sym__newline, - [19771] = 1, + [16405] = 1, + ACTIONS(2249), 1, + anon_sym_RBRACK_COLON, + [16409] = 1, ACTIONS(2251), 1, - sym__newline, - [19775] = 1, + sym__block_close, + [16413] = 1, ACTIONS(2253), 1, - sym__newline, - [19779] = 1, + sym__indented_content_spacer, + [16417] = 1, ACTIONS(2255), 1, - sym__newline, - [19783] = 1, + ts_builtin_sym_end, + [16421] = 1, ACTIONS(2257), 1, - sym__newline, - [19787] = 1, + anon_sym_PIPE, + [16425] = 1, + ACTIONS(751), 1, + sym__indented_content_spacer, + [16429] = 1, ACTIONS(2259), 1, - sym__newline, - [19791] = 1, + anon_sym_RBRACK_COLON, + [16433] = 1, + ACTIONS(755), 1, + sym__indented_content_spacer, + [16437] = 1, ACTIONS(2261), 1, - sym__block_close, - [19795] = 1, + sym__newline, + [16441] = 1, ACTIONS(2263), 1, - sym__list_item_continuation, - [19799] = 1, - ACTIONS(886), 1, - sym__list_item_content_spacer, - [19803] = 1, - ACTIONS(948), 1, - sym_list_marker_star, - [19807] = 1, + sym__footnote_mark_begin, + [16445] = 1, ACTIONS(2265), 1, - sym__newline, - [19811] = 1, - ACTIONS(1999), 1, - sym_table_cell_alignment, - [19815] = 1, - ACTIONS(798), 1, - sym__list_item_content_spacer, - [19819] = 1, + sym_link_destination, + [16449] = 1, ACTIONS(2267), 1, sym__newline, - [19823] = 1, + [16453] = 1, ACTIONS(2269), 1, - anon_sym_DQUOTE, - [19827] = 1, + sym__block_close, + [16457] = 1, + ACTIONS(1870), 1, + sym_table_cell_alignment, + [16461] = 1, ACTIONS(2271), 1, - sym__footnote_end, - [19831] = 1, + sym__block_close, + [16465] = 1, ACTIONS(2273), 1, - sym__newline, - [19835] = 1, - ACTIONS(2275), 1, sym__whitespace, - [19839] = 1, + [16469] = 1, + ACTIONS(657), 1, + sym__indented_content_spacer, + [16473] = 1, + ACTIONS(2275), 1, + sym__newline, + [16477] = 1, + ACTIONS(681), 1, + sym__indented_content_spacer, + [16481] = 1, + ACTIONS(713), 1, + sym__indented_content_spacer, + [16485] = 1, + ACTIONS(729), 1, + sym__indented_content_spacer, + [16489] = 1, + ACTIONS(737), 1, + sym__indented_content_spacer, + [16493] = 1, + ACTIONS(757), 1, + sym__indented_content_spacer, + [16497] = 1, + ACTIONS(761), 1, + sym__indented_content_spacer, + [16501] = 1, + ACTIONS(767), 1, + sym__indented_content_spacer, + [16505] = 1, + ACTIONS(771), 1, + sym__indented_content_spacer, + [16509] = 1, + ACTIONS(775), 1, + sym__indented_content_spacer, + [16513] = 1, ACTIONS(2277), 1, sym__newline, - [19843] = 1, + [16517] = 1, ACTIONS(2279), 1, - sym__newline, - [19847] = 1, + anon_sym_DQUOTE, + [16521] = 1, ACTIONS(2281), 1, - sym_language, - [19851] = 1, + sym__indented_content_spacer, + [16525] = 1, ACTIONS(2283), 1, - anon_sym_PIPE, - [19855] = 1, + sym__newline, + [16529] = 1, ACTIONS(2285), 1, - sym__block_close, - [19859] = 1, - ACTIONS(720), 1, - sym__list_item_content_spacer, - [19863] = 1, + anon_sym_RBRACK, + [16533] = 1, + ACTIONS(779), 1, + sym__indented_content_spacer, + [16537] = 1, ACTIONS(2287), 1, - sym__newline, - [19867] = 1, - ACTIONS(946), 1, - sym_list_marker_dash, - [19871] = 1, + sym_table_cell_alignment, + [16541] = 1, + ACTIONS(783), 1, + sym__indented_content_spacer, + [16545] = 1, + ACTIONS(787), 1, + sym__indented_content_spacer, + [16549] = 1, ACTIONS(2289), 1, sym__newline, - [19875] = 1, + [16553] = 1, ACTIONS(2291), 1, sym__newline, - [19879] = 1, + [16557] = 1, ACTIONS(2293), 1, - sym__block_close, - [19883] = 1, - ACTIONS(2295), 1, sym__newline, - [19887] = 1, - ACTIONS(890), 1, - sym__list_item_content_spacer, - [19891] = 1, + [16561] = 1, + ACTIONS(2295), 1, + sym__block_close, + [16565] = 1, ACTIONS(2297), 1, - sym__newline, - [19895] = 1, - ACTIONS(2299), 1, sym__block_close, - [19899] = 1, + [16569] = 1, + ACTIONS(2299), 1, + anon_sym_RBRACK, + [16573] = 1, + ACTIONS(791), 1, + sym__indented_content_spacer, + [16577] = 1, ACTIONS(2301), 1, - sym__eof_or_newline, - [19903] = 1, - ACTIONS(740), 1, - sym__list_item_content_spacer, - [19907] = 1, + sym__whitespace1, + [16581] = 1, ACTIONS(2303), 1, sym__newline, - [19911] = 1, - ACTIONS(772), 1, - sym__list_item_content_spacer, - [19915] = 1, + [16585] = 1, ACTIONS(2305), 1, sym__newline, - [19919] = 1, + [16589] = 1, ACTIONS(2307), 1, - sym__newline, - [19923] = 1, + sym__whitespace, + [16593] = 1, ACTIONS(2309), 1, - sym__block_close, - [19927] = 1, - ACTIONS(792), 1, - sym__list_item_content_spacer, - [19931] = 1, - ACTIONS(716), 1, - sym__list_item_content_spacer, - [19935] = 1, + sym__indented_content_spacer, + [16597] = 1, + ACTIONS(795), 1, + sym__indented_content_spacer, + [16601] = 1, + ACTIONS(799), 1, + sym__indented_content_spacer, + [16605] = 1, + ACTIONS(803), 1, + sym__indented_content_spacer, + [16609] = 1, ACTIONS(2311), 1, sym__newline, - [19939] = 1, - ACTIONS(808), 1, - sym__list_item_content_spacer, - [19943] = 1, - ACTIONS(728), 1, - sym__list_item_content_spacer, - [19947] = 1, + [16613] = 1, ACTIONS(2313), 1, - sym__newline, - [19951] = 1, + sym__eof_or_newline, + [16617] = 1, ACTIONS(2315), 1, - sym__newline, - [19955] = 1, + sym__indented_content_spacer, + [16621] = 1, ACTIONS(2317), 1, sym__newline, - [19959] = 1, + [16625] = 1, ACTIONS(2319), 1, - sym__block_close, - [19963] = 1, + sym__newline, + [16629] = 1, + ACTIONS(807), 1, + sym__indented_content_spacer, + [16633] = 1, ACTIONS(2321), 1, - sym__block_close, - [19967] = 1, + sym_table_cell_alignment, + [16637] = 1, + ACTIONS(811), 1, + sym__indented_content_spacer, + [16641] = 1, + ACTIONS(815), 1, + sym__indented_content_spacer, + [16645] = 1, ACTIONS(2323), 1, - sym__footnote_end, - [19971] = 1, + sym__newline, + [16649] = 1, ACTIONS(2325), 1, sym__newline, - [19975] = 1, + [16653] = 1, ACTIONS(2327), 1, sym__newline, - [19979] = 1, + [16657] = 1, ACTIONS(2329), 1, - sym__block_close, - [19983] = 1, + sym__newline, + [16661] = 1, ACTIONS(2331), 1, - sym__block_close, - [19987] = 1, + sym__newline, + [16665] = 1, ACTIONS(2333), 1, sym__newline, - [19991] = 1, + [16669] = 1, + ACTIONS(819), 1, + sym__indented_content_spacer, + [16673] = 1, ACTIONS(2335), 1, - sym__newline, - [19995] = 1, + sym__whitespace1, + [16677] = 1, ACTIONS(2337), 1, sym__newline, - [19999] = 1, + [16681] = 1, + ACTIONS(665), 1, + sym__indented_content_spacer, + [16685] = 1, ACTIONS(2339), 1, - sym__newline, - [20003] = 1, + sym__whitespace, + [16689] = 1, ACTIONS(2341), 1, - sym__newline, - [20007] = 1, + sym__indented_content_spacer, + [16693] = 1, + ACTIONS(653), 1, + sym__indented_content_spacer, + [16697] = 1, + ACTIONS(503), 1, + sym__indented_content_spacer, + [16701] = 1, ACTIONS(2343), 1, - sym__newline, - [20011] = 1, + sym__list_item_continuation, + [16705] = 1, ACTIONS(2345), 1, - sym__footnote_end, - [20015] = 1, - ACTIONS(894), 1, - sym__list_item_content_spacer, - [20019] = 1, - ACTIONS(732), 1, - sym__list_item_content_spacer, - [20023] = 1, - ACTIONS(2347), 1, sym__newline, - [20027] = 1, + [16709] = 1, + ACTIONS(2347), 1, + aux_sym_value_token1, + [16713] = 1, ACTIONS(2349), 1, - sym__newline, - [20031] = 1, + sym__indented_content_spacer, + [16717] = 1, ACTIONS(2351), 1, - sym__newline, - [20035] = 1, - ACTIONS(748), 1, - sym__list_item_content_spacer, - [20039] = 1, - ACTIONS(752), 1, - sym__list_item_content_spacer, - [20043] = 1, - ACTIONS(756), 1, - sym__list_item_content_spacer, - [20047] = 1, - ACTIONS(760), 1, - sym__list_item_content_spacer, - [20051] = 1, - ACTIONS(764), 1, - sym__list_item_content_spacer, - [20055] = 1, - ACTIONS(768), 1, - sym__list_item_content_spacer, - [20059] = 1, + anon_sym_EQ, + [16721] = 1, ACTIONS(2353), 1, - sym__list_item_continuation, - [20063] = 1, - ACTIONS(776), 1, - sym__list_item_content_spacer, - [20067] = 1, - ACTIONS(780), 1, - sym__list_item_content_spacer, - [20071] = 1, - ACTIONS(706), 1, - sym__list_item_content_spacer, - [20075] = 1, + sym__indented_content_spacer, + [16725] = 1, ACTIONS(2355), 1, - sym__newline, - [20079] = 1, + sym__whitespace1, + [16729] = 1, ACTIONS(2357), 1, - sym__newline, - [20083] = 1, + sym_table_cell_alignment, + [16733] = 1, ACTIONS(2359), 1, sym__newline, - [20087] = 1, + [16737] = 1, ACTIONS(2361), 1, - sym__newline, - [20091] = 1, + sym__block_close, + [16741] = 1, ACTIONS(2363), 1, sym__newline, - [20095] = 1, + [16745] = 1, ACTIONS(2365), 1, - anon_sym_PIPE, - [20099] = 1, + sym__newline, + [16749] = 1, ACTIONS(2367), 1, - sym__block_close, - [20103] = 1, - ACTIONS(2369), 1, sym__eof_or_newline, - [20107] = 1, + [16753] = 1, + ACTIONS(2369), 1, + sym__whitespace1, + [16757] = 1, ACTIONS(2371), 1, - sym__newline, - [20111] = 1, + sym__block_close, + [16761] = 1, ACTIONS(2373), 1, sym__newline, - [20115] = 1, + [16765] = 1, ACTIONS(2375), 1, - sym__block_close, - [20119] = 1, - ACTIONS(814), 1, - sym__list_item_content_spacer, - [20123] = 1, - ACTIONS(818), 1, - sym__list_item_content_spacer, - [20127] = 1, - ACTIONS(822), 1, - sym__list_item_content_spacer, - [20131] = 1, + anon_sym_PIPE, + [16769] = 1, ACTIONS(2377), 1, - sym__newline, - [20135] = 1, - ACTIONS(826), 1, - sym__list_item_content_spacer, - [20139] = 1, + sym__whitespace1, + [16773] = 1, ACTIONS(2379), 1, - sym__list_item_content_spacer, - [20143] = 1, + sym_language, + [16777] = 1, ACTIONS(2381), 1, - sym__block_close, - [20147] = 1, + sym__list_item_continuation, + [16781] = 1, ACTIONS(2383), 1, - sym__footnote_end, - [20151] = 1, + sym__whitespace, + [16785] = 1, ACTIONS(2385), 1, - sym__newline, - [20155] = 1, + sym__indented_content_spacer, + [16789] = 1, + ACTIONS(743), 1, + sym__indented_content_spacer, + [16793] = 1, ACTIONS(2387), 1, - sym_table_cell_alignment, - [20159] = 1, + anon_sym_EQ, + [16797] = 1, ACTIONS(2389), 1, - aux_sym_value_token1, - [20163] = 1, - ACTIONS(2391), 1, sym__newline, - [20167] = 1, + [16801] = 1, + ACTIONS(689), 1, + sym__indented_content_spacer, + [16805] = 1, + ACTIONS(2391), 1, + sym__indented_content_spacer, + [16809] = 1, ACTIONS(2393), 1, sym__newline, - [20171] = 1, + [16813] = 1, ACTIONS(2395), 1, - sym__newline, - [20175] = 1, + anon_sym_RBRACK, + [16817] = 1, + ACTIONS(823), 1, + sym__indented_content_spacer, + [16821] = 1, ACTIONS(2397), 1, - anon_sym_EQ, - [20179] = 1, + sym_table_cell_alignment, + [16825] = 1, + ACTIONS(827), 1, + sym__indented_content_spacer, + [16829] = 1, ACTIONS(2399), 1, - anon_sym_EQ, - [20183] = 1, + sym_table_cell_alignment, + [16833] = 1, ACTIONS(2401), 1, - sym__block_close, - [20187] = 1, + sym__newline, + [16837] = 1, ACTIONS(2403), 1, sym__newline, - [20191] = 1, + [16841] = 1, ACTIONS(2405), 1, - sym__newline, - [20195] = 1, + anon_sym_RBRACK, + [16845] = 1, ACTIONS(2407), 1, sym__newline, - [20199] = 1, + [16849] = 1, ACTIONS(2409), 1, - sym__newline, - [20203] = 1, + sym__block_close, + [16853] = 1, ACTIONS(2411), 1, - sym__newline, - [20207] = 1, + sym__block_close, + [16857] = 1, ACTIONS(2413), 1, - sym__whitespace, - [20211] = 1, + sym__block_close, + [16861] = 1, ACTIONS(2415), 1, - sym__newline, - [20215] = 1, + sym__whitespace1, + [16865] = 1, ACTIONS(2417), 1, sym__newline, - [20219] = 1, + [16869] = 1, + ACTIONS(877), 1, + sym_list_marker_dash, + [16873] = 1, ACTIONS(2419), 1, - sym__newline, - [20223] = 1, + sym__whitespace, + [16877] = 1, ACTIONS(2421), 1, - sym__newline, - [20227] = 1, + sym__indented_content_spacer, + [16881] = 1, ACTIONS(2423), 1, - sym__whitespace, - [20231] = 1, + sym__indented_content_spacer, + [16885] = 1, ACTIONS(2425), 1, - sym__list_item_content_spacer, - [20235] = 1, + sym__indented_content_spacer, + [16889] = 1, ACTIONS(2427), 1, - sym__block_close, - [20239] = 1, - ACTIONS(830), 1, - sym__list_item_content_spacer, - [20243] = 1, + sym__indented_content_spacer, + [16893] = 1, ACTIONS(2429), 1, - sym__block_close, - [20247] = 1, + sym__indented_content_spacer, + [16897] = 1, ACTIONS(2431), 1, - sym_table_cell_alignment, - [20251] = 1, + sym__indented_content_spacer, + [16901] = 1, ACTIONS(2433), 1, - sym__newline, - [20255] = 1, - ACTIONS(834), 1, - sym__list_item_content_spacer, - [20259] = 1, + sym__indented_content_spacer, + [16905] = 1, ACTIONS(2435), 1, - sym__newline, - [20263] = 1, + sym__indented_content_spacer, + [16909] = 1, ACTIONS(2437), 1, - sym__newline, - [20267] = 1, - ACTIONS(838), 1, - sym__list_item_content_spacer, - [20271] = 1, - ACTIONS(842), 1, - sym__list_item_content_spacer, - [20275] = 1, + sym__indented_content_spacer, + [16913] = 1, ACTIONS(2439), 1, - anon_sym_PIPE, - [20279] = 1, - ACTIONS(846), 1, - sym__list_item_content_spacer, - [20283] = 1, + sym__indented_content_spacer, + [16917] = 1, ACTIONS(2441), 1, - sym__newline, - [20287] = 1, - ACTIONS(850), 1, - sym__list_item_content_spacer, - [20291] = 1, - ACTIONS(854), 1, - sym__list_item_content_spacer, - [20295] = 1, - ACTIONS(858), 1, - sym__list_item_content_spacer, - [20299] = 1, + sym__indented_content_spacer, + [16921] = 1, ACTIONS(2443), 1, - sym__whitespace, - [20303] = 1, + sym__indented_content_spacer, + [16925] = 1, ACTIONS(2445), 1, - sym__block_close, - [20307] = 1, - ACTIONS(862), 1, - sym__list_item_content_spacer, - [20311] = 1, - ACTIONS(866), 1, - sym__list_item_content_spacer, - [20315] = 1, + sym__indented_content_spacer, + [16929] = 1, ACTIONS(2447), 1, - sym__newline, - [20319] = 1, + sym__indented_content_spacer, + [16933] = 1, ACTIONS(2449), 1, - sym__list_item_content_spacer, - [20323] = 1, + sym__indented_content_spacer, + [16937] = 1, ACTIONS(2451), 1, - sym__list_item_content_spacer, - [20327] = 1, - ACTIONS(870), 1, - sym__list_item_content_spacer, - [20331] = 1, - ACTIONS(712), 1, - sym__list_item_content_spacer, - [20335] = 1, - ACTIONS(2453), 1, - sym__newline, - [20339] = 1, - ACTIONS(2455), 1, - sym_table_cell_alignment, - [20343] = 1, - ACTIONS(2457), 1, - sym__newline, - [20347] = 1, - ACTIONS(556), 1, - sym__list_item_content_spacer, - [20351] = 1, - ACTIONS(2459), 1, - sym__newline, - [20355] = 1, - ACTIONS(2461), 1, - sym__newline, - [20359] = 1, - ACTIONS(2463), 1, - sym__newline, - [20363] = 1, - ACTIONS(2465), 1, - sym__block_close, - [20367] = 1, - ACTIONS(2467), 1, - sym__block_close, - [20371] = 1, - ACTIONS(2469), 1, - sym__footnote_end, - [20375] = 1, - ACTIONS(2471), 1, - sym__newline, - [20379] = 1, - ACTIONS(2473), 1, - sym_table_cell_alignment, - [20383] = 1, - ACTIONS(2475), 1, - sym__newline, - [20387] = 1, - ACTIONS(708), 1, - sym__list_item_content_spacer, - [20391] = 1, - ACTIONS(2477), 1, - sym__whitespace, - [20395] = 1, - ACTIONS(2479), 1, - sym__whitespace, - [20399] = 1, - ACTIONS(2481), 1, - sym__block_close, - [20403] = 1, - ACTIONS(2483), 1, - sym__newline, - [20407] = 1, - ACTIONS(2485), 1, - sym__newline, - [20411] = 1, - ACTIONS(2487), 1, - sym__newline, - [20415] = 1, - ACTIONS(2489), 1, - sym__list_item_content_spacer, - [20419] = 1, - ACTIONS(2491), 1, - sym__newline, - [20423] = 1, - ACTIONS(2493), 1, - sym__newline, - [20427] = 1, - ACTIONS(2495), 1, - sym__newline, - [20431] = 1, - ACTIONS(2497), 1, - sym_table_cell_alignment, - [20435] = 1, - ACTIONS(2499), 1, - sym__newline, - [20439] = 1, - ACTIONS(2501), 1, - sym__newline, - [20443] = 1, - ACTIONS(2503), 1, - sym__newline, - [20447] = 1, - ACTIONS(2505), 1, - sym__newline, - [20451] = 1, - ACTIONS(2507), 1, - sym_frontmatter_marker, - [20455] = 1, - ACTIONS(2509), 1, - sym_table_cell_alignment, - [20459] = 1, - ACTIONS(2511), 1, - sym__whitespace1, - [20463] = 1, - ACTIONS(2513), 1, - anon_sym_COLON, - [20467] = 1, - ACTIONS(2515), 1, - sym__newline, - [20471] = 1, - ACTIONS(2517), 1, - anon_sym_RBRACK_COLON, - [20475] = 1, - ACTIONS(2519), 1, - sym__whitespace1, - [20479] = 1, - ACTIONS(2521), 1, - sym_frontmatter_marker, - [20483] = 1, - ACTIONS(2523), 1, - sym__whitespace, - [20487] = 1, - ACTIONS(2525), 1, - sym__newline, - [20491] = 1, - ACTIONS(2527), 1, - sym__newline, - [20495] = 1, - ACTIONS(2529), 1, - sym__newline, - [20499] = 1, - ACTIONS(2531), 1, - anon_sym_RBRACK_COLON, - [20503] = 1, - ACTIONS(2533), 1, - sym__list_item_content_spacer, - [20507] = 1, - ACTIONS(2535), 1, - sym__newline, - [20511] = 1, - ACTIONS(2537), 1, - sym__whitespace1, - [20515] = 1, - ACTIONS(2539), 1, - sym__whitespace1, - [20519] = 1, - ACTIONS(2541), 1, - sym_table_cell_alignment, - [20523] = 1, - ACTIONS(2543), 1, - anon_sym_PIPE, - [20527] = 1, - ACTIONS(2545), 1, - sym__list_item_content_spacer, - [20531] = 1, - ACTIONS(2547), 1, - sym__newline, - [20535] = 1, - ACTIONS(2549), 1, - sym__newline, - [20539] = 1, - ACTIONS(2551), 1, - sym__block_close, - [20543] = 1, - ACTIONS(2553), 1, - sym__newline, - [20547] = 1, - ACTIONS(2555), 1, - sym__block_close, - [20551] = 1, - ACTIONS(2557), 1, - sym__newline, - [20555] = 1, - ACTIONS(2559), 1, - sym__list_item_content_spacer, - [20559] = 1, - ACTIONS(950), 1, - sym_list_marker_plus, - [20563] = 1, - ACTIONS(2561), 1, - anon_sym_RBRACK, - [20567] = 1, - ACTIONS(2563), 1, - sym__block_close, - [20571] = 1, - ACTIONS(2565), 1, - sym__whitespace, - [20575] = 1, - ACTIONS(2567), 1, - sym__list_item_content_spacer, - [20579] = 1, - ACTIONS(2569), 1, - sym__list_item_content_spacer, - [20583] = 1, - ACTIONS(2571), 1, - sym__list_item_content_spacer, - [20587] = 1, - ACTIONS(2573), 1, - sym__list_item_content_spacer, - [20591] = 1, - ACTIONS(2575), 1, - sym__list_item_content_spacer, - [20595] = 1, - ACTIONS(2577), 1, - sym__list_item_content_spacer, - [20599] = 1, - ACTIONS(2579), 1, - sym__list_item_content_spacer, - [20603] = 1, - ACTIONS(2581), 1, - sym__list_item_content_spacer, - [20607] = 1, - ACTIONS(2583), 1, - sym__list_item_content_spacer, - [20611] = 1, - ACTIONS(2585), 1, - sym__list_item_content_spacer, - [20615] = 1, - ACTIONS(2587), 1, - sym__list_item_content_spacer, - [20619] = 1, - ACTIONS(2589), 1, - sym__list_item_content_spacer, - [20623] = 1, - ACTIONS(2591), 1, - sym__list_item_content_spacer, - [20627] = 1, - ACTIONS(2593), 1, - sym__whitespace, - [20631] = 1, - ACTIONS(2595), 1, - sym__newline, - [20635] = 1, - ACTIONS(2597), 1, - anon_sym_RBRACK, - [20639] = 1, - ACTIONS(2599), 1, - anon_sym_PIPE, - [20643] = 1, - ACTIONS(2601), 1, - sym_table_cell_alignment, - [20647] = 1, - ACTIONS(2603), 1, - anon_sym_RBRACK_COLON, - [20651] = 1, - ACTIONS(2605), 1, - sym_link_destination, - [20655] = 1, - ACTIONS(2607), 1, sym__whitespace, - [20659] = 1, - ACTIONS(2609), 1, - sym__block_close, - [20663] = 1, - ACTIONS(2611), 1, - sym__block_close, - [20667] = 1, - ACTIONS(2613), 1, + [16941] = 1, + ACTIONS(633), 1, + sym__indented_content_spacer, + [16945] = 1, + ACTIONS(639), 1, + sym__indented_content_spacer, + [16949] = 1, + ACTIONS(2453), 1, anon_sym_PIPE, - [20671] = 1, - ACTIONS(2615), 1, + [16953] = 1, + ACTIONS(2455), 1, sym_table_cell_alignment, - [20675] = 1, - ACTIONS(2617), 1, + [16957] = 1, + ACTIONS(2457), 1, anon_sym_RBRACK_COLON, - [20679] = 1, - ACTIONS(2619), 1, + [16961] = 1, + ACTIONS(2459), 1, sym_link_destination, - [20683] = 1, - ACTIONS(2621), 1, + [16965] = 1, + ACTIONS(2461), 1, sym__whitespace, - [20687] = 1, - ACTIONS(2623), 1, + [16969] = 1, + ACTIONS(2463), 1, sym__newline, - [20691] = 1, - ACTIONS(2625), 1, + [16973] = 1, + ACTIONS(2465), 1, sym__newline, - [20695] = 1, - ACTIONS(2627), 1, + [16977] = 1, + ACTIONS(2467), 1, anon_sym_PIPE, - [20699] = 1, - ACTIONS(2629), 1, + [16981] = 1, + ACTIONS(2469), 1, sym_table_cell_alignment, - [20703] = 1, - ACTIONS(2631), 1, + [16985] = 1, + ACTIONS(2471), 1, anon_sym_RBRACK_COLON, - [20707] = 1, - ACTIONS(2633), 1, + [16989] = 1, + ACTIONS(2473), 1, sym_link_destination, - [20711] = 1, - ACTIONS(2635), 1, + [16993] = 1, + ACTIONS(2475), 1, sym__whitespace, - [20715] = 1, - ACTIONS(2637), 1, + [16997] = 1, + ACTIONS(2477), 1, sym__newline, - [20719] = 1, - ACTIONS(874), 1, - sym__list_item_content_spacer, - [20723] = 1, - ACTIONS(2639), 1, + [17001] = 1, + ACTIONS(2479), 1, anon_sym_PIPE, - [20727] = 1, - ACTIONS(2641), 1, + [17005] = 1, + ACTIONS(2481), 1, + anon_sym_PIPE, + [17009] = 1, + ACTIONS(2483), 1, sym_table_cell_alignment, - [20731] = 1, - ACTIONS(2643), 1, + [17013] = 1, + ACTIONS(2485), 1, anon_sym_RBRACK_COLON, - [20735] = 1, - ACTIONS(2645), 1, + [17017] = 1, + ACTIONS(2487), 1, sym_link_destination, - [20739] = 1, - ACTIONS(2647), 1, + [17021] = 1, + ACTIONS(2489), 1, sym__whitespace, - [20743] = 1, - ACTIONS(2649), 1, - sym__block_close, - [20747] = 1, - ACTIONS(878), 1, - sym__list_item_content_spacer, - [20751] = 1, - ACTIONS(2651), 1, + [17025] = 1, + ACTIONS(641), 1, + sym__indented_content_spacer, + [17029] = 1, + ACTIONS(2491), 1, + sym__newline, + [17033] = 1, + ACTIONS(2493), 1, anon_sym_PIPE, - [20755] = 1, - ACTIONS(2653), 1, + [17037] = 1, + ACTIONS(2495), 1, sym_table_cell_alignment, - [20759] = 1, - ACTIONS(2655), 1, + [17041] = 1, + ACTIONS(2497), 1, anon_sym_RBRACK_COLON, - [20763] = 1, - ACTIONS(2657), 1, + [17045] = 1, + ACTIONS(2499), 1, sym_link_destination, - [20767] = 1, - ACTIONS(2659), 1, + [17049] = 1, + ACTIONS(2501), 1, sym__newline, - [20771] = 1, - ACTIONS(2661), 1, + [17053] = 1, + ACTIONS(2503), 1, anon_sym_PIPE, - [20775] = 1, - ACTIONS(2663), 1, - anon_sym_RBRACK, - [20779] = 1, - ACTIONS(2665), 1, + [17057] = 1, + ACTIONS(2505), 1, + sym__whitespace, + [17061] = 1, + ACTIONS(2507), 1, sym__whitespace1, - [20783] = 1, - ACTIONS(2667), 1, - sym__newline, - [20787] = 1, - ACTIONS(2669), 1, + [17065] = 1, + ACTIONS(649), 1, + sym__indented_content_spacer, + [17069] = 1, + ACTIONS(2509), 1, anon_sym_PIPE, - [20791] = 1, - ACTIONS(2671), 1, - ts_builtin_sym_end, - [20795] = 1, - ACTIONS(2673), 1, + [17073] = 1, + ACTIONS(2511), 1, + sym_frontmatter_marker, + [17077] = 1, + ACTIONS(2513), 1, sym__whitespace1, - [20799] = 1, - ACTIONS(2675), 1, + [17081] = 1, + ACTIONS(2515), 1, sym__block_close, - [20803] = 1, - ACTIONS(2677), 1, - anon_sym_PIPE, - [20807] = 1, - ACTIONS(882), 1, - sym__list_item_content_spacer, - [20811] = 1, - ACTIONS(2679), 1, - sym__whitespace1, - [20815] = 1, - ACTIONS(898), 1, - sym__list_item_content_spacer, - [20819] = 1, - ACTIONS(2681), 1, + [17085] = 1, + ACTIONS(2517), 1, anon_sym_PIPE, - [20823] = 1, - ACTIONS(2683), 1, - sym__block_close, - [20827] = 1, - ACTIONS(2685), 1, + [17089] = 1, + ACTIONS(2519), 1, + sym__indented_content_spacer, + [17093] = 1, + ACTIONS(2521), 1, sym__whitespace1, - [20831] = 1, - ACTIONS(1428), 1, - sym__newline, - [20835] = 1, - ACTIONS(2687), 1, + [17097] = 1, + ACTIONS(693), 1, + sym__indented_content_spacer, + [17101] = 1, + ACTIONS(2523), 1, anon_sym_PIPE, - [20839] = 1, - ACTIONS(2689), 1, - anon_sym_RBRACK, - [20843] = 1, - ACTIONS(2691), 1, + [17105] = 1, + ACTIONS(2525), 1, + sym__whitespace, + [17109] = 1, + ACTIONS(2527), 1, sym__whitespace1, - [20847] = 1, - ACTIONS(2693), 1, - sym__footnote_mark_begin, - [20851] = 1, - ACTIONS(2695), 1, - anon_sym_COLON, - [20855] = 1, - ACTIONS(2697), 1, + [17113] = 1, + ACTIONS(2529), 1, sym__footnote_mark_begin, - [20859] = 1, - ACTIONS(2699), 1, + [17117] = 1, + ACTIONS(2531), 1, anon_sym_COLON, - [20863] = 1, - ACTIONS(2701), 1, + [17121] = 1, + ACTIONS(2533), 1, sym__footnote_mark_begin, - [20867] = 1, - ACTIONS(2703), 1, - anon_sym_COLON, - [20871] = 1, - ACTIONS(2705), 1, + [17125] = 1, + ACTIONS(2535), 1, + anon_sym_PIPE, + [17129] = 1, + ACTIONS(2537), 1, sym__footnote_mark_begin, - [20875] = 1, - ACTIONS(2707), 1, + [17133] = 1, + ACTIONS(2539), 1, anon_sym_COLON, - [20879] = 1, - ACTIONS(2709), 1, + [17137] = 1, + ACTIONS(2541), 1, sym__footnote_mark_begin, - [20883] = 1, - ACTIONS(2711), 1, + [17141] = 1, + ACTIONS(2543), 1, anon_sym_COLON, - [20887] = 1, - ACTIONS(2713), 1, - anon_sym_RBRACK, - [20891] = 1, - ACTIONS(2715), 1, + [17145] = 1, + ACTIONS(2545), 1, anon_sym_RBRACK, - [20895] = 1, - ACTIONS(2717), 1, + [17149] = 1, + ACTIONS(2547), 1, anon_sym_RBRACK, - [20899] = 1, - ACTIONS(2719), 1, + [17153] = 1, + ACTIONS(2549), 1, anon_sym_RBRACK, - [20903] = 1, - ACTIONS(2721), 1, + [17157] = 1, + ACTIONS(2551), 1, anon_sym_RBRACK, - [20907] = 1, - ACTIONS(2723), 1, - sym_link_destination, - [20911] = 1, - ACTIONS(2725), 1, + [17161] = 1, + ACTIONS(2553), 1, sym__newline, - [20915] = 1, - ACTIONS(2727), 1, - sym__block_close, - [20919] = 1, - ACTIONS(2729), 1, + [17165] = 1, + ACTIONS(881), 1, + sym_list_marker_plus, + [17169] = 1, + ACTIONS(2555), 1, sym__newline, - [20923] = 1, - ACTIONS(2731), 1, + [17173] = 1, + ACTIONS(2557), 1, sym__block_close, - [20927] = 1, - ACTIONS(2733), 1, - anon_sym_PIPE, + [17177] = 1, + ACTIONS(2559), 1, + sym__newline, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(71)] = 0, - [SMALL_STATE(72)] = 70, - [SMALL_STATE(73)] = 140, - [SMALL_STATE(74)] = 210, - [SMALL_STATE(75)] = 273, - [SMALL_STATE(76)] = 336, - [SMALL_STATE(77)] = 399, - [SMALL_STATE(78)] = 457, - [SMALL_STATE(79)] = 515, - [SMALL_STATE(80)] = 573, - [SMALL_STATE(81)] = 623, - [SMALL_STATE(82)] = 673, - [SMALL_STATE(83)] = 723, - [SMALL_STATE(84)] = 768, - [SMALL_STATE(85)] = 815, - [SMALL_STATE(86)] = 862, - [SMALL_STATE(87)] = 907, - [SMALL_STATE(88)] = 952, - [SMALL_STATE(89)] = 999, - [SMALL_STATE(90)] = 1046, - [SMALL_STATE(91)] = 1093, - [SMALL_STATE(92)] = 1140, - [SMALL_STATE(93)] = 1185, - [SMALL_STATE(94)] = 1232, - [SMALL_STATE(95)] = 1279, - [SMALL_STATE(96)] = 1326, - [SMALL_STATE(97)] = 1373, - [SMALL_STATE(98)] = 1420, - [SMALL_STATE(99)] = 1465, - [SMALL_STATE(100)] = 1510, - [SMALL_STATE(101)] = 1557, - [SMALL_STATE(102)] = 1604, - [SMALL_STATE(103)] = 1651, - [SMALL_STATE(104)] = 1698, - [SMALL_STATE(105)] = 1745, - [SMALL_STATE(106)] = 1790, - [SMALL_STATE(107)] = 1835, - [SMALL_STATE(108)] = 1880, - [SMALL_STATE(109)] = 1927, - [SMALL_STATE(110)] = 1974, - [SMALL_STATE(111)] = 2019, - [SMALL_STATE(112)] = 2064, - [SMALL_STATE(113)] = 2111, - [SMALL_STATE(114)] = 2158, - [SMALL_STATE(115)] = 2205, - [SMALL_STATE(116)] = 2252, - [SMALL_STATE(117)] = 2299, - [SMALL_STATE(118)] = 2344, - [SMALL_STATE(119)] = 2389, - [SMALL_STATE(120)] = 2434, - [SMALL_STATE(121)] = 2481, - [SMALL_STATE(122)] = 2528, - [SMALL_STATE(123)] = 2575, - [SMALL_STATE(124)] = 2622, - [SMALL_STATE(125)] = 2667, - [SMALL_STATE(126)] = 2712, - [SMALL_STATE(127)] = 2759, - [SMALL_STATE(128)] = 2804, - [SMALL_STATE(129)] = 2849, - [SMALL_STATE(130)] = 2896, - [SMALL_STATE(131)] = 2943, - [SMALL_STATE(132)] = 2988, - [SMALL_STATE(133)] = 3035, - [SMALL_STATE(134)] = 3080, - [SMALL_STATE(135)] = 3125, - [SMALL_STATE(136)] = 3172, - [SMALL_STATE(137)] = 3219, - [SMALL_STATE(138)] = 3266, - [SMALL_STATE(139)] = 3313, - [SMALL_STATE(140)] = 3357, - [SMALL_STATE(141)] = 3401, - [SMALL_STATE(142)] = 3445, - [SMALL_STATE(143)] = 3489, - [SMALL_STATE(144)] = 3533, - [SMALL_STATE(145)] = 3577, - [SMALL_STATE(146)] = 3621, - [SMALL_STATE(147)] = 3665, - [SMALL_STATE(148)] = 3709, - [SMALL_STATE(149)] = 3753, - [SMALL_STATE(150)] = 3797, - [SMALL_STATE(151)] = 3841, - [SMALL_STATE(152)] = 3885, - [SMALL_STATE(153)] = 3929, - [SMALL_STATE(154)] = 3973, - [SMALL_STATE(155)] = 4017, - [SMALL_STATE(156)] = 4061, - [SMALL_STATE(157)] = 4105, - [SMALL_STATE(158)] = 4149, - [SMALL_STATE(159)] = 4193, - [SMALL_STATE(160)] = 4237, - [SMALL_STATE(161)] = 4281, - [SMALL_STATE(162)] = 4325, - [SMALL_STATE(163)] = 4369, - [SMALL_STATE(164)] = 4413, - [SMALL_STATE(165)] = 4457, - [SMALL_STATE(166)] = 4501, - [SMALL_STATE(167)] = 4545, - [SMALL_STATE(168)] = 4589, - [SMALL_STATE(169)] = 4633, - [SMALL_STATE(170)] = 4677, - [SMALL_STATE(171)] = 4721, - [SMALL_STATE(172)] = 4765, - [SMALL_STATE(173)] = 4809, - [SMALL_STATE(174)] = 4853, - [SMALL_STATE(175)] = 4897, - [SMALL_STATE(176)] = 4941, - [SMALL_STATE(177)] = 4985, - [SMALL_STATE(178)] = 5029, - [SMALL_STATE(179)] = 5073, - [SMALL_STATE(180)] = 5117, - [SMALL_STATE(181)] = 5161, - [SMALL_STATE(182)] = 5205, - [SMALL_STATE(183)] = 5249, - [SMALL_STATE(184)] = 5293, - [SMALL_STATE(185)] = 5337, - [SMALL_STATE(186)] = 5381, - [SMALL_STATE(187)] = 5425, - [SMALL_STATE(188)] = 5469, - [SMALL_STATE(189)] = 5513, - [SMALL_STATE(190)] = 5557, - [SMALL_STATE(191)] = 5601, - [SMALL_STATE(192)] = 5645, - [SMALL_STATE(193)] = 5689, - [SMALL_STATE(194)] = 5733, - [SMALL_STATE(195)] = 5777, - [SMALL_STATE(196)] = 5821, - [SMALL_STATE(197)] = 5865, - [SMALL_STATE(198)] = 5909, - [SMALL_STATE(199)] = 5953, - [SMALL_STATE(200)] = 5997, - [SMALL_STATE(201)] = 6041, - [SMALL_STATE(202)] = 6085, - [SMALL_STATE(203)] = 6129, - [SMALL_STATE(204)] = 6173, - [SMALL_STATE(205)] = 6217, - [SMALL_STATE(206)] = 6261, - [SMALL_STATE(207)] = 6305, - [SMALL_STATE(208)] = 6349, - [SMALL_STATE(209)] = 6393, - [SMALL_STATE(210)] = 6437, - [SMALL_STATE(211)] = 6481, - [SMALL_STATE(212)] = 6525, - [SMALL_STATE(213)] = 6569, - [SMALL_STATE(214)] = 6613, - [SMALL_STATE(215)] = 6657, - [SMALL_STATE(216)] = 6701, - [SMALL_STATE(217)] = 6745, - [SMALL_STATE(218)] = 6789, - [SMALL_STATE(219)] = 6833, - [SMALL_STATE(220)] = 6877, - [SMALL_STATE(221)] = 6921, - [SMALL_STATE(222)] = 6965, - [SMALL_STATE(223)] = 7009, - [SMALL_STATE(224)] = 7053, - [SMALL_STATE(225)] = 7097, - [SMALL_STATE(226)] = 7141, - [SMALL_STATE(227)] = 7185, - [SMALL_STATE(228)] = 7229, - [SMALL_STATE(229)] = 7273, - [SMALL_STATE(230)] = 7317, - [SMALL_STATE(231)] = 7361, - [SMALL_STATE(232)] = 7405, - [SMALL_STATE(233)] = 7449, - [SMALL_STATE(234)] = 7493, - [SMALL_STATE(235)] = 7537, - [SMALL_STATE(236)] = 7581, - [SMALL_STATE(237)] = 7625, - [SMALL_STATE(238)] = 7669, - [SMALL_STATE(239)] = 7713, + [SMALL_STATE(66)] = 0, + [SMALL_STATE(67)] = 70, + [SMALL_STATE(68)] = 140, + [SMALL_STATE(69)] = 203, + [SMALL_STATE(70)] = 266, + [SMALL_STATE(71)] = 324, + [SMALL_STATE(72)] = 382, + [SMALL_STATE(73)] = 432, + [SMALL_STATE(74)] = 482, + [SMALL_STATE(75)] = 529, + [SMALL_STATE(76)] = 576, + [SMALL_STATE(77)] = 621, + [SMALL_STATE(78)] = 666, + [SMALL_STATE(79)] = 713, + [SMALL_STATE(80)] = 760, + [SMALL_STATE(81)] = 807, + [SMALL_STATE(82)] = 854, + [SMALL_STATE(83)] = 901, + [SMALL_STATE(84)] = 946, + [SMALL_STATE(85)] = 991, + [SMALL_STATE(86)] = 1038, + [SMALL_STATE(87)] = 1085, + [SMALL_STATE(88)] = 1132, + [SMALL_STATE(89)] = 1177, + [SMALL_STATE(90)] = 1222, + [SMALL_STATE(91)] = 1269, + [SMALL_STATE(92)] = 1316, + [SMALL_STATE(93)] = 1363, + [SMALL_STATE(94)] = 1410, + [SMALL_STATE(95)] = 1457, + [SMALL_STATE(96)] = 1504, + [SMALL_STATE(97)] = 1549, + [SMALL_STATE(98)] = 1596, + [SMALL_STATE(99)] = 1643, + [SMALL_STATE(100)] = 1690, + [SMALL_STATE(101)] = 1737, + [SMALL_STATE(102)] = 1782, + [SMALL_STATE(103)] = 1827, + [SMALL_STATE(104)] = 1872, + [SMALL_STATE(105)] = 1917, + [SMALL_STATE(106)] = 1964, + [SMALL_STATE(107)] = 2011, + [SMALL_STATE(108)] = 2056, + [SMALL_STATE(109)] = 2101, + [SMALL_STATE(110)] = 2146, + [SMALL_STATE(111)] = 2193, + [SMALL_STATE(112)] = 2237, + [SMALL_STATE(113)] = 2281, + [SMALL_STATE(114)] = 2325, + [SMALL_STATE(115)] = 2369, + [SMALL_STATE(116)] = 2413, + [SMALL_STATE(117)] = 2457, + [SMALL_STATE(118)] = 2501, + [SMALL_STATE(119)] = 2545, + [SMALL_STATE(120)] = 2589, + [SMALL_STATE(121)] = 2633, + [SMALL_STATE(122)] = 2677, + [SMALL_STATE(123)] = 2721, + [SMALL_STATE(124)] = 2765, + [SMALL_STATE(125)] = 2809, + [SMALL_STATE(126)] = 2853, + [SMALL_STATE(127)] = 2897, + [SMALL_STATE(128)] = 2941, + [SMALL_STATE(129)] = 2985, + [SMALL_STATE(130)] = 3029, + [SMALL_STATE(131)] = 3073, + [SMALL_STATE(132)] = 3117, + [SMALL_STATE(133)] = 3161, + [SMALL_STATE(134)] = 3205, + [SMALL_STATE(135)] = 3249, + [SMALL_STATE(136)] = 3293, + [SMALL_STATE(137)] = 3337, + [SMALL_STATE(138)] = 3381, + [SMALL_STATE(139)] = 3425, + [SMALL_STATE(140)] = 3469, + [SMALL_STATE(141)] = 3513, + [SMALL_STATE(142)] = 3557, + [SMALL_STATE(143)] = 3601, + [SMALL_STATE(144)] = 3645, + [SMALL_STATE(145)] = 3689, + [SMALL_STATE(146)] = 3733, + [SMALL_STATE(147)] = 3777, + [SMALL_STATE(148)] = 3821, + [SMALL_STATE(149)] = 3865, + [SMALL_STATE(150)] = 3909, + [SMALL_STATE(151)] = 3953, + [SMALL_STATE(152)] = 3997, + [SMALL_STATE(153)] = 4041, + [SMALL_STATE(154)] = 4085, + [SMALL_STATE(155)] = 4129, + [SMALL_STATE(156)] = 4173, + [SMALL_STATE(157)] = 4217, + [SMALL_STATE(158)] = 4261, + [SMALL_STATE(159)] = 4305, + [SMALL_STATE(160)] = 4349, + [SMALL_STATE(161)] = 4393, + [SMALL_STATE(162)] = 4437, + [SMALL_STATE(163)] = 4481, + [SMALL_STATE(164)] = 4525, + [SMALL_STATE(165)] = 4569, + [SMALL_STATE(166)] = 4613, + [SMALL_STATE(167)] = 4657, + [SMALL_STATE(168)] = 4701, + [SMALL_STATE(169)] = 4745, + [SMALL_STATE(170)] = 4789, + [SMALL_STATE(171)] = 4833, + [SMALL_STATE(172)] = 4877, + [SMALL_STATE(173)] = 4921, + [SMALL_STATE(174)] = 4965, + [SMALL_STATE(175)] = 5009, + [SMALL_STATE(176)] = 5053, + [SMALL_STATE(177)] = 5097, + [SMALL_STATE(178)] = 5141, + [SMALL_STATE(179)] = 5185, + [SMALL_STATE(180)] = 5229, + [SMALL_STATE(181)] = 5273, + [SMALL_STATE(182)] = 5317, + [SMALL_STATE(183)] = 5361, + [SMALL_STATE(184)] = 5405, + [SMALL_STATE(185)] = 5449, + [SMALL_STATE(186)] = 5493, + [SMALL_STATE(187)] = 5537, + [SMALL_STATE(188)] = 5581, + [SMALL_STATE(189)] = 5625, + [SMALL_STATE(190)] = 5669, + [SMALL_STATE(191)] = 5713, + [SMALL_STATE(192)] = 5757, + [SMALL_STATE(193)] = 5801, + [SMALL_STATE(194)] = 5845, + [SMALL_STATE(195)] = 5889, + [SMALL_STATE(196)] = 5933, + [SMALL_STATE(197)] = 5977, + [SMALL_STATE(198)] = 6021, + [SMALL_STATE(199)] = 6065, + [SMALL_STATE(200)] = 6109, + [SMALL_STATE(201)] = 6153, + [SMALL_STATE(202)] = 6197, + [SMALL_STATE(203)] = 6241, + [SMALL_STATE(204)] = 6285, + [SMALL_STATE(205)] = 6329, + [SMALL_STATE(206)] = 6373, + [SMALL_STATE(207)] = 6417, + [SMALL_STATE(208)] = 6461, + [SMALL_STATE(209)] = 6505, + [SMALL_STATE(210)] = 6549, + [SMALL_STATE(211)] = 6592, + [SMALL_STATE(212)] = 6639, + [SMALL_STATE(213)] = 6681, + [SMALL_STATE(214)] = 6727, + [SMALL_STATE(215)] = 6773, + [SMALL_STATE(216)] = 6819, + [SMALL_STATE(217)] = 6865, + [SMALL_STATE(218)] = 6911, + [SMALL_STATE(219)] = 6953, + [SMALL_STATE(220)] = 6995, + [SMALL_STATE(221)] = 7037, + [SMALL_STATE(222)] = 7079, + [SMALL_STATE(223)] = 7121, + [SMALL_STATE(224)] = 7163, + [SMALL_STATE(225)] = 7205, + [SMALL_STATE(226)] = 7247, + [SMALL_STATE(227)] = 7289, + [SMALL_STATE(228)] = 7331, + [SMALL_STATE(229)] = 7368, + [SMALL_STATE(230)] = 7407, + [SMALL_STATE(231)] = 7446, + [SMALL_STATE(232)] = 7485, + [SMALL_STATE(233)] = 7524, + [SMALL_STATE(234)] = 7563, + [SMALL_STATE(235)] = 7597, + [SMALL_STATE(236)] = 7631, + [SMALL_STATE(237)] = 7665, + [SMALL_STATE(238)] = 7699, + [SMALL_STATE(239)] = 7725, [SMALL_STATE(240)] = 7757, - [SMALL_STATE(241)] = 7801, - [SMALL_STATE(242)] = 7845, - [SMALL_STATE(243)] = 7889, - [SMALL_STATE(244)] = 7933, - [SMALL_STATE(245)] = 7977, - [SMALL_STATE(246)] = 8021, - [SMALL_STATE(247)] = 8065, - [SMALL_STATE(248)] = 8109, - [SMALL_STATE(249)] = 8153, - [SMALL_STATE(250)] = 8197, - [SMALL_STATE(251)] = 8241, - [SMALL_STATE(252)] = 8285, - [SMALL_STATE(253)] = 8329, - [SMALL_STATE(254)] = 8373, - [SMALL_STATE(255)] = 8417, - [SMALL_STATE(256)] = 8461, - [SMALL_STATE(257)] = 8505, - [SMALL_STATE(258)] = 8549, - [SMALL_STATE(259)] = 8593, - [SMALL_STATE(260)] = 8637, - [SMALL_STATE(261)] = 8681, - [SMALL_STATE(262)] = 8725, - [SMALL_STATE(263)] = 8769, - [SMALL_STATE(264)] = 8813, - [SMALL_STATE(265)] = 8857, - [SMALL_STATE(266)] = 8901, - [SMALL_STATE(267)] = 8945, - [SMALL_STATE(268)] = 8989, - [SMALL_STATE(269)] = 9033, - [SMALL_STATE(270)] = 9077, - [SMALL_STATE(271)] = 9121, - [SMALL_STATE(272)] = 9165, - [SMALL_STATE(273)] = 9209, - [SMALL_STATE(274)] = 9253, - [SMALL_STATE(275)] = 9297, - [SMALL_STATE(276)] = 9341, - [SMALL_STATE(277)] = 9385, - [SMALL_STATE(278)] = 9429, - [SMALL_STATE(279)] = 9473, - [SMALL_STATE(280)] = 9520, - [SMALL_STATE(281)] = 9563, - [SMALL_STATE(282)] = 9605, - [SMALL_STATE(283)] = 9651, - [SMALL_STATE(284)] = 9697, - [SMALL_STATE(285)] = 9743, - [SMALL_STATE(286)] = 9789, - [SMALL_STATE(287)] = 9835, - [SMALL_STATE(288)] = 9881, - [SMALL_STATE(289)] = 9923, - [SMALL_STATE(290)] = 9965, - [SMALL_STATE(291)] = 10007, - [SMALL_STATE(292)] = 10049, - [SMALL_STATE(293)] = 10091, - [SMALL_STATE(294)] = 10133, - [SMALL_STATE(295)] = 10175, - [SMALL_STATE(296)] = 10217, - [SMALL_STATE(297)] = 10259, - [SMALL_STATE(298)] = 10301, - [SMALL_STATE(299)] = 10343, - [SMALL_STATE(300)] = 10385, - [SMALL_STATE(301)] = 10424, - [SMALL_STATE(302)] = 10463, - [SMALL_STATE(303)] = 10500, - [SMALL_STATE(304)] = 10539, - [SMALL_STATE(305)] = 10578, - [SMALL_STATE(306)] = 10617, - [SMALL_STATE(307)] = 10656, - [SMALL_STATE(308)] = 10688, - [SMALL_STATE(309)] = 10714, - [SMALL_STATE(310)] = 10748, - [SMALL_STATE(311)] = 10782, - [SMALL_STATE(312)] = 10808, - [SMALL_STATE(313)] = 10842, - [SMALL_STATE(314)] = 10874, - [SMALL_STATE(315)] = 10908, - [SMALL_STATE(316)] = 10940, - [SMALL_STATE(317)] = 10974, - [SMALL_STATE(318)] = 11006, - [SMALL_STATE(319)] = 11038, - [SMALL_STATE(320)] = 11070, - [SMALL_STATE(321)] = 11102, - [SMALL_STATE(322)] = 11134, - [SMALL_STATE(323)] = 11166, - [SMALL_STATE(324)] = 11198, - [SMALL_STATE(325)] = 11230, - [SMALL_STATE(326)] = 11262, - [SMALL_STATE(327)] = 11296, - [SMALL_STATE(328)] = 11330, - [SMALL_STATE(329)] = 11359, - [SMALL_STATE(330)] = 11380, - [SMALL_STATE(331)] = 11405, - [SMALL_STATE(332)] = 11430, - [SMALL_STATE(333)] = 11461, - [SMALL_STATE(334)] = 11490, - [SMALL_STATE(335)] = 11519, - [SMALL_STATE(336)] = 11548, - [SMALL_STATE(337)] = 11577, - [SMALL_STATE(338)] = 11606, - [SMALL_STATE(339)] = 11634, - [SMALL_STATE(340)] = 11654, - [SMALL_STATE(341)] = 11682, - [SMALL_STATE(342)] = 11710, - [SMALL_STATE(343)] = 11738, - [SMALL_STATE(344)] = 11766, - [SMALL_STATE(345)] = 11794, - [SMALL_STATE(346)] = 11822, - [SMALL_STATE(347)] = 11850, - [SMALL_STATE(348)] = 11878, - [SMALL_STATE(349)] = 11906, - [SMALL_STATE(350)] = 11934, - [SMALL_STATE(351)] = 11962, - [SMALL_STATE(352)] = 11990, - [SMALL_STATE(353)] = 12018, - [SMALL_STATE(354)] = 12046, - [SMALL_STATE(355)] = 12074, - [SMALL_STATE(356)] = 12102, - [SMALL_STATE(357)] = 12130, - [SMALL_STATE(358)] = 12158, - [SMALL_STATE(359)] = 12186, - [SMALL_STATE(360)] = 12214, - [SMALL_STATE(361)] = 12242, - [SMALL_STATE(362)] = 12270, - [SMALL_STATE(363)] = 12298, - [SMALL_STATE(364)] = 12326, - [SMALL_STATE(365)] = 12354, - [SMALL_STATE(366)] = 12382, - [SMALL_STATE(367)] = 12410, - [SMALL_STATE(368)] = 12438, - [SMALL_STATE(369)] = 12466, - [SMALL_STATE(370)] = 12494, - [SMALL_STATE(371)] = 12522, - [SMALL_STATE(372)] = 12550, - [SMALL_STATE(373)] = 12578, - [SMALL_STATE(374)] = 12606, - [SMALL_STATE(375)] = 12634, - [SMALL_STATE(376)] = 12662, - [SMALL_STATE(377)] = 12690, - [SMALL_STATE(378)] = 12718, - [SMALL_STATE(379)] = 12746, - [SMALL_STATE(380)] = 12774, - [SMALL_STATE(381)] = 12799, - [SMALL_STATE(382)] = 12822, - [SMALL_STATE(383)] = 12847, - [SMALL_STATE(384)] = 12870, - [SMALL_STATE(385)] = 12892, - [SMALL_STATE(386)] = 12914, - [SMALL_STATE(387)] = 12948, - [SMALL_STATE(388)] = 12970, - [SMALL_STATE(389)] = 12992, - [SMALL_STATE(390)] = 13014, - [SMALL_STATE(391)] = 13036, - [SMALL_STATE(392)] = 13069, - [SMALL_STATE(393)] = 13102, - [SMALL_STATE(394)] = 13119, - [SMALL_STATE(395)] = 13152, - [SMALL_STATE(396)] = 13171, - [SMALL_STATE(397)] = 13204, - [SMALL_STATE(398)] = 13237, - [SMALL_STATE(399)] = 13264, - [SMALL_STATE(400)] = 13297, - [SMALL_STATE(401)] = 13316, - [SMALL_STATE(402)] = 13333, - [SMALL_STATE(403)] = 13366, - [SMALL_STATE(404)] = 13399, - [SMALL_STATE(405)] = 13418, - [SMALL_STATE(406)] = 13435, - [SMALL_STATE(407)] = 13468, - [SMALL_STATE(408)] = 13489, - [SMALL_STATE(409)] = 13505, - [SMALL_STATE(410)] = 13521, - [SMALL_STATE(411)] = 13547, - [SMALL_STATE(412)] = 13561, - [SMALL_STATE(413)] = 13587, - [SMALL_STATE(414)] = 13600, - [SMALL_STATE(415)] = 13622, - [SMALL_STATE(416)] = 13645, - [SMALL_STATE(417)] = 13668, - [SMALL_STATE(418)] = 13689, - [SMALL_STATE(419)] = 13714, - [SMALL_STATE(420)] = 13737, - [SMALL_STATE(421)] = 13760, - [SMALL_STATE(422)] = 13783, - [SMALL_STATE(423)] = 13806, - [SMALL_STATE(424)] = 13831, - [SMALL_STATE(425)] = 13854, - [SMALL_STATE(426)] = 13877, - [SMALL_STATE(427)] = 13900, - [SMALL_STATE(428)] = 13923, - [SMALL_STATE(429)] = 13948, - [SMALL_STATE(430)] = 13971, - [SMALL_STATE(431)] = 13994, - [SMALL_STATE(432)] = 14017, - [SMALL_STATE(433)] = 14042, - [SMALL_STATE(434)] = 14063, - [SMALL_STATE(435)] = 14086, - [SMALL_STATE(436)] = 14109, - [SMALL_STATE(437)] = 14134, - [SMALL_STATE(438)] = 14157, - [SMALL_STATE(439)] = 14180, - [SMALL_STATE(440)] = 14205, - [SMALL_STATE(441)] = 14230, - [SMALL_STATE(442)] = 14253, - [SMALL_STATE(443)] = 14275, - [SMALL_STATE(444)] = 14297, - [SMALL_STATE(445)] = 14319, - [SMALL_STATE(446)] = 14341, - [SMALL_STATE(447)] = 14363, - [SMALL_STATE(448)] = 14385, - [SMALL_STATE(449)] = 14407, - [SMALL_STATE(450)] = 14429, - [SMALL_STATE(451)] = 14451, - [SMALL_STATE(452)] = 14473, - [SMALL_STATE(453)] = 14495, - [SMALL_STATE(454)] = 14517, - [SMALL_STATE(455)] = 14539, - [SMALL_STATE(456)] = 14561, - [SMALL_STATE(457)] = 14583, - [SMALL_STATE(458)] = 14603, - [SMALL_STATE(459)] = 14625, - [SMALL_STATE(460)] = 14647, - [SMALL_STATE(461)] = 14669, - [SMALL_STATE(462)] = 14689, - [SMALL_STATE(463)] = 14711, - [SMALL_STATE(464)] = 14733, - [SMALL_STATE(465)] = 14755, - [SMALL_STATE(466)] = 14764, - [SMALL_STATE(467)] = 14783, - [SMALL_STATE(468)] = 14802, - [SMALL_STATE(469)] = 14821, - [SMALL_STATE(470)] = 14840, - [SMALL_STATE(471)] = 14859, - [SMALL_STATE(472)] = 14878, - [SMALL_STATE(473)] = 14897, - [SMALL_STATE(474)] = 14916, - [SMALL_STATE(475)] = 14935, - [SMALL_STATE(476)] = 14954, - [SMALL_STATE(477)] = 14973, - [SMALL_STATE(478)] = 14992, - [SMALL_STATE(479)] = 15011, - [SMALL_STATE(480)] = 15030, - [SMALL_STATE(481)] = 15049, - [SMALL_STATE(482)] = 15068, - [SMALL_STATE(483)] = 15077, - [SMALL_STATE(484)] = 15086, - [SMALL_STATE(485)] = 15095, - [SMALL_STATE(486)] = 15114, - [SMALL_STATE(487)] = 15123, - [SMALL_STATE(488)] = 15132, - [SMALL_STATE(489)] = 15141, - [SMALL_STATE(490)] = 15150, - [SMALL_STATE(491)] = 15159, - [SMALL_STATE(492)] = 15168, - [SMALL_STATE(493)] = 15187, - [SMALL_STATE(494)] = 15206, - [SMALL_STATE(495)] = 15225, - [SMALL_STATE(496)] = 15234, - [SMALL_STATE(497)] = 15253, - [SMALL_STATE(498)] = 15272, - [SMALL_STATE(499)] = 15281, - [SMALL_STATE(500)] = 15300, - [SMALL_STATE(501)] = 15309, - [SMALL_STATE(502)] = 15328, - [SMALL_STATE(503)] = 15347, - [SMALL_STATE(504)] = 15366, - [SMALL_STATE(505)] = 15375, - [SMALL_STATE(506)] = 15384, - [SMALL_STATE(507)] = 15393, - [SMALL_STATE(508)] = 15412, - [SMALL_STATE(509)] = 15431, - [SMALL_STATE(510)] = 15450, - [SMALL_STATE(511)] = 15469, - [SMALL_STATE(512)] = 15488, - [SMALL_STATE(513)] = 15507, - [SMALL_STATE(514)] = 15526, - [SMALL_STATE(515)] = 15545, - [SMALL_STATE(516)] = 15564, - [SMALL_STATE(517)] = 15583, - [SMALL_STATE(518)] = 15602, - [SMALL_STATE(519)] = 15621, - [SMALL_STATE(520)] = 15640, - [SMALL_STATE(521)] = 15659, - [SMALL_STATE(522)] = 15678, - [SMALL_STATE(523)] = 15687, - [SMALL_STATE(524)] = 15706, - [SMALL_STATE(525)] = 15714, - [SMALL_STATE(526)] = 15722, - [SMALL_STATE(527)] = 15736, - [SMALL_STATE(528)] = 15744, - [SMALL_STATE(529)] = 15752, - [SMALL_STATE(530)] = 15760, - [SMALL_STATE(531)] = 15768, - [SMALL_STATE(532)] = 15776, - [SMALL_STATE(533)] = 15784, - [SMALL_STATE(534)] = 15798, - [SMALL_STATE(535)] = 15806, - [SMALL_STATE(536)] = 15820, - [SMALL_STATE(537)] = 15828, - [SMALL_STATE(538)] = 15836, - [SMALL_STATE(539)] = 15844, - [SMALL_STATE(540)] = 15852, - [SMALL_STATE(541)] = 15860, - [SMALL_STATE(542)] = 15872, - [SMALL_STATE(543)] = 15885, - [SMALL_STATE(544)] = 15898, - [SMALL_STATE(545)] = 15909, - [SMALL_STATE(546)] = 15918, - [SMALL_STATE(547)] = 15929, - [SMALL_STATE(548)] = 15940, - [SMALL_STATE(549)] = 15949, - [SMALL_STATE(550)] = 15958, - [SMALL_STATE(551)] = 15967, - [SMALL_STATE(552)] = 15976, - [SMALL_STATE(553)] = 15985, - [SMALL_STATE(554)] = 15994, - [SMALL_STATE(555)] = 16003, - [SMALL_STATE(556)] = 16012, - [SMALL_STATE(557)] = 16021, - [SMALL_STATE(558)] = 16030, - [SMALL_STATE(559)] = 16039, - [SMALL_STATE(560)] = 16050, - [SMALL_STATE(561)] = 16061, - [SMALL_STATE(562)] = 16072, - [SMALL_STATE(563)] = 16085, - [SMALL_STATE(564)] = 16098, - [SMALL_STATE(565)] = 16111, - [SMALL_STATE(566)] = 16124, - [SMALL_STATE(567)] = 16137, - [SMALL_STATE(568)] = 16150, - [SMALL_STATE(569)] = 16163, - [SMALL_STATE(570)] = 16176, - [SMALL_STATE(571)] = 16189, - [SMALL_STATE(572)] = 16202, - [SMALL_STATE(573)] = 16215, - [SMALL_STATE(574)] = 16228, - [SMALL_STATE(575)] = 16241, - [SMALL_STATE(576)] = 16254, - [SMALL_STATE(577)] = 16267, - [SMALL_STATE(578)] = 16280, - [SMALL_STATE(579)] = 16293, - [SMALL_STATE(580)] = 16306, - [SMALL_STATE(581)] = 16319, - [SMALL_STATE(582)] = 16332, - [SMALL_STATE(583)] = 16345, - [SMALL_STATE(584)] = 16358, - [SMALL_STATE(585)] = 16371, - [SMALL_STATE(586)] = 16384, - [SMALL_STATE(587)] = 16397, - [SMALL_STATE(588)] = 16410, - [SMALL_STATE(589)] = 16423, - [SMALL_STATE(590)] = 16436, - [SMALL_STATE(591)] = 16449, - [SMALL_STATE(592)] = 16462, - [SMALL_STATE(593)] = 16475, - [SMALL_STATE(594)] = 16488, - [SMALL_STATE(595)] = 16501, - [SMALL_STATE(596)] = 16514, - [SMALL_STATE(597)] = 16527, - [SMALL_STATE(598)] = 16540, - [SMALL_STATE(599)] = 16553, - [SMALL_STATE(600)] = 16566, - [SMALL_STATE(601)] = 16579, - [SMALL_STATE(602)] = 16592, - [SMALL_STATE(603)] = 16605, - [SMALL_STATE(604)] = 16618, - [SMALL_STATE(605)] = 16631, - [SMALL_STATE(606)] = 16644, - [SMALL_STATE(607)] = 16657, - [SMALL_STATE(608)] = 16670, - [SMALL_STATE(609)] = 16683, - [SMALL_STATE(610)] = 16696, - [SMALL_STATE(611)] = 16709, - [SMALL_STATE(612)] = 16722, - [SMALL_STATE(613)] = 16735, - [SMALL_STATE(614)] = 16748, - [SMALL_STATE(615)] = 16761, - [SMALL_STATE(616)] = 16774, - [SMALL_STATE(617)] = 16787, - [SMALL_STATE(618)] = 16800, - [SMALL_STATE(619)] = 16813, - [SMALL_STATE(620)] = 16826, - [SMALL_STATE(621)] = 16839, - [SMALL_STATE(622)] = 16852, - [SMALL_STATE(623)] = 16865, - [SMALL_STATE(624)] = 16878, - [SMALL_STATE(625)] = 16891, - [SMALL_STATE(626)] = 16904, - [SMALL_STATE(627)] = 16917, - [SMALL_STATE(628)] = 16930, - [SMALL_STATE(629)] = 16943, - [SMALL_STATE(630)] = 16956, - [SMALL_STATE(631)] = 16969, - [SMALL_STATE(632)] = 16982, - [SMALL_STATE(633)] = 16995, - [SMALL_STATE(634)] = 17008, - [SMALL_STATE(635)] = 17021, - [SMALL_STATE(636)] = 17034, - [SMALL_STATE(637)] = 17047, - [SMALL_STATE(638)] = 17060, - [SMALL_STATE(639)] = 17073, - [SMALL_STATE(640)] = 17086, - [SMALL_STATE(641)] = 17099, - [SMALL_STATE(642)] = 17112, - [SMALL_STATE(643)] = 17125, - [SMALL_STATE(644)] = 17138, - [SMALL_STATE(645)] = 17151, - [SMALL_STATE(646)] = 17164, - [SMALL_STATE(647)] = 17177, - [SMALL_STATE(648)] = 17190, - [SMALL_STATE(649)] = 17203, - [SMALL_STATE(650)] = 17216, - [SMALL_STATE(651)] = 17229, - [SMALL_STATE(652)] = 17242, - [SMALL_STATE(653)] = 17255, - [SMALL_STATE(654)] = 17268, - [SMALL_STATE(655)] = 17281, - [SMALL_STATE(656)] = 17294, - [SMALL_STATE(657)] = 17307, - [SMALL_STATE(658)] = 17320, - [SMALL_STATE(659)] = 17333, - [SMALL_STATE(660)] = 17346, - [SMALL_STATE(661)] = 17359, - [SMALL_STATE(662)] = 17372, - [SMALL_STATE(663)] = 17385, - [SMALL_STATE(664)] = 17398, - [SMALL_STATE(665)] = 17411, - [SMALL_STATE(666)] = 17424, - [SMALL_STATE(667)] = 17437, - [SMALL_STATE(668)] = 17450, - [SMALL_STATE(669)] = 17463, - [SMALL_STATE(670)] = 17476, - [SMALL_STATE(671)] = 17489, - [SMALL_STATE(672)] = 17502, - [SMALL_STATE(673)] = 17515, - [SMALL_STATE(674)] = 17528, - [SMALL_STATE(675)] = 17539, - [SMALL_STATE(676)] = 17552, - [SMALL_STATE(677)] = 17563, - [SMALL_STATE(678)] = 17576, - [SMALL_STATE(679)] = 17589, - [SMALL_STATE(680)] = 17602, - [SMALL_STATE(681)] = 17608, - [SMALL_STATE(682)] = 17618, - [SMALL_STATE(683)] = 17624, - [SMALL_STATE(684)] = 17630, - [SMALL_STATE(685)] = 17636, - [SMALL_STATE(686)] = 17642, - [SMALL_STATE(687)] = 17648, - [SMALL_STATE(688)] = 17654, - [SMALL_STATE(689)] = 17660, - [SMALL_STATE(690)] = 17666, - [SMALL_STATE(691)] = 17672, - [SMALL_STATE(692)] = 17678, - [SMALL_STATE(693)] = 17684, - [SMALL_STATE(694)] = 17690, - [SMALL_STATE(695)] = 17696, - [SMALL_STATE(696)] = 17702, - [SMALL_STATE(697)] = 17708, - [SMALL_STATE(698)] = 17714, - [SMALL_STATE(699)] = 17720, - [SMALL_STATE(700)] = 17726, - [SMALL_STATE(701)] = 17736, - [SMALL_STATE(702)] = 17742, - [SMALL_STATE(703)] = 17748, - [SMALL_STATE(704)] = 17758, - [SMALL_STATE(705)] = 17768, - [SMALL_STATE(706)] = 17774, - [SMALL_STATE(707)] = 17780, - [SMALL_STATE(708)] = 17788, - [SMALL_STATE(709)] = 17794, - [SMALL_STATE(710)] = 17804, - [SMALL_STATE(711)] = 17810, - [SMALL_STATE(712)] = 17816, - [SMALL_STATE(713)] = 17826, - [SMALL_STATE(714)] = 17836, - [SMALL_STATE(715)] = 17846, - [SMALL_STATE(716)] = 17856, - [SMALL_STATE(717)] = 17864, - [SMALL_STATE(718)] = 17874, - [SMALL_STATE(719)] = 17884, - [SMALL_STATE(720)] = 17890, - [SMALL_STATE(721)] = 17896, - [SMALL_STATE(722)] = 17906, - [SMALL_STATE(723)] = 17916, - [SMALL_STATE(724)] = 17926, - [SMALL_STATE(725)] = 17936, - [SMALL_STATE(726)] = 17942, - [SMALL_STATE(727)] = 17948, - [SMALL_STATE(728)] = 17954, - [SMALL_STATE(729)] = 17964, - [SMALL_STATE(730)] = 17970, - [SMALL_STATE(731)] = 17976, - [SMALL_STATE(732)] = 17982, - [SMALL_STATE(733)] = 17988, - [SMALL_STATE(734)] = 17998, - [SMALL_STATE(735)] = 18004, - [SMALL_STATE(736)] = 18014, - [SMALL_STATE(737)] = 18024, - [SMALL_STATE(738)] = 18030, - [SMALL_STATE(739)] = 18036, - [SMALL_STATE(740)] = 18042, - [SMALL_STATE(741)] = 18048, - [SMALL_STATE(742)] = 18054, - [SMALL_STATE(743)] = 18060, - [SMALL_STATE(744)] = 18066, - [SMALL_STATE(745)] = 18072, - [SMALL_STATE(746)] = 18078, - [SMALL_STATE(747)] = 18084, - [SMALL_STATE(748)] = 18090, - [SMALL_STATE(749)] = 18096, - [SMALL_STATE(750)] = 18102, - [SMALL_STATE(751)] = 18108, - [SMALL_STATE(752)] = 18114, - [SMALL_STATE(753)] = 18120, - [SMALL_STATE(754)] = 18126, - [SMALL_STATE(755)] = 18132, - [SMALL_STATE(756)] = 18138, - [SMALL_STATE(757)] = 18144, - [SMALL_STATE(758)] = 18150, - [SMALL_STATE(759)] = 18156, - [SMALL_STATE(760)] = 18162, - [SMALL_STATE(761)] = 18168, - [SMALL_STATE(762)] = 18174, - [SMALL_STATE(763)] = 18184, - [SMALL_STATE(764)] = 18194, - [SMALL_STATE(765)] = 18200, - [SMALL_STATE(766)] = 18208, - [SMALL_STATE(767)] = 18214, - [SMALL_STATE(768)] = 18224, - [SMALL_STATE(769)] = 18234, - [SMALL_STATE(770)] = 18240, - [SMALL_STATE(771)] = 18248, - [SMALL_STATE(772)] = 18254, - [SMALL_STATE(773)] = 18260, - [SMALL_STATE(774)] = 18268, - [SMALL_STATE(775)] = 18276, - [SMALL_STATE(776)] = 18282, - [SMALL_STATE(777)] = 18288, - [SMALL_STATE(778)] = 18296, - [SMALL_STATE(779)] = 18304, - [SMALL_STATE(780)] = 18312, - [SMALL_STATE(781)] = 18320, - [SMALL_STATE(782)] = 18328, - [SMALL_STATE(783)] = 18334, - [SMALL_STATE(784)] = 18340, - [SMALL_STATE(785)] = 18348, - [SMALL_STATE(786)] = 18356, - [SMALL_STATE(787)] = 18364, - [SMALL_STATE(788)] = 18374, - [SMALL_STATE(789)] = 18380, - [SMALL_STATE(790)] = 18387, - [SMALL_STATE(791)] = 18392, - [SMALL_STATE(792)] = 18397, - [SMALL_STATE(793)] = 18402, - [SMALL_STATE(794)] = 18407, - [SMALL_STATE(795)] = 18412, - [SMALL_STATE(796)] = 18417, - [SMALL_STATE(797)] = 18422, - [SMALL_STATE(798)] = 18427, - [SMALL_STATE(799)] = 18432, - [SMALL_STATE(800)] = 18437, - [SMALL_STATE(801)] = 18444, - [SMALL_STATE(802)] = 18449, - [SMALL_STATE(803)] = 18454, - [SMALL_STATE(804)] = 18459, - [SMALL_STATE(805)] = 18464, - [SMALL_STATE(806)] = 18469, - [SMALL_STATE(807)] = 18476, - [SMALL_STATE(808)] = 18483, - [SMALL_STATE(809)] = 18488, - [SMALL_STATE(810)] = 18493, - [SMALL_STATE(811)] = 18498, - [SMALL_STATE(812)] = 18503, - [SMALL_STATE(813)] = 18508, - [SMALL_STATE(814)] = 18515, - [SMALL_STATE(815)] = 18520, - [SMALL_STATE(816)] = 18525, - [SMALL_STATE(817)] = 18532, - [SMALL_STATE(818)] = 18537, - [SMALL_STATE(819)] = 18544, - [SMALL_STATE(820)] = 18549, - [SMALL_STATE(821)] = 18554, - [SMALL_STATE(822)] = 18559, - [SMALL_STATE(823)] = 18564, - [SMALL_STATE(824)] = 18571, - [SMALL_STATE(825)] = 18576, - [SMALL_STATE(826)] = 18581, - [SMALL_STATE(827)] = 18588, - [SMALL_STATE(828)] = 18593, - [SMALL_STATE(829)] = 18600, - [SMALL_STATE(830)] = 18605, - [SMALL_STATE(831)] = 18610, - [SMALL_STATE(832)] = 18615, - [SMALL_STATE(833)] = 18622, - [SMALL_STATE(834)] = 18627, - [SMALL_STATE(835)] = 18634, - [SMALL_STATE(836)] = 18641, - [SMALL_STATE(837)] = 18648, - [SMALL_STATE(838)] = 18653, - [SMALL_STATE(839)] = 18658, - [SMALL_STATE(840)] = 18665, - [SMALL_STATE(841)] = 18670, - [SMALL_STATE(842)] = 18677, - [SMALL_STATE(843)] = 18684, - [SMALL_STATE(844)] = 18689, - [SMALL_STATE(845)] = 18696, - [SMALL_STATE(846)] = 18703, - [SMALL_STATE(847)] = 18710, - [SMALL_STATE(848)] = 18717, - [SMALL_STATE(849)] = 18722, - [SMALL_STATE(850)] = 18729, - [SMALL_STATE(851)] = 18734, - [SMALL_STATE(852)] = 18739, - [SMALL_STATE(853)] = 18744, - [SMALL_STATE(854)] = 18749, - [SMALL_STATE(855)] = 18754, - [SMALL_STATE(856)] = 18759, - [SMALL_STATE(857)] = 18764, - [SMALL_STATE(858)] = 18769, - [SMALL_STATE(859)] = 18776, - [SMALL_STATE(860)] = 18783, - [SMALL_STATE(861)] = 18788, - [SMALL_STATE(862)] = 18793, - [SMALL_STATE(863)] = 18800, - [SMALL_STATE(864)] = 18807, - [SMALL_STATE(865)] = 18812, - [SMALL_STATE(866)] = 18819, - [SMALL_STATE(867)] = 18826, - [SMALL_STATE(868)] = 18833, - [SMALL_STATE(869)] = 18838, - [SMALL_STATE(870)] = 18843, - [SMALL_STATE(871)] = 18848, - [SMALL_STATE(872)] = 18853, - [SMALL_STATE(873)] = 18858, - [SMALL_STATE(874)] = 18865, - [SMALL_STATE(875)] = 18870, - [SMALL_STATE(876)] = 18875, - [SMALL_STATE(877)] = 18880, - [SMALL_STATE(878)] = 18887, - [SMALL_STATE(879)] = 18892, - [SMALL_STATE(880)] = 18897, - [SMALL_STATE(881)] = 18902, - [SMALL_STATE(882)] = 18909, - [SMALL_STATE(883)] = 18914, - [SMALL_STATE(884)] = 18921, - [SMALL_STATE(885)] = 18928, - [SMALL_STATE(886)] = 18935, - [SMALL_STATE(887)] = 18940, - [SMALL_STATE(888)] = 18947, - [SMALL_STATE(889)] = 18954, - [SMALL_STATE(890)] = 18959, - [SMALL_STATE(891)] = 18966, - [SMALL_STATE(892)] = 18973, - [SMALL_STATE(893)] = 18978, - [SMALL_STATE(894)] = 18983, - [SMALL_STATE(895)] = 18990, - [SMALL_STATE(896)] = 18995, - [SMALL_STATE(897)] = 19000, - [SMALL_STATE(898)] = 19007, - [SMALL_STATE(899)] = 19014, - [SMALL_STATE(900)] = 19021, - [SMALL_STATE(901)] = 19028, - [SMALL_STATE(902)] = 19033, - [SMALL_STATE(903)] = 19038, - [SMALL_STATE(904)] = 19045, - [SMALL_STATE(905)] = 19052, - [SMALL_STATE(906)] = 19059, - [SMALL_STATE(907)] = 19066, - [SMALL_STATE(908)] = 19073, - [SMALL_STATE(909)] = 19080, - [SMALL_STATE(910)] = 19085, - [SMALL_STATE(911)] = 19092, - [SMALL_STATE(912)] = 19099, - [SMALL_STATE(913)] = 19104, - [SMALL_STATE(914)] = 19109, - [SMALL_STATE(915)] = 19114, - [SMALL_STATE(916)] = 19121, - [SMALL_STATE(917)] = 19126, - [SMALL_STATE(918)] = 19131, - [SMALL_STATE(919)] = 19136, - [SMALL_STATE(920)] = 19141, - [SMALL_STATE(921)] = 19146, - [SMALL_STATE(922)] = 19151, - [SMALL_STATE(923)] = 19156, - [SMALL_STATE(924)] = 19161, - [SMALL_STATE(925)] = 19166, - [SMALL_STATE(926)] = 19173, - [SMALL_STATE(927)] = 19180, - [SMALL_STATE(928)] = 19185, - [SMALL_STATE(929)] = 19190, - [SMALL_STATE(930)] = 19195, - [SMALL_STATE(931)] = 19202, - [SMALL_STATE(932)] = 19209, - [SMALL_STATE(933)] = 19216, - [SMALL_STATE(934)] = 19223, - [SMALL_STATE(935)] = 19228, - [SMALL_STATE(936)] = 19233, - [SMALL_STATE(937)] = 19240, - [SMALL_STATE(938)] = 19247, - [SMALL_STATE(939)] = 19252, - [SMALL_STATE(940)] = 19257, - [SMALL_STATE(941)] = 19262, - [SMALL_STATE(942)] = 19267, - [SMALL_STATE(943)] = 19274, - [SMALL_STATE(944)] = 19281, - [SMALL_STATE(945)] = 19286, - [SMALL_STATE(946)] = 19291, - [SMALL_STATE(947)] = 19296, - [SMALL_STATE(948)] = 19303, - [SMALL_STATE(949)] = 19310, - [SMALL_STATE(950)] = 19317, - [SMALL_STATE(951)] = 19324, - [SMALL_STATE(952)] = 19329, - [SMALL_STATE(953)] = 19334, - [SMALL_STATE(954)] = 19341, - [SMALL_STATE(955)] = 19348, - [SMALL_STATE(956)] = 19353, - [SMALL_STATE(957)] = 19358, - [SMALL_STATE(958)] = 19363, - [SMALL_STATE(959)] = 19370, - [SMALL_STATE(960)] = 19377, - [SMALL_STATE(961)] = 19382, - [SMALL_STATE(962)] = 19387, - [SMALL_STATE(963)] = 19392, - [SMALL_STATE(964)] = 19399, - [SMALL_STATE(965)] = 19406, - [SMALL_STATE(966)] = 19413, - [SMALL_STATE(967)] = 19420, - [SMALL_STATE(968)] = 19425, - [SMALL_STATE(969)] = 19432, - [SMALL_STATE(970)] = 19439, - [SMALL_STATE(971)] = 19444, - [SMALL_STATE(972)] = 19449, - [SMALL_STATE(973)] = 19454, - [SMALL_STATE(974)] = 19461, - [SMALL_STATE(975)] = 19468, - [SMALL_STATE(976)] = 19473, - [SMALL_STATE(977)] = 19478, - [SMALL_STATE(978)] = 19483, - [SMALL_STATE(979)] = 19490, - [SMALL_STATE(980)] = 19497, - [SMALL_STATE(981)] = 19504, - [SMALL_STATE(982)] = 19511, - [SMALL_STATE(983)] = 19516, - [SMALL_STATE(984)] = 19523, - [SMALL_STATE(985)] = 19530, - [SMALL_STATE(986)] = 19537, - [SMALL_STATE(987)] = 19544, - [SMALL_STATE(988)] = 19551, - [SMALL_STATE(989)] = 19556, - [SMALL_STATE(990)] = 19561, - [SMALL_STATE(991)] = 19566, - [SMALL_STATE(992)] = 19573, - [SMALL_STATE(993)] = 19580, - [SMALL_STATE(994)] = 19587, - [SMALL_STATE(995)] = 19594, - [SMALL_STATE(996)] = 19599, - [SMALL_STATE(997)] = 19606, - [SMALL_STATE(998)] = 19613, - [SMALL_STATE(999)] = 19618, - [SMALL_STATE(1000)] = 19623, - [SMALL_STATE(1001)] = 19628, - [SMALL_STATE(1002)] = 19633, - [SMALL_STATE(1003)] = 19638, - [SMALL_STATE(1004)] = 19643, - [SMALL_STATE(1005)] = 19648, - [SMALL_STATE(1006)] = 19653, - [SMALL_STATE(1007)] = 19658, - [SMALL_STATE(1008)] = 19663, - [SMALL_STATE(1009)] = 19670, - [SMALL_STATE(1010)] = 19675, - [SMALL_STATE(1011)] = 19682, - [SMALL_STATE(1012)] = 19687, - [SMALL_STATE(1013)] = 19694, - [SMALL_STATE(1014)] = 19699, - [SMALL_STATE(1015)] = 19706, - [SMALL_STATE(1016)] = 19713, - [SMALL_STATE(1017)] = 19718, - [SMALL_STATE(1018)] = 19723, - [SMALL_STATE(1019)] = 19728, - [SMALL_STATE(1020)] = 19733, - [SMALL_STATE(1021)] = 19738, - [SMALL_STATE(1022)] = 19743, - [SMALL_STATE(1023)] = 19747, - [SMALL_STATE(1024)] = 19751, - [SMALL_STATE(1025)] = 19755, - [SMALL_STATE(1026)] = 19759, - [SMALL_STATE(1027)] = 19763, - [SMALL_STATE(1028)] = 19767, - [SMALL_STATE(1029)] = 19771, - [SMALL_STATE(1030)] = 19775, - [SMALL_STATE(1031)] = 19779, - [SMALL_STATE(1032)] = 19783, - [SMALL_STATE(1033)] = 19787, - [SMALL_STATE(1034)] = 19791, - [SMALL_STATE(1035)] = 19795, - [SMALL_STATE(1036)] = 19799, - [SMALL_STATE(1037)] = 19803, - [SMALL_STATE(1038)] = 19807, - [SMALL_STATE(1039)] = 19811, - [SMALL_STATE(1040)] = 19815, - [SMALL_STATE(1041)] = 19819, - [SMALL_STATE(1042)] = 19823, - [SMALL_STATE(1043)] = 19827, - [SMALL_STATE(1044)] = 19831, - [SMALL_STATE(1045)] = 19835, - [SMALL_STATE(1046)] = 19839, - [SMALL_STATE(1047)] = 19843, - [SMALL_STATE(1048)] = 19847, - [SMALL_STATE(1049)] = 19851, - [SMALL_STATE(1050)] = 19855, - [SMALL_STATE(1051)] = 19859, - [SMALL_STATE(1052)] = 19863, - [SMALL_STATE(1053)] = 19867, - [SMALL_STATE(1054)] = 19871, - [SMALL_STATE(1055)] = 19875, - [SMALL_STATE(1056)] = 19879, - [SMALL_STATE(1057)] = 19883, - [SMALL_STATE(1058)] = 19887, - [SMALL_STATE(1059)] = 19891, - [SMALL_STATE(1060)] = 19895, - [SMALL_STATE(1061)] = 19899, - [SMALL_STATE(1062)] = 19903, - [SMALL_STATE(1063)] = 19907, - [SMALL_STATE(1064)] = 19911, - [SMALL_STATE(1065)] = 19915, - [SMALL_STATE(1066)] = 19919, - [SMALL_STATE(1067)] = 19923, - [SMALL_STATE(1068)] = 19927, - [SMALL_STATE(1069)] = 19931, - [SMALL_STATE(1070)] = 19935, - [SMALL_STATE(1071)] = 19939, - [SMALL_STATE(1072)] = 19943, - [SMALL_STATE(1073)] = 19947, - [SMALL_STATE(1074)] = 19951, - [SMALL_STATE(1075)] = 19955, - [SMALL_STATE(1076)] = 19959, - [SMALL_STATE(1077)] = 19963, - [SMALL_STATE(1078)] = 19967, - [SMALL_STATE(1079)] = 19971, - [SMALL_STATE(1080)] = 19975, - [SMALL_STATE(1081)] = 19979, - [SMALL_STATE(1082)] = 19983, - [SMALL_STATE(1083)] = 19987, - [SMALL_STATE(1084)] = 19991, - [SMALL_STATE(1085)] = 19995, - [SMALL_STATE(1086)] = 19999, - [SMALL_STATE(1087)] = 20003, - [SMALL_STATE(1088)] = 20007, - [SMALL_STATE(1089)] = 20011, - [SMALL_STATE(1090)] = 20015, - [SMALL_STATE(1091)] = 20019, - [SMALL_STATE(1092)] = 20023, - [SMALL_STATE(1093)] = 20027, - [SMALL_STATE(1094)] = 20031, - [SMALL_STATE(1095)] = 20035, - [SMALL_STATE(1096)] = 20039, - [SMALL_STATE(1097)] = 20043, - [SMALL_STATE(1098)] = 20047, - [SMALL_STATE(1099)] = 20051, - [SMALL_STATE(1100)] = 20055, - [SMALL_STATE(1101)] = 20059, - [SMALL_STATE(1102)] = 20063, - [SMALL_STATE(1103)] = 20067, - [SMALL_STATE(1104)] = 20071, - [SMALL_STATE(1105)] = 20075, - [SMALL_STATE(1106)] = 20079, - [SMALL_STATE(1107)] = 20083, - [SMALL_STATE(1108)] = 20087, - [SMALL_STATE(1109)] = 20091, - [SMALL_STATE(1110)] = 20095, - [SMALL_STATE(1111)] = 20099, - [SMALL_STATE(1112)] = 20103, - [SMALL_STATE(1113)] = 20107, - [SMALL_STATE(1114)] = 20111, - [SMALL_STATE(1115)] = 20115, - [SMALL_STATE(1116)] = 20119, - [SMALL_STATE(1117)] = 20123, - [SMALL_STATE(1118)] = 20127, - [SMALL_STATE(1119)] = 20131, - [SMALL_STATE(1120)] = 20135, - [SMALL_STATE(1121)] = 20139, - [SMALL_STATE(1122)] = 20143, - [SMALL_STATE(1123)] = 20147, - [SMALL_STATE(1124)] = 20151, - [SMALL_STATE(1125)] = 20155, - [SMALL_STATE(1126)] = 20159, - [SMALL_STATE(1127)] = 20163, - [SMALL_STATE(1128)] = 20167, - [SMALL_STATE(1129)] = 20171, - [SMALL_STATE(1130)] = 20175, - [SMALL_STATE(1131)] = 20179, - [SMALL_STATE(1132)] = 20183, - [SMALL_STATE(1133)] = 20187, - [SMALL_STATE(1134)] = 20191, - [SMALL_STATE(1135)] = 20195, - [SMALL_STATE(1136)] = 20199, - [SMALL_STATE(1137)] = 20203, - [SMALL_STATE(1138)] = 20207, - [SMALL_STATE(1139)] = 20211, - [SMALL_STATE(1140)] = 20215, - [SMALL_STATE(1141)] = 20219, - [SMALL_STATE(1142)] = 20223, - [SMALL_STATE(1143)] = 20227, - [SMALL_STATE(1144)] = 20231, - [SMALL_STATE(1145)] = 20235, - [SMALL_STATE(1146)] = 20239, - [SMALL_STATE(1147)] = 20243, - [SMALL_STATE(1148)] = 20247, - [SMALL_STATE(1149)] = 20251, - [SMALL_STATE(1150)] = 20255, - [SMALL_STATE(1151)] = 20259, - [SMALL_STATE(1152)] = 20263, - [SMALL_STATE(1153)] = 20267, - [SMALL_STATE(1154)] = 20271, - [SMALL_STATE(1155)] = 20275, - [SMALL_STATE(1156)] = 20279, - [SMALL_STATE(1157)] = 20283, - [SMALL_STATE(1158)] = 20287, - [SMALL_STATE(1159)] = 20291, - [SMALL_STATE(1160)] = 20295, - [SMALL_STATE(1161)] = 20299, - [SMALL_STATE(1162)] = 20303, - [SMALL_STATE(1163)] = 20307, - [SMALL_STATE(1164)] = 20311, - [SMALL_STATE(1165)] = 20315, - [SMALL_STATE(1166)] = 20319, - [SMALL_STATE(1167)] = 20323, - [SMALL_STATE(1168)] = 20327, - [SMALL_STATE(1169)] = 20331, - [SMALL_STATE(1170)] = 20335, - [SMALL_STATE(1171)] = 20339, - [SMALL_STATE(1172)] = 20343, - [SMALL_STATE(1173)] = 20347, - [SMALL_STATE(1174)] = 20351, - [SMALL_STATE(1175)] = 20355, - [SMALL_STATE(1176)] = 20359, - [SMALL_STATE(1177)] = 20363, - [SMALL_STATE(1178)] = 20367, - [SMALL_STATE(1179)] = 20371, - [SMALL_STATE(1180)] = 20375, - [SMALL_STATE(1181)] = 20379, - [SMALL_STATE(1182)] = 20383, - [SMALL_STATE(1183)] = 20387, - [SMALL_STATE(1184)] = 20391, - [SMALL_STATE(1185)] = 20395, - [SMALL_STATE(1186)] = 20399, - [SMALL_STATE(1187)] = 20403, - [SMALL_STATE(1188)] = 20407, - [SMALL_STATE(1189)] = 20411, - [SMALL_STATE(1190)] = 20415, - [SMALL_STATE(1191)] = 20419, - [SMALL_STATE(1192)] = 20423, - [SMALL_STATE(1193)] = 20427, - [SMALL_STATE(1194)] = 20431, - [SMALL_STATE(1195)] = 20435, - [SMALL_STATE(1196)] = 20439, - [SMALL_STATE(1197)] = 20443, - [SMALL_STATE(1198)] = 20447, - [SMALL_STATE(1199)] = 20451, - [SMALL_STATE(1200)] = 20455, - [SMALL_STATE(1201)] = 20459, - [SMALL_STATE(1202)] = 20463, - [SMALL_STATE(1203)] = 20467, - [SMALL_STATE(1204)] = 20471, - [SMALL_STATE(1205)] = 20475, - [SMALL_STATE(1206)] = 20479, - [SMALL_STATE(1207)] = 20483, - [SMALL_STATE(1208)] = 20487, - [SMALL_STATE(1209)] = 20491, - [SMALL_STATE(1210)] = 20495, - [SMALL_STATE(1211)] = 20499, - [SMALL_STATE(1212)] = 20503, - [SMALL_STATE(1213)] = 20507, - [SMALL_STATE(1214)] = 20511, - [SMALL_STATE(1215)] = 20515, - [SMALL_STATE(1216)] = 20519, - [SMALL_STATE(1217)] = 20523, - [SMALL_STATE(1218)] = 20527, - [SMALL_STATE(1219)] = 20531, - [SMALL_STATE(1220)] = 20535, - [SMALL_STATE(1221)] = 20539, - [SMALL_STATE(1222)] = 20543, - [SMALL_STATE(1223)] = 20547, - [SMALL_STATE(1224)] = 20551, - [SMALL_STATE(1225)] = 20555, - [SMALL_STATE(1226)] = 20559, - [SMALL_STATE(1227)] = 20563, - [SMALL_STATE(1228)] = 20567, - [SMALL_STATE(1229)] = 20571, - [SMALL_STATE(1230)] = 20575, - [SMALL_STATE(1231)] = 20579, - [SMALL_STATE(1232)] = 20583, - [SMALL_STATE(1233)] = 20587, - [SMALL_STATE(1234)] = 20591, - [SMALL_STATE(1235)] = 20595, - [SMALL_STATE(1236)] = 20599, - [SMALL_STATE(1237)] = 20603, - [SMALL_STATE(1238)] = 20607, - [SMALL_STATE(1239)] = 20611, - [SMALL_STATE(1240)] = 20615, - [SMALL_STATE(1241)] = 20619, - [SMALL_STATE(1242)] = 20623, - [SMALL_STATE(1243)] = 20627, - [SMALL_STATE(1244)] = 20631, - [SMALL_STATE(1245)] = 20635, - [SMALL_STATE(1246)] = 20639, - [SMALL_STATE(1247)] = 20643, - [SMALL_STATE(1248)] = 20647, - [SMALL_STATE(1249)] = 20651, - [SMALL_STATE(1250)] = 20655, - [SMALL_STATE(1251)] = 20659, - [SMALL_STATE(1252)] = 20663, - [SMALL_STATE(1253)] = 20667, - [SMALL_STATE(1254)] = 20671, - [SMALL_STATE(1255)] = 20675, - [SMALL_STATE(1256)] = 20679, - [SMALL_STATE(1257)] = 20683, - [SMALL_STATE(1258)] = 20687, - [SMALL_STATE(1259)] = 20691, - [SMALL_STATE(1260)] = 20695, - [SMALL_STATE(1261)] = 20699, - [SMALL_STATE(1262)] = 20703, - [SMALL_STATE(1263)] = 20707, - [SMALL_STATE(1264)] = 20711, - [SMALL_STATE(1265)] = 20715, - [SMALL_STATE(1266)] = 20719, - [SMALL_STATE(1267)] = 20723, - [SMALL_STATE(1268)] = 20727, - [SMALL_STATE(1269)] = 20731, - [SMALL_STATE(1270)] = 20735, - [SMALL_STATE(1271)] = 20739, - [SMALL_STATE(1272)] = 20743, - [SMALL_STATE(1273)] = 20747, - [SMALL_STATE(1274)] = 20751, - [SMALL_STATE(1275)] = 20755, - [SMALL_STATE(1276)] = 20759, - [SMALL_STATE(1277)] = 20763, - [SMALL_STATE(1278)] = 20767, - [SMALL_STATE(1279)] = 20771, - [SMALL_STATE(1280)] = 20775, - [SMALL_STATE(1281)] = 20779, - [SMALL_STATE(1282)] = 20783, - [SMALL_STATE(1283)] = 20787, - [SMALL_STATE(1284)] = 20791, - [SMALL_STATE(1285)] = 20795, - [SMALL_STATE(1286)] = 20799, - [SMALL_STATE(1287)] = 20803, - [SMALL_STATE(1288)] = 20807, - [SMALL_STATE(1289)] = 20811, - [SMALL_STATE(1290)] = 20815, - [SMALL_STATE(1291)] = 20819, - [SMALL_STATE(1292)] = 20823, - [SMALL_STATE(1293)] = 20827, - [SMALL_STATE(1294)] = 20831, - [SMALL_STATE(1295)] = 20835, - [SMALL_STATE(1296)] = 20839, - [SMALL_STATE(1297)] = 20843, - [SMALL_STATE(1298)] = 20847, - [SMALL_STATE(1299)] = 20851, - [SMALL_STATE(1300)] = 20855, - [SMALL_STATE(1301)] = 20859, - [SMALL_STATE(1302)] = 20863, - [SMALL_STATE(1303)] = 20867, - [SMALL_STATE(1304)] = 20871, - [SMALL_STATE(1305)] = 20875, - [SMALL_STATE(1306)] = 20879, - [SMALL_STATE(1307)] = 20883, - [SMALL_STATE(1308)] = 20887, - [SMALL_STATE(1309)] = 20891, - [SMALL_STATE(1310)] = 20895, - [SMALL_STATE(1311)] = 20899, - [SMALL_STATE(1312)] = 20903, - [SMALL_STATE(1313)] = 20907, - [SMALL_STATE(1314)] = 20911, - [SMALL_STATE(1315)] = 20915, - [SMALL_STATE(1316)] = 20919, - [SMALL_STATE(1317)] = 20923, - [SMALL_STATE(1318)] = 20927, + [SMALL_STATE(241)] = 7783, + [SMALL_STATE(242)] = 7817, + [SMALL_STATE(243)] = 7851, + [SMALL_STATE(244)] = 7883, + [SMALL_STATE(245)] = 7915, + [SMALL_STATE(246)] = 7947, + [SMALL_STATE(247)] = 7979, + [SMALL_STATE(248)] = 8011, + [SMALL_STATE(249)] = 8043, + [SMALL_STATE(250)] = 8075, + [SMALL_STATE(251)] = 8107, + [SMALL_STATE(252)] = 8139, + [SMALL_STATE(253)] = 8168, + [SMALL_STATE(254)] = 8193, + [SMALL_STATE(255)] = 8218, + [SMALL_STATE(256)] = 8239, + [SMALL_STATE(257)] = 8268, + [SMALL_STATE(258)] = 8299, + [SMALL_STATE(259)] = 8328, + [SMALL_STATE(260)] = 8357, + [SMALL_STATE(261)] = 8386, + [SMALL_STATE(262)] = 8414, + [SMALL_STATE(263)] = 8442, + [SMALL_STATE(264)] = 8470, + [SMALL_STATE(265)] = 8498, + [SMALL_STATE(266)] = 8518, + [SMALL_STATE(267)] = 8546, + [SMALL_STATE(268)] = 8574, + [SMALL_STATE(269)] = 8602, + [SMALL_STATE(270)] = 8630, + [SMALL_STATE(271)] = 8658, + [SMALL_STATE(272)] = 8686, + [SMALL_STATE(273)] = 8714, + [SMALL_STATE(274)] = 8742, + [SMALL_STATE(275)] = 8770, + [SMALL_STATE(276)] = 8798, + [SMALL_STATE(277)] = 8826, + [SMALL_STATE(278)] = 8854, + [SMALL_STATE(279)] = 8882, + [SMALL_STATE(280)] = 8910, + [SMALL_STATE(281)] = 8938, + [SMALL_STATE(282)] = 8966, + [SMALL_STATE(283)] = 8994, + [SMALL_STATE(284)] = 9022, + [SMALL_STATE(285)] = 9050, + [SMALL_STATE(286)] = 9078, + [SMALL_STATE(287)] = 9106, + [SMALL_STATE(288)] = 9134, + [SMALL_STATE(289)] = 9162, + [SMALL_STATE(290)] = 9190, + [SMALL_STATE(291)] = 9218, + [SMALL_STATE(292)] = 9246, + [SMALL_STATE(293)] = 9274, + [SMALL_STATE(294)] = 9302, + [SMALL_STATE(295)] = 9330, + [SMALL_STATE(296)] = 9358, + [SMALL_STATE(297)] = 9383, + [SMALL_STATE(298)] = 9406, + [SMALL_STATE(299)] = 9429, + [SMALL_STATE(300)] = 9454, + [SMALL_STATE(301)] = 9476, + [SMALL_STATE(302)] = 9510, + [SMALL_STATE(303)] = 9532, + [SMALL_STATE(304)] = 9554, + [SMALL_STATE(305)] = 9576, + [SMALL_STATE(306)] = 9598, + [SMALL_STATE(307)] = 9620, + [SMALL_STATE(308)] = 9641, + [SMALL_STATE(309)] = 9674, + [SMALL_STATE(310)] = 9707, + [SMALL_STATE(311)] = 9740, + [SMALL_STATE(312)] = 9773, + [SMALL_STATE(313)] = 9800, + [SMALL_STATE(314)] = 9817, + [SMALL_STATE(315)] = 9834, + [SMALL_STATE(316)] = 9867, + [SMALL_STATE(317)] = 9900, + [SMALL_STATE(318)] = 9919, + [SMALL_STATE(319)] = 9936, + [SMALL_STATE(320)] = 9969, + [SMALL_STATE(321)] = 10002, + [SMALL_STATE(322)] = 10021, + [SMALL_STATE(323)] = 10040, + [SMALL_STATE(324)] = 10066, + [SMALL_STATE(325)] = 10082, + [SMALL_STATE(326)] = 10108, + [SMALL_STATE(327)] = 10124, + [SMALL_STATE(328)] = 10138, + [SMALL_STATE(329)] = 10151, + [SMALL_STATE(330)] = 10173, + [SMALL_STATE(331)] = 10196, + [SMALL_STATE(332)] = 10217, + [SMALL_STATE(333)] = 10240, + [SMALL_STATE(334)] = 10263, + [SMALL_STATE(335)] = 10286, + [SMALL_STATE(336)] = 10311, + [SMALL_STATE(337)] = 10334, + [SMALL_STATE(338)] = 10357, + [SMALL_STATE(339)] = 10382, + [SMALL_STATE(340)] = 10405, + [SMALL_STATE(341)] = 10430, + [SMALL_STATE(342)] = 10453, + [SMALL_STATE(343)] = 10476, + [SMALL_STATE(344)] = 10499, + [SMALL_STATE(345)] = 10524, + [SMALL_STATE(346)] = 10547, + [SMALL_STATE(347)] = 10572, + [SMALL_STATE(348)] = 10593, + [SMALL_STATE(349)] = 10616, + [SMALL_STATE(350)] = 10639, + [SMALL_STATE(351)] = 10662, + [SMALL_STATE(352)] = 10687, + [SMALL_STATE(353)] = 10710, + [SMALL_STATE(354)] = 10732, + [SMALL_STATE(355)] = 10754, + [SMALL_STATE(356)] = 10776, + [SMALL_STATE(357)] = 10798, + [SMALL_STATE(358)] = 10820, + [SMALL_STATE(359)] = 10842, + [SMALL_STATE(360)] = 10864, + [SMALL_STATE(361)] = 10886, + [SMALL_STATE(362)] = 10908, + [SMALL_STATE(363)] = 10930, + [SMALL_STATE(364)] = 10952, + [SMALL_STATE(365)] = 10974, + [SMALL_STATE(366)] = 10996, + [SMALL_STATE(367)] = 11016, + [SMALL_STATE(368)] = 11038, + [SMALL_STATE(369)] = 11060, + [SMALL_STATE(370)] = 11080, + [SMALL_STATE(371)] = 11102, + [SMALL_STATE(372)] = 11124, + [SMALL_STATE(373)] = 11146, + [SMALL_STATE(374)] = 11155, + [SMALL_STATE(375)] = 11164, + [SMALL_STATE(376)] = 11183, + [SMALL_STATE(377)] = 11192, + [SMALL_STATE(378)] = 11201, + [SMALL_STATE(379)] = 11210, + [SMALL_STATE(380)] = 11229, + [SMALL_STATE(381)] = 11248, + [SMALL_STATE(382)] = 11267, + [SMALL_STATE(383)] = 11286, + [SMALL_STATE(384)] = 11295, + [SMALL_STATE(385)] = 11314, + [SMALL_STATE(386)] = 11333, + [SMALL_STATE(387)] = 11352, + [SMALL_STATE(388)] = 11371, + [SMALL_STATE(389)] = 11390, + [SMALL_STATE(390)] = 11409, + [SMALL_STATE(391)] = 11428, + [SMALL_STATE(392)] = 11447, + [SMALL_STATE(393)] = 11466, + [SMALL_STATE(394)] = 11485, + [SMALL_STATE(395)] = 11504, + [SMALL_STATE(396)] = 11523, + [SMALL_STATE(397)] = 11542, + [SMALL_STATE(398)] = 11561, + [SMALL_STATE(399)] = 11580, + [SMALL_STATE(400)] = 11599, + [SMALL_STATE(401)] = 11618, + [SMALL_STATE(402)] = 11637, + [SMALL_STATE(403)] = 11656, + [SMALL_STATE(404)] = 11675, + [SMALL_STATE(405)] = 11694, + [SMALL_STATE(406)] = 11713, + [SMALL_STATE(407)] = 11732, + [SMALL_STATE(408)] = 11751, + [SMALL_STATE(409)] = 11770, + [SMALL_STATE(410)] = 11789, + [SMALL_STATE(411)] = 11808, + [SMALL_STATE(412)] = 11827, + [SMALL_STATE(413)] = 11846, + [SMALL_STATE(414)] = 11865, + [SMALL_STATE(415)] = 11884, + [SMALL_STATE(416)] = 11903, + [SMALL_STATE(417)] = 11922, + [SMALL_STATE(418)] = 11931, + [SMALL_STATE(419)] = 11940, + [SMALL_STATE(420)] = 11959, + [SMALL_STATE(421)] = 11978, + [SMALL_STATE(422)] = 11997, + [SMALL_STATE(423)] = 12006, + [SMALL_STATE(424)] = 12015, + [SMALL_STATE(425)] = 12034, + [SMALL_STATE(426)] = 12043, + [SMALL_STATE(427)] = 12052, + [SMALL_STATE(428)] = 12061, + [SMALL_STATE(429)] = 12080, + [SMALL_STATE(430)] = 12089, + [SMALL_STATE(431)] = 12108, + [SMALL_STATE(432)] = 12127, + [SMALL_STATE(433)] = 12146, + [SMALL_STATE(434)] = 12165, + [SMALL_STATE(435)] = 12184, + [SMALL_STATE(436)] = 12203, + [SMALL_STATE(437)] = 12212, + [SMALL_STATE(438)] = 12231, + [SMALL_STATE(439)] = 12240, + [SMALL_STATE(440)] = 12259, + [SMALL_STATE(441)] = 12278, + [SMALL_STATE(442)] = 12297, + [SMALL_STATE(443)] = 12306, + [SMALL_STATE(444)] = 12314, + [SMALL_STATE(445)] = 12322, + [SMALL_STATE(446)] = 12330, + [SMALL_STATE(447)] = 12338, + [SMALL_STATE(448)] = 12346, + [SMALL_STATE(449)] = 12360, + [SMALL_STATE(450)] = 12374, + [SMALL_STATE(451)] = 12382, + [SMALL_STATE(452)] = 12396, + [SMALL_STATE(453)] = 12404, + [SMALL_STATE(454)] = 12412, + [SMALL_STATE(455)] = 12420, + [SMALL_STATE(456)] = 12428, + [SMALL_STATE(457)] = 12440, + [SMALL_STATE(458)] = 12448, + [SMALL_STATE(459)] = 12456, + [SMALL_STATE(460)] = 12464, + [SMALL_STATE(461)] = 12472, + [SMALL_STATE(462)] = 12485, + [SMALL_STATE(463)] = 12498, + [SMALL_STATE(464)] = 12509, + [SMALL_STATE(465)] = 12522, + [SMALL_STATE(466)] = 12533, + [SMALL_STATE(467)] = 12544, + [SMALL_STATE(468)] = 12553, + [SMALL_STATE(469)] = 12564, + [SMALL_STATE(470)] = 12575, + [SMALL_STATE(471)] = 12584, + [SMALL_STATE(472)] = 12593, + [SMALL_STATE(473)] = 12602, + [SMALL_STATE(474)] = 12611, + [SMALL_STATE(475)] = 12620, + [SMALL_STATE(476)] = 12629, + [SMALL_STATE(477)] = 12638, + [SMALL_STATE(478)] = 12647, + [SMALL_STATE(479)] = 12656, + [SMALL_STATE(480)] = 12665, + [SMALL_STATE(481)] = 12674, + [SMALL_STATE(482)] = 12685, + [SMALL_STATE(483)] = 12696, + [SMALL_STATE(484)] = 12709, + [SMALL_STATE(485)] = 12722, + [SMALL_STATE(486)] = 12735, + [SMALL_STATE(487)] = 12748, + [SMALL_STATE(488)] = 12761, + [SMALL_STATE(489)] = 12774, + [SMALL_STATE(490)] = 12787, + [SMALL_STATE(491)] = 12800, + [SMALL_STATE(492)] = 12813, + [SMALL_STATE(493)] = 12826, + [SMALL_STATE(494)] = 12839, + [SMALL_STATE(495)] = 12852, + [SMALL_STATE(496)] = 12865, + [SMALL_STATE(497)] = 12878, + [SMALL_STATE(498)] = 12891, + [SMALL_STATE(499)] = 12902, + [SMALL_STATE(500)] = 12915, + [SMALL_STATE(501)] = 12928, + [SMALL_STATE(502)] = 12941, + [SMALL_STATE(503)] = 12954, + [SMALL_STATE(504)] = 12967, + [SMALL_STATE(505)] = 12980, + [SMALL_STATE(506)] = 12993, + [SMALL_STATE(507)] = 13006, + [SMALL_STATE(508)] = 13019, + [SMALL_STATE(509)] = 13032, + [SMALL_STATE(510)] = 13045, + [SMALL_STATE(511)] = 13058, + [SMALL_STATE(512)] = 13071, + [SMALL_STATE(513)] = 13084, + [SMALL_STATE(514)] = 13097, + [SMALL_STATE(515)] = 13110, + [SMALL_STATE(516)] = 13123, + [SMALL_STATE(517)] = 13136, + [SMALL_STATE(518)] = 13149, + [SMALL_STATE(519)] = 13162, + [SMALL_STATE(520)] = 13175, + [SMALL_STATE(521)] = 13188, + [SMALL_STATE(522)] = 13201, + [SMALL_STATE(523)] = 13214, + [SMALL_STATE(524)] = 13227, + [SMALL_STATE(525)] = 13240, + [SMALL_STATE(526)] = 13253, + [SMALL_STATE(527)] = 13266, + [SMALL_STATE(528)] = 13279, + [SMALL_STATE(529)] = 13292, + [SMALL_STATE(530)] = 13305, + [SMALL_STATE(531)] = 13318, + [SMALL_STATE(532)] = 13331, + [SMALL_STATE(533)] = 13344, + [SMALL_STATE(534)] = 13357, + [SMALL_STATE(535)] = 13370, + [SMALL_STATE(536)] = 13383, + [SMALL_STATE(537)] = 13396, + [SMALL_STATE(538)] = 13409, + [SMALL_STATE(539)] = 13422, + [SMALL_STATE(540)] = 13435, + [SMALL_STATE(541)] = 13448, + [SMALL_STATE(542)] = 13461, + [SMALL_STATE(543)] = 13474, + [SMALL_STATE(544)] = 13487, + [SMALL_STATE(545)] = 13500, + [SMALL_STATE(546)] = 13513, + [SMALL_STATE(547)] = 13526, + [SMALL_STATE(548)] = 13539, + [SMALL_STATE(549)] = 13552, + [SMALL_STATE(550)] = 13565, + [SMALL_STATE(551)] = 13578, + [SMALL_STATE(552)] = 13591, + [SMALL_STATE(553)] = 13604, + [SMALL_STATE(554)] = 13617, + [SMALL_STATE(555)] = 13630, + [SMALL_STATE(556)] = 13643, + [SMALL_STATE(557)] = 13656, + [SMALL_STATE(558)] = 13669, + [SMALL_STATE(559)] = 13682, + [SMALL_STATE(560)] = 13695, + [SMALL_STATE(561)] = 13708, + [SMALL_STATE(562)] = 13721, + [SMALL_STATE(563)] = 13734, + [SMALL_STATE(564)] = 13747, + [SMALL_STATE(565)] = 13760, + [SMALL_STATE(566)] = 13773, + [SMALL_STATE(567)] = 13786, + [SMALL_STATE(568)] = 13799, + [SMALL_STATE(569)] = 13812, + [SMALL_STATE(570)] = 13825, + [SMALL_STATE(571)] = 13838, + [SMALL_STATE(572)] = 13851, + [SMALL_STATE(573)] = 13864, + [SMALL_STATE(574)] = 13877, + [SMALL_STATE(575)] = 13890, + [SMALL_STATE(576)] = 13903, + [SMALL_STATE(577)] = 13916, + [SMALL_STATE(578)] = 13929, + [SMALL_STATE(579)] = 13942, + [SMALL_STATE(580)] = 13955, + [SMALL_STATE(581)] = 13968, + [SMALL_STATE(582)] = 13981, + [SMALL_STATE(583)] = 13987, + [SMALL_STATE(584)] = 13997, + [SMALL_STATE(585)] = 14007, + [SMALL_STATE(586)] = 14013, + [SMALL_STATE(587)] = 14023, + [SMALL_STATE(588)] = 14029, + [SMALL_STATE(589)] = 14039, + [SMALL_STATE(590)] = 14045, + [SMALL_STATE(591)] = 14051, + [SMALL_STATE(592)] = 14057, + [SMALL_STATE(593)] = 14063, + [SMALL_STATE(594)] = 14069, + [SMALL_STATE(595)] = 14075, + [SMALL_STATE(596)] = 14081, + [SMALL_STATE(597)] = 14091, + [SMALL_STATE(598)] = 14101, + [SMALL_STATE(599)] = 14111, + [SMALL_STATE(600)] = 14119, + [SMALL_STATE(601)] = 14129, + [SMALL_STATE(602)] = 14135, + [SMALL_STATE(603)] = 14141, + [SMALL_STATE(604)] = 14147, + [SMALL_STATE(605)] = 14157, + [SMALL_STATE(606)] = 14163, + [SMALL_STATE(607)] = 14169, + [SMALL_STATE(608)] = 14175, + [SMALL_STATE(609)] = 14181, + [SMALL_STATE(610)] = 14187, + [SMALL_STATE(611)] = 14193, + [SMALL_STATE(612)] = 14199, + [SMALL_STATE(613)] = 14205, + [SMALL_STATE(614)] = 14211, + [SMALL_STATE(615)] = 14221, + [SMALL_STATE(616)] = 14231, + [SMALL_STATE(617)] = 14241, + [SMALL_STATE(618)] = 14247, + [SMALL_STATE(619)] = 14253, + [SMALL_STATE(620)] = 14259, + [SMALL_STATE(621)] = 14265, + [SMALL_STATE(622)] = 14271, + [SMALL_STATE(623)] = 14277, + [SMALL_STATE(624)] = 14283, + [SMALL_STATE(625)] = 14289, + [SMALL_STATE(626)] = 14295, + [SMALL_STATE(627)] = 14301, + [SMALL_STATE(628)] = 14307, + [SMALL_STATE(629)] = 14313, + [SMALL_STATE(630)] = 14319, + [SMALL_STATE(631)] = 14325, + [SMALL_STATE(632)] = 14331, + [SMALL_STATE(633)] = 14341, + [SMALL_STATE(634)] = 14349, + [SMALL_STATE(635)] = 14355, + [SMALL_STATE(636)] = 14361, + [SMALL_STATE(637)] = 14367, + [SMALL_STATE(638)] = 14373, + [SMALL_STATE(639)] = 14379, + [SMALL_STATE(640)] = 14385, + [SMALL_STATE(641)] = 14391, + [SMALL_STATE(642)] = 14401, + [SMALL_STATE(643)] = 14407, + [SMALL_STATE(644)] = 14413, + [SMALL_STATE(645)] = 14421, + [SMALL_STATE(646)] = 14427, + [SMALL_STATE(647)] = 14433, + [SMALL_STATE(648)] = 14441, + [SMALL_STATE(649)] = 14449, + [SMALL_STATE(650)] = 14457, + [SMALL_STATE(651)] = 14463, + [SMALL_STATE(652)] = 14471, + [SMALL_STATE(653)] = 14477, + [SMALL_STATE(654)] = 14485, + [SMALL_STATE(655)] = 14491, + [SMALL_STATE(656)] = 14497, + [SMALL_STATE(657)] = 14503, + [SMALL_STATE(658)] = 14509, + [SMALL_STATE(659)] = 14515, + [SMALL_STATE(660)] = 14521, + [SMALL_STATE(661)] = 14527, + [SMALL_STATE(662)] = 14533, + [SMALL_STATE(663)] = 14539, + [SMALL_STATE(664)] = 14545, + [SMALL_STATE(665)] = 14551, + [SMALL_STATE(666)] = 14559, + [SMALL_STATE(667)] = 14565, + [SMALL_STATE(668)] = 14571, + [SMALL_STATE(669)] = 14577, + [SMALL_STATE(670)] = 14583, + [SMALL_STATE(671)] = 14593, + [SMALL_STATE(672)] = 14599, + [SMALL_STATE(673)] = 14605, + [SMALL_STATE(674)] = 14611, + [SMALL_STATE(675)] = 14621, + [SMALL_STATE(676)] = 14631, + [SMALL_STATE(677)] = 14641, + [SMALL_STATE(678)] = 14649, + [SMALL_STATE(679)] = 14657, + [SMALL_STATE(680)] = 14667, + [SMALL_STATE(681)] = 14677, + [SMALL_STATE(682)] = 14687, + [SMALL_STATE(683)] = 14697, + [SMALL_STATE(684)] = 14707, + [SMALL_STATE(685)] = 14717, + [SMALL_STATE(686)] = 14723, + [SMALL_STATE(687)] = 14729, + [SMALL_STATE(688)] = 14739, + [SMALL_STATE(689)] = 14747, + [SMALL_STATE(690)] = 14753, + [SMALL_STATE(691)] = 14763, + [SMALL_STATE(692)] = 14769, + [SMALL_STATE(693)] = 14775, + [SMALL_STATE(694)] = 14781, + [SMALL_STATE(695)] = 14789, + [SMALL_STATE(696)] = 14795, + [SMALL_STATE(697)] = 14803, + [SMALL_STATE(698)] = 14810, + [SMALL_STATE(699)] = 14815, + [SMALL_STATE(700)] = 14820, + [SMALL_STATE(701)] = 14825, + [SMALL_STATE(702)] = 14830, + [SMALL_STATE(703)] = 14835, + [SMALL_STATE(704)] = 14840, + [SMALL_STATE(705)] = 14845, + [SMALL_STATE(706)] = 14850, + [SMALL_STATE(707)] = 14855, + [SMALL_STATE(708)] = 14860, + [SMALL_STATE(709)] = 14865, + [SMALL_STATE(710)] = 14870, + [SMALL_STATE(711)] = 14875, + [SMALL_STATE(712)] = 14882, + [SMALL_STATE(713)] = 14887, + [SMALL_STATE(714)] = 14892, + [SMALL_STATE(715)] = 14897, + [SMALL_STATE(716)] = 14902, + [SMALL_STATE(717)] = 14907, + [SMALL_STATE(718)] = 14914, + [SMALL_STATE(719)] = 14921, + [SMALL_STATE(720)] = 14928, + [SMALL_STATE(721)] = 14935, + [SMALL_STATE(722)] = 14940, + [SMALL_STATE(723)] = 14945, + [SMALL_STATE(724)] = 14950, + [SMALL_STATE(725)] = 14955, + [SMALL_STATE(726)] = 14960, + [SMALL_STATE(727)] = 14965, + [SMALL_STATE(728)] = 14972, + [SMALL_STATE(729)] = 14979, + [SMALL_STATE(730)] = 14984, + [SMALL_STATE(731)] = 14991, + [SMALL_STATE(732)] = 14996, + [SMALL_STATE(733)] = 15001, + [SMALL_STATE(734)] = 15006, + [SMALL_STATE(735)] = 15011, + [SMALL_STATE(736)] = 15018, + [SMALL_STATE(737)] = 15023, + [SMALL_STATE(738)] = 15028, + [SMALL_STATE(739)] = 15035, + [SMALL_STATE(740)] = 15042, + [SMALL_STATE(741)] = 15049, + [SMALL_STATE(742)] = 15054, + [SMALL_STATE(743)] = 15059, + [SMALL_STATE(744)] = 15064, + [SMALL_STATE(745)] = 15069, + [SMALL_STATE(746)] = 15074, + [SMALL_STATE(747)] = 15079, + [SMALL_STATE(748)] = 15084, + [SMALL_STATE(749)] = 15089, + [SMALL_STATE(750)] = 15094, + [SMALL_STATE(751)] = 15099, + [SMALL_STATE(752)] = 15104, + [SMALL_STATE(753)] = 15109, + [SMALL_STATE(754)] = 15114, + [SMALL_STATE(755)] = 15119, + [SMALL_STATE(756)] = 15124, + [SMALL_STATE(757)] = 15129, + [SMALL_STATE(758)] = 15134, + [SMALL_STATE(759)] = 15139, + [SMALL_STATE(760)] = 15144, + [SMALL_STATE(761)] = 15149, + [SMALL_STATE(762)] = 15154, + [SMALL_STATE(763)] = 15159, + [SMALL_STATE(764)] = 15164, + [SMALL_STATE(765)] = 15171, + [SMALL_STATE(766)] = 15176, + [SMALL_STATE(767)] = 15181, + [SMALL_STATE(768)] = 15188, + [SMALL_STATE(769)] = 15193, + [SMALL_STATE(770)] = 15198, + [SMALL_STATE(771)] = 15205, + [SMALL_STATE(772)] = 15212, + [SMALL_STATE(773)] = 15217, + [SMALL_STATE(774)] = 15222, + [SMALL_STATE(775)] = 15229, + [SMALL_STATE(776)] = 15234, + [SMALL_STATE(777)] = 15239, + [SMALL_STATE(778)] = 15246, + [SMALL_STATE(779)] = 15251, + [SMALL_STATE(780)] = 15256, + [SMALL_STATE(781)] = 15261, + [SMALL_STATE(782)] = 15266, + [SMALL_STATE(783)] = 15271, + [SMALL_STATE(784)] = 15276, + [SMALL_STATE(785)] = 15281, + [SMALL_STATE(786)] = 15286, + [SMALL_STATE(787)] = 15293, + [SMALL_STATE(788)] = 15300, + [SMALL_STATE(789)] = 15305, + [SMALL_STATE(790)] = 15310, + [SMALL_STATE(791)] = 15315, + [SMALL_STATE(792)] = 15320, + [SMALL_STATE(793)] = 15325, + [SMALL_STATE(794)] = 15330, + [SMALL_STATE(795)] = 15337, + [SMALL_STATE(796)] = 15342, + [SMALL_STATE(797)] = 15347, + [SMALL_STATE(798)] = 15352, + [SMALL_STATE(799)] = 15359, + [SMALL_STATE(800)] = 15366, + [SMALL_STATE(801)] = 15373, + [SMALL_STATE(802)] = 15378, + [SMALL_STATE(803)] = 15385, + [SMALL_STATE(804)] = 15390, + [SMALL_STATE(805)] = 15397, + [SMALL_STATE(806)] = 15404, + [SMALL_STATE(807)] = 15411, + [SMALL_STATE(808)] = 15416, + [SMALL_STATE(809)] = 15423, + [SMALL_STATE(810)] = 15428, + [SMALL_STATE(811)] = 15433, + [SMALL_STATE(812)] = 15438, + [SMALL_STATE(813)] = 15443, + [SMALL_STATE(814)] = 15448, + [SMALL_STATE(815)] = 15455, + [SMALL_STATE(816)] = 15460, + [SMALL_STATE(817)] = 15465, + [SMALL_STATE(818)] = 15472, + [SMALL_STATE(819)] = 15477, + [SMALL_STATE(820)] = 15482, + [SMALL_STATE(821)] = 15487, + [SMALL_STATE(822)] = 15492, + [SMALL_STATE(823)] = 15497, + [SMALL_STATE(824)] = 15502, + [SMALL_STATE(825)] = 15507, + [SMALL_STATE(826)] = 15512, + [SMALL_STATE(827)] = 15519, + [SMALL_STATE(828)] = 15524, + [SMALL_STATE(829)] = 15531, + [SMALL_STATE(830)] = 15536, + [SMALL_STATE(831)] = 15541, + [SMALL_STATE(832)] = 15546, + [SMALL_STATE(833)] = 15551, + [SMALL_STATE(834)] = 15558, + [SMALL_STATE(835)] = 15563, + [SMALL_STATE(836)] = 15570, + [SMALL_STATE(837)] = 15577, + [SMALL_STATE(838)] = 15584, + [SMALL_STATE(839)] = 15589, + [SMALL_STATE(840)] = 15596, + [SMALL_STATE(841)] = 15601, + [SMALL_STATE(842)] = 15606, + [SMALL_STATE(843)] = 15611, + [SMALL_STATE(844)] = 15616, + [SMALL_STATE(845)] = 15621, + [SMALL_STATE(846)] = 15626, + [SMALL_STATE(847)] = 15631, + [SMALL_STATE(848)] = 15636, + [SMALL_STATE(849)] = 15641, + [SMALL_STATE(850)] = 15646, + [SMALL_STATE(851)] = 15651, + [SMALL_STATE(852)] = 15656, + [SMALL_STATE(853)] = 15661, + [SMALL_STATE(854)] = 15666, + [SMALL_STATE(855)] = 15671, + [SMALL_STATE(856)] = 15676, + [SMALL_STATE(857)] = 15681, + [SMALL_STATE(858)] = 15686, + [SMALL_STATE(859)] = 15691, + [SMALL_STATE(860)] = 15698, + [SMALL_STATE(861)] = 15705, + [SMALL_STATE(862)] = 15712, + [SMALL_STATE(863)] = 15719, + [SMALL_STATE(864)] = 15726, + [SMALL_STATE(865)] = 15733, + [SMALL_STATE(866)] = 15740, + [SMALL_STATE(867)] = 15747, + [SMALL_STATE(868)] = 15754, + [SMALL_STATE(869)] = 15761, + [SMALL_STATE(870)] = 15768, + [SMALL_STATE(871)] = 15775, + [SMALL_STATE(872)] = 15782, + [SMALL_STATE(873)] = 15789, + [SMALL_STATE(874)] = 15796, + [SMALL_STATE(875)] = 15803, + [SMALL_STATE(876)] = 15810, + [SMALL_STATE(877)] = 15815, + [SMALL_STATE(878)] = 15820, + [SMALL_STATE(879)] = 15825, + [SMALL_STATE(880)] = 15832, + [SMALL_STATE(881)] = 15839, + [SMALL_STATE(882)] = 15844, + [SMALL_STATE(883)] = 15849, + [SMALL_STATE(884)] = 15856, + [SMALL_STATE(885)] = 15863, + [SMALL_STATE(886)] = 15870, + [SMALL_STATE(887)] = 15877, + [SMALL_STATE(888)] = 15884, + [SMALL_STATE(889)] = 15889, + [SMALL_STATE(890)] = 15896, + [SMALL_STATE(891)] = 15903, + [SMALL_STATE(892)] = 15910, + [SMALL_STATE(893)] = 15915, + [SMALL_STATE(894)] = 15920, + [SMALL_STATE(895)] = 15927, + [SMALL_STATE(896)] = 15934, + [SMALL_STATE(897)] = 15939, + [SMALL_STATE(898)] = 15946, + [SMALL_STATE(899)] = 15953, + [SMALL_STATE(900)] = 15960, + [SMALL_STATE(901)] = 15967, + [SMALL_STATE(902)] = 15974, + [SMALL_STATE(903)] = 15981, + [SMALL_STATE(904)] = 15988, + [SMALL_STATE(905)] = 15995, + [SMALL_STATE(906)] = 16000, + [SMALL_STATE(907)] = 16007, + [SMALL_STATE(908)] = 16012, + [SMALL_STATE(909)] = 16019, + [SMALL_STATE(910)] = 16026, + [SMALL_STATE(911)] = 16033, + [SMALL_STATE(912)] = 16040, + [SMALL_STATE(913)] = 16045, + [SMALL_STATE(914)] = 16052, + [SMALL_STATE(915)] = 16059, + [SMALL_STATE(916)] = 16066, + [SMALL_STATE(917)] = 16073, + [SMALL_STATE(918)] = 16080, + [SMALL_STATE(919)] = 16085, + [SMALL_STATE(920)] = 16089, + [SMALL_STATE(921)] = 16093, + [SMALL_STATE(922)] = 16097, + [SMALL_STATE(923)] = 16101, + [SMALL_STATE(924)] = 16105, + [SMALL_STATE(925)] = 16109, + [SMALL_STATE(926)] = 16113, + [SMALL_STATE(927)] = 16117, + [SMALL_STATE(928)] = 16121, + [SMALL_STATE(929)] = 16125, + [SMALL_STATE(930)] = 16129, + [SMALL_STATE(931)] = 16133, + [SMALL_STATE(932)] = 16137, + [SMALL_STATE(933)] = 16141, + [SMALL_STATE(934)] = 16145, + [SMALL_STATE(935)] = 16149, + [SMALL_STATE(936)] = 16153, + [SMALL_STATE(937)] = 16157, + [SMALL_STATE(938)] = 16161, + [SMALL_STATE(939)] = 16165, + [SMALL_STATE(940)] = 16169, + [SMALL_STATE(941)] = 16173, + [SMALL_STATE(942)] = 16177, + [SMALL_STATE(943)] = 16181, + [SMALL_STATE(944)] = 16185, + [SMALL_STATE(945)] = 16189, + [SMALL_STATE(946)] = 16193, + [SMALL_STATE(947)] = 16197, + [SMALL_STATE(948)] = 16201, + [SMALL_STATE(949)] = 16205, + [SMALL_STATE(950)] = 16209, + [SMALL_STATE(951)] = 16213, + [SMALL_STATE(952)] = 16217, + [SMALL_STATE(953)] = 16221, + [SMALL_STATE(954)] = 16225, + [SMALL_STATE(955)] = 16229, + [SMALL_STATE(956)] = 16233, + [SMALL_STATE(957)] = 16237, + [SMALL_STATE(958)] = 16241, + [SMALL_STATE(959)] = 16245, + [SMALL_STATE(960)] = 16249, + [SMALL_STATE(961)] = 16253, + [SMALL_STATE(962)] = 16257, + [SMALL_STATE(963)] = 16261, + [SMALL_STATE(964)] = 16265, + [SMALL_STATE(965)] = 16269, + [SMALL_STATE(966)] = 16273, + [SMALL_STATE(967)] = 16277, + [SMALL_STATE(968)] = 16281, + [SMALL_STATE(969)] = 16285, + [SMALL_STATE(970)] = 16289, + [SMALL_STATE(971)] = 16293, + [SMALL_STATE(972)] = 16297, + [SMALL_STATE(973)] = 16301, + [SMALL_STATE(974)] = 16305, + [SMALL_STATE(975)] = 16309, + [SMALL_STATE(976)] = 16313, + [SMALL_STATE(977)] = 16317, + [SMALL_STATE(978)] = 16321, + [SMALL_STATE(979)] = 16325, + [SMALL_STATE(980)] = 16329, + [SMALL_STATE(981)] = 16333, + [SMALL_STATE(982)] = 16337, + [SMALL_STATE(983)] = 16341, + [SMALL_STATE(984)] = 16345, + [SMALL_STATE(985)] = 16349, + [SMALL_STATE(986)] = 16353, + [SMALL_STATE(987)] = 16357, + [SMALL_STATE(988)] = 16361, + [SMALL_STATE(989)] = 16365, + [SMALL_STATE(990)] = 16369, + [SMALL_STATE(991)] = 16373, + [SMALL_STATE(992)] = 16377, + [SMALL_STATE(993)] = 16381, + [SMALL_STATE(994)] = 16385, + [SMALL_STATE(995)] = 16389, + [SMALL_STATE(996)] = 16393, + [SMALL_STATE(997)] = 16397, + [SMALL_STATE(998)] = 16401, + [SMALL_STATE(999)] = 16405, + [SMALL_STATE(1000)] = 16409, + [SMALL_STATE(1001)] = 16413, + [SMALL_STATE(1002)] = 16417, + [SMALL_STATE(1003)] = 16421, + [SMALL_STATE(1004)] = 16425, + [SMALL_STATE(1005)] = 16429, + [SMALL_STATE(1006)] = 16433, + [SMALL_STATE(1007)] = 16437, + [SMALL_STATE(1008)] = 16441, + [SMALL_STATE(1009)] = 16445, + [SMALL_STATE(1010)] = 16449, + [SMALL_STATE(1011)] = 16453, + [SMALL_STATE(1012)] = 16457, + [SMALL_STATE(1013)] = 16461, + [SMALL_STATE(1014)] = 16465, + [SMALL_STATE(1015)] = 16469, + [SMALL_STATE(1016)] = 16473, + [SMALL_STATE(1017)] = 16477, + [SMALL_STATE(1018)] = 16481, + [SMALL_STATE(1019)] = 16485, + [SMALL_STATE(1020)] = 16489, + [SMALL_STATE(1021)] = 16493, + [SMALL_STATE(1022)] = 16497, + [SMALL_STATE(1023)] = 16501, + [SMALL_STATE(1024)] = 16505, + [SMALL_STATE(1025)] = 16509, + [SMALL_STATE(1026)] = 16513, + [SMALL_STATE(1027)] = 16517, + [SMALL_STATE(1028)] = 16521, + [SMALL_STATE(1029)] = 16525, + [SMALL_STATE(1030)] = 16529, + [SMALL_STATE(1031)] = 16533, + [SMALL_STATE(1032)] = 16537, + [SMALL_STATE(1033)] = 16541, + [SMALL_STATE(1034)] = 16545, + [SMALL_STATE(1035)] = 16549, + [SMALL_STATE(1036)] = 16553, + [SMALL_STATE(1037)] = 16557, + [SMALL_STATE(1038)] = 16561, + [SMALL_STATE(1039)] = 16565, + [SMALL_STATE(1040)] = 16569, + [SMALL_STATE(1041)] = 16573, + [SMALL_STATE(1042)] = 16577, + [SMALL_STATE(1043)] = 16581, + [SMALL_STATE(1044)] = 16585, + [SMALL_STATE(1045)] = 16589, + [SMALL_STATE(1046)] = 16593, + [SMALL_STATE(1047)] = 16597, + [SMALL_STATE(1048)] = 16601, + [SMALL_STATE(1049)] = 16605, + [SMALL_STATE(1050)] = 16609, + [SMALL_STATE(1051)] = 16613, + [SMALL_STATE(1052)] = 16617, + [SMALL_STATE(1053)] = 16621, + [SMALL_STATE(1054)] = 16625, + [SMALL_STATE(1055)] = 16629, + [SMALL_STATE(1056)] = 16633, + [SMALL_STATE(1057)] = 16637, + [SMALL_STATE(1058)] = 16641, + [SMALL_STATE(1059)] = 16645, + [SMALL_STATE(1060)] = 16649, + [SMALL_STATE(1061)] = 16653, + [SMALL_STATE(1062)] = 16657, + [SMALL_STATE(1063)] = 16661, + [SMALL_STATE(1064)] = 16665, + [SMALL_STATE(1065)] = 16669, + [SMALL_STATE(1066)] = 16673, + [SMALL_STATE(1067)] = 16677, + [SMALL_STATE(1068)] = 16681, + [SMALL_STATE(1069)] = 16685, + [SMALL_STATE(1070)] = 16689, + [SMALL_STATE(1071)] = 16693, + [SMALL_STATE(1072)] = 16697, + [SMALL_STATE(1073)] = 16701, + [SMALL_STATE(1074)] = 16705, + [SMALL_STATE(1075)] = 16709, + [SMALL_STATE(1076)] = 16713, + [SMALL_STATE(1077)] = 16717, + [SMALL_STATE(1078)] = 16721, + [SMALL_STATE(1079)] = 16725, + [SMALL_STATE(1080)] = 16729, + [SMALL_STATE(1081)] = 16733, + [SMALL_STATE(1082)] = 16737, + [SMALL_STATE(1083)] = 16741, + [SMALL_STATE(1084)] = 16745, + [SMALL_STATE(1085)] = 16749, + [SMALL_STATE(1086)] = 16753, + [SMALL_STATE(1087)] = 16757, + [SMALL_STATE(1088)] = 16761, + [SMALL_STATE(1089)] = 16765, + [SMALL_STATE(1090)] = 16769, + [SMALL_STATE(1091)] = 16773, + [SMALL_STATE(1092)] = 16777, + [SMALL_STATE(1093)] = 16781, + [SMALL_STATE(1094)] = 16785, + [SMALL_STATE(1095)] = 16789, + [SMALL_STATE(1096)] = 16793, + [SMALL_STATE(1097)] = 16797, + [SMALL_STATE(1098)] = 16801, + [SMALL_STATE(1099)] = 16805, + [SMALL_STATE(1100)] = 16809, + [SMALL_STATE(1101)] = 16813, + [SMALL_STATE(1102)] = 16817, + [SMALL_STATE(1103)] = 16821, + [SMALL_STATE(1104)] = 16825, + [SMALL_STATE(1105)] = 16829, + [SMALL_STATE(1106)] = 16833, + [SMALL_STATE(1107)] = 16837, + [SMALL_STATE(1108)] = 16841, + [SMALL_STATE(1109)] = 16845, + [SMALL_STATE(1110)] = 16849, + [SMALL_STATE(1111)] = 16853, + [SMALL_STATE(1112)] = 16857, + [SMALL_STATE(1113)] = 16861, + [SMALL_STATE(1114)] = 16865, + [SMALL_STATE(1115)] = 16869, + [SMALL_STATE(1116)] = 16873, + [SMALL_STATE(1117)] = 16877, + [SMALL_STATE(1118)] = 16881, + [SMALL_STATE(1119)] = 16885, + [SMALL_STATE(1120)] = 16889, + [SMALL_STATE(1121)] = 16893, + [SMALL_STATE(1122)] = 16897, + [SMALL_STATE(1123)] = 16901, + [SMALL_STATE(1124)] = 16905, + [SMALL_STATE(1125)] = 16909, + [SMALL_STATE(1126)] = 16913, + [SMALL_STATE(1127)] = 16917, + [SMALL_STATE(1128)] = 16921, + [SMALL_STATE(1129)] = 16925, + [SMALL_STATE(1130)] = 16929, + [SMALL_STATE(1131)] = 16933, + [SMALL_STATE(1132)] = 16937, + [SMALL_STATE(1133)] = 16941, + [SMALL_STATE(1134)] = 16945, + [SMALL_STATE(1135)] = 16949, + [SMALL_STATE(1136)] = 16953, + [SMALL_STATE(1137)] = 16957, + [SMALL_STATE(1138)] = 16961, + [SMALL_STATE(1139)] = 16965, + [SMALL_STATE(1140)] = 16969, + [SMALL_STATE(1141)] = 16973, + [SMALL_STATE(1142)] = 16977, + [SMALL_STATE(1143)] = 16981, + [SMALL_STATE(1144)] = 16985, + [SMALL_STATE(1145)] = 16989, + [SMALL_STATE(1146)] = 16993, + [SMALL_STATE(1147)] = 16997, + [SMALL_STATE(1148)] = 17001, + [SMALL_STATE(1149)] = 17005, + [SMALL_STATE(1150)] = 17009, + [SMALL_STATE(1151)] = 17013, + [SMALL_STATE(1152)] = 17017, + [SMALL_STATE(1153)] = 17021, + [SMALL_STATE(1154)] = 17025, + [SMALL_STATE(1155)] = 17029, + [SMALL_STATE(1156)] = 17033, + [SMALL_STATE(1157)] = 17037, + [SMALL_STATE(1158)] = 17041, + [SMALL_STATE(1159)] = 17045, + [SMALL_STATE(1160)] = 17049, + [SMALL_STATE(1161)] = 17053, + [SMALL_STATE(1162)] = 17057, + [SMALL_STATE(1163)] = 17061, + [SMALL_STATE(1164)] = 17065, + [SMALL_STATE(1165)] = 17069, + [SMALL_STATE(1166)] = 17073, + [SMALL_STATE(1167)] = 17077, + [SMALL_STATE(1168)] = 17081, + [SMALL_STATE(1169)] = 17085, + [SMALL_STATE(1170)] = 17089, + [SMALL_STATE(1171)] = 17093, + [SMALL_STATE(1172)] = 17097, + [SMALL_STATE(1173)] = 17101, + [SMALL_STATE(1174)] = 17105, + [SMALL_STATE(1175)] = 17109, + [SMALL_STATE(1176)] = 17113, + [SMALL_STATE(1177)] = 17117, + [SMALL_STATE(1178)] = 17121, + [SMALL_STATE(1179)] = 17125, + [SMALL_STATE(1180)] = 17129, + [SMALL_STATE(1181)] = 17133, + [SMALL_STATE(1182)] = 17137, + [SMALL_STATE(1183)] = 17141, + [SMALL_STATE(1184)] = 17145, + [SMALL_STATE(1185)] = 17149, + [SMALL_STATE(1186)] = 17153, + [SMALL_STATE(1187)] = 17157, + [SMALL_STATE(1188)] = 17161, + [SMALL_STATE(1189)] = 17165, + [SMALL_STATE(1190)] = 17169, + [SMALL_STATE(1191)] = 17173, + [SMALL_STATE(1192)] = 17177, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 0, 0, 0), - [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [71] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 1, 0, 0), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [91] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), - [93] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(328), - [96] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(325), - [99] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(800), - [102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(282), - [105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(381), - [108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(275), - [111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(338), - [114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(910), - [117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(1045), - [120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(34), - [123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(39), - [126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(44), - [129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(716), - [132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(302), - [135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(45), - [138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(47), - [141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(48), - [144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(49), - [147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(50), - [150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(33), - [153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(35), - [156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(36), - [159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(37), - [162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(38), - [165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(32), - [168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(40), - [171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(41), - [174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(42), - [177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(43), - [180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(68), - [183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(339), - [186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(141), - [189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 2, 0, 0), - [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(335), - [194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(319), - [197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(284), - [200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(159), - [203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(1257), - [206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(65), - [209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(165), - [212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), - [220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), - [222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(335), - [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(319), - [248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(800), - [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(284), - [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(381), - [257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), - [259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(260), - [262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(338), - [265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(910), - [268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(1257), - [271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(34), - [274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(39), - [277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(44), - [280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(716), - [283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(302), - [286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(45), - [289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(47), - [292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(48), - [295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(49), - [298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(50), - [301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(33), - [304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(35), - [307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(36), - [310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(37), - [313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(38), - [316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(32), - [319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(40), - [322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(41), - [325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(42), - [328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(43), - [331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(65), - [334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(62), - [337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(165), - [340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_footnote_content, 1, 0, 0), - [342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(337), - [345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(323), - [348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(283), - [351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(164), - [354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(370), - [357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(1271), - [360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(69), - [363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(60), - [366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(227), - [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), - [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), - [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 1, 0, 1), - [445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 1, 0, 1), - [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), - [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), - [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 1, 0, 0), - [495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 1, 0, 0), SHIFT_REPEAT(339), - [498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 1, 0, 0), - [500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 1, 0, 0), - [502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), - [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), - [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), - [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), - [524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), - [526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(341), - [529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(912), - [532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(368), - [535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(375), - [538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_content, 1, 0, 0), - [540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__table_content, 1, 0, 0), SHIFT(1216), - [543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_content, 1, 0, 0), - [545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__table_content, 1, 0, 0), SHIFT(912), - [548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__table_content, 1, 0, 0), SHIFT(1200), - [551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__table_content, 1, 0, 0), SHIFT(1171), - [554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 2, 0, 0), - [556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 2, 0, 0), - [558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_separator, 6, 0, 0), - [560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_separator, 6, 0, 0), - [562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 6, 0, 29), - [564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 6, 0, 29), - [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 6, 0, 30), - [570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 6, 0, 30), - [572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_row, 6, 0, 0), - [576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_row, 6, 0, 0), - [578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_or_two_newlines, 1, 0, 0), - [580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_or_two_newlines, 1, 0, 0), - [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heading, 3, 0, 4), - [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heading, 3, 0, 4), - [590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 4, 0, 15), - [592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 4, 0, 15), - [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 4, 0, 0), - [598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 4, 0, 0), - [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_content, 2, 0, 8), - [604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_content, 2, 0, 8), - [606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 5, 0, 24), - [608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 5, 0, 24), - [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 4, 0, 22), - [614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 4, 0, 22), - [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 3, 0, 15), - [622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 3, 0, 15), - [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_separator, 4, 0, 0), - [630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_separator, 4, 0, 0), - [632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_row, 4, 0, 0), - [634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_row, 4, 0, 0), - [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 5, 0, 25), - [644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 5, 0, 25), - [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 5, 0, 26), - [650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 5, 0, 26), - [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_separator, 5, 0, 0), - [656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_separator, 5, 0, 0), - [658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_row, 5, 0, 0), - [660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_row, 5, 0, 0), - [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 5, 0, 22), - [678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 5, 0, 22), - [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_definition, 2, 0, 0), - [706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_definition, 2, 0, 0), - [708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 1, 0, 0), - [710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 1, 0, 0), - [712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_thematic_break, 1, 0, 0), - [714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_thematic_break, 1, 0, 0), - [716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 5, 0, 15), - [718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 5, 0, 15), - [720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph, 2, 0, 9), - [722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__paragraph, 2, 0, 9), - [724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frontmatter, 6, 0, 28), - [726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_frontmatter, 6, 0, 28), - [728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 6, 0, 0), - [730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 6, 0, 0), - [732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 6, 0, 15), - [734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 6, 0, 15), - [736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 6, 0, 22), - [738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 6, 0, 22), - [740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_dash, 2, 0, 0), - [742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_dash, 2, 0, 0), - [744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frontmatter, 7, 0, 32), - [746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_frontmatter, 7, 0, 32), - [748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 7, 0, 24), - [750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 7, 0, 24), - [752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 7, 0, 25), - [754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 7, 0, 25), - [756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 7, 0, 33), - [758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 7, 0, 33), - [760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 7, 0, 22), - [762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 7, 0, 22), - [764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 8, 0, 29), - [766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 8, 0, 29), - [768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 8, 0, 34), - [770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 8, 0, 34), - [772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_plus, 2, 0, 0), - [774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_plus, 2, 0, 0), - [776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 8, 0, 35), - [778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 8, 0, 35), - [780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_or_two_newlines, 2, 0, 0), - [782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_or_two_newlines, 2, 0, 0), - [784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 1, 0, 0), - [786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 1, 0, 0), - [788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 2, 0, 7), - [790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 2, 0, 7), - [792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_star, 2, 0, 0), - [794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_star, 2, 0, 0), - [796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_with_heading, 2, 0, 0), - [798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_with_heading, 2, 0, 0), - [800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 3, 0, 14), - [802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 3, 0, 14), - [804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_footnote_content_repeat1, 1, 0, 0), - [806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 1, 0, 0), - [808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_task, 2, 0, 0), - [810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_task, 2, 0, 0), - [812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_decimal_period, 2, 0, 0), - [814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_decimal_period, 2, 0, 0), - [816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_decimal_paren, 2, 0, 0), - [818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_decimal_paren, 2, 0, 0), - [820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_decimal_parens, 2, 0, 0), - [822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_decimal_parens, 2, 0, 0), - [824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_alpha_period, 2, 0, 0), - [826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_alpha_period, 2, 0, 0), - [828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_alpha_paren, 2, 0, 0), - [830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_alpha_paren, 2, 0, 0), - [832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_alpha_parens, 2, 0, 0), - [834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_alpha_parens, 2, 0, 0), - [836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_alpha_period, 2, 0, 0), - [838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_alpha_period, 2, 0, 0), - [840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_alpha_paren, 2, 0, 0), - [842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_alpha_paren, 2, 0, 0), - [844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_alpha_parens, 2, 0, 0), - [846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_alpha_parens, 2, 0, 0), - [848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_roman_period, 2, 0, 0), - [850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_roman_period, 2, 0, 0), - [852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_roman_paren, 2, 0, 0), - [854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_roman_paren, 2, 0, 0), - [856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_roman_parens, 2, 0, 0), - [858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_roman_parens, 2, 0, 0), - [860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_roman_period, 2, 0, 0), - [862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_roman_period, 2, 0, 0), - [864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_roman_paren, 2, 0, 0), - [866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_roman_paren, 2, 0, 0), - [868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_roman_parens, 2, 0, 0), - [870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_roman_parens, 2, 0, 0), - [872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_quote, 3, 0, 12), - [874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_quote, 3, 0, 12), - [876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_attribute, 3, 0, 0), - [878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_attribute, 3, 0, 0), - [880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 3, 0, 0), - [882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 3, 0, 0), - [884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_attribute, 4, 0, 21), - [886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_attribute, 4, 0, 21), - [888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_caption, 3, 0, 23), - [890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_caption, 3, 0, 23), - [892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_footnote, 6, 0, 31), - [894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_footnote, 6, 0, 31), - [896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heading, 4, 0, 4), - [898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heading, 4, 0, 4), - [900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), - [902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), - [904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(281), - [907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_task, 3, 0, 11), - [909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_task, 3, 0, 11), - [911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), - [913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), - [915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), SHIFT(842), - [918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), SHIFT(484), - [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), SHIFT(560), - [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), - [928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), - [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), - [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), - [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), - [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), - [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), - [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), - [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), - [982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), - [986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), SHIFT(407), - [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), - [991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), SHIFT(861), - [994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_quote_prefix, 1, 0, 0), - [996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_quote_prefix, 1, 0, 0), - [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), - [1002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), - [1004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), - [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [1008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 2, 0, 0), SHIFT_REPEAT(384), - [1011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 2, 0, 0), - [1013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 2, 0, 0), SHIFT_REPEAT(916), - [1016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_caption_repeat1, 2, 0, 0), - [1018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(329), - [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), - [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), - [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), - [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), - [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), - [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), - [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), - [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), - [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), - [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), - [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), - [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), - [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), - [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), - [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [1063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), SHIFT(385), - [1066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), SHIFT(838), - [1069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(339), - [1072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), - [1074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), - [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [1078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [1080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [1082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [1084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [1086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [1090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [1094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [1096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [1098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [1100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [1104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [1106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [1108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [1110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [1112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), - [1114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline, 1, 0, 0), - [1116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(383), - [1119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(812), - [1122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), - [1124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), - [1126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), - [1128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline, 1, 0, 0), - [1130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), - [1132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [1134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [1136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [1138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(388), - [1141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), - [1143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(838), - [1146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(389), - [1149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(916), - [1152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [1154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [1156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [1158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [1160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [1162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [1164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [1168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 2, -1000, 0), - [1170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 2, -1000, 0), - [1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [1176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [1178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(372), - [1181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), - [1183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(842), - [1186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(484), - [1189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(491), - [1192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(560), - [1195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(1130), - [1198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(409), - [1201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_line, 2, 0, 0), - [1203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_line, 2, 0, 0), - [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [1209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(404), - [1212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(861), - [1215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 1, 0, 0), - [1217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_caption_repeat1, 1, 0, 0), - [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), - [1227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(364), - [1230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(360), - [1233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__table_content, 1, 0, 0), SHIFT(1194), - [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [1238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [1240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [1242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [1244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__table_content, 1, 0, 0), SHIFT(1125), - [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [1279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__table_content, 1, 0, 0), SHIFT(1148), - [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [1292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 2, 0, 0), - [1294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 2, 0, 0), SHIFT_REPEAT(716), - [1297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 2, 0, 0), SHIFT_REPEAT(902), - [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [1328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), - [1330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), SHIFT_REPEAT(44), - [1333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), SHIFT_REPEAT(851), - [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code, 1, 0, 0), - [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), - [1352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), SHIFT_REPEAT(39), - [1355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), SHIFT_REPEAT(840), - [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [1360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_repeat1, 2, 0, 0), SHIFT_REPEAT(1282), - [1363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_code_repeat1, 2, 0, 0), - [1365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_repeat1, 2, 0, 0), SHIFT_REPEAT(967), - [1368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 2, 0, 0), - [1370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 2, 0, 0), SHIFT_REPEAT(34), - [1373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 2, 0, 0), SHIFT_REPEAT(808), - [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [1400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [1402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [1408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [1416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 3, 0, 0), - [1418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_no_newline, 3, 0, 19), - [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1, 0, 0), - [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1, 0, 0), - [1426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value, 3, 0, 20), - [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_name, 1, 0, 0), - [1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 1, 0, 0), - [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [1438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 1, 0, 6), - [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [1442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [1444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_item_content_repeat1, 2, 0, 0), SHIFT_REPEAT(56), - [1447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_item_content_repeat1, 2, 0, 0), - [1449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_item_content_repeat1, 2, 0, 0), SHIFT_REPEAT(982), - [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_no_newline, 2, 0, 0), - [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [1480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(58), - [1483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 2, 0, 0), - [1485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(982), - [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [1498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, 0, 13), - [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 2, 0, 0), - [1504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(281), - [1507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_quote_content, 1, 0, 0), - [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [1511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_quote_content, 2, 0, 0), - [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), - [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), - [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), - [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [1529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frontmatter_content, 1, 0, 0), - [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [1553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_no_newline_repeat1, 2, 0, 0), - [1555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__comment_no_newline_repeat1, 2, 0, 0), SHIFT_REPEAT(769), - [1558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), - [1560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_frontmatter_content_repeat1, 2, 0, 0), SHIFT_REPEAT(1196), - [1563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_frontmatter_content_repeat1, 2, 0, 0), - [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [1599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_definition_repeat1, 2, 0, 0), - [1601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(302), - [1604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [1606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_period_repeat1, 2, 0, 0), - [1608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_decimal_period_repeat1, 2, 0, 0), SHIFT_REPEAT(45), - [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [1613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_paren_repeat1, 2, 0, 0), - [1615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_decimal_paren_repeat1, 2, 0, 0), SHIFT_REPEAT(33), - [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [1620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_parens_repeat1, 2, 0, 0), - [1622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_decimal_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(32), - [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [1627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_period_repeat1, 2, 0, 0), - [1629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_period_repeat1, 2, 0, 0), SHIFT_REPEAT(47), - [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [1634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [1648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_paren_repeat1, 2, 0, 0), - [1666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_paren_repeat1, 2, 0, 0), SHIFT_REPEAT(35), - [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [1671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_parens_repeat1, 2, 0, 0), - [1673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(40), - [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [1678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_period_repeat1, 2, 0, 0), - [1680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_period_repeat1, 2, 0, 0), SHIFT_REPEAT(48), - [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [1685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_paren_repeat1, 2, 0, 0), - [1687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_paren_repeat1, 2, 0, 0), SHIFT_REPEAT(36), - [1690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [1692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [1696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [1700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [1702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [1706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [1724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_parens_repeat1, 2, 0, 0), - [1726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(41), - [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [1731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_period_repeat1, 2, 0, 0), - [1733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_period_repeat1, 2, 0, 0), SHIFT_REPEAT(49), - [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [1766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_paren_repeat1, 2, 0, 0), - [1772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_paren_repeat1, 2, 0, 0), SHIFT_REPEAT(37), - [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [1777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_parens_repeat1, 2, 0, 0), - [1779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(42), - [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [1784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_period_repeat1, 2, 0, 0), - [1786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_period_repeat1, 2, 0, 0), SHIFT_REPEAT(50), - [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [1791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_paren_repeat1, 2, 0, 0), - [1793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_paren_repeat1, 2, 0, 0), SHIFT_REPEAT(38), - [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [1828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_parens_repeat1, 2, 0, 0), - [1830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(43), - [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [1855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(808), - [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 2, 0, 4), - [1860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dash, 3, 0, 16), - [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 3, 0, 16), - [1864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 3, 0, 16), - [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_task, 3, 0, 16), - [1868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [1872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__paragraph_inline_content_repeat1, 2, 0, 0), - [1874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__paragraph_inline_content_repeat1, 2, 0, 0), SHIFT_REPEAT(332), - [1877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 2, 0, 4), - [1879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_task, 2, 0, 4), - [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [1885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(840), - [1888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_item_content, 4, 0, 0), - [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [1896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(902), - [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_item_content_repeat1, 3, 0, 0), - [1901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 3, 0, 0), - [1903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(967), - [1906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(982), - [1909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_item_content, 3, 0, 0), - [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 1, 0, 2), - [1913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__heading_content_repeat1, 2, 0, 0), - [1915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__heading_content_repeat1, 2, 0, 0), SHIFT_REPEAT(380), - [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 1, 0, 2), - [1920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [1924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_item_content_repeat1, 4, 0, 0), - [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line, 2, 0, 0), - [1928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 1, 0, 2), - [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 1, 0, 2), - [1932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(851), - [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [1937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heading_content, 1, 0, 0), - [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [1941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(912), - [1944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_no_newline_repeat1, 1, 0, 0), - [1946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [1948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [1952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dash, 2, 0, 4), - [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [1958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [1966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heading_content, 2, 0, 0), - [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_decimal_paren, 2, 0, 4), - [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [1978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1, 0, 0), SHIFT(393), - [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [1983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_alpha_paren, 2, 0, 4), - [1985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_alpha_paren, 2, 0, 4), - [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_definition, 4, 0, 18), - [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [1993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_inline_content, 3, 0, 0), - [1995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_roman_paren, 2, 0, 4), - [1997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_parens_repeat1, 1, 0, 2), - [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [2005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_definition_repeat1, 1, 0, 3), - [2007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_roman_paren, 2, 0, 4), - [2009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_decimal_parens, 2, 0, 4), - [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [2013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_alpha_parens, 2, 0, 4), - [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_alpha_parens, 2, 0, 4), - [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_roman_parens, 2, 0, 4), - [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [2027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_roman_parens, 2, 0, 4), - [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [2031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_separator_repeat1, 2, 0, 0), SHIFT_REPEAT(1039), - [2034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_paren_repeat1, 1, 0, 2), - [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [2042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_period_repeat1, 1, 0, 2), - [2044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(382), - [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [2057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_paren_repeat1, 1, 0, 2), - [2059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_period_repeat1, 1, 0, 2), - [2061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_parens_repeat1, 1, 0, 2), - [2063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_period_repeat1, 1, 0, 2), - [2065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_paren_repeat1, 1, 0, 2), - [2067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_parens_repeat1, 1, 0, 2), - [2069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_period_repeat1, 1, 0, 2), - [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [2075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_inline_content, 4, 0, 0), - [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [2083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__paragraph_inline_content_repeat1, 3, 0, 0), - [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [2091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_paren_repeat1, 1, 0, 2), - [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [2097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_parens_repeat1, 1, 0, 2), - [2099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_period_repeat1, 1, 0, 2), - [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [2103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_paren_repeat1, 1, 0, 2), - [2105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_decimal_period, 2, 0, 4), - [2107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_parens_repeat1, 1, 0, 2), - [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [2111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_definition, 5, 0, 27), - [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [2129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_alpha_period, 2, 0, 4), - [2131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_inline_content, 2, 0, 0), - [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [2137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_content, 1, 0, 0), - [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [2161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__div_marker_begin, 1, 0, 0), - [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_roman_period, 2, 0, 4), - [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [2235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_roman_period, 2, 0, 4), - [2237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_alpha_period, 2, 0, 4), - [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [89] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 1, 0, 0), + [91] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 2, 0, 0), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [95] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), + [97] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(252), + [100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(239), + [103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(799), + [106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(213), + [109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(297), + [112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(111), + [115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(268), + [118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(891), + [121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(1014), + [124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(42), + [127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(28), + [130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(39), + [133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(633), + [136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(228), + [139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(41), + [142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(44), + [145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(47), + [148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(48), + [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(24), + [154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(25), + [157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(31), + [160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(35), + [163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(36), + [166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(37), + [169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(23), + [172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(26), + [175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(32), + [178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(33), + [181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(38), + [184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(57), + [187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(265), + [190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(207), + [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(260), + [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(248), + [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(216), + [202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(138), + [205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(1146), + [208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(64), + [211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(143), + [214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(260), + [231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(248), + [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(799), + [237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(216), + [240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(297), + [243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), + [245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(208), + [248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(268), + [251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(891), + [254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(1146), + [257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(42), + [260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(28), + [263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(39), + [266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(633), + [269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(228), + [272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(41), + [275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(44), + [278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(47), + [281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(48), + [284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(24), + [287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(25), + [290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(31), + [293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(35), + [296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(36), + [299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(37), + [302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(23), + [305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(26), + [308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(32), + [311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(33), + [314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(38), + [317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(64), + [320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(61), + [323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(143), + [326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), + [342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), + [344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), + [404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), + [406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), + [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 1, 0, 1), + [430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 1, 0, 1), + [432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), + [438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), + [440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), + [442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 1, 0, 0), + [456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 1, 0, 0), SHIFT_REPEAT(265), + [459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 1, 0, 0), + [461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 1, 0, 0), + [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), + [479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), + [481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(264), + [484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(829), + [487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(289), + [490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_content, 1, 0, 0), + [492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__table_content, 1, 0, 0), SHIFT(1080), + [495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_content, 1, 0, 0), + [497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__table_content, 1, 0, 0), SHIFT(829), + [500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__table_content, 1, 0, 0), SHIFT(1105), + [503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 2, 0, 0), + [505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 2, 0, 0), + [507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 5, 0, 25), + [509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 5, 0, 25), + [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 4, 0, 0), + [515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 4, 0, 0), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_separator, 4, 0, 0), + [521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_separator, 4, 0, 0), + [523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_row, 4, 0, 0), + [525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_row, 4, 0, 0), + [527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 4, 0, 15), + [529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 4, 0, 15), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 4, 0, 22), + [535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 4, 0, 22), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 5, 0, 24), + [541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 5, 0, 24), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 5, 0, 26), + [549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 5, 0, 26), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_separator, 5, 0, 0), + [555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_separator, 5, 0, 0), + [557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_row, 5, 0, 0), + [559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_row, 5, 0, 0), + [561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 5, 0, 22), + [563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 5, 0, 22), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 6, 0, 29), + [569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 6, 0, 29), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 6, 0, 30), + [575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 6, 0, 30), + [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_separator, 6, 0, 0), + [581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_separator, 6, 0, 0), + [583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_row, 6, 0, 0), + [585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_row, 6, 0, 0), + [587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 3, 0, 15), + [589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 3, 0, 15), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_or_two_newlines, 1, 0, 0), + [595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_or_two_newlines, 1, 0, 0), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heading, 3, 0, 4), + [607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heading, 3, 0, 4), + [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_content, 2, 0, 8), + [613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_content, 2, 0, 8), + [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 1, 0, 0), + [631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 1, 0, 0), + [633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 3, 0, 0), + [635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 3, 0, 0), + [637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heading, 4, 0, 4), + [639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heading, 4, 0, 4), + [641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_attribute, 4, 0, 21), + [643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_attribute, 4, 0, 21), + [645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 2, 0, 7), + [647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 2, 0, 7), + [649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_caption, 3, 0, 23), + [651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_caption, 3, 0, 23), + [653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 5, 0, 15), + [655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 5, 0, 15), + [657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph, 2, 0, 9), + [659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__paragraph, 2, 0, 9), + [661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frontmatter, 6, 0, 28), + [663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_frontmatter, 6, 0, 28), + [665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 6, 0, 0), + [667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 6, 0, 0), + [669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_footnote, 6, 0, 31), + [671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_footnote, 6, 0, 31), + [673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 6, 0, 15), + [675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 6, 0, 15), + [677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 6, 0, 22), + [679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 6, 0, 22), + [681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_dash, 2, 0, 0), + [683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_dash, 2, 0, 0), + [685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frontmatter, 7, 0, 32), + [687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_frontmatter, 7, 0, 32), + [689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 7, 0, 24), + [691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 7, 0, 24), + [693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 7, 0, 25), + [695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 7, 0, 25), + [697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 7, 0, 33), + [699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 7, 0, 33), + [701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 7, 0, 22), + [703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 7, 0, 22), + [705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 8, 0, 29), + [707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 8, 0, 29), + [709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 8, 0, 34), + [711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 8, 0, 34), + [713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_plus, 2, 0, 0), + [715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_plus, 2, 0, 0), + [717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 8, 0, 35), + [719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 8, 0, 35), + [721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_footnote_content, 3, 0, 0), + [723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_footnote_content, 3, 0, 0), + [725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_or_two_newlines, 2, 0, 0), + [727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_or_two_newlines, 2, 0, 0), + [729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_star, 2, 0, 0), + [731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_star, 2, 0, 0), + [733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_footnote_content, 4, 0, 0), + [735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_footnote_content, 4, 0, 0), + [737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_task, 2, 0, 0), + [739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_task, 2, 0, 0), + [741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_with_heading, 2, 0, 0), + [743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_with_heading, 2, 0, 0), + [745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 3, 0, 14), + [747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 3, 0, 14), + [749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_thematic_break, 1, 0, 0), + [751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_thematic_break, 1, 0, 0), + [753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 1, 0, 0), + [755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 1, 0, 0), + [757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_definition, 2, 0, 0), + [759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_definition, 2, 0, 0), + [761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_decimal_period, 2, 0, 0), + [763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_decimal_period, 2, 0, 0), + [765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_decimal_paren, 2, 0, 0), + [767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_decimal_paren, 2, 0, 0), + [769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_decimal_parens, 2, 0, 0), + [771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_decimal_parens, 2, 0, 0), + [773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_alpha_period, 2, 0, 0), + [775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_alpha_period, 2, 0, 0), + [777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_alpha_paren, 2, 0, 0), + [779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_alpha_paren, 2, 0, 0), + [781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_alpha_parens, 2, 0, 0), + [783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_alpha_parens, 2, 0, 0), + [785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_alpha_period, 2, 0, 0), + [787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_alpha_period, 2, 0, 0), + [789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_alpha_paren, 2, 0, 0), + [791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_alpha_paren, 2, 0, 0), + [793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_alpha_parens, 2, 0, 0), + [795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_alpha_parens, 2, 0, 0), + [797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_roman_period, 2, 0, 0), + [799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_roman_period, 2, 0, 0), + [801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_roman_paren, 2, 0, 0), + [803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_roman_paren, 2, 0, 0), + [805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_roman_parens, 2, 0, 0), + [807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_roman_parens, 2, 0, 0), + [809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_roman_period, 2, 0, 0), + [811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_roman_period, 2, 0, 0), + [813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_roman_paren, 2, 0, 0), + [815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_roman_paren, 2, 0, 0), + [817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_roman_parens, 2, 0, 0), + [819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_roman_parens, 2, 0, 0), + [821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_quote, 3, 0, 12), + [823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_quote, 3, 0, 12), + [825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_attribute, 3, 0, 0), + [827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_attribute, 3, 0, 0), + [829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_div_repeat1, 1, 0, 0), + [831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 1, 0, 0), + [833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_task, 3, 0, 11), + [835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_task, 3, 0, 11), + [837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), + [839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), + [841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(212), + [844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), + [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), + [848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), SHIFT(777), + [851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), SHIFT(438), + [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), SHIFT(481), + [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), + [861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), + [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), + [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), + [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), + [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), + [871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), + [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), + [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), + [905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), + [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), + [911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), + [915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), + [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), + [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 2, 0, 0), SHIFT_REPEAT(300), + [930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 2, 0, 0), + [932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 2, 0, 0), SHIFT_REPEAT(907), + [935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_caption_repeat1, 2, 0, 0), + [937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(255), + [940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), SHIFT(307), + [943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), SHIFT(793), + [948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_quote_prefix, 1, 0, 0), + [950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_quote_prefix, 1, 0, 0), + [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), + [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), + [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), + [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), + [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), + [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), + [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), + [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), + [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), + [980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), SHIFT(304), + [983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), SHIFT(760), + [986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(265), + [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), + [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [1025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline, 1, 0, 0), + [1027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(298), + [1030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(724), + [1033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), + [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), + [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [1043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(302), + [1046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), + [1048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(760), + [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [1053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline, 1, 0, 0), + [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), + [1057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(305), + [1060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(907), + [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [1089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(293), + [1092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 1, 0, 0), + [1094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_caption_repeat1, 1, 0, 0), + [1096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 2, -1000, 0), + [1098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 2, -1000, 0), + [1100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [1104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_line, 2, 0, 0), + [1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_line, 2, 0, 0), + [1108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), + [1110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(777), + [1113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(438), + [1116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(436), + [1119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(481), + [1122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(1077), + [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [1127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(324), + [1130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(322), + [1133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(793), + [1136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(281), + [1139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(285), + [1142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__table_content, 1, 0, 0), SHIFT(1103), + [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [1151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__table_content, 1, 0, 0), SHIFT(1032), + [1154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [1156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [1158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [1160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 2, 0, 0), + [1162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 2, 0, 0), SHIFT_REPEAT(633), + [1165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 2, 0, 0), SHIFT_REPEAT(834), + [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [1170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [1176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [1178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [1180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [1184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [1188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [1192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__table_content, 1, 0, 0), SHIFT(1056), + [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [1227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), + [1229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), SHIFT_REPEAT(28), + [1232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), SHIFT_REPEAT(827), + [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [1241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 2, 0, 0), + [1243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 2, 0, 0), SHIFT_REPEAT(42), + [1246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 2, 0, 0), SHIFT_REPEAT(788), + [1249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code, 1, 0, 0), + [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [1253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), + [1255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), SHIFT_REPEAT(39), + [1258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), SHIFT_REPEAT(723), + [1261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_repeat1, 2, 0, 0), SHIFT_REPEAT(1109), + [1264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_code_repeat1, 2, 0, 0), + [1266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_repeat1, 2, 0, 0), SHIFT_REPEAT(845), + [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [1275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_no_newline, 2, 0, 0), + [1277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 1, 0, 6), + [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [1285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_no_newline, 3, 0, 19), + [1287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, 0, 13), + [1289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 3, 0, 0), + [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [1295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_item_content_repeat1, 2, 0, 0), SHIFT_REPEAT(56), + [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_item_content_repeat1, 2, 0, 0), + [1300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_item_content_repeat1, 2, 0, 0), SHIFT_REPEAT(848), + [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [1307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_name, 1, 0, 0), + [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [1379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value, 3, 0, 20), + [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [1393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(51), + [1396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 2, 0, 0), + [1398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(848), + [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [1409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 1, 0, 0), + [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [1413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1, 0, 0), + [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [1417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(857), + [1420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(53), + [1423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), + [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1, 0, 0), + [1429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_quote_content, 2, 0, 0), + [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [1433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_quote_content, 1, 0, 0), + [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 2, 0, 0), + [1437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(212), + [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), + [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [1454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [1456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), + [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frontmatter_content, 1, 0, 0), + [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [1484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), + [1486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_no_newline_repeat1, 2, 0, 0), + [1488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__comment_no_newline_repeat1, 2, 0, 0), SHIFT_REPEAT(642), + [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [1521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_frontmatter_content_repeat1, 2, 0, 0), SHIFT_REPEAT(972), + [1524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_frontmatter_content_repeat1, 2, 0, 0), + [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [1528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [1530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [1532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [1534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [1536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [1538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [1540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [1542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [1544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [1546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [1548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [1550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [1552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [1556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [1558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [1562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [1574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [1576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [1578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [1580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [1582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [1584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [1586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [1598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [1604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [1608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [1616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [1620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [1628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_definition_repeat1, 2, 0, 0), + [1630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(228), + [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [1635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_period_repeat1, 2, 0, 0), + [1637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_decimal_period_repeat1, 2, 0, 0), SHIFT_REPEAT(41), + [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [1642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_paren_repeat1, 2, 0, 0), + [1644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_decimal_paren_repeat1, 2, 0, 0), SHIFT_REPEAT(25), + [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [1649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_parens_repeat1, 2, 0, 0), + [1651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_decimal_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(23), + [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [1656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_period_repeat1, 2, 0, 0), + [1658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_period_repeat1, 2, 0, 0), SHIFT_REPEAT(44), + [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [1663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_paren_repeat1, 2, 0, 0), + [1665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_paren_repeat1, 2, 0, 0), SHIFT_REPEAT(31), + [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [1670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_parens_repeat1, 2, 0, 0), + [1672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(26), + [1675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_period_repeat1, 2, 0, 0), + [1677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_period_repeat1, 2, 0, 0), SHIFT_REPEAT(47), + [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [1682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_paren_repeat1, 2, 0, 0), + [1684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_paren_repeat1, 2, 0, 0), SHIFT_REPEAT(35), + [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [1689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_parens_repeat1, 2, 0, 0), + [1691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(32), + [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_period_repeat1, 2, 0, 0), + [1698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_period_repeat1, 2, 0, 0), SHIFT_REPEAT(48), + [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [1703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_paren_repeat1, 2, 0, 0), + [1705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_paren_repeat1, 2, 0, 0), SHIFT_REPEAT(36), + [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_parens_repeat1, 2, 0, 0), + [1712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(33), + [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [1729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_period_repeat1, 2, 0, 0), + [1731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_period_repeat1, 2, 0, 0), SHIFT_REPEAT(24), + [1734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_paren_repeat1, 2, 0, 0), + [1736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_paren_repeat1, 2, 0, 0), SHIFT_REPEAT(37), + [1739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_parens_repeat1, 2, 0, 0), + [1741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(38), + [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [1750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dash, 3, 0, 16), + [1752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(788), + [1755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 3, 0, 16), + [1757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(829), + [1760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line, 2, 0, 0), + [1762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 3, 0, 16), + [1764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_task, 3, 0, 16), + [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_task, 2, 0, 4), + [1768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_item_content, 4, 0, 0), + [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__paragraph_inline_content_repeat1, 2, 0, 0), + [1776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__paragraph_inline_content_repeat1, 2, 0, 0), SHIFT_REPEAT(257), + [1779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heading_content, 2, 0, 0), + [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [1785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__heading_content_repeat1, 2, 0, 0), + [1787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__heading_content_repeat1, 2, 0, 0), SHIFT_REPEAT(299), + [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_item_content, 3, 0, 0), + [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [1796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(723), + [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [1801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_item_content_repeat1, 3, 0, 0), + [1803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 3, 0, 0), + [1805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 1, 0, 2), + [1807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 1, 0, 2), + [1809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heading_content, 1, 0, 0), + [1811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_no_newline_repeat1, 1, 0, 0), + [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [1825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_item_content_repeat1, 4, 0, 0), + [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [1829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 1, 0, 2), + [1831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 3, 0, 0), + [1833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 4, 0, 0), + [1835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(827), + [1838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(834), + [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [1845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(845), + [1848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(848), + [1851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(857), + [1854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [1856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dash, 2, 0, 4), + [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 1, 0, 2), + [1860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 2, 0, 4), + [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 2, 0, 4), + [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [1866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [1868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [1872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_decimal_parens, 2, 0, 4), + [1876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_alpha_parens, 2, 0, 4), + [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_period_repeat1, 1, 0, 2), + [1880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_paren_repeat1, 1, 0, 2), + [1884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_parens_repeat1, 1, 0, 2), + [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_alpha_parens, 2, 0, 4), + [1888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_roman_parens, 2, 0, 4), + [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [1892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_roman_parens, 2, 0, 4), + [1894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_parens_repeat1, 1, 0, 2), + [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [1900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_definition, 4, 0, 18), + [1904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_period_repeat1, 1, 0, 2), + [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [1908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_period_repeat1, 1, 0, 2), + [1910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_paren_repeat1, 1, 0, 2), + [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [1916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_inline_content, 4, 0, 0), + [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [1920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__paragraph_inline_content_repeat1, 3, 0, 0), + [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [1924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_parens_repeat1, 1, 0, 2), + [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_period_repeat1, 1, 0, 2), + [1936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_paren_repeat1, 1, 0, 2), + [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [1940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_parens_repeat1, 1, 0, 2), + [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [1944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_definition, 5, 0, 27), + [1946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [1948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_inline_content, 2, 0, 0), + [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [1958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [1960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_content, 1, 0, 0), + [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [1966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_separator_repeat1, 2, 0, 0), SHIFT_REPEAT(1012), + [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [1973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_paren_repeat1, 1, 0, 2), + [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [1977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1, 0, 0), SHIFT(314), + [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_paren_repeat1, 1, 0, 2), + [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [1986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [1996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_decimal_period, 2, 0, 4), + [1998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_alpha_period, 2, 0, 4), + [2000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_alpha_period, 2, 0, 4), + [2002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_parens_repeat1, 1, 0, 2), + [2004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(296), + [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [2009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_roman_period, 2, 0, 4), + [2011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_decimal_paren, 2, 0, 4), + [2013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_alpha_paren, 2, 0, 4), + [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_alpha_paren, 2, 0, 4), + [2017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_roman_paren, 2, 0, 4), + [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [2029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_period_repeat1, 1, 0, 2), + [2031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_inline_content, 3, 0, 0), + [2033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_roman_paren, 2, 0, 4), + [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [2077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__div_marker_begin, 1, 0, 0), + [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [2083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_definition_repeat1, 1, 0, 3), + [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [2113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_roman_period, 2, 0, 4), + [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__div_marker_begin, 3, 0, 10), + [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [2249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_label, 1, 0, 0), + [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [2255] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [2257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_separator_repeat1, 2, 0, 0), + [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [2283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_row_repeat1, 2, 0, 0), - [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [2397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key, 1, 0, 0), - [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [2439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_cell, 1, 0, 5), - [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [2517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_label, 1, 0, 0), - [2519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_checked, 3, 0, 0), - [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [2537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unchecked, 3, 0, 0), - [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [2625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__div_marker_begin, 3, 0, 10), - [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [2637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block_info, 2, 0, 17), - [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [2671] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [2689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_label, 1, 0, 5), - [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [2733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_separator_repeat1, 2, 0, 0), + [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [2275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block_info, 2, 0, 17), + [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [2299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_label, 1, 0, 5), + [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [2351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key, 1, 0, 0), + [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [2355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_checked, 3, 0, 0), + [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [2369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unchecked, 3, 0, 0), + [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_cell, 1, 0, 5), + [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [2479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_row_repeat1, 2, 0, 0), + [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), }; enum ts_external_scanner_symbol_identifiers { @@ -34174,18 +29705,19 @@ enum ts_external_scanner_symbol_identifiers { ts_external_token_list_marker_upper_roman_parens = 31, ts_external_token__list_item_continuation = 32, ts_external_token__list_item_end = 33, - ts_external_token__list_item_content_spacer = 34, + ts_external_token__indented_content_spacer = 34, ts_external_token__close_paragraph = 35, ts_external_token__block_quote_begin = 36, ts_external_token__block_quote_continuation = 37, ts_external_token__thematic_break_dash = 38, ts_external_token__thematic_break_star = 39, ts_external_token__footnote_mark_begin = 40, - ts_external_token__footnote_end = 41, - ts_external_token__table_caption_begin = 42, - ts_external_token__table_caption_end = 43, - ts_external_token__in_fallback = 44, - ts_external_token__error = 45, + ts_external_token__footnote_continuation = 41, + ts_external_token__footnote_end = 42, + ts_external_token__table_caption_begin = 43, + ts_external_token__table_caption_end = 44, + ts_external_token__in_fallback = 45, + ts_external_token__error = 46, }; static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { @@ -34223,196 +29755,35 @@ static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { [ts_external_token_list_marker_upper_roman_parens] = sym_list_marker_upper_roman_parens, [ts_external_token__list_item_continuation] = sym__list_item_continuation, [ts_external_token__list_item_end] = sym__list_item_end, - [ts_external_token__list_item_content_spacer] = sym__list_item_content_spacer, + [ts_external_token__indented_content_spacer] = sym__indented_content_spacer, [ts_external_token__close_paragraph] = sym__close_paragraph, [ts_external_token__block_quote_begin] = sym__block_quote_begin, [ts_external_token__block_quote_continuation] = sym__block_quote_continuation, [ts_external_token__thematic_break_dash] = sym__thematic_break_dash, - [ts_external_token__thematic_break_star] = sym__thematic_break_star, - [ts_external_token__footnote_mark_begin] = sym__footnote_mark_begin, - [ts_external_token__footnote_end] = sym__footnote_end, - [ts_external_token__table_caption_begin] = sym__table_caption_begin, - [ts_external_token__table_caption_end] = sym__table_caption_end, - [ts_external_token__in_fallback] = sym__in_fallback, - [ts_external_token__error] = sym__error, -}; - -static const bool ts_external_scanner_states[84][EXTERNAL_TOKEN_COUNT] = { - [1] = { - [ts_external_token__ignored] = true, - [ts_external_token__block_close] = true, - [ts_external_token__eof_or_newline] = true, - [ts_external_token__newline] = true, - [ts_external_token__newline_inline] = true, - [ts_external_token_frontmatter_marker] = true, - [ts_external_token__heading_begin] = true, - [ts_external_token__heading_continuation] = true, - [ts_external_token__div_begin] = true, - [ts_external_token__div_end] = true, - [ts_external_token__code_block_begin] = true, - [ts_external_token__code_block_end] = true, - [ts_external_token_list_marker_dash] = true, - [ts_external_token_list_marker_star] = true, - [ts_external_token_list_marker_plus] = true, - [ts_external_token__list_marker_task_begin] = true, - [ts_external_token_list_marker_definition] = true, - [ts_external_token_list_marker_decimal_period] = true, - [ts_external_token_list_marker_lower_alpha_period] = true, - [ts_external_token_list_marker_upper_alpha_period] = true, - [ts_external_token_list_marker_lower_roman_period] = true, - [ts_external_token_list_marker_upper_roman_period] = true, - [ts_external_token_list_marker_decimal_paren] = true, - [ts_external_token_list_marker_lower_alpha_paren] = true, - [ts_external_token_list_marker_upper_alpha_paren] = true, - [ts_external_token_list_marker_lower_roman_paren] = true, - [ts_external_token_list_marker_upper_roman_paren] = true, - [ts_external_token_list_marker_decimal_parens] = true, - [ts_external_token_list_marker_lower_alpha_parens] = true, - [ts_external_token_list_marker_upper_alpha_parens] = true, - [ts_external_token_list_marker_lower_roman_parens] = true, - [ts_external_token_list_marker_upper_roman_parens] = true, - [ts_external_token__list_item_continuation] = true, - [ts_external_token__list_item_end] = true, - [ts_external_token__list_item_content_spacer] = true, - [ts_external_token__close_paragraph] = true, - [ts_external_token__block_quote_begin] = true, - [ts_external_token__block_quote_continuation] = true, - [ts_external_token__thematic_break_dash] = true, - [ts_external_token__thematic_break_star] = true, - [ts_external_token__footnote_mark_begin] = true, - [ts_external_token__footnote_end] = true, - [ts_external_token__table_caption_begin] = true, - [ts_external_token__table_caption_end] = true, - [ts_external_token__in_fallback] = true, - [ts_external_token__error] = true, - }, - [2] = { - [ts_external_token__newline] = true, - [ts_external_token_frontmatter_marker] = true, - [ts_external_token__heading_begin] = true, - [ts_external_token__div_begin] = true, - [ts_external_token__code_block_begin] = true, - [ts_external_token_list_marker_dash] = true, - [ts_external_token_list_marker_star] = true, - [ts_external_token_list_marker_plus] = true, - [ts_external_token__list_marker_task_begin] = true, - [ts_external_token_list_marker_definition] = true, - [ts_external_token_list_marker_decimal_period] = true, - [ts_external_token_list_marker_lower_alpha_period] = true, - [ts_external_token_list_marker_upper_alpha_period] = true, - [ts_external_token_list_marker_lower_roman_period] = true, - [ts_external_token_list_marker_upper_roman_period] = true, - [ts_external_token_list_marker_decimal_paren] = true, - [ts_external_token_list_marker_lower_alpha_paren] = true, - [ts_external_token_list_marker_upper_alpha_paren] = true, - [ts_external_token_list_marker_lower_roman_paren] = true, - [ts_external_token_list_marker_upper_roman_paren] = true, - [ts_external_token_list_marker_decimal_parens] = true, - [ts_external_token_list_marker_lower_alpha_parens] = true, - [ts_external_token_list_marker_upper_alpha_parens] = true, - [ts_external_token_list_marker_lower_roman_parens] = true, - [ts_external_token_list_marker_upper_roman_parens] = true, - [ts_external_token__block_quote_begin] = true, - [ts_external_token__block_quote_continuation] = true, - [ts_external_token__thematic_break_dash] = true, - [ts_external_token__thematic_break_star] = true, - }, - [3] = { - [ts_external_token__newline] = true, - [ts_external_token__heading_begin] = true, - [ts_external_token__div_begin] = true, - [ts_external_token__code_block_begin] = true, - [ts_external_token_list_marker_dash] = true, - [ts_external_token_list_marker_star] = true, - [ts_external_token_list_marker_plus] = true, - [ts_external_token__list_marker_task_begin] = true, - [ts_external_token_list_marker_definition] = true, - [ts_external_token_list_marker_decimal_period] = true, - [ts_external_token_list_marker_lower_alpha_period] = true, - [ts_external_token_list_marker_upper_alpha_period] = true, - [ts_external_token_list_marker_lower_roman_period] = true, - [ts_external_token_list_marker_upper_roman_period] = true, - [ts_external_token_list_marker_decimal_paren] = true, - [ts_external_token_list_marker_lower_alpha_paren] = true, - [ts_external_token_list_marker_upper_alpha_paren] = true, - [ts_external_token_list_marker_lower_roman_paren] = true, - [ts_external_token_list_marker_upper_roman_paren] = true, - [ts_external_token_list_marker_decimal_parens] = true, - [ts_external_token_list_marker_lower_alpha_parens] = true, - [ts_external_token_list_marker_upper_alpha_parens] = true, - [ts_external_token_list_marker_lower_roman_parens] = true, - [ts_external_token_list_marker_upper_roman_parens] = true, - [ts_external_token__block_quote_begin] = true, - [ts_external_token__block_quote_continuation] = true, - [ts_external_token__thematic_break_dash] = true, - [ts_external_token__thematic_break_star] = true, - }, - [4] = { - [ts_external_token__block_close] = true, - [ts_external_token__newline] = true, - [ts_external_token__heading_begin] = true, - [ts_external_token__div_begin] = true, - [ts_external_token__code_block_begin] = true, - [ts_external_token_list_marker_dash] = true, - [ts_external_token_list_marker_star] = true, - [ts_external_token_list_marker_plus] = true, - [ts_external_token__list_marker_task_begin] = true, - [ts_external_token_list_marker_definition] = true, - [ts_external_token_list_marker_decimal_period] = true, - [ts_external_token_list_marker_lower_alpha_period] = true, - [ts_external_token_list_marker_upper_alpha_period] = true, - [ts_external_token_list_marker_lower_roman_period] = true, - [ts_external_token_list_marker_upper_roman_period] = true, - [ts_external_token_list_marker_decimal_paren] = true, - [ts_external_token_list_marker_lower_alpha_paren] = true, - [ts_external_token_list_marker_upper_alpha_paren] = true, - [ts_external_token_list_marker_lower_roman_paren] = true, - [ts_external_token_list_marker_upper_roman_paren] = true, - [ts_external_token_list_marker_decimal_parens] = true, - [ts_external_token_list_marker_lower_alpha_parens] = true, - [ts_external_token_list_marker_upper_alpha_parens] = true, - [ts_external_token_list_marker_lower_roman_parens] = true, - [ts_external_token_list_marker_upper_roman_parens] = true, - [ts_external_token__block_quote_begin] = true, - [ts_external_token__block_quote_continuation] = true, - [ts_external_token__thematic_break_dash] = true, - [ts_external_token__thematic_break_star] = true, - }, - [5] = { - [ts_external_token__newline] = true, - [ts_external_token__heading_begin] = true, - [ts_external_token__div_begin] = true, - [ts_external_token__code_block_begin] = true, - [ts_external_token_list_marker_dash] = true, - [ts_external_token_list_marker_star] = true, - [ts_external_token_list_marker_plus] = true, - [ts_external_token__list_marker_task_begin] = true, - [ts_external_token_list_marker_definition] = true, - [ts_external_token_list_marker_decimal_period] = true, - [ts_external_token_list_marker_lower_alpha_period] = true, - [ts_external_token_list_marker_upper_alpha_period] = true, - [ts_external_token_list_marker_lower_roman_period] = true, - [ts_external_token_list_marker_upper_roman_period] = true, - [ts_external_token_list_marker_decimal_paren] = true, - [ts_external_token_list_marker_lower_alpha_paren] = true, - [ts_external_token_list_marker_upper_alpha_paren] = true, - [ts_external_token_list_marker_lower_roman_paren] = true, - [ts_external_token_list_marker_upper_roman_paren] = true, - [ts_external_token_list_marker_decimal_parens] = true, - [ts_external_token_list_marker_lower_alpha_parens] = true, - [ts_external_token_list_marker_upper_alpha_parens] = true, - [ts_external_token_list_marker_lower_roman_parens] = true, - [ts_external_token_list_marker_upper_roman_parens] = true, - [ts_external_token__block_quote_begin] = true, - [ts_external_token__block_quote_continuation] = true, - [ts_external_token__thematic_break_dash] = true, - [ts_external_token__thematic_break_star] = true, - [ts_external_token__footnote_end] = true, - }, - [6] = { + [ts_external_token__thematic_break_star] = sym__thematic_break_star, + [ts_external_token__footnote_mark_begin] = sym__footnote_mark_begin, + [ts_external_token__footnote_continuation] = sym__footnote_continuation, + [ts_external_token__footnote_end] = sym__footnote_end, + [ts_external_token__table_caption_begin] = sym__table_caption_begin, + [ts_external_token__table_caption_end] = sym__table_caption_end, + [ts_external_token__in_fallback] = sym__in_fallback, + [ts_external_token__error] = sym__error, +}; + +static const bool ts_external_scanner_states[81][EXTERNAL_TOKEN_COUNT] = { + [1] = { + [ts_external_token__ignored] = true, + [ts_external_token__block_close] = true, + [ts_external_token__eof_or_newline] = true, + [ts_external_token__newline] = true, + [ts_external_token__newline_inline] = true, + [ts_external_token_frontmatter_marker] = true, [ts_external_token__heading_begin] = true, + [ts_external_token__heading_continuation] = true, [ts_external_token__div_begin] = true, + [ts_external_token__div_end] = true, [ts_external_token__code_block_begin] = true, + [ts_external_token__code_block_end] = true, [ts_external_token_list_marker_dash] = true, [ts_external_token_list_marker_star] = true, [ts_external_token_list_marker_plus] = true, @@ -34433,13 +29804,26 @@ static const bool ts_external_scanner_states[84][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_list_marker_upper_alpha_parens] = true, [ts_external_token_list_marker_lower_roman_parens] = true, [ts_external_token_list_marker_upper_roman_parens] = true, + [ts_external_token__list_item_continuation] = true, + [ts_external_token__list_item_end] = true, + [ts_external_token__indented_content_spacer] = true, + [ts_external_token__close_paragraph] = true, [ts_external_token__block_quote_begin] = true, [ts_external_token__block_quote_continuation] = true, [ts_external_token__thematic_break_dash] = true, [ts_external_token__thematic_break_star] = true, + [ts_external_token__footnote_mark_begin] = true, + [ts_external_token__footnote_continuation] = true, + [ts_external_token__footnote_end] = true, + [ts_external_token__table_caption_begin] = true, + [ts_external_token__table_caption_end] = true, + [ts_external_token__in_fallback] = true, + [ts_external_token__error] = true, }, - [7] = { - [ts_external_token__block_close] = true, + [2] = { + [ts_external_token__newline] = true, + [ts_external_token_frontmatter_marker] = true, + [ts_external_token__heading_begin] = true, [ts_external_token__div_begin] = true, [ts_external_token__code_block_begin] = true, [ts_external_token_list_marker_dash] = true, @@ -34467,7 +29851,8 @@ static const bool ts_external_scanner_states[84][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__thematic_break_dash] = true, [ts_external_token__thematic_break_star] = true, }, - [8] = { + [3] = { + [ts_external_token__block_close] = true, [ts_external_token__newline] = true, [ts_external_token__heading_begin] = true, [ts_external_token__div_begin] = true, @@ -34496,10 +29881,8 @@ static const bool ts_external_scanner_states[84][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__block_quote_continuation] = true, [ts_external_token__thematic_break_dash] = true, [ts_external_token__thematic_break_star] = true, - [ts_external_token__table_caption_begin] = true, }, - [9] = { - [ts_external_token__block_close] = true, + [4] = { [ts_external_token__newline] = true, [ts_external_token__heading_begin] = true, [ts_external_token__div_begin] = true, @@ -34528,10 +29911,8 @@ static const bool ts_external_scanner_states[84][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__block_quote_continuation] = true, [ts_external_token__thematic_break_dash] = true, [ts_external_token__thematic_break_star] = true, - [ts_external_token__table_caption_begin] = true, }, - [10] = { - [ts_external_token__newline] = true, + [5] = { [ts_external_token__heading_begin] = true, [ts_external_token__div_begin] = true, [ts_external_token__code_block_begin] = true, @@ -34559,16 +29940,11 @@ static const bool ts_external_scanner_states[84][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__block_quote_continuation] = true, [ts_external_token__thematic_break_dash] = true, [ts_external_token__thematic_break_star] = true, - [ts_external_token__footnote_end] = true, - [ts_external_token__table_caption_begin] = true, }, - [11] = { + [6] = { [ts_external_token__block_close] = true, - [ts_external_token__newline] = true, - [ts_external_token__heading_begin] = true, [ts_external_token__div_begin] = true, [ts_external_token__code_block_begin] = true, - [ts_external_token__code_block_end] = true, [ts_external_token_list_marker_dash] = true, [ts_external_token_list_marker_star] = true, [ts_external_token_list_marker_plus] = true, @@ -34594,9 +29970,7 @@ static const bool ts_external_scanner_states[84][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__thematic_break_dash] = true, [ts_external_token__thematic_break_star] = true, }, - [12] = { - [ts_external_token__block_close] = true, - [ts_external_token__eof_or_newline] = true, + [7] = { [ts_external_token__newline] = true, [ts_external_token__heading_begin] = true, [ts_external_token__div_begin] = true, @@ -34625,9 +29999,10 @@ static const bool ts_external_scanner_states[84][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__block_quote_continuation] = true, [ts_external_token__thematic_break_dash] = true, [ts_external_token__thematic_break_star] = true, + [ts_external_token__table_caption_begin] = true, }, - [13] = { - [ts_external_token__eof_or_newline] = true, + [8] = { + [ts_external_token__block_close] = true, [ts_external_token__newline] = true, [ts_external_token__heading_begin] = true, [ts_external_token__div_begin] = true, @@ -34656,15 +30031,15 @@ static const bool ts_external_scanner_states[84][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__block_quote_continuation] = true, [ts_external_token__thematic_break_dash] = true, [ts_external_token__thematic_break_star] = true, - [ts_external_token__footnote_end] = true, + [ts_external_token__table_caption_begin] = true, }, - [14] = { + [9] = { [ts_external_token__block_close] = true, [ts_external_token__newline] = true, [ts_external_token__heading_begin] = true, [ts_external_token__div_begin] = true, - [ts_external_token__div_end] = true, [ts_external_token__code_block_begin] = true, + [ts_external_token__code_block_end] = true, [ts_external_token_list_marker_dash] = true, [ts_external_token_list_marker_star] = true, [ts_external_token_list_marker_plus] = true, @@ -34690,12 +30065,13 @@ static const bool ts_external_scanner_states[84][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__thematic_break_dash] = true, [ts_external_token__thematic_break_star] = true, }, - [15] = { + [10] = { + [ts_external_token__block_close] = true, [ts_external_token__newline] = true, [ts_external_token__heading_begin] = true, [ts_external_token__div_begin] = true, + [ts_external_token__div_end] = true, [ts_external_token__code_block_begin] = true, - [ts_external_token__code_block_end] = true, [ts_external_token_list_marker_dash] = true, [ts_external_token_list_marker_star] = true, [ts_external_token_list_marker_plus] = true, @@ -34721,12 +30097,12 @@ static const bool ts_external_scanner_states[84][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__thematic_break_dash] = true, [ts_external_token__thematic_break_star] = true, }, - [16] = { + [11] = { [ts_external_token__newline] = true, [ts_external_token__heading_begin] = true, [ts_external_token__div_begin] = true, - [ts_external_token__div_end] = true, [ts_external_token__code_block_begin] = true, + [ts_external_token__code_block_end] = true, [ts_external_token_list_marker_dash] = true, [ts_external_token_list_marker_star] = true, [ts_external_token_list_marker_plus] = true, @@ -34751,14 +30127,13 @@ static const bool ts_external_scanner_states[84][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__block_quote_continuation] = true, [ts_external_token__thematic_break_dash] = true, [ts_external_token__thematic_break_star] = true, - [ts_external_token__footnote_end] = true, }, - [17] = { + [12] = { + [ts_external_token__eof_or_newline] = true, [ts_external_token__newline] = true, [ts_external_token__heading_begin] = true, [ts_external_token__div_begin] = true, [ts_external_token__code_block_begin] = true, - [ts_external_token__code_block_end] = true, [ts_external_token_list_marker_dash] = true, [ts_external_token_list_marker_star] = true, [ts_external_token_list_marker_plus] = true, @@ -34783,9 +30158,8 @@ static const bool ts_external_scanner_states[84][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__block_quote_continuation] = true, [ts_external_token__thematic_break_dash] = true, [ts_external_token__thematic_break_star] = true, - [ts_external_token__footnote_end] = true, }, - [18] = { + [13] = { [ts_external_token__newline] = true, [ts_external_token__heading_begin] = true, [ts_external_token__div_begin] = true, @@ -34816,7 +30190,8 @@ static const bool ts_external_scanner_states[84][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__thematic_break_dash] = true, [ts_external_token__thematic_break_star] = true, }, - [19] = { + [14] = { + [ts_external_token__block_close] = true, [ts_external_token__eof_or_newline] = true, [ts_external_token__newline] = true, [ts_external_token__heading_begin] = true, @@ -34847,27 +30222,30 @@ static const bool ts_external_scanner_states[84][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__thematic_break_dash] = true, [ts_external_token__thematic_break_star] = true, }, - [20] = { + [15] = { [ts_external_token__eof_or_newline] = true, [ts_external_token__newline_inline] = true, }, - [21] = { + [16] = { [ts_external_token__block_close] = true, [ts_external_token_list_marker_dash] = true, [ts_external_token_list_marker_star] = true, [ts_external_token_list_marker_plus] = true, [ts_external_token__list_marker_task_begin] = true, }, - [22] = { + [17] = { + [ts_external_token__block_quote_continuation] = true, + }, + [18] = { [ts_external_token_list_marker_dash] = true, [ts_external_token_list_marker_star] = true, [ts_external_token_list_marker_plus] = true, [ts_external_token__list_marker_task_begin] = true, }, - [23] = { - [ts_external_token__block_quote_continuation] = true, + [19] = { + [ts_external_token__table_caption_end] = true, }, - [24] = { + [20] = { [ts_external_token__block_close] = true, [ts_external_token_list_marker_dash] = true, [ts_external_token_list_marker_star] = true, @@ -34875,177 +30253,198 @@ static const bool ts_external_scanner_states[84][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__list_marker_task_begin] = true, [ts_external_token__block_quote_continuation] = true, }, - [25] = { - [ts_external_token__table_caption_end] = true, - }, - [26] = { + [21] = { [ts_external_token_list_marker_dash] = true, [ts_external_token_list_marker_star] = true, [ts_external_token_list_marker_plus] = true, [ts_external_token__list_marker_task_begin] = true, [ts_external_token__block_quote_continuation] = true, }, - [27] = { + [22] = { [ts_external_token__newline] = true, }, - [28] = { + [23] = { [ts_external_token__eof_or_newline] = true, }, - [29] = { + [24] = { [ts_external_token__newline] = true, [ts_external_token__list_item_continuation] = true, [ts_external_token__list_item_end] = true, [ts_external_token__block_quote_continuation] = true, [ts_external_token__table_caption_begin] = true, }, - [30] = { - [ts_external_token__block_close] = true, + [25] = { [ts_external_token__newline] = true, + [ts_external_token__indented_content_spacer] = true, [ts_external_token__block_quote_continuation] = true, [ts_external_token__table_caption_begin] = true, }, - [31] = { + [26] = { + [ts_external_token__block_close] = true, [ts_external_token__newline] = true, - [ts_external_token__list_item_content_spacer] = true, [ts_external_token__block_quote_continuation] = true, [ts_external_token__table_caption_begin] = true, }, - [32] = { + [27] = { [ts_external_token__block_close] = true, [ts_external_token__block_quote_continuation] = true, }, - [33] = { + [28] = { [ts_external_token__block_close] = true, [ts_external_token__list_marker_task_begin] = true, [ts_external_token__block_quote_continuation] = true, }, - [34] = { + [29] = { [ts_external_token__block_close] = true, [ts_external_token_list_marker_plus] = true, [ts_external_token__block_quote_continuation] = true, }, - [35] = { + [30] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_star] = true, + [ts_external_token_list_marker_dash] = true, [ts_external_token__block_quote_continuation] = true, }, - [36] = { + [31] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_dash] = true, + [ts_external_token_list_marker_star] = true, [ts_external_token__block_quote_continuation] = true, }, - [37] = { + [32] = { [ts_external_token__list_item_continuation] = true, [ts_external_token__list_item_end] = true, [ts_external_token__block_quote_continuation] = true, }, - [38] = { + [33] = { + [ts_external_token__block_quote_continuation] = true, + [ts_external_token__footnote_continuation] = true, + [ts_external_token__footnote_end] = true, + }, + [34] = { [ts_external_token__list_item_continuation] = true, [ts_external_token__list_item_end] = true, [ts_external_token__block_quote_continuation] = true, [ts_external_token__table_caption_begin] = true, }, - [39] = { + [35] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_decimal_paren] = true, + [ts_external_token_list_marker_upper_alpha_parens] = true, }, - [40] = { + [36] = { + [ts_external_token__block_close] = true, + [ts_external_token__block_quote_continuation] = true, + [ts_external_token__table_caption_begin] = true, + }, + [37] = { [ts_external_token__eof_or_newline] = true, [ts_external_token__list_item_continuation] = true, [ts_external_token__list_item_end] = true, [ts_external_token__block_quote_continuation] = true, }, - [41] = { + [38] = { [ts_external_token_frontmatter_marker] = true, }, - [42] = { + [39] = { [ts_external_token__div_end] = true, [ts_external_token__list_item_continuation] = true, [ts_external_token__list_item_end] = true, [ts_external_token__block_quote_continuation] = true, }, - [43] = { + [40] = { [ts_external_token__code_block_end] = true, [ts_external_token__list_item_continuation] = true, [ts_external_token__list_item_end] = true, [ts_external_token__block_quote_continuation] = true, }, - [44] = { + [41] = { [ts_external_token__block_close] = true, [ts_external_token_list_marker_definition] = true, }, - [45] = { + [42] = { [ts_external_token__block_close] = true, [ts_external_token_list_marker_decimal_period] = true, }, - [46] = { + [43] = { + [ts_external_token__block_close] = true, + [ts_external_token_list_marker_decimal_paren] = true, + }, + [44] = { [ts_external_token__block_close] = true, [ts_external_token_list_marker_decimal_parens] = true, }, - [47] = { + [45] = { [ts_external_token__block_close] = true, [ts_external_token_list_marker_lower_alpha_period] = true, }, - [48] = { + [46] = { [ts_external_token__block_close] = true, [ts_external_token_list_marker_lower_alpha_paren] = true, }, - [49] = { + [47] = { [ts_external_token__block_close] = true, [ts_external_token_list_marker_lower_alpha_parens] = true, }, - [50] = { + [48] = { [ts_external_token__block_close] = true, [ts_external_token_list_marker_upper_alpha_period] = true, }, - [51] = { + [49] = { [ts_external_token__block_close] = true, [ts_external_token_list_marker_upper_alpha_paren] = true, }, + [50] = { + [ts_external_token__block_close] = true, + [ts_external_token_list_marker_lower_roman_period] = true, + }, + [51] = { + [ts_external_token__block_close] = true, + [ts_external_token_list_marker_lower_roman_paren] = true, + }, [52] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_upper_alpha_parens] = true, + [ts_external_token_list_marker_lower_roman_parens] = true, }, [53] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_lower_roman_period] = true, + [ts_external_token_list_marker_upper_roman_paren] = true, }, [54] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_lower_roman_paren] = true, + [ts_external_token_list_marker_upper_roman_parens] = true, }, [55] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_lower_roman_parens] = true, + [ts_external_token_list_marker_upper_roman_period] = true, }, [56] = { - [ts_external_token__block_close] = true, - [ts_external_token_list_marker_upper_roman_period] = true, + [ts_external_token_list_marker_dash] = true, + [ts_external_token__block_quote_continuation] = true, }, [57] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_upper_roman_paren] = true, + [ts_external_token__heading_continuation] = true, }, [58] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_upper_roman_parens] = true, + [ts_external_token__eof_or_newline] = true, + [ts_external_token__block_quote_continuation] = true, }, [59] = { - [ts_external_token__block_close] = true, + [ts_external_token_list_marker_plus] = true, [ts_external_token__block_quote_continuation] = true, - [ts_external_token__table_caption_begin] = true, }, [60] = { - [ts_external_token_list_marker_dash] = true, + [ts_external_token__block_close] = true, + [ts_external_token__code_block_end] = true, [ts_external_token__block_quote_continuation] = true, }, [61] = { - [ts_external_token_list_marker_star] = true, + [ts_external_token__block_close] = true, + [ts_external_token__div_end] = true, [ts_external_token__block_quote_continuation] = true, }, [62] = { - [ts_external_token__list_item_content_spacer] = true, - [ts_external_token__table_caption_begin] = true, + [ts_external_token_list_marker_star] = true, + [ts_external_token__block_quote_continuation] = true, }, [63] = { [ts_external_token__list_marker_task_begin] = true, @@ -35056,73 +30455,58 @@ static const bool ts_external_scanner_states[84][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__block_quote_continuation] = true, }, [65] = { - [ts_external_token__block_close] = true, - [ts_external_token__heading_continuation] = true, + [ts_external_token__block_quote_continuation] = true, + [ts_external_token__footnote_continuation] = true, }, [66] = { - [ts_external_token_list_marker_plus] = true, - [ts_external_token__block_quote_continuation] = true, + [ts_external_token__indented_content_spacer] = true, + [ts_external_token__table_caption_begin] = true, }, [67] = { - [ts_external_token__block_close] = true, [ts_external_token__eof_or_newline] = true, - [ts_external_token__block_quote_continuation] = true, + [ts_external_token__close_paragraph] = true, }, [68] = { - [ts_external_token__block_close] = true, - [ts_external_token__div_end] = true, - [ts_external_token__block_quote_continuation] = true, + [ts_external_token__code_block_end] = true, + [ts_external_token__indented_content_spacer] = true, }, [69] = { - [ts_external_token__block_close] = true, - [ts_external_token__code_block_end] = true, - [ts_external_token__block_quote_continuation] = true, + [ts_external_token__footnote_mark_begin] = true, + [ts_external_token__in_fallback] = true, }, [70] = { [ts_external_token__eof_or_newline] = true, - [ts_external_token__list_item_content_spacer] = true, + [ts_external_token__indented_content_spacer] = true, }, [71] = { - [ts_external_token__eof_or_newline] = true, - [ts_external_token__close_paragraph] = true, + [ts_external_token__list_marker_task_begin] = true, }, [72] = { - [ts_external_token__footnote_mark_begin] = true, - [ts_external_token__in_fallback] = true, + [ts_external_token__div_end] = true, + [ts_external_token__indented_content_spacer] = true, }, [73] = { - [ts_external_token__list_marker_task_begin] = true, + [ts_external_token__indented_content_spacer] = true, }, [74] = { - [ts_external_token__div_end] = true, - [ts_external_token__list_item_content_spacer] = true, + [ts_external_token__block_close] = true, }, [75] = { - [ts_external_token__code_block_end] = true, - [ts_external_token__list_item_content_spacer] = true, + [ts_external_token_list_marker_star] = true, }, [76] = { - [ts_external_token__list_item_content_spacer] = true, + [ts_external_token__footnote_continuation] = true, }, [77] = { - [ts_external_token__footnote_end] = true, - }, - [78] = { [ts_external_token__footnote_mark_begin] = true, }, - [79] = { - [ts_external_token__block_close] = true, - }, - [80] = { + [78] = { [ts_external_token__list_item_continuation] = true, }, - [81] = { - [ts_external_token_list_marker_star] = true, - }, - [82] = { + [79] = { [ts_external_token_list_marker_dash] = true, }, - [83] = { + [80] = { [ts_external_token_list_marker_plus] = true, }, }; diff --git a/tree-sitter-djot/src/scanner.c b/tree-sitter-djot/src/scanner.c index f5ad7d6..1fad5c9 100644 --- a/tree-sitter-djot/src/scanner.c +++ b/tree-sitter-djot/src/scanner.c @@ -49,13 +49,14 @@ typedef enum { LIST_MARKER_UPPER_ROMAN_PARENS, LIST_ITEM_CONTINUATION, LIST_ITEM_END, - LIST_ITEM_CONTENT_SPACER, + INDENTED_CONTENT_SPACER, CLOSE_PARAGRAPH, BLOCK_QUOTE_BEGIN, BLOCK_QUOTE_CONTINUATION, THEMATIC_BREAK_DASH, THEMATIC_BREAK_STAR, FOOTNOTE_MARK_BEGIN, + FOOTNOTE_CONTINUATION, FOOTNOTE_END, TABLE_CAPTION_BEGIN, TABLE_CAPTION_END, @@ -392,19 +393,18 @@ static bool handle_blocks_to_close(Scanner *s, TSLexer *lexer) { } } -static bool parse_list_item_content_spacer(Scanner *s, TSLexer *lexer, - bool is_newline) { +static bool parse_indented_content_spacer(Scanner *s, TSLexer *lexer, + bool is_newline) { if (is_newline) { advance(s, lexer); lexer->mark_end(lexer); } - lexer->result_symbol = LIST_ITEM_CONTENT_SPACER; + lexer->result_symbol = INDENTED_CONTENT_SPACER; return true; } // Close open list if list markers are different. -static bool parse_list_item_continuation(Scanner *s, TSLexer *lexer, - bool is_newline) { +static bool parse_list_item_continuation(Scanner *s, TSLexer *lexer) { Block *list = find_list(s); if (!list) { return false; @@ -419,6 +419,21 @@ static bool parse_list_item_continuation(Scanner *s, TSLexer *lexer, return true; } +static bool parse_footnote_continuation(Scanner *s, TSLexer *lexer) { + Block *footnote = peek_block(s); + if (!footnote || footnote->type != FOOTNOTE) { + return false; + } + + if (s->indent < footnote->level) { + return false; + } + + lexer->mark_end(lexer); + lexer->result_symbol = FOOTNOTE_CONTINUATION; + return true; +} + // Close a block inside a list. // They should be closed if indentation is too little. static bool close_list_nested_block_if_needed(Scanner *s, TSLexer *lexer, @@ -1642,13 +1657,17 @@ bool tree_sitter_djot_external_scanner_scan(void *payload, TSLexer *lexer, return true; } - if (valid_symbols[LIST_ITEM_CONTENT_SPACER] && - parse_list_item_content_spacer(s, lexer, is_newline)) { + if (valid_symbols[INDENTED_CONTENT_SPACER] && + parse_indented_content_spacer(s, lexer, is_newline)) { return true; } if (valid_symbols[LIST_ITEM_CONTINUATION] && - parse_list_item_continuation(s, lexer, is_newline)) { + parse_list_item_continuation(s, lexer)) { + return true; + } + if (valid_symbols[FOOTNOTE_CONTINUATION] && + parse_footnote_continuation(s, lexer)) { return true; } diff --git a/tree-sitter-djot/test/corpus/syntax.txt b/tree-sitter-djot/test/corpus/syntax.txt index ec450d0..d5833c3 100644 --- a/tree-sitter-djot/test/corpus/syntax.txt +++ b/tree-sitter-djot/test/corpus/syntax.txt @@ -228,7 +228,7 @@ Heading 6: list closes (list_item_content (paragraph (inline)))))))) =============================================================================== -Heading: followed by list +Heading: before list =============================================================================== # Heading @@ -245,6 +245,26 @@ Heading: followed by list (list_marker_dash) (list_item_content (paragraph (inline)))))))) +=============================================================================== +Heading: after list +=============================================================================== +- list + +# Heading + +------------------------------------------------------------------------------- +(document + (list + (list_item + (list_marker_dash) + (list_item_content + (paragraph (inline))))) + (section + (heading + (marker) + (inline)))) + + =============================================================================== Section: closed by the same level =============================================================================== @@ -583,9 +603,35 @@ Code block: don't parse heading (code) (code_block_marker_end))) +=============================================================================== +Code block: in list should be closed before unindented code block +=============================================================================== +- List + + ``` + First code + +``` +Second code +``` + +------------------------------------------------------------------------------- +(document + (list + (list_item + (list_marker_dash) + (list_item_content + (paragraph (inline)) + (code_block + (code_block_marker_begin) + (code))))) + (code_block + (code_block_marker_begin) + (code) + (code_block_marker_end))) =============================================================================== -Raw block +Raw block: with space before language =============================================================================== ``` =html

txt

@@ -602,6 +648,40 @@ Raw block (content) (raw_block_marker_end))) +=============================================================================== +Raw block: in list should be closed before unindented raw block +=============================================================================== +- a + + ```=html + x + +```=html +y +``` + +------------------------------------------------------------------------------- +(document + (list + (list_item + (list_marker_dash) + (list_item_content + (paragraph (inline)) + (raw_block + (raw_block_marker_begin) + (raw_block_info + (language_marker) + (language)) + (content))))) + (raw_block + (raw_block_marker_begin) + (raw_block_info + (language_marker) + (language)) + (content) + (raw_block_marker_end))) + + =============================================================================== Thematic break: star =============================================================================== @@ -1303,6 +1383,61 @@ Div: inside block quote (block_quote_marker) (div_marker_end))))) +=============================================================================== +Div: in list should be closed before heading +=============================================================================== +- List + + ::: + unclosed div + +# heading + +------------------------------------------------------------------------------- +(document + (list + (list_item + (list_marker_dash) + (list_item_content + (paragraph (inline)) + (div + (div_marker_begin) + (content + (paragraph (inline))))))) + (section + (heading + (marker) + (inline)))) + +=============================================================================== +Div: in list should be closed before unindented div +=============================================================================== +- List + + ::: + nested div + +::: +outside div +::: + +------------------------------------------------------------------------------- +(document + (list + (list_item + (list_marker_dash) + (list_item_content + (paragraph (inline)) + (div + (div_marker_begin) + (content + (paragraph (inline))))))) + (div + (div_marker_begin) + (content + (paragraph (inline))) + (div_marker_end))) + =============================================================================== Paragraph: not recognized =============================================================================== @@ -2988,6 +3123,176 @@ Footnote: With block quote (content (paragraph (inline))))))) +=============================================================================== +Footnote: Code block starts footnote +=============================================================================== +[^foo]: ``` + x + ``` + + a + +------------------------------------------------------------------------------- +(document + (footnote + (footnote_marker_begin) + (reference_label) + (footnote_marker_end) + (footnote_content + (code_block + (code_block_marker_begin) + (code) + (code_block_marker_end)) + (paragraph (inline))))) + + +=============================================================================== +Footnote: Nested divs with block attributes +=============================================================================== +[^f]: x + + {#1} + ::: + a + ::: + + {#2} + ::: + b + ::: + +------------------------------------------------------------------------------- +(document + (footnote + (footnote_marker_begin) + (reference_label) + (footnote_marker_end) + (footnote_content + (paragraph (inline)) + (block_attribute (args (identifier))) + (div + (div_marker_begin) + (content (paragraph (inline))) + (div_marker_end)) + (block_attribute (args (identifier))) + (div + (div_marker_begin) + (content (paragraph (inline))) + (div_marker_end))))) + +=============================================================================== +Footnote: Nested code block between paragraphs +=============================================================================== +[^f]: a + + ``` + x + ``` + + c + +------------------------------------------------------------------------------- +(document + (footnote + (footnote_marker_begin) + (reference_label) + (footnote_marker_end) + (footnote_content + (paragraph (inline)) + (code_block + (code_block_marker_begin) + (code) + (code_block_marker_end)) + (paragraph (inline))))) + +=============================================================================== +Footnote: Thematic break between paragraphs +=============================================================================== +[^f]: a + + * * * + + b + +------------------------------------------------------------------------------- +(document + (footnote + (footnote_marker_begin) + (reference_label) + (footnote_marker_end) + (footnote_content + (paragraph (inline)) + (thematic_break) + (paragraph (inline))))) + +=============================================================================== +Footnote: Quote between paragraphs +=============================================================================== +[^f]: a + + > c + + b + +------------------------------------------------------------------------------- +(document + (footnote + (footnote_marker_begin) + (reference_label) + (footnote_marker_end) + (footnote_content + (paragraph (inline)) + (block_quote + (block_quote_marker) + (content + (paragraph (inline)))) + (paragraph (inline))))) + +=============================================================================== +Footnote: Link definition between paragraphs +=============================================================================== +[^f]: a + + [def]: /u + + b + +------------------------------------------------------------------------------- +(document + (footnote + (footnote_marker_begin) + (reference_label) + (footnote_marker_end) + (footnote_content + (paragraph (inline)) + (link_reference_definition + (link_label (inline)) + (link_destination)) + (paragraph (inline))))) + +=============================================================================== +Footnote: Table between paragraphs +=============================================================================== +[^foo]: a + + | a | b | + + b + +------------------------------------------------------------------------------- +(document + (footnote + (footnote_marker_begin) + (reference_label) + (footnote_marker_end) + (footnote_content + (paragraph (inline)) + (table + (table_row + (table_cell (inline)) + (table_cell (inline)))) + (paragraph (inline))))) + =============================================================================== Paragraph: broken things =============================================================================== @@ -3063,7 +3368,7 @@ i.e. (paragraph (inline))) =============================================================================== -Frontmatter +Frontmatter: without language =============================================================================== --- key: Some value @@ -3082,7 +3387,7 @@ x (paragraph (inline))) =============================================================================== -Frontmatter +Frontmatter: with language =============================================================================== ---toml key: Some value @@ -3101,141 +3406,7 @@ x (paragraph (inline))) =============================================================================== -Heading after list -=============================================================================== -- list - -# Heading - -------------------------------------------------------------------------------- -(document - (list - (list_item - (list_marker_dash) - (list_item_content - (paragraph (inline))))) - (section - (heading - (marker) - (inline)))) - -=============================================================================== -Div in list should be closed before unindented div -=============================================================================== -- List - - ::: - nested div - -::: -outside div -::: - -------------------------------------------------------------------------------- -(document - (list - (list_item - (list_marker_dash) - (list_item_content - (paragraph (inline)) - (div - (div_marker_begin) - (content - (paragraph (inline))))))) - (div - (div_marker_begin) - (content - (paragraph (inline))) - (div_marker_end))) - -=============================================================================== -Code block in list should be closed before unindented code block -=============================================================================== -- List - - ``` - First code - -``` -Second code -``` - -------------------------------------------------------------------------------- -(document - (list - (list_item - (list_marker_dash) - (list_item_content - (paragraph (inline)) - (code_block - (code_block_marker_begin) - (code))))) - (code_block - (code_block_marker_begin) - (code) - (code_block_marker_end))) - -=============================================================================== -Raw block in list should be closed before unindented raw block -=============================================================================== -- a - - ```=html - x - -```=html -y -``` - -------------------------------------------------------------------------------- -(document - (list - (list_item - (list_marker_dash) - (list_item_content - (paragraph (inline)) - (raw_block - (raw_block_marker_begin) - (raw_block_info - (language_marker) - (language)) - (content))))) - (raw_block - (raw_block_marker_begin) - (raw_block_info - (language_marker) - (language)) - (content) - (raw_block_marker_end))) - -=============================================================================== -Div in list should be closed before heading -=============================================================================== -- List - - ::: - unclosed div - -# heading - -------------------------------------------------------------------------------- -(document - (list - (list_item - (list_marker_dash) - (list_item_content - (paragraph (inline)) - (div - (div_marker_begin) - (content - (paragraph (inline))))))) - (section - (heading - (marker) - (inline)))) - -=============================================================================== -Comment before link def +Comment: before link def =============================================================================== {% c %} [def]: /url @@ -3251,7 +3422,7 @@ Comment before link def (link_destination))) =============================================================================== -Comment before heading +Comment: before heading =============================================================================== {% c %} # one From 0036a7439b057aeaf99e23e148d32d7c3a9ebfef Mon Sep 17 00:00:00 2001 From: Jonas Hietala Date: Thu, 23 Jan 2025 09:29:38 +0100 Subject: [PATCH 39/46] fix: Ending markers for language injection regex --- tree-sitter-djot-inline/tree-sitter.json | 10 +++------- tree-sitter-djot/tree-sitter.json | 14 ++++---------- 2 files changed, 7 insertions(+), 17 deletions(-) diff --git a/tree-sitter-djot-inline/tree-sitter.json b/tree-sitter-djot-inline/tree-sitter.json index 71341e8..cfcaa76 100644 --- a/tree-sitter-djot-inline/tree-sitter.json +++ b/tree-sitter-djot-inline/tree-sitter.json @@ -6,13 +6,9 @@ "scope": "text.djot_inline", "path": ".", "file-types": null, - "highlights": [ - "queries/highlights.scm" - ], - "injections": [ - "queries/injections.scm" - ], - "injection-regex": "djot_inline" + "highlights": ["queries/highlights.scm"], + "injections": ["queries/injections.scm"], + "injection-regex": "^djot_inline$" } ], "metadata": { diff --git a/tree-sitter-djot/tree-sitter.json b/tree-sitter-djot/tree-sitter.json index 9c5437f..4e60a48 100644 --- a/tree-sitter-djot/tree-sitter.json +++ b/tree-sitter-djot/tree-sitter.json @@ -5,16 +5,10 @@ "camelcase": "Djot", "scope": "text.djot", "path": ".", - "file-types": [ - "dj" - ], - "highlights": [ - "queries/highlights.scm" - ], - "injections": [ - "queries/injections.scm" - ], - "injection-regex": "djot" + "file-types": ["dj"], + "highlights": ["queries/highlights.scm"], + "injections": ["queries/injections.scm"], + "injection-regex": "^djot$" } ], "metadata": { From 10b04b4bee48009981bca9f6ea744f56ce2f1332 Mon Sep 17 00:00:00 2001 From: Jonas Hietala Date: Thu, 23 Jan 2025 09:44:49 +0100 Subject: [PATCH 40/46] fix: Prefer inline attributes with text directly following --- tree-sitter-djot-inline/grammar.js | 2 +- tree-sitter-djot-inline/src/grammar.json | 2 +- tree-sitter-djot-inline/src/parser.c | 4 ++-- tree-sitter-djot-inline/test/corpus/syntax.txt | 15 +++++++++++++++ 4 files changed, 19 insertions(+), 4 deletions(-) diff --git a/tree-sitter-djot-inline/grammar.js b/tree-sitter-djot-inline/grammar.js index 5800d7e..c3903ae 100644 --- a/tree-sitter-djot-inline/grammar.js +++ b/tree-sitter-djot-inline/grammar.js @@ -88,7 +88,7 @@ module.exports = grammar({ // Use precedence for inline attribute as well to allow // closure before other elements. prec.dynamic( - ELEMENT_PRECEDENCE, + 2 * ELEMENT_PRECEDENCE, field("attribute", $.inline_attribute), ), $._curly_bracket_span_fallback, diff --git a/tree-sitter-djot-inline/src/grammar.json b/tree-sitter-djot-inline/src/grammar.json index 8a3cd86..8bf487a 100644 --- a/tree-sitter-djot-inline/src/grammar.json +++ b/tree-sitter-djot-inline/src/grammar.json @@ -217,7 +217,7 @@ "members": [ { "type": "PREC_DYNAMIC", - "value": 100, + "value": 200, "content": { "type": "FIELD", "name": "attribute", diff --git a/tree-sitter-djot-inline/src/parser.c b/tree-sitter-djot-inline/src/parser.c index 87a503d..69f6976 100644 --- a/tree-sitter-djot-inline/src/parser.c +++ b/tree-sitter-djot-inline/src/parser.c @@ -41316,8 +41316,8 @@ static const TSParseActionEntry ts_parse_actions[] = { [1579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, 0, 0), SHIFT(1120), [1582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element, 2, 0, 0), [1584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__element, 2, 0, 0), - [1586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element, 2, 100, 2), - [1588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__element, 2, 100, 2), + [1586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element, 2, 200, 2), + [1588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__element, 2, 200, 2), [1590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__curly_bracket_span_fallback, 2, 0, 0), [1592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__curly_bracket_span_fallback, 2, 0, 0), [1594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_without_trailing_space, 1, 0, 1), diff --git a/tree-sitter-djot-inline/test/corpus/syntax.txt b/tree-sitter-djot-inline/test/corpus/syntax.txt index 507a9f4..df01b3d 100644 --- a/tree-sitter-djot-inline/test/corpus/syntax.txt +++ b/tree-sitter-djot-inline/test/corpus/syntax.txt @@ -1442,6 +1442,21 @@ Before{#id % escape \% %} (content (backslash_escape)))))) +=============================================================================== +Inline attribute: tight with on link +=============================================================================== +1[x](u){k=v}2 + +------------------------------------------------------------------------------- + +(inline + (inline_link + (link_text) + (inline_link_destination)) + (inline_attribute + (args + (key_value (key) (value))))) + =============================================================================== Inline attribute: comment fallback =============================================================================== From 260729d20af264afbe2bb20511e0b722c70b7f72 Mon Sep 17 00:00:00 2001 From: Jonas Hietala Date: Thu, 23 Jan 2025 12:32:14 +0100 Subject: [PATCH 41/46] perf: Rewrite table to use external scanner to avoid excessive branching --- tree-sitter-djot/grammar.js | 38 +- tree-sitter-djot/src/grammar.json | 127 +- tree-sitter-djot/src/node-types.json | 16 +- tree-sitter-djot/src/parser.c | 37651 +++++++++++----------- tree-sitter-djot/src/scanner.c | 254 +- tree-sitter-djot/test/corpus/syntax.txt | 4 +- 6 files changed, 19236 insertions(+), 18854 deletions(-) diff --git a/tree-sitter-djot/grammar.js b/tree-sitter-djot/grammar.js index 33f944c..4841f0c 100644 --- a/tree-sitter-djot/grammar.js +++ b/tree-sitter-djot/grammar.js @@ -4,9 +4,7 @@ module.exports = grammar({ extras: (_) => ["\r"], conflicts: ($) => [ - [$._table_content], [$.link_reference_definition, $._symbol_fallback], - [$.table_row, $._symbol_fallback], [$.block_attribute, $._symbol_fallback], [$.footnote_marker_begin, $._symbol_fallback], ], @@ -347,22 +345,30 @@ module.exports = grammar({ table: ($) => prec.right( seq( - repeat1($._table_content), + repeat1($._table_row), optional($._newline), optional($.table_caption), ), ), - _table_content: ($) => - choice( - $.table_separator, - seq(alias($.table_row, $.table_header), $.table_separator), - $.table_row, + _table_row: ($) => + seq( + optional($._block_quote_prefix), + choice($.table_header, $.table_separator, $.table_row), ), - table_separator: ($) => + table_header: ($) => prec.right( seq( - optional($._block_quote_prefix), + $._table_header_begin, + $.table_cell, + repeat(seq("|", $.table_cell)), "|", + $._newline, + ), + ), + table_separator: ($) => + prec.right( + seq( + $._table_separator_begin, $.table_cell_alignment, repeat(seq("|", $.table_cell_alignment)), "|", @@ -372,8 +378,7 @@ module.exports = grammar({ table_row: ($) => prec.right( seq( - optional($._block_quote_prefix), - "|", + $._table_row_begin, $.table_cell, repeat(seq("|", $.table_cell)), "|", @@ -581,7 +586,6 @@ module.exports = grammar({ "[", "{", "{-", - "|", ".", "#", "%", @@ -712,9 +716,15 @@ module.exports = grammar({ // Footnotes have significant whitespace and can contain blocks, // the same as lists. $._footnote_mark_begin, - // Continuations consumes whitespace indentation. $._footnote_continuation, $._footnote_end, + // Table begin consumes a `|` if the row is a valid table row. + // In Djot the number of table cells don't have to match for in the table. + // The different types are here to let the scanner take care of the detection + // to avoid tree-sitter branching. + $._table_header_begin, + $._table_separator_begin, + $._table_row_begin, // Table captions have significant whitespace but contain only inline. $._table_caption_begin, $._table_caption_end, diff --git a/tree-sitter-djot/src/grammar.json b/tree-sitter-djot/src/grammar.json index 95f620a..a60f01a 100644 --- a/tree-sitter-djot/src/grammar.json +++ b/tree-sitter-djot/src/grammar.json @@ -1476,7 +1476,7 @@ "type": "REPEAT1", "content": { "type": "SYMBOL", - "name": "_table_content" + "name": "_table_row" } }, { @@ -1506,59 +1506,91 @@ ] } }, - "_table_content": { - "type": "CHOICE", + "_table_row": { + "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "table_separator" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_block_quote_prefix" + }, + { + "type": "BLANK" + } + ] }, { - "type": "SEQ", + "type": "CHOICE", "members": [ { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "table_row" - }, - "named": true, - "value": "table_header" + "type": "SYMBOL", + "name": "table_header" }, { "type": "SYMBOL", "name": "table_separator" + }, + { + "type": "SYMBOL", + "name": "table_row" } ] - }, - { - "type": "SYMBOL", - "name": "table_row" } ] }, - "table_separator": { + "table_header": { "type": "PREC_RIGHT", "value": 0, "content": { "type": "SEQ", "members": [ { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_block_quote_prefix" - }, - { - "type": "BLANK" - } - ] + "type": "SYMBOL", + "name": "_table_header_begin" + }, + { + "type": "SYMBOL", + "name": "table_cell" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "|" + }, + { + "type": "SYMBOL", + "name": "table_cell" + } + ] + } }, { "type": "STRING", "value": "|" }, + { + "type": "SYMBOL", + "name": "_newline" + } + ] + } + }, + "table_separator": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_table_separator_begin" + }, { "type": "SYMBOL", "name": "table_cell_alignment" @@ -1597,20 +1629,8 @@ "type": "SEQ", "members": [ { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_block_quote_prefix" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "|" + "type": "SYMBOL", + "name": "_table_row_begin" }, { "type": "SYMBOL", @@ -2658,10 +2678,6 @@ "type": "STRING", "value": "{-" }, - { - "type": "STRING", - "value": "|" - }, { "type": "STRING", "value": "." @@ -2776,17 +2792,10 @@ } ], "conflicts": [ - [ - "_table_content" - ], [ "link_reference_definition", "_symbol_fallback" ], - [ - "table_row", - "_symbol_fallback" - ], [ "block_attribute", "_symbol_fallback" @@ -2970,6 +2979,18 @@ "type": "SYMBOL", "name": "_footnote_end" }, + { + "type": "SYMBOL", + "name": "_table_header_begin" + }, + { + "type": "SYMBOL", + "name": "_table_separator_begin" + }, + { + "type": "SYMBOL", + "name": "_table_row_begin" + }, { "type": "SYMBOL", "name": "_table_caption_begin" diff --git a/tree-sitter-djot/src/node-types.json b/tree-sitter-djot/src/node-types.json index 8322788..30f4b42 100644 --- a/tree-sitter-djot/src/node-types.json +++ b/tree-sitter-djot/src/node-types.json @@ -1072,6 +1072,10 @@ "multiple": true, "required": true, "types": [ + { + "type": "block_quote_marker", + "named": true + }, { "type": "table_caption", "named": true @@ -1140,10 +1144,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "block_quote_marker", - "named": true - }, { "type": "table_cell", "named": true @@ -1159,10 +1159,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "block_quote_marker", - "named": true - }, { "type": "table_cell", "named": true @@ -1178,10 +1174,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "block_quote_marker", - "named": true - }, { "type": "table_cell_alignment", "named": true diff --git a/tree-sitter-djot/src/parser.c b/tree-sitter-djot/src/parser.c index b45cf4e..ffa012a 100644 --- a/tree-sitter-djot/src/parser.c +++ b/tree-sitter-djot/src/parser.c @@ -5,15 +5,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 1193 +#define STATE_COUNT 1158 #define LARGE_STATE_COUNT 66 -#define SYMBOL_COUNT 209 -#define ALIAS_COUNT 9 -#define TOKEN_COUNT 79 -#define EXTERNAL_TOKEN_COUNT 47 +#define SYMBOL_COUNT 213 +#define ALIAS_COUNT 8 +#define TOKEN_COUNT 82 +#define EXTERNAL_TOKEN_COUNT 50 #define FIELD_COUNT 15 #define MAX_ALIAS_SEQUENCE_LENGTH 8 -#define PRODUCTION_ID_COUNT 36 +#define PRODUCTION_ID_COUNT 35 enum ts_symbol_identifiers { anon_sym_LBRACK = 1, @@ -90,149 +90,152 @@ enum ts_symbol_identifiers { sym__footnote_mark_begin = 72, sym__footnote_continuation = 73, sym__footnote_end = 74, - sym__table_caption_begin = 75, - sym__table_caption_end = 76, - sym__in_fallback = 77, - sym__error = 78, - sym_document = 79, - sym_frontmatter = 80, - sym_frontmatter_content = 81, - sym__block_with_section = 82, - sym__block_with_heading = 83, - sym__block_element = 84, - sym_section = 85, - sym_heading = 86, - sym__heading_content = 87, - sym_list = 88, - sym__list_dash = 89, - sym__list_item_dash = 90, - sym__list_plus = 91, - sym__list_item_plus = 92, - sym__list_star = 93, - sym__list_item_star = 94, - sym__list_task = 95, - sym__list_item_task = 96, - sym_list_marker_task = 97, - sym_checked = 98, - sym_unchecked = 99, - sym__list_definition = 100, - sym__list_item_definition = 101, - sym__list_decimal_period = 102, - sym__list_item_decimal_period = 103, - sym__list_decimal_paren = 104, - sym__list_item_decimal_paren = 105, - sym__list_decimal_parens = 106, - sym__list_item_decimal_parens = 107, - sym__list_lower_alpha_period = 108, - sym__list_item_lower_alpha_period = 109, - sym__list_lower_alpha_paren = 110, - sym__list_item_lower_alpha_paren = 111, - sym__list_lower_alpha_parens = 112, - sym__list_item_lower_alpha_parens = 113, - sym__list_upper_alpha_period = 114, - sym__list_item_upper_alpha_period = 115, - sym__list_upper_alpha_paren = 116, - sym__list_item_upper_alpha_paren = 117, - sym__list_upper_alpha_parens = 118, - sym__list_item_upper_alpha_parens = 119, - sym__list_lower_roman_period = 120, - sym__list_item_lower_roman_period = 121, - sym__list_lower_roman_paren = 122, - sym__list_item_lower_roman_paren = 123, - sym__list_lower_roman_parens = 124, - sym__list_item_lower_roman_parens = 125, - sym__list_upper_roman_period = 126, - sym__list_item_upper_roman_period = 127, - sym__list_upper_roman_paren = 128, - sym__list_item_upper_roman_paren = 129, - sym__list_upper_roman_parens = 130, - sym__list_item_upper_roman_parens = 131, - sym_list_item_content = 132, - sym_table = 133, - sym__table_content = 134, - sym_table_separator = 135, - sym_table_row = 136, - sym_table_cell = 137, - sym_table_caption = 138, - sym_footnote = 139, - sym_footnote_marker_begin = 140, - sym_footnote_content = 141, - sym_div = 142, - sym__div_marker_begin = 143, - sym_class_name = 144, - sym_code_block = 145, - sym_raw_block = 146, - sym_raw_block_info = 147, - sym_code = 148, - sym__line = 149, - sym_thematic_break = 150, - sym_block_quote = 151, - sym__block_quote_content = 152, - sym__block_quote_prefix = 153, - sym_link_reference_definition = 154, - sym_link_label = 155, - sym_block_attribute = 156, - sym_class = 157, - sym_identifier = 158, - sym_key_value = 159, - sym_key = 160, - sym_value = 161, - sym__paragraph = 162, - sym__paragraph_content = 163, - sym__paragraph_inline_content = 164, - sym__one_or_two_newlines = 165, - sym__inline = 166, - sym__inline_line = 167, - sym__symbol_fallback = 168, - sym_reference_label = 169, - sym__comment_no_newline = 170, - aux_sym_document_repeat1 = 171, - aux_sym_frontmatter_content_repeat1 = 172, - aux_sym__heading_content_repeat1 = 173, - aux_sym__list_dash_repeat1 = 174, - aux_sym__list_plus_repeat1 = 175, - aux_sym__list_star_repeat1 = 176, - aux_sym__list_task_repeat1 = 177, - aux_sym__list_definition_repeat1 = 178, - aux_sym__list_item_definition_repeat1 = 179, - aux_sym__list_decimal_period_repeat1 = 180, - aux_sym__list_decimal_paren_repeat1 = 181, - aux_sym__list_decimal_parens_repeat1 = 182, - aux_sym__list_lower_alpha_period_repeat1 = 183, - aux_sym__list_lower_alpha_paren_repeat1 = 184, - aux_sym__list_lower_alpha_parens_repeat1 = 185, - aux_sym__list_upper_alpha_period_repeat1 = 186, - aux_sym__list_upper_alpha_paren_repeat1 = 187, - aux_sym__list_upper_alpha_parens_repeat1 = 188, - aux_sym__list_lower_roman_period_repeat1 = 189, - aux_sym__list_lower_roman_paren_repeat1 = 190, - aux_sym__list_lower_roman_parens_repeat1 = 191, - aux_sym__list_upper_roman_period_repeat1 = 192, - aux_sym__list_upper_roman_paren_repeat1 = 193, - aux_sym__list_upper_roman_parens_repeat1 = 194, - aux_sym_list_item_content_repeat1 = 195, - aux_sym_table_repeat1 = 196, - aux_sym_table_separator_repeat1 = 197, - aux_sym_table_row_repeat1 = 198, - aux_sym_table_caption_repeat1 = 199, - aux_sym_footnote_content_repeat1 = 200, - aux_sym_div_repeat1 = 201, - aux_sym_code_repeat1 = 202, - aux_sym__block_quote_content_repeat1 = 203, - aux_sym__block_quote_prefix_repeat1 = 204, - aux_sym_block_attribute_repeat1 = 205, - aux_sym__paragraph_inline_content_repeat1 = 206, - aux_sym__inline_repeat1 = 207, - aux_sym__comment_no_newline_repeat1 = 208, - alias_sym_args = 209, - anon_alias_sym_class = 210, - alias_sym_definition = 211, - alias_sym_language_marker = 212, - alias_sym_paragraph = 213, - alias_sym_raw_block_marker_begin = 214, - alias_sym_raw_block_marker_end = 215, - alias_sym_section_content = 216, - alias_sym_table_header = 217, + sym__table_header_begin = 75, + sym__table_separator_begin = 76, + sym__table_row_begin = 77, + sym__table_caption_begin = 78, + sym__table_caption_end = 79, + sym__in_fallback = 80, + sym__error = 81, + sym_document = 82, + sym_frontmatter = 83, + sym_frontmatter_content = 84, + sym__block_with_section = 85, + sym__block_with_heading = 86, + sym__block_element = 87, + sym_section = 88, + sym_heading = 89, + sym__heading_content = 90, + sym_list = 91, + sym__list_dash = 92, + sym__list_item_dash = 93, + sym__list_plus = 94, + sym__list_item_plus = 95, + sym__list_star = 96, + sym__list_item_star = 97, + sym__list_task = 98, + sym__list_item_task = 99, + sym_list_marker_task = 100, + sym_checked = 101, + sym_unchecked = 102, + sym__list_definition = 103, + sym__list_item_definition = 104, + sym__list_decimal_period = 105, + sym__list_item_decimal_period = 106, + sym__list_decimal_paren = 107, + sym__list_item_decimal_paren = 108, + sym__list_decimal_parens = 109, + sym__list_item_decimal_parens = 110, + sym__list_lower_alpha_period = 111, + sym__list_item_lower_alpha_period = 112, + sym__list_lower_alpha_paren = 113, + sym__list_item_lower_alpha_paren = 114, + sym__list_lower_alpha_parens = 115, + sym__list_item_lower_alpha_parens = 116, + sym__list_upper_alpha_period = 117, + sym__list_item_upper_alpha_period = 118, + sym__list_upper_alpha_paren = 119, + sym__list_item_upper_alpha_paren = 120, + sym__list_upper_alpha_parens = 121, + sym__list_item_upper_alpha_parens = 122, + sym__list_lower_roman_period = 123, + sym__list_item_lower_roman_period = 124, + sym__list_lower_roman_paren = 125, + sym__list_item_lower_roman_paren = 126, + sym__list_lower_roman_parens = 127, + sym__list_item_lower_roman_parens = 128, + sym__list_upper_roman_period = 129, + sym__list_item_upper_roman_period = 130, + sym__list_upper_roman_paren = 131, + sym__list_item_upper_roman_paren = 132, + sym__list_upper_roman_parens = 133, + sym__list_item_upper_roman_parens = 134, + sym_list_item_content = 135, + sym_table = 136, + sym__table_row = 137, + sym_table_header = 138, + sym_table_separator = 139, + sym_table_row = 140, + sym_table_cell = 141, + sym_table_caption = 142, + sym_footnote = 143, + sym_footnote_marker_begin = 144, + sym_footnote_content = 145, + sym_div = 146, + sym__div_marker_begin = 147, + sym_class_name = 148, + sym_code_block = 149, + sym_raw_block = 150, + sym_raw_block_info = 151, + sym_code = 152, + sym__line = 153, + sym_thematic_break = 154, + sym_block_quote = 155, + sym__block_quote_content = 156, + sym__block_quote_prefix = 157, + sym_link_reference_definition = 158, + sym_link_label = 159, + sym_block_attribute = 160, + sym_class = 161, + sym_identifier = 162, + sym_key_value = 163, + sym_key = 164, + sym_value = 165, + sym__paragraph = 166, + sym__paragraph_content = 167, + sym__paragraph_inline_content = 168, + sym__one_or_two_newlines = 169, + sym__inline = 170, + sym__inline_line = 171, + sym__symbol_fallback = 172, + sym_reference_label = 173, + sym__comment_no_newline = 174, + aux_sym_document_repeat1 = 175, + aux_sym_frontmatter_content_repeat1 = 176, + aux_sym__heading_content_repeat1 = 177, + aux_sym__list_dash_repeat1 = 178, + aux_sym__list_plus_repeat1 = 179, + aux_sym__list_star_repeat1 = 180, + aux_sym__list_task_repeat1 = 181, + aux_sym__list_definition_repeat1 = 182, + aux_sym__list_item_definition_repeat1 = 183, + aux_sym__list_decimal_period_repeat1 = 184, + aux_sym__list_decimal_paren_repeat1 = 185, + aux_sym__list_decimal_parens_repeat1 = 186, + aux_sym__list_lower_alpha_period_repeat1 = 187, + aux_sym__list_lower_alpha_paren_repeat1 = 188, + aux_sym__list_lower_alpha_parens_repeat1 = 189, + aux_sym__list_upper_alpha_period_repeat1 = 190, + aux_sym__list_upper_alpha_paren_repeat1 = 191, + aux_sym__list_upper_alpha_parens_repeat1 = 192, + aux_sym__list_lower_roman_period_repeat1 = 193, + aux_sym__list_lower_roman_paren_repeat1 = 194, + aux_sym__list_lower_roman_parens_repeat1 = 195, + aux_sym__list_upper_roman_period_repeat1 = 196, + aux_sym__list_upper_roman_paren_repeat1 = 197, + aux_sym__list_upper_roman_parens_repeat1 = 198, + aux_sym_list_item_content_repeat1 = 199, + aux_sym_table_repeat1 = 200, + aux_sym_table_header_repeat1 = 201, + aux_sym_table_separator_repeat1 = 202, + aux_sym_table_caption_repeat1 = 203, + aux_sym_footnote_content_repeat1 = 204, + aux_sym_div_repeat1 = 205, + aux_sym_code_repeat1 = 206, + aux_sym__block_quote_content_repeat1 = 207, + aux_sym__block_quote_prefix_repeat1 = 208, + aux_sym_block_attribute_repeat1 = 209, + aux_sym__paragraph_inline_content_repeat1 = 210, + aux_sym__inline_repeat1 = 211, + aux_sym__comment_no_newline_repeat1 = 212, + alias_sym_args = 213, + anon_alias_sym_class = 214, + alias_sym_definition = 215, + alias_sym_language_marker = 216, + alias_sym_paragraph = 217, + alias_sym_raw_block_marker_begin = 218, + alias_sym_raw_block_marker_end = 219, + alias_sym_section_content = 220, }; static const char * const ts_symbol_names[] = { @@ -311,6 +314,9 @@ static const char * const ts_symbol_names[] = { [sym__footnote_mark_begin] = "_footnote_mark_begin", [sym__footnote_continuation] = "_footnote_continuation", [sym__footnote_end] = "_footnote_end", + [sym__table_header_begin] = "_table_header_begin", + [sym__table_separator_begin] = "_table_separator_begin", + [sym__table_row_begin] = "_table_row_begin", [sym__table_caption_begin] = "marker", [sym__table_caption_end] = "_table_caption_end", [sym__in_fallback] = "_in_fallback", @@ -370,7 +376,8 @@ static const char * const ts_symbol_names[] = { [sym__list_item_upper_roman_parens] = "list_item", [sym_list_item_content] = "list_item_content", [sym_table] = "table", - [sym__table_content] = "_table_content", + [sym__table_row] = "_table_row", + [sym_table_header] = "table_header", [sym_table_separator] = "table_separator", [sym_table_row] = "table_row", [sym_table_cell] = "table_cell", @@ -433,8 +440,8 @@ static const char * const ts_symbol_names[] = { [aux_sym__list_upper_roman_parens_repeat1] = "_list_upper_roman_parens_repeat1", [aux_sym_list_item_content_repeat1] = "list_item_content_repeat1", [aux_sym_table_repeat1] = "table_repeat1", + [aux_sym_table_header_repeat1] = "table_header_repeat1", [aux_sym_table_separator_repeat1] = "table_separator_repeat1", - [aux_sym_table_row_repeat1] = "table_row_repeat1", [aux_sym_table_caption_repeat1] = "table_caption_repeat1", [aux_sym_footnote_content_repeat1] = "footnote_content_repeat1", [aux_sym_div_repeat1] = "div_repeat1", @@ -453,7 +460,6 @@ static const char * const ts_symbol_names[] = { [alias_sym_raw_block_marker_begin] = "raw_block_marker_begin", [alias_sym_raw_block_marker_end] = "raw_block_marker_end", [alias_sym_section_content] = "section_content", - [alias_sym_table_header] = "table_header", }; static const TSSymbol ts_symbol_map[] = { @@ -532,6 +538,9 @@ static const TSSymbol ts_symbol_map[] = { [sym__footnote_mark_begin] = sym__footnote_mark_begin, [sym__footnote_continuation] = sym__footnote_continuation, [sym__footnote_end] = sym__footnote_end, + [sym__table_header_begin] = sym__table_header_begin, + [sym__table_separator_begin] = sym__table_separator_begin, + [sym__table_row_begin] = sym__table_row_begin, [sym__table_caption_begin] = sym__heading_begin, [sym__table_caption_end] = sym__table_caption_end, [sym__in_fallback] = sym__in_fallback, @@ -591,7 +600,8 @@ static const TSSymbol ts_symbol_map[] = { [sym__list_item_upper_roman_parens] = sym__list_item_dash, [sym_list_item_content] = sym_list_item_content, [sym_table] = sym_table, - [sym__table_content] = sym__table_content, + [sym__table_row] = sym__table_row, + [sym_table_header] = sym_table_header, [sym_table_separator] = sym_table_separator, [sym_table_row] = sym_table_row, [sym_table_cell] = sym_table_cell, @@ -654,8 +664,8 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym__list_upper_roman_parens_repeat1] = aux_sym__list_upper_roman_parens_repeat1, [aux_sym_list_item_content_repeat1] = aux_sym_list_item_content_repeat1, [aux_sym_table_repeat1] = aux_sym_table_repeat1, + [aux_sym_table_header_repeat1] = aux_sym_table_header_repeat1, [aux_sym_table_separator_repeat1] = aux_sym_table_separator_repeat1, - [aux_sym_table_row_repeat1] = aux_sym_table_row_repeat1, [aux_sym_table_caption_repeat1] = aux_sym_table_caption_repeat1, [aux_sym_footnote_content_repeat1] = aux_sym_footnote_content_repeat1, [aux_sym_div_repeat1] = aux_sym_div_repeat1, @@ -674,7 +684,6 @@ static const TSSymbol ts_symbol_map[] = { [alias_sym_raw_block_marker_begin] = alias_sym_raw_block_marker_begin, [alias_sym_raw_block_marker_end] = alias_sym_raw_block_marker_end, [alias_sym_section_content] = alias_sym_section_content, - [alias_sym_table_header] = alias_sym_table_header, }; static const TSSymbolMetadata ts_symbol_metadata[] = { @@ -978,6 +987,18 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, + [sym__table_header_begin] = { + .visible = false, + .named = true, + }, + [sym__table_separator_begin] = { + .visible = false, + .named = true, + }, + [sym__table_row_begin] = { + .visible = false, + .named = true, + }, [sym__table_caption_begin] = { .visible = true, .named = true, @@ -1214,10 +1235,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym__table_content] = { + [sym__table_row] = { .visible = false, .named = true, }, + [sym_table_header] = { + .visible = true, + .named = true, + }, [sym_table_separator] = { .visible = true, .named = true, @@ -1466,11 +1491,11 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_table_separator_repeat1] = { + [aux_sym_table_header_repeat1] = { .visible = false, .named = false, }, - [aux_sym_table_row_repeat1] = { + [aux_sym_table_separator_repeat1] = { .visible = false, .named = false, }, @@ -1546,10 +1571,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [alias_sym_table_header] = { - .visible = true, - .named = true, - }, }; enum ts_field_identifiers { @@ -1595,31 +1616,31 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [4] = {.index = 5, .length = 2}, [6] = {.index = 7, .length = 1}, [7] = {.index = 8, .length = 1}, - [10] = {.index = 9, .length = 1}, - [11] = {.index = 10, .length = 1}, - [12] = {.index = 11, .length = 1}, - [14] = {.index = 12, .length = 2}, - [15] = {.index = 14, .length = 1}, - [16] = {.index = 15, .length = 2}, - [17] = {.index = 17, .length = 2}, - [18] = {.index = 19, .length = 2}, - [19] = {.index = 11, .length = 1}, - [20] = {.index = 21, .length = 2}, - [21] = {.index = 23, .length = 1}, - [22] = {.index = 24, .length = 2}, - [23] = {.index = 5, .length = 2}, - [24] = {.index = 26, .length = 1}, - [25] = {.index = 27, .length = 1}, - [26] = {.index = 28, .length = 1}, - [27] = {.index = 29, .length = 3}, - [28] = {.index = 32, .length = 1}, - [29] = {.index = 33, .length = 2}, - [30] = {.index = 35, .length = 2}, - [31] = {.index = 37, .length = 2}, - [32] = {.index = 39, .length = 2}, - [33] = {.index = 28, .length = 1}, - [34] = {.index = 35, .length = 2}, - [35] = {.index = 41, .length = 2}, + [9] = {.index = 9, .length = 1}, + [10] = {.index = 10, .length = 1}, + [11] = {.index = 11, .length = 1}, + [13] = {.index = 12, .length = 2}, + [14] = {.index = 14, .length = 1}, + [15] = {.index = 15, .length = 2}, + [16] = {.index = 17, .length = 2}, + [17] = {.index = 19, .length = 2}, + [18] = {.index = 11, .length = 1}, + [19] = {.index = 21, .length = 2}, + [20] = {.index = 23, .length = 1}, + [21] = {.index = 24, .length = 2}, + [22] = {.index = 5, .length = 2}, + [23] = {.index = 26, .length = 1}, + [24] = {.index = 27, .length = 1}, + [25] = {.index = 28, .length = 1}, + [26] = {.index = 29, .length = 3}, + [27] = {.index = 32, .length = 1}, + [28] = {.index = 33, .length = 2}, + [29] = {.index = 35, .length = 2}, + [30] = {.index = 37, .length = 2}, + [31] = {.index = 39, .length = 2}, + [32] = {.index = 28, .length = 1}, + [33] = {.index = 35, .length = 2}, + [34] = {.index = 41, .length = 2}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -1703,47 +1724,44 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [0] = sym__heading_content, }, [8] = { - [0] = alias_sym_table_header, - }, - [9] = { [0] = alias_sym_paragraph, }, - [13] = { + [12] = { [1] = anon_alias_sym_class, }, - [14] = { + [13] = { [1] = alias_sym_section_content, }, - [17] = { + [16] = { [0] = alias_sym_language_marker, }, - [19] = { + [18] = { [1] = sym__block_quote_content, }, - [21] = { + [20] = { [1] = alias_sym_args, }, - [22] = { + [21] = { [2] = sym__block_quote_content, }, - [23] = { + [22] = { [1] = sym__block_quote_content, }, - [26] = { + [25] = { [0] = alias_sym_raw_block_marker_begin, }, - [27] = { + [26] = { [3] = alias_sym_definition, }, - [30] = { + [29] = { [0] = alias_sym_raw_block_marker_begin, [4] = sym__block_quote_content, }, - [33] = { + [32] = { [0] = alias_sym_raw_block_marker_begin, [5] = alias_sym_raw_block_marker_end, }, - [34] = { + [33] = { [0] = alias_sym_raw_block_marker_begin, [4] = sym__block_quote_content, [6] = alias_sym_raw_block_marker_end, @@ -1751,9 +1769,6 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE }; static const uint16_t ts_non_terminal_alias_map[] = { - sym_table_row, 2, - sym_table_row, - alias_sym_table_header, sym_class_name, 2, sym_class_name, anon_alias_sym_class, @@ -1795,21 +1810,21 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4] = 4, [5] = 5, [6] = 6, - [7] = 2, - [8] = 8, - [9] = 8, - [10] = 3, + [7] = 7, + [8] = 7, + [9] = 4, + [10] = 5, [11] = 11, - [12] = 11, - [13] = 13, - [14] = 11, - [15] = 15, - [16] = 13, - [17] = 11, - [18] = 13, - [19] = 13, + [12] = 12, + [13] = 11, + [14] = 14, + [15] = 12, + [16] = 11, + [17] = 12, + [18] = 11, + [19] = 12, [20] = 11, - [21] = 13, + [21] = 12, [22] = 22, [23] = 23, [24] = 24, @@ -1822,22 +1837,22 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [31] = 31, [32] = 32, [33] = 33, - [34] = 34, + [34] = 23, [35] = 35, [36] = 36, [37] = 37, [38] = 38, [39] = 39, - [40] = 34, + [40] = 40, [41] = 41, - [42] = 42, - [43] = 34, - [44] = 44, + [42] = 23, + [43] = 43, + [44] = 23, [45] = 45, - [46] = 34, - [47] = 47, + [46] = 46, + [47] = 23, [48] = 48, - [49] = 34, + [49] = 49, [50] = 50, [51] = 51, [52] = 52, @@ -1846,11 +1861,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [55] = 55, [56] = 56, [57] = 57, - [58] = 55, + [58] = 53, [59] = 57, - [60] = 55, - [61] = 55, - [62] = 57, + [60] = 53, + [61] = 57, + [62] = 53, [63] = 57, [64] = 57, [65] = 65, @@ -1869,38 +1884,38 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [78] = 78, [79] = 79, [80] = 80, - [81] = 80, + [81] = 81, [82] = 82, [83] = 83, [84] = 84, [85] = 85, [86] = 86, [87] = 87, - [88] = 88, + [88] = 79, [89] = 89, - [90] = 90, + [90] = 81, [91] = 91, - [92] = 82, - [93] = 74, - [94] = 85, - [95] = 95, + [92] = 92, + [93] = 82, + [94] = 83, + [95] = 80, [96] = 96, - [97] = 86, - [98] = 90, - [99] = 87, - [100] = 75, - [101] = 83, - [102] = 84, - [103] = 76, - [104] = 77, - [105] = 78, - [106] = 79, + [97] = 84, + [98] = 91, + [99] = 74, + [100] = 76, + [101] = 77, + [102] = 85, + [103] = 86, + [104] = 78, + [105] = 89, + [106] = 92, [107] = 96, - [108] = 88, - [109] = 89, - [110] = 91, + [108] = 87, + [109] = 109, + [110] = 110, [111] = 111, - [112] = 112, + [112] = 109, [113] = 113, [114] = 114, [115] = 115, @@ -1925,23 +1940,23 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [134] = 134, [135] = 135, [136] = 136, - [137] = 137, - [138] = 111, - [139] = 115, + [137] = 114, + [138] = 138, + [139] = 113, [140] = 140, [141] = 141, - [142] = 142, - [143] = 143, + [142] = 116, + [143] = 115, [144] = 144, - [145] = 145, - [146] = 146, - [147] = 118, - [148] = 124, - [149] = 132, - [150] = 136, - [151] = 140, - [152] = 145, - [153] = 146, + [145] = 117, + [146] = 121, + [147] = 133, + [148] = 138, + [149] = 144, + [150] = 150, + [151] = 151, + [152] = 152, + [153] = 153, [154] = 154, [155] = 155, [156] = 156, @@ -1954,321 +1969,321 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [163] = 163, [164] = 164, [165] = 165, - [166] = 166, + [166] = 150, [167] = 167, - [168] = 154, + [168] = 151, [169] = 169, - [170] = 155, - [171] = 171, - [172] = 172, - [173] = 156, - [174] = 112, - [175] = 157, - [176] = 158, - [177] = 159, - [178] = 114, - [179] = 160, - [180] = 161, - [181] = 116, - [182] = 162, - [183] = 163, - [184] = 164, - [185] = 165, - [186] = 166, - [187] = 117, - [188] = 167, - [189] = 120, - [190] = 121, - [191] = 122, - [192] = 123, - [193] = 169, - [194] = 126, - [195] = 127, - [196] = 128, - [197] = 129, - [198] = 130, - [199] = 131, - [200] = 133, - [201] = 134, - [202] = 135, - [203] = 137, - [204] = 171, - [205] = 172, - [206] = 142, - [207] = 143, + [170] = 170, + [171] = 152, + [172] = 110, + [173] = 153, + [174] = 154, + [175] = 155, + [176] = 156, + [177] = 157, + [178] = 158, + [179] = 159, + [180] = 180, + [181] = 160, + [182] = 161, + [183] = 162, + [184] = 163, + [185] = 164, + [186] = 165, + [187] = 118, + [188] = 120, + [189] = 167, + [190] = 122, + [191] = 123, + [192] = 124, + [193] = 126, + [194] = 127, + [195] = 128, + [196] = 129, + [197] = 130, + [198] = 131, + [199] = 132, + [200] = 134, + [201] = 135, + [202] = 136, + [203] = 169, + [204] = 170, + [205] = 141, + [206] = 206, + [207] = 180, [208] = 208, - [209] = 144, + [209] = 209, [210] = 210, [211] = 211, - [212] = 212, + [212] = 211, [213] = 213, - [214] = 213, + [214] = 211, [215] = 213, [216] = 213, [217] = 213, - [218] = 218, - [219] = 219, - [220] = 219, - [221] = 218, - [222] = 219, - [223] = 218, - [224] = 218, - [225] = 219, - [226] = 219, - [227] = 218, - [228] = 228, - [229] = 229, - [230] = 229, - [231] = 229, - [232] = 229, - [233] = 229, - [234] = 234, - [235] = 234, - [236] = 234, + [218] = 211, + [219] = 213, + [220] = 211, + [221] = 221, + [222] = 221, + [223] = 221, + [224] = 221, + [225] = 221, + [226] = 226, + [227] = 226, + [228] = 226, + [229] = 226, + [230] = 226, + [231] = 208, + [232] = 232, + [233] = 210, + [234] = 208, + [235] = 232, + [236] = 210, [237] = 237, - [238] = 211, + [238] = 66, [239] = 239, - [240] = 240, - [241] = 234, - [242] = 234, + [240] = 239, + [241] = 239, + [242] = 239, [243] = 243, [244] = 239, - [245] = 243, - [246] = 239, - [247] = 243, - [248] = 239, - [249] = 243, - [250] = 239, - [251] = 243, - [252] = 252, - [253] = 240, - [254] = 211, - [255] = 212, - [256] = 252, - [257] = 257, - [258] = 252, - [259] = 252, - [260] = 252, + [245] = 68, + [246] = 246, + [247] = 247, + [248] = 66, + [249] = 66, + [250] = 246, + [251] = 246, + [252] = 246, + [253] = 246, + [254] = 254, + [255] = 255, + [256] = 256, + [257] = 255, + [258] = 68, + [259] = 259, + [260] = 260, [261] = 261, - [262] = 262, - [263] = 263, - [264] = 264, - [265] = 212, - [266] = 266, - [267] = 267, - [268] = 268, - [269] = 266, - [270] = 261, - [271] = 267, - [272] = 266, - [273] = 267, - [274] = 267, + [262] = 256, + [263] = 259, + [264] = 260, + [265] = 261, + [266] = 256, + [267] = 259, + [268] = 260, + [269] = 261, + [270] = 260, + [271] = 256, + [272] = 259, + [273] = 261, + [274] = 260, [275] = 261, - [276] = 267, - [277] = 266, - [278] = 261, - [279] = 268, - [280] = 263, - [281] = 264, - [282] = 262, - [283] = 268, - [284] = 263, - [285] = 264, - [286] = 262, - [287] = 268, - [288] = 263, - [289] = 264, - [290] = 262, - [291] = 261, - [292] = 263, - [293] = 264, - [294] = 262, - [295] = 266, - [296] = 296, - [297] = 297, + [276] = 256, + [277] = 259, + [278] = 254, + [279] = 255, + [280] = 254, + [281] = 255, + [282] = 254, + [283] = 255, + [284] = 68, + [285] = 285, + [286] = 286, + [287] = 287, + [288] = 288, + [289] = 288, + [290] = 288, + [291] = 287, + [292] = 292, + [293] = 288, + [294] = 287, + [295] = 287, + [296] = 287, + [297] = 288, [298] = 298, - [299] = 299, - [300] = 297, - [301] = 66, - [302] = 298, - [303] = 303, - [304] = 297, - [305] = 298, - [306] = 306, - [307] = 297, - [308] = 308, - [309] = 308, - [310] = 66, - [311] = 66, - [312] = 68, + [299] = 292, + [300] = 300, + [301] = 301, + [302] = 302, + [303] = 285, + [304] = 285, + [305] = 302, + [306] = 302, + [307] = 292, + [308] = 292, + [309] = 302, + [310] = 310, + [311] = 302, + [312] = 285, [313] = 313, - [314] = 314, - [315] = 308, - [316] = 308, - [317] = 240, - [318] = 318, - [319] = 319, - [320] = 308, - [321] = 211, - [322] = 298, - [323] = 68, - [324] = 212, - [325] = 68, - [326] = 314, - [327] = 314, - [328] = 314, - [329] = 70, + [314] = 208, + [315] = 315, + [316] = 232, + [317] = 317, + [318] = 317, + [319] = 210, + [320] = 317, + [321] = 317, + [322] = 322, + [323] = 72, + [324] = 82, + [325] = 322, + [326] = 83, + [327] = 327, + [328] = 322, + [329] = 327, [330] = 330, - [331] = 70, + [331] = 331, [332] = 332, - [333] = 333, - [334] = 330, - [335] = 335, - [336] = 332, - [337] = 333, - [338] = 338, - [339] = 330, - [340] = 338, - [341] = 330, - [342] = 333, - [343] = 333, - [344] = 338, + [333] = 330, + [334] = 331, + [335] = 322, + [336] = 330, + [337] = 331, + [338] = 330, + [339] = 322, + [340] = 331, + [341] = 327, + [342] = 327, + [343] = 91, + [344] = 327, [345] = 330, - [346] = 338, - [347] = 70, - [348] = 332, - [349] = 333, - [350] = 332, - [351] = 338, - [352] = 332, + [346] = 331, + [347] = 74, + [348] = 96, + [349] = 81, + [350] = 350, + [351] = 351, + [352] = 91, [353] = 353, - [354] = 353, - [355] = 355, + [354] = 351, + [355] = 350, [356] = 353, - [357] = 355, - [358] = 353, - [359] = 359, - [360] = 359, - [361] = 361, - [362] = 359, - [363] = 355, - [364] = 359, - [365] = 365, - [366] = 366, - [367] = 355, - [368] = 368, - [369] = 369, - [370] = 355, - [371] = 353, - [372] = 359, - [373] = 373, - [374] = 374, - [375] = 375, - [376] = 376, - [377] = 377, - [378] = 378, - [379] = 379, + [357] = 72, + [358] = 358, + [359] = 74, + [360] = 360, + [361] = 81, + [362] = 82, + [363] = 83, + [364] = 351, + [365] = 350, + [366] = 351, + [367] = 81, + [368] = 353, + [369] = 82, + [370] = 83, + [371] = 371, + [372] = 372, + [373] = 351, + [374] = 350, + [375] = 353, + [376] = 96, + [377] = 72, + [378] = 91, + [379] = 74, [380] = 380, - [381] = 381, - [382] = 375, - [383] = 383, + [381] = 350, + [382] = 96, + [383] = 353, [384] = 384, [385] = 385, - [386] = 375, - [387] = 381, - [388] = 375, - [389] = 381, - [390] = 375, - [391] = 381, - [392] = 375, - [393] = 381, - [394] = 375, - [395] = 381, - [396] = 375, - [397] = 381, - [398] = 375, - [399] = 381, - [400] = 375, - [401] = 381, - [402] = 375, - [403] = 381, - [404] = 375, - [405] = 381, - [406] = 375, - [407] = 381, - [408] = 375, - [409] = 381, - [410] = 375, - [411] = 381, - [412] = 375, - [413] = 381, + [386] = 386, + [387] = 387, + [388] = 388, + [389] = 389, + [390] = 390, + [391] = 390, + [392] = 384, + [393] = 384, + [394] = 394, + [395] = 395, + [396] = 396, + [397] = 386, + [398] = 384, + [399] = 390, + [400] = 384, + [401] = 390, + [402] = 384, + [403] = 390, + [404] = 384, + [405] = 390, + [406] = 396, + [407] = 390, + [408] = 384, + [409] = 390, + [410] = 384, + [411] = 390, + [412] = 384, + [413] = 390, [414] = 384, - [415] = 415, - [416] = 381, - [417] = 417, - [418] = 96, - [419] = 384, - [420] = 385, - [421] = 375, - [422] = 76, - [423] = 77, - [424] = 375, - [425] = 83, - [426] = 84, - [427] = 88, - [428] = 381, - [429] = 89, - [430] = 381, + [415] = 390, + [416] = 384, + [417] = 390, + [418] = 384, + [419] = 390, + [420] = 384, + [421] = 390, + [422] = 384, + [423] = 390, + [424] = 386, + [425] = 390, + [426] = 426, + [427] = 384, + [428] = 428, + [429] = 396, + [430] = 386, [431] = 431, - [432] = 375, - [433] = 384, - [434] = 385, - [435] = 385, - [436] = 436, - [437] = 381, + [432] = 432, + [433] = 386, + [434] = 390, + [435] = 435, + [436] = 435, + [437] = 435, [438] = 438, - [439] = 384, - [440] = 440, - [441] = 385, - [442] = 442, - [443] = 89, - [444] = 89, - [445] = 76, - [446] = 84, - [447] = 83, + [439] = 439, + [440] = 435, + [441] = 441, + [442] = 384, + [443] = 443, + [444] = 435, + [445] = 390, + [446] = 384, + [447] = 390, [448] = 448, - [449] = 449, - [450] = 77, - [451] = 451, - [452] = 88, - [453] = 77, - [454] = 83, - [455] = 96, - [456] = 72, - [457] = 76, - [458] = 84, - [459] = 88, - [460] = 96, + [449] = 396, + [450] = 396, + [451] = 384, + [452] = 452, + [453] = 70, + [454] = 232, + [455] = 208, + [456] = 456, + [457] = 457, + [458] = 92, + [459] = 459, + [460] = 70, [461] = 461, [462] = 462, - [463] = 463, - [464] = 462, - [465] = 72, - [466] = 466, - [467] = 95, - [468] = 468, - [469] = 469, - [470] = 90, - [471] = 75, - [472] = 78, - [473] = 79, - [474] = 80, - [475] = 74, - [476] = 82, - [477] = 85, - [478] = 86, - [479] = 87, - [480] = 91, + [463] = 75, + [464] = 464, + [465] = 465, + [466] = 89, + [467] = 76, + [468] = 77, + [469] = 78, + [470] = 79, + [471] = 80, + [472] = 84, + [473] = 85, + [474] = 86, + [475] = 87, + [476] = 210, + [477] = 477, + [478] = 478, + [479] = 479, + [480] = 480, [481] = 481, [482] = 482, [483] = 483, @@ -2280,707 +2295,672 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [489] = 489, [490] = 490, [491] = 491, - [492] = 461, + [492] = 492, [493] = 493, [494] = 494, [495] = 495, - [496] = 496, - [497] = 497, - [498] = 498, - [499] = 483, - [500] = 484, - [501] = 485, - [502] = 486, - [503] = 487, - [504] = 488, - [505] = 489, - [506] = 490, - [507] = 491, - [508] = 461, - [509] = 493, - [510] = 494, - [511] = 495, - [512] = 512, - [513] = 496, - [514] = 497, - [515] = 483, - [516] = 484, - [517] = 485, - [518] = 486, - [519] = 487, - [520] = 488, - [521] = 489, - [522] = 490, - [523] = 491, - [524] = 461, - [525] = 493, - [526] = 494, - [527] = 495, - [528] = 512, - [529] = 496, - [530] = 497, - [531] = 483, - [532] = 484, - [533] = 483, - [534] = 484, - [535] = 485, - [536] = 486, - [537] = 487, - [538] = 488, - [539] = 489, - [540] = 490, - [541] = 491, - [542] = 461, - [543] = 493, - [544] = 494, - [545] = 495, - [546] = 512, - [547] = 496, - [548] = 497, - [549] = 485, - [550] = 550, - [551] = 486, + [496] = 479, + [497] = 480, + [498] = 481, + [499] = 482, + [500] = 483, + [501] = 484, + [502] = 485, + [503] = 486, + [504] = 487, + [505] = 488, + [506] = 489, + [507] = 490, + [508] = 491, + [509] = 492, + [510] = 493, + [511] = 494, + [512] = 479, + [513] = 480, + [514] = 481, + [515] = 482, + [516] = 483, + [517] = 484, + [518] = 485, + [519] = 486, + [520] = 487, + [521] = 488, + [522] = 461, + [523] = 490, + [524] = 491, + [525] = 492, + [526] = 493, + [527] = 494, + [528] = 528, + [529] = 479, + [530] = 530, + [531] = 480, + [532] = 532, + [533] = 481, + [534] = 534, + [535] = 482, + [536] = 479, + [537] = 480, + [538] = 481, + [539] = 482, + [540] = 483, + [541] = 484, + [542] = 485, + [543] = 486, + [544] = 487, + [545] = 488, + [546] = 489, + [547] = 490, + [548] = 491, + [549] = 492, + [550] = 493, + [551] = 494, [552] = 552, - [553] = 487, + [553] = 483, [554] = 554, - [555] = 488, + [555] = 484, [556] = 556, - [557] = 489, + [557] = 485, [558] = 558, - [559] = 490, + [559] = 486, [560] = 560, - [561] = 491, + [561] = 487, [562] = 562, - [563] = 563, - [564] = 493, - [565] = 565, - [566] = 494, - [567] = 567, - [568] = 495, - [569] = 569, - [570] = 512, + [563] = 488, + [564] = 564, + [565] = 489, + [566] = 566, + [567] = 490, + [568] = 568, + [569] = 491, + [570] = 461, [571] = 571, - [572] = 496, + [572] = 492, [573] = 573, - [574] = 462, - [575] = 462, - [576] = 497, - [577] = 462, - [578] = 578, - [579] = 579, - [580] = 580, - [581] = 512, - [582] = 112, - [583] = 240, + [574] = 461, + [575] = 493, + [576] = 461, + [577] = 577, + [578] = 494, + [579] = 489, + [580] = 70, + [581] = 581, + [582] = 208, + [583] = 140, [584] = 584, [585] = 585, - [586] = 211, + [586] = 111, [587] = 587, - [588] = 211, + [588] = 588, [589] = 589, [590] = 590, [591] = 591, [592] = 592, - [593] = 113, + [593] = 593, [594] = 594, - [595] = 595, - [596] = 596, + [595] = 89, + [596] = 92, [597] = 597, [598] = 598, - [599] = 95, - [600] = 600, - [601] = 601, - [602] = 143, - [603] = 144, - [604] = 240, - [605] = 118, - [606] = 124, - [607] = 132, - [608] = 136, - [609] = 140, - [610] = 145, - [611] = 146, - [612] = 595, - [613] = 613, - [614] = 614, - [615] = 615, - [616] = 616, - [617] = 154, - [618] = 155, - [619] = 156, - [620] = 157, - [621] = 158, - [622] = 159, - [623] = 160, - [624] = 161, - [625] = 162, - [626] = 163, - [627] = 164, - [628] = 165, - [629] = 166, - [630] = 167, - [631] = 169, - [632] = 211, - [633] = 633, - [634] = 634, - [635] = 635, - [636] = 636, + [599] = 116, + [600] = 115, + [601] = 232, + [602] = 117, + [603] = 121, + [604] = 133, + [605] = 138, + [606] = 144, + [607] = 150, + [608] = 151, + [609] = 609, + [610] = 610, + [611] = 611, + [612] = 612, + [613] = 152, + [614] = 153, + [615] = 154, + [616] = 155, + [617] = 156, + [618] = 157, + [619] = 158, + [620] = 159, + [621] = 160, + [622] = 161, + [623] = 162, + [624] = 163, + [625] = 164, + [626] = 165, + [627] = 167, + [628] = 208, + [629] = 629, + [630] = 630, + [631] = 631, + [632] = 169, + [633] = 170, + [634] = 598, + [635] = 110, + [636] = 109, [637] = 637, - [638] = 171, - [639] = 172, - [640] = 141, - [641] = 641, - [642] = 642, - [643] = 114, - [644] = 75, - [645] = 601, - [646] = 116, - [647] = 78, - [648] = 79, - [649] = 80, - [650] = 117, - [651] = 74, - [652] = 120, - [653] = 82, - [654] = 595, - [655] = 121, - [656] = 122, - [657] = 123, - [658] = 658, - [659] = 126, - [660] = 127, - [661] = 128, - [662] = 129, - [663] = 130, - [664] = 131, - [665] = 85, - [666] = 133, - [667] = 134, - [668] = 135, - [669] = 137, - [670] = 240, - [671] = 671, - [672] = 672, + [638] = 638, + [639] = 180, + [640] = 232, + [641] = 77, + [642] = 78, + [643] = 118, + [644] = 79, + [645] = 120, + [646] = 80, + [647] = 591, + [648] = 122, + [649] = 123, + [650] = 124, + [651] = 126, + [652] = 127, + [653] = 128, + [654] = 129, + [655] = 130, + [656] = 131, + [657] = 84, + [658] = 132, + [659] = 134, + [660] = 135, + [661] = 661, + [662] = 662, + [663] = 136, + [664] = 232, + [665] = 208, + [666] = 85, + [667] = 86, + [668] = 232, + [669] = 208, + [670] = 232, + [671] = 208, + [672] = 232, [673] = 673, - [674] = 211, - [675] = 240, - [676] = 211, - [677] = 86, - [678] = 87, - [679] = 240, - [680] = 211, - [681] = 240, - [682] = 211, - [683] = 240, - [684] = 211, - [685] = 601, - [686] = 595, - [687] = 72, - [688] = 91, + [674] = 208, + [675] = 598, + [676] = 591, + [677] = 87, + [678] = 232, + [679] = 208, + [680] = 680, + [681] = 681, + [682] = 682, + [683] = 683, + [684] = 598, + [685] = 685, + [686] = 686, + [687] = 687, + [688] = 75, [689] = 689, - [690] = 240, + [690] = 591, [691] = 691, - [692] = 692, - [693] = 693, - [694] = 694, - [695] = 601, - [696] = 90, - [697] = 697, - [698] = 601, - [699] = 595, - [700] = 601, - [701] = 595, - [702] = 702, + [692] = 76, + [693] = 164, + [694] = 117, + [695] = 210, + [696] = 121, + [697] = 598, + [698] = 591, + [699] = 133, + [700] = 700, + [701] = 598, + [702] = 591, [703] = 703, - [704] = 704, - [705] = 705, - [706] = 706, - [707] = 707, - [708] = 708, - [709] = 709, - [710] = 595, - [711] = 87, - [712] = 171, - [713] = 713, - [714] = 714, - [715] = 172, + [704] = 598, + [705] = 591, + [706] = 210, + [707] = 138, + [708] = 598, + [709] = 591, + [710] = 210, + [711] = 144, + [712] = 712, + [713] = 598, + [714] = 591, + [715] = 715, [716] = 716, [717] = 717, - [718] = 718, - [719] = 86, - [720] = 720, + [718] = 598, + [719] = 591, + [720] = 210, [721] = 721, - [722] = 722, - [723] = 212, - [724] = 724, - [725] = 725, - [726] = 726, - [727] = 727, - [728] = 728, - [729] = 729, - [730] = 730, - [731] = 731, - [732] = 112, - [733] = 589, - [734] = 113, - [735] = 735, + [722] = 598, + [723] = 591, + [724] = 598, + [725] = 591, + [726] = 598, + [727] = 591, + [728] = 598, + [729] = 591, + [730] = 598, + [731] = 591, + [732] = 598, + [733] = 591, + [734] = 598, + [735] = 591, [736] = 736, [737] = 737, - [738] = 91, + [738] = 738, [739] = 739, [740] = 740, - [741] = 705, - [742] = 742, - [743] = 743, - [744] = 318, - [745] = 114, - [746] = 118, - [747] = 124, - [748] = 116, - [749] = 132, - [750] = 136, - [751] = 140, - [752] = 145, - [753] = 117, - [754] = 146, - [755] = 120, - [756] = 154, - [757] = 155, - [758] = 121, - [759] = 122, - [760] = 724, - [761] = 123, - [762] = 762, - [763] = 126, - [764] = 730, + [741] = 150, + [742] = 151, + [743] = 152, + [744] = 744, + [745] = 745, + [746] = 746, + [747] = 153, + [748] = 748, + [749] = 154, + [750] = 750, + [751] = 751, + [752] = 155, + [753] = 753, + [754] = 754, + [755] = 755, + [756] = 756, + [757] = 757, + [758] = 758, + [759] = 759, + [760] = 689, + [761] = 716, + [762] = 156, + [763] = 157, + [764] = 158, [765] = 765, - [766] = 127, - [767] = 735, + [766] = 766, + [767] = 767, [768] = 768, - [769] = 705, - [770] = 697, - [771] = 739, - [772] = 128, - [773] = 705, - [774] = 697, + [769] = 769, + [770] = 770, + [771] = 598, + [772] = 738, + [773] = 773, + [774] = 159, [775] = 775, - [776] = 129, + [776] = 776, [777] = 777, - [778] = 130, - [779] = 131, - [780] = 156, - [781] = 133, - [782] = 134, - [783] = 135, - [784] = 137, - [785] = 601, - [786] = 735, - [787] = 787, - [788] = 212, - [789] = 157, - [790] = 158, - [791] = 159, - [792] = 160, - [793] = 724, - [794] = 730, - [795] = 161, - [796] = 796, - [797] = 595, - [798] = 735, + [778] = 160, + [779] = 779, + [780] = 780, + [781] = 161, + [782] = 782, + [783] = 783, + [784] = 784, + [785] = 591, + [786] = 162, + [787] = 163, + [788] = 788, + [789] = 789, + [790] = 753, + [791] = 791, + [792] = 792, + [793] = 793, + [794] = 794, + [795] = 716, + [796] = 767, + [797] = 738, + [798] = 769, [799] = 799, - [800] = 697, + [800] = 738, [801] = 801, - [802] = 739, - [803] = 705, - [804] = 730, - [805] = 805, + [802] = 802, + [803] = 803, + [804] = 804, + [805] = 84, [806] = 806, [807] = 807, - [808] = 808, - [809] = 809, + [808] = 210, + [809] = 167, [810] = 810, - [811] = 811, - [812] = 162, + [811] = 753, + [812] = 716, [813] = 813, [814] = 814, - [815] = 163, - [816] = 164, - [817] = 85, - [818] = 818, - [819] = 819, - [820] = 820, - [821] = 821, - [822] = 822, - [823] = 165, - [824] = 166, - [825] = 167, - [826] = 730, - [827] = 212, - [828] = 739, - [829] = 212, - [830] = 169, - [831] = 601, - [832] = 595, - [833] = 735, - [834] = 212, - [835] = 835, + [815] = 815, + [816] = 767, + [817] = 769, + [818] = 313, + [819] = 769, + [820] = 169, + [821] = 738, + [822] = 170, + [823] = 110, + [824] = 111, + [825] = 87, + [826] = 109, + [827] = 180, + [828] = 210, + [829] = 829, + [830] = 116, + [831] = 831, + [832] = 118, + [833] = 716, + [834] = 115, + [835] = 598, [836] = 836, - [837] = 697, - [838] = 601, - [839] = 739, - [840] = 595, - [841] = 841, - [842] = 143, - [843] = 601, - [844] = 595, - [845] = 212, - [846] = 601, - [847] = 595, - [848] = 212, + [837] = 837, + [838] = 767, + [839] = 120, + [840] = 753, + [841] = 769, + [842] = 86, + [843] = 122, + [844] = 123, + [845] = 124, + [846] = 126, + [847] = 591, + [848] = 767, [849] = 849, - [850] = 601, - [851] = 601, - [852] = 595, - [853] = 144, - [854] = 854, - [855] = 601, - [856] = 595, - [857] = 212, - [858] = 858, - [859] = 718, - [860] = 720, - [861] = 805, - [862] = 808, - [863] = 835, - [864] = 836, - [865] = 727, - [866] = 728, - [867] = 867, - [868] = 718, - [869] = 720, - [870] = 805, - [871] = 808, - [872] = 835, - [873] = 836, - [874] = 727, - [875] = 728, - [876] = 601, - [877] = 595, - [878] = 601, - [879] = 718, - [880] = 720, - [881] = 595, - [882] = 601, - [883] = 95, - [884] = 805, - [885] = 808, - [886] = 835, - [887] = 836, - [888] = 595, - [889] = 727, - [890] = 728, - [891] = 891, - [892] = 601, - [893] = 595, - [894] = 718, - [895] = 720, - [896] = 896, - [897] = 805, - [898] = 808, - [899] = 835, - [900] = 836, - [901] = 90, - [902] = 727, - [903] = 728, - [904] = 75, - [905] = 601, + [850] = 127, + [851] = 75, + [852] = 128, + [853] = 806, + [854] = 810, + [855] = 829, + [856] = 129, + [857] = 130, + [858] = 712, + [859] = 717, + [860] = 721, + [861] = 131, + [862] = 806, + [863] = 810, + [864] = 829, + [865] = 132, + [866] = 89, + [867] = 712, + [868] = 717, + [869] = 721, + [870] = 92, + [871] = 134, + [872] = 806, + [873] = 810, + [874] = 829, + [875] = 135, + [876] = 136, + [877] = 712, + [878] = 717, + [879] = 721, + [880] = 210, + [881] = 806, + [882] = 810, + [883] = 829, + [884] = 76, + [885] = 712, + [886] = 717, + [887] = 721, + [888] = 77, + [889] = 78, + [890] = 79, + [891] = 80, + [892] = 85, + [893] = 765, + [894] = 765, + [895] = 765, + [896] = 765, + [897] = 897, + [898] = 165, + [899] = 899, + [900] = 900, + [901] = 901, + [902] = 902, + [903] = 903, + [904] = 904, + [905] = 905, [906] = 906, - [907] = 724, - [908] = 78, - [909] = 79, - [910] = 740, - [911] = 740, - [912] = 595, - [913] = 740, - [914] = 80, - [915] = 740, - [916] = 74, - [917] = 82, + [907] = 907, + [908] = 908, + [909] = 909, + [910] = 910, + [911] = 911, + [912] = 912, + [913] = 913, + [914] = 914, + [915] = 124, + [916] = 912, + [917] = 917, [918] = 918, [919] = 919, [920] = 920, - [921] = 921, + [921] = 905, [922] = 922, [923] = 923, [924] = 924, [925] = 925, [926] = 926, - [927] = 927, - [928] = 921, - [929] = 929, + [927] = 906, + [928] = 911, + [929] = 913, [930] = 930, - [931] = 931, - [932] = 932, + [931] = 126, + [932] = 127, [933] = 933, - [934] = 934, - [935] = 922, - [936] = 936, - [937] = 932, - [938] = 923, - [939] = 939, - [940] = 925, - [941] = 926, + [934] = 918, + [935] = 935, + [936] = 128, + [937] = 935, + [938] = 909, + [939] = 129, + [940] = 130, + [941] = 131, [942] = 942, - [943] = 943, - [944] = 929, - [945] = 930, - [946] = 931, - [947] = 932, - [948] = 933, - [949] = 934, - [950] = 128, - [951] = 129, - [952] = 922, + [943] = 385, + [944] = 944, + [945] = 132, + [946] = 134, + [947] = 947, + [948] = 135, + [949] = 136, + [950] = 950, + [951] = 951, + [952] = 120, [953] = 953, - [954] = 130, - [955] = 923, - [956] = 956, - [957] = 919, - [958] = 131, + [954] = 954, + [955] = 955, + [956] = 950, + [957] = 957, + [958] = 958, [959] = 959, - [960] = 927, - [961] = 121, - [962] = 933, - [963] = 963, - [964] = 964, - [965] = 934, - [966] = 966, - [967] = 383, - [968] = 968, - [969] = 133, - [970] = 970, - [971] = 134, + [960] = 960, + [961] = 958, + [962] = 919, + [963] = 955, + [964] = 905, + [965] = 965, + [966] = 950, + [967] = 967, + [968] = 909, + [969] = 969, + [970] = 912, + [971] = 116, [972] = 972, - [973] = 135, - [974] = 974, - [975] = 137, - [976] = 924, - [977] = 977, - [978] = 921, - [979] = 922, - [980] = 923, - [981] = 924, - [982] = 925, - [983] = 926, - [984] = 966, - [985] = 122, - [986] = 929, - [987] = 930, - [988] = 931, - [989] = 932, - [990] = 933, - [991] = 934, - [992] = 123, - [993] = 993, + [973] = 918, + [974] = 115, + [975] = 912, + [976] = 976, + [977] = 918, + [978] = 919, + [979] = 920, + [980] = 980, + [981] = 922, + [982] = 923, + [983] = 924, + [984] = 925, + [985] = 926, + [986] = 906, + [987] = 911, + [988] = 913, + [989] = 919, + [990] = 990, + [991] = 905, + [992] = 992, + [993] = 909, [994] = 994, - [995] = 995, - [996] = 996, - [997] = 959, - [998] = 927, - [999] = 999, - [1000] = 970, - [1001] = 1001, - [1002] = 1002, - [1003] = 1003, - [1004] = 143, - [1005] = 1005, - [1006] = 144, - [1007] = 966, - [1008] = 1008, - [1009] = 1009, - [1010] = 1010, - [1011] = 970, - [1012] = 1012, - [1013] = 959, - [1014] = 1014, - [1015] = 118, - [1016] = 1016, - [1017] = 124, - [1018] = 132, - [1019] = 136, - [1020] = 140, - [1021] = 145, - [1022] = 146, - [1023] = 154, - [1024] = 155, - [1025] = 156, - [1026] = 1010, - [1027] = 1027, - [1028] = 1028, - [1029] = 924, - [1030] = 1030, - [1031] = 157, + [995] = 117, + [996] = 909, + [997] = 121, + [998] = 133, + [999] = 138, + [1000] = 144, + [1001] = 150, + [1002] = 151, + [1003] = 152, + [1004] = 153, + [1005] = 154, + [1006] = 155, + [1007] = 156, + [1008] = 157, + [1009] = 158, + [1010] = 159, + [1011] = 160, + [1012] = 161, + [1013] = 162, + [1014] = 163, + [1015] = 164, + [1016] = 165, + [1017] = 1017, + [1018] = 167, + [1019] = 922, + [1020] = 923, + [1021] = 899, + [1022] = 1022, + [1023] = 994, + [1024] = 920, + [1025] = 951, + [1026] = 1026, + [1027] = 912, + [1028] = 920, + [1029] = 918, + [1030] = 919, + [1031] = 1031, [1032] = 1032, - [1033] = 158, - [1034] = 159, - [1035] = 963, - [1036] = 964, - [1037] = 921, - [1038] = 922, + [1033] = 920, + [1034] = 924, + [1035] = 922, + [1036] = 908, + [1037] = 1037, + [1038] = 900, [1039] = 923, - [1040] = 1040, - [1041] = 160, - [1042] = 977, - [1043] = 925, - [1044] = 926, - [1045] = 1045, - [1046] = 920, - [1047] = 161, - [1048] = 162, - [1049] = 163, - [1050] = 1010, - [1051] = 1051, - [1052] = 1028, - [1053] = 925, - [1054] = 929, - [1055] = 164, - [1056] = 1032, - [1057] = 165, - [1058] = 166, - [1059] = 963, - [1060] = 964, - [1061] = 930, - [1062] = 931, - [1063] = 932, - [1064] = 933, - [1065] = 167, - [1066] = 977, - [1067] = 934, - [1068] = 120, - [1069] = 1045, - [1070] = 920, - [1071] = 117, - [1072] = 169, - [1073] = 1073, - [1074] = 1010, - [1075] = 1075, - [1076] = 1028, - [1077] = 1077, - [1078] = 1028, - [1079] = 1079, + [1040] = 169, + [1041] = 170, + [1042] = 994, + [1043] = 1043, + [1044] = 951, + [1045] = 924, + [1046] = 925, + [1047] = 926, + [1048] = 906, + [1049] = 911, + [1050] = 1031, + [1051] = 1032, + [1052] = 913, + [1053] = 922, + [1054] = 925, + [1055] = 908, + [1056] = 1037, + [1057] = 900, + [1058] = 110, + [1059] = 111, + [1060] = 923, + [1061] = 994, + [1062] = 926, + [1063] = 951, + [1064] = 924, + [1065] = 1065, + [1066] = 925, + [1067] = 1067, + [1068] = 926, + [1069] = 1031, + [1070] = 1032, + [1071] = 1071, + [1072] = 906, + [1073] = 911, + [1074] = 908, + [1075] = 1037, + [1076] = 900, + [1077] = 955, + [1078] = 1031, + [1079] = 994, [1080] = 1032, - [1081] = 1081, - [1082] = 994, - [1083] = 963, - [1084] = 964, - [1085] = 1051, + [1081] = 951, + [1082] = 913, + [1083] = 1083, + [1084] = 905, + [1085] = 109, [1086] = 1086, - [1087] = 959, - [1088] = 927, + [1087] = 1031, + [1088] = 1032, [1089] = 1089, - [1090] = 977, + [1090] = 1090, [1091] = 1091, - [1092] = 1092, - [1093] = 1045, - [1094] = 920, - [1095] = 141, - [1096] = 1096, - [1097] = 1010, - [1098] = 126, - [1099] = 1028, - [1100] = 966, - [1101] = 1101, - [1102] = 171, - [1103] = 1032, - [1104] = 172, - [1105] = 1032, - [1106] = 963, - [1107] = 964, - [1108] = 1108, - [1109] = 972, - [1110] = 970, - [1111] = 994, - [1112] = 959, - [1113] = 977, - [1114] = 927, - [1115] = 1115, - [1116] = 1045, - [1117] = 920, - [1118] = 1028, - [1119] = 1028, - [1120] = 1028, - [1121] = 1028, - [1122] = 1028, - [1123] = 1028, - [1124] = 1028, - [1125] = 1028, - [1126] = 1028, - [1127] = 1028, - [1128] = 1028, - [1129] = 1028, - [1130] = 1028, - [1131] = 1028, - [1132] = 1014, - [1133] = 112, - [1134] = 113, - [1135] = 1135, - [1136] = 995, - [1137] = 1005, - [1138] = 1009, - [1139] = 1014, - [1140] = 929, - [1141] = 930, - [1142] = 1135, - [1143] = 995, - [1144] = 1005, - [1145] = 1009, - [1146] = 1014, - [1147] = 1147, - [1148] = 1148, - [1149] = 1135, - [1150] = 995, - [1151] = 1005, - [1152] = 1009, - [1153] = 1014, - [1154] = 114, - [1155] = 966, - [1156] = 1135, - [1157] = 995, - [1158] = 1005, - [1159] = 1009, - [1160] = 931, - [1161] = 943, - [1162] = 1162, - [1163] = 942, - [1164] = 116, - [1165] = 943, - [1166] = 1166, - [1167] = 942, - [1168] = 970, - [1169] = 943, - [1170] = 1170, - [1171] = 942, - [1172] = 127, - [1173] = 943, - [1174] = 1045, - [1175] = 942, - [1176] = 1008, - [1177] = 919, - [1178] = 1008, - [1179] = 1135, - [1180] = 1008, - [1181] = 919, - [1182] = 1008, - [1183] = 919, - [1184] = 1030, - [1185] = 1030, - [1186] = 1030, - [1187] = 1030, - [1188] = 921, - [1189] = 1189, - [1190] = 924, - [1191] = 994, - [1192] = 926, + [1092] = 908, + [1093] = 1037, + [1094] = 900, + [1095] = 951, + [1096] = 951, + [1097] = 951, + [1098] = 951, + [1099] = 951, + [1100] = 951, + [1101] = 951, + [1102] = 951, + [1103] = 951, + [1104] = 951, + [1105] = 951, + [1106] = 951, + [1107] = 951, + [1108] = 951, + [1109] = 899, + [1110] = 1110, + [1111] = 907, + [1112] = 180, + [1113] = 904, + [1114] = 990, + [1115] = 899, + [1116] = 140, + [1117] = 907, + [1118] = 955, + [1119] = 904, + [1120] = 990, + [1121] = 899, + [1122] = 123, + [1123] = 907, + [1124] = 950, + [1125] = 904, + [1126] = 990, + [1127] = 1127, + [1128] = 122, + [1129] = 907, + [1130] = 1130, + [1131] = 904, + [1132] = 990, + [1133] = 1133, + [1134] = 930, + [1135] = 958, + [1136] = 930, + [1137] = 955, + [1138] = 930, + [1139] = 950, + [1140] = 930, + [1141] = 980, + [1142] = 947, + [1143] = 980, + [1144] = 947, + [1145] = 980, + [1146] = 947, + [1147] = 980, + [1148] = 947, + [1149] = 953, + [1150] = 953, + [1151] = 953, + [1152] = 953, + [1153] = 1153, + [1154] = 1037, + [1155] = 118, + [1156] = 972, + [1157] = 958, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -2994,8 +2974,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\r') SKIP(18); if (lookahead == ' ') ADVANCE(29); if (lookahead == '"') ADVANCE(47); - if (lookahead == '#') ADVANCE(63); - if (lookahead == '%') ADVANCE(64); + if (lookahead == '#') ADVANCE(61); + if (lookahead == '%') ADVANCE(62); if (lookahead == '.') ADVANCE(45); if (lookahead == ':') ADVANCE(41); if (lookahead == '=') ADVANCE(36); @@ -3013,47 +2993,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(50); END_STATE(); case 1: - ADVANCE_MAP( - 0, 33, - '\r', 54, - '#', 63, - '%', 64, - '.', 45, - '[', 22, - '{', 43, - '|', 30, - ); + if ((!eof && lookahead == 00)) ADVANCE(33); + if (lookahead == '\r') ADVANCE(54); + if (lookahead == '#') ADVANCE(61); + if (lookahead == '%') ADVANCE(62); + if (lookahead == '.') ADVANCE(45); + if (lookahead == '[') ADVANCE(22); + if (lookahead == '{') ADVANCE(43); if (lookahead != 0 && lookahead != '\n') ADVANCE(53); END_STATE(); case 2: ADVANCE_MAP( - '\n', 14, - '\r', 55, - '#', 63, - '%', 64, - '-', 31, - '.', 45, - ':', 59, - '[', 22, - '{', 43, - '|', 30, - '\t', 60, - 0x0b, 60, - '\f', 60, - ' ', 60, - ); - if (lookahead != 0) ADVANCE(53); - END_STATE(); - case 3: - ADVANCE_MAP( - '\r', 57, - '#', 63, - '%', 64, + '\r', 56, + '#', 61, + '%', 62, '.', 45, '[', 22, '{', 43, - '|', 30, '}', 44, '\t', 52, ' ', 52, @@ -3062,29 +3019,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(61); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(59); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n') ADVANCE(53); END_STATE(); - case 4: - ADVANCE_MAP( - '\r', 58, - '#', 63, - '%', 64, - '.', 45, - '[', 22, - ']', 27, - '{', 43, - '|', 30, - ); + case 3: + if (lookahead == '\r') ADVANCE(57); + if (lookahead == '#') ADVANCE(61); + if (lookahead == '%') ADVANCE(62); + if (lookahead == '.') ADVANCE(45); + if (lookahead == '[') ADVANCE(22); + if (lookahead == '{') ADVANCE(43); + if (lookahead == '|') ADVANCE(30); if (lookahead != 0 && lookahead != '\n') ADVANCE(53); END_STATE(); - case 5: - if (lookahead == '\r') SKIP(6); + case 4: + if (lookahead == '\r') SKIP(5); if (lookahead == '#') ADVANCE(16); - if (lookahead == '%') ADVANCE(64); + if (lookahead == '%') ADVANCE(62); if (lookahead == '.') ADVANCE(45); if (lookahead == '[') ADVANCE(21); if (lookahead == ']') ADVANCE(15); @@ -3095,12 +3049,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(66); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(64); END_STATE(); - case 6: - if (lookahead == '\r') SKIP(6); + case 5: + if (lookahead == '\r') SKIP(5); if (lookahead == '#') ADVANCE(16); - if (lookahead == '%') ADVANCE(64); + if (lookahead == '%') ADVANCE(62); if (lookahead == '.') ADVANCE(45); if (lookahead == '[') ADVANCE(21); if (lookahead == ']') ADVANCE(15); @@ -3109,7 +3063,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(66); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(64); + END_STATE(); + case 6: + if (lookahead == '\r') ADVANCE(58); + if (lookahead == '#') ADVANCE(61); + if (lookahead == '%') ADVANCE(62); + if (lookahead == '.') ADVANCE(45); + if (lookahead == '[') ADVANCE(22); + if (lookahead == ']') ADVANCE(27); + if (lookahead == '{') ADVANCE(43); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(53); END_STATE(); case 7: if (lookahead == '\r') ADVANCE(37); @@ -3122,11 +3087,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(38); END_STATE(); case 8: - if (lookahead == '\r') ADVANCE(68); - if (lookahead == '%') ADVANCE(64); - if (lookahead == '\\') ADVANCE(69); + if (lookahead == '\r') ADVANCE(66); + if (lookahead == '%') ADVANCE(62); + if (lookahead == '\\') ADVANCE(67); if (lookahead != 0 && - lookahead != '\n') ADVANCE(67); + lookahead != '\n') ADVANCE(65); END_STATE(); case 9: if (lookahead == '\r') ADVANCE(9); @@ -3179,7 +3144,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 17: if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(65); + lookahead != '\r') ADVANCE(63); END_STATE(); case 18: if (eof) ADVANCE(20); @@ -3187,8 +3152,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\r') SKIP(18); if (lookahead == ' ') ADVANCE(28); if (lookahead == '"') ADVANCE(47); - if (lookahead == '#') ADVANCE(63); - if (lookahead == '%') ADVANCE(64); + if (lookahead == '#') ADVANCE(61); + if (lookahead == '%') ADVANCE(62); if (lookahead == '.') ADVANCE(45); if (lookahead == ':') ADVANCE(41); if (lookahead == '=') ADVANCE(36); @@ -3207,13 +3172,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 19: if (eof) ADVANCE(20); - if (lookahead == '\r') ADVANCE(56); - if (lookahead == '#') ADVANCE(63); - if (lookahead == '%') ADVANCE(64); + if (lookahead == '\r') ADVANCE(55); + if (lookahead == '#') ADVANCE(61); + if (lookahead == '%') ADVANCE(62); if (lookahead == '.') ADVANCE(45); if (lookahead == '[') ADVANCE(22); if (lookahead == '{') ADVANCE(43); - if (lookahead == '|') ADVANCE(30); if (lookahead != 0 && lookahead != '\n') ADVANCE(53); END_STATE(); @@ -3328,7 +3292,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 43: ACCEPT_TOKEN(anon_sym_LBRACE); - if (lookahead == '-') ADVANCE(62); + if (lookahead == '-') ADVANCE(60); END_STATE(); case 44: ACCEPT_TOKEN(anon_sym_RBRACE); @@ -3381,145 +3345,116 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 54: ACCEPT_TOKEN(aux_sym__inline_token1); - ADVANCE_MAP( - 0, 33, - '\r', 54, - '#', 63, - '%', 64, - '.', 45, - '[', 22, - '{', 43, - '|', 30, - ); + if ((!eof && lookahead == 00)) ADVANCE(33); + if (lookahead == '\r') ADVANCE(54); + if (lookahead == '#') ADVANCE(61); + if (lookahead == '%') ADVANCE(62); + if (lookahead == '.') ADVANCE(45); + if (lookahead == '[') ADVANCE(22); + if (lookahead == '{') ADVANCE(43); if (lookahead != 0 && lookahead != '\n') ADVANCE(53); END_STATE(); case 55: ACCEPT_TOKEN(aux_sym__inline_token1); - ADVANCE_MAP( - '\n', 14, - '\r', 55, - '#', 63, - '%', 64, - '-', 31, - '.', 45, - ':', 59, - '[', 22, - '{', 43, - '|', 30, - '\t', 60, - 0x0b, 60, - '\f', 60, - ' ', 60, - ); - if (lookahead != 0) ADVANCE(53); + if (lookahead == '\r') ADVANCE(55); + if (lookahead == '#') ADVANCE(61); + if (lookahead == '%') ADVANCE(62); + if (lookahead == '.') ADVANCE(45); + if (lookahead == '[') ADVANCE(22); + if (lookahead == '{') ADVANCE(43); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(53); END_STATE(); case 56: ACCEPT_TOKEN(aux_sym__inline_token1); if (lookahead == '\r') ADVANCE(56); - if (lookahead == '#') ADVANCE(63); - if (lookahead == '%') ADVANCE(64); + if (lookahead == '#') ADVANCE(61); + if (lookahead == '%') ADVANCE(62); if (lookahead == '.') ADVANCE(45); if (lookahead == '[') ADVANCE(22); if (lookahead == '{') ADVANCE(43); - if (lookahead == '|') ADVANCE(30); + if (lookahead == '}') ADVANCE(44); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(59); if (lookahead != 0 && lookahead != '\n') ADVANCE(53); END_STATE(); case 57: ACCEPT_TOKEN(aux_sym__inline_token1); - ADVANCE_MAP( - '\r', 57, - '#', 63, - '%', 64, - '.', 45, - '[', 22, - '{', 43, - '|', 30, - '}', 44, - ); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(61); + if (lookahead == '\r') ADVANCE(57); + if (lookahead == '#') ADVANCE(61); + if (lookahead == '%') ADVANCE(62); + if (lookahead == '.') ADVANCE(45); + if (lookahead == '[') ADVANCE(22); + if (lookahead == '{') ADVANCE(43); + if (lookahead == '|') ADVANCE(30); if (lookahead != 0 && lookahead != '\n') ADVANCE(53); END_STATE(); case 58: ACCEPT_TOKEN(aux_sym__inline_token1); - ADVANCE_MAP( - '\r', 58, - '#', 63, - '%', 64, - '.', 45, - '[', 22, - ']', 27, - '{', 43, - '|', 30, - ); + if (lookahead == '\r') ADVANCE(58); + if (lookahead == '#') ADVANCE(61); + if (lookahead == '%') ADVANCE(62); + if (lookahead == '.') ADVANCE(45); + if (lookahead == '[') ADVANCE(22); + if (lookahead == ']') ADVANCE(27); + if (lookahead == '{') ADVANCE(43); if (lookahead != 0 && lookahead != '\n') ADVANCE(53); END_STATE(); case 59: - ACCEPT_TOKEN(aux_sym__inline_token1); - if (lookahead == '-') ADVANCE(31); - END_STATE(); - case 60: - ACCEPT_TOKEN(aux_sym__inline_token1); - if (lookahead == '-') ADVANCE(31); - if (lookahead == ':') ADVANCE(13); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(14); - END_STATE(); - case 61: ACCEPT_TOKEN(aux_sym__inline_token1); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(66); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(64); END_STATE(); - case 62: + case 60: ACCEPT_TOKEN(anon_sym_LBRACE_DASH); END_STATE(); - case 63: + case 61: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && lookahead != '}') ADVANCE(46); END_STATE(); - case 64: + case 62: ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); - case 65: + case 63: ACCEPT_TOKEN(sym_backslash_escape); END_STATE(); - case 66: + case 64: ACCEPT_TOKEN(sym__id); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(66); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(64); END_STATE(); - case 67: + case 65: ACCEPT_TOKEN(aux_sym__comment_no_newline_token1); END_STATE(); - case 68: + case 66: ACCEPT_TOKEN(aux_sym__comment_no_newline_token1); - if (lookahead == '\r') ADVANCE(68); - if (lookahead == '\\') ADVANCE(69); + if (lookahead == '\r') ADVANCE(66); + if (lookahead == '\\') ADVANCE(67); if (lookahead != 0 && lookahead != '\n' && - lookahead != '%') ADVANCE(67); + lookahead != '%') ADVANCE(65); END_STATE(); - case 69: + case 67: ACCEPT_TOKEN(aux_sym__comment_no_newline_token1); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(65); + lookahead != '\r') ADVANCE(63); END_STATE(); default: return false; @@ -3533,398 +3468,398 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3] = {.lex_state = 19, .external_lex_state = 3}, [4] = {.lex_state = 19, .external_lex_state = 4}, [5] = {.lex_state = 19, .external_lex_state = 4}, - [6] = {.lex_state = 19, .external_lex_state = 4}, + [6] = {.lex_state = 19, .external_lex_state = 3}, [7] = {.lex_state = 19, .external_lex_state = 3}, [8] = {.lex_state = 19, .external_lex_state = 4}, - [9] = {.lex_state = 19, .external_lex_state = 3}, - [10] = {.lex_state = 19, .external_lex_state = 3}, - [11] = {.lex_state = 19, .external_lex_state = 3}, - [12] = {.lex_state = 19, .external_lex_state = 3}, - [13] = {.lex_state = 19, .external_lex_state = 3}, - [14] = {.lex_state = 19, .external_lex_state = 3}, - [15] = {.lex_state = 19, .external_lex_state = 3}, - [16] = {.lex_state = 19, .external_lex_state = 3}, - [17] = {.lex_state = 19, .external_lex_state = 3}, - [18] = {.lex_state = 19, .external_lex_state = 3}, - [19] = {.lex_state = 19, .external_lex_state = 3}, - [20] = {.lex_state = 19, .external_lex_state = 3}, - [21] = {.lex_state = 19, .external_lex_state = 3}, - [22] = {.lex_state = 19, .external_lex_state = 4}, - [23] = {.lex_state = 19, .external_lex_state = 4}, - [24] = {.lex_state = 19, .external_lex_state = 4}, - [25] = {.lex_state = 19, .external_lex_state = 4}, - [26] = {.lex_state = 19, .external_lex_state = 4}, - [27] = {.lex_state = 19, .external_lex_state = 4}, - [28] = {.lex_state = 19, .external_lex_state = 4}, - [29] = {.lex_state = 19, .external_lex_state = 4}, - [30] = {.lex_state = 19, .external_lex_state = 4}, - [31] = {.lex_state = 19, .external_lex_state = 4}, - [32] = {.lex_state = 19, .external_lex_state = 4}, - [33] = {.lex_state = 19, .external_lex_state = 4}, - [34] = {.lex_state = 19, .external_lex_state = 4}, - [35] = {.lex_state = 19, .external_lex_state = 4}, - [36] = {.lex_state = 19, .external_lex_state = 4}, - [37] = {.lex_state = 19, .external_lex_state = 4}, - [38] = {.lex_state = 19, .external_lex_state = 4}, - [39] = {.lex_state = 19, .external_lex_state = 4}, - [40] = {.lex_state = 19, .external_lex_state = 4}, - [41] = {.lex_state = 19, .external_lex_state = 4}, - [42] = {.lex_state = 19, .external_lex_state = 4}, - [43] = {.lex_state = 19, .external_lex_state = 4}, - [44] = {.lex_state = 19, .external_lex_state = 4}, - [45] = {.lex_state = 19, .external_lex_state = 4}, - [46] = {.lex_state = 19, .external_lex_state = 4}, - [47] = {.lex_state = 19, .external_lex_state = 4}, - [48] = {.lex_state = 19, .external_lex_state = 4}, - [49] = {.lex_state = 19, .external_lex_state = 4}, - [50] = {.lex_state = 19, .external_lex_state = 4}, - [51] = {.lex_state = 19, .external_lex_state = 4}, - [52] = {.lex_state = 19, .external_lex_state = 4}, + [9] = {.lex_state = 19, .external_lex_state = 4}, + [10] = {.lex_state = 19, .external_lex_state = 4}, + [11] = {.lex_state = 19, .external_lex_state = 4}, + [12] = {.lex_state = 19, .external_lex_state = 4}, + [13] = {.lex_state = 19, .external_lex_state = 4}, + [14] = {.lex_state = 19, .external_lex_state = 4}, + [15] = {.lex_state = 19, .external_lex_state = 4}, + [16] = {.lex_state = 19, .external_lex_state = 4}, + [17] = {.lex_state = 19, .external_lex_state = 4}, + [18] = {.lex_state = 19, .external_lex_state = 4}, + [19] = {.lex_state = 19, .external_lex_state = 4}, + [20] = {.lex_state = 19, .external_lex_state = 4}, + [21] = {.lex_state = 19, .external_lex_state = 4}, + [22] = {.lex_state = 19, .external_lex_state = 3}, + [23] = {.lex_state = 19, .external_lex_state = 3}, + [24] = {.lex_state = 19, .external_lex_state = 3}, + [25] = {.lex_state = 19, .external_lex_state = 3}, + [26] = {.lex_state = 19, .external_lex_state = 3}, + [27] = {.lex_state = 19, .external_lex_state = 3}, + [28] = {.lex_state = 19, .external_lex_state = 3}, + [29] = {.lex_state = 19, .external_lex_state = 3}, + [30] = {.lex_state = 19, .external_lex_state = 3}, + [31] = {.lex_state = 19, .external_lex_state = 3}, + [32] = {.lex_state = 19, .external_lex_state = 3}, + [33] = {.lex_state = 19, .external_lex_state = 3}, + [34] = {.lex_state = 19, .external_lex_state = 3}, + [35] = {.lex_state = 19, .external_lex_state = 3}, + [36] = {.lex_state = 19, .external_lex_state = 3}, + [37] = {.lex_state = 19, .external_lex_state = 3}, + [38] = {.lex_state = 19, .external_lex_state = 3}, + [39] = {.lex_state = 19, .external_lex_state = 3}, + [40] = {.lex_state = 19, .external_lex_state = 3}, + [41] = {.lex_state = 19, .external_lex_state = 3}, + [42] = {.lex_state = 19, .external_lex_state = 3}, + [43] = {.lex_state = 19, .external_lex_state = 3}, + [44] = {.lex_state = 19, .external_lex_state = 3}, + [45] = {.lex_state = 19, .external_lex_state = 3}, + [46] = {.lex_state = 19, .external_lex_state = 3}, + [47] = {.lex_state = 19, .external_lex_state = 3}, + [48] = {.lex_state = 19, .external_lex_state = 3}, + [49] = {.lex_state = 19, .external_lex_state = 3}, + [50] = {.lex_state = 19, .external_lex_state = 3}, + [51] = {.lex_state = 19, .external_lex_state = 3}, + [52] = {.lex_state = 19, .external_lex_state = 3}, [53] = {.lex_state = 19, .external_lex_state = 4}, - [54] = {.lex_state = 19, .external_lex_state = 4}, + [54] = {.lex_state = 19, .external_lex_state = 3}, [55] = {.lex_state = 19, .external_lex_state = 3}, - [56] = {.lex_state = 19, .external_lex_state = 4}, + [56] = {.lex_state = 19, .external_lex_state = 3}, [57] = {.lex_state = 19, .external_lex_state = 5}, - [58] = {.lex_state = 19, .external_lex_state = 4}, + [58] = {.lex_state = 19, .external_lex_state = 3}, [59] = {.lex_state = 19, .external_lex_state = 5}, - [60] = {.lex_state = 19, .external_lex_state = 4}, - [61] = {.lex_state = 19, .external_lex_state = 4}, - [62] = {.lex_state = 19, .external_lex_state = 5}, + [60] = {.lex_state = 19, .external_lex_state = 3}, + [61] = {.lex_state = 19, .external_lex_state = 5}, + [62] = {.lex_state = 19, .external_lex_state = 3}, [63] = {.lex_state = 19, .external_lex_state = 5}, [64] = {.lex_state = 19, .external_lex_state = 5}, [65] = {.lex_state = 19, .external_lex_state = 6}, [66] = {.lex_state = 19, .external_lex_state = 7}, [67] = {.lex_state = 19, .external_lex_state = 8}, - [68] = {.lex_state = 19, .external_lex_state = 7}, - [69] = {.lex_state = 19, .external_lex_state = 8}, + [68] = {.lex_state = 19, .external_lex_state = 8}, + [69] = {.lex_state = 19, .external_lex_state = 7}, [70] = {.lex_state = 19, .external_lex_state = 8}, [71] = {.lex_state = 19, .external_lex_state = 7}, - [72] = {.lex_state = 19, .external_lex_state = 7}, - [73] = {.lex_state = 19, .external_lex_state = 8}, - [74] = {.lex_state = 19, .external_lex_state = 9}, + [72] = {.lex_state = 19, .external_lex_state = 8}, + [73] = {.lex_state = 19, .external_lex_state = 7}, + [74] = {.lex_state = 19, .external_lex_state = 7}, [75] = {.lex_state = 19, .external_lex_state = 9}, - [76] = {.lex_state = 19, .external_lex_state = 8}, - [77] = {.lex_state = 19, .external_lex_state = 8}, - [78] = {.lex_state = 19, .external_lex_state = 10}, - [79] = {.lex_state = 19, .external_lex_state = 10}, - [80] = {.lex_state = 19, .external_lex_state = 9}, - [81] = {.lex_state = 19, .external_lex_state = 11}, - [82] = {.lex_state = 19, .external_lex_state = 9}, - [83] = {.lex_state = 19, .external_lex_state = 8}, - [84] = {.lex_state = 19, .external_lex_state = 8}, - [85] = {.lex_state = 19, .external_lex_state = 10}, - [86] = {.lex_state = 19, .external_lex_state = 9}, + [76] = {.lex_state = 19, .external_lex_state = 10}, + [77] = {.lex_state = 19, .external_lex_state = 10}, + [78] = {.lex_state = 19, .external_lex_state = 11}, + [79] = {.lex_state = 19, .external_lex_state = 11}, + [80] = {.lex_state = 19, .external_lex_state = 11}, + [81] = {.lex_state = 19, .external_lex_state = 7}, + [82] = {.lex_state = 19, .external_lex_state = 7}, + [83] = {.lex_state = 19, .external_lex_state = 7}, + [84] = {.lex_state = 19, .external_lex_state = 10}, + [85] = {.lex_state = 19, .external_lex_state = 11}, + [86] = {.lex_state = 19, .external_lex_state = 11}, [87] = {.lex_state = 19, .external_lex_state = 9}, - [88] = {.lex_state = 19, .external_lex_state = 8}, - [89] = {.lex_state = 19, .external_lex_state = 8}, - [90] = {.lex_state = 19, .external_lex_state = 10}, - [91] = {.lex_state = 19, .external_lex_state = 12}, - [92] = {.lex_state = 19, .external_lex_state = 11}, - [93] = {.lex_state = 19, .external_lex_state = 11}, - [94] = {.lex_state = 19, .external_lex_state = 13}, - [95] = {.lex_state = 19, .external_lex_state = 14}, - [96] = {.lex_state = 19, .external_lex_state = 7}, - [97] = {.lex_state = 19, .external_lex_state = 11}, - [98] = {.lex_state = 19, .external_lex_state = 13}, - [99] = {.lex_state = 19, .external_lex_state = 11}, - [100] = {.lex_state = 19, .external_lex_state = 11}, - [101] = {.lex_state = 19, .external_lex_state = 7}, - [102] = {.lex_state = 19, .external_lex_state = 7}, - [103] = {.lex_state = 19, .external_lex_state = 7}, - [104] = {.lex_state = 19, .external_lex_state = 7}, - [105] = {.lex_state = 19, .external_lex_state = 13}, - [106] = {.lex_state = 19, .external_lex_state = 13}, - [107] = {.lex_state = 19, .external_lex_state = 8}, - [108] = {.lex_state = 19, .external_lex_state = 7}, - [109] = {.lex_state = 19, .external_lex_state = 7}, - [110] = {.lex_state = 19, .external_lex_state = 14}, + [88] = {.lex_state = 19, .external_lex_state = 12}, + [89] = {.lex_state = 19, .external_lex_state = 13}, + [90] = {.lex_state = 19, .external_lex_state = 8}, + [91] = {.lex_state = 19, .external_lex_state = 8}, + [92] = {.lex_state = 19, .external_lex_state = 12}, + [93] = {.lex_state = 19, .external_lex_state = 8}, + [94] = {.lex_state = 19, .external_lex_state = 8}, + [95] = {.lex_state = 19, .external_lex_state = 12}, + [96] = {.lex_state = 19, .external_lex_state = 8}, + [97] = {.lex_state = 19, .external_lex_state = 13}, + [98] = {.lex_state = 19, .external_lex_state = 7}, + [99] = {.lex_state = 19, .external_lex_state = 8}, + [100] = {.lex_state = 19, .external_lex_state = 13}, + [101] = {.lex_state = 19, .external_lex_state = 13}, + [102] = {.lex_state = 19, .external_lex_state = 12}, + [103] = {.lex_state = 19, .external_lex_state = 12}, + [104] = {.lex_state = 19, .external_lex_state = 12}, + [105] = {.lex_state = 19, .external_lex_state = 10}, + [106] = {.lex_state = 19, .external_lex_state = 11}, + [107] = {.lex_state = 19, .external_lex_state = 7}, + [108] = {.lex_state = 19, .external_lex_state = 14}, + [109] = {.lex_state = 19, .external_lex_state = 4}, + [110] = {.lex_state = 19, .external_lex_state = 3}, [111] = {.lex_state = 19, .external_lex_state = 4}, - [112] = {.lex_state = 19, .external_lex_state = 4}, + [112] = {.lex_state = 19, .external_lex_state = 3}, [113] = {.lex_state = 19, .external_lex_state = 3}, - [114] = {.lex_state = 19, .external_lex_state = 4}, - [115] = {.lex_state = 19, .external_lex_state = 4}, - [116] = {.lex_state = 19, .external_lex_state = 4}, - [117] = {.lex_state = 19, .external_lex_state = 4}, - [118] = {.lex_state = 19, .external_lex_state = 4}, - [119] = {.lex_state = 19, .external_lex_state = 4}, - [120] = {.lex_state = 19, .external_lex_state = 4}, - [121] = {.lex_state = 19, .external_lex_state = 4}, - [122] = {.lex_state = 19, .external_lex_state = 4}, - [123] = {.lex_state = 19, .external_lex_state = 4}, - [124] = {.lex_state = 19, .external_lex_state = 4}, - [125] = {.lex_state = 19, .external_lex_state = 4}, - [126] = {.lex_state = 19, .external_lex_state = 4}, - [127] = {.lex_state = 19, .external_lex_state = 4}, - [128] = {.lex_state = 19, .external_lex_state = 4}, - [129] = {.lex_state = 19, .external_lex_state = 4}, - [130] = {.lex_state = 19, .external_lex_state = 4}, - [131] = {.lex_state = 19, .external_lex_state = 4}, - [132] = {.lex_state = 19, .external_lex_state = 4}, - [133] = {.lex_state = 19, .external_lex_state = 4}, - [134] = {.lex_state = 19, .external_lex_state = 4}, - [135] = {.lex_state = 19, .external_lex_state = 4}, - [136] = {.lex_state = 19, .external_lex_state = 4}, + [114] = {.lex_state = 19, .external_lex_state = 3}, + [115] = {.lex_state = 19, .external_lex_state = 3}, + [116] = {.lex_state = 19, .external_lex_state = 3}, + [117] = {.lex_state = 19, .external_lex_state = 3}, + [118] = {.lex_state = 19, .external_lex_state = 3}, + [119] = {.lex_state = 19, .external_lex_state = 3}, + [120] = {.lex_state = 19, .external_lex_state = 3}, + [121] = {.lex_state = 19, .external_lex_state = 3}, + [122] = {.lex_state = 19, .external_lex_state = 3}, + [123] = {.lex_state = 19, .external_lex_state = 3}, + [124] = {.lex_state = 19, .external_lex_state = 3}, + [125] = {.lex_state = 19, .external_lex_state = 3}, + [126] = {.lex_state = 19, .external_lex_state = 3}, + [127] = {.lex_state = 19, .external_lex_state = 3}, + [128] = {.lex_state = 19, .external_lex_state = 3}, + [129] = {.lex_state = 19, .external_lex_state = 3}, + [130] = {.lex_state = 19, .external_lex_state = 3}, + [131] = {.lex_state = 19, .external_lex_state = 3}, + [132] = {.lex_state = 19, .external_lex_state = 3}, + [133] = {.lex_state = 19, .external_lex_state = 3}, + [134] = {.lex_state = 19, .external_lex_state = 3}, + [135] = {.lex_state = 19, .external_lex_state = 3}, + [136] = {.lex_state = 19, .external_lex_state = 3}, [137] = {.lex_state = 19, .external_lex_state = 4}, [138] = {.lex_state = 19, .external_lex_state = 3}, - [139] = {.lex_state = 19, .external_lex_state = 3}, + [139] = {.lex_state = 19, .external_lex_state = 4}, [140] = {.lex_state = 19, .external_lex_state = 4}, - [141] = {.lex_state = 19, .external_lex_state = 3}, - [142] = {.lex_state = 19, .external_lex_state = 3}, - [143] = {.lex_state = 19, .external_lex_state = 3}, + [141] = {.lex_state = 19, .external_lex_state = 4}, + [142] = {.lex_state = 19, .external_lex_state = 4}, + [143] = {.lex_state = 19, .external_lex_state = 4}, [144] = {.lex_state = 19, .external_lex_state = 3}, [145] = {.lex_state = 19, .external_lex_state = 4}, [146] = {.lex_state = 19, .external_lex_state = 4}, - [147] = {.lex_state = 19, .external_lex_state = 3}, - [148] = {.lex_state = 19, .external_lex_state = 3}, - [149] = {.lex_state = 19, .external_lex_state = 3}, - [150] = {.lex_state = 19, .external_lex_state = 3}, - [151] = {.lex_state = 19, .external_lex_state = 3}, - [152] = {.lex_state = 19, .external_lex_state = 3}, - [153] = {.lex_state = 19, .external_lex_state = 3}, - [154] = {.lex_state = 19, .external_lex_state = 3}, - [155] = {.lex_state = 19, .external_lex_state = 3}, - [156] = {.lex_state = 19, .external_lex_state = 3}, - [157] = {.lex_state = 19, .external_lex_state = 3}, - [158] = {.lex_state = 19, .external_lex_state = 3}, - [159] = {.lex_state = 19, .external_lex_state = 3}, - [160] = {.lex_state = 19, .external_lex_state = 3}, - [161] = {.lex_state = 19, .external_lex_state = 3}, - [162] = {.lex_state = 19, .external_lex_state = 3}, - [163] = {.lex_state = 19, .external_lex_state = 3}, - [164] = {.lex_state = 19, .external_lex_state = 3}, - [165] = {.lex_state = 19, .external_lex_state = 3}, + [147] = {.lex_state = 19, .external_lex_state = 4}, + [148] = {.lex_state = 19, .external_lex_state = 4}, + [149] = {.lex_state = 19, .external_lex_state = 4}, + [150] = {.lex_state = 19, .external_lex_state = 4}, + [151] = {.lex_state = 19, .external_lex_state = 4}, + [152] = {.lex_state = 19, .external_lex_state = 4}, + [153] = {.lex_state = 19, .external_lex_state = 4}, + [154] = {.lex_state = 19, .external_lex_state = 4}, + [155] = {.lex_state = 19, .external_lex_state = 4}, + [156] = {.lex_state = 19, .external_lex_state = 4}, + [157] = {.lex_state = 19, .external_lex_state = 4}, + [158] = {.lex_state = 19, .external_lex_state = 4}, + [159] = {.lex_state = 19, .external_lex_state = 4}, + [160] = {.lex_state = 19, .external_lex_state = 4}, + [161] = {.lex_state = 19, .external_lex_state = 4}, + [162] = {.lex_state = 19, .external_lex_state = 4}, + [163] = {.lex_state = 19, .external_lex_state = 4}, + [164] = {.lex_state = 19, .external_lex_state = 4}, + [165] = {.lex_state = 19, .external_lex_state = 4}, [166] = {.lex_state = 19, .external_lex_state = 3}, - [167] = {.lex_state = 19, .external_lex_state = 3}, - [168] = {.lex_state = 19, .external_lex_state = 4}, - [169] = {.lex_state = 19, .external_lex_state = 3}, + [167] = {.lex_state = 19, .external_lex_state = 4}, + [168] = {.lex_state = 19, .external_lex_state = 3}, + [169] = {.lex_state = 19, .external_lex_state = 4}, [170] = {.lex_state = 19, .external_lex_state = 4}, [171] = {.lex_state = 19, .external_lex_state = 3}, - [172] = {.lex_state = 19, .external_lex_state = 3}, - [173] = {.lex_state = 19, .external_lex_state = 4}, + [172] = {.lex_state = 19, .external_lex_state = 4}, + [173] = {.lex_state = 19, .external_lex_state = 3}, [174] = {.lex_state = 19, .external_lex_state = 3}, - [175] = {.lex_state = 19, .external_lex_state = 4}, - [176] = {.lex_state = 19, .external_lex_state = 4}, - [177] = {.lex_state = 19, .external_lex_state = 4}, + [175] = {.lex_state = 19, .external_lex_state = 3}, + [176] = {.lex_state = 19, .external_lex_state = 3}, + [177] = {.lex_state = 19, .external_lex_state = 3}, [178] = {.lex_state = 19, .external_lex_state = 3}, - [179] = {.lex_state = 19, .external_lex_state = 4}, + [179] = {.lex_state = 19, .external_lex_state = 3}, [180] = {.lex_state = 19, .external_lex_state = 4}, [181] = {.lex_state = 19, .external_lex_state = 3}, - [182] = {.lex_state = 19, .external_lex_state = 4}, - [183] = {.lex_state = 19, .external_lex_state = 4}, - [184] = {.lex_state = 19, .external_lex_state = 4}, - [185] = {.lex_state = 19, .external_lex_state = 4}, - [186] = {.lex_state = 19, .external_lex_state = 4}, - [187] = {.lex_state = 19, .external_lex_state = 3}, + [182] = {.lex_state = 19, .external_lex_state = 3}, + [183] = {.lex_state = 19, .external_lex_state = 3}, + [184] = {.lex_state = 19, .external_lex_state = 3}, + [185] = {.lex_state = 19, .external_lex_state = 3}, + [186] = {.lex_state = 19, .external_lex_state = 3}, + [187] = {.lex_state = 19, .external_lex_state = 4}, [188] = {.lex_state = 19, .external_lex_state = 4}, [189] = {.lex_state = 19, .external_lex_state = 3}, - [190] = {.lex_state = 19, .external_lex_state = 3}, - [191] = {.lex_state = 19, .external_lex_state = 3}, - [192] = {.lex_state = 19, .external_lex_state = 3}, + [190] = {.lex_state = 19, .external_lex_state = 4}, + [191] = {.lex_state = 19, .external_lex_state = 4}, + [192] = {.lex_state = 19, .external_lex_state = 4}, [193] = {.lex_state = 19, .external_lex_state = 4}, - [194] = {.lex_state = 19, .external_lex_state = 3}, - [195] = {.lex_state = 19, .external_lex_state = 3}, - [196] = {.lex_state = 19, .external_lex_state = 3}, - [197] = {.lex_state = 19, .external_lex_state = 3}, - [198] = {.lex_state = 19, .external_lex_state = 3}, - [199] = {.lex_state = 19, .external_lex_state = 3}, - [200] = {.lex_state = 19, .external_lex_state = 3}, - [201] = {.lex_state = 19, .external_lex_state = 3}, - [202] = {.lex_state = 19, .external_lex_state = 3}, + [194] = {.lex_state = 19, .external_lex_state = 4}, + [195] = {.lex_state = 19, .external_lex_state = 4}, + [196] = {.lex_state = 19, .external_lex_state = 4}, + [197] = {.lex_state = 19, .external_lex_state = 4}, + [198] = {.lex_state = 19, .external_lex_state = 4}, + [199] = {.lex_state = 19, .external_lex_state = 4}, + [200] = {.lex_state = 19, .external_lex_state = 4}, + [201] = {.lex_state = 19, .external_lex_state = 4}, + [202] = {.lex_state = 19, .external_lex_state = 4}, [203] = {.lex_state = 19, .external_lex_state = 3}, - [204] = {.lex_state = 19, .external_lex_state = 4}, - [205] = {.lex_state = 19, .external_lex_state = 4}, + [204] = {.lex_state = 19, .external_lex_state = 3}, + [205] = {.lex_state = 19, .external_lex_state = 3}, [206] = {.lex_state = 19, .external_lex_state = 4}, - [207] = {.lex_state = 19, .external_lex_state = 4}, - [208] = {.lex_state = 19, .external_lex_state = 3}, - [209] = {.lex_state = 19, .external_lex_state = 4}, - [210] = {.lex_state = 19, .external_lex_state = 4}, - [211] = {.lex_state = 19, .external_lex_state = 6}, - [212] = {.lex_state = 19, .external_lex_state = 6}, - [213] = {.lex_state = 3, .external_lex_state = 15}, - [214] = {.lex_state = 3, .external_lex_state = 15}, - [215] = {.lex_state = 3, .external_lex_state = 15}, - [216] = {.lex_state = 3, .external_lex_state = 15}, - [217] = {.lex_state = 3, .external_lex_state = 15}, - [218] = {.lex_state = 19, .external_lex_state = 16}, - [219] = {.lex_state = 19, .external_lex_state = 16}, - [220] = {.lex_state = 19, .external_lex_state = 16}, + [207] = {.lex_state = 19, .external_lex_state = 3}, + [208] = {.lex_state = 19, .external_lex_state = 6}, + [209] = {.lex_state = 19, .external_lex_state = 3}, + [210] = {.lex_state = 19, .external_lex_state = 6}, + [211] = {.lex_state = 19, .external_lex_state = 15}, + [212] = {.lex_state = 19, .external_lex_state = 15}, + [213] = {.lex_state = 19, .external_lex_state = 15}, + [214] = {.lex_state = 19, .external_lex_state = 15}, + [215] = {.lex_state = 19, .external_lex_state = 15}, + [216] = {.lex_state = 19, .external_lex_state = 15}, + [217] = {.lex_state = 19, .external_lex_state = 15}, + [218] = {.lex_state = 19, .external_lex_state = 15}, + [219] = {.lex_state = 19, .external_lex_state = 15}, + [220] = {.lex_state = 19, .external_lex_state = 15}, [221] = {.lex_state = 19, .external_lex_state = 16}, [222] = {.lex_state = 19, .external_lex_state = 16}, [223] = {.lex_state = 19, .external_lex_state = 16}, [224] = {.lex_state = 19, .external_lex_state = 16}, [225] = {.lex_state = 19, .external_lex_state = 16}, - [226] = {.lex_state = 19, .external_lex_state = 16}, - [227] = {.lex_state = 19, .external_lex_state = 16}, - [228] = {.lex_state = 19, .external_lex_state = 17}, - [229] = {.lex_state = 19, .external_lex_state = 18}, - [230] = {.lex_state = 19, .external_lex_state = 18}, + [226] = {.lex_state = 2, .external_lex_state = 17}, + [227] = {.lex_state = 2, .external_lex_state = 17}, + [228] = {.lex_state = 2, .external_lex_state = 17}, + [229] = {.lex_state = 2, .external_lex_state = 17}, + [230] = {.lex_state = 2, .external_lex_state = 17}, [231] = {.lex_state = 19, .external_lex_state = 18}, [232] = {.lex_state = 19, .external_lex_state = 18}, [233] = {.lex_state = 19, .external_lex_state = 18}, - [234] = {.lex_state = 1, .external_lex_state = 19}, - [235] = {.lex_state = 1, .external_lex_state = 19}, - [236] = {.lex_state = 1, .external_lex_state = 19}, - [237] = {.lex_state = 1, .external_lex_state = 19}, - [238] = {.lex_state = 19, .external_lex_state = 20}, - [239] = {.lex_state = 2, .external_lex_state = 15}, - [240] = {.lex_state = 19, .external_lex_state = 20}, - [241] = {.lex_state = 1, .external_lex_state = 19}, - [242] = {.lex_state = 1, .external_lex_state = 19}, - [243] = {.lex_state = 2, .external_lex_state = 15}, - [244] = {.lex_state = 2, .external_lex_state = 15}, - [245] = {.lex_state = 2, .external_lex_state = 15}, - [246] = {.lex_state = 2, .external_lex_state = 15}, - [247] = {.lex_state = 2, .external_lex_state = 15}, - [248] = {.lex_state = 2, .external_lex_state = 15}, - [249] = {.lex_state = 2, .external_lex_state = 15}, - [250] = {.lex_state = 2, .external_lex_state = 15}, - [251] = {.lex_state = 2, .external_lex_state = 15}, - [252] = {.lex_state = 19, .external_lex_state = 15}, - [253] = {.lex_state = 19, .external_lex_state = 21}, - [254] = {.lex_state = 19, .external_lex_state = 21}, - [255] = {.lex_state = 19, .external_lex_state = 20}, - [256] = {.lex_state = 19, .external_lex_state = 15}, - [257] = {.lex_state = 19, .external_lex_state = 17}, - [258] = {.lex_state = 19, .external_lex_state = 15}, - [259] = {.lex_state = 19, .external_lex_state = 15}, - [260] = {.lex_state = 19, .external_lex_state = 15}, - [261] = {.lex_state = 19, .external_lex_state = 22}, - [262] = {.lex_state = 2}, - [263] = {.lex_state = 19}, - [264] = {.lex_state = 2}, - [265] = {.lex_state = 19, .external_lex_state = 21}, - [266] = {.lex_state = 19, .external_lex_state = 22}, - [267] = {.lex_state = 19, .external_lex_state = 22}, - [268] = {.lex_state = 19}, - [269] = {.lex_state = 19, .external_lex_state = 22}, - [270] = {.lex_state = 19, .external_lex_state = 22}, - [271] = {.lex_state = 19, .external_lex_state = 22}, - [272] = {.lex_state = 19, .external_lex_state = 22}, - [273] = {.lex_state = 19, .external_lex_state = 22}, - [274] = {.lex_state = 19, .external_lex_state = 22}, - [275] = {.lex_state = 19, .external_lex_state = 22}, - [276] = {.lex_state = 19, .external_lex_state = 22}, - [277] = {.lex_state = 19, .external_lex_state = 22}, - [278] = {.lex_state = 19, .external_lex_state = 22}, + [234] = {.lex_state = 19, .external_lex_state = 19}, + [235] = {.lex_state = 19, .external_lex_state = 19}, + [236] = {.lex_state = 19, .external_lex_state = 19}, + [237] = {.lex_state = 19, .external_lex_state = 20}, + [238] = {.lex_state = 0, .external_lex_state = 21}, + [239] = {.lex_state = 1, .external_lex_state = 22}, + [240] = {.lex_state = 1, .external_lex_state = 22}, + [241] = {.lex_state = 1, .external_lex_state = 22}, + [242] = {.lex_state = 1, .external_lex_state = 22}, + [243] = {.lex_state = 1, .external_lex_state = 22}, + [244] = {.lex_state = 1, .external_lex_state = 22}, + [245] = {.lex_state = 0, .external_lex_state = 21}, + [246] = {.lex_state = 19, .external_lex_state = 17}, + [247] = {.lex_state = 19, .external_lex_state = 20}, + [248] = {.lex_state = 0, .external_lex_state = 23}, + [249] = {.lex_state = 0, .external_lex_state = 24}, + [250] = {.lex_state = 19, .external_lex_state = 17}, + [251] = {.lex_state = 19, .external_lex_state = 17}, + [252] = {.lex_state = 19, .external_lex_state = 17}, + [253] = {.lex_state = 19, .external_lex_state = 17}, + [254] = {.lex_state = 19}, + [255] = {.lex_state = 19}, + [256] = {.lex_state = 19, .external_lex_state = 25}, + [257] = {.lex_state = 19}, + [258] = {.lex_state = 0, .external_lex_state = 24}, + [259] = {.lex_state = 19, .external_lex_state = 25}, + [260] = {.lex_state = 19, .external_lex_state = 25}, + [261] = {.lex_state = 19, .external_lex_state = 25}, + [262] = {.lex_state = 19, .external_lex_state = 25}, + [263] = {.lex_state = 19, .external_lex_state = 25}, + [264] = {.lex_state = 19, .external_lex_state = 25}, + [265] = {.lex_state = 19, .external_lex_state = 25}, + [266] = {.lex_state = 19, .external_lex_state = 25}, + [267] = {.lex_state = 19, .external_lex_state = 25}, + [268] = {.lex_state = 19, .external_lex_state = 25}, + [269] = {.lex_state = 19, .external_lex_state = 25}, + [270] = {.lex_state = 19, .external_lex_state = 25}, + [271] = {.lex_state = 19, .external_lex_state = 25}, + [272] = {.lex_state = 19, .external_lex_state = 25}, + [273] = {.lex_state = 19, .external_lex_state = 25}, + [274] = {.lex_state = 19, .external_lex_state = 25}, + [275] = {.lex_state = 19, .external_lex_state = 25}, + [276] = {.lex_state = 19, .external_lex_state = 25}, + [277] = {.lex_state = 19, .external_lex_state = 25}, + [278] = {.lex_state = 19}, [279] = {.lex_state = 19}, [280] = {.lex_state = 19}, - [281] = {.lex_state = 2}, - [282] = {.lex_state = 2}, + [281] = {.lex_state = 19}, + [282] = {.lex_state = 19}, [283] = {.lex_state = 19}, - [284] = {.lex_state = 19}, - [285] = {.lex_state = 2}, - [286] = {.lex_state = 2}, + [284] = {.lex_state = 0, .external_lex_state = 23}, + [285] = {.lex_state = 19, .external_lex_state = 17}, + [286] = {.lex_state = 19}, [287] = {.lex_state = 19}, [288] = {.lex_state = 19}, - [289] = {.lex_state = 2}, - [290] = {.lex_state = 2}, - [291] = {.lex_state = 19, .external_lex_state = 22}, - [292] = {.lex_state = 19}, - [293] = {.lex_state = 2}, - [294] = {.lex_state = 2}, - [295] = {.lex_state = 19, .external_lex_state = 22}, + [289] = {.lex_state = 19}, + [290] = {.lex_state = 19}, + [291] = {.lex_state = 19}, + [292] = {.lex_state = 19, .external_lex_state = 17}, + [293] = {.lex_state = 19}, + [294] = {.lex_state = 19}, + [295] = {.lex_state = 19}, [296] = {.lex_state = 19}, - [297] = {.lex_state = 19, .external_lex_state = 15}, - [298] = {.lex_state = 19, .external_lex_state = 15}, - [299] = {.lex_state = 19}, - [300] = {.lex_state = 19, .external_lex_state = 23}, - [301] = {.lex_state = 0, .external_lex_state = 24}, + [297] = {.lex_state = 19}, + [298] = {.lex_state = 19}, + [299] = {.lex_state = 3}, + [300] = {.lex_state = 19}, + [301] = {.lex_state = 4}, [302] = {.lex_state = 4}, - [303] = {.lex_state = 19}, - [304] = {.lex_state = 4}, - [305] = {.lex_state = 19, .external_lex_state = 23}, - [306] = {.lex_state = 19}, - [307] = {.lex_state = 19}, - [308] = {.lex_state = 5}, - [309] = {.lex_state = 5}, - [310] = {.lex_state = 0, .external_lex_state = 25}, - [311] = {.lex_state = 0, .external_lex_state = 26}, - [312] = {.lex_state = 0, .external_lex_state = 24}, - [313] = {.lex_state = 1, .external_lex_state = 19}, - [314] = {.lex_state = 19, .external_lex_state = 15}, - [315] = {.lex_state = 5}, - [316] = {.lex_state = 5}, + [303] = {.lex_state = 3}, + [304] = {.lex_state = 6}, + [305] = {.lex_state = 4}, + [306] = {.lex_state = 4}, + [307] = {.lex_state = 19, .external_lex_state = 26}, + [308] = {.lex_state = 6}, + [309] = {.lex_state = 4}, + [310] = {.lex_state = 19}, + [311] = {.lex_state = 4}, + [312] = {.lex_state = 19, .external_lex_state = 26}, + [313] = {.lex_state = 1, .external_lex_state = 22}, + [314] = {.lex_state = 19, .external_lex_state = 20}, + [315] = {.lex_state = 1, .external_lex_state = 22}, + [316] = {.lex_state = 19, .external_lex_state = 20}, [317] = {.lex_state = 19, .external_lex_state = 17}, - [318] = {.lex_state = 1, .external_lex_state = 19}, - [319] = {.lex_state = 5}, - [320] = {.lex_state = 5}, - [321] = {.lex_state = 19, .external_lex_state = 17}, - [322] = {.lex_state = 19}, - [323] = {.lex_state = 0, .external_lex_state = 25}, - [324] = {.lex_state = 19, .external_lex_state = 17}, - [325] = {.lex_state = 0, .external_lex_state = 26}, - [326] = {.lex_state = 19, .external_lex_state = 23}, - [327] = {.lex_state = 4}, - [328] = {.lex_state = 19}, - [329] = {.lex_state = 0, .external_lex_state = 24}, - [330] = {.lex_state = 39, .external_lex_state = 27}, - [331] = {.lex_state = 0, .external_lex_state = 25}, - [332] = {.lex_state = 39, .external_lex_state = 27}, - [333] = {.lex_state = 39, .external_lex_state = 27}, - [334] = {.lex_state = 39, .external_lex_state = 27}, - [335] = {.lex_state = 0, .external_lex_state = 28}, - [336] = {.lex_state = 39, .external_lex_state = 27}, - [337] = {.lex_state = 39, .external_lex_state = 27}, - [338] = {.lex_state = 0, .external_lex_state = 28}, - [339] = {.lex_state = 39, .external_lex_state = 27}, - [340] = {.lex_state = 0, .external_lex_state = 28}, - [341] = {.lex_state = 39, .external_lex_state = 27}, - [342] = {.lex_state = 39, .external_lex_state = 27}, - [343] = {.lex_state = 39, .external_lex_state = 27}, - [344] = {.lex_state = 0, .external_lex_state = 28}, - [345] = {.lex_state = 39, .external_lex_state = 27}, - [346] = {.lex_state = 0, .external_lex_state = 28}, - [347] = {.lex_state = 0, .external_lex_state = 26}, - [348] = {.lex_state = 39, .external_lex_state = 27}, - [349] = {.lex_state = 39, .external_lex_state = 27}, - [350] = {.lex_state = 39, .external_lex_state = 27}, - [351] = {.lex_state = 0, .external_lex_state = 28}, - [352] = {.lex_state = 39, .external_lex_state = 27}, - [353] = {.lex_state = 0, .external_lex_state = 29}, - [354] = {.lex_state = 0, .external_lex_state = 29}, - [355] = {.lex_state = 0, .external_lex_state = 30}, - [356] = {.lex_state = 0, .external_lex_state = 29}, - [357] = {.lex_state = 0, .external_lex_state = 30}, - [358] = {.lex_state = 0, .external_lex_state = 29}, - [359] = {.lex_state = 0, .external_lex_state = 31}, - [360] = {.lex_state = 0, .external_lex_state = 31}, - [361] = {.lex_state = 0, .external_lex_state = 31}, - [362] = {.lex_state = 0, .external_lex_state = 31}, - [363] = {.lex_state = 0, .external_lex_state = 30}, - [364] = {.lex_state = 0, .external_lex_state = 31}, - [365] = {.lex_state = 0, .external_lex_state = 30}, - [366] = {.lex_state = 39, .external_lex_state = 27}, - [367] = {.lex_state = 0, .external_lex_state = 30}, - [368] = {.lex_state = 0, .external_lex_state = 29}, - [369] = {.lex_state = 39, .external_lex_state = 27}, - [370] = {.lex_state = 0, .external_lex_state = 30}, + [318] = {.lex_state = 19, .external_lex_state = 26}, + [319] = {.lex_state = 19, .external_lex_state = 20}, + [320] = {.lex_state = 6}, + [321] = {.lex_state = 3}, + [322] = {.lex_state = 0, .external_lex_state = 27}, + [323] = {.lex_state = 0, .external_lex_state = 21}, + [324] = {.lex_state = 0, .external_lex_state = 21}, + [325] = {.lex_state = 0, .external_lex_state = 27}, + [326] = {.lex_state = 0, .external_lex_state = 21}, + [327] = {.lex_state = 39, .external_lex_state = 28}, + [328] = {.lex_state = 0, .external_lex_state = 27}, + [329] = {.lex_state = 39, .external_lex_state = 28}, + [330] = {.lex_state = 39, .external_lex_state = 28}, + [331] = {.lex_state = 39, .external_lex_state = 28}, + [332] = {.lex_state = 0, .external_lex_state = 27}, + [333] = {.lex_state = 39, .external_lex_state = 28}, + [334] = {.lex_state = 39, .external_lex_state = 28}, + [335] = {.lex_state = 0, .external_lex_state = 27}, + [336] = {.lex_state = 39, .external_lex_state = 28}, + [337] = {.lex_state = 39, .external_lex_state = 28}, + [338] = {.lex_state = 39, .external_lex_state = 28}, + [339] = {.lex_state = 0, .external_lex_state = 27}, + [340] = {.lex_state = 39, .external_lex_state = 28}, + [341] = {.lex_state = 39, .external_lex_state = 28}, + [342] = {.lex_state = 39, .external_lex_state = 28}, + [343] = {.lex_state = 0, .external_lex_state = 21}, + [344] = {.lex_state = 39, .external_lex_state = 28}, + [345] = {.lex_state = 39, .external_lex_state = 28}, + [346] = {.lex_state = 39, .external_lex_state = 28}, + [347] = {.lex_state = 0, .external_lex_state = 21}, + [348] = {.lex_state = 0, .external_lex_state = 21}, + [349] = {.lex_state = 0, .external_lex_state = 21}, + [350] = {.lex_state = 0, .external_lex_state = 29}, + [351] = {.lex_state = 0, .external_lex_state = 30}, + [352] = {.lex_state = 0, .external_lex_state = 23}, + [353] = {.lex_state = 0, .external_lex_state = 31}, + [354] = {.lex_state = 0, .external_lex_state = 30}, + [355] = {.lex_state = 0, .external_lex_state = 29}, + [356] = {.lex_state = 0, .external_lex_state = 31}, + [357] = {.lex_state = 0, .external_lex_state = 24}, + [358] = {.lex_state = 39, .external_lex_state = 28}, + [359] = {.lex_state = 0, .external_lex_state = 24}, + [360] = {.lex_state = 0, .external_lex_state = 30}, + [361] = {.lex_state = 0, .external_lex_state = 24}, + [362] = {.lex_state = 0, .external_lex_state = 24}, + [363] = {.lex_state = 0, .external_lex_state = 24}, + [364] = {.lex_state = 0, .external_lex_state = 30}, + [365] = {.lex_state = 0, .external_lex_state = 29}, + [366] = {.lex_state = 0, .external_lex_state = 30}, + [367] = {.lex_state = 0, .external_lex_state = 23}, + [368] = {.lex_state = 0, .external_lex_state = 31}, + [369] = {.lex_state = 0, .external_lex_state = 23}, + [370] = {.lex_state = 0, .external_lex_state = 23}, [371] = {.lex_state = 0, .external_lex_state = 29}, [372] = {.lex_state = 0, .external_lex_state = 31}, - [373] = {.lex_state = 5}, - [374] = {.lex_state = 5}, - [375] = {.lex_state = 0, .external_lex_state = 32}, - [376] = {.lex_state = 5}, - [377] = {.lex_state = 5}, - [378] = {.lex_state = 5}, - [379] = {.lex_state = 0, .external_lex_state = 32}, - [380] = {.lex_state = 0, .external_lex_state = 32}, - [381] = {.lex_state = 0, .external_lex_state = 32}, - [382] = {.lex_state = 0, .external_lex_state = 32}, - [383] = {.lex_state = 5}, - [384] = {.lex_state = 0, .external_lex_state = 33}, - [385] = {.lex_state = 0, .external_lex_state = 33}, - [386] = {.lex_state = 0, .external_lex_state = 32}, - [387] = {.lex_state = 0, .external_lex_state = 32}, + [373] = {.lex_state = 0, .external_lex_state = 30}, + [374] = {.lex_state = 0, .external_lex_state = 29}, + [375] = {.lex_state = 0, .external_lex_state = 31}, + [376] = {.lex_state = 0, .external_lex_state = 23}, + [377] = {.lex_state = 0, .external_lex_state = 23}, + [378] = {.lex_state = 0, .external_lex_state = 24}, + [379] = {.lex_state = 0, .external_lex_state = 23}, + [380] = {.lex_state = 39, .external_lex_state = 28}, + [381] = {.lex_state = 0, .external_lex_state = 29}, + [382] = {.lex_state = 0, .external_lex_state = 24}, + [383] = {.lex_state = 0, .external_lex_state = 31}, + [384] = {.lex_state = 0, .external_lex_state = 32}, + [385] = {.lex_state = 4}, + [386] = {.lex_state = 0, .external_lex_state = 33}, + [387] = {.lex_state = 4}, [388] = {.lex_state = 0, .external_lex_state = 32}, - [389] = {.lex_state = 0, .external_lex_state = 32}, + [389] = {.lex_state = 4}, [390] = {.lex_state = 0, .external_lex_state = 32}, [391] = {.lex_state = 0, .external_lex_state = 32}, [392] = {.lex_state = 0, .external_lex_state = 32}, [393] = {.lex_state = 0, .external_lex_state = 32}, - [394] = {.lex_state = 0, .external_lex_state = 32}, - [395] = {.lex_state = 0, .external_lex_state = 32}, - [396] = {.lex_state = 0, .external_lex_state = 32}, - [397] = {.lex_state = 0, .external_lex_state = 32}, + [394] = {.lex_state = 4}, + [395] = {.lex_state = 4}, + [396] = {.lex_state = 0, .external_lex_state = 33}, + [397] = {.lex_state = 0, .external_lex_state = 33}, [398] = {.lex_state = 0, .external_lex_state = 32}, [399] = {.lex_state = 0, .external_lex_state = 32}, [400] = {.lex_state = 0, .external_lex_state = 32}, @@ -3933,7 +3868,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [403] = {.lex_state = 0, .external_lex_state = 32}, [404] = {.lex_state = 0, .external_lex_state = 32}, [405] = {.lex_state = 0, .external_lex_state = 32}, - [406] = {.lex_state = 0, .external_lex_state = 32}, + [406] = {.lex_state = 0, .external_lex_state = 33}, [407] = {.lex_state = 0, .external_lex_state = 32}, [408] = {.lex_state = 0, .external_lex_state = 32}, [409] = {.lex_state = 0, .external_lex_state = 32}, @@ -3941,209 +3876,209 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [411] = {.lex_state = 0, .external_lex_state = 32}, [412] = {.lex_state = 0, .external_lex_state = 32}, [413] = {.lex_state = 0, .external_lex_state = 32}, - [414] = {.lex_state = 0, .external_lex_state = 33}, + [414] = {.lex_state = 0, .external_lex_state = 32}, [415] = {.lex_state = 0, .external_lex_state = 32}, [416] = {.lex_state = 0, .external_lex_state = 32}, - [417] = {.lex_state = 5}, - [418] = {.lex_state = 0, .external_lex_state = 24}, - [419] = {.lex_state = 0, .external_lex_state = 33}, - [420] = {.lex_state = 0, .external_lex_state = 33}, + [417] = {.lex_state = 0, .external_lex_state = 32}, + [418] = {.lex_state = 0, .external_lex_state = 32}, + [419] = {.lex_state = 0, .external_lex_state = 32}, + [420] = {.lex_state = 0, .external_lex_state = 32}, [421] = {.lex_state = 0, .external_lex_state = 32}, - [422] = {.lex_state = 0, .external_lex_state = 24}, - [423] = {.lex_state = 0, .external_lex_state = 24}, - [424] = {.lex_state = 0, .external_lex_state = 32}, - [425] = {.lex_state = 0, .external_lex_state = 24}, - [426] = {.lex_state = 0, .external_lex_state = 24}, - [427] = {.lex_state = 0, .external_lex_state = 24}, + [422] = {.lex_state = 0, .external_lex_state = 32}, + [423] = {.lex_state = 0, .external_lex_state = 32}, + [424] = {.lex_state = 0, .external_lex_state = 33}, + [425] = {.lex_state = 0, .external_lex_state = 32}, + [426] = {.lex_state = 4}, + [427] = {.lex_state = 0, .external_lex_state = 32}, [428] = {.lex_state = 0, .external_lex_state = 32}, - [429] = {.lex_state = 0, .external_lex_state = 24}, - [430] = {.lex_state = 0, .external_lex_state = 32}, - [431] = {.lex_state = 0, .external_lex_state = 32}, - [432] = {.lex_state = 0, .external_lex_state = 32}, + [429] = {.lex_state = 0, .external_lex_state = 33}, + [430] = {.lex_state = 0, .external_lex_state = 33}, + [431] = {.lex_state = 4}, + [432] = {.lex_state = 0, .external_lex_state = 33}, [433] = {.lex_state = 0, .external_lex_state = 33}, - [434] = {.lex_state = 0, .external_lex_state = 33}, - [435] = {.lex_state = 0, .external_lex_state = 33}, - [436] = {.lex_state = 5}, - [437] = {.lex_state = 0, .external_lex_state = 32}, - [438] = {.lex_state = 5}, - [439] = {.lex_state = 0, .external_lex_state = 33}, - [440] = {.lex_state = 0, .external_lex_state = 33}, - [441] = {.lex_state = 0, .external_lex_state = 33}, - [442] = {.lex_state = 5}, - [443] = {.lex_state = 0, .external_lex_state = 25}, - [444] = {.lex_state = 0, .external_lex_state = 26}, - [445] = {.lex_state = 0, .external_lex_state = 26}, - [446] = {.lex_state = 0, .external_lex_state = 26}, - [447] = {.lex_state = 0, .external_lex_state = 26}, - [448] = {.lex_state = 0, .external_lex_state = 27}, - [449] = {.lex_state = 0, .external_lex_state = 27}, - [450] = {.lex_state = 0, .external_lex_state = 26}, - [451] = {.lex_state = 0, .external_lex_state = 27}, - [452] = {.lex_state = 0, .external_lex_state = 26}, - [453] = {.lex_state = 0, .external_lex_state = 25}, - [454] = {.lex_state = 0, .external_lex_state = 25}, - [455] = {.lex_state = 0, .external_lex_state = 26}, - [456] = {.lex_state = 0, .external_lex_state = 34}, - [457] = {.lex_state = 0, .external_lex_state = 25}, - [458] = {.lex_state = 0, .external_lex_state = 25}, - [459] = {.lex_state = 0, .external_lex_state = 25}, - [460] = {.lex_state = 0, .external_lex_state = 25}, - [461] = {.lex_state = 0, .external_lex_state = 35}, - [462] = {.lex_state = 7, .external_lex_state = 22}, - [463] = {.lex_state = 39}, - [464] = {.lex_state = 7, .external_lex_state = 22}, - [465] = {.lex_state = 0, .external_lex_state = 36}, - [466] = {.lex_state = 8}, - [467] = {.lex_state = 0, .external_lex_state = 37}, - [468] = {.lex_state = 39, .external_lex_state = 38}, - [469] = {.lex_state = 39}, - [470] = {.lex_state = 0, .external_lex_state = 39}, - [471] = {.lex_state = 0, .external_lex_state = 40}, - [472] = {.lex_state = 0, .external_lex_state = 39}, - [473] = {.lex_state = 0, .external_lex_state = 39}, - [474] = {.lex_state = 0, .external_lex_state = 40}, - [475] = {.lex_state = 0, .external_lex_state = 40}, - [476] = {.lex_state = 0, .external_lex_state = 40}, - [477] = {.lex_state = 0, .external_lex_state = 39}, - [478] = {.lex_state = 0, .external_lex_state = 40}, - [479] = {.lex_state = 0, .external_lex_state = 40}, - [480] = {.lex_state = 0, .external_lex_state = 37}, - [481] = {.lex_state = 8}, - [482] = {.lex_state = 8}, - [483] = {.lex_state = 0, .external_lex_state = 41}, - [484] = {.lex_state = 0, .external_lex_state = 42}, - [485] = {.lex_state = 0, .external_lex_state = 43}, - [486] = {.lex_state = 0, .external_lex_state = 44}, - [487] = {.lex_state = 0, .external_lex_state = 45}, - [488] = {.lex_state = 0, .external_lex_state = 46}, - [489] = {.lex_state = 0, .external_lex_state = 47}, - [490] = {.lex_state = 0, .external_lex_state = 48}, - [491] = {.lex_state = 0, .external_lex_state = 49}, - [492] = {.lex_state = 0, .external_lex_state = 35}, - [493] = {.lex_state = 0, .external_lex_state = 50}, - [494] = {.lex_state = 0, .external_lex_state = 51}, - [495] = {.lex_state = 0, .external_lex_state = 52}, - [496] = {.lex_state = 0, .external_lex_state = 53}, - [497] = {.lex_state = 0, .external_lex_state = 54}, - [498] = {.lex_state = 39, .external_lex_state = 38}, - [499] = {.lex_state = 0, .external_lex_state = 41}, - [500] = {.lex_state = 0, .external_lex_state = 42}, - [501] = {.lex_state = 0, .external_lex_state = 43}, - [502] = {.lex_state = 0, .external_lex_state = 44}, - [503] = {.lex_state = 0, .external_lex_state = 45}, - [504] = {.lex_state = 0, .external_lex_state = 46}, - [505] = {.lex_state = 0, .external_lex_state = 47}, - [506] = {.lex_state = 0, .external_lex_state = 48}, - [507] = {.lex_state = 0, .external_lex_state = 49}, - [508] = {.lex_state = 0, .external_lex_state = 35}, - [509] = {.lex_state = 0, .external_lex_state = 50}, - [510] = {.lex_state = 0, .external_lex_state = 51}, - [511] = {.lex_state = 0, .external_lex_state = 52}, - [512] = {.lex_state = 0, .external_lex_state = 55}, - [513] = {.lex_state = 0, .external_lex_state = 53}, - [514] = {.lex_state = 0, .external_lex_state = 54}, - [515] = {.lex_state = 0, .external_lex_state = 41}, - [516] = {.lex_state = 0, .external_lex_state = 42}, - [517] = {.lex_state = 0, .external_lex_state = 43}, - [518] = {.lex_state = 0, .external_lex_state = 44}, - [519] = {.lex_state = 0, .external_lex_state = 45}, - [520] = {.lex_state = 0, .external_lex_state = 46}, - [521] = {.lex_state = 0, .external_lex_state = 47}, - [522] = {.lex_state = 0, .external_lex_state = 48}, - [523] = {.lex_state = 0, .external_lex_state = 49}, - [524] = {.lex_state = 0, .external_lex_state = 35}, - [525] = {.lex_state = 0, .external_lex_state = 50}, - [526] = {.lex_state = 0, .external_lex_state = 51}, - [527] = {.lex_state = 0, .external_lex_state = 52}, - [528] = {.lex_state = 0, .external_lex_state = 55}, - [529] = {.lex_state = 0, .external_lex_state = 53}, - [530] = {.lex_state = 0, .external_lex_state = 54}, - [531] = {.lex_state = 0, .external_lex_state = 41}, - [532] = {.lex_state = 0, .external_lex_state = 42}, - [533] = {.lex_state = 0, .external_lex_state = 41}, - [534] = {.lex_state = 0, .external_lex_state = 42}, - [535] = {.lex_state = 0, .external_lex_state = 43}, - [536] = {.lex_state = 0, .external_lex_state = 44}, - [537] = {.lex_state = 0, .external_lex_state = 45}, - [538] = {.lex_state = 0, .external_lex_state = 46}, - [539] = {.lex_state = 0, .external_lex_state = 47}, - [540] = {.lex_state = 0, .external_lex_state = 48}, - [541] = {.lex_state = 0, .external_lex_state = 49}, - [542] = {.lex_state = 0, .external_lex_state = 35}, - [543] = {.lex_state = 0, .external_lex_state = 50}, - [544] = {.lex_state = 0, .external_lex_state = 51}, - [545] = {.lex_state = 0, .external_lex_state = 52}, - [546] = {.lex_state = 0, .external_lex_state = 55}, + [434] = {.lex_state = 0, .external_lex_state = 32}, + [435] = {.lex_state = 0, .external_lex_state = 34}, + [436] = {.lex_state = 0, .external_lex_state = 34}, + [437] = {.lex_state = 0, .external_lex_state = 34}, + [438] = {.lex_state = 0, .external_lex_state = 32}, + [439] = {.lex_state = 0, .external_lex_state = 32}, + [440] = {.lex_state = 0, .external_lex_state = 34}, + [441] = {.lex_state = 4}, + [442] = {.lex_state = 0, .external_lex_state = 32}, + [443] = {.lex_state = 4}, + [444] = {.lex_state = 0, .external_lex_state = 34}, + [445] = {.lex_state = 0, .external_lex_state = 32}, + [446] = {.lex_state = 0, .external_lex_state = 32}, + [447] = {.lex_state = 0, .external_lex_state = 32}, + [448] = {.lex_state = 4}, + [449] = {.lex_state = 0, .external_lex_state = 33}, + [450] = {.lex_state = 0, .external_lex_state = 33}, + [451] = {.lex_state = 0, .external_lex_state = 32}, + [452] = {.lex_state = 0, .external_lex_state = 28}, + [453] = {.lex_state = 0, .external_lex_state = 35}, + [454] = {.lex_state = 0, .external_lex_state = 36}, + [455] = {.lex_state = 0, .external_lex_state = 36}, + [456] = {.lex_state = 0, .external_lex_state = 28}, + [457] = {.lex_state = 0, .external_lex_state = 28}, + [458] = {.lex_state = 0, .external_lex_state = 37}, + [459] = {.lex_state = 39}, + [460] = {.lex_state = 0, .external_lex_state = 38}, + [461] = {.lex_state = 7, .external_lex_state = 25}, + [462] = {.lex_state = 8}, + [463] = {.lex_state = 0, .external_lex_state = 39}, + [464] = {.lex_state = 39, .external_lex_state = 40}, + [465] = {.lex_state = 39}, + [466] = {.lex_state = 0, .external_lex_state = 41}, + [467] = {.lex_state = 0, .external_lex_state = 41}, + [468] = {.lex_state = 0, .external_lex_state = 41}, + [469] = {.lex_state = 0, .external_lex_state = 37}, + [470] = {.lex_state = 0, .external_lex_state = 37}, + [471] = {.lex_state = 0, .external_lex_state = 37}, + [472] = {.lex_state = 0, .external_lex_state = 41}, + [473] = {.lex_state = 0, .external_lex_state = 37}, + [474] = {.lex_state = 0, .external_lex_state = 37}, + [475] = {.lex_state = 0, .external_lex_state = 39}, + [476] = {.lex_state = 0, .external_lex_state = 36}, + [477] = {.lex_state = 8}, + [478] = {.lex_state = 8}, + [479] = {.lex_state = 0, .external_lex_state = 42}, + [480] = {.lex_state = 0, .external_lex_state = 43}, + [481] = {.lex_state = 0, .external_lex_state = 44}, + [482] = {.lex_state = 0, .external_lex_state = 45}, + [483] = {.lex_state = 0, .external_lex_state = 46}, + [484] = {.lex_state = 0, .external_lex_state = 47}, + [485] = {.lex_state = 0, .external_lex_state = 48}, + [486] = {.lex_state = 0, .external_lex_state = 49}, + [487] = {.lex_state = 0, .external_lex_state = 50}, + [488] = {.lex_state = 0, .external_lex_state = 51}, + [489] = {.lex_state = 0, .external_lex_state = 52}, + [490] = {.lex_state = 0, .external_lex_state = 53}, + [491] = {.lex_state = 0, .external_lex_state = 54}, + [492] = {.lex_state = 0, .external_lex_state = 55}, + [493] = {.lex_state = 0, .external_lex_state = 56}, + [494] = {.lex_state = 0, .external_lex_state = 57}, + [495] = {.lex_state = 39, .external_lex_state = 40}, + [496] = {.lex_state = 0, .external_lex_state = 42}, + [497] = {.lex_state = 0, .external_lex_state = 43}, + [498] = {.lex_state = 0, .external_lex_state = 44}, + [499] = {.lex_state = 0, .external_lex_state = 45}, + [500] = {.lex_state = 0, .external_lex_state = 46}, + [501] = {.lex_state = 0, .external_lex_state = 47}, + [502] = {.lex_state = 0, .external_lex_state = 48}, + [503] = {.lex_state = 0, .external_lex_state = 49}, + [504] = {.lex_state = 0, .external_lex_state = 50}, + [505] = {.lex_state = 0, .external_lex_state = 51}, + [506] = {.lex_state = 0, .external_lex_state = 52}, + [507] = {.lex_state = 0, .external_lex_state = 53}, + [508] = {.lex_state = 0, .external_lex_state = 54}, + [509] = {.lex_state = 0, .external_lex_state = 55}, + [510] = {.lex_state = 0, .external_lex_state = 56}, + [511] = {.lex_state = 0, .external_lex_state = 57}, + [512] = {.lex_state = 0, .external_lex_state = 42}, + [513] = {.lex_state = 0, .external_lex_state = 43}, + [514] = {.lex_state = 0, .external_lex_state = 44}, + [515] = {.lex_state = 0, .external_lex_state = 45}, + [516] = {.lex_state = 0, .external_lex_state = 46}, + [517] = {.lex_state = 0, .external_lex_state = 47}, + [518] = {.lex_state = 0, .external_lex_state = 48}, + [519] = {.lex_state = 0, .external_lex_state = 49}, + [520] = {.lex_state = 0, .external_lex_state = 50}, + [521] = {.lex_state = 0, .external_lex_state = 51}, + [522] = {.lex_state = 7, .external_lex_state = 25}, + [523] = {.lex_state = 0, .external_lex_state = 53}, + [524] = {.lex_state = 0, .external_lex_state = 54}, + [525] = {.lex_state = 0, .external_lex_state = 55}, + [526] = {.lex_state = 0, .external_lex_state = 56}, + [527] = {.lex_state = 0, .external_lex_state = 57}, + [528] = {.lex_state = 0, .external_lex_state = 42}, + [529] = {.lex_state = 0, .external_lex_state = 42}, + [530] = {.lex_state = 0, .external_lex_state = 43}, + [531] = {.lex_state = 0, .external_lex_state = 43}, + [532] = {.lex_state = 0, .external_lex_state = 44}, + [533] = {.lex_state = 0, .external_lex_state = 44}, + [534] = {.lex_state = 0, .external_lex_state = 45}, + [535] = {.lex_state = 0, .external_lex_state = 45}, + [536] = {.lex_state = 0, .external_lex_state = 42}, + [537] = {.lex_state = 0, .external_lex_state = 43}, + [538] = {.lex_state = 0, .external_lex_state = 44}, + [539] = {.lex_state = 0, .external_lex_state = 45}, + [540] = {.lex_state = 0, .external_lex_state = 46}, + [541] = {.lex_state = 0, .external_lex_state = 47}, + [542] = {.lex_state = 0, .external_lex_state = 48}, + [543] = {.lex_state = 0, .external_lex_state = 49}, + [544] = {.lex_state = 0, .external_lex_state = 50}, + [545] = {.lex_state = 0, .external_lex_state = 51}, + [546] = {.lex_state = 0, .external_lex_state = 52}, [547] = {.lex_state = 0, .external_lex_state = 53}, [548] = {.lex_state = 0, .external_lex_state = 54}, - [549] = {.lex_state = 0, .external_lex_state = 43}, - [550] = {.lex_state = 0, .external_lex_state = 41}, - [551] = {.lex_state = 0, .external_lex_state = 44}, - [552] = {.lex_state = 0, .external_lex_state = 42}, - [553] = {.lex_state = 0, .external_lex_state = 45}, - [554] = {.lex_state = 0, .external_lex_state = 43}, - [555] = {.lex_state = 0, .external_lex_state = 46}, - [556] = {.lex_state = 0, .external_lex_state = 44}, - [557] = {.lex_state = 0, .external_lex_state = 47}, - [558] = {.lex_state = 0, .external_lex_state = 45}, - [559] = {.lex_state = 0, .external_lex_state = 48}, - [560] = {.lex_state = 0, .external_lex_state = 46}, - [561] = {.lex_state = 0, .external_lex_state = 49}, - [562] = {.lex_state = 0, .external_lex_state = 47}, - [563] = {.lex_state = 0, .external_lex_state = 48}, - [564] = {.lex_state = 0, .external_lex_state = 50}, - [565] = {.lex_state = 0, .external_lex_state = 49}, - [566] = {.lex_state = 0, .external_lex_state = 51}, - [567] = {.lex_state = 0, .external_lex_state = 35}, - [568] = {.lex_state = 0, .external_lex_state = 52}, - [569] = {.lex_state = 0, .external_lex_state = 50}, - [570] = {.lex_state = 0, .external_lex_state = 55}, - [571] = {.lex_state = 0, .external_lex_state = 51}, - [572] = {.lex_state = 0, .external_lex_state = 53}, - [573] = {.lex_state = 0, .external_lex_state = 52}, - [574] = {.lex_state = 7, .external_lex_state = 22}, - [575] = {.lex_state = 7, .external_lex_state = 22}, - [576] = {.lex_state = 0, .external_lex_state = 54}, - [577] = {.lex_state = 7, .external_lex_state = 22}, - [578] = {.lex_state = 0, .external_lex_state = 55}, - [579] = {.lex_state = 0, .external_lex_state = 53}, - [580] = {.lex_state = 0, .external_lex_state = 54}, - [581] = {.lex_state = 0, .external_lex_state = 55}, - [582] = {.lex_state = 0, .external_lex_state = 32}, - [583] = {.lex_state = 0, .external_lex_state = 17}, - [584] = {.lex_state = 9}, - [585] = {.lex_state = 0, .external_lex_state = 30}, - [586] = {.lex_state = 0, .external_lex_state = 56}, - [587] = {.lex_state = 0, .external_lex_state = 31}, - [588] = {.lex_state = 0, .external_lex_state = 17}, - [589] = {.lex_state = 39, .external_lex_state = 27}, - [590] = {.lex_state = 0, .external_lex_state = 29}, - [591] = {.lex_state = 0, .external_lex_state = 28}, - [592] = {.lex_state = 0, .external_lex_state = 28}, - [593] = {.lex_state = 0, .external_lex_state = 32}, - [594] = {.lex_state = 39, .external_lex_state = 27}, - [595] = {.lex_state = 0, .external_lex_state = 31}, - [596] = {.lex_state = 0, .external_lex_state = 15}, - [597] = {.lex_state = 0, .external_lex_state = 15}, - [598] = {.lex_state = 0, .external_lex_state = 57}, - [599] = {.lex_state = 0, .external_lex_state = 58}, - [600] = {.lex_state = 0, .external_lex_state = 57}, - [601] = {.lex_state = 0, .external_lex_state = 30}, + [549] = {.lex_state = 0, .external_lex_state = 55}, + [550] = {.lex_state = 0, .external_lex_state = 56}, + [551] = {.lex_state = 0, .external_lex_state = 57}, + [552] = {.lex_state = 0, .external_lex_state = 46}, + [553] = {.lex_state = 0, .external_lex_state = 46}, + [554] = {.lex_state = 0, .external_lex_state = 47}, + [555] = {.lex_state = 0, .external_lex_state = 47}, + [556] = {.lex_state = 0, .external_lex_state = 48}, + [557] = {.lex_state = 0, .external_lex_state = 48}, + [558] = {.lex_state = 0, .external_lex_state = 49}, + [559] = {.lex_state = 0, .external_lex_state = 49}, + [560] = {.lex_state = 0, .external_lex_state = 50}, + [561] = {.lex_state = 0, .external_lex_state = 50}, + [562] = {.lex_state = 0, .external_lex_state = 51}, + [563] = {.lex_state = 0, .external_lex_state = 51}, + [564] = {.lex_state = 0, .external_lex_state = 52}, + [565] = {.lex_state = 0, .external_lex_state = 52}, + [566] = {.lex_state = 0, .external_lex_state = 53}, + [567] = {.lex_state = 0, .external_lex_state = 53}, + [568] = {.lex_state = 0, .external_lex_state = 54}, + [569] = {.lex_state = 0, .external_lex_state = 54}, + [570] = {.lex_state = 7, .external_lex_state = 25}, + [571] = {.lex_state = 0, .external_lex_state = 55}, + [572] = {.lex_state = 0, .external_lex_state = 55}, + [573] = {.lex_state = 0, .external_lex_state = 56}, + [574] = {.lex_state = 7, .external_lex_state = 25}, + [575] = {.lex_state = 0, .external_lex_state = 56}, + [576] = {.lex_state = 7, .external_lex_state = 25}, + [577] = {.lex_state = 0, .external_lex_state = 57}, + [578] = {.lex_state = 0, .external_lex_state = 57}, + [579] = {.lex_state = 0, .external_lex_state = 52}, + [580] = {.lex_state = 0, .external_lex_state = 58}, + [581] = {.lex_state = 9}, + [582] = {.lex_state = 0, .external_lex_state = 59}, + [583] = {.lex_state = 0, .external_lex_state = 32}, + [584] = {.lex_state = 0, .external_lex_state = 30}, + [585] = {.lex_state = 0, .external_lex_state = 31}, + [586] = {.lex_state = 0, .external_lex_state = 32}, + [587] = {.lex_state = 0, .external_lex_state = 29}, + [588] = {.lex_state = 0, .external_lex_state = 27}, + [589] = {.lex_state = 0, .external_lex_state = 27}, + [590] = {.lex_state = 39, .external_lex_state = 28}, + [591] = {.lex_state = 0, .external_lex_state = 30}, + [592] = {.lex_state = 0, .external_lex_state = 32}, + [593] = {.lex_state = 0, .external_lex_state = 17}, + [594] = {.lex_state = 0, .external_lex_state = 17}, + [595] = {.lex_state = 0, .external_lex_state = 60}, + [596] = {.lex_state = 0, .external_lex_state = 61}, + [597] = {.lex_state = 0, .external_lex_state = 62}, + [598] = {.lex_state = 0, .external_lex_state = 30}, + [599] = {.lex_state = 0, .external_lex_state = 32}, + [600] = {.lex_state = 0, .external_lex_state = 32}, + [601] = {.lex_state = 0, .external_lex_state = 63}, [602] = {.lex_state = 0, .external_lex_state = 32}, [603] = {.lex_state = 0, .external_lex_state = 32}, - [604] = {.lex_state = 0, .external_lex_state = 59}, + [604] = {.lex_state = 0, .external_lex_state = 32}, [605] = {.lex_state = 0, .external_lex_state = 32}, [606] = {.lex_state = 0, .external_lex_state = 32}, [607] = {.lex_state = 0, .external_lex_state = 32}, [608] = {.lex_state = 0, .external_lex_state = 32}, - [609] = {.lex_state = 0, .external_lex_state = 32}, - [610] = {.lex_state = 0, .external_lex_state = 32}, + [609] = {.lex_state = 0, .external_lex_state = 17}, + [610] = {.lex_state = 0, .external_lex_state = 17}, [611] = {.lex_state = 0, .external_lex_state = 32}, - [612] = {.lex_state = 0, .external_lex_state = 30}, + [612] = {.lex_state = 0, .external_lex_state = 32}, [613] = {.lex_state = 0, .external_lex_state = 32}, - [614] = {.lex_state = 0, .external_lex_state = 15}, - [615] = {.lex_state = 0, .external_lex_state = 15}, - [616] = {.lex_state = 0, .external_lex_state = 15}, + [614] = {.lex_state = 0, .external_lex_state = 32}, + [615] = {.lex_state = 0, .external_lex_state = 32}, + [616] = {.lex_state = 0, .external_lex_state = 32}, [617] = {.lex_state = 0, .external_lex_state = 32}, [618] = {.lex_state = 0, .external_lex_state = 32}, [619] = {.lex_state = 0, .external_lex_state = 32}, @@ -4155,571 +4090,536 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [625] = {.lex_state = 0, .external_lex_state = 32}, [626] = {.lex_state = 0, .external_lex_state = 32}, [627] = {.lex_state = 0, .external_lex_state = 32}, - [628] = {.lex_state = 0, .external_lex_state = 32}, - [629] = {.lex_state = 0, .external_lex_state = 32}, - [630] = {.lex_state = 0, .external_lex_state = 32}, + [628] = {.lex_state = 0, .external_lex_state = 63}, + [629] = {.lex_state = 0, .external_lex_state = 17}, + [630] = {.lex_state = 4}, [631] = {.lex_state = 0, .external_lex_state = 32}, - [632] = {.lex_state = 0, .external_lex_state = 59}, - [633] = {.lex_state = 5}, - [634] = {.lex_state = 0, .external_lex_state = 32}, + [632] = {.lex_state = 0, .external_lex_state = 32}, + [633] = {.lex_state = 0, .external_lex_state = 32}, + [634] = {.lex_state = 0, .external_lex_state = 29}, [635] = {.lex_state = 0, .external_lex_state = 32}, - [636] = {.lex_state = 0, .external_lex_state = 30}, - [637] = {.lex_state = 0, .external_lex_state = 29}, - [638] = {.lex_state = 0, .external_lex_state = 32}, + [636] = {.lex_state = 0, .external_lex_state = 32}, + [637] = {.lex_state = 0, .external_lex_state = 62}, + [638] = {.lex_state = 0, .external_lex_state = 62}, [639] = {.lex_state = 0, .external_lex_state = 32}, - [640] = {.lex_state = 0, .external_lex_state = 32}, - [641] = {.lex_state = 0, .external_lex_state = 57}, - [642] = {.lex_state = 8}, + [640] = {.lex_state = 0, .external_lex_state = 64}, + [641] = {.lex_state = 0, .external_lex_state = 60}, + [642] = {.lex_state = 0, .external_lex_state = 61}, [643] = {.lex_state = 0, .external_lex_state = 32}, - [644] = {.lex_state = 0, .external_lex_state = 60}, - [645] = {.lex_state = 0, .external_lex_state = 29}, - [646] = {.lex_state = 0, .external_lex_state = 32}, - [647] = {.lex_state = 0, .external_lex_state = 61}, - [648] = {.lex_state = 0, .external_lex_state = 61}, - [649] = {.lex_state = 0, .external_lex_state = 60}, + [644] = {.lex_state = 0, .external_lex_state = 61}, + [645] = {.lex_state = 0, .external_lex_state = 32}, + [646] = {.lex_state = 0, .external_lex_state = 61}, + [647] = {.lex_state = 0, .external_lex_state = 29}, + [648] = {.lex_state = 0, .external_lex_state = 32}, + [649] = {.lex_state = 0, .external_lex_state = 32}, [650] = {.lex_state = 0, .external_lex_state = 32}, - [651] = {.lex_state = 0, .external_lex_state = 60}, + [651] = {.lex_state = 0, .external_lex_state = 32}, [652] = {.lex_state = 0, .external_lex_state = 32}, - [653] = {.lex_state = 0, .external_lex_state = 60}, - [654] = {.lex_state = 0, .external_lex_state = 29}, + [653] = {.lex_state = 0, .external_lex_state = 32}, + [654] = {.lex_state = 0, .external_lex_state = 32}, [655] = {.lex_state = 0, .external_lex_state = 32}, [656] = {.lex_state = 0, .external_lex_state = 32}, - [657] = {.lex_state = 0, .external_lex_state = 32}, + [657] = {.lex_state = 0, .external_lex_state = 60}, [658] = {.lex_state = 0, .external_lex_state = 32}, [659] = {.lex_state = 0, .external_lex_state = 32}, [660] = {.lex_state = 0, .external_lex_state = 32}, - [661] = {.lex_state = 0, .external_lex_state = 32}, - [662] = {.lex_state = 0, .external_lex_state = 32}, + [661] = {.lex_state = 0, .external_lex_state = 33}, + [662] = {.lex_state = 0, .external_lex_state = 33}, [663] = {.lex_state = 0, .external_lex_state = 32}, - [664] = {.lex_state = 0, .external_lex_state = 32}, - [665] = {.lex_state = 0, .external_lex_state = 61}, - [666] = {.lex_state = 0, .external_lex_state = 32}, - [667] = {.lex_state = 0, .external_lex_state = 32}, - [668] = {.lex_state = 0, .external_lex_state = 32}, - [669] = {.lex_state = 0, .external_lex_state = 32}, - [670] = {.lex_state = 0, .external_lex_state = 62}, - [671] = {.lex_state = 0, .external_lex_state = 31}, - [672] = {.lex_state = 0, .external_lex_state = 33}, - [673] = {.lex_state = 0, .external_lex_state = 33}, - [674] = {.lex_state = 0, .external_lex_state = 62}, - [675] = {.lex_state = 0, .external_lex_state = 63}, - [676] = {.lex_state = 0, .external_lex_state = 63}, - [677] = {.lex_state = 0, .external_lex_state = 60}, - [678] = {.lex_state = 0, .external_lex_state = 60}, - [679] = {.lex_state = 39, .external_lex_state = 17}, - [680] = {.lex_state = 39, .external_lex_state = 17}, - [681] = {.lex_state = 0, .external_lex_state = 64}, - [682] = {.lex_state = 0, .external_lex_state = 64}, - [683] = {.lex_state = 0, .external_lex_state = 65}, - [684] = {.lex_state = 0, .external_lex_state = 65}, - [685] = {.lex_state = 0, .external_lex_state = 28}, - [686] = {.lex_state = 0, .external_lex_state = 28}, - [687] = {.lex_state = 0, .external_lex_state = 66}, - [688] = {.lex_state = 0, .external_lex_state = 58}, - [689] = {.lex_state = 0, .external_lex_state = 30}, - [690] = {.lex_state = 0, .external_lex_state = 56}, - [691] = {.lex_state = 0, .external_lex_state = 28}, - [692] = {.lex_state = 0, .external_lex_state = 31}, - [693] = {.lex_state = 0, .external_lex_state = 29}, - [694] = {.lex_state = 10}, - [695] = {.lex_state = 0, .external_lex_state = 31}, - [696] = {.lex_state = 0, .external_lex_state = 61}, - [697] = {.lex_state = 9, .external_lex_state = 22}, - [698] = {.lex_state = 0, .external_lex_state = 52}, - [699] = {.lex_state = 0, .external_lex_state = 52}, - [700] = {.lex_state = 0, .external_lex_state = 54}, - [701] = {.lex_state = 0, .external_lex_state = 54}, - [702] = {.lex_state = 0, .external_lex_state = 44}, - [703] = {.lex_state = 0, .external_lex_state = 47}, - [704] = {.lex_state = 0, .external_lex_state = 48}, - [705] = {.lex_state = 0, .external_lex_state = 67}, - [706] = {.lex_state = 0, .external_lex_state = 49}, - [707] = {.lex_state = 0, .external_lex_state = 35}, - [708] = {.lex_state = 0, .external_lex_state = 35}, - [709] = {.lex_state = 0, .external_lex_state = 52}, - [710] = {.lex_state = 0, .external_lex_state = 42}, - [711] = {.lex_state = 0, .external_lex_state = 68}, - [712] = {.lex_state = 0, .external_lex_state = 27}, - [713] = {.lex_state = 0, .external_lex_state = 54}, - [714] = {.lex_state = 0, .external_lex_state = 57}, - [715] = {.lex_state = 0, .external_lex_state = 27}, - [716] = {.lex_state = 0, .external_lex_state = 44}, - [717] = {.lex_state = 39}, - [718] = {.lex_state = 0}, - [719] = {.lex_state = 0, .external_lex_state = 68}, - [720] = {.lex_state = 0}, - [721] = {.lex_state = 0, .external_lex_state = 41}, - [722] = {.lex_state = 0, .external_lex_state = 45}, - [723] = {.lex_state = 0, .external_lex_state = 59}, - [724] = {.lex_state = 0, .external_lex_state = 69}, - [725] = {.lex_state = 0, .external_lex_state = 50}, - [726] = {.lex_state = 0, .external_lex_state = 51}, - [727] = {.lex_state = 0}, - [728] = {.lex_state = 0}, - [729] = {.lex_state = 0, .external_lex_state = 67}, - [730] = {.lex_state = 9, .external_lex_state = 22}, - [731] = {.lex_state = 0, .external_lex_state = 15}, - [732] = {.lex_state = 0, .external_lex_state = 27}, - [733] = {.lex_state = 39, .external_lex_state = 38}, - [734] = {.lex_state = 0, .external_lex_state = 27}, - [735] = {.lex_state = 9, .external_lex_state = 22}, - [736] = {.lex_state = 0, .external_lex_state = 52}, - [737] = {.lex_state = 0, .external_lex_state = 27}, + [664] = {.lex_state = 0, .external_lex_state = 65}, + [665] = {.lex_state = 0, .external_lex_state = 65}, + [666] = {.lex_state = 0, .external_lex_state = 61}, + [667] = {.lex_state = 0, .external_lex_state = 61}, + [668] = {.lex_state = 39, .external_lex_state = 20}, + [669] = {.lex_state = 39, .external_lex_state = 20}, + [670] = {.lex_state = 0, .external_lex_state = 66}, + [671] = {.lex_state = 0, .external_lex_state = 66}, + [672] = {.lex_state = 0, .external_lex_state = 67}, + [673] = {.lex_state = 0, .external_lex_state = 31}, + [674] = {.lex_state = 0, .external_lex_state = 67}, + [675] = {.lex_state = 0, .external_lex_state = 27}, + [676] = {.lex_state = 0, .external_lex_state = 27}, + [677] = {.lex_state = 0, .external_lex_state = 68}, + [678] = {.lex_state = 0, .external_lex_state = 59}, + [679] = {.lex_state = 0, .external_lex_state = 64}, + [680] = {.lex_state = 0, .external_lex_state = 27}, + [681] = {.lex_state = 0, .external_lex_state = 30}, + [682] = {.lex_state = 0, .external_lex_state = 31}, + [683] = {.lex_state = 0, .external_lex_state = 29}, + [684] = {.lex_state = 0, .external_lex_state = 31}, + [685] = {.lex_state = 10}, + [686] = {.lex_state = 8}, + [687] = {.lex_state = 0, .external_lex_state = 30}, + [688] = {.lex_state = 0, .external_lex_state = 68}, + [689] = {.lex_state = 39, .external_lex_state = 28}, + [690] = {.lex_state = 0, .external_lex_state = 31}, + [691] = {.lex_state = 0, .external_lex_state = 29}, + [692] = {.lex_state = 0, .external_lex_state = 60}, + [693] = {.lex_state = 0, .external_lex_state = 28}, + [694] = {.lex_state = 0, .external_lex_state = 28}, + [695] = {.lex_state = 0, .external_lex_state = 65}, + [696] = {.lex_state = 0, .external_lex_state = 28}, + [697] = {.lex_state = 0, .external_lex_state = 49}, + [698] = {.lex_state = 0, .external_lex_state = 49}, + [699] = {.lex_state = 0, .external_lex_state = 28}, + [700] = {.lex_state = 4}, + [701] = {.lex_state = 0, .external_lex_state = 52}, + [702] = {.lex_state = 0, .external_lex_state = 52}, + [703] = {.lex_state = 0, .external_lex_state = 44}, + [704] = {.lex_state = 0, .external_lex_state = 55}, + [705] = {.lex_state = 0, .external_lex_state = 55}, + [706] = {.lex_state = 39, .external_lex_state = 20}, + [707] = {.lex_state = 0, .external_lex_state = 28}, + [708] = {.lex_state = 0, .external_lex_state = 44}, + [709] = {.lex_state = 0, .external_lex_state = 44}, + [710] = {.lex_state = 0, .external_lex_state = 66}, + [711] = {.lex_state = 0, .external_lex_state = 28}, + [712] = {.lex_state = 0}, + [713] = {.lex_state = 0, .external_lex_state = 47}, + [714] = {.lex_state = 0, .external_lex_state = 47}, + [715] = {.lex_state = 0, .external_lex_state = 45}, + [716] = {.lex_state = 9, .external_lex_state = 25}, + [717] = {.lex_state = 0}, + [718] = {.lex_state = 0, .external_lex_state = 50}, + [719] = {.lex_state = 0, .external_lex_state = 50}, + [720] = {.lex_state = 0, .external_lex_state = 67}, + [721] = {.lex_state = 0}, + [722] = {.lex_state = 0, .external_lex_state = 53}, + [723] = {.lex_state = 0, .external_lex_state = 53}, + [724] = {.lex_state = 0, .external_lex_state = 56}, + [725] = {.lex_state = 0, .external_lex_state = 56}, + [726] = {.lex_state = 0, .external_lex_state = 45}, + [727] = {.lex_state = 0, .external_lex_state = 45}, + [728] = {.lex_state = 0, .external_lex_state = 48}, + [729] = {.lex_state = 0, .external_lex_state = 48}, + [730] = {.lex_state = 0, .external_lex_state = 51}, + [731] = {.lex_state = 0, .external_lex_state = 51}, + [732] = {.lex_state = 0, .external_lex_state = 54}, + [733] = {.lex_state = 0, .external_lex_state = 54}, + [734] = {.lex_state = 0, .external_lex_state = 57}, + [735] = {.lex_state = 0, .external_lex_state = 57}, + [736] = {.lex_state = 0, .external_lex_state = 69}, + [737] = {.lex_state = 0, .external_lex_state = 70}, [738] = {.lex_state = 0, .external_lex_state = 70}, - [739] = {.lex_state = 0, .external_lex_state = 23}, - [740] = {.lex_state = 5}, - [741] = {.lex_state = 0, .external_lex_state = 67}, - [742] = {.lex_state = 0, .external_lex_state = 55}, - [743] = {.lex_state = 0, .external_lex_state = 53}, - [744] = {.lex_state = 0, .external_lex_state = 57}, - [745] = {.lex_state = 0, .external_lex_state = 27}, - [746] = {.lex_state = 0, .external_lex_state = 27}, - [747] = {.lex_state = 0, .external_lex_state = 27}, - [748] = {.lex_state = 0, .external_lex_state = 27}, - [749] = {.lex_state = 0, .external_lex_state = 27}, - [750] = {.lex_state = 0, .external_lex_state = 27}, - [751] = {.lex_state = 0, .external_lex_state = 27}, - [752] = {.lex_state = 0, .external_lex_state = 27}, - [753] = {.lex_state = 0, .external_lex_state = 27}, - [754] = {.lex_state = 0, .external_lex_state = 27}, - [755] = {.lex_state = 0, .external_lex_state = 27}, - [756] = {.lex_state = 0, .external_lex_state = 27}, - [757] = {.lex_state = 0, .external_lex_state = 27}, - [758] = {.lex_state = 0, .external_lex_state = 27}, - [759] = {.lex_state = 0, .external_lex_state = 27}, - [760] = {.lex_state = 0, .external_lex_state = 69}, - [761] = {.lex_state = 0, .external_lex_state = 27}, - [762] = {.lex_state = 0, .external_lex_state = 54}, - [763] = {.lex_state = 0, .external_lex_state = 27}, - [764] = {.lex_state = 9, .external_lex_state = 22}, - [765] = {.lex_state = 0, .external_lex_state = 41}, - [766] = {.lex_state = 0, .external_lex_state = 27}, - [767] = {.lex_state = 9, .external_lex_state = 22}, - [768] = {.lex_state = 0, .external_lex_state = 67}, - [769] = {.lex_state = 0, .external_lex_state = 67}, - [770] = {.lex_state = 9, .external_lex_state = 22}, - [771] = {.lex_state = 0, .external_lex_state = 23}, - [772] = {.lex_state = 0, .external_lex_state = 27}, - [773] = {.lex_state = 0, .external_lex_state = 67}, - [774] = {.lex_state = 9, .external_lex_state = 22}, - [775] = {.lex_state = 0, .external_lex_state = 67}, - [776] = {.lex_state = 0, .external_lex_state = 27}, - [777] = {.lex_state = 5}, - [778] = {.lex_state = 0, .external_lex_state = 27}, - [779] = {.lex_state = 0, .external_lex_state = 27}, - [780] = {.lex_state = 0, .external_lex_state = 27}, - [781] = {.lex_state = 0, .external_lex_state = 27}, - [782] = {.lex_state = 0, .external_lex_state = 27}, - [783] = {.lex_state = 0, .external_lex_state = 27}, - [784] = {.lex_state = 0, .external_lex_state = 27}, - [785] = {.lex_state = 0, .external_lex_state = 45}, - [786] = {.lex_state = 9, .external_lex_state = 22}, - [787] = {.lex_state = 0}, - [788] = {.lex_state = 0, .external_lex_state = 56}, - [789] = {.lex_state = 0, .external_lex_state = 27}, - [790] = {.lex_state = 0, .external_lex_state = 27}, - [791] = {.lex_state = 0, .external_lex_state = 27}, - [792] = {.lex_state = 0, .external_lex_state = 27}, - [793] = {.lex_state = 0, .external_lex_state = 69}, - [794] = {.lex_state = 9, .external_lex_state = 22}, - [795] = {.lex_state = 0, .external_lex_state = 27}, - [796] = {.lex_state = 0, .external_lex_state = 43}, - [797] = {.lex_state = 0, .external_lex_state = 45}, - [798] = {.lex_state = 9, .external_lex_state = 22}, - [799] = {.lex_state = 0, .external_lex_state = 69}, - [800] = {.lex_state = 9, .external_lex_state = 22}, - [801] = {.lex_state = 0, .external_lex_state = 46}, - [802] = {.lex_state = 0, .external_lex_state = 23}, - [803] = {.lex_state = 0, .external_lex_state = 67}, - [804] = {.lex_state = 9, .external_lex_state = 22}, - [805] = {.lex_state = 0}, - [806] = {.lex_state = 0, .external_lex_state = 71}, - [807] = {.lex_state = 0, .external_lex_state = 67}, - [808] = {.lex_state = 0}, - [809] = {.lex_state = 0, .external_lex_state = 42}, - [810] = {.lex_state = 0, .external_lex_state = 45}, - [811] = {.lex_state = 0, .external_lex_state = 48}, - [812] = {.lex_state = 0, .external_lex_state = 27}, - [813] = {.lex_state = 0, .external_lex_state = 47}, - [814] = {.lex_state = 0}, - [815] = {.lex_state = 0, .external_lex_state = 27}, - [816] = {.lex_state = 0, .external_lex_state = 27}, - [817] = {.lex_state = 0, .external_lex_state = 72}, - [818] = {.lex_state = 0, .external_lex_state = 55}, - [819] = {.lex_state = 0, .external_lex_state = 43}, - [820] = {.lex_state = 0, .external_lex_state = 46}, - [821] = {.lex_state = 0, .external_lex_state = 49}, - [822] = {.lex_state = 0, .external_lex_state = 51}, - [823] = {.lex_state = 0, .external_lex_state = 27}, - [824] = {.lex_state = 0, .external_lex_state = 27}, - [825] = {.lex_state = 0, .external_lex_state = 27}, - [826] = {.lex_state = 9, .external_lex_state = 22}, - [827] = {.lex_state = 0, .external_lex_state = 62}, - [828] = {.lex_state = 0, .external_lex_state = 23}, - [829] = {.lex_state = 0, .external_lex_state = 17}, - [830] = {.lex_state = 0, .external_lex_state = 27}, - [831] = {.lex_state = 0, .external_lex_state = 48}, - [832] = {.lex_state = 0, .external_lex_state = 48}, - [833] = {.lex_state = 9, .external_lex_state = 22}, - [834] = {.lex_state = 0, .external_lex_state = 63}, - [835] = {.lex_state = 0}, + [739] = {.lex_state = 0, .external_lex_state = 46}, + [740] = {.lex_state = 0, .external_lex_state = 43}, + [741] = {.lex_state = 0, .external_lex_state = 28}, + [742] = {.lex_state = 0, .external_lex_state = 28}, + [743] = {.lex_state = 0, .external_lex_state = 28}, + [744] = {.lex_state = 0, .external_lex_state = 46}, + [745] = {.lex_state = 0, .external_lex_state = 49}, + [746] = {.lex_state = 0, .external_lex_state = 52}, + [747] = {.lex_state = 0, .external_lex_state = 28}, + [748] = {.lex_state = 0, .external_lex_state = 55}, + [749] = {.lex_state = 0, .external_lex_state = 28}, + [750] = {.lex_state = 0, .external_lex_state = 44}, + [751] = {.lex_state = 0, .external_lex_state = 47}, + [752] = {.lex_state = 0, .external_lex_state = 28}, + [753] = {.lex_state = 0, .external_lex_state = 69}, + [754] = {.lex_state = 0, .external_lex_state = 47}, + [755] = {.lex_state = 0, .external_lex_state = 48}, + [756] = {.lex_state = 0, .external_lex_state = 70}, + [757] = {.lex_state = 0, .external_lex_state = 17}, + [758] = {.lex_state = 0, .external_lex_state = 49}, + [759] = {.lex_state = 0, .external_lex_state = 50}, + [760] = {.lex_state = 39, .external_lex_state = 40}, + [761] = {.lex_state = 9, .external_lex_state = 25}, + [762] = {.lex_state = 0, .external_lex_state = 28}, + [763] = {.lex_state = 0, .external_lex_state = 28}, + [764] = {.lex_state = 0, .external_lex_state = 28}, + [765] = {.lex_state = 4}, + [766] = {.lex_state = 0, .external_lex_state = 51}, + [767] = {.lex_state = 9, .external_lex_state = 25}, + [768] = {.lex_state = 0, .external_lex_state = 52}, + [769] = {.lex_state = 0, .external_lex_state = 26}, + [770] = {.lex_state = 0, .external_lex_state = 53}, + [771] = {.lex_state = 0, .external_lex_state = 43}, + [772] = {.lex_state = 0, .external_lex_state = 70}, + [773] = {.lex_state = 0, .external_lex_state = 54}, + [774] = {.lex_state = 0, .external_lex_state = 28}, + [775] = {.lex_state = 0, .external_lex_state = 55}, + [776] = {.lex_state = 0, .external_lex_state = 42}, + [777] = {.lex_state = 0, .external_lex_state = 70}, + [778] = {.lex_state = 0, .external_lex_state = 28}, + [779] = {.lex_state = 0, .external_lex_state = 50}, + [780] = {.lex_state = 0, .external_lex_state = 17}, + [781] = {.lex_state = 0, .external_lex_state = 28}, + [782] = {.lex_state = 0, .external_lex_state = 53}, + [783] = {.lex_state = 0, .external_lex_state = 56}, + [784] = {.lex_state = 0, .external_lex_state = 45}, + [785] = {.lex_state = 0, .external_lex_state = 43}, + [786] = {.lex_state = 0, .external_lex_state = 28}, + [787] = {.lex_state = 0, .external_lex_state = 28}, + [788] = {.lex_state = 0, .external_lex_state = 48}, + [789] = {.lex_state = 0, .external_lex_state = 62}, + [790] = {.lex_state = 0, .external_lex_state = 69}, + [791] = {.lex_state = 0, .external_lex_state = 56}, + [792] = {.lex_state = 0, .external_lex_state = 51}, + [793] = {.lex_state = 0, .external_lex_state = 57}, + [794] = {.lex_state = 0, .external_lex_state = 70}, + [795] = {.lex_state = 9, .external_lex_state = 25}, + [796] = {.lex_state = 9, .external_lex_state = 25}, + [797] = {.lex_state = 0, .external_lex_state = 70}, + [798] = {.lex_state = 0, .external_lex_state = 26}, + [799] = {.lex_state = 0, .external_lex_state = 70}, + [800] = {.lex_state = 0, .external_lex_state = 70}, + [801] = {.lex_state = 39}, + [802] = {.lex_state = 0, .external_lex_state = 54}, + [803] = {.lex_state = 0, .external_lex_state = 57}, + [804] = {.lex_state = 0, .external_lex_state = 42}, + [805] = {.lex_state = 0, .external_lex_state = 71}, + [806] = {.lex_state = 0}, + [807] = {.lex_state = 0, .external_lex_state = 42}, + [808] = {.lex_state = 0, .external_lex_state = 63}, + [809] = {.lex_state = 0, .external_lex_state = 28}, + [810] = {.lex_state = 0}, + [811] = {.lex_state = 0, .external_lex_state = 69}, + [812] = {.lex_state = 9, .external_lex_state = 25}, + [813] = {.lex_state = 0, .external_lex_state = 28}, + [814] = {.lex_state = 0, .external_lex_state = 72}, + [815] = {.lex_state = 2, .external_lex_state = 25}, + [816] = {.lex_state = 9, .external_lex_state = 25}, + [817] = {.lex_state = 0, .external_lex_state = 26}, + [818] = {.lex_state = 0, .external_lex_state = 62}, + [819] = {.lex_state = 0, .external_lex_state = 26}, + [820] = {.lex_state = 0, .external_lex_state = 28}, + [821] = {.lex_state = 0, .external_lex_state = 70}, + [822] = {.lex_state = 0, .external_lex_state = 28}, + [823] = {.lex_state = 0, .external_lex_state = 28}, + [824] = {.lex_state = 0, .external_lex_state = 28}, + [825] = {.lex_state = 0, .external_lex_state = 73}, + [826] = {.lex_state = 0, .external_lex_state = 28}, + [827] = {.lex_state = 0, .external_lex_state = 28}, + [828] = {.lex_state = 0, .external_lex_state = 64}, + [829] = {.lex_state = 0}, + [830] = {.lex_state = 0, .external_lex_state = 28}, + [831] = {.lex_state = 4}, + [832] = {.lex_state = 0, .external_lex_state = 28}, + [833] = {.lex_state = 9, .external_lex_state = 25}, + [834] = {.lex_state = 0, .external_lex_state = 28}, + [835] = {.lex_state = 0, .external_lex_state = 46}, [836] = {.lex_state = 0}, - [837] = {.lex_state = 9, .external_lex_state = 22}, - [838] = {.lex_state = 0, .external_lex_state = 50}, - [839] = {.lex_state = 0, .external_lex_state = 23}, - [840] = {.lex_state = 0, .external_lex_state = 50}, - [841] = {.lex_state = 0, .external_lex_state = 42}, - [842] = {.lex_state = 0, .external_lex_state = 27}, - [843] = {.lex_state = 0, .external_lex_state = 55}, - [844] = {.lex_state = 0, .external_lex_state = 55}, - [845] = {.lex_state = 39, .external_lex_state = 17}, - [846] = {.lex_state = 0, .external_lex_state = 43}, - [847] = {.lex_state = 0, .external_lex_state = 43}, - [848] = {.lex_state = 0, .external_lex_state = 64}, - [849] = {.lex_state = 0, .external_lex_state = 67}, - [850] = {.lex_state = 0, .external_lex_state = 42}, - [851] = {.lex_state = 0, .external_lex_state = 46}, - [852] = {.lex_state = 0, .external_lex_state = 46}, - [853] = {.lex_state = 0, .external_lex_state = 27}, - [854] = {.lex_state = 0, .external_lex_state = 53}, - [855] = {.lex_state = 0, .external_lex_state = 49}, - [856] = {.lex_state = 0, .external_lex_state = 49}, - [857] = {.lex_state = 0, .external_lex_state = 65}, - [858] = {.lex_state = 0, .external_lex_state = 15}, + [837] = {.lex_state = 0, .external_lex_state = 43}, + [838] = {.lex_state = 9, .external_lex_state = 25}, + [839] = {.lex_state = 0, .external_lex_state = 28}, + [840] = {.lex_state = 0, .external_lex_state = 69}, + [841] = {.lex_state = 0, .external_lex_state = 26}, + [842] = {.lex_state = 0, .external_lex_state = 74}, + [843] = {.lex_state = 0, .external_lex_state = 28}, + [844] = {.lex_state = 0, .external_lex_state = 28}, + [845] = {.lex_state = 0, .external_lex_state = 28}, + [846] = {.lex_state = 0, .external_lex_state = 28}, + [847] = {.lex_state = 0, .external_lex_state = 46}, + [848] = {.lex_state = 9, .external_lex_state = 25}, + [849] = {.lex_state = 0}, + [850] = {.lex_state = 0, .external_lex_state = 28}, + [851] = {.lex_state = 0, .external_lex_state = 73}, + [852] = {.lex_state = 0, .external_lex_state = 28}, + [853] = {.lex_state = 0}, + [854] = {.lex_state = 0}, + [855] = {.lex_state = 0}, + [856] = {.lex_state = 0, .external_lex_state = 28}, + [857] = {.lex_state = 0, .external_lex_state = 28}, + [858] = {.lex_state = 0}, [859] = {.lex_state = 0}, [860] = {.lex_state = 0}, - [861] = {.lex_state = 0}, + [861] = {.lex_state = 0, .external_lex_state = 28}, [862] = {.lex_state = 0}, [863] = {.lex_state = 0}, [864] = {.lex_state = 0}, - [865] = {.lex_state = 0}, - [866] = {.lex_state = 0}, - [867] = {.lex_state = 5}, + [865] = {.lex_state = 0, .external_lex_state = 28}, + [866] = {.lex_state = 0, .external_lex_state = 71}, + [867] = {.lex_state = 0}, [868] = {.lex_state = 0}, [869] = {.lex_state = 0}, - [870] = {.lex_state = 0}, - [871] = {.lex_state = 0}, + [870] = {.lex_state = 0, .external_lex_state = 74}, + [871] = {.lex_state = 0, .external_lex_state = 28}, [872] = {.lex_state = 0}, [873] = {.lex_state = 0}, [874] = {.lex_state = 0}, - [875] = {.lex_state = 0}, - [876] = {.lex_state = 0, .external_lex_state = 51}, - [877] = {.lex_state = 0, .external_lex_state = 51}, - [878] = {.lex_state = 0, .external_lex_state = 53}, + [875] = {.lex_state = 0, .external_lex_state = 28}, + [876] = {.lex_state = 0, .external_lex_state = 28}, + [877] = {.lex_state = 0}, + [878] = {.lex_state = 0}, [879] = {.lex_state = 0}, - [880] = {.lex_state = 0}, - [881] = {.lex_state = 0, .external_lex_state = 53}, - [882] = {.lex_state = 0, .external_lex_state = 44}, - [883] = {.lex_state = 0, .external_lex_state = 70}, - [884] = {.lex_state = 0}, + [880] = {.lex_state = 0, .external_lex_state = 59}, + [881] = {.lex_state = 0}, + [882] = {.lex_state = 0}, + [883] = {.lex_state = 0}, + [884] = {.lex_state = 0, .external_lex_state = 71}, [885] = {.lex_state = 0}, [886] = {.lex_state = 0}, [887] = {.lex_state = 0}, - [888] = {.lex_state = 0, .external_lex_state = 44}, - [889] = {.lex_state = 0}, - [890] = {.lex_state = 0}, - [891] = {.lex_state = 3, .external_lex_state = 22}, - [892] = {.lex_state = 0, .external_lex_state = 47}, - [893] = {.lex_state = 0, .external_lex_state = 47}, - [894] = {.lex_state = 0}, - [895] = {.lex_state = 0}, - [896] = {.lex_state = 0, .external_lex_state = 41}, - [897] = {.lex_state = 0}, - [898] = {.lex_state = 0}, - [899] = {.lex_state = 0}, - [900] = {.lex_state = 0}, - [901] = {.lex_state = 0, .external_lex_state = 72}, - [902] = {.lex_state = 0}, - [903] = {.lex_state = 0}, - [904] = {.lex_state = 0, .external_lex_state = 68}, - [905] = {.lex_state = 0, .external_lex_state = 35}, - [906] = {.lex_state = 7, .external_lex_state = 22}, - [907] = {.lex_state = 0, .external_lex_state = 69}, - [908] = {.lex_state = 0, .external_lex_state = 72}, - [909] = {.lex_state = 0, .external_lex_state = 72}, - [910] = {.lex_state = 5}, - [911] = {.lex_state = 5}, - [912] = {.lex_state = 0, .external_lex_state = 35}, - [913] = {.lex_state = 5}, - [914] = {.lex_state = 0, .external_lex_state = 68}, - [915] = {.lex_state = 5}, - [916] = {.lex_state = 0, .external_lex_state = 68}, - [917] = {.lex_state = 0, .external_lex_state = 68}, - [918] = {.lex_state = 0, .external_lex_state = 50}, - [919] = {.lex_state = 0}, - [920] = {.lex_state = 0, .external_lex_state = 73}, - [921] = {.lex_state = 0, .external_lex_state = 22}, - [922] = {.lex_state = 0, .external_lex_state = 74}, - [923] = {.lex_state = 0, .external_lex_state = 74}, - [924] = {.lex_state = 0, .external_lex_state = 22}, - [925] = {.lex_state = 0, .external_lex_state = 22}, - [926] = {.lex_state = 0, .external_lex_state = 22}, - [927] = {.lex_state = 0, .external_lex_state = 22}, - [928] = {.lex_state = 0, .external_lex_state = 22}, - [929] = {.lex_state = 0, .external_lex_state = 22}, - [930] = {.lex_state = 0, .external_lex_state = 22}, - [931] = {.lex_state = 0, .external_lex_state = 22}, - [932] = {.lex_state = 0, .external_lex_state = 22}, - [933] = {.lex_state = 0, .external_lex_state = 22}, - [934] = {.lex_state = 0, .external_lex_state = 22}, - [935] = {.lex_state = 0, .external_lex_state = 74}, + [888] = {.lex_state = 0, .external_lex_state = 71}, + [889] = {.lex_state = 0, .external_lex_state = 74}, + [890] = {.lex_state = 0, .external_lex_state = 74}, + [891] = {.lex_state = 0, .external_lex_state = 74}, + [892] = {.lex_state = 0, .external_lex_state = 74}, + [893] = {.lex_state = 4}, + [894] = {.lex_state = 4}, + [895] = {.lex_state = 4}, + [896] = {.lex_state = 4}, + [897] = {.lex_state = 7, .external_lex_state = 25}, + [898] = {.lex_state = 0, .external_lex_state = 28}, + [899] = {.lex_state = 51}, + [900] = {.lex_state = 0, .external_lex_state = 75}, + [901] = {.lex_state = 0}, + [902] = {.lex_state = 0, .external_lex_state = 76}, + [903] = {.lex_state = 4}, + [904] = {.lex_state = 4}, + [905] = {.lex_state = 0, .external_lex_state = 25}, + [906] = {.lex_state = 0, .external_lex_state = 25}, + [907] = {.lex_state = 9}, + [908] = {.lex_state = 2}, + [909] = {.lex_state = 0, .external_lex_state = 77}, + [910] = {.lex_state = 51}, + [911] = {.lex_state = 0, .external_lex_state = 25}, + [912] = {.lex_state = 0, .external_lex_state = 25}, + [913] = {.lex_state = 0, .external_lex_state = 25}, + [914] = {.lex_state = 0}, + [915] = {.lex_state = 0, .external_lex_state = 75}, + [916] = {.lex_state = 0, .external_lex_state = 25}, + [917] = {.lex_state = 0, .external_lex_state = 25}, + [918] = {.lex_state = 0, .external_lex_state = 25}, + [919] = {.lex_state = 0, .external_lex_state = 77}, + [920] = {.lex_state = 0, .external_lex_state = 77}, + [921] = {.lex_state = 0, .external_lex_state = 25}, + [922] = {.lex_state = 0, .external_lex_state = 25}, + [923] = {.lex_state = 0, .external_lex_state = 25}, + [924] = {.lex_state = 0, .external_lex_state = 25}, + [925] = {.lex_state = 0, .external_lex_state = 25}, + [926] = {.lex_state = 0, .external_lex_state = 25}, + [927] = {.lex_state = 0, .external_lex_state = 25}, + [928] = {.lex_state = 0, .external_lex_state = 25}, + [929] = {.lex_state = 0, .external_lex_state = 25}, + [930] = {.lex_state = 2}, + [931] = {.lex_state = 0, .external_lex_state = 75}, + [932] = {.lex_state = 0, .external_lex_state = 75}, + [933] = {.lex_state = 0, .external_lex_state = 40}, + [934] = {.lex_state = 0, .external_lex_state = 25}, + [935] = {.lex_state = 0, .external_lex_state = 25}, [936] = {.lex_state = 0, .external_lex_state = 75}, - [937] = {.lex_state = 0, .external_lex_state = 22}, - [938] = {.lex_state = 0, .external_lex_state = 74}, - [939] = {.lex_state = 0, .external_lex_state = 22}, - [940] = {.lex_state = 0, .external_lex_state = 22}, - [941] = {.lex_state = 0, .external_lex_state = 22}, - [942] = {.lex_state = 3}, - [943] = {.lex_state = 0}, - [944] = {.lex_state = 0, .external_lex_state = 22}, - [945] = {.lex_state = 0, .external_lex_state = 22}, - [946] = {.lex_state = 0, .external_lex_state = 22}, - [947] = {.lex_state = 0, .external_lex_state = 22}, - [948] = {.lex_state = 0, .external_lex_state = 22}, - [949] = {.lex_state = 0, .external_lex_state = 22}, - [950] = {.lex_state = 0, .external_lex_state = 73}, - [951] = {.lex_state = 0, .external_lex_state = 73}, - [952] = {.lex_state = 0, .external_lex_state = 74}, - [953] = {.lex_state = 3}, - [954] = {.lex_state = 0, .external_lex_state = 73}, - [955] = {.lex_state = 0, .external_lex_state = 74}, - [956] = {.lex_state = 0, .external_lex_state = 73}, - [957] = {.lex_state = 0}, - [958] = {.lex_state = 0, .external_lex_state = 73}, - [959] = {.lex_state = 0, .external_lex_state = 74}, - [960] = {.lex_state = 0, .external_lex_state = 22}, - [961] = {.lex_state = 0, .external_lex_state = 73}, - [962] = {.lex_state = 0, .external_lex_state = 22}, - [963] = {.lex_state = 0, .external_lex_state = 22}, - [964] = {.lex_state = 0, .external_lex_state = 22}, - [965] = {.lex_state = 0, .external_lex_state = 22}, - [966] = {.lex_state = 0, .external_lex_state = 22}, - [967] = {.lex_state = 0, .external_lex_state = 22}, - [968] = {.lex_state = 0, .external_lex_state = 22}, - [969] = {.lex_state = 0, .external_lex_state = 73}, - [970] = {.lex_state = 0, .external_lex_state = 74}, - [971] = {.lex_state = 0, .external_lex_state = 73}, - [972] = {.lex_state = 0, .external_lex_state = 22}, - [973] = {.lex_state = 0, .external_lex_state = 73}, - [974] = {.lex_state = 0, .external_lex_state = 38}, - [975] = {.lex_state = 0, .external_lex_state = 73}, - [976] = {.lex_state = 0, .external_lex_state = 22}, - [977] = {.lex_state = 3}, - [978] = {.lex_state = 0, .external_lex_state = 22}, - [979] = {.lex_state = 0, .external_lex_state = 74}, - [980] = {.lex_state = 0, .external_lex_state = 74}, - [981] = {.lex_state = 0, .external_lex_state = 22}, - [982] = {.lex_state = 0, .external_lex_state = 22}, - [983] = {.lex_state = 0, .external_lex_state = 22}, - [984] = {.lex_state = 0, .external_lex_state = 22}, - [985] = {.lex_state = 0, .external_lex_state = 73}, - [986] = {.lex_state = 0, .external_lex_state = 22}, - [987] = {.lex_state = 0, .external_lex_state = 22}, - [988] = {.lex_state = 0, .external_lex_state = 22}, - [989] = {.lex_state = 0, .external_lex_state = 22}, - [990] = {.lex_state = 0, .external_lex_state = 22}, - [991] = {.lex_state = 0, .external_lex_state = 22}, - [992] = {.lex_state = 0, .external_lex_state = 73}, - [993] = {.lex_state = 0, .external_lex_state = 76}, - [994] = {.lex_state = 0, .external_lex_state = 74}, - [995] = {.lex_state = 9}, - [996] = {.lex_state = 0, .external_lex_state = 73}, - [997] = {.lex_state = 0, .external_lex_state = 74}, - [998] = {.lex_state = 0, .external_lex_state = 22}, - [999] = {.lex_state = 5}, - [1000] = {.lex_state = 0, .external_lex_state = 74}, - [1001] = {.lex_state = 0, .external_lex_state = 73}, - [1002] = {.lex_state = 0}, - [1003] = {.lex_state = 0}, - [1004] = {.lex_state = 0, .external_lex_state = 73}, - [1005] = {.lex_state = 5}, - [1006] = {.lex_state = 0, .external_lex_state = 73}, - [1007] = {.lex_state = 0, .external_lex_state = 22}, - [1008] = {.lex_state = 0, .external_lex_state = 77}, - [1009] = {.lex_state = 11}, - [1010] = {.lex_state = 0, .external_lex_state = 22}, - [1011] = {.lex_state = 0, .external_lex_state = 74}, - [1012] = {.lex_state = 9}, - [1013] = {.lex_state = 0, .external_lex_state = 74}, - [1014] = {.lex_state = 51}, - [1015] = {.lex_state = 0, .external_lex_state = 73}, - [1016] = {.lex_state = 0, .external_lex_state = 22}, - [1017] = {.lex_state = 0, .external_lex_state = 73}, - [1018] = {.lex_state = 0, .external_lex_state = 73}, - [1019] = {.lex_state = 0, .external_lex_state = 73}, - [1020] = {.lex_state = 0, .external_lex_state = 73}, - [1021] = {.lex_state = 0, .external_lex_state = 73}, - [1022] = {.lex_state = 0, .external_lex_state = 73}, - [1023] = {.lex_state = 0, .external_lex_state = 73}, - [1024] = {.lex_state = 0, .external_lex_state = 73}, - [1025] = {.lex_state = 0, .external_lex_state = 73}, - [1026] = {.lex_state = 0, .external_lex_state = 22}, - [1027] = {.lex_state = 0}, - [1028] = {.lex_state = 0, .external_lex_state = 73}, - [1029] = {.lex_state = 0, .external_lex_state = 22}, - [1030] = {.lex_state = 0}, - [1031] = {.lex_state = 0, .external_lex_state = 73}, - [1032] = {.lex_state = 9}, - [1033] = {.lex_state = 0, .external_lex_state = 73}, - [1034] = {.lex_state = 0, .external_lex_state = 73}, - [1035] = {.lex_state = 0, .external_lex_state = 22}, - [1036] = {.lex_state = 0, .external_lex_state = 22}, - [1037] = {.lex_state = 0, .external_lex_state = 22}, - [1038] = {.lex_state = 0, .external_lex_state = 74}, - [1039] = {.lex_state = 0, .external_lex_state = 74}, - [1040] = {.lex_state = 0}, - [1041] = {.lex_state = 0, .external_lex_state = 73}, - [1042] = {.lex_state = 3}, - [1043] = {.lex_state = 0, .external_lex_state = 22}, - [1044] = {.lex_state = 0, .external_lex_state = 22}, - [1045] = {.lex_state = 51}, - [1046] = {.lex_state = 0, .external_lex_state = 73}, - [1047] = {.lex_state = 0, .external_lex_state = 73}, - [1048] = {.lex_state = 0, .external_lex_state = 73}, - [1049] = {.lex_state = 0, .external_lex_state = 73}, - [1050] = {.lex_state = 0, .external_lex_state = 22}, - [1051] = {.lex_state = 0, .external_lex_state = 23}, - [1052] = {.lex_state = 0, .external_lex_state = 73}, - [1053] = {.lex_state = 0, .external_lex_state = 22}, - [1054] = {.lex_state = 0, .external_lex_state = 22}, - [1055] = {.lex_state = 0, .external_lex_state = 73}, - [1056] = {.lex_state = 9}, - [1057] = {.lex_state = 0, .external_lex_state = 73}, - [1058] = {.lex_state = 0, .external_lex_state = 73}, - [1059] = {.lex_state = 0, .external_lex_state = 22}, - [1060] = {.lex_state = 0, .external_lex_state = 22}, - [1061] = {.lex_state = 0, .external_lex_state = 22}, - [1062] = {.lex_state = 0, .external_lex_state = 22}, - [1063] = {.lex_state = 0, .external_lex_state = 22}, - [1064] = {.lex_state = 0, .external_lex_state = 22}, - [1065] = {.lex_state = 0, .external_lex_state = 73}, - [1066] = {.lex_state = 3}, - [1067] = {.lex_state = 0, .external_lex_state = 22}, - [1068] = {.lex_state = 0, .external_lex_state = 73}, - [1069] = {.lex_state = 51}, - [1070] = {.lex_state = 0, .external_lex_state = 73}, - [1071] = {.lex_state = 0, .external_lex_state = 73}, - [1072] = {.lex_state = 0, .external_lex_state = 73}, - [1073] = {.lex_state = 0, .external_lex_state = 78}, - [1074] = {.lex_state = 0, .external_lex_state = 22}, - [1075] = {.lex_state = 12}, - [1076] = {.lex_state = 0, .external_lex_state = 73}, - [1077] = {.lex_state = 0}, - [1078] = {.lex_state = 0, .external_lex_state = 73}, - [1079] = {.lex_state = 3}, - [1080] = {.lex_state = 9}, - [1081] = {.lex_state = 0, .external_lex_state = 22}, - [1082] = {.lex_state = 0, .external_lex_state = 74}, - [1083] = {.lex_state = 0, .external_lex_state = 22}, - [1084] = {.lex_state = 0, .external_lex_state = 22}, - [1085] = {.lex_state = 0, .external_lex_state = 23}, - [1086] = {.lex_state = 3}, - [1087] = {.lex_state = 0, .external_lex_state = 74}, - [1088] = {.lex_state = 0, .external_lex_state = 22}, - [1089] = {.lex_state = 0}, - [1090] = {.lex_state = 3}, - [1091] = {.lex_state = 7}, - [1092] = {.lex_state = 0, .external_lex_state = 78}, + [937] = {.lex_state = 0, .external_lex_state = 25}, + [938] = {.lex_state = 0, .external_lex_state = 77}, + [939] = {.lex_state = 0, .external_lex_state = 75}, + [940] = {.lex_state = 0, .external_lex_state = 75}, + [941] = {.lex_state = 0, .external_lex_state = 75}, + [942] = {.lex_state = 0, .external_lex_state = 40}, + [943] = {.lex_state = 0, .external_lex_state = 25}, + [944] = {.lex_state = 2}, + [945] = {.lex_state = 0, .external_lex_state = 75}, + [946] = {.lex_state = 0, .external_lex_state = 75}, + [947] = {.lex_state = 0}, + [948] = {.lex_state = 0, .external_lex_state = 75}, + [949] = {.lex_state = 0, .external_lex_state = 75}, + [950] = {.lex_state = 0, .external_lex_state = 25}, + [951] = {.lex_state = 0, .external_lex_state = 75}, + [952] = {.lex_state = 0, .external_lex_state = 75}, + [953] = {.lex_state = 0}, + [954] = {.lex_state = 0, .external_lex_state = 25}, + [955] = {.lex_state = 0, .external_lex_state = 77}, + [956] = {.lex_state = 0, .external_lex_state = 25}, + [957] = {.lex_state = 0, .external_lex_state = 78}, + [958] = {.lex_state = 0, .external_lex_state = 77}, + [959] = {.lex_state = 7}, + [960] = {.lex_state = 0, .external_lex_state = 75}, + [961] = {.lex_state = 0, .external_lex_state = 77}, + [962] = {.lex_state = 0, .external_lex_state = 77}, + [963] = {.lex_state = 0, .external_lex_state = 77}, + [964] = {.lex_state = 0, .external_lex_state = 25}, + [965] = {.lex_state = 0}, + [966] = {.lex_state = 0, .external_lex_state = 25}, + [967] = {.lex_state = 0, .external_lex_state = 75}, + [968] = {.lex_state = 0, .external_lex_state = 77}, + [969] = {.lex_state = 0}, + [970] = {.lex_state = 0, .external_lex_state = 25}, + [971] = {.lex_state = 0, .external_lex_state = 75}, + [972] = {.lex_state = 0, .external_lex_state = 26}, + [973] = {.lex_state = 0, .external_lex_state = 25}, + [974] = {.lex_state = 0, .external_lex_state = 75}, + [975] = {.lex_state = 0, .external_lex_state = 25}, + [976] = {.lex_state = 9}, + [977] = {.lex_state = 0, .external_lex_state = 25}, + [978] = {.lex_state = 0, .external_lex_state = 77}, + [979] = {.lex_state = 0, .external_lex_state = 77}, + [980] = {.lex_state = 0, .external_lex_state = 79}, + [981] = {.lex_state = 0, .external_lex_state = 25}, + [982] = {.lex_state = 0, .external_lex_state = 25}, + [983] = {.lex_state = 0, .external_lex_state = 25}, + [984] = {.lex_state = 0, .external_lex_state = 25}, + [985] = {.lex_state = 0, .external_lex_state = 25}, + [986] = {.lex_state = 0, .external_lex_state = 25}, + [987] = {.lex_state = 0, .external_lex_state = 25}, + [988] = {.lex_state = 0, .external_lex_state = 25}, + [989] = {.lex_state = 0, .external_lex_state = 77}, + [990] = {.lex_state = 11}, + [991] = {.lex_state = 0, .external_lex_state = 25}, + [992] = {.lex_state = 0}, + [993] = {.lex_state = 0, .external_lex_state = 77}, + [994] = {.lex_state = 0, .external_lex_state = 25}, + [995] = {.lex_state = 0, .external_lex_state = 75}, + [996] = {.lex_state = 0, .external_lex_state = 77}, + [997] = {.lex_state = 0, .external_lex_state = 75}, + [998] = {.lex_state = 0, .external_lex_state = 75}, + [999] = {.lex_state = 0, .external_lex_state = 75}, + [1000] = {.lex_state = 0, .external_lex_state = 75}, + [1001] = {.lex_state = 0, .external_lex_state = 75}, + [1002] = {.lex_state = 0, .external_lex_state = 75}, + [1003] = {.lex_state = 0, .external_lex_state = 75}, + [1004] = {.lex_state = 0, .external_lex_state = 75}, + [1005] = {.lex_state = 0, .external_lex_state = 75}, + [1006] = {.lex_state = 0, .external_lex_state = 75}, + [1007] = {.lex_state = 0, .external_lex_state = 75}, + [1008] = {.lex_state = 0, .external_lex_state = 75}, + [1009] = {.lex_state = 0, .external_lex_state = 75}, + [1010] = {.lex_state = 0, .external_lex_state = 75}, + [1011] = {.lex_state = 0, .external_lex_state = 75}, + [1012] = {.lex_state = 0, .external_lex_state = 75}, + [1013] = {.lex_state = 0, .external_lex_state = 75}, + [1014] = {.lex_state = 0, .external_lex_state = 75}, + [1015] = {.lex_state = 0, .external_lex_state = 75}, + [1016] = {.lex_state = 0, .external_lex_state = 75}, + [1017] = {.lex_state = 0}, + [1018] = {.lex_state = 0, .external_lex_state = 75}, + [1019] = {.lex_state = 0, .external_lex_state = 25}, + [1020] = {.lex_state = 0, .external_lex_state = 25}, + [1021] = {.lex_state = 51}, + [1022] = {.lex_state = 0, .external_lex_state = 80}, + [1023] = {.lex_state = 0, .external_lex_state = 25}, + [1024] = {.lex_state = 0, .external_lex_state = 77}, + [1025] = {.lex_state = 0, .external_lex_state = 75}, + [1026] = {.lex_state = 0, .external_lex_state = 25}, + [1027] = {.lex_state = 0, .external_lex_state = 25}, + [1028] = {.lex_state = 0, .external_lex_state = 77}, + [1029] = {.lex_state = 0, .external_lex_state = 25}, + [1030] = {.lex_state = 0, .external_lex_state = 77}, + [1031] = {.lex_state = 0, .external_lex_state = 25}, + [1032] = {.lex_state = 0, .external_lex_state = 25}, + [1033] = {.lex_state = 0, .external_lex_state = 77}, + [1034] = {.lex_state = 0, .external_lex_state = 25}, + [1035] = {.lex_state = 0, .external_lex_state = 25}, + [1036] = {.lex_state = 2}, + [1037] = {.lex_state = 51}, + [1038] = {.lex_state = 0, .external_lex_state = 75}, + [1039] = {.lex_state = 0, .external_lex_state = 25}, + [1040] = {.lex_state = 0, .external_lex_state = 75}, + [1041] = {.lex_state = 0, .external_lex_state = 75}, + [1042] = {.lex_state = 0, .external_lex_state = 25}, + [1043] = {.lex_state = 0}, + [1044] = {.lex_state = 0, .external_lex_state = 75}, + [1045] = {.lex_state = 0, .external_lex_state = 25}, + [1046] = {.lex_state = 0, .external_lex_state = 25}, + [1047] = {.lex_state = 0, .external_lex_state = 25}, + [1048] = {.lex_state = 0, .external_lex_state = 25}, + [1049] = {.lex_state = 0, .external_lex_state = 25}, + [1050] = {.lex_state = 0, .external_lex_state = 25}, + [1051] = {.lex_state = 0, .external_lex_state = 25}, + [1052] = {.lex_state = 0, .external_lex_state = 25}, + [1053] = {.lex_state = 0, .external_lex_state = 25}, + [1054] = {.lex_state = 0, .external_lex_state = 25}, + [1055] = {.lex_state = 2}, + [1056] = {.lex_state = 51}, + [1057] = {.lex_state = 0, .external_lex_state = 75}, + [1058] = {.lex_state = 0, .external_lex_state = 75}, + [1059] = {.lex_state = 0, .external_lex_state = 75}, + [1060] = {.lex_state = 0, .external_lex_state = 25}, + [1061] = {.lex_state = 0, .external_lex_state = 25}, + [1062] = {.lex_state = 0, .external_lex_state = 25}, + [1063] = {.lex_state = 0, .external_lex_state = 75}, + [1064] = {.lex_state = 0, .external_lex_state = 25}, + [1065] = {.lex_state = 0, .external_lex_state = 81}, + [1066] = {.lex_state = 0, .external_lex_state = 25}, + [1067] = {.lex_state = 0, .external_lex_state = 75}, + [1068] = {.lex_state = 0, .external_lex_state = 25}, + [1069] = {.lex_state = 0, .external_lex_state = 25}, + [1070] = {.lex_state = 0, .external_lex_state = 25}, + [1071] = {.lex_state = 0, .external_lex_state = 25}, + [1072] = {.lex_state = 0, .external_lex_state = 25}, + [1073] = {.lex_state = 0, .external_lex_state = 25}, + [1074] = {.lex_state = 2}, + [1075] = {.lex_state = 51}, + [1076] = {.lex_state = 0, .external_lex_state = 75}, + [1077] = {.lex_state = 0, .external_lex_state = 77}, + [1078] = {.lex_state = 0, .external_lex_state = 25}, + [1079] = {.lex_state = 0, .external_lex_state = 25}, + [1080] = {.lex_state = 0, .external_lex_state = 25}, + [1081] = {.lex_state = 0, .external_lex_state = 75}, + [1082] = {.lex_state = 0, .external_lex_state = 25}, + [1083] = {.lex_state = 0, .external_lex_state = 82}, + [1084] = {.lex_state = 0, .external_lex_state = 25}, + [1085] = {.lex_state = 0, .external_lex_state = 75}, + [1086] = {.lex_state = 2}, + [1087] = {.lex_state = 0, .external_lex_state = 25}, + [1088] = {.lex_state = 0, .external_lex_state = 25}, + [1089] = {.lex_state = 2}, + [1090] = {.lex_state = 0}, + [1091] = {.lex_state = 0, .external_lex_state = 75}, + [1092] = {.lex_state = 2}, [1093] = {.lex_state = 51}, - [1094] = {.lex_state = 0, .external_lex_state = 73}, - [1095] = {.lex_state = 0, .external_lex_state = 73}, - [1096] = {.lex_state = 0}, - [1097] = {.lex_state = 0, .external_lex_state = 22}, - [1098] = {.lex_state = 0, .external_lex_state = 73}, - [1099] = {.lex_state = 0, .external_lex_state = 73}, - [1100] = {.lex_state = 0, .external_lex_state = 22}, - [1101] = {.lex_state = 0}, - [1102] = {.lex_state = 0, .external_lex_state = 73}, - [1103] = {.lex_state = 9}, - [1104] = {.lex_state = 0, .external_lex_state = 73}, - [1105] = {.lex_state = 9}, - [1106] = {.lex_state = 0, .external_lex_state = 22}, - [1107] = {.lex_state = 0, .external_lex_state = 22}, - [1108] = {.lex_state = 0}, - [1109] = {.lex_state = 0, .external_lex_state = 22}, - [1110] = {.lex_state = 0, .external_lex_state = 74}, - [1111] = {.lex_state = 0, .external_lex_state = 74}, - [1112] = {.lex_state = 0, .external_lex_state = 74}, - [1113] = {.lex_state = 3}, - [1114] = {.lex_state = 0, .external_lex_state = 22}, - [1115] = {.lex_state = 0, .external_lex_state = 79}, - [1116] = {.lex_state = 51}, - [1117] = {.lex_state = 0, .external_lex_state = 73}, - [1118] = {.lex_state = 0, .external_lex_state = 73}, - [1119] = {.lex_state = 0, .external_lex_state = 73}, - [1120] = {.lex_state = 0, .external_lex_state = 73}, - [1121] = {.lex_state = 0, .external_lex_state = 73}, - [1122] = {.lex_state = 0, .external_lex_state = 73}, - [1123] = {.lex_state = 0, .external_lex_state = 73}, - [1124] = {.lex_state = 0, .external_lex_state = 73}, - [1125] = {.lex_state = 0, .external_lex_state = 73}, - [1126] = {.lex_state = 0, .external_lex_state = 73}, - [1127] = {.lex_state = 0, .external_lex_state = 73}, - [1128] = {.lex_state = 0, .external_lex_state = 73}, - [1129] = {.lex_state = 0, .external_lex_state = 73}, - [1130] = {.lex_state = 0, .external_lex_state = 73}, - [1131] = {.lex_state = 0, .external_lex_state = 73}, - [1132] = {.lex_state = 51}, - [1133] = {.lex_state = 0, .external_lex_state = 73}, - [1134] = {.lex_state = 0, .external_lex_state = 73}, - [1135] = {.lex_state = 0}, - [1136] = {.lex_state = 9}, - [1137] = {.lex_state = 5}, - [1138] = {.lex_state = 11}, - [1139] = {.lex_state = 51}, - [1140] = {.lex_state = 0, .external_lex_state = 22}, - [1141] = {.lex_state = 0, .external_lex_state = 22}, + [1094] = {.lex_state = 0, .external_lex_state = 75}, + [1095] = {.lex_state = 0, .external_lex_state = 75}, + [1096] = {.lex_state = 0, .external_lex_state = 75}, + [1097] = {.lex_state = 0, .external_lex_state = 75}, + [1098] = {.lex_state = 0, .external_lex_state = 75}, + [1099] = {.lex_state = 0, .external_lex_state = 75}, + [1100] = {.lex_state = 0, .external_lex_state = 75}, + [1101] = {.lex_state = 0, .external_lex_state = 75}, + [1102] = {.lex_state = 0, .external_lex_state = 75}, + [1103] = {.lex_state = 0, .external_lex_state = 75}, + [1104] = {.lex_state = 0, .external_lex_state = 75}, + [1105] = {.lex_state = 0, .external_lex_state = 75}, + [1106] = {.lex_state = 0, .external_lex_state = 75}, + [1107] = {.lex_state = 0, .external_lex_state = 75}, + [1108] = {.lex_state = 0, .external_lex_state = 75}, + [1109] = {.lex_state = 51}, + [1110] = {.lex_state = 0, .external_lex_state = 82}, + [1111] = {.lex_state = 9}, + [1112] = {.lex_state = 0, .external_lex_state = 75}, + [1113] = {.lex_state = 4}, + [1114] = {.lex_state = 11}, + [1115] = {.lex_state = 51}, + [1116] = {.lex_state = 0, .external_lex_state = 75}, + [1117] = {.lex_state = 9}, + [1118] = {.lex_state = 0, .external_lex_state = 77}, + [1119] = {.lex_state = 4}, + [1120] = {.lex_state = 11}, + [1121] = {.lex_state = 51}, + [1122] = {.lex_state = 0, .external_lex_state = 75}, + [1123] = {.lex_state = 9}, + [1124] = {.lex_state = 0, .external_lex_state = 25}, + [1125] = {.lex_state = 4}, + [1126] = {.lex_state = 11}, + [1127] = {.lex_state = 0}, + [1128] = {.lex_state = 0, .external_lex_state = 75}, + [1129] = {.lex_state = 9}, + [1130] = {.lex_state = 0, .external_lex_state = 25}, + [1131] = {.lex_state = 4}, + [1132] = {.lex_state = 11}, + [1133] = {.lex_state = 12}, + [1134] = {.lex_state = 2}, + [1135] = {.lex_state = 0, .external_lex_state = 77}, + [1136] = {.lex_state = 2}, + [1137] = {.lex_state = 0, .external_lex_state = 77}, + [1138] = {.lex_state = 2}, + [1139] = {.lex_state = 0, .external_lex_state = 25}, + [1140] = {.lex_state = 2}, + [1141] = {.lex_state = 0, .external_lex_state = 79}, [1142] = {.lex_state = 0}, - [1143] = {.lex_state = 9}, - [1144] = {.lex_state = 5}, - [1145] = {.lex_state = 11}, - [1146] = {.lex_state = 51}, - [1147] = {.lex_state = 0, .external_lex_state = 22}, + [1143] = {.lex_state = 0, .external_lex_state = 79}, + [1144] = {.lex_state = 0}, + [1145] = {.lex_state = 0, .external_lex_state = 79}, + [1146] = {.lex_state = 0}, + [1147] = {.lex_state = 0, .external_lex_state = 79}, [1148] = {.lex_state = 0}, [1149] = {.lex_state = 0}, - [1150] = {.lex_state = 9}, - [1151] = {.lex_state = 5}, - [1152] = {.lex_state = 11}, - [1153] = {.lex_state = 51}, - [1154] = {.lex_state = 0, .external_lex_state = 73}, - [1155] = {.lex_state = 0, .external_lex_state = 22}, - [1156] = {.lex_state = 0}, - [1157] = {.lex_state = 9}, - [1158] = {.lex_state = 5}, - [1159] = {.lex_state = 11}, - [1160] = {.lex_state = 0, .external_lex_state = 22}, - [1161] = {.lex_state = 0}, - [1162] = {.lex_state = 51}, - [1163] = {.lex_state = 3}, - [1164] = {.lex_state = 0, .external_lex_state = 73}, - [1165] = {.lex_state = 0}, - [1166] = {.lex_state = 0, .external_lex_state = 38}, - [1167] = {.lex_state = 3}, - [1168] = {.lex_state = 0, .external_lex_state = 74}, - [1169] = {.lex_state = 0}, - [1170] = {.lex_state = 0, .external_lex_state = 73}, - [1171] = {.lex_state = 3}, - [1172] = {.lex_state = 0, .external_lex_state = 73}, - [1173] = {.lex_state = 0}, - [1174] = {.lex_state = 51}, - [1175] = {.lex_state = 3}, - [1176] = {.lex_state = 0, .external_lex_state = 77}, - [1177] = {.lex_state = 0}, - [1178] = {.lex_state = 0, .external_lex_state = 77}, - [1179] = {.lex_state = 0}, - [1180] = {.lex_state = 0, .external_lex_state = 77}, - [1181] = {.lex_state = 0}, - [1182] = {.lex_state = 0, .external_lex_state = 77}, - [1183] = {.lex_state = 0}, - [1184] = {.lex_state = 0}, - [1185] = {.lex_state = 0}, - [1186] = {.lex_state = 0}, - [1187] = {.lex_state = 0}, - [1188] = {.lex_state = 0, .external_lex_state = 22}, - [1189] = {.lex_state = 0, .external_lex_state = 80}, - [1190] = {.lex_state = 0, .external_lex_state = 22}, - [1191] = {.lex_state = 0, .external_lex_state = 74}, - [1192] = {.lex_state = 0, .external_lex_state = 22}, + [1150] = {.lex_state = 0}, + [1151] = {.lex_state = 0}, + [1152] = {.lex_state = 0}, + [1153] = {.lex_state = 0}, + [1154] = {.lex_state = 51}, + [1155] = {.lex_state = 0, .external_lex_state = 75}, + [1156] = {.lex_state = 0, .external_lex_state = 26}, + [1157] = {.lex_state = 0, .external_lex_state = 77}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -4789,8428 +4689,8630 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__footnote_mark_begin] = ACTIONS(1), [sym__footnote_continuation] = ACTIONS(1), [sym__footnote_end] = ACTIONS(1), + [sym__table_header_begin] = ACTIONS(1), + [sym__table_separator_begin] = ACTIONS(1), + [sym__table_row_begin] = ACTIONS(1), [sym__table_caption_begin] = ACTIONS(1), [sym__table_caption_end] = ACTIONS(1), [sym__in_fallback] = ACTIONS(1), [sym__error] = ACTIONS(1), }, [1] = { - [sym_document] = STATE(1002), - [sym_frontmatter] = STATE(4), - [sym__block_with_section] = STATE(111), - [sym__block_element] = STATE(111), - [sym_section] = STATE(111), - [sym_heading] = STATE(3), - [sym_list] = STATE(111), - [sym__list_dash] = STATE(209), - [sym__list_item_dash] = STATE(636), - [sym__list_plus] = STATE(209), - [sym__list_item_plus] = STATE(637), - [sym__list_star] = STATE(209), - [sym__list_item_star] = STATE(671), - [sym__list_task] = STATE(209), - [sym__list_item_task] = STATE(691), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(209), - [sym__list_item_definition] = STATE(896), - [sym__list_decimal_period] = STATE(209), - [sym__list_item_decimal_period] = STATE(841), - [sym__list_decimal_paren] = STATE(209), - [sym__list_item_decimal_paren] = STATE(796), - [sym__list_decimal_parens] = STATE(209), - [sym__list_item_decimal_parens] = STATE(716), - [sym__list_lower_alpha_period] = STATE(209), - [sym__list_item_lower_alpha_period] = STATE(722), - [sym__list_lower_alpha_paren] = STATE(209), - [sym__list_item_lower_alpha_paren] = STATE(801), - [sym__list_lower_alpha_parens] = STATE(209), - [sym__list_item_lower_alpha_parens] = STATE(813), - [sym__list_upper_alpha_period] = STATE(209), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(209), - [sym__list_item_upper_alpha_paren] = STATE(706), - [sym__list_upper_alpha_parens] = STATE(209), - [sym__list_item_upper_alpha_parens] = STATE(707), - [sym__list_lower_roman_period] = STATE(209), - [sym__list_item_lower_roman_period] = STATE(725), - [sym__list_lower_roman_paren] = STATE(209), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(209), - [sym__list_item_lower_roman_parens] = STATE(736), - [sym__list_upper_roman_period] = STATE(209), - [sym__list_item_upper_roman_period] = STATE(742), - [sym__list_upper_roman_paren] = STATE(209), - [sym__list_item_upper_roman_paren] = STATE(743), - [sym__list_upper_roman_parens] = STATE(209), - [sym__list_item_upper_roman_parens] = STATE(762), - [sym_table] = STATE(111), - [sym__table_content] = STATE(66), - [sym_table_separator] = STATE(66), - [sym_table_row] = STATE(71), - [sym_footnote] = STATE(111), - [sym_footnote_marker_begin] = STATE(1008), - [sym_div] = STATE(111), - [sym__div_marker_begin] = STATE(1010), - [sym_code_block] = STATE(111), - [sym_raw_block] = STATE(111), - [sym_thematic_break] = STATE(111), - [sym_block_quote] = STATE(111), - [sym__block_quote_prefix] = STATE(230), - [sym_link_reference_definition] = STATE(111), - [sym_block_attribute] = STATE(111), - [sym__paragraph] = STATE(111), - [sym__paragraph_content] = STATE(769), - [sym__paragraph_inline_content] = STATE(775), - [sym__inline] = STATE(616), - [sym__symbol_fallback] = STATE(297), - [aux_sym_document_repeat1] = STATE(5), - [aux_sym__list_dash_repeat1] = STATE(363), - [aux_sym__list_plus_repeat1] = STATE(371), - [aux_sym__list_star_repeat1] = STATE(372), - [aux_sym__list_task_repeat1] = STATE(351), - [aux_sym__list_definition_repeat1] = STATE(531), - [aux_sym__list_decimal_period_repeat1] = STATE(532), - [aux_sym__list_decimal_paren_repeat1] = STATE(549), - [aux_sym__list_decimal_parens_repeat1] = STATE(551), + [sym_document] = STATE(901), + [sym_frontmatter] = STATE(3), + [sym__block_with_section] = STATE(114), + [sym__block_element] = STATE(114), + [sym_section] = STATE(114), + [sym_heading] = STATE(4), + [sym_list] = STATE(114), + [sym__list_dash] = STATE(115), + [sym__list_item_dash] = STATE(687), + [sym__list_plus] = STATE(115), + [sym__list_item_plus] = STATE(691), + [sym__list_star] = STATE(115), + [sym__list_item_star] = STATE(673), + [sym__list_task] = STATE(115), + [sym__list_item_task] = STATE(680), + [sym_list_marker_task] = STATE(48), + [sym__list_definition] = STATE(115), + [sym__list_item_definition] = STATE(804), + [sym__list_decimal_period] = STATE(115), + [sym__list_item_decimal_period] = STATE(837), + [sym__list_decimal_paren] = STATE(115), + [sym__list_item_decimal_paren] = STATE(703), + [sym__list_decimal_parens] = STATE(115), + [sym__list_item_decimal_parens] = STATE(715), + [sym__list_lower_alpha_period] = STATE(115), + [sym__list_item_lower_alpha_period] = STATE(739), + [sym__list_lower_alpha_paren] = STATE(115), + [sym__list_item_lower_alpha_paren] = STATE(754), + [sym__list_lower_alpha_parens] = STATE(115), + [sym__list_item_lower_alpha_parens] = STATE(755), + [sym__list_upper_alpha_period] = STATE(115), + [sym__list_item_upper_alpha_period] = STATE(758), + [sym__list_upper_alpha_paren] = STATE(115), + [sym__list_item_upper_alpha_paren] = STATE(759), + [sym__list_upper_alpha_parens] = STATE(115), + [sym__list_item_upper_alpha_parens] = STATE(766), + [sym__list_lower_roman_period] = STATE(115), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(115), + [sym__list_item_lower_roman_paren] = STATE(770), + [sym__list_lower_roman_parens] = STATE(115), + [sym__list_item_lower_roman_parens] = STATE(773), + [sym__list_upper_roman_period] = STATE(115), + [sym__list_item_upper_roman_period] = STATE(775), + [sym__list_upper_roman_paren] = STATE(115), + [sym__list_item_upper_roman_paren] = STATE(791), + [sym__list_upper_roman_parens] = STATE(115), + [sym__list_item_upper_roman_parens] = STATE(793), + [sym_table] = STATE(114), + [sym__table_row] = STATE(67), + [sym_table_header] = STATE(67), + [sym_table_separator] = STATE(67), + [sym_table_row] = STATE(67), + [sym_footnote] = STATE(114), + [sym_footnote_marker_begin] = STATE(980), + [sym_div] = STATE(114), + [sym__div_marker_begin] = STATE(994), + [sym_code_block] = STATE(114), + [sym_raw_block] = STATE(114), + [sym_thematic_break] = STATE(114), + [sym_block_quote] = STATE(114), + [sym__block_quote_prefix] = STATE(225), + [sym_link_reference_definition] = STATE(114), + [sym_block_attribute] = STATE(114), + [sym__paragraph] = STATE(114), + [sym__paragraph_content] = STATE(797), + [sym__paragraph_inline_content] = STATE(799), + [sym__inline] = STATE(629), + [sym__symbol_fallback] = STATE(285), + [aux_sym_document_repeat1] = STATE(2), + [aux_sym__list_dash_repeat1] = STATE(366), + [aux_sym__list_plus_repeat1] = STATE(381), + [aux_sym__list_star_repeat1] = STATE(368), + [aux_sym__list_task_repeat1] = STATE(322), + [aux_sym__list_definition_repeat1] = STATE(529), + [aux_sym__list_decimal_period_repeat1] = STATE(531), + [aux_sym__list_decimal_paren_repeat1] = STATE(533), + [aux_sym__list_decimal_parens_repeat1] = STATE(535), [aux_sym__list_lower_alpha_period_repeat1] = STATE(553), [aux_sym__list_lower_alpha_paren_repeat1] = STATE(555), [aux_sym__list_lower_alpha_parens_repeat1] = STATE(557), [aux_sym__list_upper_alpha_period_repeat1] = STATE(559), [aux_sym__list_upper_alpha_paren_repeat1] = STATE(561), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(461), - [aux_sym__list_lower_roman_period_repeat1] = STATE(564), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(566), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(568), - [aux_sym__list_upper_roman_period_repeat1] = STATE(570), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(572), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(576), - [aux_sym_table_repeat1] = STATE(66), - [aux_sym__block_quote_prefix_repeat1] = STATE(253), - [aux_sym__inline_repeat1] = STATE(297), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(563), + [aux_sym__list_lower_roman_period_repeat1] = STATE(565), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(567), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(569), + [aux_sym__list_upper_roman_period_repeat1] = STATE(572), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(575), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(578), + [aux_sym_table_repeat1] = STATE(67), + [aux_sym__block_quote_prefix_repeat1] = STATE(235), + [aux_sym__inline_repeat1] = STATE(285), [ts_builtin_sym_end] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(7), - [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(13), - [aux_sym__inline_token1] = ACTIONS(13), - [anon_sym_LBRACE_DASH] = ACTIONS(13), - [anon_sym_POUND] = ACTIONS(13), - [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(15), - [sym_frontmatter_marker] = ACTIONS(17), - [sym__heading_begin] = ACTIONS(19), - [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(23), - [sym_list_marker_dash] = ACTIONS(25), - [sym_list_marker_star] = ACTIONS(27), - [sym_list_marker_plus] = ACTIONS(29), - [sym__list_marker_task_begin] = ACTIONS(31), - [sym_list_marker_definition] = ACTIONS(33), - [sym_list_marker_decimal_period] = ACTIONS(35), - [sym_list_marker_lower_alpha_period] = ACTIONS(37), - [sym_list_marker_upper_alpha_period] = ACTIONS(39), - [sym_list_marker_lower_roman_period] = ACTIONS(41), - [sym_list_marker_upper_roman_period] = ACTIONS(43), - [sym_list_marker_decimal_paren] = ACTIONS(45), - [sym_list_marker_lower_alpha_paren] = ACTIONS(47), - [sym_list_marker_upper_alpha_paren] = ACTIONS(49), - [sym_list_marker_lower_roman_paren] = ACTIONS(51), - [sym_list_marker_upper_roman_paren] = ACTIONS(53), - [sym_list_marker_decimal_parens] = ACTIONS(55), - [sym_list_marker_lower_alpha_parens] = ACTIONS(57), - [sym_list_marker_upper_alpha_parens] = ACTIONS(59), - [sym_list_marker_lower_roman_parens] = ACTIONS(61), - [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(65), - [sym__block_quote_continuation] = ACTIONS(67), - [sym__thematic_break_dash] = ACTIONS(69), - [sym__thematic_break_star] = ACTIONS(69), + [anon_sym_LBRACK_CARET] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(9), + [anon_sym_DOT] = ACTIONS(11), + [aux_sym_identifier_token1] = ACTIONS(11), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_PERCENT] = ACTIONS(11), + [sym__newline] = ACTIONS(13), + [sym_frontmatter_marker] = ACTIONS(15), + [sym__heading_begin] = ACTIONS(17), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(21), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(63), + [sym__block_quote_continuation] = ACTIONS(65), + [sym__thematic_break_dash] = ACTIONS(67), + [sym__thematic_break_star] = ACTIONS(67), + [sym__table_header_begin] = ACTIONS(69), + [sym__table_separator_begin] = ACTIONS(71), + [sym__table_row_begin] = ACTIONS(73), }, [2] = { - [sym__block_with_section] = STATE(138), - [sym__block_element] = STATE(138), - [sym_section] = STATE(138), - [sym_heading] = STATE(10), - [sym_list] = STATE(138), - [sym__list_dash] = STATE(144), - [sym__list_item_dash] = STATE(636), - [sym__list_plus] = STATE(144), - [sym__list_item_plus] = STATE(637), - [sym__list_star] = STATE(144), - [sym__list_item_star] = STATE(671), - [sym__list_task] = STATE(144), - [sym__list_item_task] = STATE(691), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(144), - [sym__list_item_definition] = STATE(896), - [sym__list_decimal_period] = STATE(144), - [sym__list_item_decimal_period] = STATE(841), - [sym__list_decimal_paren] = STATE(144), - [sym__list_item_decimal_paren] = STATE(796), - [sym__list_decimal_parens] = STATE(144), - [sym__list_item_decimal_parens] = STATE(716), - [sym__list_lower_alpha_period] = STATE(144), - [sym__list_item_lower_alpha_period] = STATE(722), - [sym__list_lower_alpha_paren] = STATE(144), - [sym__list_item_lower_alpha_paren] = STATE(801), - [sym__list_lower_alpha_parens] = STATE(144), - [sym__list_item_lower_alpha_parens] = STATE(813), - [sym__list_upper_alpha_period] = STATE(144), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(144), - [sym__list_item_upper_alpha_paren] = STATE(706), - [sym__list_upper_alpha_parens] = STATE(144), - [sym__list_item_upper_alpha_parens] = STATE(707), - [sym__list_lower_roman_period] = STATE(144), - [sym__list_item_lower_roman_period] = STATE(725), - [sym__list_lower_roman_paren] = STATE(144), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(144), - [sym__list_item_lower_roman_parens] = STATE(736), - [sym__list_upper_roman_period] = STATE(144), - [sym__list_item_upper_roman_period] = STATE(742), - [sym__list_upper_roman_paren] = STATE(144), - [sym__list_item_upper_roman_paren] = STATE(743), - [sym__list_upper_roman_parens] = STATE(144), - [sym__list_item_upper_roman_parens] = STATE(762), - [sym_table] = STATE(138), - [sym__table_content] = STATE(67), + [sym__block_with_section] = STATE(114), + [sym__block_element] = STATE(114), + [sym_section] = STATE(114), + [sym_heading] = STATE(4), + [sym_list] = STATE(114), + [sym__list_dash] = STATE(115), + [sym__list_item_dash] = STATE(687), + [sym__list_plus] = STATE(115), + [sym__list_item_plus] = STATE(691), + [sym__list_star] = STATE(115), + [sym__list_item_star] = STATE(673), + [sym__list_task] = STATE(115), + [sym__list_item_task] = STATE(680), + [sym_list_marker_task] = STATE(48), + [sym__list_definition] = STATE(115), + [sym__list_item_definition] = STATE(804), + [sym__list_decimal_period] = STATE(115), + [sym__list_item_decimal_period] = STATE(837), + [sym__list_decimal_paren] = STATE(115), + [sym__list_item_decimal_paren] = STATE(703), + [sym__list_decimal_parens] = STATE(115), + [sym__list_item_decimal_parens] = STATE(715), + [sym__list_lower_alpha_period] = STATE(115), + [sym__list_item_lower_alpha_period] = STATE(739), + [sym__list_lower_alpha_paren] = STATE(115), + [sym__list_item_lower_alpha_paren] = STATE(754), + [sym__list_lower_alpha_parens] = STATE(115), + [sym__list_item_lower_alpha_parens] = STATE(755), + [sym__list_upper_alpha_period] = STATE(115), + [sym__list_item_upper_alpha_period] = STATE(758), + [sym__list_upper_alpha_paren] = STATE(115), + [sym__list_item_upper_alpha_paren] = STATE(759), + [sym__list_upper_alpha_parens] = STATE(115), + [sym__list_item_upper_alpha_parens] = STATE(766), + [sym__list_lower_roman_period] = STATE(115), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(115), + [sym__list_item_lower_roman_paren] = STATE(770), + [sym__list_lower_roman_parens] = STATE(115), + [sym__list_item_lower_roman_parens] = STATE(773), + [sym__list_upper_roman_period] = STATE(115), + [sym__list_item_upper_roman_period] = STATE(775), + [sym__list_upper_roman_paren] = STATE(115), + [sym__list_item_upper_roman_paren] = STATE(791), + [sym__list_upper_roman_parens] = STATE(115), + [sym__list_item_upper_roman_parens] = STATE(793), + [sym_table] = STATE(114), + [sym__table_row] = STATE(67), + [sym_table_header] = STATE(67), [sym_table_separator] = STATE(67), - [sym_table_row] = STATE(70), - [sym_footnote] = STATE(138), - [sym_footnote_marker_begin] = STATE(1180), - [sym_div] = STATE(138), - [sym__div_marker_begin] = STATE(1074), - [sym_code_block] = STATE(138), - [sym_raw_block] = STATE(138), - [sym_thematic_break] = STATE(138), - [sym_block_quote] = STATE(138), - [sym__block_quote_prefix] = STATE(233), - [sym_link_reference_definition] = STATE(138), - [sym_block_attribute] = STATE(138), - [sym__paragraph] = STATE(138), - [sym__paragraph_content] = STATE(773), - [sym__paragraph_inline_content] = STATE(775), - [sym__inline] = STATE(616), - [sym__symbol_fallback] = STATE(297), - [aux_sym_document_repeat1] = STATE(9), - [aux_sym__list_dash_repeat1] = STATE(357), - [aux_sym__list_plus_repeat1] = STATE(358), - [aux_sym__list_star_repeat1] = STATE(359), - [aux_sym__list_task_repeat1] = STATE(344), - [aux_sym__list_definition_repeat1] = STATE(515), - [aux_sym__list_decimal_period_repeat1] = STATE(516), - [aux_sym__list_decimal_paren_repeat1] = STATE(517), - [aux_sym__list_decimal_parens_repeat1] = STATE(518), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(519), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(520), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(521), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(522), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(523), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(524), - [aux_sym__list_lower_roman_period_repeat1] = STATE(525), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(526), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(527), - [aux_sym__list_upper_roman_period_repeat1] = STATE(528), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(529), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(530), + [sym_table_row] = STATE(67), + [sym_footnote] = STATE(114), + [sym_footnote_marker_begin] = STATE(980), + [sym_div] = STATE(114), + [sym__div_marker_begin] = STATE(994), + [sym_code_block] = STATE(114), + [sym_raw_block] = STATE(114), + [sym_thematic_break] = STATE(114), + [sym_block_quote] = STATE(114), + [sym__block_quote_prefix] = STATE(225), + [sym_link_reference_definition] = STATE(114), + [sym_block_attribute] = STATE(114), + [sym__paragraph] = STATE(114), + [sym__paragraph_content] = STATE(797), + [sym__paragraph_inline_content] = STATE(799), + [sym__inline] = STATE(629), + [sym__symbol_fallback] = STATE(285), + [aux_sym_document_repeat1] = STATE(7), + [aux_sym__list_dash_repeat1] = STATE(366), + [aux_sym__list_plus_repeat1] = STATE(381), + [aux_sym__list_star_repeat1] = STATE(368), + [aux_sym__list_task_repeat1] = STATE(322), + [aux_sym__list_definition_repeat1] = STATE(529), + [aux_sym__list_decimal_period_repeat1] = STATE(531), + [aux_sym__list_decimal_paren_repeat1] = STATE(533), + [aux_sym__list_decimal_parens_repeat1] = STATE(535), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(553), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(555), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(557), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(559), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(561), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(563), + [aux_sym__list_lower_roman_period_repeat1] = STATE(565), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(567), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(569), + [aux_sym__list_upper_roman_period_repeat1] = STATE(572), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(575), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(578), [aux_sym_table_repeat1] = STATE(67), - [aux_sym__block_quote_prefix_repeat1] = STATE(253), - [aux_sym__inline_repeat1] = STATE(297), - [anon_sym_LBRACK] = ACTIONS(71), - [anon_sym_PIPE] = ACTIONS(73), - [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(75), - [anon_sym_DOT] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(13), - [aux_sym__inline_token1] = ACTIONS(13), - [anon_sym_LBRACE_DASH] = ACTIONS(13), - [anon_sym_POUND] = ACTIONS(13), - [anon_sym_PERCENT] = ACTIONS(13), - [sym__block_close] = ACTIONS(77), - [sym__newline] = ACTIONS(79), - [sym__heading_begin] = ACTIONS(19), - [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(81), - [sym_list_marker_dash] = ACTIONS(25), - [sym_list_marker_star] = ACTIONS(27), - [sym_list_marker_plus] = ACTIONS(29), - [sym__list_marker_task_begin] = ACTIONS(31), - [sym_list_marker_definition] = ACTIONS(33), - [sym_list_marker_decimal_period] = ACTIONS(35), - [sym_list_marker_lower_alpha_period] = ACTIONS(37), - [sym_list_marker_upper_alpha_period] = ACTIONS(39), - [sym_list_marker_lower_roman_period] = ACTIONS(41), - [sym_list_marker_upper_roman_period] = ACTIONS(43), - [sym_list_marker_decimal_paren] = ACTIONS(45), - [sym_list_marker_lower_alpha_paren] = ACTIONS(47), - [sym_list_marker_upper_alpha_paren] = ACTIONS(49), - [sym_list_marker_lower_roman_paren] = ACTIONS(51), - [sym_list_marker_upper_roman_paren] = ACTIONS(53), - [sym_list_marker_decimal_parens] = ACTIONS(55), - [sym_list_marker_lower_alpha_parens] = ACTIONS(57), - [sym_list_marker_upper_alpha_parens] = ACTIONS(59), - [sym_list_marker_lower_roman_parens] = ACTIONS(61), - [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(83), - [sym__block_quote_continuation] = ACTIONS(67), - [sym__thematic_break_dash] = ACTIONS(85), - [sym__thematic_break_star] = ACTIONS(85), + [aux_sym__block_quote_prefix_repeat1] = STATE(235), + [aux_sym__inline_repeat1] = STATE(285), + [ts_builtin_sym_end] = ACTIONS(75), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_LBRACK_CARET] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(9), + [anon_sym_DOT] = ACTIONS(11), + [aux_sym_identifier_token1] = ACTIONS(11), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_PERCENT] = ACTIONS(11), + [sym__newline] = ACTIONS(13), + [sym__heading_begin] = ACTIONS(17), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(21), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(63), + [sym__block_quote_continuation] = ACTIONS(65), + [sym__thematic_break_dash] = ACTIONS(67), + [sym__thematic_break_star] = ACTIONS(67), + [sym__table_header_begin] = ACTIONS(69), + [sym__table_separator_begin] = ACTIONS(71), + [sym__table_row_begin] = ACTIONS(73), }, [3] = { - [sym__block_with_section] = STATE(138), - [sym__block_element] = STATE(138), - [sym_section] = STATE(138), - [sym_heading] = STATE(10), - [sym_list] = STATE(138), - [sym__list_dash] = STATE(144), - [sym__list_item_dash] = STATE(636), - [sym__list_plus] = STATE(144), - [sym__list_item_plus] = STATE(637), - [sym__list_star] = STATE(144), - [sym__list_item_star] = STATE(671), - [sym__list_task] = STATE(144), - [sym__list_item_task] = STATE(691), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(144), - [sym__list_item_definition] = STATE(896), - [sym__list_decimal_period] = STATE(144), - [sym__list_item_decimal_period] = STATE(841), - [sym__list_decimal_paren] = STATE(144), - [sym__list_item_decimal_paren] = STATE(796), - [sym__list_decimal_parens] = STATE(144), - [sym__list_item_decimal_parens] = STATE(716), - [sym__list_lower_alpha_period] = STATE(144), - [sym__list_item_lower_alpha_period] = STATE(722), - [sym__list_lower_alpha_paren] = STATE(144), - [sym__list_item_lower_alpha_paren] = STATE(801), - [sym__list_lower_alpha_parens] = STATE(144), - [sym__list_item_lower_alpha_parens] = STATE(813), - [sym__list_upper_alpha_period] = STATE(144), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(144), - [sym__list_item_upper_alpha_paren] = STATE(706), - [sym__list_upper_alpha_parens] = STATE(144), - [sym__list_item_upper_alpha_parens] = STATE(707), - [sym__list_lower_roman_period] = STATE(144), - [sym__list_item_lower_roman_period] = STATE(725), - [sym__list_lower_roman_paren] = STATE(144), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(144), - [sym__list_item_lower_roman_parens] = STATE(736), - [sym__list_upper_roman_period] = STATE(144), - [sym__list_item_upper_roman_period] = STATE(742), - [sym__list_upper_roman_paren] = STATE(144), - [sym__list_item_upper_roman_paren] = STATE(743), - [sym__list_upper_roman_parens] = STATE(144), - [sym__list_item_upper_roman_parens] = STATE(762), - [sym_table] = STATE(138), - [sym__table_content] = STATE(67), + [sym__block_with_section] = STATE(114), + [sym__block_element] = STATE(114), + [sym_section] = STATE(114), + [sym_heading] = STATE(4), + [sym_list] = STATE(114), + [sym__list_dash] = STATE(115), + [sym__list_item_dash] = STATE(687), + [sym__list_plus] = STATE(115), + [sym__list_item_plus] = STATE(691), + [sym__list_star] = STATE(115), + [sym__list_item_star] = STATE(673), + [sym__list_task] = STATE(115), + [sym__list_item_task] = STATE(680), + [sym_list_marker_task] = STATE(48), + [sym__list_definition] = STATE(115), + [sym__list_item_definition] = STATE(804), + [sym__list_decimal_period] = STATE(115), + [sym__list_item_decimal_period] = STATE(837), + [sym__list_decimal_paren] = STATE(115), + [sym__list_item_decimal_paren] = STATE(703), + [sym__list_decimal_parens] = STATE(115), + [sym__list_item_decimal_parens] = STATE(715), + [sym__list_lower_alpha_period] = STATE(115), + [sym__list_item_lower_alpha_period] = STATE(739), + [sym__list_lower_alpha_paren] = STATE(115), + [sym__list_item_lower_alpha_paren] = STATE(754), + [sym__list_lower_alpha_parens] = STATE(115), + [sym__list_item_lower_alpha_parens] = STATE(755), + [sym__list_upper_alpha_period] = STATE(115), + [sym__list_item_upper_alpha_period] = STATE(758), + [sym__list_upper_alpha_paren] = STATE(115), + [sym__list_item_upper_alpha_paren] = STATE(759), + [sym__list_upper_alpha_parens] = STATE(115), + [sym__list_item_upper_alpha_parens] = STATE(766), + [sym__list_lower_roman_period] = STATE(115), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(115), + [sym__list_item_lower_roman_paren] = STATE(770), + [sym__list_lower_roman_parens] = STATE(115), + [sym__list_item_lower_roman_parens] = STATE(773), + [sym__list_upper_roman_period] = STATE(115), + [sym__list_item_upper_roman_period] = STATE(775), + [sym__list_upper_roman_paren] = STATE(115), + [sym__list_item_upper_roman_paren] = STATE(791), + [sym__list_upper_roman_parens] = STATE(115), + [sym__list_item_upper_roman_parens] = STATE(793), + [sym_table] = STATE(114), + [sym__table_row] = STATE(67), + [sym_table_header] = STATE(67), [sym_table_separator] = STATE(67), - [sym_table_row] = STATE(70), - [sym_footnote] = STATE(138), - [sym_footnote_marker_begin] = STATE(1180), - [sym_div] = STATE(138), - [sym__div_marker_begin] = STATE(1074), - [sym_code_block] = STATE(138), - [sym_raw_block] = STATE(138), - [sym_thematic_break] = STATE(138), - [sym_block_quote] = STATE(138), - [sym__block_quote_prefix] = STATE(233), - [sym_link_reference_definition] = STATE(138), - [sym_block_attribute] = STATE(138), - [sym__paragraph] = STATE(138), - [sym__paragraph_content] = STATE(773), - [sym__paragraph_inline_content] = STATE(775), - [sym__inline] = STATE(616), - [sym__symbol_fallback] = STATE(297), - [aux_sym_document_repeat1] = STATE(7), - [aux_sym__list_dash_repeat1] = STATE(357), - [aux_sym__list_plus_repeat1] = STATE(358), - [aux_sym__list_star_repeat1] = STATE(359), - [aux_sym__list_task_repeat1] = STATE(344), - [aux_sym__list_definition_repeat1] = STATE(515), - [aux_sym__list_decimal_period_repeat1] = STATE(516), - [aux_sym__list_decimal_paren_repeat1] = STATE(517), - [aux_sym__list_decimal_parens_repeat1] = STATE(518), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(519), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(520), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(521), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(522), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(523), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(524), - [aux_sym__list_lower_roman_period_repeat1] = STATE(525), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(526), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(527), - [aux_sym__list_upper_roman_period_repeat1] = STATE(528), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(529), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(530), - [aux_sym_table_repeat1] = STATE(67), - [aux_sym__block_quote_prefix_repeat1] = STATE(253), - [aux_sym__inline_repeat1] = STATE(297), - [anon_sym_LBRACK] = ACTIONS(71), - [anon_sym_PIPE] = ACTIONS(73), - [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(75), - [anon_sym_DOT] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(13), - [aux_sym__inline_token1] = ACTIONS(13), - [anon_sym_LBRACE_DASH] = ACTIONS(13), - [anon_sym_POUND] = ACTIONS(13), - [anon_sym_PERCENT] = ACTIONS(13), - [sym__block_close] = ACTIONS(87), - [sym__newline] = ACTIONS(79), - [sym__heading_begin] = ACTIONS(19), - [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(81), - [sym_list_marker_dash] = ACTIONS(25), - [sym_list_marker_star] = ACTIONS(27), - [sym_list_marker_plus] = ACTIONS(29), - [sym__list_marker_task_begin] = ACTIONS(31), - [sym_list_marker_definition] = ACTIONS(33), - [sym_list_marker_decimal_period] = ACTIONS(35), - [sym_list_marker_lower_alpha_period] = ACTIONS(37), - [sym_list_marker_upper_alpha_period] = ACTIONS(39), - [sym_list_marker_lower_roman_period] = ACTIONS(41), - [sym_list_marker_upper_roman_period] = ACTIONS(43), - [sym_list_marker_decimal_paren] = ACTIONS(45), - [sym_list_marker_lower_alpha_paren] = ACTIONS(47), - [sym_list_marker_upper_alpha_paren] = ACTIONS(49), - [sym_list_marker_lower_roman_paren] = ACTIONS(51), - [sym_list_marker_upper_roman_paren] = ACTIONS(53), - [sym_list_marker_decimal_parens] = ACTIONS(55), - [sym_list_marker_lower_alpha_parens] = ACTIONS(57), - [sym_list_marker_upper_alpha_parens] = ACTIONS(59), - [sym_list_marker_lower_roman_parens] = ACTIONS(61), - [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(83), - [sym__block_quote_continuation] = ACTIONS(67), - [sym__thematic_break_dash] = ACTIONS(85), - [sym__thematic_break_star] = ACTIONS(85), - }, - [4] = { - [sym__block_with_section] = STATE(111), - [sym__block_element] = STATE(111), - [sym_section] = STATE(111), - [sym_heading] = STATE(3), - [sym_list] = STATE(111), - [sym__list_dash] = STATE(209), - [sym__list_item_dash] = STATE(636), - [sym__list_plus] = STATE(209), - [sym__list_item_plus] = STATE(637), - [sym__list_star] = STATE(209), - [sym__list_item_star] = STATE(671), - [sym__list_task] = STATE(209), - [sym__list_item_task] = STATE(691), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(209), - [sym__list_item_definition] = STATE(896), - [sym__list_decimal_period] = STATE(209), - [sym__list_item_decimal_period] = STATE(841), - [sym__list_decimal_paren] = STATE(209), - [sym__list_item_decimal_paren] = STATE(796), - [sym__list_decimal_parens] = STATE(209), - [sym__list_item_decimal_parens] = STATE(716), - [sym__list_lower_alpha_period] = STATE(209), - [sym__list_item_lower_alpha_period] = STATE(722), - [sym__list_lower_alpha_paren] = STATE(209), - [sym__list_item_lower_alpha_paren] = STATE(801), - [sym__list_lower_alpha_parens] = STATE(209), - [sym__list_item_lower_alpha_parens] = STATE(813), - [sym__list_upper_alpha_period] = STATE(209), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(209), - [sym__list_item_upper_alpha_paren] = STATE(706), - [sym__list_upper_alpha_parens] = STATE(209), - [sym__list_item_upper_alpha_parens] = STATE(707), - [sym__list_lower_roman_period] = STATE(209), - [sym__list_item_lower_roman_period] = STATE(725), - [sym__list_lower_roman_paren] = STATE(209), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(209), - [sym__list_item_lower_roman_parens] = STATE(736), - [sym__list_upper_roman_period] = STATE(209), - [sym__list_item_upper_roman_period] = STATE(742), - [sym__list_upper_roman_paren] = STATE(209), - [sym__list_item_upper_roman_paren] = STATE(743), - [sym__list_upper_roman_parens] = STATE(209), - [sym__list_item_upper_roman_parens] = STATE(762), - [sym_table] = STATE(111), - [sym__table_content] = STATE(66), - [sym_table_separator] = STATE(66), - [sym_table_row] = STATE(71), - [sym_footnote] = STATE(111), - [sym_footnote_marker_begin] = STATE(1008), - [sym_div] = STATE(111), - [sym__div_marker_begin] = STATE(1010), - [sym_code_block] = STATE(111), - [sym_raw_block] = STATE(111), - [sym_thematic_break] = STATE(111), - [sym_block_quote] = STATE(111), - [sym__block_quote_prefix] = STATE(230), - [sym_link_reference_definition] = STATE(111), - [sym_block_attribute] = STATE(111), - [sym__paragraph] = STATE(111), - [sym__paragraph_content] = STATE(769), - [sym__paragraph_inline_content] = STATE(775), - [sym__inline] = STATE(616), - [sym__symbol_fallback] = STATE(297), + [sym_table_row] = STATE(67), + [sym_footnote] = STATE(114), + [sym_footnote_marker_begin] = STATE(980), + [sym_div] = STATE(114), + [sym__div_marker_begin] = STATE(994), + [sym_code_block] = STATE(114), + [sym_raw_block] = STATE(114), + [sym_thematic_break] = STATE(114), + [sym_block_quote] = STATE(114), + [sym__block_quote_prefix] = STATE(225), + [sym_link_reference_definition] = STATE(114), + [sym_block_attribute] = STATE(114), + [sym__paragraph] = STATE(114), + [sym__paragraph_content] = STATE(797), + [sym__paragraph_inline_content] = STATE(799), + [sym__inline] = STATE(629), + [sym__symbol_fallback] = STATE(285), [aux_sym_document_repeat1] = STATE(6), - [aux_sym__list_dash_repeat1] = STATE(363), - [aux_sym__list_plus_repeat1] = STATE(371), - [aux_sym__list_star_repeat1] = STATE(372), - [aux_sym__list_task_repeat1] = STATE(351), - [aux_sym__list_definition_repeat1] = STATE(531), - [aux_sym__list_decimal_period_repeat1] = STATE(532), - [aux_sym__list_decimal_paren_repeat1] = STATE(549), - [aux_sym__list_decimal_parens_repeat1] = STATE(551), + [aux_sym__list_dash_repeat1] = STATE(366), + [aux_sym__list_plus_repeat1] = STATE(381), + [aux_sym__list_star_repeat1] = STATE(368), + [aux_sym__list_task_repeat1] = STATE(322), + [aux_sym__list_definition_repeat1] = STATE(529), + [aux_sym__list_decimal_period_repeat1] = STATE(531), + [aux_sym__list_decimal_paren_repeat1] = STATE(533), + [aux_sym__list_decimal_parens_repeat1] = STATE(535), [aux_sym__list_lower_alpha_period_repeat1] = STATE(553), [aux_sym__list_lower_alpha_paren_repeat1] = STATE(555), [aux_sym__list_lower_alpha_parens_repeat1] = STATE(557), [aux_sym__list_upper_alpha_period_repeat1] = STATE(559), [aux_sym__list_upper_alpha_paren_repeat1] = STATE(561), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(461), - [aux_sym__list_lower_roman_period_repeat1] = STATE(564), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(566), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(568), - [aux_sym__list_upper_roman_period_repeat1] = STATE(570), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(572), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(576), - [aux_sym_table_repeat1] = STATE(66), - [aux_sym__block_quote_prefix_repeat1] = STATE(253), - [aux_sym__inline_repeat1] = STATE(297), - [ts_builtin_sym_end] = ACTIONS(89), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(563), + [aux_sym__list_lower_roman_period_repeat1] = STATE(565), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(567), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(569), + [aux_sym__list_upper_roman_period_repeat1] = STATE(572), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(575), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(578), + [aux_sym_table_repeat1] = STATE(67), + [aux_sym__block_quote_prefix_repeat1] = STATE(235), + [aux_sym__inline_repeat1] = STATE(285), + [ts_builtin_sym_end] = ACTIONS(75), [anon_sym_LBRACK] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(7), - [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(13), - [aux_sym__inline_token1] = ACTIONS(13), - [anon_sym_LBRACE_DASH] = ACTIONS(13), - [anon_sym_POUND] = ACTIONS(13), - [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(15), - [sym__heading_begin] = ACTIONS(19), - [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(23), - [sym_list_marker_dash] = ACTIONS(25), - [sym_list_marker_star] = ACTIONS(27), - [sym_list_marker_plus] = ACTIONS(29), - [sym__list_marker_task_begin] = ACTIONS(31), - [sym_list_marker_definition] = ACTIONS(33), - [sym_list_marker_decimal_period] = ACTIONS(35), - [sym_list_marker_lower_alpha_period] = ACTIONS(37), - [sym_list_marker_upper_alpha_period] = ACTIONS(39), - [sym_list_marker_lower_roman_period] = ACTIONS(41), - [sym_list_marker_upper_roman_period] = ACTIONS(43), - [sym_list_marker_decimal_paren] = ACTIONS(45), - [sym_list_marker_lower_alpha_paren] = ACTIONS(47), - [sym_list_marker_upper_alpha_paren] = ACTIONS(49), - [sym_list_marker_lower_roman_paren] = ACTIONS(51), - [sym_list_marker_upper_roman_paren] = ACTIONS(53), - [sym_list_marker_decimal_parens] = ACTIONS(55), - [sym_list_marker_lower_alpha_parens] = ACTIONS(57), - [sym_list_marker_upper_alpha_parens] = ACTIONS(59), - [sym_list_marker_lower_roman_parens] = ACTIONS(61), - [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(65), - [sym__block_quote_continuation] = ACTIONS(67), - [sym__thematic_break_dash] = ACTIONS(69), - [sym__thematic_break_star] = ACTIONS(69), + [anon_sym_LBRACK_CARET] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(9), + [anon_sym_DOT] = ACTIONS(11), + [aux_sym_identifier_token1] = ACTIONS(11), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_PERCENT] = ACTIONS(11), + [sym__newline] = ACTIONS(13), + [sym__heading_begin] = ACTIONS(17), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(21), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(63), + [sym__block_quote_continuation] = ACTIONS(65), + [sym__thematic_break_dash] = ACTIONS(67), + [sym__thematic_break_star] = ACTIONS(67), + [sym__table_header_begin] = ACTIONS(69), + [sym__table_separator_begin] = ACTIONS(71), + [sym__table_row_begin] = ACTIONS(73), + }, + [4] = { + [sym__block_with_section] = STATE(137), + [sym__block_element] = STATE(137), + [sym_section] = STATE(137), + [sym_heading] = STATE(9), + [sym_list] = STATE(137), + [sym__list_dash] = STATE(143), + [sym__list_item_dash] = STATE(687), + [sym__list_plus] = STATE(143), + [sym__list_item_plus] = STATE(691), + [sym__list_star] = STATE(143), + [sym__list_item_star] = STATE(673), + [sym__list_task] = STATE(143), + [sym__list_item_task] = STATE(680), + [sym_list_marker_task] = STATE(48), + [sym__list_definition] = STATE(143), + [sym__list_item_definition] = STATE(804), + [sym__list_decimal_period] = STATE(143), + [sym__list_item_decimal_period] = STATE(837), + [sym__list_decimal_paren] = STATE(143), + [sym__list_item_decimal_paren] = STATE(703), + [sym__list_decimal_parens] = STATE(143), + [sym__list_item_decimal_parens] = STATE(715), + [sym__list_lower_alpha_period] = STATE(143), + [sym__list_item_lower_alpha_period] = STATE(739), + [sym__list_lower_alpha_paren] = STATE(143), + [sym__list_item_lower_alpha_paren] = STATE(754), + [sym__list_lower_alpha_parens] = STATE(143), + [sym__list_item_lower_alpha_parens] = STATE(755), + [sym__list_upper_alpha_period] = STATE(143), + [sym__list_item_upper_alpha_period] = STATE(758), + [sym__list_upper_alpha_paren] = STATE(143), + [sym__list_item_upper_alpha_paren] = STATE(759), + [sym__list_upper_alpha_parens] = STATE(143), + [sym__list_item_upper_alpha_parens] = STATE(766), + [sym__list_lower_roman_period] = STATE(143), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(143), + [sym__list_item_lower_roman_paren] = STATE(770), + [sym__list_lower_roman_parens] = STATE(143), + [sym__list_item_lower_roman_parens] = STATE(773), + [sym__list_upper_roman_period] = STATE(143), + [sym__list_item_upper_roman_period] = STATE(775), + [sym__list_upper_roman_paren] = STATE(143), + [sym__list_item_upper_roman_paren] = STATE(791), + [sym__list_upper_roman_parens] = STATE(143), + [sym__list_item_upper_roman_parens] = STATE(793), + [sym_table] = STATE(137), + [sym__table_row] = STATE(66), + [sym_table_header] = STATE(66), + [sym_table_separator] = STATE(66), + [sym_table_row] = STATE(66), + [sym_footnote] = STATE(137), + [sym_footnote_marker_begin] = STATE(1145), + [sym_div] = STATE(137), + [sym__div_marker_begin] = STATE(1061), + [sym_code_block] = STATE(137), + [sym_raw_block] = STATE(137), + [sym_thematic_break] = STATE(137), + [sym_block_quote] = STATE(137), + [sym__block_quote_prefix] = STATE(224), + [sym_link_reference_definition] = STATE(137), + [sym_block_attribute] = STATE(137), + [sym__paragraph] = STATE(137), + [sym__paragraph_content] = STATE(800), + [sym__paragraph_inline_content] = STATE(799), + [sym__inline] = STATE(629), + [sym__symbol_fallback] = STATE(285), + [aux_sym_document_repeat1] = STATE(5), + [aux_sym__list_dash_repeat1] = STATE(351), + [aux_sym__list_plus_repeat1] = STATE(350), + [aux_sym__list_star_repeat1] = STATE(353), + [aux_sym__list_task_repeat1] = STATE(339), + [aux_sym__list_definition_repeat1] = STATE(512), + [aux_sym__list_decimal_period_repeat1] = STATE(513), + [aux_sym__list_decimal_paren_repeat1] = STATE(514), + [aux_sym__list_decimal_parens_repeat1] = STATE(515), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(516), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(518), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(519), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(520), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(521), + [aux_sym__list_lower_roman_period_repeat1] = STATE(579), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(523), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(524), + [aux_sym__list_upper_roman_period_repeat1] = STATE(525), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(526), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(527), + [aux_sym_table_repeat1] = STATE(66), + [aux_sym__block_quote_prefix_repeat1] = STATE(235), + [aux_sym__inline_repeat1] = STATE(285), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_LBRACK_CARET] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_DOT] = ACTIONS(11), + [aux_sym_identifier_token1] = ACTIONS(11), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_PERCENT] = ACTIONS(11), + [sym__block_close] = ACTIONS(81), + [sym__newline] = ACTIONS(83), + [sym__heading_begin] = ACTIONS(17), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(85), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(87), + [sym__block_quote_continuation] = ACTIONS(65), + [sym__thematic_break_dash] = ACTIONS(89), + [sym__thematic_break_star] = ACTIONS(89), + [sym__table_header_begin] = ACTIONS(91), + [sym__table_separator_begin] = ACTIONS(93), + [sym__table_row_begin] = ACTIONS(95), }, [5] = { - [sym__block_with_section] = STATE(111), - [sym__block_element] = STATE(111), - [sym_section] = STATE(111), - [sym_heading] = STATE(3), - [sym_list] = STATE(111), - [sym__list_dash] = STATE(209), - [sym__list_item_dash] = STATE(636), - [sym__list_plus] = STATE(209), - [sym__list_item_plus] = STATE(637), - [sym__list_star] = STATE(209), - [sym__list_item_star] = STATE(671), - [sym__list_task] = STATE(209), - [sym__list_item_task] = STATE(691), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(209), - [sym__list_item_definition] = STATE(896), - [sym__list_decimal_period] = STATE(209), - [sym__list_item_decimal_period] = STATE(841), - [sym__list_decimal_paren] = STATE(209), - [sym__list_item_decimal_paren] = STATE(796), - [sym__list_decimal_parens] = STATE(209), - [sym__list_item_decimal_parens] = STATE(716), - [sym__list_lower_alpha_period] = STATE(209), - [sym__list_item_lower_alpha_period] = STATE(722), - [sym__list_lower_alpha_paren] = STATE(209), - [sym__list_item_lower_alpha_paren] = STATE(801), - [sym__list_lower_alpha_parens] = STATE(209), - [sym__list_item_lower_alpha_parens] = STATE(813), - [sym__list_upper_alpha_period] = STATE(209), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(209), - [sym__list_item_upper_alpha_paren] = STATE(706), - [sym__list_upper_alpha_parens] = STATE(209), - [sym__list_item_upper_alpha_parens] = STATE(707), - [sym__list_lower_roman_period] = STATE(209), - [sym__list_item_lower_roman_period] = STATE(725), - [sym__list_lower_roman_paren] = STATE(209), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(209), - [sym__list_item_lower_roman_parens] = STATE(736), - [sym__list_upper_roman_period] = STATE(209), - [sym__list_item_upper_roman_period] = STATE(742), - [sym__list_upper_roman_paren] = STATE(209), - [sym__list_item_upper_roman_paren] = STATE(743), - [sym__list_upper_roman_parens] = STATE(209), - [sym__list_item_upper_roman_parens] = STATE(762), - [sym_table] = STATE(111), - [sym__table_content] = STATE(66), + [sym__block_with_section] = STATE(137), + [sym__block_element] = STATE(137), + [sym_section] = STATE(137), + [sym_heading] = STATE(9), + [sym_list] = STATE(137), + [sym__list_dash] = STATE(143), + [sym__list_item_dash] = STATE(687), + [sym__list_plus] = STATE(143), + [sym__list_item_plus] = STATE(691), + [sym__list_star] = STATE(143), + [sym__list_item_star] = STATE(673), + [sym__list_task] = STATE(143), + [sym__list_item_task] = STATE(680), + [sym_list_marker_task] = STATE(48), + [sym__list_definition] = STATE(143), + [sym__list_item_definition] = STATE(804), + [sym__list_decimal_period] = STATE(143), + [sym__list_item_decimal_period] = STATE(837), + [sym__list_decimal_paren] = STATE(143), + [sym__list_item_decimal_paren] = STATE(703), + [sym__list_decimal_parens] = STATE(143), + [sym__list_item_decimal_parens] = STATE(715), + [sym__list_lower_alpha_period] = STATE(143), + [sym__list_item_lower_alpha_period] = STATE(739), + [sym__list_lower_alpha_paren] = STATE(143), + [sym__list_item_lower_alpha_paren] = STATE(754), + [sym__list_lower_alpha_parens] = STATE(143), + [sym__list_item_lower_alpha_parens] = STATE(755), + [sym__list_upper_alpha_period] = STATE(143), + [sym__list_item_upper_alpha_period] = STATE(758), + [sym__list_upper_alpha_paren] = STATE(143), + [sym__list_item_upper_alpha_paren] = STATE(759), + [sym__list_upper_alpha_parens] = STATE(143), + [sym__list_item_upper_alpha_parens] = STATE(766), + [sym__list_lower_roman_period] = STATE(143), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(143), + [sym__list_item_lower_roman_paren] = STATE(770), + [sym__list_lower_roman_parens] = STATE(143), + [sym__list_item_lower_roman_parens] = STATE(773), + [sym__list_upper_roman_period] = STATE(143), + [sym__list_item_upper_roman_period] = STATE(775), + [sym__list_upper_roman_paren] = STATE(143), + [sym__list_item_upper_roman_paren] = STATE(791), + [sym__list_upper_roman_parens] = STATE(143), + [sym__list_item_upper_roman_parens] = STATE(793), + [sym_table] = STATE(137), + [sym__table_row] = STATE(66), + [sym_table_header] = STATE(66), [sym_table_separator] = STATE(66), - [sym_table_row] = STATE(71), - [sym_footnote] = STATE(111), - [sym_footnote_marker_begin] = STATE(1008), - [sym_div] = STATE(111), - [sym__div_marker_begin] = STATE(1010), - [sym_code_block] = STATE(111), - [sym_raw_block] = STATE(111), - [sym_thematic_break] = STATE(111), - [sym_block_quote] = STATE(111), - [sym__block_quote_prefix] = STATE(230), - [sym_link_reference_definition] = STATE(111), - [sym_block_attribute] = STATE(111), - [sym__paragraph] = STATE(111), - [sym__paragraph_content] = STATE(769), - [sym__paragraph_inline_content] = STATE(775), - [sym__inline] = STATE(616), - [sym__symbol_fallback] = STATE(297), + [sym_table_row] = STATE(66), + [sym_footnote] = STATE(137), + [sym_footnote_marker_begin] = STATE(1145), + [sym_div] = STATE(137), + [sym__div_marker_begin] = STATE(1061), + [sym_code_block] = STATE(137), + [sym_raw_block] = STATE(137), + [sym_thematic_break] = STATE(137), + [sym_block_quote] = STATE(137), + [sym__block_quote_prefix] = STATE(224), + [sym_link_reference_definition] = STATE(137), + [sym_block_attribute] = STATE(137), + [sym__paragraph] = STATE(137), + [sym__paragraph_content] = STATE(800), + [sym__paragraph_inline_content] = STATE(799), + [sym__inline] = STATE(629), + [sym__symbol_fallback] = STATE(285), [aux_sym_document_repeat1] = STATE(8), - [aux_sym__list_dash_repeat1] = STATE(363), - [aux_sym__list_plus_repeat1] = STATE(371), - [aux_sym__list_star_repeat1] = STATE(372), - [aux_sym__list_task_repeat1] = STATE(351), - [aux_sym__list_definition_repeat1] = STATE(531), - [aux_sym__list_decimal_period_repeat1] = STATE(532), - [aux_sym__list_decimal_paren_repeat1] = STATE(549), - [aux_sym__list_decimal_parens_repeat1] = STATE(551), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(553), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(555), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(557), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(559), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(561), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(461), - [aux_sym__list_lower_roman_period_repeat1] = STATE(564), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(566), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(568), - [aux_sym__list_upper_roman_period_repeat1] = STATE(570), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(572), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(576), + [aux_sym__list_dash_repeat1] = STATE(351), + [aux_sym__list_plus_repeat1] = STATE(350), + [aux_sym__list_star_repeat1] = STATE(353), + [aux_sym__list_task_repeat1] = STATE(339), + [aux_sym__list_definition_repeat1] = STATE(512), + [aux_sym__list_decimal_period_repeat1] = STATE(513), + [aux_sym__list_decimal_paren_repeat1] = STATE(514), + [aux_sym__list_decimal_parens_repeat1] = STATE(515), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(516), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(518), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(519), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(520), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(521), + [aux_sym__list_lower_roman_period_repeat1] = STATE(579), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(523), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(524), + [aux_sym__list_upper_roman_period_repeat1] = STATE(525), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(526), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(527), [aux_sym_table_repeat1] = STATE(66), - [aux_sym__block_quote_prefix_repeat1] = STATE(253), - [aux_sym__inline_repeat1] = STATE(297), - [ts_builtin_sym_end] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(7), - [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(13), - [aux_sym__inline_token1] = ACTIONS(13), - [anon_sym_LBRACE_DASH] = ACTIONS(13), - [anon_sym_POUND] = ACTIONS(13), - [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(15), - [sym__heading_begin] = ACTIONS(19), - [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(23), - [sym_list_marker_dash] = ACTIONS(25), - [sym_list_marker_star] = ACTIONS(27), - [sym_list_marker_plus] = ACTIONS(29), - [sym__list_marker_task_begin] = ACTIONS(31), - [sym_list_marker_definition] = ACTIONS(33), - [sym_list_marker_decimal_period] = ACTIONS(35), - [sym_list_marker_lower_alpha_period] = ACTIONS(37), - [sym_list_marker_upper_alpha_period] = ACTIONS(39), - [sym_list_marker_lower_roman_period] = ACTIONS(41), - [sym_list_marker_upper_roman_period] = ACTIONS(43), - [sym_list_marker_decimal_paren] = ACTIONS(45), - [sym_list_marker_lower_alpha_paren] = ACTIONS(47), - [sym_list_marker_upper_alpha_paren] = ACTIONS(49), - [sym_list_marker_lower_roman_paren] = ACTIONS(51), - [sym_list_marker_upper_roman_paren] = ACTIONS(53), - [sym_list_marker_decimal_parens] = ACTIONS(55), - [sym_list_marker_lower_alpha_parens] = ACTIONS(57), - [sym_list_marker_upper_alpha_parens] = ACTIONS(59), - [sym_list_marker_lower_roman_parens] = ACTIONS(61), - [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(65), - [sym__block_quote_continuation] = ACTIONS(67), - [sym__thematic_break_dash] = ACTIONS(69), - [sym__thematic_break_star] = ACTIONS(69), + [aux_sym__block_quote_prefix_repeat1] = STATE(235), + [aux_sym__inline_repeat1] = STATE(285), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_LBRACK_CARET] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_DOT] = ACTIONS(11), + [aux_sym_identifier_token1] = ACTIONS(11), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_PERCENT] = ACTIONS(11), + [sym__block_close] = ACTIONS(97), + [sym__newline] = ACTIONS(83), + [sym__heading_begin] = ACTIONS(17), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(85), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(87), + [sym__block_quote_continuation] = ACTIONS(65), + [sym__thematic_break_dash] = ACTIONS(89), + [sym__thematic_break_star] = ACTIONS(89), + [sym__table_header_begin] = ACTIONS(91), + [sym__table_separator_begin] = ACTIONS(93), + [sym__table_row_begin] = ACTIONS(95), }, [6] = { - [sym__block_with_section] = STATE(111), - [sym__block_element] = STATE(111), - [sym_section] = STATE(111), - [sym_heading] = STATE(3), - [sym_list] = STATE(111), - [sym__list_dash] = STATE(209), - [sym__list_item_dash] = STATE(636), - [sym__list_plus] = STATE(209), - [sym__list_item_plus] = STATE(637), - [sym__list_star] = STATE(209), - [sym__list_item_star] = STATE(671), - [sym__list_task] = STATE(209), - [sym__list_item_task] = STATE(691), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(209), - [sym__list_item_definition] = STATE(896), - [sym__list_decimal_period] = STATE(209), - [sym__list_item_decimal_period] = STATE(841), - [sym__list_decimal_paren] = STATE(209), - [sym__list_item_decimal_paren] = STATE(796), - [sym__list_decimal_parens] = STATE(209), - [sym__list_item_decimal_parens] = STATE(716), - [sym__list_lower_alpha_period] = STATE(209), - [sym__list_item_lower_alpha_period] = STATE(722), - [sym__list_lower_alpha_paren] = STATE(209), - [sym__list_item_lower_alpha_paren] = STATE(801), - [sym__list_lower_alpha_parens] = STATE(209), - [sym__list_item_lower_alpha_parens] = STATE(813), - [sym__list_upper_alpha_period] = STATE(209), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(209), - [sym__list_item_upper_alpha_paren] = STATE(706), - [sym__list_upper_alpha_parens] = STATE(209), - [sym__list_item_upper_alpha_parens] = STATE(707), - [sym__list_lower_roman_period] = STATE(209), - [sym__list_item_lower_roman_period] = STATE(725), - [sym__list_lower_roman_paren] = STATE(209), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(209), - [sym__list_item_lower_roman_parens] = STATE(736), - [sym__list_upper_roman_period] = STATE(209), - [sym__list_item_upper_roman_period] = STATE(742), - [sym__list_upper_roman_paren] = STATE(209), - [sym__list_item_upper_roman_paren] = STATE(743), - [sym__list_upper_roman_parens] = STATE(209), - [sym__list_item_upper_roman_parens] = STATE(762), - [sym_table] = STATE(111), - [sym__table_content] = STATE(66), - [sym_table_separator] = STATE(66), - [sym_table_row] = STATE(71), - [sym_footnote] = STATE(111), - [sym_footnote_marker_begin] = STATE(1008), - [sym_div] = STATE(111), - [sym__div_marker_begin] = STATE(1010), - [sym_code_block] = STATE(111), - [sym_raw_block] = STATE(111), - [sym_thematic_break] = STATE(111), - [sym_block_quote] = STATE(111), - [sym__block_quote_prefix] = STATE(230), - [sym_link_reference_definition] = STATE(111), - [sym_block_attribute] = STATE(111), - [sym__paragraph] = STATE(111), - [sym__paragraph_content] = STATE(769), - [sym__paragraph_inline_content] = STATE(775), - [sym__inline] = STATE(616), - [sym__symbol_fallback] = STATE(297), - [aux_sym_document_repeat1] = STATE(8), - [aux_sym__list_dash_repeat1] = STATE(363), - [aux_sym__list_plus_repeat1] = STATE(371), - [aux_sym__list_star_repeat1] = STATE(372), - [aux_sym__list_task_repeat1] = STATE(351), - [aux_sym__list_definition_repeat1] = STATE(531), - [aux_sym__list_decimal_period_repeat1] = STATE(532), - [aux_sym__list_decimal_paren_repeat1] = STATE(549), - [aux_sym__list_decimal_parens_repeat1] = STATE(551), + [sym__block_with_section] = STATE(114), + [sym__block_element] = STATE(114), + [sym_section] = STATE(114), + [sym_heading] = STATE(4), + [sym_list] = STATE(114), + [sym__list_dash] = STATE(115), + [sym__list_item_dash] = STATE(687), + [sym__list_plus] = STATE(115), + [sym__list_item_plus] = STATE(691), + [sym__list_star] = STATE(115), + [sym__list_item_star] = STATE(673), + [sym__list_task] = STATE(115), + [sym__list_item_task] = STATE(680), + [sym_list_marker_task] = STATE(48), + [sym__list_definition] = STATE(115), + [sym__list_item_definition] = STATE(804), + [sym__list_decimal_period] = STATE(115), + [sym__list_item_decimal_period] = STATE(837), + [sym__list_decimal_paren] = STATE(115), + [sym__list_item_decimal_paren] = STATE(703), + [sym__list_decimal_parens] = STATE(115), + [sym__list_item_decimal_parens] = STATE(715), + [sym__list_lower_alpha_period] = STATE(115), + [sym__list_item_lower_alpha_period] = STATE(739), + [sym__list_lower_alpha_paren] = STATE(115), + [sym__list_item_lower_alpha_paren] = STATE(754), + [sym__list_lower_alpha_parens] = STATE(115), + [sym__list_item_lower_alpha_parens] = STATE(755), + [sym__list_upper_alpha_period] = STATE(115), + [sym__list_item_upper_alpha_period] = STATE(758), + [sym__list_upper_alpha_paren] = STATE(115), + [sym__list_item_upper_alpha_paren] = STATE(759), + [sym__list_upper_alpha_parens] = STATE(115), + [sym__list_item_upper_alpha_parens] = STATE(766), + [sym__list_lower_roman_period] = STATE(115), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(115), + [sym__list_item_lower_roman_paren] = STATE(770), + [sym__list_lower_roman_parens] = STATE(115), + [sym__list_item_lower_roman_parens] = STATE(773), + [sym__list_upper_roman_period] = STATE(115), + [sym__list_item_upper_roman_period] = STATE(775), + [sym__list_upper_roman_paren] = STATE(115), + [sym__list_item_upper_roman_paren] = STATE(791), + [sym__list_upper_roman_parens] = STATE(115), + [sym__list_item_upper_roman_parens] = STATE(793), + [sym_table] = STATE(114), + [sym__table_row] = STATE(67), + [sym_table_header] = STATE(67), + [sym_table_separator] = STATE(67), + [sym_table_row] = STATE(67), + [sym_footnote] = STATE(114), + [sym_footnote_marker_begin] = STATE(980), + [sym_div] = STATE(114), + [sym__div_marker_begin] = STATE(994), + [sym_code_block] = STATE(114), + [sym_raw_block] = STATE(114), + [sym_thematic_break] = STATE(114), + [sym_block_quote] = STATE(114), + [sym__block_quote_prefix] = STATE(225), + [sym_link_reference_definition] = STATE(114), + [sym_block_attribute] = STATE(114), + [sym__paragraph] = STATE(114), + [sym__paragraph_content] = STATE(797), + [sym__paragraph_inline_content] = STATE(799), + [sym__inline] = STATE(629), + [sym__symbol_fallback] = STATE(285), + [aux_sym_document_repeat1] = STATE(7), + [aux_sym__list_dash_repeat1] = STATE(366), + [aux_sym__list_plus_repeat1] = STATE(381), + [aux_sym__list_star_repeat1] = STATE(368), + [aux_sym__list_task_repeat1] = STATE(322), + [aux_sym__list_definition_repeat1] = STATE(529), + [aux_sym__list_decimal_period_repeat1] = STATE(531), + [aux_sym__list_decimal_paren_repeat1] = STATE(533), + [aux_sym__list_decimal_parens_repeat1] = STATE(535), [aux_sym__list_lower_alpha_period_repeat1] = STATE(553), [aux_sym__list_lower_alpha_paren_repeat1] = STATE(555), [aux_sym__list_lower_alpha_parens_repeat1] = STATE(557), [aux_sym__list_upper_alpha_period_repeat1] = STATE(559), [aux_sym__list_upper_alpha_paren_repeat1] = STATE(561), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(461), - [aux_sym__list_lower_roman_period_repeat1] = STATE(564), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(566), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(568), - [aux_sym__list_upper_roman_period_repeat1] = STATE(570), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(572), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(576), - [aux_sym_table_repeat1] = STATE(66), - [aux_sym__block_quote_prefix_repeat1] = STATE(253), - [aux_sym__inline_repeat1] = STATE(297), - [ts_builtin_sym_end] = ACTIONS(91), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(563), + [aux_sym__list_lower_roman_period_repeat1] = STATE(565), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(567), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(569), + [aux_sym__list_upper_roman_period_repeat1] = STATE(572), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(575), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(578), + [aux_sym_table_repeat1] = STATE(67), + [aux_sym__block_quote_prefix_repeat1] = STATE(235), + [aux_sym__inline_repeat1] = STATE(285), + [ts_builtin_sym_end] = ACTIONS(99), [anon_sym_LBRACK] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(7), - [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(13), - [aux_sym__inline_token1] = ACTIONS(13), - [anon_sym_LBRACE_DASH] = ACTIONS(13), - [anon_sym_POUND] = ACTIONS(13), - [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(15), - [sym__heading_begin] = ACTIONS(19), - [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(23), - [sym_list_marker_dash] = ACTIONS(25), - [sym_list_marker_star] = ACTIONS(27), - [sym_list_marker_plus] = ACTIONS(29), - [sym__list_marker_task_begin] = ACTIONS(31), - [sym_list_marker_definition] = ACTIONS(33), - [sym_list_marker_decimal_period] = ACTIONS(35), - [sym_list_marker_lower_alpha_period] = ACTIONS(37), - [sym_list_marker_upper_alpha_period] = ACTIONS(39), - [sym_list_marker_lower_roman_period] = ACTIONS(41), - [sym_list_marker_upper_roman_period] = ACTIONS(43), - [sym_list_marker_decimal_paren] = ACTIONS(45), - [sym_list_marker_lower_alpha_paren] = ACTIONS(47), - [sym_list_marker_upper_alpha_paren] = ACTIONS(49), - [sym_list_marker_lower_roman_paren] = ACTIONS(51), - [sym_list_marker_upper_roman_paren] = ACTIONS(53), - [sym_list_marker_decimal_parens] = ACTIONS(55), - [sym_list_marker_lower_alpha_parens] = ACTIONS(57), - [sym_list_marker_upper_alpha_parens] = ACTIONS(59), - [sym_list_marker_lower_roman_parens] = ACTIONS(61), - [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(65), - [sym__block_quote_continuation] = ACTIONS(67), - [sym__thematic_break_dash] = ACTIONS(69), - [sym__thematic_break_star] = ACTIONS(69), + [anon_sym_LBRACK_CARET] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(9), + [anon_sym_DOT] = ACTIONS(11), + [aux_sym_identifier_token1] = ACTIONS(11), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_PERCENT] = ACTIONS(11), + [sym__newline] = ACTIONS(13), + [sym__heading_begin] = ACTIONS(17), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(21), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(63), + [sym__block_quote_continuation] = ACTIONS(65), + [sym__thematic_break_dash] = ACTIONS(67), + [sym__thematic_break_star] = ACTIONS(67), + [sym__table_header_begin] = ACTIONS(69), + [sym__table_separator_begin] = ACTIONS(71), + [sym__table_row_begin] = ACTIONS(73), }, [7] = { - [sym__block_with_section] = STATE(138), - [sym__block_element] = STATE(138), - [sym_section] = STATE(138), - [sym_heading] = STATE(10), - [sym_list] = STATE(138), - [sym__list_dash] = STATE(144), - [sym__list_item_dash] = STATE(636), - [sym__list_plus] = STATE(144), - [sym__list_item_plus] = STATE(637), - [sym__list_star] = STATE(144), - [sym__list_item_star] = STATE(671), - [sym__list_task] = STATE(144), - [sym__list_item_task] = STATE(691), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(144), - [sym__list_item_definition] = STATE(896), - [sym__list_decimal_period] = STATE(144), - [sym__list_item_decimal_period] = STATE(841), - [sym__list_decimal_paren] = STATE(144), - [sym__list_item_decimal_paren] = STATE(796), - [sym__list_decimal_parens] = STATE(144), - [sym__list_item_decimal_parens] = STATE(716), - [sym__list_lower_alpha_period] = STATE(144), - [sym__list_item_lower_alpha_period] = STATE(722), - [sym__list_lower_alpha_paren] = STATE(144), - [sym__list_item_lower_alpha_paren] = STATE(801), - [sym__list_lower_alpha_parens] = STATE(144), - [sym__list_item_lower_alpha_parens] = STATE(813), - [sym__list_upper_alpha_period] = STATE(144), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(144), - [sym__list_item_upper_alpha_paren] = STATE(706), - [sym__list_upper_alpha_parens] = STATE(144), - [sym__list_item_upper_alpha_parens] = STATE(707), - [sym__list_lower_roman_period] = STATE(144), - [sym__list_item_lower_roman_period] = STATE(725), - [sym__list_lower_roman_paren] = STATE(144), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(144), - [sym__list_item_lower_roman_parens] = STATE(736), - [sym__list_upper_roman_period] = STATE(144), - [sym__list_item_upper_roman_period] = STATE(742), - [sym__list_upper_roman_paren] = STATE(144), - [sym__list_item_upper_roman_paren] = STATE(743), - [sym__list_upper_roman_parens] = STATE(144), - [sym__list_item_upper_roman_parens] = STATE(762), - [sym_table] = STATE(138), - [sym__table_content] = STATE(67), + [sym__block_with_section] = STATE(114), + [sym__block_element] = STATE(114), + [sym_section] = STATE(114), + [sym_heading] = STATE(4), + [sym_list] = STATE(114), + [sym__list_dash] = STATE(115), + [sym__list_item_dash] = STATE(687), + [sym__list_plus] = STATE(115), + [sym__list_item_plus] = STATE(691), + [sym__list_star] = STATE(115), + [sym__list_item_star] = STATE(673), + [sym__list_task] = STATE(115), + [sym__list_item_task] = STATE(680), + [sym_list_marker_task] = STATE(48), + [sym__list_definition] = STATE(115), + [sym__list_item_definition] = STATE(804), + [sym__list_decimal_period] = STATE(115), + [sym__list_item_decimal_period] = STATE(837), + [sym__list_decimal_paren] = STATE(115), + [sym__list_item_decimal_paren] = STATE(703), + [sym__list_decimal_parens] = STATE(115), + [sym__list_item_decimal_parens] = STATE(715), + [sym__list_lower_alpha_period] = STATE(115), + [sym__list_item_lower_alpha_period] = STATE(739), + [sym__list_lower_alpha_paren] = STATE(115), + [sym__list_item_lower_alpha_paren] = STATE(754), + [sym__list_lower_alpha_parens] = STATE(115), + [sym__list_item_lower_alpha_parens] = STATE(755), + [sym__list_upper_alpha_period] = STATE(115), + [sym__list_item_upper_alpha_period] = STATE(758), + [sym__list_upper_alpha_paren] = STATE(115), + [sym__list_item_upper_alpha_paren] = STATE(759), + [sym__list_upper_alpha_parens] = STATE(115), + [sym__list_item_upper_alpha_parens] = STATE(766), + [sym__list_lower_roman_period] = STATE(115), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(115), + [sym__list_item_lower_roman_paren] = STATE(770), + [sym__list_lower_roman_parens] = STATE(115), + [sym__list_item_lower_roman_parens] = STATE(773), + [sym__list_upper_roman_period] = STATE(115), + [sym__list_item_upper_roman_period] = STATE(775), + [sym__list_upper_roman_paren] = STATE(115), + [sym__list_item_upper_roman_paren] = STATE(791), + [sym__list_upper_roman_parens] = STATE(115), + [sym__list_item_upper_roman_parens] = STATE(793), + [sym_table] = STATE(114), + [sym__table_row] = STATE(67), + [sym_table_header] = STATE(67), [sym_table_separator] = STATE(67), - [sym_table_row] = STATE(70), - [sym_footnote] = STATE(138), - [sym_footnote_marker_begin] = STATE(1180), - [sym_div] = STATE(138), - [sym__div_marker_begin] = STATE(1074), - [sym_code_block] = STATE(138), - [sym_raw_block] = STATE(138), - [sym_thematic_break] = STATE(138), - [sym_block_quote] = STATE(138), - [sym__block_quote_prefix] = STATE(233), - [sym_link_reference_definition] = STATE(138), - [sym_block_attribute] = STATE(138), - [sym__paragraph] = STATE(138), - [sym__paragraph_content] = STATE(773), - [sym__paragraph_inline_content] = STATE(775), - [sym__inline] = STATE(616), - [sym__symbol_fallback] = STATE(297), - [aux_sym_document_repeat1] = STATE(9), - [aux_sym__list_dash_repeat1] = STATE(357), - [aux_sym__list_plus_repeat1] = STATE(358), - [aux_sym__list_star_repeat1] = STATE(359), - [aux_sym__list_task_repeat1] = STATE(344), - [aux_sym__list_definition_repeat1] = STATE(515), - [aux_sym__list_decimal_period_repeat1] = STATE(516), - [aux_sym__list_decimal_paren_repeat1] = STATE(517), - [aux_sym__list_decimal_parens_repeat1] = STATE(518), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(519), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(520), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(521), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(522), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(523), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(524), - [aux_sym__list_lower_roman_period_repeat1] = STATE(525), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(526), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(527), - [aux_sym__list_upper_roman_period_repeat1] = STATE(528), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(529), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(530), - [aux_sym_table_repeat1] = STATE(67), - [aux_sym__block_quote_prefix_repeat1] = STATE(253), - [aux_sym__inline_repeat1] = STATE(297), - [anon_sym_LBRACK] = ACTIONS(71), - [anon_sym_PIPE] = ACTIONS(73), - [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(75), - [anon_sym_DOT] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(13), - [aux_sym__inline_token1] = ACTIONS(13), - [anon_sym_LBRACE_DASH] = ACTIONS(13), - [anon_sym_POUND] = ACTIONS(13), - [anon_sym_PERCENT] = ACTIONS(13), - [sym__block_close] = ACTIONS(93), - [sym__newline] = ACTIONS(79), - [sym__heading_begin] = ACTIONS(19), - [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(81), - [sym_list_marker_dash] = ACTIONS(25), - [sym_list_marker_star] = ACTIONS(27), - [sym_list_marker_plus] = ACTIONS(29), - [sym__list_marker_task_begin] = ACTIONS(31), - [sym_list_marker_definition] = ACTIONS(33), - [sym_list_marker_decimal_period] = ACTIONS(35), - [sym_list_marker_lower_alpha_period] = ACTIONS(37), - [sym_list_marker_upper_alpha_period] = ACTIONS(39), - [sym_list_marker_lower_roman_period] = ACTIONS(41), - [sym_list_marker_upper_roman_period] = ACTIONS(43), - [sym_list_marker_decimal_paren] = ACTIONS(45), - [sym_list_marker_lower_alpha_paren] = ACTIONS(47), - [sym_list_marker_upper_alpha_paren] = ACTIONS(49), - [sym_list_marker_lower_roman_paren] = ACTIONS(51), - [sym_list_marker_upper_roman_paren] = ACTIONS(53), - [sym_list_marker_decimal_parens] = ACTIONS(55), - [sym_list_marker_lower_alpha_parens] = ACTIONS(57), - [sym_list_marker_upper_alpha_parens] = ACTIONS(59), - [sym_list_marker_lower_roman_parens] = ACTIONS(61), - [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(83), - [sym__block_quote_continuation] = ACTIONS(67), - [sym__thematic_break_dash] = ACTIONS(85), - [sym__thematic_break_star] = ACTIONS(85), - }, - [8] = { - [sym__block_with_section] = STATE(111), - [sym__block_element] = STATE(111), - [sym_section] = STATE(111), - [sym_heading] = STATE(3), - [sym_list] = STATE(111), - [sym__list_dash] = STATE(209), - [sym__list_item_dash] = STATE(636), - [sym__list_plus] = STATE(209), - [sym__list_item_plus] = STATE(637), - [sym__list_star] = STATE(209), - [sym__list_item_star] = STATE(671), - [sym__list_task] = STATE(209), - [sym__list_item_task] = STATE(691), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(209), - [sym__list_item_definition] = STATE(896), - [sym__list_decimal_period] = STATE(209), - [sym__list_item_decimal_period] = STATE(841), - [sym__list_decimal_paren] = STATE(209), - [sym__list_item_decimal_paren] = STATE(796), - [sym__list_decimal_parens] = STATE(209), - [sym__list_item_decimal_parens] = STATE(716), - [sym__list_lower_alpha_period] = STATE(209), - [sym__list_item_lower_alpha_period] = STATE(722), - [sym__list_lower_alpha_paren] = STATE(209), - [sym__list_item_lower_alpha_paren] = STATE(801), - [sym__list_lower_alpha_parens] = STATE(209), - [sym__list_item_lower_alpha_parens] = STATE(813), - [sym__list_upper_alpha_period] = STATE(209), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(209), - [sym__list_item_upper_alpha_paren] = STATE(706), - [sym__list_upper_alpha_parens] = STATE(209), - [sym__list_item_upper_alpha_parens] = STATE(707), - [sym__list_lower_roman_period] = STATE(209), - [sym__list_item_lower_roman_period] = STATE(725), - [sym__list_lower_roman_paren] = STATE(209), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(209), - [sym__list_item_lower_roman_parens] = STATE(736), - [sym__list_upper_roman_period] = STATE(209), - [sym__list_item_upper_roman_period] = STATE(742), - [sym__list_upper_roman_paren] = STATE(209), - [sym__list_item_upper_roman_paren] = STATE(743), - [sym__list_upper_roman_parens] = STATE(209), - [sym__list_item_upper_roman_parens] = STATE(762), - [sym_table] = STATE(111), - [sym__table_content] = STATE(66), - [sym_table_separator] = STATE(66), - [sym_table_row] = STATE(71), - [sym_footnote] = STATE(111), - [sym_footnote_marker_begin] = STATE(1008), - [sym_div] = STATE(111), - [sym__div_marker_begin] = STATE(1010), - [sym_code_block] = STATE(111), - [sym_raw_block] = STATE(111), - [sym_thematic_break] = STATE(111), - [sym_block_quote] = STATE(111), - [sym__block_quote_prefix] = STATE(230), - [sym_link_reference_definition] = STATE(111), - [sym_block_attribute] = STATE(111), - [sym__paragraph] = STATE(111), - [sym__paragraph_content] = STATE(769), - [sym__paragraph_inline_content] = STATE(775), - [sym__inline] = STATE(616), - [sym__symbol_fallback] = STATE(297), - [aux_sym_document_repeat1] = STATE(8), - [aux_sym__list_dash_repeat1] = STATE(363), - [aux_sym__list_plus_repeat1] = STATE(371), - [aux_sym__list_star_repeat1] = STATE(372), - [aux_sym__list_task_repeat1] = STATE(351), - [aux_sym__list_definition_repeat1] = STATE(531), - [aux_sym__list_decimal_period_repeat1] = STATE(532), - [aux_sym__list_decimal_paren_repeat1] = STATE(549), - [aux_sym__list_decimal_parens_repeat1] = STATE(551), + [sym_table_row] = STATE(67), + [sym_footnote] = STATE(114), + [sym_footnote_marker_begin] = STATE(980), + [sym_div] = STATE(114), + [sym__div_marker_begin] = STATE(994), + [sym_code_block] = STATE(114), + [sym_raw_block] = STATE(114), + [sym_thematic_break] = STATE(114), + [sym_block_quote] = STATE(114), + [sym__block_quote_prefix] = STATE(225), + [sym_link_reference_definition] = STATE(114), + [sym_block_attribute] = STATE(114), + [sym__paragraph] = STATE(114), + [sym__paragraph_content] = STATE(797), + [sym__paragraph_inline_content] = STATE(799), + [sym__inline] = STATE(629), + [sym__symbol_fallback] = STATE(285), + [aux_sym_document_repeat1] = STATE(7), + [aux_sym__list_dash_repeat1] = STATE(366), + [aux_sym__list_plus_repeat1] = STATE(381), + [aux_sym__list_star_repeat1] = STATE(368), + [aux_sym__list_task_repeat1] = STATE(322), + [aux_sym__list_definition_repeat1] = STATE(529), + [aux_sym__list_decimal_period_repeat1] = STATE(531), + [aux_sym__list_decimal_paren_repeat1] = STATE(533), + [aux_sym__list_decimal_parens_repeat1] = STATE(535), [aux_sym__list_lower_alpha_period_repeat1] = STATE(553), [aux_sym__list_lower_alpha_paren_repeat1] = STATE(555), [aux_sym__list_lower_alpha_parens_repeat1] = STATE(557), [aux_sym__list_upper_alpha_period_repeat1] = STATE(559), [aux_sym__list_upper_alpha_paren_repeat1] = STATE(561), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(461), - [aux_sym__list_lower_roman_period_repeat1] = STATE(564), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(566), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(568), - [aux_sym__list_upper_roman_period_repeat1] = STATE(570), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(572), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(576), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(563), + [aux_sym__list_lower_roman_period_repeat1] = STATE(565), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(567), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(569), + [aux_sym__list_upper_roman_period_repeat1] = STATE(572), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(575), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(578), + [aux_sym_table_repeat1] = STATE(67), + [aux_sym__block_quote_prefix_repeat1] = STATE(235), + [aux_sym__inline_repeat1] = STATE(285), + [ts_builtin_sym_end] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_LBRACK_CARET] = ACTIONS(106), + [anon_sym_LBRACE] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(112), + [aux_sym_identifier_token1] = ACTIONS(112), + [aux_sym__inline_token1] = ACTIONS(112), + [anon_sym_LBRACE_DASH] = ACTIONS(112), + [anon_sym_POUND] = ACTIONS(112), + [anon_sym_PERCENT] = ACTIONS(112), + [sym__newline] = ACTIONS(115), + [sym__heading_begin] = ACTIONS(118), + [sym__div_begin] = ACTIONS(121), + [sym__code_block_begin] = ACTIONS(124), + [sym_list_marker_dash] = ACTIONS(127), + [sym_list_marker_star] = ACTIONS(130), + [sym_list_marker_plus] = ACTIONS(133), + [sym__list_marker_task_begin] = ACTIONS(136), + [sym_list_marker_definition] = ACTIONS(139), + [sym_list_marker_decimal_period] = ACTIONS(142), + [sym_list_marker_lower_alpha_period] = ACTIONS(145), + [sym_list_marker_upper_alpha_period] = ACTIONS(148), + [sym_list_marker_lower_roman_period] = ACTIONS(151), + [sym_list_marker_upper_roman_period] = ACTIONS(154), + [sym_list_marker_decimal_paren] = ACTIONS(157), + [sym_list_marker_lower_alpha_paren] = ACTIONS(160), + [sym_list_marker_upper_alpha_paren] = ACTIONS(163), + [sym_list_marker_lower_roman_paren] = ACTIONS(166), + [sym_list_marker_upper_roman_paren] = ACTIONS(169), + [sym_list_marker_decimal_parens] = ACTIONS(172), + [sym_list_marker_lower_alpha_parens] = ACTIONS(175), + [sym_list_marker_upper_alpha_parens] = ACTIONS(178), + [sym_list_marker_lower_roman_parens] = ACTIONS(181), + [sym_list_marker_upper_roman_parens] = ACTIONS(184), + [sym__block_quote_begin] = ACTIONS(187), + [sym__block_quote_continuation] = ACTIONS(190), + [sym__thematic_break_dash] = ACTIONS(193), + [sym__thematic_break_star] = ACTIONS(193), + [sym__table_header_begin] = ACTIONS(196), + [sym__table_separator_begin] = ACTIONS(199), + [sym__table_row_begin] = ACTIONS(202), + }, + [8] = { + [sym__block_with_section] = STATE(137), + [sym__block_element] = STATE(137), + [sym_section] = STATE(137), + [sym_heading] = STATE(9), + [sym_list] = STATE(137), + [sym__list_dash] = STATE(143), + [sym__list_item_dash] = STATE(687), + [sym__list_plus] = STATE(143), + [sym__list_item_plus] = STATE(691), + [sym__list_star] = STATE(143), + [sym__list_item_star] = STATE(673), + [sym__list_task] = STATE(143), + [sym__list_item_task] = STATE(680), + [sym_list_marker_task] = STATE(48), + [sym__list_definition] = STATE(143), + [sym__list_item_definition] = STATE(804), + [sym__list_decimal_period] = STATE(143), + [sym__list_item_decimal_period] = STATE(837), + [sym__list_decimal_paren] = STATE(143), + [sym__list_item_decimal_paren] = STATE(703), + [sym__list_decimal_parens] = STATE(143), + [sym__list_item_decimal_parens] = STATE(715), + [sym__list_lower_alpha_period] = STATE(143), + [sym__list_item_lower_alpha_period] = STATE(739), + [sym__list_lower_alpha_paren] = STATE(143), + [sym__list_item_lower_alpha_paren] = STATE(754), + [sym__list_lower_alpha_parens] = STATE(143), + [sym__list_item_lower_alpha_parens] = STATE(755), + [sym__list_upper_alpha_period] = STATE(143), + [sym__list_item_upper_alpha_period] = STATE(758), + [sym__list_upper_alpha_paren] = STATE(143), + [sym__list_item_upper_alpha_paren] = STATE(759), + [sym__list_upper_alpha_parens] = STATE(143), + [sym__list_item_upper_alpha_parens] = STATE(766), + [sym__list_lower_roman_period] = STATE(143), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(143), + [sym__list_item_lower_roman_paren] = STATE(770), + [sym__list_lower_roman_parens] = STATE(143), + [sym__list_item_lower_roman_parens] = STATE(773), + [sym__list_upper_roman_period] = STATE(143), + [sym__list_item_upper_roman_period] = STATE(775), + [sym__list_upper_roman_paren] = STATE(143), + [sym__list_item_upper_roman_paren] = STATE(791), + [sym__list_upper_roman_parens] = STATE(143), + [sym__list_item_upper_roman_parens] = STATE(793), + [sym_table] = STATE(137), + [sym__table_row] = STATE(66), + [sym_table_header] = STATE(66), + [sym_table_separator] = STATE(66), + [sym_table_row] = STATE(66), + [sym_footnote] = STATE(137), + [sym_footnote_marker_begin] = STATE(1145), + [sym_div] = STATE(137), + [sym__div_marker_begin] = STATE(1061), + [sym_code_block] = STATE(137), + [sym_raw_block] = STATE(137), + [sym_thematic_break] = STATE(137), + [sym_block_quote] = STATE(137), + [sym__block_quote_prefix] = STATE(224), + [sym_link_reference_definition] = STATE(137), + [sym_block_attribute] = STATE(137), + [sym__paragraph] = STATE(137), + [sym__paragraph_content] = STATE(800), + [sym__paragraph_inline_content] = STATE(799), + [sym__inline] = STATE(629), + [sym__symbol_fallback] = STATE(285), + [aux_sym_document_repeat1] = STATE(8), + [aux_sym__list_dash_repeat1] = STATE(351), + [aux_sym__list_plus_repeat1] = STATE(350), + [aux_sym__list_star_repeat1] = STATE(353), + [aux_sym__list_task_repeat1] = STATE(339), + [aux_sym__list_definition_repeat1] = STATE(512), + [aux_sym__list_decimal_period_repeat1] = STATE(513), + [aux_sym__list_decimal_paren_repeat1] = STATE(514), + [aux_sym__list_decimal_parens_repeat1] = STATE(515), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(516), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(518), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(519), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(520), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(521), + [aux_sym__list_lower_roman_period_repeat1] = STATE(579), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(523), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(524), + [aux_sym__list_upper_roman_period_repeat1] = STATE(525), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(526), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(527), [aux_sym_table_repeat1] = STATE(66), - [aux_sym__block_quote_prefix_repeat1] = STATE(253), - [aux_sym__inline_repeat1] = STATE(297), - [ts_builtin_sym_end] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_PIPE] = ACTIONS(100), - [anon_sym_LBRACK_CARET] = ACTIONS(103), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_DOT] = ACTIONS(109), - [aux_sym_identifier_token1] = ACTIONS(109), - [aux_sym__inline_token1] = ACTIONS(109), - [anon_sym_LBRACE_DASH] = ACTIONS(109), - [anon_sym_POUND] = ACTIONS(109), - [anon_sym_PERCENT] = ACTIONS(109), - [sym__newline] = ACTIONS(112), - [sym__heading_begin] = ACTIONS(115), - [sym__div_begin] = ACTIONS(118), - [sym__code_block_begin] = ACTIONS(121), - [sym_list_marker_dash] = ACTIONS(124), - [sym_list_marker_star] = ACTIONS(127), - [sym_list_marker_plus] = ACTIONS(130), - [sym__list_marker_task_begin] = ACTIONS(133), - [sym_list_marker_definition] = ACTIONS(136), - [sym_list_marker_decimal_period] = ACTIONS(139), - [sym_list_marker_lower_alpha_period] = ACTIONS(142), - [sym_list_marker_upper_alpha_period] = ACTIONS(145), - [sym_list_marker_lower_roman_period] = ACTIONS(148), - [sym_list_marker_upper_roman_period] = ACTIONS(151), - [sym_list_marker_decimal_paren] = ACTIONS(154), - [sym_list_marker_lower_alpha_paren] = ACTIONS(157), - [sym_list_marker_upper_alpha_paren] = ACTIONS(160), - [sym_list_marker_lower_roman_paren] = ACTIONS(163), - [sym_list_marker_upper_roman_paren] = ACTIONS(166), - [sym_list_marker_decimal_parens] = ACTIONS(169), - [sym_list_marker_lower_alpha_parens] = ACTIONS(172), - [sym_list_marker_upper_alpha_parens] = ACTIONS(175), - [sym_list_marker_lower_roman_parens] = ACTIONS(178), - [sym_list_marker_upper_roman_parens] = ACTIONS(181), - [sym__block_quote_begin] = ACTIONS(184), - [sym__block_quote_continuation] = ACTIONS(187), - [sym__thematic_break_dash] = ACTIONS(190), - [sym__thematic_break_star] = ACTIONS(190), + [aux_sym__block_quote_prefix_repeat1] = STATE(235), + [aux_sym__inline_repeat1] = STATE(285), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LBRACK_CARET] = ACTIONS(106), + [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_DOT] = ACTIONS(112), + [aux_sym_identifier_token1] = ACTIONS(112), + [aux_sym__inline_token1] = ACTIONS(112), + [anon_sym_LBRACE_DASH] = ACTIONS(112), + [anon_sym_POUND] = ACTIONS(112), + [anon_sym_PERCENT] = ACTIONS(112), + [sym__block_close] = ACTIONS(101), + [sym__newline] = ACTIONS(211), + [sym__heading_begin] = ACTIONS(118), + [sym__div_begin] = ACTIONS(121), + [sym__code_block_begin] = ACTIONS(214), + [sym_list_marker_dash] = ACTIONS(127), + [sym_list_marker_star] = ACTIONS(130), + [sym_list_marker_plus] = ACTIONS(133), + [sym__list_marker_task_begin] = ACTIONS(136), + [sym_list_marker_definition] = ACTIONS(139), + [sym_list_marker_decimal_period] = ACTIONS(142), + [sym_list_marker_lower_alpha_period] = ACTIONS(145), + [sym_list_marker_upper_alpha_period] = ACTIONS(148), + [sym_list_marker_lower_roman_period] = ACTIONS(151), + [sym_list_marker_upper_roman_period] = ACTIONS(154), + [sym_list_marker_decimal_paren] = ACTIONS(157), + [sym_list_marker_lower_alpha_paren] = ACTIONS(160), + [sym_list_marker_upper_alpha_paren] = ACTIONS(163), + [sym_list_marker_lower_roman_paren] = ACTIONS(166), + [sym_list_marker_upper_roman_paren] = ACTIONS(169), + [sym_list_marker_decimal_parens] = ACTIONS(172), + [sym_list_marker_lower_alpha_parens] = ACTIONS(175), + [sym_list_marker_upper_alpha_parens] = ACTIONS(178), + [sym_list_marker_lower_roman_parens] = ACTIONS(181), + [sym_list_marker_upper_roman_parens] = ACTIONS(184), + [sym__block_quote_begin] = ACTIONS(217), + [sym__block_quote_continuation] = ACTIONS(190), + [sym__thematic_break_dash] = ACTIONS(220), + [sym__thematic_break_star] = ACTIONS(220), + [sym__table_header_begin] = ACTIONS(223), + [sym__table_separator_begin] = ACTIONS(226), + [sym__table_row_begin] = ACTIONS(229), }, [9] = { - [sym__block_with_section] = STATE(138), - [sym__block_element] = STATE(138), - [sym_section] = STATE(138), - [sym_heading] = STATE(10), - [sym_list] = STATE(138), - [sym__list_dash] = STATE(144), - [sym__list_item_dash] = STATE(636), - [sym__list_plus] = STATE(144), - [sym__list_item_plus] = STATE(637), - [sym__list_star] = STATE(144), - [sym__list_item_star] = STATE(671), - [sym__list_task] = STATE(144), - [sym__list_item_task] = STATE(691), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(144), - [sym__list_item_definition] = STATE(896), - [sym__list_decimal_period] = STATE(144), - [sym__list_item_decimal_period] = STATE(841), - [sym__list_decimal_paren] = STATE(144), - [sym__list_item_decimal_paren] = STATE(796), - [sym__list_decimal_parens] = STATE(144), - [sym__list_item_decimal_parens] = STATE(716), - [sym__list_lower_alpha_period] = STATE(144), - [sym__list_item_lower_alpha_period] = STATE(722), - [sym__list_lower_alpha_paren] = STATE(144), - [sym__list_item_lower_alpha_paren] = STATE(801), - [sym__list_lower_alpha_parens] = STATE(144), - [sym__list_item_lower_alpha_parens] = STATE(813), - [sym__list_upper_alpha_period] = STATE(144), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(144), - [sym__list_item_upper_alpha_paren] = STATE(706), - [sym__list_upper_alpha_parens] = STATE(144), - [sym__list_item_upper_alpha_parens] = STATE(707), - [sym__list_lower_roman_period] = STATE(144), - [sym__list_item_lower_roman_period] = STATE(725), - [sym__list_lower_roman_paren] = STATE(144), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(144), - [sym__list_item_lower_roman_parens] = STATE(736), - [sym__list_upper_roman_period] = STATE(144), - [sym__list_item_upper_roman_period] = STATE(742), - [sym__list_upper_roman_paren] = STATE(144), - [sym__list_item_upper_roman_paren] = STATE(743), - [sym__list_upper_roman_parens] = STATE(144), - [sym__list_item_upper_roman_parens] = STATE(762), - [sym_table] = STATE(138), - [sym__table_content] = STATE(67), - [sym_table_separator] = STATE(67), - [sym_table_row] = STATE(70), - [sym_footnote] = STATE(138), - [sym_footnote_marker_begin] = STATE(1180), - [sym_div] = STATE(138), - [sym__div_marker_begin] = STATE(1074), - [sym_code_block] = STATE(138), - [sym_raw_block] = STATE(138), - [sym_thematic_break] = STATE(138), - [sym_block_quote] = STATE(138), - [sym__block_quote_prefix] = STATE(233), - [sym_link_reference_definition] = STATE(138), - [sym_block_attribute] = STATE(138), - [sym__paragraph] = STATE(138), - [sym__paragraph_content] = STATE(773), - [sym__paragraph_inline_content] = STATE(775), - [sym__inline] = STATE(616), - [sym__symbol_fallback] = STATE(297), - [aux_sym_document_repeat1] = STATE(9), - [aux_sym__list_dash_repeat1] = STATE(357), - [aux_sym__list_plus_repeat1] = STATE(358), - [aux_sym__list_star_repeat1] = STATE(359), - [aux_sym__list_task_repeat1] = STATE(344), - [aux_sym__list_definition_repeat1] = STATE(515), - [aux_sym__list_decimal_period_repeat1] = STATE(516), - [aux_sym__list_decimal_paren_repeat1] = STATE(517), - [aux_sym__list_decimal_parens_repeat1] = STATE(518), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(519), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(520), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(521), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(522), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(523), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(524), - [aux_sym__list_lower_roman_period_repeat1] = STATE(525), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(526), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(527), - [aux_sym__list_upper_roman_period_repeat1] = STATE(528), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(529), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(530), - [aux_sym_table_repeat1] = STATE(67), - [aux_sym__block_quote_prefix_repeat1] = STATE(253), - [aux_sym__inline_repeat1] = STATE(297), - [anon_sym_LBRACK] = ACTIONS(193), - [anon_sym_PIPE] = ACTIONS(196), - [anon_sym_LBRACK_CARET] = ACTIONS(103), - [anon_sym_LBRACE] = ACTIONS(199), - [anon_sym_DOT] = ACTIONS(109), - [aux_sym_identifier_token1] = ACTIONS(109), - [aux_sym__inline_token1] = ACTIONS(109), - [anon_sym_LBRACE_DASH] = ACTIONS(109), - [anon_sym_POUND] = ACTIONS(109), - [anon_sym_PERCENT] = ACTIONS(109), - [sym__block_close] = ACTIONS(95), - [sym__newline] = ACTIONS(202), - [sym__heading_begin] = ACTIONS(115), - [sym__div_begin] = ACTIONS(118), - [sym__code_block_begin] = ACTIONS(205), - [sym_list_marker_dash] = ACTIONS(124), - [sym_list_marker_star] = ACTIONS(127), - [sym_list_marker_plus] = ACTIONS(130), - [sym__list_marker_task_begin] = ACTIONS(133), - [sym_list_marker_definition] = ACTIONS(136), - [sym_list_marker_decimal_period] = ACTIONS(139), - [sym_list_marker_lower_alpha_period] = ACTIONS(142), - [sym_list_marker_upper_alpha_period] = ACTIONS(145), - [sym_list_marker_lower_roman_period] = ACTIONS(148), - [sym_list_marker_upper_roman_period] = ACTIONS(151), - [sym_list_marker_decimal_paren] = ACTIONS(154), - [sym_list_marker_lower_alpha_paren] = ACTIONS(157), - [sym_list_marker_upper_alpha_paren] = ACTIONS(160), - [sym_list_marker_lower_roman_paren] = ACTIONS(163), - [sym_list_marker_upper_roman_paren] = ACTIONS(166), - [sym_list_marker_decimal_parens] = ACTIONS(169), - [sym_list_marker_lower_alpha_parens] = ACTIONS(172), - [sym_list_marker_upper_alpha_parens] = ACTIONS(175), - [sym_list_marker_lower_roman_parens] = ACTIONS(178), - [sym_list_marker_upper_roman_parens] = ACTIONS(181), - [sym__block_quote_begin] = ACTIONS(208), - [sym__block_quote_continuation] = ACTIONS(187), - [sym__thematic_break_dash] = ACTIONS(211), - [sym__thematic_break_star] = ACTIONS(211), + [sym__block_with_section] = STATE(137), + [sym__block_element] = STATE(137), + [sym_section] = STATE(137), + [sym_heading] = STATE(9), + [sym_list] = STATE(137), + [sym__list_dash] = STATE(143), + [sym__list_item_dash] = STATE(687), + [sym__list_plus] = STATE(143), + [sym__list_item_plus] = STATE(691), + [sym__list_star] = STATE(143), + [sym__list_item_star] = STATE(673), + [sym__list_task] = STATE(143), + [sym__list_item_task] = STATE(680), + [sym_list_marker_task] = STATE(48), + [sym__list_definition] = STATE(143), + [sym__list_item_definition] = STATE(804), + [sym__list_decimal_period] = STATE(143), + [sym__list_item_decimal_period] = STATE(837), + [sym__list_decimal_paren] = STATE(143), + [sym__list_item_decimal_paren] = STATE(703), + [sym__list_decimal_parens] = STATE(143), + [sym__list_item_decimal_parens] = STATE(715), + [sym__list_lower_alpha_period] = STATE(143), + [sym__list_item_lower_alpha_period] = STATE(739), + [sym__list_lower_alpha_paren] = STATE(143), + [sym__list_item_lower_alpha_paren] = STATE(754), + [sym__list_lower_alpha_parens] = STATE(143), + [sym__list_item_lower_alpha_parens] = STATE(755), + [sym__list_upper_alpha_period] = STATE(143), + [sym__list_item_upper_alpha_period] = STATE(758), + [sym__list_upper_alpha_paren] = STATE(143), + [sym__list_item_upper_alpha_paren] = STATE(759), + [sym__list_upper_alpha_parens] = STATE(143), + [sym__list_item_upper_alpha_parens] = STATE(766), + [sym__list_lower_roman_period] = STATE(143), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(143), + [sym__list_item_lower_roman_paren] = STATE(770), + [sym__list_lower_roman_parens] = STATE(143), + [sym__list_item_lower_roman_parens] = STATE(773), + [sym__list_upper_roman_period] = STATE(143), + [sym__list_item_upper_roman_period] = STATE(775), + [sym__list_upper_roman_paren] = STATE(143), + [sym__list_item_upper_roman_paren] = STATE(791), + [sym__list_upper_roman_parens] = STATE(143), + [sym__list_item_upper_roman_parens] = STATE(793), + [sym_table] = STATE(137), + [sym__table_row] = STATE(66), + [sym_table_header] = STATE(66), + [sym_table_separator] = STATE(66), + [sym_table_row] = STATE(66), + [sym_footnote] = STATE(137), + [sym_footnote_marker_begin] = STATE(1145), + [sym_div] = STATE(137), + [sym__div_marker_begin] = STATE(1061), + [sym_code_block] = STATE(137), + [sym_raw_block] = STATE(137), + [sym_thematic_break] = STATE(137), + [sym_block_quote] = STATE(137), + [sym__block_quote_prefix] = STATE(224), + [sym_link_reference_definition] = STATE(137), + [sym_block_attribute] = STATE(137), + [sym__paragraph] = STATE(137), + [sym__paragraph_content] = STATE(800), + [sym__paragraph_inline_content] = STATE(799), + [sym__inline] = STATE(629), + [sym__symbol_fallback] = STATE(285), + [aux_sym_document_repeat1] = STATE(10), + [aux_sym__list_dash_repeat1] = STATE(351), + [aux_sym__list_plus_repeat1] = STATE(350), + [aux_sym__list_star_repeat1] = STATE(353), + [aux_sym__list_task_repeat1] = STATE(339), + [aux_sym__list_definition_repeat1] = STATE(512), + [aux_sym__list_decimal_period_repeat1] = STATE(513), + [aux_sym__list_decimal_paren_repeat1] = STATE(514), + [aux_sym__list_decimal_parens_repeat1] = STATE(515), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(516), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(518), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(519), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(520), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(521), + [aux_sym__list_lower_roman_period_repeat1] = STATE(579), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(523), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(524), + [aux_sym__list_upper_roman_period_repeat1] = STATE(525), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(526), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(527), + [aux_sym_table_repeat1] = STATE(66), + [aux_sym__block_quote_prefix_repeat1] = STATE(235), + [aux_sym__inline_repeat1] = STATE(285), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_LBRACK_CARET] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_DOT] = ACTIONS(11), + [aux_sym_identifier_token1] = ACTIONS(11), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_PERCENT] = ACTIONS(11), + [sym__block_close] = ACTIONS(232), + [sym__newline] = ACTIONS(83), + [sym__heading_begin] = ACTIONS(17), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(85), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(87), + [sym__block_quote_continuation] = ACTIONS(65), + [sym__thematic_break_dash] = ACTIONS(89), + [sym__thematic_break_star] = ACTIONS(89), + [sym__table_header_begin] = ACTIONS(91), + [sym__table_separator_begin] = ACTIONS(93), + [sym__table_row_begin] = ACTIONS(95), }, [10] = { - [sym__block_with_section] = STATE(138), - [sym__block_element] = STATE(138), - [sym_section] = STATE(138), - [sym_heading] = STATE(10), - [sym_list] = STATE(138), - [sym__list_dash] = STATE(144), - [sym__list_item_dash] = STATE(636), - [sym__list_plus] = STATE(144), - [sym__list_item_plus] = STATE(637), - [sym__list_star] = STATE(144), - [sym__list_item_star] = STATE(671), - [sym__list_task] = STATE(144), - [sym__list_item_task] = STATE(691), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(144), - [sym__list_item_definition] = STATE(896), - [sym__list_decimal_period] = STATE(144), - [sym__list_item_decimal_period] = STATE(841), - [sym__list_decimal_paren] = STATE(144), - [sym__list_item_decimal_paren] = STATE(796), - [sym__list_decimal_parens] = STATE(144), - [sym__list_item_decimal_parens] = STATE(716), - [sym__list_lower_alpha_period] = STATE(144), - [sym__list_item_lower_alpha_period] = STATE(722), - [sym__list_lower_alpha_paren] = STATE(144), - [sym__list_item_lower_alpha_paren] = STATE(801), - [sym__list_lower_alpha_parens] = STATE(144), - [sym__list_item_lower_alpha_parens] = STATE(813), - [sym__list_upper_alpha_period] = STATE(144), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(144), - [sym__list_item_upper_alpha_paren] = STATE(706), - [sym__list_upper_alpha_parens] = STATE(144), - [sym__list_item_upper_alpha_parens] = STATE(707), - [sym__list_lower_roman_period] = STATE(144), - [sym__list_item_lower_roman_period] = STATE(725), - [sym__list_lower_roman_paren] = STATE(144), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(144), - [sym__list_item_lower_roman_parens] = STATE(736), - [sym__list_upper_roman_period] = STATE(144), - [sym__list_item_upper_roman_period] = STATE(742), - [sym__list_upper_roman_paren] = STATE(144), - [sym__list_item_upper_roman_paren] = STATE(743), - [sym__list_upper_roman_parens] = STATE(144), - [sym__list_item_upper_roman_parens] = STATE(762), - [sym_table] = STATE(138), - [sym__table_content] = STATE(67), - [sym_table_separator] = STATE(67), - [sym_table_row] = STATE(70), - [sym_footnote] = STATE(138), - [sym_footnote_marker_begin] = STATE(1180), - [sym_div] = STATE(138), - [sym__div_marker_begin] = STATE(1074), - [sym_code_block] = STATE(138), - [sym_raw_block] = STATE(138), - [sym_thematic_break] = STATE(138), - [sym_block_quote] = STATE(138), - [sym__block_quote_prefix] = STATE(233), - [sym_link_reference_definition] = STATE(138), - [sym_block_attribute] = STATE(138), - [sym__paragraph] = STATE(138), - [sym__paragraph_content] = STATE(773), - [sym__paragraph_inline_content] = STATE(775), - [sym__inline] = STATE(616), - [sym__symbol_fallback] = STATE(297), - [aux_sym_document_repeat1] = STATE(2), - [aux_sym__list_dash_repeat1] = STATE(357), - [aux_sym__list_plus_repeat1] = STATE(358), - [aux_sym__list_star_repeat1] = STATE(359), - [aux_sym__list_task_repeat1] = STATE(344), - [aux_sym__list_definition_repeat1] = STATE(515), - [aux_sym__list_decimal_period_repeat1] = STATE(516), - [aux_sym__list_decimal_paren_repeat1] = STATE(517), - [aux_sym__list_decimal_parens_repeat1] = STATE(518), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(519), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(520), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(521), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(522), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(523), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(524), - [aux_sym__list_lower_roman_period_repeat1] = STATE(525), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(526), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(527), - [aux_sym__list_upper_roman_period_repeat1] = STATE(528), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(529), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(530), - [aux_sym_table_repeat1] = STATE(67), - [aux_sym__block_quote_prefix_repeat1] = STATE(253), - [aux_sym__inline_repeat1] = STATE(297), - [anon_sym_LBRACK] = ACTIONS(71), - [anon_sym_PIPE] = ACTIONS(73), - [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(75), - [anon_sym_DOT] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(13), - [aux_sym__inline_token1] = ACTIONS(13), - [anon_sym_LBRACE_DASH] = ACTIONS(13), - [anon_sym_POUND] = ACTIONS(13), - [anon_sym_PERCENT] = ACTIONS(13), - [sym__block_close] = ACTIONS(214), - [sym__newline] = ACTIONS(79), - [sym__heading_begin] = ACTIONS(19), - [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(81), - [sym_list_marker_dash] = ACTIONS(25), - [sym_list_marker_star] = ACTIONS(27), - [sym_list_marker_plus] = ACTIONS(29), - [sym__list_marker_task_begin] = ACTIONS(31), - [sym_list_marker_definition] = ACTIONS(33), - [sym_list_marker_decimal_period] = ACTIONS(35), - [sym_list_marker_lower_alpha_period] = ACTIONS(37), - [sym_list_marker_upper_alpha_period] = ACTIONS(39), - [sym_list_marker_lower_roman_period] = ACTIONS(41), - [sym_list_marker_upper_roman_period] = ACTIONS(43), - [sym_list_marker_decimal_paren] = ACTIONS(45), - [sym_list_marker_lower_alpha_paren] = ACTIONS(47), - [sym_list_marker_upper_alpha_paren] = ACTIONS(49), - [sym_list_marker_lower_roman_paren] = ACTIONS(51), - [sym_list_marker_upper_roman_paren] = ACTIONS(53), - [sym_list_marker_decimal_parens] = ACTIONS(55), - [sym_list_marker_lower_alpha_parens] = ACTIONS(57), - [sym_list_marker_upper_alpha_parens] = ACTIONS(59), - [sym_list_marker_lower_roman_parens] = ACTIONS(61), - [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(83), - [sym__block_quote_continuation] = ACTIONS(67), - [sym__thematic_break_dash] = ACTIONS(85), - [sym__thematic_break_star] = ACTIONS(85), + [sym__block_with_section] = STATE(137), + [sym__block_element] = STATE(137), + [sym_section] = STATE(137), + [sym_heading] = STATE(9), + [sym_list] = STATE(137), + [sym__list_dash] = STATE(143), + [sym__list_item_dash] = STATE(687), + [sym__list_plus] = STATE(143), + [sym__list_item_plus] = STATE(691), + [sym__list_star] = STATE(143), + [sym__list_item_star] = STATE(673), + [sym__list_task] = STATE(143), + [sym__list_item_task] = STATE(680), + [sym_list_marker_task] = STATE(48), + [sym__list_definition] = STATE(143), + [sym__list_item_definition] = STATE(804), + [sym__list_decimal_period] = STATE(143), + [sym__list_item_decimal_period] = STATE(837), + [sym__list_decimal_paren] = STATE(143), + [sym__list_item_decimal_paren] = STATE(703), + [sym__list_decimal_parens] = STATE(143), + [sym__list_item_decimal_parens] = STATE(715), + [sym__list_lower_alpha_period] = STATE(143), + [sym__list_item_lower_alpha_period] = STATE(739), + [sym__list_lower_alpha_paren] = STATE(143), + [sym__list_item_lower_alpha_paren] = STATE(754), + [sym__list_lower_alpha_parens] = STATE(143), + [sym__list_item_lower_alpha_parens] = STATE(755), + [sym__list_upper_alpha_period] = STATE(143), + [sym__list_item_upper_alpha_period] = STATE(758), + [sym__list_upper_alpha_paren] = STATE(143), + [sym__list_item_upper_alpha_paren] = STATE(759), + [sym__list_upper_alpha_parens] = STATE(143), + [sym__list_item_upper_alpha_parens] = STATE(766), + [sym__list_lower_roman_period] = STATE(143), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(143), + [sym__list_item_lower_roman_paren] = STATE(770), + [sym__list_lower_roman_parens] = STATE(143), + [sym__list_item_lower_roman_parens] = STATE(773), + [sym__list_upper_roman_period] = STATE(143), + [sym__list_item_upper_roman_period] = STATE(775), + [sym__list_upper_roman_paren] = STATE(143), + [sym__list_item_upper_roman_paren] = STATE(791), + [sym__list_upper_roman_parens] = STATE(143), + [sym__list_item_upper_roman_parens] = STATE(793), + [sym_table] = STATE(137), + [sym__table_row] = STATE(66), + [sym_table_header] = STATE(66), + [sym_table_separator] = STATE(66), + [sym_table_row] = STATE(66), + [sym_footnote] = STATE(137), + [sym_footnote_marker_begin] = STATE(1145), + [sym_div] = STATE(137), + [sym__div_marker_begin] = STATE(1061), + [sym_code_block] = STATE(137), + [sym_raw_block] = STATE(137), + [sym_thematic_break] = STATE(137), + [sym_block_quote] = STATE(137), + [sym__block_quote_prefix] = STATE(224), + [sym_link_reference_definition] = STATE(137), + [sym_block_attribute] = STATE(137), + [sym__paragraph] = STATE(137), + [sym__paragraph_content] = STATE(800), + [sym__paragraph_inline_content] = STATE(799), + [sym__inline] = STATE(629), + [sym__symbol_fallback] = STATE(285), + [aux_sym_document_repeat1] = STATE(8), + [aux_sym__list_dash_repeat1] = STATE(351), + [aux_sym__list_plus_repeat1] = STATE(350), + [aux_sym__list_star_repeat1] = STATE(353), + [aux_sym__list_task_repeat1] = STATE(339), + [aux_sym__list_definition_repeat1] = STATE(512), + [aux_sym__list_decimal_period_repeat1] = STATE(513), + [aux_sym__list_decimal_paren_repeat1] = STATE(514), + [aux_sym__list_decimal_parens_repeat1] = STATE(515), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(516), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(518), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(519), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(520), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(521), + [aux_sym__list_lower_roman_period_repeat1] = STATE(579), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(523), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(524), + [aux_sym__list_upper_roman_period_repeat1] = STATE(525), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(526), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(527), + [aux_sym_table_repeat1] = STATE(66), + [aux_sym__block_quote_prefix_repeat1] = STATE(235), + [aux_sym__inline_repeat1] = STATE(285), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_LBRACK_CARET] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_DOT] = ACTIONS(11), + [aux_sym_identifier_token1] = ACTIONS(11), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_PERCENT] = ACTIONS(11), + [sym__block_close] = ACTIONS(234), + [sym__newline] = ACTIONS(83), + [sym__heading_begin] = ACTIONS(17), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(85), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(87), + [sym__block_quote_continuation] = ACTIONS(65), + [sym__thematic_break_dash] = ACTIONS(89), + [sym__thematic_break_star] = ACTIONS(89), + [sym__table_header_begin] = ACTIONS(91), + [sym__table_separator_begin] = ACTIONS(93), + [sym__table_row_begin] = ACTIONS(95), }, [11] = { - [sym__block_with_heading] = STATE(208), - [sym__block_element] = STATE(208), - [sym_heading] = STATE(208), - [sym_list] = STATE(208), - [sym__list_dash] = STATE(144), - [sym__list_item_dash] = STATE(636), - [sym__list_plus] = STATE(144), - [sym__list_item_plus] = STATE(637), - [sym__list_star] = STATE(144), - [sym__list_item_star] = STATE(671), - [sym__list_task] = STATE(144), - [sym__list_item_task] = STATE(691), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(144), - [sym__list_item_definition] = STATE(896), - [sym__list_decimal_period] = STATE(144), - [sym__list_item_decimal_period] = STATE(841), - [sym__list_decimal_paren] = STATE(144), - [sym__list_item_decimal_paren] = STATE(796), - [sym__list_decimal_parens] = STATE(144), - [sym__list_item_decimal_parens] = STATE(716), - [sym__list_lower_alpha_period] = STATE(144), - [sym__list_item_lower_alpha_period] = STATE(722), - [sym__list_lower_alpha_paren] = STATE(144), - [sym__list_item_lower_alpha_paren] = STATE(801), - [sym__list_lower_alpha_parens] = STATE(144), - [sym__list_item_lower_alpha_parens] = STATE(813), - [sym__list_upper_alpha_period] = STATE(144), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(144), - [sym__list_item_upper_alpha_paren] = STATE(706), - [sym__list_upper_alpha_parens] = STATE(144), - [sym__list_item_upper_alpha_parens] = STATE(707), - [sym__list_lower_roman_period] = STATE(144), - [sym__list_item_lower_roman_period] = STATE(725), - [sym__list_lower_roman_paren] = STATE(144), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(144), - [sym__list_item_lower_roman_parens] = STATE(736), - [sym__list_upper_roman_period] = STATE(144), - [sym__list_item_upper_roman_period] = STATE(742), - [sym__list_upper_roman_paren] = STATE(144), - [sym__list_item_upper_roman_paren] = STATE(743), - [sym__list_upper_roman_parens] = STATE(144), - [sym__list_item_upper_roman_parens] = STATE(762), - [sym_table] = STATE(208), - [sym__table_content] = STATE(67), - [sym_table_separator] = STATE(67), - [sym_table_row] = STATE(70), - [sym_footnote] = STATE(208), - [sym_footnote_marker_begin] = STATE(1180), - [sym_div] = STATE(208), - [sym__div_marker_begin] = STATE(1074), - [sym_code_block] = STATE(208), - [sym_raw_block] = STATE(208), - [sym_thematic_break] = STATE(208), - [sym_block_quote] = STATE(208), - [sym__block_quote_prefix] = STATE(221), - [sym_link_reference_definition] = STATE(208), - [sym_block_attribute] = STATE(208), - [sym__paragraph] = STATE(208), - [sym__paragraph_content] = STATE(773), - [sym__paragraph_inline_content] = STATE(775), - [sym__inline] = STATE(616), - [sym__symbol_fallback] = STATE(297), - [aux_sym__list_dash_repeat1] = STATE(357), - [aux_sym__list_plus_repeat1] = STATE(358), - [aux_sym__list_star_repeat1] = STATE(359), - [aux_sym__list_task_repeat1] = STATE(344), - [aux_sym__list_definition_repeat1] = STATE(515), - [aux_sym__list_decimal_period_repeat1] = STATE(516), - [aux_sym__list_decimal_paren_repeat1] = STATE(517), - [aux_sym__list_decimal_parens_repeat1] = STATE(518), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(519), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(520), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(521), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(522), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(523), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(524), - [aux_sym__list_lower_roman_period_repeat1] = STATE(525), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(526), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(527), - [aux_sym__list_upper_roman_period_repeat1] = STATE(528), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(529), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(530), - [aux_sym_table_repeat1] = STATE(67), - [aux_sym_div_repeat1] = STATE(15), - [aux_sym__block_quote_prefix_repeat1] = STATE(240), - [aux_sym__inline_repeat1] = STATE(297), - [anon_sym_LBRACK] = ACTIONS(71), - [anon_sym_PIPE] = ACTIONS(73), - [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(75), - [anon_sym_DOT] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(13), - [aux_sym__inline_token1] = ACTIONS(13), - [anon_sym_LBRACE_DASH] = ACTIONS(13), - [anon_sym_POUND] = ACTIONS(13), - [anon_sym_PERCENT] = ACTIONS(13), - [sym__block_close] = ACTIONS(216), - [sym__newline] = ACTIONS(218), - [sym__heading_begin] = ACTIONS(19), - [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(81), - [sym_list_marker_dash] = ACTIONS(25), - [sym_list_marker_star] = ACTIONS(27), - [sym_list_marker_plus] = ACTIONS(29), - [sym__list_marker_task_begin] = ACTIONS(31), - [sym_list_marker_definition] = ACTIONS(33), - [sym_list_marker_decimal_period] = ACTIONS(35), - [sym_list_marker_lower_alpha_period] = ACTIONS(37), - [sym_list_marker_upper_alpha_period] = ACTIONS(39), - [sym_list_marker_lower_roman_period] = ACTIONS(41), - [sym_list_marker_upper_roman_period] = ACTIONS(43), - [sym_list_marker_decimal_paren] = ACTIONS(45), - [sym_list_marker_lower_alpha_paren] = ACTIONS(47), - [sym_list_marker_upper_alpha_paren] = ACTIONS(49), - [sym_list_marker_lower_roman_paren] = ACTIONS(51), - [sym_list_marker_upper_roman_paren] = ACTIONS(53), - [sym_list_marker_decimal_parens] = ACTIONS(55), - [sym_list_marker_lower_alpha_parens] = ACTIONS(57), - [sym_list_marker_upper_alpha_parens] = ACTIONS(59), - [sym_list_marker_lower_roman_parens] = ACTIONS(61), - [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(83), - [sym__block_quote_continuation] = ACTIONS(220), - [sym__thematic_break_dash] = ACTIONS(85), - [sym__thematic_break_star] = ACTIONS(85), + [sym__block_with_heading] = STATE(206), + [sym__block_element] = STATE(206), + [sym_heading] = STATE(206), + [sym_list] = STATE(206), + [sym__list_dash] = STATE(143), + [sym__list_item_dash] = STATE(687), + [sym__list_plus] = STATE(143), + [sym__list_item_plus] = STATE(691), + [sym__list_star] = STATE(143), + [sym__list_item_star] = STATE(673), + [sym__list_task] = STATE(143), + [sym__list_item_task] = STATE(680), + [sym_list_marker_task] = STATE(48), + [sym__list_definition] = STATE(143), + [sym__list_item_definition] = STATE(804), + [sym__list_decimal_period] = STATE(143), + [sym__list_item_decimal_period] = STATE(837), + [sym__list_decimal_paren] = STATE(143), + [sym__list_item_decimal_paren] = STATE(703), + [sym__list_decimal_parens] = STATE(143), + [sym__list_item_decimal_parens] = STATE(715), + [sym__list_lower_alpha_period] = STATE(143), + [sym__list_item_lower_alpha_period] = STATE(739), + [sym__list_lower_alpha_paren] = STATE(143), + [sym__list_item_lower_alpha_paren] = STATE(754), + [sym__list_lower_alpha_parens] = STATE(143), + [sym__list_item_lower_alpha_parens] = STATE(755), + [sym__list_upper_alpha_period] = STATE(143), + [sym__list_item_upper_alpha_period] = STATE(758), + [sym__list_upper_alpha_paren] = STATE(143), + [sym__list_item_upper_alpha_paren] = STATE(759), + [sym__list_upper_alpha_parens] = STATE(143), + [sym__list_item_upper_alpha_parens] = STATE(766), + [sym__list_lower_roman_period] = STATE(143), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(143), + [sym__list_item_lower_roman_paren] = STATE(770), + [sym__list_lower_roman_parens] = STATE(143), + [sym__list_item_lower_roman_parens] = STATE(773), + [sym__list_upper_roman_period] = STATE(143), + [sym__list_item_upper_roman_period] = STATE(775), + [sym__list_upper_roman_paren] = STATE(143), + [sym__list_item_upper_roman_paren] = STATE(791), + [sym__list_upper_roman_parens] = STATE(143), + [sym__list_item_upper_roman_parens] = STATE(793), + [sym_table] = STATE(206), + [sym__table_row] = STATE(66), + [sym_table_header] = STATE(66), + [sym_table_separator] = STATE(66), + [sym_table_row] = STATE(66), + [sym_footnote] = STATE(206), + [sym_footnote_marker_begin] = STATE(1145), + [sym_div] = STATE(206), + [sym__div_marker_begin] = STATE(1061), + [sym_code_block] = STATE(206), + [sym_raw_block] = STATE(206), + [sym_thematic_break] = STATE(206), + [sym_block_quote] = STATE(206), + [sym__block_quote_prefix] = STATE(216), + [sym_link_reference_definition] = STATE(206), + [sym_block_attribute] = STATE(206), + [sym__paragraph] = STATE(206), + [sym__paragraph_content] = STATE(800), + [sym__paragraph_inline_content] = STATE(799), + [sym__inline] = STATE(629), + [sym__symbol_fallback] = STATE(285), + [aux_sym__list_dash_repeat1] = STATE(351), + [aux_sym__list_plus_repeat1] = STATE(350), + [aux_sym__list_star_repeat1] = STATE(353), + [aux_sym__list_task_repeat1] = STATE(339), + [aux_sym__list_definition_repeat1] = STATE(512), + [aux_sym__list_decimal_period_repeat1] = STATE(513), + [aux_sym__list_decimal_paren_repeat1] = STATE(514), + [aux_sym__list_decimal_parens_repeat1] = STATE(515), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(516), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(518), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(519), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(520), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(521), + [aux_sym__list_lower_roman_period_repeat1] = STATE(579), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(523), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(524), + [aux_sym__list_upper_roman_period_repeat1] = STATE(525), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(526), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(527), + [aux_sym_table_repeat1] = STATE(66), + [aux_sym_div_repeat1] = STATE(14), + [aux_sym__block_quote_prefix_repeat1] = STATE(232), + [aux_sym__inline_repeat1] = STATE(285), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_LBRACK_CARET] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_DOT] = ACTIONS(11), + [aux_sym_identifier_token1] = ACTIONS(11), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_PERCENT] = ACTIONS(11), + [sym__block_close] = ACTIONS(236), + [sym__newline] = ACTIONS(238), + [sym__heading_begin] = ACTIONS(17), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(85), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(87), + [sym__block_quote_continuation] = ACTIONS(240), + [sym__thematic_break_dash] = ACTIONS(89), + [sym__thematic_break_star] = ACTIONS(89), + [sym__table_header_begin] = ACTIONS(91), + [sym__table_separator_begin] = ACTIONS(93), + [sym__table_row_begin] = ACTIONS(95), }, [12] = { - [sym__block_with_heading] = STATE(208), - [sym__block_element] = STATE(208), - [sym_heading] = STATE(208), - [sym_list] = STATE(208), - [sym__list_dash] = STATE(144), - [sym__list_item_dash] = STATE(636), - [sym__list_plus] = STATE(144), - [sym__list_item_plus] = STATE(637), - [sym__list_star] = STATE(144), - [sym__list_item_star] = STATE(671), - [sym__list_task] = STATE(144), - [sym__list_item_task] = STATE(691), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(144), - [sym__list_item_definition] = STATE(896), - [sym__list_decimal_period] = STATE(144), - [sym__list_item_decimal_period] = STATE(841), - [sym__list_decimal_paren] = STATE(144), - [sym__list_item_decimal_paren] = STATE(796), - [sym__list_decimal_parens] = STATE(144), - [sym__list_item_decimal_parens] = STATE(716), - [sym__list_lower_alpha_period] = STATE(144), - [sym__list_item_lower_alpha_period] = STATE(722), - [sym__list_lower_alpha_paren] = STATE(144), - [sym__list_item_lower_alpha_paren] = STATE(801), - [sym__list_lower_alpha_parens] = STATE(144), - [sym__list_item_lower_alpha_parens] = STATE(813), - [sym__list_upper_alpha_period] = STATE(144), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(144), - [sym__list_item_upper_alpha_paren] = STATE(706), - [sym__list_upper_alpha_parens] = STATE(144), - [sym__list_item_upper_alpha_parens] = STATE(707), - [sym__list_lower_roman_period] = STATE(144), - [sym__list_item_lower_roman_period] = STATE(725), - [sym__list_lower_roman_paren] = STATE(144), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(144), - [sym__list_item_lower_roman_parens] = STATE(736), - [sym__list_upper_roman_period] = STATE(144), - [sym__list_item_upper_roman_period] = STATE(742), - [sym__list_upper_roman_paren] = STATE(144), - [sym__list_item_upper_roman_paren] = STATE(743), - [sym__list_upper_roman_parens] = STATE(144), - [sym__list_item_upper_roman_parens] = STATE(762), - [sym_table] = STATE(208), - [sym__table_content] = STATE(67), - [sym_table_separator] = STATE(67), - [sym_table_row] = STATE(70), - [sym_footnote] = STATE(208), - [sym_footnote_marker_begin] = STATE(1180), - [sym_div] = STATE(208), - [sym__div_marker_begin] = STATE(1074), - [sym_code_block] = STATE(208), - [sym_raw_block] = STATE(208), - [sym_thematic_break] = STATE(208), - [sym_block_quote] = STATE(208), - [sym__block_quote_prefix] = STATE(227), - [sym_link_reference_definition] = STATE(208), - [sym_block_attribute] = STATE(208), - [sym__paragraph] = STATE(208), - [sym__paragraph_content] = STATE(773), - [sym__paragraph_inline_content] = STATE(775), - [sym__inline] = STATE(616), - [sym__symbol_fallback] = STATE(297), - [aux_sym__list_dash_repeat1] = STATE(357), - [aux_sym__list_plus_repeat1] = STATE(358), - [aux_sym__list_star_repeat1] = STATE(359), - [aux_sym__list_task_repeat1] = STATE(344), - [aux_sym__list_definition_repeat1] = STATE(515), - [aux_sym__list_decimal_period_repeat1] = STATE(516), - [aux_sym__list_decimal_paren_repeat1] = STATE(517), - [aux_sym__list_decimal_parens_repeat1] = STATE(518), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(519), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(520), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(521), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(522), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(523), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(524), - [aux_sym__list_lower_roman_period_repeat1] = STATE(525), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(526), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(527), - [aux_sym__list_upper_roman_period_repeat1] = STATE(528), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(529), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(530), - [aux_sym_table_repeat1] = STATE(67), - [aux_sym_div_repeat1] = STATE(15), - [aux_sym__block_quote_prefix_repeat1] = STATE(240), - [aux_sym__inline_repeat1] = STATE(297), - [anon_sym_LBRACK] = ACTIONS(71), - [anon_sym_PIPE] = ACTIONS(73), - [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(75), - [anon_sym_DOT] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(13), - [aux_sym__inline_token1] = ACTIONS(13), - [anon_sym_LBRACE_DASH] = ACTIONS(13), - [anon_sym_POUND] = ACTIONS(13), - [anon_sym_PERCENT] = ACTIONS(13), - [sym__block_close] = ACTIONS(222), - [sym__newline] = ACTIONS(218), - [sym__heading_begin] = ACTIONS(19), - [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(81), - [sym_list_marker_dash] = ACTIONS(25), - [sym_list_marker_star] = ACTIONS(27), - [sym_list_marker_plus] = ACTIONS(29), - [sym__list_marker_task_begin] = ACTIONS(31), - [sym_list_marker_definition] = ACTIONS(33), - [sym_list_marker_decimal_period] = ACTIONS(35), - [sym_list_marker_lower_alpha_period] = ACTIONS(37), - [sym_list_marker_upper_alpha_period] = ACTIONS(39), - [sym_list_marker_lower_roman_period] = ACTIONS(41), - [sym_list_marker_upper_roman_period] = ACTIONS(43), - [sym_list_marker_decimal_paren] = ACTIONS(45), - [sym_list_marker_lower_alpha_paren] = ACTIONS(47), - [sym_list_marker_upper_alpha_paren] = ACTIONS(49), - [sym_list_marker_lower_roman_paren] = ACTIONS(51), - [sym_list_marker_upper_roman_paren] = ACTIONS(53), - [sym_list_marker_decimal_parens] = ACTIONS(55), - [sym_list_marker_lower_alpha_parens] = ACTIONS(57), - [sym_list_marker_upper_alpha_parens] = ACTIONS(59), - [sym_list_marker_lower_roman_parens] = ACTIONS(61), - [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(83), - [sym__block_quote_continuation] = ACTIONS(220), - [sym__thematic_break_dash] = ACTIONS(85), - [sym__thematic_break_star] = ACTIONS(85), + [sym__block_with_heading] = STATE(206), + [sym__block_element] = STATE(206), + [sym_heading] = STATE(206), + [sym_list] = STATE(206), + [sym__list_dash] = STATE(143), + [sym__list_item_dash] = STATE(687), + [sym__list_plus] = STATE(143), + [sym__list_item_plus] = STATE(691), + [sym__list_star] = STATE(143), + [sym__list_item_star] = STATE(673), + [sym__list_task] = STATE(143), + [sym__list_item_task] = STATE(680), + [sym_list_marker_task] = STATE(48), + [sym__list_definition] = STATE(143), + [sym__list_item_definition] = STATE(804), + [sym__list_decimal_period] = STATE(143), + [sym__list_item_decimal_period] = STATE(837), + [sym__list_decimal_paren] = STATE(143), + [sym__list_item_decimal_paren] = STATE(703), + [sym__list_decimal_parens] = STATE(143), + [sym__list_item_decimal_parens] = STATE(715), + [sym__list_lower_alpha_period] = STATE(143), + [sym__list_item_lower_alpha_period] = STATE(739), + [sym__list_lower_alpha_paren] = STATE(143), + [sym__list_item_lower_alpha_paren] = STATE(754), + [sym__list_lower_alpha_parens] = STATE(143), + [sym__list_item_lower_alpha_parens] = STATE(755), + [sym__list_upper_alpha_period] = STATE(143), + [sym__list_item_upper_alpha_period] = STATE(758), + [sym__list_upper_alpha_paren] = STATE(143), + [sym__list_item_upper_alpha_paren] = STATE(759), + [sym__list_upper_alpha_parens] = STATE(143), + [sym__list_item_upper_alpha_parens] = STATE(766), + [sym__list_lower_roman_period] = STATE(143), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(143), + [sym__list_item_lower_roman_paren] = STATE(770), + [sym__list_lower_roman_parens] = STATE(143), + [sym__list_item_lower_roman_parens] = STATE(773), + [sym__list_upper_roman_period] = STATE(143), + [sym__list_item_upper_roman_period] = STATE(775), + [sym__list_upper_roman_paren] = STATE(143), + [sym__list_item_upper_roman_paren] = STATE(791), + [sym__list_upper_roman_parens] = STATE(143), + [sym__list_item_upper_roman_parens] = STATE(793), + [sym_table] = STATE(206), + [sym__table_row] = STATE(66), + [sym_table_header] = STATE(66), + [sym_table_separator] = STATE(66), + [sym_table_row] = STATE(66), + [sym_footnote] = STATE(206), + [sym_footnote_marker_begin] = STATE(1145), + [sym_div] = STATE(206), + [sym__div_marker_begin] = STATE(1061), + [sym_code_block] = STATE(206), + [sym_raw_block] = STATE(206), + [sym_thematic_break] = STATE(206), + [sym_block_quote] = STATE(206), + [sym__block_quote_prefix] = STATE(214), + [sym_link_reference_definition] = STATE(206), + [sym_block_attribute] = STATE(206), + [sym__paragraph] = STATE(206), + [sym__paragraph_content] = STATE(800), + [sym__paragraph_inline_content] = STATE(799), + [sym__inline] = STATE(629), + [sym__symbol_fallback] = STATE(285), + [aux_sym__list_dash_repeat1] = STATE(351), + [aux_sym__list_plus_repeat1] = STATE(350), + [aux_sym__list_star_repeat1] = STATE(353), + [aux_sym__list_task_repeat1] = STATE(339), + [aux_sym__list_definition_repeat1] = STATE(512), + [aux_sym__list_decimal_period_repeat1] = STATE(513), + [aux_sym__list_decimal_paren_repeat1] = STATE(514), + [aux_sym__list_decimal_parens_repeat1] = STATE(515), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(516), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(518), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(519), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(520), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(521), + [aux_sym__list_lower_roman_period_repeat1] = STATE(579), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(523), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(524), + [aux_sym__list_upper_roman_period_repeat1] = STATE(525), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(526), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(527), + [aux_sym_table_repeat1] = STATE(66), + [aux_sym_div_repeat1] = STATE(13), + [aux_sym__block_quote_prefix_repeat1] = STATE(232), + [aux_sym__inline_repeat1] = STATE(285), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_LBRACK_CARET] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_DOT] = ACTIONS(11), + [aux_sym_identifier_token1] = ACTIONS(11), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_PERCENT] = ACTIONS(11), + [sym__block_close] = ACTIONS(242), + [sym__newline] = ACTIONS(238), + [sym__heading_begin] = ACTIONS(17), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(85), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(87), + [sym__block_quote_continuation] = ACTIONS(240), + [sym__thematic_break_dash] = ACTIONS(89), + [sym__thematic_break_star] = ACTIONS(89), + [sym__table_header_begin] = ACTIONS(91), + [sym__table_separator_begin] = ACTIONS(93), + [sym__table_row_begin] = ACTIONS(95), }, [13] = { - [sym__block_with_heading] = STATE(208), - [sym__block_element] = STATE(208), - [sym_heading] = STATE(208), - [sym_list] = STATE(208), - [sym__list_dash] = STATE(144), - [sym__list_item_dash] = STATE(636), - [sym__list_plus] = STATE(144), - [sym__list_item_plus] = STATE(637), - [sym__list_star] = STATE(144), - [sym__list_item_star] = STATE(671), - [sym__list_task] = STATE(144), - [sym__list_item_task] = STATE(691), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(144), - [sym__list_item_definition] = STATE(896), - [sym__list_decimal_period] = STATE(144), - [sym__list_item_decimal_period] = STATE(841), - [sym__list_decimal_paren] = STATE(144), - [sym__list_item_decimal_paren] = STATE(796), - [sym__list_decimal_parens] = STATE(144), - [sym__list_item_decimal_parens] = STATE(716), - [sym__list_lower_alpha_period] = STATE(144), - [sym__list_item_lower_alpha_period] = STATE(722), - [sym__list_lower_alpha_paren] = STATE(144), - [sym__list_item_lower_alpha_paren] = STATE(801), - [sym__list_lower_alpha_parens] = STATE(144), - [sym__list_item_lower_alpha_parens] = STATE(813), - [sym__list_upper_alpha_period] = STATE(144), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(144), - [sym__list_item_upper_alpha_paren] = STATE(706), - [sym__list_upper_alpha_parens] = STATE(144), - [sym__list_item_upper_alpha_parens] = STATE(707), - [sym__list_lower_roman_period] = STATE(144), - [sym__list_item_lower_roman_period] = STATE(725), - [sym__list_lower_roman_paren] = STATE(144), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(144), - [sym__list_item_lower_roman_parens] = STATE(736), - [sym__list_upper_roman_period] = STATE(144), - [sym__list_item_upper_roman_period] = STATE(742), - [sym__list_upper_roman_paren] = STATE(144), - [sym__list_item_upper_roman_paren] = STATE(743), - [sym__list_upper_roman_parens] = STATE(144), - [sym__list_item_upper_roman_parens] = STATE(762), - [sym_table] = STATE(208), - [sym__table_content] = STATE(67), - [sym_table_separator] = STATE(67), - [sym_table_row] = STATE(70), - [sym_footnote] = STATE(208), - [sym_footnote_marker_begin] = STATE(1180), - [sym_div] = STATE(208), - [sym__div_marker_begin] = STATE(1074), - [sym_code_block] = STATE(208), - [sym_raw_block] = STATE(208), - [sym_thematic_break] = STATE(208), - [sym_block_quote] = STATE(208), - [sym__block_quote_prefix] = STATE(226), - [sym_link_reference_definition] = STATE(208), - [sym_block_attribute] = STATE(208), - [sym__paragraph] = STATE(208), - [sym__paragraph_content] = STATE(773), - [sym__paragraph_inline_content] = STATE(775), - [sym__inline] = STATE(616), - [sym__symbol_fallback] = STATE(297), - [aux_sym__list_dash_repeat1] = STATE(357), - [aux_sym__list_plus_repeat1] = STATE(358), - [aux_sym__list_star_repeat1] = STATE(359), - [aux_sym__list_task_repeat1] = STATE(344), - [aux_sym__list_definition_repeat1] = STATE(515), - [aux_sym__list_decimal_period_repeat1] = STATE(516), - [aux_sym__list_decimal_paren_repeat1] = STATE(517), - [aux_sym__list_decimal_parens_repeat1] = STATE(518), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(519), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(520), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(521), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(522), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(523), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(524), - [aux_sym__list_lower_roman_period_repeat1] = STATE(525), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(526), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(527), - [aux_sym__list_upper_roman_period_repeat1] = STATE(528), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(529), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(530), - [aux_sym_table_repeat1] = STATE(67), + [sym__block_with_heading] = STATE(206), + [sym__block_element] = STATE(206), + [sym_heading] = STATE(206), + [sym_list] = STATE(206), + [sym__list_dash] = STATE(143), + [sym__list_item_dash] = STATE(687), + [sym__list_plus] = STATE(143), + [sym__list_item_plus] = STATE(691), + [sym__list_star] = STATE(143), + [sym__list_item_star] = STATE(673), + [sym__list_task] = STATE(143), + [sym__list_item_task] = STATE(680), + [sym_list_marker_task] = STATE(48), + [sym__list_definition] = STATE(143), + [sym__list_item_definition] = STATE(804), + [sym__list_decimal_period] = STATE(143), + [sym__list_item_decimal_period] = STATE(837), + [sym__list_decimal_paren] = STATE(143), + [sym__list_item_decimal_paren] = STATE(703), + [sym__list_decimal_parens] = STATE(143), + [sym__list_item_decimal_parens] = STATE(715), + [sym__list_lower_alpha_period] = STATE(143), + [sym__list_item_lower_alpha_period] = STATE(739), + [sym__list_lower_alpha_paren] = STATE(143), + [sym__list_item_lower_alpha_paren] = STATE(754), + [sym__list_lower_alpha_parens] = STATE(143), + [sym__list_item_lower_alpha_parens] = STATE(755), + [sym__list_upper_alpha_period] = STATE(143), + [sym__list_item_upper_alpha_period] = STATE(758), + [sym__list_upper_alpha_paren] = STATE(143), + [sym__list_item_upper_alpha_paren] = STATE(759), + [sym__list_upper_alpha_parens] = STATE(143), + [sym__list_item_upper_alpha_parens] = STATE(766), + [sym__list_lower_roman_period] = STATE(143), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(143), + [sym__list_item_lower_roman_paren] = STATE(770), + [sym__list_lower_roman_parens] = STATE(143), + [sym__list_item_lower_roman_parens] = STATE(773), + [sym__list_upper_roman_period] = STATE(143), + [sym__list_item_upper_roman_period] = STATE(775), + [sym__list_upper_roman_paren] = STATE(143), + [sym__list_item_upper_roman_paren] = STATE(791), + [sym__list_upper_roman_parens] = STATE(143), + [sym__list_item_upper_roman_parens] = STATE(793), + [sym_table] = STATE(206), + [sym__table_row] = STATE(66), + [sym_table_header] = STATE(66), + [sym_table_separator] = STATE(66), + [sym_table_row] = STATE(66), + [sym_footnote] = STATE(206), + [sym_footnote_marker_begin] = STATE(1145), + [sym_div] = STATE(206), + [sym__div_marker_begin] = STATE(1061), + [sym_code_block] = STATE(206), + [sym_raw_block] = STATE(206), + [sym_thematic_break] = STATE(206), + [sym_block_quote] = STATE(206), + [sym__block_quote_prefix] = STATE(217), + [sym_link_reference_definition] = STATE(206), + [sym_block_attribute] = STATE(206), + [sym__paragraph] = STATE(206), + [sym__paragraph_content] = STATE(800), + [sym__paragraph_inline_content] = STATE(799), + [sym__inline] = STATE(629), + [sym__symbol_fallback] = STATE(285), + [aux_sym__list_dash_repeat1] = STATE(351), + [aux_sym__list_plus_repeat1] = STATE(350), + [aux_sym__list_star_repeat1] = STATE(353), + [aux_sym__list_task_repeat1] = STATE(339), + [aux_sym__list_definition_repeat1] = STATE(512), + [aux_sym__list_decimal_period_repeat1] = STATE(513), + [aux_sym__list_decimal_paren_repeat1] = STATE(514), + [aux_sym__list_decimal_parens_repeat1] = STATE(515), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(516), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(518), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(519), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(520), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(521), + [aux_sym__list_lower_roman_period_repeat1] = STATE(579), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(523), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(524), + [aux_sym__list_upper_roman_period_repeat1] = STATE(525), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(526), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(527), + [aux_sym_table_repeat1] = STATE(66), [aux_sym_div_repeat1] = STATE(14), - [aux_sym__block_quote_prefix_repeat1] = STATE(240), - [aux_sym__inline_repeat1] = STATE(297), - [anon_sym_LBRACK] = ACTIONS(71), - [anon_sym_PIPE] = ACTIONS(73), - [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(75), - [anon_sym_DOT] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(13), - [aux_sym__inline_token1] = ACTIONS(13), - [anon_sym_LBRACE_DASH] = ACTIONS(13), - [anon_sym_POUND] = ACTIONS(13), - [anon_sym_PERCENT] = ACTIONS(13), - [sym__block_close] = ACTIONS(224), - [sym__newline] = ACTIONS(218), - [sym__heading_begin] = ACTIONS(19), - [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(81), - [sym_list_marker_dash] = ACTIONS(25), - [sym_list_marker_star] = ACTIONS(27), - [sym_list_marker_plus] = ACTIONS(29), - [sym__list_marker_task_begin] = ACTIONS(31), - [sym_list_marker_definition] = ACTIONS(33), - [sym_list_marker_decimal_period] = ACTIONS(35), - [sym_list_marker_lower_alpha_period] = ACTIONS(37), - [sym_list_marker_upper_alpha_period] = ACTIONS(39), - [sym_list_marker_lower_roman_period] = ACTIONS(41), - [sym_list_marker_upper_roman_period] = ACTIONS(43), - [sym_list_marker_decimal_paren] = ACTIONS(45), - [sym_list_marker_lower_alpha_paren] = ACTIONS(47), - [sym_list_marker_upper_alpha_paren] = ACTIONS(49), - [sym_list_marker_lower_roman_paren] = ACTIONS(51), - [sym_list_marker_upper_roman_paren] = ACTIONS(53), - [sym_list_marker_decimal_parens] = ACTIONS(55), - [sym_list_marker_lower_alpha_parens] = ACTIONS(57), - [sym_list_marker_upper_alpha_parens] = ACTIONS(59), - [sym_list_marker_lower_roman_parens] = ACTIONS(61), - [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(83), - [sym__block_quote_continuation] = ACTIONS(220), - [sym__thematic_break_dash] = ACTIONS(85), - [sym__thematic_break_star] = ACTIONS(85), + [aux_sym__block_quote_prefix_repeat1] = STATE(232), + [aux_sym__inline_repeat1] = STATE(285), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_LBRACK_CARET] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_DOT] = ACTIONS(11), + [aux_sym_identifier_token1] = ACTIONS(11), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_PERCENT] = ACTIONS(11), + [sym__block_close] = ACTIONS(244), + [sym__newline] = ACTIONS(238), + [sym__heading_begin] = ACTIONS(17), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(85), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(87), + [sym__block_quote_continuation] = ACTIONS(240), + [sym__thematic_break_dash] = ACTIONS(89), + [sym__thematic_break_star] = ACTIONS(89), + [sym__table_header_begin] = ACTIONS(91), + [sym__table_separator_begin] = ACTIONS(93), + [sym__table_row_begin] = ACTIONS(95), }, [14] = { - [sym__block_with_heading] = STATE(208), - [sym__block_element] = STATE(208), - [sym_heading] = STATE(208), - [sym_list] = STATE(208), - [sym__list_dash] = STATE(144), - [sym__list_item_dash] = STATE(636), - [sym__list_plus] = STATE(144), - [sym__list_item_plus] = STATE(637), - [sym__list_star] = STATE(144), - [sym__list_item_star] = STATE(671), - [sym__list_task] = STATE(144), - [sym__list_item_task] = STATE(691), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(144), - [sym__list_item_definition] = STATE(896), - [sym__list_decimal_period] = STATE(144), - [sym__list_item_decimal_period] = STATE(841), - [sym__list_decimal_paren] = STATE(144), - [sym__list_item_decimal_paren] = STATE(796), - [sym__list_decimal_parens] = STATE(144), - [sym__list_item_decimal_parens] = STATE(716), - [sym__list_lower_alpha_period] = STATE(144), - [sym__list_item_lower_alpha_period] = STATE(722), - [sym__list_lower_alpha_paren] = STATE(144), - [sym__list_item_lower_alpha_paren] = STATE(801), - [sym__list_lower_alpha_parens] = STATE(144), - [sym__list_item_lower_alpha_parens] = STATE(813), - [sym__list_upper_alpha_period] = STATE(144), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(144), - [sym__list_item_upper_alpha_paren] = STATE(706), - [sym__list_upper_alpha_parens] = STATE(144), - [sym__list_item_upper_alpha_parens] = STATE(707), - [sym__list_lower_roman_period] = STATE(144), - [sym__list_item_lower_roman_period] = STATE(725), - [sym__list_lower_roman_paren] = STATE(144), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(144), - [sym__list_item_lower_roman_parens] = STATE(736), - [sym__list_upper_roman_period] = STATE(144), - [sym__list_item_upper_roman_period] = STATE(742), - [sym__list_upper_roman_paren] = STATE(144), - [sym__list_item_upper_roman_paren] = STATE(743), - [sym__list_upper_roman_parens] = STATE(144), - [sym__list_item_upper_roman_parens] = STATE(762), - [sym_table] = STATE(208), - [sym__table_content] = STATE(67), - [sym_table_separator] = STATE(67), - [sym_table_row] = STATE(70), - [sym_footnote] = STATE(208), - [sym_footnote_marker_begin] = STATE(1180), - [sym_div] = STATE(208), - [sym__div_marker_begin] = STATE(1074), - [sym_code_block] = STATE(208), - [sym_raw_block] = STATE(208), - [sym_thematic_break] = STATE(208), - [sym_block_quote] = STATE(208), + [sym__block_with_heading] = STATE(206), + [sym__block_element] = STATE(206), + [sym_heading] = STATE(206), + [sym_list] = STATE(206), + [sym__list_dash] = STATE(143), + [sym__list_item_dash] = STATE(687), + [sym__list_plus] = STATE(143), + [sym__list_item_plus] = STATE(691), + [sym__list_star] = STATE(143), + [sym__list_item_star] = STATE(673), + [sym__list_task] = STATE(143), + [sym__list_item_task] = STATE(680), + [sym_list_marker_task] = STATE(48), + [sym__list_definition] = STATE(143), + [sym__list_item_definition] = STATE(804), + [sym__list_decimal_period] = STATE(143), + [sym__list_item_decimal_period] = STATE(837), + [sym__list_decimal_paren] = STATE(143), + [sym__list_item_decimal_paren] = STATE(703), + [sym__list_decimal_parens] = STATE(143), + [sym__list_item_decimal_parens] = STATE(715), + [sym__list_lower_alpha_period] = STATE(143), + [sym__list_item_lower_alpha_period] = STATE(739), + [sym__list_lower_alpha_paren] = STATE(143), + [sym__list_item_lower_alpha_paren] = STATE(754), + [sym__list_lower_alpha_parens] = STATE(143), + [sym__list_item_lower_alpha_parens] = STATE(755), + [sym__list_upper_alpha_period] = STATE(143), + [sym__list_item_upper_alpha_period] = STATE(758), + [sym__list_upper_alpha_paren] = STATE(143), + [sym__list_item_upper_alpha_paren] = STATE(759), + [sym__list_upper_alpha_parens] = STATE(143), + [sym__list_item_upper_alpha_parens] = STATE(766), + [sym__list_lower_roman_period] = STATE(143), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(143), + [sym__list_item_lower_roman_paren] = STATE(770), + [sym__list_lower_roman_parens] = STATE(143), + [sym__list_item_lower_roman_parens] = STATE(773), + [sym__list_upper_roman_period] = STATE(143), + [sym__list_item_upper_roman_period] = STATE(775), + [sym__list_upper_roman_paren] = STATE(143), + [sym__list_item_upper_roman_paren] = STATE(791), + [sym__list_upper_roman_parens] = STATE(143), + [sym__list_item_upper_roman_parens] = STATE(793), + [sym_table] = STATE(206), + [sym__table_row] = STATE(66), + [sym_table_header] = STATE(66), + [sym_table_separator] = STATE(66), + [sym_table_row] = STATE(66), + [sym_footnote] = STATE(206), + [sym_footnote_marker_begin] = STATE(1145), + [sym_div] = STATE(206), + [sym__div_marker_begin] = STATE(1061), + [sym_code_block] = STATE(206), + [sym_raw_block] = STATE(206), + [sym_thematic_break] = STATE(206), + [sym_block_quote] = STATE(206), [sym__block_quote_prefix] = STATE(224), - [sym_link_reference_definition] = STATE(208), - [sym_block_attribute] = STATE(208), - [sym__paragraph] = STATE(208), - [sym__paragraph_content] = STATE(773), - [sym__paragraph_inline_content] = STATE(775), - [sym__inline] = STATE(616), - [sym__symbol_fallback] = STATE(297), - [aux_sym__list_dash_repeat1] = STATE(357), - [aux_sym__list_plus_repeat1] = STATE(358), - [aux_sym__list_star_repeat1] = STATE(359), - [aux_sym__list_task_repeat1] = STATE(344), - [aux_sym__list_definition_repeat1] = STATE(515), - [aux_sym__list_decimal_period_repeat1] = STATE(516), - [aux_sym__list_decimal_paren_repeat1] = STATE(517), - [aux_sym__list_decimal_parens_repeat1] = STATE(518), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(519), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(520), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(521), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(522), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(523), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(524), - [aux_sym__list_lower_roman_period_repeat1] = STATE(525), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(526), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(527), - [aux_sym__list_upper_roman_period_repeat1] = STATE(528), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(529), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(530), - [aux_sym_table_repeat1] = STATE(67), - [aux_sym_div_repeat1] = STATE(15), - [aux_sym__block_quote_prefix_repeat1] = STATE(240), - [aux_sym__inline_repeat1] = STATE(297), - [anon_sym_LBRACK] = ACTIONS(71), - [anon_sym_PIPE] = ACTIONS(73), - [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(75), - [anon_sym_DOT] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(13), - [aux_sym__inline_token1] = ACTIONS(13), - [anon_sym_LBRACE_DASH] = ACTIONS(13), - [anon_sym_POUND] = ACTIONS(13), - [anon_sym_PERCENT] = ACTIONS(13), - [sym__block_close] = ACTIONS(226), - [sym__newline] = ACTIONS(218), - [sym__heading_begin] = ACTIONS(19), - [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(81), - [sym_list_marker_dash] = ACTIONS(25), - [sym_list_marker_star] = ACTIONS(27), - [sym_list_marker_plus] = ACTIONS(29), - [sym__list_marker_task_begin] = ACTIONS(31), - [sym_list_marker_definition] = ACTIONS(33), - [sym_list_marker_decimal_period] = ACTIONS(35), - [sym_list_marker_lower_alpha_period] = ACTIONS(37), - [sym_list_marker_upper_alpha_period] = ACTIONS(39), - [sym_list_marker_lower_roman_period] = ACTIONS(41), - [sym_list_marker_upper_roman_period] = ACTIONS(43), - [sym_list_marker_decimal_paren] = ACTIONS(45), - [sym_list_marker_lower_alpha_paren] = ACTIONS(47), - [sym_list_marker_upper_alpha_paren] = ACTIONS(49), - [sym_list_marker_lower_roman_paren] = ACTIONS(51), - [sym_list_marker_upper_roman_paren] = ACTIONS(53), - [sym_list_marker_decimal_parens] = ACTIONS(55), - [sym_list_marker_lower_alpha_parens] = ACTIONS(57), - [sym_list_marker_upper_alpha_parens] = ACTIONS(59), - [sym_list_marker_lower_roman_parens] = ACTIONS(61), - [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(83), - [sym__block_quote_continuation] = ACTIONS(220), - [sym__thematic_break_dash] = ACTIONS(85), - [sym__thematic_break_star] = ACTIONS(85), + [sym_link_reference_definition] = STATE(206), + [sym_block_attribute] = STATE(206), + [sym__paragraph] = STATE(206), + [sym__paragraph_content] = STATE(800), + [sym__paragraph_inline_content] = STATE(799), + [sym__inline] = STATE(629), + [sym__symbol_fallback] = STATE(285), + [aux_sym__list_dash_repeat1] = STATE(351), + [aux_sym__list_plus_repeat1] = STATE(350), + [aux_sym__list_star_repeat1] = STATE(353), + [aux_sym__list_task_repeat1] = STATE(339), + [aux_sym__list_definition_repeat1] = STATE(512), + [aux_sym__list_decimal_period_repeat1] = STATE(513), + [aux_sym__list_decimal_paren_repeat1] = STATE(514), + [aux_sym__list_decimal_parens_repeat1] = STATE(515), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(516), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(518), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(519), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(520), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(521), + [aux_sym__list_lower_roman_period_repeat1] = STATE(579), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(523), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(524), + [aux_sym__list_upper_roman_period_repeat1] = STATE(525), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(526), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(527), + [aux_sym_table_repeat1] = STATE(66), + [aux_sym_div_repeat1] = STATE(14), + [aux_sym__block_quote_prefix_repeat1] = STATE(235), + [aux_sym__inline_repeat1] = STATE(285), + [anon_sym_LBRACK] = ACTIONS(246), + [anon_sym_LBRACK_CARET] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(252), + [anon_sym_DOT] = ACTIONS(255), + [aux_sym_identifier_token1] = ACTIONS(255), + [aux_sym__inline_token1] = ACTIONS(255), + [anon_sym_LBRACE_DASH] = ACTIONS(255), + [anon_sym_POUND] = ACTIONS(255), + [anon_sym_PERCENT] = ACTIONS(255), + [sym__block_close] = ACTIONS(258), + [sym__newline] = ACTIONS(260), + [sym__heading_begin] = ACTIONS(263), + [sym__div_begin] = ACTIONS(266), + [sym__code_block_begin] = ACTIONS(269), + [sym_list_marker_dash] = ACTIONS(272), + [sym_list_marker_star] = ACTIONS(275), + [sym_list_marker_plus] = ACTIONS(278), + [sym__list_marker_task_begin] = ACTIONS(281), + [sym_list_marker_definition] = ACTIONS(284), + [sym_list_marker_decimal_period] = ACTIONS(287), + [sym_list_marker_lower_alpha_period] = ACTIONS(290), + [sym_list_marker_upper_alpha_period] = ACTIONS(293), + [sym_list_marker_lower_roman_period] = ACTIONS(296), + [sym_list_marker_upper_roman_period] = ACTIONS(299), + [sym_list_marker_decimal_paren] = ACTIONS(302), + [sym_list_marker_lower_alpha_paren] = ACTIONS(305), + [sym_list_marker_upper_alpha_paren] = ACTIONS(308), + [sym_list_marker_lower_roman_paren] = ACTIONS(311), + [sym_list_marker_upper_roman_paren] = ACTIONS(314), + [sym_list_marker_decimal_parens] = ACTIONS(317), + [sym_list_marker_lower_alpha_parens] = ACTIONS(320), + [sym_list_marker_upper_alpha_parens] = ACTIONS(323), + [sym_list_marker_lower_roman_parens] = ACTIONS(326), + [sym_list_marker_upper_roman_parens] = ACTIONS(329), + [sym__block_quote_begin] = ACTIONS(332), + [sym__block_quote_continuation] = ACTIONS(335), + [sym__thematic_break_dash] = ACTIONS(338), + [sym__thematic_break_star] = ACTIONS(338), + [sym__table_header_begin] = ACTIONS(341), + [sym__table_separator_begin] = ACTIONS(344), + [sym__table_row_begin] = ACTIONS(347), }, [15] = { - [sym__block_with_heading] = STATE(208), - [sym__block_element] = STATE(208), - [sym_heading] = STATE(208), - [sym_list] = STATE(208), - [sym__list_dash] = STATE(144), - [sym__list_item_dash] = STATE(636), - [sym__list_plus] = STATE(144), - [sym__list_item_plus] = STATE(637), - [sym__list_star] = STATE(144), - [sym__list_item_star] = STATE(671), - [sym__list_task] = STATE(144), - [sym__list_item_task] = STATE(691), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(144), - [sym__list_item_definition] = STATE(896), - [sym__list_decimal_period] = STATE(144), - [sym__list_item_decimal_period] = STATE(841), - [sym__list_decimal_paren] = STATE(144), - [sym__list_item_decimal_paren] = STATE(796), - [sym__list_decimal_parens] = STATE(144), - [sym__list_item_decimal_parens] = STATE(716), - [sym__list_lower_alpha_period] = STATE(144), - [sym__list_item_lower_alpha_period] = STATE(722), - [sym__list_lower_alpha_paren] = STATE(144), - [sym__list_item_lower_alpha_paren] = STATE(801), - [sym__list_lower_alpha_parens] = STATE(144), - [sym__list_item_lower_alpha_parens] = STATE(813), - [sym__list_upper_alpha_period] = STATE(144), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(144), - [sym__list_item_upper_alpha_paren] = STATE(706), - [sym__list_upper_alpha_parens] = STATE(144), - [sym__list_item_upper_alpha_parens] = STATE(707), - [sym__list_lower_roman_period] = STATE(144), - [sym__list_item_lower_roman_period] = STATE(725), - [sym__list_lower_roman_paren] = STATE(144), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(144), - [sym__list_item_lower_roman_parens] = STATE(736), - [sym__list_upper_roman_period] = STATE(144), - [sym__list_item_upper_roman_period] = STATE(742), - [sym__list_upper_roman_paren] = STATE(144), - [sym__list_item_upper_roman_paren] = STATE(743), - [sym__list_upper_roman_parens] = STATE(144), - [sym__list_item_upper_roman_parens] = STATE(762), - [sym_table] = STATE(208), - [sym__table_content] = STATE(67), - [sym_table_separator] = STATE(67), - [sym_table_row] = STATE(70), - [sym_footnote] = STATE(208), - [sym_footnote_marker_begin] = STATE(1180), - [sym_div] = STATE(208), - [sym__div_marker_begin] = STATE(1074), - [sym_code_block] = STATE(208), - [sym_raw_block] = STATE(208), - [sym_thematic_break] = STATE(208), - [sym_block_quote] = STATE(208), - [sym__block_quote_prefix] = STATE(233), - [sym_link_reference_definition] = STATE(208), - [sym_block_attribute] = STATE(208), - [sym__paragraph] = STATE(208), - [sym__paragraph_content] = STATE(773), - [sym__paragraph_inline_content] = STATE(775), - [sym__inline] = STATE(616), - [sym__symbol_fallback] = STATE(297), - [aux_sym__list_dash_repeat1] = STATE(357), - [aux_sym__list_plus_repeat1] = STATE(358), - [aux_sym__list_star_repeat1] = STATE(359), - [aux_sym__list_task_repeat1] = STATE(344), - [aux_sym__list_definition_repeat1] = STATE(515), - [aux_sym__list_decimal_period_repeat1] = STATE(516), - [aux_sym__list_decimal_paren_repeat1] = STATE(517), - [aux_sym__list_decimal_parens_repeat1] = STATE(518), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(519), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(520), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(521), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(522), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(523), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(524), - [aux_sym__list_lower_roman_period_repeat1] = STATE(525), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(526), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(527), - [aux_sym__list_upper_roman_period_repeat1] = STATE(528), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(529), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(530), - [aux_sym_table_repeat1] = STATE(67), - [aux_sym_div_repeat1] = STATE(15), - [aux_sym__block_quote_prefix_repeat1] = STATE(253), - [aux_sym__inline_repeat1] = STATE(297), - [anon_sym_LBRACK] = ACTIONS(228), - [anon_sym_PIPE] = ACTIONS(231), - [anon_sym_LBRACK_CARET] = ACTIONS(234), - [anon_sym_LBRACE] = ACTIONS(237), - [anon_sym_DOT] = ACTIONS(240), - [aux_sym_identifier_token1] = ACTIONS(240), - [aux_sym__inline_token1] = ACTIONS(240), - [anon_sym_LBRACE_DASH] = ACTIONS(240), - [anon_sym_POUND] = ACTIONS(240), - [anon_sym_PERCENT] = ACTIONS(240), - [sym__block_close] = ACTIONS(243), - [sym__newline] = ACTIONS(245), - [sym__heading_begin] = ACTIONS(248), - [sym__div_begin] = ACTIONS(251), - [sym__code_block_begin] = ACTIONS(254), - [sym_list_marker_dash] = ACTIONS(257), - [sym_list_marker_star] = ACTIONS(260), - [sym_list_marker_plus] = ACTIONS(263), - [sym__list_marker_task_begin] = ACTIONS(266), - [sym_list_marker_definition] = ACTIONS(269), - [sym_list_marker_decimal_period] = ACTIONS(272), - [sym_list_marker_lower_alpha_period] = ACTIONS(275), - [sym_list_marker_upper_alpha_period] = ACTIONS(278), - [sym_list_marker_lower_roman_period] = ACTIONS(281), - [sym_list_marker_upper_roman_period] = ACTIONS(284), - [sym_list_marker_decimal_paren] = ACTIONS(287), - [sym_list_marker_lower_alpha_paren] = ACTIONS(290), - [sym_list_marker_upper_alpha_paren] = ACTIONS(293), - [sym_list_marker_lower_roman_paren] = ACTIONS(296), - [sym_list_marker_upper_roman_paren] = ACTIONS(299), - [sym_list_marker_decimal_parens] = ACTIONS(302), - [sym_list_marker_lower_alpha_parens] = ACTIONS(305), - [sym_list_marker_upper_alpha_parens] = ACTIONS(308), - [sym_list_marker_lower_roman_parens] = ACTIONS(311), - [sym_list_marker_upper_roman_parens] = ACTIONS(314), - [sym__block_quote_begin] = ACTIONS(317), - [sym__block_quote_continuation] = ACTIONS(320), - [sym__thematic_break_dash] = ACTIONS(323), - [sym__thematic_break_star] = ACTIONS(323), + [sym__block_with_heading] = STATE(206), + [sym__block_element] = STATE(206), + [sym_heading] = STATE(206), + [sym_list] = STATE(206), + [sym__list_dash] = STATE(143), + [sym__list_item_dash] = STATE(687), + [sym__list_plus] = STATE(143), + [sym__list_item_plus] = STATE(691), + [sym__list_star] = STATE(143), + [sym__list_item_star] = STATE(673), + [sym__list_task] = STATE(143), + [sym__list_item_task] = STATE(680), + [sym_list_marker_task] = STATE(48), + [sym__list_definition] = STATE(143), + [sym__list_item_definition] = STATE(804), + [sym__list_decimal_period] = STATE(143), + [sym__list_item_decimal_period] = STATE(837), + [sym__list_decimal_paren] = STATE(143), + [sym__list_item_decimal_paren] = STATE(703), + [sym__list_decimal_parens] = STATE(143), + [sym__list_item_decimal_parens] = STATE(715), + [sym__list_lower_alpha_period] = STATE(143), + [sym__list_item_lower_alpha_period] = STATE(739), + [sym__list_lower_alpha_paren] = STATE(143), + [sym__list_item_lower_alpha_paren] = STATE(754), + [sym__list_lower_alpha_parens] = STATE(143), + [sym__list_item_lower_alpha_parens] = STATE(755), + [sym__list_upper_alpha_period] = STATE(143), + [sym__list_item_upper_alpha_period] = STATE(758), + [sym__list_upper_alpha_paren] = STATE(143), + [sym__list_item_upper_alpha_paren] = STATE(759), + [sym__list_upper_alpha_parens] = STATE(143), + [sym__list_item_upper_alpha_parens] = STATE(766), + [sym__list_lower_roman_period] = STATE(143), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(143), + [sym__list_item_lower_roman_paren] = STATE(770), + [sym__list_lower_roman_parens] = STATE(143), + [sym__list_item_lower_roman_parens] = STATE(773), + [sym__list_upper_roman_period] = STATE(143), + [sym__list_item_upper_roman_period] = STATE(775), + [sym__list_upper_roman_paren] = STATE(143), + [sym__list_item_upper_roman_paren] = STATE(791), + [sym__list_upper_roman_parens] = STATE(143), + [sym__list_item_upper_roman_parens] = STATE(793), + [sym_table] = STATE(206), + [sym__table_row] = STATE(66), + [sym_table_header] = STATE(66), + [sym_table_separator] = STATE(66), + [sym_table_row] = STATE(66), + [sym_footnote] = STATE(206), + [sym_footnote_marker_begin] = STATE(1145), + [sym_div] = STATE(206), + [sym__div_marker_begin] = STATE(1061), + [sym_code_block] = STATE(206), + [sym_raw_block] = STATE(206), + [sym_thematic_break] = STATE(206), + [sym_block_quote] = STATE(206), + [sym__block_quote_prefix] = STATE(212), + [sym_link_reference_definition] = STATE(206), + [sym_block_attribute] = STATE(206), + [sym__paragraph] = STATE(206), + [sym__paragraph_content] = STATE(800), + [sym__paragraph_inline_content] = STATE(799), + [sym__inline] = STATE(629), + [sym__symbol_fallback] = STATE(285), + [aux_sym__list_dash_repeat1] = STATE(351), + [aux_sym__list_plus_repeat1] = STATE(350), + [aux_sym__list_star_repeat1] = STATE(353), + [aux_sym__list_task_repeat1] = STATE(339), + [aux_sym__list_definition_repeat1] = STATE(512), + [aux_sym__list_decimal_period_repeat1] = STATE(513), + [aux_sym__list_decimal_paren_repeat1] = STATE(514), + [aux_sym__list_decimal_parens_repeat1] = STATE(515), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(516), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(518), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(519), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(520), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(521), + [aux_sym__list_lower_roman_period_repeat1] = STATE(579), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(523), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(524), + [aux_sym__list_upper_roman_period_repeat1] = STATE(525), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(526), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(527), + [aux_sym_table_repeat1] = STATE(66), + [aux_sym_div_repeat1] = STATE(16), + [aux_sym__block_quote_prefix_repeat1] = STATE(232), + [aux_sym__inline_repeat1] = STATE(285), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_LBRACK_CARET] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_DOT] = ACTIONS(11), + [aux_sym_identifier_token1] = ACTIONS(11), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_PERCENT] = ACTIONS(11), + [sym__block_close] = ACTIONS(350), + [sym__newline] = ACTIONS(238), + [sym__heading_begin] = ACTIONS(17), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(85), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(87), + [sym__block_quote_continuation] = ACTIONS(240), + [sym__thematic_break_dash] = ACTIONS(89), + [sym__thematic_break_star] = ACTIONS(89), + [sym__table_header_begin] = ACTIONS(91), + [sym__table_separator_begin] = ACTIONS(93), + [sym__table_row_begin] = ACTIONS(95), }, [16] = { - [sym__block_with_heading] = STATE(208), - [sym__block_element] = STATE(208), - [sym_heading] = STATE(208), - [sym_list] = STATE(208), - [sym__list_dash] = STATE(144), - [sym__list_item_dash] = STATE(636), - [sym__list_plus] = STATE(144), - [sym__list_item_plus] = STATE(637), - [sym__list_star] = STATE(144), - [sym__list_item_star] = STATE(671), - [sym__list_task] = STATE(144), - [sym__list_item_task] = STATE(691), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(144), - [sym__list_item_definition] = STATE(896), - [sym__list_decimal_period] = STATE(144), - [sym__list_item_decimal_period] = STATE(841), - [sym__list_decimal_paren] = STATE(144), - [sym__list_item_decimal_paren] = STATE(796), - [sym__list_decimal_parens] = STATE(144), - [sym__list_item_decimal_parens] = STATE(716), - [sym__list_lower_alpha_period] = STATE(144), - [sym__list_item_lower_alpha_period] = STATE(722), - [sym__list_lower_alpha_paren] = STATE(144), - [sym__list_item_lower_alpha_paren] = STATE(801), - [sym__list_lower_alpha_parens] = STATE(144), - [sym__list_item_lower_alpha_parens] = STATE(813), - [sym__list_upper_alpha_period] = STATE(144), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(144), - [sym__list_item_upper_alpha_paren] = STATE(706), - [sym__list_upper_alpha_parens] = STATE(144), - [sym__list_item_upper_alpha_parens] = STATE(707), - [sym__list_lower_roman_period] = STATE(144), - [sym__list_item_lower_roman_period] = STATE(725), - [sym__list_lower_roman_paren] = STATE(144), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(144), - [sym__list_item_lower_roman_parens] = STATE(736), - [sym__list_upper_roman_period] = STATE(144), - [sym__list_item_upper_roman_period] = STATE(742), - [sym__list_upper_roman_paren] = STATE(144), - [sym__list_item_upper_roman_paren] = STATE(743), - [sym__list_upper_roman_parens] = STATE(144), - [sym__list_item_upper_roman_parens] = STATE(762), - [sym_table] = STATE(208), - [sym__table_content] = STATE(67), - [sym_table_separator] = STATE(67), - [sym_table_row] = STATE(70), - [sym_footnote] = STATE(208), - [sym_footnote_marker_begin] = STATE(1180), - [sym_div] = STATE(208), - [sym__div_marker_begin] = STATE(1074), - [sym_code_block] = STATE(208), - [sym_raw_block] = STATE(208), - [sym_thematic_break] = STATE(208), - [sym_block_quote] = STATE(208), - [sym__block_quote_prefix] = STATE(219), - [sym_link_reference_definition] = STATE(208), - [sym_block_attribute] = STATE(208), - [sym__paragraph] = STATE(208), - [sym__paragraph_content] = STATE(773), - [sym__paragraph_inline_content] = STATE(775), - [sym__inline] = STATE(616), - [sym__symbol_fallback] = STATE(297), - [aux_sym__list_dash_repeat1] = STATE(357), - [aux_sym__list_plus_repeat1] = STATE(358), - [aux_sym__list_star_repeat1] = STATE(359), - [aux_sym__list_task_repeat1] = STATE(344), - [aux_sym__list_definition_repeat1] = STATE(515), - [aux_sym__list_decimal_period_repeat1] = STATE(516), - [aux_sym__list_decimal_paren_repeat1] = STATE(517), - [aux_sym__list_decimal_parens_repeat1] = STATE(518), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(519), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(520), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(521), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(522), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(523), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(524), - [aux_sym__list_lower_roman_period_repeat1] = STATE(525), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(526), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(527), - [aux_sym__list_upper_roman_period_repeat1] = STATE(528), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(529), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(530), - [aux_sym_table_repeat1] = STATE(67), - [aux_sym_div_repeat1] = STATE(17), - [aux_sym__block_quote_prefix_repeat1] = STATE(240), - [aux_sym__inline_repeat1] = STATE(297), - [anon_sym_LBRACK] = ACTIONS(71), - [anon_sym_PIPE] = ACTIONS(73), - [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(75), - [anon_sym_DOT] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(13), - [aux_sym__inline_token1] = ACTIONS(13), - [anon_sym_LBRACE_DASH] = ACTIONS(13), - [anon_sym_POUND] = ACTIONS(13), - [anon_sym_PERCENT] = ACTIONS(13), - [sym__block_close] = ACTIONS(326), - [sym__newline] = ACTIONS(218), - [sym__heading_begin] = ACTIONS(19), - [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(81), - [sym_list_marker_dash] = ACTIONS(25), - [sym_list_marker_star] = ACTIONS(27), - [sym_list_marker_plus] = ACTIONS(29), - [sym__list_marker_task_begin] = ACTIONS(31), - [sym_list_marker_definition] = ACTIONS(33), - [sym_list_marker_decimal_period] = ACTIONS(35), - [sym_list_marker_lower_alpha_period] = ACTIONS(37), - [sym_list_marker_upper_alpha_period] = ACTIONS(39), - [sym_list_marker_lower_roman_period] = ACTIONS(41), - [sym_list_marker_upper_roman_period] = ACTIONS(43), - [sym_list_marker_decimal_paren] = ACTIONS(45), - [sym_list_marker_lower_alpha_paren] = ACTIONS(47), - [sym_list_marker_upper_alpha_paren] = ACTIONS(49), - [sym_list_marker_lower_roman_paren] = ACTIONS(51), - [sym_list_marker_upper_roman_paren] = ACTIONS(53), - [sym_list_marker_decimal_parens] = ACTIONS(55), - [sym_list_marker_lower_alpha_parens] = ACTIONS(57), - [sym_list_marker_upper_alpha_parens] = ACTIONS(59), - [sym_list_marker_lower_roman_parens] = ACTIONS(61), - [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(83), - [sym__block_quote_continuation] = ACTIONS(220), - [sym__thematic_break_dash] = ACTIONS(85), - [sym__thematic_break_star] = ACTIONS(85), + [sym__block_with_heading] = STATE(206), + [sym__block_element] = STATE(206), + [sym_heading] = STATE(206), + [sym_list] = STATE(206), + [sym__list_dash] = STATE(143), + [sym__list_item_dash] = STATE(687), + [sym__list_plus] = STATE(143), + [sym__list_item_plus] = STATE(691), + [sym__list_star] = STATE(143), + [sym__list_item_star] = STATE(673), + [sym__list_task] = STATE(143), + [sym__list_item_task] = STATE(680), + [sym_list_marker_task] = STATE(48), + [sym__list_definition] = STATE(143), + [sym__list_item_definition] = STATE(804), + [sym__list_decimal_period] = STATE(143), + [sym__list_item_decimal_period] = STATE(837), + [sym__list_decimal_paren] = STATE(143), + [sym__list_item_decimal_paren] = STATE(703), + [sym__list_decimal_parens] = STATE(143), + [sym__list_item_decimal_parens] = STATE(715), + [sym__list_lower_alpha_period] = STATE(143), + [sym__list_item_lower_alpha_period] = STATE(739), + [sym__list_lower_alpha_paren] = STATE(143), + [sym__list_item_lower_alpha_paren] = STATE(754), + [sym__list_lower_alpha_parens] = STATE(143), + [sym__list_item_lower_alpha_parens] = STATE(755), + [sym__list_upper_alpha_period] = STATE(143), + [sym__list_item_upper_alpha_period] = STATE(758), + [sym__list_upper_alpha_paren] = STATE(143), + [sym__list_item_upper_alpha_paren] = STATE(759), + [sym__list_upper_alpha_parens] = STATE(143), + [sym__list_item_upper_alpha_parens] = STATE(766), + [sym__list_lower_roman_period] = STATE(143), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(143), + [sym__list_item_lower_roman_paren] = STATE(770), + [sym__list_lower_roman_parens] = STATE(143), + [sym__list_item_lower_roman_parens] = STATE(773), + [sym__list_upper_roman_period] = STATE(143), + [sym__list_item_upper_roman_period] = STATE(775), + [sym__list_upper_roman_paren] = STATE(143), + [sym__list_item_upper_roman_paren] = STATE(791), + [sym__list_upper_roman_parens] = STATE(143), + [sym__list_item_upper_roman_parens] = STATE(793), + [sym_table] = STATE(206), + [sym__table_row] = STATE(66), + [sym_table_header] = STATE(66), + [sym_table_separator] = STATE(66), + [sym_table_row] = STATE(66), + [sym_footnote] = STATE(206), + [sym_footnote_marker_begin] = STATE(1145), + [sym_div] = STATE(206), + [sym__div_marker_begin] = STATE(1061), + [sym_code_block] = STATE(206), + [sym_raw_block] = STATE(206), + [sym_thematic_break] = STATE(206), + [sym_block_quote] = STATE(206), + [sym__block_quote_prefix] = STATE(213), + [sym_link_reference_definition] = STATE(206), + [sym_block_attribute] = STATE(206), + [sym__paragraph] = STATE(206), + [sym__paragraph_content] = STATE(800), + [sym__paragraph_inline_content] = STATE(799), + [sym__inline] = STATE(629), + [sym__symbol_fallback] = STATE(285), + [aux_sym__list_dash_repeat1] = STATE(351), + [aux_sym__list_plus_repeat1] = STATE(350), + [aux_sym__list_star_repeat1] = STATE(353), + [aux_sym__list_task_repeat1] = STATE(339), + [aux_sym__list_definition_repeat1] = STATE(512), + [aux_sym__list_decimal_period_repeat1] = STATE(513), + [aux_sym__list_decimal_paren_repeat1] = STATE(514), + [aux_sym__list_decimal_parens_repeat1] = STATE(515), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(516), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(518), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(519), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(520), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(521), + [aux_sym__list_lower_roman_period_repeat1] = STATE(579), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(523), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(524), + [aux_sym__list_upper_roman_period_repeat1] = STATE(525), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(526), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(527), + [aux_sym_table_repeat1] = STATE(66), + [aux_sym_div_repeat1] = STATE(14), + [aux_sym__block_quote_prefix_repeat1] = STATE(232), + [aux_sym__inline_repeat1] = STATE(285), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_LBRACK_CARET] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_DOT] = ACTIONS(11), + [aux_sym_identifier_token1] = ACTIONS(11), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_PERCENT] = ACTIONS(11), + [sym__block_close] = ACTIONS(352), + [sym__newline] = ACTIONS(238), + [sym__heading_begin] = ACTIONS(17), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(85), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(87), + [sym__block_quote_continuation] = ACTIONS(240), + [sym__thematic_break_dash] = ACTIONS(89), + [sym__thematic_break_star] = ACTIONS(89), + [sym__table_header_begin] = ACTIONS(91), + [sym__table_separator_begin] = ACTIONS(93), + [sym__table_row_begin] = ACTIONS(95), }, [17] = { - [sym__block_with_heading] = STATE(208), - [sym__block_element] = STATE(208), - [sym_heading] = STATE(208), - [sym_list] = STATE(208), - [sym__list_dash] = STATE(144), - [sym__list_item_dash] = STATE(636), - [sym__list_plus] = STATE(144), - [sym__list_item_plus] = STATE(637), - [sym__list_star] = STATE(144), - [sym__list_item_star] = STATE(671), - [sym__list_task] = STATE(144), - [sym__list_item_task] = STATE(691), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(144), - [sym__list_item_definition] = STATE(896), - [sym__list_decimal_period] = STATE(144), - [sym__list_item_decimal_period] = STATE(841), - [sym__list_decimal_paren] = STATE(144), - [sym__list_item_decimal_paren] = STATE(796), - [sym__list_decimal_parens] = STATE(144), - [sym__list_item_decimal_parens] = STATE(716), - [sym__list_lower_alpha_period] = STATE(144), - [sym__list_item_lower_alpha_period] = STATE(722), - [sym__list_lower_alpha_paren] = STATE(144), - [sym__list_item_lower_alpha_paren] = STATE(801), - [sym__list_lower_alpha_parens] = STATE(144), - [sym__list_item_lower_alpha_parens] = STATE(813), - [sym__list_upper_alpha_period] = STATE(144), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(144), - [sym__list_item_upper_alpha_paren] = STATE(706), - [sym__list_upper_alpha_parens] = STATE(144), - [sym__list_item_upper_alpha_parens] = STATE(707), - [sym__list_lower_roman_period] = STATE(144), - [sym__list_item_lower_roman_period] = STATE(725), - [sym__list_lower_roman_paren] = STATE(144), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(144), - [sym__list_item_lower_roman_parens] = STATE(736), - [sym__list_upper_roman_period] = STATE(144), - [sym__list_item_upper_roman_period] = STATE(742), - [sym__list_upper_roman_paren] = STATE(144), - [sym__list_item_upper_roman_paren] = STATE(743), - [sym__list_upper_roman_parens] = STATE(144), - [sym__list_item_upper_roman_parens] = STATE(762), - [sym_table] = STATE(208), - [sym__table_content] = STATE(67), - [sym_table_separator] = STATE(67), - [sym_table_row] = STATE(70), - [sym_footnote] = STATE(208), - [sym_footnote_marker_begin] = STATE(1180), - [sym_div] = STATE(208), - [sym__div_marker_begin] = STATE(1074), - [sym_code_block] = STATE(208), - [sym_raw_block] = STATE(208), - [sym_thematic_break] = STATE(208), - [sym_block_quote] = STATE(208), - [sym__block_quote_prefix] = STATE(218), - [sym_link_reference_definition] = STATE(208), - [sym_block_attribute] = STATE(208), - [sym__paragraph] = STATE(208), - [sym__paragraph_content] = STATE(773), - [sym__paragraph_inline_content] = STATE(775), - [sym__inline] = STATE(616), - [sym__symbol_fallback] = STATE(297), - [aux_sym__list_dash_repeat1] = STATE(357), - [aux_sym__list_plus_repeat1] = STATE(358), - [aux_sym__list_star_repeat1] = STATE(359), - [aux_sym__list_task_repeat1] = STATE(344), - [aux_sym__list_definition_repeat1] = STATE(515), - [aux_sym__list_decimal_period_repeat1] = STATE(516), - [aux_sym__list_decimal_paren_repeat1] = STATE(517), - [aux_sym__list_decimal_parens_repeat1] = STATE(518), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(519), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(520), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(521), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(522), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(523), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(524), - [aux_sym__list_lower_roman_period_repeat1] = STATE(525), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(526), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(527), - [aux_sym__list_upper_roman_period_repeat1] = STATE(528), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(529), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(530), - [aux_sym_table_repeat1] = STATE(67), - [aux_sym_div_repeat1] = STATE(15), - [aux_sym__block_quote_prefix_repeat1] = STATE(240), - [aux_sym__inline_repeat1] = STATE(297), - [anon_sym_LBRACK] = ACTIONS(71), - [anon_sym_PIPE] = ACTIONS(73), - [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(75), - [anon_sym_DOT] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(13), - [aux_sym__inline_token1] = ACTIONS(13), - [anon_sym_LBRACE_DASH] = ACTIONS(13), - [anon_sym_POUND] = ACTIONS(13), - [anon_sym_PERCENT] = ACTIONS(13), - [sym__block_close] = ACTIONS(328), - [sym__newline] = ACTIONS(218), - [sym__heading_begin] = ACTIONS(19), - [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(81), - [sym_list_marker_dash] = ACTIONS(25), - [sym_list_marker_star] = ACTIONS(27), - [sym_list_marker_plus] = ACTIONS(29), - [sym__list_marker_task_begin] = ACTIONS(31), - [sym_list_marker_definition] = ACTIONS(33), - [sym_list_marker_decimal_period] = ACTIONS(35), - [sym_list_marker_lower_alpha_period] = ACTIONS(37), - [sym_list_marker_upper_alpha_period] = ACTIONS(39), - [sym_list_marker_lower_roman_period] = ACTIONS(41), - [sym_list_marker_upper_roman_period] = ACTIONS(43), - [sym_list_marker_decimal_paren] = ACTIONS(45), - [sym_list_marker_lower_alpha_paren] = ACTIONS(47), - [sym_list_marker_upper_alpha_paren] = ACTIONS(49), - [sym_list_marker_lower_roman_paren] = ACTIONS(51), - [sym_list_marker_upper_roman_paren] = ACTIONS(53), - [sym_list_marker_decimal_parens] = ACTIONS(55), - [sym_list_marker_lower_alpha_parens] = ACTIONS(57), - [sym_list_marker_upper_alpha_parens] = ACTIONS(59), - [sym_list_marker_lower_roman_parens] = ACTIONS(61), - [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(83), - [sym__block_quote_continuation] = ACTIONS(220), - [sym__thematic_break_dash] = ACTIONS(85), - [sym__thematic_break_star] = ACTIONS(85), + [sym__block_with_heading] = STATE(206), + [sym__block_element] = STATE(206), + [sym_heading] = STATE(206), + [sym_list] = STATE(206), + [sym__list_dash] = STATE(143), + [sym__list_item_dash] = STATE(687), + [sym__list_plus] = STATE(143), + [sym__list_item_plus] = STATE(691), + [sym__list_star] = STATE(143), + [sym__list_item_star] = STATE(673), + [sym__list_task] = STATE(143), + [sym__list_item_task] = STATE(680), + [sym_list_marker_task] = STATE(48), + [sym__list_definition] = STATE(143), + [sym__list_item_definition] = STATE(804), + [sym__list_decimal_period] = STATE(143), + [sym__list_item_decimal_period] = STATE(837), + [sym__list_decimal_paren] = STATE(143), + [sym__list_item_decimal_paren] = STATE(703), + [sym__list_decimal_parens] = STATE(143), + [sym__list_item_decimal_parens] = STATE(715), + [sym__list_lower_alpha_period] = STATE(143), + [sym__list_item_lower_alpha_period] = STATE(739), + [sym__list_lower_alpha_paren] = STATE(143), + [sym__list_item_lower_alpha_paren] = STATE(754), + [sym__list_lower_alpha_parens] = STATE(143), + [sym__list_item_lower_alpha_parens] = STATE(755), + [sym__list_upper_alpha_period] = STATE(143), + [sym__list_item_upper_alpha_period] = STATE(758), + [sym__list_upper_alpha_paren] = STATE(143), + [sym__list_item_upper_alpha_paren] = STATE(759), + [sym__list_upper_alpha_parens] = STATE(143), + [sym__list_item_upper_alpha_parens] = STATE(766), + [sym__list_lower_roman_period] = STATE(143), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(143), + [sym__list_item_lower_roman_paren] = STATE(770), + [sym__list_lower_roman_parens] = STATE(143), + [sym__list_item_lower_roman_parens] = STATE(773), + [sym__list_upper_roman_period] = STATE(143), + [sym__list_item_upper_roman_period] = STATE(775), + [sym__list_upper_roman_paren] = STATE(143), + [sym__list_item_upper_roman_paren] = STATE(791), + [sym__list_upper_roman_parens] = STATE(143), + [sym__list_item_upper_roman_parens] = STATE(793), + [sym_table] = STATE(206), + [sym__table_row] = STATE(66), + [sym_table_header] = STATE(66), + [sym_table_separator] = STATE(66), + [sym_table_row] = STATE(66), + [sym_footnote] = STATE(206), + [sym_footnote_marker_begin] = STATE(1145), + [sym_div] = STATE(206), + [sym__div_marker_begin] = STATE(1061), + [sym_code_block] = STATE(206), + [sym_raw_block] = STATE(206), + [sym_thematic_break] = STATE(206), + [sym_block_quote] = STATE(206), + [sym__block_quote_prefix] = STATE(211), + [sym_link_reference_definition] = STATE(206), + [sym_block_attribute] = STATE(206), + [sym__paragraph] = STATE(206), + [sym__paragraph_content] = STATE(800), + [sym__paragraph_inline_content] = STATE(799), + [sym__inline] = STATE(629), + [sym__symbol_fallback] = STATE(285), + [aux_sym__list_dash_repeat1] = STATE(351), + [aux_sym__list_plus_repeat1] = STATE(350), + [aux_sym__list_star_repeat1] = STATE(353), + [aux_sym__list_task_repeat1] = STATE(339), + [aux_sym__list_definition_repeat1] = STATE(512), + [aux_sym__list_decimal_period_repeat1] = STATE(513), + [aux_sym__list_decimal_paren_repeat1] = STATE(514), + [aux_sym__list_decimal_parens_repeat1] = STATE(515), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(516), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(518), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(519), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(520), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(521), + [aux_sym__list_lower_roman_period_repeat1] = STATE(579), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(523), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(524), + [aux_sym__list_upper_roman_period_repeat1] = STATE(525), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(526), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(527), + [aux_sym_table_repeat1] = STATE(66), + [aux_sym_div_repeat1] = STATE(18), + [aux_sym__block_quote_prefix_repeat1] = STATE(232), + [aux_sym__inline_repeat1] = STATE(285), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_LBRACK_CARET] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_DOT] = ACTIONS(11), + [aux_sym_identifier_token1] = ACTIONS(11), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_PERCENT] = ACTIONS(11), + [sym__block_close] = ACTIONS(354), + [sym__newline] = ACTIONS(238), + [sym__heading_begin] = ACTIONS(17), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(85), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(87), + [sym__block_quote_continuation] = ACTIONS(240), + [sym__thematic_break_dash] = ACTIONS(89), + [sym__thematic_break_star] = ACTIONS(89), + [sym__table_header_begin] = ACTIONS(91), + [sym__table_separator_begin] = ACTIONS(93), + [sym__table_row_begin] = ACTIONS(95), }, [18] = { - [sym__block_with_heading] = STATE(208), - [sym__block_element] = STATE(208), - [sym_heading] = STATE(208), - [sym_list] = STATE(208), - [sym__list_dash] = STATE(144), - [sym__list_item_dash] = STATE(636), - [sym__list_plus] = STATE(144), - [sym__list_item_plus] = STATE(637), - [sym__list_star] = STATE(144), - [sym__list_item_star] = STATE(671), - [sym__list_task] = STATE(144), - [sym__list_item_task] = STATE(691), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(144), - [sym__list_item_definition] = STATE(896), - [sym__list_decimal_period] = STATE(144), - [sym__list_item_decimal_period] = STATE(841), - [sym__list_decimal_paren] = STATE(144), - [sym__list_item_decimal_paren] = STATE(796), - [sym__list_decimal_parens] = STATE(144), - [sym__list_item_decimal_parens] = STATE(716), - [sym__list_lower_alpha_period] = STATE(144), - [sym__list_item_lower_alpha_period] = STATE(722), - [sym__list_lower_alpha_paren] = STATE(144), - [sym__list_item_lower_alpha_paren] = STATE(801), - [sym__list_lower_alpha_parens] = STATE(144), - [sym__list_item_lower_alpha_parens] = STATE(813), - [sym__list_upper_alpha_period] = STATE(144), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(144), - [sym__list_item_upper_alpha_paren] = STATE(706), - [sym__list_upper_alpha_parens] = STATE(144), - [sym__list_item_upper_alpha_parens] = STATE(707), - [sym__list_lower_roman_period] = STATE(144), - [sym__list_item_lower_roman_period] = STATE(725), - [sym__list_lower_roman_paren] = STATE(144), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(144), - [sym__list_item_lower_roman_parens] = STATE(736), - [sym__list_upper_roman_period] = STATE(144), - [sym__list_item_upper_roman_period] = STATE(742), - [sym__list_upper_roman_paren] = STATE(144), - [sym__list_item_upper_roman_paren] = STATE(743), - [sym__list_upper_roman_parens] = STATE(144), - [sym__list_item_upper_roman_parens] = STATE(762), - [sym_table] = STATE(208), - [sym__table_content] = STATE(67), - [sym_table_separator] = STATE(67), - [sym_table_row] = STATE(70), - [sym_footnote] = STATE(208), - [sym_footnote_marker_begin] = STATE(1180), - [sym_div] = STATE(208), - [sym__div_marker_begin] = STATE(1074), - [sym_code_block] = STATE(208), - [sym_raw_block] = STATE(208), - [sym_thematic_break] = STATE(208), - [sym_block_quote] = STATE(208), - [sym__block_quote_prefix] = STATE(220), - [sym_link_reference_definition] = STATE(208), - [sym_block_attribute] = STATE(208), - [sym__paragraph] = STATE(208), - [sym__paragraph_content] = STATE(773), - [sym__paragraph_inline_content] = STATE(775), - [sym__inline] = STATE(616), - [sym__symbol_fallback] = STATE(297), - [aux_sym__list_dash_repeat1] = STATE(357), - [aux_sym__list_plus_repeat1] = STATE(358), - [aux_sym__list_star_repeat1] = STATE(359), - [aux_sym__list_task_repeat1] = STATE(344), - [aux_sym__list_definition_repeat1] = STATE(515), - [aux_sym__list_decimal_period_repeat1] = STATE(516), - [aux_sym__list_decimal_paren_repeat1] = STATE(517), - [aux_sym__list_decimal_parens_repeat1] = STATE(518), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(519), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(520), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(521), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(522), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(523), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(524), - [aux_sym__list_lower_roman_period_repeat1] = STATE(525), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(526), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(527), - [aux_sym__list_upper_roman_period_repeat1] = STATE(528), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(529), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(530), - [aux_sym_table_repeat1] = STATE(67), - [aux_sym_div_repeat1] = STATE(11), - [aux_sym__block_quote_prefix_repeat1] = STATE(240), - [aux_sym__inline_repeat1] = STATE(297), - [anon_sym_LBRACK] = ACTIONS(71), - [anon_sym_PIPE] = ACTIONS(73), - [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(75), - [anon_sym_DOT] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(13), - [aux_sym__inline_token1] = ACTIONS(13), - [anon_sym_LBRACE_DASH] = ACTIONS(13), - [anon_sym_POUND] = ACTIONS(13), - [anon_sym_PERCENT] = ACTIONS(13), - [sym__block_close] = ACTIONS(330), - [sym__newline] = ACTIONS(218), - [sym__heading_begin] = ACTIONS(19), - [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(81), - [sym_list_marker_dash] = ACTIONS(25), - [sym_list_marker_star] = ACTIONS(27), - [sym_list_marker_plus] = ACTIONS(29), - [sym__list_marker_task_begin] = ACTIONS(31), - [sym_list_marker_definition] = ACTIONS(33), - [sym_list_marker_decimal_period] = ACTIONS(35), - [sym_list_marker_lower_alpha_period] = ACTIONS(37), - [sym_list_marker_upper_alpha_period] = ACTIONS(39), - [sym_list_marker_lower_roman_period] = ACTIONS(41), - [sym_list_marker_upper_roman_period] = ACTIONS(43), - [sym_list_marker_decimal_paren] = ACTIONS(45), - [sym_list_marker_lower_alpha_paren] = ACTIONS(47), - [sym_list_marker_upper_alpha_paren] = ACTIONS(49), - [sym_list_marker_lower_roman_paren] = ACTIONS(51), - [sym_list_marker_upper_roman_paren] = ACTIONS(53), - [sym_list_marker_decimal_parens] = ACTIONS(55), - [sym_list_marker_lower_alpha_parens] = ACTIONS(57), - [sym_list_marker_upper_alpha_parens] = ACTIONS(59), - [sym_list_marker_lower_roman_parens] = ACTIONS(61), - [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(83), - [sym__block_quote_continuation] = ACTIONS(220), - [sym__thematic_break_dash] = ACTIONS(85), - [sym__thematic_break_star] = ACTIONS(85), + [sym__block_with_heading] = STATE(206), + [sym__block_element] = STATE(206), + [sym_heading] = STATE(206), + [sym_list] = STATE(206), + [sym__list_dash] = STATE(143), + [sym__list_item_dash] = STATE(687), + [sym__list_plus] = STATE(143), + [sym__list_item_plus] = STATE(691), + [sym__list_star] = STATE(143), + [sym__list_item_star] = STATE(673), + [sym__list_task] = STATE(143), + [sym__list_item_task] = STATE(680), + [sym_list_marker_task] = STATE(48), + [sym__list_definition] = STATE(143), + [sym__list_item_definition] = STATE(804), + [sym__list_decimal_period] = STATE(143), + [sym__list_item_decimal_period] = STATE(837), + [sym__list_decimal_paren] = STATE(143), + [sym__list_item_decimal_paren] = STATE(703), + [sym__list_decimal_parens] = STATE(143), + [sym__list_item_decimal_parens] = STATE(715), + [sym__list_lower_alpha_period] = STATE(143), + [sym__list_item_lower_alpha_period] = STATE(739), + [sym__list_lower_alpha_paren] = STATE(143), + [sym__list_item_lower_alpha_paren] = STATE(754), + [sym__list_lower_alpha_parens] = STATE(143), + [sym__list_item_lower_alpha_parens] = STATE(755), + [sym__list_upper_alpha_period] = STATE(143), + [sym__list_item_upper_alpha_period] = STATE(758), + [sym__list_upper_alpha_paren] = STATE(143), + [sym__list_item_upper_alpha_paren] = STATE(759), + [sym__list_upper_alpha_parens] = STATE(143), + [sym__list_item_upper_alpha_parens] = STATE(766), + [sym__list_lower_roman_period] = STATE(143), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(143), + [sym__list_item_lower_roman_paren] = STATE(770), + [sym__list_lower_roman_parens] = STATE(143), + [sym__list_item_lower_roman_parens] = STATE(773), + [sym__list_upper_roman_period] = STATE(143), + [sym__list_item_upper_roman_period] = STATE(775), + [sym__list_upper_roman_paren] = STATE(143), + [sym__list_item_upper_roman_paren] = STATE(791), + [sym__list_upper_roman_parens] = STATE(143), + [sym__list_item_upper_roman_parens] = STATE(793), + [sym_table] = STATE(206), + [sym__table_row] = STATE(66), + [sym_table_header] = STATE(66), + [sym_table_separator] = STATE(66), + [sym_table_row] = STATE(66), + [sym_footnote] = STATE(206), + [sym_footnote_marker_begin] = STATE(1145), + [sym_div] = STATE(206), + [sym__div_marker_begin] = STATE(1061), + [sym_code_block] = STATE(206), + [sym_raw_block] = STATE(206), + [sym_thematic_break] = STATE(206), + [sym_block_quote] = STATE(206), + [sym__block_quote_prefix] = STATE(215), + [sym_link_reference_definition] = STATE(206), + [sym_block_attribute] = STATE(206), + [sym__paragraph] = STATE(206), + [sym__paragraph_content] = STATE(800), + [sym__paragraph_inline_content] = STATE(799), + [sym__inline] = STATE(629), + [sym__symbol_fallback] = STATE(285), + [aux_sym__list_dash_repeat1] = STATE(351), + [aux_sym__list_plus_repeat1] = STATE(350), + [aux_sym__list_star_repeat1] = STATE(353), + [aux_sym__list_task_repeat1] = STATE(339), + [aux_sym__list_definition_repeat1] = STATE(512), + [aux_sym__list_decimal_period_repeat1] = STATE(513), + [aux_sym__list_decimal_paren_repeat1] = STATE(514), + [aux_sym__list_decimal_parens_repeat1] = STATE(515), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(516), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(518), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(519), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(520), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(521), + [aux_sym__list_lower_roman_period_repeat1] = STATE(579), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(523), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(524), + [aux_sym__list_upper_roman_period_repeat1] = STATE(525), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(526), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(527), + [aux_sym_table_repeat1] = STATE(66), + [aux_sym_div_repeat1] = STATE(14), + [aux_sym__block_quote_prefix_repeat1] = STATE(232), + [aux_sym__inline_repeat1] = STATE(285), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_LBRACK_CARET] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_DOT] = ACTIONS(11), + [aux_sym_identifier_token1] = ACTIONS(11), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_PERCENT] = ACTIONS(11), + [sym__block_close] = ACTIONS(356), + [sym__newline] = ACTIONS(238), + [sym__heading_begin] = ACTIONS(17), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(85), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(87), + [sym__block_quote_continuation] = ACTIONS(240), + [sym__thematic_break_dash] = ACTIONS(89), + [sym__thematic_break_star] = ACTIONS(89), + [sym__table_header_begin] = ACTIONS(91), + [sym__table_separator_begin] = ACTIONS(93), + [sym__table_row_begin] = ACTIONS(95), }, [19] = { - [sym__block_with_heading] = STATE(208), - [sym__block_element] = STATE(208), - [sym_heading] = STATE(208), - [sym_list] = STATE(208), - [sym__list_dash] = STATE(144), - [sym__list_item_dash] = STATE(636), - [sym__list_plus] = STATE(144), - [sym__list_item_plus] = STATE(637), - [sym__list_star] = STATE(144), - [sym__list_item_star] = STATE(671), - [sym__list_task] = STATE(144), - [sym__list_item_task] = STATE(691), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(144), - [sym__list_item_definition] = STATE(896), - [sym__list_decimal_period] = STATE(144), - [sym__list_item_decimal_period] = STATE(841), - [sym__list_decimal_paren] = STATE(144), - [sym__list_item_decimal_paren] = STATE(796), - [sym__list_decimal_parens] = STATE(144), - [sym__list_item_decimal_parens] = STATE(716), - [sym__list_lower_alpha_period] = STATE(144), - [sym__list_item_lower_alpha_period] = STATE(722), - [sym__list_lower_alpha_paren] = STATE(144), - [sym__list_item_lower_alpha_paren] = STATE(801), - [sym__list_lower_alpha_parens] = STATE(144), - [sym__list_item_lower_alpha_parens] = STATE(813), - [sym__list_upper_alpha_period] = STATE(144), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(144), - [sym__list_item_upper_alpha_paren] = STATE(706), - [sym__list_upper_alpha_parens] = STATE(144), - [sym__list_item_upper_alpha_parens] = STATE(707), - [sym__list_lower_roman_period] = STATE(144), - [sym__list_item_lower_roman_period] = STATE(725), - [sym__list_lower_roman_paren] = STATE(144), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(144), - [sym__list_item_lower_roman_parens] = STATE(736), - [sym__list_upper_roman_period] = STATE(144), - [sym__list_item_upper_roman_period] = STATE(742), - [sym__list_upper_roman_paren] = STATE(144), - [sym__list_item_upper_roman_paren] = STATE(743), - [sym__list_upper_roman_parens] = STATE(144), - [sym__list_item_upper_roman_parens] = STATE(762), - [sym_table] = STATE(208), - [sym__table_content] = STATE(67), - [sym_table_separator] = STATE(67), - [sym_table_row] = STATE(70), - [sym_footnote] = STATE(208), - [sym_footnote_marker_begin] = STATE(1180), - [sym_div] = STATE(208), - [sym__div_marker_begin] = STATE(1074), - [sym_code_block] = STATE(208), - [sym_raw_block] = STATE(208), - [sym_thematic_break] = STATE(208), - [sym_block_quote] = STATE(208), - [sym__block_quote_prefix] = STATE(222), - [sym_link_reference_definition] = STATE(208), - [sym_block_attribute] = STATE(208), - [sym__paragraph] = STATE(208), - [sym__paragraph_content] = STATE(773), - [sym__paragraph_inline_content] = STATE(775), - [sym__inline] = STATE(616), - [sym__symbol_fallback] = STATE(297), - [aux_sym__list_dash_repeat1] = STATE(357), - [aux_sym__list_plus_repeat1] = STATE(358), - [aux_sym__list_star_repeat1] = STATE(359), - [aux_sym__list_task_repeat1] = STATE(344), - [aux_sym__list_definition_repeat1] = STATE(515), - [aux_sym__list_decimal_period_repeat1] = STATE(516), - [aux_sym__list_decimal_paren_repeat1] = STATE(517), - [aux_sym__list_decimal_parens_repeat1] = STATE(518), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(519), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(520), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(521), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(522), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(523), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(524), - [aux_sym__list_lower_roman_period_repeat1] = STATE(525), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(526), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(527), - [aux_sym__list_upper_roman_period_repeat1] = STATE(528), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(529), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(530), - [aux_sym_table_repeat1] = STATE(67), + [sym__block_with_heading] = STATE(206), + [sym__block_element] = STATE(206), + [sym_heading] = STATE(206), + [sym_list] = STATE(206), + [sym__list_dash] = STATE(143), + [sym__list_item_dash] = STATE(687), + [sym__list_plus] = STATE(143), + [sym__list_item_plus] = STATE(691), + [sym__list_star] = STATE(143), + [sym__list_item_star] = STATE(673), + [sym__list_task] = STATE(143), + [sym__list_item_task] = STATE(680), + [sym_list_marker_task] = STATE(48), + [sym__list_definition] = STATE(143), + [sym__list_item_definition] = STATE(804), + [sym__list_decimal_period] = STATE(143), + [sym__list_item_decimal_period] = STATE(837), + [sym__list_decimal_paren] = STATE(143), + [sym__list_item_decimal_paren] = STATE(703), + [sym__list_decimal_parens] = STATE(143), + [sym__list_item_decimal_parens] = STATE(715), + [sym__list_lower_alpha_period] = STATE(143), + [sym__list_item_lower_alpha_period] = STATE(739), + [sym__list_lower_alpha_paren] = STATE(143), + [sym__list_item_lower_alpha_paren] = STATE(754), + [sym__list_lower_alpha_parens] = STATE(143), + [sym__list_item_lower_alpha_parens] = STATE(755), + [sym__list_upper_alpha_period] = STATE(143), + [sym__list_item_upper_alpha_period] = STATE(758), + [sym__list_upper_alpha_paren] = STATE(143), + [sym__list_item_upper_alpha_paren] = STATE(759), + [sym__list_upper_alpha_parens] = STATE(143), + [sym__list_item_upper_alpha_parens] = STATE(766), + [sym__list_lower_roman_period] = STATE(143), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(143), + [sym__list_item_lower_roman_paren] = STATE(770), + [sym__list_lower_roman_parens] = STATE(143), + [sym__list_item_lower_roman_parens] = STATE(773), + [sym__list_upper_roman_period] = STATE(143), + [sym__list_item_upper_roman_period] = STATE(775), + [sym__list_upper_roman_paren] = STATE(143), + [sym__list_item_upper_roman_paren] = STATE(791), + [sym__list_upper_roman_parens] = STATE(143), + [sym__list_item_upper_roman_parens] = STATE(793), + [sym_table] = STATE(206), + [sym__table_row] = STATE(66), + [sym_table_header] = STATE(66), + [sym_table_separator] = STATE(66), + [sym_table_row] = STATE(66), + [sym_footnote] = STATE(206), + [sym_footnote_marker_begin] = STATE(1145), + [sym_div] = STATE(206), + [sym__div_marker_begin] = STATE(1061), + [sym_code_block] = STATE(206), + [sym_raw_block] = STATE(206), + [sym_thematic_break] = STATE(206), + [sym_block_quote] = STATE(206), + [sym__block_quote_prefix] = STATE(218), + [sym_link_reference_definition] = STATE(206), + [sym_block_attribute] = STATE(206), + [sym__paragraph] = STATE(206), + [sym__paragraph_content] = STATE(800), + [sym__paragraph_inline_content] = STATE(799), + [sym__inline] = STATE(629), + [sym__symbol_fallback] = STATE(285), + [aux_sym__list_dash_repeat1] = STATE(351), + [aux_sym__list_plus_repeat1] = STATE(350), + [aux_sym__list_star_repeat1] = STATE(353), + [aux_sym__list_task_repeat1] = STATE(339), + [aux_sym__list_definition_repeat1] = STATE(512), + [aux_sym__list_decimal_period_repeat1] = STATE(513), + [aux_sym__list_decimal_paren_repeat1] = STATE(514), + [aux_sym__list_decimal_parens_repeat1] = STATE(515), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(516), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(518), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(519), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(520), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(521), + [aux_sym__list_lower_roman_period_repeat1] = STATE(579), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(523), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(524), + [aux_sym__list_upper_roman_period_repeat1] = STATE(525), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(526), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(527), + [aux_sym_table_repeat1] = STATE(66), [aux_sym_div_repeat1] = STATE(20), - [aux_sym__block_quote_prefix_repeat1] = STATE(240), - [aux_sym__inline_repeat1] = STATE(297), - [anon_sym_LBRACK] = ACTIONS(71), - [anon_sym_PIPE] = ACTIONS(73), - [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(75), - [anon_sym_DOT] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(13), - [aux_sym__inline_token1] = ACTIONS(13), - [anon_sym_LBRACE_DASH] = ACTIONS(13), - [anon_sym_POUND] = ACTIONS(13), - [anon_sym_PERCENT] = ACTIONS(13), - [sym__block_close] = ACTIONS(332), - [sym__newline] = ACTIONS(218), - [sym__heading_begin] = ACTIONS(19), - [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(81), - [sym_list_marker_dash] = ACTIONS(25), - [sym_list_marker_star] = ACTIONS(27), - [sym_list_marker_plus] = ACTIONS(29), - [sym__list_marker_task_begin] = ACTIONS(31), - [sym_list_marker_definition] = ACTIONS(33), - [sym_list_marker_decimal_period] = ACTIONS(35), - [sym_list_marker_lower_alpha_period] = ACTIONS(37), - [sym_list_marker_upper_alpha_period] = ACTIONS(39), - [sym_list_marker_lower_roman_period] = ACTIONS(41), - [sym_list_marker_upper_roman_period] = ACTIONS(43), - [sym_list_marker_decimal_paren] = ACTIONS(45), - [sym_list_marker_lower_alpha_paren] = ACTIONS(47), - [sym_list_marker_upper_alpha_paren] = ACTIONS(49), - [sym_list_marker_lower_roman_paren] = ACTIONS(51), - [sym_list_marker_upper_roman_paren] = ACTIONS(53), - [sym_list_marker_decimal_parens] = ACTIONS(55), - [sym_list_marker_lower_alpha_parens] = ACTIONS(57), - [sym_list_marker_upper_alpha_parens] = ACTIONS(59), - [sym_list_marker_lower_roman_parens] = ACTIONS(61), - [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(83), - [sym__block_quote_continuation] = ACTIONS(220), - [sym__thematic_break_dash] = ACTIONS(85), - [sym__thematic_break_star] = ACTIONS(85), + [aux_sym__block_quote_prefix_repeat1] = STATE(232), + [aux_sym__inline_repeat1] = STATE(285), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_LBRACK_CARET] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_DOT] = ACTIONS(11), + [aux_sym_identifier_token1] = ACTIONS(11), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_PERCENT] = ACTIONS(11), + [sym__block_close] = ACTIONS(358), + [sym__newline] = ACTIONS(238), + [sym__heading_begin] = ACTIONS(17), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(85), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(87), + [sym__block_quote_continuation] = ACTIONS(240), + [sym__thematic_break_dash] = ACTIONS(89), + [sym__thematic_break_star] = ACTIONS(89), + [sym__table_header_begin] = ACTIONS(91), + [sym__table_separator_begin] = ACTIONS(93), + [sym__table_row_begin] = ACTIONS(95), }, [20] = { - [sym__block_with_heading] = STATE(208), - [sym__block_element] = STATE(208), - [sym_heading] = STATE(208), - [sym_list] = STATE(208), - [sym__list_dash] = STATE(144), - [sym__list_item_dash] = STATE(636), - [sym__list_plus] = STATE(144), - [sym__list_item_plus] = STATE(637), - [sym__list_star] = STATE(144), - [sym__list_item_star] = STATE(671), - [sym__list_task] = STATE(144), - [sym__list_item_task] = STATE(691), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(144), - [sym__list_item_definition] = STATE(896), - [sym__list_decimal_period] = STATE(144), - [sym__list_item_decimal_period] = STATE(841), - [sym__list_decimal_paren] = STATE(144), - [sym__list_item_decimal_paren] = STATE(796), - [sym__list_decimal_parens] = STATE(144), - [sym__list_item_decimal_parens] = STATE(716), - [sym__list_lower_alpha_period] = STATE(144), - [sym__list_item_lower_alpha_period] = STATE(722), - [sym__list_lower_alpha_paren] = STATE(144), - [sym__list_item_lower_alpha_paren] = STATE(801), - [sym__list_lower_alpha_parens] = STATE(144), - [sym__list_item_lower_alpha_parens] = STATE(813), - [sym__list_upper_alpha_period] = STATE(144), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(144), - [sym__list_item_upper_alpha_paren] = STATE(706), - [sym__list_upper_alpha_parens] = STATE(144), - [sym__list_item_upper_alpha_parens] = STATE(707), - [sym__list_lower_roman_period] = STATE(144), - [sym__list_item_lower_roman_period] = STATE(725), - [sym__list_lower_roman_paren] = STATE(144), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(144), - [sym__list_item_lower_roman_parens] = STATE(736), - [sym__list_upper_roman_period] = STATE(144), - [sym__list_item_upper_roman_period] = STATE(742), - [sym__list_upper_roman_paren] = STATE(144), - [sym__list_item_upper_roman_paren] = STATE(743), - [sym__list_upper_roman_parens] = STATE(144), - [sym__list_item_upper_roman_parens] = STATE(762), - [sym_table] = STATE(208), - [sym__table_content] = STATE(67), - [sym_table_separator] = STATE(67), - [sym_table_row] = STATE(70), - [sym_footnote] = STATE(208), - [sym_footnote_marker_begin] = STATE(1180), - [sym_div] = STATE(208), - [sym__div_marker_begin] = STATE(1074), - [sym_code_block] = STATE(208), - [sym_raw_block] = STATE(208), - [sym_thematic_break] = STATE(208), - [sym_block_quote] = STATE(208), - [sym__block_quote_prefix] = STATE(223), - [sym_link_reference_definition] = STATE(208), - [sym_block_attribute] = STATE(208), - [sym__paragraph] = STATE(208), - [sym__paragraph_content] = STATE(773), - [sym__paragraph_inline_content] = STATE(775), - [sym__inline] = STATE(616), - [sym__symbol_fallback] = STATE(297), - [aux_sym__list_dash_repeat1] = STATE(357), - [aux_sym__list_plus_repeat1] = STATE(358), - [aux_sym__list_star_repeat1] = STATE(359), - [aux_sym__list_task_repeat1] = STATE(344), - [aux_sym__list_definition_repeat1] = STATE(515), - [aux_sym__list_decimal_period_repeat1] = STATE(516), - [aux_sym__list_decimal_paren_repeat1] = STATE(517), - [aux_sym__list_decimal_parens_repeat1] = STATE(518), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(519), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(520), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(521), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(522), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(523), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(524), - [aux_sym__list_lower_roman_period_repeat1] = STATE(525), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(526), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(527), - [aux_sym__list_upper_roman_period_repeat1] = STATE(528), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(529), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(530), - [aux_sym_table_repeat1] = STATE(67), - [aux_sym_div_repeat1] = STATE(15), - [aux_sym__block_quote_prefix_repeat1] = STATE(240), - [aux_sym__inline_repeat1] = STATE(297), - [anon_sym_LBRACK] = ACTIONS(71), - [anon_sym_PIPE] = ACTIONS(73), - [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(75), - [anon_sym_DOT] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(13), - [aux_sym__inline_token1] = ACTIONS(13), - [anon_sym_LBRACE_DASH] = ACTIONS(13), - [anon_sym_POUND] = ACTIONS(13), - [anon_sym_PERCENT] = ACTIONS(13), - [sym__block_close] = ACTIONS(334), - [sym__newline] = ACTIONS(218), - [sym__heading_begin] = ACTIONS(19), - [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(81), - [sym_list_marker_dash] = ACTIONS(25), - [sym_list_marker_star] = ACTIONS(27), - [sym_list_marker_plus] = ACTIONS(29), - [sym__list_marker_task_begin] = ACTIONS(31), - [sym_list_marker_definition] = ACTIONS(33), - [sym_list_marker_decimal_period] = ACTIONS(35), - [sym_list_marker_lower_alpha_period] = ACTIONS(37), - [sym_list_marker_upper_alpha_period] = ACTIONS(39), - [sym_list_marker_lower_roman_period] = ACTIONS(41), - [sym_list_marker_upper_roman_period] = ACTIONS(43), - [sym_list_marker_decimal_paren] = ACTIONS(45), - [sym_list_marker_lower_alpha_paren] = ACTIONS(47), - [sym_list_marker_upper_alpha_paren] = ACTIONS(49), - [sym_list_marker_lower_roman_paren] = ACTIONS(51), - [sym_list_marker_upper_roman_paren] = ACTIONS(53), - [sym_list_marker_decimal_parens] = ACTIONS(55), - [sym_list_marker_lower_alpha_parens] = ACTIONS(57), - [sym_list_marker_upper_alpha_parens] = ACTIONS(59), - [sym_list_marker_lower_roman_parens] = ACTIONS(61), - [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(83), - [sym__block_quote_continuation] = ACTIONS(220), - [sym__thematic_break_dash] = ACTIONS(85), - [sym__thematic_break_star] = ACTIONS(85), + [sym__block_with_heading] = STATE(206), + [sym__block_element] = STATE(206), + [sym_heading] = STATE(206), + [sym_list] = STATE(206), + [sym__list_dash] = STATE(143), + [sym__list_item_dash] = STATE(687), + [sym__list_plus] = STATE(143), + [sym__list_item_plus] = STATE(691), + [sym__list_star] = STATE(143), + [sym__list_item_star] = STATE(673), + [sym__list_task] = STATE(143), + [sym__list_item_task] = STATE(680), + [sym_list_marker_task] = STATE(48), + [sym__list_definition] = STATE(143), + [sym__list_item_definition] = STATE(804), + [sym__list_decimal_period] = STATE(143), + [sym__list_item_decimal_period] = STATE(837), + [sym__list_decimal_paren] = STATE(143), + [sym__list_item_decimal_paren] = STATE(703), + [sym__list_decimal_parens] = STATE(143), + [sym__list_item_decimal_parens] = STATE(715), + [sym__list_lower_alpha_period] = STATE(143), + [sym__list_item_lower_alpha_period] = STATE(739), + [sym__list_lower_alpha_paren] = STATE(143), + [sym__list_item_lower_alpha_paren] = STATE(754), + [sym__list_lower_alpha_parens] = STATE(143), + [sym__list_item_lower_alpha_parens] = STATE(755), + [sym__list_upper_alpha_period] = STATE(143), + [sym__list_item_upper_alpha_period] = STATE(758), + [sym__list_upper_alpha_paren] = STATE(143), + [sym__list_item_upper_alpha_paren] = STATE(759), + [sym__list_upper_alpha_parens] = STATE(143), + [sym__list_item_upper_alpha_parens] = STATE(766), + [sym__list_lower_roman_period] = STATE(143), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(143), + [sym__list_item_lower_roman_paren] = STATE(770), + [sym__list_lower_roman_parens] = STATE(143), + [sym__list_item_lower_roman_parens] = STATE(773), + [sym__list_upper_roman_period] = STATE(143), + [sym__list_item_upper_roman_period] = STATE(775), + [sym__list_upper_roman_paren] = STATE(143), + [sym__list_item_upper_roman_paren] = STATE(791), + [sym__list_upper_roman_parens] = STATE(143), + [sym__list_item_upper_roman_parens] = STATE(793), + [sym_table] = STATE(206), + [sym__table_row] = STATE(66), + [sym_table_header] = STATE(66), + [sym_table_separator] = STATE(66), + [sym_table_row] = STATE(66), + [sym_footnote] = STATE(206), + [sym_footnote_marker_begin] = STATE(1145), + [sym_div] = STATE(206), + [sym__div_marker_begin] = STATE(1061), + [sym_code_block] = STATE(206), + [sym_raw_block] = STATE(206), + [sym_thematic_break] = STATE(206), + [sym_block_quote] = STATE(206), + [sym__block_quote_prefix] = STATE(219), + [sym_link_reference_definition] = STATE(206), + [sym_block_attribute] = STATE(206), + [sym__paragraph] = STATE(206), + [sym__paragraph_content] = STATE(800), + [sym__paragraph_inline_content] = STATE(799), + [sym__inline] = STATE(629), + [sym__symbol_fallback] = STATE(285), + [aux_sym__list_dash_repeat1] = STATE(351), + [aux_sym__list_plus_repeat1] = STATE(350), + [aux_sym__list_star_repeat1] = STATE(353), + [aux_sym__list_task_repeat1] = STATE(339), + [aux_sym__list_definition_repeat1] = STATE(512), + [aux_sym__list_decimal_period_repeat1] = STATE(513), + [aux_sym__list_decimal_paren_repeat1] = STATE(514), + [aux_sym__list_decimal_parens_repeat1] = STATE(515), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(516), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(518), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(519), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(520), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(521), + [aux_sym__list_lower_roman_period_repeat1] = STATE(579), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(523), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(524), + [aux_sym__list_upper_roman_period_repeat1] = STATE(525), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(526), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(527), + [aux_sym_table_repeat1] = STATE(66), + [aux_sym_div_repeat1] = STATE(14), + [aux_sym__block_quote_prefix_repeat1] = STATE(232), + [aux_sym__inline_repeat1] = STATE(285), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_LBRACK_CARET] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_DOT] = ACTIONS(11), + [aux_sym_identifier_token1] = ACTIONS(11), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_PERCENT] = ACTIONS(11), + [sym__block_close] = ACTIONS(360), + [sym__newline] = ACTIONS(238), + [sym__heading_begin] = ACTIONS(17), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(85), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(87), + [sym__block_quote_continuation] = ACTIONS(240), + [sym__thematic_break_dash] = ACTIONS(89), + [sym__thematic_break_star] = ACTIONS(89), + [sym__table_header_begin] = ACTIONS(91), + [sym__table_separator_begin] = ACTIONS(93), + [sym__table_row_begin] = ACTIONS(95), }, [21] = { - [sym__block_with_heading] = STATE(208), - [sym__block_element] = STATE(208), - [sym_heading] = STATE(208), - [sym_list] = STATE(208), - [sym__list_dash] = STATE(144), - [sym__list_item_dash] = STATE(636), - [sym__list_plus] = STATE(144), - [sym__list_item_plus] = STATE(637), - [sym__list_star] = STATE(144), - [sym__list_item_star] = STATE(671), - [sym__list_task] = STATE(144), - [sym__list_item_task] = STATE(691), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(144), - [sym__list_item_definition] = STATE(896), - [sym__list_decimal_period] = STATE(144), - [sym__list_item_decimal_period] = STATE(841), - [sym__list_decimal_paren] = STATE(144), - [sym__list_item_decimal_paren] = STATE(796), - [sym__list_decimal_parens] = STATE(144), - [sym__list_item_decimal_parens] = STATE(716), - [sym__list_lower_alpha_period] = STATE(144), - [sym__list_item_lower_alpha_period] = STATE(722), - [sym__list_lower_alpha_paren] = STATE(144), - [sym__list_item_lower_alpha_paren] = STATE(801), - [sym__list_lower_alpha_parens] = STATE(144), - [sym__list_item_lower_alpha_parens] = STATE(813), - [sym__list_upper_alpha_period] = STATE(144), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(144), - [sym__list_item_upper_alpha_paren] = STATE(706), - [sym__list_upper_alpha_parens] = STATE(144), - [sym__list_item_upper_alpha_parens] = STATE(707), - [sym__list_lower_roman_period] = STATE(144), - [sym__list_item_lower_roman_period] = STATE(725), - [sym__list_lower_roman_paren] = STATE(144), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(144), - [sym__list_item_lower_roman_parens] = STATE(736), - [sym__list_upper_roman_period] = STATE(144), - [sym__list_item_upper_roman_period] = STATE(742), - [sym__list_upper_roman_paren] = STATE(144), - [sym__list_item_upper_roman_paren] = STATE(743), - [sym__list_upper_roman_parens] = STATE(144), - [sym__list_item_upper_roman_parens] = STATE(762), - [sym_table] = STATE(208), - [sym__table_content] = STATE(67), - [sym_table_separator] = STATE(67), - [sym_table_row] = STATE(70), - [sym_footnote] = STATE(208), - [sym_footnote_marker_begin] = STATE(1180), - [sym_div] = STATE(208), - [sym__div_marker_begin] = STATE(1074), - [sym_code_block] = STATE(208), - [sym_raw_block] = STATE(208), - [sym_thematic_break] = STATE(208), - [sym_block_quote] = STATE(208), - [sym__block_quote_prefix] = STATE(225), - [sym_link_reference_definition] = STATE(208), - [sym_block_attribute] = STATE(208), - [sym__paragraph] = STATE(208), - [sym__paragraph_content] = STATE(773), - [sym__paragraph_inline_content] = STATE(775), - [sym__inline] = STATE(616), - [sym__symbol_fallback] = STATE(297), - [aux_sym__list_dash_repeat1] = STATE(357), - [aux_sym__list_plus_repeat1] = STATE(358), - [aux_sym__list_star_repeat1] = STATE(359), - [aux_sym__list_task_repeat1] = STATE(344), - [aux_sym__list_definition_repeat1] = STATE(515), - [aux_sym__list_decimal_period_repeat1] = STATE(516), - [aux_sym__list_decimal_paren_repeat1] = STATE(517), - [aux_sym__list_decimal_parens_repeat1] = STATE(518), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(519), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(520), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(521), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(522), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(523), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(524), - [aux_sym__list_lower_roman_period_repeat1] = STATE(525), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(526), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(527), - [aux_sym__list_upper_roman_period_repeat1] = STATE(528), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(529), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(530), - [aux_sym_table_repeat1] = STATE(67), - [aux_sym_div_repeat1] = STATE(12), - [aux_sym__block_quote_prefix_repeat1] = STATE(240), - [aux_sym__inline_repeat1] = STATE(297), - [anon_sym_LBRACK] = ACTIONS(71), - [anon_sym_PIPE] = ACTIONS(73), - [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(75), - [anon_sym_DOT] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(13), - [aux_sym__inline_token1] = ACTIONS(13), - [anon_sym_LBRACE_DASH] = ACTIONS(13), - [anon_sym_POUND] = ACTIONS(13), - [anon_sym_PERCENT] = ACTIONS(13), - [sym__block_close] = ACTIONS(336), - [sym__newline] = ACTIONS(218), - [sym__heading_begin] = ACTIONS(19), - [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(81), - [sym_list_marker_dash] = ACTIONS(25), - [sym_list_marker_star] = ACTIONS(27), - [sym_list_marker_plus] = ACTIONS(29), - [sym__list_marker_task_begin] = ACTIONS(31), - [sym_list_marker_definition] = ACTIONS(33), - [sym_list_marker_decimal_period] = ACTIONS(35), - [sym_list_marker_lower_alpha_period] = ACTIONS(37), - [sym_list_marker_upper_alpha_period] = ACTIONS(39), - [sym_list_marker_lower_roman_period] = ACTIONS(41), - [sym_list_marker_upper_roman_period] = ACTIONS(43), - [sym_list_marker_decimal_paren] = ACTIONS(45), - [sym_list_marker_lower_alpha_paren] = ACTIONS(47), - [sym_list_marker_upper_alpha_paren] = ACTIONS(49), - [sym_list_marker_lower_roman_paren] = ACTIONS(51), - [sym_list_marker_upper_roman_paren] = ACTIONS(53), - [sym_list_marker_decimal_parens] = ACTIONS(55), - [sym_list_marker_lower_alpha_parens] = ACTIONS(57), - [sym_list_marker_upper_alpha_parens] = ACTIONS(59), - [sym_list_marker_lower_roman_parens] = ACTIONS(61), - [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(83), - [sym__block_quote_continuation] = ACTIONS(220), - [sym__thematic_break_dash] = ACTIONS(85), - [sym__thematic_break_star] = ACTIONS(85), + [sym__block_with_heading] = STATE(206), + [sym__block_element] = STATE(206), + [sym_heading] = STATE(206), + [sym_list] = STATE(206), + [sym__list_dash] = STATE(143), + [sym__list_item_dash] = STATE(687), + [sym__list_plus] = STATE(143), + [sym__list_item_plus] = STATE(691), + [sym__list_star] = STATE(143), + [sym__list_item_star] = STATE(673), + [sym__list_task] = STATE(143), + [sym__list_item_task] = STATE(680), + [sym_list_marker_task] = STATE(48), + [sym__list_definition] = STATE(143), + [sym__list_item_definition] = STATE(804), + [sym__list_decimal_period] = STATE(143), + [sym__list_item_decimal_period] = STATE(837), + [sym__list_decimal_paren] = STATE(143), + [sym__list_item_decimal_paren] = STATE(703), + [sym__list_decimal_parens] = STATE(143), + [sym__list_item_decimal_parens] = STATE(715), + [sym__list_lower_alpha_period] = STATE(143), + [sym__list_item_lower_alpha_period] = STATE(739), + [sym__list_lower_alpha_paren] = STATE(143), + [sym__list_item_lower_alpha_paren] = STATE(754), + [sym__list_lower_alpha_parens] = STATE(143), + [sym__list_item_lower_alpha_parens] = STATE(755), + [sym__list_upper_alpha_period] = STATE(143), + [sym__list_item_upper_alpha_period] = STATE(758), + [sym__list_upper_alpha_paren] = STATE(143), + [sym__list_item_upper_alpha_paren] = STATE(759), + [sym__list_upper_alpha_parens] = STATE(143), + [sym__list_item_upper_alpha_parens] = STATE(766), + [sym__list_lower_roman_period] = STATE(143), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(143), + [sym__list_item_lower_roman_paren] = STATE(770), + [sym__list_lower_roman_parens] = STATE(143), + [sym__list_item_lower_roman_parens] = STATE(773), + [sym__list_upper_roman_period] = STATE(143), + [sym__list_item_upper_roman_period] = STATE(775), + [sym__list_upper_roman_paren] = STATE(143), + [sym__list_item_upper_roman_paren] = STATE(791), + [sym__list_upper_roman_parens] = STATE(143), + [sym__list_item_upper_roman_parens] = STATE(793), + [sym_table] = STATE(206), + [sym__table_row] = STATE(66), + [sym_table_header] = STATE(66), + [sym_table_separator] = STATE(66), + [sym_table_row] = STATE(66), + [sym_footnote] = STATE(206), + [sym_footnote_marker_begin] = STATE(1145), + [sym_div] = STATE(206), + [sym__div_marker_begin] = STATE(1061), + [sym_code_block] = STATE(206), + [sym_raw_block] = STATE(206), + [sym_thematic_break] = STATE(206), + [sym_block_quote] = STATE(206), + [sym__block_quote_prefix] = STATE(220), + [sym_link_reference_definition] = STATE(206), + [sym_block_attribute] = STATE(206), + [sym__paragraph] = STATE(206), + [sym__paragraph_content] = STATE(800), + [sym__paragraph_inline_content] = STATE(799), + [sym__inline] = STATE(629), + [sym__symbol_fallback] = STATE(285), + [aux_sym__list_dash_repeat1] = STATE(351), + [aux_sym__list_plus_repeat1] = STATE(350), + [aux_sym__list_star_repeat1] = STATE(353), + [aux_sym__list_task_repeat1] = STATE(339), + [aux_sym__list_definition_repeat1] = STATE(512), + [aux_sym__list_decimal_period_repeat1] = STATE(513), + [aux_sym__list_decimal_paren_repeat1] = STATE(514), + [aux_sym__list_decimal_parens_repeat1] = STATE(515), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(516), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(518), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(519), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(520), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(521), + [aux_sym__list_lower_roman_period_repeat1] = STATE(579), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(523), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(524), + [aux_sym__list_upper_roman_period_repeat1] = STATE(525), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(526), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(527), + [aux_sym_table_repeat1] = STATE(66), + [aux_sym_div_repeat1] = STATE(11), + [aux_sym__block_quote_prefix_repeat1] = STATE(232), + [aux_sym__inline_repeat1] = STATE(285), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_LBRACK_CARET] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_DOT] = ACTIONS(11), + [aux_sym_identifier_token1] = ACTIONS(11), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_PERCENT] = ACTIONS(11), + [sym__block_close] = ACTIONS(362), + [sym__newline] = ACTIONS(238), + [sym__heading_begin] = ACTIONS(17), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(85), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(87), + [sym__block_quote_continuation] = ACTIONS(240), + [sym__thematic_break_dash] = ACTIONS(89), + [sym__thematic_break_star] = ACTIONS(89), + [sym__table_header_begin] = ACTIONS(91), + [sym__table_separator_begin] = ACTIONS(93), + [sym__table_row_begin] = ACTIONS(95), }, [22] = { - [sym__block_with_heading] = STATE(1028), - [sym__block_element] = STATE(1028), - [sym_heading] = STATE(1028), - [sym_list] = STATE(1028), - [sym__list_dash] = STATE(1006), - [sym__list_item_dash] = STATE(636), - [sym__list_plus] = STATE(1006), - [sym__list_item_plus] = STATE(637), - [sym__list_star] = STATE(1006), - [sym__list_item_star] = STATE(671), - [sym__list_task] = STATE(1006), - [sym__list_item_task] = STATE(691), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(1006), - [sym__list_item_definition] = STATE(896), - [sym__list_decimal_period] = STATE(1006), - [sym__list_item_decimal_period] = STATE(841), - [sym__list_decimal_paren] = STATE(1006), - [sym__list_item_decimal_paren] = STATE(796), - [sym__list_decimal_parens] = STATE(1006), - [sym__list_item_decimal_parens] = STATE(716), - [sym__list_lower_alpha_period] = STATE(1006), - [sym__list_item_lower_alpha_period] = STATE(722), - [sym__list_lower_alpha_paren] = STATE(1006), - [sym__list_item_lower_alpha_paren] = STATE(801), - [sym__list_lower_alpha_parens] = STATE(1006), - [sym__list_item_lower_alpha_parens] = STATE(813), - [sym__list_upper_alpha_period] = STATE(1006), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(1006), - [sym__list_item_upper_alpha_paren] = STATE(706), - [sym__list_upper_alpha_parens] = STATE(1006), - [sym__list_item_upper_alpha_parens] = STATE(707), - [sym__list_lower_roman_period] = STATE(1006), - [sym__list_item_lower_roman_period] = STATE(725), - [sym__list_lower_roman_paren] = STATE(1006), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(1006), - [sym__list_item_lower_roman_parens] = STATE(736), - [sym__list_upper_roman_period] = STATE(1006), - [sym__list_item_upper_roman_period] = STATE(742), - [sym__list_upper_roman_paren] = STATE(1006), - [sym__list_item_upper_roman_paren] = STATE(743), - [sym__list_upper_roman_parens] = STATE(1006), - [sym__list_item_upper_roman_parens] = STATE(762), - [sym_list_item_content] = STATE(587), - [sym_table] = STATE(1028), - [sym__table_content] = STATE(310), - [sym_table_separator] = STATE(310), - [sym_table_row] = STATE(331), - [sym_footnote] = STATE(1028), - [sym_footnote_marker_begin] = STATE(1176), - [sym_div] = STATE(1028), - [sym__div_marker_begin] = STATE(1026), - [sym_code_block] = STATE(1028), - [sym_raw_block] = STATE(1028), - [sym_thematic_break] = STATE(1028), - [sym_block_quote] = STATE(1028), - [sym__block_quote_prefix] = STATE(231), - [sym_link_reference_definition] = STATE(1028), - [sym_block_attribute] = STATE(1028), - [sym__paragraph] = STATE(1028), - [sym__paragraph_content] = STATE(705), - [sym__paragraph_inline_content] = STATE(775), - [sym__inline] = STATE(616), - [sym__symbol_fallback] = STATE(297), - [aux_sym__list_dash_repeat1] = STATE(355), - [aux_sym__list_plus_repeat1] = STATE(356), - [aux_sym__list_star_repeat1] = STATE(362), - [aux_sym__list_task_repeat1] = STATE(346), - [aux_sym__list_definition_repeat1] = STATE(483), - [aux_sym__list_decimal_period_repeat1] = STATE(484), - [aux_sym__list_decimal_paren_repeat1] = STATE(485), - [aux_sym__list_decimal_parens_repeat1] = STATE(486), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(487), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(488), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(489), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(490), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(491), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(492), - [aux_sym__list_lower_roman_period_repeat1] = STATE(493), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(494), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(495), - [aux_sym__list_upper_roman_period_repeat1] = STATE(581), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(497), - [aux_sym_table_repeat1] = STATE(310), - [aux_sym__block_quote_prefix_repeat1] = STATE(253), - [aux_sym__inline_repeat1] = STATE(297), - [anon_sym_LBRACK] = ACTIONS(338), - [anon_sym_PIPE] = ACTIONS(340), - [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(342), - [anon_sym_DOT] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(13), - [aux_sym__inline_token1] = ACTIONS(13), - [anon_sym_LBRACE_DASH] = ACTIONS(13), - [anon_sym_POUND] = ACTIONS(13), - [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(344), - [sym__heading_begin] = ACTIONS(346), - [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(348), - [sym_list_marker_dash] = ACTIONS(25), - [sym_list_marker_star] = ACTIONS(27), - [sym_list_marker_plus] = ACTIONS(29), - [sym__list_marker_task_begin] = ACTIONS(31), - [sym_list_marker_definition] = ACTIONS(33), - [sym_list_marker_decimal_period] = ACTIONS(35), - [sym_list_marker_lower_alpha_period] = ACTIONS(37), - [sym_list_marker_upper_alpha_period] = ACTIONS(39), - [sym_list_marker_lower_roman_period] = ACTIONS(41), - [sym_list_marker_upper_roman_period] = ACTIONS(43), - [sym_list_marker_decimal_paren] = ACTIONS(45), - [sym_list_marker_lower_alpha_paren] = ACTIONS(47), - [sym_list_marker_upper_alpha_paren] = ACTIONS(49), - [sym_list_marker_lower_roman_paren] = ACTIONS(51), - [sym_list_marker_upper_roman_paren] = ACTIONS(53), - [sym_list_marker_decimal_parens] = ACTIONS(55), - [sym_list_marker_lower_alpha_parens] = ACTIONS(57), - [sym_list_marker_upper_alpha_parens] = ACTIONS(59), - [sym_list_marker_lower_roman_parens] = ACTIONS(61), - [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(350), - [sym__block_quote_continuation] = ACTIONS(352), - [sym__thematic_break_dash] = ACTIONS(354), - [sym__thematic_break_star] = ACTIONS(354), + [sym__block_with_heading] = STATE(1063), + [sym__block_element] = STATE(1063), + [sym_heading] = STATE(1063), + [sym_list] = STATE(1063), + [sym__list_dash] = STATE(974), + [sym__list_item_dash] = STATE(687), + [sym__list_plus] = STATE(974), + [sym__list_item_plus] = STATE(691), + [sym__list_star] = STATE(974), + [sym__list_item_star] = STATE(673), + [sym__list_task] = STATE(974), + [sym__list_item_task] = STATE(680), + [sym_list_marker_task] = STATE(48), + [sym__list_definition] = STATE(974), + [sym__list_item_definition] = STATE(804), + [sym__list_decimal_period] = STATE(974), + [sym__list_item_decimal_period] = STATE(837), + [sym__list_decimal_paren] = STATE(974), + [sym__list_item_decimal_paren] = STATE(703), + [sym__list_decimal_parens] = STATE(974), + [sym__list_item_decimal_parens] = STATE(715), + [sym__list_lower_alpha_period] = STATE(974), + [sym__list_item_lower_alpha_period] = STATE(739), + [sym__list_lower_alpha_paren] = STATE(974), + [sym__list_item_lower_alpha_paren] = STATE(754), + [sym__list_lower_alpha_parens] = STATE(974), + [sym__list_item_lower_alpha_parens] = STATE(755), + [sym__list_upper_alpha_period] = STATE(974), + [sym__list_item_upper_alpha_period] = STATE(758), + [sym__list_upper_alpha_paren] = STATE(974), + [sym__list_item_upper_alpha_paren] = STATE(759), + [sym__list_upper_alpha_parens] = STATE(974), + [sym__list_item_upper_alpha_parens] = STATE(766), + [sym__list_lower_roman_period] = STATE(974), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(974), + [sym__list_item_lower_roman_paren] = STATE(770), + [sym__list_lower_roman_parens] = STATE(974), + [sym__list_item_lower_roman_parens] = STATE(773), + [sym__list_upper_roman_period] = STATE(974), + [sym__list_item_upper_roman_period] = STATE(775), + [sym__list_upper_roman_paren] = STATE(974), + [sym__list_item_upper_roman_paren] = STATE(791), + [sym__list_upper_roman_parens] = STATE(974), + [sym__list_item_upper_roman_parens] = STATE(793), + [sym_list_item_content] = STATE(740), + [sym_table] = STATE(1063), + [sym__table_row] = STATE(248), + [sym_table_header] = STATE(248), + [sym_table_separator] = STATE(248), + [sym_table_row] = STATE(248), + [sym_footnote] = STATE(1063), + [sym_footnote_marker_begin] = STATE(1141), + [sym_div] = STATE(1063), + [sym__div_marker_begin] = STATE(1023), + [sym_code_block] = STATE(1063), + [sym_raw_block] = STATE(1063), + [sym_thematic_break] = STATE(1063), + [sym_block_quote] = STATE(1063), + [sym__block_quote_prefix] = STATE(222), + [sym_link_reference_definition] = STATE(1063), + [sym_block_attribute] = STATE(1063), + [sym__paragraph] = STATE(1063), + [sym__paragraph_content] = STATE(738), + [sym__paragraph_inline_content] = STATE(799), + [sym__inline] = STATE(629), + [sym__symbol_fallback] = STATE(285), + [aux_sym__list_dash_repeat1] = STATE(354), + [aux_sym__list_plus_repeat1] = STATE(355), + [aux_sym__list_star_repeat1] = STATE(356), + [aux_sym__list_task_repeat1] = STATE(335), + [aux_sym__list_definition_repeat1] = STATE(479), + [aux_sym__list_decimal_period_repeat1] = STATE(480), + [aux_sym__list_decimal_paren_repeat1] = STATE(481), + [aux_sym__list_decimal_parens_repeat1] = STATE(482), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(483), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(484), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(485), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(486), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(487), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(488), + [aux_sym__list_lower_roman_period_repeat1] = STATE(489), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(490), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(491), + [aux_sym__list_upper_roman_period_repeat1] = STATE(492), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(493), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(494), + [aux_sym_table_repeat1] = STATE(248), + [aux_sym__block_quote_prefix_repeat1] = STATE(235), + [aux_sym__inline_repeat1] = STATE(285), + [anon_sym_LBRACK] = ACTIONS(364), + [anon_sym_LBRACK_CARET] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(366), + [anon_sym_DOT] = ACTIONS(11), + [aux_sym_identifier_token1] = ACTIONS(11), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_PERCENT] = ACTIONS(11), + [sym__newline] = ACTIONS(368), + [sym__heading_begin] = ACTIONS(370), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(372), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(374), + [sym__block_quote_continuation] = ACTIONS(376), + [sym__thematic_break_dash] = ACTIONS(378), + [sym__thematic_break_star] = ACTIONS(378), + [sym__table_header_begin] = ACTIONS(380), + [sym__table_separator_begin] = ACTIONS(382), + [sym__table_row_begin] = ACTIONS(384), }, [23] = { - [sym__block_with_heading] = STATE(1126), - [sym__block_element] = STATE(1126), - [sym_heading] = STATE(1126), - [sym_list] = STATE(1126), - [sym__list_dash] = STATE(1006), - [sym__list_item_dash] = STATE(636), - [sym__list_plus] = STATE(1006), - [sym__list_item_plus] = STATE(637), - [sym__list_star] = STATE(1006), - [sym__list_item_star] = STATE(671), - [sym__list_task] = STATE(1006), - [sym__list_item_task] = STATE(691), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(1006), - [sym__list_item_definition] = STATE(896), - [sym__list_decimal_period] = STATE(1006), - [sym__list_item_decimal_period] = STATE(841), - [sym__list_decimal_paren] = STATE(1006), - [sym__list_item_decimal_paren] = STATE(796), - [sym__list_decimal_parens] = STATE(1006), - [sym__list_item_decimal_parens] = STATE(716), - [sym__list_lower_alpha_period] = STATE(1006), - [sym__list_item_lower_alpha_period] = STATE(722), - [sym__list_lower_alpha_paren] = STATE(1006), - [sym__list_item_lower_alpha_paren] = STATE(801), - [sym__list_lower_alpha_parens] = STATE(1006), - [sym__list_item_lower_alpha_parens] = STATE(813), - [sym__list_upper_alpha_period] = STATE(1006), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(1006), - [sym__list_item_upper_alpha_paren] = STATE(706), - [sym__list_upper_alpha_parens] = STATE(1006), - [sym__list_item_upper_alpha_parens] = STATE(707), - [sym__list_lower_roman_period] = STATE(1006), - [sym__list_item_lower_roman_period] = STATE(725), - [sym__list_lower_roman_paren] = STATE(1006), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(1006), - [sym__list_item_lower_roman_parens] = STATE(736), - [sym__list_upper_roman_period] = STATE(1006), - [sym__list_item_upper_roman_period] = STATE(742), - [sym__list_upper_roman_paren] = STATE(1006), - [sym__list_item_upper_roman_paren] = STATE(743), - [sym__list_upper_roman_parens] = STATE(1006), - [sym__list_item_upper_roman_parens] = STATE(762), - [sym_list_item_content] = STATE(702), - [sym_table] = STATE(1126), - [sym__table_content] = STATE(310), - [sym_table_separator] = STATE(310), - [sym_table_row] = STATE(331), - [sym_footnote] = STATE(1126), - [sym_footnote_marker_begin] = STATE(1176), - [sym_div] = STATE(1126), - [sym__div_marker_begin] = STATE(1026), - [sym_code_block] = STATE(1126), - [sym_raw_block] = STATE(1126), - [sym_thematic_break] = STATE(1126), - [sym_block_quote] = STATE(1126), - [sym__block_quote_prefix] = STATE(231), - [sym_link_reference_definition] = STATE(1126), - [sym_block_attribute] = STATE(1126), - [sym__paragraph] = STATE(1126), - [sym__paragraph_content] = STATE(705), - [sym__paragraph_inline_content] = STATE(775), - [sym__inline] = STATE(616), - [sym__symbol_fallback] = STATE(297), - [aux_sym__list_dash_repeat1] = STATE(355), - [aux_sym__list_plus_repeat1] = STATE(356), - [aux_sym__list_star_repeat1] = STATE(362), - [aux_sym__list_task_repeat1] = STATE(346), - [aux_sym__list_definition_repeat1] = STATE(483), - [aux_sym__list_decimal_period_repeat1] = STATE(484), - [aux_sym__list_decimal_paren_repeat1] = STATE(485), - [aux_sym__list_decimal_parens_repeat1] = STATE(486), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(487), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(488), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(489), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(490), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(491), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(492), - [aux_sym__list_lower_roman_period_repeat1] = STATE(493), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(494), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(495), - [aux_sym__list_upper_roman_period_repeat1] = STATE(581), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(497), - [aux_sym_table_repeat1] = STATE(310), - [aux_sym__block_quote_prefix_repeat1] = STATE(253), - [aux_sym__inline_repeat1] = STATE(297), - [anon_sym_LBRACK] = ACTIONS(338), - [anon_sym_PIPE] = ACTIONS(340), - [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(342), - [anon_sym_DOT] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(13), - [aux_sym__inline_token1] = ACTIONS(13), - [anon_sym_LBRACE_DASH] = ACTIONS(13), - [anon_sym_POUND] = ACTIONS(13), - [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(356), - [sym__heading_begin] = ACTIONS(346), - [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(348), - [sym_list_marker_dash] = ACTIONS(25), - [sym_list_marker_star] = ACTIONS(27), - [sym_list_marker_plus] = ACTIONS(29), - [sym__list_marker_task_begin] = ACTIONS(31), - [sym_list_marker_definition] = ACTIONS(33), - [sym_list_marker_decimal_period] = ACTIONS(35), - [sym_list_marker_lower_alpha_period] = ACTIONS(37), - [sym_list_marker_upper_alpha_period] = ACTIONS(39), - [sym_list_marker_lower_roman_period] = ACTIONS(41), - [sym_list_marker_upper_roman_period] = ACTIONS(43), - [sym_list_marker_decimal_paren] = ACTIONS(45), - [sym_list_marker_lower_alpha_paren] = ACTIONS(47), - [sym_list_marker_upper_alpha_paren] = ACTIONS(49), - [sym_list_marker_lower_roman_paren] = ACTIONS(51), - [sym_list_marker_upper_roman_paren] = ACTIONS(53), - [sym_list_marker_decimal_parens] = ACTIONS(55), - [sym_list_marker_lower_alpha_parens] = ACTIONS(57), - [sym_list_marker_upper_alpha_parens] = ACTIONS(59), - [sym_list_marker_lower_roman_parens] = ACTIONS(61), - [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(350), - [sym__block_quote_continuation] = ACTIONS(352), - [sym__thematic_break_dash] = ACTIONS(354), - [sym__thematic_break_star] = ACTIONS(354), + [sym__block_with_heading] = STATE(1094), + [sym__block_element] = STATE(1094), + [sym_heading] = STATE(1094), + [sym_list] = STATE(1094), + [sym__list_dash] = STATE(974), + [sym__list_item_dash] = STATE(687), + [sym__list_plus] = STATE(974), + [sym__list_item_plus] = STATE(691), + [sym__list_star] = STATE(974), + [sym__list_item_star] = STATE(673), + [sym__list_task] = STATE(974), + [sym__list_item_task] = STATE(680), + [sym_list_marker_task] = STATE(48), + [sym__list_definition] = STATE(974), + [sym__list_item_definition] = STATE(804), + [sym__list_decimal_period] = STATE(974), + [sym__list_item_decimal_period] = STATE(837), + [sym__list_decimal_paren] = STATE(974), + [sym__list_item_decimal_paren] = STATE(703), + [sym__list_decimal_parens] = STATE(974), + [sym__list_item_decimal_parens] = STATE(715), + [sym__list_lower_alpha_period] = STATE(974), + [sym__list_item_lower_alpha_period] = STATE(739), + [sym__list_lower_alpha_paren] = STATE(974), + [sym__list_item_lower_alpha_paren] = STATE(754), + [sym__list_lower_alpha_parens] = STATE(974), + [sym__list_item_lower_alpha_parens] = STATE(755), + [sym__list_upper_alpha_period] = STATE(974), + [sym__list_item_upper_alpha_period] = STATE(758), + [sym__list_upper_alpha_paren] = STATE(974), + [sym__list_item_upper_alpha_paren] = STATE(759), + [sym__list_upper_alpha_parens] = STATE(974), + [sym__list_item_upper_alpha_parens] = STATE(766), + [sym__list_lower_roman_period] = STATE(974), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(974), + [sym__list_item_lower_roman_paren] = STATE(770), + [sym__list_lower_roman_parens] = STATE(974), + [sym__list_item_lower_roman_parens] = STATE(773), + [sym__list_upper_roman_period] = STATE(974), + [sym__list_item_upper_roman_period] = STATE(775), + [sym__list_upper_roman_paren] = STATE(974), + [sym__list_item_upper_roman_paren] = STATE(791), + [sym__list_upper_roman_parens] = STATE(974), + [sym__list_item_upper_roman_parens] = STATE(793), + [sym_table] = STATE(1094), + [sym__table_row] = STATE(248), + [sym_table_header] = STATE(248), + [sym_table_separator] = STATE(248), + [sym_table_row] = STATE(248), + [sym_footnote] = STATE(1094), + [sym_footnote_marker_begin] = STATE(1141), + [sym_footnote_content] = STATE(648), + [sym_div] = STATE(1094), + [sym__div_marker_begin] = STATE(1023), + [sym_code_block] = STATE(1094), + [sym_raw_block] = STATE(1094), + [sym_thematic_break] = STATE(1094), + [sym_block_quote] = STATE(1094), + [sym__block_quote_prefix] = STATE(222), + [sym_link_reference_definition] = STATE(1094), + [sym_block_attribute] = STATE(1094), + [sym__paragraph] = STATE(1094), + [sym__paragraph_content] = STATE(738), + [sym__paragraph_inline_content] = STATE(799), + [sym__inline] = STATE(629), + [sym__symbol_fallback] = STATE(285), + [aux_sym__list_dash_repeat1] = STATE(354), + [aux_sym__list_plus_repeat1] = STATE(355), + [aux_sym__list_star_repeat1] = STATE(356), + [aux_sym__list_task_repeat1] = STATE(335), + [aux_sym__list_definition_repeat1] = STATE(479), + [aux_sym__list_decimal_period_repeat1] = STATE(480), + [aux_sym__list_decimal_paren_repeat1] = STATE(481), + [aux_sym__list_decimal_parens_repeat1] = STATE(482), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(483), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(484), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(485), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(486), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(487), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(488), + [aux_sym__list_lower_roman_period_repeat1] = STATE(489), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(490), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(491), + [aux_sym__list_upper_roman_period_repeat1] = STATE(492), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(493), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(494), + [aux_sym_table_repeat1] = STATE(248), + [aux_sym__block_quote_prefix_repeat1] = STATE(235), + [aux_sym__inline_repeat1] = STATE(285), + [anon_sym_LBRACK] = ACTIONS(364), + [anon_sym_LBRACK_CARET] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(366), + [anon_sym_DOT] = ACTIONS(11), + [aux_sym_identifier_token1] = ACTIONS(11), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_PERCENT] = ACTIONS(11), + [sym__newline] = ACTIONS(386), + [sym__heading_begin] = ACTIONS(370), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(372), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(374), + [sym__block_quote_continuation] = ACTIONS(376), + [sym__thematic_break_dash] = ACTIONS(378), + [sym__thematic_break_star] = ACTIONS(378), + [sym__table_header_begin] = ACTIONS(380), + [sym__table_separator_begin] = ACTIONS(382), + [sym__table_row_begin] = ACTIONS(384), }, [24] = { - [sym__block_with_heading] = STATE(1120), - [sym__block_element] = STATE(1120), - [sym_heading] = STATE(1120), - [sym_list] = STATE(1120), - [sym__list_dash] = STATE(1006), - [sym__list_item_dash] = STATE(636), - [sym__list_plus] = STATE(1006), - [sym__list_item_plus] = STATE(637), - [sym__list_star] = STATE(1006), - [sym__list_item_star] = STATE(671), - [sym__list_task] = STATE(1006), - [sym__list_item_task] = STATE(691), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(1006), - [sym__list_item_definition] = STATE(896), - [sym__list_decimal_period] = STATE(1006), - [sym__list_item_decimal_period] = STATE(841), - [sym__list_decimal_paren] = STATE(1006), - [sym__list_item_decimal_paren] = STATE(796), - [sym__list_decimal_parens] = STATE(1006), - [sym__list_item_decimal_parens] = STATE(716), - [sym__list_lower_alpha_period] = STATE(1006), - [sym__list_item_lower_alpha_period] = STATE(722), - [sym__list_lower_alpha_paren] = STATE(1006), - [sym__list_item_lower_alpha_paren] = STATE(801), - [sym__list_lower_alpha_parens] = STATE(1006), - [sym__list_item_lower_alpha_parens] = STATE(813), - [sym__list_upper_alpha_period] = STATE(1006), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(1006), - [sym__list_item_upper_alpha_paren] = STATE(706), - [sym__list_upper_alpha_parens] = STATE(1006), - [sym__list_item_upper_alpha_parens] = STATE(707), - [sym__list_lower_roman_period] = STATE(1006), - [sym__list_item_lower_roman_period] = STATE(725), - [sym__list_lower_roman_paren] = STATE(1006), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(1006), - [sym__list_item_lower_roman_parens] = STATE(736), - [sym__list_upper_roman_period] = STATE(1006), - [sym__list_item_upper_roman_period] = STATE(742), - [sym__list_upper_roman_paren] = STATE(1006), - [sym__list_item_upper_roman_paren] = STATE(743), - [sym__list_upper_roman_parens] = STATE(1006), - [sym__list_item_upper_roman_parens] = STATE(762), - [sym_list_item_content] = STATE(818), - [sym_table] = STATE(1120), - [sym__table_content] = STATE(310), - [sym_table_separator] = STATE(310), - [sym_table_row] = STATE(331), - [sym_footnote] = STATE(1120), - [sym_footnote_marker_begin] = STATE(1176), - [sym_div] = STATE(1120), - [sym__div_marker_begin] = STATE(1026), - [sym_code_block] = STATE(1120), - [sym_raw_block] = STATE(1120), - [sym_thematic_break] = STATE(1120), - [sym_block_quote] = STATE(1120), - [sym__block_quote_prefix] = STATE(231), - [sym_link_reference_definition] = STATE(1120), - [sym_block_attribute] = STATE(1120), - [sym__paragraph] = STATE(1120), - [sym__paragraph_content] = STATE(705), - [sym__paragraph_inline_content] = STATE(775), - [sym__inline] = STATE(616), - [sym__symbol_fallback] = STATE(297), - [aux_sym__list_dash_repeat1] = STATE(355), - [aux_sym__list_plus_repeat1] = STATE(356), - [aux_sym__list_star_repeat1] = STATE(362), - [aux_sym__list_task_repeat1] = STATE(346), - [aux_sym__list_definition_repeat1] = STATE(483), - [aux_sym__list_decimal_period_repeat1] = STATE(484), - [aux_sym__list_decimal_paren_repeat1] = STATE(485), - [aux_sym__list_decimal_parens_repeat1] = STATE(486), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(487), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(488), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(489), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(490), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(491), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(492), - [aux_sym__list_lower_roman_period_repeat1] = STATE(493), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(494), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(495), - [aux_sym__list_upper_roman_period_repeat1] = STATE(581), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(497), - [aux_sym_table_repeat1] = STATE(310), - [aux_sym__block_quote_prefix_repeat1] = STATE(253), - [aux_sym__inline_repeat1] = STATE(297), - [anon_sym_LBRACK] = ACTIONS(338), - [anon_sym_PIPE] = ACTIONS(340), - [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(342), - [anon_sym_DOT] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(13), - [aux_sym__inline_token1] = ACTIONS(13), - [anon_sym_LBRACE_DASH] = ACTIONS(13), - [anon_sym_POUND] = ACTIONS(13), - [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(358), - [sym__heading_begin] = ACTIONS(346), - [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(348), - [sym_list_marker_dash] = ACTIONS(25), - [sym_list_marker_star] = ACTIONS(27), - [sym_list_marker_plus] = ACTIONS(29), - [sym__list_marker_task_begin] = ACTIONS(31), - [sym_list_marker_definition] = ACTIONS(33), - [sym_list_marker_decimal_period] = ACTIONS(35), - [sym_list_marker_lower_alpha_period] = ACTIONS(37), - [sym_list_marker_upper_alpha_period] = ACTIONS(39), - [sym_list_marker_lower_roman_period] = ACTIONS(41), - [sym_list_marker_upper_roman_period] = ACTIONS(43), - [sym_list_marker_decimal_paren] = ACTIONS(45), - [sym_list_marker_lower_alpha_paren] = ACTIONS(47), - [sym_list_marker_upper_alpha_paren] = ACTIONS(49), - [sym_list_marker_lower_roman_paren] = ACTIONS(51), - [sym_list_marker_upper_roman_paren] = ACTIONS(53), - [sym_list_marker_decimal_parens] = ACTIONS(55), - [sym_list_marker_lower_alpha_parens] = ACTIONS(57), - [sym_list_marker_upper_alpha_parens] = ACTIONS(59), - [sym_list_marker_lower_roman_parens] = ACTIONS(61), - [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(350), - [sym__block_quote_continuation] = ACTIONS(352), - [sym__thematic_break_dash] = ACTIONS(354), - [sym__thematic_break_star] = ACTIONS(354), + [sym__block_with_heading] = STATE(1081), + [sym__block_element] = STATE(1081), + [sym_heading] = STATE(1081), + [sym_list] = STATE(1081), + [sym__list_dash] = STATE(974), + [sym__list_item_dash] = STATE(687), + [sym__list_plus] = STATE(974), + [sym__list_item_plus] = STATE(691), + [sym__list_star] = STATE(974), + [sym__list_item_star] = STATE(673), + [sym__list_task] = STATE(974), + [sym__list_item_task] = STATE(680), + [sym_list_marker_task] = STATE(48), + [sym__list_definition] = STATE(974), + [sym__list_item_definition] = STATE(804), + [sym__list_decimal_period] = STATE(974), + [sym__list_item_decimal_period] = STATE(837), + [sym__list_decimal_paren] = STATE(974), + [sym__list_item_decimal_paren] = STATE(703), + [sym__list_decimal_parens] = STATE(974), + [sym__list_item_decimal_parens] = STATE(715), + [sym__list_lower_alpha_period] = STATE(974), + [sym__list_item_lower_alpha_period] = STATE(739), + [sym__list_lower_alpha_paren] = STATE(974), + [sym__list_item_lower_alpha_paren] = STATE(754), + [sym__list_lower_alpha_parens] = STATE(974), + [sym__list_item_lower_alpha_parens] = STATE(755), + [sym__list_upper_alpha_period] = STATE(974), + [sym__list_item_upper_alpha_period] = STATE(758), + [sym__list_upper_alpha_paren] = STATE(974), + [sym__list_item_upper_alpha_paren] = STATE(759), + [sym__list_upper_alpha_parens] = STATE(974), + [sym__list_item_upper_alpha_parens] = STATE(766), + [sym__list_lower_roman_period] = STATE(974), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(974), + [sym__list_item_lower_roman_paren] = STATE(770), + [sym__list_lower_roman_parens] = STATE(974), + [sym__list_item_lower_roman_parens] = STATE(773), + [sym__list_upper_roman_period] = STATE(974), + [sym__list_item_upper_roman_period] = STATE(775), + [sym__list_upper_roman_paren] = STATE(974), + [sym__list_item_upper_roman_paren] = STATE(791), + [sym__list_upper_roman_parens] = STATE(974), + [sym__list_item_upper_roman_parens] = STATE(793), + [sym_list_item_content] = STATE(744), + [sym_table] = STATE(1081), + [sym__table_row] = STATE(248), + [sym_table_header] = STATE(248), + [sym_table_separator] = STATE(248), + [sym_table_row] = STATE(248), + [sym_footnote] = STATE(1081), + [sym_footnote_marker_begin] = STATE(1141), + [sym_div] = STATE(1081), + [sym__div_marker_begin] = STATE(1023), + [sym_code_block] = STATE(1081), + [sym_raw_block] = STATE(1081), + [sym_thematic_break] = STATE(1081), + [sym_block_quote] = STATE(1081), + [sym__block_quote_prefix] = STATE(222), + [sym_link_reference_definition] = STATE(1081), + [sym_block_attribute] = STATE(1081), + [sym__paragraph] = STATE(1081), + [sym__paragraph_content] = STATE(738), + [sym__paragraph_inline_content] = STATE(799), + [sym__inline] = STATE(629), + [sym__symbol_fallback] = STATE(285), + [aux_sym__list_dash_repeat1] = STATE(354), + [aux_sym__list_plus_repeat1] = STATE(355), + [aux_sym__list_star_repeat1] = STATE(356), + [aux_sym__list_task_repeat1] = STATE(335), + [aux_sym__list_definition_repeat1] = STATE(479), + [aux_sym__list_decimal_period_repeat1] = STATE(480), + [aux_sym__list_decimal_paren_repeat1] = STATE(481), + [aux_sym__list_decimal_parens_repeat1] = STATE(482), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(483), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(484), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(485), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(486), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(487), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(488), + [aux_sym__list_lower_roman_period_repeat1] = STATE(489), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(490), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(491), + [aux_sym__list_upper_roman_period_repeat1] = STATE(492), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(493), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(494), + [aux_sym_table_repeat1] = STATE(248), + [aux_sym__block_quote_prefix_repeat1] = STATE(235), + [aux_sym__inline_repeat1] = STATE(285), + [anon_sym_LBRACK] = ACTIONS(364), + [anon_sym_LBRACK_CARET] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(366), + [anon_sym_DOT] = ACTIONS(11), + [aux_sym_identifier_token1] = ACTIONS(11), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_PERCENT] = ACTIONS(11), + [sym__newline] = ACTIONS(388), + [sym__heading_begin] = ACTIONS(370), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(372), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(374), + [sym__block_quote_continuation] = ACTIONS(376), + [sym__thematic_break_dash] = ACTIONS(378), + [sym__thematic_break_star] = ACTIONS(378), + [sym__table_header_begin] = ACTIONS(380), + [sym__table_separator_begin] = ACTIONS(382), + [sym__table_row_begin] = ACTIONS(384), }, [25] = { - [sym__block_with_heading] = STATE(1121), - [sym__block_element] = STATE(1121), - [sym_heading] = STATE(1121), - [sym_list] = STATE(1121), - [sym__list_dash] = STATE(1006), - [sym__list_item_dash] = STATE(636), - [sym__list_plus] = STATE(1006), - [sym__list_item_plus] = STATE(637), - [sym__list_star] = STATE(1006), - [sym__list_item_star] = STATE(671), - [sym__list_task] = STATE(1006), - [sym__list_item_task] = STATE(691), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(1006), - [sym__list_item_definition] = STATE(896), - [sym__list_decimal_period] = STATE(1006), - [sym__list_item_decimal_period] = STATE(841), - [sym__list_decimal_paren] = STATE(1006), - [sym__list_item_decimal_paren] = STATE(796), - [sym__list_decimal_parens] = STATE(1006), - [sym__list_item_decimal_parens] = STATE(716), - [sym__list_lower_alpha_period] = STATE(1006), - [sym__list_item_lower_alpha_period] = STATE(722), - [sym__list_lower_alpha_paren] = STATE(1006), - [sym__list_item_lower_alpha_paren] = STATE(801), - [sym__list_lower_alpha_parens] = STATE(1006), - [sym__list_item_lower_alpha_parens] = STATE(813), - [sym__list_upper_alpha_period] = STATE(1006), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(1006), - [sym__list_item_upper_alpha_paren] = STATE(706), - [sym__list_upper_alpha_parens] = STATE(1006), - [sym__list_item_upper_alpha_parens] = STATE(707), - [sym__list_lower_roman_period] = STATE(1006), - [sym__list_item_lower_roman_period] = STATE(725), - [sym__list_lower_roman_paren] = STATE(1006), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(1006), - [sym__list_item_lower_roman_parens] = STATE(736), - [sym__list_upper_roman_period] = STATE(1006), - [sym__list_item_upper_roman_period] = STATE(742), - [sym__list_upper_roman_paren] = STATE(1006), - [sym__list_item_upper_roman_paren] = STATE(743), - [sym__list_upper_roman_parens] = STATE(1006), - [sym__list_item_upper_roman_parens] = STATE(762), - [sym_list_item_content] = STATE(819), - [sym_table] = STATE(1121), - [sym__table_content] = STATE(310), - [sym_table_separator] = STATE(310), - [sym_table_row] = STATE(331), - [sym_footnote] = STATE(1121), - [sym_footnote_marker_begin] = STATE(1176), - [sym_div] = STATE(1121), - [sym__div_marker_begin] = STATE(1026), - [sym_code_block] = STATE(1121), - [sym_raw_block] = STATE(1121), - [sym_thematic_break] = STATE(1121), - [sym_block_quote] = STATE(1121), - [sym__block_quote_prefix] = STATE(231), - [sym_link_reference_definition] = STATE(1121), - [sym_block_attribute] = STATE(1121), - [sym__paragraph] = STATE(1121), - [sym__paragraph_content] = STATE(705), - [sym__paragraph_inline_content] = STATE(775), - [sym__inline] = STATE(616), - [sym__symbol_fallback] = STATE(297), - [aux_sym__list_dash_repeat1] = STATE(355), - [aux_sym__list_plus_repeat1] = STATE(356), - [aux_sym__list_star_repeat1] = STATE(362), - [aux_sym__list_task_repeat1] = STATE(346), - [aux_sym__list_definition_repeat1] = STATE(483), - [aux_sym__list_decimal_period_repeat1] = STATE(484), - [aux_sym__list_decimal_paren_repeat1] = STATE(485), - [aux_sym__list_decimal_parens_repeat1] = STATE(486), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(487), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(488), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(489), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(490), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(491), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(492), - [aux_sym__list_lower_roman_period_repeat1] = STATE(493), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(494), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(495), - [aux_sym__list_upper_roman_period_repeat1] = STATE(581), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(497), - [aux_sym_table_repeat1] = STATE(310), - [aux_sym__block_quote_prefix_repeat1] = STATE(253), - [aux_sym__inline_repeat1] = STATE(297), - [anon_sym_LBRACK] = ACTIONS(338), - [anon_sym_PIPE] = ACTIONS(340), - [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(342), - [anon_sym_DOT] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(13), - [aux_sym__inline_token1] = ACTIONS(13), - [anon_sym_LBRACE_DASH] = ACTIONS(13), - [anon_sym_POUND] = ACTIONS(13), - [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(360), - [sym__heading_begin] = ACTIONS(346), - [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(348), - [sym_list_marker_dash] = ACTIONS(25), - [sym_list_marker_star] = ACTIONS(27), - [sym_list_marker_plus] = ACTIONS(29), - [sym__list_marker_task_begin] = ACTIONS(31), - [sym_list_marker_definition] = ACTIONS(33), - [sym_list_marker_decimal_period] = ACTIONS(35), - [sym_list_marker_lower_alpha_period] = ACTIONS(37), - [sym_list_marker_upper_alpha_period] = ACTIONS(39), - [sym_list_marker_lower_roman_period] = ACTIONS(41), - [sym_list_marker_upper_roman_period] = ACTIONS(43), - [sym_list_marker_decimal_paren] = ACTIONS(45), - [sym_list_marker_lower_alpha_paren] = ACTIONS(47), - [sym_list_marker_upper_alpha_paren] = ACTIONS(49), - [sym_list_marker_lower_roman_paren] = ACTIONS(51), - [sym_list_marker_upper_roman_paren] = ACTIONS(53), - [sym_list_marker_decimal_parens] = ACTIONS(55), - [sym_list_marker_lower_alpha_parens] = ACTIONS(57), - [sym_list_marker_upper_alpha_parens] = ACTIONS(59), - [sym_list_marker_lower_roman_parens] = ACTIONS(61), - [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(350), - [sym__block_quote_continuation] = ACTIONS(352), - [sym__thematic_break_dash] = ACTIONS(354), - [sym__thematic_break_star] = ACTIONS(354), + [sym__block_with_heading] = STATE(951), + [sym__block_element] = STATE(951), + [sym_heading] = STATE(951), + [sym_list] = STATE(951), + [sym__list_dash] = STATE(974), + [sym__list_item_dash] = STATE(687), + [sym__list_plus] = STATE(974), + [sym__list_item_plus] = STATE(691), + [sym__list_star] = STATE(974), + [sym__list_item_star] = STATE(673), + [sym__list_task] = STATE(974), + [sym__list_item_task] = STATE(680), + [sym_list_marker_task] = STATE(48), + [sym__list_definition] = STATE(974), + [sym__list_item_definition] = STATE(804), + [sym__list_decimal_period] = STATE(974), + [sym__list_item_decimal_period] = STATE(837), + [sym__list_decimal_paren] = STATE(974), + [sym__list_item_decimal_paren] = STATE(703), + [sym__list_decimal_parens] = STATE(974), + [sym__list_item_decimal_parens] = STATE(715), + [sym__list_lower_alpha_period] = STATE(974), + [sym__list_item_lower_alpha_period] = STATE(739), + [sym__list_lower_alpha_paren] = STATE(974), + [sym__list_item_lower_alpha_paren] = STATE(754), + [sym__list_lower_alpha_parens] = STATE(974), + [sym__list_item_lower_alpha_parens] = STATE(755), + [sym__list_upper_alpha_period] = STATE(974), + [sym__list_item_upper_alpha_period] = STATE(758), + [sym__list_upper_alpha_paren] = STATE(974), + [sym__list_item_upper_alpha_paren] = STATE(759), + [sym__list_upper_alpha_parens] = STATE(974), + [sym__list_item_upper_alpha_parens] = STATE(766), + [sym__list_lower_roman_period] = STATE(974), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(974), + [sym__list_item_lower_roman_paren] = STATE(770), + [sym__list_lower_roman_parens] = STATE(974), + [sym__list_item_lower_roman_parens] = STATE(773), + [sym__list_upper_roman_period] = STATE(974), + [sym__list_item_upper_roman_period] = STATE(775), + [sym__list_upper_roman_paren] = STATE(974), + [sym__list_item_upper_roman_paren] = STATE(791), + [sym__list_upper_roman_parens] = STATE(974), + [sym__list_item_upper_roman_parens] = STATE(793), + [sym_list_item_content] = STATE(681), + [sym_table] = STATE(951), + [sym__table_row] = STATE(248), + [sym_table_header] = STATE(248), + [sym_table_separator] = STATE(248), + [sym_table_row] = STATE(248), + [sym_footnote] = STATE(951), + [sym_footnote_marker_begin] = STATE(1141), + [sym_div] = STATE(951), + [sym__div_marker_begin] = STATE(1023), + [sym_code_block] = STATE(951), + [sym_raw_block] = STATE(951), + [sym_thematic_break] = STATE(951), + [sym_block_quote] = STATE(951), + [sym__block_quote_prefix] = STATE(222), + [sym_link_reference_definition] = STATE(951), + [sym_block_attribute] = STATE(951), + [sym__paragraph] = STATE(951), + [sym__paragraph_content] = STATE(738), + [sym__paragraph_inline_content] = STATE(799), + [sym__inline] = STATE(629), + [sym__symbol_fallback] = STATE(285), + [aux_sym__list_dash_repeat1] = STATE(354), + [aux_sym__list_plus_repeat1] = STATE(355), + [aux_sym__list_star_repeat1] = STATE(356), + [aux_sym__list_task_repeat1] = STATE(335), + [aux_sym__list_definition_repeat1] = STATE(479), + [aux_sym__list_decimal_period_repeat1] = STATE(480), + [aux_sym__list_decimal_paren_repeat1] = STATE(481), + [aux_sym__list_decimal_parens_repeat1] = STATE(482), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(483), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(484), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(485), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(486), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(487), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(488), + [aux_sym__list_lower_roman_period_repeat1] = STATE(489), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(490), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(491), + [aux_sym__list_upper_roman_period_repeat1] = STATE(492), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(493), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(494), + [aux_sym_table_repeat1] = STATE(248), + [aux_sym__block_quote_prefix_repeat1] = STATE(235), + [aux_sym__inline_repeat1] = STATE(285), + [anon_sym_LBRACK] = ACTIONS(364), + [anon_sym_LBRACK_CARET] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(366), + [anon_sym_DOT] = ACTIONS(11), + [aux_sym_identifier_token1] = ACTIONS(11), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_PERCENT] = ACTIONS(11), + [sym__newline] = ACTIONS(390), + [sym__heading_begin] = ACTIONS(370), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(372), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(374), + [sym__block_quote_continuation] = ACTIONS(376), + [sym__thematic_break_dash] = ACTIONS(378), + [sym__thematic_break_star] = ACTIONS(378), + [sym__table_header_begin] = ACTIONS(380), + [sym__table_separator_begin] = ACTIONS(382), + [sym__table_row_begin] = ACTIONS(384), }, [26] = { - [sym__block_with_heading] = STATE(1127), - [sym__block_element] = STATE(1127), - [sym_heading] = STATE(1127), - [sym_list] = STATE(1127), - [sym__list_dash] = STATE(1006), - [sym__list_item_dash] = STATE(636), - [sym__list_plus] = STATE(1006), - [sym__list_item_plus] = STATE(637), - [sym__list_star] = STATE(1006), - [sym__list_item_star] = STATE(671), - [sym__list_task] = STATE(1006), - [sym__list_item_task] = STATE(691), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(1006), - [sym__list_item_definition] = STATE(896), - [sym__list_decimal_period] = STATE(1006), - [sym__list_item_decimal_period] = STATE(841), - [sym__list_decimal_paren] = STATE(1006), - [sym__list_item_decimal_paren] = STATE(796), - [sym__list_decimal_parens] = STATE(1006), - [sym__list_item_decimal_parens] = STATE(716), - [sym__list_lower_alpha_period] = STATE(1006), - [sym__list_item_lower_alpha_period] = STATE(722), - [sym__list_lower_alpha_paren] = STATE(1006), - [sym__list_item_lower_alpha_paren] = STATE(801), - [sym__list_lower_alpha_parens] = STATE(1006), - [sym__list_item_lower_alpha_parens] = STATE(813), - [sym__list_upper_alpha_period] = STATE(1006), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(1006), - [sym__list_item_upper_alpha_paren] = STATE(706), - [sym__list_upper_alpha_parens] = STATE(1006), - [sym__list_item_upper_alpha_parens] = STATE(707), - [sym__list_lower_roman_period] = STATE(1006), - [sym__list_item_lower_roman_period] = STATE(725), - [sym__list_lower_roman_paren] = STATE(1006), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(1006), - [sym__list_item_lower_roman_parens] = STATE(736), - [sym__list_upper_roman_period] = STATE(1006), - [sym__list_item_upper_roman_period] = STATE(742), - [sym__list_upper_roman_paren] = STATE(1006), - [sym__list_item_upper_roman_paren] = STATE(743), - [sym__list_upper_roman_parens] = STATE(1006), - [sym__list_item_upper_roman_parens] = STATE(762), - [sym_list_item_content] = STATE(703), - [sym_table] = STATE(1127), - [sym__table_content] = STATE(310), - [sym_table_separator] = STATE(310), - [sym_table_row] = STATE(331), - [sym_footnote] = STATE(1127), - [sym_footnote_marker_begin] = STATE(1176), - [sym_div] = STATE(1127), - [sym__div_marker_begin] = STATE(1026), - [sym_code_block] = STATE(1127), - [sym_raw_block] = STATE(1127), - [sym_thematic_break] = STATE(1127), - [sym_block_quote] = STATE(1127), - [sym__block_quote_prefix] = STATE(231), - [sym_link_reference_definition] = STATE(1127), - [sym_block_attribute] = STATE(1127), - [sym__paragraph] = STATE(1127), - [sym__paragraph_content] = STATE(705), - [sym__paragraph_inline_content] = STATE(775), - [sym__inline] = STATE(616), - [sym__symbol_fallback] = STATE(297), - [aux_sym__list_dash_repeat1] = STATE(355), - [aux_sym__list_plus_repeat1] = STATE(356), - [aux_sym__list_star_repeat1] = STATE(362), - [aux_sym__list_task_repeat1] = STATE(346), - [aux_sym__list_definition_repeat1] = STATE(483), - [aux_sym__list_decimal_period_repeat1] = STATE(484), - [aux_sym__list_decimal_paren_repeat1] = STATE(485), - [aux_sym__list_decimal_parens_repeat1] = STATE(486), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(487), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(488), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(489), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(490), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(491), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(492), - [aux_sym__list_lower_roman_period_repeat1] = STATE(493), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(494), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(495), - [aux_sym__list_upper_roman_period_repeat1] = STATE(581), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(497), - [aux_sym_table_repeat1] = STATE(310), - [aux_sym__block_quote_prefix_repeat1] = STATE(253), - [aux_sym__inline_repeat1] = STATE(297), - [anon_sym_LBRACK] = ACTIONS(338), - [anon_sym_PIPE] = ACTIONS(340), - [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(342), - [anon_sym_DOT] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(13), - [aux_sym__inline_token1] = ACTIONS(13), - [anon_sym_LBRACE_DASH] = ACTIONS(13), - [anon_sym_POUND] = ACTIONS(13), - [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(362), - [sym__heading_begin] = ACTIONS(346), - [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(348), - [sym_list_marker_dash] = ACTIONS(25), - [sym_list_marker_star] = ACTIONS(27), - [sym_list_marker_plus] = ACTIONS(29), - [sym__list_marker_task_begin] = ACTIONS(31), - [sym_list_marker_definition] = ACTIONS(33), - [sym_list_marker_decimal_period] = ACTIONS(35), - [sym_list_marker_lower_alpha_period] = ACTIONS(37), - [sym_list_marker_upper_alpha_period] = ACTIONS(39), - [sym_list_marker_lower_roman_period] = ACTIONS(41), - [sym_list_marker_upper_roman_period] = ACTIONS(43), - [sym_list_marker_decimal_paren] = ACTIONS(45), - [sym_list_marker_lower_alpha_paren] = ACTIONS(47), - [sym_list_marker_upper_alpha_paren] = ACTIONS(49), - [sym_list_marker_lower_roman_paren] = ACTIONS(51), - [sym_list_marker_upper_roman_paren] = ACTIONS(53), - [sym_list_marker_decimal_parens] = ACTIONS(55), - [sym_list_marker_lower_alpha_parens] = ACTIONS(57), - [sym_list_marker_upper_alpha_parens] = ACTIONS(59), - [sym_list_marker_lower_roman_parens] = ACTIONS(61), - [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(350), - [sym__block_quote_continuation] = ACTIONS(352), - [sym__thematic_break_dash] = ACTIONS(354), - [sym__thematic_break_star] = ACTIONS(354), + [sym__block_with_heading] = STATE(1096), + [sym__block_element] = STATE(1096), + [sym_heading] = STATE(1096), + [sym_list] = STATE(1096), + [sym__list_dash] = STATE(974), + [sym__list_item_dash] = STATE(687), + [sym__list_plus] = STATE(974), + [sym__list_item_plus] = STATE(691), + [sym__list_star] = STATE(974), + [sym__list_item_star] = STATE(673), + [sym__list_task] = STATE(974), + [sym__list_item_task] = STATE(680), + [sym_list_marker_task] = STATE(48), + [sym__list_definition] = STATE(974), + [sym__list_item_definition] = STATE(804), + [sym__list_decimal_period] = STATE(974), + [sym__list_item_decimal_period] = STATE(837), + [sym__list_decimal_paren] = STATE(974), + [sym__list_item_decimal_paren] = STATE(703), + [sym__list_decimal_parens] = STATE(974), + [sym__list_item_decimal_parens] = STATE(715), + [sym__list_lower_alpha_period] = STATE(974), + [sym__list_item_lower_alpha_period] = STATE(739), + [sym__list_lower_alpha_paren] = STATE(974), + [sym__list_item_lower_alpha_paren] = STATE(754), + [sym__list_lower_alpha_parens] = STATE(974), + [sym__list_item_lower_alpha_parens] = STATE(755), + [sym__list_upper_alpha_period] = STATE(974), + [sym__list_item_upper_alpha_period] = STATE(758), + [sym__list_upper_alpha_paren] = STATE(974), + [sym__list_item_upper_alpha_paren] = STATE(759), + [sym__list_upper_alpha_parens] = STATE(974), + [sym__list_item_upper_alpha_parens] = STATE(766), + [sym__list_lower_roman_period] = STATE(974), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(974), + [sym__list_item_lower_roman_paren] = STATE(770), + [sym__list_lower_roman_parens] = STATE(974), + [sym__list_item_lower_roman_parens] = STATE(773), + [sym__list_upper_roman_period] = STATE(974), + [sym__list_item_upper_roman_period] = STATE(775), + [sym__list_upper_roman_paren] = STATE(974), + [sym__list_item_upper_roman_paren] = STATE(791), + [sym__list_upper_roman_parens] = STATE(974), + [sym__list_item_upper_roman_parens] = STATE(793), + [sym_list_item_content] = STATE(746), + [sym_table] = STATE(1096), + [sym__table_row] = STATE(248), + [sym_table_header] = STATE(248), + [sym_table_separator] = STATE(248), + [sym_table_row] = STATE(248), + [sym_footnote] = STATE(1096), + [sym_footnote_marker_begin] = STATE(1141), + [sym_div] = STATE(1096), + [sym__div_marker_begin] = STATE(1023), + [sym_code_block] = STATE(1096), + [sym_raw_block] = STATE(1096), + [sym_thematic_break] = STATE(1096), + [sym_block_quote] = STATE(1096), + [sym__block_quote_prefix] = STATE(222), + [sym_link_reference_definition] = STATE(1096), + [sym_block_attribute] = STATE(1096), + [sym__paragraph] = STATE(1096), + [sym__paragraph_content] = STATE(738), + [sym__paragraph_inline_content] = STATE(799), + [sym__inline] = STATE(629), + [sym__symbol_fallback] = STATE(285), + [aux_sym__list_dash_repeat1] = STATE(354), + [aux_sym__list_plus_repeat1] = STATE(355), + [aux_sym__list_star_repeat1] = STATE(356), + [aux_sym__list_task_repeat1] = STATE(335), + [aux_sym__list_definition_repeat1] = STATE(479), + [aux_sym__list_decimal_period_repeat1] = STATE(480), + [aux_sym__list_decimal_paren_repeat1] = STATE(481), + [aux_sym__list_decimal_parens_repeat1] = STATE(482), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(483), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(484), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(485), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(486), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(487), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(488), + [aux_sym__list_lower_roman_period_repeat1] = STATE(489), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(490), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(491), + [aux_sym__list_upper_roman_period_repeat1] = STATE(492), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(493), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(494), + [aux_sym_table_repeat1] = STATE(248), + [aux_sym__block_quote_prefix_repeat1] = STATE(235), + [aux_sym__inline_repeat1] = STATE(285), + [anon_sym_LBRACK] = ACTIONS(364), + [anon_sym_LBRACK_CARET] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(366), + [anon_sym_DOT] = ACTIONS(11), + [aux_sym_identifier_token1] = ACTIONS(11), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_PERCENT] = ACTIONS(11), + [sym__newline] = ACTIONS(392), + [sym__heading_begin] = ACTIONS(370), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(372), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(374), + [sym__block_quote_continuation] = ACTIONS(376), + [sym__thematic_break_dash] = ACTIONS(378), + [sym__thematic_break_star] = ACTIONS(378), + [sym__table_header_begin] = ACTIONS(380), + [sym__table_separator_begin] = ACTIONS(382), + [sym__table_row_begin] = ACTIONS(384), }, [27] = { - [sym__block_with_heading] = STATE(1078), - [sym__block_element] = STATE(1078), - [sym_heading] = STATE(1078), - [sym_list] = STATE(1078), - [sym__list_dash] = STATE(1006), - [sym__list_item_dash] = STATE(636), - [sym__list_plus] = STATE(1006), - [sym__list_item_plus] = STATE(637), - [sym__list_star] = STATE(1006), - [sym__list_item_star] = STATE(671), - [sym__list_task] = STATE(1006), - [sym__list_item_task] = STATE(691), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(1006), - [sym__list_item_definition] = STATE(896), - [sym__list_decimal_period] = STATE(1006), - [sym__list_item_decimal_period] = STATE(841), - [sym__list_decimal_paren] = STATE(1006), - [sym__list_item_decimal_paren] = STATE(796), - [sym__list_decimal_parens] = STATE(1006), - [sym__list_item_decimal_parens] = STATE(716), - [sym__list_lower_alpha_period] = STATE(1006), - [sym__list_item_lower_alpha_period] = STATE(722), - [sym__list_lower_alpha_paren] = STATE(1006), - [sym__list_item_lower_alpha_paren] = STATE(801), - [sym__list_lower_alpha_parens] = STATE(1006), - [sym__list_item_lower_alpha_parens] = STATE(813), - [sym__list_upper_alpha_period] = STATE(1006), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(1006), - [sym__list_item_upper_alpha_paren] = STATE(706), - [sym__list_upper_alpha_parens] = STATE(1006), - [sym__list_item_upper_alpha_parens] = STATE(707), - [sym__list_lower_roman_period] = STATE(1006), - [sym__list_item_lower_roman_period] = STATE(725), - [sym__list_lower_roman_paren] = STATE(1006), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(1006), - [sym__list_item_lower_roman_parens] = STATE(736), - [sym__list_upper_roman_period] = STATE(1006), - [sym__list_item_upper_roman_period] = STATE(742), - [sym__list_upper_roman_paren] = STATE(1006), - [sym__list_item_upper_roman_paren] = STATE(743), - [sym__list_upper_roman_parens] = STATE(1006), - [sym__list_item_upper_roman_parens] = STATE(762), - [sym_list_item_content] = STATE(585), - [sym_table] = STATE(1078), - [sym__table_content] = STATE(310), - [sym_table_separator] = STATE(310), - [sym_table_row] = STATE(331), - [sym_footnote] = STATE(1078), - [sym_footnote_marker_begin] = STATE(1176), - [sym_div] = STATE(1078), - [sym__div_marker_begin] = STATE(1026), - [sym_code_block] = STATE(1078), - [sym_raw_block] = STATE(1078), - [sym_thematic_break] = STATE(1078), - [sym_block_quote] = STATE(1078), - [sym__block_quote_prefix] = STATE(231), - [sym_link_reference_definition] = STATE(1078), - [sym_block_attribute] = STATE(1078), - [sym__paragraph] = STATE(1078), - [sym__paragraph_content] = STATE(705), - [sym__paragraph_inline_content] = STATE(775), - [sym__inline] = STATE(616), - [sym__symbol_fallback] = STATE(297), - [aux_sym__list_dash_repeat1] = STATE(355), - [aux_sym__list_plus_repeat1] = STATE(356), - [aux_sym__list_star_repeat1] = STATE(362), - [aux_sym__list_task_repeat1] = STATE(346), - [aux_sym__list_definition_repeat1] = STATE(483), - [aux_sym__list_decimal_period_repeat1] = STATE(484), - [aux_sym__list_decimal_paren_repeat1] = STATE(485), - [aux_sym__list_decimal_parens_repeat1] = STATE(486), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(487), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(488), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(489), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(490), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(491), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(492), - [aux_sym__list_lower_roman_period_repeat1] = STATE(493), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(494), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(495), - [aux_sym__list_upper_roman_period_repeat1] = STATE(581), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(497), - [aux_sym_table_repeat1] = STATE(310), - [aux_sym__block_quote_prefix_repeat1] = STATE(253), - [aux_sym__inline_repeat1] = STATE(297), - [anon_sym_LBRACK] = ACTIONS(338), - [anon_sym_PIPE] = ACTIONS(340), - [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(342), - [anon_sym_DOT] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(13), - [aux_sym__inline_token1] = ACTIONS(13), - [anon_sym_LBRACE_DASH] = ACTIONS(13), - [anon_sym_POUND] = ACTIONS(13), - [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(364), - [sym__heading_begin] = ACTIONS(346), - [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(348), - [sym_list_marker_dash] = ACTIONS(25), - [sym_list_marker_star] = ACTIONS(27), - [sym_list_marker_plus] = ACTIONS(29), - [sym__list_marker_task_begin] = ACTIONS(31), - [sym_list_marker_definition] = ACTIONS(33), - [sym_list_marker_decimal_period] = ACTIONS(35), - [sym_list_marker_lower_alpha_period] = ACTIONS(37), - [sym_list_marker_upper_alpha_period] = ACTIONS(39), - [sym_list_marker_lower_roman_period] = ACTIONS(41), - [sym_list_marker_upper_roman_period] = ACTIONS(43), - [sym_list_marker_decimal_paren] = ACTIONS(45), - [sym_list_marker_lower_alpha_paren] = ACTIONS(47), - [sym_list_marker_upper_alpha_paren] = ACTIONS(49), - [sym_list_marker_lower_roman_paren] = ACTIONS(51), - [sym_list_marker_upper_roman_paren] = ACTIONS(53), - [sym_list_marker_decimal_parens] = ACTIONS(55), - [sym_list_marker_lower_alpha_parens] = ACTIONS(57), - [sym_list_marker_upper_alpha_parens] = ACTIONS(59), - [sym_list_marker_lower_roman_parens] = ACTIONS(61), - [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(350), - [sym__block_quote_continuation] = ACTIONS(352), - [sym__thematic_break_dash] = ACTIONS(354), - [sym__thematic_break_star] = ACTIONS(354), + [sym__block_with_heading] = STATE(951), + [sym__block_element] = STATE(951), + [sym_heading] = STATE(951), + [sym_list] = STATE(951), + [sym__list_dash] = STATE(974), + [sym__list_item_dash] = STATE(687), + [sym__list_plus] = STATE(974), + [sym__list_item_plus] = STATE(691), + [sym__list_star] = STATE(974), + [sym__list_item_star] = STATE(673), + [sym__list_task] = STATE(974), + [sym__list_item_task] = STATE(680), + [sym_list_marker_task] = STATE(48), + [sym__list_definition] = STATE(974), + [sym__list_item_definition] = STATE(804), + [sym__list_decimal_period] = STATE(974), + [sym__list_item_decimal_period] = STATE(837), + [sym__list_decimal_paren] = STATE(974), + [sym__list_item_decimal_paren] = STATE(703), + [sym__list_decimal_parens] = STATE(974), + [sym__list_item_decimal_parens] = STATE(715), + [sym__list_lower_alpha_period] = STATE(974), + [sym__list_item_lower_alpha_period] = STATE(739), + [sym__list_lower_alpha_paren] = STATE(974), + [sym__list_item_lower_alpha_paren] = STATE(754), + [sym__list_lower_alpha_parens] = STATE(974), + [sym__list_item_lower_alpha_parens] = STATE(755), + [sym__list_upper_alpha_period] = STATE(974), + [sym__list_item_upper_alpha_period] = STATE(758), + [sym__list_upper_alpha_paren] = STATE(974), + [sym__list_item_upper_alpha_paren] = STATE(759), + [sym__list_upper_alpha_parens] = STATE(974), + [sym__list_item_upper_alpha_parens] = STATE(766), + [sym__list_lower_roman_period] = STATE(974), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(974), + [sym__list_item_lower_roman_paren] = STATE(770), + [sym__list_lower_roman_parens] = STATE(974), + [sym__list_item_lower_roman_parens] = STATE(773), + [sym__list_upper_roman_period] = STATE(974), + [sym__list_item_upper_roman_period] = STATE(775), + [sym__list_upper_roman_paren] = STATE(974), + [sym__list_item_upper_roman_paren] = STATE(791), + [sym__list_upper_roman_parens] = STATE(974), + [sym__list_item_upper_roman_parens] = STATE(793), + [sym_list_item_content] = STATE(584), + [sym_table] = STATE(951), + [sym__table_row] = STATE(248), + [sym_table_header] = STATE(248), + [sym_table_separator] = STATE(248), + [sym_table_row] = STATE(248), + [sym_footnote] = STATE(951), + [sym_footnote_marker_begin] = STATE(1141), + [sym_div] = STATE(951), + [sym__div_marker_begin] = STATE(1023), + [sym_code_block] = STATE(951), + [sym_raw_block] = STATE(951), + [sym_thematic_break] = STATE(951), + [sym_block_quote] = STATE(951), + [sym__block_quote_prefix] = STATE(222), + [sym_link_reference_definition] = STATE(951), + [sym_block_attribute] = STATE(951), + [sym__paragraph] = STATE(951), + [sym__paragraph_content] = STATE(738), + [sym__paragraph_inline_content] = STATE(799), + [sym__inline] = STATE(629), + [sym__symbol_fallback] = STATE(285), + [aux_sym__list_dash_repeat1] = STATE(354), + [aux_sym__list_plus_repeat1] = STATE(355), + [aux_sym__list_star_repeat1] = STATE(356), + [aux_sym__list_task_repeat1] = STATE(335), + [aux_sym__list_definition_repeat1] = STATE(479), + [aux_sym__list_decimal_period_repeat1] = STATE(480), + [aux_sym__list_decimal_paren_repeat1] = STATE(481), + [aux_sym__list_decimal_parens_repeat1] = STATE(482), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(483), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(484), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(485), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(486), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(487), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(488), + [aux_sym__list_lower_roman_period_repeat1] = STATE(489), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(490), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(491), + [aux_sym__list_upper_roman_period_repeat1] = STATE(492), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(493), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(494), + [aux_sym_table_repeat1] = STATE(248), + [aux_sym__block_quote_prefix_repeat1] = STATE(235), + [aux_sym__inline_repeat1] = STATE(285), + [anon_sym_LBRACK] = ACTIONS(364), + [anon_sym_LBRACK_CARET] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(366), + [anon_sym_DOT] = ACTIONS(11), + [aux_sym_identifier_token1] = ACTIONS(11), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_PERCENT] = ACTIONS(11), + [sym__newline] = ACTIONS(390), + [sym__heading_begin] = ACTIONS(370), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(372), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(374), + [sym__block_quote_continuation] = ACTIONS(376), + [sym__thematic_break_dash] = ACTIONS(378), + [sym__thematic_break_star] = ACTIONS(378), + [sym__table_header_begin] = ACTIONS(380), + [sym__table_separator_begin] = ACTIONS(382), + [sym__table_row_begin] = ACTIONS(384), }, [28] = { - [sym__block_with_heading] = STATE(1028), - [sym__block_element] = STATE(1028), - [sym_heading] = STATE(1028), - [sym_list] = STATE(1028), - [sym__list_dash] = STATE(1006), - [sym__list_item_dash] = STATE(636), - [sym__list_plus] = STATE(1006), - [sym__list_item_plus] = STATE(637), - [sym__list_star] = STATE(1006), - [sym__list_item_star] = STATE(671), - [sym__list_task] = STATE(1006), - [sym__list_item_task] = STATE(691), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(1006), - [sym__list_item_definition] = STATE(896), - [sym__list_decimal_period] = STATE(1006), - [sym__list_item_decimal_period] = STATE(841), - [sym__list_decimal_paren] = STATE(1006), - [sym__list_item_decimal_paren] = STATE(796), - [sym__list_decimal_parens] = STATE(1006), - [sym__list_item_decimal_parens] = STATE(716), - [sym__list_lower_alpha_period] = STATE(1006), - [sym__list_item_lower_alpha_period] = STATE(722), - [sym__list_lower_alpha_paren] = STATE(1006), - [sym__list_item_lower_alpha_paren] = STATE(801), - [sym__list_lower_alpha_parens] = STATE(1006), - [sym__list_item_lower_alpha_parens] = STATE(813), - [sym__list_upper_alpha_period] = STATE(1006), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(1006), - [sym__list_item_upper_alpha_paren] = STATE(706), - [sym__list_upper_alpha_parens] = STATE(1006), - [sym__list_item_upper_alpha_parens] = STATE(707), - [sym__list_lower_roman_period] = STATE(1006), - [sym__list_item_lower_roman_period] = STATE(725), - [sym__list_lower_roman_paren] = STATE(1006), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(1006), - [sym__list_item_lower_roman_parens] = STATE(736), - [sym__list_upper_roman_period] = STATE(1006), - [sym__list_item_upper_roman_period] = STATE(742), - [sym__list_upper_roman_paren] = STATE(1006), - [sym__list_item_upper_roman_paren] = STATE(743), - [sym__list_upper_roman_parens] = STATE(1006), - [sym__list_item_upper_roman_parens] = STATE(762), - [sym_list_item_content] = STATE(692), - [sym_table] = STATE(1028), - [sym__table_content] = STATE(310), - [sym_table_separator] = STATE(310), - [sym_table_row] = STATE(331), - [sym_footnote] = STATE(1028), - [sym_footnote_marker_begin] = STATE(1176), - [sym_div] = STATE(1028), - [sym__div_marker_begin] = STATE(1026), - [sym_code_block] = STATE(1028), - [sym_raw_block] = STATE(1028), - [sym_thematic_break] = STATE(1028), - [sym_block_quote] = STATE(1028), - [sym__block_quote_prefix] = STATE(231), - [sym_link_reference_definition] = STATE(1028), - [sym_block_attribute] = STATE(1028), - [sym__paragraph] = STATE(1028), - [sym__paragraph_content] = STATE(705), - [sym__paragraph_inline_content] = STATE(775), - [sym__inline] = STATE(616), - [sym__symbol_fallback] = STATE(297), - [aux_sym__list_dash_repeat1] = STATE(355), - [aux_sym__list_plus_repeat1] = STATE(356), - [aux_sym__list_star_repeat1] = STATE(362), - [aux_sym__list_task_repeat1] = STATE(346), - [aux_sym__list_definition_repeat1] = STATE(483), - [aux_sym__list_decimal_period_repeat1] = STATE(484), - [aux_sym__list_decimal_paren_repeat1] = STATE(485), - [aux_sym__list_decimal_parens_repeat1] = STATE(486), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(487), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(488), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(489), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(490), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(491), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(492), - [aux_sym__list_lower_roman_period_repeat1] = STATE(493), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(494), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(495), - [aux_sym__list_upper_roman_period_repeat1] = STATE(581), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(497), - [aux_sym_table_repeat1] = STATE(310), - [aux_sym__block_quote_prefix_repeat1] = STATE(253), - [aux_sym__inline_repeat1] = STATE(297), - [anon_sym_LBRACK] = ACTIONS(338), - [anon_sym_PIPE] = ACTIONS(340), - [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(342), - [anon_sym_DOT] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(13), - [aux_sym__inline_token1] = ACTIONS(13), - [anon_sym_LBRACE_DASH] = ACTIONS(13), - [anon_sym_POUND] = ACTIONS(13), - [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(344), - [sym__heading_begin] = ACTIONS(346), - [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(348), - [sym_list_marker_dash] = ACTIONS(25), - [sym_list_marker_star] = ACTIONS(27), - [sym_list_marker_plus] = ACTIONS(29), - [sym__list_marker_task_begin] = ACTIONS(31), - [sym_list_marker_definition] = ACTIONS(33), - [sym_list_marker_decimal_period] = ACTIONS(35), - [sym_list_marker_lower_alpha_period] = ACTIONS(37), - [sym_list_marker_upper_alpha_period] = ACTIONS(39), - [sym_list_marker_lower_roman_period] = ACTIONS(41), - [sym_list_marker_upper_roman_period] = ACTIONS(43), - [sym_list_marker_decimal_paren] = ACTIONS(45), - [sym_list_marker_lower_alpha_paren] = ACTIONS(47), - [sym_list_marker_upper_alpha_paren] = ACTIONS(49), - [sym_list_marker_lower_roman_paren] = ACTIONS(51), - [sym_list_marker_upper_roman_paren] = ACTIONS(53), - [sym_list_marker_decimal_parens] = ACTIONS(55), - [sym_list_marker_lower_alpha_parens] = ACTIONS(57), - [sym_list_marker_upper_alpha_parens] = ACTIONS(59), - [sym_list_marker_lower_roman_parens] = ACTIONS(61), - [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(350), - [sym__block_quote_continuation] = ACTIONS(352), - [sym__thematic_break_dash] = ACTIONS(354), - [sym__thematic_break_star] = ACTIONS(354), + [sym__block_with_heading] = STATE(1025), + [sym__block_element] = STATE(1025), + [sym_heading] = STATE(1025), + [sym_list] = STATE(1025), + [sym__list_dash] = STATE(974), + [sym__list_item_dash] = STATE(687), + [sym__list_plus] = STATE(974), + [sym__list_item_plus] = STATE(691), + [sym__list_star] = STATE(974), + [sym__list_item_star] = STATE(673), + [sym__list_task] = STATE(974), + [sym__list_item_task] = STATE(680), + [sym_list_marker_task] = STATE(48), + [sym__list_definition] = STATE(974), + [sym__list_item_definition] = STATE(804), + [sym__list_decimal_period] = STATE(974), + [sym__list_item_decimal_period] = STATE(837), + [sym__list_decimal_paren] = STATE(974), + [sym__list_item_decimal_paren] = STATE(703), + [sym__list_decimal_parens] = STATE(974), + [sym__list_item_decimal_parens] = STATE(715), + [sym__list_lower_alpha_period] = STATE(974), + [sym__list_item_lower_alpha_period] = STATE(739), + [sym__list_lower_alpha_paren] = STATE(974), + [sym__list_item_lower_alpha_paren] = STATE(754), + [sym__list_lower_alpha_parens] = STATE(974), + [sym__list_item_lower_alpha_parens] = STATE(755), + [sym__list_upper_alpha_period] = STATE(974), + [sym__list_item_upper_alpha_period] = STATE(758), + [sym__list_upper_alpha_paren] = STATE(974), + [sym__list_item_upper_alpha_paren] = STATE(759), + [sym__list_upper_alpha_parens] = STATE(974), + [sym__list_item_upper_alpha_parens] = STATE(766), + [sym__list_lower_roman_period] = STATE(974), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(974), + [sym__list_item_lower_roman_paren] = STATE(770), + [sym__list_lower_roman_parens] = STATE(974), + [sym__list_item_lower_roman_parens] = STATE(773), + [sym__list_upper_roman_period] = STATE(974), + [sym__list_item_upper_roman_period] = STATE(775), + [sym__list_upper_roman_paren] = STATE(974), + [sym__list_item_upper_roman_paren] = STATE(791), + [sym__list_upper_roman_parens] = STATE(974), + [sym__list_item_upper_roman_parens] = STATE(793), + [sym_list_item_content] = STATE(585), + [sym_table] = STATE(1025), + [sym__table_row] = STATE(248), + [sym_table_header] = STATE(248), + [sym_table_separator] = STATE(248), + [sym_table_row] = STATE(248), + [sym_footnote] = STATE(1025), + [sym_footnote_marker_begin] = STATE(1141), + [sym_div] = STATE(1025), + [sym__div_marker_begin] = STATE(1023), + [sym_code_block] = STATE(1025), + [sym_raw_block] = STATE(1025), + [sym_thematic_break] = STATE(1025), + [sym_block_quote] = STATE(1025), + [sym__block_quote_prefix] = STATE(222), + [sym_link_reference_definition] = STATE(1025), + [sym_block_attribute] = STATE(1025), + [sym__paragraph] = STATE(1025), + [sym__paragraph_content] = STATE(738), + [sym__paragraph_inline_content] = STATE(799), + [sym__inline] = STATE(629), + [sym__symbol_fallback] = STATE(285), + [aux_sym__list_dash_repeat1] = STATE(354), + [aux_sym__list_plus_repeat1] = STATE(355), + [aux_sym__list_star_repeat1] = STATE(356), + [aux_sym__list_task_repeat1] = STATE(335), + [aux_sym__list_definition_repeat1] = STATE(479), + [aux_sym__list_decimal_period_repeat1] = STATE(480), + [aux_sym__list_decimal_paren_repeat1] = STATE(481), + [aux_sym__list_decimal_parens_repeat1] = STATE(482), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(483), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(484), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(485), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(486), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(487), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(488), + [aux_sym__list_lower_roman_period_repeat1] = STATE(489), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(490), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(491), + [aux_sym__list_upper_roman_period_repeat1] = STATE(492), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(493), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(494), + [aux_sym_table_repeat1] = STATE(248), + [aux_sym__block_quote_prefix_repeat1] = STATE(235), + [aux_sym__inline_repeat1] = STATE(285), + [anon_sym_LBRACK] = ACTIONS(364), + [anon_sym_LBRACK_CARET] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(366), + [anon_sym_DOT] = ACTIONS(11), + [aux_sym_identifier_token1] = ACTIONS(11), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_PERCENT] = ACTIONS(11), + [sym__newline] = ACTIONS(394), + [sym__heading_begin] = ACTIONS(370), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(372), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(374), + [sym__block_quote_continuation] = ACTIONS(376), + [sym__thematic_break_dash] = ACTIONS(378), + [sym__thematic_break_star] = ACTIONS(378), + [sym__table_header_begin] = ACTIONS(380), + [sym__table_separator_begin] = ACTIONS(382), + [sym__table_row_begin] = ACTIONS(384), }, [29] = { - [sym__block_with_heading] = STATE(1052), - [sym__block_element] = STATE(1052), - [sym_heading] = STATE(1052), - [sym_list] = STATE(1052), - [sym__list_dash] = STATE(1006), - [sym__list_item_dash] = STATE(636), - [sym__list_plus] = STATE(1006), - [sym__list_item_plus] = STATE(637), - [sym__list_star] = STATE(1006), - [sym__list_item_star] = STATE(671), - [sym__list_task] = STATE(1006), - [sym__list_item_task] = STATE(691), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(1006), - [sym__list_item_definition] = STATE(896), - [sym__list_decimal_period] = STATE(1006), - [sym__list_item_decimal_period] = STATE(841), - [sym__list_decimal_paren] = STATE(1006), - [sym__list_item_decimal_paren] = STATE(796), - [sym__list_decimal_parens] = STATE(1006), - [sym__list_item_decimal_parens] = STATE(716), - [sym__list_lower_alpha_period] = STATE(1006), - [sym__list_item_lower_alpha_period] = STATE(722), - [sym__list_lower_alpha_paren] = STATE(1006), - [sym__list_item_lower_alpha_paren] = STATE(801), - [sym__list_lower_alpha_parens] = STATE(1006), - [sym__list_item_lower_alpha_parens] = STATE(813), - [sym__list_upper_alpha_period] = STATE(1006), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(1006), - [sym__list_item_upper_alpha_paren] = STATE(706), - [sym__list_upper_alpha_parens] = STATE(1006), - [sym__list_item_upper_alpha_parens] = STATE(707), - [sym__list_lower_roman_period] = STATE(1006), - [sym__list_item_lower_roman_period] = STATE(725), - [sym__list_lower_roman_paren] = STATE(1006), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(1006), - [sym__list_item_lower_roman_parens] = STATE(736), - [sym__list_upper_roman_period] = STATE(1006), - [sym__list_item_upper_roman_period] = STATE(742), - [sym__list_upper_roman_paren] = STATE(1006), - [sym__list_item_upper_roman_paren] = STATE(743), - [sym__list_upper_roman_parens] = STATE(1006), - [sym__list_item_upper_roman_parens] = STATE(762), - [sym_list_item_content] = STATE(590), - [sym_table] = STATE(1052), - [sym__table_content] = STATE(310), - [sym_table_separator] = STATE(310), - [sym_table_row] = STATE(331), - [sym_footnote] = STATE(1052), - [sym_footnote_marker_begin] = STATE(1176), - [sym_div] = STATE(1052), - [sym__div_marker_begin] = STATE(1026), - [sym_code_block] = STATE(1052), - [sym_raw_block] = STATE(1052), - [sym_thematic_break] = STATE(1052), - [sym_block_quote] = STATE(1052), - [sym__block_quote_prefix] = STATE(231), - [sym_link_reference_definition] = STATE(1052), - [sym_block_attribute] = STATE(1052), - [sym__paragraph] = STATE(1052), - [sym__paragraph_content] = STATE(705), - [sym__paragraph_inline_content] = STATE(775), - [sym__inline] = STATE(616), - [sym__symbol_fallback] = STATE(297), - [aux_sym__list_dash_repeat1] = STATE(355), - [aux_sym__list_plus_repeat1] = STATE(356), - [aux_sym__list_star_repeat1] = STATE(362), - [aux_sym__list_task_repeat1] = STATE(346), - [aux_sym__list_definition_repeat1] = STATE(483), - [aux_sym__list_decimal_period_repeat1] = STATE(484), - [aux_sym__list_decimal_paren_repeat1] = STATE(485), - [aux_sym__list_decimal_parens_repeat1] = STATE(486), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(487), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(488), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(489), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(490), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(491), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(492), - [aux_sym__list_lower_roman_period_repeat1] = STATE(493), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(494), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(495), - [aux_sym__list_upper_roman_period_repeat1] = STATE(581), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(497), - [aux_sym_table_repeat1] = STATE(310), - [aux_sym__block_quote_prefix_repeat1] = STATE(253), - [aux_sym__inline_repeat1] = STATE(297), - [anon_sym_LBRACK] = ACTIONS(338), - [anon_sym_PIPE] = ACTIONS(340), - [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(342), - [anon_sym_DOT] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(13), - [aux_sym__inline_token1] = ACTIONS(13), - [anon_sym_LBRACE_DASH] = ACTIONS(13), - [anon_sym_POUND] = ACTIONS(13), - [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(366), - [sym__heading_begin] = ACTIONS(346), - [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(348), - [sym_list_marker_dash] = ACTIONS(25), - [sym_list_marker_star] = ACTIONS(27), - [sym_list_marker_plus] = ACTIONS(29), - [sym__list_marker_task_begin] = ACTIONS(31), - [sym_list_marker_definition] = ACTIONS(33), - [sym_list_marker_decimal_period] = ACTIONS(35), - [sym_list_marker_lower_alpha_period] = ACTIONS(37), - [sym_list_marker_upper_alpha_period] = ACTIONS(39), - [sym_list_marker_lower_roman_period] = ACTIONS(41), - [sym_list_marker_upper_roman_period] = ACTIONS(43), - [sym_list_marker_decimal_paren] = ACTIONS(45), - [sym_list_marker_lower_alpha_paren] = ACTIONS(47), - [sym_list_marker_upper_alpha_paren] = ACTIONS(49), - [sym_list_marker_lower_roman_paren] = ACTIONS(51), - [sym_list_marker_upper_roman_paren] = ACTIONS(53), - [sym_list_marker_decimal_parens] = ACTIONS(55), - [sym_list_marker_lower_alpha_parens] = ACTIONS(57), - [sym_list_marker_upper_alpha_parens] = ACTIONS(59), - [sym_list_marker_lower_roman_parens] = ACTIONS(61), - [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(350), - [sym__block_quote_continuation] = ACTIONS(352), - [sym__thematic_break_dash] = ACTIONS(354), - [sym__thematic_break_star] = ACTIONS(354), + [sym__block_with_heading] = STATE(1044), + [sym__block_element] = STATE(1044), + [sym_heading] = STATE(1044), + [sym_list] = STATE(1044), + [sym__list_dash] = STATE(974), + [sym__list_item_dash] = STATE(687), + [sym__list_plus] = STATE(974), + [sym__list_item_plus] = STATE(691), + [sym__list_star] = STATE(974), + [sym__list_item_star] = STATE(673), + [sym__list_task] = STATE(974), + [sym__list_item_task] = STATE(680), + [sym_list_marker_task] = STATE(48), + [sym__list_definition] = STATE(974), + [sym__list_item_definition] = STATE(804), + [sym__list_decimal_period] = STATE(974), + [sym__list_item_decimal_period] = STATE(837), + [sym__list_decimal_paren] = STATE(974), + [sym__list_item_decimal_paren] = STATE(703), + [sym__list_decimal_parens] = STATE(974), + [sym__list_item_decimal_parens] = STATE(715), + [sym__list_lower_alpha_period] = STATE(974), + [sym__list_item_lower_alpha_period] = STATE(739), + [sym__list_lower_alpha_paren] = STATE(974), + [sym__list_item_lower_alpha_paren] = STATE(754), + [sym__list_lower_alpha_parens] = STATE(974), + [sym__list_item_lower_alpha_parens] = STATE(755), + [sym__list_upper_alpha_period] = STATE(974), + [sym__list_item_upper_alpha_period] = STATE(758), + [sym__list_upper_alpha_paren] = STATE(974), + [sym__list_item_upper_alpha_paren] = STATE(759), + [sym__list_upper_alpha_parens] = STATE(974), + [sym__list_item_upper_alpha_parens] = STATE(766), + [sym__list_lower_roman_period] = STATE(974), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(974), + [sym__list_item_lower_roman_paren] = STATE(770), + [sym__list_lower_roman_parens] = STATE(974), + [sym__list_item_lower_roman_parens] = STATE(773), + [sym__list_upper_roman_period] = STATE(974), + [sym__list_item_upper_roman_period] = STATE(775), + [sym__list_upper_roman_paren] = STATE(974), + [sym__list_item_upper_roman_paren] = STATE(791), + [sym__list_upper_roman_parens] = STATE(974), + [sym__list_item_upper_roman_parens] = STATE(793), + [sym_list_item_content] = STATE(587), + [sym_table] = STATE(1044), + [sym__table_row] = STATE(248), + [sym_table_header] = STATE(248), + [sym_table_separator] = STATE(248), + [sym_table_row] = STATE(248), + [sym_footnote] = STATE(1044), + [sym_footnote_marker_begin] = STATE(1141), + [sym_div] = STATE(1044), + [sym__div_marker_begin] = STATE(1023), + [sym_code_block] = STATE(1044), + [sym_raw_block] = STATE(1044), + [sym_thematic_break] = STATE(1044), + [sym_block_quote] = STATE(1044), + [sym__block_quote_prefix] = STATE(222), + [sym_link_reference_definition] = STATE(1044), + [sym_block_attribute] = STATE(1044), + [sym__paragraph] = STATE(1044), + [sym__paragraph_content] = STATE(738), + [sym__paragraph_inline_content] = STATE(799), + [sym__inline] = STATE(629), + [sym__symbol_fallback] = STATE(285), + [aux_sym__list_dash_repeat1] = STATE(354), + [aux_sym__list_plus_repeat1] = STATE(355), + [aux_sym__list_star_repeat1] = STATE(356), + [aux_sym__list_task_repeat1] = STATE(335), + [aux_sym__list_definition_repeat1] = STATE(479), + [aux_sym__list_decimal_period_repeat1] = STATE(480), + [aux_sym__list_decimal_paren_repeat1] = STATE(481), + [aux_sym__list_decimal_parens_repeat1] = STATE(482), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(483), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(484), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(485), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(486), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(487), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(488), + [aux_sym__list_lower_roman_period_repeat1] = STATE(489), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(490), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(491), + [aux_sym__list_upper_roman_period_repeat1] = STATE(492), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(493), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(494), + [aux_sym_table_repeat1] = STATE(248), + [aux_sym__block_quote_prefix_repeat1] = STATE(235), + [aux_sym__inline_repeat1] = STATE(285), + [anon_sym_LBRACK] = ACTIONS(364), + [anon_sym_LBRACK_CARET] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(366), + [anon_sym_DOT] = ACTIONS(11), + [aux_sym_identifier_token1] = ACTIONS(11), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_PERCENT] = ACTIONS(11), + [sym__newline] = ACTIONS(396), + [sym__heading_begin] = ACTIONS(370), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(372), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(374), + [sym__block_quote_continuation] = ACTIONS(376), + [sym__thematic_break_dash] = ACTIONS(378), + [sym__thematic_break_star] = ACTIONS(378), + [sym__table_header_begin] = ACTIONS(380), + [sym__table_separator_begin] = ACTIONS(382), + [sym__table_row_begin] = ACTIONS(384), }, [30] = { - [sym__block_with_heading] = STATE(1131), - [sym__block_element] = STATE(1131), - [sym_heading] = STATE(1131), - [sym_list] = STATE(1131), - [sym__list_dash] = STATE(1006), - [sym__list_item_dash] = STATE(636), - [sym__list_plus] = STATE(1006), - [sym__list_item_plus] = STATE(637), - [sym__list_star] = STATE(1006), - [sym__list_item_star] = STATE(671), - [sym__list_task] = STATE(1006), - [sym__list_item_task] = STATE(691), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(1006), - [sym__list_item_definition] = STATE(896), - [sym__list_decimal_period] = STATE(1006), - [sym__list_item_decimal_period] = STATE(841), - [sym__list_decimal_paren] = STATE(1006), - [sym__list_item_decimal_paren] = STATE(796), - [sym__list_decimal_parens] = STATE(1006), - [sym__list_item_decimal_parens] = STATE(716), - [sym__list_lower_alpha_period] = STATE(1006), - [sym__list_item_lower_alpha_period] = STATE(722), - [sym__list_lower_alpha_paren] = STATE(1006), - [sym__list_item_lower_alpha_paren] = STATE(801), - [sym__list_lower_alpha_parens] = STATE(1006), - [sym__list_item_lower_alpha_parens] = STATE(813), - [sym__list_upper_alpha_period] = STATE(1006), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(1006), - [sym__list_item_upper_alpha_paren] = STATE(706), - [sym__list_upper_alpha_parens] = STATE(1006), - [sym__list_item_upper_alpha_parens] = STATE(707), - [sym__list_lower_roman_period] = STATE(1006), - [sym__list_item_lower_roman_period] = STATE(725), - [sym__list_lower_roman_paren] = STATE(1006), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(1006), - [sym__list_item_lower_roman_parens] = STATE(736), - [sym__list_upper_roman_period] = STATE(1006), - [sym__list_item_upper_roman_period] = STATE(742), - [sym__list_upper_roman_paren] = STATE(1006), - [sym__list_item_upper_roman_paren] = STATE(743), - [sym__list_upper_roman_parens] = STATE(1006), - [sym__list_item_upper_roman_parens] = STATE(762), - [sym_list_item_content] = STATE(591), - [sym_table] = STATE(1131), - [sym__table_content] = STATE(310), - [sym_table_separator] = STATE(310), - [sym_table_row] = STATE(331), - [sym_footnote] = STATE(1131), - [sym_footnote_marker_begin] = STATE(1176), - [sym_div] = STATE(1131), - [sym__div_marker_begin] = STATE(1026), - [sym_code_block] = STATE(1131), - [sym_raw_block] = STATE(1131), - [sym_thematic_break] = STATE(1131), - [sym_block_quote] = STATE(1131), - [sym__block_quote_prefix] = STATE(231), - [sym_link_reference_definition] = STATE(1131), - [sym_block_attribute] = STATE(1131), - [sym__paragraph] = STATE(1131), - [sym__paragraph_content] = STATE(705), - [sym__paragraph_inline_content] = STATE(775), - [sym__inline] = STATE(616), - [sym__symbol_fallback] = STATE(297), - [aux_sym__list_dash_repeat1] = STATE(355), - [aux_sym__list_plus_repeat1] = STATE(356), - [aux_sym__list_star_repeat1] = STATE(362), - [aux_sym__list_task_repeat1] = STATE(346), - [aux_sym__list_definition_repeat1] = STATE(483), - [aux_sym__list_decimal_period_repeat1] = STATE(484), - [aux_sym__list_decimal_paren_repeat1] = STATE(485), - [aux_sym__list_decimal_parens_repeat1] = STATE(486), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(487), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(488), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(489), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(490), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(491), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(492), - [aux_sym__list_lower_roman_period_repeat1] = STATE(493), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(494), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(495), - [aux_sym__list_upper_roman_period_repeat1] = STATE(581), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(497), - [aux_sym_table_repeat1] = STATE(310), - [aux_sym__block_quote_prefix_repeat1] = STATE(253), - [aux_sym__inline_repeat1] = STATE(297), - [anon_sym_LBRACK] = ACTIONS(338), - [anon_sym_PIPE] = ACTIONS(340), - [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(342), - [anon_sym_DOT] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(13), - [aux_sym__inline_token1] = ACTIONS(13), - [anon_sym_LBRACE_DASH] = ACTIONS(13), - [anon_sym_POUND] = ACTIONS(13), - [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(368), - [sym__heading_begin] = ACTIONS(346), - [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(348), - [sym_list_marker_dash] = ACTIONS(25), - [sym_list_marker_star] = ACTIONS(27), - [sym_list_marker_plus] = ACTIONS(29), - [sym__list_marker_task_begin] = ACTIONS(31), - [sym_list_marker_definition] = ACTIONS(33), - [sym_list_marker_decimal_period] = ACTIONS(35), - [sym_list_marker_lower_alpha_period] = ACTIONS(37), - [sym_list_marker_upper_alpha_period] = ACTIONS(39), - [sym_list_marker_lower_roman_period] = ACTIONS(41), - [sym_list_marker_upper_roman_period] = ACTIONS(43), - [sym_list_marker_decimal_paren] = ACTIONS(45), - [sym_list_marker_lower_alpha_paren] = ACTIONS(47), - [sym_list_marker_upper_alpha_paren] = ACTIONS(49), - [sym_list_marker_lower_roman_paren] = ACTIONS(51), - [sym_list_marker_upper_roman_paren] = ACTIONS(53), - [sym_list_marker_decimal_parens] = ACTIONS(55), - [sym_list_marker_lower_alpha_parens] = ACTIONS(57), - [sym_list_marker_upper_alpha_parens] = ACTIONS(59), - [sym_list_marker_lower_roman_parens] = ACTIONS(61), - [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(350), - [sym__block_quote_continuation] = ACTIONS(352), - [sym__thematic_break_dash] = ACTIONS(354), - [sym__thematic_break_star] = ACTIONS(354), + [sym__block_with_heading] = STATE(1108), + [sym__block_element] = STATE(1108), + [sym_heading] = STATE(1108), + [sym_list] = STATE(1108), + [sym__list_dash] = STATE(974), + [sym__list_item_dash] = STATE(687), + [sym__list_plus] = STATE(974), + [sym__list_item_plus] = STATE(691), + [sym__list_star] = STATE(974), + [sym__list_item_star] = STATE(673), + [sym__list_task] = STATE(974), + [sym__list_item_task] = STATE(680), + [sym_list_marker_task] = STATE(48), + [sym__list_definition] = STATE(974), + [sym__list_item_definition] = STATE(804), + [sym__list_decimal_period] = STATE(974), + [sym__list_item_decimal_period] = STATE(837), + [sym__list_decimal_paren] = STATE(974), + [sym__list_item_decimal_paren] = STATE(703), + [sym__list_decimal_parens] = STATE(974), + [sym__list_item_decimal_parens] = STATE(715), + [sym__list_lower_alpha_period] = STATE(974), + [sym__list_item_lower_alpha_period] = STATE(739), + [sym__list_lower_alpha_paren] = STATE(974), + [sym__list_item_lower_alpha_paren] = STATE(754), + [sym__list_lower_alpha_parens] = STATE(974), + [sym__list_item_lower_alpha_parens] = STATE(755), + [sym__list_upper_alpha_period] = STATE(974), + [sym__list_item_upper_alpha_period] = STATE(758), + [sym__list_upper_alpha_paren] = STATE(974), + [sym__list_item_upper_alpha_paren] = STATE(759), + [sym__list_upper_alpha_parens] = STATE(974), + [sym__list_item_upper_alpha_parens] = STATE(766), + [sym__list_lower_roman_period] = STATE(974), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(974), + [sym__list_item_lower_roman_paren] = STATE(770), + [sym__list_lower_roman_parens] = STATE(974), + [sym__list_item_lower_roman_parens] = STATE(773), + [sym__list_upper_roman_period] = STATE(974), + [sym__list_item_upper_roman_period] = STATE(775), + [sym__list_upper_roman_paren] = STATE(974), + [sym__list_item_upper_roman_paren] = STATE(791), + [sym__list_upper_roman_parens] = STATE(974), + [sym__list_item_upper_roman_parens] = STATE(793), + [sym_list_item_content] = STATE(588), + [sym_table] = STATE(1108), + [sym__table_row] = STATE(248), + [sym_table_header] = STATE(248), + [sym_table_separator] = STATE(248), + [sym_table_row] = STATE(248), + [sym_footnote] = STATE(1108), + [sym_footnote_marker_begin] = STATE(1141), + [sym_div] = STATE(1108), + [sym__div_marker_begin] = STATE(1023), + [sym_code_block] = STATE(1108), + [sym_raw_block] = STATE(1108), + [sym_thematic_break] = STATE(1108), + [sym_block_quote] = STATE(1108), + [sym__block_quote_prefix] = STATE(222), + [sym_link_reference_definition] = STATE(1108), + [sym_block_attribute] = STATE(1108), + [sym__paragraph] = STATE(1108), + [sym__paragraph_content] = STATE(738), + [sym__paragraph_inline_content] = STATE(799), + [sym__inline] = STATE(629), + [sym__symbol_fallback] = STATE(285), + [aux_sym__list_dash_repeat1] = STATE(354), + [aux_sym__list_plus_repeat1] = STATE(355), + [aux_sym__list_star_repeat1] = STATE(356), + [aux_sym__list_task_repeat1] = STATE(335), + [aux_sym__list_definition_repeat1] = STATE(479), + [aux_sym__list_decimal_period_repeat1] = STATE(480), + [aux_sym__list_decimal_paren_repeat1] = STATE(481), + [aux_sym__list_decimal_parens_repeat1] = STATE(482), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(483), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(484), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(485), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(486), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(487), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(488), + [aux_sym__list_lower_roman_period_repeat1] = STATE(489), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(490), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(491), + [aux_sym__list_upper_roman_period_repeat1] = STATE(492), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(493), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(494), + [aux_sym_table_repeat1] = STATE(248), + [aux_sym__block_quote_prefix_repeat1] = STATE(235), + [aux_sym__inline_repeat1] = STATE(285), + [anon_sym_LBRACK] = ACTIONS(364), + [anon_sym_LBRACK_CARET] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(366), + [anon_sym_DOT] = ACTIONS(11), + [aux_sym_identifier_token1] = ACTIONS(11), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_PERCENT] = ACTIONS(11), + [sym__newline] = ACTIONS(398), + [sym__heading_begin] = ACTIONS(370), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(372), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(374), + [sym__block_quote_continuation] = ACTIONS(376), + [sym__thematic_break_dash] = ACTIONS(378), + [sym__thematic_break_star] = ACTIONS(378), + [sym__table_header_begin] = ACTIONS(380), + [sym__table_separator_begin] = ACTIONS(382), + [sym__table_row_begin] = ACTIONS(384), }, [31] = { - [sym__block_with_heading] = STATE(1122), - [sym__block_element] = STATE(1122), - [sym_heading] = STATE(1122), - [sym_list] = STATE(1122), - [sym__list_dash] = STATE(1006), - [sym__list_item_dash] = STATE(636), - [sym__list_plus] = STATE(1006), - [sym__list_item_plus] = STATE(637), - [sym__list_star] = STATE(1006), - [sym__list_item_star] = STATE(671), - [sym__list_task] = STATE(1006), - [sym__list_item_task] = STATE(691), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(1006), - [sym__list_item_definition] = STATE(896), - [sym__list_decimal_period] = STATE(1006), - [sym__list_item_decimal_period] = STATE(841), - [sym__list_decimal_paren] = STATE(1006), - [sym__list_item_decimal_paren] = STATE(796), - [sym__list_decimal_parens] = STATE(1006), - [sym__list_item_decimal_parens] = STATE(716), - [sym__list_lower_alpha_period] = STATE(1006), - [sym__list_item_lower_alpha_period] = STATE(722), - [sym__list_lower_alpha_paren] = STATE(1006), - [sym__list_item_lower_alpha_paren] = STATE(801), - [sym__list_lower_alpha_parens] = STATE(1006), - [sym__list_item_lower_alpha_parens] = STATE(813), - [sym__list_upper_alpha_period] = STATE(1006), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(1006), - [sym__list_item_upper_alpha_paren] = STATE(706), - [sym__list_upper_alpha_parens] = STATE(1006), - [sym__list_item_upper_alpha_parens] = STATE(707), - [sym__list_lower_roman_period] = STATE(1006), - [sym__list_item_lower_roman_period] = STATE(725), - [sym__list_lower_roman_paren] = STATE(1006), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(1006), - [sym__list_item_lower_roman_parens] = STATE(736), - [sym__list_upper_roman_period] = STATE(1006), - [sym__list_item_upper_roman_period] = STATE(742), - [sym__list_upper_roman_paren] = STATE(1006), - [sym__list_item_upper_roman_paren] = STATE(743), - [sym__list_upper_roman_parens] = STATE(1006), - [sym__list_item_upper_roman_parens] = STATE(762), - [sym_list_item_content] = STATE(820), - [sym_table] = STATE(1122), - [sym__table_content] = STATE(310), - [sym_table_separator] = STATE(310), - [sym_table_row] = STATE(331), - [sym_footnote] = STATE(1122), - [sym_footnote_marker_begin] = STATE(1176), - [sym_div] = STATE(1122), - [sym__div_marker_begin] = STATE(1026), - [sym_code_block] = STATE(1122), - [sym_raw_block] = STATE(1122), - [sym_thematic_break] = STATE(1122), - [sym_block_quote] = STATE(1122), - [sym__block_quote_prefix] = STATE(231), - [sym_link_reference_definition] = STATE(1122), - [sym_block_attribute] = STATE(1122), - [sym__paragraph] = STATE(1122), - [sym__paragraph_content] = STATE(705), - [sym__paragraph_inline_content] = STATE(775), - [sym__inline] = STATE(616), - [sym__symbol_fallback] = STATE(297), - [aux_sym__list_dash_repeat1] = STATE(355), - [aux_sym__list_plus_repeat1] = STATE(356), - [aux_sym__list_star_repeat1] = STATE(362), - [aux_sym__list_task_repeat1] = STATE(346), - [aux_sym__list_definition_repeat1] = STATE(483), - [aux_sym__list_decimal_period_repeat1] = STATE(484), - [aux_sym__list_decimal_paren_repeat1] = STATE(485), - [aux_sym__list_decimal_parens_repeat1] = STATE(486), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(487), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(488), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(489), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(490), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(491), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(492), - [aux_sym__list_lower_roman_period_repeat1] = STATE(493), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(494), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(495), - [aux_sym__list_upper_roman_period_repeat1] = STATE(581), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(497), - [aux_sym_table_repeat1] = STATE(310), - [aux_sym__block_quote_prefix_repeat1] = STATE(253), - [aux_sym__inline_repeat1] = STATE(297), - [anon_sym_LBRACK] = ACTIONS(338), - [anon_sym_PIPE] = ACTIONS(340), - [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(342), - [anon_sym_DOT] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(13), - [aux_sym__inline_token1] = ACTIONS(13), - [anon_sym_LBRACE_DASH] = ACTIONS(13), - [anon_sym_POUND] = ACTIONS(13), - [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(370), - [sym__heading_begin] = ACTIONS(346), - [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(348), - [sym_list_marker_dash] = ACTIONS(25), - [sym_list_marker_star] = ACTIONS(27), - [sym_list_marker_plus] = ACTIONS(29), - [sym__list_marker_task_begin] = ACTIONS(31), - [sym_list_marker_definition] = ACTIONS(33), - [sym_list_marker_decimal_period] = ACTIONS(35), - [sym_list_marker_lower_alpha_period] = ACTIONS(37), - [sym_list_marker_upper_alpha_period] = ACTIONS(39), - [sym_list_marker_lower_roman_period] = ACTIONS(41), - [sym_list_marker_upper_roman_period] = ACTIONS(43), - [sym_list_marker_decimal_paren] = ACTIONS(45), - [sym_list_marker_lower_alpha_paren] = ACTIONS(47), - [sym_list_marker_upper_alpha_paren] = ACTIONS(49), - [sym_list_marker_lower_roman_paren] = ACTIONS(51), - [sym_list_marker_upper_roman_paren] = ACTIONS(53), - [sym_list_marker_decimal_parens] = ACTIONS(55), - [sym_list_marker_lower_alpha_parens] = ACTIONS(57), - [sym_list_marker_upper_alpha_parens] = ACTIONS(59), - [sym_list_marker_lower_roman_parens] = ACTIONS(61), - [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(350), - [sym__block_quote_continuation] = ACTIONS(352), - [sym__thematic_break_dash] = ACTIONS(354), - [sym__thematic_break_star] = ACTIONS(354), + [sym__block_with_heading] = STATE(1097), + [sym__block_element] = STATE(1097), + [sym_heading] = STATE(1097), + [sym_list] = STATE(1097), + [sym__list_dash] = STATE(974), + [sym__list_item_dash] = STATE(687), + [sym__list_plus] = STATE(974), + [sym__list_item_plus] = STATE(691), + [sym__list_star] = STATE(974), + [sym__list_item_star] = STATE(673), + [sym__list_task] = STATE(974), + [sym__list_item_task] = STATE(680), + [sym_list_marker_task] = STATE(48), + [sym__list_definition] = STATE(974), + [sym__list_item_definition] = STATE(804), + [sym__list_decimal_period] = STATE(974), + [sym__list_item_decimal_period] = STATE(837), + [sym__list_decimal_paren] = STATE(974), + [sym__list_item_decimal_paren] = STATE(703), + [sym__list_decimal_parens] = STATE(974), + [sym__list_item_decimal_parens] = STATE(715), + [sym__list_lower_alpha_period] = STATE(974), + [sym__list_item_lower_alpha_period] = STATE(739), + [sym__list_lower_alpha_paren] = STATE(974), + [sym__list_item_lower_alpha_paren] = STATE(754), + [sym__list_lower_alpha_parens] = STATE(974), + [sym__list_item_lower_alpha_parens] = STATE(755), + [sym__list_upper_alpha_period] = STATE(974), + [sym__list_item_upper_alpha_period] = STATE(758), + [sym__list_upper_alpha_paren] = STATE(974), + [sym__list_item_upper_alpha_paren] = STATE(759), + [sym__list_upper_alpha_parens] = STATE(974), + [sym__list_item_upper_alpha_parens] = STATE(766), + [sym__list_lower_roman_period] = STATE(974), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(974), + [sym__list_item_lower_roman_paren] = STATE(770), + [sym__list_lower_roman_parens] = STATE(974), + [sym__list_item_lower_roman_parens] = STATE(773), + [sym__list_upper_roman_period] = STATE(974), + [sym__list_item_upper_roman_period] = STATE(775), + [sym__list_upper_roman_paren] = STATE(974), + [sym__list_item_upper_roman_paren] = STATE(791), + [sym__list_upper_roman_parens] = STATE(974), + [sym__list_item_upper_roman_parens] = STATE(793), + [sym_list_item_content] = STATE(748), + [sym_table] = STATE(1097), + [sym__table_row] = STATE(248), + [sym_table_header] = STATE(248), + [sym_table_separator] = STATE(248), + [sym_table_row] = STATE(248), + [sym_footnote] = STATE(1097), + [sym_footnote_marker_begin] = STATE(1141), + [sym_div] = STATE(1097), + [sym__div_marker_begin] = STATE(1023), + [sym_code_block] = STATE(1097), + [sym_raw_block] = STATE(1097), + [sym_thematic_break] = STATE(1097), + [sym_block_quote] = STATE(1097), + [sym__block_quote_prefix] = STATE(222), + [sym_link_reference_definition] = STATE(1097), + [sym_block_attribute] = STATE(1097), + [sym__paragraph] = STATE(1097), + [sym__paragraph_content] = STATE(738), + [sym__paragraph_inline_content] = STATE(799), + [sym__inline] = STATE(629), + [sym__symbol_fallback] = STATE(285), + [aux_sym__list_dash_repeat1] = STATE(354), + [aux_sym__list_plus_repeat1] = STATE(355), + [aux_sym__list_star_repeat1] = STATE(356), + [aux_sym__list_task_repeat1] = STATE(335), + [aux_sym__list_definition_repeat1] = STATE(479), + [aux_sym__list_decimal_period_repeat1] = STATE(480), + [aux_sym__list_decimal_paren_repeat1] = STATE(481), + [aux_sym__list_decimal_parens_repeat1] = STATE(482), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(483), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(484), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(485), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(486), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(487), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(488), + [aux_sym__list_lower_roman_period_repeat1] = STATE(489), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(490), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(491), + [aux_sym__list_upper_roman_period_repeat1] = STATE(492), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(493), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(494), + [aux_sym_table_repeat1] = STATE(248), + [aux_sym__block_quote_prefix_repeat1] = STATE(235), + [aux_sym__inline_repeat1] = STATE(285), + [anon_sym_LBRACK] = ACTIONS(364), + [anon_sym_LBRACK_CARET] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(366), + [anon_sym_DOT] = ACTIONS(11), + [aux_sym_identifier_token1] = ACTIONS(11), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_PERCENT] = ACTIONS(11), + [sym__newline] = ACTIONS(400), + [sym__heading_begin] = ACTIONS(370), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(372), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(374), + [sym__block_quote_continuation] = ACTIONS(376), + [sym__thematic_break_dash] = ACTIONS(378), + [sym__thematic_break_star] = ACTIONS(378), + [sym__table_header_begin] = ACTIONS(380), + [sym__table_separator_begin] = ACTIONS(382), + [sym__table_row_begin] = ACTIONS(384), }, [32] = { - [sym__block_with_heading] = STATE(1128), - [sym__block_element] = STATE(1128), - [sym_heading] = STATE(1128), - [sym_list] = STATE(1128), - [sym__list_dash] = STATE(1006), - [sym__list_item_dash] = STATE(636), - [sym__list_plus] = STATE(1006), - [sym__list_item_plus] = STATE(637), - [sym__list_star] = STATE(1006), - [sym__list_item_star] = STATE(671), - [sym__list_task] = STATE(1006), - [sym__list_item_task] = STATE(691), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(1006), - [sym__list_item_definition] = STATE(896), - [sym__list_decimal_period] = STATE(1006), - [sym__list_item_decimal_period] = STATE(841), - [sym__list_decimal_paren] = STATE(1006), - [sym__list_item_decimal_paren] = STATE(796), - [sym__list_decimal_parens] = STATE(1006), - [sym__list_item_decimal_parens] = STATE(716), - [sym__list_lower_alpha_period] = STATE(1006), - [sym__list_item_lower_alpha_period] = STATE(722), - [sym__list_lower_alpha_paren] = STATE(1006), - [sym__list_item_lower_alpha_paren] = STATE(801), - [sym__list_lower_alpha_parens] = STATE(1006), - [sym__list_item_lower_alpha_parens] = STATE(813), - [sym__list_upper_alpha_period] = STATE(1006), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(1006), - [sym__list_item_upper_alpha_paren] = STATE(706), - [sym__list_upper_alpha_parens] = STATE(1006), - [sym__list_item_upper_alpha_parens] = STATE(707), - [sym__list_lower_roman_period] = STATE(1006), - [sym__list_item_lower_roman_period] = STATE(725), - [sym__list_lower_roman_paren] = STATE(1006), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(1006), - [sym__list_item_lower_roman_parens] = STATE(736), - [sym__list_upper_roman_period] = STATE(1006), - [sym__list_item_upper_roman_period] = STATE(742), - [sym__list_upper_roman_paren] = STATE(1006), - [sym__list_item_upper_roman_paren] = STATE(743), - [sym__list_upper_roman_parens] = STATE(1006), - [sym__list_item_upper_roman_parens] = STATE(762), - [sym_list_item_content] = STATE(708), - [sym_table] = STATE(1128), - [sym__table_content] = STATE(310), - [sym_table_separator] = STATE(310), - [sym_table_row] = STATE(331), - [sym_footnote] = STATE(1128), - [sym_footnote_marker_begin] = STATE(1176), - [sym_div] = STATE(1128), - [sym__div_marker_begin] = STATE(1026), - [sym_code_block] = STATE(1128), - [sym_raw_block] = STATE(1128), - [sym_thematic_break] = STATE(1128), - [sym_block_quote] = STATE(1128), - [sym__block_quote_prefix] = STATE(231), - [sym_link_reference_definition] = STATE(1128), - [sym_block_attribute] = STATE(1128), - [sym__paragraph] = STATE(1128), - [sym__paragraph_content] = STATE(705), - [sym__paragraph_inline_content] = STATE(775), - [sym__inline] = STATE(616), - [sym__symbol_fallback] = STATE(297), - [aux_sym__list_dash_repeat1] = STATE(355), - [aux_sym__list_plus_repeat1] = STATE(356), - [aux_sym__list_star_repeat1] = STATE(362), - [aux_sym__list_task_repeat1] = STATE(346), - [aux_sym__list_definition_repeat1] = STATE(483), - [aux_sym__list_decimal_period_repeat1] = STATE(484), - [aux_sym__list_decimal_paren_repeat1] = STATE(485), - [aux_sym__list_decimal_parens_repeat1] = STATE(486), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(487), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(488), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(489), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(490), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(491), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(492), - [aux_sym__list_lower_roman_period_repeat1] = STATE(493), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(494), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(495), - [aux_sym__list_upper_roman_period_repeat1] = STATE(581), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(497), - [aux_sym_table_repeat1] = STATE(310), - [aux_sym__block_quote_prefix_repeat1] = STATE(253), - [aux_sym__inline_repeat1] = STATE(297), - [anon_sym_LBRACK] = ACTIONS(338), - [anon_sym_PIPE] = ACTIONS(340), - [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(342), - [anon_sym_DOT] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(13), - [aux_sym__inline_token1] = ACTIONS(13), - [anon_sym_LBRACE_DASH] = ACTIONS(13), - [anon_sym_POUND] = ACTIONS(13), - [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(372), - [sym__heading_begin] = ACTIONS(346), - [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(348), - [sym_list_marker_dash] = ACTIONS(25), - [sym_list_marker_star] = ACTIONS(27), - [sym_list_marker_plus] = ACTIONS(29), - [sym__list_marker_task_begin] = ACTIONS(31), - [sym_list_marker_definition] = ACTIONS(33), - [sym_list_marker_decimal_period] = ACTIONS(35), - [sym_list_marker_lower_alpha_period] = ACTIONS(37), - [sym_list_marker_upper_alpha_period] = ACTIONS(39), - [sym_list_marker_lower_roman_period] = ACTIONS(41), - [sym_list_marker_upper_roman_period] = ACTIONS(43), - [sym_list_marker_decimal_paren] = ACTIONS(45), - [sym_list_marker_lower_alpha_paren] = ACTIONS(47), - [sym_list_marker_upper_alpha_paren] = ACTIONS(49), - [sym_list_marker_lower_roman_paren] = ACTIONS(51), - [sym_list_marker_upper_roman_paren] = ACTIONS(53), - [sym_list_marker_decimal_parens] = ACTIONS(55), - [sym_list_marker_lower_alpha_parens] = ACTIONS(57), - [sym_list_marker_upper_alpha_parens] = ACTIONS(59), - [sym_list_marker_lower_roman_parens] = ACTIONS(61), - [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(350), - [sym__block_quote_continuation] = ACTIONS(352), - [sym__thematic_break_dash] = ACTIONS(354), - [sym__thematic_break_star] = ACTIONS(354), + [sym__block_with_heading] = STATE(1098), + [sym__block_element] = STATE(1098), + [sym_heading] = STATE(1098), + [sym_list] = STATE(1098), + [sym__list_dash] = STATE(974), + [sym__list_item_dash] = STATE(687), + [sym__list_plus] = STATE(974), + [sym__list_item_plus] = STATE(691), + [sym__list_star] = STATE(974), + [sym__list_item_star] = STATE(673), + [sym__list_task] = STATE(974), + [sym__list_item_task] = STATE(680), + [sym_list_marker_task] = STATE(48), + [sym__list_definition] = STATE(974), + [sym__list_item_definition] = STATE(804), + [sym__list_decimal_period] = STATE(974), + [sym__list_item_decimal_period] = STATE(837), + [sym__list_decimal_paren] = STATE(974), + [sym__list_item_decimal_paren] = STATE(703), + [sym__list_decimal_parens] = STATE(974), + [sym__list_item_decimal_parens] = STATE(715), + [sym__list_lower_alpha_period] = STATE(974), + [sym__list_item_lower_alpha_period] = STATE(739), + [sym__list_lower_alpha_paren] = STATE(974), + [sym__list_item_lower_alpha_paren] = STATE(754), + [sym__list_lower_alpha_parens] = STATE(974), + [sym__list_item_lower_alpha_parens] = STATE(755), + [sym__list_upper_alpha_period] = STATE(974), + [sym__list_item_upper_alpha_period] = STATE(758), + [sym__list_upper_alpha_paren] = STATE(974), + [sym__list_item_upper_alpha_paren] = STATE(759), + [sym__list_upper_alpha_parens] = STATE(974), + [sym__list_item_upper_alpha_parens] = STATE(766), + [sym__list_lower_roman_period] = STATE(974), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(974), + [sym__list_item_lower_roman_paren] = STATE(770), + [sym__list_lower_roman_parens] = STATE(974), + [sym__list_item_lower_roman_parens] = STATE(773), + [sym__list_upper_roman_period] = STATE(974), + [sym__list_item_upper_roman_period] = STATE(775), + [sym__list_upper_roman_paren] = STATE(974), + [sym__list_item_upper_roman_paren] = STATE(791), + [sym__list_upper_roman_parens] = STATE(974), + [sym__list_item_upper_roman_parens] = STATE(793), + [sym_list_item_content] = STATE(750), + [sym_table] = STATE(1098), + [sym__table_row] = STATE(248), + [sym_table_header] = STATE(248), + [sym_table_separator] = STATE(248), + [sym_table_row] = STATE(248), + [sym_footnote] = STATE(1098), + [sym_footnote_marker_begin] = STATE(1141), + [sym_div] = STATE(1098), + [sym__div_marker_begin] = STATE(1023), + [sym_code_block] = STATE(1098), + [sym_raw_block] = STATE(1098), + [sym_thematic_break] = STATE(1098), + [sym_block_quote] = STATE(1098), + [sym__block_quote_prefix] = STATE(222), + [sym_link_reference_definition] = STATE(1098), + [sym_block_attribute] = STATE(1098), + [sym__paragraph] = STATE(1098), + [sym__paragraph_content] = STATE(738), + [sym__paragraph_inline_content] = STATE(799), + [sym__inline] = STATE(629), + [sym__symbol_fallback] = STATE(285), + [aux_sym__list_dash_repeat1] = STATE(354), + [aux_sym__list_plus_repeat1] = STATE(355), + [aux_sym__list_star_repeat1] = STATE(356), + [aux_sym__list_task_repeat1] = STATE(335), + [aux_sym__list_definition_repeat1] = STATE(479), + [aux_sym__list_decimal_period_repeat1] = STATE(480), + [aux_sym__list_decimal_paren_repeat1] = STATE(481), + [aux_sym__list_decimal_parens_repeat1] = STATE(482), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(483), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(484), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(485), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(486), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(487), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(488), + [aux_sym__list_lower_roman_period_repeat1] = STATE(489), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(490), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(491), + [aux_sym__list_upper_roman_period_repeat1] = STATE(492), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(493), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(494), + [aux_sym_table_repeat1] = STATE(248), + [aux_sym__block_quote_prefix_repeat1] = STATE(235), + [aux_sym__inline_repeat1] = STATE(285), + [anon_sym_LBRACK] = ACTIONS(364), + [anon_sym_LBRACK_CARET] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(366), + [anon_sym_DOT] = ACTIONS(11), + [aux_sym_identifier_token1] = ACTIONS(11), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_PERCENT] = ACTIONS(11), + [sym__newline] = ACTIONS(402), + [sym__heading_begin] = ACTIONS(370), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(372), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(374), + [sym__block_quote_continuation] = ACTIONS(376), + [sym__thematic_break_dash] = ACTIONS(378), + [sym__thematic_break_star] = ACTIONS(378), + [sym__table_header_begin] = ACTIONS(380), + [sym__table_separator_begin] = ACTIONS(382), + [sym__table_row_begin] = ACTIONS(384), }, [33] = { - [sym__block_with_heading] = STATE(1129), - [sym__block_element] = STATE(1129), - [sym_heading] = STATE(1129), - [sym_list] = STATE(1129), - [sym__list_dash] = STATE(1006), - [sym__list_item_dash] = STATE(636), - [sym__list_plus] = STATE(1006), - [sym__list_item_plus] = STATE(637), - [sym__list_star] = STATE(1006), - [sym__list_item_star] = STATE(671), - [sym__list_task] = STATE(1006), - [sym__list_item_task] = STATE(691), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(1006), - [sym__list_item_definition] = STATE(896), - [sym__list_decimal_period] = STATE(1006), - [sym__list_item_decimal_period] = STATE(841), - [sym__list_decimal_paren] = STATE(1006), - [sym__list_item_decimal_paren] = STATE(796), - [sym__list_decimal_parens] = STATE(1006), - [sym__list_item_decimal_parens] = STATE(716), - [sym__list_lower_alpha_period] = STATE(1006), - [sym__list_item_lower_alpha_period] = STATE(722), - [sym__list_lower_alpha_paren] = STATE(1006), - [sym__list_item_lower_alpha_paren] = STATE(801), - [sym__list_lower_alpha_parens] = STATE(1006), - [sym__list_item_lower_alpha_parens] = STATE(813), - [sym__list_upper_alpha_period] = STATE(1006), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(1006), - [sym__list_item_upper_alpha_paren] = STATE(706), - [sym__list_upper_alpha_parens] = STATE(1006), - [sym__list_item_upper_alpha_parens] = STATE(707), - [sym__list_lower_roman_period] = STATE(1006), - [sym__list_item_lower_roman_period] = STATE(725), - [sym__list_lower_roman_paren] = STATE(1006), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(1006), - [sym__list_item_lower_roman_parens] = STATE(736), - [sym__list_upper_roman_period] = STATE(1006), - [sym__list_item_upper_roman_period] = STATE(742), - [sym__list_upper_roman_paren] = STATE(1006), - [sym__list_item_upper_roman_paren] = STATE(743), - [sym__list_upper_roman_parens] = STATE(1006), - [sym__list_item_upper_roman_parens] = STATE(762), - [sym_list_item_content] = STATE(709), - [sym_table] = STATE(1129), - [sym__table_content] = STATE(310), - [sym_table_separator] = STATE(310), - [sym_table_row] = STATE(331), - [sym_footnote] = STATE(1129), - [sym_footnote_marker_begin] = STATE(1176), - [sym_div] = STATE(1129), - [sym__div_marker_begin] = STATE(1026), - [sym_code_block] = STATE(1129), - [sym_raw_block] = STATE(1129), - [sym_thematic_break] = STATE(1129), - [sym_block_quote] = STATE(1129), - [sym__block_quote_prefix] = STATE(231), - [sym_link_reference_definition] = STATE(1129), - [sym_block_attribute] = STATE(1129), - [sym__paragraph] = STATE(1129), - [sym__paragraph_content] = STATE(705), - [sym__paragraph_inline_content] = STATE(775), - [sym__inline] = STATE(616), - [sym__symbol_fallback] = STATE(297), - [aux_sym__list_dash_repeat1] = STATE(355), - [aux_sym__list_plus_repeat1] = STATE(356), - [aux_sym__list_star_repeat1] = STATE(362), - [aux_sym__list_task_repeat1] = STATE(346), - [aux_sym__list_definition_repeat1] = STATE(483), - [aux_sym__list_decimal_period_repeat1] = STATE(484), - [aux_sym__list_decimal_paren_repeat1] = STATE(485), - [aux_sym__list_decimal_parens_repeat1] = STATE(486), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(487), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(488), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(489), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(490), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(491), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(492), - [aux_sym__list_lower_roman_period_repeat1] = STATE(493), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(494), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(495), - [aux_sym__list_upper_roman_period_repeat1] = STATE(581), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(497), - [aux_sym_table_repeat1] = STATE(310), - [aux_sym__block_quote_prefix_repeat1] = STATE(253), - [aux_sym__inline_repeat1] = STATE(297), - [anon_sym_LBRACK] = ACTIONS(338), - [anon_sym_PIPE] = ACTIONS(340), - [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(342), - [anon_sym_DOT] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(13), - [aux_sym__inline_token1] = ACTIONS(13), - [anon_sym_LBRACE_DASH] = ACTIONS(13), - [anon_sym_POUND] = ACTIONS(13), - [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(374), - [sym__heading_begin] = ACTIONS(346), - [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(348), - [sym_list_marker_dash] = ACTIONS(25), - [sym_list_marker_star] = ACTIONS(27), - [sym_list_marker_plus] = ACTIONS(29), - [sym__list_marker_task_begin] = ACTIONS(31), - [sym_list_marker_definition] = ACTIONS(33), - [sym_list_marker_decimal_period] = ACTIONS(35), - [sym_list_marker_lower_alpha_period] = ACTIONS(37), - [sym_list_marker_upper_alpha_period] = ACTIONS(39), - [sym_list_marker_lower_roman_period] = ACTIONS(41), - [sym_list_marker_upper_roman_period] = ACTIONS(43), - [sym_list_marker_decimal_paren] = ACTIONS(45), - [sym_list_marker_lower_alpha_paren] = ACTIONS(47), - [sym_list_marker_upper_alpha_paren] = ACTIONS(49), - [sym_list_marker_lower_roman_paren] = ACTIONS(51), - [sym_list_marker_upper_roman_paren] = ACTIONS(53), - [sym_list_marker_decimal_parens] = ACTIONS(55), - [sym_list_marker_lower_alpha_parens] = ACTIONS(57), - [sym_list_marker_upper_alpha_parens] = ACTIONS(59), - [sym_list_marker_lower_roman_parens] = ACTIONS(61), - [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(350), - [sym__block_quote_continuation] = ACTIONS(352), - [sym__thematic_break_dash] = ACTIONS(354), - [sym__thematic_break_star] = ACTIONS(354), + [sym__block_with_heading] = STATE(1099), + [sym__block_element] = STATE(1099), + [sym_heading] = STATE(1099), + [sym_list] = STATE(1099), + [sym__list_dash] = STATE(974), + [sym__list_item_dash] = STATE(687), + [sym__list_plus] = STATE(974), + [sym__list_item_plus] = STATE(691), + [sym__list_star] = STATE(974), + [sym__list_item_star] = STATE(673), + [sym__list_task] = STATE(974), + [sym__list_item_task] = STATE(680), + [sym_list_marker_task] = STATE(48), + [sym__list_definition] = STATE(974), + [sym__list_item_definition] = STATE(804), + [sym__list_decimal_period] = STATE(974), + [sym__list_item_decimal_period] = STATE(837), + [sym__list_decimal_paren] = STATE(974), + [sym__list_item_decimal_paren] = STATE(703), + [sym__list_decimal_parens] = STATE(974), + [sym__list_item_decimal_parens] = STATE(715), + [sym__list_lower_alpha_period] = STATE(974), + [sym__list_item_lower_alpha_period] = STATE(739), + [sym__list_lower_alpha_paren] = STATE(974), + [sym__list_item_lower_alpha_paren] = STATE(754), + [sym__list_lower_alpha_parens] = STATE(974), + [sym__list_item_lower_alpha_parens] = STATE(755), + [sym__list_upper_alpha_period] = STATE(974), + [sym__list_item_upper_alpha_period] = STATE(758), + [sym__list_upper_alpha_paren] = STATE(974), + [sym__list_item_upper_alpha_paren] = STATE(759), + [sym__list_upper_alpha_parens] = STATE(974), + [sym__list_item_upper_alpha_parens] = STATE(766), + [sym__list_lower_roman_period] = STATE(974), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(974), + [sym__list_item_lower_roman_paren] = STATE(770), + [sym__list_lower_roman_parens] = STATE(974), + [sym__list_item_lower_roman_parens] = STATE(773), + [sym__list_upper_roman_period] = STATE(974), + [sym__list_item_upper_roman_period] = STATE(775), + [sym__list_upper_roman_paren] = STATE(974), + [sym__list_item_upper_roman_paren] = STATE(791), + [sym__list_upper_roman_parens] = STATE(974), + [sym__list_item_upper_roman_parens] = STATE(793), + [sym_list_item_content] = STATE(751), + [sym_table] = STATE(1099), + [sym__table_row] = STATE(248), + [sym_table_header] = STATE(248), + [sym_table_separator] = STATE(248), + [sym_table_row] = STATE(248), + [sym_footnote] = STATE(1099), + [sym_footnote_marker_begin] = STATE(1141), + [sym_div] = STATE(1099), + [sym__div_marker_begin] = STATE(1023), + [sym_code_block] = STATE(1099), + [sym_raw_block] = STATE(1099), + [sym_thematic_break] = STATE(1099), + [sym_block_quote] = STATE(1099), + [sym__block_quote_prefix] = STATE(222), + [sym_link_reference_definition] = STATE(1099), + [sym_block_attribute] = STATE(1099), + [sym__paragraph] = STATE(1099), + [sym__paragraph_content] = STATE(738), + [sym__paragraph_inline_content] = STATE(799), + [sym__inline] = STATE(629), + [sym__symbol_fallback] = STATE(285), + [aux_sym__list_dash_repeat1] = STATE(354), + [aux_sym__list_plus_repeat1] = STATE(355), + [aux_sym__list_star_repeat1] = STATE(356), + [aux_sym__list_task_repeat1] = STATE(335), + [aux_sym__list_definition_repeat1] = STATE(479), + [aux_sym__list_decimal_period_repeat1] = STATE(480), + [aux_sym__list_decimal_paren_repeat1] = STATE(481), + [aux_sym__list_decimal_parens_repeat1] = STATE(482), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(483), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(484), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(485), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(486), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(487), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(488), + [aux_sym__list_lower_roman_period_repeat1] = STATE(489), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(490), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(491), + [aux_sym__list_upper_roman_period_repeat1] = STATE(492), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(493), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(494), + [aux_sym_table_repeat1] = STATE(248), + [aux_sym__block_quote_prefix_repeat1] = STATE(235), + [aux_sym__inline_repeat1] = STATE(285), + [anon_sym_LBRACK] = ACTIONS(364), + [anon_sym_LBRACK_CARET] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(366), + [anon_sym_DOT] = ACTIONS(11), + [aux_sym_identifier_token1] = ACTIONS(11), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_PERCENT] = ACTIONS(11), + [sym__newline] = ACTIONS(404), + [sym__heading_begin] = ACTIONS(370), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(372), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(374), + [sym__block_quote_continuation] = ACTIONS(376), + [sym__thematic_break_dash] = ACTIONS(378), + [sym__thematic_break_star] = ACTIONS(378), + [sym__table_header_begin] = ACTIONS(380), + [sym__table_separator_begin] = ACTIONS(382), + [sym__table_row_begin] = ACTIONS(384), }, [34] = { - [sym__block_with_heading] = STATE(920), - [sym__block_element] = STATE(920), - [sym_heading] = STATE(920), - [sym_list] = STATE(920), - [sym__list_dash] = STATE(1006), - [sym__list_item_dash] = STATE(636), - [sym__list_plus] = STATE(1006), - [sym__list_item_plus] = STATE(637), - [sym__list_star] = STATE(1006), - [sym__list_item_star] = STATE(671), - [sym__list_task] = STATE(1006), - [sym__list_item_task] = STATE(691), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(1006), - [sym__list_item_definition] = STATE(896), - [sym__list_decimal_period] = STATE(1006), - [sym__list_item_decimal_period] = STATE(841), - [sym__list_decimal_paren] = STATE(1006), - [sym__list_item_decimal_paren] = STATE(796), - [sym__list_decimal_parens] = STATE(1006), - [sym__list_item_decimal_parens] = STATE(716), - [sym__list_lower_alpha_period] = STATE(1006), - [sym__list_item_lower_alpha_period] = STATE(722), - [sym__list_lower_alpha_paren] = STATE(1006), - [sym__list_item_lower_alpha_paren] = STATE(801), - [sym__list_lower_alpha_parens] = STATE(1006), - [sym__list_item_lower_alpha_parens] = STATE(813), - [sym__list_upper_alpha_period] = STATE(1006), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(1006), - [sym__list_item_upper_alpha_paren] = STATE(706), - [sym__list_upper_alpha_parens] = STATE(1006), - [sym__list_item_upper_alpha_parens] = STATE(707), - [sym__list_lower_roman_period] = STATE(1006), - [sym__list_item_lower_roman_period] = STATE(725), - [sym__list_lower_roman_paren] = STATE(1006), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(1006), - [sym__list_item_lower_roman_parens] = STATE(736), - [sym__list_upper_roman_period] = STATE(1006), - [sym__list_item_upper_roman_period] = STATE(742), - [sym__list_upper_roman_paren] = STATE(1006), - [sym__list_item_upper_roman_paren] = STATE(743), - [sym__list_upper_roman_parens] = STATE(1006), - [sym__list_item_upper_roman_parens] = STATE(762), - [sym_table] = STATE(920), - [sym__table_content] = STATE(310), - [sym_table_separator] = STATE(310), - [sym_table_row] = STATE(331), - [sym_footnote] = STATE(920), - [sym_footnote_marker_begin] = STATE(1176), - [sym_footnote_content] = STATE(121), - [sym_div] = STATE(920), - [sym__div_marker_begin] = STATE(1026), - [sym_code_block] = STATE(920), - [sym_raw_block] = STATE(920), - [sym_thematic_break] = STATE(920), - [sym_block_quote] = STATE(920), - [sym__block_quote_prefix] = STATE(231), - [sym_link_reference_definition] = STATE(920), - [sym_block_attribute] = STATE(920), - [sym__paragraph] = STATE(920), - [sym__paragraph_content] = STATE(705), - [sym__paragraph_inline_content] = STATE(775), - [sym__inline] = STATE(616), - [sym__symbol_fallback] = STATE(297), - [aux_sym__list_dash_repeat1] = STATE(355), - [aux_sym__list_plus_repeat1] = STATE(356), - [aux_sym__list_star_repeat1] = STATE(362), - [aux_sym__list_task_repeat1] = STATE(346), - [aux_sym__list_definition_repeat1] = STATE(483), - [aux_sym__list_decimal_period_repeat1] = STATE(484), - [aux_sym__list_decimal_paren_repeat1] = STATE(485), - [aux_sym__list_decimal_parens_repeat1] = STATE(486), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(487), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(488), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(489), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(490), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(491), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(492), - [aux_sym__list_lower_roman_period_repeat1] = STATE(493), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(494), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(495), - [aux_sym__list_upper_roman_period_repeat1] = STATE(581), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(497), - [aux_sym_table_repeat1] = STATE(310), - [aux_sym__block_quote_prefix_repeat1] = STATE(253), - [aux_sym__inline_repeat1] = STATE(297), - [anon_sym_LBRACK] = ACTIONS(338), - [anon_sym_PIPE] = ACTIONS(340), - [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(342), - [anon_sym_DOT] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(13), - [aux_sym__inline_token1] = ACTIONS(13), - [anon_sym_LBRACE_DASH] = ACTIONS(13), - [anon_sym_POUND] = ACTIONS(13), - [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(376), - [sym__heading_begin] = ACTIONS(346), - [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(348), - [sym_list_marker_dash] = ACTIONS(25), - [sym_list_marker_star] = ACTIONS(27), - [sym_list_marker_plus] = ACTIONS(29), - [sym__list_marker_task_begin] = ACTIONS(31), - [sym_list_marker_definition] = ACTIONS(33), - [sym_list_marker_decimal_period] = ACTIONS(35), - [sym_list_marker_lower_alpha_period] = ACTIONS(37), - [sym_list_marker_upper_alpha_period] = ACTIONS(39), - [sym_list_marker_lower_roman_period] = ACTIONS(41), - [sym_list_marker_upper_roman_period] = ACTIONS(43), - [sym_list_marker_decimal_paren] = ACTIONS(45), - [sym_list_marker_lower_alpha_paren] = ACTIONS(47), - [sym_list_marker_upper_alpha_paren] = ACTIONS(49), - [sym_list_marker_lower_roman_paren] = ACTIONS(51), - [sym_list_marker_upper_roman_paren] = ACTIONS(53), - [sym_list_marker_decimal_parens] = ACTIONS(55), - [sym_list_marker_lower_alpha_parens] = ACTIONS(57), - [sym_list_marker_upper_alpha_parens] = ACTIONS(59), - [sym_list_marker_lower_roman_parens] = ACTIONS(61), - [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(350), - [sym__block_quote_continuation] = ACTIONS(352), - [sym__thematic_break_dash] = ACTIONS(354), - [sym__thematic_break_star] = ACTIONS(354), + [sym__block_with_heading] = STATE(900), + [sym__block_element] = STATE(900), + [sym_heading] = STATE(900), + [sym_list] = STATE(900), + [sym__list_dash] = STATE(974), + [sym__list_item_dash] = STATE(687), + [sym__list_plus] = STATE(974), + [sym__list_item_plus] = STATE(691), + [sym__list_star] = STATE(974), + [sym__list_item_star] = STATE(673), + [sym__list_task] = STATE(974), + [sym__list_item_task] = STATE(680), + [sym_list_marker_task] = STATE(48), + [sym__list_definition] = STATE(974), + [sym__list_item_definition] = STATE(804), + [sym__list_decimal_period] = STATE(974), + [sym__list_item_decimal_period] = STATE(837), + [sym__list_decimal_paren] = STATE(974), + [sym__list_item_decimal_paren] = STATE(703), + [sym__list_decimal_parens] = STATE(974), + [sym__list_item_decimal_parens] = STATE(715), + [sym__list_lower_alpha_period] = STATE(974), + [sym__list_item_lower_alpha_period] = STATE(739), + [sym__list_lower_alpha_paren] = STATE(974), + [sym__list_item_lower_alpha_paren] = STATE(754), + [sym__list_lower_alpha_parens] = STATE(974), + [sym__list_item_lower_alpha_parens] = STATE(755), + [sym__list_upper_alpha_period] = STATE(974), + [sym__list_item_upper_alpha_period] = STATE(758), + [sym__list_upper_alpha_paren] = STATE(974), + [sym__list_item_upper_alpha_paren] = STATE(759), + [sym__list_upper_alpha_parens] = STATE(974), + [sym__list_item_upper_alpha_parens] = STATE(766), + [sym__list_lower_roman_period] = STATE(974), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(974), + [sym__list_item_lower_roman_paren] = STATE(770), + [sym__list_lower_roman_parens] = STATE(974), + [sym__list_item_lower_roman_parens] = STATE(773), + [sym__list_upper_roman_period] = STATE(974), + [sym__list_item_upper_roman_period] = STATE(775), + [sym__list_upper_roman_paren] = STATE(974), + [sym__list_item_upper_roman_paren] = STATE(791), + [sym__list_upper_roman_parens] = STATE(974), + [sym__list_item_upper_roman_parens] = STATE(793), + [sym_table] = STATE(900), + [sym__table_row] = STATE(248), + [sym_table_header] = STATE(248), + [sym_table_separator] = STATE(248), + [sym_table_row] = STATE(248), + [sym_footnote] = STATE(900), + [sym_footnote_marker_begin] = STATE(1141), + [sym_footnote_content] = STATE(122), + [sym_div] = STATE(900), + [sym__div_marker_begin] = STATE(1023), + [sym_code_block] = STATE(900), + [sym_raw_block] = STATE(900), + [sym_thematic_break] = STATE(900), + [sym_block_quote] = STATE(900), + [sym__block_quote_prefix] = STATE(222), + [sym_link_reference_definition] = STATE(900), + [sym_block_attribute] = STATE(900), + [sym__paragraph] = STATE(900), + [sym__paragraph_content] = STATE(738), + [sym__paragraph_inline_content] = STATE(799), + [sym__inline] = STATE(629), + [sym__symbol_fallback] = STATE(285), + [aux_sym__list_dash_repeat1] = STATE(354), + [aux_sym__list_plus_repeat1] = STATE(355), + [aux_sym__list_star_repeat1] = STATE(356), + [aux_sym__list_task_repeat1] = STATE(335), + [aux_sym__list_definition_repeat1] = STATE(479), + [aux_sym__list_decimal_period_repeat1] = STATE(480), + [aux_sym__list_decimal_paren_repeat1] = STATE(481), + [aux_sym__list_decimal_parens_repeat1] = STATE(482), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(483), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(484), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(485), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(486), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(487), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(488), + [aux_sym__list_lower_roman_period_repeat1] = STATE(489), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(490), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(491), + [aux_sym__list_upper_roman_period_repeat1] = STATE(492), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(493), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(494), + [aux_sym_table_repeat1] = STATE(248), + [aux_sym__block_quote_prefix_repeat1] = STATE(235), + [aux_sym__inline_repeat1] = STATE(285), + [anon_sym_LBRACK] = ACTIONS(364), + [anon_sym_LBRACK_CARET] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(366), + [anon_sym_DOT] = ACTIONS(11), + [aux_sym_identifier_token1] = ACTIONS(11), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_PERCENT] = ACTIONS(11), + [sym__newline] = ACTIONS(406), + [sym__heading_begin] = ACTIONS(370), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(372), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(374), + [sym__block_quote_continuation] = ACTIONS(376), + [sym__thematic_break_dash] = ACTIONS(378), + [sym__thematic_break_star] = ACTIONS(378), + [sym__table_header_begin] = ACTIONS(380), + [sym__table_separator_begin] = ACTIONS(382), + [sym__table_row_begin] = ACTIONS(384), }, [35] = { - [sym__block_with_heading] = STATE(1123), - [sym__block_element] = STATE(1123), - [sym_heading] = STATE(1123), - [sym_list] = STATE(1123), - [sym__list_dash] = STATE(1006), - [sym__list_item_dash] = STATE(636), - [sym__list_plus] = STATE(1006), - [sym__list_item_plus] = STATE(637), - [sym__list_star] = STATE(1006), - [sym__list_item_star] = STATE(671), - [sym__list_task] = STATE(1006), - [sym__list_item_task] = STATE(691), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(1006), - [sym__list_item_definition] = STATE(896), - [sym__list_decimal_period] = STATE(1006), - [sym__list_item_decimal_period] = STATE(841), - [sym__list_decimal_paren] = STATE(1006), - [sym__list_item_decimal_paren] = STATE(796), - [sym__list_decimal_parens] = STATE(1006), - [sym__list_item_decimal_parens] = STATE(716), - [sym__list_lower_alpha_period] = STATE(1006), - [sym__list_item_lower_alpha_period] = STATE(722), - [sym__list_lower_alpha_paren] = STATE(1006), - [sym__list_item_lower_alpha_paren] = STATE(801), - [sym__list_lower_alpha_parens] = STATE(1006), - [sym__list_item_lower_alpha_parens] = STATE(813), - [sym__list_upper_alpha_period] = STATE(1006), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(1006), - [sym__list_item_upper_alpha_paren] = STATE(706), - [sym__list_upper_alpha_parens] = STATE(1006), - [sym__list_item_upper_alpha_parens] = STATE(707), - [sym__list_lower_roman_period] = STATE(1006), - [sym__list_item_lower_roman_period] = STATE(725), - [sym__list_lower_roman_paren] = STATE(1006), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(1006), - [sym__list_item_lower_roman_parens] = STATE(736), - [sym__list_upper_roman_period] = STATE(1006), - [sym__list_item_upper_roman_period] = STATE(742), - [sym__list_upper_roman_paren] = STATE(1006), - [sym__list_item_upper_roman_paren] = STATE(743), - [sym__list_upper_roman_parens] = STATE(1006), - [sym__list_item_upper_roman_parens] = STATE(762), - [sym_list_item_content] = STATE(821), - [sym_table] = STATE(1123), - [sym__table_content] = STATE(310), - [sym_table_separator] = STATE(310), - [sym_table_row] = STATE(331), - [sym_footnote] = STATE(1123), - [sym_footnote_marker_begin] = STATE(1176), - [sym_div] = STATE(1123), - [sym__div_marker_begin] = STATE(1026), - [sym_code_block] = STATE(1123), - [sym_raw_block] = STATE(1123), - [sym_thematic_break] = STATE(1123), - [sym_block_quote] = STATE(1123), - [sym__block_quote_prefix] = STATE(231), - [sym_link_reference_definition] = STATE(1123), - [sym_block_attribute] = STATE(1123), - [sym__paragraph] = STATE(1123), - [sym__paragraph_content] = STATE(705), - [sym__paragraph_inline_content] = STATE(775), - [sym__inline] = STATE(616), - [sym__symbol_fallback] = STATE(297), - [aux_sym__list_dash_repeat1] = STATE(355), - [aux_sym__list_plus_repeat1] = STATE(356), - [aux_sym__list_star_repeat1] = STATE(362), - [aux_sym__list_task_repeat1] = STATE(346), - [aux_sym__list_definition_repeat1] = STATE(483), - [aux_sym__list_decimal_period_repeat1] = STATE(484), - [aux_sym__list_decimal_paren_repeat1] = STATE(485), - [aux_sym__list_decimal_parens_repeat1] = STATE(486), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(487), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(488), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(489), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(490), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(491), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(492), - [aux_sym__list_lower_roman_period_repeat1] = STATE(493), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(494), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(495), - [aux_sym__list_upper_roman_period_repeat1] = STATE(581), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(497), - [aux_sym_table_repeat1] = STATE(310), - [aux_sym__block_quote_prefix_repeat1] = STATE(253), - [aux_sym__inline_repeat1] = STATE(297), - [anon_sym_LBRACK] = ACTIONS(338), - [anon_sym_PIPE] = ACTIONS(340), - [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(342), - [anon_sym_DOT] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(13), - [aux_sym__inline_token1] = ACTIONS(13), - [anon_sym_LBRACE_DASH] = ACTIONS(13), - [anon_sym_POUND] = ACTIONS(13), - [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(378), - [sym__heading_begin] = ACTIONS(346), - [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(348), - [sym_list_marker_dash] = ACTIONS(25), - [sym_list_marker_star] = ACTIONS(27), - [sym_list_marker_plus] = ACTIONS(29), - [sym__list_marker_task_begin] = ACTIONS(31), - [sym_list_marker_definition] = ACTIONS(33), - [sym_list_marker_decimal_period] = ACTIONS(35), - [sym_list_marker_lower_alpha_period] = ACTIONS(37), - [sym_list_marker_upper_alpha_period] = ACTIONS(39), - [sym_list_marker_lower_roman_period] = ACTIONS(41), - [sym_list_marker_upper_roman_period] = ACTIONS(43), - [sym_list_marker_decimal_paren] = ACTIONS(45), - [sym_list_marker_lower_alpha_paren] = ACTIONS(47), - [sym_list_marker_upper_alpha_paren] = ACTIONS(49), - [sym_list_marker_lower_roman_paren] = ACTIONS(51), - [sym_list_marker_upper_roman_paren] = ACTIONS(53), - [sym_list_marker_decimal_parens] = ACTIONS(55), - [sym_list_marker_lower_alpha_parens] = ACTIONS(57), - [sym_list_marker_upper_alpha_parens] = ACTIONS(59), - [sym_list_marker_lower_roman_parens] = ACTIONS(61), - [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(350), - [sym__block_quote_continuation] = ACTIONS(352), - [sym__thematic_break_dash] = ACTIONS(354), - [sym__thematic_break_star] = ACTIONS(354), + [sym__block_with_heading] = STATE(1100), + [sym__block_element] = STATE(1100), + [sym_heading] = STATE(1100), + [sym_list] = STATE(1100), + [sym__list_dash] = STATE(974), + [sym__list_item_dash] = STATE(687), + [sym__list_plus] = STATE(974), + [sym__list_item_plus] = STATE(691), + [sym__list_star] = STATE(974), + [sym__list_item_star] = STATE(673), + [sym__list_task] = STATE(974), + [sym__list_item_task] = STATE(680), + [sym_list_marker_task] = STATE(48), + [sym__list_definition] = STATE(974), + [sym__list_item_definition] = STATE(804), + [sym__list_decimal_period] = STATE(974), + [sym__list_item_decimal_period] = STATE(837), + [sym__list_decimal_paren] = STATE(974), + [sym__list_item_decimal_paren] = STATE(703), + [sym__list_decimal_parens] = STATE(974), + [sym__list_item_decimal_parens] = STATE(715), + [sym__list_lower_alpha_period] = STATE(974), + [sym__list_item_lower_alpha_period] = STATE(739), + [sym__list_lower_alpha_paren] = STATE(974), + [sym__list_item_lower_alpha_paren] = STATE(754), + [sym__list_lower_alpha_parens] = STATE(974), + [sym__list_item_lower_alpha_parens] = STATE(755), + [sym__list_upper_alpha_period] = STATE(974), + [sym__list_item_upper_alpha_period] = STATE(758), + [sym__list_upper_alpha_paren] = STATE(974), + [sym__list_item_upper_alpha_paren] = STATE(759), + [sym__list_upper_alpha_parens] = STATE(974), + [sym__list_item_upper_alpha_parens] = STATE(766), + [sym__list_lower_roman_period] = STATE(974), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(974), + [sym__list_item_lower_roman_paren] = STATE(770), + [sym__list_lower_roman_parens] = STATE(974), + [sym__list_item_lower_roman_parens] = STATE(773), + [sym__list_upper_roman_period] = STATE(974), + [sym__list_item_upper_roman_period] = STATE(775), + [sym__list_upper_roman_paren] = STATE(974), + [sym__list_item_upper_roman_paren] = STATE(791), + [sym__list_upper_roman_parens] = STATE(974), + [sym__list_item_upper_roman_parens] = STATE(793), + [sym_list_item_content] = STATE(779), + [sym_table] = STATE(1100), + [sym__table_row] = STATE(248), + [sym_table_header] = STATE(248), + [sym_table_separator] = STATE(248), + [sym_table_row] = STATE(248), + [sym_footnote] = STATE(1100), + [sym_footnote_marker_begin] = STATE(1141), + [sym_div] = STATE(1100), + [sym__div_marker_begin] = STATE(1023), + [sym_code_block] = STATE(1100), + [sym_raw_block] = STATE(1100), + [sym_thematic_break] = STATE(1100), + [sym_block_quote] = STATE(1100), + [sym__block_quote_prefix] = STATE(222), + [sym_link_reference_definition] = STATE(1100), + [sym_block_attribute] = STATE(1100), + [sym__paragraph] = STATE(1100), + [sym__paragraph_content] = STATE(738), + [sym__paragraph_inline_content] = STATE(799), + [sym__inline] = STATE(629), + [sym__symbol_fallback] = STATE(285), + [aux_sym__list_dash_repeat1] = STATE(354), + [aux_sym__list_plus_repeat1] = STATE(355), + [aux_sym__list_star_repeat1] = STATE(356), + [aux_sym__list_task_repeat1] = STATE(335), + [aux_sym__list_definition_repeat1] = STATE(479), + [aux_sym__list_decimal_period_repeat1] = STATE(480), + [aux_sym__list_decimal_paren_repeat1] = STATE(481), + [aux_sym__list_decimal_parens_repeat1] = STATE(482), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(483), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(484), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(485), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(486), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(487), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(488), + [aux_sym__list_lower_roman_period_repeat1] = STATE(489), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(490), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(491), + [aux_sym__list_upper_roman_period_repeat1] = STATE(492), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(493), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(494), + [aux_sym_table_repeat1] = STATE(248), + [aux_sym__block_quote_prefix_repeat1] = STATE(235), + [aux_sym__inline_repeat1] = STATE(285), + [anon_sym_LBRACK] = ACTIONS(364), + [anon_sym_LBRACK_CARET] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(366), + [anon_sym_DOT] = ACTIONS(11), + [aux_sym_identifier_token1] = ACTIONS(11), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_PERCENT] = ACTIONS(11), + [sym__newline] = ACTIONS(408), + [sym__heading_begin] = ACTIONS(370), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(372), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(374), + [sym__block_quote_continuation] = ACTIONS(376), + [sym__thematic_break_dash] = ACTIONS(378), + [sym__thematic_break_star] = ACTIONS(378), + [sym__table_header_begin] = ACTIONS(380), + [sym__table_separator_begin] = ACTIONS(382), + [sym__table_row_begin] = ACTIONS(384), }, [36] = { - [sym__block_with_heading] = STATE(1124), - [sym__block_element] = STATE(1124), - [sym_heading] = STATE(1124), - [sym_list] = STATE(1124), - [sym__list_dash] = STATE(1006), - [sym__list_item_dash] = STATE(636), - [sym__list_plus] = STATE(1006), - [sym__list_item_plus] = STATE(637), - [sym__list_star] = STATE(1006), - [sym__list_item_star] = STATE(671), - [sym__list_task] = STATE(1006), - [sym__list_item_task] = STATE(691), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(1006), - [sym__list_item_definition] = STATE(896), - [sym__list_decimal_period] = STATE(1006), - [sym__list_item_decimal_period] = STATE(841), - [sym__list_decimal_paren] = STATE(1006), - [sym__list_item_decimal_paren] = STATE(796), - [sym__list_decimal_parens] = STATE(1006), - [sym__list_item_decimal_parens] = STATE(716), - [sym__list_lower_alpha_period] = STATE(1006), - [sym__list_item_lower_alpha_period] = STATE(722), - [sym__list_lower_alpha_paren] = STATE(1006), - [sym__list_item_lower_alpha_paren] = STATE(801), - [sym__list_lower_alpha_parens] = STATE(1006), - [sym__list_item_lower_alpha_parens] = STATE(813), - [sym__list_upper_alpha_period] = STATE(1006), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(1006), - [sym__list_item_upper_alpha_paren] = STATE(706), - [sym__list_upper_alpha_parens] = STATE(1006), - [sym__list_item_upper_alpha_parens] = STATE(707), - [sym__list_lower_roman_period] = STATE(1006), - [sym__list_item_lower_roman_period] = STATE(725), - [sym__list_lower_roman_paren] = STATE(1006), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(1006), - [sym__list_item_lower_roman_parens] = STATE(736), - [sym__list_upper_roman_period] = STATE(1006), - [sym__list_item_upper_roman_period] = STATE(742), - [sym__list_upper_roman_paren] = STATE(1006), - [sym__list_item_upper_roman_paren] = STATE(743), - [sym__list_upper_roman_parens] = STATE(1006), - [sym__list_item_upper_roman_parens] = STATE(762), - [sym_list_item_content] = STATE(822), - [sym_table] = STATE(1124), - [sym__table_content] = STATE(310), - [sym_table_separator] = STATE(310), - [sym_table_row] = STATE(331), - [sym_footnote] = STATE(1124), - [sym_footnote_marker_begin] = STATE(1176), - [sym_div] = STATE(1124), - [sym__div_marker_begin] = STATE(1026), - [sym_code_block] = STATE(1124), - [sym_raw_block] = STATE(1124), - [sym_thematic_break] = STATE(1124), - [sym_block_quote] = STATE(1124), - [sym__block_quote_prefix] = STATE(231), - [sym_link_reference_definition] = STATE(1124), - [sym_block_attribute] = STATE(1124), - [sym__paragraph] = STATE(1124), - [sym__paragraph_content] = STATE(705), - [sym__paragraph_inline_content] = STATE(775), - [sym__inline] = STATE(616), - [sym__symbol_fallback] = STATE(297), - [aux_sym__list_dash_repeat1] = STATE(355), - [aux_sym__list_plus_repeat1] = STATE(356), - [aux_sym__list_star_repeat1] = STATE(362), - [aux_sym__list_task_repeat1] = STATE(346), - [aux_sym__list_definition_repeat1] = STATE(483), - [aux_sym__list_decimal_period_repeat1] = STATE(484), - [aux_sym__list_decimal_paren_repeat1] = STATE(485), - [aux_sym__list_decimal_parens_repeat1] = STATE(486), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(487), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(488), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(489), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(490), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(491), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(492), - [aux_sym__list_lower_roman_period_repeat1] = STATE(493), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(494), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(495), - [aux_sym__list_upper_roman_period_repeat1] = STATE(581), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(497), - [aux_sym_table_repeat1] = STATE(310), - [aux_sym__block_quote_prefix_repeat1] = STATE(253), - [aux_sym__inline_repeat1] = STATE(297), - [anon_sym_LBRACK] = ACTIONS(338), - [anon_sym_PIPE] = ACTIONS(340), - [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(342), - [anon_sym_DOT] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(13), - [aux_sym__inline_token1] = ACTIONS(13), - [anon_sym_LBRACE_DASH] = ACTIONS(13), - [anon_sym_POUND] = ACTIONS(13), - [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(380), - [sym__heading_begin] = ACTIONS(346), - [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(348), - [sym_list_marker_dash] = ACTIONS(25), - [sym_list_marker_star] = ACTIONS(27), - [sym_list_marker_plus] = ACTIONS(29), - [sym__list_marker_task_begin] = ACTIONS(31), - [sym_list_marker_definition] = ACTIONS(33), - [sym_list_marker_decimal_period] = ACTIONS(35), - [sym_list_marker_lower_alpha_period] = ACTIONS(37), - [sym_list_marker_upper_alpha_period] = ACTIONS(39), - [sym_list_marker_lower_roman_period] = ACTIONS(41), - [sym_list_marker_upper_roman_period] = ACTIONS(43), - [sym_list_marker_decimal_paren] = ACTIONS(45), - [sym_list_marker_lower_alpha_paren] = ACTIONS(47), - [sym_list_marker_upper_alpha_paren] = ACTIONS(49), - [sym_list_marker_lower_roman_paren] = ACTIONS(51), - [sym_list_marker_upper_roman_paren] = ACTIONS(53), - [sym_list_marker_decimal_parens] = ACTIONS(55), - [sym_list_marker_lower_alpha_parens] = ACTIONS(57), - [sym_list_marker_upper_alpha_parens] = ACTIONS(59), - [sym_list_marker_lower_roman_parens] = ACTIONS(61), - [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(350), - [sym__block_quote_continuation] = ACTIONS(352), - [sym__thematic_break_dash] = ACTIONS(354), - [sym__thematic_break_star] = ACTIONS(354), + [sym__block_with_heading] = STATE(1101), + [sym__block_element] = STATE(1101), + [sym_heading] = STATE(1101), + [sym_list] = STATE(1101), + [sym__list_dash] = STATE(974), + [sym__list_item_dash] = STATE(687), + [sym__list_plus] = STATE(974), + [sym__list_item_plus] = STATE(691), + [sym__list_star] = STATE(974), + [sym__list_item_star] = STATE(673), + [sym__list_task] = STATE(974), + [sym__list_item_task] = STATE(680), + [sym_list_marker_task] = STATE(48), + [sym__list_definition] = STATE(974), + [sym__list_item_definition] = STATE(804), + [sym__list_decimal_period] = STATE(974), + [sym__list_item_decimal_period] = STATE(837), + [sym__list_decimal_paren] = STATE(974), + [sym__list_item_decimal_paren] = STATE(703), + [sym__list_decimal_parens] = STATE(974), + [sym__list_item_decimal_parens] = STATE(715), + [sym__list_lower_alpha_period] = STATE(974), + [sym__list_item_lower_alpha_period] = STATE(739), + [sym__list_lower_alpha_paren] = STATE(974), + [sym__list_item_lower_alpha_paren] = STATE(754), + [sym__list_lower_alpha_parens] = STATE(974), + [sym__list_item_lower_alpha_parens] = STATE(755), + [sym__list_upper_alpha_period] = STATE(974), + [sym__list_item_upper_alpha_period] = STATE(758), + [sym__list_upper_alpha_paren] = STATE(974), + [sym__list_item_upper_alpha_paren] = STATE(759), + [sym__list_upper_alpha_parens] = STATE(974), + [sym__list_item_upper_alpha_parens] = STATE(766), + [sym__list_lower_roman_period] = STATE(974), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(974), + [sym__list_item_lower_roman_paren] = STATE(770), + [sym__list_lower_roman_parens] = STATE(974), + [sym__list_item_lower_roman_parens] = STATE(773), + [sym__list_upper_roman_period] = STATE(974), + [sym__list_item_upper_roman_period] = STATE(775), + [sym__list_upper_roman_paren] = STATE(974), + [sym__list_item_upper_roman_paren] = STATE(791), + [sym__list_upper_roman_parens] = STATE(974), + [sym__list_item_upper_roman_parens] = STATE(793), + [sym_list_item_content] = STATE(782), + [sym_table] = STATE(1101), + [sym__table_row] = STATE(248), + [sym_table_header] = STATE(248), + [sym_table_separator] = STATE(248), + [sym_table_row] = STATE(248), + [sym_footnote] = STATE(1101), + [sym_footnote_marker_begin] = STATE(1141), + [sym_div] = STATE(1101), + [sym__div_marker_begin] = STATE(1023), + [sym_code_block] = STATE(1101), + [sym_raw_block] = STATE(1101), + [sym_thematic_break] = STATE(1101), + [sym_block_quote] = STATE(1101), + [sym__block_quote_prefix] = STATE(222), + [sym_link_reference_definition] = STATE(1101), + [sym_block_attribute] = STATE(1101), + [sym__paragraph] = STATE(1101), + [sym__paragraph_content] = STATE(738), + [sym__paragraph_inline_content] = STATE(799), + [sym__inline] = STATE(629), + [sym__symbol_fallback] = STATE(285), + [aux_sym__list_dash_repeat1] = STATE(354), + [aux_sym__list_plus_repeat1] = STATE(355), + [aux_sym__list_star_repeat1] = STATE(356), + [aux_sym__list_task_repeat1] = STATE(335), + [aux_sym__list_definition_repeat1] = STATE(479), + [aux_sym__list_decimal_period_repeat1] = STATE(480), + [aux_sym__list_decimal_paren_repeat1] = STATE(481), + [aux_sym__list_decimal_parens_repeat1] = STATE(482), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(483), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(484), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(485), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(486), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(487), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(488), + [aux_sym__list_lower_roman_period_repeat1] = STATE(489), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(490), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(491), + [aux_sym__list_upper_roman_period_repeat1] = STATE(492), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(493), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(494), + [aux_sym_table_repeat1] = STATE(248), + [aux_sym__block_quote_prefix_repeat1] = STATE(235), + [aux_sym__inline_repeat1] = STATE(285), + [anon_sym_LBRACK] = ACTIONS(364), + [anon_sym_LBRACK_CARET] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(366), + [anon_sym_DOT] = ACTIONS(11), + [aux_sym_identifier_token1] = ACTIONS(11), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_PERCENT] = ACTIONS(11), + [sym__newline] = ACTIONS(410), + [sym__heading_begin] = ACTIONS(370), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(372), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(374), + [sym__block_quote_continuation] = ACTIONS(376), + [sym__thematic_break_dash] = ACTIONS(378), + [sym__thematic_break_star] = ACTIONS(378), + [sym__table_header_begin] = ACTIONS(380), + [sym__table_separator_begin] = ACTIONS(382), + [sym__table_row_begin] = ACTIONS(384), }, [37] = { - [sym__block_with_heading] = STATE(1125), - [sym__block_element] = STATE(1125), - [sym_heading] = STATE(1125), - [sym_list] = STATE(1125), - [sym__list_dash] = STATE(1006), - [sym__list_item_dash] = STATE(636), - [sym__list_plus] = STATE(1006), - [sym__list_item_plus] = STATE(637), - [sym__list_star] = STATE(1006), - [sym__list_item_star] = STATE(671), - [sym__list_task] = STATE(1006), - [sym__list_item_task] = STATE(691), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(1006), - [sym__list_item_definition] = STATE(896), - [sym__list_decimal_period] = STATE(1006), - [sym__list_item_decimal_period] = STATE(841), - [sym__list_decimal_paren] = STATE(1006), - [sym__list_item_decimal_paren] = STATE(796), - [sym__list_decimal_parens] = STATE(1006), - [sym__list_item_decimal_parens] = STATE(716), - [sym__list_lower_alpha_period] = STATE(1006), - [sym__list_item_lower_alpha_period] = STATE(722), - [sym__list_lower_alpha_paren] = STATE(1006), - [sym__list_item_lower_alpha_paren] = STATE(801), - [sym__list_lower_alpha_parens] = STATE(1006), - [sym__list_item_lower_alpha_parens] = STATE(813), - [sym__list_upper_alpha_period] = STATE(1006), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(1006), - [sym__list_item_upper_alpha_paren] = STATE(706), - [sym__list_upper_alpha_parens] = STATE(1006), - [sym__list_item_upper_alpha_parens] = STATE(707), - [sym__list_lower_roman_period] = STATE(1006), - [sym__list_item_lower_roman_period] = STATE(725), - [sym__list_lower_roman_paren] = STATE(1006), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(1006), - [sym__list_item_lower_roman_parens] = STATE(736), - [sym__list_upper_roman_period] = STATE(1006), - [sym__list_item_upper_roman_period] = STATE(742), - [sym__list_upper_roman_paren] = STATE(1006), - [sym__list_item_upper_roman_paren] = STATE(743), - [sym__list_upper_roman_parens] = STATE(1006), - [sym__list_item_upper_roman_parens] = STATE(762), - [sym_list_item_content] = STATE(854), - [sym_table] = STATE(1125), - [sym__table_content] = STATE(310), - [sym_table_separator] = STATE(310), - [sym_table_row] = STATE(331), - [sym_footnote] = STATE(1125), - [sym_footnote_marker_begin] = STATE(1176), - [sym_div] = STATE(1125), - [sym__div_marker_begin] = STATE(1026), - [sym_code_block] = STATE(1125), - [sym_raw_block] = STATE(1125), - [sym_thematic_break] = STATE(1125), - [sym_block_quote] = STATE(1125), - [sym__block_quote_prefix] = STATE(231), - [sym_link_reference_definition] = STATE(1125), - [sym_block_attribute] = STATE(1125), - [sym__paragraph] = STATE(1125), - [sym__paragraph_content] = STATE(705), - [sym__paragraph_inline_content] = STATE(775), - [sym__inline] = STATE(616), - [sym__symbol_fallback] = STATE(297), - [aux_sym__list_dash_repeat1] = STATE(355), - [aux_sym__list_plus_repeat1] = STATE(356), - [aux_sym__list_star_repeat1] = STATE(362), - [aux_sym__list_task_repeat1] = STATE(346), - [aux_sym__list_definition_repeat1] = STATE(483), - [aux_sym__list_decimal_period_repeat1] = STATE(484), - [aux_sym__list_decimal_paren_repeat1] = STATE(485), - [aux_sym__list_decimal_parens_repeat1] = STATE(486), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(487), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(488), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(489), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(490), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(491), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(492), - [aux_sym__list_lower_roman_period_repeat1] = STATE(493), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(494), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(495), - [aux_sym__list_upper_roman_period_repeat1] = STATE(581), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(497), - [aux_sym_table_repeat1] = STATE(310), - [aux_sym__block_quote_prefix_repeat1] = STATE(253), - [aux_sym__inline_repeat1] = STATE(297), - [anon_sym_LBRACK] = ACTIONS(338), - [anon_sym_PIPE] = ACTIONS(340), - [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(342), - [anon_sym_DOT] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(13), - [aux_sym__inline_token1] = ACTIONS(13), - [anon_sym_LBRACE_DASH] = ACTIONS(13), - [anon_sym_POUND] = ACTIONS(13), - [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(382), - [sym__heading_begin] = ACTIONS(346), - [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(348), - [sym_list_marker_dash] = ACTIONS(25), - [sym_list_marker_star] = ACTIONS(27), - [sym_list_marker_plus] = ACTIONS(29), - [sym__list_marker_task_begin] = ACTIONS(31), - [sym_list_marker_definition] = ACTIONS(33), - [sym_list_marker_decimal_period] = ACTIONS(35), - [sym_list_marker_lower_alpha_period] = ACTIONS(37), - [sym_list_marker_upper_alpha_period] = ACTIONS(39), - [sym_list_marker_lower_roman_period] = ACTIONS(41), - [sym_list_marker_upper_roman_period] = ACTIONS(43), - [sym_list_marker_decimal_paren] = ACTIONS(45), - [sym_list_marker_lower_alpha_paren] = ACTIONS(47), - [sym_list_marker_upper_alpha_paren] = ACTIONS(49), - [sym_list_marker_lower_roman_paren] = ACTIONS(51), - [sym_list_marker_upper_roman_paren] = ACTIONS(53), - [sym_list_marker_decimal_parens] = ACTIONS(55), - [sym_list_marker_lower_alpha_parens] = ACTIONS(57), - [sym_list_marker_upper_alpha_parens] = ACTIONS(59), - [sym_list_marker_lower_roman_parens] = ACTIONS(61), - [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(350), - [sym__block_quote_continuation] = ACTIONS(352), - [sym__thematic_break_dash] = ACTIONS(354), - [sym__thematic_break_star] = ACTIONS(354), + [sym__block_with_heading] = STATE(1102), + [sym__block_element] = STATE(1102), + [sym_heading] = STATE(1102), + [sym_list] = STATE(1102), + [sym__list_dash] = STATE(974), + [sym__list_item_dash] = STATE(687), + [sym__list_plus] = STATE(974), + [sym__list_item_plus] = STATE(691), + [sym__list_star] = STATE(974), + [sym__list_item_star] = STATE(673), + [sym__list_task] = STATE(974), + [sym__list_item_task] = STATE(680), + [sym_list_marker_task] = STATE(48), + [sym__list_definition] = STATE(974), + [sym__list_item_definition] = STATE(804), + [sym__list_decimal_period] = STATE(974), + [sym__list_item_decimal_period] = STATE(837), + [sym__list_decimal_paren] = STATE(974), + [sym__list_item_decimal_paren] = STATE(703), + [sym__list_decimal_parens] = STATE(974), + [sym__list_item_decimal_parens] = STATE(715), + [sym__list_lower_alpha_period] = STATE(974), + [sym__list_item_lower_alpha_period] = STATE(739), + [sym__list_lower_alpha_paren] = STATE(974), + [sym__list_item_lower_alpha_paren] = STATE(754), + [sym__list_lower_alpha_parens] = STATE(974), + [sym__list_item_lower_alpha_parens] = STATE(755), + [sym__list_upper_alpha_period] = STATE(974), + [sym__list_item_upper_alpha_period] = STATE(758), + [sym__list_upper_alpha_paren] = STATE(974), + [sym__list_item_upper_alpha_paren] = STATE(759), + [sym__list_upper_alpha_parens] = STATE(974), + [sym__list_item_upper_alpha_parens] = STATE(766), + [sym__list_lower_roman_period] = STATE(974), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(974), + [sym__list_item_lower_roman_paren] = STATE(770), + [sym__list_lower_roman_parens] = STATE(974), + [sym__list_item_lower_roman_parens] = STATE(773), + [sym__list_upper_roman_period] = STATE(974), + [sym__list_item_upper_roman_period] = STATE(775), + [sym__list_upper_roman_paren] = STATE(974), + [sym__list_item_upper_roman_paren] = STATE(791), + [sym__list_upper_roman_parens] = STATE(974), + [sym__list_item_upper_roman_parens] = STATE(793), + [sym_list_item_content] = STATE(783), + [sym_table] = STATE(1102), + [sym__table_row] = STATE(248), + [sym_table_header] = STATE(248), + [sym_table_separator] = STATE(248), + [sym_table_row] = STATE(248), + [sym_footnote] = STATE(1102), + [sym_footnote_marker_begin] = STATE(1141), + [sym_div] = STATE(1102), + [sym__div_marker_begin] = STATE(1023), + [sym_code_block] = STATE(1102), + [sym_raw_block] = STATE(1102), + [sym_thematic_break] = STATE(1102), + [sym_block_quote] = STATE(1102), + [sym__block_quote_prefix] = STATE(222), + [sym_link_reference_definition] = STATE(1102), + [sym_block_attribute] = STATE(1102), + [sym__paragraph] = STATE(1102), + [sym__paragraph_content] = STATE(738), + [sym__paragraph_inline_content] = STATE(799), + [sym__inline] = STATE(629), + [sym__symbol_fallback] = STATE(285), + [aux_sym__list_dash_repeat1] = STATE(354), + [aux_sym__list_plus_repeat1] = STATE(355), + [aux_sym__list_star_repeat1] = STATE(356), + [aux_sym__list_task_repeat1] = STATE(335), + [aux_sym__list_definition_repeat1] = STATE(479), + [aux_sym__list_decimal_period_repeat1] = STATE(480), + [aux_sym__list_decimal_paren_repeat1] = STATE(481), + [aux_sym__list_decimal_parens_repeat1] = STATE(482), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(483), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(484), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(485), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(486), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(487), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(488), + [aux_sym__list_lower_roman_period_repeat1] = STATE(489), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(490), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(491), + [aux_sym__list_upper_roman_period_repeat1] = STATE(492), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(493), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(494), + [aux_sym_table_repeat1] = STATE(248), + [aux_sym__block_quote_prefix_repeat1] = STATE(235), + [aux_sym__inline_repeat1] = STATE(285), + [anon_sym_LBRACK] = ACTIONS(364), + [anon_sym_LBRACK_CARET] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(366), + [anon_sym_DOT] = ACTIONS(11), + [aux_sym_identifier_token1] = ACTIONS(11), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_PERCENT] = ACTIONS(11), + [sym__newline] = ACTIONS(412), + [sym__heading_begin] = ACTIONS(370), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(372), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(374), + [sym__block_quote_continuation] = ACTIONS(376), + [sym__thematic_break_dash] = ACTIONS(378), + [sym__thematic_break_star] = ACTIONS(378), + [sym__table_header_begin] = ACTIONS(380), + [sym__table_separator_begin] = ACTIONS(382), + [sym__table_row_begin] = ACTIONS(384), }, [38] = { - [sym__block_with_heading] = STATE(1130), - [sym__block_element] = STATE(1130), - [sym_heading] = STATE(1130), - [sym_list] = STATE(1130), - [sym__list_dash] = STATE(1006), - [sym__list_item_dash] = STATE(636), - [sym__list_plus] = STATE(1006), - [sym__list_item_plus] = STATE(637), - [sym__list_star] = STATE(1006), - [sym__list_item_star] = STATE(671), - [sym__list_task] = STATE(1006), - [sym__list_item_task] = STATE(691), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(1006), - [sym__list_item_definition] = STATE(896), - [sym__list_decimal_period] = STATE(1006), - [sym__list_item_decimal_period] = STATE(841), - [sym__list_decimal_paren] = STATE(1006), - [sym__list_item_decimal_paren] = STATE(796), - [sym__list_decimal_parens] = STATE(1006), - [sym__list_item_decimal_parens] = STATE(716), - [sym__list_lower_alpha_period] = STATE(1006), - [sym__list_item_lower_alpha_period] = STATE(722), - [sym__list_lower_alpha_paren] = STATE(1006), - [sym__list_item_lower_alpha_paren] = STATE(801), - [sym__list_lower_alpha_parens] = STATE(1006), - [sym__list_item_lower_alpha_parens] = STATE(813), - [sym__list_upper_alpha_period] = STATE(1006), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(1006), - [sym__list_item_upper_alpha_paren] = STATE(706), - [sym__list_upper_alpha_parens] = STATE(1006), - [sym__list_item_upper_alpha_parens] = STATE(707), - [sym__list_lower_roman_period] = STATE(1006), - [sym__list_item_lower_roman_period] = STATE(725), - [sym__list_lower_roman_paren] = STATE(1006), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(1006), - [sym__list_item_lower_roman_parens] = STATE(736), - [sym__list_upper_roman_period] = STATE(1006), - [sym__list_item_upper_roman_period] = STATE(742), - [sym__list_upper_roman_paren] = STATE(1006), - [sym__list_item_upper_roman_paren] = STATE(743), - [sym__list_upper_roman_parens] = STATE(1006), - [sym__list_item_upper_roman_parens] = STATE(762), - [sym_list_item_content] = STATE(713), - [sym_table] = STATE(1130), - [sym__table_content] = STATE(310), - [sym_table_separator] = STATE(310), - [sym_table_row] = STATE(331), - [sym_footnote] = STATE(1130), - [sym_footnote_marker_begin] = STATE(1176), - [sym_div] = STATE(1130), - [sym__div_marker_begin] = STATE(1026), - [sym_code_block] = STATE(1130), - [sym_raw_block] = STATE(1130), - [sym_thematic_break] = STATE(1130), - [sym_block_quote] = STATE(1130), - [sym__block_quote_prefix] = STATE(231), - [sym_link_reference_definition] = STATE(1130), - [sym_block_attribute] = STATE(1130), - [sym__paragraph] = STATE(1130), - [sym__paragraph_content] = STATE(705), - [sym__paragraph_inline_content] = STATE(775), - [sym__inline] = STATE(616), - [sym__symbol_fallback] = STATE(297), - [aux_sym__list_dash_repeat1] = STATE(355), - [aux_sym__list_plus_repeat1] = STATE(356), - [aux_sym__list_star_repeat1] = STATE(362), - [aux_sym__list_task_repeat1] = STATE(346), - [aux_sym__list_definition_repeat1] = STATE(483), - [aux_sym__list_decimal_period_repeat1] = STATE(484), - [aux_sym__list_decimal_paren_repeat1] = STATE(485), - [aux_sym__list_decimal_parens_repeat1] = STATE(486), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(487), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(488), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(489), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(490), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(491), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(492), - [aux_sym__list_lower_roman_period_repeat1] = STATE(493), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(494), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(495), - [aux_sym__list_upper_roman_period_repeat1] = STATE(581), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(497), - [aux_sym_table_repeat1] = STATE(310), - [aux_sym__block_quote_prefix_repeat1] = STATE(253), - [aux_sym__inline_repeat1] = STATE(297), - [anon_sym_LBRACK] = ACTIONS(338), - [anon_sym_PIPE] = ACTIONS(340), - [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(342), - [anon_sym_DOT] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(13), - [aux_sym__inline_token1] = ACTIONS(13), - [anon_sym_LBRACE_DASH] = ACTIONS(13), - [anon_sym_POUND] = ACTIONS(13), - [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(384), - [sym__heading_begin] = ACTIONS(346), - [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(348), - [sym_list_marker_dash] = ACTIONS(25), - [sym_list_marker_star] = ACTIONS(27), - [sym_list_marker_plus] = ACTIONS(29), - [sym__list_marker_task_begin] = ACTIONS(31), - [sym_list_marker_definition] = ACTIONS(33), - [sym_list_marker_decimal_period] = ACTIONS(35), - [sym_list_marker_lower_alpha_period] = ACTIONS(37), - [sym_list_marker_upper_alpha_period] = ACTIONS(39), - [sym_list_marker_lower_roman_period] = ACTIONS(41), - [sym_list_marker_upper_roman_period] = ACTIONS(43), - [sym_list_marker_decimal_paren] = ACTIONS(45), - [sym_list_marker_lower_alpha_paren] = ACTIONS(47), - [sym_list_marker_upper_alpha_paren] = ACTIONS(49), - [sym_list_marker_lower_roman_paren] = ACTIONS(51), - [sym_list_marker_upper_roman_paren] = ACTIONS(53), - [sym_list_marker_decimal_parens] = ACTIONS(55), - [sym_list_marker_lower_alpha_parens] = ACTIONS(57), - [sym_list_marker_upper_alpha_parens] = ACTIONS(59), - [sym_list_marker_lower_roman_parens] = ACTIONS(61), - [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(350), - [sym__block_quote_continuation] = ACTIONS(352), - [sym__thematic_break_dash] = ACTIONS(354), - [sym__thematic_break_star] = ACTIONS(354), + [sym__block_with_heading] = STATE(1103), + [sym__block_element] = STATE(1103), + [sym_heading] = STATE(1103), + [sym_list] = STATE(1103), + [sym__list_dash] = STATE(974), + [sym__list_item_dash] = STATE(687), + [sym__list_plus] = STATE(974), + [sym__list_item_plus] = STATE(691), + [sym__list_star] = STATE(974), + [sym__list_item_star] = STATE(673), + [sym__list_task] = STATE(974), + [sym__list_item_task] = STATE(680), + [sym_list_marker_task] = STATE(48), + [sym__list_definition] = STATE(974), + [sym__list_item_definition] = STATE(804), + [sym__list_decimal_period] = STATE(974), + [sym__list_item_decimal_period] = STATE(837), + [sym__list_decimal_paren] = STATE(974), + [sym__list_item_decimal_paren] = STATE(703), + [sym__list_decimal_parens] = STATE(974), + [sym__list_item_decimal_parens] = STATE(715), + [sym__list_lower_alpha_period] = STATE(974), + [sym__list_item_lower_alpha_period] = STATE(739), + [sym__list_lower_alpha_paren] = STATE(974), + [sym__list_item_lower_alpha_paren] = STATE(754), + [sym__list_lower_alpha_parens] = STATE(974), + [sym__list_item_lower_alpha_parens] = STATE(755), + [sym__list_upper_alpha_period] = STATE(974), + [sym__list_item_upper_alpha_period] = STATE(758), + [sym__list_upper_alpha_paren] = STATE(974), + [sym__list_item_upper_alpha_paren] = STATE(759), + [sym__list_upper_alpha_parens] = STATE(974), + [sym__list_item_upper_alpha_parens] = STATE(766), + [sym__list_lower_roman_period] = STATE(974), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(974), + [sym__list_item_lower_roman_paren] = STATE(770), + [sym__list_lower_roman_parens] = STATE(974), + [sym__list_item_lower_roman_parens] = STATE(773), + [sym__list_upper_roman_period] = STATE(974), + [sym__list_item_upper_roman_period] = STATE(775), + [sym__list_upper_roman_paren] = STATE(974), + [sym__list_item_upper_roman_paren] = STATE(791), + [sym__list_upper_roman_parens] = STATE(974), + [sym__list_item_upper_roman_parens] = STATE(793), + [sym_list_item_content] = STATE(784), + [sym_table] = STATE(1103), + [sym__table_row] = STATE(248), + [sym_table_header] = STATE(248), + [sym_table_separator] = STATE(248), + [sym_table_row] = STATE(248), + [sym_footnote] = STATE(1103), + [sym_footnote_marker_begin] = STATE(1141), + [sym_div] = STATE(1103), + [sym__div_marker_begin] = STATE(1023), + [sym_code_block] = STATE(1103), + [sym_raw_block] = STATE(1103), + [sym_thematic_break] = STATE(1103), + [sym_block_quote] = STATE(1103), + [sym__block_quote_prefix] = STATE(222), + [sym_link_reference_definition] = STATE(1103), + [sym_block_attribute] = STATE(1103), + [sym__paragraph] = STATE(1103), + [sym__paragraph_content] = STATE(738), + [sym__paragraph_inline_content] = STATE(799), + [sym__inline] = STATE(629), + [sym__symbol_fallback] = STATE(285), + [aux_sym__list_dash_repeat1] = STATE(354), + [aux_sym__list_plus_repeat1] = STATE(355), + [aux_sym__list_star_repeat1] = STATE(356), + [aux_sym__list_task_repeat1] = STATE(335), + [aux_sym__list_definition_repeat1] = STATE(479), + [aux_sym__list_decimal_period_repeat1] = STATE(480), + [aux_sym__list_decimal_paren_repeat1] = STATE(481), + [aux_sym__list_decimal_parens_repeat1] = STATE(482), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(483), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(484), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(485), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(486), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(487), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(488), + [aux_sym__list_lower_roman_period_repeat1] = STATE(489), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(490), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(491), + [aux_sym__list_upper_roman_period_repeat1] = STATE(492), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(493), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(494), + [aux_sym_table_repeat1] = STATE(248), + [aux_sym__block_quote_prefix_repeat1] = STATE(235), + [aux_sym__inline_repeat1] = STATE(285), + [anon_sym_LBRACK] = ACTIONS(364), + [anon_sym_LBRACK_CARET] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(366), + [anon_sym_DOT] = ACTIONS(11), + [aux_sym_identifier_token1] = ACTIONS(11), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_PERCENT] = ACTIONS(11), + [sym__newline] = ACTIONS(414), + [sym__heading_begin] = ACTIONS(370), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(372), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(374), + [sym__block_quote_continuation] = ACTIONS(376), + [sym__thematic_break_dash] = ACTIONS(378), + [sym__thematic_break_star] = ACTIONS(378), + [sym__table_header_begin] = ACTIONS(380), + [sym__table_separator_begin] = ACTIONS(382), + [sym__table_row_begin] = ACTIONS(384), }, [39] = { - [sym__block_with_heading] = STATE(1052), - [sym__block_element] = STATE(1052), - [sym_heading] = STATE(1052), - [sym_list] = STATE(1052), - [sym__list_dash] = STATE(1006), - [sym__list_item_dash] = STATE(636), - [sym__list_plus] = STATE(1006), - [sym__list_item_plus] = STATE(637), - [sym__list_star] = STATE(1006), - [sym__list_item_star] = STATE(671), - [sym__list_task] = STATE(1006), - [sym__list_item_task] = STATE(691), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(1006), - [sym__list_item_definition] = STATE(896), - [sym__list_decimal_period] = STATE(1006), - [sym__list_item_decimal_period] = STATE(841), - [sym__list_decimal_paren] = STATE(1006), - [sym__list_item_decimal_paren] = STATE(796), - [sym__list_decimal_parens] = STATE(1006), - [sym__list_item_decimal_parens] = STATE(716), - [sym__list_lower_alpha_period] = STATE(1006), - [sym__list_item_lower_alpha_period] = STATE(722), - [sym__list_lower_alpha_paren] = STATE(1006), - [sym__list_item_lower_alpha_paren] = STATE(801), - [sym__list_lower_alpha_parens] = STATE(1006), - [sym__list_item_lower_alpha_parens] = STATE(813), - [sym__list_upper_alpha_period] = STATE(1006), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(1006), - [sym__list_item_upper_alpha_paren] = STATE(706), - [sym__list_upper_alpha_parens] = STATE(1006), - [sym__list_item_upper_alpha_parens] = STATE(707), - [sym__list_lower_roman_period] = STATE(1006), - [sym__list_item_lower_roman_period] = STATE(725), - [sym__list_lower_roman_paren] = STATE(1006), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(1006), - [sym__list_item_lower_roman_parens] = STATE(736), - [sym__list_upper_roman_period] = STATE(1006), - [sym__list_item_upper_roman_period] = STATE(742), - [sym__list_upper_roman_paren] = STATE(1006), - [sym__list_item_upper_roman_paren] = STATE(743), - [sym__list_upper_roman_parens] = STATE(1006), - [sym__list_item_upper_roman_parens] = STATE(762), - [sym_list_item_content] = STATE(693), - [sym_table] = STATE(1052), - [sym__table_content] = STATE(310), - [sym_table_separator] = STATE(310), - [sym_table_row] = STATE(331), - [sym_footnote] = STATE(1052), - [sym_footnote_marker_begin] = STATE(1176), - [sym_div] = STATE(1052), - [sym__div_marker_begin] = STATE(1026), - [sym_code_block] = STATE(1052), - [sym_raw_block] = STATE(1052), - [sym_thematic_break] = STATE(1052), - [sym_block_quote] = STATE(1052), - [sym__block_quote_prefix] = STATE(231), - [sym_link_reference_definition] = STATE(1052), - [sym_block_attribute] = STATE(1052), - [sym__paragraph] = STATE(1052), - [sym__paragraph_content] = STATE(705), - [sym__paragraph_inline_content] = STATE(775), - [sym__inline] = STATE(616), - [sym__symbol_fallback] = STATE(297), - [aux_sym__list_dash_repeat1] = STATE(355), - [aux_sym__list_plus_repeat1] = STATE(356), - [aux_sym__list_star_repeat1] = STATE(362), - [aux_sym__list_task_repeat1] = STATE(346), - [aux_sym__list_definition_repeat1] = STATE(483), - [aux_sym__list_decimal_period_repeat1] = STATE(484), - [aux_sym__list_decimal_paren_repeat1] = STATE(485), - [aux_sym__list_decimal_parens_repeat1] = STATE(486), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(487), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(488), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(489), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(490), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(491), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(492), - [aux_sym__list_lower_roman_period_repeat1] = STATE(493), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(494), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(495), - [aux_sym__list_upper_roman_period_repeat1] = STATE(581), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(497), - [aux_sym_table_repeat1] = STATE(310), - [aux_sym__block_quote_prefix_repeat1] = STATE(253), - [aux_sym__inline_repeat1] = STATE(297), - [anon_sym_LBRACK] = ACTIONS(338), - [anon_sym_PIPE] = ACTIONS(340), - [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(342), - [anon_sym_DOT] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(13), - [aux_sym__inline_token1] = ACTIONS(13), - [anon_sym_LBRACE_DASH] = ACTIONS(13), - [anon_sym_POUND] = ACTIONS(13), - [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(366), - [sym__heading_begin] = ACTIONS(346), - [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(348), - [sym_list_marker_dash] = ACTIONS(25), - [sym_list_marker_star] = ACTIONS(27), - [sym_list_marker_plus] = ACTIONS(29), - [sym__list_marker_task_begin] = ACTIONS(31), - [sym_list_marker_definition] = ACTIONS(33), - [sym_list_marker_decimal_period] = ACTIONS(35), - [sym_list_marker_lower_alpha_period] = ACTIONS(37), - [sym_list_marker_upper_alpha_period] = ACTIONS(39), - [sym_list_marker_lower_roman_period] = ACTIONS(41), - [sym_list_marker_upper_roman_period] = ACTIONS(43), - [sym_list_marker_decimal_paren] = ACTIONS(45), - [sym_list_marker_lower_alpha_paren] = ACTIONS(47), - [sym_list_marker_upper_alpha_paren] = ACTIONS(49), - [sym_list_marker_lower_roman_paren] = ACTIONS(51), - [sym_list_marker_upper_roman_paren] = ACTIONS(53), - [sym_list_marker_decimal_parens] = ACTIONS(55), - [sym_list_marker_lower_alpha_parens] = ACTIONS(57), - [sym_list_marker_upper_alpha_parens] = ACTIONS(59), - [sym_list_marker_lower_roman_parens] = ACTIONS(61), - [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(350), - [sym__block_quote_continuation] = ACTIONS(352), - [sym__thematic_break_dash] = ACTIONS(354), - [sym__thematic_break_star] = ACTIONS(354), + [sym__block_with_heading] = STATE(1104), + [sym__block_element] = STATE(1104), + [sym_heading] = STATE(1104), + [sym_list] = STATE(1104), + [sym__list_dash] = STATE(974), + [sym__list_item_dash] = STATE(687), + [sym__list_plus] = STATE(974), + [sym__list_item_plus] = STATE(691), + [sym__list_star] = STATE(974), + [sym__list_item_star] = STATE(673), + [sym__list_task] = STATE(974), + [sym__list_item_task] = STATE(680), + [sym_list_marker_task] = STATE(48), + [sym__list_definition] = STATE(974), + [sym__list_item_definition] = STATE(804), + [sym__list_decimal_period] = STATE(974), + [sym__list_item_decimal_period] = STATE(837), + [sym__list_decimal_paren] = STATE(974), + [sym__list_item_decimal_paren] = STATE(703), + [sym__list_decimal_parens] = STATE(974), + [sym__list_item_decimal_parens] = STATE(715), + [sym__list_lower_alpha_period] = STATE(974), + [sym__list_item_lower_alpha_period] = STATE(739), + [sym__list_lower_alpha_paren] = STATE(974), + [sym__list_item_lower_alpha_paren] = STATE(754), + [sym__list_lower_alpha_parens] = STATE(974), + [sym__list_item_lower_alpha_parens] = STATE(755), + [sym__list_upper_alpha_period] = STATE(974), + [sym__list_item_upper_alpha_period] = STATE(758), + [sym__list_upper_alpha_paren] = STATE(974), + [sym__list_item_upper_alpha_paren] = STATE(759), + [sym__list_upper_alpha_parens] = STATE(974), + [sym__list_item_upper_alpha_parens] = STATE(766), + [sym__list_lower_roman_period] = STATE(974), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(974), + [sym__list_item_lower_roman_paren] = STATE(770), + [sym__list_lower_roman_parens] = STATE(974), + [sym__list_item_lower_roman_parens] = STATE(773), + [sym__list_upper_roman_period] = STATE(974), + [sym__list_item_upper_roman_period] = STATE(775), + [sym__list_upper_roman_paren] = STATE(974), + [sym__list_item_upper_roman_paren] = STATE(791), + [sym__list_upper_roman_parens] = STATE(974), + [sym__list_item_upper_roman_parens] = STATE(793), + [sym_list_item_content] = STATE(788), + [sym_table] = STATE(1104), + [sym__table_row] = STATE(248), + [sym_table_header] = STATE(248), + [sym_table_separator] = STATE(248), + [sym_table_row] = STATE(248), + [sym_footnote] = STATE(1104), + [sym_footnote_marker_begin] = STATE(1141), + [sym_div] = STATE(1104), + [sym__div_marker_begin] = STATE(1023), + [sym_code_block] = STATE(1104), + [sym_raw_block] = STATE(1104), + [sym_thematic_break] = STATE(1104), + [sym_block_quote] = STATE(1104), + [sym__block_quote_prefix] = STATE(222), + [sym_link_reference_definition] = STATE(1104), + [sym_block_attribute] = STATE(1104), + [sym__paragraph] = STATE(1104), + [sym__paragraph_content] = STATE(738), + [sym__paragraph_inline_content] = STATE(799), + [sym__inline] = STATE(629), + [sym__symbol_fallback] = STATE(285), + [aux_sym__list_dash_repeat1] = STATE(354), + [aux_sym__list_plus_repeat1] = STATE(355), + [aux_sym__list_star_repeat1] = STATE(356), + [aux_sym__list_task_repeat1] = STATE(335), + [aux_sym__list_definition_repeat1] = STATE(479), + [aux_sym__list_decimal_period_repeat1] = STATE(480), + [aux_sym__list_decimal_paren_repeat1] = STATE(481), + [aux_sym__list_decimal_parens_repeat1] = STATE(482), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(483), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(484), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(485), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(486), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(487), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(488), + [aux_sym__list_lower_roman_period_repeat1] = STATE(489), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(490), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(491), + [aux_sym__list_upper_roman_period_repeat1] = STATE(492), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(493), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(494), + [aux_sym_table_repeat1] = STATE(248), + [aux_sym__block_quote_prefix_repeat1] = STATE(235), + [aux_sym__inline_repeat1] = STATE(285), + [anon_sym_LBRACK] = ACTIONS(364), + [anon_sym_LBRACK_CARET] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(366), + [anon_sym_DOT] = ACTIONS(11), + [aux_sym_identifier_token1] = ACTIONS(11), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_PERCENT] = ACTIONS(11), + [sym__newline] = ACTIONS(416), + [sym__heading_begin] = ACTIONS(370), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(372), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(374), + [sym__block_quote_continuation] = ACTIONS(376), + [sym__thematic_break_dash] = ACTIONS(378), + [sym__thematic_break_star] = ACTIONS(378), + [sym__table_header_begin] = ACTIONS(380), + [sym__table_separator_begin] = ACTIONS(382), + [sym__table_row_begin] = ACTIONS(384), }, [40] = { - [sym__block_with_heading] = STATE(1046), - [sym__block_element] = STATE(1046), - [sym_heading] = STATE(1046), - [sym_list] = STATE(1046), - [sym__list_dash] = STATE(1006), - [sym__list_item_dash] = STATE(636), - [sym__list_plus] = STATE(1006), - [sym__list_item_plus] = STATE(637), - [sym__list_star] = STATE(1006), - [sym__list_item_star] = STATE(671), - [sym__list_task] = STATE(1006), - [sym__list_item_task] = STATE(691), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(1006), - [sym__list_item_definition] = STATE(896), - [sym__list_decimal_period] = STATE(1006), - [sym__list_item_decimal_period] = STATE(841), - [sym__list_decimal_paren] = STATE(1006), - [sym__list_item_decimal_paren] = STATE(796), - [sym__list_decimal_parens] = STATE(1006), - [sym__list_item_decimal_parens] = STATE(716), - [sym__list_lower_alpha_period] = STATE(1006), - [sym__list_item_lower_alpha_period] = STATE(722), - [sym__list_lower_alpha_paren] = STATE(1006), - [sym__list_item_lower_alpha_paren] = STATE(801), - [sym__list_lower_alpha_parens] = STATE(1006), - [sym__list_item_lower_alpha_parens] = STATE(813), - [sym__list_upper_alpha_period] = STATE(1006), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(1006), - [sym__list_item_upper_alpha_paren] = STATE(706), - [sym__list_upper_alpha_parens] = STATE(1006), - [sym__list_item_upper_alpha_parens] = STATE(707), - [sym__list_lower_roman_period] = STATE(1006), - [sym__list_item_lower_roman_period] = STATE(725), - [sym__list_lower_roman_paren] = STATE(1006), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(1006), - [sym__list_item_lower_roman_parens] = STATE(736), - [sym__list_upper_roman_period] = STATE(1006), - [sym__list_item_upper_roman_period] = STATE(742), - [sym__list_upper_roman_paren] = STATE(1006), - [sym__list_item_upper_roman_paren] = STATE(743), - [sym__list_upper_roman_parens] = STATE(1006), - [sym__list_item_upper_roman_parens] = STATE(762), - [sym_table] = STATE(1046), - [sym__table_content] = STATE(310), - [sym_table_separator] = STATE(310), - [sym_table_row] = STATE(331), - [sym_footnote] = STATE(1046), - [sym_footnote_marker_begin] = STATE(1176), - [sym_footnote_content] = STATE(961), - [sym_div] = STATE(1046), - [sym__div_marker_begin] = STATE(1026), - [sym_code_block] = STATE(1046), - [sym_raw_block] = STATE(1046), - [sym_thematic_break] = STATE(1046), - [sym_block_quote] = STATE(1046), - [sym__block_quote_prefix] = STATE(231), - [sym_link_reference_definition] = STATE(1046), - [sym_block_attribute] = STATE(1046), - [sym__paragraph] = STATE(1046), - [sym__paragraph_content] = STATE(705), - [sym__paragraph_inline_content] = STATE(775), - [sym__inline] = STATE(616), - [sym__symbol_fallback] = STATE(297), - [aux_sym__list_dash_repeat1] = STATE(355), - [aux_sym__list_plus_repeat1] = STATE(356), - [aux_sym__list_star_repeat1] = STATE(362), - [aux_sym__list_task_repeat1] = STATE(346), - [aux_sym__list_definition_repeat1] = STATE(483), - [aux_sym__list_decimal_period_repeat1] = STATE(484), - [aux_sym__list_decimal_paren_repeat1] = STATE(485), - [aux_sym__list_decimal_parens_repeat1] = STATE(486), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(487), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(488), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(489), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(490), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(491), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(492), - [aux_sym__list_lower_roman_period_repeat1] = STATE(493), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(494), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(495), - [aux_sym__list_upper_roman_period_repeat1] = STATE(581), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(497), - [aux_sym_table_repeat1] = STATE(310), - [aux_sym__block_quote_prefix_repeat1] = STATE(253), - [aux_sym__inline_repeat1] = STATE(297), - [anon_sym_LBRACK] = ACTIONS(338), - [anon_sym_PIPE] = ACTIONS(340), - [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(342), - [anon_sym_DOT] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(13), - [aux_sym__inline_token1] = ACTIONS(13), - [anon_sym_LBRACE_DASH] = ACTIONS(13), - [anon_sym_POUND] = ACTIONS(13), - [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(386), - [sym__heading_begin] = ACTIONS(346), - [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(348), - [sym_list_marker_dash] = ACTIONS(25), - [sym_list_marker_star] = ACTIONS(27), - [sym_list_marker_plus] = ACTIONS(29), - [sym__list_marker_task_begin] = ACTIONS(31), - [sym_list_marker_definition] = ACTIONS(33), - [sym_list_marker_decimal_period] = ACTIONS(35), - [sym_list_marker_lower_alpha_period] = ACTIONS(37), - [sym_list_marker_upper_alpha_period] = ACTIONS(39), - [sym_list_marker_lower_roman_period] = ACTIONS(41), - [sym_list_marker_upper_roman_period] = ACTIONS(43), - [sym_list_marker_decimal_paren] = ACTIONS(45), - [sym_list_marker_lower_alpha_paren] = ACTIONS(47), - [sym_list_marker_upper_alpha_paren] = ACTIONS(49), - [sym_list_marker_lower_roman_paren] = ACTIONS(51), - [sym_list_marker_upper_roman_paren] = ACTIONS(53), - [sym_list_marker_decimal_parens] = ACTIONS(55), - [sym_list_marker_lower_alpha_parens] = ACTIONS(57), - [sym_list_marker_upper_alpha_parens] = ACTIONS(59), - [sym_list_marker_lower_roman_parens] = ACTIONS(61), - [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(350), - [sym__block_quote_continuation] = ACTIONS(352), - [sym__thematic_break_dash] = ACTIONS(354), - [sym__thematic_break_star] = ACTIONS(354), + [sym__block_with_heading] = STATE(1105), + [sym__block_element] = STATE(1105), + [sym_heading] = STATE(1105), + [sym_list] = STATE(1105), + [sym__list_dash] = STATE(974), + [sym__list_item_dash] = STATE(687), + [sym__list_plus] = STATE(974), + [sym__list_item_plus] = STATE(691), + [sym__list_star] = STATE(974), + [sym__list_item_star] = STATE(673), + [sym__list_task] = STATE(974), + [sym__list_item_task] = STATE(680), + [sym_list_marker_task] = STATE(48), + [sym__list_definition] = STATE(974), + [sym__list_item_definition] = STATE(804), + [sym__list_decimal_period] = STATE(974), + [sym__list_item_decimal_period] = STATE(837), + [sym__list_decimal_paren] = STATE(974), + [sym__list_item_decimal_paren] = STATE(703), + [sym__list_decimal_parens] = STATE(974), + [sym__list_item_decimal_parens] = STATE(715), + [sym__list_lower_alpha_period] = STATE(974), + [sym__list_item_lower_alpha_period] = STATE(739), + [sym__list_lower_alpha_paren] = STATE(974), + [sym__list_item_lower_alpha_paren] = STATE(754), + [sym__list_lower_alpha_parens] = STATE(974), + [sym__list_item_lower_alpha_parens] = STATE(755), + [sym__list_upper_alpha_period] = STATE(974), + [sym__list_item_upper_alpha_period] = STATE(758), + [sym__list_upper_alpha_paren] = STATE(974), + [sym__list_item_upper_alpha_paren] = STATE(759), + [sym__list_upper_alpha_parens] = STATE(974), + [sym__list_item_upper_alpha_parens] = STATE(766), + [sym__list_lower_roman_period] = STATE(974), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(974), + [sym__list_item_lower_roman_paren] = STATE(770), + [sym__list_lower_roman_parens] = STATE(974), + [sym__list_item_lower_roman_parens] = STATE(773), + [sym__list_upper_roman_period] = STATE(974), + [sym__list_item_upper_roman_period] = STATE(775), + [sym__list_upper_roman_paren] = STATE(974), + [sym__list_item_upper_roman_paren] = STATE(791), + [sym__list_upper_roman_parens] = STATE(974), + [sym__list_item_upper_roman_parens] = STATE(793), + [sym_list_item_content] = STATE(792), + [sym_table] = STATE(1105), + [sym__table_row] = STATE(248), + [sym_table_header] = STATE(248), + [sym_table_separator] = STATE(248), + [sym_table_row] = STATE(248), + [sym_footnote] = STATE(1105), + [sym_footnote_marker_begin] = STATE(1141), + [sym_div] = STATE(1105), + [sym__div_marker_begin] = STATE(1023), + [sym_code_block] = STATE(1105), + [sym_raw_block] = STATE(1105), + [sym_thematic_break] = STATE(1105), + [sym_block_quote] = STATE(1105), + [sym__block_quote_prefix] = STATE(222), + [sym_link_reference_definition] = STATE(1105), + [sym_block_attribute] = STATE(1105), + [sym__paragraph] = STATE(1105), + [sym__paragraph_content] = STATE(738), + [sym__paragraph_inline_content] = STATE(799), + [sym__inline] = STATE(629), + [sym__symbol_fallback] = STATE(285), + [aux_sym__list_dash_repeat1] = STATE(354), + [aux_sym__list_plus_repeat1] = STATE(355), + [aux_sym__list_star_repeat1] = STATE(356), + [aux_sym__list_task_repeat1] = STATE(335), + [aux_sym__list_definition_repeat1] = STATE(479), + [aux_sym__list_decimal_period_repeat1] = STATE(480), + [aux_sym__list_decimal_paren_repeat1] = STATE(481), + [aux_sym__list_decimal_parens_repeat1] = STATE(482), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(483), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(484), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(485), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(486), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(487), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(488), + [aux_sym__list_lower_roman_period_repeat1] = STATE(489), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(490), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(491), + [aux_sym__list_upper_roman_period_repeat1] = STATE(492), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(493), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(494), + [aux_sym_table_repeat1] = STATE(248), + [aux_sym__block_quote_prefix_repeat1] = STATE(235), + [aux_sym__inline_repeat1] = STATE(285), + [anon_sym_LBRACK] = ACTIONS(364), + [anon_sym_LBRACK_CARET] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(366), + [anon_sym_DOT] = ACTIONS(11), + [aux_sym_identifier_token1] = ACTIONS(11), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_PERCENT] = ACTIONS(11), + [sym__newline] = ACTIONS(418), + [sym__heading_begin] = ACTIONS(370), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(372), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(374), + [sym__block_quote_continuation] = ACTIONS(376), + [sym__thematic_break_dash] = ACTIONS(378), + [sym__thematic_break_star] = ACTIONS(378), + [sym__table_header_begin] = ACTIONS(380), + [sym__table_separator_begin] = ACTIONS(382), + [sym__table_row_begin] = ACTIONS(384), }, [41] = { + [sym__block_with_heading] = STATE(1106), + [sym__block_element] = STATE(1106), + [sym_heading] = STATE(1106), + [sym_list] = STATE(1106), + [sym__list_dash] = STATE(974), + [sym__list_item_dash] = STATE(687), + [sym__list_plus] = STATE(974), + [sym__list_item_plus] = STATE(691), + [sym__list_star] = STATE(974), + [sym__list_item_star] = STATE(673), + [sym__list_task] = STATE(974), + [sym__list_item_task] = STATE(680), + [sym_list_marker_task] = STATE(48), + [sym__list_definition] = STATE(974), + [sym__list_item_definition] = STATE(804), + [sym__list_decimal_period] = STATE(974), + [sym__list_item_decimal_period] = STATE(837), + [sym__list_decimal_paren] = STATE(974), + [sym__list_item_decimal_paren] = STATE(703), + [sym__list_decimal_parens] = STATE(974), + [sym__list_item_decimal_parens] = STATE(715), + [sym__list_lower_alpha_period] = STATE(974), + [sym__list_item_lower_alpha_period] = STATE(739), + [sym__list_lower_alpha_paren] = STATE(974), + [sym__list_item_lower_alpha_paren] = STATE(754), + [sym__list_lower_alpha_parens] = STATE(974), + [sym__list_item_lower_alpha_parens] = STATE(755), + [sym__list_upper_alpha_period] = STATE(974), + [sym__list_item_upper_alpha_period] = STATE(758), + [sym__list_upper_alpha_paren] = STATE(974), + [sym__list_item_upper_alpha_paren] = STATE(759), + [sym__list_upper_alpha_parens] = STATE(974), + [sym__list_item_upper_alpha_parens] = STATE(766), + [sym__list_lower_roman_period] = STATE(974), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(974), + [sym__list_item_lower_roman_paren] = STATE(770), + [sym__list_lower_roman_parens] = STATE(974), + [sym__list_item_lower_roman_parens] = STATE(773), + [sym__list_upper_roman_period] = STATE(974), + [sym__list_item_upper_roman_period] = STATE(775), + [sym__list_upper_roman_paren] = STATE(974), + [sym__list_item_upper_roman_paren] = STATE(791), + [sym__list_upper_roman_parens] = STATE(974), + [sym__list_item_upper_roman_parens] = STATE(793), + [sym_list_item_content] = STATE(802), + [sym_table] = STATE(1106), + [sym__table_row] = STATE(248), + [sym_table_header] = STATE(248), + [sym_table_separator] = STATE(248), + [sym_table_row] = STATE(248), + [sym_footnote] = STATE(1106), + [sym_footnote_marker_begin] = STATE(1141), + [sym_div] = STATE(1106), + [sym__div_marker_begin] = STATE(1023), + [sym_code_block] = STATE(1106), + [sym_raw_block] = STATE(1106), + [sym_thematic_break] = STATE(1106), + [sym_block_quote] = STATE(1106), + [sym__block_quote_prefix] = STATE(222), + [sym_link_reference_definition] = STATE(1106), + [sym_block_attribute] = STATE(1106), + [sym__paragraph] = STATE(1106), + [sym__paragraph_content] = STATE(738), + [sym__paragraph_inline_content] = STATE(799), + [sym__inline] = STATE(629), + [sym__symbol_fallback] = STATE(285), + [aux_sym__list_dash_repeat1] = STATE(354), + [aux_sym__list_plus_repeat1] = STATE(355), + [aux_sym__list_star_repeat1] = STATE(356), + [aux_sym__list_task_repeat1] = STATE(335), + [aux_sym__list_definition_repeat1] = STATE(479), + [aux_sym__list_decimal_period_repeat1] = STATE(480), + [aux_sym__list_decimal_paren_repeat1] = STATE(481), + [aux_sym__list_decimal_parens_repeat1] = STATE(482), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(483), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(484), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(485), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(486), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(487), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(488), + [aux_sym__list_lower_roman_period_repeat1] = STATE(489), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(490), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(491), + [aux_sym__list_upper_roman_period_repeat1] = STATE(492), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(493), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(494), + [aux_sym_table_repeat1] = STATE(248), + [aux_sym__block_quote_prefix_repeat1] = STATE(235), + [aux_sym__inline_repeat1] = STATE(285), + [anon_sym_LBRACK] = ACTIONS(364), + [anon_sym_LBRACK_CARET] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(366), + [anon_sym_DOT] = ACTIONS(11), + [aux_sym_identifier_token1] = ACTIONS(11), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_PERCENT] = ACTIONS(11), + [sym__newline] = ACTIONS(420), + [sym__heading_begin] = ACTIONS(370), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(372), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(374), + [sym__block_quote_continuation] = ACTIONS(376), + [sym__thematic_break_dash] = ACTIONS(378), + [sym__thematic_break_star] = ACTIONS(378), + [sym__table_header_begin] = ACTIONS(380), + [sym__table_separator_begin] = ACTIONS(382), + [sym__table_row_begin] = ACTIONS(384), + }, + [42] = { + [sym__block_with_heading] = STATE(1038), + [sym__block_element] = STATE(1038), + [sym_heading] = STATE(1038), + [sym_list] = STATE(1038), + [sym__list_dash] = STATE(974), + [sym__list_item_dash] = STATE(687), + [sym__list_plus] = STATE(974), + [sym__list_item_plus] = STATE(691), + [sym__list_star] = STATE(974), + [sym__list_item_star] = STATE(673), + [sym__list_task] = STATE(974), + [sym__list_item_task] = STATE(680), + [sym_list_marker_task] = STATE(48), + [sym__list_definition] = STATE(974), + [sym__list_item_definition] = STATE(804), + [sym__list_decimal_period] = STATE(974), + [sym__list_item_decimal_period] = STATE(837), + [sym__list_decimal_paren] = STATE(974), + [sym__list_item_decimal_paren] = STATE(703), + [sym__list_decimal_parens] = STATE(974), + [sym__list_item_decimal_parens] = STATE(715), + [sym__list_lower_alpha_period] = STATE(974), + [sym__list_item_lower_alpha_period] = STATE(739), + [sym__list_lower_alpha_paren] = STATE(974), + [sym__list_item_lower_alpha_paren] = STATE(754), + [sym__list_lower_alpha_parens] = STATE(974), + [sym__list_item_lower_alpha_parens] = STATE(755), + [sym__list_upper_alpha_period] = STATE(974), + [sym__list_item_upper_alpha_period] = STATE(758), + [sym__list_upper_alpha_paren] = STATE(974), + [sym__list_item_upper_alpha_paren] = STATE(759), + [sym__list_upper_alpha_parens] = STATE(974), + [sym__list_item_upper_alpha_parens] = STATE(766), + [sym__list_lower_roman_period] = STATE(974), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(974), + [sym__list_item_lower_roman_paren] = STATE(770), + [sym__list_lower_roman_parens] = STATE(974), + [sym__list_item_lower_roman_parens] = STATE(773), + [sym__list_upper_roman_period] = STATE(974), + [sym__list_item_upper_roman_period] = STATE(775), + [sym__list_upper_roman_paren] = STATE(974), + [sym__list_item_upper_roman_paren] = STATE(791), + [sym__list_upper_roman_parens] = STATE(974), + [sym__list_item_upper_roman_parens] = STATE(793), + [sym_table] = STATE(1038), + [sym__table_row] = STATE(248), + [sym_table_header] = STATE(248), + [sym_table_separator] = STATE(248), + [sym_table_row] = STATE(248), + [sym_footnote] = STATE(1038), + [sym_footnote_marker_begin] = STATE(1141), + [sym_footnote_content] = STATE(1128), + [sym_div] = STATE(1038), + [sym__div_marker_begin] = STATE(1023), + [sym_code_block] = STATE(1038), + [sym_raw_block] = STATE(1038), + [sym_thematic_break] = STATE(1038), + [sym_block_quote] = STATE(1038), + [sym__block_quote_prefix] = STATE(222), + [sym_link_reference_definition] = STATE(1038), + [sym_block_attribute] = STATE(1038), + [sym__paragraph] = STATE(1038), + [sym__paragraph_content] = STATE(738), + [sym__paragraph_inline_content] = STATE(799), + [sym__inline] = STATE(629), + [sym__symbol_fallback] = STATE(285), + [aux_sym__list_dash_repeat1] = STATE(354), + [aux_sym__list_plus_repeat1] = STATE(355), + [aux_sym__list_star_repeat1] = STATE(356), + [aux_sym__list_task_repeat1] = STATE(335), + [aux_sym__list_definition_repeat1] = STATE(479), + [aux_sym__list_decimal_period_repeat1] = STATE(480), + [aux_sym__list_decimal_paren_repeat1] = STATE(481), + [aux_sym__list_decimal_parens_repeat1] = STATE(482), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(483), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(484), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(485), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(486), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(487), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(488), + [aux_sym__list_lower_roman_period_repeat1] = STATE(489), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(490), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(491), + [aux_sym__list_upper_roman_period_repeat1] = STATE(492), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(493), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(494), + [aux_sym_table_repeat1] = STATE(248), + [aux_sym__block_quote_prefix_repeat1] = STATE(235), + [aux_sym__inline_repeat1] = STATE(285), + [anon_sym_LBRACK] = ACTIONS(364), + [anon_sym_LBRACK_CARET] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(366), + [anon_sym_DOT] = ACTIONS(11), + [aux_sym_identifier_token1] = ACTIONS(11), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_PERCENT] = ACTIONS(11), + [sym__newline] = ACTIONS(422), + [sym__heading_begin] = ACTIONS(370), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(372), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(374), + [sym__block_quote_continuation] = ACTIONS(376), + [sym__thematic_break_dash] = ACTIONS(378), + [sym__thematic_break_star] = ACTIONS(378), + [sym__table_header_begin] = ACTIONS(380), + [sym__table_separator_begin] = ACTIONS(382), + [sym__table_row_begin] = ACTIONS(384), + }, + [43] = { + [sym__block_with_heading] = STATE(1107), + [sym__block_element] = STATE(1107), + [sym_heading] = STATE(1107), + [sym_list] = STATE(1107), + [sym__list_dash] = STATE(974), + [sym__list_item_dash] = STATE(687), + [sym__list_plus] = STATE(974), + [sym__list_item_plus] = STATE(691), + [sym__list_star] = STATE(974), + [sym__list_item_star] = STATE(673), + [sym__list_task] = STATE(974), + [sym__list_item_task] = STATE(680), + [sym_list_marker_task] = STATE(48), + [sym__list_definition] = STATE(974), + [sym__list_item_definition] = STATE(804), + [sym__list_decimal_period] = STATE(974), + [sym__list_item_decimal_period] = STATE(837), + [sym__list_decimal_paren] = STATE(974), + [sym__list_item_decimal_paren] = STATE(703), + [sym__list_decimal_parens] = STATE(974), + [sym__list_item_decimal_parens] = STATE(715), + [sym__list_lower_alpha_period] = STATE(974), + [sym__list_item_lower_alpha_period] = STATE(739), + [sym__list_lower_alpha_paren] = STATE(974), + [sym__list_item_lower_alpha_paren] = STATE(754), + [sym__list_lower_alpha_parens] = STATE(974), + [sym__list_item_lower_alpha_parens] = STATE(755), + [sym__list_upper_alpha_period] = STATE(974), + [sym__list_item_upper_alpha_period] = STATE(758), + [sym__list_upper_alpha_paren] = STATE(974), + [sym__list_item_upper_alpha_paren] = STATE(759), + [sym__list_upper_alpha_parens] = STATE(974), + [sym__list_item_upper_alpha_parens] = STATE(766), + [sym__list_lower_roman_period] = STATE(974), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(974), + [sym__list_item_lower_roman_paren] = STATE(770), + [sym__list_lower_roman_parens] = STATE(974), + [sym__list_item_lower_roman_parens] = STATE(773), + [sym__list_upper_roman_period] = STATE(974), + [sym__list_item_upper_roman_period] = STATE(775), + [sym__list_upper_roman_paren] = STATE(974), + [sym__list_item_upper_roman_paren] = STATE(791), + [sym__list_upper_roman_parens] = STATE(974), + [sym__list_item_upper_roman_parens] = STATE(793), + [sym_list_item_content] = STATE(803), + [sym_table] = STATE(1107), + [sym__table_row] = STATE(248), + [sym_table_header] = STATE(248), + [sym_table_separator] = STATE(248), + [sym_table_row] = STATE(248), + [sym_footnote] = STATE(1107), + [sym_footnote_marker_begin] = STATE(1141), + [sym_div] = STATE(1107), + [sym__div_marker_begin] = STATE(1023), + [sym_code_block] = STATE(1107), + [sym_raw_block] = STATE(1107), + [sym_thematic_break] = STATE(1107), + [sym_block_quote] = STATE(1107), + [sym__block_quote_prefix] = STATE(222), + [sym_link_reference_definition] = STATE(1107), + [sym_block_attribute] = STATE(1107), + [sym__paragraph] = STATE(1107), + [sym__paragraph_content] = STATE(738), + [sym__paragraph_inline_content] = STATE(799), + [sym__inline] = STATE(629), + [sym__symbol_fallback] = STATE(285), + [aux_sym__list_dash_repeat1] = STATE(354), + [aux_sym__list_plus_repeat1] = STATE(355), + [aux_sym__list_star_repeat1] = STATE(356), + [aux_sym__list_task_repeat1] = STATE(335), + [aux_sym__list_definition_repeat1] = STATE(479), + [aux_sym__list_decimal_period_repeat1] = STATE(480), + [aux_sym__list_decimal_paren_repeat1] = STATE(481), + [aux_sym__list_decimal_parens_repeat1] = STATE(482), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(483), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(484), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(485), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(486), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(487), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(488), + [aux_sym__list_lower_roman_period_repeat1] = STATE(489), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(490), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(491), + [aux_sym__list_upper_roman_period_repeat1] = STATE(492), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(493), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(494), + [aux_sym_table_repeat1] = STATE(248), + [aux_sym__block_quote_prefix_repeat1] = STATE(235), + [aux_sym__inline_repeat1] = STATE(285), + [anon_sym_LBRACK] = ACTIONS(364), + [anon_sym_LBRACK_CARET] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(366), + [anon_sym_DOT] = ACTIONS(11), + [aux_sym_identifier_token1] = ACTIONS(11), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_PERCENT] = ACTIONS(11), + [sym__newline] = ACTIONS(424), + [sym__heading_begin] = ACTIONS(370), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(372), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(374), + [sym__block_quote_continuation] = ACTIONS(376), + [sym__thematic_break_dash] = ACTIONS(378), + [sym__thematic_break_star] = ACTIONS(378), + [sym__table_header_begin] = ACTIONS(380), + [sym__table_separator_begin] = ACTIONS(382), + [sym__table_row_begin] = ACTIONS(384), + }, + [44] = { + [sym__block_with_heading] = STATE(1057), + [sym__block_element] = STATE(1057), + [sym_heading] = STATE(1057), + [sym_list] = STATE(1057), + [sym__list_dash] = STATE(974), + [sym__list_item_dash] = STATE(687), + [sym__list_plus] = STATE(974), + [sym__list_item_plus] = STATE(691), + [sym__list_star] = STATE(974), + [sym__list_item_star] = STATE(673), + [sym__list_task] = STATE(974), + [sym__list_item_task] = STATE(680), + [sym_list_marker_task] = STATE(48), + [sym__list_definition] = STATE(974), + [sym__list_item_definition] = STATE(804), + [sym__list_decimal_period] = STATE(974), + [sym__list_item_decimal_period] = STATE(837), + [sym__list_decimal_paren] = STATE(974), + [sym__list_item_decimal_paren] = STATE(703), + [sym__list_decimal_parens] = STATE(974), + [sym__list_item_decimal_parens] = STATE(715), + [sym__list_lower_alpha_period] = STATE(974), + [sym__list_item_lower_alpha_period] = STATE(739), + [sym__list_lower_alpha_paren] = STATE(974), + [sym__list_item_lower_alpha_paren] = STATE(754), + [sym__list_lower_alpha_parens] = STATE(974), + [sym__list_item_lower_alpha_parens] = STATE(755), + [sym__list_upper_alpha_period] = STATE(974), + [sym__list_item_upper_alpha_period] = STATE(758), + [sym__list_upper_alpha_paren] = STATE(974), + [sym__list_item_upper_alpha_paren] = STATE(759), + [sym__list_upper_alpha_parens] = STATE(974), + [sym__list_item_upper_alpha_parens] = STATE(766), + [sym__list_lower_roman_period] = STATE(974), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(974), + [sym__list_item_lower_roman_paren] = STATE(770), + [sym__list_lower_roman_parens] = STATE(974), + [sym__list_item_lower_roman_parens] = STATE(773), + [sym__list_upper_roman_period] = STATE(974), + [sym__list_item_upper_roman_period] = STATE(775), + [sym__list_upper_roman_paren] = STATE(974), + [sym__list_item_upper_roman_paren] = STATE(791), + [sym__list_upper_roman_parens] = STATE(974), + [sym__list_item_upper_roman_parens] = STATE(793), + [sym_table] = STATE(1057), + [sym__table_row] = STATE(248), + [sym_table_header] = STATE(248), + [sym_table_separator] = STATE(248), + [sym_table_row] = STATE(248), + [sym_footnote] = STATE(1057), + [sym_footnote_marker_begin] = STATE(1141), + [sym_footnote_content] = STATE(843), + [sym_div] = STATE(1057), + [sym__div_marker_begin] = STATE(1023), + [sym_code_block] = STATE(1057), + [sym_raw_block] = STATE(1057), + [sym_thematic_break] = STATE(1057), + [sym_block_quote] = STATE(1057), + [sym__block_quote_prefix] = STATE(222), + [sym_link_reference_definition] = STATE(1057), + [sym_block_attribute] = STATE(1057), + [sym__paragraph] = STATE(1057), + [sym__paragraph_content] = STATE(738), + [sym__paragraph_inline_content] = STATE(799), + [sym__inline] = STATE(629), + [sym__symbol_fallback] = STATE(285), + [aux_sym__list_dash_repeat1] = STATE(354), + [aux_sym__list_plus_repeat1] = STATE(355), + [aux_sym__list_star_repeat1] = STATE(356), + [aux_sym__list_task_repeat1] = STATE(335), + [aux_sym__list_definition_repeat1] = STATE(479), + [aux_sym__list_decimal_period_repeat1] = STATE(480), + [aux_sym__list_decimal_paren_repeat1] = STATE(481), + [aux_sym__list_decimal_parens_repeat1] = STATE(482), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(483), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(484), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(485), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(486), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(487), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(488), + [aux_sym__list_lower_roman_period_repeat1] = STATE(489), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(490), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(491), + [aux_sym__list_upper_roman_period_repeat1] = STATE(492), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(493), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(494), + [aux_sym_table_repeat1] = STATE(248), + [aux_sym__block_quote_prefix_repeat1] = STATE(235), + [aux_sym__inline_repeat1] = STATE(285), + [anon_sym_LBRACK] = ACTIONS(364), + [anon_sym_LBRACK_CARET] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(366), + [anon_sym_DOT] = ACTIONS(11), + [aux_sym_identifier_token1] = ACTIONS(11), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_PERCENT] = ACTIONS(11), + [sym__newline] = ACTIONS(426), + [sym__heading_begin] = ACTIONS(370), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(372), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(374), + [sym__block_quote_continuation] = ACTIONS(376), + [sym__thematic_break_dash] = ACTIONS(378), + [sym__thematic_break_star] = ACTIONS(378), + [sym__table_header_begin] = ACTIONS(380), + [sym__table_separator_begin] = ACTIONS(382), + [sym__table_row_begin] = ACTIONS(384), + }, + [45] = { + [sym__block_with_heading] = STATE(1025), + [sym__block_element] = STATE(1025), + [sym_heading] = STATE(1025), + [sym_list] = STATE(1025), + [sym__list_dash] = STATE(974), + [sym__list_item_dash] = STATE(687), + [sym__list_plus] = STATE(974), + [sym__list_item_plus] = STATE(691), + [sym__list_star] = STATE(974), + [sym__list_item_star] = STATE(673), + [sym__list_task] = STATE(974), + [sym__list_item_task] = STATE(680), + [sym_list_marker_task] = STATE(48), + [sym__list_definition] = STATE(974), + [sym__list_item_definition] = STATE(804), + [sym__list_decimal_period] = STATE(974), + [sym__list_item_decimal_period] = STATE(837), + [sym__list_decimal_paren] = STATE(974), + [sym__list_item_decimal_paren] = STATE(703), + [sym__list_decimal_parens] = STATE(974), + [sym__list_item_decimal_parens] = STATE(715), + [sym__list_lower_alpha_period] = STATE(974), + [sym__list_item_lower_alpha_period] = STATE(739), + [sym__list_lower_alpha_paren] = STATE(974), + [sym__list_item_lower_alpha_paren] = STATE(754), + [sym__list_lower_alpha_parens] = STATE(974), + [sym__list_item_lower_alpha_parens] = STATE(755), + [sym__list_upper_alpha_period] = STATE(974), + [sym__list_item_upper_alpha_period] = STATE(758), + [sym__list_upper_alpha_paren] = STATE(974), + [sym__list_item_upper_alpha_paren] = STATE(759), + [sym__list_upper_alpha_parens] = STATE(974), + [sym__list_item_upper_alpha_parens] = STATE(766), + [sym__list_lower_roman_period] = STATE(974), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(974), + [sym__list_item_lower_roman_paren] = STATE(770), + [sym__list_lower_roman_parens] = STATE(974), + [sym__list_item_lower_roman_parens] = STATE(773), + [sym__list_upper_roman_period] = STATE(974), + [sym__list_item_upper_roman_period] = STATE(775), + [sym__list_upper_roman_paren] = STATE(974), + [sym__list_item_upper_roman_paren] = STATE(791), + [sym__list_upper_roman_parens] = STATE(974), + [sym__list_item_upper_roman_parens] = STATE(793), + [sym_list_item_content] = STATE(682), + [sym_table] = STATE(1025), + [sym__table_row] = STATE(248), + [sym_table_header] = STATE(248), + [sym_table_separator] = STATE(248), + [sym_table_row] = STATE(248), + [sym_footnote] = STATE(1025), + [sym_footnote_marker_begin] = STATE(1141), + [sym_div] = STATE(1025), + [sym__div_marker_begin] = STATE(1023), + [sym_code_block] = STATE(1025), + [sym_raw_block] = STATE(1025), + [sym_thematic_break] = STATE(1025), + [sym_block_quote] = STATE(1025), + [sym__block_quote_prefix] = STATE(222), + [sym_link_reference_definition] = STATE(1025), + [sym_block_attribute] = STATE(1025), + [sym__paragraph] = STATE(1025), + [sym__paragraph_content] = STATE(738), + [sym__paragraph_inline_content] = STATE(799), + [sym__inline] = STATE(629), + [sym__symbol_fallback] = STATE(285), + [aux_sym__list_dash_repeat1] = STATE(354), + [aux_sym__list_plus_repeat1] = STATE(355), + [aux_sym__list_star_repeat1] = STATE(356), + [aux_sym__list_task_repeat1] = STATE(335), + [aux_sym__list_definition_repeat1] = STATE(479), + [aux_sym__list_decimal_period_repeat1] = STATE(480), + [aux_sym__list_decimal_paren_repeat1] = STATE(481), + [aux_sym__list_decimal_parens_repeat1] = STATE(482), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(483), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(484), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(485), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(486), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(487), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(488), + [aux_sym__list_lower_roman_period_repeat1] = STATE(489), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(490), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(491), + [aux_sym__list_upper_roman_period_repeat1] = STATE(492), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(493), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(494), + [aux_sym_table_repeat1] = STATE(248), + [aux_sym__block_quote_prefix_repeat1] = STATE(235), + [aux_sym__inline_repeat1] = STATE(285), + [anon_sym_LBRACK] = ACTIONS(364), + [anon_sym_LBRACK_CARET] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(366), + [anon_sym_DOT] = ACTIONS(11), + [aux_sym_identifier_token1] = ACTIONS(11), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_PERCENT] = ACTIONS(11), + [sym__newline] = ACTIONS(394), + [sym__heading_begin] = ACTIONS(370), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(372), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(374), + [sym__block_quote_continuation] = ACTIONS(376), + [sym__thematic_break_dash] = ACTIONS(378), + [sym__thematic_break_star] = ACTIONS(378), + [sym__table_header_begin] = ACTIONS(380), + [sym__table_separator_begin] = ACTIONS(382), + [sym__table_row_begin] = ACTIONS(384), + }, + [46] = { + [sym__block_with_heading] = STATE(1044), + [sym__block_element] = STATE(1044), + [sym_heading] = STATE(1044), + [sym_list] = STATE(1044), + [sym__list_dash] = STATE(974), + [sym__list_item_dash] = STATE(687), + [sym__list_plus] = STATE(974), + [sym__list_item_plus] = STATE(691), + [sym__list_star] = STATE(974), + [sym__list_item_star] = STATE(673), + [sym__list_task] = STATE(974), + [sym__list_item_task] = STATE(680), + [sym_list_marker_task] = STATE(48), + [sym__list_definition] = STATE(974), + [sym__list_item_definition] = STATE(804), + [sym__list_decimal_period] = STATE(974), + [sym__list_item_decimal_period] = STATE(837), + [sym__list_decimal_paren] = STATE(974), + [sym__list_item_decimal_paren] = STATE(703), + [sym__list_decimal_parens] = STATE(974), + [sym__list_item_decimal_parens] = STATE(715), + [sym__list_lower_alpha_period] = STATE(974), + [sym__list_item_lower_alpha_period] = STATE(739), + [sym__list_lower_alpha_paren] = STATE(974), + [sym__list_item_lower_alpha_paren] = STATE(754), + [sym__list_lower_alpha_parens] = STATE(974), + [sym__list_item_lower_alpha_parens] = STATE(755), + [sym__list_upper_alpha_period] = STATE(974), + [sym__list_item_upper_alpha_period] = STATE(758), + [sym__list_upper_alpha_paren] = STATE(974), + [sym__list_item_upper_alpha_paren] = STATE(759), + [sym__list_upper_alpha_parens] = STATE(974), + [sym__list_item_upper_alpha_parens] = STATE(766), + [sym__list_lower_roman_period] = STATE(974), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(974), + [sym__list_item_lower_roman_paren] = STATE(770), + [sym__list_lower_roman_parens] = STATE(974), + [sym__list_item_lower_roman_parens] = STATE(773), + [sym__list_upper_roman_period] = STATE(974), + [sym__list_item_upper_roman_period] = STATE(775), + [sym__list_upper_roman_paren] = STATE(974), + [sym__list_item_upper_roman_paren] = STATE(791), + [sym__list_upper_roman_parens] = STATE(974), + [sym__list_item_upper_roman_parens] = STATE(793), + [sym_list_item_content] = STATE(683), + [sym_table] = STATE(1044), + [sym__table_row] = STATE(248), + [sym_table_header] = STATE(248), + [sym_table_separator] = STATE(248), + [sym_table_row] = STATE(248), + [sym_footnote] = STATE(1044), + [sym_footnote_marker_begin] = STATE(1141), + [sym_div] = STATE(1044), + [sym__div_marker_begin] = STATE(1023), + [sym_code_block] = STATE(1044), + [sym_raw_block] = STATE(1044), + [sym_thematic_break] = STATE(1044), + [sym_block_quote] = STATE(1044), + [sym__block_quote_prefix] = STATE(222), + [sym_link_reference_definition] = STATE(1044), + [sym_block_attribute] = STATE(1044), + [sym__paragraph] = STATE(1044), + [sym__paragraph_content] = STATE(738), + [sym__paragraph_inline_content] = STATE(799), + [sym__inline] = STATE(629), + [sym__symbol_fallback] = STATE(285), + [aux_sym__list_dash_repeat1] = STATE(354), + [aux_sym__list_plus_repeat1] = STATE(355), + [aux_sym__list_star_repeat1] = STATE(356), + [aux_sym__list_task_repeat1] = STATE(335), + [aux_sym__list_definition_repeat1] = STATE(479), + [aux_sym__list_decimal_period_repeat1] = STATE(480), + [aux_sym__list_decimal_paren_repeat1] = STATE(481), + [aux_sym__list_decimal_parens_repeat1] = STATE(482), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(483), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(484), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(485), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(486), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(487), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(488), + [aux_sym__list_lower_roman_period_repeat1] = STATE(489), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(490), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(491), + [aux_sym__list_upper_roman_period_repeat1] = STATE(492), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(493), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(494), + [aux_sym_table_repeat1] = STATE(248), + [aux_sym__block_quote_prefix_repeat1] = STATE(235), + [aux_sym__inline_repeat1] = STATE(285), + [anon_sym_LBRACK] = ACTIONS(364), + [anon_sym_LBRACK_CARET] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(366), + [anon_sym_DOT] = ACTIONS(11), + [aux_sym_identifier_token1] = ACTIONS(11), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_PERCENT] = ACTIONS(11), + [sym__newline] = ACTIONS(396), + [sym__heading_begin] = ACTIONS(370), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(372), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(374), + [sym__block_quote_continuation] = ACTIONS(376), + [sym__thematic_break_dash] = ACTIONS(378), + [sym__thematic_break_star] = ACTIONS(378), + [sym__table_header_begin] = ACTIONS(380), + [sym__table_separator_begin] = ACTIONS(382), + [sym__table_row_begin] = ACTIONS(384), + }, + [47] = { [sym__block_with_heading] = STATE(1076), [sym__block_element] = STATE(1076), [sym_heading] = STATE(1076), [sym_list] = STATE(1076), - [sym__list_dash] = STATE(1006), - [sym__list_item_dash] = STATE(636), - [sym__list_plus] = STATE(1006), - [sym__list_item_plus] = STATE(637), - [sym__list_star] = STATE(1006), - [sym__list_item_star] = STATE(671), - [sym__list_task] = STATE(1006), - [sym__list_item_task] = STATE(691), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(1006), - [sym__list_item_definition] = STATE(896), - [sym__list_decimal_period] = STATE(1006), - [sym__list_item_decimal_period] = STATE(841), - [sym__list_decimal_paren] = STATE(1006), - [sym__list_item_decimal_paren] = STATE(796), - [sym__list_decimal_parens] = STATE(1006), - [sym__list_item_decimal_parens] = STATE(716), - [sym__list_lower_alpha_period] = STATE(1006), - [sym__list_item_lower_alpha_period] = STATE(722), - [sym__list_lower_alpha_paren] = STATE(1006), - [sym__list_item_lower_alpha_paren] = STATE(801), - [sym__list_lower_alpha_parens] = STATE(1006), - [sym__list_item_lower_alpha_parens] = STATE(813), - [sym__list_upper_alpha_period] = STATE(1006), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(1006), - [sym__list_item_upper_alpha_paren] = STATE(706), - [sym__list_upper_alpha_parens] = STATE(1006), - [sym__list_item_upper_alpha_parens] = STATE(707), - [sym__list_lower_roman_period] = STATE(1006), - [sym__list_item_lower_roman_period] = STATE(725), - [sym__list_lower_roman_paren] = STATE(1006), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(1006), - [sym__list_item_lower_roman_parens] = STATE(736), - [sym__list_upper_roman_period] = STATE(1006), - [sym__list_item_upper_roman_period] = STATE(742), - [sym__list_upper_roman_paren] = STATE(1006), - [sym__list_item_upper_roman_paren] = STATE(743), - [sym__list_upper_roman_parens] = STATE(1006), - [sym__list_item_upper_roman_parens] = STATE(762), - [sym_list_item_content] = STATE(809), + [sym__list_dash] = STATE(974), + [sym__list_item_dash] = STATE(687), + [sym__list_plus] = STATE(974), + [sym__list_item_plus] = STATE(691), + [sym__list_star] = STATE(974), + [sym__list_item_star] = STATE(673), + [sym__list_task] = STATE(974), + [sym__list_item_task] = STATE(680), + [sym_list_marker_task] = STATE(48), + [sym__list_definition] = STATE(974), + [sym__list_item_definition] = STATE(804), + [sym__list_decimal_period] = STATE(974), + [sym__list_item_decimal_period] = STATE(837), + [sym__list_decimal_paren] = STATE(974), + [sym__list_item_decimal_paren] = STATE(703), + [sym__list_decimal_parens] = STATE(974), + [sym__list_item_decimal_parens] = STATE(715), + [sym__list_lower_alpha_period] = STATE(974), + [sym__list_item_lower_alpha_period] = STATE(739), + [sym__list_lower_alpha_paren] = STATE(974), + [sym__list_item_lower_alpha_paren] = STATE(754), + [sym__list_lower_alpha_parens] = STATE(974), + [sym__list_item_lower_alpha_parens] = STATE(755), + [sym__list_upper_alpha_period] = STATE(974), + [sym__list_item_upper_alpha_period] = STATE(758), + [sym__list_upper_alpha_paren] = STATE(974), + [sym__list_item_upper_alpha_paren] = STATE(759), + [sym__list_upper_alpha_parens] = STATE(974), + [sym__list_item_upper_alpha_parens] = STATE(766), + [sym__list_lower_roman_period] = STATE(974), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(974), + [sym__list_item_lower_roman_paren] = STATE(770), + [sym__list_lower_roman_parens] = STATE(974), + [sym__list_item_lower_roman_parens] = STATE(773), + [sym__list_upper_roman_period] = STATE(974), + [sym__list_item_upper_roman_period] = STATE(775), + [sym__list_upper_roman_paren] = STATE(974), + [sym__list_item_upper_roman_paren] = STATE(791), + [sym__list_upper_roman_parens] = STATE(974), + [sym__list_item_upper_roman_parens] = STATE(793), [sym_table] = STATE(1076), - [sym__table_content] = STATE(310), - [sym_table_separator] = STATE(310), - [sym_table_row] = STATE(331), + [sym__table_row] = STATE(248), + [sym_table_header] = STATE(248), + [sym_table_separator] = STATE(248), + [sym_table_row] = STATE(248), [sym_footnote] = STATE(1076), - [sym_footnote_marker_begin] = STATE(1176), + [sym_footnote_marker_begin] = STATE(1141), + [sym_footnote_content] = STATE(190), [sym_div] = STATE(1076), - [sym__div_marker_begin] = STATE(1026), + [sym__div_marker_begin] = STATE(1023), [sym_code_block] = STATE(1076), [sym_raw_block] = STATE(1076), [sym_thematic_break] = STATE(1076), [sym_block_quote] = STATE(1076), - [sym__block_quote_prefix] = STATE(231), + [sym__block_quote_prefix] = STATE(222), [sym_link_reference_definition] = STATE(1076), [sym_block_attribute] = STATE(1076), [sym__paragraph] = STATE(1076), - [sym__paragraph_content] = STATE(705), - [sym__paragraph_inline_content] = STATE(775), - [sym__inline] = STATE(616), - [sym__symbol_fallback] = STATE(297), - [aux_sym__list_dash_repeat1] = STATE(355), - [aux_sym__list_plus_repeat1] = STATE(356), - [aux_sym__list_star_repeat1] = STATE(362), - [aux_sym__list_task_repeat1] = STATE(346), - [aux_sym__list_definition_repeat1] = STATE(483), - [aux_sym__list_decimal_period_repeat1] = STATE(484), - [aux_sym__list_decimal_paren_repeat1] = STATE(485), - [aux_sym__list_decimal_parens_repeat1] = STATE(486), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(487), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(488), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(489), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(490), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(491), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(492), - [aux_sym__list_lower_roman_period_repeat1] = STATE(493), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(494), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(495), - [aux_sym__list_upper_roman_period_repeat1] = STATE(581), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(497), - [aux_sym_table_repeat1] = STATE(310), - [aux_sym__block_quote_prefix_repeat1] = STATE(253), - [aux_sym__inline_repeat1] = STATE(297), - [anon_sym_LBRACK] = ACTIONS(338), - [anon_sym_PIPE] = ACTIONS(340), - [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(342), - [anon_sym_DOT] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(13), - [aux_sym__inline_token1] = ACTIONS(13), - [anon_sym_LBRACE_DASH] = ACTIONS(13), - [anon_sym_POUND] = ACTIONS(13), - [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(388), - [sym__heading_begin] = ACTIONS(346), - [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(348), - [sym_list_marker_dash] = ACTIONS(25), - [sym_list_marker_star] = ACTIONS(27), - [sym_list_marker_plus] = ACTIONS(29), - [sym__list_marker_task_begin] = ACTIONS(31), - [sym_list_marker_definition] = ACTIONS(33), - [sym_list_marker_decimal_period] = ACTIONS(35), - [sym_list_marker_lower_alpha_period] = ACTIONS(37), - [sym_list_marker_upper_alpha_period] = ACTIONS(39), - [sym_list_marker_lower_roman_period] = ACTIONS(41), - [sym_list_marker_upper_roman_period] = ACTIONS(43), - [sym_list_marker_decimal_paren] = ACTIONS(45), - [sym_list_marker_lower_alpha_paren] = ACTIONS(47), - [sym_list_marker_upper_alpha_paren] = ACTIONS(49), - [sym_list_marker_lower_roman_paren] = ACTIONS(51), - [sym_list_marker_upper_roman_paren] = ACTIONS(53), - [sym_list_marker_decimal_parens] = ACTIONS(55), - [sym_list_marker_lower_alpha_parens] = ACTIONS(57), - [sym_list_marker_upper_alpha_parens] = ACTIONS(59), - [sym_list_marker_lower_roman_parens] = ACTIONS(61), - [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(350), - [sym__block_quote_continuation] = ACTIONS(352), - [sym__thematic_break_dash] = ACTIONS(354), - [sym__thematic_break_star] = ACTIONS(354), - }, - [42] = { - [sym__block_with_heading] = STATE(1078), - [sym__block_element] = STATE(1078), - [sym_heading] = STATE(1078), - [sym_list] = STATE(1078), - [sym__list_dash] = STATE(1006), - [sym__list_item_dash] = STATE(636), - [sym__list_plus] = STATE(1006), - [sym__list_item_plus] = STATE(637), - [sym__list_star] = STATE(1006), - [sym__list_item_star] = STATE(671), - [sym__list_task] = STATE(1006), - [sym__list_item_task] = STATE(691), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(1006), - [sym__list_item_definition] = STATE(896), - [sym__list_decimal_period] = STATE(1006), - [sym__list_item_decimal_period] = STATE(841), - [sym__list_decimal_paren] = STATE(1006), - [sym__list_item_decimal_paren] = STATE(796), - [sym__list_decimal_parens] = STATE(1006), - [sym__list_item_decimal_parens] = STATE(716), - [sym__list_lower_alpha_period] = STATE(1006), - [sym__list_item_lower_alpha_period] = STATE(722), - [sym__list_lower_alpha_paren] = STATE(1006), - [sym__list_item_lower_alpha_paren] = STATE(801), - [sym__list_lower_alpha_parens] = STATE(1006), - [sym__list_item_lower_alpha_parens] = STATE(813), - [sym__list_upper_alpha_period] = STATE(1006), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(1006), - [sym__list_item_upper_alpha_paren] = STATE(706), - [sym__list_upper_alpha_parens] = STATE(1006), - [sym__list_item_upper_alpha_parens] = STATE(707), - [sym__list_lower_roman_period] = STATE(1006), - [sym__list_item_lower_roman_period] = STATE(725), - [sym__list_lower_roman_paren] = STATE(1006), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(1006), - [sym__list_item_lower_roman_parens] = STATE(736), - [sym__list_upper_roman_period] = STATE(1006), - [sym__list_item_upper_roman_period] = STATE(742), - [sym__list_upper_roman_paren] = STATE(1006), - [sym__list_item_upper_roman_paren] = STATE(743), - [sym__list_upper_roman_parens] = STATE(1006), - [sym__list_item_upper_roman_parens] = STATE(762), - [sym_list_item_content] = STATE(689), - [sym_table] = STATE(1078), - [sym__table_content] = STATE(310), - [sym_table_separator] = STATE(310), - [sym_table_row] = STATE(331), - [sym_footnote] = STATE(1078), - [sym_footnote_marker_begin] = STATE(1176), - [sym_div] = STATE(1078), - [sym__div_marker_begin] = STATE(1026), - [sym_code_block] = STATE(1078), - [sym_raw_block] = STATE(1078), - [sym_thematic_break] = STATE(1078), - [sym_block_quote] = STATE(1078), - [sym__block_quote_prefix] = STATE(231), - [sym_link_reference_definition] = STATE(1078), - [sym_block_attribute] = STATE(1078), - [sym__paragraph] = STATE(1078), - [sym__paragraph_content] = STATE(705), - [sym__paragraph_inline_content] = STATE(775), - [sym__inline] = STATE(616), - [sym__symbol_fallback] = STATE(297), - [aux_sym__list_dash_repeat1] = STATE(355), - [aux_sym__list_plus_repeat1] = STATE(356), - [aux_sym__list_star_repeat1] = STATE(362), - [aux_sym__list_task_repeat1] = STATE(346), - [aux_sym__list_definition_repeat1] = STATE(483), - [aux_sym__list_decimal_period_repeat1] = STATE(484), - [aux_sym__list_decimal_paren_repeat1] = STATE(485), - [aux_sym__list_decimal_parens_repeat1] = STATE(486), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(487), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(488), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(489), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(490), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(491), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(492), - [aux_sym__list_lower_roman_period_repeat1] = STATE(493), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(494), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(495), - [aux_sym__list_upper_roman_period_repeat1] = STATE(581), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(497), - [aux_sym_table_repeat1] = STATE(310), - [aux_sym__block_quote_prefix_repeat1] = STATE(253), - [aux_sym__inline_repeat1] = STATE(297), - [anon_sym_LBRACK] = ACTIONS(338), - [anon_sym_PIPE] = ACTIONS(340), - [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(342), - [anon_sym_DOT] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(13), - [aux_sym__inline_token1] = ACTIONS(13), - [anon_sym_LBRACE_DASH] = ACTIONS(13), - [anon_sym_POUND] = ACTIONS(13), - [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(364), - [sym__heading_begin] = ACTIONS(346), - [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(348), - [sym_list_marker_dash] = ACTIONS(25), - [sym_list_marker_star] = ACTIONS(27), - [sym_list_marker_plus] = ACTIONS(29), - [sym__list_marker_task_begin] = ACTIONS(31), - [sym_list_marker_definition] = ACTIONS(33), - [sym_list_marker_decimal_period] = ACTIONS(35), - [sym_list_marker_lower_alpha_period] = ACTIONS(37), - [sym_list_marker_upper_alpha_period] = ACTIONS(39), - [sym_list_marker_lower_roman_period] = ACTIONS(41), - [sym_list_marker_upper_roman_period] = ACTIONS(43), - [sym_list_marker_decimal_paren] = ACTIONS(45), - [sym_list_marker_lower_alpha_paren] = ACTIONS(47), - [sym_list_marker_upper_alpha_paren] = ACTIONS(49), - [sym_list_marker_lower_roman_paren] = ACTIONS(51), - [sym_list_marker_upper_roman_paren] = ACTIONS(53), - [sym_list_marker_decimal_parens] = ACTIONS(55), - [sym_list_marker_lower_alpha_parens] = ACTIONS(57), - [sym_list_marker_upper_alpha_parens] = ACTIONS(59), - [sym_list_marker_lower_roman_parens] = ACTIONS(61), - [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(350), - [sym__block_quote_continuation] = ACTIONS(352), - [sym__thematic_break_dash] = ACTIONS(354), - [sym__thematic_break_star] = ACTIONS(354), - }, - [43] = { - [sym__block_with_heading] = STATE(1070), - [sym__block_element] = STATE(1070), - [sym_heading] = STATE(1070), - [sym_list] = STATE(1070), - [sym__list_dash] = STATE(1006), - [sym__list_item_dash] = STATE(636), - [sym__list_plus] = STATE(1006), - [sym__list_item_plus] = STATE(637), - [sym__list_star] = STATE(1006), - [sym__list_item_star] = STATE(671), - [sym__list_task] = STATE(1006), - [sym__list_item_task] = STATE(691), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(1006), - [sym__list_item_definition] = STATE(896), - [sym__list_decimal_period] = STATE(1006), - [sym__list_item_decimal_period] = STATE(841), - [sym__list_decimal_paren] = STATE(1006), - [sym__list_item_decimal_paren] = STATE(796), - [sym__list_decimal_parens] = STATE(1006), - [sym__list_item_decimal_parens] = STATE(716), - [sym__list_lower_alpha_period] = STATE(1006), - [sym__list_item_lower_alpha_period] = STATE(722), - [sym__list_lower_alpha_paren] = STATE(1006), - [sym__list_item_lower_alpha_paren] = STATE(801), - [sym__list_lower_alpha_parens] = STATE(1006), - [sym__list_item_lower_alpha_parens] = STATE(813), - [sym__list_upper_alpha_period] = STATE(1006), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(1006), - [sym__list_item_upper_alpha_paren] = STATE(706), - [sym__list_upper_alpha_parens] = STATE(1006), - [sym__list_item_upper_alpha_parens] = STATE(707), - [sym__list_lower_roman_period] = STATE(1006), - [sym__list_item_lower_roman_period] = STATE(725), - [sym__list_lower_roman_paren] = STATE(1006), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(1006), - [sym__list_item_lower_roman_parens] = STATE(736), - [sym__list_upper_roman_period] = STATE(1006), - [sym__list_item_upper_roman_period] = STATE(742), - [sym__list_upper_roman_paren] = STATE(1006), - [sym__list_item_upper_roman_paren] = STATE(743), - [sym__list_upper_roman_parens] = STATE(1006), - [sym__list_item_upper_roman_parens] = STATE(762), - [sym_table] = STATE(1070), - [sym__table_content] = STATE(310), - [sym_table_separator] = STATE(310), - [sym_table_row] = STATE(331), - [sym_footnote] = STATE(1070), - [sym_footnote_marker_begin] = STATE(1176), - [sym_footnote_content] = STATE(758), - [sym_div] = STATE(1070), - [sym__div_marker_begin] = STATE(1026), - [sym_code_block] = STATE(1070), - [sym_raw_block] = STATE(1070), - [sym_thematic_break] = STATE(1070), - [sym_block_quote] = STATE(1070), - [sym__block_quote_prefix] = STATE(231), - [sym_link_reference_definition] = STATE(1070), - [sym_block_attribute] = STATE(1070), - [sym__paragraph] = STATE(1070), - [sym__paragraph_content] = STATE(705), - [sym__paragraph_inline_content] = STATE(775), - [sym__inline] = STATE(616), - [sym__symbol_fallback] = STATE(297), - [aux_sym__list_dash_repeat1] = STATE(355), - [aux_sym__list_plus_repeat1] = STATE(356), - [aux_sym__list_star_repeat1] = STATE(362), - [aux_sym__list_task_repeat1] = STATE(346), - [aux_sym__list_definition_repeat1] = STATE(483), - [aux_sym__list_decimal_period_repeat1] = STATE(484), - [aux_sym__list_decimal_paren_repeat1] = STATE(485), - [aux_sym__list_decimal_parens_repeat1] = STATE(486), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(487), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(488), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(489), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(490), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(491), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(492), - [aux_sym__list_lower_roman_period_repeat1] = STATE(493), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(494), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(495), - [aux_sym__list_upper_roman_period_repeat1] = STATE(581), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(497), - [aux_sym_table_repeat1] = STATE(310), - [aux_sym__block_quote_prefix_repeat1] = STATE(253), - [aux_sym__inline_repeat1] = STATE(297), - [anon_sym_LBRACK] = ACTIONS(338), - [anon_sym_PIPE] = ACTIONS(340), - [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(342), - [anon_sym_DOT] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(13), - [aux_sym__inline_token1] = ACTIONS(13), - [anon_sym_LBRACE_DASH] = ACTIONS(13), - [anon_sym_POUND] = ACTIONS(13), - [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(390), - [sym__heading_begin] = ACTIONS(346), - [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(348), - [sym_list_marker_dash] = ACTIONS(25), - [sym_list_marker_star] = ACTIONS(27), - [sym_list_marker_plus] = ACTIONS(29), - [sym__list_marker_task_begin] = ACTIONS(31), - [sym_list_marker_definition] = ACTIONS(33), - [sym_list_marker_decimal_period] = ACTIONS(35), - [sym_list_marker_lower_alpha_period] = ACTIONS(37), - [sym_list_marker_upper_alpha_period] = ACTIONS(39), - [sym_list_marker_lower_roman_period] = ACTIONS(41), - [sym_list_marker_upper_roman_period] = ACTIONS(43), - [sym_list_marker_decimal_paren] = ACTIONS(45), - [sym_list_marker_lower_alpha_paren] = ACTIONS(47), - [sym_list_marker_upper_alpha_paren] = ACTIONS(49), - [sym_list_marker_lower_roman_paren] = ACTIONS(51), - [sym_list_marker_upper_roman_paren] = ACTIONS(53), - [sym_list_marker_decimal_parens] = ACTIONS(55), - [sym_list_marker_lower_alpha_parens] = ACTIONS(57), - [sym_list_marker_upper_alpha_parens] = ACTIONS(59), - [sym_list_marker_lower_roman_parens] = ACTIONS(61), - [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(350), - [sym__block_quote_continuation] = ACTIONS(352), - [sym__thematic_break_dash] = ACTIONS(354), - [sym__thematic_break_star] = ACTIONS(354), - }, - [44] = { - [sym__block_with_heading] = STATE(1099), - [sym__block_element] = STATE(1099), - [sym_heading] = STATE(1099), - [sym_list] = STATE(1099), - [sym__list_dash] = STATE(1006), - [sym__list_item_dash] = STATE(636), - [sym__list_plus] = STATE(1006), - [sym__list_item_plus] = STATE(637), - [sym__list_star] = STATE(1006), - [sym__list_item_star] = STATE(671), - [sym__list_task] = STATE(1006), - [sym__list_item_task] = STATE(691), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(1006), - [sym__list_item_definition] = STATE(896), - [sym__list_decimal_period] = STATE(1006), - [sym__list_item_decimal_period] = STATE(841), - [sym__list_decimal_paren] = STATE(1006), - [sym__list_item_decimal_paren] = STATE(796), - [sym__list_decimal_parens] = STATE(1006), - [sym__list_item_decimal_parens] = STATE(716), - [sym__list_lower_alpha_period] = STATE(1006), - [sym__list_item_lower_alpha_period] = STATE(722), - [sym__list_lower_alpha_paren] = STATE(1006), - [sym__list_item_lower_alpha_paren] = STATE(801), - [sym__list_lower_alpha_parens] = STATE(1006), - [sym__list_item_lower_alpha_parens] = STATE(813), - [sym__list_upper_alpha_period] = STATE(1006), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(1006), - [sym__list_item_upper_alpha_paren] = STATE(706), - [sym__list_upper_alpha_parens] = STATE(1006), - [sym__list_item_upper_alpha_parens] = STATE(707), - [sym__list_lower_roman_period] = STATE(1006), - [sym__list_item_lower_roman_period] = STATE(725), - [sym__list_lower_roman_paren] = STATE(1006), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(1006), - [sym__list_item_lower_roman_parens] = STATE(736), - [sym__list_upper_roman_period] = STATE(1006), - [sym__list_item_upper_roman_period] = STATE(742), - [sym__list_upper_roman_paren] = STATE(1006), - [sym__list_item_upper_roman_paren] = STATE(743), - [sym__list_upper_roman_parens] = STATE(1006), - [sym__list_item_upper_roman_parens] = STATE(762), - [sym_list_item_content] = STATE(810), - [sym_table] = STATE(1099), - [sym__table_content] = STATE(310), - [sym_table_separator] = STATE(310), - [sym_table_row] = STATE(331), - [sym_footnote] = STATE(1099), - [sym_footnote_marker_begin] = STATE(1176), - [sym_div] = STATE(1099), - [sym__div_marker_begin] = STATE(1026), - [sym_code_block] = STATE(1099), - [sym_raw_block] = STATE(1099), - [sym_thematic_break] = STATE(1099), - [sym_block_quote] = STATE(1099), - [sym__block_quote_prefix] = STATE(231), - [sym_link_reference_definition] = STATE(1099), - [sym_block_attribute] = STATE(1099), - [sym__paragraph] = STATE(1099), - [sym__paragraph_content] = STATE(705), - [sym__paragraph_inline_content] = STATE(775), - [sym__inline] = STATE(616), - [sym__symbol_fallback] = STATE(297), - [aux_sym__list_dash_repeat1] = STATE(355), - [aux_sym__list_plus_repeat1] = STATE(356), - [aux_sym__list_star_repeat1] = STATE(362), - [aux_sym__list_task_repeat1] = STATE(346), - [aux_sym__list_definition_repeat1] = STATE(483), - [aux_sym__list_decimal_period_repeat1] = STATE(484), - [aux_sym__list_decimal_paren_repeat1] = STATE(485), - [aux_sym__list_decimal_parens_repeat1] = STATE(486), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(487), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(488), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(489), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(490), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(491), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(492), - [aux_sym__list_lower_roman_period_repeat1] = STATE(493), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(494), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(495), - [aux_sym__list_upper_roman_period_repeat1] = STATE(581), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(497), - [aux_sym_table_repeat1] = STATE(310), - [aux_sym__block_quote_prefix_repeat1] = STATE(253), - [aux_sym__inline_repeat1] = STATE(297), - [anon_sym_LBRACK] = ACTIONS(338), - [anon_sym_PIPE] = ACTIONS(340), - [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(342), - [anon_sym_DOT] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(13), - [aux_sym__inline_token1] = ACTIONS(13), - [anon_sym_LBRACE_DASH] = ACTIONS(13), - [anon_sym_POUND] = ACTIONS(13), - [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(392), - [sym__heading_begin] = ACTIONS(346), - [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(348), - [sym_list_marker_dash] = ACTIONS(25), - [sym_list_marker_star] = ACTIONS(27), - [sym_list_marker_plus] = ACTIONS(29), - [sym__list_marker_task_begin] = ACTIONS(31), - [sym_list_marker_definition] = ACTIONS(33), - [sym_list_marker_decimal_period] = ACTIONS(35), - [sym_list_marker_lower_alpha_period] = ACTIONS(37), - [sym_list_marker_upper_alpha_period] = ACTIONS(39), - [sym_list_marker_lower_roman_period] = ACTIONS(41), - [sym_list_marker_upper_roman_period] = ACTIONS(43), - [sym_list_marker_decimal_paren] = ACTIONS(45), - [sym_list_marker_lower_alpha_paren] = ACTIONS(47), - [sym_list_marker_upper_alpha_paren] = ACTIONS(49), - [sym_list_marker_lower_roman_paren] = ACTIONS(51), - [sym_list_marker_upper_roman_paren] = ACTIONS(53), - [sym_list_marker_decimal_parens] = ACTIONS(55), - [sym_list_marker_lower_alpha_parens] = ACTIONS(57), - [sym_list_marker_upper_alpha_parens] = ACTIONS(59), - [sym_list_marker_lower_roman_parens] = ACTIONS(61), - [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(350), - [sym__block_quote_continuation] = ACTIONS(352), - [sym__thematic_break_dash] = ACTIONS(354), - [sym__thematic_break_star] = ACTIONS(354), - }, - [45] = { - [sym__block_with_heading] = STATE(1131), - [sym__block_element] = STATE(1131), - [sym_heading] = STATE(1131), - [sym_list] = STATE(1131), - [sym__list_dash] = STATE(1006), - [sym__list_item_dash] = STATE(636), - [sym__list_plus] = STATE(1006), - [sym__list_item_plus] = STATE(637), - [sym__list_star] = STATE(1006), - [sym__list_item_star] = STATE(671), - [sym__list_task] = STATE(1006), - [sym__list_item_task] = STATE(691), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(1006), - [sym__list_item_definition] = STATE(896), - [sym__list_decimal_period] = STATE(1006), - [sym__list_item_decimal_period] = STATE(841), - [sym__list_decimal_paren] = STATE(1006), - [sym__list_item_decimal_paren] = STATE(796), - [sym__list_decimal_parens] = STATE(1006), - [sym__list_item_decimal_parens] = STATE(716), - [sym__list_lower_alpha_period] = STATE(1006), - [sym__list_item_lower_alpha_period] = STATE(722), - [sym__list_lower_alpha_paren] = STATE(1006), - [sym__list_item_lower_alpha_paren] = STATE(801), - [sym__list_lower_alpha_parens] = STATE(1006), - [sym__list_item_lower_alpha_parens] = STATE(813), - [sym__list_upper_alpha_period] = STATE(1006), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(1006), - [sym__list_item_upper_alpha_paren] = STATE(706), - [sym__list_upper_alpha_parens] = STATE(1006), - [sym__list_item_upper_alpha_parens] = STATE(707), - [sym__list_lower_roman_period] = STATE(1006), - [sym__list_item_lower_roman_period] = STATE(725), - [sym__list_lower_roman_paren] = STATE(1006), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(1006), - [sym__list_item_lower_roman_parens] = STATE(736), - [sym__list_upper_roman_period] = STATE(1006), - [sym__list_item_upper_roman_period] = STATE(742), - [sym__list_upper_roman_paren] = STATE(1006), - [sym__list_item_upper_roman_paren] = STATE(743), - [sym__list_upper_roman_parens] = STATE(1006), - [sym__list_item_upper_roman_parens] = STATE(762), - [sym_list_item_content] = STATE(592), - [sym_table] = STATE(1131), - [sym__table_content] = STATE(310), - [sym_table_separator] = STATE(310), - [sym_table_row] = STATE(331), - [sym_footnote] = STATE(1131), - [sym_footnote_marker_begin] = STATE(1176), - [sym_div] = STATE(1131), - [sym__div_marker_begin] = STATE(1026), - [sym_code_block] = STATE(1131), - [sym_raw_block] = STATE(1131), - [sym_thematic_break] = STATE(1131), - [sym_block_quote] = STATE(1131), - [sym__block_quote_prefix] = STATE(231), - [sym_link_reference_definition] = STATE(1131), - [sym_block_attribute] = STATE(1131), - [sym__paragraph] = STATE(1131), - [sym__paragraph_content] = STATE(705), - [sym__paragraph_inline_content] = STATE(775), - [sym__inline] = STATE(616), - [sym__symbol_fallback] = STATE(297), - [aux_sym__list_dash_repeat1] = STATE(355), - [aux_sym__list_plus_repeat1] = STATE(356), - [aux_sym__list_star_repeat1] = STATE(362), - [aux_sym__list_task_repeat1] = STATE(346), - [aux_sym__list_definition_repeat1] = STATE(483), - [aux_sym__list_decimal_period_repeat1] = STATE(484), - [aux_sym__list_decimal_paren_repeat1] = STATE(485), - [aux_sym__list_decimal_parens_repeat1] = STATE(486), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(487), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(488), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(489), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(490), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(491), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(492), - [aux_sym__list_lower_roman_period_repeat1] = STATE(493), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(494), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(495), - [aux_sym__list_upper_roman_period_repeat1] = STATE(581), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(497), - [aux_sym_table_repeat1] = STATE(310), - [aux_sym__block_quote_prefix_repeat1] = STATE(253), - [aux_sym__inline_repeat1] = STATE(297), - [anon_sym_LBRACK] = ACTIONS(338), - [anon_sym_PIPE] = ACTIONS(340), - [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(342), - [anon_sym_DOT] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(13), - [aux_sym__inline_token1] = ACTIONS(13), - [anon_sym_LBRACE_DASH] = ACTIONS(13), - [anon_sym_POUND] = ACTIONS(13), - [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(368), - [sym__heading_begin] = ACTIONS(346), - [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(348), - [sym_list_marker_dash] = ACTIONS(25), - [sym_list_marker_star] = ACTIONS(27), - [sym_list_marker_plus] = ACTIONS(29), - [sym__list_marker_task_begin] = ACTIONS(31), - [sym_list_marker_definition] = ACTIONS(33), - [sym_list_marker_decimal_period] = ACTIONS(35), - [sym_list_marker_lower_alpha_period] = ACTIONS(37), - [sym_list_marker_upper_alpha_period] = ACTIONS(39), - [sym_list_marker_lower_roman_period] = ACTIONS(41), - [sym_list_marker_upper_roman_period] = ACTIONS(43), - [sym_list_marker_decimal_paren] = ACTIONS(45), - [sym_list_marker_lower_alpha_paren] = ACTIONS(47), - [sym_list_marker_upper_alpha_paren] = ACTIONS(49), - [sym_list_marker_lower_roman_paren] = ACTIONS(51), - [sym_list_marker_upper_roman_paren] = ACTIONS(53), - [sym_list_marker_decimal_parens] = ACTIONS(55), - [sym_list_marker_lower_alpha_parens] = ACTIONS(57), - [sym_list_marker_upper_alpha_parens] = ACTIONS(59), - [sym_list_marker_lower_roman_parens] = ACTIONS(61), - [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(350), - [sym__block_quote_continuation] = ACTIONS(352), - [sym__thematic_break_dash] = ACTIONS(354), - [sym__thematic_break_star] = ACTIONS(354), - }, - [46] = { - [sym__block_with_heading] = STATE(1094), - [sym__block_element] = STATE(1094), - [sym_heading] = STATE(1094), - [sym_list] = STATE(1094), - [sym__list_dash] = STATE(1006), - [sym__list_item_dash] = STATE(636), - [sym__list_plus] = STATE(1006), - [sym__list_item_plus] = STATE(637), - [sym__list_star] = STATE(1006), - [sym__list_item_star] = STATE(671), - [sym__list_task] = STATE(1006), - [sym__list_item_task] = STATE(691), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(1006), - [sym__list_item_definition] = STATE(896), - [sym__list_decimal_period] = STATE(1006), - [sym__list_item_decimal_period] = STATE(841), - [sym__list_decimal_paren] = STATE(1006), - [sym__list_item_decimal_paren] = STATE(796), - [sym__list_decimal_parens] = STATE(1006), - [sym__list_item_decimal_parens] = STATE(716), - [sym__list_lower_alpha_period] = STATE(1006), - [sym__list_item_lower_alpha_period] = STATE(722), - [sym__list_lower_alpha_paren] = STATE(1006), - [sym__list_item_lower_alpha_paren] = STATE(801), - [sym__list_lower_alpha_parens] = STATE(1006), - [sym__list_item_lower_alpha_parens] = STATE(813), - [sym__list_upper_alpha_period] = STATE(1006), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(1006), - [sym__list_item_upper_alpha_paren] = STATE(706), - [sym__list_upper_alpha_parens] = STATE(1006), - [sym__list_item_upper_alpha_parens] = STATE(707), - [sym__list_lower_roman_period] = STATE(1006), - [sym__list_item_lower_roman_period] = STATE(725), - [sym__list_lower_roman_paren] = STATE(1006), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(1006), - [sym__list_item_lower_roman_parens] = STATE(736), - [sym__list_upper_roman_period] = STATE(1006), - [sym__list_item_upper_roman_period] = STATE(742), - [sym__list_upper_roman_paren] = STATE(1006), - [sym__list_item_upper_roman_paren] = STATE(743), - [sym__list_upper_roman_parens] = STATE(1006), - [sym__list_item_upper_roman_parens] = STATE(762), - [sym_table] = STATE(1094), - [sym__table_content] = STATE(310), - [sym_table_separator] = STATE(310), - [sym_table_row] = STATE(331), - [sym_footnote] = STATE(1094), - [sym_footnote_marker_begin] = STATE(1176), - [sym_footnote_content] = STATE(190), - [sym_div] = STATE(1094), - [sym__div_marker_begin] = STATE(1026), - [sym_code_block] = STATE(1094), - [sym_raw_block] = STATE(1094), - [sym_thematic_break] = STATE(1094), - [sym_block_quote] = STATE(1094), - [sym__block_quote_prefix] = STATE(231), - [sym_link_reference_definition] = STATE(1094), - [sym_block_attribute] = STATE(1094), - [sym__paragraph] = STATE(1094), - [sym__paragraph_content] = STATE(705), - [sym__paragraph_inline_content] = STATE(775), - [sym__inline] = STATE(616), - [sym__symbol_fallback] = STATE(297), - [aux_sym__list_dash_repeat1] = STATE(355), - [aux_sym__list_plus_repeat1] = STATE(356), - [aux_sym__list_star_repeat1] = STATE(362), - [aux_sym__list_task_repeat1] = STATE(346), - [aux_sym__list_definition_repeat1] = STATE(483), - [aux_sym__list_decimal_period_repeat1] = STATE(484), - [aux_sym__list_decimal_paren_repeat1] = STATE(485), - [aux_sym__list_decimal_parens_repeat1] = STATE(486), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(487), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(488), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(489), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(490), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(491), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(492), - [aux_sym__list_lower_roman_period_repeat1] = STATE(493), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(494), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(495), - [aux_sym__list_upper_roman_period_repeat1] = STATE(581), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(497), - [aux_sym_table_repeat1] = STATE(310), - [aux_sym__block_quote_prefix_repeat1] = STATE(253), - [aux_sym__inline_repeat1] = STATE(297), - [anon_sym_LBRACK] = ACTIONS(338), - [anon_sym_PIPE] = ACTIONS(340), - [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(342), - [anon_sym_DOT] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(13), - [aux_sym__inline_token1] = ACTIONS(13), - [anon_sym_LBRACE_DASH] = ACTIONS(13), - [anon_sym_POUND] = ACTIONS(13), - [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(394), - [sym__heading_begin] = ACTIONS(346), - [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(348), - [sym_list_marker_dash] = ACTIONS(25), - [sym_list_marker_star] = ACTIONS(27), - [sym_list_marker_plus] = ACTIONS(29), - [sym__list_marker_task_begin] = ACTIONS(31), - [sym_list_marker_definition] = ACTIONS(33), - [sym_list_marker_decimal_period] = ACTIONS(35), - [sym_list_marker_lower_alpha_period] = ACTIONS(37), - [sym_list_marker_upper_alpha_period] = ACTIONS(39), - [sym_list_marker_lower_roman_period] = ACTIONS(41), - [sym_list_marker_upper_roman_period] = ACTIONS(43), - [sym_list_marker_decimal_paren] = ACTIONS(45), - [sym_list_marker_lower_alpha_paren] = ACTIONS(47), - [sym_list_marker_upper_alpha_paren] = ACTIONS(49), - [sym_list_marker_lower_roman_paren] = ACTIONS(51), - [sym_list_marker_upper_roman_paren] = ACTIONS(53), - [sym_list_marker_decimal_parens] = ACTIONS(55), - [sym_list_marker_lower_alpha_parens] = ACTIONS(57), - [sym_list_marker_upper_alpha_parens] = ACTIONS(59), - [sym_list_marker_lower_roman_parens] = ACTIONS(61), - [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(350), - [sym__block_quote_continuation] = ACTIONS(352), - [sym__thematic_break_dash] = ACTIONS(354), - [sym__thematic_break_star] = ACTIONS(354), - }, - [47] = { - [sym__block_with_heading] = STATE(1118), - [sym__block_element] = STATE(1118), - [sym_heading] = STATE(1118), - [sym_list] = STATE(1118), - [sym__list_dash] = STATE(1006), - [sym__list_item_dash] = STATE(636), - [sym__list_plus] = STATE(1006), - [sym__list_item_plus] = STATE(637), - [sym__list_star] = STATE(1006), - [sym__list_item_star] = STATE(671), - [sym__list_task] = STATE(1006), - [sym__list_item_task] = STATE(691), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(1006), - [sym__list_item_definition] = STATE(896), - [sym__list_decimal_period] = STATE(1006), - [sym__list_item_decimal_period] = STATE(841), - [sym__list_decimal_paren] = STATE(1006), - [sym__list_item_decimal_paren] = STATE(796), - [sym__list_decimal_parens] = STATE(1006), - [sym__list_item_decimal_parens] = STATE(716), - [sym__list_lower_alpha_period] = STATE(1006), - [sym__list_item_lower_alpha_period] = STATE(722), - [sym__list_lower_alpha_paren] = STATE(1006), - [sym__list_item_lower_alpha_paren] = STATE(801), - [sym__list_lower_alpha_parens] = STATE(1006), - [sym__list_item_lower_alpha_parens] = STATE(813), - [sym__list_upper_alpha_period] = STATE(1006), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(1006), - [sym__list_item_upper_alpha_paren] = STATE(706), - [sym__list_upper_alpha_parens] = STATE(1006), - [sym__list_item_upper_alpha_parens] = STATE(707), - [sym__list_lower_roman_period] = STATE(1006), - [sym__list_item_lower_roman_period] = STATE(725), - [sym__list_lower_roman_paren] = STATE(1006), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(1006), - [sym__list_item_lower_roman_parens] = STATE(736), - [sym__list_upper_roman_period] = STATE(1006), - [sym__list_item_upper_roman_period] = STATE(742), - [sym__list_upper_roman_paren] = STATE(1006), - [sym__list_item_upper_roman_paren] = STATE(743), - [sym__list_upper_roman_parens] = STATE(1006), - [sym__list_item_upper_roman_parens] = STATE(762), - [sym_list_item_content] = STATE(811), - [sym_table] = STATE(1118), - [sym__table_content] = STATE(310), - [sym_table_separator] = STATE(310), - [sym_table_row] = STATE(331), - [sym_footnote] = STATE(1118), - [sym_footnote_marker_begin] = STATE(1176), - [sym_div] = STATE(1118), - [sym__div_marker_begin] = STATE(1026), - [sym_code_block] = STATE(1118), - [sym_raw_block] = STATE(1118), - [sym_thematic_break] = STATE(1118), - [sym_block_quote] = STATE(1118), - [sym__block_quote_prefix] = STATE(231), - [sym_link_reference_definition] = STATE(1118), - [sym_block_attribute] = STATE(1118), - [sym__paragraph] = STATE(1118), - [sym__paragraph_content] = STATE(705), - [sym__paragraph_inline_content] = STATE(775), - [sym__inline] = STATE(616), - [sym__symbol_fallback] = STATE(297), - [aux_sym__list_dash_repeat1] = STATE(355), - [aux_sym__list_plus_repeat1] = STATE(356), - [aux_sym__list_star_repeat1] = STATE(362), - [aux_sym__list_task_repeat1] = STATE(346), - [aux_sym__list_definition_repeat1] = STATE(483), - [aux_sym__list_decimal_period_repeat1] = STATE(484), - [aux_sym__list_decimal_paren_repeat1] = STATE(485), - [aux_sym__list_decimal_parens_repeat1] = STATE(486), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(487), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(488), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(489), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(490), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(491), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(492), - [aux_sym__list_lower_roman_period_repeat1] = STATE(493), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(494), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(495), - [aux_sym__list_upper_roman_period_repeat1] = STATE(581), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(497), - [aux_sym_table_repeat1] = STATE(310), - [aux_sym__block_quote_prefix_repeat1] = STATE(253), - [aux_sym__inline_repeat1] = STATE(297), - [anon_sym_LBRACK] = ACTIONS(338), - [anon_sym_PIPE] = ACTIONS(340), - [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(342), - [anon_sym_DOT] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(13), - [aux_sym__inline_token1] = ACTIONS(13), - [anon_sym_LBRACE_DASH] = ACTIONS(13), - [anon_sym_POUND] = ACTIONS(13), - [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(396), - [sym__heading_begin] = ACTIONS(346), - [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(348), - [sym_list_marker_dash] = ACTIONS(25), - [sym_list_marker_star] = ACTIONS(27), - [sym_list_marker_plus] = ACTIONS(29), - [sym__list_marker_task_begin] = ACTIONS(31), - [sym_list_marker_definition] = ACTIONS(33), - [sym_list_marker_decimal_period] = ACTIONS(35), - [sym_list_marker_lower_alpha_period] = ACTIONS(37), - [sym_list_marker_upper_alpha_period] = ACTIONS(39), - [sym_list_marker_lower_roman_period] = ACTIONS(41), - [sym_list_marker_upper_roman_period] = ACTIONS(43), - [sym_list_marker_decimal_paren] = ACTIONS(45), - [sym_list_marker_lower_alpha_paren] = ACTIONS(47), - [sym_list_marker_upper_alpha_paren] = ACTIONS(49), - [sym_list_marker_lower_roman_paren] = ACTIONS(51), - [sym_list_marker_upper_roman_paren] = ACTIONS(53), - [sym_list_marker_decimal_parens] = ACTIONS(55), - [sym_list_marker_lower_alpha_parens] = ACTIONS(57), - [sym_list_marker_upper_alpha_parens] = ACTIONS(59), - [sym_list_marker_lower_roman_parens] = ACTIONS(61), - [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(350), - [sym__block_quote_continuation] = ACTIONS(352), - [sym__thematic_break_dash] = ACTIONS(354), - [sym__thematic_break_star] = ACTIONS(354), + [sym__paragraph_content] = STATE(738), + [sym__paragraph_inline_content] = STATE(799), + [sym__inline] = STATE(629), + [sym__symbol_fallback] = STATE(285), + [aux_sym__list_dash_repeat1] = STATE(354), + [aux_sym__list_plus_repeat1] = STATE(355), + [aux_sym__list_star_repeat1] = STATE(356), + [aux_sym__list_task_repeat1] = STATE(335), + [aux_sym__list_definition_repeat1] = STATE(479), + [aux_sym__list_decimal_period_repeat1] = STATE(480), + [aux_sym__list_decimal_paren_repeat1] = STATE(481), + [aux_sym__list_decimal_parens_repeat1] = STATE(482), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(483), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(484), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(485), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(486), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(487), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(488), + [aux_sym__list_lower_roman_period_repeat1] = STATE(489), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(490), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(491), + [aux_sym__list_upper_roman_period_repeat1] = STATE(492), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(493), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(494), + [aux_sym_table_repeat1] = STATE(248), + [aux_sym__block_quote_prefix_repeat1] = STATE(235), + [aux_sym__inline_repeat1] = STATE(285), + [anon_sym_LBRACK] = ACTIONS(364), + [anon_sym_LBRACK_CARET] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(366), + [anon_sym_DOT] = ACTIONS(11), + [aux_sym_identifier_token1] = ACTIONS(11), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_PERCENT] = ACTIONS(11), + [sym__newline] = ACTIONS(428), + [sym__heading_begin] = ACTIONS(370), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(372), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(374), + [sym__block_quote_continuation] = ACTIONS(376), + [sym__thematic_break_dash] = ACTIONS(378), + [sym__thematic_break_star] = ACTIONS(378), + [sym__table_header_begin] = ACTIONS(380), + [sym__table_separator_begin] = ACTIONS(382), + [sym__table_row_begin] = ACTIONS(384), }, [48] = { - [sym__block_with_heading] = STATE(1119), - [sym__block_element] = STATE(1119), - [sym_heading] = STATE(1119), - [sym_list] = STATE(1119), - [sym__list_dash] = STATE(1006), - [sym__list_item_dash] = STATE(636), - [sym__list_plus] = STATE(1006), - [sym__list_item_plus] = STATE(637), - [sym__list_star] = STATE(1006), - [sym__list_item_star] = STATE(671), - [sym__list_task] = STATE(1006), - [sym__list_item_task] = STATE(691), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(1006), - [sym__list_item_definition] = STATE(896), - [sym__list_decimal_period] = STATE(1006), - [sym__list_item_decimal_period] = STATE(841), - [sym__list_decimal_paren] = STATE(1006), - [sym__list_item_decimal_paren] = STATE(796), - [sym__list_decimal_parens] = STATE(1006), - [sym__list_item_decimal_parens] = STATE(716), - [sym__list_lower_alpha_period] = STATE(1006), - [sym__list_item_lower_alpha_period] = STATE(722), - [sym__list_lower_alpha_paren] = STATE(1006), - [sym__list_item_lower_alpha_paren] = STATE(801), - [sym__list_lower_alpha_parens] = STATE(1006), - [sym__list_item_lower_alpha_parens] = STATE(813), - [sym__list_upper_alpha_period] = STATE(1006), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(1006), - [sym__list_item_upper_alpha_paren] = STATE(706), - [sym__list_upper_alpha_parens] = STATE(1006), - [sym__list_item_upper_alpha_parens] = STATE(707), - [sym__list_lower_roman_period] = STATE(1006), - [sym__list_item_lower_roman_period] = STATE(725), - [sym__list_lower_roman_paren] = STATE(1006), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(1006), - [sym__list_item_lower_roman_parens] = STATE(736), - [sym__list_upper_roman_period] = STATE(1006), - [sym__list_item_upper_roman_period] = STATE(742), - [sym__list_upper_roman_paren] = STATE(1006), - [sym__list_item_upper_roman_paren] = STATE(743), - [sym__list_upper_roman_parens] = STATE(1006), - [sym__list_item_upper_roman_parens] = STATE(762), - [sym_list_item_content] = STATE(918), - [sym_table] = STATE(1119), - [sym__table_content] = STATE(310), - [sym_table_separator] = STATE(310), - [sym_table_row] = STATE(331), - [sym_footnote] = STATE(1119), - [sym_footnote_marker_begin] = STATE(1176), - [sym_div] = STATE(1119), - [sym__div_marker_begin] = STATE(1026), - [sym_code_block] = STATE(1119), - [sym_raw_block] = STATE(1119), - [sym_thematic_break] = STATE(1119), - [sym_block_quote] = STATE(1119), - [sym__block_quote_prefix] = STATE(231), - [sym_link_reference_definition] = STATE(1119), - [sym_block_attribute] = STATE(1119), - [sym__paragraph] = STATE(1119), - [sym__paragraph_content] = STATE(705), - [sym__paragraph_inline_content] = STATE(775), - [sym__inline] = STATE(616), - [sym__symbol_fallback] = STATE(297), - [aux_sym__list_dash_repeat1] = STATE(355), - [aux_sym__list_plus_repeat1] = STATE(356), - [aux_sym__list_star_repeat1] = STATE(362), - [aux_sym__list_task_repeat1] = STATE(346), - [aux_sym__list_definition_repeat1] = STATE(483), - [aux_sym__list_decimal_period_repeat1] = STATE(484), - [aux_sym__list_decimal_paren_repeat1] = STATE(485), - [aux_sym__list_decimal_parens_repeat1] = STATE(486), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(487), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(488), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(489), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(490), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(491), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(492), - [aux_sym__list_lower_roman_period_repeat1] = STATE(493), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(494), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(495), - [aux_sym__list_upper_roman_period_repeat1] = STATE(581), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(497), - [aux_sym_table_repeat1] = STATE(310), - [aux_sym__block_quote_prefix_repeat1] = STATE(253), - [aux_sym__inline_repeat1] = STATE(297), - [anon_sym_LBRACK] = ACTIONS(338), - [anon_sym_PIPE] = ACTIONS(340), - [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(342), - [anon_sym_DOT] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(13), - [aux_sym__inline_token1] = ACTIONS(13), - [anon_sym_LBRACE_DASH] = ACTIONS(13), - [anon_sym_POUND] = ACTIONS(13), - [anon_sym_PERCENT] = ACTIONS(13), + [sym__block_with_heading] = STATE(1108), + [sym__block_element] = STATE(1108), + [sym_heading] = STATE(1108), + [sym_list] = STATE(1108), + [sym__list_dash] = STATE(974), + [sym__list_item_dash] = STATE(687), + [sym__list_plus] = STATE(974), + [sym__list_item_plus] = STATE(691), + [sym__list_star] = STATE(974), + [sym__list_item_star] = STATE(673), + [sym__list_task] = STATE(974), + [sym__list_item_task] = STATE(680), + [sym_list_marker_task] = STATE(48), + [sym__list_definition] = STATE(974), + [sym__list_item_definition] = STATE(804), + [sym__list_decimal_period] = STATE(974), + [sym__list_item_decimal_period] = STATE(837), + [sym__list_decimal_paren] = STATE(974), + [sym__list_item_decimal_paren] = STATE(703), + [sym__list_decimal_parens] = STATE(974), + [sym__list_item_decimal_parens] = STATE(715), + [sym__list_lower_alpha_period] = STATE(974), + [sym__list_item_lower_alpha_period] = STATE(739), + [sym__list_lower_alpha_paren] = STATE(974), + [sym__list_item_lower_alpha_paren] = STATE(754), + [sym__list_lower_alpha_parens] = STATE(974), + [sym__list_item_lower_alpha_parens] = STATE(755), + [sym__list_upper_alpha_period] = STATE(974), + [sym__list_item_upper_alpha_period] = STATE(758), + [sym__list_upper_alpha_paren] = STATE(974), + [sym__list_item_upper_alpha_paren] = STATE(759), + [sym__list_upper_alpha_parens] = STATE(974), + [sym__list_item_upper_alpha_parens] = STATE(766), + [sym__list_lower_roman_period] = STATE(974), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(974), + [sym__list_item_lower_roman_paren] = STATE(770), + [sym__list_lower_roman_parens] = STATE(974), + [sym__list_item_lower_roman_parens] = STATE(773), + [sym__list_upper_roman_period] = STATE(974), + [sym__list_item_upper_roman_period] = STATE(775), + [sym__list_upper_roman_paren] = STATE(974), + [sym__list_item_upper_roman_paren] = STATE(791), + [sym__list_upper_roman_parens] = STATE(974), + [sym__list_item_upper_roman_parens] = STATE(793), + [sym_list_item_content] = STATE(589), + [sym_table] = STATE(1108), + [sym__table_row] = STATE(248), + [sym_table_header] = STATE(248), + [sym_table_separator] = STATE(248), + [sym_table_row] = STATE(248), + [sym_footnote] = STATE(1108), + [sym_footnote_marker_begin] = STATE(1141), + [sym_div] = STATE(1108), + [sym__div_marker_begin] = STATE(1023), + [sym_code_block] = STATE(1108), + [sym_raw_block] = STATE(1108), + [sym_thematic_break] = STATE(1108), + [sym_block_quote] = STATE(1108), + [sym__block_quote_prefix] = STATE(222), + [sym_link_reference_definition] = STATE(1108), + [sym_block_attribute] = STATE(1108), + [sym__paragraph] = STATE(1108), + [sym__paragraph_content] = STATE(738), + [sym__paragraph_inline_content] = STATE(799), + [sym__inline] = STATE(629), + [sym__symbol_fallback] = STATE(285), + [aux_sym__list_dash_repeat1] = STATE(354), + [aux_sym__list_plus_repeat1] = STATE(355), + [aux_sym__list_star_repeat1] = STATE(356), + [aux_sym__list_task_repeat1] = STATE(335), + [aux_sym__list_definition_repeat1] = STATE(479), + [aux_sym__list_decimal_period_repeat1] = STATE(480), + [aux_sym__list_decimal_paren_repeat1] = STATE(481), + [aux_sym__list_decimal_parens_repeat1] = STATE(482), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(483), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(484), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(485), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(486), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(487), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(488), + [aux_sym__list_lower_roman_period_repeat1] = STATE(489), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(490), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(491), + [aux_sym__list_upper_roman_period_repeat1] = STATE(492), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(493), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(494), + [aux_sym_table_repeat1] = STATE(248), + [aux_sym__block_quote_prefix_repeat1] = STATE(235), + [aux_sym__inline_repeat1] = STATE(285), + [anon_sym_LBRACK] = ACTIONS(364), + [anon_sym_LBRACK_CARET] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(366), + [anon_sym_DOT] = ACTIONS(11), + [aux_sym_identifier_token1] = ACTIONS(11), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_PERCENT] = ACTIONS(11), [sym__newline] = ACTIONS(398), - [sym__heading_begin] = ACTIONS(346), - [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(348), - [sym_list_marker_dash] = ACTIONS(25), - [sym_list_marker_star] = ACTIONS(27), - [sym_list_marker_plus] = ACTIONS(29), - [sym__list_marker_task_begin] = ACTIONS(31), - [sym_list_marker_definition] = ACTIONS(33), - [sym_list_marker_decimal_period] = ACTIONS(35), - [sym_list_marker_lower_alpha_period] = ACTIONS(37), - [sym_list_marker_upper_alpha_period] = ACTIONS(39), - [sym_list_marker_lower_roman_period] = ACTIONS(41), - [sym_list_marker_upper_roman_period] = ACTIONS(43), - [sym_list_marker_decimal_paren] = ACTIONS(45), - [sym_list_marker_lower_alpha_paren] = ACTIONS(47), - [sym_list_marker_upper_alpha_paren] = ACTIONS(49), - [sym_list_marker_lower_roman_paren] = ACTIONS(51), - [sym_list_marker_upper_roman_paren] = ACTIONS(53), - [sym_list_marker_decimal_parens] = ACTIONS(55), - [sym_list_marker_lower_alpha_parens] = ACTIONS(57), - [sym_list_marker_upper_alpha_parens] = ACTIONS(59), - [sym_list_marker_lower_roman_parens] = ACTIONS(61), - [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(350), - [sym__block_quote_continuation] = ACTIONS(352), - [sym__thematic_break_dash] = ACTIONS(354), - [sym__thematic_break_star] = ACTIONS(354), + [sym__heading_begin] = ACTIONS(370), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(372), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(374), + [sym__block_quote_continuation] = ACTIONS(376), + [sym__thematic_break_dash] = ACTIONS(378), + [sym__thematic_break_star] = ACTIONS(378), + [sym__table_header_begin] = ACTIONS(380), + [sym__table_separator_begin] = ACTIONS(382), + [sym__table_row_begin] = ACTIONS(384), }, [49] = { - [sym__block_with_heading] = STATE(1117), - [sym__block_element] = STATE(1117), - [sym_heading] = STATE(1117), - [sym_list] = STATE(1117), - [sym__list_dash] = STATE(1006), - [sym__list_item_dash] = STATE(636), - [sym__list_plus] = STATE(1006), - [sym__list_item_plus] = STATE(637), - [sym__list_star] = STATE(1006), - [sym__list_item_star] = STATE(671), - [sym__list_task] = STATE(1006), - [sym__list_item_task] = STATE(691), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(1006), - [sym__list_item_definition] = STATE(896), - [sym__list_decimal_period] = STATE(1006), - [sym__list_item_decimal_period] = STATE(841), - [sym__list_decimal_paren] = STATE(1006), - [sym__list_item_decimal_paren] = STATE(796), - [sym__list_decimal_parens] = STATE(1006), - [sym__list_item_decimal_parens] = STATE(716), - [sym__list_lower_alpha_period] = STATE(1006), - [sym__list_item_lower_alpha_period] = STATE(722), - [sym__list_lower_alpha_paren] = STATE(1006), - [sym__list_item_lower_alpha_paren] = STATE(801), - [sym__list_lower_alpha_parens] = STATE(1006), - [sym__list_item_lower_alpha_parens] = STATE(813), - [sym__list_upper_alpha_period] = STATE(1006), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(1006), - [sym__list_item_upper_alpha_paren] = STATE(706), - [sym__list_upper_alpha_parens] = STATE(1006), - [sym__list_item_upper_alpha_parens] = STATE(707), - [sym__list_lower_roman_period] = STATE(1006), - [sym__list_item_lower_roman_period] = STATE(725), - [sym__list_lower_roman_paren] = STATE(1006), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(1006), - [sym__list_item_lower_roman_parens] = STATE(736), - [sym__list_upper_roman_period] = STATE(1006), - [sym__list_item_upper_roman_period] = STATE(742), - [sym__list_upper_roman_paren] = STATE(1006), - [sym__list_item_upper_roman_paren] = STATE(743), - [sym__list_upper_roman_parens] = STATE(1006), - [sym__list_item_upper_roman_parens] = STATE(762), - [sym_table] = STATE(1117), - [sym__table_content] = STATE(310), - [sym_table_separator] = STATE(310), - [sym_table_row] = STATE(331), - [sym_footnote] = STATE(1117), - [sym_footnote_marker_begin] = STATE(1176), - [sym_footnote_content] = STATE(655), - [sym_div] = STATE(1117), - [sym__div_marker_begin] = STATE(1026), - [sym_code_block] = STATE(1117), - [sym_raw_block] = STATE(1117), - [sym_thematic_break] = STATE(1117), - [sym_block_quote] = STATE(1117), - [sym__block_quote_prefix] = STATE(231), - [sym_link_reference_definition] = STATE(1117), - [sym_block_attribute] = STATE(1117), - [sym__paragraph] = STATE(1117), - [sym__paragraph_content] = STATE(705), - [sym__paragraph_inline_content] = STATE(775), - [sym__inline] = STATE(616), - [sym__symbol_fallback] = STATE(297), - [aux_sym__list_dash_repeat1] = STATE(355), - [aux_sym__list_plus_repeat1] = STATE(356), - [aux_sym__list_star_repeat1] = STATE(362), - [aux_sym__list_task_repeat1] = STATE(346), - [aux_sym__list_definition_repeat1] = STATE(483), - [aux_sym__list_decimal_period_repeat1] = STATE(484), - [aux_sym__list_decimal_paren_repeat1] = STATE(485), - [aux_sym__list_decimal_parens_repeat1] = STATE(486), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(487), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(488), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(489), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(490), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(491), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(492), - [aux_sym__list_lower_roman_period_repeat1] = STATE(493), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(494), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(495), - [aux_sym__list_upper_roman_period_repeat1] = STATE(581), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(497), - [aux_sym_table_repeat1] = STATE(310), - [aux_sym__block_quote_prefix_repeat1] = STATE(253), - [aux_sym__inline_repeat1] = STATE(297), - [anon_sym_LBRACK] = ACTIONS(338), - [anon_sym_PIPE] = ACTIONS(340), - [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(342), - [anon_sym_DOT] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(13), - [aux_sym__inline_token1] = ACTIONS(13), - [anon_sym_LBRACE_DASH] = ACTIONS(13), - [anon_sym_POUND] = ACTIONS(13), - [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(400), - [sym__heading_begin] = ACTIONS(346), - [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(348), - [sym_list_marker_dash] = ACTIONS(25), - [sym_list_marker_star] = ACTIONS(27), - [sym_list_marker_plus] = ACTIONS(29), - [sym__list_marker_task_begin] = ACTIONS(31), - [sym_list_marker_definition] = ACTIONS(33), - [sym_list_marker_decimal_period] = ACTIONS(35), - [sym_list_marker_lower_alpha_period] = ACTIONS(37), - [sym_list_marker_upper_alpha_period] = ACTIONS(39), - [sym_list_marker_lower_roman_period] = ACTIONS(41), - [sym_list_marker_upper_roman_period] = ACTIONS(43), - [sym_list_marker_decimal_paren] = ACTIONS(45), - [sym_list_marker_lower_alpha_paren] = ACTIONS(47), - [sym_list_marker_upper_alpha_paren] = ACTIONS(49), - [sym_list_marker_lower_roman_paren] = ACTIONS(51), - [sym_list_marker_upper_roman_paren] = ACTIONS(53), - [sym_list_marker_decimal_parens] = ACTIONS(55), - [sym_list_marker_lower_alpha_parens] = ACTIONS(57), - [sym_list_marker_upper_alpha_parens] = ACTIONS(59), - [sym_list_marker_lower_roman_parens] = ACTIONS(61), - [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(350), - [sym__block_quote_continuation] = ACTIONS(352), - [sym__thematic_break_dash] = ACTIONS(354), - [sym__thematic_break_star] = ACTIONS(354), + [sym__block_with_heading] = STATE(1095), + [sym__block_element] = STATE(1095), + [sym_heading] = STATE(1095), + [sym_list] = STATE(1095), + [sym__list_dash] = STATE(974), + [sym__list_item_dash] = STATE(687), + [sym__list_plus] = STATE(974), + [sym__list_item_plus] = STATE(691), + [sym__list_star] = STATE(974), + [sym__list_item_star] = STATE(673), + [sym__list_task] = STATE(974), + [sym__list_item_task] = STATE(680), + [sym_list_marker_task] = STATE(48), + [sym__list_definition] = STATE(974), + [sym__list_item_definition] = STATE(804), + [sym__list_decimal_period] = STATE(974), + [sym__list_item_decimal_period] = STATE(837), + [sym__list_decimal_paren] = STATE(974), + [sym__list_item_decimal_paren] = STATE(703), + [sym__list_decimal_parens] = STATE(974), + [sym__list_item_decimal_parens] = STATE(715), + [sym__list_lower_alpha_period] = STATE(974), + [sym__list_item_lower_alpha_period] = STATE(739), + [sym__list_lower_alpha_paren] = STATE(974), + [sym__list_item_lower_alpha_paren] = STATE(754), + [sym__list_lower_alpha_parens] = STATE(974), + [sym__list_item_lower_alpha_parens] = STATE(755), + [sym__list_upper_alpha_period] = STATE(974), + [sym__list_item_upper_alpha_period] = STATE(758), + [sym__list_upper_alpha_paren] = STATE(974), + [sym__list_item_upper_alpha_paren] = STATE(759), + [sym__list_upper_alpha_parens] = STATE(974), + [sym__list_item_upper_alpha_parens] = STATE(766), + [sym__list_lower_roman_period] = STATE(974), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(974), + [sym__list_item_lower_roman_paren] = STATE(770), + [sym__list_lower_roman_parens] = STATE(974), + [sym__list_item_lower_roman_parens] = STATE(773), + [sym__list_upper_roman_period] = STATE(974), + [sym__list_item_upper_roman_period] = STATE(775), + [sym__list_upper_roman_paren] = STATE(974), + [sym__list_item_upper_roman_paren] = STATE(791), + [sym__list_upper_roman_parens] = STATE(974), + [sym__list_item_upper_roman_parens] = STATE(793), + [sym_list_item_content] = STATE(745), + [sym_table] = STATE(1095), + [sym__table_row] = STATE(248), + [sym_table_header] = STATE(248), + [sym_table_separator] = STATE(248), + [sym_table_row] = STATE(248), + [sym_footnote] = STATE(1095), + [sym_footnote_marker_begin] = STATE(1141), + [sym_div] = STATE(1095), + [sym__div_marker_begin] = STATE(1023), + [sym_code_block] = STATE(1095), + [sym_raw_block] = STATE(1095), + [sym_thematic_break] = STATE(1095), + [sym_block_quote] = STATE(1095), + [sym__block_quote_prefix] = STATE(222), + [sym_link_reference_definition] = STATE(1095), + [sym_block_attribute] = STATE(1095), + [sym__paragraph] = STATE(1095), + [sym__paragraph_content] = STATE(738), + [sym__paragraph_inline_content] = STATE(799), + [sym__inline] = STATE(629), + [sym__symbol_fallback] = STATE(285), + [aux_sym__list_dash_repeat1] = STATE(354), + [aux_sym__list_plus_repeat1] = STATE(355), + [aux_sym__list_star_repeat1] = STATE(356), + [aux_sym__list_task_repeat1] = STATE(335), + [aux_sym__list_definition_repeat1] = STATE(479), + [aux_sym__list_decimal_period_repeat1] = STATE(480), + [aux_sym__list_decimal_paren_repeat1] = STATE(481), + [aux_sym__list_decimal_parens_repeat1] = STATE(482), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(483), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(484), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(485), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(486), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(487), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(488), + [aux_sym__list_lower_roman_period_repeat1] = STATE(489), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(490), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(491), + [aux_sym__list_upper_roman_period_repeat1] = STATE(492), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(493), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(494), + [aux_sym_table_repeat1] = STATE(248), + [aux_sym__block_quote_prefix_repeat1] = STATE(235), + [aux_sym__inline_repeat1] = STATE(285), + [anon_sym_LBRACK] = ACTIONS(364), + [anon_sym_LBRACK_CARET] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(366), + [anon_sym_DOT] = ACTIONS(11), + [aux_sym_identifier_token1] = ACTIONS(11), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_PERCENT] = ACTIONS(11), + [sym__newline] = ACTIONS(430), + [sym__heading_begin] = ACTIONS(370), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(372), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(374), + [sym__block_quote_continuation] = ACTIONS(376), + [sym__thematic_break_dash] = ACTIONS(378), + [sym__thematic_break_star] = ACTIONS(378), + [sym__table_header_begin] = ACTIONS(380), + [sym__table_separator_begin] = ACTIONS(382), + [sym__table_row_begin] = ACTIONS(384), }, [50] = { - [sym__block_with_heading] = STATE(635), - [sym__block_element] = STATE(635), - [sym_heading] = STATE(635), - [sym_list] = STATE(635), - [sym__list_dash] = STATE(603), - [sym__list_item_dash] = STATE(636), - [sym__list_plus] = STATE(603), - [sym__list_item_plus] = STATE(637), - [sym__list_star] = STATE(603), - [sym__list_item_star] = STATE(671), - [sym__list_task] = STATE(603), - [sym__list_item_task] = STATE(691), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(603), - [sym__list_item_definition] = STATE(896), - [sym__list_decimal_period] = STATE(603), - [sym__list_item_decimal_period] = STATE(841), - [sym__list_decimal_paren] = STATE(603), - [sym__list_item_decimal_paren] = STATE(796), - [sym__list_decimal_parens] = STATE(603), - [sym__list_item_decimal_parens] = STATE(716), - [sym__list_lower_alpha_period] = STATE(603), - [sym__list_item_lower_alpha_period] = STATE(722), - [sym__list_lower_alpha_paren] = STATE(603), - [sym__list_item_lower_alpha_paren] = STATE(801), - [sym__list_lower_alpha_parens] = STATE(603), - [sym__list_item_lower_alpha_parens] = STATE(813), - [sym__list_upper_alpha_period] = STATE(603), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(603), - [sym__list_item_upper_alpha_paren] = STATE(706), - [sym__list_upper_alpha_parens] = STATE(603), - [sym__list_item_upper_alpha_parens] = STATE(707), - [sym__list_lower_roman_period] = STATE(603), - [sym__list_item_lower_roman_period] = STATE(725), - [sym__list_lower_roman_paren] = STATE(603), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(603), - [sym__list_item_lower_roman_parens] = STATE(736), - [sym__list_upper_roman_period] = STATE(603), - [sym__list_item_upper_roman_period] = STATE(742), - [sym__list_upper_roman_paren] = STATE(603), - [sym__list_item_upper_roman_paren] = STATE(743), - [sym__list_upper_roman_parens] = STATE(603), - [sym__list_item_upper_roman_parens] = STATE(762), - [sym_table] = STATE(635), - [sym__table_content] = STATE(301), - [sym_table_separator] = STATE(301), - [sym_table_row] = STATE(329), - [sym_footnote] = STATE(635), - [sym_footnote_marker_begin] = STATE(1182), - [sym_div] = STATE(635), - [sym__div_marker_begin] = STATE(1097), - [sym_code_block] = STATE(635), - [sym_raw_block] = STATE(635), - [sym_thematic_break] = STATE(635), - [sym_block_quote] = STATE(635), - [sym__block_quote_prefix] = STATE(229), - [sym_link_reference_definition] = STATE(635), - [sym_block_attribute] = STATE(635), - [sym__paragraph] = STATE(635), - [sym__paragraph_content] = STATE(803), - [sym__paragraph_inline_content] = STATE(775), - [sym__inline] = STATE(616), - [sym__symbol_fallback] = STATE(297), - [aux_sym__list_dash_repeat1] = STATE(367), - [aux_sym__list_plus_repeat1] = STATE(353), - [aux_sym__list_star_repeat1] = STATE(364), - [aux_sym__list_task_repeat1] = STATE(338), - [aux_sym__list_definition_repeat1] = STATE(533), - [aux_sym__list_decimal_period_repeat1] = STATE(534), - [aux_sym__list_decimal_paren_repeat1] = STATE(535), - [aux_sym__list_decimal_parens_repeat1] = STATE(536), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(537), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(538), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(539), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(540), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(541), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(542), - [aux_sym__list_lower_roman_period_repeat1] = STATE(543), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(544), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(545), - [aux_sym__list_upper_roman_period_repeat1] = STATE(546), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(547), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(548), - [aux_sym_table_repeat1] = STATE(301), - [aux_sym__block_quote_prefix_repeat1] = STATE(253), - [aux_sym__inline_repeat1] = STATE(297), - [anon_sym_LBRACK] = ACTIONS(402), - [anon_sym_PIPE] = ACTIONS(404), - [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_DOT] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(13), - [aux_sym__inline_token1] = ACTIONS(13), - [anon_sym_LBRACE_DASH] = ACTIONS(13), - [anon_sym_POUND] = ACTIONS(13), - [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(408), - [sym__heading_begin] = ACTIONS(410), - [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(412), - [sym_list_marker_dash] = ACTIONS(25), - [sym_list_marker_star] = ACTIONS(27), - [sym_list_marker_plus] = ACTIONS(29), - [sym__list_marker_task_begin] = ACTIONS(31), - [sym_list_marker_definition] = ACTIONS(33), - [sym_list_marker_decimal_period] = ACTIONS(35), - [sym_list_marker_lower_alpha_period] = ACTIONS(37), - [sym_list_marker_upper_alpha_period] = ACTIONS(39), - [sym_list_marker_lower_roman_period] = ACTIONS(41), - [sym_list_marker_upper_roman_period] = ACTIONS(43), - [sym_list_marker_decimal_paren] = ACTIONS(45), - [sym_list_marker_lower_alpha_paren] = ACTIONS(47), - [sym_list_marker_upper_alpha_paren] = ACTIONS(49), - [sym_list_marker_lower_roman_paren] = ACTIONS(51), - [sym_list_marker_upper_roman_paren] = ACTIONS(53), - [sym_list_marker_decimal_parens] = ACTIONS(55), - [sym_list_marker_lower_alpha_parens] = ACTIONS(57), - [sym_list_marker_upper_alpha_parens] = ACTIONS(59), - [sym_list_marker_lower_roman_parens] = ACTIONS(61), - [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(414), - [sym__block_quote_continuation] = ACTIONS(416), - [sym__thematic_break_dash] = ACTIONS(418), - [sym__thematic_break_star] = ACTIONS(418), + [sym__block_with_heading] = STATE(612), + [sym__block_element] = STATE(612), + [sym_heading] = STATE(612), + [sym_list] = STATE(612), + [sym__list_dash] = STATE(600), + [sym__list_item_dash] = STATE(687), + [sym__list_plus] = STATE(600), + [sym__list_item_plus] = STATE(691), + [sym__list_star] = STATE(600), + [sym__list_item_star] = STATE(673), + [sym__list_task] = STATE(600), + [sym__list_item_task] = STATE(680), + [sym_list_marker_task] = STATE(48), + [sym__list_definition] = STATE(600), + [sym__list_item_definition] = STATE(804), + [sym__list_decimal_period] = STATE(600), + [sym__list_item_decimal_period] = STATE(837), + [sym__list_decimal_paren] = STATE(600), + [sym__list_item_decimal_paren] = STATE(703), + [sym__list_decimal_parens] = STATE(600), + [sym__list_item_decimal_parens] = STATE(715), + [sym__list_lower_alpha_period] = STATE(600), + [sym__list_item_lower_alpha_period] = STATE(739), + [sym__list_lower_alpha_paren] = STATE(600), + [sym__list_item_lower_alpha_paren] = STATE(754), + [sym__list_lower_alpha_parens] = STATE(600), + [sym__list_item_lower_alpha_parens] = STATE(755), + [sym__list_upper_alpha_period] = STATE(600), + [sym__list_item_upper_alpha_period] = STATE(758), + [sym__list_upper_alpha_paren] = STATE(600), + [sym__list_item_upper_alpha_paren] = STATE(759), + [sym__list_upper_alpha_parens] = STATE(600), + [sym__list_item_upper_alpha_parens] = STATE(766), + [sym__list_lower_roman_period] = STATE(600), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(600), + [sym__list_item_lower_roman_paren] = STATE(770), + [sym__list_lower_roman_parens] = STATE(600), + [sym__list_item_lower_roman_parens] = STATE(773), + [sym__list_upper_roman_period] = STATE(600), + [sym__list_item_upper_roman_period] = STATE(775), + [sym__list_upper_roman_paren] = STATE(600), + [sym__list_item_upper_roman_paren] = STATE(791), + [sym__list_upper_roman_parens] = STATE(600), + [sym__list_item_upper_roman_parens] = STATE(793), + [sym_table] = STATE(612), + [sym__table_row] = STATE(238), + [sym_table_header] = STATE(238), + [sym_table_separator] = STATE(238), + [sym_table_row] = STATE(238), + [sym_footnote] = STATE(612), + [sym_footnote_marker_begin] = STATE(1147), + [sym_div] = STATE(612), + [sym__div_marker_begin] = STATE(1079), + [sym_code_block] = STATE(612), + [sym_raw_block] = STATE(612), + [sym_thematic_break] = STATE(612), + [sym_block_quote] = STATE(612), + [sym__block_quote_prefix] = STATE(223), + [sym_link_reference_definition] = STATE(612), + [sym_block_attribute] = STATE(612), + [sym__paragraph] = STATE(612), + [sym__paragraph_content] = STATE(821), + [sym__paragraph_inline_content] = STATE(799), + [sym__inline] = STATE(629), + [sym__symbol_fallback] = STATE(285), + [aux_sym__list_dash_repeat1] = STATE(364), + [aux_sym__list_plus_repeat1] = STATE(365), + [aux_sym__list_star_repeat1] = STATE(383), + [aux_sym__list_task_repeat1] = STATE(328), + [aux_sym__list_definition_repeat1] = STATE(536), + [aux_sym__list_decimal_period_repeat1] = STATE(537), + [aux_sym__list_decimal_paren_repeat1] = STATE(538), + [aux_sym__list_decimal_parens_repeat1] = STATE(539), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(540), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(541), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(542), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(543), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(544), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(545), + [aux_sym__list_lower_roman_period_repeat1] = STATE(546), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(547), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(548), + [aux_sym__list_upper_roman_period_repeat1] = STATE(549), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(550), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(551), + [aux_sym_table_repeat1] = STATE(238), + [aux_sym__block_quote_prefix_repeat1] = STATE(235), + [aux_sym__inline_repeat1] = STATE(285), + [anon_sym_LBRACK] = ACTIONS(432), + [anon_sym_LBRACK_CARET] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_DOT] = ACTIONS(11), + [aux_sym_identifier_token1] = ACTIONS(11), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_PERCENT] = ACTIONS(11), + [sym__newline] = ACTIONS(436), + [sym__heading_begin] = ACTIONS(438), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(440), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(442), + [sym__block_quote_continuation] = ACTIONS(444), + [sym__thematic_break_dash] = ACTIONS(446), + [sym__thematic_break_star] = ACTIONS(446), + [sym__table_header_begin] = ACTIONS(448), + [sym__table_separator_begin] = ACTIONS(450), + [sym__table_row_begin] = ACTIONS(452), }, [51] = { - [sym__block_with_heading] = STATE(613), - [sym__block_element] = STATE(613), - [sym_heading] = STATE(613), - [sym_list] = STATE(613), - [sym__list_dash] = STATE(603), - [sym__list_item_dash] = STATE(636), - [sym__list_plus] = STATE(603), - [sym__list_item_plus] = STATE(637), - [sym__list_star] = STATE(603), - [sym__list_item_star] = STATE(671), - [sym__list_task] = STATE(603), - [sym__list_item_task] = STATE(691), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(603), - [sym__list_item_definition] = STATE(896), - [sym__list_decimal_period] = STATE(603), - [sym__list_item_decimal_period] = STATE(841), - [sym__list_decimal_paren] = STATE(603), - [sym__list_item_decimal_paren] = STATE(796), - [sym__list_decimal_parens] = STATE(603), - [sym__list_item_decimal_parens] = STATE(716), - [sym__list_lower_alpha_period] = STATE(603), - [sym__list_item_lower_alpha_period] = STATE(722), - [sym__list_lower_alpha_paren] = STATE(603), - [sym__list_item_lower_alpha_paren] = STATE(801), - [sym__list_lower_alpha_parens] = STATE(603), - [sym__list_item_lower_alpha_parens] = STATE(813), - [sym__list_upper_alpha_period] = STATE(603), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(603), - [sym__list_item_upper_alpha_paren] = STATE(706), - [sym__list_upper_alpha_parens] = STATE(603), - [sym__list_item_upper_alpha_parens] = STATE(707), - [sym__list_lower_roman_period] = STATE(603), - [sym__list_item_lower_roman_period] = STATE(725), - [sym__list_lower_roman_paren] = STATE(603), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(603), - [sym__list_item_lower_roman_parens] = STATE(736), - [sym__list_upper_roman_period] = STATE(603), - [sym__list_item_upper_roman_period] = STATE(742), - [sym__list_upper_roman_paren] = STATE(603), - [sym__list_item_upper_roman_paren] = STATE(743), - [sym__list_upper_roman_parens] = STATE(603), - [sym__list_item_upper_roman_parens] = STATE(762), - [sym_table] = STATE(613), - [sym__table_content] = STATE(301), - [sym_table_separator] = STATE(301), - [sym_table_row] = STATE(329), - [sym_footnote] = STATE(613), - [sym_footnote_marker_begin] = STATE(1182), - [sym_div] = STATE(613), - [sym__div_marker_begin] = STATE(1097), - [sym_code_block] = STATE(613), - [sym_raw_block] = STATE(613), - [sym_thematic_break] = STATE(613), - [sym_block_quote] = STATE(613), - [sym__block_quote_prefix] = STATE(229), - [sym_link_reference_definition] = STATE(613), - [sym_block_attribute] = STATE(613), - [sym__paragraph] = STATE(613), - [sym__paragraph_content] = STATE(803), - [sym__paragraph_inline_content] = STATE(775), - [sym__inline] = STATE(616), - [sym__symbol_fallback] = STATE(297), - [aux_sym__list_dash_repeat1] = STATE(367), - [aux_sym__list_plus_repeat1] = STATE(353), - [aux_sym__list_star_repeat1] = STATE(364), - [aux_sym__list_task_repeat1] = STATE(338), - [aux_sym__list_definition_repeat1] = STATE(533), - [aux_sym__list_decimal_period_repeat1] = STATE(534), - [aux_sym__list_decimal_paren_repeat1] = STATE(535), - [aux_sym__list_decimal_parens_repeat1] = STATE(536), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(537), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(538), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(539), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(540), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(541), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(542), - [aux_sym__list_lower_roman_period_repeat1] = STATE(543), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(544), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(545), - [aux_sym__list_upper_roman_period_repeat1] = STATE(546), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(547), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(548), - [aux_sym_table_repeat1] = STATE(301), - [aux_sym__block_quote_prefix_repeat1] = STATE(253), - [aux_sym__inline_repeat1] = STATE(297), - [anon_sym_LBRACK] = ACTIONS(402), - [anon_sym_PIPE] = ACTIONS(404), - [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_DOT] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(13), - [aux_sym__inline_token1] = ACTIONS(13), - [anon_sym_LBRACE_DASH] = ACTIONS(13), - [anon_sym_POUND] = ACTIONS(13), - [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(420), - [sym__heading_begin] = ACTIONS(410), - [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(412), - [sym_list_marker_dash] = ACTIONS(25), - [sym_list_marker_star] = ACTIONS(27), - [sym_list_marker_plus] = ACTIONS(29), - [sym__list_marker_task_begin] = ACTIONS(31), - [sym_list_marker_definition] = ACTIONS(33), - [sym_list_marker_decimal_period] = ACTIONS(35), - [sym_list_marker_lower_alpha_period] = ACTIONS(37), - [sym_list_marker_upper_alpha_period] = ACTIONS(39), - [sym_list_marker_lower_roman_period] = ACTIONS(41), - [sym_list_marker_upper_roman_period] = ACTIONS(43), - [sym_list_marker_decimal_paren] = ACTIONS(45), - [sym_list_marker_lower_alpha_paren] = ACTIONS(47), - [sym_list_marker_upper_alpha_paren] = ACTIONS(49), - [sym_list_marker_lower_roman_paren] = ACTIONS(51), - [sym_list_marker_upper_roman_paren] = ACTIONS(53), - [sym_list_marker_decimal_parens] = ACTIONS(55), - [sym_list_marker_lower_alpha_parens] = ACTIONS(57), - [sym_list_marker_upper_alpha_parens] = ACTIONS(59), - [sym_list_marker_lower_roman_parens] = ACTIONS(61), - [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(414), - [sym__block_quote_continuation] = ACTIONS(416), - [sym__thematic_break_dash] = ACTIONS(418), - [sym__thematic_break_star] = ACTIONS(418), + [sym__block_with_heading] = STATE(1067), + [sym__block_element] = STATE(1067), + [sym_heading] = STATE(1067), + [sym_list] = STATE(1067), + [sym__list_dash] = STATE(974), + [sym__list_item_dash] = STATE(687), + [sym__list_plus] = STATE(974), + [sym__list_item_plus] = STATE(691), + [sym__list_star] = STATE(974), + [sym__list_item_star] = STATE(673), + [sym__list_task] = STATE(974), + [sym__list_item_task] = STATE(680), + [sym_list_marker_task] = STATE(48), + [sym__list_definition] = STATE(974), + [sym__list_item_definition] = STATE(804), + [sym__list_decimal_period] = STATE(974), + [sym__list_item_decimal_period] = STATE(837), + [sym__list_decimal_paren] = STATE(974), + [sym__list_item_decimal_paren] = STATE(703), + [sym__list_decimal_parens] = STATE(974), + [sym__list_item_decimal_parens] = STATE(715), + [sym__list_lower_alpha_period] = STATE(974), + [sym__list_item_lower_alpha_period] = STATE(739), + [sym__list_lower_alpha_paren] = STATE(974), + [sym__list_item_lower_alpha_paren] = STATE(754), + [sym__list_lower_alpha_parens] = STATE(974), + [sym__list_item_lower_alpha_parens] = STATE(755), + [sym__list_upper_alpha_period] = STATE(974), + [sym__list_item_upper_alpha_period] = STATE(758), + [sym__list_upper_alpha_paren] = STATE(974), + [sym__list_item_upper_alpha_paren] = STATE(759), + [sym__list_upper_alpha_parens] = STATE(974), + [sym__list_item_upper_alpha_parens] = STATE(766), + [sym__list_lower_roman_period] = STATE(974), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(974), + [sym__list_item_lower_roman_paren] = STATE(770), + [sym__list_lower_roman_parens] = STATE(974), + [sym__list_item_lower_roman_parens] = STATE(773), + [sym__list_upper_roman_period] = STATE(974), + [sym__list_item_upper_roman_period] = STATE(775), + [sym__list_upper_roman_paren] = STATE(974), + [sym__list_item_upper_roman_paren] = STATE(791), + [sym__list_upper_roman_parens] = STATE(974), + [sym__list_item_upper_roman_parens] = STATE(793), + [sym_table] = STATE(1067), + [sym__table_row] = STATE(248), + [sym_table_header] = STATE(248), + [sym_table_separator] = STATE(248), + [sym_table_row] = STATE(248), + [sym_footnote] = STATE(1067), + [sym_footnote_marker_begin] = STATE(1141), + [sym_div] = STATE(1067), + [sym__div_marker_begin] = STATE(1023), + [sym_code_block] = STATE(1067), + [sym_raw_block] = STATE(1067), + [sym_thematic_break] = STATE(1067), + [sym_block_quote] = STATE(1067), + [sym__block_quote_prefix] = STATE(222), + [sym_link_reference_definition] = STATE(1067), + [sym_block_attribute] = STATE(1067), + [sym__paragraph] = STATE(1067), + [sym__paragraph_content] = STATE(738), + [sym__paragraph_inline_content] = STATE(799), + [sym__inline] = STATE(629), + [sym__symbol_fallback] = STATE(285), + [aux_sym__list_dash_repeat1] = STATE(354), + [aux_sym__list_plus_repeat1] = STATE(355), + [aux_sym__list_star_repeat1] = STATE(356), + [aux_sym__list_task_repeat1] = STATE(335), + [aux_sym__list_definition_repeat1] = STATE(479), + [aux_sym__list_decimal_period_repeat1] = STATE(480), + [aux_sym__list_decimal_paren_repeat1] = STATE(481), + [aux_sym__list_decimal_parens_repeat1] = STATE(482), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(483), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(484), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(485), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(486), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(487), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(488), + [aux_sym__list_lower_roman_period_repeat1] = STATE(489), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(490), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(491), + [aux_sym__list_upper_roman_period_repeat1] = STATE(492), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(493), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(494), + [aux_sym_table_repeat1] = STATE(248), + [aux_sym__block_quote_prefix_repeat1] = STATE(235), + [aux_sym__inline_repeat1] = STATE(285), + [anon_sym_LBRACK] = ACTIONS(364), + [anon_sym_LBRACK_CARET] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(366), + [anon_sym_DOT] = ACTIONS(11), + [aux_sym_identifier_token1] = ACTIONS(11), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_PERCENT] = ACTIONS(11), + [sym__newline] = ACTIONS(454), + [sym__heading_begin] = ACTIONS(370), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(372), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(374), + [sym__block_quote_continuation] = ACTIONS(376), + [sym__thematic_break_dash] = ACTIONS(378), + [sym__thematic_break_star] = ACTIONS(378), + [sym__table_header_begin] = ACTIONS(380), + [sym__table_separator_begin] = ACTIONS(382), + [sym__table_row_begin] = ACTIONS(384), }, [52] = { - [sym__block_with_heading] = STATE(1170), - [sym__block_element] = STATE(1170), - [sym_heading] = STATE(1170), - [sym_list] = STATE(1170), - [sym__list_dash] = STATE(1006), - [sym__list_item_dash] = STATE(636), - [sym__list_plus] = STATE(1006), - [sym__list_item_plus] = STATE(637), - [sym__list_star] = STATE(1006), - [sym__list_item_star] = STATE(671), - [sym__list_task] = STATE(1006), - [sym__list_item_task] = STATE(691), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(1006), - [sym__list_item_definition] = STATE(896), - [sym__list_decimal_period] = STATE(1006), - [sym__list_item_decimal_period] = STATE(841), - [sym__list_decimal_paren] = STATE(1006), - [sym__list_item_decimal_paren] = STATE(796), - [sym__list_decimal_parens] = STATE(1006), - [sym__list_item_decimal_parens] = STATE(716), - [sym__list_lower_alpha_period] = STATE(1006), - [sym__list_item_lower_alpha_period] = STATE(722), - [sym__list_lower_alpha_paren] = STATE(1006), - [sym__list_item_lower_alpha_paren] = STATE(801), - [sym__list_lower_alpha_parens] = STATE(1006), - [sym__list_item_lower_alpha_parens] = STATE(813), - [sym__list_upper_alpha_period] = STATE(1006), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(1006), - [sym__list_item_upper_alpha_paren] = STATE(706), - [sym__list_upper_alpha_parens] = STATE(1006), - [sym__list_item_upper_alpha_parens] = STATE(707), - [sym__list_lower_roman_period] = STATE(1006), - [sym__list_item_lower_roman_period] = STATE(725), - [sym__list_lower_roman_paren] = STATE(1006), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(1006), - [sym__list_item_lower_roman_parens] = STATE(736), - [sym__list_upper_roman_period] = STATE(1006), - [sym__list_item_upper_roman_period] = STATE(742), - [sym__list_upper_roman_paren] = STATE(1006), - [sym__list_item_upper_roman_paren] = STATE(743), - [sym__list_upper_roman_parens] = STATE(1006), - [sym__list_item_upper_roman_parens] = STATE(762), - [sym_table] = STATE(1170), - [sym__table_content] = STATE(310), - [sym_table_separator] = STATE(310), - [sym_table_row] = STATE(331), - [sym_footnote] = STATE(1170), - [sym_footnote_marker_begin] = STATE(1176), - [sym_div] = STATE(1170), - [sym__div_marker_begin] = STATE(1026), - [sym_code_block] = STATE(1170), - [sym_raw_block] = STATE(1170), - [sym_thematic_break] = STATE(1170), - [sym_block_quote] = STATE(1170), - [sym__block_quote_prefix] = STATE(231), - [sym_link_reference_definition] = STATE(1170), - [sym_block_attribute] = STATE(1170), - [sym__paragraph] = STATE(1170), - [sym__paragraph_content] = STATE(705), - [sym__paragraph_inline_content] = STATE(775), - [sym__inline] = STATE(616), - [sym__symbol_fallback] = STATE(297), - [aux_sym__list_dash_repeat1] = STATE(355), - [aux_sym__list_plus_repeat1] = STATE(356), - [aux_sym__list_star_repeat1] = STATE(362), - [aux_sym__list_task_repeat1] = STATE(346), - [aux_sym__list_definition_repeat1] = STATE(483), - [aux_sym__list_decimal_period_repeat1] = STATE(484), - [aux_sym__list_decimal_paren_repeat1] = STATE(485), - [aux_sym__list_decimal_parens_repeat1] = STATE(486), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(487), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(488), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(489), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(490), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(491), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(492), - [aux_sym__list_lower_roman_period_repeat1] = STATE(493), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(494), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(495), - [aux_sym__list_upper_roman_period_repeat1] = STATE(581), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(497), - [aux_sym_table_repeat1] = STATE(310), - [aux_sym__block_quote_prefix_repeat1] = STATE(253), - [aux_sym__inline_repeat1] = STATE(297), - [anon_sym_LBRACK] = ACTIONS(338), - [anon_sym_PIPE] = ACTIONS(340), - [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(342), - [anon_sym_DOT] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(13), - [aux_sym__inline_token1] = ACTIONS(13), - [anon_sym_LBRACE_DASH] = ACTIONS(13), - [anon_sym_POUND] = ACTIONS(13), - [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(422), - [sym__heading_begin] = ACTIONS(346), - [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(348), - [sym_list_marker_dash] = ACTIONS(25), - [sym_list_marker_star] = ACTIONS(27), - [sym_list_marker_plus] = ACTIONS(29), - [sym__list_marker_task_begin] = ACTIONS(31), - [sym_list_marker_definition] = ACTIONS(33), - [sym_list_marker_decimal_period] = ACTIONS(35), - [sym_list_marker_lower_alpha_period] = ACTIONS(37), - [sym_list_marker_upper_alpha_period] = ACTIONS(39), - [sym_list_marker_lower_roman_period] = ACTIONS(41), - [sym_list_marker_upper_roman_period] = ACTIONS(43), - [sym_list_marker_decimal_paren] = ACTIONS(45), - [sym_list_marker_lower_alpha_paren] = ACTIONS(47), - [sym_list_marker_upper_alpha_paren] = ACTIONS(49), - [sym_list_marker_lower_roman_paren] = ACTIONS(51), - [sym_list_marker_upper_roman_paren] = ACTIONS(53), - [sym_list_marker_decimal_parens] = ACTIONS(55), - [sym_list_marker_lower_alpha_parens] = ACTIONS(57), - [sym_list_marker_upper_alpha_parens] = ACTIONS(59), - [sym_list_marker_lower_roman_parens] = ACTIONS(61), - [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(350), - [sym__block_quote_continuation] = ACTIONS(352), - [sym__thematic_break_dash] = ACTIONS(354), - [sym__thematic_break_star] = ACTIONS(354), + [sym__block_with_heading] = STATE(960), + [sym__block_element] = STATE(960), + [sym_heading] = STATE(960), + [sym_list] = STATE(960), + [sym__list_dash] = STATE(974), + [sym__list_item_dash] = STATE(687), + [sym__list_plus] = STATE(974), + [sym__list_item_plus] = STATE(691), + [sym__list_star] = STATE(974), + [sym__list_item_star] = STATE(673), + [sym__list_task] = STATE(974), + [sym__list_item_task] = STATE(680), + [sym_list_marker_task] = STATE(48), + [sym__list_definition] = STATE(974), + [sym__list_item_definition] = STATE(804), + [sym__list_decimal_period] = STATE(974), + [sym__list_item_decimal_period] = STATE(837), + [sym__list_decimal_paren] = STATE(974), + [sym__list_item_decimal_paren] = STATE(703), + [sym__list_decimal_parens] = STATE(974), + [sym__list_item_decimal_parens] = STATE(715), + [sym__list_lower_alpha_period] = STATE(974), + [sym__list_item_lower_alpha_period] = STATE(739), + [sym__list_lower_alpha_paren] = STATE(974), + [sym__list_item_lower_alpha_paren] = STATE(754), + [sym__list_lower_alpha_parens] = STATE(974), + [sym__list_item_lower_alpha_parens] = STATE(755), + [sym__list_upper_alpha_period] = STATE(974), + [sym__list_item_upper_alpha_period] = STATE(758), + [sym__list_upper_alpha_paren] = STATE(974), + [sym__list_item_upper_alpha_paren] = STATE(759), + [sym__list_upper_alpha_parens] = STATE(974), + [sym__list_item_upper_alpha_parens] = STATE(766), + [sym__list_lower_roman_period] = STATE(974), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(974), + [sym__list_item_lower_roman_paren] = STATE(770), + [sym__list_lower_roman_parens] = STATE(974), + [sym__list_item_lower_roman_parens] = STATE(773), + [sym__list_upper_roman_period] = STATE(974), + [sym__list_item_upper_roman_period] = STATE(775), + [sym__list_upper_roman_paren] = STATE(974), + [sym__list_item_upper_roman_paren] = STATE(791), + [sym__list_upper_roman_parens] = STATE(974), + [sym__list_item_upper_roman_parens] = STATE(793), + [sym_table] = STATE(960), + [sym__table_row] = STATE(248), + [sym_table_header] = STATE(248), + [sym_table_separator] = STATE(248), + [sym_table_row] = STATE(248), + [sym_footnote] = STATE(960), + [sym_footnote_marker_begin] = STATE(1141), + [sym_div] = STATE(960), + [sym__div_marker_begin] = STATE(1023), + [sym_code_block] = STATE(960), + [sym_raw_block] = STATE(960), + [sym_thematic_break] = STATE(960), + [sym_block_quote] = STATE(960), + [sym__block_quote_prefix] = STATE(222), + [sym_link_reference_definition] = STATE(960), + [sym_block_attribute] = STATE(960), + [sym__paragraph] = STATE(960), + [sym__paragraph_content] = STATE(738), + [sym__paragraph_inline_content] = STATE(799), + [sym__inline] = STATE(629), + [sym__symbol_fallback] = STATE(285), + [aux_sym__list_dash_repeat1] = STATE(354), + [aux_sym__list_plus_repeat1] = STATE(355), + [aux_sym__list_star_repeat1] = STATE(356), + [aux_sym__list_task_repeat1] = STATE(335), + [aux_sym__list_definition_repeat1] = STATE(479), + [aux_sym__list_decimal_period_repeat1] = STATE(480), + [aux_sym__list_decimal_paren_repeat1] = STATE(481), + [aux_sym__list_decimal_parens_repeat1] = STATE(482), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(483), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(484), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(485), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(486), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(487), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(488), + [aux_sym__list_lower_roman_period_repeat1] = STATE(489), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(490), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(491), + [aux_sym__list_upper_roman_period_repeat1] = STATE(492), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(493), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(494), + [aux_sym_table_repeat1] = STATE(248), + [aux_sym__block_quote_prefix_repeat1] = STATE(235), + [aux_sym__inline_repeat1] = STATE(285), + [anon_sym_LBRACK] = ACTIONS(364), + [anon_sym_LBRACK_CARET] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(366), + [anon_sym_DOT] = ACTIONS(11), + [aux_sym_identifier_token1] = ACTIONS(11), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_PERCENT] = ACTIONS(11), + [sym__newline] = ACTIONS(456), + [sym__heading_begin] = ACTIONS(370), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(372), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(374), + [sym__block_quote_continuation] = ACTIONS(376), + [sym__thematic_break_dash] = ACTIONS(378), + [sym__thematic_break_star] = ACTIONS(378), + [sym__table_header_begin] = ACTIONS(380), + [sym__table_separator_begin] = ACTIONS(382), + [sym__table_row_begin] = ACTIONS(384), }, [53] = { - [sym__block_with_heading] = STATE(996), - [sym__block_element] = STATE(996), - [sym_heading] = STATE(996), - [sym_list] = STATE(996), - [sym__list_dash] = STATE(1006), - [sym__list_item_dash] = STATE(636), - [sym__list_plus] = STATE(1006), - [sym__list_item_plus] = STATE(637), - [sym__list_star] = STATE(1006), - [sym__list_item_star] = STATE(671), - [sym__list_task] = STATE(1006), - [sym__list_item_task] = STATE(691), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(1006), - [sym__list_item_definition] = STATE(896), - [sym__list_decimal_period] = STATE(1006), - [sym__list_item_decimal_period] = STATE(841), - [sym__list_decimal_paren] = STATE(1006), - [sym__list_item_decimal_paren] = STATE(796), - [sym__list_decimal_parens] = STATE(1006), - [sym__list_item_decimal_parens] = STATE(716), - [sym__list_lower_alpha_period] = STATE(1006), - [sym__list_item_lower_alpha_period] = STATE(722), - [sym__list_lower_alpha_paren] = STATE(1006), - [sym__list_item_lower_alpha_paren] = STATE(801), - [sym__list_lower_alpha_parens] = STATE(1006), - [sym__list_item_lower_alpha_parens] = STATE(813), - [sym__list_upper_alpha_period] = STATE(1006), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(1006), - [sym__list_item_upper_alpha_paren] = STATE(706), - [sym__list_upper_alpha_parens] = STATE(1006), - [sym__list_item_upper_alpha_parens] = STATE(707), - [sym__list_lower_roman_period] = STATE(1006), - [sym__list_item_lower_roman_period] = STATE(725), - [sym__list_lower_roman_paren] = STATE(1006), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(1006), - [sym__list_item_lower_roman_parens] = STATE(736), - [sym__list_upper_roman_period] = STATE(1006), - [sym__list_item_upper_roman_period] = STATE(742), - [sym__list_upper_roman_paren] = STATE(1006), - [sym__list_item_upper_roman_paren] = STATE(743), - [sym__list_upper_roman_parens] = STATE(1006), - [sym__list_item_upper_roman_parens] = STATE(762), - [sym_table] = STATE(996), - [sym__table_content] = STATE(310), - [sym_table_separator] = STATE(310), - [sym_table_row] = STATE(331), - [sym_footnote] = STATE(996), - [sym_footnote_marker_begin] = STATE(1176), - [sym_div] = STATE(996), - [sym__div_marker_begin] = STATE(1026), - [sym_code_block] = STATE(996), - [sym_raw_block] = STATE(996), - [sym_thematic_break] = STATE(996), - [sym_block_quote] = STATE(996), - [sym__block_quote_prefix] = STATE(231), - [sym_link_reference_definition] = STATE(996), - [sym_block_attribute] = STATE(996), - [sym__paragraph] = STATE(996), - [sym__paragraph_content] = STATE(705), - [sym__paragraph_inline_content] = STATE(775), - [sym__inline] = STATE(616), - [sym__symbol_fallback] = STATE(297), - [aux_sym__list_dash_repeat1] = STATE(355), - [aux_sym__list_plus_repeat1] = STATE(356), - [aux_sym__list_star_repeat1] = STATE(362), - [aux_sym__list_task_repeat1] = STATE(346), - [aux_sym__list_definition_repeat1] = STATE(483), - [aux_sym__list_decimal_period_repeat1] = STATE(484), - [aux_sym__list_decimal_paren_repeat1] = STATE(485), - [aux_sym__list_decimal_parens_repeat1] = STATE(486), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(487), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(488), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(489), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(490), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(491), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(492), - [aux_sym__list_lower_roman_period_repeat1] = STATE(493), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(494), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(495), - [aux_sym__list_upper_roman_period_repeat1] = STATE(581), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(497), - [aux_sym_table_repeat1] = STATE(310), - [aux_sym__block_quote_prefix_repeat1] = STATE(253), - [aux_sym__inline_repeat1] = STATE(297), - [anon_sym_LBRACK] = ACTIONS(338), - [anon_sym_PIPE] = ACTIONS(340), - [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(342), - [anon_sym_DOT] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(13), - [aux_sym__inline_token1] = ACTIONS(13), - [anon_sym_LBRACE_DASH] = ACTIONS(13), - [anon_sym_POUND] = ACTIONS(13), - [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(424), - [sym__heading_begin] = ACTIONS(346), - [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(348), - [sym_list_marker_dash] = ACTIONS(25), - [sym_list_marker_star] = ACTIONS(27), - [sym_list_marker_plus] = ACTIONS(29), - [sym__list_marker_task_begin] = ACTIONS(31), - [sym_list_marker_definition] = ACTIONS(33), - [sym_list_marker_decimal_period] = ACTIONS(35), - [sym_list_marker_lower_alpha_period] = ACTIONS(37), - [sym_list_marker_upper_alpha_period] = ACTIONS(39), - [sym_list_marker_lower_roman_period] = ACTIONS(41), - [sym_list_marker_upper_roman_period] = ACTIONS(43), - [sym_list_marker_decimal_paren] = ACTIONS(45), - [sym_list_marker_lower_alpha_paren] = ACTIONS(47), - [sym_list_marker_upper_alpha_paren] = ACTIONS(49), - [sym_list_marker_lower_roman_paren] = ACTIONS(51), - [sym_list_marker_upper_roman_paren] = ACTIONS(53), - [sym_list_marker_decimal_parens] = ACTIONS(55), - [sym_list_marker_lower_alpha_parens] = ACTIONS(57), - [sym_list_marker_upper_alpha_parens] = ACTIONS(59), - [sym_list_marker_lower_roman_parens] = ACTIONS(61), - [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(350), - [sym__block_quote_continuation] = ACTIONS(352), - [sym__thematic_break_dash] = ACTIONS(354), - [sym__thematic_break_star] = ACTIONS(354), + [sym__block_element] = STATE(140), + [sym_heading] = STATE(140), + [sym_list] = STATE(140), + [sym__list_dash] = STATE(143), + [sym__list_item_dash] = STATE(687), + [sym__list_plus] = STATE(143), + [sym__list_item_plus] = STATE(691), + [sym__list_star] = STATE(143), + [sym__list_item_star] = STATE(673), + [sym__list_task] = STATE(143), + [sym__list_item_task] = STATE(680), + [sym_list_marker_task] = STATE(48), + [sym__list_definition] = STATE(143), + [sym__list_item_definition] = STATE(804), + [sym__list_decimal_period] = STATE(143), + [sym__list_item_decimal_period] = STATE(837), + [sym__list_decimal_paren] = STATE(143), + [sym__list_item_decimal_paren] = STATE(703), + [sym__list_decimal_parens] = STATE(143), + [sym__list_item_decimal_parens] = STATE(715), + [sym__list_lower_alpha_period] = STATE(143), + [sym__list_item_lower_alpha_period] = STATE(739), + [sym__list_lower_alpha_paren] = STATE(143), + [sym__list_item_lower_alpha_paren] = STATE(754), + [sym__list_lower_alpha_parens] = STATE(143), + [sym__list_item_lower_alpha_parens] = STATE(755), + [sym__list_upper_alpha_period] = STATE(143), + [sym__list_item_upper_alpha_period] = STATE(758), + [sym__list_upper_alpha_paren] = STATE(143), + [sym__list_item_upper_alpha_paren] = STATE(759), + [sym__list_upper_alpha_parens] = STATE(143), + [sym__list_item_upper_alpha_parens] = STATE(766), + [sym__list_lower_roman_period] = STATE(143), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(143), + [sym__list_item_lower_roman_paren] = STATE(770), + [sym__list_lower_roman_parens] = STATE(143), + [sym__list_item_lower_roman_parens] = STATE(773), + [sym__list_upper_roman_period] = STATE(143), + [sym__list_item_upper_roman_period] = STATE(775), + [sym__list_upper_roman_paren] = STATE(143), + [sym__list_item_upper_roman_paren] = STATE(791), + [sym__list_upper_roman_parens] = STATE(143), + [sym__list_item_upper_roman_parens] = STATE(793), + [sym_table] = STATE(140), + [sym__table_row] = STATE(66), + [sym_table_header] = STATE(66), + [sym_table_separator] = STATE(66), + [sym_table_row] = STATE(66), + [sym_footnote] = STATE(140), + [sym_footnote_marker_begin] = STATE(1145), + [sym_div] = STATE(140), + [sym__div_marker_begin] = STATE(1061), + [sym_code_block] = STATE(140), + [sym_raw_block] = STATE(140), + [sym_thematic_break] = STATE(140), + [sym_block_quote] = STATE(140), + [sym__block_quote_prefix] = STATE(224), + [sym_link_reference_definition] = STATE(140), + [sym_block_attribute] = STATE(140), + [sym__paragraph] = STATE(140), + [sym__paragraph_content] = STATE(800), + [sym__paragraph_inline_content] = STATE(799), + [sym__inline] = STATE(629), + [sym__symbol_fallback] = STATE(285), + [aux_sym__list_dash_repeat1] = STATE(351), + [aux_sym__list_plus_repeat1] = STATE(350), + [aux_sym__list_star_repeat1] = STATE(353), + [aux_sym__list_task_repeat1] = STATE(339), + [aux_sym__list_definition_repeat1] = STATE(512), + [aux_sym__list_decimal_period_repeat1] = STATE(513), + [aux_sym__list_decimal_paren_repeat1] = STATE(514), + [aux_sym__list_decimal_parens_repeat1] = STATE(515), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(516), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(518), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(519), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(520), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(521), + [aux_sym__list_lower_roman_period_repeat1] = STATE(579), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(523), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(524), + [aux_sym__list_upper_roman_period_repeat1] = STATE(525), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(526), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(527), + [aux_sym_table_repeat1] = STATE(66), + [aux_sym__block_quote_prefix_repeat1] = STATE(235), + [aux_sym__inline_repeat1] = STATE(285), + [anon_sym_LBRACK] = ACTIONS(458), + [anon_sym_LBRACK_CARET] = ACTIONS(458), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_DOT] = ACTIONS(458), + [aux_sym_identifier_token1] = ACTIONS(458), + [aux_sym__inline_token1] = ACTIONS(458), + [anon_sym_LBRACE_DASH] = ACTIONS(458), + [anon_sym_POUND] = ACTIONS(458), + [anon_sym_PERCENT] = ACTIONS(458), + [sym__block_close] = ACTIONS(460), + [sym__newline] = ACTIONS(462), + [sym__heading_begin] = ACTIONS(17), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(85), + [sym_list_marker_dash] = ACTIONS(460), + [sym_list_marker_star] = ACTIONS(460), + [sym_list_marker_plus] = ACTIONS(460), + [sym__list_marker_task_begin] = ACTIONS(460), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(87), + [sym__block_quote_continuation] = ACTIONS(460), + [sym__thematic_break_dash] = ACTIONS(89), + [sym__thematic_break_star] = ACTIONS(89), + [sym__table_header_begin] = ACTIONS(460), + [sym__table_separator_begin] = ACTIONS(460), + [sym__table_row_begin] = ACTIONS(460), }, [54] = { - [sym__block_with_heading] = STATE(1001), - [sym__block_element] = STATE(1001), - [sym_heading] = STATE(1001), - [sym_list] = STATE(1001), - [sym__list_dash] = STATE(1006), - [sym__list_item_dash] = STATE(636), - [sym__list_plus] = STATE(1006), - [sym__list_item_plus] = STATE(637), - [sym__list_star] = STATE(1006), - [sym__list_item_star] = STATE(671), - [sym__list_task] = STATE(1006), - [sym__list_item_task] = STATE(691), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(1006), - [sym__list_item_definition] = STATE(896), - [sym__list_decimal_period] = STATE(1006), - [sym__list_item_decimal_period] = STATE(841), - [sym__list_decimal_paren] = STATE(1006), - [sym__list_item_decimal_paren] = STATE(796), - [sym__list_decimal_parens] = STATE(1006), - [sym__list_item_decimal_parens] = STATE(716), - [sym__list_lower_alpha_period] = STATE(1006), - [sym__list_item_lower_alpha_period] = STATE(722), - [sym__list_lower_alpha_paren] = STATE(1006), - [sym__list_item_lower_alpha_paren] = STATE(801), - [sym__list_lower_alpha_parens] = STATE(1006), - [sym__list_item_lower_alpha_parens] = STATE(813), - [sym__list_upper_alpha_period] = STATE(1006), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(1006), - [sym__list_item_upper_alpha_paren] = STATE(706), - [sym__list_upper_alpha_parens] = STATE(1006), - [sym__list_item_upper_alpha_parens] = STATE(707), - [sym__list_lower_roman_period] = STATE(1006), - [sym__list_item_lower_roman_period] = STATE(725), - [sym__list_lower_roman_paren] = STATE(1006), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(1006), - [sym__list_item_lower_roman_parens] = STATE(736), - [sym__list_upper_roman_period] = STATE(1006), - [sym__list_item_upper_roman_period] = STATE(742), - [sym__list_upper_roman_paren] = STATE(1006), - [sym__list_item_upper_roman_paren] = STATE(743), - [sym__list_upper_roman_parens] = STATE(1006), - [sym__list_item_upper_roman_parens] = STATE(762), - [sym_table] = STATE(1001), - [sym__table_content] = STATE(310), - [sym_table_separator] = STATE(310), - [sym_table_row] = STATE(331), - [sym_footnote] = STATE(1001), - [sym_footnote_marker_begin] = STATE(1176), - [sym_div] = STATE(1001), - [sym__div_marker_begin] = STATE(1026), - [sym_code_block] = STATE(1001), - [sym_raw_block] = STATE(1001), - [sym_thematic_break] = STATE(1001), - [sym_block_quote] = STATE(1001), - [sym__block_quote_prefix] = STATE(231), - [sym_link_reference_definition] = STATE(1001), - [sym_block_attribute] = STATE(1001), - [sym__paragraph] = STATE(1001), - [sym__paragraph_content] = STATE(705), - [sym__paragraph_inline_content] = STATE(775), - [sym__inline] = STATE(616), - [sym__symbol_fallback] = STATE(297), - [aux_sym__list_dash_repeat1] = STATE(355), - [aux_sym__list_plus_repeat1] = STATE(356), - [aux_sym__list_star_repeat1] = STATE(362), - [aux_sym__list_task_repeat1] = STATE(346), - [aux_sym__list_definition_repeat1] = STATE(483), - [aux_sym__list_decimal_period_repeat1] = STATE(484), - [aux_sym__list_decimal_paren_repeat1] = STATE(485), - [aux_sym__list_decimal_parens_repeat1] = STATE(486), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(487), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(488), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(489), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(490), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(491), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(492), - [aux_sym__list_lower_roman_period_repeat1] = STATE(493), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(494), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(495), - [aux_sym__list_upper_roman_period_repeat1] = STATE(581), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(497), - [aux_sym_table_repeat1] = STATE(310), - [aux_sym__block_quote_prefix_repeat1] = STATE(253), - [aux_sym__inline_repeat1] = STATE(297), - [anon_sym_LBRACK] = ACTIONS(338), - [anon_sym_PIPE] = ACTIONS(340), - [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(342), - [anon_sym_DOT] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(13), - [aux_sym__inline_token1] = ACTIONS(13), - [anon_sym_LBRACE_DASH] = ACTIONS(13), - [anon_sym_POUND] = ACTIONS(13), - [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(426), - [sym__heading_begin] = ACTIONS(346), - [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(348), - [sym_list_marker_dash] = ACTIONS(25), - [sym_list_marker_star] = ACTIONS(27), - [sym_list_marker_plus] = ACTIONS(29), - [sym__list_marker_task_begin] = ACTIONS(31), - [sym_list_marker_definition] = ACTIONS(33), - [sym_list_marker_decimal_period] = ACTIONS(35), - [sym_list_marker_lower_alpha_period] = ACTIONS(37), - [sym_list_marker_upper_alpha_period] = ACTIONS(39), - [sym_list_marker_lower_roman_period] = ACTIONS(41), - [sym_list_marker_upper_roman_period] = ACTIONS(43), - [sym_list_marker_decimal_paren] = ACTIONS(45), - [sym_list_marker_lower_alpha_paren] = ACTIONS(47), - [sym_list_marker_upper_alpha_paren] = ACTIONS(49), - [sym_list_marker_lower_roman_paren] = ACTIONS(51), - [sym_list_marker_upper_roman_paren] = ACTIONS(53), - [sym_list_marker_decimal_parens] = ACTIONS(55), - [sym_list_marker_lower_alpha_parens] = ACTIONS(57), - [sym_list_marker_upper_alpha_parens] = ACTIONS(59), - [sym_list_marker_lower_roman_parens] = ACTIONS(61), - [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(350), - [sym__block_quote_continuation] = ACTIONS(352), - [sym__thematic_break_dash] = ACTIONS(354), - [sym__thematic_break_star] = ACTIONS(354), + [sym__block_with_heading] = STATE(967), + [sym__block_element] = STATE(967), + [sym_heading] = STATE(967), + [sym_list] = STATE(967), + [sym__list_dash] = STATE(974), + [sym__list_item_dash] = STATE(687), + [sym__list_plus] = STATE(974), + [sym__list_item_plus] = STATE(691), + [sym__list_star] = STATE(974), + [sym__list_item_star] = STATE(673), + [sym__list_task] = STATE(974), + [sym__list_item_task] = STATE(680), + [sym_list_marker_task] = STATE(48), + [sym__list_definition] = STATE(974), + [sym__list_item_definition] = STATE(804), + [sym__list_decimal_period] = STATE(974), + [sym__list_item_decimal_period] = STATE(837), + [sym__list_decimal_paren] = STATE(974), + [sym__list_item_decimal_paren] = STATE(703), + [sym__list_decimal_parens] = STATE(974), + [sym__list_item_decimal_parens] = STATE(715), + [sym__list_lower_alpha_period] = STATE(974), + [sym__list_item_lower_alpha_period] = STATE(739), + [sym__list_lower_alpha_paren] = STATE(974), + [sym__list_item_lower_alpha_paren] = STATE(754), + [sym__list_lower_alpha_parens] = STATE(974), + [sym__list_item_lower_alpha_parens] = STATE(755), + [sym__list_upper_alpha_period] = STATE(974), + [sym__list_item_upper_alpha_period] = STATE(758), + [sym__list_upper_alpha_paren] = STATE(974), + [sym__list_item_upper_alpha_paren] = STATE(759), + [sym__list_upper_alpha_parens] = STATE(974), + [sym__list_item_upper_alpha_parens] = STATE(766), + [sym__list_lower_roman_period] = STATE(974), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(974), + [sym__list_item_lower_roman_paren] = STATE(770), + [sym__list_lower_roman_parens] = STATE(974), + [sym__list_item_lower_roman_parens] = STATE(773), + [sym__list_upper_roman_period] = STATE(974), + [sym__list_item_upper_roman_period] = STATE(775), + [sym__list_upper_roman_paren] = STATE(974), + [sym__list_item_upper_roman_paren] = STATE(791), + [sym__list_upper_roman_parens] = STATE(974), + [sym__list_item_upper_roman_parens] = STATE(793), + [sym_table] = STATE(967), + [sym__table_row] = STATE(248), + [sym_table_header] = STATE(248), + [sym_table_separator] = STATE(248), + [sym_table_row] = STATE(248), + [sym_footnote] = STATE(967), + [sym_footnote_marker_begin] = STATE(1141), + [sym_div] = STATE(967), + [sym__div_marker_begin] = STATE(1023), + [sym_code_block] = STATE(967), + [sym_raw_block] = STATE(967), + [sym_thematic_break] = STATE(967), + [sym_block_quote] = STATE(967), + [sym__block_quote_prefix] = STATE(222), + [sym_link_reference_definition] = STATE(967), + [sym_block_attribute] = STATE(967), + [sym__paragraph] = STATE(967), + [sym__paragraph_content] = STATE(738), + [sym__paragraph_inline_content] = STATE(799), + [sym__inline] = STATE(629), + [sym__symbol_fallback] = STATE(285), + [aux_sym__list_dash_repeat1] = STATE(354), + [aux_sym__list_plus_repeat1] = STATE(355), + [aux_sym__list_star_repeat1] = STATE(356), + [aux_sym__list_task_repeat1] = STATE(335), + [aux_sym__list_definition_repeat1] = STATE(479), + [aux_sym__list_decimal_period_repeat1] = STATE(480), + [aux_sym__list_decimal_paren_repeat1] = STATE(481), + [aux_sym__list_decimal_parens_repeat1] = STATE(482), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(483), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(484), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(485), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(486), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(487), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(488), + [aux_sym__list_lower_roman_period_repeat1] = STATE(489), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(490), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(491), + [aux_sym__list_upper_roman_period_repeat1] = STATE(492), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(493), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(494), + [aux_sym_table_repeat1] = STATE(248), + [aux_sym__block_quote_prefix_repeat1] = STATE(235), + [aux_sym__inline_repeat1] = STATE(285), + [anon_sym_LBRACK] = ACTIONS(364), + [anon_sym_LBRACK_CARET] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(366), + [anon_sym_DOT] = ACTIONS(11), + [aux_sym_identifier_token1] = ACTIONS(11), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_PERCENT] = ACTIONS(11), + [sym__newline] = ACTIONS(464), + [sym__heading_begin] = ACTIONS(370), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(372), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(374), + [sym__block_quote_continuation] = ACTIONS(376), + [sym__thematic_break_dash] = ACTIONS(378), + [sym__thematic_break_star] = ACTIONS(378), + [sym__table_header_begin] = ACTIONS(380), + [sym__table_separator_begin] = ACTIONS(382), + [sym__table_row_begin] = ACTIONS(384), }, [55] = { - [sym__block_element] = STATE(141), - [sym_heading] = STATE(141), - [sym_list] = STATE(141), - [sym__list_dash] = STATE(144), - [sym__list_item_dash] = STATE(636), - [sym__list_plus] = STATE(144), - [sym__list_item_plus] = STATE(637), - [sym__list_star] = STATE(144), - [sym__list_item_star] = STATE(671), - [sym__list_task] = STATE(144), - [sym__list_item_task] = STATE(691), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(144), - [sym__list_item_definition] = STATE(896), - [sym__list_decimal_period] = STATE(144), - [sym__list_item_decimal_period] = STATE(841), - [sym__list_decimal_paren] = STATE(144), - [sym__list_item_decimal_paren] = STATE(796), - [sym__list_decimal_parens] = STATE(144), - [sym__list_item_decimal_parens] = STATE(716), - [sym__list_lower_alpha_period] = STATE(144), - [sym__list_item_lower_alpha_period] = STATE(722), - [sym__list_lower_alpha_paren] = STATE(144), - [sym__list_item_lower_alpha_paren] = STATE(801), - [sym__list_lower_alpha_parens] = STATE(144), - [sym__list_item_lower_alpha_parens] = STATE(813), - [sym__list_upper_alpha_period] = STATE(144), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(144), - [sym__list_item_upper_alpha_paren] = STATE(706), - [sym__list_upper_alpha_parens] = STATE(144), - [sym__list_item_upper_alpha_parens] = STATE(707), - [sym__list_lower_roman_period] = STATE(144), - [sym__list_item_lower_roman_period] = STATE(725), - [sym__list_lower_roman_paren] = STATE(144), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(144), - [sym__list_item_lower_roman_parens] = STATE(736), - [sym__list_upper_roman_period] = STATE(144), - [sym__list_item_upper_roman_period] = STATE(742), - [sym__list_upper_roman_paren] = STATE(144), - [sym__list_item_upper_roman_paren] = STATE(743), - [sym__list_upper_roman_parens] = STATE(144), - [sym__list_item_upper_roman_parens] = STATE(762), - [sym_table] = STATE(141), - [sym__table_content] = STATE(67), - [sym_table_separator] = STATE(67), - [sym_table_row] = STATE(70), - [sym_footnote] = STATE(141), - [sym_footnote_marker_begin] = STATE(1180), - [sym_div] = STATE(141), - [sym__div_marker_begin] = STATE(1074), - [sym_code_block] = STATE(141), - [sym_raw_block] = STATE(141), - [sym_thematic_break] = STATE(141), - [sym_block_quote] = STATE(141), - [sym__block_quote_prefix] = STATE(233), - [sym_link_reference_definition] = STATE(141), - [sym_block_attribute] = STATE(141), - [sym__paragraph] = STATE(141), - [sym__paragraph_content] = STATE(773), - [sym__paragraph_inline_content] = STATE(775), - [sym__inline] = STATE(616), - [sym__symbol_fallback] = STATE(297), - [aux_sym__list_dash_repeat1] = STATE(357), - [aux_sym__list_plus_repeat1] = STATE(358), - [aux_sym__list_star_repeat1] = STATE(359), - [aux_sym__list_task_repeat1] = STATE(344), - [aux_sym__list_definition_repeat1] = STATE(515), - [aux_sym__list_decimal_period_repeat1] = STATE(516), - [aux_sym__list_decimal_paren_repeat1] = STATE(517), - [aux_sym__list_decimal_parens_repeat1] = STATE(518), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(519), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(520), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(521), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(522), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(523), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(524), - [aux_sym__list_lower_roman_period_repeat1] = STATE(525), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(526), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(527), - [aux_sym__list_upper_roman_period_repeat1] = STATE(528), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(529), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(530), - [aux_sym_table_repeat1] = STATE(67), - [aux_sym__block_quote_prefix_repeat1] = STATE(253), - [aux_sym__inline_repeat1] = STATE(297), - [anon_sym_LBRACK] = ACTIONS(428), - [anon_sym_PIPE] = ACTIONS(428), - [anon_sym_LBRACK_CARET] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(428), - [anon_sym_DOT] = ACTIONS(428), - [aux_sym_identifier_token1] = ACTIONS(428), - [aux_sym__inline_token1] = ACTIONS(428), - [anon_sym_LBRACE_DASH] = ACTIONS(428), - [anon_sym_POUND] = ACTIONS(428), - [anon_sym_PERCENT] = ACTIONS(428), - [sym__block_close] = ACTIONS(430), - [sym__newline] = ACTIONS(432), - [sym__heading_begin] = ACTIONS(19), - [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(81), - [sym_list_marker_dash] = ACTIONS(430), - [sym_list_marker_star] = ACTIONS(430), - [sym_list_marker_plus] = ACTIONS(430), - [sym__list_marker_task_begin] = ACTIONS(430), - [sym_list_marker_definition] = ACTIONS(33), - [sym_list_marker_decimal_period] = ACTIONS(35), - [sym_list_marker_lower_alpha_period] = ACTIONS(37), - [sym_list_marker_upper_alpha_period] = ACTIONS(39), - [sym_list_marker_lower_roman_period] = ACTIONS(41), - [sym_list_marker_upper_roman_period] = ACTIONS(43), - [sym_list_marker_decimal_paren] = ACTIONS(45), - [sym_list_marker_lower_alpha_paren] = ACTIONS(47), - [sym_list_marker_upper_alpha_paren] = ACTIONS(49), - [sym_list_marker_lower_roman_paren] = ACTIONS(51), - [sym_list_marker_upper_roman_paren] = ACTIONS(53), - [sym_list_marker_decimal_parens] = ACTIONS(55), - [sym_list_marker_lower_alpha_parens] = ACTIONS(57), - [sym_list_marker_upper_alpha_parens] = ACTIONS(59), - [sym_list_marker_lower_roman_parens] = ACTIONS(61), - [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(83), - [sym__block_quote_continuation] = ACTIONS(430), - [sym__thematic_break_dash] = ACTIONS(85), - [sym__thematic_break_star] = ACTIONS(85), + [sym__block_with_heading] = STATE(592), + [sym__block_element] = STATE(592), + [sym_heading] = STATE(592), + [sym_list] = STATE(592), + [sym__list_dash] = STATE(600), + [sym__list_item_dash] = STATE(687), + [sym__list_plus] = STATE(600), + [sym__list_item_plus] = STATE(691), + [sym__list_star] = STATE(600), + [sym__list_item_star] = STATE(673), + [sym__list_task] = STATE(600), + [sym__list_item_task] = STATE(680), + [sym_list_marker_task] = STATE(48), + [sym__list_definition] = STATE(600), + [sym__list_item_definition] = STATE(804), + [sym__list_decimal_period] = STATE(600), + [sym__list_item_decimal_period] = STATE(837), + [sym__list_decimal_paren] = STATE(600), + [sym__list_item_decimal_paren] = STATE(703), + [sym__list_decimal_parens] = STATE(600), + [sym__list_item_decimal_parens] = STATE(715), + [sym__list_lower_alpha_period] = STATE(600), + [sym__list_item_lower_alpha_period] = STATE(739), + [sym__list_lower_alpha_paren] = STATE(600), + [sym__list_item_lower_alpha_paren] = STATE(754), + [sym__list_lower_alpha_parens] = STATE(600), + [sym__list_item_lower_alpha_parens] = STATE(755), + [sym__list_upper_alpha_period] = STATE(600), + [sym__list_item_upper_alpha_period] = STATE(758), + [sym__list_upper_alpha_paren] = STATE(600), + [sym__list_item_upper_alpha_paren] = STATE(759), + [sym__list_upper_alpha_parens] = STATE(600), + [sym__list_item_upper_alpha_parens] = STATE(766), + [sym__list_lower_roman_period] = STATE(600), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(600), + [sym__list_item_lower_roman_paren] = STATE(770), + [sym__list_lower_roman_parens] = STATE(600), + [sym__list_item_lower_roman_parens] = STATE(773), + [sym__list_upper_roman_period] = STATE(600), + [sym__list_item_upper_roman_period] = STATE(775), + [sym__list_upper_roman_paren] = STATE(600), + [sym__list_item_upper_roman_paren] = STATE(791), + [sym__list_upper_roman_parens] = STATE(600), + [sym__list_item_upper_roman_parens] = STATE(793), + [sym_table] = STATE(592), + [sym__table_row] = STATE(238), + [sym_table_header] = STATE(238), + [sym_table_separator] = STATE(238), + [sym_table_row] = STATE(238), + [sym_footnote] = STATE(592), + [sym_footnote_marker_begin] = STATE(1147), + [sym_div] = STATE(592), + [sym__div_marker_begin] = STATE(1079), + [sym_code_block] = STATE(592), + [sym_raw_block] = STATE(592), + [sym_thematic_break] = STATE(592), + [sym_block_quote] = STATE(592), + [sym__block_quote_prefix] = STATE(223), + [sym_link_reference_definition] = STATE(592), + [sym_block_attribute] = STATE(592), + [sym__paragraph] = STATE(592), + [sym__paragraph_content] = STATE(821), + [sym__paragraph_inline_content] = STATE(799), + [sym__inline] = STATE(629), + [sym__symbol_fallback] = STATE(285), + [aux_sym__list_dash_repeat1] = STATE(364), + [aux_sym__list_plus_repeat1] = STATE(365), + [aux_sym__list_star_repeat1] = STATE(383), + [aux_sym__list_task_repeat1] = STATE(328), + [aux_sym__list_definition_repeat1] = STATE(536), + [aux_sym__list_decimal_period_repeat1] = STATE(537), + [aux_sym__list_decimal_paren_repeat1] = STATE(538), + [aux_sym__list_decimal_parens_repeat1] = STATE(539), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(540), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(541), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(542), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(543), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(544), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(545), + [aux_sym__list_lower_roman_period_repeat1] = STATE(546), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(547), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(548), + [aux_sym__list_upper_roman_period_repeat1] = STATE(549), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(550), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(551), + [aux_sym_table_repeat1] = STATE(238), + [aux_sym__block_quote_prefix_repeat1] = STATE(235), + [aux_sym__inline_repeat1] = STATE(285), + [anon_sym_LBRACK] = ACTIONS(432), + [anon_sym_LBRACK_CARET] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_DOT] = ACTIONS(11), + [aux_sym_identifier_token1] = ACTIONS(11), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_PERCENT] = ACTIONS(11), + [sym__newline] = ACTIONS(466), + [sym__heading_begin] = ACTIONS(438), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(440), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(442), + [sym__block_quote_continuation] = ACTIONS(444), + [sym__thematic_break_dash] = ACTIONS(446), + [sym__thematic_break_star] = ACTIONS(446), + [sym__table_header_begin] = ACTIONS(448), + [sym__table_separator_begin] = ACTIONS(450), + [sym__table_row_begin] = ACTIONS(452), }, [56] = { - [sym__block_with_heading] = STATE(956), - [sym__block_element] = STATE(956), - [sym_heading] = STATE(956), - [sym_list] = STATE(956), - [sym__list_dash] = STATE(1006), - [sym__list_item_dash] = STATE(636), - [sym__list_plus] = STATE(1006), - [sym__list_item_plus] = STATE(637), - [sym__list_star] = STATE(1006), - [sym__list_item_star] = STATE(671), - [sym__list_task] = STATE(1006), - [sym__list_item_task] = STATE(691), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(1006), - [sym__list_item_definition] = STATE(896), - [sym__list_decimal_period] = STATE(1006), - [sym__list_item_decimal_period] = STATE(841), - [sym__list_decimal_paren] = STATE(1006), - [sym__list_item_decimal_paren] = STATE(796), - [sym__list_decimal_parens] = STATE(1006), - [sym__list_item_decimal_parens] = STATE(716), - [sym__list_lower_alpha_period] = STATE(1006), - [sym__list_item_lower_alpha_period] = STATE(722), - [sym__list_lower_alpha_paren] = STATE(1006), - [sym__list_item_lower_alpha_paren] = STATE(801), - [sym__list_lower_alpha_parens] = STATE(1006), - [sym__list_item_lower_alpha_parens] = STATE(813), - [sym__list_upper_alpha_period] = STATE(1006), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(1006), - [sym__list_item_upper_alpha_paren] = STATE(706), - [sym__list_upper_alpha_parens] = STATE(1006), - [sym__list_item_upper_alpha_parens] = STATE(707), - [sym__list_lower_roman_period] = STATE(1006), - [sym__list_item_lower_roman_period] = STATE(725), - [sym__list_lower_roman_paren] = STATE(1006), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(1006), - [sym__list_item_lower_roman_parens] = STATE(736), - [sym__list_upper_roman_period] = STATE(1006), - [sym__list_item_upper_roman_period] = STATE(742), - [sym__list_upper_roman_paren] = STATE(1006), - [sym__list_item_upper_roman_paren] = STATE(743), - [sym__list_upper_roman_parens] = STATE(1006), - [sym__list_item_upper_roman_parens] = STATE(762), - [sym_table] = STATE(956), - [sym__table_content] = STATE(310), - [sym_table_separator] = STATE(310), - [sym_table_row] = STATE(331), - [sym_footnote] = STATE(956), - [sym_footnote_marker_begin] = STATE(1176), - [sym_div] = STATE(956), - [sym__div_marker_begin] = STATE(1026), - [sym_code_block] = STATE(956), - [sym_raw_block] = STATE(956), - [sym_thematic_break] = STATE(956), - [sym_block_quote] = STATE(956), - [sym__block_quote_prefix] = STATE(231), - [sym_link_reference_definition] = STATE(956), - [sym_block_attribute] = STATE(956), - [sym__paragraph] = STATE(956), - [sym__paragraph_content] = STATE(705), - [sym__paragraph_inline_content] = STATE(775), - [sym__inline] = STATE(616), - [sym__symbol_fallback] = STATE(297), - [aux_sym__list_dash_repeat1] = STATE(355), - [aux_sym__list_plus_repeat1] = STATE(356), - [aux_sym__list_star_repeat1] = STATE(362), - [aux_sym__list_task_repeat1] = STATE(346), - [aux_sym__list_definition_repeat1] = STATE(483), - [aux_sym__list_decimal_period_repeat1] = STATE(484), - [aux_sym__list_decimal_paren_repeat1] = STATE(485), - [aux_sym__list_decimal_parens_repeat1] = STATE(486), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(487), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(488), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(489), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(490), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(491), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(492), - [aux_sym__list_lower_roman_period_repeat1] = STATE(493), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(494), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(495), - [aux_sym__list_upper_roman_period_repeat1] = STATE(581), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(497), - [aux_sym_table_repeat1] = STATE(310), - [aux_sym__block_quote_prefix_repeat1] = STATE(253), - [aux_sym__inline_repeat1] = STATE(297), - [anon_sym_LBRACK] = ACTIONS(338), - [anon_sym_PIPE] = ACTIONS(340), - [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(342), - [anon_sym_DOT] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(13), - [aux_sym__inline_token1] = ACTIONS(13), - [anon_sym_LBRACE_DASH] = ACTIONS(13), - [anon_sym_POUND] = ACTIONS(13), - [anon_sym_PERCENT] = ACTIONS(13), - [sym__newline] = ACTIONS(434), - [sym__heading_begin] = ACTIONS(346), - [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(348), - [sym_list_marker_dash] = ACTIONS(25), - [sym_list_marker_star] = ACTIONS(27), - [sym_list_marker_plus] = ACTIONS(29), - [sym__list_marker_task_begin] = ACTIONS(31), - [sym_list_marker_definition] = ACTIONS(33), - [sym_list_marker_decimal_period] = ACTIONS(35), - [sym_list_marker_lower_alpha_period] = ACTIONS(37), - [sym_list_marker_upper_alpha_period] = ACTIONS(39), - [sym_list_marker_lower_roman_period] = ACTIONS(41), - [sym_list_marker_upper_roman_period] = ACTIONS(43), - [sym_list_marker_decimal_paren] = ACTIONS(45), - [sym_list_marker_lower_alpha_paren] = ACTIONS(47), - [sym_list_marker_upper_alpha_paren] = ACTIONS(49), - [sym_list_marker_lower_roman_paren] = ACTIONS(51), - [sym_list_marker_upper_roman_paren] = ACTIONS(53), - [sym_list_marker_decimal_parens] = ACTIONS(55), - [sym_list_marker_lower_alpha_parens] = ACTIONS(57), - [sym_list_marker_upper_alpha_parens] = ACTIONS(59), - [sym_list_marker_lower_roman_parens] = ACTIONS(61), - [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(350), - [sym__block_quote_continuation] = ACTIONS(352), - [sym__thematic_break_dash] = ACTIONS(354), - [sym__thematic_break_star] = ACTIONS(354), + [sym__block_with_heading] = STATE(1091), + [sym__block_element] = STATE(1091), + [sym_heading] = STATE(1091), + [sym_list] = STATE(1091), + [sym__list_dash] = STATE(974), + [sym__list_item_dash] = STATE(687), + [sym__list_plus] = STATE(974), + [sym__list_item_plus] = STATE(691), + [sym__list_star] = STATE(974), + [sym__list_item_star] = STATE(673), + [sym__list_task] = STATE(974), + [sym__list_item_task] = STATE(680), + [sym_list_marker_task] = STATE(48), + [sym__list_definition] = STATE(974), + [sym__list_item_definition] = STATE(804), + [sym__list_decimal_period] = STATE(974), + [sym__list_item_decimal_period] = STATE(837), + [sym__list_decimal_paren] = STATE(974), + [sym__list_item_decimal_paren] = STATE(703), + [sym__list_decimal_parens] = STATE(974), + [sym__list_item_decimal_parens] = STATE(715), + [sym__list_lower_alpha_period] = STATE(974), + [sym__list_item_lower_alpha_period] = STATE(739), + [sym__list_lower_alpha_paren] = STATE(974), + [sym__list_item_lower_alpha_paren] = STATE(754), + [sym__list_lower_alpha_parens] = STATE(974), + [sym__list_item_lower_alpha_parens] = STATE(755), + [sym__list_upper_alpha_period] = STATE(974), + [sym__list_item_upper_alpha_period] = STATE(758), + [sym__list_upper_alpha_paren] = STATE(974), + [sym__list_item_upper_alpha_paren] = STATE(759), + [sym__list_upper_alpha_parens] = STATE(974), + [sym__list_item_upper_alpha_parens] = STATE(766), + [sym__list_lower_roman_period] = STATE(974), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(974), + [sym__list_item_lower_roman_paren] = STATE(770), + [sym__list_lower_roman_parens] = STATE(974), + [sym__list_item_lower_roman_parens] = STATE(773), + [sym__list_upper_roman_period] = STATE(974), + [sym__list_item_upper_roman_period] = STATE(775), + [sym__list_upper_roman_paren] = STATE(974), + [sym__list_item_upper_roman_paren] = STATE(791), + [sym__list_upper_roman_parens] = STATE(974), + [sym__list_item_upper_roman_parens] = STATE(793), + [sym_table] = STATE(1091), + [sym__table_row] = STATE(248), + [sym_table_header] = STATE(248), + [sym_table_separator] = STATE(248), + [sym_table_row] = STATE(248), + [sym_footnote] = STATE(1091), + [sym_footnote_marker_begin] = STATE(1141), + [sym_div] = STATE(1091), + [sym__div_marker_begin] = STATE(1023), + [sym_code_block] = STATE(1091), + [sym_raw_block] = STATE(1091), + [sym_thematic_break] = STATE(1091), + [sym_block_quote] = STATE(1091), + [sym__block_quote_prefix] = STATE(222), + [sym_link_reference_definition] = STATE(1091), + [sym_block_attribute] = STATE(1091), + [sym__paragraph] = STATE(1091), + [sym__paragraph_content] = STATE(738), + [sym__paragraph_inline_content] = STATE(799), + [sym__inline] = STATE(629), + [sym__symbol_fallback] = STATE(285), + [aux_sym__list_dash_repeat1] = STATE(354), + [aux_sym__list_plus_repeat1] = STATE(355), + [aux_sym__list_star_repeat1] = STATE(356), + [aux_sym__list_task_repeat1] = STATE(335), + [aux_sym__list_definition_repeat1] = STATE(479), + [aux_sym__list_decimal_period_repeat1] = STATE(480), + [aux_sym__list_decimal_paren_repeat1] = STATE(481), + [aux_sym__list_decimal_parens_repeat1] = STATE(482), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(483), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(484), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(485), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(486), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(487), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(488), + [aux_sym__list_lower_roman_period_repeat1] = STATE(489), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(490), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(491), + [aux_sym__list_upper_roman_period_repeat1] = STATE(492), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(493), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(494), + [aux_sym_table_repeat1] = STATE(248), + [aux_sym__block_quote_prefix_repeat1] = STATE(235), + [aux_sym__inline_repeat1] = STATE(285), + [anon_sym_LBRACK] = ACTIONS(364), + [anon_sym_LBRACK_CARET] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(366), + [anon_sym_DOT] = ACTIONS(11), + [aux_sym_identifier_token1] = ACTIONS(11), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_PERCENT] = ACTIONS(11), + [sym__newline] = ACTIONS(468), + [sym__heading_begin] = ACTIONS(370), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(372), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(374), + [sym__block_quote_continuation] = ACTIONS(376), + [sym__thematic_break_dash] = ACTIONS(378), + [sym__thematic_break_star] = ACTIONS(378), + [sym__table_header_begin] = ACTIONS(380), + [sym__table_separator_begin] = ACTIONS(382), + [sym__table_row_begin] = ACTIONS(384), }, [57] = { - [sym__block_element] = STATE(449), - [sym_heading] = STATE(449), - [sym_list] = STATE(449), - [sym__list_dash] = STATE(853), - [sym__list_item_dash] = STATE(636), - [sym__list_plus] = STATE(853), - [sym__list_item_plus] = STATE(637), - [sym__list_star] = STATE(853), - [sym__list_item_star] = STATE(671), - [sym__list_task] = STATE(853), - [sym__list_item_task] = STATE(691), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(853), - [sym__list_item_definition] = STATE(896), - [sym__list_decimal_period] = STATE(853), - [sym__list_item_decimal_period] = STATE(841), - [sym__list_decimal_paren] = STATE(853), - [sym__list_item_decimal_paren] = STATE(796), - [sym__list_decimal_parens] = STATE(853), - [sym__list_item_decimal_parens] = STATE(716), - [sym__list_lower_alpha_period] = STATE(853), - [sym__list_item_lower_alpha_period] = STATE(722), - [sym__list_lower_alpha_paren] = STATE(853), - [sym__list_item_lower_alpha_paren] = STATE(801), - [sym__list_lower_alpha_parens] = STATE(853), - [sym__list_item_lower_alpha_parens] = STATE(813), - [sym__list_upper_alpha_period] = STATE(853), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(853), - [sym__list_item_upper_alpha_paren] = STATE(706), - [sym__list_upper_alpha_parens] = STATE(853), - [sym__list_item_upper_alpha_parens] = STATE(707), - [sym__list_lower_roman_period] = STATE(853), - [sym__list_item_lower_roman_period] = STATE(725), - [sym__list_lower_roman_paren] = STATE(853), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(853), - [sym__list_item_lower_roman_parens] = STATE(736), - [sym__list_upper_roman_period] = STATE(853), - [sym__list_item_upper_roman_period] = STATE(742), - [sym__list_upper_roman_paren] = STATE(853), - [sym__list_item_upper_roman_paren] = STATE(743), - [sym__list_upper_roman_parens] = STATE(853), - [sym__list_item_upper_roman_parens] = STATE(762), - [sym_table] = STATE(449), - [sym__table_content] = STATE(311), - [sym_table_separator] = STATE(311), - [sym_table_row] = STATE(347), - [sym_footnote] = STATE(449), - [sym_footnote_marker_begin] = STATE(1178), - [sym_div] = STATE(449), - [sym__div_marker_begin] = STATE(1050), - [sym_code_block] = STATE(449), - [sym_raw_block] = STATE(449), - [sym_thematic_break] = STATE(449), - [sym_block_quote] = STATE(449), - [sym__block_quote_content] = STATE(1013), - [sym__block_quote_prefix] = STATE(232), - [sym_link_reference_definition] = STATE(449), - [sym_block_attribute] = STATE(449), - [sym__paragraph] = STATE(449), - [sym__paragraph_content] = STATE(741), - [sym__paragraph_inline_content] = STATE(775), - [sym__inline] = STATE(616), - [sym__symbol_fallback] = STATE(297), - [aux_sym__list_dash_repeat1] = STATE(370), - [aux_sym__list_plus_repeat1] = STATE(354), - [aux_sym__list_star_repeat1] = STATE(360), - [aux_sym__list_task_repeat1] = STATE(340), - [aux_sym__list_definition_repeat1] = STATE(499), - [aux_sym__list_decimal_period_repeat1] = STATE(500), - [aux_sym__list_decimal_paren_repeat1] = STATE(501), - [aux_sym__list_decimal_parens_repeat1] = STATE(502), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(503), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(504), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(505), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(506), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(507), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(508), - [aux_sym__list_lower_roman_period_repeat1] = STATE(509), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(510), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(511), - [aux_sym__list_upper_roman_period_repeat1] = STATE(512), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(513), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(514), - [aux_sym_table_repeat1] = STATE(311), - [aux_sym__block_quote_prefix_repeat1] = STATE(253), - [aux_sym__inline_repeat1] = STATE(297), - [anon_sym_LBRACK] = ACTIONS(436), - [anon_sym_PIPE] = ACTIONS(438), - [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(440), - [anon_sym_DOT] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(13), - [aux_sym__inline_token1] = ACTIONS(13), - [anon_sym_LBRACE_DASH] = ACTIONS(13), - [anon_sym_POUND] = ACTIONS(13), - [anon_sym_PERCENT] = ACTIONS(13), - [sym__heading_begin] = ACTIONS(442), - [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(444), - [sym_list_marker_dash] = ACTIONS(25), - [sym_list_marker_star] = ACTIONS(27), - [sym_list_marker_plus] = ACTIONS(29), - [sym__list_marker_task_begin] = ACTIONS(31), - [sym_list_marker_definition] = ACTIONS(33), - [sym_list_marker_decimal_period] = ACTIONS(35), - [sym_list_marker_lower_alpha_period] = ACTIONS(37), - [sym_list_marker_upper_alpha_period] = ACTIONS(39), - [sym_list_marker_lower_roman_period] = ACTIONS(41), - [sym_list_marker_upper_roman_period] = ACTIONS(43), - [sym_list_marker_decimal_paren] = ACTIONS(45), - [sym_list_marker_lower_alpha_paren] = ACTIONS(47), - [sym_list_marker_upper_alpha_paren] = ACTIONS(49), - [sym_list_marker_lower_roman_paren] = ACTIONS(51), - [sym_list_marker_upper_roman_paren] = ACTIONS(53), - [sym_list_marker_decimal_parens] = ACTIONS(55), - [sym_list_marker_lower_alpha_parens] = ACTIONS(57), - [sym_list_marker_upper_alpha_parens] = ACTIONS(59), - [sym_list_marker_lower_roman_parens] = ACTIONS(61), - [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(446), - [sym__block_quote_continuation] = ACTIONS(67), - [sym__thematic_break_dash] = ACTIONS(448), - [sym__thematic_break_star] = ACTIONS(448), + [sym__block_element] = STATE(452), + [sym_heading] = STATE(452), + [sym_list] = STATE(452), + [sym__list_dash] = STATE(834), + [sym__list_item_dash] = STATE(687), + [sym__list_plus] = STATE(834), + [sym__list_item_plus] = STATE(691), + [sym__list_star] = STATE(834), + [sym__list_item_star] = STATE(673), + [sym__list_task] = STATE(834), + [sym__list_item_task] = STATE(680), + [sym_list_marker_task] = STATE(48), + [sym__list_definition] = STATE(834), + [sym__list_item_definition] = STATE(804), + [sym__list_decimal_period] = STATE(834), + [sym__list_item_decimal_period] = STATE(837), + [sym__list_decimal_paren] = STATE(834), + [sym__list_item_decimal_paren] = STATE(703), + [sym__list_decimal_parens] = STATE(834), + [sym__list_item_decimal_parens] = STATE(715), + [sym__list_lower_alpha_period] = STATE(834), + [sym__list_item_lower_alpha_period] = STATE(739), + [sym__list_lower_alpha_paren] = STATE(834), + [sym__list_item_lower_alpha_paren] = STATE(754), + [sym__list_lower_alpha_parens] = STATE(834), + [sym__list_item_lower_alpha_parens] = STATE(755), + [sym__list_upper_alpha_period] = STATE(834), + [sym__list_item_upper_alpha_period] = STATE(758), + [sym__list_upper_alpha_paren] = STATE(834), + [sym__list_item_upper_alpha_paren] = STATE(759), + [sym__list_upper_alpha_parens] = STATE(834), + [sym__list_item_upper_alpha_parens] = STATE(766), + [sym__list_lower_roman_period] = STATE(834), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(834), + [sym__list_item_lower_roman_paren] = STATE(770), + [sym__list_lower_roman_parens] = STATE(834), + [sym__list_item_lower_roman_parens] = STATE(773), + [sym__list_upper_roman_period] = STATE(834), + [sym__list_item_upper_roman_period] = STATE(775), + [sym__list_upper_roman_paren] = STATE(834), + [sym__list_item_upper_roman_paren] = STATE(791), + [sym__list_upper_roman_parens] = STATE(834), + [sym__list_item_upper_roman_parens] = STATE(793), + [sym_table] = STATE(452), + [sym__table_row] = STATE(249), + [sym_table_header] = STATE(249), + [sym_table_separator] = STATE(249), + [sym_table_row] = STATE(249), + [sym_footnote] = STATE(452), + [sym_footnote_marker_begin] = STATE(1143), + [sym_div] = STATE(452), + [sym__div_marker_begin] = STATE(1042), + [sym_code_block] = STATE(452), + [sym_raw_block] = STATE(452), + [sym_thematic_break] = STATE(452), + [sym_block_quote] = STATE(452), + [sym__block_quote_content] = STATE(1137), + [sym__block_quote_prefix] = STATE(221), + [sym_link_reference_definition] = STATE(452), + [sym_block_attribute] = STATE(452), + [sym__paragraph] = STATE(452), + [sym__paragraph_content] = STATE(772), + [sym__paragraph_inline_content] = STATE(799), + [sym__inline] = STATE(629), + [sym__symbol_fallback] = STATE(285), + [aux_sym__list_dash_repeat1] = STATE(373), + [aux_sym__list_plus_repeat1] = STATE(374), + [aux_sym__list_star_repeat1] = STATE(375), + [aux_sym__list_task_repeat1] = STATE(325), + [aux_sym__list_definition_repeat1] = STATE(496), + [aux_sym__list_decimal_period_repeat1] = STATE(497), + [aux_sym__list_decimal_paren_repeat1] = STATE(498), + [aux_sym__list_decimal_parens_repeat1] = STATE(499), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(500), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(501), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(502), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(503), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(504), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(505), + [aux_sym__list_lower_roman_period_repeat1] = STATE(506), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(507), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(508), + [aux_sym__list_upper_roman_period_repeat1] = STATE(509), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(510), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(511), + [aux_sym_table_repeat1] = STATE(249), + [aux_sym__block_quote_prefix_repeat1] = STATE(235), + [aux_sym__inline_repeat1] = STATE(285), + [anon_sym_LBRACK] = ACTIONS(470), + [anon_sym_LBRACK_CARET] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(472), + [anon_sym_DOT] = ACTIONS(11), + [aux_sym_identifier_token1] = ACTIONS(11), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_PERCENT] = ACTIONS(11), + [sym__heading_begin] = ACTIONS(474), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(476), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(478), + [sym__block_quote_continuation] = ACTIONS(65), + [sym__thematic_break_dash] = ACTIONS(480), + [sym__thematic_break_star] = ACTIONS(480), + [sym__table_header_begin] = ACTIONS(482), + [sym__table_separator_begin] = ACTIONS(484), + [sym__table_row_begin] = ACTIONS(486), }, [58] = { - [sym__block_element] = STATE(1095), - [sym_heading] = STATE(1095), - [sym_list] = STATE(1095), - [sym__list_dash] = STATE(1006), - [sym__list_item_dash] = STATE(636), - [sym__list_plus] = STATE(1006), - [sym__list_item_plus] = STATE(637), - [sym__list_star] = STATE(1006), - [sym__list_item_star] = STATE(671), - [sym__list_task] = STATE(1006), - [sym__list_item_task] = STATE(691), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(1006), - [sym__list_item_definition] = STATE(896), - [sym__list_decimal_period] = STATE(1006), - [sym__list_item_decimal_period] = STATE(841), - [sym__list_decimal_paren] = STATE(1006), - [sym__list_item_decimal_paren] = STATE(796), - [sym__list_decimal_parens] = STATE(1006), - [sym__list_item_decimal_parens] = STATE(716), - [sym__list_lower_alpha_period] = STATE(1006), - [sym__list_item_lower_alpha_period] = STATE(722), - [sym__list_lower_alpha_paren] = STATE(1006), - [sym__list_item_lower_alpha_paren] = STATE(801), - [sym__list_lower_alpha_parens] = STATE(1006), - [sym__list_item_lower_alpha_parens] = STATE(813), - [sym__list_upper_alpha_period] = STATE(1006), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(1006), - [sym__list_item_upper_alpha_paren] = STATE(706), - [sym__list_upper_alpha_parens] = STATE(1006), - [sym__list_item_upper_alpha_parens] = STATE(707), - [sym__list_lower_roman_period] = STATE(1006), - [sym__list_item_lower_roman_period] = STATE(725), - [sym__list_lower_roman_paren] = STATE(1006), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(1006), - [sym__list_item_lower_roman_parens] = STATE(736), - [sym__list_upper_roman_period] = STATE(1006), - [sym__list_item_upper_roman_period] = STATE(742), - [sym__list_upper_roman_paren] = STATE(1006), - [sym__list_item_upper_roman_paren] = STATE(743), - [sym__list_upper_roman_parens] = STATE(1006), - [sym__list_item_upper_roman_parens] = STATE(762), - [sym_table] = STATE(1095), - [sym__table_content] = STATE(310), - [sym_table_separator] = STATE(310), - [sym_table_row] = STATE(331), - [sym_footnote] = STATE(1095), - [sym_footnote_marker_begin] = STATE(1176), - [sym_div] = STATE(1095), - [sym__div_marker_begin] = STATE(1026), - [sym_code_block] = STATE(1095), - [sym_raw_block] = STATE(1095), - [sym_thematic_break] = STATE(1095), - [sym_block_quote] = STATE(1095), - [sym__block_quote_prefix] = STATE(231), - [sym_link_reference_definition] = STATE(1095), - [sym_block_attribute] = STATE(1095), - [sym__paragraph] = STATE(1095), - [sym__paragraph_content] = STATE(705), - [sym__paragraph_inline_content] = STATE(775), - [sym__inline] = STATE(616), - [sym__symbol_fallback] = STATE(297), - [aux_sym__list_dash_repeat1] = STATE(355), - [aux_sym__list_plus_repeat1] = STATE(356), - [aux_sym__list_star_repeat1] = STATE(362), - [aux_sym__list_task_repeat1] = STATE(346), - [aux_sym__list_definition_repeat1] = STATE(483), - [aux_sym__list_decimal_period_repeat1] = STATE(484), - [aux_sym__list_decimal_paren_repeat1] = STATE(485), - [aux_sym__list_decimal_parens_repeat1] = STATE(486), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(487), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(488), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(489), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(490), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(491), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(492), - [aux_sym__list_lower_roman_period_repeat1] = STATE(493), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(494), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(495), - [aux_sym__list_upper_roman_period_repeat1] = STATE(581), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(496), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(497), - [aux_sym_table_repeat1] = STATE(310), - [aux_sym__block_quote_prefix_repeat1] = STATE(253), - [aux_sym__inline_repeat1] = STATE(297), - [anon_sym_LBRACK] = ACTIONS(428), - [anon_sym_PIPE] = ACTIONS(428), - [anon_sym_LBRACK_CARET] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(428), - [anon_sym_DOT] = ACTIONS(428), - [aux_sym_identifier_token1] = ACTIONS(428), - [aux_sym__inline_token1] = ACTIONS(428), - [anon_sym_LBRACE_DASH] = ACTIONS(428), - [anon_sym_POUND] = ACTIONS(428), - [anon_sym_PERCENT] = ACTIONS(428), - [sym__newline] = ACTIONS(450), - [sym__heading_begin] = ACTIONS(346), - [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(348), - [sym_list_marker_dash] = ACTIONS(430), - [sym_list_marker_star] = ACTIONS(430), - [sym_list_marker_plus] = ACTIONS(430), - [sym__list_marker_task_begin] = ACTIONS(430), - [sym_list_marker_definition] = ACTIONS(33), - [sym_list_marker_decimal_period] = ACTIONS(35), - [sym_list_marker_lower_alpha_period] = ACTIONS(37), - [sym_list_marker_upper_alpha_period] = ACTIONS(39), - [sym_list_marker_lower_roman_period] = ACTIONS(41), - [sym_list_marker_upper_roman_period] = ACTIONS(43), - [sym_list_marker_decimal_paren] = ACTIONS(45), - [sym_list_marker_lower_alpha_paren] = ACTIONS(47), - [sym_list_marker_upper_alpha_paren] = ACTIONS(49), - [sym_list_marker_lower_roman_paren] = ACTIONS(51), - [sym_list_marker_upper_roman_paren] = ACTIONS(53), - [sym_list_marker_decimal_parens] = ACTIONS(55), - [sym_list_marker_lower_alpha_parens] = ACTIONS(57), - [sym_list_marker_upper_alpha_parens] = ACTIONS(59), - [sym_list_marker_lower_roman_parens] = ACTIONS(61), - [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(350), - [sym__block_quote_continuation] = ACTIONS(430), - [sym__thematic_break_dash] = ACTIONS(354), - [sym__thematic_break_star] = ACTIONS(354), + [sym__block_element] = STATE(583), + [sym_heading] = STATE(583), + [sym_list] = STATE(583), + [sym__list_dash] = STATE(600), + [sym__list_item_dash] = STATE(687), + [sym__list_plus] = STATE(600), + [sym__list_item_plus] = STATE(691), + [sym__list_star] = STATE(600), + [sym__list_item_star] = STATE(673), + [sym__list_task] = STATE(600), + [sym__list_item_task] = STATE(680), + [sym_list_marker_task] = STATE(48), + [sym__list_definition] = STATE(600), + [sym__list_item_definition] = STATE(804), + [sym__list_decimal_period] = STATE(600), + [sym__list_item_decimal_period] = STATE(837), + [sym__list_decimal_paren] = STATE(600), + [sym__list_item_decimal_paren] = STATE(703), + [sym__list_decimal_parens] = STATE(600), + [sym__list_item_decimal_parens] = STATE(715), + [sym__list_lower_alpha_period] = STATE(600), + [sym__list_item_lower_alpha_period] = STATE(739), + [sym__list_lower_alpha_paren] = STATE(600), + [sym__list_item_lower_alpha_paren] = STATE(754), + [sym__list_lower_alpha_parens] = STATE(600), + [sym__list_item_lower_alpha_parens] = STATE(755), + [sym__list_upper_alpha_period] = STATE(600), + [sym__list_item_upper_alpha_period] = STATE(758), + [sym__list_upper_alpha_paren] = STATE(600), + [sym__list_item_upper_alpha_paren] = STATE(759), + [sym__list_upper_alpha_parens] = STATE(600), + [sym__list_item_upper_alpha_parens] = STATE(766), + [sym__list_lower_roman_period] = STATE(600), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(600), + [sym__list_item_lower_roman_paren] = STATE(770), + [sym__list_lower_roman_parens] = STATE(600), + [sym__list_item_lower_roman_parens] = STATE(773), + [sym__list_upper_roman_period] = STATE(600), + [sym__list_item_upper_roman_period] = STATE(775), + [sym__list_upper_roman_paren] = STATE(600), + [sym__list_item_upper_roman_paren] = STATE(791), + [sym__list_upper_roman_parens] = STATE(600), + [sym__list_item_upper_roman_parens] = STATE(793), + [sym_table] = STATE(583), + [sym__table_row] = STATE(238), + [sym_table_header] = STATE(238), + [sym_table_separator] = STATE(238), + [sym_table_row] = STATE(238), + [sym_footnote] = STATE(583), + [sym_footnote_marker_begin] = STATE(1147), + [sym_div] = STATE(583), + [sym__div_marker_begin] = STATE(1079), + [sym_code_block] = STATE(583), + [sym_raw_block] = STATE(583), + [sym_thematic_break] = STATE(583), + [sym_block_quote] = STATE(583), + [sym__block_quote_prefix] = STATE(223), + [sym_link_reference_definition] = STATE(583), + [sym_block_attribute] = STATE(583), + [sym__paragraph] = STATE(583), + [sym__paragraph_content] = STATE(821), + [sym__paragraph_inline_content] = STATE(799), + [sym__inline] = STATE(629), + [sym__symbol_fallback] = STATE(285), + [aux_sym__list_dash_repeat1] = STATE(364), + [aux_sym__list_plus_repeat1] = STATE(365), + [aux_sym__list_star_repeat1] = STATE(383), + [aux_sym__list_task_repeat1] = STATE(328), + [aux_sym__list_definition_repeat1] = STATE(536), + [aux_sym__list_decimal_period_repeat1] = STATE(537), + [aux_sym__list_decimal_paren_repeat1] = STATE(538), + [aux_sym__list_decimal_parens_repeat1] = STATE(539), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(540), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(541), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(542), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(543), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(544), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(545), + [aux_sym__list_lower_roman_period_repeat1] = STATE(546), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(547), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(548), + [aux_sym__list_upper_roman_period_repeat1] = STATE(549), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(550), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(551), + [aux_sym_table_repeat1] = STATE(238), + [aux_sym__block_quote_prefix_repeat1] = STATE(235), + [aux_sym__inline_repeat1] = STATE(285), + [anon_sym_LBRACK] = ACTIONS(458), + [anon_sym_LBRACK_CARET] = ACTIONS(458), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_DOT] = ACTIONS(458), + [aux_sym_identifier_token1] = ACTIONS(458), + [aux_sym__inline_token1] = ACTIONS(458), + [anon_sym_LBRACE_DASH] = ACTIONS(458), + [anon_sym_POUND] = ACTIONS(458), + [anon_sym_PERCENT] = ACTIONS(458), + [sym__newline] = ACTIONS(488), + [sym__heading_begin] = ACTIONS(438), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(440), + [sym_list_marker_dash] = ACTIONS(460), + [sym_list_marker_star] = ACTIONS(460), + [sym_list_marker_plus] = ACTIONS(460), + [sym__list_marker_task_begin] = ACTIONS(460), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(442), + [sym__block_quote_continuation] = ACTIONS(460), + [sym__thematic_break_dash] = ACTIONS(446), + [sym__thematic_break_star] = ACTIONS(446), + [sym__table_header_begin] = ACTIONS(460), + [sym__table_separator_begin] = ACTIONS(460), + [sym__table_row_begin] = ACTIONS(460), }, [59] = { - [sym__block_element] = STATE(449), - [sym_heading] = STATE(449), - [sym_list] = STATE(449), - [sym__list_dash] = STATE(853), - [sym__list_item_dash] = STATE(636), - [sym__list_plus] = STATE(853), - [sym__list_item_plus] = STATE(637), - [sym__list_star] = STATE(853), - [sym__list_item_star] = STATE(671), - [sym__list_task] = STATE(853), - [sym__list_item_task] = STATE(691), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(853), - [sym__list_item_definition] = STATE(896), - [sym__list_decimal_period] = STATE(853), - [sym__list_item_decimal_period] = STATE(841), - [sym__list_decimal_paren] = STATE(853), - [sym__list_item_decimal_paren] = STATE(796), - [sym__list_decimal_parens] = STATE(853), - [sym__list_item_decimal_parens] = STATE(716), - [sym__list_lower_alpha_period] = STATE(853), - [sym__list_item_lower_alpha_period] = STATE(722), - [sym__list_lower_alpha_paren] = STATE(853), - [sym__list_item_lower_alpha_paren] = STATE(801), - [sym__list_lower_alpha_parens] = STATE(853), - [sym__list_item_lower_alpha_parens] = STATE(813), - [sym__list_upper_alpha_period] = STATE(853), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(853), - [sym__list_item_upper_alpha_paren] = STATE(706), - [sym__list_upper_alpha_parens] = STATE(853), - [sym__list_item_upper_alpha_parens] = STATE(707), - [sym__list_lower_roman_period] = STATE(853), - [sym__list_item_lower_roman_period] = STATE(725), - [sym__list_lower_roman_paren] = STATE(853), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(853), - [sym__list_item_lower_roman_parens] = STATE(736), - [sym__list_upper_roman_period] = STATE(853), - [sym__list_item_upper_roman_period] = STATE(742), - [sym__list_upper_roman_paren] = STATE(853), - [sym__list_item_upper_roman_paren] = STATE(743), - [sym__list_upper_roman_parens] = STATE(853), - [sym__list_item_upper_roman_parens] = STATE(762), - [sym_table] = STATE(449), - [sym__table_content] = STATE(311), - [sym_table_separator] = STATE(311), - [sym_table_row] = STATE(347), - [sym_footnote] = STATE(449), - [sym_footnote_marker_begin] = STATE(1178), - [sym_div] = STATE(449), - [sym__div_marker_begin] = STATE(1050), - [sym_code_block] = STATE(449), - [sym_raw_block] = STATE(449), - [sym_thematic_break] = STATE(449), - [sym_block_quote] = STATE(449), - [sym__block_quote_content] = STATE(959), - [sym__block_quote_prefix] = STATE(232), - [sym_link_reference_definition] = STATE(449), - [sym_block_attribute] = STATE(449), - [sym__paragraph] = STATE(449), - [sym__paragraph_content] = STATE(741), - [sym__paragraph_inline_content] = STATE(775), - [sym__inline] = STATE(616), - [sym__symbol_fallback] = STATE(297), - [aux_sym__list_dash_repeat1] = STATE(370), - [aux_sym__list_plus_repeat1] = STATE(354), - [aux_sym__list_star_repeat1] = STATE(360), - [aux_sym__list_task_repeat1] = STATE(340), - [aux_sym__list_definition_repeat1] = STATE(499), - [aux_sym__list_decimal_period_repeat1] = STATE(500), - [aux_sym__list_decimal_paren_repeat1] = STATE(501), - [aux_sym__list_decimal_parens_repeat1] = STATE(502), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(503), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(504), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(505), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(506), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(507), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(508), - [aux_sym__list_lower_roman_period_repeat1] = STATE(509), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(510), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(511), - [aux_sym__list_upper_roman_period_repeat1] = STATE(512), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(513), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(514), - [aux_sym_table_repeat1] = STATE(311), - [aux_sym__block_quote_prefix_repeat1] = STATE(253), - [aux_sym__inline_repeat1] = STATE(297), - [anon_sym_LBRACK] = ACTIONS(436), - [anon_sym_PIPE] = ACTIONS(438), - [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(440), - [anon_sym_DOT] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(13), - [aux_sym__inline_token1] = ACTIONS(13), - [anon_sym_LBRACE_DASH] = ACTIONS(13), - [anon_sym_POUND] = ACTIONS(13), - [anon_sym_PERCENT] = ACTIONS(13), - [sym__heading_begin] = ACTIONS(442), - [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(444), - [sym_list_marker_dash] = ACTIONS(25), - [sym_list_marker_star] = ACTIONS(27), - [sym_list_marker_plus] = ACTIONS(29), - [sym__list_marker_task_begin] = ACTIONS(31), - [sym_list_marker_definition] = ACTIONS(33), - [sym_list_marker_decimal_period] = ACTIONS(35), - [sym_list_marker_lower_alpha_period] = ACTIONS(37), - [sym_list_marker_upper_alpha_period] = ACTIONS(39), - [sym_list_marker_lower_roman_period] = ACTIONS(41), - [sym_list_marker_upper_roman_period] = ACTIONS(43), - [sym_list_marker_decimal_paren] = ACTIONS(45), - [sym_list_marker_lower_alpha_paren] = ACTIONS(47), - [sym_list_marker_upper_alpha_paren] = ACTIONS(49), - [sym_list_marker_lower_roman_paren] = ACTIONS(51), - [sym_list_marker_upper_roman_paren] = ACTIONS(53), - [sym_list_marker_decimal_parens] = ACTIONS(55), - [sym_list_marker_lower_alpha_parens] = ACTIONS(57), - [sym_list_marker_upper_alpha_parens] = ACTIONS(59), - [sym_list_marker_lower_roman_parens] = ACTIONS(61), - [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(446), - [sym__block_quote_continuation] = ACTIONS(67), - [sym__thematic_break_dash] = ACTIONS(448), - [sym__thematic_break_star] = ACTIONS(448), + [sym__block_element] = STATE(452), + [sym_heading] = STATE(452), + [sym_list] = STATE(452), + [sym__list_dash] = STATE(834), + [sym__list_item_dash] = STATE(687), + [sym__list_plus] = STATE(834), + [sym__list_item_plus] = STATE(691), + [sym__list_star] = STATE(834), + [sym__list_item_star] = STATE(673), + [sym__list_task] = STATE(834), + [sym__list_item_task] = STATE(680), + [sym_list_marker_task] = STATE(48), + [sym__list_definition] = STATE(834), + [sym__list_item_definition] = STATE(804), + [sym__list_decimal_period] = STATE(834), + [sym__list_item_decimal_period] = STATE(837), + [sym__list_decimal_paren] = STATE(834), + [sym__list_item_decimal_paren] = STATE(703), + [sym__list_decimal_parens] = STATE(834), + [sym__list_item_decimal_parens] = STATE(715), + [sym__list_lower_alpha_period] = STATE(834), + [sym__list_item_lower_alpha_period] = STATE(739), + [sym__list_lower_alpha_paren] = STATE(834), + [sym__list_item_lower_alpha_paren] = STATE(754), + [sym__list_lower_alpha_parens] = STATE(834), + [sym__list_item_lower_alpha_parens] = STATE(755), + [sym__list_upper_alpha_period] = STATE(834), + [sym__list_item_upper_alpha_period] = STATE(758), + [sym__list_upper_alpha_paren] = STATE(834), + [sym__list_item_upper_alpha_paren] = STATE(759), + [sym__list_upper_alpha_parens] = STATE(834), + [sym__list_item_upper_alpha_parens] = STATE(766), + [sym__list_lower_roman_period] = STATE(834), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(834), + [sym__list_item_lower_roman_paren] = STATE(770), + [sym__list_lower_roman_parens] = STATE(834), + [sym__list_item_lower_roman_parens] = STATE(773), + [sym__list_upper_roman_period] = STATE(834), + [sym__list_item_upper_roman_period] = STATE(775), + [sym__list_upper_roman_paren] = STATE(834), + [sym__list_item_upper_roman_paren] = STATE(791), + [sym__list_upper_roman_parens] = STATE(834), + [sym__list_item_upper_roman_parens] = STATE(793), + [sym_table] = STATE(452), + [sym__table_row] = STATE(249), + [sym_table_header] = STATE(249), + [sym_table_separator] = STATE(249), + [sym_table_row] = STATE(249), + [sym_footnote] = STATE(452), + [sym_footnote_marker_begin] = STATE(1143), + [sym_div] = STATE(452), + [sym__div_marker_begin] = STATE(1042), + [sym_code_block] = STATE(452), + [sym_raw_block] = STATE(452), + [sym_thematic_break] = STATE(452), + [sym_block_quote] = STATE(452), + [sym__block_quote_content] = STATE(955), + [sym__block_quote_prefix] = STATE(221), + [sym_link_reference_definition] = STATE(452), + [sym_block_attribute] = STATE(452), + [sym__paragraph] = STATE(452), + [sym__paragraph_content] = STATE(772), + [sym__paragraph_inline_content] = STATE(799), + [sym__inline] = STATE(629), + [sym__symbol_fallback] = STATE(285), + [aux_sym__list_dash_repeat1] = STATE(373), + [aux_sym__list_plus_repeat1] = STATE(374), + [aux_sym__list_star_repeat1] = STATE(375), + [aux_sym__list_task_repeat1] = STATE(325), + [aux_sym__list_definition_repeat1] = STATE(496), + [aux_sym__list_decimal_period_repeat1] = STATE(497), + [aux_sym__list_decimal_paren_repeat1] = STATE(498), + [aux_sym__list_decimal_parens_repeat1] = STATE(499), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(500), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(501), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(502), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(503), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(504), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(505), + [aux_sym__list_lower_roman_period_repeat1] = STATE(506), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(507), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(508), + [aux_sym__list_upper_roman_period_repeat1] = STATE(509), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(510), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(511), + [aux_sym_table_repeat1] = STATE(249), + [aux_sym__block_quote_prefix_repeat1] = STATE(235), + [aux_sym__inline_repeat1] = STATE(285), + [anon_sym_LBRACK] = ACTIONS(470), + [anon_sym_LBRACK_CARET] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(472), + [anon_sym_DOT] = ACTIONS(11), + [aux_sym_identifier_token1] = ACTIONS(11), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_PERCENT] = ACTIONS(11), + [sym__heading_begin] = ACTIONS(474), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(476), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(478), + [sym__block_quote_continuation] = ACTIONS(65), + [sym__thematic_break_dash] = ACTIONS(480), + [sym__thematic_break_star] = ACTIONS(480), + [sym__table_header_begin] = ACTIONS(482), + [sym__table_separator_begin] = ACTIONS(484), + [sym__table_row_begin] = ACTIONS(486), }, [60] = { - [sym__block_element] = STATE(640), - [sym_heading] = STATE(640), - [sym_list] = STATE(640), - [sym__list_dash] = STATE(603), - [sym__list_item_dash] = STATE(636), - [sym__list_plus] = STATE(603), - [sym__list_item_plus] = STATE(637), - [sym__list_star] = STATE(603), - [sym__list_item_star] = STATE(671), - [sym__list_task] = STATE(603), - [sym__list_item_task] = STATE(691), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(603), - [sym__list_item_definition] = STATE(896), - [sym__list_decimal_period] = STATE(603), - [sym__list_item_decimal_period] = STATE(841), - [sym__list_decimal_paren] = STATE(603), - [sym__list_item_decimal_paren] = STATE(796), - [sym__list_decimal_parens] = STATE(603), - [sym__list_item_decimal_parens] = STATE(716), - [sym__list_lower_alpha_period] = STATE(603), - [sym__list_item_lower_alpha_period] = STATE(722), - [sym__list_lower_alpha_paren] = STATE(603), - [sym__list_item_lower_alpha_paren] = STATE(801), - [sym__list_lower_alpha_parens] = STATE(603), - [sym__list_item_lower_alpha_parens] = STATE(813), - [sym__list_upper_alpha_period] = STATE(603), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(603), - [sym__list_item_upper_alpha_paren] = STATE(706), - [sym__list_upper_alpha_parens] = STATE(603), - [sym__list_item_upper_alpha_parens] = STATE(707), - [sym__list_lower_roman_period] = STATE(603), - [sym__list_item_lower_roman_period] = STATE(725), - [sym__list_lower_roman_paren] = STATE(603), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(603), - [sym__list_item_lower_roman_parens] = STATE(736), - [sym__list_upper_roman_period] = STATE(603), - [sym__list_item_upper_roman_period] = STATE(742), - [sym__list_upper_roman_paren] = STATE(603), - [sym__list_item_upper_roman_paren] = STATE(743), - [sym__list_upper_roman_parens] = STATE(603), - [sym__list_item_upper_roman_parens] = STATE(762), - [sym_table] = STATE(640), - [sym__table_content] = STATE(301), - [sym_table_separator] = STATE(301), - [sym_table_row] = STATE(329), - [sym_footnote] = STATE(640), - [sym_footnote_marker_begin] = STATE(1182), - [sym_div] = STATE(640), - [sym__div_marker_begin] = STATE(1097), - [sym_code_block] = STATE(640), - [sym_raw_block] = STATE(640), - [sym_thematic_break] = STATE(640), - [sym_block_quote] = STATE(640), - [sym__block_quote_prefix] = STATE(229), - [sym_link_reference_definition] = STATE(640), - [sym_block_attribute] = STATE(640), - [sym__paragraph] = STATE(640), - [sym__paragraph_content] = STATE(803), - [sym__paragraph_inline_content] = STATE(775), - [sym__inline] = STATE(616), - [sym__symbol_fallback] = STATE(297), - [aux_sym__list_dash_repeat1] = STATE(367), - [aux_sym__list_plus_repeat1] = STATE(353), - [aux_sym__list_star_repeat1] = STATE(364), - [aux_sym__list_task_repeat1] = STATE(338), - [aux_sym__list_definition_repeat1] = STATE(533), - [aux_sym__list_decimal_period_repeat1] = STATE(534), - [aux_sym__list_decimal_paren_repeat1] = STATE(535), - [aux_sym__list_decimal_parens_repeat1] = STATE(536), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(537), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(538), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(539), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(540), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(541), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(542), - [aux_sym__list_lower_roman_period_repeat1] = STATE(543), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(544), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(545), - [aux_sym__list_upper_roman_period_repeat1] = STATE(546), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(547), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(548), - [aux_sym_table_repeat1] = STATE(301), - [aux_sym__block_quote_prefix_repeat1] = STATE(253), - [aux_sym__inline_repeat1] = STATE(297), - [anon_sym_LBRACK] = ACTIONS(428), - [anon_sym_PIPE] = ACTIONS(428), - [anon_sym_LBRACK_CARET] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(428), - [anon_sym_DOT] = ACTIONS(428), - [aux_sym_identifier_token1] = ACTIONS(428), - [aux_sym__inline_token1] = ACTIONS(428), - [anon_sym_LBRACE_DASH] = ACTIONS(428), - [anon_sym_POUND] = ACTIONS(428), - [anon_sym_PERCENT] = ACTIONS(428), - [sym__newline] = ACTIONS(452), - [sym__heading_begin] = ACTIONS(410), - [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(412), - [sym_list_marker_dash] = ACTIONS(430), - [sym_list_marker_star] = ACTIONS(430), - [sym_list_marker_plus] = ACTIONS(430), - [sym__list_marker_task_begin] = ACTIONS(430), - [sym_list_marker_definition] = ACTIONS(33), - [sym_list_marker_decimal_period] = ACTIONS(35), - [sym_list_marker_lower_alpha_period] = ACTIONS(37), - [sym_list_marker_upper_alpha_period] = ACTIONS(39), - [sym_list_marker_lower_roman_period] = ACTIONS(41), - [sym_list_marker_upper_roman_period] = ACTIONS(43), - [sym_list_marker_decimal_paren] = ACTIONS(45), - [sym_list_marker_lower_alpha_paren] = ACTIONS(47), - [sym_list_marker_upper_alpha_paren] = ACTIONS(49), - [sym_list_marker_lower_roman_paren] = ACTIONS(51), - [sym_list_marker_upper_roman_paren] = ACTIONS(53), - [sym_list_marker_decimal_parens] = ACTIONS(55), - [sym_list_marker_lower_alpha_parens] = ACTIONS(57), - [sym_list_marker_upper_alpha_parens] = ACTIONS(59), - [sym_list_marker_lower_roman_parens] = ACTIONS(61), - [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(414), - [sym__block_quote_continuation] = ACTIONS(430), - [sym__thematic_break_dash] = ACTIONS(418), - [sym__thematic_break_star] = ACTIONS(418), + [sym__block_element] = STATE(140), + [sym_heading] = STATE(140), + [sym_list] = STATE(140), + [sym__list_dash] = STATE(143), + [sym__list_item_dash] = STATE(687), + [sym__list_plus] = STATE(143), + [sym__list_item_plus] = STATE(691), + [sym__list_star] = STATE(143), + [sym__list_item_star] = STATE(673), + [sym__list_task] = STATE(143), + [sym__list_item_task] = STATE(680), + [sym_list_marker_task] = STATE(48), + [sym__list_definition] = STATE(143), + [sym__list_item_definition] = STATE(804), + [sym__list_decimal_period] = STATE(143), + [sym__list_item_decimal_period] = STATE(837), + [sym__list_decimal_paren] = STATE(143), + [sym__list_item_decimal_paren] = STATE(703), + [sym__list_decimal_parens] = STATE(143), + [sym__list_item_decimal_parens] = STATE(715), + [sym__list_lower_alpha_period] = STATE(143), + [sym__list_item_lower_alpha_period] = STATE(739), + [sym__list_lower_alpha_paren] = STATE(143), + [sym__list_item_lower_alpha_paren] = STATE(754), + [sym__list_lower_alpha_parens] = STATE(143), + [sym__list_item_lower_alpha_parens] = STATE(755), + [sym__list_upper_alpha_period] = STATE(143), + [sym__list_item_upper_alpha_period] = STATE(758), + [sym__list_upper_alpha_paren] = STATE(143), + [sym__list_item_upper_alpha_paren] = STATE(759), + [sym__list_upper_alpha_parens] = STATE(143), + [sym__list_item_upper_alpha_parens] = STATE(766), + [sym__list_lower_roman_period] = STATE(143), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(143), + [sym__list_item_lower_roman_paren] = STATE(770), + [sym__list_lower_roman_parens] = STATE(143), + [sym__list_item_lower_roman_parens] = STATE(773), + [sym__list_upper_roman_period] = STATE(143), + [sym__list_item_upper_roman_period] = STATE(775), + [sym__list_upper_roman_paren] = STATE(143), + [sym__list_item_upper_roman_paren] = STATE(791), + [sym__list_upper_roman_parens] = STATE(143), + [sym__list_item_upper_roman_parens] = STATE(793), + [sym_table] = STATE(140), + [sym__table_row] = STATE(66), + [sym_table_header] = STATE(66), + [sym_table_separator] = STATE(66), + [sym_table_row] = STATE(66), + [sym_footnote] = STATE(140), + [sym_footnote_marker_begin] = STATE(1145), + [sym_div] = STATE(140), + [sym__div_marker_begin] = STATE(1061), + [sym_code_block] = STATE(140), + [sym_raw_block] = STATE(140), + [sym_thematic_break] = STATE(140), + [sym_block_quote] = STATE(140), + [sym__block_quote_prefix] = STATE(224), + [sym_link_reference_definition] = STATE(140), + [sym_block_attribute] = STATE(140), + [sym__paragraph] = STATE(140), + [sym__paragraph_content] = STATE(800), + [sym__paragraph_inline_content] = STATE(799), + [sym__inline] = STATE(629), + [sym__symbol_fallback] = STATE(285), + [aux_sym__list_dash_repeat1] = STATE(351), + [aux_sym__list_plus_repeat1] = STATE(350), + [aux_sym__list_star_repeat1] = STATE(353), + [aux_sym__list_task_repeat1] = STATE(339), + [aux_sym__list_definition_repeat1] = STATE(512), + [aux_sym__list_decimal_period_repeat1] = STATE(513), + [aux_sym__list_decimal_paren_repeat1] = STATE(514), + [aux_sym__list_decimal_parens_repeat1] = STATE(515), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(516), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(518), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(519), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(520), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(521), + [aux_sym__list_lower_roman_period_repeat1] = STATE(579), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(523), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(524), + [aux_sym__list_upper_roman_period_repeat1] = STATE(525), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(526), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(527), + [aux_sym_table_repeat1] = STATE(66), + [aux_sym__block_quote_prefix_repeat1] = STATE(235), + [aux_sym__inline_repeat1] = STATE(285), + [anon_sym_LBRACK] = ACTIONS(458), + [anon_sym_LBRACK_CARET] = ACTIONS(458), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_DOT] = ACTIONS(458), + [aux_sym_identifier_token1] = ACTIONS(458), + [aux_sym__inline_token1] = ACTIONS(458), + [anon_sym_LBRACE_DASH] = ACTIONS(458), + [anon_sym_POUND] = ACTIONS(458), + [anon_sym_PERCENT] = ACTIONS(458), + [sym__newline] = ACTIONS(462), + [sym__heading_begin] = ACTIONS(17), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(85), + [sym_list_marker_dash] = ACTIONS(460), + [sym_list_marker_star] = ACTIONS(460), + [sym_list_marker_plus] = ACTIONS(460), + [sym__list_marker_task_begin] = ACTIONS(460), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(87), + [sym__block_quote_continuation] = ACTIONS(460), + [sym__thematic_break_dash] = ACTIONS(89), + [sym__thematic_break_star] = ACTIONS(89), + [sym__table_header_begin] = ACTIONS(460), + [sym__table_separator_begin] = ACTIONS(460), + [sym__table_row_begin] = ACTIONS(460), }, [61] = { - [sym__block_element] = STATE(141), - [sym_heading] = STATE(141), - [sym_list] = STATE(141), - [sym__list_dash] = STATE(144), - [sym__list_item_dash] = STATE(636), - [sym__list_plus] = STATE(144), - [sym__list_item_plus] = STATE(637), - [sym__list_star] = STATE(144), - [sym__list_item_star] = STATE(671), - [sym__list_task] = STATE(144), - [sym__list_item_task] = STATE(691), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(144), - [sym__list_item_definition] = STATE(896), - [sym__list_decimal_period] = STATE(144), - [sym__list_item_decimal_period] = STATE(841), - [sym__list_decimal_paren] = STATE(144), - [sym__list_item_decimal_paren] = STATE(796), - [sym__list_decimal_parens] = STATE(144), - [sym__list_item_decimal_parens] = STATE(716), - [sym__list_lower_alpha_period] = STATE(144), - [sym__list_item_lower_alpha_period] = STATE(722), - [sym__list_lower_alpha_paren] = STATE(144), - [sym__list_item_lower_alpha_paren] = STATE(801), - [sym__list_lower_alpha_parens] = STATE(144), - [sym__list_item_lower_alpha_parens] = STATE(813), - [sym__list_upper_alpha_period] = STATE(144), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(144), - [sym__list_item_upper_alpha_paren] = STATE(706), - [sym__list_upper_alpha_parens] = STATE(144), - [sym__list_item_upper_alpha_parens] = STATE(707), - [sym__list_lower_roman_period] = STATE(144), - [sym__list_item_lower_roman_period] = STATE(725), - [sym__list_lower_roman_paren] = STATE(144), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(144), - [sym__list_item_lower_roman_parens] = STATE(736), - [sym__list_upper_roman_period] = STATE(144), - [sym__list_item_upper_roman_period] = STATE(742), - [sym__list_upper_roman_paren] = STATE(144), - [sym__list_item_upper_roman_paren] = STATE(743), - [sym__list_upper_roman_parens] = STATE(144), - [sym__list_item_upper_roman_parens] = STATE(762), - [sym_table] = STATE(141), - [sym__table_content] = STATE(67), - [sym_table_separator] = STATE(67), - [sym_table_row] = STATE(70), - [sym_footnote] = STATE(141), - [sym_footnote_marker_begin] = STATE(1180), - [sym_div] = STATE(141), - [sym__div_marker_begin] = STATE(1074), - [sym_code_block] = STATE(141), - [sym_raw_block] = STATE(141), - [sym_thematic_break] = STATE(141), - [sym_block_quote] = STATE(141), - [sym__block_quote_prefix] = STATE(233), - [sym_link_reference_definition] = STATE(141), - [sym_block_attribute] = STATE(141), - [sym__paragraph] = STATE(141), - [sym__paragraph_content] = STATE(773), - [sym__paragraph_inline_content] = STATE(775), - [sym__inline] = STATE(616), - [sym__symbol_fallback] = STATE(297), - [aux_sym__list_dash_repeat1] = STATE(357), - [aux_sym__list_plus_repeat1] = STATE(358), - [aux_sym__list_star_repeat1] = STATE(359), - [aux_sym__list_task_repeat1] = STATE(344), - [aux_sym__list_definition_repeat1] = STATE(515), - [aux_sym__list_decimal_period_repeat1] = STATE(516), - [aux_sym__list_decimal_paren_repeat1] = STATE(517), - [aux_sym__list_decimal_parens_repeat1] = STATE(518), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(519), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(520), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(521), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(522), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(523), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(524), - [aux_sym__list_lower_roman_period_repeat1] = STATE(525), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(526), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(527), - [aux_sym__list_upper_roman_period_repeat1] = STATE(528), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(529), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(530), - [aux_sym_table_repeat1] = STATE(67), - [aux_sym__block_quote_prefix_repeat1] = STATE(253), - [aux_sym__inline_repeat1] = STATE(297), - [anon_sym_LBRACK] = ACTIONS(428), - [anon_sym_PIPE] = ACTIONS(428), - [anon_sym_LBRACK_CARET] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(428), - [anon_sym_DOT] = ACTIONS(428), - [aux_sym_identifier_token1] = ACTIONS(428), - [aux_sym__inline_token1] = ACTIONS(428), - [anon_sym_LBRACE_DASH] = ACTIONS(428), - [anon_sym_POUND] = ACTIONS(428), - [anon_sym_PERCENT] = ACTIONS(428), - [sym__newline] = ACTIONS(432), - [sym__heading_begin] = ACTIONS(19), - [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(81), - [sym_list_marker_dash] = ACTIONS(430), - [sym_list_marker_star] = ACTIONS(430), - [sym_list_marker_plus] = ACTIONS(430), - [sym__list_marker_task_begin] = ACTIONS(430), - [sym_list_marker_definition] = ACTIONS(33), - [sym_list_marker_decimal_period] = ACTIONS(35), - [sym_list_marker_lower_alpha_period] = ACTIONS(37), - [sym_list_marker_upper_alpha_period] = ACTIONS(39), - [sym_list_marker_lower_roman_period] = ACTIONS(41), - [sym_list_marker_upper_roman_period] = ACTIONS(43), - [sym_list_marker_decimal_paren] = ACTIONS(45), - [sym_list_marker_lower_alpha_paren] = ACTIONS(47), - [sym_list_marker_upper_alpha_paren] = ACTIONS(49), - [sym_list_marker_lower_roman_paren] = ACTIONS(51), - [sym_list_marker_upper_roman_paren] = ACTIONS(53), - [sym_list_marker_decimal_parens] = ACTIONS(55), - [sym_list_marker_lower_alpha_parens] = ACTIONS(57), - [sym_list_marker_upper_alpha_parens] = ACTIONS(59), - [sym_list_marker_lower_roman_parens] = ACTIONS(61), - [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(83), - [sym__block_quote_continuation] = ACTIONS(430), - [sym__thematic_break_dash] = ACTIONS(85), - [sym__thematic_break_star] = ACTIONS(85), + [sym__block_element] = STATE(452), + [sym_heading] = STATE(452), + [sym_list] = STATE(452), + [sym__list_dash] = STATE(834), + [sym__list_item_dash] = STATE(687), + [sym__list_plus] = STATE(834), + [sym__list_item_plus] = STATE(691), + [sym__list_star] = STATE(834), + [sym__list_item_star] = STATE(673), + [sym__list_task] = STATE(834), + [sym__list_item_task] = STATE(680), + [sym_list_marker_task] = STATE(48), + [sym__list_definition] = STATE(834), + [sym__list_item_definition] = STATE(804), + [sym__list_decimal_period] = STATE(834), + [sym__list_item_decimal_period] = STATE(837), + [sym__list_decimal_paren] = STATE(834), + [sym__list_item_decimal_paren] = STATE(703), + [sym__list_decimal_parens] = STATE(834), + [sym__list_item_decimal_parens] = STATE(715), + [sym__list_lower_alpha_period] = STATE(834), + [sym__list_item_lower_alpha_period] = STATE(739), + [sym__list_lower_alpha_paren] = STATE(834), + [sym__list_item_lower_alpha_paren] = STATE(754), + [sym__list_lower_alpha_parens] = STATE(834), + [sym__list_item_lower_alpha_parens] = STATE(755), + [sym__list_upper_alpha_period] = STATE(834), + [sym__list_item_upper_alpha_period] = STATE(758), + [sym__list_upper_alpha_paren] = STATE(834), + [sym__list_item_upper_alpha_paren] = STATE(759), + [sym__list_upper_alpha_parens] = STATE(834), + [sym__list_item_upper_alpha_parens] = STATE(766), + [sym__list_lower_roman_period] = STATE(834), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(834), + [sym__list_item_lower_roman_paren] = STATE(770), + [sym__list_lower_roman_parens] = STATE(834), + [sym__list_item_lower_roman_parens] = STATE(773), + [sym__list_upper_roman_period] = STATE(834), + [sym__list_item_upper_roman_period] = STATE(775), + [sym__list_upper_roman_paren] = STATE(834), + [sym__list_item_upper_roman_paren] = STATE(791), + [sym__list_upper_roman_parens] = STATE(834), + [sym__list_item_upper_roman_parens] = STATE(793), + [sym_table] = STATE(452), + [sym__table_row] = STATE(249), + [sym_table_header] = STATE(249), + [sym_table_separator] = STATE(249), + [sym_table_row] = STATE(249), + [sym_footnote] = STATE(452), + [sym_footnote_marker_begin] = STATE(1143), + [sym_div] = STATE(452), + [sym__div_marker_begin] = STATE(1042), + [sym_code_block] = STATE(452), + [sym_raw_block] = STATE(452), + [sym_thematic_break] = STATE(452), + [sym_block_quote] = STATE(452), + [sym__block_quote_content] = STATE(1077), + [sym__block_quote_prefix] = STATE(221), + [sym_link_reference_definition] = STATE(452), + [sym_block_attribute] = STATE(452), + [sym__paragraph] = STATE(452), + [sym__paragraph_content] = STATE(772), + [sym__paragraph_inline_content] = STATE(799), + [sym__inline] = STATE(629), + [sym__symbol_fallback] = STATE(285), + [aux_sym__list_dash_repeat1] = STATE(373), + [aux_sym__list_plus_repeat1] = STATE(374), + [aux_sym__list_star_repeat1] = STATE(375), + [aux_sym__list_task_repeat1] = STATE(325), + [aux_sym__list_definition_repeat1] = STATE(496), + [aux_sym__list_decimal_period_repeat1] = STATE(497), + [aux_sym__list_decimal_paren_repeat1] = STATE(498), + [aux_sym__list_decimal_parens_repeat1] = STATE(499), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(500), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(501), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(502), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(503), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(504), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(505), + [aux_sym__list_lower_roman_period_repeat1] = STATE(506), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(507), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(508), + [aux_sym__list_upper_roman_period_repeat1] = STATE(509), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(510), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(511), + [aux_sym_table_repeat1] = STATE(249), + [aux_sym__block_quote_prefix_repeat1] = STATE(235), + [aux_sym__inline_repeat1] = STATE(285), + [anon_sym_LBRACK] = ACTIONS(470), + [anon_sym_LBRACK_CARET] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(472), + [anon_sym_DOT] = ACTIONS(11), + [aux_sym_identifier_token1] = ACTIONS(11), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_PERCENT] = ACTIONS(11), + [sym__heading_begin] = ACTIONS(474), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(476), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(478), + [sym__block_quote_continuation] = ACTIONS(65), + [sym__thematic_break_dash] = ACTIONS(480), + [sym__thematic_break_star] = ACTIONS(480), + [sym__table_header_begin] = ACTIONS(482), + [sym__table_separator_begin] = ACTIONS(484), + [sym__table_row_begin] = ACTIONS(486), }, [62] = { - [sym__block_element] = STATE(449), - [sym_heading] = STATE(449), - [sym_list] = STATE(449), - [sym__list_dash] = STATE(853), - [sym__list_item_dash] = STATE(636), - [sym__list_plus] = STATE(853), - [sym__list_item_plus] = STATE(637), - [sym__list_star] = STATE(853), - [sym__list_item_star] = STATE(671), - [sym__list_task] = STATE(853), - [sym__list_item_task] = STATE(691), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(853), - [sym__list_item_definition] = STATE(896), - [sym__list_decimal_period] = STATE(853), - [sym__list_item_decimal_period] = STATE(841), - [sym__list_decimal_paren] = STATE(853), - [sym__list_item_decimal_paren] = STATE(796), - [sym__list_decimal_parens] = STATE(853), - [sym__list_item_decimal_parens] = STATE(716), - [sym__list_lower_alpha_period] = STATE(853), - [sym__list_item_lower_alpha_period] = STATE(722), - [sym__list_lower_alpha_paren] = STATE(853), - [sym__list_item_lower_alpha_paren] = STATE(801), - [sym__list_lower_alpha_parens] = STATE(853), - [sym__list_item_lower_alpha_parens] = STATE(813), - [sym__list_upper_alpha_period] = STATE(853), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(853), - [sym__list_item_upper_alpha_paren] = STATE(706), - [sym__list_upper_alpha_parens] = STATE(853), - [sym__list_item_upper_alpha_parens] = STATE(707), - [sym__list_lower_roman_period] = STATE(853), - [sym__list_item_lower_roman_period] = STATE(725), - [sym__list_lower_roman_paren] = STATE(853), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(853), - [sym__list_item_lower_roman_parens] = STATE(736), - [sym__list_upper_roman_period] = STATE(853), - [sym__list_item_upper_roman_period] = STATE(742), - [sym__list_upper_roman_paren] = STATE(853), - [sym__list_item_upper_roman_paren] = STATE(743), - [sym__list_upper_roman_parens] = STATE(853), - [sym__list_item_upper_roman_parens] = STATE(762), - [sym_table] = STATE(449), - [sym__table_content] = STATE(311), - [sym_table_separator] = STATE(311), - [sym_table_row] = STATE(347), - [sym_footnote] = STATE(449), - [sym_footnote_marker_begin] = STATE(1178), - [sym_div] = STATE(449), - [sym__div_marker_begin] = STATE(1050), - [sym_code_block] = STATE(449), - [sym_raw_block] = STATE(449), - [sym_thematic_break] = STATE(449), - [sym_block_quote] = STATE(449), - [sym__block_quote_content] = STATE(1087), - [sym__block_quote_prefix] = STATE(232), - [sym_link_reference_definition] = STATE(449), - [sym_block_attribute] = STATE(449), - [sym__paragraph] = STATE(449), - [sym__paragraph_content] = STATE(741), - [sym__paragraph_inline_content] = STATE(775), - [sym__inline] = STATE(616), - [sym__symbol_fallback] = STATE(297), - [aux_sym__list_dash_repeat1] = STATE(370), - [aux_sym__list_plus_repeat1] = STATE(354), - [aux_sym__list_star_repeat1] = STATE(360), - [aux_sym__list_task_repeat1] = STATE(340), - [aux_sym__list_definition_repeat1] = STATE(499), - [aux_sym__list_decimal_period_repeat1] = STATE(500), - [aux_sym__list_decimal_paren_repeat1] = STATE(501), - [aux_sym__list_decimal_parens_repeat1] = STATE(502), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(503), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(504), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(505), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(506), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(507), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(508), - [aux_sym__list_lower_roman_period_repeat1] = STATE(509), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(510), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(511), - [aux_sym__list_upper_roman_period_repeat1] = STATE(512), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(513), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(514), - [aux_sym_table_repeat1] = STATE(311), - [aux_sym__block_quote_prefix_repeat1] = STATE(253), - [aux_sym__inline_repeat1] = STATE(297), - [anon_sym_LBRACK] = ACTIONS(436), - [anon_sym_PIPE] = ACTIONS(438), - [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(440), - [anon_sym_DOT] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(13), - [aux_sym__inline_token1] = ACTIONS(13), - [anon_sym_LBRACE_DASH] = ACTIONS(13), - [anon_sym_POUND] = ACTIONS(13), - [anon_sym_PERCENT] = ACTIONS(13), - [sym__heading_begin] = ACTIONS(442), - [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(444), - [sym_list_marker_dash] = ACTIONS(25), - [sym_list_marker_star] = ACTIONS(27), - [sym_list_marker_plus] = ACTIONS(29), - [sym__list_marker_task_begin] = ACTIONS(31), - [sym_list_marker_definition] = ACTIONS(33), - [sym_list_marker_decimal_period] = ACTIONS(35), - [sym_list_marker_lower_alpha_period] = ACTIONS(37), - [sym_list_marker_upper_alpha_period] = ACTIONS(39), - [sym_list_marker_lower_roman_period] = ACTIONS(41), - [sym_list_marker_upper_roman_period] = ACTIONS(43), - [sym_list_marker_decimal_paren] = ACTIONS(45), - [sym_list_marker_lower_alpha_paren] = ACTIONS(47), - [sym_list_marker_upper_alpha_paren] = ACTIONS(49), - [sym_list_marker_lower_roman_paren] = ACTIONS(51), - [sym_list_marker_upper_roman_paren] = ACTIONS(53), - [sym_list_marker_decimal_parens] = ACTIONS(55), - [sym_list_marker_lower_alpha_parens] = ACTIONS(57), - [sym_list_marker_upper_alpha_parens] = ACTIONS(59), - [sym_list_marker_lower_roman_parens] = ACTIONS(61), - [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(446), - [sym__block_quote_continuation] = ACTIONS(67), - [sym__thematic_break_dash] = ACTIONS(448), - [sym__thematic_break_star] = ACTIONS(448), + [sym__block_element] = STATE(1116), + [sym_heading] = STATE(1116), + [sym_list] = STATE(1116), + [sym__list_dash] = STATE(974), + [sym__list_item_dash] = STATE(687), + [sym__list_plus] = STATE(974), + [sym__list_item_plus] = STATE(691), + [sym__list_star] = STATE(974), + [sym__list_item_star] = STATE(673), + [sym__list_task] = STATE(974), + [sym__list_item_task] = STATE(680), + [sym_list_marker_task] = STATE(48), + [sym__list_definition] = STATE(974), + [sym__list_item_definition] = STATE(804), + [sym__list_decimal_period] = STATE(974), + [sym__list_item_decimal_period] = STATE(837), + [sym__list_decimal_paren] = STATE(974), + [sym__list_item_decimal_paren] = STATE(703), + [sym__list_decimal_parens] = STATE(974), + [sym__list_item_decimal_parens] = STATE(715), + [sym__list_lower_alpha_period] = STATE(974), + [sym__list_item_lower_alpha_period] = STATE(739), + [sym__list_lower_alpha_paren] = STATE(974), + [sym__list_item_lower_alpha_paren] = STATE(754), + [sym__list_lower_alpha_parens] = STATE(974), + [sym__list_item_lower_alpha_parens] = STATE(755), + [sym__list_upper_alpha_period] = STATE(974), + [sym__list_item_upper_alpha_period] = STATE(758), + [sym__list_upper_alpha_paren] = STATE(974), + [sym__list_item_upper_alpha_paren] = STATE(759), + [sym__list_upper_alpha_parens] = STATE(974), + [sym__list_item_upper_alpha_parens] = STATE(766), + [sym__list_lower_roman_period] = STATE(974), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(974), + [sym__list_item_lower_roman_paren] = STATE(770), + [sym__list_lower_roman_parens] = STATE(974), + [sym__list_item_lower_roman_parens] = STATE(773), + [sym__list_upper_roman_period] = STATE(974), + [sym__list_item_upper_roman_period] = STATE(775), + [sym__list_upper_roman_paren] = STATE(974), + [sym__list_item_upper_roman_paren] = STATE(791), + [sym__list_upper_roman_parens] = STATE(974), + [sym__list_item_upper_roman_parens] = STATE(793), + [sym_table] = STATE(1116), + [sym__table_row] = STATE(248), + [sym_table_header] = STATE(248), + [sym_table_separator] = STATE(248), + [sym_table_row] = STATE(248), + [sym_footnote] = STATE(1116), + [sym_footnote_marker_begin] = STATE(1141), + [sym_div] = STATE(1116), + [sym__div_marker_begin] = STATE(1023), + [sym_code_block] = STATE(1116), + [sym_raw_block] = STATE(1116), + [sym_thematic_break] = STATE(1116), + [sym_block_quote] = STATE(1116), + [sym__block_quote_prefix] = STATE(222), + [sym_link_reference_definition] = STATE(1116), + [sym_block_attribute] = STATE(1116), + [sym__paragraph] = STATE(1116), + [sym__paragraph_content] = STATE(738), + [sym__paragraph_inline_content] = STATE(799), + [sym__inline] = STATE(629), + [sym__symbol_fallback] = STATE(285), + [aux_sym__list_dash_repeat1] = STATE(354), + [aux_sym__list_plus_repeat1] = STATE(355), + [aux_sym__list_star_repeat1] = STATE(356), + [aux_sym__list_task_repeat1] = STATE(335), + [aux_sym__list_definition_repeat1] = STATE(479), + [aux_sym__list_decimal_period_repeat1] = STATE(480), + [aux_sym__list_decimal_paren_repeat1] = STATE(481), + [aux_sym__list_decimal_parens_repeat1] = STATE(482), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(483), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(484), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(485), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(486), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(487), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(488), + [aux_sym__list_lower_roman_period_repeat1] = STATE(489), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(490), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(491), + [aux_sym__list_upper_roman_period_repeat1] = STATE(492), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(493), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(494), + [aux_sym_table_repeat1] = STATE(248), + [aux_sym__block_quote_prefix_repeat1] = STATE(235), + [aux_sym__inline_repeat1] = STATE(285), + [anon_sym_LBRACK] = ACTIONS(458), + [anon_sym_LBRACK_CARET] = ACTIONS(458), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_DOT] = ACTIONS(458), + [aux_sym_identifier_token1] = ACTIONS(458), + [aux_sym__inline_token1] = ACTIONS(458), + [anon_sym_LBRACE_DASH] = ACTIONS(458), + [anon_sym_POUND] = ACTIONS(458), + [anon_sym_PERCENT] = ACTIONS(458), + [sym__newline] = ACTIONS(490), + [sym__heading_begin] = ACTIONS(370), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(372), + [sym_list_marker_dash] = ACTIONS(460), + [sym_list_marker_star] = ACTIONS(460), + [sym_list_marker_plus] = ACTIONS(460), + [sym__list_marker_task_begin] = ACTIONS(460), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(374), + [sym__block_quote_continuation] = ACTIONS(460), + [sym__thematic_break_dash] = ACTIONS(378), + [sym__thematic_break_star] = ACTIONS(378), + [sym__table_header_begin] = ACTIONS(460), + [sym__table_separator_begin] = ACTIONS(460), + [sym__table_row_begin] = ACTIONS(460), }, [63] = { - [sym__block_element] = STATE(449), - [sym_heading] = STATE(449), - [sym_list] = STATE(449), - [sym__list_dash] = STATE(853), - [sym__list_item_dash] = STATE(636), - [sym__list_plus] = STATE(853), - [sym__list_item_plus] = STATE(637), - [sym__list_star] = STATE(853), - [sym__list_item_star] = STATE(671), - [sym__list_task] = STATE(853), - [sym__list_item_task] = STATE(691), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(853), - [sym__list_item_definition] = STATE(896), - [sym__list_decimal_period] = STATE(853), - [sym__list_item_decimal_period] = STATE(841), - [sym__list_decimal_paren] = STATE(853), - [sym__list_item_decimal_paren] = STATE(796), - [sym__list_decimal_parens] = STATE(853), - [sym__list_item_decimal_parens] = STATE(716), - [sym__list_lower_alpha_period] = STATE(853), - [sym__list_item_lower_alpha_period] = STATE(722), - [sym__list_lower_alpha_paren] = STATE(853), - [sym__list_item_lower_alpha_paren] = STATE(801), - [sym__list_lower_alpha_parens] = STATE(853), - [sym__list_item_lower_alpha_parens] = STATE(813), - [sym__list_upper_alpha_period] = STATE(853), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(853), - [sym__list_item_upper_alpha_paren] = STATE(706), - [sym__list_upper_alpha_parens] = STATE(853), - [sym__list_item_upper_alpha_parens] = STATE(707), - [sym__list_lower_roman_period] = STATE(853), - [sym__list_item_lower_roman_period] = STATE(725), - [sym__list_lower_roman_paren] = STATE(853), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(853), - [sym__list_item_lower_roman_parens] = STATE(736), - [sym__list_upper_roman_period] = STATE(853), - [sym__list_item_upper_roman_period] = STATE(742), - [sym__list_upper_roman_paren] = STATE(853), - [sym__list_item_upper_roman_paren] = STATE(743), - [sym__list_upper_roman_parens] = STATE(853), - [sym__list_item_upper_roman_parens] = STATE(762), - [sym_table] = STATE(449), - [sym__table_content] = STATE(311), - [sym_table_separator] = STATE(311), - [sym_table_row] = STATE(347), - [sym_footnote] = STATE(449), - [sym_footnote_marker_begin] = STATE(1178), - [sym_div] = STATE(449), - [sym__div_marker_begin] = STATE(1050), - [sym_code_block] = STATE(449), - [sym_raw_block] = STATE(449), - [sym_thematic_break] = STATE(449), - [sym_block_quote] = STATE(449), - [sym__block_quote_content] = STATE(997), - [sym__block_quote_prefix] = STATE(232), - [sym_link_reference_definition] = STATE(449), - [sym_block_attribute] = STATE(449), - [sym__paragraph] = STATE(449), - [sym__paragraph_content] = STATE(741), - [sym__paragraph_inline_content] = STATE(775), - [sym__inline] = STATE(616), - [sym__symbol_fallback] = STATE(297), - [aux_sym__list_dash_repeat1] = STATE(370), - [aux_sym__list_plus_repeat1] = STATE(354), - [aux_sym__list_star_repeat1] = STATE(360), - [aux_sym__list_task_repeat1] = STATE(340), - [aux_sym__list_definition_repeat1] = STATE(499), - [aux_sym__list_decimal_period_repeat1] = STATE(500), - [aux_sym__list_decimal_paren_repeat1] = STATE(501), - [aux_sym__list_decimal_parens_repeat1] = STATE(502), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(503), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(504), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(505), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(506), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(507), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(508), - [aux_sym__list_lower_roman_period_repeat1] = STATE(509), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(510), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(511), - [aux_sym__list_upper_roman_period_repeat1] = STATE(512), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(513), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(514), - [aux_sym_table_repeat1] = STATE(311), - [aux_sym__block_quote_prefix_repeat1] = STATE(253), - [aux_sym__inline_repeat1] = STATE(297), - [anon_sym_LBRACK] = ACTIONS(436), - [anon_sym_PIPE] = ACTIONS(438), - [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(440), - [anon_sym_DOT] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(13), - [aux_sym__inline_token1] = ACTIONS(13), - [anon_sym_LBRACE_DASH] = ACTIONS(13), - [anon_sym_POUND] = ACTIONS(13), - [anon_sym_PERCENT] = ACTIONS(13), - [sym__heading_begin] = ACTIONS(442), - [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(444), - [sym_list_marker_dash] = ACTIONS(25), - [sym_list_marker_star] = ACTIONS(27), - [sym_list_marker_plus] = ACTIONS(29), - [sym__list_marker_task_begin] = ACTIONS(31), - [sym_list_marker_definition] = ACTIONS(33), - [sym_list_marker_decimal_period] = ACTIONS(35), - [sym_list_marker_lower_alpha_period] = ACTIONS(37), - [sym_list_marker_upper_alpha_period] = ACTIONS(39), - [sym_list_marker_lower_roman_period] = ACTIONS(41), - [sym_list_marker_upper_roman_period] = ACTIONS(43), - [sym_list_marker_decimal_paren] = ACTIONS(45), - [sym_list_marker_lower_alpha_paren] = ACTIONS(47), - [sym_list_marker_upper_alpha_paren] = ACTIONS(49), - [sym_list_marker_lower_roman_paren] = ACTIONS(51), - [sym_list_marker_upper_roman_paren] = ACTIONS(53), - [sym_list_marker_decimal_parens] = ACTIONS(55), - [sym_list_marker_lower_alpha_parens] = ACTIONS(57), - [sym_list_marker_upper_alpha_parens] = ACTIONS(59), - [sym_list_marker_lower_roman_parens] = ACTIONS(61), - [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(446), - [sym__block_quote_continuation] = ACTIONS(67), - [sym__thematic_break_dash] = ACTIONS(448), - [sym__thematic_break_star] = ACTIONS(448), + [sym__block_element] = STATE(452), + [sym_heading] = STATE(452), + [sym_list] = STATE(452), + [sym__list_dash] = STATE(834), + [sym__list_item_dash] = STATE(687), + [sym__list_plus] = STATE(834), + [sym__list_item_plus] = STATE(691), + [sym__list_star] = STATE(834), + [sym__list_item_star] = STATE(673), + [sym__list_task] = STATE(834), + [sym__list_item_task] = STATE(680), + [sym_list_marker_task] = STATE(48), + [sym__list_definition] = STATE(834), + [sym__list_item_definition] = STATE(804), + [sym__list_decimal_period] = STATE(834), + [sym__list_item_decimal_period] = STATE(837), + [sym__list_decimal_paren] = STATE(834), + [sym__list_item_decimal_paren] = STATE(703), + [sym__list_decimal_parens] = STATE(834), + [sym__list_item_decimal_parens] = STATE(715), + [sym__list_lower_alpha_period] = STATE(834), + [sym__list_item_lower_alpha_period] = STATE(739), + [sym__list_lower_alpha_paren] = STATE(834), + [sym__list_item_lower_alpha_paren] = STATE(754), + [sym__list_lower_alpha_parens] = STATE(834), + [sym__list_item_lower_alpha_parens] = STATE(755), + [sym__list_upper_alpha_period] = STATE(834), + [sym__list_item_upper_alpha_period] = STATE(758), + [sym__list_upper_alpha_paren] = STATE(834), + [sym__list_item_upper_alpha_paren] = STATE(759), + [sym__list_upper_alpha_parens] = STATE(834), + [sym__list_item_upper_alpha_parens] = STATE(766), + [sym__list_lower_roman_period] = STATE(834), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(834), + [sym__list_item_lower_roman_paren] = STATE(770), + [sym__list_lower_roman_parens] = STATE(834), + [sym__list_item_lower_roman_parens] = STATE(773), + [sym__list_upper_roman_period] = STATE(834), + [sym__list_item_upper_roman_period] = STATE(775), + [sym__list_upper_roman_paren] = STATE(834), + [sym__list_item_upper_roman_paren] = STATE(791), + [sym__list_upper_roman_parens] = STATE(834), + [sym__list_item_upper_roman_parens] = STATE(793), + [sym_table] = STATE(452), + [sym__table_row] = STATE(249), + [sym_table_header] = STATE(249), + [sym_table_separator] = STATE(249), + [sym_table_row] = STATE(249), + [sym_footnote] = STATE(452), + [sym_footnote_marker_begin] = STATE(1143), + [sym_div] = STATE(452), + [sym__div_marker_begin] = STATE(1042), + [sym_code_block] = STATE(452), + [sym_raw_block] = STATE(452), + [sym_thematic_break] = STATE(452), + [sym_block_quote] = STATE(452), + [sym__block_quote_content] = STATE(1118), + [sym__block_quote_prefix] = STATE(221), + [sym_link_reference_definition] = STATE(452), + [sym_block_attribute] = STATE(452), + [sym__paragraph] = STATE(452), + [sym__paragraph_content] = STATE(772), + [sym__paragraph_inline_content] = STATE(799), + [sym__inline] = STATE(629), + [sym__symbol_fallback] = STATE(285), + [aux_sym__list_dash_repeat1] = STATE(373), + [aux_sym__list_plus_repeat1] = STATE(374), + [aux_sym__list_star_repeat1] = STATE(375), + [aux_sym__list_task_repeat1] = STATE(325), + [aux_sym__list_definition_repeat1] = STATE(496), + [aux_sym__list_decimal_period_repeat1] = STATE(497), + [aux_sym__list_decimal_paren_repeat1] = STATE(498), + [aux_sym__list_decimal_parens_repeat1] = STATE(499), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(500), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(501), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(502), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(503), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(504), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(505), + [aux_sym__list_lower_roman_period_repeat1] = STATE(506), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(507), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(508), + [aux_sym__list_upper_roman_period_repeat1] = STATE(509), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(510), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(511), + [aux_sym_table_repeat1] = STATE(249), + [aux_sym__block_quote_prefix_repeat1] = STATE(235), + [aux_sym__inline_repeat1] = STATE(285), + [anon_sym_LBRACK] = ACTIONS(470), + [anon_sym_LBRACK_CARET] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(472), + [anon_sym_DOT] = ACTIONS(11), + [aux_sym_identifier_token1] = ACTIONS(11), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_PERCENT] = ACTIONS(11), + [sym__heading_begin] = ACTIONS(474), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(476), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(478), + [sym__block_quote_continuation] = ACTIONS(65), + [sym__thematic_break_dash] = ACTIONS(480), + [sym__thematic_break_star] = ACTIONS(480), + [sym__table_header_begin] = ACTIONS(482), + [sym__table_separator_begin] = ACTIONS(484), + [sym__table_row_begin] = ACTIONS(486), }, [64] = { - [sym__block_element] = STATE(449), - [sym_heading] = STATE(449), - [sym_list] = STATE(449), - [sym__list_dash] = STATE(853), - [sym__list_item_dash] = STATE(636), - [sym__list_plus] = STATE(853), - [sym__list_item_plus] = STATE(637), - [sym__list_star] = STATE(853), - [sym__list_item_star] = STATE(671), - [sym__list_task] = STATE(853), - [sym__list_item_task] = STATE(691), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(853), - [sym__list_item_definition] = STATE(896), - [sym__list_decimal_period] = STATE(853), - [sym__list_item_decimal_period] = STATE(841), - [sym__list_decimal_paren] = STATE(853), - [sym__list_item_decimal_paren] = STATE(796), - [sym__list_decimal_parens] = STATE(853), - [sym__list_item_decimal_parens] = STATE(716), - [sym__list_lower_alpha_period] = STATE(853), - [sym__list_item_lower_alpha_period] = STATE(722), - [sym__list_lower_alpha_paren] = STATE(853), - [sym__list_item_lower_alpha_paren] = STATE(801), - [sym__list_lower_alpha_parens] = STATE(853), - [sym__list_item_lower_alpha_parens] = STATE(813), - [sym__list_upper_alpha_period] = STATE(853), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(853), - [sym__list_item_upper_alpha_paren] = STATE(706), - [sym__list_upper_alpha_parens] = STATE(853), - [sym__list_item_upper_alpha_parens] = STATE(707), - [sym__list_lower_roman_period] = STATE(853), - [sym__list_item_lower_roman_period] = STATE(725), - [sym__list_lower_roman_paren] = STATE(853), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(853), - [sym__list_item_lower_roman_parens] = STATE(736), - [sym__list_upper_roman_period] = STATE(853), - [sym__list_item_upper_roman_period] = STATE(742), - [sym__list_upper_roman_paren] = STATE(853), - [sym__list_item_upper_roman_paren] = STATE(743), - [sym__list_upper_roman_parens] = STATE(853), - [sym__list_item_upper_roman_parens] = STATE(762), - [sym_table] = STATE(449), - [sym__table_content] = STATE(311), - [sym_table_separator] = STATE(311), - [sym_table_row] = STATE(347), - [sym_footnote] = STATE(449), - [sym_footnote_marker_begin] = STATE(1178), - [sym_div] = STATE(449), - [sym__div_marker_begin] = STATE(1050), - [sym_code_block] = STATE(449), - [sym_raw_block] = STATE(449), - [sym_thematic_break] = STATE(449), - [sym_block_quote] = STATE(449), - [sym__block_quote_content] = STATE(1112), - [sym__block_quote_prefix] = STATE(232), - [sym_link_reference_definition] = STATE(449), - [sym_block_attribute] = STATE(449), - [sym__paragraph] = STATE(449), - [sym__paragraph_content] = STATE(741), - [sym__paragraph_inline_content] = STATE(775), - [sym__inline] = STATE(616), - [sym__symbol_fallback] = STATE(297), - [aux_sym__list_dash_repeat1] = STATE(370), - [aux_sym__list_plus_repeat1] = STATE(354), - [aux_sym__list_star_repeat1] = STATE(360), - [aux_sym__list_task_repeat1] = STATE(340), - [aux_sym__list_definition_repeat1] = STATE(499), - [aux_sym__list_decimal_period_repeat1] = STATE(500), - [aux_sym__list_decimal_paren_repeat1] = STATE(501), - [aux_sym__list_decimal_parens_repeat1] = STATE(502), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(503), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(504), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(505), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(506), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(507), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(508), - [aux_sym__list_lower_roman_period_repeat1] = STATE(509), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(510), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(511), - [aux_sym__list_upper_roman_period_repeat1] = STATE(512), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(513), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(514), - [aux_sym_table_repeat1] = STATE(311), - [aux_sym__block_quote_prefix_repeat1] = STATE(253), - [aux_sym__inline_repeat1] = STATE(297), - [anon_sym_LBRACK] = ACTIONS(436), - [anon_sym_PIPE] = ACTIONS(438), - [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(440), - [anon_sym_DOT] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(13), - [aux_sym__inline_token1] = ACTIONS(13), - [anon_sym_LBRACE_DASH] = ACTIONS(13), - [anon_sym_POUND] = ACTIONS(13), - [anon_sym_PERCENT] = ACTIONS(13), - [sym__heading_begin] = ACTIONS(442), - [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(444), - [sym_list_marker_dash] = ACTIONS(25), - [sym_list_marker_star] = ACTIONS(27), - [sym_list_marker_plus] = ACTIONS(29), - [sym__list_marker_task_begin] = ACTIONS(31), - [sym_list_marker_definition] = ACTIONS(33), - [sym_list_marker_decimal_period] = ACTIONS(35), - [sym_list_marker_lower_alpha_period] = ACTIONS(37), - [sym_list_marker_upper_alpha_period] = ACTIONS(39), - [sym_list_marker_lower_roman_period] = ACTIONS(41), - [sym_list_marker_upper_roman_period] = ACTIONS(43), - [sym_list_marker_decimal_paren] = ACTIONS(45), - [sym_list_marker_lower_alpha_paren] = ACTIONS(47), - [sym_list_marker_upper_alpha_paren] = ACTIONS(49), - [sym_list_marker_lower_roman_paren] = ACTIONS(51), - [sym_list_marker_upper_roman_paren] = ACTIONS(53), - [sym_list_marker_decimal_parens] = ACTIONS(55), - [sym_list_marker_lower_alpha_parens] = ACTIONS(57), - [sym_list_marker_upper_alpha_parens] = ACTIONS(59), - [sym_list_marker_lower_roman_parens] = ACTIONS(61), - [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(446), - [sym__block_quote_continuation] = ACTIONS(67), - [sym__thematic_break_dash] = ACTIONS(448), - [sym__thematic_break_star] = ACTIONS(448), + [sym__block_element] = STATE(452), + [sym_heading] = STATE(452), + [sym_list] = STATE(452), + [sym__list_dash] = STATE(834), + [sym__list_item_dash] = STATE(687), + [sym__list_plus] = STATE(834), + [sym__list_item_plus] = STATE(691), + [sym__list_star] = STATE(834), + [sym__list_item_star] = STATE(673), + [sym__list_task] = STATE(834), + [sym__list_item_task] = STATE(680), + [sym_list_marker_task] = STATE(48), + [sym__list_definition] = STATE(834), + [sym__list_item_definition] = STATE(804), + [sym__list_decimal_period] = STATE(834), + [sym__list_item_decimal_period] = STATE(837), + [sym__list_decimal_paren] = STATE(834), + [sym__list_item_decimal_paren] = STATE(703), + [sym__list_decimal_parens] = STATE(834), + [sym__list_item_decimal_parens] = STATE(715), + [sym__list_lower_alpha_period] = STATE(834), + [sym__list_item_lower_alpha_period] = STATE(739), + [sym__list_lower_alpha_paren] = STATE(834), + [sym__list_item_lower_alpha_paren] = STATE(754), + [sym__list_lower_alpha_parens] = STATE(834), + [sym__list_item_lower_alpha_parens] = STATE(755), + [sym__list_upper_alpha_period] = STATE(834), + [sym__list_item_upper_alpha_period] = STATE(758), + [sym__list_upper_alpha_paren] = STATE(834), + [sym__list_item_upper_alpha_paren] = STATE(759), + [sym__list_upper_alpha_parens] = STATE(834), + [sym__list_item_upper_alpha_parens] = STATE(766), + [sym__list_lower_roman_period] = STATE(834), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(834), + [sym__list_item_lower_roman_paren] = STATE(770), + [sym__list_lower_roman_parens] = STATE(834), + [sym__list_item_lower_roman_parens] = STATE(773), + [sym__list_upper_roman_period] = STATE(834), + [sym__list_item_upper_roman_period] = STATE(775), + [sym__list_upper_roman_paren] = STATE(834), + [sym__list_item_upper_roman_paren] = STATE(791), + [sym__list_upper_roman_parens] = STATE(834), + [sym__list_item_upper_roman_parens] = STATE(793), + [sym_table] = STATE(452), + [sym__table_row] = STATE(249), + [sym_table_header] = STATE(249), + [sym_table_separator] = STATE(249), + [sym_table_row] = STATE(249), + [sym_footnote] = STATE(452), + [sym_footnote_marker_begin] = STATE(1143), + [sym_div] = STATE(452), + [sym__div_marker_begin] = STATE(1042), + [sym_code_block] = STATE(452), + [sym_raw_block] = STATE(452), + [sym_thematic_break] = STATE(452), + [sym_block_quote] = STATE(452), + [sym__block_quote_content] = STATE(963), + [sym__block_quote_prefix] = STATE(221), + [sym_link_reference_definition] = STATE(452), + [sym_block_attribute] = STATE(452), + [sym__paragraph] = STATE(452), + [sym__paragraph_content] = STATE(772), + [sym__paragraph_inline_content] = STATE(799), + [sym__inline] = STATE(629), + [sym__symbol_fallback] = STATE(285), + [aux_sym__list_dash_repeat1] = STATE(373), + [aux_sym__list_plus_repeat1] = STATE(374), + [aux_sym__list_star_repeat1] = STATE(375), + [aux_sym__list_task_repeat1] = STATE(325), + [aux_sym__list_definition_repeat1] = STATE(496), + [aux_sym__list_decimal_period_repeat1] = STATE(497), + [aux_sym__list_decimal_paren_repeat1] = STATE(498), + [aux_sym__list_decimal_parens_repeat1] = STATE(499), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(500), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(501), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(502), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(503), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(504), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(505), + [aux_sym__list_lower_roman_period_repeat1] = STATE(506), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(507), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(508), + [aux_sym__list_upper_roman_period_repeat1] = STATE(509), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(510), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(511), + [aux_sym_table_repeat1] = STATE(249), + [aux_sym__block_quote_prefix_repeat1] = STATE(235), + [aux_sym__inline_repeat1] = STATE(285), + [anon_sym_LBRACK] = ACTIONS(470), + [anon_sym_LBRACK_CARET] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(472), + [anon_sym_DOT] = ACTIONS(11), + [aux_sym_identifier_token1] = ACTIONS(11), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_PERCENT] = ACTIONS(11), + [sym__heading_begin] = ACTIONS(474), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(476), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(478), + [sym__block_quote_continuation] = ACTIONS(65), + [sym__thematic_break_dash] = ACTIONS(480), + [sym__thematic_break_star] = ACTIONS(480), + [sym__table_header_begin] = ACTIONS(482), + [sym__table_separator_begin] = ACTIONS(484), + [sym__table_row_begin] = ACTIONS(486), }, [65] = { - [sym__block_element] = STATE(737), - [sym_list] = STATE(737), - [sym__list_dash] = STATE(853), - [sym__list_item_dash] = STATE(636), - [sym__list_plus] = STATE(853), - [sym__list_item_plus] = STATE(637), - [sym__list_star] = STATE(853), - [sym__list_item_star] = STATE(671), - [sym__list_task] = STATE(853), - [sym__list_item_task] = STATE(691), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(853), - [sym__list_item_definition] = STATE(896), - [sym__list_decimal_period] = STATE(853), - [sym__list_item_decimal_period] = STATE(841), - [sym__list_decimal_paren] = STATE(853), - [sym__list_item_decimal_paren] = STATE(796), - [sym__list_decimal_parens] = STATE(853), - [sym__list_item_decimal_parens] = STATE(716), - [sym__list_lower_alpha_period] = STATE(853), - [sym__list_item_lower_alpha_period] = STATE(722), - [sym__list_lower_alpha_paren] = STATE(853), - [sym__list_item_lower_alpha_paren] = STATE(801), - [sym__list_lower_alpha_parens] = STATE(853), - [sym__list_item_lower_alpha_parens] = STATE(813), - [sym__list_upper_alpha_period] = STATE(853), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(853), - [sym__list_item_upper_alpha_paren] = STATE(706), - [sym__list_upper_alpha_parens] = STATE(853), - [sym__list_item_upper_alpha_parens] = STATE(707), - [sym__list_lower_roman_period] = STATE(853), - [sym__list_item_lower_roman_period] = STATE(725), - [sym__list_lower_roman_paren] = STATE(853), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(853), - [sym__list_item_lower_roman_parens] = STATE(736), - [sym__list_upper_roman_period] = STATE(853), - [sym__list_item_upper_roman_period] = STATE(742), - [sym__list_upper_roman_paren] = STATE(853), - [sym__list_item_upper_roman_paren] = STATE(743), - [sym__list_upper_roman_parens] = STATE(853), - [sym__list_item_upper_roman_parens] = STATE(762), - [sym_table] = STATE(737), - [sym__table_content] = STATE(311), - [sym_table_separator] = STATE(311), - [sym_table_row] = STATE(347), - [sym_footnote] = STATE(737), - [sym_footnote_marker_begin] = STATE(1178), - [sym_div] = STATE(737), - [sym__div_marker_begin] = STATE(1050), - [sym_code_block] = STATE(737), - [sym_raw_block] = STATE(737), - [sym_thematic_break] = STATE(737), - [sym_block_quote] = STATE(737), - [sym__block_quote_prefix] = STATE(232), - [sym_link_reference_definition] = STATE(737), - [sym_block_attribute] = STATE(737), - [sym__paragraph] = STATE(737), - [sym__paragraph_content] = STATE(741), - [sym__paragraph_inline_content] = STATE(775), - [sym__inline] = STATE(616), - [sym__symbol_fallback] = STATE(297), - [aux_sym__list_dash_repeat1] = STATE(370), - [aux_sym__list_plus_repeat1] = STATE(354), - [aux_sym__list_star_repeat1] = STATE(360), - [aux_sym__list_task_repeat1] = STATE(340), - [aux_sym__list_definition_repeat1] = STATE(499), - [aux_sym__list_decimal_period_repeat1] = STATE(500), - [aux_sym__list_decimal_paren_repeat1] = STATE(501), - [aux_sym__list_decimal_parens_repeat1] = STATE(502), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(503), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(504), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(505), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(506), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(507), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(508), - [aux_sym__list_lower_roman_period_repeat1] = STATE(509), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(510), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(511), - [aux_sym__list_upper_roman_period_repeat1] = STATE(512), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(513), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(514), - [aux_sym_table_repeat1] = STATE(311), - [aux_sym__block_quote_prefix_repeat1] = STATE(253), - [aux_sym__inline_repeat1] = STATE(297), - [anon_sym_LBRACK] = ACTIONS(436), - [anon_sym_PIPE] = ACTIONS(438), - [anon_sym_LBRACK_CARET] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(440), - [anon_sym_DOT] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(13), - [aux_sym__inline_token1] = ACTIONS(13), - [anon_sym_LBRACE_DASH] = ACTIONS(13), - [anon_sym_POUND] = ACTIONS(13), - [anon_sym_PERCENT] = ACTIONS(13), - [sym__block_close] = ACTIONS(454), - [sym__div_begin] = ACTIONS(21), - [sym__code_block_begin] = ACTIONS(444), - [sym_list_marker_dash] = ACTIONS(25), - [sym_list_marker_star] = ACTIONS(27), - [sym_list_marker_plus] = ACTIONS(29), - [sym__list_marker_task_begin] = ACTIONS(31), - [sym_list_marker_definition] = ACTIONS(33), - [sym_list_marker_decimal_period] = ACTIONS(35), - [sym_list_marker_lower_alpha_period] = ACTIONS(37), - [sym_list_marker_upper_alpha_period] = ACTIONS(39), - [sym_list_marker_lower_roman_period] = ACTIONS(41), - [sym_list_marker_upper_roman_period] = ACTIONS(43), - [sym_list_marker_decimal_paren] = ACTIONS(45), - [sym_list_marker_lower_alpha_paren] = ACTIONS(47), - [sym_list_marker_upper_alpha_paren] = ACTIONS(49), - [sym_list_marker_lower_roman_paren] = ACTIONS(51), - [sym_list_marker_upper_roman_paren] = ACTIONS(53), - [sym_list_marker_decimal_parens] = ACTIONS(55), - [sym_list_marker_lower_alpha_parens] = ACTIONS(57), - [sym_list_marker_upper_alpha_parens] = ACTIONS(59), - [sym_list_marker_lower_roman_parens] = ACTIONS(61), - [sym_list_marker_upper_roman_parens] = ACTIONS(63), - [sym__block_quote_begin] = ACTIONS(446), - [sym__block_quote_continuation] = ACTIONS(456), - [sym__thematic_break_dash] = ACTIONS(448), - [sym__thematic_break_star] = ACTIONS(448), + [sym__block_element] = STATE(813), + [sym_list] = STATE(813), + [sym__list_dash] = STATE(834), + [sym__list_item_dash] = STATE(687), + [sym__list_plus] = STATE(834), + [sym__list_item_plus] = STATE(691), + [sym__list_star] = STATE(834), + [sym__list_item_star] = STATE(673), + [sym__list_task] = STATE(834), + [sym__list_item_task] = STATE(680), + [sym_list_marker_task] = STATE(48), + [sym__list_definition] = STATE(834), + [sym__list_item_definition] = STATE(804), + [sym__list_decimal_period] = STATE(834), + [sym__list_item_decimal_period] = STATE(837), + [sym__list_decimal_paren] = STATE(834), + [sym__list_item_decimal_paren] = STATE(703), + [sym__list_decimal_parens] = STATE(834), + [sym__list_item_decimal_parens] = STATE(715), + [sym__list_lower_alpha_period] = STATE(834), + [sym__list_item_lower_alpha_period] = STATE(739), + [sym__list_lower_alpha_paren] = STATE(834), + [sym__list_item_lower_alpha_paren] = STATE(754), + [sym__list_lower_alpha_parens] = STATE(834), + [sym__list_item_lower_alpha_parens] = STATE(755), + [sym__list_upper_alpha_period] = STATE(834), + [sym__list_item_upper_alpha_period] = STATE(758), + [sym__list_upper_alpha_paren] = STATE(834), + [sym__list_item_upper_alpha_paren] = STATE(759), + [sym__list_upper_alpha_parens] = STATE(834), + [sym__list_item_upper_alpha_parens] = STATE(766), + [sym__list_lower_roman_period] = STATE(834), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(834), + [sym__list_item_lower_roman_paren] = STATE(770), + [sym__list_lower_roman_parens] = STATE(834), + [sym__list_item_lower_roman_parens] = STATE(773), + [sym__list_upper_roman_period] = STATE(834), + [sym__list_item_upper_roman_period] = STATE(775), + [sym__list_upper_roman_paren] = STATE(834), + [sym__list_item_upper_roman_paren] = STATE(791), + [sym__list_upper_roman_parens] = STATE(834), + [sym__list_item_upper_roman_parens] = STATE(793), + [sym_table] = STATE(813), + [sym__table_row] = STATE(249), + [sym_table_header] = STATE(249), + [sym_table_separator] = STATE(249), + [sym_table_row] = STATE(249), + [sym_footnote] = STATE(813), + [sym_footnote_marker_begin] = STATE(1143), + [sym_div] = STATE(813), + [sym__div_marker_begin] = STATE(1042), + [sym_code_block] = STATE(813), + [sym_raw_block] = STATE(813), + [sym_thematic_break] = STATE(813), + [sym_block_quote] = STATE(813), + [sym__block_quote_prefix] = STATE(221), + [sym_link_reference_definition] = STATE(813), + [sym_block_attribute] = STATE(813), + [sym__paragraph] = STATE(813), + [sym__paragraph_content] = STATE(772), + [sym__paragraph_inline_content] = STATE(799), + [sym__inline] = STATE(629), + [sym__symbol_fallback] = STATE(285), + [aux_sym__list_dash_repeat1] = STATE(373), + [aux_sym__list_plus_repeat1] = STATE(374), + [aux_sym__list_star_repeat1] = STATE(375), + [aux_sym__list_task_repeat1] = STATE(325), + [aux_sym__list_definition_repeat1] = STATE(496), + [aux_sym__list_decimal_period_repeat1] = STATE(497), + [aux_sym__list_decimal_paren_repeat1] = STATE(498), + [aux_sym__list_decimal_parens_repeat1] = STATE(499), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(500), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(501), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(502), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(503), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(504), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(505), + [aux_sym__list_lower_roman_period_repeat1] = STATE(506), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(507), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(508), + [aux_sym__list_upper_roman_period_repeat1] = STATE(509), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(510), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(511), + [aux_sym_table_repeat1] = STATE(249), + [aux_sym__block_quote_prefix_repeat1] = STATE(235), + [aux_sym__inline_repeat1] = STATE(285), + [anon_sym_LBRACK] = ACTIONS(470), + [anon_sym_LBRACK_CARET] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(472), + [anon_sym_DOT] = ACTIONS(11), + [aux_sym_identifier_token1] = ACTIONS(11), + [aux_sym__inline_token1] = ACTIONS(11), + [anon_sym_LBRACE_DASH] = ACTIONS(11), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_PERCENT] = ACTIONS(11), + [sym__block_close] = ACTIONS(492), + [sym__div_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(476), + [sym_list_marker_dash] = ACTIONS(23), + [sym_list_marker_star] = ACTIONS(25), + [sym_list_marker_plus] = ACTIONS(27), + [sym__list_marker_task_begin] = ACTIONS(29), + [sym_list_marker_definition] = ACTIONS(31), + [sym_list_marker_decimal_period] = ACTIONS(33), + [sym_list_marker_lower_alpha_period] = ACTIONS(35), + [sym_list_marker_upper_alpha_period] = ACTIONS(37), + [sym_list_marker_lower_roman_period] = ACTIONS(39), + [sym_list_marker_upper_roman_period] = ACTIONS(41), + [sym_list_marker_decimal_paren] = ACTIONS(43), + [sym_list_marker_lower_alpha_paren] = ACTIONS(45), + [sym_list_marker_upper_alpha_paren] = ACTIONS(47), + [sym_list_marker_lower_roman_paren] = ACTIONS(49), + [sym_list_marker_upper_roman_paren] = ACTIONS(51), + [sym_list_marker_decimal_parens] = ACTIONS(53), + [sym_list_marker_lower_alpha_parens] = ACTIONS(55), + [sym_list_marker_upper_alpha_parens] = ACTIONS(57), + [sym_list_marker_lower_roman_parens] = ACTIONS(59), + [sym_list_marker_upper_roman_parens] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(478), + [sym__block_quote_continuation] = ACTIONS(494), + [sym__thematic_break_dash] = ACTIONS(480), + [sym__thematic_break_star] = ACTIONS(480), + [sym__table_header_begin] = ACTIONS(482), + [sym__table_separator_begin] = ACTIONS(484), + [sym__table_row_begin] = ACTIONS(486), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 11, - ACTIONS(463), 1, - anon_sym_PIPE, - ACTIONS(465), 1, + [0] = 12, + ACTIONS(91), 1, + sym__table_header_begin, + ACTIONS(93), 1, + sym__table_separator_begin, + ACTIONS(95), 1, + sym__table_row_begin, + ACTIONS(501), 1, sym__newline, - ACTIONS(467), 1, + ACTIONS(503), 1, sym__block_quote_continuation, - ACTIONS(469), 1, + ACTIONS(505), 1, sym__table_caption_begin, - STATE(71), 1, - sym_table_row, - STATE(193), 1, + STATE(167), 1, sym_table_caption, - STATE(583), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(1179), 1, + STATE(435), 1, sym__block_quote_prefix, - STATE(68), 3, - sym__table_content, + STATE(454), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(69), 5, + sym__table_row, + sym_table_header, sym_table_separator, + sym_table_row, aux_sym_table_repeat1, - ACTIONS(461), 9, + ACTIONS(497), 9, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, @@ -13220,7 +13322,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(459), 27, + ACTIONS(499), 27, + sym__block_close, sym__heading_begin, sym__div_begin, sym__code_block_begin, @@ -13247,29 +13350,32 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_begin, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [70] = 11, - ACTIONS(467), 1, + [75] = 12, + ACTIONS(69), 1, + sym__table_header_begin, + ACTIONS(71), 1, + sym__table_separator_begin, + ACTIONS(73), 1, + sym__table_row_begin, + ACTIONS(503), 1, sym__block_quote_continuation, - ACTIONS(471), 1, - anon_sym_PIPE, - ACTIONS(473), 1, + ACTIONS(507), 1, sym__newline, - ACTIONS(475), 1, + ACTIONS(509), 1, sym__table_caption_begin, - STATE(70), 1, - sym_table_row, - STATE(169), 1, + STATE(189), 1, sym_table_caption, - STATE(583), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(1149), 1, + STATE(436), 1, sym__block_quote_prefix, - STATE(69), 3, - sym__table_content, + STATE(454), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(68), 5, + sym__table_row, + sym_table_header, sym_table_separator, + sym_table_row, aux_sym_table_repeat1, - ACTIONS(461), 9, + ACTIONS(497), 9, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, @@ -13279,8 +13385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(459), 27, - sym__block_close, + ACTIONS(499), 27, sym__heading_begin, sym__div_begin, sym__code_block_begin, @@ -13307,22 +13412,27 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_begin, sym__thematic_break_dash, sym__thematic_break_star, - [140] = 8, - ACTIONS(481), 1, - anon_sym_PIPE, - ACTIONS(484), 1, + ts_builtin_sym_end, + [150] = 9, + ACTIONS(515), 1, sym__block_quote_continuation, - STATE(71), 1, - sym_table_row, - STATE(583), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(1179), 1, + ACTIONS(518), 1, + sym__table_header_begin, + ACTIONS(521), 1, + sym__table_separator_begin, + ACTIONS(524), 1, + sym__table_row_begin, + STATE(436), 1, sym__block_quote_prefix, - STATE(68), 3, - sym__table_content, + STATE(454), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(68), 5, + sym__table_row, + sym_table_header, sym_table_separator, + sym_table_row, aux_sym_table_repeat1, - ACTIONS(479), 9, + ACTIONS(513), 9, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, @@ -13332,7 +13442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(477), 29, + ACTIONS(511), 29, sym__newline, sym__heading_begin, sym__div_begin, @@ -13362,22 +13472,26 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, sym__table_caption_begin, ts_builtin_sym_end, - [203] = 8, - ACTIONS(484), 1, + [218] = 9, + ACTIONS(515), 1, sym__block_quote_continuation, - ACTIONS(487), 1, - anon_sym_PIPE, - STATE(70), 1, - sym_table_row, - STATE(583), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(1149), 1, + ACTIONS(527), 1, + sym__table_header_begin, + ACTIONS(530), 1, + sym__table_separator_begin, + ACTIONS(533), 1, + sym__table_row_begin, + STATE(435), 1, sym__block_quote_prefix, - STATE(69), 3, - sym__table_content, + STATE(454), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(69), 5, + sym__table_row, + sym_table_header, sym_table_separator, + sym_table_row, aux_sym_table_repeat1, - ACTIONS(479), 9, + ACTIONS(513), 9, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, @@ -13387,7 +13501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(477), 29, + ACTIONS(511), 29, sym__block_close, sym__newline, sym__heading_begin, @@ -13417,18 +13531,12 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__table_caption_begin, - [266] = 7, - ACTIONS(492), 1, - anon_sym_PIPE, - ACTIONS(497), 1, - sym__block_quote_continuation, - STATE(107), 1, - sym_table_separator, - STATE(583), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(1169), 1, - sym__block_quote_prefix, - ACTIONS(490), 9, + [286] = 4, + ACTIONS(509), 1, + sym__table_caption_begin, + STATE(110), 1, + sym_table_caption, + ACTIONS(538), 9, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, @@ -13438,8 +13546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(495), 29, - sym__block_close, + ACTIONS(536), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -13465,21 +13572,19 @@ static const uint16_t ts_small_parse_table[] = { sym_list_marker_lower_roman_parens, sym_list_marker_upper_roman_parens, sym__block_quote_begin, + sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + ts_builtin_sym_end, + [338] = 4, + ACTIONS(505), 1, sym__table_caption_begin, - [324] = 7, - ACTIONS(497), 1, - sym__block_quote_continuation, - ACTIONS(500), 1, - anon_sym_PIPE, - STATE(96), 1, - sym_table_separator, - STATE(583), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(943), 1, - sym__block_quote_prefix, - ACTIONS(490), 9, + STATE(172), 1, + sym_table_caption, + ACTIONS(538), 9, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, @@ -13489,7 +13594,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(495), 29, + ACTIONS(536), 32, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -13515,18 +13621,15 @@ static const uint16_t ts_small_parse_table[] = { sym_list_marker_lower_roman_parens, sym_list_marker_upper_roman_parens, sym__block_quote_begin, + sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__table_caption_begin, - ts_builtin_sym_end, - [382] = 4, - ACTIONS(469), 1, - sym__table_caption_begin, - STATE(112), 1, - sym_table_caption, - ACTIONS(505), 10, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + [390] = 2, + ACTIONS(542), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -13535,7 +13638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(503), 29, + ACTIONS(540), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -13564,15 +13667,14 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [432] = 4, - ACTIONS(475), 1, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, sym__table_caption_begin, - STATE(174), 1, - sym_table_caption, - ACTIONS(505), 10, + ts_builtin_sym_end, + [437] = 2, + ACTIONS(542), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -13581,7 +13683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(503), 29, + ACTIONS(540), 33, sym__block_close, sym__newline, sym__heading_begin, @@ -13611,12 +13713,13 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [482] = 3, - ACTIONS(511), 1, - sym__code_block_end, - ACTIONS(507), 10, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + sym__table_caption_begin, + [484] = 2, + ACTIONS(544), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -13625,7 +13728,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(509), 29, + ACTIONS(546), 33, sym__block_close, sym__newline, sym__heading_begin, @@ -13655,12 +13758,15 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [529] = 3, - ACTIONS(517), 1, - sym__code_block_end, - ACTIONS(513), 10, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + sym__table_caption_begin, + [531] = 3, + ACTIONS(552), 1, + sym__eof_or_newline, + ACTIONS(548), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -13669,7 +13775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(515), 29, + ACTIONS(550), 32, sym__block_close, sym__newline, sym__heading_begin, @@ -13699,10 +13805,14 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [576] = 2, - ACTIONS(519), 10, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + [580] = 3, + ACTIONS(558), 1, + sym__div_end, + ACTIONS(554), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -13711,7 +13821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(521), 30, + ACTIONS(556), 32, sym__block_close, sym__newline, sym__heading_begin, @@ -13741,11 +13851,14 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__table_caption_begin, - [621] = 2, - ACTIONS(523), 10, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + [629] = 3, + ACTIONS(564), 1, + sym__div_end, + ACTIONS(560), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -13754,7 +13867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(525), 30, + ACTIONS(562), 32, sym__block_close, sym__newline, sym__heading_begin, @@ -13784,13 +13897,14 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__table_caption_begin, - [666] = 3, - ACTIONS(531), 1, - sym__div_end, - ACTIONS(527), 10, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + [678] = 3, + ACTIONS(570), 1, + sym__code_block_end, + ACTIONS(566), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -13799,7 +13913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(529), 29, + ACTIONS(568), 32, sym__block_close, sym__newline, sym__heading_begin, @@ -13829,12 +13943,14 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [713] = 3, - ACTIONS(537), 1, - sym__div_end, - ACTIONS(533), 10, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + [727] = 3, + ACTIONS(576), 1, + sym__code_block_end, + ACTIONS(572), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -13843,7 +13959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(535), 29, + ACTIONS(574), 32, sym__block_close, sym__newline, sym__heading_begin, @@ -13873,12 +13989,14 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [760] = 3, - ACTIONS(543), 1, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + [776] = 3, + ACTIONS(582), 1, sym__code_block_end, - ACTIONS(539), 10, + ACTIONS(578), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -13887,7 +14005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(541), 29, + ACTIONS(580), 32, sym__block_close, sym__newline, sym__heading_begin, @@ -13917,12 +14035,12 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [807] = 3, - ACTIONS(545), 1, - sym__code_block_end, - ACTIONS(539), 10, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + [825] = 2, + ACTIONS(584), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -13931,7 +14049,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(541), 29, + ACTIONS(586), 33, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -13960,13 +14079,13 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [854] = 3, - ACTIONS(551), 1, - sym__code_block_end, - ACTIONS(547), 10, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + sym__table_caption_begin, + [872] = 2, + ACTIONS(588), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -13975,7 +14094,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(549), 29, + ACTIONS(590), 33, sym__block_close, sym__newline, sym__heading_begin, @@ -14005,10 +14124,13 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [901] = 2, - ACTIONS(553), 10, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + sym__table_caption_begin, + [919] = 2, + ACTIONS(592), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -14017,7 +14139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(555), 30, + ACTIONS(594), 33, sym__block_close, sym__newline, sym__heading_begin, @@ -14047,11 +14169,15 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, sym__table_caption_begin, - [946] = 2, - ACTIONS(557), 10, + [966] = 3, + ACTIONS(600), 1, + sym__div_end, + ACTIONS(596), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -14060,7 +14186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(559), 30, + ACTIONS(598), 32, sym__block_close, sym__newline, sym__heading_begin, @@ -14090,13 +14216,14 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__table_caption_begin, - [991] = 3, - ACTIONS(565), 1, - sym__div_end, - ACTIONS(561), 10, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + [1015] = 3, + ACTIONS(606), 1, + sym__code_block_end, + ACTIONS(602), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -14105,7 +14232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(563), 29, + ACTIONS(604), 32, sym__block_close, sym__newline, sym__heading_begin, @@ -14135,12 +14262,14 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [1038] = 3, - ACTIONS(571), 1, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + [1064] = 3, + ACTIONS(612), 1, sym__code_block_end, - ACTIONS(567), 10, + ACTIONS(608), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -14149,7 +14278,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(569), 29, + ACTIONS(610), 32, sym__block_close, sym__newline, sym__heading_begin, @@ -14179,12 +14308,14 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [1085] = 3, - ACTIONS(577), 1, - sym__code_block_end, - ACTIONS(573), 10, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + [1113] = 3, + ACTIONS(618), 1, + sym__eof_or_newline, + ACTIONS(614), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -14193,7 +14324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(575), 29, + ACTIONS(616), 32, sym__block_close, sym__newline, sym__heading_begin, @@ -14223,10 +14354,14 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [1132] = 2, - ACTIONS(579), 10, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + [1162] = 3, + ACTIONS(620), 1, + sym__code_block_end, + ACTIONS(572), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -14235,8 +14370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(581), 30, - sym__block_close, + ACTIONS(574), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -14265,11 +14399,15 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__table_caption_begin, - [1177] = 2, - ACTIONS(583), 10, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + ts_builtin_sym_end, + [1211] = 3, + ACTIONS(626), 1, + sym__div_end, + ACTIONS(624), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -14278,8 +14416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(585), 30, - sym__block_close, + ACTIONS(622), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -14308,13 +14445,13 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__table_caption_begin, - [1222] = 3, - ACTIONS(591), 1, - sym__div_end, - ACTIONS(587), 10, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + ts_builtin_sym_end, + [1260] = 2, + ACTIONS(584), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -14323,8 +14460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(589), 29, - sym__block_close, + ACTIONS(586), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -14353,12 +14489,14 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [1269] = 3, - ACTIONS(597), 1, - sym__eof_or_newline, - ACTIONS(595), 10, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + sym__table_caption_begin, + ts_builtin_sym_end, + [1307] = 2, + ACTIONS(630), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -14367,7 +14505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(593), 29, + ACTIONS(628), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -14396,13 +14534,16 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + sym__table_caption_begin, ts_builtin_sym_end, - [1316] = 3, - ACTIONS(599), 1, + [1354] = 3, + ACTIONS(636), 1, sym__code_block_end, - ACTIONS(547), 10, + ACTIONS(634), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -14411,7 +14552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(549), 29, + ACTIONS(632), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -14440,13 +14581,13 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, ts_builtin_sym_end, - [1363] = 3, - ACTIONS(601), 1, - sym__code_block_end, - ACTIONS(507), 10, + [1403] = 2, + ACTIONS(588), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -14455,7 +14596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(509), 29, + ACTIONS(590), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -14484,13 +14625,14 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + sym__table_caption_begin, ts_builtin_sym_end, - [1410] = 3, - ACTIONS(603), 1, - sym__div_end, - ACTIONS(561), 10, + [1450] = 2, + ACTIONS(592), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -14499,7 +14641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(563), 29, + ACTIONS(594), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -14528,13 +14670,16 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + sym__table_caption_begin, ts_builtin_sym_end, - [1457] = 3, - ACTIONS(609), 1, - sym__eof_or_newline, - ACTIONS(605), 10, + [1497] = 3, + ACTIONS(638), 1, + sym__code_block_end, + ACTIONS(578), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -14543,8 +14688,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(607), 29, - sym__block_close, + ACTIONS(580), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -14573,10 +14717,13 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [1504] = 2, - ACTIONS(613), 10, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + ts_builtin_sym_end, + [1546] = 2, + ACTIONS(642), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -14585,7 +14732,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(611), 30, + ACTIONS(640), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -14614,14 +14761,16 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, sym__table_caption_begin, ts_builtin_sym_end, - [1549] = 3, - ACTIONS(615), 1, - sym__code_block_end, - ACTIONS(567), 10, + [1593] = 3, + ACTIONS(644), 1, + sym__div_end, + ACTIONS(596), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -14630,7 +14779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(569), 29, + ACTIONS(598), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -14659,13 +14808,13 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, ts_builtin_sym_end, - [1596] = 3, - ACTIONS(617), 1, - sym__div_end, - ACTIONS(587), 10, + [1642] = 2, + ACTIONS(630), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -14674,7 +14823,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(589), 29, + ACTIONS(628), 33, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -14703,13 +14853,13 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [1643] = 3, - ACTIONS(619), 1, - sym__code_block_end, - ACTIONS(573), 10, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + sym__table_caption_begin, + [1689] = 2, + ACTIONS(544), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -14718,7 +14868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(575), 29, + ACTIONS(546), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -14747,13 +14897,16 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + sym__table_caption_begin, ts_builtin_sym_end, - [1690] = 3, - ACTIONS(621), 1, - sym__code_block_end, - ACTIONS(513), 10, + [1736] = 3, + ACTIONS(646), 1, + sym__div_end, + ACTIONS(554), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -14762,7 +14915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(515), 29, + ACTIONS(556), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -14791,11 +14944,15 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, ts_builtin_sym_end, - [1737] = 2, - ACTIONS(553), 10, + [1785] = 3, + ACTIONS(648), 1, + sym__div_end, + ACTIONS(560), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -14804,7 +14961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(555), 30, + ACTIONS(562), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -14833,12 +14990,15 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__table_caption_begin, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, ts_builtin_sym_end, - [1782] = 2, - ACTIONS(557), 10, + [1834] = 3, + ACTIONS(650), 1, + sym__code_block_end, + ACTIONS(602), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -14847,7 +15007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(559), 30, + ACTIONS(604), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -14876,12 +15036,15 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__table_caption_begin, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, ts_builtin_sym_end, - [1827] = 2, - ACTIONS(519), 10, + [1883] = 3, + ACTIONS(652), 1, + sym__code_block_end, + ACTIONS(608), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -14890,7 +15053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(521), 30, + ACTIONS(610), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -14919,12 +15082,15 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__table_caption_begin, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, ts_builtin_sym_end, - [1872] = 2, - ACTIONS(523), 10, + [1932] = 3, + ACTIONS(654), 1, + sym__code_block_end, + ACTIONS(566), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -14933,7 +15099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(525), 30, + ACTIONS(568), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -14962,14 +15128,15 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__table_caption_begin, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, ts_builtin_sym_end, - [1917] = 3, - ACTIONS(623), 1, + [1981] = 3, + ACTIONS(656), 1, sym__div_end, - ACTIONS(527), 10, + ACTIONS(624), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -14978,7 +15145,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(529), 29, + ACTIONS(622), 32, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -15007,13 +15175,14 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [1964] = 3, - ACTIONS(625), 1, - sym__div_end, - ACTIONS(533), 10, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + [2030] = 3, + ACTIONS(658), 1, + sym__code_block_end, + ACTIONS(634), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -15022,7 +15191,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(535), 29, + ACTIONS(632), 32, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -15051,11 +15221,12 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [2011] = 2, - ACTIONS(613), 10, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + [2079] = 2, + ACTIONS(642), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -15064,7 +15235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(611), 30, + ACTIONS(640), 33, sym__block_close, sym__newline, sym__heading_begin, @@ -15094,11 +15265,15 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, sym__table_caption_begin, - [2056] = 2, - ACTIONS(579), 10, + [2126] = 3, + ACTIONS(660), 1, + sym__eof_or_newline, + ACTIONS(614), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -15107,7 +15282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(581), 30, + ACTIONS(616), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -15136,12 +15311,13 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__table_caption_begin, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, ts_builtin_sym_end, - [2101] = 2, - ACTIONS(583), 10, + [2175] = 2, + ACTIONS(662), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -15150,7 +15326,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(585), 30, + ACTIONS(664), 32, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -15179,14 +15356,12 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - sym__table_caption_begin, - ts_builtin_sym_end, - [2146] = 3, - ACTIONS(627), 1, - sym__eof_or_newline, - ACTIONS(595), 10, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + [2221] = 2, + ACTIONS(668), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -15195,8 +15370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(593), 29, - sym__block_close, + ACTIONS(666), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -15225,10 +15399,13 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [2193] = 2, - ACTIONS(631), 10, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + ts_builtin_sym_end, + [2267] = 2, + ACTIONS(670), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -15237,7 +15414,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(629), 29, + ACTIONS(672), 32, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -15266,11 +15444,12 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [2237] = 2, - ACTIONS(635), 10, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + [2313] = 2, + ACTIONS(662), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -15279,7 +15458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(633), 29, + ACTIONS(664), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -15308,11 +15487,13 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, ts_builtin_sym_end, - [2281] = 2, - ACTIONS(637), 10, + [2359] = 2, + ACTIONS(676), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -15321,8 +15502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(639), 29, - sym__block_close, + ACTIONS(674), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -15351,10 +15531,13 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [2325] = 2, - ACTIONS(643), 10, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + ts_builtin_sym_end, + [2405] = 2, + ACTIONS(680), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -15363,7 +15546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(641), 29, + ACTIONS(678), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -15392,11 +15575,13 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, ts_builtin_sym_end, - [2369] = 2, - ACTIONS(647), 10, + [2451] = 2, + ACTIONS(684), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -15405,7 +15590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(645), 29, + ACTIONS(682), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -15434,11 +15619,13 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, ts_builtin_sym_end, - [2413] = 2, - ACTIONS(651), 10, + [2497] = 2, + ACTIONS(688), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -15447,7 +15634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(649), 29, + ACTIONS(686), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -15476,11 +15663,13 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, ts_builtin_sym_end, - [2457] = 2, - ACTIONS(655), 10, + [2543] = 2, + ACTIONS(692), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -15489,7 +15678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(653), 29, + ACTIONS(690), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -15518,11 +15707,13 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, ts_builtin_sym_end, - [2501] = 2, - ACTIONS(659), 10, + [2589] = 2, + ACTIONS(696), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -15531,7 +15722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(657), 29, + ACTIONS(694), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -15560,11 +15751,13 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, ts_builtin_sym_end, - [2545] = 2, - ACTIONS(663), 10, + [2635] = 2, + ACTIONS(700), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -15573,7 +15766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(661), 29, + ACTIONS(698), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -15602,11 +15795,13 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, ts_builtin_sym_end, - [2589] = 2, - ACTIONS(667), 10, + [2681] = 2, + ACTIONS(704), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -15615,7 +15810,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(665), 29, + ACTIONS(702), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -15644,11 +15839,13 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, ts_builtin_sym_end, - [2633] = 2, - ACTIONS(671), 10, + [2727] = 2, + ACTIONS(708), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -15657,7 +15854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(669), 29, + ACTIONS(706), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -15686,11 +15883,13 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, ts_builtin_sym_end, - [2677] = 2, - ACTIONS(675), 10, + [2773] = 2, + ACTIONS(712), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -15699,7 +15898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(673), 29, + ACTIONS(710), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -15728,11 +15927,13 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, ts_builtin_sym_end, - [2721] = 2, - ACTIONS(679), 10, + [2819] = 2, + ACTIONS(716), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -15741,7 +15942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(677), 29, + ACTIONS(714), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -15770,11 +15971,13 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, ts_builtin_sym_end, - [2765] = 2, - ACTIONS(683), 10, + [2865] = 2, + ACTIONS(720), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -15783,7 +15986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(681), 29, + ACTIONS(718), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -15812,11 +16015,13 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, ts_builtin_sym_end, - [2809] = 2, - ACTIONS(687), 10, + [2911] = 2, + ACTIONS(724), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -15825,7 +16030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(685), 29, + ACTIONS(722), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -15854,11 +16059,13 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, ts_builtin_sym_end, - [2853] = 2, - ACTIONS(691), 10, + [2957] = 2, + ACTIONS(728), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -15867,7 +16074,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(689), 29, + ACTIONS(726), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -15896,11 +16103,13 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, ts_builtin_sym_end, - [2897] = 2, - ACTIONS(695), 10, + [3003] = 2, + ACTIONS(732), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -15909,7 +16118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(693), 29, + ACTIONS(730), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -15938,11 +16147,13 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, ts_builtin_sym_end, - [2941] = 2, - ACTIONS(699), 10, + [3049] = 2, + ACTIONS(736), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -15951,7 +16162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(697), 29, + ACTIONS(734), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -15980,11 +16191,13 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, ts_builtin_sym_end, - [2985] = 2, - ACTIONS(703), 10, + [3095] = 2, + ACTIONS(740), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -15993,7 +16206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(701), 29, + ACTIONS(738), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -16022,11 +16235,13 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, ts_builtin_sym_end, - [3029] = 2, - ACTIONS(707), 10, + [3141] = 2, + ACTIONS(744), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -16035,7 +16250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(705), 29, + ACTIONS(742), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -16064,11 +16279,13 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, ts_builtin_sym_end, - [3073] = 2, - ACTIONS(711), 10, + [3187] = 2, + ACTIONS(748), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -16077,7 +16294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(709), 29, + ACTIONS(746), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -16106,11 +16323,13 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, ts_builtin_sym_end, - [3117] = 2, - ACTIONS(715), 10, + [3233] = 2, + ACTIONS(752), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -16119,7 +16338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(713), 29, + ACTIONS(750), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -16148,11 +16367,13 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, ts_builtin_sym_end, - [3161] = 2, - ACTIONS(719), 10, + [3279] = 2, + ACTIONS(756), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -16161,7 +16382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(717), 29, + ACTIONS(754), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -16190,11 +16411,13 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, ts_builtin_sym_end, - [3205] = 2, - ACTIONS(723), 10, + [3325] = 2, + ACTIONS(760), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -16203,7 +16426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(721), 29, + ACTIONS(758), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -16232,11 +16455,13 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, ts_builtin_sym_end, - [3249] = 2, - ACTIONS(727), 10, + [3371] = 2, + ACTIONS(764), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -16245,7 +16470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(725), 29, + ACTIONS(762), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -16274,11 +16499,13 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, ts_builtin_sym_end, - [3293] = 2, - ACTIONS(731), 10, + [3417] = 2, + ACTIONS(768), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -16287,7 +16514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(729), 29, + ACTIONS(766), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -16316,11 +16543,13 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, ts_builtin_sym_end, - [3337] = 2, - ACTIONS(735), 10, + [3463] = 2, + ACTIONS(680), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -16329,7 +16558,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(733), 29, + ACTIONS(678), 32, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -16358,11 +16588,12 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [3381] = 2, - ACTIONS(631), 10, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + [3509] = 2, + ACTIONS(772), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -16371,8 +16602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(629), 29, - sym__block_close, + ACTIONS(770), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -16401,10 +16631,13 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [3425] = 2, - ACTIONS(647), 10, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + ts_builtin_sym_end, + [3555] = 2, + ACTIONS(676), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -16413,7 +16646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(645), 29, + ACTIONS(674), 32, sym__block_close, sym__newline, sym__heading_begin, @@ -16443,10 +16676,12 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [3469] = 2, - ACTIONS(739), 10, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + [3601] = 2, + ACTIONS(774), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -16455,7 +16690,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(737), 29, + ACTIONS(776), 32, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -16484,11 +16720,12 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [3513] = 2, - ACTIONS(741), 10, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + [3647] = 2, + ACTIONS(778), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -16497,7 +16734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(743), 29, + ACTIONS(780), 32, sym__block_close, sym__newline, sym__heading_begin, @@ -16527,10 +16764,12 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [3557] = 2, - ACTIONS(745), 10, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + [3693] = 2, + ACTIONS(688), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -16539,7 +16778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(747), 29, + ACTIONS(686), 32, sym__block_close, sym__newline, sym__heading_begin, @@ -16569,10 +16808,12 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [3601] = 2, - ACTIONS(749), 10, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + [3739] = 2, + ACTIONS(684), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -16581,7 +16822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(751), 29, + ACTIONS(682), 32, sym__block_close, sym__newline, sym__heading_begin, @@ -16611,10 +16852,12 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [3645] = 2, - ACTIONS(753), 10, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + [3785] = 2, + ACTIONS(784), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -16623,8 +16866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(755), 29, - sym__block_close, + ACTIONS(782), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -16653,10 +16895,13 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [3689] = 2, - ACTIONS(759), 10, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + ts_builtin_sym_end, + [3831] = 2, + ACTIONS(692), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -16665,7 +16910,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(757), 29, + ACTIONS(690), 32, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -16694,11 +16940,12 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [3733] = 2, - ACTIONS(763), 10, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + [3877] = 2, + ACTIONS(708), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -16707,7 +16954,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(761), 29, + ACTIONS(706), 32, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -16736,11 +16984,12 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [3777] = 2, - ACTIONS(659), 10, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + [3923] = 2, + ACTIONS(756), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -16749,7 +16998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(657), 29, + ACTIONS(754), 32, sym__block_close, sym__newline, sym__heading_begin, @@ -16779,10 +17028,12 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [3821] = 2, - ACTIONS(683), 10, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + [3969] = 2, + ACTIONS(772), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -16791,7 +17042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(681), 29, + ACTIONS(770), 32, sym__block_close, sym__newline, sym__heading_begin, @@ -16821,10 +17072,12 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [3865] = 2, - ACTIONS(715), 10, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + [4015] = 2, + ACTIONS(784), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -16833,7 +17086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(713), 29, + ACTIONS(782), 32, sym__block_close, sym__newline, sym__heading_begin, @@ -16863,10 +17116,12 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [3909] = 2, - ACTIONS(731), 10, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + [4061] = 2, + ACTIONS(786), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -16875,7 +17130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(729), 29, + ACTIONS(788), 32, sym__block_close, sym__newline, sym__heading_begin, @@ -16905,10 +17160,12 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [3953] = 2, - ACTIONS(739), 10, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + [4107] = 2, + ACTIONS(790), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -16917,7 +17174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(737), 29, + ACTIONS(792), 32, sym__block_close, sym__newline, sym__heading_begin, @@ -16947,10 +17204,12 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [3997] = 2, - ACTIONS(759), 10, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + [4153] = 2, + ACTIONS(794), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -16959,7 +17218,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(757), 29, + ACTIONS(796), 32, sym__block_close, sym__newline, sym__heading_begin, @@ -16989,10 +17248,12 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [4041] = 2, - ACTIONS(763), 10, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + [4199] = 2, + ACTIONS(798), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -17001,7 +17262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(761), 29, + ACTIONS(800), 32, sym__block_close, sym__newline, sym__heading_begin, @@ -17031,10 +17292,12 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [4085] = 2, - ACTIONS(765), 10, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + [4245] = 2, + ACTIONS(802), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -17043,7 +17306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(767), 29, + ACTIONS(804), 32, sym__block_close, sym__newline, sym__heading_begin, @@ -17073,10 +17336,12 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [4129] = 2, - ACTIONS(769), 10, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + [4291] = 2, + ACTIONS(806), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -17085,7 +17350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(771), 29, + ACTIONS(808), 32, sym__block_close, sym__newline, sym__heading_begin, @@ -17115,10 +17380,12 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [4173] = 2, - ACTIONS(773), 10, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + [4337] = 2, + ACTIONS(810), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -17127,7 +17394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(775), 29, + ACTIONS(812), 32, sym__block_close, sym__newline, sym__heading_begin, @@ -17157,10 +17424,12 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [4217] = 2, - ACTIONS(777), 10, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + [4383] = 2, + ACTIONS(814), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -17169,7 +17438,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(779), 29, + ACTIONS(816), 32, sym__block_close, sym__newline, sym__heading_begin, @@ -17199,10 +17468,12 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [4261] = 2, - ACTIONS(781), 10, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + [4429] = 2, + ACTIONS(818), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -17211,7 +17482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(783), 29, + ACTIONS(820), 32, sym__block_close, sym__newline, sym__heading_begin, @@ -17241,10 +17512,12 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [4305] = 2, - ACTIONS(785), 10, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + [4475] = 2, + ACTIONS(822), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -17253,7 +17526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(787), 29, + ACTIONS(824), 32, sym__block_close, sym__newline, sym__heading_begin, @@ -17283,10 +17556,12 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [4349] = 2, - ACTIONS(789), 10, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + [4521] = 2, + ACTIONS(826), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -17295,7 +17570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(791), 29, + ACTIONS(828), 32, sym__block_close, sym__newline, sym__heading_begin, @@ -17325,10 +17600,12 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [4393] = 2, - ACTIONS(793), 10, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + [4567] = 2, + ACTIONS(830), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -17337,7 +17614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(795), 29, + ACTIONS(832), 32, sym__block_close, sym__newline, sym__heading_begin, @@ -17367,10 +17644,12 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [4437] = 2, - ACTIONS(797), 10, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + [4613] = 2, + ACTIONS(834), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -17379,7 +17658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(799), 29, + ACTIONS(836), 32, sym__block_close, sym__newline, sym__heading_begin, @@ -17409,10 +17688,12 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [4481] = 2, - ACTIONS(801), 10, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + [4659] = 2, + ACTIONS(838), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -17421,7 +17702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(803), 29, + ACTIONS(840), 32, sym__block_close, sym__newline, sym__heading_begin, @@ -17451,10 +17732,12 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [4525] = 2, - ACTIONS(805), 10, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + [4705] = 2, + ACTIONS(842), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -17463,7 +17746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(807), 29, + ACTIONS(844), 32, sym__block_close, sym__newline, sym__heading_begin, @@ -17493,10 +17776,12 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [4569] = 2, - ACTIONS(809), 10, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + [4751] = 2, + ACTIONS(846), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -17505,7 +17790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(811), 29, + ACTIONS(848), 32, sym__block_close, sym__newline, sym__heading_begin, @@ -17535,10 +17820,12 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [4613] = 2, - ACTIONS(813), 10, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + [4797] = 2, + ACTIONS(786), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -17547,8 +17834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(815), 29, - sym__block_close, + ACTIONS(788), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -17577,10 +17863,13 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [4657] = 2, - ACTIONS(817), 10, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + ts_builtin_sym_end, + [4843] = 2, + ACTIONS(538), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -17589,7 +17878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(819), 29, + ACTIONS(536), 32, sym__block_close, sym__newline, sym__heading_begin, @@ -17619,10 +17908,12 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [4701] = 2, - ACTIONS(765), 10, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + [4889] = 2, + ACTIONS(790), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -17631,7 +17922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(767), 29, + ACTIONS(792), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -17660,11 +17951,13 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, ts_builtin_sym_end, - [4745] = 2, - ACTIONS(505), 10, + [4935] = 2, + ACTIONS(850), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -17673,7 +17966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(503), 29, + ACTIONS(852), 32, sym__block_close, sym__newline, sym__heading_begin, @@ -17703,10 +17996,12 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [4789] = 2, - ACTIONS(769), 10, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + [4981] = 2, + ACTIONS(854), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -17715,7 +18010,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(771), 29, + ACTIONS(856), 32, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -17744,11 +18040,12 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [4833] = 2, - ACTIONS(821), 10, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + [5027] = 2, + ACTIONS(794), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -17757,8 +18054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(823), 29, - sym__block_close, + ACTIONS(796), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -17787,10 +18083,13 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [4877] = 2, - ACTIONS(825), 10, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + ts_builtin_sym_end, + [5073] = 2, + ACTIONS(668), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -17799,7 +18098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(827), 29, + ACTIONS(666), 32, sym__block_close, sym__newline, sym__heading_begin, @@ -17829,10 +18128,12 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [4921] = 2, - ACTIONS(773), 10, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + [5119] = 2, + ACTIONS(798), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -17841,7 +18142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(775), 29, + ACTIONS(800), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -17870,11 +18171,13 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, ts_builtin_sym_end, - [4965] = 2, - ACTIONS(635), 10, + [5165] = 2, + ACTIONS(802), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -17883,8 +18186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(633), 29, - sym__block_close, + ACTIONS(804), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -17913,10 +18215,13 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [5009] = 2, - ACTIONS(777), 10, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + ts_builtin_sym_end, + [5211] = 2, + ACTIONS(806), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -17925,7 +18230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(779), 29, + ACTIONS(808), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -17954,11 +18259,13 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, ts_builtin_sym_end, - [5053] = 2, - ACTIONS(781), 10, + [5257] = 2, + ACTIONS(810), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -17967,7 +18274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(783), 29, + ACTIONS(812), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -17996,11 +18303,13 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, ts_builtin_sym_end, - [5097] = 2, - ACTIONS(785), 10, + [5303] = 2, + ACTIONS(814), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -18009,7 +18318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(787), 29, + ACTIONS(816), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -18038,11 +18347,13 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, ts_builtin_sym_end, - [5141] = 2, - ACTIONS(643), 10, + [5349] = 2, + ACTIONS(818), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -18051,8 +18362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(641), 29, - sym__block_close, + ACTIONS(820), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -18081,10 +18391,13 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [5185] = 2, - ACTIONS(789), 10, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + ts_builtin_sym_end, + [5395] = 2, + ACTIONS(822), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -18093,7 +18406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(791), 29, + ACTIONS(824), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -18122,11 +18435,13 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, ts_builtin_sym_end, - [5229] = 2, - ACTIONS(793), 10, + [5441] = 2, + ACTIONS(858), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -18135,7 +18450,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(795), 29, + ACTIONS(860), 32, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -18164,11 +18480,12 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [5273] = 2, - ACTIONS(651), 10, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + [5487] = 2, + ACTIONS(826), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -18177,8 +18494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(649), 29, - sym__block_close, + ACTIONS(828), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -18207,10 +18523,13 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [5317] = 2, - ACTIONS(797), 10, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + ts_builtin_sym_end, + [5533] = 2, + ACTIONS(830), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -18219,7 +18538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(799), 29, + ACTIONS(832), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -18248,11 +18567,13 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, ts_builtin_sym_end, - [5361] = 2, - ACTIONS(801), 10, + [5579] = 2, + ACTIONS(834), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -18261,7 +18582,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(803), 29, + ACTIONS(836), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -18290,11 +18611,13 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, ts_builtin_sym_end, - [5405] = 2, - ACTIONS(805), 10, + [5625] = 2, + ACTIONS(838), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -18303,7 +18626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(807), 29, + ACTIONS(840), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -18332,11 +18655,13 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, ts_builtin_sym_end, - [5449] = 2, - ACTIONS(809), 10, + [5671] = 2, + ACTIONS(842), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -18345,7 +18670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(811), 29, + ACTIONS(844), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -18374,11 +18699,13 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, ts_builtin_sym_end, - [5493] = 2, - ACTIONS(813), 10, + [5717] = 2, + ACTIONS(846), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -18387,7 +18714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(815), 29, + ACTIONS(848), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -18416,11 +18743,13 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, ts_builtin_sym_end, - [5537] = 2, - ACTIONS(655), 10, + [5763] = 2, + ACTIONS(696), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -18429,7 +18758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(653), 29, + ACTIONS(694), 32, sym__block_close, sym__newline, sym__heading_begin, @@ -18459,10 +18788,12 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [5581] = 2, - ACTIONS(817), 10, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + [5809] = 2, + ACTIONS(704), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -18471,7 +18802,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(819), 29, + ACTIONS(702), 32, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -18500,11 +18832,12 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [5625] = 2, - ACTIONS(667), 10, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + [5855] = 2, + ACTIONS(538), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -18513,8 +18846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(665), 29, - sym__block_close, + ACTIONS(536), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -18543,10 +18875,13 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [5669] = 2, - ACTIONS(671), 10, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + ts_builtin_sym_end, + [5901] = 2, + ACTIONS(712), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -18555,7 +18890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(669), 29, + ACTIONS(710), 32, sym__block_close, sym__newline, sym__heading_begin, @@ -18585,10 +18920,12 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [5713] = 2, - ACTIONS(675), 10, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + [5947] = 2, + ACTIONS(716), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -18597,7 +18934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(673), 29, + ACTIONS(714), 32, sym__block_close, sym__newline, sym__heading_begin, @@ -18627,10 +18964,12 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [5757] = 2, - ACTIONS(679), 10, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + [5993] = 2, + ACTIONS(720), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -18639,7 +18978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(677), 29, + ACTIONS(718), 32, sym__block_close, sym__newline, sym__heading_begin, @@ -18669,10 +19008,12 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [5801] = 2, - ACTIONS(505), 10, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + [6039] = 2, + ACTIONS(728), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -18681,7 +19022,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(503), 29, + ACTIONS(726), 32, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -18710,11 +19052,12 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [5845] = 2, - ACTIONS(691), 10, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + [6085] = 2, + ACTIONS(732), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -18723,7 +19066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(689), 29, + ACTIONS(730), 32, sym__block_close, sym__newline, sym__heading_begin, @@ -18753,10 +19096,12 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [5889] = 2, - ACTIONS(695), 10, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + [6131] = 2, + ACTIONS(736), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -18765,7 +19110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(693), 29, + ACTIONS(734), 32, sym__block_close, sym__newline, sym__heading_begin, @@ -18795,10 +19140,12 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [5933] = 2, - ACTIONS(699), 10, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + [6177] = 2, + ACTIONS(740), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -18807,7 +19154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(697), 29, + ACTIONS(738), 32, sym__block_close, sym__newline, sym__heading_begin, @@ -18837,10 +19184,12 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [5977] = 2, - ACTIONS(703), 10, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + [6223] = 2, + ACTIONS(744), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -18849,7 +19198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(701), 29, + ACTIONS(742), 32, sym__block_close, sym__newline, sym__heading_begin, @@ -18879,10 +19228,12 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [6021] = 2, - ACTIONS(707), 10, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + [6269] = 2, + ACTIONS(748), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -18891,7 +19242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(705), 29, + ACTIONS(746), 32, sym__block_close, sym__newline, sym__heading_begin, @@ -18921,10 +19272,12 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [6065] = 2, - ACTIONS(711), 10, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + [6315] = 2, + ACTIONS(752), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -18933,7 +19286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(709), 29, + ACTIONS(750), 32, sym__block_close, sym__newline, sym__heading_begin, @@ -18963,10 +19316,12 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [6109] = 2, - ACTIONS(719), 10, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + [6361] = 2, + ACTIONS(760), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -18975,7 +19330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(717), 29, + ACTIONS(758), 32, sym__block_close, sym__newline, sym__heading_begin, @@ -19005,10 +19360,12 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [6153] = 2, - ACTIONS(723), 10, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + [6407] = 2, + ACTIONS(764), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -19017,7 +19374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(721), 29, + ACTIONS(762), 32, sym__block_close, sym__newline, sym__heading_begin, @@ -19047,10 +19404,12 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [6197] = 2, - ACTIONS(727), 10, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + [6453] = 2, + ACTIONS(768), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -19059,7 +19418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(725), 29, + ACTIONS(766), 32, sym__block_close, sym__newline, sym__heading_begin, @@ -19089,10 +19448,12 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [6241] = 2, - ACTIONS(735), 10, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + [6499] = 2, + ACTIONS(850), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -19101,8 +19462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(733), 29, - sym__block_close, + ACTIONS(852), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -19131,10 +19491,13 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [6285] = 2, - ACTIONS(821), 10, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + ts_builtin_sym_end, + [6545] = 2, + ACTIONS(854), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -19143,7 +19506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(823), 29, + ACTIONS(856), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -19172,11 +19535,13 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, ts_builtin_sym_end, - [6329] = 2, - ACTIONS(825), 10, + [6591] = 2, + ACTIONS(778), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -19185,7 +19550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(827), 29, + ACTIONS(780), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -19214,11 +19579,13 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, ts_builtin_sym_end, - [6373] = 2, - ACTIONS(745), 10, + [6637] = 2, + ACTIONS(862), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -19227,7 +19594,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(747), 29, + ACTIONS(864), 32, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -19256,11 +19624,12 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [6417] = 2, - ACTIONS(749), 10, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + [6683] = 2, + ACTIONS(858), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -19269,7 +19638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(751), 29, + ACTIONS(860), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -19298,11 +19667,17 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, ts_builtin_sym_end, - [6461] = 2, - ACTIONS(829), 10, + [6729] = 4, + ACTIONS(870), 1, + sym__block_quote_continuation, + STATE(208), 1, + aux_sym__block_quote_prefix_repeat1, + ACTIONS(866), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -19311,10 +19686,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(831), 29, + ACTIONS(868), 29, sym__block_close, - sym__newline, - sym__heading_begin, sym__div_begin, sym__code_block_begin, sym_list_marker_dash, @@ -19338,13 +19711,14 @@ static const uint16_t ts_small_parse_table[] = { sym_list_marker_lower_roman_parens, sym_list_marker_upper_roman_parens, sym__block_quote_begin, - sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [6505] = 2, - ACTIONS(753), 10, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + [6778] = 2, + ACTIONS(873), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -19353,7 +19727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(755), 29, + ACTIONS(875), 31, sym__newline, sym__heading_begin, sym__div_begin, @@ -19382,11 +19756,12 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [6549] = 2, - ACTIONS(833), 10, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + [6823] = 2, + ACTIONS(458), 9, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, @@ -19395,9 +19770,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(835), 28, - sym__newline, - sym__heading_begin, + ACTIONS(460), 30, + sym__block_close, sym__div_begin, sym__code_block_begin, sym_list_marker_dash, @@ -19424,15 +19798,41 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, - [6592] = 4, - ACTIONS(841), 1, - sym__block_quote_continuation, - STATE(211), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(837), 10, - anon_sym_LBRACK, - anon_sym_PIPE, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + [6867] = 14, + ACTIONS(29), 1, + sym__list_marker_task_begin, + ACTIONS(91), 1, + sym__table_header_begin, + ACTIONS(93), 1, + sym__table_separator_begin, + ACTIONS(95), 1, + sym__table_row_begin, + ACTIONS(877), 1, anon_sym_LBRACK_CARET, + ACTIONS(879), 1, + sym__block_close, + ACTIONS(881), 1, + sym_list_marker_dash, + ACTIONS(883), 1, + sym_list_marker_star, + ACTIONS(885), 1, + sym_list_marker_plus, + STATE(30), 1, + sym_list_marker_task, + STATE(609), 1, + sym__inline, + STATE(285), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + STATE(98), 3, + sym_table_header, + sym_table_separator, + sym_table_row, + ACTIONS(11), 8, + anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -19440,38 +19840,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(839), 26, - sym__block_close, - sym__div_begin, - sym__code_block_begin, + [6920] = 14, + ACTIONS(29), 1, + sym__list_marker_task_begin, + ACTIONS(91), 1, + sym__table_header_begin, + ACTIONS(93), 1, + sym__table_separator_begin, + ACTIONS(95), 1, + sym__table_row_begin, + ACTIONS(877), 1, + anon_sym_LBRACK_CARET, + ACTIONS(881), 1, sym_list_marker_dash, + ACTIONS(883), 1, sym_list_marker_star, + ACTIONS(885), 1, sym_list_marker_plus, - sym__list_marker_task_begin, - sym_list_marker_definition, - sym_list_marker_decimal_period, - sym_list_marker_lower_alpha_period, - sym_list_marker_upper_alpha_period, - sym_list_marker_lower_roman_period, - sym_list_marker_upper_roman_period, - sym_list_marker_decimal_paren, - sym_list_marker_lower_alpha_paren, - sym_list_marker_upper_alpha_paren, - sym_list_marker_lower_roman_paren, - sym_list_marker_upper_roman_paren, - sym_list_marker_decimal_parens, - sym_list_marker_lower_alpha_parens, - sym_list_marker_upper_alpha_parens, - sym_list_marker_lower_roman_parens, - sym_list_marker_upper_roman_parens, - sym__block_quote_begin, - sym__thematic_break_dash, - sym__thematic_break_star, - [6639] = 2, - ACTIONS(428), 10, + ACTIONS(887), 1, + sym__block_close, + STATE(30), 1, + sym_list_marker_task, + STATE(609), 1, + sym__inline, + STATE(285), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + STATE(98), 3, + sym_table_header, + sym_table_separator, + sym_table_row, + ACTIONS(11), 8, anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -19479,227 +19879,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(430), 27, - sym__block_close, - sym__div_begin, - sym__code_block_begin, + [6973] = 14, + ACTIONS(29), 1, + sym__list_marker_task_begin, + ACTIONS(91), 1, + sym__table_header_begin, + ACTIONS(93), 1, + sym__table_separator_begin, + ACTIONS(95), 1, + sym__table_row_begin, + ACTIONS(877), 1, + anon_sym_LBRACK_CARET, + ACTIONS(881), 1, sym_list_marker_dash, + ACTIONS(883), 1, sym_list_marker_star, + ACTIONS(885), 1, sym_list_marker_plus, - sym__list_marker_task_begin, - sym_list_marker_definition, - sym_list_marker_decimal_period, - sym_list_marker_lower_alpha_period, - sym_list_marker_upper_alpha_period, - sym_list_marker_lower_roman_period, - sym_list_marker_upper_roman_period, - sym_list_marker_decimal_paren, - sym_list_marker_lower_alpha_paren, - sym_list_marker_upper_alpha_paren, - sym_list_marker_lower_roman_paren, - sym_list_marker_upper_roman_paren, - sym_list_marker_decimal_parens, - sym_list_marker_lower_alpha_parens, - sym_list_marker_upper_alpha_parens, - sym_list_marker_lower_roman_parens, - sym_list_marker_upper_roman_parens, - sym__block_quote_begin, - sym__block_quote_continuation, - sym__thematic_break_dash, - sym__thematic_break_star, - [6681] = 12, - ACTIONS(846), 1, - anon_sym_RBRACE, - ACTIONS(848), 1, - anon_sym_DOT, - ACTIONS(851), 1, - aux_sym_identifier_token1, - ACTIONS(854), 1, - sym__whitespace1, - ACTIONS(856), 1, - anon_sym_PERCENT, - ACTIONS(859), 1, - sym__id, - STATE(320), 1, - aux_sym_block_attribute_repeat1, - STATE(374), 1, - sym__comment_no_newline, - STATE(1096), 1, - sym_key, - ACTIONS(861), 2, - sym__eof_or_newline, - sym__newline_inline, - STATE(436), 3, - sym_class, - sym_identifier, - sym_key_value, - ACTIONS(844), 7, + ACTIONS(889), 1, + sym__block_close, + STATE(30), 1, + sym_list_marker_task, + STATE(609), 1, + sym__inline, + STATE(285), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + STATE(98), 3, + sym_table_header, + sym_table_separator, + sym_table_row, + ACTIONS(11), 8, anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACK_CARET, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, anon_sym_POUND, - [6727] = 12, - ACTIONS(848), 1, - anon_sym_DOT, - ACTIONS(851), 1, - aux_sym_identifier_token1, - ACTIONS(854), 1, - sym__whitespace1, - ACTIONS(856), 1, anon_sym_PERCENT, - ACTIONS(859), 1, - sym__id, - ACTIONS(863), 1, - anon_sym_RBRACE, - STATE(316), 1, - aux_sym_block_attribute_repeat1, - STATE(374), 1, - sym__comment_no_newline, - STATE(1096), 1, - sym_key, - ACTIONS(861), 2, - sym__eof_or_newline, - sym__newline_inline, - STATE(436), 3, - sym_class, - sym_identifier, - sym_key_value, - ACTIONS(844), 7, - anon_sym_LBRACK, - anon_sym_PIPE, + [7026] = 14, + ACTIONS(29), 1, + sym__list_marker_task_begin, + ACTIONS(91), 1, + sym__table_header_begin, + ACTIONS(93), 1, + sym__table_separator_begin, + ACTIONS(95), 1, + sym__table_row_begin, + ACTIONS(877), 1, anon_sym_LBRACK_CARET, + ACTIONS(881), 1, + sym_list_marker_dash, + ACTIONS(883), 1, + sym_list_marker_star, + ACTIONS(885), 1, + sym_list_marker_plus, + ACTIONS(891), 1, + sym__block_close, + STATE(30), 1, + sym_list_marker_task, + STATE(609), 1, + sym__inline, + STATE(285), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + STATE(98), 3, + sym_table_header, + sym_table_separator, + sym_table_row, + ACTIONS(11), 8, + anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, anon_sym_POUND, - [6773] = 12, - ACTIONS(848), 1, - anon_sym_DOT, - ACTIONS(851), 1, - aux_sym_identifier_token1, - ACTIONS(854), 1, - sym__whitespace1, - ACTIONS(856), 1, anon_sym_PERCENT, - ACTIONS(859), 1, - sym__id, - ACTIONS(865), 1, - anon_sym_RBRACE, - STATE(308), 1, - aux_sym_block_attribute_repeat1, - STATE(374), 1, - sym__comment_no_newline, - STATE(1096), 1, - sym_key, - ACTIONS(861), 2, - sym__eof_or_newline, - sym__newline_inline, - STATE(436), 3, - sym_class, - sym_identifier, - sym_key_value, - ACTIONS(844), 7, - anon_sym_LBRACK, - anon_sym_PIPE, + [7079] = 14, + ACTIONS(29), 1, + sym__list_marker_task_begin, + ACTIONS(91), 1, + sym__table_header_begin, + ACTIONS(93), 1, + sym__table_separator_begin, + ACTIONS(95), 1, + sym__table_row_begin, + ACTIONS(877), 1, anon_sym_LBRACK_CARET, + ACTIONS(881), 1, + sym_list_marker_dash, + ACTIONS(883), 1, + sym_list_marker_star, + ACTIONS(885), 1, + sym_list_marker_plus, + ACTIONS(893), 1, + sym__block_close, + STATE(30), 1, + sym_list_marker_task, + STATE(609), 1, + sym__inline, + STATE(285), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + STATE(98), 3, + sym_table_header, + sym_table_separator, + sym_table_row, + ACTIONS(11), 8, + anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, anon_sym_POUND, - [6819] = 12, - ACTIONS(848), 1, - anon_sym_DOT, - ACTIONS(851), 1, - aux_sym_identifier_token1, - ACTIONS(854), 1, - sym__whitespace1, - ACTIONS(856), 1, anon_sym_PERCENT, - ACTIONS(859), 1, - sym__id, - ACTIONS(867), 1, - anon_sym_RBRACE, - STATE(315), 1, - aux_sym_block_attribute_repeat1, - STATE(374), 1, - sym__comment_no_newline, - STATE(1096), 1, - sym_key, - ACTIONS(861), 2, - sym__eof_or_newline, - sym__newline_inline, - STATE(436), 3, - sym_class, - sym_identifier, - sym_key_value, - ACTIONS(844), 7, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - [6865] = 12, - ACTIONS(848), 1, - anon_sym_DOT, - ACTIONS(851), 1, - aux_sym_identifier_token1, - ACTIONS(854), 1, - sym__whitespace1, - ACTIONS(856), 1, - anon_sym_PERCENT, - ACTIONS(859), 1, - sym__id, - ACTIONS(869), 1, - anon_sym_RBRACE, - STATE(309), 1, - aux_sym_block_attribute_repeat1, - STATE(374), 1, - sym__comment_no_newline, - STATE(1096), 1, - sym_key, - ACTIONS(861), 2, - sym__eof_or_newline, - sym__newline_inline, - STATE(436), 3, - sym_class, - sym_identifier, - sym_key_value, - ACTIONS(844), 7, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - [6911] = 11, - ACTIONS(31), 1, + [7132] = 14, + ACTIONS(29), 1, sym__list_marker_task_begin, - ACTIONS(871), 1, - anon_sym_PIPE, - ACTIONS(873), 1, - anon_sym_LBRACK_CARET, - ACTIONS(875), 1, - sym__block_close, + ACTIONS(91), 1, + sym__table_header_begin, + ACTIONS(93), 1, + sym__table_separator_begin, + ACTIONS(95), 1, + sym__table_row_begin, ACTIONS(877), 1, + anon_sym_LBRACK_CARET, + ACTIONS(881), 1, sym_list_marker_dash, - ACTIONS(879), 1, + ACTIONS(883), 1, sym_list_marker_star, - ACTIONS(881), 1, + ACTIONS(885), 1, sym_list_marker_plus, + ACTIONS(895), 1, + sym__block_close, STATE(30), 1, sym_list_marker_task, - STATE(614), 1, + STATE(609), 1, sym__inline, - STATE(297), 2, + STATE(285), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(13), 8, + STATE(98), 3, + sym_table_header, + sym_table_separator, + sym_table_row, + ACTIONS(11), 8, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_DOT, @@ -19708,29 +20035,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [6953] = 11, - ACTIONS(31), 1, + [7185] = 14, + ACTIONS(29), 1, sym__list_marker_task_begin, - ACTIONS(871), 1, - anon_sym_PIPE, - ACTIONS(873), 1, - anon_sym_LBRACK_CARET, + ACTIONS(91), 1, + sym__table_header_begin, + ACTIONS(93), 1, + sym__table_separator_begin, + ACTIONS(95), 1, + sym__table_row_begin, ACTIONS(877), 1, + anon_sym_LBRACK_CARET, + ACTIONS(881), 1, sym_list_marker_dash, - ACTIONS(879), 1, + ACTIONS(883), 1, sym_list_marker_star, - ACTIONS(881), 1, + ACTIONS(885), 1, sym_list_marker_plus, - ACTIONS(883), 1, + ACTIONS(897), 1, sym__block_close, STATE(30), 1, sym_list_marker_task, - STATE(614), 1, + STATE(609), 1, sym__inline, - STATE(297), 2, + STATE(285), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(13), 8, + STATE(98), 3, + sym_table_header, + sym_table_separator, + sym_table_row, + ACTIONS(11), 8, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_DOT, @@ -19739,29 +20074,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [6995] = 11, - ACTIONS(31), 1, + [7238] = 14, + ACTIONS(29), 1, sym__list_marker_task_begin, - ACTIONS(871), 1, - anon_sym_PIPE, - ACTIONS(873), 1, - anon_sym_LBRACK_CARET, + ACTIONS(91), 1, + sym__table_header_begin, + ACTIONS(93), 1, + sym__table_separator_begin, + ACTIONS(95), 1, + sym__table_row_begin, ACTIONS(877), 1, + anon_sym_LBRACK_CARET, + ACTIONS(881), 1, sym_list_marker_dash, - ACTIONS(879), 1, + ACTIONS(883), 1, sym_list_marker_star, - ACTIONS(881), 1, - sym_list_marker_plus, ACTIONS(885), 1, + sym_list_marker_plus, + ACTIONS(899), 1, sym__block_close, STATE(30), 1, sym_list_marker_task, - STATE(614), 1, + STATE(609), 1, sym__inline, - STATE(297), 2, + STATE(285), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(13), 8, + STATE(98), 3, + sym_table_header, + sym_table_separator, + sym_table_row, + ACTIONS(11), 8, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_DOT, @@ -19770,29 +20113,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [7037] = 11, - ACTIONS(31), 1, + [7291] = 14, + ACTIONS(29), 1, sym__list_marker_task_begin, - ACTIONS(871), 1, - anon_sym_PIPE, - ACTIONS(873), 1, - anon_sym_LBRACK_CARET, + ACTIONS(91), 1, + sym__table_header_begin, + ACTIONS(93), 1, + sym__table_separator_begin, + ACTIONS(95), 1, + sym__table_row_begin, ACTIONS(877), 1, + anon_sym_LBRACK_CARET, + ACTIONS(881), 1, sym_list_marker_dash, - ACTIONS(879), 1, + ACTIONS(883), 1, sym_list_marker_star, - ACTIONS(881), 1, + ACTIONS(885), 1, sym_list_marker_plus, - ACTIONS(887), 1, + ACTIONS(901), 1, sym__block_close, STATE(30), 1, sym_list_marker_task, - STATE(614), 1, + STATE(609), 1, sym__inline, - STATE(297), 2, + STATE(285), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(13), 8, + STATE(98), 3, + sym_table_header, + sym_table_separator, + sym_table_row, + ACTIONS(11), 8, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_DOT, @@ -19801,29 +20152,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [7079] = 11, - ACTIONS(31), 1, + [7344] = 14, + ACTIONS(29), 1, sym__list_marker_task_begin, - ACTIONS(871), 1, - anon_sym_PIPE, - ACTIONS(873), 1, - anon_sym_LBRACK_CARET, + ACTIONS(91), 1, + sym__table_header_begin, + ACTIONS(93), 1, + sym__table_separator_begin, + ACTIONS(95), 1, + sym__table_row_begin, ACTIONS(877), 1, + anon_sym_LBRACK_CARET, + ACTIONS(881), 1, sym_list_marker_dash, - ACTIONS(879), 1, + ACTIONS(883), 1, sym_list_marker_star, - ACTIONS(881), 1, + ACTIONS(885), 1, sym_list_marker_plus, - ACTIONS(889), 1, + ACTIONS(903), 1, sym__block_close, STATE(30), 1, sym_list_marker_task, - STATE(614), 1, + STATE(609), 1, sym__inline, - STATE(297), 2, + STATE(285), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(13), 8, + STATE(98), 3, + sym_table_header, + sym_table_separator, + sym_table_row, + ACTIONS(11), 8, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_DOT, @@ -19832,29 +20191,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [7121] = 11, - ACTIONS(31), 1, + [7397] = 13, + ACTIONS(29), 1, sym__list_marker_task_begin, - ACTIONS(871), 1, - anon_sym_PIPE, - ACTIONS(873), 1, - anon_sym_LBRACK_CARET, + ACTIONS(482), 1, + sym__table_header_begin, + ACTIONS(484), 1, + sym__table_separator_begin, + ACTIONS(486), 1, + sym__table_row_begin, ACTIONS(877), 1, + anon_sym_LBRACK_CARET, + ACTIONS(881), 1, sym_list_marker_dash, - ACTIONS(879), 1, + ACTIONS(883), 1, sym_list_marker_star, - ACTIONS(881), 1, + ACTIONS(885), 1, sym_list_marker_plus, - ACTIONS(891), 1, - sym__block_close, STATE(30), 1, sym_list_marker_task, - STATE(614), 1, + STATE(609), 1, sym__inline, - STATE(297), 2, + STATE(285), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(13), 8, + STATE(378), 3, + sym_table_header, + sym_table_separator, + sym_table_row, + ACTIONS(11), 8, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_DOT, @@ -19863,29 +20228,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [7163] = 11, - ACTIONS(31), 1, + [7447] = 13, + ACTIONS(29), 1, sym__list_marker_task_begin, - ACTIONS(871), 1, - anon_sym_PIPE, - ACTIONS(873), 1, - anon_sym_LBRACK_CARET, + ACTIONS(380), 1, + sym__table_header_begin, + ACTIONS(382), 1, + sym__table_separator_begin, + ACTIONS(384), 1, + sym__table_row_begin, ACTIONS(877), 1, + anon_sym_LBRACK_CARET, + ACTIONS(881), 1, sym_list_marker_dash, - ACTIONS(879), 1, + ACTIONS(883), 1, sym_list_marker_star, - ACTIONS(881), 1, + ACTIONS(885), 1, sym_list_marker_plus, - ACTIONS(893), 1, - sym__block_close, STATE(30), 1, sym_list_marker_task, - STATE(614), 1, + STATE(609), 1, sym__inline, - STATE(297), 2, + STATE(285), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(13), 8, + STATE(352), 3, + sym_table_header, + sym_table_separator, + sym_table_row, + ACTIONS(11), 8, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_DOT, @@ -19894,29 +20265,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [7205] = 11, - ACTIONS(31), 1, + [7497] = 13, + ACTIONS(29), 1, sym__list_marker_task_begin, - ACTIONS(871), 1, - anon_sym_PIPE, - ACTIONS(873), 1, - anon_sym_LBRACK_CARET, + ACTIONS(448), 1, + sym__table_header_begin, + ACTIONS(450), 1, + sym__table_separator_begin, + ACTIONS(452), 1, + sym__table_row_begin, ACTIONS(877), 1, + anon_sym_LBRACK_CARET, + ACTIONS(881), 1, sym_list_marker_dash, - ACTIONS(879), 1, + ACTIONS(883), 1, sym_list_marker_star, - ACTIONS(881), 1, + ACTIONS(885), 1, sym_list_marker_plus, - ACTIONS(895), 1, - sym__block_close, STATE(30), 1, sym_list_marker_task, - STATE(614), 1, + STATE(609), 1, sym__inline, - STATE(297), 2, + STATE(285), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(13), 8, + STATE(343), 3, + sym_table_header, + sym_table_separator, + sym_table_row, + ACTIONS(11), 8, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_DOT, @@ -19925,29 +20302,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [7247] = 11, - ACTIONS(31), 1, + [7547] = 13, + ACTIONS(29), 1, sym__list_marker_task_begin, - ACTIONS(871), 1, - anon_sym_PIPE, - ACTIONS(873), 1, - anon_sym_LBRACK_CARET, + ACTIONS(91), 1, + sym__table_header_begin, + ACTIONS(93), 1, + sym__table_separator_begin, + ACTIONS(95), 1, + sym__table_row_begin, ACTIONS(877), 1, + anon_sym_LBRACK_CARET, + ACTIONS(881), 1, sym_list_marker_dash, - ACTIONS(879), 1, + ACTIONS(883), 1, sym_list_marker_star, - ACTIONS(881), 1, + ACTIONS(885), 1, sym_list_marker_plus, - ACTIONS(897), 1, - sym__block_close, STATE(30), 1, sym_list_marker_task, - STATE(614), 1, + STATE(609), 1, sym__inline, - STATE(297), 2, + STATE(285), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(13), 8, + STATE(98), 3, + sym_table_header, + sym_table_separator, + sym_table_row, + ACTIONS(11), 8, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_DOT, @@ -19956,29 +20339,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [7289] = 11, - ACTIONS(31), 1, + [7597] = 13, + ACTIONS(29), 1, sym__list_marker_task_begin, - ACTIONS(871), 1, - anon_sym_PIPE, - ACTIONS(873), 1, - anon_sym_LBRACK_CARET, + ACTIONS(69), 1, + sym__table_header_begin, + ACTIONS(71), 1, + sym__table_separator_begin, + ACTIONS(73), 1, + sym__table_row_begin, ACTIONS(877), 1, + anon_sym_LBRACK_CARET, + ACTIONS(881), 1, sym_list_marker_dash, - ACTIONS(879), 1, + ACTIONS(883), 1, sym_list_marker_star, - ACTIONS(881), 1, + ACTIONS(885), 1, sym_list_marker_plus, - ACTIONS(899), 1, - sym__block_close, STATE(30), 1, sym_list_marker_task, - STATE(614), 1, + STATE(609), 1, sym__inline, - STATE(297), 2, + STATE(285), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(13), 8, + STATE(91), 3, + sym_table_header, + sym_table_separator, + sym_table_row, + ACTIONS(11), 8, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_DOT, @@ -19987,85 +20376,188 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [7331] = 9, - ACTIONS(873), 1, - anon_sym_LBRACK_CARET, - ACTIONS(901), 1, - sym__block_quote_continuation, - STATE(303), 1, - sym__block_quote_prefix, - STATE(317), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(616), 1, - sym__inline, - STATE(775), 1, - sym__paragraph_inline_content, - STATE(807), 1, - sym__paragraph_content, - STATE(297), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(13), 9, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACE, + [7647] = 12, + ACTIONS(907), 1, + anon_sym_RBRACE, + ACTIONS(909), 1, anon_sym_DOT, + ACTIONS(912), 1, aux_sym_identifier_token1, + ACTIONS(915), 1, + sym__whitespace1, + ACTIONS(917), 1, + anon_sym_PERCENT, + ACTIONS(920), 1, + sym__id, + STATE(302), 1, + aux_sym_block_attribute_repeat1, + STATE(426), 1, + sym__comment_no_newline, + STATE(914), 1, + sym_key, + ACTIONS(922), 2, + sym__eof_or_newline, + sym__newline_inline, + STATE(394), 3, + sym_class, + sym_identifier, + sym_key_value, + ACTIONS(905), 6, + anon_sym_LBRACK, + anon_sym_LBRACK_CARET, + anon_sym_LBRACE, aux_sym__inline_token1, anon_sym_LBRACE_DASH, anon_sym_POUND, + [7692] = 12, + ACTIONS(909), 1, + anon_sym_DOT, + ACTIONS(912), 1, + aux_sym_identifier_token1, + ACTIONS(915), 1, + sym__whitespace1, + ACTIONS(917), 1, anon_sym_PERCENT, - [7368] = 10, - ACTIONS(31), 1, - sym__list_marker_task_begin, - ACTIONS(873), 1, - anon_sym_LBRACK_CARET, - ACTIONS(877), 1, - sym_list_marker_dash, - ACTIONS(879), 1, - sym_list_marker_star, - ACTIONS(881), 1, - sym_list_marker_plus, - ACTIONS(903), 1, - anon_sym_PIPE, - STATE(30), 1, - sym_list_marker_task, - STATE(614), 1, - sym__inline, - STATE(297), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(13), 8, + ACTIONS(920), 1, + sym__id, + ACTIONS(924), 1, + anon_sym_RBRACE, + STATE(306), 1, + aux_sym_block_attribute_repeat1, + STATE(426), 1, + sym__comment_no_newline, + STATE(914), 1, + sym_key, + ACTIONS(922), 2, + sym__eof_or_newline, + sym__newline_inline, + STATE(394), 3, + sym_class, + sym_identifier, + sym_key_value, + ACTIONS(905), 6, anon_sym_LBRACK, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE_DASH, anon_sym_POUND, - anon_sym_PERCENT, - [7407] = 10, - ACTIONS(31), 1, - sym__list_marker_task_begin, - ACTIONS(873), 1, - anon_sym_LBRACK_CARET, - ACTIONS(877), 1, + [7737] = 12, + ACTIONS(909), 1, + anon_sym_DOT, + ACTIONS(912), 1, + aux_sym_identifier_token1, + ACTIONS(915), 1, + sym__whitespace1, + ACTIONS(917), 1, + anon_sym_PERCENT, + ACTIONS(920), 1, + sym__id, + ACTIONS(926), 1, + anon_sym_RBRACE, + STATE(305), 1, + aux_sym_block_attribute_repeat1, + STATE(426), 1, + sym__comment_no_newline, + STATE(914), 1, + sym_key, + ACTIONS(922), 2, + sym__eof_or_newline, + sym__newline_inline, + STATE(394), 3, + sym_class, + sym_identifier, + sym_key_value, + ACTIONS(905), 6, + anon_sym_LBRACK, + anon_sym_LBRACK_CARET, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + anon_sym_POUND, + [7782] = 12, + ACTIONS(909), 1, + anon_sym_DOT, + ACTIONS(912), 1, + aux_sym_identifier_token1, + ACTIONS(915), 1, + sym__whitespace1, + ACTIONS(917), 1, + anon_sym_PERCENT, + ACTIONS(920), 1, + sym__id, + ACTIONS(928), 1, + anon_sym_RBRACE, + STATE(309), 1, + aux_sym_block_attribute_repeat1, + STATE(426), 1, + sym__comment_no_newline, + STATE(914), 1, + sym_key, + ACTIONS(922), 2, + sym__eof_or_newline, + sym__newline_inline, + STATE(394), 3, + sym_class, + sym_identifier, + sym_key_value, + ACTIONS(905), 6, + anon_sym_LBRACK, + anon_sym_LBRACK_CARET, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + anon_sym_POUND, + [7827] = 12, + ACTIONS(909), 1, + anon_sym_DOT, + ACTIONS(912), 1, + aux_sym_identifier_token1, + ACTIONS(915), 1, + sym__whitespace1, + ACTIONS(917), 1, + anon_sym_PERCENT, + ACTIONS(920), 1, + sym__id, + ACTIONS(930), 1, + anon_sym_RBRACE, + STATE(311), 1, + aux_sym_block_attribute_repeat1, + STATE(426), 1, + sym__comment_no_newline, + STATE(914), 1, + sym_key, + ACTIONS(922), 2, + sym__eof_or_newline, + sym__newline_inline, + STATE(394), 3, + sym_class, + sym_identifier, + sym_key_value, + ACTIONS(905), 6, + anon_sym_LBRACK, + anon_sym_LBRACK_CARET, + anon_sym_LBRACE, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + anon_sym_POUND, + [7872] = 4, + ACTIONS(932), 1, + sym__block_quote_continuation, + STATE(231), 1, + aux_sym__block_quote_prefix_repeat1, + ACTIONS(868), 8, + sym__block_close, sym_list_marker_dash, - ACTIONS(879), 1, sym_list_marker_star, - ACTIONS(881), 1, sym_list_marker_plus, - ACTIONS(905), 1, - anon_sym_PIPE, - STATE(30), 1, - sym_list_marker_task, - STATE(614), 1, - sym__inline, - STATE(297), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(13), 8, + sym__list_marker_task_begin, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + ACTIONS(866), 9, anon_sym_LBRACK, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -20073,28 +20565,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [7446] = 10, - ACTIONS(31), 1, - sym__list_marker_task_begin, - ACTIONS(873), 1, - anon_sym_LBRACK_CARET, - ACTIONS(877), 1, + [7900] = 4, + ACTIONS(939), 1, + sym__block_quote_continuation, + STATE(231), 1, + aux_sym__block_quote_prefix_repeat1, + ACTIONS(937), 8, + sym__block_close, sym_list_marker_dash, - ACTIONS(879), 1, sym_list_marker_star, - ACTIONS(881), 1, sym_list_marker_plus, - ACTIONS(907), 1, - anon_sym_PIPE, - STATE(30), 1, - sym_list_marker_task, - STATE(614), 1, - sym__inline, - STATE(297), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(13), 8, + sym__list_marker_task_begin, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + ACTIONS(935), 9, anon_sym_LBRACK, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -20102,28 +20589,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [7485] = 10, - ACTIONS(31), 1, - sym__list_marker_task_begin, - ACTIONS(873), 1, + [7928] = 2, + ACTIONS(458), 9, + anon_sym_LBRACK, anon_sym_LBRACK_CARET, - ACTIONS(877), 1, + anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + anon_sym_POUND, + anon_sym_PERCENT, + ACTIONS(460), 9, + sym__block_close, sym_list_marker_dash, - ACTIONS(879), 1, sym_list_marker_star, - ACTIONS(881), 1, sym_list_marker_plus, - ACTIONS(909), 1, - anon_sym_PIPE, - STATE(30), 1, - sym_list_marker_task, - STATE(614), 1, - sym__inline, - STATE(297), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(13), 8, + sym__list_marker_task_begin, + sym__block_quote_continuation, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + [7951] = 4, + ACTIONS(941), 1, + sym__block_quote_continuation, + STATE(234), 1, + aux_sym__block_quote_prefix_repeat1, + ACTIONS(868), 7, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + ACTIONS(866), 9, anon_sym_LBRACK, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -20131,27 +20633,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [7524] = 10, - ACTIONS(31), 1, + [7978] = 4, + ACTIONS(65), 1, + sym__block_quote_continuation, + STATE(234), 1, + aux_sym__block_quote_prefix_repeat1, + ACTIONS(937), 7, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, sym__list_marker_task_begin, - ACTIONS(871), 1, - anon_sym_PIPE, - ACTIONS(873), 1, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + ACTIONS(935), 9, + anon_sym_LBRACK, anon_sym_LBRACK_CARET, - ACTIONS(877), 1, + anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + anon_sym_POUND, + anon_sym_PERCENT, + [8005] = 2, + ACTIONS(460), 8, sym_list_marker_dash, - ACTIONS(879), 1, sym_list_marker_star, - ACTIONS(881), 1, sym_list_marker_plus, - STATE(30), 1, - sym_list_marker_task, - STATE(614), 1, + sym__list_marker_task_begin, + sym__block_quote_continuation, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + ACTIONS(458), 9, + anon_sym_LBRACK, + anon_sym_LBRACK_CARET, + anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + aux_sym__inline_token1, + anon_sym_LBRACE_DASH, + anon_sym_POUND, + anon_sym_PERCENT, + [8027] = 9, + ACTIONS(877), 1, + anon_sym_LBRACK_CARET, + ACTIONS(944), 1, + sym__block_quote_continuation, + STATE(310), 1, + sym__block_quote_prefix, + STATE(316), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(629), 1, sym__inline, - STATE(297), 2, + STATE(737), 1, + sym__paragraph_content, + STATE(799), 1, + sym__paragraph_inline_content, + STATE(285), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(13), 8, + ACTIONS(11), 8, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_DOT, @@ -20160,25 +20703,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [7563] = 8, - ACTIONS(913), 1, + [8063] = 11, + ACTIONS(448), 1, + sym__table_header_begin, + ACTIONS(450), 1, + sym__table_separator_begin, + ACTIONS(452), 1, + sym__table_row_begin, + ACTIONS(503), 1, + sym__block_quote_continuation, + ACTIONS(946), 1, + sym__newline, + ACTIONS(948), 1, + sym__table_caption_begin, + STATE(444), 1, + sym__block_quote_prefix, + STATE(454), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(627), 1, + sym_table_caption, + ACTIONS(499), 2, + sym__list_item_continuation, + sym__list_item_end, + STATE(245), 5, + sym__table_row, + sym_table_header, + sym_table_separator, + sym_table_row, + aux_sym_table_repeat1, + [8102] = 8, + ACTIONS(952), 1, anon_sym_NULL, - ACTIONS(915), 1, + ACTIONS(954), 1, anon_sym_LBRACK_CARET, - ACTIONS(917), 1, + ACTIONS(956), 1, sym__table_caption_end, - STATE(237), 1, + STATE(243), 1, aux_sym_table_caption_repeat1, - STATE(313), 1, + STATE(315), 1, sym__inline_line, - STATE(1085), 1, + STATE(972), 1, sym__inline, - STATE(300), 2, + STATE(312), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(911), 9, + ACTIONS(950), 8, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -20186,25 +20756,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [7597] = 8, - ACTIONS(915), 1, + [8135] = 8, + ACTIONS(954), 1, anon_sym_LBRACK_CARET, - ACTIONS(919), 1, + ACTIONS(958), 1, anon_sym_NULL, - ACTIONS(921), 1, + ACTIONS(960), 1, sym__table_caption_end, - STATE(237), 1, + STATE(243), 1, aux_sym_table_caption_repeat1, - STATE(313), 1, + STATE(315), 1, sym__inline_line, - STATE(1085), 1, + STATE(972), 1, sym__inline, - STATE(300), 2, + STATE(312), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(911), 9, + ACTIONS(950), 8, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -20212,25 +20781,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [7631] = 8, - ACTIONS(915), 1, + [8168] = 8, + ACTIONS(954), 1, anon_sym_LBRACK_CARET, - ACTIONS(923), 1, + ACTIONS(962), 1, anon_sym_NULL, - ACTIONS(925), 1, + ACTIONS(964), 1, sym__table_caption_end, - STATE(237), 1, + STATE(243), 1, aux_sym_table_caption_repeat1, - STATE(313), 1, + STATE(315), 1, sym__inline_line, - STATE(1085), 1, + STATE(972), 1, sym__inline, - STATE(300), 2, + STATE(312), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(911), 9, + ACTIONS(950), 8, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -20238,25 +20806,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [7665] = 8, - ACTIONS(930), 1, - anon_sym_NULL, - ACTIONS(932), 1, + [8201] = 8, + ACTIONS(954), 1, anon_sym_LBRACK_CARET, - ACTIONS(935), 1, + ACTIONS(966), 1, + anon_sym_NULL, + ACTIONS(968), 1, sym__table_caption_end, - STATE(237), 1, + STATE(243), 1, aux_sym_table_caption_repeat1, - STATE(313), 1, + STATE(315), 1, sym__inline_line, - STATE(1085), 1, + STATE(972), 1, sym__inline, - STATE(300), 2, + STATE(312), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(927), 9, + ACTIONS(950), 8, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -20264,21 +20831,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [7699] = 4, - ACTIONS(937), 1, - sym__block_quote_continuation, - STATE(238), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(839), 5, - sym__block_close, - sym_list_marker_dash, - sym_list_marker_star, - sym_list_marker_plus, - sym__list_marker_task_begin, - ACTIONS(837), 10, - anon_sym_LBRACK, - anon_sym_PIPE, + [8234] = 8, + ACTIONS(973), 1, + anon_sym_NULL, + ACTIONS(975), 1, anon_sym_LBRACK_CARET, + ACTIONS(978), 1, + sym__table_caption_end, + STATE(243), 1, + aux_sym_table_caption_repeat1, + STATE(315), 1, + sym__inline_line, + STATE(972), 1, + sym__inline, + STATE(312), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(970), 8, + anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -20286,24 +20856,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [7725] = 7, - ACTIONS(943), 1, - sym_table_cell_alignment, - ACTIONS(945), 1, + [8267] = 8, + ACTIONS(954), 1, anon_sym_LBRACK_CARET, - STATE(720), 1, - sym_table_cell, - STATE(1089), 1, + ACTIONS(980), 1, + anon_sym_NULL, + ACTIONS(982), 1, + sym__table_caption_end, + STATE(243), 1, + aux_sym_table_caption_repeat1, + STATE(315), 1, + sym__inline_line, + STATE(972), 1, sym__inline, - ACTIONS(861), 2, - sym__eof_or_newline, - sym__newline_inline, - STATE(307), 2, + STATE(312), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(940), 9, + ACTIONS(950), 8, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -20311,21 +20881,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [7757] = 4, - ACTIONS(952), 1, + [8300] = 8, + ACTIONS(515), 1, sym__block_quote_continuation, - STATE(238), 1, + ACTIONS(984), 1, + sym__table_header_begin, + ACTIONS(987), 1, + sym__table_separator_begin, + ACTIONS(990), 1, + sym__table_row_begin, + STATE(444), 1, + sym__block_quote_prefix, + STATE(454), 1, aux_sym__block_quote_prefix_repeat1, - ACTIONS(950), 5, - sym__block_close, - sym_list_marker_dash, - sym_list_marker_star, - sym_list_marker_plus, - sym__list_marker_task_begin, - ACTIONS(948), 10, - anon_sym_LBRACK, - anon_sym_PIPE, + ACTIONS(511), 4, + sym__newline, + sym__list_item_continuation, + sym__list_item_end, + sym__table_caption_begin, + STATE(245), 5, + sym__table_row, + sym_table_header, + sym_table_separator, + sym_table_row, + aux_sym_table_repeat1, + [8332] = 6, + ACTIONS(996), 1, anon_sym_LBRACK_CARET, + STATE(953), 1, + sym_link_label, + STATE(969), 1, + sym__inline, + ACTIONS(922), 2, + sym__eof_or_newline, + sym__newline_inline, + STATE(304), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(993), 8, + anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -20333,25 +20927,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [7783] = 8, - ACTIONS(915), 1, + [8360] = 7, + ACTIONS(877), 1, anon_sym_LBRACK_CARET, - ACTIONS(954), 1, - anon_sym_NULL, - ACTIONS(956), 1, - sym__table_caption_end, - STATE(237), 1, - aux_sym_table_caption_repeat1, - STATE(313), 1, - sym__inline_line, - STATE(1085), 1, + ACTIONS(944), 1, + sym__block_quote_continuation, + STATE(300), 1, + sym__block_quote_prefix, + STATE(316), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(780), 1, sym__inline, - STATE(300), 2, + STATE(285), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(911), 9, + ACTIONS(11), 8, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -20359,25 +20950,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [7817] = 8, - ACTIONS(915), 1, + [8390] = 11, + ACTIONS(380), 1, + sym__table_header_begin, + ACTIONS(382), 1, + sym__table_separator_begin, + ACTIONS(384), 1, + sym__table_row_begin, + ACTIONS(499), 1, + sym__indented_content_spacer, + ACTIONS(503), 1, + sym__block_quote_continuation, + ACTIONS(999), 1, + sym__newline, + ACTIONS(1001), 1, + sym__table_caption_begin, + STATE(437), 1, + sym__block_quote_prefix, + STATE(454), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(1018), 1, + sym_table_caption, + STATE(284), 5, + sym__table_row, + sym_table_header, + sym_table_separator, + sym_table_row, + aux_sym_table_repeat1, + [8428] = 11, + ACTIONS(482), 1, + sym__table_header_begin, + ACTIONS(484), 1, + sym__table_separator_begin, + ACTIONS(486), 1, + sym__table_row_begin, + ACTIONS(499), 1, + sym__block_close, + ACTIONS(503), 1, + sym__block_quote_continuation, + ACTIONS(1003), 1, + sym__newline, + ACTIONS(1005), 1, + sym__table_caption_begin, + STATE(440), 1, + sym__block_quote_prefix, + STATE(454), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(809), 1, + sym_table_caption, + STATE(258), 5, + sym__table_row, + sym_table_header, + sym_table_separator, + sym_table_row, + aux_sym_table_repeat1, + [8466] = 6, + ACTIONS(996), 1, anon_sym_LBRACK_CARET, - ACTIONS(958), 1, - anon_sym_NULL, - ACTIONS(960), 1, - sym__table_caption_end, - STATE(237), 1, - aux_sym_table_caption_repeat1, - STATE(313), 1, - sym__inline_line, - STATE(1085), 1, + STATE(969), 1, sym__inline, - STATE(300), 2, + STATE(1149), 1, + sym_link_label, + ACTIONS(922), 2, + sym__eof_or_newline, + sym__newline_inline, + STATE(304), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(911), 9, + ACTIONS(993), 8, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -20385,24 +21026,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [7851] = 7, - ACTIONS(945), 1, + [8494] = 6, + ACTIONS(996), 1, anon_sym_LBRACK_CARET, - ACTIONS(962), 1, - sym_table_cell_alignment, - STATE(836), 1, - sym_table_cell, - STATE(1089), 1, + STATE(969), 1, sym__inline, - ACTIONS(861), 2, + STATE(1150), 1, + sym_link_label, + ACTIONS(922), 2, sym__eof_or_newline, sym__newline_inline, - STATE(307), 2, + STATE(304), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(940), 9, + ACTIONS(993), 8, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -20410,24 +21048,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [7883] = 7, - ACTIONS(945), 1, + [8522] = 6, + ACTIONS(996), 1, anon_sym_LBRACK_CARET, - ACTIONS(964), 1, - sym_table_cell_alignment, - STATE(860), 1, - sym_table_cell, - STATE(1089), 1, + STATE(969), 1, sym__inline, - ACTIONS(861), 2, + STATE(1151), 1, + sym_link_label, + ACTIONS(922), 2, sym__eof_or_newline, sym__newline_inline, - STATE(307), 2, + STATE(304), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(940), 9, + ACTIONS(993), 8, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -20435,24 +21070,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [7915] = 7, - ACTIONS(945), 1, + [8550] = 6, + ACTIONS(996), 1, anon_sym_LBRACK_CARET, - ACTIONS(966), 1, - sym_table_cell_alignment, - STATE(864), 1, - sym_table_cell, - STATE(1089), 1, + STATE(969), 1, sym__inline, - ACTIONS(861), 2, + STATE(1152), 1, + sym_link_label, + ACTIONS(922), 2, sym__eof_or_newline, sym__newline_inline, - STATE(307), 2, + STATE(304), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(940), 9, + ACTIONS(993), 8, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -20460,24 +21092,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [7947] = 7, - ACTIONS(945), 1, + [8578] = 6, + ACTIONS(954), 1, anon_sym_LBRACK_CARET, - ACTIONS(968), 1, - sym_table_cell_alignment, - STATE(869), 1, - sym_table_cell, - STATE(1089), 1, + STATE(637), 1, + sym__inline_line, + STATE(1156), 1, sym__inline, - ACTIONS(861), 2, - sym__eof_or_newline, - sym__newline_inline, - STATE(307), 2, + STATE(1157), 1, + sym__heading_content, + STATE(312), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(940), 9, + ACTIONS(950), 8, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -20485,24 +21113,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [7979] = 7, - ACTIONS(945), 1, + [8605] = 6, + ACTIONS(954), 1, anon_sym_LBRACK_CARET, - ACTIONS(970), 1, - sym_table_cell_alignment, - STATE(873), 1, - sym_table_cell, - STATE(1089), 1, + STATE(242), 1, + aux_sym_table_caption_repeat1, + STATE(315), 1, + sym__inline_line, + STATE(972), 1, sym__inline, - ACTIONS(861), 2, - sym__eof_or_newline, - sym__newline_inline, - STATE(307), 2, + STATE(312), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(940), 9, + ACTIONS(950), 8, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -20510,24 +21134,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [8011] = 7, - ACTIONS(945), 1, + [8632] = 6, + ACTIONS(1009), 1, anon_sym_LBRACK_CARET, - ACTIONS(972), 1, - sym_table_cell_alignment, - STATE(880), 1, + ACTIONS(1011), 1, + sym__newline, + STATE(965), 1, sym_table_cell, - STATE(1089), 1, + STATE(1090), 1, sym__inline, - ACTIONS(861), 2, - sym__eof_or_newline, - sym__newline_inline, - STATE(307), 2, + STATE(303), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(940), 9, + ACTIONS(1007), 8, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -20535,24 +21155,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [8043] = 7, - ACTIONS(945), 1, + [8659] = 6, + ACTIONS(954), 1, anon_sym_LBRACK_CARET, - ACTIONS(974), 1, - sym_table_cell_alignment, - STATE(887), 1, - sym_table_cell, - STATE(1089), 1, + STATE(244), 1, + aux_sym_table_caption_repeat1, + STATE(315), 1, + sym__inline_line, + STATE(972), 1, sym__inline, - ACTIONS(861), 2, - sym__eof_or_newline, - sym__newline_inline, - STATE(307), 2, + STATE(312), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(940), 9, + ACTIONS(950), 8, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -20560,24 +21176,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [8075] = 7, - ACTIONS(945), 1, + [8686] = 8, + ACTIONS(515), 1, + sym__block_quote_continuation, + ACTIONS(1013), 1, + sym__table_header_begin, + ACTIONS(1016), 1, + sym__table_separator_begin, + ACTIONS(1019), 1, + sym__table_row_begin, + STATE(440), 1, + sym__block_quote_prefix, + STATE(454), 1, + aux_sym__block_quote_prefix_repeat1, + ACTIONS(511), 3, + sym__block_close, + sym__newline, + sym__table_caption_begin, + STATE(258), 5, + sym__table_row, + sym_table_header, + sym_table_separator, + sym_table_row, + aux_sym_table_repeat1, + [8717] = 6, + ACTIONS(1009), 1, anon_sym_LBRACK_CARET, - ACTIONS(976), 1, - sym_table_cell_alignment, - STATE(895), 1, + ACTIONS(1022), 1, + sym__newline, + STATE(965), 1, sym_table_cell, - STATE(1089), 1, + STATE(1090), 1, sym__inline, - ACTIONS(861), 2, - sym__eof_or_newline, - sym__newline_inline, - STATE(307), 2, + STATE(303), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(940), 9, + ACTIONS(1007), 8, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -20585,24 +21220,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [8107] = 7, - ACTIONS(945), 1, + [8744] = 6, + ACTIONS(1009), 1, anon_sym_LBRACK_CARET, - ACTIONS(978), 1, - sym_table_cell_alignment, - STATE(900), 1, + ACTIONS(1024), 1, + sym__newline, + STATE(965), 1, sym_table_cell, - STATE(1089), 1, + STATE(1090), 1, sym__inline, - ACTIONS(861), 2, - sym__eof_or_newline, - sym__newline_inline, - STATE(307), 2, + STATE(303), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(940), 9, + ACTIONS(1007), 8, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -20610,22 +21241,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [8139] = 6, - ACTIONS(983), 1, + [8771] = 6, + ACTIONS(1009), 1, anon_sym_LBRACK_CARET, - STATE(1030), 1, - sym_link_label, - STATE(1040), 1, + ACTIONS(1026), 1, + sym__newline, + STATE(965), 1, + sym_table_cell, + STATE(1090), 1, sym__inline, - ACTIONS(861), 2, - sym__eof_or_newline, - sym__newline_inline, - STATE(304), 2, + STATE(303), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(980), 9, + ACTIONS(1007), 8, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -20633,20 +21262,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [8168] = 4, - ACTIONS(67), 1, - sym__block_quote_continuation, - STATE(254), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(950), 4, - sym_list_marker_dash, - sym_list_marker_star, - sym_list_marker_plus, - sym__list_marker_task_begin, - ACTIONS(948), 10, - anon_sym_LBRACK, - anon_sym_PIPE, + [8798] = 6, + ACTIONS(1009), 1, anon_sym_LBRACK_CARET, + ACTIONS(1028), 1, + sym__newline, + STATE(965), 1, + sym_table_cell, + STATE(1090), 1, + sym__inline, + STATE(303), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(1007), 8, + anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -20654,20 +21283,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [8193] = 4, - ACTIONS(986), 1, - sym__block_quote_continuation, - STATE(254), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(839), 4, - sym_list_marker_dash, - sym_list_marker_star, - sym_list_marker_plus, - sym__list_marker_task_begin, - ACTIONS(837), 10, - anon_sym_LBRACK, - anon_sym_PIPE, + [8825] = 6, + ACTIONS(1009), 1, anon_sym_LBRACK_CARET, + ACTIONS(1030), 1, + sym__newline, + STATE(965), 1, + sym_table_cell, + STATE(1090), 1, + sym__inline, + STATE(303), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(1007), 8, + anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -20675,18 +21304,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [8218] = 2, - ACTIONS(430), 6, - sym__block_close, - sym_list_marker_dash, - sym_list_marker_star, - sym_list_marker_plus, - sym__list_marker_task_begin, - sym__block_quote_continuation, - ACTIONS(428), 10, - anon_sym_LBRACK, - anon_sym_PIPE, + [8852] = 6, + ACTIONS(1009), 1, anon_sym_LBRACK_CARET, + ACTIONS(1032), 1, + sym__newline, + STATE(965), 1, + sym_table_cell, + STATE(1090), 1, + sym__inline, + STATE(303), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(1007), 8, + anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -20694,22 +21325,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [8239] = 6, - ACTIONS(983), 1, + [8879] = 6, + ACTIONS(1009), 1, anon_sym_LBRACK_CARET, - STATE(1040), 1, + ACTIONS(1034), 1, + sym__newline, + STATE(965), 1, + sym_table_cell, + STATE(1090), 1, sym__inline, - STATE(1187), 1, - sym_link_label, - ACTIONS(861), 2, - sym__eof_or_newline, - sym__newline_inline, - STATE(304), 2, + STATE(303), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(980), 9, + ACTIONS(1007), 8, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -20717,23 +21346,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [8268] = 7, - ACTIONS(873), 1, + [8906] = 6, + ACTIONS(1009), 1, anon_sym_LBRACK_CARET, - ACTIONS(901), 1, - sym__block_quote_continuation, - STATE(306), 1, - sym__block_quote_prefix, - STATE(317), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(858), 1, + ACTIONS(1036), 1, + sym__newline, + STATE(965), 1, + sym_table_cell, + STATE(1090), 1, sym__inline, - STATE(297), 2, + STATE(303), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(13), 9, + ACTIONS(1007), 8, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -20741,22 +21367,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [8299] = 6, - ACTIONS(983), 1, + [8933] = 6, + ACTIONS(1009), 1, anon_sym_LBRACK_CARET, - STATE(1040), 1, + ACTIONS(1038), 1, + sym__newline, + STATE(965), 1, + sym_table_cell, + STATE(1090), 1, sym__inline, - STATE(1184), 1, - sym_link_label, - ACTIONS(861), 2, - sym__eof_or_newline, - sym__newline_inline, - STATE(304), 2, + STATE(303), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(980), 9, + ACTIONS(1007), 8, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -20764,22 +21388,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [8328] = 6, - ACTIONS(983), 1, + [8960] = 6, + ACTIONS(1009), 1, anon_sym_LBRACK_CARET, - STATE(1040), 1, - sym__inline, - STATE(1185), 1, - sym_link_label, - ACTIONS(861), 2, - sym__eof_or_newline, - sym__newline_inline, - STATE(304), 2, + ACTIONS(1040), 1, + sym__newline, + STATE(965), 1, + sym_table_cell, + STATE(1090), 1, + sym__inline, + STATE(303), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(980), 9, + ACTIONS(1007), 8, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -20787,22 +21409,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [8357] = 6, - ACTIONS(983), 1, + [8987] = 6, + ACTIONS(1009), 1, anon_sym_LBRACK_CARET, - STATE(1040), 1, + ACTIONS(1042), 1, + sym__newline, + STATE(965), 1, + sym_table_cell, + STATE(1090), 1, sym__inline, - STATE(1186), 1, - sym_link_label, - ACTIONS(861), 2, - sym__eof_or_newline, - sym__newline_inline, - STATE(304), 2, + STATE(303), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(980), 9, + ACTIONS(1007), 8, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -20810,21 +21430,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [8386] = 6, - ACTIONS(991), 1, + [9014] = 6, + ACTIONS(1009), 1, anon_sym_LBRACK_CARET, - ACTIONS(993), 1, + ACTIONS(1044), 1, sym__newline, - STATE(1089), 1, - sym__inline, - STATE(1148), 1, + STATE(965), 1, sym_table_cell, - STATE(307), 2, + STATE(1090), 1, + sym__inline, + STATE(303), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(989), 9, + ACTIONS(1007), 8, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -20832,21 +21451,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [8414] = 6, - ACTIONS(962), 1, - sym_table_cell_alignment, - ACTIONS(991), 1, + [9041] = 6, + ACTIONS(1009), 1, anon_sym_LBRACK_CARET, - STATE(836), 1, + ACTIONS(1046), 1, + sym__newline, + STATE(965), 1, sym_table_cell, - STATE(1089), 1, + STATE(1090), 1, sym__inline, - STATE(307), 2, + STATE(303), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(989), 9, + ACTIONS(1007), 8, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -20854,21 +21472,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [8442] = 6, - ACTIONS(915), 1, + [9068] = 6, + ACTIONS(1009), 1, anon_sym_LBRACK_CARET, - STATE(236), 1, - aux_sym_table_caption_repeat1, - STATE(313), 1, - sym__inline_line, - STATE(1085), 1, + ACTIONS(1048), 1, + sym__newline, + STATE(965), 1, + sym_table_cell, + STATE(1090), 1, sym__inline, - STATE(300), 2, + STATE(303), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(911), 9, + ACTIONS(1007), 8, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -20876,39 +21493,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [8470] = 6, - ACTIONS(943), 1, - sym_table_cell_alignment, - ACTIONS(991), 1, + [9095] = 6, + ACTIONS(1009), 1, anon_sym_LBRACK_CARET, - STATE(720), 1, + ACTIONS(1050), 1, + sym__newline, + STATE(965), 1, sym_table_cell, - STATE(1089), 1, + STATE(1090), 1, sym__inline, - STATE(307), 2, + STATE(303), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(989), 9, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - [8498] = 2, - ACTIONS(430), 5, - sym_list_marker_dash, - sym_list_marker_star, - sym_list_marker_plus, - sym__list_marker_task_begin, - sym__block_quote_continuation, - ACTIONS(428), 10, + ACTIONS(1007), 8, anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -20916,21 +21514,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [8518] = 6, - ACTIONS(991), 1, + [9122] = 6, + ACTIONS(1009), 1, anon_sym_LBRACK_CARET, - ACTIONS(995), 1, + ACTIONS(1052), 1, sym__newline, - STATE(1089), 1, - sym__inline, - STATE(1148), 1, + STATE(965), 1, sym_table_cell, - STATE(307), 2, + STATE(1090), 1, + sym__inline, + STATE(303), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(989), 9, + ACTIONS(1007), 8, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -20938,21 +21535,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [8546] = 6, - ACTIONS(991), 1, + [9149] = 6, + ACTIONS(1009), 1, anon_sym_LBRACK_CARET, - ACTIONS(997), 1, + ACTIONS(1054), 1, sym__newline, - STATE(1089), 1, - sym__inline, - STATE(1148), 1, + STATE(965), 1, sym_table_cell, - STATE(307), 2, + STATE(1090), 1, + sym__inline, + STATE(303), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(989), 9, + ACTIONS(1007), 8, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -20960,21 +21556,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [8574] = 6, - ACTIONS(915), 1, + [9176] = 6, + ACTIONS(1009), 1, anon_sym_LBRACK_CARET, - STATE(641), 1, - sym__inline_line, - STATE(1051), 1, + ACTIONS(1056), 1, + sym__newline, + STATE(965), 1, + sym_table_cell, + STATE(1090), 1, sym__inline, - STATE(1191), 1, - sym__heading_content, - STATE(300), 2, + STATE(303), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(911), 9, + ACTIONS(1007), 8, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -20982,21 +21577,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [8602] = 6, - ACTIONS(991), 1, + [9203] = 6, + ACTIONS(1009), 1, anon_sym_LBRACK_CARET, - ACTIONS(999), 1, + ACTIONS(1058), 1, sym__newline, - STATE(1089), 1, - sym__inline, - STATE(1148), 1, + STATE(965), 1, sym_table_cell, - STATE(307), 2, + STATE(1090), 1, + sym__inline, + STATE(303), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(989), 9, + ACTIONS(1007), 8, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -21004,21 +21598,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [8630] = 6, - ACTIONS(991), 1, + [9230] = 6, + ACTIONS(954), 1, anon_sym_LBRACK_CARET, - ACTIONS(1001), 1, - sym__newline, - STATE(1089), 1, + STATE(637), 1, + sym__inline_line, + STATE(958), 1, + sym__heading_content, + STATE(1156), 1, sym__inline, - STATE(1148), 1, - sym_table_cell, - STATE(307), 2, + STATE(312), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(989), 9, + ACTIONS(950), 8, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -21026,21 +21619,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [8658] = 6, - ACTIONS(991), 1, + [9257] = 6, + ACTIONS(954), 1, anon_sym_LBRACK_CARET, - ACTIONS(1003), 1, - sym__newline, - STATE(1089), 1, + STATE(241), 1, + aux_sym_table_caption_repeat1, + STATE(315), 1, + sym__inline_line, + STATE(972), 1, sym__inline, - STATE(1148), 1, - sym_table_cell, - STATE(307), 2, + STATE(312), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(989), 9, + ACTIONS(950), 8, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -21048,21 +21640,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [8686] = 6, - ACTIONS(991), 1, + [9284] = 6, + ACTIONS(954), 1, anon_sym_LBRACK_CARET, - ACTIONS(1005), 1, - sym__newline, - STATE(1089), 1, + STATE(637), 1, + sym__inline_line, + STATE(961), 1, + sym__heading_content, + STATE(1156), 1, sym__inline, - STATE(1148), 1, - sym_table_cell, - STATE(307), 2, + STATE(312), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(989), 9, + ACTIONS(950), 8, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -21070,21 +21661,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [8714] = 6, - ACTIONS(991), 1, + [9311] = 6, + ACTIONS(954), 1, anon_sym_LBRACK_CARET, - ACTIONS(1007), 1, - sym__newline, - STATE(1089), 1, + STATE(239), 1, + aux_sym_table_caption_repeat1, + STATE(315), 1, + sym__inline_line, + STATE(972), 1, sym__inline, - STATE(1148), 1, - sym_table_cell, - STATE(307), 2, + STATE(312), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(989), 9, + ACTIONS(950), 8, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -21092,21 +21682,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [8742] = 6, - ACTIONS(991), 1, + [9338] = 6, + ACTIONS(954), 1, anon_sym_LBRACK_CARET, - ACTIONS(1009), 1, - sym__newline, - STATE(1089), 1, + STATE(637), 1, + sym__inline_line, + STATE(1135), 1, + sym__heading_content, + STATE(1156), 1, sym__inline, - STATE(1148), 1, - sym_table_cell, - STATE(307), 2, + STATE(312), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(989), 9, + ACTIONS(950), 8, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -21114,21 +21703,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [8770] = 6, - ACTIONS(991), 1, + [9365] = 6, + ACTIONS(954), 1, anon_sym_LBRACK_CARET, - ACTIONS(1011), 1, - sym__newline, - STATE(1089), 1, + STATE(240), 1, + aux_sym_table_caption_repeat1, + STATE(315), 1, + sym__inline_line, + STATE(972), 1, sym__inline, - STATE(1148), 1, - sym_table_cell, - STATE(307), 2, + STATE(312), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(989), 9, + ACTIONS(950), 8, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -21136,21 +21724,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [8798] = 6, - ACTIONS(991), 1, - anon_sym_LBRACK_CARET, - ACTIONS(1013), 1, + [9392] = 8, + ACTIONS(515), 1, + sym__block_quote_continuation, + ACTIONS(1060), 1, + sym__table_header_begin, + ACTIONS(1063), 1, + sym__table_separator_begin, + ACTIONS(1066), 1, + sym__table_row_begin, + STATE(437), 1, + sym__block_quote_prefix, + STATE(454), 1, + aux_sym__block_quote_prefix_repeat1, + ACTIONS(511), 3, sym__newline, - STATE(1089), 1, - sym__inline, - STATE(1148), 1, - sym_table_cell, - STATE(307), 2, + sym__indented_content_spacer, + sym__table_caption_begin, + STATE(284), 5, + sym__table_row, + sym_table_header, + sym_table_separator, + sym_table_row, + aux_sym_table_repeat1, + [9423] = 4, + ACTIONS(877), 1, + anon_sym_LBRACK_CARET, + ACTIONS(1071), 2, + sym__eof_or_newline, + sym__newline_inline, + STATE(292), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(989), 9, + ACTIONS(1069), 8, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -21158,21 +21765,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [8826] = 6, - ACTIONS(991), 1, + [9445] = 5, + ACTIONS(954), 1, anon_sym_LBRACK_CARET, - ACTIONS(1015), 1, - sym__newline, - STATE(1089), 1, + STATE(789), 1, + sym__inline_line, + STATE(1156), 1, sym__inline, - STATE(1148), 1, - sym_table_cell, - STATE(307), 2, + STATE(312), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(989), 9, + ACTIONS(950), 8, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -21180,21 +21784,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [8854] = 6, - ACTIONS(991), 1, + [9469] = 5, + ACTIONS(1009), 1, anon_sym_LBRACK_CARET, - ACTIONS(1017), 1, - sym__newline, - STATE(1089), 1, - sym__inline, - STATE(1148), 1, + STATE(829), 1, sym_table_cell, - STATE(307), 2, + STATE(1090), 1, + sym__inline, + STATE(303), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(989), 9, + ACTIONS(1007), 8, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -21202,21 +21803,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [8882] = 6, - ACTIONS(915), 1, + [9493] = 5, + ACTIONS(1009), 1, anon_sym_LBRACK_CARET, - STATE(641), 1, - sym__inline_line, - STATE(1051), 1, + STATE(806), 1, + sym_table_cell, + STATE(1090), 1, sym__inline, - STATE(1082), 1, - sym__heading_content, - STATE(300), 2, + STATE(303), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(911), 9, + ACTIONS(1007), 8, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -21224,21 +21822,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [8910] = 6, - ACTIONS(915), 1, + [9517] = 5, + ACTIONS(1009), 1, anon_sym_LBRACK_CARET, - STATE(234), 1, - aux_sym_table_caption_repeat1, - STATE(313), 1, - sym__inline_line, - STATE(1085), 1, + STATE(853), 1, + sym_table_cell, + STATE(1090), 1, sym__inline, - STATE(300), 2, + STATE(303), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(911), 9, + ACTIONS(1007), 8, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -21246,21 +21841,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [8938] = 6, - ACTIONS(964), 1, - sym_table_cell_alignment, - ACTIONS(991), 1, + [9541] = 5, + ACTIONS(1009), 1, anon_sym_LBRACK_CARET, - STATE(860), 1, + STATE(881), 1, sym_table_cell, - STATE(1089), 1, + STATE(1090), 1, sym__inline, - STATE(307), 2, + STATE(303), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(989), 9, + ACTIONS(1007), 8, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -21268,21 +21860,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [8966] = 6, - ACTIONS(966), 1, - sym_table_cell_alignment, - ACTIONS(991), 1, + [9565] = 5, + ACTIONS(1009), 1, anon_sym_LBRACK_CARET, - STATE(864), 1, + STATE(874), 1, sym_table_cell, - STATE(1089), 1, + STATE(1090), 1, sym__inline, - STATE(307), 2, + STATE(303), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(989), 9, + ACTIONS(1007), 8, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -21290,21 +21879,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [8994] = 6, - ACTIONS(915), 1, + [9589] = 4, + ACTIONS(1076), 1, anon_sym_LBRACK_CARET, - STATE(641), 1, - sym__inline_line, - STATE(994), 1, - sym__heading_content, - STATE(1051), 1, - sym__inline, - STATE(300), 2, + ACTIONS(1079), 2, + sym__eof_or_newline, + sym__newline_inline, + STATE(292), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(911), 9, + ACTIONS(1073), 8, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -21312,21 +21897,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [9022] = 6, - ACTIONS(915), 1, + [9611] = 5, + ACTIONS(1009), 1, anon_sym_LBRACK_CARET, - STATE(242), 1, - aux_sym_table_caption_repeat1, - STATE(313), 1, - sym__inline_line, - STATE(1085), 1, + STATE(862), 1, + sym_table_cell, + STATE(1090), 1, sym__inline, - STATE(300), 2, + STATE(303), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(911), 9, + ACTIONS(1007), 8, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -21334,21 +21916,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [9050] = 6, - ACTIONS(968), 1, - sym_table_cell_alignment, - ACTIONS(991), 1, + [9635] = 5, + ACTIONS(1009), 1, anon_sym_LBRACK_CARET, - STATE(869), 1, + STATE(855), 1, sym_table_cell, - STATE(1089), 1, + STATE(1090), 1, sym__inline, - STATE(307), 2, + STATE(303), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(989), 9, + ACTIONS(1007), 8, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -21356,21 +21935,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [9078] = 6, - ACTIONS(970), 1, - sym_table_cell_alignment, - ACTIONS(991), 1, + [9659] = 5, + ACTIONS(1009), 1, anon_sym_LBRACK_CARET, - STATE(873), 1, + STATE(883), 1, sym_table_cell, - STATE(1089), 1, + STATE(1090), 1, sym__inline, - STATE(307), 2, + STATE(303), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(989), 9, + ACTIONS(1007), 8, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -21378,21 +21954,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [9106] = 6, - ACTIONS(915), 1, + [9683] = 5, + ACTIONS(1009), 1, anon_sym_LBRACK_CARET, - STATE(641), 1, - sym__inline_line, - STATE(1051), 1, + STATE(864), 1, + sym_table_cell, + STATE(1090), 1, sym__inline, - STATE(1111), 1, - sym__heading_content, - STATE(300), 2, + STATE(303), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(911), 9, + ACTIONS(1007), 8, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -21400,21 +21973,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [9134] = 6, - ACTIONS(915), 1, + [9707] = 5, + ACTIONS(1009), 1, anon_sym_LBRACK_CARET, - STATE(241), 1, - aux_sym_table_caption_repeat1, - STATE(313), 1, - sym__inline_line, - STATE(1085), 1, + STATE(872), 1, + sym_table_cell, + STATE(1090), 1, sym__inline, - STATE(300), 2, + STATE(303), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(911), 9, + ACTIONS(1007), 8, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -21422,21 +21992,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [9162] = 6, - ACTIONS(972), 1, - sym_table_cell_alignment, - ACTIONS(991), 1, + [9731] = 5, + ACTIONS(1009), 1, anon_sym_LBRACK_CARET, - STATE(880), 1, + STATE(965), 1, sym_table_cell, - STATE(1089), 1, + STATE(1090), 1, sym__inline, - STATE(307), 2, + STATE(303), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(989), 9, + ACTIONS(1007), 8, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -21444,21 +22011,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [9190] = 6, - ACTIONS(974), 1, - sym_table_cell_alignment, - ACTIONS(991), 1, + [9755] = 4, + ACTIONS(1084), 1, + anon_sym_PIPE, + ACTIONS(1086), 1, anon_sym_LBRACK_CARET, - STATE(887), 1, - sym_table_cell, - STATE(1089), 1, - sym__inline, - STATE(307), 2, + STATE(299), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(989), 9, + ACTIONS(1081), 8, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -21466,21 +22028,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [9218] = 6, - ACTIONS(991), 1, + [9776] = 4, + ACTIONS(877), 1, anon_sym_LBRACK_CARET, - ACTIONS(1019), 1, - sym__newline, - STATE(1089), 1, + STATE(757), 1, sym__inline, - STATE(1148), 1, - sym_table_cell, - STATE(307), 2, + STATE(285), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(989), 9, + ACTIONS(11), 8, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -21488,21 +22045,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [9246] = 6, + [9797] = 10, + ACTIONS(1089), 1, + anon_sym_RBRACE, + ACTIONS(1091), 1, + anon_sym_DOT, + ACTIONS(1094), 1, + aux_sym_identifier_token1, + ACTIONS(1097), 1, + sym__whitespace1, + ACTIONS(1100), 1, + anon_sym_PERCENT, + ACTIONS(1103), 1, + sym__id, + STATE(301), 1, + aux_sym_block_attribute_repeat1, + STATE(426), 1, + sym__comment_no_newline, + STATE(914), 1, + sym_key, + STATE(394), 3, + sym_class, + sym_identifier, + sym_key_value, + [9830] = 10, ACTIONS(915), 1, + sym__whitespace1, + ACTIONS(1106), 1, + anon_sym_RBRACE, + ACTIONS(1108), 1, + anon_sym_DOT, + ACTIONS(1110), 1, + aux_sym_identifier_token1, + ACTIONS(1112), 1, + anon_sym_PERCENT, + ACTIONS(1114), 1, + sym__id, + STATE(301), 1, + aux_sym_block_attribute_repeat1, + STATE(426), 1, + sym__comment_no_newline, + STATE(914), 1, + sym_key, + STATE(394), 3, + sym_class, + sym_identifier, + sym_key_value, + [9863] = 4, + ACTIONS(1009), 1, anon_sym_LBRACK_CARET, - STATE(235), 1, - aux_sym_table_caption_repeat1, - STATE(313), 1, - sym__inline_line, - STATE(1085), 1, - sym__inline, - STATE(300), 2, + ACTIONS(1118), 1, + anon_sym_PIPE, + STATE(299), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(911), 9, + ACTIONS(1116), 8, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -21510,21 +22108,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [9274] = 6, - ACTIONS(976), 1, - sym_table_cell_alignment, - ACTIONS(991), 1, + [9884] = 4, + ACTIONS(1118), 1, + anon_sym_RBRACK, + ACTIONS(1122), 1, anon_sym_LBRACK_CARET, - STATE(895), 1, - sym_table_cell, - STATE(1089), 1, - sym__inline, - STATE(307), 2, + STATE(308), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(989), 9, + ACTIONS(1120), 8, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -21532,21 +22125,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [9302] = 6, - ACTIONS(978), 1, - sym_table_cell_alignment, - ACTIONS(991), 1, + [9905] = 10, + ACTIONS(915), 1, + sym__whitespace1, + ACTIONS(1108), 1, + anon_sym_DOT, + ACTIONS(1110), 1, + aux_sym_identifier_token1, + ACTIONS(1112), 1, + anon_sym_PERCENT, + ACTIONS(1114), 1, + sym__id, + ACTIONS(1124), 1, + anon_sym_RBRACE, + STATE(301), 1, + aux_sym_block_attribute_repeat1, + STATE(426), 1, + sym__comment_no_newline, + STATE(914), 1, + sym_key, + STATE(394), 3, + sym_class, + sym_identifier, + sym_key_value, + [9938] = 10, + ACTIONS(915), 1, + sym__whitespace1, + ACTIONS(1108), 1, + anon_sym_DOT, + ACTIONS(1110), 1, + aux_sym_identifier_token1, + ACTIONS(1112), 1, + anon_sym_PERCENT, + ACTIONS(1114), 1, + sym__id, + ACTIONS(1126), 1, + anon_sym_RBRACE, + STATE(301), 1, + aux_sym_block_attribute_repeat1, + STATE(426), 1, + sym__comment_no_newline, + STATE(914), 1, + sym_key, + STATE(394), 3, + sym_class, + sym_identifier, + sym_key_value, + [9971] = 4, + ACTIONS(1079), 1, + sym__eof_or_newline, + ACTIONS(1131), 1, anon_sym_LBRACK_CARET, - STATE(900), 1, - sym_table_cell, - STATE(1089), 1, - sym__inline, STATE(307), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(989), 9, + ACTIONS(1128), 8, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -21554,21 +22188,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [9330] = 6, - ACTIONS(991), 1, + [9992] = 4, + ACTIONS(1084), 1, + anon_sym_RBRACK, + ACTIONS(1137), 1, anon_sym_LBRACK_CARET, - ACTIONS(1021), 1, - sym__newline, - STATE(1089), 1, - sym__inline, - STATE(1148), 1, - sym_table_cell, - STATE(307), 2, + STATE(308), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(989), 9, + ACTIONS(1134), 8, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -21576,19 +22205,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [9358] = 5, - ACTIONS(991), 1, + [10013] = 10, + ACTIONS(915), 1, + sym__whitespace1, + ACTIONS(1108), 1, + anon_sym_DOT, + ACTIONS(1110), 1, + aux_sym_identifier_token1, + ACTIONS(1112), 1, + anon_sym_PERCENT, + ACTIONS(1114), 1, + sym__id, + ACTIONS(1140), 1, + anon_sym_RBRACE, + STATE(301), 1, + aux_sym_block_attribute_repeat1, + STATE(426), 1, + sym__comment_no_newline, + STATE(914), 1, + sym_key, + STATE(394), 3, + sym_class, + sym_identifier, + sym_key_value, + [10046] = 4, + ACTIONS(877), 1, anon_sym_LBRACK_CARET, - STATE(1089), 1, + STATE(609), 1, sym__inline, - STATE(1148), 1, - sym_table_cell, - STATE(307), 2, + STATE(285), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(989), 9, + ACTIONS(11), 8, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -21596,18 +22245,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [9383] = 4, - ACTIONS(873), 1, + [10067] = 10, + ACTIONS(915), 1, + sym__whitespace1, + ACTIONS(1108), 1, + anon_sym_DOT, + ACTIONS(1110), 1, + aux_sym_identifier_token1, + ACTIONS(1112), 1, + anon_sym_PERCENT, + ACTIONS(1114), 1, + sym__id, + ACTIONS(1142), 1, + anon_sym_RBRACE, + STATE(301), 1, + aux_sym_block_attribute_repeat1, + STATE(426), 1, + sym__comment_no_newline, + STATE(914), 1, + sym_key, + STATE(394), 3, + sym_class, + sym_identifier, + sym_key_value, + [10100] = 4, + ACTIONS(954), 1, anon_sym_LBRACK_CARET, - ACTIONS(1025), 2, + ACTIONS(1071), 1, sym__eof_or_newline, - sym__newline_inline, - STATE(298), 2, + STATE(307), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1023), 9, + ACTIONS(1144), 8, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -21615,18 +22285,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [9406] = 4, - ACTIONS(1030), 1, - anon_sym_LBRACK_CARET, - ACTIONS(1033), 2, - sym__eof_or_newline, - sym__newline_inline, - STATE(298), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(1027), 9, + [10121] = 2, + ACTIONS(1148), 1, + sym__table_caption_end, + ACTIONS(1146), 10, anon_sym_LBRACK, - anon_sym_PIPE, + anon_sym_NULL, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -21634,19 +22299,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [9429] = 5, - ACTIONS(915), 1, - anon_sym_LBRACK_CARET, - STATE(714), 1, - sym__inline_line, - STATE(1051), 1, - sym__inline, - STATE(300), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(911), 9, + [10137] = 3, + ACTIONS(1150), 1, + sym__block_quote_continuation, + STATE(314), 1, + aux_sym__block_quote_prefix_repeat1, + ACTIONS(866), 9, anon_sym_LBRACK, - anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -21654,17 +22314,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [9454] = 4, - ACTIONS(915), 1, - anon_sym_LBRACK_CARET, - ACTIONS(1025), 1, - sym__eof_or_newline, - STATE(305), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(1035), 9, + [10155] = 2, + ACTIONS(1155), 1, + sym__table_caption_end, + ACTIONS(1153), 10, anon_sym_LBRACK, - anon_sym_PIPE, + anon_sym_NULL, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -21672,41 +22328,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [9476] = 10, - ACTIONS(467), 1, + [10171] = 3, + ACTIONS(944), 1, sym__block_quote_continuation, - ACTIONS(1037), 1, - anon_sym_PIPE, - ACTIONS(1039), 1, - sym__newline, - ACTIONS(1041), 1, - sym__table_caption_begin, - STATE(329), 1, - sym_table_row, - STATE(583), 1, + STATE(314), 1, aux_sym__block_quote_prefix_repeat1, - STATE(631), 1, - sym_table_caption, - STATE(1156), 1, - sym__block_quote_prefix, - ACTIONS(459), 2, - sym__list_item_continuation, - sym__list_item_end, - STATE(312), 3, - sym__table_content, - sym_table_separator, - aux_sym_table_repeat1, - [9510] = 4, - ACTIONS(1046), 1, - anon_sym_RBRACK, - ACTIONS(1048), 1, - anon_sym_LBRACK_CARET, - STATE(302), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(1043), 9, + ACTIONS(935), 9, anon_sym_LBRACK, - anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -21714,17 +22343,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [9532] = 4, - ACTIONS(873), 1, - anon_sym_LBRACK_CARET, - STATE(614), 1, - sym__inline, - STATE(297), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(13), 9, + [10189] = 2, + ACTIONS(1159), 2, + sym__eof_or_newline, + sym__newline_inline, + ACTIONS(1157), 9, anon_sym_LBRACK, - anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -21732,17 +22357,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [9554] = 4, - ACTIONS(1053), 1, - anon_sym_RBRACK, - ACTIONS(1055), 1, - anon_sym_LBRACK_CARET, - STATE(302), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(1051), 9, + [10205] = 2, + ACTIONS(1159), 1, + sym__eof_or_newline, + ACTIONS(1157), 9, anon_sym_LBRACK, - anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -21750,17 +22370,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [9576] = 4, - ACTIONS(1033), 1, - sym__eof_or_newline, - ACTIONS(1060), 1, - anon_sym_LBRACK_CARET, - STATE(305), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(1057), 9, + [10220] = 2, + ACTIONS(460), 1, + sym__block_quote_continuation, + ACTIONS(458), 9, anon_sym_LBRACK, - anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -21768,17 +22383,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [9598] = 4, - ACTIONS(873), 1, - anon_sym_LBRACK_CARET, - STATE(731), 1, - sym__inline, - STATE(297), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(13), 9, + [10235] = 1, + ACTIONS(1157), 10, anon_sym_LBRACK, - anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -21786,16 +22395,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [9620] = 4, - ACTIONS(991), 1, - anon_sym_LBRACK_CARET, - ACTIONS(1053), 1, - anon_sym_PIPE, - STATE(322), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(1063), 8, + [10248] = 1, + ACTIONS(1157), 10, anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, @@ -21803,7871 +22407,7366 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE_DASH, anon_sym_POUND, anon_sym_PERCENT, - [9641] = 10, - ACTIONS(854), 1, - sym__whitespace1, - ACTIONS(1065), 1, - anon_sym_RBRACE, - ACTIONS(1067), 1, - anon_sym_DOT, - ACTIONS(1069), 1, - aux_sym_identifier_token1, - ACTIONS(1071), 1, - anon_sym_PERCENT, - ACTIONS(1073), 1, - sym__id, - STATE(319), 1, - aux_sym_block_attribute_repeat1, - STATE(374), 1, - sym__comment_no_newline, - STATE(1096), 1, - sym_key, - STATE(436), 3, - sym_class, - sym_identifier, - sym_key_value, - [9674] = 10, - ACTIONS(854), 1, - sym__whitespace1, - ACTIONS(1067), 1, - anon_sym_DOT, - ACTIONS(1069), 1, - aux_sym_identifier_token1, - ACTIONS(1071), 1, - anon_sym_PERCENT, - ACTIONS(1073), 1, - sym__id, - ACTIONS(1075), 1, - anon_sym_RBRACE, - STATE(319), 1, - aux_sym_block_attribute_repeat1, - STATE(374), 1, - sym__comment_no_newline, - STATE(1096), 1, - sym_key, - STATE(436), 3, - sym_class, - sym_identifier, - sym_key_value, - [9707] = 10, - ACTIONS(459), 1, - sym__indented_content_spacer, - ACTIONS(467), 1, - sym__block_quote_continuation, - ACTIONS(1077), 1, - anon_sym_PIPE, - ACTIONS(1079), 1, - sym__newline, - ACTIONS(1081), 1, - sym__table_caption_begin, - STATE(331), 1, - sym_table_row, - STATE(583), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(1072), 1, - sym_table_caption, - STATE(1135), 1, - sym__block_quote_prefix, - STATE(323), 3, - sym__table_content, - sym_table_separator, - aux_sym_table_repeat1, - [9740] = 10, - ACTIONS(459), 1, + [10261] = 8, + ACTIONS(29), 1, + sym__list_marker_task_begin, + ACTIONS(1161), 1, sym__block_close, - ACTIONS(467), 1, + ACTIONS(1163), 1, sym__block_quote_continuation, - ACTIONS(1083), 1, - anon_sym_PIPE, - ACTIONS(1085), 1, - sym__newline, - ACTIONS(1087), 1, - sym__table_caption_begin, - STATE(347), 1, - sym_table_row, - STATE(583), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(830), 1, - sym_table_caption, - STATE(1142), 1, - sym__block_quote_prefix, - STATE(325), 3, - sym__table_content, - sym_table_separator, - aux_sym_table_repeat1, - [9773] = 7, - ACTIONS(484), 1, - sym__block_quote_continuation, - ACTIONS(1089), 1, - anon_sym_PIPE, - STATE(329), 1, - sym_table_row, - STATE(583), 1, + STATE(48), 1, + sym_list_marker_task, + STATE(332), 1, + aux_sym__list_task_repeat1, + STATE(664), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1156), 1, + STATE(680), 1, + sym__list_item_task, + STATE(814), 1, sym__block_quote_prefix, - STATE(312), 3, - sym__table_content, - sym_table_separator, - aux_sym_table_repeat1, - ACTIONS(477), 4, + [10286] = 1, + ACTIONS(540), 8, sym__newline, sym__list_item_continuation, sym__list_item_end, - sym__table_caption_begin, - [9800] = 2, - ACTIONS(1094), 1, - sym__table_caption_end, - ACTIONS(1092), 11, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_NULL, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - [9817] = 2, - ACTIONS(1098), 2, - sym__eof_or_newline, - sym__newline_inline, - ACTIONS(1096), 10, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - [9834] = 10, - ACTIONS(854), 1, - sym__whitespace1, - ACTIONS(1067), 1, - anon_sym_DOT, - ACTIONS(1069), 1, - aux_sym_identifier_token1, - ACTIONS(1071), 1, - anon_sym_PERCENT, - ACTIONS(1073), 1, - sym__id, - ACTIONS(1100), 1, - anon_sym_RBRACE, - STATE(319), 1, - aux_sym_block_attribute_repeat1, - STATE(374), 1, - sym__comment_no_newline, - STATE(1096), 1, - sym_key, - STATE(436), 3, - sym_class, - sym_identifier, - sym_key_value, - [9867] = 10, - ACTIONS(854), 1, - sym__whitespace1, - ACTIONS(1067), 1, - anon_sym_DOT, - ACTIONS(1069), 1, - aux_sym_identifier_token1, - ACTIONS(1071), 1, - anon_sym_PERCENT, - ACTIONS(1073), 1, - sym__id, - ACTIONS(1102), 1, - anon_sym_RBRACE, - STATE(319), 1, - aux_sym_block_attribute_repeat1, - STATE(374), 1, - sym__comment_no_newline, - STATE(1096), 1, - sym_key, - STATE(436), 3, - sym_class, - sym_identifier, - sym_key_value, - [9900] = 3, - ACTIONS(901), 1, - sym__block_quote_continuation, - STATE(321), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(948), 10, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - [9919] = 2, - ACTIONS(1106), 1, - sym__table_caption_end, - ACTIONS(1104), 11, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_NULL, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - [9936] = 10, - ACTIONS(1108), 1, - anon_sym_RBRACE, - ACTIONS(1110), 1, - anon_sym_DOT, - ACTIONS(1113), 1, - aux_sym_identifier_token1, - ACTIONS(1116), 1, - sym__whitespace1, - ACTIONS(1119), 1, - anon_sym_PERCENT, - ACTIONS(1122), 1, - sym__id, - STATE(319), 1, - aux_sym_block_attribute_repeat1, - STATE(374), 1, - sym__comment_no_newline, - STATE(1096), 1, - sym_key, - STATE(436), 3, - sym_class, - sym_identifier, - sym_key_value, - [9969] = 10, - ACTIONS(854), 1, - sym__whitespace1, - ACTIONS(1067), 1, - anon_sym_DOT, - ACTIONS(1069), 1, - aux_sym_identifier_token1, - ACTIONS(1071), 1, - anon_sym_PERCENT, - ACTIONS(1073), 1, - sym__id, - ACTIONS(1125), 1, - anon_sym_RBRACE, - STATE(319), 1, - aux_sym_block_attribute_repeat1, - STATE(374), 1, - sym__comment_no_newline, - STATE(1096), 1, - sym_key, - STATE(436), 3, - sym_class, - sym_identifier, - sym_key_value, - [10002] = 3, - ACTIONS(1127), 1, - sym__block_quote_continuation, - STATE(321), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(837), 10, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - [10021] = 3, - ACTIONS(1133), 1, - anon_sym_LBRACK_CARET, - STATE(322), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(1130), 9, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - [10040] = 7, - ACTIONS(484), 1, sym__block_quote_continuation, - ACTIONS(1136), 1, - anon_sym_PIPE, - STATE(331), 1, - sym_table_row, - STATE(583), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(1135), 1, - sym__block_quote_prefix, - ACTIONS(477), 3, - sym__newline, - sym__indented_content_spacer, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, sym__table_caption_begin, - STATE(323), 3, - sym__table_content, - sym_table_separator, - aux_sym_table_repeat1, - [10066] = 2, - ACTIONS(430), 1, - sym__block_quote_continuation, - ACTIONS(428), 10, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - [10082] = 7, - ACTIONS(484), 1, - sym__block_quote_continuation, - ACTIONS(1139), 1, - anon_sym_PIPE, - STATE(347), 1, - sym_table_row, - STATE(583), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(1142), 1, - sym__block_quote_prefix, - ACTIONS(477), 3, - sym__block_close, + [10297] = 1, + ACTIONS(590), 8, sym__newline, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, sym__table_caption_begin, - STATE(325), 3, - sym__table_content, - sym_table_separator, - aux_sym_table_repeat1, - [10108] = 2, - ACTIONS(1098), 1, - sym__eof_or_newline, - ACTIONS(1096), 10, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - [10124] = 1, - ACTIONS(1096), 11, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - [10138] = 1, - ACTIONS(1096), 10, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - [10151] = 6, - ACTIONS(497), 1, + [10308] = 8, + ACTIONS(29), 1, + sym__list_marker_task_begin, + ACTIONS(1163), 1, sym__block_quote_continuation, - ACTIONS(1142), 1, - anon_sym_PIPE, - STATE(418), 1, - sym_table_separator, - STATE(583), 1, + ACTIONS(1165), 1, + sym__block_close, + STATE(48), 1, + sym_list_marker_task, + STATE(332), 1, + aux_sym__list_task_repeat1, + STATE(664), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1173), 1, + STATE(680), 1, + sym__list_item_task, + STATE(814), 1, sym__block_quote_prefix, - ACTIONS(495), 4, + [10333] = 1, + ACTIONS(594), 8, sym__newline, sym__list_item_continuation, sym__list_item_end, + sym__block_quote_continuation, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, sym__table_caption_begin, - [10173] = 7, - ACTIONS(1145), 1, + [10344] = 7, + ACTIONS(1167), 1, aux_sym__line_token1, - ACTIONS(1147), 1, + ACTIONS(1169), 1, sym__block_close, - ACTIONS(1149), 1, + ACTIONS(1171), 1, sym__block_quote_continuation, - STATE(679), 1, + STATE(668), 1, aux_sym__block_quote_prefix_repeat1, - STATE(717), 1, + STATE(801), 1, sym__block_quote_prefix, - STATE(1011), 1, + STATE(996), 1, sym_code, - STATE(366), 2, + STATE(380), 2, sym__line, aux_sym_code_repeat1, - [10196] = 6, - ACTIONS(497), 1, + [10367] = 8, + ACTIONS(29), 1, + sym__list_marker_task_begin, + ACTIONS(1163), 1, sym__block_quote_continuation, - ACTIONS(1151), 1, - anon_sym_PIPE, - STATE(460), 1, - sym_table_separator, - STATE(583), 1, + ACTIONS(1173), 1, + sym__block_close, + STATE(48), 1, + sym_list_marker_task, + STATE(332), 1, + aux_sym__list_task_repeat1, + STATE(664), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1161), 1, + STATE(680), 1, + sym__list_item_task, + STATE(814), 1, sym__block_quote_prefix, - ACTIONS(495), 3, - sym__newline, - sym__indented_content_spacer, - sym__table_caption_begin, - [10217] = 7, - ACTIONS(1145), 1, + [10392] = 7, + ACTIONS(1167), 1, aux_sym__line_token1, - ACTIONS(1149), 1, + ACTIONS(1171), 1, sym__block_quote_continuation, - ACTIONS(1154), 1, + ACTIONS(1175), 1, sym__block_close, - STATE(679), 1, + STATE(668), 1, aux_sym__block_quote_prefix_repeat1, - STATE(717), 1, + STATE(801), 1, sym__block_quote_prefix, - STATE(979), 1, + STATE(968), 1, sym_code, - STATE(366), 2, + STATE(380), 2, sym__line, aux_sym_code_repeat1, - [10240] = 7, - ACTIONS(1145), 1, + [10415] = 7, + ACTIONS(1167), 1, aux_sym__line_token1, - ACTIONS(1149), 1, + ACTIONS(1171), 1, sym__block_quote_continuation, - ACTIONS(1156), 1, + ACTIONS(1177), 1, sym__block_close, - STATE(679), 1, + STATE(668), 1, aux_sym__block_quote_prefix_repeat1, - STATE(717), 1, + STATE(801), 1, sym__block_quote_prefix, - STATE(980), 1, + STATE(989), 1, sym_code, - STATE(366), 2, + STATE(380), 2, sym__line, aux_sym_code_repeat1, - [10263] = 7, - ACTIONS(1145), 1, + [10438] = 7, + ACTIONS(1167), 1, aux_sym__line_token1, - ACTIONS(1149), 1, + ACTIONS(1171), 1, sym__block_quote_continuation, - ACTIONS(1158), 1, + ACTIONS(1179), 1, sym__block_close, - STATE(679), 1, + STATE(668), 1, aux_sym__block_quote_prefix_repeat1, - STATE(717), 1, + STATE(801), 1, sym__block_quote_prefix, - STATE(1000), 1, + STATE(1024), 1, sym_code, - STATE(366), 2, + STATE(380), 2, sym__line, aux_sym_code_repeat1, - [10286] = 8, - ACTIONS(1160), 1, + [10461] = 8, + ACTIONS(1181), 1, sym__block_close, - ACTIONS(1162), 1, + ACTIONS(1183), 1, sym__list_marker_task_begin, - ACTIONS(1165), 1, + ACTIONS(1186), 1, sym__block_quote_continuation, - STATE(45), 1, + STATE(48), 1, sym_list_marker_task, - STATE(335), 1, + STATE(332), 1, aux_sym__list_task_repeat1, - STATE(675), 1, + STATE(664), 1, aux_sym__block_quote_prefix_repeat1, - STATE(691), 1, + STATE(680), 1, sym__list_item_task, - STATE(806), 1, - sym__block_quote_prefix, - [10311] = 7, - ACTIONS(1145), 1, - aux_sym__line_token1, - ACTIONS(1149), 1, - sym__block_quote_continuation, - ACTIONS(1168), 1, - sym__block_close, - STATE(679), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(717), 1, + STATE(814), 1, sym__block_quote_prefix, - STATE(935), 1, - sym_code, - STATE(366), 2, - sym__line, - aux_sym_code_repeat1, - [10334] = 7, - ACTIONS(1145), 1, + [10486] = 7, + ACTIONS(1167), 1, aux_sym__line_token1, - ACTIONS(1149), 1, + ACTIONS(1171), 1, sym__block_quote_continuation, - ACTIONS(1170), 1, + ACTIONS(1189), 1, sym__block_close, - STATE(679), 1, + STATE(668), 1, aux_sym__block_quote_prefix_repeat1, - STATE(717), 1, + STATE(801), 1, sym__block_quote_prefix, - STATE(938), 1, + STATE(1030), 1, sym_code, - STATE(366), 2, + STATE(380), 2, sym__line, aux_sym_code_repeat1, - [10357] = 8, - ACTIONS(31), 1, - sym__list_marker_task_begin, - ACTIONS(1172), 1, - sym__block_close, - ACTIONS(1174), 1, - sym__block_quote_continuation, - STATE(45), 1, - sym_list_marker_task, - STATE(335), 1, - aux_sym__list_task_repeat1, - STATE(675), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(691), 1, - sym__list_item_task, - STATE(806), 1, - sym__block_quote_prefix, - [10382] = 7, - ACTIONS(1145), 1, + [10509] = 7, + ACTIONS(1167), 1, aux_sym__line_token1, - ACTIONS(1149), 1, + ACTIONS(1171), 1, sym__block_quote_continuation, - ACTIONS(1176), 1, + ACTIONS(1191), 1, sym__block_close, - STATE(679), 1, + STATE(668), 1, aux_sym__block_quote_prefix_repeat1, - STATE(717), 1, + STATE(801), 1, sym__block_quote_prefix, - STATE(970), 1, + STATE(1033), 1, sym_code, - STATE(366), 2, + STATE(380), 2, sym__line, aux_sym_code_repeat1, - [10405] = 8, - ACTIONS(31), 1, + [10532] = 8, + ACTIONS(29), 1, sym__list_marker_task_begin, - ACTIONS(1174), 1, + ACTIONS(1163), 1, sym__block_quote_continuation, - ACTIONS(1178), 1, + ACTIONS(1193), 1, sym__block_close, - STATE(45), 1, + STATE(48), 1, sym_list_marker_task, - STATE(335), 1, + STATE(332), 1, aux_sym__list_task_repeat1, - STATE(675), 1, + STATE(664), 1, aux_sym__block_quote_prefix_repeat1, - STATE(691), 1, + STATE(680), 1, sym__list_item_task, - STATE(806), 1, + STATE(814), 1, sym__block_quote_prefix, - [10430] = 7, - ACTIONS(1145), 1, + [10557] = 7, + ACTIONS(1167), 1, aux_sym__line_token1, - ACTIONS(1149), 1, + ACTIONS(1171), 1, sym__block_quote_continuation, - ACTIONS(1180), 1, + ACTIONS(1195), 1, sym__block_close, - STATE(679), 1, + STATE(668), 1, aux_sym__block_quote_prefix_repeat1, - STATE(717), 1, + STATE(801), 1, sym__block_quote_prefix, - STATE(1110), 1, + STATE(978), 1, sym_code, - STATE(366), 2, + STATE(380), 2, sym__line, aux_sym_code_repeat1, - [10453] = 7, - ACTIONS(1145), 1, + [10580] = 7, + ACTIONS(1167), 1, aux_sym__line_token1, - ACTIONS(1149), 1, + ACTIONS(1171), 1, sym__block_quote_continuation, - ACTIONS(1182), 1, + ACTIONS(1197), 1, sym__block_close, - STATE(679), 1, + STATE(668), 1, aux_sym__block_quote_prefix_repeat1, - STATE(717), 1, + STATE(801), 1, sym__block_quote_prefix, - STATE(1039), 1, + STATE(979), 1, sym_code, - STATE(366), 2, + STATE(380), 2, sym__line, aux_sym_code_repeat1, - [10476] = 7, - ACTIONS(1145), 1, + [10603] = 7, + ACTIONS(1167), 1, aux_sym__line_token1, - ACTIONS(1149), 1, + ACTIONS(1171), 1, sym__block_quote_continuation, - ACTIONS(1184), 1, + ACTIONS(1199), 1, sym__block_close, - STATE(679), 1, + STATE(668), 1, aux_sym__block_quote_prefix_repeat1, - STATE(717), 1, + STATE(801), 1, sym__block_quote_prefix, - STATE(955), 1, + STATE(962), 1, sym_code, - STATE(366), 2, + STATE(380), 2, sym__line, aux_sym_code_repeat1, - [10499] = 8, - ACTIONS(31), 1, + [10626] = 8, + ACTIONS(29), 1, sym__list_marker_task_begin, - ACTIONS(1174), 1, + ACTIONS(1163), 1, sym__block_quote_continuation, - ACTIONS(1186), 1, + ACTIONS(1201), 1, sym__block_close, - STATE(45), 1, + STATE(48), 1, sym_list_marker_task, - STATE(335), 1, + STATE(332), 1, aux_sym__list_task_repeat1, - STATE(675), 1, + STATE(664), 1, aux_sym__block_quote_prefix_repeat1, - STATE(691), 1, + STATE(680), 1, sym__list_item_task, - STATE(806), 1, + STATE(814), 1, sym__block_quote_prefix, - [10524] = 7, - ACTIONS(1145), 1, + [10651] = 7, + ACTIONS(1167), 1, aux_sym__line_token1, - ACTIONS(1149), 1, + ACTIONS(1171), 1, sym__block_quote_continuation, - ACTIONS(1188), 1, + ACTIONS(1203), 1, sym__block_close, - STATE(679), 1, + STATE(668), 1, aux_sym__block_quote_prefix_repeat1, - STATE(717), 1, + STATE(801), 1, sym__block_quote_prefix, - STATE(1168), 1, + STATE(1028), 1, sym_code, - STATE(366), 2, + STATE(380), 2, sym__line, aux_sym_code_repeat1, - [10547] = 8, - ACTIONS(31), 1, - sym__list_marker_task_begin, - ACTIONS(1174), 1, - sym__block_quote_continuation, - ACTIONS(1190), 1, - sym__block_close, - STATE(45), 1, - sym_list_marker_task, - STATE(335), 1, - aux_sym__list_task_repeat1, - STATE(675), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(691), 1, - sym__list_item_task, - STATE(806), 1, - sym__block_quote_prefix, - [10572] = 6, - ACTIONS(497), 1, - sym__block_quote_continuation, - ACTIONS(1192), 1, - anon_sym_PIPE, - STATE(455), 1, - sym_table_separator, - STATE(583), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(1165), 1, - sym__block_quote_prefix, - ACTIONS(495), 3, - sym__block_close, - sym__newline, - sym__table_caption_begin, - [10593] = 7, - ACTIONS(1145), 1, + [10674] = 7, + ACTIONS(1167), 1, aux_sym__line_token1, - ACTIONS(1149), 1, + ACTIONS(1171), 1, sym__block_quote_continuation, - ACTIONS(1195), 1, + ACTIONS(1205), 1, sym__block_close, - STATE(679), 1, + STATE(668), 1, aux_sym__block_quote_prefix_repeat1, - STATE(717), 1, + STATE(801), 1, sym__block_quote_prefix, - STATE(922), 1, + STATE(909), 1, sym_code, - STATE(366), 2, + STATE(380), 2, sym__line, aux_sym_code_repeat1, - [10616] = 7, - ACTIONS(1145), 1, + [10697] = 7, + ACTIONS(1167), 1, aux_sym__line_token1, - ACTIONS(1149), 1, + ACTIONS(1171), 1, sym__block_quote_continuation, - ACTIONS(1197), 1, + ACTIONS(1207), 1, sym__block_close, - STATE(679), 1, + STATE(668), 1, aux_sym__block_quote_prefix_repeat1, - STATE(717), 1, + STATE(801), 1, sym__block_quote_prefix, - STATE(923), 1, + STATE(993), 1, sym_code, - STATE(366), 2, + STATE(380), 2, sym__line, aux_sym_code_repeat1, - [10639] = 7, - ACTIONS(1145), 1, + [10720] = 1, + ACTIONS(628), 8, + sym__newline, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + sym__table_caption_begin, + [10731] = 7, + ACTIONS(1167), 1, aux_sym__line_token1, - ACTIONS(1149), 1, + ACTIONS(1171), 1, sym__block_quote_continuation, - ACTIONS(1199), 1, + ACTIONS(1209), 1, sym__block_close, - STATE(679), 1, + STATE(668), 1, aux_sym__block_quote_prefix_repeat1, - STATE(717), 1, + STATE(801), 1, sym__block_quote_prefix, - STATE(952), 1, + STATE(938), 1, sym_code, - STATE(366), 2, + STATE(380), 2, sym__line, aux_sym_code_repeat1, - [10662] = 8, - ACTIONS(31), 1, - sym__list_marker_task_begin, - ACTIONS(1174), 1, + [10754] = 7, + ACTIONS(1167), 1, + aux_sym__line_token1, + ACTIONS(1171), 1, sym__block_quote_continuation, - ACTIONS(1201), 1, + ACTIONS(1211), 1, sym__block_close, - STATE(45), 1, - sym_list_marker_task, - STATE(335), 1, - aux_sym__list_task_repeat1, - STATE(675), 1, + STATE(668), 1, aux_sym__block_quote_prefix_repeat1, - STATE(691), 1, - sym__list_item_task, - STATE(806), 1, + STATE(801), 1, sym__block_quote_prefix, - [10687] = 7, - ACTIONS(1145), 1, + STATE(919), 1, + sym_code, + STATE(380), 2, + sym__line, + aux_sym_code_repeat1, + [10777] = 7, + ACTIONS(1167), 1, aux_sym__line_token1, - ACTIONS(1149), 1, + ACTIONS(1171), 1, sym__block_quote_continuation, - ACTIONS(1203), 1, + ACTIONS(1213), 1, sym__block_close, - STATE(679), 1, + STATE(668), 1, aux_sym__block_quote_prefix_repeat1, - STATE(717), 1, + STATE(801), 1, sym__block_quote_prefix, - STATE(1038), 1, + STATE(920), 1, sym_code, - STATE(366), 2, + STATE(380), 2, sym__line, aux_sym_code_repeat1, - [10710] = 7, - ACTIONS(29), 1, - sym_list_marker_plus, - ACTIONS(1205), 1, - sym__block_close, - ACTIONS(1207), 1, + [10800] = 1, + ACTIONS(546), 8, + sym__newline, + sym__list_item_continuation, + sym__list_item_end, sym__block_quote_continuation, - STATE(368), 1, - aux_sym__list_plus_repeat1, - STATE(604), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(637), 1, - sym__list_item_plus, - STATE(1189), 1, - sym__block_quote_prefix, - [10732] = 7, - ACTIONS(29), 1, - sym_list_marker_plus, - ACTIONS(1207), 1, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + sym__table_caption_begin, + [10811] = 1, + ACTIONS(640), 8, + sym__newline, + sym__list_item_continuation, + sym__list_item_end, sym__block_quote_continuation, - ACTIONS(1209), 1, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + sym__table_caption_begin, + [10822] = 1, + ACTIONS(586), 8, + sym__newline, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + sym__table_caption_begin, + [10833] = 7, + ACTIONS(27), 1, + sym_list_marker_plus, + ACTIONS(1215), 1, sym__block_close, - STATE(368), 1, + ACTIONS(1217), 1, + sym__block_quote_continuation, + STATE(371), 1, aux_sym__list_plus_repeat1, - STATE(604), 1, + STATE(678), 1, aux_sym__block_quote_prefix_repeat1, - STATE(637), 1, + STATE(691), 1, sym__list_item_plus, - STATE(1189), 1, + STATE(1065), 1, sym__block_quote_prefix, - [10754] = 7, - ACTIONS(25), 1, + [10855] = 7, + ACTIONS(23), 1, sym_list_marker_dash, - ACTIONS(1211), 1, + ACTIONS(1219), 1, sym__block_close, - ACTIONS(1213), 1, + ACTIONS(1221), 1, sym__block_quote_continuation, - STATE(365), 1, + STATE(360), 1, aux_sym__list_dash_repeat1, - STATE(636), 1, - sym__list_item_dash, - STATE(690), 1, + STATE(640), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1115), 1, + STATE(687), 1, + sym__list_item_dash, + STATE(1022), 1, sym__block_quote_prefix, - [10776] = 7, - ACTIONS(29), 1, - sym_list_marker_plus, - ACTIONS(1207), 1, + [10877] = 1, + ACTIONS(628), 7, + sym__newline, + sym__indented_content_spacer, sym__block_quote_continuation, - ACTIONS(1215), 1, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + sym__table_caption_begin, + [10887] = 7, + ACTIONS(25), 1, + sym_list_marker_star, + ACTIONS(1223), 1, sym__block_close, - STATE(368), 1, - aux_sym__list_plus_repeat1, - STATE(604), 1, + ACTIONS(1225), 1, + sym__block_quote_continuation, + STATE(372), 1, + aux_sym__list_star_repeat1, + STATE(601), 1, aux_sym__block_quote_prefix_repeat1, - STATE(637), 1, - sym__list_item_plus, - STATE(1189), 1, + STATE(673), 1, + sym__list_item_star, + STATE(902), 1, sym__block_quote_prefix, - [10798] = 7, - ACTIONS(25), 1, + [10909] = 7, + ACTIONS(23), 1, sym_list_marker_dash, - ACTIONS(1213), 1, + ACTIONS(1221), 1, sym__block_quote_continuation, - ACTIONS(1217), 1, + ACTIONS(1227), 1, sym__block_close, - STATE(365), 1, + STATE(360), 1, aux_sym__list_dash_repeat1, - STATE(636), 1, - sym__list_item_dash, - STATE(690), 1, + STATE(640), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1115), 1, + STATE(687), 1, + sym__list_item_dash, + STATE(1022), 1, sym__block_quote_prefix, - [10820] = 7, - ACTIONS(29), 1, + [10931] = 7, + ACTIONS(27), 1, sym_list_marker_plus, - ACTIONS(1207), 1, + ACTIONS(1217), 1, sym__block_quote_continuation, - ACTIONS(1219), 1, + ACTIONS(1229), 1, sym__block_close, - STATE(368), 1, + STATE(371), 1, aux_sym__list_plus_repeat1, - STATE(604), 1, + STATE(678), 1, aux_sym__block_quote_prefix_repeat1, - STATE(637), 1, + STATE(691), 1, sym__list_item_plus, - STATE(1189), 1, + STATE(1065), 1, sym__block_quote_prefix, - [10842] = 7, - ACTIONS(27), 1, + [10953] = 7, + ACTIONS(25), 1, sym_list_marker_star, - ACTIONS(1221), 1, - sym__block_close, - ACTIONS(1223), 1, + ACTIONS(1225), 1, sym__block_quote_continuation, - STATE(361), 1, + ACTIONS(1231), 1, + sym__block_close, + STATE(372), 1, aux_sym__list_star_repeat1, - STATE(670), 1, + STATE(601), 1, aux_sym__block_quote_prefix_repeat1, - STATE(671), 1, + STATE(673), 1, sym__list_item_star, - STATE(936), 1, + STATE(902), 1, sym__block_quote_prefix, - [10864] = 7, - ACTIONS(27), 1, - sym_list_marker_star, - ACTIONS(1223), 1, + [10975] = 1, + ACTIONS(540), 7, + sym__block_close, + sym__newline, sym__block_quote_continuation, - ACTIONS(1225), 1, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + sym__table_caption_begin, + [10985] = 6, + ACTIONS(1233), 1, + aux_sym__line_token1, + ACTIONS(1236), 1, sym__block_close, - STATE(361), 1, - aux_sym__list_star_repeat1, - STATE(670), 1, + ACTIONS(1238), 1, + sym__block_quote_continuation, + STATE(668), 1, aux_sym__block_quote_prefix_repeat1, - STATE(671), 1, - sym__list_item_star, - STATE(936), 1, + STATE(801), 1, sym__block_quote_prefix, - [10886] = 7, - ACTIONS(1227), 1, + STATE(358), 2, + sym__line, + aux_sym_code_repeat1, + [11005] = 1, + ACTIONS(546), 7, + sym__block_close, + sym__newline, + sym__block_quote_continuation, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + sym__table_caption_begin, + [11015] = 7, + ACTIONS(1241), 1, + sym__block_close, + ACTIONS(1243), 1, + sym_list_marker_dash, + ACTIONS(1246), 1, + sym__block_quote_continuation, + STATE(360), 1, + aux_sym__list_dash_repeat1, + STATE(640), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(687), 1, + sym__list_item_dash, + STATE(1022), 1, + sym__block_quote_prefix, + [11037] = 1, + ACTIONS(586), 7, + sym__block_close, + sym__newline, + sym__block_quote_continuation, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + sym__table_caption_begin, + [11047] = 1, + ACTIONS(590), 7, + sym__block_close, + sym__newline, + sym__block_quote_continuation, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + sym__table_caption_begin, + [11057] = 1, + ACTIONS(594), 7, sym__block_close, - ACTIONS(1229), 1, - sym_list_marker_star, - ACTIONS(1232), 1, + sym__newline, sym__block_quote_continuation, - STATE(361), 1, - aux_sym__list_star_repeat1, - STATE(670), 1, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + sym__table_caption_begin, + [11067] = 7, + ACTIONS(23), 1, + sym_list_marker_dash, + ACTIONS(1221), 1, + sym__block_quote_continuation, + ACTIONS(1249), 1, + sym__block_close, + STATE(360), 1, + aux_sym__list_dash_repeat1, + STATE(640), 1, aux_sym__block_quote_prefix_repeat1, - STATE(671), 1, - sym__list_item_star, - STATE(936), 1, + STATE(687), 1, + sym__list_item_dash, + STATE(1022), 1, sym__block_quote_prefix, - [10908] = 7, + [11089] = 7, ACTIONS(27), 1, - sym_list_marker_star, - ACTIONS(1223), 1, + sym_list_marker_plus, + ACTIONS(1217), 1, sym__block_quote_continuation, - ACTIONS(1235), 1, + ACTIONS(1251), 1, sym__block_close, - STATE(361), 1, - aux_sym__list_star_repeat1, - STATE(670), 1, + STATE(371), 1, + aux_sym__list_plus_repeat1, + STATE(678), 1, aux_sym__block_quote_prefix_repeat1, - STATE(671), 1, - sym__list_item_star, - STATE(936), 1, + STATE(691), 1, + sym__list_item_plus, + STATE(1065), 1, sym__block_quote_prefix, - [10930] = 7, - ACTIONS(25), 1, + [11111] = 7, + ACTIONS(23), 1, sym_list_marker_dash, - ACTIONS(1213), 1, + ACTIONS(1221), 1, sym__block_quote_continuation, - ACTIONS(1237), 1, + ACTIONS(1253), 1, sym__block_close, - STATE(365), 1, + STATE(360), 1, aux_sym__list_dash_repeat1, - STATE(636), 1, - sym__list_item_dash, - STATE(690), 1, + STATE(640), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1115), 1, + STATE(687), 1, + sym__list_item_dash, + STATE(1022), 1, sym__block_quote_prefix, - [10952] = 7, - ACTIONS(27), 1, + [11133] = 1, + ACTIONS(586), 7, + sym__newline, + sym__indented_content_spacer, + sym__block_quote_continuation, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + sym__table_caption_begin, + [11143] = 7, + ACTIONS(25), 1, sym_list_marker_star, - ACTIONS(1223), 1, + ACTIONS(1225), 1, sym__block_quote_continuation, - ACTIONS(1239), 1, + ACTIONS(1255), 1, sym__block_close, - STATE(361), 1, + STATE(372), 1, aux_sym__list_star_repeat1, - STATE(670), 1, + STATE(601), 1, aux_sym__block_quote_prefix_repeat1, - STATE(671), 1, + STATE(673), 1, sym__list_item_star, - STATE(936), 1, + STATE(902), 1, sym__block_quote_prefix, - [10974] = 7, - ACTIONS(1241), 1, + [11165] = 1, + ACTIONS(590), 7, + sym__newline, + sym__indented_content_spacer, + sym__block_quote_continuation, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + sym__table_caption_begin, + [11175] = 1, + ACTIONS(594), 7, + sym__newline, + sym__indented_content_spacer, + sym__block_quote_continuation, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + sym__table_caption_begin, + [11185] = 7, + ACTIONS(1257), 1, sym__block_close, - ACTIONS(1243), 1, - sym_list_marker_dash, - ACTIONS(1246), 1, + ACTIONS(1259), 1, + sym_list_marker_plus, + ACTIONS(1262), 1, sym__block_quote_continuation, - STATE(365), 1, - aux_sym__list_dash_repeat1, - STATE(636), 1, - sym__list_item_dash, - STATE(690), 1, + STATE(371), 1, + aux_sym__list_plus_repeat1, + STATE(678), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1115), 1, + STATE(691), 1, + sym__list_item_plus, + STATE(1065), 1, sym__block_quote_prefix, - [10996] = 6, - ACTIONS(1145), 1, - aux_sym__line_token1, - ACTIONS(1149), 1, - sym__block_quote_continuation, - ACTIONS(1249), 1, + [11207] = 7, + ACTIONS(1265), 1, sym__block_close, - STATE(679), 1, + ACTIONS(1267), 1, + sym_list_marker_star, + ACTIONS(1270), 1, + sym__block_quote_continuation, + STATE(372), 1, + aux_sym__list_star_repeat1, + STATE(601), 1, aux_sym__block_quote_prefix_repeat1, - STATE(717), 1, + STATE(673), 1, + sym__list_item_star, + STATE(902), 1, sym__block_quote_prefix, - STATE(369), 2, - sym__line, - aux_sym_code_repeat1, - [11016] = 7, - ACTIONS(25), 1, + [11229] = 7, + ACTIONS(23), 1, sym_list_marker_dash, - ACTIONS(1213), 1, + ACTIONS(1221), 1, sym__block_quote_continuation, - ACTIONS(1251), 1, + ACTIONS(1273), 1, sym__block_close, - STATE(365), 1, + STATE(360), 1, aux_sym__list_dash_repeat1, - STATE(636), 1, - sym__list_item_dash, - STATE(690), 1, + STATE(640), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1115), 1, + STATE(687), 1, + sym__list_item_dash, + STATE(1022), 1, sym__block_quote_prefix, - [11038] = 7, - ACTIONS(1253), 1, - sym__block_close, - ACTIONS(1255), 1, + [11251] = 7, + ACTIONS(27), 1, sym_list_marker_plus, - ACTIONS(1258), 1, + ACTIONS(1217), 1, sym__block_quote_continuation, - STATE(368), 1, + ACTIONS(1275), 1, + sym__block_close, + STATE(371), 1, aux_sym__list_plus_repeat1, - STATE(604), 1, + STATE(678), 1, aux_sym__block_quote_prefix_repeat1, - STATE(637), 1, + STATE(691), 1, sym__list_item_plus, - STATE(1189), 1, + STATE(1065), 1, sym__block_quote_prefix, - [11060] = 6, - ACTIONS(1261), 1, - aux_sym__line_token1, - ACTIONS(1264), 1, - sym__block_close, - ACTIONS(1266), 1, + [11273] = 7, + ACTIONS(25), 1, + sym_list_marker_star, + ACTIONS(1225), 1, sym__block_quote_continuation, - STATE(679), 1, + ACTIONS(1277), 1, + sym__block_close, + STATE(372), 1, + aux_sym__list_star_repeat1, + STATE(601), 1, aux_sym__block_quote_prefix_repeat1, - STATE(717), 1, + STATE(673), 1, + sym__list_item_star, + STATE(902), 1, sym__block_quote_prefix, - STATE(369), 2, - sym__line, - aux_sym_code_repeat1, - [11080] = 7, - ACTIONS(25), 1, - sym_list_marker_dash, - ACTIONS(1213), 1, + [11295] = 1, + ACTIONS(640), 7, + sym__newline, + sym__indented_content_spacer, + sym__block_quote_continuation, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + sym__table_caption_begin, + [11305] = 1, + ACTIONS(540), 7, + sym__newline, + sym__indented_content_spacer, sym__block_quote_continuation, - ACTIONS(1269), 1, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + sym__table_caption_begin, + [11315] = 1, + ACTIONS(628), 7, sym__block_close, - STATE(365), 1, - aux_sym__list_dash_repeat1, - STATE(636), 1, - sym__list_item_dash, - STATE(690), 1, + sym__newline, + sym__block_quote_continuation, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + sym__table_caption_begin, + [11325] = 1, + ACTIONS(546), 7, + sym__newline, + sym__indented_content_spacer, + sym__block_quote_continuation, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + sym__table_caption_begin, + [11335] = 6, + ACTIONS(1167), 1, + aux_sym__line_token1, + ACTIONS(1171), 1, + sym__block_quote_continuation, + ACTIONS(1279), 1, + sym__block_close, + STATE(668), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1115), 1, + STATE(801), 1, sym__block_quote_prefix, - [11102] = 7, - ACTIONS(29), 1, + STATE(358), 2, + sym__line, + aux_sym_code_repeat1, + [11355] = 7, + ACTIONS(27), 1, sym_list_marker_plus, - ACTIONS(1207), 1, + ACTIONS(1217), 1, sym__block_quote_continuation, - ACTIONS(1271), 1, + ACTIONS(1281), 1, sym__block_close, - STATE(368), 1, + STATE(371), 1, aux_sym__list_plus_repeat1, - STATE(604), 1, + STATE(678), 1, aux_sym__block_quote_prefix_repeat1, - STATE(637), 1, + STATE(691), 1, sym__list_item_plus, - STATE(1189), 1, + STATE(1065), 1, sym__block_quote_prefix, - [11124] = 7, - ACTIONS(27), 1, + [11377] = 1, + ACTIONS(640), 7, + sym__block_close, + sym__newline, + sym__block_quote_continuation, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + sym__table_caption_begin, + [11387] = 7, + ACTIONS(25), 1, sym_list_marker_star, - ACTIONS(1223), 1, + ACTIONS(1225), 1, sym__block_quote_continuation, - ACTIONS(1273), 1, + ACTIONS(1283), 1, sym__block_close, - STATE(361), 1, + STATE(372), 1, aux_sym__list_star_repeat1, - STATE(670), 1, + STATE(601), 1, aux_sym__block_quote_prefix_repeat1, - STATE(671), 1, + STATE(673), 1, sym__list_item_star, - STATE(936), 1, + STATE(902), 1, sym__block_quote_prefix, - [11146] = 1, - ACTIONS(1275), 6, - anon_sym_RBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - sym__whitespace1, - anon_sym_PERCENT, - sym__id, - [11155] = 1, - ACTIONS(1277), 6, - anon_sym_RBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - sym__whitespace1, - anon_sym_PERCENT, - sym__id, - [11164] = 6, - ACTIONS(1279), 1, + [11409] = 6, + ACTIONS(1285), 1, sym__list_item_continuation, - ACTIONS(1281), 1, + ACTIONS(1287), 1, sym__list_item_end, - ACTIONS(1283), 1, + ACTIONS(1289), 1, sym__block_quote_continuation, - STATE(381), 1, + STATE(407), 1, aux_sym_list_item_content_repeat1, - STATE(681), 1, + STATE(670), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1073), 1, + STATE(1083), 1, sym__block_quote_prefix, - [11183] = 1, - ACTIONS(1285), 6, - anon_sym_RBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - sym__whitespace1, - anon_sym_PERCENT, - sym__id, - [11192] = 1, - ACTIONS(1287), 6, + [11428] = 1, + ACTIONS(1291), 6, anon_sym_RBRACE, anon_sym_DOT, aux_sym_identifier_token1, sym__whitespace1, anon_sym_PERCENT, sym__id, - [11201] = 1, - ACTIONS(1289), 6, + [11437] = 6, + ACTIONS(1293), 1, + sym__block_quote_continuation, + ACTIONS(1295), 1, + sym__footnote_continuation, + ACTIONS(1297), 1, + sym__footnote_end, + STATE(432), 1, + aux_sym_footnote_content_repeat1, + STATE(672), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(957), 1, + sym__block_quote_prefix, + [11456] = 1, + ACTIONS(1299), 6, anon_sym_RBRACE, anon_sym_DOT, aux_sym_identifier_token1, sym__whitespace1, anon_sym_PERCENT, sym__id, - [11210] = 6, - ACTIONS(1283), 1, - sym__block_quote_continuation, - ACTIONS(1291), 1, - sym__list_item_continuation, - ACTIONS(1293), 1, - sym__list_item_end, - STATE(415), 1, - aux_sym__list_item_definition_repeat1, - STATE(681), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(1092), 1, - sym__block_quote_prefix, - [11229] = 6, - ACTIONS(1295), 1, + [11465] = 6, + ACTIONS(1301), 1, sym__list_item_continuation, - ACTIONS(1298), 1, + ACTIONS(1304), 1, sym__list_item_end, - ACTIONS(1300), 1, + ACTIONS(1306), 1, sym__block_quote_continuation, - STATE(380), 1, + STATE(388), 1, aux_sym_list_item_content_repeat1, - STATE(681), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(1073), 1, - sym__block_quote_prefix, - [11248] = 6, - ACTIONS(1279), 1, - sym__list_item_continuation, - ACTIONS(1283), 1, - sym__block_quote_continuation, - ACTIONS(1303), 1, - sym__list_item_end, - STATE(380), 1, - aux_sym_list_item_content_repeat1, - STATE(681), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(1073), 1, - sym__block_quote_prefix, - [11267] = 6, - ACTIONS(1279), 1, - sym__list_item_continuation, - ACTIONS(1283), 1, - sym__block_quote_continuation, - ACTIONS(1305), 1, - sym__list_item_end, - STATE(416), 1, - aux_sym_list_item_content_repeat1, - STATE(681), 1, + STATE(670), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1073), 1, + STATE(1083), 1, sym__block_quote_prefix, - [11286] = 1, - ACTIONS(1307), 6, + [11484] = 1, + ACTIONS(1309), 6, anon_sym_RBRACE, anon_sym_DOT, aux_sym_identifier_token1, sym__whitespace1, anon_sym_PERCENT, sym__id, - [11295] = 6, - ACTIONS(1309), 1, - sym__block_quote_continuation, - ACTIONS(1311), 1, - sym__footnote_continuation, - ACTIONS(1313), 1, - sym__footnote_end, - STATE(385), 1, - aux_sym_footnote_content_repeat1, - STATE(683), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(993), 1, - sym__block_quote_prefix, - [11314] = 6, - ACTIONS(1309), 1, + [11493] = 6, + ACTIONS(1285), 1, + sym__list_item_continuation, + ACTIONS(1289), 1, sym__block_quote_continuation, ACTIONS(1311), 1, - sym__footnote_continuation, - ACTIONS(1315), 1, - sym__footnote_end, - STATE(440), 1, - aux_sym_footnote_content_repeat1, - STATE(683), 1, + sym__list_item_end, + STATE(388), 1, + aux_sym_list_item_content_repeat1, + STATE(670), 1, aux_sym__block_quote_prefix_repeat1, - STATE(993), 1, + STATE(1083), 1, sym__block_quote_prefix, - [11333] = 6, - ACTIONS(1279), 1, + [11512] = 6, + ACTIONS(1285), 1, sym__list_item_continuation, - ACTIONS(1283), 1, + ACTIONS(1289), 1, sym__block_quote_continuation, - ACTIONS(1317), 1, + ACTIONS(1313), 1, sym__list_item_end, - STATE(387), 1, + STATE(388), 1, aux_sym_list_item_content_repeat1, - STATE(681), 1, + STATE(670), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1073), 1, + STATE(1083), 1, sym__block_quote_prefix, - [11352] = 6, - ACTIONS(1279), 1, + [11531] = 6, + ACTIONS(1285), 1, sym__list_item_continuation, - ACTIONS(1283), 1, + ACTIONS(1289), 1, sym__block_quote_continuation, - ACTIONS(1319), 1, + ACTIONS(1315), 1, sym__list_item_end, - STATE(380), 1, + STATE(390), 1, aux_sym_list_item_content_repeat1, - STATE(681), 1, + STATE(670), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1073), 1, + STATE(1083), 1, sym__block_quote_prefix, - [11371] = 6, - ACTIONS(1279), 1, + [11550] = 6, + ACTIONS(1285), 1, sym__list_item_continuation, - ACTIONS(1283), 1, + ACTIONS(1289), 1, sym__block_quote_continuation, - ACTIONS(1321), 1, + ACTIONS(1317), 1, sym__list_item_end, - STATE(389), 1, + STATE(445), 1, aux_sym_list_item_content_repeat1, - STATE(681), 1, + STATE(670), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1073), 1, + STATE(1083), 1, sym__block_quote_prefix, - [11390] = 6, - ACTIONS(1279), 1, - sym__list_item_continuation, - ACTIONS(1283), 1, + [11569] = 1, + ACTIONS(1319), 6, + anon_sym_RBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + sym__whitespace1, + anon_sym_PERCENT, + sym__id, + [11578] = 1, + ACTIONS(1321), 6, + anon_sym_RBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + sym__whitespace1, + anon_sym_PERCENT, + sym__id, + [11587] = 6, + ACTIONS(1293), 1, sym__block_quote_continuation, + ACTIONS(1295), 1, + sym__footnote_continuation, ACTIONS(1323), 1, - sym__list_item_end, - STATE(380), 1, - aux_sym_list_item_content_repeat1, - STATE(681), 1, + sym__footnote_end, + STATE(397), 1, + aux_sym_footnote_content_repeat1, + STATE(672), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1073), 1, + STATE(957), 1, sym__block_quote_prefix, - [11409] = 6, - ACTIONS(1279), 1, - sym__list_item_continuation, - ACTIONS(1283), 1, + [11606] = 6, + ACTIONS(1293), 1, sym__block_quote_continuation, + ACTIONS(1295), 1, + sym__footnote_continuation, ACTIONS(1325), 1, - sym__list_item_end, - STATE(391), 1, - aux_sym_list_item_content_repeat1, - STATE(681), 1, + sym__footnote_end, + STATE(432), 1, + aux_sym_footnote_content_repeat1, + STATE(672), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1073), 1, + STATE(957), 1, sym__block_quote_prefix, - [11428] = 6, - ACTIONS(1279), 1, + [11625] = 6, + ACTIONS(1285), 1, sym__list_item_continuation, - ACTIONS(1283), 1, + ACTIONS(1289), 1, sym__block_quote_continuation, ACTIONS(1327), 1, sym__list_item_end, - STATE(380), 1, + STATE(399), 1, aux_sym_list_item_content_repeat1, - STATE(681), 1, + STATE(670), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1073), 1, + STATE(1083), 1, sym__block_quote_prefix, - [11447] = 6, - ACTIONS(1279), 1, + [11644] = 6, + ACTIONS(1285), 1, sym__list_item_continuation, - ACTIONS(1283), 1, + ACTIONS(1289), 1, sym__block_quote_continuation, ACTIONS(1329), 1, sym__list_item_end, - STATE(393), 1, + STATE(388), 1, aux_sym_list_item_content_repeat1, - STATE(681), 1, + STATE(670), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1073), 1, + STATE(1083), 1, sym__block_quote_prefix, - [11466] = 6, - ACTIONS(1279), 1, + [11663] = 6, + ACTIONS(1285), 1, sym__list_item_continuation, - ACTIONS(1283), 1, + ACTIONS(1289), 1, sym__block_quote_continuation, ACTIONS(1331), 1, sym__list_item_end, - STATE(380), 1, + STATE(401), 1, aux_sym_list_item_content_repeat1, - STATE(681), 1, + STATE(670), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1073), 1, + STATE(1083), 1, sym__block_quote_prefix, - [11485] = 6, - ACTIONS(1279), 1, + [11682] = 6, + ACTIONS(1285), 1, sym__list_item_continuation, - ACTIONS(1283), 1, + ACTIONS(1289), 1, sym__block_quote_continuation, ACTIONS(1333), 1, sym__list_item_end, - STATE(395), 1, + STATE(388), 1, aux_sym_list_item_content_repeat1, - STATE(681), 1, + STATE(670), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1073), 1, + STATE(1083), 1, sym__block_quote_prefix, - [11504] = 6, - ACTIONS(1279), 1, + [11701] = 6, + ACTIONS(1285), 1, sym__list_item_continuation, - ACTIONS(1283), 1, + ACTIONS(1289), 1, sym__block_quote_continuation, ACTIONS(1335), 1, sym__list_item_end, - STATE(380), 1, + STATE(403), 1, aux_sym_list_item_content_repeat1, - STATE(681), 1, + STATE(670), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1073), 1, + STATE(1083), 1, sym__block_quote_prefix, - [11523] = 6, - ACTIONS(1279), 1, + [11720] = 6, + ACTIONS(1285), 1, sym__list_item_continuation, - ACTIONS(1283), 1, + ACTIONS(1289), 1, sym__block_quote_continuation, ACTIONS(1337), 1, sym__list_item_end, - STATE(397), 1, + STATE(388), 1, aux_sym_list_item_content_repeat1, - STATE(681), 1, + STATE(670), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1073), 1, + STATE(1083), 1, sym__block_quote_prefix, - [11542] = 6, - ACTIONS(1279), 1, + [11739] = 6, + ACTIONS(1285), 1, sym__list_item_continuation, - ACTIONS(1283), 1, + ACTIONS(1289), 1, sym__block_quote_continuation, ACTIONS(1339), 1, sym__list_item_end, - STATE(380), 1, + STATE(405), 1, aux_sym_list_item_content_repeat1, - STATE(681), 1, + STATE(670), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1073), 1, + STATE(1083), 1, sym__block_quote_prefix, - [11561] = 6, - ACTIONS(1279), 1, + [11758] = 6, + ACTIONS(1285), 1, sym__list_item_continuation, - ACTIONS(1283), 1, + ACTIONS(1289), 1, sym__block_quote_continuation, ACTIONS(1341), 1, sym__list_item_end, - STATE(399), 1, + STATE(388), 1, aux_sym_list_item_content_repeat1, - STATE(681), 1, + STATE(670), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1073), 1, + STATE(1083), 1, sym__block_quote_prefix, - [11580] = 6, - ACTIONS(1279), 1, - sym__list_item_continuation, - ACTIONS(1283), 1, + [11777] = 6, + ACTIONS(1293), 1, sym__block_quote_continuation, + ACTIONS(1295), 1, + sym__footnote_continuation, ACTIONS(1343), 1, - sym__list_item_end, - STATE(380), 1, - aux_sym_list_item_content_repeat1, - STATE(681), 1, + sym__footnote_end, + STATE(433), 1, + aux_sym_footnote_content_repeat1, + STATE(672), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1073), 1, + STATE(957), 1, sym__block_quote_prefix, - [11599] = 6, - ACTIONS(1279), 1, + [11796] = 6, + ACTIONS(1285), 1, sym__list_item_continuation, - ACTIONS(1283), 1, + ACTIONS(1289), 1, sym__block_quote_continuation, ACTIONS(1345), 1, sym__list_item_end, - STATE(401), 1, + STATE(388), 1, aux_sym_list_item_content_repeat1, - STATE(681), 1, + STATE(670), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1073), 1, + STATE(1083), 1, sym__block_quote_prefix, - [11618] = 6, - ACTIONS(1279), 1, + [11815] = 6, + ACTIONS(1285), 1, sym__list_item_continuation, - ACTIONS(1283), 1, + ACTIONS(1289), 1, sym__block_quote_continuation, ACTIONS(1347), 1, sym__list_item_end, - STATE(380), 1, + STATE(409), 1, aux_sym_list_item_content_repeat1, - STATE(681), 1, + STATE(670), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1073), 1, + STATE(1083), 1, sym__block_quote_prefix, - [11637] = 6, - ACTIONS(1279), 1, + [11834] = 6, + ACTIONS(1285), 1, sym__list_item_continuation, - ACTIONS(1283), 1, + ACTIONS(1289), 1, sym__block_quote_continuation, ACTIONS(1349), 1, sym__list_item_end, - STATE(403), 1, + STATE(388), 1, aux_sym_list_item_content_repeat1, - STATE(681), 1, + STATE(670), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1073), 1, + STATE(1083), 1, sym__block_quote_prefix, - [11656] = 6, - ACTIONS(1279), 1, + [11853] = 6, + ACTIONS(1285), 1, sym__list_item_continuation, - ACTIONS(1283), 1, + ACTIONS(1289), 1, sym__block_quote_continuation, ACTIONS(1351), 1, sym__list_item_end, - STATE(380), 1, + STATE(411), 1, aux_sym_list_item_content_repeat1, - STATE(681), 1, + STATE(670), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1073), 1, + STATE(1083), 1, sym__block_quote_prefix, - [11675] = 6, - ACTIONS(1279), 1, + [11872] = 6, + ACTIONS(1285), 1, sym__list_item_continuation, - ACTIONS(1283), 1, + ACTIONS(1289), 1, sym__block_quote_continuation, ACTIONS(1353), 1, sym__list_item_end, - STATE(405), 1, + STATE(388), 1, aux_sym_list_item_content_repeat1, - STATE(681), 1, + STATE(670), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1073), 1, + STATE(1083), 1, sym__block_quote_prefix, - [11694] = 6, - ACTIONS(1279), 1, + [11891] = 6, + ACTIONS(1285), 1, sym__list_item_continuation, - ACTIONS(1283), 1, + ACTIONS(1289), 1, sym__block_quote_continuation, ACTIONS(1355), 1, sym__list_item_end, - STATE(380), 1, + STATE(413), 1, aux_sym_list_item_content_repeat1, - STATE(681), 1, + STATE(670), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1073), 1, + STATE(1083), 1, sym__block_quote_prefix, - [11713] = 6, - ACTIONS(1279), 1, + [11910] = 6, + ACTIONS(1285), 1, sym__list_item_continuation, - ACTIONS(1283), 1, + ACTIONS(1289), 1, sym__block_quote_continuation, ACTIONS(1357), 1, sym__list_item_end, - STATE(407), 1, + STATE(388), 1, aux_sym_list_item_content_repeat1, - STATE(681), 1, + STATE(670), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1073), 1, + STATE(1083), 1, sym__block_quote_prefix, - [11732] = 6, - ACTIONS(1279), 1, + [11929] = 6, + ACTIONS(1285), 1, sym__list_item_continuation, - ACTIONS(1283), 1, + ACTIONS(1289), 1, sym__block_quote_continuation, ACTIONS(1359), 1, sym__list_item_end, - STATE(380), 1, + STATE(415), 1, aux_sym_list_item_content_repeat1, - STATE(681), 1, + STATE(670), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1073), 1, + STATE(1083), 1, sym__block_quote_prefix, - [11751] = 6, - ACTIONS(1279), 1, + [11948] = 6, + ACTIONS(1285), 1, sym__list_item_continuation, - ACTIONS(1283), 1, + ACTIONS(1289), 1, sym__block_quote_continuation, ACTIONS(1361), 1, sym__list_item_end, - STATE(409), 1, + STATE(388), 1, aux_sym_list_item_content_repeat1, - STATE(681), 1, + STATE(670), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1073), 1, + STATE(1083), 1, sym__block_quote_prefix, - [11770] = 6, - ACTIONS(1279), 1, + [11967] = 6, + ACTIONS(1285), 1, sym__list_item_continuation, - ACTIONS(1283), 1, + ACTIONS(1289), 1, sym__block_quote_continuation, ACTIONS(1363), 1, sym__list_item_end, - STATE(380), 1, + STATE(417), 1, aux_sym_list_item_content_repeat1, - STATE(681), 1, + STATE(670), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1073), 1, + STATE(1083), 1, sym__block_quote_prefix, - [11789] = 6, - ACTIONS(1279), 1, + [11986] = 6, + ACTIONS(1285), 1, sym__list_item_continuation, - ACTIONS(1283), 1, + ACTIONS(1289), 1, sym__block_quote_continuation, ACTIONS(1365), 1, sym__list_item_end, - STATE(411), 1, + STATE(388), 1, aux_sym_list_item_content_repeat1, - STATE(681), 1, + STATE(670), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1073), 1, + STATE(1083), 1, sym__block_quote_prefix, - [11808] = 6, - ACTIONS(1279), 1, + [12005] = 6, + ACTIONS(1285), 1, sym__list_item_continuation, - ACTIONS(1283), 1, + ACTIONS(1289), 1, sym__block_quote_continuation, ACTIONS(1367), 1, sym__list_item_end, - STATE(380), 1, + STATE(419), 1, aux_sym_list_item_content_repeat1, - STATE(681), 1, + STATE(670), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1073), 1, + STATE(1083), 1, sym__block_quote_prefix, - [11827] = 6, - ACTIONS(1279), 1, + [12024] = 6, + ACTIONS(1285), 1, sym__list_item_continuation, - ACTIONS(1283), 1, + ACTIONS(1289), 1, sym__block_quote_continuation, ACTIONS(1369), 1, sym__list_item_end, - STATE(413), 1, + STATE(388), 1, aux_sym_list_item_content_repeat1, - STATE(681), 1, + STATE(670), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1073), 1, + STATE(1083), 1, sym__block_quote_prefix, - [11846] = 6, - ACTIONS(1279), 1, + [12043] = 6, + ACTIONS(1285), 1, sym__list_item_continuation, - ACTIONS(1283), 1, + ACTIONS(1289), 1, sym__block_quote_continuation, ACTIONS(1371), 1, sym__list_item_end, - STATE(380), 1, + STATE(421), 1, aux_sym_list_item_content_repeat1, - STATE(681), 1, + STATE(670), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1073), 1, + STATE(1083), 1, sym__block_quote_prefix, - [11865] = 6, - ACTIONS(1309), 1, + [12062] = 6, + ACTIONS(1285), 1, + sym__list_item_continuation, + ACTIONS(1289), 1, sym__block_quote_continuation, - ACTIONS(1311), 1, - sym__footnote_continuation, ACTIONS(1373), 1, - sym__footnote_end, - STATE(435), 1, - aux_sym_footnote_content_repeat1, - STATE(683), 1, + sym__list_item_end, + STATE(388), 1, + aux_sym_list_item_content_repeat1, + STATE(670), 1, aux_sym__block_quote_prefix_repeat1, - STATE(993), 1, + STATE(1083), 1, sym__block_quote_prefix, - [11884] = 6, - ACTIONS(1283), 1, - sym__block_quote_continuation, - ACTIONS(1291), 1, + [12081] = 6, + ACTIONS(1285), 1, sym__list_item_continuation, + ACTIONS(1289), 1, + sym__block_quote_continuation, ACTIONS(1375), 1, sym__list_item_end, - STATE(431), 1, - aux_sym__list_item_definition_repeat1, - STATE(681), 1, + STATE(423), 1, + aux_sym_list_item_content_repeat1, + STATE(670), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1092), 1, + STATE(1083), 1, sym__block_quote_prefix, - [11903] = 6, - ACTIONS(1279), 1, + [12100] = 6, + ACTIONS(1285), 1, sym__list_item_continuation, - ACTIONS(1283), 1, + ACTIONS(1289), 1, sym__block_quote_continuation, ACTIONS(1377), 1, sym__list_item_end, - STATE(380), 1, + STATE(388), 1, aux_sym_list_item_content_repeat1, - STATE(681), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(1073), 1, - sym__block_quote_prefix, - [11922] = 1, - ACTIONS(1379), 6, - anon_sym_RBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - sym__whitespace1, - anon_sym_PERCENT, - sym__id, - [11931] = 1, - ACTIONS(611), 6, - sym__newline, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - sym__table_caption_begin, - anon_sym_PIPE, - [11940] = 6, - ACTIONS(1309), 1, - sym__block_quote_continuation, - ACTIONS(1311), 1, - sym__footnote_continuation, - ACTIONS(1381), 1, - sym__footnote_end, - STATE(420), 1, - aux_sym_footnote_content_repeat1, - STATE(683), 1, + STATE(670), 1, aux_sym__block_quote_prefix_repeat1, - STATE(993), 1, + STATE(1083), 1, sym__block_quote_prefix, - [11959] = 6, - ACTIONS(1309), 1, + [12119] = 6, + ACTIONS(1293), 1, sym__block_quote_continuation, - ACTIONS(1311), 1, + ACTIONS(1295), 1, sym__footnote_continuation, - ACTIONS(1383), 1, + ACTIONS(1379), 1, sym__footnote_end, - STATE(440), 1, + STATE(432), 1, aux_sym_footnote_content_repeat1, - STATE(683), 1, + STATE(672), 1, aux_sym__block_quote_prefix_repeat1, - STATE(993), 1, + STATE(957), 1, sym__block_quote_prefix, - [11978] = 6, - ACTIONS(1279), 1, + [12138] = 6, + ACTIONS(1285), 1, sym__list_item_continuation, - ACTIONS(1283), 1, + ACTIONS(1289), 1, sym__block_quote_continuation, - ACTIONS(1385), 1, + ACTIONS(1381), 1, sym__list_item_end, - STATE(428), 1, + STATE(388), 1, aux_sym_list_item_content_repeat1, - STATE(681), 1, + STATE(670), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1073), 1, + STATE(1083), 1, sym__block_quote_prefix, - [11997] = 1, - ACTIONS(521), 6, - sym__newline, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - sym__table_caption_begin, - anon_sym_PIPE, - [12006] = 1, - ACTIONS(525), 6, - sym__newline, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - sym__table_caption_begin, - anon_sym_PIPE, - [12015] = 6, - ACTIONS(1279), 1, + [12157] = 1, + ACTIONS(1383), 6, + anon_sym_RBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + sym__whitespace1, + anon_sym_PERCENT, + sym__id, + [12166] = 6, + ACTIONS(1285), 1, sym__list_item_continuation, - ACTIONS(1283), 1, + ACTIONS(1289), 1, sym__block_quote_continuation, - ACTIONS(1387), 1, + ACTIONS(1385), 1, sym__list_item_end, - STATE(430), 1, + STATE(434), 1, aux_sym_list_item_content_repeat1, - STATE(681), 1, + STATE(670), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1073), 1, + STATE(1083), 1, sym__block_quote_prefix, - [12034] = 1, - ACTIONS(555), 6, - sym__newline, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - sym__table_caption_begin, - anon_sym_PIPE, - [12043] = 1, - ACTIONS(559), 6, - sym__newline, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - sym__table_caption_begin, - anon_sym_PIPE, - [12052] = 1, - ACTIONS(581), 6, - sym__newline, - sym__list_item_continuation, - sym__list_item_end, + [12185] = 6, + ACTIONS(1289), 1, sym__block_quote_continuation, - sym__table_caption_begin, - anon_sym_PIPE, - [12061] = 6, - ACTIONS(1279), 1, + ACTIONS(1387), 1, sym__list_item_continuation, - ACTIONS(1283), 1, - sym__block_quote_continuation, ACTIONS(1389), 1, sym__list_item_end, - STATE(380), 1, - aux_sym_list_item_content_repeat1, - STATE(681), 1, + STATE(438), 1, + aux_sym__list_item_definition_repeat1, + STATE(670), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1073), 1, + STATE(1110), 1, sym__block_quote_prefix, - [12080] = 1, - ACTIONS(585), 6, - sym__newline, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - sym__table_caption_begin, - anon_sym_PIPE, - [12089] = 6, - ACTIONS(1279), 1, - sym__list_item_continuation, - ACTIONS(1283), 1, + [12204] = 6, + ACTIONS(1293), 1, sym__block_quote_continuation, + ACTIONS(1295), 1, + sym__footnote_continuation, ACTIONS(1391), 1, - sym__list_item_end, - STATE(380), 1, - aux_sym_list_item_content_repeat1, - STATE(681), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(1073), 1, - sym__block_quote_prefix, - [12108] = 6, - ACTIONS(1393), 1, - sym__list_item_continuation, - ACTIONS(1396), 1, - sym__list_item_end, - ACTIONS(1398), 1, - sym__block_quote_continuation, - STATE(431), 1, - aux_sym__list_item_definition_repeat1, - STATE(681), 1, + sym__footnote_end, + STATE(430), 1, + aux_sym_footnote_content_repeat1, + STATE(672), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1092), 1, + STATE(957), 1, sym__block_quote_prefix, - [12127] = 6, - ACTIONS(1279), 1, - sym__list_item_continuation, - ACTIONS(1283), 1, + [12223] = 6, + ACTIONS(1293), 1, sym__block_quote_continuation, - ACTIONS(1401), 1, - sym__list_item_end, - STATE(437), 1, - aux_sym_list_item_content_repeat1, - STATE(681), 1, + ACTIONS(1295), 1, + sym__footnote_continuation, + ACTIONS(1393), 1, + sym__footnote_end, + STATE(432), 1, + aux_sym_footnote_content_repeat1, + STATE(672), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1073), 1, + STATE(957), 1, sym__block_quote_prefix, - [12146] = 6, - ACTIONS(1309), 1, + [12242] = 1, + ACTIONS(1395), 6, + anon_sym_RBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + sym__whitespace1, + anon_sym_PERCENT, + sym__id, + [12251] = 6, + ACTIONS(1397), 1, sym__block_quote_continuation, - ACTIONS(1311), 1, + ACTIONS(1400), 1, sym__footnote_continuation, ACTIONS(1403), 1, sym__footnote_end, - STATE(434), 1, + STATE(432), 1, aux_sym_footnote_content_repeat1, - STATE(683), 1, + STATE(672), 1, aux_sym__block_quote_prefix_repeat1, - STATE(993), 1, + STATE(957), 1, sym__block_quote_prefix, - [12165] = 6, - ACTIONS(1309), 1, + [12270] = 6, + ACTIONS(1293), 1, sym__block_quote_continuation, - ACTIONS(1311), 1, + ACTIONS(1295), 1, sym__footnote_continuation, ACTIONS(1405), 1, sym__footnote_end, - STATE(440), 1, + STATE(432), 1, aux_sym_footnote_content_repeat1, - STATE(683), 1, + STATE(672), 1, aux_sym__block_quote_prefix_repeat1, - STATE(993), 1, + STATE(957), 1, sym__block_quote_prefix, - [12184] = 6, - ACTIONS(1309), 1, + [12289] = 6, + ACTIONS(1285), 1, + sym__list_item_continuation, + ACTIONS(1289), 1, sym__block_quote_continuation, - ACTIONS(1311), 1, - sym__footnote_continuation, ACTIONS(1407), 1, - sym__footnote_end, - STATE(440), 1, - aux_sym_footnote_content_repeat1, - STATE(683), 1, + sym__list_item_end, + STATE(388), 1, + aux_sym_list_item_content_repeat1, + STATE(670), 1, aux_sym__block_quote_prefix_repeat1, - STATE(993), 1, + STATE(1083), 1, + sym__block_quote_prefix, + [12308] = 4, + ACTIONS(91), 1, + sym__table_header_begin, + ACTIONS(93), 1, + sym__table_separator_begin, + ACTIONS(95), 1, + sym__table_row_begin, + STATE(98), 3, + sym_table_header, + sym_table_separator, + sym_table_row, + [12323] = 4, + ACTIONS(69), 1, + sym__table_header_begin, + ACTIONS(71), 1, + sym__table_separator_begin, + ACTIONS(73), 1, + sym__table_row_begin, + STATE(91), 3, + sym_table_header, + sym_table_separator, + sym_table_row, + [12338] = 4, + ACTIONS(380), 1, + sym__table_header_begin, + ACTIONS(382), 1, + sym__table_separator_begin, + ACTIONS(384), 1, + sym__table_row_begin, + STATE(352), 3, + sym_table_header, + sym_table_separator, + sym_table_row, + [12353] = 6, + ACTIONS(1409), 1, + sym__list_item_continuation, + ACTIONS(1412), 1, + sym__list_item_end, + ACTIONS(1414), 1, + sym__block_quote_continuation, + STATE(438), 1, + aux_sym__list_item_definition_repeat1, + STATE(670), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(1110), 1, + sym__block_quote_prefix, + [12372] = 6, + ACTIONS(1289), 1, + sym__block_quote_continuation, + ACTIONS(1387), 1, + sym__list_item_continuation, + ACTIONS(1417), 1, + sym__list_item_end, + STATE(428), 1, + aux_sym__list_item_definition_repeat1, + STATE(670), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(1110), 1, sym__block_quote_prefix, - [12203] = 1, - ACTIONS(1409), 6, + [12391] = 4, + ACTIONS(482), 1, + sym__table_header_begin, + ACTIONS(484), 1, + sym__table_separator_begin, + ACTIONS(486), 1, + sym__table_row_begin, + STATE(378), 3, + sym_table_header, + sym_table_separator, + sym_table_row, + [12406] = 1, + ACTIONS(1419), 6, anon_sym_RBRACE, anon_sym_DOT, aux_sym_identifier_token1, sym__whitespace1, anon_sym_PERCENT, sym__id, - [12212] = 6, - ACTIONS(1279), 1, + [12415] = 6, + ACTIONS(1285), 1, sym__list_item_continuation, - ACTIONS(1283), 1, + ACTIONS(1289), 1, sym__block_quote_continuation, - ACTIONS(1411), 1, + ACTIONS(1421), 1, sym__list_item_end, - STATE(380), 1, + STATE(447), 1, aux_sym_list_item_content_repeat1, - STATE(681), 1, + STATE(670), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1073), 1, + STATE(1083), 1, sym__block_quote_prefix, - [12231] = 1, - ACTIONS(1413), 6, + [12434] = 1, + ACTIONS(1423), 6, anon_sym_RBRACE, anon_sym_DOT, aux_sym_identifier_token1, sym__whitespace1, anon_sym_PERCENT, sym__id, - [12240] = 6, - ACTIONS(1309), 1, + [12443] = 4, + ACTIONS(448), 1, + sym__table_header_begin, + ACTIONS(450), 1, + sym__table_separator_begin, + ACTIONS(452), 1, + sym__table_row_begin, + STATE(343), 3, + sym_table_header, + sym_table_separator, + sym_table_row, + [12458] = 6, + ACTIONS(1285), 1, + sym__list_item_continuation, + ACTIONS(1289), 1, sym__block_quote_continuation, - ACTIONS(1311), 1, - sym__footnote_continuation, - ACTIONS(1415), 1, - sym__footnote_end, - STATE(441), 1, - aux_sym_footnote_content_repeat1, - STATE(683), 1, + ACTIONS(1425), 1, + sym__list_item_end, + STATE(388), 1, + aux_sym_list_item_content_repeat1, + STATE(670), 1, aux_sym__block_quote_prefix_repeat1, - STATE(993), 1, + STATE(1083), 1, sym__block_quote_prefix, - [12259] = 6, - ACTIONS(1417), 1, + [12477] = 6, + ACTIONS(1285), 1, + sym__list_item_continuation, + ACTIONS(1289), 1, sym__block_quote_continuation, - ACTIONS(1420), 1, - sym__footnote_continuation, - ACTIONS(1423), 1, - sym__footnote_end, - STATE(440), 1, - aux_sym_footnote_content_repeat1, - STATE(683), 1, + ACTIONS(1427), 1, + sym__list_item_end, + STATE(391), 1, + aux_sym_list_item_content_repeat1, + STATE(670), 1, aux_sym__block_quote_prefix_repeat1, - STATE(993), 1, + STATE(1083), 1, sym__block_quote_prefix, - [12278] = 6, - ACTIONS(1309), 1, + [12496] = 6, + ACTIONS(1285), 1, + sym__list_item_continuation, + ACTIONS(1289), 1, sym__block_quote_continuation, - ACTIONS(1311), 1, - sym__footnote_continuation, - ACTIONS(1425), 1, - sym__footnote_end, - STATE(440), 1, - aux_sym_footnote_content_repeat1, - STATE(683), 1, + ACTIONS(1429), 1, + sym__list_item_end, + STATE(388), 1, + aux_sym_list_item_content_repeat1, + STATE(670), 1, aux_sym__block_quote_prefix_repeat1, - STATE(993), 1, + STATE(1083), 1, sym__block_quote_prefix, - [12297] = 1, - ACTIONS(1427), 6, + [12515] = 1, + ACTIONS(1431), 6, anon_sym_RBRACE, anon_sym_DOT, aux_sym_identifier_token1, sym__whitespace1, anon_sym_PERCENT, sym__id, - [12306] = 1, - ACTIONS(585), 5, - sym__newline, - sym__indented_content_spacer, - sym__block_quote_continuation, - sym__table_caption_begin, - anon_sym_PIPE, - [12314] = 1, - ACTIONS(585), 5, - sym__block_close, - sym__newline, - sym__block_quote_continuation, - sym__table_caption_begin, - anon_sym_PIPE, - [12322] = 1, - ACTIONS(521), 5, - sym__block_close, - sym__newline, + [12524] = 6, + ACTIONS(1293), 1, sym__block_quote_continuation, - sym__table_caption_begin, - anon_sym_PIPE, - [12330] = 1, - ACTIONS(559), 5, - sym__block_close, - sym__newline, + ACTIONS(1295), 1, + sym__footnote_continuation, + ACTIONS(1433), 1, + sym__footnote_end, + STATE(386), 1, + aux_sym_footnote_content_repeat1, + STATE(672), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(957), 1, + sym__block_quote_prefix, + [12543] = 6, + ACTIONS(1293), 1, sym__block_quote_continuation, - sym__table_caption_begin, - anon_sym_PIPE, - [12338] = 1, - ACTIONS(555), 5, - sym__block_close, - sym__newline, + ACTIONS(1295), 1, + sym__footnote_continuation, + ACTIONS(1435), 1, + sym__footnote_end, + STATE(424), 1, + aux_sym_footnote_content_repeat1, + STATE(672), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(957), 1, + sym__block_quote_prefix, + [12562] = 6, + ACTIONS(1285), 1, + sym__list_item_continuation, + ACTIONS(1289), 1, sym__block_quote_continuation, - sym__table_caption_begin, - anon_sym_PIPE, - [12346] = 4, - ACTIONS(1429), 1, + ACTIONS(1437), 1, + sym__list_item_end, + STATE(425), 1, + aux_sym_list_item_content_repeat1, + STATE(670), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(1083), 1, + sym__block_quote_prefix, + [12581] = 4, + ACTIONS(1439), 1, sym__block_close, - ACTIONS(1431), 1, + ACTIONS(1441), 1, sym__block_quote_continuation, - STATE(451), 1, + STATE(456), 1, aux_sym__block_quote_content_repeat1, STATE(65), 2, sym__block_quote_prefix, aux_sym__block_quote_prefix_repeat1, - [12360] = 4, - ACTIONS(1431), 1, + [12595] = 3, + ACTIONS(948), 1, + sym__table_caption_begin, + STATE(635), 1, + sym_table_caption, + ACTIONS(536), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [12607] = 3, + ACTIONS(503), 1, + sym__block_quote_continuation, + STATE(455), 1, + aux_sym__block_quote_prefix_repeat1, + ACTIONS(937), 3, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + [12619] = 3, + ACTIONS(1443), 1, sym__block_quote_continuation, - ACTIONS(1433), 1, + STATE(455), 1, + aux_sym__block_quote_prefix_repeat1, + ACTIONS(868), 3, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + [12631] = 4, + ACTIONS(1441), 1, + sym__block_quote_continuation, + ACTIONS(1446), 1, sym__block_close, - STATE(448), 1, + STATE(457), 1, aux_sym__block_quote_content_repeat1, STATE(65), 2, sym__block_quote_prefix, aux_sym__block_quote_prefix_repeat1, - [12374] = 1, - ACTIONS(525), 5, - sym__block_close, - sym__newline, - sym__block_quote_continuation, - sym__table_caption_begin, - anon_sym_PIPE, - [12382] = 4, - ACTIONS(1435), 1, + [12645] = 4, + ACTIONS(1448), 1, sym__block_close, - ACTIONS(1437), 1, + ACTIONS(1450), 1, sym__block_quote_continuation, - STATE(451), 1, + STATE(457), 1, aux_sym__block_quote_content_repeat1, STATE(65), 2, sym__block_quote_prefix, aux_sym__block_quote_prefix_repeat1, - [12396] = 1, - ACTIONS(581), 5, - sym__block_close, - sym__newline, - sym__block_quote_continuation, - sym__table_caption_begin, - anon_sym_PIPE, - [12404] = 1, - ACTIONS(525), 5, - sym__newline, - sym__indented_content_spacer, - sym__block_quote_continuation, - sym__table_caption_begin, - anon_sym_PIPE, - [12412] = 1, - ACTIONS(555), 5, - sym__newline, - sym__indented_content_spacer, - sym__block_quote_continuation, - sym__table_caption_begin, - anon_sym_PIPE, - [12420] = 1, - ACTIONS(611), 5, - sym__block_close, - sym__newline, - sym__block_quote_continuation, - sym__table_caption_begin, - anon_sym_PIPE, - [12428] = 3, - ACTIONS(1041), 1, - sym__table_caption_begin, - STATE(582), 1, - sym_table_caption, - ACTIONS(503), 3, + [12659] = 2, + ACTIONS(1453), 1, + sym__code_block_end, + ACTIONS(632), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [12440] = 1, - ACTIONS(521), 5, - sym__newline, - sym__indented_content_spacer, - sym__block_quote_continuation, - sym__table_caption_begin, - anon_sym_PIPE, - [12448] = 1, - ACTIONS(559), 5, - sym__newline, - sym__indented_content_spacer, - sym__block_quote_continuation, - sym__table_caption_begin, - anon_sym_PIPE, - [12456] = 1, - ACTIONS(581), 5, - sym__newline, - sym__indented_content_spacer, - sym__block_quote_continuation, - sym__table_caption_begin, - anon_sym_PIPE, - [12464] = 1, - ACTIONS(611), 5, - sym__newline, - sym__indented_content_spacer, - sym__block_quote_continuation, - sym__table_caption_begin, - anon_sym_PIPE, - [12472] = 4, - ACTIONS(59), 1, - sym_list_marker_upper_alpha_parens, - ACTIONS(1440), 1, - sym__block_close, - STATE(567), 1, - aux_sym__list_upper_alpha_parens_repeat1, - STATE(707), 1, - sym__list_item_upper_alpha_parens, - [12485] = 4, - ACTIONS(1442), 1, - anon_sym_EQ, - ACTIONS(1444), 1, - sym_language, - ACTIONS(1446), 1, - sym__newline, - STATE(1107), 1, - sym_raw_block_info, - [12498] = 3, - ACTIONS(1448), 1, + [12668] = 3, + ACTIONS(1455), 1, aux_sym__line_token1, - STATE(974), 1, + STATE(942), 1, sym_frontmatter_content, - STATE(468), 2, + STATE(464), 2, sym__line, aux_sym_frontmatter_content_repeat1, - [12509] = 4, - ACTIONS(1442), 1, - anon_sym_EQ, - ACTIONS(1450), 1, - sym_language, - ACTIONS(1452), 1, - sym__newline, - STATE(964), 1, - sym_raw_block_info, - [12522] = 3, - ACTIONS(1087), 1, + [12679] = 3, + ACTIONS(1005), 1, sym__table_caption_begin, - STATE(732), 1, + STATE(823), 1, sym_table_caption, - ACTIONS(503), 2, + ACTIONS(536), 2, sym__block_close, sym__block_quote_continuation, - [12533] = 3, - ACTIONS(1454), 1, + [12690] = 4, + ACTIONS(1457), 1, + anon_sym_EQ, + ACTIONS(1459), 1, + sym_language, + ACTIONS(1461), 1, + sym__newline, + STATE(1080), 1, + sym_raw_block_info, + [12703] = 3, + ACTIONS(1463), 1, anon_sym_PERCENT, - STATE(482), 1, + STATE(477), 1, aux_sym__comment_no_newline_repeat1, - ACTIONS(1456), 2, + ACTIONS(1465), 2, sym_backslash_escape, aux_sym__comment_no_newline_token1, - [12544] = 2, - ACTIONS(1458), 1, + [12714] = 2, + ACTIONS(1467), 1, sym__eof_or_newline, - ACTIONS(607), 3, + ACTIONS(550), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [12553] = 3, - ACTIONS(1448), 1, + [12723] = 3, + ACTIONS(1455), 1, aux_sym__line_token1, - ACTIONS(1460), 1, + ACTIONS(1469), 1, sym_frontmatter_marker, - STATE(498), 2, + STATE(495), 2, sym__line, aux_sym_frontmatter_content_repeat1, - [12564] = 3, - ACTIONS(1448), 1, + [12734] = 3, + ACTIONS(1455), 1, aux_sym__line_token1, - STATE(1166), 1, + STATE(933), 1, sym_frontmatter_content, - STATE(468), 2, + STATE(464), 2, sym__line, aux_sym_frontmatter_content_repeat1, - [12575] = 2, - ACTIONS(1462), 1, + [12745] = 2, + ACTIONS(1471), 1, sym__div_end, - ACTIONS(589), 3, + ACTIONS(622), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [12584] = 2, - ACTIONS(1464), 1, - sym__code_block_end, - ACTIONS(515), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [12593] = 2, - ACTIONS(1466), 1, + [12754] = 2, + ACTIONS(1473), 1, sym__div_end, - ACTIONS(529), 3, + ACTIONS(556), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [12602] = 2, - ACTIONS(1468), 1, + [12763] = 2, + ACTIONS(1475), 1, sym__div_end, - ACTIONS(535), 3, + ACTIONS(562), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [12611] = 2, - ACTIONS(1470), 1, + [12772] = 2, + ACTIONS(1477), 1, sym__code_block_end, - ACTIONS(541), 3, + ACTIONS(568), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [12620] = 2, - ACTIONS(1472), 1, + [12781] = 2, + ACTIONS(1479), 1, sym__code_block_end, - ACTIONS(509), 3, + ACTIONS(574), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [12629] = 2, - ACTIONS(1474), 1, + [12790] = 2, + ACTIONS(1481), 1, sym__code_block_end, - ACTIONS(549), 3, + ACTIONS(580), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [12638] = 2, - ACTIONS(1476), 1, + [12799] = 2, + ACTIONS(1483), 1, sym__div_end, - ACTIONS(563), 3, + ACTIONS(598), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [12647] = 2, - ACTIONS(1478), 1, + [12808] = 2, + ACTIONS(1485), 1, sym__code_block_end, - ACTIONS(569), 3, + ACTIONS(604), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [12656] = 2, - ACTIONS(1480), 1, + [12817] = 2, + ACTIONS(1487), 1, sym__code_block_end, - ACTIONS(575), 3, + ACTIONS(610), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [12665] = 2, - ACTIONS(1482), 1, + [12826] = 2, + ACTIONS(1489), 1, sym__eof_or_newline, - ACTIONS(593), 3, + ACTIONS(616), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [12674] = 3, - ACTIONS(1484), 1, + [12835] = 1, + ACTIONS(460), 4, + sym__block_quote_continuation, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + [12842] = 3, + ACTIONS(1491), 1, anon_sym_PERCENT, - STATE(466), 1, + STATE(477), 1, aux_sym__comment_no_newline_repeat1, - ACTIONS(1456), 2, + ACTIONS(1493), 2, sym_backslash_escape, aux_sym__comment_no_newline_token1, - [12685] = 3, - ACTIONS(1486), 1, + [12853] = 3, + ACTIONS(1496), 1, anon_sym_PERCENT, - STATE(482), 1, + STATE(462), 1, aux_sym__comment_no_newline_repeat1, - ACTIONS(1488), 2, + ACTIONS(1465), 2, sym_backslash_escape, aux_sym__comment_no_newline_token1, - [12696] = 4, - ACTIONS(33), 1, + [12864] = 4, + ACTIONS(31), 1, sym_list_marker_definition, - ACTIONS(1491), 1, + ACTIONS(1498), 1, sym__block_close, - STATE(550), 1, + STATE(528), 1, aux_sym__list_definition_repeat1, - STATE(896), 1, + STATE(804), 1, sym__list_item_definition, - [12709] = 4, - ACTIONS(35), 1, + [12877] = 4, + ACTIONS(33), 1, sym_list_marker_decimal_period, - ACTIONS(1493), 1, + ACTIONS(1500), 1, sym__block_close, - STATE(552), 1, + STATE(530), 1, aux_sym__list_decimal_period_repeat1, - STATE(841), 1, + STATE(837), 1, sym__list_item_decimal_period, - [12722] = 4, - ACTIONS(45), 1, + [12890] = 4, + ACTIONS(43), 1, sym_list_marker_decimal_paren, - ACTIONS(1495), 1, + ACTIONS(1502), 1, sym__block_close, - STATE(554), 1, + STATE(532), 1, aux_sym__list_decimal_paren_repeat1, - STATE(796), 1, + STATE(703), 1, sym__list_item_decimal_paren, - [12735] = 4, - ACTIONS(55), 1, + [12903] = 4, + ACTIONS(53), 1, sym_list_marker_decimal_parens, - ACTIONS(1497), 1, + ACTIONS(1504), 1, sym__block_close, - STATE(556), 1, + STATE(534), 1, aux_sym__list_decimal_parens_repeat1, - STATE(716), 1, + STATE(715), 1, sym__list_item_decimal_parens, - [12748] = 4, - ACTIONS(37), 1, + [12916] = 4, + ACTIONS(35), 1, sym_list_marker_lower_alpha_period, - ACTIONS(1499), 1, + ACTIONS(1506), 1, sym__block_close, - STATE(558), 1, + STATE(552), 1, aux_sym__list_lower_alpha_period_repeat1, - STATE(722), 1, + STATE(739), 1, sym__list_item_lower_alpha_period, - [12761] = 4, - ACTIONS(47), 1, + [12929] = 4, + ACTIONS(45), 1, sym_list_marker_lower_alpha_paren, - ACTIONS(1501), 1, + ACTIONS(1508), 1, sym__block_close, - STATE(560), 1, + STATE(554), 1, aux_sym__list_lower_alpha_paren_repeat1, - STATE(801), 1, + STATE(754), 1, sym__list_item_lower_alpha_paren, - [12774] = 4, - ACTIONS(57), 1, + [12942] = 4, + ACTIONS(55), 1, sym_list_marker_lower_alpha_parens, - ACTIONS(1503), 1, + ACTIONS(1510), 1, sym__block_close, - STATE(562), 1, + STATE(556), 1, aux_sym__list_lower_alpha_parens_repeat1, - STATE(813), 1, + STATE(755), 1, sym__list_item_lower_alpha_parens, - [12787] = 4, - ACTIONS(39), 1, + [12955] = 4, + ACTIONS(37), 1, sym_list_marker_upper_alpha_period, - ACTIONS(1505), 1, + ACTIONS(1512), 1, sym__block_close, - STATE(563), 1, + STATE(558), 1, aux_sym__list_upper_alpha_period_repeat1, - STATE(704), 1, + STATE(758), 1, sym__list_item_upper_alpha_period, - [12800] = 4, - ACTIONS(49), 1, + [12968] = 4, + ACTIONS(47), 1, sym_list_marker_upper_alpha_paren, - ACTIONS(1507), 1, + ACTIONS(1514), 1, sym__block_close, - STATE(565), 1, + STATE(560), 1, aux_sym__list_upper_alpha_paren_repeat1, - STATE(706), 1, + STATE(759), 1, sym__list_item_upper_alpha_paren, - [12813] = 4, - ACTIONS(59), 1, + [12981] = 4, + ACTIONS(57), 1, sym_list_marker_upper_alpha_parens, - ACTIONS(1509), 1, + ACTIONS(1516), 1, sym__block_close, - STATE(567), 1, + STATE(562), 1, aux_sym__list_upper_alpha_parens_repeat1, - STATE(707), 1, + STATE(766), 1, sym__list_item_upper_alpha_parens, - [12826] = 4, - ACTIONS(41), 1, + [12994] = 4, + ACTIONS(39), 1, sym_list_marker_lower_roman_period, - ACTIONS(1511), 1, + ACTIONS(1518), 1, sym__block_close, - STATE(569), 1, + STATE(564), 1, aux_sym__list_lower_roman_period_repeat1, - STATE(725), 1, + STATE(768), 1, sym__list_item_lower_roman_period, - [12839] = 4, - ACTIONS(51), 1, + [13007] = 4, + ACTIONS(49), 1, sym_list_marker_lower_roman_paren, - ACTIONS(1513), 1, + ACTIONS(1520), 1, sym__block_close, - STATE(571), 1, + STATE(566), 1, aux_sym__list_lower_roman_paren_repeat1, - STATE(726), 1, + STATE(770), 1, sym__list_item_lower_roman_paren, - [12852] = 4, - ACTIONS(61), 1, + [13020] = 4, + ACTIONS(59), 1, sym_list_marker_lower_roman_parens, - ACTIONS(1515), 1, + ACTIONS(1522), 1, sym__block_close, - STATE(573), 1, + STATE(568), 1, aux_sym__list_lower_roman_parens_repeat1, - STATE(736), 1, + STATE(773), 1, sym__list_item_lower_roman_parens, - [12865] = 4, - ACTIONS(53), 1, + [13033] = 4, + ACTIONS(41), 1, + sym_list_marker_upper_roman_period, + ACTIONS(1524), 1, + sym__block_close, + STATE(571), 1, + aux_sym__list_upper_roman_period_repeat1, + STATE(775), 1, + sym__list_item_upper_roman_period, + [13046] = 4, + ACTIONS(51), 1, sym_list_marker_upper_roman_paren, - ACTIONS(1517), 1, + ACTIONS(1526), 1, sym__block_close, - STATE(579), 1, + STATE(573), 1, aux_sym__list_upper_roman_paren_repeat1, - STATE(743), 1, + STATE(791), 1, sym__list_item_upper_roman_paren, - [12878] = 4, - ACTIONS(63), 1, + [13059] = 4, + ACTIONS(61), 1, sym_list_marker_upper_roman_parens, - ACTIONS(1519), 1, + ACTIONS(1528), 1, sym__block_close, - STATE(580), 1, + STATE(577), 1, aux_sym__list_upper_roman_parens_repeat1, - STATE(762), 1, + STATE(793), 1, sym__list_item_upper_roman_parens, - [12891] = 3, - ACTIONS(1521), 1, + [13072] = 3, + ACTIONS(1530), 1, aux_sym__line_token1, - ACTIONS(1524), 1, + ACTIONS(1533), 1, sym_frontmatter_marker, - STATE(498), 2, + STATE(495), 2, sym__line, aux_sym_frontmatter_content_repeat1, - [12902] = 4, - ACTIONS(33), 1, + [13083] = 4, + ACTIONS(31), 1, sym_list_marker_definition, - ACTIONS(1526), 1, + ACTIONS(1535), 1, sym__block_close, - STATE(550), 1, + STATE(528), 1, aux_sym__list_definition_repeat1, - STATE(896), 1, + STATE(804), 1, sym__list_item_definition, - [12915] = 4, - ACTIONS(35), 1, + [13096] = 4, + ACTIONS(33), 1, sym_list_marker_decimal_period, - ACTIONS(1528), 1, + ACTIONS(1537), 1, sym__block_close, - STATE(552), 1, + STATE(530), 1, aux_sym__list_decimal_period_repeat1, - STATE(841), 1, + STATE(837), 1, sym__list_item_decimal_period, - [12928] = 4, - ACTIONS(45), 1, + [13109] = 4, + ACTIONS(43), 1, sym_list_marker_decimal_paren, - ACTIONS(1530), 1, + ACTIONS(1539), 1, sym__block_close, - STATE(554), 1, + STATE(532), 1, aux_sym__list_decimal_paren_repeat1, - STATE(796), 1, + STATE(703), 1, sym__list_item_decimal_paren, - [12941] = 4, - ACTIONS(55), 1, + [13122] = 4, + ACTIONS(53), 1, sym_list_marker_decimal_parens, - ACTIONS(1532), 1, + ACTIONS(1541), 1, sym__block_close, - STATE(556), 1, + STATE(534), 1, aux_sym__list_decimal_parens_repeat1, - STATE(716), 1, + STATE(715), 1, sym__list_item_decimal_parens, - [12954] = 4, - ACTIONS(37), 1, + [13135] = 4, + ACTIONS(35), 1, sym_list_marker_lower_alpha_period, - ACTIONS(1534), 1, + ACTIONS(1543), 1, sym__block_close, - STATE(558), 1, + STATE(552), 1, aux_sym__list_lower_alpha_period_repeat1, - STATE(722), 1, + STATE(739), 1, sym__list_item_lower_alpha_period, - [12967] = 4, - ACTIONS(47), 1, + [13148] = 4, + ACTIONS(45), 1, sym_list_marker_lower_alpha_paren, - ACTIONS(1536), 1, + ACTIONS(1545), 1, sym__block_close, - STATE(560), 1, + STATE(554), 1, aux_sym__list_lower_alpha_paren_repeat1, - STATE(801), 1, + STATE(754), 1, sym__list_item_lower_alpha_paren, - [12980] = 4, - ACTIONS(57), 1, + [13161] = 4, + ACTIONS(55), 1, sym_list_marker_lower_alpha_parens, - ACTIONS(1538), 1, + ACTIONS(1547), 1, sym__block_close, - STATE(562), 1, + STATE(556), 1, aux_sym__list_lower_alpha_parens_repeat1, - STATE(813), 1, + STATE(755), 1, sym__list_item_lower_alpha_parens, - [12993] = 4, - ACTIONS(39), 1, + [13174] = 4, + ACTIONS(37), 1, sym_list_marker_upper_alpha_period, - ACTIONS(1540), 1, + ACTIONS(1549), 1, sym__block_close, - STATE(563), 1, + STATE(558), 1, aux_sym__list_upper_alpha_period_repeat1, - STATE(704), 1, + STATE(758), 1, sym__list_item_upper_alpha_period, - [13006] = 4, - ACTIONS(49), 1, + [13187] = 4, + ACTIONS(47), 1, sym_list_marker_upper_alpha_paren, - ACTIONS(1542), 1, + ACTIONS(1551), 1, sym__block_close, - STATE(565), 1, + STATE(560), 1, aux_sym__list_upper_alpha_paren_repeat1, - STATE(706), 1, + STATE(759), 1, sym__list_item_upper_alpha_paren, - [13019] = 4, - ACTIONS(59), 1, + [13200] = 4, + ACTIONS(57), 1, sym_list_marker_upper_alpha_parens, - ACTIONS(1544), 1, + ACTIONS(1553), 1, sym__block_close, - STATE(567), 1, + STATE(562), 1, aux_sym__list_upper_alpha_parens_repeat1, - STATE(707), 1, + STATE(766), 1, sym__list_item_upper_alpha_parens, - [13032] = 4, - ACTIONS(41), 1, + [13213] = 4, + ACTIONS(39), 1, sym_list_marker_lower_roman_period, - ACTIONS(1546), 1, + ACTIONS(1555), 1, sym__block_close, - STATE(569), 1, + STATE(564), 1, aux_sym__list_lower_roman_period_repeat1, - STATE(725), 1, + STATE(768), 1, sym__list_item_lower_roman_period, - [13045] = 4, - ACTIONS(51), 1, + [13226] = 4, + ACTIONS(49), 1, sym_list_marker_lower_roman_paren, - ACTIONS(1548), 1, + ACTIONS(1557), 1, sym__block_close, - STATE(571), 1, + STATE(566), 1, aux_sym__list_lower_roman_paren_repeat1, - STATE(726), 1, + STATE(770), 1, sym__list_item_lower_roman_paren, - [13058] = 4, - ACTIONS(61), 1, + [13239] = 4, + ACTIONS(59), 1, sym_list_marker_lower_roman_parens, - ACTIONS(1550), 1, + ACTIONS(1559), 1, sym__block_close, - STATE(573), 1, + STATE(568), 1, aux_sym__list_lower_roman_parens_repeat1, - STATE(736), 1, + STATE(773), 1, sym__list_item_lower_roman_parens, - [13071] = 4, - ACTIONS(43), 1, + [13252] = 4, + ACTIONS(41), 1, sym_list_marker_upper_roman_period, - ACTIONS(1552), 1, + ACTIONS(1561), 1, sym__block_close, - STATE(578), 1, + STATE(571), 1, aux_sym__list_upper_roman_period_repeat1, - STATE(742), 1, + STATE(775), 1, sym__list_item_upper_roman_period, - [13084] = 4, - ACTIONS(53), 1, + [13265] = 4, + ACTIONS(51), 1, sym_list_marker_upper_roman_paren, - ACTIONS(1554), 1, + ACTIONS(1563), 1, sym__block_close, - STATE(579), 1, + STATE(573), 1, aux_sym__list_upper_roman_paren_repeat1, - STATE(743), 1, + STATE(791), 1, sym__list_item_upper_roman_paren, - [13097] = 4, - ACTIONS(63), 1, + [13278] = 4, + ACTIONS(61), 1, sym_list_marker_upper_roman_parens, - ACTIONS(1556), 1, + ACTIONS(1565), 1, sym__block_close, - STATE(580), 1, + STATE(577), 1, aux_sym__list_upper_roman_parens_repeat1, - STATE(762), 1, + STATE(793), 1, sym__list_item_upper_roman_parens, - [13110] = 4, - ACTIONS(33), 1, + [13291] = 4, + ACTIONS(31), 1, sym_list_marker_definition, - ACTIONS(1558), 1, + ACTIONS(1567), 1, sym__block_close, - STATE(550), 1, + STATE(528), 1, aux_sym__list_definition_repeat1, - STATE(896), 1, + STATE(804), 1, sym__list_item_definition, - [13123] = 4, - ACTIONS(35), 1, + [13304] = 4, + ACTIONS(33), 1, sym_list_marker_decimal_period, - ACTIONS(1560), 1, + ACTIONS(1569), 1, sym__block_close, - STATE(552), 1, + STATE(530), 1, aux_sym__list_decimal_period_repeat1, - STATE(841), 1, + STATE(837), 1, sym__list_item_decimal_period, - [13136] = 4, - ACTIONS(45), 1, + [13317] = 4, + ACTIONS(43), 1, sym_list_marker_decimal_paren, - ACTIONS(1562), 1, + ACTIONS(1571), 1, sym__block_close, - STATE(554), 1, + STATE(532), 1, aux_sym__list_decimal_paren_repeat1, - STATE(796), 1, + STATE(703), 1, sym__list_item_decimal_paren, - [13149] = 4, - ACTIONS(55), 1, + [13330] = 4, + ACTIONS(53), 1, sym_list_marker_decimal_parens, - ACTIONS(1564), 1, + ACTIONS(1573), 1, sym__block_close, - STATE(556), 1, + STATE(534), 1, aux_sym__list_decimal_parens_repeat1, - STATE(716), 1, + STATE(715), 1, sym__list_item_decimal_parens, - [13162] = 4, - ACTIONS(37), 1, + [13343] = 4, + ACTIONS(35), 1, sym_list_marker_lower_alpha_period, - ACTIONS(1566), 1, + ACTIONS(1575), 1, sym__block_close, - STATE(558), 1, + STATE(552), 1, aux_sym__list_lower_alpha_period_repeat1, - STATE(722), 1, + STATE(739), 1, sym__list_item_lower_alpha_period, - [13175] = 4, - ACTIONS(47), 1, + [13356] = 4, + ACTIONS(45), 1, sym_list_marker_lower_alpha_paren, - ACTIONS(1568), 1, + ACTIONS(1577), 1, sym__block_close, - STATE(560), 1, + STATE(554), 1, aux_sym__list_lower_alpha_paren_repeat1, - STATE(801), 1, + STATE(754), 1, sym__list_item_lower_alpha_paren, - [13188] = 4, - ACTIONS(57), 1, + [13369] = 4, + ACTIONS(55), 1, sym_list_marker_lower_alpha_parens, - ACTIONS(1570), 1, + ACTIONS(1579), 1, sym__block_close, - STATE(562), 1, + STATE(556), 1, aux_sym__list_lower_alpha_parens_repeat1, - STATE(813), 1, + STATE(755), 1, sym__list_item_lower_alpha_parens, - [13201] = 4, - ACTIONS(39), 1, + [13382] = 4, + ACTIONS(37), 1, sym_list_marker_upper_alpha_period, - ACTIONS(1572), 1, + ACTIONS(1581), 1, sym__block_close, - STATE(563), 1, + STATE(558), 1, aux_sym__list_upper_alpha_period_repeat1, - STATE(704), 1, + STATE(758), 1, sym__list_item_upper_alpha_period, - [13214] = 4, - ACTIONS(49), 1, + [13395] = 4, + ACTIONS(47), 1, sym_list_marker_upper_alpha_paren, - ACTIONS(1574), 1, + ACTIONS(1583), 1, sym__block_close, - STATE(565), 1, + STATE(560), 1, aux_sym__list_upper_alpha_paren_repeat1, - STATE(706), 1, + STATE(759), 1, sym__list_item_upper_alpha_paren, - [13227] = 4, - ACTIONS(59), 1, + [13408] = 4, + ACTIONS(57), 1, sym_list_marker_upper_alpha_parens, - ACTIONS(1576), 1, + ACTIONS(1585), 1, sym__block_close, - STATE(567), 1, + STATE(562), 1, aux_sym__list_upper_alpha_parens_repeat1, - STATE(707), 1, + STATE(766), 1, sym__list_item_upper_alpha_parens, - [13240] = 4, - ACTIONS(41), 1, - sym_list_marker_lower_roman_period, - ACTIONS(1578), 1, - sym__block_close, - STATE(569), 1, - aux_sym__list_lower_roman_period_repeat1, - STATE(725), 1, - sym__list_item_lower_roman_period, - [13253] = 4, - ACTIONS(51), 1, + [13421] = 4, + ACTIONS(1457), 1, + anon_sym_EQ, + ACTIONS(1587), 1, + sym_language, + ACTIONS(1589), 1, + sym__newline, + STATE(1088), 1, + sym_raw_block_info, + [13434] = 4, + ACTIONS(49), 1, sym_list_marker_lower_roman_paren, - ACTIONS(1580), 1, + ACTIONS(1591), 1, sym__block_close, - STATE(571), 1, + STATE(566), 1, aux_sym__list_lower_roman_paren_repeat1, - STATE(726), 1, + STATE(770), 1, sym__list_item_lower_roman_paren, - [13266] = 4, - ACTIONS(61), 1, + [13447] = 4, + ACTIONS(59), 1, sym_list_marker_lower_roman_parens, - ACTIONS(1582), 1, + ACTIONS(1593), 1, sym__block_close, - STATE(573), 1, + STATE(568), 1, aux_sym__list_lower_roman_parens_repeat1, - STATE(736), 1, + STATE(773), 1, sym__list_item_lower_roman_parens, - [13279] = 4, - ACTIONS(43), 1, + [13460] = 4, + ACTIONS(41), 1, sym_list_marker_upper_roman_period, - ACTIONS(1584), 1, + ACTIONS(1595), 1, sym__block_close, - STATE(578), 1, + STATE(571), 1, aux_sym__list_upper_roman_period_repeat1, - STATE(742), 1, + STATE(775), 1, sym__list_item_upper_roman_period, - [13292] = 4, - ACTIONS(53), 1, + [13473] = 4, + ACTIONS(51), 1, sym_list_marker_upper_roman_paren, - ACTIONS(1586), 1, + ACTIONS(1597), 1, sym__block_close, - STATE(579), 1, + STATE(573), 1, aux_sym__list_upper_roman_paren_repeat1, - STATE(743), 1, + STATE(791), 1, sym__list_item_upper_roman_paren, - [13305] = 4, - ACTIONS(63), 1, + [13486] = 4, + ACTIONS(61), 1, sym_list_marker_upper_roman_parens, - ACTIONS(1588), 1, + ACTIONS(1599), 1, sym__block_close, - STATE(580), 1, + STATE(577), 1, aux_sym__list_upper_roman_parens_repeat1, - STATE(762), 1, + STATE(793), 1, sym__list_item_upper_roman_parens, - [13318] = 4, - ACTIONS(33), 1, + [13499] = 4, + ACTIONS(1601), 1, + sym__block_close, + ACTIONS(1603), 1, + sym_list_marker_definition, + STATE(528), 1, + aux_sym__list_definition_repeat1, + STATE(804), 1, + sym__list_item_definition, + [13512] = 4, + ACTIONS(31), 1, sym_list_marker_definition, - ACTIONS(1590), 1, + ACTIONS(1606), 1, sym__block_close, - STATE(550), 1, + STATE(528), 1, aux_sym__list_definition_repeat1, - STATE(896), 1, + STATE(804), 1, sym__list_item_definition, - [13331] = 4, - ACTIONS(35), 1, - sym_list_marker_decimal_period, - ACTIONS(1592), 1, + [13525] = 4, + ACTIONS(1608), 1, sym__block_close, - STATE(552), 1, + ACTIONS(1610), 1, + sym_list_marker_decimal_period, + STATE(530), 1, aux_sym__list_decimal_period_repeat1, - STATE(841), 1, + STATE(837), 1, sym__list_item_decimal_period, - [13344] = 4, + [13538] = 4, ACTIONS(33), 1, + sym_list_marker_decimal_period, + ACTIONS(1613), 1, + sym__block_close, + STATE(530), 1, + aux_sym__list_decimal_period_repeat1, + STATE(837), 1, + sym__list_item_decimal_period, + [13551] = 4, + ACTIONS(1615), 1, + sym__block_close, + ACTIONS(1617), 1, + sym_list_marker_decimal_paren, + STATE(532), 1, + aux_sym__list_decimal_paren_repeat1, + STATE(703), 1, + sym__list_item_decimal_paren, + [13564] = 4, + ACTIONS(43), 1, + sym_list_marker_decimal_paren, + ACTIONS(1620), 1, + sym__block_close, + STATE(532), 1, + aux_sym__list_decimal_paren_repeat1, + STATE(703), 1, + sym__list_item_decimal_paren, + [13577] = 4, + ACTIONS(1622), 1, + sym__block_close, + ACTIONS(1624), 1, + sym_list_marker_decimal_parens, + STATE(534), 1, + aux_sym__list_decimal_parens_repeat1, + STATE(715), 1, + sym__list_item_decimal_parens, + [13590] = 4, + ACTIONS(53), 1, + sym_list_marker_decimal_parens, + ACTIONS(1627), 1, + sym__block_close, + STATE(534), 1, + aux_sym__list_decimal_parens_repeat1, + STATE(715), 1, + sym__list_item_decimal_parens, + [13603] = 4, + ACTIONS(31), 1, sym_list_marker_definition, - ACTIONS(1594), 1, + ACTIONS(1629), 1, sym__block_close, - STATE(550), 1, + STATE(528), 1, aux_sym__list_definition_repeat1, - STATE(896), 1, + STATE(804), 1, sym__list_item_definition, - [13357] = 4, - ACTIONS(35), 1, + [13616] = 4, + ACTIONS(33), 1, sym_list_marker_decimal_period, - ACTIONS(1596), 1, + ACTIONS(1631), 1, sym__block_close, - STATE(552), 1, + STATE(530), 1, aux_sym__list_decimal_period_repeat1, - STATE(841), 1, + STATE(837), 1, sym__list_item_decimal_period, - [13370] = 4, - ACTIONS(45), 1, + [13629] = 4, + ACTIONS(43), 1, sym_list_marker_decimal_paren, - ACTIONS(1598), 1, + ACTIONS(1633), 1, sym__block_close, - STATE(554), 1, + STATE(532), 1, aux_sym__list_decimal_paren_repeat1, - STATE(796), 1, + STATE(703), 1, sym__list_item_decimal_paren, - [13383] = 4, - ACTIONS(55), 1, + [13642] = 4, + ACTIONS(53), 1, sym_list_marker_decimal_parens, - ACTIONS(1600), 1, + ACTIONS(1635), 1, sym__block_close, - STATE(556), 1, + STATE(534), 1, aux_sym__list_decimal_parens_repeat1, - STATE(716), 1, + STATE(715), 1, sym__list_item_decimal_parens, - [13396] = 4, - ACTIONS(37), 1, + [13655] = 4, + ACTIONS(35), 1, sym_list_marker_lower_alpha_period, - ACTIONS(1602), 1, + ACTIONS(1637), 1, sym__block_close, - STATE(558), 1, + STATE(552), 1, aux_sym__list_lower_alpha_period_repeat1, - STATE(722), 1, + STATE(739), 1, sym__list_item_lower_alpha_period, - [13409] = 4, - ACTIONS(47), 1, + [13668] = 4, + ACTIONS(45), 1, sym_list_marker_lower_alpha_paren, - ACTIONS(1604), 1, + ACTIONS(1639), 1, sym__block_close, - STATE(560), 1, + STATE(554), 1, aux_sym__list_lower_alpha_paren_repeat1, - STATE(801), 1, + STATE(754), 1, sym__list_item_lower_alpha_paren, - [13422] = 4, - ACTIONS(57), 1, + [13681] = 4, + ACTIONS(55), 1, sym_list_marker_lower_alpha_parens, - ACTIONS(1606), 1, + ACTIONS(1641), 1, sym__block_close, - STATE(562), 1, + STATE(556), 1, aux_sym__list_lower_alpha_parens_repeat1, - STATE(813), 1, + STATE(755), 1, sym__list_item_lower_alpha_parens, - [13435] = 4, - ACTIONS(39), 1, + [13694] = 4, + ACTIONS(37), 1, sym_list_marker_upper_alpha_period, - ACTIONS(1608), 1, + ACTIONS(1643), 1, sym__block_close, - STATE(563), 1, + STATE(558), 1, aux_sym__list_upper_alpha_period_repeat1, - STATE(704), 1, + STATE(758), 1, sym__list_item_upper_alpha_period, - [13448] = 4, - ACTIONS(49), 1, + [13707] = 4, + ACTIONS(47), 1, sym_list_marker_upper_alpha_paren, - ACTIONS(1610), 1, + ACTIONS(1645), 1, sym__block_close, - STATE(565), 1, + STATE(560), 1, aux_sym__list_upper_alpha_paren_repeat1, - STATE(706), 1, + STATE(759), 1, sym__list_item_upper_alpha_paren, - [13461] = 4, - ACTIONS(59), 1, + [13720] = 4, + ACTIONS(57), 1, sym_list_marker_upper_alpha_parens, - ACTIONS(1612), 1, + ACTIONS(1647), 1, sym__block_close, - STATE(567), 1, + STATE(562), 1, aux_sym__list_upper_alpha_parens_repeat1, - STATE(707), 1, + STATE(766), 1, sym__list_item_upper_alpha_parens, - [13474] = 4, - ACTIONS(41), 1, + [13733] = 4, + ACTIONS(39), 1, sym_list_marker_lower_roman_period, - ACTIONS(1614), 1, + ACTIONS(1649), 1, sym__block_close, - STATE(569), 1, + STATE(564), 1, aux_sym__list_lower_roman_period_repeat1, - STATE(725), 1, + STATE(768), 1, sym__list_item_lower_roman_period, - [13487] = 4, - ACTIONS(51), 1, + [13746] = 4, + ACTIONS(49), 1, sym_list_marker_lower_roman_paren, - ACTIONS(1616), 1, + ACTIONS(1651), 1, sym__block_close, - STATE(571), 1, + STATE(566), 1, aux_sym__list_lower_roman_paren_repeat1, - STATE(726), 1, + STATE(770), 1, sym__list_item_lower_roman_paren, - [13500] = 4, - ACTIONS(61), 1, + [13759] = 4, + ACTIONS(59), 1, sym_list_marker_lower_roman_parens, - ACTIONS(1618), 1, + ACTIONS(1653), 1, sym__block_close, - STATE(573), 1, + STATE(568), 1, aux_sym__list_lower_roman_parens_repeat1, - STATE(736), 1, + STATE(773), 1, sym__list_item_lower_roman_parens, - [13513] = 4, - ACTIONS(43), 1, + [13772] = 4, + ACTIONS(41), 1, sym_list_marker_upper_roman_period, - ACTIONS(1620), 1, + ACTIONS(1655), 1, sym__block_close, - STATE(578), 1, + STATE(571), 1, aux_sym__list_upper_roman_period_repeat1, - STATE(742), 1, + STATE(775), 1, sym__list_item_upper_roman_period, - [13526] = 4, - ACTIONS(53), 1, - sym_list_marker_upper_roman_paren, - ACTIONS(1622), 1, - sym__block_close, - STATE(579), 1, - aux_sym__list_upper_roman_paren_repeat1, - STATE(743), 1, - sym__list_item_upper_roman_paren, - [13539] = 4, - ACTIONS(63), 1, - sym_list_marker_upper_roman_parens, - ACTIONS(1624), 1, - sym__block_close, - STATE(580), 1, - aux_sym__list_upper_roman_parens_repeat1, - STATE(762), 1, - sym__list_item_upper_roman_parens, - [13552] = 4, - ACTIONS(45), 1, - sym_list_marker_decimal_paren, - ACTIONS(1626), 1, - sym__block_close, - STATE(554), 1, - aux_sym__list_decimal_paren_repeat1, - STATE(796), 1, - sym__list_item_decimal_paren, - [13565] = 4, - ACTIONS(1628), 1, - sym__block_close, - ACTIONS(1630), 1, - sym_list_marker_definition, - STATE(550), 1, - aux_sym__list_definition_repeat1, - STATE(896), 1, - sym__list_item_definition, - [13578] = 4, - ACTIONS(55), 1, - sym_list_marker_decimal_parens, - ACTIONS(1633), 1, + [13785] = 4, + ACTIONS(51), 1, + sym_list_marker_upper_roman_paren, + ACTIONS(1657), 1, sym__block_close, - STATE(556), 1, - aux_sym__list_decimal_parens_repeat1, - STATE(716), 1, - sym__list_item_decimal_parens, - [13591] = 4, - ACTIONS(1635), 1, + STATE(573), 1, + aux_sym__list_upper_roman_paren_repeat1, + STATE(791), 1, + sym__list_item_upper_roman_paren, + [13798] = 4, + ACTIONS(61), 1, + sym_list_marker_upper_roman_parens, + ACTIONS(1659), 1, sym__block_close, - ACTIONS(1637), 1, - sym_list_marker_decimal_period, + STATE(577), 1, + aux_sym__list_upper_roman_parens_repeat1, + STATE(793), 1, + sym__list_item_upper_roman_parens, + [13811] = 4, + ACTIONS(1661), 1, + sym__block_close, + ACTIONS(1663), 1, + sym_list_marker_lower_alpha_period, STATE(552), 1, - aux_sym__list_decimal_period_repeat1, - STATE(841), 1, - sym__list_item_decimal_period, - [13604] = 4, - ACTIONS(37), 1, + aux_sym__list_lower_alpha_period_repeat1, + STATE(739), 1, + sym__list_item_lower_alpha_period, + [13824] = 4, + ACTIONS(35), 1, sym_list_marker_lower_alpha_period, - ACTIONS(1640), 1, + ACTIONS(1666), 1, sym__block_close, - STATE(558), 1, + STATE(552), 1, aux_sym__list_lower_alpha_period_repeat1, - STATE(722), 1, + STATE(739), 1, sym__list_item_lower_alpha_period, - [13617] = 4, - ACTIONS(1642), 1, + [13837] = 4, + ACTIONS(1668), 1, sym__block_close, - ACTIONS(1644), 1, - sym_list_marker_decimal_paren, + ACTIONS(1670), 1, + sym_list_marker_lower_alpha_paren, STATE(554), 1, - aux_sym__list_decimal_paren_repeat1, - STATE(796), 1, - sym__list_item_decimal_paren, - [13630] = 4, - ACTIONS(47), 1, + aux_sym__list_lower_alpha_paren_repeat1, + STATE(754), 1, + sym__list_item_lower_alpha_paren, + [13850] = 4, + ACTIONS(45), 1, sym_list_marker_lower_alpha_paren, - ACTIONS(1647), 1, + ACTIONS(1673), 1, sym__block_close, - STATE(560), 1, + STATE(554), 1, aux_sym__list_lower_alpha_paren_repeat1, - STATE(801), 1, + STATE(754), 1, sym__list_item_lower_alpha_paren, - [13643] = 4, - ACTIONS(1649), 1, + [13863] = 4, + ACTIONS(1675), 1, sym__block_close, - ACTIONS(1651), 1, - sym_list_marker_decimal_parens, + ACTIONS(1677), 1, + sym_list_marker_lower_alpha_parens, STATE(556), 1, - aux_sym__list_decimal_parens_repeat1, - STATE(716), 1, - sym__list_item_decimal_parens, - [13656] = 4, - ACTIONS(57), 1, + aux_sym__list_lower_alpha_parens_repeat1, + STATE(755), 1, + sym__list_item_lower_alpha_parens, + [13876] = 4, + ACTIONS(55), 1, sym_list_marker_lower_alpha_parens, - ACTIONS(1654), 1, + ACTIONS(1680), 1, sym__block_close, - STATE(562), 1, + STATE(556), 1, aux_sym__list_lower_alpha_parens_repeat1, - STATE(813), 1, + STATE(755), 1, sym__list_item_lower_alpha_parens, - [13669] = 4, - ACTIONS(1656), 1, + [13889] = 4, + ACTIONS(1682), 1, sym__block_close, - ACTIONS(1658), 1, - sym_list_marker_lower_alpha_period, + ACTIONS(1684), 1, + sym_list_marker_upper_alpha_period, STATE(558), 1, - aux_sym__list_lower_alpha_period_repeat1, - STATE(722), 1, - sym__list_item_lower_alpha_period, - [13682] = 4, - ACTIONS(39), 1, + aux_sym__list_upper_alpha_period_repeat1, + STATE(758), 1, + sym__list_item_upper_alpha_period, + [13902] = 4, + ACTIONS(37), 1, sym_list_marker_upper_alpha_period, - ACTIONS(1661), 1, + ACTIONS(1687), 1, sym__block_close, - STATE(563), 1, + STATE(558), 1, aux_sym__list_upper_alpha_period_repeat1, - STATE(704), 1, + STATE(758), 1, sym__list_item_upper_alpha_period, - [13695] = 4, - ACTIONS(1663), 1, + [13915] = 4, + ACTIONS(1689), 1, sym__block_close, - ACTIONS(1665), 1, - sym_list_marker_lower_alpha_paren, + ACTIONS(1691), 1, + sym_list_marker_upper_alpha_paren, STATE(560), 1, - aux_sym__list_lower_alpha_paren_repeat1, - STATE(801), 1, - sym__list_item_lower_alpha_paren, - [13708] = 4, - ACTIONS(49), 1, + aux_sym__list_upper_alpha_paren_repeat1, + STATE(759), 1, + sym__list_item_upper_alpha_paren, + [13928] = 4, + ACTIONS(47), 1, sym_list_marker_upper_alpha_paren, - ACTIONS(1668), 1, + ACTIONS(1694), 1, sym__block_close, - STATE(565), 1, + STATE(560), 1, aux_sym__list_upper_alpha_paren_repeat1, - STATE(706), 1, + STATE(759), 1, sym__list_item_upper_alpha_paren, - [13721] = 4, - ACTIONS(1670), 1, + [13941] = 4, + ACTIONS(1696), 1, sym__block_close, - ACTIONS(1672), 1, - sym_list_marker_lower_alpha_parens, + ACTIONS(1698), 1, + sym_list_marker_upper_alpha_parens, STATE(562), 1, - aux_sym__list_lower_alpha_parens_repeat1, - STATE(813), 1, - sym__list_item_lower_alpha_parens, - [13734] = 4, - ACTIONS(1675), 1, + aux_sym__list_upper_alpha_parens_repeat1, + STATE(766), 1, + sym__list_item_upper_alpha_parens, + [13954] = 4, + ACTIONS(57), 1, + sym_list_marker_upper_alpha_parens, + ACTIONS(1701), 1, sym__block_close, - ACTIONS(1677), 1, - sym_list_marker_upper_alpha_period, - STATE(563), 1, - aux_sym__list_upper_alpha_period_repeat1, - STATE(704), 1, - sym__list_item_upper_alpha_period, - [13747] = 4, - ACTIONS(41), 1, + STATE(562), 1, + aux_sym__list_upper_alpha_parens_repeat1, + STATE(766), 1, + sym__list_item_upper_alpha_parens, + [13967] = 4, + ACTIONS(1703), 1, + sym__block_close, + ACTIONS(1705), 1, sym_list_marker_lower_roman_period, - ACTIONS(1680), 1, + STATE(564), 1, + aux_sym__list_lower_roman_period_repeat1, + STATE(768), 1, + sym__list_item_lower_roman_period, + [13980] = 4, + ACTIONS(39), 1, + sym_list_marker_lower_roman_period, + ACTIONS(1708), 1, sym__block_close, - STATE(569), 1, + STATE(564), 1, aux_sym__list_lower_roman_period_repeat1, - STATE(725), 1, + STATE(768), 1, sym__list_item_lower_roman_period, - [13760] = 4, - ACTIONS(1682), 1, + [13993] = 4, + ACTIONS(1710), 1, sym__block_close, - ACTIONS(1684), 1, - sym_list_marker_upper_alpha_paren, - STATE(565), 1, - aux_sym__list_upper_alpha_paren_repeat1, - STATE(706), 1, - sym__list_item_upper_alpha_paren, - [13773] = 4, - ACTIONS(51), 1, + ACTIONS(1712), 1, sym_list_marker_lower_roman_paren, - ACTIONS(1687), 1, + STATE(566), 1, + aux_sym__list_lower_roman_paren_repeat1, + STATE(770), 1, + sym__list_item_lower_roman_paren, + [14006] = 4, + ACTIONS(49), 1, + sym_list_marker_lower_roman_paren, + ACTIONS(1715), 1, sym__block_close, - STATE(571), 1, + STATE(566), 1, aux_sym__list_lower_roman_paren_repeat1, - STATE(726), 1, + STATE(770), 1, sym__list_item_lower_roman_paren, - [13786] = 4, - ACTIONS(1689), 1, + [14019] = 4, + ACTIONS(1717), 1, sym__block_close, - ACTIONS(1691), 1, - sym_list_marker_upper_alpha_parens, - STATE(567), 1, - aux_sym__list_upper_alpha_parens_repeat1, - STATE(707), 1, - sym__list_item_upper_alpha_parens, - [13799] = 4, - ACTIONS(61), 1, + ACTIONS(1719), 1, sym_list_marker_lower_roman_parens, - ACTIONS(1694), 1, + STATE(568), 1, + aux_sym__list_lower_roman_parens_repeat1, + STATE(773), 1, + sym__list_item_lower_roman_parens, + [14032] = 4, + ACTIONS(59), 1, + sym_list_marker_lower_roman_parens, + ACTIONS(1722), 1, sym__block_close, - STATE(573), 1, + STATE(568), 1, aux_sym__list_lower_roman_parens_repeat1, - STATE(736), 1, + STATE(773), 1, sym__list_item_lower_roman_parens, - [13812] = 4, - ACTIONS(1696), 1, + [14045] = 4, + ACTIONS(1457), 1, + anon_sym_EQ, + ACTIONS(1724), 1, + sym_language, + ACTIONS(1726), 1, + sym__newline, + STATE(1032), 1, + sym_raw_block_info, + [14058] = 4, + ACTIONS(1728), 1, sym__block_close, - ACTIONS(1698), 1, - sym_list_marker_lower_roman_period, - STATE(569), 1, - aux_sym__list_lower_roman_period_repeat1, - STATE(725), 1, - sym__list_item_lower_roman_period, - [13825] = 4, - ACTIONS(43), 1, + ACTIONS(1730), 1, sym_list_marker_upper_roman_period, - ACTIONS(1701), 1, - sym__block_close, - STATE(578), 1, + STATE(571), 1, aux_sym__list_upper_roman_period_repeat1, - STATE(742), 1, + STATE(775), 1, sym__list_item_upper_roman_period, - [13838] = 4, - ACTIONS(1703), 1, + [14071] = 4, + ACTIONS(41), 1, + sym_list_marker_upper_roman_period, + ACTIONS(1733), 1, sym__block_close, - ACTIONS(1705), 1, - sym_list_marker_lower_roman_paren, STATE(571), 1, - aux_sym__list_lower_roman_paren_repeat1, - STATE(726), 1, - sym__list_item_lower_roman_paren, - [13851] = 4, - ACTIONS(53), 1, - sym_list_marker_upper_roman_paren, - ACTIONS(1708), 1, + aux_sym__list_upper_roman_period_repeat1, + STATE(775), 1, + sym__list_item_upper_roman_period, + [14084] = 4, + ACTIONS(1735), 1, sym__block_close, - STATE(579), 1, + ACTIONS(1737), 1, + sym_list_marker_upper_roman_paren, + STATE(573), 1, aux_sym__list_upper_roman_paren_repeat1, - STATE(743), 1, + STATE(791), 1, sym__list_item_upper_roman_paren, - [13864] = 4, - ACTIONS(1710), 1, - sym__block_close, - ACTIONS(1712), 1, - sym_list_marker_lower_roman_parens, - STATE(573), 1, - aux_sym__list_lower_roman_parens_repeat1, - STATE(736), 1, - sym__list_item_lower_roman_parens, - [13877] = 4, - ACTIONS(1442), 1, + [14097] = 4, + ACTIONS(1457), 1, anon_sym_EQ, - ACTIONS(1715), 1, + ACTIONS(1740), 1, sym_language, - ACTIONS(1717), 1, + ACTIONS(1742), 1, sym__newline, - STATE(1036), 1, + STATE(1051), 1, sym_raw_block_info, - [13890] = 4, - ACTIONS(1442), 1, + [14110] = 4, + ACTIONS(51), 1, + sym_list_marker_upper_roman_paren, + ACTIONS(1744), 1, + sym__block_close, + STATE(573), 1, + aux_sym__list_upper_roman_paren_repeat1, + STATE(791), 1, + sym__list_item_upper_roman_paren, + [14123] = 4, + ACTIONS(1457), 1, anon_sym_EQ, - ACTIONS(1719), 1, + ACTIONS(1746), 1, sym_language, - ACTIONS(1721), 1, + ACTIONS(1748), 1, sym__newline, - STATE(1060), 1, + STATE(1070), 1, sym_raw_block_info, - [13903] = 4, - ACTIONS(63), 1, - sym_list_marker_upper_roman_parens, - ACTIONS(1723), 1, + [14136] = 4, + ACTIONS(1750), 1, sym__block_close, - STATE(580), 1, + ACTIONS(1752), 1, + sym_list_marker_upper_roman_parens, + STATE(577), 1, aux_sym__list_upper_roman_parens_repeat1, - STATE(762), 1, + STATE(793), 1, sym__list_item_upper_roman_parens, - [13916] = 4, - ACTIONS(1442), 1, - anon_sym_EQ, - ACTIONS(1725), 1, - sym_language, - ACTIONS(1727), 1, - sym__newline, - STATE(1084), 1, - sym_raw_block_info, - [13929] = 4, - ACTIONS(1729), 1, - sym__block_close, - ACTIONS(1731), 1, - sym_list_marker_upper_roman_period, - STATE(578), 1, - aux_sym__list_upper_roman_period_repeat1, - STATE(742), 1, - sym__list_item_upper_roman_period, - [13942] = 4, - ACTIONS(1734), 1, - sym__block_close, - ACTIONS(1736), 1, - sym_list_marker_upper_roman_paren, - STATE(579), 1, - aux_sym__list_upper_roman_paren_repeat1, - STATE(743), 1, - sym__list_item_upper_roman_paren, - [13955] = 4, - ACTIONS(1739), 1, - sym__block_close, - ACTIONS(1741), 1, + [14149] = 4, + ACTIONS(61), 1, sym_list_marker_upper_roman_parens, - STATE(580), 1, + ACTIONS(1755), 1, + sym__block_close, + STATE(577), 1, aux_sym__list_upper_roman_parens_repeat1, - STATE(762), 1, + STATE(793), 1, sym__list_item_upper_roman_parens, - [13968] = 4, - ACTIONS(43), 1, - sym_list_marker_upper_roman_period, - ACTIONS(1744), 1, + [14162] = 4, + ACTIONS(39), 1, + sym_list_marker_lower_roman_period, + ACTIONS(1757), 1, sym__block_close, - STATE(578), 1, - aux_sym__list_upper_roman_period_repeat1, - STATE(742), 1, - sym__list_item_upper_roman_period, - [13981] = 1, - ACTIONS(633), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [13987] = 3, - ACTIONS(467), 1, - sym__block_quote_continuation, - ACTIONS(950), 1, - anon_sym_PIPE, - STATE(588), 1, - aux_sym__block_quote_prefix_repeat1, - [13997] = 3, - ACTIONS(1746), 1, + STATE(564), 1, + aux_sym__list_lower_roman_period_repeat1, + STATE(768), 1, + sym__list_item_lower_roman_period, + [14175] = 3, + ACTIONS(536), 1, + sym__indented_content_spacer, + ACTIONS(1001), 1, + sym__table_caption_begin, + STATE(1058), 1, + sym_table_caption, + [14185] = 3, + ACTIONS(1759), 1, anon_sym_DQUOTE, - ACTIONS(1748), 1, + ACTIONS(1761), 1, aux_sym_value_token2, - STATE(417), 1, + STATE(441), 1, sym_value, - [14007] = 1, - ACTIONS(1750), 3, - sym__block_close, - sym_list_marker_dash, + [14195] = 3, + ACTIONS(868), 1, + sym_list_marker_plus, + ACTIONS(1763), 1, + sym__block_quote_continuation, + STATE(582), 1, + aux_sym__block_quote_prefix_repeat1, + [14205] = 1, + ACTIONS(776), 3, + sym__list_item_continuation, + sym__list_item_end, sym__block_quote_continuation, - [14013] = 3, - ACTIONS(839), 1, + [14211] = 1, + ACTIONS(1766), 3, + sym__block_close, sym_list_marker_dash, - ACTIONS(1752), 1, sym__block_quote_continuation, - STATE(586), 1, - aux_sym__block_quote_prefix_repeat1, - [14023] = 1, - ACTIONS(1755), 3, + [14217] = 1, + ACTIONS(1768), 3, sym__block_close, sym_list_marker_star, sym__block_quote_continuation, - [14029] = 3, - ACTIONS(839), 1, - anon_sym_PIPE, - ACTIONS(1757), 1, - sym__block_quote_continuation, - STATE(588), 1, - aux_sym__block_quote_prefix_repeat1, - [14039] = 1, - ACTIONS(1760), 3, - sym__block_close, + [14223] = 1, + ACTIONS(672), 3, + sym__list_item_continuation, + sym__list_item_end, sym__block_quote_continuation, - aux_sym__line_token1, - [14045] = 1, - ACTIONS(1762), 3, + [14229] = 1, + ACTIONS(1770), 3, sym__block_close, sym_list_marker_plus, sym__block_quote_continuation, - [14051] = 1, - ACTIONS(1764), 3, + [14235] = 1, + ACTIONS(1772), 3, sym__block_close, sym__list_marker_task_begin, sym__block_quote_continuation, - [14057] = 1, - ACTIONS(1766), 3, + [14241] = 1, + ACTIONS(1774), 3, sym__block_close, sym__list_marker_task_begin, sym__block_quote_continuation, - [14063] = 1, - ACTIONS(639), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [14069] = 1, - ACTIONS(1264), 3, + [14247] = 1, + ACTIONS(1236), 3, sym__block_close, sym__block_quote_continuation, aux_sym__line_token1, - [14075] = 1, - ACTIONS(1768), 3, + [14253] = 1, + ACTIONS(1776), 3, sym__block_close, - sym_list_marker_star, + sym_list_marker_dash, + sym__block_quote_continuation, + [14259] = 1, + ACTIONS(1412), 3, + sym__list_item_continuation, + sym__list_item_end, sym__block_quote_continuation, - [14081] = 3, - ACTIONS(1770), 1, + [14265] = 3, + ACTIONS(1778), 1, sym__eof_or_newline, - ACTIONS(1772), 1, + ACTIONS(1780), 1, sym__newline_inline, - STATE(597), 1, + STATE(594), 1, aux_sym__paragraph_inline_content_repeat1, - [14091] = 3, - ACTIONS(1774), 1, + [14275] = 3, + ACTIONS(1782), 1, sym__eof_or_newline, - ACTIONS(1776), 1, + ACTIONS(1784), 1, sym__newline_inline, - STATE(597), 1, + STATE(594), 1, aux_sym__paragraph_inline_content_repeat1, - [14101] = 3, - ACTIONS(1779), 1, + [14285] = 2, + ACTIONS(1787), 1, + sym__div_end, + ACTIONS(622), 2, sym__block_close, - ACTIONS(1781), 1, - sym__heading_continuation, - STATE(600), 1, - aux_sym__heading_content_repeat1, - [14111] = 2, - ACTIONS(1783), 1, - sym__eof_or_newline, - ACTIONS(607), 2, + sym__block_quote_continuation, + [14293] = 2, + ACTIONS(1789), 1, + sym__code_block_end, + ACTIONS(632), 2, sym__block_close, sym__block_quote_continuation, - [14119] = 3, - ACTIONS(1785), 1, + [14301] = 3, + ACTIONS(1791), 1, sym__block_close, - ACTIONS(1787), 1, + ACTIONS(1793), 1, sym__heading_continuation, - STATE(600), 1, + STATE(597), 1, aux_sym__heading_content_repeat1, - [14129] = 1, - ACTIONS(1790), 3, + [14311] = 1, + ACTIONS(1796), 3, sym__block_close, sym_list_marker_dash, sym__block_quote_continuation, - [14135] = 1, - ACTIONS(751), 3, + [14317] = 1, + ACTIONS(686), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14141] = 1, - ACTIONS(755), 3, + [14323] = 1, + ACTIONS(682), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14147] = 3, - ACTIONS(950), 1, - sym_list_marker_plus, - ACTIONS(1207), 1, + [14329] = 3, + ACTIONS(937), 1, + sym_list_marker_star, + ACTIONS(1225), 1, sym__block_quote_continuation, - STATE(632), 1, + STATE(628), 1, aux_sym__block_quote_prefix_repeat1, - [14157] = 1, - ACTIONS(657), 3, + [14339] = 1, + ACTIONS(690), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14163] = 1, - ACTIONS(681), 3, + [14345] = 1, + ACTIONS(706), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14169] = 1, - ACTIONS(713), 3, + [14351] = 1, + ACTIONS(754), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14175] = 1, - ACTIONS(729), 3, + [14357] = 1, + ACTIONS(770), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14181] = 1, - ACTIONS(737), 3, + [14363] = 1, + ACTIONS(782), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14187] = 1, - ACTIONS(757), 3, + [14369] = 1, + ACTIONS(788), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14193] = 1, - ACTIONS(761), 3, + [14375] = 1, + ACTIONS(792), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14199] = 1, - ACTIONS(1768), 3, - sym__block_close, - sym_list_marker_dash, - sym__block_quote_continuation, - [14205] = 1, - ACTIONS(1396), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [14211] = 3, - ACTIONS(1772), 1, + [14381] = 3, + ACTIONS(1780), 1, sym__newline_inline, - ACTIONS(1792), 1, + ACTIONS(1798), 1, sym__eof_or_newline, - STATE(596), 1, + STATE(593), 1, aux_sym__paragraph_inline_content_repeat1, - [14221] = 3, - ACTIONS(1772), 1, - sym__newline_inline, - ACTIONS(1792), 1, - sym__eof_or_newline, - STATE(597), 1, - aux_sym__paragraph_inline_content_repeat1, - [14231] = 3, - ACTIONS(1772), 1, + [14391] = 3, + ACTIONS(1780), 1, sym__newline_inline, - ACTIONS(1794), 1, + ACTIONS(1798), 1, sym__eof_or_newline, - STATE(615), 1, + STATE(594), 1, aux_sym__paragraph_inline_content_repeat1, - [14241] = 1, - ACTIONS(767), 3, + [14401] = 1, + ACTIONS(1800), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14247] = 1, - ACTIONS(771), 3, + [14407] = 1, + ACTIONS(1802), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14253] = 1, - ACTIONS(775), 3, + [14413] = 1, + ACTIONS(796), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14259] = 1, - ACTIONS(779), 3, + [14419] = 1, + ACTIONS(800), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14265] = 1, - ACTIONS(783), 3, + [14425] = 1, + ACTIONS(804), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14271] = 1, - ACTIONS(787), 3, + [14431] = 1, + ACTIONS(808), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14277] = 1, - ACTIONS(791), 3, + [14437] = 1, + ACTIONS(812), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14283] = 1, - ACTIONS(795), 3, + [14443] = 1, + ACTIONS(816), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14289] = 1, - ACTIONS(799), 3, + [14449] = 1, + ACTIONS(820), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14295] = 1, - ACTIONS(803), 3, + [14455] = 1, + ACTIONS(824), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14301] = 1, - ACTIONS(807), 3, + [14461] = 1, + ACTIONS(828), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14307] = 1, - ACTIONS(811), 3, + [14467] = 1, + ACTIONS(832), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14313] = 1, - ACTIONS(815), 3, + [14473] = 1, + ACTIONS(836), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14319] = 1, - ACTIONS(819), 3, + [14479] = 1, + ACTIONS(840), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14325] = 1, - ACTIONS(503), 3, + [14485] = 1, + ACTIONS(844), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14331] = 3, - ACTIONS(839), 1, - sym_list_marker_plus, - ACTIONS(1796), 1, + [14491] = 1, + ACTIONS(848), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [14497] = 1, + ACTIONS(536), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [14503] = 3, + ACTIONS(868), 1, + sym_list_marker_star, + ACTIONS(1804), 1, sym__block_quote_continuation, - STATE(632), 1, + STATE(628), 1, aux_sym__block_quote_prefix_repeat1, - [14341] = 2, - ACTIONS(1799), 1, + [14513] = 3, + ACTIONS(1780), 1, + sym__newline_inline, + ACTIONS(1807), 1, + sym__eof_or_newline, + STATE(610), 1, + aux_sym__paragraph_inline_content_repeat1, + [14523] = 2, + ACTIONS(1809), 1, anon_sym_LBRACK, - STATE(953), 2, + STATE(944), 2, sym_checked, sym_unchecked, - [14349] = 1, - ACTIONS(1801), 3, + [14531] = 1, + ACTIONS(1811), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14355] = 1, - ACTIONS(1803), 3, + [14537] = 1, + ACTIONS(852), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14361] = 1, - ACTIONS(1805), 3, - sym__block_close, - sym_list_marker_dash, - sym__block_quote_continuation, - [14367] = 1, - ACTIONS(1807), 3, - sym__block_close, - sym_list_marker_plus, - sym__block_quote_continuation, - [14373] = 1, - ACTIONS(823), 3, + [14543] = 1, + ACTIONS(856), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14379] = 1, - ACTIONS(827), 3, - sym__list_item_continuation, - sym__list_item_end, + [14549] = 1, + ACTIONS(1796), 3, + sym__block_close, + sym_list_marker_plus, sym__block_quote_continuation, - [14385] = 1, - ACTIONS(743), 3, + [14555] = 1, + ACTIONS(666), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14391] = 3, - ACTIONS(1781), 1, - sym__heading_continuation, - ACTIONS(1809), 1, - sym__block_close, - STATE(598), 1, - aux_sym__heading_content_repeat1, - [14401] = 1, - ACTIONS(1811), 3, - anon_sym_PERCENT, - sym_backslash_escape, - aux_sym__comment_no_newline_token1, - [14407] = 1, - ACTIONS(641), 3, + [14561] = 1, + ACTIONS(664), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14413] = 2, + [14567] = 3, ACTIONS(1813), 1, - sym__code_block_end, - ACTIONS(515), 2, sym__block_close, - sym__block_quote_continuation, - [14421] = 1, - ACTIONS(1790), 3, + ACTIONS(1815), 1, + sym__heading_continuation, + STATE(638), 1, + aux_sym__heading_content_repeat1, + [14577] = 3, + ACTIONS(1815), 1, + sym__heading_continuation, + ACTIONS(1817), 1, sym__block_close, - sym_list_marker_plus, - sym__block_quote_continuation, - [14427] = 1, - ACTIONS(649), 3, + STATE(597), 1, + aux_sym__heading_content_repeat1, + [14587] = 1, + ACTIONS(860), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14433] = 2, - ACTIONS(1815), 1, - sym__div_end, - ACTIONS(529), 2, - sym__block_close, + [14593] = 3, + ACTIONS(937), 1, + sym_list_marker_dash, + ACTIONS(1221), 1, sym__block_quote_continuation, - [14441] = 2, - ACTIONS(1817), 1, + STATE(679), 1, + aux_sym__block_quote_prefix_repeat1, + [14603] = 2, + ACTIONS(1819), 1, sym__div_end, - ACTIONS(535), 2, + ACTIONS(562), 2, sym__block_close, sym__block_quote_continuation, - [14449] = 2, - ACTIONS(1819), 1, + [14611] = 2, + ACTIONS(1821), 1, sym__code_block_end, - ACTIONS(541), 2, + ACTIONS(568), 2, sym__block_close, sym__block_quote_continuation, - [14457] = 1, - ACTIONS(653), 3, + [14619] = 1, + ACTIONS(694), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14463] = 2, - ACTIONS(1821), 1, + [14625] = 2, + ACTIONS(1823), 1, sym__code_block_end, - ACTIONS(509), 2, + ACTIONS(574), 2, sym__block_close, sym__block_quote_continuation, - [14471] = 1, - ACTIONS(665), 3, + [14633] = 1, + ACTIONS(702), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14477] = 2, - ACTIONS(1823), 1, + [14639] = 2, + ACTIONS(1825), 1, sym__code_block_end, - ACTIONS(549), 2, + ACTIONS(580), 2, sym__block_close, sym__block_quote_continuation, - [14485] = 1, - ACTIONS(1768), 3, + [14647] = 1, + ACTIONS(1776), 3, sym__block_close, sym_list_marker_plus, sym__block_quote_continuation, - [14491] = 1, - ACTIONS(669), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [14497] = 1, - ACTIONS(673), 3, + [14653] = 1, + ACTIONS(710), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14503] = 1, - ACTIONS(677), 3, + [14659] = 1, + ACTIONS(714), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14509] = 1, - ACTIONS(1825), 3, + [14665] = 1, + ACTIONS(718), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14515] = 1, - ACTIONS(689), 3, + [14671] = 1, + ACTIONS(726), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14521] = 1, - ACTIONS(693), 3, + [14677] = 1, + ACTIONS(730), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14527] = 1, - ACTIONS(697), 3, + [14683] = 1, + ACTIONS(734), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14533] = 1, - ACTIONS(701), 3, + [14689] = 1, + ACTIONS(738), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14539] = 1, - ACTIONS(705), 3, + [14695] = 1, + ACTIONS(742), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14545] = 1, - ACTIONS(709), 3, + [14701] = 1, + ACTIONS(746), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14551] = 2, + [14707] = 2, ACTIONS(1827), 1, sym__div_end, - ACTIONS(563), 2, + ACTIONS(598), 2, sym__block_close, sym__block_quote_continuation, - [14559] = 1, - ACTIONS(717), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [14565] = 1, - ACTIONS(721), 3, + [14715] = 1, + ACTIONS(750), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14571] = 1, - ACTIONS(725), 3, + [14721] = 1, + ACTIONS(758), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14577] = 1, - ACTIONS(733), 3, + [14727] = 1, + ACTIONS(762), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14583] = 3, - ACTIONS(950), 1, - sym_list_marker_star, - ACTIONS(1223), 1, - sym__block_quote_continuation, - STATE(674), 1, - aux_sym__block_quote_prefix_repeat1, - [14593] = 1, + [14733] = 1, ACTIONS(1829), 3, - sym__block_close, - sym_list_marker_star, - sym__block_quote_continuation, - [14599] = 1, - ACTIONS(1831), 3, sym__block_quote_continuation, sym__footnote_continuation, sym__footnote_end, - [14605] = 1, - ACTIONS(1833), 3, + [14739] = 1, + ACTIONS(1831), 3, sym__block_quote_continuation, sym__footnote_continuation, sym__footnote_end, - [14611] = 3, - ACTIONS(839), 1, - sym_list_marker_star, - ACTIONS(1835), 1, + [14745] = 1, + ACTIONS(766), 3, + sym__list_item_continuation, + sym__list_item_end, sym__block_quote_continuation, - STATE(674), 1, - aux_sym__block_quote_prefix_repeat1, - [14621] = 3, - ACTIONS(950), 1, + [14751] = 3, + ACTIONS(937), 1, sym__list_marker_task_begin, - ACTIONS(1174), 1, + ACTIONS(1163), 1, sym__block_quote_continuation, - STATE(676), 1, + STATE(665), 1, aux_sym__block_quote_prefix_repeat1, - [14631] = 3, - ACTIONS(839), 1, + [14761] = 3, + ACTIONS(868), 1, sym__list_marker_task_begin, - ACTIONS(1838), 1, + ACTIONS(1833), 1, sym__block_quote_continuation, - STATE(676), 1, + STATE(665), 1, aux_sym__block_quote_prefix_repeat1, - [14641] = 2, - ACTIONS(1841), 1, + [14771] = 2, + ACTIONS(1836), 1, sym__code_block_end, - ACTIONS(569), 2, + ACTIONS(604), 2, sym__block_close, sym__block_quote_continuation, - [14649] = 2, - ACTIONS(1843), 1, + [14779] = 2, + ACTIONS(1838), 1, sym__code_block_end, - ACTIONS(575), 2, + ACTIONS(610), 2, sym__block_close, sym__block_quote_continuation, - [14657] = 3, - ACTIONS(950), 1, + [14787] = 3, + ACTIONS(937), 1, aux_sym__line_token1, - ACTIONS(1149), 1, + ACTIONS(1171), 1, sym__block_quote_continuation, - STATE(680), 1, + STATE(669), 1, aux_sym__block_quote_prefix_repeat1, - [14667] = 3, - ACTIONS(839), 1, + [14797] = 3, + ACTIONS(868), 1, aux_sym__line_token1, - ACTIONS(1845), 1, + ACTIONS(1840), 1, sym__block_quote_continuation, - STATE(680), 1, + STATE(669), 1, aux_sym__block_quote_prefix_repeat1, - [14677] = 3, - ACTIONS(950), 1, + [14807] = 3, + ACTIONS(937), 1, sym__list_item_continuation, - ACTIONS(1283), 1, + ACTIONS(1289), 1, sym__block_quote_continuation, - STATE(682), 1, + STATE(671), 1, aux_sym__block_quote_prefix_repeat1, - [14687] = 3, - ACTIONS(839), 1, + [14817] = 3, + ACTIONS(868), 1, sym__list_item_continuation, - ACTIONS(1848), 1, + ACTIONS(1843), 1, sym__block_quote_continuation, - STATE(682), 1, + STATE(671), 1, aux_sym__block_quote_prefix_repeat1, - [14697] = 3, - ACTIONS(950), 1, + [14827] = 3, + ACTIONS(937), 1, sym__footnote_continuation, - ACTIONS(1309), 1, + ACTIONS(1293), 1, sym__block_quote_continuation, - STATE(684), 1, + STATE(674), 1, aux_sym__block_quote_prefix_repeat1, - [14707] = 3, - ACTIONS(839), 1, + [14837] = 1, + ACTIONS(1846), 3, + sym__block_close, + sym_list_marker_star, + sym__block_quote_continuation, + [14843] = 3, + ACTIONS(868), 1, sym__footnote_continuation, - ACTIONS(1851), 1, + ACTIONS(1848), 1, sym__block_quote_continuation, - STATE(684), 1, + STATE(674), 1, aux_sym__block_quote_prefix_repeat1, - [14717] = 1, - ACTIONS(1790), 3, + [14853] = 1, + ACTIONS(1796), 3, sym__block_close, sym__list_marker_task_begin, sym__block_quote_continuation, - [14723] = 1, - ACTIONS(1768), 3, + [14859] = 1, + ACTIONS(1776), 3, sym__block_close, sym__list_marker_task_begin, sym__block_quote_continuation, - [14729] = 3, - ACTIONS(503), 1, - sym__indented_content_spacer, - ACTIONS(1081), 1, - sym__table_caption_begin, - STATE(1133), 1, - sym_table_caption, - [14739] = 2, - ACTIONS(1854), 1, + [14865] = 2, + ACTIONS(1851), 1, sym__eof_or_newline, - ACTIONS(593), 2, + ACTIONS(616), 2, sym__block_close, sym__block_quote_continuation, - [14747] = 1, - ACTIONS(1856), 3, - sym__block_close, - sym_list_marker_dash, + [14873] = 3, + ACTIONS(937), 1, + sym_list_marker_plus, + ACTIONS(1217), 1, sym__block_quote_continuation, - [14753] = 3, - ACTIONS(950), 1, + STATE(582), 1, + aux_sym__block_quote_prefix_repeat1, + [14883] = 3, + ACTIONS(868), 1, sym_list_marker_dash, - ACTIONS(1213), 1, + ACTIONS(1853), 1, sym__block_quote_continuation, - STATE(586), 1, + STATE(679), 1, aux_sym__block_quote_prefix_repeat1, - [14763] = 1, - ACTIONS(1858), 3, + [14893] = 1, + ACTIONS(1856), 3, sym__block_close, sym__list_marker_task_begin, sym__block_quote_continuation, - [14769] = 1, + [14899] = 1, + ACTIONS(1858), 3, + sym__block_close, + sym_list_marker_dash, + sym__block_quote_continuation, + [14905] = 1, ACTIONS(1860), 3, sym__block_close, sym_list_marker_star, sym__block_quote_continuation, - [14775] = 1, + [14911] = 1, ACTIONS(1862), 3, sym__block_close, sym_list_marker_plus, sym__block_quote_continuation, - [14781] = 2, + [14917] = 1, + ACTIONS(1796), 3, + sym__block_close, + sym_list_marker_star, + sym__block_quote_continuation, + [14923] = 2, ACTIONS(1866), 1, anon_sym_SPACE, ACTIONS(1864), 2, anon_sym_x, anon_sym_X, - [14789] = 1, - ACTIONS(1790), 3, + [14931] = 1, + ACTIONS(1868), 3, + anon_sym_PERCENT, + sym_backslash_escape, + aux_sym__comment_no_newline_token1, + [14937] = 1, + ACTIONS(1870), 3, + sym__block_close, + sym_list_marker_dash, + sym__block_quote_continuation, + [14943] = 2, + ACTIONS(1872), 1, + sym__eof_or_newline, + ACTIONS(550), 2, + sym__block_close, + sym__block_quote_continuation, + [14951] = 1, + ACTIONS(1874), 3, + sym__block_close, + sym__block_quote_continuation, + aux_sym__line_token1, + [14957] = 1, + ACTIONS(1776), 3, sym__block_close, sym_list_marker_star, sym__block_quote_continuation, - [14795] = 2, - ACTIONS(1868), 1, + [14963] = 1, + ACTIONS(1876), 3, + sym__block_close, + sym_list_marker_plus, + sym__block_quote_continuation, + [14969] = 2, + ACTIONS(1878), 1, sym__div_end, - ACTIONS(589), 2, + ACTIONS(556), 2, + sym__block_close, + sym__block_quote_continuation, + [14977] = 1, + ACTIONS(844), 2, + sym__block_close, + sym__block_quote_continuation, + [14982] = 1, + ACTIONS(690), 2, + sym__block_close, + sym__block_quote_continuation, + [14987] = 1, + ACTIONS(460), 2, + sym__list_marker_task_begin, + sym__block_quote_continuation, + [14992] = 1, + ACTIONS(706), 2, + sym__block_close, + sym__block_quote_continuation, + [14997] = 1, + ACTIONS(1796), 2, + sym__block_close, + sym_list_marker_upper_alpha_period, + [15002] = 1, + ACTIONS(1776), 2, + sym__block_close, + sym_list_marker_upper_alpha_period, + [15007] = 1, + ACTIONS(754), 2, + sym__block_close, + sym__block_quote_continuation, + [15012] = 2, + ACTIONS(1880), 1, + sym__id, + STATE(387), 1, + sym_class_name, + [15019] = 1, + ACTIONS(1796), 2, + sym__block_close, + sym_list_marker_lower_roman_period, + [15024] = 1, + ACTIONS(1776), 2, + sym__block_close, + sym_list_marker_lower_roman_period, + [15029] = 1, + ACTIONS(1882), 2, + sym__block_close, + sym_list_marker_decimal_paren, + [15034] = 1, + ACTIONS(1796), 2, + sym__block_close, + sym_list_marker_upper_roman_period, + [15039] = 1, + ACTIONS(1776), 2, + sym__block_close, + sym_list_marker_upper_roman_period, + [15044] = 1, + ACTIONS(460), 2, + sym__block_quote_continuation, + aux_sym__line_token1, + [15049] = 1, + ACTIONS(770), 2, + sym__block_close, + sym__block_quote_continuation, + [15054] = 1, + ACTIONS(1796), 2, + sym__block_close, + sym_list_marker_decimal_paren, + [15059] = 1, + ACTIONS(1776), 2, + sym__block_close, + sym_list_marker_decimal_paren, + [15064] = 1, + ACTIONS(460), 2, + sym__list_item_continuation, + sym__block_quote_continuation, + [15069] = 1, + ACTIONS(782), 2, + sym__block_close, + sym__block_quote_continuation, + [15074] = 2, + ACTIONS(1884), 1, + anon_sym_PIPE, + STATE(836), 1, + aux_sym_table_header_repeat1, + [15081] = 1, + ACTIONS(1796), 2, + sym__block_close, + sym_list_marker_lower_alpha_paren, + [15086] = 1, + ACTIONS(1776), 2, + sym__block_close, + sym_list_marker_lower_alpha_paren, + [15091] = 1, + ACTIONS(1886), 2, sym__block_close, - sym__block_quote_continuation, - [14803] = 2, - ACTIONS(1870), 1, + sym_list_marker_decimal_parens, + [15096] = 2, + ACTIONS(1888), 1, sym_table_cell_alignment, - ACTIONS(1872), 1, + ACTIONS(1890), 1, sym__newline, - [14810] = 1, - ACTIONS(1790), 2, + [15103] = 2, + ACTIONS(1892), 1, + anon_sym_PIPE, + STATE(849), 1, + aux_sym_table_separator_repeat1, + [15110] = 1, + ACTIONS(1796), 2, sym__block_close, - sym_list_marker_lower_roman_parens, - [14815] = 1, - ACTIONS(1768), 2, + sym_list_marker_upper_alpha_paren, + [15115] = 1, + ACTIONS(1776), 2, sym__block_close, - sym_list_marker_lower_roman_parens, - [14820] = 1, - ACTIONS(1790), 2, + sym_list_marker_upper_alpha_paren, + [15120] = 1, + ACTIONS(460), 2, + sym__block_quote_continuation, + sym__footnote_continuation, + [15125] = 2, + ACTIONS(1894), 1, + anon_sym_PIPE, + STATE(836), 1, + aux_sym_table_header_repeat1, + [15132] = 1, + ACTIONS(1796), 2, sym__block_close, - sym_list_marker_upper_roman_parens, - [14825] = 1, - ACTIONS(1768), 2, + sym_list_marker_lower_roman_paren, + [15137] = 1, + ACTIONS(1776), 2, sym__block_close, - sym_list_marker_upper_roman_parens, - [14830] = 1, - ACTIONS(1874), 2, + sym_list_marker_lower_roman_paren, + [15142] = 1, + ACTIONS(1796), 2, + sym__block_close, + sym_list_marker_upper_roman_paren, + [15147] = 1, + ACTIONS(1776), 2, + sym__block_close, + sym_list_marker_upper_roman_paren, + [15152] = 1, + ACTIONS(1796), 2, sym__block_close, sym_list_marker_decimal_parens, - [14835] = 1, - ACTIONS(1876), 2, + [15157] = 1, + ACTIONS(1776), 2, sym__block_close, - sym_list_marker_lower_alpha_parens, - [14840] = 1, - ACTIONS(1878), 2, + sym_list_marker_decimal_parens, + [15162] = 1, + ACTIONS(1796), 2, sym__block_close, - sym_list_marker_upper_alpha_period, - [14845] = 1, - ACTIONS(1880), 2, - sym__eof_or_newline, - sym__close_paragraph, - [14850] = 1, - ACTIONS(1882), 2, + sym_list_marker_lower_alpha_parens, + [15167] = 1, + ACTIONS(1776), 2, sym__block_close, - sym_list_marker_upper_alpha_paren, - [14855] = 1, - ACTIONS(1884), 2, + sym_list_marker_lower_alpha_parens, + [15172] = 1, + ACTIONS(1796), 2, sym__block_close, sym_list_marker_upper_alpha_parens, - [14860] = 1, - ACTIONS(1886), 2, + [15177] = 1, + ACTIONS(1776), 2, sym__block_close, sym_list_marker_upper_alpha_parens, - [14865] = 1, - ACTIONS(1888), 2, + [15182] = 1, + ACTIONS(1796), 2, sym__block_close, sym_list_marker_lower_roman_parens, - [14870] = 1, - ACTIONS(1768), 2, - sym__block_close, - sym_list_marker_decimal_period, - [14875] = 2, - ACTIONS(575), 1, - sym__indented_content_spacer, - ACTIONS(1890), 1, - sym__code_block_end, - [14882] = 1, - ACTIONS(823), 2, + [15187] = 1, + ACTIONS(1776), 2, sym__block_close, - sym__block_quote_continuation, - [14887] = 1, - ACTIONS(1892), 2, + sym_list_marker_lower_roman_parens, + [15192] = 1, + ACTIONS(1796), 2, sym__block_close, sym_list_marker_upper_roman_parens, - [14892] = 1, - ACTIONS(1785), 2, - sym__block_close, - sym__heading_continuation, - [14897] = 1, - ACTIONS(827), 2, + [15197] = 1, + ACTIONS(1776), 2, sym__block_close, - sym__block_quote_continuation, - [14902] = 1, - ACTIONS(1894), 2, - sym__block_close, - sym_list_marker_decimal_parens, - [14907] = 2, - ACTIONS(1145), 1, - aux_sym__line_token1, - STATE(594), 1, - sym__line, - [14914] = 2, + sym_list_marker_upper_roman_parens, + [15202] = 2, ACTIONS(1896), 1, - anon_sym_PIPE, - STATE(805), 1, - aux_sym_table_separator_repeat1, - [14921] = 2, - ACTIONS(569), 1, - sym__indented_content_spacer, - ACTIONS(1898), 1, - sym__code_block_end, - [14928] = 2, - ACTIONS(1900), 1, - anon_sym_PIPE, - STATE(808), 1, - aux_sym_table_row_repeat1, - [14935] = 1, - ACTIONS(1902), 2, - sym__block_close, - sym_list_marker_definition, - [14940] = 1, - ACTIONS(1904), 2, - sym__block_close, - sym_list_marker_lower_alpha_period, - [14945] = 1, - ACTIONS(430), 2, - sym_list_marker_plus, - sym__block_quote_continuation, - [14950] = 1, - ACTIONS(1906), 2, sym__footnote_mark_begin, + ACTIONS(1899), 1, sym__in_fallback, - [14955] = 1, - ACTIONS(1908), 2, - sym__block_close, - sym_list_marker_lower_roman_period, - [14960] = 1, - ACTIONS(1910), 2, - sym__block_close, - sym_list_marker_lower_roman_paren, - [14965] = 2, - ACTIONS(1912), 1, - anon_sym_PIPE, - STATE(787), 1, - aux_sym_table_separator_repeat1, - [14972] = 2, - ACTIONS(1914), 1, - anon_sym_PIPE, - STATE(814), 1, - aux_sym_table_row_repeat1, - [14979] = 1, - ACTIONS(1916), 2, + [15209] = 1, + ACTIONS(1901), 2, sym__eof_or_newline, sym__close_paragraph, - [14984] = 2, - ACTIONS(1870), 1, - sym_table_cell_alignment, - ACTIONS(1918), 1, - sym__newline, - [14991] = 1, - ACTIONS(1920), 2, - sym__eof_or_newline, - sym__newline_inline, - [14996] = 1, - ACTIONS(633), 2, - sym__block_close, - sym__block_quote_continuation, - [15001] = 1, - ACTIONS(1760), 2, - sym_frontmatter_marker, - aux_sym__line_token1, - [15006] = 1, - ACTIONS(639), 2, - sym__block_close, - sym__block_quote_continuation, - [15011] = 2, - ACTIONS(1870), 1, - sym_table_cell_alignment, - ACTIONS(1922), 1, - sym__newline, - [15018] = 1, - ACTIONS(1924), 2, - sym__block_close, - sym_list_marker_lower_roman_parens, - [15023] = 1, - ACTIONS(1435), 2, - sym__block_close, - sym__block_quote_continuation, - [15028] = 2, - ACTIONS(593), 1, - sym__indented_content_spacer, - ACTIONS(1926), 1, - sym__eof_or_newline, - [15035] = 2, - ACTIONS(1928), 1, - sym__eof_or_newline, - STATE(969), 1, - sym__one_or_two_newlines, - [15042] = 2, - ACTIONS(1930), 1, - sym__id, - STATE(1005), 1, - sym_reference_label, - [15049] = 1, - ACTIONS(1932), 2, + [15214] = 1, + ACTIONS(1903), 2, sym__eof_or_newline, sym__close_paragraph, - [15054] = 1, - ACTIONS(1934), 2, - sym__block_close, - sym_list_marker_upper_roman_period, - [15059] = 1, - ACTIONS(1936), 2, - sym__block_close, - sym_list_marker_upper_roman_paren, - [15064] = 1, - ACTIONS(1106), 2, - sym__block_close, - sym__heading_continuation, - [15069] = 1, - ACTIONS(641), 2, + [15219] = 1, + ACTIONS(1905), 2, sym__block_close, - sym__block_quote_continuation, - [15074] = 1, - ACTIONS(657), 2, - sym__block_close, - sym__block_quote_continuation, - [15079] = 1, - ACTIONS(681), 2, + sym_list_marker_lower_alpha_period, + [15224] = 1, + ACTIONS(1907), 2, sym__block_close, - sym__block_quote_continuation, - [15084] = 1, - ACTIONS(649), 2, + sym_list_marker_decimal_period, + [15229] = 1, + ACTIONS(788), 2, sym__block_close, sym__block_quote_continuation, - [15089] = 1, - ACTIONS(713), 2, + [15234] = 1, + ACTIONS(792), 2, sym__block_close, sym__block_quote_continuation, - [15094] = 1, - ACTIONS(729), 2, + [15239] = 1, + ACTIONS(796), 2, sym__block_close, sym__block_quote_continuation, - [15099] = 1, - ACTIONS(737), 2, + [15244] = 1, + ACTIONS(1909), 2, sym__block_close, - sym__block_quote_continuation, - [15104] = 1, - ACTIONS(757), 2, + sym_list_marker_lower_alpha_period, + [15249] = 1, + ACTIONS(1911), 2, sym__block_close, - sym__block_quote_continuation, - [15109] = 1, - ACTIONS(653), 2, + sym_list_marker_upper_alpha_period, + [15254] = 1, + ACTIONS(1913), 2, sym__block_close, - sym__block_quote_continuation, - [15114] = 1, - ACTIONS(761), 2, + sym_list_marker_lower_roman_period, + [15259] = 1, + ACTIONS(800), 2, sym__block_close, sym__block_quote_continuation, - [15119] = 1, - ACTIONS(665), 2, + [15264] = 1, + ACTIONS(1915), 2, sym__block_close, - sym__block_quote_continuation, - [15124] = 1, - ACTIONS(767), 2, + sym_list_marker_upper_roman_period, + [15269] = 1, + ACTIONS(804), 2, sym__block_close, sym__block_quote_continuation, - [15129] = 1, - ACTIONS(771), 2, + [15274] = 1, + ACTIONS(1917), 2, sym__block_close, - sym__block_quote_continuation, - [15134] = 1, - ACTIONS(669), 2, + sym_list_marker_decimal_paren, + [15279] = 1, + ACTIONS(1919), 2, sym__block_close, - sym__block_quote_continuation, - [15139] = 1, - ACTIONS(673), 2, + sym_list_marker_lower_alpha_paren, + [15284] = 1, + ACTIONS(808), 2, sym__block_close, sym__block_quote_continuation, - [15144] = 1, - ACTIONS(1938), 2, + [15289] = 1, + ACTIONS(1899), 2, sym__footnote_mark_begin, sym__in_fallback, - [15149] = 1, - ACTIONS(677), 2, + [15294] = 1, + ACTIONS(1921), 2, sym__block_close, - sym__block_quote_continuation, - [15154] = 1, - ACTIONS(1940), 2, + sym_list_marker_lower_alpha_paren, + [15299] = 1, + ACTIONS(1923), 2, sym__block_close, - sym_list_marker_upper_roman_parens, - [15159] = 1, - ACTIONS(689), 2, + sym_list_marker_lower_alpha_parens, + [15304] = 1, + ACTIONS(1925), 2, + sym__eof_or_newline, + sym__close_paragraph, + [15309] = 1, + ACTIONS(1927), 2, + sym__eof_or_newline, + sym__newline_inline, + [15314] = 1, + ACTIONS(1929), 2, sym__block_close, - sym__block_quote_continuation, - [15164] = 2, - ACTIONS(1870), 1, + sym_list_marker_upper_alpha_period, + [15319] = 1, + ACTIONS(1931), 2, + sym__block_close, + sym_list_marker_upper_alpha_paren, + [15324] = 1, + ACTIONS(1874), 2, + sym_frontmatter_marker, + aux_sym__line_token1, + [15329] = 2, + ACTIONS(1888), 1, sym_table_cell_alignment, - ACTIONS(1942), 1, + ACTIONS(1933), 1, sym__newline, - [15171] = 1, - ACTIONS(1944), 2, + [15336] = 1, + ACTIONS(812), 2, sym__block_close, - sym_list_marker_definition, - [15176] = 1, - ACTIONS(693), 2, + sym__block_quote_continuation, + [15341] = 1, + ACTIONS(816), 2, sym__block_close, sym__block_quote_continuation, - [15181] = 2, - ACTIONS(1870), 1, - sym_table_cell_alignment, - ACTIONS(1946), 1, - sym__newline, - [15188] = 1, - ACTIONS(1948), 2, - sym__eof_or_newline, - sym__close_paragraph, - [15193] = 1, - ACTIONS(1950), 2, - sym__eof_or_newline, - sym__close_paragraph, - [15198] = 2, - ACTIONS(1870), 1, + [15346] = 1, + ACTIONS(820), 2, + sym__block_close, + sym__block_quote_continuation, + [15351] = 2, + ACTIONS(1935), 1, + sym__id, + STATE(904), 1, + sym_reference_label, + [15358] = 1, + ACTIONS(1937), 2, + sym__block_close, + sym_list_marker_upper_alpha_parens, + [15363] = 2, + ACTIONS(1888), 1, sym_table_cell_alignment, - ACTIONS(1952), 1, + ACTIONS(1939), 1, sym__newline, - [15205] = 2, - ACTIONS(1954), 1, + [15370] = 1, + ACTIONS(1941), 2, + sym__block_close, + sym_list_marker_lower_roman_period, + [15375] = 2, + ACTIONS(1943), 1, sym__eof_or_newline, - STATE(781), 1, + STATE(945), 1, sym__one_or_two_newlines, - [15212] = 1, - ACTIONS(697), 2, + [15382] = 1, + ACTIONS(1945), 2, sym__block_close, - sym__block_quote_continuation, - [15217] = 1, - ACTIONS(1956), 2, - sym__eof_or_newline, - sym__close_paragraph, - [15222] = 2, - ACTIONS(1870), 1, - sym_table_cell_alignment, - ACTIONS(1958), 1, - sym__newline, - [15229] = 1, - ACTIONS(1960), 2, + sym_list_marker_lower_roman_paren, + [15387] = 1, + ACTIONS(1796), 2, + sym__block_close, + sym_list_marker_decimal_period, + [15392] = 1, + ACTIONS(1947), 2, sym__eof_or_newline, sym__close_paragraph, - [15234] = 1, - ACTIONS(701), 2, + [15397] = 1, + ACTIONS(1949), 2, sym__block_close, - sym__block_quote_continuation, - [15239] = 2, - ACTIONS(1962), 1, - sym__id, - STATE(377), 1, - sym_class_name, - [15246] = 1, - ACTIONS(705), 2, + sym_list_marker_lower_roman_parens, + [15402] = 1, + ACTIONS(824), 2, sym__block_close, sym__block_quote_continuation, - [15251] = 1, - ACTIONS(709), 2, + [15407] = 1, + ACTIONS(1951), 2, sym__block_close, - sym__block_quote_continuation, - [15256] = 1, - ACTIONS(775), 2, + sym_list_marker_upper_roman_period, + [15412] = 1, + ACTIONS(1953), 2, sym__block_close, - sym__block_quote_continuation, - [15261] = 1, - ACTIONS(717), 2, + sym_list_marker_definition, + [15417] = 1, + ACTIONS(1955), 2, + sym__eof_or_newline, + sym__close_paragraph, + [15422] = 1, + ACTIONS(828), 2, sym__block_close, sym__block_quote_continuation, - [15266] = 1, - ACTIONS(721), 2, + [15427] = 1, + ACTIONS(1957), 2, sym__block_close, - sym__block_quote_continuation, - [15271] = 1, - ACTIONS(725), 2, + sym_list_marker_upper_alpha_paren, + [15432] = 1, + ACTIONS(1782), 2, + sym__eof_or_newline, + sym__newline_inline, + [15437] = 1, + ACTIONS(832), 2, sym__block_close, sym__block_quote_continuation, - [15276] = 1, - ACTIONS(733), 2, + [15442] = 1, + ACTIONS(1959), 2, sym__block_close, - sym__block_quote_continuation, - [15281] = 1, - ACTIONS(1790), 2, + sym_list_marker_lower_roman_paren, + [15447] = 1, + ACTIONS(1961), 2, sym__block_close, - sym_list_marker_lower_alpha_period, - [15286] = 2, - ACTIONS(1870), 1, - sym_table_cell_alignment, - ACTIONS(1964), 1, - sym__newline, - [15293] = 2, - ACTIONS(1966), 1, - anon_sym_PIPE, - STATE(787), 1, - aux_sym_table_separator_repeat1, - [15300] = 1, - ACTIONS(430), 2, - sym_list_marker_dash, - sym__block_quote_continuation, - [15305] = 1, - ACTIONS(779), 2, + sym_list_marker_upper_roman_paren, + [15452] = 1, + ACTIONS(1963), 2, sym__block_close, - sym__block_quote_continuation, - [15310] = 1, - ACTIONS(783), 2, + sym_list_marker_decimal_parens, + [15457] = 1, + ACTIONS(1776), 2, sym__block_close, - sym__block_quote_continuation, - [15315] = 1, - ACTIONS(787), 2, + sym_list_marker_decimal_period, + [15462] = 1, + ACTIONS(836), 2, sym__block_close, sym__block_quote_continuation, - [15320] = 1, - ACTIONS(791), 2, + [15467] = 1, + ACTIONS(840), 2, sym__block_close, sym__block_quote_continuation, - [15325] = 1, - ACTIONS(1969), 2, + [15472] = 1, + ACTIONS(1965), 2, + sym__block_close, + sym_list_marker_lower_alpha_parens, + [15477] = 1, + ACTIONS(1791), 2, + sym__block_close, + sym__heading_continuation, + [15482] = 1, + ACTIONS(1967), 2, sym__footnote_mark_begin, sym__in_fallback, - [15330] = 2, - ACTIONS(1870), 1, - sym_table_cell_alignment, - ACTIONS(1971), 1, - sym__newline, - [15337] = 1, - ACTIONS(795), 2, + [15487] = 1, + ACTIONS(1969), 2, sym__block_close, - sym__block_quote_continuation, - [15342] = 1, - ACTIONS(1973), 2, + sym_list_marker_upper_roman_paren, + [15492] = 1, + ACTIONS(1971), 2, sym__block_close, - sym_list_marker_decimal_paren, - [15347] = 1, - ACTIONS(1768), 2, + sym_list_marker_upper_alpha_parens, + [15497] = 1, + ACTIONS(1973), 2, sym__block_close, - sym_list_marker_lower_alpha_period, - [15352] = 2, - ACTIONS(1870), 1, + sym_list_marker_upper_roman_parens, + [15502] = 1, + ACTIONS(1975), 2, + sym__eof_or_newline, + sym__close_paragraph, + [15507] = 2, + ACTIONS(1888), 1, sym_table_cell_alignment, - ACTIONS(1975), 1, - sym__newline, - [15359] = 2, - ACTIONS(1906), 1, - sym__in_fallback, ACTIONS(1977), 1, - sym__footnote_mark_begin, - [15366] = 2, - ACTIONS(1870), 1, + sym__newline, + [15514] = 2, + ACTIONS(1888), 1, sym_table_cell_alignment, - ACTIONS(1980), 1, + ACTIONS(1979), 1, sym__newline, - [15373] = 1, - ACTIONS(1982), 2, - sym__block_close, - sym_list_marker_lower_alpha_paren, - [15378] = 2, - ACTIONS(1984), 1, + [15521] = 1, + ACTIONS(1981), 2, sym__eof_or_newline, - STATE(200), 1, + sym__close_paragraph, + [15526] = 2, + ACTIONS(1983), 1, + sym__eof_or_newline, + STATE(865), 1, sym__one_or_two_newlines, - [15385] = 1, - ACTIONS(1986), 2, + [15533] = 1, + ACTIONS(1985), 2, sym__eof_or_newline, sym__close_paragraph, - [15390] = 2, - ACTIONS(1870), 1, - sym_table_cell_alignment, - ACTIONS(1988), 1, - sym__newline, - [15397] = 2, - ACTIONS(1990), 1, - anon_sym_PIPE, - STATE(787), 1, - aux_sym_table_separator_repeat1, - [15404] = 2, - ACTIONS(31), 1, - sym__list_marker_task_begin, - STATE(30), 1, - sym_list_marker_task, - [15411] = 1, - ACTIONS(1992), 2, + [15538] = 1, + ACTIONS(1987), 2, sym__eof_or_newline, sym__close_paragraph, - [15416] = 2, - ACTIONS(1994), 1, - anon_sym_PIPE, - STATE(814), 1, - aux_sym_table_row_repeat1, - [15423] = 1, - ACTIONS(1996), 2, - sym__block_close, - sym_list_marker_decimal_period, - [15428] = 1, - ACTIONS(1998), 2, - sym__block_close, - sym_list_marker_lower_alpha_period, - [15433] = 1, - ACTIONS(2000), 2, + [15543] = 2, + ACTIONS(1167), 1, + aux_sym__line_token1, + STATE(590), 1, + sym__line, + [15550] = 1, + ACTIONS(1989), 2, sym__block_close, - sym_list_marker_upper_alpha_period, - [15438] = 1, - ACTIONS(799), 2, + sym_list_marker_lower_roman_parens, + [15555] = 1, + ACTIONS(1991), 2, sym__block_close, - sym__block_quote_continuation, - [15443] = 1, - ACTIONS(2002), 2, + sym_list_marker_upper_roman_parens, + [15560] = 1, + ACTIONS(1993), 2, sym__block_close, - sym_list_marker_lower_alpha_parens, - [15448] = 2, - ACTIONS(2004), 1, + sym_list_marker_definition, + [15565] = 2, + ACTIONS(598), 1, + sym__indented_content_spacer, + ACTIONS(1995), 1, + sym__div_end, + [15572] = 2, + ACTIONS(1997), 1, anon_sym_PIPE, - STATE(814), 1, - aux_sym_table_row_repeat1, - [15455] = 1, - ACTIONS(803), 2, + STATE(712), 1, + aux_sym_table_header_repeat1, + [15579] = 1, + ACTIONS(1999), 2, + sym__block_close, + sym_list_marker_definition, + [15584] = 1, + ACTIONS(460), 2, + sym_list_marker_star, + sym__block_quote_continuation, + [15589] = 1, + ACTIONS(536), 2, sym__block_close, sym__block_quote_continuation, - [15460] = 1, - ACTIONS(807), 2, + [15594] = 2, + ACTIONS(2001), 1, + anon_sym_PIPE, + STATE(717), 1, + aux_sym_table_separator_repeat1, + [15601] = 1, + ACTIONS(2003), 2, + sym__footnote_mark_begin, + sym__in_fallback, + [15606] = 2, + ACTIONS(1888), 1, + sym_table_cell_alignment, + ACTIONS(2005), 1, + sym__newline, + [15613] = 1, + ACTIONS(1448), 2, sym__block_close, sym__block_quote_continuation, - [15465] = 2, - ACTIONS(563), 1, - sym__indented_content_spacer, + [15618] = 2, + ACTIONS(29), 1, + sym__list_marker_task_begin, + STATE(30), 1, + sym_list_marker_task, + [15625] = 2, ACTIONS(2007), 1, - sym__div_end, - [15472] = 1, - ACTIONS(2009), 2, - sym__block_close, - sym_list_marker_upper_roman_period, - [15477] = 1, - ACTIONS(2011), 2, - sym__block_close, - sym_list_marker_decimal_paren, - [15482] = 1, - ACTIONS(2013), 2, + sym__whitespace1, + ACTIONS(2009), 1, + sym__newline, + [15632] = 2, + ACTIONS(1888), 1, + sym_table_cell_alignment, + ACTIONS(2011), 1, + sym__newline, + [15639] = 2, + ACTIONS(2013), 1, + sym__eof_or_newline, + STATE(132), 1, + sym__one_or_two_newlines, + [15646] = 1, + ACTIONS(1148), 2, sym__block_close, - sym_list_marker_lower_alpha_paren, - [15487] = 1, - ACTIONS(2015), 2, + sym__heading_continuation, + [15651] = 2, + ACTIONS(2015), 1, + sym__eof_or_newline, + STATE(199), 1, + sym__one_or_two_newlines, + [15658] = 1, + ACTIONS(852), 2, sym__block_close, - sym_list_marker_upper_alpha_paren, - [15492] = 1, + sym__block_quote_continuation, + [15663] = 1, ACTIONS(2017), 2, - sym__block_close, - sym_list_marker_lower_roman_paren, - [15497] = 1, - ACTIONS(811), 2, + sym__eof_or_newline, + sym__close_paragraph, + [15668] = 1, + ACTIONS(856), 2, sym__block_close, sym__block_quote_continuation, - [15502] = 1, - ACTIONS(815), 2, + [15673] = 1, + ACTIONS(666), 2, sym__block_close, sym__block_quote_continuation, - [15507] = 1, - ACTIONS(819), 2, + [15678] = 1, + ACTIONS(672), 2, sym__block_close, sym__block_quote_continuation, - [15512] = 2, - ACTIONS(1870), 1, - sym_table_cell_alignment, + [15683] = 2, + ACTIONS(616), 1, + sym__indented_content_spacer, ACTIONS(2019), 1, - sym__newline, - [15519] = 1, - ACTIONS(430), 2, - sym_list_marker_star, - sym__block_quote_continuation, - [15524] = 2, - ACTIONS(2021), 1, sym__eof_or_newline, - STATE(133), 1, - sym__one_or_two_newlines, - [15531] = 1, - ACTIONS(430), 2, - sym__block_quote_continuation, - anon_sym_PIPE, - [15536] = 1, - ACTIONS(503), 2, + [15690] = 1, + ACTIONS(664), 2, sym__block_close, sym__block_quote_continuation, - [15541] = 1, - ACTIONS(1790), 2, + [15695] = 1, + ACTIONS(860), 2, sym__block_close, - sym_list_marker_upper_alpha_period, - [15546] = 1, - ACTIONS(1768), 2, + sym__block_quote_continuation, + [15700] = 1, + ACTIONS(460), 2, + sym_list_marker_dash, + sym__block_quote_continuation, + [15705] = 2, + ACTIONS(2021), 1, + anon_sym_PIPE, + STATE(721), 1, + aux_sym_table_header_repeat1, + [15712] = 1, + ACTIONS(686), 2, sym__block_close, - sym_list_marker_upper_alpha_period, - [15551] = 2, - ACTIONS(1870), 1, - sym_table_cell_alignment, + sym__block_quote_continuation, + [15717] = 2, ACTIONS(2023), 1, - sym__newline, - [15558] = 1, - ACTIONS(430), 2, - sym__list_marker_task_begin, + sym__id, + STATE(954), 1, + sym_class_name, + [15724] = 1, + ACTIONS(694), 2, + sym__block_close, sym__block_quote_continuation, - [15563] = 2, - ACTIONS(1990), 1, - anon_sym_PIPE, - STATE(727), 1, - aux_sym_table_separator_repeat1, - [15570] = 2, - ACTIONS(1994), 1, - anon_sym_PIPE, - STATE(728), 1, - aux_sym_table_row_repeat1, - [15577] = 2, - ACTIONS(1870), 1, + [15729] = 2, + ACTIONS(1888), 1, sym_table_cell_alignment, ACTIONS(2025), 1, sym__newline, - [15584] = 1, - ACTIONS(1790), 2, + [15736] = 1, + ACTIONS(682), 2, sym__block_close, - sym_list_marker_lower_roman_period, - [15589] = 2, - ACTIONS(2027), 1, - sym__eof_or_newline, - STATE(666), 1, - sym__one_or_two_newlines, - [15596] = 1, - ACTIONS(1768), 2, + sym__block_quote_continuation, + [15741] = 1, + ACTIONS(1796), 2, sym__block_close, - sym_list_marker_lower_roman_period, - [15601] = 1, - ACTIONS(2029), 2, + sym_list_marker_lower_alpha_period, + [15746] = 2, + ACTIONS(2027), 1, + anon_sym_PIPE, + STATE(836), 1, + aux_sym_table_header_repeat1, + [15753] = 1, + ACTIONS(2030), 2, sym__block_close, sym_list_marker_decimal_period, - [15606] = 1, - ACTIONS(751), 2, + [15758] = 2, + ACTIONS(1888), 1, + sym_table_cell_alignment, + ACTIONS(2032), 1, + sym__newline, + [15765] = 1, + ACTIONS(702), 2, sym__block_close, sym__block_quote_continuation, - [15611] = 1, - ACTIONS(1790), 2, - sym__block_close, - sym_list_marker_upper_roman_period, - [15616] = 1, - ACTIONS(1768), 2, + [15770] = 1, + ACTIONS(2034), 2, + sym__footnote_mark_begin, + sym__in_fallback, + [15775] = 2, + ACTIONS(2036), 1, + sym__eof_or_newline, + STATE(658), 1, + sym__one_or_two_newlines, + [15782] = 2, + ACTIONS(610), 1, + sym__indented_content_spacer, + ACTIONS(2038), 1, + sym__code_block_end, + [15789] = 1, + ACTIONS(710), 2, sym__block_close, - sym_list_marker_upper_roman_period, - [15621] = 1, - ACTIONS(430), 2, sym__block_quote_continuation, - aux_sym__line_token1, - [15626] = 1, - ACTIONS(1790), 2, + [15794] = 1, + ACTIONS(714), 2, sym__block_close, - sym_list_marker_decimal_paren, - [15631] = 1, - ACTIONS(1768), 2, - sym__block_close, - sym_list_marker_decimal_paren, - [15636] = 1, - ACTIONS(430), 2, - sym__list_item_continuation, sym__block_quote_continuation, - [15641] = 1, - ACTIONS(2031), 2, - sym__eof_or_newline, - sym__close_paragraph, - [15646] = 1, - ACTIONS(1790), 2, - sym__block_close, - sym_list_marker_decimal_period, - [15651] = 1, - ACTIONS(1790), 2, - sym__block_close, - sym_list_marker_lower_alpha_paren, - [15656] = 1, - ACTIONS(1768), 2, - sym__block_close, - sym_list_marker_lower_alpha_paren, - [15661] = 1, - ACTIONS(755), 2, + [15799] = 1, + ACTIONS(718), 2, sym__block_close, sym__block_quote_continuation, - [15666] = 1, - ACTIONS(2033), 2, - sym__block_close, - sym_list_marker_upper_roman_paren, - [15671] = 1, - ACTIONS(1790), 2, - sym__block_close, - sym_list_marker_upper_alpha_paren, - [15676] = 1, - ACTIONS(1768), 2, + [15804] = 1, + ACTIONS(726), 2, sym__block_close, - sym_list_marker_upper_alpha_paren, - [15681] = 1, - ACTIONS(430), 2, sym__block_quote_continuation, - sym__footnote_continuation, - [15686] = 1, - ACTIONS(1774), 2, - sym__eof_or_newline, - sym__newline_inline, - [15691] = 2, - ACTIONS(2035), 1, - anon_sym_PIPE, - STATE(861), 1, - aux_sym_table_separator_repeat1, - [15698] = 2, - ACTIONS(2037), 1, - anon_sym_PIPE, - STATE(862), 1, - aux_sym_table_row_repeat1, - [15705] = 2, - ACTIONS(2039), 1, - anon_sym_PIPE, - STATE(787), 1, - aux_sym_table_separator_repeat1, - [15712] = 2, - ACTIONS(2041), 1, - anon_sym_PIPE, - STATE(814), 1, - aux_sym_table_row_repeat1, - [15719] = 2, - ACTIONS(2039), 1, - anon_sym_PIPE, - STATE(865), 1, - aux_sym_table_separator_repeat1, - [15726] = 2, - ACTIONS(2041), 1, - anon_sym_PIPE, - STATE(866), 1, - aux_sym_table_row_repeat1, - [15733] = 2, - ACTIONS(2043), 1, + [15809] = 1, + ACTIONS(1776), 2, + sym__block_close, + sym_list_marker_lower_alpha_period, + [15814] = 2, + ACTIONS(1888), 1, + sym_table_cell_alignment, + ACTIONS(2040), 1, + sym__newline, + [15821] = 2, + ACTIONS(2042), 1, anon_sym_PIPE, - STATE(787), 1, + STATE(849), 1, aux_sym_table_separator_repeat1, - [15740] = 2, + [15828] = 1, + ACTIONS(730), 2, + sym__block_close, + sym__block_quote_continuation, + [15833] = 2, + ACTIONS(550), 1, + sym__indented_content_spacer, ACTIONS(2045), 1, - anon_sym_PIPE, - STATE(814), 1, - aux_sym_table_row_repeat1, - [15747] = 2, + sym__eof_or_newline, + [15840] = 1, + ACTIONS(734), 2, + sym__block_close, + sym__block_quote_continuation, + [15845] = 2, ACTIONS(2047), 1, - sym__id, - STATE(968), 1, - sym_class_name, - [15754] = 2, + anon_sym_PIPE, + STATE(858), 1, + aux_sym_table_header_repeat1, + [15852] = 2, ACTIONS(2049), 1, anon_sym_PIPE, - STATE(870), 1, + STATE(859), 1, aux_sym_table_separator_repeat1, - [15761] = 2, + [15859] = 2, ACTIONS(2051), 1, anon_sym_PIPE, - STATE(871), 1, - aux_sym_table_row_repeat1, - [15768] = 2, + STATE(860), 1, + aux_sym_table_header_repeat1, + [15866] = 1, + ACTIONS(738), 2, + sym__block_close, + sym__block_quote_continuation, + [15871] = 1, + ACTIONS(742), 2, + sym__block_close, + sym__block_quote_continuation, + [15876] = 2, ACTIONS(2053), 1, anon_sym_PIPE, - STATE(787), 1, - aux_sym_table_separator_repeat1, - [15775] = 2, + STATE(836), 1, + aux_sym_table_header_repeat1, + [15883] = 2, ACTIONS(2055), 1, anon_sym_PIPE, - STATE(814), 1, - aux_sym_table_row_repeat1, - [15782] = 2, - ACTIONS(2053), 1, - anon_sym_PIPE, - STATE(874), 1, + STATE(849), 1, aux_sym_table_separator_repeat1, - [15789] = 2, - ACTIONS(2055), 1, - anon_sym_PIPE, - STATE(875), 1, - aux_sym_table_row_repeat1, - [15796] = 2, + [15890] = 2, ACTIONS(2057), 1, anon_sym_PIPE, - STATE(787), 1, - aux_sym_table_separator_repeat1, - [15803] = 2, + STATE(836), 1, + aux_sym_table_header_repeat1, + [15897] = 1, + ACTIONS(746), 2, + sym__block_close, + sym__block_quote_continuation, + [15902] = 2, ACTIONS(2059), 1, anon_sym_PIPE, - STATE(814), 1, - aux_sym_table_row_repeat1, - [15810] = 1, - ACTIONS(1790), 2, - sym__block_close, - sym_list_marker_lower_roman_paren, - [15815] = 1, - ACTIONS(1768), 2, - sym__block_close, - sym_list_marker_lower_roman_paren, - [15820] = 1, - ACTIONS(1790), 2, - sym__block_close, - sym_list_marker_upper_roman_paren, - [15825] = 2, + STATE(867), 1, + aux_sym_table_header_repeat1, + [15909] = 2, ACTIONS(2061), 1, anon_sym_PIPE, - STATE(884), 1, + STATE(868), 1, aux_sym_table_separator_repeat1, - [15832] = 2, + [15916] = 2, ACTIONS(2063), 1, anon_sym_PIPE, - STATE(885), 1, - aux_sym_table_row_repeat1, - [15839] = 1, - ACTIONS(1768), 2, - sym__block_close, - sym_list_marker_upper_roman_paren, - [15844] = 1, - ACTIONS(1790), 2, + STATE(869), 1, + aux_sym_table_header_repeat1, + [15923] = 1, + ACTIONS(750), 2, sym__block_close, - sym_list_marker_decimal_parens, - [15849] = 2, - ACTIONS(607), 1, + sym__block_quote_continuation, + [15928] = 2, + ACTIONS(622), 1, sym__indented_content_spacer, ACTIONS(2065), 1, - sym__eof_or_newline, - [15856] = 2, + sym__div_end, + [15935] = 2, ACTIONS(2067), 1, anon_sym_PIPE, - STATE(787), 1, - aux_sym_table_separator_repeat1, - [15863] = 2, + STATE(836), 1, + aux_sym_table_header_repeat1, + [15942] = 2, ACTIONS(2069), 1, anon_sym_PIPE, - STATE(814), 1, - aux_sym_table_row_repeat1, - [15870] = 2, - ACTIONS(2067), 1, - anon_sym_PIPE, - STATE(889), 1, + STATE(849), 1, aux_sym_table_separator_repeat1, - [15877] = 2, - ACTIONS(2069), 1, - anon_sym_PIPE, - STATE(890), 1, - aux_sym_table_row_repeat1, - [15884] = 1, - ACTIONS(1768), 2, - sym__block_close, - sym_list_marker_decimal_parens, - [15889] = 2, + [15949] = 2, ACTIONS(2071), 1, anon_sym_PIPE, - STATE(787), 1, - aux_sym_table_separator_repeat1, - [15896] = 2, + STATE(836), 1, + aux_sym_table_header_repeat1, + [15956] = 2, + ACTIONS(632), 1, + sym__indented_content_spacer, ACTIONS(2073), 1, - anon_sym_PIPE, - STATE(814), 1, - aux_sym_table_row_repeat1, - [15903] = 2, + sym__code_block_end, + [15963] = 1, + ACTIONS(758), 2, + sym__block_close, + sym__block_quote_continuation, + [15968] = 2, ACTIONS(2075), 1, - sym__whitespace1, + anon_sym_PIPE, + STATE(877), 1, + aux_sym_table_header_repeat1, + [15975] = 2, ACTIONS(2077), 1, - sym__newline, - [15910] = 1, - ACTIONS(1790), 2, - sym__block_close, - sym_list_marker_lower_alpha_parens, - [15915] = 1, - ACTIONS(1768), 2, - sym__block_close, - sym_list_marker_lower_alpha_parens, - [15920] = 2, - ACTIONS(2079), 1, anon_sym_PIPE, - STATE(897), 1, + STATE(878), 1, aux_sym_table_separator_repeat1, - [15927] = 2, - ACTIONS(2081), 1, + [15982] = 2, + ACTIONS(2079), 1, anon_sym_PIPE, - STATE(898), 1, - aux_sym_table_row_repeat1, - [15934] = 1, - ACTIONS(2083), 2, + STATE(879), 1, + aux_sym_table_header_repeat1, + [15989] = 1, + ACTIONS(762), 2, sym__block_close, - sym_list_marker_definition, - [15939] = 2, - ACTIONS(2085), 1, + sym__block_quote_continuation, + [15994] = 1, + ACTIONS(766), 2, + sym__block_close, + sym__block_quote_continuation, + [15999] = 2, + ACTIONS(2081), 1, anon_sym_PIPE, - STATE(787), 1, - aux_sym_table_separator_repeat1, - [15946] = 2, - ACTIONS(2087), 1, + STATE(836), 1, + aux_sym_table_header_repeat1, + [16006] = 2, + ACTIONS(2083), 1, anon_sym_PIPE, - STATE(814), 1, - aux_sym_table_row_repeat1, - [15953] = 2, + STATE(849), 1, + aux_sym_table_separator_repeat1, + [16013] = 2, ACTIONS(2085), 1, anon_sym_PIPE, - STATE(902), 1, - aux_sym_table_separator_repeat1, - [15960] = 2, + STATE(836), 1, + aux_sym_table_header_repeat1, + [16020] = 1, + ACTIONS(460), 2, + sym_list_marker_plus, + sym__block_quote_continuation, + [16025] = 2, ACTIONS(2087), 1, anon_sym_PIPE, - STATE(903), 1, - aux_sym_table_row_repeat1, - [15967] = 2, - ACTIONS(589), 1, - sym__indented_content_spacer, + STATE(885), 1, + aux_sym_table_header_repeat1, + [16032] = 2, ACTIONS(2089), 1, - sym__div_end, - [15974] = 2, - ACTIONS(2091), 1, anon_sym_PIPE, - STATE(787), 1, + STATE(886), 1, aux_sym_table_separator_repeat1, - [15981] = 2, - ACTIONS(2093), 1, + [16039] = 2, + ACTIONS(2091), 1, anon_sym_PIPE, - STATE(814), 1, - aux_sym_table_row_repeat1, - [15988] = 2, - ACTIONS(515), 1, + STATE(887), 1, + aux_sym_table_header_repeat1, + [16046] = 2, + ACTIONS(556), 1, sym__indented_content_spacer, + ACTIONS(2093), 1, + sym__div_end, + [16053] = 2, ACTIONS(2095), 1, - sym__code_block_end, - [15995] = 1, - ACTIONS(1790), 2, - sym__block_close, - sym_list_marker_upper_alpha_parens, - [16000] = 2, + anon_sym_PIPE, + STATE(836), 1, + aux_sym_table_header_repeat1, + [16060] = 2, ACTIONS(2097), 1, - sym_language, + anon_sym_PIPE, + STATE(849), 1, + aux_sym_table_separator_repeat1, + [16067] = 2, ACTIONS(2099), 1, - sym__newline, - [16007] = 1, - ACTIONS(2101), 2, - sym__footnote_mark_begin, - sym__in_fallback, - [16012] = 2, - ACTIONS(529), 1, + anon_sym_PIPE, + STATE(836), 1, + aux_sym_table_header_repeat1, + [16074] = 2, + ACTIONS(562), 1, sym__indented_content_spacer, - ACTIONS(2103), 1, + ACTIONS(2101), 1, sym__div_end, - [16019] = 2, - ACTIONS(535), 1, + [16081] = 2, + ACTIONS(568), 1, + sym__indented_content_spacer, + ACTIONS(2103), 1, + sym__code_block_end, + [16088] = 2, + ACTIONS(574), 1, + sym__indented_content_spacer, + ACTIONS(2105), 1, + sym__code_block_end, + [16095] = 2, + ACTIONS(580), 1, + sym__indented_content_spacer, + ACTIONS(2107), 1, + sym__code_block_end, + [16102] = 2, + ACTIONS(604), 1, sym__indented_content_spacer, - ACTIONS(2105), 1, - sym__div_end, - [16026] = 2, - ACTIONS(1930), 1, + ACTIONS(2109), 1, + sym__code_block_end, + [16109] = 2, + ACTIONS(1935), 1, sym__id, - STATE(1137), 1, + STATE(1113), 1, sym_reference_label, - [16033] = 2, - ACTIONS(1930), 1, + [16116] = 2, + ACTIONS(1935), 1, sym__id, - STATE(1144), 1, + STATE(1119), 1, sym_reference_label, - [16040] = 1, - ACTIONS(1768), 2, - sym__block_close, - sym_list_marker_upper_alpha_parens, - [16045] = 2, - ACTIONS(1930), 1, + [16123] = 2, + ACTIONS(1935), 1, sym__id, - STATE(1151), 1, + STATE(1125), 1, sym_reference_label, - [16052] = 2, - ACTIONS(541), 1, - sym__indented_content_spacer, - ACTIONS(2107), 1, - sym__code_block_end, - [16059] = 2, - ACTIONS(1930), 1, + [16130] = 2, + ACTIONS(1935), 1, sym__id, - STATE(1158), 1, + STATE(1131), 1, sym_reference_label, - [16066] = 2, - ACTIONS(509), 1, - sym__indented_content_spacer, - ACTIONS(2109), 1, - sym__code_block_end, - [16073] = 2, - ACTIONS(549), 1, - sym__indented_content_spacer, + [16137] = 2, ACTIONS(2111), 1, - sym__code_block_end, - [16080] = 1, - ACTIONS(2113), 2, + sym_language, + ACTIONS(2113), 1, + sym__newline, + [16144] = 1, + ACTIONS(848), 2, sym__block_close, - sym_list_marker_lower_roman_period, - [16085] = 1, + sym__block_quote_continuation, + [16149] = 1, ACTIONS(2115), 1, - anon_sym_COLON, - [16089] = 1, + sym__whitespace, + [16153] = 1, ACTIONS(2117), 1, sym__indented_content_spacer, - [16093] = 1, + [16157] = 1, ACTIONS(2119), 1, - sym__newline, - [16097] = 1, + ts_builtin_sym_end, + [16161] = 1, + ACTIONS(883), 1, + sym_list_marker_star, + [16165] = 1, ACTIONS(2121), 1, - sym__block_close, - [16101] = 1, + anon_sym_RBRACK_COLON, + [16169] = 1, ACTIONS(2123), 1, - sym__block_close, - [16105] = 1, + anon_sym_RBRACK_COLON, + [16173] = 1, ACTIONS(2125), 1, sym__newline, - [16109] = 1, + [16177] = 1, ACTIONS(2127), 1, sym__newline, - [16113] = 1, + [16181] = 1, ACTIONS(2129), 1, - sym__newline, - [16117] = 1, + sym_table_cell_alignment, + [16185] = 1, ACTIONS(2131), 1, - sym__newline, - [16121] = 1, + sym__whitespace1, + [16189] = 1, ACTIONS(2133), 1, - sym__newline, - [16125] = 1, + sym__block_close, + [16193] = 1, ACTIONS(2135), 1, - sym__newline, - [16129] = 1, + sym__whitespace, + [16197] = 1, ACTIONS(2137), 1, sym__newline, - [16133] = 1, + [16201] = 1, ACTIONS(2139), 1, sym__newline, - [16137] = 1, + [16205] = 1, ACTIONS(2141), 1, sym__newline, - [16141] = 1, + [16209] = 1, ACTIONS(2143), 1, - sym__newline, - [16145] = 1, + anon_sym_EQ, + [16213] = 1, + ACTIONS(718), 1, + sym__indented_content_spacer, + [16217] = 1, ACTIONS(2145), 1, sym__newline, - [16149] = 1, + [16221] = 1, ACTIONS(2147), 1, - sym__block_close, - [16153] = 1, - ACTIONS(879), 1, - sym_list_marker_star, - [16157] = 1, + sym__newline, + [16225] = 1, ACTIONS(2149), 1, sym__newline, - [16161] = 1, + [16229] = 1, ACTIONS(2151), 1, sym__block_close, - [16165] = 1, + [16233] = 1, ACTIONS(2153), 1, - sym__newline, - [16169] = 1, + sym__block_close, + [16237] = 1, ACTIONS(2155), 1, sym__newline, - [16173] = 1, + [16241] = 1, ACTIONS(2157), 1, sym__newline, - [16177] = 1, + [16245] = 1, ACTIONS(2159), 1, - sym__whitespace1, - [16181] = 1, - ACTIONS(2161), 1, - anon_sym_PIPE, - [16185] = 1, - ACTIONS(2163), 1, - sym__newline, - [16189] = 1, - ACTIONS(2165), 1, - sym__newline, - [16193] = 1, - ACTIONS(2167), 1, - sym__newline, - [16197] = 1, - ACTIONS(2169), 1, - sym__newline, - [16201] = 1, - ACTIONS(2171), 1, sym__newline, - [16205] = 1, - ACTIONS(2173), 1, - sym__newline, - [16209] = 1, - ACTIONS(697), 1, - sym__indented_content_spacer, - [16213] = 1, - ACTIONS(701), 1, - sym__indented_content_spacer, - [16217] = 1, - ACTIONS(2175), 1, - sym__block_close, - [16221] = 1, - ACTIONS(2177), 1, - sym__whitespace1, - [16225] = 1, - ACTIONS(705), 1, - sym__indented_content_spacer, - [16229] = 1, - ACTIONS(2179), 1, - sym__block_close, - [16233] = 1, - ACTIONS(2181), 1, - sym__indented_content_spacer, - [16237] = 1, - ACTIONS(2183), 1, - anon_sym_COLON, - [16241] = 1, - ACTIONS(709), 1, - sym__indented_content_spacer, - [16245] = 1, - ACTIONS(2185), 1, - sym__block_close, [16249] = 1, - ACTIONS(2187), 1, + ACTIONS(2161), 1, sym__newline, [16253] = 1, - ACTIONS(669), 1, - sym__indented_content_spacer, + ACTIONS(2163), 1, + sym__newline, [16257] = 1, - ACTIONS(2189), 1, + ACTIONS(2165), 1, sym__newline, [16261] = 1, - ACTIONS(2191), 1, + ACTIONS(2167), 1, sym__newline, [16265] = 1, - ACTIONS(2193), 1, + ACTIONS(2169), 1, sym__newline, [16269] = 1, - ACTIONS(2195), 1, + ACTIONS(2171), 1, sym__newline, [16273] = 1, - ACTIONS(2197), 1, - sym__newline, + ACTIONS(2173), 1, + sym__whitespace1, [16277] = 1, - ACTIONS(1307), 1, - sym__newline, + ACTIONS(726), 1, + sym__indented_content_spacer, [16281] = 1, - ACTIONS(2199), 1, - sym__newline, - [16285] = 1, - ACTIONS(717), 1, + ACTIONS(730), 1, sym__indented_content_spacer, + [16285] = 1, + ACTIONS(2175), 1, + sym_frontmatter_marker, [16289] = 1, - ACTIONS(2201), 1, - sym__block_close, + ACTIONS(2177), 1, + sym__newline, [16293] = 1, - ACTIONS(721), 1, - sym__indented_content_spacer, - [16297] = 1, - ACTIONS(2203), 1, + ACTIONS(2179), 1, sym__newline, - [16301] = 1, - ACTIONS(725), 1, + [16297] = 1, + ACTIONS(734), 1, sym__indented_content_spacer, + [16301] = 1, + ACTIONS(2181), 1, + sym__newline, [16305] = 1, - ACTIONS(2205), 1, - sym_frontmatter_marker, + ACTIONS(2183), 1, + sym__block_close, [16309] = 1, - ACTIONS(733), 1, + ACTIONS(738), 1, sym__indented_content_spacer, [16313] = 1, - ACTIONS(2207), 1, - sym__newline, + ACTIONS(742), 1, + sym__indented_content_spacer, [16317] = 1, - ACTIONS(2209), 1, - sym__whitespace1, + ACTIONS(746), 1, + sym__indented_content_spacer, [16321] = 1, - ACTIONS(2211), 1, - sym__newline, + ACTIONS(2185), 1, + sym_frontmatter_marker, [16325] = 1, - ACTIONS(2213), 1, - sym__block_close, + ACTIONS(1291), 1, + sym__newline, [16329] = 1, - ACTIONS(2215), 1, - sym__block_close, + ACTIONS(2187), 1, + sym__whitespace1, [16333] = 1, - ACTIONS(2217), 1, - sym__newline, + ACTIONS(750), 1, + sym__indented_content_spacer, [16337] = 1, - ACTIONS(2219), 1, - sym__newline, + ACTIONS(758), 1, + sym__indented_content_spacer, [16341] = 1, - ACTIONS(2221), 1, - sym__newline, + ACTIONS(2189), 1, + anon_sym_COLON, [16345] = 1, - ACTIONS(2223), 1, - sym__newline, + ACTIONS(762), 1, + sym__indented_content_spacer, [16349] = 1, - ACTIONS(673), 1, + ACTIONS(766), 1, sym__indented_content_spacer, [16353] = 1, - ACTIONS(2225), 1, + ACTIONS(2191), 1, sym__newline, [16357] = 1, - ACTIONS(2227), 1, - sym__newline, + ACTIONS(2193), 1, + sym__indented_content_spacer, [16361] = 1, - ACTIONS(2229), 1, - sym__newline, + ACTIONS(702), 1, + sym__indented_content_spacer, [16365] = 1, - ACTIONS(2231), 1, - sym__newline, + ACTIONS(2195), 1, + anon_sym_RBRACK, [16369] = 1, - ACTIONS(2233), 1, + ACTIONS(2197), 1, sym__newline, [16373] = 1, - ACTIONS(2235), 1, - sym__newline, + ACTIONS(2199), 1, + sym__block_close, [16377] = 1, - ACTIONS(677), 1, - sym__indented_content_spacer, + ACTIONS(2201), 1, + sym__newline, [16381] = 1, - ACTIONS(2237), 1, + ACTIONS(2203), 1, sym__footnote_continuation, [16385] = 1, - ACTIONS(2239), 1, + ACTIONS(2205), 1, sym__block_close, [16389] = 1, - ACTIONS(2241), 1, - sym_table_cell_alignment, + ACTIONS(2207), 1, + sym_language, [16393] = 1, - ACTIONS(2243), 1, + ACTIONS(2209), 1, sym__indented_content_spacer, [16397] = 1, - ACTIONS(2245), 1, + ACTIONS(2211), 1, sym__block_close, [16401] = 1, - ACTIONS(2247), 1, - sym__newline, + ACTIONS(2213), 1, + sym__block_close, [16405] = 1, - ACTIONS(2249), 1, - anon_sym_RBRACK_COLON, - [16409] = 1, - ACTIONS(2251), 1, + ACTIONS(2215), 1, sym__block_close, + [16409] = 1, + ACTIONS(2217), 1, + sym__newline, [16413] = 1, - ACTIONS(2253), 1, - sym__indented_content_spacer, - [16417] = 1, - ACTIONS(2255), 1, - ts_builtin_sym_end, - [16421] = 1, - ACTIONS(2257), 1, + ACTIONS(2219), 1, anon_sym_PIPE, - [16425] = 1, - ACTIONS(751), 1, + [16417] = 1, + ACTIONS(2221), 1, + sym__newline, + [16421] = 1, + ACTIONS(2223), 1, sym__indented_content_spacer, + [16425] = 1, + ACTIONS(2225), 1, + sym__block_close, [16429] = 1, - ACTIONS(2259), 1, - anon_sym_RBRACK_COLON, + ACTIONS(2227), 1, + anon_sym_RBRACK, [16433] = 1, - ACTIONS(755), 1, - sym__indented_content_spacer, - [16437] = 1, - ACTIONS(2261), 1, + ACTIONS(2229), 1, sym__newline, + [16437] = 1, + ACTIONS(686), 1, + sym__indented_content_spacer, [16441] = 1, - ACTIONS(2263), 1, - sym__footnote_mark_begin, + ACTIONS(2231), 1, + sym__eof_or_newline, [16445] = 1, - ACTIONS(2265), 1, - sym_link_destination, - [16449] = 1, - ACTIONS(2267), 1, + ACTIONS(2233), 1, sym__newline, + [16449] = 1, + ACTIONS(682), 1, + sym__indented_content_spacer, [16453] = 1, - ACTIONS(2269), 1, - sym__block_close, + ACTIONS(2235), 1, + sym__newline, [16457] = 1, - ACTIONS(1870), 1, + ACTIONS(1888), 1, sym_table_cell_alignment, [16461] = 1, - ACTIONS(2271), 1, - sym__block_close, + ACTIONS(2237), 1, + sym__newline, [16465] = 1, - ACTIONS(2273), 1, - sym__whitespace, + ACTIONS(2239), 1, + sym__block_close, [16469] = 1, - ACTIONS(657), 1, - sym__indented_content_spacer, + ACTIONS(2241), 1, + sym__block_close, [16473] = 1, - ACTIONS(2275), 1, - sym__newline, + ACTIONS(2243), 1, + sym__footnote_mark_begin, [16477] = 1, - ACTIONS(681), 1, - sym__indented_content_spacer, + ACTIONS(2245), 1, + sym__newline, [16481] = 1, - ACTIONS(713), 1, - sym__indented_content_spacer, + ACTIONS(2247), 1, + sym__newline, [16485] = 1, - ACTIONS(729), 1, - sym__indented_content_spacer, + ACTIONS(2249), 1, + sym__newline, [16489] = 1, - ACTIONS(737), 1, - sym__indented_content_spacer, + ACTIONS(2251), 1, + sym__newline, [16493] = 1, - ACTIONS(757), 1, - sym__indented_content_spacer, + ACTIONS(2253), 1, + sym__newline, [16497] = 1, - ACTIONS(761), 1, - sym__indented_content_spacer, + ACTIONS(2255), 1, + sym__newline, [16501] = 1, - ACTIONS(767), 1, - sym__indented_content_spacer, + ACTIONS(2257), 1, + sym__newline, [16505] = 1, - ACTIONS(771), 1, - sym__indented_content_spacer, + ACTIONS(2259), 1, + sym__newline, [16509] = 1, - ACTIONS(775), 1, - sym__indented_content_spacer, + ACTIONS(2261), 1, + sym__block_close, [16513] = 1, - ACTIONS(2277), 1, - sym__newline, + ACTIONS(2263), 1, + sym_link_destination, [16517] = 1, - ACTIONS(2279), 1, - anon_sym_DQUOTE, + ACTIONS(2265), 1, + sym__newline, [16521] = 1, - ACTIONS(2281), 1, - sym__indented_content_spacer, + ACTIONS(2267), 1, + anon_sym_DQUOTE, [16525] = 1, - ACTIONS(2283), 1, - sym__newline, + ACTIONS(2269), 1, + sym__block_close, [16529] = 1, - ACTIONS(2285), 1, - anon_sym_RBRACK, + ACTIONS(2271), 1, + sym__newline, [16533] = 1, - ACTIONS(779), 1, + ACTIONS(690), 1, sym__indented_content_spacer, [16537] = 1, - ACTIONS(2287), 1, - sym_table_cell_alignment, + ACTIONS(2273), 1, + sym__block_close, [16541] = 1, - ACTIONS(783), 1, + ACTIONS(706), 1, sym__indented_content_spacer, [16545] = 1, - ACTIONS(787), 1, + ACTIONS(754), 1, sym__indented_content_spacer, [16549] = 1, - ACTIONS(2289), 1, - sym__newline, + ACTIONS(770), 1, + sym__indented_content_spacer, [16553] = 1, - ACTIONS(2291), 1, - sym__newline, + ACTIONS(782), 1, + sym__indented_content_spacer, [16557] = 1, - ACTIONS(2293), 1, - sym__newline, + ACTIONS(788), 1, + sym__indented_content_spacer, [16561] = 1, - ACTIONS(2295), 1, - sym__block_close, + ACTIONS(792), 1, + sym__indented_content_spacer, [16565] = 1, - ACTIONS(2297), 1, - sym__block_close, + ACTIONS(796), 1, + sym__indented_content_spacer, [16569] = 1, - ACTIONS(2299), 1, - anon_sym_RBRACK, + ACTIONS(800), 1, + sym__indented_content_spacer, [16573] = 1, - ACTIONS(791), 1, + ACTIONS(804), 1, sym__indented_content_spacer, [16577] = 1, - ACTIONS(2301), 1, - sym__whitespace1, + ACTIONS(808), 1, + sym__indented_content_spacer, [16581] = 1, - ACTIONS(2303), 1, - sym__newline, + ACTIONS(812), 1, + sym__indented_content_spacer, [16585] = 1, - ACTIONS(2305), 1, - sym__newline, + ACTIONS(816), 1, + sym__indented_content_spacer, [16589] = 1, - ACTIONS(2307), 1, - sym__whitespace, + ACTIONS(820), 1, + sym__indented_content_spacer, [16593] = 1, - ACTIONS(2309), 1, + ACTIONS(824), 1, sym__indented_content_spacer, [16597] = 1, - ACTIONS(795), 1, + ACTIONS(828), 1, sym__indented_content_spacer, [16601] = 1, - ACTIONS(799), 1, + ACTIONS(832), 1, sym__indented_content_spacer, [16605] = 1, - ACTIONS(803), 1, + ACTIONS(836), 1, sym__indented_content_spacer, [16609] = 1, - ACTIONS(2311), 1, - sym__newline, + ACTIONS(840), 1, + sym__indented_content_spacer, [16613] = 1, - ACTIONS(2313), 1, - sym__eof_or_newline, + ACTIONS(844), 1, + sym__indented_content_spacer, [16617] = 1, - ACTIONS(2315), 1, + ACTIONS(848), 1, sym__indented_content_spacer, [16621] = 1, - ACTIONS(2317), 1, - sym__newline, + ACTIONS(2275), 1, + anon_sym_PIPE, [16625] = 1, - ACTIONS(2319), 1, - sym__newline, - [16629] = 1, - ACTIONS(807), 1, + ACTIONS(536), 1, sym__indented_content_spacer, + [16629] = 1, + ACTIONS(2277), 1, + sym__newline, [16633] = 1, - ACTIONS(2321), 1, - sym_table_cell_alignment, + ACTIONS(2279), 1, + sym__newline, [16637] = 1, - ACTIONS(811), 1, - sym__indented_content_spacer, + ACTIONS(2281), 1, + sym__whitespace, [16641] = 1, - ACTIONS(815), 1, - sym__indented_content_spacer, + ACTIONS(881), 1, + sym_list_marker_dash, [16645] = 1, - ACTIONS(2323), 1, + ACTIONS(2283), 1, sym__newline, [16649] = 1, - ACTIONS(2325), 1, - sym__newline, + ACTIONS(2285), 1, + sym__block_close, [16653] = 1, - ACTIONS(2327), 1, - sym__newline, + ACTIONS(2287), 1, + sym__indented_content_spacer, [16657] = 1, - ACTIONS(2329), 1, + ACTIONS(2289), 1, sym__newline, [16661] = 1, - ACTIONS(2331), 1, + ACTIONS(2291), 1, sym__newline, [16665] = 1, - ACTIONS(2333), 1, - sym__newline, + ACTIONS(2293), 1, + sym__block_close, [16669] = 1, - ACTIONS(819), 1, - sym__indented_content_spacer, + ACTIONS(2295), 1, + sym__newline, [16673] = 1, - ACTIONS(2335), 1, - sym__whitespace1, + ACTIONS(2297), 1, + sym__block_close, [16677] = 1, - ACTIONS(2337), 1, + ACTIONS(2299), 1, sym__newline, [16681] = 1, - ACTIONS(665), 1, - sym__indented_content_spacer, + ACTIONS(2301), 1, + sym__newline, [16685] = 1, - ACTIONS(2339), 1, - sym__whitespace, + ACTIONS(2303), 1, + sym__block_close, [16689] = 1, - ACTIONS(2341), 1, - sym__indented_content_spacer, + ACTIONS(2305), 1, + sym__newline, [16693] = 1, - ACTIONS(653), 1, - sym__indented_content_spacer, + ACTIONS(2307), 1, + sym__newline, [16697] = 1, - ACTIONS(503), 1, - sym__indented_content_spacer, + ACTIONS(2309), 1, + sym__whitespace1, [16701] = 1, - ACTIONS(2343), 1, - sym__list_item_continuation, + ACTIONS(2311), 1, + sym__whitespace, [16705] = 1, - ACTIONS(2345), 1, - sym__newline, + ACTIONS(2313), 1, + sym__indented_content_spacer, [16709] = 1, - ACTIONS(2347), 1, - aux_sym_value_token1, + ACTIONS(2315), 1, + sym__newline, [16713] = 1, - ACTIONS(2349), 1, + ACTIONS(852), 1, sym__indented_content_spacer, [16717] = 1, - ACTIONS(2351), 1, - anon_sym_EQ, - [16721] = 1, - ACTIONS(2353), 1, + ACTIONS(856), 1, sym__indented_content_spacer, + [16721] = 1, + ACTIONS(2317), 1, + sym__newline, [16725] = 1, - ACTIONS(2355), 1, - sym__whitespace1, + ACTIONS(2319), 1, + anon_sym_RBRACK, [16729] = 1, - ACTIONS(2357), 1, - sym_table_cell_alignment, + ACTIONS(2321), 1, + sym__indented_content_spacer, [16733] = 1, - ACTIONS(2359), 1, + ACTIONS(2323), 1, sym__newline, [16737] = 1, - ACTIONS(2361), 1, - sym__block_close, + ACTIONS(2325), 1, + sym__newline, [16741] = 1, - ACTIONS(2363), 1, + ACTIONS(2327), 1, sym__newline, [16745] = 1, - ACTIONS(2365), 1, + ACTIONS(2329), 1, sym__newline, [16749] = 1, - ACTIONS(2367), 1, - sym__eof_or_newline, + ACTIONS(2331), 1, + sym__newline, [16753] = 1, - ACTIONS(2369), 1, - sym__whitespace1, + ACTIONS(2333), 1, + sym__newline, [16757] = 1, - ACTIONS(2371), 1, - sym__block_close, + ACTIONS(2335), 1, + sym__newline, [16761] = 1, - ACTIONS(2373), 1, + ACTIONS(2337), 1, sym__newline, [16765] = 1, - ACTIONS(2375), 1, - anon_sym_PIPE, + ACTIONS(2339), 1, + sym__newline, [16769] = 1, - ACTIONS(2377), 1, - sym__whitespace1, + ACTIONS(2341), 1, + sym__newline, [16773] = 1, - ACTIONS(2379), 1, - sym_language, + ACTIONS(2343), 1, + sym__whitespace1, [16777] = 1, - ACTIONS(2381), 1, - sym__list_item_continuation, - [16781] = 1, - ACTIONS(2383), 1, + ACTIONS(2345), 1, sym__whitespace, + [16781] = 1, + ACTIONS(2347), 1, + sym__indented_content_spacer, [16785] = 1, - ACTIONS(2385), 1, + ACTIONS(666), 1, sym__indented_content_spacer, [16789] = 1, - ACTIONS(743), 1, + ACTIONS(672), 1, sym__indented_content_spacer, [16793] = 1, - ACTIONS(2387), 1, - anon_sym_EQ, + ACTIONS(2349), 1, + sym__newline, [16797] = 1, - ACTIONS(2389), 1, + ACTIONS(2351), 1, sym__newline, [16801] = 1, - ACTIONS(689), 1, - sym__indented_content_spacer, + ACTIONS(2353), 1, + sym__newline, [16805] = 1, - ACTIONS(2391), 1, + ACTIONS(2355), 1, sym__indented_content_spacer, [16809] = 1, - ACTIONS(2393), 1, + ACTIONS(2357), 1, sym__newline, [16813] = 1, - ACTIONS(2395), 1, - anon_sym_RBRACK, + ACTIONS(885), 1, + sym_list_marker_plus, [16817] = 1, - ACTIONS(823), 1, - sym__indented_content_spacer, + ACTIONS(2359), 1, + sym__newline, [16821] = 1, - ACTIONS(2397), 1, - sym_table_cell_alignment, - [16825] = 1, - ACTIONS(827), 1, + ACTIONS(2361), 1, sym__indented_content_spacer, + [16825] = 1, + ACTIONS(2363), 1, + sym__newline, [16829] = 1, - ACTIONS(2399), 1, - sym_table_cell_alignment, + ACTIONS(2365), 1, + sym__newline, [16833] = 1, - ACTIONS(2401), 1, + ACTIONS(2367), 1, sym__newline, [16837] = 1, - ACTIONS(2403), 1, + ACTIONS(2369), 1, sym__newline, [16841] = 1, - ACTIONS(2405), 1, - anon_sym_RBRACK, + ACTIONS(2371), 1, + sym__newline, [16845] = 1, - ACTIONS(2407), 1, + ACTIONS(2373), 1, sym__newline, [16849] = 1, - ACTIONS(2409), 1, - sym__block_close, + ACTIONS(2375), 1, + sym__whitespace1, [16853] = 1, - ACTIONS(2411), 1, - sym__block_close, + ACTIONS(2377), 1, + sym__whitespace, [16857] = 1, - ACTIONS(2413), 1, - sym__block_close, + ACTIONS(2379), 1, + sym__indented_content_spacer, [16861] = 1, - ACTIONS(2415), 1, - sym__whitespace1, + ACTIONS(2381), 1, + sym__block_close, [16865] = 1, - ACTIONS(2417), 1, + ACTIONS(2383), 1, sym__newline, [16869] = 1, - ACTIONS(877), 1, - sym_list_marker_dash, + ACTIONS(2385), 1, + sym__newline, [16873] = 1, - ACTIONS(2419), 1, - sym__whitespace, + ACTIONS(2387), 1, + sym__newline, [16877] = 1, - ACTIONS(2421), 1, + ACTIONS(2389), 1, sym__indented_content_spacer, [16881] = 1, - ACTIONS(2423), 1, - sym__indented_content_spacer, + ACTIONS(2391), 1, + sym__newline, [16885] = 1, - ACTIONS(2425), 1, - sym__indented_content_spacer, + ACTIONS(2393), 1, + sym__list_item_continuation, [16889] = 1, - ACTIONS(2427), 1, - sym__indented_content_spacer, + ACTIONS(2395), 1, + sym__newline, [16893] = 1, - ACTIONS(2429), 1, + ACTIONS(664), 1, sym__indented_content_spacer, [16897] = 1, - ACTIONS(2431), 1, - sym__indented_content_spacer, + ACTIONS(2397), 1, + sym__whitespace1, [16901] = 1, - ACTIONS(2433), 1, - sym__indented_content_spacer, + ACTIONS(2399), 1, + sym__newline, [16905] = 1, - ACTIONS(2435), 1, - sym__indented_content_spacer, + ACTIONS(2401), 1, + sym__newline, [16909] = 1, - ACTIONS(2437), 1, - sym__indented_content_spacer, + ACTIONS(2403), 1, + sym__whitespace1, [16913] = 1, - ACTIONS(2439), 1, - sym__indented_content_spacer, + ACTIONS(2405), 1, + anon_sym_PIPE, [16917] = 1, - ACTIONS(2441), 1, + ACTIONS(2407), 1, sym__indented_content_spacer, [16921] = 1, - ACTIONS(2443), 1, - sym__indented_content_spacer, + ACTIONS(2409), 1, + sym__whitespace1, [16925] = 1, - ACTIONS(2445), 1, - sym__indented_content_spacer, + ACTIONS(2411), 1, + sym__whitespace, [16929] = 1, - ACTIONS(2447), 1, + ACTIONS(2413), 1, sym__indented_content_spacer, [16933] = 1, - ACTIONS(2449), 1, + ACTIONS(2415), 1, sym__indented_content_spacer, [16937] = 1, - ACTIONS(2451), 1, - sym__whitespace, + ACTIONS(2417), 1, + sym__indented_content_spacer, [16941] = 1, - ACTIONS(633), 1, + ACTIONS(2419), 1, sym__indented_content_spacer, [16945] = 1, - ACTIONS(639), 1, + ACTIONS(2421), 1, sym__indented_content_spacer, [16949] = 1, - ACTIONS(2453), 1, - anon_sym_PIPE, + ACTIONS(2423), 1, + sym__indented_content_spacer, [16953] = 1, - ACTIONS(2455), 1, - sym_table_cell_alignment, + ACTIONS(2425), 1, + sym__indented_content_spacer, [16957] = 1, - ACTIONS(2457), 1, - anon_sym_RBRACK_COLON, + ACTIONS(2427), 1, + sym__indented_content_spacer, [16961] = 1, - ACTIONS(2459), 1, - sym_link_destination, + ACTIONS(2429), 1, + sym__indented_content_spacer, [16965] = 1, - ACTIONS(2461), 1, - sym__whitespace, + ACTIONS(2431), 1, + sym__indented_content_spacer, [16969] = 1, - ACTIONS(2463), 1, - sym__newline, + ACTIONS(2433), 1, + sym__indented_content_spacer, [16973] = 1, - ACTIONS(2465), 1, - sym__newline, + ACTIONS(2435), 1, + sym__indented_content_spacer, [16977] = 1, - ACTIONS(2467), 1, - anon_sym_PIPE, + ACTIONS(2437), 1, + sym__indented_content_spacer, [16981] = 1, - ACTIONS(2469), 1, - sym_table_cell_alignment, + ACTIONS(2439), 1, + sym__indented_content_spacer, [16985] = 1, - ACTIONS(2471), 1, - anon_sym_RBRACK_COLON, + ACTIONS(2441), 1, + sym__indented_content_spacer, [16989] = 1, - ACTIONS(2473), 1, - sym_link_destination, - [16993] = 1, - ACTIONS(2475), 1, + ACTIONS(2443), 1, sym__whitespace, + [16993] = 1, + ACTIONS(2445), 1, + sym__list_item_continuation, [16997] = 1, - ACTIONS(2477), 1, - sym__newline, + ACTIONS(2447), 1, + sym_table_cell_alignment, [17001] = 1, - ACTIONS(2479), 1, - anon_sym_PIPE, + ACTIONS(860), 1, + sym__indented_content_spacer, [17005] = 1, - ACTIONS(2481), 1, - anon_sym_PIPE, + ACTIONS(2449), 1, + anon_sym_RBRACK_COLON, [17009] = 1, - ACTIONS(2483), 1, - sym_table_cell_alignment, + ACTIONS(2451), 1, + sym_link_destination, [17013] = 1, - ACTIONS(2485), 1, - anon_sym_RBRACK_COLON, + ACTIONS(2453), 1, + sym__whitespace, [17017] = 1, - ACTIONS(2487), 1, - sym_link_destination, + ACTIONS(776), 1, + sym__indented_content_spacer, [17021] = 1, - ACTIONS(2489), 1, - sym__whitespace, + ACTIONS(2455), 1, + sym_table_cell_alignment, [17025] = 1, - ACTIONS(641), 1, - sym__indented_content_spacer, + ACTIONS(2457), 1, + sym__block_close, [17029] = 1, - ACTIONS(2491), 1, - sym__newline, + ACTIONS(2459), 1, + anon_sym_RBRACK_COLON, [17033] = 1, - ACTIONS(2493), 1, - anon_sym_PIPE, + ACTIONS(2461), 1, + sym_link_destination, [17037] = 1, - ACTIONS(2495), 1, - sym_table_cell_alignment, + ACTIONS(2463), 1, + sym__whitespace, [17041] = 1, - ACTIONS(2497), 1, - anon_sym_RBRACK_COLON, + ACTIONS(714), 1, + sym__indented_content_spacer, [17045] = 1, - ACTIONS(2499), 1, - sym_link_destination, + ACTIONS(2465), 1, + sym_table_cell_alignment, [17049] = 1, - ACTIONS(2501), 1, + ACTIONS(2467), 1, sym__newline, [17053] = 1, - ACTIONS(2503), 1, - anon_sym_PIPE, + ACTIONS(2469), 1, + anon_sym_RBRACK_COLON, [17057] = 1, - ACTIONS(2505), 1, - sym__whitespace, + ACTIONS(2471), 1, + sym_link_destination, [17061] = 1, - ACTIONS(2507), 1, - sym__whitespace1, + ACTIONS(2473), 1, + anon_sym_EQ, [17065] = 1, - ACTIONS(649), 1, + ACTIONS(710), 1, sym__indented_content_spacer, [17069] = 1, - ACTIONS(2509), 1, - anon_sym_PIPE, + ACTIONS(2475), 1, + sym_table_cell_alignment, [17073] = 1, - ACTIONS(2511), 1, - sym_frontmatter_marker, + ACTIONS(2477), 1, + sym__newline, [17077] = 1, - ACTIONS(2513), 1, - sym__whitespace1, + ACTIONS(2479), 1, + anon_sym_RBRACK_COLON, [17081] = 1, - ACTIONS(2515), 1, - sym__block_close, + ACTIONS(2481), 1, + sym_link_destination, [17085] = 1, - ACTIONS(2517), 1, - anon_sym_PIPE, + ACTIONS(2483), 1, + aux_sym_value_token1, [17089] = 1, - ACTIONS(2519), 1, - sym__indented_content_spacer, - [17093] = 1, - ACTIONS(2521), 1, + ACTIONS(2485), 1, sym__whitespace1, + [17093] = 1, + ACTIONS(2487), 1, + sym__block_close, [17097] = 1, - ACTIONS(693), 1, - sym__indented_content_spacer, + ACTIONS(2489), 1, + sym__whitespace1, [17101] = 1, - ACTIONS(2523), 1, - anon_sym_PIPE, + ACTIONS(2491), 1, + sym__block_close, [17105] = 1, - ACTIONS(2525), 1, - sym__whitespace, - [17109] = 1, - ACTIONS(2527), 1, + ACTIONS(2493), 1, sym__whitespace1, + [17109] = 1, + ACTIONS(2495), 1, + sym__newline, [17113] = 1, - ACTIONS(2529), 1, - sym__footnote_mark_begin, + ACTIONS(2497), 1, + sym__whitespace1, [17117] = 1, - ACTIONS(2531), 1, - anon_sym_COLON, - [17121] = 1, - ACTIONS(2533), 1, + ACTIONS(2499), 1, sym__footnote_mark_begin, + [17121] = 1, + ACTIONS(2501), 1, + anon_sym_COLON, [17125] = 1, - ACTIONS(2535), 1, - anon_sym_PIPE, - [17129] = 1, - ACTIONS(2537), 1, + ACTIONS(2503), 1, sym__footnote_mark_begin, - [17133] = 1, - ACTIONS(2539), 1, + [17129] = 1, + ACTIONS(2505), 1, anon_sym_COLON, - [17137] = 1, - ACTIONS(2541), 1, + [17133] = 1, + ACTIONS(2507), 1, sym__footnote_mark_begin, - [17141] = 1, - ACTIONS(2543), 1, + [17137] = 1, + ACTIONS(2509), 1, anon_sym_COLON, + [17141] = 1, + ACTIONS(2511), 1, + sym__footnote_mark_begin, [17145] = 1, - ACTIONS(2545), 1, - anon_sym_RBRACK, + ACTIONS(2513), 1, + anon_sym_COLON, [17149] = 1, - ACTIONS(2547), 1, + ACTIONS(2515), 1, anon_sym_RBRACK, [17153] = 1, - ACTIONS(2549), 1, + ACTIONS(2517), 1, anon_sym_RBRACK, [17157] = 1, - ACTIONS(2551), 1, + ACTIONS(2519), 1, anon_sym_RBRACK, [17161] = 1, - ACTIONS(2553), 1, - sym__newline, + ACTIONS(2521), 1, + anon_sym_RBRACK, [17165] = 1, - ACTIONS(881), 1, - sym_list_marker_plus, + ACTIONS(2523), 1, + anon_sym_RBRACK, [17169] = 1, - ACTIONS(2555), 1, - sym__newline, + ACTIONS(2525), 1, + sym__whitespace, [17173] = 1, - ACTIONS(2557), 1, - sym__block_close, + ACTIONS(694), 1, + sym__indented_content_spacer, [17177] = 1, - ACTIONS(2559), 1, - sym__newline, + ACTIONS(2527), 1, + sym__eof_or_newline, + [17181] = 1, + ACTIONS(2529), 1, + sym__block_close, }; static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(66)] = 0, - [SMALL_STATE(67)] = 70, - [SMALL_STATE(68)] = 140, - [SMALL_STATE(69)] = 203, - [SMALL_STATE(70)] = 266, - [SMALL_STATE(71)] = 324, - [SMALL_STATE(72)] = 382, - [SMALL_STATE(73)] = 432, - [SMALL_STATE(74)] = 482, - [SMALL_STATE(75)] = 529, - [SMALL_STATE(76)] = 576, - [SMALL_STATE(77)] = 621, - [SMALL_STATE(78)] = 666, - [SMALL_STATE(79)] = 713, - [SMALL_STATE(80)] = 760, - [SMALL_STATE(81)] = 807, - [SMALL_STATE(82)] = 854, - [SMALL_STATE(83)] = 901, - [SMALL_STATE(84)] = 946, - [SMALL_STATE(85)] = 991, - [SMALL_STATE(86)] = 1038, - [SMALL_STATE(87)] = 1085, - [SMALL_STATE(88)] = 1132, - [SMALL_STATE(89)] = 1177, - [SMALL_STATE(90)] = 1222, - [SMALL_STATE(91)] = 1269, - [SMALL_STATE(92)] = 1316, - [SMALL_STATE(93)] = 1363, - [SMALL_STATE(94)] = 1410, - [SMALL_STATE(95)] = 1457, - [SMALL_STATE(96)] = 1504, - [SMALL_STATE(97)] = 1549, - [SMALL_STATE(98)] = 1596, - [SMALL_STATE(99)] = 1643, - [SMALL_STATE(100)] = 1690, - [SMALL_STATE(101)] = 1737, - [SMALL_STATE(102)] = 1782, - [SMALL_STATE(103)] = 1827, - [SMALL_STATE(104)] = 1872, - [SMALL_STATE(105)] = 1917, - [SMALL_STATE(106)] = 1964, - [SMALL_STATE(107)] = 2011, - [SMALL_STATE(108)] = 2056, - [SMALL_STATE(109)] = 2101, - [SMALL_STATE(110)] = 2146, - [SMALL_STATE(111)] = 2193, - [SMALL_STATE(112)] = 2237, - [SMALL_STATE(113)] = 2281, - [SMALL_STATE(114)] = 2325, - [SMALL_STATE(115)] = 2369, - [SMALL_STATE(116)] = 2413, - [SMALL_STATE(117)] = 2457, - [SMALL_STATE(118)] = 2501, - [SMALL_STATE(119)] = 2545, - [SMALL_STATE(120)] = 2589, - [SMALL_STATE(121)] = 2633, - [SMALL_STATE(122)] = 2677, - [SMALL_STATE(123)] = 2721, - [SMALL_STATE(124)] = 2765, - [SMALL_STATE(125)] = 2809, - [SMALL_STATE(126)] = 2853, - [SMALL_STATE(127)] = 2897, - [SMALL_STATE(128)] = 2941, - [SMALL_STATE(129)] = 2985, - [SMALL_STATE(130)] = 3029, - [SMALL_STATE(131)] = 3073, - [SMALL_STATE(132)] = 3117, - [SMALL_STATE(133)] = 3161, - [SMALL_STATE(134)] = 3205, - [SMALL_STATE(135)] = 3249, - [SMALL_STATE(136)] = 3293, - [SMALL_STATE(137)] = 3337, - [SMALL_STATE(138)] = 3381, - [SMALL_STATE(139)] = 3425, - [SMALL_STATE(140)] = 3469, - [SMALL_STATE(141)] = 3513, - [SMALL_STATE(142)] = 3557, - [SMALL_STATE(143)] = 3601, - [SMALL_STATE(144)] = 3645, - [SMALL_STATE(145)] = 3689, - [SMALL_STATE(146)] = 3733, - [SMALL_STATE(147)] = 3777, - [SMALL_STATE(148)] = 3821, - [SMALL_STATE(149)] = 3865, - [SMALL_STATE(150)] = 3909, - [SMALL_STATE(151)] = 3953, - [SMALL_STATE(152)] = 3997, - [SMALL_STATE(153)] = 4041, - [SMALL_STATE(154)] = 4085, - [SMALL_STATE(155)] = 4129, - [SMALL_STATE(156)] = 4173, - [SMALL_STATE(157)] = 4217, - [SMALL_STATE(158)] = 4261, - [SMALL_STATE(159)] = 4305, - [SMALL_STATE(160)] = 4349, - [SMALL_STATE(161)] = 4393, - [SMALL_STATE(162)] = 4437, - [SMALL_STATE(163)] = 4481, - [SMALL_STATE(164)] = 4525, - [SMALL_STATE(165)] = 4569, - [SMALL_STATE(166)] = 4613, - [SMALL_STATE(167)] = 4657, - [SMALL_STATE(168)] = 4701, - [SMALL_STATE(169)] = 4745, - [SMALL_STATE(170)] = 4789, - [SMALL_STATE(171)] = 4833, - [SMALL_STATE(172)] = 4877, - [SMALL_STATE(173)] = 4921, - [SMALL_STATE(174)] = 4965, - [SMALL_STATE(175)] = 5009, - [SMALL_STATE(176)] = 5053, - [SMALL_STATE(177)] = 5097, - [SMALL_STATE(178)] = 5141, - [SMALL_STATE(179)] = 5185, - [SMALL_STATE(180)] = 5229, - [SMALL_STATE(181)] = 5273, - [SMALL_STATE(182)] = 5317, - [SMALL_STATE(183)] = 5361, - [SMALL_STATE(184)] = 5405, - [SMALL_STATE(185)] = 5449, - [SMALL_STATE(186)] = 5493, - [SMALL_STATE(187)] = 5537, - [SMALL_STATE(188)] = 5581, - [SMALL_STATE(189)] = 5625, - [SMALL_STATE(190)] = 5669, - [SMALL_STATE(191)] = 5713, - [SMALL_STATE(192)] = 5757, - [SMALL_STATE(193)] = 5801, - [SMALL_STATE(194)] = 5845, - [SMALL_STATE(195)] = 5889, - [SMALL_STATE(196)] = 5933, - [SMALL_STATE(197)] = 5977, - [SMALL_STATE(198)] = 6021, - [SMALL_STATE(199)] = 6065, - [SMALL_STATE(200)] = 6109, - [SMALL_STATE(201)] = 6153, - [SMALL_STATE(202)] = 6197, - [SMALL_STATE(203)] = 6241, - [SMALL_STATE(204)] = 6285, - [SMALL_STATE(205)] = 6329, - [SMALL_STATE(206)] = 6373, - [SMALL_STATE(207)] = 6417, - [SMALL_STATE(208)] = 6461, - [SMALL_STATE(209)] = 6505, - [SMALL_STATE(210)] = 6549, - [SMALL_STATE(211)] = 6592, - [SMALL_STATE(212)] = 6639, - [SMALL_STATE(213)] = 6681, - [SMALL_STATE(214)] = 6727, - [SMALL_STATE(215)] = 6773, - [SMALL_STATE(216)] = 6819, - [SMALL_STATE(217)] = 6865, - [SMALL_STATE(218)] = 6911, - [SMALL_STATE(219)] = 6953, - [SMALL_STATE(220)] = 6995, - [SMALL_STATE(221)] = 7037, - [SMALL_STATE(222)] = 7079, - [SMALL_STATE(223)] = 7121, - [SMALL_STATE(224)] = 7163, - [SMALL_STATE(225)] = 7205, - [SMALL_STATE(226)] = 7247, - [SMALL_STATE(227)] = 7289, - [SMALL_STATE(228)] = 7331, - [SMALL_STATE(229)] = 7368, - [SMALL_STATE(230)] = 7407, - [SMALL_STATE(231)] = 7446, - [SMALL_STATE(232)] = 7485, - [SMALL_STATE(233)] = 7524, - [SMALL_STATE(234)] = 7563, - [SMALL_STATE(235)] = 7597, - [SMALL_STATE(236)] = 7631, - [SMALL_STATE(237)] = 7665, - [SMALL_STATE(238)] = 7699, - [SMALL_STATE(239)] = 7725, - [SMALL_STATE(240)] = 7757, - [SMALL_STATE(241)] = 7783, - [SMALL_STATE(242)] = 7817, - [SMALL_STATE(243)] = 7851, - [SMALL_STATE(244)] = 7883, - [SMALL_STATE(245)] = 7915, - [SMALL_STATE(246)] = 7947, - [SMALL_STATE(247)] = 7979, - [SMALL_STATE(248)] = 8011, - [SMALL_STATE(249)] = 8043, - [SMALL_STATE(250)] = 8075, - [SMALL_STATE(251)] = 8107, - [SMALL_STATE(252)] = 8139, - [SMALL_STATE(253)] = 8168, - [SMALL_STATE(254)] = 8193, - [SMALL_STATE(255)] = 8218, - [SMALL_STATE(256)] = 8239, - [SMALL_STATE(257)] = 8268, - [SMALL_STATE(258)] = 8299, - [SMALL_STATE(259)] = 8328, - [SMALL_STATE(260)] = 8357, - [SMALL_STATE(261)] = 8386, - [SMALL_STATE(262)] = 8414, - [SMALL_STATE(263)] = 8442, - [SMALL_STATE(264)] = 8470, - [SMALL_STATE(265)] = 8498, - [SMALL_STATE(266)] = 8518, - [SMALL_STATE(267)] = 8546, - [SMALL_STATE(268)] = 8574, - [SMALL_STATE(269)] = 8602, - [SMALL_STATE(270)] = 8630, - [SMALL_STATE(271)] = 8658, - [SMALL_STATE(272)] = 8686, - [SMALL_STATE(273)] = 8714, - [SMALL_STATE(274)] = 8742, - [SMALL_STATE(275)] = 8770, - [SMALL_STATE(276)] = 8798, - [SMALL_STATE(277)] = 8826, - [SMALL_STATE(278)] = 8854, - [SMALL_STATE(279)] = 8882, - [SMALL_STATE(280)] = 8910, - [SMALL_STATE(281)] = 8938, - [SMALL_STATE(282)] = 8966, - [SMALL_STATE(283)] = 8994, - [SMALL_STATE(284)] = 9022, - [SMALL_STATE(285)] = 9050, - [SMALL_STATE(286)] = 9078, - [SMALL_STATE(287)] = 9106, - [SMALL_STATE(288)] = 9134, - [SMALL_STATE(289)] = 9162, - [SMALL_STATE(290)] = 9190, - [SMALL_STATE(291)] = 9218, - [SMALL_STATE(292)] = 9246, - [SMALL_STATE(293)] = 9274, - [SMALL_STATE(294)] = 9302, - [SMALL_STATE(295)] = 9330, - [SMALL_STATE(296)] = 9358, - [SMALL_STATE(297)] = 9383, - [SMALL_STATE(298)] = 9406, - [SMALL_STATE(299)] = 9429, - [SMALL_STATE(300)] = 9454, - [SMALL_STATE(301)] = 9476, - [SMALL_STATE(302)] = 9510, - [SMALL_STATE(303)] = 9532, - [SMALL_STATE(304)] = 9554, - [SMALL_STATE(305)] = 9576, - [SMALL_STATE(306)] = 9598, - [SMALL_STATE(307)] = 9620, - [SMALL_STATE(308)] = 9641, - [SMALL_STATE(309)] = 9674, - [SMALL_STATE(310)] = 9707, - [SMALL_STATE(311)] = 9740, - [SMALL_STATE(312)] = 9773, - [SMALL_STATE(313)] = 9800, - [SMALL_STATE(314)] = 9817, - [SMALL_STATE(315)] = 9834, - [SMALL_STATE(316)] = 9867, - [SMALL_STATE(317)] = 9900, - [SMALL_STATE(318)] = 9919, - [SMALL_STATE(319)] = 9936, - [SMALL_STATE(320)] = 9969, - [SMALL_STATE(321)] = 10002, - [SMALL_STATE(322)] = 10021, - [SMALL_STATE(323)] = 10040, - [SMALL_STATE(324)] = 10066, - [SMALL_STATE(325)] = 10082, - [SMALL_STATE(326)] = 10108, - [SMALL_STATE(327)] = 10124, - [SMALL_STATE(328)] = 10138, - [SMALL_STATE(329)] = 10151, - [SMALL_STATE(330)] = 10173, - [SMALL_STATE(331)] = 10196, - [SMALL_STATE(332)] = 10217, - [SMALL_STATE(333)] = 10240, - [SMALL_STATE(334)] = 10263, - [SMALL_STATE(335)] = 10286, - [SMALL_STATE(336)] = 10311, - [SMALL_STATE(337)] = 10334, - [SMALL_STATE(338)] = 10357, - [SMALL_STATE(339)] = 10382, - [SMALL_STATE(340)] = 10405, - [SMALL_STATE(341)] = 10430, - [SMALL_STATE(342)] = 10453, - [SMALL_STATE(343)] = 10476, - [SMALL_STATE(344)] = 10499, - [SMALL_STATE(345)] = 10524, - [SMALL_STATE(346)] = 10547, - [SMALL_STATE(347)] = 10572, - [SMALL_STATE(348)] = 10593, - [SMALL_STATE(349)] = 10616, - [SMALL_STATE(350)] = 10639, - [SMALL_STATE(351)] = 10662, - [SMALL_STATE(352)] = 10687, - [SMALL_STATE(353)] = 10710, - [SMALL_STATE(354)] = 10732, - [SMALL_STATE(355)] = 10754, - [SMALL_STATE(356)] = 10776, - [SMALL_STATE(357)] = 10798, - [SMALL_STATE(358)] = 10820, - [SMALL_STATE(359)] = 10842, - [SMALL_STATE(360)] = 10864, - [SMALL_STATE(361)] = 10886, - [SMALL_STATE(362)] = 10908, - [SMALL_STATE(363)] = 10930, - [SMALL_STATE(364)] = 10952, - [SMALL_STATE(365)] = 10974, - [SMALL_STATE(366)] = 10996, - [SMALL_STATE(367)] = 11016, - [SMALL_STATE(368)] = 11038, - [SMALL_STATE(369)] = 11060, - [SMALL_STATE(370)] = 11080, - [SMALL_STATE(371)] = 11102, - [SMALL_STATE(372)] = 11124, - [SMALL_STATE(373)] = 11146, - [SMALL_STATE(374)] = 11155, - [SMALL_STATE(375)] = 11164, - [SMALL_STATE(376)] = 11183, - [SMALL_STATE(377)] = 11192, - [SMALL_STATE(378)] = 11201, - [SMALL_STATE(379)] = 11210, - [SMALL_STATE(380)] = 11229, - [SMALL_STATE(381)] = 11248, - [SMALL_STATE(382)] = 11267, - [SMALL_STATE(383)] = 11286, - [SMALL_STATE(384)] = 11295, - [SMALL_STATE(385)] = 11314, - [SMALL_STATE(386)] = 11333, - [SMALL_STATE(387)] = 11352, - [SMALL_STATE(388)] = 11371, - [SMALL_STATE(389)] = 11390, - [SMALL_STATE(390)] = 11409, - [SMALL_STATE(391)] = 11428, - [SMALL_STATE(392)] = 11447, - [SMALL_STATE(393)] = 11466, - [SMALL_STATE(394)] = 11485, - [SMALL_STATE(395)] = 11504, - [SMALL_STATE(396)] = 11523, - [SMALL_STATE(397)] = 11542, - [SMALL_STATE(398)] = 11561, - [SMALL_STATE(399)] = 11580, - [SMALL_STATE(400)] = 11599, - [SMALL_STATE(401)] = 11618, - [SMALL_STATE(402)] = 11637, - [SMALL_STATE(403)] = 11656, - [SMALL_STATE(404)] = 11675, - [SMALL_STATE(405)] = 11694, - [SMALL_STATE(406)] = 11713, - [SMALL_STATE(407)] = 11732, - [SMALL_STATE(408)] = 11751, - [SMALL_STATE(409)] = 11770, - [SMALL_STATE(410)] = 11789, - [SMALL_STATE(411)] = 11808, - [SMALL_STATE(412)] = 11827, - [SMALL_STATE(413)] = 11846, - [SMALL_STATE(414)] = 11865, - [SMALL_STATE(415)] = 11884, - [SMALL_STATE(416)] = 11903, - [SMALL_STATE(417)] = 11922, - [SMALL_STATE(418)] = 11931, - [SMALL_STATE(419)] = 11940, - [SMALL_STATE(420)] = 11959, - [SMALL_STATE(421)] = 11978, - [SMALL_STATE(422)] = 11997, - [SMALL_STATE(423)] = 12006, - [SMALL_STATE(424)] = 12015, - [SMALL_STATE(425)] = 12034, - [SMALL_STATE(426)] = 12043, - [SMALL_STATE(427)] = 12052, - [SMALL_STATE(428)] = 12061, - [SMALL_STATE(429)] = 12080, - [SMALL_STATE(430)] = 12089, - [SMALL_STATE(431)] = 12108, - [SMALL_STATE(432)] = 12127, - [SMALL_STATE(433)] = 12146, - [SMALL_STATE(434)] = 12165, - [SMALL_STATE(435)] = 12184, - [SMALL_STATE(436)] = 12203, - [SMALL_STATE(437)] = 12212, - [SMALL_STATE(438)] = 12231, - [SMALL_STATE(439)] = 12240, - [SMALL_STATE(440)] = 12259, - [SMALL_STATE(441)] = 12278, - [SMALL_STATE(442)] = 12297, - [SMALL_STATE(443)] = 12306, - [SMALL_STATE(444)] = 12314, - [SMALL_STATE(445)] = 12322, - [SMALL_STATE(446)] = 12330, - [SMALL_STATE(447)] = 12338, - [SMALL_STATE(448)] = 12346, - [SMALL_STATE(449)] = 12360, - [SMALL_STATE(450)] = 12374, - [SMALL_STATE(451)] = 12382, - [SMALL_STATE(452)] = 12396, - [SMALL_STATE(453)] = 12404, - [SMALL_STATE(454)] = 12412, - [SMALL_STATE(455)] = 12420, - [SMALL_STATE(456)] = 12428, - [SMALL_STATE(457)] = 12440, - [SMALL_STATE(458)] = 12448, - [SMALL_STATE(459)] = 12456, - [SMALL_STATE(460)] = 12464, - [SMALL_STATE(461)] = 12472, - [SMALL_STATE(462)] = 12485, - [SMALL_STATE(463)] = 12498, - [SMALL_STATE(464)] = 12509, - [SMALL_STATE(465)] = 12522, - [SMALL_STATE(466)] = 12533, - [SMALL_STATE(467)] = 12544, - [SMALL_STATE(468)] = 12553, - [SMALL_STATE(469)] = 12564, - [SMALL_STATE(470)] = 12575, - [SMALL_STATE(471)] = 12584, - [SMALL_STATE(472)] = 12593, - [SMALL_STATE(473)] = 12602, - [SMALL_STATE(474)] = 12611, - [SMALL_STATE(475)] = 12620, - [SMALL_STATE(476)] = 12629, - [SMALL_STATE(477)] = 12638, - [SMALL_STATE(478)] = 12647, - [SMALL_STATE(479)] = 12656, - [SMALL_STATE(480)] = 12665, - [SMALL_STATE(481)] = 12674, - [SMALL_STATE(482)] = 12685, - [SMALL_STATE(483)] = 12696, - [SMALL_STATE(484)] = 12709, - [SMALL_STATE(485)] = 12722, - [SMALL_STATE(486)] = 12735, - [SMALL_STATE(487)] = 12748, - [SMALL_STATE(488)] = 12761, - [SMALL_STATE(489)] = 12774, - [SMALL_STATE(490)] = 12787, - [SMALL_STATE(491)] = 12800, - [SMALL_STATE(492)] = 12813, - [SMALL_STATE(493)] = 12826, - [SMALL_STATE(494)] = 12839, - [SMALL_STATE(495)] = 12852, - [SMALL_STATE(496)] = 12865, - [SMALL_STATE(497)] = 12878, - [SMALL_STATE(498)] = 12891, - [SMALL_STATE(499)] = 12902, - [SMALL_STATE(500)] = 12915, - [SMALL_STATE(501)] = 12928, - [SMALL_STATE(502)] = 12941, - [SMALL_STATE(503)] = 12954, - [SMALL_STATE(504)] = 12967, - [SMALL_STATE(505)] = 12980, - [SMALL_STATE(506)] = 12993, - [SMALL_STATE(507)] = 13006, - [SMALL_STATE(508)] = 13019, - [SMALL_STATE(509)] = 13032, - [SMALL_STATE(510)] = 13045, - [SMALL_STATE(511)] = 13058, - [SMALL_STATE(512)] = 13071, - [SMALL_STATE(513)] = 13084, - [SMALL_STATE(514)] = 13097, - [SMALL_STATE(515)] = 13110, - [SMALL_STATE(516)] = 13123, - [SMALL_STATE(517)] = 13136, - [SMALL_STATE(518)] = 13149, - [SMALL_STATE(519)] = 13162, - [SMALL_STATE(520)] = 13175, - [SMALL_STATE(521)] = 13188, - [SMALL_STATE(522)] = 13201, - [SMALL_STATE(523)] = 13214, - [SMALL_STATE(524)] = 13227, - [SMALL_STATE(525)] = 13240, - [SMALL_STATE(526)] = 13253, - [SMALL_STATE(527)] = 13266, - [SMALL_STATE(528)] = 13279, - [SMALL_STATE(529)] = 13292, - [SMALL_STATE(530)] = 13305, - [SMALL_STATE(531)] = 13318, - [SMALL_STATE(532)] = 13331, - [SMALL_STATE(533)] = 13344, - [SMALL_STATE(534)] = 13357, - [SMALL_STATE(535)] = 13370, - [SMALL_STATE(536)] = 13383, - [SMALL_STATE(537)] = 13396, - [SMALL_STATE(538)] = 13409, - [SMALL_STATE(539)] = 13422, - [SMALL_STATE(540)] = 13435, - [SMALL_STATE(541)] = 13448, - [SMALL_STATE(542)] = 13461, - [SMALL_STATE(543)] = 13474, - [SMALL_STATE(544)] = 13487, - [SMALL_STATE(545)] = 13500, - [SMALL_STATE(546)] = 13513, - [SMALL_STATE(547)] = 13526, - [SMALL_STATE(548)] = 13539, - [SMALL_STATE(549)] = 13552, - [SMALL_STATE(550)] = 13565, - [SMALL_STATE(551)] = 13578, - [SMALL_STATE(552)] = 13591, - [SMALL_STATE(553)] = 13604, - [SMALL_STATE(554)] = 13617, - [SMALL_STATE(555)] = 13630, - [SMALL_STATE(556)] = 13643, - [SMALL_STATE(557)] = 13656, - [SMALL_STATE(558)] = 13669, - [SMALL_STATE(559)] = 13682, - [SMALL_STATE(560)] = 13695, - [SMALL_STATE(561)] = 13708, - [SMALL_STATE(562)] = 13721, - [SMALL_STATE(563)] = 13734, - [SMALL_STATE(564)] = 13747, - [SMALL_STATE(565)] = 13760, - [SMALL_STATE(566)] = 13773, - [SMALL_STATE(567)] = 13786, - [SMALL_STATE(568)] = 13799, - [SMALL_STATE(569)] = 13812, - [SMALL_STATE(570)] = 13825, - [SMALL_STATE(571)] = 13838, - [SMALL_STATE(572)] = 13851, - [SMALL_STATE(573)] = 13864, - [SMALL_STATE(574)] = 13877, - [SMALL_STATE(575)] = 13890, - [SMALL_STATE(576)] = 13903, - [SMALL_STATE(577)] = 13916, - [SMALL_STATE(578)] = 13929, - [SMALL_STATE(579)] = 13942, - [SMALL_STATE(580)] = 13955, - [SMALL_STATE(581)] = 13968, - [SMALL_STATE(582)] = 13981, - [SMALL_STATE(583)] = 13987, - [SMALL_STATE(584)] = 13997, - [SMALL_STATE(585)] = 14007, - [SMALL_STATE(586)] = 14013, - [SMALL_STATE(587)] = 14023, - [SMALL_STATE(588)] = 14029, - [SMALL_STATE(589)] = 14039, - [SMALL_STATE(590)] = 14045, - [SMALL_STATE(591)] = 14051, - [SMALL_STATE(592)] = 14057, - [SMALL_STATE(593)] = 14063, - [SMALL_STATE(594)] = 14069, - [SMALL_STATE(595)] = 14075, - [SMALL_STATE(596)] = 14081, - [SMALL_STATE(597)] = 14091, - [SMALL_STATE(598)] = 14101, - [SMALL_STATE(599)] = 14111, - [SMALL_STATE(600)] = 14119, - [SMALL_STATE(601)] = 14129, - [SMALL_STATE(602)] = 14135, - [SMALL_STATE(603)] = 14141, - [SMALL_STATE(604)] = 14147, - [SMALL_STATE(605)] = 14157, - [SMALL_STATE(606)] = 14163, - [SMALL_STATE(607)] = 14169, - [SMALL_STATE(608)] = 14175, - [SMALL_STATE(609)] = 14181, - [SMALL_STATE(610)] = 14187, - [SMALL_STATE(611)] = 14193, - [SMALL_STATE(612)] = 14199, - [SMALL_STATE(613)] = 14205, - [SMALL_STATE(614)] = 14211, - [SMALL_STATE(615)] = 14221, - [SMALL_STATE(616)] = 14231, - [SMALL_STATE(617)] = 14241, - [SMALL_STATE(618)] = 14247, - [SMALL_STATE(619)] = 14253, - [SMALL_STATE(620)] = 14259, - [SMALL_STATE(621)] = 14265, - [SMALL_STATE(622)] = 14271, - [SMALL_STATE(623)] = 14277, - [SMALL_STATE(624)] = 14283, - [SMALL_STATE(625)] = 14289, - [SMALL_STATE(626)] = 14295, - [SMALL_STATE(627)] = 14301, - [SMALL_STATE(628)] = 14307, - [SMALL_STATE(629)] = 14313, - [SMALL_STATE(630)] = 14319, - [SMALL_STATE(631)] = 14325, - [SMALL_STATE(632)] = 14331, - [SMALL_STATE(633)] = 14341, - [SMALL_STATE(634)] = 14349, - [SMALL_STATE(635)] = 14355, - [SMALL_STATE(636)] = 14361, - [SMALL_STATE(637)] = 14367, - [SMALL_STATE(638)] = 14373, - [SMALL_STATE(639)] = 14379, - [SMALL_STATE(640)] = 14385, - [SMALL_STATE(641)] = 14391, - [SMALL_STATE(642)] = 14401, - [SMALL_STATE(643)] = 14407, - [SMALL_STATE(644)] = 14413, - [SMALL_STATE(645)] = 14421, - [SMALL_STATE(646)] = 14427, - [SMALL_STATE(647)] = 14433, - [SMALL_STATE(648)] = 14441, - [SMALL_STATE(649)] = 14449, - [SMALL_STATE(650)] = 14457, - [SMALL_STATE(651)] = 14463, - [SMALL_STATE(652)] = 14471, - [SMALL_STATE(653)] = 14477, - [SMALL_STATE(654)] = 14485, - [SMALL_STATE(655)] = 14491, - [SMALL_STATE(656)] = 14497, - [SMALL_STATE(657)] = 14503, - [SMALL_STATE(658)] = 14509, - [SMALL_STATE(659)] = 14515, - [SMALL_STATE(660)] = 14521, - [SMALL_STATE(661)] = 14527, - [SMALL_STATE(662)] = 14533, - [SMALL_STATE(663)] = 14539, - [SMALL_STATE(664)] = 14545, - [SMALL_STATE(665)] = 14551, - [SMALL_STATE(666)] = 14559, - [SMALL_STATE(667)] = 14565, - [SMALL_STATE(668)] = 14571, - [SMALL_STATE(669)] = 14577, - [SMALL_STATE(670)] = 14583, - [SMALL_STATE(671)] = 14593, - [SMALL_STATE(672)] = 14599, - [SMALL_STATE(673)] = 14605, - [SMALL_STATE(674)] = 14611, - [SMALL_STATE(675)] = 14621, - [SMALL_STATE(676)] = 14631, - [SMALL_STATE(677)] = 14641, - [SMALL_STATE(678)] = 14649, - [SMALL_STATE(679)] = 14657, - [SMALL_STATE(680)] = 14667, - [SMALL_STATE(681)] = 14677, - [SMALL_STATE(682)] = 14687, - [SMALL_STATE(683)] = 14697, - [SMALL_STATE(684)] = 14707, - [SMALL_STATE(685)] = 14717, - [SMALL_STATE(686)] = 14723, - [SMALL_STATE(687)] = 14729, - [SMALL_STATE(688)] = 14739, - [SMALL_STATE(689)] = 14747, - [SMALL_STATE(690)] = 14753, - [SMALL_STATE(691)] = 14763, - [SMALL_STATE(692)] = 14769, - [SMALL_STATE(693)] = 14775, - [SMALL_STATE(694)] = 14781, - [SMALL_STATE(695)] = 14789, - [SMALL_STATE(696)] = 14795, - [SMALL_STATE(697)] = 14803, - [SMALL_STATE(698)] = 14810, - [SMALL_STATE(699)] = 14815, - [SMALL_STATE(700)] = 14820, - [SMALL_STATE(701)] = 14825, - [SMALL_STATE(702)] = 14830, - [SMALL_STATE(703)] = 14835, - [SMALL_STATE(704)] = 14840, - [SMALL_STATE(705)] = 14845, - [SMALL_STATE(706)] = 14850, - [SMALL_STATE(707)] = 14855, - [SMALL_STATE(708)] = 14860, - [SMALL_STATE(709)] = 14865, - [SMALL_STATE(710)] = 14870, - [SMALL_STATE(711)] = 14875, - [SMALL_STATE(712)] = 14882, - [SMALL_STATE(713)] = 14887, - [SMALL_STATE(714)] = 14892, - [SMALL_STATE(715)] = 14897, - [SMALL_STATE(716)] = 14902, - [SMALL_STATE(717)] = 14907, - [SMALL_STATE(718)] = 14914, - [SMALL_STATE(719)] = 14921, - [SMALL_STATE(720)] = 14928, - [SMALL_STATE(721)] = 14935, - [SMALL_STATE(722)] = 14940, - [SMALL_STATE(723)] = 14945, - [SMALL_STATE(724)] = 14950, - [SMALL_STATE(725)] = 14955, - [SMALL_STATE(726)] = 14960, - [SMALL_STATE(727)] = 14965, - [SMALL_STATE(728)] = 14972, - [SMALL_STATE(729)] = 14979, - [SMALL_STATE(730)] = 14984, - [SMALL_STATE(731)] = 14991, - [SMALL_STATE(732)] = 14996, - [SMALL_STATE(733)] = 15001, - [SMALL_STATE(734)] = 15006, - [SMALL_STATE(735)] = 15011, - [SMALL_STATE(736)] = 15018, - [SMALL_STATE(737)] = 15023, - [SMALL_STATE(738)] = 15028, - [SMALL_STATE(739)] = 15035, - [SMALL_STATE(740)] = 15042, - [SMALL_STATE(741)] = 15049, - [SMALL_STATE(742)] = 15054, - [SMALL_STATE(743)] = 15059, - [SMALL_STATE(744)] = 15064, - [SMALL_STATE(745)] = 15069, - [SMALL_STATE(746)] = 15074, - [SMALL_STATE(747)] = 15079, - [SMALL_STATE(748)] = 15084, - [SMALL_STATE(749)] = 15089, - [SMALL_STATE(750)] = 15094, - [SMALL_STATE(751)] = 15099, - [SMALL_STATE(752)] = 15104, - [SMALL_STATE(753)] = 15109, - [SMALL_STATE(754)] = 15114, - [SMALL_STATE(755)] = 15119, - [SMALL_STATE(756)] = 15124, - [SMALL_STATE(757)] = 15129, - [SMALL_STATE(758)] = 15134, - [SMALL_STATE(759)] = 15139, - [SMALL_STATE(760)] = 15144, - [SMALL_STATE(761)] = 15149, - [SMALL_STATE(762)] = 15154, - [SMALL_STATE(763)] = 15159, - [SMALL_STATE(764)] = 15164, - [SMALL_STATE(765)] = 15171, - [SMALL_STATE(766)] = 15176, - [SMALL_STATE(767)] = 15181, - [SMALL_STATE(768)] = 15188, - [SMALL_STATE(769)] = 15193, - [SMALL_STATE(770)] = 15198, - [SMALL_STATE(771)] = 15205, - [SMALL_STATE(772)] = 15212, - [SMALL_STATE(773)] = 15217, - [SMALL_STATE(774)] = 15222, - [SMALL_STATE(775)] = 15229, - [SMALL_STATE(776)] = 15234, - [SMALL_STATE(777)] = 15239, - [SMALL_STATE(778)] = 15246, - [SMALL_STATE(779)] = 15251, - [SMALL_STATE(780)] = 15256, - [SMALL_STATE(781)] = 15261, - [SMALL_STATE(782)] = 15266, - [SMALL_STATE(783)] = 15271, - [SMALL_STATE(784)] = 15276, - [SMALL_STATE(785)] = 15281, - [SMALL_STATE(786)] = 15286, - [SMALL_STATE(787)] = 15293, - [SMALL_STATE(788)] = 15300, - [SMALL_STATE(789)] = 15305, - [SMALL_STATE(790)] = 15310, - [SMALL_STATE(791)] = 15315, - [SMALL_STATE(792)] = 15320, - [SMALL_STATE(793)] = 15325, - [SMALL_STATE(794)] = 15330, - [SMALL_STATE(795)] = 15337, - [SMALL_STATE(796)] = 15342, - [SMALL_STATE(797)] = 15347, - [SMALL_STATE(798)] = 15352, - [SMALL_STATE(799)] = 15359, - [SMALL_STATE(800)] = 15366, - [SMALL_STATE(801)] = 15373, - [SMALL_STATE(802)] = 15378, - [SMALL_STATE(803)] = 15385, - [SMALL_STATE(804)] = 15390, - [SMALL_STATE(805)] = 15397, - [SMALL_STATE(806)] = 15404, - [SMALL_STATE(807)] = 15411, - [SMALL_STATE(808)] = 15416, - [SMALL_STATE(809)] = 15423, - [SMALL_STATE(810)] = 15428, - [SMALL_STATE(811)] = 15433, - [SMALL_STATE(812)] = 15438, - [SMALL_STATE(813)] = 15443, - [SMALL_STATE(814)] = 15448, - [SMALL_STATE(815)] = 15455, - [SMALL_STATE(816)] = 15460, - [SMALL_STATE(817)] = 15465, - [SMALL_STATE(818)] = 15472, - [SMALL_STATE(819)] = 15477, - [SMALL_STATE(820)] = 15482, - [SMALL_STATE(821)] = 15487, - [SMALL_STATE(822)] = 15492, - [SMALL_STATE(823)] = 15497, - [SMALL_STATE(824)] = 15502, - [SMALL_STATE(825)] = 15507, - [SMALL_STATE(826)] = 15512, - [SMALL_STATE(827)] = 15519, - [SMALL_STATE(828)] = 15524, - [SMALL_STATE(829)] = 15531, - [SMALL_STATE(830)] = 15536, - [SMALL_STATE(831)] = 15541, - [SMALL_STATE(832)] = 15546, - [SMALL_STATE(833)] = 15551, - [SMALL_STATE(834)] = 15558, - [SMALL_STATE(835)] = 15563, - [SMALL_STATE(836)] = 15570, - [SMALL_STATE(837)] = 15577, - [SMALL_STATE(838)] = 15584, - [SMALL_STATE(839)] = 15589, - [SMALL_STATE(840)] = 15596, - [SMALL_STATE(841)] = 15601, - [SMALL_STATE(842)] = 15606, - [SMALL_STATE(843)] = 15611, - [SMALL_STATE(844)] = 15616, - [SMALL_STATE(845)] = 15621, - [SMALL_STATE(846)] = 15626, - [SMALL_STATE(847)] = 15631, - [SMALL_STATE(848)] = 15636, - [SMALL_STATE(849)] = 15641, - [SMALL_STATE(850)] = 15646, - [SMALL_STATE(851)] = 15651, - [SMALL_STATE(852)] = 15656, - [SMALL_STATE(853)] = 15661, - [SMALL_STATE(854)] = 15666, - [SMALL_STATE(855)] = 15671, - [SMALL_STATE(856)] = 15676, - [SMALL_STATE(857)] = 15681, - [SMALL_STATE(858)] = 15686, - [SMALL_STATE(859)] = 15691, - [SMALL_STATE(860)] = 15698, - [SMALL_STATE(861)] = 15705, - [SMALL_STATE(862)] = 15712, - [SMALL_STATE(863)] = 15719, - [SMALL_STATE(864)] = 15726, - [SMALL_STATE(865)] = 15733, - [SMALL_STATE(866)] = 15740, - [SMALL_STATE(867)] = 15747, - [SMALL_STATE(868)] = 15754, - [SMALL_STATE(869)] = 15761, - [SMALL_STATE(870)] = 15768, - [SMALL_STATE(871)] = 15775, - [SMALL_STATE(872)] = 15782, - [SMALL_STATE(873)] = 15789, - [SMALL_STATE(874)] = 15796, - [SMALL_STATE(875)] = 15803, - [SMALL_STATE(876)] = 15810, - [SMALL_STATE(877)] = 15815, - [SMALL_STATE(878)] = 15820, - [SMALL_STATE(879)] = 15825, - [SMALL_STATE(880)] = 15832, - [SMALL_STATE(881)] = 15839, - [SMALL_STATE(882)] = 15844, - [SMALL_STATE(883)] = 15849, - [SMALL_STATE(884)] = 15856, - [SMALL_STATE(885)] = 15863, - [SMALL_STATE(886)] = 15870, - [SMALL_STATE(887)] = 15877, - [SMALL_STATE(888)] = 15884, - [SMALL_STATE(889)] = 15889, - [SMALL_STATE(890)] = 15896, - [SMALL_STATE(891)] = 15903, - [SMALL_STATE(892)] = 15910, - [SMALL_STATE(893)] = 15915, - [SMALL_STATE(894)] = 15920, - [SMALL_STATE(895)] = 15927, - [SMALL_STATE(896)] = 15934, - [SMALL_STATE(897)] = 15939, - [SMALL_STATE(898)] = 15946, - [SMALL_STATE(899)] = 15953, - [SMALL_STATE(900)] = 15960, - [SMALL_STATE(901)] = 15967, - [SMALL_STATE(902)] = 15974, - [SMALL_STATE(903)] = 15981, - [SMALL_STATE(904)] = 15988, - [SMALL_STATE(905)] = 15995, - [SMALL_STATE(906)] = 16000, - [SMALL_STATE(907)] = 16007, - [SMALL_STATE(908)] = 16012, - [SMALL_STATE(909)] = 16019, - [SMALL_STATE(910)] = 16026, - [SMALL_STATE(911)] = 16033, - [SMALL_STATE(912)] = 16040, - [SMALL_STATE(913)] = 16045, - [SMALL_STATE(914)] = 16052, - [SMALL_STATE(915)] = 16059, - [SMALL_STATE(916)] = 16066, - [SMALL_STATE(917)] = 16073, - [SMALL_STATE(918)] = 16080, - [SMALL_STATE(919)] = 16085, - [SMALL_STATE(920)] = 16089, - [SMALL_STATE(921)] = 16093, - [SMALL_STATE(922)] = 16097, - [SMALL_STATE(923)] = 16101, - [SMALL_STATE(924)] = 16105, - [SMALL_STATE(925)] = 16109, - [SMALL_STATE(926)] = 16113, - [SMALL_STATE(927)] = 16117, - [SMALL_STATE(928)] = 16121, - [SMALL_STATE(929)] = 16125, - [SMALL_STATE(930)] = 16129, - [SMALL_STATE(931)] = 16133, - [SMALL_STATE(932)] = 16137, - [SMALL_STATE(933)] = 16141, - [SMALL_STATE(934)] = 16145, - [SMALL_STATE(935)] = 16149, - [SMALL_STATE(936)] = 16153, - [SMALL_STATE(937)] = 16157, - [SMALL_STATE(938)] = 16161, - [SMALL_STATE(939)] = 16165, - [SMALL_STATE(940)] = 16169, - [SMALL_STATE(941)] = 16173, - [SMALL_STATE(942)] = 16177, - [SMALL_STATE(943)] = 16181, - [SMALL_STATE(944)] = 16185, - [SMALL_STATE(945)] = 16189, - [SMALL_STATE(946)] = 16193, - [SMALL_STATE(947)] = 16197, - [SMALL_STATE(948)] = 16201, - [SMALL_STATE(949)] = 16205, - [SMALL_STATE(950)] = 16209, - [SMALL_STATE(951)] = 16213, - [SMALL_STATE(952)] = 16217, - [SMALL_STATE(953)] = 16221, - [SMALL_STATE(954)] = 16225, - [SMALL_STATE(955)] = 16229, - [SMALL_STATE(956)] = 16233, - [SMALL_STATE(957)] = 16237, - [SMALL_STATE(958)] = 16241, - [SMALL_STATE(959)] = 16245, - [SMALL_STATE(960)] = 16249, - [SMALL_STATE(961)] = 16253, - [SMALL_STATE(962)] = 16257, - [SMALL_STATE(963)] = 16261, - [SMALL_STATE(964)] = 16265, - [SMALL_STATE(965)] = 16269, - [SMALL_STATE(966)] = 16273, - [SMALL_STATE(967)] = 16277, - [SMALL_STATE(968)] = 16281, - [SMALL_STATE(969)] = 16285, - [SMALL_STATE(970)] = 16289, - [SMALL_STATE(971)] = 16293, - [SMALL_STATE(972)] = 16297, - [SMALL_STATE(973)] = 16301, - [SMALL_STATE(974)] = 16305, - [SMALL_STATE(975)] = 16309, - [SMALL_STATE(976)] = 16313, - [SMALL_STATE(977)] = 16317, - [SMALL_STATE(978)] = 16321, - [SMALL_STATE(979)] = 16325, - [SMALL_STATE(980)] = 16329, - [SMALL_STATE(981)] = 16333, - [SMALL_STATE(982)] = 16337, - [SMALL_STATE(983)] = 16341, - [SMALL_STATE(984)] = 16345, - [SMALL_STATE(985)] = 16349, - [SMALL_STATE(986)] = 16353, - [SMALL_STATE(987)] = 16357, - [SMALL_STATE(988)] = 16361, - [SMALL_STATE(989)] = 16365, - [SMALL_STATE(990)] = 16369, - [SMALL_STATE(991)] = 16373, - [SMALL_STATE(992)] = 16377, - [SMALL_STATE(993)] = 16381, - [SMALL_STATE(994)] = 16385, - [SMALL_STATE(995)] = 16389, - [SMALL_STATE(996)] = 16393, - [SMALL_STATE(997)] = 16397, - [SMALL_STATE(998)] = 16401, - [SMALL_STATE(999)] = 16405, - [SMALL_STATE(1000)] = 16409, - [SMALL_STATE(1001)] = 16413, - [SMALL_STATE(1002)] = 16417, - [SMALL_STATE(1003)] = 16421, - [SMALL_STATE(1004)] = 16425, - [SMALL_STATE(1005)] = 16429, - [SMALL_STATE(1006)] = 16433, - [SMALL_STATE(1007)] = 16437, - [SMALL_STATE(1008)] = 16441, - [SMALL_STATE(1009)] = 16445, - [SMALL_STATE(1010)] = 16449, - [SMALL_STATE(1011)] = 16453, - [SMALL_STATE(1012)] = 16457, - [SMALL_STATE(1013)] = 16461, - [SMALL_STATE(1014)] = 16465, - [SMALL_STATE(1015)] = 16469, - [SMALL_STATE(1016)] = 16473, - [SMALL_STATE(1017)] = 16477, - [SMALL_STATE(1018)] = 16481, - [SMALL_STATE(1019)] = 16485, - [SMALL_STATE(1020)] = 16489, - [SMALL_STATE(1021)] = 16493, - [SMALL_STATE(1022)] = 16497, - [SMALL_STATE(1023)] = 16501, - [SMALL_STATE(1024)] = 16505, - [SMALL_STATE(1025)] = 16509, - [SMALL_STATE(1026)] = 16513, - [SMALL_STATE(1027)] = 16517, - [SMALL_STATE(1028)] = 16521, - [SMALL_STATE(1029)] = 16525, - [SMALL_STATE(1030)] = 16529, - [SMALL_STATE(1031)] = 16533, - [SMALL_STATE(1032)] = 16537, - [SMALL_STATE(1033)] = 16541, - [SMALL_STATE(1034)] = 16545, - [SMALL_STATE(1035)] = 16549, - [SMALL_STATE(1036)] = 16553, - [SMALL_STATE(1037)] = 16557, - [SMALL_STATE(1038)] = 16561, - [SMALL_STATE(1039)] = 16565, - [SMALL_STATE(1040)] = 16569, - [SMALL_STATE(1041)] = 16573, - [SMALL_STATE(1042)] = 16577, - [SMALL_STATE(1043)] = 16581, - [SMALL_STATE(1044)] = 16585, - [SMALL_STATE(1045)] = 16589, - [SMALL_STATE(1046)] = 16593, - [SMALL_STATE(1047)] = 16597, - [SMALL_STATE(1048)] = 16601, - [SMALL_STATE(1049)] = 16605, - [SMALL_STATE(1050)] = 16609, - [SMALL_STATE(1051)] = 16613, - [SMALL_STATE(1052)] = 16617, - [SMALL_STATE(1053)] = 16621, - [SMALL_STATE(1054)] = 16625, - [SMALL_STATE(1055)] = 16629, - [SMALL_STATE(1056)] = 16633, - [SMALL_STATE(1057)] = 16637, - [SMALL_STATE(1058)] = 16641, - [SMALL_STATE(1059)] = 16645, - [SMALL_STATE(1060)] = 16649, - [SMALL_STATE(1061)] = 16653, - [SMALL_STATE(1062)] = 16657, - [SMALL_STATE(1063)] = 16661, - [SMALL_STATE(1064)] = 16665, - [SMALL_STATE(1065)] = 16669, - [SMALL_STATE(1066)] = 16673, - [SMALL_STATE(1067)] = 16677, - [SMALL_STATE(1068)] = 16681, - [SMALL_STATE(1069)] = 16685, - [SMALL_STATE(1070)] = 16689, - [SMALL_STATE(1071)] = 16693, - [SMALL_STATE(1072)] = 16697, - [SMALL_STATE(1073)] = 16701, - [SMALL_STATE(1074)] = 16705, - [SMALL_STATE(1075)] = 16709, - [SMALL_STATE(1076)] = 16713, - [SMALL_STATE(1077)] = 16717, - [SMALL_STATE(1078)] = 16721, - [SMALL_STATE(1079)] = 16725, - [SMALL_STATE(1080)] = 16729, - [SMALL_STATE(1081)] = 16733, - [SMALL_STATE(1082)] = 16737, - [SMALL_STATE(1083)] = 16741, - [SMALL_STATE(1084)] = 16745, - [SMALL_STATE(1085)] = 16749, - [SMALL_STATE(1086)] = 16753, - [SMALL_STATE(1087)] = 16757, - [SMALL_STATE(1088)] = 16761, - [SMALL_STATE(1089)] = 16765, - [SMALL_STATE(1090)] = 16769, - [SMALL_STATE(1091)] = 16773, - [SMALL_STATE(1092)] = 16777, - [SMALL_STATE(1093)] = 16781, - [SMALL_STATE(1094)] = 16785, - [SMALL_STATE(1095)] = 16789, - [SMALL_STATE(1096)] = 16793, - [SMALL_STATE(1097)] = 16797, - [SMALL_STATE(1098)] = 16801, - [SMALL_STATE(1099)] = 16805, - [SMALL_STATE(1100)] = 16809, - [SMALL_STATE(1101)] = 16813, - [SMALL_STATE(1102)] = 16817, - [SMALL_STATE(1103)] = 16821, - [SMALL_STATE(1104)] = 16825, - [SMALL_STATE(1105)] = 16829, - [SMALL_STATE(1106)] = 16833, - [SMALL_STATE(1107)] = 16837, - [SMALL_STATE(1108)] = 16841, - [SMALL_STATE(1109)] = 16845, - [SMALL_STATE(1110)] = 16849, - [SMALL_STATE(1111)] = 16853, - [SMALL_STATE(1112)] = 16857, - [SMALL_STATE(1113)] = 16861, - [SMALL_STATE(1114)] = 16865, - [SMALL_STATE(1115)] = 16869, - [SMALL_STATE(1116)] = 16873, - [SMALL_STATE(1117)] = 16877, - [SMALL_STATE(1118)] = 16881, - [SMALL_STATE(1119)] = 16885, - [SMALL_STATE(1120)] = 16889, - [SMALL_STATE(1121)] = 16893, - [SMALL_STATE(1122)] = 16897, - [SMALL_STATE(1123)] = 16901, - [SMALL_STATE(1124)] = 16905, - [SMALL_STATE(1125)] = 16909, - [SMALL_STATE(1126)] = 16913, - [SMALL_STATE(1127)] = 16917, - [SMALL_STATE(1128)] = 16921, - [SMALL_STATE(1129)] = 16925, - [SMALL_STATE(1130)] = 16929, - [SMALL_STATE(1131)] = 16933, - [SMALL_STATE(1132)] = 16937, - [SMALL_STATE(1133)] = 16941, - [SMALL_STATE(1134)] = 16945, - [SMALL_STATE(1135)] = 16949, - [SMALL_STATE(1136)] = 16953, - [SMALL_STATE(1137)] = 16957, - [SMALL_STATE(1138)] = 16961, - [SMALL_STATE(1139)] = 16965, - [SMALL_STATE(1140)] = 16969, - [SMALL_STATE(1141)] = 16973, - [SMALL_STATE(1142)] = 16977, - [SMALL_STATE(1143)] = 16981, - [SMALL_STATE(1144)] = 16985, - [SMALL_STATE(1145)] = 16989, - [SMALL_STATE(1146)] = 16993, - [SMALL_STATE(1147)] = 16997, - [SMALL_STATE(1148)] = 17001, - [SMALL_STATE(1149)] = 17005, - [SMALL_STATE(1150)] = 17009, - [SMALL_STATE(1151)] = 17013, - [SMALL_STATE(1152)] = 17017, - [SMALL_STATE(1153)] = 17021, - [SMALL_STATE(1154)] = 17025, - [SMALL_STATE(1155)] = 17029, - [SMALL_STATE(1156)] = 17033, - [SMALL_STATE(1157)] = 17037, - [SMALL_STATE(1158)] = 17041, - [SMALL_STATE(1159)] = 17045, - [SMALL_STATE(1160)] = 17049, - [SMALL_STATE(1161)] = 17053, - [SMALL_STATE(1162)] = 17057, - [SMALL_STATE(1163)] = 17061, - [SMALL_STATE(1164)] = 17065, - [SMALL_STATE(1165)] = 17069, - [SMALL_STATE(1166)] = 17073, - [SMALL_STATE(1167)] = 17077, - [SMALL_STATE(1168)] = 17081, - [SMALL_STATE(1169)] = 17085, - [SMALL_STATE(1170)] = 17089, - [SMALL_STATE(1171)] = 17093, - [SMALL_STATE(1172)] = 17097, - [SMALL_STATE(1173)] = 17101, - [SMALL_STATE(1174)] = 17105, - [SMALL_STATE(1175)] = 17109, - [SMALL_STATE(1176)] = 17113, - [SMALL_STATE(1177)] = 17117, - [SMALL_STATE(1178)] = 17121, - [SMALL_STATE(1179)] = 17125, - [SMALL_STATE(1180)] = 17129, - [SMALL_STATE(1181)] = 17133, - [SMALL_STATE(1182)] = 17137, - [SMALL_STATE(1183)] = 17141, - [SMALL_STATE(1184)] = 17145, - [SMALL_STATE(1185)] = 17149, - [SMALL_STATE(1186)] = 17153, - [SMALL_STATE(1187)] = 17157, - [SMALL_STATE(1188)] = 17161, - [SMALL_STATE(1189)] = 17165, - [SMALL_STATE(1190)] = 17169, - [SMALL_STATE(1191)] = 17173, - [SMALL_STATE(1192)] = 17177, + [SMALL_STATE(67)] = 75, + [SMALL_STATE(68)] = 150, + [SMALL_STATE(69)] = 218, + [SMALL_STATE(70)] = 286, + [SMALL_STATE(71)] = 338, + [SMALL_STATE(72)] = 390, + [SMALL_STATE(73)] = 437, + [SMALL_STATE(74)] = 484, + [SMALL_STATE(75)] = 531, + [SMALL_STATE(76)] = 580, + [SMALL_STATE(77)] = 629, + [SMALL_STATE(78)] = 678, + [SMALL_STATE(79)] = 727, + [SMALL_STATE(80)] = 776, + [SMALL_STATE(81)] = 825, + [SMALL_STATE(82)] = 872, + [SMALL_STATE(83)] = 919, + [SMALL_STATE(84)] = 966, + [SMALL_STATE(85)] = 1015, + [SMALL_STATE(86)] = 1064, + [SMALL_STATE(87)] = 1113, + [SMALL_STATE(88)] = 1162, + [SMALL_STATE(89)] = 1211, + [SMALL_STATE(90)] = 1260, + [SMALL_STATE(91)] = 1307, + [SMALL_STATE(92)] = 1354, + [SMALL_STATE(93)] = 1403, + [SMALL_STATE(94)] = 1450, + [SMALL_STATE(95)] = 1497, + [SMALL_STATE(96)] = 1546, + [SMALL_STATE(97)] = 1593, + [SMALL_STATE(98)] = 1642, + [SMALL_STATE(99)] = 1689, + [SMALL_STATE(100)] = 1736, + [SMALL_STATE(101)] = 1785, + [SMALL_STATE(102)] = 1834, + [SMALL_STATE(103)] = 1883, + [SMALL_STATE(104)] = 1932, + [SMALL_STATE(105)] = 1981, + [SMALL_STATE(106)] = 2030, + [SMALL_STATE(107)] = 2079, + [SMALL_STATE(108)] = 2126, + [SMALL_STATE(109)] = 2175, + [SMALL_STATE(110)] = 2221, + [SMALL_STATE(111)] = 2267, + [SMALL_STATE(112)] = 2313, + [SMALL_STATE(113)] = 2359, + [SMALL_STATE(114)] = 2405, + [SMALL_STATE(115)] = 2451, + [SMALL_STATE(116)] = 2497, + [SMALL_STATE(117)] = 2543, + [SMALL_STATE(118)] = 2589, + [SMALL_STATE(119)] = 2635, + [SMALL_STATE(120)] = 2681, + [SMALL_STATE(121)] = 2727, + [SMALL_STATE(122)] = 2773, + [SMALL_STATE(123)] = 2819, + [SMALL_STATE(124)] = 2865, + [SMALL_STATE(125)] = 2911, + [SMALL_STATE(126)] = 2957, + [SMALL_STATE(127)] = 3003, + [SMALL_STATE(128)] = 3049, + [SMALL_STATE(129)] = 3095, + [SMALL_STATE(130)] = 3141, + [SMALL_STATE(131)] = 3187, + [SMALL_STATE(132)] = 3233, + [SMALL_STATE(133)] = 3279, + [SMALL_STATE(134)] = 3325, + [SMALL_STATE(135)] = 3371, + [SMALL_STATE(136)] = 3417, + [SMALL_STATE(137)] = 3463, + [SMALL_STATE(138)] = 3509, + [SMALL_STATE(139)] = 3555, + [SMALL_STATE(140)] = 3601, + [SMALL_STATE(141)] = 3647, + [SMALL_STATE(142)] = 3693, + [SMALL_STATE(143)] = 3739, + [SMALL_STATE(144)] = 3785, + [SMALL_STATE(145)] = 3831, + [SMALL_STATE(146)] = 3877, + [SMALL_STATE(147)] = 3923, + [SMALL_STATE(148)] = 3969, + [SMALL_STATE(149)] = 4015, + [SMALL_STATE(150)] = 4061, + [SMALL_STATE(151)] = 4107, + [SMALL_STATE(152)] = 4153, + [SMALL_STATE(153)] = 4199, + [SMALL_STATE(154)] = 4245, + [SMALL_STATE(155)] = 4291, + [SMALL_STATE(156)] = 4337, + [SMALL_STATE(157)] = 4383, + [SMALL_STATE(158)] = 4429, + [SMALL_STATE(159)] = 4475, + [SMALL_STATE(160)] = 4521, + [SMALL_STATE(161)] = 4567, + [SMALL_STATE(162)] = 4613, + [SMALL_STATE(163)] = 4659, + [SMALL_STATE(164)] = 4705, + [SMALL_STATE(165)] = 4751, + [SMALL_STATE(166)] = 4797, + [SMALL_STATE(167)] = 4843, + [SMALL_STATE(168)] = 4889, + [SMALL_STATE(169)] = 4935, + [SMALL_STATE(170)] = 4981, + [SMALL_STATE(171)] = 5027, + [SMALL_STATE(172)] = 5073, + [SMALL_STATE(173)] = 5119, + [SMALL_STATE(174)] = 5165, + [SMALL_STATE(175)] = 5211, + [SMALL_STATE(176)] = 5257, + [SMALL_STATE(177)] = 5303, + [SMALL_STATE(178)] = 5349, + [SMALL_STATE(179)] = 5395, + [SMALL_STATE(180)] = 5441, + [SMALL_STATE(181)] = 5487, + [SMALL_STATE(182)] = 5533, + [SMALL_STATE(183)] = 5579, + [SMALL_STATE(184)] = 5625, + [SMALL_STATE(185)] = 5671, + [SMALL_STATE(186)] = 5717, + [SMALL_STATE(187)] = 5763, + [SMALL_STATE(188)] = 5809, + [SMALL_STATE(189)] = 5855, + [SMALL_STATE(190)] = 5901, + [SMALL_STATE(191)] = 5947, + [SMALL_STATE(192)] = 5993, + [SMALL_STATE(193)] = 6039, + [SMALL_STATE(194)] = 6085, + [SMALL_STATE(195)] = 6131, + [SMALL_STATE(196)] = 6177, + [SMALL_STATE(197)] = 6223, + [SMALL_STATE(198)] = 6269, + [SMALL_STATE(199)] = 6315, + [SMALL_STATE(200)] = 6361, + [SMALL_STATE(201)] = 6407, + [SMALL_STATE(202)] = 6453, + [SMALL_STATE(203)] = 6499, + [SMALL_STATE(204)] = 6545, + [SMALL_STATE(205)] = 6591, + [SMALL_STATE(206)] = 6637, + [SMALL_STATE(207)] = 6683, + [SMALL_STATE(208)] = 6729, + [SMALL_STATE(209)] = 6778, + [SMALL_STATE(210)] = 6823, + [SMALL_STATE(211)] = 6867, + [SMALL_STATE(212)] = 6920, + [SMALL_STATE(213)] = 6973, + [SMALL_STATE(214)] = 7026, + [SMALL_STATE(215)] = 7079, + [SMALL_STATE(216)] = 7132, + [SMALL_STATE(217)] = 7185, + [SMALL_STATE(218)] = 7238, + [SMALL_STATE(219)] = 7291, + [SMALL_STATE(220)] = 7344, + [SMALL_STATE(221)] = 7397, + [SMALL_STATE(222)] = 7447, + [SMALL_STATE(223)] = 7497, + [SMALL_STATE(224)] = 7547, + [SMALL_STATE(225)] = 7597, + [SMALL_STATE(226)] = 7647, + [SMALL_STATE(227)] = 7692, + [SMALL_STATE(228)] = 7737, + [SMALL_STATE(229)] = 7782, + [SMALL_STATE(230)] = 7827, + [SMALL_STATE(231)] = 7872, + [SMALL_STATE(232)] = 7900, + [SMALL_STATE(233)] = 7928, + [SMALL_STATE(234)] = 7951, + [SMALL_STATE(235)] = 7978, + [SMALL_STATE(236)] = 8005, + [SMALL_STATE(237)] = 8027, + [SMALL_STATE(238)] = 8063, + [SMALL_STATE(239)] = 8102, + [SMALL_STATE(240)] = 8135, + [SMALL_STATE(241)] = 8168, + [SMALL_STATE(242)] = 8201, + [SMALL_STATE(243)] = 8234, + [SMALL_STATE(244)] = 8267, + [SMALL_STATE(245)] = 8300, + [SMALL_STATE(246)] = 8332, + [SMALL_STATE(247)] = 8360, + [SMALL_STATE(248)] = 8390, + [SMALL_STATE(249)] = 8428, + [SMALL_STATE(250)] = 8466, + [SMALL_STATE(251)] = 8494, + [SMALL_STATE(252)] = 8522, + [SMALL_STATE(253)] = 8550, + [SMALL_STATE(254)] = 8578, + [SMALL_STATE(255)] = 8605, + [SMALL_STATE(256)] = 8632, + [SMALL_STATE(257)] = 8659, + [SMALL_STATE(258)] = 8686, + [SMALL_STATE(259)] = 8717, + [SMALL_STATE(260)] = 8744, + [SMALL_STATE(261)] = 8771, + [SMALL_STATE(262)] = 8798, + [SMALL_STATE(263)] = 8825, + [SMALL_STATE(264)] = 8852, + [SMALL_STATE(265)] = 8879, + [SMALL_STATE(266)] = 8906, + [SMALL_STATE(267)] = 8933, + [SMALL_STATE(268)] = 8960, + [SMALL_STATE(269)] = 8987, + [SMALL_STATE(270)] = 9014, + [SMALL_STATE(271)] = 9041, + [SMALL_STATE(272)] = 9068, + [SMALL_STATE(273)] = 9095, + [SMALL_STATE(274)] = 9122, + [SMALL_STATE(275)] = 9149, + [SMALL_STATE(276)] = 9176, + [SMALL_STATE(277)] = 9203, + [SMALL_STATE(278)] = 9230, + [SMALL_STATE(279)] = 9257, + [SMALL_STATE(280)] = 9284, + [SMALL_STATE(281)] = 9311, + [SMALL_STATE(282)] = 9338, + [SMALL_STATE(283)] = 9365, + [SMALL_STATE(284)] = 9392, + [SMALL_STATE(285)] = 9423, + [SMALL_STATE(286)] = 9445, + [SMALL_STATE(287)] = 9469, + [SMALL_STATE(288)] = 9493, + [SMALL_STATE(289)] = 9517, + [SMALL_STATE(290)] = 9541, + [SMALL_STATE(291)] = 9565, + [SMALL_STATE(292)] = 9589, + [SMALL_STATE(293)] = 9611, + [SMALL_STATE(294)] = 9635, + [SMALL_STATE(295)] = 9659, + [SMALL_STATE(296)] = 9683, + [SMALL_STATE(297)] = 9707, + [SMALL_STATE(298)] = 9731, + [SMALL_STATE(299)] = 9755, + [SMALL_STATE(300)] = 9776, + [SMALL_STATE(301)] = 9797, + [SMALL_STATE(302)] = 9830, + [SMALL_STATE(303)] = 9863, + [SMALL_STATE(304)] = 9884, + [SMALL_STATE(305)] = 9905, + [SMALL_STATE(306)] = 9938, + [SMALL_STATE(307)] = 9971, + [SMALL_STATE(308)] = 9992, + [SMALL_STATE(309)] = 10013, + [SMALL_STATE(310)] = 10046, + [SMALL_STATE(311)] = 10067, + [SMALL_STATE(312)] = 10100, + [SMALL_STATE(313)] = 10121, + [SMALL_STATE(314)] = 10137, + [SMALL_STATE(315)] = 10155, + [SMALL_STATE(316)] = 10171, + [SMALL_STATE(317)] = 10189, + [SMALL_STATE(318)] = 10205, + [SMALL_STATE(319)] = 10220, + [SMALL_STATE(320)] = 10235, + [SMALL_STATE(321)] = 10248, + [SMALL_STATE(322)] = 10261, + [SMALL_STATE(323)] = 10286, + [SMALL_STATE(324)] = 10297, + [SMALL_STATE(325)] = 10308, + [SMALL_STATE(326)] = 10333, + [SMALL_STATE(327)] = 10344, + [SMALL_STATE(328)] = 10367, + [SMALL_STATE(329)] = 10392, + [SMALL_STATE(330)] = 10415, + [SMALL_STATE(331)] = 10438, + [SMALL_STATE(332)] = 10461, + [SMALL_STATE(333)] = 10486, + [SMALL_STATE(334)] = 10509, + [SMALL_STATE(335)] = 10532, + [SMALL_STATE(336)] = 10557, + [SMALL_STATE(337)] = 10580, + [SMALL_STATE(338)] = 10603, + [SMALL_STATE(339)] = 10626, + [SMALL_STATE(340)] = 10651, + [SMALL_STATE(341)] = 10674, + [SMALL_STATE(342)] = 10697, + [SMALL_STATE(343)] = 10720, + [SMALL_STATE(344)] = 10731, + [SMALL_STATE(345)] = 10754, + [SMALL_STATE(346)] = 10777, + [SMALL_STATE(347)] = 10800, + [SMALL_STATE(348)] = 10811, + [SMALL_STATE(349)] = 10822, + [SMALL_STATE(350)] = 10833, + [SMALL_STATE(351)] = 10855, + [SMALL_STATE(352)] = 10877, + [SMALL_STATE(353)] = 10887, + [SMALL_STATE(354)] = 10909, + [SMALL_STATE(355)] = 10931, + [SMALL_STATE(356)] = 10953, + [SMALL_STATE(357)] = 10975, + [SMALL_STATE(358)] = 10985, + [SMALL_STATE(359)] = 11005, + [SMALL_STATE(360)] = 11015, + [SMALL_STATE(361)] = 11037, + [SMALL_STATE(362)] = 11047, + [SMALL_STATE(363)] = 11057, + [SMALL_STATE(364)] = 11067, + [SMALL_STATE(365)] = 11089, + [SMALL_STATE(366)] = 11111, + [SMALL_STATE(367)] = 11133, + [SMALL_STATE(368)] = 11143, + [SMALL_STATE(369)] = 11165, + [SMALL_STATE(370)] = 11175, + [SMALL_STATE(371)] = 11185, + [SMALL_STATE(372)] = 11207, + [SMALL_STATE(373)] = 11229, + [SMALL_STATE(374)] = 11251, + [SMALL_STATE(375)] = 11273, + [SMALL_STATE(376)] = 11295, + [SMALL_STATE(377)] = 11305, + [SMALL_STATE(378)] = 11315, + [SMALL_STATE(379)] = 11325, + [SMALL_STATE(380)] = 11335, + [SMALL_STATE(381)] = 11355, + [SMALL_STATE(382)] = 11377, + [SMALL_STATE(383)] = 11387, + [SMALL_STATE(384)] = 11409, + [SMALL_STATE(385)] = 11428, + [SMALL_STATE(386)] = 11437, + [SMALL_STATE(387)] = 11456, + [SMALL_STATE(388)] = 11465, + [SMALL_STATE(389)] = 11484, + [SMALL_STATE(390)] = 11493, + [SMALL_STATE(391)] = 11512, + [SMALL_STATE(392)] = 11531, + [SMALL_STATE(393)] = 11550, + [SMALL_STATE(394)] = 11569, + [SMALL_STATE(395)] = 11578, + [SMALL_STATE(396)] = 11587, + [SMALL_STATE(397)] = 11606, + [SMALL_STATE(398)] = 11625, + [SMALL_STATE(399)] = 11644, + [SMALL_STATE(400)] = 11663, + [SMALL_STATE(401)] = 11682, + [SMALL_STATE(402)] = 11701, + [SMALL_STATE(403)] = 11720, + [SMALL_STATE(404)] = 11739, + [SMALL_STATE(405)] = 11758, + [SMALL_STATE(406)] = 11777, + [SMALL_STATE(407)] = 11796, + [SMALL_STATE(408)] = 11815, + [SMALL_STATE(409)] = 11834, + [SMALL_STATE(410)] = 11853, + [SMALL_STATE(411)] = 11872, + [SMALL_STATE(412)] = 11891, + [SMALL_STATE(413)] = 11910, + [SMALL_STATE(414)] = 11929, + [SMALL_STATE(415)] = 11948, + [SMALL_STATE(416)] = 11967, + [SMALL_STATE(417)] = 11986, + [SMALL_STATE(418)] = 12005, + [SMALL_STATE(419)] = 12024, + [SMALL_STATE(420)] = 12043, + [SMALL_STATE(421)] = 12062, + [SMALL_STATE(422)] = 12081, + [SMALL_STATE(423)] = 12100, + [SMALL_STATE(424)] = 12119, + [SMALL_STATE(425)] = 12138, + [SMALL_STATE(426)] = 12157, + [SMALL_STATE(427)] = 12166, + [SMALL_STATE(428)] = 12185, + [SMALL_STATE(429)] = 12204, + [SMALL_STATE(430)] = 12223, + [SMALL_STATE(431)] = 12242, + [SMALL_STATE(432)] = 12251, + [SMALL_STATE(433)] = 12270, + [SMALL_STATE(434)] = 12289, + [SMALL_STATE(435)] = 12308, + [SMALL_STATE(436)] = 12323, + [SMALL_STATE(437)] = 12338, + [SMALL_STATE(438)] = 12353, + [SMALL_STATE(439)] = 12372, + [SMALL_STATE(440)] = 12391, + [SMALL_STATE(441)] = 12406, + [SMALL_STATE(442)] = 12415, + [SMALL_STATE(443)] = 12434, + [SMALL_STATE(444)] = 12443, + [SMALL_STATE(445)] = 12458, + [SMALL_STATE(446)] = 12477, + [SMALL_STATE(447)] = 12496, + [SMALL_STATE(448)] = 12515, + [SMALL_STATE(449)] = 12524, + [SMALL_STATE(450)] = 12543, + [SMALL_STATE(451)] = 12562, + [SMALL_STATE(452)] = 12581, + [SMALL_STATE(453)] = 12595, + [SMALL_STATE(454)] = 12607, + [SMALL_STATE(455)] = 12619, + [SMALL_STATE(456)] = 12631, + [SMALL_STATE(457)] = 12645, + [SMALL_STATE(458)] = 12659, + [SMALL_STATE(459)] = 12668, + [SMALL_STATE(460)] = 12679, + [SMALL_STATE(461)] = 12690, + [SMALL_STATE(462)] = 12703, + [SMALL_STATE(463)] = 12714, + [SMALL_STATE(464)] = 12723, + [SMALL_STATE(465)] = 12734, + [SMALL_STATE(466)] = 12745, + [SMALL_STATE(467)] = 12754, + [SMALL_STATE(468)] = 12763, + [SMALL_STATE(469)] = 12772, + [SMALL_STATE(470)] = 12781, + [SMALL_STATE(471)] = 12790, + [SMALL_STATE(472)] = 12799, + [SMALL_STATE(473)] = 12808, + [SMALL_STATE(474)] = 12817, + [SMALL_STATE(475)] = 12826, + [SMALL_STATE(476)] = 12835, + [SMALL_STATE(477)] = 12842, + [SMALL_STATE(478)] = 12853, + [SMALL_STATE(479)] = 12864, + [SMALL_STATE(480)] = 12877, + [SMALL_STATE(481)] = 12890, + [SMALL_STATE(482)] = 12903, + [SMALL_STATE(483)] = 12916, + [SMALL_STATE(484)] = 12929, + [SMALL_STATE(485)] = 12942, + [SMALL_STATE(486)] = 12955, + [SMALL_STATE(487)] = 12968, + [SMALL_STATE(488)] = 12981, + [SMALL_STATE(489)] = 12994, + [SMALL_STATE(490)] = 13007, + [SMALL_STATE(491)] = 13020, + [SMALL_STATE(492)] = 13033, + [SMALL_STATE(493)] = 13046, + [SMALL_STATE(494)] = 13059, + [SMALL_STATE(495)] = 13072, + [SMALL_STATE(496)] = 13083, + [SMALL_STATE(497)] = 13096, + [SMALL_STATE(498)] = 13109, + [SMALL_STATE(499)] = 13122, + [SMALL_STATE(500)] = 13135, + [SMALL_STATE(501)] = 13148, + [SMALL_STATE(502)] = 13161, + [SMALL_STATE(503)] = 13174, + [SMALL_STATE(504)] = 13187, + [SMALL_STATE(505)] = 13200, + [SMALL_STATE(506)] = 13213, + [SMALL_STATE(507)] = 13226, + [SMALL_STATE(508)] = 13239, + [SMALL_STATE(509)] = 13252, + [SMALL_STATE(510)] = 13265, + [SMALL_STATE(511)] = 13278, + [SMALL_STATE(512)] = 13291, + [SMALL_STATE(513)] = 13304, + [SMALL_STATE(514)] = 13317, + [SMALL_STATE(515)] = 13330, + [SMALL_STATE(516)] = 13343, + [SMALL_STATE(517)] = 13356, + [SMALL_STATE(518)] = 13369, + [SMALL_STATE(519)] = 13382, + [SMALL_STATE(520)] = 13395, + [SMALL_STATE(521)] = 13408, + [SMALL_STATE(522)] = 13421, + [SMALL_STATE(523)] = 13434, + [SMALL_STATE(524)] = 13447, + [SMALL_STATE(525)] = 13460, + [SMALL_STATE(526)] = 13473, + [SMALL_STATE(527)] = 13486, + [SMALL_STATE(528)] = 13499, + [SMALL_STATE(529)] = 13512, + [SMALL_STATE(530)] = 13525, + [SMALL_STATE(531)] = 13538, + [SMALL_STATE(532)] = 13551, + [SMALL_STATE(533)] = 13564, + [SMALL_STATE(534)] = 13577, + [SMALL_STATE(535)] = 13590, + [SMALL_STATE(536)] = 13603, + [SMALL_STATE(537)] = 13616, + [SMALL_STATE(538)] = 13629, + [SMALL_STATE(539)] = 13642, + [SMALL_STATE(540)] = 13655, + [SMALL_STATE(541)] = 13668, + [SMALL_STATE(542)] = 13681, + [SMALL_STATE(543)] = 13694, + [SMALL_STATE(544)] = 13707, + [SMALL_STATE(545)] = 13720, + [SMALL_STATE(546)] = 13733, + [SMALL_STATE(547)] = 13746, + [SMALL_STATE(548)] = 13759, + [SMALL_STATE(549)] = 13772, + [SMALL_STATE(550)] = 13785, + [SMALL_STATE(551)] = 13798, + [SMALL_STATE(552)] = 13811, + [SMALL_STATE(553)] = 13824, + [SMALL_STATE(554)] = 13837, + [SMALL_STATE(555)] = 13850, + [SMALL_STATE(556)] = 13863, + [SMALL_STATE(557)] = 13876, + [SMALL_STATE(558)] = 13889, + [SMALL_STATE(559)] = 13902, + [SMALL_STATE(560)] = 13915, + [SMALL_STATE(561)] = 13928, + [SMALL_STATE(562)] = 13941, + [SMALL_STATE(563)] = 13954, + [SMALL_STATE(564)] = 13967, + [SMALL_STATE(565)] = 13980, + [SMALL_STATE(566)] = 13993, + [SMALL_STATE(567)] = 14006, + [SMALL_STATE(568)] = 14019, + [SMALL_STATE(569)] = 14032, + [SMALL_STATE(570)] = 14045, + [SMALL_STATE(571)] = 14058, + [SMALL_STATE(572)] = 14071, + [SMALL_STATE(573)] = 14084, + [SMALL_STATE(574)] = 14097, + [SMALL_STATE(575)] = 14110, + [SMALL_STATE(576)] = 14123, + [SMALL_STATE(577)] = 14136, + [SMALL_STATE(578)] = 14149, + [SMALL_STATE(579)] = 14162, + [SMALL_STATE(580)] = 14175, + [SMALL_STATE(581)] = 14185, + [SMALL_STATE(582)] = 14195, + [SMALL_STATE(583)] = 14205, + [SMALL_STATE(584)] = 14211, + [SMALL_STATE(585)] = 14217, + [SMALL_STATE(586)] = 14223, + [SMALL_STATE(587)] = 14229, + [SMALL_STATE(588)] = 14235, + [SMALL_STATE(589)] = 14241, + [SMALL_STATE(590)] = 14247, + [SMALL_STATE(591)] = 14253, + [SMALL_STATE(592)] = 14259, + [SMALL_STATE(593)] = 14265, + [SMALL_STATE(594)] = 14275, + [SMALL_STATE(595)] = 14285, + [SMALL_STATE(596)] = 14293, + [SMALL_STATE(597)] = 14301, + [SMALL_STATE(598)] = 14311, + [SMALL_STATE(599)] = 14317, + [SMALL_STATE(600)] = 14323, + [SMALL_STATE(601)] = 14329, + [SMALL_STATE(602)] = 14339, + [SMALL_STATE(603)] = 14345, + [SMALL_STATE(604)] = 14351, + [SMALL_STATE(605)] = 14357, + [SMALL_STATE(606)] = 14363, + [SMALL_STATE(607)] = 14369, + [SMALL_STATE(608)] = 14375, + [SMALL_STATE(609)] = 14381, + [SMALL_STATE(610)] = 14391, + [SMALL_STATE(611)] = 14401, + [SMALL_STATE(612)] = 14407, + [SMALL_STATE(613)] = 14413, + [SMALL_STATE(614)] = 14419, + [SMALL_STATE(615)] = 14425, + [SMALL_STATE(616)] = 14431, + [SMALL_STATE(617)] = 14437, + [SMALL_STATE(618)] = 14443, + [SMALL_STATE(619)] = 14449, + [SMALL_STATE(620)] = 14455, + [SMALL_STATE(621)] = 14461, + [SMALL_STATE(622)] = 14467, + [SMALL_STATE(623)] = 14473, + [SMALL_STATE(624)] = 14479, + [SMALL_STATE(625)] = 14485, + [SMALL_STATE(626)] = 14491, + [SMALL_STATE(627)] = 14497, + [SMALL_STATE(628)] = 14503, + [SMALL_STATE(629)] = 14513, + [SMALL_STATE(630)] = 14523, + [SMALL_STATE(631)] = 14531, + [SMALL_STATE(632)] = 14537, + [SMALL_STATE(633)] = 14543, + [SMALL_STATE(634)] = 14549, + [SMALL_STATE(635)] = 14555, + [SMALL_STATE(636)] = 14561, + [SMALL_STATE(637)] = 14567, + [SMALL_STATE(638)] = 14577, + [SMALL_STATE(639)] = 14587, + [SMALL_STATE(640)] = 14593, + [SMALL_STATE(641)] = 14603, + [SMALL_STATE(642)] = 14611, + [SMALL_STATE(643)] = 14619, + [SMALL_STATE(644)] = 14625, + [SMALL_STATE(645)] = 14633, + [SMALL_STATE(646)] = 14639, + [SMALL_STATE(647)] = 14647, + [SMALL_STATE(648)] = 14653, + [SMALL_STATE(649)] = 14659, + [SMALL_STATE(650)] = 14665, + [SMALL_STATE(651)] = 14671, + [SMALL_STATE(652)] = 14677, + [SMALL_STATE(653)] = 14683, + [SMALL_STATE(654)] = 14689, + [SMALL_STATE(655)] = 14695, + [SMALL_STATE(656)] = 14701, + [SMALL_STATE(657)] = 14707, + [SMALL_STATE(658)] = 14715, + [SMALL_STATE(659)] = 14721, + [SMALL_STATE(660)] = 14727, + [SMALL_STATE(661)] = 14733, + [SMALL_STATE(662)] = 14739, + [SMALL_STATE(663)] = 14745, + [SMALL_STATE(664)] = 14751, + [SMALL_STATE(665)] = 14761, + [SMALL_STATE(666)] = 14771, + [SMALL_STATE(667)] = 14779, + [SMALL_STATE(668)] = 14787, + [SMALL_STATE(669)] = 14797, + [SMALL_STATE(670)] = 14807, + [SMALL_STATE(671)] = 14817, + [SMALL_STATE(672)] = 14827, + [SMALL_STATE(673)] = 14837, + [SMALL_STATE(674)] = 14843, + [SMALL_STATE(675)] = 14853, + [SMALL_STATE(676)] = 14859, + [SMALL_STATE(677)] = 14865, + [SMALL_STATE(678)] = 14873, + [SMALL_STATE(679)] = 14883, + [SMALL_STATE(680)] = 14893, + [SMALL_STATE(681)] = 14899, + [SMALL_STATE(682)] = 14905, + [SMALL_STATE(683)] = 14911, + [SMALL_STATE(684)] = 14917, + [SMALL_STATE(685)] = 14923, + [SMALL_STATE(686)] = 14931, + [SMALL_STATE(687)] = 14937, + [SMALL_STATE(688)] = 14943, + [SMALL_STATE(689)] = 14951, + [SMALL_STATE(690)] = 14957, + [SMALL_STATE(691)] = 14963, + [SMALL_STATE(692)] = 14969, + [SMALL_STATE(693)] = 14977, + [SMALL_STATE(694)] = 14982, + [SMALL_STATE(695)] = 14987, + [SMALL_STATE(696)] = 14992, + [SMALL_STATE(697)] = 14997, + [SMALL_STATE(698)] = 15002, + [SMALL_STATE(699)] = 15007, + [SMALL_STATE(700)] = 15012, + [SMALL_STATE(701)] = 15019, + [SMALL_STATE(702)] = 15024, + [SMALL_STATE(703)] = 15029, + [SMALL_STATE(704)] = 15034, + [SMALL_STATE(705)] = 15039, + [SMALL_STATE(706)] = 15044, + [SMALL_STATE(707)] = 15049, + [SMALL_STATE(708)] = 15054, + [SMALL_STATE(709)] = 15059, + [SMALL_STATE(710)] = 15064, + [SMALL_STATE(711)] = 15069, + [SMALL_STATE(712)] = 15074, + [SMALL_STATE(713)] = 15081, + [SMALL_STATE(714)] = 15086, + [SMALL_STATE(715)] = 15091, + [SMALL_STATE(716)] = 15096, + [SMALL_STATE(717)] = 15103, + [SMALL_STATE(718)] = 15110, + [SMALL_STATE(719)] = 15115, + [SMALL_STATE(720)] = 15120, + [SMALL_STATE(721)] = 15125, + [SMALL_STATE(722)] = 15132, + [SMALL_STATE(723)] = 15137, + [SMALL_STATE(724)] = 15142, + [SMALL_STATE(725)] = 15147, + [SMALL_STATE(726)] = 15152, + [SMALL_STATE(727)] = 15157, + [SMALL_STATE(728)] = 15162, + [SMALL_STATE(729)] = 15167, + [SMALL_STATE(730)] = 15172, + [SMALL_STATE(731)] = 15177, + [SMALL_STATE(732)] = 15182, + [SMALL_STATE(733)] = 15187, + [SMALL_STATE(734)] = 15192, + [SMALL_STATE(735)] = 15197, + [SMALL_STATE(736)] = 15202, + [SMALL_STATE(737)] = 15209, + [SMALL_STATE(738)] = 15214, + [SMALL_STATE(739)] = 15219, + [SMALL_STATE(740)] = 15224, + [SMALL_STATE(741)] = 15229, + [SMALL_STATE(742)] = 15234, + [SMALL_STATE(743)] = 15239, + [SMALL_STATE(744)] = 15244, + [SMALL_STATE(745)] = 15249, + [SMALL_STATE(746)] = 15254, + [SMALL_STATE(747)] = 15259, + [SMALL_STATE(748)] = 15264, + [SMALL_STATE(749)] = 15269, + [SMALL_STATE(750)] = 15274, + [SMALL_STATE(751)] = 15279, + [SMALL_STATE(752)] = 15284, + [SMALL_STATE(753)] = 15289, + [SMALL_STATE(754)] = 15294, + [SMALL_STATE(755)] = 15299, + [SMALL_STATE(756)] = 15304, + [SMALL_STATE(757)] = 15309, + [SMALL_STATE(758)] = 15314, + [SMALL_STATE(759)] = 15319, + [SMALL_STATE(760)] = 15324, + [SMALL_STATE(761)] = 15329, + [SMALL_STATE(762)] = 15336, + [SMALL_STATE(763)] = 15341, + [SMALL_STATE(764)] = 15346, + [SMALL_STATE(765)] = 15351, + [SMALL_STATE(766)] = 15358, + [SMALL_STATE(767)] = 15363, + [SMALL_STATE(768)] = 15370, + [SMALL_STATE(769)] = 15375, + [SMALL_STATE(770)] = 15382, + [SMALL_STATE(771)] = 15387, + [SMALL_STATE(772)] = 15392, + [SMALL_STATE(773)] = 15397, + [SMALL_STATE(774)] = 15402, + [SMALL_STATE(775)] = 15407, + [SMALL_STATE(776)] = 15412, + [SMALL_STATE(777)] = 15417, + [SMALL_STATE(778)] = 15422, + [SMALL_STATE(779)] = 15427, + [SMALL_STATE(780)] = 15432, + [SMALL_STATE(781)] = 15437, + [SMALL_STATE(782)] = 15442, + [SMALL_STATE(783)] = 15447, + [SMALL_STATE(784)] = 15452, + [SMALL_STATE(785)] = 15457, + [SMALL_STATE(786)] = 15462, + [SMALL_STATE(787)] = 15467, + [SMALL_STATE(788)] = 15472, + [SMALL_STATE(789)] = 15477, + [SMALL_STATE(790)] = 15482, + [SMALL_STATE(791)] = 15487, + [SMALL_STATE(792)] = 15492, + [SMALL_STATE(793)] = 15497, + [SMALL_STATE(794)] = 15502, + [SMALL_STATE(795)] = 15507, + [SMALL_STATE(796)] = 15514, + [SMALL_STATE(797)] = 15521, + [SMALL_STATE(798)] = 15526, + [SMALL_STATE(799)] = 15533, + [SMALL_STATE(800)] = 15538, + [SMALL_STATE(801)] = 15543, + [SMALL_STATE(802)] = 15550, + [SMALL_STATE(803)] = 15555, + [SMALL_STATE(804)] = 15560, + [SMALL_STATE(805)] = 15565, + [SMALL_STATE(806)] = 15572, + [SMALL_STATE(807)] = 15579, + [SMALL_STATE(808)] = 15584, + [SMALL_STATE(809)] = 15589, + [SMALL_STATE(810)] = 15594, + [SMALL_STATE(811)] = 15601, + [SMALL_STATE(812)] = 15606, + [SMALL_STATE(813)] = 15613, + [SMALL_STATE(814)] = 15618, + [SMALL_STATE(815)] = 15625, + [SMALL_STATE(816)] = 15632, + [SMALL_STATE(817)] = 15639, + [SMALL_STATE(818)] = 15646, + [SMALL_STATE(819)] = 15651, + [SMALL_STATE(820)] = 15658, + [SMALL_STATE(821)] = 15663, + [SMALL_STATE(822)] = 15668, + [SMALL_STATE(823)] = 15673, + [SMALL_STATE(824)] = 15678, + [SMALL_STATE(825)] = 15683, + [SMALL_STATE(826)] = 15690, + [SMALL_STATE(827)] = 15695, + [SMALL_STATE(828)] = 15700, + [SMALL_STATE(829)] = 15705, + [SMALL_STATE(830)] = 15712, + [SMALL_STATE(831)] = 15717, + [SMALL_STATE(832)] = 15724, + [SMALL_STATE(833)] = 15729, + [SMALL_STATE(834)] = 15736, + [SMALL_STATE(835)] = 15741, + [SMALL_STATE(836)] = 15746, + [SMALL_STATE(837)] = 15753, + [SMALL_STATE(838)] = 15758, + [SMALL_STATE(839)] = 15765, + [SMALL_STATE(840)] = 15770, + [SMALL_STATE(841)] = 15775, + [SMALL_STATE(842)] = 15782, + [SMALL_STATE(843)] = 15789, + [SMALL_STATE(844)] = 15794, + [SMALL_STATE(845)] = 15799, + [SMALL_STATE(846)] = 15804, + [SMALL_STATE(847)] = 15809, + [SMALL_STATE(848)] = 15814, + [SMALL_STATE(849)] = 15821, + [SMALL_STATE(850)] = 15828, + [SMALL_STATE(851)] = 15833, + [SMALL_STATE(852)] = 15840, + [SMALL_STATE(853)] = 15845, + [SMALL_STATE(854)] = 15852, + [SMALL_STATE(855)] = 15859, + [SMALL_STATE(856)] = 15866, + [SMALL_STATE(857)] = 15871, + [SMALL_STATE(858)] = 15876, + [SMALL_STATE(859)] = 15883, + [SMALL_STATE(860)] = 15890, + [SMALL_STATE(861)] = 15897, + [SMALL_STATE(862)] = 15902, + [SMALL_STATE(863)] = 15909, + [SMALL_STATE(864)] = 15916, + [SMALL_STATE(865)] = 15923, + [SMALL_STATE(866)] = 15928, + [SMALL_STATE(867)] = 15935, + [SMALL_STATE(868)] = 15942, + [SMALL_STATE(869)] = 15949, + [SMALL_STATE(870)] = 15956, + [SMALL_STATE(871)] = 15963, + [SMALL_STATE(872)] = 15968, + [SMALL_STATE(873)] = 15975, + [SMALL_STATE(874)] = 15982, + [SMALL_STATE(875)] = 15989, + [SMALL_STATE(876)] = 15994, + [SMALL_STATE(877)] = 15999, + [SMALL_STATE(878)] = 16006, + [SMALL_STATE(879)] = 16013, + [SMALL_STATE(880)] = 16020, + [SMALL_STATE(881)] = 16025, + [SMALL_STATE(882)] = 16032, + [SMALL_STATE(883)] = 16039, + [SMALL_STATE(884)] = 16046, + [SMALL_STATE(885)] = 16053, + [SMALL_STATE(886)] = 16060, + [SMALL_STATE(887)] = 16067, + [SMALL_STATE(888)] = 16074, + [SMALL_STATE(889)] = 16081, + [SMALL_STATE(890)] = 16088, + [SMALL_STATE(891)] = 16095, + [SMALL_STATE(892)] = 16102, + [SMALL_STATE(893)] = 16109, + [SMALL_STATE(894)] = 16116, + [SMALL_STATE(895)] = 16123, + [SMALL_STATE(896)] = 16130, + [SMALL_STATE(897)] = 16137, + [SMALL_STATE(898)] = 16144, + [SMALL_STATE(899)] = 16149, + [SMALL_STATE(900)] = 16153, + [SMALL_STATE(901)] = 16157, + [SMALL_STATE(902)] = 16161, + [SMALL_STATE(903)] = 16165, + [SMALL_STATE(904)] = 16169, + [SMALL_STATE(905)] = 16173, + [SMALL_STATE(906)] = 16177, + [SMALL_STATE(907)] = 16181, + [SMALL_STATE(908)] = 16185, + [SMALL_STATE(909)] = 16189, + [SMALL_STATE(910)] = 16193, + [SMALL_STATE(911)] = 16197, + [SMALL_STATE(912)] = 16201, + [SMALL_STATE(913)] = 16205, + [SMALL_STATE(914)] = 16209, + [SMALL_STATE(915)] = 16213, + [SMALL_STATE(916)] = 16217, + [SMALL_STATE(917)] = 16221, + [SMALL_STATE(918)] = 16225, + [SMALL_STATE(919)] = 16229, + [SMALL_STATE(920)] = 16233, + [SMALL_STATE(921)] = 16237, + [SMALL_STATE(922)] = 16241, + [SMALL_STATE(923)] = 16245, + [SMALL_STATE(924)] = 16249, + [SMALL_STATE(925)] = 16253, + [SMALL_STATE(926)] = 16257, + [SMALL_STATE(927)] = 16261, + [SMALL_STATE(928)] = 16265, + [SMALL_STATE(929)] = 16269, + [SMALL_STATE(930)] = 16273, + [SMALL_STATE(931)] = 16277, + [SMALL_STATE(932)] = 16281, + [SMALL_STATE(933)] = 16285, + [SMALL_STATE(934)] = 16289, + [SMALL_STATE(935)] = 16293, + [SMALL_STATE(936)] = 16297, + [SMALL_STATE(937)] = 16301, + [SMALL_STATE(938)] = 16305, + [SMALL_STATE(939)] = 16309, + [SMALL_STATE(940)] = 16313, + [SMALL_STATE(941)] = 16317, + [SMALL_STATE(942)] = 16321, + [SMALL_STATE(943)] = 16325, + [SMALL_STATE(944)] = 16329, + [SMALL_STATE(945)] = 16333, + [SMALL_STATE(946)] = 16337, + [SMALL_STATE(947)] = 16341, + [SMALL_STATE(948)] = 16345, + [SMALL_STATE(949)] = 16349, + [SMALL_STATE(950)] = 16353, + [SMALL_STATE(951)] = 16357, + [SMALL_STATE(952)] = 16361, + [SMALL_STATE(953)] = 16365, + [SMALL_STATE(954)] = 16369, + [SMALL_STATE(955)] = 16373, + [SMALL_STATE(956)] = 16377, + [SMALL_STATE(957)] = 16381, + [SMALL_STATE(958)] = 16385, + [SMALL_STATE(959)] = 16389, + [SMALL_STATE(960)] = 16393, + [SMALL_STATE(961)] = 16397, + [SMALL_STATE(962)] = 16401, + [SMALL_STATE(963)] = 16405, + [SMALL_STATE(964)] = 16409, + [SMALL_STATE(965)] = 16413, + [SMALL_STATE(966)] = 16417, + [SMALL_STATE(967)] = 16421, + [SMALL_STATE(968)] = 16425, + [SMALL_STATE(969)] = 16429, + [SMALL_STATE(970)] = 16433, + [SMALL_STATE(971)] = 16437, + [SMALL_STATE(972)] = 16441, + [SMALL_STATE(973)] = 16445, + [SMALL_STATE(974)] = 16449, + [SMALL_STATE(975)] = 16453, + [SMALL_STATE(976)] = 16457, + [SMALL_STATE(977)] = 16461, + [SMALL_STATE(978)] = 16465, + [SMALL_STATE(979)] = 16469, + [SMALL_STATE(980)] = 16473, + [SMALL_STATE(981)] = 16477, + [SMALL_STATE(982)] = 16481, + [SMALL_STATE(983)] = 16485, + [SMALL_STATE(984)] = 16489, + [SMALL_STATE(985)] = 16493, + [SMALL_STATE(986)] = 16497, + [SMALL_STATE(987)] = 16501, + [SMALL_STATE(988)] = 16505, + [SMALL_STATE(989)] = 16509, + [SMALL_STATE(990)] = 16513, + [SMALL_STATE(991)] = 16517, + [SMALL_STATE(992)] = 16521, + [SMALL_STATE(993)] = 16525, + [SMALL_STATE(994)] = 16529, + [SMALL_STATE(995)] = 16533, + [SMALL_STATE(996)] = 16537, + [SMALL_STATE(997)] = 16541, + [SMALL_STATE(998)] = 16545, + [SMALL_STATE(999)] = 16549, + [SMALL_STATE(1000)] = 16553, + [SMALL_STATE(1001)] = 16557, + [SMALL_STATE(1002)] = 16561, + [SMALL_STATE(1003)] = 16565, + [SMALL_STATE(1004)] = 16569, + [SMALL_STATE(1005)] = 16573, + [SMALL_STATE(1006)] = 16577, + [SMALL_STATE(1007)] = 16581, + [SMALL_STATE(1008)] = 16585, + [SMALL_STATE(1009)] = 16589, + [SMALL_STATE(1010)] = 16593, + [SMALL_STATE(1011)] = 16597, + [SMALL_STATE(1012)] = 16601, + [SMALL_STATE(1013)] = 16605, + [SMALL_STATE(1014)] = 16609, + [SMALL_STATE(1015)] = 16613, + [SMALL_STATE(1016)] = 16617, + [SMALL_STATE(1017)] = 16621, + [SMALL_STATE(1018)] = 16625, + [SMALL_STATE(1019)] = 16629, + [SMALL_STATE(1020)] = 16633, + [SMALL_STATE(1021)] = 16637, + [SMALL_STATE(1022)] = 16641, + [SMALL_STATE(1023)] = 16645, + [SMALL_STATE(1024)] = 16649, + [SMALL_STATE(1025)] = 16653, + [SMALL_STATE(1026)] = 16657, + [SMALL_STATE(1027)] = 16661, + [SMALL_STATE(1028)] = 16665, + [SMALL_STATE(1029)] = 16669, + [SMALL_STATE(1030)] = 16673, + [SMALL_STATE(1031)] = 16677, + [SMALL_STATE(1032)] = 16681, + [SMALL_STATE(1033)] = 16685, + [SMALL_STATE(1034)] = 16689, + [SMALL_STATE(1035)] = 16693, + [SMALL_STATE(1036)] = 16697, + [SMALL_STATE(1037)] = 16701, + [SMALL_STATE(1038)] = 16705, + [SMALL_STATE(1039)] = 16709, + [SMALL_STATE(1040)] = 16713, + [SMALL_STATE(1041)] = 16717, + [SMALL_STATE(1042)] = 16721, + [SMALL_STATE(1043)] = 16725, + [SMALL_STATE(1044)] = 16729, + [SMALL_STATE(1045)] = 16733, + [SMALL_STATE(1046)] = 16737, + [SMALL_STATE(1047)] = 16741, + [SMALL_STATE(1048)] = 16745, + [SMALL_STATE(1049)] = 16749, + [SMALL_STATE(1050)] = 16753, + [SMALL_STATE(1051)] = 16757, + [SMALL_STATE(1052)] = 16761, + [SMALL_STATE(1053)] = 16765, + [SMALL_STATE(1054)] = 16769, + [SMALL_STATE(1055)] = 16773, + [SMALL_STATE(1056)] = 16777, + [SMALL_STATE(1057)] = 16781, + [SMALL_STATE(1058)] = 16785, + [SMALL_STATE(1059)] = 16789, + [SMALL_STATE(1060)] = 16793, + [SMALL_STATE(1061)] = 16797, + [SMALL_STATE(1062)] = 16801, + [SMALL_STATE(1063)] = 16805, + [SMALL_STATE(1064)] = 16809, + [SMALL_STATE(1065)] = 16813, + [SMALL_STATE(1066)] = 16817, + [SMALL_STATE(1067)] = 16821, + [SMALL_STATE(1068)] = 16825, + [SMALL_STATE(1069)] = 16829, + [SMALL_STATE(1070)] = 16833, + [SMALL_STATE(1071)] = 16837, + [SMALL_STATE(1072)] = 16841, + [SMALL_STATE(1073)] = 16845, + [SMALL_STATE(1074)] = 16849, + [SMALL_STATE(1075)] = 16853, + [SMALL_STATE(1076)] = 16857, + [SMALL_STATE(1077)] = 16861, + [SMALL_STATE(1078)] = 16865, + [SMALL_STATE(1079)] = 16869, + [SMALL_STATE(1080)] = 16873, + [SMALL_STATE(1081)] = 16877, + [SMALL_STATE(1082)] = 16881, + [SMALL_STATE(1083)] = 16885, + [SMALL_STATE(1084)] = 16889, + [SMALL_STATE(1085)] = 16893, + [SMALL_STATE(1086)] = 16897, + [SMALL_STATE(1087)] = 16901, + [SMALL_STATE(1088)] = 16905, + [SMALL_STATE(1089)] = 16909, + [SMALL_STATE(1090)] = 16913, + [SMALL_STATE(1091)] = 16917, + [SMALL_STATE(1092)] = 16921, + [SMALL_STATE(1093)] = 16925, + [SMALL_STATE(1094)] = 16929, + [SMALL_STATE(1095)] = 16933, + [SMALL_STATE(1096)] = 16937, + [SMALL_STATE(1097)] = 16941, + [SMALL_STATE(1098)] = 16945, + [SMALL_STATE(1099)] = 16949, + [SMALL_STATE(1100)] = 16953, + [SMALL_STATE(1101)] = 16957, + [SMALL_STATE(1102)] = 16961, + [SMALL_STATE(1103)] = 16965, + [SMALL_STATE(1104)] = 16969, + [SMALL_STATE(1105)] = 16973, + [SMALL_STATE(1106)] = 16977, + [SMALL_STATE(1107)] = 16981, + [SMALL_STATE(1108)] = 16985, + [SMALL_STATE(1109)] = 16989, + [SMALL_STATE(1110)] = 16993, + [SMALL_STATE(1111)] = 16997, + [SMALL_STATE(1112)] = 17001, + [SMALL_STATE(1113)] = 17005, + [SMALL_STATE(1114)] = 17009, + [SMALL_STATE(1115)] = 17013, + [SMALL_STATE(1116)] = 17017, + [SMALL_STATE(1117)] = 17021, + [SMALL_STATE(1118)] = 17025, + [SMALL_STATE(1119)] = 17029, + [SMALL_STATE(1120)] = 17033, + [SMALL_STATE(1121)] = 17037, + [SMALL_STATE(1122)] = 17041, + [SMALL_STATE(1123)] = 17045, + [SMALL_STATE(1124)] = 17049, + [SMALL_STATE(1125)] = 17053, + [SMALL_STATE(1126)] = 17057, + [SMALL_STATE(1127)] = 17061, + [SMALL_STATE(1128)] = 17065, + [SMALL_STATE(1129)] = 17069, + [SMALL_STATE(1130)] = 17073, + [SMALL_STATE(1131)] = 17077, + [SMALL_STATE(1132)] = 17081, + [SMALL_STATE(1133)] = 17085, + [SMALL_STATE(1134)] = 17089, + [SMALL_STATE(1135)] = 17093, + [SMALL_STATE(1136)] = 17097, + [SMALL_STATE(1137)] = 17101, + [SMALL_STATE(1138)] = 17105, + [SMALL_STATE(1139)] = 17109, + [SMALL_STATE(1140)] = 17113, + [SMALL_STATE(1141)] = 17117, + [SMALL_STATE(1142)] = 17121, + [SMALL_STATE(1143)] = 17125, + [SMALL_STATE(1144)] = 17129, + [SMALL_STATE(1145)] = 17133, + [SMALL_STATE(1146)] = 17137, + [SMALL_STATE(1147)] = 17141, + [SMALL_STATE(1148)] = 17145, + [SMALL_STATE(1149)] = 17149, + [SMALL_STATE(1150)] = 17153, + [SMALL_STATE(1151)] = 17157, + [SMALL_STATE(1152)] = 17161, + [SMALL_STATE(1153)] = 17165, + [SMALL_STATE(1154)] = 17169, + [SMALL_STATE(1155)] = 17173, + [SMALL_STATE(1156)] = 17177, + [SMALL_STATE(1157)] = 17181, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 0, 0, 0), - [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [89] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 1, 0, 0), - [91] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 2, 0, 0), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [95] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), - [97] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(252), - [100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(239), - [103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(799), - [106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(213), - [109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(297), - [112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(111), - [115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(268), - [118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(891), - [121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(1014), - [124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(42), - [127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(28), - [130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(39), - [133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(633), - [136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(228), - [139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(41), - [142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(44), - [145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(47), - [148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(48), - [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(24), - [154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(25), - [157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(31), - [160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(35), - [163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(36), - [166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(37), - [169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(23), - [172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(26), - [175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(32), - [178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(33), - [181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(38), - [184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(57), - [187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(265), - [190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(207), - [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(260), - [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(248), - [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(216), - [202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(138), - [205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(1146), - [208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(64), - [211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(143), - [214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(260), - [231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(248), - [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(799), - [237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(216), - [240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(297), - [243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), - [245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(208), - [248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(268), - [251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(891), - [254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(1146), - [257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(42), - [260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(28), - [263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(39), - [266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(633), - [269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(228), - [272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(41), - [275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(44), - [278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(47), - [281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(48), - [284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(24), - [287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(25), - [290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(31), - [293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(35), - [296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(36), - [299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(37), - [302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(23), - [305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(26), - [308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(32), - [311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(33), - [314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(38), - [317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(64), - [320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(61), - [323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(143), - [326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), - [340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), - [342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), - [344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), - [406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), - [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 1, 0, 1), - [430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 1, 0, 1), - [432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), - [438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), - [440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), - [442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 1, 0, 0), - [456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 1, 0, 0), SHIFT_REPEAT(265), - [459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 1, 0, 0), - [461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 1, 0, 0), - [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), - [479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), - [481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(264), - [484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(829), - [487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(289), - [490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_content, 1, 0, 0), - [492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__table_content, 1, 0, 0), SHIFT(1080), - [495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_content, 1, 0, 0), - [497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__table_content, 1, 0, 0), SHIFT(829), - [500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__table_content, 1, 0, 0), SHIFT(1105), - [503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 2, 0, 0), - [505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 2, 0, 0), - [507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 5, 0, 25), - [509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 5, 0, 25), - [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 4, 0, 0), - [515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 4, 0, 0), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_separator, 4, 0, 0), - [521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_separator, 4, 0, 0), - [523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_row, 4, 0, 0), - [525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_row, 4, 0, 0), - [527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 4, 0, 15), - [529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 4, 0, 15), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 4, 0, 22), - [535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 4, 0, 22), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 5, 0, 24), - [541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 5, 0, 24), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 5, 0, 26), - [549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 5, 0, 26), - [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_separator, 5, 0, 0), - [555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_separator, 5, 0, 0), - [557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_row, 5, 0, 0), - [559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_row, 5, 0, 0), - [561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 5, 0, 22), - [563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 5, 0, 22), - [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 6, 0, 29), - [569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 6, 0, 29), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 6, 0, 30), - [575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 6, 0, 30), - [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_separator, 6, 0, 0), - [581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_separator, 6, 0, 0), - [583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_row, 6, 0, 0), - [585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_row, 6, 0, 0), - [587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 3, 0, 15), - [589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 3, 0, 15), - [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_or_two_newlines, 1, 0, 0), - [595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_or_two_newlines, 1, 0, 0), - [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heading, 3, 0, 4), - [607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heading, 3, 0, 4), - [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_content, 2, 0, 8), - [613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_content, 2, 0, 8), - [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 1, 0, 0), - [631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 1, 0, 0), - [633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 3, 0, 0), - [635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 3, 0, 0), - [637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heading, 4, 0, 4), - [639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heading, 4, 0, 4), - [641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_attribute, 4, 0, 21), - [643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_attribute, 4, 0, 21), - [645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 2, 0, 7), - [647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 2, 0, 7), - [649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_caption, 3, 0, 23), - [651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_caption, 3, 0, 23), - [653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 5, 0, 15), - [655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 5, 0, 15), - [657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph, 2, 0, 9), - [659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__paragraph, 2, 0, 9), - [661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frontmatter, 6, 0, 28), - [663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_frontmatter, 6, 0, 28), - [665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 6, 0, 0), - [667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 6, 0, 0), - [669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_footnote, 6, 0, 31), - [671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_footnote, 6, 0, 31), - [673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 6, 0, 15), - [675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 6, 0, 15), - [677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 6, 0, 22), - [679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 6, 0, 22), - [681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_dash, 2, 0, 0), - [683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_dash, 2, 0, 0), - [685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frontmatter, 7, 0, 32), - [687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_frontmatter, 7, 0, 32), - [689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 7, 0, 24), - [691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 7, 0, 24), - [693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 7, 0, 25), - [695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 7, 0, 25), - [697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 7, 0, 33), - [699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 7, 0, 33), - [701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 7, 0, 22), - [703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 7, 0, 22), - [705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 8, 0, 29), - [707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 8, 0, 29), - [709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 8, 0, 34), - [711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 8, 0, 34), - [713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_plus, 2, 0, 0), - [715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_plus, 2, 0, 0), - [717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 8, 0, 35), - [719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 8, 0, 35), - [721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_footnote_content, 3, 0, 0), - [723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_footnote_content, 3, 0, 0), - [725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_or_two_newlines, 2, 0, 0), - [727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_or_two_newlines, 2, 0, 0), - [729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_star, 2, 0, 0), - [731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_star, 2, 0, 0), - [733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_footnote_content, 4, 0, 0), - [735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_footnote_content, 4, 0, 0), - [737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_task, 2, 0, 0), - [739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_task, 2, 0, 0), - [741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_with_heading, 2, 0, 0), - [743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_with_heading, 2, 0, 0), - [745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 3, 0, 14), - [747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 3, 0, 14), - [749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_thematic_break, 1, 0, 0), - [751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_thematic_break, 1, 0, 0), - [753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 1, 0, 0), - [755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 1, 0, 0), - [757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_definition, 2, 0, 0), - [759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_definition, 2, 0, 0), - [761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_decimal_period, 2, 0, 0), - [763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_decimal_period, 2, 0, 0), - [765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_decimal_paren, 2, 0, 0), - [767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_decimal_paren, 2, 0, 0), - [769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_decimal_parens, 2, 0, 0), - [771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_decimal_parens, 2, 0, 0), - [773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_alpha_period, 2, 0, 0), - [775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_alpha_period, 2, 0, 0), - [777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_alpha_paren, 2, 0, 0), - [779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_alpha_paren, 2, 0, 0), - [781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_alpha_parens, 2, 0, 0), - [783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_alpha_parens, 2, 0, 0), - [785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_alpha_period, 2, 0, 0), - [787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_alpha_period, 2, 0, 0), - [789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_alpha_paren, 2, 0, 0), - [791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_alpha_paren, 2, 0, 0), - [793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_alpha_parens, 2, 0, 0), - [795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_alpha_parens, 2, 0, 0), - [797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_roman_period, 2, 0, 0), - [799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_roman_period, 2, 0, 0), - [801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_roman_paren, 2, 0, 0), - [803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_roman_paren, 2, 0, 0), - [805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_roman_parens, 2, 0, 0), - [807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_roman_parens, 2, 0, 0), - [809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_roman_period, 2, 0, 0), - [811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_roman_period, 2, 0, 0), - [813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_roman_paren, 2, 0, 0), - [815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_roman_paren, 2, 0, 0), - [817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_roman_parens, 2, 0, 0), - [819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_roman_parens, 2, 0, 0), - [821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_quote, 3, 0, 12), - [823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_quote, 3, 0, 12), - [825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_attribute, 3, 0, 0), - [827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_attribute, 3, 0, 0), - [829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_div_repeat1, 1, 0, 0), - [831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 1, 0, 0), - [833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_task, 3, 0, 11), - [835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_task, 3, 0, 11), - [837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), - [839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), - [841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(212), - [844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), - [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), - [848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), SHIFT(777), - [851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), SHIFT(438), - [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), SHIFT(481), - [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), - [861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), - [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), - [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), - [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), - [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), - [871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), - [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), - [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [75] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 1, 0, 0), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [99] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 2, 0, 0), + [101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), + [103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(246), + [106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(736), + [109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(227), + [112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(285), + [115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(114), + [118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(254), + [121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(815), + [124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(1021), + [127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(25), + [130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(45), + [133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(46), + [136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(630), + [139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(237), + [142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(22), + [145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(24), + [148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(49), + [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(26), + [154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(31), + [157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(32), + [160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(33), + [163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(35), + [166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(36), + [169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(37), + [172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(38), + [175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(39), + [178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(40), + [181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(41), + [184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(43), + [187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(61), + [190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(236), + [193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(116), + [196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(288), + [199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(907), + [202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(287), + [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(252), + [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(230), + [211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(137), + [214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(1121), + [217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(57), + [220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(142), + [223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(297), + [226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(1123), + [229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(291), + [232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(252), + [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(736), + [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(230), + [255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(285), + [258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), + [260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(206), + [263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(254), + [266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(815), + [269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(1121), + [272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(25), + [275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(45), + [278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(46), + [281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(630), + [284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(237), + [287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(22), + [290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(24), + [293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(49), + [296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(26), + [299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(31), + [302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(32), + [305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(33), + [308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(35), + [311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(36), + [314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(37), + [317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(38), + [320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(39), + [323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(40), + [326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(41), + [329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(43), + [332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(57), + [335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(60), + [338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(142), + [341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(297), + [344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(1123), + [347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(291), + [350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), + [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), + [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), + [434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), + [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 1, 0, 1), + [460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 1, 0, 1), + [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), + [472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), + [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 1, 0, 0), + [494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 1, 0, 0), SHIFT_REPEAT(236), + [497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 1, 0, 0), + [499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 1, 0, 0), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), + [513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), + [515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(476), + [518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(288), + [521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(907), + [524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(287), + [527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(297), + [530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(1123), + [533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(291), + [536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 2, 0, 0), + [538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 2, 0, 0), + [540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_separator, 4, 0, 0), + [542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_separator, 4, 0, 0), + [544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_row, 4, 0, 0), + [546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_row, 4, 0, 0), + [548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heading, 3, 0, 4), + [550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heading, 3, 0, 4), + [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 4, 0, 14), + [556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 4, 0, 14), + [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 4, 0, 21), + [562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 4, 0, 21), + [564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 5, 0, 23), + [568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 5, 0, 23), + [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 5, 0, 24), + [574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 5, 0, 24), + [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 5, 0, 25), + [580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 5, 0, 25), + [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_header, 5, 0, 0), + [586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_header, 5, 0, 0), + [588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_separator, 5, 0, 0), + [590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_separator, 5, 0, 0), + [592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_row, 5, 0, 0), + [594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_row, 5, 0, 0), + [596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 5, 0, 21), + [598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 5, 0, 21), + [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 6, 0, 28), + [604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 6, 0, 28), + [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 6, 0, 29), + [610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 6, 0, 29), + [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_or_two_newlines, 1, 0, 0), + [616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_or_two_newlines, 1, 0, 0), + [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 3, 0, 14), + [624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 3, 0, 14), + [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_row, 2, 0, 0), + [630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_row, 2, 0, 0), + [632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 4, 0, 0), + [634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 4, 0, 0), + [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_header, 4, 0, 0), + [642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_header, 4, 0, 0), + [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_attribute, 4, 0, 20), + [664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_attribute, 4, 0, 20), + [666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 3, 0, 0), + [668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 3, 0, 0), + [670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heading, 4, 0, 4), + [672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heading, 4, 0, 4), + [674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 2, 0, 7), + [676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 2, 0, 7), + [678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 1, 0, 0), + [680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 1, 0, 0), + [682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 1, 0, 0), + [684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 1, 0, 0), + [686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_thematic_break, 1, 0, 0), + [688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_thematic_break, 1, 0, 0), + [690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph, 2, 0, 8), + [692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__paragraph, 2, 0, 8), + [694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 5, 0, 14), + [696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 5, 0, 14), + [698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frontmatter, 6, 0, 27), + [700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_frontmatter, 6, 0, 27), + [702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 6, 0, 0), + [704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 6, 0, 0), + [706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_dash, 2, 0, 0), + [708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_dash, 2, 0, 0), + [710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_footnote, 6, 0, 30), + [712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_footnote, 6, 0, 30), + [714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 6, 0, 14), + [716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 6, 0, 14), + [718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 6, 0, 21), + [720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 6, 0, 21), + [722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frontmatter, 7, 0, 31), + [724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_frontmatter, 7, 0, 31), + [726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 7, 0, 23), + [728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 7, 0, 23), + [730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 7, 0, 24), + [732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 7, 0, 24), + [734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 7, 0, 32), + [736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 7, 0, 32), + [738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 7, 0, 21), + [740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 7, 0, 21), + [742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 8, 0, 28), + [744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 8, 0, 28), + [746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 8, 0, 33), + [748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 8, 0, 33), + [750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 8, 0, 34), + [752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 8, 0, 34), + [754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_plus, 2, 0, 0), + [756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_plus, 2, 0, 0), + [758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_footnote_content, 3, 0, 0), + [760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_footnote_content, 3, 0, 0), + [762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_or_two_newlines, 2, 0, 0), + [764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_or_two_newlines, 2, 0, 0), + [766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_footnote_content, 4, 0, 0), + [768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_footnote_content, 4, 0, 0), + [770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_star, 2, 0, 0), + [772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_star, 2, 0, 0), + [774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_with_heading, 2, 0, 0), + [776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_with_heading, 2, 0, 0), + [778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 3, 0, 13), + [780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 3, 0, 13), + [782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_task, 2, 0, 0), + [784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_task, 2, 0, 0), + [786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_definition, 2, 0, 0), + [788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_definition, 2, 0, 0), + [790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_decimal_period, 2, 0, 0), + [792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_decimal_period, 2, 0, 0), + [794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_decimal_paren, 2, 0, 0), + [796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_decimal_paren, 2, 0, 0), + [798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_decimal_parens, 2, 0, 0), + [800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_decimal_parens, 2, 0, 0), + [802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_alpha_period, 2, 0, 0), + [804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_alpha_period, 2, 0, 0), + [806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_alpha_paren, 2, 0, 0), + [808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_alpha_paren, 2, 0, 0), + [810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_alpha_parens, 2, 0, 0), + [812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_alpha_parens, 2, 0, 0), + [814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_alpha_period, 2, 0, 0), + [816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_alpha_period, 2, 0, 0), + [818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_alpha_paren, 2, 0, 0), + [820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_alpha_paren, 2, 0, 0), + [822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_alpha_parens, 2, 0, 0), + [824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_alpha_parens, 2, 0, 0), + [826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_roman_period, 2, 0, 0), + [828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_roman_period, 2, 0, 0), + [830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_roman_paren, 2, 0, 0), + [832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_roman_paren, 2, 0, 0), + [834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_roman_parens, 2, 0, 0), + [836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_roman_parens, 2, 0, 0), + [838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_roman_period, 2, 0, 0), + [840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_roman_period, 2, 0, 0), + [842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_roman_paren, 2, 0, 0), + [844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_roman_paren, 2, 0, 0), + [846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_roman_parens, 2, 0, 0), + [848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_roman_parens, 2, 0, 0), + [850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_quote, 3, 0, 11), + [852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_quote, 3, 0, 11), + [854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_attribute, 3, 0, 0), + [856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_attribute, 3, 0, 0), + [858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_caption, 3, 0, 22), + [860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_caption, 3, 0, 22), + [862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_div_repeat1, 1, 0, 0), + [864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 1, 0, 0), + [866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), + [868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), + [870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(210), + [873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_task, 3, 0, 10), + [875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_task, 3, 0, 10), + [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), + [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), - [905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), - [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), - [909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), - [915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), - [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), - [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), - [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 2, 0, 0), SHIFT_REPEAT(300), - [930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 2, 0, 0), - [932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 2, 0, 0), SHIFT_REPEAT(907), - [935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_caption_repeat1, 2, 0, 0), - [937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(255), - [940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), SHIFT(307), - [943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), - [945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), SHIFT(793), - [948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_quote_prefix, 1, 0, 0), - [950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_quote_prefix, 1, 0, 0), - [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), - [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), - [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), - [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), - [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), - [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), - [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), - [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), - [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), - [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), - [980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), SHIFT(304), - [983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), SHIFT(760), - [986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(265), - [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), - [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), - [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), - [1025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline, 1, 0, 0), - [1027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(298), - [1030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(724), - [1033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), - [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), - [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [1043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(302), - [1046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), - [1048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(760), - [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [1053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline, 1, 0, 0), - [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), - [1057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(305), - [1060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(907), - [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [1089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(293), - [1092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 1, 0, 0), - [1094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_caption_repeat1, 1, 0, 0), - [1096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 2, -1000, 0), - [1098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 2, -1000, 0), - [1100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [1104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_line, 2, 0, 0), - [1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_line, 2, 0, 0), - [1108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), - [1110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(777), - [1113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(438), - [1116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(436), - [1119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(481), - [1122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(1077), - [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [1127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(324), - [1130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(322), - [1133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(793), - [1136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(281), - [1139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(285), - [1142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__table_content, 1, 0, 0), SHIFT(1103), - [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [1151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__table_content, 1, 0, 0), SHIFT(1032), - [1154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [1156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [1158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [1160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 2, 0, 0), - [1162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 2, 0, 0), SHIFT_REPEAT(633), - [1165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 2, 0, 0), SHIFT_REPEAT(834), - [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [1170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [1176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [1178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [1180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [1184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [1188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [1192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__table_content, 1, 0, 0), SHIFT(1056), - [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [1227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), - [1229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), SHIFT_REPEAT(28), - [1232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), SHIFT_REPEAT(827), - [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), + [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), + [909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), SHIFT(700), + [912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), SHIFT(431), + [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), SHIFT(478), + [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), + [922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), + [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), + [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), + [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), + [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), + [932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(233), + [935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_quote_prefix, 1, 0, 0), + [937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_quote_prefix, 1, 0, 0), + [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(236), + [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), + [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), + [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 2, 0, 0), SHIFT_REPEAT(312), + [973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 2, 0, 0), + [975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 2, 0, 0), SHIFT_REPEAT(840), + [978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_caption_repeat1, 2, 0, 0), + [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(290), + [987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(1129), + [990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(295), + [993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), SHIFT(304), + [996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), SHIFT(811), + [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), + [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), + [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [1013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(293), + [1016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(1117), + [1019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(296), + [1022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [1024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [1026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [1028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [1030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [1034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [1036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [1038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [1040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [1042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [1044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [1046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [1048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [1050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [1054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [1056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [1058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [1060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(289), + [1063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(1111), + [1066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(294), + [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), + [1071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline, 1, 0, 0), + [1073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(292), + [1076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(753), + [1079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), + [1081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(299), + [1084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), + [1086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(790), + [1089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), + [1091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(700), + [1094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(431), + [1097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(394), + [1100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(478), + [1103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(1127), + [1106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [1108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [1110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [1112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [1114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [1116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), + [1118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline, 1, 0, 0), + [1120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), + [1122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), + [1124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [1126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [1128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(307), + [1131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(840), + [1134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(308), + [1137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(811), + [1140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [1142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [1144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [1146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_line, 2, 0, 0), + [1148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_line, 2, 0, 0), + [1150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(319), + [1153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 1, 0, 0), + [1155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_caption_repeat1, 1, 0, 0), + [1157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 2, -1000, 0), + [1159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 2, -1000, 0), + [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [1181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 2, 0, 0), + [1183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 2, 0, 0), SHIFT_REPEAT(630), + [1186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 2, 0, 0), SHIFT_REPEAT(695), + [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [1233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_repeat1, 2, 0, 0), SHIFT_REPEAT(935), + [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_code_repeat1, 2, 0, 0), + [1238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_repeat1, 2, 0, 0), SHIFT_REPEAT(706), [1241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 2, 0, 0), - [1243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 2, 0, 0), SHIFT_REPEAT(42), - [1246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 2, 0, 0), SHIFT_REPEAT(788), - [1249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code, 1, 0, 0), - [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [1253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), - [1255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), SHIFT_REPEAT(39), - [1258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), SHIFT_REPEAT(723), - [1261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_repeat1, 2, 0, 0), SHIFT_REPEAT(1109), - [1264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_code_repeat1, 2, 0, 0), - [1266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_repeat1, 2, 0, 0), SHIFT_REPEAT(845), - [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [1275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_no_newline, 2, 0, 0), - [1277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 1, 0, 6), - [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [1285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_no_newline, 3, 0, 19), - [1287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, 0, 13), - [1289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 3, 0, 0), - [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [1295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_item_content_repeat1, 2, 0, 0), SHIFT_REPEAT(56), - [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_item_content_repeat1, 2, 0, 0), - [1300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_item_content_repeat1, 2, 0, 0), SHIFT_REPEAT(848), - [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [1307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_name, 1, 0, 0), - [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [1379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value, 3, 0, 20), - [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [1393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(51), - [1396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 2, 0, 0), - [1398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(848), - [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [1409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 1, 0, 0), - [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [1413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1, 0, 0), - [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [1417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(857), - [1420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(53), - [1423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), - [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1, 0, 0), - [1429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_quote_content, 2, 0, 0), - [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [1433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_quote_content, 1, 0, 0), - [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 2, 0, 0), - [1437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(212), - [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), - [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [1454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), - [1456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frontmatter_content, 1, 0, 0), - [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [1484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), - [1486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_no_newline_repeat1, 2, 0, 0), - [1488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__comment_no_newline_repeat1, 2, 0, 0), SHIFT_REPEAT(642), - [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [1521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_frontmatter_content_repeat1, 2, 0, 0), SHIFT_REPEAT(972), - [1524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_frontmatter_content_repeat1, 2, 0, 0), - [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [1528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [1530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [1532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [1534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [1536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [1538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [1540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [1542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [1544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [1546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [1548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [1550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [1552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [1556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [1558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [1562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [1574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [1576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [1578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [1580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [1582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [1584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [1586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [1598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [1604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [1608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [1616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [1620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [1628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_definition_repeat1, 2, 0, 0), - [1630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(228), - [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [1635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_period_repeat1, 2, 0, 0), - [1637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_decimal_period_repeat1, 2, 0, 0), SHIFT_REPEAT(41), - [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [1642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_paren_repeat1, 2, 0, 0), - [1644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_decimal_paren_repeat1, 2, 0, 0), SHIFT_REPEAT(25), - [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [1649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_parens_repeat1, 2, 0, 0), - [1651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_decimal_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(23), - [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [1656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_period_repeat1, 2, 0, 0), - [1658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_period_repeat1, 2, 0, 0), SHIFT_REPEAT(44), - [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [1663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_paren_repeat1, 2, 0, 0), - [1665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_paren_repeat1, 2, 0, 0), SHIFT_REPEAT(31), - [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [1670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_parens_repeat1, 2, 0, 0), - [1672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(26), - [1675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_period_repeat1, 2, 0, 0), - [1677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_period_repeat1, 2, 0, 0), SHIFT_REPEAT(47), - [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [1682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_paren_repeat1, 2, 0, 0), - [1684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_paren_repeat1, 2, 0, 0), SHIFT_REPEAT(35), - [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [1689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_parens_repeat1, 2, 0, 0), - [1691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(32), - [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_period_repeat1, 2, 0, 0), - [1698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_period_repeat1, 2, 0, 0), SHIFT_REPEAT(48), - [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [1703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_paren_repeat1, 2, 0, 0), - [1705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_paren_repeat1, 2, 0, 0), SHIFT_REPEAT(36), - [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_parens_repeat1, 2, 0, 0), - [1712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(33), - [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [1729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_period_repeat1, 2, 0, 0), - [1731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_period_repeat1, 2, 0, 0), SHIFT_REPEAT(24), - [1734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_paren_repeat1, 2, 0, 0), - [1736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_paren_repeat1, 2, 0, 0), SHIFT_REPEAT(37), - [1739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_parens_repeat1, 2, 0, 0), - [1741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(38), - [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [1750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dash, 3, 0, 16), - [1752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(788), - [1755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 3, 0, 16), - [1757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(829), - [1760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line, 2, 0, 0), - [1762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 3, 0, 16), - [1764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_task, 3, 0, 16), - [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_task, 2, 0, 4), - [1768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_item_content, 4, 0, 0), - [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__paragraph_inline_content_repeat1, 2, 0, 0), - [1776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__paragraph_inline_content_repeat1, 2, 0, 0), SHIFT_REPEAT(257), - [1779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heading_content, 2, 0, 0), - [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [1785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__heading_content_repeat1, 2, 0, 0), - [1787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__heading_content_repeat1, 2, 0, 0), SHIFT_REPEAT(299), - [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_item_content, 3, 0, 0), - [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [1796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(723), - [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [1801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_item_content_repeat1, 3, 0, 0), - [1803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 3, 0, 0), - [1805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 1, 0, 2), - [1807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 1, 0, 2), - [1809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heading_content, 1, 0, 0), - [1811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_no_newline_repeat1, 1, 0, 0), - [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [1825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_item_content_repeat1, 4, 0, 0), - [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [1829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 1, 0, 2), - [1831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 3, 0, 0), - [1833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 4, 0, 0), - [1835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(827), - [1838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(834), - [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [1845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(845), - [1848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(848), - [1851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(857), - [1854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [1856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dash, 2, 0, 4), - [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 1, 0, 2), + [1243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 2, 0, 0), SHIFT_REPEAT(25), + [1246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 2, 0, 0), SHIFT_REPEAT(828), + [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [1257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), + [1259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), SHIFT_REPEAT(46), + [1262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), SHIFT_REPEAT(880), + [1265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), + [1267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), SHIFT_REPEAT(45), + [1270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), SHIFT_REPEAT(808), + [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [1279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code, 1, 0, 0), + [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [1291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_name, 1, 0, 0), + [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [1299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, 0, 12), + [1301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_item_content_repeat1, 2, 0, 0), SHIFT_REPEAT(56), + [1304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_item_content_repeat1, 2, 0, 0), + [1306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_item_content_repeat1, 2, 0, 0), SHIFT_REPEAT(710), + [1309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 3, 0, 0), + [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [1319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 1, 0, 0), + [1321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_no_newline, 2, 0, 0), + [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [1383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 1, 0, 6), + [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [1395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1, 0, 0), + [1397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(720), + [1400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(52), + [1403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), + [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [1409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(55), + [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 2, 0, 0), + [1414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(710), + [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [1419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value, 3, 0, 19), + [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [1423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_no_newline, 3, 0, 18), + [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [1431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1, 0, 0), + [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_quote_content, 1, 0, 0), + [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [1443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(476), + [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_quote_content, 2, 0, 0), + [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 2, 0, 0), + [1450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(210), + [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), + [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [1465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), + [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [1469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frontmatter_content, 1, 0, 0), + [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [1491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_no_newline_repeat1, 2, 0, 0), + [1493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__comment_no_newline_repeat1, 2, 0, 0), SHIFT_REPEAT(686), + [1496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), + [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [1502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [1522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [1528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [1530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_frontmatter_content_repeat1, 2, 0, 0), SHIFT_REPEAT(937), + [1533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_frontmatter_content_repeat1, 2, 0, 0), + [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [1601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_definition_repeat1, 2, 0, 0), + [1603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(237), + [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [1608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_period_repeat1, 2, 0, 0), + [1610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_decimal_period_repeat1, 2, 0, 0), SHIFT_REPEAT(22), + [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [1615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_paren_repeat1, 2, 0, 0), + [1617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_decimal_paren_repeat1, 2, 0, 0), SHIFT_REPEAT(32), + [1620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [1622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_parens_repeat1, 2, 0, 0), + [1624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_decimal_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(38), + [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [1661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_period_repeat1, 2, 0, 0), + [1663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_period_repeat1, 2, 0, 0), SHIFT_REPEAT(24), + [1666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [1668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_paren_repeat1, 2, 0, 0), + [1670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_paren_repeat1, 2, 0, 0), SHIFT_REPEAT(33), + [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [1675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_parens_repeat1, 2, 0, 0), + [1677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(39), + [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [1682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_period_repeat1, 2, 0, 0), + [1684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_period_repeat1, 2, 0, 0), SHIFT_REPEAT(49), + [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [1689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_paren_repeat1, 2, 0, 0), + [1691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_paren_repeat1, 2, 0, 0), SHIFT_REPEAT(35), + [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_parens_repeat1, 2, 0, 0), + [1698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(40), + [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [1703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_period_repeat1, 2, 0, 0), + [1705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_period_repeat1, 2, 0, 0), SHIFT_REPEAT(26), + [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_paren_repeat1, 2, 0, 0), + [1712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_paren_repeat1, 2, 0, 0), SHIFT_REPEAT(36), + [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [1717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_parens_repeat1, 2, 0, 0), + [1719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(41), + [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [1724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [1728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_period_repeat1, 2, 0, 0), + [1730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_period_repeat1, 2, 0, 0), SHIFT_REPEAT(31), + [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [1735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_paren_repeat1, 2, 0, 0), + [1737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_paren_repeat1, 2, 0, 0), SHIFT_REPEAT(37), + [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [1750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_parens_repeat1, 2, 0, 0), + [1752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(43), + [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [1763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(880), + [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dash, 3, 0, 15), + [1768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 3, 0, 15), + [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 3, 0, 15), + [1772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_task, 3, 0, 15), + [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_task, 2, 0, 4), + [1776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_item_content, 4, 0, 0), + [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [1780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__paragraph_inline_content_repeat1, 2, 0, 0), + [1784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__paragraph_inline_content_repeat1, 2, 0, 0), SHIFT_REPEAT(247), + [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [1791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__heading_content_repeat1, 2, 0, 0), + [1793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__heading_content_repeat1, 2, 0, 0), SHIFT_REPEAT(286), + [1796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_item_content, 3, 0, 0), + [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [1800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_item_content_repeat1, 3, 0, 0), + [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 3, 0, 0), + [1804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(808), + [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [1811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_item_content_repeat1, 4, 0, 0), + [1813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heading_content, 1, 0, 0), + [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [1817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heading_content, 2, 0, 0), + [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [1829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 3, 0, 0), + [1831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 4, 0, 0), + [1833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(695), + [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [1840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(706), + [1843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(710), + [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 1, 0, 2), + [1848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(720), + [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [1853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(828), + [1856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 1, 0, 2), + [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dash, 2, 0, 4), [1860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 2, 0, 4), [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 2, 0, 4), - [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [1866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [1868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [1872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_decimal_parens, 2, 0, 4), - [1876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_alpha_parens, 2, 0, 4), - [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_period_repeat1, 1, 0, 2), - [1880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_paren_repeat1, 1, 0, 2), - [1884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_parens_repeat1, 1, 0, 2), - [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_alpha_parens, 2, 0, 4), - [1888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_roman_parens, 2, 0, 4), - [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [1892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_roman_parens, 2, 0, 4), - [1894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_parens_repeat1, 1, 0, 2), - [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [1900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_definition, 4, 0, 18), - [1904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_period_repeat1, 1, 0, 2), - [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [1908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_period_repeat1, 1, 0, 2), - [1910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_paren_repeat1, 1, 0, 2), - [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [1916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_inline_content, 4, 0, 0), - [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [1920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__paragraph_inline_content_repeat1, 3, 0, 0), - [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [1924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_parens_repeat1, 1, 0, 2), - [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_period_repeat1, 1, 0, 2), - [1936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_paren_repeat1, 1, 0, 2), - [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [1940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_parens_repeat1, 1, 0, 2), - [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [1944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_definition, 5, 0, 27), - [1946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [1948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_inline_content, 2, 0, 0), - [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [1958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [1960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_content, 1, 0, 0), - [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [1966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_separator_repeat1, 2, 0, 0), SHIFT_REPEAT(1012), - [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [1973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_paren_repeat1, 1, 0, 2), - [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [1977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1, 0, 0), SHIFT(314), - [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_paren_repeat1, 1, 0, 2), - [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [1986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [1996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_decimal_period, 2, 0, 4), - [1998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_alpha_period, 2, 0, 4), - [2000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_alpha_period, 2, 0, 4), - [2002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_parens_repeat1, 1, 0, 2), - [2004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(296), - [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [2009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_roman_period, 2, 0, 4), - [2011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_decimal_paren, 2, 0, 4), - [2013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_alpha_paren, 2, 0, 4), - [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_alpha_paren, 2, 0, 4), - [2017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_roman_paren, 2, 0, 4), - [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [2029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_period_repeat1, 1, 0, 2), - [2031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_inline_content, 3, 0, 0), - [2033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_roman_paren, 2, 0, 4), - [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [2077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__div_marker_begin, 1, 0, 0), - [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [2083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_definition_repeat1, 1, 0, 3), - [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [2113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_roman_period, 2, 0, 4), - [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__div_marker_begin, 3, 0, 10), - [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [2249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_label, 1, 0, 0), - [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [2255] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [2257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_separator_repeat1, 2, 0, 0), - [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [2275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block_info, 2, 0, 17), - [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [2299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_label, 1, 0, 5), - [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [2351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key, 1, 0, 0), - [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [2355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_checked, 3, 0, 0), - [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [2369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unchecked, 3, 0, 0), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_cell, 1, 0, 5), - [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [1866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_no_newline_repeat1, 1, 0, 0), + [1870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 1, 0, 2), + [1872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line, 2, 0, 0), + [1876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 1, 0, 2), + [1878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [1880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_paren_repeat1, 1, 0, 2), + [1884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_parens_repeat1, 1, 0, 2), + [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [1896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1, 0, 0), SHIFT(317), + [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [1905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_period_repeat1, 1, 0, 2), + [1907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_decimal_period, 2, 0, 4), + [1909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_alpha_period, 2, 0, 4), + [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_alpha_period, 2, 0, 4), + [1913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_roman_period, 2, 0, 4), + [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_roman_period, 2, 0, 4), + [1917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_decimal_paren, 2, 0, 4), + [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_alpha_paren, 2, 0, 4), + [1921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_paren_repeat1, 1, 0, 2), + [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_parens_repeat1, 1, 0, 2), + [1925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_inline_content, 4, 0, 0), + [1927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__paragraph_inline_content_repeat1, 3, 0, 0), + [1929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_period_repeat1, 1, 0, 2), + [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_paren_repeat1, 1, 0, 2), + [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [1937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_parens_repeat1, 1, 0, 2), + [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [1941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_period_repeat1, 1, 0, 2), + [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [1945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_paren_repeat1, 1, 0, 2), + [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [1949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_parens_repeat1, 1, 0, 2), + [1951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_period_repeat1, 1, 0, 2), + [1953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_definition, 5, 0, 26), + [1955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_inline_content, 3, 0, 0), + [1957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_alpha_paren, 2, 0, 4), + [1959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_roman_paren, 2, 0, 4), + [1961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_roman_paren, 2, 0, 4), + [1963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_decimal_parens, 2, 0, 4), + [1965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_alpha_parens, 2, 0, 4), + [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [1969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_paren_repeat1, 1, 0, 2), + [1971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_alpha_parens, 2, 0, 4), + [1973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_parens_repeat1, 1, 0, 2), + [1975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_inline_content, 2, 0, 0), + [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [1985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_content, 1, 0, 0), + [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [1989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_roman_parens, 2, 0, 4), + [1991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_roman_parens, 2, 0, 4), + [1993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_definition_repeat1, 1, 0, 3), + [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [1999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_definition, 4, 0, 17), + [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [2009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__div_marker_begin, 1, 0, 0), + [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [2027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_header_repeat1, 2, 0, 0), SHIFT_REPEAT(298), + [2030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_period_repeat1, 1, 0, 2), + [2032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [2042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_separator_repeat1, 2, 0, 0), SHIFT_REPEAT(976), + [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [2119] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [2121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_label, 1, 0, 0), + [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [2197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__div_marker_begin, 3, 0, 9), + [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [2219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_header_repeat1, 2, 0, 0), + [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [2227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_label, 1, 0, 5), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [2275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_separator_repeat1, 2, 0, 0), + [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [2369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block_info, 2, 0, 16), + [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [2397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_checked, 3, 0, 0), + [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [2403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unchecked, 3, 0, 0), + [2405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_cell, 1, 0, 5), + [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [2479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_row_repeat1, 2, 0, 0), - [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [2473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key, 1, 0, 0), + [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), }; enum ts_external_scanner_symbol_identifiers { @@ -29714,10 +29813,13 @@ enum ts_external_scanner_symbol_identifiers { ts_external_token__footnote_mark_begin = 40, ts_external_token__footnote_continuation = 41, ts_external_token__footnote_end = 42, - ts_external_token__table_caption_begin = 43, - ts_external_token__table_caption_end = 44, - ts_external_token__in_fallback = 45, - ts_external_token__error = 46, + ts_external_token__table_header_begin = 43, + ts_external_token__table_separator_begin = 44, + ts_external_token__table_row_begin = 45, + ts_external_token__table_caption_begin = 46, + ts_external_token__table_caption_end = 47, + ts_external_token__in_fallback = 48, + ts_external_token__error = 49, }; static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { @@ -29764,13 +29866,16 @@ static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { [ts_external_token__footnote_mark_begin] = sym__footnote_mark_begin, [ts_external_token__footnote_continuation] = sym__footnote_continuation, [ts_external_token__footnote_end] = sym__footnote_end, + [ts_external_token__table_header_begin] = sym__table_header_begin, + [ts_external_token__table_separator_begin] = sym__table_separator_begin, + [ts_external_token__table_row_begin] = sym__table_row_begin, [ts_external_token__table_caption_begin] = sym__table_caption_begin, [ts_external_token__table_caption_end] = sym__table_caption_end, [ts_external_token__in_fallback] = sym__in_fallback, [ts_external_token__error] = sym__error, }; -static const bool ts_external_scanner_states[81][EXTERNAL_TOKEN_COUNT] = { +static const bool ts_external_scanner_states[83][EXTERNAL_TOKEN_COUNT] = { [1] = { [ts_external_token__ignored] = true, [ts_external_token__block_close] = true, @@ -29815,6 +29920,9 @@ static const bool ts_external_scanner_states[81][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__footnote_mark_begin] = true, [ts_external_token__footnote_continuation] = true, [ts_external_token__footnote_end] = true, + [ts_external_token__table_header_begin] = true, + [ts_external_token__table_separator_begin] = true, + [ts_external_token__table_row_begin] = true, [ts_external_token__table_caption_begin] = true, [ts_external_token__table_caption_end] = true, [ts_external_token__in_fallback] = true, @@ -29850,9 +29958,11 @@ static const bool ts_external_scanner_states[81][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__block_quote_continuation] = true, [ts_external_token__thematic_break_dash] = true, [ts_external_token__thematic_break_star] = true, + [ts_external_token__table_header_begin] = true, + [ts_external_token__table_separator_begin] = true, + [ts_external_token__table_row_begin] = true, }, [3] = { - [ts_external_token__block_close] = true, [ts_external_token__newline] = true, [ts_external_token__heading_begin] = true, [ts_external_token__div_begin] = true, @@ -29881,8 +29991,12 @@ static const bool ts_external_scanner_states[81][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__block_quote_continuation] = true, [ts_external_token__thematic_break_dash] = true, [ts_external_token__thematic_break_star] = true, + [ts_external_token__table_header_begin] = true, + [ts_external_token__table_separator_begin] = true, + [ts_external_token__table_row_begin] = true, }, [4] = { + [ts_external_token__block_close] = true, [ts_external_token__newline] = true, [ts_external_token__heading_begin] = true, [ts_external_token__div_begin] = true, @@ -29911,6 +30025,9 @@ static const bool ts_external_scanner_states[81][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__block_quote_continuation] = true, [ts_external_token__thematic_break_dash] = true, [ts_external_token__thematic_break_star] = true, + [ts_external_token__table_header_begin] = true, + [ts_external_token__table_separator_begin] = true, + [ts_external_token__table_row_begin] = true, }, [5] = { [ts_external_token__heading_begin] = true, @@ -29940,6 +30057,9 @@ static const bool ts_external_scanner_states[81][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__block_quote_continuation] = true, [ts_external_token__thematic_break_dash] = true, [ts_external_token__thematic_break_star] = true, + [ts_external_token__table_header_begin] = true, + [ts_external_token__table_separator_begin] = true, + [ts_external_token__table_row_begin] = true, }, [6] = { [ts_external_token__block_close] = true, @@ -29969,8 +30089,12 @@ static const bool ts_external_scanner_states[81][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__block_quote_continuation] = true, [ts_external_token__thematic_break_dash] = true, [ts_external_token__thematic_break_star] = true, + [ts_external_token__table_header_begin] = true, + [ts_external_token__table_separator_begin] = true, + [ts_external_token__table_row_begin] = true, }, [7] = { + [ts_external_token__block_close] = true, [ts_external_token__newline] = true, [ts_external_token__heading_begin] = true, [ts_external_token__div_begin] = true, @@ -29999,10 +30123,12 @@ static const bool ts_external_scanner_states[81][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__block_quote_continuation] = true, [ts_external_token__thematic_break_dash] = true, [ts_external_token__thematic_break_star] = true, + [ts_external_token__table_header_begin] = true, + [ts_external_token__table_separator_begin] = true, + [ts_external_token__table_row_begin] = true, [ts_external_token__table_caption_begin] = true, }, [8] = { - [ts_external_token__block_close] = true, [ts_external_token__newline] = true, [ts_external_token__heading_begin] = true, [ts_external_token__div_begin] = true, @@ -30031,15 +30157,18 @@ static const bool ts_external_scanner_states[81][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__block_quote_continuation] = true, [ts_external_token__thematic_break_dash] = true, [ts_external_token__thematic_break_star] = true, + [ts_external_token__table_header_begin] = true, + [ts_external_token__table_separator_begin] = true, + [ts_external_token__table_row_begin] = true, [ts_external_token__table_caption_begin] = true, }, [9] = { [ts_external_token__block_close] = true, + [ts_external_token__eof_or_newline] = true, [ts_external_token__newline] = true, [ts_external_token__heading_begin] = true, [ts_external_token__div_begin] = true, [ts_external_token__code_block_begin] = true, - [ts_external_token__code_block_end] = true, [ts_external_token_list_marker_dash] = true, [ts_external_token_list_marker_star] = true, [ts_external_token_list_marker_plus] = true, @@ -30064,6 +30193,9 @@ static const bool ts_external_scanner_states[81][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__block_quote_continuation] = true, [ts_external_token__thematic_break_dash] = true, [ts_external_token__thematic_break_star] = true, + [ts_external_token__table_header_begin] = true, + [ts_external_token__table_separator_begin] = true, + [ts_external_token__table_row_begin] = true, }, [10] = { [ts_external_token__block_close] = true, @@ -30096,8 +30228,12 @@ static const bool ts_external_scanner_states[81][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__block_quote_continuation] = true, [ts_external_token__thematic_break_dash] = true, [ts_external_token__thematic_break_star] = true, + [ts_external_token__table_header_begin] = true, + [ts_external_token__table_separator_begin] = true, + [ts_external_token__table_row_begin] = true, }, [11] = { + [ts_external_token__block_close] = true, [ts_external_token__newline] = true, [ts_external_token__heading_begin] = true, [ts_external_token__div_begin] = true, @@ -30127,13 +30263,16 @@ static const bool ts_external_scanner_states[81][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__block_quote_continuation] = true, [ts_external_token__thematic_break_dash] = true, [ts_external_token__thematic_break_star] = true, + [ts_external_token__table_header_begin] = true, + [ts_external_token__table_separator_begin] = true, + [ts_external_token__table_row_begin] = true, }, [12] = { - [ts_external_token__eof_or_newline] = true, [ts_external_token__newline] = true, [ts_external_token__heading_begin] = true, [ts_external_token__div_begin] = true, [ts_external_token__code_block_begin] = true, + [ts_external_token__code_block_end] = true, [ts_external_token_list_marker_dash] = true, [ts_external_token_list_marker_star] = true, [ts_external_token_list_marker_plus] = true, @@ -30158,6 +30297,9 @@ static const bool ts_external_scanner_states[81][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__block_quote_continuation] = true, [ts_external_token__thematic_break_dash] = true, [ts_external_token__thematic_break_star] = true, + [ts_external_token__table_header_begin] = true, + [ts_external_token__table_separator_begin] = true, + [ts_external_token__table_row_begin] = true, }, [13] = { [ts_external_token__newline] = true, @@ -30189,9 +30331,11 @@ static const bool ts_external_scanner_states[81][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__block_quote_continuation] = true, [ts_external_token__thematic_break_dash] = true, [ts_external_token__thematic_break_star] = true, + [ts_external_token__table_header_begin] = true, + [ts_external_token__table_separator_begin] = true, + [ts_external_token__table_row_begin] = true, }, [14] = { - [ts_external_token__block_close] = true, [ts_external_token__eof_or_newline] = true, [ts_external_token__newline] = true, [ts_external_token__heading_begin] = true, @@ -30221,77 +30365,101 @@ static const bool ts_external_scanner_states[81][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__block_quote_continuation] = true, [ts_external_token__thematic_break_dash] = true, [ts_external_token__thematic_break_star] = true, + [ts_external_token__table_header_begin] = true, + [ts_external_token__table_separator_begin] = true, + [ts_external_token__table_row_begin] = true, }, [15] = { - [ts_external_token__eof_or_newline] = true, - [ts_external_token__newline_inline] = true, - }, - [16] = { [ts_external_token__block_close] = true, [ts_external_token_list_marker_dash] = true, [ts_external_token_list_marker_star] = true, [ts_external_token_list_marker_plus] = true, [ts_external_token__list_marker_task_begin] = true, + [ts_external_token__table_header_begin] = true, + [ts_external_token__table_separator_begin] = true, + [ts_external_token__table_row_begin] = true, }, - [17] = { - [ts_external_token__block_quote_continuation] = true, - }, - [18] = { + [16] = { [ts_external_token_list_marker_dash] = true, [ts_external_token_list_marker_star] = true, [ts_external_token_list_marker_plus] = true, [ts_external_token__list_marker_task_begin] = true, + [ts_external_token__table_header_begin] = true, + [ts_external_token__table_separator_begin] = true, + [ts_external_token__table_row_begin] = true, }, - [19] = { - [ts_external_token__table_caption_end] = true, + [17] = { + [ts_external_token__eof_or_newline] = true, + [ts_external_token__newline_inline] = true, }, - [20] = { + [18] = { [ts_external_token__block_close] = true, [ts_external_token_list_marker_dash] = true, [ts_external_token_list_marker_star] = true, [ts_external_token_list_marker_plus] = true, [ts_external_token__list_marker_task_begin] = true, [ts_external_token__block_quote_continuation] = true, + [ts_external_token__table_header_begin] = true, + [ts_external_token__table_separator_begin] = true, + [ts_external_token__table_row_begin] = true, }, - [21] = { + [19] = { [ts_external_token_list_marker_dash] = true, [ts_external_token_list_marker_star] = true, [ts_external_token_list_marker_plus] = true, [ts_external_token__list_marker_task_begin] = true, [ts_external_token__block_quote_continuation] = true, + [ts_external_token__table_header_begin] = true, + [ts_external_token__table_separator_begin] = true, + [ts_external_token__table_row_begin] = true, }, - [22] = { - [ts_external_token__newline] = true, - }, - [23] = { - [ts_external_token__eof_or_newline] = true, + [20] = { + [ts_external_token__block_quote_continuation] = true, }, - [24] = { + [21] = { [ts_external_token__newline] = true, [ts_external_token__list_item_continuation] = true, [ts_external_token__list_item_end] = true, [ts_external_token__block_quote_continuation] = true, + [ts_external_token__table_header_begin] = true, + [ts_external_token__table_separator_begin] = true, + [ts_external_token__table_row_begin] = true, [ts_external_token__table_caption_begin] = true, }, - [25] = { + [22] = { + [ts_external_token__table_caption_end] = true, + }, + [23] = { [ts_external_token__newline] = true, [ts_external_token__indented_content_spacer] = true, [ts_external_token__block_quote_continuation] = true, + [ts_external_token__table_header_begin] = true, + [ts_external_token__table_separator_begin] = true, + [ts_external_token__table_row_begin] = true, [ts_external_token__table_caption_begin] = true, }, - [26] = { + [24] = { [ts_external_token__block_close] = true, [ts_external_token__newline] = true, [ts_external_token__block_quote_continuation] = true, + [ts_external_token__table_header_begin] = true, + [ts_external_token__table_separator_begin] = true, + [ts_external_token__table_row_begin] = true, [ts_external_token__table_caption_begin] = true, }, + [25] = { + [ts_external_token__newline] = true, + }, + [26] = { + [ts_external_token__eof_or_newline] = true, + }, [27] = { [ts_external_token__block_close] = true, + [ts_external_token__list_marker_task_begin] = true, [ts_external_token__block_quote_continuation] = true, }, [28] = { [ts_external_token__block_close] = true, - [ts_external_token__list_marker_task_begin] = true, [ts_external_token__block_quote_continuation] = true, }, [29] = { @@ -30320,113 +30488,115 @@ static const bool ts_external_scanner_states[81][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__footnote_end] = true, }, [34] = { + [ts_external_token__table_header_begin] = true, + [ts_external_token__table_separator_begin] = true, + [ts_external_token__table_row_begin] = true, + }, + [35] = { [ts_external_token__list_item_continuation] = true, [ts_external_token__list_item_end] = true, [ts_external_token__block_quote_continuation] = true, [ts_external_token__table_caption_begin] = true, }, - [35] = { - [ts_external_token__block_close] = true, - [ts_external_token_list_marker_upper_alpha_parens] = true, - }, [36] = { - [ts_external_token__block_close] = true, [ts_external_token__block_quote_continuation] = true, - [ts_external_token__table_caption_begin] = true, + [ts_external_token__table_header_begin] = true, + [ts_external_token__table_separator_begin] = true, + [ts_external_token__table_row_begin] = true, }, [37] = { - [ts_external_token__eof_or_newline] = true, + [ts_external_token__code_block_end] = true, [ts_external_token__list_item_continuation] = true, [ts_external_token__list_item_end] = true, [ts_external_token__block_quote_continuation] = true, }, [38] = { - [ts_external_token_frontmatter_marker] = true, + [ts_external_token__block_close] = true, + [ts_external_token__block_quote_continuation] = true, + [ts_external_token__table_caption_begin] = true, }, [39] = { - [ts_external_token__div_end] = true, + [ts_external_token__eof_or_newline] = true, [ts_external_token__list_item_continuation] = true, [ts_external_token__list_item_end] = true, [ts_external_token__block_quote_continuation] = true, }, [40] = { - [ts_external_token__code_block_end] = true, + [ts_external_token_frontmatter_marker] = true, + }, + [41] = { + [ts_external_token__div_end] = true, [ts_external_token__list_item_continuation] = true, [ts_external_token__list_item_end] = true, [ts_external_token__block_quote_continuation] = true, }, - [41] = { - [ts_external_token__block_close] = true, - [ts_external_token_list_marker_definition] = true, - }, [42] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_decimal_period] = true, + [ts_external_token_list_marker_definition] = true, }, [43] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_decimal_paren] = true, + [ts_external_token_list_marker_decimal_period] = true, }, [44] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_decimal_parens] = true, + [ts_external_token_list_marker_decimal_paren] = true, }, [45] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_lower_alpha_period] = true, + [ts_external_token_list_marker_decimal_parens] = true, }, [46] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_lower_alpha_paren] = true, + [ts_external_token_list_marker_lower_alpha_period] = true, }, [47] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_lower_alpha_parens] = true, + [ts_external_token_list_marker_lower_alpha_paren] = true, }, [48] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_upper_alpha_period] = true, + [ts_external_token_list_marker_lower_alpha_parens] = true, }, [49] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_upper_alpha_paren] = true, + [ts_external_token_list_marker_upper_alpha_period] = true, }, [50] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_lower_roman_period] = true, + [ts_external_token_list_marker_upper_alpha_paren] = true, }, [51] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_lower_roman_paren] = true, + [ts_external_token_list_marker_upper_alpha_parens] = true, }, [52] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_lower_roman_parens] = true, + [ts_external_token_list_marker_lower_roman_period] = true, }, [53] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_upper_roman_paren] = true, + [ts_external_token_list_marker_lower_roman_paren] = true, }, [54] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_upper_roman_parens] = true, + [ts_external_token_list_marker_lower_roman_parens] = true, }, [55] = { [ts_external_token__block_close] = true, [ts_external_token_list_marker_upper_roman_period] = true, }, [56] = { - [ts_external_token_list_marker_dash] = true, - [ts_external_token__block_quote_continuation] = true, + [ts_external_token__block_close] = true, + [ts_external_token_list_marker_upper_roman_paren] = true, }, [57] = { [ts_external_token__block_close] = true, - [ts_external_token__heading_continuation] = true, + [ts_external_token_list_marker_upper_roman_parens] = true, }, [58] = { - [ts_external_token__block_close] = true, - [ts_external_token__eof_or_newline] = true, - [ts_external_token__block_quote_continuation] = true, + [ts_external_token__indented_content_spacer] = true, + [ts_external_token__table_caption_begin] = true, }, [59] = { [ts_external_token_list_marker_plus] = true, @@ -30434,41 +30604,42 @@ static const bool ts_external_scanner_states[81][EXTERNAL_TOKEN_COUNT] = { }, [60] = { [ts_external_token__block_close] = true, - [ts_external_token__code_block_end] = true, + [ts_external_token__div_end] = true, [ts_external_token__block_quote_continuation] = true, }, [61] = { [ts_external_token__block_close] = true, - [ts_external_token__div_end] = true, + [ts_external_token__code_block_end] = true, [ts_external_token__block_quote_continuation] = true, }, [62] = { - [ts_external_token_list_marker_star] = true, - [ts_external_token__block_quote_continuation] = true, + [ts_external_token__block_close] = true, + [ts_external_token__heading_continuation] = true, }, [63] = { - [ts_external_token__list_marker_task_begin] = true, + [ts_external_token_list_marker_star] = true, [ts_external_token__block_quote_continuation] = true, }, [64] = { - [ts_external_token__list_item_continuation] = true, + [ts_external_token_list_marker_dash] = true, [ts_external_token__block_quote_continuation] = true, }, [65] = { + [ts_external_token__list_marker_task_begin] = true, [ts_external_token__block_quote_continuation] = true, - [ts_external_token__footnote_continuation] = true, }, [66] = { - [ts_external_token__indented_content_spacer] = true, - [ts_external_token__table_caption_begin] = true, + [ts_external_token__list_item_continuation] = true, + [ts_external_token__block_quote_continuation] = true, }, [67] = { - [ts_external_token__eof_or_newline] = true, - [ts_external_token__close_paragraph] = true, + [ts_external_token__block_quote_continuation] = true, + [ts_external_token__footnote_continuation] = true, }, [68] = { - [ts_external_token__code_block_end] = true, - [ts_external_token__indented_content_spacer] = true, + [ts_external_token__block_close] = true, + [ts_external_token__eof_or_newline] = true, + [ts_external_token__block_quote_continuation] = true, }, [69] = { [ts_external_token__footnote_mark_begin] = true, @@ -30476,39 +30647,47 @@ static const bool ts_external_scanner_states[81][EXTERNAL_TOKEN_COUNT] = { }, [70] = { [ts_external_token__eof_or_newline] = true, - [ts_external_token__indented_content_spacer] = true, + [ts_external_token__close_paragraph] = true, }, [71] = { - [ts_external_token__list_marker_task_begin] = true, - }, - [72] = { [ts_external_token__div_end] = true, [ts_external_token__indented_content_spacer] = true, }, + [72] = { + [ts_external_token__list_marker_task_begin] = true, + }, [73] = { + [ts_external_token__eof_or_newline] = true, [ts_external_token__indented_content_spacer] = true, }, [74] = { - [ts_external_token__block_close] = true, + [ts_external_token__code_block_end] = true, + [ts_external_token__indented_content_spacer] = true, }, [75] = { - [ts_external_token_list_marker_star] = true, + [ts_external_token__indented_content_spacer] = true, }, [76] = { - [ts_external_token__footnote_continuation] = true, + [ts_external_token_list_marker_star] = true, }, [77] = { - [ts_external_token__footnote_mark_begin] = true, + [ts_external_token__block_close] = true, }, [78] = { - [ts_external_token__list_item_continuation] = true, + [ts_external_token__footnote_continuation] = true, }, [79] = { - [ts_external_token_list_marker_dash] = true, + [ts_external_token__footnote_mark_begin] = true, }, [80] = { + [ts_external_token_list_marker_dash] = true, + }, + [81] = { [ts_external_token_list_marker_plus] = true, }, + [82] = { + [ts_external_token__list_item_continuation] = true, + }, }; #ifdef __cplusplus diff --git a/tree-sitter-djot/src/scanner.c b/tree-sitter-djot/src/scanner.c index 1fad5c9..c0f5be8 100644 --- a/tree-sitter-djot/src/scanner.c +++ b/tree-sitter-djot/src/scanner.c @@ -58,6 +58,9 @@ typedef enum { FOOTNOTE_MARK_BEGIN, FOOTNOTE_CONTINUATION, FOOTNOTE_END, + TABLE_HEADER_BEGIN, + TABLE_SEPARATOR_BEGIN, + TABLE_ROW_BEGIN, TABLE_CAPTION_BEGIN, TABLE_CAPTION_END, @@ -1422,6 +1425,172 @@ static bool parse_footnote_end(Scanner *s, TSLexer *lexer, return true; } +static bool scan_verbatim_to_end_no_newline(Scanner *s, TSLexer *lexer, + uint8_t tick_count) { + while (!lexer->eof(lexer)) { + switch (lexer->lookahead) { + case '\\': + advance(s, lexer); + advance(s, lexer); + break; + case '`': + if (consume_chars(s, lexer, '`') == tick_count) { + return true; + } + break; + case '\n': + return false; + default: + advance(s, lexer); + } + } + return false; +} + +// Scan from a `|` to the next `|`, respecting verbatim and escapes. +// May not contain any newline. +static bool scan_table_cell(Scanner *s, TSLexer *lexer, bool *separator) { + consume_whitespace(s, lexer); + + *separator = true; + + bool first_char = true; + while (!lexer->eof(lexer)) { + switch (lexer->lookahead) { + case '\\': + *separator = false; + advance(s, lexer); + advance(s, lexer); + break; + case '\n': + return false; + case '`': + *separator = false; + // We must have ending ticks for this to be a valid table cell. + if (!scan_verbatim_to_end_no_newline(s, lexer, + consume_chars(s, lexer, '`'))) { + return false; + } + break; + + case '|': + return true; + case ':': + advance(s, lexer); + + consume_whitespace(s, lexer); + // A `:` can begin or end a separator cell. + if (lexer->lookahead == '|') { + return true; + } else if (!first_char) { + *separator = false; + } + break; + case '-': + advance(s, lexer); + break; + default: + *separator = false; + advance(s, lexer); + break; + } + + first_char = false; + } + return false; +} + +static bool scan_separator_row(Scanner *s, TSLexer *lexer) { + uint8_t cell_count = 0; + bool curr_separator; + while (scan_table_cell(s, lexer, &curr_separator)) { + if (!curr_separator) { + return false; + } + ++cell_count; + if (lexer->lookahead == '|') { + advance(s, lexer); + } + } + + if (cell_count == 0) { + return false; + } + + // Nothing but whitespace and then a newline may follow a table row. + consume_whitespace(s, lexer); + return lexer->lookahead == '\n'; +} + +static bool scan_table_row(Scanner *s, TSLexer *lexer, TokenType *row_type) { + + uint8_t cell_count = 0; + bool all_separators = true; + bool curr_separator; + while (scan_table_cell(s, lexer, &curr_separator)) { + if (!curr_separator) { + all_separators = false; + } + ++cell_count; + if (lexer->lookahead == '|') { + advance(s, lexer); + } + } + + if (cell_count == 0) { + return false; + } + + // Nothing but whitespace and then a newline may follow a table row. + consume_whitespace(s, lexer); + if (lexer->lookahead != '\n') { + return false; + } + + // Consume newline. + advance(s, lexer); + if (all_separators) { + *row_type = TABLE_SEPARATOR_BEGIN; + } else { + // We need to check the next row and if that is full of separators then + // this is a header, otherwise it's a regular row. + // We also need to check for any block quote markers on that row. + bool newline = false; + scan_block_quote_markers(s, lexer, &newline); + + if (!newline && scan_separator_row(s, lexer)) { + *row_type = TABLE_HEADER_BEGIN; + } else { + *row_type = TABLE_ROW_BEGIN; + } + } + return true; +} + +static bool parse_table_begin(Scanner *s, TSLexer *lexer, + const bool *valid_symbols) { + if (lexer->lookahead != '|') { + return false; + } + if (!valid_symbols[TABLE_ROW_BEGIN] && + !valid_symbols[TABLE_SEPARATOR_BEGIN] && + !valid_symbols[TABLE_HEADER_BEGIN]) { + return false; + } + + // The tokens should consume the pipe. + advance(s, lexer); + lexer->mark_end(lexer); + + TokenType row_type; + if (!scan_table_row(s, lexer, &row_type)) { + return false; + } + + lexer->result_symbol = row_type; + return true; +} + static bool parse_table_caption_begin(Scanner *s, TSLexer *lexer) { if (lexer->lookahead != '^') { return false; @@ -1750,6 +1919,9 @@ bool tree_sitter_djot_external_scanner_scan(void *payload, TSLexer *lexer, parse_table_caption_begin(s, lexer)) { return true; } + if (parse_table_begin(s, lexer, valid_symbols)) { + return true; + } // May scan a complete list marker, which we can't do before checking if // we should output the list marker itself. @@ -1903,6 +2075,8 @@ static char *token_type_s(TokenType t) { return "LIST_ITEM_CONTINUATION"; case LIST_ITEM_END: return "LIST_ITEM_END"; + case INDENTED_CONTENT_SPACER: + return "INDENTED_CONTENT_SPACER"; case CLOSE_PARAGRAPH: return "CLOSE_PARAGRAPH"; case BLOCK_QUOTE_BEGIN: @@ -1915,19 +2089,27 @@ static char *token_type_s(TokenType t) { return "THEMATIC_BREAK_STAR"; case FOOTNOTE_MARK_BEGIN: return "FOOTNOTE_MARK_BEGIN"; + case FOOTNOTE_CONTINUATION: + return "FOOTNOTE_CONTINUATION"; case FOOTNOTE_END: return "FOOTNOTE_END"; + case TABLE_HEADER_BEGIN: + return "TABLE_HEADER_BEGIN"; + case TABLE_SEPARATOR_BEGIN: + return "TABLE_SEPARATOR_BEGIN"; + case TABLE_ROW_BEGIN: + return "TABLE_ROW_BEGIN"; case TABLE_CAPTION_BEGIN: return "TABLE_CAPTION_BEGIN"; case TABLE_CAPTION_END: return "TABLE_CAPTION_END"; + case IN_FALLBACK: + return "IN_FALLBACK"; case ERROR: return "ERROR"; case IGNORED: return "IGNORED"; - default: - return "NOT IMPLEMENTED"; } } @@ -1987,8 +2169,6 @@ static char *block_type_s(BlockType t) { return "LIST_LOWER_ROMAN_PARENS"; case LIST_UPPER_ROMAN_PARENS: return "LIST_UPPER_ROMAN_PARENS"; - default: - return "NOT IMPLEMENTED"; } } @@ -2020,46 +2200,46 @@ static void dump(Scanner *s, TSLexer *lexer) { } static void dump_valid_symbols(const bool *valid_symbols) { - // printf("# valid_symbols:\n"); - // for (int i = 0; i <= ERROR; ++i) { - // if (valid_symbols[i]) { - // printf("%s\n", token_type_s(i)); - // } - // } if (valid_symbols[ERROR]) { printf("# In error recovery ALL SYMBOLS ARE VALID\n"); return; } - printf("# valid_symbols (shortened):\n"); + printf("# valid_symbols:\n"); for (int i = 0; i <= ERROR; ++i) { - switch (i) { - case BLOCK_CLOSE: - // case BLOCK_QUOTE_BEGIN: - case BLOCK_QUOTE_CONTINUATION: - case CLOSE_PARAGRAPH: - // case FOOTNOTE_BEGIN: - // case FOOTNOTE_END: - case NEWLINE: - case NEWLINE_INLINE: - // case LIST_MARKER_TASK_BEGIN: - case LIST_MARKER_DASH: - // case LIST_MARKER_STAR: - // case LIST_MARKER_PLUS: - case LIST_ITEM_CONTINUATION: - case LIST_ITEM_END: - case EOF_OR_NEWLINE: - case DIV_BEGIN: - case DIV_END: - // case TABLE_CAPTION_BEGIN: - // case TABLE_CAPTION_END: - if (valid_symbols[i]) { - printf("%s\n", token_type_s(i)); - } - break; - default: - continue; + if (valid_symbols[i]) { + printf("%s\n", token_type_s(i)); } } + // printf("# valid_symbols (shortened):\n"); + // for (int i = 0; i <= ERROR; ++i) { + // switch (i) { + // case BLOCK_CLOSE: + // // case BLOCK_QUOTE_BEGIN: + // case BLOCK_QUOTE_CONTINUATION: + // case CLOSE_PARAGRAPH: + // // case FOOTNOTE_BEGIN: + // // case FOOTNOTE_END: + // case NEWLINE: + // case NEWLINE_INLINE: + // // case LIST_MARKER_TASK_BEGIN: + // case LIST_MARKER_DASH: + // // case LIST_MARKER_STAR: + // // case LIST_MARKER_PLUS: + // case LIST_ITEM_CONTINUATION: + // case LIST_ITEM_END: + // case EOF_OR_NEWLINE: + // case DIV_BEGIN: + // case DIV_END: + // // case TABLE_CAPTION_BEGIN: + // // case TABLE_CAPTION_END: + // if (valid_symbols[i]) { + // printf("%s\n", token_type_s(i)); + // } + // break; + // default: + // continue; + // } + // } printf("#\n"); } diff --git a/tree-sitter-djot/test/corpus/syntax.txt b/tree-sitter-djot/test/corpus/syntax.txt index d5833c3..b6001e6 100644 --- a/tree-sitter-djot/test/corpus/syntax.txt +++ b/tree-sitter-djot/test/corpus/syntax.txt @@ -2967,12 +2967,12 @@ Table: inside blockquote (table_header (table_cell (inline)) (table_cell (inline))) + (block_quote_marker) (table_separator - (block_quote_marker) (table_cell_alignment) (table_cell_alignment)) + (block_quote_marker) (table_row - (block_quote_marker) (table_cell (inline)) (table_cell (inline))))))) From ce0d52f64e77def39b2a590fff290908fde0befc Mon Sep 17 00:00:00 2001 From: Jonas Hietala Date: Thu, 23 Jan 2025 13:27:52 +0100 Subject: [PATCH 42/46] fix: Escape pipes and verbatim support in table cells --- tree-sitter-djot/grammar.js | 6 +- tree-sitter-djot/src/grammar.json | 30 +- tree-sitter-djot/src/node-types.json | 8 - tree-sitter-djot/src/parser.c | 32044 +++++++++++----------- tree-sitter-djot/src/scanner.c | 14 + tree-sitter-djot/test/corpus/syntax.txt | 24 + 6 files changed, 15538 insertions(+), 16588 deletions(-) diff --git a/tree-sitter-djot/grammar.js b/tree-sitter-djot/grammar.js index 4841f0c..2edd639 100644 --- a/tree-sitter-djot/grammar.js +++ b/tree-sitter-djot/grammar.js @@ -385,8 +385,8 @@ module.exports = grammar({ $._newline, ), ), + table_cell: ($) => alias($._table_cell, $.inline), table_cell_alignment: (_) => token.immediate(prec(100, /\s*:?-+:?\s*/)), - table_cell: ($) => alias($._inline, $.inline), table_caption: ($) => seq( field("marker", alias($._table_caption_begin, $.marker)), @@ -585,9 +585,7 @@ module.exports = grammar({ choice( "[", "{", - "{-", ".", - "#", "%", // To capture dangling identifiers after `{` token(seq("#", token.immediate(/[^\s\}]+/))), @@ -725,6 +723,8 @@ module.exports = grammar({ $._table_header_begin, $._table_separator_begin, $._table_row_begin, + // Use external scanner for the cell to manage escaping and verbatim. + $._table_cell, // Table captions have significant whitespace but contain only inline. $._table_caption_begin, $._table_caption_end, diff --git a/tree-sitter-djot/src/grammar.json b/tree-sitter-djot/src/grammar.json index a60f01a..1225639 100644 --- a/tree-sitter-djot/src/grammar.json +++ b/tree-sitter-djot/src/grammar.json @@ -1663,6 +1663,15 @@ ] } }, + "table_cell": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_table_cell" + }, + "named": true, + "value": "inline" + }, "table_cell_alignment": { "type": "IMMEDIATE_TOKEN", "content": { @@ -1674,15 +1683,6 @@ } } }, - "table_cell": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_inline" - }, - "named": true, - "value": "inline" - }, "table_caption": { "type": "SEQ", "members": [ @@ -2674,18 +2674,10 @@ "type": "STRING", "value": "{" }, - { - "type": "STRING", - "value": "{-" - }, { "type": "STRING", "value": "." }, - { - "type": "STRING", - "value": "#" - }, { "type": "STRING", "value": "%" @@ -2991,6 +2983,10 @@ "type": "SYMBOL", "name": "_table_row_begin" }, + { + "type": "SYMBOL", + "name": "_table_cell" + }, { "type": "SYMBOL", "name": "_table_caption_begin" diff --git a/tree-sitter-djot/src/node-types.json b/tree-sitter-djot/src/node-types.json index 30f4b42..e65c0a2 100644 --- a/tree-sitter-djot/src/node-types.json +++ b/tree-sitter-djot/src/node-types.json @@ -1223,10 +1223,6 @@ "type": "\"", "named": false }, - { - "type": "#", - "named": false - }, { "type": "%", "named": false @@ -1403,10 +1399,6 @@ "type": "{", "named": false }, - { - "type": "{-", - "named": false - }, { "type": "|", "named": false diff --git a/tree-sitter-djot/src/parser.c b/tree-sitter-djot/src/parser.c index ffa012a..53c5eab 100644 --- a/tree-sitter-djot/src/parser.c +++ b/tree-sitter-djot/src/parser.c @@ -5,12 +5,12 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 1158 +#define STATE_COUNT 1154 #define LARGE_STATE_COUNT 66 -#define SYMBOL_COUNT 213 +#define SYMBOL_COUNT 212 #define ALIAS_COUNT 8 -#define TOKEN_COUNT 82 -#define EXTERNAL_TOKEN_COUNT 50 +#define TOKEN_COUNT 81 +#define EXTERNAL_TOKEN_COUNT 51 #define FIELD_COUNT 15 #define MAX_ALIAS_SEQUENCE_LENGTH 8 #define PRODUCTION_ID_COUNT 35 @@ -41,201 +41,200 @@ enum ts_symbol_identifiers { sym__whitespace = 23, sym__whitespace1 = 24, aux_sym__inline_token1 = 25, - anon_sym_LBRACE_DASH = 26, - anon_sym_POUND = 27, - anon_sym_PERCENT = 28, - sym_backslash_escape = 29, - sym__id = 30, - aux_sym__comment_no_newline_token1 = 31, - sym__ignored = 32, - sym__block_close = 33, - sym__eof_or_newline = 34, - sym__newline = 35, - sym__newline_inline = 36, - sym_frontmatter_marker = 37, - sym__heading_begin = 38, - sym__heading_continuation = 39, - sym__div_begin = 40, - sym__div_end = 41, - sym__code_block_begin = 42, - sym__code_block_end = 43, - sym_list_marker_dash = 44, - sym_list_marker_star = 45, - sym_list_marker_plus = 46, - sym__list_marker_task_begin = 47, - sym_list_marker_definition = 48, - sym_list_marker_decimal_period = 49, - sym_list_marker_lower_alpha_period = 50, - sym_list_marker_upper_alpha_period = 51, - sym_list_marker_lower_roman_period = 52, - sym_list_marker_upper_roman_period = 53, - sym_list_marker_decimal_paren = 54, - sym_list_marker_lower_alpha_paren = 55, - sym_list_marker_upper_alpha_paren = 56, - sym_list_marker_lower_roman_paren = 57, - sym_list_marker_upper_roman_paren = 58, - sym_list_marker_decimal_parens = 59, - sym_list_marker_lower_alpha_parens = 60, - sym_list_marker_upper_alpha_parens = 61, - sym_list_marker_lower_roman_parens = 62, - sym_list_marker_upper_roman_parens = 63, - sym__list_item_continuation = 64, - sym__list_item_end = 65, - sym__indented_content_spacer = 66, - sym__close_paragraph = 67, - sym__block_quote_begin = 68, - sym__block_quote_continuation = 69, - sym__thematic_break_dash = 70, - sym__thematic_break_star = 71, - sym__footnote_mark_begin = 72, - sym__footnote_continuation = 73, - sym__footnote_end = 74, - sym__table_header_begin = 75, - sym__table_separator_begin = 76, - sym__table_row_begin = 77, - sym__table_caption_begin = 78, - sym__table_caption_end = 79, - sym__in_fallback = 80, - sym__error = 81, - sym_document = 82, - sym_frontmatter = 83, - sym_frontmatter_content = 84, - sym__block_with_section = 85, - sym__block_with_heading = 86, - sym__block_element = 87, - sym_section = 88, - sym_heading = 89, - sym__heading_content = 90, - sym_list = 91, - sym__list_dash = 92, - sym__list_item_dash = 93, - sym__list_plus = 94, - sym__list_item_plus = 95, - sym__list_star = 96, - sym__list_item_star = 97, - sym__list_task = 98, - sym__list_item_task = 99, - sym_list_marker_task = 100, - sym_checked = 101, - sym_unchecked = 102, - sym__list_definition = 103, - sym__list_item_definition = 104, - sym__list_decimal_period = 105, - sym__list_item_decimal_period = 106, - sym__list_decimal_paren = 107, - sym__list_item_decimal_paren = 108, - sym__list_decimal_parens = 109, - sym__list_item_decimal_parens = 110, - sym__list_lower_alpha_period = 111, - sym__list_item_lower_alpha_period = 112, - sym__list_lower_alpha_paren = 113, - sym__list_item_lower_alpha_paren = 114, - sym__list_lower_alpha_parens = 115, - sym__list_item_lower_alpha_parens = 116, - sym__list_upper_alpha_period = 117, - sym__list_item_upper_alpha_period = 118, - sym__list_upper_alpha_paren = 119, - sym__list_item_upper_alpha_paren = 120, - sym__list_upper_alpha_parens = 121, - sym__list_item_upper_alpha_parens = 122, - sym__list_lower_roman_period = 123, - sym__list_item_lower_roman_period = 124, - sym__list_lower_roman_paren = 125, - sym__list_item_lower_roman_paren = 126, - sym__list_lower_roman_parens = 127, - sym__list_item_lower_roman_parens = 128, - sym__list_upper_roman_period = 129, - sym__list_item_upper_roman_period = 130, - sym__list_upper_roman_paren = 131, - sym__list_item_upper_roman_paren = 132, - sym__list_upper_roman_parens = 133, - sym__list_item_upper_roman_parens = 134, - sym_list_item_content = 135, - sym_table = 136, - sym__table_row = 137, - sym_table_header = 138, - sym_table_separator = 139, - sym_table_row = 140, - sym_table_cell = 141, - sym_table_caption = 142, - sym_footnote = 143, - sym_footnote_marker_begin = 144, - sym_footnote_content = 145, - sym_div = 146, - sym__div_marker_begin = 147, - sym_class_name = 148, - sym_code_block = 149, - sym_raw_block = 150, - sym_raw_block_info = 151, - sym_code = 152, - sym__line = 153, - sym_thematic_break = 154, - sym_block_quote = 155, - sym__block_quote_content = 156, - sym__block_quote_prefix = 157, - sym_link_reference_definition = 158, - sym_link_label = 159, - sym_block_attribute = 160, - sym_class = 161, - sym_identifier = 162, - sym_key_value = 163, - sym_key = 164, - sym_value = 165, - sym__paragraph = 166, - sym__paragraph_content = 167, - sym__paragraph_inline_content = 168, - sym__one_or_two_newlines = 169, - sym__inline = 170, - sym__inline_line = 171, - sym__symbol_fallback = 172, - sym_reference_label = 173, - sym__comment_no_newline = 174, - aux_sym_document_repeat1 = 175, - aux_sym_frontmatter_content_repeat1 = 176, - aux_sym__heading_content_repeat1 = 177, - aux_sym__list_dash_repeat1 = 178, - aux_sym__list_plus_repeat1 = 179, - aux_sym__list_star_repeat1 = 180, - aux_sym__list_task_repeat1 = 181, - aux_sym__list_definition_repeat1 = 182, - aux_sym__list_item_definition_repeat1 = 183, - aux_sym__list_decimal_period_repeat1 = 184, - aux_sym__list_decimal_paren_repeat1 = 185, - aux_sym__list_decimal_parens_repeat1 = 186, - aux_sym__list_lower_alpha_period_repeat1 = 187, - aux_sym__list_lower_alpha_paren_repeat1 = 188, - aux_sym__list_lower_alpha_parens_repeat1 = 189, - aux_sym__list_upper_alpha_period_repeat1 = 190, - aux_sym__list_upper_alpha_paren_repeat1 = 191, - aux_sym__list_upper_alpha_parens_repeat1 = 192, - aux_sym__list_lower_roman_period_repeat1 = 193, - aux_sym__list_lower_roman_paren_repeat1 = 194, - aux_sym__list_lower_roman_parens_repeat1 = 195, - aux_sym__list_upper_roman_period_repeat1 = 196, - aux_sym__list_upper_roman_paren_repeat1 = 197, - aux_sym__list_upper_roman_parens_repeat1 = 198, - aux_sym_list_item_content_repeat1 = 199, - aux_sym_table_repeat1 = 200, - aux_sym_table_header_repeat1 = 201, - aux_sym_table_separator_repeat1 = 202, - aux_sym_table_caption_repeat1 = 203, - aux_sym_footnote_content_repeat1 = 204, - aux_sym_div_repeat1 = 205, - aux_sym_code_repeat1 = 206, - aux_sym__block_quote_content_repeat1 = 207, - aux_sym__block_quote_prefix_repeat1 = 208, - aux_sym_block_attribute_repeat1 = 209, - aux_sym__paragraph_inline_content_repeat1 = 210, - aux_sym__inline_repeat1 = 211, - aux_sym__comment_no_newline_repeat1 = 212, - alias_sym_args = 213, - anon_alias_sym_class = 214, - alias_sym_definition = 215, - alias_sym_language_marker = 216, - alias_sym_paragraph = 217, - alias_sym_raw_block_marker_begin = 218, - alias_sym_raw_block_marker_end = 219, - alias_sym_section_content = 220, + anon_sym_PERCENT = 26, + sym_backslash_escape = 27, + sym__id = 28, + aux_sym__comment_no_newline_token1 = 29, + sym__ignored = 30, + sym__block_close = 31, + sym__eof_or_newline = 32, + sym__newline = 33, + sym__newline_inline = 34, + sym_frontmatter_marker = 35, + sym__heading_begin = 36, + sym__heading_continuation = 37, + sym__div_begin = 38, + sym__div_end = 39, + sym__code_block_begin = 40, + sym__code_block_end = 41, + sym_list_marker_dash = 42, + sym_list_marker_star = 43, + sym_list_marker_plus = 44, + sym__list_marker_task_begin = 45, + sym_list_marker_definition = 46, + sym_list_marker_decimal_period = 47, + sym_list_marker_lower_alpha_period = 48, + sym_list_marker_upper_alpha_period = 49, + sym_list_marker_lower_roman_period = 50, + sym_list_marker_upper_roman_period = 51, + sym_list_marker_decimal_paren = 52, + sym_list_marker_lower_alpha_paren = 53, + sym_list_marker_upper_alpha_paren = 54, + sym_list_marker_lower_roman_paren = 55, + sym_list_marker_upper_roman_paren = 56, + sym_list_marker_decimal_parens = 57, + sym_list_marker_lower_alpha_parens = 58, + sym_list_marker_upper_alpha_parens = 59, + sym_list_marker_lower_roman_parens = 60, + sym_list_marker_upper_roman_parens = 61, + sym__list_item_continuation = 62, + sym__list_item_end = 63, + sym__indented_content_spacer = 64, + sym__close_paragraph = 65, + sym__block_quote_begin = 66, + sym__block_quote_continuation = 67, + sym__thematic_break_dash = 68, + sym__thematic_break_star = 69, + sym__footnote_mark_begin = 70, + sym__footnote_continuation = 71, + sym__footnote_end = 72, + sym__table_header_begin = 73, + sym__table_separator_begin = 74, + sym__table_row_begin = 75, + sym__table_cell = 76, + sym__table_caption_begin = 77, + sym__table_caption_end = 78, + sym__in_fallback = 79, + sym__error = 80, + sym_document = 81, + sym_frontmatter = 82, + sym_frontmatter_content = 83, + sym__block_with_section = 84, + sym__block_with_heading = 85, + sym__block_element = 86, + sym_section = 87, + sym_heading = 88, + sym__heading_content = 89, + sym_list = 90, + sym__list_dash = 91, + sym__list_item_dash = 92, + sym__list_plus = 93, + sym__list_item_plus = 94, + sym__list_star = 95, + sym__list_item_star = 96, + sym__list_task = 97, + sym__list_item_task = 98, + sym_list_marker_task = 99, + sym_checked = 100, + sym_unchecked = 101, + sym__list_definition = 102, + sym__list_item_definition = 103, + sym__list_decimal_period = 104, + sym__list_item_decimal_period = 105, + sym__list_decimal_paren = 106, + sym__list_item_decimal_paren = 107, + sym__list_decimal_parens = 108, + sym__list_item_decimal_parens = 109, + sym__list_lower_alpha_period = 110, + sym__list_item_lower_alpha_period = 111, + sym__list_lower_alpha_paren = 112, + sym__list_item_lower_alpha_paren = 113, + sym__list_lower_alpha_parens = 114, + sym__list_item_lower_alpha_parens = 115, + sym__list_upper_alpha_period = 116, + sym__list_item_upper_alpha_period = 117, + sym__list_upper_alpha_paren = 118, + sym__list_item_upper_alpha_paren = 119, + sym__list_upper_alpha_parens = 120, + sym__list_item_upper_alpha_parens = 121, + sym__list_lower_roman_period = 122, + sym__list_item_lower_roman_period = 123, + sym__list_lower_roman_paren = 124, + sym__list_item_lower_roman_paren = 125, + sym__list_lower_roman_parens = 126, + sym__list_item_lower_roman_parens = 127, + sym__list_upper_roman_period = 128, + sym__list_item_upper_roman_period = 129, + sym__list_upper_roman_paren = 130, + sym__list_item_upper_roman_paren = 131, + sym__list_upper_roman_parens = 132, + sym__list_item_upper_roman_parens = 133, + sym_list_item_content = 134, + sym_table = 135, + sym__table_row = 136, + sym_table_header = 137, + sym_table_separator = 138, + sym_table_row = 139, + sym_table_cell = 140, + sym_table_caption = 141, + sym_footnote = 142, + sym_footnote_marker_begin = 143, + sym_footnote_content = 144, + sym_div = 145, + sym__div_marker_begin = 146, + sym_class_name = 147, + sym_code_block = 148, + sym_raw_block = 149, + sym_raw_block_info = 150, + sym_code = 151, + sym__line = 152, + sym_thematic_break = 153, + sym_block_quote = 154, + sym__block_quote_content = 155, + sym__block_quote_prefix = 156, + sym_link_reference_definition = 157, + sym_link_label = 158, + sym_block_attribute = 159, + sym_class = 160, + sym_identifier = 161, + sym_key_value = 162, + sym_key = 163, + sym_value = 164, + sym__paragraph = 165, + sym__paragraph_content = 166, + sym__paragraph_inline_content = 167, + sym__one_or_two_newlines = 168, + sym__inline = 169, + sym__inline_line = 170, + sym__symbol_fallback = 171, + sym_reference_label = 172, + sym__comment_no_newline = 173, + aux_sym_document_repeat1 = 174, + aux_sym_frontmatter_content_repeat1 = 175, + aux_sym__heading_content_repeat1 = 176, + aux_sym__list_dash_repeat1 = 177, + aux_sym__list_plus_repeat1 = 178, + aux_sym__list_star_repeat1 = 179, + aux_sym__list_task_repeat1 = 180, + aux_sym__list_definition_repeat1 = 181, + aux_sym__list_item_definition_repeat1 = 182, + aux_sym__list_decimal_period_repeat1 = 183, + aux_sym__list_decimal_paren_repeat1 = 184, + aux_sym__list_decimal_parens_repeat1 = 185, + aux_sym__list_lower_alpha_period_repeat1 = 186, + aux_sym__list_lower_alpha_paren_repeat1 = 187, + aux_sym__list_lower_alpha_parens_repeat1 = 188, + aux_sym__list_upper_alpha_period_repeat1 = 189, + aux_sym__list_upper_alpha_paren_repeat1 = 190, + aux_sym__list_upper_alpha_parens_repeat1 = 191, + aux_sym__list_lower_roman_period_repeat1 = 192, + aux_sym__list_lower_roman_paren_repeat1 = 193, + aux_sym__list_lower_roman_parens_repeat1 = 194, + aux_sym__list_upper_roman_period_repeat1 = 195, + aux_sym__list_upper_roman_paren_repeat1 = 196, + aux_sym__list_upper_roman_parens_repeat1 = 197, + aux_sym_list_item_content_repeat1 = 198, + aux_sym_table_repeat1 = 199, + aux_sym_table_header_repeat1 = 200, + aux_sym_table_separator_repeat1 = 201, + aux_sym_table_caption_repeat1 = 202, + aux_sym_footnote_content_repeat1 = 203, + aux_sym_div_repeat1 = 204, + aux_sym_code_repeat1 = 205, + aux_sym__block_quote_content_repeat1 = 206, + aux_sym__block_quote_prefix_repeat1 = 207, + aux_sym_block_attribute_repeat1 = 208, + aux_sym__paragraph_inline_content_repeat1 = 209, + aux_sym__inline_repeat1 = 210, + aux_sym__comment_no_newline_repeat1 = 211, + alias_sym_args = 212, + anon_alias_sym_class = 213, + alias_sym_definition = 214, + alias_sym_language_marker = 215, + alias_sym_paragraph = 216, + alias_sym_raw_block_marker_begin = 217, + alias_sym_raw_block_marker_end = 218, + alias_sym_section_content = 219, }; static const char * const ts_symbol_names[] = { @@ -265,8 +264,6 @@ static const char * const ts_symbol_names[] = { [sym__whitespace] = "_whitespace", [sym__whitespace1] = "_whitespace1", [aux_sym__inline_token1] = "_inline_token1", - [anon_sym_LBRACE_DASH] = "{-", - [anon_sym_POUND] = "#", [anon_sym_PERCENT] = "%", [sym_backslash_escape] = "backslash_escape", [sym__id] = "_id", @@ -317,6 +314,7 @@ static const char * const ts_symbol_names[] = { [sym__table_header_begin] = "_table_header_begin", [sym__table_separator_begin] = "_table_separator_begin", [sym__table_row_begin] = "_table_row_begin", + [sym__table_cell] = "inline", [sym__table_caption_begin] = "marker", [sym__table_caption_end] = "_table_caption_end", [sym__in_fallback] = "_in_fallback", @@ -489,8 +487,6 @@ static const TSSymbol ts_symbol_map[] = { [sym__whitespace] = sym__whitespace, [sym__whitespace1] = sym__whitespace1, [aux_sym__inline_token1] = aux_sym__inline_token1, - [anon_sym_LBRACE_DASH] = anon_sym_LBRACE_DASH, - [anon_sym_POUND] = anon_sym_POUND, [anon_sym_PERCENT] = anon_sym_PERCENT, [sym_backslash_escape] = sym_backslash_escape, [sym__id] = sym__id, @@ -541,6 +537,7 @@ static const TSSymbol ts_symbol_map[] = { [sym__table_header_begin] = sym__table_header_begin, [sym__table_separator_begin] = sym__table_separator_begin, [sym__table_row_begin] = sym__table_row_begin, + [sym__table_cell] = sym__table_cell, [sym__table_caption_begin] = sym__heading_begin, [sym__table_caption_end] = sym__table_caption_end, [sym__in_fallback] = sym__in_fallback, @@ -553,7 +550,7 @@ static const TSSymbol ts_symbol_map[] = { [sym__block_element] = sym__block_element, [sym_section] = sym_section, [sym_heading] = sym_heading, - [sym__heading_content] = sym__heading_content, + [sym__heading_content] = sym__table_cell, [sym_list] = sym_list, [sym__list_dash] = sym__list_dash, [sym__list_item_dash] = sym__list_item_dash, @@ -631,7 +628,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_value] = sym_value, [sym__paragraph] = sym__paragraph, [sym__paragraph_content] = sym__paragraph_content, - [sym__paragraph_inline_content] = sym__heading_content, + [sym__paragraph_inline_content] = sym__table_cell, [sym__one_or_two_newlines] = sym__one_or_two_newlines, [sym__inline] = sym__inline, [sym__inline_line] = sym__inline_line, @@ -791,14 +788,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [anon_sym_LBRACE_DASH] = { - .visible = true, - .named = false, - }, - [anon_sym_POUND] = { - .visible = true, - .named = false, - }, [anon_sym_PERCENT] = { .visible = true, .named = false, @@ -999,6 +988,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, + [sym__table_cell] = { + .visible = true, + .named = true, + }, [sym__table_caption_begin] = { .visible = true, .named = true, @@ -1721,7 +1714,7 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [0] = sym__block_quote_begin, }, [5] = { - [0] = sym__heading_content, + [0] = sym__table_cell, }, [8] = { [0] = alias_sym_paragraph, @@ -1780,7 +1773,7 @@ static const uint16_t ts_non_terminal_alias_map[] = { alias_sym_paragraph, sym__inline, 2, sym__inline, - sym__heading_content, + sym__table_cell, aux_sym_document_repeat1, 2, aux_sym_document_repeat1, alias_sym_section_content, @@ -1811,20 +1804,20 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5] = 5, [6] = 6, [7] = 7, - [8] = 7, - [9] = 4, - [10] = 5, + [8] = 4, + [9] = 5, + [10] = 7, [11] = 11, [12] = 12, - [13] = 11, + [13] = 12, [14] = 14, - [15] = 12, - [16] = 11, - [17] = 12, - [18] = 11, - [19] = 12, - [20] = 11, - [21] = 12, + [15] = 11, + [16] = 12, + [17] = 11, + [18] = 12, + [19] = 11, + [20] = 12, + [21] = 11, [22] = 22, [23] = 23, [24] = 24, @@ -1844,13 +1837,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [38] = 38, [39] = 39, [40] = 40, - [41] = 41, - [42] = 23, - [43] = 43, - [44] = 23, + [41] = 23, + [42] = 42, + [43] = 23, + [44] = 44, [45] = 45, - [46] = 46, - [47] = 23, + [46] = 23, + [47] = 47, [48] = 48, [49] = 49, [50] = 50, @@ -1891,31 +1884,31 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [85] = 85, [86] = 86, [87] = 87, - [88] = 79, - [89] = 89, - [90] = 81, + [88] = 78, + [89] = 80, + [90] = 90, [91] = 91, [92] = 92, - [93] = 82, - [94] = 83, - [95] = 80, - [96] = 96, - [97] = 84, + [93] = 81, + [94] = 82, + [95] = 79, + [96] = 83, + [97] = 97, [98] = 91, [99] = 74, - [100] = 76, - [101] = 77, - [102] = 85, - [103] = 86, - [104] = 78, - [105] = 89, + [100] = 75, + [101] = 76, + [102] = 84, + [103] = 77, + [104] = 85, + [105] = 90, [106] = 92, - [107] = 96, - [108] = 87, + [107] = 97, + [108] = 86, [109] = 109, [110] = 110, [111] = 111, - [112] = 109, + [112] = 112, [113] = 113, [114] = 114, [115] = 115, @@ -1940,90 +1933,90 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [134] = 134, [135] = 135, [136] = 136, - [137] = 114, + [137] = 137, [138] = 138, - [139] = 113, + [139] = 139, [140] = 140, [141] = 141, - [142] = 116, - [143] = 115, + [142] = 142, + [143] = 143, [144] = 144, - [145] = 117, - [146] = 121, - [147] = 133, - [148] = 138, - [149] = 144, + [145] = 145, + [146] = 146, + [147] = 147, + [148] = 148, + [149] = 149, [150] = 150, - [151] = 151, - [152] = 152, - [153] = 153, - [154] = 154, - [155] = 155, - [156] = 156, - [157] = 157, - [158] = 158, - [159] = 159, - [160] = 160, - [161] = 161, - [162] = 162, - [163] = 163, - [164] = 164, - [165] = 165, - [166] = 150, + [151] = 110, + [152] = 111, + [153] = 112, + [154] = 113, + [155] = 114, + [156] = 116, + [157] = 119, + [158] = 120, + [159] = 131, + [160] = 133, + [161] = 136, + [162] = 138, + [163] = 140, + [164] = 145, + [165] = 146, + [166] = 166, [167] = 167, - [168] = 151, + [168] = 166, [169] = 169, - [170] = 170, - [171] = 152, - [172] = 110, - [173] = 153, - [174] = 154, - [175] = 155, - [176] = 156, - [177] = 157, - [178] = 158, - [179] = 159, - [180] = 180, - [181] = 160, - [182] = 161, - [183] = 162, - [184] = 163, - [185] = 164, - [186] = 165, - [187] = 118, - [188] = 120, - [189] = 167, - [190] = 122, - [191] = 123, - [192] = 124, - [193] = 126, - [194] = 127, - [195] = 128, - [196] = 129, - [197] = 130, - [198] = 131, - [199] = 132, - [200] = 134, - [201] = 135, - [202] = 136, - [203] = 169, - [204] = 170, - [205] = 141, - [206] = 206, - [207] = 180, + [170] = 167, + [171] = 171, + [172] = 172, + [173] = 109, + [174] = 174, + [175] = 169, + [176] = 150, + [177] = 177, + [178] = 171, + [179] = 172, + [180] = 115, + [181] = 142, + [182] = 118, + [183] = 183, + [184] = 121, + [185] = 122, + [186] = 123, + [187] = 125, + [188] = 126, + [189] = 127, + [190] = 128, + [191] = 129, + [192] = 130, + [193] = 132, + [194] = 134, + [195] = 135, + [196] = 137, + [197] = 139, + [198] = 174, + [199] = 199, + [200] = 144, + [201] = 143, + [202] = 202, + [203] = 147, + [204] = 177, + [205] = 149, + [206] = 148, + [207] = 202, [208] = 208, [209] = 209, [210] = 210, [211] = 211, - [212] = 211, - [213] = 213, + [212] = 212, + [213] = 211, [214] = 211, - [215] = 213, - [216] = 213, - [217] = 213, + [215] = 212, + [216] = 211, + [217] = 212, [218] = 211, - [219] = 213, - [220] = 211, + [219] = 212, + [220] = 212, [221] = 221, [222] = 221, [223] = 221, @@ -2034,679 +2027,679 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [228] = 226, [229] = 226, [230] = 226, - [231] = 208, - [232] = 232, + [231] = 231, + [232] = 208, [233] = 210, - [234] = 208, - [235] = 232, - [236] = 210, - [237] = 237, - [238] = 66, + [234] = 231, + [235] = 208, + [236] = 66, + [237] = 66, + [238] = 210, [239] = 239, - [240] = 239, - [241] = 239, - [242] = 239, - [243] = 243, - [244] = 239, - [245] = 68, - [246] = 246, - [247] = 247, - [248] = 66, - [249] = 66, - [250] = 246, - [251] = 246, - [252] = 246, - [253] = 246, - [254] = 254, - [255] = 255, + [240] = 68, + [241] = 66, + [242] = 242, + [243] = 68, + [244] = 242, + [245] = 242, + [246] = 242, + [247] = 242, + [248] = 68, + [249] = 249, + [250] = 250, + [251] = 251, + [252] = 250, + [253] = 250, + [254] = 250, + [255] = 250, [256] = 256, - [257] = 255, - [258] = 68, - [259] = 259, + [257] = 257, + [258] = 257, + [259] = 256, [260] = 260, - [261] = 261, - [262] = 256, - [263] = 259, + [261] = 257, + [262] = 260, + [263] = 260, [264] = 260, - [265] = 261, + [265] = 257, [266] = 256, - [267] = 259, + [267] = 267, [268] = 260, - [269] = 261, - [270] = 260, - [271] = 256, - [272] = 259, - [273] = 261, - [274] = 260, - [275] = 261, - [276] = 256, - [277] = 259, - [278] = 254, - [279] = 255, - [280] = 254, - [281] = 255, - [282] = 254, - [283] = 255, - [284] = 68, + [269] = 256, + [270] = 256, + [271] = 271, + [272] = 272, + [273] = 273, + [274] = 273, + [275] = 273, + [276] = 276, + [277] = 277, + [278] = 271, + [279] = 271, + [280] = 280, + [281] = 231, + [282] = 282, + [283] = 208, + [284] = 284, [285] = 285, [286] = 286, [287] = 287, [288] = 288, - [289] = 288, - [290] = 288, - [291] = 287, - [292] = 292, - [293] = 288, - [294] = 287, - [295] = 287, - [296] = 287, - [297] = 288, - [298] = 298, - [299] = 292, + [289] = 210, + [290] = 280, + [291] = 91, + [292] = 97, + [293] = 72, + [294] = 74, + [295] = 80, + [296] = 81, + [297] = 82, + [298] = 285, + [299] = 287, [300] = 300, - [301] = 301, - [302] = 302, - [303] = 285, - [304] = 285, - [305] = 302, - [306] = 302, - [307] = 292, - [308] = 292, - [309] = 302, - [310] = 310, - [311] = 302, - [312] = 285, - [313] = 313, - [314] = 208, - [315] = 315, - [316] = 232, + [301] = 300, + [302] = 286, + [303] = 286, + [304] = 280, + [305] = 285, + [306] = 287, + [307] = 300, + [308] = 286, + [309] = 285, + [310] = 287, + [311] = 300, + [312] = 286, + [313] = 285, + [314] = 287, + [315] = 300, + [316] = 316, [317] = 317, - [318] = 317, - [319] = 210, - [320] = 317, - [321] = 317, - [322] = 322, - [323] = 72, - [324] = 82, - [325] = 322, - [326] = 83, - [327] = 327, - [328] = 322, - [329] = 327, - [330] = 330, - [331] = 331, - [332] = 332, - [333] = 330, - [334] = 331, - [335] = 322, - [336] = 330, - [337] = 331, - [338] = 330, - [339] = 322, - [340] = 331, - [341] = 327, - [342] = 327, - [343] = 91, - [344] = 327, - [345] = 330, - [346] = 331, - [347] = 74, - [348] = 96, - [349] = 81, + [318] = 91, + [319] = 319, + [320] = 320, + [321] = 91, + [322] = 319, + [323] = 323, + [324] = 324, + [325] = 97, + [326] = 319, + [327] = 97, + [328] = 72, + [329] = 323, + [330] = 316, + [331] = 74, + [332] = 323, + [333] = 81, + [334] = 319, + [335] = 323, + [336] = 316, + [337] = 337, + [338] = 82, + [339] = 72, + [340] = 74, + [341] = 80, + [342] = 319, + [343] = 323, + [344] = 316, + [345] = 316, + [346] = 81, + [347] = 82, + [348] = 348, + [349] = 80, [350] = 350, [351] = 351, - [352] = 91, - [353] = 353, - [354] = 351, - [355] = 350, - [356] = 353, - [357] = 72, + [352] = 352, + [353] = 350, + [354] = 350, + [355] = 355, + [356] = 356, + [357] = 357, [358] = 358, - [359] = 74, - [360] = 360, - [361] = 81, - [362] = 82, - [363] = 83, - [364] = 351, - [365] = 350, - [366] = 351, - [367] = 81, - [368] = 353, - [369] = 82, - [370] = 83, - [371] = 371, + [359] = 359, + [360] = 355, + [361] = 356, + [362] = 352, + [363] = 356, + [364] = 350, + [365] = 365, + [366] = 357, + [367] = 367, + [368] = 355, + [369] = 369, + [370] = 356, + [371] = 357, [372] = 372, - [373] = 351, - [374] = 350, - [375] = 353, - [376] = 96, - [377] = 72, - [378] = 91, - [379] = 74, + [373] = 373, + [374] = 357, + [375] = 375, + [376] = 352, + [377] = 352, + [378] = 350, + [379] = 379, [380] = 380, - [381] = 350, - [382] = 96, - [383] = 353, + [381] = 381, + [382] = 350, + [383] = 355, [384] = 384, - [385] = 385, - [386] = 386, - [387] = 387, - [388] = 388, - [389] = 389, - [390] = 390, - [391] = 390, - [392] = 384, - [393] = 384, - [394] = 394, - [395] = 395, - [396] = 396, - [397] = 386, - [398] = 384, - [399] = 390, - [400] = 384, - [401] = 390, - [402] = 384, - [403] = 390, - [404] = 384, - [405] = 390, - [406] = 396, - [407] = 390, - [408] = 384, - [409] = 390, - [410] = 384, - [411] = 390, - [412] = 384, - [413] = 390, - [414] = 384, - [415] = 390, - [416] = 384, - [417] = 390, - [418] = 384, - [419] = 390, - [420] = 384, - [421] = 390, - [422] = 384, - [423] = 390, - [424] = 386, - [425] = 390, + [385] = 357, + [386] = 350, + [387] = 355, + [388] = 350, + [389] = 355, + [390] = 350, + [391] = 355, + [392] = 350, + [393] = 355, + [394] = 350, + [395] = 355, + [396] = 350, + [397] = 355, + [398] = 350, + [399] = 355, + [400] = 350, + [401] = 355, + [402] = 350, + [403] = 355, + [404] = 350, + [405] = 355, + [406] = 352, + [407] = 355, + [408] = 350, + [409] = 355, + [410] = 350, + [411] = 355, + [412] = 350, + [413] = 355, + [414] = 355, + [415] = 415, + [416] = 416, + [417] = 356, + [418] = 418, + [419] = 231, + [420] = 70, + [421] = 208, + [422] = 422, + [423] = 423, + [424] = 87, + [425] = 425, [426] = 426, - [427] = 384, + [427] = 427, [428] = 428, - [429] = 396, - [430] = 386, + [429] = 429, + [430] = 430, [431] = 431, [432] = 432, - [433] = 386, - [434] = 390, + [433] = 433, + [434] = 434, [435] = 435, - [436] = 435, - [437] = 435, + [436] = 436, + [437] = 437, [438] = 438, [439] = 439, - [440] = 435, - [441] = 441, - [442] = 384, - [443] = 443, - [444] = 435, - [445] = 390, - [446] = 384, - [447] = 390, - [448] = 448, - [449] = 396, - [450] = 396, - [451] = 384, - [452] = 452, - [453] = 70, - [454] = 232, - [455] = 208, - [456] = 456, - [457] = 457, - [458] = 92, + [440] = 440, + [441] = 439, + [442] = 440, + [443] = 76, + [444] = 77, + [445] = 445, + [446] = 78, + [447] = 79, + [448] = 425, + [449] = 427, + [450] = 450, + [451] = 451, + [452] = 83, + [453] = 84, + [454] = 85, + [455] = 455, + [456] = 86, + [457] = 210, + [458] = 458, [459] = 459, - [460] = 70, - [461] = 461, - [462] = 462, - [463] = 75, - [464] = 464, - [465] = 465, - [466] = 89, - [467] = 76, - [468] = 77, - [469] = 78, - [470] = 79, - [471] = 80, - [472] = 84, - [473] = 85, - [474] = 86, - [475] = 87, - [476] = 210, + [460] = 425, + [461] = 426, + [462] = 427, + [463] = 428, + [464] = 429, + [465] = 430, + [466] = 431, + [467] = 432, + [468] = 433, + [469] = 434, + [470] = 435, + [471] = 436, + [472] = 437, + [473] = 438, + [474] = 439, + [475] = 440, + [476] = 476, [477] = 477, [478] = 478, [479] = 479, [480] = 480, - [481] = 481, - [482] = 482, - [483] = 483, - [484] = 484, - [485] = 485, - [486] = 486, + [481] = 426, + [482] = 90, + [483] = 92, + [484] = 425, + [485] = 426, + [486] = 428, [487] = 487, - [488] = 488, - [489] = 489, - [490] = 490, - [491] = 491, - [492] = 492, - [493] = 493, - [494] = 494, - [495] = 495, - [496] = 479, - [497] = 480, - [498] = 481, - [499] = 482, - [500] = 483, - [501] = 484, - [502] = 485, - [503] = 486, - [504] = 487, - [505] = 488, - [506] = 489, - [507] = 490, - [508] = 491, - [509] = 492, - [510] = 493, - [511] = 494, - [512] = 479, - [513] = 480, - [514] = 481, - [515] = 482, - [516] = 483, - [517] = 484, - [518] = 485, - [519] = 486, - [520] = 487, - [521] = 488, - [522] = 461, - [523] = 490, - [524] = 491, - [525] = 492, - [526] = 493, - [527] = 494, - [528] = 528, - [529] = 479, - [530] = 530, - [531] = 480, + [488] = 440, + [489] = 428, + [490] = 429, + [491] = 430, + [492] = 431, + [493] = 432, + [494] = 433, + [495] = 434, + [496] = 435, + [497] = 436, + [498] = 437, + [499] = 438, + [500] = 439, + [501] = 440, + [502] = 70, + [503] = 503, + [504] = 504, + [505] = 505, + [506] = 506, + [507] = 75, + [508] = 425, + [509] = 426, + [510] = 427, + [511] = 428, + [512] = 429, + [513] = 430, + [514] = 431, + [515] = 432, + [516] = 433, + [517] = 434, + [518] = 429, + [519] = 519, + [520] = 430, + [521] = 505, + [522] = 522, + [523] = 431, + [524] = 524, + [525] = 525, + [526] = 435, + [527] = 505, + [528] = 432, + [529] = 529, + [530] = 433, + [531] = 436, [532] = 532, - [533] = 481, - [534] = 534, - [535] = 482, - [536] = 479, - [537] = 480, - [538] = 481, - [539] = 482, - [540] = 483, - [541] = 484, - [542] = 485, - [543] = 486, - [544] = 487, - [545] = 488, - [546] = 489, - [547] = 490, - [548] = 491, - [549] = 492, - [550] = 493, - [551] = 494, + [533] = 505, + [534] = 437, + [535] = 434, + [536] = 536, + [537] = 439, + [538] = 505, + [539] = 435, + [540] = 540, + [541] = 436, + [542] = 437, + [543] = 438, + [544] = 438, + [545] = 427, + [546] = 172, + [547] = 547, + [548] = 548, + [549] = 549, + [550] = 231, + [551] = 551, [552] = 552, - [553] = 483, + [553] = 553, [554] = 554, - [555] = 484, + [555] = 555, [556] = 556, - [557] = 485, + [557] = 557, [558] = 558, - [559] = 486, + [559] = 559, [560] = 560, - [561] = 487, - [562] = 562, - [563] = 488, + [561] = 208, + [562] = 199, + [563] = 563, [564] = 564, - [565] = 489, - [566] = 566, - [567] = 490, - [568] = 568, - [569] = 491, - [570] = 461, - [571] = 571, - [572] = 492, - [573] = 573, - [574] = 461, - [575] = 493, - [576] = 461, - [577] = 577, - [578] = 494, - [579] = 489, - [580] = 70, - [581] = 581, - [582] = 208, - [583] = 140, - [584] = 584, - [585] = 585, - [586] = 111, - [587] = 587, - [588] = 588, - [589] = 589, + [565] = 143, + [566] = 144, + [567] = 231, + [568] = 147, + [569] = 148, + [570] = 149, + [571] = 150, + [572] = 110, + [573] = 111, + [574] = 112, + [575] = 113, + [576] = 114, + [577] = 116, + [578] = 119, + [579] = 120, + [580] = 131, + [581] = 133, + [582] = 136, + [583] = 138, + [584] = 140, + [585] = 145, + [586] = 146, + [587] = 166, + [588] = 167, + [589] = 169, [590] = 590, - [591] = 591, - [592] = 592, + [591] = 208, + [592] = 171, [593] = 593, - [594] = 594, - [595] = 89, - [596] = 92, + [594] = 174, + [595] = 202, + [596] = 177, [597] = 597, [598] = 598, - [599] = 116, - [600] = 115, - [601] = 232, - [602] = 117, - [603] = 121, - [604] = 133, - [605] = 138, - [606] = 144, - [607] = 150, - [608] = 151, - [609] = 609, - [610] = 610, - [611] = 611, - [612] = 612, - [613] = 152, - [614] = 153, - [615] = 154, - [616] = 155, - [617] = 156, - [618] = 157, - [619] = 158, - [620] = 159, - [621] = 160, - [622] = 161, - [623] = 162, - [624] = 163, - [625] = 164, - [626] = 165, - [627] = 167, - [628] = 208, + [599] = 599, + [600] = 600, + [601] = 601, + [602] = 115, + [603] = 603, + [604] = 118, + [605] = 121, + [606] = 122, + [607] = 123, + [608] = 125, + [609] = 126, + [610] = 127, + [611] = 128, + [612] = 129, + [613] = 130, + [614] = 132, + [615] = 134, + [616] = 135, + [617] = 137, + [618] = 86, + [619] = 208, + [620] = 231, + [621] = 208, + [622] = 231, + [623] = 208, + [624] = 231, + [625] = 208, + [626] = 560, + [627] = 597, + [628] = 628, [629] = 629, [630] = 630, [631] = 631, - [632] = 169, - [633] = 170, - [634] = 598, - [635] = 110, - [636] = 109, + [632] = 632, + [633] = 563, + [634] = 564, + [635] = 635, + [636] = 636, [637] = 637, - [638] = 638, - [639] = 180, - [640] = 232, - [641] = 77, - [642] = 78, - [643] = 118, - [644] = 79, - [645] = 120, - [646] = 80, - [647] = 591, - [648] = 122, - [649] = 123, - [650] = 124, - [651] = 126, - [652] = 127, - [653] = 128, - [654] = 129, - [655] = 130, - [656] = 131, - [657] = 84, - [658] = 132, - [659] = 134, - [660] = 135, - [661] = 661, - [662] = 662, - [663] = 136, - [664] = 232, - [665] = 208, - [666] = 85, - [667] = 86, - [668] = 232, - [669] = 208, - [670] = 232, - [671] = 208, - [672] = 232, - [673] = 673, - [674] = 208, - [675] = 598, - [676] = 591, - [677] = 87, - [678] = 232, - [679] = 208, - [680] = 680, - [681] = 681, + [638] = 631, + [639] = 632, + [640] = 563, + [641] = 564, + [642] = 70, + [643] = 643, + [644] = 631, + [645] = 560, + [646] = 632, + [647] = 631, + [648] = 632, + [649] = 649, + [650] = 563, + [651] = 564, + [652] = 597, + [653] = 653, + [654] = 231, + [655] = 655, + [656] = 631, + [657] = 632, + [658] = 658, + [659] = 563, + [660] = 564, + [661] = 208, + [662] = 87, + [663] = 141, + [664] = 90, + [665] = 92, + [666] = 560, + [667] = 667, + [668] = 75, + [669] = 76, + [670] = 77, + [671] = 78, + [672] = 79, + [673] = 597, + [674] = 674, + [675] = 83, + [676] = 84, + [677] = 85, + [678] = 231, + [679] = 679, + [680] = 560, + [681] = 597, [682] = 682, - [683] = 683, - [684] = 598, - [685] = 685, - [686] = 686, - [687] = 687, - [688] = 75, + [683] = 210, + [684] = 684, + [685] = 560, + [686] = 597, + [687] = 210, + [688] = 688, [689] = 689, - [690] = 591, - [691] = 691, - [692] = 76, - [693] = 164, - [694] = 117, - [695] = 210, - [696] = 121, - [697] = 598, - [698] = 591, - [699] = 133, - [700] = 700, - [701] = 598, - [702] = 591, - [703] = 703, - [704] = 598, - [705] = 591, - [706] = 210, - [707] = 138, - [708] = 598, - [709] = 591, - [710] = 210, - [711] = 144, + [690] = 560, + [691] = 597, + [692] = 560, + [693] = 597, + [694] = 560, + [695] = 597, + [696] = 560, + [697] = 597, + [698] = 560, + [699] = 597, + [700] = 560, + [701] = 597, + [702] = 560, + [703] = 597, + [704] = 704, + [705] = 705, + [706] = 706, + [707] = 679, + [708] = 708, + [709] = 709, + [710] = 710, + [711] = 711, [712] = 712, - [713] = 598, - [714] = 591, + [713] = 713, + [714] = 714, [715] = 715, [716] = 716, [717] = 717, - [718] = 598, - [719] = 591, - [720] = 210, + [718] = 718, + [719] = 719, + [720] = 720, [721] = 721, - [722] = 598, - [723] = 591, - [724] = 598, - [725] = 591, - [726] = 598, - [727] = 591, - [728] = 598, - [729] = 591, - [730] = 598, - [731] = 591, - [732] = 598, - [733] = 591, - [734] = 598, - [735] = 591, - [736] = 736, + [722] = 722, + [723] = 723, + [724] = 724, + [725] = 725, + [726] = 726, + [727] = 727, + [728] = 728, + [729] = 729, + [730] = 730, + [731] = 731, + [732] = 560, + [733] = 733, + [734] = 734, + [735] = 284, + [736] = 723, [737] = 737, - [738] = 738, + [738] = 132, [739] = 739, [740] = 740, - [741] = 150, - [742] = 151, - [743] = 152, - [744] = 744, - [745] = 745, - [746] = 746, - [747] = 153, - [748] = 748, - [749] = 154, - [750] = 750, + [741] = 741, + [742] = 720, + [743] = 720, + [744] = 727, + [745] = 649, + [746] = 597, + [747] = 733, + [748] = 210, + [749] = 723, + [750] = 679, [751] = 751, - [752] = 155, - [753] = 753, - [754] = 754, + [752] = 752, + [753] = 679, + [754] = 87, [755] = 755, [756] = 756, - [757] = 757, + [757] = 727, [758] = 758, - [759] = 759, - [760] = 689, - [761] = 716, - [762] = 156, - [763] = 157, - [764] = 158, + [759] = 90, + [760] = 92, + [761] = 761, + [762] = 135, + [763] = 763, + [764] = 75, [765] = 765, - [766] = 766, + [766] = 727, [767] = 767, - [768] = 768, + [768] = 76, [769] = 769, - [770] = 770, - [771] = 598, - [772] = 738, + [770] = 77, + [771] = 78, + [772] = 79, [773] = 773, - [774] = 159, - [775] = 775, + [774] = 733, + [775] = 137, [776] = 776, - [777] = 777, - [778] = 160, - [779] = 779, - [780] = 780, - [781] = 161, - [782] = 782, - [783] = 783, - [784] = 784, - [785] = 591, - [786] = 162, - [787] = 163, + [777] = 723, + [778] = 778, + [779] = 679, + [780] = 83, + [781] = 84, + [782] = 85, + [783] = 86, + [784] = 210, + [785] = 143, + [786] = 144, + [787] = 787, [788] = 788, - [789] = 789, - [790] = 753, - [791] = 791, + [789] = 560, + [790] = 790, + [791] = 727, [792] = 792, [793] = 793, - [794] = 794, - [795] = 716, - [796] = 767, - [797] = 738, - [798] = 769, - [799] = 799, - [800] = 738, - [801] = 801, - [802] = 802, - [803] = 803, - [804] = 804, - [805] = 84, - [806] = 806, - [807] = 807, - [808] = 210, - [809] = 167, - [810] = 810, - [811] = 753, - [812] = 716, - [813] = 813, - [814] = 814, - [815] = 815, - [816] = 767, - [817] = 769, - [818] = 313, - [819] = 769, + [794] = 147, + [795] = 134, + [796] = 149, + [797] = 150, + [798] = 798, + [799] = 733, + [800] = 800, + [801] = 110, + [802] = 111, + [803] = 723, + [804] = 112, + [805] = 113, + [806] = 114, + [807] = 116, + [808] = 119, + [809] = 120, + [810] = 131, + [811] = 133, + [812] = 136, + [813] = 138, + [814] = 140, + [815] = 145, + [816] = 146, + [817] = 166, + [818] = 167, + [819] = 819, [820] = 169, - [821] = 738, - [822] = 170, - [823] = 110, - [824] = 111, - [825] = 87, - [826] = 109, - [827] = 180, - [828] = 210, - [829] = 829, - [830] = 116, - [831] = 831, - [832] = 118, - [833] = 716, - [834] = 115, - [835] = 598, - [836] = 836, + [821] = 210, + [822] = 822, + [823] = 733, + [824] = 171, + [825] = 172, + [826] = 560, + [827] = 174, + [828] = 199, + [829] = 597, + [830] = 830, + [831] = 560, + [832] = 202, + [833] = 597, + [834] = 729, + [835] = 730, + [836] = 731, [837] = 837, - [838] = 767, - [839] = 120, - [840] = 753, - [841] = 769, - [842] = 86, - [843] = 122, - [844] = 123, - [845] = 124, - [846] = 126, - [847] = 591, - [848] = 767, + [838] = 177, + [839] = 756, + [840] = 758, + [841] = 763, + [842] = 842, + [843] = 560, + [844] = 597, + [845] = 210, + [846] = 729, + [847] = 730, + [848] = 731, [849] = 849, - [850] = 127, - [851] = 75, - [852] = 128, - [853] = 806, - [854] = 810, - [855] = 829, - [856] = 129, - [857] = 130, - [858] = 712, - [859] = 717, - [860] = 721, - [861] = 131, - [862] = 806, - [863] = 810, - [864] = 829, - [865] = 132, - [866] = 89, - [867] = 712, - [868] = 717, - [869] = 721, - [870] = 92, - [871] = 134, - [872] = 806, - [873] = 810, - [874] = 829, - [875] = 135, - [876] = 136, - [877] = 712, - [878] = 717, - [879] = 721, - [880] = 210, - [881] = 806, - [882] = 810, - [883] = 829, - [884] = 76, - [885] = 712, - [886] = 717, - [887] = 721, - [888] = 77, - [889] = 78, - [890] = 79, - [891] = 80, - [892] = 85, - [893] = 765, - [894] = 765, - [895] = 765, - [896] = 765, + [850] = 850, + [851] = 756, + [852] = 758, + [853] = 763, + [854] = 560, + [855] = 115, + [856] = 597, + [857] = 118, + [858] = 729, + [859] = 730, + [860] = 731, + [861] = 210, + [862] = 597, + [863] = 756, + [864] = 758, + [865] = 763, + [866] = 121, + [867] = 122, + [868] = 123, + [869] = 729, + [870] = 730, + [871] = 731, + [872] = 125, + [873] = 126, + [874] = 756, + [875] = 758, + [876] = 763, + [877] = 761, + [878] = 767, + [879] = 879, + [880] = 761, + [881] = 767, + [882] = 761, + [883] = 767, + [884] = 761, + [885] = 767, + [886] = 849, + [887] = 849, + [888] = 849, + [889] = 849, + [890] = 127, + [891] = 128, + [892] = 129, + [893] = 130, + [894] = 148, + [895] = 895, + [896] = 202, [897] = 897, - [898] = 165, + [898] = 898, [899] = 899, [900] = 900, [901] = 901, [902] = 902, - [903] = 903, + [903] = 177, [904] = 904, [905] = 905, [906] = 906, @@ -2715,252 +2708,248 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [909] = 909, [910] = 910, [911] = 911, - [912] = 912, + [912] = 906, [913] = 913, [914] = 914, - [915] = 124, - [916] = 912, + [915] = 907, + [916] = 909, [917] = 917, [918] = 918, [919] = 919, [920] = 920, - [921] = 905, + [921] = 921, [922] = 922, [923] = 923, [924] = 924, - [925] = 925, - [926] = 926, - [927] = 906, - [928] = 911, - [929] = 913, + [925] = 904, + [926] = 901, + [927] = 927, + [928] = 900, + [929] = 115, [930] = 930, - [931] = 126, - [932] = 127, + [931] = 931, + [932] = 118, [933] = 933, - [934] = 918, - [935] = 935, - [936] = 128, - [937] = 935, - [938] = 909, - [939] = 129, - [940] = 130, - [941] = 131, - [942] = 942, - [943] = 385, + [934] = 905, + [935] = 121, + [936] = 122, + [937] = 123, + [938] = 125, + [939] = 126, + [940] = 127, + [941] = 128, + [942] = 129, + [943] = 130, [944] = 944, [945] = 132, [946] = 134, - [947] = 947, - [948] = 135, - [949] = 136, + [947] = 135, + [948] = 137, + [949] = 949, [950] = 950, - [951] = 951, - [952] = 120, + [951] = 900, + [952] = 902, [953] = 953, [954] = 954, [955] = 955, - [956] = 950, + [956] = 906, [957] = 957, - [958] = 958, - [959] = 959, - [960] = 960, - [961] = 958, - [962] = 919, - [963] = 955, + [958] = 914, + [959] = 907, + [960] = 901, + [961] = 909, + [962] = 901, + [963] = 963, [964] = 905, - [965] = 965, - [966] = 950, - [967] = 967, - [968] = 909, - [969] = 969, - [970] = 912, - [971] = 116, - [972] = 972, - [973] = 918, - [974] = 115, - [975] = 912, - [976] = 976, + [965] = 918, + [966] = 919, + [967] = 920, + [968] = 921, + [969] = 922, + [970] = 923, + [971] = 906, + [972] = 924, + [973] = 914, + [974] = 907, + [975] = 909, + [976] = 904, [977] = 918, [978] = 919, [979] = 920, - [980] = 980, + [980] = 921, [981] = 922, [982] = 923, [983] = 924, - [984] = 925, - [985] = 926, - [986] = 906, - [987] = 911, - [988] = 913, - [989] = 919, - [990] = 990, - [991] = 905, + [984] = 904, + [985] = 897, + [986] = 986, + [987] = 987, + [988] = 895, + [989] = 989, + [990] = 358, + [991] = 991, [992] = 992, - [993] = 909, + [993] = 993, [994] = 994, - [995] = 117, - [996] = 909, - [997] = 121, - [998] = 133, - [999] = 138, - [1000] = 144, - [1001] = 150, - [1002] = 151, - [1003] = 152, - [1004] = 153, - [1005] = 154, - [1006] = 155, - [1007] = 156, - [1008] = 157, - [1009] = 158, - [1010] = 159, - [1011] = 160, - [1012] = 161, - [1013] = 162, - [1014] = 163, - [1015] = 164, - [1016] = 165, - [1017] = 1017, - [1018] = 167, - [1019] = 922, - [1020] = 923, - [1021] = 899, - [1022] = 1022, - [1023] = 994, - [1024] = 920, - [1025] = 951, - [1026] = 1026, - [1027] = 912, - [1028] = 920, - [1029] = 918, - [1030] = 919, - [1031] = 1031, + [995] = 995, + [996] = 143, + [997] = 997, + [998] = 144, + [999] = 999, + [1000] = 1000, + [1001] = 141, + [1002] = 1002, + [1003] = 1003, + [1004] = 1004, + [1005] = 1005, + [1006] = 1006, + [1007] = 902, + [1008] = 147, + [1009] = 1009, + [1010] = 148, + [1011] = 149, + [1012] = 918, + [1013] = 897, + [1014] = 150, + [1015] = 1015, + [1016] = 1016, + [1017] = 900, + [1018] = 902, + [1019] = 1019, + [1020] = 110, + [1021] = 913, + [1022] = 111, + [1023] = 112, + [1024] = 113, + [1025] = 919, + [1026] = 920, + [1027] = 999, + [1028] = 1000, + [1029] = 921, + [1030] = 901, + [1031] = 114, [1032] = 1032, - [1033] = 920, - [1034] = 924, - [1035] = 922, - [1036] = 908, - [1037] = 1037, - [1038] = 900, - [1039] = 923, - [1040] = 169, - [1041] = 170, - [1042] = 994, + [1033] = 1033, + [1034] = 1034, + [1035] = 116, + [1036] = 119, + [1037] = 905, + [1038] = 1019, + [1039] = 1039, + [1040] = 913, + [1041] = 131, + [1042] = 133, [1043] = 1043, - [1044] = 951, - [1045] = 924, - [1046] = 925, - [1047] = 926, + [1044] = 922, + [1045] = 898, + [1046] = 999, + [1047] = 1000, [1048] = 906, - [1049] = 911, - [1050] = 1031, + [1049] = 136, + [1050] = 914, [1051] = 1032, - [1052] = 913, - [1053] = 922, - [1054] = 925, - [1055] = 908, - [1056] = 1037, - [1057] = 900, - [1058] = 110, - [1059] = 111, - [1060] = 923, - [1061] = 994, - [1062] = 926, - [1063] = 951, - [1064] = 924, - [1065] = 1065, - [1066] = 925, - [1067] = 1067, - [1068] = 926, - [1069] = 1031, + [1052] = 1033, + [1053] = 1034, + [1054] = 907, + [1055] = 909, + [1056] = 138, + [1057] = 1019, + [1058] = 918, + [1059] = 913, + [1060] = 919, + [1061] = 920, + [1062] = 921, + [1063] = 922, + [1064] = 923, + [1065] = 999, + [1066] = 1000, + [1067] = 924, + [1068] = 904, + [1069] = 1069, [1070] = 1032, - [1071] = 1071, - [1072] = 906, - [1073] = 911, - [1074] = 908, - [1075] = 1037, - [1076] = 900, - [1077] = 955, - [1078] = 1031, - [1079] = 994, - [1080] = 1032, - [1081] = 951, - [1082] = 913, - [1083] = 1083, - [1084] = 905, - [1085] = 109, - [1086] = 1086, - [1087] = 1031, + [1071] = 1033, + [1072] = 1034, + [1073] = 140, + [1074] = 145, + [1075] = 1019, + [1076] = 146, + [1077] = 913, + [1078] = 1078, + [1079] = 166, + [1080] = 167, + [1081] = 914, + [1082] = 169, + [1083] = 999, + [1084] = 1000, + [1085] = 1019, + [1086] = 1033, + [1087] = 905, [1088] = 1032, - [1089] = 1089, - [1090] = 1090, - [1091] = 1091, - [1092] = 908, - [1093] = 1037, - [1094] = 900, - [1095] = 951, - [1096] = 951, - [1097] = 951, - [1098] = 951, - [1099] = 951, - [1100] = 951, - [1101] = 951, - [1102] = 951, - [1103] = 951, - [1104] = 951, - [1105] = 951, - [1106] = 951, - [1107] = 951, - [1108] = 951, - [1109] = 899, - [1110] = 1110, - [1111] = 907, - [1112] = 180, - [1113] = 904, - [1114] = 990, - [1115] = 899, - [1116] = 140, - [1117] = 907, - [1118] = 955, - [1119] = 904, - [1120] = 990, - [1121] = 899, - [1122] = 123, - [1123] = 907, - [1124] = 950, - [1125] = 904, - [1126] = 990, - [1127] = 1127, - [1128] = 122, - [1129] = 907, - [1130] = 1130, - [1131] = 904, - [1132] = 990, + [1089] = 1033, + [1090] = 1034, + [1091] = 913, + [1092] = 913, + [1093] = 913, + [1094] = 913, + [1095] = 913, + [1096] = 913, + [1097] = 913, + [1098] = 913, + [1099] = 913, + [1100] = 913, + [1101] = 913, + [1102] = 913, + [1103] = 913, + [1104] = 913, + [1105] = 895, + [1106] = 1034, + [1107] = 963, + [1108] = 1108, + [1109] = 1015, + [1110] = 953, + [1111] = 933, + [1112] = 1112, + [1113] = 963, + [1114] = 171, + [1115] = 1015, + [1116] = 953, + [1117] = 895, + [1118] = 172, + [1119] = 963, + [1120] = 923, + [1121] = 1015, + [1122] = 953, + [1123] = 895, + [1124] = 1124, + [1125] = 963, + [1126] = 174, + [1127] = 1015, + [1128] = 953, + [1129] = 199, + [1130] = 1043, + [1131] = 1131, + [1132] = 1043, [1133] = 1133, - [1134] = 930, - [1135] = 958, - [1136] = 930, - [1137] = 955, - [1138] = 930, - [1139] = 950, - [1140] = 930, - [1141] = 980, - [1142] = 947, - [1143] = 980, - [1144] = 947, - [1145] = 980, - [1146] = 947, - [1147] = 980, - [1148] = 947, - [1149] = 953, - [1150] = 953, - [1151] = 953, - [1152] = 953, - [1153] = 1153, - [1154] = 1037, - [1155] = 118, - [1156] = 972, - [1157] = 958, + [1134] = 1043, + [1135] = 924, + [1136] = 1043, + [1137] = 1002, + [1138] = 1039, + [1139] = 1002, + [1140] = 1039, + [1141] = 1002, + [1142] = 1039, + [1143] = 1002, + [1144] = 1039, + [1145] = 986, + [1146] = 986, + [1147] = 986, + [1148] = 986, + [1149] = 897, + [1150] = 900, + [1151] = 902, + [1152] = 1032, + [1153] = 120, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -2968,299 +2957,288 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(20); - if ((!eof && lookahead == 00)) ADVANCE(33); - if (lookahead == '\t') ADVANCE(52); - if (lookahead == '\r') SKIP(18); - if (lookahead == ' ') ADVANCE(29); - if (lookahead == '"') ADVANCE(47); - if (lookahead == '#') ADVANCE(61); - if (lookahead == '%') ADVANCE(62); - if (lookahead == '.') ADVANCE(45); - if (lookahead == ':') ADVANCE(41); - if (lookahead == '=') ADVANCE(36); - if (lookahead == 'X') ADVANCE(26); - if (lookahead == '[') ADVANCE(22); - if (lookahead == '\\') ADVANCE(17); - if (lookahead == ']') ADVANCE(27); - if (lookahead == 'x') ADVANCE(24); - if (lookahead == '{') ADVANCE(43); - if (lookahead == '|') ADVANCE(30); - if (lookahead == '}') ADVANCE(44); + if (eof) ADVANCE(19); + if ((!eof && lookahead == 00)) ADVANCE(32); + if (lookahead == '\t') ADVANCE(51); + if (lookahead == '\r') SKIP(17); + if (lookahead == ' ') ADVANCE(28); + if (lookahead == '"') ADVANCE(46); + if (lookahead == '#') ADVANCE(15); + if (lookahead == '%') ADVANCE(59); + if (lookahead == '.') ADVANCE(44); + if (lookahead == ':') ADVANCE(40); + if (lookahead == '=') ADVANCE(35); + if (lookahead == 'X') ADVANCE(25); + if (lookahead == '[') ADVANCE(21); + if (lookahead == '\\') ADVANCE(16); + if (lookahead == ']') ADVANCE(26); + if (lookahead == 'x') ADVANCE(23); + if (lookahead == '{') ADVANCE(42); + if (lookahead == '|') ADVANCE(29); + if (lookahead == '}') ADVANCE(43); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(50); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(49); END_STATE(); case 1: - if ((!eof && lookahead == 00)) ADVANCE(33); - if (lookahead == '\r') ADVANCE(54); - if (lookahead == '#') ADVANCE(61); - if (lookahead == '%') ADVANCE(62); - if (lookahead == '.') ADVANCE(45); - if (lookahead == '[') ADVANCE(22); - if (lookahead == '{') ADVANCE(43); + if ((!eof && lookahead == 00)) ADVANCE(32); + if (lookahead == '\r') ADVANCE(53); + if (lookahead == '#') ADVANCE(58); + if (lookahead == '%') ADVANCE(59); + if (lookahead == '.') ADVANCE(44); + if (lookahead == '[') ADVANCE(21); + if (lookahead == '{') ADVANCE(42); if (lookahead != 0 && - lookahead != '\n') ADVANCE(53); + lookahead != '\n') ADVANCE(52); END_STATE(); case 2: ADVANCE_MAP( - '\r', 56, - '#', 61, - '%', 62, - '.', 45, - '[', 22, - '{', 43, - '}', 44, - '\t', 52, - ' ', 52, + '\r', 55, + '#', 58, + '%', 59, + '.', 44, + '[', 21, + '{', 42, + '}', 43, + '\t', 51, + ' ', 51, ); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(59); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(57); if (lookahead != 0 && lookahead != '\t' && - lookahead != '\n') ADVANCE(53); + lookahead != '\n') ADVANCE(52); END_STATE(); case 3: - if (lookahead == '\r') ADVANCE(57); - if (lookahead == '#') ADVANCE(61); - if (lookahead == '%') ADVANCE(62); - if (lookahead == '.') ADVANCE(45); - if (lookahead == '[') ADVANCE(22); - if (lookahead == '{') ADVANCE(43); - if (lookahead == '|') ADVANCE(30); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(53); - END_STATE(); - case 4: - if (lookahead == '\r') SKIP(5); - if (lookahead == '#') ADVANCE(16); - if (lookahead == '%') ADVANCE(62); - if (lookahead == '.') ADVANCE(45); - if (lookahead == '[') ADVANCE(21); - if (lookahead == ']') ADVANCE(15); - if (lookahead == '}') ADVANCE(44); + if (lookahead == '\r') SKIP(4); + if (lookahead == '#') ADVANCE(15); + if (lookahead == '%') ADVANCE(59); + if (lookahead == '.') ADVANCE(44); + if (lookahead == '[') ADVANCE(20); + if (lookahead == ']') ADVANCE(14); + if (lookahead == '}') ADVANCE(43); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(52); + lookahead == ' ') ADVANCE(51); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(64); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(61); END_STATE(); - case 5: - if (lookahead == '\r') SKIP(5); - if (lookahead == '#') ADVANCE(16); - if (lookahead == '%') ADVANCE(62); - if (lookahead == '.') ADVANCE(45); - if (lookahead == '[') ADVANCE(21); - if (lookahead == ']') ADVANCE(15); - if (lookahead == '}') ADVANCE(44); + case 4: + if (lookahead == '\r') SKIP(4); + if (lookahead == '#') ADVANCE(15); + if (lookahead == '%') ADVANCE(59); + if (lookahead == '.') ADVANCE(44); + if (lookahead == '[') ADVANCE(20); + if (lookahead == ']') ADVANCE(14); + if (lookahead == '}') ADVANCE(43); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(64); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(61); + END_STATE(); + case 5: + if (lookahead == '\r') ADVANCE(56); + if (lookahead == '#') ADVANCE(58); + if (lookahead == '%') ADVANCE(59); + if (lookahead == '.') ADVANCE(44); + if (lookahead == '[') ADVANCE(21); + if (lookahead == ']') ADVANCE(26); + if (lookahead == '{') ADVANCE(42); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(52); END_STATE(); case 6: - if (lookahead == '\r') ADVANCE(58); - if (lookahead == '#') ADVANCE(61); - if (lookahead == '%') ADVANCE(62); - if (lookahead == '.') ADVANCE(45); - if (lookahead == '[') ADVANCE(22); - if (lookahead == ']') ADVANCE(27); - if (lookahead == '{') ADVANCE(43); + if (lookahead == '\r') ADVANCE(63); + if (lookahead == '%') ADVANCE(59); + if (lookahead == '\\') ADVANCE(64); if (lookahead != 0 && - lookahead != '\n') ADVANCE(53); + lookahead != '\n') ADVANCE(62); END_STATE(); case 7: - if (lookahead == '\r') ADVANCE(37); - if (lookahead == '=') ADVANCE(36); + if (lookahead == '\r') ADVANCE(36); + if (lookahead == '=') ADVANCE(35); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && lookahead != '{' && - lookahead != '}') ADVANCE(38); + lookahead != '}') ADVANCE(37); END_STATE(); case 8: - if (lookahead == '\r') ADVANCE(66); - if (lookahead == '%') ADVANCE(62); - if (lookahead == '\\') ADVANCE(67); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(65); + if (lookahead == '\r') SKIP(8); + if (lookahead == ' ') ADVANCE(27); + if (lookahead == 'X') ADVANCE(24); + if (lookahead == 'x') ADVANCE(22); END_STATE(); case 9: if (lookahead == '\r') ADVANCE(9); - if (lookahead == '"') ADVANCE(47); - if (lookahead == '-') ADVANCE(31); - if (lookahead == ':') ADVANCE(13); + if (lookahead == '"') ADVANCE(46); + if (lookahead == '-') ADVANCE(30); + if (lookahead == ':') ADVANCE(12); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(14); + lookahead == ' ') ADVANCE(13); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(50); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(49); END_STATE(); case 10: if (lookahead == '\r') SKIP(10); - if (lookahead == ' ') ADVANCE(28); - if (lookahead == 'X') ADVANCE(25); - if (lookahead == 'x') ADVANCE(23); - END_STATE(); - case 11: - if (lookahead == '\r') SKIP(11); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ') ADVANCE(42); + lookahead != ' ') ADVANCE(41); END_STATE(); - case 12: - if (lookahead == '\r') ADVANCE(48); + case 11: + if (lookahead == '\r') ADVANCE(47); if (lookahead != 0 && lookahead != '\n' && - lookahead != '"') ADVANCE(49); + lookahead != '"') ADVANCE(48); + END_STATE(); + case 12: + if (lookahead == '-') ADVANCE(30); END_STATE(); case 13: - if (lookahead == '-') ADVANCE(31); + if (lookahead == '-') ADVANCE(30); + if (lookahead == ':') ADVANCE(12); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(13); END_STATE(); case 14: - if (lookahead == '-') ADVANCE(31); - if (lookahead == ':') ADVANCE(13); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(14); + if (lookahead == ':') ADVANCE(33); END_STATE(); case 15: - if (lookahead == ':') ADVANCE(34); - END_STATE(); - case 16: if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '}') ADVANCE(46); + lookahead != '}') ADVANCE(45); END_STATE(); - case 17: + case 16: if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(63); + lookahead != '\r') ADVANCE(60); END_STATE(); - case 18: - if (eof) ADVANCE(20); - if ((!eof && lookahead == 00)) ADVANCE(33); - if (lookahead == '\r') SKIP(18); - if (lookahead == ' ') ADVANCE(28); - if (lookahead == '"') ADVANCE(47); - if (lookahead == '#') ADVANCE(61); - if (lookahead == '%') ADVANCE(62); - if (lookahead == '.') ADVANCE(45); - if (lookahead == ':') ADVANCE(41); - if (lookahead == '=') ADVANCE(36); - if (lookahead == 'X') ADVANCE(26); - if (lookahead == '[') ADVANCE(22); - if (lookahead == '\\') ADVANCE(17); - if (lookahead == ']') ADVANCE(27); - if (lookahead == 'x') ADVANCE(24); - if (lookahead == '{') ADVANCE(43); - if (lookahead == '|') ADVANCE(30); - if (lookahead == '}') ADVANCE(44); + case 17: + if (eof) ADVANCE(19); + if ((!eof && lookahead == 00)) ADVANCE(32); + if (lookahead == '\r') SKIP(17); + if (lookahead == ' ') ADVANCE(27); + if (lookahead == '"') ADVANCE(46); + if (lookahead == '#') ADVANCE(15); + if (lookahead == '%') ADVANCE(59); + if (lookahead == '.') ADVANCE(44); + if (lookahead == ':') ADVANCE(40); + if (lookahead == '=') ADVANCE(35); + if (lookahead == 'X') ADVANCE(25); + if (lookahead == '[') ADVANCE(21); + if (lookahead == '\\') ADVANCE(16); + if (lookahead == ']') ADVANCE(26); + if (lookahead == 'x') ADVANCE(23); + if (lookahead == '{') ADVANCE(42); + if (lookahead == '|') ADVANCE(29); + if (lookahead == '}') ADVANCE(43); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(50); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(49); END_STATE(); - case 19: - if (eof) ADVANCE(20); - if (lookahead == '\r') ADVANCE(55); - if (lookahead == '#') ADVANCE(61); - if (lookahead == '%') ADVANCE(62); - if (lookahead == '.') ADVANCE(45); - if (lookahead == '[') ADVANCE(22); - if (lookahead == '{') ADVANCE(43); + case 18: + if (eof) ADVANCE(19); + if (lookahead == '\r') ADVANCE(54); + if (lookahead == '#') ADVANCE(58); + if (lookahead == '%') ADVANCE(59); + if (lookahead == '.') ADVANCE(44); + if (lookahead == '[') ADVANCE(21); + if (lookahead == '{') ADVANCE(42); if (lookahead != 0 && - lookahead != '\n') ADVANCE(53); + lookahead != '\n') ADVANCE(52); END_STATE(); - case 20: + case 19: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 21: + case 20: ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); - case 22: + case 21: ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '^') ADVANCE(35); + if (lookahead == '^') ADVANCE(34); END_STATE(); - case 23: + case 22: ACCEPT_TOKEN(anon_sym_x); END_STATE(); - case 24: + case 23: ACCEPT_TOKEN(anon_sym_x); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(50); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(49); END_STATE(); - case 25: + case 24: ACCEPT_TOKEN(anon_sym_X); END_STATE(); - case 26: + case 25: ACCEPT_TOKEN(anon_sym_X); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(50); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(49); END_STATE(); - case 27: + case 26: ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); - case 28: + case 27: ACCEPT_TOKEN(anon_sym_SPACE); END_STATE(); - case 29: + case 28: ACCEPT_TOKEN(anon_sym_SPACE); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(52); + lookahead == ' ') ADVANCE(51); END_STATE(); - case 30: + case 29: ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); - case 31: + case 30: ACCEPT_TOKEN(sym_table_cell_alignment); - if (lookahead == '-') ADVANCE(31); - if (lookahead == ':') ADVANCE(32); + if (lookahead == '-') ADVANCE(30); + if (lookahead == ':') ADVANCE(31); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(32); + lookahead == ' ') ADVANCE(31); END_STATE(); - case 32: + case 31: ACCEPT_TOKEN(sym_table_cell_alignment); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(32); + lookahead == ' ') ADVANCE(31); END_STATE(); - case 33: + case 32: ACCEPT_TOKEN(anon_sym_NULL); END_STATE(); - case 34: + case 33: ACCEPT_TOKEN(anon_sym_RBRACK_COLON); END_STATE(); - case 35: + case 34: ACCEPT_TOKEN(anon_sym_LBRACK_CARET); END_STATE(); - case 36: + case 35: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 37: + case 36: ACCEPT_TOKEN(sym_language); - if (lookahead == '\r') ADVANCE(37); + if (lookahead == '\r') ADVANCE(36); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && lookahead != '=' && lookahead != '{' && - lookahead != '}') ADVANCE(38); + lookahead != '}') ADVANCE(37); END_STATE(); - case 38: + case 37: ACCEPT_TOKEN(sym_language); if (lookahead != 0 && lookahead != '\t' && @@ -3268,193 +3246,177 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ' && lookahead != '=' && lookahead != '{' && - lookahead != '}') ADVANCE(38); + lookahead != '}') ADVANCE(37); END_STATE(); - case 39: + case 38: ACCEPT_TOKEN(aux_sym__line_token1); - if (lookahead == '\r') ADVANCE(39); + if (lookahead == '\r') ADVANCE(38); if (lookahead != 0 && - lookahead != '\n') ADVANCE(40); + lookahead != '\n') ADVANCE(39); END_STATE(); - case 40: + case 39: ACCEPT_TOKEN(aux_sym__line_token1); if (lookahead != 0 && - lookahead != '\n') ADVANCE(40); + lookahead != '\n') ADVANCE(39); END_STATE(); - case 41: + case 40: ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); - case 42: + case 41: ACCEPT_TOKEN(sym_link_destination); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ') ADVANCE(42); + lookahead != ' ') ADVANCE(41); END_STATE(); - case 43: + case 42: ACCEPT_TOKEN(anon_sym_LBRACE); - if (lookahead == '-') ADVANCE(60); END_STATE(); - case 44: + case 43: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 45: + case 44: ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); - case 46: + case 45: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '}') ADVANCE(46); + lookahead != '}') ADVANCE(45); END_STATE(); - case 47: + case 46: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 48: + case 47: ACCEPT_TOKEN(aux_sym_value_token1); - if (lookahead == '\r') ADVANCE(48); + if (lookahead == '\r') ADVANCE(47); if (lookahead != 0 && lookahead != '\n' && - lookahead != '"') ADVANCE(49); + lookahead != '"') ADVANCE(48); END_STATE(); - case 49: + case 48: ACCEPT_TOKEN(aux_sym_value_token1); if (lookahead != 0 && lookahead != '\n' && - lookahead != '"') ADVANCE(49); + lookahead != '"') ADVANCE(48); END_STATE(); - case 50: + case 49: ACCEPT_TOKEN(aux_sym_value_token2); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(50); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(49); END_STATE(); - case 51: + case 50: ACCEPT_TOKEN(sym__whitespace); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(51); + lookahead == ' ') ADVANCE(50); END_STATE(); - case 52: + case 51: ACCEPT_TOKEN(sym__whitespace1); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(52); + lookahead == ' ') ADVANCE(51); + END_STATE(); + case 52: + ACCEPT_TOKEN(aux_sym__inline_token1); END_STATE(); case 53: ACCEPT_TOKEN(aux_sym__inline_token1); + if ((!eof && lookahead == 00)) ADVANCE(32); + if (lookahead == '\r') ADVANCE(53); + if (lookahead == '#') ADVANCE(58); + if (lookahead == '%') ADVANCE(59); + if (lookahead == '.') ADVANCE(44); + if (lookahead == '[') ADVANCE(21); + if (lookahead == '{') ADVANCE(42); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(52); END_STATE(); case 54: ACCEPT_TOKEN(aux_sym__inline_token1); - if ((!eof && lookahead == 00)) ADVANCE(33); if (lookahead == '\r') ADVANCE(54); - if (lookahead == '#') ADVANCE(61); - if (lookahead == '%') ADVANCE(62); - if (lookahead == '.') ADVANCE(45); - if (lookahead == '[') ADVANCE(22); - if (lookahead == '{') ADVANCE(43); + if (lookahead == '#') ADVANCE(58); + if (lookahead == '%') ADVANCE(59); + if (lookahead == '.') ADVANCE(44); + if (lookahead == '[') ADVANCE(21); + if (lookahead == '{') ADVANCE(42); if (lookahead != 0 && - lookahead != '\n') ADVANCE(53); + lookahead != '\n') ADVANCE(52); END_STATE(); case 55: ACCEPT_TOKEN(aux_sym__inline_token1); if (lookahead == '\r') ADVANCE(55); - if (lookahead == '#') ADVANCE(61); - if (lookahead == '%') ADVANCE(62); - if (lookahead == '.') ADVANCE(45); - if (lookahead == '[') ADVANCE(22); - if (lookahead == '{') ADVANCE(43); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(53); - END_STATE(); - case 56: - ACCEPT_TOKEN(aux_sym__inline_token1); - if (lookahead == '\r') ADVANCE(56); - if (lookahead == '#') ADVANCE(61); - if (lookahead == '%') ADVANCE(62); - if (lookahead == '.') ADVANCE(45); - if (lookahead == '[') ADVANCE(22); - if (lookahead == '{') ADVANCE(43); - if (lookahead == '}') ADVANCE(44); + if (lookahead == '#') ADVANCE(58); + if (lookahead == '%') ADVANCE(59); + if (lookahead == '.') ADVANCE(44); + if (lookahead == '[') ADVANCE(21); + if (lookahead == '{') ADVANCE(42); + if (lookahead == '}') ADVANCE(43); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(59); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(57); if (lookahead != 0 && - lookahead != '\n') ADVANCE(53); + lookahead != '\n') ADVANCE(52); END_STATE(); - case 57: - ACCEPT_TOKEN(aux_sym__inline_token1); - if (lookahead == '\r') ADVANCE(57); - if (lookahead == '#') ADVANCE(61); - if (lookahead == '%') ADVANCE(62); - if (lookahead == '.') ADVANCE(45); - if (lookahead == '[') ADVANCE(22); - if (lookahead == '{') ADVANCE(43); - if (lookahead == '|') ADVANCE(30); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(53); - END_STATE(); - case 58: + case 56: ACCEPT_TOKEN(aux_sym__inline_token1); - if (lookahead == '\r') ADVANCE(58); - if (lookahead == '#') ADVANCE(61); - if (lookahead == '%') ADVANCE(62); - if (lookahead == '.') ADVANCE(45); - if (lookahead == '[') ADVANCE(22); - if (lookahead == ']') ADVANCE(27); - if (lookahead == '{') ADVANCE(43); + if (lookahead == '\r') ADVANCE(56); + if (lookahead == '#') ADVANCE(58); + if (lookahead == '%') ADVANCE(59); + if (lookahead == '.') ADVANCE(44); + if (lookahead == '[') ADVANCE(21); + if (lookahead == ']') ADVANCE(26); + if (lookahead == '{') ADVANCE(42); if (lookahead != 0 && - lookahead != '\n') ADVANCE(53); + lookahead != '\n') ADVANCE(52); END_STATE(); - case 59: + case 57: ACCEPT_TOKEN(aux_sym__inline_token1); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(64); - END_STATE(); - case 60: - ACCEPT_TOKEN(anon_sym_LBRACE_DASH); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(61); END_STATE(); - case 61: - ACCEPT_TOKEN(anon_sym_POUND); + case 58: + ACCEPT_TOKEN(aux_sym__inline_token1); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '}') ADVANCE(46); + lookahead != '}') ADVANCE(45); END_STATE(); - case 62: + case 59: ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); - case 63: + case 60: ACCEPT_TOKEN(sym_backslash_escape); END_STATE(); - case 64: + case 61: ACCEPT_TOKEN(sym__id); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(64); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(61); END_STATE(); - case 65: + case 62: ACCEPT_TOKEN(aux_sym__comment_no_newline_token1); END_STATE(); - case 66: + case 63: ACCEPT_TOKEN(aux_sym__comment_no_newline_token1); - if (lookahead == '\r') ADVANCE(66); - if (lookahead == '\\') ADVANCE(67); + if (lookahead == '\r') ADVANCE(63); + if (lookahead == '\\') ADVANCE(64); if (lookahead != 0 && lookahead != '\n' && - lookahead != '%') ADVANCE(65); + lookahead != '%') ADVANCE(62); END_STATE(); - case 67: + case 64: ACCEPT_TOKEN(aux_sym__comment_no_newline_token1); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(63); + lookahead != '\r') ADVANCE(60); END_STATE(); default: return false; @@ -3463,1163 +3425,1159 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 19, .external_lex_state = 2}, - [2] = {.lex_state = 19, .external_lex_state = 3}, - [3] = {.lex_state = 19, .external_lex_state = 3}, - [4] = {.lex_state = 19, .external_lex_state = 4}, - [5] = {.lex_state = 19, .external_lex_state = 4}, - [6] = {.lex_state = 19, .external_lex_state = 3}, - [7] = {.lex_state = 19, .external_lex_state = 3}, - [8] = {.lex_state = 19, .external_lex_state = 4}, - [9] = {.lex_state = 19, .external_lex_state = 4}, - [10] = {.lex_state = 19, .external_lex_state = 4}, - [11] = {.lex_state = 19, .external_lex_state = 4}, - [12] = {.lex_state = 19, .external_lex_state = 4}, - [13] = {.lex_state = 19, .external_lex_state = 4}, - [14] = {.lex_state = 19, .external_lex_state = 4}, - [15] = {.lex_state = 19, .external_lex_state = 4}, - [16] = {.lex_state = 19, .external_lex_state = 4}, - [17] = {.lex_state = 19, .external_lex_state = 4}, - [18] = {.lex_state = 19, .external_lex_state = 4}, - [19] = {.lex_state = 19, .external_lex_state = 4}, - [20] = {.lex_state = 19, .external_lex_state = 4}, - [21] = {.lex_state = 19, .external_lex_state = 4}, - [22] = {.lex_state = 19, .external_lex_state = 3}, - [23] = {.lex_state = 19, .external_lex_state = 3}, - [24] = {.lex_state = 19, .external_lex_state = 3}, - [25] = {.lex_state = 19, .external_lex_state = 3}, - [26] = {.lex_state = 19, .external_lex_state = 3}, - [27] = {.lex_state = 19, .external_lex_state = 3}, - [28] = {.lex_state = 19, .external_lex_state = 3}, - [29] = {.lex_state = 19, .external_lex_state = 3}, - [30] = {.lex_state = 19, .external_lex_state = 3}, - [31] = {.lex_state = 19, .external_lex_state = 3}, - [32] = {.lex_state = 19, .external_lex_state = 3}, - [33] = {.lex_state = 19, .external_lex_state = 3}, - [34] = {.lex_state = 19, .external_lex_state = 3}, - [35] = {.lex_state = 19, .external_lex_state = 3}, - [36] = {.lex_state = 19, .external_lex_state = 3}, - [37] = {.lex_state = 19, .external_lex_state = 3}, - [38] = {.lex_state = 19, .external_lex_state = 3}, - [39] = {.lex_state = 19, .external_lex_state = 3}, - [40] = {.lex_state = 19, .external_lex_state = 3}, - [41] = {.lex_state = 19, .external_lex_state = 3}, - [42] = {.lex_state = 19, .external_lex_state = 3}, - [43] = {.lex_state = 19, .external_lex_state = 3}, - [44] = {.lex_state = 19, .external_lex_state = 3}, - [45] = {.lex_state = 19, .external_lex_state = 3}, - [46] = {.lex_state = 19, .external_lex_state = 3}, - [47] = {.lex_state = 19, .external_lex_state = 3}, - [48] = {.lex_state = 19, .external_lex_state = 3}, - [49] = {.lex_state = 19, .external_lex_state = 3}, - [50] = {.lex_state = 19, .external_lex_state = 3}, - [51] = {.lex_state = 19, .external_lex_state = 3}, - [52] = {.lex_state = 19, .external_lex_state = 3}, - [53] = {.lex_state = 19, .external_lex_state = 4}, - [54] = {.lex_state = 19, .external_lex_state = 3}, - [55] = {.lex_state = 19, .external_lex_state = 3}, - [56] = {.lex_state = 19, .external_lex_state = 3}, - [57] = {.lex_state = 19, .external_lex_state = 5}, - [58] = {.lex_state = 19, .external_lex_state = 3}, - [59] = {.lex_state = 19, .external_lex_state = 5}, - [60] = {.lex_state = 19, .external_lex_state = 3}, - [61] = {.lex_state = 19, .external_lex_state = 5}, - [62] = {.lex_state = 19, .external_lex_state = 3}, - [63] = {.lex_state = 19, .external_lex_state = 5}, - [64] = {.lex_state = 19, .external_lex_state = 5}, - [65] = {.lex_state = 19, .external_lex_state = 6}, - [66] = {.lex_state = 19, .external_lex_state = 7}, - [67] = {.lex_state = 19, .external_lex_state = 8}, - [68] = {.lex_state = 19, .external_lex_state = 8}, - [69] = {.lex_state = 19, .external_lex_state = 7}, - [70] = {.lex_state = 19, .external_lex_state = 8}, - [71] = {.lex_state = 19, .external_lex_state = 7}, - [72] = {.lex_state = 19, .external_lex_state = 8}, - [73] = {.lex_state = 19, .external_lex_state = 7}, - [74] = {.lex_state = 19, .external_lex_state = 7}, - [75] = {.lex_state = 19, .external_lex_state = 9}, - [76] = {.lex_state = 19, .external_lex_state = 10}, - [77] = {.lex_state = 19, .external_lex_state = 10}, - [78] = {.lex_state = 19, .external_lex_state = 11}, - [79] = {.lex_state = 19, .external_lex_state = 11}, - [80] = {.lex_state = 19, .external_lex_state = 11}, - [81] = {.lex_state = 19, .external_lex_state = 7}, - [82] = {.lex_state = 19, .external_lex_state = 7}, - [83] = {.lex_state = 19, .external_lex_state = 7}, - [84] = {.lex_state = 19, .external_lex_state = 10}, - [85] = {.lex_state = 19, .external_lex_state = 11}, - [86] = {.lex_state = 19, .external_lex_state = 11}, - [87] = {.lex_state = 19, .external_lex_state = 9}, - [88] = {.lex_state = 19, .external_lex_state = 12}, - [89] = {.lex_state = 19, .external_lex_state = 13}, - [90] = {.lex_state = 19, .external_lex_state = 8}, - [91] = {.lex_state = 19, .external_lex_state = 8}, - [92] = {.lex_state = 19, .external_lex_state = 12}, - [93] = {.lex_state = 19, .external_lex_state = 8}, - [94] = {.lex_state = 19, .external_lex_state = 8}, - [95] = {.lex_state = 19, .external_lex_state = 12}, - [96] = {.lex_state = 19, .external_lex_state = 8}, - [97] = {.lex_state = 19, .external_lex_state = 13}, - [98] = {.lex_state = 19, .external_lex_state = 7}, - [99] = {.lex_state = 19, .external_lex_state = 8}, - [100] = {.lex_state = 19, .external_lex_state = 13}, - [101] = {.lex_state = 19, .external_lex_state = 13}, - [102] = {.lex_state = 19, .external_lex_state = 12}, - [103] = {.lex_state = 19, .external_lex_state = 12}, - [104] = {.lex_state = 19, .external_lex_state = 12}, - [105] = {.lex_state = 19, .external_lex_state = 10}, - [106] = {.lex_state = 19, .external_lex_state = 11}, - [107] = {.lex_state = 19, .external_lex_state = 7}, - [108] = {.lex_state = 19, .external_lex_state = 14}, - [109] = {.lex_state = 19, .external_lex_state = 4}, - [110] = {.lex_state = 19, .external_lex_state = 3}, - [111] = {.lex_state = 19, .external_lex_state = 4}, - [112] = {.lex_state = 19, .external_lex_state = 3}, - [113] = {.lex_state = 19, .external_lex_state = 3}, - [114] = {.lex_state = 19, .external_lex_state = 3}, - [115] = {.lex_state = 19, .external_lex_state = 3}, - [116] = {.lex_state = 19, .external_lex_state = 3}, - [117] = {.lex_state = 19, .external_lex_state = 3}, - [118] = {.lex_state = 19, .external_lex_state = 3}, - [119] = {.lex_state = 19, .external_lex_state = 3}, - [120] = {.lex_state = 19, .external_lex_state = 3}, - [121] = {.lex_state = 19, .external_lex_state = 3}, - [122] = {.lex_state = 19, .external_lex_state = 3}, - [123] = {.lex_state = 19, .external_lex_state = 3}, - [124] = {.lex_state = 19, .external_lex_state = 3}, - [125] = {.lex_state = 19, .external_lex_state = 3}, - [126] = {.lex_state = 19, .external_lex_state = 3}, - [127] = {.lex_state = 19, .external_lex_state = 3}, - [128] = {.lex_state = 19, .external_lex_state = 3}, - [129] = {.lex_state = 19, .external_lex_state = 3}, - [130] = {.lex_state = 19, .external_lex_state = 3}, - [131] = {.lex_state = 19, .external_lex_state = 3}, - [132] = {.lex_state = 19, .external_lex_state = 3}, - [133] = {.lex_state = 19, .external_lex_state = 3}, - [134] = {.lex_state = 19, .external_lex_state = 3}, - [135] = {.lex_state = 19, .external_lex_state = 3}, - [136] = {.lex_state = 19, .external_lex_state = 3}, - [137] = {.lex_state = 19, .external_lex_state = 4}, - [138] = {.lex_state = 19, .external_lex_state = 3}, - [139] = {.lex_state = 19, .external_lex_state = 4}, - [140] = {.lex_state = 19, .external_lex_state = 4}, - [141] = {.lex_state = 19, .external_lex_state = 4}, - [142] = {.lex_state = 19, .external_lex_state = 4}, - [143] = {.lex_state = 19, .external_lex_state = 4}, - [144] = {.lex_state = 19, .external_lex_state = 3}, - [145] = {.lex_state = 19, .external_lex_state = 4}, - [146] = {.lex_state = 19, .external_lex_state = 4}, - [147] = {.lex_state = 19, .external_lex_state = 4}, - [148] = {.lex_state = 19, .external_lex_state = 4}, - [149] = {.lex_state = 19, .external_lex_state = 4}, - [150] = {.lex_state = 19, .external_lex_state = 4}, - [151] = {.lex_state = 19, .external_lex_state = 4}, - [152] = {.lex_state = 19, .external_lex_state = 4}, - [153] = {.lex_state = 19, .external_lex_state = 4}, - [154] = {.lex_state = 19, .external_lex_state = 4}, - [155] = {.lex_state = 19, .external_lex_state = 4}, - [156] = {.lex_state = 19, .external_lex_state = 4}, - [157] = {.lex_state = 19, .external_lex_state = 4}, - [158] = {.lex_state = 19, .external_lex_state = 4}, - [159] = {.lex_state = 19, .external_lex_state = 4}, - [160] = {.lex_state = 19, .external_lex_state = 4}, - [161] = {.lex_state = 19, .external_lex_state = 4}, - [162] = {.lex_state = 19, .external_lex_state = 4}, - [163] = {.lex_state = 19, .external_lex_state = 4}, - [164] = {.lex_state = 19, .external_lex_state = 4}, - [165] = {.lex_state = 19, .external_lex_state = 4}, - [166] = {.lex_state = 19, .external_lex_state = 3}, - [167] = {.lex_state = 19, .external_lex_state = 4}, - [168] = {.lex_state = 19, .external_lex_state = 3}, - [169] = {.lex_state = 19, .external_lex_state = 4}, - [170] = {.lex_state = 19, .external_lex_state = 4}, - [171] = {.lex_state = 19, .external_lex_state = 3}, - [172] = {.lex_state = 19, .external_lex_state = 4}, - [173] = {.lex_state = 19, .external_lex_state = 3}, - [174] = {.lex_state = 19, .external_lex_state = 3}, - [175] = {.lex_state = 19, .external_lex_state = 3}, - [176] = {.lex_state = 19, .external_lex_state = 3}, - [177] = {.lex_state = 19, .external_lex_state = 3}, - [178] = {.lex_state = 19, .external_lex_state = 3}, - [179] = {.lex_state = 19, .external_lex_state = 3}, - [180] = {.lex_state = 19, .external_lex_state = 4}, - [181] = {.lex_state = 19, .external_lex_state = 3}, - [182] = {.lex_state = 19, .external_lex_state = 3}, - [183] = {.lex_state = 19, .external_lex_state = 3}, - [184] = {.lex_state = 19, .external_lex_state = 3}, - [185] = {.lex_state = 19, .external_lex_state = 3}, - [186] = {.lex_state = 19, .external_lex_state = 3}, - [187] = {.lex_state = 19, .external_lex_state = 4}, - [188] = {.lex_state = 19, .external_lex_state = 4}, - [189] = {.lex_state = 19, .external_lex_state = 3}, - [190] = {.lex_state = 19, .external_lex_state = 4}, - [191] = {.lex_state = 19, .external_lex_state = 4}, - [192] = {.lex_state = 19, .external_lex_state = 4}, - [193] = {.lex_state = 19, .external_lex_state = 4}, - [194] = {.lex_state = 19, .external_lex_state = 4}, - [195] = {.lex_state = 19, .external_lex_state = 4}, - [196] = {.lex_state = 19, .external_lex_state = 4}, - [197] = {.lex_state = 19, .external_lex_state = 4}, - [198] = {.lex_state = 19, .external_lex_state = 4}, - [199] = {.lex_state = 19, .external_lex_state = 4}, - [200] = {.lex_state = 19, .external_lex_state = 4}, - [201] = {.lex_state = 19, .external_lex_state = 4}, - [202] = {.lex_state = 19, .external_lex_state = 4}, - [203] = {.lex_state = 19, .external_lex_state = 3}, - [204] = {.lex_state = 19, .external_lex_state = 3}, - [205] = {.lex_state = 19, .external_lex_state = 3}, - [206] = {.lex_state = 19, .external_lex_state = 4}, - [207] = {.lex_state = 19, .external_lex_state = 3}, - [208] = {.lex_state = 19, .external_lex_state = 6}, - [209] = {.lex_state = 19, .external_lex_state = 3}, - [210] = {.lex_state = 19, .external_lex_state = 6}, - [211] = {.lex_state = 19, .external_lex_state = 15}, - [212] = {.lex_state = 19, .external_lex_state = 15}, - [213] = {.lex_state = 19, .external_lex_state = 15}, - [214] = {.lex_state = 19, .external_lex_state = 15}, - [215] = {.lex_state = 19, .external_lex_state = 15}, - [216] = {.lex_state = 19, .external_lex_state = 15}, - [217] = {.lex_state = 19, .external_lex_state = 15}, - [218] = {.lex_state = 19, .external_lex_state = 15}, - [219] = {.lex_state = 19, .external_lex_state = 15}, - [220] = {.lex_state = 19, .external_lex_state = 15}, - [221] = {.lex_state = 19, .external_lex_state = 16}, - [222] = {.lex_state = 19, .external_lex_state = 16}, - [223] = {.lex_state = 19, .external_lex_state = 16}, - [224] = {.lex_state = 19, .external_lex_state = 16}, - [225] = {.lex_state = 19, .external_lex_state = 16}, + [1] = {.lex_state = 18, .external_lex_state = 2}, + [2] = {.lex_state = 18, .external_lex_state = 3}, + [3] = {.lex_state = 18, .external_lex_state = 3}, + [4] = {.lex_state = 18, .external_lex_state = 3}, + [5] = {.lex_state = 18, .external_lex_state = 4}, + [6] = {.lex_state = 18, .external_lex_state = 3}, + [7] = {.lex_state = 18, .external_lex_state = 4}, + [8] = {.lex_state = 18, .external_lex_state = 4}, + [9] = {.lex_state = 18, .external_lex_state = 4}, + [10] = {.lex_state = 18, .external_lex_state = 4}, + [11] = {.lex_state = 18, .external_lex_state = 4}, + [12] = {.lex_state = 18, .external_lex_state = 4}, + [13] = {.lex_state = 18, .external_lex_state = 4}, + [14] = {.lex_state = 18, .external_lex_state = 4}, + [15] = {.lex_state = 18, .external_lex_state = 4}, + [16] = {.lex_state = 18, .external_lex_state = 4}, + [17] = {.lex_state = 18, .external_lex_state = 4}, + [18] = {.lex_state = 18, .external_lex_state = 4}, + [19] = {.lex_state = 18, .external_lex_state = 4}, + [20] = {.lex_state = 18, .external_lex_state = 4}, + [21] = {.lex_state = 18, .external_lex_state = 4}, + [22] = {.lex_state = 18, .external_lex_state = 3}, + [23] = {.lex_state = 18, .external_lex_state = 3}, + [24] = {.lex_state = 18, .external_lex_state = 3}, + [25] = {.lex_state = 18, .external_lex_state = 3}, + [26] = {.lex_state = 18, .external_lex_state = 3}, + [27] = {.lex_state = 18, .external_lex_state = 3}, + [28] = {.lex_state = 18, .external_lex_state = 3}, + [29] = {.lex_state = 18, .external_lex_state = 3}, + [30] = {.lex_state = 18, .external_lex_state = 3}, + [31] = {.lex_state = 18, .external_lex_state = 3}, + [32] = {.lex_state = 18, .external_lex_state = 3}, + [33] = {.lex_state = 18, .external_lex_state = 3}, + [34] = {.lex_state = 18, .external_lex_state = 3}, + [35] = {.lex_state = 18, .external_lex_state = 3}, + [36] = {.lex_state = 18, .external_lex_state = 3}, + [37] = {.lex_state = 18, .external_lex_state = 3}, + [38] = {.lex_state = 18, .external_lex_state = 3}, + [39] = {.lex_state = 18, .external_lex_state = 3}, + [40] = {.lex_state = 18, .external_lex_state = 3}, + [41] = {.lex_state = 18, .external_lex_state = 3}, + [42] = {.lex_state = 18, .external_lex_state = 3}, + [43] = {.lex_state = 18, .external_lex_state = 3}, + [44] = {.lex_state = 18, .external_lex_state = 3}, + [45] = {.lex_state = 18, .external_lex_state = 3}, + [46] = {.lex_state = 18, .external_lex_state = 3}, + [47] = {.lex_state = 18, .external_lex_state = 3}, + [48] = {.lex_state = 18, .external_lex_state = 3}, + [49] = {.lex_state = 18, .external_lex_state = 3}, + [50] = {.lex_state = 18, .external_lex_state = 3}, + [51] = {.lex_state = 18, .external_lex_state = 3}, + [52] = {.lex_state = 18, .external_lex_state = 3}, + [53] = {.lex_state = 18, .external_lex_state = 4}, + [54] = {.lex_state = 18, .external_lex_state = 3}, + [55] = {.lex_state = 18, .external_lex_state = 3}, + [56] = {.lex_state = 18, .external_lex_state = 3}, + [57] = {.lex_state = 18, .external_lex_state = 5}, + [58] = {.lex_state = 18, .external_lex_state = 3}, + [59] = {.lex_state = 18, .external_lex_state = 5}, + [60] = {.lex_state = 18, .external_lex_state = 3}, + [61] = {.lex_state = 18, .external_lex_state = 5}, + [62] = {.lex_state = 18, .external_lex_state = 3}, + [63] = {.lex_state = 18, .external_lex_state = 5}, + [64] = {.lex_state = 18, .external_lex_state = 5}, + [65] = {.lex_state = 18, .external_lex_state = 6}, + [66] = {.lex_state = 18, .external_lex_state = 7}, + [67] = {.lex_state = 18, .external_lex_state = 8}, + [68] = {.lex_state = 18, .external_lex_state = 8}, + [69] = {.lex_state = 18, .external_lex_state = 7}, + [70] = {.lex_state = 18, .external_lex_state = 8}, + [71] = {.lex_state = 18, .external_lex_state = 7}, + [72] = {.lex_state = 18, .external_lex_state = 8}, + [73] = {.lex_state = 18, .external_lex_state = 7}, + [74] = {.lex_state = 18, .external_lex_state = 7}, + [75] = {.lex_state = 18, .external_lex_state = 9}, + [76] = {.lex_state = 18, .external_lex_state = 9}, + [77] = {.lex_state = 18, .external_lex_state = 10}, + [78] = {.lex_state = 18, .external_lex_state = 10}, + [79] = {.lex_state = 18, .external_lex_state = 10}, + [80] = {.lex_state = 18, .external_lex_state = 7}, + [81] = {.lex_state = 18, .external_lex_state = 7}, + [82] = {.lex_state = 18, .external_lex_state = 7}, + [83] = {.lex_state = 18, .external_lex_state = 9}, + [84] = {.lex_state = 18, .external_lex_state = 10}, + [85] = {.lex_state = 18, .external_lex_state = 10}, + [86] = {.lex_state = 18, .external_lex_state = 11}, + [87] = {.lex_state = 18, .external_lex_state = 11}, + [88] = {.lex_state = 18, .external_lex_state = 12}, + [89] = {.lex_state = 18, .external_lex_state = 8}, + [90] = {.lex_state = 18, .external_lex_state = 13}, + [91] = {.lex_state = 18, .external_lex_state = 8}, + [92] = {.lex_state = 18, .external_lex_state = 12}, + [93] = {.lex_state = 18, .external_lex_state = 8}, + [94] = {.lex_state = 18, .external_lex_state = 8}, + [95] = {.lex_state = 18, .external_lex_state = 12}, + [96] = {.lex_state = 18, .external_lex_state = 13}, + [97] = {.lex_state = 18, .external_lex_state = 8}, + [98] = {.lex_state = 18, .external_lex_state = 7}, + [99] = {.lex_state = 18, .external_lex_state = 8}, + [100] = {.lex_state = 18, .external_lex_state = 13}, + [101] = {.lex_state = 18, .external_lex_state = 13}, + [102] = {.lex_state = 18, .external_lex_state = 12}, + [103] = {.lex_state = 18, .external_lex_state = 12}, + [104] = {.lex_state = 18, .external_lex_state = 12}, + [105] = {.lex_state = 18, .external_lex_state = 9}, + [106] = {.lex_state = 18, .external_lex_state = 10}, + [107] = {.lex_state = 18, .external_lex_state = 7}, + [108] = {.lex_state = 18, .external_lex_state = 14}, + [109] = {.lex_state = 18, .external_lex_state = 4}, + [110] = {.lex_state = 18, .external_lex_state = 3}, + [111] = {.lex_state = 18, .external_lex_state = 3}, + [112] = {.lex_state = 18, .external_lex_state = 3}, + [113] = {.lex_state = 18, .external_lex_state = 3}, + [114] = {.lex_state = 18, .external_lex_state = 3}, + [115] = {.lex_state = 18, .external_lex_state = 3}, + [116] = {.lex_state = 18, .external_lex_state = 3}, + [117] = {.lex_state = 18, .external_lex_state = 3}, + [118] = {.lex_state = 18, .external_lex_state = 3}, + [119] = {.lex_state = 18, .external_lex_state = 3}, + [120] = {.lex_state = 18, .external_lex_state = 3}, + [121] = {.lex_state = 18, .external_lex_state = 3}, + [122] = {.lex_state = 18, .external_lex_state = 3}, + [123] = {.lex_state = 18, .external_lex_state = 3}, + [124] = {.lex_state = 18, .external_lex_state = 3}, + [125] = {.lex_state = 18, .external_lex_state = 3}, + [126] = {.lex_state = 18, .external_lex_state = 3}, + [127] = {.lex_state = 18, .external_lex_state = 3}, + [128] = {.lex_state = 18, .external_lex_state = 3}, + [129] = {.lex_state = 18, .external_lex_state = 3}, + [130] = {.lex_state = 18, .external_lex_state = 3}, + [131] = {.lex_state = 18, .external_lex_state = 3}, + [132] = {.lex_state = 18, .external_lex_state = 3}, + [133] = {.lex_state = 18, .external_lex_state = 3}, + [134] = {.lex_state = 18, .external_lex_state = 3}, + [135] = {.lex_state = 18, .external_lex_state = 3}, + [136] = {.lex_state = 18, .external_lex_state = 3}, + [137] = {.lex_state = 18, .external_lex_state = 3}, + [138] = {.lex_state = 18, .external_lex_state = 3}, + [139] = {.lex_state = 18, .external_lex_state = 4}, + [140] = {.lex_state = 18, .external_lex_state = 3}, + [141] = {.lex_state = 18, .external_lex_state = 4}, + [142] = {.lex_state = 18, .external_lex_state = 4}, + [143] = {.lex_state = 18, .external_lex_state = 4}, + [144] = {.lex_state = 18, .external_lex_state = 4}, + [145] = {.lex_state = 18, .external_lex_state = 3}, + [146] = {.lex_state = 18, .external_lex_state = 3}, + [147] = {.lex_state = 18, .external_lex_state = 4}, + [148] = {.lex_state = 18, .external_lex_state = 4}, + [149] = {.lex_state = 18, .external_lex_state = 4}, + [150] = {.lex_state = 18, .external_lex_state = 4}, + [151] = {.lex_state = 18, .external_lex_state = 4}, + [152] = {.lex_state = 18, .external_lex_state = 4}, + [153] = {.lex_state = 18, .external_lex_state = 4}, + [154] = {.lex_state = 18, .external_lex_state = 4}, + [155] = {.lex_state = 18, .external_lex_state = 4}, + [156] = {.lex_state = 18, .external_lex_state = 4}, + [157] = {.lex_state = 18, .external_lex_state = 4}, + [158] = {.lex_state = 18, .external_lex_state = 4}, + [159] = {.lex_state = 18, .external_lex_state = 4}, + [160] = {.lex_state = 18, .external_lex_state = 4}, + [161] = {.lex_state = 18, .external_lex_state = 4}, + [162] = {.lex_state = 18, .external_lex_state = 4}, + [163] = {.lex_state = 18, .external_lex_state = 4}, + [164] = {.lex_state = 18, .external_lex_state = 4}, + [165] = {.lex_state = 18, .external_lex_state = 4}, + [166] = {.lex_state = 18, .external_lex_state = 4}, + [167] = {.lex_state = 18, .external_lex_state = 4}, + [168] = {.lex_state = 18, .external_lex_state = 3}, + [169] = {.lex_state = 18, .external_lex_state = 4}, + [170] = {.lex_state = 18, .external_lex_state = 3}, + [171] = {.lex_state = 18, .external_lex_state = 4}, + [172] = {.lex_state = 18, .external_lex_state = 4}, + [173] = {.lex_state = 18, .external_lex_state = 3}, + [174] = {.lex_state = 18, .external_lex_state = 4}, + [175] = {.lex_state = 18, .external_lex_state = 3}, + [176] = {.lex_state = 18, .external_lex_state = 3}, + [177] = {.lex_state = 18, .external_lex_state = 4}, + [178] = {.lex_state = 18, .external_lex_state = 3}, + [179] = {.lex_state = 18, .external_lex_state = 3}, + [180] = {.lex_state = 18, .external_lex_state = 4}, + [181] = {.lex_state = 18, .external_lex_state = 3}, + [182] = {.lex_state = 18, .external_lex_state = 4}, + [183] = {.lex_state = 18, .external_lex_state = 4}, + [184] = {.lex_state = 18, .external_lex_state = 4}, + [185] = {.lex_state = 18, .external_lex_state = 4}, + [186] = {.lex_state = 18, .external_lex_state = 4}, + [187] = {.lex_state = 18, .external_lex_state = 4}, + [188] = {.lex_state = 18, .external_lex_state = 4}, + [189] = {.lex_state = 18, .external_lex_state = 4}, + [190] = {.lex_state = 18, .external_lex_state = 4}, + [191] = {.lex_state = 18, .external_lex_state = 4}, + [192] = {.lex_state = 18, .external_lex_state = 4}, + [193] = {.lex_state = 18, .external_lex_state = 4}, + [194] = {.lex_state = 18, .external_lex_state = 4}, + [195] = {.lex_state = 18, .external_lex_state = 4}, + [196] = {.lex_state = 18, .external_lex_state = 4}, + [197] = {.lex_state = 18, .external_lex_state = 3}, + [198] = {.lex_state = 18, .external_lex_state = 3}, + [199] = {.lex_state = 18, .external_lex_state = 4}, + [200] = {.lex_state = 18, .external_lex_state = 3}, + [201] = {.lex_state = 18, .external_lex_state = 3}, + [202] = {.lex_state = 18, .external_lex_state = 3}, + [203] = {.lex_state = 18, .external_lex_state = 3}, + [204] = {.lex_state = 18, .external_lex_state = 3}, + [205] = {.lex_state = 18, .external_lex_state = 3}, + [206] = {.lex_state = 18, .external_lex_state = 3}, + [207] = {.lex_state = 18, .external_lex_state = 4}, + [208] = {.lex_state = 18, .external_lex_state = 6}, + [209] = {.lex_state = 18, .external_lex_state = 3}, + [210] = {.lex_state = 18, .external_lex_state = 6}, + [211] = {.lex_state = 18, .external_lex_state = 15}, + [212] = {.lex_state = 18, .external_lex_state = 15}, + [213] = {.lex_state = 18, .external_lex_state = 15}, + [214] = {.lex_state = 18, .external_lex_state = 15}, + [215] = {.lex_state = 18, .external_lex_state = 15}, + [216] = {.lex_state = 18, .external_lex_state = 15}, + [217] = {.lex_state = 18, .external_lex_state = 15}, + [218] = {.lex_state = 18, .external_lex_state = 15}, + [219] = {.lex_state = 18, .external_lex_state = 15}, + [220] = {.lex_state = 18, .external_lex_state = 15}, + [221] = {.lex_state = 18, .external_lex_state = 16}, + [222] = {.lex_state = 18, .external_lex_state = 16}, + [223] = {.lex_state = 18, .external_lex_state = 16}, + [224] = {.lex_state = 18, .external_lex_state = 16}, + [225] = {.lex_state = 18, .external_lex_state = 16}, [226] = {.lex_state = 2, .external_lex_state = 17}, [227] = {.lex_state = 2, .external_lex_state = 17}, [228] = {.lex_state = 2, .external_lex_state = 17}, [229] = {.lex_state = 2, .external_lex_state = 17}, [230] = {.lex_state = 2, .external_lex_state = 17}, - [231] = {.lex_state = 19, .external_lex_state = 18}, - [232] = {.lex_state = 19, .external_lex_state = 18}, - [233] = {.lex_state = 19, .external_lex_state = 18}, - [234] = {.lex_state = 19, .external_lex_state = 19}, - [235] = {.lex_state = 19, .external_lex_state = 19}, - [236] = {.lex_state = 19, .external_lex_state = 19}, - [237] = {.lex_state = 19, .external_lex_state = 20}, - [238] = {.lex_state = 0, .external_lex_state = 21}, - [239] = {.lex_state = 1, .external_lex_state = 22}, - [240] = {.lex_state = 1, .external_lex_state = 22}, - [241] = {.lex_state = 1, .external_lex_state = 22}, - [242] = {.lex_state = 1, .external_lex_state = 22}, - [243] = {.lex_state = 1, .external_lex_state = 22}, - [244] = {.lex_state = 1, .external_lex_state = 22}, - [245] = {.lex_state = 0, .external_lex_state = 21}, - [246] = {.lex_state = 19, .external_lex_state = 17}, - [247] = {.lex_state = 19, .external_lex_state = 20}, - [248] = {.lex_state = 0, .external_lex_state = 23}, - [249] = {.lex_state = 0, .external_lex_state = 24}, - [250] = {.lex_state = 19, .external_lex_state = 17}, - [251] = {.lex_state = 19, .external_lex_state = 17}, - [252] = {.lex_state = 19, .external_lex_state = 17}, - [253] = {.lex_state = 19, .external_lex_state = 17}, - [254] = {.lex_state = 19}, - [255] = {.lex_state = 19}, - [256] = {.lex_state = 19, .external_lex_state = 25}, - [257] = {.lex_state = 19}, - [258] = {.lex_state = 0, .external_lex_state = 24}, - [259] = {.lex_state = 19, .external_lex_state = 25}, - [260] = {.lex_state = 19, .external_lex_state = 25}, - [261] = {.lex_state = 19, .external_lex_state = 25}, - [262] = {.lex_state = 19, .external_lex_state = 25}, - [263] = {.lex_state = 19, .external_lex_state = 25}, - [264] = {.lex_state = 19, .external_lex_state = 25}, - [265] = {.lex_state = 19, .external_lex_state = 25}, - [266] = {.lex_state = 19, .external_lex_state = 25}, - [267] = {.lex_state = 19, .external_lex_state = 25}, - [268] = {.lex_state = 19, .external_lex_state = 25}, - [269] = {.lex_state = 19, .external_lex_state = 25}, - [270] = {.lex_state = 19, .external_lex_state = 25}, - [271] = {.lex_state = 19, .external_lex_state = 25}, - [272] = {.lex_state = 19, .external_lex_state = 25}, - [273] = {.lex_state = 19, .external_lex_state = 25}, - [274] = {.lex_state = 19, .external_lex_state = 25}, - [275] = {.lex_state = 19, .external_lex_state = 25}, - [276] = {.lex_state = 19, .external_lex_state = 25}, - [277] = {.lex_state = 19, .external_lex_state = 25}, - [278] = {.lex_state = 19}, - [279] = {.lex_state = 19}, - [280] = {.lex_state = 19}, - [281] = {.lex_state = 19}, - [282] = {.lex_state = 19}, - [283] = {.lex_state = 19}, - [284] = {.lex_state = 0, .external_lex_state = 23}, - [285] = {.lex_state = 19, .external_lex_state = 17}, - [286] = {.lex_state = 19}, - [287] = {.lex_state = 19}, - [288] = {.lex_state = 19}, - [289] = {.lex_state = 19}, - [290] = {.lex_state = 19}, - [291] = {.lex_state = 19}, - [292] = {.lex_state = 19, .external_lex_state = 17}, - [293] = {.lex_state = 19}, - [294] = {.lex_state = 19}, - [295] = {.lex_state = 19}, - [296] = {.lex_state = 19}, - [297] = {.lex_state = 19}, - [298] = {.lex_state = 19}, - [299] = {.lex_state = 3}, - [300] = {.lex_state = 19}, - [301] = {.lex_state = 4}, - [302] = {.lex_state = 4}, - [303] = {.lex_state = 3}, - [304] = {.lex_state = 6}, - [305] = {.lex_state = 4}, - [306] = {.lex_state = 4}, - [307] = {.lex_state = 19, .external_lex_state = 26}, - [308] = {.lex_state = 6}, - [309] = {.lex_state = 4}, - [310] = {.lex_state = 19}, - [311] = {.lex_state = 4}, - [312] = {.lex_state = 19, .external_lex_state = 26}, - [313] = {.lex_state = 1, .external_lex_state = 22}, - [314] = {.lex_state = 19, .external_lex_state = 20}, - [315] = {.lex_state = 1, .external_lex_state = 22}, - [316] = {.lex_state = 19, .external_lex_state = 20}, - [317] = {.lex_state = 19, .external_lex_state = 17}, - [318] = {.lex_state = 19, .external_lex_state = 26}, - [319] = {.lex_state = 19, .external_lex_state = 20}, - [320] = {.lex_state = 6}, - [321] = {.lex_state = 3}, - [322] = {.lex_state = 0, .external_lex_state = 27}, - [323] = {.lex_state = 0, .external_lex_state = 21}, - [324] = {.lex_state = 0, .external_lex_state = 21}, - [325] = {.lex_state = 0, .external_lex_state = 27}, - [326] = {.lex_state = 0, .external_lex_state = 21}, - [327] = {.lex_state = 39, .external_lex_state = 28}, - [328] = {.lex_state = 0, .external_lex_state = 27}, - [329] = {.lex_state = 39, .external_lex_state = 28}, - [330] = {.lex_state = 39, .external_lex_state = 28}, - [331] = {.lex_state = 39, .external_lex_state = 28}, - [332] = {.lex_state = 0, .external_lex_state = 27}, - [333] = {.lex_state = 39, .external_lex_state = 28}, - [334] = {.lex_state = 39, .external_lex_state = 28}, - [335] = {.lex_state = 0, .external_lex_state = 27}, - [336] = {.lex_state = 39, .external_lex_state = 28}, - [337] = {.lex_state = 39, .external_lex_state = 28}, - [338] = {.lex_state = 39, .external_lex_state = 28}, - [339] = {.lex_state = 0, .external_lex_state = 27}, - [340] = {.lex_state = 39, .external_lex_state = 28}, - [341] = {.lex_state = 39, .external_lex_state = 28}, - [342] = {.lex_state = 39, .external_lex_state = 28}, - [343] = {.lex_state = 0, .external_lex_state = 21}, - [344] = {.lex_state = 39, .external_lex_state = 28}, - [345] = {.lex_state = 39, .external_lex_state = 28}, - [346] = {.lex_state = 39, .external_lex_state = 28}, - [347] = {.lex_state = 0, .external_lex_state = 21}, - [348] = {.lex_state = 0, .external_lex_state = 21}, + [231] = {.lex_state = 18, .external_lex_state = 18}, + [232] = {.lex_state = 18, .external_lex_state = 18}, + [233] = {.lex_state = 18, .external_lex_state = 18}, + [234] = {.lex_state = 18, .external_lex_state = 19}, + [235] = {.lex_state = 18, .external_lex_state = 19}, + [236] = {.lex_state = 0, .external_lex_state = 20}, + [237] = {.lex_state = 0, .external_lex_state = 21}, + [238] = {.lex_state = 18, .external_lex_state = 19}, + [239] = {.lex_state = 18, .external_lex_state = 22}, + [240] = {.lex_state = 0, .external_lex_state = 20}, + [241] = {.lex_state = 0, .external_lex_state = 23}, + [242] = {.lex_state = 1, .external_lex_state = 24}, + [243] = {.lex_state = 0, .external_lex_state = 23}, + [244] = {.lex_state = 1, .external_lex_state = 24}, + [245] = {.lex_state = 1, .external_lex_state = 24}, + [246] = {.lex_state = 1, .external_lex_state = 24}, + [247] = {.lex_state = 1, .external_lex_state = 24}, + [248] = {.lex_state = 0, .external_lex_state = 21}, + [249] = {.lex_state = 1, .external_lex_state = 24}, + [250] = {.lex_state = 18, .external_lex_state = 17}, + [251] = {.lex_state = 18, .external_lex_state = 22}, + [252] = {.lex_state = 18, .external_lex_state = 17}, + [253] = {.lex_state = 18, .external_lex_state = 17}, + [254] = {.lex_state = 18, .external_lex_state = 17}, + [255] = {.lex_state = 18, .external_lex_state = 17}, + [256] = {.lex_state = 18}, + [257] = {.lex_state = 18}, + [258] = {.lex_state = 18}, + [259] = {.lex_state = 18}, + [260] = {.lex_state = 3}, + [261] = {.lex_state = 18}, + [262] = {.lex_state = 3}, + [263] = {.lex_state = 3}, + [264] = {.lex_state = 3}, + [265] = {.lex_state = 18}, + [266] = {.lex_state = 18}, + [267] = {.lex_state = 3}, + [268] = {.lex_state = 3}, + [269] = {.lex_state = 18}, + [270] = {.lex_state = 18}, + [271] = {.lex_state = 18, .external_lex_state = 17}, + [272] = {.lex_state = 18}, + [273] = {.lex_state = 18, .external_lex_state = 17}, + [274] = {.lex_state = 18, .external_lex_state = 25}, + [275] = {.lex_state = 5}, + [276] = {.lex_state = 18}, + [277] = {.lex_state = 18}, + [278] = {.lex_state = 5}, + [279] = {.lex_state = 18, .external_lex_state = 25}, + [280] = {.lex_state = 18, .external_lex_state = 17}, + [281] = {.lex_state = 18, .external_lex_state = 22}, + [282] = {.lex_state = 1, .external_lex_state = 24}, + [283] = {.lex_state = 18, .external_lex_state = 22}, + [284] = {.lex_state = 1, .external_lex_state = 24}, + [285] = {.lex_state = 0, .external_lex_state = 26}, + [286] = {.lex_state = 38, .external_lex_state = 27}, + [287] = {.lex_state = 38, .external_lex_state = 27}, + [288] = {.lex_state = 0, .external_lex_state = 26}, + [289] = {.lex_state = 18, .external_lex_state = 22}, + [290] = {.lex_state = 18, .external_lex_state = 25}, + [291] = {.lex_state = 0, .external_lex_state = 20}, + [292] = {.lex_state = 0, .external_lex_state = 20}, + [293] = {.lex_state = 0, .external_lex_state = 20}, + [294] = {.lex_state = 0, .external_lex_state = 20}, + [295] = {.lex_state = 0, .external_lex_state = 20}, + [296] = {.lex_state = 0, .external_lex_state = 20}, + [297] = {.lex_state = 0, .external_lex_state = 20}, + [298] = {.lex_state = 0, .external_lex_state = 26}, + [299] = {.lex_state = 38, .external_lex_state = 27}, + [300] = {.lex_state = 38, .external_lex_state = 27}, + [301] = {.lex_state = 38, .external_lex_state = 27}, + [302] = {.lex_state = 38, .external_lex_state = 27}, + [303] = {.lex_state = 38, .external_lex_state = 27}, + [304] = {.lex_state = 5}, + [305] = {.lex_state = 0, .external_lex_state = 26}, + [306] = {.lex_state = 38, .external_lex_state = 27}, + [307] = {.lex_state = 38, .external_lex_state = 27}, + [308] = {.lex_state = 38, .external_lex_state = 27}, + [309] = {.lex_state = 0, .external_lex_state = 26}, + [310] = {.lex_state = 38, .external_lex_state = 27}, + [311] = {.lex_state = 38, .external_lex_state = 27}, + [312] = {.lex_state = 38, .external_lex_state = 27}, + [313] = {.lex_state = 0, .external_lex_state = 26}, + [314] = {.lex_state = 38, .external_lex_state = 27}, + [315] = {.lex_state = 38, .external_lex_state = 27}, + [316] = {.lex_state = 0, .external_lex_state = 28}, + [317] = {.lex_state = 0, .external_lex_state = 29}, + [318] = {.lex_state = 0, .external_lex_state = 23}, + [319] = {.lex_state = 0, .external_lex_state = 30}, + [320] = {.lex_state = 38, .external_lex_state = 27}, + [321] = {.lex_state = 0, .external_lex_state = 21}, + [322] = {.lex_state = 0, .external_lex_state = 30}, + [323] = {.lex_state = 0, .external_lex_state = 29}, + [324] = {.lex_state = 38, .external_lex_state = 27}, + [325] = {.lex_state = 0, .external_lex_state = 23}, + [326] = {.lex_state = 0, .external_lex_state = 30}, + [327] = {.lex_state = 0, .external_lex_state = 21}, + [328] = {.lex_state = 0, .external_lex_state = 21}, + [329] = {.lex_state = 0, .external_lex_state = 29}, + [330] = {.lex_state = 0, .external_lex_state = 28}, + [331] = {.lex_state = 0, .external_lex_state = 21}, + [332] = {.lex_state = 0, .external_lex_state = 29}, + [333] = {.lex_state = 0, .external_lex_state = 21}, + [334] = {.lex_state = 0, .external_lex_state = 30}, + [335] = {.lex_state = 0, .external_lex_state = 29}, + [336] = {.lex_state = 0, .external_lex_state = 28}, + [337] = {.lex_state = 0, .external_lex_state = 28}, + [338] = {.lex_state = 0, .external_lex_state = 21}, + [339] = {.lex_state = 0, .external_lex_state = 23}, + [340] = {.lex_state = 0, .external_lex_state = 23}, + [341] = {.lex_state = 0, .external_lex_state = 23}, + [342] = {.lex_state = 0, .external_lex_state = 30}, + [343] = {.lex_state = 0, .external_lex_state = 29}, + [344] = {.lex_state = 0, .external_lex_state = 28}, + [345] = {.lex_state = 0, .external_lex_state = 28}, + [346] = {.lex_state = 0, .external_lex_state = 23}, + [347] = {.lex_state = 0, .external_lex_state = 23}, + [348] = {.lex_state = 0, .external_lex_state = 30}, [349] = {.lex_state = 0, .external_lex_state = 21}, - [350] = {.lex_state = 0, .external_lex_state = 29}, - [351] = {.lex_state = 0, .external_lex_state = 30}, - [352] = {.lex_state = 0, .external_lex_state = 23}, + [350] = {.lex_state = 0, .external_lex_state = 31}, + [351] = {.lex_state = 0, .external_lex_state = 32}, + [352] = {.lex_state = 0, .external_lex_state = 33}, [353] = {.lex_state = 0, .external_lex_state = 31}, - [354] = {.lex_state = 0, .external_lex_state = 30}, - [355] = {.lex_state = 0, .external_lex_state = 29}, - [356] = {.lex_state = 0, .external_lex_state = 31}, - [357] = {.lex_state = 0, .external_lex_state = 24}, - [358] = {.lex_state = 39, .external_lex_state = 28}, - [359] = {.lex_state = 0, .external_lex_state = 24}, - [360] = {.lex_state = 0, .external_lex_state = 30}, - [361] = {.lex_state = 0, .external_lex_state = 24}, - [362] = {.lex_state = 0, .external_lex_state = 24}, - [363] = {.lex_state = 0, .external_lex_state = 24}, - [364] = {.lex_state = 0, .external_lex_state = 30}, - [365] = {.lex_state = 0, .external_lex_state = 29}, - [366] = {.lex_state = 0, .external_lex_state = 30}, - [367] = {.lex_state = 0, .external_lex_state = 23}, + [354] = {.lex_state = 0, .external_lex_state = 31}, + [355] = {.lex_state = 0, .external_lex_state = 31}, + [356] = {.lex_state = 0, .external_lex_state = 32}, + [357] = {.lex_state = 0, .external_lex_state = 32}, + [358] = {.lex_state = 3}, + [359] = {.lex_state = 3}, + [360] = {.lex_state = 0, .external_lex_state = 31}, + [361] = {.lex_state = 0, .external_lex_state = 32}, + [362] = {.lex_state = 0, .external_lex_state = 33}, + [363] = {.lex_state = 0, .external_lex_state = 32}, + [364] = {.lex_state = 0, .external_lex_state = 31}, + [365] = {.lex_state = 0, .external_lex_state = 31}, + [366] = {.lex_state = 0, .external_lex_state = 32}, + [367] = {.lex_state = 3}, [368] = {.lex_state = 0, .external_lex_state = 31}, - [369] = {.lex_state = 0, .external_lex_state = 23}, - [370] = {.lex_state = 0, .external_lex_state = 23}, - [371] = {.lex_state = 0, .external_lex_state = 29}, - [372] = {.lex_state = 0, .external_lex_state = 31}, - [373] = {.lex_state = 0, .external_lex_state = 30}, - [374] = {.lex_state = 0, .external_lex_state = 29}, - [375] = {.lex_state = 0, .external_lex_state = 31}, - [376] = {.lex_state = 0, .external_lex_state = 23}, - [377] = {.lex_state = 0, .external_lex_state = 23}, - [378] = {.lex_state = 0, .external_lex_state = 24}, - [379] = {.lex_state = 0, .external_lex_state = 23}, - [380] = {.lex_state = 39, .external_lex_state = 28}, - [381] = {.lex_state = 0, .external_lex_state = 29}, - [382] = {.lex_state = 0, .external_lex_state = 24}, + [369] = {.lex_state = 3}, + [370] = {.lex_state = 0, .external_lex_state = 32}, + [371] = {.lex_state = 0, .external_lex_state = 32}, + [372] = {.lex_state = 3}, + [373] = {.lex_state = 3}, + [374] = {.lex_state = 0, .external_lex_state = 32}, + [375] = {.lex_state = 3}, + [376] = {.lex_state = 0, .external_lex_state = 33}, + [377] = {.lex_state = 0, .external_lex_state = 33}, + [378] = {.lex_state = 0, .external_lex_state = 31}, + [379] = {.lex_state = 3}, + [380] = {.lex_state = 3}, + [381] = {.lex_state = 0, .external_lex_state = 31}, + [382] = {.lex_state = 0, .external_lex_state = 31}, [383] = {.lex_state = 0, .external_lex_state = 31}, - [384] = {.lex_state = 0, .external_lex_state = 32}, - [385] = {.lex_state = 4}, - [386] = {.lex_state = 0, .external_lex_state = 33}, - [387] = {.lex_state = 4}, - [388] = {.lex_state = 0, .external_lex_state = 32}, - [389] = {.lex_state = 4}, - [390] = {.lex_state = 0, .external_lex_state = 32}, - [391] = {.lex_state = 0, .external_lex_state = 32}, - [392] = {.lex_state = 0, .external_lex_state = 32}, - [393] = {.lex_state = 0, .external_lex_state = 32}, - [394] = {.lex_state = 4}, - [395] = {.lex_state = 4}, - [396] = {.lex_state = 0, .external_lex_state = 33}, - [397] = {.lex_state = 0, .external_lex_state = 33}, - [398] = {.lex_state = 0, .external_lex_state = 32}, - [399] = {.lex_state = 0, .external_lex_state = 32}, - [400] = {.lex_state = 0, .external_lex_state = 32}, - [401] = {.lex_state = 0, .external_lex_state = 32}, - [402] = {.lex_state = 0, .external_lex_state = 32}, - [403] = {.lex_state = 0, .external_lex_state = 32}, - [404] = {.lex_state = 0, .external_lex_state = 32}, - [405] = {.lex_state = 0, .external_lex_state = 32}, + [384] = {.lex_state = 3}, + [385] = {.lex_state = 0, .external_lex_state = 32}, + [386] = {.lex_state = 0, .external_lex_state = 31}, + [387] = {.lex_state = 0, .external_lex_state = 31}, + [388] = {.lex_state = 0, .external_lex_state = 31}, + [389] = {.lex_state = 0, .external_lex_state = 31}, + [390] = {.lex_state = 0, .external_lex_state = 31}, + [391] = {.lex_state = 0, .external_lex_state = 31}, + [392] = {.lex_state = 0, .external_lex_state = 31}, + [393] = {.lex_state = 0, .external_lex_state = 31}, + [394] = {.lex_state = 0, .external_lex_state = 31}, + [395] = {.lex_state = 0, .external_lex_state = 31}, + [396] = {.lex_state = 0, .external_lex_state = 31}, + [397] = {.lex_state = 0, .external_lex_state = 31}, + [398] = {.lex_state = 0, .external_lex_state = 31}, + [399] = {.lex_state = 0, .external_lex_state = 31}, + [400] = {.lex_state = 0, .external_lex_state = 31}, + [401] = {.lex_state = 0, .external_lex_state = 31}, + [402] = {.lex_state = 0, .external_lex_state = 31}, + [403] = {.lex_state = 0, .external_lex_state = 31}, + [404] = {.lex_state = 0, .external_lex_state = 31}, + [405] = {.lex_state = 0, .external_lex_state = 31}, [406] = {.lex_state = 0, .external_lex_state = 33}, - [407] = {.lex_state = 0, .external_lex_state = 32}, - [408] = {.lex_state = 0, .external_lex_state = 32}, - [409] = {.lex_state = 0, .external_lex_state = 32}, - [410] = {.lex_state = 0, .external_lex_state = 32}, - [411] = {.lex_state = 0, .external_lex_state = 32}, - [412] = {.lex_state = 0, .external_lex_state = 32}, - [413] = {.lex_state = 0, .external_lex_state = 32}, - [414] = {.lex_state = 0, .external_lex_state = 32}, - [415] = {.lex_state = 0, .external_lex_state = 32}, - [416] = {.lex_state = 0, .external_lex_state = 32}, + [407] = {.lex_state = 0, .external_lex_state = 31}, + [408] = {.lex_state = 0, .external_lex_state = 31}, + [409] = {.lex_state = 0, .external_lex_state = 31}, + [410] = {.lex_state = 0, .external_lex_state = 31}, + [411] = {.lex_state = 0, .external_lex_state = 31}, + [412] = {.lex_state = 0, .external_lex_state = 31}, + [413] = {.lex_state = 0, .external_lex_state = 31}, + [414] = {.lex_state = 0, .external_lex_state = 31}, + [415] = {.lex_state = 0, .external_lex_state = 31}, + [416] = {.lex_state = 0, .external_lex_state = 31}, [417] = {.lex_state = 0, .external_lex_state = 32}, - [418] = {.lex_state = 0, .external_lex_state = 32}, - [419] = {.lex_state = 0, .external_lex_state = 32}, - [420] = {.lex_state = 0, .external_lex_state = 32}, - [421] = {.lex_state = 0, .external_lex_state = 32}, - [422] = {.lex_state = 0, .external_lex_state = 32}, - [423] = {.lex_state = 0, .external_lex_state = 32}, - [424] = {.lex_state = 0, .external_lex_state = 33}, - [425] = {.lex_state = 0, .external_lex_state = 32}, - [426] = {.lex_state = 4}, - [427] = {.lex_state = 0, .external_lex_state = 32}, - [428] = {.lex_state = 0, .external_lex_state = 32}, - [429] = {.lex_state = 0, .external_lex_state = 33}, - [430] = {.lex_state = 0, .external_lex_state = 33}, - [431] = {.lex_state = 4}, - [432] = {.lex_state = 0, .external_lex_state = 33}, - [433] = {.lex_state = 0, .external_lex_state = 33}, - [434] = {.lex_state = 0, .external_lex_state = 32}, - [435] = {.lex_state = 0, .external_lex_state = 34}, - [436] = {.lex_state = 0, .external_lex_state = 34}, - [437] = {.lex_state = 0, .external_lex_state = 34}, - [438] = {.lex_state = 0, .external_lex_state = 32}, - [439] = {.lex_state = 0, .external_lex_state = 32}, - [440] = {.lex_state = 0, .external_lex_state = 34}, - [441] = {.lex_state = 4}, - [442] = {.lex_state = 0, .external_lex_state = 32}, - [443] = {.lex_state = 4}, - [444] = {.lex_state = 0, .external_lex_state = 34}, - [445] = {.lex_state = 0, .external_lex_state = 32}, - [446] = {.lex_state = 0, .external_lex_state = 32}, - [447] = {.lex_state = 0, .external_lex_state = 32}, - [448] = {.lex_state = 4}, - [449] = {.lex_state = 0, .external_lex_state = 33}, - [450] = {.lex_state = 0, .external_lex_state = 33}, - [451] = {.lex_state = 0, .external_lex_state = 32}, - [452] = {.lex_state = 0, .external_lex_state = 28}, - [453] = {.lex_state = 0, .external_lex_state = 35}, - [454] = {.lex_state = 0, .external_lex_state = 36}, - [455] = {.lex_state = 0, .external_lex_state = 36}, - [456] = {.lex_state = 0, .external_lex_state = 28}, - [457] = {.lex_state = 0, .external_lex_state = 28}, - [458] = {.lex_state = 0, .external_lex_state = 37}, - [459] = {.lex_state = 39}, - [460] = {.lex_state = 0, .external_lex_state = 38}, - [461] = {.lex_state = 7, .external_lex_state = 25}, - [462] = {.lex_state = 8}, - [463] = {.lex_state = 0, .external_lex_state = 39}, - [464] = {.lex_state = 39, .external_lex_state = 40}, - [465] = {.lex_state = 39}, - [466] = {.lex_state = 0, .external_lex_state = 41}, - [467] = {.lex_state = 0, .external_lex_state = 41}, - [468] = {.lex_state = 0, .external_lex_state = 41}, - [469] = {.lex_state = 0, .external_lex_state = 37}, - [470] = {.lex_state = 0, .external_lex_state = 37}, - [471] = {.lex_state = 0, .external_lex_state = 37}, - [472] = {.lex_state = 0, .external_lex_state = 41}, - [473] = {.lex_state = 0, .external_lex_state = 37}, - [474] = {.lex_state = 0, .external_lex_state = 37}, - [475] = {.lex_state = 0, .external_lex_state = 39}, - [476] = {.lex_state = 0, .external_lex_state = 36}, - [477] = {.lex_state = 8}, - [478] = {.lex_state = 8}, - [479] = {.lex_state = 0, .external_lex_state = 42}, - [480] = {.lex_state = 0, .external_lex_state = 43}, - [481] = {.lex_state = 0, .external_lex_state = 44}, - [482] = {.lex_state = 0, .external_lex_state = 45}, - [483] = {.lex_state = 0, .external_lex_state = 46}, - [484] = {.lex_state = 0, .external_lex_state = 47}, - [485] = {.lex_state = 0, .external_lex_state = 48}, - [486] = {.lex_state = 0, .external_lex_state = 49}, - [487] = {.lex_state = 0, .external_lex_state = 50}, - [488] = {.lex_state = 0, .external_lex_state = 51}, - [489] = {.lex_state = 0, .external_lex_state = 52}, - [490] = {.lex_state = 0, .external_lex_state = 53}, - [491] = {.lex_state = 0, .external_lex_state = 54}, - [492] = {.lex_state = 0, .external_lex_state = 55}, - [493] = {.lex_state = 0, .external_lex_state = 56}, - [494] = {.lex_state = 0, .external_lex_state = 57}, - [495] = {.lex_state = 39, .external_lex_state = 40}, - [496] = {.lex_state = 0, .external_lex_state = 42}, - [497] = {.lex_state = 0, .external_lex_state = 43}, - [498] = {.lex_state = 0, .external_lex_state = 44}, - [499] = {.lex_state = 0, .external_lex_state = 45}, - [500] = {.lex_state = 0, .external_lex_state = 46}, - [501] = {.lex_state = 0, .external_lex_state = 47}, - [502] = {.lex_state = 0, .external_lex_state = 48}, - [503] = {.lex_state = 0, .external_lex_state = 49}, - [504] = {.lex_state = 0, .external_lex_state = 50}, - [505] = {.lex_state = 0, .external_lex_state = 51}, - [506] = {.lex_state = 0, .external_lex_state = 52}, + [418] = {.lex_state = 0, .external_lex_state = 27}, + [419] = {.lex_state = 0, .external_lex_state = 34}, + [420] = {.lex_state = 0, .external_lex_state = 35}, + [421] = {.lex_state = 0, .external_lex_state = 34}, + [422] = {.lex_state = 0, .external_lex_state = 27}, + [423] = {.lex_state = 0, .external_lex_state = 27}, + [424] = {.lex_state = 0, .external_lex_state = 36}, + [425] = {.lex_state = 0, .external_lex_state = 37}, + [426] = {.lex_state = 0, .external_lex_state = 38}, + [427] = {.lex_state = 0, .external_lex_state = 39}, + [428] = {.lex_state = 0, .external_lex_state = 40}, + [429] = {.lex_state = 0, .external_lex_state = 41}, + [430] = {.lex_state = 0, .external_lex_state = 42}, + [431] = {.lex_state = 0, .external_lex_state = 43}, + [432] = {.lex_state = 0, .external_lex_state = 44}, + [433] = {.lex_state = 0, .external_lex_state = 45}, + [434] = {.lex_state = 0, .external_lex_state = 46}, + [435] = {.lex_state = 0, .external_lex_state = 47}, + [436] = {.lex_state = 0, .external_lex_state = 48}, + [437] = {.lex_state = 0, .external_lex_state = 49}, + [438] = {.lex_state = 0, .external_lex_state = 50}, + [439] = {.lex_state = 0, .external_lex_state = 51}, + [440] = {.lex_state = 0, .external_lex_state = 52}, + [441] = {.lex_state = 0, .external_lex_state = 51}, + [442] = {.lex_state = 0, .external_lex_state = 52}, + [443] = {.lex_state = 0, .external_lex_state = 53}, + [444] = {.lex_state = 0, .external_lex_state = 54}, + [445] = {.lex_state = 6}, + [446] = {.lex_state = 0, .external_lex_state = 54}, + [447] = {.lex_state = 0, .external_lex_state = 54}, + [448] = {.lex_state = 0, .external_lex_state = 37}, + [449] = {.lex_state = 0, .external_lex_state = 39}, + [450] = {.lex_state = 38}, + [451] = {.lex_state = 0, .external_lex_state = 43}, + [452] = {.lex_state = 0, .external_lex_state = 53}, + [453] = {.lex_state = 0, .external_lex_state = 54}, + [454] = {.lex_state = 0, .external_lex_state = 54}, + [455] = {.lex_state = 0, .external_lex_state = 44}, + [456] = {.lex_state = 0, .external_lex_state = 36}, + [457] = {.lex_state = 0, .external_lex_state = 34}, + [458] = {.lex_state = 6}, + [459] = {.lex_state = 0, .external_lex_state = 37}, + [460] = {.lex_state = 0, .external_lex_state = 37}, + [461] = {.lex_state = 0, .external_lex_state = 38}, + [462] = {.lex_state = 0, .external_lex_state = 39}, + [463] = {.lex_state = 0, .external_lex_state = 40}, + [464] = {.lex_state = 0, .external_lex_state = 41}, + [465] = {.lex_state = 0, .external_lex_state = 42}, + [466] = {.lex_state = 0, .external_lex_state = 43}, + [467] = {.lex_state = 0, .external_lex_state = 44}, + [468] = {.lex_state = 0, .external_lex_state = 45}, + [469] = {.lex_state = 0, .external_lex_state = 46}, + [470] = {.lex_state = 0, .external_lex_state = 47}, + [471] = {.lex_state = 0, .external_lex_state = 48}, + [472] = {.lex_state = 0, .external_lex_state = 49}, + [473] = {.lex_state = 0, .external_lex_state = 50}, + [474] = {.lex_state = 0, .external_lex_state = 51}, + [475] = {.lex_state = 0, .external_lex_state = 52}, + [476] = {.lex_state = 38, .external_lex_state = 55}, + [477] = {.lex_state = 38}, + [478] = {.lex_state = 0, .external_lex_state = 41}, + [479] = {.lex_state = 0, .external_lex_state = 40}, + [480] = {.lex_state = 6}, + [481] = {.lex_state = 0, .external_lex_state = 38}, + [482] = {.lex_state = 0, .external_lex_state = 53}, + [483] = {.lex_state = 0, .external_lex_state = 54}, + [484] = {.lex_state = 0, .external_lex_state = 37}, + [485] = {.lex_state = 0, .external_lex_state = 38}, + [486] = {.lex_state = 0, .external_lex_state = 40}, + [487] = {.lex_state = 0, .external_lex_state = 45}, + [488] = {.lex_state = 0, .external_lex_state = 52}, + [489] = {.lex_state = 0, .external_lex_state = 40}, + [490] = {.lex_state = 0, .external_lex_state = 41}, + [491] = {.lex_state = 0, .external_lex_state = 42}, + [492] = {.lex_state = 0, .external_lex_state = 43}, + [493] = {.lex_state = 0, .external_lex_state = 44}, + [494] = {.lex_state = 0, .external_lex_state = 45}, + [495] = {.lex_state = 0, .external_lex_state = 46}, + [496] = {.lex_state = 0, .external_lex_state = 47}, + [497] = {.lex_state = 0, .external_lex_state = 48}, + [498] = {.lex_state = 0, .external_lex_state = 49}, + [499] = {.lex_state = 0, .external_lex_state = 50}, + [500] = {.lex_state = 0, .external_lex_state = 51}, + [501] = {.lex_state = 0, .external_lex_state = 52}, + [502] = {.lex_state = 0, .external_lex_state = 56}, + [503] = {.lex_state = 0, .external_lex_state = 42}, + [504] = {.lex_state = 0, .external_lex_state = 38}, + [505] = {.lex_state = 7, .external_lex_state = 57}, + [506] = {.lex_state = 0, .external_lex_state = 39}, [507] = {.lex_state = 0, .external_lex_state = 53}, - [508] = {.lex_state = 0, .external_lex_state = 54}, - [509] = {.lex_state = 0, .external_lex_state = 55}, - [510] = {.lex_state = 0, .external_lex_state = 56}, - [511] = {.lex_state = 0, .external_lex_state = 57}, - [512] = {.lex_state = 0, .external_lex_state = 42}, - [513] = {.lex_state = 0, .external_lex_state = 43}, - [514] = {.lex_state = 0, .external_lex_state = 44}, - [515] = {.lex_state = 0, .external_lex_state = 45}, - [516] = {.lex_state = 0, .external_lex_state = 46}, - [517] = {.lex_state = 0, .external_lex_state = 47}, - [518] = {.lex_state = 0, .external_lex_state = 48}, - [519] = {.lex_state = 0, .external_lex_state = 49}, - [520] = {.lex_state = 0, .external_lex_state = 50}, - [521] = {.lex_state = 0, .external_lex_state = 51}, - [522] = {.lex_state = 7, .external_lex_state = 25}, - [523] = {.lex_state = 0, .external_lex_state = 53}, - [524] = {.lex_state = 0, .external_lex_state = 54}, - [525] = {.lex_state = 0, .external_lex_state = 55}, - [526] = {.lex_state = 0, .external_lex_state = 56}, - [527] = {.lex_state = 0, .external_lex_state = 57}, - [528] = {.lex_state = 0, .external_lex_state = 42}, - [529] = {.lex_state = 0, .external_lex_state = 42}, - [530] = {.lex_state = 0, .external_lex_state = 43}, - [531] = {.lex_state = 0, .external_lex_state = 43}, - [532] = {.lex_state = 0, .external_lex_state = 44}, - [533] = {.lex_state = 0, .external_lex_state = 44}, - [534] = {.lex_state = 0, .external_lex_state = 45}, - [535] = {.lex_state = 0, .external_lex_state = 45}, - [536] = {.lex_state = 0, .external_lex_state = 42}, - [537] = {.lex_state = 0, .external_lex_state = 43}, - [538] = {.lex_state = 0, .external_lex_state = 44}, - [539] = {.lex_state = 0, .external_lex_state = 45}, - [540] = {.lex_state = 0, .external_lex_state = 46}, - [541] = {.lex_state = 0, .external_lex_state = 47}, - [542] = {.lex_state = 0, .external_lex_state = 48}, - [543] = {.lex_state = 0, .external_lex_state = 49}, + [508] = {.lex_state = 0, .external_lex_state = 37}, + [509] = {.lex_state = 0, .external_lex_state = 38}, + [510] = {.lex_state = 0, .external_lex_state = 39}, + [511] = {.lex_state = 0, .external_lex_state = 40}, + [512] = {.lex_state = 0, .external_lex_state = 41}, + [513] = {.lex_state = 0, .external_lex_state = 42}, + [514] = {.lex_state = 0, .external_lex_state = 43}, + [515] = {.lex_state = 0, .external_lex_state = 44}, + [516] = {.lex_state = 0, .external_lex_state = 45}, + [517] = {.lex_state = 0, .external_lex_state = 46}, + [518] = {.lex_state = 0, .external_lex_state = 41}, + [519] = {.lex_state = 0, .external_lex_state = 46}, + [520] = {.lex_state = 0, .external_lex_state = 42}, + [521] = {.lex_state = 7, .external_lex_state = 57}, + [522] = {.lex_state = 0, .external_lex_state = 47}, + [523] = {.lex_state = 0, .external_lex_state = 43}, + [524] = {.lex_state = 38, .external_lex_state = 55}, + [525] = {.lex_state = 0, .external_lex_state = 48}, + [526] = {.lex_state = 0, .external_lex_state = 47}, + [527] = {.lex_state = 7, .external_lex_state = 57}, + [528] = {.lex_state = 0, .external_lex_state = 44}, + [529] = {.lex_state = 0, .external_lex_state = 49}, + [530] = {.lex_state = 0, .external_lex_state = 45}, + [531] = {.lex_state = 0, .external_lex_state = 48}, + [532] = {.lex_state = 0, .external_lex_state = 50}, + [533] = {.lex_state = 7, .external_lex_state = 57}, + [534] = {.lex_state = 0, .external_lex_state = 49}, + [535] = {.lex_state = 0, .external_lex_state = 46}, + [536] = {.lex_state = 0, .external_lex_state = 51}, + [537] = {.lex_state = 0, .external_lex_state = 51}, + [538] = {.lex_state = 7, .external_lex_state = 57}, + [539] = {.lex_state = 0, .external_lex_state = 47}, + [540] = {.lex_state = 0, .external_lex_state = 52}, + [541] = {.lex_state = 0, .external_lex_state = 48}, + [542] = {.lex_state = 0, .external_lex_state = 49}, + [543] = {.lex_state = 0, .external_lex_state = 50}, [544] = {.lex_state = 0, .external_lex_state = 50}, - [545] = {.lex_state = 0, .external_lex_state = 51}, - [546] = {.lex_state = 0, .external_lex_state = 52}, - [547] = {.lex_state = 0, .external_lex_state = 53}, - [548] = {.lex_state = 0, .external_lex_state = 54}, - [549] = {.lex_state = 0, .external_lex_state = 55}, - [550] = {.lex_state = 0, .external_lex_state = 56}, - [551] = {.lex_state = 0, .external_lex_state = 57}, - [552] = {.lex_state = 0, .external_lex_state = 46}, - [553] = {.lex_state = 0, .external_lex_state = 46}, - [554] = {.lex_state = 0, .external_lex_state = 47}, - [555] = {.lex_state = 0, .external_lex_state = 47}, - [556] = {.lex_state = 0, .external_lex_state = 48}, - [557] = {.lex_state = 0, .external_lex_state = 48}, - [558] = {.lex_state = 0, .external_lex_state = 49}, - [559] = {.lex_state = 0, .external_lex_state = 49}, - [560] = {.lex_state = 0, .external_lex_state = 50}, - [561] = {.lex_state = 0, .external_lex_state = 50}, - [562] = {.lex_state = 0, .external_lex_state = 51}, - [563] = {.lex_state = 0, .external_lex_state = 51}, - [564] = {.lex_state = 0, .external_lex_state = 52}, - [565] = {.lex_state = 0, .external_lex_state = 52}, - [566] = {.lex_state = 0, .external_lex_state = 53}, - [567] = {.lex_state = 0, .external_lex_state = 53}, - [568] = {.lex_state = 0, .external_lex_state = 54}, - [569] = {.lex_state = 0, .external_lex_state = 54}, - [570] = {.lex_state = 7, .external_lex_state = 25}, - [571] = {.lex_state = 0, .external_lex_state = 55}, - [572] = {.lex_state = 0, .external_lex_state = 55}, - [573] = {.lex_state = 0, .external_lex_state = 56}, - [574] = {.lex_state = 7, .external_lex_state = 25}, - [575] = {.lex_state = 0, .external_lex_state = 56}, - [576] = {.lex_state = 7, .external_lex_state = 25}, - [577] = {.lex_state = 0, .external_lex_state = 57}, - [578] = {.lex_state = 0, .external_lex_state = 57}, - [579] = {.lex_state = 0, .external_lex_state = 52}, - [580] = {.lex_state = 0, .external_lex_state = 58}, - [581] = {.lex_state = 9}, - [582] = {.lex_state = 0, .external_lex_state = 59}, - [583] = {.lex_state = 0, .external_lex_state = 32}, - [584] = {.lex_state = 0, .external_lex_state = 30}, + [545] = {.lex_state = 0, .external_lex_state = 39}, + [546] = {.lex_state = 0, .external_lex_state = 31}, + [547] = {.lex_state = 0, .external_lex_state = 28}, + [548] = {.lex_state = 0, .external_lex_state = 29}, + [549] = {.lex_state = 0, .external_lex_state = 26}, + [550] = {.lex_state = 0, .external_lex_state = 58}, + [551] = {.lex_state = 0, .external_lex_state = 17}, + [552] = {.lex_state = 0, .external_lex_state = 17}, + [553] = {.lex_state = 0, .external_lex_state = 30}, + [554] = {.lex_state = 0, .external_lex_state = 29}, + [555] = {.lex_state = 0, .external_lex_state = 17}, + [556] = {.lex_state = 0, .external_lex_state = 28}, + [557] = {.lex_state = 0, .external_lex_state = 59}, + [558] = {.lex_state = 0, .external_lex_state = 26}, + [559] = {.lex_state = 0, .external_lex_state = 17}, + [560] = {.lex_state = 0, .external_lex_state = 30}, + [561] = {.lex_state = 0, .external_lex_state = 58}, + [562] = {.lex_state = 0, .external_lex_state = 31}, + [563] = {.lex_state = 0, .external_lex_state = 60}, + [564] = {.lex_state = 0, .external_lex_state = 60}, + [565] = {.lex_state = 0, .external_lex_state = 31}, + [566] = {.lex_state = 0, .external_lex_state = 31}, + [567] = {.lex_state = 0, .external_lex_state = 61}, + [568] = {.lex_state = 0, .external_lex_state = 31}, + [569] = {.lex_state = 0, .external_lex_state = 31}, + [570] = {.lex_state = 0, .external_lex_state = 31}, + [571] = {.lex_state = 0, .external_lex_state = 31}, + [572] = {.lex_state = 0, .external_lex_state = 31}, + [573] = {.lex_state = 0, .external_lex_state = 31}, + [574] = {.lex_state = 0, .external_lex_state = 31}, + [575] = {.lex_state = 0, .external_lex_state = 31}, + [576] = {.lex_state = 0, .external_lex_state = 31}, + [577] = {.lex_state = 0, .external_lex_state = 31}, + [578] = {.lex_state = 0, .external_lex_state = 31}, + [579] = {.lex_state = 0, .external_lex_state = 31}, + [580] = {.lex_state = 0, .external_lex_state = 31}, + [581] = {.lex_state = 0, .external_lex_state = 31}, + [582] = {.lex_state = 0, .external_lex_state = 31}, + [583] = {.lex_state = 0, .external_lex_state = 31}, + [584] = {.lex_state = 0, .external_lex_state = 31}, [585] = {.lex_state = 0, .external_lex_state = 31}, - [586] = {.lex_state = 0, .external_lex_state = 32}, - [587] = {.lex_state = 0, .external_lex_state = 29}, - [588] = {.lex_state = 0, .external_lex_state = 27}, - [589] = {.lex_state = 0, .external_lex_state = 27}, - [590] = {.lex_state = 39, .external_lex_state = 28}, - [591] = {.lex_state = 0, .external_lex_state = 30}, - [592] = {.lex_state = 0, .external_lex_state = 32}, - [593] = {.lex_state = 0, .external_lex_state = 17}, - [594] = {.lex_state = 0, .external_lex_state = 17}, - [595] = {.lex_state = 0, .external_lex_state = 60}, - [596] = {.lex_state = 0, .external_lex_state = 61}, - [597] = {.lex_state = 0, .external_lex_state = 62}, + [586] = {.lex_state = 0, .external_lex_state = 31}, + [587] = {.lex_state = 0, .external_lex_state = 31}, + [588] = {.lex_state = 0, .external_lex_state = 31}, + [589] = {.lex_state = 0, .external_lex_state = 31}, + [590] = {.lex_state = 0, .external_lex_state = 59}, + [591] = {.lex_state = 0, .external_lex_state = 61}, + [592] = {.lex_state = 0, .external_lex_state = 31}, + [593] = {.lex_state = 38, .external_lex_state = 27}, + [594] = {.lex_state = 0, .external_lex_state = 31}, + [595] = {.lex_state = 0, .external_lex_state = 31}, + [596] = {.lex_state = 0, .external_lex_state = 31}, + [597] = {.lex_state = 0, .external_lex_state = 30}, [598] = {.lex_state = 0, .external_lex_state = 30}, - [599] = {.lex_state = 0, .external_lex_state = 32}, - [600] = {.lex_state = 0, .external_lex_state = 32}, - [601] = {.lex_state = 0, .external_lex_state = 63}, - [602] = {.lex_state = 0, .external_lex_state = 32}, - [603] = {.lex_state = 0, .external_lex_state = 32}, - [604] = {.lex_state = 0, .external_lex_state = 32}, - [605] = {.lex_state = 0, .external_lex_state = 32}, - [606] = {.lex_state = 0, .external_lex_state = 32}, - [607] = {.lex_state = 0, .external_lex_state = 32}, - [608] = {.lex_state = 0, .external_lex_state = 32}, - [609] = {.lex_state = 0, .external_lex_state = 17}, - [610] = {.lex_state = 0, .external_lex_state = 17}, - [611] = {.lex_state = 0, .external_lex_state = 32}, - [612] = {.lex_state = 0, .external_lex_state = 32}, - [613] = {.lex_state = 0, .external_lex_state = 32}, - [614] = {.lex_state = 0, .external_lex_state = 32}, - [615] = {.lex_state = 0, .external_lex_state = 32}, - [616] = {.lex_state = 0, .external_lex_state = 32}, - [617] = {.lex_state = 0, .external_lex_state = 32}, - [618] = {.lex_state = 0, .external_lex_state = 32}, - [619] = {.lex_state = 0, .external_lex_state = 32}, - [620] = {.lex_state = 0, .external_lex_state = 32}, - [621] = {.lex_state = 0, .external_lex_state = 32}, - [622] = {.lex_state = 0, .external_lex_state = 32}, - [623] = {.lex_state = 0, .external_lex_state = 32}, - [624] = {.lex_state = 0, .external_lex_state = 32}, - [625] = {.lex_state = 0, .external_lex_state = 32}, - [626] = {.lex_state = 0, .external_lex_state = 32}, - [627] = {.lex_state = 0, .external_lex_state = 32}, - [628] = {.lex_state = 0, .external_lex_state = 63}, - [629] = {.lex_state = 0, .external_lex_state = 17}, - [630] = {.lex_state = 4}, - [631] = {.lex_state = 0, .external_lex_state = 32}, - [632] = {.lex_state = 0, .external_lex_state = 32}, - [633] = {.lex_state = 0, .external_lex_state = 32}, - [634] = {.lex_state = 0, .external_lex_state = 29}, - [635] = {.lex_state = 0, .external_lex_state = 32}, + [599] = {.lex_state = 0, .external_lex_state = 31}, + [600] = {.lex_state = 0, .external_lex_state = 28}, + [601] = {.lex_state = 0, .external_lex_state = 29}, + [602] = {.lex_state = 0, .external_lex_state = 31}, + [603] = {.lex_state = 8}, + [604] = {.lex_state = 0, .external_lex_state = 31}, + [605] = {.lex_state = 0, .external_lex_state = 31}, + [606] = {.lex_state = 0, .external_lex_state = 31}, + [607] = {.lex_state = 0, .external_lex_state = 31}, + [608] = {.lex_state = 0, .external_lex_state = 31}, + [609] = {.lex_state = 0, .external_lex_state = 31}, + [610] = {.lex_state = 0, .external_lex_state = 31}, + [611] = {.lex_state = 0, .external_lex_state = 31}, + [612] = {.lex_state = 0, .external_lex_state = 31}, + [613] = {.lex_state = 0, .external_lex_state = 31}, + [614] = {.lex_state = 0, .external_lex_state = 31}, + [615] = {.lex_state = 0, .external_lex_state = 31}, + [616] = {.lex_state = 0, .external_lex_state = 31}, + [617] = {.lex_state = 0, .external_lex_state = 31}, + [618] = {.lex_state = 0, .external_lex_state = 62}, + [619] = {.lex_state = 0, .external_lex_state = 63}, + [620] = {.lex_state = 38, .external_lex_state = 22}, + [621] = {.lex_state = 38, .external_lex_state = 22}, + [622] = {.lex_state = 0, .external_lex_state = 64}, + [623] = {.lex_state = 0, .external_lex_state = 64}, + [624] = {.lex_state = 0, .external_lex_state = 65}, + [625] = {.lex_state = 0, .external_lex_state = 65}, + [626] = {.lex_state = 0, .external_lex_state = 26}, + [627] = {.lex_state = 0, .external_lex_state = 26}, + [628] = {.lex_state = 0, .external_lex_state = 31}, + [629] = {.lex_state = 0, .external_lex_state = 31}, + [630] = {.lex_state = 0, .external_lex_state = 31}, + [631] = {.lex_state = 0, .external_lex_state = 60}, + [632] = {.lex_state = 0, .external_lex_state = 60}, + [633] = {.lex_state = 0, .external_lex_state = 60}, + [634] = {.lex_state = 0, .external_lex_state = 60}, + [635] = {.lex_state = 0, .external_lex_state = 59}, [636] = {.lex_state = 0, .external_lex_state = 32}, - [637] = {.lex_state = 0, .external_lex_state = 62}, - [638] = {.lex_state = 0, .external_lex_state = 62}, - [639] = {.lex_state = 0, .external_lex_state = 32}, - [640] = {.lex_state = 0, .external_lex_state = 64}, + [637] = {.lex_state = 0, .external_lex_state = 32}, + [638] = {.lex_state = 0, .external_lex_state = 60}, + [639] = {.lex_state = 0, .external_lex_state = 60}, + [640] = {.lex_state = 0, .external_lex_state = 60}, [641] = {.lex_state = 0, .external_lex_state = 60}, - [642] = {.lex_state = 0, .external_lex_state = 61}, - [643] = {.lex_state = 0, .external_lex_state = 32}, - [644] = {.lex_state = 0, .external_lex_state = 61}, - [645] = {.lex_state = 0, .external_lex_state = 32}, - [646] = {.lex_state = 0, .external_lex_state = 61}, - [647] = {.lex_state = 0, .external_lex_state = 29}, - [648] = {.lex_state = 0, .external_lex_state = 32}, - [649] = {.lex_state = 0, .external_lex_state = 32}, - [650] = {.lex_state = 0, .external_lex_state = 32}, - [651] = {.lex_state = 0, .external_lex_state = 32}, - [652] = {.lex_state = 0, .external_lex_state = 32}, - [653] = {.lex_state = 0, .external_lex_state = 32}, - [654] = {.lex_state = 0, .external_lex_state = 32}, - [655] = {.lex_state = 0, .external_lex_state = 32}, - [656] = {.lex_state = 0, .external_lex_state = 32}, + [642] = {.lex_state = 0, .external_lex_state = 66}, + [643] = {.lex_state = 3}, + [644] = {.lex_state = 0, .external_lex_state = 60}, + [645] = {.lex_state = 0, .external_lex_state = 28}, + [646] = {.lex_state = 0, .external_lex_state = 60}, + [647] = {.lex_state = 0, .external_lex_state = 60}, + [648] = {.lex_state = 0, .external_lex_state = 60}, + [649] = {.lex_state = 38, .external_lex_state = 27}, + [650] = {.lex_state = 0, .external_lex_state = 60}, + [651] = {.lex_state = 0, .external_lex_state = 60}, + [652] = {.lex_state = 0, .external_lex_state = 28}, + [653] = {.lex_state = 6}, + [654] = {.lex_state = 0, .external_lex_state = 67}, + [655] = {.lex_state = 0, .external_lex_state = 17}, + [656] = {.lex_state = 0, .external_lex_state = 60}, [657] = {.lex_state = 0, .external_lex_state = 60}, - [658] = {.lex_state = 0, .external_lex_state = 32}, - [659] = {.lex_state = 0, .external_lex_state = 32}, - [660] = {.lex_state = 0, .external_lex_state = 32}, - [661] = {.lex_state = 0, .external_lex_state = 33}, - [662] = {.lex_state = 0, .external_lex_state = 33}, - [663] = {.lex_state = 0, .external_lex_state = 32}, - [664] = {.lex_state = 0, .external_lex_state = 65}, - [665] = {.lex_state = 0, .external_lex_state = 65}, - [666] = {.lex_state = 0, .external_lex_state = 61}, - [667] = {.lex_state = 0, .external_lex_state = 61}, - [668] = {.lex_state = 39, .external_lex_state = 20}, - [669] = {.lex_state = 39, .external_lex_state = 20}, - [670] = {.lex_state = 0, .external_lex_state = 66}, - [671] = {.lex_state = 0, .external_lex_state = 66}, - [672] = {.lex_state = 0, .external_lex_state = 67}, - [673] = {.lex_state = 0, .external_lex_state = 31}, - [674] = {.lex_state = 0, .external_lex_state = 67}, - [675] = {.lex_state = 0, .external_lex_state = 27}, - [676] = {.lex_state = 0, .external_lex_state = 27}, - [677] = {.lex_state = 0, .external_lex_state = 68}, - [678] = {.lex_state = 0, .external_lex_state = 59}, - [679] = {.lex_state = 0, .external_lex_state = 64}, - [680] = {.lex_state = 0, .external_lex_state = 27}, - [681] = {.lex_state = 0, .external_lex_state = 30}, - [682] = {.lex_state = 0, .external_lex_state = 31}, - [683] = {.lex_state = 0, .external_lex_state = 29}, - [684] = {.lex_state = 0, .external_lex_state = 31}, - [685] = {.lex_state = 10}, - [686] = {.lex_state = 8}, - [687] = {.lex_state = 0, .external_lex_state = 30}, - [688] = {.lex_state = 0, .external_lex_state = 68}, - [689] = {.lex_state = 39, .external_lex_state = 28}, - [690] = {.lex_state = 0, .external_lex_state = 31}, - [691] = {.lex_state = 0, .external_lex_state = 29}, - [692] = {.lex_state = 0, .external_lex_state = 60}, - [693] = {.lex_state = 0, .external_lex_state = 28}, - [694] = {.lex_state = 0, .external_lex_state = 28}, - [695] = {.lex_state = 0, .external_lex_state = 65}, - [696] = {.lex_state = 0, .external_lex_state = 28}, - [697] = {.lex_state = 0, .external_lex_state = 49}, - [698] = {.lex_state = 0, .external_lex_state = 49}, - [699] = {.lex_state = 0, .external_lex_state = 28}, - [700] = {.lex_state = 4}, - [701] = {.lex_state = 0, .external_lex_state = 52}, + [658] = {.lex_state = 9}, + [659] = {.lex_state = 0, .external_lex_state = 60}, + [660] = {.lex_state = 0, .external_lex_state = 60}, + [661] = {.lex_state = 0, .external_lex_state = 67}, + [662] = {.lex_state = 0, .external_lex_state = 62}, + [663] = {.lex_state = 0, .external_lex_state = 31}, + [664] = {.lex_state = 0, .external_lex_state = 68}, + [665] = {.lex_state = 0, .external_lex_state = 69}, + [666] = {.lex_state = 0, .external_lex_state = 29}, + [667] = {.lex_state = 0, .external_lex_state = 26}, + [668] = {.lex_state = 0, .external_lex_state = 68}, + [669] = {.lex_state = 0, .external_lex_state = 68}, + [670] = {.lex_state = 0, .external_lex_state = 69}, + [671] = {.lex_state = 0, .external_lex_state = 69}, + [672] = {.lex_state = 0, .external_lex_state = 69}, + [673] = {.lex_state = 0, .external_lex_state = 29}, + [674] = {.lex_state = 0, .external_lex_state = 30}, + [675] = {.lex_state = 0, .external_lex_state = 68}, + [676] = {.lex_state = 0, .external_lex_state = 69}, + [677] = {.lex_state = 0, .external_lex_state = 69}, + [678] = {.lex_state = 0, .external_lex_state = 63}, + [679] = {.lex_state = 0, .external_lex_state = 70}, + [680] = {.lex_state = 0, .external_lex_state = 42}, + [681] = {.lex_state = 0, .external_lex_state = 42}, + [682] = {.lex_state = 0, .external_lex_state = 41}, + [683] = {.lex_state = 0, .external_lex_state = 58}, + [684] = {.lex_state = 0, .external_lex_state = 42}, + [685] = {.lex_state = 0, .external_lex_state = 45}, + [686] = {.lex_state = 0, .external_lex_state = 45}, + [687] = {.lex_state = 0, .external_lex_state = 65}, + [688] = {.lex_state = 0, .external_lex_state = 43}, + [689] = {.lex_state = 0, .external_lex_state = 71}, + [690] = {.lex_state = 0, .external_lex_state = 48}, + [691] = {.lex_state = 0, .external_lex_state = 48}, + [692] = {.lex_state = 0, .external_lex_state = 51}, + [693] = {.lex_state = 0, .external_lex_state = 51}, + [694] = {.lex_state = 0, .external_lex_state = 40}, + [695] = {.lex_state = 0, .external_lex_state = 40}, + [696] = {.lex_state = 0, .external_lex_state = 43}, + [697] = {.lex_state = 0, .external_lex_state = 43}, + [698] = {.lex_state = 0, .external_lex_state = 46}, + [699] = {.lex_state = 0, .external_lex_state = 46}, + [700] = {.lex_state = 0, .external_lex_state = 49}, + [701] = {.lex_state = 0, .external_lex_state = 49}, [702] = {.lex_state = 0, .external_lex_state = 52}, - [703] = {.lex_state = 0, .external_lex_state = 44}, - [704] = {.lex_state = 0, .external_lex_state = 55}, - [705] = {.lex_state = 0, .external_lex_state = 55}, - [706] = {.lex_state = 39, .external_lex_state = 20}, - [707] = {.lex_state = 0, .external_lex_state = 28}, - [708] = {.lex_state = 0, .external_lex_state = 44}, - [709] = {.lex_state = 0, .external_lex_state = 44}, - [710] = {.lex_state = 0, .external_lex_state = 66}, - [711] = {.lex_state = 0, .external_lex_state = 28}, - [712] = {.lex_state = 0}, - [713] = {.lex_state = 0, .external_lex_state = 47}, - [714] = {.lex_state = 0, .external_lex_state = 47}, - [715] = {.lex_state = 0, .external_lex_state = 45}, - [716] = {.lex_state = 9, .external_lex_state = 25}, - [717] = {.lex_state = 0}, - [718] = {.lex_state = 0, .external_lex_state = 50}, - [719] = {.lex_state = 0, .external_lex_state = 50}, - [720] = {.lex_state = 0, .external_lex_state = 67}, - [721] = {.lex_state = 0}, - [722] = {.lex_state = 0, .external_lex_state = 53}, - [723] = {.lex_state = 0, .external_lex_state = 53}, - [724] = {.lex_state = 0, .external_lex_state = 56}, - [725] = {.lex_state = 0, .external_lex_state = 56}, - [726] = {.lex_state = 0, .external_lex_state = 45}, - [727] = {.lex_state = 0, .external_lex_state = 45}, - [728] = {.lex_state = 0, .external_lex_state = 48}, - [729] = {.lex_state = 0, .external_lex_state = 48}, - [730] = {.lex_state = 0, .external_lex_state = 51}, - [731] = {.lex_state = 0, .external_lex_state = 51}, - [732] = {.lex_state = 0, .external_lex_state = 54}, - [733] = {.lex_state = 0, .external_lex_state = 54}, - [734] = {.lex_state = 0, .external_lex_state = 57}, - [735] = {.lex_state = 0, .external_lex_state = 57}, - [736] = {.lex_state = 0, .external_lex_state = 69}, - [737] = {.lex_state = 0, .external_lex_state = 70}, - [738] = {.lex_state = 0, .external_lex_state = 70}, - [739] = {.lex_state = 0, .external_lex_state = 46}, - [740] = {.lex_state = 0, .external_lex_state = 43}, - [741] = {.lex_state = 0, .external_lex_state = 28}, - [742] = {.lex_state = 0, .external_lex_state = 28}, - [743] = {.lex_state = 0, .external_lex_state = 28}, - [744] = {.lex_state = 0, .external_lex_state = 46}, - [745] = {.lex_state = 0, .external_lex_state = 49}, - [746] = {.lex_state = 0, .external_lex_state = 52}, - [747] = {.lex_state = 0, .external_lex_state = 28}, - [748] = {.lex_state = 0, .external_lex_state = 55}, - [749] = {.lex_state = 0, .external_lex_state = 28}, - [750] = {.lex_state = 0, .external_lex_state = 44}, - [751] = {.lex_state = 0, .external_lex_state = 47}, - [752] = {.lex_state = 0, .external_lex_state = 28}, - [753] = {.lex_state = 0, .external_lex_state = 69}, - [754] = {.lex_state = 0, .external_lex_state = 47}, - [755] = {.lex_state = 0, .external_lex_state = 48}, - [756] = {.lex_state = 0, .external_lex_state = 70}, - [757] = {.lex_state = 0, .external_lex_state = 17}, - [758] = {.lex_state = 0, .external_lex_state = 49}, - [759] = {.lex_state = 0, .external_lex_state = 50}, - [760] = {.lex_state = 39, .external_lex_state = 40}, - [761] = {.lex_state = 9, .external_lex_state = 25}, - [762] = {.lex_state = 0, .external_lex_state = 28}, - [763] = {.lex_state = 0, .external_lex_state = 28}, - [764] = {.lex_state = 0, .external_lex_state = 28}, - [765] = {.lex_state = 4}, - [766] = {.lex_state = 0, .external_lex_state = 51}, - [767] = {.lex_state = 9, .external_lex_state = 25}, - [768] = {.lex_state = 0, .external_lex_state = 52}, - [769] = {.lex_state = 0, .external_lex_state = 26}, - [770] = {.lex_state = 0, .external_lex_state = 53}, - [771] = {.lex_state = 0, .external_lex_state = 43}, - [772] = {.lex_state = 0, .external_lex_state = 70}, - [773] = {.lex_state = 0, .external_lex_state = 54}, - [774] = {.lex_state = 0, .external_lex_state = 28}, - [775] = {.lex_state = 0, .external_lex_state = 55}, - [776] = {.lex_state = 0, .external_lex_state = 42}, - [777] = {.lex_state = 0, .external_lex_state = 70}, - [778] = {.lex_state = 0, .external_lex_state = 28}, - [779] = {.lex_state = 0, .external_lex_state = 50}, - [780] = {.lex_state = 0, .external_lex_state = 17}, - [781] = {.lex_state = 0, .external_lex_state = 28}, - [782] = {.lex_state = 0, .external_lex_state = 53}, - [783] = {.lex_state = 0, .external_lex_state = 56}, - [784] = {.lex_state = 0, .external_lex_state = 45}, - [785] = {.lex_state = 0, .external_lex_state = 43}, - [786] = {.lex_state = 0, .external_lex_state = 28}, - [787] = {.lex_state = 0, .external_lex_state = 28}, - [788] = {.lex_state = 0, .external_lex_state = 48}, - [789] = {.lex_state = 0, .external_lex_state = 62}, - [790] = {.lex_state = 0, .external_lex_state = 69}, - [791] = {.lex_state = 0, .external_lex_state = 56}, - [792] = {.lex_state = 0, .external_lex_state = 51}, - [793] = {.lex_state = 0, .external_lex_state = 57}, - [794] = {.lex_state = 0, .external_lex_state = 70}, - [795] = {.lex_state = 9, .external_lex_state = 25}, - [796] = {.lex_state = 9, .external_lex_state = 25}, - [797] = {.lex_state = 0, .external_lex_state = 70}, - [798] = {.lex_state = 0, .external_lex_state = 26}, - [799] = {.lex_state = 0, .external_lex_state = 70}, - [800] = {.lex_state = 0, .external_lex_state = 70}, - [801] = {.lex_state = 39}, - [802] = {.lex_state = 0, .external_lex_state = 54}, - [803] = {.lex_state = 0, .external_lex_state = 57}, - [804] = {.lex_state = 0, .external_lex_state = 42}, - [805] = {.lex_state = 0, .external_lex_state = 71}, - [806] = {.lex_state = 0}, - [807] = {.lex_state = 0, .external_lex_state = 42}, - [808] = {.lex_state = 0, .external_lex_state = 63}, - [809] = {.lex_state = 0, .external_lex_state = 28}, - [810] = {.lex_state = 0}, - [811] = {.lex_state = 0, .external_lex_state = 69}, - [812] = {.lex_state = 9, .external_lex_state = 25}, - [813] = {.lex_state = 0, .external_lex_state = 28}, - [814] = {.lex_state = 0, .external_lex_state = 72}, - [815] = {.lex_state = 2, .external_lex_state = 25}, - [816] = {.lex_state = 9, .external_lex_state = 25}, - [817] = {.lex_state = 0, .external_lex_state = 26}, - [818] = {.lex_state = 0, .external_lex_state = 62}, - [819] = {.lex_state = 0, .external_lex_state = 26}, - [820] = {.lex_state = 0, .external_lex_state = 28}, - [821] = {.lex_state = 0, .external_lex_state = 70}, - [822] = {.lex_state = 0, .external_lex_state = 28}, - [823] = {.lex_state = 0, .external_lex_state = 28}, - [824] = {.lex_state = 0, .external_lex_state = 28}, - [825] = {.lex_state = 0, .external_lex_state = 73}, - [826] = {.lex_state = 0, .external_lex_state = 28}, - [827] = {.lex_state = 0, .external_lex_state = 28}, - [828] = {.lex_state = 0, .external_lex_state = 64}, - [829] = {.lex_state = 0}, - [830] = {.lex_state = 0, .external_lex_state = 28}, - [831] = {.lex_state = 4}, - [832] = {.lex_state = 0, .external_lex_state = 28}, - [833] = {.lex_state = 9, .external_lex_state = 25}, - [834] = {.lex_state = 0, .external_lex_state = 28}, - [835] = {.lex_state = 0, .external_lex_state = 46}, + [703] = {.lex_state = 0, .external_lex_state = 52}, + [704] = {.lex_state = 0, .external_lex_state = 44}, + [705] = {.lex_state = 0, .external_lex_state = 45}, + [706] = {.lex_state = 0, .external_lex_state = 44}, + [707] = {.lex_state = 0, .external_lex_state = 70}, + [708] = {.lex_state = 0, .external_lex_state = 47}, + [709] = {.lex_state = 0, .external_lex_state = 50}, + [710] = {.lex_state = 0, .external_lex_state = 39}, + [711] = {.lex_state = 0, .external_lex_state = 46}, + [712] = {.lex_state = 0, .external_lex_state = 47}, + [713] = {.lex_state = 0, .external_lex_state = 42}, + [714] = {.lex_state = 0, .external_lex_state = 45}, + [715] = {.lex_state = 0, .external_lex_state = 48}, + [716] = {.lex_state = 0, .external_lex_state = 51}, + [717] = {.lex_state = 0, .external_lex_state = 40}, + [718] = {.lex_state = 0, .external_lex_state = 43}, + [719] = {.lex_state = 0, .external_lex_state = 46}, + [720] = {.lex_state = 0, .external_lex_state = 72}, + [721] = {.lex_state = 0, .external_lex_state = 49}, + [722] = {.lex_state = 3}, + [723] = {.lex_state = 0, .external_lex_state = 25}, + [724] = {.lex_state = 0, .external_lex_state = 52}, + [725] = {.lex_state = 0, .external_lex_state = 52}, + [726] = {.lex_state = 0, .external_lex_state = 48}, + [727] = {.lex_state = 9, .external_lex_state = 57}, + [728] = {.lex_state = 0, .external_lex_state = 49}, + [729] = {.lex_state = 0}, + [730] = {.lex_state = 0}, + [731] = {.lex_state = 0}, + [732] = {.lex_state = 0, .external_lex_state = 41}, + [733] = {.lex_state = 9, .external_lex_state = 57}, + [734] = {.lex_state = 0, .external_lex_state = 50}, + [735] = {.lex_state = 0, .external_lex_state = 59}, + [736] = {.lex_state = 0, .external_lex_state = 25}, + [737] = {.lex_state = 7, .external_lex_state = 57}, + [738] = {.lex_state = 0, .external_lex_state = 27}, + [739] = {.lex_state = 0, .external_lex_state = 70}, + [740] = {.lex_state = 0, .external_lex_state = 17}, + [741] = {.lex_state = 3}, + [742] = {.lex_state = 0, .external_lex_state = 72}, + [743] = {.lex_state = 0, .external_lex_state = 72}, + [744] = {.lex_state = 9, .external_lex_state = 57}, + [745] = {.lex_state = 38, .external_lex_state = 55}, + [746] = {.lex_state = 0, .external_lex_state = 41}, + [747] = {.lex_state = 9, .external_lex_state = 57}, + [748] = {.lex_state = 0, .external_lex_state = 61}, + [749] = {.lex_state = 0, .external_lex_state = 25}, + [750] = {.lex_state = 0, .external_lex_state = 70}, + [751] = {.lex_state = 0, .external_lex_state = 37}, + [752] = {.lex_state = 0, .external_lex_state = 70}, + [753] = {.lex_state = 0, .external_lex_state = 70}, + [754] = {.lex_state = 0, .external_lex_state = 73}, + [755] = {.lex_state = 38}, + [756] = {.lex_state = 0}, + [757] = {.lex_state = 9, .external_lex_state = 57}, + [758] = {.lex_state = 0}, + [759] = {.lex_state = 0, .external_lex_state = 74}, + [760] = {.lex_state = 0, .external_lex_state = 75}, + [761] = {.lex_state = 0, .external_lex_state = 76}, + [762] = {.lex_state = 0, .external_lex_state = 27}, + [763] = {.lex_state = 0}, + [764] = {.lex_state = 0, .external_lex_state = 74}, + [765] = {.lex_state = 0, .external_lex_state = 76}, + [766] = {.lex_state = 9, .external_lex_state = 57}, + [767] = {.lex_state = 0, .external_lex_state = 76}, + [768] = {.lex_state = 0, .external_lex_state = 74}, + [769] = {.lex_state = 0, .external_lex_state = 37}, + [770] = {.lex_state = 0, .external_lex_state = 75}, + [771] = {.lex_state = 0, .external_lex_state = 75}, + [772] = {.lex_state = 0, .external_lex_state = 75}, + [773] = {.lex_state = 0, .external_lex_state = 70}, + [774] = {.lex_state = 9, .external_lex_state = 57}, + [775] = {.lex_state = 0, .external_lex_state = 27}, + [776] = {.lex_state = 0, .external_lex_state = 38}, + [777] = {.lex_state = 0, .external_lex_state = 25}, + [778] = {.lex_state = 0, .external_lex_state = 70}, + [779] = {.lex_state = 0, .external_lex_state = 70}, + [780] = {.lex_state = 0, .external_lex_state = 74}, + [781] = {.lex_state = 0, .external_lex_state = 75}, + [782] = {.lex_state = 0, .external_lex_state = 75}, + [783] = {.lex_state = 0, .external_lex_state = 73}, + [784] = {.lex_state = 0, .external_lex_state = 67}, + [785] = {.lex_state = 0, .external_lex_state = 27}, + [786] = {.lex_state = 0, .external_lex_state = 27}, + [787] = {.lex_state = 0, .external_lex_state = 37}, + [788] = {.lex_state = 0, .external_lex_state = 17}, + [789] = {.lex_state = 0, .external_lex_state = 38}, + [790] = {.lex_state = 0, .external_lex_state = 39}, + [791] = {.lex_state = 9, .external_lex_state = 57}, + [792] = {.lex_state = 0, .external_lex_state = 27}, + [793] = {.lex_state = 0, .external_lex_state = 40}, + [794] = {.lex_state = 0, .external_lex_state = 27}, + [795] = {.lex_state = 0, .external_lex_state = 27}, + [796] = {.lex_state = 0, .external_lex_state = 27}, + [797] = {.lex_state = 0, .external_lex_state = 27}, + [798] = {.lex_state = 0, .external_lex_state = 59}, + [799] = {.lex_state = 9, .external_lex_state = 57}, + [800] = {.lex_state = 0}, + [801] = {.lex_state = 0, .external_lex_state = 27}, + [802] = {.lex_state = 0, .external_lex_state = 27}, + [803] = {.lex_state = 0, .external_lex_state = 25}, + [804] = {.lex_state = 0, .external_lex_state = 27}, + [805] = {.lex_state = 0, .external_lex_state = 27}, + [806] = {.lex_state = 0, .external_lex_state = 27}, + [807] = {.lex_state = 0, .external_lex_state = 27}, + [808] = {.lex_state = 0, .external_lex_state = 27}, + [809] = {.lex_state = 0, .external_lex_state = 27}, + [810] = {.lex_state = 0, .external_lex_state = 27}, + [811] = {.lex_state = 0, .external_lex_state = 27}, + [812] = {.lex_state = 0, .external_lex_state = 27}, + [813] = {.lex_state = 0, .external_lex_state = 27}, + [814] = {.lex_state = 0, .external_lex_state = 27}, + [815] = {.lex_state = 0, .external_lex_state = 27}, + [816] = {.lex_state = 0, .external_lex_state = 27}, + [817] = {.lex_state = 0, .external_lex_state = 27}, + [818] = {.lex_state = 0, .external_lex_state = 27}, + [819] = {.lex_state = 0, .external_lex_state = 72}, + [820] = {.lex_state = 0, .external_lex_state = 27}, + [821] = {.lex_state = 0, .external_lex_state = 63}, + [822] = {.lex_state = 0, .external_lex_state = 41}, + [823] = {.lex_state = 9, .external_lex_state = 57}, + [824] = {.lex_state = 0, .external_lex_state = 27}, + [825] = {.lex_state = 0, .external_lex_state = 27}, + [826] = {.lex_state = 0, .external_lex_state = 44}, + [827] = {.lex_state = 0, .external_lex_state = 27}, + [828] = {.lex_state = 0, .external_lex_state = 27}, + [829] = {.lex_state = 0, .external_lex_state = 44}, + [830] = {.lex_state = 0, .external_lex_state = 51}, + [831] = {.lex_state = 0, .external_lex_state = 47}, + [832] = {.lex_state = 0, .external_lex_state = 27}, + [833] = {.lex_state = 0, .external_lex_state = 47}, + [834] = {.lex_state = 0}, + [835] = {.lex_state = 0}, [836] = {.lex_state = 0}, - [837] = {.lex_state = 0, .external_lex_state = 43}, - [838] = {.lex_state = 9, .external_lex_state = 25}, - [839] = {.lex_state = 0, .external_lex_state = 28}, - [840] = {.lex_state = 0, .external_lex_state = 69}, - [841] = {.lex_state = 0, .external_lex_state = 26}, - [842] = {.lex_state = 0, .external_lex_state = 74}, - [843] = {.lex_state = 0, .external_lex_state = 28}, - [844] = {.lex_state = 0, .external_lex_state = 28}, - [845] = {.lex_state = 0, .external_lex_state = 28}, - [846] = {.lex_state = 0, .external_lex_state = 28}, - [847] = {.lex_state = 0, .external_lex_state = 46}, - [848] = {.lex_state = 9, .external_lex_state = 25}, - [849] = {.lex_state = 0}, - [850] = {.lex_state = 0, .external_lex_state = 28}, - [851] = {.lex_state = 0, .external_lex_state = 73}, - [852] = {.lex_state = 0, .external_lex_state = 28}, + [837] = {.lex_state = 0, .external_lex_state = 70}, + [838] = {.lex_state = 0, .external_lex_state = 27}, + [839] = {.lex_state = 0}, + [840] = {.lex_state = 0}, + [841] = {.lex_state = 0}, + [842] = {.lex_state = 0, .external_lex_state = 38}, + [843] = {.lex_state = 0, .external_lex_state = 50}, + [844] = {.lex_state = 0, .external_lex_state = 50}, + [845] = {.lex_state = 38, .external_lex_state = 22}, + [846] = {.lex_state = 0}, + [847] = {.lex_state = 0}, + [848] = {.lex_state = 0}, + [849] = {.lex_state = 3}, + [850] = {.lex_state = 2, .external_lex_state = 57}, + [851] = {.lex_state = 0}, + [852] = {.lex_state = 0}, [853] = {.lex_state = 0}, - [854] = {.lex_state = 0}, - [855] = {.lex_state = 0}, - [856] = {.lex_state = 0, .external_lex_state = 28}, - [857] = {.lex_state = 0, .external_lex_state = 28}, + [854] = {.lex_state = 0, .external_lex_state = 39}, + [855] = {.lex_state = 0, .external_lex_state = 27}, + [856] = {.lex_state = 0, .external_lex_state = 39}, + [857] = {.lex_state = 0, .external_lex_state = 27}, [858] = {.lex_state = 0}, [859] = {.lex_state = 0}, [860] = {.lex_state = 0}, - [861] = {.lex_state = 0, .external_lex_state = 28}, - [862] = {.lex_state = 0}, + [861] = {.lex_state = 0, .external_lex_state = 64}, + [862] = {.lex_state = 0, .external_lex_state = 38}, [863] = {.lex_state = 0}, [864] = {.lex_state = 0}, - [865] = {.lex_state = 0, .external_lex_state = 28}, - [866] = {.lex_state = 0, .external_lex_state = 71}, - [867] = {.lex_state = 0}, - [868] = {.lex_state = 0}, + [865] = {.lex_state = 0}, + [866] = {.lex_state = 0, .external_lex_state = 27}, + [867] = {.lex_state = 0, .external_lex_state = 27}, + [868] = {.lex_state = 0, .external_lex_state = 27}, [869] = {.lex_state = 0}, - [870] = {.lex_state = 0, .external_lex_state = 74}, - [871] = {.lex_state = 0, .external_lex_state = 28}, - [872] = {.lex_state = 0}, - [873] = {.lex_state = 0}, + [870] = {.lex_state = 0}, + [871] = {.lex_state = 0}, + [872] = {.lex_state = 0, .external_lex_state = 27}, + [873] = {.lex_state = 0, .external_lex_state = 27}, [874] = {.lex_state = 0}, - [875] = {.lex_state = 0, .external_lex_state = 28}, - [876] = {.lex_state = 0, .external_lex_state = 28}, - [877] = {.lex_state = 0}, - [878] = {.lex_state = 0}, + [875] = {.lex_state = 0}, + [876] = {.lex_state = 0}, + [877] = {.lex_state = 0, .external_lex_state = 76}, + [878] = {.lex_state = 0, .external_lex_state = 76}, [879] = {.lex_state = 0}, - [880] = {.lex_state = 0, .external_lex_state = 59}, - [881] = {.lex_state = 0}, - [882] = {.lex_state = 0}, - [883] = {.lex_state = 0}, - [884] = {.lex_state = 0, .external_lex_state = 71}, - [885] = {.lex_state = 0}, - [886] = {.lex_state = 0}, - [887] = {.lex_state = 0}, - [888] = {.lex_state = 0, .external_lex_state = 71}, - [889] = {.lex_state = 0, .external_lex_state = 74}, - [890] = {.lex_state = 0, .external_lex_state = 74}, - [891] = {.lex_state = 0, .external_lex_state = 74}, - [892] = {.lex_state = 0, .external_lex_state = 74}, - [893] = {.lex_state = 4}, - [894] = {.lex_state = 4}, - [895] = {.lex_state = 4}, - [896] = {.lex_state = 4}, - [897] = {.lex_state = 7, .external_lex_state = 25}, - [898] = {.lex_state = 0, .external_lex_state = 28}, - [899] = {.lex_state = 51}, - [900] = {.lex_state = 0, .external_lex_state = 75}, - [901] = {.lex_state = 0}, - [902] = {.lex_state = 0, .external_lex_state = 76}, - [903] = {.lex_state = 4}, - [904] = {.lex_state = 4}, - [905] = {.lex_state = 0, .external_lex_state = 25}, - [906] = {.lex_state = 0, .external_lex_state = 25}, - [907] = {.lex_state = 9}, - [908] = {.lex_state = 2}, - [909] = {.lex_state = 0, .external_lex_state = 77}, - [910] = {.lex_state = 51}, - [911] = {.lex_state = 0, .external_lex_state = 25}, - [912] = {.lex_state = 0, .external_lex_state = 25}, - [913] = {.lex_state = 0, .external_lex_state = 25}, - [914] = {.lex_state = 0}, - [915] = {.lex_state = 0, .external_lex_state = 75}, - [916] = {.lex_state = 0, .external_lex_state = 25}, - [917] = {.lex_state = 0, .external_lex_state = 25}, - [918] = {.lex_state = 0, .external_lex_state = 25}, - [919] = {.lex_state = 0, .external_lex_state = 77}, - [920] = {.lex_state = 0, .external_lex_state = 77}, - [921] = {.lex_state = 0, .external_lex_state = 25}, - [922] = {.lex_state = 0, .external_lex_state = 25}, - [923] = {.lex_state = 0, .external_lex_state = 25}, - [924] = {.lex_state = 0, .external_lex_state = 25}, - [925] = {.lex_state = 0, .external_lex_state = 25}, - [926] = {.lex_state = 0, .external_lex_state = 25}, - [927] = {.lex_state = 0, .external_lex_state = 25}, - [928] = {.lex_state = 0, .external_lex_state = 25}, - [929] = {.lex_state = 0, .external_lex_state = 25}, - [930] = {.lex_state = 2}, - [931] = {.lex_state = 0, .external_lex_state = 75}, - [932] = {.lex_state = 0, .external_lex_state = 75}, - [933] = {.lex_state = 0, .external_lex_state = 40}, - [934] = {.lex_state = 0, .external_lex_state = 25}, - [935] = {.lex_state = 0, .external_lex_state = 25}, - [936] = {.lex_state = 0, .external_lex_state = 75}, - [937] = {.lex_state = 0, .external_lex_state = 25}, + [880] = {.lex_state = 0, .external_lex_state = 76}, + [881] = {.lex_state = 0, .external_lex_state = 76}, + [882] = {.lex_state = 0, .external_lex_state = 76}, + [883] = {.lex_state = 0, .external_lex_state = 76}, + [884] = {.lex_state = 0, .external_lex_state = 76}, + [885] = {.lex_state = 0, .external_lex_state = 76}, + [886] = {.lex_state = 3}, + [887] = {.lex_state = 3}, + [888] = {.lex_state = 3}, + [889] = {.lex_state = 3}, + [890] = {.lex_state = 0, .external_lex_state = 27}, + [891] = {.lex_state = 0, .external_lex_state = 27}, + [892] = {.lex_state = 0, .external_lex_state = 27}, + [893] = {.lex_state = 0, .external_lex_state = 27}, + [894] = {.lex_state = 0, .external_lex_state = 27}, + [895] = {.lex_state = 50}, + [896] = {.lex_state = 0, .external_lex_state = 77}, + [897] = {.lex_state = 0, .external_lex_state = 78}, + [898] = {.lex_state = 0, .external_lex_state = 25}, + [899] = {.lex_state = 9}, + [900] = {.lex_state = 0, .external_lex_state = 78}, + [901] = {.lex_state = 0, .external_lex_state = 57}, + [902] = {.lex_state = 0, .external_lex_state = 57}, + [903] = {.lex_state = 0, .external_lex_state = 77}, + [904] = {.lex_state = 0, .external_lex_state = 57}, + [905] = {.lex_state = 0, .external_lex_state = 78}, + [906] = {.lex_state = 0, .external_lex_state = 57}, + [907] = {.lex_state = 0, .external_lex_state = 78}, + [908] = {.lex_state = 0}, + [909] = {.lex_state = 0, .external_lex_state = 78}, + [910] = {.lex_state = 0, .external_lex_state = 79}, + [911] = {.lex_state = 0, .external_lex_state = 77}, + [912] = {.lex_state = 0, .external_lex_state = 57}, + [913] = {.lex_state = 0, .external_lex_state = 77}, + [914] = {.lex_state = 0, .external_lex_state = 57}, + [915] = {.lex_state = 0, .external_lex_state = 78}, + [916] = {.lex_state = 0, .external_lex_state = 78}, + [917] = {.lex_state = 0}, + [918] = {.lex_state = 0, .external_lex_state = 57}, + [919] = {.lex_state = 0, .external_lex_state = 57}, + [920] = {.lex_state = 0, .external_lex_state = 57}, + [921] = {.lex_state = 0, .external_lex_state = 57}, + [922] = {.lex_state = 0, .external_lex_state = 57}, + [923] = {.lex_state = 0, .external_lex_state = 57}, + [924] = {.lex_state = 0, .external_lex_state = 57}, + [925] = {.lex_state = 0, .external_lex_state = 57}, + [926] = {.lex_state = 0, .external_lex_state = 57}, + [927] = {.lex_state = 0}, + [928] = {.lex_state = 0, .external_lex_state = 78}, + [929] = {.lex_state = 0, .external_lex_state = 77}, + [930] = {.lex_state = 0}, + [931] = {.lex_state = 2}, + [932] = {.lex_state = 0, .external_lex_state = 77}, + [933] = {.lex_state = 0, .external_lex_state = 57}, + [934] = {.lex_state = 0, .external_lex_state = 78}, + [935] = {.lex_state = 0, .external_lex_state = 77}, + [936] = {.lex_state = 0, .external_lex_state = 77}, + [937] = {.lex_state = 0, .external_lex_state = 77}, [938] = {.lex_state = 0, .external_lex_state = 77}, - [939] = {.lex_state = 0, .external_lex_state = 75}, - [940] = {.lex_state = 0, .external_lex_state = 75}, - [941] = {.lex_state = 0, .external_lex_state = 75}, - [942] = {.lex_state = 0, .external_lex_state = 40}, - [943] = {.lex_state = 0, .external_lex_state = 25}, + [939] = {.lex_state = 0, .external_lex_state = 77}, + [940] = {.lex_state = 0, .external_lex_state = 77}, + [941] = {.lex_state = 0, .external_lex_state = 77}, + [942] = {.lex_state = 0, .external_lex_state = 77}, + [943] = {.lex_state = 0, .external_lex_state = 77}, [944] = {.lex_state = 2}, - [945] = {.lex_state = 0, .external_lex_state = 75}, - [946] = {.lex_state = 0, .external_lex_state = 75}, - [947] = {.lex_state = 0}, - [948] = {.lex_state = 0, .external_lex_state = 75}, - [949] = {.lex_state = 0, .external_lex_state = 75}, - [950] = {.lex_state = 0, .external_lex_state = 25}, - [951] = {.lex_state = 0, .external_lex_state = 75}, - [952] = {.lex_state = 0, .external_lex_state = 75}, - [953] = {.lex_state = 0}, - [954] = {.lex_state = 0, .external_lex_state = 25}, - [955] = {.lex_state = 0, .external_lex_state = 77}, - [956] = {.lex_state = 0, .external_lex_state = 25}, - [957] = {.lex_state = 0, .external_lex_state = 78}, - [958] = {.lex_state = 0, .external_lex_state = 77}, - [959] = {.lex_state = 7}, - [960] = {.lex_state = 0, .external_lex_state = 75}, - [961] = {.lex_state = 0, .external_lex_state = 77}, - [962] = {.lex_state = 0, .external_lex_state = 77}, - [963] = {.lex_state = 0, .external_lex_state = 77}, - [964] = {.lex_state = 0, .external_lex_state = 25}, - [965] = {.lex_state = 0}, - [966] = {.lex_state = 0, .external_lex_state = 25}, - [967] = {.lex_state = 0, .external_lex_state = 75}, - [968] = {.lex_state = 0, .external_lex_state = 77}, - [969] = {.lex_state = 0}, - [970] = {.lex_state = 0, .external_lex_state = 25}, - [971] = {.lex_state = 0, .external_lex_state = 75}, - [972] = {.lex_state = 0, .external_lex_state = 26}, - [973] = {.lex_state = 0, .external_lex_state = 25}, - [974] = {.lex_state = 0, .external_lex_state = 75}, - [975] = {.lex_state = 0, .external_lex_state = 25}, - [976] = {.lex_state = 9}, - [977] = {.lex_state = 0, .external_lex_state = 25}, - [978] = {.lex_state = 0, .external_lex_state = 77}, - [979] = {.lex_state = 0, .external_lex_state = 77}, - [980] = {.lex_state = 0, .external_lex_state = 79}, - [981] = {.lex_state = 0, .external_lex_state = 25}, - [982] = {.lex_state = 0, .external_lex_state = 25}, - [983] = {.lex_state = 0, .external_lex_state = 25}, - [984] = {.lex_state = 0, .external_lex_state = 25}, - [985] = {.lex_state = 0, .external_lex_state = 25}, - [986] = {.lex_state = 0, .external_lex_state = 25}, - [987] = {.lex_state = 0, .external_lex_state = 25}, - [988] = {.lex_state = 0, .external_lex_state = 25}, - [989] = {.lex_state = 0, .external_lex_state = 77}, - [990] = {.lex_state = 11}, - [991] = {.lex_state = 0, .external_lex_state = 25}, - [992] = {.lex_state = 0}, + [945] = {.lex_state = 0, .external_lex_state = 77}, + [946] = {.lex_state = 0, .external_lex_state = 77}, + [947] = {.lex_state = 0, .external_lex_state = 77}, + [948] = {.lex_state = 0, .external_lex_state = 77}, + [949] = {.lex_state = 0, .external_lex_state = 57}, + [950] = {.lex_state = 0}, + [951] = {.lex_state = 0, .external_lex_state = 78}, + [952] = {.lex_state = 0, .external_lex_state = 57}, + [953] = {.lex_state = 10}, + [954] = {.lex_state = 0}, + [955] = {.lex_state = 0, .external_lex_state = 57}, + [956] = {.lex_state = 0, .external_lex_state = 57}, + [957] = {.lex_state = 0, .external_lex_state = 80}, + [958] = {.lex_state = 0, .external_lex_state = 57}, + [959] = {.lex_state = 0, .external_lex_state = 78}, + [960] = {.lex_state = 0, .external_lex_state = 57}, + [961] = {.lex_state = 0, .external_lex_state = 78}, + [962] = {.lex_state = 0, .external_lex_state = 57}, + [963] = {.lex_state = 9}, + [964] = {.lex_state = 0, .external_lex_state = 78}, + [965] = {.lex_state = 0, .external_lex_state = 57}, + [966] = {.lex_state = 0, .external_lex_state = 57}, + [967] = {.lex_state = 0, .external_lex_state = 57}, + [968] = {.lex_state = 0, .external_lex_state = 57}, + [969] = {.lex_state = 0, .external_lex_state = 57}, + [970] = {.lex_state = 0, .external_lex_state = 57}, + [971] = {.lex_state = 0, .external_lex_state = 57}, + [972] = {.lex_state = 0, .external_lex_state = 57}, + [973] = {.lex_state = 0, .external_lex_state = 57}, + [974] = {.lex_state = 0, .external_lex_state = 78}, + [975] = {.lex_state = 0, .external_lex_state = 78}, + [976] = {.lex_state = 0, .external_lex_state = 57}, + [977] = {.lex_state = 0, .external_lex_state = 57}, + [978] = {.lex_state = 0, .external_lex_state = 57}, + [979] = {.lex_state = 0, .external_lex_state = 57}, + [980] = {.lex_state = 0, .external_lex_state = 57}, + [981] = {.lex_state = 0, .external_lex_state = 57}, + [982] = {.lex_state = 0, .external_lex_state = 57}, + [983] = {.lex_state = 0, .external_lex_state = 57}, + [984] = {.lex_state = 0, .external_lex_state = 57}, + [985] = {.lex_state = 0, .external_lex_state = 78}, + [986] = {.lex_state = 0}, + [987] = {.lex_state = 0, .external_lex_state = 77}, + [988] = {.lex_state = 50}, + [989] = {.lex_state = 0, .external_lex_state = 57}, + [990] = {.lex_state = 0, .external_lex_state = 57}, + [991] = {.lex_state = 0, .external_lex_state = 57}, + [992] = {.lex_state = 0, .external_lex_state = 81}, [993] = {.lex_state = 0, .external_lex_state = 77}, - [994] = {.lex_state = 0, .external_lex_state = 25}, - [995] = {.lex_state = 0, .external_lex_state = 75}, + [994] = {.lex_state = 0, .external_lex_state = 82}, + [995] = {.lex_state = 0}, [996] = {.lex_state = 0, .external_lex_state = 77}, - [997] = {.lex_state = 0, .external_lex_state = 75}, - [998] = {.lex_state = 0, .external_lex_state = 75}, - [999] = {.lex_state = 0, .external_lex_state = 75}, - [1000] = {.lex_state = 0, .external_lex_state = 75}, - [1001] = {.lex_state = 0, .external_lex_state = 75}, - [1002] = {.lex_state = 0, .external_lex_state = 75}, - [1003] = {.lex_state = 0, .external_lex_state = 75}, - [1004] = {.lex_state = 0, .external_lex_state = 75}, - [1005] = {.lex_state = 0, .external_lex_state = 75}, - [1006] = {.lex_state = 0, .external_lex_state = 75}, - [1007] = {.lex_state = 0, .external_lex_state = 75}, - [1008] = {.lex_state = 0, .external_lex_state = 75}, - [1009] = {.lex_state = 0, .external_lex_state = 75}, - [1010] = {.lex_state = 0, .external_lex_state = 75}, - [1011] = {.lex_state = 0, .external_lex_state = 75}, - [1012] = {.lex_state = 0, .external_lex_state = 75}, - [1013] = {.lex_state = 0, .external_lex_state = 75}, - [1014] = {.lex_state = 0, .external_lex_state = 75}, - [1015] = {.lex_state = 0, .external_lex_state = 75}, - [1016] = {.lex_state = 0, .external_lex_state = 75}, - [1017] = {.lex_state = 0}, - [1018] = {.lex_state = 0, .external_lex_state = 75}, - [1019] = {.lex_state = 0, .external_lex_state = 25}, - [1020] = {.lex_state = 0, .external_lex_state = 25}, - [1021] = {.lex_state = 51}, - [1022] = {.lex_state = 0, .external_lex_state = 80}, - [1023] = {.lex_state = 0, .external_lex_state = 25}, + [997] = {.lex_state = 7}, + [998] = {.lex_state = 0, .external_lex_state = 77}, + [999] = {.lex_state = 0, .external_lex_state = 57}, + [1000] = {.lex_state = 0, .external_lex_state = 57}, + [1001] = {.lex_state = 0, .external_lex_state = 77}, + [1002] = {.lex_state = 0, .external_lex_state = 83}, + [1003] = {.lex_state = 50}, + [1004] = {.lex_state = 0}, + [1005] = {.lex_state = 3}, + [1006] = {.lex_state = 0}, + [1007] = {.lex_state = 0, .external_lex_state = 57}, + [1008] = {.lex_state = 0, .external_lex_state = 77}, + [1009] = {.lex_state = 0, .external_lex_state = 57}, + [1010] = {.lex_state = 0, .external_lex_state = 77}, + [1011] = {.lex_state = 0, .external_lex_state = 77}, + [1012] = {.lex_state = 0, .external_lex_state = 57}, + [1013] = {.lex_state = 0, .external_lex_state = 78}, + [1014] = {.lex_state = 0, .external_lex_state = 77}, + [1015] = {.lex_state = 3}, + [1016] = {.lex_state = 0}, + [1017] = {.lex_state = 0, .external_lex_state = 78}, + [1018] = {.lex_state = 0, .external_lex_state = 57}, + [1019] = {.lex_state = 0, .external_lex_state = 57}, + [1020] = {.lex_state = 0, .external_lex_state = 77}, + [1021] = {.lex_state = 0, .external_lex_state = 77}, + [1022] = {.lex_state = 0, .external_lex_state = 77}, + [1023] = {.lex_state = 0, .external_lex_state = 77}, [1024] = {.lex_state = 0, .external_lex_state = 77}, - [1025] = {.lex_state = 0, .external_lex_state = 75}, - [1026] = {.lex_state = 0, .external_lex_state = 25}, - [1027] = {.lex_state = 0, .external_lex_state = 25}, - [1028] = {.lex_state = 0, .external_lex_state = 77}, - [1029] = {.lex_state = 0, .external_lex_state = 25}, - [1030] = {.lex_state = 0, .external_lex_state = 77}, - [1031] = {.lex_state = 0, .external_lex_state = 25}, - [1032] = {.lex_state = 0, .external_lex_state = 25}, - [1033] = {.lex_state = 0, .external_lex_state = 77}, - [1034] = {.lex_state = 0, .external_lex_state = 25}, - [1035] = {.lex_state = 0, .external_lex_state = 25}, - [1036] = {.lex_state = 2}, - [1037] = {.lex_state = 51}, - [1038] = {.lex_state = 0, .external_lex_state = 75}, - [1039] = {.lex_state = 0, .external_lex_state = 25}, - [1040] = {.lex_state = 0, .external_lex_state = 75}, - [1041] = {.lex_state = 0, .external_lex_state = 75}, - [1042] = {.lex_state = 0, .external_lex_state = 25}, - [1043] = {.lex_state = 0}, - [1044] = {.lex_state = 0, .external_lex_state = 75}, + [1025] = {.lex_state = 0, .external_lex_state = 57}, + [1026] = {.lex_state = 0, .external_lex_state = 57}, + [1027] = {.lex_state = 0, .external_lex_state = 57}, + [1028] = {.lex_state = 0, .external_lex_state = 57}, + [1029] = {.lex_state = 0, .external_lex_state = 57}, + [1030] = {.lex_state = 0, .external_lex_state = 57}, + [1031] = {.lex_state = 0, .external_lex_state = 77}, + [1032] = {.lex_state = 2}, + [1033] = {.lex_state = 50}, + [1034] = {.lex_state = 0, .external_lex_state = 77}, + [1035] = {.lex_state = 0, .external_lex_state = 77}, + [1036] = {.lex_state = 0, .external_lex_state = 77}, + [1037] = {.lex_state = 0, .external_lex_state = 78}, + [1038] = {.lex_state = 0, .external_lex_state = 57}, + [1039] = {.lex_state = 0}, + [1040] = {.lex_state = 0, .external_lex_state = 77}, + [1041] = {.lex_state = 0, .external_lex_state = 77}, + [1042] = {.lex_state = 0, .external_lex_state = 77}, + [1043] = {.lex_state = 2}, + [1044] = {.lex_state = 0, .external_lex_state = 57}, [1045] = {.lex_state = 0, .external_lex_state = 25}, - [1046] = {.lex_state = 0, .external_lex_state = 25}, - [1047] = {.lex_state = 0, .external_lex_state = 25}, - [1048] = {.lex_state = 0, .external_lex_state = 25}, - [1049] = {.lex_state = 0, .external_lex_state = 25}, - [1050] = {.lex_state = 0, .external_lex_state = 25}, - [1051] = {.lex_state = 0, .external_lex_state = 25}, - [1052] = {.lex_state = 0, .external_lex_state = 25}, - [1053] = {.lex_state = 0, .external_lex_state = 25}, - [1054] = {.lex_state = 0, .external_lex_state = 25}, - [1055] = {.lex_state = 2}, - [1056] = {.lex_state = 51}, - [1057] = {.lex_state = 0, .external_lex_state = 75}, - [1058] = {.lex_state = 0, .external_lex_state = 75}, - [1059] = {.lex_state = 0, .external_lex_state = 75}, - [1060] = {.lex_state = 0, .external_lex_state = 25}, - [1061] = {.lex_state = 0, .external_lex_state = 25}, - [1062] = {.lex_state = 0, .external_lex_state = 25}, - [1063] = {.lex_state = 0, .external_lex_state = 75}, - [1064] = {.lex_state = 0, .external_lex_state = 25}, - [1065] = {.lex_state = 0, .external_lex_state = 81}, - [1066] = {.lex_state = 0, .external_lex_state = 25}, - [1067] = {.lex_state = 0, .external_lex_state = 75}, - [1068] = {.lex_state = 0, .external_lex_state = 25}, - [1069] = {.lex_state = 0, .external_lex_state = 25}, - [1070] = {.lex_state = 0, .external_lex_state = 25}, - [1071] = {.lex_state = 0, .external_lex_state = 25}, - [1072] = {.lex_state = 0, .external_lex_state = 25}, - [1073] = {.lex_state = 0, .external_lex_state = 25}, - [1074] = {.lex_state = 2}, - [1075] = {.lex_state = 51}, - [1076] = {.lex_state = 0, .external_lex_state = 75}, + [1046] = {.lex_state = 0, .external_lex_state = 57}, + [1047] = {.lex_state = 0, .external_lex_state = 57}, + [1048] = {.lex_state = 0, .external_lex_state = 57}, + [1049] = {.lex_state = 0, .external_lex_state = 77}, + [1050] = {.lex_state = 0, .external_lex_state = 57}, + [1051] = {.lex_state = 2}, + [1052] = {.lex_state = 50}, + [1053] = {.lex_state = 0, .external_lex_state = 77}, + [1054] = {.lex_state = 0, .external_lex_state = 78}, + [1055] = {.lex_state = 0, .external_lex_state = 78}, + [1056] = {.lex_state = 0, .external_lex_state = 77}, + [1057] = {.lex_state = 0, .external_lex_state = 57}, + [1058] = {.lex_state = 0, .external_lex_state = 57}, + [1059] = {.lex_state = 0, .external_lex_state = 77}, + [1060] = {.lex_state = 0, .external_lex_state = 57}, + [1061] = {.lex_state = 0, .external_lex_state = 57}, + [1062] = {.lex_state = 0, .external_lex_state = 57}, + [1063] = {.lex_state = 0, .external_lex_state = 57}, + [1064] = {.lex_state = 0, .external_lex_state = 57}, + [1065] = {.lex_state = 0, .external_lex_state = 57}, + [1066] = {.lex_state = 0, .external_lex_state = 57}, + [1067] = {.lex_state = 0, .external_lex_state = 57}, + [1068] = {.lex_state = 0, .external_lex_state = 57}, + [1069] = {.lex_state = 2}, + [1070] = {.lex_state = 2}, + [1071] = {.lex_state = 50}, + [1072] = {.lex_state = 0, .external_lex_state = 77}, + [1073] = {.lex_state = 0, .external_lex_state = 77}, + [1074] = {.lex_state = 0, .external_lex_state = 77}, + [1075] = {.lex_state = 0, .external_lex_state = 57}, + [1076] = {.lex_state = 0, .external_lex_state = 77}, [1077] = {.lex_state = 0, .external_lex_state = 77}, - [1078] = {.lex_state = 0, .external_lex_state = 25}, - [1079] = {.lex_state = 0, .external_lex_state = 25}, - [1080] = {.lex_state = 0, .external_lex_state = 25}, - [1081] = {.lex_state = 0, .external_lex_state = 75}, - [1082] = {.lex_state = 0, .external_lex_state = 25}, - [1083] = {.lex_state = 0, .external_lex_state = 82}, - [1084] = {.lex_state = 0, .external_lex_state = 25}, - [1085] = {.lex_state = 0, .external_lex_state = 75}, - [1086] = {.lex_state = 2}, - [1087] = {.lex_state = 0, .external_lex_state = 25}, - [1088] = {.lex_state = 0, .external_lex_state = 25}, - [1089] = {.lex_state = 2}, - [1090] = {.lex_state = 0}, - [1091] = {.lex_state = 0, .external_lex_state = 75}, - [1092] = {.lex_state = 2}, - [1093] = {.lex_state = 51}, - [1094] = {.lex_state = 0, .external_lex_state = 75}, - [1095] = {.lex_state = 0, .external_lex_state = 75}, - [1096] = {.lex_state = 0, .external_lex_state = 75}, - [1097] = {.lex_state = 0, .external_lex_state = 75}, - [1098] = {.lex_state = 0, .external_lex_state = 75}, - [1099] = {.lex_state = 0, .external_lex_state = 75}, - [1100] = {.lex_state = 0, .external_lex_state = 75}, - [1101] = {.lex_state = 0, .external_lex_state = 75}, - [1102] = {.lex_state = 0, .external_lex_state = 75}, - [1103] = {.lex_state = 0, .external_lex_state = 75}, - [1104] = {.lex_state = 0, .external_lex_state = 75}, - [1105] = {.lex_state = 0, .external_lex_state = 75}, - [1106] = {.lex_state = 0, .external_lex_state = 75}, - [1107] = {.lex_state = 0, .external_lex_state = 75}, - [1108] = {.lex_state = 0, .external_lex_state = 75}, - [1109] = {.lex_state = 51}, - [1110] = {.lex_state = 0, .external_lex_state = 82}, - [1111] = {.lex_state = 9}, - [1112] = {.lex_state = 0, .external_lex_state = 75}, - [1113] = {.lex_state = 4}, - [1114] = {.lex_state = 11}, - [1115] = {.lex_state = 51}, - [1116] = {.lex_state = 0, .external_lex_state = 75}, - [1117] = {.lex_state = 9}, + [1078] = {.lex_state = 0, .external_lex_state = 77}, + [1079] = {.lex_state = 0, .external_lex_state = 77}, + [1080] = {.lex_state = 0, .external_lex_state = 77}, + [1081] = {.lex_state = 0, .external_lex_state = 57}, + [1082] = {.lex_state = 0, .external_lex_state = 77}, + [1083] = {.lex_state = 0, .external_lex_state = 57}, + [1084] = {.lex_state = 0, .external_lex_state = 57}, + [1085] = {.lex_state = 0, .external_lex_state = 57}, + [1086] = {.lex_state = 50}, + [1087] = {.lex_state = 0, .external_lex_state = 78}, + [1088] = {.lex_state = 2}, + [1089] = {.lex_state = 50}, + [1090] = {.lex_state = 0, .external_lex_state = 77}, + [1091] = {.lex_state = 0, .external_lex_state = 77}, + [1092] = {.lex_state = 0, .external_lex_state = 77}, + [1093] = {.lex_state = 0, .external_lex_state = 77}, + [1094] = {.lex_state = 0, .external_lex_state = 77}, + [1095] = {.lex_state = 0, .external_lex_state = 77}, + [1096] = {.lex_state = 0, .external_lex_state = 77}, + [1097] = {.lex_state = 0, .external_lex_state = 77}, + [1098] = {.lex_state = 0, .external_lex_state = 77}, + [1099] = {.lex_state = 0, .external_lex_state = 77}, + [1100] = {.lex_state = 0, .external_lex_state = 77}, + [1101] = {.lex_state = 0, .external_lex_state = 77}, + [1102] = {.lex_state = 0, .external_lex_state = 77}, + [1103] = {.lex_state = 0, .external_lex_state = 77}, + [1104] = {.lex_state = 0, .external_lex_state = 77}, + [1105] = {.lex_state = 50}, + [1106] = {.lex_state = 0, .external_lex_state = 77}, + [1107] = {.lex_state = 9}, + [1108] = {.lex_state = 0, .external_lex_state = 55}, + [1109] = {.lex_state = 3}, + [1110] = {.lex_state = 10}, + [1111] = {.lex_state = 0, .external_lex_state = 57}, + [1112] = {.lex_state = 11}, + [1113] = {.lex_state = 9}, + [1114] = {.lex_state = 0, .external_lex_state = 77}, + [1115] = {.lex_state = 3}, + [1116] = {.lex_state = 10}, + [1117] = {.lex_state = 50}, [1118] = {.lex_state = 0, .external_lex_state = 77}, - [1119] = {.lex_state = 4}, - [1120] = {.lex_state = 11}, - [1121] = {.lex_state = 51}, - [1122] = {.lex_state = 0, .external_lex_state = 75}, - [1123] = {.lex_state = 9}, - [1124] = {.lex_state = 0, .external_lex_state = 25}, - [1125] = {.lex_state = 4}, - [1126] = {.lex_state = 11}, - [1127] = {.lex_state = 0}, - [1128] = {.lex_state = 0, .external_lex_state = 75}, - [1129] = {.lex_state = 9}, - [1130] = {.lex_state = 0, .external_lex_state = 25}, - [1131] = {.lex_state = 4}, - [1132] = {.lex_state = 11}, - [1133] = {.lex_state = 12}, + [1119] = {.lex_state = 9}, + [1120] = {.lex_state = 0, .external_lex_state = 57}, + [1121] = {.lex_state = 3}, + [1122] = {.lex_state = 10}, + [1123] = {.lex_state = 50}, + [1124] = {.lex_state = 0, .external_lex_state = 82}, + [1125] = {.lex_state = 9}, + [1126] = {.lex_state = 0, .external_lex_state = 77}, + [1127] = {.lex_state = 3}, + [1128] = {.lex_state = 10}, + [1129] = {.lex_state = 0, .external_lex_state = 77}, + [1130] = {.lex_state = 2}, + [1131] = {.lex_state = 0, .external_lex_state = 84}, + [1132] = {.lex_state = 2}, + [1133] = {.lex_state = 0, .external_lex_state = 55}, [1134] = {.lex_state = 2}, - [1135] = {.lex_state = 0, .external_lex_state = 77}, + [1135] = {.lex_state = 0, .external_lex_state = 57}, [1136] = {.lex_state = 2}, - [1137] = {.lex_state = 0, .external_lex_state = 77}, - [1138] = {.lex_state = 2}, - [1139] = {.lex_state = 0, .external_lex_state = 25}, - [1140] = {.lex_state = 2}, - [1141] = {.lex_state = 0, .external_lex_state = 79}, + [1137] = {.lex_state = 0, .external_lex_state = 83}, + [1138] = {.lex_state = 0}, + [1139] = {.lex_state = 0, .external_lex_state = 83}, + [1140] = {.lex_state = 0}, + [1141] = {.lex_state = 0, .external_lex_state = 83}, [1142] = {.lex_state = 0}, - [1143] = {.lex_state = 0, .external_lex_state = 79}, + [1143] = {.lex_state = 0, .external_lex_state = 83}, [1144] = {.lex_state = 0}, - [1145] = {.lex_state = 0, .external_lex_state = 79}, + [1145] = {.lex_state = 0}, [1146] = {.lex_state = 0}, - [1147] = {.lex_state = 0, .external_lex_state = 79}, + [1147] = {.lex_state = 0}, [1148] = {.lex_state = 0}, - [1149] = {.lex_state = 0}, - [1150] = {.lex_state = 0}, - [1151] = {.lex_state = 0}, - [1152] = {.lex_state = 0}, - [1153] = {.lex_state = 0}, - [1154] = {.lex_state = 51}, - [1155] = {.lex_state = 0, .external_lex_state = 75}, - [1156] = {.lex_state = 0, .external_lex_state = 26}, - [1157] = {.lex_state = 0, .external_lex_state = 77}, + [1149] = {.lex_state = 0, .external_lex_state = 78}, + [1150] = {.lex_state = 0, .external_lex_state = 78}, + [1151] = {.lex_state = 0, .external_lex_state = 57}, + [1152] = {.lex_state = 2}, + [1153] = {.lex_state = 0, .external_lex_state = 77}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -4642,8 +4600,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(1), [aux_sym_value_token2] = ACTIONS(1), [sym__whitespace1] = ACTIONS(1), - [anon_sym_LBRACE_DASH] = ACTIONS(1), - [anon_sym_POUND] = ACTIONS(1), [anon_sym_PERCENT] = ACTIONS(1), [sym_backslash_escape] = ACTIONS(1), [sym__ignored] = ACTIONS(1), @@ -4692,105 +4648,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__table_header_begin] = ACTIONS(1), [sym__table_separator_begin] = ACTIONS(1), [sym__table_row_begin] = ACTIONS(1), + [sym__table_cell] = ACTIONS(1), [sym__table_caption_begin] = ACTIONS(1), [sym__table_caption_end] = ACTIONS(1), [sym__in_fallback] = ACTIONS(1), [sym__error] = ACTIONS(1), }, [1] = { - [sym_document] = STATE(901), - [sym_frontmatter] = STATE(3), - [sym__block_with_section] = STATE(114), - [sym__block_element] = STATE(114), - [sym_section] = STATE(114), - [sym_heading] = STATE(4), - [sym_list] = STATE(114), - [sym__list_dash] = STATE(115), - [sym__list_item_dash] = STATE(687), - [sym__list_plus] = STATE(115), - [sym__list_item_plus] = STATE(691), - [sym__list_star] = STATE(115), - [sym__list_item_star] = STATE(673), - [sym__list_task] = STATE(115), - [sym__list_item_task] = STATE(680), - [sym_list_marker_task] = STATE(48), - [sym__list_definition] = STATE(115), - [sym__list_item_definition] = STATE(804), - [sym__list_decimal_period] = STATE(115), - [sym__list_item_decimal_period] = STATE(837), - [sym__list_decimal_paren] = STATE(115), - [sym__list_item_decimal_paren] = STATE(703), - [sym__list_decimal_parens] = STATE(115), - [sym__list_item_decimal_parens] = STATE(715), - [sym__list_lower_alpha_period] = STATE(115), - [sym__list_item_lower_alpha_period] = STATE(739), - [sym__list_lower_alpha_paren] = STATE(115), - [sym__list_item_lower_alpha_paren] = STATE(754), - [sym__list_lower_alpha_parens] = STATE(115), - [sym__list_item_lower_alpha_parens] = STATE(755), - [sym__list_upper_alpha_period] = STATE(115), - [sym__list_item_upper_alpha_period] = STATE(758), - [sym__list_upper_alpha_paren] = STATE(115), - [sym__list_item_upper_alpha_paren] = STATE(759), - [sym__list_upper_alpha_parens] = STATE(115), - [sym__list_item_upper_alpha_parens] = STATE(766), - [sym__list_lower_roman_period] = STATE(115), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(115), - [sym__list_item_lower_roman_paren] = STATE(770), - [sym__list_lower_roman_parens] = STATE(115), - [sym__list_item_lower_roman_parens] = STATE(773), - [sym__list_upper_roman_period] = STATE(115), - [sym__list_item_upper_roman_period] = STATE(775), - [sym__list_upper_roman_paren] = STATE(115), - [sym__list_item_upper_roman_paren] = STATE(791), - [sym__list_upper_roman_parens] = STATE(115), - [sym__list_item_upper_roman_parens] = STATE(793), - [sym_table] = STATE(114), + [sym_document] = STATE(1016), + [sym_frontmatter] = STATE(2), + [sym__block_with_section] = STATE(173), + [sym__block_element] = STATE(173), + [sym_section] = STATE(173), + [sym_heading] = STATE(5), + [sym_list] = STATE(173), + [sym__list_dash] = STATE(200), + [sym__list_item_dash] = STATE(553), + [sym__list_plus] = STATE(200), + [sym__list_item_plus] = STATE(554), + [sym__list_star] = STATE(200), + [sym__list_item_star] = STATE(556), + [sym__list_task] = STATE(200), + [sym__list_item_task] = STATE(558), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(200), + [sym__list_item_definition] = STATE(769), + [sym__list_decimal_period] = STATE(200), + [sym__list_item_decimal_period] = STATE(776), + [sym__list_decimal_paren] = STATE(200), + [sym__list_item_decimal_paren] = STATE(790), + [sym__list_decimal_parens] = STATE(200), + [sym__list_item_decimal_parens] = STATE(793), + [sym__list_lower_alpha_period] = STATE(200), + [sym__list_item_lower_alpha_period] = STATE(822), + [sym__list_lower_alpha_paren] = STATE(200), + [sym__list_item_lower_alpha_paren] = STATE(684), + [sym__list_lower_alpha_parens] = STATE(200), + [sym__list_item_lower_alpha_parens] = STATE(688), + [sym__list_upper_alpha_period] = STATE(200), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(200), + [sym__list_item_upper_alpha_paren] = STATE(705), + [sym__list_upper_alpha_parens] = STATE(200), + [sym__list_item_upper_alpha_parens] = STATE(711), + [sym__list_lower_roman_period] = STATE(200), + [sym__list_item_lower_roman_period] = STATE(712), + [sym__list_lower_roman_paren] = STATE(200), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(200), + [sym__list_item_lower_roman_parens] = STATE(728), + [sym__list_upper_roman_period] = STATE(200), + [sym__list_item_upper_roman_period] = STATE(734), + [sym__list_upper_roman_paren] = STATE(200), + [sym__list_item_upper_roman_paren] = STATE(830), + [sym__list_upper_roman_parens] = STATE(200), + [sym__list_item_upper_roman_parens] = STATE(725), + [sym_table] = STATE(173), [sym__table_row] = STATE(67), [sym_table_header] = STATE(67), [sym_table_separator] = STATE(67), [sym_table_row] = STATE(67), - [sym_footnote] = STATE(114), - [sym_footnote_marker_begin] = STATE(980), - [sym_div] = STATE(114), - [sym__div_marker_begin] = STATE(994), - [sym_code_block] = STATE(114), - [sym_raw_block] = STATE(114), - [sym_thematic_break] = STATE(114), - [sym_block_quote] = STATE(114), - [sym__block_quote_prefix] = STATE(225), - [sym_link_reference_definition] = STATE(114), - [sym_block_attribute] = STATE(114), - [sym__paragraph] = STATE(114), - [sym__paragraph_content] = STATE(797), - [sym__paragraph_inline_content] = STATE(799), - [sym__inline] = STATE(629), - [sym__symbol_fallback] = STATE(285), - [aux_sym_document_repeat1] = STATE(2), - [aux_sym__list_dash_repeat1] = STATE(366), - [aux_sym__list_plus_repeat1] = STATE(381), - [aux_sym__list_star_repeat1] = STATE(368), - [aux_sym__list_task_repeat1] = STATE(322), - [aux_sym__list_definition_repeat1] = STATE(529), - [aux_sym__list_decimal_period_repeat1] = STATE(531), - [aux_sym__list_decimal_paren_repeat1] = STATE(533), - [aux_sym__list_decimal_parens_repeat1] = STATE(535), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(553), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(555), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(557), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(559), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(561), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(563), - [aux_sym__list_lower_roman_period_repeat1] = STATE(565), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(567), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(569), - [aux_sym__list_upper_roman_period_repeat1] = STATE(572), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(575), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(578), + [sym_footnote] = STATE(173), + [sym_footnote_marker_begin] = STATE(1002), + [sym_div] = STATE(173), + [sym__div_marker_begin] = STATE(1085), + [sym_code_block] = STATE(173), + [sym_raw_block] = STATE(173), + [sym_thematic_break] = STATE(173), + [sym_block_quote] = STATE(173), + [sym__block_quote_prefix] = STATE(222), + [sym_link_reference_definition] = STATE(173), + [sym_block_attribute] = STATE(173), + [sym__paragraph] = STATE(173), + [sym__paragraph_content] = STATE(753), + [sym__paragraph_inline_content] = STATE(778), + [sym__inline] = STATE(655), + [sym__symbol_fallback] = STATE(273), + [aux_sym_document_repeat1] = STATE(3), + [aux_sym__list_dash_repeat1] = STATE(319), + [aux_sym__list_plus_repeat1] = STATE(332), + [aux_sym__list_star_repeat1] = STATE(345), + [aux_sym__list_task_repeat1] = STATE(285), + [aux_sym__list_definition_repeat1] = STATE(448), + [aux_sym__list_decimal_period_repeat1] = STATE(481), + [aux_sym__list_decimal_paren_repeat1] = STATE(449), + [aux_sym__list_decimal_parens_repeat1] = STATE(486), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(518), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(520), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(523), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(528), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(530), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(535), + [aux_sym__list_lower_roman_period_repeat1] = STATE(539), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(541), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(542), + [aux_sym__list_upper_roman_period_repeat1] = STATE(543), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(537), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(488), [aux_sym_table_repeat1] = STATE(67), - [aux_sym__block_quote_prefix_repeat1] = STATE(235), - [aux_sym__inline_repeat1] = STATE(285), + [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__inline_repeat1] = STATE(273), [ts_builtin_sym_end] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(5), [anon_sym_LBRACK_CARET] = ACTIONS(7), @@ -4798,8 +4755,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(11), [aux_sym_identifier_token1] = ACTIONS(11), [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [anon_sym_POUND] = ACTIONS(11), [anon_sym_PERCENT] = ACTIONS(11), [sym__newline] = ACTIONS(13), [sym_frontmatter_marker] = ACTIONS(15), @@ -4835,97 +4790,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__table_row_begin] = ACTIONS(73), }, [2] = { - [sym__block_with_section] = STATE(114), - [sym__block_element] = STATE(114), - [sym_section] = STATE(114), - [sym_heading] = STATE(4), - [sym_list] = STATE(114), - [sym__list_dash] = STATE(115), - [sym__list_item_dash] = STATE(687), - [sym__list_plus] = STATE(115), - [sym__list_item_plus] = STATE(691), - [sym__list_star] = STATE(115), - [sym__list_item_star] = STATE(673), - [sym__list_task] = STATE(115), - [sym__list_item_task] = STATE(680), - [sym_list_marker_task] = STATE(48), - [sym__list_definition] = STATE(115), - [sym__list_item_definition] = STATE(804), - [sym__list_decimal_period] = STATE(115), - [sym__list_item_decimal_period] = STATE(837), - [sym__list_decimal_paren] = STATE(115), - [sym__list_item_decimal_paren] = STATE(703), - [sym__list_decimal_parens] = STATE(115), - [sym__list_item_decimal_parens] = STATE(715), - [sym__list_lower_alpha_period] = STATE(115), - [sym__list_item_lower_alpha_period] = STATE(739), - [sym__list_lower_alpha_paren] = STATE(115), - [sym__list_item_lower_alpha_paren] = STATE(754), - [sym__list_lower_alpha_parens] = STATE(115), - [sym__list_item_lower_alpha_parens] = STATE(755), - [sym__list_upper_alpha_period] = STATE(115), - [sym__list_item_upper_alpha_period] = STATE(758), - [sym__list_upper_alpha_paren] = STATE(115), - [sym__list_item_upper_alpha_paren] = STATE(759), - [sym__list_upper_alpha_parens] = STATE(115), - [sym__list_item_upper_alpha_parens] = STATE(766), - [sym__list_lower_roman_period] = STATE(115), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(115), - [sym__list_item_lower_roman_paren] = STATE(770), - [sym__list_lower_roman_parens] = STATE(115), - [sym__list_item_lower_roman_parens] = STATE(773), - [sym__list_upper_roman_period] = STATE(115), - [sym__list_item_upper_roman_period] = STATE(775), - [sym__list_upper_roman_paren] = STATE(115), - [sym__list_item_upper_roman_paren] = STATE(791), - [sym__list_upper_roman_parens] = STATE(115), - [sym__list_item_upper_roman_parens] = STATE(793), - [sym_table] = STATE(114), + [sym__block_with_section] = STATE(173), + [sym__block_element] = STATE(173), + [sym_section] = STATE(173), + [sym_heading] = STATE(5), + [sym_list] = STATE(173), + [sym__list_dash] = STATE(200), + [sym__list_item_dash] = STATE(553), + [sym__list_plus] = STATE(200), + [sym__list_item_plus] = STATE(554), + [sym__list_star] = STATE(200), + [sym__list_item_star] = STATE(556), + [sym__list_task] = STATE(200), + [sym__list_item_task] = STATE(558), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(200), + [sym__list_item_definition] = STATE(769), + [sym__list_decimal_period] = STATE(200), + [sym__list_item_decimal_period] = STATE(776), + [sym__list_decimal_paren] = STATE(200), + [sym__list_item_decimal_paren] = STATE(790), + [sym__list_decimal_parens] = STATE(200), + [sym__list_item_decimal_parens] = STATE(793), + [sym__list_lower_alpha_period] = STATE(200), + [sym__list_item_lower_alpha_period] = STATE(822), + [sym__list_lower_alpha_paren] = STATE(200), + [sym__list_item_lower_alpha_paren] = STATE(684), + [sym__list_lower_alpha_parens] = STATE(200), + [sym__list_item_lower_alpha_parens] = STATE(688), + [sym__list_upper_alpha_period] = STATE(200), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(200), + [sym__list_item_upper_alpha_paren] = STATE(705), + [sym__list_upper_alpha_parens] = STATE(200), + [sym__list_item_upper_alpha_parens] = STATE(711), + [sym__list_lower_roman_period] = STATE(200), + [sym__list_item_lower_roman_period] = STATE(712), + [sym__list_lower_roman_paren] = STATE(200), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(200), + [sym__list_item_lower_roman_parens] = STATE(728), + [sym__list_upper_roman_period] = STATE(200), + [sym__list_item_upper_roman_period] = STATE(734), + [sym__list_upper_roman_paren] = STATE(200), + [sym__list_item_upper_roman_paren] = STATE(830), + [sym__list_upper_roman_parens] = STATE(200), + [sym__list_item_upper_roman_parens] = STATE(725), + [sym_table] = STATE(173), [sym__table_row] = STATE(67), [sym_table_header] = STATE(67), [sym_table_separator] = STATE(67), [sym_table_row] = STATE(67), - [sym_footnote] = STATE(114), - [sym_footnote_marker_begin] = STATE(980), - [sym_div] = STATE(114), - [sym__div_marker_begin] = STATE(994), - [sym_code_block] = STATE(114), - [sym_raw_block] = STATE(114), - [sym_thematic_break] = STATE(114), - [sym_block_quote] = STATE(114), - [sym__block_quote_prefix] = STATE(225), - [sym_link_reference_definition] = STATE(114), - [sym_block_attribute] = STATE(114), - [sym__paragraph] = STATE(114), - [sym__paragraph_content] = STATE(797), - [sym__paragraph_inline_content] = STATE(799), - [sym__inline] = STATE(629), - [sym__symbol_fallback] = STATE(285), - [aux_sym_document_repeat1] = STATE(7), - [aux_sym__list_dash_repeat1] = STATE(366), - [aux_sym__list_plus_repeat1] = STATE(381), - [aux_sym__list_star_repeat1] = STATE(368), - [aux_sym__list_task_repeat1] = STATE(322), - [aux_sym__list_definition_repeat1] = STATE(529), - [aux_sym__list_decimal_period_repeat1] = STATE(531), - [aux_sym__list_decimal_paren_repeat1] = STATE(533), - [aux_sym__list_decimal_parens_repeat1] = STATE(535), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(553), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(555), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(557), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(559), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(561), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(563), - [aux_sym__list_lower_roman_period_repeat1] = STATE(565), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(567), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(569), - [aux_sym__list_upper_roman_period_repeat1] = STATE(572), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(575), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(578), + [sym_footnote] = STATE(173), + [sym_footnote_marker_begin] = STATE(1002), + [sym_div] = STATE(173), + [sym__div_marker_begin] = STATE(1085), + [sym_code_block] = STATE(173), + [sym_raw_block] = STATE(173), + [sym_thematic_break] = STATE(173), + [sym_block_quote] = STATE(173), + [sym__block_quote_prefix] = STATE(222), + [sym_link_reference_definition] = STATE(173), + [sym_block_attribute] = STATE(173), + [sym__paragraph] = STATE(173), + [sym__paragraph_content] = STATE(753), + [sym__paragraph_inline_content] = STATE(778), + [sym__inline] = STATE(655), + [sym__symbol_fallback] = STATE(273), + [aux_sym_document_repeat1] = STATE(6), + [aux_sym__list_dash_repeat1] = STATE(319), + [aux_sym__list_plus_repeat1] = STATE(332), + [aux_sym__list_star_repeat1] = STATE(345), + [aux_sym__list_task_repeat1] = STATE(285), + [aux_sym__list_definition_repeat1] = STATE(448), + [aux_sym__list_decimal_period_repeat1] = STATE(481), + [aux_sym__list_decimal_paren_repeat1] = STATE(449), + [aux_sym__list_decimal_parens_repeat1] = STATE(486), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(518), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(520), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(523), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(528), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(530), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(535), + [aux_sym__list_lower_roman_period_repeat1] = STATE(539), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(541), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(542), + [aux_sym__list_upper_roman_period_repeat1] = STATE(543), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(537), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(488), [aux_sym_table_repeat1] = STATE(67), - [aux_sym__block_quote_prefix_repeat1] = STATE(235), - [aux_sym__inline_repeat1] = STATE(285), + [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__inline_repeat1] = STATE(273), [ts_builtin_sym_end] = ACTIONS(75), [anon_sym_LBRACK] = ACTIONS(5), [anon_sym_LBRACK_CARET] = ACTIONS(7), @@ -4933,8 +4888,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(11), [aux_sym_identifier_token1] = ACTIONS(11), [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [anon_sym_POUND] = ACTIONS(11), [anon_sym_PERCENT] = ACTIONS(11), [sym__newline] = ACTIONS(13), [sym__heading_begin] = ACTIONS(17), @@ -4969,97 +4922,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__table_row_begin] = ACTIONS(73), }, [3] = { - [sym__block_with_section] = STATE(114), - [sym__block_element] = STATE(114), - [sym_section] = STATE(114), - [sym_heading] = STATE(4), - [sym_list] = STATE(114), - [sym__list_dash] = STATE(115), - [sym__list_item_dash] = STATE(687), - [sym__list_plus] = STATE(115), - [sym__list_item_plus] = STATE(691), - [sym__list_star] = STATE(115), - [sym__list_item_star] = STATE(673), - [sym__list_task] = STATE(115), - [sym__list_item_task] = STATE(680), - [sym_list_marker_task] = STATE(48), - [sym__list_definition] = STATE(115), - [sym__list_item_definition] = STATE(804), - [sym__list_decimal_period] = STATE(115), - [sym__list_item_decimal_period] = STATE(837), - [sym__list_decimal_paren] = STATE(115), - [sym__list_item_decimal_paren] = STATE(703), - [sym__list_decimal_parens] = STATE(115), - [sym__list_item_decimal_parens] = STATE(715), - [sym__list_lower_alpha_period] = STATE(115), - [sym__list_item_lower_alpha_period] = STATE(739), - [sym__list_lower_alpha_paren] = STATE(115), - [sym__list_item_lower_alpha_paren] = STATE(754), - [sym__list_lower_alpha_parens] = STATE(115), - [sym__list_item_lower_alpha_parens] = STATE(755), - [sym__list_upper_alpha_period] = STATE(115), - [sym__list_item_upper_alpha_period] = STATE(758), - [sym__list_upper_alpha_paren] = STATE(115), - [sym__list_item_upper_alpha_paren] = STATE(759), - [sym__list_upper_alpha_parens] = STATE(115), - [sym__list_item_upper_alpha_parens] = STATE(766), - [sym__list_lower_roman_period] = STATE(115), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(115), - [sym__list_item_lower_roman_paren] = STATE(770), - [sym__list_lower_roman_parens] = STATE(115), - [sym__list_item_lower_roman_parens] = STATE(773), - [sym__list_upper_roman_period] = STATE(115), - [sym__list_item_upper_roman_period] = STATE(775), - [sym__list_upper_roman_paren] = STATE(115), - [sym__list_item_upper_roman_paren] = STATE(791), - [sym__list_upper_roman_parens] = STATE(115), - [sym__list_item_upper_roman_parens] = STATE(793), - [sym_table] = STATE(114), + [sym__block_with_section] = STATE(173), + [sym__block_element] = STATE(173), + [sym_section] = STATE(173), + [sym_heading] = STATE(5), + [sym_list] = STATE(173), + [sym__list_dash] = STATE(200), + [sym__list_item_dash] = STATE(553), + [sym__list_plus] = STATE(200), + [sym__list_item_plus] = STATE(554), + [sym__list_star] = STATE(200), + [sym__list_item_star] = STATE(556), + [sym__list_task] = STATE(200), + [sym__list_item_task] = STATE(558), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(200), + [sym__list_item_definition] = STATE(769), + [sym__list_decimal_period] = STATE(200), + [sym__list_item_decimal_period] = STATE(776), + [sym__list_decimal_paren] = STATE(200), + [sym__list_item_decimal_paren] = STATE(790), + [sym__list_decimal_parens] = STATE(200), + [sym__list_item_decimal_parens] = STATE(793), + [sym__list_lower_alpha_period] = STATE(200), + [sym__list_item_lower_alpha_period] = STATE(822), + [sym__list_lower_alpha_paren] = STATE(200), + [sym__list_item_lower_alpha_paren] = STATE(684), + [sym__list_lower_alpha_parens] = STATE(200), + [sym__list_item_lower_alpha_parens] = STATE(688), + [sym__list_upper_alpha_period] = STATE(200), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(200), + [sym__list_item_upper_alpha_paren] = STATE(705), + [sym__list_upper_alpha_parens] = STATE(200), + [sym__list_item_upper_alpha_parens] = STATE(711), + [sym__list_lower_roman_period] = STATE(200), + [sym__list_item_lower_roman_period] = STATE(712), + [sym__list_lower_roman_paren] = STATE(200), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(200), + [sym__list_item_lower_roman_parens] = STATE(728), + [sym__list_upper_roman_period] = STATE(200), + [sym__list_item_upper_roman_period] = STATE(734), + [sym__list_upper_roman_paren] = STATE(200), + [sym__list_item_upper_roman_paren] = STATE(830), + [sym__list_upper_roman_parens] = STATE(200), + [sym__list_item_upper_roman_parens] = STATE(725), + [sym_table] = STATE(173), [sym__table_row] = STATE(67), [sym_table_header] = STATE(67), [sym_table_separator] = STATE(67), [sym_table_row] = STATE(67), - [sym_footnote] = STATE(114), - [sym_footnote_marker_begin] = STATE(980), - [sym_div] = STATE(114), - [sym__div_marker_begin] = STATE(994), - [sym_code_block] = STATE(114), - [sym_raw_block] = STATE(114), - [sym_thematic_break] = STATE(114), - [sym_block_quote] = STATE(114), - [sym__block_quote_prefix] = STATE(225), - [sym_link_reference_definition] = STATE(114), - [sym_block_attribute] = STATE(114), - [sym__paragraph] = STATE(114), - [sym__paragraph_content] = STATE(797), - [sym__paragraph_inline_content] = STATE(799), - [sym__inline] = STATE(629), - [sym__symbol_fallback] = STATE(285), - [aux_sym_document_repeat1] = STATE(6), - [aux_sym__list_dash_repeat1] = STATE(366), - [aux_sym__list_plus_repeat1] = STATE(381), - [aux_sym__list_star_repeat1] = STATE(368), - [aux_sym__list_task_repeat1] = STATE(322), - [aux_sym__list_definition_repeat1] = STATE(529), - [aux_sym__list_decimal_period_repeat1] = STATE(531), - [aux_sym__list_decimal_paren_repeat1] = STATE(533), - [aux_sym__list_decimal_parens_repeat1] = STATE(535), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(553), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(555), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(557), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(559), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(561), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(563), - [aux_sym__list_lower_roman_period_repeat1] = STATE(565), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(567), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(569), - [aux_sym__list_upper_roman_period_repeat1] = STATE(572), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(575), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(578), + [sym_footnote] = STATE(173), + [sym_footnote_marker_begin] = STATE(1002), + [sym_div] = STATE(173), + [sym__div_marker_begin] = STATE(1085), + [sym_code_block] = STATE(173), + [sym_raw_block] = STATE(173), + [sym_thematic_break] = STATE(173), + [sym_block_quote] = STATE(173), + [sym__block_quote_prefix] = STATE(222), + [sym_link_reference_definition] = STATE(173), + [sym_block_attribute] = STATE(173), + [sym__paragraph] = STATE(173), + [sym__paragraph_content] = STATE(753), + [sym__paragraph_inline_content] = STATE(778), + [sym__inline] = STATE(655), + [sym__symbol_fallback] = STATE(273), + [aux_sym_document_repeat1] = STATE(4), + [aux_sym__list_dash_repeat1] = STATE(319), + [aux_sym__list_plus_repeat1] = STATE(332), + [aux_sym__list_star_repeat1] = STATE(345), + [aux_sym__list_task_repeat1] = STATE(285), + [aux_sym__list_definition_repeat1] = STATE(448), + [aux_sym__list_decimal_period_repeat1] = STATE(481), + [aux_sym__list_decimal_paren_repeat1] = STATE(449), + [aux_sym__list_decimal_parens_repeat1] = STATE(486), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(518), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(520), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(523), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(528), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(530), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(535), + [aux_sym__list_lower_roman_period_repeat1] = STATE(539), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(541), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(542), + [aux_sym__list_upper_roman_period_repeat1] = STATE(543), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(537), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(488), [aux_sym_table_repeat1] = STATE(67), - [aux_sym__block_quote_prefix_repeat1] = STATE(235), - [aux_sym__inline_repeat1] = STATE(285), + [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__inline_repeat1] = STATE(273), [ts_builtin_sym_end] = ACTIONS(75), [anon_sym_LBRACK] = ACTIONS(5), [anon_sym_LBRACK_CARET] = ACTIONS(7), @@ -5067,8 +5020,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(11), [aux_sym_identifier_token1] = ACTIONS(11), [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [anon_sym_POUND] = ACTIONS(11), [anon_sym_PERCENT] = ACTIONS(11), [sym__newline] = ACTIONS(13), [sym__heading_begin] = ACTIONS(17), @@ -5103,111 +5054,241 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__table_row_begin] = ACTIONS(73), }, [4] = { - [sym__block_with_section] = STATE(137), - [sym__block_element] = STATE(137), - [sym_section] = STATE(137), + [sym__block_with_section] = STATE(173), + [sym__block_element] = STATE(173), + [sym_section] = STATE(173), + [sym_heading] = STATE(5), + [sym_list] = STATE(173), + [sym__list_dash] = STATE(200), + [sym__list_item_dash] = STATE(553), + [sym__list_plus] = STATE(200), + [sym__list_item_plus] = STATE(554), + [sym__list_star] = STATE(200), + [sym__list_item_star] = STATE(556), + [sym__list_task] = STATE(200), + [sym__list_item_task] = STATE(558), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(200), + [sym__list_item_definition] = STATE(769), + [sym__list_decimal_period] = STATE(200), + [sym__list_item_decimal_period] = STATE(776), + [sym__list_decimal_paren] = STATE(200), + [sym__list_item_decimal_paren] = STATE(790), + [sym__list_decimal_parens] = STATE(200), + [sym__list_item_decimal_parens] = STATE(793), + [sym__list_lower_alpha_period] = STATE(200), + [sym__list_item_lower_alpha_period] = STATE(822), + [sym__list_lower_alpha_paren] = STATE(200), + [sym__list_item_lower_alpha_paren] = STATE(684), + [sym__list_lower_alpha_parens] = STATE(200), + [sym__list_item_lower_alpha_parens] = STATE(688), + [sym__list_upper_alpha_period] = STATE(200), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(200), + [sym__list_item_upper_alpha_paren] = STATE(705), + [sym__list_upper_alpha_parens] = STATE(200), + [sym__list_item_upper_alpha_parens] = STATE(711), + [sym__list_lower_roman_period] = STATE(200), + [sym__list_item_lower_roman_period] = STATE(712), + [sym__list_lower_roman_paren] = STATE(200), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(200), + [sym__list_item_lower_roman_parens] = STATE(728), + [sym__list_upper_roman_period] = STATE(200), + [sym__list_item_upper_roman_period] = STATE(734), + [sym__list_upper_roman_paren] = STATE(200), + [sym__list_item_upper_roman_paren] = STATE(830), + [sym__list_upper_roman_parens] = STATE(200), + [sym__list_item_upper_roman_parens] = STATE(725), + [sym_table] = STATE(173), + [sym__table_row] = STATE(67), + [sym_table_header] = STATE(67), + [sym_table_separator] = STATE(67), + [sym_table_row] = STATE(67), + [sym_footnote] = STATE(173), + [sym_footnote_marker_begin] = STATE(1002), + [sym_div] = STATE(173), + [sym__div_marker_begin] = STATE(1085), + [sym_code_block] = STATE(173), + [sym_raw_block] = STATE(173), + [sym_thematic_break] = STATE(173), + [sym_block_quote] = STATE(173), + [sym__block_quote_prefix] = STATE(222), + [sym_link_reference_definition] = STATE(173), + [sym_block_attribute] = STATE(173), + [sym__paragraph] = STATE(173), + [sym__paragraph_content] = STATE(753), + [sym__paragraph_inline_content] = STATE(778), + [sym__inline] = STATE(655), + [sym__symbol_fallback] = STATE(273), + [aux_sym_document_repeat1] = STATE(4), + [aux_sym__list_dash_repeat1] = STATE(319), + [aux_sym__list_plus_repeat1] = STATE(332), + [aux_sym__list_star_repeat1] = STATE(345), + [aux_sym__list_task_repeat1] = STATE(285), + [aux_sym__list_definition_repeat1] = STATE(448), + [aux_sym__list_decimal_period_repeat1] = STATE(481), + [aux_sym__list_decimal_paren_repeat1] = STATE(449), + [aux_sym__list_decimal_parens_repeat1] = STATE(486), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(518), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(520), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(523), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(528), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(530), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(535), + [aux_sym__list_lower_roman_period_repeat1] = STATE(539), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(541), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(542), + [aux_sym__list_upper_roman_period_repeat1] = STATE(543), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(537), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(488), + [aux_sym_table_repeat1] = STATE(67), + [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__inline_repeat1] = STATE(273), + [ts_builtin_sym_end] = ACTIONS(77), + [anon_sym_LBRACK] = ACTIONS(79), + [anon_sym_LBRACK_CARET] = ACTIONS(82), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(88), + [aux_sym_identifier_token1] = ACTIONS(88), + [aux_sym__inline_token1] = ACTIONS(88), + [anon_sym_PERCENT] = ACTIONS(88), + [sym__newline] = ACTIONS(91), + [sym__heading_begin] = ACTIONS(94), + [sym__div_begin] = ACTIONS(97), + [sym__code_block_begin] = ACTIONS(100), + [sym_list_marker_dash] = ACTIONS(103), + [sym_list_marker_star] = ACTIONS(106), + [sym_list_marker_plus] = ACTIONS(109), + [sym__list_marker_task_begin] = ACTIONS(112), + [sym_list_marker_definition] = ACTIONS(115), + [sym_list_marker_decimal_period] = ACTIONS(118), + [sym_list_marker_lower_alpha_period] = ACTIONS(121), + [sym_list_marker_upper_alpha_period] = ACTIONS(124), + [sym_list_marker_lower_roman_period] = ACTIONS(127), + [sym_list_marker_upper_roman_period] = ACTIONS(130), + [sym_list_marker_decimal_paren] = ACTIONS(133), + [sym_list_marker_lower_alpha_paren] = ACTIONS(136), + [sym_list_marker_upper_alpha_paren] = ACTIONS(139), + [sym_list_marker_lower_roman_paren] = ACTIONS(142), + [sym_list_marker_upper_roman_paren] = ACTIONS(145), + [sym_list_marker_decimal_parens] = ACTIONS(148), + [sym_list_marker_lower_alpha_parens] = ACTIONS(151), + [sym_list_marker_upper_alpha_parens] = ACTIONS(154), + [sym_list_marker_lower_roman_parens] = ACTIONS(157), + [sym_list_marker_upper_roman_parens] = ACTIONS(160), + [sym__block_quote_begin] = ACTIONS(163), + [sym__block_quote_continuation] = ACTIONS(166), + [sym__thematic_break_dash] = ACTIONS(169), + [sym__thematic_break_star] = ACTIONS(169), + [sym__table_header_begin] = ACTIONS(172), + [sym__table_separator_begin] = ACTIONS(175), + [sym__table_row_begin] = ACTIONS(178), + }, + [5] = { + [sym__block_with_section] = STATE(109), + [sym__block_element] = STATE(109), + [sym_section] = STATE(109), [sym_heading] = STATE(9), - [sym_list] = STATE(137), - [sym__list_dash] = STATE(143), - [sym__list_item_dash] = STATE(687), - [sym__list_plus] = STATE(143), - [sym__list_item_plus] = STATE(691), - [sym__list_star] = STATE(143), - [sym__list_item_star] = STATE(673), - [sym__list_task] = STATE(143), - [sym__list_item_task] = STATE(680), - [sym_list_marker_task] = STATE(48), - [sym__list_definition] = STATE(143), - [sym__list_item_definition] = STATE(804), - [sym__list_decimal_period] = STATE(143), - [sym__list_item_decimal_period] = STATE(837), - [sym__list_decimal_paren] = STATE(143), - [sym__list_item_decimal_paren] = STATE(703), - [sym__list_decimal_parens] = STATE(143), - [sym__list_item_decimal_parens] = STATE(715), - [sym__list_lower_alpha_period] = STATE(143), - [sym__list_item_lower_alpha_period] = STATE(739), - [sym__list_lower_alpha_paren] = STATE(143), - [sym__list_item_lower_alpha_paren] = STATE(754), - [sym__list_lower_alpha_parens] = STATE(143), - [sym__list_item_lower_alpha_parens] = STATE(755), - [sym__list_upper_alpha_period] = STATE(143), - [sym__list_item_upper_alpha_period] = STATE(758), - [sym__list_upper_alpha_paren] = STATE(143), - [sym__list_item_upper_alpha_paren] = STATE(759), - [sym__list_upper_alpha_parens] = STATE(143), - [sym__list_item_upper_alpha_parens] = STATE(766), - [sym__list_lower_roman_period] = STATE(143), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(143), - [sym__list_item_lower_roman_paren] = STATE(770), - [sym__list_lower_roman_parens] = STATE(143), - [sym__list_item_lower_roman_parens] = STATE(773), - [sym__list_upper_roman_period] = STATE(143), - [sym__list_item_upper_roman_period] = STATE(775), - [sym__list_upper_roman_paren] = STATE(143), - [sym__list_item_upper_roman_paren] = STATE(791), - [sym__list_upper_roman_parens] = STATE(143), - [sym__list_item_upper_roman_parens] = STATE(793), - [sym_table] = STATE(137), + [sym_list] = STATE(109), + [sym__list_dash] = STATE(144), + [sym__list_item_dash] = STATE(553), + [sym__list_plus] = STATE(144), + [sym__list_item_plus] = STATE(554), + [sym__list_star] = STATE(144), + [sym__list_item_star] = STATE(556), + [sym__list_task] = STATE(144), + [sym__list_item_task] = STATE(558), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(144), + [sym__list_item_definition] = STATE(769), + [sym__list_decimal_period] = STATE(144), + [sym__list_item_decimal_period] = STATE(776), + [sym__list_decimal_paren] = STATE(144), + [sym__list_item_decimal_paren] = STATE(790), + [sym__list_decimal_parens] = STATE(144), + [sym__list_item_decimal_parens] = STATE(793), + [sym__list_lower_alpha_period] = STATE(144), + [sym__list_item_lower_alpha_period] = STATE(822), + [sym__list_lower_alpha_paren] = STATE(144), + [sym__list_item_lower_alpha_paren] = STATE(684), + [sym__list_lower_alpha_parens] = STATE(144), + [sym__list_item_lower_alpha_parens] = STATE(688), + [sym__list_upper_alpha_period] = STATE(144), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(144), + [sym__list_item_upper_alpha_paren] = STATE(705), + [sym__list_upper_alpha_parens] = STATE(144), + [sym__list_item_upper_alpha_parens] = STATE(711), + [sym__list_lower_roman_period] = STATE(144), + [sym__list_item_lower_roman_period] = STATE(712), + [sym__list_lower_roman_paren] = STATE(144), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(144), + [sym__list_item_lower_roman_parens] = STATE(728), + [sym__list_upper_roman_period] = STATE(144), + [sym__list_item_upper_roman_period] = STATE(734), + [sym__list_upper_roman_paren] = STATE(144), + [sym__list_item_upper_roman_paren] = STATE(830), + [sym__list_upper_roman_parens] = STATE(144), + [sym__list_item_upper_roman_parens] = STATE(725), + [sym_table] = STATE(109), [sym__table_row] = STATE(66), [sym_table_header] = STATE(66), [sym_table_separator] = STATE(66), [sym_table_row] = STATE(66), - [sym_footnote] = STATE(137), - [sym_footnote_marker_begin] = STATE(1145), - [sym_div] = STATE(137), - [sym__div_marker_begin] = STATE(1061), - [sym_code_block] = STATE(137), - [sym_raw_block] = STATE(137), - [sym_thematic_break] = STATE(137), - [sym_block_quote] = STATE(137), - [sym__block_quote_prefix] = STATE(224), - [sym_link_reference_definition] = STATE(137), - [sym_block_attribute] = STATE(137), - [sym__paragraph] = STATE(137), - [sym__paragraph_content] = STATE(800), - [sym__paragraph_inline_content] = STATE(799), - [sym__inline] = STATE(629), - [sym__symbol_fallback] = STATE(285), - [aux_sym_document_repeat1] = STATE(5), - [aux_sym__list_dash_repeat1] = STATE(351), - [aux_sym__list_plus_repeat1] = STATE(350), - [aux_sym__list_star_repeat1] = STATE(353), - [aux_sym__list_task_repeat1] = STATE(339), - [aux_sym__list_definition_repeat1] = STATE(512), - [aux_sym__list_decimal_period_repeat1] = STATE(513), - [aux_sym__list_decimal_paren_repeat1] = STATE(514), - [aux_sym__list_decimal_parens_repeat1] = STATE(515), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(516), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(518), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(519), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(520), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(521), - [aux_sym__list_lower_roman_period_repeat1] = STATE(579), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(523), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(524), - [aux_sym__list_upper_roman_period_repeat1] = STATE(525), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(526), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(527), + [sym_footnote] = STATE(109), + [sym_footnote_marker_begin] = STATE(1141), + [sym_div] = STATE(109), + [sym__div_marker_begin] = STATE(1057), + [sym_code_block] = STATE(109), + [sym_raw_block] = STATE(109), + [sym_thematic_break] = STATE(109), + [sym_block_quote] = STATE(109), + [sym__block_quote_prefix] = STATE(225), + [sym_link_reference_definition] = STATE(109), + [sym_block_attribute] = STATE(109), + [sym__paragraph] = STATE(109), + [sym__paragraph_content] = STATE(750), + [sym__paragraph_inline_content] = STATE(778), + [sym__inline] = STATE(655), + [sym__symbol_fallback] = STATE(273), + [aux_sym_document_repeat1] = STATE(7), + [aux_sym__list_dash_repeat1] = STATE(334), + [aux_sym__list_plus_repeat1] = STATE(335), + [aux_sym__list_star_repeat1] = STATE(336), + [aux_sym__list_task_repeat1] = STATE(309), + [aux_sym__list_definition_repeat1] = STATE(425), + [aux_sym__list_decimal_period_repeat1] = STATE(426), + [aux_sym__list_decimal_paren_repeat1] = STATE(427), + [aux_sym__list_decimal_parens_repeat1] = STATE(428), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(429), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(430), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(431), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(432), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(433), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(434), + [aux_sym__list_lower_roman_period_repeat1] = STATE(435), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(436), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(437), + [aux_sym__list_upper_roman_period_repeat1] = STATE(438), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(439), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(440), [aux_sym_table_repeat1] = STATE(66), - [aux_sym__block_quote_prefix_repeat1] = STATE(235), - [aux_sym__inline_repeat1] = STATE(285), - [anon_sym_LBRACK] = ACTIONS(77), + [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__inline_repeat1] = STATE(273), + [anon_sym_LBRACK] = ACTIONS(181), [anon_sym_LBRACK_CARET] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT] = ACTIONS(11), [aux_sym_identifier_token1] = ACTIONS(11), [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [anon_sym_POUND] = ACTIONS(11), [anon_sym_PERCENT] = ACTIONS(11), - [sym__block_close] = ACTIONS(81), - [sym__newline] = ACTIONS(83), + [sym__block_close] = ACTIONS(185), + [sym__newline] = ACTIONS(187), [sym__heading_begin] = ACTIONS(17), [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(85), + [sym__code_block_begin] = ACTIONS(189), [sym_list_marker_dash] = ACTIONS(23), [sym_list_marker_star] = ACTIONS(25), [sym_list_marker_plus] = ACTIONS(27), @@ -5228,120 +5309,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(57), [sym_list_marker_lower_roman_parens] = ACTIONS(59), [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(87), + [sym__block_quote_begin] = ACTIONS(191), [sym__block_quote_continuation] = ACTIONS(65), - [sym__thematic_break_dash] = ACTIONS(89), - [sym__thematic_break_star] = ACTIONS(89), - [sym__table_header_begin] = ACTIONS(91), - [sym__table_separator_begin] = ACTIONS(93), - [sym__table_row_begin] = ACTIONS(95), + [sym__thematic_break_dash] = ACTIONS(193), + [sym__thematic_break_star] = ACTIONS(193), + [sym__table_header_begin] = ACTIONS(195), + [sym__table_separator_begin] = ACTIONS(197), + [sym__table_row_begin] = ACTIONS(199), }, - [5] = { - [sym__block_with_section] = STATE(137), - [sym__block_element] = STATE(137), - [sym_section] = STATE(137), - [sym_heading] = STATE(9), - [sym_list] = STATE(137), - [sym__list_dash] = STATE(143), - [sym__list_item_dash] = STATE(687), - [sym__list_plus] = STATE(143), - [sym__list_item_plus] = STATE(691), - [sym__list_star] = STATE(143), - [sym__list_item_star] = STATE(673), - [sym__list_task] = STATE(143), - [sym__list_item_task] = STATE(680), - [sym_list_marker_task] = STATE(48), - [sym__list_definition] = STATE(143), - [sym__list_item_definition] = STATE(804), - [sym__list_decimal_period] = STATE(143), - [sym__list_item_decimal_period] = STATE(837), - [sym__list_decimal_paren] = STATE(143), - [sym__list_item_decimal_paren] = STATE(703), - [sym__list_decimal_parens] = STATE(143), - [sym__list_item_decimal_parens] = STATE(715), - [sym__list_lower_alpha_period] = STATE(143), - [sym__list_item_lower_alpha_period] = STATE(739), - [sym__list_lower_alpha_paren] = STATE(143), - [sym__list_item_lower_alpha_paren] = STATE(754), - [sym__list_lower_alpha_parens] = STATE(143), - [sym__list_item_lower_alpha_parens] = STATE(755), - [sym__list_upper_alpha_period] = STATE(143), - [sym__list_item_upper_alpha_period] = STATE(758), - [sym__list_upper_alpha_paren] = STATE(143), - [sym__list_item_upper_alpha_paren] = STATE(759), - [sym__list_upper_alpha_parens] = STATE(143), - [sym__list_item_upper_alpha_parens] = STATE(766), - [sym__list_lower_roman_period] = STATE(143), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(143), - [sym__list_item_lower_roman_paren] = STATE(770), - [sym__list_lower_roman_parens] = STATE(143), - [sym__list_item_lower_roman_parens] = STATE(773), - [sym__list_upper_roman_period] = STATE(143), - [sym__list_item_upper_roman_period] = STATE(775), - [sym__list_upper_roman_paren] = STATE(143), - [sym__list_item_upper_roman_paren] = STATE(791), - [sym__list_upper_roman_parens] = STATE(143), - [sym__list_item_upper_roman_parens] = STATE(793), - [sym_table] = STATE(137), - [sym__table_row] = STATE(66), - [sym_table_header] = STATE(66), - [sym_table_separator] = STATE(66), - [sym_table_row] = STATE(66), - [sym_footnote] = STATE(137), - [sym_footnote_marker_begin] = STATE(1145), - [sym_div] = STATE(137), - [sym__div_marker_begin] = STATE(1061), - [sym_code_block] = STATE(137), - [sym_raw_block] = STATE(137), - [sym_thematic_break] = STATE(137), - [sym_block_quote] = STATE(137), - [sym__block_quote_prefix] = STATE(224), - [sym_link_reference_definition] = STATE(137), - [sym_block_attribute] = STATE(137), - [sym__paragraph] = STATE(137), - [sym__paragraph_content] = STATE(800), - [sym__paragraph_inline_content] = STATE(799), - [sym__inline] = STATE(629), - [sym__symbol_fallback] = STATE(285), - [aux_sym_document_repeat1] = STATE(8), - [aux_sym__list_dash_repeat1] = STATE(351), - [aux_sym__list_plus_repeat1] = STATE(350), - [aux_sym__list_star_repeat1] = STATE(353), - [aux_sym__list_task_repeat1] = STATE(339), - [aux_sym__list_definition_repeat1] = STATE(512), - [aux_sym__list_decimal_period_repeat1] = STATE(513), - [aux_sym__list_decimal_paren_repeat1] = STATE(514), - [aux_sym__list_decimal_parens_repeat1] = STATE(515), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(516), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(518), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(519), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(520), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(521), - [aux_sym__list_lower_roman_period_repeat1] = STATE(579), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(523), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(524), - [aux_sym__list_upper_roman_period_repeat1] = STATE(525), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(526), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(527), - [aux_sym_table_repeat1] = STATE(66), - [aux_sym__block_quote_prefix_repeat1] = STATE(235), - [aux_sym__inline_repeat1] = STATE(285), - [anon_sym_LBRACK] = ACTIONS(77), + [6] = { + [sym__block_with_section] = STATE(173), + [sym__block_element] = STATE(173), + [sym_section] = STATE(173), + [sym_heading] = STATE(5), + [sym_list] = STATE(173), + [sym__list_dash] = STATE(200), + [sym__list_item_dash] = STATE(553), + [sym__list_plus] = STATE(200), + [sym__list_item_plus] = STATE(554), + [sym__list_star] = STATE(200), + [sym__list_item_star] = STATE(556), + [sym__list_task] = STATE(200), + [sym__list_item_task] = STATE(558), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(200), + [sym__list_item_definition] = STATE(769), + [sym__list_decimal_period] = STATE(200), + [sym__list_item_decimal_period] = STATE(776), + [sym__list_decimal_paren] = STATE(200), + [sym__list_item_decimal_paren] = STATE(790), + [sym__list_decimal_parens] = STATE(200), + [sym__list_item_decimal_parens] = STATE(793), + [sym__list_lower_alpha_period] = STATE(200), + [sym__list_item_lower_alpha_period] = STATE(822), + [sym__list_lower_alpha_paren] = STATE(200), + [sym__list_item_lower_alpha_paren] = STATE(684), + [sym__list_lower_alpha_parens] = STATE(200), + [sym__list_item_lower_alpha_parens] = STATE(688), + [sym__list_upper_alpha_period] = STATE(200), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(200), + [sym__list_item_upper_alpha_paren] = STATE(705), + [sym__list_upper_alpha_parens] = STATE(200), + [sym__list_item_upper_alpha_parens] = STATE(711), + [sym__list_lower_roman_period] = STATE(200), + [sym__list_item_lower_roman_period] = STATE(712), + [sym__list_lower_roman_paren] = STATE(200), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(200), + [sym__list_item_lower_roman_parens] = STATE(728), + [sym__list_upper_roman_period] = STATE(200), + [sym__list_item_upper_roman_period] = STATE(734), + [sym__list_upper_roman_paren] = STATE(200), + [sym__list_item_upper_roman_paren] = STATE(830), + [sym__list_upper_roman_parens] = STATE(200), + [sym__list_item_upper_roman_parens] = STATE(725), + [sym_table] = STATE(173), + [sym__table_row] = STATE(67), + [sym_table_header] = STATE(67), + [sym_table_separator] = STATE(67), + [sym_table_row] = STATE(67), + [sym_footnote] = STATE(173), + [sym_footnote_marker_begin] = STATE(1002), + [sym_div] = STATE(173), + [sym__div_marker_begin] = STATE(1085), + [sym_code_block] = STATE(173), + [sym_raw_block] = STATE(173), + [sym_thematic_break] = STATE(173), + [sym_block_quote] = STATE(173), + [sym__block_quote_prefix] = STATE(222), + [sym_link_reference_definition] = STATE(173), + [sym_block_attribute] = STATE(173), + [sym__paragraph] = STATE(173), + [sym__paragraph_content] = STATE(753), + [sym__paragraph_inline_content] = STATE(778), + [sym__inline] = STATE(655), + [sym__symbol_fallback] = STATE(273), + [aux_sym_document_repeat1] = STATE(4), + [aux_sym__list_dash_repeat1] = STATE(319), + [aux_sym__list_plus_repeat1] = STATE(332), + [aux_sym__list_star_repeat1] = STATE(345), + [aux_sym__list_task_repeat1] = STATE(285), + [aux_sym__list_definition_repeat1] = STATE(448), + [aux_sym__list_decimal_period_repeat1] = STATE(481), + [aux_sym__list_decimal_paren_repeat1] = STATE(449), + [aux_sym__list_decimal_parens_repeat1] = STATE(486), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(518), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(520), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(523), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(528), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(530), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(535), + [aux_sym__list_lower_roman_period_repeat1] = STATE(539), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(541), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(542), + [aux_sym__list_upper_roman_period_repeat1] = STATE(543), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(537), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(488), + [aux_sym_table_repeat1] = STATE(67), + [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__inline_repeat1] = STATE(273), + [ts_builtin_sym_end] = ACTIONS(201), + [anon_sym_LBRACK] = ACTIONS(5), [anon_sym_LBRACK_CARET] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(9), [anon_sym_DOT] = ACTIONS(11), [aux_sym_identifier_token1] = ACTIONS(11), [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [anon_sym_POUND] = ACTIONS(11), [anon_sym_PERCENT] = ACTIONS(11), - [sym__block_close] = ACTIONS(97), - [sym__newline] = ACTIONS(83), + [sym__newline] = ACTIONS(13), [sym__heading_begin] = ACTIONS(17), [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(85), + [sym__code_block_begin] = ACTIONS(21), [sym_list_marker_dash] = ACTIONS(23), [sym_list_marker_star] = ACTIONS(25), [sym_list_marker_plus] = ACTIONS(27), @@ -5362,120 +5441,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(57), [sym_list_marker_lower_roman_parens] = ACTIONS(59), [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(87), + [sym__block_quote_begin] = ACTIONS(63), [sym__block_quote_continuation] = ACTIONS(65), - [sym__thematic_break_dash] = ACTIONS(89), - [sym__thematic_break_star] = ACTIONS(89), - [sym__table_header_begin] = ACTIONS(91), - [sym__table_separator_begin] = ACTIONS(93), - [sym__table_row_begin] = ACTIONS(95), + [sym__thematic_break_dash] = ACTIONS(67), + [sym__thematic_break_star] = ACTIONS(67), + [sym__table_header_begin] = ACTIONS(69), + [sym__table_separator_begin] = ACTIONS(71), + [sym__table_row_begin] = ACTIONS(73), }, - [6] = { - [sym__block_with_section] = STATE(114), - [sym__block_element] = STATE(114), - [sym_section] = STATE(114), - [sym_heading] = STATE(4), - [sym_list] = STATE(114), - [sym__list_dash] = STATE(115), - [sym__list_item_dash] = STATE(687), - [sym__list_plus] = STATE(115), - [sym__list_item_plus] = STATE(691), - [sym__list_star] = STATE(115), - [sym__list_item_star] = STATE(673), - [sym__list_task] = STATE(115), - [sym__list_item_task] = STATE(680), - [sym_list_marker_task] = STATE(48), - [sym__list_definition] = STATE(115), - [sym__list_item_definition] = STATE(804), - [sym__list_decimal_period] = STATE(115), - [sym__list_item_decimal_period] = STATE(837), - [sym__list_decimal_paren] = STATE(115), - [sym__list_item_decimal_paren] = STATE(703), - [sym__list_decimal_parens] = STATE(115), - [sym__list_item_decimal_parens] = STATE(715), - [sym__list_lower_alpha_period] = STATE(115), - [sym__list_item_lower_alpha_period] = STATE(739), - [sym__list_lower_alpha_paren] = STATE(115), - [sym__list_item_lower_alpha_paren] = STATE(754), - [sym__list_lower_alpha_parens] = STATE(115), - [sym__list_item_lower_alpha_parens] = STATE(755), - [sym__list_upper_alpha_period] = STATE(115), - [sym__list_item_upper_alpha_period] = STATE(758), - [sym__list_upper_alpha_paren] = STATE(115), - [sym__list_item_upper_alpha_paren] = STATE(759), - [sym__list_upper_alpha_parens] = STATE(115), - [sym__list_item_upper_alpha_parens] = STATE(766), - [sym__list_lower_roman_period] = STATE(115), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(115), - [sym__list_item_lower_roman_paren] = STATE(770), - [sym__list_lower_roman_parens] = STATE(115), - [sym__list_item_lower_roman_parens] = STATE(773), - [sym__list_upper_roman_period] = STATE(115), - [sym__list_item_upper_roman_period] = STATE(775), - [sym__list_upper_roman_paren] = STATE(115), - [sym__list_item_upper_roman_paren] = STATE(791), - [sym__list_upper_roman_parens] = STATE(115), - [sym__list_item_upper_roman_parens] = STATE(793), - [sym_table] = STATE(114), - [sym__table_row] = STATE(67), - [sym_table_header] = STATE(67), - [sym_table_separator] = STATE(67), - [sym_table_row] = STATE(67), - [sym_footnote] = STATE(114), - [sym_footnote_marker_begin] = STATE(980), - [sym_div] = STATE(114), - [sym__div_marker_begin] = STATE(994), - [sym_code_block] = STATE(114), - [sym_raw_block] = STATE(114), - [sym_thematic_break] = STATE(114), - [sym_block_quote] = STATE(114), + [7] = { + [sym__block_with_section] = STATE(109), + [sym__block_element] = STATE(109), + [sym_section] = STATE(109), + [sym_heading] = STATE(9), + [sym_list] = STATE(109), + [sym__list_dash] = STATE(144), + [sym__list_item_dash] = STATE(553), + [sym__list_plus] = STATE(144), + [sym__list_item_plus] = STATE(554), + [sym__list_star] = STATE(144), + [sym__list_item_star] = STATE(556), + [sym__list_task] = STATE(144), + [sym__list_item_task] = STATE(558), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(144), + [sym__list_item_definition] = STATE(769), + [sym__list_decimal_period] = STATE(144), + [sym__list_item_decimal_period] = STATE(776), + [sym__list_decimal_paren] = STATE(144), + [sym__list_item_decimal_paren] = STATE(790), + [sym__list_decimal_parens] = STATE(144), + [sym__list_item_decimal_parens] = STATE(793), + [sym__list_lower_alpha_period] = STATE(144), + [sym__list_item_lower_alpha_period] = STATE(822), + [sym__list_lower_alpha_paren] = STATE(144), + [sym__list_item_lower_alpha_paren] = STATE(684), + [sym__list_lower_alpha_parens] = STATE(144), + [sym__list_item_lower_alpha_parens] = STATE(688), + [sym__list_upper_alpha_period] = STATE(144), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(144), + [sym__list_item_upper_alpha_paren] = STATE(705), + [sym__list_upper_alpha_parens] = STATE(144), + [sym__list_item_upper_alpha_parens] = STATE(711), + [sym__list_lower_roman_period] = STATE(144), + [sym__list_item_lower_roman_period] = STATE(712), + [sym__list_lower_roman_paren] = STATE(144), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(144), + [sym__list_item_lower_roman_parens] = STATE(728), + [sym__list_upper_roman_period] = STATE(144), + [sym__list_item_upper_roman_period] = STATE(734), + [sym__list_upper_roman_paren] = STATE(144), + [sym__list_item_upper_roman_paren] = STATE(830), + [sym__list_upper_roman_parens] = STATE(144), + [sym__list_item_upper_roman_parens] = STATE(725), + [sym_table] = STATE(109), + [sym__table_row] = STATE(66), + [sym_table_header] = STATE(66), + [sym_table_separator] = STATE(66), + [sym_table_row] = STATE(66), + [sym_footnote] = STATE(109), + [sym_footnote_marker_begin] = STATE(1141), + [sym_div] = STATE(109), + [sym__div_marker_begin] = STATE(1057), + [sym_code_block] = STATE(109), + [sym_raw_block] = STATE(109), + [sym_thematic_break] = STATE(109), + [sym_block_quote] = STATE(109), [sym__block_quote_prefix] = STATE(225), - [sym_link_reference_definition] = STATE(114), - [sym_block_attribute] = STATE(114), - [sym__paragraph] = STATE(114), - [sym__paragraph_content] = STATE(797), - [sym__paragraph_inline_content] = STATE(799), - [sym__inline] = STATE(629), - [sym__symbol_fallback] = STATE(285), - [aux_sym_document_repeat1] = STATE(7), - [aux_sym__list_dash_repeat1] = STATE(366), - [aux_sym__list_plus_repeat1] = STATE(381), - [aux_sym__list_star_repeat1] = STATE(368), - [aux_sym__list_task_repeat1] = STATE(322), - [aux_sym__list_definition_repeat1] = STATE(529), - [aux_sym__list_decimal_period_repeat1] = STATE(531), - [aux_sym__list_decimal_paren_repeat1] = STATE(533), - [aux_sym__list_decimal_parens_repeat1] = STATE(535), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(553), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(555), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(557), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(559), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(561), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(563), - [aux_sym__list_lower_roman_period_repeat1] = STATE(565), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(567), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(569), - [aux_sym__list_upper_roman_period_repeat1] = STATE(572), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(575), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(578), - [aux_sym_table_repeat1] = STATE(67), - [aux_sym__block_quote_prefix_repeat1] = STATE(235), - [aux_sym__inline_repeat1] = STATE(285), - [ts_builtin_sym_end] = ACTIONS(99), - [anon_sym_LBRACK] = ACTIONS(5), + [sym_link_reference_definition] = STATE(109), + [sym_block_attribute] = STATE(109), + [sym__paragraph] = STATE(109), + [sym__paragraph_content] = STATE(750), + [sym__paragraph_inline_content] = STATE(778), + [sym__inline] = STATE(655), + [sym__symbol_fallback] = STATE(273), + [aux_sym_document_repeat1] = STATE(8), + [aux_sym__list_dash_repeat1] = STATE(334), + [aux_sym__list_plus_repeat1] = STATE(335), + [aux_sym__list_star_repeat1] = STATE(336), + [aux_sym__list_task_repeat1] = STATE(309), + [aux_sym__list_definition_repeat1] = STATE(425), + [aux_sym__list_decimal_period_repeat1] = STATE(426), + [aux_sym__list_decimal_paren_repeat1] = STATE(427), + [aux_sym__list_decimal_parens_repeat1] = STATE(428), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(429), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(430), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(431), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(432), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(433), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(434), + [aux_sym__list_lower_roman_period_repeat1] = STATE(435), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(436), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(437), + [aux_sym__list_upper_roman_period_repeat1] = STATE(438), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(439), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(440), + [aux_sym_table_repeat1] = STATE(66), + [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__inline_repeat1] = STATE(273), + [anon_sym_LBRACK] = ACTIONS(181), [anon_sym_LBRACK_CARET] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT] = ACTIONS(11), [aux_sym_identifier_token1] = ACTIONS(11), [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [anon_sym_POUND] = ACTIONS(11), [anon_sym_PERCENT] = ACTIONS(11), - [sym__newline] = ACTIONS(13), + [sym__block_close] = ACTIONS(203), + [sym__newline] = ACTIONS(187), [sym__heading_begin] = ACTIONS(17), [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(21), + [sym__code_block_begin] = ACTIONS(189), [sym_list_marker_dash] = ACTIONS(23), [sym_list_marker_star] = ACTIONS(25), [sym_list_marker_plus] = ACTIONS(27), @@ -5496,276 +5573,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(57), [sym_list_marker_lower_roman_parens] = ACTIONS(59), [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(63), + [sym__block_quote_begin] = ACTIONS(191), [sym__block_quote_continuation] = ACTIONS(65), - [sym__thematic_break_dash] = ACTIONS(67), - [sym__thematic_break_star] = ACTIONS(67), - [sym__table_header_begin] = ACTIONS(69), - [sym__table_separator_begin] = ACTIONS(71), - [sym__table_row_begin] = ACTIONS(73), - }, - [7] = { - [sym__block_with_section] = STATE(114), - [sym__block_element] = STATE(114), - [sym_section] = STATE(114), - [sym_heading] = STATE(4), - [sym_list] = STATE(114), - [sym__list_dash] = STATE(115), - [sym__list_item_dash] = STATE(687), - [sym__list_plus] = STATE(115), - [sym__list_item_plus] = STATE(691), - [sym__list_star] = STATE(115), - [sym__list_item_star] = STATE(673), - [sym__list_task] = STATE(115), - [sym__list_item_task] = STATE(680), - [sym_list_marker_task] = STATE(48), - [sym__list_definition] = STATE(115), - [sym__list_item_definition] = STATE(804), - [sym__list_decimal_period] = STATE(115), - [sym__list_item_decimal_period] = STATE(837), - [sym__list_decimal_paren] = STATE(115), - [sym__list_item_decimal_paren] = STATE(703), - [sym__list_decimal_parens] = STATE(115), - [sym__list_item_decimal_parens] = STATE(715), - [sym__list_lower_alpha_period] = STATE(115), - [sym__list_item_lower_alpha_period] = STATE(739), - [sym__list_lower_alpha_paren] = STATE(115), - [sym__list_item_lower_alpha_paren] = STATE(754), - [sym__list_lower_alpha_parens] = STATE(115), - [sym__list_item_lower_alpha_parens] = STATE(755), - [sym__list_upper_alpha_period] = STATE(115), - [sym__list_item_upper_alpha_period] = STATE(758), - [sym__list_upper_alpha_paren] = STATE(115), - [sym__list_item_upper_alpha_paren] = STATE(759), - [sym__list_upper_alpha_parens] = STATE(115), - [sym__list_item_upper_alpha_parens] = STATE(766), - [sym__list_lower_roman_period] = STATE(115), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(115), - [sym__list_item_lower_roman_paren] = STATE(770), - [sym__list_lower_roman_parens] = STATE(115), - [sym__list_item_lower_roman_parens] = STATE(773), - [sym__list_upper_roman_period] = STATE(115), - [sym__list_item_upper_roman_period] = STATE(775), - [sym__list_upper_roman_paren] = STATE(115), - [sym__list_item_upper_roman_paren] = STATE(791), - [sym__list_upper_roman_parens] = STATE(115), - [sym__list_item_upper_roman_parens] = STATE(793), - [sym_table] = STATE(114), - [sym__table_row] = STATE(67), - [sym_table_header] = STATE(67), - [sym_table_separator] = STATE(67), - [sym_table_row] = STATE(67), - [sym_footnote] = STATE(114), - [sym_footnote_marker_begin] = STATE(980), - [sym_div] = STATE(114), - [sym__div_marker_begin] = STATE(994), - [sym_code_block] = STATE(114), - [sym_raw_block] = STATE(114), - [sym_thematic_break] = STATE(114), - [sym_block_quote] = STATE(114), - [sym__block_quote_prefix] = STATE(225), - [sym_link_reference_definition] = STATE(114), - [sym_block_attribute] = STATE(114), - [sym__paragraph] = STATE(114), - [sym__paragraph_content] = STATE(797), - [sym__paragraph_inline_content] = STATE(799), - [sym__inline] = STATE(629), - [sym__symbol_fallback] = STATE(285), - [aux_sym_document_repeat1] = STATE(7), - [aux_sym__list_dash_repeat1] = STATE(366), - [aux_sym__list_plus_repeat1] = STATE(381), - [aux_sym__list_star_repeat1] = STATE(368), - [aux_sym__list_task_repeat1] = STATE(322), - [aux_sym__list_definition_repeat1] = STATE(529), - [aux_sym__list_decimal_period_repeat1] = STATE(531), - [aux_sym__list_decimal_paren_repeat1] = STATE(533), - [aux_sym__list_decimal_parens_repeat1] = STATE(535), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(553), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(555), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(557), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(559), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(561), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(563), - [aux_sym__list_lower_roman_period_repeat1] = STATE(565), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(567), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(569), - [aux_sym__list_upper_roman_period_repeat1] = STATE(572), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(575), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(578), - [aux_sym_table_repeat1] = STATE(67), - [aux_sym__block_quote_prefix_repeat1] = STATE(235), - [aux_sym__inline_repeat1] = STATE(285), - [ts_builtin_sym_end] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(103), - [anon_sym_LBRACK_CARET] = ACTIONS(106), - [anon_sym_LBRACE] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(112), - [aux_sym_identifier_token1] = ACTIONS(112), - [aux_sym__inline_token1] = ACTIONS(112), - [anon_sym_LBRACE_DASH] = ACTIONS(112), - [anon_sym_POUND] = ACTIONS(112), - [anon_sym_PERCENT] = ACTIONS(112), - [sym__newline] = ACTIONS(115), - [sym__heading_begin] = ACTIONS(118), - [sym__div_begin] = ACTIONS(121), - [sym__code_block_begin] = ACTIONS(124), - [sym_list_marker_dash] = ACTIONS(127), - [sym_list_marker_star] = ACTIONS(130), - [sym_list_marker_plus] = ACTIONS(133), - [sym__list_marker_task_begin] = ACTIONS(136), - [sym_list_marker_definition] = ACTIONS(139), - [sym_list_marker_decimal_period] = ACTIONS(142), - [sym_list_marker_lower_alpha_period] = ACTIONS(145), - [sym_list_marker_upper_alpha_period] = ACTIONS(148), - [sym_list_marker_lower_roman_period] = ACTIONS(151), - [sym_list_marker_upper_roman_period] = ACTIONS(154), - [sym_list_marker_decimal_paren] = ACTIONS(157), - [sym_list_marker_lower_alpha_paren] = ACTIONS(160), - [sym_list_marker_upper_alpha_paren] = ACTIONS(163), - [sym_list_marker_lower_roman_paren] = ACTIONS(166), - [sym_list_marker_upper_roman_paren] = ACTIONS(169), - [sym_list_marker_decimal_parens] = ACTIONS(172), - [sym_list_marker_lower_alpha_parens] = ACTIONS(175), - [sym_list_marker_upper_alpha_parens] = ACTIONS(178), - [sym_list_marker_lower_roman_parens] = ACTIONS(181), - [sym_list_marker_upper_roman_parens] = ACTIONS(184), - [sym__block_quote_begin] = ACTIONS(187), - [sym__block_quote_continuation] = ACTIONS(190), [sym__thematic_break_dash] = ACTIONS(193), [sym__thematic_break_star] = ACTIONS(193), - [sym__table_header_begin] = ACTIONS(196), - [sym__table_separator_begin] = ACTIONS(199), - [sym__table_row_begin] = ACTIONS(202), + [sym__table_header_begin] = ACTIONS(195), + [sym__table_separator_begin] = ACTIONS(197), + [sym__table_row_begin] = ACTIONS(199), }, [8] = { - [sym__block_with_section] = STATE(137), - [sym__block_element] = STATE(137), - [sym_section] = STATE(137), + [sym__block_with_section] = STATE(109), + [sym__block_element] = STATE(109), + [sym_section] = STATE(109), [sym_heading] = STATE(9), - [sym_list] = STATE(137), - [sym__list_dash] = STATE(143), - [sym__list_item_dash] = STATE(687), - [sym__list_plus] = STATE(143), - [sym__list_item_plus] = STATE(691), - [sym__list_star] = STATE(143), - [sym__list_item_star] = STATE(673), - [sym__list_task] = STATE(143), - [sym__list_item_task] = STATE(680), - [sym_list_marker_task] = STATE(48), - [sym__list_definition] = STATE(143), - [sym__list_item_definition] = STATE(804), - [sym__list_decimal_period] = STATE(143), - [sym__list_item_decimal_period] = STATE(837), - [sym__list_decimal_paren] = STATE(143), - [sym__list_item_decimal_paren] = STATE(703), - [sym__list_decimal_parens] = STATE(143), - [sym__list_item_decimal_parens] = STATE(715), - [sym__list_lower_alpha_period] = STATE(143), - [sym__list_item_lower_alpha_period] = STATE(739), - [sym__list_lower_alpha_paren] = STATE(143), - [sym__list_item_lower_alpha_paren] = STATE(754), - [sym__list_lower_alpha_parens] = STATE(143), - [sym__list_item_lower_alpha_parens] = STATE(755), - [sym__list_upper_alpha_period] = STATE(143), - [sym__list_item_upper_alpha_period] = STATE(758), - [sym__list_upper_alpha_paren] = STATE(143), - [sym__list_item_upper_alpha_paren] = STATE(759), - [sym__list_upper_alpha_parens] = STATE(143), - [sym__list_item_upper_alpha_parens] = STATE(766), - [sym__list_lower_roman_period] = STATE(143), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(143), - [sym__list_item_lower_roman_paren] = STATE(770), - [sym__list_lower_roman_parens] = STATE(143), - [sym__list_item_lower_roman_parens] = STATE(773), - [sym__list_upper_roman_period] = STATE(143), - [sym__list_item_upper_roman_period] = STATE(775), - [sym__list_upper_roman_paren] = STATE(143), - [sym__list_item_upper_roman_paren] = STATE(791), - [sym__list_upper_roman_parens] = STATE(143), - [sym__list_item_upper_roman_parens] = STATE(793), - [sym_table] = STATE(137), + [sym_list] = STATE(109), + [sym__list_dash] = STATE(144), + [sym__list_item_dash] = STATE(553), + [sym__list_plus] = STATE(144), + [sym__list_item_plus] = STATE(554), + [sym__list_star] = STATE(144), + [sym__list_item_star] = STATE(556), + [sym__list_task] = STATE(144), + [sym__list_item_task] = STATE(558), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(144), + [sym__list_item_definition] = STATE(769), + [sym__list_decimal_period] = STATE(144), + [sym__list_item_decimal_period] = STATE(776), + [sym__list_decimal_paren] = STATE(144), + [sym__list_item_decimal_paren] = STATE(790), + [sym__list_decimal_parens] = STATE(144), + [sym__list_item_decimal_parens] = STATE(793), + [sym__list_lower_alpha_period] = STATE(144), + [sym__list_item_lower_alpha_period] = STATE(822), + [sym__list_lower_alpha_paren] = STATE(144), + [sym__list_item_lower_alpha_paren] = STATE(684), + [sym__list_lower_alpha_parens] = STATE(144), + [sym__list_item_lower_alpha_parens] = STATE(688), + [sym__list_upper_alpha_period] = STATE(144), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(144), + [sym__list_item_upper_alpha_paren] = STATE(705), + [sym__list_upper_alpha_parens] = STATE(144), + [sym__list_item_upper_alpha_parens] = STATE(711), + [sym__list_lower_roman_period] = STATE(144), + [sym__list_item_lower_roman_period] = STATE(712), + [sym__list_lower_roman_paren] = STATE(144), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(144), + [sym__list_item_lower_roman_parens] = STATE(728), + [sym__list_upper_roman_period] = STATE(144), + [sym__list_item_upper_roman_period] = STATE(734), + [sym__list_upper_roman_paren] = STATE(144), + [sym__list_item_upper_roman_paren] = STATE(830), + [sym__list_upper_roman_parens] = STATE(144), + [sym__list_item_upper_roman_parens] = STATE(725), + [sym_table] = STATE(109), [sym__table_row] = STATE(66), [sym_table_header] = STATE(66), [sym_table_separator] = STATE(66), [sym_table_row] = STATE(66), - [sym_footnote] = STATE(137), - [sym_footnote_marker_begin] = STATE(1145), - [sym_div] = STATE(137), - [sym__div_marker_begin] = STATE(1061), - [sym_code_block] = STATE(137), - [sym_raw_block] = STATE(137), - [sym_thematic_break] = STATE(137), - [sym_block_quote] = STATE(137), - [sym__block_quote_prefix] = STATE(224), - [sym_link_reference_definition] = STATE(137), - [sym_block_attribute] = STATE(137), - [sym__paragraph] = STATE(137), - [sym__paragraph_content] = STATE(800), - [sym__paragraph_inline_content] = STATE(799), - [sym__inline] = STATE(629), - [sym__symbol_fallback] = STATE(285), + [sym_footnote] = STATE(109), + [sym_footnote_marker_begin] = STATE(1141), + [sym_div] = STATE(109), + [sym__div_marker_begin] = STATE(1057), + [sym_code_block] = STATE(109), + [sym_raw_block] = STATE(109), + [sym_thematic_break] = STATE(109), + [sym_block_quote] = STATE(109), + [sym__block_quote_prefix] = STATE(225), + [sym_link_reference_definition] = STATE(109), + [sym_block_attribute] = STATE(109), + [sym__paragraph] = STATE(109), + [sym__paragraph_content] = STATE(750), + [sym__paragraph_inline_content] = STATE(778), + [sym__inline] = STATE(655), + [sym__symbol_fallback] = STATE(273), [aux_sym_document_repeat1] = STATE(8), - [aux_sym__list_dash_repeat1] = STATE(351), - [aux_sym__list_plus_repeat1] = STATE(350), - [aux_sym__list_star_repeat1] = STATE(353), - [aux_sym__list_task_repeat1] = STATE(339), - [aux_sym__list_definition_repeat1] = STATE(512), - [aux_sym__list_decimal_period_repeat1] = STATE(513), - [aux_sym__list_decimal_paren_repeat1] = STATE(514), - [aux_sym__list_decimal_parens_repeat1] = STATE(515), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(516), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(518), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(519), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(520), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(521), - [aux_sym__list_lower_roman_period_repeat1] = STATE(579), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(523), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(524), - [aux_sym__list_upper_roman_period_repeat1] = STATE(525), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(526), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(527), + [aux_sym__list_dash_repeat1] = STATE(334), + [aux_sym__list_plus_repeat1] = STATE(335), + [aux_sym__list_star_repeat1] = STATE(336), + [aux_sym__list_task_repeat1] = STATE(309), + [aux_sym__list_definition_repeat1] = STATE(425), + [aux_sym__list_decimal_period_repeat1] = STATE(426), + [aux_sym__list_decimal_paren_repeat1] = STATE(427), + [aux_sym__list_decimal_parens_repeat1] = STATE(428), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(429), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(430), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(431), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(432), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(433), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(434), + [aux_sym__list_lower_roman_period_repeat1] = STATE(435), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(436), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(437), + [aux_sym__list_upper_roman_period_repeat1] = STATE(438), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(439), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(440), [aux_sym_table_repeat1] = STATE(66), - [aux_sym__block_quote_prefix_repeat1] = STATE(235), - [aux_sym__inline_repeat1] = STATE(285), + [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__inline_repeat1] = STATE(273), [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACK_CARET] = ACTIONS(106), + [anon_sym_LBRACK_CARET] = ACTIONS(82), [anon_sym_LBRACE] = ACTIONS(208), - [anon_sym_DOT] = ACTIONS(112), - [aux_sym_identifier_token1] = ACTIONS(112), - [aux_sym__inline_token1] = ACTIONS(112), - [anon_sym_LBRACE_DASH] = ACTIONS(112), - [anon_sym_POUND] = ACTIONS(112), - [anon_sym_PERCENT] = ACTIONS(112), - [sym__block_close] = ACTIONS(101), + [anon_sym_DOT] = ACTIONS(88), + [aux_sym_identifier_token1] = ACTIONS(88), + [aux_sym__inline_token1] = ACTIONS(88), + [anon_sym_PERCENT] = ACTIONS(88), + [sym__block_close] = ACTIONS(77), [sym__newline] = ACTIONS(211), - [sym__heading_begin] = ACTIONS(118), - [sym__div_begin] = ACTIONS(121), + [sym__heading_begin] = ACTIONS(94), + [sym__div_begin] = ACTIONS(97), [sym__code_block_begin] = ACTIONS(214), - [sym_list_marker_dash] = ACTIONS(127), - [sym_list_marker_star] = ACTIONS(130), - [sym_list_marker_plus] = ACTIONS(133), - [sym__list_marker_task_begin] = ACTIONS(136), - [sym_list_marker_definition] = ACTIONS(139), - [sym_list_marker_decimal_period] = ACTIONS(142), - [sym_list_marker_lower_alpha_period] = ACTIONS(145), - [sym_list_marker_upper_alpha_period] = ACTIONS(148), - [sym_list_marker_lower_roman_period] = ACTIONS(151), - [sym_list_marker_upper_roman_period] = ACTIONS(154), - [sym_list_marker_decimal_paren] = ACTIONS(157), - [sym_list_marker_lower_alpha_paren] = ACTIONS(160), - [sym_list_marker_upper_alpha_paren] = ACTIONS(163), - [sym_list_marker_lower_roman_paren] = ACTIONS(166), - [sym_list_marker_upper_roman_paren] = ACTIONS(169), - [sym_list_marker_decimal_parens] = ACTIONS(172), - [sym_list_marker_lower_alpha_parens] = ACTIONS(175), - [sym_list_marker_upper_alpha_parens] = ACTIONS(178), - [sym_list_marker_lower_roman_parens] = ACTIONS(181), - [sym_list_marker_upper_roman_parens] = ACTIONS(184), + [sym_list_marker_dash] = ACTIONS(103), + [sym_list_marker_star] = ACTIONS(106), + [sym_list_marker_plus] = ACTIONS(109), + [sym__list_marker_task_begin] = ACTIONS(112), + [sym_list_marker_definition] = ACTIONS(115), + [sym_list_marker_decimal_period] = ACTIONS(118), + [sym_list_marker_lower_alpha_period] = ACTIONS(121), + [sym_list_marker_upper_alpha_period] = ACTIONS(124), + [sym_list_marker_lower_roman_period] = ACTIONS(127), + [sym_list_marker_upper_roman_period] = ACTIONS(130), + [sym_list_marker_decimal_paren] = ACTIONS(133), + [sym_list_marker_lower_alpha_paren] = ACTIONS(136), + [sym_list_marker_upper_alpha_paren] = ACTIONS(139), + [sym_list_marker_lower_roman_paren] = ACTIONS(142), + [sym_list_marker_upper_roman_paren] = ACTIONS(145), + [sym_list_marker_decimal_parens] = ACTIONS(148), + [sym_list_marker_lower_alpha_parens] = ACTIONS(151), + [sym_list_marker_upper_alpha_parens] = ACTIONS(154), + [sym_list_marker_lower_roman_parens] = ACTIONS(157), + [sym_list_marker_upper_roman_parens] = ACTIONS(160), [sym__block_quote_begin] = ACTIONS(217), - [sym__block_quote_continuation] = ACTIONS(190), + [sym__block_quote_continuation] = ACTIONS(166), [sym__thematic_break_dash] = ACTIONS(220), [sym__thematic_break_star] = ACTIONS(220), [sym__table_header_begin] = ACTIONS(223), @@ -5773,111 +5714,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__table_row_begin] = ACTIONS(229), }, [9] = { - [sym__block_with_section] = STATE(137), - [sym__block_element] = STATE(137), - [sym_section] = STATE(137), + [sym__block_with_section] = STATE(109), + [sym__block_element] = STATE(109), + [sym_section] = STATE(109), [sym_heading] = STATE(9), - [sym_list] = STATE(137), - [sym__list_dash] = STATE(143), - [sym__list_item_dash] = STATE(687), - [sym__list_plus] = STATE(143), - [sym__list_item_plus] = STATE(691), - [sym__list_star] = STATE(143), - [sym__list_item_star] = STATE(673), - [sym__list_task] = STATE(143), - [sym__list_item_task] = STATE(680), - [sym_list_marker_task] = STATE(48), - [sym__list_definition] = STATE(143), - [sym__list_item_definition] = STATE(804), - [sym__list_decimal_period] = STATE(143), - [sym__list_item_decimal_period] = STATE(837), - [sym__list_decimal_paren] = STATE(143), - [sym__list_item_decimal_paren] = STATE(703), - [sym__list_decimal_parens] = STATE(143), - [sym__list_item_decimal_parens] = STATE(715), - [sym__list_lower_alpha_period] = STATE(143), - [sym__list_item_lower_alpha_period] = STATE(739), - [sym__list_lower_alpha_paren] = STATE(143), - [sym__list_item_lower_alpha_paren] = STATE(754), - [sym__list_lower_alpha_parens] = STATE(143), - [sym__list_item_lower_alpha_parens] = STATE(755), - [sym__list_upper_alpha_period] = STATE(143), - [sym__list_item_upper_alpha_period] = STATE(758), - [sym__list_upper_alpha_paren] = STATE(143), - [sym__list_item_upper_alpha_paren] = STATE(759), - [sym__list_upper_alpha_parens] = STATE(143), - [sym__list_item_upper_alpha_parens] = STATE(766), - [sym__list_lower_roman_period] = STATE(143), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(143), - [sym__list_item_lower_roman_paren] = STATE(770), - [sym__list_lower_roman_parens] = STATE(143), - [sym__list_item_lower_roman_parens] = STATE(773), - [sym__list_upper_roman_period] = STATE(143), - [sym__list_item_upper_roman_period] = STATE(775), - [sym__list_upper_roman_paren] = STATE(143), - [sym__list_item_upper_roman_paren] = STATE(791), - [sym__list_upper_roman_parens] = STATE(143), - [sym__list_item_upper_roman_parens] = STATE(793), - [sym_table] = STATE(137), + [sym_list] = STATE(109), + [sym__list_dash] = STATE(144), + [sym__list_item_dash] = STATE(553), + [sym__list_plus] = STATE(144), + [sym__list_item_plus] = STATE(554), + [sym__list_star] = STATE(144), + [sym__list_item_star] = STATE(556), + [sym__list_task] = STATE(144), + [sym__list_item_task] = STATE(558), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(144), + [sym__list_item_definition] = STATE(769), + [sym__list_decimal_period] = STATE(144), + [sym__list_item_decimal_period] = STATE(776), + [sym__list_decimal_paren] = STATE(144), + [sym__list_item_decimal_paren] = STATE(790), + [sym__list_decimal_parens] = STATE(144), + [sym__list_item_decimal_parens] = STATE(793), + [sym__list_lower_alpha_period] = STATE(144), + [sym__list_item_lower_alpha_period] = STATE(822), + [sym__list_lower_alpha_paren] = STATE(144), + [sym__list_item_lower_alpha_paren] = STATE(684), + [sym__list_lower_alpha_parens] = STATE(144), + [sym__list_item_lower_alpha_parens] = STATE(688), + [sym__list_upper_alpha_period] = STATE(144), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(144), + [sym__list_item_upper_alpha_paren] = STATE(705), + [sym__list_upper_alpha_parens] = STATE(144), + [sym__list_item_upper_alpha_parens] = STATE(711), + [sym__list_lower_roman_period] = STATE(144), + [sym__list_item_lower_roman_period] = STATE(712), + [sym__list_lower_roman_paren] = STATE(144), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(144), + [sym__list_item_lower_roman_parens] = STATE(728), + [sym__list_upper_roman_period] = STATE(144), + [sym__list_item_upper_roman_period] = STATE(734), + [sym__list_upper_roman_paren] = STATE(144), + [sym__list_item_upper_roman_paren] = STATE(830), + [sym__list_upper_roman_parens] = STATE(144), + [sym__list_item_upper_roman_parens] = STATE(725), + [sym_table] = STATE(109), [sym__table_row] = STATE(66), [sym_table_header] = STATE(66), [sym_table_separator] = STATE(66), [sym_table_row] = STATE(66), - [sym_footnote] = STATE(137), - [sym_footnote_marker_begin] = STATE(1145), - [sym_div] = STATE(137), - [sym__div_marker_begin] = STATE(1061), - [sym_code_block] = STATE(137), - [sym_raw_block] = STATE(137), - [sym_thematic_break] = STATE(137), - [sym_block_quote] = STATE(137), - [sym__block_quote_prefix] = STATE(224), - [sym_link_reference_definition] = STATE(137), - [sym_block_attribute] = STATE(137), - [sym__paragraph] = STATE(137), - [sym__paragraph_content] = STATE(800), - [sym__paragraph_inline_content] = STATE(799), - [sym__inline] = STATE(629), - [sym__symbol_fallback] = STATE(285), + [sym_footnote] = STATE(109), + [sym_footnote_marker_begin] = STATE(1141), + [sym_div] = STATE(109), + [sym__div_marker_begin] = STATE(1057), + [sym_code_block] = STATE(109), + [sym_raw_block] = STATE(109), + [sym_thematic_break] = STATE(109), + [sym_block_quote] = STATE(109), + [sym__block_quote_prefix] = STATE(225), + [sym_link_reference_definition] = STATE(109), + [sym_block_attribute] = STATE(109), + [sym__paragraph] = STATE(109), + [sym__paragraph_content] = STATE(750), + [sym__paragraph_inline_content] = STATE(778), + [sym__inline] = STATE(655), + [sym__symbol_fallback] = STATE(273), [aux_sym_document_repeat1] = STATE(10), - [aux_sym__list_dash_repeat1] = STATE(351), - [aux_sym__list_plus_repeat1] = STATE(350), - [aux_sym__list_star_repeat1] = STATE(353), - [aux_sym__list_task_repeat1] = STATE(339), - [aux_sym__list_definition_repeat1] = STATE(512), - [aux_sym__list_decimal_period_repeat1] = STATE(513), - [aux_sym__list_decimal_paren_repeat1] = STATE(514), - [aux_sym__list_decimal_parens_repeat1] = STATE(515), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(516), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(518), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(519), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(520), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(521), - [aux_sym__list_lower_roman_period_repeat1] = STATE(579), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(523), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(524), - [aux_sym__list_upper_roman_period_repeat1] = STATE(525), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(526), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(527), + [aux_sym__list_dash_repeat1] = STATE(334), + [aux_sym__list_plus_repeat1] = STATE(335), + [aux_sym__list_star_repeat1] = STATE(336), + [aux_sym__list_task_repeat1] = STATE(309), + [aux_sym__list_definition_repeat1] = STATE(425), + [aux_sym__list_decimal_period_repeat1] = STATE(426), + [aux_sym__list_decimal_paren_repeat1] = STATE(427), + [aux_sym__list_decimal_parens_repeat1] = STATE(428), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(429), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(430), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(431), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(432), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(433), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(434), + [aux_sym__list_lower_roman_period_repeat1] = STATE(435), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(436), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(437), + [aux_sym__list_upper_roman_period_repeat1] = STATE(438), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(439), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(440), [aux_sym_table_repeat1] = STATE(66), - [aux_sym__block_quote_prefix_repeat1] = STATE(235), - [aux_sym__inline_repeat1] = STATE(285), - [anon_sym_LBRACK] = ACTIONS(77), + [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__inline_repeat1] = STATE(273), + [anon_sym_LBRACK] = ACTIONS(181), [anon_sym_LBRACK_CARET] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT] = ACTIONS(11), [aux_sym_identifier_token1] = ACTIONS(11), [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [anon_sym_POUND] = ACTIONS(11), [anon_sym_PERCENT] = ACTIONS(11), [sym__block_close] = ACTIONS(232), - [sym__newline] = ACTIONS(83), + [sym__newline] = ACTIONS(187), [sym__heading_begin] = ACTIONS(17), [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(85), + [sym__code_block_begin] = ACTIONS(189), [sym_list_marker_dash] = ACTIONS(23), [sym_list_marker_star] = ACTIONS(25), [sym_list_marker_plus] = ACTIONS(27), @@ -5898,120 +5837,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(57), [sym_list_marker_lower_roman_parens] = ACTIONS(59), [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(87), + [sym__block_quote_begin] = ACTIONS(191), [sym__block_quote_continuation] = ACTIONS(65), - [sym__thematic_break_dash] = ACTIONS(89), - [sym__thematic_break_star] = ACTIONS(89), - [sym__table_header_begin] = ACTIONS(91), - [sym__table_separator_begin] = ACTIONS(93), - [sym__table_row_begin] = ACTIONS(95), + [sym__thematic_break_dash] = ACTIONS(193), + [sym__thematic_break_star] = ACTIONS(193), + [sym__table_header_begin] = ACTIONS(195), + [sym__table_separator_begin] = ACTIONS(197), + [sym__table_row_begin] = ACTIONS(199), }, [10] = { - [sym__block_with_section] = STATE(137), - [sym__block_element] = STATE(137), - [sym_section] = STATE(137), + [sym__block_with_section] = STATE(109), + [sym__block_element] = STATE(109), + [sym_section] = STATE(109), [sym_heading] = STATE(9), - [sym_list] = STATE(137), - [sym__list_dash] = STATE(143), - [sym__list_item_dash] = STATE(687), - [sym__list_plus] = STATE(143), - [sym__list_item_plus] = STATE(691), - [sym__list_star] = STATE(143), - [sym__list_item_star] = STATE(673), - [sym__list_task] = STATE(143), - [sym__list_item_task] = STATE(680), - [sym_list_marker_task] = STATE(48), - [sym__list_definition] = STATE(143), - [sym__list_item_definition] = STATE(804), - [sym__list_decimal_period] = STATE(143), - [sym__list_item_decimal_period] = STATE(837), - [sym__list_decimal_paren] = STATE(143), - [sym__list_item_decimal_paren] = STATE(703), - [sym__list_decimal_parens] = STATE(143), - [sym__list_item_decimal_parens] = STATE(715), - [sym__list_lower_alpha_period] = STATE(143), - [sym__list_item_lower_alpha_period] = STATE(739), - [sym__list_lower_alpha_paren] = STATE(143), - [sym__list_item_lower_alpha_paren] = STATE(754), - [sym__list_lower_alpha_parens] = STATE(143), - [sym__list_item_lower_alpha_parens] = STATE(755), - [sym__list_upper_alpha_period] = STATE(143), - [sym__list_item_upper_alpha_period] = STATE(758), - [sym__list_upper_alpha_paren] = STATE(143), - [sym__list_item_upper_alpha_paren] = STATE(759), - [sym__list_upper_alpha_parens] = STATE(143), - [sym__list_item_upper_alpha_parens] = STATE(766), - [sym__list_lower_roman_period] = STATE(143), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(143), - [sym__list_item_lower_roman_paren] = STATE(770), - [sym__list_lower_roman_parens] = STATE(143), - [sym__list_item_lower_roman_parens] = STATE(773), - [sym__list_upper_roman_period] = STATE(143), - [sym__list_item_upper_roman_period] = STATE(775), - [sym__list_upper_roman_paren] = STATE(143), - [sym__list_item_upper_roman_paren] = STATE(791), - [sym__list_upper_roman_parens] = STATE(143), - [sym__list_item_upper_roman_parens] = STATE(793), - [sym_table] = STATE(137), + [sym_list] = STATE(109), + [sym__list_dash] = STATE(144), + [sym__list_item_dash] = STATE(553), + [sym__list_plus] = STATE(144), + [sym__list_item_plus] = STATE(554), + [sym__list_star] = STATE(144), + [sym__list_item_star] = STATE(556), + [sym__list_task] = STATE(144), + [sym__list_item_task] = STATE(558), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(144), + [sym__list_item_definition] = STATE(769), + [sym__list_decimal_period] = STATE(144), + [sym__list_item_decimal_period] = STATE(776), + [sym__list_decimal_paren] = STATE(144), + [sym__list_item_decimal_paren] = STATE(790), + [sym__list_decimal_parens] = STATE(144), + [sym__list_item_decimal_parens] = STATE(793), + [sym__list_lower_alpha_period] = STATE(144), + [sym__list_item_lower_alpha_period] = STATE(822), + [sym__list_lower_alpha_paren] = STATE(144), + [sym__list_item_lower_alpha_paren] = STATE(684), + [sym__list_lower_alpha_parens] = STATE(144), + [sym__list_item_lower_alpha_parens] = STATE(688), + [sym__list_upper_alpha_period] = STATE(144), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(144), + [sym__list_item_upper_alpha_paren] = STATE(705), + [sym__list_upper_alpha_parens] = STATE(144), + [sym__list_item_upper_alpha_parens] = STATE(711), + [sym__list_lower_roman_period] = STATE(144), + [sym__list_item_lower_roman_period] = STATE(712), + [sym__list_lower_roman_paren] = STATE(144), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(144), + [sym__list_item_lower_roman_parens] = STATE(728), + [sym__list_upper_roman_period] = STATE(144), + [sym__list_item_upper_roman_period] = STATE(734), + [sym__list_upper_roman_paren] = STATE(144), + [sym__list_item_upper_roman_paren] = STATE(830), + [sym__list_upper_roman_parens] = STATE(144), + [sym__list_item_upper_roman_parens] = STATE(725), + [sym_table] = STATE(109), [sym__table_row] = STATE(66), [sym_table_header] = STATE(66), [sym_table_separator] = STATE(66), [sym_table_row] = STATE(66), - [sym_footnote] = STATE(137), - [sym_footnote_marker_begin] = STATE(1145), - [sym_div] = STATE(137), - [sym__div_marker_begin] = STATE(1061), - [sym_code_block] = STATE(137), - [sym_raw_block] = STATE(137), - [sym_thematic_break] = STATE(137), - [sym_block_quote] = STATE(137), - [sym__block_quote_prefix] = STATE(224), - [sym_link_reference_definition] = STATE(137), - [sym_block_attribute] = STATE(137), - [sym__paragraph] = STATE(137), - [sym__paragraph_content] = STATE(800), - [sym__paragraph_inline_content] = STATE(799), - [sym__inline] = STATE(629), - [sym__symbol_fallback] = STATE(285), + [sym_footnote] = STATE(109), + [sym_footnote_marker_begin] = STATE(1141), + [sym_div] = STATE(109), + [sym__div_marker_begin] = STATE(1057), + [sym_code_block] = STATE(109), + [sym_raw_block] = STATE(109), + [sym_thematic_break] = STATE(109), + [sym_block_quote] = STATE(109), + [sym__block_quote_prefix] = STATE(225), + [sym_link_reference_definition] = STATE(109), + [sym_block_attribute] = STATE(109), + [sym__paragraph] = STATE(109), + [sym__paragraph_content] = STATE(750), + [sym__paragraph_inline_content] = STATE(778), + [sym__inline] = STATE(655), + [sym__symbol_fallback] = STATE(273), [aux_sym_document_repeat1] = STATE(8), - [aux_sym__list_dash_repeat1] = STATE(351), - [aux_sym__list_plus_repeat1] = STATE(350), - [aux_sym__list_star_repeat1] = STATE(353), - [aux_sym__list_task_repeat1] = STATE(339), - [aux_sym__list_definition_repeat1] = STATE(512), - [aux_sym__list_decimal_period_repeat1] = STATE(513), - [aux_sym__list_decimal_paren_repeat1] = STATE(514), - [aux_sym__list_decimal_parens_repeat1] = STATE(515), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(516), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(518), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(519), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(520), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(521), - [aux_sym__list_lower_roman_period_repeat1] = STATE(579), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(523), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(524), - [aux_sym__list_upper_roman_period_repeat1] = STATE(525), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(526), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(527), + [aux_sym__list_dash_repeat1] = STATE(334), + [aux_sym__list_plus_repeat1] = STATE(335), + [aux_sym__list_star_repeat1] = STATE(336), + [aux_sym__list_task_repeat1] = STATE(309), + [aux_sym__list_definition_repeat1] = STATE(425), + [aux_sym__list_decimal_period_repeat1] = STATE(426), + [aux_sym__list_decimal_paren_repeat1] = STATE(427), + [aux_sym__list_decimal_parens_repeat1] = STATE(428), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(429), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(430), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(431), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(432), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(433), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(434), + [aux_sym__list_lower_roman_period_repeat1] = STATE(435), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(436), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(437), + [aux_sym__list_upper_roman_period_repeat1] = STATE(438), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(439), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(440), [aux_sym_table_repeat1] = STATE(66), - [aux_sym__block_quote_prefix_repeat1] = STATE(235), - [aux_sym__inline_repeat1] = STATE(285), - [anon_sym_LBRACK] = ACTIONS(77), + [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__inline_repeat1] = STATE(273), + [anon_sym_LBRACK] = ACTIONS(181), [anon_sym_LBRACK_CARET] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT] = ACTIONS(11), [aux_sym_identifier_token1] = ACTIONS(11), [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [anon_sym_POUND] = ACTIONS(11), [anon_sym_PERCENT] = ACTIONS(11), [sym__block_close] = ACTIONS(234), - [sym__newline] = ACTIONS(83), + [sym__newline] = ACTIONS(187), [sym__heading_begin] = ACTIONS(17), [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(85), + [sym__code_block_begin] = ACTIONS(189), [sym_list_marker_dash] = ACTIONS(23), [sym_list_marker_star] = ACTIONS(25), [sym_list_marker_plus] = ACTIONS(27), @@ -6032,119 +5969,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(57), [sym_list_marker_lower_roman_parens] = ACTIONS(59), [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(87), + [sym__block_quote_begin] = ACTIONS(191), [sym__block_quote_continuation] = ACTIONS(65), - [sym__thematic_break_dash] = ACTIONS(89), - [sym__thematic_break_star] = ACTIONS(89), - [sym__table_header_begin] = ACTIONS(91), - [sym__table_separator_begin] = ACTIONS(93), - [sym__table_row_begin] = ACTIONS(95), - }, + [sym__thematic_break_dash] = ACTIONS(193), + [sym__thematic_break_star] = ACTIONS(193), + [sym__table_header_begin] = ACTIONS(195), + [sym__table_separator_begin] = ACTIONS(197), + [sym__table_row_begin] = ACTIONS(199), + }, [11] = { - [sym__block_with_heading] = STATE(206), - [sym__block_element] = STATE(206), - [sym_heading] = STATE(206), - [sym_list] = STATE(206), - [sym__list_dash] = STATE(143), - [sym__list_item_dash] = STATE(687), - [sym__list_plus] = STATE(143), - [sym__list_item_plus] = STATE(691), - [sym__list_star] = STATE(143), - [sym__list_item_star] = STATE(673), - [sym__list_task] = STATE(143), - [sym__list_item_task] = STATE(680), - [sym_list_marker_task] = STATE(48), - [sym__list_definition] = STATE(143), - [sym__list_item_definition] = STATE(804), - [sym__list_decimal_period] = STATE(143), - [sym__list_item_decimal_period] = STATE(837), - [sym__list_decimal_paren] = STATE(143), - [sym__list_item_decimal_paren] = STATE(703), - [sym__list_decimal_parens] = STATE(143), - [sym__list_item_decimal_parens] = STATE(715), - [sym__list_lower_alpha_period] = STATE(143), - [sym__list_item_lower_alpha_period] = STATE(739), - [sym__list_lower_alpha_paren] = STATE(143), - [sym__list_item_lower_alpha_paren] = STATE(754), - [sym__list_lower_alpha_parens] = STATE(143), - [sym__list_item_lower_alpha_parens] = STATE(755), - [sym__list_upper_alpha_period] = STATE(143), - [sym__list_item_upper_alpha_period] = STATE(758), - [sym__list_upper_alpha_paren] = STATE(143), - [sym__list_item_upper_alpha_paren] = STATE(759), - [sym__list_upper_alpha_parens] = STATE(143), - [sym__list_item_upper_alpha_parens] = STATE(766), - [sym__list_lower_roman_period] = STATE(143), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(143), - [sym__list_item_lower_roman_paren] = STATE(770), - [sym__list_lower_roman_parens] = STATE(143), - [sym__list_item_lower_roman_parens] = STATE(773), - [sym__list_upper_roman_period] = STATE(143), - [sym__list_item_upper_roman_period] = STATE(775), - [sym__list_upper_roman_paren] = STATE(143), - [sym__list_item_upper_roman_paren] = STATE(791), - [sym__list_upper_roman_parens] = STATE(143), - [sym__list_item_upper_roman_parens] = STATE(793), - [sym_table] = STATE(206), + [sym__block_with_heading] = STATE(183), + [sym__block_element] = STATE(183), + [sym_heading] = STATE(183), + [sym_list] = STATE(183), + [sym__list_dash] = STATE(144), + [sym__list_item_dash] = STATE(553), + [sym__list_plus] = STATE(144), + [sym__list_item_plus] = STATE(554), + [sym__list_star] = STATE(144), + [sym__list_item_star] = STATE(556), + [sym__list_task] = STATE(144), + [sym__list_item_task] = STATE(558), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(144), + [sym__list_item_definition] = STATE(769), + [sym__list_decimal_period] = STATE(144), + [sym__list_item_decimal_period] = STATE(776), + [sym__list_decimal_paren] = STATE(144), + [sym__list_item_decimal_paren] = STATE(790), + [sym__list_decimal_parens] = STATE(144), + [sym__list_item_decimal_parens] = STATE(793), + [sym__list_lower_alpha_period] = STATE(144), + [sym__list_item_lower_alpha_period] = STATE(822), + [sym__list_lower_alpha_paren] = STATE(144), + [sym__list_item_lower_alpha_paren] = STATE(684), + [sym__list_lower_alpha_parens] = STATE(144), + [sym__list_item_lower_alpha_parens] = STATE(688), + [sym__list_upper_alpha_period] = STATE(144), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(144), + [sym__list_item_upper_alpha_paren] = STATE(705), + [sym__list_upper_alpha_parens] = STATE(144), + [sym__list_item_upper_alpha_parens] = STATE(711), + [sym__list_lower_roman_period] = STATE(144), + [sym__list_item_lower_roman_period] = STATE(712), + [sym__list_lower_roman_paren] = STATE(144), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(144), + [sym__list_item_lower_roman_parens] = STATE(728), + [sym__list_upper_roman_period] = STATE(144), + [sym__list_item_upper_roman_period] = STATE(734), + [sym__list_upper_roman_paren] = STATE(144), + [sym__list_item_upper_roman_paren] = STATE(830), + [sym__list_upper_roman_parens] = STATE(144), + [sym__list_item_upper_roman_parens] = STATE(725), + [sym_table] = STATE(183), [sym__table_row] = STATE(66), [sym_table_header] = STATE(66), [sym_table_separator] = STATE(66), [sym_table_row] = STATE(66), - [sym_footnote] = STATE(206), - [sym_footnote_marker_begin] = STATE(1145), - [sym_div] = STATE(206), - [sym__div_marker_begin] = STATE(1061), - [sym_code_block] = STATE(206), - [sym_raw_block] = STATE(206), - [sym_thematic_break] = STATE(206), - [sym_block_quote] = STATE(206), + [sym_footnote] = STATE(183), + [sym_footnote_marker_begin] = STATE(1141), + [sym_div] = STATE(183), + [sym__div_marker_begin] = STATE(1057), + [sym_code_block] = STATE(183), + [sym_raw_block] = STATE(183), + [sym_thematic_break] = STATE(183), + [sym_block_quote] = STATE(183), [sym__block_quote_prefix] = STATE(216), - [sym_link_reference_definition] = STATE(206), - [sym_block_attribute] = STATE(206), - [sym__paragraph] = STATE(206), - [sym__paragraph_content] = STATE(800), - [sym__paragraph_inline_content] = STATE(799), - [sym__inline] = STATE(629), - [sym__symbol_fallback] = STATE(285), - [aux_sym__list_dash_repeat1] = STATE(351), - [aux_sym__list_plus_repeat1] = STATE(350), - [aux_sym__list_star_repeat1] = STATE(353), - [aux_sym__list_task_repeat1] = STATE(339), - [aux_sym__list_definition_repeat1] = STATE(512), - [aux_sym__list_decimal_period_repeat1] = STATE(513), - [aux_sym__list_decimal_paren_repeat1] = STATE(514), - [aux_sym__list_decimal_parens_repeat1] = STATE(515), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(516), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(518), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(519), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(520), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(521), - [aux_sym__list_lower_roman_period_repeat1] = STATE(579), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(523), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(524), - [aux_sym__list_upper_roman_period_repeat1] = STATE(525), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(526), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(527), + [sym_link_reference_definition] = STATE(183), + [sym_block_attribute] = STATE(183), + [sym__paragraph] = STATE(183), + [sym__paragraph_content] = STATE(750), + [sym__paragraph_inline_content] = STATE(778), + [sym__inline] = STATE(655), + [sym__symbol_fallback] = STATE(273), + [aux_sym__list_dash_repeat1] = STATE(334), + [aux_sym__list_plus_repeat1] = STATE(335), + [aux_sym__list_star_repeat1] = STATE(336), + [aux_sym__list_task_repeat1] = STATE(309), + [aux_sym__list_definition_repeat1] = STATE(425), + [aux_sym__list_decimal_period_repeat1] = STATE(426), + [aux_sym__list_decimal_paren_repeat1] = STATE(427), + [aux_sym__list_decimal_parens_repeat1] = STATE(428), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(429), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(430), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(431), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(432), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(433), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(434), + [aux_sym__list_lower_roman_period_repeat1] = STATE(435), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(436), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(437), + [aux_sym__list_upper_roman_period_repeat1] = STATE(438), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(439), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(440), [aux_sym_table_repeat1] = STATE(66), - [aux_sym_div_repeat1] = STATE(14), - [aux_sym__block_quote_prefix_repeat1] = STATE(232), - [aux_sym__inline_repeat1] = STATE(285), - [anon_sym_LBRACK] = ACTIONS(77), + [aux_sym_div_repeat1] = STATE(13), + [aux_sym__block_quote_prefix_repeat1] = STATE(231), + [aux_sym__inline_repeat1] = STATE(273), + [anon_sym_LBRACK] = ACTIONS(181), [anon_sym_LBRACK_CARET] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT] = ACTIONS(11), [aux_sym_identifier_token1] = ACTIONS(11), [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [anon_sym_POUND] = ACTIONS(11), [anon_sym_PERCENT] = ACTIONS(11), [sym__block_close] = ACTIONS(236), [sym__newline] = ACTIONS(238), [sym__heading_begin] = ACTIONS(17), [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(85), + [sym__code_block_begin] = ACTIONS(189), [sym_list_marker_dash] = ACTIONS(23), [sym_list_marker_star] = ACTIONS(25), [sym_list_marker_plus] = ACTIONS(27), @@ -6165,119 +6100,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(57), [sym_list_marker_lower_roman_parens] = ACTIONS(59), [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(87), + [sym__block_quote_begin] = ACTIONS(191), [sym__block_quote_continuation] = ACTIONS(240), - [sym__thematic_break_dash] = ACTIONS(89), - [sym__thematic_break_star] = ACTIONS(89), - [sym__table_header_begin] = ACTIONS(91), - [sym__table_separator_begin] = ACTIONS(93), - [sym__table_row_begin] = ACTIONS(95), + [sym__thematic_break_dash] = ACTIONS(193), + [sym__thematic_break_star] = ACTIONS(193), + [sym__table_header_begin] = ACTIONS(195), + [sym__table_separator_begin] = ACTIONS(197), + [sym__table_row_begin] = ACTIONS(199), }, [12] = { - [sym__block_with_heading] = STATE(206), - [sym__block_element] = STATE(206), - [sym_heading] = STATE(206), - [sym_list] = STATE(206), - [sym__list_dash] = STATE(143), - [sym__list_item_dash] = STATE(687), - [sym__list_plus] = STATE(143), - [sym__list_item_plus] = STATE(691), - [sym__list_star] = STATE(143), - [sym__list_item_star] = STATE(673), - [sym__list_task] = STATE(143), - [sym__list_item_task] = STATE(680), - [sym_list_marker_task] = STATE(48), - [sym__list_definition] = STATE(143), - [sym__list_item_definition] = STATE(804), - [sym__list_decimal_period] = STATE(143), - [sym__list_item_decimal_period] = STATE(837), - [sym__list_decimal_paren] = STATE(143), - [sym__list_item_decimal_paren] = STATE(703), - [sym__list_decimal_parens] = STATE(143), - [sym__list_item_decimal_parens] = STATE(715), - [sym__list_lower_alpha_period] = STATE(143), - [sym__list_item_lower_alpha_period] = STATE(739), - [sym__list_lower_alpha_paren] = STATE(143), - [sym__list_item_lower_alpha_paren] = STATE(754), - [sym__list_lower_alpha_parens] = STATE(143), - [sym__list_item_lower_alpha_parens] = STATE(755), - [sym__list_upper_alpha_period] = STATE(143), - [sym__list_item_upper_alpha_period] = STATE(758), - [sym__list_upper_alpha_paren] = STATE(143), - [sym__list_item_upper_alpha_paren] = STATE(759), - [sym__list_upper_alpha_parens] = STATE(143), - [sym__list_item_upper_alpha_parens] = STATE(766), - [sym__list_lower_roman_period] = STATE(143), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(143), - [sym__list_item_lower_roman_paren] = STATE(770), - [sym__list_lower_roman_parens] = STATE(143), - [sym__list_item_lower_roman_parens] = STATE(773), - [sym__list_upper_roman_period] = STATE(143), - [sym__list_item_upper_roman_period] = STATE(775), - [sym__list_upper_roman_paren] = STATE(143), - [sym__list_item_upper_roman_paren] = STATE(791), - [sym__list_upper_roman_parens] = STATE(143), - [sym__list_item_upper_roman_parens] = STATE(793), - [sym_table] = STATE(206), + [sym__block_with_heading] = STATE(183), + [sym__block_element] = STATE(183), + [sym_heading] = STATE(183), + [sym_list] = STATE(183), + [sym__list_dash] = STATE(144), + [sym__list_item_dash] = STATE(553), + [sym__list_plus] = STATE(144), + [sym__list_item_plus] = STATE(554), + [sym__list_star] = STATE(144), + [sym__list_item_star] = STATE(556), + [sym__list_task] = STATE(144), + [sym__list_item_task] = STATE(558), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(144), + [sym__list_item_definition] = STATE(769), + [sym__list_decimal_period] = STATE(144), + [sym__list_item_decimal_period] = STATE(776), + [sym__list_decimal_paren] = STATE(144), + [sym__list_item_decimal_paren] = STATE(790), + [sym__list_decimal_parens] = STATE(144), + [sym__list_item_decimal_parens] = STATE(793), + [sym__list_lower_alpha_period] = STATE(144), + [sym__list_item_lower_alpha_period] = STATE(822), + [sym__list_lower_alpha_paren] = STATE(144), + [sym__list_item_lower_alpha_paren] = STATE(684), + [sym__list_lower_alpha_parens] = STATE(144), + [sym__list_item_lower_alpha_parens] = STATE(688), + [sym__list_upper_alpha_period] = STATE(144), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(144), + [sym__list_item_upper_alpha_paren] = STATE(705), + [sym__list_upper_alpha_parens] = STATE(144), + [sym__list_item_upper_alpha_parens] = STATE(711), + [sym__list_lower_roman_period] = STATE(144), + [sym__list_item_lower_roman_period] = STATE(712), + [sym__list_lower_roman_paren] = STATE(144), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(144), + [sym__list_item_lower_roman_parens] = STATE(728), + [sym__list_upper_roman_period] = STATE(144), + [sym__list_item_upper_roman_period] = STATE(734), + [sym__list_upper_roman_paren] = STATE(144), + [sym__list_item_upper_roman_paren] = STATE(830), + [sym__list_upper_roman_parens] = STATE(144), + [sym__list_item_upper_roman_parens] = STATE(725), + [sym_table] = STATE(183), [sym__table_row] = STATE(66), [sym_table_header] = STATE(66), [sym_table_separator] = STATE(66), [sym_table_row] = STATE(66), - [sym_footnote] = STATE(206), - [sym_footnote_marker_begin] = STATE(1145), - [sym_div] = STATE(206), - [sym__div_marker_begin] = STATE(1061), - [sym_code_block] = STATE(206), - [sym_raw_block] = STATE(206), - [sym_thematic_break] = STATE(206), - [sym_block_quote] = STATE(206), - [sym__block_quote_prefix] = STATE(214), - [sym_link_reference_definition] = STATE(206), - [sym_block_attribute] = STATE(206), - [sym__paragraph] = STATE(206), - [sym__paragraph_content] = STATE(800), - [sym__paragraph_inline_content] = STATE(799), - [sym__inline] = STATE(629), - [sym__symbol_fallback] = STATE(285), - [aux_sym__list_dash_repeat1] = STATE(351), - [aux_sym__list_plus_repeat1] = STATE(350), - [aux_sym__list_star_repeat1] = STATE(353), - [aux_sym__list_task_repeat1] = STATE(339), - [aux_sym__list_definition_repeat1] = STATE(512), - [aux_sym__list_decimal_period_repeat1] = STATE(513), - [aux_sym__list_decimal_paren_repeat1] = STATE(514), - [aux_sym__list_decimal_parens_repeat1] = STATE(515), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(516), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(518), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(519), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(520), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(521), - [aux_sym__list_lower_roman_period_repeat1] = STATE(579), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(523), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(524), - [aux_sym__list_upper_roman_period_repeat1] = STATE(525), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(526), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(527), + [sym_footnote] = STATE(183), + [sym_footnote_marker_begin] = STATE(1141), + [sym_div] = STATE(183), + [sym__div_marker_begin] = STATE(1057), + [sym_code_block] = STATE(183), + [sym_raw_block] = STATE(183), + [sym_thematic_break] = STATE(183), + [sym_block_quote] = STATE(183), + [sym__block_quote_prefix] = STATE(219), + [sym_link_reference_definition] = STATE(183), + [sym_block_attribute] = STATE(183), + [sym__paragraph] = STATE(183), + [sym__paragraph_content] = STATE(750), + [sym__paragraph_inline_content] = STATE(778), + [sym__inline] = STATE(655), + [sym__symbol_fallback] = STATE(273), + [aux_sym__list_dash_repeat1] = STATE(334), + [aux_sym__list_plus_repeat1] = STATE(335), + [aux_sym__list_star_repeat1] = STATE(336), + [aux_sym__list_task_repeat1] = STATE(309), + [aux_sym__list_definition_repeat1] = STATE(425), + [aux_sym__list_decimal_period_repeat1] = STATE(426), + [aux_sym__list_decimal_paren_repeat1] = STATE(427), + [aux_sym__list_decimal_parens_repeat1] = STATE(428), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(429), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(430), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(431), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(432), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(433), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(434), + [aux_sym__list_lower_roman_period_repeat1] = STATE(435), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(436), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(437), + [aux_sym__list_upper_roman_period_repeat1] = STATE(438), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(439), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(440), [aux_sym_table_repeat1] = STATE(66), - [aux_sym_div_repeat1] = STATE(13), - [aux_sym__block_quote_prefix_repeat1] = STATE(232), - [aux_sym__inline_repeat1] = STATE(285), - [anon_sym_LBRACK] = ACTIONS(77), + [aux_sym_div_repeat1] = STATE(14), + [aux_sym__block_quote_prefix_repeat1] = STATE(231), + [aux_sym__inline_repeat1] = STATE(273), + [anon_sym_LBRACK] = ACTIONS(181), [anon_sym_LBRACK_CARET] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT] = ACTIONS(11), [aux_sym_identifier_token1] = ACTIONS(11), [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [anon_sym_POUND] = ACTIONS(11), [anon_sym_PERCENT] = ACTIONS(11), [sym__block_close] = ACTIONS(242), [sym__newline] = ACTIONS(238), [sym__heading_begin] = ACTIONS(17), [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(85), + [sym__code_block_begin] = ACTIONS(189), [sym_list_marker_dash] = ACTIONS(23), [sym_list_marker_star] = ACTIONS(25), [sym_list_marker_plus] = ACTIONS(27), @@ -6298,119 +6231,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(57), [sym_list_marker_lower_roman_parens] = ACTIONS(59), [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(87), + [sym__block_quote_begin] = ACTIONS(191), [sym__block_quote_continuation] = ACTIONS(240), - [sym__thematic_break_dash] = ACTIONS(89), - [sym__thematic_break_star] = ACTIONS(89), - [sym__table_header_begin] = ACTIONS(91), - [sym__table_separator_begin] = ACTIONS(93), - [sym__table_row_begin] = ACTIONS(95), + [sym__thematic_break_dash] = ACTIONS(193), + [sym__thematic_break_star] = ACTIONS(193), + [sym__table_header_begin] = ACTIONS(195), + [sym__table_separator_begin] = ACTIONS(197), + [sym__table_row_begin] = ACTIONS(199), }, [13] = { - [sym__block_with_heading] = STATE(206), - [sym__block_element] = STATE(206), - [sym_heading] = STATE(206), - [sym_list] = STATE(206), - [sym__list_dash] = STATE(143), - [sym__list_item_dash] = STATE(687), - [sym__list_plus] = STATE(143), - [sym__list_item_plus] = STATE(691), - [sym__list_star] = STATE(143), - [sym__list_item_star] = STATE(673), - [sym__list_task] = STATE(143), - [sym__list_item_task] = STATE(680), - [sym_list_marker_task] = STATE(48), - [sym__list_definition] = STATE(143), - [sym__list_item_definition] = STATE(804), - [sym__list_decimal_period] = STATE(143), - [sym__list_item_decimal_period] = STATE(837), - [sym__list_decimal_paren] = STATE(143), - [sym__list_item_decimal_paren] = STATE(703), - [sym__list_decimal_parens] = STATE(143), - [sym__list_item_decimal_parens] = STATE(715), - [sym__list_lower_alpha_period] = STATE(143), - [sym__list_item_lower_alpha_period] = STATE(739), - [sym__list_lower_alpha_paren] = STATE(143), - [sym__list_item_lower_alpha_paren] = STATE(754), - [sym__list_lower_alpha_parens] = STATE(143), - [sym__list_item_lower_alpha_parens] = STATE(755), - [sym__list_upper_alpha_period] = STATE(143), - [sym__list_item_upper_alpha_period] = STATE(758), - [sym__list_upper_alpha_paren] = STATE(143), - [sym__list_item_upper_alpha_paren] = STATE(759), - [sym__list_upper_alpha_parens] = STATE(143), - [sym__list_item_upper_alpha_parens] = STATE(766), - [sym__list_lower_roman_period] = STATE(143), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(143), - [sym__list_item_lower_roman_paren] = STATE(770), - [sym__list_lower_roman_parens] = STATE(143), - [sym__list_item_lower_roman_parens] = STATE(773), - [sym__list_upper_roman_period] = STATE(143), - [sym__list_item_upper_roman_period] = STATE(775), - [sym__list_upper_roman_paren] = STATE(143), - [sym__list_item_upper_roman_paren] = STATE(791), - [sym__list_upper_roman_parens] = STATE(143), - [sym__list_item_upper_roman_parens] = STATE(793), - [sym_table] = STATE(206), + [sym__block_with_heading] = STATE(183), + [sym__block_element] = STATE(183), + [sym_heading] = STATE(183), + [sym_list] = STATE(183), + [sym__list_dash] = STATE(144), + [sym__list_item_dash] = STATE(553), + [sym__list_plus] = STATE(144), + [sym__list_item_plus] = STATE(554), + [sym__list_star] = STATE(144), + [sym__list_item_star] = STATE(556), + [sym__list_task] = STATE(144), + [sym__list_item_task] = STATE(558), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(144), + [sym__list_item_definition] = STATE(769), + [sym__list_decimal_period] = STATE(144), + [sym__list_item_decimal_period] = STATE(776), + [sym__list_decimal_paren] = STATE(144), + [sym__list_item_decimal_paren] = STATE(790), + [sym__list_decimal_parens] = STATE(144), + [sym__list_item_decimal_parens] = STATE(793), + [sym__list_lower_alpha_period] = STATE(144), + [sym__list_item_lower_alpha_period] = STATE(822), + [sym__list_lower_alpha_paren] = STATE(144), + [sym__list_item_lower_alpha_paren] = STATE(684), + [sym__list_lower_alpha_parens] = STATE(144), + [sym__list_item_lower_alpha_parens] = STATE(688), + [sym__list_upper_alpha_period] = STATE(144), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(144), + [sym__list_item_upper_alpha_paren] = STATE(705), + [sym__list_upper_alpha_parens] = STATE(144), + [sym__list_item_upper_alpha_parens] = STATE(711), + [sym__list_lower_roman_period] = STATE(144), + [sym__list_item_lower_roman_period] = STATE(712), + [sym__list_lower_roman_paren] = STATE(144), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(144), + [sym__list_item_lower_roman_parens] = STATE(728), + [sym__list_upper_roman_period] = STATE(144), + [sym__list_item_upper_roman_period] = STATE(734), + [sym__list_upper_roman_paren] = STATE(144), + [sym__list_item_upper_roman_paren] = STATE(830), + [sym__list_upper_roman_parens] = STATE(144), + [sym__list_item_upper_roman_parens] = STATE(725), + [sym_table] = STATE(183), [sym__table_row] = STATE(66), [sym_table_header] = STATE(66), [sym_table_separator] = STATE(66), [sym_table_row] = STATE(66), - [sym_footnote] = STATE(206), - [sym_footnote_marker_begin] = STATE(1145), - [sym_div] = STATE(206), - [sym__div_marker_begin] = STATE(1061), - [sym_code_block] = STATE(206), - [sym_raw_block] = STATE(206), - [sym_thematic_break] = STATE(206), - [sym_block_quote] = STATE(206), - [sym__block_quote_prefix] = STATE(217), - [sym_link_reference_definition] = STATE(206), - [sym_block_attribute] = STATE(206), - [sym__paragraph] = STATE(206), - [sym__paragraph_content] = STATE(800), - [sym__paragraph_inline_content] = STATE(799), - [sym__inline] = STATE(629), - [sym__symbol_fallback] = STATE(285), - [aux_sym__list_dash_repeat1] = STATE(351), - [aux_sym__list_plus_repeat1] = STATE(350), - [aux_sym__list_star_repeat1] = STATE(353), - [aux_sym__list_task_repeat1] = STATE(339), - [aux_sym__list_definition_repeat1] = STATE(512), - [aux_sym__list_decimal_period_repeat1] = STATE(513), - [aux_sym__list_decimal_paren_repeat1] = STATE(514), - [aux_sym__list_decimal_parens_repeat1] = STATE(515), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(516), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(518), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(519), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(520), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(521), - [aux_sym__list_lower_roman_period_repeat1] = STATE(579), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(523), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(524), - [aux_sym__list_upper_roman_period_repeat1] = STATE(525), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(526), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(527), + [sym_footnote] = STATE(183), + [sym_footnote_marker_begin] = STATE(1141), + [sym_div] = STATE(183), + [sym__div_marker_begin] = STATE(1057), + [sym_code_block] = STATE(183), + [sym_raw_block] = STATE(183), + [sym_thematic_break] = STATE(183), + [sym_block_quote] = STATE(183), + [sym__block_quote_prefix] = STATE(220), + [sym_link_reference_definition] = STATE(183), + [sym_block_attribute] = STATE(183), + [sym__paragraph] = STATE(183), + [sym__paragraph_content] = STATE(750), + [sym__paragraph_inline_content] = STATE(778), + [sym__inline] = STATE(655), + [sym__symbol_fallback] = STATE(273), + [aux_sym__list_dash_repeat1] = STATE(334), + [aux_sym__list_plus_repeat1] = STATE(335), + [aux_sym__list_star_repeat1] = STATE(336), + [aux_sym__list_task_repeat1] = STATE(309), + [aux_sym__list_definition_repeat1] = STATE(425), + [aux_sym__list_decimal_period_repeat1] = STATE(426), + [aux_sym__list_decimal_paren_repeat1] = STATE(427), + [aux_sym__list_decimal_parens_repeat1] = STATE(428), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(429), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(430), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(431), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(432), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(433), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(434), + [aux_sym__list_lower_roman_period_repeat1] = STATE(435), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(436), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(437), + [aux_sym__list_upper_roman_period_repeat1] = STATE(438), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(439), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(440), [aux_sym_table_repeat1] = STATE(66), [aux_sym_div_repeat1] = STATE(14), - [aux_sym__block_quote_prefix_repeat1] = STATE(232), - [aux_sym__inline_repeat1] = STATE(285), - [anon_sym_LBRACK] = ACTIONS(77), + [aux_sym__block_quote_prefix_repeat1] = STATE(231), + [aux_sym__inline_repeat1] = STATE(273), + [anon_sym_LBRACK] = ACTIONS(181), [anon_sym_LBRACK_CARET] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT] = ACTIONS(11), [aux_sym_identifier_token1] = ACTIONS(11), [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [anon_sym_POUND] = ACTIONS(11), [anon_sym_PERCENT] = ACTIONS(11), [sym__block_close] = ACTIONS(244), [sym__newline] = ACTIONS(238), [sym__heading_begin] = ACTIONS(17), [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(85), + [sym__code_block_begin] = ACTIONS(189), [sym_list_marker_dash] = ACTIONS(23), [sym_list_marker_star] = ACTIONS(25), [sym_list_marker_plus] = ACTIONS(27), @@ -6431,113 +6362,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(57), [sym_list_marker_lower_roman_parens] = ACTIONS(59), [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(87), + [sym__block_quote_begin] = ACTIONS(191), [sym__block_quote_continuation] = ACTIONS(240), - [sym__thematic_break_dash] = ACTIONS(89), - [sym__thematic_break_star] = ACTIONS(89), - [sym__table_header_begin] = ACTIONS(91), - [sym__table_separator_begin] = ACTIONS(93), - [sym__table_row_begin] = ACTIONS(95), + [sym__thematic_break_dash] = ACTIONS(193), + [sym__thematic_break_star] = ACTIONS(193), + [sym__table_header_begin] = ACTIONS(195), + [sym__table_separator_begin] = ACTIONS(197), + [sym__table_row_begin] = ACTIONS(199), }, [14] = { - [sym__block_with_heading] = STATE(206), - [sym__block_element] = STATE(206), - [sym_heading] = STATE(206), - [sym_list] = STATE(206), - [sym__list_dash] = STATE(143), - [sym__list_item_dash] = STATE(687), - [sym__list_plus] = STATE(143), - [sym__list_item_plus] = STATE(691), - [sym__list_star] = STATE(143), - [sym__list_item_star] = STATE(673), - [sym__list_task] = STATE(143), - [sym__list_item_task] = STATE(680), - [sym_list_marker_task] = STATE(48), - [sym__list_definition] = STATE(143), - [sym__list_item_definition] = STATE(804), - [sym__list_decimal_period] = STATE(143), - [sym__list_item_decimal_period] = STATE(837), - [sym__list_decimal_paren] = STATE(143), - [sym__list_item_decimal_paren] = STATE(703), - [sym__list_decimal_parens] = STATE(143), - [sym__list_item_decimal_parens] = STATE(715), - [sym__list_lower_alpha_period] = STATE(143), - [sym__list_item_lower_alpha_period] = STATE(739), - [sym__list_lower_alpha_paren] = STATE(143), - [sym__list_item_lower_alpha_paren] = STATE(754), - [sym__list_lower_alpha_parens] = STATE(143), - [sym__list_item_lower_alpha_parens] = STATE(755), - [sym__list_upper_alpha_period] = STATE(143), - [sym__list_item_upper_alpha_period] = STATE(758), - [sym__list_upper_alpha_paren] = STATE(143), - [sym__list_item_upper_alpha_paren] = STATE(759), - [sym__list_upper_alpha_parens] = STATE(143), - [sym__list_item_upper_alpha_parens] = STATE(766), - [sym__list_lower_roman_period] = STATE(143), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(143), - [sym__list_item_lower_roman_paren] = STATE(770), - [sym__list_lower_roman_parens] = STATE(143), - [sym__list_item_lower_roman_parens] = STATE(773), - [sym__list_upper_roman_period] = STATE(143), - [sym__list_item_upper_roman_period] = STATE(775), - [sym__list_upper_roman_paren] = STATE(143), - [sym__list_item_upper_roman_paren] = STATE(791), - [sym__list_upper_roman_parens] = STATE(143), - [sym__list_item_upper_roman_parens] = STATE(793), - [sym_table] = STATE(206), + [sym__block_with_heading] = STATE(183), + [sym__block_element] = STATE(183), + [sym_heading] = STATE(183), + [sym_list] = STATE(183), + [sym__list_dash] = STATE(144), + [sym__list_item_dash] = STATE(553), + [sym__list_plus] = STATE(144), + [sym__list_item_plus] = STATE(554), + [sym__list_star] = STATE(144), + [sym__list_item_star] = STATE(556), + [sym__list_task] = STATE(144), + [sym__list_item_task] = STATE(558), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(144), + [sym__list_item_definition] = STATE(769), + [sym__list_decimal_period] = STATE(144), + [sym__list_item_decimal_period] = STATE(776), + [sym__list_decimal_paren] = STATE(144), + [sym__list_item_decimal_paren] = STATE(790), + [sym__list_decimal_parens] = STATE(144), + [sym__list_item_decimal_parens] = STATE(793), + [sym__list_lower_alpha_period] = STATE(144), + [sym__list_item_lower_alpha_period] = STATE(822), + [sym__list_lower_alpha_paren] = STATE(144), + [sym__list_item_lower_alpha_paren] = STATE(684), + [sym__list_lower_alpha_parens] = STATE(144), + [sym__list_item_lower_alpha_parens] = STATE(688), + [sym__list_upper_alpha_period] = STATE(144), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(144), + [sym__list_item_upper_alpha_paren] = STATE(705), + [sym__list_upper_alpha_parens] = STATE(144), + [sym__list_item_upper_alpha_parens] = STATE(711), + [sym__list_lower_roman_period] = STATE(144), + [sym__list_item_lower_roman_period] = STATE(712), + [sym__list_lower_roman_paren] = STATE(144), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(144), + [sym__list_item_lower_roman_parens] = STATE(728), + [sym__list_upper_roman_period] = STATE(144), + [sym__list_item_upper_roman_period] = STATE(734), + [sym__list_upper_roman_paren] = STATE(144), + [sym__list_item_upper_roman_paren] = STATE(830), + [sym__list_upper_roman_parens] = STATE(144), + [sym__list_item_upper_roman_parens] = STATE(725), + [sym_table] = STATE(183), [sym__table_row] = STATE(66), [sym_table_header] = STATE(66), [sym_table_separator] = STATE(66), [sym_table_row] = STATE(66), - [sym_footnote] = STATE(206), - [sym_footnote_marker_begin] = STATE(1145), - [sym_div] = STATE(206), - [sym__div_marker_begin] = STATE(1061), - [sym_code_block] = STATE(206), - [sym_raw_block] = STATE(206), - [sym_thematic_break] = STATE(206), - [sym_block_quote] = STATE(206), - [sym__block_quote_prefix] = STATE(224), - [sym_link_reference_definition] = STATE(206), - [sym_block_attribute] = STATE(206), - [sym__paragraph] = STATE(206), - [sym__paragraph_content] = STATE(800), - [sym__paragraph_inline_content] = STATE(799), - [sym__inline] = STATE(629), - [sym__symbol_fallback] = STATE(285), - [aux_sym__list_dash_repeat1] = STATE(351), - [aux_sym__list_plus_repeat1] = STATE(350), - [aux_sym__list_star_repeat1] = STATE(353), - [aux_sym__list_task_repeat1] = STATE(339), - [aux_sym__list_definition_repeat1] = STATE(512), - [aux_sym__list_decimal_period_repeat1] = STATE(513), - [aux_sym__list_decimal_paren_repeat1] = STATE(514), - [aux_sym__list_decimal_parens_repeat1] = STATE(515), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(516), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(518), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(519), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(520), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(521), - [aux_sym__list_lower_roman_period_repeat1] = STATE(579), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(523), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(524), - [aux_sym__list_upper_roman_period_repeat1] = STATE(525), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(526), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(527), + [sym_footnote] = STATE(183), + [sym_footnote_marker_begin] = STATE(1141), + [sym_div] = STATE(183), + [sym__div_marker_begin] = STATE(1057), + [sym_code_block] = STATE(183), + [sym_raw_block] = STATE(183), + [sym_thematic_break] = STATE(183), + [sym_block_quote] = STATE(183), + [sym__block_quote_prefix] = STATE(225), + [sym_link_reference_definition] = STATE(183), + [sym_block_attribute] = STATE(183), + [sym__paragraph] = STATE(183), + [sym__paragraph_content] = STATE(750), + [sym__paragraph_inline_content] = STATE(778), + [sym__inline] = STATE(655), + [sym__symbol_fallback] = STATE(273), + [aux_sym__list_dash_repeat1] = STATE(334), + [aux_sym__list_plus_repeat1] = STATE(335), + [aux_sym__list_star_repeat1] = STATE(336), + [aux_sym__list_task_repeat1] = STATE(309), + [aux_sym__list_definition_repeat1] = STATE(425), + [aux_sym__list_decimal_period_repeat1] = STATE(426), + [aux_sym__list_decimal_paren_repeat1] = STATE(427), + [aux_sym__list_decimal_parens_repeat1] = STATE(428), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(429), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(430), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(431), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(432), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(433), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(434), + [aux_sym__list_lower_roman_period_repeat1] = STATE(435), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(436), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(437), + [aux_sym__list_upper_roman_period_repeat1] = STATE(438), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(439), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(440), [aux_sym_table_repeat1] = STATE(66), [aux_sym_div_repeat1] = STATE(14), - [aux_sym__block_quote_prefix_repeat1] = STATE(235), - [aux_sym__inline_repeat1] = STATE(285), + [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__inline_repeat1] = STATE(273), [anon_sym_LBRACK] = ACTIONS(246), [anon_sym_LBRACK_CARET] = ACTIONS(249), [anon_sym_LBRACE] = ACTIONS(252), [anon_sym_DOT] = ACTIONS(255), [aux_sym_identifier_token1] = ACTIONS(255), [aux_sym__inline_token1] = ACTIONS(255), - [anon_sym_LBRACE_DASH] = ACTIONS(255), - [anon_sym_POUND] = ACTIONS(255), [anon_sym_PERCENT] = ACTIONS(255), [sym__block_close] = ACTIONS(258), [sym__newline] = ACTIONS(260), @@ -6573,110 +6502,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__table_row_begin] = ACTIONS(347), }, [15] = { - [sym__block_with_heading] = STATE(206), - [sym__block_element] = STATE(206), - [sym_heading] = STATE(206), - [sym_list] = STATE(206), - [sym__list_dash] = STATE(143), - [sym__list_item_dash] = STATE(687), - [sym__list_plus] = STATE(143), - [sym__list_item_plus] = STATE(691), - [sym__list_star] = STATE(143), - [sym__list_item_star] = STATE(673), - [sym__list_task] = STATE(143), - [sym__list_item_task] = STATE(680), - [sym_list_marker_task] = STATE(48), - [sym__list_definition] = STATE(143), - [sym__list_item_definition] = STATE(804), - [sym__list_decimal_period] = STATE(143), - [sym__list_item_decimal_period] = STATE(837), - [sym__list_decimal_paren] = STATE(143), - [sym__list_item_decimal_paren] = STATE(703), - [sym__list_decimal_parens] = STATE(143), - [sym__list_item_decimal_parens] = STATE(715), - [sym__list_lower_alpha_period] = STATE(143), - [sym__list_item_lower_alpha_period] = STATE(739), - [sym__list_lower_alpha_paren] = STATE(143), - [sym__list_item_lower_alpha_paren] = STATE(754), - [sym__list_lower_alpha_parens] = STATE(143), - [sym__list_item_lower_alpha_parens] = STATE(755), - [sym__list_upper_alpha_period] = STATE(143), - [sym__list_item_upper_alpha_period] = STATE(758), - [sym__list_upper_alpha_paren] = STATE(143), - [sym__list_item_upper_alpha_paren] = STATE(759), - [sym__list_upper_alpha_parens] = STATE(143), - [sym__list_item_upper_alpha_parens] = STATE(766), - [sym__list_lower_roman_period] = STATE(143), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(143), - [sym__list_item_lower_roman_paren] = STATE(770), - [sym__list_lower_roman_parens] = STATE(143), - [sym__list_item_lower_roman_parens] = STATE(773), - [sym__list_upper_roman_period] = STATE(143), - [sym__list_item_upper_roman_period] = STATE(775), - [sym__list_upper_roman_paren] = STATE(143), - [sym__list_item_upper_roman_paren] = STATE(791), - [sym__list_upper_roman_parens] = STATE(143), - [sym__list_item_upper_roman_parens] = STATE(793), - [sym_table] = STATE(206), + [sym__block_with_heading] = STATE(183), + [sym__block_element] = STATE(183), + [sym_heading] = STATE(183), + [sym_list] = STATE(183), + [sym__list_dash] = STATE(144), + [sym__list_item_dash] = STATE(553), + [sym__list_plus] = STATE(144), + [sym__list_item_plus] = STATE(554), + [sym__list_star] = STATE(144), + [sym__list_item_star] = STATE(556), + [sym__list_task] = STATE(144), + [sym__list_item_task] = STATE(558), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(144), + [sym__list_item_definition] = STATE(769), + [sym__list_decimal_period] = STATE(144), + [sym__list_item_decimal_period] = STATE(776), + [sym__list_decimal_paren] = STATE(144), + [sym__list_item_decimal_paren] = STATE(790), + [sym__list_decimal_parens] = STATE(144), + [sym__list_item_decimal_parens] = STATE(793), + [sym__list_lower_alpha_period] = STATE(144), + [sym__list_item_lower_alpha_period] = STATE(822), + [sym__list_lower_alpha_paren] = STATE(144), + [sym__list_item_lower_alpha_paren] = STATE(684), + [sym__list_lower_alpha_parens] = STATE(144), + [sym__list_item_lower_alpha_parens] = STATE(688), + [sym__list_upper_alpha_period] = STATE(144), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(144), + [sym__list_item_upper_alpha_paren] = STATE(705), + [sym__list_upper_alpha_parens] = STATE(144), + [sym__list_item_upper_alpha_parens] = STATE(711), + [sym__list_lower_roman_period] = STATE(144), + [sym__list_item_lower_roman_period] = STATE(712), + [sym__list_lower_roman_paren] = STATE(144), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(144), + [sym__list_item_lower_roman_parens] = STATE(728), + [sym__list_upper_roman_period] = STATE(144), + [sym__list_item_upper_roman_period] = STATE(734), + [sym__list_upper_roman_paren] = STATE(144), + [sym__list_item_upper_roman_paren] = STATE(830), + [sym__list_upper_roman_parens] = STATE(144), + [sym__list_item_upper_roman_parens] = STATE(725), + [sym_table] = STATE(183), [sym__table_row] = STATE(66), [sym_table_header] = STATE(66), [sym_table_separator] = STATE(66), [sym_table_row] = STATE(66), - [sym_footnote] = STATE(206), - [sym_footnote_marker_begin] = STATE(1145), - [sym_div] = STATE(206), - [sym__div_marker_begin] = STATE(1061), - [sym_code_block] = STATE(206), - [sym_raw_block] = STATE(206), - [sym_thematic_break] = STATE(206), - [sym_block_quote] = STATE(206), - [sym__block_quote_prefix] = STATE(212), - [sym_link_reference_definition] = STATE(206), - [sym_block_attribute] = STATE(206), - [sym__paragraph] = STATE(206), - [sym__paragraph_content] = STATE(800), - [sym__paragraph_inline_content] = STATE(799), - [sym__inline] = STATE(629), - [sym__symbol_fallback] = STATE(285), - [aux_sym__list_dash_repeat1] = STATE(351), - [aux_sym__list_plus_repeat1] = STATE(350), - [aux_sym__list_star_repeat1] = STATE(353), - [aux_sym__list_task_repeat1] = STATE(339), - [aux_sym__list_definition_repeat1] = STATE(512), - [aux_sym__list_decimal_period_repeat1] = STATE(513), - [aux_sym__list_decimal_paren_repeat1] = STATE(514), - [aux_sym__list_decimal_parens_repeat1] = STATE(515), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(516), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(518), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(519), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(520), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(521), - [aux_sym__list_lower_roman_period_repeat1] = STATE(579), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(523), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(524), - [aux_sym__list_upper_roman_period_repeat1] = STATE(525), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(526), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(527), + [sym_footnote] = STATE(183), + [sym_footnote_marker_begin] = STATE(1141), + [sym_div] = STATE(183), + [sym__div_marker_begin] = STATE(1057), + [sym_code_block] = STATE(183), + [sym_raw_block] = STATE(183), + [sym_thematic_break] = STATE(183), + [sym_block_quote] = STATE(183), + [sym__block_quote_prefix] = STATE(214), + [sym_link_reference_definition] = STATE(183), + [sym_block_attribute] = STATE(183), + [sym__paragraph] = STATE(183), + [sym__paragraph_content] = STATE(750), + [sym__paragraph_inline_content] = STATE(778), + [sym__inline] = STATE(655), + [sym__symbol_fallback] = STATE(273), + [aux_sym__list_dash_repeat1] = STATE(334), + [aux_sym__list_plus_repeat1] = STATE(335), + [aux_sym__list_star_repeat1] = STATE(336), + [aux_sym__list_task_repeat1] = STATE(309), + [aux_sym__list_definition_repeat1] = STATE(425), + [aux_sym__list_decimal_period_repeat1] = STATE(426), + [aux_sym__list_decimal_paren_repeat1] = STATE(427), + [aux_sym__list_decimal_parens_repeat1] = STATE(428), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(429), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(430), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(431), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(432), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(433), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(434), + [aux_sym__list_lower_roman_period_repeat1] = STATE(435), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(436), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(437), + [aux_sym__list_upper_roman_period_repeat1] = STATE(438), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(439), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(440), [aux_sym_table_repeat1] = STATE(66), [aux_sym_div_repeat1] = STATE(16), - [aux_sym__block_quote_prefix_repeat1] = STATE(232), - [aux_sym__inline_repeat1] = STATE(285), - [anon_sym_LBRACK] = ACTIONS(77), + [aux_sym__block_quote_prefix_repeat1] = STATE(231), + [aux_sym__inline_repeat1] = STATE(273), + [anon_sym_LBRACK] = ACTIONS(181), [anon_sym_LBRACK_CARET] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT] = ACTIONS(11), [aux_sym_identifier_token1] = ACTIONS(11), [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [anon_sym_POUND] = ACTIONS(11), [anon_sym_PERCENT] = ACTIONS(11), [sym__block_close] = ACTIONS(350), [sym__newline] = ACTIONS(238), [sym__heading_begin] = ACTIONS(17), [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(85), + [sym__code_block_begin] = ACTIONS(189), [sym_list_marker_dash] = ACTIONS(23), [sym_list_marker_star] = ACTIONS(25), [sym_list_marker_plus] = ACTIONS(27), @@ -6697,119 +6624,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(57), [sym_list_marker_lower_roman_parens] = ACTIONS(59), [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(87), + [sym__block_quote_begin] = ACTIONS(191), [sym__block_quote_continuation] = ACTIONS(240), - [sym__thematic_break_dash] = ACTIONS(89), - [sym__thematic_break_star] = ACTIONS(89), - [sym__table_header_begin] = ACTIONS(91), - [sym__table_separator_begin] = ACTIONS(93), - [sym__table_row_begin] = ACTIONS(95), + [sym__thematic_break_dash] = ACTIONS(193), + [sym__thematic_break_star] = ACTIONS(193), + [sym__table_header_begin] = ACTIONS(195), + [sym__table_separator_begin] = ACTIONS(197), + [sym__table_row_begin] = ACTIONS(199), }, [16] = { - [sym__block_with_heading] = STATE(206), - [sym__block_element] = STATE(206), - [sym_heading] = STATE(206), - [sym_list] = STATE(206), - [sym__list_dash] = STATE(143), - [sym__list_item_dash] = STATE(687), - [sym__list_plus] = STATE(143), - [sym__list_item_plus] = STATE(691), - [sym__list_star] = STATE(143), - [sym__list_item_star] = STATE(673), - [sym__list_task] = STATE(143), - [sym__list_item_task] = STATE(680), - [sym_list_marker_task] = STATE(48), - [sym__list_definition] = STATE(143), - [sym__list_item_definition] = STATE(804), - [sym__list_decimal_period] = STATE(143), - [sym__list_item_decimal_period] = STATE(837), - [sym__list_decimal_paren] = STATE(143), - [sym__list_item_decimal_paren] = STATE(703), - [sym__list_decimal_parens] = STATE(143), - [sym__list_item_decimal_parens] = STATE(715), - [sym__list_lower_alpha_period] = STATE(143), - [sym__list_item_lower_alpha_period] = STATE(739), - [sym__list_lower_alpha_paren] = STATE(143), - [sym__list_item_lower_alpha_paren] = STATE(754), - [sym__list_lower_alpha_parens] = STATE(143), - [sym__list_item_lower_alpha_parens] = STATE(755), - [sym__list_upper_alpha_period] = STATE(143), - [sym__list_item_upper_alpha_period] = STATE(758), - [sym__list_upper_alpha_paren] = STATE(143), - [sym__list_item_upper_alpha_paren] = STATE(759), - [sym__list_upper_alpha_parens] = STATE(143), - [sym__list_item_upper_alpha_parens] = STATE(766), - [sym__list_lower_roman_period] = STATE(143), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(143), - [sym__list_item_lower_roman_paren] = STATE(770), - [sym__list_lower_roman_parens] = STATE(143), - [sym__list_item_lower_roman_parens] = STATE(773), - [sym__list_upper_roman_period] = STATE(143), - [sym__list_item_upper_roman_period] = STATE(775), - [sym__list_upper_roman_paren] = STATE(143), - [sym__list_item_upper_roman_paren] = STATE(791), - [sym__list_upper_roman_parens] = STATE(143), - [sym__list_item_upper_roman_parens] = STATE(793), - [sym_table] = STATE(206), + [sym__block_with_heading] = STATE(183), + [sym__block_element] = STATE(183), + [sym_heading] = STATE(183), + [sym_list] = STATE(183), + [sym__list_dash] = STATE(144), + [sym__list_item_dash] = STATE(553), + [sym__list_plus] = STATE(144), + [sym__list_item_plus] = STATE(554), + [sym__list_star] = STATE(144), + [sym__list_item_star] = STATE(556), + [sym__list_task] = STATE(144), + [sym__list_item_task] = STATE(558), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(144), + [sym__list_item_definition] = STATE(769), + [sym__list_decimal_period] = STATE(144), + [sym__list_item_decimal_period] = STATE(776), + [sym__list_decimal_paren] = STATE(144), + [sym__list_item_decimal_paren] = STATE(790), + [sym__list_decimal_parens] = STATE(144), + [sym__list_item_decimal_parens] = STATE(793), + [sym__list_lower_alpha_period] = STATE(144), + [sym__list_item_lower_alpha_period] = STATE(822), + [sym__list_lower_alpha_paren] = STATE(144), + [sym__list_item_lower_alpha_paren] = STATE(684), + [sym__list_lower_alpha_parens] = STATE(144), + [sym__list_item_lower_alpha_parens] = STATE(688), + [sym__list_upper_alpha_period] = STATE(144), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(144), + [sym__list_item_upper_alpha_paren] = STATE(705), + [sym__list_upper_alpha_parens] = STATE(144), + [sym__list_item_upper_alpha_parens] = STATE(711), + [sym__list_lower_roman_period] = STATE(144), + [sym__list_item_lower_roman_period] = STATE(712), + [sym__list_lower_roman_paren] = STATE(144), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(144), + [sym__list_item_lower_roman_parens] = STATE(728), + [sym__list_upper_roman_period] = STATE(144), + [sym__list_item_upper_roman_period] = STATE(734), + [sym__list_upper_roman_paren] = STATE(144), + [sym__list_item_upper_roman_paren] = STATE(830), + [sym__list_upper_roman_parens] = STATE(144), + [sym__list_item_upper_roman_parens] = STATE(725), + [sym_table] = STATE(183), [sym__table_row] = STATE(66), [sym_table_header] = STATE(66), [sym_table_separator] = STATE(66), [sym_table_row] = STATE(66), - [sym_footnote] = STATE(206), - [sym_footnote_marker_begin] = STATE(1145), - [sym_div] = STATE(206), - [sym__div_marker_begin] = STATE(1061), - [sym_code_block] = STATE(206), - [sym_raw_block] = STATE(206), - [sym_thematic_break] = STATE(206), - [sym_block_quote] = STATE(206), - [sym__block_quote_prefix] = STATE(213), - [sym_link_reference_definition] = STATE(206), - [sym_block_attribute] = STATE(206), - [sym__paragraph] = STATE(206), - [sym__paragraph_content] = STATE(800), - [sym__paragraph_inline_content] = STATE(799), - [sym__inline] = STATE(629), - [sym__symbol_fallback] = STATE(285), - [aux_sym__list_dash_repeat1] = STATE(351), - [aux_sym__list_plus_repeat1] = STATE(350), - [aux_sym__list_star_repeat1] = STATE(353), - [aux_sym__list_task_repeat1] = STATE(339), - [aux_sym__list_definition_repeat1] = STATE(512), - [aux_sym__list_decimal_period_repeat1] = STATE(513), - [aux_sym__list_decimal_paren_repeat1] = STATE(514), - [aux_sym__list_decimal_parens_repeat1] = STATE(515), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(516), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(518), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(519), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(520), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(521), - [aux_sym__list_lower_roman_period_repeat1] = STATE(579), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(523), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(524), - [aux_sym__list_upper_roman_period_repeat1] = STATE(525), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(526), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(527), + [sym_footnote] = STATE(183), + [sym_footnote_marker_begin] = STATE(1141), + [sym_div] = STATE(183), + [sym__div_marker_begin] = STATE(1057), + [sym_code_block] = STATE(183), + [sym_raw_block] = STATE(183), + [sym_thematic_break] = STATE(183), + [sym_block_quote] = STATE(183), + [sym__block_quote_prefix] = STATE(212), + [sym_link_reference_definition] = STATE(183), + [sym_block_attribute] = STATE(183), + [sym__paragraph] = STATE(183), + [sym__paragraph_content] = STATE(750), + [sym__paragraph_inline_content] = STATE(778), + [sym__inline] = STATE(655), + [sym__symbol_fallback] = STATE(273), + [aux_sym__list_dash_repeat1] = STATE(334), + [aux_sym__list_plus_repeat1] = STATE(335), + [aux_sym__list_star_repeat1] = STATE(336), + [aux_sym__list_task_repeat1] = STATE(309), + [aux_sym__list_definition_repeat1] = STATE(425), + [aux_sym__list_decimal_period_repeat1] = STATE(426), + [aux_sym__list_decimal_paren_repeat1] = STATE(427), + [aux_sym__list_decimal_parens_repeat1] = STATE(428), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(429), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(430), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(431), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(432), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(433), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(434), + [aux_sym__list_lower_roman_period_repeat1] = STATE(435), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(436), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(437), + [aux_sym__list_upper_roman_period_repeat1] = STATE(438), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(439), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(440), [aux_sym_table_repeat1] = STATE(66), [aux_sym_div_repeat1] = STATE(14), - [aux_sym__block_quote_prefix_repeat1] = STATE(232), - [aux_sym__inline_repeat1] = STATE(285), - [anon_sym_LBRACK] = ACTIONS(77), + [aux_sym__block_quote_prefix_repeat1] = STATE(231), + [aux_sym__inline_repeat1] = STATE(273), + [anon_sym_LBRACK] = ACTIONS(181), [anon_sym_LBRACK_CARET] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT] = ACTIONS(11), [aux_sym_identifier_token1] = ACTIONS(11), [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [anon_sym_POUND] = ACTIONS(11), [anon_sym_PERCENT] = ACTIONS(11), [sym__block_close] = ACTIONS(352), [sym__newline] = ACTIONS(238), [sym__heading_begin] = ACTIONS(17), [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(85), + [sym__code_block_begin] = ACTIONS(189), [sym_list_marker_dash] = ACTIONS(23), [sym_list_marker_star] = ACTIONS(25), [sym_list_marker_plus] = ACTIONS(27), @@ -6830,119 +6755,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(57), [sym_list_marker_lower_roman_parens] = ACTIONS(59), [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(87), + [sym__block_quote_begin] = ACTIONS(191), [sym__block_quote_continuation] = ACTIONS(240), - [sym__thematic_break_dash] = ACTIONS(89), - [sym__thematic_break_star] = ACTIONS(89), - [sym__table_header_begin] = ACTIONS(91), - [sym__table_separator_begin] = ACTIONS(93), - [sym__table_row_begin] = ACTIONS(95), + [sym__thematic_break_dash] = ACTIONS(193), + [sym__thematic_break_star] = ACTIONS(193), + [sym__table_header_begin] = ACTIONS(195), + [sym__table_separator_begin] = ACTIONS(197), + [sym__table_row_begin] = ACTIONS(199), }, [17] = { - [sym__block_with_heading] = STATE(206), - [sym__block_element] = STATE(206), - [sym_heading] = STATE(206), - [sym_list] = STATE(206), - [sym__list_dash] = STATE(143), - [sym__list_item_dash] = STATE(687), - [sym__list_plus] = STATE(143), - [sym__list_item_plus] = STATE(691), - [sym__list_star] = STATE(143), - [sym__list_item_star] = STATE(673), - [sym__list_task] = STATE(143), - [sym__list_item_task] = STATE(680), - [sym_list_marker_task] = STATE(48), - [sym__list_definition] = STATE(143), - [sym__list_item_definition] = STATE(804), - [sym__list_decimal_period] = STATE(143), - [sym__list_item_decimal_period] = STATE(837), - [sym__list_decimal_paren] = STATE(143), - [sym__list_item_decimal_paren] = STATE(703), - [sym__list_decimal_parens] = STATE(143), - [sym__list_item_decimal_parens] = STATE(715), - [sym__list_lower_alpha_period] = STATE(143), - [sym__list_item_lower_alpha_period] = STATE(739), - [sym__list_lower_alpha_paren] = STATE(143), - [sym__list_item_lower_alpha_paren] = STATE(754), - [sym__list_lower_alpha_parens] = STATE(143), - [sym__list_item_lower_alpha_parens] = STATE(755), - [sym__list_upper_alpha_period] = STATE(143), - [sym__list_item_upper_alpha_period] = STATE(758), - [sym__list_upper_alpha_paren] = STATE(143), - [sym__list_item_upper_alpha_paren] = STATE(759), - [sym__list_upper_alpha_parens] = STATE(143), - [sym__list_item_upper_alpha_parens] = STATE(766), - [sym__list_lower_roman_period] = STATE(143), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(143), - [sym__list_item_lower_roman_paren] = STATE(770), - [sym__list_lower_roman_parens] = STATE(143), - [sym__list_item_lower_roman_parens] = STATE(773), - [sym__list_upper_roman_period] = STATE(143), - [sym__list_item_upper_roman_period] = STATE(775), - [sym__list_upper_roman_paren] = STATE(143), - [sym__list_item_upper_roman_paren] = STATE(791), - [sym__list_upper_roman_parens] = STATE(143), - [sym__list_item_upper_roman_parens] = STATE(793), - [sym_table] = STATE(206), + [sym__block_with_heading] = STATE(183), + [sym__block_element] = STATE(183), + [sym_heading] = STATE(183), + [sym_list] = STATE(183), + [sym__list_dash] = STATE(144), + [sym__list_item_dash] = STATE(553), + [sym__list_plus] = STATE(144), + [sym__list_item_plus] = STATE(554), + [sym__list_star] = STATE(144), + [sym__list_item_star] = STATE(556), + [sym__list_task] = STATE(144), + [sym__list_item_task] = STATE(558), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(144), + [sym__list_item_definition] = STATE(769), + [sym__list_decimal_period] = STATE(144), + [sym__list_item_decimal_period] = STATE(776), + [sym__list_decimal_paren] = STATE(144), + [sym__list_item_decimal_paren] = STATE(790), + [sym__list_decimal_parens] = STATE(144), + [sym__list_item_decimal_parens] = STATE(793), + [sym__list_lower_alpha_period] = STATE(144), + [sym__list_item_lower_alpha_period] = STATE(822), + [sym__list_lower_alpha_paren] = STATE(144), + [sym__list_item_lower_alpha_paren] = STATE(684), + [sym__list_lower_alpha_parens] = STATE(144), + [sym__list_item_lower_alpha_parens] = STATE(688), + [sym__list_upper_alpha_period] = STATE(144), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(144), + [sym__list_item_upper_alpha_paren] = STATE(705), + [sym__list_upper_alpha_parens] = STATE(144), + [sym__list_item_upper_alpha_parens] = STATE(711), + [sym__list_lower_roman_period] = STATE(144), + [sym__list_item_lower_roman_period] = STATE(712), + [sym__list_lower_roman_paren] = STATE(144), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(144), + [sym__list_item_lower_roman_parens] = STATE(728), + [sym__list_upper_roman_period] = STATE(144), + [sym__list_item_upper_roman_period] = STATE(734), + [sym__list_upper_roman_paren] = STATE(144), + [sym__list_item_upper_roman_paren] = STATE(830), + [sym__list_upper_roman_parens] = STATE(144), + [sym__list_item_upper_roman_parens] = STATE(725), + [sym_table] = STATE(183), [sym__table_row] = STATE(66), [sym_table_header] = STATE(66), [sym_table_separator] = STATE(66), [sym_table_row] = STATE(66), - [sym_footnote] = STATE(206), - [sym_footnote_marker_begin] = STATE(1145), - [sym_div] = STATE(206), - [sym__div_marker_begin] = STATE(1061), - [sym_code_block] = STATE(206), - [sym_raw_block] = STATE(206), - [sym_thematic_break] = STATE(206), - [sym_block_quote] = STATE(206), - [sym__block_quote_prefix] = STATE(211), - [sym_link_reference_definition] = STATE(206), - [sym_block_attribute] = STATE(206), - [sym__paragraph] = STATE(206), - [sym__paragraph_content] = STATE(800), - [sym__paragraph_inline_content] = STATE(799), - [sym__inline] = STATE(629), - [sym__symbol_fallback] = STATE(285), - [aux_sym__list_dash_repeat1] = STATE(351), - [aux_sym__list_plus_repeat1] = STATE(350), - [aux_sym__list_star_repeat1] = STATE(353), - [aux_sym__list_task_repeat1] = STATE(339), - [aux_sym__list_definition_repeat1] = STATE(512), - [aux_sym__list_decimal_period_repeat1] = STATE(513), - [aux_sym__list_decimal_paren_repeat1] = STATE(514), - [aux_sym__list_decimal_parens_repeat1] = STATE(515), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(516), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(518), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(519), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(520), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(521), - [aux_sym__list_lower_roman_period_repeat1] = STATE(579), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(523), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(524), - [aux_sym__list_upper_roman_period_repeat1] = STATE(525), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(526), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(527), + [sym_footnote] = STATE(183), + [sym_footnote_marker_begin] = STATE(1141), + [sym_div] = STATE(183), + [sym__div_marker_begin] = STATE(1057), + [sym_code_block] = STATE(183), + [sym_raw_block] = STATE(183), + [sym_thematic_break] = STATE(183), + [sym_block_quote] = STATE(183), + [sym__block_quote_prefix] = STATE(213), + [sym_link_reference_definition] = STATE(183), + [sym_block_attribute] = STATE(183), + [sym__paragraph] = STATE(183), + [sym__paragraph_content] = STATE(750), + [sym__paragraph_inline_content] = STATE(778), + [sym__inline] = STATE(655), + [sym__symbol_fallback] = STATE(273), + [aux_sym__list_dash_repeat1] = STATE(334), + [aux_sym__list_plus_repeat1] = STATE(335), + [aux_sym__list_star_repeat1] = STATE(336), + [aux_sym__list_task_repeat1] = STATE(309), + [aux_sym__list_definition_repeat1] = STATE(425), + [aux_sym__list_decimal_period_repeat1] = STATE(426), + [aux_sym__list_decimal_paren_repeat1] = STATE(427), + [aux_sym__list_decimal_parens_repeat1] = STATE(428), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(429), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(430), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(431), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(432), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(433), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(434), + [aux_sym__list_lower_roman_period_repeat1] = STATE(435), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(436), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(437), + [aux_sym__list_upper_roman_period_repeat1] = STATE(438), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(439), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(440), [aux_sym_table_repeat1] = STATE(66), [aux_sym_div_repeat1] = STATE(18), - [aux_sym__block_quote_prefix_repeat1] = STATE(232), - [aux_sym__inline_repeat1] = STATE(285), - [anon_sym_LBRACK] = ACTIONS(77), + [aux_sym__block_quote_prefix_repeat1] = STATE(231), + [aux_sym__inline_repeat1] = STATE(273), + [anon_sym_LBRACK] = ACTIONS(181), [anon_sym_LBRACK_CARET] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT] = ACTIONS(11), [aux_sym_identifier_token1] = ACTIONS(11), [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [anon_sym_POUND] = ACTIONS(11), [anon_sym_PERCENT] = ACTIONS(11), [sym__block_close] = ACTIONS(354), [sym__newline] = ACTIONS(238), [sym__heading_begin] = ACTIONS(17), [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(85), + [sym__code_block_begin] = ACTIONS(189), [sym_list_marker_dash] = ACTIONS(23), [sym_list_marker_star] = ACTIONS(25), [sym_list_marker_plus] = ACTIONS(27), @@ -6963,119 +6886,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(57), [sym_list_marker_lower_roman_parens] = ACTIONS(59), [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(87), + [sym__block_quote_begin] = ACTIONS(191), [sym__block_quote_continuation] = ACTIONS(240), - [sym__thematic_break_dash] = ACTIONS(89), - [sym__thematic_break_star] = ACTIONS(89), - [sym__table_header_begin] = ACTIONS(91), - [sym__table_separator_begin] = ACTIONS(93), - [sym__table_row_begin] = ACTIONS(95), + [sym__thematic_break_dash] = ACTIONS(193), + [sym__thematic_break_star] = ACTIONS(193), + [sym__table_header_begin] = ACTIONS(195), + [sym__table_separator_begin] = ACTIONS(197), + [sym__table_row_begin] = ACTIONS(199), }, [18] = { - [sym__block_with_heading] = STATE(206), - [sym__block_element] = STATE(206), - [sym_heading] = STATE(206), - [sym_list] = STATE(206), - [sym__list_dash] = STATE(143), - [sym__list_item_dash] = STATE(687), - [sym__list_plus] = STATE(143), - [sym__list_item_plus] = STATE(691), - [sym__list_star] = STATE(143), - [sym__list_item_star] = STATE(673), - [sym__list_task] = STATE(143), - [sym__list_item_task] = STATE(680), - [sym_list_marker_task] = STATE(48), - [sym__list_definition] = STATE(143), - [sym__list_item_definition] = STATE(804), - [sym__list_decimal_period] = STATE(143), - [sym__list_item_decimal_period] = STATE(837), - [sym__list_decimal_paren] = STATE(143), - [sym__list_item_decimal_paren] = STATE(703), - [sym__list_decimal_parens] = STATE(143), - [sym__list_item_decimal_parens] = STATE(715), - [sym__list_lower_alpha_period] = STATE(143), - [sym__list_item_lower_alpha_period] = STATE(739), - [sym__list_lower_alpha_paren] = STATE(143), - [sym__list_item_lower_alpha_paren] = STATE(754), - [sym__list_lower_alpha_parens] = STATE(143), - [sym__list_item_lower_alpha_parens] = STATE(755), - [sym__list_upper_alpha_period] = STATE(143), - [sym__list_item_upper_alpha_period] = STATE(758), - [sym__list_upper_alpha_paren] = STATE(143), - [sym__list_item_upper_alpha_paren] = STATE(759), - [sym__list_upper_alpha_parens] = STATE(143), - [sym__list_item_upper_alpha_parens] = STATE(766), - [sym__list_lower_roman_period] = STATE(143), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(143), - [sym__list_item_lower_roman_paren] = STATE(770), - [sym__list_lower_roman_parens] = STATE(143), - [sym__list_item_lower_roman_parens] = STATE(773), - [sym__list_upper_roman_period] = STATE(143), - [sym__list_item_upper_roman_period] = STATE(775), - [sym__list_upper_roman_paren] = STATE(143), - [sym__list_item_upper_roman_paren] = STATE(791), - [sym__list_upper_roman_parens] = STATE(143), - [sym__list_item_upper_roman_parens] = STATE(793), - [sym_table] = STATE(206), + [sym__block_with_heading] = STATE(183), + [sym__block_element] = STATE(183), + [sym_heading] = STATE(183), + [sym_list] = STATE(183), + [sym__list_dash] = STATE(144), + [sym__list_item_dash] = STATE(553), + [sym__list_plus] = STATE(144), + [sym__list_item_plus] = STATE(554), + [sym__list_star] = STATE(144), + [sym__list_item_star] = STATE(556), + [sym__list_task] = STATE(144), + [sym__list_item_task] = STATE(558), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(144), + [sym__list_item_definition] = STATE(769), + [sym__list_decimal_period] = STATE(144), + [sym__list_item_decimal_period] = STATE(776), + [sym__list_decimal_paren] = STATE(144), + [sym__list_item_decimal_paren] = STATE(790), + [sym__list_decimal_parens] = STATE(144), + [sym__list_item_decimal_parens] = STATE(793), + [sym__list_lower_alpha_period] = STATE(144), + [sym__list_item_lower_alpha_period] = STATE(822), + [sym__list_lower_alpha_paren] = STATE(144), + [sym__list_item_lower_alpha_paren] = STATE(684), + [sym__list_lower_alpha_parens] = STATE(144), + [sym__list_item_lower_alpha_parens] = STATE(688), + [sym__list_upper_alpha_period] = STATE(144), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(144), + [sym__list_item_upper_alpha_paren] = STATE(705), + [sym__list_upper_alpha_parens] = STATE(144), + [sym__list_item_upper_alpha_parens] = STATE(711), + [sym__list_lower_roman_period] = STATE(144), + [sym__list_item_lower_roman_period] = STATE(712), + [sym__list_lower_roman_paren] = STATE(144), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(144), + [sym__list_item_lower_roman_parens] = STATE(728), + [sym__list_upper_roman_period] = STATE(144), + [sym__list_item_upper_roman_period] = STATE(734), + [sym__list_upper_roman_paren] = STATE(144), + [sym__list_item_upper_roman_paren] = STATE(830), + [sym__list_upper_roman_parens] = STATE(144), + [sym__list_item_upper_roman_parens] = STATE(725), + [sym_table] = STATE(183), [sym__table_row] = STATE(66), [sym_table_header] = STATE(66), [sym_table_separator] = STATE(66), [sym_table_row] = STATE(66), - [sym_footnote] = STATE(206), - [sym_footnote_marker_begin] = STATE(1145), - [sym_div] = STATE(206), - [sym__div_marker_begin] = STATE(1061), - [sym_code_block] = STATE(206), - [sym_raw_block] = STATE(206), - [sym_thematic_break] = STATE(206), - [sym_block_quote] = STATE(206), + [sym_footnote] = STATE(183), + [sym_footnote_marker_begin] = STATE(1141), + [sym_div] = STATE(183), + [sym__div_marker_begin] = STATE(1057), + [sym_code_block] = STATE(183), + [sym_raw_block] = STATE(183), + [sym_thematic_break] = STATE(183), + [sym_block_quote] = STATE(183), [sym__block_quote_prefix] = STATE(215), - [sym_link_reference_definition] = STATE(206), - [sym_block_attribute] = STATE(206), - [sym__paragraph] = STATE(206), - [sym__paragraph_content] = STATE(800), - [sym__paragraph_inline_content] = STATE(799), - [sym__inline] = STATE(629), - [sym__symbol_fallback] = STATE(285), - [aux_sym__list_dash_repeat1] = STATE(351), - [aux_sym__list_plus_repeat1] = STATE(350), - [aux_sym__list_star_repeat1] = STATE(353), - [aux_sym__list_task_repeat1] = STATE(339), - [aux_sym__list_definition_repeat1] = STATE(512), - [aux_sym__list_decimal_period_repeat1] = STATE(513), - [aux_sym__list_decimal_paren_repeat1] = STATE(514), - [aux_sym__list_decimal_parens_repeat1] = STATE(515), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(516), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(518), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(519), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(520), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(521), - [aux_sym__list_lower_roman_period_repeat1] = STATE(579), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(523), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(524), - [aux_sym__list_upper_roman_period_repeat1] = STATE(525), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(526), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(527), + [sym_link_reference_definition] = STATE(183), + [sym_block_attribute] = STATE(183), + [sym__paragraph] = STATE(183), + [sym__paragraph_content] = STATE(750), + [sym__paragraph_inline_content] = STATE(778), + [sym__inline] = STATE(655), + [sym__symbol_fallback] = STATE(273), + [aux_sym__list_dash_repeat1] = STATE(334), + [aux_sym__list_plus_repeat1] = STATE(335), + [aux_sym__list_star_repeat1] = STATE(336), + [aux_sym__list_task_repeat1] = STATE(309), + [aux_sym__list_definition_repeat1] = STATE(425), + [aux_sym__list_decimal_period_repeat1] = STATE(426), + [aux_sym__list_decimal_paren_repeat1] = STATE(427), + [aux_sym__list_decimal_parens_repeat1] = STATE(428), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(429), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(430), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(431), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(432), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(433), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(434), + [aux_sym__list_lower_roman_period_repeat1] = STATE(435), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(436), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(437), + [aux_sym__list_upper_roman_period_repeat1] = STATE(438), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(439), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(440), [aux_sym_table_repeat1] = STATE(66), [aux_sym_div_repeat1] = STATE(14), - [aux_sym__block_quote_prefix_repeat1] = STATE(232), - [aux_sym__inline_repeat1] = STATE(285), - [anon_sym_LBRACK] = ACTIONS(77), + [aux_sym__block_quote_prefix_repeat1] = STATE(231), + [aux_sym__inline_repeat1] = STATE(273), + [anon_sym_LBRACK] = ACTIONS(181), [anon_sym_LBRACK_CARET] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT] = ACTIONS(11), [aux_sym_identifier_token1] = ACTIONS(11), [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [anon_sym_POUND] = ACTIONS(11), [anon_sym_PERCENT] = ACTIONS(11), [sym__block_close] = ACTIONS(356), [sym__newline] = ACTIONS(238), [sym__heading_begin] = ACTIONS(17), [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(85), + [sym__code_block_begin] = ACTIONS(189), [sym_list_marker_dash] = ACTIONS(23), [sym_list_marker_star] = ACTIONS(25), [sym_list_marker_plus] = ACTIONS(27), @@ -7096,119 +7017,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(57), [sym_list_marker_lower_roman_parens] = ACTIONS(59), [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(87), + [sym__block_quote_begin] = ACTIONS(191), [sym__block_quote_continuation] = ACTIONS(240), - [sym__thematic_break_dash] = ACTIONS(89), - [sym__thematic_break_star] = ACTIONS(89), - [sym__table_header_begin] = ACTIONS(91), - [sym__table_separator_begin] = ACTIONS(93), - [sym__table_row_begin] = ACTIONS(95), + [sym__thematic_break_dash] = ACTIONS(193), + [sym__thematic_break_star] = ACTIONS(193), + [sym__table_header_begin] = ACTIONS(195), + [sym__table_separator_begin] = ACTIONS(197), + [sym__table_row_begin] = ACTIONS(199), }, [19] = { - [sym__block_with_heading] = STATE(206), - [sym__block_element] = STATE(206), - [sym_heading] = STATE(206), - [sym_list] = STATE(206), - [sym__list_dash] = STATE(143), - [sym__list_item_dash] = STATE(687), - [sym__list_plus] = STATE(143), - [sym__list_item_plus] = STATE(691), - [sym__list_star] = STATE(143), - [sym__list_item_star] = STATE(673), - [sym__list_task] = STATE(143), - [sym__list_item_task] = STATE(680), - [sym_list_marker_task] = STATE(48), - [sym__list_definition] = STATE(143), - [sym__list_item_definition] = STATE(804), - [sym__list_decimal_period] = STATE(143), - [sym__list_item_decimal_period] = STATE(837), - [sym__list_decimal_paren] = STATE(143), - [sym__list_item_decimal_paren] = STATE(703), - [sym__list_decimal_parens] = STATE(143), - [sym__list_item_decimal_parens] = STATE(715), - [sym__list_lower_alpha_period] = STATE(143), - [sym__list_item_lower_alpha_period] = STATE(739), - [sym__list_lower_alpha_paren] = STATE(143), - [sym__list_item_lower_alpha_paren] = STATE(754), - [sym__list_lower_alpha_parens] = STATE(143), - [sym__list_item_lower_alpha_parens] = STATE(755), - [sym__list_upper_alpha_period] = STATE(143), - [sym__list_item_upper_alpha_period] = STATE(758), - [sym__list_upper_alpha_paren] = STATE(143), - [sym__list_item_upper_alpha_paren] = STATE(759), - [sym__list_upper_alpha_parens] = STATE(143), - [sym__list_item_upper_alpha_parens] = STATE(766), - [sym__list_lower_roman_period] = STATE(143), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(143), - [sym__list_item_lower_roman_paren] = STATE(770), - [sym__list_lower_roman_parens] = STATE(143), - [sym__list_item_lower_roman_parens] = STATE(773), - [sym__list_upper_roman_period] = STATE(143), - [sym__list_item_upper_roman_period] = STATE(775), - [sym__list_upper_roman_paren] = STATE(143), - [sym__list_item_upper_roman_paren] = STATE(791), - [sym__list_upper_roman_parens] = STATE(143), - [sym__list_item_upper_roman_parens] = STATE(793), - [sym_table] = STATE(206), + [sym__block_with_heading] = STATE(183), + [sym__block_element] = STATE(183), + [sym_heading] = STATE(183), + [sym_list] = STATE(183), + [sym__list_dash] = STATE(144), + [sym__list_item_dash] = STATE(553), + [sym__list_plus] = STATE(144), + [sym__list_item_plus] = STATE(554), + [sym__list_star] = STATE(144), + [sym__list_item_star] = STATE(556), + [sym__list_task] = STATE(144), + [sym__list_item_task] = STATE(558), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(144), + [sym__list_item_definition] = STATE(769), + [sym__list_decimal_period] = STATE(144), + [sym__list_item_decimal_period] = STATE(776), + [sym__list_decimal_paren] = STATE(144), + [sym__list_item_decimal_paren] = STATE(790), + [sym__list_decimal_parens] = STATE(144), + [sym__list_item_decimal_parens] = STATE(793), + [sym__list_lower_alpha_period] = STATE(144), + [sym__list_item_lower_alpha_period] = STATE(822), + [sym__list_lower_alpha_paren] = STATE(144), + [sym__list_item_lower_alpha_paren] = STATE(684), + [sym__list_lower_alpha_parens] = STATE(144), + [sym__list_item_lower_alpha_parens] = STATE(688), + [sym__list_upper_alpha_period] = STATE(144), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(144), + [sym__list_item_upper_alpha_paren] = STATE(705), + [sym__list_upper_alpha_parens] = STATE(144), + [sym__list_item_upper_alpha_parens] = STATE(711), + [sym__list_lower_roman_period] = STATE(144), + [sym__list_item_lower_roman_period] = STATE(712), + [sym__list_lower_roman_paren] = STATE(144), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(144), + [sym__list_item_lower_roman_parens] = STATE(728), + [sym__list_upper_roman_period] = STATE(144), + [sym__list_item_upper_roman_period] = STATE(734), + [sym__list_upper_roman_paren] = STATE(144), + [sym__list_item_upper_roman_paren] = STATE(830), + [sym__list_upper_roman_parens] = STATE(144), + [sym__list_item_upper_roman_parens] = STATE(725), + [sym_table] = STATE(183), [sym__table_row] = STATE(66), [sym_table_header] = STATE(66), [sym_table_separator] = STATE(66), [sym_table_row] = STATE(66), - [sym_footnote] = STATE(206), - [sym_footnote_marker_begin] = STATE(1145), - [sym_div] = STATE(206), - [sym__div_marker_begin] = STATE(1061), - [sym_code_block] = STATE(206), - [sym_raw_block] = STATE(206), - [sym_thematic_break] = STATE(206), - [sym_block_quote] = STATE(206), - [sym__block_quote_prefix] = STATE(218), - [sym_link_reference_definition] = STATE(206), - [sym_block_attribute] = STATE(206), - [sym__paragraph] = STATE(206), - [sym__paragraph_content] = STATE(800), - [sym__paragraph_inline_content] = STATE(799), - [sym__inline] = STATE(629), - [sym__symbol_fallback] = STATE(285), - [aux_sym__list_dash_repeat1] = STATE(351), - [aux_sym__list_plus_repeat1] = STATE(350), - [aux_sym__list_star_repeat1] = STATE(353), - [aux_sym__list_task_repeat1] = STATE(339), - [aux_sym__list_definition_repeat1] = STATE(512), - [aux_sym__list_decimal_period_repeat1] = STATE(513), - [aux_sym__list_decimal_paren_repeat1] = STATE(514), - [aux_sym__list_decimal_parens_repeat1] = STATE(515), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(516), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(518), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(519), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(520), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(521), - [aux_sym__list_lower_roman_period_repeat1] = STATE(579), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(523), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(524), - [aux_sym__list_upper_roman_period_repeat1] = STATE(525), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(526), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(527), + [sym_footnote] = STATE(183), + [sym_footnote_marker_begin] = STATE(1141), + [sym_div] = STATE(183), + [sym__div_marker_begin] = STATE(1057), + [sym_code_block] = STATE(183), + [sym_raw_block] = STATE(183), + [sym_thematic_break] = STATE(183), + [sym_block_quote] = STATE(183), + [sym__block_quote_prefix] = STATE(211), + [sym_link_reference_definition] = STATE(183), + [sym_block_attribute] = STATE(183), + [sym__paragraph] = STATE(183), + [sym__paragraph_content] = STATE(750), + [sym__paragraph_inline_content] = STATE(778), + [sym__inline] = STATE(655), + [sym__symbol_fallback] = STATE(273), + [aux_sym__list_dash_repeat1] = STATE(334), + [aux_sym__list_plus_repeat1] = STATE(335), + [aux_sym__list_star_repeat1] = STATE(336), + [aux_sym__list_task_repeat1] = STATE(309), + [aux_sym__list_definition_repeat1] = STATE(425), + [aux_sym__list_decimal_period_repeat1] = STATE(426), + [aux_sym__list_decimal_paren_repeat1] = STATE(427), + [aux_sym__list_decimal_parens_repeat1] = STATE(428), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(429), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(430), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(431), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(432), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(433), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(434), + [aux_sym__list_lower_roman_period_repeat1] = STATE(435), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(436), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(437), + [aux_sym__list_upper_roman_period_repeat1] = STATE(438), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(439), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(440), [aux_sym_table_repeat1] = STATE(66), [aux_sym_div_repeat1] = STATE(20), - [aux_sym__block_quote_prefix_repeat1] = STATE(232), - [aux_sym__inline_repeat1] = STATE(285), - [anon_sym_LBRACK] = ACTIONS(77), + [aux_sym__block_quote_prefix_repeat1] = STATE(231), + [aux_sym__inline_repeat1] = STATE(273), + [anon_sym_LBRACK] = ACTIONS(181), [anon_sym_LBRACK_CARET] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT] = ACTIONS(11), [aux_sym_identifier_token1] = ACTIONS(11), [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [anon_sym_POUND] = ACTIONS(11), [anon_sym_PERCENT] = ACTIONS(11), [sym__block_close] = ACTIONS(358), [sym__newline] = ACTIONS(238), [sym__heading_begin] = ACTIONS(17), [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(85), + [sym__code_block_begin] = ACTIONS(189), [sym_list_marker_dash] = ACTIONS(23), [sym_list_marker_star] = ACTIONS(25), [sym_list_marker_plus] = ACTIONS(27), @@ -7229,119 +7148,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(57), [sym_list_marker_lower_roman_parens] = ACTIONS(59), [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(87), + [sym__block_quote_begin] = ACTIONS(191), [sym__block_quote_continuation] = ACTIONS(240), - [sym__thematic_break_dash] = ACTIONS(89), - [sym__thematic_break_star] = ACTIONS(89), - [sym__table_header_begin] = ACTIONS(91), - [sym__table_separator_begin] = ACTIONS(93), - [sym__table_row_begin] = ACTIONS(95), + [sym__thematic_break_dash] = ACTIONS(193), + [sym__thematic_break_star] = ACTIONS(193), + [sym__table_header_begin] = ACTIONS(195), + [sym__table_separator_begin] = ACTIONS(197), + [sym__table_row_begin] = ACTIONS(199), }, [20] = { - [sym__block_with_heading] = STATE(206), - [sym__block_element] = STATE(206), - [sym_heading] = STATE(206), - [sym_list] = STATE(206), - [sym__list_dash] = STATE(143), - [sym__list_item_dash] = STATE(687), - [sym__list_plus] = STATE(143), - [sym__list_item_plus] = STATE(691), - [sym__list_star] = STATE(143), - [sym__list_item_star] = STATE(673), - [sym__list_task] = STATE(143), - [sym__list_item_task] = STATE(680), - [sym_list_marker_task] = STATE(48), - [sym__list_definition] = STATE(143), - [sym__list_item_definition] = STATE(804), - [sym__list_decimal_period] = STATE(143), - [sym__list_item_decimal_period] = STATE(837), - [sym__list_decimal_paren] = STATE(143), - [sym__list_item_decimal_paren] = STATE(703), - [sym__list_decimal_parens] = STATE(143), - [sym__list_item_decimal_parens] = STATE(715), - [sym__list_lower_alpha_period] = STATE(143), - [sym__list_item_lower_alpha_period] = STATE(739), - [sym__list_lower_alpha_paren] = STATE(143), - [sym__list_item_lower_alpha_paren] = STATE(754), - [sym__list_lower_alpha_parens] = STATE(143), - [sym__list_item_lower_alpha_parens] = STATE(755), - [sym__list_upper_alpha_period] = STATE(143), - [sym__list_item_upper_alpha_period] = STATE(758), - [sym__list_upper_alpha_paren] = STATE(143), - [sym__list_item_upper_alpha_paren] = STATE(759), - [sym__list_upper_alpha_parens] = STATE(143), - [sym__list_item_upper_alpha_parens] = STATE(766), - [sym__list_lower_roman_period] = STATE(143), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(143), - [sym__list_item_lower_roman_paren] = STATE(770), - [sym__list_lower_roman_parens] = STATE(143), - [sym__list_item_lower_roman_parens] = STATE(773), - [sym__list_upper_roman_period] = STATE(143), - [sym__list_item_upper_roman_period] = STATE(775), - [sym__list_upper_roman_paren] = STATE(143), - [sym__list_item_upper_roman_paren] = STATE(791), - [sym__list_upper_roman_parens] = STATE(143), - [sym__list_item_upper_roman_parens] = STATE(793), - [sym_table] = STATE(206), + [sym__block_with_heading] = STATE(183), + [sym__block_element] = STATE(183), + [sym_heading] = STATE(183), + [sym_list] = STATE(183), + [sym__list_dash] = STATE(144), + [sym__list_item_dash] = STATE(553), + [sym__list_plus] = STATE(144), + [sym__list_item_plus] = STATE(554), + [sym__list_star] = STATE(144), + [sym__list_item_star] = STATE(556), + [sym__list_task] = STATE(144), + [sym__list_item_task] = STATE(558), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(144), + [sym__list_item_definition] = STATE(769), + [sym__list_decimal_period] = STATE(144), + [sym__list_item_decimal_period] = STATE(776), + [sym__list_decimal_paren] = STATE(144), + [sym__list_item_decimal_paren] = STATE(790), + [sym__list_decimal_parens] = STATE(144), + [sym__list_item_decimal_parens] = STATE(793), + [sym__list_lower_alpha_period] = STATE(144), + [sym__list_item_lower_alpha_period] = STATE(822), + [sym__list_lower_alpha_paren] = STATE(144), + [sym__list_item_lower_alpha_paren] = STATE(684), + [sym__list_lower_alpha_parens] = STATE(144), + [sym__list_item_lower_alpha_parens] = STATE(688), + [sym__list_upper_alpha_period] = STATE(144), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(144), + [sym__list_item_upper_alpha_paren] = STATE(705), + [sym__list_upper_alpha_parens] = STATE(144), + [sym__list_item_upper_alpha_parens] = STATE(711), + [sym__list_lower_roman_period] = STATE(144), + [sym__list_item_lower_roman_period] = STATE(712), + [sym__list_lower_roman_paren] = STATE(144), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(144), + [sym__list_item_lower_roman_parens] = STATE(728), + [sym__list_upper_roman_period] = STATE(144), + [sym__list_item_upper_roman_period] = STATE(734), + [sym__list_upper_roman_paren] = STATE(144), + [sym__list_item_upper_roman_paren] = STATE(830), + [sym__list_upper_roman_parens] = STATE(144), + [sym__list_item_upper_roman_parens] = STATE(725), + [sym_table] = STATE(183), [sym__table_row] = STATE(66), [sym_table_header] = STATE(66), [sym_table_separator] = STATE(66), [sym_table_row] = STATE(66), - [sym_footnote] = STATE(206), - [sym_footnote_marker_begin] = STATE(1145), - [sym_div] = STATE(206), - [sym__div_marker_begin] = STATE(1061), - [sym_code_block] = STATE(206), - [sym_raw_block] = STATE(206), - [sym_thematic_break] = STATE(206), - [sym_block_quote] = STATE(206), - [sym__block_quote_prefix] = STATE(219), - [sym_link_reference_definition] = STATE(206), - [sym_block_attribute] = STATE(206), - [sym__paragraph] = STATE(206), - [sym__paragraph_content] = STATE(800), - [sym__paragraph_inline_content] = STATE(799), - [sym__inline] = STATE(629), - [sym__symbol_fallback] = STATE(285), - [aux_sym__list_dash_repeat1] = STATE(351), - [aux_sym__list_plus_repeat1] = STATE(350), - [aux_sym__list_star_repeat1] = STATE(353), - [aux_sym__list_task_repeat1] = STATE(339), - [aux_sym__list_definition_repeat1] = STATE(512), - [aux_sym__list_decimal_period_repeat1] = STATE(513), - [aux_sym__list_decimal_paren_repeat1] = STATE(514), - [aux_sym__list_decimal_parens_repeat1] = STATE(515), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(516), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(518), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(519), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(520), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(521), - [aux_sym__list_lower_roman_period_repeat1] = STATE(579), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(523), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(524), - [aux_sym__list_upper_roman_period_repeat1] = STATE(525), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(526), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(527), + [sym_footnote] = STATE(183), + [sym_footnote_marker_begin] = STATE(1141), + [sym_div] = STATE(183), + [sym__div_marker_begin] = STATE(1057), + [sym_code_block] = STATE(183), + [sym_raw_block] = STATE(183), + [sym_thematic_break] = STATE(183), + [sym_block_quote] = STATE(183), + [sym__block_quote_prefix] = STATE(217), + [sym_link_reference_definition] = STATE(183), + [sym_block_attribute] = STATE(183), + [sym__paragraph] = STATE(183), + [sym__paragraph_content] = STATE(750), + [sym__paragraph_inline_content] = STATE(778), + [sym__inline] = STATE(655), + [sym__symbol_fallback] = STATE(273), + [aux_sym__list_dash_repeat1] = STATE(334), + [aux_sym__list_plus_repeat1] = STATE(335), + [aux_sym__list_star_repeat1] = STATE(336), + [aux_sym__list_task_repeat1] = STATE(309), + [aux_sym__list_definition_repeat1] = STATE(425), + [aux_sym__list_decimal_period_repeat1] = STATE(426), + [aux_sym__list_decimal_paren_repeat1] = STATE(427), + [aux_sym__list_decimal_parens_repeat1] = STATE(428), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(429), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(430), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(431), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(432), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(433), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(434), + [aux_sym__list_lower_roman_period_repeat1] = STATE(435), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(436), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(437), + [aux_sym__list_upper_roman_period_repeat1] = STATE(438), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(439), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(440), [aux_sym_table_repeat1] = STATE(66), [aux_sym_div_repeat1] = STATE(14), - [aux_sym__block_quote_prefix_repeat1] = STATE(232), - [aux_sym__inline_repeat1] = STATE(285), - [anon_sym_LBRACK] = ACTIONS(77), + [aux_sym__block_quote_prefix_repeat1] = STATE(231), + [aux_sym__inline_repeat1] = STATE(273), + [anon_sym_LBRACK] = ACTIONS(181), [anon_sym_LBRACK_CARET] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT] = ACTIONS(11), [aux_sym_identifier_token1] = ACTIONS(11), [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [anon_sym_POUND] = ACTIONS(11), [anon_sym_PERCENT] = ACTIONS(11), [sym__block_close] = ACTIONS(360), [sym__newline] = ACTIONS(238), [sym__heading_begin] = ACTIONS(17), [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(85), + [sym__code_block_begin] = ACTIONS(189), [sym_list_marker_dash] = ACTIONS(23), [sym_list_marker_star] = ACTIONS(25), [sym_list_marker_plus] = ACTIONS(27), @@ -7362,119 +7279,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(57), [sym_list_marker_lower_roman_parens] = ACTIONS(59), [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(87), + [sym__block_quote_begin] = ACTIONS(191), [sym__block_quote_continuation] = ACTIONS(240), - [sym__thematic_break_dash] = ACTIONS(89), - [sym__thematic_break_star] = ACTIONS(89), - [sym__table_header_begin] = ACTIONS(91), - [sym__table_separator_begin] = ACTIONS(93), - [sym__table_row_begin] = ACTIONS(95), + [sym__thematic_break_dash] = ACTIONS(193), + [sym__thematic_break_star] = ACTIONS(193), + [sym__table_header_begin] = ACTIONS(195), + [sym__table_separator_begin] = ACTIONS(197), + [sym__table_row_begin] = ACTIONS(199), }, [21] = { - [sym__block_with_heading] = STATE(206), - [sym__block_element] = STATE(206), - [sym_heading] = STATE(206), - [sym_list] = STATE(206), - [sym__list_dash] = STATE(143), - [sym__list_item_dash] = STATE(687), - [sym__list_plus] = STATE(143), - [sym__list_item_plus] = STATE(691), - [sym__list_star] = STATE(143), - [sym__list_item_star] = STATE(673), - [sym__list_task] = STATE(143), - [sym__list_item_task] = STATE(680), - [sym_list_marker_task] = STATE(48), - [sym__list_definition] = STATE(143), - [sym__list_item_definition] = STATE(804), - [sym__list_decimal_period] = STATE(143), - [sym__list_item_decimal_period] = STATE(837), - [sym__list_decimal_paren] = STATE(143), - [sym__list_item_decimal_paren] = STATE(703), - [sym__list_decimal_parens] = STATE(143), - [sym__list_item_decimal_parens] = STATE(715), - [sym__list_lower_alpha_period] = STATE(143), - [sym__list_item_lower_alpha_period] = STATE(739), - [sym__list_lower_alpha_paren] = STATE(143), - [sym__list_item_lower_alpha_paren] = STATE(754), - [sym__list_lower_alpha_parens] = STATE(143), - [sym__list_item_lower_alpha_parens] = STATE(755), - [sym__list_upper_alpha_period] = STATE(143), - [sym__list_item_upper_alpha_period] = STATE(758), - [sym__list_upper_alpha_paren] = STATE(143), - [sym__list_item_upper_alpha_paren] = STATE(759), - [sym__list_upper_alpha_parens] = STATE(143), - [sym__list_item_upper_alpha_parens] = STATE(766), - [sym__list_lower_roman_period] = STATE(143), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(143), - [sym__list_item_lower_roman_paren] = STATE(770), - [sym__list_lower_roman_parens] = STATE(143), - [sym__list_item_lower_roman_parens] = STATE(773), - [sym__list_upper_roman_period] = STATE(143), - [sym__list_item_upper_roman_period] = STATE(775), - [sym__list_upper_roman_paren] = STATE(143), - [sym__list_item_upper_roman_paren] = STATE(791), - [sym__list_upper_roman_parens] = STATE(143), - [sym__list_item_upper_roman_parens] = STATE(793), - [sym_table] = STATE(206), + [sym__block_with_heading] = STATE(183), + [sym__block_element] = STATE(183), + [sym_heading] = STATE(183), + [sym_list] = STATE(183), + [sym__list_dash] = STATE(144), + [sym__list_item_dash] = STATE(553), + [sym__list_plus] = STATE(144), + [sym__list_item_plus] = STATE(554), + [sym__list_star] = STATE(144), + [sym__list_item_star] = STATE(556), + [sym__list_task] = STATE(144), + [sym__list_item_task] = STATE(558), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(144), + [sym__list_item_definition] = STATE(769), + [sym__list_decimal_period] = STATE(144), + [sym__list_item_decimal_period] = STATE(776), + [sym__list_decimal_paren] = STATE(144), + [sym__list_item_decimal_paren] = STATE(790), + [sym__list_decimal_parens] = STATE(144), + [sym__list_item_decimal_parens] = STATE(793), + [sym__list_lower_alpha_period] = STATE(144), + [sym__list_item_lower_alpha_period] = STATE(822), + [sym__list_lower_alpha_paren] = STATE(144), + [sym__list_item_lower_alpha_paren] = STATE(684), + [sym__list_lower_alpha_parens] = STATE(144), + [sym__list_item_lower_alpha_parens] = STATE(688), + [sym__list_upper_alpha_period] = STATE(144), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(144), + [sym__list_item_upper_alpha_paren] = STATE(705), + [sym__list_upper_alpha_parens] = STATE(144), + [sym__list_item_upper_alpha_parens] = STATE(711), + [sym__list_lower_roman_period] = STATE(144), + [sym__list_item_lower_roman_period] = STATE(712), + [sym__list_lower_roman_paren] = STATE(144), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(144), + [sym__list_item_lower_roman_parens] = STATE(728), + [sym__list_upper_roman_period] = STATE(144), + [sym__list_item_upper_roman_period] = STATE(734), + [sym__list_upper_roman_paren] = STATE(144), + [sym__list_item_upper_roman_paren] = STATE(830), + [sym__list_upper_roman_parens] = STATE(144), + [sym__list_item_upper_roman_parens] = STATE(725), + [sym_table] = STATE(183), [sym__table_row] = STATE(66), [sym_table_header] = STATE(66), [sym_table_separator] = STATE(66), [sym_table_row] = STATE(66), - [sym_footnote] = STATE(206), - [sym_footnote_marker_begin] = STATE(1145), - [sym_div] = STATE(206), - [sym__div_marker_begin] = STATE(1061), - [sym_code_block] = STATE(206), - [sym_raw_block] = STATE(206), - [sym_thematic_break] = STATE(206), - [sym_block_quote] = STATE(206), - [sym__block_quote_prefix] = STATE(220), - [sym_link_reference_definition] = STATE(206), - [sym_block_attribute] = STATE(206), - [sym__paragraph] = STATE(206), - [sym__paragraph_content] = STATE(800), - [sym__paragraph_inline_content] = STATE(799), - [sym__inline] = STATE(629), - [sym__symbol_fallback] = STATE(285), - [aux_sym__list_dash_repeat1] = STATE(351), - [aux_sym__list_plus_repeat1] = STATE(350), - [aux_sym__list_star_repeat1] = STATE(353), - [aux_sym__list_task_repeat1] = STATE(339), - [aux_sym__list_definition_repeat1] = STATE(512), - [aux_sym__list_decimal_period_repeat1] = STATE(513), - [aux_sym__list_decimal_paren_repeat1] = STATE(514), - [aux_sym__list_decimal_parens_repeat1] = STATE(515), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(516), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(518), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(519), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(520), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(521), - [aux_sym__list_lower_roman_period_repeat1] = STATE(579), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(523), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(524), - [aux_sym__list_upper_roman_period_repeat1] = STATE(525), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(526), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(527), + [sym_footnote] = STATE(183), + [sym_footnote_marker_begin] = STATE(1141), + [sym_div] = STATE(183), + [sym__div_marker_begin] = STATE(1057), + [sym_code_block] = STATE(183), + [sym_raw_block] = STATE(183), + [sym_thematic_break] = STATE(183), + [sym_block_quote] = STATE(183), + [sym__block_quote_prefix] = STATE(218), + [sym_link_reference_definition] = STATE(183), + [sym_block_attribute] = STATE(183), + [sym__paragraph] = STATE(183), + [sym__paragraph_content] = STATE(750), + [sym__paragraph_inline_content] = STATE(778), + [sym__inline] = STATE(655), + [sym__symbol_fallback] = STATE(273), + [aux_sym__list_dash_repeat1] = STATE(334), + [aux_sym__list_plus_repeat1] = STATE(335), + [aux_sym__list_star_repeat1] = STATE(336), + [aux_sym__list_task_repeat1] = STATE(309), + [aux_sym__list_definition_repeat1] = STATE(425), + [aux_sym__list_decimal_period_repeat1] = STATE(426), + [aux_sym__list_decimal_paren_repeat1] = STATE(427), + [aux_sym__list_decimal_parens_repeat1] = STATE(428), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(429), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(430), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(431), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(432), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(433), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(434), + [aux_sym__list_lower_roman_period_repeat1] = STATE(435), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(436), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(437), + [aux_sym__list_upper_roman_period_repeat1] = STATE(438), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(439), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(440), [aux_sym_table_repeat1] = STATE(66), - [aux_sym_div_repeat1] = STATE(11), - [aux_sym__block_quote_prefix_repeat1] = STATE(232), - [aux_sym__inline_repeat1] = STATE(285), - [anon_sym_LBRACK] = ACTIONS(77), + [aux_sym_div_repeat1] = STATE(12), + [aux_sym__block_quote_prefix_repeat1] = STATE(231), + [aux_sym__inline_repeat1] = STATE(273), + [anon_sym_LBRACK] = ACTIONS(181), [anon_sym_LBRACK_CARET] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT] = ACTIONS(11), [aux_sym_identifier_token1] = ACTIONS(11), [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [anon_sym_POUND] = ACTIONS(11), [anon_sym_PERCENT] = ACTIONS(11), [sym__block_close] = ACTIONS(362), [sym__newline] = ACTIONS(238), [sym__heading_begin] = ACTIONS(17), [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(85), + [sym__code_block_begin] = ACTIONS(189), [sym_list_marker_dash] = ACTIONS(23), [sym_list_marker_star] = ACTIONS(25), [sym_list_marker_plus] = ACTIONS(27), @@ -7495,113 +7410,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(57), [sym_list_marker_lower_roman_parens] = ACTIONS(59), [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(87), + [sym__block_quote_begin] = ACTIONS(191), [sym__block_quote_continuation] = ACTIONS(240), - [sym__thematic_break_dash] = ACTIONS(89), - [sym__thematic_break_star] = ACTIONS(89), - [sym__table_header_begin] = ACTIONS(91), - [sym__table_separator_begin] = ACTIONS(93), - [sym__table_row_begin] = ACTIONS(95), + [sym__thematic_break_dash] = ACTIONS(193), + [sym__thematic_break_star] = ACTIONS(193), + [sym__table_header_begin] = ACTIONS(195), + [sym__table_separator_begin] = ACTIONS(197), + [sym__table_row_begin] = ACTIONS(199), }, [22] = { - [sym__block_with_heading] = STATE(1063), - [sym__block_element] = STATE(1063), - [sym_heading] = STATE(1063), - [sym_list] = STATE(1063), - [sym__list_dash] = STATE(974), - [sym__list_item_dash] = STATE(687), - [sym__list_plus] = STATE(974), - [sym__list_item_plus] = STATE(691), - [sym__list_star] = STATE(974), - [sym__list_item_star] = STATE(673), - [sym__list_task] = STATE(974), - [sym__list_item_task] = STATE(680), - [sym_list_marker_task] = STATE(48), - [sym__list_definition] = STATE(974), - [sym__list_item_definition] = STATE(804), - [sym__list_decimal_period] = STATE(974), - [sym__list_item_decimal_period] = STATE(837), - [sym__list_decimal_paren] = STATE(974), - [sym__list_item_decimal_paren] = STATE(703), - [sym__list_decimal_parens] = STATE(974), - [sym__list_item_decimal_parens] = STATE(715), - [sym__list_lower_alpha_period] = STATE(974), - [sym__list_item_lower_alpha_period] = STATE(739), - [sym__list_lower_alpha_paren] = STATE(974), - [sym__list_item_lower_alpha_paren] = STATE(754), - [sym__list_lower_alpha_parens] = STATE(974), - [sym__list_item_lower_alpha_parens] = STATE(755), - [sym__list_upper_alpha_period] = STATE(974), - [sym__list_item_upper_alpha_period] = STATE(758), - [sym__list_upper_alpha_paren] = STATE(974), - [sym__list_item_upper_alpha_paren] = STATE(759), - [sym__list_upper_alpha_parens] = STATE(974), - [sym__list_item_upper_alpha_parens] = STATE(766), - [sym__list_lower_roman_period] = STATE(974), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(974), - [sym__list_item_lower_roman_paren] = STATE(770), - [sym__list_lower_roman_parens] = STATE(974), - [sym__list_item_lower_roman_parens] = STATE(773), - [sym__list_upper_roman_period] = STATE(974), - [sym__list_item_upper_roman_period] = STATE(775), - [sym__list_upper_roman_paren] = STATE(974), - [sym__list_item_upper_roman_paren] = STATE(791), - [sym__list_upper_roman_parens] = STATE(974), - [sym__list_item_upper_roman_parens] = STATE(793), - [sym_list_item_content] = STATE(740), - [sym_table] = STATE(1063), - [sym__table_row] = STATE(248), - [sym_table_header] = STATE(248), - [sym_table_separator] = STATE(248), - [sym_table_row] = STATE(248), - [sym_footnote] = STATE(1063), - [sym_footnote_marker_begin] = STATE(1141), - [sym_div] = STATE(1063), - [sym__div_marker_begin] = STATE(1023), - [sym_code_block] = STATE(1063), - [sym_raw_block] = STATE(1063), - [sym_thematic_break] = STATE(1063), - [sym_block_quote] = STATE(1063), - [sym__block_quote_prefix] = STATE(222), - [sym_link_reference_definition] = STATE(1063), - [sym_block_attribute] = STATE(1063), - [sym__paragraph] = STATE(1063), - [sym__paragraph_content] = STATE(738), - [sym__paragraph_inline_content] = STATE(799), - [sym__inline] = STATE(629), - [sym__symbol_fallback] = STATE(285), - [aux_sym__list_dash_repeat1] = STATE(354), - [aux_sym__list_plus_repeat1] = STATE(355), - [aux_sym__list_star_repeat1] = STATE(356), - [aux_sym__list_task_repeat1] = STATE(335), - [aux_sym__list_definition_repeat1] = STATE(479), - [aux_sym__list_decimal_period_repeat1] = STATE(480), - [aux_sym__list_decimal_paren_repeat1] = STATE(481), - [aux_sym__list_decimal_parens_repeat1] = STATE(482), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(483), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(484), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(485), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(486), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(487), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(488), - [aux_sym__list_lower_roman_period_repeat1] = STATE(489), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(490), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(491), - [aux_sym__list_upper_roman_period_repeat1] = STATE(492), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(493), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(494), - [aux_sym_table_repeat1] = STATE(248), - [aux_sym__block_quote_prefix_repeat1] = STATE(235), - [aux_sym__inline_repeat1] = STATE(285), + [sym__block_with_heading] = STATE(1077), + [sym__block_element] = STATE(1077), + [sym_heading] = STATE(1077), + [sym_list] = STATE(1077), + [sym__list_dash] = STATE(998), + [sym__list_item_dash] = STATE(553), + [sym__list_plus] = STATE(998), + [sym__list_item_plus] = STATE(554), + [sym__list_star] = STATE(998), + [sym__list_item_star] = STATE(556), + [sym__list_task] = STATE(998), + [sym__list_item_task] = STATE(558), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(998), + [sym__list_item_definition] = STATE(769), + [sym__list_decimal_period] = STATE(998), + [sym__list_item_decimal_period] = STATE(776), + [sym__list_decimal_paren] = STATE(998), + [sym__list_item_decimal_paren] = STATE(790), + [sym__list_decimal_parens] = STATE(998), + [sym__list_item_decimal_parens] = STATE(793), + [sym__list_lower_alpha_period] = STATE(998), + [sym__list_item_lower_alpha_period] = STATE(822), + [sym__list_lower_alpha_paren] = STATE(998), + [sym__list_item_lower_alpha_paren] = STATE(684), + [sym__list_lower_alpha_parens] = STATE(998), + [sym__list_item_lower_alpha_parens] = STATE(688), + [sym__list_upper_alpha_period] = STATE(998), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(998), + [sym__list_item_upper_alpha_paren] = STATE(705), + [sym__list_upper_alpha_parens] = STATE(998), + [sym__list_item_upper_alpha_parens] = STATE(711), + [sym__list_lower_roman_period] = STATE(998), + [sym__list_item_lower_roman_period] = STATE(712), + [sym__list_lower_roman_paren] = STATE(998), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(998), + [sym__list_item_lower_roman_parens] = STATE(728), + [sym__list_upper_roman_period] = STATE(998), + [sym__list_item_upper_roman_period] = STATE(734), + [sym__list_upper_roman_paren] = STATE(998), + [sym__list_item_upper_roman_paren] = STATE(830), + [sym__list_upper_roman_parens] = STATE(998), + [sym__list_item_upper_roman_parens] = STATE(725), + [sym_list_item_content] = STATE(682), + [sym_table] = STATE(1077), + [sym__table_row] = STATE(241), + [sym_table_header] = STATE(241), + [sym_table_separator] = STATE(241), + [sym_table_row] = STATE(241), + [sym_footnote] = STATE(1077), + [sym_footnote_marker_begin] = STATE(1137), + [sym_div] = STATE(1077), + [sym__div_marker_begin] = STATE(1019), + [sym_code_block] = STATE(1077), + [sym_raw_block] = STATE(1077), + [sym_thematic_break] = STATE(1077), + [sym_block_quote] = STATE(1077), + [sym__block_quote_prefix] = STATE(223), + [sym_link_reference_definition] = STATE(1077), + [sym_block_attribute] = STATE(1077), + [sym__paragraph] = STATE(1077), + [sym__paragraph_content] = STATE(707), + [sym__paragraph_inline_content] = STATE(778), + [sym__inline] = STATE(655), + [sym__symbol_fallback] = STATE(273), + [aux_sym__list_dash_repeat1] = STATE(326), + [aux_sym__list_plus_repeat1] = STATE(329), + [aux_sym__list_star_repeat1] = STATE(330), + [aux_sym__list_task_repeat1] = STATE(298), + [aux_sym__list_definition_repeat1] = STATE(508), + [aux_sym__list_decimal_period_repeat1] = STATE(509), + [aux_sym__list_decimal_paren_repeat1] = STATE(510), + [aux_sym__list_decimal_parens_repeat1] = STATE(511), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(512), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(513), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(514), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(515), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(516), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(517), + [aux_sym__list_lower_roman_period_repeat1] = STATE(526), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(531), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(534), + [aux_sym__list_upper_roman_period_repeat1] = STATE(544), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(441), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(442), + [aux_sym_table_repeat1] = STATE(241), + [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__inline_repeat1] = STATE(273), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(366), [anon_sym_DOT] = ACTIONS(11), [aux_sym_identifier_token1] = ACTIONS(11), [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [anon_sym_POUND] = ACTIONS(11), [anon_sym_PERCENT] = ACTIONS(11), [sym__newline] = ACTIONS(368), [sym__heading_begin] = ACTIONS(370), @@ -7636,104 +7549,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__table_row_begin] = ACTIONS(384), }, [23] = { - [sym__block_with_heading] = STATE(1094), - [sym__block_element] = STATE(1094), - [sym_heading] = STATE(1094), - [sym_list] = STATE(1094), - [sym__list_dash] = STATE(974), - [sym__list_item_dash] = STATE(687), - [sym__list_plus] = STATE(974), - [sym__list_item_plus] = STATE(691), - [sym__list_star] = STATE(974), - [sym__list_item_star] = STATE(673), - [sym__list_task] = STATE(974), - [sym__list_item_task] = STATE(680), - [sym_list_marker_task] = STATE(48), - [sym__list_definition] = STATE(974), - [sym__list_item_definition] = STATE(804), - [sym__list_decimal_period] = STATE(974), - [sym__list_item_decimal_period] = STATE(837), - [sym__list_decimal_paren] = STATE(974), - [sym__list_item_decimal_paren] = STATE(703), - [sym__list_decimal_parens] = STATE(974), - [sym__list_item_decimal_parens] = STATE(715), - [sym__list_lower_alpha_period] = STATE(974), - [sym__list_item_lower_alpha_period] = STATE(739), - [sym__list_lower_alpha_paren] = STATE(974), - [sym__list_item_lower_alpha_paren] = STATE(754), - [sym__list_lower_alpha_parens] = STATE(974), - [sym__list_item_lower_alpha_parens] = STATE(755), - [sym__list_upper_alpha_period] = STATE(974), - [sym__list_item_upper_alpha_period] = STATE(758), - [sym__list_upper_alpha_paren] = STATE(974), - [sym__list_item_upper_alpha_paren] = STATE(759), - [sym__list_upper_alpha_parens] = STATE(974), - [sym__list_item_upper_alpha_parens] = STATE(766), - [sym__list_lower_roman_period] = STATE(974), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(974), - [sym__list_item_lower_roman_paren] = STATE(770), - [sym__list_lower_roman_parens] = STATE(974), - [sym__list_item_lower_roman_parens] = STATE(773), - [sym__list_upper_roman_period] = STATE(974), - [sym__list_item_upper_roman_period] = STATE(775), - [sym__list_upper_roman_paren] = STATE(974), - [sym__list_item_upper_roman_paren] = STATE(791), - [sym__list_upper_roman_parens] = STATE(974), - [sym__list_item_upper_roman_parens] = STATE(793), - [sym_table] = STATE(1094), - [sym__table_row] = STATE(248), - [sym_table_header] = STATE(248), - [sym_table_separator] = STATE(248), - [sym_table_row] = STATE(248), - [sym_footnote] = STATE(1094), - [sym_footnote_marker_begin] = STATE(1141), - [sym_footnote_content] = STATE(648), - [sym_div] = STATE(1094), - [sym__div_marker_begin] = STATE(1023), - [sym_code_block] = STATE(1094), - [sym_raw_block] = STATE(1094), - [sym_thematic_break] = STATE(1094), - [sym_block_quote] = STATE(1094), - [sym__block_quote_prefix] = STATE(222), - [sym_link_reference_definition] = STATE(1094), - [sym_block_attribute] = STATE(1094), - [sym__paragraph] = STATE(1094), - [sym__paragraph_content] = STATE(738), - [sym__paragraph_inline_content] = STATE(799), - [sym__inline] = STATE(629), - [sym__symbol_fallback] = STATE(285), - [aux_sym__list_dash_repeat1] = STATE(354), - [aux_sym__list_plus_repeat1] = STATE(355), - [aux_sym__list_star_repeat1] = STATE(356), - [aux_sym__list_task_repeat1] = STATE(335), - [aux_sym__list_definition_repeat1] = STATE(479), - [aux_sym__list_decimal_period_repeat1] = STATE(480), - [aux_sym__list_decimal_paren_repeat1] = STATE(481), - [aux_sym__list_decimal_parens_repeat1] = STATE(482), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(483), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(484), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(485), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(486), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(487), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(488), - [aux_sym__list_lower_roman_period_repeat1] = STATE(489), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(490), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(491), - [aux_sym__list_upper_roman_period_repeat1] = STATE(492), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(493), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(494), - [aux_sym_table_repeat1] = STATE(248), - [aux_sym__block_quote_prefix_repeat1] = STATE(235), - [aux_sym__inline_repeat1] = STATE(285), + [sym__block_with_heading] = STATE(1090), + [sym__block_element] = STATE(1090), + [sym_heading] = STATE(1090), + [sym_list] = STATE(1090), + [sym__list_dash] = STATE(998), + [sym__list_item_dash] = STATE(553), + [sym__list_plus] = STATE(998), + [sym__list_item_plus] = STATE(554), + [sym__list_star] = STATE(998), + [sym__list_item_star] = STATE(556), + [sym__list_task] = STATE(998), + [sym__list_item_task] = STATE(558), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(998), + [sym__list_item_definition] = STATE(769), + [sym__list_decimal_period] = STATE(998), + [sym__list_item_decimal_period] = STATE(776), + [sym__list_decimal_paren] = STATE(998), + [sym__list_item_decimal_paren] = STATE(790), + [sym__list_decimal_parens] = STATE(998), + [sym__list_item_decimal_parens] = STATE(793), + [sym__list_lower_alpha_period] = STATE(998), + [sym__list_item_lower_alpha_period] = STATE(822), + [sym__list_lower_alpha_paren] = STATE(998), + [sym__list_item_lower_alpha_paren] = STATE(684), + [sym__list_lower_alpha_parens] = STATE(998), + [sym__list_item_lower_alpha_parens] = STATE(688), + [sym__list_upper_alpha_period] = STATE(998), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(998), + [sym__list_item_upper_alpha_paren] = STATE(705), + [sym__list_upper_alpha_parens] = STATE(998), + [sym__list_item_upper_alpha_parens] = STATE(711), + [sym__list_lower_roman_period] = STATE(998), + [sym__list_item_lower_roman_period] = STATE(712), + [sym__list_lower_roman_paren] = STATE(998), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(998), + [sym__list_item_lower_roman_parens] = STATE(728), + [sym__list_upper_roman_period] = STATE(998), + [sym__list_item_upper_roman_period] = STATE(734), + [sym__list_upper_roman_paren] = STATE(998), + [sym__list_item_upper_roman_paren] = STATE(830), + [sym__list_upper_roman_parens] = STATE(998), + [sym__list_item_upper_roman_parens] = STATE(725), + [sym_table] = STATE(1090), + [sym__table_row] = STATE(241), + [sym_table_header] = STATE(241), + [sym_table_separator] = STATE(241), + [sym_table_row] = STATE(241), + [sym_footnote] = STATE(1090), + [sym_footnote_marker_begin] = STATE(1137), + [sym_footnote_content] = STATE(605), + [sym_div] = STATE(1090), + [sym__div_marker_begin] = STATE(1019), + [sym_code_block] = STATE(1090), + [sym_raw_block] = STATE(1090), + [sym_thematic_break] = STATE(1090), + [sym_block_quote] = STATE(1090), + [sym__block_quote_prefix] = STATE(223), + [sym_link_reference_definition] = STATE(1090), + [sym_block_attribute] = STATE(1090), + [sym__paragraph] = STATE(1090), + [sym__paragraph_content] = STATE(707), + [sym__paragraph_inline_content] = STATE(778), + [sym__inline] = STATE(655), + [sym__symbol_fallback] = STATE(273), + [aux_sym__list_dash_repeat1] = STATE(326), + [aux_sym__list_plus_repeat1] = STATE(329), + [aux_sym__list_star_repeat1] = STATE(330), + [aux_sym__list_task_repeat1] = STATE(298), + [aux_sym__list_definition_repeat1] = STATE(508), + [aux_sym__list_decimal_period_repeat1] = STATE(509), + [aux_sym__list_decimal_paren_repeat1] = STATE(510), + [aux_sym__list_decimal_parens_repeat1] = STATE(511), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(512), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(513), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(514), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(515), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(516), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(517), + [aux_sym__list_lower_roman_period_repeat1] = STATE(526), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(531), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(534), + [aux_sym__list_upper_roman_period_repeat1] = STATE(544), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(441), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(442), + [aux_sym_table_repeat1] = STATE(241), + [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__inline_repeat1] = STATE(273), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(366), [anon_sym_DOT] = ACTIONS(11), [aux_sym_identifier_token1] = ACTIONS(11), [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [anon_sym_POUND] = ACTIONS(11), [anon_sym_PERCENT] = ACTIONS(11), [sym__newline] = ACTIONS(386), [sym__heading_begin] = ACTIONS(370), @@ -7768,104 +7679,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__table_row_begin] = ACTIONS(384), }, [24] = { - [sym__block_with_heading] = STATE(1081), - [sym__block_element] = STATE(1081), - [sym_heading] = STATE(1081), - [sym_list] = STATE(1081), - [sym__list_dash] = STATE(974), - [sym__list_item_dash] = STATE(687), - [sym__list_plus] = STATE(974), - [sym__list_item_plus] = STATE(691), - [sym__list_star] = STATE(974), - [sym__list_item_star] = STATE(673), - [sym__list_task] = STATE(974), - [sym__list_item_task] = STATE(680), - [sym_list_marker_task] = STATE(48), - [sym__list_definition] = STATE(974), - [sym__list_item_definition] = STATE(804), - [sym__list_decimal_period] = STATE(974), - [sym__list_item_decimal_period] = STATE(837), - [sym__list_decimal_paren] = STATE(974), - [sym__list_item_decimal_paren] = STATE(703), - [sym__list_decimal_parens] = STATE(974), - [sym__list_item_decimal_parens] = STATE(715), - [sym__list_lower_alpha_period] = STATE(974), - [sym__list_item_lower_alpha_period] = STATE(739), - [sym__list_lower_alpha_paren] = STATE(974), - [sym__list_item_lower_alpha_paren] = STATE(754), - [sym__list_lower_alpha_parens] = STATE(974), - [sym__list_item_lower_alpha_parens] = STATE(755), - [sym__list_upper_alpha_period] = STATE(974), - [sym__list_item_upper_alpha_period] = STATE(758), - [sym__list_upper_alpha_paren] = STATE(974), - [sym__list_item_upper_alpha_paren] = STATE(759), - [sym__list_upper_alpha_parens] = STATE(974), - [sym__list_item_upper_alpha_parens] = STATE(766), - [sym__list_lower_roman_period] = STATE(974), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(974), - [sym__list_item_lower_roman_paren] = STATE(770), - [sym__list_lower_roman_parens] = STATE(974), - [sym__list_item_lower_roman_parens] = STATE(773), - [sym__list_upper_roman_period] = STATE(974), - [sym__list_item_upper_roman_period] = STATE(775), - [sym__list_upper_roman_paren] = STATE(974), - [sym__list_item_upper_roman_paren] = STATE(791), - [sym__list_upper_roman_parens] = STATE(974), - [sym__list_item_upper_roman_parens] = STATE(793), - [sym_list_item_content] = STATE(744), - [sym_table] = STATE(1081), - [sym__table_row] = STATE(248), - [sym_table_header] = STATE(248), - [sym_table_separator] = STATE(248), - [sym_table_row] = STATE(248), - [sym_footnote] = STATE(1081), - [sym_footnote_marker_begin] = STATE(1141), - [sym_div] = STATE(1081), - [sym__div_marker_begin] = STATE(1023), - [sym_code_block] = STATE(1081), - [sym_raw_block] = STATE(1081), - [sym_thematic_break] = STATE(1081), - [sym_block_quote] = STATE(1081), - [sym__block_quote_prefix] = STATE(222), - [sym_link_reference_definition] = STATE(1081), - [sym_block_attribute] = STATE(1081), - [sym__paragraph] = STATE(1081), - [sym__paragraph_content] = STATE(738), - [sym__paragraph_inline_content] = STATE(799), - [sym__inline] = STATE(629), - [sym__symbol_fallback] = STATE(285), - [aux_sym__list_dash_repeat1] = STATE(354), - [aux_sym__list_plus_repeat1] = STATE(355), - [aux_sym__list_star_repeat1] = STATE(356), - [aux_sym__list_task_repeat1] = STATE(335), - [aux_sym__list_definition_repeat1] = STATE(479), - [aux_sym__list_decimal_period_repeat1] = STATE(480), - [aux_sym__list_decimal_paren_repeat1] = STATE(481), - [aux_sym__list_decimal_parens_repeat1] = STATE(482), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(483), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(484), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(485), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(486), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(487), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(488), - [aux_sym__list_lower_roman_period_repeat1] = STATE(489), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(490), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(491), - [aux_sym__list_upper_roman_period_repeat1] = STATE(492), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(493), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(494), - [aux_sym_table_repeat1] = STATE(248), - [aux_sym__block_quote_prefix_repeat1] = STATE(235), - [aux_sym__inline_repeat1] = STATE(285), + [sym__block_with_heading] = STATE(1092), + [sym__block_element] = STATE(1092), + [sym_heading] = STATE(1092), + [sym_list] = STATE(1092), + [sym__list_dash] = STATE(998), + [sym__list_item_dash] = STATE(553), + [sym__list_plus] = STATE(998), + [sym__list_item_plus] = STATE(554), + [sym__list_star] = STATE(998), + [sym__list_item_star] = STATE(556), + [sym__list_task] = STATE(998), + [sym__list_item_task] = STATE(558), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(998), + [sym__list_item_definition] = STATE(769), + [sym__list_decimal_period] = STATE(998), + [sym__list_item_decimal_period] = STATE(776), + [sym__list_decimal_paren] = STATE(998), + [sym__list_item_decimal_paren] = STATE(790), + [sym__list_decimal_parens] = STATE(998), + [sym__list_item_decimal_parens] = STATE(793), + [sym__list_lower_alpha_period] = STATE(998), + [sym__list_item_lower_alpha_period] = STATE(822), + [sym__list_lower_alpha_paren] = STATE(998), + [sym__list_item_lower_alpha_paren] = STATE(684), + [sym__list_lower_alpha_parens] = STATE(998), + [sym__list_item_lower_alpha_parens] = STATE(688), + [sym__list_upper_alpha_period] = STATE(998), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(998), + [sym__list_item_upper_alpha_paren] = STATE(705), + [sym__list_upper_alpha_parens] = STATE(998), + [sym__list_item_upper_alpha_parens] = STATE(711), + [sym__list_lower_roman_period] = STATE(998), + [sym__list_item_lower_roman_period] = STATE(712), + [sym__list_lower_roman_paren] = STATE(998), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(998), + [sym__list_item_lower_roman_parens] = STATE(728), + [sym__list_upper_roman_period] = STATE(998), + [sym__list_item_upper_roman_period] = STATE(734), + [sym__list_upper_roman_paren] = STATE(998), + [sym__list_item_upper_roman_paren] = STATE(830), + [sym__list_upper_roman_parens] = STATE(998), + [sym__list_item_upper_roman_parens] = STATE(725), + [sym_list_item_content] = STATE(708), + [sym_table] = STATE(1092), + [sym__table_row] = STATE(241), + [sym_table_header] = STATE(241), + [sym_table_separator] = STATE(241), + [sym_table_row] = STATE(241), + [sym_footnote] = STATE(1092), + [sym_footnote_marker_begin] = STATE(1137), + [sym_div] = STATE(1092), + [sym__div_marker_begin] = STATE(1019), + [sym_code_block] = STATE(1092), + [sym_raw_block] = STATE(1092), + [sym_thematic_break] = STATE(1092), + [sym_block_quote] = STATE(1092), + [sym__block_quote_prefix] = STATE(223), + [sym_link_reference_definition] = STATE(1092), + [sym_block_attribute] = STATE(1092), + [sym__paragraph] = STATE(1092), + [sym__paragraph_content] = STATE(707), + [sym__paragraph_inline_content] = STATE(778), + [sym__inline] = STATE(655), + [sym__symbol_fallback] = STATE(273), + [aux_sym__list_dash_repeat1] = STATE(326), + [aux_sym__list_plus_repeat1] = STATE(329), + [aux_sym__list_star_repeat1] = STATE(330), + [aux_sym__list_task_repeat1] = STATE(298), + [aux_sym__list_definition_repeat1] = STATE(508), + [aux_sym__list_decimal_period_repeat1] = STATE(509), + [aux_sym__list_decimal_paren_repeat1] = STATE(510), + [aux_sym__list_decimal_parens_repeat1] = STATE(511), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(512), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(513), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(514), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(515), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(516), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(517), + [aux_sym__list_lower_roman_period_repeat1] = STATE(526), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(531), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(534), + [aux_sym__list_upper_roman_period_repeat1] = STATE(544), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(441), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(442), + [aux_sym_table_repeat1] = STATE(241), + [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__inline_repeat1] = STATE(273), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(366), [anon_sym_DOT] = ACTIONS(11), [aux_sym_identifier_token1] = ACTIONS(11), [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [anon_sym_POUND] = ACTIONS(11), [anon_sym_PERCENT] = ACTIONS(11), [sym__newline] = ACTIONS(388), [sym__heading_begin] = ACTIONS(370), @@ -7900,104 +7809,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__table_row_begin] = ACTIONS(384), }, [25] = { - [sym__block_with_heading] = STATE(951), - [sym__block_element] = STATE(951), - [sym_heading] = STATE(951), - [sym_list] = STATE(951), - [sym__list_dash] = STATE(974), - [sym__list_item_dash] = STATE(687), - [sym__list_plus] = STATE(974), - [sym__list_item_plus] = STATE(691), - [sym__list_star] = STATE(974), - [sym__list_item_star] = STATE(673), - [sym__list_task] = STATE(974), - [sym__list_item_task] = STATE(680), - [sym_list_marker_task] = STATE(48), - [sym__list_definition] = STATE(974), - [sym__list_item_definition] = STATE(804), - [sym__list_decimal_period] = STATE(974), - [sym__list_item_decimal_period] = STATE(837), - [sym__list_decimal_paren] = STATE(974), - [sym__list_item_decimal_paren] = STATE(703), - [sym__list_decimal_parens] = STATE(974), - [sym__list_item_decimal_parens] = STATE(715), - [sym__list_lower_alpha_period] = STATE(974), - [sym__list_item_lower_alpha_period] = STATE(739), - [sym__list_lower_alpha_paren] = STATE(974), - [sym__list_item_lower_alpha_paren] = STATE(754), - [sym__list_lower_alpha_parens] = STATE(974), - [sym__list_item_lower_alpha_parens] = STATE(755), - [sym__list_upper_alpha_period] = STATE(974), - [sym__list_item_upper_alpha_period] = STATE(758), - [sym__list_upper_alpha_paren] = STATE(974), - [sym__list_item_upper_alpha_paren] = STATE(759), - [sym__list_upper_alpha_parens] = STATE(974), - [sym__list_item_upper_alpha_parens] = STATE(766), - [sym__list_lower_roman_period] = STATE(974), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(974), - [sym__list_item_lower_roman_paren] = STATE(770), - [sym__list_lower_roman_parens] = STATE(974), - [sym__list_item_lower_roman_parens] = STATE(773), - [sym__list_upper_roman_period] = STATE(974), - [sym__list_item_upper_roman_period] = STATE(775), - [sym__list_upper_roman_paren] = STATE(974), - [sym__list_item_upper_roman_paren] = STATE(791), - [sym__list_upper_roman_parens] = STATE(974), - [sym__list_item_upper_roman_parens] = STATE(793), - [sym_list_item_content] = STATE(681), - [sym_table] = STATE(951), - [sym__table_row] = STATE(248), - [sym_table_header] = STATE(248), - [sym_table_separator] = STATE(248), - [sym_table_row] = STATE(248), - [sym_footnote] = STATE(951), - [sym_footnote_marker_begin] = STATE(1141), - [sym_div] = STATE(951), - [sym__div_marker_begin] = STATE(1023), - [sym_code_block] = STATE(951), - [sym_raw_block] = STATE(951), - [sym_thematic_break] = STATE(951), - [sym_block_quote] = STATE(951), - [sym__block_quote_prefix] = STATE(222), - [sym_link_reference_definition] = STATE(951), - [sym_block_attribute] = STATE(951), - [sym__paragraph] = STATE(951), - [sym__paragraph_content] = STATE(738), - [sym__paragraph_inline_content] = STATE(799), - [sym__inline] = STATE(629), - [sym__symbol_fallback] = STATE(285), - [aux_sym__list_dash_repeat1] = STATE(354), - [aux_sym__list_plus_repeat1] = STATE(355), - [aux_sym__list_star_repeat1] = STATE(356), - [aux_sym__list_task_repeat1] = STATE(335), - [aux_sym__list_definition_repeat1] = STATE(479), - [aux_sym__list_decimal_period_repeat1] = STATE(480), - [aux_sym__list_decimal_paren_repeat1] = STATE(481), - [aux_sym__list_decimal_parens_repeat1] = STATE(482), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(483), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(484), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(485), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(486), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(487), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(488), - [aux_sym__list_lower_roman_period_repeat1] = STATE(489), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(490), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(491), - [aux_sym__list_upper_roman_period_repeat1] = STATE(492), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(493), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(494), - [aux_sym_table_repeat1] = STATE(248), - [aux_sym__block_quote_prefix_repeat1] = STATE(235), - [aux_sym__inline_repeat1] = STATE(285), + [sym__block_with_heading] = STATE(1021), + [sym__block_element] = STATE(1021), + [sym_heading] = STATE(1021), + [sym_list] = STATE(1021), + [sym__list_dash] = STATE(998), + [sym__list_item_dash] = STATE(553), + [sym__list_plus] = STATE(998), + [sym__list_item_plus] = STATE(554), + [sym__list_star] = STATE(998), + [sym__list_item_star] = STATE(556), + [sym__list_task] = STATE(998), + [sym__list_item_task] = STATE(558), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(998), + [sym__list_item_definition] = STATE(769), + [sym__list_decimal_period] = STATE(998), + [sym__list_item_decimal_period] = STATE(776), + [sym__list_decimal_paren] = STATE(998), + [sym__list_item_decimal_paren] = STATE(790), + [sym__list_decimal_parens] = STATE(998), + [sym__list_item_decimal_parens] = STATE(793), + [sym__list_lower_alpha_period] = STATE(998), + [sym__list_item_lower_alpha_period] = STATE(822), + [sym__list_lower_alpha_paren] = STATE(998), + [sym__list_item_lower_alpha_paren] = STATE(684), + [sym__list_lower_alpha_parens] = STATE(998), + [sym__list_item_lower_alpha_parens] = STATE(688), + [sym__list_upper_alpha_period] = STATE(998), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(998), + [sym__list_item_upper_alpha_paren] = STATE(705), + [sym__list_upper_alpha_parens] = STATE(998), + [sym__list_item_upper_alpha_parens] = STATE(711), + [sym__list_lower_roman_period] = STATE(998), + [sym__list_item_lower_roman_period] = STATE(712), + [sym__list_lower_roman_paren] = STATE(998), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(998), + [sym__list_item_lower_roman_parens] = STATE(728), + [sym__list_upper_roman_period] = STATE(998), + [sym__list_item_upper_roman_period] = STATE(734), + [sym__list_upper_roman_paren] = STATE(998), + [sym__list_item_upper_roman_paren] = STATE(830), + [sym__list_upper_roman_parens] = STATE(998), + [sym__list_item_upper_roman_parens] = STATE(725), + [sym_list_item_content] = STATE(600), + [sym_table] = STATE(1021), + [sym__table_row] = STATE(241), + [sym_table_header] = STATE(241), + [sym_table_separator] = STATE(241), + [sym_table_row] = STATE(241), + [sym_footnote] = STATE(1021), + [sym_footnote_marker_begin] = STATE(1137), + [sym_div] = STATE(1021), + [sym__div_marker_begin] = STATE(1019), + [sym_code_block] = STATE(1021), + [sym_raw_block] = STATE(1021), + [sym_thematic_break] = STATE(1021), + [sym_block_quote] = STATE(1021), + [sym__block_quote_prefix] = STATE(223), + [sym_link_reference_definition] = STATE(1021), + [sym_block_attribute] = STATE(1021), + [sym__paragraph] = STATE(1021), + [sym__paragraph_content] = STATE(707), + [sym__paragraph_inline_content] = STATE(778), + [sym__inline] = STATE(655), + [sym__symbol_fallback] = STATE(273), + [aux_sym__list_dash_repeat1] = STATE(326), + [aux_sym__list_plus_repeat1] = STATE(329), + [aux_sym__list_star_repeat1] = STATE(330), + [aux_sym__list_task_repeat1] = STATE(298), + [aux_sym__list_definition_repeat1] = STATE(508), + [aux_sym__list_decimal_period_repeat1] = STATE(509), + [aux_sym__list_decimal_paren_repeat1] = STATE(510), + [aux_sym__list_decimal_parens_repeat1] = STATE(511), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(512), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(513), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(514), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(515), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(516), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(517), + [aux_sym__list_lower_roman_period_repeat1] = STATE(526), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(531), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(534), + [aux_sym__list_upper_roman_period_repeat1] = STATE(544), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(441), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(442), + [aux_sym_table_repeat1] = STATE(241), + [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__inline_repeat1] = STATE(273), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(366), [anon_sym_DOT] = ACTIONS(11), [aux_sym_identifier_token1] = ACTIONS(11), [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [anon_sym_POUND] = ACTIONS(11), [anon_sym_PERCENT] = ACTIONS(11), [sym__newline] = ACTIONS(390), [sym__heading_begin] = ACTIONS(370), @@ -8032,104 +7939,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__table_row_begin] = ACTIONS(384), }, [26] = { - [sym__block_with_heading] = STATE(1096), - [sym__block_element] = STATE(1096), - [sym_heading] = STATE(1096), - [sym_list] = STATE(1096), - [sym__list_dash] = STATE(974), - [sym__list_item_dash] = STATE(687), - [sym__list_plus] = STATE(974), - [sym__list_item_plus] = STATE(691), - [sym__list_star] = STATE(974), - [sym__list_item_star] = STATE(673), - [sym__list_task] = STATE(974), - [sym__list_item_task] = STATE(680), - [sym_list_marker_task] = STATE(48), - [sym__list_definition] = STATE(974), - [sym__list_item_definition] = STATE(804), - [sym__list_decimal_period] = STATE(974), - [sym__list_item_decimal_period] = STATE(837), - [sym__list_decimal_paren] = STATE(974), - [sym__list_item_decimal_paren] = STATE(703), - [sym__list_decimal_parens] = STATE(974), - [sym__list_item_decimal_parens] = STATE(715), - [sym__list_lower_alpha_period] = STATE(974), - [sym__list_item_lower_alpha_period] = STATE(739), - [sym__list_lower_alpha_paren] = STATE(974), - [sym__list_item_lower_alpha_paren] = STATE(754), - [sym__list_lower_alpha_parens] = STATE(974), - [sym__list_item_lower_alpha_parens] = STATE(755), - [sym__list_upper_alpha_period] = STATE(974), - [sym__list_item_upper_alpha_period] = STATE(758), - [sym__list_upper_alpha_paren] = STATE(974), - [sym__list_item_upper_alpha_paren] = STATE(759), - [sym__list_upper_alpha_parens] = STATE(974), - [sym__list_item_upper_alpha_parens] = STATE(766), - [sym__list_lower_roman_period] = STATE(974), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(974), - [sym__list_item_lower_roman_paren] = STATE(770), - [sym__list_lower_roman_parens] = STATE(974), - [sym__list_item_lower_roman_parens] = STATE(773), - [sym__list_upper_roman_period] = STATE(974), - [sym__list_item_upper_roman_period] = STATE(775), - [sym__list_upper_roman_paren] = STATE(974), - [sym__list_item_upper_roman_paren] = STATE(791), - [sym__list_upper_roman_parens] = STATE(974), - [sym__list_item_upper_roman_parens] = STATE(793), - [sym_list_item_content] = STATE(746), - [sym_table] = STATE(1096), - [sym__table_row] = STATE(248), - [sym_table_header] = STATE(248), - [sym_table_separator] = STATE(248), - [sym_table_row] = STATE(248), - [sym_footnote] = STATE(1096), - [sym_footnote_marker_begin] = STATE(1141), - [sym_div] = STATE(1096), - [sym__div_marker_begin] = STATE(1023), - [sym_code_block] = STATE(1096), - [sym_raw_block] = STATE(1096), - [sym_thematic_break] = STATE(1096), - [sym_block_quote] = STATE(1096), - [sym__block_quote_prefix] = STATE(222), - [sym_link_reference_definition] = STATE(1096), - [sym_block_attribute] = STATE(1096), - [sym__paragraph] = STATE(1096), - [sym__paragraph_content] = STATE(738), - [sym__paragraph_inline_content] = STATE(799), - [sym__inline] = STATE(629), - [sym__symbol_fallback] = STATE(285), - [aux_sym__list_dash_repeat1] = STATE(354), - [aux_sym__list_plus_repeat1] = STATE(355), - [aux_sym__list_star_repeat1] = STATE(356), - [aux_sym__list_task_repeat1] = STATE(335), - [aux_sym__list_definition_repeat1] = STATE(479), - [aux_sym__list_decimal_period_repeat1] = STATE(480), - [aux_sym__list_decimal_paren_repeat1] = STATE(481), - [aux_sym__list_decimal_parens_repeat1] = STATE(482), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(483), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(484), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(485), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(486), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(487), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(488), - [aux_sym__list_lower_roman_period_repeat1] = STATE(489), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(490), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(491), - [aux_sym__list_upper_roman_period_repeat1] = STATE(492), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(493), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(494), - [aux_sym_table_repeat1] = STATE(248), - [aux_sym__block_quote_prefix_repeat1] = STATE(235), - [aux_sym__inline_repeat1] = STATE(285), + [sym__block_with_heading] = STATE(1094), + [sym__block_element] = STATE(1094), + [sym_heading] = STATE(1094), + [sym_list] = STATE(1094), + [sym__list_dash] = STATE(998), + [sym__list_item_dash] = STATE(553), + [sym__list_plus] = STATE(998), + [sym__list_item_plus] = STATE(554), + [sym__list_star] = STATE(998), + [sym__list_item_star] = STATE(556), + [sym__list_task] = STATE(998), + [sym__list_item_task] = STATE(558), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(998), + [sym__list_item_definition] = STATE(769), + [sym__list_decimal_period] = STATE(998), + [sym__list_item_decimal_period] = STATE(776), + [sym__list_decimal_paren] = STATE(998), + [sym__list_item_decimal_paren] = STATE(790), + [sym__list_decimal_parens] = STATE(998), + [sym__list_item_decimal_parens] = STATE(793), + [sym__list_lower_alpha_period] = STATE(998), + [sym__list_item_lower_alpha_period] = STATE(822), + [sym__list_lower_alpha_paren] = STATE(998), + [sym__list_item_lower_alpha_paren] = STATE(684), + [sym__list_lower_alpha_parens] = STATE(998), + [sym__list_item_lower_alpha_parens] = STATE(688), + [sym__list_upper_alpha_period] = STATE(998), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(998), + [sym__list_item_upper_alpha_paren] = STATE(705), + [sym__list_upper_alpha_parens] = STATE(998), + [sym__list_item_upper_alpha_parens] = STATE(711), + [sym__list_lower_roman_period] = STATE(998), + [sym__list_item_lower_roman_period] = STATE(712), + [sym__list_lower_roman_paren] = STATE(998), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(998), + [sym__list_item_lower_roman_parens] = STATE(728), + [sym__list_upper_roman_period] = STATE(998), + [sym__list_item_upper_roman_period] = STATE(734), + [sym__list_upper_roman_paren] = STATE(998), + [sym__list_item_upper_roman_paren] = STATE(830), + [sym__list_upper_roman_parens] = STATE(998), + [sym__list_item_upper_roman_parens] = STATE(725), + [sym_list_item_content] = STATE(710), + [sym_table] = STATE(1094), + [sym__table_row] = STATE(241), + [sym_table_header] = STATE(241), + [sym_table_separator] = STATE(241), + [sym_table_row] = STATE(241), + [sym_footnote] = STATE(1094), + [sym_footnote_marker_begin] = STATE(1137), + [sym_div] = STATE(1094), + [sym__div_marker_begin] = STATE(1019), + [sym_code_block] = STATE(1094), + [sym_raw_block] = STATE(1094), + [sym_thematic_break] = STATE(1094), + [sym_block_quote] = STATE(1094), + [sym__block_quote_prefix] = STATE(223), + [sym_link_reference_definition] = STATE(1094), + [sym_block_attribute] = STATE(1094), + [sym__paragraph] = STATE(1094), + [sym__paragraph_content] = STATE(707), + [sym__paragraph_inline_content] = STATE(778), + [sym__inline] = STATE(655), + [sym__symbol_fallback] = STATE(273), + [aux_sym__list_dash_repeat1] = STATE(326), + [aux_sym__list_plus_repeat1] = STATE(329), + [aux_sym__list_star_repeat1] = STATE(330), + [aux_sym__list_task_repeat1] = STATE(298), + [aux_sym__list_definition_repeat1] = STATE(508), + [aux_sym__list_decimal_period_repeat1] = STATE(509), + [aux_sym__list_decimal_paren_repeat1] = STATE(510), + [aux_sym__list_decimal_parens_repeat1] = STATE(511), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(512), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(513), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(514), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(515), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(516), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(517), + [aux_sym__list_lower_roman_period_repeat1] = STATE(526), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(531), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(534), + [aux_sym__list_upper_roman_period_repeat1] = STATE(544), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(441), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(442), + [aux_sym_table_repeat1] = STATE(241), + [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__inline_repeat1] = STATE(273), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(366), [anon_sym_DOT] = ACTIONS(11), [aux_sym_identifier_token1] = ACTIONS(11), [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [anon_sym_POUND] = ACTIONS(11), [anon_sym_PERCENT] = ACTIONS(11), [sym__newline] = ACTIONS(392), [sym__heading_begin] = ACTIONS(370), @@ -8164,106 +8069,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__table_row_begin] = ACTIONS(384), }, [27] = { - [sym__block_with_heading] = STATE(951), - [sym__block_element] = STATE(951), - [sym_heading] = STATE(951), - [sym_list] = STATE(951), - [sym__list_dash] = STATE(974), - [sym__list_item_dash] = STATE(687), - [sym__list_plus] = STATE(974), - [sym__list_item_plus] = STATE(691), - [sym__list_star] = STATE(974), - [sym__list_item_star] = STATE(673), - [sym__list_task] = STATE(974), - [sym__list_item_task] = STATE(680), - [sym_list_marker_task] = STATE(48), - [sym__list_definition] = STATE(974), - [sym__list_item_definition] = STATE(804), - [sym__list_decimal_period] = STATE(974), - [sym__list_item_decimal_period] = STATE(837), - [sym__list_decimal_paren] = STATE(974), - [sym__list_item_decimal_paren] = STATE(703), - [sym__list_decimal_parens] = STATE(974), - [sym__list_item_decimal_parens] = STATE(715), - [sym__list_lower_alpha_period] = STATE(974), - [sym__list_item_lower_alpha_period] = STATE(739), - [sym__list_lower_alpha_paren] = STATE(974), - [sym__list_item_lower_alpha_paren] = STATE(754), - [sym__list_lower_alpha_parens] = STATE(974), - [sym__list_item_lower_alpha_parens] = STATE(755), - [sym__list_upper_alpha_period] = STATE(974), - [sym__list_item_upper_alpha_period] = STATE(758), - [sym__list_upper_alpha_paren] = STATE(974), - [sym__list_item_upper_alpha_paren] = STATE(759), - [sym__list_upper_alpha_parens] = STATE(974), - [sym__list_item_upper_alpha_parens] = STATE(766), - [sym__list_lower_roman_period] = STATE(974), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(974), - [sym__list_item_lower_roman_paren] = STATE(770), - [sym__list_lower_roman_parens] = STATE(974), - [sym__list_item_lower_roman_parens] = STATE(773), - [sym__list_upper_roman_period] = STATE(974), - [sym__list_item_upper_roman_period] = STATE(775), - [sym__list_upper_roman_paren] = STATE(974), - [sym__list_item_upper_roman_paren] = STATE(791), - [sym__list_upper_roman_parens] = STATE(974), - [sym__list_item_upper_roman_parens] = STATE(793), - [sym_list_item_content] = STATE(584), - [sym_table] = STATE(951), - [sym__table_row] = STATE(248), - [sym_table_header] = STATE(248), - [sym_table_separator] = STATE(248), - [sym_table_row] = STATE(248), - [sym_footnote] = STATE(951), - [sym_footnote_marker_begin] = STATE(1141), - [sym_div] = STATE(951), - [sym__div_marker_begin] = STATE(1023), - [sym_code_block] = STATE(951), - [sym_raw_block] = STATE(951), - [sym_thematic_break] = STATE(951), - [sym_block_quote] = STATE(951), - [sym__block_quote_prefix] = STATE(222), - [sym_link_reference_definition] = STATE(951), - [sym_block_attribute] = STATE(951), - [sym__paragraph] = STATE(951), - [sym__paragraph_content] = STATE(738), - [sym__paragraph_inline_content] = STATE(799), - [sym__inline] = STATE(629), - [sym__symbol_fallback] = STATE(285), - [aux_sym__list_dash_repeat1] = STATE(354), - [aux_sym__list_plus_repeat1] = STATE(355), - [aux_sym__list_star_repeat1] = STATE(356), - [aux_sym__list_task_repeat1] = STATE(335), - [aux_sym__list_definition_repeat1] = STATE(479), - [aux_sym__list_decimal_period_repeat1] = STATE(480), - [aux_sym__list_decimal_paren_repeat1] = STATE(481), - [aux_sym__list_decimal_parens_repeat1] = STATE(482), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(483), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(484), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(485), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(486), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(487), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(488), - [aux_sym__list_lower_roman_period_repeat1] = STATE(489), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(490), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(491), - [aux_sym__list_upper_roman_period_repeat1] = STATE(492), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(493), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(494), - [aux_sym_table_repeat1] = STATE(248), - [aux_sym__block_quote_prefix_repeat1] = STATE(235), - [aux_sym__inline_repeat1] = STATE(285), + [sym__block_with_heading] = STATE(913), + [sym__block_element] = STATE(913), + [sym_heading] = STATE(913), + [sym_list] = STATE(913), + [sym__list_dash] = STATE(998), + [sym__list_item_dash] = STATE(553), + [sym__list_plus] = STATE(998), + [sym__list_item_plus] = STATE(554), + [sym__list_star] = STATE(998), + [sym__list_item_star] = STATE(556), + [sym__list_task] = STATE(998), + [sym__list_item_task] = STATE(558), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(998), + [sym__list_item_definition] = STATE(769), + [sym__list_decimal_period] = STATE(998), + [sym__list_item_decimal_period] = STATE(776), + [sym__list_decimal_paren] = STATE(998), + [sym__list_item_decimal_paren] = STATE(790), + [sym__list_decimal_parens] = STATE(998), + [sym__list_item_decimal_parens] = STATE(793), + [sym__list_lower_alpha_period] = STATE(998), + [sym__list_item_lower_alpha_period] = STATE(822), + [sym__list_lower_alpha_paren] = STATE(998), + [sym__list_item_lower_alpha_paren] = STATE(684), + [sym__list_lower_alpha_parens] = STATE(998), + [sym__list_item_lower_alpha_parens] = STATE(688), + [sym__list_upper_alpha_period] = STATE(998), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(998), + [sym__list_item_upper_alpha_paren] = STATE(705), + [sym__list_upper_alpha_parens] = STATE(998), + [sym__list_item_upper_alpha_parens] = STATE(711), + [sym__list_lower_roman_period] = STATE(998), + [sym__list_item_lower_roman_period] = STATE(712), + [sym__list_lower_roman_paren] = STATE(998), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(998), + [sym__list_item_lower_roman_parens] = STATE(728), + [sym__list_upper_roman_period] = STATE(998), + [sym__list_item_upper_roman_period] = STATE(734), + [sym__list_upper_roman_paren] = STATE(998), + [sym__list_item_upper_roman_paren] = STATE(830), + [sym__list_upper_roman_parens] = STATE(998), + [sym__list_item_upper_roman_parens] = STATE(725), + [sym_list_item_content] = STATE(674), + [sym_table] = STATE(913), + [sym__table_row] = STATE(241), + [sym_table_header] = STATE(241), + [sym_table_separator] = STATE(241), + [sym_table_row] = STATE(241), + [sym_footnote] = STATE(913), + [sym_footnote_marker_begin] = STATE(1137), + [sym_div] = STATE(913), + [sym__div_marker_begin] = STATE(1019), + [sym_code_block] = STATE(913), + [sym_raw_block] = STATE(913), + [sym_thematic_break] = STATE(913), + [sym_block_quote] = STATE(913), + [sym__block_quote_prefix] = STATE(223), + [sym_link_reference_definition] = STATE(913), + [sym_block_attribute] = STATE(913), + [sym__paragraph] = STATE(913), + [sym__paragraph_content] = STATE(707), + [sym__paragraph_inline_content] = STATE(778), + [sym__inline] = STATE(655), + [sym__symbol_fallback] = STATE(273), + [aux_sym__list_dash_repeat1] = STATE(326), + [aux_sym__list_plus_repeat1] = STATE(329), + [aux_sym__list_star_repeat1] = STATE(330), + [aux_sym__list_task_repeat1] = STATE(298), + [aux_sym__list_definition_repeat1] = STATE(508), + [aux_sym__list_decimal_period_repeat1] = STATE(509), + [aux_sym__list_decimal_paren_repeat1] = STATE(510), + [aux_sym__list_decimal_parens_repeat1] = STATE(511), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(512), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(513), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(514), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(515), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(516), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(517), + [aux_sym__list_lower_roman_period_repeat1] = STATE(526), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(531), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(534), + [aux_sym__list_upper_roman_period_repeat1] = STATE(544), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(441), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(442), + [aux_sym_table_repeat1] = STATE(241), + [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__inline_repeat1] = STATE(273), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(366), [anon_sym_DOT] = ACTIONS(11), [aux_sym_identifier_token1] = ACTIONS(11), [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [anon_sym_POUND] = ACTIONS(11), [anon_sym_PERCENT] = ACTIONS(11), - [sym__newline] = ACTIONS(390), + [sym__newline] = ACTIONS(394), [sym__heading_begin] = ACTIONS(370), [sym__div_begin] = ACTIONS(19), [sym__code_block_begin] = ACTIONS(372), @@ -8296,106 +8199,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__table_row_begin] = ACTIONS(384), }, [28] = { - [sym__block_with_heading] = STATE(1025), - [sym__block_element] = STATE(1025), - [sym_heading] = STATE(1025), - [sym_list] = STATE(1025), - [sym__list_dash] = STATE(974), - [sym__list_item_dash] = STATE(687), - [sym__list_plus] = STATE(974), - [sym__list_item_plus] = STATE(691), - [sym__list_star] = STATE(974), - [sym__list_item_star] = STATE(673), - [sym__list_task] = STATE(974), - [sym__list_item_task] = STATE(680), - [sym_list_marker_task] = STATE(48), - [sym__list_definition] = STATE(974), - [sym__list_item_definition] = STATE(804), - [sym__list_decimal_period] = STATE(974), - [sym__list_item_decimal_period] = STATE(837), - [sym__list_decimal_paren] = STATE(974), - [sym__list_item_decimal_paren] = STATE(703), - [sym__list_decimal_parens] = STATE(974), - [sym__list_item_decimal_parens] = STATE(715), - [sym__list_lower_alpha_period] = STATE(974), - [sym__list_item_lower_alpha_period] = STATE(739), - [sym__list_lower_alpha_paren] = STATE(974), - [sym__list_item_lower_alpha_paren] = STATE(754), - [sym__list_lower_alpha_parens] = STATE(974), - [sym__list_item_lower_alpha_parens] = STATE(755), - [sym__list_upper_alpha_period] = STATE(974), - [sym__list_item_upper_alpha_period] = STATE(758), - [sym__list_upper_alpha_paren] = STATE(974), - [sym__list_item_upper_alpha_paren] = STATE(759), - [sym__list_upper_alpha_parens] = STATE(974), - [sym__list_item_upper_alpha_parens] = STATE(766), - [sym__list_lower_roman_period] = STATE(974), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(974), - [sym__list_item_lower_roman_paren] = STATE(770), - [sym__list_lower_roman_parens] = STATE(974), - [sym__list_item_lower_roman_parens] = STATE(773), - [sym__list_upper_roman_period] = STATE(974), - [sym__list_item_upper_roman_period] = STATE(775), - [sym__list_upper_roman_paren] = STATE(974), - [sym__list_item_upper_roman_paren] = STATE(791), - [sym__list_upper_roman_parens] = STATE(974), - [sym__list_item_upper_roman_parens] = STATE(793), - [sym_list_item_content] = STATE(585), - [sym_table] = STATE(1025), - [sym__table_row] = STATE(248), - [sym_table_header] = STATE(248), - [sym_table_separator] = STATE(248), - [sym_table_row] = STATE(248), - [sym_footnote] = STATE(1025), - [sym_footnote_marker_begin] = STATE(1141), - [sym_div] = STATE(1025), - [sym__div_marker_begin] = STATE(1023), - [sym_code_block] = STATE(1025), - [sym_raw_block] = STATE(1025), - [sym_thematic_break] = STATE(1025), - [sym_block_quote] = STATE(1025), - [sym__block_quote_prefix] = STATE(222), - [sym_link_reference_definition] = STATE(1025), - [sym_block_attribute] = STATE(1025), - [sym__paragraph] = STATE(1025), - [sym__paragraph_content] = STATE(738), - [sym__paragraph_inline_content] = STATE(799), - [sym__inline] = STATE(629), - [sym__symbol_fallback] = STATE(285), - [aux_sym__list_dash_repeat1] = STATE(354), - [aux_sym__list_plus_repeat1] = STATE(355), - [aux_sym__list_star_repeat1] = STATE(356), - [aux_sym__list_task_repeat1] = STATE(335), - [aux_sym__list_definition_repeat1] = STATE(479), - [aux_sym__list_decimal_period_repeat1] = STATE(480), - [aux_sym__list_decimal_paren_repeat1] = STATE(481), - [aux_sym__list_decimal_parens_repeat1] = STATE(482), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(483), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(484), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(485), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(486), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(487), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(488), - [aux_sym__list_lower_roman_period_repeat1] = STATE(489), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(490), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(491), - [aux_sym__list_upper_roman_period_repeat1] = STATE(492), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(493), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(494), - [aux_sym_table_repeat1] = STATE(248), - [aux_sym__block_quote_prefix_repeat1] = STATE(235), - [aux_sym__inline_repeat1] = STATE(285), + [sym__block_with_heading] = STATE(1021), + [sym__block_element] = STATE(1021), + [sym_heading] = STATE(1021), + [sym_list] = STATE(1021), + [sym__list_dash] = STATE(998), + [sym__list_item_dash] = STATE(553), + [sym__list_plus] = STATE(998), + [sym__list_item_plus] = STATE(554), + [sym__list_star] = STATE(998), + [sym__list_item_star] = STATE(556), + [sym__list_task] = STATE(998), + [sym__list_item_task] = STATE(558), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(998), + [sym__list_item_definition] = STATE(769), + [sym__list_decimal_period] = STATE(998), + [sym__list_item_decimal_period] = STATE(776), + [sym__list_decimal_paren] = STATE(998), + [sym__list_item_decimal_paren] = STATE(790), + [sym__list_decimal_parens] = STATE(998), + [sym__list_item_decimal_parens] = STATE(793), + [sym__list_lower_alpha_period] = STATE(998), + [sym__list_item_lower_alpha_period] = STATE(822), + [sym__list_lower_alpha_paren] = STATE(998), + [sym__list_item_lower_alpha_paren] = STATE(684), + [sym__list_lower_alpha_parens] = STATE(998), + [sym__list_item_lower_alpha_parens] = STATE(688), + [sym__list_upper_alpha_period] = STATE(998), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(998), + [sym__list_item_upper_alpha_paren] = STATE(705), + [sym__list_upper_alpha_parens] = STATE(998), + [sym__list_item_upper_alpha_parens] = STATE(711), + [sym__list_lower_roman_period] = STATE(998), + [sym__list_item_lower_roman_period] = STATE(712), + [sym__list_lower_roman_paren] = STATE(998), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(998), + [sym__list_item_lower_roman_parens] = STATE(728), + [sym__list_upper_roman_period] = STATE(998), + [sym__list_item_upper_roman_period] = STATE(734), + [sym__list_upper_roman_paren] = STATE(998), + [sym__list_item_upper_roman_paren] = STATE(830), + [sym__list_upper_roman_parens] = STATE(998), + [sym__list_item_upper_roman_parens] = STATE(725), + [sym_list_item_content] = STATE(547), + [sym_table] = STATE(1021), + [sym__table_row] = STATE(241), + [sym_table_header] = STATE(241), + [sym_table_separator] = STATE(241), + [sym_table_row] = STATE(241), + [sym_footnote] = STATE(1021), + [sym_footnote_marker_begin] = STATE(1137), + [sym_div] = STATE(1021), + [sym__div_marker_begin] = STATE(1019), + [sym_code_block] = STATE(1021), + [sym_raw_block] = STATE(1021), + [sym_thematic_break] = STATE(1021), + [sym_block_quote] = STATE(1021), + [sym__block_quote_prefix] = STATE(223), + [sym_link_reference_definition] = STATE(1021), + [sym_block_attribute] = STATE(1021), + [sym__paragraph] = STATE(1021), + [sym__paragraph_content] = STATE(707), + [sym__paragraph_inline_content] = STATE(778), + [sym__inline] = STATE(655), + [sym__symbol_fallback] = STATE(273), + [aux_sym__list_dash_repeat1] = STATE(326), + [aux_sym__list_plus_repeat1] = STATE(329), + [aux_sym__list_star_repeat1] = STATE(330), + [aux_sym__list_task_repeat1] = STATE(298), + [aux_sym__list_definition_repeat1] = STATE(508), + [aux_sym__list_decimal_period_repeat1] = STATE(509), + [aux_sym__list_decimal_paren_repeat1] = STATE(510), + [aux_sym__list_decimal_parens_repeat1] = STATE(511), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(512), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(513), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(514), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(515), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(516), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(517), + [aux_sym__list_lower_roman_period_repeat1] = STATE(526), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(531), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(534), + [aux_sym__list_upper_roman_period_repeat1] = STATE(544), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(441), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(442), + [aux_sym_table_repeat1] = STATE(241), + [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__inline_repeat1] = STATE(273), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(366), [anon_sym_DOT] = ACTIONS(11), [aux_sym_identifier_token1] = ACTIONS(11), [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [anon_sym_POUND] = ACTIONS(11), [anon_sym_PERCENT] = ACTIONS(11), - [sym__newline] = ACTIONS(394), + [sym__newline] = ACTIONS(390), [sym__heading_begin] = ACTIONS(370), [sym__div_begin] = ACTIONS(19), [sym__code_block_begin] = ACTIONS(372), @@ -8428,104 +8329,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__table_row_begin] = ACTIONS(384), }, [29] = { - [sym__block_with_heading] = STATE(1044), - [sym__block_element] = STATE(1044), - [sym_heading] = STATE(1044), - [sym_list] = STATE(1044), - [sym__list_dash] = STATE(974), - [sym__list_item_dash] = STATE(687), - [sym__list_plus] = STATE(974), - [sym__list_item_plus] = STATE(691), - [sym__list_star] = STATE(974), - [sym__list_item_star] = STATE(673), - [sym__list_task] = STATE(974), - [sym__list_item_task] = STATE(680), - [sym_list_marker_task] = STATE(48), - [sym__list_definition] = STATE(974), - [sym__list_item_definition] = STATE(804), - [sym__list_decimal_period] = STATE(974), - [sym__list_item_decimal_period] = STATE(837), - [sym__list_decimal_paren] = STATE(974), - [sym__list_item_decimal_paren] = STATE(703), - [sym__list_decimal_parens] = STATE(974), - [sym__list_item_decimal_parens] = STATE(715), - [sym__list_lower_alpha_period] = STATE(974), - [sym__list_item_lower_alpha_period] = STATE(739), - [sym__list_lower_alpha_paren] = STATE(974), - [sym__list_item_lower_alpha_paren] = STATE(754), - [sym__list_lower_alpha_parens] = STATE(974), - [sym__list_item_lower_alpha_parens] = STATE(755), - [sym__list_upper_alpha_period] = STATE(974), - [sym__list_item_upper_alpha_period] = STATE(758), - [sym__list_upper_alpha_paren] = STATE(974), - [sym__list_item_upper_alpha_paren] = STATE(759), - [sym__list_upper_alpha_parens] = STATE(974), - [sym__list_item_upper_alpha_parens] = STATE(766), - [sym__list_lower_roman_period] = STATE(974), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(974), - [sym__list_item_lower_roman_paren] = STATE(770), - [sym__list_lower_roman_parens] = STATE(974), - [sym__list_item_lower_roman_parens] = STATE(773), - [sym__list_upper_roman_period] = STATE(974), - [sym__list_item_upper_roman_period] = STATE(775), - [sym__list_upper_roman_paren] = STATE(974), - [sym__list_item_upper_roman_paren] = STATE(791), - [sym__list_upper_roman_parens] = STATE(974), - [sym__list_item_upper_roman_parens] = STATE(793), - [sym_list_item_content] = STATE(587), - [sym_table] = STATE(1044), - [sym__table_row] = STATE(248), - [sym_table_header] = STATE(248), - [sym_table_separator] = STATE(248), - [sym_table_row] = STATE(248), - [sym_footnote] = STATE(1044), - [sym_footnote_marker_begin] = STATE(1141), - [sym_div] = STATE(1044), - [sym__div_marker_begin] = STATE(1023), - [sym_code_block] = STATE(1044), - [sym_raw_block] = STATE(1044), - [sym_thematic_break] = STATE(1044), - [sym_block_quote] = STATE(1044), - [sym__block_quote_prefix] = STATE(222), - [sym_link_reference_definition] = STATE(1044), - [sym_block_attribute] = STATE(1044), - [sym__paragraph] = STATE(1044), - [sym__paragraph_content] = STATE(738), - [sym__paragraph_inline_content] = STATE(799), - [sym__inline] = STATE(629), - [sym__symbol_fallback] = STATE(285), - [aux_sym__list_dash_repeat1] = STATE(354), - [aux_sym__list_plus_repeat1] = STATE(355), - [aux_sym__list_star_repeat1] = STATE(356), - [aux_sym__list_task_repeat1] = STATE(335), - [aux_sym__list_definition_repeat1] = STATE(479), - [aux_sym__list_decimal_period_repeat1] = STATE(480), - [aux_sym__list_decimal_paren_repeat1] = STATE(481), - [aux_sym__list_decimal_parens_repeat1] = STATE(482), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(483), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(484), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(485), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(486), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(487), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(488), - [aux_sym__list_lower_roman_period_repeat1] = STATE(489), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(490), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(491), - [aux_sym__list_upper_roman_period_repeat1] = STATE(492), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(493), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(494), - [aux_sym_table_repeat1] = STATE(248), - [aux_sym__block_quote_prefix_repeat1] = STATE(235), - [aux_sym__inline_repeat1] = STATE(285), + [sym__block_with_heading] = STATE(1040), + [sym__block_element] = STATE(1040), + [sym_heading] = STATE(1040), + [sym_list] = STATE(1040), + [sym__list_dash] = STATE(998), + [sym__list_item_dash] = STATE(553), + [sym__list_plus] = STATE(998), + [sym__list_item_plus] = STATE(554), + [sym__list_star] = STATE(998), + [sym__list_item_star] = STATE(556), + [sym__list_task] = STATE(998), + [sym__list_item_task] = STATE(558), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(998), + [sym__list_item_definition] = STATE(769), + [sym__list_decimal_period] = STATE(998), + [sym__list_item_decimal_period] = STATE(776), + [sym__list_decimal_paren] = STATE(998), + [sym__list_item_decimal_paren] = STATE(790), + [sym__list_decimal_parens] = STATE(998), + [sym__list_item_decimal_parens] = STATE(793), + [sym__list_lower_alpha_period] = STATE(998), + [sym__list_item_lower_alpha_period] = STATE(822), + [sym__list_lower_alpha_paren] = STATE(998), + [sym__list_item_lower_alpha_paren] = STATE(684), + [sym__list_lower_alpha_parens] = STATE(998), + [sym__list_item_lower_alpha_parens] = STATE(688), + [sym__list_upper_alpha_period] = STATE(998), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(998), + [sym__list_item_upper_alpha_paren] = STATE(705), + [sym__list_upper_alpha_parens] = STATE(998), + [sym__list_item_upper_alpha_parens] = STATE(711), + [sym__list_lower_roman_period] = STATE(998), + [sym__list_item_lower_roman_period] = STATE(712), + [sym__list_lower_roman_paren] = STATE(998), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(998), + [sym__list_item_lower_roman_parens] = STATE(728), + [sym__list_upper_roman_period] = STATE(998), + [sym__list_item_upper_roman_period] = STATE(734), + [sym__list_upper_roman_paren] = STATE(998), + [sym__list_item_upper_roman_paren] = STATE(830), + [sym__list_upper_roman_parens] = STATE(998), + [sym__list_item_upper_roman_parens] = STATE(725), + [sym_list_item_content] = STATE(548), + [sym_table] = STATE(1040), + [sym__table_row] = STATE(241), + [sym_table_header] = STATE(241), + [sym_table_separator] = STATE(241), + [sym_table_row] = STATE(241), + [sym_footnote] = STATE(1040), + [sym_footnote_marker_begin] = STATE(1137), + [sym_div] = STATE(1040), + [sym__div_marker_begin] = STATE(1019), + [sym_code_block] = STATE(1040), + [sym_raw_block] = STATE(1040), + [sym_thematic_break] = STATE(1040), + [sym_block_quote] = STATE(1040), + [sym__block_quote_prefix] = STATE(223), + [sym_link_reference_definition] = STATE(1040), + [sym_block_attribute] = STATE(1040), + [sym__paragraph] = STATE(1040), + [sym__paragraph_content] = STATE(707), + [sym__paragraph_inline_content] = STATE(778), + [sym__inline] = STATE(655), + [sym__symbol_fallback] = STATE(273), + [aux_sym__list_dash_repeat1] = STATE(326), + [aux_sym__list_plus_repeat1] = STATE(329), + [aux_sym__list_star_repeat1] = STATE(330), + [aux_sym__list_task_repeat1] = STATE(298), + [aux_sym__list_definition_repeat1] = STATE(508), + [aux_sym__list_decimal_period_repeat1] = STATE(509), + [aux_sym__list_decimal_paren_repeat1] = STATE(510), + [aux_sym__list_decimal_parens_repeat1] = STATE(511), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(512), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(513), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(514), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(515), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(516), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(517), + [aux_sym__list_lower_roman_period_repeat1] = STATE(526), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(531), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(534), + [aux_sym__list_upper_roman_period_repeat1] = STATE(544), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(441), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(442), + [aux_sym_table_repeat1] = STATE(241), + [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__inline_repeat1] = STATE(273), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(366), [anon_sym_DOT] = ACTIONS(11), [aux_sym_identifier_token1] = ACTIONS(11), [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [anon_sym_POUND] = ACTIONS(11), [anon_sym_PERCENT] = ACTIONS(11), [sym__newline] = ACTIONS(396), [sym__heading_begin] = ACTIONS(370), @@ -8560,104 +8459,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__table_row_begin] = ACTIONS(384), }, [30] = { - [sym__block_with_heading] = STATE(1108), - [sym__block_element] = STATE(1108), - [sym_heading] = STATE(1108), - [sym_list] = STATE(1108), - [sym__list_dash] = STATE(974), - [sym__list_item_dash] = STATE(687), - [sym__list_plus] = STATE(974), - [sym__list_item_plus] = STATE(691), - [sym__list_star] = STATE(974), - [sym__list_item_star] = STATE(673), - [sym__list_task] = STATE(974), - [sym__list_item_task] = STATE(680), - [sym_list_marker_task] = STATE(48), - [sym__list_definition] = STATE(974), - [sym__list_item_definition] = STATE(804), - [sym__list_decimal_period] = STATE(974), - [sym__list_item_decimal_period] = STATE(837), - [sym__list_decimal_paren] = STATE(974), - [sym__list_item_decimal_paren] = STATE(703), - [sym__list_decimal_parens] = STATE(974), - [sym__list_item_decimal_parens] = STATE(715), - [sym__list_lower_alpha_period] = STATE(974), - [sym__list_item_lower_alpha_period] = STATE(739), - [sym__list_lower_alpha_paren] = STATE(974), - [sym__list_item_lower_alpha_paren] = STATE(754), - [sym__list_lower_alpha_parens] = STATE(974), - [sym__list_item_lower_alpha_parens] = STATE(755), - [sym__list_upper_alpha_period] = STATE(974), - [sym__list_item_upper_alpha_period] = STATE(758), - [sym__list_upper_alpha_paren] = STATE(974), - [sym__list_item_upper_alpha_paren] = STATE(759), - [sym__list_upper_alpha_parens] = STATE(974), - [sym__list_item_upper_alpha_parens] = STATE(766), - [sym__list_lower_roman_period] = STATE(974), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(974), - [sym__list_item_lower_roman_paren] = STATE(770), - [sym__list_lower_roman_parens] = STATE(974), - [sym__list_item_lower_roman_parens] = STATE(773), - [sym__list_upper_roman_period] = STATE(974), - [sym__list_item_upper_roman_period] = STATE(775), - [sym__list_upper_roman_paren] = STATE(974), - [sym__list_item_upper_roman_paren] = STATE(791), - [sym__list_upper_roman_parens] = STATE(974), - [sym__list_item_upper_roman_parens] = STATE(793), - [sym_list_item_content] = STATE(588), - [sym_table] = STATE(1108), - [sym__table_row] = STATE(248), - [sym_table_header] = STATE(248), - [sym_table_separator] = STATE(248), - [sym_table_row] = STATE(248), - [sym_footnote] = STATE(1108), - [sym_footnote_marker_begin] = STATE(1141), - [sym_div] = STATE(1108), - [sym__div_marker_begin] = STATE(1023), - [sym_code_block] = STATE(1108), - [sym_raw_block] = STATE(1108), - [sym_thematic_break] = STATE(1108), - [sym_block_quote] = STATE(1108), - [sym__block_quote_prefix] = STATE(222), - [sym_link_reference_definition] = STATE(1108), - [sym_block_attribute] = STATE(1108), - [sym__paragraph] = STATE(1108), - [sym__paragraph_content] = STATE(738), - [sym__paragraph_inline_content] = STATE(799), - [sym__inline] = STATE(629), - [sym__symbol_fallback] = STATE(285), - [aux_sym__list_dash_repeat1] = STATE(354), - [aux_sym__list_plus_repeat1] = STATE(355), - [aux_sym__list_star_repeat1] = STATE(356), - [aux_sym__list_task_repeat1] = STATE(335), - [aux_sym__list_definition_repeat1] = STATE(479), - [aux_sym__list_decimal_period_repeat1] = STATE(480), - [aux_sym__list_decimal_paren_repeat1] = STATE(481), - [aux_sym__list_decimal_parens_repeat1] = STATE(482), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(483), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(484), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(485), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(486), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(487), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(488), - [aux_sym__list_lower_roman_period_repeat1] = STATE(489), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(490), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(491), - [aux_sym__list_upper_roman_period_repeat1] = STATE(492), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(493), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(494), - [aux_sym_table_repeat1] = STATE(248), - [aux_sym__block_quote_prefix_repeat1] = STATE(235), - [aux_sym__inline_repeat1] = STATE(285), + [sym__block_with_heading] = STATE(1104), + [sym__block_element] = STATE(1104), + [sym_heading] = STATE(1104), + [sym_list] = STATE(1104), + [sym__list_dash] = STATE(998), + [sym__list_item_dash] = STATE(553), + [sym__list_plus] = STATE(998), + [sym__list_item_plus] = STATE(554), + [sym__list_star] = STATE(998), + [sym__list_item_star] = STATE(556), + [sym__list_task] = STATE(998), + [sym__list_item_task] = STATE(558), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(998), + [sym__list_item_definition] = STATE(769), + [sym__list_decimal_period] = STATE(998), + [sym__list_item_decimal_period] = STATE(776), + [sym__list_decimal_paren] = STATE(998), + [sym__list_item_decimal_paren] = STATE(790), + [sym__list_decimal_parens] = STATE(998), + [sym__list_item_decimal_parens] = STATE(793), + [sym__list_lower_alpha_period] = STATE(998), + [sym__list_item_lower_alpha_period] = STATE(822), + [sym__list_lower_alpha_paren] = STATE(998), + [sym__list_item_lower_alpha_paren] = STATE(684), + [sym__list_lower_alpha_parens] = STATE(998), + [sym__list_item_lower_alpha_parens] = STATE(688), + [sym__list_upper_alpha_period] = STATE(998), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(998), + [sym__list_item_upper_alpha_paren] = STATE(705), + [sym__list_upper_alpha_parens] = STATE(998), + [sym__list_item_upper_alpha_parens] = STATE(711), + [sym__list_lower_roman_period] = STATE(998), + [sym__list_item_lower_roman_period] = STATE(712), + [sym__list_lower_roman_paren] = STATE(998), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(998), + [sym__list_item_lower_roman_parens] = STATE(728), + [sym__list_upper_roman_period] = STATE(998), + [sym__list_item_upper_roman_period] = STATE(734), + [sym__list_upper_roman_paren] = STATE(998), + [sym__list_item_upper_roman_paren] = STATE(830), + [sym__list_upper_roman_parens] = STATE(998), + [sym__list_item_upper_roman_parens] = STATE(725), + [sym_list_item_content] = STATE(549), + [sym_table] = STATE(1104), + [sym__table_row] = STATE(241), + [sym_table_header] = STATE(241), + [sym_table_separator] = STATE(241), + [sym_table_row] = STATE(241), + [sym_footnote] = STATE(1104), + [sym_footnote_marker_begin] = STATE(1137), + [sym_div] = STATE(1104), + [sym__div_marker_begin] = STATE(1019), + [sym_code_block] = STATE(1104), + [sym_raw_block] = STATE(1104), + [sym_thematic_break] = STATE(1104), + [sym_block_quote] = STATE(1104), + [sym__block_quote_prefix] = STATE(223), + [sym_link_reference_definition] = STATE(1104), + [sym_block_attribute] = STATE(1104), + [sym__paragraph] = STATE(1104), + [sym__paragraph_content] = STATE(707), + [sym__paragraph_inline_content] = STATE(778), + [sym__inline] = STATE(655), + [sym__symbol_fallback] = STATE(273), + [aux_sym__list_dash_repeat1] = STATE(326), + [aux_sym__list_plus_repeat1] = STATE(329), + [aux_sym__list_star_repeat1] = STATE(330), + [aux_sym__list_task_repeat1] = STATE(298), + [aux_sym__list_definition_repeat1] = STATE(508), + [aux_sym__list_decimal_period_repeat1] = STATE(509), + [aux_sym__list_decimal_paren_repeat1] = STATE(510), + [aux_sym__list_decimal_parens_repeat1] = STATE(511), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(512), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(513), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(514), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(515), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(516), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(517), + [aux_sym__list_lower_roman_period_repeat1] = STATE(526), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(531), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(534), + [aux_sym__list_upper_roman_period_repeat1] = STATE(544), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(441), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(442), + [aux_sym_table_repeat1] = STATE(241), + [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__inline_repeat1] = STATE(273), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(366), [anon_sym_DOT] = ACTIONS(11), [aux_sym_identifier_token1] = ACTIONS(11), [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [anon_sym_POUND] = ACTIONS(11), [anon_sym_PERCENT] = ACTIONS(11), [sym__newline] = ACTIONS(398), [sym__heading_begin] = ACTIONS(370), @@ -8692,104 +8589,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__table_row_begin] = ACTIONS(384), }, [31] = { - [sym__block_with_heading] = STATE(1097), - [sym__block_element] = STATE(1097), - [sym_heading] = STATE(1097), - [sym_list] = STATE(1097), - [sym__list_dash] = STATE(974), - [sym__list_item_dash] = STATE(687), - [sym__list_plus] = STATE(974), - [sym__list_item_plus] = STATE(691), - [sym__list_star] = STATE(974), - [sym__list_item_star] = STATE(673), - [sym__list_task] = STATE(974), - [sym__list_item_task] = STATE(680), - [sym_list_marker_task] = STATE(48), - [sym__list_definition] = STATE(974), - [sym__list_item_definition] = STATE(804), - [sym__list_decimal_period] = STATE(974), - [sym__list_item_decimal_period] = STATE(837), - [sym__list_decimal_paren] = STATE(974), - [sym__list_item_decimal_paren] = STATE(703), - [sym__list_decimal_parens] = STATE(974), - [sym__list_item_decimal_parens] = STATE(715), - [sym__list_lower_alpha_period] = STATE(974), - [sym__list_item_lower_alpha_period] = STATE(739), - [sym__list_lower_alpha_paren] = STATE(974), - [sym__list_item_lower_alpha_paren] = STATE(754), - [sym__list_lower_alpha_parens] = STATE(974), - [sym__list_item_lower_alpha_parens] = STATE(755), - [sym__list_upper_alpha_period] = STATE(974), - [sym__list_item_upper_alpha_period] = STATE(758), - [sym__list_upper_alpha_paren] = STATE(974), - [sym__list_item_upper_alpha_paren] = STATE(759), - [sym__list_upper_alpha_parens] = STATE(974), - [sym__list_item_upper_alpha_parens] = STATE(766), - [sym__list_lower_roman_period] = STATE(974), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(974), - [sym__list_item_lower_roman_paren] = STATE(770), - [sym__list_lower_roman_parens] = STATE(974), - [sym__list_item_lower_roman_parens] = STATE(773), - [sym__list_upper_roman_period] = STATE(974), - [sym__list_item_upper_roman_period] = STATE(775), - [sym__list_upper_roman_paren] = STATE(974), - [sym__list_item_upper_roman_paren] = STATE(791), - [sym__list_upper_roman_parens] = STATE(974), - [sym__list_item_upper_roman_parens] = STATE(793), - [sym_list_item_content] = STATE(748), - [sym_table] = STATE(1097), - [sym__table_row] = STATE(248), - [sym_table_header] = STATE(248), - [sym_table_separator] = STATE(248), - [sym_table_row] = STATE(248), - [sym_footnote] = STATE(1097), - [sym_footnote_marker_begin] = STATE(1141), - [sym_div] = STATE(1097), - [sym__div_marker_begin] = STATE(1023), - [sym_code_block] = STATE(1097), - [sym_raw_block] = STATE(1097), - [sym_thematic_break] = STATE(1097), - [sym_block_quote] = STATE(1097), - [sym__block_quote_prefix] = STATE(222), - [sym_link_reference_definition] = STATE(1097), - [sym_block_attribute] = STATE(1097), - [sym__paragraph] = STATE(1097), - [sym__paragraph_content] = STATE(738), - [sym__paragraph_inline_content] = STATE(799), - [sym__inline] = STATE(629), - [sym__symbol_fallback] = STATE(285), - [aux_sym__list_dash_repeat1] = STATE(354), - [aux_sym__list_plus_repeat1] = STATE(355), - [aux_sym__list_star_repeat1] = STATE(356), - [aux_sym__list_task_repeat1] = STATE(335), - [aux_sym__list_definition_repeat1] = STATE(479), - [aux_sym__list_decimal_period_repeat1] = STATE(480), - [aux_sym__list_decimal_paren_repeat1] = STATE(481), - [aux_sym__list_decimal_parens_repeat1] = STATE(482), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(483), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(484), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(485), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(486), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(487), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(488), - [aux_sym__list_lower_roman_period_repeat1] = STATE(489), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(490), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(491), - [aux_sym__list_upper_roman_period_repeat1] = STATE(492), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(493), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(494), - [aux_sym_table_repeat1] = STATE(248), - [aux_sym__block_quote_prefix_repeat1] = STATE(235), - [aux_sym__inline_repeat1] = STATE(285), + [sym__block_with_heading] = STATE(1095), + [sym__block_element] = STATE(1095), + [sym_heading] = STATE(1095), + [sym_list] = STATE(1095), + [sym__list_dash] = STATE(998), + [sym__list_item_dash] = STATE(553), + [sym__list_plus] = STATE(998), + [sym__list_item_plus] = STATE(554), + [sym__list_star] = STATE(998), + [sym__list_item_star] = STATE(556), + [sym__list_task] = STATE(998), + [sym__list_item_task] = STATE(558), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(998), + [sym__list_item_definition] = STATE(769), + [sym__list_decimal_period] = STATE(998), + [sym__list_item_decimal_period] = STATE(776), + [sym__list_decimal_paren] = STATE(998), + [sym__list_item_decimal_paren] = STATE(790), + [sym__list_decimal_parens] = STATE(998), + [sym__list_item_decimal_parens] = STATE(793), + [sym__list_lower_alpha_period] = STATE(998), + [sym__list_item_lower_alpha_period] = STATE(822), + [sym__list_lower_alpha_paren] = STATE(998), + [sym__list_item_lower_alpha_paren] = STATE(684), + [sym__list_lower_alpha_parens] = STATE(998), + [sym__list_item_lower_alpha_parens] = STATE(688), + [sym__list_upper_alpha_period] = STATE(998), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(998), + [sym__list_item_upper_alpha_paren] = STATE(705), + [sym__list_upper_alpha_parens] = STATE(998), + [sym__list_item_upper_alpha_parens] = STATE(711), + [sym__list_lower_roman_period] = STATE(998), + [sym__list_item_lower_roman_period] = STATE(712), + [sym__list_lower_roman_paren] = STATE(998), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(998), + [sym__list_item_lower_roman_parens] = STATE(728), + [sym__list_upper_roman_period] = STATE(998), + [sym__list_item_upper_roman_period] = STATE(734), + [sym__list_upper_roman_paren] = STATE(998), + [sym__list_item_upper_roman_paren] = STATE(830), + [sym__list_upper_roman_parens] = STATE(998), + [sym__list_item_upper_roman_parens] = STATE(725), + [sym_list_item_content] = STATE(713), + [sym_table] = STATE(1095), + [sym__table_row] = STATE(241), + [sym_table_header] = STATE(241), + [sym_table_separator] = STATE(241), + [sym_table_row] = STATE(241), + [sym_footnote] = STATE(1095), + [sym_footnote_marker_begin] = STATE(1137), + [sym_div] = STATE(1095), + [sym__div_marker_begin] = STATE(1019), + [sym_code_block] = STATE(1095), + [sym_raw_block] = STATE(1095), + [sym_thematic_break] = STATE(1095), + [sym_block_quote] = STATE(1095), + [sym__block_quote_prefix] = STATE(223), + [sym_link_reference_definition] = STATE(1095), + [sym_block_attribute] = STATE(1095), + [sym__paragraph] = STATE(1095), + [sym__paragraph_content] = STATE(707), + [sym__paragraph_inline_content] = STATE(778), + [sym__inline] = STATE(655), + [sym__symbol_fallback] = STATE(273), + [aux_sym__list_dash_repeat1] = STATE(326), + [aux_sym__list_plus_repeat1] = STATE(329), + [aux_sym__list_star_repeat1] = STATE(330), + [aux_sym__list_task_repeat1] = STATE(298), + [aux_sym__list_definition_repeat1] = STATE(508), + [aux_sym__list_decimal_period_repeat1] = STATE(509), + [aux_sym__list_decimal_paren_repeat1] = STATE(510), + [aux_sym__list_decimal_parens_repeat1] = STATE(511), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(512), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(513), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(514), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(515), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(516), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(517), + [aux_sym__list_lower_roman_period_repeat1] = STATE(526), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(531), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(534), + [aux_sym__list_upper_roman_period_repeat1] = STATE(544), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(441), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(442), + [aux_sym_table_repeat1] = STATE(241), + [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__inline_repeat1] = STATE(273), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(366), [anon_sym_DOT] = ACTIONS(11), [aux_sym_identifier_token1] = ACTIONS(11), [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [anon_sym_POUND] = ACTIONS(11), [anon_sym_PERCENT] = ACTIONS(11), [sym__newline] = ACTIONS(400), [sym__heading_begin] = ACTIONS(370), @@ -8824,104 +8719,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__table_row_begin] = ACTIONS(384), }, [32] = { - [sym__block_with_heading] = STATE(1098), - [sym__block_element] = STATE(1098), - [sym_heading] = STATE(1098), - [sym_list] = STATE(1098), - [sym__list_dash] = STATE(974), - [sym__list_item_dash] = STATE(687), - [sym__list_plus] = STATE(974), - [sym__list_item_plus] = STATE(691), - [sym__list_star] = STATE(974), - [sym__list_item_star] = STATE(673), - [sym__list_task] = STATE(974), - [sym__list_item_task] = STATE(680), - [sym_list_marker_task] = STATE(48), - [sym__list_definition] = STATE(974), - [sym__list_item_definition] = STATE(804), - [sym__list_decimal_period] = STATE(974), - [sym__list_item_decimal_period] = STATE(837), - [sym__list_decimal_paren] = STATE(974), - [sym__list_item_decimal_paren] = STATE(703), - [sym__list_decimal_parens] = STATE(974), - [sym__list_item_decimal_parens] = STATE(715), - [sym__list_lower_alpha_period] = STATE(974), - [sym__list_item_lower_alpha_period] = STATE(739), - [sym__list_lower_alpha_paren] = STATE(974), - [sym__list_item_lower_alpha_paren] = STATE(754), - [sym__list_lower_alpha_parens] = STATE(974), - [sym__list_item_lower_alpha_parens] = STATE(755), - [sym__list_upper_alpha_period] = STATE(974), - [sym__list_item_upper_alpha_period] = STATE(758), - [sym__list_upper_alpha_paren] = STATE(974), - [sym__list_item_upper_alpha_paren] = STATE(759), - [sym__list_upper_alpha_parens] = STATE(974), - [sym__list_item_upper_alpha_parens] = STATE(766), - [sym__list_lower_roman_period] = STATE(974), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(974), - [sym__list_item_lower_roman_paren] = STATE(770), - [sym__list_lower_roman_parens] = STATE(974), - [sym__list_item_lower_roman_parens] = STATE(773), - [sym__list_upper_roman_period] = STATE(974), - [sym__list_item_upper_roman_period] = STATE(775), - [sym__list_upper_roman_paren] = STATE(974), - [sym__list_item_upper_roman_paren] = STATE(791), - [sym__list_upper_roman_parens] = STATE(974), - [sym__list_item_upper_roman_parens] = STATE(793), - [sym_list_item_content] = STATE(750), - [sym_table] = STATE(1098), - [sym__table_row] = STATE(248), - [sym_table_header] = STATE(248), - [sym_table_separator] = STATE(248), - [sym_table_row] = STATE(248), - [sym_footnote] = STATE(1098), - [sym_footnote_marker_begin] = STATE(1141), - [sym_div] = STATE(1098), - [sym__div_marker_begin] = STATE(1023), - [sym_code_block] = STATE(1098), - [sym_raw_block] = STATE(1098), - [sym_thematic_break] = STATE(1098), - [sym_block_quote] = STATE(1098), - [sym__block_quote_prefix] = STATE(222), - [sym_link_reference_definition] = STATE(1098), - [sym_block_attribute] = STATE(1098), - [sym__paragraph] = STATE(1098), - [sym__paragraph_content] = STATE(738), - [sym__paragraph_inline_content] = STATE(799), - [sym__inline] = STATE(629), - [sym__symbol_fallback] = STATE(285), - [aux_sym__list_dash_repeat1] = STATE(354), - [aux_sym__list_plus_repeat1] = STATE(355), - [aux_sym__list_star_repeat1] = STATE(356), - [aux_sym__list_task_repeat1] = STATE(335), - [aux_sym__list_definition_repeat1] = STATE(479), - [aux_sym__list_decimal_period_repeat1] = STATE(480), - [aux_sym__list_decimal_paren_repeat1] = STATE(481), - [aux_sym__list_decimal_parens_repeat1] = STATE(482), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(483), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(484), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(485), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(486), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(487), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(488), - [aux_sym__list_lower_roman_period_repeat1] = STATE(489), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(490), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(491), - [aux_sym__list_upper_roman_period_repeat1] = STATE(492), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(493), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(494), - [aux_sym_table_repeat1] = STATE(248), - [aux_sym__block_quote_prefix_repeat1] = STATE(235), - [aux_sym__inline_repeat1] = STATE(285), + [sym__block_with_heading] = STATE(1096), + [sym__block_element] = STATE(1096), + [sym_heading] = STATE(1096), + [sym_list] = STATE(1096), + [sym__list_dash] = STATE(998), + [sym__list_item_dash] = STATE(553), + [sym__list_plus] = STATE(998), + [sym__list_item_plus] = STATE(554), + [sym__list_star] = STATE(998), + [sym__list_item_star] = STATE(556), + [sym__list_task] = STATE(998), + [sym__list_item_task] = STATE(558), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(998), + [sym__list_item_definition] = STATE(769), + [sym__list_decimal_period] = STATE(998), + [sym__list_item_decimal_period] = STATE(776), + [sym__list_decimal_paren] = STATE(998), + [sym__list_item_decimal_paren] = STATE(790), + [sym__list_decimal_parens] = STATE(998), + [sym__list_item_decimal_parens] = STATE(793), + [sym__list_lower_alpha_period] = STATE(998), + [sym__list_item_lower_alpha_period] = STATE(822), + [sym__list_lower_alpha_paren] = STATE(998), + [sym__list_item_lower_alpha_paren] = STATE(684), + [sym__list_lower_alpha_parens] = STATE(998), + [sym__list_item_lower_alpha_parens] = STATE(688), + [sym__list_upper_alpha_period] = STATE(998), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(998), + [sym__list_item_upper_alpha_paren] = STATE(705), + [sym__list_upper_alpha_parens] = STATE(998), + [sym__list_item_upper_alpha_parens] = STATE(711), + [sym__list_lower_roman_period] = STATE(998), + [sym__list_item_lower_roman_period] = STATE(712), + [sym__list_lower_roman_paren] = STATE(998), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(998), + [sym__list_item_lower_roman_parens] = STATE(728), + [sym__list_upper_roman_period] = STATE(998), + [sym__list_item_upper_roman_period] = STATE(734), + [sym__list_upper_roman_paren] = STATE(998), + [sym__list_item_upper_roman_paren] = STATE(830), + [sym__list_upper_roman_parens] = STATE(998), + [sym__list_item_upper_roman_parens] = STATE(725), + [sym_list_item_content] = STATE(714), + [sym_table] = STATE(1096), + [sym__table_row] = STATE(241), + [sym_table_header] = STATE(241), + [sym_table_separator] = STATE(241), + [sym_table_row] = STATE(241), + [sym_footnote] = STATE(1096), + [sym_footnote_marker_begin] = STATE(1137), + [sym_div] = STATE(1096), + [sym__div_marker_begin] = STATE(1019), + [sym_code_block] = STATE(1096), + [sym_raw_block] = STATE(1096), + [sym_thematic_break] = STATE(1096), + [sym_block_quote] = STATE(1096), + [sym__block_quote_prefix] = STATE(223), + [sym_link_reference_definition] = STATE(1096), + [sym_block_attribute] = STATE(1096), + [sym__paragraph] = STATE(1096), + [sym__paragraph_content] = STATE(707), + [sym__paragraph_inline_content] = STATE(778), + [sym__inline] = STATE(655), + [sym__symbol_fallback] = STATE(273), + [aux_sym__list_dash_repeat1] = STATE(326), + [aux_sym__list_plus_repeat1] = STATE(329), + [aux_sym__list_star_repeat1] = STATE(330), + [aux_sym__list_task_repeat1] = STATE(298), + [aux_sym__list_definition_repeat1] = STATE(508), + [aux_sym__list_decimal_period_repeat1] = STATE(509), + [aux_sym__list_decimal_paren_repeat1] = STATE(510), + [aux_sym__list_decimal_parens_repeat1] = STATE(511), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(512), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(513), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(514), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(515), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(516), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(517), + [aux_sym__list_lower_roman_period_repeat1] = STATE(526), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(531), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(534), + [aux_sym__list_upper_roman_period_repeat1] = STATE(544), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(441), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(442), + [aux_sym_table_repeat1] = STATE(241), + [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__inline_repeat1] = STATE(273), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(366), [anon_sym_DOT] = ACTIONS(11), [aux_sym_identifier_token1] = ACTIONS(11), [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [anon_sym_POUND] = ACTIONS(11), [anon_sym_PERCENT] = ACTIONS(11), [sym__newline] = ACTIONS(402), [sym__heading_begin] = ACTIONS(370), @@ -8956,104 +8849,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__table_row_begin] = ACTIONS(384), }, [33] = { - [sym__block_with_heading] = STATE(1099), - [sym__block_element] = STATE(1099), - [sym_heading] = STATE(1099), - [sym_list] = STATE(1099), - [sym__list_dash] = STATE(974), - [sym__list_item_dash] = STATE(687), - [sym__list_plus] = STATE(974), - [sym__list_item_plus] = STATE(691), - [sym__list_star] = STATE(974), - [sym__list_item_star] = STATE(673), - [sym__list_task] = STATE(974), - [sym__list_item_task] = STATE(680), - [sym_list_marker_task] = STATE(48), - [sym__list_definition] = STATE(974), - [sym__list_item_definition] = STATE(804), - [sym__list_decimal_period] = STATE(974), - [sym__list_item_decimal_period] = STATE(837), - [sym__list_decimal_paren] = STATE(974), - [sym__list_item_decimal_paren] = STATE(703), - [sym__list_decimal_parens] = STATE(974), - [sym__list_item_decimal_parens] = STATE(715), - [sym__list_lower_alpha_period] = STATE(974), - [sym__list_item_lower_alpha_period] = STATE(739), - [sym__list_lower_alpha_paren] = STATE(974), - [sym__list_item_lower_alpha_paren] = STATE(754), - [sym__list_lower_alpha_parens] = STATE(974), - [sym__list_item_lower_alpha_parens] = STATE(755), - [sym__list_upper_alpha_period] = STATE(974), - [sym__list_item_upper_alpha_period] = STATE(758), - [sym__list_upper_alpha_paren] = STATE(974), - [sym__list_item_upper_alpha_paren] = STATE(759), - [sym__list_upper_alpha_parens] = STATE(974), - [sym__list_item_upper_alpha_parens] = STATE(766), - [sym__list_lower_roman_period] = STATE(974), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(974), - [sym__list_item_lower_roman_paren] = STATE(770), - [sym__list_lower_roman_parens] = STATE(974), - [sym__list_item_lower_roman_parens] = STATE(773), - [sym__list_upper_roman_period] = STATE(974), - [sym__list_item_upper_roman_period] = STATE(775), - [sym__list_upper_roman_paren] = STATE(974), - [sym__list_item_upper_roman_paren] = STATE(791), - [sym__list_upper_roman_parens] = STATE(974), - [sym__list_item_upper_roman_parens] = STATE(793), - [sym_list_item_content] = STATE(751), - [sym_table] = STATE(1099), - [sym__table_row] = STATE(248), - [sym_table_header] = STATE(248), - [sym_table_separator] = STATE(248), - [sym_table_row] = STATE(248), - [sym_footnote] = STATE(1099), - [sym_footnote_marker_begin] = STATE(1141), - [sym_div] = STATE(1099), - [sym__div_marker_begin] = STATE(1023), - [sym_code_block] = STATE(1099), - [sym_raw_block] = STATE(1099), - [sym_thematic_break] = STATE(1099), - [sym_block_quote] = STATE(1099), - [sym__block_quote_prefix] = STATE(222), - [sym_link_reference_definition] = STATE(1099), - [sym_block_attribute] = STATE(1099), - [sym__paragraph] = STATE(1099), - [sym__paragraph_content] = STATE(738), - [sym__paragraph_inline_content] = STATE(799), - [sym__inline] = STATE(629), - [sym__symbol_fallback] = STATE(285), - [aux_sym__list_dash_repeat1] = STATE(354), - [aux_sym__list_plus_repeat1] = STATE(355), - [aux_sym__list_star_repeat1] = STATE(356), - [aux_sym__list_task_repeat1] = STATE(335), - [aux_sym__list_definition_repeat1] = STATE(479), - [aux_sym__list_decimal_period_repeat1] = STATE(480), - [aux_sym__list_decimal_paren_repeat1] = STATE(481), - [aux_sym__list_decimal_parens_repeat1] = STATE(482), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(483), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(484), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(485), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(486), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(487), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(488), - [aux_sym__list_lower_roman_period_repeat1] = STATE(489), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(490), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(491), - [aux_sym__list_upper_roman_period_repeat1] = STATE(492), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(493), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(494), - [aux_sym_table_repeat1] = STATE(248), - [aux_sym__block_quote_prefix_repeat1] = STATE(235), - [aux_sym__inline_repeat1] = STATE(285), + [sym__block_with_heading] = STATE(1097), + [sym__block_element] = STATE(1097), + [sym_heading] = STATE(1097), + [sym_list] = STATE(1097), + [sym__list_dash] = STATE(998), + [sym__list_item_dash] = STATE(553), + [sym__list_plus] = STATE(998), + [sym__list_item_plus] = STATE(554), + [sym__list_star] = STATE(998), + [sym__list_item_star] = STATE(556), + [sym__list_task] = STATE(998), + [sym__list_item_task] = STATE(558), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(998), + [sym__list_item_definition] = STATE(769), + [sym__list_decimal_period] = STATE(998), + [sym__list_item_decimal_period] = STATE(776), + [sym__list_decimal_paren] = STATE(998), + [sym__list_item_decimal_paren] = STATE(790), + [sym__list_decimal_parens] = STATE(998), + [sym__list_item_decimal_parens] = STATE(793), + [sym__list_lower_alpha_period] = STATE(998), + [sym__list_item_lower_alpha_period] = STATE(822), + [sym__list_lower_alpha_paren] = STATE(998), + [sym__list_item_lower_alpha_paren] = STATE(684), + [sym__list_lower_alpha_parens] = STATE(998), + [sym__list_item_lower_alpha_parens] = STATE(688), + [sym__list_upper_alpha_period] = STATE(998), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(998), + [sym__list_item_upper_alpha_paren] = STATE(705), + [sym__list_upper_alpha_parens] = STATE(998), + [sym__list_item_upper_alpha_parens] = STATE(711), + [sym__list_lower_roman_period] = STATE(998), + [sym__list_item_lower_roman_period] = STATE(712), + [sym__list_lower_roman_paren] = STATE(998), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(998), + [sym__list_item_lower_roman_parens] = STATE(728), + [sym__list_upper_roman_period] = STATE(998), + [sym__list_item_upper_roman_period] = STATE(734), + [sym__list_upper_roman_paren] = STATE(998), + [sym__list_item_upper_roman_paren] = STATE(830), + [sym__list_upper_roman_parens] = STATE(998), + [sym__list_item_upper_roman_parens] = STATE(725), + [sym_list_item_content] = STATE(715), + [sym_table] = STATE(1097), + [sym__table_row] = STATE(241), + [sym_table_header] = STATE(241), + [sym_table_separator] = STATE(241), + [sym_table_row] = STATE(241), + [sym_footnote] = STATE(1097), + [sym_footnote_marker_begin] = STATE(1137), + [sym_div] = STATE(1097), + [sym__div_marker_begin] = STATE(1019), + [sym_code_block] = STATE(1097), + [sym_raw_block] = STATE(1097), + [sym_thematic_break] = STATE(1097), + [sym_block_quote] = STATE(1097), + [sym__block_quote_prefix] = STATE(223), + [sym_link_reference_definition] = STATE(1097), + [sym_block_attribute] = STATE(1097), + [sym__paragraph] = STATE(1097), + [sym__paragraph_content] = STATE(707), + [sym__paragraph_inline_content] = STATE(778), + [sym__inline] = STATE(655), + [sym__symbol_fallback] = STATE(273), + [aux_sym__list_dash_repeat1] = STATE(326), + [aux_sym__list_plus_repeat1] = STATE(329), + [aux_sym__list_star_repeat1] = STATE(330), + [aux_sym__list_task_repeat1] = STATE(298), + [aux_sym__list_definition_repeat1] = STATE(508), + [aux_sym__list_decimal_period_repeat1] = STATE(509), + [aux_sym__list_decimal_paren_repeat1] = STATE(510), + [aux_sym__list_decimal_parens_repeat1] = STATE(511), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(512), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(513), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(514), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(515), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(516), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(517), + [aux_sym__list_lower_roman_period_repeat1] = STATE(526), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(531), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(534), + [aux_sym__list_upper_roman_period_repeat1] = STATE(544), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(441), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(442), + [aux_sym_table_repeat1] = STATE(241), + [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__inline_repeat1] = STATE(273), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(366), [anon_sym_DOT] = ACTIONS(11), [aux_sym_identifier_token1] = ACTIONS(11), [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [anon_sym_POUND] = ACTIONS(11), [anon_sym_PERCENT] = ACTIONS(11), [sym__newline] = ACTIONS(404), [sym__heading_begin] = ACTIONS(370), @@ -9088,104 +8979,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__table_row_begin] = ACTIONS(384), }, [34] = { - [sym__block_with_heading] = STATE(900), - [sym__block_element] = STATE(900), - [sym_heading] = STATE(900), - [sym_list] = STATE(900), - [sym__list_dash] = STATE(974), - [sym__list_item_dash] = STATE(687), - [sym__list_plus] = STATE(974), - [sym__list_item_plus] = STATE(691), - [sym__list_star] = STATE(974), - [sym__list_item_star] = STATE(673), - [sym__list_task] = STATE(974), - [sym__list_item_task] = STATE(680), - [sym_list_marker_task] = STATE(48), - [sym__list_definition] = STATE(974), - [sym__list_item_definition] = STATE(804), - [sym__list_decimal_period] = STATE(974), - [sym__list_item_decimal_period] = STATE(837), - [sym__list_decimal_paren] = STATE(974), - [sym__list_item_decimal_paren] = STATE(703), - [sym__list_decimal_parens] = STATE(974), - [sym__list_item_decimal_parens] = STATE(715), - [sym__list_lower_alpha_period] = STATE(974), - [sym__list_item_lower_alpha_period] = STATE(739), - [sym__list_lower_alpha_paren] = STATE(974), - [sym__list_item_lower_alpha_paren] = STATE(754), - [sym__list_lower_alpha_parens] = STATE(974), - [sym__list_item_lower_alpha_parens] = STATE(755), - [sym__list_upper_alpha_period] = STATE(974), - [sym__list_item_upper_alpha_period] = STATE(758), - [sym__list_upper_alpha_paren] = STATE(974), - [sym__list_item_upper_alpha_paren] = STATE(759), - [sym__list_upper_alpha_parens] = STATE(974), - [sym__list_item_upper_alpha_parens] = STATE(766), - [sym__list_lower_roman_period] = STATE(974), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(974), - [sym__list_item_lower_roman_paren] = STATE(770), - [sym__list_lower_roman_parens] = STATE(974), - [sym__list_item_lower_roman_parens] = STATE(773), - [sym__list_upper_roman_period] = STATE(974), - [sym__list_item_upper_roman_period] = STATE(775), - [sym__list_upper_roman_paren] = STATE(974), - [sym__list_item_upper_roman_paren] = STATE(791), - [sym__list_upper_roman_parens] = STATE(974), - [sym__list_item_upper_roman_parens] = STATE(793), - [sym_table] = STATE(900), - [sym__table_row] = STATE(248), - [sym_table_header] = STATE(248), - [sym_table_separator] = STATE(248), - [sym_table_row] = STATE(248), - [sym_footnote] = STATE(900), - [sym_footnote_marker_begin] = STATE(1141), - [sym_footnote_content] = STATE(122), - [sym_div] = STATE(900), - [sym__div_marker_begin] = STATE(1023), - [sym_code_block] = STATE(900), - [sym_raw_block] = STATE(900), - [sym_thematic_break] = STATE(900), - [sym_block_quote] = STATE(900), - [sym__block_quote_prefix] = STATE(222), - [sym_link_reference_definition] = STATE(900), - [sym_block_attribute] = STATE(900), - [sym__paragraph] = STATE(900), - [sym__paragraph_content] = STATE(738), - [sym__paragraph_inline_content] = STATE(799), - [sym__inline] = STATE(629), - [sym__symbol_fallback] = STATE(285), - [aux_sym__list_dash_repeat1] = STATE(354), - [aux_sym__list_plus_repeat1] = STATE(355), - [aux_sym__list_star_repeat1] = STATE(356), - [aux_sym__list_task_repeat1] = STATE(335), - [aux_sym__list_definition_repeat1] = STATE(479), - [aux_sym__list_decimal_period_repeat1] = STATE(480), - [aux_sym__list_decimal_paren_repeat1] = STATE(481), - [aux_sym__list_decimal_parens_repeat1] = STATE(482), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(483), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(484), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(485), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(486), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(487), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(488), - [aux_sym__list_lower_roman_period_repeat1] = STATE(489), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(490), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(491), - [aux_sym__list_upper_roman_period_repeat1] = STATE(492), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(493), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(494), - [aux_sym_table_repeat1] = STATE(248), - [aux_sym__block_quote_prefix_repeat1] = STATE(235), - [aux_sym__inline_repeat1] = STATE(285), + [sym__block_with_heading] = STATE(1106), + [sym__block_element] = STATE(1106), + [sym_heading] = STATE(1106), + [sym_list] = STATE(1106), + [sym__list_dash] = STATE(998), + [sym__list_item_dash] = STATE(553), + [sym__list_plus] = STATE(998), + [sym__list_item_plus] = STATE(554), + [sym__list_star] = STATE(998), + [sym__list_item_star] = STATE(556), + [sym__list_task] = STATE(998), + [sym__list_item_task] = STATE(558), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(998), + [sym__list_item_definition] = STATE(769), + [sym__list_decimal_period] = STATE(998), + [sym__list_item_decimal_period] = STATE(776), + [sym__list_decimal_paren] = STATE(998), + [sym__list_item_decimal_paren] = STATE(790), + [sym__list_decimal_parens] = STATE(998), + [sym__list_item_decimal_parens] = STATE(793), + [sym__list_lower_alpha_period] = STATE(998), + [sym__list_item_lower_alpha_period] = STATE(822), + [sym__list_lower_alpha_paren] = STATE(998), + [sym__list_item_lower_alpha_paren] = STATE(684), + [sym__list_lower_alpha_parens] = STATE(998), + [sym__list_item_lower_alpha_parens] = STATE(688), + [sym__list_upper_alpha_period] = STATE(998), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(998), + [sym__list_item_upper_alpha_paren] = STATE(705), + [sym__list_upper_alpha_parens] = STATE(998), + [sym__list_item_upper_alpha_parens] = STATE(711), + [sym__list_lower_roman_period] = STATE(998), + [sym__list_item_lower_roman_period] = STATE(712), + [sym__list_lower_roman_paren] = STATE(998), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(998), + [sym__list_item_lower_roman_parens] = STATE(728), + [sym__list_upper_roman_period] = STATE(998), + [sym__list_item_upper_roman_period] = STATE(734), + [sym__list_upper_roman_paren] = STATE(998), + [sym__list_item_upper_roman_paren] = STATE(830), + [sym__list_upper_roman_parens] = STATE(998), + [sym__list_item_upper_roman_parens] = STATE(725), + [sym_table] = STATE(1106), + [sym__table_row] = STATE(241), + [sym_table_header] = STATE(241), + [sym_table_separator] = STATE(241), + [sym_table_row] = STATE(241), + [sym_footnote] = STATE(1106), + [sym_footnote_marker_begin] = STATE(1137), + [sym_footnote_content] = STATE(121), + [sym_div] = STATE(1106), + [sym__div_marker_begin] = STATE(1019), + [sym_code_block] = STATE(1106), + [sym_raw_block] = STATE(1106), + [sym_thematic_break] = STATE(1106), + [sym_block_quote] = STATE(1106), + [sym__block_quote_prefix] = STATE(223), + [sym_link_reference_definition] = STATE(1106), + [sym_block_attribute] = STATE(1106), + [sym__paragraph] = STATE(1106), + [sym__paragraph_content] = STATE(707), + [sym__paragraph_inline_content] = STATE(778), + [sym__inline] = STATE(655), + [sym__symbol_fallback] = STATE(273), + [aux_sym__list_dash_repeat1] = STATE(326), + [aux_sym__list_plus_repeat1] = STATE(329), + [aux_sym__list_star_repeat1] = STATE(330), + [aux_sym__list_task_repeat1] = STATE(298), + [aux_sym__list_definition_repeat1] = STATE(508), + [aux_sym__list_decimal_period_repeat1] = STATE(509), + [aux_sym__list_decimal_paren_repeat1] = STATE(510), + [aux_sym__list_decimal_parens_repeat1] = STATE(511), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(512), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(513), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(514), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(515), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(516), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(517), + [aux_sym__list_lower_roman_period_repeat1] = STATE(526), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(531), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(534), + [aux_sym__list_upper_roman_period_repeat1] = STATE(544), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(441), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(442), + [aux_sym_table_repeat1] = STATE(241), + [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__inline_repeat1] = STATE(273), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(366), [anon_sym_DOT] = ACTIONS(11), [aux_sym_identifier_token1] = ACTIONS(11), [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [anon_sym_POUND] = ACTIONS(11), [anon_sym_PERCENT] = ACTIONS(11), [sym__newline] = ACTIONS(406), [sym__heading_begin] = ACTIONS(370), @@ -9220,104 +9109,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__table_row_begin] = ACTIONS(384), }, [35] = { - [sym__block_with_heading] = STATE(1100), - [sym__block_element] = STATE(1100), - [sym_heading] = STATE(1100), - [sym_list] = STATE(1100), - [sym__list_dash] = STATE(974), - [sym__list_item_dash] = STATE(687), - [sym__list_plus] = STATE(974), - [sym__list_item_plus] = STATE(691), - [sym__list_star] = STATE(974), - [sym__list_item_star] = STATE(673), - [sym__list_task] = STATE(974), - [sym__list_item_task] = STATE(680), - [sym_list_marker_task] = STATE(48), - [sym__list_definition] = STATE(974), - [sym__list_item_definition] = STATE(804), - [sym__list_decimal_period] = STATE(974), - [sym__list_item_decimal_period] = STATE(837), - [sym__list_decimal_paren] = STATE(974), - [sym__list_item_decimal_paren] = STATE(703), - [sym__list_decimal_parens] = STATE(974), - [sym__list_item_decimal_parens] = STATE(715), - [sym__list_lower_alpha_period] = STATE(974), - [sym__list_item_lower_alpha_period] = STATE(739), - [sym__list_lower_alpha_paren] = STATE(974), - [sym__list_item_lower_alpha_paren] = STATE(754), - [sym__list_lower_alpha_parens] = STATE(974), - [sym__list_item_lower_alpha_parens] = STATE(755), - [sym__list_upper_alpha_period] = STATE(974), - [sym__list_item_upper_alpha_period] = STATE(758), - [sym__list_upper_alpha_paren] = STATE(974), - [sym__list_item_upper_alpha_paren] = STATE(759), - [sym__list_upper_alpha_parens] = STATE(974), - [sym__list_item_upper_alpha_parens] = STATE(766), - [sym__list_lower_roman_period] = STATE(974), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(974), - [sym__list_item_lower_roman_paren] = STATE(770), - [sym__list_lower_roman_parens] = STATE(974), - [sym__list_item_lower_roman_parens] = STATE(773), - [sym__list_upper_roman_period] = STATE(974), - [sym__list_item_upper_roman_period] = STATE(775), - [sym__list_upper_roman_paren] = STATE(974), - [sym__list_item_upper_roman_paren] = STATE(791), - [sym__list_upper_roman_parens] = STATE(974), - [sym__list_item_upper_roman_parens] = STATE(793), - [sym_list_item_content] = STATE(779), - [sym_table] = STATE(1100), - [sym__table_row] = STATE(248), - [sym_table_header] = STATE(248), - [sym_table_separator] = STATE(248), - [sym_table_row] = STATE(248), - [sym_footnote] = STATE(1100), - [sym_footnote_marker_begin] = STATE(1141), - [sym_div] = STATE(1100), - [sym__div_marker_begin] = STATE(1023), - [sym_code_block] = STATE(1100), - [sym_raw_block] = STATE(1100), - [sym_thematic_break] = STATE(1100), - [sym_block_quote] = STATE(1100), - [sym__block_quote_prefix] = STATE(222), - [sym_link_reference_definition] = STATE(1100), - [sym_block_attribute] = STATE(1100), - [sym__paragraph] = STATE(1100), - [sym__paragraph_content] = STATE(738), - [sym__paragraph_inline_content] = STATE(799), - [sym__inline] = STATE(629), - [sym__symbol_fallback] = STATE(285), - [aux_sym__list_dash_repeat1] = STATE(354), - [aux_sym__list_plus_repeat1] = STATE(355), - [aux_sym__list_star_repeat1] = STATE(356), - [aux_sym__list_task_repeat1] = STATE(335), - [aux_sym__list_definition_repeat1] = STATE(479), - [aux_sym__list_decimal_period_repeat1] = STATE(480), - [aux_sym__list_decimal_paren_repeat1] = STATE(481), - [aux_sym__list_decimal_parens_repeat1] = STATE(482), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(483), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(484), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(485), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(486), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(487), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(488), - [aux_sym__list_lower_roman_period_repeat1] = STATE(489), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(490), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(491), - [aux_sym__list_upper_roman_period_repeat1] = STATE(492), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(493), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(494), - [aux_sym_table_repeat1] = STATE(248), - [aux_sym__block_quote_prefix_repeat1] = STATE(235), - [aux_sym__inline_repeat1] = STATE(285), + [sym__block_with_heading] = STATE(1098), + [sym__block_element] = STATE(1098), + [sym_heading] = STATE(1098), + [sym_list] = STATE(1098), + [sym__list_dash] = STATE(998), + [sym__list_item_dash] = STATE(553), + [sym__list_plus] = STATE(998), + [sym__list_item_plus] = STATE(554), + [sym__list_star] = STATE(998), + [sym__list_item_star] = STATE(556), + [sym__list_task] = STATE(998), + [sym__list_item_task] = STATE(558), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(998), + [sym__list_item_definition] = STATE(769), + [sym__list_decimal_period] = STATE(998), + [sym__list_item_decimal_period] = STATE(776), + [sym__list_decimal_paren] = STATE(998), + [sym__list_item_decimal_paren] = STATE(790), + [sym__list_decimal_parens] = STATE(998), + [sym__list_item_decimal_parens] = STATE(793), + [sym__list_lower_alpha_period] = STATE(998), + [sym__list_item_lower_alpha_period] = STATE(822), + [sym__list_lower_alpha_paren] = STATE(998), + [sym__list_item_lower_alpha_paren] = STATE(684), + [sym__list_lower_alpha_parens] = STATE(998), + [sym__list_item_lower_alpha_parens] = STATE(688), + [sym__list_upper_alpha_period] = STATE(998), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(998), + [sym__list_item_upper_alpha_paren] = STATE(705), + [sym__list_upper_alpha_parens] = STATE(998), + [sym__list_item_upper_alpha_parens] = STATE(711), + [sym__list_lower_roman_period] = STATE(998), + [sym__list_item_lower_roman_period] = STATE(712), + [sym__list_lower_roman_paren] = STATE(998), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(998), + [sym__list_item_lower_roman_parens] = STATE(728), + [sym__list_upper_roman_period] = STATE(998), + [sym__list_item_upper_roman_period] = STATE(734), + [sym__list_upper_roman_paren] = STATE(998), + [sym__list_item_upper_roman_paren] = STATE(830), + [sym__list_upper_roman_parens] = STATE(998), + [sym__list_item_upper_roman_parens] = STATE(725), + [sym_list_item_content] = STATE(716), + [sym_table] = STATE(1098), + [sym__table_row] = STATE(241), + [sym_table_header] = STATE(241), + [sym_table_separator] = STATE(241), + [sym_table_row] = STATE(241), + [sym_footnote] = STATE(1098), + [sym_footnote_marker_begin] = STATE(1137), + [sym_div] = STATE(1098), + [sym__div_marker_begin] = STATE(1019), + [sym_code_block] = STATE(1098), + [sym_raw_block] = STATE(1098), + [sym_thematic_break] = STATE(1098), + [sym_block_quote] = STATE(1098), + [sym__block_quote_prefix] = STATE(223), + [sym_link_reference_definition] = STATE(1098), + [sym_block_attribute] = STATE(1098), + [sym__paragraph] = STATE(1098), + [sym__paragraph_content] = STATE(707), + [sym__paragraph_inline_content] = STATE(778), + [sym__inline] = STATE(655), + [sym__symbol_fallback] = STATE(273), + [aux_sym__list_dash_repeat1] = STATE(326), + [aux_sym__list_plus_repeat1] = STATE(329), + [aux_sym__list_star_repeat1] = STATE(330), + [aux_sym__list_task_repeat1] = STATE(298), + [aux_sym__list_definition_repeat1] = STATE(508), + [aux_sym__list_decimal_period_repeat1] = STATE(509), + [aux_sym__list_decimal_paren_repeat1] = STATE(510), + [aux_sym__list_decimal_parens_repeat1] = STATE(511), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(512), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(513), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(514), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(515), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(516), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(517), + [aux_sym__list_lower_roman_period_repeat1] = STATE(526), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(531), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(534), + [aux_sym__list_upper_roman_period_repeat1] = STATE(544), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(441), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(442), + [aux_sym_table_repeat1] = STATE(241), + [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__inline_repeat1] = STATE(273), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(366), [anon_sym_DOT] = ACTIONS(11), [aux_sym_identifier_token1] = ACTIONS(11), [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [anon_sym_POUND] = ACTIONS(11), [anon_sym_PERCENT] = ACTIONS(11), [sym__newline] = ACTIONS(408), [sym__heading_begin] = ACTIONS(370), @@ -9352,104 +9239,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__table_row_begin] = ACTIONS(384), }, [36] = { - [sym__block_with_heading] = STATE(1101), - [sym__block_element] = STATE(1101), - [sym_heading] = STATE(1101), - [sym_list] = STATE(1101), - [sym__list_dash] = STATE(974), - [sym__list_item_dash] = STATE(687), - [sym__list_plus] = STATE(974), - [sym__list_item_plus] = STATE(691), - [sym__list_star] = STATE(974), - [sym__list_item_star] = STATE(673), - [sym__list_task] = STATE(974), - [sym__list_item_task] = STATE(680), - [sym_list_marker_task] = STATE(48), - [sym__list_definition] = STATE(974), - [sym__list_item_definition] = STATE(804), - [sym__list_decimal_period] = STATE(974), - [sym__list_item_decimal_period] = STATE(837), - [sym__list_decimal_paren] = STATE(974), - [sym__list_item_decimal_paren] = STATE(703), - [sym__list_decimal_parens] = STATE(974), - [sym__list_item_decimal_parens] = STATE(715), - [sym__list_lower_alpha_period] = STATE(974), - [sym__list_item_lower_alpha_period] = STATE(739), - [sym__list_lower_alpha_paren] = STATE(974), - [sym__list_item_lower_alpha_paren] = STATE(754), - [sym__list_lower_alpha_parens] = STATE(974), - [sym__list_item_lower_alpha_parens] = STATE(755), - [sym__list_upper_alpha_period] = STATE(974), - [sym__list_item_upper_alpha_period] = STATE(758), - [sym__list_upper_alpha_paren] = STATE(974), - [sym__list_item_upper_alpha_paren] = STATE(759), - [sym__list_upper_alpha_parens] = STATE(974), - [sym__list_item_upper_alpha_parens] = STATE(766), - [sym__list_lower_roman_period] = STATE(974), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(974), - [sym__list_item_lower_roman_paren] = STATE(770), - [sym__list_lower_roman_parens] = STATE(974), - [sym__list_item_lower_roman_parens] = STATE(773), - [sym__list_upper_roman_period] = STATE(974), - [sym__list_item_upper_roman_period] = STATE(775), - [sym__list_upper_roman_paren] = STATE(974), - [sym__list_item_upper_roman_paren] = STATE(791), - [sym__list_upper_roman_parens] = STATE(974), - [sym__list_item_upper_roman_parens] = STATE(793), - [sym_list_item_content] = STATE(782), - [sym_table] = STATE(1101), - [sym__table_row] = STATE(248), - [sym_table_header] = STATE(248), - [sym_table_separator] = STATE(248), - [sym_table_row] = STATE(248), - [sym_footnote] = STATE(1101), - [sym_footnote_marker_begin] = STATE(1141), - [sym_div] = STATE(1101), - [sym__div_marker_begin] = STATE(1023), - [sym_code_block] = STATE(1101), - [sym_raw_block] = STATE(1101), - [sym_thematic_break] = STATE(1101), - [sym_block_quote] = STATE(1101), - [sym__block_quote_prefix] = STATE(222), - [sym_link_reference_definition] = STATE(1101), - [sym_block_attribute] = STATE(1101), - [sym__paragraph] = STATE(1101), - [sym__paragraph_content] = STATE(738), - [sym__paragraph_inline_content] = STATE(799), - [sym__inline] = STATE(629), - [sym__symbol_fallback] = STATE(285), - [aux_sym__list_dash_repeat1] = STATE(354), - [aux_sym__list_plus_repeat1] = STATE(355), - [aux_sym__list_star_repeat1] = STATE(356), - [aux_sym__list_task_repeat1] = STATE(335), - [aux_sym__list_definition_repeat1] = STATE(479), - [aux_sym__list_decimal_period_repeat1] = STATE(480), - [aux_sym__list_decimal_paren_repeat1] = STATE(481), - [aux_sym__list_decimal_parens_repeat1] = STATE(482), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(483), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(484), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(485), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(486), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(487), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(488), - [aux_sym__list_lower_roman_period_repeat1] = STATE(489), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(490), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(491), - [aux_sym__list_upper_roman_period_repeat1] = STATE(492), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(493), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(494), - [aux_sym_table_repeat1] = STATE(248), - [aux_sym__block_quote_prefix_repeat1] = STATE(235), - [aux_sym__inline_repeat1] = STATE(285), + [sym__block_with_heading] = STATE(1099), + [sym__block_element] = STATE(1099), + [sym_heading] = STATE(1099), + [sym_list] = STATE(1099), + [sym__list_dash] = STATE(998), + [sym__list_item_dash] = STATE(553), + [sym__list_plus] = STATE(998), + [sym__list_item_plus] = STATE(554), + [sym__list_star] = STATE(998), + [sym__list_item_star] = STATE(556), + [sym__list_task] = STATE(998), + [sym__list_item_task] = STATE(558), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(998), + [sym__list_item_definition] = STATE(769), + [sym__list_decimal_period] = STATE(998), + [sym__list_item_decimal_period] = STATE(776), + [sym__list_decimal_paren] = STATE(998), + [sym__list_item_decimal_paren] = STATE(790), + [sym__list_decimal_parens] = STATE(998), + [sym__list_item_decimal_parens] = STATE(793), + [sym__list_lower_alpha_period] = STATE(998), + [sym__list_item_lower_alpha_period] = STATE(822), + [sym__list_lower_alpha_paren] = STATE(998), + [sym__list_item_lower_alpha_paren] = STATE(684), + [sym__list_lower_alpha_parens] = STATE(998), + [sym__list_item_lower_alpha_parens] = STATE(688), + [sym__list_upper_alpha_period] = STATE(998), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(998), + [sym__list_item_upper_alpha_paren] = STATE(705), + [sym__list_upper_alpha_parens] = STATE(998), + [sym__list_item_upper_alpha_parens] = STATE(711), + [sym__list_lower_roman_period] = STATE(998), + [sym__list_item_lower_roman_period] = STATE(712), + [sym__list_lower_roman_paren] = STATE(998), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(998), + [sym__list_item_lower_roman_parens] = STATE(728), + [sym__list_upper_roman_period] = STATE(998), + [sym__list_item_upper_roman_period] = STATE(734), + [sym__list_upper_roman_paren] = STATE(998), + [sym__list_item_upper_roman_paren] = STATE(830), + [sym__list_upper_roman_parens] = STATE(998), + [sym__list_item_upper_roman_parens] = STATE(725), + [sym_list_item_content] = STATE(717), + [sym_table] = STATE(1099), + [sym__table_row] = STATE(241), + [sym_table_header] = STATE(241), + [sym_table_separator] = STATE(241), + [sym_table_row] = STATE(241), + [sym_footnote] = STATE(1099), + [sym_footnote_marker_begin] = STATE(1137), + [sym_div] = STATE(1099), + [sym__div_marker_begin] = STATE(1019), + [sym_code_block] = STATE(1099), + [sym_raw_block] = STATE(1099), + [sym_thematic_break] = STATE(1099), + [sym_block_quote] = STATE(1099), + [sym__block_quote_prefix] = STATE(223), + [sym_link_reference_definition] = STATE(1099), + [sym_block_attribute] = STATE(1099), + [sym__paragraph] = STATE(1099), + [sym__paragraph_content] = STATE(707), + [sym__paragraph_inline_content] = STATE(778), + [sym__inline] = STATE(655), + [sym__symbol_fallback] = STATE(273), + [aux_sym__list_dash_repeat1] = STATE(326), + [aux_sym__list_plus_repeat1] = STATE(329), + [aux_sym__list_star_repeat1] = STATE(330), + [aux_sym__list_task_repeat1] = STATE(298), + [aux_sym__list_definition_repeat1] = STATE(508), + [aux_sym__list_decimal_period_repeat1] = STATE(509), + [aux_sym__list_decimal_paren_repeat1] = STATE(510), + [aux_sym__list_decimal_parens_repeat1] = STATE(511), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(512), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(513), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(514), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(515), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(516), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(517), + [aux_sym__list_lower_roman_period_repeat1] = STATE(526), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(531), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(534), + [aux_sym__list_upper_roman_period_repeat1] = STATE(544), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(441), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(442), + [aux_sym_table_repeat1] = STATE(241), + [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__inline_repeat1] = STATE(273), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(366), [anon_sym_DOT] = ACTIONS(11), [aux_sym_identifier_token1] = ACTIONS(11), [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [anon_sym_POUND] = ACTIONS(11), [anon_sym_PERCENT] = ACTIONS(11), [sym__newline] = ACTIONS(410), [sym__heading_begin] = ACTIONS(370), @@ -9484,104 +9369,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__table_row_begin] = ACTIONS(384), }, [37] = { - [sym__block_with_heading] = STATE(1102), - [sym__block_element] = STATE(1102), - [sym_heading] = STATE(1102), - [sym_list] = STATE(1102), - [sym__list_dash] = STATE(974), - [sym__list_item_dash] = STATE(687), - [sym__list_plus] = STATE(974), - [sym__list_item_plus] = STATE(691), - [sym__list_star] = STATE(974), - [sym__list_item_star] = STATE(673), - [sym__list_task] = STATE(974), - [sym__list_item_task] = STATE(680), - [sym_list_marker_task] = STATE(48), - [sym__list_definition] = STATE(974), - [sym__list_item_definition] = STATE(804), - [sym__list_decimal_period] = STATE(974), - [sym__list_item_decimal_period] = STATE(837), - [sym__list_decimal_paren] = STATE(974), - [sym__list_item_decimal_paren] = STATE(703), - [sym__list_decimal_parens] = STATE(974), - [sym__list_item_decimal_parens] = STATE(715), - [sym__list_lower_alpha_period] = STATE(974), - [sym__list_item_lower_alpha_period] = STATE(739), - [sym__list_lower_alpha_paren] = STATE(974), - [sym__list_item_lower_alpha_paren] = STATE(754), - [sym__list_lower_alpha_parens] = STATE(974), - [sym__list_item_lower_alpha_parens] = STATE(755), - [sym__list_upper_alpha_period] = STATE(974), - [sym__list_item_upper_alpha_period] = STATE(758), - [sym__list_upper_alpha_paren] = STATE(974), - [sym__list_item_upper_alpha_paren] = STATE(759), - [sym__list_upper_alpha_parens] = STATE(974), - [sym__list_item_upper_alpha_parens] = STATE(766), - [sym__list_lower_roman_period] = STATE(974), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(974), - [sym__list_item_lower_roman_paren] = STATE(770), - [sym__list_lower_roman_parens] = STATE(974), - [sym__list_item_lower_roman_parens] = STATE(773), - [sym__list_upper_roman_period] = STATE(974), - [sym__list_item_upper_roman_period] = STATE(775), - [sym__list_upper_roman_paren] = STATE(974), - [sym__list_item_upper_roman_paren] = STATE(791), - [sym__list_upper_roman_parens] = STATE(974), - [sym__list_item_upper_roman_parens] = STATE(793), - [sym_list_item_content] = STATE(783), - [sym_table] = STATE(1102), - [sym__table_row] = STATE(248), - [sym_table_header] = STATE(248), - [sym_table_separator] = STATE(248), - [sym_table_row] = STATE(248), - [sym_footnote] = STATE(1102), - [sym_footnote_marker_begin] = STATE(1141), - [sym_div] = STATE(1102), - [sym__div_marker_begin] = STATE(1023), - [sym_code_block] = STATE(1102), - [sym_raw_block] = STATE(1102), - [sym_thematic_break] = STATE(1102), - [sym_block_quote] = STATE(1102), - [sym__block_quote_prefix] = STATE(222), - [sym_link_reference_definition] = STATE(1102), - [sym_block_attribute] = STATE(1102), - [sym__paragraph] = STATE(1102), - [sym__paragraph_content] = STATE(738), - [sym__paragraph_inline_content] = STATE(799), - [sym__inline] = STATE(629), - [sym__symbol_fallback] = STATE(285), - [aux_sym__list_dash_repeat1] = STATE(354), - [aux_sym__list_plus_repeat1] = STATE(355), - [aux_sym__list_star_repeat1] = STATE(356), - [aux_sym__list_task_repeat1] = STATE(335), - [aux_sym__list_definition_repeat1] = STATE(479), - [aux_sym__list_decimal_period_repeat1] = STATE(480), - [aux_sym__list_decimal_paren_repeat1] = STATE(481), - [aux_sym__list_decimal_parens_repeat1] = STATE(482), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(483), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(484), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(485), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(486), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(487), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(488), - [aux_sym__list_lower_roman_period_repeat1] = STATE(489), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(490), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(491), - [aux_sym__list_upper_roman_period_repeat1] = STATE(492), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(493), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(494), - [aux_sym_table_repeat1] = STATE(248), - [aux_sym__block_quote_prefix_repeat1] = STATE(235), - [aux_sym__inline_repeat1] = STATE(285), + [sym__block_with_heading] = STATE(1100), + [sym__block_element] = STATE(1100), + [sym_heading] = STATE(1100), + [sym_list] = STATE(1100), + [sym__list_dash] = STATE(998), + [sym__list_item_dash] = STATE(553), + [sym__list_plus] = STATE(998), + [sym__list_item_plus] = STATE(554), + [sym__list_star] = STATE(998), + [sym__list_item_star] = STATE(556), + [sym__list_task] = STATE(998), + [sym__list_item_task] = STATE(558), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(998), + [sym__list_item_definition] = STATE(769), + [sym__list_decimal_period] = STATE(998), + [sym__list_item_decimal_period] = STATE(776), + [sym__list_decimal_paren] = STATE(998), + [sym__list_item_decimal_paren] = STATE(790), + [sym__list_decimal_parens] = STATE(998), + [sym__list_item_decimal_parens] = STATE(793), + [sym__list_lower_alpha_period] = STATE(998), + [sym__list_item_lower_alpha_period] = STATE(822), + [sym__list_lower_alpha_paren] = STATE(998), + [sym__list_item_lower_alpha_paren] = STATE(684), + [sym__list_lower_alpha_parens] = STATE(998), + [sym__list_item_lower_alpha_parens] = STATE(688), + [sym__list_upper_alpha_period] = STATE(998), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(998), + [sym__list_item_upper_alpha_paren] = STATE(705), + [sym__list_upper_alpha_parens] = STATE(998), + [sym__list_item_upper_alpha_parens] = STATE(711), + [sym__list_lower_roman_period] = STATE(998), + [sym__list_item_lower_roman_period] = STATE(712), + [sym__list_lower_roman_paren] = STATE(998), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(998), + [sym__list_item_lower_roman_parens] = STATE(728), + [sym__list_upper_roman_period] = STATE(998), + [sym__list_item_upper_roman_period] = STATE(734), + [sym__list_upper_roman_paren] = STATE(998), + [sym__list_item_upper_roman_paren] = STATE(830), + [sym__list_upper_roman_parens] = STATE(998), + [sym__list_item_upper_roman_parens] = STATE(725), + [sym_list_item_content] = STATE(718), + [sym_table] = STATE(1100), + [sym__table_row] = STATE(241), + [sym_table_header] = STATE(241), + [sym_table_separator] = STATE(241), + [sym_table_row] = STATE(241), + [sym_footnote] = STATE(1100), + [sym_footnote_marker_begin] = STATE(1137), + [sym_div] = STATE(1100), + [sym__div_marker_begin] = STATE(1019), + [sym_code_block] = STATE(1100), + [sym_raw_block] = STATE(1100), + [sym_thematic_break] = STATE(1100), + [sym_block_quote] = STATE(1100), + [sym__block_quote_prefix] = STATE(223), + [sym_link_reference_definition] = STATE(1100), + [sym_block_attribute] = STATE(1100), + [sym__paragraph] = STATE(1100), + [sym__paragraph_content] = STATE(707), + [sym__paragraph_inline_content] = STATE(778), + [sym__inline] = STATE(655), + [sym__symbol_fallback] = STATE(273), + [aux_sym__list_dash_repeat1] = STATE(326), + [aux_sym__list_plus_repeat1] = STATE(329), + [aux_sym__list_star_repeat1] = STATE(330), + [aux_sym__list_task_repeat1] = STATE(298), + [aux_sym__list_definition_repeat1] = STATE(508), + [aux_sym__list_decimal_period_repeat1] = STATE(509), + [aux_sym__list_decimal_paren_repeat1] = STATE(510), + [aux_sym__list_decimal_parens_repeat1] = STATE(511), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(512), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(513), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(514), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(515), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(516), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(517), + [aux_sym__list_lower_roman_period_repeat1] = STATE(526), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(531), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(534), + [aux_sym__list_upper_roman_period_repeat1] = STATE(544), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(441), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(442), + [aux_sym_table_repeat1] = STATE(241), + [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__inline_repeat1] = STATE(273), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(366), [anon_sym_DOT] = ACTIONS(11), [aux_sym_identifier_token1] = ACTIONS(11), [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [anon_sym_POUND] = ACTIONS(11), [anon_sym_PERCENT] = ACTIONS(11), [sym__newline] = ACTIONS(412), [sym__heading_begin] = ACTIONS(370), @@ -9616,104 +9499,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__table_row_begin] = ACTIONS(384), }, [38] = { - [sym__block_with_heading] = STATE(1103), - [sym__block_element] = STATE(1103), - [sym_heading] = STATE(1103), - [sym_list] = STATE(1103), - [sym__list_dash] = STATE(974), - [sym__list_item_dash] = STATE(687), - [sym__list_plus] = STATE(974), - [sym__list_item_plus] = STATE(691), - [sym__list_star] = STATE(974), - [sym__list_item_star] = STATE(673), - [sym__list_task] = STATE(974), - [sym__list_item_task] = STATE(680), - [sym_list_marker_task] = STATE(48), - [sym__list_definition] = STATE(974), - [sym__list_item_definition] = STATE(804), - [sym__list_decimal_period] = STATE(974), - [sym__list_item_decimal_period] = STATE(837), - [sym__list_decimal_paren] = STATE(974), - [sym__list_item_decimal_paren] = STATE(703), - [sym__list_decimal_parens] = STATE(974), - [sym__list_item_decimal_parens] = STATE(715), - [sym__list_lower_alpha_period] = STATE(974), - [sym__list_item_lower_alpha_period] = STATE(739), - [sym__list_lower_alpha_paren] = STATE(974), - [sym__list_item_lower_alpha_paren] = STATE(754), - [sym__list_lower_alpha_parens] = STATE(974), - [sym__list_item_lower_alpha_parens] = STATE(755), - [sym__list_upper_alpha_period] = STATE(974), - [sym__list_item_upper_alpha_period] = STATE(758), - [sym__list_upper_alpha_paren] = STATE(974), - [sym__list_item_upper_alpha_paren] = STATE(759), - [sym__list_upper_alpha_parens] = STATE(974), - [sym__list_item_upper_alpha_parens] = STATE(766), - [sym__list_lower_roman_period] = STATE(974), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(974), - [sym__list_item_lower_roman_paren] = STATE(770), - [sym__list_lower_roman_parens] = STATE(974), - [sym__list_item_lower_roman_parens] = STATE(773), - [sym__list_upper_roman_period] = STATE(974), - [sym__list_item_upper_roman_period] = STATE(775), - [sym__list_upper_roman_paren] = STATE(974), - [sym__list_item_upper_roman_paren] = STATE(791), - [sym__list_upper_roman_parens] = STATE(974), - [sym__list_item_upper_roman_parens] = STATE(793), - [sym_list_item_content] = STATE(784), - [sym_table] = STATE(1103), - [sym__table_row] = STATE(248), - [sym_table_header] = STATE(248), - [sym_table_separator] = STATE(248), - [sym_table_row] = STATE(248), - [sym_footnote] = STATE(1103), - [sym_footnote_marker_begin] = STATE(1141), - [sym_div] = STATE(1103), - [sym__div_marker_begin] = STATE(1023), - [sym_code_block] = STATE(1103), - [sym_raw_block] = STATE(1103), - [sym_thematic_break] = STATE(1103), - [sym_block_quote] = STATE(1103), - [sym__block_quote_prefix] = STATE(222), - [sym_link_reference_definition] = STATE(1103), - [sym_block_attribute] = STATE(1103), - [sym__paragraph] = STATE(1103), - [sym__paragraph_content] = STATE(738), - [sym__paragraph_inline_content] = STATE(799), - [sym__inline] = STATE(629), - [sym__symbol_fallback] = STATE(285), - [aux_sym__list_dash_repeat1] = STATE(354), - [aux_sym__list_plus_repeat1] = STATE(355), - [aux_sym__list_star_repeat1] = STATE(356), - [aux_sym__list_task_repeat1] = STATE(335), - [aux_sym__list_definition_repeat1] = STATE(479), - [aux_sym__list_decimal_period_repeat1] = STATE(480), - [aux_sym__list_decimal_paren_repeat1] = STATE(481), - [aux_sym__list_decimal_parens_repeat1] = STATE(482), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(483), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(484), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(485), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(486), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(487), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(488), - [aux_sym__list_lower_roman_period_repeat1] = STATE(489), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(490), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(491), - [aux_sym__list_upper_roman_period_repeat1] = STATE(492), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(493), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(494), - [aux_sym_table_repeat1] = STATE(248), - [aux_sym__block_quote_prefix_repeat1] = STATE(235), - [aux_sym__inline_repeat1] = STATE(285), + [sym__block_with_heading] = STATE(1101), + [sym__block_element] = STATE(1101), + [sym_heading] = STATE(1101), + [sym_list] = STATE(1101), + [sym__list_dash] = STATE(998), + [sym__list_item_dash] = STATE(553), + [sym__list_plus] = STATE(998), + [sym__list_item_plus] = STATE(554), + [sym__list_star] = STATE(998), + [sym__list_item_star] = STATE(556), + [sym__list_task] = STATE(998), + [sym__list_item_task] = STATE(558), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(998), + [sym__list_item_definition] = STATE(769), + [sym__list_decimal_period] = STATE(998), + [sym__list_item_decimal_period] = STATE(776), + [sym__list_decimal_paren] = STATE(998), + [sym__list_item_decimal_paren] = STATE(790), + [sym__list_decimal_parens] = STATE(998), + [sym__list_item_decimal_parens] = STATE(793), + [sym__list_lower_alpha_period] = STATE(998), + [sym__list_item_lower_alpha_period] = STATE(822), + [sym__list_lower_alpha_paren] = STATE(998), + [sym__list_item_lower_alpha_paren] = STATE(684), + [sym__list_lower_alpha_parens] = STATE(998), + [sym__list_item_lower_alpha_parens] = STATE(688), + [sym__list_upper_alpha_period] = STATE(998), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(998), + [sym__list_item_upper_alpha_paren] = STATE(705), + [sym__list_upper_alpha_parens] = STATE(998), + [sym__list_item_upper_alpha_parens] = STATE(711), + [sym__list_lower_roman_period] = STATE(998), + [sym__list_item_lower_roman_period] = STATE(712), + [sym__list_lower_roman_paren] = STATE(998), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(998), + [sym__list_item_lower_roman_parens] = STATE(728), + [sym__list_upper_roman_period] = STATE(998), + [sym__list_item_upper_roman_period] = STATE(734), + [sym__list_upper_roman_paren] = STATE(998), + [sym__list_item_upper_roman_paren] = STATE(830), + [sym__list_upper_roman_parens] = STATE(998), + [sym__list_item_upper_roman_parens] = STATE(725), + [sym_list_item_content] = STATE(719), + [sym_table] = STATE(1101), + [sym__table_row] = STATE(241), + [sym_table_header] = STATE(241), + [sym_table_separator] = STATE(241), + [sym_table_row] = STATE(241), + [sym_footnote] = STATE(1101), + [sym_footnote_marker_begin] = STATE(1137), + [sym_div] = STATE(1101), + [sym__div_marker_begin] = STATE(1019), + [sym_code_block] = STATE(1101), + [sym_raw_block] = STATE(1101), + [sym_thematic_break] = STATE(1101), + [sym_block_quote] = STATE(1101), + [sym__block_quote_prefix] = STATE(223), + [sym_link_reference_definition] = STATE(1101), + [sym_block_attribute] = STATE(1101), + [sym__paragraph] = STATE(1101), + [sym__paragraph_content] = STATE(707), + [sym__paragraph_inline_content] = STATE(778), + [sym__inline] = STATE(655), + [sym__symbol_fallback] = STATE(273), + [aux_sym__list_dash_repeat1] = STATE(326), + [aux_sym__list_plus_repeat1] = STATE(329), + [aux_sym__list_star_repeat1] = STATE(330), + [aux_sym__list_task_repeat1] = STATE(298), + [aux_sym__list_definition_repeat1] = STATE(508), + [aux_sym__list_decimal_period_repeat1] = STATE(509), + [aux_sym__list_decimal_paren_repeat1] = STATE(510), + [aux_sym__list_decimal_parens_repeat1] = STATE(511), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(512), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(513), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(514), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(515), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(516), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(517), + [aux_sym__list_lower_roman_period_repeat1] = STATE(526), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(531), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(534), + [aux_sym__list_upper_roman_period_repeat1] = STATE(544), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(441), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(442), + [aux_sym_table_repeat1] = STATE(241), + [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__inline_repeat1] = STATE(273), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(366), [anon_sym_DOT] = ACTIONS(11), [aux_sym_identifier_token1] = ACTIONS(11), [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [anon_sym_POUND] = ACTIONS(11), [anon_sym_PERCENT] = ACTIONS(11), [sym__newline] = ACTIONS(414), [sym__heading_begin] = ACTIONS(370), @@ -9748,104 +9629,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__table_row_begin] = ACTIONS(384), }, [39] = { - [sym__block_with_heading] = STATE(1104), - [sym__block_element] = STATE(1104), - [sym_heading] = STATE(1104), - [sym_list] = STATE(1104), - [sym__list_dash] = STATE(974), - [sym__list_item_dash] = STATE(687), - [sym__list_plus] = STATE(974), - [sym__list_item_plus] = STATE(691), - [sym__list_star] = STATE(974), - [sym__list_item_star] = STATE(673), - [sym__list_task] = STATE(974), - [sym__list_item_task] = STATE(680), - [sym_list_marker_task] = STATE(48), - [sym__list_definition] = STATE(974), - [sym__list_item_definition] = STATE(804), - [sym__list_decimal_period] = STATE(974), - [sym__list_item_decimal_period] = STATE(837), - [sym__list_decimal_paren] = STATE(974), - [sym__list_item_decimal_paren] = STATE(703), - [sym__list_decimal_parens] = STATE(974), - [sym__list_item_decimal_parens] = STATE(715), - [sym__list_lower_alpha_period] = STATE(974), - [sym__list_item_lower_alpha_period] = STATE(739), - [sym__list_lower_alpha_paren] = STATE(974), - [sym__list_item_lower_alpha_paren] = STATE(754), - [sym__list_lower_alpha_parens] = STATE(974), - [sym__list_item_lower_alpha_parens] = STATE(755), - [sym__list_upper_alpha_period] = STATE(974), - [sym__list_item_upper_alpha_period] = STATE(758), - [sym__list_upper_alpha_paren] = STATE(974), - [sym__list_item_upper_alpha_paren] = STATE(759), - [sym__list_upper_alpha_parens] = STATE(974), - [sym__list_item_upper_alpha_parens] = STATE(766), - [sym__list_lower_roman_period] = STATE(974), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(974), - [sym__list_item_lower_roman_paren] = STATE(770), - [sym__list_lower_roman_parens] = STATE(974), - [sym__list_item_lower_roman_parens] = STATE(773), - [sym__list_upper_roman_period] = STATE(974), - [sym__list_item_upper_roman_period] = STATE(775), - [sym__list_upper_roman_paren] = STATE(974), - [sym__list_item_upper_roman_paren] = STATE(791), - [sym__list_upper_roman_parens] = STATE(974), - [sym__list_item_upper_roman_parens] = STATE(793), - [sym_list_item_content] = STATE(788), - [sym_table] = STATE(1104), - [sym__table_row] = STATE(248), - [sym_table_header] = STATE(248), - [sym_table_separator] = STATE(248), - [sym_table_row] = STATE(248), - [sym_footnote] = STATE(1104), - [sym_footnote_marker_begin] = STATE(1141), - [sym_div] = STATE(1104), - [sym__div_marker_begin] = STATE(1023), - [sym_code_block] = STATE(1104), - [sym_raw_block] = STATE(1104), - [sym_thematic_break] = STATE(1104), - [sym_block_quote] = STATE(1104), - [sym__block_quote_prefix] = STATE(222), - [sym_link_reference_definition] = STATE(1104), - [sym_block_attribute] = STATE(1104), - [sym__paragraph] = STATE(1104), - [sym__paragraph_content] = STATE(738), - [sym__paragraph_inline_content] = STATE(799), - [sym__inline] = STATE(629), - [sym__symbol_fallback] = STATE(285), - [aux_sym__list_dash_repeat1] = STATE(354), - [aux_sym__list_plus_repeat1] = STATE(355), - [aux_sym__list_star_repeat1] = STATE(356), - [aux_sym__list_task_repeat1] = STATE(335), - [aux_sym__list_definition_repeat1] = STATE(479), - [aux_sym__list_decimal_period_repeat1] = STATE(480), - [aux_sym__list_decimal_paren_repeat1] = STATE(481), - [aux_sym__list_decimal_parens_repeat1] = STATE(482), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(483), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(484), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(485), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(486), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(487), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(488), - [aux_sym__list_lower_roman_period_repeat1] = STATE(489), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(490), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(491), - [aux_sym__list_upper_roman_period_repeat1] = STATE(492), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(493), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(494), - [aux_sym_table_repeat1] = STATE(248), - [aux_sym__block_quote_prefix_repeat1] = STATE(235), - [aux_sym__inline_repeat1] = STATE(285), + [sym__block_with_heading] = STATE(1102), + [sym__block_element] = STATE(1102), + [sym_heading] = STATE(1102), + [sym_list] = STATE(1102), + [sym__list_dash] = STATE(998), + [sym__list_item_dash] = STATE(553), + [sym__list_plus] = STATE(998), + [sym__list_item_plus] = STATE(554), + [sym__list_star] = STATE(998), + [sym__list_item_star] = STATE(556), + [sym__list_task] = STATE(998), + [sym__list_item_task] = STATE(558), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(998), + [sym__list_item_definition] = STATE(769), + [sym__list_decimal_period] = STATE(998), + [sym__list_item_decimal_period] = STATE(776), + [sym__list_decimal_paren] = STATE(998), + [sym__list_item_decimal_paren] = STATE(790), + [sym__list_decimal_parens] = STATE(998), + [sym__list_item_decimal_parens] = STATE(793), + [sym__list_lower_alpha_period] = STATE(998), + [sym__list_item_lower_alpha_period] = STATE(822), + [sym__list_lower_alpha_paren] = STATE(998), + [sym__list_item_lower_alpha_paren] = STATE(684), + [sym__list_lower_alpha_parens] = STATE(998), + [sym__list_item_lower_alpha_parens] = STATE(688), + [sym__list_upper_alpha_period] = STATE(998), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(998), + [sym__list_item_upper_alpha_paren] = STATE(705), + [sym__list_upper_alpha_parens] = STATE(998), + [sym__list_item_upper_alpha_parens] = STATE(711), + [sym__list_lower_roman_period] = STATE(998), + [sym__list_item_lower_roman_period] = STATE(712), + [sym__list_lower_roman_paren] = STATE(998), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(998), + [sym__list_item_lower_roman_parens] = STATE(728), + [sym__list_upper_roman_period] = STATE(998), + [sym__list_item_upper_roman_period] = STATE(734), + [sym__list_upper_roman_paren] = STATE(998), + [sym__list_item_upper_roman_paren] = STATE(830), + [sym__list_upper_roman_parens] = STATE(998), + [sym__list_item_upper_roman_parens] = STATE(725), + [sym_list_item_content] = STATE(721), + [sym_table] = STATE(1102), + [sym__table_row] = STATE(241), + [sym_table_header] = STATE(241), + [sym_table_separator] = STATE(241), + [sym_table_row] = STATE(241), + [sym_footnote] = STATE(1102), + [sym_footnote_marker_begin] = STATE(1137), + [sym_div] = STATE(1102), + [sym__div_marker_begin] = STATE(1019), + [sym_code_block] = STATE(1102), + [sym_raw_block] = STATE(1102), + [sym_thematic_break] = STATE(1102), + [sym_block_quote] = STATE(1102), + [sym__block_quote_prefix] = STATE(223), + [sym_link_reference_definition] = STATE(1102), + [sym_block_attribute] = STATE(1102), + [sym__paragraph] = STATE(1102), + [sym__paragraph_content] = STATE(707), + [sym__paragraph_inline_content] = STATE(778), + [sym__inline] = STATE(655), + [sym__symbol_fallback] = STATE(273), + [aux_sym__list_dash_repeat1] = STATE(326), + [aux_sym__list_plus_repeat1] = STATE(329), + [aux_sym__list_star_repeat1] = STATE(330), + [aux_sym__list_task_repeat1] = STATE(298), + [aux_sym__list_definition_repeat1] = STATE(508), + [aux_sym__list_decimal_period_repeat1] = STATE(509), + [aux_sym__list_decimal_paren_repeat1] = STATE(510), + [aux_sym__list_decimal_parens_repeat1] = STATE(511), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(512), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(513), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(514), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(515), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(516), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(517), + [aux_sym__list_lower_roman_period_repeat1] = STATE(526), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(531), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(534), + [aux_sym__list_upper_roman_period_repeat1] = STATE(544), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(441), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(442), + [aux_sym_table_repeat1] = STATE(241), + [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__inline_repeat1] = STATE(273), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(366), [anon_sym_DOT] = ACTIONS(11), [aux_sym_identifier_token1] = ACTIONS(11), [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [anon_sym_POUND] = ACTIONS(11), [anon_sym_PERCENT] = ACTIONS(11), [sym__newline] = ACTIONS(416), [sym__heading_begin] = ACTIONS(370), @@ -9880,104 +9759,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__table_row_begin] = ACTIONS(384), }, [40] = { - [sym__block_with_heading] = STATE(1105), - [sym__block_element] = STATE(1105), - [sym_heading] = STATE(1105), - [sym_list] = STATE(1105), - [sym__list_dash] = STATE(974), - [sym__list_item_dash] = STATE(687), - [sym__list_plus] = STATE(974), - [sym__list_item_plus] = STATE(691), - [sym__list_star] = STATE(974), - [sym__list_item_star] = STATE(673), - [sym__list_task] = STATE(974), - [sym__list_item_task] = STATE(680), - [sym_list_marker_task] = STATE(48), - [sym__list_definition] = STATE(974), - [sym__list_item_definition] = STATE(804), - [sym__list_decimal_period] = STATE(974), - [sym__list_item_decimal_period] = STATE(837), - [sym__list_decimal_paren] = STATE(974), - [sym__list_item_decimal_paren] = STATE(703), - [sym__list_decimal_parens] = STATE(974), - [sym__list_item_decimal_parens] = STATE(715), - [sym__list_lower_alpha_period] = STATE(974), - [sym__list_item_lower_alpha_period] = STATE(739), - [sym__list_lower_alpha_paren] = STATE(974), - [sym__list_item_lower_alpha_paren] = STATE(754), - [sym__list_lower_alpha_parens] = STATE(974), - [sym__list_item_lower_alpha_parens] = STATE(755), - [sym__list_upper_alpha_period] = STATE(974), - [sym__list_item_upper_alpha_period] = STATE(758), - [sym__list_upper_alpha_paren] = STATE(974), - [sym__list_item_upper_alpha_paren] = STATE(759), - [sym__list_upper_alpha_parens] = STATE(974), - [sym__list_item_upper_alpha_parens] = STATE(766), - [sym__list_lower_roman_period] = STATE(974), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(974), - [sym__list_item_lower_roman_paren] = STATE(770), - [sym__list_lower_roman_parens] = STATE(974), - [sym__list_item_lower_roman_parens] = STATE(773), - [sym__list_upper_roman_period] = STATE(974), - [sym__list_item_upper_roman_period] = STATE(775), - [sym__list_upper_roman_paren] = STATE(974), - [sym__list_item_upper_roman_paren] = STATE(791), - [sym__list_upper_roman_parens] = STATE(974), - [sym__list_item_upper_roman_parens] = STATE(793), - [sym_list_item_content] = STATE(792), - [sym_table] = STATE(1105), - [sym__table_row] = STATE(248), - [sym_table_header] = STATE(248), - [sym_table_separator] = STATE(248), - [sym_table_row] = STATE(248), - [sym_footnote] = STATE(1105), - [sym_footnote_marker_begin] = STATE(1141), - [sym_div] = STATE(1105), - [sym__div_marker_begin] = STATE(1023), - [sym_code_block] = STATE(1105), - [sym_raw_block] = STATE(1105), - [sym_thematic_break] = STATE(1105), - [sym_block_quote] = STATE(1105), - [sym__block_quote_prefix] = STATE(222), - [sym_link_reference_definition] = STATE(1105), - [sym_block_attribute] = STATE(1105), - [sym__paragraph] = STATE(1105), - [sym__paragraph_content] = STATE(738), - [sym__paragraph_inline_content] = STATE(799), - [sym__inline] = STATE(629), - [sym__symbol_fallback] = STATE(285), - [aux_sym__list_dash_repeat1] = STATE(354), - [aux_sym__list_plus_repeat1] = STATE(355), - [aux_sym__list_star_repeat1] = STATE(356), - [aux_sym__list_task_repeat1] = STATE(335), - [aux_sym__list_definition_repeat1] = STATE(479), - [aux_sym__list_decimal_period_repeat1] = STATE(480), - [aux_sym__list_decimal_paren_repeat1] = STATE(481), - [aux_sym__list_decimal_parens_repeat1] = STATE(482), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(483), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(484), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(485), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(486), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(487), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(488), - [aux_sym__list_lower_roman_period_repeat1] = STATE(489), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(490), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(491), - [aux_sym__list_upper_roman_period_repeat1] = STATE(492), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(493), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(494), - [aux_sym_table_repeat1] = STATE(248), - [aux_sym__block_quote_prefix_repeat1] = STATE(235), - [aux_sym__inline_repeat1] = STATE(285), + [sym__block_with_heading] = STATE(1103), + [sym__block_element] = STATE(1103), + [sym_heading] = STATE(1103), + [sym_list] = STATE(1103), + [sym__list_dash] = STATE(998), + [sym__list_item_dash] = STATE(553), + [sym__list_plus] = STATE(998), + [sym__list_item_plus] = STATE(554), + [sym__list_star] = STATE(998), + [sym__list_item_star] = STATE(556), + [sym__list_task] = STATE(998), + [sym__list_item_task] = STATE(558), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(998), + [sym__list_item_definition] = STATE(769), + [sym__list_decimal_period] = STATE(998), + [sym__list_item_decimal_period] = STATE(776), + [sym__list_decimal_paren] = STATE(998), + [sym__list_item_decimal_paren] = STATE(790), + [sym__list_decimal_parens] = STATE(998), + [sym__list_item_decimal_parens] = STATE(793), + [sym__list_lower_alpha_period] = STATE(998), + [sym__list_item_lower_alpha_period] = STATE(822), + [sym__list_lower_alpha_paren] = STATE(998), + [sym__list_item_lower_alpha_paren] = STATE(684), + [sym__list_lower_alpha_parens] = STATE(998), + [sym__list_item_lower_alpha_parens] = STATE(688), + [sym__list_upper_alpha_period] = STATE(998), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(998), + [sym__list_item_upper_alpha_paren] = STATE(705), + [sym__list_upper_alpha_parens] = STATE(998), + [sym__list_item_upper_alpha_parens] = STATE(711), + [sym__list_lower_roman_period] = STATE(998), + [sym__list_item_lower_roman_period] = STATE(712), + [sym__list_lower_roman_paren] = STATE(998), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(998), + [sym__list_item_lower_roman_parens] = STATE(728), + [sym__list_upper_roman_period] = STATE(998), + [sym__list_item_upper_roman_period] = STATE(734), + [sym__list_upper_roman_paren] = STATE(998), + [sym__list_item_upper_roman_paren] = STATE(830), + [sym__list_upper_roman_parens] = STATE(998), + [sym__list_item_upper_roman_parens] = STATE(725), + [sym_list_item_content] = STATE(724), + [sym_table] = STATE(1103), + [sym__table_row] = STATE(241), + [sym_table_header] = STATE(241), + [sym_table_separator] = STATE(241), + [sym_table_row] = STATE(241), + [sym_footnote] = STATE(1103), + [sym_footnote_marker_begin] = STATE(1137), + [sym_div] = STATE(1103), + [sym__div_marker_begin] = STATE(1019), + [sym_code_block] = STATE(1103), + [sym_raw_block] = STATE(1103), + [sym_thematic_break] = STATE(1103), + [sym_block_quote] = STATE(1103), + [sym__block_quote_prefix] = STATE(223), + [sym_link_reference_definition] = STATE(1103), + [sym_block_attribute] = STATE(1103), + [sym__paragraph] = STATE(1103), + [sym__paragraph_content] = STATE(707), + [sym__paragraph_inline_content] = STATE(778), + [sym__inline] = STATE(655), + [sym__symbol_fallback] = STATE(273), + [aux_sym__list_dash_repeat1] = STATE(326), + [aux_sym__list_plus_repeat1] = STATE(329), + [aux_sym__list_star_repeat1] = STATE(330), + [aux_sym__list_task_repeat1] = STATE(298), + [aux_sym__list_definition_repeat1] = STATE(508), + [aux_sym__list_decimal_period_repeat1] = STATE(509), + [aux_sym__list_decimal_paren_repeat1] = STATE(510), + [aux_sym__list_decimal_parens_repeat1] = STATE(511), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(512), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(513), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(514), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(515), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(516), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(517), + [aux_sym__list_lower_roman_period_repeat1] = STATE(526), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(531), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(534), + [aux_sym__list_upper_roman_period_repeat1] = STATE(544), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(441), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(442), + [aux_sym_table_repeat1] = STATE(241), + [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__inline_repeat1] = STATE(273), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(366), [anon_sym_DOT] = ACTIONS(11), [aux_sym_identifier_token1] = ACTIONS(11), [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [anon_sym_POUND] = ACTIONS(11), [anon_sym_PERCENT] = ACTIONS(11), [sym__newline] = ACTIONS(418), [sym__heading_begin] = ACTIONS(370), @@ -10012,104 +9889,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__table_row_begin] = ACTIONS(384), }, [41] = { - [sym__block_with_heading] = STATE(1106), - [sym__block_element] = STATE(1106), - [sym_heading] = STATE(1106), - [sym_list] = STATE(1106), - [sym__list_dash] = STATE(974), - [sym__list_item_dash] = STATE(687), - [sym__list_plus] = STATE(974), - [sym__list_item_plus] = STATE(691), - [sym__list_star] = STATE(974), - [sym__list_item_star] = STATE(673), - [sym__list_task] = STATE(974), - [sym__list_item_task] = STATE(680), - [sym_list_marker_task] = STATE(48), - [sym__list_definition] = STATE(974), - [sym__list_item_definition] = STATE(804), - [sym__list_decimal_period] = STATE(974), - [sym__list_item_decimal_period] = STATE(837), - [sym__list_decimal_paren] = STATE(974), - [sym__list_item_decimal_paren] = STATE(703), - [sym__list_decimal_parens] = STATE(974), - [sym__list_item_decimal_parens] = STATE(715), - [sym__list_lower_alpha_period] = STATE(974), - [sym__list_item_lower_alpha_period] = STATE(739), - [sym__list_lower_alpha_paren] = STATE(974), - [sym__list_item_lower_alpha_paren] = STATE(754), - [sym__list_lower_alpha_parens] = STATE(974), - [sym__list_item_lower_alpha_parens] = STATE(755), - [sym__list_upper_alpha_period] = STATE(974), - [sym__list_item_upper_alpha_period] = STATE(758), - [sym__list_upper_alpha_paren] = STATE(974), - [sym__list_item_upper_alpha_paren] = STATE(759), - [sym__list_upper_alpha_parens] = STATE(974), - [sym__list_item_upper_alpha_parens] = STATE(766), - [sym__list_lower_roman_period] = STATE(974), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(974), - [sym__list_item_lower_roman_paren] = STATE(770), - [sym__list_lower_roman_parens] = STATE(974), - [sym__list_item_lower_roman_parens] = STATE(773), - [sym__list_upper_roman_period] = STATE(974), - [sym__list_item_upper_roman_period] = STATE(775), - [sym__list_upper_roman_paren] = STATE(974), - [sym__list_item_upper_roman_paren] = STATE(791), - [sym__list_upper_roman_parens] = STATE(974), - [sym__list_item_upper_roman_parens] = STATE(793), - [sym_list_item_content] = STATE(802), - [sym_table] = STATE(1106), - [sym__table_row] = STATE(248), - [sym_table_header] = STATE(248), - [sym_table_separator] = STATE(248), - [sym_table_row] = STATE(248), - [sym_footnote] = STATE(1106), - [sym_footnote_marker_begin] = STATE(1141), - [sym_div] = STATE(1106), - [sym__div_marker_begin] = STATE(1023), - [sym_code_block] = STATE(1106), - [sym_raw_block] = STATE(1106), - [sym_thematic_break] = STATE(1106), - [sym_block_quote] = STATE(1106), - [sym__block_quote_prefix] = STATE(222), - [sym_link_reference_definition] = STATE(1106), - [sym_block_attribute] = STATE(1106), - [sym__paragraph] = STATE(1106), - [sym__paragraph_content] = STATE(738), - [sym__paragraph_inline_content] = STATE(799), - [sym__inline] = STATE(629), - [sym__symbol_fallback] = STATE(285), - [aux_sym__list_dash_repeat1] = STATE(354), - [aux_sym__list_plus_repeat1] = STATE(355), - [aux_sym__list_star_repeat1] = STATE(356), - [aux_sym__list_task_repeat1] = STATE(335), - [aux_sym__list_definition_repeat1] = STATE(479), - [aux_sym__list_decimal_period_repeat1] = STATE(480), - [aux_sym__list_decimal_paren_repeat1] = STATE(481), - [aux_sym__list_decimal_parens_repeat1] = STATE(482), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(483), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(484), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(485), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(486), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(487), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(488), - [aux_sym__list_lower_roman_period_repeat1] = STATE(489), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(490), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(491), - [aux_sym__list_upper_roman_period_repeat1] = STATE(492), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(493), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(494), - [aux_sym_table_repeat1] = STATE(248), - [aux_sym__block_quote_prefix_repeat1] = STATE(235), - [aux_sym__inline_repeat1] = STATE(285), + [sym__block_with_heading] = STATE(1034), + [sym__block_element] = STATE(1034), + [sym_heading] = STATE(1034), + [sym_list] = STATE(1034), + [sym__list_dash] = STATE(998), + [sym__list_item_dash] = STATE(553), + [sym__list_plus] = STATE(998), + [sym__list_item_plus] = STATE(554), + [sym__list_star] = STATE(998), + [sym__list_item_star] = STATE(556), + [sym__list_task] = STATE(998), + [sym__list_item_task] = STATE(558), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(998), + [sym__list_item_definition] = STATE(769), + [sym__list_decimal_period] = STATE(998), + [sym__list_item_decimal_period] = STATE(776), + [sym__list_decimal_paren] = STATE(998), + [sym__list_item_decimal_paren] = STATE(790), + [sym__list_decimal_parens] = STATE(998), + [sym__list_item_decimal_parens] = STATE(793), + [sym__list_lower_alpha_period] = STATE(998), + [sym__list_item_lower_alpha_period] = STATE(822), + [sym__list_lower_alpha_paren] = STATE(998), + [sym__list_item_lower_alpha_paren] = STATE(684), + [sym__list_lower_alpha_parens] = STATE(998), + [sym__list_item_lower_alpha_parens] = STATE(688), + [sym__list_upper_alpha_period] = STATE(998), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(998), + [sym__list_item_upper_alpha_paren] = STATE(705), + [sym__list_upper_alpha_parens] = STATE(998), + [sym__list_item_upper_alpha_parens] = STATE(711), + [sym__list_lower_roman_period] = STATE(998), + [sym__list_item_lower_roman_period] = STATE(712), + [sym__list_lower_roman_paren] = STATE(998), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(998), + [sym__list_item_lower_roman_parens] = STATE(728), + [sym__list_upper_roman_period] = STATE(998), + [sym__list_item_upper_roman_period] = STATE(734), + [sym__list_upper_roman_paren] = STATE(998), + [sym__list_item_upper_roman_paren] = STATE(830), + [sym__list_upper_roman_parens] = STATE(998), + [sym__list_item_upper_roman_parens] = STATE(725), + [sym_table] = STATE(1034), + [sym__table_row] = STATE(241), + [sym_table_header] = STATE(241), + [sym_table_separator] = STATE(241), + [sym_table_row] = STATE(241), + [sym_footnote] = STATE(1034), + [sym_footnote_marker_begin] = STATE(1137), + [sym_footnote_content] = STATE(935), + [sym_div] = STATE(1034), + [sym__div_marker_begin] = STATE(1019), + [sym_code_block] = STATE(1034), + [sym_raw_block] = STATE(1034), + [sym_thematic_break] = STATE(1034), + [sym_block_quote] = STATE(1034), + [sym__block_quote_prefix] = STATE(223), + [sym_link_reference_definition] = STATE(1034), + [sym_block_attribute] = STATE(1034), + [sym__paragraph] = STATE(1034), + [sym__paragraph_content] = STATE(707), + [sym__paragraph_inline_content] = STATE(778), + [sym__inline] = STATE(655), + [sym__symbol_fallback] = STATE(273), + [aux_sym__list_dash_repeat1] = STATE(326), + [aux_sym__list_plus_repeat1] = STATE(329), + [aux_sym__list_star_repeat1] = STATE(330), + [aux_sym__list_task_repeat1] = STATE(298), + [aux_sym__list_definition_repeat1] = STATE(508), + [aux_sym__list_decimal_period_repeat1] = STATE(509), + [aux_sym__list_decimal_paren_repeat1] = STATE(510), + [aux_sym__list_decimal_parens_repeat1] = STATE(511), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(512), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(513), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(514), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(515), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(516), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(517), + [aux_sym__list_lower_roman_period_repeat1] = STATE(526), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(531), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(534), + [aux_sym__list_upper_roman_period_repeat1] = STATE(544), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(441), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(442), + [aux_sym_table_repeat1] = STATE(241), + [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__inline_repeat1] = STATE(273), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(366), [anon_sym_DOT] = ACTIONS(11), [aux_sym_identifier_token1] = ACTIONS(11), [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [anon_sym_POUND] = ACTIONS(11), [anon_sym_PERCENT] = ACTIONS(11), [sym__newline] = ACTIONS(420), [sym__heading_begin] = ACTIONS(370), @@ -10144,106 +10019,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__table_row_begin] = ACTIONS(384), }, [42] = { - [sym__block_with_heading] = STATE(1038), - [sym__block_element] = STATE(1038), - [sym_heading] = STATE(1038), - [sym_list] = STATE(1038), - [sym__list_dash] = STATE(974), - [sym__list_item_dash] = STATE(687), - [sym__list_plus] = STATE(974), - [sym__list_item_plus] = STATE(691), - [sym__list_star] = STATE(974), - [sym__list_item_star] = STATE(673), - [sym__list_task] = STATE(974), - [sym__list_item_task] = STATE(680), - [sym_list_marker_task] = STATE(48), - [sym__list_definition] = STATE(974), - [sym__list_item_definition] = STATE(804), - [sym__list_decimal_period] = STATE(974), - [sym__list_item_decimal_period] = STATE(837), - [sym__list_decimal_paren] = STATE(974), - [sym__list_item_decimal_paren] = STATE(703), - [sym__list_decimal_parens] = STATE(974), - [sym__list_item_decimal_parens] = STATE(715), - [sym__list_lower_alpha_period] = STATE(974), - [sym__list_item_lower_alpha_period] = STATE(739), - [sym__list_lower_alpha_paren] = STATE(974), - [sym__list_item_lower_alpha_paren] = STATE(754), - [sym__list_lower_alpha_parens] = STATE(974), - [sym__list_item_lower_alpha_parens] = STATE(755), - [sym__list_upper_alpha_period] = STATE(974), - [sym__list_item_upper_alpha_period] = STATE(758), - [sym__list_upper_alpha_paren] = STATE(974), - [sym__list_item_upper_alpha_paren] = STATE(759), - [sym__list_upper_alpha_parens] = STATE(974), - [sym__list_item_upper_alpha_parens] = STATE(766), - [sym__list_lower_roman_period] = STATE(974), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(974), - [sym__list_item_lower_roman_paren] = STATE(770), - [sym__list_lower_roman_parens] = STATE(974), - [sym__list_item_lower_roman_parens] = STATE(773), - [sym__list_upper_roman_period] = STATE(974), - [sym__list_item_upper_roman_period] = STATE(775), - [sym__list_upper_roman_paren] = STATE(974), - [sym__list_item_upper_roman_paren] = STATE(791), - [sym__list_upper_roman_parens] = STATE(974), - [sym__list_item_upper_roman_parens] = STATE(793), - [sym_table] = STATE(1038), - [sym__table_row] = STATE(248), - [sym_table_header] = STATE(248), - [sym_table_separator] = STATE(248), - [sym_table_row] = STATE(248), - [sym_footnote] = STATE(1038), - [sym_footnote_marker_begin] = STATE(1141), - [sym_footnote_content] = STATE(1128), - [sym_div] = STATE(1038), - [sym__div_marker_begin] = STATE(1023), - [sym_code_block] = STATE(1038), - [sym_raw_block] = STATE(1038), - [sym_thematic_break] = STATE(1038), - [sym_block_quote] = STATE(1038), - [sym__block_quote_prefix] = STATE(222), - [sym_link_reference_definition] = STATE(1038), - [sym_block_attribute] = STATE(1038), - [sym__paragraph] = STATE(1038), - [sym__paragraph_content] = STATE(738), - [sym__paragraph_inline_content] = STATE(799), - [sym__inline] = STATE(629), - [sym__symbol_fallback] = STATE(285), - [aux_sym__list_dash_repeat1] = STATE(354), - [aux_sym__list_plus_repeat1] = STATE(355), - [aux_sym__list_star_repeat1] = STATE(356), - [aux_sym__list_task_repeat1] = STATE(335), - [aux_sym__list_definition_repeat1] = STATE(479), - [aux_sym__list_decimal_period_repeat1] = STATE(480), - [aux_sym__list_decimal_paren_repeat1] = STATE(481), - [aux_sym__list_decimal_parens_repeat1] = STATE(482), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(483), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(484), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(485), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(486), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(487), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(488), - [aux_sym__list_lower_roman_period_repeat1] = STATE(489), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(490), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(491), - [aux_sym__list_upper_roman_period_repeat1] = STATE(492), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(493), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(494), - [aux_sym_table_repeat1] = STATE(248), - [aux_sym__block_quote_prefix_repeat1] = STATE(235), - [aux_sym__inline_repeat1] = STATE(285), + [sym__block_with_heading] = STATE(1040), + [sym__block_element] = STATE(1040), + [sym_heading] = STATE(1040), + [sym_list] = STATE(1040), + [sym__list_dash] = STATE(998), + [sym__list_item_dash] = STATE(553), + [sym__list_plus] = STATE(998), + [sym__list_item_plus] = STATE(554), + [sym__list_star] = STATE(998), + [sym__list_item_star] = STATE(556), + [sym__list_task] = STATE(998), + [sym__list_item_task] = STATE(558), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(998), + [sym__list_item_definition] = STATE(769), + [sym__list_decimal_period] = STATE(998), + [sym__list_item_decimal_period] = STATE(776), + [sym__list_decimal_paren] = STATE(998), + [sym__list_item_decimal_paren] = STATE(790), + [sym__list_decimal_parens] = STATE(998), + [sym__list_item_decimal_parens] = STATE(793), + [sym__list_lower_alpha_period] = STATE(998), + [sym__list_item_lower_alpha_period] = STATE(822), + [sym__list_lower_alpha_paren] = STATE(998), + [sym__list_item_lower_alpha_paren] = STATE(684), + [sym__list_lower_alpha_parens] = STATE(998), + [sym__list_item_lower_alpha_parens] = STATE(688), + [sym__list_upper_alpha_period] = STATE(998), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(998), + [sym__list_item_upper_alpha_paren] = STATE(705), + [sym__list_upper_alpha_parens] = STATE(998), + [sym__list_item_upper_alpha_parens] = STATE(711), + [sym__list_lower_roman_period] = STATE(998), + [sym__list_item_lower_roman_period] = STATE(712), + [sym__list_lower_roman_paren] = STATE(998), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(998), + [sym__list_item_lower_roman_parens] = STATE(728), + [sym__list_upper_roman_period] = STATE(998), + [sym__list_item_upper_roman_period] = STATE(734), + [sym__list_upper_roman_paren] = STATE(998), + [sym__list_item_upper_roman_paren] = STATE(830), + [sym__list_upper_roman_parens] = STATE(998), + [sym__list_item_upper_roman_parens] = STATE(725), + [sym_list_item_content] = STATE(601), + [sym_table] = STATE(1040), + [sym__table_row] = STATE(241), + [sym_table_header] = STATE(241), + [sym_table_separator] = STATE(241), + [sym_table_row] = STATE(241), + [sym_footnote] = STATE(1040), + [sym_footnote_marker_begin] = STATE(1137), + [sym_div] = STATE(1040), + [sym__div_marker_begin] = STATE(1019), + [sym_code_block] = STATE(1040), + [sym_raw_block] = STATE(1040), + [sym_thematic_break] = STATE(1040), + [sym_block_quote] = STATE(1040), + [sym__block_quote_prefix] = STATE(223), + [sym_link_reference_definition] = STATE(1040), + [sym_block_attribute] = STATE(1040), + [sym__paragraph] = STATE(1040), + [sym__paragraph_content] = STATE(707), + [sym__paragraph_inline_content] = STATE(778), + [sym__inline] = STATE(655), + [sym__symbol_fallback] = STATE(273), + [aux_sym__list_dash_repeat1] = STATE(326), + [aux_sym__list_plus_repeat1] = STATE(329), + [aux_sym__list_star_repeat1] = STATE(330), + [aux_sym__list_task_repeat1] = STATE(298), + [aux_sym__list_definition_repeat1] = STATE(508), + [aux_sym__list_decimal_period_repeat1] = STATE(509), + [aux_sym__list_decimal_paren_repeat1] = STATE(510), + [aux_sym__list_decimal_parens_repeat1] = STATE(511), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(512), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(513), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(514), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(515), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(516), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(517), + [aux_sym__list_lower_roman_period_repeat1] = STATE(526), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(531), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(534), + [aux_sym__list_upper_roman_period_repeat1] = STATE(544), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(441), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(442), + [aux_sym_table_repeat1] = STATE(241), + [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__inline_repeat1] = STATE(273), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(366), [anon_sym_DOT] = ACTIONS(11), [aux_sym_identifier_token1] = ACTIONS(11), [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [anon_sym_POUND] = ACTIONS(11), [anon_sym_PERCENT] = ACTIONS(11), - [sym__newline] = ACTIONS(422), + [sym__newline] = ACTIONS(396), [sym__heading_begin] = ACTIONS(370), [sym__div_begin] = ACTIONS(19), [sym__code_block_begin] = ACTIONS(372), @@ -10276,106 +10149,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__table_row_begin] = ACTIONS(384), }, [43] = { - [sym__block_with_heading] = STATE(1107), - [sym__block_element] = STATE(1107), - [sym_heading] = STATE(1107), - [sym_list] = STATE(1107), - [sym__list_dash] = STATE(974), - [sym__list_item_dash] = STATE(687), - [sym__list_plus] = STATE(974), - [sym__list_item_plus] = STATE(691), - [sym__list_star] = STATE(974), - [sym__list_item_star] = STATE(673), - [sym__list_task] = STATE(974), - [sym__list_item_task] = STATE(680), - [sym_list_marker_task] = STATE(48), - [sym__list_definition] = STATE(974), - [sym__list_item_definition] = STATE(804), - [sym__list_decimal_period] = STATE(974), - [sym__list_item_decimal_period] = STATE(837), - [sym__list_decimal_paren] = STATE(974), - [sym__list_item_decimal_paren] = STATE(703), - [sym__list_decimal_parens] = STATE(974), - [sym__list_item_decimal_parens] = STATE(715), - [sym__list_lower_alpha_period] = STATE(974), - [sym__list_item_lower_alpha_period] = STATE(739), - [sym__list_lower_alpha_paren] = STATE(974), - [sym__list_item_lower_alpha_paren] = STATE(754), - [sym__list_lower_alpha_parens] = STATE(974), - [sym__list_item_lower_alpha_parens] = STATE(755), - [sym__list_upper_alpha_period] = STATE(974), - [sym__list_item_upper_alpha_period] = STATE(758), - [sym__list_upper_alpha_paren] = STATE(974), - [sym__list_item_upper_alpha_paren] = STATE(759), - [sym__list_upper_alpha_parens] = STATE(974), - [sym__list_item_upper_alpha_parens] = STATE(766), - [sym__list_lower_roman_period] = STATE(974), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(974), - [sym__list_item_lower_roman_paren] = STATE(770), - [sym__list_lower_roman_parens] = STATE(974), - [sym__list_item_lower_roman_parens] = STATE(773), - [sym__list_upper_roman_period] = STATE(974), - [sym__list_item_upper_roman_period] = STATE(775), - [sym__list_upper_roman_paren] = STATE(974), - [sym__list_item_upper_roman_paren] = STATE(791), - [sym__list_upper_roman_parens] = STATE(974), - [sym__list_item_upper_roman_parens] = STATE(793), - [sym_list_item_content] = STATE(803), - [sym_table] = STATE(1107), - [sym__table_row] = STATE(248), - [sym_table_header] = STATE(248), - [sym_table_separator] = STATE(248), - [sym_table_row] = STATE(248), - [sym_footnote] = STATE(1107), - [sym_footnote_marker_begin] = STATE(1141), - [sym_div] = STATE(1107), - [sym__div_marker_begin] = STATE(1023), - [sym_code_block] = STATE(1107), - [sym_raw_block] = STATE(1107), - [sym_thematic_break] = STATE(1107), - [sym_block_quote] = STATE(1107), - [sym__block_quote_prefix] = STATE(222), - [sym_link_reference_definition] = STATE(1107), - [sym_block_attribute] = STATE(1107), - [sym__paragraph] = STATE(1107), - [sym__paragraph_content] = STATE(738), - [sym__paragraph_inline_content] = STATE(799), - [sym__inline] = STATE(629), - [sym__symbol_fallback] = STATE(285), - [aux_sym__list_dash_repeat1] = STATE(354), - [aux_sym__list_plus_repeat1] = STATE(355), - [aux_sym__list_star_repeat1] = STATE(356), - [aux_sym__list_task_repeat1] = STATE(335), - [aux_sym__list_definition_repeat1] = STATE(479), - [aux_sym__list_decimal_period_repeat1] = STATE(480), - [aux_sym__list_decimal_paren_repeat1] = STATE(481), - [aux_sym__list_decimal_parens_repeat1] = STATE(482), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(483), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(484), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(485), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(486), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(487), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(488), - [aux_sym__list_lower_roman_period_repeat1] = STATE(489), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(490), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(491), - [aux_sym__list_upper_roman_period_repeat1] = STATE(492), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(493), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(494), - [aux_sym_table_repeat1] = STATE(248), - [aux_sym__block_quote_prefix_repeat1] = STATE(235), - [aux_sym__inline_repeat1] = STATE(285), + [sym__block_with_heading] = STATE(1053), + [sym__block_element] = STATE(1053), + [sym_heading] = STATE(1053), + [sym_list] = STATE(1053), + [sym__list_dash] = STATE(998), + [sym__list_item_dash] = STATE(553), + [sym__list_plus] = STATE(998), + [sym__list_item_plus] = STATE(554), + [sym__list_star] = STATE(998), + [sym__list_item_star] = STATE(556), + [sym__list_task] = STATE(998), + [sym__list_item_task] = STATE(558), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(998), + [sym__list_item_definition] = STATE(769), + [sym__list_decimal_period] = STATE(998), + [sym__list_item_decimal_period] = STATE(776), + [sym__list_decimal_paren] = STATE(998), + [sym__list_item_decimal_paren] = STATE(790), + [sym__list_decimal_parens] = STATE(998), + [sym__list_item_decimal_parens] = STATE(793), + [sym__list_lower_alpha_period] = STATE(998), + [sym__list_item_lower_alpha_period] = STATE(822), + [sym__list_lower_alpha_paren] = STATE(998), + [sym__list_item_lower_alpha_paren] = STATE(684), + [sym__list_lower_alpha_parens] = STATE(998), + [sym__list_item_lower_alpha_parens] = STATE(688), + [sym__list_upper_alpha_period] = STATE(998), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(998), + [sym__list_item_upper_alpha_paren] = STATE(705), + [sym__list_upper_alpha_parens] = STATE(998), + [sym__list_item_upper_alpha_parens] = STATE(711), + [sym__list_lower_roman_period] = STATE(998), + [sym__list_item_lower_roman_period] = STATE(712), + [sym__list_lower_roman_paren] = STATE(998), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(998), + [sym__list_item_lower_roman_parens] = STATE(728), + [sym__list_upper_roman_period] = STATE(998), + [sym__list_item_upper_roman_period] = STATE(734), + [sym__list_upper_roman_paren] = STATE(998), + [sym__list_item_upper_roman_paren] = STATE(830), + [sym__list_upper_roman_parens] = STATE(998), + [sym__list_item_upper_roman_parens] = STATE(725), + [sym_table] = STATE(1053), + [sym__table_row] = STATE(241), + [sym_table_header] = STATE(241), + [sym_table_separator] = STATE(241), + [sym_table_row] = STATE(241), + [sym_footnote] = STATE(1053), + [sym_footnote_marker_begin] = STATE(1137), + [sym_footnote_content] = STATE(866), + [sym_div] = STATE(1053), + [sym__div_marker_begin] = STATE(1019), + [sym_code_block] = STATE(1053), + [sym_raw_block] = STATE(1053), + [sym_thematic_break] = STATE(1053), + [sym_block_quote] = STATE(1053), + [sym__block_quote_prefix] = STATE(223), + [sym_link_reference_definition] = STATE(1053), + [sym_block_attribute] = STATE(1053), + [sym__paragraph] = STATE(1053), + [sym__paragraph_content] = STATE(707), + [sym__paragraph_inline_content] = STATE(778), + [sym__inline] = STATE(655), + [sym__symbol_fallback] = STATE(273), + [aux_sym__list_dash_repeat1] = STATE(326), + [aux_sym__list_plus_repeat1] = STATE(329), + [aux_sym__list_star_repeat1] = STATE(330), + [aux_sym__list_task_repeat1] = STATE(298), + [aux_sym__list_definition_repeat1] = STATE(508), + [aux_sym__list_decimal_period_repeat1] = STATE(509), + [aux_sym__list_decimal_paren_repeat1] = STATE(510), + [aux_sym__list_decimal_parens_repeat1] = STATE(511), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(512), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(513), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(514), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(515), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(516), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(517), + [aux_sym__list_lower_roman_period_repeat1] = STATE(526), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(531), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(534), + [aux_sym__list_upper_roman_period_repeat1] = STATE(544), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(441), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(442), + [aux_sym_table_repeat1] = STATE(241), + [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__inline_repeat1] = STATE(273), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(366), [anon_sym_DOT] = ACTIONS(11), [aux_sym_identifier_token1] = ACTIONS(11), [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [anon_sym_POUND] = ACTIONS(11), [anon_sym_PERCENT] = ACTIONS(11), - [sym__newline] = ACTIONS(424), + [sym__newline] = ACTIONS(422), [sym__heading_begin] = ACTIONS(370), [sym__div_begin] = ACTIONS(19), [sym__code_block_begin] = ACTIONS(372), @@ -10408,106 +10279,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__table_row_begin] = ACTIONS(384), }, [44] = { - [sym__block_with_heading] = STATE(1057), - [sym__block_element] = STATE(1057), - [sym_heading] = STATE(1057), - [sym_list] = STATE(1057), - [sym__list_dash] = STATE(974), - [sym__list_item_dash] = STATE(687), - [sym__list_plus] = STATE(974), - [sym__list_item_plus] = STATE(691), - [sym__list_star] = STATE(974), - [sym__list_item_star] = STATE(673), - [sym__list_task] = STATE(974), - [sym__list_item_task] = STATE(680), - [sym_list_marker_task] = STATE(48), - [sym__list_definition] = STATE(974), - [sym__list_item_definition] = STATE(804), - [sym__list_decimal_period] = STATE(974), - [sym__list_item_decimal_period] = STATE(837), - [sym__list_decimal_paren] = STATE(974), - [sym__list_item_decimal_paren] = STATE(703), - [sym__list_decimal_parens] = STATE(974), - [sym__list_item_decimal_parens] = STATE(715), - [sym__list_lower_alpha_period] = STATE(974), - [sym__list_item_lower_alpha_period] = STATE(739), - [sym__list_lower_alpha_paren] = STATE(974), - [sym__list_item_lower_alpha_paren] = STATE(754), - [sym__list_lower_alpha_parens] = STATE(974), - [sym__list_item_lower_alpha_parens] = STATE(755), - [sym__list_upper_alpha_period] = STATE(974), - [sym__list_item_upper_alpha_period] = STATE(758), - [sym__list_upper_alpha_paren] = STATE(974), - [sym__list_item_upper_alpha_paren] = STATE(759), - [sym__list_upper_alpha_parens] = STATE(974), - [sym__list_item_upper_alpha_parens] = STATE(766), - [sym__list_lower_roman_period] = STATE(974), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(974), - [sym__list_item_lower_roman_paren] = STATE(770), - [sym__list_lower_roman_parens] = STATE(974), - [sym__list_item_lower_roman_parens] = STATE(773), - [sym__list_upper_roman_period] = STATE(974), - [sym__list_item_upper_roman_period] = STATE(775), - [sym__list_upper_roman_paren] = STATE(974), - [sym__list_item_upper_roman_paren] = STATE(791), - [sym__list_upper_roman_parens] = STATE(974), - [sym__list_item_upper_roman_parens] = STATE(793), - [sym_table] = STATE(1057), - [sym__table_row] = STATE(248), - [sym_table_header] = STATE(248), - [sym_table_separator] = STATE(248), - [sym_table_row] = STATE(248), - [sym_footnote] = STATE(1057), - [sym_footnote_marker_begin] = STATE(1141), - [sym_footnote_content] = STATE(843), - [sym_div] = STATE(1057), - [sym__div_marker_begin] = STATE(1023), - [sym_code_block] = STATE(1057), - [sym_raw_block] = STATE(1057), - [sym_thematic_break] = STATE(1057), - [sym_block_quote] = STATE(1057), - [sym__block_quote_prefix] = STATE(222), - [sym_link_reference_definition] = STATE(1057), - [sym_block_attribute] = STATE(1057), - [sym__paragraph] = STATE(1057), - [sym__paragraph_content] = STATE(738), - [sym__paragraph_inline_content] = STATE(799), - [sym__inline] = STATE(629), - [sym__symbol_fallback] = STATE(285), - [aux_sym__list_dash_repeat1] = STATE(354), - [aux_sym__list_plus_repeat1] = STATE(355), - [aux_sym__list_star_repeat1] = STATE(356), - [aux_sym__list_task_repeat1] = STATE(335), - [aux_sym__list_definition_repeat1] = STATE(479), - [aux_sym__list_decimal_period_repeat1] = STATE(480), - [aux_sym__list_decimal_paren_repeat1] = STATE(481), - [aux_sym__list_decimal_parens_repeat1] = STATE(482), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(483), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(484), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(485), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(486), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(487), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(488), - [aux_sym__list_lower_roman_period_repeat1] = STATE(489), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(490), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(491), - [aux_sym__list_upper_roman_period_repeat1] = STATE(492), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(493), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(494), - [aux_sym_table_repeat1] = STATE(248), - [aux_sym__block_quote_prefix_repeat1] = STATE(235), - [aux_sym__inline_repeat1] = STATE(285), + [sym__block_with_heading] = STATE(1059), + [sym__block_element] = STATE(1059), + [sym_heading] = STATE(1059), + [sym_list] = STATE(1059), + [sym__list_dash] = STATE(998), + [sym__list_item_dash] = STATE(553), + [sym__list_plus] = STATE(998), + [sym__list_item_plus] = STATE(554), + [sym__list_star] = STATE(998), + [sym__list_item_star] = STATE(556), + [sym__list_task] = STATE(998), + [sym__list_item_task] = STATE(558), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(998), + [sym__list_item_definition] = STATE(769), + [sym__list_decimal_period] = STATE(998), + [sym__list_item_decimal_period] = STATE(776), + [sym__list_decimal_paren] = STATE(998), + [sym__list_item_decimal_paren] = STATE(790), + [sym__list_decimal_parens] = STATE(998), + [sym__list_item_decimal_parens] = STATE(793), + [sym__list_lower_alpha_period] = STATE(998), + [sym__list_item_lower_alpha_period] = STATE(822), + [sym__list_lower_alpha_paren] = STATE(998), + [sym__list_item_lower_alpha_paren] = STATE(684), + [sym__list_lower_alpha_parens] = STATE(998), + [sym__list_item_lower_alpha_parens] = STATE(688), + [sym__list_upper_alpha_period] = STATE(998), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(998), + [sym__list_item_upper_alpha_paren] = STATE(705), + [sym__list_upper_alpha_parens] = STATE(998), + [sym__list_item_upper_alpha_parens] = STATE(711), + [sym__list_lower_roman_period] = STATE(998), + [sym__list_item_lower_roman_period] = STATE(712), + [sym__list_lower_roman_paren] = STATE(998), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(998), + [sym__list_item_lower_roman_parens] = STATE(728), + [sym__list_upper_roman_period] = STATE(998), + [sym__list_item_upper_roman_period] = STATE(734), + [sym__list_upper_roman_paren] = STATE(998), + [sym__list_item_upper_roman_paren] = STATE(830), + [sym__list_upper_roman_parens] = STATE(998), + [sym__list_item_upper_roman_parens] = STATE(725), + [sym_list_item_content] = STATE(842), + [sym_table] = STATE(1059), + [sym__table_row] = STATE(241), + [sym_table_header] = STATE(241), + [sym_table_separator] = STATE(241), + [sym_table_row] = STATE(241), + [sym_footnote] = STATE(1059), + [sym_footnote_marker_begin] = STATE(1137), + [sym_div] = STATE(1059), + [sym__div_marker_begin] = STATE(1019), + [sym_code_block] = STATE(1059), + [sym_raw_block] = STATE(1059), + [sym_thematic_break] = STATE(1059), + [sym_block_quote] = STATE(1059), + [sym__block_quote_prefix] = STATE(223), + [sym_link_reference_definition] = STATE(1059), + [sym_block_attribute] = STATE(1059), + [sym__paragraph] = STATE(1059), + [sym__paragraph_content] = STATE(707), + [sym__paragraph_inline_content] = STATE(778), + [sym__inline] = STATE(655), + [sym__symbol_fallback] = STATE(273), + [aux_sym__list_dash_repeat1] = STATE(326), + [aux_sym__list_plus_repeat1] = STATE(329), + [aux_sym__list_star_repeat1] = STATE(330), + [aux_sym__list_task_repeat1] = STATE(298), + [aux_sym__list_definition_repeat1] = STATE(508), + [aux_sym__list_decimal_period_repeat1] = STATE(509), + [aux_sym__list_decimal_paren_repeat1] = STATE(510), + [aux_sym__list_decimal_parens_repeat1] = STATE(511), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(512), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(513), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(514), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(515), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(516), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(517), + [aux_sym__list_lower_roman_period_repeat1] = STATE(526), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(531), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(534), + [aux_sym__list_upper_roman_period_repeat1] = STATE(544), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(441), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(442), + [aux_sym_table_repeat1] = STATE(241), + [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__inline_repeat1] = STATE(273), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(366), [anon_sym_DOT] = ACTIONS(11), [aux_sym_identifier_token1] = ACTIONS(11), [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [anon_sym_POUND] = ACTIONS(11), [anon_sym_PERCENT] = ACTIONS(11), - [sym__newline] = ACTIONS(426), + [sym__newline] = ACTIONS(424), [sym__heading_begin] = ACTIONS(370), [sym__div_begin] = ACTIONS(19), [sym__code_block_begin] = ACTIONS(372), @@ -10540,106 +10409,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__table_row_begin] = ACTIONS(384), }, [45] = { - [sym__block_with_heading] = STATE(1025), - [sym__block_element] = STATE(1025), - [sym_heading] = STATE(1025), - [sym_list] = STATE(1025), - [sym__list_dash] = STATE(974), - [sym__list_item_dash] = STATE(687), - [sym__list_plus] = STATE(974), - [sym__list_item_plus] = STATE(691), - [sym__list_star] = STATE(974), - [sym__list_item_star] = STATE(673), - [sym__list_task] = STATE(974), - [sym__list_item_task] = STATE(680), - [sym_list_marker_task] = STATE(48), - [sym__list_definition] = STATE(974), - [sym__list_item_definition] = STATE(804), - [sym__list_decimal_period] = STATE(974), - [sym__list_item_decimal_period] = STATE(837), - [sym__list_decimal_paren] = STATE(974), - [sym__list_item_decimal_paren] = STATE(703), - [sym__list_decimal_parens] = STATE(974), - [sym__list_item_decimal_parens] = STATE(715), - [sym__list_lower_alpha_period] = STATE(974), - [sym__list_item_lower_alpha_period] = STATE(739), - [sym__list_lower_alpha_paren] = STATE(974), - [sym__list_item_lower_alpha_paren] = STATE(754), - [sym__list_lower_alpha_parens] = STATE(974), - [sym__list_item_lower_alpha_parens] = STATE(755), - [sym__list_upper_alpha_period] = STATE(974), - [sym__list_item_upper_alpha_period] = STATE(758), - [sym__list_upper_alpha_paren] = STATE(974), - [sym__list_item_upper_alpha_paren] = STATE(759), - [sym__list_upper_alpha_parens] = STATE(974), - [sym__list_item_upper_alpha_parens] = STATE(766), - [sym__list_lower_roman_period] = STATE(974), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(974), - [sym__list_item_lower_roman_paren] = STATE(770), - [sym__list_lower_roman_parens] = STATE(974), - [sym__list_item_lower_roman_parens] = STATE(773), - [sym__list_upper_roman_period] = STATE(974), - [sym__list_item_upper_roman_period] = STATE(775), - [sym__list_upper_roman_paren] = STATE(974), - [sym__list_item_upper_roman_paren] = STATE(791), - [sym__list_upper_roman_parens] = STATE(974), - [sym__list_item_upper_roman_parens] = STATE(793), - [sym_list_item_content] = STATE(682), - [sym_table] = STATE(1025), - [sym__table_row] = STATE(248), - [sym_table_header] = STATE(248), - [sym_table_separator] = STATE(248), - [sym_table_row] = STATE(248), - [sym_footnote] = STATE(1025), - [sym_footnote_marker_begin] = STATE(1141), - [sym_div] = STATE(1025), - [sym__div_marker_begin] = STATE(1023), - [sym_code_block] = STATE(1025), - [sym_raw_block] = STATE(1025), - [sym_thematic_break] = STATE(1025), - [sym_block_quote] = STATE(1025), - [sym__block_quote_prefix] = STATE(222), - [sym_link_reference_definition] = STATE(1025), - [sym_block_attribute] = STATE(1025), - [sym__paragraph] = STATE(1025), - [sym__paragraph_content] = STATE(738), - [sym__paragraph_inline_content] = STATE(799), - [sym__inline] = STATE(629), - [sym__symbol_fallback] = STATE(285), - [aux_sym__list_dash_repeat1] = STATE(354), - [aux_sym__list_plus_repeat1] = STATE(355), - [aux_sym__list_star_repeat1] = STATE(356), - [aux_sym__list_task_repeat1] = STATE(335), - [aux_sym__list_definition_repeat1] = STATE(479), - [aux_sym__list_decimal_period_repeat1] = STATE(480), - [aux_sym__list_decimal_paren_repeat1] = STATE(481), - [aux_sym__list_decimal_parens_repeat1] = STATE(482), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(483), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(484), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(485), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(486), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(487), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(488), - [aux_sym__list_lower_roman_period_repeat1] = STATE(489), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(490), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(491), - [aux_sym__list_upper_roman_period_repeat1] = STATE(492), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(493), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(494), - [aux_sym_table_repeat1] = STATE(248), - [aux_sym__block_quote_prefix_repeat1] = STATE(235), - [aux_sym__inline_repeat1] = STATE(285), + [sym__block_with_heading] = STATE(1104), + [sym__block_element] = STATE(1104), + [sym_heading] = STATE(1104), + [sym_list] = STATE(1104), + [sym__list_dash] = STATE(998), + [sym__list_item_dash] = STATE(553), + [sym__list_plus] = STATE(998), + [sym__list_item_plus] = STATE(554), + [sym__list_star] = STATE(998), + [sym__list_item_star] = STATE(556), + [sym__list_task] = STATE(998), + [sym__list_item_task] = STATE(558), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(998), + [sym__list_item_definition] = STATE(769), + [sym__list_decimal_period] = STATE(998), + [sym__list_item_decimal_period] = STATE(776), + [sym__list_decimal_paren] = STATE(998), + [sym__list_item_decimal_paren] = STATE(790), + [sym__list_decimal_parens] = STATE(998), + [sym__list_item_decimal_parens] = STATE(793), + [sym__list_lower_alpha_period] = STATE(998), + [sym__list_item_lower_alpha_period] = STATE(822), + [sym__list_lower_alpha_paren] = STATE(998), + [sym__list_item_lower_alpha_paren] = STATE(684), + [sym__list_lower_alpha_parens] = STATE(998), + [sym__list_item_lower_alpha_parens] = STATE(688), + [sym__list_upper_alpha_period] = STATE(998), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(998), + [sym__list_item_upper_alpha_paren] = STATE(705), + [sym__list_upper_alpha_parens] = STATE(998), + [sym__list_item_upper_alpha_parens] = STATE(711), + [sym__list_lower_roman_period] = STATE(998), + [sym__list_item_lower_roman_period] = STATE(712), + [sym__list_lower_roman_paren] = STATE(998), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(998), + [sym__list_item_lower_roman_parens] = STATE(728), + [sym__list_upper_roman_period] = STATE(998), + [sym__list_item_upper_roman_period] = STATE(734), + [sym__list_upper_roman_paren] = STATE(998), + [sym__list_item_upper_roman_paren] = STATE(830), + [sym__list_upper_roman_parens] = STATE(998), + [sym__list_item_upper_roman_parens] = STATE(725), + [sym_list_item_content] = STATE(667), + [sym_table] = STATE(1104), + [sym__table_row] = STATE(241), + [sym_table_header] = STATE(241), + [sym_table_separator] = STATE(241), + [sym_table_row] = STATE(241), + [sym_footnote] = STATE(1104), + [sym_footnote_marker_begin] = STATE(1137), + [sym_div] = STATE(1104), + [sym__div_marker_begin] = STATE(1019), + [sym_code_block] = STATE(1104), + [sym_raw_block] = STATE(1104), + [sym_thematic_break] = STATE(1104), + [sym_block_quote] = STATE(1104), + [sym__block_quote_prefix] = STATE(223), + [sym_link_reference_definition] = STATE(1104), + [sym_block_attribute] = STATE(1104), + [sym__paragraph] = STATE(1104), + [sym__paragraph_content] = STATE(707), + [sym__paragraph_inline_content] = STATE(778), + [sym__inline] = STATE(655), + [sym__symbol_fallback] = STATE(273), + [aux_sym__list_dash_repeat1] = STATE(326), + [aux_sym__list_plus_repeat1] = STATE(329), + [aux_sym__list_star_repeat1] = STATE(330), + [aux_sym__list_task_repeat1] = STATE(298), + [aux_sym__list_definition_repeat1] = STATE(508), + [aux_sym__list_decimal_period_repeat1] = STATE(509), + [aux_sym__list_decimal_paren_repeat1] = STATE(510), + [aux_sym__list_decimal_parens_repeat1] = STATE(511), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(512), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(513), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(514), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(515), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(516), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(517), + [aux_sym__list_lower_roman_period_repeat1] = STATE(526), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(531), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(534), + [aux_sym__list_upper_roman_period_repeat1] = STATE(544), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(441), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(442), + [aux_sym_table_repeat1] = STATE(241), + [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__inline_repeat1] = STATE(273), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(366), [anon_sym_DOT] = ACTIONS(11), [aux_sym_identifier_token1] = ACTIONS(11), [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [anon_sym_POUND] = ACTIONS(11), [anon_sym_PERCENT] = ACTIONS(11), - [sym__newline] = ACTIONS(394), + [sym__newline] = ACTIONS(398), [sym__heading_begin] = ACTIONS(370), [sym__div_begin] = ACTIONS(19), [sym__code_block_begin] = ACTIONS(372), @@ -10672,106 +10539,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__table_row_begin] = ACTIONS(384), }, [46] = { - [sym__block_with_heading] = STATE(1044), - [sym__block_element] = STATE(1044), - [sym_heading] = STATE(1044), - [sym_list] = STATE(1044), - [sym__list_dash] = STATE(974), - [sym__list_item_dash] = STATE(687), - [sym__list_plus] = STATE(974), - [sym__list_item_plus] = STATE(691), - [sym__list_star] = STATE(974), - [sym__list_item_star] = STATE(673), - [sym__list_task] = STATE(974), - [sym__list_item_task] = STATE(680), - [sym_list_marker_task] = STATE(48), - [sym__list_definition] = STATE(974), - [sym__list_item_definition] = STATE(804), - [sym__list_decimal_period] = STATE(974), - [sym__list_item_decimal_period] = STATE(837), - [sym__list_decimal_paren] = STATE(974), - [sym__list_item_decimal_paren] = STATE(703), - [sym__list_decimal_parens] = STATE(974), - [sym__list_item_decimal_parens] = STATE(715), - [sym__list_lower_alpha_period] = STATE(974), - [sym__list_item_lower_alpha_period] = STATE(739), - [sym__list_lower_alpha_paren] = STATE(974), - [sym__list_item_lower_alpha_paren] = STATE(754), - [sym__list_lower_alpha_parens] = STATE(974), - [sym__list_item_lower_alpha_parens] = STATE(755), - [sym__list_upper_alpha_period] = STATE(974), - [sym__list_item_upper_alpha_period] = STATE(758), - [sym__list_upper_alpha_paren] = STATE(974), - [sym__list_item_upper_alpha_paren] = STATE(759), - [sym__list_upper_alpha_parens] = STATE(974), - [sym__list_item_upper_alpha_parens] = STATE(766), - [sym__list_lower_roman_period] = STATE(974), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(974), - [sym__list_item_lower_roman_paren] = STATE(770), - [sym__list_lower_roman_parens] = STATE(974), - [sym__list_item_lower_roman_parens] = STATE(773), - [sym__list_upper_roman_period] = STATE(974), - [sym__list_item_upper_roman_period] = STATE(775), - [sym__list_upper_roman_paren] = STATE(974), - [sym__list_item_upper_roman_paren] = STATE(791), - [sym__list_upper_roman_parens] = STATE(974), - [sym__list_item_upper_roman_parens] = STATE(793), - [sym_list_item_content] = STATE(683), - [sym_table] = STATE(1044), - [sym__table_row] = STATE(248), - [sym_table_header] = STATE(248), - [sym_table_separator] = STATE(248), - [sym_table_row] = STATE(248), - [sym_footnote] = STATE(1044), - [sym_footnote_marker_begin] = STATE(1141), - [sym_div] = STATE(1044), - [sym__div_marker_begin] = STATE(1023), - [sym_code_block] = STATE(1044), - [sym_raw_block] = STATE(1044), - [sym_thematic_break] = STATE(1044), - [sym_block_quote] = STATE(1044), - [sym__block_quote_prefix] = STATE(222), - [sym_link_reference_definition] = STATE(1044), - [sym_block_attribute] = STATE(1044), - [sym__paragraph] = STATE(1044), - [sym__paragraph_content] = STATE(738), - [sym__paragraph_inline_content] = STATE(799), - [sym__inline] = STATE(629), - [sym__symbol_fallback] = STATE(285), - [aux_sym__list_dash_repeat1] = STATE(354), - [aux_sym__list_plus_repeat1] = STATE(355), - [aux_sym__list_star_repeat1] = STATE(356), - [aux_sym__list_task_repeat1] = STATE(335), - [aux_sym__list_definition_repeat1] = STATE(479), - [aux_sym__list_decimal_period_repeat1] = STATE(480), - [aux_sym__list_decimal_paren_repeat1] = STATE(481), - [aux_sym__list_decimal_parens_repeat1] = STATE(482), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(483), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(484), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(485), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(486), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(487), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(488), - [aux_sym__list_lower_roman_period_repeat1] = STATE(489), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(490), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(491), - [aux_sym__list_upper_roman_period_repeat1] = STATE(492), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(493), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(494), - [aux_sym_table_repeat1] = STATE(248), - [aux_sym__block_quote_prefix_repeat1] = STATE(235), - [aux_sym__inline_repeat1] = STATE(285), + [sym__block_with_heading] = STATE(1072), + [sym__block_element] = STATE(1072), + [sym_heading] = STATE(1072), + [sym_list] = STATE(1072), + [sym__list_dash] = STATE(998), + [sym__list_item_dash] = STATE(553), + [sym__list_plus] = STATE(998), + [sym__list_item_plus] = STATE(554), + [sym__list_star] = STATE(998), + [sym__list_item_star] = STATE(556), + [sym__list_task] = STATE(998), + [sym__list_item_task] = STATE(558), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(998), + [sym__list_item_definition] = STATE(769), + [sym__list_decimal_period] = STATE(998), + [sym__list_item_decimal_period] = STATE(776), + [sym__list_decimal_paren] = STATE(998), + [sym__list_item_decimal_paren] = STATE(790), + [sym__list_decimal_parens] = STATE(998), + [sym__list_item_decimal_parens] = STATE(793), + [sym__list_lower_alpha_period] = STATE(998), + [sym__list_item_lower_alpha_period] = STATE(822), + [sym__list_lower_alpha_paren] = STATE(998), + [sym__list_item_lower_alpha_paren] = STATE(684), + [sym__list_lower_alpha_parens] = STATE(998), + [sym__list_item_lower_alpha_parens] = STATE(688), + [sym__list_upper_alpha_period] = STATE(998), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(998), + [sym__list_item_upper_alpha_paren] = STATE(705), + [sym__list_upper_alpha_parens] = STATE(998), + [sym__list_item_upper_alpha_parens] = STATE(711), + [sym__list_lower_roman_period] = STATE(998), + [sym__list_item_lower_roman_period] = STATE(712), + [sym__list_lower_roman_paren] = STATE(998), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(998), + [sym__list_item_lower_roman_parens] = STATE(728), + [sym__list_upper_roman_period] = STATE(998), + [sym__list_item_upper_roman_period] = STATE(734), + [sym__list_upper_roman_paren] = STATE(998), + [sym__list_item_upper_roman_paren] = STATE(830), + [sym__list_upper_roman_parens] = STATE(998), + [sym__list_item_upper_roman_parens] = STATE(725), + [sym_table] = STATE(1072), + [sym__table_row] = STATE(241), + [sym_table_header] = STATE(241), + [sym_table_separator] = STATE(241), + [sym_table_row] = STATE(241), + [sym_footnote] = STATE(1072), + [sym_footnote_marker_begin] = STATE(1137), + [sym_footnote_content] = STATE(184), + [sym_div] = STATE(1072), + [sym__div_marker_begin] = STATE(1019), + [sym_code_block] = STATE(1072), + [sym_raw_block] = STATE(1072), + [sym_thematic_break] = STATE(1072), + [sym_block_quote] = STATE(1072), + [sym__block_quote_prefix] = STATE(223), + [sym_link_reference_definition] = STATE(1072), + [sym_block_attribute] = STATE(1072), + [sym__paragraph] = STATE(1072), + [sym__paragraph_content] = STATE(707), + [sym__paragraph_inline_content] = STATE(778), + [sym__inline] = STATE(655), + [sym__symbol_fallback] = STATE(273), + [aux_sym__list_dash_repeat1] = STATE(326), + [aux_sym__list_plus_repeat1] = STATE(329), + [aux_sym__list_star_repeat1] = STATE(330), + [aux_sym__list_task_repeat1] = STATE(298), + [aux_sym__list_definition_repeat1] = STATE(508), + [aux_sym__list_decimal_period_repeat1] = STATE(509), + [aux_sym__list_decimal_paren_repeat1] = STATE(510), + [aux_sym__list_decimal_parens_repeat1] = STATE(511), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(512), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(513), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(514), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(515), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(516), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(517), + [aux_sym__list_lower_roman_period_repeat1] = STATE(526), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(531), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(534), + [aux_sym__list_upper_roman_period_repeat1] = STATE(544), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(441), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(442), + [aux_sym_table_repeat1] = STATE(241), + [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__inline_repeat1] = STATE(273), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(366), [anon_sym_DOT] = ACTIONS(11), [aux_sym_identifier_token1] = ACTIONS(11), [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [anon_sym_POUND] = ACTIONS(11), [anon_sym_PERCENT] = ACTIONS(11), - [sym__newline] = ACTIONS(396), + [sym__newline] = ACTIONS(426), [sym__heading_begin] = ACTIONS(370), [sym__div_begin] = ACTIONS(19), [sym__code_block_begin] = ACTIONS(372), @@ -10804,106 +10669,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__table_row_begin] = ACTIONS(384), }, [47] = { - [sym__block_with_heading] = STATE(1076), - [sym__block_element] = STATE(1076), - [sym_heading] = STATE(1076), - [sym_list] = STATE(1076), - [sym__list_dash] = STATE(974), - [sym__list_item_dash] = STATE(687), - [sym__list_plus] = STATE(974), - [sym__list_item_plus] = STATE(691), - [sym__list_star] = STATE(974), - [sym__list_item_star] = STATE(673), - [sym__list_task] = STATE(974), - [sym__list_item_task] = STATE(680), - [sym_list_marker_task] = STATE(48), - [sym__list_definition] = STATE(974), - [sym__list_item_definition] = STATE(804), - [sym__list_decimal_period] = STATE(974), - [sym__list_item_decimal_period] = STATE(837), - [sym__list_decimal_paren] = STATE(974), - [sym__list_item_decimal_paren] = STATE(703), - [sym__list_decimal_parens] = STATE(974), - [sym__list_item_decimal_parens] = STATE(715), - [sym__list_lower_alpha_period] = STATE(974), - [sym__list_item_lower_alpha_period] = STATE(739), - [sym__list_lower_alpha_paren] = STATE(974), - [sym__list_item_lower_alpha_paren] = STATE(754), - [sym__list_lower_alpha_parens] = STATE(974), - [sym__list_item_lower_alpha_parens] = STATE(755), - [sym__list_upper_alpha_period] = STATE(974), - [sym__list_item_upper_alpha_period] = STATE(758), - [sym__list_upper_alpha_paren] = STATE(974), - [sym__list_item_upper_alpha_paren] = STATE(759), - [sym__list_upper_alpha_parens] = STATE(974), - [sym__list_item_upper_alpha_parens] = STATE(766), - [sym__list_lower_roman_period] = STATE(974), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(974), - [sym__list_item_lower_roman_paren] = STATE(770), - [sym__list_lower_roman_parens] = STATE(974), - [sym__list_item_lower_roman_parens] = STATE(773), - [sym__list_upper_roman_period] = STATE(974), - [sym__list_item_upper_roman_period] = STATE(775), - [sym__list_upper_roman_paren] = STATE(974), - [sym__list_item_upper_roman_paren] = STATE(791), - [sym__list_upper_roman_parens] = STATE(974), - [sym__list_item_upper_roman_parens] = STATE(793), - [sym_table] = STATE(1076), - [sym__table_row] = STATE(248), - [sym_table_header] = STATE(248), - [sym_table_separator] = STATE(248), - [sym_table_row] = STATE(248), - [sym_footnote] = STATE(1076), - [sym_footnote_marker_begin] = STATE(1141), - [sym_footnote_content] = STATE(190), - [sym_div] = STATE(1076), - [sym__div_marker_begin] = STATE(1023), - [sym_code_block] = STATE(1076), - [sym_raw_block] = STATE(1076), - [sym_thematic_break] = STATE(1076), - [sym_block_quote] = STATE(1076), - [sym__block_quote_prefix] = STATE(222), - [sym_link_reference_definition] = STATE(1076), - [sym_block_attribute] = STATE(1076), - [sym__paragraph] = STATE(1076), - [sym__paragraph_content] = STATE(738), - [sym__paragraph_inline_content] = STATE(799), - [sym__inline] = STATE(629), - [sym__symbol_fallback] = STATE(285), - [aux_sym__list_dash_repeat1] = STATE(354), - [aux_sym__list_plus_repeat1] = STATE(355), - [aux_sym__list_star_repeat1] = STATE(356), - [aux_sym__list_task_repeat1] = STATE(335), - [aux_sym__list_definition_repeat1] = STATE(479), - [aux_sym__list_decimal_period_repeat1] = STATE(480), - [aux_sym__list_decimal_paren_repeat1] = STATE(481), - [aux_sym__list_decimal_parens_repeat1] = STATE(482), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(483), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(484), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(485), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(486), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(487), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(488), - [aux_sym__list_lower_roman_period_repeat1] = STATE(489), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(490), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(491), - [aux_sym__list_upper_roman_period_repeat1] = STATE(492), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(493), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(494), - [aux_sym_table_repeat1] = STATE(248), - [aux_sym__block_quote_prefix_repeat1] = STATE(235), - [aux_sym__inline_repeat1] = STATE(285), + [sym__block_with_heading] = STATE(913), + [sym__block_element] = STATE(913), + [sym_heading] = STATE(913), + [sym_list] = STATE(913), + [sym__list_dash] = STATE(998), + [sym__list_item_dash] = STATE(553), + [sym__list_plus] = STATE(998), + [sym__list_item_plus] = STATE(554), + [sym__list_star] = STATE(998), + [sym__list_item_star] = STATE(556), + [sym__list_task] = STATE(998), + [sym__list_item_task] = STATE(558), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(998), + [sym__list_item_definition] = STATE(769), + [sym__list_decimal_period] = STATE(998), + [sym__list_item_decimal_period] = STATE(776), + [sym__list_decimal_paren] = STATE(998), + [sym__list_item_decimal_paren] = STATE(790), + [sym__list_decimal_parens] = STATE(998), + [sym__list_item_decimal_parens] = STATE(793), + [sym__list_lower_alpha_period] = STATE(998), + [sym__list_item_lower_alpha_period] = STATE(822), + [sym__list_lower_alpha_paren] = STATE(998), + [sym__list_item_lower_alpha_paren] = STATE(684), + [sym__list_lower_alpha_parens] = STATE(998), + [sym__list_item_lower_alpha_parens] = STATE(688), + [sym__list_upper_alpha_period] = STATE(998), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(998), + [sym__list_item_upper_alpha_paren] = STATE(705), + [sym__list_upper_alpha_parens] = STATE(998), + [sym__list_item_upper_alpha_parens] = STATE(711), + [sym__list_lower_roman_period] = STATE(998), + [sym__list_item_lower_roman_period] = STATE(712), + [sym__list_lower_roman_paren] = STATE(998), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(998), + [sym__list_item_lower_roman_parens] = STATE(728), + [sym__list_upper_roman_period] = STATE(998), + [sym__list_item_upper_roman_period] = STATE(734), + [sym__list_upper_roman_paren] = STATE(998), + [sym__list_item_upper_roman_paren] = STATE(830), + [sym__list_upper_roman_parens] = STATE(998), + [sym__list_item_upper_roman_parens] = STATE(725), + [sym_list_item_content] = STATE(598), + [sym_table] = STATE(913), + [sym__table_row] = STATE(241), + [sym_table_header] = STATE(241), + [sym_table_separator] = STATE(241), + [sym_table_row] = STATE(241), + [sym_footnote] = STATE(913), + [sym_footnote_marker_begin] = STATE(1137), + [sym_div] = STATE(913), + [sym__div_marker_begin] = STATE(1019), + [sym_code_block] = STATE(913), + [sym_raw_block] = STATE(913), + [sym_thematic_break] = STATE(913), + [sym_block_quote] = STATE(913), + [sym__block_quote_prefix] = STATE(223), + [sym_link_reference_definition] = STATE(913), + [sym_block_attribute] = STATE(913), + [sym__paragraph] = STATE(913), + [sym__paragraph_content] = STATE(707), + [sym__paragraph_inline_content] = STATE(778), + [sym__inline] = STATE(655), + [sym__symbol_fallback] = STATE(273), + [aux_sym__list_dash_repeat1] = STATE(326), + [aux_sym__list_plus_repeat1] = STATE(329), + [aux_sym__list_star_repeat1] = STATE(330), + [aux_sym__list_task_repeat1] = STATE(298), + [aux_sym__list_definition_repeat1] = STATE(508), + [aux_sym__list_decimal_period_repeat1] = STATE(509), + [aux_sym__list_decimal_paren_repeat1] = STATE(510), + [aux_sym__list_decimal_parens_repeat1] = STATE(511), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(512), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(513), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(514), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(515), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(516), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(517), + [aux_sym__list_lower_roman_period_repeat1] = STATE(526), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(531), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(534), + [aux_sym__list_upper_roman_period_repeat1] = STATE(544), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(441), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(442), + [aux_sym_table_repeat1] = STATE(241), + [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__inline_repeat1] = STATE(273), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(366), [anon_sym_DOT] = ACTIONS(11), [aux_sym_identifier_token1] = ACTIONS(11), [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [anon_sym_POUND] = ACTIONS(11), [anon_sym_PERCENT] = ACTIONS(11), - [sym__newline] = ACTIONS(428), + [sym__newline] = ACTIONS(394), [sym__heading_begin] = ACTIONS(370), [sym__div_begin] = ACTIONS(19), [sym__code_block_begin] = ACTIONS(372), @@ -10936,106 +10799,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__table_row_begin] = ACTIONS(384), }, [48] = { - [sym__block_with_heading] = STATE(1108), - [sym__block_element] = STATE(1108), - [sym_heading] = STATE(1108), - [sym_list] = STATE(1108), - [sym__list_dash] = STATE(974), - [sym__list_item_dash] = STATE(687), - [sym__list_plus] = STATE(974), - [sym__list_item_plus] = STATE(691), - [sym__list_star] = STATE(974), - [sym__list_item_star] = STATE(673), - [sym__list_task] = STATE(974), - [sym__list_item_task] = STATE(680), - [sym_list_marker_task] = STATE(48), - [sym__list_definition] = STATE(974), - [sym__list_item_definition] = STATE(804), - [sym__list_decimal_period] = STATE(974), - [sym__list_item_decimal_period] = STATE(837), - [sym__list_decimal_paren] = STATE(974), - [sym__list_item_decimal_paren] = STATE(703), - [sym__list_decimal_parens] = STATE(974), - [sym__list_item_decimal_parens] = STATE(715), - [sym__list_lower_alpha_period] = STATE(974), - [sym__list_item_lower_alpha_period] = STATE(739), - [sym__list_lower_alpha_paren] = STATE(974), - [sym__list_item_lower_alpha_paren] = STATE(754), - [sym__list_lower_alpha_parens] = STATE(974), - [sym__list_item_lower_alpha_parens] = STATE(755), - [sym__list_upper_alpha_period] = STATE(974), - [sym__list_item_upper_alpha_period] = STATE(758), - [sym__list_upper_alpha_paren] = STATE(974), - [sym__list_item_upper_alpha_paren] = STATE(759), - [sym__list_upper_alpha_parens] = STATE(974), - [sym__list_item_upper_alpha_parens] = STATE(766), - [sym__list_lower_roman_period] = STATE(974), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(974), - [sym__list_item_lower_roman_paren] = STATE(770), - [sym__list_lower_roman_parens] = STATE(974), - [sym__list_item_lower_roman_parens] = STATE(773), - [sym__list_upper_roman_period] = STATE(974), - [sym__list_item_upper_roman_period] = STATE(775), - [sym__list_upper_roman_paren] = STATE(974), - [sym__list_item_upper_roman_paren] = STATE(791), - [sym__list_upper_roman_parens] = STATE(974), - [sym__list_item_upper_roman_parens] = STATE(793), - [sym_list_item_content] = STATE(589), - [sym_table] = STATE(1108), - [sym__table_row] = STATE(248), - [sym_table_header] = STATE(248), - [sym_table_separator] = STATE(248), - [sym_table_row] = STATE(248), - [sym_footnote] = STATE(1108), - [sym_footnote_marker_begin] = STATE(1141), - [sym_div] = STATE(1108), - [sym__div_marker_begin] = STATE(1023), - [sym_code_block] = STATE(1108), - [sym_raw_block] = STATE(1108), - [sym_thematic_break] = STATE(1108), - [sym_block_quote] = STATE(1108), - [sym__block_quote_prefix] = STATE(222), - [sym_link_reference_definition] = STATE(1108), - [sym_block_attribute] = STATE(1108), - [sym__paragraph] = STATE(1108), - [sym__paragraph_content] = STATE(738), - [sym__paragraph_inline_content] = STATE(799), - [sym__inline] = STATE(629), - [sym__symbol_fallback] = STATE(285), - [aux_sym__list_dash_repeat1] = STATE(354), - [aux_sym__list_plus_repeat1] = STATE(355), - [aux_sym__list_star_repeat1] = STATE(356), - [aux_sym__list_task_repeat1] = STATE(335), - [aux_sym__list_definition_repeat1] = STATE(479), - [aux_sym__list_decimal_period_repeat1] = STATE(480), - [aux_sym__list_decimal_paren_repeat1] = STATE(481), - [aux_sym__list_decimal_parens_repeat1] = STATE(482), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(483), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(484), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(485), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(486), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(487), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(488), - [aux_sym__list_lower_roman_period_repeat1] = STATE(489), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(490), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(491), - [aux_sym__list_upper_roman_period_repeat1] = STATE(492), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(493), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(494), - [aux_sym_table_repeat1] = STATE(248), - [aux_sym__block_quote_prefix_repeat1] = STATE(235), - [aux_sym__inline_repeat1] = STATE(285), + [sym__block_with_heading] = STATE(1091), + [sym__block_element] = STATE(1091), + [sym_heading] = STATE(1091), + [sym_list] = STATE(1091), + [sym__list_dash] = STATE(998), + [sym__list_item_dash] = STATE(553), + [sym__list_plus] = STATE(998), + [sym__list_item_plus] = STATE(554), + [sym__list_star] = STATE(998), + [sym__list_item_star] = STATE(556), + [sym__list_task] = STATE(998), + [sym__list_item_task] = STATE(558), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(998), + [sym__list_item_definition] = STATE(769), + [sym__list_decimal_period] = STATE(998), + [sym__list_item_decimal_period] = STATE(776), + [sym__list_decimal_paren] = STATE(998), + [sym__list_item_decimal_paren] = STATE(790), + [sym__list_decimal_parens] = STATE(998), + [sym__list_item_decimal_parens] = STATE(793), + [sym__list_lower_alpha_period] = STATE(998), + [sym__list_item_lower_alpha_period] = STATE(822), + [sym__list_lower_alpha_paren] = STATE(998), + [sym__list_item_lower_alpha_paren] = STATE(684), + [sym__list_lower_alpha_parens] = STATE(998), + [sym__list_item_lower_alpha_parens] = STATE(688), + [sym__list_upper_alpha_period] = STATE(998), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(998), + [sym__list_item_upper_alpha_paren] = STATE(705), + [sym__list_upper_alpha_parens] = STATE(998), + [sym__list_item_upper_alpha_parens] = STATE(711), + [sym__list_lower_roman_period] = STATE(998), + [sym__list_item_lower_roman_period] = STATE(712), + [sym__list_lower_roman_paren] = STATE(998), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(998), + [sym__list_item_lower_roman_parens] = STATE(728), + [sym__list_upper_roman_period] = STATE(998), + [sym__list_item_upper_roman_period] = STATE(734), + [sym__list_upper_roman_paren] = STATE(998), + [sym__list_item_upper_roman_paren] = STATE(830), + [sym__list_upper_roman_parens] = STATE(998), + [sym__list_item_upper_roman_parens] = STATE(725), + [sym_list_item_content] = STATE(706), + [sym_table] = STATE(1091), + [sym__table_row] = STATE(241), + [sym_table_header] = STATE(241), + [sym_table_separator] = STATE(241), + [sym_table_row] = STATE(241), + [sym_footnote] = STATE(1091), + [sym_footnote_marker_begin] = STATE(1137), + [sym_div] = STATE(1091), + [sym__div_marker_begin] = STATE(1019), + [sym_code_block] = STATE(1091), + [sym_raw_block] = STATE(1091), + [sym_thematic_break] = STATE(1091), + [sym_block_quote] = STATE(1091), + [sym__block_quote_prefix] = STATE(223), + [sym_link_reference_definition] = STATE(1091), + [sym_block_attribute] = STATE(1091), + [sym__paragraph] = STATE(1091), + [sym__paragraph_content] = STATE(707), + [sym__paragraph_inline_content] = STATE(778), + [sym__inline] = STATE(655), + [sym__symbol_fallback] = STATE(273), + [aux_sym__list_dash_repeat1] = STATE(326), + [aux_sym__list_plus_repeat1] = STATE(329), + [aux_sym__list_star_repeat1] = STATE(330), + [aux_sym__list_task_repeat1] = STATE(298), + [aux_sym__list_definition_repeat1] = STATE(508), + [aux_sym__list_decimal_period_repeat1] = STATE(509), + [aux_sym__list_decimal_paren_repeat1] = STATE(510), + [aux_sym__list_decimal_parens_repeat1] = STATE(511), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(512), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(513), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(514), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(515), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(516), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(517), + [aux_sym__list_lower_roman_period_repeat1] = STATE(526), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(531), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(534), + [aux_sym__list_upper_roman_period_repeat1] = STATE(544), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(441), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(442), + [aux_sym_table_repeat1] = STATE(241), + [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__inline_repeat1] = STATE(273), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(366), [anon_sym_DOT] = ACTIONS(11), [aux_sym_identifier_token1] = ACTIONS(11), [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [anon_sym_POUND] = ACTIONS(11), [anon_sym_PERCENT] = ACTIONS(11), - [sym__newline] = ACTIONS(398), + [sym__newline] = ACTIONS(428), [sym__heading_begin] = ACTIONS(370), [sym__div_begin] = ACTIONS(19), [sym__code_block_begin] = ACTIONS(372), @@ -11068,104 +10929,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__table_row_begin] = ACTIONS(384), }, [49] = { - [sym__block_with_heading] = STATE(1095), - [sym__block_element] = STATE(1095), - [sym_heading] = STATE(1095), - [sym_list] = STATE(1095), - [sym__list_dash] = STATE(974), - [sym__list_item_dash] = STATE(687), - [sym__list_plus] = STATE(974), - [sym__list_item_plus] = STATE(691), - [sym__list_star] = STATE(974), - [sym__list_item_star] = STATE(673), - [sym__list_task] = STATE(974), - [sym__list_item_task] = STATE(680), - [sym_list_marker_task] = STATE(48), - [sym__list_definition] = STATE(974), - [sym__list_item_definition] = STATE(804), - [sym__list_decimal_period] = STATE(974), - [sym__list_item_decimal_period] = STATE(837), - [sym__list_decimal_paren] = STATE(974), - [sym__list_item_decimal_paren] = STATE(703), - [sym__list_decimal_parens] = STATE(974), - [sym__list_item_decimal_parens] = STATE(715), - [sym__list_lower_alpha_period] = STATE(974), - [sym__list_item_lower_alpha_period] = STATE(739), - [sym__list_lower_alpha_paren] = STATE(974), - [sym__list_item_lower_alpha_paren] = STATE(754), - [sym__list_lower_alpha_parens] = STATE(974), - [sym__list_item_lower_alpha_parens] = STATE(755), - [sym__list_upper_alpha_period] = STATE(974), - [sym__list_item_upper_alpha_period] = STATE(758), - [sym__list_upper_alpha_paren] = STATE(974), - [sym__list_item_upper_alpha_paren] = STATE(759), - [sym__list_upper_alpha_parens] = STATE(974), - [sym__list_item_upper_alpha_parens] = STATE(766), - [sym__list_lower_roman_period] = STATE(974), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(974), - [sym__list_item_lower_roman_paren] = STATE(770), - [sym__list_lower_roman_parens] = STATE(974), - [sym__list_item_lower_roman_parens] = STATE(773), - [sym__list_upper_roman_period] = STATE(974), - [sym__list_item_upper_roman_period] = STATE(775), - [sym__list_upper_roman_paren] = STATE(974), - [sym__list_item_upper_roman_paren] = STATE(791), - [sym__list_upper_roman_parens] = STATE(974), - [sym__list_item_upper_roman_parens] = STATE(793), - [sym_list_item_content] = STATE(745), - [sym_table] = STATE(1095), - [sym__table_row] = STATE(248), - [sym_table_header] = STATE(248), - [sym_table_separator] = STATE(248), - [sym_table_row] = STATE(248), - [sym_footnote] = STATE(1095), - [sym_footnote_marker_begin] = STATE(1141), - [sym_div] = STATE(1095), - [sym__div_marker_begin] = STATE(1023), - [sym_code_block] = STATE(1095), - [sym_raw_block] = STATE(1095), - [sym_thematic_break] = STATE(1095), - [sym_block_quote] = STATE(1095), - [sym__block_quote_prefix] = STATE(222), - [sym_link_reference_definition] = STATE(1095), - [sym_block_attribute] = STATE(1095), - [sym__paragraph] = STATE(1095), - [sym__paragraph_content] = STATE(738), - [sym__paragraph_inline_content] = STATE(799), - [sym__inline] = STATE(629), - [sym__symbol_fallback] = STATE(285), - [aux_sym__list_dash_repeat1] = STATE(354), - [aux_sym__list_plus_repeat1] = STATE(355), - [aux_sym__list_star_repeat1] = STATE(356), - [aux_sym__list_task_repeat1] = STATE(335), - [aux_sym__list_definition_repeat1] = STATE(479), - [aux_sym__list_decimal_period_repeat1] = STATE(480), - [aux_sym__list_decimal_paren_repeat1] = STATE(481), - [aux_sym__list_decimal_parens_repeat1] = STATE(482), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(483), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(484), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(485), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(486), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(487), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(488), - [aux_sym__list_lower_roman_period_repeat1] = STATE(489), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(490), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(491), - [aux_sym__list_upper_roman_period_repeat1] = STATE(492), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(493), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(494), - [aux_sym_table_repeat1] = STATE(248), - [aux_sym__block_quote_prefix_repeat1] = STATE(235), - [aux_sym__inline_repeat1] = STATE(285), + [sym__block_with_heading] = STATE(1093), + [sym__block_element] = STATE(1093), + [sym_heading] = STATE(1093), + [sym_list] = STATE(1093), + [sym__list_dash] = STATE(998), + [sym__list_item_dash] = STATE(553), + [sym__list_plus] = STATE(998), + [sym__list_item_plus] = STATE(554), + [sym__list_star] = STATE(998), + [sym__list_item_star] = STATE(556), + [sym__list_task] = STATE(998), + [sym__list_item_task] = STATE(558), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(998), + [sym__list_item_definition] = STATE(769), + [sym__list_decimal_period] = STATE(998), + [sym__list_item_decimal_period] = STATE(776), + [sym__list_decimal_paren] = STATE(998), + [sym__list_item_decimal_paren] = STATE(790), + [sym__list_decimal_parens] = STATE(998), + [sym__list_item_decimal_parens] = STATE(793), + [sym__list_lower_alpha_period] = STATE(998), + [sym__list_item_lower_alpha_period] = STATE(822), + [sym__list_lower_alpha_paren] = STATE(998), + [sym__list_item_lower_alpha_paren] = STATE(684), + [sym__list_lower_alpha_parens] = STATE(998), + [sym__list_item_lower_alpha_parens] = STATE(688), + [sym__list_upper_alpha_period] = STATE(998), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(998), + [sym__list_item_upper_alpha_paren] = STATE(705), + [sym__list_upper_alpha_parens] = STATE(998), + [sym__list_item_upper_alpha_parens] = STATE(711), + [sym__list_lower_roman_period] = STATE(998), + [sym__list_item_lower_roman_period] = STATE(712), + [sym__list_lower_roman_paren] = STATE(998), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(998), + [sym__list_item_lower_roman_parens] = STATE(728), + [sym__list_upper_roman_period] = STATE(998), + [sym__list_item_upper_roman_period] = STATE(734), + [sym__list_upper_roman_paren] = STATE(998), + [sym__list_item_upper_roman_paren] = STATE(830), + [sym__list_upper_roman_parens] = STATE(998), + [sym__list_item_upper_roman_parens] = STATE(725), + [sym_list_item_content] = STATE(709), + [sym_table] = STATE(1093), + [sym__table_row] = STATE(241), + [sym_table_header] = STATE(241), + [sym_table_separator] = STATE(241), + [sym_table_row] = STATE(241), + [sym_footnote] = STATE(1093), + [sym_footnote_marker_begin] = STATE(1137), + [sym_div] = STATE(1093), + [sym__div_marker_begin] = STATE(1019), + [sym_code_block] = STATE(1093), + [sym_raw_block] = STATE(1093), + [sym_thematic_break] = STATE(1093), + [sym_block_quote] = STATE(1093), + [sym__block_quote_prefix] = STATE(223), + [sym_link_reference_definition] = STATE(1093), + [sym_block_attribute] = STATE(1093), + [sym__paragraph] = STATE(1093), + [sym__paragraph_content] = STATE(707), + [sym__paragraph_inline_content] = STATE(778), + [sym__inline] = STATE(655), + [sym__symbol_fallback] = STATE(273), + [aux_sym__list_dash_repeat1] = STATE(326), + [aux_sym__list_plus_repeat1] = STATE(329), + [aux_sym__list_star_repeat1] = STATE(330), + [aux_sym__list_task_repeat1] = STATE(298), + [aux_sym__list_definition_repeat1] = STATE(508), + [aux_sym__list_decimal_period_repeat1] = STATE(509), + [aux_sym__list_decimal_paren_repeat1] = STATE(510), + [aux_sym__list_decimal_parens_repeat1] = STATE(511), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(512), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(513), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(514), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(515), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(516), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(517), + [aux_sym__list_lower_roman_period_repeat1] = STATE(526), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(531), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(534), + [aux_sym__list_upper_roman_period_repeat1] = STATE(544), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(441), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(442), + [aux_sym_table_repeat1] = STATE(241), + [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__inline_repeat1] = STATE(273), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(366), [anon_sym_DOT] = ACTIONS(11), [aux_sym_identifier_token1] = ACTIONS(11), [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [anon_sym_POUND] = ACTIONS(11), [anon_sym_PERCENT] = ACTIONS(11), [sym__newline] = ACTIONS(430), [sym__heading_begin] = ACTIONS(370), @@ -11200,103 +11059,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__table_row_begin] = ACTIONS(384), }, [50] = { - [sym__block_with_heading] = STATE(612), - [sym__block_element] = STATE(612), - [sym_heading] = STATE(612), - [sym_list] = STATE(612), - [sym__list_dash] = STATE(600), - [sym__list_item_dash] = STATE(687), - [sym__list_plus] = STATE(600), - [sym__list_item_plus] = STATE(691), - [sym__list_star] = STATE(600), - [sym__list_item_star] = STATE(673), - [sym__list_task] = STATE(600), - [sym__list_item_task] = STATE(680), - [sym_list_marker_task] = STATE(48), - [sym__list_definition] = STATE(600), - [sym__list_item_definition] = STATE(804), - [sym__list_decimal_period] = STATE(600), - [sym__list_item_decimal_period] = STATE(837), - [sym__list_decimal_paren] = STATE(600), - [sym__list_item_decimal_paren] = STATE(703), - [sym__list_decimal_parens] = STATE(600), - [sym__list_item_decimal_parens] = STATE(715), - [sym__list_lower_alpha_period] = STATE(600), - [sym__list_item_lower_alpha_period] = STATE(739), - [sym__list_lower_alpha_paren] = STATE(600), - [sym__list_item_lower_alpha_paren] = STATE(754), - [sym__list_lower_alpha_parens] = STATE(600), - [sym__list_item_lower_alpha_parens] = STATE(755), - [sym__list_upper_alpha_period] = STATE(600), - [sym__list_item_upper_alpha_period] = STATE(758), - [sym__list_upper_alpha_paren] = STATE(600), - [sym__list_item_upper_alpha_paren] = STATE(759), - [sym__list_upper_alpha_parens] = STATE(600), - [sym__list_item_upper_alpha_parens] = STATE(766), - [sym__list_lower_roman_period] = STATE(600), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(600), - [sym__list_item_lower_roman_paren] = STATE(770), - [sym__list_lower_roman_parens] = STATE(600), - [sym__list_item_lower_roman_parens] = STATE(773), - [sym__list_upper_roman_period] = STATE(600), - [sym__list_item_upper_roman_period] = STATE(775), - [sym__list_upper_roman_paren] = STATE(600), - [sym__list_item_upper_roman_paren] = STATE(791), - [sym__list_upper_roman_parens] = STATE(600), - [sym__list_item_upper_roman_parens] = STATE(793), - [sym_table] = STATE(612), - [sym__table_row] = STATE(238), - [sym_table_header] = STATE(238), - [sym_table_separator] = STATE(238), - [sym_table_row] = STATE(238), - [sym_footnote] = STATE(612), - [sym_footnote_marker_begin] = STATE(1147), - [sym_div] = STATE(612), - [sym__div_marker_begin] = STATE(1079), - [sym_code_block] = STATE(612), - [sym_raw_block] = STATE(612), - [sym_thematic_break] = STATE(612), - [sym_block_quote] = STATE(612), - [sym__block_quote_prefix] = STATE(223), - [sym_link_reference_definition] = STATE(612), - [sym_block_attribute] = STATE(612), - [sym__paragraph] = STATE(612), - [sym__paragraph_content] = STATE(821), - [sym__paragraph_inline_content] = STATE(799), - [sym__inline] = STATE(629), - [sym__symbol_fallback] = STATE(285), - [aux_sym__list_dash_repeat1] = STATE(364), - [aux_sym__list_plus_repeat1] = STATE(365), - [aux_sym__list_star_repeat1] = STATE(383), - [aux_sym__list_task_repeat1] = STATE(328), - [aux_sym__list_definition_repeat1] = STATE(536), - [aux_sym__list_decimal_period_repeat1] = STATE(537), - [aux_sym__list_decimal_paren_repeat1] = STATE(538), - [aux_sym__list_decimal_parens_repeat1] = STATE(539), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(540), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(541), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(542), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(543), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(544), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(545), - [aux_sym__list_lower_roman_period_repeat1] = STATE(546), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(547), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(548), - [aux_sym__list_upper_roman_period_repeat1] = STATE(549), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(550), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(551), - [aux_sym_table_repeat1] = STATE(238), - [aux_sym__block_quote_prefix_repeat1] = STATE(235), - [aux_sym__inline_repeat1] = STATE(285), + [sym__block_with_heading] = STATE(629), + [sym__block_element] = STATE(629), + [sym_heading] = STATE(629), + [sym_list] = STATE(629), + [sym__list_dash] = STATE(566), + [sym__list_item_dash] = STATE(553), + [sym__list_plus] = STATE(566), + [sym__list_item_plus] = STATE(554), + [sym__list_star] = STATE(566), + [sym__list_item_star] = STATE(556), + [sym__list_task] = STATE(566), + [sym__list_item_task] = STATE(558), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(566), + [sym__list_item_definition] = STATE(769), + [sym__list_decimal_period] = STATE(566), + [sym__list_item_decimal_period] = STATE(776), + [sym__list_decimal_paren] = STATE(566), + [sym__list_item_decimal_paren] = STATE(790), + [sym__list_decimal_parens] = STATE(566), + [sym__list_item_decimal_parens] = STATE(793), + [sym__list_lower_alpha_period] = STATE(566), + [sym__list_item_lower_alpha_period] = STATE(822), + [sym__list_lower_alpha_paren] = STATE(566), + [sym__list_item_lower_alpha_paren] = STATE(684), + [sym__list_lower_alpha_parens] = STATE(566), + [sym__list_item_lower_alpha_parens] = STATE(688), + [sym__list_upper_alpha_period] = STATE(566), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(566), + [sym__list_item_upper_alpha_paren] = STATE(705), + [sym__list_upper_alpha_parens] = STATE(566), + [sym__list_item_upper_alpha_parens] = STATE(711), + [sym__list_lower_roman_period] = STATE(566), + [sym__list_item_lower_roman_period] = STATE(712), + [sym__list_lower_roman_paren] = STATE(566), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(566), + [sym__list_item_lower_roman_parens] = STATE(728), + [sym__list_upper_roman_period] = STATE(566), + [sym__list_item_upper_roman_period] = STATE(734), + [sym__list_upper_roman_paren] = STATE(566), + [sym__list_item_upper_roman_paren] = STATE(830), + [sym__list_upper_roman_parens] = STATE(566), + [sym__list_item_upper_roman_parens] = STATE(725), + [sym_table] = STATE(629), + [sym__table_row] = STATE(236), + [sym_table_header] = STATE(236), + [sym_table_separator] = STATE(236), + [sym_table_row] = STATE(236), + [sym_footnote] = STATE(629), + [sym_footnote_marker_begin] = STATE(1143), + [sym_div] = STATE(629), + [sym__div_marker_begin] = STATE(1075), + [sym_code_block] = STATE(629), + [sym_raw_block] = STATE(629), + [sym_thematic_break] = STATE(629), + [sym_block_quote] = STATE(629), + [sym__block_quote_prefix] = STATE(224), + [sym_link_reference_definition] = STATE(629), + [sym_block_attribute] = STATE(629), + [sym__paragraph] = STATE(629), + [sym__paragraph_content] = STATE(779), + [sym__paragraph_inline_content] = STATE(778), + [sym__inline] = STATE(655), + [sym__symbol_fallback] = STATE(273), + [aux_sym__list_dash_repeat1] = STATE(342), + [aux_sym__list_plus_repeat1] = STATE(343), + [aux_sym__list_star_repeat1] = STATE(344), + [aux_sym__list_task_repeat1] = STATE(313), + [aux_sym__list_definition_repeat1] = STATE(460), + [aux_sym__list_decimal_period_repeat1] = STATE(461), + [aux_sym__list_decimal_paren_repeat1] = STATE(462), + [aux_sym__list_decimal_parens_repeat1] = STATE(463), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(464), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(465), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(466), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(467), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(468), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(469), + [aux_sym__list_lower_roman_period_repeat1] = STATE(470), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(471), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(472), + [aux_sym__list_upper_roman_period_repeat1] = STATE(473), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(474), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(475), + [aux_sym_table_repeat1] = STATE(236), + [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__inline_repeat1] = STATE(273), [anon_sym_LBRACK] = ACTIONS(432), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(434), [anon_sym_DOT] = ACTIONS(11), [aux_sym_identifier_token1] = ACTIONS(11), [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [anon_sym_POUND] = ACTIONS(11), [anon_sym_PERCENT] = ACTIONS(11), [sym__newline] = ACTIONS(436), [sym__heading_begin] = ACTIONS(438), @@ -11331,103 +11188,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__table_row_begin] = ACTIONS(452), }, [51] = { - [sym__block_with_heading] = STATE(1067), - [sym__block_element] = STATE(1067), - [sym_heading] = STATE(1067), - [sym_list] = STATE(1067), - [sym__list_dash] = STATE(974), - [sym__list_item_dash] = STATE(687), - [sym__list_plus] = STATE(974), - [sym__list_item_plus] = STATE(691), - [sym__list_star] = STATE(974), - [sym__list_item_star] = STATE(673), - [sym__list_task] = STATE(974), - [sym__list_item_task] = STATE(680), - [sym_list_marker_task] = STATE(48), - [sym__list_definition] = STATE(974), - [sym__list_item_definition] = STATE(804), - [sym__list_decimal_period] = STATE(974), - [sym__list_item_decimal_period] = STATE(837), - [sym__list_decimal_paren] = STATE(974), - [sym__list_item_decimal_paren] = STATE(703), - [sym__list_decimal_parens] = STATE(974), - [sym__list_item_decimal_parens] = STATE(715), - [sym__list_lower_alpha_period] = STATE(974), - [sym__list_item_lower_alpha_period] = STATE(739), - [sym__list_lower_alpha_paren] = STATE(974), - [sym__list_item_lower_alpha_paren] = STATE(754), - [sym__list_lower_alpha_parens] = STATE(974), - [sym__list_item_lower_alpha_parens] = STATE(755), - [sym__list_upper_alpha_period] = STATE(974), - [sym__list_item_upper_alpha_period] = STATE(758), - [sym__list_upper_alpha_paren] = STATE(974), - [sym__list_item_upper_alpha_paren] = STATE(759), - [sym__list_upper_alpha_parens] = STATE(974), - [sym__list_item_upper_alpha_parens] = STATE(766), - [sym__list_lower_roman_period] = STATE(974), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(974), - [sym__list_item_lower_roman_paren] = STATE(770), - [sym__list_lower_roman_parens] = STATE(974), - [sym__list_item_lower_roman_parens] = STATE(773), - [sym__list_upper_roman_period] = STATE(974), - [sym__list_item_upper_roman_period] = STATE(775), - [sym__list_upper_roman_paren] = STATE(974), - [sym__list_item_upper_roman_paren] = STATE(791), - [sym__list_upper_roman_parens] = STATE(974), - [sym__list_item_upper_roman_parens] = STATE(793), - [sym_table] = STATE(1067), - [sym__table_row] = STATE(248), - [sym_table_header] = STATE(248), - [sym_table_separator] = STATE(248), - [sym_table_row] = STATE(248), - [sym_footnote] = STATE(1067), - [sym_footnote_marker_begin] = STATE(1141), - [sym_div] = STATE(1067), - [sym__div_marker_begin] = STATE(1023), - [sym_code_block] = STATE(1067), - [sym_raw_block] = STATE(1067), - [sym_thematic_break] = STATE(1067), - [sym_block_quote] = STATE(1067), - [sym__block_quote_prefix] = STATE(222), - [sym_link_reference_definition] = STATE(1067), - [sym_block_attribute] = STATE(1067), - [sym__paragraph] = STATE(1067), - [sym__paragraph_content] = STATE(738), - [sym__paragraph_inline_content] = STATE(799), - [sym__inline] = STATE(629), - [sym__symbol_fallback] = STATE(285), - [aux_sym__list_dash_repeat1] = STATE(354), - [aux_sym__list_plus_repeat1] = STATE(355), - [aux_sym__list_star_repeat1] = STATE(356), - [aux_sym__list_task_repeat1] = STATE(335), - [aux_sym__list_definition_repeat1] = STATE(479), - [aux_sym__list_decimal_period_repeat1] = STATE(480), - [aux_sym__list_decimal_paren_repeat1] = STATE(481), - [aux_sym__list_decimal_parens_repeat1] = STATE(482), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(483), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(484), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(485), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(486), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(487), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(488), - [aux_sym__list_lower_roman_period_repeat1] = STATE(489), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(490), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(491), - [aux_sym__list_upper_roman_period_repeat1] = STATE(492), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(493), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(494), - [aux_sym_table_repeat1] = STATE(248), - [aux_sym__block_quote_prefix_repeat1] = STATE(235), - [aux_sym__inline_repeat1] = STATE(285), + [sym__block_with_heading] = STATE(1078), + [sym__block_element] = STATE(1078), + [sym_heading] = STATE(1078), + [sym_list] = STATE(1078), + [sym__list_dash] = STATE(998), + [sym__list_item_dash] = STATE(553), + [sym__list_plus] = STATE(998), + [sym__list_item_plus] = STATE(554), + [sym__list_star] = STATE(998), + [sym__list_item_star] = STATE(556), + [sym__list_task] = STATE(998), + [sym__list_item_task] = STATE(558), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(998), + [sym__list_item_definition] = STATE(769), + [sym__list_decimal_period] = STATE(998), + [sym__list_item_decimal_period] = STATE(776), + [sym__list_decimal_paren] = STATE(998), + [sym__list_item_decimal_paren] = STATE(790), + [sym__list_decimal_parens] = STATE(998), + [sym__list_item_decimal_parens] = STATE(793), + [sym__list_lower_alpha_period] = STATE(998), + [sym__list_item_lower_alpha_period] = STATE(822), + [sym__list_lower_alpha_paren] = STATE(998), + [sym__list_item_lower_alpha_paren] = STATE(684), + [sym__list_lower_alpha_parens] = STATE(998), + [sym__list_item_lower_alpha_parens] = STATE(688), + [sym__list_upper_alpha_period] = STATE(998), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(998), + [sym__list_item_upper_alpha_paren] = STATE(705), + [sym__list_upper_alpha_parens] = STATE(998), + [sym__list_item_upper_alpha_parens] = STATE(711), + [sym__list_lower_roman_period] = STATE(998), + [sym__list_item_lower_roman_period] = STATE(712), + [sym__list_lower_roman_paren] = STATE(998), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(998), + [sym__list_item_lower_roman_parens] = STATE(728), + [sym__list_upper_roman_period] = STATE(998), + [sym__list_item_upper_roman_period] = STATE(734), + [sym__list_upper_roman_paren] = STATE(998), + [sym__list_item_upper_roman_paren] = STATE(830), + [sym__list_upper_roman_parens] = STATE(998), + [sym__list_item_upper_roman_parens] = STATE(725), + [sym_table] = STATE(1078), + [sym__table_row] = STATE(241), + [sym_table_header] = STATE(241), + [sym_table_separator] = STATE(241), + [sym_table_row] = STATE(241), + [sym_footnote] = STATE(1078), + [sym_footnote_marker_begin] = STATE(1137), + [sym_div] = STATE(1078), + [sym__div_marker_begin] = STATE(1019), + [sym_code_block] = STATE(1078), + [sym_raw_block] = STATE(1078), + [sym_thematic_break] = STATE(1078), + [sym_block_quote] = STATE(1078), + [sym__block_quote_prefix] = STATE(223), + [sym_link_reference_definition] = STATE(1078), + [sym_block_attribute] = STATE(1078), + [sym__paragraph] = STATE(1078), + [sym__paragraph_content] = STATE(707), + [sym__paragraph_inline_content] = STATE(778), + [sym__inline] = STATE(655), + [sym__symbol_fallback] = STATE(273), + [aux_sym__list_dash_repeat1] = STATE(326), + [aux_sym__list_plus_repeat1] = STATE(329), + [aux_sym__list_star_repeat1] = STATE(330), + [aux_sym__list_task_repeat1] = STATE(298), + [aux_sym__list_definition_repeat1] = STATE(508), + [aux_sym__list_decimal_period_repeat1] = STATE(509), + [aux_sym__list_decimal_paren_repeat1] = STATE(510), + [aux_sym__list_decimal_parens_repeat1] = STATE(511), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(512), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(513), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(514), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(515), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(516), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(517), + [aux_sym__list_lower_roman_period_repeat1] = STATE(526), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(531), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(534), + [aux_sym__list_upper_roman_period_repeat1] = STATE(544), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(441), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(442), + [aux_sym_table_repeat1] = STATE(241), + [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__inline_repeat1] = STATE(273), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(366), [anon_sym_DOT] = ACTIONS(11), [aux_sym_identifier_token1] = ACTIONS(11), [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [anon_sym_POUND] = ACTIONS(11), [anon_sym_PERCENT] = ACTIONS(11), [sym__newline] = ACTIONS(454), [sym__heading_begin] = ACTIONS(370), @@ -11462,103 +11317,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__table_row_begin] = ACTIONS(384), }, [52] = { - [sym__block_with_heading] = STATE(960), - [sym__block_element] = STATE(960), - [sym_heading] = STATE(960), - [sym_list] = STATE(960), - [sym__list_dash] = STATE(974), - [sym__list_item_dash] = STATE(687), - [sym__list_plus] = STATE(974), - [sym__list_item_plus] = STATE(691), - [sym__list_star] = STATE(974), - [sym__list_item_star] = STATE(673), - [sym__list_task] = STATE(974), - [sym__list_item_task] = STATE(680), - [sym_list_marker_task] = STATE(48), - [sym__list_definition] = STATE(974), - [sym__list_item_definition] = STATE(804), - [sym__list_decimal_period] = STATE(974), - [sym__list_item_decimal_period] = STATE(837), - [sym__list_decimal_paren] = STATE(974), - [sym__list_item_decimal_paren] = STATE(703), - [sym__list_decimal_parens] = STATE(974), - [sym__list_item_decimal_parens] = STATE(715), - [sym__list_lower_alpha_period] = STATE(974), - [sym__list_item_lower_alpha_period] = STATE(739), - [sym__list_lower_alpha_paren] = STATE(974), - [sym__list_item_lower_alpha_paren] = STATE(754), - [sym__list_lower_alpha_parens] = STATE(974), - [sym__list_item_lower_alpha_parens] = STATE(755), - [sym__list_upper_alpha_period] = STATE(974), - [sym__list_item_upper_alpha_period] = STATE(758), - [sym__list_upper_alpha_paren] = STATE(974), - [sym__list_item_upper_alpha_paren] = STATE(759), - [sym__list_upper_alpha_parens] = STATE(974), - [sym__list_item_upper_alpha_parens] = STATE(766), - [sym__list_lower_roman_period] = STATE(974), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(974), - [sym__list_item_lower_roman_paren] = STATE(770), - [sym__list_lower_roman_parens] = STATE(974), - [sym__list_item_lower_roman_parens] = STATE(773), - [sym__list_upper_roman_period] = STATE(974), - [sym__list_item_upper_roman_period] = STATE(775), - [sym__list_upper_roman_paren] = STATE(974), - [sym__list_item_upper_roman_paren] = STATE(791), - [sym__list_upper_roman_parens] = STATE(974), - [sym__list_item_upper_roman_parens] = STATE(793), - [sym_table] = STATE(960), - [sym__table_row] = STATE(248), - [sym_table_header] = STATE(248), - [sym_table_separator] = STATE(248), - [sym_table_row] = STATE(248), - [sym_footnote] = STATE(960), - [sym_footnote_marker_begin] = STATE(1141), - [sym_div] = STATE(960), - [sym__div_marker_begin] = STATE(1023), - [sym_code_block] = STATE(960), - [sym_raw_block] = STATE(960), - [sym_thematic_break] = STATE(960), - [sym_block_quote] = STATE(960), - [sym__block_quote_prefix] = STATE(222), - [sym_link_reference_definition] = STATE(960), - [sym_block_attribute] = STATE(960), - [sym__paragraph] = STATE(960), - [sym__paragraph_content] = STATE(738), - [sym__paragraph_inline_content] = STATE(799), - [sym__inline] = STATE(629), - [sym__symbol_fallback] = STATE(285), - [aux_sym__list_dash_repeat1] = STATE(354), - [aux_sym__list_plus_repeat1] = STATE(355), - [aux_sym__list_star_repeat1] = STATE(356), - [aux_sym__list_task_repeat1] = STATE(335), - [aux_sym__list_definition_repeat1] = STATE(479), - [aux_sym__list_decimal_period_repeat1] = STATE(480), - [aux_sym__list_decimal_paren_repeat1] = STATE(481), - [aux_sym__list_decimal_parens_repeat1] = STATE(482), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(483), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(484), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(485), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(486), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(487), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(488), - [aux_sym__list_lower_roman_period_repeat1] = STATE(489), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(490), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(491), - [aux_sym__list_upper_roman_period_repeat1] = STATE(492), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(493), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(494), - [aux_sym_table_repeat1] = STATE(248), - [aux_sym__block_quote_prefix_repeat1] = STATE(235), - [aux_sym__inline_repeat1] = STATE(285), + [sym__block_with_heading] = STATE(987), + [sym__block_element] = STATE(987), + [sym_heading] = STATE(987), + [sym_list] = STATE(987), + [sym__list_dash] = STATE(998), + [sym__list_item_dash] = STATE(553), + [sym__list_plus] = STATE(998), + [sym__list_item_plus] = STATE(554), + [sym__list_star] = STATE(998), + [sym__list_item_star] = STATE(556), + [sym__list_task] = STATE(998), + [sym__list_item_task] = STATE(558), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(998), + [sym__list_item_definition] = STATE(769), + [sym__list_decimal_period] = STATE(998), + [sym__list_item_decimal_period] = STATE(776), + [sym__list_decimal_paren] = STATE(998), + [sym__list_item_decimal_paren] = STATE(790), + [sym__list_decimal_parens] = STATE(998), + [sym__list_item_decimal_parens] = STATE(793), + [sym__list_lower_alpha_period] = STATE(998), + [sym__list_item_lower_alpha_period] = STATE(822), + [sym__list_lower_alpha_paren] = STATE(998), + [sym__list_item_lower_alpha_paren] = STATE(684), + [sym__list_lower_alpha_parens] = STATE(998), + [sym__list_item_lower_alpha_parens] = STATE(688), + [sym__list_upper_alpha_period] = STATE(998), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(998), + [sym__list_item_upper_alpha_paren] = STATE(705), + [sym__list_upper_alpha_parens] = STATE(998), + [sym__list_item_upper_alpha_parens] = STATE(711), + [sym__list_lower_roman_period] = STATE(998), + [sym__list_item_lower_roman_period] = STATE(712), + [sym__list_lower_roman_paren] = STATE(998), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(998), + [sym__list_item_lower_roman_parens] = STATE(728), + [sym__list_upper_roman_period] = STATE(998), + [sym__list_item_upper_roman_period] = STATE(734), + [sym__list_upper_roman_paren] = STATE(998), + [sym__list_item_upper_roman_paren] = STATE(830), + [sym__list_upper_roman_parens] = STATE(998), + [sym__list_item_upper_roman_parens] = STATE(725), + [sym_table] = STATE(987), + [sym__table_row] = STATE(241), + [sym_table_header] = STATE(241), + [sym_table_separator] = STATE(241), + [sym_table_row] = STATE(241), + [sym_footnote] = STATE(987), + [sym_footnote_marker_begin] = STATE(1137), + [sym_div] = STATE(987), + [sym__div_marker_begin] = STATE(1019), + [sym_code_block] = STATE(987), + [sym_raw_block] = STATE(987), + [sym_thematic_break] = STATE(987), + [sym_block_quote] = STATE(987), + [sym__block_quote_prefix] = STATE(223), + [sym_link_reference_definition] = STATE(987), + [sym_block_attribute] = STATE(987), + [sym__paragraph] = STATE(987), + [sym__paragraph_content] = STATE(707), + [sym__paragraph_inline_content] = STATE(778), + [sym__inline] = STATE(655), + [sym__symbol_fallback] = STATE(273), + [aux_sym__list_dash_repeat1] = STATE(326), + [aux_sym__list_plus_repeat1] = STATE(329), + [aux_sym__list_star_repeat1] = STATE(330), + [aux_sym__list_task_repeat1] = STATE(298), + [aux_sym__list_definition_repeat1] = STATE(508), + [aux_sym__list_decimal_period_repeat1] = STATE(509), + [aux_sym__list_decimal_paren_repeat1] = STATE(510), + [aux_sym__list_decimal_parens_repeat1] = STATE(511), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(512), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(513), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(514), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(515), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(516), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(517), + [aux_sym__list_lower_roman_period_repeat1] = STATE(526), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(531), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(534), + [aux_sym__list_upper_roman_period_repeat1] = STATE(544), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(441), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(442), + [aux_sym_table_repeat1] = STATE(241), + [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__inline_repeat1] = STATE(273), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(366), [anon_sym_DOT] = ACTIONS(11), [aux_sym_identifier_token1] = ACTIONS(11), [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [anon_sym_POUND] = ACTIONS(11), [anon_sym_PERCENT] = ACTIONS(11), [sym__newline] = ACTIONS(456), [sym__heading_begin] = ACTIONS(370), @@ -11593,108 +11446,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__table_row_begin] = ACTIONS(384), }, [53] = { - [sym__block_element] = STATE(140), - [sym_heading] = STATE(140), - [sym_list] = STATE(140), - [sym__list_dash] = STATE(143), - [sym__list_item_dash] = STATE(687), - [sym__list_plus] = STATE(143), - [sym__list_item_plus] = STATE(691), - [sym__list_star] = STATE(143), - [sym__list_item_star] = STATE(673), - [sym__list_task] = STATE(143), - [sym__list_item_task] = STATE(680), - [sym_list_marker_task] = STATE(48), - [sym__list_definition] = STATE(143), - [sym__list_item_definition] = STATE(804), - [sym__list_decimal_period] = STATE(143), - [sym__list_item_decimal_period] = STATE(837), - [sym__list_decimal_paren] = STATE(143), - [sym__list_item_decimal_paren] = STATE(703), - [sym__list_decimal_parens] = STATE(143), - [sym__list_item_decimal_parens] = STATE(715), - [sym__list_lower_alpha_period] = STATE(143), - [sym__list_item_lower_alpha_period] = STATE(739), - [sym__list_lower_alpha_paren] = STATE(143), - [sym__list_item_lower_alpha_paren] = STATE(754), - [sym__list_lower_alpha_parens] = STATE(143), - [sym__list_item_lower_alpha_parens] = STATE(755), - [sym__list_upper_alpha_period] = STATE(143), - [sym__list_item_upper_alpha_period] = STATE(758), - [sym__list_upper_alpha_paren] = STATE(143), - [sym__list_item_upper_alpha_paren] = STATE(759), - [sym__list_upper_alpha_parens] = STATE(143), - [sym__list_item_upper_alpha_parens] = STATE(766), - [sym__list_lower_roman_period] = STATE(143), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(143), - [sym__list_item_lower_roman_paren] = STATE(770), - [sym__list_lower_roman_parens] = STATE(143), - [sym__list_item_lower_roman_parens] = STATE(773), - [sym__list_upper_roman_period] = STATE(143), - [sym__list_item_upper_roman_period] = STATE(775), - [sym__list_upper_roman_paren] = STATE(143), - [sym__list_item_upper_roman_paren] = STATE(791), - [sym__list_upper_roman_parens] = STATE(143), - [sym__list_item_upper_roman_parens] = STATE(793), - [sym_table] = STATE(140), + [sym__block_element] = STATE(141), + [sym_heading] = STATE(141), + [sym_list] = STATE(141), + [sym__list_dash] = STATE(144), + [sym__list_item_dash] = STATE(553), + [sym__list_plus] = STATE(144), + [sym__list_item_plus] = STATE(554), + [sym__list_star] = STATE(144), + [sym__list_item_star] = STATE(556), + [sym__list_task] = STATE(144), + [sym__list_item_task] = STATE(558), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(144), + [sym__list_item_definition] = STATE(769), + [sym__list_decimal_period] = STATE(144), + [sym__list_item_decimal_period] = STATE(776), + [sym__list_decimal_paren] = STATE(144), + [sym__list_item_decimal_paren] = STATE(790), + [sym__list_decimal_parens] = STATE(144), + [sym__list_item_decimal_parens] = STATE(793), + [sym__list_lower_alpha_period] = STATE(144), + [sym__list_item_lower_alpha_period] = STATE(822), + [sym__list_lower_alpha_paren] = STATE(144), + [sym__list_item_lower_alpha_paren] = STATE(684), + [sym__list_lower_alpha_parens] = STATE(144), + [sym__list_item_lower_alpha_parens] = STATE(688), + [sym__list_upper_alpha_period] = STATE(144), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(144), + [sym__list_item_upper_alpha_paren] = STATE(705), + [sym__list_upper_alpha_parens] = STATE(144), + [sym__list_item_upper_alpha_parens] = STATE(711), + [sym__list_lower_roman_period] = STATE(144), + [sym__list_item_lower_roman_period] = STATE(712), + [sym__list_lower_roman_paren] = STATE(144), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(144), + [sym__list_item_lower_roman_parens] = STATE(728), + [sym__list_upper_roman_period] = STATE(144), + [sym__list_item_upper_roman_period] = STATE(734), + [sym__list_upper_roman_paren] = STATE(144), + [sym__list_item_upper_roman_paren] = STATE(830), + [sym__list_upper_roman_parens] = STATE(144), + [sym__list_item_upper_roman_parens] = STATE(725), + [sym_table] = STATE(141), [sym__table_row] = STATE(66), [sym_table_header] = STATE(66), [sym_table_separator] = STATE(66), [sym_table_row] = STATE(66), - [sym_footnote] = STATE(140), - [sym_footnote_marker_begin] = STATE(1145), - [sym_div] = STATE(140), - [sym__div_marker_begin] = STATE(1061), - [sym_code_block] = STATE(140), - [sym_raw_block] = STATE(140), - [sym_thematic_break] = STATE(140), - [sym_block_quote] = STATE(140), - [sym__block_quote_prefix] = STATE(224), - [sym_link_reference_definition] = STATE(140), - [sym_block_attribute] = STATE(140), - [sym__paragraph] = STATE(140), - [sym__paragraph_content] = STATE(800), - [sym__paragraph_inline_content] = STATE(799), - [sym__inline] = STATE(629), - [sym__symbol_fallback] = STATE(285), - [aux_sym__list_dash_repeat1] = STATE(351), - [aux_sym__list_plus_repeat1] = STATE(350), - [aux_sym__list_star_repeat1] = STATE(353), - [aux_sym__list_task_repeat1] = STATE(339), - [aux_sym__list_definition_repeat1] = STATE(512), - [aux_sym__list_decimal_period_repeat1] = STATE(513), - [aux_sym__list_decimal_paren_repeat1] = STATE(514), - [aux_sym__list_decimal_parens_repeat1] = STATE(515), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(516), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(518), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(519), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(520), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(521), - [aux_sym__list_lower_roman_period_repeat1] = STATE(579), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(523), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(524), - [aux_sym__list_upper_roman_period_repeat1] = STATE(525), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(526), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(527), + [sym_footnote] = STATE(141), + [sym_footnote_marker_begin] = STATE(1141), + [sym_div] = STATE(141), + [sym__div_marker_begin] = STATE(1057), + [sym_code_block] = STATE(141), + [sym_raw_block] = STATE(141), + [sym_thematic_break] = STATE(141), + [sym_block_quote] = STATE(141), + [sym__block_quote_prefix] = STATE(225), + [sym_link_reference_definition] = STATE(141), + [sym_block_attribute] = STATE(141), + [sym__paragraph] = STATE(141), + [sym__paragraph_content] = STATE(750), + [sym__paragraph_inline_content] = STATE(778), + [sym__inline] = STATE(655), + [sym__symbol_fallback] = STATE(273), + [aux_sym__list_dash_repeat1] = STATE(334), + [aux_sym__list_plus_repeat1] = STATE(335), + [aux_sym__list_star_repeat1] = STATE(336), + [aux_sym__list_task_repeat1] = STATE(309), + [aux_sym__list_definition_repeat1] = STATE(425), + [aux_sym__list_decimal_period_repeat1] = STATE(426), + [aux_sym__list_decimal_paren_repeat1] = STATE(427), + [aux_sym__list_decimal_parens_repeat1] = STATE(428), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(429), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(430), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(431), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(432), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(433), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(434), + [aux_sym__list_lower_roman_period_repeat1] = STATE(435), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(436), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(437), + [aux_sym__list_upper_roman_period_repeat1] = STATE(438), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(439), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(440), [aux_sym_table_repeat1] = STATE(66), - [aux_sym__block_quote_prefix_repeat1] = STATE(235), - [aux_sym__inline_repeat1] = STATE(285), + [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__inline_repeat1] = STATE(273), [anon_sym_LBRACK] = ACTIONS(458), [anon_sym_LBRACK_CARET] = ACTIONS(458), [anon_sym_LBRACE] = ACTIONS(458), [anon_sym_DOT] = ACTIONS(458), [aux_sym_identifier_token1] = ACTIONS(458), [aux_sym__inline_token1] = ACTIONS(458), - [anon_sym_LBRACE_DASH] = ACTIONS(458), - [anon_sym_POUND] = ACTIONS(458), [anon_sym_PERCENT] = ACTIONS(458), [sym__block_close] = ACTIONS(460), [sym__newline] = ACTIONS(462), [sym__heading_begin] = ACTIONS(17), [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(85), + [sym__code_block_begin] = ACTIONS(189), [sym_list_marker_dash] = ACTIONS(460), [sym_list_marker_star] = ACTIONS(460), [sym_list_marker_plus] = ACTIONS(460), @@ -11715,112 +11566,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(57), [sym_list_marker_lower_roman_parens] = ACTIONS(59), [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(87), + [sym__block_quote_begin] = ACTIONS(191), [sym__block_quote_continuation] = ACTIONS(460), - [sym__thematic_break_dash] = ACTIONS(89), - [sym__thematic_break_star] = ACTIONS(89), + [sym__thematic_break_dash] = ACTIONS(193), + [sym__thematic_break_star] = ACTIONS(193), [sym__table_header_begin] = ACTIONS(460), [sym__table_separator_begin] = ACTIONS(460), [sym__table_row_begin] = ACTIONS(460), }, [54] = { - [sym__block_with_heading] = STATE(967), - [sym__block_element] = STATE(967), - [sym_heading] = STATE(967), - [sym_list] = STATE(967), - [sym__list_dash] = STATE(974), - [sym__list_item_dash] = STATE(687), - [sym__list_plus] = STATE(974), - [sym__list_item_plus] = STATE(691), - [sym__list_star] = STATE(974), - [sym__list_item_star] = STATE(673), - [sym__list_task] = STATE(974), - [sym__list_item_task] = STATE(680), - [sym_list_marker_task] = STATE(48), - [sym__list_definition] = STATE(974), - [sym__list_item_definition] = STATE(804), - [sym__list_decimal_period] = STATE(974), - [sym__list_item_decimal_period] = STATE(837), - [sym__list_decimal_paren] = STATE(974), - [sym__list_item_decimal_paren] = STATE(703), - [sym__list_decimal_parens] = STATE(974), - [sym__list_item_decimal_parens] = STATE(715), - [sym__list_lower_alpha_period] = STATE(974), - [sym__list_item_lower_alpha_period] = STATE(739), - [sym__list_lower_alpha_paren] = STATE(974), - [sym__list_item_lower_alpha_paren] = STATE(754), - [sym__list_lower_alpha_parens] = STATE(974), - [sym__list_item_lower_alpha_parens] = STATE(755), - [sym__list_upper_alpha_period] = STATE(974), - [sym__list_item_upper_alpha_period] = STATE(758), - [sym__list_upper_alpha_paren] = STATE(974), - [sym__list_item_upper_alpha_paren] = STATE(759), - [sym__list_upper_alpha_parens] = STATE(974), - [sym__list_item_upper_alpha_parens] = STATE(766), - [sym__list_lower_roman_period] = STATE(974), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(974), - [sym__list_item_lower_roman_paren] = STATE(770), - [sym__list_lower_roman_parens] = STATE(974), - [sym__list_item_lower_roman_parens] = STATE(773), - [sym__list_upper_roman_period] = STATE(974), - [sym__list_item_upper_roman_period] = STATE(775), - [sym__list_upper_roman_paren] = STATE(974), - [sym__list_item_upper_roman_paren] = STATE(791), - [sym__list_upper_roman_parens] = STATE(974), - [sym__list_item_upper_roman_parens] = STATE(793), - [sym_table] = STATE(967), - [sym__table_row] = STATE(248), - [sym_table_header] = STATE(248), - [sym_table_separator] = STATE(248), - [sym_table_row] = STATE(248), - [sym_footnote] = STATE(967), - [sym_footnote_marker_begin] = STATE(1141), - [sym_div] = STATE(967), - [sym__div_marker_begin] = STATE(1023), - [sym_code_block] = STATE(967), - [sym_raw_block] = STATE(967), - [sym_thematic_break] = STATE(967), - [sym_block_quote] = STATE(967), - [sym__block_quote_prefix] = STATE(222), - [sym_link_reference_definition] = STATE(967), - [sym_block_attribute] = STATE(967), - [sym__paragraph] = STATE(967), - [sym__paragraph_content] = STATE(738), - [sym__paragraph_inline_content] = STATE(799), - [sym__inline] = STATE(629), - [sym__symbol_fallback] = STATE(285), - [aux_sym__list_dash_repeat1] = STATE(354), - [aux_sym__list_plus_repeat1] = STATE(355), - [aux_sym__list_star_repeat1] = STATE(356), - [aux_sym__list_task_repeat1] = STATE(335), - [aux_sym__list_definition_repeat1] = STATE(479), - [aux_sym__list_decimal_period_repeat1] = STATE(480), - [aux_sym__list_decimal_paren_repeat1] = STATE(481), - [aux_sym__list_decimal_parens_repeat1] = STATE(482), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(483), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(484), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(485), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(486), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(487), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(488), - [aux_sym__list_lower_roman_period_repeat1] = STATE(489), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(490), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(491), - [aux_sym__list_upper_roman_period_repeat1] = STATE(492), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(493), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(494), - [aux_sym_table_repeat1] = STATE(248), - [aux_sym__block_quote_prefix_repeat1] = STATE(235), - [aux_sym__inline_repeat1] = STATE(285), + [sym__block_with_heading] = STATE(993), + [sym__block_element] = STATE(993), + [sym_heading] = STATE(993), + [sym_list] = STATE(993), + [sym__list_dash] = STATE(998), + [sym__list_item_dash] = STATE(553), + [sym__list_plus] = STATE(998), + [sym__list_item_plus] = STATE(554), + [sym__list_star] = STATE(998), + [sym__list_item_star] = STATE(556), + [sym__list_task] = STATE(998), + [sym__list_item_task] = STATE(558), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(998), + [sym__list_item_definition] = STATE(769), + [sym__list_decimal_period] = STATE(998), + [sym__list_item_decimal_period] = STATE(776), + [sym__list_decimal_paren] = STATE(998), + [sym__list_item_decimal_paren] = STATE(790), + [sym__list_decimal_parens] = STATE(998), + [sym__list_item_decimal_parens] = STATE(793), + [sym__list_lower_alpha_period] = STATE(998), + [sym__list_item_lower_alpha_period] = STATE(822), + [sym__list_lower_alpha_paren] = STATE(998), + [sym__list_item_lower_alpha_paren] = STATE(684), + [sym__list_lower_alpha_parens] = STATE(998), + [sym__list_item_lower_alpha_parens] = STATE(688), + [sym__list_upper_alpha_period] = STATE(998), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(998), + [sym__list_item_upper_alpha_paren] = STATE(705), + [sym__list_upper_alpha_parens] = STATE(998), + [sym__list_item_upper_alpha_parens] = STATE(711), + [sym__list_lower_roman_period] = STATE(998), + [sym__list_item_lower_roman_period] = STATE(712), + [sym__list_lower_roman_paren] = STATE(998), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(998), + [sym__list_item_lower_roman_parens] = STATE(728), + [sym__list_upper_roman_period] = STATE(998), + [sym__list_item_upper_roman_period] = STATE(734), + [sym__list_upper_roman_paren] = STATE(998), + [sym__list_item_upper_roman_paren] = STATE(830), + [sym__list_upper_roman_parens] = STATE(998), + [sym__list_item_upper_roman_parens] = STATE(725), + [sym_table] = STATE(993), + [sym__table_row] = STATE(241), + [sym_table_header] = STATE(241), + [sym_table_separator] = STATE(241), + [sym_table_row] = STATE(241), + [sym_footnote] = STATE(993), + [sym_footnote_marker_begin] = STATE(1137), + [sym_div] = STATE(993), + [sym__div_marker_begin] = STATE(1019), + [sym_code_block] = STATE(993), + [sym_raw_block] = STATE(993), + [sym_thematic_break] = STATE(993), + [sym_block_quote] = STATE(993), + [sym__block_quote_prefix] = STATE(223), + [sym_link_reference_definition] = STATE(993), + [sym_block_attribute] = STATE(993), + [sym__paragraph] = STATE(993), + [sym__paragraph_content] = STATE(707), + [sym__paragraph_inline_content] = STATE(778), + [sym__inline] = STATE(655), + [sym__symbol_fallback] = STATE(273), + [aux_sym__list_dash_repeat1] = STATE(326), + [aux_sym__list_plus_repeat1] = STATE(329), + [aux_sym__list_star_repeat1] = STATE(330), + [aux_sym__list_task_repeat1] = STATE(298), + [aux_sym__list_definition_repeat1] = STATE(508), + [aux_sym__list_decimal_period_repeat1] = STATE(509), + [aux_sym__list_decimal_paren_repeat1] = STATE(510), + [aux_sym__list_decimal_parens_repeat1] = STATE(511), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(512), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(513), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(514), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(515), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(516), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(517), + [aux_sym__list_lower_roman_period_repeat1] = STATE(526), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(531), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(534), + [aux_sym__list_upper_roman_period_repeat1] = STATE(544), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(441), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(442), + [aux_sym_table_repeat1] = STATE(241), + [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__inline_repeat1] = STATE(273), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(366), [anon_sym_DOT] = ACTIONS(11), [aux_sym_identifier_token1] = ACTIONS(11), [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [anon_sym_POUND] = ACTIONS(11), [anon_sym_PERCENT] = ACTIONS(11), [sym__newline] = ACTIONS(464), [sym__heading_begin] = ACTIONS(370), @@ -11855,108 +11704,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__table_row_begin] = ACTIONS(384), }, [55] = { - [sym__block_with_heading] = STATE(592), - [sym__block_element] = STATE(592), - [sym_heading] = STATE(592), - [sym_list] = STATE(592), - [sym__list_dash] = STATE(600), - [sym__list_item_dash] = STATE(687), - [sym__list_plus] = STATE(600), - [sym__list_item_plus] = STATE(691), - [sym__list_star] = STATE(600), - [sym__list_item_star] = STATE(673), - [sym__list_task] = STATE(600), - [sym__list_item_task] = STATE(680), - [sym_list_marker_task] = STATE(48), - [sym__list_definition] = STATE(600), - [sym__list_item_definition] = STATE(804), - [sym__list_decimal_period] = STATE(600), - [sym__list_item_decimal_period] = STATE(837), - [sym__list_decimal_paren] = STATE(600), - [sym__list_item_decimal_paren] = STATE(703), - [sym__list_decimal_parens] = STATE(600), - [sym__list_item_decimal_parens] = STATE(715), - [sym__list_lower_alpha_period] = STATE(600), - [sym__list_item_lower_alpha_period] = STATE(739), - [sym__list_lower_alpha_paren] = STATE(600), - [sym__list_item_lower_alpha_paren] = STATE(754), - [sym__list_lower_alpha_parens] = STATE(600), - [sym__list_item_lower_alpha_parens] = STATE(755), - [sym__list_upper_alpha_period] = STATE(600), - [sym__list_item_upper_alpha_period] = STATE(758), - [sym__list_upper_alpha_paren] = STATE(600), - [sym__list_item_upper_alpha_paren] = STATE(759), - [sym__list_upper_alpha_parens] = STATE(600), - [sym__list_item_upper_alpha_parens] = STATE(766), - [sym__list_lower_roman_period] = STATE(600), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(600), - [sym__list_item_lower_roman_paren] = STATE(770), - [sym__list_lower_roman_parens] = STATE(600), - [sym__list_item_lower_roman_parens] = STATE(773), - [sym__list_upper_roman_period] = STATE(600), - [sym__list_item_upper_roman_period] = STATE(775), - [sym__list_upper_roman_paren] = STATE(600), - [sym__list_item_upper_roman_paren] = STATE(791), - [sym__list_upper_roman_parens] = STATE(600), - [sym__list_item_upper_roman_parens] = STATE(793), - [sym_table] = STATE(592), - [sym__table_row] = STATE(238), - [sym_table_header] = STATE(238), - [sym_table_separator] = STATE(238), - [sym_table_row] = STATE(238), - [sym_footnote] = STATE(592), - [sym_footnote_marker_begin] = STATE(1147), - [sym_div] = STATE(592), - [sym__div_marker_begin] = STATE(1079), - [sym_code_block] = STATE(592), - [sym_raw_block] = STATE(592), - [sym_thematic_break] = STATE(592), - [sym_block_quote] = STATE(592), + [sym__block_with_heading] = STATE(911), + [sym__block_element] = STATE(911), + [sym_heading] = STATE(911), + [sym_list] = STATE(911), + [sym__list_dash] = STATE(998), + [sym__list_item_dash] = STATE(553), + [sym__list_plus] = STATE(998), + [sym__list_item_plus] = STATE(554), + [sym__list_star] = STATE(998), + [sym__list_item_star] = STATE(556), + [sym__list_task] = STATE(998), + [sym__list_item_task] = STATE(558), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(998), + [sym__list_item_definition] = STATE(769), + [sym__list_decimal_period] = STATE(998), + [sym__list_item_decimal_period] = STATE(776), + [sym__list_decimal_paren] = STATE(998), + [sym__list_item_decimal_paren] = STATE(790), + [sym__list_decimal_parens] = STATE(998), + [sym__list_item_decimal_parens] = STATE(793), + [sym__list_lower_alpha_period] = STATE(998), + [sym__list_item_lower_alpha_period] = STATE(822), + [sym__list_lower_alpha_paren] = STATE(998), + [sym__list_item_lower_alpha_paren] = STATE(684), + [sym__list_lower_alpha_parens] = STATE(998), + [sym__list_item_lower_alpha_parens] = STATE(688), + [sym__list_upper_alpha_period] = STATE(998), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(998), + [sym__list_item_upper_alpha_paren] = STATE(705), + [sym__list_upper_alpha_parens] = STATE(998), + [sym__list_item_upper_alpha_parens] = STATE(711), + [sym__list_lower_roman_period] = STATE(998), + [sym__list_item_lower_roman_period] = STATE(712), + [sym__list_lower_roman_paren] = STATE(998), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(998), + [sym__list_item_lower_roman_parens] = STATE(728), + [sym__list_upper_roman_period] = STATE(998), + [sym__list_item_upper_roman_period] = STATE(734), + [sym__list_upper_roman_paren] = STATE(998), + [sym__list_item_upper_roman_paren] = STATE(830), + [sym__list_upper_roman_parens] = STATE(998), + [sym__list_item_upper_roman_parens] = STATE(725), + [sym_table] = STATE(911), + [sym__table_row] = STATE(241), + [sym_table_header] = STATE(241), + [sym_table_separator] = STATE(241), + [sym_table_row] = STATE(241), + [sym_footnote] = STATE(911), + [sym_footnote_marker_begin] = STATE(1137), + [sym_div] = STATE(911), + [sym__div_marker_begin] = STATE(1019), + [sym_code_block] = STATE(911), + [sym_raw_block] = STATE(911), + [sym_thematic_break] = STATE(911), + [sym_block_quote] = STATE(911), [sym__block_quote_prefix] = STATE(223), - [sym_link_reference_definition] = STATE(592), - [sym_block_attribute] = STATE(592), - [sym__paragraph] = STATE(592), - [sym__paragraph_content] = STATE(821), - [sym__paragraph_inline_content] = STATE(799), - [sym__inline] = STATE(629), - [sym__symbol_fallback] = STATE(285), - [aux_sym__list_dash_repeat1] = STATE(364), - [aux_sym__list_plus_repeat1] = STATE(365), - [aux_sym__list_star_repeat1] = STATE(383), - [aux_sym__list_task_repeat1] = STATE(328), - [aux_sym__list_definition_repeat1] = STATE(536), - [aux_sym__list_decimal_period_repeat1] = STATE(537), - [aux_sym__list_decimal_paren_repeat1] = STATE(538), - [aux_sym__list_decimal_parens_repeat1] = STATE(539), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(540), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(541), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(542), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(543), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(544), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(545), - [aux_sym__list_lower_roman_period_repeat1] = STATE(546), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(547), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(548), - [aux_sym__list_upper_roman_period_repeat1] = STATE(549), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(550), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(551), - [aux_sym_table_repeat1] = STATE(238), - [aux_sym__block_quote_prefix_repeat1] = STATE(235), - [aux_sym__inline_repeat1] = STATE(285), - [anon_sym_LBRACK] = ACTIONS(432), + [sym_link_reference_definition] = STATE(911), + [sym_block_attribute] = STATE(911), + [sym__paragraph] = STATE(911), + [sym__paragraph_content] = STATE(707), + [sym__paragraph_inline_content] = STATE(778), + [sym__inline] = STATE(655), + [sym__symbol_fallback] = STATE(273), + [aux_sym__list_dash_repeat1] = STATE(326), + [aux_sym__list_plus_repeat1] = STATE(329), + [aux_sym__list_star_repeat1] = STATE(330), + [aux_sym__list_task_repeat1] = STATE(298), + [aux_sym__list_definition_repeat1] = STATE(508), + [aux_sym__list_decimal_period_repeat1] = STATE(509), + [aux_sym__list_decimal_paren_repeat1] = STATE(510), + [aux_sym__list_decimal_parens_repeat1] = STATE(511), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(512), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(513), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(514), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(515), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(516), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(517), + [aux_sym__list_lower_roman_period_repeat1] = STATE(526), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(531), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(534), + [aux_sym__list_upper_roman_period_repeat1] = STATE(544), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(441), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(442), + [aux_sym_table_repeat1] = STATE(241), + [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__inline_repeat1] = STATE(273), + [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_LBRACE] = ACTIONS(366), [anon_sym_DOT] = ACTIONS(11), [aux_sym_identifier_token1] = ACTIONS(11), [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [anon_sym_POUND] = ACTIONS(11), [anon_sym_PERCENT] = ACTIONS(11), [sym__newline] = ACTIONS(466), - [sym__heading_begin] = ACTIONS(438), + [sym__heading_begin] = ACTIONS(370), [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(440), + [sym__code_block_begin] = ACTIONS(372), [sym_list_marker_dash] = ACTIONS(23), [sym_list_marker_star] = ACTIONS(25), [sym_list_marker_plus] = ACTIONS(27), @@ -11977,117 +11824,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(57), [sym_list_marker_lower_roman_parens] = ACTIONS(59), [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(442), - [sym__block_quote_continuation] = ACTIONS(444), - [sym__thematic_break_dash] = ACTIONS(446), - [sym__thematic_break_star] = ACTIONS(446), - [sym__table_header_begin] = ACTIONS(448), - [sym__table_separator_begin] = ACTIONS(450), - [sym__table_row_begin] = ACTIONS(452), + [sym__block_quote_begin] = ACTIONS(374), + [sym__block_quote_continuation] = ACTIONS(376), + [sym__thematic_break_dash] = ACTIONS(378), + [sym__thematic_break_star] = ACTIONS(378), + [sym__table_header_begin] = ACTIONS(380), + [sym__table_separator_begin] = ACTIONS(382), + [sym__table_row_begin] = ACTIONS(384), }, [56] = { - [sym__block_with_heading] = STATE(1091), - [sym__block_element] = STATE(1091), - [sym_heading] = STATE(1091), - [sym_list] = STATE(1091), - [sym__list_dash] = STATE(974), - [sym__list_item_dash] = STATE(687), - [sym__list_plus] = STATE(974), - [sym__list_item_plus] = STATE(691), - [sym__list_star] = STATE(974), - [sym__list_item_star] = STATE(673), - [sym__list_task] = STATE(974), - [sym__list_item_task] = STATE(680), - [sym_list_marker_task] = STATE(48), - [sym__list_definition] = STATE(974), - [sym__list_item_definition] = STATE(804), - [sym__list_decimal_period] = STATE(974), - [sym__list_item_decimal_period] = STATE(837), - [sym__list_decimal_paren] = STATE(974), - [sym__list_item_decimal_paren] = STATE(703), - [sym__list_decimal_parens] = STATE(974), - [sym__list_item_decimal_parens] = STATE(715), - [sym__list_lower_alpha_period] = STATE(974), - [sym__list_item_lower_alpha_period] = STATE(739), - [sym__list_lower_alpha_paren] = STATE(974), - [sym__list_item_lower_alpha_paren] = STATE(754), - [sym__list_lower_alpha_parens] = STATE(974), - [sym__list_item_lower_alpha_parens] = STATE(755), - [sym__list_upper_alpha_period] = STATE(974), - [sym__list_item_upper_alpha_period] = STATE(758), - [sym__list_upper_alpha_paren] = STATE(974), - [sym__list_item_upper_alpha_paren] = STATE(759), - [sym__list_upper_alpha_parens] = STATE(974), - [sym__list_item_upper_alpha_parens] = STATE(766), - [sym__list_lower_roman_period] = STATE(974), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(974), - [sym__list_item_lower_roman_paren] = STATE(770), - [sym__list_lower_roman_parens] = STATE(974), - [sym__list_item_lower_roman_parens] = STATE(773), - [sym__list_upper_roman_period] = STATE(974), - [sym__list_item_upper_roman_period] = STATE(775), - [sym__list_upper_roman_paren] = STATE(974), - [sym__list_item_upper_roman_paren] = STATE(791), - [sym__list_upper_roman_parens] = STATE(974), - [sym__list_item_upper_roman_parens] = STATE(793), - [sym_table] = STATE(1091), - [sym__table_row] = STATE(248), - [sym_table_header] = STATE(248), - [sym_table_separator] = STATE(248), - [sym_table_row] = STATE(248), - [sym_footnote] = STATE(1091), - [sym_footnote_marker_begin] = STATE(1141), - [sym_div] = STATE(1091), - [sym__div_marker_begin] = STATE(1023), - [sym_code_block] = STATE(1091), - [sym_raw_block] = STATE(1091), - [sym_thematic_break] = STATE(1091), - [sym_block_quote] = STATE(1091), - [sym__block_quote_prefix] = STATE(222), - [sym_link_reference_definition] = STATE(1091), - [sym_block_attribute] = STATE(1091), - [sym__paragraph] = STATE(1091), - [sym__paragraph_content] = STATE(738), - [sym__paragraph_inline_content] = STATE(799), - [sym__inline] = STATE(629), - [sym__symbol_fallback] = STATE(285), - [aux_sym__list_dash_repeat1] = STATE(354), - [aux_sym__list_plus_repeat1] = STATE(355), - [aux_sym__list_star_repeat1] = STATE(356), - [aux_sym__list_task_repeat1] = STATE(335), - [aux_sym__list_definition_repeat1] = STATE(479), - [aux_sym__list_decimal_period_repeat1] = STATE(480), - [aux_sym__list_decimal_paren_repeat1] = STATE(481), - [aux_sym__list_decimal_parens_repeat1] = STATE(482), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(483), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(484), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(485), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(486), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(487), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(488), - [aux_sym__list_lower_roman_period_repeat1] = STATE(489), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(490), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(491), - [aux_sym__list_upper_roman_period_repeat1] = STATE(492), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(493), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(494), - [aux_sym_table_repeat1] = STATE(248), - [aux_sym__block_quote_prefix_repeat1] = STATE(235), - [aux_sym__inline_repeat1] = STATE(285), - [anon_sym_LBRACK] = ACTIONS(364), + [sym__block_with_heading] = STATE(599), + [sym__block_element] = STATE(599), + [sym_heading] = STATE(599), + [sym_list] = STATE(599), + [sym__list_dash] = STATE(566), + [sym__list_item_dash] = STATE(553), + [sym__list_plus] = STATE(566), + [sym__list_item_plus] = STATE(554), + [sym__list_star] = STATE(566), + [sym__list_item_star] = STATE(556), + [sym__list_task] = STATE(566), + [sym__list_item_task] = STATE(558), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(566), + [sym__list_item_definition] = STATE(769), + [sym__list_decimal_period] = STATE(566), + [sym__list_item_decimal_period] = STATE(776), + [sym__list_decimal_paren] = STATE(566), + [sym__list_item_decimal_paren] = STATE(790), + [sym__list_decimal_parens] = STATE(566), + [sym__list_item_decimal_parens] = STATE(793), + [sym__list_lower_alpha_period] = STATE(566), + [sym__list_item_lower_alpha_period] = STATE(822), + [sym__list_lower_alpha_paren] = STATE(566), + [sym__list_item_lower_alpha_paren] = STATE(684), + [sym__list_lower_alpha_parens] = STATE(566), + [sym__list_item_lower_alpha_parens] = STATE(688), + [sym__list_upper_alpha_period] = STATE(566), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(566), + [sym__list_item_upper_alpha_paren] = STATE(705), + [sym__list_upper_alpha_parens] = STATE(566), + [sym__list_item_upper_alpha_parens] = STATE(711), + [sym__list_lower_roman_period] = STATE(566), + [sym__list_item_lower_roman_period] = STATE(712), + [sym__list_lower_roman_paren] = STATE(566), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(566), + [sym__list_item_lower_roman_parens] = STATE(728), + [sym__list_upper_roman_period] = STATE(566), + [sym__list_item_upper_roman_period] = STATE(734), + [sym__list_upper_roman_paren] = STATE(566), + [sym__list_item_upper_roman_paren] = STATE(830), + [sym__list_upper_roman_parens] = STATE(566), + [sym__list_item_upper_roman_parens] = STATE(725), + [sym_table] = STATE(599), + [sym__table_row] = STATE(236), + [sym_table_header] = STATE(236), + [sym_table_separator] = STATE(236), + [sym_table_row] = STATE(236), + [sym_footnote] = STATE(599), + [sym_footnote_marker_begin] = STATE(1143), + [sym_div] = STATE(599), + [sym__div_marker_begin] = STATE(1075), + [sym_code_block] = STATE(599), + [sym_raw_block] = STATE(599), + [sym_thematic_break] = STATE(599), + [sym_block_quote] = STATE(599), + [sym__block_quote_prefix] = STATE(224), + [sym_link_reference_definition] = STATE(599), + [sym_block_attribute] = STATE(599), + [sym__paragraph] = STATE(599), + [sym__paragraph_content] = STATE(779), + [sym__paragraph_inline_content] = STATE(778), + [sym__inline] = STATE(655), + [sym__symbol_fallback] = STATE(273), + [aux_sym__list_dash_repeat1] = STATE(342), + [aux_sym__list_plus_repeat1] = STATE(343), + [aux_sym__list_star_repeat1] = STATE(344), + [aux_sym__list_task_repeat1] = STATE(313), + [aux_sym__list_definition_repeat1] = STATE(460), + [aux_sym__list_decimal_period_repeat1] = STATE(461), + [aux_sym__list_decimal_paren_repeat1] = STATE(462), + [aux_sym__list_decimal_parens_repeat1] = STATE(463), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(464), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(465), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(466), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(467), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(468), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(469), + [aux_sym__list_lower_roman_period_repeat1] = STATE(470), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(471), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(472), + [aux_sym__list_upper_roman_period_repeat1] = STATE(473), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(474), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(475), + [aux_sym_table_repeat1] = STATE(236), + [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__inline_repeat1] = STATE(273), + [anon_sym_LBRACK] = ACTIONS(432), [anon_sym_LBRACK_CARET] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(366), + [anon_sym_LBRACE] = ACTIONS(434), [anon_sym_DOT] = ACTIONS(11), [aux_sym_identifier_token1] = ACTIONS(11), [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [anon_sym_POUND] = ACTIONS(11), [anon_sym_PERCENT] = ACTIONS(11), [sym__newline] = ACTIONS(468), - [sym__heading_begin] = ACTIONS(370), + [sym__heading_begin] = ACTIONS(438), [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(372), + [sym__code_block_begin] = ACTIONS(440), [sym_list_marker_dash] = ACTIONS(23), [sym_list_marker_star] = ACTIONS(25), [sym_list_marker_plus] = ACTIONS(27), @@ -12108,112 +11953,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(57), [sym_list_marker_lower_roman_parens] = ACTIONS(59), [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(374), - [sym__block_quote_continuation] = ACTIONS(376), - [sym__thematic_break_dash] = ACTIONS(378), - [sym__thematic_break_star] = ACTIONS(378), - [sym__table_header_begin] = ACTIONS(380), - [sym__table_separator_begin] = ACTIONS(382), - [sym__table_row_begin] = ACTIONS(384), + [sym__block_quote_begin] = ACTIONS(442), + [sym__block_quote_continuation] = ACTIONS(444), + [sym__thematic_break_dash] = ACTIONS(446), + [sym__thematic_break_star] = ACTIONS(446), + [sym__table_header_begin] = ACTIONS(448), + [sym__table_separator_begin] = ACTIONS(450), + [sym__table_row_begin] = ACTIONS(452), }, [57] = { - [sym__block_element] = STATE(452), - [sym_heading] = STATE(452), - [sym_list] = STATE(452), - [sym__list_dash] = STATE(834), - [sym__list_item_dash] = STATE(687), - [sym__list_plus] = STATE(834), - [sym__list_item_plus] = STATE(691), - [sym__list_star] = STATE(834), - [sym__list_item_star] = STATE(673), - [sym__list_task] = STATE(834), - [sym__list_item_task] = STATE(680), - [sym_list_marker_task] = STATE(48), - [sym__list_definition] = STATE(834), - [sym__list_item_definition] = STATE(804), - [sym__list_decimal_period] = STATE(834), - [sym__list_item_decimal_period] = STATE(837), - [sym__list_decimal_paren] = STATE(834), - [sym__list_item_decimal_paren] = STATE(703), - [sym__list_decimal_parens] = STATE(834), - [sym__list_item_decimal_parens] = STATE(715), - [sym__list_lower_alpha_period] = STATE(834), - [sym__list_item_lower_alpha_period] = STATE(739), - [sym__list_lower_alpha_paren] = STATE(834), - [sym__list_item_lower_alpha_paren] = STATE(754), - [sym__list_lower_alpha_parens] = STATE(834), - [sym__list_item_lower_alpha_parens] = STATE(755), - [sym__list_upper_alpha_period] = STATE(834), - [sym__list_item_upper_alpha_period] = STATE(758), - [sym__list_upper_alpha_paren] = STATE(834), - [sym__list_item_upper_alpha_paren] = STATE(759), - [sym__list_upper_alpha_parens] = STATE(834), - [sym__list_item_upper_alpha_parens] = STATE(766), - [sym__list_lower_roman_period] = STATE(834), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(834), - [sym__list_item_lower_roman_paren] = STATE(770), - [sym__list_lower_roman_parens] = STATE(834), - [sym__list_item_lower_roman_parens] = STATE(773), - [sym__list_upper_roman_period] = STATE(834), - [sym__list_item_upper_roman_period] = STATE(775), - [sym__list_upper_roman_paren] = STATE(834), - [sym__list_item_upper_roman_paren] = STATE(791), - [sym__list_upper_roman_parens] = STATE(834), - [sym__list_item_upper_roman_parens] = STATE(793), - [sym_table] = STATE(452), - [sym__table_row] = STATE(249), - [sym_table_header] = STATE(249), - [sym_table_separator] = STATE(249), - [sym_table_row] = STATE(249), - [sym_footnote] = STATE(452), - [sym_footnote_marker_begin] = STATE(1143), - [sym_div] = STATE(452), - [sym__div_marker_begin] = STATE(1042), - [sym_code_block] = STATE(452), - [sym_raw_block] = STATE(452), - [sym_thematic_break] = STATE(452), - [sym_block_quote] = STATE(452), - [sym__block_quote_content] = STATE(1137), + [sym__block_element] = STATE(423), + [sym_heading] = STATE(423), + [sym_list] = STATE(423), + [sym__list_dash] = STATE(786), + [sym__list_item_dash] = STATE(553), + [sym__list_plus] = STATE(786), + [sym__list_item_plus] = STATE(554), + [sym__list_star] = STATE(786), + [sym__list_item_star] = STATE(556), + [sym__list_task] = STATE(786), + [sym__list_item_task] = STATE(558), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(786), + [sym__list_item_definition] = STATE(769), + [sym__list_decimal_period] = STATE(786), + [sym__list_item_decimal_period] = STATE(776), + [sym__list_decimal_paren] = STATE(786), + [sym__list_item_decimal_paren] = STATE(790), + [sym__list_decimal_parens] = STATE(786), + [sym__list_item_decimal_parens] = STATE(793), + [sym__list_lower_alpha_period] = STATE(786), + [sym__list_item_lower_alpha_period] = STATE(822), + [sym__list_lower_alpha_paren] = STATE(786), + [sym__list_item_lower_alpha_paren] = STATE(684), + [sym__list_lower_alpha_parens] = STATE(786), + [sym__list_item_lower_alpha_parens] = STATE(688), + [sym__list_upper_alpha_period] = STATE(786), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(786), + [sym__list_item_upper_alpha_paren] = STATE(705), + [sym__list_upper_alpha_parens] = STATE(786), + [sym__list_item_upper_alpha_parens] = STATE(711), + [sym__list_lower_roman_period] = STATE(786), + [sym__list_item_lower_roman_period] = STATE(712), + [sym__list_lower_roman_paren] = STATE(786), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(786), + [sym__list_item_lower_roman_parens] = STATE(728), + [sym__list_upper_roman_period] = STATE(786), + [sym__list_item_upper_roman_period] = STATE(734), + [sym__list_upper_roman_paren] = STATE(786), + [sym__list_item_upper_roman_paren] = STATE(830), + [sym__list_upper_roman_parens] = STATE(786), + [sym__list_item_upper_roman_parens] = STATE(725), + [sym_table] = STATE(423), + [sym__table_row] = STATE(237), + [sym_table_header] = STATE(237), + [sym_table_separator] = STATE(237), + [sym_table_row] = STATE(237), + [sym_footnote] = STATE(423), + [sym_footnote_marker_begin] = STATE(1139), + [sym_div] = STATE(423), + [sym__div_marker_begin] = STATE(1038), + [sym_code_block] = STATE(423), + [sym_raw_block] = STATE(423), + [sym_thematic_break] = STATE(423), + [sym_block_quote] = STATE(423), + [sym__block_quote_content] = STATE(951), [sym__block_quote_prefix] = STATE(221), - [sym_link_reference_definition] = STATE(452), - [sym_block_attribute] = STATE(452), - [sym__paragraph] = STATE(452), - [sym__paragraph_content] = STATE(772), - [sym__paragraph_inline_content] = STATE(799), - [sym__inline] = STATE(629), - [sym__symbol_fallback] = STATE(285), - [aux_sym__list_dash_repeat1] = STATE(373), - [aux_sym__list_plus_repeat1] = STATE(374), - [aux_sym__list_star_repeat1] = STATE(375), - [aux_sym__list_task_repeat1] = STATE(325), - [aux_sym__list_definition_repeat1] = STATE(496), - [aux_sym__list_decimal_period_repeat1] = STATE(497), - [aux_sym__list_decimal_paren_repeat1] = STATE(498), - [aux_sym__list_decimal_parens_repeat1] = STATE(499), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(500), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(501), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(502), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(503), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(504), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(505), - [aux_sym__list_lower_roman_period_repeat1] = STATE(506), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(507), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(508), - [aux_sym__list_upper_roman_period_repeat1] = STATE(509), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(510), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(511), - [aux_sym_table_repeat1] = STATE(249), - [aux_sym__block_quote_prefix_repeat1] = STATE(235), - [aux_sym__inline_repeat1] = STATE(285), + [sym_link_reference_definition] = STATE(423), + [sym_block_attribute] = STATE(423), + [sym__paragraph] = STATE(423), + [sym__paragraph_content] = STATE(679), + [sym__paragraph_inline_content] = STATE(778), + [sym__inline] = STATE(655), + [sym__symbol_fallback] = STATE(273), + [aux_sym__list_dash_repeat1] = STATE(322), + [aux_sym__list_plus_repeat1] = STATE(323), + [aux_sym__list_star_repeat1] = STATE(316), + [aux_sym__list_task_repeat1] = STATE(305), + [aux_sym__list_definition_repeat1] = STATE(484), + [aux_sym__list_decimal_period_repeat1] = STATE(485), + [aux_sym__list_decimal_paren_repeat1] = STATE(545), + [aux_sym__list_decimal_parens_repeat1] = STATE(489), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(490), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(491), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(492), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(493), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(494), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(495), + [aux_sym__list_lower_roman_period_repeat1] = STATE(496), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(497), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(498), + [aux_sym__list_upper_roman_period_repeat1] = STATE(499), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(500), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(501), + [aux_sym_table_repeat1] = STATE(237), + [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__inline_repeat1] = STATE(273), [anon_sym_LBRACK] = ACTIONS(470), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(472), [anon_sym_DOT] = ACTIONS(11), [aux_sym_identifier_token1] = ACTIONS(11), [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [anon_sym_POUND] = ACTIONS(11), [anon_sym_PERCENT] = ACTIONS(11), [sym__heading_begin] = ACTIONS(474), [sym__div_begin] = ACTIONS(19), @@ -12247,107 +12090,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__table_row_begin] = ACTIONS(486), }, [58] = { - [sym__block_element] = STATE(583), - [sym_heading] = STATE(583), - [sym_list] = STATE(583), - [sym__list_dash] = STATE(600), - [sym__list_item_dash] = STATE(687), - [sym__list_plus] = STATE(600), - [sym__list_item_plus] = STATE(691), - [sym__list_star] = STATE(600), - [sym__list_item_star] = STATE(673), - [sym__list_task] = STATE(600), - [sym__list_item_task] = STATE(680), - [sym_list_marker_task] = STATE(48), - [sym__list_definition] = STATE(600), - [sym__list_item_definition] = STATE(804), - [sym__list_decimal_period] = STATE(600), - [sym__list_item_decimal_period] = STATE(837), - [sym__list_decimal_paren] = STATE(600), - [sym__list_item_decimal_paren] = STATE(703), - [sym__list_decimal_parens] = STATE(600), - [sym__list_item_decimal_parens] = STATE(715), - [sym__list_lower_alpha_period] = STATE(600), - [sym__list_item_lower_alpha_period] = STATE(739), - [sym__list_lower_alpha_paren] = STATE(600), - [sym__list_item_lower_alpha_paren] = STATE(754), - [sym__list_lower_alpha_parens] = STATE(600), - [sym__list_item_lower_alpha_parens] = STATE(755), - [sym__list_upper_alpha_period] = STATE(600), - [sym__list_item_upper_alpha_period] = STATE(758), - [sym__list_upper_alpha_paren] = STATE(600), - [sym__list_item_upper_alpha_paren] = STATE(759), - [sym__list_upper_alpha_parens] = STATE(600), - [sym__list_item_upper_alpha_parens] = STATE(766), - [sym__list_lower_roman_period] = STATE(600), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(600), - [sym__list_item_lower_roman_paren] = STATE(770), - [sym__list_lower_roman_parens] = STATE(600), - [sym__list_item_lower_roman_parens] = STATE(773), - [sym__list_upper_roman_period] = STATE(600), - [sym__list_item_upper_roman_period] = STATE(775), - [sym__list_upper_roman_paren] = STATE(600), - [sym__list_item_upper_roman_paren] = STATE(791), - [sym__list_upper_roman_parens] = STATE(600), - [sym__list_item_upper_roman_parens] = STATE(793), - [sym_table] = STATE(583), - [sym__table_row] = STATE(238), - [sym_table_header] = STATE(238), - [sym_table_separator] = STATE(238), - [sym_table_row] = STATE(238), - [sym_footnote] = STATE(583), - [sym_footnote_marker_begin] = STATE(1147), - [sym_div] = STATE(583), - [sym__div_marker_begin] = STATE(1079), - [sym_code_block] = STATE(583), - [sym_raw_block] = STATE(583), - [sym_thematic_break] = STATE(583), - [sym_block_quote] = STATE(583), - [sym__block_quote_prefix] = STATE(223), - [sym_link_reference_definition] = STATE(583), - [sym_block_attribute] = STATE(583), - [sym__paragraph] = STATE(583), - [sym__paragraph_content] = STATE(821), - [sym__paragraph_inline_content] = STATE(799), - [sym__inline] = STATE(629), - [sym__symbol_fallback] = STATE(285), - [aux_sym__list_dash_repeat1] = STATE(364), - [aux_sym__list_plus_repeat1] = STATE(365), - [aux_sym__list_star_repeat1] = STATE(383), - [aux_sym__list_task_repeat1] = STATE(328), - [aux_sym__list_definition_repeat1] = STATE(536), - [aux_sym__list_decimal_period_repeat1] = STATE(537), - [aux_sym__list_decimal_paren_repeat1] = STATE(538), - [aux_sym__list_decimal_parens_repeat1] = STATE(539), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(540), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(541), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(542), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(543), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(544), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(545), - [aux_sym__list_lower_roman_period_repeat1] = STATE(546), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(547), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(548), - [aux_sym__list_upper_roman_period_repeat1] = STATE(549), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(550), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(551), - [aux_sym_table_repeat1] = STATE(238), - [aux_sym__block_quote_prefix_repeat1] = STATE(235), - [aux_sym__inline_repeat1] = STATE(285), + [sym__block_element] = STATE(141), + [sym_heading] = STATE(141), + [sym_list] = STATE(141), + [sym__list_dash] = STATE(144), + [sym__list_item_dash] = STATE(553), + [sym__list_plus] = STATE(144), + [sym__list_item_plus] = STATE(554), + [sym__list_star] = STATE(144), + [sym__list_item_star] = STATE(556), + [sym__list_task] = STATE(144), + [sym__list_item_task] = STATE(558), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(144), + [sym__list_item_definition] = STATE(769), + [sym__list_decimal_period] = STATE(144), + [sym__list_item_decimal_period] = STATE(776), + [sym__list_decimal_paren] = STATE(144), + [sym__list_item_decimal_paren] = STATE(790), + [sym__list_decimal_parens] = STATE(144), + [sym__list_item_decimal_parens] = STATE(793), + [sym__list_lower_alpha_period] = STATE(144), + [sym__list_item_lower_alpha_period] = STATE(822), + [sym__list_lower_alpha_paren] = STATE(144), + [sym__list_item_lower_alpha_paren] = STATE(684), + [sym__list_lower_alpha_parens] = STATE(144), + [sym__list_item_lower_alpha_parens] = STATE(688), + [sym__list_upper_alpha_period] = STATE(144), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(144), + [sym__list_item_upper_alpha_paren] = STATE(705), + [sym__list_upper_alpha_parens] = STATE(144), + [sym__list_item_upper_alpha_parens] = STATE(711), + [sym__list_lower_roman_period] = STATE(144), + [sym__list_item_lower_roman_period] = STATE(712), + [sym__list_lower_roman_paren] = STATE(144), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(144), + [sym__list_item_lower_roman_parens] = STATE(728), + [sym__list_upper_roman_period] = STATE(144), + [sym__list_item_upper_roman_period] = STATE(734), + [sym__list_upper_roman_paren] = STATE(144), + [sym__list_item_upper_roman_paren] = STATE(830), + [sym__list_upper_roman_parens] = STATE(144), + [sym__list_item_upper_roman_parens] = STATE(725), + [sym_table] = STATE(141), + [sym__table_row] = STATE(66), + [sym_table_header] = STATE(66), + [sym_table_separator] = STATE(66), + [sym_table_row] = STATE(66), + [sym_footnote] = STATE(141), + [sym_footnote_marker_begin] = STATE(1141), + [sym_div] = STATE(141), + [sym__div_marker_begin] = STATE(1057), + [sym_code_block] = STATE(141), + [sym_raw_block] = STATE(141), + [sym_thematic_break] = STATE(141), + [sym_block_quote] = STATE(141), + [sym__block_quote_prefix] = STATE(225), + [sym_link_reference_definition] = STATE(141), + [sym_block_attribute] = STATE(141), + [sym__paragraph] = STATE(141), + [sym__paragraph_content] = STATE(750), + [sym__paragraph_inline_content] = STATE(778), + [sym__inline] = STATE(655), + [sym__symbol_fallback] = STATE(273), + [aux_sym__list_dash_repeat1] = STATE(334), + [aux_sym__list_plus_repeat1] = STATE(335), + [aux_sym__list_star_repeat1] = STATE(336), + [aux_sym__list_task_repeat1] = STATE(309), + [aux_sym__list_definition_repeat1] = STATE(425), + [aux_sym__list_decimal_period_repeat1] = STATE(426), + [aux_sym__list_decimal_paren_repeat1] = STATE(427), + [aux_sym__list_decimal_parens_repeat1] = STATE(428), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(429), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(430), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(431), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(432), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(433), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(434), + [aux_sym__list_lower_roman_period_repeat1] = STATE(435), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(436), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(437), + [aux_sym__list_upper_roman_period_repeat1] = STATE(438), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(439), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(440), + [aux_sym_table_repeat1] = STATE(66), + [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__inline_repeat1] = STATE(273), [anon_sym_LBRACK] = ACTIONS(458), [anon_sym_LBRACK_CARET] = ACTIONS(458), [anon_sym_LBRACE] = ACTIONS(458), [anon_sym_DOT] = ACTIONS(458), [aux_sym_identifier_token1] = ACTIONS(458), [aux_sym__inline_token1] = ACTIONS(458), - [anon_sym_LBRACE_DASH] = ACTIONS(458), - [anon_sym_POUND] = ACTIONS(458), [anon_sym_PERCENT] = ACTIONS(458), - [sym__newline] = ACTIONS(488), - [sym__heading_begin] = ACTIONS(438), + [sym__newline] = ACTIONS(462), + [sym__heading_begin] = ACTIONS(17), [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(440), + [sym__code_block_begin] = ACTIONS(189), [sym_list_marker_dash] = ACTIONS(460), [sym_list_marker_star] = ACTIONS(460), [sym_list_marker_plus] = ACTIONS(460), @@ -12368,112 +12209,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(57), [sym_list_marker_lower_roman_parens] = ACTIONS(59), [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(442), + [sym__block_quote_begin] = ACTIONS(191), [sym__block_quote_continuation] = ACTIONS(460), - [sym__thematic_break_dash] = ACTIONS(446), - [sym__thematic_break_star] = ACTIONS(446), + [sym__thematic_break_dash] = ACTIONS(193), + [sym__thematic_break_star] = ACTIONS(193), [sym__table_header_begin] = ACTIONS(460), [sym__table_separator_begin] = ACTIONS(460), [sym__table_row_begin] = ACTIONS(460), }, [59] = { - [sym__block_element] = STATE(452), - [sym_heading] = STATE(452), - [sym_list] = STATE(452), - [sym__list_dash] = STATE(834), - [sym__list_item_dash] = STATE(687), - [sym__list_plus] = STATE(834), - [sym__list_item_plus] = STATE(691), - [sym__list_star] = STATE(834), - [sym__list_item_star] = STATE(673), - [sym__list_task] = STATE(834), - [sym__list_item_task] = STATE(680), - [sym_list_marker_task] = STATE(48), - [sym__list_definition] = STATE(834), - [sym__list_item_definition] = STATE(804), - [sym__list_decimal_period] = STATE(834), - [sym__list_item_decimal_period] = STATE(837), - [sym__list_decimal_paren] = STATE(834), - [sym__list_item_decimal_paren] = STATE(703), - [sym__list_decimal_parens] = STATE(834), - [sym__list_item_decimal_parens] = STATE(715), - [sym__list_lower_alpha_period] = STATE(834), - [sym__list_item_lower_alpha_period] = STATE(739), - [sym__list_lower_alpha_paren] = STATE(834), - [sym__list_item_lower_alpha_paren] = STATE(754), - [sym__list_lower_alpha_parens] = STATE(834), - [sym__list_item_lower_alpha_parens] = STATE(755), - [sym__list_upper_alpha_period] = STATE(834), - [sym__list_item_upper_alpha_period] = STATE(758), - [sym__list_upper_alpha_paren] = STATE(834), - [sym__list_item_upper_alpha_paren] = STATE(759), - [sym__list_upper_alpha_parens] = STATE(834), - [sym__list_item_upper_alpha_parens] = STATE(766), - [sym__list_lower_roman_period] = STATE(834), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(834), - [sym__list_item_lower_roman_paren] = STATE(770), - [sym__list_lower_roman_parens] = STATE(834), - [sym__list_item_lower_roman_parens] = STATE(773), - [sym__list_upper_roman_period] = STATE(834), - [sym__list_item_upper_roman_period] = STATE(775), - [sym__list_upper_roman_paren] = STATE(834), - [sym__list_item_upper_roman_paren] = STATE(791), - [sym__list_upper_roman_parens] = STATE(834), - [sym__list_item_upper_roman_parens] = STATE(793), - [sym_table] = STATE(452), - [sym__table_row] = STATE(249), - [sym_table_header] = STATE(249), - [sym_table_separator] = STATE(249), - [sym_table_row] = STATE(249), - [sym_footnote] = STATE(452), - [sym_footnote_marker_begin] = STATE(1143), - [sym_div] = STATE(452), - [sym__div_marker_begin] = STATE(1042), - [sym_code_block] = STATE(452), - [sym_raw_block] = STATE(452), - [sym_thematic_break] = STATE(452), - [sym_block_quote] = STATE(452), - [sym__block_quote_content] = STATE(955), + [sym__block_element] = STATE(423), + [sym_heading] = STATE(423), + [sym_list] = STATE(423), + [sym__list_dash] = STATE(786), + [sym__list_item_dash] = STATE(553), + [sym__list_plus] = STATE(786), + [sym__list_item_plus] = STATE(554), + [sym__list_star] = STATE(786), + [sym__list_item_star] = STATE(556), + [sym__list_task] = STATE(786), + [sym__list_item_task] = STATE(558), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(786), + [sym__list_item_definition] = STATE(769), + [sym__list_decimal_period] = STATE(786), + [sym__list_item_decimal_period] = STATE(776), + [sym__list_decimal_paren] = STATE(786), + [sym__list_item_decimal_paren] = STATE(790), + [sym__list_decimal_parens] = STATE(786), + [sym__list_item_decimal_parens] = STATE(793), + [sym__list_lower_alpha_period] = STATE(786), + [sym__list_item_lower_alpha_period] = STATE(822), + [sym__list_lower_alpha_paren] = STATE(786), + [sym__list_item_lower_alpha_paren] = STATE(684), + [sym__list_lower_alpha_parens] = STATE(786), + [sym__list_item_lower_alpha_parens] = STATE(688), + [sym__list_upper_alpha_period] = STATE(786), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(786), + [sym__list_item_upper_alpha_paren] = STATE(705), + [sym__list_upper_alpha_parens] = STATE(786), + [sym__list_item_upper_alpha_parens] = STATE(711), + [sym__list_lower_roman_period] = STATE(786), + [sym__list_item_lower_roman_period] = STATE(712), + [sym__list_lower_roman_paren] = STATE(786), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(786), + [sym__list_item_lower_roman_parens] = STATE(728), + [sym__list_upper_roman_period] = STATE(786), + [sym__list_item_upper_roman_period] = STATE(734), + [sym__list_upper_roman_paren] = STATE(786), + [sym__list_item_upper_roman_paren] = STATE(830), + [sym__list_upper_roman_parens] = STATE(786), + [sym__list_item_upper_roman_parens] = STATE(725), + [sym_table] = STATE(423), + [sym__table_row] = STATE(237), + [sym_table_header] = STATE(237), + [sym_table_separator] = STATE(237), + [sym_table_row] = STATE(237), + [sym_footnote] = STATE(423), + [sym_footnote_marker_begin] = STATE(1139), + [sym_div] = STATE(423), + [sym__div_marker_begin] = STATE(1038), + [sym_code_block] = STATE(423), + [sym_raw_block] = STATE(423), + [sym_thematic_break] = STATE(423), + [sym_block_quote] = STATE(423), + [sym__block_quote_content] = STATE(900), [sym__block_quote_prefix] = STATE(221), - [sym_link_reference_definition] = STATE(452), - [sym_block_attribute] = STATE(452), - [sym__paragraph] = STATE(452), - [sym__paragraph_content] = STATE(772), - [sym__paragraph_inline_content] = STATE(799), - [sym__inline] = STATE(629), - [sym__symbol_fallback] = STATE(285), - [aux_sym__list_dash_repeat1] = STATE(373), - [aux_sym__list_plus_repeat1] = STATE(374), - [aux_sym__list_star_repeat1] = STATE(375), - [aux_sym__list_task_repeat1] = STATE(325), - [aux_sym__list_definition_repeat1] = STATE(496), - [aux_sym__list_decimal_period_repeat1] = STATE(497), - [aux_sym__list_decimal_paren_repeat1] = STATE(498), - [aux_sym__list_decimal_parens_repeat1] = STATE(499), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(500), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(501), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(502), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(503), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(504), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(505), - [aux_sym__list_lower_roman_period_repeat1] = STATE(506), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(507), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(508), - [aux_sym__list_upper_roman_period_repeat1] = STATE(509), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(510), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(511), - [aux_sym_table_repeat1] = STATE(249), - [aux_sym__block_quote_prefix_repeat1] = STATE(235), - [aux_sym__inline_repeat1] = STATE(285), + [sym_link_reference_definition] = STATE(423), + [sym_block_attribute] = STATE(423), + [sym__paragraph] = STATE(423), + [sym__paragraph_content] = STATE(679), + [sym__paragraph_inline_content] = STATE(778), + [sym__inline] = STATE(655), + [sym__symbol_fallback] = STATE(273), + [aux_sym__list_dash_repeat1] = STATE(322), + [aux_sym__list_plus_repeat1] = STATE(323), + [aux_sym__list_star_repeat1] = STATE(316), + [aux_sym__list_task_repeat1] = STATE(305), + [aux_sym__list_definition_repeat1] = STATE(484), + [aux_sym__list_decimal_period_repeat1] = STATE(485), + [aux_sym__list_decimal_paren_repeat1] = STATE(545), + [aux_sym__list_decimal_parens_repeat1] = STATE(489), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(490), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(491), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(492), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(493), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(494), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(495), + [aux_sym__list_lower_roman_period_repeat1] = STATE(496), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(497), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(498), + [aux_sym__list_upper_roman_period_repeat1] = STATE(499), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(500), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(501), + [aux_sym_table_repeat1] = STATE(237), + [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__inline_repeat1] = STATE(273), [anon_sym_LBRACK] = ACTIONS(470), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(472), [anon_sym_DOT] = ACTIONS(11), [aux_sym_identifier_token1] = ACTIONS(11), [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [anon_sym_POUND] = ACTIONS(11), [anon_sym_PERCENT] = ACTIONS(11), [sym__heading_begin] = ACTIONS(474), [sym__div_begin] = ACTIONS(19), @@ -12507,107 +12346,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__table_row_begin] = ACTIONS(486), }, [60] = { - [sym__block_element] = STATE(140), - [sym_heading] = STATE(140), - [sym_list] = STATE(140), - [sym__list_dash] = STATE(143), - [sym__list_item_dash] = STATE(687), - [sym__list_plus] = STATE(143), - [sym__list_item_plus] = STATE(691), - [sym__list_star] = STATE(143), - [sym__list_item_star] = STATE(673), - [sym__list_task] = STATE(143), - [sym__list_item_task] = STATE(680), - [sym_list_marker_task] = STATE(48), - [sym__list_definition] = STATE(143), - [sym__list_item_definition] = STATE(804), - [sym__list_decimal_period] = STATE(143), - [sym__list_item_decimal_period] = STATE(837), - [sym__list_decimal_paren] = STATE(143), - [sym__list_item_decimal_paren] = STATE(703), - [sym__list_decimal_parens] = STATE(143), - [sym__list_item_decimal_parens] = STATE(715), - [sym__list_lower_alpha_period] = STATE(143), - [sym__list_item_lower_alpha_period] = STATE(739), - [sym__list_lower_alpha_paren] = STATE(143), - [sym__list_item_lower_alpha_paren] = STATE(754), - [sym__list_lower_alpha_parens] = STATE(143), - [sym__list_item_lower_alpha_parens] = STATE(755), - [sym__list_upper_alpha_period] = STATE(143), - [sym__list_item_upper_alpha_period] = STATE(758), - [sym__list_upper_alpha_paren] = STATE(143), - [sym__list_item_upper_alpha_paren] = STATE(759), - [sym__list_upper_alpha_parens] = STATE(143), - [sym__list_item_upper_alpha_parens] = STATE(766), - [sym__list_lower_roman_period] = STATE(143), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(143), - [sym__list_item_lower_roman_paren] = STATE(770), - [sym__list_lower_roman_parens] = STATE(143), - [sym__list_item_lower_roman_parens] = STATE(773), - [sym__list_upper_roman_period] = STATE(143), - [sym__list_item_upper_roman_period] = STATE(775), - [sym__list_upper_roman_paren] = STATE(143), - [sym__list_item_upper_roman_paren] = STATE(791), - [sym__list_upper_roman_parens] = STATE(143), - [sym__list_item_upper_roman_parens] = STATE(793), - [sym_table] = STATE(140), - [sym__table_row] = STATE(66), - [sym_table_header] = STATE(66), - [sym_table_separator] = STATE(66), - [sym_table_row] = STATE(66), - [sym_footnote] = STATE(140), - [sym_footnote_marker_begin] = STATE(1145), - [sym_div] = STATE(140), - [sym__div_marker_begin] = STATE(1061), - [sym_code_block] = STATE(140), - [sym_raw_block] = STATE(140), - [sym_thematic_break] = STATE(140), - [sym_block_quote] = STATE(140), + [sym__block_element] = STATE(663), + [sym_heading] = STATE(663), + [sym_list] = STATE(663), + [sym__list_dash] = STATE(566), + [sym__list_item_dash] = STATE(553), + [sym__list_plus] = STATE(566), + [sym__list_item_plus] = STATE(554), + [sym__list_star] = STATE(566), + [sym__list_item_star] = STATE(556), + [sym__list_task] = STATE(566), + [sym__list_item_task] = STATE(558), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(566), + [sym__list_item_definition] = STATE(769), + [sym__list_decimal_period] = STATE(566), + [sym__list_item_decimal_period] = STATE(776), + [sym__list_decimal_paren] = STATE(566), + [sym__list_item_decimal_paren] = STATE(790), + [sym__list_decimal_parens] = STATE(566), + [sym__list_item_decimal_parens] = STATE(793), + [sym__list_lower_alpha_period] = STATE(566), + [sym__list_item_lower_alpha_period] = STATE(822), + [sym__list_lower_alpha_paren] = STATE(566), + [sym__list_item_lower_alpha_paren] = STATE(684), + [sym__list_lower_alpha_parens] = STATE(566), + [sym__list_item_lower_alpha_parens] = STATE(688), + [sym__list_upper_alpha_period] = STATE(566), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(566), + [sym__list_item_upper_alpha_paren] = STATE(705), + [sym__list_upper_alpha_parens] = STATE(566), + [sym__list_item_upper_alpha_parens] = STATE(711), + [sym__list_lower_roman_period] = STATE(566), + [sym__list_item_lower_roman_period] = STATE(712), + [sym__list_lower_roman_paren] = STATE(566), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(566), + [sym__list_item_lower_roman_parens] = STATE(728), + [sym__list_upper_roman_period] = STATE(566), + [sym__list_item_upper_roman_period] = STATE(734), + [sym__list_upper_roman_paren] = STATE(566), + [sym__list_item_upper_roman_paren] = STATE(830), + [sym__list_upper_roman_parens] = STATE(566), + [sym__list_item_upper_roman_parens] = STATE(725), + [sym_table] = STATE(663), + [sym__table_row] = STATE(236), + [sym_table_header] = STATE(236), + [sym_table_separator] = STATE(236), + [sym_table_row] = STATE(236), + [sym_footnote] = STATE(663), + [sym_footnote_marker_begin] = STATE(1143), + [sym_div] = STATE(663), + [sym__div_marker_begin] = STATE(1075), + [sym_code_block] = STATE(663), + [sym_raw_block] = STATE(663), + [sym_thematic_break] = STATE(663), + [sym_block_quote] = STATE(663), [sym__block_quote_prefix] = STATE(224), - [sym_link_reference_definition] = STATE(140), - [sym_block_attribute] = STATE(140), - [sym__paragraph] = STATE(140), - [sym__paragraph_content] = STATE(800), - [sym__paragraph_inline_content] = STATE(799), - [sym__inline] = STATE(629), - [sym__symbol_fallback] = STATE(285), - [aux_sym__list_dash_repeat1] = STATE(351), - [aux_sym__list_plus_repeat1] = STATE(350), - [aux_sym__list_star_repeat1] = STATE(353), - [aux_sym__list_task_repeat1] = STATE(339), - [aux_sym__list_definition_repeat1] = STATE(512), - [aux_sym__list_decimal_period_repeat1] = STATE(513), - [aux_sym__list_decimal_paren_repeat1] = STATE(514), - [aux_sym__list_decimal_parens_repeat1] = STATE(515), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(516), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(517), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(518), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(519), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(520), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(521), - [aux_sym__list_lower_roman_period_repeat1] = STATE(579), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(523), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(524), - [aux_sym__list_upper_roman_period_repeat1] = STATE(525), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(526), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(527), - [aux_sym_table_repeat1] = STATE(66), - [aux_sym__block_quote_prefix_repeat1] = STATE(235), - [aux_sym__inline_repeat1] = STATE(285), + [sym_link_reference_definition] = STATE(663), + [sym_block_attribute] = STATE(663), + [sym__paragraph] = STATE(663), + [sym__paragraph_content] = STATE(779), + [sym__paragraph_inline_content] = STATE(778), + [sym__inline] = STATE(655), + [sym__symbol_fallback] = STATE(273), + [aux_sym__list_dash_repeat1] = STATE(342), + [aux_sym__list_plus_repeat1] = STATE(343), + [aux_sym__list_star_repeat1] = STATE(344), + [aux_sym__list_task_repeat1] = STATE(313), + [aux_sym__list_definition_repeat1] = STATE(460), + [aux_sym__list_decimal_period_repeat1] = STATE(461), + [aux_sym__list_decimal_paren_repeat1] = STATE(462), + [aux_sym__list_decimal_parens_repeat1] = STATE(463), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(464), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(465), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(466), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(467), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(468), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(469), + [aux_sym__list_lower_roman_period_repeat1] = STATE(470), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(471), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(472), + [aux_sym__list_upper_roman_period_repeat1] = STATE(473), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(474), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(475), + [aux_sym_table_repeat1] = STATE(236), + [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__inline_repeat1] = STATE(273), [anon_sym_LBRACK] = ACTIONS(458), [anon_sym_LBRACK_CARET] = ACTIONS(458), [anon_sym_LBRACE] = ACTIONS(458), [anon_sym_DOT] = ACTIONS(458), [aux_sym_identifier_token1] = ACTIONS(458), [aux_sym__inline_token1] = ACTIONS(458), - [anon_sym_LBRACE_DASH] = ACTIONS(458), - [anon_sym_POUND] = ACTIONS(458), [anon_sym_PERCENT] = ACTIONS(458), - [sym__newline] = ACTIONS(462), - [sym__heading_begin] = ACTIONS(17), + [sym__newline] = ACTIONS(488), + [sym__heading_begin] = ACTIONS(438), [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(85), + [sym__code_block_begin] = ACTIONS(440), [sym_list_marker_dash] = ACTIONS(460), [sym_list_marker_star] = ACTIONS(460), [sym_list_marker_plus] = ACTIONS(460), @@ -12628,112 +12465,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(57), [sym_list_marker_lower_roman_parens] = ACTIONS(59), [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(87), + [sym__block_quote_begin] = ACTIONS(442), [sym__block_quote_continuation] = ACTIONS(460), - [sym__thematic_break_dash] = ACTIONS(89), - [sym__thematic_break_star] = ACTIONS(89), + [sym__thematic_break_dash] = ACTIONS(446), + [sym__thematic_break_star] = ACTIONS(446), [sym__table_header_begin] = ACTIONS(460), [sym__table_separator_begin] = ACTIONS(460), [sym__table_row_begin] = ACTIONS(460), }, [61] = { - [sym__block_element] = STATE(452), - [sym_heading] = STATE(452), - [sym_list] = STATE(452), - [sym__list_dash] = STATE(834), - [sym__list_item_dash] = STATE(687), - [sym__list_plus] = STATE(834), - [sym__list_item_plus] = STATE(691), - [sym__list_star] = STATE(834), - [sym__list_item_star] = STATE(673), - [sym__list_task] = STATE(834), - [sym__list_item_task] = STATE(680), - [sym_list_marker_task] = STATE(48), - [sym__list_definition] = STATE(834), - [sym__list_item_definition] = STATE(804), - [sym__list_decimal_period] = STATE(834), - [sym__list_item_decimal_period] = STATE(837), - [sym__list_decimal_paren] = STATE(834), - [sym__list_item_decimal_paren] = STATE(703), - [sym__list_decimal_parens] = STATE(834), - [sym__list_item_decimal_parens] = STATE(715), - [sym__list_lower_alpha_period] = STATE(834), - [sym__list_item_lower_alpha_period] = STATE(739), - [sym__list_lower_alpha_paren] = STATE(834), - [sym__list_item_lower_alpha_paren] = STATE(754), - [sym__list_lower_alpha_parens] = STATE(834), - [sym__list_item_lower_alpha_parens] = STATE(755), - [sym__list_upper_alpha_period] = STATE(834), - [sym__list_item_upper_alpha_period] = STATE(758), - [sym__list_upper_alpha_paren] = STATE(834), - [sym__list_item_upper_alpha_paren] = STATE(759), - [sym__list_upper_alpha_parens] = STATE(834), - [sym__list_item_upper_alpha_parens] = STATE(766), - [sym__list_lower_roman_period] = STATE(834), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(834), - [sym__list_item_lower_roman_paren] = STATE(770), - [sym__list_lower_roman_parens] = STATE(834), - [sym__list_item_lower_roman_parens] = STATE(773), - [sym__list_upper_roman_period] = STATE(834), - [sym__list_item_upper_roman_period] = STATE(775), - [sym__list_upper_roman_paren] = STATE(834), - [sym__list_item_upper_roman_paren] = STATE(791), - [sym__list_upper_roman_parens] = STATE(834), - [sym__list_item_upper_roman_parens] = STATE(793), - [sym_table] = STATE(452), - [sym__table_row] = STATE(249), - [sym_table_header] = STATE(249), - [sym_table_separator] = STATE(249), - [sym_table_row] = STATE(249), - [sym_footnote] = STATE(452), - [sym_footnote_marker_begin] = STATE(1143), - [sym_div] = STATE(452), - [sym__div_marker_begin] = STATE(1042), - [sym_code_block] = STATE(452), - [sym_raw_block] = STATE(452), - [sym_thematic_break] = STATE(452), - [sym_block_quote] = STATE(452), - [sym__block_quote_content] = STATE(1077), + [sym__block_element] = STATE(423), + [sym_heading] = STATE(423), + [sym_list] = STATE(423), + [sym__list_dash] = STATE(786), + [sym__list_item_dash] = STATE(553), + [sym__list_plus] = STATE(786), + [sym__list_item_plus] = STATE(554), + [sym__list_star] = STATE(786), + [sym__list_item_star] = STATE(556), + [sym__list_task] = STATE(786), + [sym__list_item_task] = STATE(558), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(786), + [sym__list_item_definition] = STATE(769), + [sym__list_decimal_period] = STATE(786), + [sym__list_item_decimal_period] = STATE(776), + [sym__list_decimal_paren] = STATE(786), + [sym__list_item_decimal_paren] = STATE(790), + [sym__list_decimal_parens] = STATE(786), + [sym__list_item_decimal_parens] = STATE(793), + [sym__list_lower_alpha_period] = STATE(786), + [sym__list_item_lower_alpha_period] = STATE(822), + [sym__list_lower_alpha_paren] = STATE(786), + [sym__list_item_lower_alpha_paren] = STATE(684), + [sym__list_lower_alpha_parens] = STATE(786), + [sym__list_item_lower_alpha_parens] = STATE(688), + [sym__list_upper_alpha_period] = STATE(786), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(786), + [sym__list_item_upper_alpha_paren] = STATE(705), + [sym__list_upper_alpha_parens] = STATE(786), + [sym__list_item_upper_alpha_parens] = STATE(711), + [sym__list_lower_roman_period] = STATE(786), + [sym__list_item_lower_roman_period] = STATE(712), + [sym__list_lower_roman_paren] = STATE(786), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(786), + [sym__list_item_lower_roman_parens] = STATE(728), + [sym__list_upper_roman_period] = STATE(786), + [sym__list_item_upper_roman_period] = STATE(734), + [sym__list_upper_roman_paren] = STATE(786), + [sym__list_item_upper_roman_paren] = STATE(830), + [sym__list_upper_roman_parens] = STATE(786), + [sym__list_item_upper_roman_parens] = STATE(725), + [sym_table] = STATE(423), + [sym__table_row] = STATE(237), + [sym_table_header] = STATE(237), + [sym_table_separator] = STATE(237), + [sym_table_row] = STATE(237), + [sym_footnote] = STATE(423), + [sym_footnote_marker_begin] = STATE(1139), + [sym_div] = STATE(423), + [sym__div_marker_begin] = STATE(1038), + [sym_code_block] = STATE(423), + [sym_raw_block] = STATE(423), + [sym_thematic_break] = STATE(423), + [sym_block_quote] = STATE(423), + [sym__block_quote_content] = STATE(928), [sym__block_quote_prefix] = STATE(221), - [sym_link_reference_definition] = STATE(452), - [sym_block_attribute] = STATE(452), - [sym__paragraph] = STATE(452), - [sym__paragraph_content] = STATE(772), - [sym__paragraph_inline_content] = STATE(799), - [sym__inline] = STATE(629), - [sym__symbol_fallback] = STATE(285), - [aux_sym__list_dash_repeat1] = STATE(373), - [aux_sym__list_plus_repeat1] = STATE(374), - [aux_sym__list_star_repeat1] = STATE(375), - [aux_sym__list_task_repeat1] = STATE(325), - [aux_sym__list_definition_repeat1] = STATE(496), - [aux_sym__list_decimal_period_repeat1] = STATE(497), - [aux_sym__list_decimal_paren_repeat1] = STATE(498), - [aux_sym__list_decimal_parens_repeat1] = STATE(499), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(500), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(501), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(502), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(503), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(504), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(505), - [aux_sym__list_lower_roman_period_repeat1] = STATE(506), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(507), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(508), - [aux_sym__list_upper_roman_period_repeat1] = STATE(509), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(510), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(511), - [aux_sym_table_repeat1] = STATE(249), - [aux_sym__block_quote_prefix_repeat1] = STATE(235), - [aux_sym__inline_repeat1] = STATE(285), + [sym_link_reference_definition] = STATE(423), + [sym_block_attribute] = STATE(423), + [sym__paragraph] = STATE(423), + [sym__paragraph_content] = STATE(679), + [sym__paragraph_inline_content] = STATE(778), + [sym__inline] = STATE(655), + [sym__symbol_fallback] = STATE(273), + [aux_sym__list_dash_repeat1] = STATE(322), + [aux_sym__list_plus_repeat1] = STATE(323), + [aux_sym__list_star_repeat1] = STATE(316), + [aux_sym__list_task_repeat1] = STATE(305), + [aux_sym__list_definition_repeat1] = STATE(484), + [aux_sym__list_decimal_period_repeat1] = STATE(485), + [aux_sym__list_decimal_paren_repeat1] = STATE(545), + [aux_sym__list_decimal_parens_repeat1] = STATE(489), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(490), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(491), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(492), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(493), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(494), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(495), + [aux_sym__list_lower_roman_period_repeat1] = STATE(496), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(497), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(498), + [aux_sym__list_upper_roman_period_repeat1] = STATE(499), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(500), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(501), + [aux_sym_table_repeat1] = STATE(237), + [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__inline_repeat1] = STATE(273), [anon_sym_LBRACK] = ACTIONS(470), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(472), [anon_sym_DOT] = ACTIONS(11), [aux_sym_identifier_token1] = ACTIONS(11), [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [anon_sym_POUND] = ACTIONS(11), [anon_sym_PERCENT] = ACTIONS(11), [sym__heading_begin] = ACTIONS(474), [sym__div_begin] = ACTIONS(19), @@ -12767,102 +12602,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__table_row_begin] = ACTIONS(486), }, [62] = { - [sym__block_element] = STATE(1116), - [sym_heading] = STATE(1116), - [sym_list] = STATE(1116), - [sym__list_dash] = STATE(974), - [sym__list_item_dash] = STATE(687), - [sym__list_plus] = STATE(974), - [sym__list_item_plus] = STATE(691), - [sym__list_star] = STATE(974), - [sym__list_item_star] = STATE(673), - [sym__list_task] = STATE(974), - [sym__list_item_task] = STATE(680), - [sym_list_marker_task] = STATE(48), - [sym__list_definition] = STATE(974), - [sym__list_item_definition] = STATE(804), - [sym__list_decimal_period] = STATE(974), - [sym__list_item_decimal_period] = STATE(837), - [sym__list_decimal_paren] = STATE(974), - [sym__list_item_decimal_paren] = STATE(703), - [sym__list_decimal_parens] = STATE(974), - [sym__list_item_decimal_parens] = STATE(715), - [sym__list_lower_alpha_period] = STATE(974), - [sym__list_item_lower_alpha_period] = STATE(739), - [sym__list_lower_alpha_paren] = STATE(974), - [sym__list_item_lower_alpha_paren] = STATE(754), - [sym__list_lower_alpha_parens] = STATE(974), - [sym__list_item_lower_alpha_parens] = STATE(755), - [sym__list_upper_alpha_period] = STATE(974), - [sym__list_item_upper_alpha_period] = STATE(758), - [sym__list_upper_alpha_paren] = STATE(974), - [sym__list_item_upper_alpha_paren] = STATE(759), - [sym__list_upper_alpha_parens] = STATE(974), - [sym__list_item_upper_alpha_parens] = STATE(766), - [sym__list_lower_roman_period] = STATE(974), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(974), - [sym__list_item_lower_roman_paren] = STATE(770), - [sym__list_lower_roman_parens] = STATE(974), - [sym__list_item_lower_roman_parens] = STATE(773), - [sym__list_upper_roman_period] = STATE(974), - [sym__list_item_upper_roman_period] = STATE(775), - [sym__list_upper_roman_paren] = STATE(974), - [sym__list_item_upper_roman_paren] = STATE(791), - [sym__list_upper_roman_parens] = STATE(974), - [sym__list_item_upper_roman_parens] = STATE(793), - [sym_table] = STATE(1116), - [sym__table_row] = STATE(248), - [sym_table_header] = STATE(248), - [sym_table_separator] = STATE(248), - [sym_table_row] = STATE(248), - [sym_footnote] = STATE(1116), - [sym_footnote_marker_begin] = STATE(1141), - [sym_div] = STATE(1116), - [sym__div_marker_begin] = STATE(1023), - [sym_code_block] = STATE(1116), - [sym_raw_block] = STATE(1116), - [sym_thematic_break] = STATE(1116), - [sym_block_quote] = STATE(1116), - [sym__block_quote_prefix] = STATE(222), - [sym_link_reference_definition] = STATE(1116), - [sym_block_attribute] = STATE(1116), - [sym__paragraph] = STATE(1116), - [sym__paragraph_content] = STATE(738), - [sym__paragraph_inline_content] = STATE(799), - [sym__inline] = STATE(629), - [sym__symbol_fallback] = STATE(285), - [aux_sym__list_dash_repeat1] = STATE(354), - [aux_sym__list_plus_repeat1] = STATE(355), - [aux_sym__list_star_repeat1] = STATE(356), - [aux_sym__list_task_repeat1] = STATE(335), - [aux_sym__list_definition_repeat1] = STATE(479), - [aux_sym__list_decimal_period_repeat1] = STATE(480), - [aux_sym__list_decimal_paren_repeat1] = STATE(481), - [aux_sym__list_decimal_parens_repeat1] = STATE(482), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(483), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(484), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(485), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(486), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(487), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(488), - [aux_sym__list_lower_roman_period_repeat1] = STATE(489), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(490), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(491), - [aux_sym__list_upper_roman_period_repeat1] = STATE(492), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(493), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(494), - [aux_sym_table_repeat1] = STATE(248), - [aux_sym__block_quote_prefix_repeat1] = STATE(235), - [aux_sym__inline_repeat1] = STATE(285), + [sym__block_element] = STATE(1001), + [sym_heading] = STATE(1001), + [sym_list] = STATE(1001), + [sym__list_dash] = STATE(998), + [sym__list_item_dash] = STATE(553), + [sym__list_plus] = STATE(998), + [sym__list_item_plus] = STATE(554), + [sym__list_star] = STATE(998), + [sym__list_item_star] = STATE(556), + [sym__list_task] = STATE(998), + [sym__list_item_task] = STATE(558), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(998), + [sym__list_item_definition] = STATE(769), + [sym__list_decimal_period] = STATE(998), + [sym__list_item_decimal_period] = STATE(776), + [sym__list_decimal_paren] = STATE(998), + [sym__list_item_decimal_paren] = STATE(790), + [sym__list_decimal_parens] = STATE(998), + [sym__list_item_decimal_parens] = STATE(793), + [sym__list_lower_alpha_period] = STATE(998), + [sym__list_item_lower_alpha_period] = STATE(822), + [sym__list_lower_alpha_paren] = STATE(998), + [sym__list_item_lower_alpha_paren] = STATE(684), + [sym__list_lower_alpha_parens] = STATE(998), + [sym__list_item_lower_alpha_parens] = STATE(688), + [sym__list_upper_alpha_period] = STATE(998), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(998), + [sym__list_item_upper_alpha_paren] = STATE(705), + [sym__list_upper_alpha_parens] = STATE(998), + [sym__list_item_upper_alpha_parens] = STATE(711), + [sym__list_lower_roman_period] = STATE(998), + [sym__list_item_lower_roman_period] = STATE(712), + [sym__list_lower_roman_paren] = STATE(998), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(998), + [sym__list_item_lower_roman_parens] = STATE(728), + [sym__list_upper_roman_period] = STATE(998), + [sym__list_item_upper_roman_period] = STATE(734), + [sym__list_upper_roman_paren] = STATE(998), + [sym__list_item_upper_roman_paren] = STATE(830), + [sym__list_upper_roman_parens] = STATE(998), + [sym__list_item_upper_roman_parens] = STATE(725), + [sym_table] = STATE(1001), + [sym__table_row] = STATE(241), + [sym_table_header] = STATE(241), + [sym_table_separator] = STATE(241), + [sym_table_row] = STATE(241), + [sym_footnote] = STATE(1001), + [sym_footnote_marker_begin] = STATE(1137), + [sym_div] = STATE(1001), + [sym__div_marker_begin] = STATE(1019), + [sym_code_block] = STATE(1001), + [sym_raw_block] = STATE(1001), + [sym_thematic_break] = STATE(1001), + [sym_block_quote] = STATE(1001), + [sym__block_quote_prefix] = STATE(223), + [sym_link_reference_definition] = STATE(1001), + [sym_block_attribute] = STATE(1001), + [sym__paragraph] = STATE(1001), + [sym__paragraph_content] = STATE(707), + [sym__paragraph_inline_content] = STATE(778), + [sym__inline] = STATE(655), + [sym__symbol_fallback] = STATE(273), + [aux_sym__list_dash_repeat1] = STATE(326), + [aux_sym__list_plus_repeat1] = STATE(329), + [aux_sym__list_star_repeat1] = STATE(330), + [aux_sym__list_task_repeat1] = STATE(298), + [aux_sym__list_definition_repeat1] = STATE(508), + [aux_sym__list_decimal_period_repeat1] = STATE(509), + [aux_sym__list_decimal_paren_repeat1] = STATE(510), + [aux_sym__list_decimal_parens_repeat1] = STATE(511), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(512), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(513), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(514), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(515), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(516), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(517), + [aux_sym__list_lower_roman_period_repeat1] = STATE(526), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(531), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(534), + [aux_sym__list_upper_roman_period_repeat1] = STATE(544), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(441), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(442), + [aux_sym_table_repeat1] = STATE(241), + [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__inline_repeat1] = STATE(273), [anon_sym_LBRACK] = ACTIONS(458), [anon_sym_LBRACK_CARET] = ACTIONS(458), [anon_sym_LBRACE] = ACTIONS(458), [anon_sym_DOT] = ACTIONS(458), [aux_sym_identifier_token1] = ACTIONS(458), [aux_sym__inline_token1] = ACTIONS(458), - [anon_sym_LBRACE_DASH] = ACTIONS(458), - [anon_sym_POUND] = ACTIONS(458), [anon_sym_PERCENT] = ACTIONS(458), [sym__newline] = ACTIONS(490), [sym__heading_begin] = ACTIONS(370), @@ -12897,103 +12730,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__table_row_begin] = ACTIONS(460), }, [63] = { - [sym__block_element] = STATE(452), - [sym_heading] = STATE(452), - [sym_list] = STATE(452), - [sym__list_dash] = STATE(834), - [sym__list_item_dash] = STATE(687), - [sym__list_plus] = STATE(834), - [sym__list_item_plus] = STATE(691), - [sym__list_star] = STATE(834), - [sym__list_item_star] = STATE(673), - [sym__list_task] = STATE(834), - [sym__list_item_task] = STATE(680), - [sym_list_marker_task] = STATE(48), - [sym__list_definition] = STATE(834), - [sym__list_item_definition] = STATE(804), - [sym__list_decimal_period] = STATE(834), - [sym__list_item_decimal_period] = STATE(837), - [sym__list_decimal_paren] = STATE(834), - [sym__list_item_decimal_paren] = STATE(703), - [sym__list_decimal_parens] = STATE(834), - [sym__list_item_decimal_parens] = STATE(715), - [sym__list_lower_alpha_period] = STATE(834), - [sym__list_item_lower_alpha_period] = STATE(739), - [sym__list_lower_alpha_paren] = STATE(834), - [sym__list_item_lower_alpha_paren] = STATE(754), - [sym__list_lower_alpha_parens] = STATE(834), - [sym__list_item_lower_alpha_parens] = STATE(755), - [sym__list_upper_alpha_period] = STATE(834), - [sym__list_item_upper_alpha_period] = STATE(758), - [sym__list_upper_alpha_paren] = STATE(834), - [sym__list_item_upper_alpha_paren] = STATE(759), - [sym__list_upper_alpha_parens] = STATE(834), - [sym__list_item_upper_alpha_parens] = STATE(766), - [sym__list_lower_roman_period] = STATE(834), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(834), - [sym__list_item_lower_roman_paren] = STATE(770), - [sym__list_lower_roman_parens] = STATE(834), - [sym__list_item_lower_roman_parens] = STATE(773), - [sym__list_upper_roman_period] = STATE(834), - [sym__list_item_upper_roman_period] = STATE(775), - [sym__list_upper_roman_paren] = STATE(834), - [sym__list_item_upper_roman_paren] = STATE(791), - [sym__list_upper_roman_parens] = STATE(834), - [sym__list_item_upper_roman_parens] = STATE(793), - [sym_table] = STATE(452), - [sym__table_row] = STATE(249), - [sym_table_header] = STATE(249), - [sym_table_separator] = STATE(249), - [sym_table_row] = STATE(249), - [sym_footnote] = STATE(452), - [sym_footnote_marker_begin] = STATE(1143), - [sym_div] = STATE(452), - [sym__div_marker_begin] = STATE(1042), - [sym_code_block] = STATE(452), - [sym_raw_block] = STATE(452), - [sym_thematic_break] = STATE(452), - [sym_block_quote] = STATE(452), - [sym__block_quote_content] = STATE(1118), + [sym__block_element] = STATE(423), + [sym_heading] = STATE(423), + [sym_list] = STATE(423), + [sym__list_dash] = STATE(786), + [sym__list_item_dash] = STATE(553), + [sym__list_plus] = STATE(786), + [sym__list_item_plus] = STATE(554), + [sym__list_star] = STATE(786), + [sym__list_item_star] = STATE(556), + [sym__list_task] = STATE(786), + [sym__list_item_task] = STATE(558), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(786), + [sym__list_item_definition] = STATE(769), + [sym__list_decimal_period] = STATE(786), + [sym__list_item_decimal_period] = STATE(776), + [sym__list_decimal_paren] = STATE(786), + [sym__list_item_decimal_paren] = STATE(790), + [sym__list_decimal_parens] = STATE(786), + [sym__list_item_decimal_parens] = STATE(793), + [sym__list_lower_alpha_period] = STATE(786), + [sym__list_item_lower_alpha_period] = STATE(822), + [sym__list_lower_alpha_paren] = STATE(786), + [sym__list_item_lower_alpha_paren] = STATE(684), + [sym__list_lower_alpha_parens] = STATE(786), + [sym__list_item_lower_alpha_parens] = STATE(688), + [sym__list_upper_alpha_period] = STATE(786), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(786), + [sym__list_item_upper_alpha_paren] = STATE(705), + [sym__list_upper_alpha_parens] = STATE(786), + [sym__list_item_upper_alpha_parens] = STATE(711), + [sym__list_lower_roman_period] = STATE(786), + [sym__list_item_lower_roman_period] = STATE(712), + [sym__list_lower_roman_paren] = STATE(786), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(786), + [sym__list_item_lower_roman_parens] = STATE(728), + [sym__list_upper_roman_period] = STATE(786), + [sym__list_item_upper_roman_period] = STATE(734), + [sym__list_upper_roman_paren] = STATE(786), + [sym__list_item_upper_roman_paren] = STATE(830), + [sym__list_upper_roman_parens] = STATE(786), + [sym__list_item_upper_roman_parens] = STATE(725), + [sym_table] = STATE(423), + [sym__table_row] = STATE(237), + [sym_table_header] = STATE(237), + [sym_table_separator] = STATE(237), + [sym_table_row] = STATE(237), + [sym_footnote] = STATE(423), + [sym_footnote_marker_begin] = STATE(1139), + [sym_div] = STATE(423), + [sym__div_marker_begin] = STATE(1038), + [sym_code_block] = STATE(423), + [sym_raw_block] = STATE(423), + [sym_thematic_break] = STATE(423), + [sym_block_quote] = STATE(423), + [sym__block_quote_content] = STATE(1017), [sym__block_quote_prefix] = STATE(221), - [sym_link_reference_definition] = STATE(452), - [sym_block_attribute] = STATE(452), - [sym__paragraph] = STATE(452), - [sym__paragraph_content] = STATE(772), - [sym__paragraph_inline_content] = STATE(799), - [sym__inline] = STATE(629), - [sym__symbol_fallback] = STATE(285), - [aux_sym__list_dash_repeat1] = STATE(373), - [aux_sym__list_plus_repeat1] = STATE(374), - [aux_sym__list_star_repeat1] = STATE(375), - [aux_sym__list_task_repeat1] = STATE(325), - [aux_sym__list_definition_repeat1] = STATE(496), - [aux_sym__list_decimal_period_repeat1] = STATE(497), - [aux_sym__list_decimal_paren_repeat1] = STATE(498), - [aux_sym__list_decimal_parens_repeat1] = STATE(499), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(500), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(501), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(502), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(503), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(504), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(505), - [aux_sym__list_lower_roman_period_repeat1] = STATE(506), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(507), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(508), - [aux_sym__list_upper_roman_period_repeat1] = STATE(509), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(510), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(511), - [aux_sym_table_repeat1] = STATE(249), - [aux_sym__block_quote_prefix_repeat1] = STATE(235), - [aux_sym__inline_repeat1] = STATE(285), + [sym_link_reference_definition] = STATE(423), + [sym_block_attribute] = STATE(423), + [sym__paragraph] = STATE(423), + [sym__paragraph_content] = STATE(679), + [sym__paragraph_inline_content] = STATE(778), + [sym__inline] = STATE(655), + [sym__symbol_fallback] = STATE(273), + [aux_sym__list_dash_repeat1] = STATE(322), + [aux_sym__list_plus_repeat1] = STATE(323), + [aux_sym__list_star_repeat1] = STATE(316), + [aux_sym__list_task_repeat1] = STATE(305), + [aux_sym__list_definition_repeat1] = STATE(484), + [aux_sym__list_decimal_period_repeat1] = STATE(485), + [aux_sym__list_decimal_paren_repeat1] = STATE(545), + [aux_sym__list_decimal_parens_repeat1] = STATE(489), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(490), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(491), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(492), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(493), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(494), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(495), + [aux_sym__list_lower_roman_period_repeat1] = STATE(496), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(497), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(498), + [aux_sym__list_upper_roman_period_repeat1] = STATE(499), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(500), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(501), + [aux_sym_table_repeat1] = STATE(237), + [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__inline_repeat1] = STATE(273), [anon_sym_LBRACK] = ACTIONS(470), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(472), [anon_sym_DOT] = ACTIONS(11), [aux_sym_identifier_token1] = ACTIONS(11), [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [anon_sym_POUND] = ACTIONS(11), [anon_sym_PERCENT] = ACTIONS(11), [sym__heading_begin] = ACTIONS(474), [sym__div_begin] = ACTIONS(19), @@ -13027,103 +12858,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__table_row_begin] = ACTIONS(486), }, [64] = { - [sym__block_element] = STATE(452), - [sym_heading] = STATE(452), - [sym_list] = STATE(452), - [sym__list_dash] = STATE(834), - [sym__list_item_dash] = STATE(687), - [sym__list_plus] = STATE(834), - [sym__list_item_plus] = STATE(691), - [sym__list_star] = STATE(834), - [sym__list_item_star] = STATE(673), - [sym__list_task] = STATE(834), - [sym__list_item_task] = STATE(680), - [sym_list_marker_task] = STATE(48), - [sym__list_definition] = STATE(834), - [sym__list_item_definition] = STATE(804), - [sym__list_decimal_period] = STATE(834), - [sym__list_item_decimal_period] = STATE(837), - [sym__list_decimal_paren] = STATE(834), - [sym__list_item_decimal_paren] = STATE(703), - [sym__list_decimal_parens] = STATE(834), - [sym__list_item_decimal_parens] = STATE(715), - [sym__list_lower_alpha_period] = STATE(834), - [sym__list_item_lower_alpha_period] = STATE(739), - [sym__list_lower_alpha_paren] = STATE(834), - [sym__list_item_lower_alpha_paren] = STATE(754), - [sym__list_lower_alpha_parens] = STATE(834), - [sym__list_item_lower_alpha_parens] = STATE(755), - [sym__list_upper_alpha_period] = STATE(834), - [sym__list_item_upper_alpha_period] = STATE(758), - [sym__list_upper_alpha_paren] = STATE(834), - [sym__list_item_upper_alpha_paren] = STATE(759), - [sym__list_upper_alpha_parens] = STATE(834), - [sym__list_item_upper_alpha_parens] = STATE(766), - [sym__list_lower_roman_period] = STATE(834), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(834), - [sym__list_item_lower_roman_paren] = STATE(770), - [sym__list_lower_roman_parens] = STATE(834), - [sym__list_item_lower_roman_parens] = STATE(773), - [sym__list_upper_roman_period] = STATE(834), - [sym__list_item_upper_roman_period] = STATE(775), - [sym__list_upper_roman_paren] = STATE(834), - [sym__list_item_upper_roman_paren] = STATE(791), - [sym__list_upper_roman_parens] = STATE(834), - [sym__list_item_upper_roman_parens] = STATE(793), - [sym_table] = STATE(452), - [sym__table_row] = STATE(249), - [sym_table_header] = STATE(249), - [sym_table_separator] = STATE(249), - [sym_table_row] = STATE(249), - [sym_footnote] = STATE(452), - [sym_footnote_marker_begin] = STATE(1143), - [sym_div] = STATE(452), - [sym__div_marker_begin] = STATE(1042), - [sym_code_block] = STATE(452), - [sym_raw_block] = STATE(452), - [sym_thematic_break] = STATE(452), - [sym_block_quote] = STATE(452), - [sym__block_quote_content] = STATE(963), + [sym__block_element] = STATE(423), + [sym_heading] = STATE(423), + [sym_list] = STATE(423), + [sym__list_dash] = STATE(786), + [sym__list_item_dash] = STATE(553), + [sym__list_plus] = STATE(786), + [sym__list_item_plus] = STATE(554), + [sym__list_star] = STATE(786), + [sym__list_item_star] = STATE(556), + [sym__list_task] = STATE(786), + [sym__list_item_task] = STATE(558), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(786), + [sym__list_item_definition] = STATE(769), + [sym__list_decimal_period] = STATE(786), + [sym__list_item_decimal_period] = STATE(776), + [sym__list_decimal_paren] = STATE(786), + [sym__list_item_decimal_paren] = STATE(790), + [sym__list_decimal_parens] = STATE(786), + [sym__list_item_decimal_parens] = STATE(793), + [sym__list_lower_alpha_period] = STATE(786), + [sym__list_item_lower_alpha_period] = STATE(822), + [sym__list_lower_alpha_paren] = STATE(786), + [sym__list_item_lower_alpha_paren] = STATE(684), + [sym__list_lower_alpha_parens] = STATE(786), + [sym__list_item_lower_alpha_parens] = STATE(688), + [sym__list_upper_alpha_period] = STATE(786), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(786), + [sym__list_item_upper_alpha_paren] = STATE(705), + [sym__list_upper_alpha_parens] = STATE(786), + [sym__list_item_upper_alpha_parens] = STATE(711), + [sym__list_lower_roman_period] = STATE(786), + [sym__list_item_lower_roman_period] = STATE(712), + [sym__list_lower_roman_paren] = STATE(786), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(786), + [sym__list_item_lower_roman_parens] = STATE(728), + [sym__list_upper_roman_period] = STATE(786), + [sym__list_item_upper_roman_period] = STATE(734), + [sym__list_upper_roman_paren] = STATE(786), + [sym__list_item_upper_roman_paren] = STATE(830), + [sym__list_upper_roman_parens] = STATE(786), + [sym__list_item_upper_roman_parens] = STATE(725), + [sym_table] = STATE(423), + [sym__table_row] = STATE(237), + [sym_table_header] = STATE(237), + [sym_table_separator] = STATE(237), + [sym_table_row] = STATE(237), + [sym_footnote] = STATE(423), + [sym_footnote_marker_begin] = STATE(1139), + [sym_div] = STATE(423), + [sym__div_marker_begin] = STATE(1038), + [sym_code_block] = STATE(423), + [sym_raw_block] = STATE(423), + [sym_thematic_break] = STATE(423), + [sym_block_quote] = STATE(423), + [sym__block_quote_content] = STATE(1150), [sym__block_quote_prefix] = STATE(221), - [sym_link_reference_definition] = STATE(452), - [sym_block_attribute] = STATE(452), - [sym__paragraph] = STATE(452), - [sym__paragraph_content] = STATE(772), - [sym__paragraph_inline_content] = STATE(799), - [sym__inline] = STATE(629), - [sym__symbol_fallback] = STATE(285), - [aux_sym__list_dash_repeat1] = STATE(373), - [aux_sym__list_plus_repeat1] = STATE(374), - [aux_sym__list_star_repeat1] = STATE(375), - [aux_sym__list_task_repeat1] = STATE(325), - [aux_sym__list_definition_repeat1] = STATE(496), - [aux_sym__list_decimal_period_repeat1] = STATE(497), - [aux_sym__list_decimal_paren_repeat1] = STATE(498), - [aux_sym__list_decimal_parens_repeat1] = STATE(499), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(500), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(501), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(502), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(503), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(504), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(505), - [aux_sym__list_lower_roman_period_repeat1] = STATE(506), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(507), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(508), - [aux_sym__list_upper_roman_period_repeat1] = STATE(509), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(510), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(511), - [aux_sym_table_repeat1] = STATE(249), - [aux_sym__block_quote_prefix_repeat1] = STATE(235), - [aux_sym__inline_repeat1] = STATE(285), + [sym_link_reference_definition] = STATE(423), + [sym_block_attribute] = STATE(423), + [sym__paragraph] = STATE(423), + [sym__paragraph_content] = STATE(679), + [sym__paragraph_inline_content] = STATE(778), + [sym__inline] = STATE(655), + [sym__symbol_fallback] = STATE(273), + [aux_sym__list_dash_repeat1] = STATE(322), + [aux_sym__list_plus_repeat1] = STATE(323), + [aux_sym__list_star_repeat1] = STATE(316), + [aux_sym__list_task_repeat1] = STATE(305), + [aux_sym__list_definition_repeat1] = STATE(484), + [aux_sym__list_decimal_period_repeat1] = STATE(485), + [aux_sym__list_decimal_paren_repeat1] = STATE(545), + [aux_sym__list_decimal_parens_repeat1] = STATE(489), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(490), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(491), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(492), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(493), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(494), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(495), + [aux_sym__list_lower_roman_period_repeat1] = STATE(496), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(497), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(498), + [aux_sym__list_upper_roman_period_repeat1] = STATE(499), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(500), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(501), + [aux_sym_table_repeat1] = STATE(237), + [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__inline_repeat1] = STATE(273), [anon_sym_LBRACK] = ACTIONS(470), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(472), [anon_sym_DOT] = ACTIONS(11), [aux_sym_identifier_token1] = ACTIONS(11), [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [anon_sym_POUND] = ACTIONS(11), [anon_sym_PERCENT] = ACTIONS(11), [sym__heading_begin] = ACTIONS(474), [sym__div_begin] = ACTIONS(19), @@ -13157,101 +12986,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__table_row_begin] = ACTIONS(486), }, [65] = { - [sym__block_element] = STATE(813), - [sym_list] = STATE(813), - [sym__list_dash] = STATE(834), - [sym__list_item_dash] = STATE(687), - [sym__list_plus] = STATE(834), - [sym__list_item_plus] = STATE(691), - [sym__list_star] = STATE(834), - [sym__list_item_star] = STATE(673), - [sym__list_task] = STATE(834), - [sym__list_item_task] = STATE(680), - [sym_list_marker_task] = STATE(48), - [sym__list_definition] = STATE(834), - [sym__list_item_definition] = STATE(804), - [sym__list_decimal_period] = STATE(834), - [sym__list_item_decimal_period] = STATE(837), - [sym__list_decimal_paren] = STATE(834), - [sym__list_item_decimal_paren] = STATE(703), - [sym__list_decimal_parens] = STATE(834), - [sym__list_item_decimal_parens] = STATE(715), - [sym__list_lower_alpha_period] = STATE(834), - [sym__list_item_lower_alpha_period] = STATE(739), - [sym__list_lower_alpha_paren] = STATE(834), - [sym__list_item_lower_alpha_paren] = STATE(754), - [sym__list_lower_alpha_parens] = STATE(834), - [sym__list_item_lower_alpha_parens] = STATE(755), - [sym__list_upper_alpha_period] = STATE(834), - [sym__list_item_upper_alpha_period] = STATE(758), - [sym__list_upper_alpha_paren] = STATE(834), - [sym__list_item_upper_alpha_paren] = STATE(759), - [sym__list_upper_alpha_parens] = STATE(834), - [sym__list_item_upper_alpha_parens] = STATE(766), - [sym__list_lower_roman_period] = STATE(834), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(834), - [sym__list_item_lower_roman_paren] = STATE(770), - [sym__list_lower_roman_parens] = STATE(834), - [sym__list_item_lower_roman_parens] = STATE(773), - [sym__list_upper_roman_period] = STATE(834), - [sym__list_item_upper_roman_period] = STATE(775), - [sym__list_upper_roman_paren] = STATE(834), - [sym__list_item_upper_roman_paren] = STATE(791), - [sym__list_upper_roman_parens] = STATE(834), - [sym__list_item_upper_roman_parens] = STATE(793), - [sym_table] = STATE(813), - [sym__table_row] = STATE(249), - [sym_table_header] = STATE(249), - [sym_table_separator] = STATE(249), - [sym_table_row] = STATE(249), - [sym_footnote] = STATE(813), - [sym_footnote_marker_begin] = STATE(1143), - [sym_div] = STATE(813), - [sym__div_marker_begin] = STATE(1042), - [sym_code_block] = STATE(813), - [sym_raw_block] = STATE(813), - [sym_thematic_break] = STATE(813), - [sym_block_quote] = STATE(813), + [sym__block_element] = STATE(792), + [sym_list] = STATE(792), + [sym__list_dash] = STATE(786), + [sym__list_item_dash] = STATE(553), + [sym__list_plus] = STATE(786), + [sym__list_item_plus] = STATE(554), + [sym__list_star] = STATE(786), + [sym__list_item_star] = STATE(556), + [sym__list_task] = STATE(786), + [sym__list_item_task] = STATE(558), + [sym_list_marker_task] = STATE(45), + [sym__list_definition] = STATE(786), + [sym__list_item_definition] = STATE(769), + [sym__list_decimal_period] = STATE(786), + [sym__list_item_decimal_period] = STATE(776), + [sym__list_decimal_paren] = STATE(786), + [sym__list_item_decimal_paren] = STATE(790), + [sym__list_decimal_parens] = STATE(786), + [sym__list_item_decimal_parens] = STATE(793), + [sym__list_lower_alpha_period] = STATE(786), + [sym__list_item_lower_alpha_period] = STATE(822), + [sym__list_lower_alpha_paren] = STATE(786), + [sym__list_item_lower_alpha_paren] = STATE(684), + [sym__list_lower_alpha_parens] = STATE(786), + [sym__list_item_lower_alpha_parens] = STATE(688), + [sym__list_upper_alpha_period] = STATE(786), + [sym__list_item_upper_alpha_period] = STATE(704), + [sym__list_upper_alpha_paren] = STATE(786), + [sym__list_item_upper_alpha_paren] = STATE(705), + [sym__list_upper_alpha_parens] = STATE(786), + [sym__list_item_upper_alpha_parens] = STATE(711), + [sym__list_lower_roman_period] = STATE(786), + [sym__list_item_lower_roman_period] = STATE(712), + [sym__list_lower_roman_paren] = STATE(786), + [sym__list_item_lower_roman_paren] = STATE(726), + [sym__list_lower_roman_parens] = STATE(786), + [sym__list_item_lower_roman_parens] = STATE(728), + [sym__list_upper_roman_period] = STATE(786), + [sym__list_item_upper_roman_period] = STATE(734), + [sym__list_upper_roman_paren] = STATE(786), + [sym__list_item_upper_roman_paren] = STATE(830), + [sym__list_upper_roman_parens] = STATE(786), + [sym__list_item_upper_roman_parens] = STATE(725), + [sym_table] = STATE(792), + [sym__table_row] = STATE(237), + [sym_table_header] = STATE(237), + [sym_table_separator] = STATE(237), + [sym_table_row] = STATE(237), + [sym_footnote] = STATE(792), + [sym_footnote_marker_begin] = STATE(1139), + [sym_div] = STATE(792), + [sym__div_marker_begin] = STATE(1038), + [sym_code_block] = STATE(792), + [sym_raw_block] = STATE(792), + [sym_thematic_break] = STATE(792), + [sym_block_quote] = STATE(792), [sym__block_quote_prefix] = STATE(221), - [sym_link_reference_definition] = STATE(813), - [sym_block_attribute] = STATE(813), - [sym__paragraph] = STATE(813), - [sym__paragraph_content] = STATE(772), - [sym__paragraph_inline_content] = STATE(799), - [sym__inline] = STATE(629), - [sym__symbol_fallback] = STATE(285), - [aux_sym__list_dash_repeat1] = STATE(373), - [aux_sym__list_plus_repeat1] = STATE(374), - [aux_sym__list_star_repeat1] = STATE(375), - [aux_sym__list_task_repeat1] = STATE(325), - [aux_sym__list_definition_repeat1] = STATE(496), - [aux_sym__list_decimal_period_repeat1] = STATE(497), - [aux_sym__list_decimal_paren_repeat1] = STATE(498), - [aux_sym__list_decimal_parens_repeat1] = STATE(499), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(500), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(501), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(502), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(503), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(504), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(505), - [aux_sym__list_lower_roman_period_repeat1] = STATE(506), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(507), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(508), - [aux_sym__list_upper_roman_period_repeat1] = STATE(509), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(510), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(511), - [aux_sym_table_repeat1] = STATE(249), - [aux_sym__block_quote_prefix_repeat1] = STATE(235), - [aux_sym__inline_repeat1] = STATE(285), + [sym_link_reference_definition] = STATE(792), + [sym_block_attribute] = STATE(792), + [sym__paragraph] = STATE(792), + [sym__paragraph_content] = STATE(679), + [sym__paragraph_inline_content] = STATE(778), + [sym__inline] = STATE(655), + [sym__symbol_fallback] = STATE(273), + [aux_sym__list_dash_repeat1] = STATE(322), + [aux_sym__list_plus_repeat1] = STATE(323), + [aux_sym__list_star_repeat1] = STATE(316), + [aux_sym__list_task_repeat1] = STATE(305), + [aux_sym__list_definition_repeat1] = STATE(484), + [aux_sym__list_decimal_period_repeat1] = STATE(485), + [aux_sym__list_decimal_paren_repeat1] = STATE(545), + [aux_sym__list_decimal_parens_repeat1] = STATE(489), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(490), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(491), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(492), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(493), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(494), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(495), + [aux_sym__list_lower_roman_period_repeat1] = STATE(496), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(497), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(498), + [aux_sym__list_upper_roman_period_repeat1] = STATE(499), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(500), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(501), + [aux_sym_table_repeat1] = STATE(237), + [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__inline_repeat1] = STATE(273), [anon_sym_LBRACK] = ACTIONS(470), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(472), [anon_sym_DOT] = ACTIONS(11), [aux_sym_identifier_token1] = ACTIONS(11), [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_LBRACE_DASH] = ACTIONS(11), - [anon_sym_POUND] = ACTIONS(11), [anon_sym_PERCENT] = ACTIONS(11), [sym__block_close] = ACTIONS(492), [sym__div_begin] = ACTIONS(19), @@ -13288,11 +13115,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { static const uint16_t ts_small_parse_table[] = { [0] = 12, - ACTIONS(91), 1, + ACTIONS(195), 1, sym__table_header_begin, - ACTIONS(93), 1, + ACTIONS(197), 1, sym__table_separator_begin, - ACTIONS(95), 1, + ACTIONS(199), 1, sym__table_row_begin, ACTIONS(501), 1, sym__newline, @@ -13300,11 +13127,11 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, ACTIONS(505), 1, sym__table_caption_begin, - STATE(167), 1, + STATE(169), 1, sym_table_caption, - STATE(435), 1, + STATE(362), 1, sym__block_quote_prefix, - STATE(454), 1, + STATE(419), 1, aux_sym__block_quote_prefix_repeat1, STATE(69), 5, sym__table_row, @@ -13312,15 +13139,13 @@ static const uint16_t ts_small_parse_table[] = { sym_table_separator, sym_table_row, aux_sym_table_repeat1, - ACTIONS(497), 9, + ACTIONS(497), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, ACTIONS(499), 27, sym__block_close, @@ -13350,7 +13175,7 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_begin, sym__thematic_break_dash, sym__thematic_break_star, - [75] = 12, + [73] = 12, ACTIONS(69), 1, sym__table_header_begin, ACTIONS(71), 1, @@ -13363,11 +13188,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, ACTIONS(509), 1, sym__table_caption_begin, - STATE(189), 1, + STATE(175), 1, sym_table_caption, - STATE(436), 1, + STATE(406), 1, sym__block_quote_prefix, - STATE(454), 1, + STATE(419), 1, aux_sym__block_quote_prefix_repeat1, STATE(68), 5, sym__table_row, @@ -13375,15 +13200,13 @@ static const uint16_t ts_small_parse_table[] = { sym_table_separator, sym_table_row, aux_sym_table_repeat1, - ACTIONS(497), 9, + ACTIONS(497), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, ACTIONS(499), 27, sym__heading_begin, @@ -13413,7 +13236,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, ts_builtin_sym_end, - [150] = 9, + [146] = 9, ACTIONS(515), 1, sym__block_quote_continuation, ACTIONS(518), 1, @@ -13422,9 +13245,9 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, ACTIONS(524), 1, sym__table_row_begin, - STATE(436), 1, + STATE(406), 1, sym__block_quote_prefix, - STATE(454), 1, + STATE(419), 1, aux_sym__block_quote_prefix_repeat1, STATE(68), 5, sym__table_row, @@ -13432,15 +13255,13 @@ static const uint16_t ts_small_parse_table[] = { sym_table_separator, sym_table_row, aux_sym_table_repeat1, - ACTIONS(513), 9, + ACTIONS(513), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, ACTIONS(511), 29, sym__newline, @@ -13472,7 +13293,7 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_star, sym__table_caption_begin, ts_builtin_sym_end, - [218] = 9, + [212] = 9, ACTIONS(515), 1, sym__block_quote_continuation, ACTIONS(527), 1, @@ -13481,9 +13302,9 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, ACTIONS(533), 1, sym__table_row_begin, - STATE(435), 1, + STATE(362), 1, sym__block_quote_prefix, - STATE(454), 1, + STATE(419), 1, aux_sym__block_quote_prefix_repeat1, STATE(69), 5, sym__table_row, @@ -13491,15 +13312,13 @@ static const uint16_t ts_small_parse_table[] = { sym_table_separator, sym_table_row, aux_sym_table_repeat1, - ACTIONS(513), 9, + ACTIONS(513), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, ACTIONS(511), 29, sym__block_close, @@ -13531,20 +13350,18 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__table_caption_begin, - [286] = 4, + [278] = 4, ACTIONS(509), 1, sym__table_caption_begin, - STATE(110), 1, + STATE(198), 1, sym_table_caption, - ACTIONS(538), 9, + ACTIONS(538), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, ACTIONS(536), 32, sym__newline, @@ -13579,20 +13396,18 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, ts_builtin_sym_end, - [338] = 4, + [328] = 4, ACTIONS(505), 1, sym__table_caption_begin, - STATE(172), 1, + STATE(174), 1, sym_table_caption, - ACTIONS(538), 9, + ACTIONS(538), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, ACTIONS(536), 32, sym__block_close, @@ -13627,16 +13442,14 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [390] = 2, - ACTIONS(542), 9, + [378] = 2, + ACTIONS(542), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, ACTIONS(540), 33, sym__newline, @@ -13672,16 +13485,14 @@ static const uint16_t ts_small_parse_table[] = { sym__table_row_begin, sym__table_caption_begin, ts_builtin_sym_end, - [437] = 2, - ACTIONS(542), 9, + [423] = 2, + ACTIONS(542), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, ACTIONS(540), 33, sym__block_close, @@ -13717,16 +13528,14 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, sym__table_caption_begin, - [484] = 2, - ACTIONS(544), 9, + [468] = 2, + ACTIONS(544), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, ACTIONS(546), 33, sym__block_close, @@ -13762,18 +13571,16 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, sym__table_caption_begin, - [531] = 3, + [513] = 3, ACTIONS(552), 1, - sym__eof_or_newline, - ACTIONS(548), 9, + sym__div_end, + ACTIONS(548), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, ACTIONS(550), 32, sym__block_close, @@ -13808,18 +13615,16 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [580] = 3, + [560] = 3, ACTIONS(558), 1, sym__div_end, - ACTIONS(554), 9, + ACTIONS(554), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, ACTIONS(556), 32, sym__block_close, @@ -13854,18 +13659,16 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [629] = 3, + [607] = 3, ACTIONS(564), 1, - sym__div_end, - ACTIONS(560), 9, + sym__code_block_end, + ACTIONS(560), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, ACTIONS(562), 32, sym__block_close, @@ -13900,18 +13703,16 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [678] = 3, + [654] = 3, ACTIONS(570), 1, sym__code_block_end, - ACTIONS(566), 9, + ACTIONS(566), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, ACTIONS(568), 32, sym__block_close, @@ -13946,18 +13747,16 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [727] = 3, + [701] = 3, ACTIONS(576), 1, sym__code_block_end, - ACTIONS(572), 9, + ACTIONS(572), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, ACTIONS(574), 32, sym__block_close, @@ -13992,20 +13791,16 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [776] = 3, - ACTIONS(582), 1, - sym__code_block_end, - ACTIONS(578), 9, + [748] = 2, + ACTIONS(578), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(580), 32, + ACTIONS(580), 33, sym__block_close, sym__newline, sym__heading_begin, @@ -14038,18 +13833,17 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [825] = 2, - ACTIONS(584), 9, + sym__table_caption_begin, + [793] = 2, + ACTIONS(582), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(586), 33, + ACTIONS(584), 33, sym__block_close, sym__newline, sym__heading_begin, @@ -14083,18 +13877,16 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, sym__table_caption_begin, - [872] = 2, - ACTIONS(588), 9, + [838] = 2, + ACTIONS(586), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(590), 33, + ACTIONS(588), 33, sym__block_close, sym__newline, sym__heading_begin, @@ -14128,18 +13920,18 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, sym__table_caption_begin, - [919] = 2, - ACTIONS(592), 9, + [883] = 3, + ACTIONS(594), 1, + sym__div_end, + ACTIONS(590), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(594), 33, + ACTIONS(592), 32, sym__block_close, sym__newline, sym__heading_begin, @@ -14172,19 +13964,16 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - sym__table_caption_begin, - [966] = 3, + [930] = 3, ACTIONS(600), 1, - sym__div_end, - ACTIONS(596), 9, + sym__code_block_end, + ACTIONS(596), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, ACTIONS(598), 32, sym__block_close, @@ -14219,18 +14008,16 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [1015] = 3, + [977] = 3, ACTIONS(606), 1, sym__code_block_end, - ACTIONS(602), 9, + ACTIONS(602), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, ACTIONS(604), 32, sym__block_close, @@ -14265,18 +14052,16 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [1064] = 3, + [1024] = 3, ACTIONS(612), 1, - sym__code_block_end, - ACTIONS(608), 9, + sym__eof_or_newline, + ACTIONS(608), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, ACTIONS(610), 32, sym__block_close, @@ -14311,18 +14096,16 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [1113] = 3, + [1071] = 3, ACTIONS(618), 1, sym__eof_or_newline, - ACTIONS(614), 9, + ACTIONS(614), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, ACTIONS(616), 32, sym__block_close, @@ -14357,20 +14140,18 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [1162] = 3, + [1118] = 3, ACTIONS(620), 1, sym__code_block_end, - ACTIONS(572), 9, + ACTIONS(566), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(574), 32, + ACTIONS(568), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -14403,20 +14184,16 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, ts_builtin_sym_end, - [1211] = 3, - ACTIONS(626), 1, - sym__div_end, - ACTIONS(624), 9, + [1165] = 2, + ACTIONS(578), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(622), 32, + ACTIONS(580), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -14448,19 +14225,20 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, + sym__table_caption_begin, ts_builtin_sym_end, - [1260] = 2, - ACTIONS(584), 9, + [1210] = 3, + ACTIONS(626), 1, + sym__div_end, + ACTIONS(624), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(586), 33, + ACTIONS(622), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -14492,18 +14270,15 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - sym__table_caption_begin, ts_builtin_sym_end, - [1307] = 2, - ACTIONS(630), 9, + [1257] = 2, + ACTIONS(630), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, ACTIONS(628), 33, sym__newline, @@ -14539,18 +14314,16 @@ static const uint16_t ts_small_parse_table[] = { sym__table_row_begin, sym__table_caption_begin, ts_builtin_sym_end, - [1354] = 3, + [1302] = 3, ACTIONS(636), 1, sym__code_block_end, - ACTIONS(634), 9, + ACTIONS(634), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, ACTIONS(632), 32, sym__newline, @@ -14585,18 +14358,16 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, ts_builtin_sym_end, - [1403] = 2, - ACTIONS(588), 9, + [1349] = 2, + ACTIONS(582), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(590), 33, + ACTIONS(584), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -14630,18 +14401,16 @@ static const uint16_t ts_small_parse_table[] = { sym__table_row_begin, sym__table_caption_begin, ts_builtin_sym_end, - [1450] = 2, - ACTIONS(592), 9, + [1394] = 2, + ACTIONS(586), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(594), 33, + ACTIONS(588), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -14675,20 +14444,18 @@ static const uint16_t ts_small_parse_table[] = { sym__table_row_begin, sym__table_caption_begin, ts_builtin_sym_end, - [1497] = 3, + [1439] = 3, ACTIONS(638), 1, sym__code_block_end, - ACTIONS(578), 9, + ACTIONS(572), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(580), 32, + ACTIONS(574), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -14721,18 +14488,18 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, ts_builtin_sym_end, - [1546] = 2, - ACTIONS(642), 9, + [1486] = 3, + ACTIONS(640), 1, + sym__div_end, + ACTIONS(590), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(640), 33, + ACTIONS(592), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -14764,22 +14531,17 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - sym__table_caption_begin, ts_builtin_sym_end, - [1593] = 3, - ACTIONS(644), 1, - sym__div_end, - ACTIONS(596), 9, + [1533] = 2, + ACTIONS(644), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(598), 32, + ACTIONS(642), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -14811,17 +14573,16 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, + sym__table_caption_begin, ts_builtin_sym_end, - [1642] = 2, - ACTIONS(630), 9, + [1578] = 2, + ACTIONS(630), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, ACTIONS(628), 33, sym__block_close, @@ -14857,16 +14618,14 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, sym__table_caption_begin, - [1689] = 2, - ACTIONS(544), 9, + [1623] = 2, + ACTIONS(544), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, ACTIONS(546), 33, sym__newline, @@ -14902,20 +14661,18 @@ static const uint16_t ts_small_parse_table[] = { sym__table_row_begin, sym__table_caption_begin, ts_builtin_sym_end, - [1736] = 3, + [1668] = 3, ACTIONS(646), 1, sym__div_end, - ACTIONS(554), 9, + ACTIONS(548), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(556), 32, + ACTIONS(550), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -14948,20 +14705,18 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, ts_builtin_sym_end, - [1785] = 3, + [1715] = 3, ACTIONS(648), 1, sym__div_end, - ACTIONS(560), 9, + ACTIONS(554), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(562), 32, + ACTIONS(556), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -14994,20 +14749,18 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, ts_builtin_sym_end, - [1834] = 3, + [1762] = 3, ACTIONS(650), 1, sym__code_block_end, - ACTIONS(602), 9, + ACTIONS(596), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(604), 32, + ACTIONS(598), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -15040,20 +14793,18 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, ts_builtin_sym_end, - [1883] = 3, + [1809] = 3, ACTIONS(652), 1, sym__code_block_end, - ACTIONS(608), 9, + ACTIONS(560), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(610), 32, + ACTIONS(562), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -15086,20 +14837,18 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, ts_builtin_sym_end, - [1932] = 3, + [1856] = 3, ACTIONS(654), 1, sym__code_block_end, - ACTIONS(566), 9, + ACTIONS(602), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(568), 32, + ACTIONS(604), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -15132,18 +14881,16 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, ts_builtin_sym_end, - [1981] = 3, + [1903] = 3, ACTIONS(656), 1, sym__div_end, - ACTIONS(624), 9, + ACTIONS(624), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, ACTIONS(622), 32, sym__block_close, @@ -15178,18 +14925,16 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [2030] = 3, + [1950] = 3, ACTIONS(658), 1, sym__code_block_end, - ACTIONS(634), 9, + ACTIONS(634), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, ACTIONS(632), 32, sym__block_close, @@ -15224,18 +14969,16 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [2079] = 2, - ACTIONS(642), 9, + [1997] = 2, + ACTIONS(644), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(640), 33, + ACTIONS(642), 33, sym__block_close, sym__newline, sym__heading_begin, @@ -15269,20 +15012,18 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, sym__table_caption_begin, - [2126] = 3, + [2042] = 3, ACTIONS(660), 1, sym__eof_or_newline, - ACTIONS(614), 9, + ACTIONS(608), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(616), 32, + ACTIONS(610), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -15315,16 +15056,14 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, ts_builtin_sym_end, - [2175] = 2, - ACTIONS(662), 9, + [2089] = 2, + ACTIONS(662), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, ACTIONS(664), 32, sym__block_close, @@ -15359,16 +15098,14 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [2221] = 2, - ACTIONS(668), 9, + [2133] = 2, + ACTIONS(668), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, ACTIONS(666), 32, sym__newline, @@ -15403,62 +15140,16 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, ts_builtin_sym_end, - [2267] = 2, - ACTIONS(670), 9, - anon_sym_LBRACK, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - ACTIONS(672), 32, - sym__block_close, - sym__newline, - sym__heading_begin, - sym__div_begin, - sym__code_block_begin, - sym_list_marker_dash, - sym_list_marker_star, - sym_list_marker_plus, - sym__list_marker_task_begin, - sym_list_marker_definition, - sym_list_marker_decimal_period, - sym_list_marker_lower_alpha_period, - sym_list_marker_upper_alpha_period, - sym_list_marker_lower_roman_period, - sym_list_marker_upper_roman_period, - sym_list_marker_decimal_paren, - sym_list_marker_lower_alpha_paren, - sym_list_marker_upper_alpha_paren, - sym_list_marker_lower_roman_paren, - sym_list_marker_upper_roman_paren, - sym_list_marker_decimal_parens, - sym_list_marker_lower_alpha_parens, - sym_list_marker_upper_alpha_parens, - sym_list_marker_lower_roman_parens, - sym_list_marker_upper_roman_parens, - sym__block_quote_begin, - sym__block_quote_continuation, - sym__thematic_break_dash, - sym__thematic_break_star, - sym__table_header_begin, - sym__table_separator_begin, - sym__table_row_begin, - [2313] = 2, - ACTIONS(662), 9, + [2177] = 2, + ACTIONS(672), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(664), 32, + ACTIONS(670), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -15491,16 +15182,14 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, ts_builtin_sym_end, - [2359] = 2, - ACTIONS(676), 9, + [2221] = 2, + ACTIONS(676), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, ACTIONS(674), 32, sym__newline, @@ -15535,16 +15224,14 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, ts_builtin_sym_end, - [2405] = 2, - ACTIONS(680), 9, + [2265] = 2, + ACTIONS(680), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, ACTIONS(678), 32, sym__newline, @@ -15579,16 +15266,14 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, ts_builtin_sym_end, - [2451] = 2, - ACTIONS(684), 9, + [2309] = 2, + ACTIONS(684), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, ACTIONS(682), 32, sym__newline, @@ -15623,16 +15308,14 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, ts_builtin_sym_end, - [2497] = 2, - ACTIONS(688), 9, + [2353] = 2, + ACTIONS(688), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, ACTIONS(686), 32, sym__newline, @@ -15667,16 +15350,14 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, ts_builtin_sym_end, - [2543] = 2, - ACTIONS(692), 9, + [2397] = 2, + ACTIONS(692), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, ACTIONS(690), 32, sym__newline, @@ -15711,16 +15392,14 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, ts_builtin_sym_end, - [2589] = 2, - ACTIONS(696), 9, + [2441] = 2, + ACTIONS(696), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, ACTIONS(694), 32, sym__newline, @@ -15755,16 +15434,14 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, ts_builtin_sym_end, - [2635] = 2, - ACTIONS(700), 9, + [2485] = 2, + ACTIONS(700), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, ACTIONS(698), 32, sym__newline, @@ -15799,16 +15476,14 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, ts_builtin_sym_end, - [2681] = 2, - ACTIONS(704), 9, + [2529] = 2, + ACTIONS(704), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, ACTIONS(702), 32, sym__newline, @@ -15843,16 +15518,14 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, ts_builtin_sym_end, - [2727] = 2, - ACTIONS(708), 9, + [2573] = 2, + ACTIONS(708), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, ACTIONS(706), 32, sym__newline, @@ -15887,16 +15560,14 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, ts_builtin_sym_end, - [2773] = 2, - ACTIONS(712), 9, + [2617] = 2, + ACTIONS(712), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, ACTIONS(710), 32, sym__newline, @@ -15931,16 +15602,14 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, ts_builtin_sym_end, - [2819] = 2, - ACTIONS(716), 9, + [2661] = 2, + ACTIONS(716), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, ACTIONS(714), 32, sym__newline, @@ -15975,16 +15644,14 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, ts_builtin_sym_end, - [2865] = 2, - ACTIONS(720), 9, + [2705] = 2, + ACTIONS(720), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, ACTIONS(718), 32, sym__newline, @@ -16019,16 +15686,14 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, ts_builtin_sym_end, - [2911] = 2, - ACTIONS(724), 9, + [2749] = 2, + ACTIONS(724), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, ACTIONS(722), 32, sym__newline, @@ -16063,16 +15728,14 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, ts_builtin_sym_end, - [2957] = 2, - ACTIONS(728), 9, + [2793] = 2, + ACTIONS(728), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, ACTIONS(726), 32, sym__newline, @@ -16107,16 +15770,14 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, ts_builtin_sym_end, - [3003] = 2, - ACTIONS(732), 9, + [2837] = 2, + ACTIONS(732), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, ACTIONS(730), 32, sym__newline, @@ -16151,16 +15812,14 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, ts_builtin_sym_end, - [3049] = 2, - ACTIONS(736), 9, + [2881] = 2, + ACTIONS(736), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, ACTIONS(734), 32, sym__newline, @@ -16195,16 +15854,14 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, ts_builtin_sym_end, - [3095] = 2, - ACTIONS(740), 9, + [2925] = 2, + ACTIONS(740), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, ACTIONS(738), 32, sym__newline, @@ -16239,16 +15896,14 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, ts_builtin_sym_end, - [3141] = 2, - ACTIONS(744), 9, + [2969] = 2, + ACTIONS(744), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, ACTIONS(742), 32, sym__newline, @@ -16283,16 +15938,14 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, ts_builtin_sym_end, - [3187] = 2, - ACTIONS(748), 9, + [3013] = 2, + ACTIONS(748), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, ACTIONS(746), 32, sym__newline, @@ -16327,16 +15980,14 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, ts_builtin_sym_end, - [3233] = 2, - ACTIONS(752), 9, + [3057] = 2, + ACTIONS(752), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, ACTIONS(750), 32, sym__newline, @@ -16371,16 +16022,14 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, ts_builtin_sym_end, - [3279] = 2, - ACTIONS(756), 9, + [3101] = 2, + ACTIONS(756), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, ACTIONS(754), 32, sym__newline, @@ -16415,16 +16064,14 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, ts_builtin_sym_end, - [3325] = 2, - ACTIONS(760), 9, + [3145] = 2, + ACTIONS(760), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, ACTIONS(758), 32, sym__newline, @@ -16459,16 +16106,14 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, ts_builtin_sym_end, - [3371] = 2, - ACTIONS(764), 9, + [3189] = 2, + ACTIONS(764), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, ACTIONS(762), 32, sym__newline, @@ -16503,16 +16148,14 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, ts_builtin_sym_end, - [3417] = 2, - ACTIONS(768), 9, + [3233] = 2, + ACTIONS(768), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, ACTIONS(766), 32, sym__newline, @@ -16547,19 +16190,16 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, ts_builtin_sym_end, - [3463] = 2, - ACTIONS(680), 9, + [3277] = 2, + ACTIONS(772), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(678), 32, - sym__block_close, + ACTIONS(770), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -16591,18 +16231,17 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [3509] = 2, - ACTIONS(772), 9, + ts_builtin_sym_end, + [3321] = 2, + ACTIONS(776), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(770), 32, + ACTIONS(774), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -16635,19 +16274,16 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, ts_builtin_sym_end, - [3555] = 2, - ACTIONS(676), 9, + [3365] = 2, + ACTIONS(780), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(674), 32, - sym__block_close, + ACTIONS(778), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -16679,18 +16315,17 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [3601] = 2, - ACTIONS(774), 9, + ts_builtin_sym_end, + [3409] = 2, + ACTIONS(782), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(776), 32, + ACTIONS(784), 32, sym__block_close, sym__newline, sym__heading_begin, @@ -16723,19 +16358,16 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [3647] = 2, - ACTIONS(778), 9, + [3453] = 2, + ACTIONS(788), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(780), 32, - sym__block_close, + ACTIONS(786), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -16767,18 +16399,17 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [3693] = 2, - ACTIONS(688), 9, + ts_builtin_sym_end, + [3497] = 2, + ACTIONS(790), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(686), 32, + ACTIONS(792), 32, sym__block_close, sym__newline, sym__heading_begin, @@ -16811,18 +16442,16 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [3739] = 2, - ACTIONS(684), 9, + [3541] = 2, + ACTIONS(794), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(682), 32, + ACTIONS(796), 32, sym__block_close, sym__newline, sym__heading_begin, @@ -16855,18 +16484,17 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [3785] = 2, - ACTIONS(784), 9, + [3585] = 2, + ACTIONS(798), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(782), 32, + ACTIONS(800), 32, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -16898,19 +16526,16 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - ts_builtin_sym_end, - [3831] = 2, - ACTIONS(692), 9, + [3629] = 2, + ACTIONS(802), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(690), 32, + ACTIONS(804), 32, sym__block_close, sym__newline, sym__heading_begin, @@ -16943,19 +16568,16 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [3877] = 2, - ACTIONS(708), 9, + [3673] = 2, + ACTIONS(808), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(706), 32, - sym__block_close, + ACTIONS(806), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -16987,19 +16609,17 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [3923] = 2, - ACTIONS(756), 9, + ts_builtin_sym_end, + [3717] = 2, + ACTIONS(812), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(754), 32, - sym__block_close, + ACTIONS(810), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -17031,18 +16651,17 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [3969] = 2, - ACTIONS(772), 9, + ts_builtin_sym_end, + [3761] = 2, + ACTIONS(814), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(770), 32, + ACTIONS(816), 32, sym__block_close, sym__newline, sym__heading_begin, @@ -17075,18 +16694,16 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [4015] = 2, - ACTIONS(784), 9, + [3805] = 2, + ACTIONS(818), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(782), 32, + ACTIONS(820), 32, sym__block_close, sym__newline, sym__heading_begin, @@ -17119,18 +16736,16 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [4061] = 2, - ACTIONS(786), 9, + [3849] = 2, + ACTIONS(822), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(788), 32, + ACTIONS(824), 32, sym__block_close, sym__newline, sym__heading_begin, @@ -17163,18 +16778,16 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [4107] = 2, - ACTIONS(790), 9, + [3893] = 2, + ACTIONS(826), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(792), 32, + ACTIONS(828), 32, sym__block_close, sym__newline, sym__heading_begin, @@ -17207,18 +16820,16 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [4153] = 2, - ACTIONS(794), 9, + [3937] = 2, + ACTIONS(668), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(796), 32, + ACTIONS(666), 32, sym__block_close, sym__newline, sym__heading_begin, @@ -17251,18 +16862,16 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [4199] = 2, - ACTIONS(798), 9, + [3981] = 2, + ACTIONS(672), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(800), 32, + ACTIONS(670), 32, sym__block_close, sym__newline, sym__heading_begin, @@ -17295,18 +16904,16 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [4245] = 2, - ACTIONS(802), 9, + [4025] = 2, + ACTIONS(676), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(804), 32, + ACTIONS(674), 32, sym__block_close, sym__newline, sym__heading_begin, @@ -17339,18 +16946,16 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [4291] = 2, - ACTIONS(806), 9, + [4069] = 2, + ACTIONS(680), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(808), 32, + ACTIONS(678), 32, sym__block_close, sym__newline, sym__heading_begin, @@ -17383,18 +16988,16 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [4337] = 2, - ACTIONS(810), 9, + [4113] = 2, + ACTIONS(684), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(812), 32, + ACTIONS(682), 32, sym__block_close, sym__newline, sym__heading_begin, @@ -17427,18 +17030,16 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [4383] = 2, - ACTIONS(814), 9, + [4157] = 2, + ACTIONS(692), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(816), 32, + ACTIONS(690), 32, sym__block_close, sym__newline, sym__heading_begin, @@ -17471,18 +17072,16 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [4429] = 2, - ACTIONS(818), 9, + [4201] = 2, + ACTIONS(704), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(820), 32, + ACTIONS(702), 32, sym__block_close, sym__newline, sym__heading_begin, @@ -17515,18 +17114,16 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [4475] = 2, - ACTIONS(822), 9, + [4245] = 2, + ACTIONS(708), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(824), 32, + ACTIONS(706), 32, sym__block_close, sym__newline, sym__heading_begin, @@ -17559,18 +17156,16 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [4521] = 2, - ACTIONS(826), 9, + [4289] = 2, + ACTIONS(752), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(828), 32, + ACTIONS(750), 32, sym__block_close, sym__newline, sym__heading_begin, @@ -17603,18 +17198,16 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [4567] = 2, - ACTIONS(830), 9, + [4333] = 2, + ACTIONS(760), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(832), 32, + ACTIONS(758), 32, sym__block_close, sym__newline, sym__heading_begin, @@ -17647,18 +17240,16 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [4613] = 2, - ACTIONS(834), 9, + [4377] = 2, + ACTIONS(772), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(836), 32, + ACTIONS(770), 32, sym__block_close, sym__newline, sym__heading_begin, @@ -17691,18 +17282,16 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [4659] = 2, - ACTIONS(838), 9, + [4421] = 2, + ACTIONS(780), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(840), 32, + ACTIONS(778), 32, sym__block_close, sym__newline, sym__heading_begin, @@ -17735,18 +17324,16 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [4705] = 2, - ACTIONS(842), 9, + [4465] = 2, + ACTIONS(788), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(844), 32, + ACTIONS(786), 32, sym__block_close, sym__newline, sym__heading_begin, @@ -17779,18 +17366,16 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [4751] = 2, - ACTIONS(846), 9, + [4509] = 2, + ACTIONS(808), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(848), 32, + ACTIONS(806), 32, sym__block_close, sym__newline, sym__heading_begin, @@ -17823,18 +17408,17 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [4797] = 2, - ACTIONS(786), 9, + [4553] = 2, + ACTIONS(812), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(788), 32, + ACTIONS(810), 32, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -17866,19 +17450,16 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - ts_builtin_sym_end, - [4843] = 2, - ACTIONS(538), 9, + [4597] = 2, + ACTIONS(830), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(536), 32, + ACTIONS(832), 32, sym__block_close, sym__newline, sym__heading_begin, @@ -17911,18 +17492,17 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [4889] = 2, - ACTIONS(790), 9, + [4641] = 2, + ACTIONS(834), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(792), 32, + ACTIONS(836), 32, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -17954,20 +17534,16 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - ts_builtin_sym_end, - [4935] = 2, - ACTIONS(850), 9, + [4685] = 2, + ACTIONS(830), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(852), 32, - sym__block_close, + ACTIONS(832), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -17999,18 +17575,17 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [4981] = 2, - ACTIONS(854), 9, + ts_builtin_sym_end, + [4729] = 2, + ACTIONS(538), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(856), 32, + ACTIONS(536), 32, sym__block_close, sym__newline, sym__heading_begin, @@ -18043,18 +17618,16 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [5027] = 2, - ACTIONS(794), 9, + [4773] = 2, + ACTIONS(834), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(796), 32, + ACTIONS(836), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -18087,18 +17660,16 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, ts_builtin_sym_end, - [5073] = 2, - ACTIONS(668), 9, + [4817] = 2, + ACTIONS(838), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(666), 32, + ACTIONS(840), 32, sym__block_close, sym__newline, sym__heading_begin, @@ -18131,18 +17702,17 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [5119] = 2, - ACTIONS(798), 9, + [4861] = 2, + ACTIONS(842), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(800), 32, + ACTIONS(844), 32, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -18174,19 +17744,16 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - ts_builtin_sym_end, - [5165] = 2, - ACTIONS(802), 9, + [4905] = 2, + ACTIONS(662), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(804), 32, + ACTIONS(664), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -18219,18 +17786,17 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, ts_builtin_sym_end, - [5211] = 2, - ACTIONS(806), 9, + [4949] = 2, + ACTIONS(846), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(808), 32, + ACTIONS(848), 32, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -18262,19 +17828,16 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - ts_builtin_sym_end, - [5257] = 2, - ACTIONS(810), 9, + [4993] = 2, + ACTIONS(538), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(812), 32, + ACTIONS(536), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -18307,18 +17870,16 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, ts_builtin_sym_end, - [5303] = 2, - ACTIONS(814), 9, + [5037] = 2, + ACTIONS(826), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(816), 32, + ACTIONS(828), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -18351,18 +17912,17 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, ts_builtin_sym_end, - [5349] = 2, - ACTIONS(818), 9, + [5081] = 2, + ACTIONS(850), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(820), 32, + ACTIONS(852), 32, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -18394,19 +17954,16 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - ts_builtin_sym_end, - [5395] = 2, - ACTIONS(822), 9, + [5125] = 2, + ACTIONS(838), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(824), 32, + ACTIONS(840), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -18439,19 +17996,16 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, ts_builtin_sym_end, - [5441] = 2, - ACTIONS(858), 9, + [5169] = 2, + ACTIONS(842), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(860), 32, - sym__block_close, + ACTIONS(844), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -18483,18 +18037,18 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [5487] = 2, - ACTIONS(826), 9, + ts_builtin_sym_end, + [5213] = 2, + ACTIONS(688), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(828), 32, + ACTIONS(686), 32, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -18526,19 +18080,16 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - ts_builtin_sym_end, - [5533] = 2, - ACTIONS(830), 9, + [5257] = 2, + ACTIONS(794), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(832), 32, + ACTIONS(796), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -18571,18 +18122,17 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, ts_builtin_sym_end, - [5579] = 2, - ACTIONS(834), 9, + [5301] = 2, + ACTIONS(700), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(836), 32, + ACTIONS(698), 32, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -18614,19 +18164,17 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - ts_builtin_sym_end, - [5625] = 2, - ACTIONS(838), 9, + [5345] = 2, + ACTIONS(854), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(840), 32, + ACTIONS(856), 32, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -18658,19 +18206,17 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - ts_builtin_sym_end, - [5671] = 2, - ACTIONS(842), 9, + [5389] = 2, + ACTIONS(712), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(844), 32, + ACTIONS(710), 32, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -18702,19 +18248,17 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - ts_builtin_sym_end, - [5717] = 2, - ACTIONS(846), 9, + [5433] = 2, + ACTIONS(716), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(848), 32, + ACTIONS(714), 32, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -18746,19 +18290,16 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - ts_builtin_sym_end, - [5763] = 2, - ACTIONS(696), 9, + [5477] = 2, + ACTIONS(720), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(694), 32, + ACTIONS(718), 32, sym__block_close, sym__newline, sym__heading_begin, @@ -18791,18 +18332,16 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [5809] = 2, - ACTIONS(704), 9, + [5521] = 2, + ACTIONS(728), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(702), 32, + ACTIONS(726), 32, sym__block_close, sym__newline, sym__heading_begin, @@ -18835,18 +18374,17 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [5855] = 2, - ACTIONS(538), 9, + [5565] = 2, + ACTIONS(732), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(536), 32, + ACTIONS(730), 32, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -18878,19 +18416,16 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - ts_builtin_sym_end, - [5901] = 2, - ACTIONS(712), 9, + [5609] = 2, + ACTIONS(736), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(710), 32, + ACTIONS(734), 32, sym__block_close, sym__newline, sym__heading_begin, @@ -18923,18 +18458,16 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [5947] = 2, - ACTIONS(716), 9, + [5653] = 2, + ACTIONS(740), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(714), 32, + ACTIONS(738), 32, sym__block_close, sym__newline, sym__heading_begin, @@ -18967,18 +18500,16 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [5993] = 2, - ACTIONS(720), 9, + [5697] = 2, + ACTIONS(744), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(718), 32, + ACTIONS(742), 32, sym__block_close, sym__newline, sym__heading_begin, @@ -19011,18 +18542,16 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [6039] = 2, - ACTIONS(728), 9, + [5741] = 2, + ACTIONS(748), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(726), 32, + ACTIONS(746), 32, sym__block_close, sym__newline, sym__heading_begin, @@ -19055,18 +18584,16 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [6085] = 2, - ACTIONS(732), 9, + [5785] = 2, + ACTIONS(756), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(730), 32, + ACTIONS(754), 32, sym__block_close, sym__newline, sym__heading_begin, @@ -19099,18 +18626,16 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [6131] = 2, - ACTIONS(736), 9, + [5829] = 2, + ACTIONS(764), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(734), 32, + ACTIONS(762), 32, sym__block_close, sym__newline, sym__heading_begin, @@ -19143,18 +18668,16 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [6177] = 2, - ACTIONS(740), 9, + [5873] = 2, + ACTIONS(768), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(738), 32, + ACTIONS(766), 32, sym__block_close, sym__newline, sym__heading_begin, @@ -19187,18 +18710,16 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [6223] = 2, - ACTIONS(744), 9, + [5917] = 2, + ACTIONS(776), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(742), 32, + ACTIONS(774), 32, sym__block_close, sym__newline, sym__heading_begin, @@ -19231,19 +18752,16 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [6269] = 2, - ACTIONS(748), 9, + [5961] = 2, + ACTIONS(782), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(746), 32, - sym__block_close, + ACTIONS(784), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -19275,19 +18793,17 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [6315] = 2, - ACTIONS(752), 9, + ts_builtin_sym_end, + [6005] = 2, + ACTIONS(846), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(750), 32, - sym__block_close, + ACTIONS(848), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -19319,18 +18835,17 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [6361] = 2, - ACTIONS(760), 9, + ts_builtin_sym_end, + [6049] = 2, + ACTIONS(858), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(758), 32, + ACTIONS(860), 32, sym__block_close, sym__newline, sym__heading_begin, @@ -19363,19 +18878,16 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [6407] = 2, - ACTIONS(764), 9, + [6093] = 2, + ACTIONS(802), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(762), 32, - sym__block_close, + ACTIONS(804), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -19407,19 +18919,17 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [6453] = 2, - ACTIONS(768), 9, + ts_builtin_sym_end, + [6137] = 2, + ACTIONS(798), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(766), 32, - sym__block_close, + ACTIONS(800), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -19451,18 +18961,17 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [6499] = 2, - ACTIONS(850), 9, + ts_builtin_sym_end, + [6181] = 2, + ACTIONS(864), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(852), 32, + ACTIONS(862), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -19495,18 +19004,16 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, ts_builtin_sym_end, - [6545] = 2, - ACTIONS(854), 9, + [6225] = 2, + ACTIONS(814), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(856), 32, + ACTIONS(816), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -19539,18 +19046,16 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, ts_builtin_sym_end, - [6591] = 2, - ACTIONS(778), 9, + [6269] = 2, + ACTIONS(850), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(780), 32, + ACTIONS(852), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -19583,19 +19088,16 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, ts_builtin_sym_end, - [6637] = 2, - ACTIONS(862), 9, + [6313] = 2, + ACTIONS(822), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(864), 32, - sym__block_close, + ACTIONS(824), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -19627,18 +19129,17 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [6683] = 2, - ACTIONS(858), 9, + ts_builtin_sym_end, + [6357] = 2, + ACTIONS(818), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - ACTIONS(860), 32, + ACTIONS(820), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -19671,20 +19172,60 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, ts_builtin_sym_end, - [6729] = 4, + [6401] = 2, + ACTIONS(864), 7, + anon_sym_LBRACK, + anon_sym_LBRACK_CARET, + anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + aux_sym__inline_token1, + anon_sym_PERCENT, + ACTIONS(862), 32, + sym__block_close, + sym__newline, + sym__heading_begin, + sym__div_begin, + sym__code_block_begin, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym_list_marker_definition, + sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, + sym_list_marker_upper_alpha_period, + sym_list_marker_lower_roman_period, + sym_list_marker_upper_roman_period, + sym_list_marker_decimal_paren, + sym_list_marker_lower_alpha_paren, + sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_roman_paren, + sym_list_marker_upper_roman_paren, + sym_list_marker_decimal_parens, + sym_list_marker_lower_alpha_parens, + sym_list_marker_upper_alpha_parens, + sym_list_marker_lower_roman_parens, + sym_list_marker_upper_roman_parens, + sym__block_quote_begin, + sym__block_quote_continuation, + sym__thematic_break_dash, + sym__thematic_break_star, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + [6445] = 4, ACTIONS(870), 1, sym__block_quote_continuation, STATE(208), 1, aux_sym__block_quote_prefix_repeat1, - ACTIONS(866), 9, + ACTIONS(866), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, ACTIONS(868), 29, sym__block_close, @@ -19716,16 +19257,14 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [6778] = 2, - ACTIONS(873), 9, + [6492] = 2, + ACTIONS(873), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, ACTIONS(875), 31, sym__newline, @@ -19759,16 +19298,14 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [6823] = 2, - ACTIONS(458), 9, + [6535] = 2, + ACTIONS(458), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, ACTIONS(460), 30, sym__block_close, @@ -19801,14 +19338,14 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [6867] = 14, + [6577] = 14, ACTIONS(29), 1, sym__list_marker_task_begin, - ACTIONS(91), 1, + ACTIONS(195), 1, sym__table_header_begin, - ACTIONS(93), 1, + ACTIONS(197), 1, sym__table_separator_begin, - ACTIONS(95), 1, + ACTIONS(199), 1, sym__table_row_begin, ACTIONS(877), 1, anon_sym_LBRACK_CARET, @@ -19822,32 +19359,30 @@ static const uint16_t ts_small_parse_table[] = { sym_list_marker_plus, STATE(30), 1, sym_list_marker_task, - STATE(609), 1, + STATE(555), 1, sym__inline, - STATE(285), 2, + STATE(273), 2, sym__symbol_fallback, aux_sym__inline_repeat1, STATE(98), 3, sym_table_header, sym_table_separator, sym_table_row, - ACTIONS(11), 8, + ACTIONS(11), 6, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - [6920] = 14, + [6628] = 14, ACTIONS(29), 1, sym__list_marker_task_begin, - ACTIONS(91), 1, + ACTIONS(195), 1, sym__table_header_begin, - ACTIONS(93), 1, + ACTIONS(197), 1, sym__table_separator_begin, - ACTIONS(95), 1, + ACTIONS(199), 1, sym__table_row_begin, ACTIONS(877), 1, anon_sym_LBRACK_CARET, @@ -19861,32 +19396,30 @@ static const uint16_t ts_small_parse_table[] = { sym__block_close, STATE(30), 1, sym_list_marker_task, - STATE(609), 1, + STATE(555), 1, sym__inline, - STATE(285), 2, + STATE(273), 2, sym__symbol_fallback, aux_sym__inline_repeat1, STATE(98), 3, sym_table_header, sym_table_separator, sym_table_row, - ACTIONS(11), 8, + ACTIONS(11), 6, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - [6973] = 14, + [6679] = 14, ACTIONS(29), 1, sym__list_marker_task_begin, - ACTIONS(91), 1, + ACTIONS(195), 1, sym__table_header_begin, - ACTIONS(93), 1, + ACTIONS(197), 1, sym__table_separator_begin, - ACTIONS(95), 1, + ACTIONS(199), 1, sym__table_row_begin, ACTIONS(877), 1, anon_sym_LBRACK_CARET, @@ -19900,32 +19433,30 @@ static const uint16_t ts_small_parse_table[] = { sym__block_close, STATE(30), 1, sym_list_marker_task, - STATE(609), 1, + STATE(555), 1, sym__inline, - STATE(285), 2, + STATE(273), 2, sym__symbol_fallback, aux_sym__inline_repeat1, STATE(98), 3, sym_table_header, sym_table_separator, sym_table_row, - ACTIONS(11), 8, + ACTIONS(11), 6, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - [7026] = 14, + [6730] = 14, ACTIONS(29), 1, sym__list_marker_task_begin, - ACTIONS(91), 1, + ACTIONS(195), 1, sym__table_header_begin, - ACTIONS(93), 1, + ACTIONS(197), 1, sym__table_separator_begin, - ACTIONS(95), 1, + ACTIONS(199), 1, sym__table_row_begin, ACTIONS(877), 1, anon_sym_LBRACK_CARET, @@ -19939,32 +19470,30 @@ static const uint16_t ts_small_parse_table[] = { sym__block_close, STATE(30), 1, sym_list_marker_task, - STATE(609), 1, + STATE(555), 1, sym__inline, - STATE(285), 2, + STATE(273), 2, sym__symbol_fallback, aux_sym__inline_repeat1, STATE(98), 3, sym_table_header, sym_table_separator, sym_table_row, - ACTIONS(11), 8, + ACTIONS(11), 6, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - [7079] = 14, + [6781] = 14, ACTIONS(29), 1, sym__list_marker_task_begin, - ACTIONS(91), 1, + ACTIONS(195), 1, sym__table_header_begin, - ACTIONS(93), 1, + ACTIONS(197), 1, sym__table_separator_begin, - ACTIONS(95), 1, + ACTIONS(199), 1, sym__table_row_begin, ACTIONS(877), 1, anon_sym_LBRACK_CARET, @@ -19978,32 +19507,30 @@ static const uint16_t ts_small_parse_table[] = { sym__block_close, STATE(30), 1, sym_list_marker_task, - STATE(609), 1, + STATE(555), 1, sym__inline, - STATE(285), 2, + STATE(273), 2, sym__symbol_fallback, aux_sym__inline_repeat1, STATE(98), 3, sym_table_header, sym_table_separator, sym_table_row, - ACTIONS(11), 8, + ACTIONS(11), 6, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - [7132] = 14, + [6832] = 14, ACTIONS(29), 1, sym__list_marker_task_begin, - ACTIONS(91), 1, + ACTIONS(195), 1, sym__table_header_begin, - ACTIONS(93), 1, + ACTIONS(197), 1, sym__table_separator_begin, - ACTIONS(95), 1, + ACTIONS(199), 1, sym__table_row_begin, ACTIONS(877), 1, anon_sym_LBRACK_CARET, @@ -20017,32 +19544,30 @@ static const uint16_t ts_small_parse_table[] = { sym__block_close, STATE(30), 1, sym_list_marker_task, - STATE(609), 1, + STATE(555), 1, sym__inline, - STATE(285), 2, + STATE(273), 2, sym__symbol_fallback, aux_sym__inline_repeat1, STATE(98), 3, sym_table_header, sym_table_separator, sym_table_row, - ACTIONS(11), 8, + ACTIONS(11), 6, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - [7185] = 14, + [6883] = 14, ACTIONS(29), 1, sym__list_marker_task_begin, - ACTIONS(91), 1, + ACTIONS(195), 1, sym__table_header_begin, - ACTIONS(93), 1, + ACTIONS(197), 1, sym__table_separator_begin, - ACTIONS(95), 1, + ACTIONS(199), 1, sym__table_row_begin, ACTIONS(877), 1, anon_sym_LBRACK_CARET, @@ -20056,32 +19581,30 @@ static const uint16_t ts_small_parse_table[] = { sym__block_close, STATE(30), 1, sym_list_marker_task, - STATE(609), 1, + STATE(555), 1, sym__inline, - STATE(285), 2, + STATE(273), 2, sym__symbol_fallback, aux_sym__inline_repeat1, STATE(98), 3, sym_table_header, sym_table_separator, sym_table_row, - ACTIONS(11), 8, + ACTIONS(11), 6, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - [7238] = 14, + [6934] = 14, ACTIONS(29), 1, sym__list_marker_task_begin, - ACTIONS(91), 1, + ACTIONS(195), 1, sym__table_header_begin, - ACTIONS(93), 1, + ACTIONS(197), 1, sym__table_separator_begin, - ACTIONS(95), 1, + ACTIONS(199), 1, sym__table_row_begin, ACTIONS(877), 1, anon_sym_LBRACK_CARET, @@ -20095,32 +19618,30 @@ static const uint16_t ts_small_parse_table[] = { sym__block_close, STATE(30), 1, sym_list_marker_task, - STATE(609), 1, + STATE(555), 1, sym__inline, - STATE(285), 2, + STATE(273), 2, sym__symbol_fallback, aux_sym__inline_repeat1, STATE(98), 3, sym_table_header, sym_table_separator, sym_table_row, - ACTIONS(11), 8, + ACTIONS(11), 6, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - [7291] = 14, + [6985] = 14, ACTIONS(29), 1, sym__list_marker_task_begin, - ACTIONS(91), 1, + ACTIONS(195), 1, sym__table_header_begin, - ACTIONS(93), 1, + ACTIONS(197), 1, sym__table_separator_begin, - ACTIONS(95), 1, + ACTIONS(199), 1, sym__table_row_begin, ACTIONS(877), 1, anon_sym_LBRACK_CARET, @@ -20134,32 +19655,30 @@ static const uint16_t ts_small_parse_table[] = { sym__block_close, STATE(30), 1, sym_list_marker_task, - STATE(609), 1, + STATE(555), 1, sym__inline, - STATE(285), 2, + STATE(273), 2, sym__symbol_fallback, aux_sym__inline_repeat1, STATE(98), 3, sym_table_header, sym_table_separator, sym_table_row, - ACTIONS(11), 8, + ACTIONS(11), 6, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - [7344] = 14, + [7036] = 14, ACTIONS(29), 1, sym__list_marker_task_begin, - ACTIONS(91), 1, + ACTIONS(195), 1, sym__table_header_begin, - ACTIONS(93), 1, + ACTIONS(197), 1, sym__table_separator_begin, - ACTIONS(95), 1, + ACTIONS(199), 1, sym__table_row_begin, ACTIONS(877), 1, anon_sym_LBRACK_CARET, @@ -20173,25 +19692,23 @@ static const uint16_t ts_small_parse_table[] = { sym__block_close, STATE(30), 1, sym_list_marker_task, - STATE(609), 1, + STATE(555), 1, sym__inline, - STATE(285), 2, + STATE(273), 2, sym__symbol_fallback, aux_sym__inline_repeat1, STATE(98), 3, sym_table_header, sym_table_separator, sym_table_row, - ACTIONS(11), 8, + ACTIONS(11), 6, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - [7397] = 13, + [7087] = 13, ACTIONS(29), 1, sym__list_marker_task_begin, ACTIONS(482), 1, @@ -20210,32 +19727,30 @@ static const uint16_t ts_small_parse_table[] = { sym_list_marker_plus, STATE(30), 1, sym_list_marker_task, - STATE(609), 1, + STATE(555), 1, sym__inline, - STATE(285), 2, + STATE(273), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - STATE(378), 3, + STATE(321), 3, sym_table_header, sym_table_separator, sym_table_row, - ACTIONS(11), 8, + ACTIONS(11), 6, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - [7447] = 13, + [7135] = 13, ACTIONS(29), 1, sym__list_marker_task_begin, - ACTIONS(380), 1, + ACTIONS(69), 1, sym__table_header_begin, - ACTIONS(382), 1, + ACTIONS(71), 1, sym__table_separator_begin, - ACTIONS(384), 1, + ACTIONS(73), 1, sym__table_row_begin, ACTIONS(877), 1, anon_sym_LBRACK_CARET, @@ -20247,32 +19762,30 @@ static const uint16_t ts_small_parse_table[] = { sym_list_marker_plus, STATE(30), 1, sym_list_marker_task, - STATE(609), 1, + STATE(555), 1, sym__inline, - STATE(285), 2, + STATE(273), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - STATE(352), 3, + STATE(91), 3, sym_table_header, sym_table_separator, sym_table_row, - ACTIONS(11), 8, + ACTIONS(11), 6, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - [7497] = 13, + [7183] = 13, ACTIONS(29), 1, sym__list_marker_task_begin, - ACTIONS(448), 1, + ACTIONS(380), 1, sym__table_header_begin, - ACTIONS(450), 1, + ACTIONS(382), 1, sym__table_separator_begin, - ACTIONS(452), 1, + ACTIONS(384), 1, sym__table_row_begin, ACTIONS(877), 1, anon_sym_LBRACK_CARET, @@ -20284,32 +19797,30 @@ static const uint16_t ts_small_parse_table[] = { sym_list_marker_plus, STATE(30), 1, sym_list_marker_task, - STATE(609), 1, + STATE(555), 1, sym__inline, - STATE(285), 2, + STATE(273), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - STATE(343), 3, + STATE(318), 3, sym_table_header, sym_table_separator, sym_table_row, - ACTIONS(11), 8, + ACTIONS(11), 6, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - [7547] = 13, + [7231] = 13, ACTIONS(29), 1, sym__list_marker_task_begin, - ACTIONS(91), 1, + ACTIONS(448), 1, sym__table_header_begin, - ACTIONS(93), 1, + ACTIONS(450), 1, sym__table_separator_begin, - ACTIONS(95), 1, + ACTIONS(452), 1, sym__table_row_begin, ACTIONS(877), 1, anon_sym_LBRACK_CARET, @@ -20321,32 +19832,30 @@ static const uint16_t ts_small_parse_table[] = { sym_list_marker_plus, STATE(30), 1, sym_list_marker_task, - STATE(609), 1, + STATE(555), 1, sym__inline, - STATE(285), 2, + STATE(273), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - STATE(98), 3, + STATE(291), 3, sym_table_header, sym_table_separator, sym_table_row, - ACTIONS(11), 8, + ACTIONS(11), 6, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - [7597] = 13, + [7279] = 13, ACTIONS(29), 1, sym__list_marker_task_begin, - ACTIONS(69), 1, + ACTIONS(195), 1, sym__table_header_begin, - ACTIONS(71), 1, + ACTIONS(197), 1, sym__table_separator_begin, - ACTIONS(73), 1, + ACTIONS(199), 1, sym__table_row_begin, ACTIONS(877), 1, anon_sym_LBRACK_CARET, @@ -20358,25 +19867,23 @@ static const uint16_t ts_small_parse_table[] = { sym_list_marker_plus, STATE(30), 1, sym_list_marker_task, - STATE(609), 1, + STATE(555), 1, sym__inline, - STATE(285), 2, + STATE(273), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - STATE(91), 3, + STATE(98), 3, sym_table_header, sym_table_separator, sym_table_row, - ACTIONS(11), 8, + ACTIONS(11), 6, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - [7647] = 12, + [7327] = 12, ACTIONS(907), 1, anon_sym_RBRACE, ACTIONS(909), 1, @@ -20389,27 +19896,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, ACTIONS(920), 1, sym__id, - STATE(302), 1, + STATE(268), 1, aux_sym_block_attribute_repeat1, - STATE(426), 1, + STATE(369), 1, sym__comment_no_newline, - STATE(914), 1, + STATE(927), 1, sym_key, ACTIONS(922), 2, sym__eof_or_newline, sym__newline_inline, - STATE(394), 3, + STATE(359), 3, sym_class, sym_identifier, sym_key_value, - ACTIONS(905), 6, + ACTIONS(905), 4, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - [7692] = 12, + [7370] = 12, ACTIONS(909), 1, anon_sym_DOT, ACTIONS(912), 1, @@ -20422,27 +19927,25 @@ static const uint16_t ts_small_parse_table[] = { sym__id, ACTIONS(924), 1, anon_sym_RBRACE, - STATE(306), 1, + STATE(260), 1, aux_sym_block_attribute_repeat1, - STATE(426), 1, + STATE(369), 1, sym__comment_no_newline, - STATE(914), 1, + STATE(927), 1, sym_key, ACTIONS(922), 2, sym__eof_or_newline, sym__newline_inline, - STATE(394), 3, + STATE(359), 3, sym_class, sym_identifier, sym_key_value, - ACTIONS(905), 6, + ACTIONS(905), 4, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - [7737] = 12, + [7413] = 12, ACTIONS(909), 1, anon_sym_DOT, ACTIONS(912), 1, @@ -20455,27 +19958,25 @@ static const uint16_t ts_small_parse_table[] = { sym__id, ACTIONS(926), 1, anon_sym_RBRACE, - STATE(305), 1, + STATE(262), 1, aux_sym_block_attribute_repeat1, - STATE(426), 1, + STATE(369), 1, sym__comment_no_newline, - STATE(914), 1, + STATE(927), 1, sym_key, ACTIONS(922), 2, sym__eof_or_newline, sym__newline_inline, - STATE(394), 3, + STATE(359), 3, sym_class, sym_identifier, sym_key_value, - ACTIONS(905), 6, + ACTIONS(905), 4, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - [7782] = 12, + [7456] = 12, ACTIONS(909), 1, anon_sym_DOT, ACTIONS(912), 1, @@ -20488,27 +19989,25 @@ static const uint16_t ts_small_parse_table[] = { sym__id, ACTIONS(928), 1, anon_sym_RBRACE, - STATE(309), 1, + STATE(263), 1, aux_sym_block_attribute_repeat1, - STATE(426), 1, + STATE(369), 1, sym__comment_no_newline, - STATE(914), 1, + STATE(927), 1, sym_key, ACTIONS(922), 2, sym__eof_or_newline, sym__newline_inline, - STATE(394), 3, + STATE(359), 3, sym_class, sym_identifier, sym_key_value, - ACTIONS(905), 6, + ACTIONS(905), 4, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - [7827] = 12, + [7499] = 12, ACTIONS(909), 1, anon_sym_DOT, ACTIONS(912), 1, @@ -20521,32 +20020,38 @@ static const uint16_t ts_small_parse_table[] = { sym__id, ACTIONS(930), 1, anon_sym_RBRACE, - STATE(311), 1, + STATE(264), 1, aux_sym_block_attribute_repeat1, - STATE(426), 1, + STATE(369), 1, sym__comment_no_newline, - STATE(914), 1, + STATE(927), 1, sym_key, ACTIONS(922), 2, sym__eof_or_newline, sym__newline_inline, - STATE(394), 3, + STATE(359), 3, sym_class, sym_identifier, sym_key_value, - ACTIONS(905), 6, + ACTIONS(905), 4, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - [7872] = 4, - ACTIONS(932), 1, + [7542] = 4, + ACTIONS(936), 1, sym__block_quote_continuation, - STATE(231), 1, + STATE(232), 1, aux_sym__block_quote_prefix_repeat1, - ACTIONS(868), 8, + ACTIONS(932), 7, + anon_sym_LBRACK, + anon_sym_LBRACK_CARET, + anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + aux_sym__inline_token1, + anon_sym_PERCENT, + ACTIONS(934), 8, sym__block_close, sym_list_marker_dash, sym_list_marker_star, @@ -20555,22 +20060,20 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - ACTIONS(866), 9, + [7568] = 4, + ACTIONS(938), 1, + sym__block_quote_continuation, + STATE(232), 1, + aux_sym__block_quote_prefix_repeat1, + ACTIONS(866), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - [7900] = 4, - ACTIONS(939), 1, - sym__block_quote_continuation, - STATE(231), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(937), 8, + ACTIONS(868), 8, sym__block_close, sym_list_marker_dash, sym_list_marker_star, @@ -20579,26 +20082,14 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - ACTIONS(935), 9, - anon_sym_LBRACK, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - [7928] = 2, - ACTIONS(458), 9, + [7594] = 2, + ACTIONS(458), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, ACTIONS(460), 9, sym__block_close, @@ -20610,35 +20101,20 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [7951] = 4, - ACTIONS(941), 1, + [7615] = 4, + ACTIONS(65), 1, sym__block_quote_continuation, - STATE(234), 1, + STATE(235), 1, aux_sym__block_quote_prefix_repeat1, - ACTIONS(868), 7, - sym_list_marker_dash, - sym_list_marker_star, - sym_list_marker_plus, - sym__list_marker_task_begin, - sym__table_header_begin, - sym__table_separator_begin, - sym__table_row_begin, - ACTIONS(866), 9, + ACTIONS(932), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - [7978] = 4, - ACTIONS(65), 1, - sym__block_quote_continuation, - STATE(234), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(937), 7, + ACTIONS(934), 7, sym_list_marker_dash, sym_list_marker_star, sym_list_marker_plus, @@ -20646,1785 +20122,1100 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - ACTIONS(935), 9, + [7640] = 4, + ACTIONS(941), 1, + sym__block_quote_continuation, + STATE(235), 1, + aux_sym__block_quote_prefix_repeat1, + ACTIONS(866), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - [8005] = 2, - ACTIONS(460), 8, + ACTIONS(868), 7, sym_list_marker_dash, sym_list_marker_star, sym_list_marker_plus, sym__list_marker_task_begin, - sym__block_quote_continuation, sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - ACTIONS(458), 9, - anon_sym_LBRACK, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - [8027] = 9, - ACTIONS(877), 1, - anon_sym_LBRACK_CARET, - ACTIONS(944), 1, + [7665] = 11, + ACTIONS(448), 1, + sym__table_header_begin, + ACTIONS(450), 1, + sym__table_separator_begin, + ACTIONS(452), 1, + sym__table_row_begin, + ACTIONS(503), 1, sym__block_quote_continuation, - STATE(310), 1, - sym__block_quote_prefix, - STATE(316), 1, + ACTIONS(944), 1, + sym__newline, + ACTIONS(946), 1, + sym__table_caption_begin, + STATE(376), 1, + sym__block_quote_prefix, + STATE(419), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(589), 1, + sym_table_caption, + ACTIONS(499), 2, + sym__list_item_continuation, + sym__list_item_end, + STATE(240), 5, + sym__table_row, + sym_table_header, + sym_table_separator, + sym_table_row, + aux_sym_table_repeat1, + [7704] = 11, + ACTIONS(482), 1, + sym__table_header_begin, + ACTIONS(484), 1, + sym__table_separator_begin, + ACTIONS(486), 1, + sym__table_row_begin, + ACTIONS(499), 1, + sym__block_close, + ACTIONS(503), 1, + sym__block_quote_continuation, + ACTIONS(948), 1, + sym__newline, + ACTIONS(950), 1, + sym__table_caption_begin, + STATE(377), 1, + sym__block_quote_prefix, + STATE(419), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(820), 1, + sym_table_caption, + STATE(248), 5, + sym__table_row, + sym_table_header, + sym_table_separator, + sym_table_row, + aux_sym_table_repeat1, + [7742] = 2, + ACTIONS(458), 7, + anon_sym_LBRACK, + anon_sym_LBRACK_CARET, + anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + aux_sym__inline_token1, + anon_sym_PERCENT, + ACTIONS(460), 8, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, + sym__block_quote_continuation, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + [7762] = 9, + ACTIONS(877), 1, + anon_sym_LBRACK_CARET, + ACTIONS(952), 1, + sym__block_quote_continuation, + STATE(277), 1, + sym__block_quote_prefix, + STATE(281), 1, aux_sym__block_quote_prefix_repeat1, - STATE(629), 1, + STATE(655), 1, sym__inline, - STATE(737), 1, - sym__paragraph_content, - STATE(799), 1, + STATE(778), 1, sym__paragraph_inline_content, - STATE(285), 2, + STATE(837), 1, + sym__paragraph_content, + STATE(273), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(11), 8, + ACTIONS(11), 6, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - [8063] = 11, - ACTIONS(448), 1, + [7796] = 8, + ACTIONS(515), 1, + sym__block_quote_continuation, + ACTIONS(954), 1, sym__table_header_begin, - ACTIONS(450), 1, + ACTIONS(957), 1, sym__table_separator_begin, - ACTIONS(452), 1, + ACTIONS(960), 1, + sym__table_row_begin, + STATE(376), 1, + sym__block_quote_prefix, + STATE(419), 1, + aux_sym__block_quote_prefix_repeat1, + ACTIONS(511), 4, + sym__newline, + sym__list_item_continuation, + sym__list_item_end, + sym__table_caption_begin, + STATE(240), 5, + sym__table_row, + sym_table_header, + sym_table_separator, + sym_table_row, + aux_sym_table_repeat1, + [7828] = 11, + ACTIONS(380), 1, + sym__table_header_begin, + ACTIONS(382), 1, + sym__table_separator_begin, + ACTIONS(384), 1, sym__table_row_begin, + ACTIONS(499), 1, + sym__indented_content_spacer, ACTIONS(503), 1, sym__block_quote_continuation, - ACTIONS(946), 1, + ACTIONS(963), 1, sym__newline, - ACTIONS(948), 1, + ACTIONS(965), 1, sym__table_caption_begin, - STATE(444), 1, + STATE(352), 1, sym__block_quote_prefix, - STATE(454), 1, + STATE(419), 1, aux_sym__block_quote_prefix_repeat1, - STATE(627), 1, + STATE(1082), 1, sym_table_caption, - ACTIONS(499), 2, - sym__list_item_continuation, - sym__list_item_end, - STATE(245), 5, + STATE(243), 5, sym__table_row, sym_table_header, sym_table_separator, sym_table_row, aux_sym_table_repeat1, - [8102] = 8, - ACTIONS(952), 1, + [7866] = 8, + ACTIONS(969), 1, anon_sym_NULL, - ACTIONS(954), 1, + ACTIONS(971), 1, anon_sym_LBRACK_CARET, - ACTIONS(956), 1, + ACTIONS(973), 1, sym__table_caption_end, - STATE(243), 1, + STATE(249), 1, aux_sym_table_caption_repeat1, - STATE(315), 1, + STATE(282), 1, sym__inline_line, - STATE(972), 1, + STATE(898), 1, sym__inline, - STATE(312), 2, + STATE(274), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(950), 8, + ACTIONS(967), 6, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - [8135] = 8, - ACTIONS(954), 1, + [7897] = 8, + ACTIONS(515), 1, + sym__block_quote_continuation, + ACTIONS(975), 1, + sym__table_header_begin, + ACTIONS(978), 1, + sym__table_separator_begin, + ACTIONS(981), 1, + sym__table_row_begin, + STATE(352), 1, + sym__block_quote_prefix, + STATE(419), 1, + aux_sym__block_quote_prefix_repeat1, + ACTIONS(511), 3, + sym__newline, + sym__indented_content_spacer, + sym__table_caption_begin, + STATE(243), 5, + sym__table_row, + sym_table_header, + sym_table_separator, + sym_table_row, + aux_sym_table_repeat1, + [7928] = 8, + ACTIONS(971), 1, anon_sym_LBRACK_CARET, - ACTIONS(958), 1, + ACTIONS(984), 1, anon_sym_NULL, - ACTIONS(960), 1, + ACTIONS(986), 1, sym__table_caption_end, - STATE(243), 1, + STATE(249), 1, aux_sym_table_caption_repeat1, - STATE(315), 1, + STATE(282), 1, sym__inline_line, - STATE(972), 1, + STATE(898), 1, sym__inline, - STATE(312), 2, + STATE(274), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(950), 8, + ACTIONS(967), 6, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - [8168] = 8, - ACTIONS(954), 1, + [7959] = 8, + ACTIONS(971), 1, anon_sym_LBRACK_CARET, - ACTIONS(962), 1, + ACTIONS(988), 1, anon_sym_NULL, - ACTIONS(964), 1, + ACTIONS(990), 1, sym__table_caption_end, - STATE(243), 1, + STATE(249), 1, aux_sym_table_caption_repeat1, - STATE(315), 1, + STATE(282), 1, sym__inline_line, - STATE(972), 1, + STATE(898), 1, sym__inline, - STATE(312), 2, + STATE(274), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(950), 8, + ACTIONS(967), 6, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - [8201] = 8, - ACTIONS(954), 1, + [7990] = 8, + ACTIONS(971), 1, anon_sym_LBRACK_CARET, - ACTIONS(966), 1, - anon_sym_NULL, - ACTIONS(968), 1, - sym__table_caption_end, - STATE(243), 1, - aux_sym_table_caption_repeat1, - STATE(315), 1, - sym__inline_line, - STATE(972), 1, - sym__inline, - STATE(312), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(950), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - [8234] = 8, - ACTIONS(973), 1, + ACTIONS(992), 1, anon_sym_NULL, - ACTIONS(975), 1, - anon_sym_LBRACK_CARET, - ACTIONS(978), 1, + ACTIONS(994), 1, sym__table_caption_end, - STATE(243), 1, + STATE(249), 1, aux_sym_table_caption_repeat1, - STATE(315), 1, + STATE(282), 1, sym__inline_line, - STATE(972), 1, + STATE(898), 1, sym__inline, - STATE(312), 2, + STATE(274), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(970), 8, + ACTIONS(967), 6, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - [8267] = 8, - ACTIONS(954), 1, + [8021] = 8, + ACTIONS(971), 1, anon_sym_LBRACK_CARET, - ACTIONS(980), 1, + ACTIONS(996), 1, anon_sym_NULL, - ACTIONS(982), 1, + ACTIONS(998), 1, sym__table_caption_end, - STATE(243), 1, + STATE(249), 1, aux_sym_table_caption_repeat1, - STATE(315), 1, + STATE(282), 1, sym__inline_line, - STATE(972), 1, + STATE(898), 1, sym__inline, - STATE(312), 2, + STATE(274), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(950), 8, + ACTIONS(967), 6, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - [8300] = 8, + [8052] = 8, ACTIONS(515), 1, sym__block_quote_continuation, - ACTIONS(984), 1, + ACTIONS(1000), 1, sym__table_header_begin, - ACTIONS(987), 1, + ACTIONS(1003), 1, sym__table_separator_begin, - ACTIONS(990), 1, + ACTIONS(1006), 1, sym__table_row_begin, - STATE(444), 1, + STATE(377), 1, sym__block_quote_prefix, - STATE(454), 1, + STATE(419), 1, aux_sym__block_quote_prefix_repeat1, - ACTIONS(511), 4, + ACTIONS(511), 3, + sym__block_close, sym__newline, - sym__list_item_continuation, - sym__list_item_end, sym__table_caption_begin, - STATE(245), 5, + STATE(248), 5, sym__table_row, sym_table_header, sym_table_separator, sym_table_row, aux_sym_table_repeat1, - [8332] = 6, - ACTIONS(996), 1, + [8083] = 8, + ACTIONS(1012), 1, + anon_sym_NULL, + ACTIONS(1014), 1, + anon_sym_LBRACK_CARET, + ACTIONS(1017), 1, + sym__table_caption_end, + STATE(249), 1, + aux_sym_table_caption_repeat1, + STATE(282), 1, + sym__inline_line, + STATE(898), 1, + sym__inline, + STATE(274), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(1009), 6, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + aux_sym__inline_token1, + anon_sym_PERCENT, + [8114] = 6, + ACTIONS(1022), 1, anon_sym_LBRACK_CARET, - STATE(953), 1, + STATE(986), 1, sym_link_label, - STATE(969), 1, + STATE(995), 1, sym__inline, ACTIONS(922), 2, sym__eof_or_newline, sym__newline_inline, - STATE(304), 2, + STATE(275), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(993), 8, + ACTIONS(1019), 6, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - [8360] = 7, + [8140] = 7, ACTIONS(877), 1, anon_sym_LBRACK_CARET, - ACTIONS(944), 1, + ACTIONS(952), 1, sym__block_quote_continuation, - STATE(300), 1, + STATE(276), 1, sym__block_quote_prefix, - STATE(316), 1, + STATE(281), 1, aux_sym__block_quote_prefix_repeat1, - STATE(780), 1, + STATE(788), 1, sym__inline, - STATE(285), 2, + STATE(273), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(11), 8, + ACTIONS(11), 6, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - [8390] = 11, - ACTIONS(380), 1, - sym__table_header_begin, - ACTIONS(382), 1, - sym__table_separator_begin, - ACTIONS(384), 1, - sym__table_row_begin, - ACTIONS(499), 1, - sym__indented_content_spacer, - ACTIONS(503), 1, - sym__block_quote_continuation, - ACTIONS(999), 1, - sym__newline, - ACTIONS(1001), 1, - sym__table_caption_begin, - STATE(437), 1, - sym__block_quote_prefix, - STATE(454), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(1018), 1, - sym_table_caption, - STATE(284), 5, - sym__table_row, - sym_table_header, - sym_table_separator, - sym_table_row, - aux_sym_table_repeat1, - [8428] = 11, - ACTIONS(482), 1, - sym__table_header_begin, - ACTIONS(484), 1, - sym__table_separator_begin, - ACTIONS(486), 1, - sym__table_row_begin, - ACTIONS(499), 1, - sym__block_close, - ACTIONS(503), 1, - sym__block_quote_continuation, - ACTIONS(1003), 1, - sym__newline, - ACTIONS(1005), 1, - sym__table_caption_begin, - STATE(440), 1, - sym__block_quote_prefix, - STATE(454), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(809), 1, - sym_table_caption, - STATE(258), 5, - sym__table_row, - sym_table_header, - sym_table_separator, - sym_table_row, - aux_sym_table_repeat1, - [8466] = 6, - ACTIONS(996), 1, + [8168] = 6, + ACTIONS(1022), 1, anon_sym_LBRACK_CARET, - STATE(969), 1, + STATE(995), 1, sym__inline, - STATE(1149), 1, + STATE(1145), 1, sym_link_label, ACTIONS(922), 2, sym__eof_or_newline, sym__newline_inline, - STATE(304), 2, + STATE(275), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(993), 8, + ACTIONS(1019), 6, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - [8494] = 6, - ACTIONS(996), 1, + [8194] = 6, + ACTIONS(1022), 1, anon_sym_LBRACK_CARET, - STATE(969), 1, + STATE(995), 1, sym__inline, - STATE(1150), 1, + STATE(1146), 1, sym_link_label, ACTIONS(922), 2, sym__eof_or_newline, sym__newline_inline, - STATE(304), 2, + STATE(275), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(993), 8, + ACTIONS(1019), 6, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - [8522] = 6, - ACTIONS(996), 1, + [8220] = 6, + ACTIONS(1022), 1, anon_sym_LBRACK_CARET, - STATE(969), 1, + STATE(995), 1, sym__inline, - STATE(1151), 1, + STATE(1147), 1, sym_link_label, ACTIONS(922), 2, sym__eof_or_newline, sym__newline_inline, - STATE(304), 2, + STATE(275), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(993), 8, + ACTIONS(1019), 6, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - [8550] = 6, - ACTIONS(996), 1, + [8246] = 6, + ACTIONS(1022), 1, anon_sym_LBRACK_CARET, - STATE(969), 1, + STATE(995), 1, sym__inline, - STATE(1152), 1, + STATE(1148), 1, sym_link_label, ACTIONS(922), 2, sym__eof_or_newline, sym__newline_inline, - STATE(304), 2, + STATE(275), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(993), 8, + ACTIONS(1019), 6, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - [8578] = 6, - ACTIONS(954), 1, + [8272] = 6, + ACTIONS(971), 1, anon_sym_LBRACK_CARET, - STATE(637), 1, + STATE(246), 1, + aux_sym_table_caption_repeat1, + STATE(282), 1, sym__inline_line, - STATE(1156), 1, + STATE(898), 1, sym__inline, - STATE(1157), 1, - sym__heading_content, - STATE(312), 2, + STATE(274), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(950), 8, + ACTIONS(967), 6, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - [8605] = 6, - ACTIONS(954), 1, + [8297] = 6, + ACTIONS(971), 1, anon_sym_LBRACK_CARET, - STATE(242), 1, - aux_sym_table_caption_repeat1, - STATE(315), 1, + STATE(590), 1, sym__inline_line, - STATE(972), 1, + STATE(897), 1, + sym__heading_content, + STATE(1045), 1, sym__inline, - STATE(312), 2, + STATE(274), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(950), 8, + ACTIONS(967), 6, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - [8632] = 6, - ACTIONS(1009), 1, + [8322] = 6, + ACTIONS(971), 1, anon_sym_LBRACK_CARET, - ACTIONS(1011), 1, - sym__newline, - STATE(965), 1, - sym_table_cell, - STATE(1090), 1, + STATE(590), 1, + sym__inline_line, + STATE(1013), 1, + sym__heading_content, + STATE(1045), 1, sym__inline, - STATE(303), 2, + STATE(274), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1007), 8, + ACTIONS(967), 6, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - [8659] = 6, - ACTIONS(954), 1, + [8347] = 6, + ACTIONS(971), 1, anon_sym_LBRACK_CARET, - STATE(244), 1, + STATE(242), 1, aux_sym_table_caption_repeat1, - STATE(315), 1, + STATE(282), 1, sym__inline_line, - STATE(972), 1, + STATE(898), 1, sym__inline, - STATE(312), 2, + STATE(274), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(950), 8, + ACTIONS(967), 6, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - [8686] = 8, - ACTIONS(515), 1, - sym__block_quote_continuation, - ACTIONS(1013), 1, - sym__table_header_begin, - ACTIONS(1016), 1, - sym__table_separator_begin, - ACTIONS(1019), 1, - sym__table_row_begin, - STATE(440), 1, - sym__block_quote_prefix, - STATE(454), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(511), 3, - sym__block_close, - sym__newline, - sym__table_caption_begin, - STATE(258), 5, - sym__table_row, - sym_table_header, - sym_table_separator, - sym_table_row, - aux_sym_table_repeat1, - [8717] = 6, - ACTIONS(1009), 1, - anon_sym_LBRACK_CARET, - ACTIONS(1022), 1, - sym__newline, - STATE(965), 1, - sym_table_cell, - STATE(1090), 1, - sym__inline, - STATE(303), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(1007), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, + [8372] = 10, + ACTIONS(915), 1, + sym__whitespace1, + ACTIONS(1025), 1, + anon_sym_RBRACE, + ACTIONS(1027), 1, anon_sym_DOT, + ACTIONS(1029), 1, aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, + ACTIONS(1031), 1, anon_sym_PERCENT, - [8744] = 6, - ACTIONS(1009), 1, + ACTIONS(1033), 1, + sym__id, + STATE(267), 1, + aux_sym_block_attribute_repeat1, + STATE(369), 1, + sym__comment_no_newline, + STATE(927), 1, + sym_key, + STATE(359), 3, + sym_class, + sym_identifier, + sym_key_value, + [8405] = 6, + ACTIONS(971), 1, anon_sym_LBRACK_CARET, - ACTIONS(1024), 1, - sym__newline, - STATE(965), 1, - sym_table_cell, - STATE(1090), 1, + STATE(590), 1, + sym__inline_line, + STATE(985), 1, + sym__heading_content, + STATE(1045), 1, sym__inline, - STATE(303), 2, + STATE(274), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1007), 8, + ACTIONS(967), 6, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - [8771] = 6, - ACTIONS(1009), 1, - anon_sym_LBRACK_CARET, - ACTIONS(1026), 1, - sym__newline, - STATE(965), 1, - sym_table_cell, - STATE(1090), 1, - sym__inline, - STATE(303), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(1007), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, + [8430] = 10, + ACTIONS(915), 1, + sym__whitespace1, + ACTIONS(1027), 1, anon_sym_DOT, + ACTIONS(1029), 1, aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, + ACTIONS(1031), 1, anon_sym_PERCENT, - [8798] = 6, - ACTIONS(1009), 1, - anon_sym_LBRACK_CARET, - ACTIONS(1028), 1, - sym__newline, - STATE(965), 1, - sym_table_cell, - STATE(1090), 1, - sym__inline, - STATE(303), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(1007), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, + ACTIONS(1033), 1, + sym__id, + ACTIONS(1035), 1, + anon_sym_RBRACE, + STATE(267), 1, + aux_sym_block_attribute_repeat1, + STATE(369), 1, + sym__comment_no_newline, + STATE(927), 1, + sym_key, + STATE(359), 3, + sym_class, + sym_identifier, + sym_key_value, + [8463] = 10, + ACTIONS(915), 1, + sym__whitespace1, + ACTIONS(1027), 1, anon_sym_DOT, + ACTIONS(1029), 1, aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, + ACTIONS(1031), 1, anon_sym_PERCENT, - [8825] = 6, - ACTIONS(1009), 1, - anon_sym_LBRACK_CARET, - ACTIONS(1030), 1, - sym__newline, - STATE(965), 1, - sym_table_cell, - STATE(1090), 1, - sym__inline, - STATE(303), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(1007), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, + ACTIONS(1033), 1, + sym__id, + ACTIONS(1037), 1, + anon_sym_RBRACE, + STATE(267), 1, + aux_sym_block_attribute_repeat1, + STATE(369), 1, + sym__comment_no_newline, + STATE(927), 1, + sym_key, + STATE(359), 3, + sym_class, + sym_identifier, + sym_key_value, + [8496] = 10, + ACTIONS(915), 1, + sym__whitespace1, + ACTIONS(1027), 1, anon_sym_DOT, + ACTIONS(1029), 1, aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, + ACTIONS(1031), 1, anon_sym_PERCENT, - [8852] = 6, - ACTIONS(1009), 1, + ACTIONS(1033), 1, + sym__id, + ACTIONS(1039), 1, + anon_sym_RBRACE, + STATE(267), 1, + aux_sym_block_attribute_repeat1, + STATE(369), 1, + sym__comment_no_newline, + STATE(927), 1, + sym_key, + STATE(359), 3, + sym_class, + sym_identifier, + sym_key_value, + [8529] = 6, + ACTIONS(971), 1, anon_sym_LBRACK_CARET, - ACTIONS(1032), 1, - sym__newline, - STATE(965), 1, - sym_table_cell, - STATE(1090), 1, + STATE(590), 1, + sym__inline_line, + STATE(1045), 1, sym__inline, - STATE(303), 2, + STATE(1149), 1, + sym__heading_content, + STATE(274), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1007), 8, + ACTIONS(967), 6, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - [8879] = 6, - ACTIONS(1009), 1, + [8554] = 6, + ACTIONS(971), 1, anon_sym_LBRACK_CARET, - ACTIONS(1034), 1, - sym__newline, - STATE(965), 1, - sym_table_cell, - STATE(1090), 1, + STATE(247), 1, + aux_sym_table_caption_repeat1, + STATE(282), 1, + sym__inline_line, + STATE(898), 1, sym__inline, - STATE(303), 2, + STATE(274), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1007), 8, + ACTIONS(967), 6, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - [8906] = 6, - ACTIONS(1009), 1, - anon_sym_LBRACK_CARET, - ACTIONS(1036), 1, - sym__newline, - STATE(965), 1, - sym_table_cell, - STATE(1090), 1, - sym__inline, - STATE(303), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(1007), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, + [8579] = 10, + ACTIONS(1041), 1, + anon_sym_RBRACE, + ACTIONS(1043), 1, anon_sym_DOT, + ACTIONS(1046), 1, aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, + ACTIONS(1049), 1, + sym__whitespace1, + ACTIONS(1052), 1, anon_sym_PERCENT, - [8933] = 6, - ACTIONS(1009), 1, - anon_sym_LBRACK_CARET, - ACTIONS(1038), 1, - sym__newline, - STATE(965), 1, - sym_table_cell, - STATE(1090), 1, - sym__inline, - STATE(303), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(1007), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, + ACTIONS(1055), 1, + sym__id, + STATE(267), 1, + aux_sym_block_attribute_repeat1, + STATE(369), 1, + sym__comment_no_newline, + STATE(927), 1, + sym_key, + STATE(359), 3, + sym_class, + sym_identifier, + sym_key_value, + [8612] = 10, + ACTIONS(915), 1, + sym__whitespace1, + ACTIONS(1027), 1, anon_sym_DOT, + ACTIONS(1029), 1, aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, + ACTIONS(1031), 1, anon_sym_PERCENT, - [8960] = 6, - ACTIONS(1009), 1, + ACTIONS(1033), 1, + sym__id, + ACTIONS(1058), 1, + anon_sym_RBRACE, + STATE(267), 1, + aux_sym_block_attribute_repeat1, + STATE(369), 1, + sym__comment_no_newline, + STATE(927), 1, + sym_key, + STATE(359), 3, + sym_class, + sym_identifier, + sym_key_value, + [8645] = 6, + ACTIONS(971), 1, anon_sym_LBRACK_CARET, - ACTIONS(1040), 1, - sym__newline, - STATE(965), 1, - sym_table_cell, - STATE(1090), 1, + STATE(244), 1, + aux_sym_table_caption_repeat1, + STATE(282), 1, + sym__inline_line, + STATE(898), 1, sym__inline, - STATE(303), 2, + STATE(274), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1007), 8, + ACTIONS(967), 6, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - [8987] = 6, - ACTIONS(1009), 1, + [8670] = 6, + ACTIONS(971), 1, anon_sym_LBRACK_CARET, - ACTIONS(1042), 1, - sym__newline, - STATE(965), 1, - sym_table_cell, - STATE(1090), 1, + STATE(245), 1, + aux_sym_table_caption_repeat1, + STATE(282), 1, + sym__inline_line, + STATE(898), 1, sym__inline, - STATE(303), 2, + STATE(274), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1007), 8, + ACTIONS(967), 6, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - [9014] = 6, - ACTIONS(1009), 1, + [8695] = 4, + ACTIONS(1063), 1, anon_sym_LBRACK_CARET, - ACTIONS(1044), 1, - sym__newline, - STATE(965), 1, - sym_table_cell, - STATE(1090), 1, - sym__inline, - STATE(303), 2, + ACTIONS(1066), 2, + sym__eof_or_newline, + sym__newline_inline, + STATE(271), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1007), 8, + ACTIONS(1060), 6, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - [9041] = 6, - ACTIONS(1009), 1, + [8715] = 5, + ACTIONS(971), 1, anon_sym_LBRACK_CARET, - ACTIONS(1046), 1, - sym__newline, - STATE(965), 1, - sym_table_cell, - STATE(1090), 1, + STATE(798), 1, + sym__inline_line, + STATE(1045), 1, sym__inline, - STATE(303), 2, + STATE(274), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1007), 8, + ACTIONS(967), 6, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - [9068] = 6, - ACTIONS(1009), 1, + [8737] = 4, + ACTIONS(877), 1, anon_sym_LBRACK_CARET, - ACTIONS(1048), 1, - sym__newline, - STATE(965), 1, - sym_table_cell, - STATE(1090), 1, - sym__inline, - STATE(303), 2, + ACTIONS(1070), 2, + sym__eof_or_newline, + sym__newline_inline, + STATE(271), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1007), 8, + ACTIONS(1068), 6, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - [9095] = 6, - ACTIONS(1009), 1, + [8757] = 4, + ACTIONS(971), 1, anon_sym_LBRACK_CARET, - ACTIONS(1050), 1, - sym__newline, - STATE(965), 1, - sym_table_cell, - STATE(1090), 1, - sym__inline, - STATE(303), 2, + ACTIONS(1070), 1, + sym__eof_or_newline, + STATE(279), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1007), 8, + ACTIONS(1072), 6, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - [9122] = 6, - ACTIONS(1009), 1, + [8776] = 4, + ACTIONS(1076), 1, + anon_sym_RBRACK, + ACTIONS(1078), 1, anon_sym_LBRACK_CARET, - ACTIONS(1052), 1, - sym__newline, - STATE(965), 1, - sym_table_cell, - STATE(1090), 1, - sym__inline, - STATE(303), 2, + STATE(278), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1007), 8, + ACTIONS(1074), 6, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - [9149] = 6, - ACTIONS(1009), 1, + [8795] = 4, + ACTIONS(877), 1, anon_sym_LBRACK_CARET, - ACTIONS(1054), 1, - sym__newline, - STATE(965), 1, - sym_table_cell, - STATE(1090), 1, + STATE(740), 1, sym__inline, - STATE(303), 2, + STATE(273), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1007), 8, + ACTIONS(11), 6, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - [9176] = 6, - ACTIONS(1009), 1, + [8814] = 4, + ACTIONS(877), 1, anon_sym_LBRACK_CARET, - ACTIONS(1056), 1, - sym__newline, - STATE(965), 1, - sym_table_cell, - STATE(1090), 1, + STATE(555), 1, sym__inline, - STATE(303), 2, + STATE(273), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1007), 8, + ACTIONS(11), 6, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - [9203] = 6, - ACTIONS(1009), 1, + [8833] = 4, + ACTIONS(1083), 1, + anon_sym_RBRACK, + ACTIONS(1085), 1, anon_sym_LBRACK_CARET, - ACTIONS(1058), 1, - sym__newline, - STATE(965), 1, - sym_table_cell, - STATE(1090), 1, - sym__inline, - STATE(303), 2, + STATE(278), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1007), 8, + ACTIONS(1080), 6, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - [9230] = 6, - ACTIONS(954), 1, + [8852] = 4, + ACTIONS(1066), 1, + sym__eof_or_newline, + ACTIONS(1091), 1, anon_sym_LBRACK_CARET, - STATE(637), 1, - sym__inline_line, - STATE(958), 1, - sym__heading_content, - STATE(1156), 1, - sym__inline, - STATE(312), 2, + STATE(279), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(950), 8, + ACTIONS(1088), 6, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - [9257] = 6, - ACTIONS(954), 1, - anon_sym_LBRACK_CARET, - STATE(241), 1, - aux_sym_table_caption_repeat1, - STATE(315), 1, - sym__inline_line, - STATE(972), 1, - sym__inline, - STATE(312), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(950), 8, + [8871] = 2, + ACTIONS(1096), 2, + sym__eof_or_newline, + sym__newline_inline, + ACTIONS(1094), 7, anon_sym_LBRACK, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - [9284] = 6, - ACTIONS(954), 1, - anon_sym_LBRACK_CARET, - STATE(637), 1, - sym__inline_line, - STATE(961), 1, - sym__heading_content, - STATE(1156), 1, - sym__inline, - STATE(312), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(950), 8, + [8885] = 3, + ACTIONS(952), 1, + sym__block_quote_continuation, + STATE(283), 1, + aux_sym__block_quote_prefix_repeat1, + ACTIONS(932), 7, anon_sym_LBRACK, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - [9311] = 6, - ACTIONS(954), 1, - anon_sym_LBRACK_CARET, - STATE(239), 1, - aux_sym_table_caption_repeat1, - STATE(315), 1, - sym__inline_line, - STATE(972), 1, - sym__inline, - STATE(312), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(950), 8, + [8901] = 2, + ACTIONS(1100), 1, + sym__table_caption_end, + ACTIONS(1098), 8, anon_sym_LBRACK, + anon_sym_NULL, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - [9338] = 6, - ACTIONS(954), 1, - anon_sym_LBRACK_CARET, - STATE(637), 1, - sym__inline_line, - STATE(1135), 1, - sym__heading_content, - STATE(1156), 1, - sym__inline, - STATE(312), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(950), 8, + [8915] = 3, + ACTIONS(1102), 1, + sym__block_quote_continuation, + STATE(283), 1, + aux_sym__block_quote_prefix_repeat1, + ACTIONS(866), 7, anon_sym_LBRACK, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - [9365] = 6, - ACTIONS(954), 1, - anon_sym_LBRACK_CARET, - STATE(240), 1, - aux_sym_table_caption_repeat1, - STATE(315), 1, - sym__inline_line, - STATE(972), 1, - sym__inline, - STATE(312), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(950), 8, + [8931] = 2, + ACTIONS(1107), 1, + sym__table_caption_end, + ACTIONS(1105), 8, anon_sym_LBRACK, + anon_sym_NULL, + anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - [9392] = 8, - ACTIONS(515), 1, + [8945] = 8, + ACTIONS(29), 1, + sym__list_marker_task_begin, + ACTIONS(1109), 1, + sym__block_close, + ACTIONS(1111), 1, sym__block_quote_continuation, - ACTIONS(1060), 1, - sym__table_header_begin, - ACTIONS(1063), 1, - sym__table_separator_begin, - ACTIONS(1066), 1, - sym__table_row_begin, - STATE(437), 1, + STATE(45), 1, + sym_list_marker_task, + STATE(288), 1, + aux_sym__list_task_repeat1, + STATE(558), 1, + sym__list_item_task, + STATE(678), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(689), 1, sym__block_quote_prefix, - STATE(454), 1, + [8970] = 7, + ACTIONS(1113), 1, + aux_sym__line_token1, + ACTIONS(1115), 1, + sym__block_close, + ACTIONS(1117), 1, + sym__block_quote_continuation, + STATE(620), 1, aux_sym__block_quote_prefix_repeat1, - ACTIONS(511), 3, - sym__newline, - sym__indented_content_spacer, - sym__table_caption_begin, - STATE(284), 5, - sym__table_row, - sym_table_header, - sym_table_separator, - sym_table_row, - aux_sym_table_repeat1, - [9423] = 4, - ACTIONS(877), 1, - anon_sym_LBRACK_CARET, - ACTIONS(1071), 2, - sym__eof_or_newline, - sym__newline_inline, - STATE(292), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(1069), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - [9445] = 5, - ACTIONS(954), 1, - anon_sym_LBRACK_CARET, - STATE(789), 1, - sym__inline_line, - STATE(1156), 1, - sym__inline, - STATE(312), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(950), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - [9469] = 5, - ACTIONS(1009), 1, - anon_sym_LBRACK_CARET, - STATE(829), 1, - sym_table_cell, - STATE(1090), 1, - sym__inline, - STATE(303), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(1007), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - [9493] = 5, - ACTIONS(1009), 1, - anon_sym_LBRACK_CARET, - STATE(806), 1, - sym_table_cell, - STATE(1090), 1, - sym__inline, - STATE(303), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(1007), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - [9517] = 5, - ACTIONS(1009), 1, - anon_sym_LBRACK_CARET, - STATE(853), 1, - sym_table_cell, - STATE(1090), 1, - sym__inline, - STATE(303), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(1007), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - [9541] = 5, - ACTIONS(1009), 1, - anon_sym_LBRACK_CARET, - STATE(881), 1, - sym_table_cell, - STATE(1090), 1, - sym__inline, - STATE(303), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(1007), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - [9565] = 5, - ACTIONS(1009), 1, - anon_sym_LBRACK_CARET, - STATE(874), 1, - sym_table_cell, - STATE(1090), 1, - sym__inline, - STATE(303), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(1007), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - [9589] = 4, - ACTIONS(1076), 1, - anon_sym_LBRACK_CARET, - ACTIONS(1079), 2, - sym__eof_or_newline, - sym__newline_inline, - STATE(292), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(1073), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - [9611] = 5, - ACTIONS(1009), 1, - anon_sym_LBRACK_CARET, - STATE(862), 1, - sym_table_cell, - STATE(1090), 1, - sym__inline, - STATE(303), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(1007), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - [9635] = 5, - ACTIONS(1009), 1, - anon_sym_LBRACK_CARET, - STATE(855), 1, - sym_table_cell, - STATE(1090), 1, - sym__inline, - STATE(303), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(1007), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - [9659] = 5, - ACTIONS(1009), 1, - anon_sym_LBRACK_CARET, - STATE(883), 1, - sym_table_cell, - STATE(1090), 1, - sym__inline, - STATE(303), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(1007), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - [9683] = 5, - ACTIONS(1009), 1, - anon_sym_LBRACK_CARET, - STATE(864), 1, - sym_table_cell, - STATE(1090), 1, - sym__inline, - STATE(303), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(1007), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - [9707] = 5, - ACTIONS(1009), 1, - anon_sym_LBRACK_CARET, - STATE(872), 1, - sym_table_cell, - STATE(1090), 1, - sym__inline, - STATE(303), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(1007), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - [9731] = 5, - ACTIONS(1009), 1, - anon_sym_LBRACK_CARET, - STATE(965), 1, - sym_table_cell, - STATE(1090), 1, - sym__inline, - STATE(303), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(1007), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - [9755] = 4, - ACTIONS(1084), 1, - anon_sym_PIPE, - ACTIONS(1086), 1, - anon_sym_LBRACK_CARET, - STATE(299), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(1081), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - [9776] = 4, - ACTIONS(877), 1, - anon_sym_LBRACK_CARET, - STATE(757), 1, - sym__inline, - STATE(285), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(11), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - [9797] = 10, - ACTIONS(1089), 1, - anon_sym_RBRACE, - ACTIONS(1091), 1, - anon_sym_DOT, - ACTIONS(1094), 1, - aux_sym_identifier_token1, - ACTIONS(1097), 1, - sym__whitespace1, - ACTIONS(1100), 1, - anon_sym_PERCENT, - ACTIONS(1103), 1, - sym__id, - STATE(301), 1, - aux_sym_block_attribute_repeat1, - STATE(426), 1, - sym__comment_no_newline, - STATE(914), 1, - sym_key, - STATE(394), 3, - sym_class, - sym_identifier, - sym_key_value, - [9830] = 10, - ACTIONS(915), 1, - sym__whitespace1, - ACTIONS(1106), 1, - anon_sym_RBRACE, - ACTIONS(1108), 1, - anon_sym_DOT, - ACTIONS(1110), 1, - aux_sym_identifier_token1, - ACTIONS(1112), 1, - anon_sym_PERCENT, - ACTIONS(1114), 1, - sym__id, - STATE(301), 1, - aux_sym_block_attribute_repeat1, - STATE(426), 1, - sym__comment_no_newline, - STATE(914), 1, - sym_key, - STATE(394), 3, - sym_class, - sym_identifier, - sym_key_value, - [9863] = 4, - ACTIONS(1009), 1, - anon_sym_LBRACK_CARET, - ACTIONS(1118), 1, - anon_sym_PIPE, - STATE(299), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(1116), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - [9884] = 4, - ACTIONS(1118), 1, - anon_sym_RBRACK, - ACTIONS(1122), 1, - anon_sym_LBRACK_CARET, - STATE(308), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(1120), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - [9905] = 10, - ACTIONS(915), 1, - sym__whitespace1, - ACTIONS(1108), 1, - anon_sym_DOT, - ACTIONS(1110), 1, - aux_sym_identifier_token1, - ACTIONS(1112), 1, - anon_sym_PERCENT, - ACTIONS(1114), 1, - sym__id, - ACTIONS(1124), 1, - anon_sym_RBRACE, - STATE(301), 1, - aux_sym_block_attribute_repeat1, - STATE(426), 1, - sym__comment_no_newline, - STATE(914), 1, - sym_key, - STATE(394), 3, - sym_class, - sym_identifier, - sym_key_value, - [9938] = 10, - ACTIONS(915), 1, - sym__whitespace1, - ACTIONS(1108), 1, - anon_sym_DOT, - ACTIONS(1110), 1, - aux_sym_identifier_token1, - ACTIONS(1112), 1, - anon_sym_PERCENT, - ACTIONS(1114), 1, - sym__id, - ACTIONS(1126), 1, - anon_sym_RBRACE, - STATE(301), 1, - aux_sym_block_attribute_repeat1, - STATE(426), 1, - sym__comment_no_newline, - STATE(914), 1, - sym_key, - STATE(394), 3, - sym_class, - sym_identifier, - sym_key_value, - [9971] = 4, - ACTIONS(1079), 1, - sym__eof_or_newline, - ACTIONS(1131), 1, - anon_sym_LBRACK_CARET, - STATE(307), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(1128), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - [9992] = 4, - ACTIONS(1084), 1, - anon_sym_RBRACK, - ACTIONS(1137), 1, - anon_sym_LBRACK_CARET, - STATE(308), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(1134), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - [10013] = 10, - ACTIONS(915), 1, - sym__whitespace1, - ACTIONS(1108), 1, - anon_sym_DOT, - ACTIONS(1110), 1, - aux_sym_identifier_token1, - ACTIONS(1112), 1, - anon_sym_PERCENT, - ACTIONS(1114), 1, - sym__id, - ACTIONS(1140), 1, - anon_sym_RBRACE, - STATE(301), 1, - aux_sym_block_attribute_repeat1, - STATE(426), 1, - sym__comment_no_newline, - STATE(914), 1, - sym_key, - STATE(394), 3, - sym_class, - sym_identifier, - sym_key_value, - [10046] = 4, - ACTIONS(877), 1, - anon_sym_LBRACK_CARET, - STATE(609), 1, - sym__inline, - STATE(285), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(11), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - [10067] = 10, - ACTIONS(915), 1, - sym__whitespace1, - ACTIONS(1108), 1, - anon_sym_DOT, - ACTIONS(1110), 1, - aux_sym_identifier_token1, - ACTIONS(1112), 1, - anon_sym_PERCENT, - ACTIONS(1114), 1, - sym__id, - ACTIONS(1142), 1, - anon_sym_RBRACE, - STATE(301), 1, - aux_sym_block_attribute_repeat1, - STATE(426), 1, - sym__comment_no_newline, - STATE(914), 1, - sym_key, - STATE(394), 3, - sym_class, - sym_identifier, - sym_key_value, - [10100] = 4, - ACTIONS(954), 1, - anon_sym_LBRACK_CARET, - ACTIONS(1071), 1, - sym__eof_or_newline, - STATE(307), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(1144), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - [10121] = 2, - ACTIONS(1148), 1, - sym__table_caption_end, - ACTIONS(1146), 10, - anon_sym_LBRACK, - anon_sym_NULL, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - [10137] = 3, - ACTIONS(1150), 1, + STATE(755), 1, + sym__block_quote_prefix, + STATE(975), 1, + sym_code, + STATE(320), 2, + sym__line, + aux_sym_code_repeat1, + [8993] = 7, + ACTIONS(1113), 1, + aux_sym__line_token1, + ACTIONS(1117), 1, sym__block_quote_continuation, - STATE(314), 1, + ACTIONS(1119), 1, + sym__block_close, + STATE(620), 1, aux_sym__block_quote_prefix_repeat1, - ACTIONS(866), 9, - anon_sym_LBRACK, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - [10155] = 2, - ACTIONS(1155), 1, - sym__table_caption_end, - ACTIONS(1153), 10, - anon_sym_LBRACK, - anon_sym_NULL, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - [10171] = 3, - ACTIONS(944), 1, + STATE(755), 1, + sym__block_quote_prefix, + STATE(1087), 1, + sym_code, + STATE(320), 2, + sym__line, + aux_sym_code_repeat1, + [9016] = 8, + ACTIONS(1121), 1, + sym__block_close, + ACTIONS(1123), 1, + sym__list_marker_task_begin, + ACTIONS(1126), 1, sym__block_quote_continuation, - STATE(314), 1, + STATE(45), 1, + sym_list_marker_task, + STATE(288), 1, + aux_sym__list_task_repeat1, + STATE(558), 1, + sym__list_item_task, + STATE(678), 1, aux_sym__block_quote_prefix_repeat1, - ACTIONS(935), 9, - anon_sym_LBRACK, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - [10189] = 2, - ACTIONS(1159), 2, - sym__eof_or_newline, - sym__newline_inline, - ACTIONS(1157), 9, - anon_sym_LBRACK, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - [10205] = 2, - ACTIONS(1159), 1, - sym__eof_or_newline, - ACTIONS(1157), 9, - anon_sym_LBRACK, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - [10220] = 2, + STATE(689), 1, + sym__block_quote_prefix, + [9041] = 2, ACTIONS(460), 1, sym__block_quote_continuation, - ACTIONS(458), 9, - anon_sym_LBRACK, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, - anon_sym_PERCENT, - [10235] = 1, - ACTIONS(1157), 10, + ACTIONS(458), 7, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - [10248] = 1, - ACTIONS(1157), 10, + [9054] = 2, + ACTIONS(1096), 1, + sym__eof_or_newline, + ACTIONS(1094), 7, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_LBRACK_CARET, anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_LBRACE_DASH, - anon_sym_POUND, anon_sym_PERCENT, - [10261] = 8, - ACTIONS(29), 1, - sym__list_marker_task_begin, - ACTIONS(1161), 1, - sym__block_close, - ACTIONS(1163), 1, + [9067] = 1, + ACTIONS(628), 8, + sym__newline, + sym__list_item_continuation, + sym__list_item_end, sym__block_quote_continuation, - STATE(48), 1, - sym_list_marker_task, - STATE(332), 1, - aux_sym__list_task_repeat1, - STATE(664), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(680), 1, - sym__list_item_task, - STATE(814), 1, - sym__block_quote_prefix, - [10286] = 1, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + sym__table_caption_begin, + [9078] = 1, + ACTIONS(642), 8, + sym__newline, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + sym__table_caption_begin, + [9089] = 1, ACTIONS(540), 8, sym__newline, sym__list_item_continuation, @@ -22434,8 +21225,8 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, sym__table_caption_begin, - [10297] = 1, - ACTIONS(590), 8, + [9100] = 1, + ACTIONS(546), 8, sym__newline, sym__list_item_continuation, sym__list_item_end, @@ -22444,25 +21235,18 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, sym__table_caption_begin, - [10308] = 8, - ACTIONS(29), 1, - sym__list_marker_task_begin, - ACTIONS(1163), 1, + [9111] = 1, + ACTIONS(580), 8, + sym__newline, + sym__list_item_continuation, + sym__list_item_end, sym__block_quote_continuation, - ACTIONS(1165), 1, - sym__block_close, - STATE(48), 1, - sym_list_marker_task, - STATE(332), 1, - aux_sym__list_task_repeat1, - STATE(664), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(680), 1, - sym__list_item_task, - STATE(814), 1, - sym__block_quote_prefix, - [10333] = 1, - ACTIONS(594), 8, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + sym__table_caption_begin, + [9122] = 1, + ACTIONS(584), 8, sym__newline, sym__list_item_continuation, sym__list_item_end, @@ -22471,478 +21255,449 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, sym__table_caption_begin, - [10344] = 7, - ACTIONS(1167), 1, - aux_sym__line_token1, - ACTIONS(1169), 1, - sym__block_close, - ACTIONS(1171), 1, + [9133] = 1, + ACTIONS(588), 8, + sym__newline, + sym__list_item_continuation, + sym__list_item_end, sym__block_quote_continuation, - STATE(668), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(801), 1, - sym__block_quote_prefix, - STATE(996), 1, - sym_code, - STATE(380), 2, - sym__line, - aux_sym_code_repeat1, - [10367] = 8, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + sym__table_caption_begin, + [9144] = 8, ACTIONS(29), 1, sym__list_marker_task_begin, - ACTIONS(1163), 1, + ACTIONS(1111), 1, sym__block_quote_continuation, - ACTIONS(1173), 1, + ACTIONS(1129), 1, sym__block_close, - STATE(48), 1, + STATE(45), 1, sym_list_marker_task, - STATE(332), 1, + STATE(288), 1, aux_sym__list_task_repeat1, - STATE(664), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(680), 1, + STATE(558), 1, sym__list_item_task, - STATE(814), 1, + STATE(678), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(689), 1, sym__block_quote_prefix, - [10392] = 7, - ACTIONS(1167), 1, + [9169] = 7, + ACTIONS(1113), 1, aux_sym__line_token1, - ACTIONS(1171), 1, + ACTIONS(1117), 1, sym__block_quote_continuation, - ACTIONS(1175), 1, + ACTIONS(1131), 1, sym__block_close, - STATE(668), 1, + STATE(620), 1, aux_sym__block_quote_prefix_repeat1, - STATE(801), 1, + STATE(755), 1, sym__block_quote_prefix, - STATE(968), 1, + STATE(934), 1, sym_code, - STATE(380), 2, + STATE(320), 2, sym__line, aux_sym_code_repeat1, - [10415] = 7, - ACTIONS(1167), 1, + [9192] = 7, + ACTIONS(1113), 1, aux_sym__line_token1, - ACTIONS(1171), 1, + ACTIONS(1117), 1, sym__block_quote_continuation, - ACTIONS(1177), 1, + ACTIONS(1133), 1, sym__block_close, - STATE(668), 1, + STATE(620), 1, aux_sym__block_quote_prefix_repeat1, - STATE(801), 1, + STATE(755), 1, sym__block_quote_prefix, - STATE(989), 1, + STATE(907), 1, sym_code, - STATE(380), 2, + STATE(320), 2, sym__line, aux_sym_code_repeat1, - [10438] = 7, - ACTIONS(1167), 1, + [9215] = 7, + ACTIONS(1113), 1, aux_sym__line_token1, - ACTIONS(1171), 1, + ACTIONS(1117), 1, sym__block_quote_continuation, - ACTIONS(1179), 1, + ACTIONS(1135), 1, sym__block_close, - STATE(668), 1, + STATE(620), 1, aux_sym__block_quote_prefix_repeat1, - STATE(801), 1, + STATE(755), 1, sym__block_quote_prefix, - STATE(1024), 1, + STATE(959), 1, sym_code, - STATE(380), 2, + STATE(320), 2, sym__line, aux_sym_code_repeat1, - [10461] = 8, - ACTIONS(1181), 1, - sym__block_close, - ACTIONS(1183), 1, - sym__list_marker_task_begin, - ACTIONS(1186), 1, - sym__block_quote_continuation, - STATE(48), 1, - sym_list_marker_task, - STATE(332), 1, - aux_sym__list_task_repeat1, - STATE(664), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(680), 1, - sym__list_item_task, - STATE(814), 1, - sym__block_quote_prefix, - [10486] = 7, - ACTIONS(1167), 1, + [9238] = 7, + ACTIONS(1113), 1, aux_sym__line_token1, - ACTIONS(1171), 1, + ACTIONS(1117), 1, sym__block_quote_continuation, - ACTIONS(1189), 1, + ACTIONS(1137), 1, sym__block_close, - STATE(668), 1, + STATE(620), 1, aux_sym__block_quote_prefix_repeat1, - STATE(801), 1, + STATE(755), 1, sym__block_quote_prefix, - STATE(1030), 1, + STATE(961), 1, sym_code, - STATE(380), 2, + STATE(320), 2, sym__line, aux_sym_code_repeat1, - [10509] = 7, - ACTIONS(1167), 1, + [9261] = 7, + ACTIONS(1113), 1, aux_sym__line_token1, - ACTIONS(1171), 1, + ACTIONS(1117), 1, sym__block_quote_continuation, - ACTIONS(1191), 1, + ACTIONS(1139), 1, sym__block_close, - STATE(668), 1, + STATE(620), 1, aux_sym__block_quote_prefix_repeat1, - STATE(801), 1, + STATE(755), 1, sym__block_quote_prefix, - STATE(1033), 1, + STATE(909), 1, sym_code, - STATE(380), 2, + STATE(320), 2, sym__line, aux_sym_code_repeat1, - [10532] = 8, + [9284] = 1, + ACTIONS(1094), 8, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACK_CARET, + anon_sym_LBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + aux_sym__inline_token1, + anon_sym_PERCENT, + [9295] = 8, ACTIONS(29), 1, sym__list_marker_task_begin, - ACTIONS(1163), 1, + ACTIONS(1111), 1, sym__block_quote_continuation, - ACTIONS(1193), 1, + ACTIONS(1141), 1, sym__block_close, - STATE(48), 1, + STATE(45), 1, sym_list_marker_task, - STATE(332), 1, + STATE(288), 1, aux_sym__list_task_repeat1, - STATE(664), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(680), 1, + STATE(558), 1, sym__list_item_task, - STATE(814), 1, + STATE(678), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(689), 1, sym__block_quote_prefix, - [10557] = 7, - ACTIONS(1167), 1, + [9320] = 7, + ACTIONS(1113), 1, aux_sym__line_token1, - ACTIONS(1171), 1, + ACTIONS(1117), 1, sym__block_quote_continuation, - ACTIONS(1195), 1, + ACTIONS(1143), 1, sym__block_close, - STATE(668), 1, + STATE(620), 1, aux_sym__block_quote_prefix_repeat1, - STATE(801), 1, + STATE(755), 1, sym__block_quote_prefix, - STATE(978), 1, + STATE(1037), 1, sym_code, - STATE(380), 2, + STATE(320), 2, sym__line, aux_sym_code_repeat1, - [10580] = 7, - ACTIONS(1167), 1, + [9343] = 7, + ACTIONS(1113), 1, aux_sym__line_token1, - ACTIONS(1171), 1, + ACTIONS(1117), 1, sym__block_quote_continuation, - ACTIONS(1197), 1, + ACTIONS(1145), 1, sym__block_close, - STATE(668), 1, + STATE(620), 1, aux_sym__block_quote_prefix_repeat1, - STATE(801), 1, + STATE(755), 1, sym__block_quote_prefix, - STATE(979), 1, + STATE(1054), 1, sym_code, - STATE(380), 2, + STATE(320), 2, sym__line, aux_sym_code_repeat1, - [10603] = 7, - ACTIONS(1167), 1, + [9366] = 7, + ACTIONS(1113), 1, aux_sym__line_token1, - ACTIONS(1171), 1, + ACTIONS(1117), 1, sym__block_quote_continuation, - ACTIONS(1199), 1, + ACTIONS(1147), 1, sym__block_close, - STATE(668), 1, + STATE(620), 1, aux_sym__block_quote_prefix_repeat1, - STATE(801), 1, + STATE(755), 1, sym__block_quote_prefix, - STATE(962), 1, + STATE(1055), 1, sym_code, - STATE(380), 2, + STATE(320), 2, sym__line, aux_sym_code_repeat1, - [10626] = 8, + [9389] = 8, ACTIONS(29), 1, sym__list_marker_task_begin, - ACTIONS(1163), 1, + ACTIONS(1111), 1, sym__block_quote_continuation, - ACTIONS(1201), 1, + ACTIONS(1149), 1, sym__block_close, - STATE(48), 1, + STATE(45), 1, sym_list_marker_task, - STATE(332), 1, + STATE(288), 1, aux_sym__list_task_repeat1, - STATE(664), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(680), 1, + STATE(558), 1, sym__list_item_task, - STATE(814), 1, + STATE(678), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(689), 1, sym__block_quote_prefix, - [10651] = 7, - ACTIONS(1167), 1, + [9414] = 7, + ACTIONS(1113), 1, aux_sym__line_token1, - ACTIONS(1171), 1, + ACTIONS(1117), 1, sym__block_quote_continuation, - ACTIONS(1203), 1, + ACTIONS(1151), 1, sym__block_close, - STATE(668), 1, + STATE(620), 1, aux_sym__block_quote_prefix_repeat1, - STATE(801), 1, + STATE(755), 1, sym__block_quote_prefix, - STATE(1028), 1, + STATE(905), 1, sym_code, - STATE(380), 2, + STATE(320), 2, sym__line, aux_sym_code_repeat1, - [10674] = 7, - ACTIONS(1167), 1, + [9437] = 7, + ACTIONS(1113), 1, aux_sym__line_token1, - ACTIONS(1171), 1, + ACTIONS(1117), 1, sym__block_quote_continuation, - ACTIONS(1205), 1, + ACTIONS(1153), 1, sym__block_close, - STATE(668), 1, + STATE(620), 1, aux_sym__block_quote_prefix_repeat1, - STATE(801), 1, + STATE(755), 1, sym__block_quote_prefix, - STATE(909), 1, + STATE(915), 1, sym_code, - STATE(380), 2, + STATE(320), 2, sym__line, aux_sym_code_repeat1, - [10697] = 7, - ACTIONS(1167), 1, + [9460] = 7, + ACTIONS(1113), 1, aux_sym__line_token1, - ACTIONS(1171), 1, + ACTIONS(1117), 1, sym__block_quote_continuation, - ACTIONS(1207), 1, + ACTIONS(1155), 1, sym__block_close, - STATE(668), 1, + STATE(620), 1, aux_sym__block_quote_prefix_repeat1, - STATE(801), 1, + STATE(755), 1, sym__block_quote_prefix, - STATE(993), 1, + STATE(916), 1, sym_code, - STATE(380), 2, + STATE(320), 2, sym__line, aux_sym_code_repeat1, - [10720] = 1, - ACTIONS(628), 8, - sym__newline, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - sym__table_header_begin, - sym__table_separator_begin, - sym__table_row_begin, - sym__table_caption_begin, - [10731] = 7, - ACTIONS(1167), 1, - aux_sym__line_token1, - ACTIONS(1171), 1, + [9483] = 8, + ACTIONS(29), 1, + sym__list_marker_task_begin, + ACTIONS(1111), 1, sym__block_quote_continuation, - ACTIONS(1209), 1, + ACTIONS(1157), 1, sym__block_close, - STATE(668), 1, + STATE(45), 1, + sym_list_marker_task, + STATE(288), 1, + aux_sym__list_task_repeat1, + STATE(558), 1, + sym__list_item_task, + STATE(678), 1, aux_sym__block_quote_prefix_repeat1, - STATE(801), 1, + STATE(689), 1, sym__block_quote_prefix, - STATE(938), 1, - sym_code, - STATE(380), 2, - sym__line, - aux_sym_code_repeat1, - [10754] = 7, - ACTIONS(1167), 1, + [9508] = 7, + ACTIONS(1113), 1, aux_sym__line_token1, - ACTIONS(1171), 1, + ACTIONS(1117), 1, sym__block_quote_continuation, - ACTIONS(1211), 1, + ACTIONS(1159), 1, sym__block_close, - STATE(668), 1, + STATE(620), 1, aux_sym__block_quote_prefix_repeat1, - STATE(801), 1, + STATE(755), 1, sym__block_quote_prefix, - STATE(919), 1, + STATE(964), 1, sym_code, - STATE(380), 2, + STATE(320), 2, sym__line, aux_sym_code_repeat1, - [10777] = 7, - ACTIONS(1167), 1, + [9531] = 7, + ACTIONS(1113), 1, aux_sym__line_token1, - ACTIONS(1171), 1, + ACTIONS(1117), 1, sym__block_quote_continuation, - ACTIONS(1213), 1, + ACTIONS(1161), 1, sym__block_close, - STATE(668), 1, + STATE(620), 1, aux_sym__block_quote_prefix_repeat1, - STATE(801), 1, + STATE(755), 1, sym__block_quote_prefix, - STATE(920), 1, + STATE(974), 1, sym_code, - STATE(380), 2, + STATE(320), 2, sym__line, aux_sym_code_repeat1, - [10800] = 1, - ACTIONS(546), 8, - sym__newline, - sym__list_item_continuation, - sym__list_item_end, + [9554] = 7, + ACTIONS(25), 1, + sym_list_marker_star, + ACTIONS(1163), 1, + sym__block_close, + ACTIONS(1165), 1, sym__block_quote_continuation, - sym__table_header_begin, - sym__table_separator_begin, - sym__table_row_begin, - sym__table_caption_begin, - [10811] = 1, - ACTIONS(640), 8, - sym__newline, - sym__list_item_continuation, - sym__list_item_end, + STATE(337), 1, + aux_sym__list_star_repeat1, + STATE(556), 1, + sym__list_item_star, + STATE(567), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(992), 1, + sym__block_quote_prefix, + [9576] = 7, + ACTIONS(1167), 1, + sym__block_close, + ACTIONS(1169), 1, + sym_list_marker_plus, + ACTIONS(1172), 1, sym__block_quote_continuation, - sym__table_header_begin, - sym__table_separator_begin, - sym__table_row_begin, - sym__table_caption_begin, - [10822] = 1, - ACTIONS(586), 8, + STATE(317), 1, + aux_sym__list_plus_repeat1, + STATE(550), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(554), 1, + sym__list_item_plus, + STATE(1131), 1, + sym__block_quote_prefix, + [9598] = 1, + ACTIONS(628), 7, sym__newline, - sym__list_item_continuation, - sym__list_item_end, + sym__indented_content_spacer, sym__block_quote_continuation, sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, sym__table_caption_begin, - [10833] = 7, - ACTIONS(27), 1, - sym_list_marker_plus, - ACTIONS(1215), 1, - sym__block_close, - ACTIONS(1217), 1, - sym__block_quote_continuation, - STATE(371), 1, - aux_sym__list_plus_repeat1, - STATE(678), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(691), 1, - sym__list_item_plus, - STATE(1065), 1, - sym__block_quote_prefix, - [10855] = 7, + [9608] = 7, ACTIONS(23), 1, sym_list_marker_dash, - ACTIONS(1219), 1, + ACTIONS(1175), 1, sym__block_close, - ACTIONS(1221), 1, + ACTIONS(1177), 1, sym__block_quote_continuation, - STATE(360), 1, + STATE(348), 1, aux_sym__list_dash_repeat1, - STATE(640), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(687), 1, + STATE(553), 1, sym__list_item_dash, - STATE(1022), 1, + STATE(654), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(910), 1, + sym__block_quote_prefix, + [9630] = 6, + ACTIONS(1113), 1, + aux_sym__line_token1, + ACTIONS(1117), 1, + sym__block_quote_continuation, + ACTIONS(1179), 1, + sym__block_close, + STATE(620), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(755), 1, sym__block_quote_prefix, - [10877] = 1, + STATE(324), 2, + sym__line, + aux_sym_code_repeat1, + [9650] = 1, ACTIONS(628), 7, + sym__block_close, sym__newline, - sym__indented_content_spacer, sym__block_quote_continuation, sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, sym__table_caption_begin, - [10887] = 7, - ACTIONS(25), 1, - sym_list_marker_star, - ACTIONS(1223), 1, - sym__block_close, - ACTIONS(1225), 1, - sym__block_quote_continuation, - STATE(372), 1, - aux_sym__list_star_repeat1, - STATE(601), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(673), 1, - sym__list_item_star, - STATE(902), 1, - sym__block_quote_prefix, - [10909] = 7, + [9660] = 7, ACTIONS(23), 1, sym_list_marker_dash, - ACTIONS(1221), 1, + ACTIONS(1177), 1, sym__block_quote_continuation, - ACTIONS(1227), 1, + ACTIONS(1181), 1, sym__block_close, - STATE(360), 1, + STATE(348), 1, aux_sym__list_dash_repeat1, - STATE(640), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(687), 1, + STATE(553), 1, sym__list_item_dash, - STATE(1022), 1, + STATE(654), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(910), 1, sym__block_quote_prefix, - [10931] = 7, + [9682] = 7, ACTIONS(27), 1, sym_list_marker_plus, - ACTIONS(1217), 1, - sym__block_quote_continuation, - ACTIONS(1229), 1, + ACTIONS(1183), 1, sym__block_close, - STATE(371), 1, + ACTIONS(1185), 1, + sym__block_quote_continuation, + STATE(317), 1, aux_sym__list_plus_repeat1, - STATE(678), 1, + STATE(550), 1, aux_sym__block_quote_prefix_repeat1, - STATE(691), 1, + STATE(554), 1, sym__list_item_plus, - STATE(1065), 1, + STATE(1131), 1, sym__block_quote_prefix, - [10953] = 7, - ACTIONS(25), 1, - sym_list_marker_star, - ACTIONS(1225), 1, - sym__block_quote_continuation, - ACTIONS(1231), 1, + [9704] = 6, + ACTIONS(1187), 1, + aux_sym__line_token1, + ACTIONS(1190), 1, sym__block_close, - STATE(372), 1, - aux_sym__list_star_repeat1, - STATE(601), 1, + ACTIONS(1192), 1, + sym__block_quote_continuation, + STATE(620), 1, aux_sym__block_quote_prefix_repeat1, - STATE(673), 1, - sym__list_item_star, - STATE(902), 1, + STATE(755), 1, sym__block_quote_prefix, - [10975] = 1, - ACTIONS(540), 7, - sym__block_close, + STATE(324), 2, + sym__line, + aux_sym_code_repeat1, + [9724] = 1, + ACTIONS(642), 7, sym__newline, + sym__indented_content_spacer, sym__block_quote_continuation, sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, sym__table_caption_begin, - [10985] = 6, - ACTIONS(1233), 1, - aux_sym__line_token1, - ACTIONS(1236), 1, - sym__block_close, - ACTIONS(1238), 1, + [9734] = 7, + ACTIONS(23), 1, + sym_list_marker_dash, + ACTIONS(1177), 1, sym__block_quote_continuation, - STATE(668), 1, + ACTIONS(1195), 1, + sym__block_close, + STATE(348), 1, + aux_sym__list_dash_repeat1, + STATE(553), 1, + sym__list_item_dash, + STATE(654), 1, aux_sym__block_quote_prefix_repeat1, - STATE(801), 1, + STATE(910), 1, sym__block_quote_prefix, - STATE(358), 2, - sym__line, - aux_sym_code_repeat1, - [11005] = 1, - ACTIONS(546), 7, + [9756] = 1, + ACTIONS(642), 7, sym__block_close, sym__newline, sym__block_quote_continuation, @@ -22950,23 +21705,8 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, sym__table_caption_begin, - [11015] = 7, - ACTIONS(1241), 1, - sym__block_close, - ACTIONS(1243), 1, - sym_list_marker_dash, - ACTIONS(1246), 1, - sym__block_quote_continuation, - STATE(360), 1, - aux_sym__list_dash_repeat1, - STATE(640), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(687), 1, - sym__list_item_dash, - STATE(1022), 1, - sym__block_quote_prefix, - [11037] = 1, - ACTIONS(586), 7, + [9766] = 1, + ACTIONS(540), 7, sym__block_close, sym__newline, sym__block_quote_continuation, @@ -22974,8 +21714,38 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, sym__table_caption_begin, - [11047] = 1, - ACTIONS(590), 7, + [9776] = 7, + ACTIONS(27), 1, + sym_list_marker_plus, + ACTIONS(1185), 1, + sym__block_quote_continuation, + ACTIONS(1197), 1, + sym__block_close, + STATE(317), 1, + aux_sym__list_plus_repeat1, + STATE(550), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(554), 1, + sym__list_item_plus, + STATE(1131), 1, + sym__block_quote_prefix, + [9798] = 7, + ACTIONS(25), 1, + sym_list_marker_star, + ACTIONS(1165), 1, + sym__block_quote_continuation, + ACTIONS(1199), 1, + sym__block_close, + STATE(337), 1, + aux_sym__list_star_repeat1, + STATE(556), 1, + sym__list_item_star, + STATE(567), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(992), 1, + sym__block_quote_prefix, + [9820] = 1, + ACTIONS(546), 7, sym__block_close, sym__newline, sym__block_quote_continuation, @@ -22983,8 +21753,23 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, sym__table_caption_begin, - [11057] = 1, - ACTIONS(594), 7, + [9830] = 7, + ACTIONS(27), 1, + sym_list_marker_plus, + ACTIONS(1185), 1, + sym__block_quote_continuation, + ACTIONS(1201), 1, + sym__block_close, + STATE(317), 1, + aux_sym__list_plus_repeat1, + STATE(550), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(554), 1, + sym__list_item_plus, + STATE(1131), 1, + sym__block_quote_prefix, + [9852] = 1, + ACTIONS(584), 7, sym__block_close, sym__newline, sym__block_quote_continuation, @@ -22992,77 +21777,77 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, sym__table_caption_begin, - [11067] = 7, + [9862] = 7, ACTIONS(23), 1, sym_list_marker_dash, - ACTIONS(1221), 1, + ACTIONS(1177), 1, sym__block_quote_continuation, - ACTIONS(1249), 1, + ACTIONS(1203), 1, sym__block_close, - STATE(360), 1, + STATE(348), 1, aux_sym__list_dash_repeat1, - STATE(640), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(687), 1, + STATE(553), 1, sym__list_item_dash, - STATE(1022), 1, + STATE(654), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(910), 1, sym__block_quote_prefix, - [11089] = 7, + [9884] = 7, ACTIONS(27), 1, sym_list_marker_plus, - ACTIONS(1217), 1, + ACTIONS(1185), 1, sym__block_quote_continuation, - ACTIONS(1251), 1, + ACTIONS(1205), 1, sym__block_close, - STATE(371), 1, + STATE(317), 1, aux_sym__list_plus_repeat1, - STATE(678), 1, + STATE(550), 1, aux_sym__block_quote_prefix_repeat1, - STATE(691), 1, + STATE(554), 1, sym__list_item_plus, - STATE(1065), 1, + STATE(1131), 1, sym__block_quote_prefix, - [11111] = 7, - ACTIONS(23), 1, - sym_list_marker_dash, - ACTIONS(1221), 1, + [9906] = 7, + ACTIONS(25), 1, + sym_list_marker_star, + ACTIONS(1165), 1, sym__block_quote_continuation, - ACTIONS(1253), 1, + ACTIONS(1207), 1, sym__block_close, - STATE(360), 1, - aux_sym__list_dash_repeat1, - STATE(640), 1, + STATE(337), 1, + aux_sym__list_star_repeat1, + STATE(556), 1, + sym__list_item_star, + STATE(567), 1, aux_sym__block_quote_prefix_repeat1, - STATE(687), 1, - sym__list_item_dash, - STATE(1022), 1, + STATE(992), 1, sym__block_quote_prefix, - [11133] = 1, - ACTIONS(586), 7, + [9928] = 7, + ACTIONS(1209), 1, + sym__block_close, + ACTIONS(1211), 1, + sym_list_marker_star, + ACTIONS(1214), 1, + sym__block_quote_continuation, + STATE(337), 1, + aux_sym__list_star_repeat1, + STATE(556), 1, + sym__list_item_star, + STATE(567), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(992), 1, + sym__block_quote_prefix, + [9950] = 1, + ACTIONS(588), 7, + sym__block_close, sym__newline, - sym__indented_content_spacer, sym__block_quote_continuation, sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, sym__table_caption_begin, - [11143] = 7, - ACTIONS(25), 1, - sym_list_marker_star, - ACTIONS(1225), 1, - sym__block_quote_continuation, - ACTIONS(1255), 1, - sym__block_close, - STATE(372), 1, - aux_sym__list_star_repeat1, - STATE(601), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(673), 1, - sym__list_item_star, - STATE(902), 1, - sym__block_quote_prefix, - [11165] = 1, - ACTIONS(590), 7, + [9960] = 1, + ACTIONS(540), 7, sym__newline, sym__indented_content_spacer, sym__block_quote_continuation, @@ -23070,8 +21855,8 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, sym__table_caption_begin, - [11175] = 1, - ACTIONS(594), 7, + [9970] = 1, + ACTIONS(546), 7, sym__newline, sym__indented_content_spacer, sym__block_quote_continuation, @@ -23079,83 +21864,77 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, sym__table_caption_begin, - [11185] = 7, - ACTIONS(1257), 1, - sym__block_close, - ACTIONS(1259), 1, - sym_list_marker_plus, - ACTIONS(1262), 1, - sym__block_quote_continuation, - STATE(371), 1, - aux_sym__list_plus_repeat1, - STATE(678), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(691), 1, - sym__list_item_plus, - STATE(1065), 1, - sym__block_quote_prefix, - [11207] = 7, - ACTIONS(1265), 1, - sym__block_close, - ACTIONS(1267), 1, - sym_list_marker_star, - ACTIONS(1270), 1, - sym__block_quote_continuation, - STATE(372), 1, - aux_sym__list_star_repeat1, - STATE(601), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(673), 1, - sym__list_item_star, - STATE(902), 1, - sym__block_quote_prefix, - [11229] = 7, + [9980] = 1, + ACTIONS(580), 7, + sym__newline, + sym__indented_content_spacer, + sym__block_quote_continuation, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + sym__table_caption_begin, + [9990] = 7, ACTIONS(23), 1, sym_list_marker_dash, - ACTIONS(1221), 1, + ACTIONS(1177), 1, sym__block_quote_continuation, - ACTIONS(1273), 1, + ACTIONS(1217), 1, sym__block_close, - STATE(360), 1, + STATE(348), 1, aux_sym__list_dash_repeat1, - STATE(640), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(687), 1, + STATE(553), 1, sym__list_item_dash, - STATE(1022), 1, + STATE(654), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(910), 1, sym__block_quote_prefix, - [11251] = 7, + [10012] = 7, ACTIONS(27), 1, sym_list_marker_plus, - ACTIONS(1217), 1, + ACTIONS(1185), 1, sym__block_quote_continuation, - ACTIONS(1275), 1, + ACTIONS(1219), 1, sym__block_close, - STATE(371), 1, + STATE(317), 1, aux_sym__list_plus_repeat1, - STATE(678), 1, + STATE(550), 1, aux_sym__block_quote_prefix_repeat1, - STATE(691), 1, + STATE(554), 1, sym__list_item_plus, - STATE(1065), 1, + STATE(1131), 1, sym__block_quote_prefix, - [11273] = 7, + [10034] = 7, ACTIONS(25), 1, sym_list_marker_star, - ACTIONS(1225), 1, + ACTIONS(1165), 1, sym__block_quote_continuation, - ACTIONS(1277), 1, + ACTIONS(1221), 1, sym__block_close, - STATE(372), 1, + STATE(337), 1, aux_sym__list_star_repeat1, - STATE(601), 1, + STATE(556), 1, + sym__list_item_star, + STATE(567), 1, aux_sym__block_quote_prefix_repeat1, - STATE(673), 1, + STATE(992), 1, + sym__block_quote_prefix, + [10056] = 7, + ACTIONS(25), 1, + sym_list_marker_star, + ACTIONS(1165), 1, + sym__block_quote_continuation, + ACTIONS(1223), 1, + sym__block_close, + STATE(337), 1, + aux_sym__list_star_repeat1, + STATE(556), 1, sym__list_item_star, - STATE(902), 1, + STATE(567), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(992), 1, sym__block_quote_prefix, - [11295] = 1, - ACTIONS(640), 7, + [10078] = 1, + ACTIONS(584), 7, sym__newline, sym__indented_content_spacer, sym__block_quote_continuation, @@ -23163,8 +21942,8 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, sym__table_caption_begin, - [11305] = 1, - ACTIONS(540), 7, + [10088] = 1, + ACTIONS(588), 7, sym__newline, sym__indented_content_spacer, sym__block_quote_continuation, @@ -23172,717 +21951,701 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, sym__table_caption_begin, - [11315] = 1, - ACTIONS(628), 7, + [10098] = 7, + ACTIONS(1225), 1, sym__block_close, - sym__newline, + ACTIONS(1227), 1, + sym_list_marker_dash, + ACTIONS(1230), 1, sym__block_quote_continuation, - sym__table_header_begin, - sym__table_separator_begin, - sym__table_row_begin, - sym__table_caption_begin, - [11325] = 1, - ACTIONS(546), 7, + STATE(348), 1, + aux_sym__list_dash_repeat1, + STATE(553), 1, + sym__list_item_dash, + STATE(654), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(910), 1, + sym__block_quote_prefix, + [10120] = 1, + ACTIONS(580), 7, + sym__block_close, sym__newline, - sym__indented_content_spacer, sym__block_quote_continuation, sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, sym__table_caption_begin, - [11335] = 6, - ACTIONS(1167), 1, - aux_sym__line_token1, - ACTIONS(1171), 1, + [10130] = 6, + ACTIONS(1233), 1, + sym__list_item_continuation, + ACTIONS(1235), 1, + sym__list_item_end, + ACTIONS(1237), 1, sym__block_quote_continuation, - ACTIONS(1279), 1, - sym__block_close, - STATE(668), 1, + STATE(407), 1, + aux_sym_list_item_content_repeat1, + STATE(622), 1, aux_sym__block_quote_prefix_repeat1, - STATE(801), 1, + STATE(1124), 1, sym__block_quote_prefix, - STATE(358), 2, - sym__line, - aux_sym_code_repeat1, - [11355] = 7, - ACTIONS(27), 1, - sym_list_marker_plus, - ACTIONS(1217), 1, + [10149] = 6, + ACTIONS(1239), 1, sym__block_quote_continuation, - ACTIONS(1281), 1, - sym__block_close, - STATE(371), 1, - aux_sym__list_plus_repeat1, - STATE(678), 1, + ACTIONS(1242), 1, + sym__footnote_continuation, + ACTIONS(1245), 1, + sym__footnote_end, + STATE(351), 1, + aux_sym_footnote_content_repeat1, + STATE(624), 1, aux_sym__block_quote_prefix_repeat1, - STATE(691), 1, - sym__list_item_plus, - STATE(1065), 1, + STATE(957), 1, sym__block_quote_prefix, - [11377] = 1, - ACTIONS(640), 7, - sym__block_close, - sym__newline, - sym__block_quote_continuation, + [10168] = 4, + ACTIONS(380), 1, sym__table_header_begin, + ACTIONS(382), 1, sym__table_separator_begin, + ACTIONS(384), 1, sym__table_row_begin, - sym__table_caption_begin, - [11387] = 7, - ACTIONS(25), 1, - sym_list_marker_star, - ACTIONS(1225), 1, + STATE(318), 3, + sym_table_header, + sym_table_separator, + sym_table_row, + [10183] = 6, + ACTIONS(1233), 1, + sym__list_item_continuation, + ACTIONS(1237), 1, sym__block_quote_continuation, - ACTIONS(1283), 1, - sym__block_close, - STATE(372), 1, - aux_sym__list_star_repeat1, - STATE(601), 1, + ACTIONS(1247), 1, + sym__list_item_end, + STATE(414), 1, + aux_sym_list_item_content_repeat1, + STATE(622), 1, aux_sym__block_quote_prefix_repeat1, - STATE(673), 1, - sym__list_item_star, - STATE(902), 1, + STATE(1124), 1, sym__block_quote_prefix, - [11409] = 6, - ACTIONS(1285), 1, + [10202] = 6, + ACTIONS(1233), 1, sym__list_item_continuation, - ACTIONS(1287), 1, + ACTIONS(1237), 1, + sym__block_quote_continuation, + ACTIONS(1249), 1, sym__list_item_end, - ACTIONS(1289), 1, + STATE(360), 1, + aux_sym_list_item_content_repeat1, + STATE(622), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(1124), 1, + sym__block_quote_prefix, + [10221] = 6, + ACTIONS(1233), 1, + sym__list_item_continuation, + ACTIONS(1237), 1, sym__block_quote_continuation, - STATE(407), 1, + ACTIONS(1251), 1, + sym__list_item_end, + STATE(415), 1, aux_sym_list_item_content_repeat1, - STATE(670), 1, + STATE(622), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1083), 1, + STATE(1124), 1, sym__block_quote_prefix, - [11428] = 1, - ACTIONS(1291), 6, + [10240] = 6, + ACTIONS(1253), 1, + sym__block_quote_continuation, + ACTIONS(1255), 1, + sym__footnote_continuation, + ACTIONS(1257), 1, + sym__footnote_end, + STATE(357), 1, + aux_sym_footnote_content_repeat1, + STATE(624), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(957), 1, + sym__block_quote_prefix, + [10259] = 6, + ACTIONS(1253), 1, + sym__block_quote_continuation, + ACTIONS(1255), 1, + sym__footnote_continuation, + ACTIONS(1259), 1, + sym__footnote_end, + STATE(351), 1, + aux_sym_footnote_content_repeat1, + STATE(624), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(957), 1, + sym__block_quote_prefix, + [10278] = 1, + ACTIONS(1261), 6, anon_sym_RBRACE, anon_sym_DOT, aux_sym_identifier_token1, sym__whitespace1, anon_sym_PERCENT, sym__id, - [11437] = 6, - ACTIONS(1293), 1, + [10287] = 1, + ACTIONS(1263), 6, + anon_sym_RBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + sym__whitespace1, + anon_sym_PERCENT, + sym__id, + [10296] = 6, + ACTIONS(1233), 1, + sym__list_item_continuation, + ACTIONS(1237), 1, + sym__block_quote_continuation, + ACTIONS(1265), 1, + sym__list_item_end, + STATE(415), 1, + aux_sym_list_item_content_repeat1, + STATE(622), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(1124), 1, + sym__block_quote_prefix, + [10315] = 6, + ACTIONS(1253), 1, sym__block_quote_continuation, - ACTIONS(1295), 1, + ACTIONS(1255), 1, sym__footnote_continuation, - ACTIONS(1297), 1, + ACTIONS(1267), 1, sym__footnote_end, - STATE(432), 1, + STATE(374), 1, aux_sym_footnote_content_repeat1, - STATE(672), 1, + STATE(624), 1, aux_sym__block_quote_prefix_repeat1, STATE(957), 1, sym__block_quote_prefix, - [11456] = 1, - ACTIONS(1299), 6, + [10334] = 4, + ACTIONS(195), 1, + sym__table_header_begin, + ACTIONS(197), 1, + sym__table_separator_begin, + ACTIONS(199), 1, + sym__table_row_begin, + STATE(98), 3, + sym_table_header, + sym_table_separator, + sym_table_row, + [10349] = 6, + ACTIONS(1253), 1, + sym__block_quote_continuation, + ACTIONS(1255), 1, + sym__footnote_continuation, + ACTIONS(1269), 1, + sym__footnote_end, + STATE(366), 1, + aux_sym_footnote_content_repeat1, + STATE(624), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(957), 1, + sym__block_quote_prefix, + [10368] = 6, + ACTIONS(1233), 1, + sym__list_item_continuation, + ACTIONS(1237), 1, + sym__block_quote_continuation, + ACTIONS(1271), 1, + sym__list_item_end, + STATE(368), 1, + aux_sym_list_item_content_repeat1, + STATE(622), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(1124), 1, + sym__block_quote_prefix, + [10387] = 6, + ACTIONS(1237), 1, + sym__block_quote_continuation, + ACTIONS(1273), 1, + sym__list_item_continuation, + ACTIONS(1275), 1, + sym__list_item_end, + STATE(416), 1, + aux_sym__list_item_definition_repeat1, + STATE(622), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(994), 1, + sym__block_quote_prefix, + [10406] = 6, + ACTIONS(1253), 1, + sym__block_quote_continuation, + ACTIONS(1255), 1, + sym__footnote_continuation, + ACTIONS(1277), 1, + sym__footnote_end, + STATE(351), 1, + aux_sym_footnote_content_repeat1, + STATE(624), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(957), 1, + sym__block_quote_prefix, + [10425] = 1, + ACTIONS(1279), 6, anon_sym_RBRACE, anon_sym_DOT, aux_sym_identifier_token1, sym__whitespace1, anon_sym_PERCENT, sym__id, - [11465] = 6, - ACTIONS(1301), 1, + [10434] = 6, + ACTIONS(1233), 1, sym__list_item_continuation, - ACTIONS(1304), 1, - sym__list_item_end, - ACTIONS(1306), 1, + ACTIONS(1237), 1, sym__block_quote_continuation, - STATE(388), 1, + ACTIONS(1281), 1, + sym__list_item_end, + STATE(415), 1, aux_sym_list_item_content_repeat1, - STATE(670), 1, + STATE(622), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1083), 1, + STATE(1124), 1, sym__block_quote_prefix, - [11484] = 1, - ACTIONS(1309), 6, + [10453] = 1, + ACTIONS(1283), 6, anon_sym_RBRACE, anon_sym_DOT, aux_sym_identifier_token1, sym__whitespace1, anon_sym_PERCENT, sym__id, - [11493] = 6, - ACTIONS(1285), 1, - sym__list_item_continuation, - ACTIONS(1289), 1, + [10462] = 6, + ACTIONS(1253), 1, sym__block_quote_continuation, - ACTIONS(1311), 1, - sym__list_item_end, - STATE(388), 1, - aux_sym_list_item_content_repeat1, - STATE(670), 1, + ACTIONS(1255), 1, + sym__footnote_continuation, + ACTIONS(1285), 1, + sym__footnote_end, + STATE(371), 1, + aux_sym_footnote_content_repeat1, + STATE(624), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1083), 1, + STATE(957), 1, sym__block_quote_prefix, - [11512] = 6, - ACTIONS(1285), 1, - sym__list_item_continuation, - ACTIONS(1289), 1, + [10481] = 6, + ACTIONS(1253), 1, sym__block_quote_continuation, - ACTIONS(1313), 1, - sym__list_item_end, - STATE(388), 1, - aux_sym_list_item_content_repeat1, - STATE(670), 1, + ACTIONS(1255), 1, + sym__footnote_continuation, + ACTIONS(1287), 1, + sym__footnote_end, + STATE(351), 1, + aux_sym_footnote_content_repeat1, + STATE(624), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1083), 1, + STATE(957), 1, sym__block_quote_prefix, - [11531] = 6, - ACTIONS(1285), 1, - sym__list_item_continuation, - ACTIONS(1289), 1, + [10500] = 1, + ACTIONS(1289), 6, + anon_sym_RBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + sym__whitespace1, + anon_sym_PERCENT, + sym__id, + [10509] = 1, + ACTIONS(1291), 6, + anon_sym_RBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + sym__whitespace1, + anon_sym_PERCENT, + sym__id, + [10518] = 6, + ACTIONS(1253), 1, sym__block_quote_continuation, - ACTIONS(1315), 1, - sym__list_item_end, - STATE(390), 1, - aux_sym_list_item_content_repeat1, - STATE(670), 1, + ACTIONS(1255), 1, + sym__footnote_continuation, + ACTIONS(1293), 1, + sym__footnote_end, + STATE(351), 1, + aux_sym_footnote_content_repeat1, + STATE(624), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1083), 1, + STATE(957), 1, sym__block_quote_prefix, - [11550] = 6, - ACTIONS(1285), 1, + [10537] = 1, + ACTIONS(1295), 6, + anon_sym_RBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + sym__whitespace1, + anon_sym_PERCENT, + sym__id, + [10546] = 4, + ACTIONS(448), 1, + sym__table_header_begin, + ACTIONS(450), 1, + sym__table_separator_begin, + ACTIONS(452), 1, + sym__table_row_begin, + STATE(291), 3, + sym_table_header, + sym_table_separator, + sym_table_row, + [10561] = 4, + ACTIONS(482), 1, + sym__table_header_begin, + ACTIONS(484), 1, + sym__table_separator_begin, + ACTIONS(486), 1, + sym__table_row_begin, + STATE(321), 3, + sym_table_header, + sym_table_separator, + sym_table_row, + [10576] = 6, + ACTIONS(1233), 1, sym__list_item_continuation, - ACTIONS(1289), 1, + ACTIONS(1237), 1, sym__block_quote_continuation, - ACTIONS(1317), 1, + ACTIONS(1297), 1, sym__list_item_end, - STATE(445), 1, + STATE(383), 1, aux_sym_list_item_content_repeat1, - STATE(670), 1, + STATE(622), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1083), 1, + STATE(1124), 1, sym__block_quote_prefix, - [11569] = 1, - ACTIONS(1319), 6, + [10595] = 1, + ACTIONS(1299), 6, anon_sym_RBRACE, anon_sym_DOT, aux_sym_identifier_token1, sym__whitespace1, anon_sym_PERCENT, sym__id, - [11578] = 1, - ACTIONS(1321), 6, + [10604] = 1, + ACTIONS(1301), 6, anon_sym_RBRACE, anon_sym_DOT, aux_sym_identifier_token1, sym__whitespace1, anon_sym_PERCENT, sym__id, - [11587] = 6, - ACTIONS(1293), 1, - sym__block_quote_continuation, - ACTIONS(1295), 1, - sym__footnote_continuation, - ACTIONS(1323), 1, - sym__footnote_end, - STATE(397), 1, - aux_sym_footnote_content_repeat1, - STATE(672), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(957), 1, - sym__block_quote_prefix, - [11606] = 6, - ACTIONS(1293), 1, - sym__block_quote_continuation, - ACTIONS(1295), 1, - sym__footnote_continuation, - ACTIONS(1325), 1, - sym__footnote_end, - STATE(432), 1, - aux_sym_footnote_content_repeat1, - STATE(672), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(957), 1, - sym__block_quote_prefix, - [11625] = 6, - ACTIONS(1285), 1, - sym__list_item_continuation, - ACTIONS(1289), 1, - sym__block_quote_continuation, - ACTIONS(1327), 1, - sym__list_item_end, - STATE(399), 1, - aux_sym_list_item_content_repeat1, - STATE(670), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(1083), 1, - sym__block_quote_prefix, - [11644] = 6, - ACTIONS(1285), 1, - sym__list_item_continuation, - ACTIONS(1289), 1, - sym__block_quote_continuation, - ACTIONS(1329), 1, - sym__list_item_end, - STATE(388), 1, - aux_sym_list_item_content_repeat1, - STATE(670), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(1083), 1, - sym__block_quote_prefix, - [11663] = 6, - ACTIONS(1285), 1, - sym__list_item_continuation, - ACTIONS(1289), 1, - sym__block_quote_continuation, - ACTIONS(1331), 1, - sym__list_item_end, - STATE(401), 1, - aux_sym_list_item_content_repeat1, - STATE(670), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(1083), 1, - sym__block_quote_prefix, - [11682] = 6, - ACTIONS(1285), 1, - sym__list_item_continuation, - ACTIONS(1289), 1, - sym__block_quote_continuation, - ACTIONS(1333), 1, - sym__list_item_end, - STATE(388), 1, - aux_sym_list_item_content_repeat1, - STATE(670), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(1083), 1, - sym__block_quote_prefix, - [11701] = 6, - ACTIONS(1285), 1, - sym__list_item_continuation, - ACTIONS(1289), 1, + [10613] = 6, + ACTIONS(1237), 1, sym__block_quote_continuation, - ACTIONS(1335), 1, - sym__list_item_end, - STATE(403), 1, - aux_sym_list_item_content_repeat1, - STATE(670), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(1083), 1, - sym__block_quote_prefix, - [11720] = 6, - ACTIONS(1285), 1, + ACTIONS(1273), 1, sym__list_item_continuation, - ACTIONS(1289), 1, - sym__block_quote_continuation, - ACTIONS(1337), 1, + ACTIONS(1303), 1, sym__list_item_end, - STATE(388), 1, - aux_sym_list_item_content_repeat1, - STATE(670), 1, + STATE(365), 1, + aux_sym__list_item_definition_repeat1, + STATE(622), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1083), 1, + STATE(994), 1, sym__block_quote_prefix, - [11739] = 6, - ACTIONS(1285), 1, + [10632] = 6, + ACTIONS(1233), 1, sym__list_item_continuation, - ACTIONS(1289), 1, + ACTIONS(1237), 1, sym__block_quote_continuation, - ACTIONS(1339), 1, + ACTIONS(1305), 1, sym__list_item_end, - STATE(405), 1, + STATE(355), 1, aux_sym_list_item_content_repeat1, - STATE(670), 1, + STATE(622), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1083), 1, + STATE(1124), 1, sym__block_quote_prefix, - [11758] = 6, - ACTIONS(1285), 1, + [10651] = 6, + ACTIONS(1233), 1, sym__list_item_continuation, - ACTIONS(1289), 1, + ACTIONS(1237), 1, sym__block_quote_continuation, - ACTIONS(1341), 1, + ACTIONS(1307), 1, sym__list_item_end, - STATE(388), 1, + STATE(415), 1, aux_sym_list_item_content_repeat1, - STATE(670), 1, + STATE(622), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1083), 1, + STATE(1124), 1, sym__block_quote_prefix, - [11777] = 6, - ACTIONS(1293), 1, + [10670] = 1, + ACTIONS(1309), 6, + anon_sym_RBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + sym__whitespace1, + anon_sym_PERCENT, + sym__id, + [10679] = 6, + ACTIONS(1253), 1, sym__block_quote_continuation, - ACTIONS(1295), 1, + ACTIONS(1255), 1, sym__footnote_continuation, - ACTIONS(1343), 1, + ACTIONS(1311), 1, sym__footnote_end, - STATE(433), 1, + STATE(351), 1, aux_sym_footnote_content_repeat1, - STATE(672), 1, + STATE(624), 1, aux_sym__block_quote_prefix_repeat1, STATE(957), 1, sym__block_quote_prefix, - [11796] = 6, - ACTIONS(1285), 1, + [10698] = 6, + ACTIONS(1233), 1, sym__list_item_continuation, - ACTIONS(1289), 1, + ACTIONS(1237), 1, sym__block_quote_continuation, - ACTIONS(1345), 1, + ACTIONS(1313), 1, sym__list_item_end, - STATE(388), 1, + STATE(387), 1, aux_sym_list_item_content_repeat1, - STATE(670), 1, + STATE(622), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1083), 1, + STATE(1124), 1, sym__block_quote_prefix, - [11815] = 6, - ACTIONS(1285), 1, + [10717] = 6, + ACTIONS(1233), 1, sym__list_item_continuation, - ACTIONS(1289), 1, + ACTIONS(1237), 1, sym__block_quote_continuation, - ACTIONS(1347), 1, + ACTIONS(1315), 1, sym__list_item_end, - STATE(409), 1, + STATE(415), 1, aux_sym_list_item_content_repeat1, - STATE(670), 1, + STATE(622), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1083), 1, + STATE(1124), 1, sym__block_quote_prefix, - [11834] = 6, - ACTIONS(1285), 1, + [10736] = 6, + ACTIONS(1233), 1, sym__list_item_continuation, - ACTIONS(1289), 1, + ACTIONS(1237), 1, sym__block_quote_continuation, - ACTIONS(1349), 1, + ACTIONS(1317), 1, sym__list_item_end, - STATE(388), 1, + STATE(389), 1, aux_sym_list_item_content_repeat1, - STATE(670), 1, + STATE(622), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1083), 1, + STATE(1124), 1, sym__block_quote_prefix, - [11853] = 6, - ACTIONS(1285), 1, + [10755] = 6, + ACTIONS(1233), 1, sym__list_item_continuation, - ACTIONS(1289), 1, + ACTIONS(1237), 1, sym__block_quote_continuation, - ACTIONS(1351), 1, + ACTIONS(1319), 1, sym__list_item_end, - STATE(411), 1, + STATE(415), 1, aux_sym_list_item_content_repeat1, - STATE(670), 1, + STATE(622), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1083), 1, + STATE(1124), 1, sym__block_quote_prefix, - [11872] = 6, - ACTIONS(1285), 1, + [10774] = 6, + ACTIONS(1233), 1, sym__list_item_continuation, - ACTIONS(1289), 1, + ACTIONS(1237), 1, sym__block_quote_continuation, - ACTIONS(1353), 1, + ACTIONS(1321), 1, sym__list_item_end, - STATE(388), 1, + STATE(391), 1, aux_sym_list_item_content_repeat1, - STATE(670), 1, + STATE(622), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1083), 1, + STATE(1124), 1, sym__block_quote_prefix, - [11891] = 6, - ACTIONS(1285), 1, + [10793] = 6, + ACTIONS(1233), 1, sym__list_item_continuation, - ACTIONS(1289), 1, + ACTIONS(1237), 1, sym__block_quote_continuation, - ACTIONS(1355), 1, + ACTIONS(1323), 1, sym__list_item_end, - STATE(413), 1, + STATE(415), 1, aux_sym_list_item_content_repeat1, - STATE(670), 1, + STATE(622), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1083), 1, + STATE(1124), 1, sym__block_quote_prefix, - [11910] = 6, - ACTIONS(1285), 1, + [10812] = 6, + ACTIONS(1233), 1, sym__list_item_continuation, - ACTIONS(1289), 1, + ACTIONS(1237), 1, sym__block_quote_continuation, - ACTIONS(1357), 1, + ACTIONS(1325), 1, sym__list_item_end, - STATE(388), 1, + STATE(393), 1, aux_sym_list_item_content_repeat1, - STATE(670), 1, + STATE(622), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1083), 1, + STATE(1124), 1, sym__block_quote_prefix, - [11929] = 6, - ACTIONS(1285), 1, + [10831] = 6, + ACTIONS(1233), 1, sym__list_item_continuation, - ACTIONS(1289), 1, + ACTIONS(1237), 1, sym__block_quote_continuation, - ACTIONS(1359), 1, + ACTIONS(1327), 1, sym__list_item_end, STATE(415), 1, aux_sym_list_item_content_repeat1, - STATE(670), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(1083), 1, - sym__block_quote_prefix, - [11948] = 6, - ACTIONS(1285), 1, - sym__list_item_continuation, - ACTIONS(1289), 1, - sym__block_quote_continuation, - ACTIONS(1361), 1, - sym__list_item_end, - STATE(388), 1, - aux_sym_list_item_content_repeat1, - STATE(670), 1, + STATE(622), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1083), 1, + STATE(1124), 1, sym__block_quote_prefix, - [11967] = 6, - ACTIONS(1285), 1, + [10850] = 6, + ACTIONS(1233), 1, sym__list_item_continuation, - ACTIONS(1289), 1, + ACTIONS(1237), 1, sym__block_quote_continuation, - ACTIONS(1363), 1, + ACTIONS(1329), 1, sym__list_item_end, - STATE(417), 1, + STATE(395), 1, aux_sym_list_item_content_repeat1, - STATE(670), 1, + STATE(622), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1083), 1, + STATE(1124), 1, sym__block_quote_prefix, - [11986] = 6, - ACTIONS(1285), 1, + [10869] = 6, + ACTIONS(1233), 1, sym__list_item_continuation, - ACTIONS(1289), 1, + ACTIONS(1237), 1, sym__block_quote_continuation, - ACTIONS(1365), 1, + ACTIONS(1331), 1, sym__list_item_end, - STATE(388), 1, + STATE(415), 1, aux_sym_list_item_content_repeat1, - STATE(670), 1, + STATE(622), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1083), 1, + STATE(1124), 1, sym__block_quote_prefix, - [12005] = 6, - ACTIONS(1285), 1, + [10888] = 6, + ACTIONS(1233), 1, sym__list_item_continuation, - ACTIONS(1289), 1, + ACTIONS(1237), 1, sym__block_quote_continuation, - ACTIONS(1367), 1, + ACTIONS(1333), 1, sym__list_item_end, - STATE(419), 1, + STATE(397), 1, aux_sym_list_item_content_repeat1, - STATE(670), 1, + STATE(622), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1083), 1, + STATE(1124), 1, sym__block_quote_prefix, - [12024] = 6, - ACTIONS(1285), 1, + [10907] = 6, + ACTIONS(1233), 1, sym__list_item_continuation, - ACTIONS(1289), 1, + ACTIONS(1237), 1, sym__block_quote_continuation, - ACTIONS(1369), 1, + ACTIONS(1335), 1, sym__list_item_end, - STATE(388), 1, + STATE(415), 1, aux_sym_list_item_content_repeat1, - STATE(670), 1, + STATE(622), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1083), 1, + STATE(1124), 1, sym__block_quote_prefix, - [12043] = 6, - ACTIONS(1285), 1, + [10926] = 6, + ACTIONS(1233), 1, sym__list_item_continuation, - ACTIONS(1289), 1, + ACTIONS(1237), 1, sym__block_quote_continuation, - ACTIONS(1371), 1, + ACTIONS(1337), 1, sym__list_item_end, - STATE(421), 1, + STATE(399), 1, aux_sym_list_item_content_repeat1, - STATE(670), 1, + STATE(622), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1083), 1, + STATE(1124), 1, sym__block_quote_prefix, - [12062] = 6, - ACTIONS(1285), 1, + [10945] = 6, + ACTIONS(1233), 1, sym__list_item_continuation, - ACTIONS(1289), 1, + ACTIONS(1237), 1, sym__block_quote_continuation, - ACTIONS(1373), 1, + ACTIONS(1339), 1, sym__list_item_end, - STATE(388), 1, + STATE(415), 1, aux_sym_list_item_content_repeat1, - STATE(670), 1, + STATE(622), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1083), 1, + STATE(1124), 1, sym__block_quote_prefix, - [12081] = 6, - ACTIONS(1285), 1, + [10964] = 6, + ACTIONS(1233), 1, sym__list_item_continuation, - ACTIONS(1289), 1, + ACTIONS(1237), 1, sym__block_quote_continuation, - ACTIONS(1375), 1, + ACTIONS(1341), 1, sym__list_item_end, - STATE(423), 1, + STATE(401), 1, aux_sym_list_item_content_repeat1, - STATE(670), 1, + STATE(622), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1083), 1, + STATE(1124), 1, sym__block_quote_prefix, - [12100] = 6, - ACTIONS(1285), 1, + [10983] = 6, + ACTIONS(1233), 1, sym__list_item_continuation, - ACTIONS(1289), 1, + ACTIONS(1237), 1, sym__block_quote_continuation, - ACTIONS(1377), 1, + ACTIONS(1343), 1, sym__list_item_end, - STATE(388), 1, + STATE(415), 1, aux_sym_list_item_content_repeat1, - STATE(670), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(1083), 1, - sym__block_quote_prefix, - [12119] = 6, - ACTIONS(1293), 1, - sym__block_quote_continuation, - ACTIONS(1295), 1, - sym__footnote_continuation, - ACTIONS(1379), 1, - sym__footnote_end, - STATE(432), 1, - aux_sym_footnote_content_repeat1, - STATE(672), 1, + STATE(622), 1, aux_sym__block_quote_prefix_repeat1, - STATE(957), 1, + STATE(1124), 1, sym__block_quote_prefix, - [12138] = 6, - ACTIONS(1285), 1, + [11002] = 6, + ACTIONS(1233), 1, sym__list_item_continuation, - ACTIONS(1289), 1, + ACTIONS(1237), 1, sym__block_quote_continuation, - ACTIONS(1381), 1, + ACTIONS(1345), 1, sym__list_item_end, - STATE(388), 1, + STATE(403), 1, aux_sym_list_item_content_repeat1, - STATE(670), 1, + STATE(622), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1083), 1, + STATE(1124), 1, sym__block_quote_prefix, - [12157] = 1, - ACTIONS(1383), 6, - anon_sym_RBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - sym__whitespace1, - anon_sym_PERCENT, - sym__id, - [12166] = 6, - ACTIONS(1285), 1, + [11021] = 6, + ACTIONS(1233), 1, sym__list_item_continuation, - ACTIONS(1289), 1, + ACTIONS(1237), 1, sym__block_quote_continuation, - ACTIONS(1385), 1, + ACTIONS(1347), 1, sym__list_item_end, - STATE(434), 1, + STATE(415), 1, aux_sym_list_item_content_repeat1, - STATE(670), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(1083), 1, - sym__block_quote_prefix, - [12185] = 6, - ACTIONS(1289), 1, - sym__block_quote_continuation, - ACTIONS(1387), 1, - sym__list_item_continuation, - ACTIONS(1389), 1, - sym__list_item_end, - STATE(438), 1, - aux_sym__list_item_definition_repeat1, - STATE(670), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(1110), 1, - sym__block_quote_prefix, - [12204] = 6, - ACTIONS(1293), 1, - sym__block_quote_continuation, - ACTIONS(1295), 1, - sym__footnote_continuation, - ACTIONS(1391), 1, - sym__footnote_end, - STATE(430), 1, - aux_sym_footnote_content_repeat1, - STATE(672), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(957), 1, - sym__block_quote_prefix, - [12223] = 6, - ACTIONS(1293), 1, - sym__block_quote_continuation, - ACTIONS(1295), 1, - sym__footnote_continuation, - ACTIONS(1393), 1, - sym__footnote_end, - STATE(432), 1, - aux_sym_footnote_content_repeat1, - STATE(672), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(957), 1, - sym__block_quote_prefix, - [12242] = 1, - ACTIONS(1395), 6, - anon_sym_RBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - sym__whitespace1, - anon_sym_PERCENT, - sym__id, - [12251] = 6, - ACTIONS(1397), 1, - sym__block_quote_continuation, - ACTIONS(1400), 1, - sym__footnote_continuation, - ACTIONS(1403), 1, - sym__footnote_end, - STATE(432), 1, - aux_sym_footnote_content_repeat1, - STATE(672), 1, + STATE(622), 1, aux_sym__block_quote_prefix_repeat1, - STATE(957), 1, + STATE(1124), 1, sym__block_quote_prefix, - [12270] = 6, - ACTIONS(1293), 1, + [11040] = 6, + ACTIONS(1233), 1, + sym__list_item_continuation, + ACTIONS(1237), 1, sym__block_quote_continuation, - ACTIONS(1295), 1, - sym__footnote_continuation, - ACTIONS(1405), 1, - sym__footnote_end, - STATE(432), 1, - aux_sym_footnote_content_repeat1, - STATE(672), 1, + ACTIONS(1349), 1, + sym__list_item_end, + STATE(405), 1, + aux_sym_list_item_content_repeat1, + STATE(622), 1, aux_sym__block_quote_prefix_repeat1, - STATE(957), 1, + STATE(1124), 1, sym__block_quote_prefix, - [12289] = 6, - ACTIONS(1285), 1, + [11059] = 6, + ACTIONS(1233), 1, sym__list_item_continuation, - ACTIONS(1289), 1, + ACTIONS(1237), 1, sym__block_quote_continuation, - ACTIONS(1407), 1, + ACTIONS(1351), 1, sym__list_item_end, - STATE(388), 1, + STATE(415), 1, aux_sym_list_item_content_repeat1, - STATE(670), 1, + STATE(622), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1083), 1, + STATE(1124), 1, sym__block_quote_prefix, - [12308] = 4, - ACTIONS(91), 1, - sym__table_header_begin, - ACTIONS(93), 1, - sym__table_separator_begin, - ACTIONS(95), 1, - sym__table_row_begin, - STATE(98), 3, - sym_table_header, - sym_table_separator, - sym_table_row, - [12323] = 4, + [11078] = 4, ACTIONS(69), 1, sym__table_header_begin, ACTIONS(71), 1, @@ -23893,5010 +22656,5166 @@ static const uint16_t ts_small_parse_table[] = { sym_table_header, sym_table_separator, sym_table_row, - [12338] = 4, - ACTIONS(380), 1, - sym__table_header_begin, - ACTIONS(382), 1, - sym__table_separator_begin, - ACTIONS(384), 1, - sym__table_row_begin, - STATE(352), 3, - sym_table_header, - sym_table_separator, - sym_table_row, - [12353] = 6, - ACTIONS(1409), 1, + [11093] = 6, + ACTIONS(1233), 1, sym__list_item_continuation, - ACTIONS(1412), 1, - sym__list_item_end, - ACTIONS(1414), 1, - sym__block_quote_continuation, - STATE(438), 1, - aux_sym__list_item_definition_repeat1, - STATE(670), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(1110), 1, - sym__block_quote_prefix, - [12372] = 6, - ACTIONS(1289), 1, + ACTIONS(1237), 1, sym__block_quote_continuation, - ACTIONS(1387), 1, - sym__list_item_continuation, - ACTIONS(1417), 1, + ACTIONS(1353), 1, sym__list_item_end, - STATE(428), 1, - aux_sym__list_item_definition_repeat1, - STATE(670), 1, + STATE(415), 1, + aux_sym_list_item_content_repeat1, + STATE(622), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1110), 1, + STATE(1124), 1, sym__block_quote_prefix, - [12391] = 4, - ACTIONS(482), 1, - sym__table_header_begin, - ACTIONS(484), 1, - sym__table_separator_begin, - ACTIONS(486), 1, - sym__table_row_begin, - STATE(378), 3, - sym_table_header, - sym_table_separator, - sym_table_row, - [12406] = 1, - ACTIONS(1419), 6, - anon_sym_RBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - sym__whitespace1, - anon_sym_PERCENT, - sym__id, - [12415] = 6, - ACTIONS(1285), 1, + [11112] = 6, + ACTIONS(1233), 1, sym__list_item_continuation, - ACTIONS(1289), 1, + ACTIONS(1237), 1, sym__block_quote_continuation, - ACTIONS(1421), 1, + ACTIONS(1355), 1, sym__list_item_end, - STATE(447), 1, + STATE(409), 1, aux_sym_list_item_content_repeat1, - STATE(670), 1, + STATE(622), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1083), 1, + STATE(1124), 1, sym__block_quote_prefix, - [12434] = 1, - ACTIONS(1423), 6, - anon_sym_RBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - sym__whitespace1, - anon_sym_PERCENT, - sym__id, - [12443] = 4, - ACTIONS(448), 1, - sym__table_header_begin, - ACTIONS(450), 1, - sym__table_separator_begin, - ACTIONS(452), 1, - sym__table_row_begin, - STATE(343), 3, - sym_table_header, - sym_table_separator, - sym_table_row, - [12458] = 6, - ACTIONS(1285), 1, + [11131] = 6, + ACTIONS(1233), 1, sym__list_item_continuation, - ACTIONS(1289), 1, + ACTIONS(1237), 1, sym__block_quote_continuation, - ACTIONS(1425), 1, + ACTIONS(1357), 1, sym__list_item_end, - STATE(388), 1, + STATE(415), 1, aux_sym_list_item_content_repeat1, - STATE(670), 1, + STATE(622), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1083), 1, + STATE(1124), 1, sym__block_quote_prefix, - [12477] = 6, - ACTIONS(1285), 1, + [11150] = 6, + ACTIONS(1233), 1, sym__list_item_continuation, - ACTIONS(1289), 1, + ACTIONS(1237), 1, sym__block_quote_continuation, - ACTIONS(1427), 1, + ACTIONS(1359), 1, sym__list_item_end, - STATE(391), 1, + STATE(411), 1, aux_sym_list_item_content_repeat1, - STATE(670), 1, + STATE(622), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1083), 1, + STATE(1124), 1, sym__block_quote_prefix, - [12496] = 6, - ACTIONS(1285), 1, + [11169] = 6, + ACTIONS(1233), 1, sym__list_item_continuation, - ACTIONS(1289), 1, + ACTIONS(1237), 1, sym__block_quote_continuation, - ACTIONS(1429), 1, + ACTIONS(1361), 1, sym__list_item_end, - STATE(388), 1, + STATE(415), 1, aux_sym_list_item_content_repeat1, - STATE(670), 1, + STATE(622), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1083), 1, + STATE(1124), 1, sym__block_quote_prefix, - [12515] = 1, - ACTIONS(1431), 6, - anon_sym_RBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - sym__whitespace1, - anon_sym_PERCENT, - sym__id, - [12524] = 6, - ACTIONS(1293), 1, + [11188] = 6, + ACTIONS(1233), 1, + sym__list_item_continuation, + ACTIONS(1237), 1, sym__block_quote_continuation, - ACTIONS(1295), 1, - sym__footnote_continuation, - ACTIONS(1433), 1, - sym__footnote_end, - STATE(386), 1, - aux_sym_footnote_content_repeat1, - STATE(672), 1, + ACTIONS(1363), 1, + sym__list_item_end, + STATE(413), 1, + aux_sym_list_item_content_repeat1, + STATE(622), 1, aux_sym__block_quote_prefix_repeat1, - STATE(957), 1, + STATE(1124), 1, sym__block_quote_prefix, - [12543] = 6, - ACTIONS(1293), 1, + [11207] = 6, + ACTIONS(1233), 1, + sym__list_item_continuation, + ACTIONS(1237), 1, sym__block_quote_continuation, - ACTIONS(1295), 1, - sym__footnote_continuation, - ACTIONS(1435), 1, - sym__footnote_end, - STATE(424), 1, - aux_sym_footnote_content_repeat1, - STATE(672), 1, + ACTIONS(1365), 1, + sym__list_item_end, + STATE(415), 1, + aux_sym_list_item_content_repeat1, + STATE(622), 1, aux_sym__block_quote_prefix_repeat1, - STATE(957), 1, + STATE(1124), 1, sym__block_quote_prefix, - [12562] = 6, - ACTIONS(1285), 1, + [11226] = 6, + ACTIONS(1233), 1, sym__list_item_continuation, - ACTIONS(1289), 1, + ACTIONS(1237), 1, sym__block_quote_continuation, - ACTIONS(1437), 1, + ACTIONS(1367), 1, sym__list_item_end, - STATE(425), 1, + STATE(415), 1, aux_sym_list_item_content_repeat1, - STATE(670), 1, + STATE(622), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1083), 1, - sym__block_quote_prefix, - [12581] = 4, - ACTIONS(1439), 1, - sym__block_close, - ACTIONS(1441), 1, - sym__block_quote_continuation, - STATE(456), 1, - aux_sym__block_quote_content_repeat1, - STATE(65), 2, + STATE(1124), 1, sym__block_quote_prefix, - aux_sym__block_quote_prefix_repeat1, - [12595] = 3, - ACTIONS(948), 1, - sym__table_caption_begin, - STATE(635), 1, - sym_table_caption, - ACTIONS(536), 3, + [11245] = 6, + ACTIONS(1369), 1, sym__list_item_continuation, + ACTIONS(1372), 1, sym__list_item_end, + ACTIONS(1374), 1, sym__block_quote_continuation, - [12607] = 3, - ACTIONS(503), 1, - sym__block_quote_continuation, - STATE(455), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(937), 3, - sym__table_header_begin, - sym__table_separator_begin, - sym__table_row_begin, - [12619] = 3, - ACTIONS(1443), 1, - sym__block_quote_continuation, - STATE(455), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(868), 3, - sym__table_header_begin, - sym__table_separator_begin, - sym__table_row_begin, - [12631] = 4, - ACTIONS(1441), 1, - sym__block_quote_continuation, - ACTIONS(1446), 1, - sym__block_close, - STATE(457), 1, - aux_sym__block_quote_content_repeat1, - STATE(65), 2, - sym__block_quote_prefix, + STATE(415), 1, + aux_sym_list_item_content_repeat1, + STATE(622), 1, aux_sym__block_quote_prefix_repeat1, - [12645] = 4, - ACTIONS(1448), 1, - sym__block_close, - ACTIONS(1450), 1, - sym__block_quote_continuation, - STATE(457), 1, - aux_sym__block_quote_content_repeat1, - STATE(65), 2, + STATE(1124), 1, sym__block_quote_prefix, - aux_sym__block_quote_prefix_repeat1, - [12659] = 2, - ACTIONS(1453), 1, - sym__code_block_end, - ACTIONS(632), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [12668] = 3, - ACTIONS(1455), 1, - aux_sym__line_token1, - STATE(942), 1, - sym_frontmatter_content, - STATE(464), 2, - sym__line, - aux_sym_frontmatter_content_repeat1, - [12679] = 3, - ACTIONS(1005), 1, - sym__table_caption_begin, - STATE(823), 1, - sym_table_caption, - ACTIONS(536), 2, - sym__block_close, - sym__block_quote_continuation, - [12690] = 4, - ACTIONS(1457), 1, - anon_sym_EQ, - ACTIONS(1459), 1, - sym_language, - ACTIONS(1461), 1, - sym__newline, - STATE(1080), 1, - sym_raw_block_info, - [12703] = 3, - ACTIONS(1463), 1, - anon_sym_PERCENT, - STATE(477), 1, - aux_sym__comment_no_newline_repeat1, - ACTIONS(1465), 2, - sym_backslash_escape, - aux_sym__comment_no_newline_token1, - [12714] = 2, - ACTIONS(1467), 1, - sym__eof_or_newline, - ACTIONS(550), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [12723] = 3, - ACTIONS(1455), 1, - aux_sym__line_token1, - ACTIONS(1469), 1, - sym_frontmatter_marker, - STATE(495), 2, - sym__line, - aux_sym_frontmatter_content_repeat1, - [12734] = 3, - ACTIONS(1455), 1, - aux_sym__line_token1, - STATE(933), 1, - sym_frontmatter_content, - STATE(464), 2, - sym__line, - aux_sym_frontmatter_content_repeat1, - [12745] = 2, - ACTIONS(1471), 1, - sym__div_end, - ACTIONS(622), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [12754] = 2, - ACTIONS(1473), 1, - sym__div_end, - ACTIONS(556), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [12763] = 2, - ACTIONS(1475), 1, - sym__div_end, - ACTIONS(562), 3, + [11264] = 6, + ACTIONS(1377), 1, sym__list_item_continuation, + ACTIONS(1380), 1, sym__list_item_end, + ACTIONS(1382), 1, sym__block_quote_continuation, - [12772] = 2, - ACTIONS(1477), 1, - sym__code_block_end, - ACTIONS(568), 3, - sym__list_item_continuation, - sym__list_item_end, + STATE(416), 1, + aux_sym__list_item_definition_repeat1, + STATE(622), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(994), 1, + sym__block_quote_prefix, + [11283] = 6, + ACTIONS(1253), 1, sym__block_quote_continuation, - [12781] = 2, - ACTIONS(1479), 1, - sym__code_block_end, - ACTIONS(574), 3, - sym__list_item_continuation, - sym__list_item_end, + ACTIONS(1255), 1, + sym__footnote_continuation, + ACTIONS(1385), 1, + sym__footnote_end, + STATE(385), 1, + aux_sym_footnote_content_repeat1, + STATE(624), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(957), 1, + sym__block_quote_prefix, + [11302] = 4, + ACTIONS(1387), 1, + sym__block_close, + ACTIONS(1389), 1, sym__block_quote_continuation, - [12790] = 2, - ACTIONS(1481), 1, - sym__code_block_end, - ACTIONS(580), 3, - sym__list_item_continuation, - sym__list_item_end, + STATE(418), 1, + aux_sym__block_quote_content_repeat1, + STATE(65), 2, + sym__block_quote_prefix, + aux_sym__block_quote_prefix_repeat1, + [11316] = 3, + ACTIONS(503), 1, sym__block_quote_continuation, - [12799] = 2, - ACTIONS(1483), 1, - sym__div_end, - ACTIONS(598), 3, + STATE(421), 1, + aux_sym__block_quote_prefix_repeat1, + ACTIONS(934), 3, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + [11328] = 3, + ACTIONS(946), 1, + sym__table_caption_begin, + STATE(594), 1, + sym_table_caption, + ACTIONS(536), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [12808] = 2, - ACTIONS(1485), 1, - sym__code_block_end, - ACTIONS(604), 3, - sym__list_item_continuation, - sym__list_item_end, + [11340] = 3, + ACTIONS(1392), 1, sym__block_quote_continuation, - [12817] = 2, - ACTIONS(1487), 1, - sym__code_block_end, - ACTIONS(610), 3, - sym__list_item_continuation, - sym__list_item_end, + STATE(421), 1, + aux_sym__block_quote_prefix_repeat1, + ACTIONS(868), 3, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + [11352] = 4, + ACTIONS(1395), 1, + sym__block_close, + ACTIONS(1397), 1, + sym__block_quote_continuation, + STATE(418), 1, + aux_sym__block_quote_content_repeat1, + STATE(65), 2, + sym__block_quote_prefix, + aux_sym__block_quote_prefix_repeat1, + [11366] = 4, + ACTIONS(1397), 1, sym__block_quote_continuation, - [12826] = 2, - ACTIONS(1489), 1, + ACTIONS(1399), 1, + sym__block_close, + STATE(422), 1, + aux_sym__block_quote_content_repeat1, + STATE(65), 2, + sym__block_quote_prefix, + aux_sym__block_quote_prefix_repeat1, + [11380] = 2, + ACTIONS(1401), 1, sym__eof_or_newline, ACTIONS(616), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [12835] = 1, - ACTIONS(460), 4, - sym__block_quote_continuation, - sym__table_header_begin, - sym__table_separator_begin, - sym__table_row_begin, - [12842] = 3, - ACTIONS(1491), 1, - anon_sym_PERCENT, - STATE(477), 1, - aux_sym__comment_no_newline_repeat1, - ACTIONS(1493), 2, - sym_backslash_escape, - aux_sym__comment_no_newline_token1, - [12853] = 3, - ACTIONS(1496), 1, - anon_sym_PERCENT, - STATE(462), 1, - aux_sym__comment_no_newline_repeat1, - ACTIONS(1465), 2, - sym_backslash_escape, - aux_sym__comment_no_newline_token1, - [12864] = 4, + [11389] = 4, ACTIONS(31), 1, sym_list_marker_definition, - ACTIONS(1498), 1, + ACTIONS(1403), 1, sym__block_close, - STATE(528), 1, + STATE(459), 1, aux_sym__list_definition_repeat1, - STATE(804), 1, + STATE(769), 1, sym__list_item_definition, - [12877] = 4, + [11402] = 4, ACTIONS(33), 1, sym_list_marker_decimal_period, - ACTIONS(1500), 1, + ACTIONS(1405), 1, sym__block_close, - STATE(530), 1, + STATE(504), 1, aux_sym__list_decimal_period_repeat1, - STATE(837), 1, + STATE(776), 1, sym__list_item_decimal_period, - [12890] = 4, + [11415] = 4, ACTIONS(43), 1, sym_list_marker_decimal_paren, - ACTIONS(1502), 1, + ACTIONS(1407), 1, sym__block_close, - STATE(532), 1, + STATE(506), 1, aux_sym__list_decimal_paren_repeat1, - STATE(703), 1, + STATE(790), 1, sym__list_item_decimal_paren, - [12903] = 4, + [11428] = 4, ACTIONS(53), 1, sym_list_marker_decimal_parens, - ACTIONS(1504), 1, + ACTIONS(1409), 1, sym__block_close, - STATE(534), 1, + STATE(479), 1, aux_sym__list_decimal_parens_repeat1, - STATE(715), 1, + STATE(793), 1, sym__list_item_decimal_parens, - [12916] = 4, + [11441] = 4, ACTIONS(35), 1, sym_list_marker_lower_alpha_period, - ACTIONS(1506), 1, + ACTIONS(1411), 1, sym__block_close, - STATE(552), 1, + STATE(478), 1, aux_sym__list_lower_alpha_period_repeat1, - STATE(739), 1, + STATE(822), 1, sym__list_item_lower_alpha_period, - [12929] = 4, + [11454] = 4, ACTIONS(45), 1, sym_list_marker_lower_alpha_paren, - ACTIONS(1508), 1, + ACTIONS(1413), 1, sym__block_close, - STATE(554), 1, + STATE(503), 1, aux_sym__list_lower_alpha_paren_repeat1, - STATE(754), 1, + STATE(684), 1, sym__list_item_lower_alpha_paren, - [12942] = 4, + [11467] = 4, ACTIONS(55), 1, sym_list_marker_lower_alpha_parens, - ACTIONS(1510), 1, + ACTIONS(1415), 1, sym__block_close, - STATE(556), 1, + STATE(451), 1, aux_sym__list_lower_alpha_parens_repeat1, - STATE(755), 1, + STATE(688), 1, sym__list_item_lower_alpha_parens, - [12955] = 4, + [11480] = 4, ACTIONS(37), 1, sym_list_marker_upper_alpha_period, - ACTIONS(1512), 1, + ACTIONS(1417), 1, sym__block_close, - STATE(558), 1, + STATE(455), 1, aux_sym__list_upper_alpha_period_repeat1, - STATE(758), 1, + STATE(704), 1, sym__list_item_upper_alpha_period, - [12968] = 4, + [11493] = 4, ACTIONS(47), 1, sym_list_marker_upper_alpha_paren, - ACTIONS(1514), 1, + ACTIONS(1419), 1, sym__block_close, - STATE(560), 1, + STATE(487), 1, aux_sym__list_upper_alpha_paren_repeat1, - STATE(759), 1, + STATE(705), 1, sym__list_item_upper_alpha_paren, - [12981] = 4, + [11506] = 4, ACTIONS(57), 1, sym_list_marker_upper_alpha_parens, - ACTIONS(1516), 1, + ACTIONS(1421), 1, sym__block_close, - STATE(562), 1, + STATE(519), 1, aux_sym__list_upper_alpha_parens_repeat1, - STATE(766), 1, + STATE(711), 1, sym__list_item_upper_alpha_parens, - [12994] = 4, + [11519] = 4, ACTIONS(39), 1, sym_list_marker_lower_roman_period, - ACTIONS(1518), 1, + ACTIONS(1423), 1, sym__block_close, - STATE(564), 1, + STATE(522), 1, aux_sym__list_lower_roman_period_repeat1, - STATE(768), 1, + STATE(712), 1, sym__list_item_lower_roman_period, - [13007] = 4, + [11532] = 4, ACTIONS(49), 1, sym_list_marker_lower_roman_paren, - ACTIONS(1520), 1, + ACTIONS(1425), 1, sym__block_close, - STATE(566), 1, + STATE(525), 1, aux_sym__list_lower_roman_paren_repeat1, - STATE(770), 1, + STATE(726), 1, sym__list_item_lower_roman_paren, - [13020] = 4, + [11545] = 4, ACTIONS(59), 1, sym_list_marker_lower_roman_parens, - ACTIONS(1522), 1, + ACTIONS(1427), 1, sym__block_close, - STATE(568), 1, + STATE(529), 1, aux_sym__list_lower_roman_parens_repeat1, - STATE(773), 1, + STATE(728), 1, sym__list_item_lower_roman_parens, - [13033] = 4, + [11558] = 4, ACTIONS(41), 1, sym_list_marker_upper_roman_period, - ACTIONS(1524), 1, + ACTIONS(1429), 1, sym__block_close, - STATE(571), 1, + STATE(532), 1, aux_sym__list_upper_roman_period_repeat1, - STATE(775), 1, + STATE(734), 1, sym__list_item_upper_roman_period, - [13046] = 4, + [11571] = 4, ACTIONS(51), 1, sym_list_marker_upper_roman_paren, - ACTIONS(1526), 1, + ACTIONS(1431), 1, sym__block_close, - STATE(573), 1, + STATE(536), 1, aux_sym__list_upper_roman_paren_repeat1, - STATE(791), 1, + STATE(830), 1, sym__list_item_upper_roman_paren, - [13059] = 4, + [11584] = 4, ACTIONS(61), 1, sym_list_marker_upper_roman_parens, - ACTIONS(1528), 1, + ACTIONS(1433), 1, sym__block_close, - STATE(577), 1, + STATE(540), 1, aux_sym__list_upper_roman_parens_repeat1, - STATE(793), 1, + STATE(725), 1, + sym__list_item_upper_roman_parens, + [11597] = 4, + ACTIONS(51), 1, + sym_list_marker_upper_roman_paren, + ACTIONS(1435), 1, + sym__block_close, + STATE(536), 1, + aux_sym__list_upper_roman_paren_repeat1, + STATE(830), 1, + sym__list_item_upper_roman_paren, + [11610] = 4, + ACTIONS(61), 1, + sym_list_marker_upper_roman_parens, + ACTIONS(1437), 1, + sym__block_close, + STATE(540), 1, + aux_sym__list_upper_roman_parens_repeat1, + STATE(725), 1, sym__list_item_upper_roman_parens, - [13072] = 3, - ACTIONS(1530), 1, + [11623] = 2, + ACTIONS(1439), 1, + sym__div_end, + ACTIONS(556), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [11632] = 2, + ACTIONS(1441), 1, + sym__code_block_end, + ACTIONS(562), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [11641] = 3, + ACTIONS(1443), 1, + anon_sym_PERCENT, + STATE(458), 1, + aux_sym__comment_no_newline_repeat1, + ACTIONS(1445), 2, + sym_backslash_escape, + aux_sym__comment_no_newline_token1, + [11652] = 2, + ACTIONS(1447), 1, + sym__code_block_end, + ACTIONS(568), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [11661] = 2, + ACTIONS(1449), 1, + sym__code_block_end, + ACTIONS(574), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [11670] = 4, + ACTIONS(31), 1, + sym_list_marker_definition, + ACTIONS(1451), 1, + sym__block_close, + STATE(459), 1, + aux_sym__list_definition_repeat1, + STATE(769), 1, + sym__list_item_definition, + [11683] = 4, + ACTIONS(43), 1, + sym_list_marker_decimal_paren, + ACTIONS(1453), 1, + sym__block_close, + STATE(506), 1, + aux_sym__list_decimal_paren_repeat1, + STATE(790), 1, + sym__list_item_decimal_paren, + [11696] = 3, + ACTIONS(1455), 1, aux_sym__line_token1, - ACTIONS(1533), 1, - sym_frontmatter_marker, - STATE(495), 2, + STATE(1133), 1, + sym_frontmatter_content, + STATE(476), 2, sym__line, aux_sym_frontmatter_content_repeat1, - [13083] = 4, + [11707] = 4, + ACTIONS(1457), 1, + sym__block_close, + ACTIONS(1459), 1, + sym_list_marker_lower_alpha_parens, + STATE(451), 1, + aux_sym__list_lower_alpha_parens_repeat1, + STATE(688), 1, + sym__list_item_lower_alpha_parens, + [11720] = 2, + ACTIONS(1462), 1, + sym__div_end, + ACTIONS(592), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [11729] = 2, + ACTIONS(1464), 1, + sym__code_block_end, + ACTIONS(598), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [11738] = 2, + ACTIONS(1466), 1, + sym__code_block_end, + ACTIONS(604), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [11747] = 4, + ACTIONS(1468), 1, + sym__block_close, + ACTIONS(1470), 1, + sym_list_marker_upper_alpha_period, + STATE(455), 1, + aux_sym__list_upper_alpha_period_repeat1, + STATE(704), 1, + sym__list_item_upper_alpha_period, + [11760] = 2, + ACTIONS(1473), 1, + sym__eof_or_newline, + ACTIONS(610), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [11769] = 1, + ACTIONS(460), 4, + sym__block_quote_continuation, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + [11776] = 3, + ACTIONS(1475), 1, + anon_sym_PERCENT, + STATE(480), 1, + aux_sym__comment_no_newline_repeat1, + ACTIONS(1445), 2, + sym_backslash_escape, + aux_sym__comment_no_newline_token1, + [11787] = 4, + ACTIONS(1477), 1, + sym__block_close, + ACTIONS(1479), 1, + sym_list_marker_definition, + STATE(459), 1, + aux_sym__list_definition_repeat1, + STATE(769), 1, + sym__list_item_definition, + [11800] = 4, ACTIONS(31), 1, sym_list_marker_definition, - ACTIONS(1535), 1, + ACTIONS(1482), 1, sym__block_close, - STATE(528), 1, + STATE(459), 1, aux_sym__list_definition_repeat1, - STATE(804), 1, + STATE(769), 1, sym__list_item_definition, - [13096] = 4, + [11813] = 4, ACTIONS(33), 1, sym_list_marker_decimal_period, - ACTIONS(1537), 1, + ACTIONS(1484), 1, sym__block_close, - STATE(530), 1, + STATE(504), 1, aux_sym__list_decimal_period_repeat1, - STATE(837), 1, + STATE(776), 1, sym__list_item_decimal_period, - [13109] = 4, + [11826] = 4, ACTIONS(43), 1, sym_list_marker_decimal_paren, - ACTIONS(1539), 1, + ACTIONS(1486), 1, sym__block_close, - STATE(532), 1, + STATE(506), 1, aux_sym__list_decimal_paren_repeat1, - STATE(703), 1, + STATE(790), 1, sym__list_item_decimal_paren, - [13122] = 4, + [11839] = 4, ACTIONS(53), 1, sym_list_marker_decimal_parens, - ACTIONS(1541), 1, + ACTIONS(1488), 1, sym__block_close, - STATE(534), 1, + STATE(479), 1, aux_sym__list_decimal_parens_repeat1, - STATE(715), 1, + STATE(793), 1, sym__list_item_decimal_parens, - [13135] = 4, + [11852] = 4, ACTIONS(35), 1, sym_list_marker_lower_alpha_period, - ACTIONS(1543), 1, + ACTIONS(1490), 1, sym__block_close, - STATE(552), 1, + STATE(478), 1, aux_sym__list_lower_alpha_period_repeat1, - STATE(739), 1, + STATE(822), 1, sym__list_item_lower_alpha_period, - [13148] = 4, + [11865] = 4, ACTIONS(45), 1, sym_list_marker_lower_alpha_paren, - ACTIONS(1545), 1, + ACTIONS(1492), 1, sym__block_close, - STATE(554), 1, + STATE(503), 1, aux_sym__list_lower_alpha_paren_repeat1, - STATE(754), 1, + STATE(684), 1, sym__list_item_lower_alpha_paren, - [13161] = 4, + [11878] = 4, ACTIONS(55), 1, sym_list_marker_lower_alpha_parens, - ACTIONS(1547), 1, + ACTIONS(1494), 1, sym__block_close, - STATE(556), 1, + STATE(451), 1, aux_sym__list_lower_alpha_parens_repeat1, - STATE(755), 1, + STATE(688), 1, sym__list_item_lower_alpha_parens, - [13174] = 4, + [11891] = 4, ACTIONS(37), 1, sym_list_marker_upper_alpha_period, - ACTIONS(1549), 1, + ACTIONS(1496), 1, sym__block_close, - STATE(558), 1, + STATE(455), 1, aux_sym__list_upper_alpha_period_repeat1, - STATE(758), 1, + STATE(704), 1, sym__list_item_upper_alpha_period, - [13187] = 4, + [11904] = 4, ACTIONS(47), 1, sym_list_marker_upper_alpha_paren, - ACTIONS(1551), 1, + ACTIONS(1498), 1, sym__block_close, - STATE(560), 1, + STATE(487), 1, aux_sym__list_upper_alpha_paren_repeat1, - STATE(759), 1, + STATE(705), 1, sym__list_item_upper_alpha_paren, - [13200] = 4, + [11917] = 4, ACTIONS(57), 1, sym_list_marker_upper_alpha_parens, - ACTIONS(1553), 1, + ACTIONS(1500), 1, sym__block_close, - STATE(562), 1, + STATE(519), 1, aux_sym__list_upper_alpha_parens_repeat1, - STATE(766), 1, + STATE(711), 1, sym__list_item_upper_alpha_parens, - [13213] = 4, + [11930] = 4, ACTIONS(39), 1, sym_list_marker_lower_roman_period, - ACTIONS(1555), 1, + ACTIONS(1502), 1, sym__block_close, - STATE(564), 1, + STATE(522), 1, aux_sym__list_lower_roman_period_repeat1, - STATE(768), 1, + STATE(712), 1, sym__list_item_lower_roman_period, - [13226] = 4, + [11943] = 4, ACTIONS(49), 1, sym_list_marker_lower_roman_paren, - ACTIONS(1557), 1, + ACTIONS(1504), 1, sym__block_close, - STATE(566), 1, + STATE(525), 1, aux_sym__list_lower_roman_paren_repeat1, - STATE(770), 1, + STATE(726), 1, sym__list_item_lower_roman_paren, - [13239] = 4, + [11956] = 4, ACTIONS(59), 1, sym_list_marker_lower_roman_parens, - ACTIONS(1559), 1, + ACTIONS(1506), 1, sym__block_close, - STATE(568), 1, + STATE(529), 1, aux_sym__list_lower_roman_parens_repeat1, - STATE(773), 1, + STATE(728), 1, sym__list_item_lower_roman_parens, - [13252] = 4, + [11969] = 4, ACTIONS(41), 1, sym_list_marker_upper_roman_period, - ACTIONS(1561), 1, + ACTIONS(1508), 1, sym__block_close, - STATE(571), 1, + STATE(532), 1, aux_sym__list_upper_roman_period_repeat1, - STATE(775), 1, + STATE(734), 1, sym__list_item_upper_roman_period, - [13265] = 4, + [11982] = 4, ACTIONS(51), 1, sym_list_marker_upper_roman_paren, - ACTIONS(1563), 1, + ACTIONS(1510), 1, sym__block_close, - STATE(573), 1, + STATE(536), 1, aux_sym__list_upper_roman_paren_repeat1, - STATE(791), 1, + STATE(830), 1, sym__list_item_upper_roman_paren, - [13278] = 4, + [11995] = 4, ACTIONS(61), 1, sym_list_marker_upper_roman_parens, - ACTIONS(1565), 1, + ACTIONS(1512), 1, sym__block_close, - STATE(577), 1, + STATE(540), 1, aux_sym__list_upper_roman_parens_repeat1, - STATE(793), 1, + STATE(725), 1, sym__list_item_upper_roman_parens, - [13291] = 4, + [12008] = 3, + ACTIONS(1455), 1, + aux_sym__line_token1, + ACTIONS(1514), 1, + sym_frontmatter_marker, + STATE(524), 2, + sym__line, + aux_sym_frontmatter_content_repeat1, + [12019] = 3, + ACTIONS(1455), 1, + aux_sym__line_token1, + STATE(1108), 1, + sym_frontmatter_content, + STATE(476), 2, + sym__line, + aux_sym_frontmatter_content_repeat1, + [12030] = 4, + ACTIONS(1516), 1, + sym__block_close, + ACTIONS(1518), 1, + sym_list_marker_lower_alpha_period, + STATE(478), 1, + aux_sym__list_lower_alpha_period_repeat1, + STATE(822), 1, + sym__list_item_lower_alpha_period, + [12043] = 4, + ACTIONS(1521), 1, + sym__block_close, + ACTIONS(1523), 1, + sym_list_marker_decimal_parens, + STATE(479), 1, + aux_sym__list_decimal_parens_repeat1, + STATE(793), 1, + sym__list_item_decimal_parens, + [12056] = 3, + ACTIONS(1526), 1, + anon_sym_PERCENT, + STATE(480), 1, + aux_sym__comment_no_newline_repeat1, + ACTIONS(1528), 2, + sym_backslash_escape, + aux_sym__comment_no_newline_token1, + [12067] = 4, + ACTIONS(33), 1, + sym_list_marker_decimal_period, + ACTIONS(1531), 1, + sym__block_close, + STATE(504), 1, + aux_sym__list_decimal_period_repeat1, + STATE(776), 1, + sym__list_item_decimal_period, + [12080] = 2, + ACTIONS(1533), 1, + sym__div_end, + ACTIONS(622), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [12089] = 2, + ACTIONS(1535), 1, + sym__code_block_end, + ACTIONS(632), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [12098] = 4, ACTIONS(31), 1, sym_list_marker_definition, - ACTIONS(1567), 1, + ACTIONS(1537), 1, sym__block_close, - STATE(528), 1, + STATE(459), 1, aux_sym__list_definition_repeat1, - STATE(804), 1, + STATE(769), 1, sym__list_item_definition, - [13304] = 4, + [12111] = 4, ACTIONS(33), 1, sym_list_marker_decimal_period, - ACTIONS(1569), 1, + ACTIONS(1539), 1, sym__block_close, - STATE(530), 1, + STATE(504), 1, aux_sym__list_decimal_period_repeat1, - STATE(837), 1, + STATE(776), 1, sym__list_item_decimal_period, - [13317] = 4, - ACTIONS(43), 1, - sym_list_marker_decimal_paren, - ACTIONS(1571), 1, + [12124] = 4, + ACTIONS(53), 1, + sym_list_marker_decimal_parens, + ACTIONS(1541), 1, sym__block_close, - STATE(532), 1, - aux_sym__list_decimal_paren_repeat1, - STATE(703), 1, - sym__list_item_decimal_paren, - [13330] = 4, + STATE(479), 1, + aux_sym__list_decimal_parens_repeat1, + STATE(793), 1, + sym__list_item_decimal_parens, + [12137] = 4, + ACTIONS(1543), 1, + sym__block_close, + ACTIONS(1545), 1, + sym_list_marker_upper_alpha_paren, + STATE(487), 1, + aux_sym__list_upper_alpha_paren_repeat1, + STATE(705), 1, + sym__list_item_upper_alpha_paren, + [12150] = 4, + ACTIONS(61), 1, + sym_list_marker_upper_roman_parens, + ACTIONS(1548), 1, + sym__block_close, + STATE(540), 1, + aux_sym__list_upper_roman_parens_repeat1, + STATE(725), 1, + sym__list_item_upper_roman_parens, + [12163] = 4, ACTIONS(53), 1, sym_list_marker_decimal_parens, - ACTIONS(1573), 1, + ACTIONS(1550), 1, sym__block_close, - STATE(534), 1, + STATE(479), 1, aux_sym__list_decimal_parens_repeat1, - STATE(715), 1, + STATE(793), 1, sym__list_item_decimal_parens, - [13343] = 4, + [12176] = 4, ACTIONS(35), 1, sym_list_marker_lower_alpha_period, - ACTIONS(1575), 1, + ACTIONS(1552), 1, sym__block_close, - STATE(552), 1, + STATE(478), 1, aux_sym__list_lower_alpha_period_repeat1, - STATE(739), 1, + STATE(822), 1, sym__list_item_lower_alpha_period, - [13356] = 4, + [12189] = 4, ACTIONS(45), 1, sym_list_marker_lower_alpha_paren, - ACTIONS(1577), 1, + ACTIONS(1554), 1, sym__block_close, - STATE(554), 1, + STATE(503), 1, aux_sym__list_lower_alpha_paren_repeat1, - STATE(754), 1, + STATE(684), 1, sym__list_item_lower_alpha_paren, - [13369] = 4, + [12202] = 4, ACTIONS(55), 1, sym_list_marker_lower_alpha_parens, - ACTIONS(1579), 1, + ACTIONS(1556), 1, sym__block_close, - STATE(556), 1, + STATE(451), 1, aux_sym__list_lower_alpha_parens_repeat1, - STATE(755), 1, + STATE(688), 1, sym__list_item_lower_alpha_parens, - [13382] = 4, + [12215] = 4, ACTIONS(37), 1, sym_list_marker_upper_alpha_period, - ACTIONS(1581), 1, + ACTIONS(1558), 1, sym__block_close, - STATE(558), 1, + STATE(455), 1, aux_sym__list_upper_alpha_period_repeat1, - STATE(758), 1, + STATE(704), 1, sym__list_item_upper_alpha_period, - [13395] = 4, + [12228] = 4, ACTIONS(47), 1, sym_list_marker_upper_alpha_paren, - ACTIONS(1583), 1, + ACTIONS(1560), 1, sym__block_close, - STATE(560), 1, + STATE(487), 1, aux_sym__list_upper_alpha_paren_repeat1, - STATE(759), 1, + STATE(705), 1, sym__list_item_upper_alpha_paren, - [13408] = 4, + [12241] = 4, ACTIONS(57), 1, sym_list_marker_upper_alpha_parens, - ACTIONS(1585), 1, + ACTIONS(1562), 1, sym__block_close, - STATE(562), 1, + STATE(519), 1, aux_sym__list_upper_alpha_parens_repeat1, - STATE(766), 1, + STATE(711), 1, sym__list_item_upper_alpha_parens, - [13421] = 4, - ACTIONS(1457), 1, - anon_sym_EQ, - ACTIONS(1587), 1, - sym_language, - ACTIONS(1589), 1, - sym__newline, - STATE(1088), 1, - sym_raw_block_info, - [13434] = 4, + [12254] = 4, + ACTIONS(39), 1, + sym_list_marker_lower_roman_period, + ACTIONS(1564), 1, + sym__block_close, + STATE(522), 1, + aux_sym__list_lower_roman_period_repeat1, + STATE(712), 1, + sym__list_item_lower_roman_period, + [12267] = 4, ACTIONS(49), 1, sym_list_marker_lower_roman_paren, - ACTIONS(1591), 1, + ACTIONS(1566), 1, sym__block_close, - STATE(566), 1, + STATE(525), 1, aux_sym__list_lower_roman_paren_repeat1, - STATE(770), 1, + STATE(726), 1, sym__list_item_lower_roman_paren, - [13447] = 4, + [12280] = 4, ACTIONS(59), 1, sym_list_marker_lower_roman_parens, - ACTIONS(1593), 1, + ACTIONS(1568), 1, sym__block_close, - STATE(568), 1, + STATE(529), 1, aux_sym__list_lower_roman_parens_repeat1, - STATE(773), 1, + STATE(728), 1, sym__list_item_lower_roman_parens, - [13460] = 4, + [12293] = 4, ACTIONS(41), 1, sym_list_marker_upper_roman_period, - ACTIONS(1595), 1, + ACTIONS(1570), 1, sym__block_close, - STATE(571), 1, + STATE(532), 1, aux_sym__list_upper_roman_period_repeat1, - STATE(775), 1, + STATE(734), 1, sym__list_item_upper_roman_period, - [13473] = 4, + [12306] = 4, ACTIONS(51), 1, sym_list_marker_upper_roman_paren, - ACTIONS(1597), 1, + ACTIONS(1572), 1, sym__block_close, - STATE(573), 1, + STATE(536), 1, aux_sym__list_upper_roman_paren_repeat1, - STATE(791), 1, + STATE(830), 1, sym__list_item_upper_roman_paren, - [13486] = 4, + [12319] = 4, ACTIONS(61), 1, sym_list_marker_upper_roman_parens, - ACTIONS(1599), 1, + ACTIONS(1574), 1, sym__block_close, - STATE(577), 1, + STATE(540), 1, aux_sym__list_upper_roman_parens_repeat1, - STATE(793), 1, + STATE(725), 1, sym__list_item_upper_roman_parens, - [13499] = 4, - ACTIONS(1601), 1, + [12332] = 3, + ACTIONS(950), 1, + sym__table_caption_begin, + STATE(827), 1, + sym_table_caption, + ACTIONS(536), 2, sym__block_close, - ACTIONS(1603), 1, - sym_list_marker_definition, - STATE(528), 1, - aux_sym__list_definition_repeat1, - STATE(804), 1, - sym__list_item_definition, - [13512] = 4, - ACTIONS(31), 1, - sym_list_marker_definition, - ACTIONS(1606), 1, + sym__block_quote_continuation, + [12343] = 4, + ACTIONS(1576), 1, sym__block_close, - STATE(528), 1, - aux_sym__list_definition_repeat1, - STATE(804), 1, - sym__list_item_definition, - [13525] = 4, - ACTIONS(1608), 1, + ACTIONS(1578), 1, + sym_list_marker_lower_alpha_paren, + STATE(503), 1, + aux_sym__list_lower_alpha_paren_repeat1, + STATE(684), 1, + sym__list_item_lower_alpha_paren, + [12356] = 4, + ACTIONS(1581), 1, sym__block_close, - ACTIONS(1610), 1, - sym_list_marker_decimal_period, - STATE(530), 1, - aux_sym__list_decimal_period_repeat1, - STATE(837), 1, - sym__list_item_decimal_period, - [13538] = 4, - ACTIONS(33), 1, + ACTIONS(1583), 1, sym_list_marker_decimal_period, - ACTIONS(1613), 1, - sym__block_close, - STATE(530), 1, + STATE(504), 1, aux_sym__list_decimal_period_repeat1, - STATE(837), 1, + STATE(776), 1, sym__list_item_decimal_period, - [13551] = 4, - ACTIONS(1615), 1, + [12369] = 4, + ACTIONS(1586), 1, + anon_sym_EQ, + ACTIONS(1588), 1, + sym_language, + ACTIONS(1590), 1, + sym__newline, + STATE(1000), 1, + sym_raw_block_info, + [12382] = 4, + ACTIONS(1592), 1, sym__block_close, - ACTIONS(1617), 1, - sym_list_marker_decimal_paren, - STATE(532), 1, - aux_sym__list_decimal_paren_repeat1, - STATE(703), 1, - sym__list_item_decimal_paren, - [13564] = 4, - ACTIONS(43), 1, + ACTIONS(1594), 1, sym_list_marker_decimal_paren, - ACTIONS(1620), 1, - sym__block_close, - STATE(532), 1, + STATE(506), 1, aux_sym__list_decimal_paren_repeat1, - STATE(703), 1, + STATE(790), 1, sym__list_item_decimal_paren, - [13577] = 4, - ACTIONS(1622), 1, - sym__block_close, - ACTIONS(1624), 1, - sym_list_marker_decimal_parens, - STATE(534), 1, - aux_sym__list_decimal_parens_repeat1, - STATE(715), 1, - sym__list_item_decimal_parens, - [13590] = 4, - ACTIONS(53), 1, - sym_list_marker_decimal_parens, - ACTIONS(1627), 1, - sym__block_close, - STATE(534), 1, - aux_sym__list_decimal_parens_repeat1, - STATE(715), 1, - sym__list_item_decimal_parens, - [13603] = 4, + [12395] = 2, + ACTIONS(1597), 1, + sym__div_end, + ACTIONS(550), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [12404] = 4, ACTIONS(31), 1, sym_list_marker_definition, - ACTIONS(1629), 1, + ACTIONS(1599), 1, sym__block_close, - STATE(528), 1, + STATE(459), 1, aux_sym__list_definition_repeat1, - STATE(804), 1, + STATE(769), 1, sym__list_item_definition, - [13616] = 4, + [12417] = 4, ACTIONS(33), 1, sym_list_marker_decimal_period, - ACTIONS(1631), 1, + ACTIONS(1601), 1, sym__block_close, - STATE(530), 1, + STATE(504), 1, aux_sym__list_decimal_period_repeat1, - STATE(837), 1, + STATE(776), 1, sym__list_item_decimal_period, - [13629] = 4, + [12430] = 4, ACTIONS(43), 1, sym_list_marker_decimal_paren, - ACTIONS(1633), 1, + ACTIONS(1603), 1, sym__block_close, - STATE(532), 1, + STATE(506), 1, aux_sym__list_decimal_paren_repeat1, - STATE(703), 1, + STATE(790), 1, sym__list_item_decimal_paren, - [13642] = 4, + [12443] = 4, ACTIONS(53), 1, sym_list_marker_decimal_parens, - ACTIONS(1635), 1, + ACTIONS(1605), 1, sym__block_close, - STATE(534), 1, + STATE(479), 1, aux_sym__list_decimal_parens_repeat1, - STATE(715), 1, + STATE(793), 1, sym__list_item_decimal_parens, - [13655] = 4, + [12456] = 4, ACTIONS(35), 1, sym_list_marker_lower_alpha_period, - ACTIONS(1637), 1, + ACTIONS(1607), 1, sym__block_close, - STATE(552), 1, + STATE(478), 1, aux_sym__list_lower_alpha_period_repeat1, - STATE(739), 1, + STATE(822), 1, sym__list_item_lower_alpha_period, - [13668] = 4, + [12469] = 4, ACTIONS(45), 1, sym_list_marker_lower_alpha_paren, - ACTIONS(1639), 1, + ACTIONS(1609), 1, sym__block_close, - STATE(554), 1, + STATE(503), 1, aux_sym__list_lower_alpha_paren_repeat1, - STATE(754), 1, + STATE(684), 1, sym__list_item_lower_alpha_paren, - [13681] = 4, + [12482] = 4, ACTIONS(55), 1, sym_list_marker_lower_alpha_parens, - ACTIONS(1641), 1, + ACTIONS(1611), 1, sym__block_close, - STATE(556), 1, + STATE(451), 1, aux_sym__list_lower_alpha_parens_repeat1, - STATE(755), 1, + STATE(688), 1, sym__list_item_lower_alpha_parens, - [13694] = 4, + [12495] = 4, ACTIONS(37), 1, sym_list_marker_upper_alpha_period, - ACTIONS(1643), 1, + ACTIONS(1613), 1, sym__block_close, - STATE(558), 1, + STATE(455), 1, aux_sym__list_upper_alpha_period_repeat1, - STATE(758), 1, + STATE(704), 1, sym__list_item_upper_alpha_period, - [13707] = 4, + [12508] = 4, ACTIONS(47), 1, sym_list_marker_upper_alpha_paren, - ACTIONS(1645), 1, + ACTIONS(1615), 1, sym__block_close, - STATE(560), 1, + STATE(487), 1, aux_sym__list_upper_alpha_paren_repeat1, - STATE(759), 1, + STATE(705), 1, sym__list_item_upper_alpha_paren, - [13720] = 4, + [12521] = 4, ACTIONS(57), 1, sym_list_marker_upper_alpha_parens, - ACTIONS(1647), 1, + ACTIONS(1617), 1, sym__block_close, - STATE(562), 1, + STATE(519), 1, aux_sym__list_upper_alpha_parens_repeat1, - STATE(766), 1, + STATE(711), 1, sym__list_item_upper_alpha_parens, - [13733] = 4, - ACTIONS(39), 1, - sym_list_marker_lower_roman_period, - ACTIONS(1649), 1, - sym__block_close, - STATE(564), 1, - aux_sym__list_lower_roman_period_repeat1, - STATE(768), 1, - sym__list_item_lower_roman_period, - [13746] = 4, - ACTIONS(49), 1, - sym_list_marker_lower_roman_paren, - ACTIONS(1651), 1, - sym__block_close, - STATE(566), 1, - aux_sym__list_lower_roman_paren_repeat1, - STATE(770), 1, - sym__list_item_lower_roman_paren, - [13759] = 4, - ACTIONS(59), 1, - sym_list_marker_lower_roman_parens, - ACTIONS(1653), 1, - sym__block_close, - STATE(568), 1, - aux_sym__list_lower_roman_parens_repeat1, - STATE(773), 1, - sym__list_item_lower_roman_parens, - [13772] = 4, - ACTIONS(41), 1, - sym_list_marker_upper_roman_period, - ACTIONS(1655), 1, - sym__block_close, - STATE(571), 1, - aux_sym__list_upper_roman_period_repeat1, - STATE(775), 1, - sym__list_item_upper_roman_period, - [13785] = 4, - ACTIONS(51), 1, - sym_list_marker_upper_roman_paren, - ACTIONS(1657), 1, - sym__block_close, - STATE(573), 1, - aux_sym__list_upper_roman_paren_repeat1, - STATE(791), 1, - sym__list_item_upper_roman_paren, - [13798] = 4, - ACTIONS(61), 1, - sym_list_marker_upper_roman_parens, - ACTIONS(1659), 1, - sym__block_close, - STATE(577), 1, - aux_sym__list_upper_roman_parens_repeat1, - STATE(793), 1, - sym__list_item_upper_roman_parens, - [13811] = 4, - ACTIONS(1661), 1, - sym__block_close, - ACTIONS(1663), 1, - sym_list_marker_lower_alpha_period, - STATE(552), 1, - aux_sym__list_lower_alpha_period_repeat1, - STATE(739), 1, - sym__list_item_lower_alpha_period, - [13824] = 4, + [12534] = 4, ACTIONS(35), 1, sym_list_marker_lower_alpha_period, - ACTIONS(1666), 1, + ACTIONS(1619), 1, sym__block_close, - STATE(552), 1, + STATE(478), 1, aux_sym__list_lower_alpha_period_repeat1, - STATE(739), 1, + STATE(822), 1, sym__list_item_lower_alpha_period, - [13837] = 4, - ACTIONS(1668), 1, + [12547] = 4, + ACTIONS(1621), 1, sym__block_close, - ACTIONS(1670), 1, - sym_list_marker_lower_alpha_paren, - STATE(554), 1, - aux_sym__list_lower_alpha_paren_repeat1, - STATE(754), 1, - sym__list_item_lower_alpha_paren, - [13850] = 4, + ACTIONS(1623), 1, + sym_list_marker_upper_alpha_parens, + STATE(519), 1, + aux_sym__list_upper_alpha_parens_repeat1, + STATE(711), 1, + sym__list_item_upper_alpha_parens, + [12560] = 4, ACTIONS(45), 1, sym_list_marker_lower_alpha_paren, - ACTIONS(1673), 1, + ACTIONS(1626), 1, sym__block_close, - STATE(554), 1, + STATE(503), 1, aux_sym__list_lower_alpha_paren_repeat1, - STATE(754), 1, + STATE(684), 1, sym__list_item_lower_alpha_paren, - [13863] = 4, - ACTIONS(1675), 1, + [12573] = 4, + ACTIONS(1586), 1, + anon_sym_EQ, + ACTIONS(1628), 1, + sym_language, + ACTIONS(1630), 1, + sym__newline, + STATE(1028), 1, + sym_raw_block_info, + [12586] = 4, + ACTIONS(1632), 1, sym__block_close, - ACTIONS(1677), 1, - sym_list_marker_lower_alpha_parens, - STATE(556), 1, - aux_sym__list_lower_alpha_parens_repeat1, - STATE(755), 1, - sym__list_item_lower_alpha_parens, - [13876] = 4, + ACTIONS(1634), 1, + sym_list_marker_lower_roman_period, + STATE(522), 1, + aux_sym__list_lower_roman_period_repeat1, + STATE(712), 1, + sym__list_item_lower_roman_period, + [12599] = 4, ACTIONS(55), 1, sym_list_marker_lower_alpha_parens, - ACTIONS(1680), 1, + ACTIONS(1637), 1, sym__block_close, - STATE(556), 1, + STATE(451), 1, aux_sym__list_lower_alpha_parens_repeat1, - STATE(755), 1, + STATE(688), 1, sym__list_item_lower_alpha_parens, - [13889] = 4, - ACTIONS(1682), 1, - sym__block_close, - ACTIONS(1684), 1, - sym_list_marker_upper_alpha_period, - STATE(558), 1, - aux_sym__list_upper_alpha_period_repeat1, - STATE(758), 1, - sym__list_item_upper_alpha_period, - [13902] = 4, - ACTIONS(37), 1, - sym_list_marker_upper_alpha_period, - ACTIONS(1687), 1, - sym__block_close, - STATE(558), 1, - aux_sym__list_upper_alpha_period_repeat1, - STATE(758), 1, - sym__list_item_upper_alpha_period, - [13915] = 4, - ACTIONS(1689), 1, - sym__block_close, - ACTIONS(1691), 1, - sym_list_marker_upper_alpha_paren, - STATE(560), 1, - aux_sym__list_upper_alpha_paren_repeat1, - STATE(759), 1, - sym__list_item_upper_alpha_paren, - [13928] = 4, - ACTIONS(47), 1, - sym_list_marker_upper_alpha_paren, - ACTIONS(1694), 1, - sym__block_close, - STATE(560), 1, - aux_sym__list_upper_alpha_paren_repeat1, - STATE(759), 1, - sym__list_item_upper_alpha_paren, - [13941] = 4, - ACTIONS(1696), 1, - sym__block_close, - ACTIONS(1698), 1, - sym_list_marker_upper_alpha_parens, - STATE(562), 1, - aux_sym__list_upper_alpha_parens_repeat1, - STATE(766), 1, - sym__list_item_upper_alpha_parens, - [13954] = 4, - ACTIONS(57), 1, - sym_list_marker_upper_alpha_parens, - ACTIONS(1701), 1, - sym__block_close, - STATE(562), 1, - aux_sym__list_upper_alpha_parens_repeat1, - STATE(766), 1, - sym__list_item_upper_alpha_parens, - [13967] = 4, - ACTIONS(1703), 1, + [12612] = 3, + ACTIONS(1639), 1, + aux_sym__line_token1, + ACTIONS(1642), 1, + sym_frontmatter_marker, + STATE(524), 2, + sym__line, + aux_sym_frontmatter_content_repeat1, + [12623] = 4, + ACTIONS(1644), 1, sym__block_close, - ACTIONS(1705), 1, - sym_list_marker_lower_roman_period, - STATE(564), 1, - aux_sym__list_lower_roman_period_repeat1, - STATE(768), 1, - sym__list_item_lower_roman_period, - [13980] = 4, + ACTIONS(1646), 1, + sym_list_marker_lower_roman_paren, + STATE(525), 1, + aux_sym__list_lower_roman_paren_repeat1, + STATE(726), 1, + sym__list_item_lower_roman_paren, + [12636] = 4, ACTIONS(39), 1, sym_list_marker_lower_roman_period, - ACTIONS(1708), 1, + ACTIONS(1649), 1, sym__block_close, - STATE(564), 1, + STATE(522), 1, aux_sym__list_lower_roman_period_repeat1, - STATE(768), 1, + STATE(712), 1, sym__list_item_lower_roman_period, - [13993] = 4, - ACTIONS(1710), 1, + [12649] = 4, + ACTIONS(1586), 1, + anon_sym_EQ, + ACTIONS(1651), 1, + sym_language, + ACTIONS(1653), 1, + sym__newline, + STATE(1047), 1, + sym_raw_block_info, + [12662] = 4, + ACTIONS(37), 1, + sym_list_marker_upper_alpha_period, + ACTIONS(1655), 1, sym__block_close, - ACTIONS(1712), 1, - sym_list_marker_lower_roman_paren, - STATE(566), 1, - aux_sym__list_lower_roman_paren_repeat1, - STATE(770), 1, - sym__list_item_lower_roman_paren, - [14006] = 4, + STATE(455), 1, + aux_sym__list_upper_alpha_period_repeat1, + STATE(704), 1, + sym__list_item_upper_alpha_period, + [12675] = 4, + ACTIONS(1657), 1, + sym__block_close, + ACTIONS(1659), 1, + sym_list_marker_lower_roman_parens, + STATE(529), 1, + aux_sym__list_lower_roman_parens_repeat1, + STATE(728), 1, + sym__list_item_lower_roman_parens, + [12688] = 4, + ACTIONS(47), 1, + sym_list_marker_upper_alpha_paren, + ACTIONS(1662), 1, + sym__block_close, + STATE(487), 1, + aux_sym__list_upper_alpha_paren_repeat1, + STATE(705), 1, + sym__list_item_upper_alpha_paren, + [12701] = 4, ACTIONS(49), 1, sym_list_marker_lower_roman_paren, - ACTIONS(1715), 1, + ACTIONS(1664), 1, sym__block_close, - STATE(566), 1, + STATE(525), 1, aux_sym__list_lower_roman_paren_repeat1, - STATE(770), 1, + STATE(726), 1, sym__list_item_lower_roman_paren, - [14019] = 4, - ACTIONS(1717), 1, - sym__block_close, - ACTIONS(1719), 1, - sym_list_marker_lower_roman_parens, - STATE(568), 1, - aux_sym__list_lower_roman_parens_repeat1, - STATE(773), 1, - sym__list_item_lower_roman_parens, - [14032] = 4, - ACTIONS(59), 1, - sym_list_marker_lower_roman_parens, - ACTIONS(1722), 1, + [12714] = 4, + ACTIONS(1666), 1, sym__block_close, - STATE(568), 1, - aux_sym__list_lower_roman_parens_repeat1, - STATE(773), 1, - sym__list_item_lower_roman_parens, - [14045] = 4, - ACTIONS(1457), 1, + ACTIONS(1668), 1, + sym_list_marker_upper_roman_period, + STATE(532), 1, + aux_sym__list_upper_roman_period_repeat1, + STATE(734), 1, + sym__list_item_upper_roman_period, + [12727] = 4, + ACTIONS(1586), 1, anon_sym_EQ, - ACTIONS(1724), 1, + ACTIONS(1671), 1, sym_language, - ACTIONS(1726), 1, + ACTIONS(1673), 1, sym__newline, - STATE(1032), 1, + STATE(1066), 1, sym_raw_block_info, - [14058] = 4, - ACTIONS(1728), 1, + [12740] = 4, + ACTIONS(59), 1, + sym_list_marker_lower_roman_parens, + ACTIONS(1675), 1, sym__block_close, - ACTIONS(1730), 1, - sym_list_marker_upper_roman_period, - STATE(571), 1, - aux_sym__list_upper_roman_period_repeat1, - STATE(775), 1, - sym__list_item_upper_roman_period, - [14071] = 4, - ACTIONS(41), 1, - sym_list_marker_upper_roman_period, - ACTIONS(1733), 1, + STATE(529), 1, + aux_sym__list_lower_roman_parens_repeat1, + STATE(728), 1, + sym__list_item_lower_roman_parens, + [12753] = 4, + ACTIONS(57), 1, + sym_list_marker_upper_alpha_parens, + ACTIONS(1677), 1, sym__block_close, - STATE(571), 1, - aux_sym__list_upper_roman_period_repeat1, - STATE(775), 1, - sym__list_item_upper_roman_period, - [14084] = 4, - ACTIONS(1735), 1, + STATE(519), 1, + aux_sym__list_upper_alpha_parens_repeat1, + STATE(711), 1, + sym__list_item_upper_alpha_parens, + [12766] = 4, + ACTIONS(1679), 1, sym__block_close, - ACTIONS(1737), 1, + ACTIONS(1681), 1, sym_list_marker_upper_roman_paren, - STATE(573), 1, + STATE(536), 1, aux_sym__list_upper_roman_paren_repeat1, - STATE(791), 1, + STATE(830), 1, sym__list_item_upper_roman_paren, - [14097] = 4, - ACTIONS(1457), 1, - anon_sym_EQ, - ACTIONS(1740), 1, - sym_language, - ACTIONS(1742), 1, - sym__newline, - STATE(1051), 1, - sym_raw_block_info, - [14110] = 4, + [12779] = 4, ACTIONS(51), 1, sym_list_marker_upper_roman_paren, - ACTIONS(1744), 1, + ACTIONS(1684), 1, sym__block_close, - STATE(573), 1, + STATE(536), 1, aux_sym__list_upper_roman_paren_repeat1, - STATE(791), 1, + STATE(830), 1, sym__list_item_upper_roman_paren, - [14123] = 4, - ACTIONS(1457), 1, + [12792] = 4, + ACTIONS(1586), 1, anon_sym_EQ, - ACTIONS(1746), 1, + ACTIONS(1686), 1, sym_language, - ACTIONS(1748), 1, + ACTIONS(1688), 1, sym__newline, - STATE(1070), 1, + STATE(1084), 1, sym_raw_block_info, - [14136] = 4, - ACTIONS(1750), 1, + [12805] = 4, + ACTIONS(39), 1, + sym_list_marker_lower_roman_period, + ACTIONS(1690), 1, sym__block_close, - ACTIONS(1752), 1, + STATE(522), 1, + aux_sym__list_lower_roman_period_repeat1, + STATE(712), 1, + sym__list_item_lower_roman_period, + [12818] = 4, + ACTIONS(1692), 1, + sym__block_close, + ACTIONS(1694), 1, sym_list_marker_upper_roman_parens, - STATE(577), 1, + STATE(540), 1, aux_sym__list_upper_roman_parens_repeat1, - STATE(793), 1, + STATE(725), 1, sym__list_item_upper_roman_parens, - [14149] = 4, - ACTIONS(61), 1, - sym_list_marker_upper_roman_parens, - ACTIONS(1755), 1, + [12831] = 4, + ACTIONS(49), 1, + sym_list_marker_lower_roman_paren, + ACTIONS(1697), 1, sym__block_close, - STATE(577), 1, - aux_sym__list_upper_roman_parens_repeat1, - STATE(793), 1, - sym__list_item_upper_roman_parens, - [14162] = 4, - ACTIONS(39), 1, - sym_list_marker_lower_roman_period, - ACTIONS(1757), 1, + STATE(525), 1, + aux_sym__list_lower_roman_paren_repeat1, + STATE(726), 1, + sym__list_item_lower_roman_paren, + [12844] = 4, + ACTIONS(59), 1, + sym_list_marker_lower_roman_parens, + ACTIONS(1699), 1, sym__block_close, - STATE(564), 1, - aux_sym__list_lower_roman_period_repeat1, - STATE(768), 1, - sym__list_item_lower_roman_period, - [14175] = 3, - ACTIONS(536), 1, - sym__indented_content_spacer, - ACTIONS(1001), 1, - sym__table_caption_begin, - STATE(1058), 1, - sym_table_caption, - [14185] = 3, - ACTIONS(1759), 1, - anon_sym_DQUOTE, - ACTIONS(1761), 1, - aux_sym_value_token2, - STATE(441), 1, - sym_value, - [14195] = 3, - ACTIONS(868), 1, - sym_list_marker_plus, - ACTIONS(1763), 1, - sym__block_quote_continuation, - STATE(582), 1, - aux_sym__block_quote_prefix_repeat1, - [14205] = 1, - ACTIONS(776), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [14211] = 1, - ACTIONS(1766), 3, + STATE(529), 1, + aux_sym__list_lower_roman_parens_repeat1, + STATE(728), 1, + sym__list_item_lower_roman_parens, + [12857] = 4, + ACTIONS(41), 1, + sym_list_marker_upper_roman_period, + ACTIONS(1701), 1, sym__block_close, - sym_list_marker_dash, - sym__block_quote_continuation, - [14217] = 1, - ACTIONS(1768), 3, + STATE(532), 1, + aux_sym__list_upper_roman_period_repeat1, + STATE(734), 1, + sym__list_item_upper_roman_period, + [12870] = 4, + ACTIONS(41), 1, + sym_list_marker_upper_roman_period, + ACTIONS(1703), 1, sym__block_close, - sym_list_marker_star, - sym__block_quote_continuation, - [14223] = 1, - ACTIONS(672), 3, + STATE(532), 1, + aux_sym__list_upper_roman_period_repeat1, + STATE(734), 1, + sym__list_item_upper_roman_period, + [12883] = 4, + ACTIONS(43), 1, + sym_list_marker_decimal_paren, + ACTIONS(1705), 1, + sym__block_close, + STATE(506), 1, + aux_sym__list_decimal_paren_repeat1, + STATE(790), 1, + sym__list_item_decimal_paren, + [12896] = 1, + ACTIONS(844), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14229] = 1, - ACTIONS(1770), 3, + [12902] = 1, + ACTIONS(1707), 3, sym__block_close, - sym_list_marker_plus, + sym_list_marker_star, sym__block_quote_continuation, - [14235] = 1, - ACTIONS(1772), 3, + [12908] = 1, + ACTIONS(1709), 3, sym__block_close, - sym__list_marker_task_begin, + sym_list_marker_plus, sym__block_quote_continuation, - [14241] = 1, - ACTIONS(1774), 3, + [12914] = 1, + ACTIONS(1711), 3, sym__block_close, sym__list_marker_task_begin, sym__block_quote_continuation, - [14247] = 1, - ACTIONS(1236), 3, - sym__block_close, - sym__block_quote_continuation, - aux_sym__line_token1, - [14253] = 1, - ACTIONS(1776), 3, - sym__block_close, - sym_list_marker_dash, - sym__block_quote_continuation, - [14259] = 1, - ACTIONS(1412), 3, - sym__list_item_continuation, - sym__list_item_end, + [12920] = 3, + ACTIONS(934), 1, + sym_list_marker_plus, + ACTIONS(1185), 1, sym__block_quote_continuation, - [14265] = 3, - ACTIONS(1778), 1, + STATE(561), 1, + aux_sym__block_quote_prefix_repeat1, + [12930] = 3, + ACTIONS(1713), 1, sym__eof_or_newline, - ACTIONS(1780), 1, + ACTIONS(1715), 1, sym__newline_inline, - STATE(594), 1, + STATE(552), 1, aux_sym__paragraph_inline_content_repeat1, - [14275] = 3, - ACTIONS(1782), 1, + [12940] = 3, + ACTIONS(1717), 1, sym__eof_or_newline, - ACTIONS(1784), 1, + ACTIONS(1719), 1, sym__newline_inline, - STATE(594), 1, + STATE(552), 1, aux_sym__paragraph_inline_content_repeat1, - [14285] = 2, - ACTIONS(1787), 1, - sym__div_end, - ACTIONS(622), 2, + [12950] = 1, + ACTIONS(1722), 3, sym__block_close, + sym_list_marker_dash, sym__block_quote_continuation, - [14293] = 2, - ACTIONS(1789), 1, - sym__code_block_end, - ACTIONS(632), 2, + [12956] = 1, + ACTIONS(1724), 3, sym__block_close, + sym_list_marker_plus, sym__block_quote_continuation, - [14301] = 3, - ACTIONS(1791), 1, + [12962] = 3, + ACTIONS(1715), 1, + sym__newline_inline, + ACTIONS(1726), 1, + sym__eof_or_newline, + STATE(551), 1, + aux_sym__paragraph_inline_content_repeat1, + [12972] = 1, + ACTIONS(1728), 3, sym__block_close, - ACTIONS(1793), 1, + sym_list_marker_star, + sym__block_quote_continuation, + [12978] = 3, + ACTIONS(1730), 1, + sym__block_close, + ACTIONS(1732), 1, sym__heading_continuation, - STATE(597), 1, + STATE(557), 1, aux_sym__heading_content_repeat1, - [14311] = 1, - ACTIONS(1796), 3, + [12988] = 1, + ACTIONS(1735), 3, + sym__block_close, + sym__list_marker_task_begin, + sym__block_quote_continuation, + [12994] = 3, + ACTIONS(1715), 1, + sym__newline_inline, + ACTIONS(1726), 1, + sym__eof_or_newline, + STATE(552), 1, + aux_sym__paragraph_inline_content_repeat1, + [13004] = 1, + ACTIONS(1737), 3, sym__block_close, sym_list_marker_dash, sym__block_quote_continuation, - [14317] = 1, - ACTIONS(686), 3, - sym__list_item_continuation, - sym__list_item_end, + [13010] = 3, + ACTIONS(868), 1, + sym_list_marker_plus, + ACTIONS(1739), 1, sym__block_quote_continuation, - [14323] = 1, - ACTIONS(682), 3, + STATE(561), 1, + aux_sym__block_quote_prefix_repeat1, + [13020] = 1, + ACTIONS(860), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14329] = 3, - ACTIONS(937), 1, - sym_list_marker_star, - ACTIONS(1225), 1, - sym__block_quote_continuation, - STATE(628), 1, - aux_sym__block_quote_prefix_repeat1, - [14339] = 1, - ACTIONS(690), 3, + [13026] = 3, + ACTIONS(1742), 1, + sym__newline, + ACTIONS(1744), 1, + sym__table_cell, + STATE(908), 1, + sym_table_cell, + [13036] = 3, + ACTIONS(1744), 1, + sym__table_cell, + ACTIONS(1746), 1, + sym__newline, + STATE(908), 1, + sym_table_cell, + [13046] = 1, + ACTIONS(800), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14345] = 1, - ACTIONS(706), 3, + [13052] = 1, + ACTIONS(804), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14351] = 1, - ACTIONS(754), 3, + [13058] = 3, + ACTIONS(934), 1, + sym_list_marker_star, + ACTIONS(1165), 1, + sym__block_quote_continuation, + STATE(591), 1, + aux_sym__block_quote_prefix_repeat1, + [13068] = 1, + ACTIONS(816), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14357] = 1, - ACTIONS(770), 3, + [13074] = 1, + ACTIONS(820), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14363] = 1, - ACTIONS(782), 3, + [13080] = 1, + ACTIONS(824), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14369] = 1, - ACTIONS(788), 3, + [13086] = 1, + ACTIONS(828), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14375] = 1, - ACTIONS(792), 3, + [13092] = 1, + ACTIONS(666), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14381] = 3, - ACTIONS(1780), 1, - sym__newline_inline, - ACTIONS(1798), 1, - sym__eof_or_newline, - STATE(593), 1, - aux_sym__paragraph_inline_content_repeat1, - [14391] = 3, - ACTIONS(1780), 1, - sym__newline_inline, - ACTIONS(1798), 1, - sym__eof_or_newline, - STATE(594), 1, - aux_sym__paragraph_inline_content_repeat1, - [14401] = 1, - ACTIONS(1800), 3, + [13098] = 1, + ACTIONS(670), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14407] = 1, - ACTIONS(1802), 3, + [13104] = 1, + ACTIONS(674), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14413] = 1, - ACTIONS(796), 3, + [13110] = 1, + ACTIONS(678), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14419] = 1, - ACTIONS(800), 3, + [13116] = 1, + ACTIONS(682), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14425] = 1, - ACTIONS(804), 3, + [13122] = 1, + ACTIONS(690), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14431] = 1, - ACTIONS(808), 3, + [13128] = 1, + ACTIONS(702), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14437] = 1, - ACTIONS(812), 3, + [13134] = 1, + ACTIONS(706), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14443] = 1, - ACTIONS(816), 3, + [13140] = 1, + ACTIONS(750), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14449] = 1, - ACTIONS(820), 3, + [13146] = 1, + ACTIONS(758), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14455] = 1, - ACTIONS(824), 3, + [13152] = 1, + ACTIONS(770), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14461] = 1, - ACTIONS(828), 3, + [13158] = 1, + ACTIONS(778), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14467] = 1, - ACTIONS(832), 3, + [13164] = 1, + ACTIONS(786), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14473] = 1, - ACTIONS(836), 3, + [13170] = 1, + ACTIONS(806), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14479] = 1, - ACTIONS(840), 3, + [13176] = 1, + ACTIONS(810), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14485] = 1, - ACTIONS(844), 3, + [13182] = 1, + ACTIONS(832), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14491] = 1, - ACTIONS(848), 3, + [13188] = 1, + ACTIONS(836), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14497] = 1, + [13194] = 1, ACTIONS(536), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14503] = 3, + [13200] = 3, + ACTIONS(1748), 1, + sym__block_close, + ACTIONS(1750), 1, + sym__heading_continuation, + STATE(635), 1, + aux_sym__heading_content_repeat1, + [13210] = 3, ACTIONS(868), 1, sym_list_marker_star, - ACTIONS(1804), 1, + ACTIONS(1752), 1, sym__block_quote_continuation, - STATE(628), 1, + STATE(591), 1, aux_sym__block_quote_prefix_repeat1, - [14513] = 3, - ACTIONS(1780), 1, - sym__newline_inline, - ACTIONS(1807), 1, - sym__eof_or_newline, - STATE(610), 1, - aux_sym__paragraph_inline_content_repeat1, - [14523] = 2, - ACTIONS(1809), 1, - anon_sym_LBRACK, - STATE(944), 2, - sym_checked, - sym_unchecked, - [14531] = 1, - ACTIONS(1811), 3, + [13220] = 1, + ACTIONS(840), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14537] = 1, - ACTIONS(852), 3, - sym__list_item_continuation, - sym__list_item_end, + [13226] = 1, + ACTIONS(1190), 3, + sym__block_close, sym__block_quote_continuation, - [14543] = 1, - ACTIONS(856), 3, + aux_sym__line_token1, + [13232] = 1, + ACTIONS(848), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14549] = 1, - ACTIONS(1796), 3, - sym__block_close, - sym_list_marker_plus, - sym__block_quote_continuation, - [14555] = 1, - ACTIONS(666), 3, + [13238] = 1, + ACTIONS(862), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14561] = 1, - ACTIONS(664), 3, + [13244] = 1, + ACTIONS(852), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14567] = 3, - ACTIONS(1813), 1, + [13250] = 1, + ACTIONS(1755), 3, sym__block_close, - ACTIONS(1815), 1, - sym__heading_continuation, - STATE(638), 1, - aux_sym__heading_content_repeat1, - [14577] = 3, - ACTIONS(1815), 1, - sym__heading_continuation, - ACTIONS(1817), 1, + sym_list_marker_dash, + sym__block_quote_continuation, + [13256] = 1, + ACTIONS(1757), 3, sym__block_close, - STATE(597), 1, - aux_sym__heading_content_repeat1, - [14587] = 1, - ACTIONS(860), 3, + sym_list_marker_dash, + sym__block_quote_continuation, + [13262] = 1, + ACTIONS(1380), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14593] = 3, - ACTIONS(937), 1, - sym_list_marker_dash, - ACTIONS(1221), 1, - sym__block_quote_continuation, - STATE(679), 1, - aux_sym__block_quote_prefix_repeat1, - [14603] = 2, - ACTIONS(1819), 1, - sym__div_end, - ACTIONS(562), 2, + [13268] = 1, + ACTIONS(1759), 3, sym__block_close, + sym_list_marker_star, sym__block_quote_continuation, - [14611] = 2, - ACTIONS(1821), 1, - sym__code_block_end, - ACTIONS(568), 2, + [13274] = 1, + ACTIONS(1761), 3, sym__block_close, + sym_list_marker_plus, sym__block_quote_continuation, - [14619] = 1, - ACTIONS(694), 3, + [13280] = 1, + ACTIONS(686), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14625] = 2, - ACTIONS(1823), 1, - sym__code_block_end, - ACTIONS(574), 2, - sym__block_close, - sym__block_quote_continuation, - [14633] = 1, - ACTIONS(702), 3, + [13286] = 2, + ACTIONS(1765), 1, + anon_sym_SPACE, + ACTIONS(1763), 2, + anon_sym_x, + anon_sym_X, + [13294] = 1, + ACTIONS(698), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14639] = 2, - ACTIONS(1825), 1, - sym__code_block_end, - ACTIONS(580), 2, - sym__block_close, - sym__block_quote_continuation, - [14647] = 1, - ACTIONS(1776), 3, - sym__block_close, - sym_list_marker_plus, - sym__block_quote_continuation, - [14653] = 1, + [13300] = 1, ACTIONS(710), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14659] = 1, + [13306] = 1, ACTIONS(714), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14665] = 1, + [13312] = 1, ACTIONS(718), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14671] = 1, + [13318] = 1, ACTIONS(726), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14677] = 1, + [13324] = 1, ACTIONS(730), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14683] = 1, + [13330] = 1, ACTIONS(734), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14689] = 1, + [13336] = 1, ACTIONS(738), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14695] = 1, + [13342] = 1, ACTIONS(742), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14701] = 1, + [13348] = 1, ACTIONS(746), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14707] = 2, - ACTIONS(1827), 1, - sym__div_end, - ACTIONS(598), 2, - sym__block_close, - sym__block_quote_continuation, - [14715] = 1, - ACTIONS(750), 3, + [13354] = 1, + ACTIONS(754), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14721] = 1, - ACTIONS(758), 3, + [13360] = 1, + ACTIONS(762), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14727] = 1, - ACTIONS(762), 3, + [13366] = 1, + ACTIONS(766), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14733] = 1, - ACTIONS(1829), 3, - sym__block_quote_continuation, - sym__footnote_continuation, - sym__footnote_end, - [14739] = 1, - ACTIONS(1831), 3, - sym__block_quote_continuation, - sym__footnote_continuation, - sym__footnote_end, - [14745] = 1, - ACTIONS(766), 3, + [13372] = 1, + ACTIONS(774), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [14751] = 3, - ACTIONS(937), 1, - sym__list_marker_task_begin, - ACTIONS(1163), 1, + [13378] = 2, + ACTIONS(1767), 1, + sym__eof_or_newline, + ACTIONS(610), 2, + sym__block_close, sym__block_quote_continuation, - STATE(665), 1, - aux_sym__block_quote_prefix_repeat1, - [14761] = 3, + [13386] = 3, ACTIONS(868), 1, sym__list_marker_task_begin, - ACTIONS(1833), 1, + ACTIONS(1769), 1, sym__block_quote_continuation, - STATE(665), 1, + STATE(619), 1, aux_sym__block_quote_prefix_repeat1, - [14771] = 2, - ACTIONS(1836), 1, - sym__code_block_end, - ACTIONS(604), 2, - sym__block_close, - sym__block_quote_continuation, - [14779] = 2, - ACTIONS(1838), 1, - sym__code_block_end, - ACTIONS(610), 2, - sym__block_close, - sym__block_quote_continuation, - [14787] = 3, - ACTIONS(937), 1, + [13396] = 3, + ACTIONS(934), 1, aux_sym__line_token1, - ACTIONS(1171), 1, + ACTIONS(1117), 1, sym__block_quote_continuation, - STATE(669), 1, + STATE(621), 1, aux_sym__block_quote_prefix_repeat1, - [14797] = 3, + [13406] = 3, ACTIONS(868), 1, aux_sym__line_token1, - ACTIONS(1840), 1, + ACTIONS(1772), 1, sym__block_quote_continuation, - STATE(669), 1, + STATE(621), 1, aux_sym__block_quote_prefix_repeat1, - [14807] = 3, - ACTIONS(937), 1, + [13416] = 3, + ACTIONS(934), 1, sym__list_item_continuation, - ACTIONS(1289), 1, + ACTIONS(1237), 1, sym__block_quote_continuation, - STATE(671), 1, + STATE(623), 1, aux_sym__block_quote_prefix_repeat1, - [14817] = 3, + [13426] = 3, ACTIONS(868), 1, sym__list_item_continuation, - ACTIONS(1843), 1, + ACTIONS(1775), 1, sym__block_quote_continuation, - STATE(671), 1, + STATE(623), 1, aux_sym__block_quote_prefix_repeat1, - [14827] = 3, - ACTIONS(937), 1, + [13436] = 3, + ACTIONS(934), 1, sym__footnote_continuation, - ACTIONS(1293), 1, + ACTIONS(1253), 1, sym__block_quote_continuation, - STATE(674), 1, + STATE(625), 1, aux_sym__block_quote_prefix_repeat1, - [14837] = 1, - ACTIONS(1846), 3, - sym__block_close, - sym_list_marker_star, - sym__block_quote_continuation, - [14843] = 3, + [13446] = 3, ACTIONS(868), 1, sym__footnote_continuation, - ACTIONS(1848), 1, + ACTIONS(1778), 1, sym__block_quote_continuation, - STATE(674), 1, + STATE(625), 1, aux_sym__block_quote_prefix_repeat1, - [14853] = 1, - ACTIONS(1796), 3, + [13456] = 1, + ACTIONS(1737), 3, sym__block_close, sym__list_marker_task_begin, sym__block_quote_continuation, - [14859] = 1, - ACTIONS(1776), 3, + [13462] = 1, + ACTIONS(1755), 3, sym__block_close, sym__list_marker_task_begin, sym__block_quote_continuation, - [14865] = 2, - ACTIONS(1851), 1, - sym__eof_or_newline, - ACTIONS(616), 2, - sym__block_close, + [13468] = 1, + ACTIONS(1781), 3, + sym__list_item_continuation, + sym__list_item_end, sym__block_quote_continuation, - [14873] = 3, - ACTIONS(937), 1, - sym_list_marker_plus, - ACTIONS(1217), 1, + [13474] = 1, + ACTIONS(1783), 3, + sym__list_item_continuation, + sym__list_item_end, sym__block_quote_continuation, - STATE(582), 1, - aux_sym__block_quote_prefix_repeat1, - [14883] = 3, - ACTIONS(868), 1, - sym_list_marker_dash, - ACTIONS(1853), 1, + [13480] = 1, + ACTIONS(1785), 3, + sym__list_item_continuation, + sym__list_item_end, sym__block_quote_continuation, - STATE(679), 1, - aux_sym__block_quote_prefix_repeat1, - [14893] = 1, - ACTIONS(1856), 3, + [13486] = 3, + ACTIONS(1744), 1, + sym__table_cell, + ACTIONS(1787), 1, + sym__newline, + STATE(908), 1, + sym_table_cell, + [13496] = 3, + ACTIONS(1744), 1, + sym__table_cell, + ACTIONS(1789), 1, + sym__newline, + STATE(908), 1, + sym_table_cell, + [13506] = 3, + ACTIONS(1744), 1, + sym__table_cell, + ACTIONS(1791), 1, + sym__newline, + STATE(908), 1, + sym_table_cell, + [13516] = 3, + ACTIONS(1744), 1, + sym__table_cell, + ACTIONS(1793), 1, + sym__newline, + STATE(908), 1, + sym_table_cell, + [13526] = 3, + ACTIONS(1750), 1, + sym__heading_continuation, + ACTIONS(1795), 1, sym__block_close, - sym__list_marker_task_begin, + STATE(557), 1, + aux_sym__heading_content_repeat1, + [13536] = 1, + ACTIONS(1797), 3, sym__block_quote_continuation, - [14899] = 1, - ACTIONS(1858), 3, - sym__block_close, - sym_list_marker_dash, + sym__footnote_continuation, + sym__footnote_end, + [13542] = 1, + ACTIONS(1799), 3, sym__block_quote_continuation, - [14905] = 1, - ACTIONS(1860), 3, + sym__footnote_continuation, + sym__footnote_end, + [13548] = 3, + ACTIONS(1744), 1, + sym__table_cell, + ACTIONS(1801), 1, + sym__newline, + STATE(908), 1, + sym_table_cell, + [13558] = 3, + ACTIONS(1744), 1, + sym__table_cell, + ACTIONS(1803), 1, + sym__newline, + STATE(908), 1, + sym_table_cell, + [13568] = 3, + ACTIONS(1744), 1, + sym__table_cell, + ACTIONS(1805), 1, + sym__newline, + STATE(908), 1, + sym_table_cell, + [13578] = 3, + ACTIONS(1744), 1, + sym__table_cell, + ACTIONS(1807), 1, + sym__newline, + STATE(908), 1, + sym_table_cell, + [13588] = 3, + ACTIONS(536), 1, + sym__indented_content_spacer, + ACTIONS(965), 1, + sym__table_caption_begin, + STATE(1126), 1, + sym_table_caption, + [13598] = 2, + ACTIONS(1809), 1, + anon_sym_LBRACK, + STATE(1069), 2, + sym_checked, + sym_unchecked, + [13606] = 3, + ACTIONS(1744), 1, + sym__table_cell, + ACTIONS(1811), 1, + sym__newline, + STATE(908), 1, + sym_table_cell, + [13616] = 1, + ACTIONS(1737), 3, sym__block_close, sym_list_marker_star, sym__block_quote_continuation, - [14911] = 1, - ACTIONS(1862), 3, + [13622] = 3, + ACTIONS(1744), 1, + sym__table_cell, + ACTIONS(1813), 1, + sym__newline, + STATE(908), 1, + sym_table_cell, + [13632] = 3, + ACTIONS(1744), 1, + sym__table_cell, + ACTIONS(1815), 1, + sym__newline, + STATE(908), 1, + sym_table_cell, + [13642] = 3, + ACTIONS(1744), 1, + sym__table_cell, + ACTIONS(1817), 1, + sym__newline, + STATE(908), 1, + sym_table_cell, + [13652] = 1, + ACTIONS(1819), 3, sym__block_close, - sym_list_marker_plus, sym__block_quote_continuation, - [14917] = 1, - ACTIONS(1796), 3, + aux_sym__line_token1, + [13658] = 3, + ACTIONS(1744), 1, + sym__table_cell, + ACTIONS(1821), 1, + sym__newline, + STATE(908), 1, + sym_table_cell, + [13668] = 3, + ACTIONS(1744), 1, + sym__table_cell, + ACTIONS(1823), 1, + sym__newline, + STATE(908), 1, + sym_table_cell, + [13678] = 1, + ACTIONS(1755), 3, sym__block_close, sym_list_marker_star, sym__block_quote_continuation, - [14923] = 2, - ACTIONS(1866), 1, - anon_sym_SPACE, - ACTIONS(1864), 2, - anon_sym_x, - anon_sym_X, - [14931] = 1, - ACTIONS(1868), 3, + [13684] = 1, + ACTIONS(1825), 3, anon_sym_PERCENT, sym_backslash_escape, aux_sym__comment_no_newline_token1, - [14937] = 1, - ACTIONS(1870), 3, - sym__block_close, + [13690] = 3, + ACTIONS(934), 1, sym_list_marker_dash, + ACTIONS(1177), 1, sym__block_quote_continuation, - [14943] = 2, - ACTIONS(1872), 1, + STATE(661), 1, + aux_sym__block_quote_prefix_repeat1, + [13700] = 3, + ACTIONS(1715), 1, + sym__newline_inline, + ACTIONS(1827), 1, sym__eof_or_newline, - ACTIONS(550), 2, - sym__block_close, - sym__block_quote_continuation, - [14951] = 1, - ACTIONS(1874), 3, - sym__block_close, + STATE(559), 1, + aux_sym__paragraph_inline_content_repeat1, + [13710] = 3, + ACTIONS(1744), 1, + sym__table_cell, + ACTIONS(1829), 1, + sym__newline, + STATE(908), 1, + sym_table_cell, + [13720] = 3, + ACTIONS(1744), 1, + sym__table_cell, + ACTIONS(1831), 1, + sym__newline, + STATE(908), 1, + sym_table_cell, + [13730] = 3, + ACTIONS(1833), 1, + anon_sym_DQUOTE, + ACTIONS(1835), 1, + aux_sym_value_token2, + STATE(380), 1, + sym_value, + [13740] = 3, + ACTIONS(1744), 1, + sym__table_cell, + ACTIONS(1837), 1, + sym__newline, + STATE(908), 1, + sym_table_cell, + [13750] = 3, + ACTIONS(1744), 1, + sym__table_cell, + ACTIONS(1839), 1, + sym__newline, + STATE(908), 1, + sym_table_cell, + [13760] = 3, + ACTIONS(868), 1, + sym_list_marker_dash, + ACTIONS(1841), 1, sym__block_quote_continuation, - aux_sym__line_token1, - [14957] = 1, - ACTIONS(1776), 3, + STATE(661), 1, + aux_sym__block_quote_prefix_repeat1, + [13770] = 2, + ACTIONS(1844), 1, + sym__eof_or_newline, + ACTIONS(616), 2, sym__block_close, - sym_list_marker_star, sym__block_quote_continuation, - [14963] = 1, - ACTIONS(1876), 3, - sym__block_close, - sym_list_marker_plus, + [13778] = 1, + ACTIONS(792), 3, + sym__list_item_continuation, + sym__list_item_end, sym__block_quote_continuation, - [14969] = 2, - ACTIONS(1878), 1, + [13784] = 2, + ACTIONS(1846), 1, sym__div_end, - ACTIONS(556), 2, + ACTIONS(622), 2, sym__block_close, sym__block_quote_continuation, - [14977] = 1, - ACTIONS(844), 2, + [13792] = 2, + ACTIONS(1848), 1, + sym__code_block_end, + ACTIONS(632), 2, sym__block_close, sym__block_quote_continuation, - [14982] = 1, - ACTIONS(690), 2, + [13800] = 1, + ACTIONS(1737), 3, sym__block_close, + sym_list_marker_plus, sym__block_quote_continuation, - [14987] = 1, - ACTIONS(460), 2, + [13806] = 1, + ACTIONS(1850), 3, + sym__block_close, sym__list_marker_task_begin, sym__block_quote_continuation, - [14992] = 1, - ACTIONS(706), 2, + [13812] = 2, + ACTIONS(1852), 1, + sym__div_end, + ACTIONS(550), 2, sym__block_close, sym__block_quote_continuation, - [14997] = 1, - ACTIONS(1796), 2, - sym__block_close, - sym_list_marker_upper_alpha_period, - [15002] = 1, - ACTIONS(1776), 2, - sym__block_close, - sym_list_marker_upper_alpha_period, - [15007] = 1, - ACTIONS(754), 2, + [13820] = 2, + ACTIONS(1854), 1, + sym__div_end, + ACTIONS(556), 2, sym__block_close, sym__block_quote_continuation, - [15012] = 2, - ACTIONS(1880), 1, - sym__id, - STATE(387), 1, - sym_class_name, - [15019] = 1, - ACTIONS(1796), 2, - sym__block_close, - sym_list_marker_lower_roman_period, - [15024] = 1, - ACTIONS(1776), 2, + [13828] = 2, + ACTIONS(1856), 1, + sym__code_block_end, + ACTIONS(562), 2, sym__block_close, - sym_list_marker_lower_roman_period, - [15029] = 1, - ACTIONS(1882), 2, + sym__block_quote_continuation, + [13836] = 2, + ACTIONS(1858), 1, + sym__code_block_end, + ACTIONS(568), 2, sym__block_close, - sym_list_marker_decimal_paren, - [15034] = 1, - ACTIONS(1796), 2, + sym__block_quote_continuation, + [13844] = 2, + ACTIONS(1860), 1, + sym__code_block_end, + ACTIONS(574), 2, sym__block_close, - sym_list_marker_upper_roman_period, - [15039] = 1, - ACTIONS(1776), 2, + sym__block_quote_continuation, + [13852] = 1, + ACTIONS(1755), 3, sym__block_close, - sym_list_marker_upper_roman_period, - [15044] = 1, - ACTIONS(460), 2, + sym_list_marker_plus, sym__block_quote_continuation, - aux_sym__line_token1, - [15049] = 1, - ACTIONS(770), 2, + [13858] = 1, + ACTIONS(1862), 3, sym__block_close, + sym_list_marker_dash, sym__block_quote_continuation, - [15054] = 1, - ACTIONS(1796), 2, + [13864] = 2, + ACTIONS(1864), 1, + sym__div_end, + ACTIONS(592), 2, sym__block_close, - sym_list_marker_decimal_paren, - [15059] = 1, - ACTIONS(1776), 2, + sym__block_quote_continuation, + [13872] = 2, + ACTIONS(1866), 1, + sym__code_block_end, + ACTIONS(598), 2, sym__block_close, - sym_list_marker_decimal_paren, - [15064] = 1, - ACTIONS(460), 2, - sym__list_item_continuation, sym__block_quote_continuation, - [15069] = 1, - ACTIONS(782), 2, + [13880] = 2, + ACTIONS(1868), 1, + sym__code_block_end, + ACTIONS(604), 2, sym__block_close, sym__block_quote_continuation, - [15074] = 2, - ACTIONS(1884), 1, - anon_sym_PIPE, - STATE(836), 1, - aux_sym_table_header_repeat1, - [15081] = 1, - ACTIONS(1796), 2, + [13888] = 3, + ACTIONS(934), 1, + sym__list_marker_task_begin, + ACTIONS(1111), 1, + sym__block_quote_continuation, + STATE(619), 1, + aux_sym__block_quote_prefix_repeat1, + [13898] = 1, + ACTIONS(1870), 2, + sym__eof_or_newline, + sym__close_paragraph, + [13903] = 1, + ACTIONS(1737), 2, sym__block_close, sym_list_marker_lower_alpha_paren, - [15086] = 1, - ACTIONS(1776), 2, + [13908] = 1, + ACTIONS(1755), 2, sym__block_close, sym_list_marker_lower_alpha_paren, - [15091] = 1, - ACTIONS(1886), 2, + [13913] = 1, + ACTIONS(1872), 2, sym__block_close, - sym_list_marker_decimal_parens, - [15096] = 2, - ACTIONS(1888), 1, - sym_table_cell_alignment, - ACTIONS(1890), 1, - sym__newline, - [15103] = 2, - ACTIONS(1892), 1, - anon_sym_PIPE, - STATE(849), 1, - aux_sym_table_separator_repeat1, - [15110] = 1, - ACTIONS(1796), 2, + sym_list_marker_lower_alpha_period, + [13918] = 1, + ACTIONS(460), 2, + sym_list_marker_plus, + sym__block_quote_continuation, + [13923] = 1, + ACTIONS(1874), 2, + sym__block_close, + sym_list_marker_lower_alpha_paren, + [13928] = 1, + ACTIONS(1737), 2, sym__block_close, sym_list_marker_upper_alpha_paren, - [15115] = 1, - ACTIONS(1776), 2, + [13933] = 1, + ACTIONS(1755), 2, sym__block_close, sym_list_marker_upper_alpha_paren, - [15120] = 1, + [13938] = 1, ACTIONS(460), 2, sym__block_quote_continuation, sym__footnote_continuation, - [15125] = 2, - ACTIONS(1894), 1, - anon_sym_PIPE, - STATE(836), 1, - aux_sym_table_header_repeat1, - [15132] = 1, - ACTIONS(1796), 2, + [13943] = 1, + ACTIONS(1876), 2, + sym__block_close, + sym_list_marker_lower_alpha_parens, + [13948] = 2, + ACTIONS(29), 1, + sym__list_marker_task_begin, + STATE(30), 1, + sym_list_marker_task, + [13955] = 1, + ACTIONS(1737), 2, sym__block_close, sym_list_marker_lower_roman_paren, - [15137] = 1, - ACTIONS(1776), 2, + [13960] = 1, + ACTIONS(1755), 2, sym__block_close, sym_list_marker_lower_roman_paren, - [15142] = 1, - ACTIONS(1796), 2, + [13965] = 1, + ACTIONS(1737), 2, sym__block_close, sym_list_marker_upper_roman_paren, - [15147] = 1, - ACTIONS(1776), 2, + [13970] = 1, + ACTIONS(1755), 2, sym__block_close, sym_list_marker_upper_roman_paren, - [15152] = 1, - ACTIONS(1796), 2, + [13975] = 1, + ACTIONS(1737), 2, sym__block_close, sym_list_marker_decimal_parens, - [15157] = 1, - ACTIONS(1776), 2, + [13980] = 1, + ACTIONS(1755), 2, sym__block_close, sym_list_marker_decimal_parens, - [15162] = 1, - ACTIONS(1796), 2, + [13985] = 1, + ACTIONS(1737), 2, sym__block_close, sym_list_marker_lower_alpha_parens, - [15167] = 1, - ACTIONS(1776), 2, + [13990] = 1, + ACTIONS(1755), 2, sym__block_close, sym_list_marker_lower_alpha_parens, - [15172] = 1, - ACTIONS(1796), 2, + [13995] = 1, + ACTIONS(1737), 2, sym__block_close, sym_list_marker_upper_alpha_parens, - [15177] = 1, - ACTIONS(1776), 2, + [14000] = 1, + ACTIONS(1755), 2, sym__block_close, sym_list_marker_upper_alpha_parens, - [15182] = 1, - ACTIONS(1796), 2, + [14005] = 1, + ACTIONS(1737), 2, sym__block_close, sym_list_marker_lower_roman_parens, - [15187] = 1, - ACTIONS(1776), 2, + [14010] = 1, + ACTIONS(1755), 2, sym__block_close, sym_list_marker_lower_roman_parens, - [15192] = 1, - ACTIONS(1796), 2, + [14015] = 1, + ACTIONS(1737), 2, sym__block_close, sym_list_marker_upper_roman_parens, - [15197] = 1, - ACTIONS(1776), 2, + [14020] = 1, + ACTIONS(1755), 2, sym__block_close, sym_list_marker_upper_roman_parens, - [15202] = 2, - ACTIONS(1896), 1, - sym__footnote_mark_begin, - ACTIONS(1899), 1, - sym__in_fallback, - [15209] = 1, - ACTIONS(1901), 2, - sym__eof_or_newline, - sym__close_paragraph, - [15214] = 1, - ACTIONS(1903), 2, - sym__eof_or_newline, - sym__close_paragraph, - [15219] = 1, - ACTIONS(1905), 2, + [14025] = 1, + ACTIONS(1878), 2, sym__block_close, - sym_list_marker_lower_alpha_period, - [15224] = 1, - ACTIONS(1907), 2, + sym_list_marker_upper_alpha_period, + [14030] = 1, + ACTIONS(1880), 2, sym__block_close, - sym_list_marker_decimal_period, - [15229] = 1, - ACTIONS(788), 2, + sym_list_marker_upper_alpha_paren, + [14035] = 1, + ACTIONS(1882), 2, sym__block_close, - sym__block_quote_continuation, - [15234] = 1, - ACTIONS(792), 2, + sym_list_marker_upper_alpha_period, + [14040] = 1, + ACTIONS(1884), 2, + sym__eof_or_newline, + sym__close_paragraph, + [14045] = 1, + ACTIONS(1886), 2, sym__block_close, - sym__block_quote_continuation, - [15239] = 1, - ACTIONS(796), 2, + sym_list_marker_lower_roman_period, + [14050] = 1, + ACTIONS(1888), 2, sym__block_close, - sym__block_quote_continuation, - [15244] = 1, - ACTIONS(1909), 2, + sym_list_marker_upper_roman_period, + [14055] = 1, + ACTIONS(1890), 2, sym__block_close, - sym_list_marker_lower_alpha_period, - [15249] = 1, - ACTIONS(1911), 2, + sym_list_marker_decimal_paren, + [14060] = 1, + ACTIONS(1892), 2, sym__block_close, - sym_list_marker_upper_alpha_period, - [15254] = 1, - ACTIONS(1913), 2, + sym_list_marker_upper_alpha_parens, + [14065] = 1, + ACTIONS(1894), 2, sym__block_close, sym_list_marker_lower_roman_period, - [15259] = 1, - ACTIONS(800), 2, + [14070] = 1, + ACTIONS(1896), 2, sym__block_close, - sym__block_quote_continuation, - [15264] = 1, - ACTIONS(1915), 2, + sym_list_marker_lower_alpha_paren, + [14075] = 1, + ACTIONS(1898), 2, sym__block_close, - sym_list_marker_upper_roman_period, - [15269] = 1, - ACTIONS(804), 2, + sym_list_marker_upper_alpha_paren, + [14080] = 1, + ACTIONS(1900), 2, sym__block_close, - sym__block_quote_continuation, - [15274] = 1, - ACTIONS(1917), 2, + sym_list_marker_lower_roman_paren, + [14085] = 1, + ACTIONS(1902), 2, sym__block_close, - sym_list_marker_decimal_paren, - [15279] = 1, - ACTIONS(1919), 2, + sym_list_marker_upper_roman_paren, + [14090] = 1, + ACTIONS(1904), 2, sym__block_close, - sym_list_marker_lower_alpha_paren, - [15284] = 1, - ACTIONS(808), 2, + sym_list_marker_decimal_parens, + [14095] = 1, + ACTIONS(1906), 2, sym__block_close, - sym__block_quote_continuation, - [15289] = 1, - ACTIONS(1899), 2, + sym_list_marker_lower_alpha_parens, + [14100] = 1, + ACTIONS(1908), 2, + sym__block_close, + sym_list_marker_upper_alpha_parens, + [14105] = 1, + ACTIONS(1910), 2, sym__footnote_mark_begin, sym__in_fallback, - [15294] = 1, - ACTIONS(1921), 2, + [14110] = 1, + ACTIONS(1912), 2, sym__block_close, - sym_list_marker_lower_alpha_paren, - [15299] = 1, - ACTIONS(1923), 2, + sym_list_marker_lower_roman_parens, + [14115] = 2, + ACTIONS(1914), 1, + sym__id, + STATE(991), 1, + sym_class_name, + [14122] = 2, + ACTIONS(1916), 1, + sym__eof_or_newline, + STATE(132), 1, + sym__one_or_two_newlines, + [14129] = 1, + ACTIONS(1918), 2, sym__block_close, - sym_list_marker_lower_alpha_parens, - [15304] = 1, - ACTIONS(1925), 2, + sym_list_marker_upper_roman_parens, + [14134] = 1, + ACTIONS(1920), 2, + sym__block_close, + sym_list_marker_upper_roman_parens, + [14139] = 1, + ACTIONS(1922), 2, + sym__block_close, + sym_list_marker_lower_roman_paren, + [14144] = 2, + ACTIONS(1924), 1, + sym_table_cell_alignment, + ACTIONS(1926), 1, + sym__newline, + [14151] = 1, + ACTIONS(1928), 2, + sym__block_close, + sym_list_marker_lower_roman_parens, + [14156] = 2, + ACTIONS(1930), 1, + anon_sym_PIPE, + STATE(756), 1, + aux_sym_table_header_repeat1, + [14163] = 2, + ACTIONS(1932), 1, + anon_sym_PIPE, + STATE(758), 1, + aux_sym_table_separator_repeat1, + [14170] = 2, + ACTIONS(1934), 1, + anon_sym_PIPE, + STATE(763), 1, + aux_sym_table_header_repeat1, + [14177] = 1, + ACTIONS(1737), 2, + sym__block_close, + sym_list_marker_lower_alpha_period, + [14182] = 2, + ACTIONS(1924), 1, + sym_table_cell_alignment, + ACTIONS(1936), 1, + sym__newline, + [14189] = 1, + ACTIONS(1938), 2, + sym__block_close, + sym_list_marker_upper_roman_period, + [14194] = 1, + ACTIONS(1107), 2, + sym__block_close, + sym__heading_continuation, + [14199] = 2, + ACTIONS(1940), 1, + sym__eof_or_newline, + STATE(945), 1, + sym__one_or_two_newlines, + [14206] = 2, + ACTIONS(1942), 1, + sym_language, + ACTIONS(1944), 1, + sym__newline, + [14213] = 1, + ACTIONS(754), 2, + sym__block_close, + sym__block_quote_continuation, + [14218] = 1, + ACTIONS(1946), 2, sym__eof_or_newline, sym__close_paragraph, - [15309] = 1, - ACTIONS(1927), 2, + [14223] = 1, + ACTIONS(1948), 2, sym__eof_or_newline, sym__newline_inline, - [15314] = 1, - ACTIONS(1929), 2, - sym__block_close, - sym_list_marker_upper_alpha_period, - [15319] = 1, - ACTIONS(1931), 2, - sym__block_close, - sym_list_marker_upper_alpha_paren, - [15324] = 1, - ACTIONS(1874), 2, + [14228] = 2, + ACTIONS(1950), 1, + sym__id, + STATE(367), 1, + sym_class_name, + [14235] = 1, + ACTIONS(1952), 2, + sym__footnote_mark_begin, + sym__in_fallback, + [14240] = 1, + ACTIONS(1954), 2, + sym__footnote_mark_begin, + sym__in_fallback, + [14245] = 2, + ACTIONS(1924), 1, + sym_table_cell_alignment, + ACTIONS(1956), 1, + sym__newline, + [14252] = 1, + ACTIONS(1819), 2, sym_frontmatter_marker, aux_sym__line_token1, - [15329] = 2, - ACTIONS(1888), 1, + [14257] = 1, + ACTIONS(1755), 2, + sym__block_close, + sym_list_marker_lower_alpha_period, + [14262] = 2, + ACTIONS(1924), 1, sym_table_cell_alignment, - ACTIONS(1933), 1, + ACTIONS(1958), 1, sym__newline, - [15336] = 1, - ACTIONS(812), 2, - sym__block_close, + [14269] = 1, + ACTIONS(460), 2, + sym_list_marker_star, sym__block_quote_continuation, - [15341] = 1, - ACTIONS(816), 2, + [14274] = 2, + ACTIONS(1960), 1, + sym__eof_or_newline, + STATE(738), 1, + sym__one_or_two_newlines, + [14281] = 1, + ACTIONS(1962), 2, + sym__eof_or_newline, + sym__close_paragraph, + [14286] = 1, + ACTIONS(1964), 2, sym__block_close, - sym__block_quote_continuation, - [15346] = 1, - ACTIONS(820), 2, + sym_list_marker_definition, + [14291] = 1, + ACTIONS(1966), 2, + sym__eof_or_newline, + sym__close_paragraph, + [14296] = 1, + ACTIONS(1968), 2, + sym__eof_or_newline, + sym__close_paragraph, + [14301] = 2, + ACTIONS(616), 1, + sym__indented_content_spacer, + ACTIONS(1970), 1, + sym__eof_or_newline, + [14308] = 2, + ACTIONS(1113), 1, + aux_sym__line_token1, + STATE(593), 1, + sym__line, + [14315] = 2, + ACTIONS(1972), 1, + anon_sym_PIPE, + STATE(800), 1, + aux_sym_table_header_repeat1, + [14322] = 2, + ACTIONS(1924), 1, + sym_table_cell_alignment, + ACTIONS(1974), 1, + sym__newline, + [14329] = 2, + ACTIONS(1976), 1, + anon_sym_PIPE, + STATE(879), 1, + aux_sym_table_separator_repeat1, + [14336] = 2, + ACTIONS(622), 1, + sym__indented_content_spacer, + ACTIONS(1978), 1, + sym__div_end, + [14343] = 2, + ACTIONS(632), 1, + sym__indented_content_spacer, + ACTIONS(1980), 1, + sym__code_block_end, + [14350] = 2, + ACTIONS(1744), 1, + sym__table_cell, + STATE(729), 1, + sym_table_cell, + [14357] = 1, + ACTIONS(766), 2, sym__block_close, sym__block_quote_continuation, - [15351] = 2, - ACTIONS(1935), 1, - sym__id, - STATE(904), 1, - sym_reference_label, - [15358] = 1, - ACTIONS(1937), 2, + [14362] = 2, + ACTIONS(1982), 1, + anon_sym_PIPE, + STATE(800), 1, + aux_sym_table_header_repeat1, + [14369] = 2, + ACTIONS(550), 1, + sym__indented_content_spacer, + ACTIONS(1984), 1, + sym__div_end, + [14376] = 2, + ACTIONS(1744), 1, + sym__table_cell, + STATE(908), 1, + sym_table_cell, + [14383] = 2, + ACTIONS(1924), 1, + sym_table_cell_alignment, + ACTIONS(1986), 1, + sym__newline, + [14390] = 2, + ACTIONS(1744), 1, + sym__table_cell, + STATE(731), 1, + sym_table_cell, + [14397] = 2, + ACTIONS(556), 1, + sym__indented_content_spacer, + ACTIONS(1988), 1, + sym__div_end, + [14404] = 1, + ACTIONS(1990), 2, sym__block_close, - sym_list_marker_upper_alpha_parens, - [15363] = 2, - ACTIONS(1888), 1, + sym_list_marker_definition, + [14409] = 2, + ACTIONS(562), 1, + sym__indented_content_spacer, + ACTIONS(1992), 1, + sym__code_block_end, + [14416] = 2, + ACTIONS(568), 1, + sym__indented_content_spacer, + ACTIONS(1994), 1, + sym__code_block_end, + [14423] = 2, + ACTIONS(574), 1, + sym__indented_content_spacer, + ACTIONS(1996), 1, + sym__code_block_end, + [14430] = 1, + ACTIONS(1998), 2, + sym__eof_or_newline, + sym__close_paragraph, + [14435] = 2, + ACTIONS(1924), 1, sym_table_cell_alignment, - ACTIONS(1939), 1, + ACTIONS(2000), 1, sym__newline, - [15370] = 1, - ACTIONS(1941), 2, - sym__block_close, - sym_list_marker_lower_roman_period, - [15375] = 2, - ACTIONS(1943), 1, - sym__eof_or_newline, - STATE(945), 1, - sym__one_or_two_newlines, - [15382] = 1, - ACTIONS(1945), 2, + [14442] = 1, + ACTIONS(774), 2, sym__block_close, - sym_list_marker_lower_roman_paren, - [15387] = 1, - ACTIONS(1796), 2, + sym__block_quote_continuation, + [14447] = 1, + ACTIONS(2002), 2, sym__block_close, sym_list_marker_decimal_period, - [15392] = 1, - ACTIONS(1947), 2, + [14452] = 2, + ACTIONS(2004), 1, + sym__eof_or_newline, + STATE(193), 1, + sym__one_or_two_newlines, + [14459] = 1, + ACTIONS(2006), 2, sym__eof_or_newline, sym__close_paragraph, - [15397] = 1, - ACTIONS(1949), 2, - sym__block_close, - sym_list_marker_lower_roman_parens, - [15402] = 1, - ACTIONS(824), 2, - sym__block_close, - sym__block_quote_continuation, - [15407] = 1, - ACTIONS(1951), 2, - sym__block_close, - sym_list_marker_upper_roman_period, - [15412] = 1, - ACTIONS(1953), 2, - sym__block_close, - sym_list_marker_definition, - [15417] = 1, - ACTIONS(1955), 2, + [14464] = 1, + ACTIONS(2008), 2, sym__eof_or_newline, sym__close_paragraph, - [15422] = 1, - ACTIONS(828), 2, + [14469] = 2, + ACTIONS(592), 1, + sym__indented_content_spacer, + ACTIONS(2010), 1, + sym__div_end, + [14476] = 2, + ACTIONS(598), 1, + sym__indented_content_spacer, + ACTIONS(2012), 1, + sym__code_block_end, + [14483] = 2, + ACTIONS(604), 1, + sym__indented_content_spacer, + ACTIONS(2014), 1, + sym__code_block_end, + [14490] = 2, + ACTIONS(610), 1, + sym__indented_content_spacer, + ACTIONS(2016), 1, + sym__eof_or_newline, + [14497] = 1, + ACTIONS(460), 2, + sym_list_marker_dash, + sym__block_quote_continuation, + [14502] = 1, + ACTIONS(800), 2, + sym__block_close, + sym__block_quote_continuation, + [14507] = 1, + ACTIONS(804), 2, sym__block_close, sym__block_quote_continuation, - [15427] = 1, - ACTIONS(1957), 2, + [14512] = 1, + ACTIONS(2018), 2, sym__block_close, - sym_list_marker_upper_alpha_paren, - [15432] = 1, - ACTIONS(1782), 2, + sym_list_marker_definition, + [14517] = 1, + ACTIONS(1717), 2, sym__eof_or_newline, sym__newline_inline, - [15437] = 1, - ACTIONS(832), 2, + [14522] = 1, + ACTIONS(1737), 2, sym__block_close, - sym__block_quote_continuation, - [15442] = 1, - ACTIONS(1959), 2, + sym_list_marker_decimal_period, + [14527] = 1, + ACTIONS(2020), 2, sym__block_close, - sym_list_marker_lower_roman_paren, - [15447] = 1, - ACTIONS(1961), 2, + sym_list_marker_decimal_paren, + [14532] = 2, + ACTIONS(1924), 1, + sym_table_cell_alignment, + ACTIONS(2022), 1, + sym__newline, + [14539] = 1, + ACTIONS(1387), 2, sym__block_close, - sym_list_marker_upper_roman_paren, - [15452] = 1, - ACTIONS(1963), 2, + sym__block_quote_continuation, + [14544] = 1, + ACTIONS(2024), 2, sym__block_close, sym_list_marker_decimal_parens, - [15457] = 1, - ACTIONS(1776), 2, + [14549] = 1, + ACTIONS(816), 2, sym__block_close, - sym_list_marker_decimal_period, - [15462] = 1, - ACTIONS(836), 2, + sym__block_quote_continuation, + [14554] = 1, + ACTIONS(762), 2, sym__block_close, sym__block_quote_continuation, - [15467] = 1, - ACTIONS(840), 2, + [14559] = 1, + ACTIONS(824), 2, sym__block_close, sym__block_quote_continuation, - [15472] = 1, - ACTIONS(1965), 2, + [14564] = 1, + ACTIONS(828), 2, sym__block_close, - sym_list_marker_lower_alpha_parens, - [15477] = 1, - ACTIONS(1791), 2, + sym__block_quote_continuation, + [14569] = 1, + ACTIONS(1730), 2, sym__block_close, sym__heading_continuation, - [15482] = 1, - ACTIONS(1967), 2, - sym__footnote_mark_begin, - sym__in_fallback, - [15487] = 1, - ACTIONS(1969), 2, - sym__block_close, - sym_list_marker_upper_roman_paren, - [15492] = 1, - ACTIONS(1971), 2, - sym__block_close, - sym_list_marker_upper_alpha_parens, - [15497] = 1, - ACTIONS(1973), 2, - sym__block_close, - sym_list_marker_upper_roman_parens, - [15502] = 1, - ACTIONS(1975), 2, - sym__eof_or_newline, - sym__close_paragraph, - [15507] = 2, - ACTIONS(1888), 1, - sym_table_cell_alignment, - ACTIONS(1977), 1, - sym__newline, - [15514] = 2, - ACTIONS(1888), 1, + [14574] = 2, + ACTIONS(1924), 1, sym_table_cell_alignment, - ACTIONS(1979), 1, + ACTIONS(2026), 1, sym__newline, - [15521] = 1, - ACTIONS(1981), 2, - sym__eof_or_newline, - sym__close_paragraph, - [15526] = 2, - ACTIONS(1983), 1, + [14581] = 2, + ACTIONS(2028), 1, + anon_sym_PIPE, + STATE(800), 1, + aux_sym_table_header_repeat1, + [14588] = 1, + ACTIONS(666), 2, + sym__block_close, + sym__block_quote_continuation, + [14593] = 1, + ACTIONS(670), 2, + sym__block_close, + sym__block_quote_continuation, + [14598] = 2, + ACTIONS(2031), 1, sym__eof_or_newline, - STATE(865), 1, + STATE(614), 1, sym__one_or_two_newlines, - [15533] = 1, - ACTIONS(1985), 2, - sym__eof_or_newline, - sym__close_paragraph, - [15538] = 1, - ACTIONS(1987), 2, - sym__eof_or_newline, - sym__close_paragraph, - [15543] = 2, - ACTIONS(1167), 1, - aux_sym__line_token1, - STATE(590), 1, - sym__line, - [15550] = 1, - ACTIONS(1989), 2, + [14605] = 1, + ACTIONS(674), 2, sym__block_close, - sym_list_marker_lower_roman_parens, - [15555] = 1, - ACTIONS(1991), 2, - sym__block_close, - sym_list_marker_upper_roman_parens, - [15560] = 1, - ACTIONS(1993), 2, + sym__block_quote_continuation, + [14610] = 1, + ACTIONS(678), 2, sym__block_close, - sym_list_marker_definition, - [15565] = 2, - ACTIONS(598), 1, - sym__indented_content_spacer, - ACTIONS(1995), 1, - sym__div_end, - [15572] = 2, - ACTIONS(1997), 1, - anon_sym_PIPE, - STATE(712), 1, - aux_sym_table_header_repeat1, - [15579] = 1, - ACTIONS(1999), 2, + sym__block_quote_continuation, + [14615] = 1, + ACTIONS(682), 2, sym__block_close, - sym_list_marker_definition, - [15584] = 1, - ACTIONS(460), 2, - sym_list_marker_star, sym__block_quote_continuation, - [15589] = 1, - ACTIONS(536), 2, + [14620] = 1, + ACTIONS(690), 2, sym__block_close, sym__block_quote_continuation, - [15594] = 2, - ACTIONS(2001), 1, - anon_sym_PIPE, - STATE(717), 1, - aux_sym_table_separator_repeat1, - [15601] = 1, - ACTIONS(2003), 2, - sym__footnote_mark_begin, - sym__in_fallback, - [15606] = 2, - ACTIONS(1888), 1, - sym_table_cell_alignment, - ACTIONS(2005), 1, - sym__newline, - [15613] = 1, - ACTIONS(1448), 2, + [14625] = 1, + ACTIONS(702), 2, sym__block_close, sym__block_quote_continuation, - [15618] = 2, - ACTIONS(29), 1, - sym__list_marker_task_begin, - STATE(30), 1, - sym_list_marker_task, - [15625] = 2, - ACTIONS(2007), 1, - sym__whitespace1, - ACTIONS(2009), 1, - sym__newline, - [15632] = 2, - ACTIONS(1888), 1, - sym_table_cell_alignment, - ACTIONS(2011), 1, - sym__newline, - [15639] = 2, - ACTIONS(2013), 1, - sym__eof_or_newline, - STATE(132), 1, - sym__one_or_two_newlines, - [15646] = 1, - ACTIONS(1148), 2, + [14630] = 1, + ACTIONS(706), 2, sym__block_close, - sym__heading_continuation, - [15651] = 2, - ACTIONS(2015), 1, - sym__eof_or_newline, - STATE(199), 1, - sym__one_or_two_newlines, - [15658] = 1, - ACTIONS(852), 2, + sym__block_quote_continuation, + [14635] = 1, + ACTIONS(750), 2, sym__block_close, sym__block_quote_continuation, - [15663] = 1, - ACTIONS(2017), 2, - sym__eof_or_newline, - sym__close_paragraph, - [15668] = 1, - ACTIONS(856), 2, + [14640] = 1, + ACTIONS(758), 2, sym__block_close, sym__block_quote_continuation, - [15673] = 1, - ACTIONS(666), 2, + [14645] = 1, + ACTIONS(770), 2, sym__block_close, sym__block_quote_continuation, - [15678] = 1, - ACTIONS(672), 2, + [14650] = 1, + ACTIONS(778), 2, sym__block_close, sym__block_quote_continuation, - [15683] = 2, - ACTIONS(616), 1, - sym__indented_content_spacer, - ACTIONS(2019), 1, - sym__eof_or_newline, - [15690] = 1, - ACTIONS(664), 2, + [14655] = 1, + ACTIONS(786), 2, sym__block_close, sym__block_quote_continuation, - [15695] = 1, - ACTIONS(860), 2, + [14660] = 1, + ACTIONS(806), 2, sym__block_close, sym__block_quote_continuation, - [15700] = 1, - ACTIONS(460), 2, - sym_list_marker_dash, + [14665] = 1, + ACTIONS(810), 2, + sym__block_close, sym__block_quote_continuation, - [15705] = 2, - ACTIONS(2021), 1, - anon_sym_PIPE, - STATE(721), 1, - aux_sym_table_header_repeat1, - [15712] = 1, - ACTIONS(686), 2, + [14670] = 1, + ACTIONS(832), 2, sym__block_close, sym__block_quote_continuation, - [15717] = 2, - ACTIONS(2023), 1, - sym__id, - STATE(954), 1, - sym_class_name, - [15724] = 1, - ACTIONS(694), 2, + [14675] = 1, + ACTIONS(836), 2, sym__block_close, sym__block_quote_continuation, - [15729] = 2, - ACTIONS(1888), 1, - sym_table_cell_alignment, - ACTIONS(2025), 1, - sym__newline, - [15736] = 1, - ACTIONS(682), 2, + [14680] = 2, + ACTIONS(1910), 1, + sym__in_fallback, + ACTIONS(2033), 1, + sym__footnote_mark_begin, + [14687] = 1, + ACTIONS(536), 2, sym__block_close, sym__block_quote_continuation, - [15741] = 1, - ACTIONS(1796), 2, + [14692] = 1, + ACTIONS(460), 2, + sym__list_marker_task_begin, + sym__block_quote_continuation, + [14697] = 1, + ACTIONS(2036), 2, sym__block_close, sym_list_marker_lower_alpha_period, - [15746] = 2, - ACTIONS(2027), 1, - anon_sym_PIPE, - STATE(836), 1, - aux_sym_table_header_repeat1, - [15753] = 1, - ACTIONS(2030), 2, - sym__block_close, - sym_list_marker_decimal_period, - [15758] = 2, - ACTIONS(1888), 1, + [14702] = 2, + ACTIONS(1924), 1, sym_table_cell_alignment, - ACTIONS(2032), 1, + ACTIONS(2038), 1, sym__newline, - [15765] = 1, - ACTIONS(702), 2, + [14709] = 1, + ACTIONS(840), 2, sym__block_close, sym__block_quote_continuation, - [15770] = 1, - ACTIONS(2034), 2, - sym__footnote_mark_begin, - sym__in_fallback, - [15775] = 2, - ACTIONS(2036), 1, - sym__eof_or_newline, - STATE(658), 1, - sym__one_or_two_newlines, - [15782] = 2, - ACTIONS(610), 1, - sym__indented_content_spacer, - ACTIONS(2038), 1, - sym__code_block_end, - [15789] = 1, - ACTIONS(710), 2, + [14714] = 1, + ACTIONS(844), 2, sym__block_close, sym__block_quote_continuation, - [15794] = 1, - ACTIONS(714), 2, + [14719] = 1, + ACTIONS(1737), 2, + sym__block_close, + sym_list_marker_upper_alpha_period, + [14724] = 1, + ACTIONS(848), 2, sym__block_close, sym__block_quote_continuation, - [15799] = 1, - ACTIONS(718), 2, + [14729] = 1, + ACTIONS(860), 2, sym__block_close, sym__block_quote_continuation, - [15804] = 1, - ACTIONS(726), 2, + [14734] = 1, + ACTIONS(1755), 2, + sym__block_close, + sym_list_marker_upper_alpha_period, + [14739] = 1, + ACTIONS(2040), 2, + sym__block_close, + sym_list_marker_upper_roman_paren, + [14744] = 1, + ACTIONS(1737), 2, + sym__block_close, + sym_list_marker_lower_roman_period, + [14749] = 1, + ACTIONS(862), 2, sym__block_close, sym__block_quote_continuation, - [15809] = 1, - ACTIONS(1776), 2, + [14754] = 1, + ACTIONS(1755), 2, sym__block_close, - sym_list_marker_lower_alpha_period, - [15814] = 2, - ACTIONS(1888), 1, - sym_table_cell_alignment, - ACTIONS(2040), 1, - sym__newline, - [15821] = 2, + sym_list_marker_lower_roman_period, + [14759] = 2, ACTIONS(2042), 1, anon_sym_PIPE, - STATE(849), 1, + STATE(839), 1, + aux_sym_table_header_repeat1, + [14766] = 2, + ACTIONS(2044), 1, + anon_sym_PIPE, + STATE(840), 1, aux_sym_table_separator_repeat1, - [15828] = 1, - ACTIONS(730), 2, - sym__block_close, - sym__block_quote_continuation, - [15833] = 2, - ACTIONS(550), 1, - sym__indented_content_spacer, - ACTIONS(2045), 1, + [14773] = 2, + ACTIONS(2046), 1, + anon_sym_PIPE, + STATE(841), 1, + aux_sym_table_header_repeat1, + [14780] = 1, + ACTIONS(2048), 2, sym__eof_or_newline, - [15840] = 1, - ACTIONS(734), 2, + sym__close_paragraph, + [14785] = 1, + ACTIONS(852), 2, sym__block_close, sym__block_quote_continuation, - [15845] = 2, - ACTIONS(2047), 1, + [14790] = 2, + ACTIONS(2050), 1, anon_sym_PIPE, - STATE(858), 1, + STATE(800), 1, aux_sym_table_header_repeat1, - [15852] = 2, - ACTIONS(2049), 1, + [14797] = 2, + ACTIONS(2052), 1, anon_sym_PIPE, - STATE(859), 1, + STATE(879), 1, aux_sym_table_separator_repeat1, - [15859] = 2, - ACTIONS(2051), 1, + [14804] = 2, + ACTIONS(2054), 1, anon_sym_PIPE, - STATE(860), 1, + STATE(800), 1, aux_sym_table_header_repeat1, - [15866] = 1, - ACTIONS(738), 2, + [14811] = 1, + ACTIONS(2056), 2, sym__block_close, - sym__block_quote_continuation, - [15871] = 1, - ACTIONS(742), 2, + sym_list_marker_decimal_period, + [14816] = 1, + ACTIONS(1737), 2, + sym__block_close, + sym_list_marker_upper_roman_period, + [14821] = 1, + ACTIONS(1755), 2, sym__block_close, + sym_list_marker_upper_roman_period, + [14826] = 1, + ACTIONS(460), 2, sym__block_quote_continuation, - [15876] = 2, - ACTIONS(2053), 1, + aux_sym__line_token1, + [14831] = 2, + ACTIONS(2058), 1, anon_sym_PIPE, - STATE(836), 1, + STATE(851), 1, aux_sym_table_header_repeat1, - [15883] = 2, - ACTIONS(2055), 1, + [14838] = 2, + ACTIONS(2060), 1, anon_sym_PIPE, - STATE(849), 1, + STATE(852), 1, aux_sym_table_separator_repeat1, - [15890] = 2, - ACTIONS(2057), 1, + [14845] = 2, + ACTIONS(2062), 1, anon_sym_PIPE, - STATE(836), 1, + STATE(853), 1, aux_sym_table_header_repeat1, - [15897] = 1, - ACTIONS(746), 2, - sym__block_close, - sym__block_quote_continuation, - [15902] = 2, - ACTIONS(2059), 1, + [14852] = 2, + ACTIONS(2064), 1, + sym__id, + STATE(1015), 1, + sym_reference_label, + [14859] = 2, + ACTIONS(2066), 1, + sym__whitespace1, + ACTIONS(2068), 1, + sym__newline, + [14866] = 2, + ACTIONS(2070), 1, anon_sym_PIPE, - STATE(867), 1, + STATE(800), 1, aux_sym_table_header_repeat1, - [15909] = 2, - ACTIONS(2061), 1, + [14873] = 2, + ACTIONS(2072), 1, anon_sym_PIPE, - STATE(868), 1, + STATE(879), 1, aux_sym_table_separator_repeat1, - [15916] = 2, - ACTIONS(2063), 1, + [14880] = 2, + ACTIONS(2074), 1, anon_sym_PIPE, - STATE(869), 1, + STATE(800), 1, aux_sym_table_header_repeat1, - [15923] = 1, - ACTIONS(750), 2, + [14887] = 1, + ACTIONS(1737), 2, + sym__block_close, + sym_list_marker_decimal_paren, + [14892] = 1, + ACTIONS(686), 2, + sym__block_close, + sym__block_quote_continuation, + [14897] = 1, + ACTIONS(1755), 2, + sym__block_close, + sym_list_marker_decimal_paren, + [14902] = 1, + ACTIONS(698), 2, sym__block_close, sym__block_quote_continuation, - [15928] = 2, - ACTIONS(622), 1, - sym__indented_content_spacer, - ACTIONS(2065), 1, - sym__div_end, - [15935] = 2, - ACTIONS(2067), 1, + [14907] = 2, + ACTIONS(2076), 1, anon_sym_PIPE, - STATE(836), 1, + STATE(863), 1, aux_sym_table_header_repeat1, - [15942] = 2, - ACTIONS(2069), 1, + [14914] = 2, + ACTIONS(2078), 1, anon_sym_PIPE, - STATE(849), 1, + STATE(864), 1, aux_sym_table_separator_repeat1, - [15949] = 2, - ACTIONS(2071), 1, + [14921] = 2, + ACTIONS(2080), 1, anon_sym_PIPE, - STATE(836), 1, + STATE(865), 1, aux_sym_table_header_repeat1, - [15956] = 2, - ACTIONS(632), 1, - sym__indented_content_spacer, - ACTIONS(2073), 1, - sym__code_block_end, - [15963] = 1, - ACTIONS(758), 2, - sym__block_close, + [14928] = 1, + ACTIONS(460), 2, + sym__list_item_continuation, sym__block_quote_continuation, - [15968] = 2, - ACTIONS(2075), 1, + [14933] = 1, + ACTIONS(1755), 2, + sym__block_close, + sym_list_marker_decimal_period, + [14938] = 2, + ACTIONS(2082), 1, anon_sym_PIPE, - STATE(877), 1, + STATE(800), 1, aux_sym_table_header_repeat1, - [15975] = 2, - ACTIONS(2077), 1, + [14945] = 2, + ACTIONS(2084), 1, anon_sym_PIPE, - STATE(878), 1, + STATE(879), 1, aux_sym_table_separator_repeat1, - [15982] = 2, - ACTIONS(2079), 1, + [14952] = 2, + ACTIONS(2086), 1, anon_sym_PIPE, - STATE(879), 1, + STATE(800), 1, aux_sym_table_header_repeat1, - [15989] = 1, - ACTIONS(762), 2, + [14959] = 1, + ACTIONS(710), 2, sym__block_close, sym__block_quote_continuation, - [15994] = 1, - ACTIONS(766), 2, + [14964] = 1, + ACTIONS(714), 2, + sym__block_close, + sym__block_quote_continuation, + [14969] = 1, + ACTIONS(718), 2, sym__block_close, sym__block_quote_continuation, - [15999] = 2, - ACTIONS(2081), 1, + [14974] = 2, + ACTIONS(2088), 1, anon_sym_PIPE, - STATE(836), 1, + STATE(874), 1, aux_sym_table_header_repeat1, - [16006] = 2, - ACTIONS(2083), 1, + [14981] = 2, + ACTIONS(2090), 1, anon_sym_PIPE, - STATE(849), 1, + STATE(875), 1, aux_sym_table_separator_repeat1, - [16013] = 2, - ACTIONS(2085), 1, + [14988] = 2, + ACTIONS(2092), 1, anon_sym_PIPE, - STATE(836), 1, + STATE(876), 1, aux_sym_table_header_repeat1, - [16020] = 1, - ACTIONS(460), 2, - sym_list_marker_plus, + [14995] = 1, + ACTIONS(726), 2, + sym__block_close, sym__block_quote_continuation, - [16025] = 2, - ACTIONS(2087), 1, + [15000] = 1, + ACTIONS(730), 2, + sym__block_close, + sym__block_quote_continuation, + [15005] = 2, + ACTIONS(2094), 1, anon_sym_PIPE, - STATE(885), 1, + STATE(800), 1, aux_sym_table_header_repeat1, - [16032] = 2, - ACTIONS(2089), 1, + [15012] = 2, + ACTIONS(2096), 1, anon_sym_PIPE, - STATE(886), 1, + STATE(879), 1, aux_sym_table_separator_repeat1, - [16039] = 2, - ACTIONS(2091), 1, + [15019] = 2, + ACTIONS(2098), 1, anon_sym_PIPE, - STATE(887), 1, + STATE(800), 1, aux_sym_table_header_repeat1, - [16046] = 2, - ACTIONS(556), 1, - sym__indented_content_spacer, - ACTIONS(2093), 1, - sym__div_end, - [16053] = 2, - ACTIONS(2095), 1, - anon_sym_PIPE, + [15026] = 2, + ACTIONS(1744), 1, + sym__table_cell, + STATE(834), 1, + sym_table_cell, + [15033] = 2, + ACTIONS(1744), 1, + sym__table_cell, STATE(836), 1, - aux_sym_table_header_repeat1, - [16060] = 2, - ACTIONS(2097), 1, + sym_table_cell, + [15040] = 2, + ACTIONS(2100), 1, anon_sym_PIPE, - STATE(849), 1, + STATE(879), 1, aux_sym_table_separator_repeat1, - [16067] = 2, - ACTIONS(2099), 1, - anon_sym_PIPE, - STATE(836), 1, - aux_sym_table_header_repeat1, - [16074] = 2, - ACTIONS(562), 1, - sym__indented_content_spacer, - ACTIONS(2101), 1, - sym__div_end, - [16081] = 2, - ACTIONS(568), 1, - sym__indented_content_spacer, - ACTIONS(2103), 1, - sym__code_block_end, - [16088] = 2, - ACTIONS(574), 1, - sym__indented_content_spacer, - ACTIONS(2105), 1, - sym__code_block_end, - [16095] = 2, - ACTIONS(580), 1, - sym__indented_content_spacer, - ACTIONS(2107), 1, - sym__code_block_end, - [16102] = 2, - ACTIONS(604), 1, - sym__indented_content_spacer, - ACTIONS(2109), 1, - sym__code_block_end, - [16109] = 2, - ACTIONS(1935), 1, + [15047] = 2, + ACTIONS(1744), 1, + sym__table_cell, + STATE(846), 1, + sym_table_cell, + [15054] = 2, + ACTIONS(1744), 1, + sym__table_cell, + STATE(848), 1, + sym_table_cell, + [15061] = 2, + ACTIONS(1744), 1, + sym__table_cell, + STATE(858), 1, + sym_table_cell, + [15068] = 2, + ACTIONS(1744), 1, + sym__table_cell, + STATE(860), 1, + sym_table_cell, + [15075] = 2, + ACTIONS(1744), 1, + sym__table_cell, + STATE(869), 1, + sym_table_cell, + [15082] = 2, + ACTIONS(1744), 1, + sym__table_cell, + STATE(871), 1, + sym_table_cell, + [15089] = 2, + ACTIONS(2064), 1, sym__id, - STATE(1113), 1, + STATE(1109), 1, sym_reference_label, - [16116] = 2, - ACTIONS(1935), 1, + [15096] = 2, + ACTIONS(2064), 1, sym__id, - STATE(1119), 1, + STATE(1115), 1, sym_reference_label, - [16123] = 2, - ACTIONS(1935), 1, + [15103] = 2, + ACTIONS(2064), 1, sym__id, - STATE(1125), 1, + STATE(1121), 1, sym_reference_label, - [16130] = 2, - ACTIONS(1935), 1, + [15110] = 2, + ACTIONS(2064), 1, sym__id, - STATE(1131), 1, + STATE(1127), 1, sym_reference_label, - [16137] = 2, + [15117] = 1, + ACTIONS(734), 2, + sym__block_close, + sym__block_quote_continuation, + [15122] = 1, + ACTIONS(738), 2, + sym__block_close, + sym__block_quote_continuation, + [15127] = 1, + ACTIONS(742), 2, + sym__block_close, + sym__block_quote_continuation, + [15132] = 1, + ACTIONS(746), 2, + sym__block_close, + sym__block_quote_continuation, + [15137] = 1, + ACTIONS(820), 2, + sym__block_close, + sym__block_quote_continuation, + [15142] = 1, + ACTIONS(2103), 1, + sym__whitespace, + [15146] = 1, + ACTIONS(862), 1, + sym__indented_content_spacer, + [15150] = 1, + ACTIONS(2105), 1, + sym__block_close, + [15154] = 1, + ACTIONS(2107), 1, + sym__eof_or_newline, + [15158] = 1, + ACTIONS(1924), 1, + sym_table_cell_alignment, + [15162] = 1, + ACTIONS(2109), 1, + sym__block_close, + [15166] = 1, ACTIONS(2111), 1, - sym_language, + sym__newline, + [15170] = 1, ACTIONS(2113), 1, sym__newline, - [16144] = 1, - ACTIONS(848), 2, - sym__block_close, - sym__block_quote_continuation, - [16149] = 1, + [15174] = 1, + ACTIONS(852), 1, + sym__indented_content_spacer, + [15178] = 1, ACTIONS(2115), 1, - sym__whitespace, - [16153] = 1, + sym__newline, + [15182] = 1, ACTIONS(2117), 1, - sym__indented_content_spacer, - [16157] = 1, + sym__block_close, + [15186] = 1, ACTIONS(2119), 1, - ts_builtin_sym_end, - [16161] = 1, - ACTIONS(883), 1, - sym_list_marker_star, - [16165] = 1, + sym__newline, + [15190] = 1, ACTIONS(2121), 1, - anon_sym_RBRACK_COLON, - [16169] = 1, + sym__block_close, + [15194] = 1, ACTIONS(2123), 1, - anon_sym_RBRACK_COLON, - [16173] = 1, + anon_sym_PIPE, + [15198] = 1, ACTIONS(2125), 1, - sym__newline, - [16177] = 1, + sym__block_close, + [15202] = 1, + ACTIONS(881), 1, + sym_list_marker_dash, + [15206] = 1, ACTIONS(2127), 1, - sym__newline, - [16181] = 1, + sym__indented_content_spacer, + [15210] = 1, ACTIONS(2129), 1, - sym_table_cell_alignment, - [16185] = 1, + sym__newline, + [15214] = 1, ACTIONS(2131), 1, - sym__whitespace1, - [16189] = 1, + sym__indented_content_spacer, + [15218] = 1, ACTIONS(2133), 1, - sym__block_close, - [16193] = 1, + sym__newline, + [15222] = 1, ACTIONS(2135), 1, - sym__whitespace, - [16197] = 1, + sym__block_close, + [15226] = 1, ACTIONS(2137), 1, - sym__newline, - [16201] = 1, + sym__block_close, + [15230] = 1, ACTIONS(2139), 1, - sym__newline, - [16205] = 1, + anon_sym_EQ, + [15234] = 1, ACTIONS(2141), 1, sym__newline, - [16209] = 1, + [15238] = 1, ACTIONS(2143), 1, - anon_sym_EQ, - [16213] = 1, - ACTIONS(718), 1, - sym__indented_content_spacer, - [16217] = 1, + sym__newline, + [15242] = 1, ACTIONS(2145), 1, sym__newline, - [16221] = 1, + [15246] = 1, ACTIONS(2147), 1, sym__newline, - [16225] = 1, + [15250] = 1, ACTIONS(2149), 1, sym__newline, - [16229] = 1, + [15254] = 1, ACTIONS(2151), 1, - sym__block_close, - [16233] = 1, + sym__newline, + [15258] = 1, ACTIONS(2153), 1, - sym__block_close, - [16237] = 1, + sym__newline, + [15262] = 1, ACTIONS(2155), 1, sym__newline, - [16241] = 1, + [15266] = 1, ACTIONS(2157), 1, sym__newline, - [16245] = 1, + [15270] = 1, ACTIONS(2159), 1, - sym__newline, - [16249] = 1, + anon_sym_EQ, + [15274] = 1, ACTIONS(2161), 1, - sym__newline, - [16253] = 1, + sym__block_close, + [15278] = 1, + ACTIONS(686), 1, + sym__indented_content_spacer, + [15282] = 1, ACTIONS(2163), 1, - sym__newline, - [16257] = 1, + anon_sym_PIPE, + [15286] = 1, ACTIONS(2165), 1, - sym__newline, - [16261] = 1, + sym__whitespace1, + [15290] = 1, + ACTIONS(698), 1, + sym__indented_content_spacer, + [15294] = 1, ACTIONS(2167), 1, sym__newline, - [16265] = 1, + [15298] = 1, ACTIONS(2169), 1, - sym__newline, - [16269] = 1, - ACTIONS(2171), 1, - sym__newline, - [16273] = 1, - ACTIONS(2173), 1, - sym__whitespace1, - [16277] = 1, + sym__block_close, + [15302] = 1, + ACTIONS(710), 1, + sym__indented_content_spacer, + [15306] = 1, + ACTIONS(714), 1, + sym__indented_content_spacer, + [15310] = 1, + ACTIONS(718), 1, + sym__indented_content_spacer, + [15314] = 1, ACTIONS(726), 1, sym__indented_content_spacer, - [16281] = 1, + [15318] = 1, ACTIONS(730), 1, sym__indented_content_spacer, - [16285] = 1, - ACTIONS(2175), 1, - sym_frontmatter_marker, - [16289] = 1, - ACTIONS(2177), 1, - sym__newline, - [16293] = 1, - ACTIONS(2179), 1, - sym__newline, - [16297] = 1, + [15322] = 1, ACTIONS(734), 1, sym__indented_content_spacer, - [16301] = 1, - ACTIONS(2181), 1, - sym__newline, - [16305] = 1, - ACTIONS(2183), 1, - sym__block_close, - [16309] = 1, + [15326] = 1, ACTIONS(738), 1, sym__indented_content_spacer, - [16313] = 1, + [15330] = 1, ACTIONS(742), 1, sym__indented_content_spacer, - [16317] = 1, + [15334] = 1, ACTIONS(746), 1, sym__indented_content_spacer, - [16321] = 1, - ACTIONS(2185), 1, - sym_frontmatter_marker, - [16325] = 1, - ACTIONS(1291), 1, - sym__newline, - [16329] = 1, - ACTIONS(2187), 1, + [15338] = 1, + ACTIONS(2171), 1, sym__whitespace1, - [16333] = 1, - ACTIONS(750), 1, - sym__indented_content_spacer, - [16337] = 1, - ACTIONS(758), 1, + [15342] = 1, + ACTIONS(754), 1, sym__indented_content_spacer, - [16341] = 1, - ACTIONS(2189), 1, - anon_sym_COLON, - [16345] = 1, + [15346] = 1, ACTIONS(762), 1, sym__indented_content_spacer, - [16349] = 1, + [15350] = 1, ACTIONS(766), 1, sym__indented_content_spacer, - [16353] = 1, + [15354] = 1, + ACTIONS(774), 1, + sym__indented_content_spacer, + [15358] = 1, + ACTIONS(2173), 1, + sym__newline, + [15362] = 1, + ACTIONS(2175), 1, + anon_sym_PIPE, + [15366] = 1, + ACTIONS(2177), 1, + sym__block_close, + [15370] = 1, + ACTIONS(2179), 1, + sym__newline, + [15374] = 1, + ACTIONS(2181), 1, + sym_link_destination, + [15378] = 1, + ACTIONS(2183), 1, + anon_sym_DQUOTE, + [15382] = 1, + ACTIONS(2185), 1, + sym__newline, + [15386] = 1, + ACTIONS(2187), 1, + sym__newline, + [15390] = 1, + ACTIONS(2189), 1, + sym__footnote_continuation, + [15394] = 1, ACTIONS(2191), 1, sym__newline, - [16357] = 1, + [15398] = 1, ACTIONS(2193), 1, - sym__indented_content_spacer, - [16361] = 1, - ACTIONS(702), 1, - sym__indented_content_spacer, - [16365] = 1, + sym__block_close, + [15402] = 1, ACTIONS(2195), 1, - anon_sym_RBRACK, - [16369] = 1, - ACTIONS(2197), 1, sym__newline, - [16373] = 1, - ACTIONS(2199), 1, + [15406] = 1, + ACTIONS(2197), 1, sym__block_close, - [16377] = 1, - ACTIONS(2201), 1, + [15410] = 1, + ACTIONS(2199), 1, sym__newline, - [16381] = 1, + [15414] = 1, + ACTIONS(2201), 1, + sym_table_cell_alignment, + [15418] = 1, ACTIONS(2203), 1, - sym__footnote_continuation, - [16385] = 1, - ACTIONS(2205), 1, sym__block_close, - [16389] = 1, + [15422] = 1, + ACTIONS(2205), 1, + sym__newline, + [15426] = 1, ACTIONS(2207), 1, - sym_language, - [16393] = 1, + sym__newline, + [15430] = 1, ACTIONS(2209), 1, - sym__indented_content_spacer, - [16397] = 1, + sym__newline, + [15434] = 1, ACTIONS(2211), 1, - sym__block_close, - [16401] = 1, + sym__newline, + [15438] = 1, ACTIONS(2213), 1, - sym__block_close, - [16405] = 1, + sym__newline, + [15442] = 1, ACTIONS(2215), 1, - sym__block_close, - [16409] = 1, + sym__newline, + [15446] = 1, ACTIONS(2217), 1, sym__newline, - [16413] = 1, + [15450] = 1, ACTIONS(2219), 1, - anon_sym_PIPE, - [16417] = 1, + sym__newline, + [15454] = 1, ACTIONS(2221), 1, sym__newline, - [16421] = 1, + [15458] = 1, ACTIONS(2223), 1, - sym__indented_content_spacer, - [16425] = 1, + sym__block_close, + [15462] = 1, ACTIONS(2225), 1, sym__block_close, - [16429] = 1, + [15466] = 1, ACTIONS(2227), 1, - anon_sym_RBRACK, - [16433] = 1, + sym__newline, + [15470] = 1, ACTIONS(2229), 1, sym__newline, - [16437] = 1, - ACTIONS(686), 1, - sym__indented_content_spacer, - [16441] = 1, + [15474] = 1, ACTIONS(2231), 1, - sym__eof_or_newline, - [16445] = 1, + sym__newline, + [15478] = 1, ACTIONS(2233), 1, sym__newline, - [16449] = 1, - ACTIONS(682), 1, - sym__indented_content_spacer, - [16453] = 1, + [15482] = 1, ACTIONS(2235), 1, sym__newline, - [16457] = 1, - ACTIONS(1888), 1, - sym_table_cell_alignment, - [16461] = 1, + [15486] = 1, ACTIONS(2237), 1, sym__newline, - [16465] = 1, + [15490] = 1, ACTIONS(2239), 1, - sym__block_close, - [16469] = 1, + sym__newline, + [15494] = 1, ACTIONS(2241), 1, - sym__block_close, - [16473] = 1, + sym__newline, + [15498] = 1, ACTIONS(2243), 1, - sym__footnote_mark_begin, - [16477] = 1, - ACTIONS(2245), 1, sym__newline, - [16481] = 1, + [15502] = 1, + ACTIONS(2245), 1, + sym__block_close, + [15506] = 1, ACTIONS(2247), 1, - sym__newline, - [16485] = 1, + anon_sym_RBRACK, + [15510] = 1, ACTIONS(2249), 1, - sym__newline, - [16489] = 1, + sym__indented_content_spacer, + [15514] = 1, ACTIONS(2251), 1, - sym__newline, - [16493] = 1, + sym__whitespace, + [15518] = 1, ACTIONS(2253), 1, sym__newline, - [16497] = 1, + [15522] = 1, + ACTIONS(1261), 1, + sym__newline, + [15526] = 1, ACTIONS(2255), 1, sym__newline, - [16501] = 1, + [15530] = 1, + ACTIONS(883), 1, + sym_list_marker_star, + [15534] = 1, ACTIONS(2257), 1, - sym__newline, - [16505] = 1, + sym__indented_content_spacer, + [15538] = 1, ACTIONS(2259), 1, - sym__newline, - [16509] = 1, + sym__list_item_continuation, + [15542] = 1, ACTIONS(2261), 1, - sym__block_close, - [16513] = 1, + anon_sym_RBRACK, + [15546] = 1, + ACTIONS(800), 1, + sym__indented_content_spacer, + [15550] = 1, ACTIONS(2263), 1, - sym_link_destination, - [16517] = 1, + sym_language, + [15554] = 1, + ACTIONS(804), 1, + sym__indented_content_spacer, + [15558] = 1, ACTIONS(2265), 1, sym__newline, - [16521] = 1, + [15562] = 1, ACTIONS(2267), 1, - anon_sym_DQUOTE, - [16525] = 1, - ACTIONS(2269), 1, - sym__block_close, - [16529] = 1, - ACTIONS(2271), 1, sym__newline, - [16533] = 1, - ACTIONS(690), 1, - sym__indented_content_spacer, - [16537] = 1, - ACTIONS(2273), 1, - sym__block_close, - [16541] = 1, - ACTIONS(706), 1, - sym__indented_content_spacer, - [16545] = 1, - ACTIONS(754), 1, - sym__indented_content_spacer, - [16549] = 1, - ACTIONS(770), 1, - sym__indented_content_spacer, - [16553] = 1, - ACTIONS(782), 1, - sym__indented_content_spacer, - [16557] = 1, - ACTIONS(788), 1, - sym__indented_content_spacer, - [16561] = 1, + [15566] = 1, ACTIONS(792), 1, sym__indented_content_spacer, - [16565] = 1, - ACTIONS(796), 1, - sym__indented_content_spacer, - [16569] = 1, - ACTIONS(800), 1, - sym__indented_content_spacer, - [16573] = 1, - ACTIONS(804), 1, - sym__indented_content_spacer, - [16577] = 1, - ACTIONS(808), 1, - sym__indented_content_spacer, - [16581] = 1, - ACTIONS(812), 1, - sym__indented_content_spacer, - [16585] = 1, + [15570] = 1, + ACTIONS(2269), 1, + sym__footnote_mark_begin, + [15574] = 1, + ACTIONS(2271), 1, + sym__whitespace, + [15578] = 1, + ACTIONS(2273), 1, + anon_sym_RBRACK, + [15582] = 1, + ACTIONS(2275), 1, + anon_sym_RBRACK_COLON, + [15586] = 1, + ACTIONS(2277), 1, + anon_sym_RBRACK, + [15590] = 1, + ACTIONS(2279), 1, + sym__newline, + [15594] = 1, ACTIONS(816), 1, sym__indented_content_spacer, - [16589] = 1, + [15598] = 1, + ACTIONS(2281), 1, + sym__newline, + [15602] = 1, ACTIONS(820), 1, sym__indented_content_spacer, - [16593] = 1, + [15606] = 1, ACTIONS(824), 1, sym__indented_content_spacer, - [16597] = 1, - ACTIONS(828), 1, - sym__indented_content_spacer, - [16601] = 1, - ACTIONS(832), 1, - sym__indented_content_spacer, - [16605] = 1, - ACTIONS(836), 1, - sym__indented_content_spacer, - [16609] = 1, - ACTIONS(840), 1, - sym__indented_content_spacer, - [16613] = 1, - ACTIONS(844), 1, - sym__indented_content_spacer, - [16617] = 1, - ACTIONS(848), 1, - sym__indented_content_spacer, - [16621] = 1, - ACTIONS(2275), 1, - anon_sym_PIPE, - [16625] = 1, - ACTIONS(536), 1, - sym__indented_content_spacer, - [16629] = 1, - ACTIONS(2277), 1, - sym__newline, - [16633] = 1, - ACTIONS(2279), 1, - sym__newline, - [16637] = 1, - ACTIONS(2281), 1, - sym__whitespace, - [16641] = 1, - ACTIONS(881), 1, - sym_list_marker_dash, - [16645] = 1, + [15610] = 1, ACTIONS(2283), 1, sym__newline, - [16649] = 1, + [15614] = 1, ACTIONS(2285), 1, sym__block_close, - [16653] = 1, - ACTIONS(2287), 1, + [15618] = 1, + ACTIONS(828), 1, sym__indented_content_spacer, - [16657] = 1, + [15622] = 1, + ACTIONS(2287), 1, + anon_sym_RBRACK_COLON, + [15626] = 1, ACTIONS(2289), 1, - sym__newline, - [16661] = 1, + ts_builtin_sym_end, + [15630] = 1, ACTIONS(2291), 1, - sym__newline, - [16665] = 1, - ACTIONS(2293), 1, sym__block_close, - [16669] = 1, + [15634] = 1, + ACTIONS(2293), 1, + sym__newline, + [15638] = 1, ACTIONS(2295), 1, sym__newline, - [16673] = 1, + [15642] = 1, + ACTIONS(666), 1, + sym__indented_content_spacer, + [15646] = 1, ACTIONS(2297), 1, - sym__block_close, - [16677] = 1, + sym__indented_content_spacer, + [15650] = 1, + ACTIONS(670), 1, + sym__indented_content_spacer, + [15654] = 1, + ACTIONS(674), 1, + sym__indented_content_spacer, + [15658] = 1, + ACTIONS(678), 1, + sym__indented_content_spacer, + [15662] = 1, ACTIONS(2299), 1, sym__newline, - [16681] = 1, + [15666] = 1, ACTIONS(2301), 1, sym__newline, - [16685] = 1, + [15670] = 1, ACTIONS(2303), 1, - sym__block_close, - [16689] = 1, + sym__newline, + [15674] = 1, ACTIONS(2305), 1, sym__newline, - [16693] = 1, + [15678] = 1, ACTIONS(2307), 1, sym__newline, - [16697] = 1, + [15682] = 1, ACTIONS(2309), 1, - sym__whitespace1, - [16701] = 1, + sym__newline, + [15686] = 1, + ACTIONS(682), 1, + sym__indented_content_spacer, + [15690] = 1, ACTIONS(2311), 1, - sym__whitespace, - [16705] = 1, + sym__whitespace1, + [15694] = 1, ACTIONS(2313), 1, - sym__indented_content_spacer, - [16709] = 1, + sym__whitespace, + [15698] = 1, ACTIONS(2315), 1, - sym__newline, - [16713] = 1, - ACTIONS(852), 1, sym__indented_content_spacer, - [16717] = 1, - ACTIONS(856), 1, + [15702] = 1, + ACTIONS(690), 1, + sym__indented_content_spacer, + [15706] = 1, + ACTIONS(702), 1, sym__indented_content_spacer, - [16721] = 1, + [15710] = 1, ACTIONS(2317), 1, - sym__newline, - [16725] = 1, + sym__block_close, + [15714] = 1, ACTIONS(2319), 1, - anon_sym_RBRACK, - [16729] = 1, + sym__newline, + [15718] = 1, ACTIONS(2321), 1, - sym__indented_content_spacer, - [16733] = 1, + anon_sym_COLON, + [15722] = 1, ACTIONS(2323), 1, - sym__newline, - [16737] = 1, + sym__indented_content_spacer, + [15726] = 1, + ACTIONS(750), 1, + sym__indented_content_spacer, + [15730] = 1, + ACTIONS(758), 1, + sym__indented_content_spacer, + [15734] = 1, ACTIONS(2325), 1, - sym__newline, - [16741] = 1, + sym__whitespace1, + [15738] = 1, ACTIONS(2327), 1, sym__newline, - [16745] = 1, + [15742] = 1, ACTIONS(2329), 1, - sym__newline, - [16749] = 1, + sym__eof_or_newline, + [15746] = 1, ACTIONS(2331), 1, sym__newline, - [16753] = 1, + [15750] = 1, ACTIONS(2333), 1, sym__newline, - [16757] = 1, + [15754] = 1, ACTIONS(2335), 1, sym__newline, - [16761] = 1, + [15758] = 1, + ACTIONS(770), 1, + sym__indented_content_spacer, + [15762] = 1, ACTIONS(2337), 1, sym__newline, - [16765] = 1, + [15766] = 1, ACTIONS(2339), 1, - sym__newline, - [16769] = 1, + sym__whitespace1, + [15770] = 1, ACTIONS(2341), 1, - sym__newline, - [16773] = 1, + sym__whitespace, + [15774] = 1, ACTIONS(2343), 1, - sym__whitespace1, - [16777] = 1, + sym__indented_content_spacer, + [15778] = 1, ACTIONS(2345), 1, - sym__whitespace, - [16781] = 1, + sym__block_close, + [15782] = 1, ACTIONS(2347), 1, + sym__block_close, + [15786] = 1, + ACTIONS(778), 1, sym__indented_content_spacer, - [16785] = 1, - ACTIONS(666), 1, - sym__indented_content_spacer, - [16789] = 1, - ACTIONS(672), 1, - sym__indented_content_spacer, - [16793] = 1, + [15790] = 1, ACTIONS(2349), 1, sym__newline, - [16797] = 1, + [15794] = 1, ACTIONS(2351), 1, sym__newline, - [16801] = 1, + [15798] = 1, ACTIONS(2353), 1, - sym__newline, - [16805] = 1, - ACTIONS(2355), 1, sym__indented_content_spacer, - [16809] = 1, + [15802] = 1, + ACTIONS(2355), 1, + sym__newline, + [15806] = 1, ACTIONS(2357), 1, sym__newline, - [16813] = 1, - ACTIONS(885), 1, - sym_list_marker_plus, - [16817] = 1, + [15810] = 1, ACTIONS(2359), 1, sym__newline, - [16821] = 1, + [15814] = 1, ACTIONS(2361), 1, - sym__indented_content_spacer, - [16825] = 1, + sym__newline, + [15818] = 1, ACTIONS(2363), 1, sym__newline, - [16829] = 1, + [15822] = 1, ACTIONS(2365), 1, sym__newline, - [16833] = 1, + [15826] = 1, ACTIONS(2367), 1, sym__newline, - [16837] = 1, + [15830] = 1, ACTIONS(2369), 1, sym__newline, - [16841] = 1, + [15834] = 1, ACTIONS(2371), 1, sym__newline, - [16845] = 1, + [15838] = 1, ACTIONS(2373), 1, - sym__newline, - [16849] = 1, + sym__whitespace1, + [15842] = 1, ACTIONS(2375), 1, sym__whitespace1, - [16853] = 1, + [15846] = 1, ACTIONS(2377), 1, sym__whitespace, - [16857] = 1, + [15850] = 1, ACTIONS(2379), 1, sym__indented_content_spacer, - [16861] = 1, + [15854] = 1, + ACTIONS(786), 1, + sym__indented_content_spacer, + [15858] = 1, + ACTIONS(806), 1, + sym__indented_content_spacer, + [15862] = 1, ACTIONS(2381), 1, - sym__block_close, - [16865] = 1, - ACTIONS(2383), 1, sym__newline, - [16869] = 1, + [15866] = 1, + ACTIONS(810), 1, + sym__indented_content_spacer, + [15870] = 1, + ACTIONS(2383), 1, + sym__indented_content_spacer, + [15874] = 1, ACTIONS(2385), 1, - sym__newline, - [16873] = 1, + sym__indented_content_spacer, + [15878] = 1, + ACTIONS(832), 1, + sym__indented_content_spacer, + [15882] = 1, + ACTIONS(836), 1, + sym__indented_content_spacer, + [15886] = 1, ACTIONS(2387), 1, sym__newline, - [16877] = 1, - ACTIONS(2389), 1, + [15890] = 1, + ACTIONS(536), 1, sym__indented_content_spacer, - [16881] = 1, + [15894] = 1, + ACTIONS(2389), 1, + sym__newline, + [15898] = 1, ACTIONS(2391), 1, sym__newline, - [16885] = 1, + [15902] = 1, ACTIONS(2393), 1, - sym__list_item_continuation, - [16889] = 1, - ACTIONS(2395), 1, sym__newline, - [16893] = 1, - ACTIONS(664), 1, - sym__indented_content_spacer, - [16897] = 1, + [15906] = 1, + ACTIONS(2395), 1, + sym__whitespace, + [15910] = 1, ACTIONS(2397), 1, - sym__whitespace1, - [16901] = 1, + sym__block_close, + [15914] = 1, ACTIONS(2399), 1, - sym__newline, - [16905] = 1, + sym__whitespace1, + [15918] = 1, ACTIONS(2401), 1, - sym__newline, - [16909] = 1, + sym__whitespace, + [15922] = 1, ACTIONS(2403), 1, - sym__whitespace1, - [16913] = 1, + sym__indented_content_spacer, + [15926] = 1, ACTIONS(2405), 1, - anon_sym_PIPE, - [16917] = 1, + sym__indented_content_spacer, + [15930] = 1, ACTIONS(2407), 1, sym__indented_content_spacer, - [16921] = 1, + [15934] = 1, ACTIONS(2409), 1, - sym__whitespace1, - [16925] = 1, + sym__indented_content_spacer, + [15938] = 1, ACTIONS(2411), 1, - sym__whitespace, - [16929] = 1, + sym__indented_content_spacer, + [15942] = 1, ACTIONS(2413), 1, sym__indented_content_spacer, - [16933] = 1, + [15946] = 1, ACTIONS(2415), 1, sym__indented_content_spacer, - [16937] = 1, + [15950] = 1, ACTIONS(2417), 1, sym__indented_content_spacer, - [16941] = 1, + [15954] = 1, ACTIONS(2419), 1, sym__indented_content_spacer, - [16945] = 1, + [15958] = 1, ACTIONS(2421), 1, sym__indented_content_spacer, - [16949] = 1, + [15962] = 1, ACTIONS(2423), 1, sym__indented_content_spacer, - [16953] = 1, + [15966] = 1, ACTIONS(2425), 1, sym__indented_content_spacer, - [16957] = 1, + [15970] = 1, ACTIONS(2427), 1, sym__indented_content_spacer, - [16961] = 1, + [15974] = 1, ACTIONS(2429), 1, sym__indented_content_spacer, - [16965] = 1, + [15978] = 1, ACTIONS(2431), 1, sym__indented_content_spacer, - [16969] = 1, + [15982] = 1, ACTIONS(2433), 1, - sym__indented_content_spacer, - [16973] = 1, + sym__whitespace, + [15986] = 1, ACTIONS(2435), 1, sym__indented_content_spacer, - [16977] = 1, + [15990] = 1, ACTIONS(2437), 1, - sym__indented_content_spacer, - [16981] = 1, + sym_table_cell_alignment, + [15994] = 1, ACTIONS(2439), 1, - sym__indented_content_spacer, - [16985] = 1, + sym_frontmatter_marker, + [15998] = 1, ACTIONS(2441), 1, - sym__indented_content_spacer, - [16989] = 1, + anon_sym_RBRACK_COLON, + [16002] = 1, ACTIONS(2443), 1, - sym__whitespace, - [16993] = 1, + sym_link_destination, + [16006] = 1, ACTIONS(2445), 1, - sym__list_item_continuation, - [16997] = 1, + sym__newline, + [16010] = 1, ACTIONS(2447), 1, + aux_sym_value_token1, + [16014] = 1, + ACTIONS(2449), 1, sym_table_cell_alignment, - [17001] = 1, - ACTIONS(860), 1, + [16018] = 1, + ACTIONS(840), 1, sym__indented_content_spacer, - [17005] = 1, - ACTIONS(2449), 1, - anon_sym_RBRACK_COLON, - [17009] = 1, + [16022] = 1, ACTIONS(2451), 1, - sym_link_destination, - [17013] = 1, + anon_sym_RBRACK_COLON, + [16026] = 1, ACTIONS(2453), 1, + sym_link_destination, + [16030] = 1, + ACTIONS(2455), 1, sym__whitespace, - [17017] = 1, - ACTIONS(776), 1, + [16034] = 1, + ACTIONS(844), 1, sym__indented_content_spacer, - [17021] = 1, - ACTIONS(2455), 1, - sym_table_cell_alignment, - [17025] = 1, + [16038] = 1, ACTIONS(2457), 1, - sym__block_close, - [17029] = 1, + sym_table_cell_alignment, + [16042] = 1, ACTIONS(2459), 1, - anon_sym_RBRACK_COLON, - [17033] = 1, + sym__newline, + [16046] = 1, ACTIONS(2461), 1, - sym_link_destination, - [17037] = 1, + anon_sym_RBRACK_COLON, + [16050] = 1, ACTIONS(2463), 1, - sym__whitespace, - [17041] = 1, - ACTIONS(714), 1, - sym__indented_content_spacer, - [17045] = 1, + sym_link_destination, + [16054] = 1, ACTIONS(2465), 1, - sym_table_cell_alignment, - [17049] = 1, + sym__whitespace, + [16058] = 1, ACTIONS(2467), 1, - sym__newline, - [17053] = 1, + sym__list_item_continuation, + [16062] = 1, ACTIONS(2469), 1, - anon_sym_RBRACK_COLON, - [17057] = 1, + sym_table_cell_alignment, + [16066] = 1, + ACTIONS(848), 1, + sym__indented_content_spacer, + [16070] = 1, ACTIONS(2471), 1, - sym_link_destination, - [17061] = 1, + anon_sym_RBRACK_COLON, + [16074] = 1, ACTIONS(2473), 1, - anon_sym_EQ, - [17065] = 1, - ACTIONS(710), 1, + sym_link_destination, + [16078] = 1, + ACTIONS(860), 1, sym__indented_content_spacer, - [17069] = 1, + [16082] = 1, ACTIONS(2475), 1, - sym_table_cell_alignment, - [17073] = 1, + sym__whitespace1, + [16086] = 1, + ACTIONS(885), 1, + sym_list_marker_plus, + [16090] = 1, ACTIONS(2477), 1, - sym__newline, - [17077] = 1, + sym__whitespace1, + [16094] = 1, ACTIONS(2479), 1, - anon_sym_RBRACK_COLON, - [17081] = 1, + sym_frontmatter_marker, + [16098] = 1, ACTIONS(2481), 1, - sym_link_destination, - [17085] = 1, + sym__whitespace1, + [16102] = 1, ACTIONS(2483), 1, - aux_sym_value_token1, - [17089] = 1, + sym__newline, + [16106] = 1, ACTIONS(2485), 1, sym__whitespace1, - [17093] = 1, + [16110] = 1, ACTIONS(2487), 1, - sym__block_close, - [17097] = 1, + sym__footnote_mark_begin, + [16114] = 1, ACTIONS(2489), 1, - sym__whitespace1, - [17101] = 1, + anon_sym_COLON, + [16118] = 1, ACTIONS(2491), 1, - sym__block_close, - [17105] = 1, + sym__footnote_mark_begin, + [16122] = 1, ACTIONS(2493), 1, - sym__whitespace1, - [17109] = 1, + anon_sym_COLON, + [16126] = 1, ACTIONS(2495), 1, - sym__newline, - [17113] = 1, + sym__footnote_mark_begin, + [16130] = 1, ACTIONS(2497), 1, - sym__whitespace1, - [17117] = 1, + anon_sym_COLON, + [16134] = 1, ACTIONS(2499), 1, sym__footnote_mark_begin, - [17121] = 1, + [16138] = 1, ACTIONS(2501), 1, anon_sym_COLON, - [17125] = 1, + [16142] = 1, ACTIONS(2503), 1, - sym__footnote_mark_begin, - [17129] = 1, + anon_sym_RBRACK, + [16146] = 1, ACTIONS(2505), 1, - anon_sym_COLON, - [17133] = 1, + anon_sym_RBRACK, + [16150] = 1, ACTIONS(2507), 1, - sym__footnote_mark_begin, - [17137] = 1, + anon_sym_RBRACK, + [16154] = 1, ACTIONS(2509), 1, - anon_sym_COLON, - [17141] = 1, + anon_sym_RBRACK, + [16158] = 1, ACTIONS(2511), 1, - sym__footnote_mark_begin, - [17145] = 1, + sym__block_close, + [16162] = 1, ACTIONS(2513), 1, - anon_sym_COLON, - [17149] = 1, + sym__block_close, + [16166] = 1, ACTIONS(2515), 1, - anon_sym_RBRACK, - [17153] = 1, + sym__newline, + [16170] = 1, ACTIONS(2517), 1, - anon_sym_RBRACK, - [17157] = 1, - ACTIONS(2519), 1, - anon_sym_RBRACK, - [17161] = 1, - ACTIONS(2521), 1, - anon_sym_RBRACK, - [17165] = 1, - ACTIONS(2523), 1, - anon_sym_RBRACK, - [17169] = 1, - ACTIONS(2525), 1, - sym__whitespace, - [17173] = 1, - ACTIONS(694), 1, + sym__whitespace1, + [16174] = 1, + ACTIONS(706), 1, sym__indented_content_spacer, - [17177] = 1, - ACTIONS(2527), 1, - sym__eof_or_newline, - [17181] = 1, - ACTIONS(2529), 1, - sym__block_close, }; static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(66)] = 0, - [SMALL_STATE(67)] = 75, - [SMALL_STATE(68)] = 150, - [SMALL_STATE(69)] = 218, - [SMALL_STATE(70)] = 286, - [SMALL_STATE(71)] = 338, - [SMALL_STATE(72)] = 390, - [SMALL_STATE(73)] = 437, - [SMALL_STATE(74)] = 484, - [SMALL_STATE(75)] = 531, - [SMALL_STATE(76)] = 580, - [SMALL_STATE(77)] = 629, - [SMALL_STATE(78)] = 678, - [SMALL_STATE(79)] = 727, - [SMALL_STATE(80)] = 776, - [SMALL_STATE(81)] = 825, - [SMALL_STATE(82)] = 872, - [SMALL_STATE(83)] = 919, - [SMALL_STATE(84)] = 966, - [SMALL_STATE(85)] = 1015, - [SMALL_STATE(86)] = 1064, - [SMALL_STATE(87)] = 1113, - [SMALL_STATE(88)] = 1162, - [SMALL_STATE(89)] = 1211, - [SMALL_STATE(90)] = 1260, - [SMALL_STATE(91)] = 1307, - [SMALL_STATE(92)] = 1354, - [SMALL_STATE(93)] = 1403, - [SMALL_STATE(94)] = 1450, - [SMALL_STATE(95)] = 1497, - [SMALL_STATE(96)] = 1546, - [SMALL_STATE(97)] = 1593, - [SMALL_STATE(98)] = 1642, - [SMALL_STATE(99)] = 1689, - [SMALL_STATE(100)] = 1736, - [SMALL_STATE(101)] = 1785, - [SMALL_STATE(102)] = 1834, - [SMALL_STATE(103)] = 1883, - [SMALL_STATE(104)] = 1932, - [SMALL_STATE(105)] = 1981, - [SMALL_STATE(106)] = 2030, - [SMALL_STATE(107)] = 2079, - [SMALL_STATE(108)] = 2126, - [SMALL_STATE(109)] = 2175, - [SMALL_STATE(110)] = 2221, - [SMALL_STATE(111)] = 2267, - [SMALL_STATE(112)] = 2313, - [SMALL_STATE(113)] = 2359, - [SMALL_STATE(114)] = 2405, - [SMALL_STATE(115)] = 2451, - [SMALL_STATE(116)] = 2497, - [SMALL_STATE(117)] = 2543, - [SMALL_STATE(118)] = 2589, - [SMALL_STATE(119)] = 2635, - [SMALL_STATE(120)] = 2681, - [SMALL_STATE(121)] = 2727, - [SMALL_STATE(122)] = 2773, - [SMALL_STATE(123)] = 2819, - [SMALL_STATE(124)] = 2865, - [SMALL_STATE(125)] = 2911, - [SMALL_STATE(126)] = 2957, - [SMALL_STATE(127)] = 3003, - [SMALL_STATE(128)] = 3049, - [SMALL_STATE(129)] = 3095, - [SMALL_STATE(130)] = 3141, - [SMALL_STATE(131)] = 3187, - [SMALL_STATE(132)] = 3233, - [SMALL_STATE(133)] = 3279, - [SMALL_STATE(134)] = 3325, - [SMALL_STATE(135)] = 3371, - [SMALL_STATE(136)] = 3417, - [SMALL_STATE(137)] = 3463, - [SMALL_STATE(138)] = 3509, - [SMALL_STATE(139)] = 3555, - [SMALL_STATE(140)] = 3601, - [SMALL_STATE(141)] = 3647, - [SMALL_STATE(142)] = 3693, - [SMALL_STATE(143)] = 3739, - [SMALL_STATE(144)] = 3785, - [SMALL_STATE(145)] = 3831, - [SMALL_STATE(146)] = 3877, - [SMALL_STATE(147)] = 3923, - [SMALL_STATE(148)] = 3969, - [SMALL_STATE(149)] = 4015, - [SMALL_STATE(150)] = 4061, - [SMALL_STATE(151)] = 4107, - [SMALL_STATE(152)] = 4153, - [SMALL_STATE(153)] = 4199, - [SMALL_STATE(154)] = 4245, - [SMALL_STATE(155)] = 4291, - [SMALL_STATE(156)] = 4337, - [SMALL_STATE(157)] = 4383, - [SMALL_STATE(158)] = 4429, - [SMALL_STATE(159)] = 4475, - [SMALL_STATE(160)] = 4521, - [SMALL_STATE(161)] = 4567, - [SMALL_STATE(162)] = 4613, - [SMALL_STATE(163)] = 4659, - [SMALL_STATE(164)] = 4705, - [SMALL_STATE(165)] = 4751, - [SMALL_STATE(166)] = 4797, - [SMALL_STATE(167)] = 4843, - [SMALL_STATE(168)] = 4889, - [SMALL_STATE(169)] = 4935, - [SMALL_STATE(170)] = 4981, - [SMALL_STATE(171)] = 5027, - [SMALL_STATE(172)] = 5073, - [SMALL_STATE(173)] = 5119, - [SMALL_STATE(174)] = 5165, - [SMALL_STATE(175)] = 5211, - [SMALL_STATE(176)] = 5257, - [SMALL_STATE(177)] = 5303, - [SMALL_STATE(178)] = 5349, - [SMALL_STATE(179)] = 5395, - [SMALL_STATE(180)] = 5441, - [SMALL_STATE(181)] = 5487, - [SMALL_STATE(182)] = 5533, - [SMALL_STATE(183)] = 5579, - [SMALL_STATE(184)] = 5625, - [SMALL_STATE(185)] = 5671, - [SMALL_STATE(186)] = 5717, - [SMALL_STATE(187)] = 5763, - [SMALL_STATE(188)] = 5809, - [SMALL_STATE(189)] = 5855, - [SMALL_STATE(190)] = 5901, - [SMALL_STATE(191)] = 5947, - [SMALL_STATE(192)] = 5993, - [SMALL_STATE(193)] = 6039, - [SMALL_STATE(194)] = 6085, - [SMALL_STATE(195)] = 6131, - [SMALL_STATE(196)] = 6177, - [SMALL_STATE(197)] = 6223, - [SMALL_STATE(198)] = 6269, - [SMALL_STATE(199)] = 6315, - [SMALL_STATE(200)] = 6361, - [SMALL_STATE(201)] = 6407, - [SMALL_STATE(202)] = 6453, - [SMALL_STATE(203)] = 6499, - [SMALL_STATE(204)] = 6545, - [SMALL_STATE(205)] = 6591, - [SMALL_STATE(206)] = 6637, - [SMALL_STATE(207)] = 6683, - [SMALL_STATE(208)] = 6729, - [SMALL_STATE(209)] = 6778, - [SMALL_STATE(210)] = 6823, - [SMALL_STATE(211)] = 6867, - [SMALL_STATE(212)] = 6920, - [SMALL_STATE(213)] = 6973, - [SMALL_STATE(214)] = 7026, - [SMALL_STATE(215)] = 7079, - [SMALL_STATE(216)] = 7132, - [SMALL_STATE(217)] = 7185, - [SMALL_STATE(218)] = 7238, - [SMALL_STATE(219)] = 7291, - [SMALL_STATE(220)] = 7344, - [SMALL_STATE(221)] = 7397, - [SMALL_STATE(222)] = 7447, - [SMALL_STATE(223)] = 7497, - [SMALL_STATE(224)] = 7547, - [SMALL_STATE(225)] = 7597, - [SMALL_STATE(226)] = 7647, - [SMALL_STATE(227)] = 7692, - [SMALL_STATE(228)] = 7737, - [SMALL_STATE(229)] = 7782, - [SMALL_STATE(230)] = 7827, - [SMALL_STATE(231)] = 7872, - [SMALL_STATE(232)] = 7900, - [SMALL_STATE(233)] = 7928, - [SMALL_STATE(234)] = 7951, - [SMALL_STATE(235)] = 7978, - [SMALL_STATE(236)] = 8005, - [SMALL_STATE(237)] = 8027, - [SMALL_STATE(238)] = 8063, - [SMALL_STATE(239)] = 8102, - [SMALL_STATE(240)] = 8135, - [SMALL_STATE(241)] = 8168, - [SMALL_STATE(242)] = 8201, - [SMALL_STATE(243)] = 8234, - [SMALL_STATE(244)] = 8267, - [SMALL_STATE(245)] = 8300, - [SMALL_STATE(246)] = 8332, - [SMALL_STATE(247)] = 8360, - [SMALL_STATE(248)] = 8390, - [SMALL_STATE(249)] = 8428, - [SMALL_STATE(250)] = 8466, - [SMALL_STATE(251)] = 8494, - [SMALL_STATE(252)] = 8522, - [SMALL_STATE(253)] = 8550, - [SMALL_STATE(254)] = 8578, - [SMALL_STATE(255)] = 8605, - [SMALL_STATE(256)] = 8632, - [SMALL_STATE(257)] = 8659, - [SMALL_STATE(258)] = 8686, - [SMALL_STATE(259)] = 8717, - [SMALL_STATE(260)] = 8744, - [SMALL_STATE(261)] = 8771, - [SMALL_STATE(262)] = 8798, - [SMALL_STATE(263)] = 8825, - [SMALL_STATE(264)] = 8852, - [SMALL_STATE(265)] = 8879, - [SMALL_STATE(266)] = 8906, - [SMALL_STATE(267)] = 8933, - [SMALL_STATE(268)] = 8960, - [SMALL_STATE(269)] = 8987, - [SMALL_STATE(270)] = 9014, - [SMALL_STATE(271)] = 9041, - [SMALL_STATE(272)] = 9068, - [SMALL_STATE(273)] = 9095, - [SMALL_STATE(274)] = 9122, - [SMALL_STATE(275)] = 9149, - [SMALL_STATE(276)] = 9176, - [SMALL_STATE(277)] = 9203, - [SMALL_STATE(278)] = 9230, - [SMALL_STATE(279)] = 9257, - [SMALL_STATE(280)] = 9284, - [SMALL_STATE(281)] = 9311, - [SMALL_STATE(282)] = 9338, - [SMALL_STATE(283)] = 9365, - [SMALL_STATE(284)] = 9392, - [SMALL_STATE(285)] = 9423, - [SMALL_STATE(286)] = 9445, - [SMALL_STATE(287)] = 9469, - [SMALL_STATE(288)] = 9493, - [SMALL_STATE(289)] = 9517, - [SMALL_STATE(290)] = 9541, - [SMALL_STATE(291)] = 9565, - [SMALL_STATE(292)] = 9589, - [SMALL_STATE(293)] = 9611, - [SMALL_STATE(294)] = 9635, - [SMALL_STATE(295)] = 9659, - [SMALL_STATE(296)] = 9683, - [SMALL_STATE(297)] = 9707, - [SMALL_STATE(298)] = 9731, - [SMALL_STATE(299)] = 9755, - [SMALL_STATE(300)] = 9776, - [SMALL_STATE(301)] = 9797, - [SMALL_STATE(302)] = 9830, - [SMALL_STATE(303)] = 9863, - [SMALL_STATE(304)] = 9884, - [SMALL_STATE(305)] = 9905, - [SMALL_STATE(306)] = 9938, - [SMALL_STATE(307)] = 9971, - [SMALL_STATE(308)] = 9992, - [SMALL_STATE(309)] = 10013, - [SMALL_STATE(310)] = 10046, - [SMALL_STATE(311)] = 10067, - [SMALL_STATE(312)] = 10100, - [SMALL_STATE(313)] = 10121, - [SMALL_STATE(314)] = 10137, - [SMALL_STATE(315)] = 10155, - [SMALL_STATE(316)] = 10171, - [SMALL_STATE(317)] = 10189, - [SMALL_STATE(318)] = 10205, - [SMALL_STATE(319)] = 10220, - [SMALL_STATE(320)] = 10235, - [SMALL_STATE(321)] = 10248, - [SMALL_STATE(322)] = 10261, - [SMALL_STATE(323)] = 10286, - [SMALL_STATE(324)] = 10297, - [SMALL_STATE(325)] = 10308, - [SMALL_STATE(326)] = 10333, - [SMALL_STATE(327)] = 10344, - [SMALL_STATE(328)] = 10367, - [SMALL_STATE(329)] = 10392, - [SMALL_STATE(330)] = 10415, - [SMALL_STATE(331)] = 10438, - [SMALL_STATE(332)] = 10461, - [SMALL_STATE(333)] = 10486, - [SMALL_STATE(334)] = 10509, - [SMALL_STATE(335)] = 10532, - [SMALL_STATE(336)] = 10557, - [SMALL_STATE(337)] = 10580, - [SMALL_STATE(338)] = 10603, - [SMALL_STATE(339)] = 10626, - [SMALL_STATE(340)] = 10651, - [SMALL_STATE(341)] = 10674, - [SMALL_STATE(342)] = 10697, - [SMALL_STATE(343)] = 10720, - [SMALL_STATE(344)] = 10731, - [SMALL_STATE(345)] = 10754, - [SMALL_STATE(346)] = 10777, - [SMALL_STATE(347)] = 10800, - [SMALL_STATE(348)] = 10811, - [SMALL_STATE(349)] = 10822, - [SMALL_STATE(350)] = 10833, - [SMALL_STATE(351)] = 10855, - [SMALL_STATE(352)] = 10877, - [SMALL_STATE(353)] = 10887, - [SMALL_STATE(354)] = 10909, - [SMALL_STATE(355)] = 10931, - [SMALL_STATE(356)] = 10953, - [SMALL_STATE(357)] = 10975, - [SMALL_STATE(358)] = 10985, - [SMALL_STATE(359)] = 11005, - [SMALL_STATE(360)] = 11015, - [SMALL_STATE(361)] = 11037, - [SMALL_STATE(362)] = 11047, - [SMALL_STATE(363)] = 11057, - [SMALL_STATE(364)] = 11067, - [SMALL_STATE(365)] = 11089, - [SMALL_STATE(366)] = 11111, - [SMALL_STATE(367)] = 11133, - [SMALL_STATE(368)] = 11143, - [SMALL_STATE(369)] = 11165, - [SMALL_STATE(370)] = 11175, - [SMALL_STATE(371)] = 11185, - [SMALL_STATE(372)] = 11207, - [SMALL_STATE(373)] = 11229, - [SMALL_STATE(374)] = 11251, - [SMALL_STATE(375)] = 11273, - [SMALL_STATE(376)] = 11295, - [SMALL_STATE(377)] = 11305, - [SMALL_STATE(378)] = 11315, - [SMALL_STATE(379)] = 11325, - [SMALL_STATE(380)] = 11335, - [SMALL_STATE(381)] = 11355, - [SMALL_STATE(382)] = 11377, - [SMALL_STATE(383)] = 11387, - [SMALL_STATE(384)] = 11409, - [SMALL_STATE(385)] = 11428, - [SMALL_STATE(386)] = 11437, - [SMALL_STATE(387)] = 11456, - [SMALL_STATE(388)] = 11465, - [SMALL_STATE(389)] = 11484, - [SMALL_STATE(390)] = 11493, - [SMALL_STATE(391)] = 11512, - [SMALL_STATE(392)] = 11531, - [SMALL_STATE(393)] = 11550, - [SMALL_STATE(394)] = 11569, - [SMALL_STATE(395)] = 11578, - [SMALL_STATE(396)] = 11587, - [SMALL_STATE(397)] = 11606, - [SMALL_STATE(398)] = 11625, - [SMALL_STATE(399)] = 11644, - [SMALL_STATE(400)] = 11663, - [SMALL_STATE(401)] = 11682, - [SMALL_STATE(402)] = 11701, - [SMALL_STATE(403)] = 11720, - [SMALL_STATE(404)] = 11739, - [SMALL_STATE(405)] = 11758, - [SMALL_STATE(406)] = 11777, - [SMALL_STATE(407)] = 11796, - [SMALL_STATE(408)] = 11815, - [SMALL_STATE(409)] = 11834, - [SMALL_STATE(410)] = 11853, - [SMALL_STATE(411)] = 11872, - [SMALL_STATE(412)] = 11891, - [SMALL_STATE(413)] = 11910, - [SMALL_STATE(414)] = 11929, - [SMALL_STATE(415)] = 11948, - [SMALL_STATE(416)] = 11967, - [SMALL_STATE(417)] = 11986, - [SMALL_STATE(418)] = 12005, - [SMALL_STATE(419)] = 12024, - [SMALL_STATE(420)] = 12043, - [SMALL_STATE(421)] = 12062, - [SMALL_STATE(422)] = 12081, - [SMALL_STATE(423)] = 12100, - [SMALL_STATE(424)] = 12119, - [SMALL_STATE(425)] = 12138, - [SMALL_STATE(426)] = 12157, - [SMALL_STATE(427)] = 12166, - [SMALL_STATE(428)] = 12185, - [SMALL_STATE(429)] = 12204, - [SMALL_STATE(430)] = 12223, - [SMALL_STATE(431)] = 12242, - [SMALL_STATE(432)] = 12251, - [SMALL_STATE(433)] = 12270, - [SMALL_STATE(434)] = 12289, - [SMALL_STATE(435)] = 12308, - [SMALL_STATE(436)] = 12323, - [SMALL_STATE(437)] = 12338, - [SMALL_STATE(438)] = 12353, - [SMALL_STATE(439)] = 12372, - [SMALL_STATE(440)] = 12391, - [SMALL_STATE(441)] = 12406, - [SMALL_STATE(442)] = 12415, - [SMALL_STATE(443)] = 12434, - [SMALL_STATE(444)] = 12443, - [SMALL_STATE(445)] = 12458, - [SMALL_STATE(446)] = 12477, - [SMALL_STATE(447)] = 12496, - [SMALL_STATE(448)] = 12515, - [SMALL_STATE(449)] = 12524, - [SMALL_STATE(450)] = 12543, - [SMALL_STATE(451)] = 12562, - [SMALL_STATE(452)] = 12581, - [SMALL_STATE(453)] = 12595, - [SMALL_STATE(454)] = 12607, - [SMALL_STATE(455)] = 12619, - [SMALL_STATE(456)] = 12631, - [SMALL_STATE(457)] = 12645, - [SMALL_STATE(458)] = 12659, - [SMALL_STATE(459)] = 12668, - [SMALL_STATE(460)] = 12679, - [SMALL_STATE(461)] = 12690, - [SMALL_STATE(462)] = 12703, - [SMALL_STATE(463)] = 12714, - [SMALL_STATE(464)] = 12723, - [SMALL_STATE(465)] = 12734, - [SMALL_STATE(466)] = 12745, - [SMALL_STATE(467)] = 12754, - [SMALL_STATE(468)] = 12763, - [SMALL_STATE(469)] = 12772, - [SMALL_STATE(470)] = 12781, - [SMALL_STATE(471)] = 12790, - [SMALL_STATE(472)] = 12799, - [SMALL_STATE(473)] = 12808, - [SMALL_STATE(474)] = 12817, - [SMALL_STATE(475)] = 12826, - [SMALL_STATE(476)] = 12835, - [SMALL_STATE(477)] = 12842, - [SMALL_STATE(478)] = 12853, - [SMALL_STATE(479)] = 12864, - [SMALL_STATE(480)] = 12877, - [SMALL_STATE(481)] = 12890, - [SMALL_STATE(482)] = 12903, - [SMALL_STATE(483)] = 12916, - [SMALL_STATE(484)] = 12929, - [SMALL_STATE(485)] = 12942, - [SMALL_STATE(486)] = 12955, - [SMALL_STATE(487)] = 12968, - [SMALL_STATE(488)] = 12981, - [SMALL_STATE(489)] = 12994, - [SMALL_STATE(490)] = 13007, - [SMALL_STATE(491)] = 13020, - [SMALL_STATE(492)] = 13033, - [SMALL_STATE(493)] = 13046, - [SMALL_STATE(494)] = 13059, - [SMALL_STATE(495)] = 13072, - [SMALL_STATE(496)] = 13083, - [SMALL_STATE(497)] = 13096, - [SMALL_STATE(498)] = 13109, - [SMALL_STATE(499)] = 13122, - [SMALL_STATE(500)] = 13135, - [SMALL_STATE(501)] = 13148, - [SMALL_STATE(502)] = 13161, - [SMALL_STATE(503)] = 13174, - [SMALL_STATE(504)] = 13187, - [SMALL_STATE(505)] = 13200, - [SMALL_STATE(506)] = 13213, - [SMALL_STATE(507)] = 13226, - [SMALL_STATE(508)] = 13239, - [SMALL_STATE(509)] = 13252, - [SMALL_STATE(510)] = 13265, - [SMALL_STATE(511)] = 13278, - [SMALL_STATE(512)] = 13291, - [SMALL_STATE(513)] = 13304, - [SMALL_STATE(514)] = 13317, - [SMALL_STATE(515)] = 13330, - [SMALL_STATE(516)] = 13343, - [SMALL_STATE(517)] = 13356, - [SMALL_STATE(518)] = 13369, - [SMALL_STATE(519)] = 13382, - [SMALL_STATE(520)] = 13395, - [SMALL_STATE(521)] = 13408, - [SMALL_STATE(522)] = 13421, - [SMALL_STATE(523)] = 13434, - [SMALL_STATE(524)] = 13447, - [SMALL_STATE(525)] = 13460, - [SMALL_STATE(526)] = 13473, - [SMALL_STATE(527)] = 13486, - [SMALL_STATE(528)] = 13499, - [SMALL_STATE(529)] = 13512, - [SMALL_STATE(530)] = 13525, - [SMALL_STATE(531)] = 13538, - [SMALL_STATE(532)] = 13551, - [SMALL_STATE(533)] = 13564, - [SMALL_STATE(534)] = 13577, - [SMALL_STATE(535)] = 13590, - [SMALL_STATE(536)] = 13603, - [SMALL_STATE(537)] = 13616, - [SMALL_STATE(538)] = 13629, - [SMALL_STATE(539)] = 13642, - [SMALL_STATE(540)] = 13655, - [SMALL_STATE(541)] = 13668, - [SMALL_STATE(542)] = 13681, - [SMALL_STATE(543)] = 13694, - [SMALL_STATE(544)] = 13707, - [SMALL_STATE(545)] = 13720, - [SMALL_STATE(546)] = 13733, - [SMALL_STATE(547)] = 13746, - [SMALL_STATE(548)] = 13759, - [SMALL_STATE(549)] = 13772, - [SMALL_STATE(550)] = 13785, - [SMALL_STATE(551)] = 13798, - [SMALL_STATE(552)] = 13811, - [SMALL_STATE(553)] = 13824, - [SMALL_STATE(554)] = 13837, - [SMALL_STATE(555)] = 13850, - [SMALL_STATE(556)] = 13863, - [SMALL_STATE(557)] = 13876, - [SMALL_STATE(558)] = 13889, - [SMALL_STATE(559)] = 13902, - [SMALL_STATE(560)] = 13915, - [SMALL_STATE(561)] = 13928, - [SMALL_STATE(562)] = 13941, - [SMALL_STATE(563)] = 13954, - [SMALL_STATE(564)] = 13967, - [SMALL_STATE(565)] = 13980, - [SMALL_STATE(566)] = 13993, - [SMALL_STATE(567)] = 14006, - [SMALL_STATE(568)] = 14019, - [SMALL_STATE(569)] = 14032, - [SMALL_STATE(570)] = 14045, - [SMALL_STATE(571)] = 14058, - [SMALL_STATE(572)] = 14071, - [SMALL_STATE(573)] = 14084, - [SMALL_STATE(574)] = 14097, - [SMALL_STATE(575)] = 14110, - [SMALL_STATE(576)] = 14123, - [SMALL_STATE(577)] = 14136, - [SMALL_STATE(578)] = 14149, - [SMALL_STATE(579)] = 14162, - [SMALL_STATE(580)] = 14175, - [SMALL_STATE(581)] = 14185, - [SMALL_STATE(582)] = 14195, - [SMALL_STATE(583)] = 14205, - [SMALL_STATE(584)] = 14211, - [SMALL_STATE(585)] = 14217, - [SMALL_STATE(586)] = 14223, - [SMALL_STATE(587)] = 14229, - [SMALL_STATE(588)] = 14235, - [SMALL_STATE(589)] = 14241, - [SMALL_STATE(590)] = 14247, - [SMALL_STATE(591)] = 14253, - [SMALL_STATE(592)] = 14259, - [SMALL_STATE(593)] = 14265, - [SMALL_STATE(594)] = 14275, - [SMALL_STATE(595)] = 14285, - [SMALL_STATE(596)] = 14293, - [SMALL_STATE(597)] = 14301, - [SMALL_STATE(598)] = 14311, - [SMALL_STATE(599)] = 14317, - [SMALL_STATE(600)] = 14323, - [SMALL_STATE(601)] = 14329, - [SMALL_STATE(602)] = 14339, - [SMALL_STATE(603)] = 14345, - [SMALL_STATE(604)] = 14351, - [SMALL_STATE(605)] = 14357, - [SMALL_STATE(606)] = 14363, - [SMALL_STATE(607)] = 14369, - [SMALL_STATE(608)] = 14375, - [SMALL_STATE(609)] = 14381, - [SMALL_STATE(610)] = 14391, - [SMALL_STATE(611)] = 14401, - [SMALL_STATE(612)] = 14407, - [SMALL_STATE(613)] = 14413, - [SMALL_STATE(614)] = 14419, - [SMALL_STATE(615)] = 14425, - [SMALL_STATE(616)] = 14431, - [SMALL_STATE(617)] = 14437, - [SMALL_STATE(618)] = 14443, - [SMALL_STATE(619)] = 14449, - [SMALL_STATE(620)] = 14455, - [SMALL_STATE(621)] = 14461, - [SMALL_STATE(622)] = 14467, - [SMALL_STATE(623)] = 14473, - [SMALL_STATE(624)] = 14479, - [SMALL_STATE(625)] = 14485, - [SMALL_STATE(626)] = 14491, - [SMALL_STATE(627)] = 14497, - [SMALL_STATE(628)] = 14503, - [SMALL_STATE(629)] = 14513, - [SMALL_STATE(630)] = 14523, - [SMALL_STATE(631)] = 14531, - [SMALL_STATE(632)] = 14537, - [SMALL_STATE(633)] = 14543, - [SMALL_STATE(634)] = 14549, - [SMALL_STATE(635)] = 14555, - [SMALL_STATE(636)] = 14561, - [SMALL_STATE(637)] = 14567, - [SMALL_STATE(638)] = 14577, - [SMALL_STATE(639)] = 14587, - [SMALL_STATE(640)] = 14593, - [SMALL_STATE(641)] = 14603, - [SMALL_STATE(642)] = 14611, - [SMALL_STATE(643)] = 14619, - [SMALL_STATE(644)] = 14625, - [SMALL_STATE(645)] = 14633, - [SMALL_STATE(646)] = 14639, - [SMALL_STATE(647)] = 14647, - [SMALL_STATE(648)] = 14653, - [SMALL_STATE(649)] = 14659, - [SMALL_STATE(650)] = 14665, - [SMALL_STATE(651)] = 14671, - [SMALL_STATE(652)] = 14677, - [SMALL_STATE(653)] = 14683, - [SMALL_STATE(654)] = 14689, - [SMALL_STATE(655)] = 14695, - [SMALL_STATE(656)] = 14701, - [SMALL_STATE(657)] = 14707, - [SMALL_STATE(658)] = 14715, - [SMALL_STATE(659)] = 14721, - [SMALL_STATE(660)] = 14727, - [SMALL_STATE(661)] = 14733, - [SMALL_STATE(662)] = 14739, - [SMALL_STATE(663)] = 14745, - [SMALL_STATE(664)] = 14751, - [SMALL_STATE(665)] = 14761, - [SMALL_STATE(666)] = 14771, - [SMALL_STATE(667)] = 14779, - [SMALL_STATE(668)] = 14787, - [SMALL_STATE(669)] = 14797, - [SMALL_STATE(670)] = 14807, - [SMALL_STATE(671)] = 14817, - [SMALL_STATE(672)] = 14827, - [SMALL_STATE(673)] = 14837, - [SMALL_STATE(674)] = 14843, - [SMALL_STATE(675)] = 14853, - [SMALL_STATE(676)] = 14859, - [SMALL_STATE(677)] = 14865, - [SMALL_STATE(678)] = 14873, - [SMALL_STATE(679)] = 14883, - [SMALL_STATE(680)] = 14893, - [SMALL_STATE(681)] = 14899, - [SMALL_STATE(682)] = 14905, - [SMALL_STATE(683)] = 14911, - [SMALL_STATE(684)] = 14917, - [SMALL_STATE(685)] = 14923, - [SMALL_STATE(686)] = 14931, - [SMALL_STATE(687)] = 14937, - [SMALL_STATE(688)] = 14943, - [SMALL_STATE(689)] = 14951, - [SMALL_STATE(690)] = 14957, - [SMALL_STATE(691)] = 14963, - [SMALL_STATE(692)] = 14969, - [SMALL_STATE(693)] = 14977, - [SMALL_STATE(694)] = 14982, - [SMALL_STATE(695)] = 14987, - [SMALL_STATE(696)] = 14992, - [SMALL_STATE(697)] = 14997, - [SMALL_STATE(698)] = 15002, - [SMALL_STATE(699)] = 15007, - [SMALL_STATE(700)] = 15012, - [SMALL_STATE(701)] = 15019, - [SMALL_STATE(702)] = 15024, - [SMALL_STATE(703)] = 15029, - [SMALL_STATE(704)] = 15034, - [SMALL_STATE(705)] = 15039, - [SMALL_STATE(706)] = 15044, - [SMALL_STATE(707)] = 15049, - [SMALL_STATE(708)] = 15054, - [SMALL_STATE(709)] = 15059, - [SMALL_STATE(710)] = 15064, - [SMALL_STATE(711)] = 15069, - [SMALL_STATE(712)] = 15074, - [SMALL_STATE(713)] = 15081, - [SMALL_STATE(714)] = 15086, - [SMALL_STATE(715)] = 15091, - [SMALL_STATE(716)] = 15096, - [SMALL_STATE(717)] = 15103, - [SMALL_STATE(718)] = 15110, - [SMALL_STATE(719)] = 15115, - [SMALL_STATE(720)] = 15120, - [SMALL_STATE(721)] = 15125, - [SMALL_STATE(722)] = 15132, - [SMALL_STATE(723)] = 15137, - [SMALL_STATE(724)] = 15142, - [SMALL_STATE(725)] = 15147, - [SMALL_STATE(726)] = 15152, - [SMALL_STATE(727)] = 15157, - [SMALL_STATE(728)] = 15162, - [SMALL_STATE(729)] = 15167, - [SMALL_STATE(730)] = 15172, - [SMALL_STATE(731)] = 15177, - [SMALL_STATE(732)] = 15182, - [SMALL_STATE(733)] = 15187, - [SMALL_STATE(734)] = 15192, - [SMALL_STATE(735)] = 15197, - [SMALL_STATE(736)] = 15202, - [SMALL_STATE(737)] = 15209, - [SMALL_STATE(738)] = 15214, - [SMALL_STATE(739)] = 15219, - [SMALL_STATE(740)] = 15224, - [SMALL_STATE(741)] = 15229, - [SMALL_STATE(742)] = 15234, - [SMALL_STATE(743)] = 15239, - [SMALL_STATE(744)] = 15244, - [SMALL_STATE(745)] = 15249, - [SMALL_STATE(746)] = 15254, - [SMALL_STATE(747)] = 15259, - [SMALL_STATE(748)] = 15264, - [SMALL_STATE(749)] = 15269, - [SMALL_STATE(750)] = 15274, - [SMALL_STATE(751)] = 15279, - [SMALL_STATE(752)] = 15284, - [SMALL_STATE(753)] = 15289, - [SMALL_STATE(754)] = 15294, - [SMALL_STATE(755)] = 15299, - [SMALL_STATE(756)] = 15304, - [SMALL_STATE(757)] = 15309, - [SMALL_STATE(758)] = 15314, - [SMALL_STATE(759)] = 15319, - [SMALL_STATE(760)] = 15324, - [SMALL_STATE(761)] = 15329, - [SMALL_STATE(762)] = 15336, - [SMALL_STATE(763)] = 15341, - [SMALL_STATE(764)] = 15346, - [SMALL_STATE(765)] = 15351, - [SMALL_STATE(766)] = 15358, - [SMALL_STATE(767)] = 15363, - [SMALL_STATE(768)] = 15370, - [SMALL_STATE(769)] = 15375, - [SMALL_STATE(770)] = 15382, - [SMALL_STATE(771)] = 15387, - [SMALL_STATE(772)] = 15392, - [SMALL_STATE(773)] = 15397, - [SMALL_STATE(774)] = 15402, - [SMALL_STATE(775)] = 15407, - [SMALL_STATE(776)] = 15412, - [SMALL_STATE(777)] = 15417, - [SMALL_STATE(778)] = 15422, - [SMALL_STATE(779)] = 15427, - [SMALL_STATE(780)] = 15432, - [SMALL_STATE(781)] = 15437, - [SMALL_STATE(782)] = 15442, - [SMALL_STATE(783)] = 15447, - [SMALL_STATE(784)] = 15452, - [SMALL_STATE(785)] = 15457, - [SMALL_STATE(786)] = 15462, - [SMALL_STATE(787)] = 15467, - [SMALL_STATE(788)] = 15472, - [SMALL_STATE(789)] = 15477, - [SMALL_STATE(790)] = 15482, - [SMALL_STATE(791)] = 15487, - [SMALL_STATE(792)] = 15492, - [SMALL_STATE(793)] = 15497, - [SMALL_STATE(794)] = 15502, - [SMALL_STATE(795)] = 15507, - [SMALL_STATE(796)] = 15514, - [SMALL_STATE(797)] = 15521, - [SMALL_STATE(798)] = 15526, - [SMALL_STATE(799)] = 15533, - [SMALL_STATE(800)] = 15538, - [SMALL_STATE(801)] = 15543, - [SMALL_STATE(802)] = 15550, - [SMALL_STATE(803)] = 15555, - [SMALL_STATE(804)] = 15560, - [SMALL_STATE(805)] = 15565, - [SMALL_STATE(806)] = 15572, - [SMALL_STATE(807)] = 15579, - [SMALL_STATE(808)] = 15584, - [SMALL_STATE(809)] = 15589, - [SMALL_STATE(810)] = 15594, - [SMALL_STATE(811)] = 15601, - [SMALL_STATE(812)] = 15606, - [SMALL_STATE(813)] = 15613, - [SMALL_STATE(814)] = 15618, - [SMALL_STATE(815)] = 15625, - [SMALL_STATE(816)] = 15632, - [SMALL_STATE(817)] = 15639, - [SMALL_STATE(818)] = 15646, - [SMALL_STATE(819)] = 15651, - [SMALL_STATE(820)] = 15658, - [SMALL_STATE(821)] = 15663, - [SMALL_STATE(822)] = 15668, - [SMALL_STATE(823)] = 15673, - [SMALL_STATE(824)] = 15678, - [SMALL_STATE(825)] = 15683, - [SMALL_STATE(826)] = 15690, - [SMALL_STATE(827)] = 15695, - [SMALL_STATE(828)] = 15700, - [SMALL_STATE(829)] = 15705, - [SMALL_STATE(830)] = 15712, - [SMALL_STATE(831)] = 15717, - [SMALL_STATE(832)] = 15724, - [SMALL_STATE(833)] = 15729, - [SMALL_STATE(834)] = 15736, - [SMALL_STATE(835)] = 15741, - [SMALL_STATE(836)] = 15746, - [SMALL_STATE(837)] = 15753, - [SMALL_STATE(838)] = 15758, - [SMALL_STATE(839)] = 15765, - [SMALL_STATE(840)] = 15770, - [SMALL_STATE(841)] = 15775, - [SMALL_STATE(842)] = 15782, - [SMALL_STATE(843)] = 15789, - [SMALL_STATE(844)] = 15794, - [SMALL_STATE(845)] = 15799, - [SMALL_STATE(846)] = 15804, - [SMALL_STATE(847)] = 15809, - [SMALL_STATE(848)] = 15814, - [SMALL_STATE(849)] = 15821, - [SMALL_STATE(850)] = 15828, - [SMALL_STATE(851)] = 15833, - [SMALL_STATE(852)] = 15840, - [SMALL_STATE(853)] = 15845, - [SMALL_STATE(854)] = 15852, - [SMALL_STATE(855)] = 15859, - [SMALL_STATE(856)] = 15866, - [SMALL_STATE(857)] = 15871, - [SMALL_STATE(858)] = 15876, - [SMALL_STATE(859)] = 15883, - [SMALL_STATE(860)] = 15890, - [SMALL_STATE(861)] = 15897, - [SMALL_STATE(862)] = 15902, - [SMALL_STATE(863)] = 15909, - [SMALL_STATE(864)] = 15916, - [SMALL_STATE(865)] = 15923, - [SMALL_STATE(866)] = 15928, - [SMALL_STATE(867)] = 15935, - [SMALL_STATE(868)] = 15942, - [SMALL_STATE(869)] = 15949, - [SMALL_STATE(870)] = 15956, - [SMALL_STATE(871)] = 15963, - [SMALL_STATE(872)] = 15968, - [SMALL_STATE(873)] = 15975, - [SMALL_STATE(874)] = 15982, - [SMALL_STATE(875)] = 15989, - [SMALL_STATE(876)] = 15994, - [SMALL_STATE(877)] = 15999, - [SMALL_STATE(878)] = 16006, - [SMALL_STATE(879)] = 16013, - [SMALL_STATE(880)] = 16020, - [SMALL_STATE(881)] = 16025, - [SMALL_STATE(882)] = 16032, - [SMALL_STATE(883)] = 16039, - [SMALL_STATE(884)] = 16046, - [SMALL_STATE(885)] = 16053, - [SMALL_STATE(886)] = 16060, - [SMALL_STATE(887)] = 16067, - [SMALL_STATE(888)] = 16074, - [SMALL_STATE(889)] = 16081, - [SMALL_STATE(890)] = 16088, - [SMALL_STATE(891)] = 16095, - [SMALL_STATE(892)] = 16102, - [SMALL_STATE(893)] = 16109, - [SMALL_STATE(894)] = 16116, - [SMALL_STATE(895)] = 16123, - [SMALL_STATE(896)] = 16130, - [SMALL_STATE(897)] = 16137, - [SMALL_STATE(898)] = 16144, - [SMALL_STATE(899)] = 16149, - [SMALL_STATE(900)] = 16153, - [SMALL_STATE(901)] = 16157, - [SMALL_STATE(902)] = 16161, - [SMALL_STATE(903)] = 16165, - [SMALL_STATE(904)] = 16169, - [SMALL_STATE(905)] = 16173, - [SMALL_STATE(906)] = 16177, - [SMALL_STATE(907)] = 16181, - [SMALL_STATE(908)] = 16185, - [SMALL_STATE(909)] = 16189, - [SMALL_STATE(910)] = 16193, - [SMALL_STATE(911)] = 16197, - [SMALL_STATE(912)] = 16201, - [SMALL_STATE(913)] = 16205, - [SMALL_STATE(914)] = 16209, - [SMALL_STATE(915)] = 16213, - [SMALL_STATE(916)] = 16217, - [SMALL_STATE(917)] = 16221, - [SMALL_STATE(918)] = 16225, - [SMALL_STATE(919)] = 16229, - [SMALL_STATE(920)] = 16233, - [SMALL_STATE(921)] = 16237, - [SMALL_STATE(922)] = 16241, - [SMALL_STATE(923)] = 16245, - [SMALL_STATE(924)] = 16249, - [SMALL_STATE(925)] = 16253, - [SMALL_STATE(926)] = 16257, - [SMALL_STATE(927)] = 16261, - [SMALL_STATE(928)] = 16265, - [SMALL_STATE(929)] = 16269, - [SMALL_STATE(930)] = 16273, - [SMALL_STATE(931)] = 16277, - [SMALL_STATE(932)] = 16281, - [SMALL_STATE(933)] = 16285, - [SMALL_STATE(934)] = 16289, - [SMALL_STATE(935)] = 16293, - [SMALL_STATE(936)] = 16297, - [SMALL_STATE(937)] = 16301, - [SMALL_STATE(938)] = 16305, - [SMALL_STATE(939)] = 16309, - [SMALL_STATE(940)] = 16313, - [SMALL_STATE(941)] = 16317, - [SMALL_STATE(942)] = 16321, - [SMALL_STATE(943)] = 16325, - [SMALL_STATE(944)] = 16329, - [SMALL_STATE(945)] = 16333, - [SMALL_STATE(946)] = 16337, - [SMALL_STATE(947)] = 16341, - [SMALL_STATE(948)] = 16345, - [SMALL_STATE(949)] = 16349, - [SMALL_STATE(950)] = 16353, - [SMALL_STATE(951)] = 16357, - [SMALL_STATE(952)] = 16361, - [SMALL_STATE(953)] = 16365, - [SMALL_STATE(954)] = 16369, - [SMALL_STATE(955)] = 16373, - [SMALL_STATE(956)] = 16377, - [SMALL_STATE(957)] = 16381, - [SMALL_STATE(958)] = 16385, - [SMALL_STATE(959)] = 16389, - [SMALL_STATE(960)] = 16393, - [SMALL_STATE(961)] = 16397, - [SMALL_STATE(962)] = 16401, - [SMALL_STATE(963)] = 16405, - [SMALL_STATE(964)] = 16409, - [SMALL_STATE(965)] = 16413, - [SMALL_STATE(966)] = 16417, - [SMALL_STATE(967)] = 16421, - [SMALL_STATE(968)] = 16425, - [SMALL_STATE(969)] = 16429, - [SMALL_STATE(970)] = 16433, - [SMALL_STATE(971)] = 16437, - [SMALL_STATE(972)] = 16441, - [SMALL_STATE(973)] = 16445, - [SMALL_STATE(974)] = 16449, - [SMALL_STATE(975)] = 16453, - [SMALL_STATE(976)] = 16457, - [SMALL_STATE(977)] = 16461, - [SMALL_STATE(978)] = 16465, - [SMALL_STATE(979)] = 16469, - [SMALL_STATE(980)] = 16473, - [SMALL_STATE(981)] = 16477, - [SMALL_STATE(982)] = 16481, - [SMALL_STATE(983)] = 16485, - [SMALL_STATE(984)] = 16489, - [SMALL_STATE(985)] = 16493, - [SMALL_STATE(986)] = 16497, - [SMALL_STATE(987)] = 16501, - [SMALL_STATE(988)] = 16505, - [SMALL_STATE(989)] = 16509, - [SMALL_STATE(990)] = 16513, - [SMALL_STATE(991)] = 16517, - [SMALL_STATE(992)] = 16521, - [SMALL_STATE(993)] = 16525, - [SMALL_STATE(994)] = 16529, - [SMALL_STATE(995)] = 16533, - [SMALL_STATE(996)] = 16537, - [SMALL_STATE(997)] = 16541, - [SMALL_STATE(998)] = 16545, - [SMALL_STATE(999)] = 16549, - [SMALL_STATE(1000)] = 16553, - [SMALL_STATE(1001)] = 16557, - [SMALL_STATE(1002)] = 16561, - [SMALL_STATE(1003)] = 16565, - [SMALL_STATE(1004)] = 16569, - [SMALL_STATE(1005)] = 16573, - [SMALL_STATE(1006)] = 16577, - [SMALL_STATE(1007)] = 16581, - [SMALL_STATE(1008)] = 16585, - [SMALL_STATE(1009)] = 16589, - [SMALL_STATE(1010)] = 16593, - [SMALL_STATE(1011)] = 16597, - [SMALL_STATE(1012)] = 16601, - [SMALL_STATE(1013)] = 16605, - [SMALL_STATE(1014)] = 16609, - [SMALL_STATE(1015)] = 16613, - [SMALL_STATE(1016)] = 16617, - [SMALL_STATE(1017)] = 16621, - [SMALL_STATE(1018)] = 16625, - [SMALL_STATE(1019)] = 16629, - [SMALL_STATE(1020)] = 16633, - [SMALL_STATE(1021)] = 16637, - [SMALL_STATE(1022)] = 16641, - [SMALL_STATE(1023)] = 16645, - [SMALL_STATE(1024)] = 16649, - [SMALL_STATE(1025)] = 16653, - [SMALL_STATE(1026)] = 16657, - [SMALL_STATE(1027)] = 16661, - [SMALL_STATE(1028)] = 16665, - [SMALL_STATE(1029)] = 16669, - [SMALL_STATE(1030)] = 16673, - [SMALL_STATE(1031)] = 16677, - [SMALL_STATE(1032)] = 16681, - [SMALL_STATE(1033)] = 16685, - [SMALL_STATE(1034)] = 16689, - [SMALL_STATE(1035)] = 16693, - [SMALL_STATE(1036)] = 16697, - [SMALL_STATE(1037)] = 16701, - [SMALL_STATE(1038)] = 16705, - [SMALL_STATE(1039)] = 16709, - [SMALL_STATE(1040)] = 16713, - [SMALL_STATE(1041)] = 16717, - [SMALL_STATE(1042)] = 16721, - [SMALL_STATE(1043)] = 16725, - [SMALL_STATE(1044)] = 16729, - [SMALL_STATE(1045)] = 16733, - [SMALL_STATE(1046)] = 16737, - [SMALL_STATE(1047)] = 16741, - [SMALL_STATE(1048)] = 16745, - [SMALL_STATE(1049)] = 16749, - [SMALL_STATE(1050)] = 16753, - [SMALL_STATE(1051)] = 16757, - [SMALL_STATE(1052)] = 16761, - [SMALL_STATE(1053)] = 16765, - [SMALL_STATE(1054)] = 16769, - [SMALL_STATE(1055)] = 16773, - [SMALL_STATE(1056)] = 16777, - [SMALL_STATE(1057)] = 16781, - [SMALL_STATE(1058)] = 16785, - [SMALL_STATE(1059)] = 16789, - [SMALL_STATE(1060)] = 16793, - [SMALL_STATE(1061)] = 16797, - [SMALL_STATE(1062)] = 16801, - [SMALL_STATE(1063)] = 16805, - [SMALL_STATE(1064)] = 16809, - [SMALL_STATE(1065)] = 16813, - [SMALL_STATE(1066)] = 16817, - [SMALL_STATE(1067)] = 16821, - [SMALL_STATE(1068)] = 16825, - [SMALL_STATE(1069)] = 16829, - [SMALL_STATE(1070)] = 16833, - [SMALL_STATE(1071)] = 16837, - [SMALL_STATE(1072)] = 16841, - [SMALL_STATE(1073)] = 16845, - [SMALL_STATE(1074)] = 16849, - [SMALL_STATE(1075)] = 16853, - [SMALL_STATE(1076)] = 16857, - [SMALL_STATE(1077)] = 16861, - [SMALL_STATE(1078)] = 16865, - [SMALL_STATE(1079)] = 16869, - [SMALL_STATE(1080)] = 16873, - [SMALL_STATE(1081)] = 16877, - [SMALL_STATE(1082)] = 16881, - [SMALL_STATE(1083)] = 16885, - [SMALL_STATE(1084)] = 16889, - [SMALL_STATE(1085)] = 16893, - [SMALL_STATE(1086)] = 16897, - [SMALL_STATE(1087)] = 16901, - [SMALL_STATE(1088)] = 16905, - [SMALL_STATE(1089)] = 16909, - [SMALL_STATE(1090)] = 16913, - [SMALL_STATE(1091)] = 16917, - [SMALL_STATE(1092)] = 16921, - [SMALL_STATE(1093)] = 16925, - [SMALL_STATE(1094)] = 16929, - [SMALL_STATE(1095)] = 16933, - [SMALL_STATE(1096)] = 16937, - [SMALL_STATE(1097)] = 16941, - [SMALL_STATE(1098)] = 16945, - [SMALL_STATE(1099)] = 16949, - [SMALL_STATE(1100)] = 16953, - [SMALL_STATE(1101)] = 16957, - [SMALL_STATE(1102)] = 16961, - [SMALL_STATE(1103)] = 16965, - [SMALL_STATE(1104)] = 16969, - [SMALL_STATE(1105)] = 16973, - [SMALL_STATE(1106)] = 16977, - [SMALL_STATE(1107)] = 16981, - [SMALL_STATE(1108)] = 16985, - [SMALL_STATE(1109)] = 16989, - [SMALL_STATE(1110)] = 16993, - [SMALL_STATE(1111)] = 16997, - [SMALL_STATE(1112)] = 17001, - [SMALL_STATE(1113)] = 17005, - [SMALL_STATE(1114)] = 17009, - [SMALL_STATE(1115)] = 17013, - [SMALL_STATE(1116)] = 17017, - [SMALL_STATE(1117)] = 17021, - [SMALL_STATE(1118)] = 17025, - [SMALL_STATE(1119)] = 17029, - [SMALL_STATE(1120)] = 17033, - [SMALL_STATE(1121)] = 17037, - [SMALL_STATE(1122)] = 17041, - [SMALL_STATE(1123)] = 17045, - [SMALL_STATE(1124)] = 17049, - [SMALL_STATE(1125)] = 17053, - [SMALL_STATE(1126)] = 17057, - [SMALL_STATE(1127)] = 17061, - [SMALL_STATE(1128)] = 17065, - [SMALL_STATE(1129)] = 17069, - [SMALL_STATE(1130)] = 17073, - [SMALL_STATE(1131)] = 17077, - [SMALL_STATE(1132)] = 17081, - [SMALL_STATE(1133)] = 17085, - [SMALL_STATE(1134)] = 17089, - [SMALL_STATE(1135)] = 17093, - [SMALL_STATE(1136)] = 17097, - [SMALL_STATE(1137)] = 17101, - [SMALL_STATE(1138)] = 17105, - [SMALL_STATE(1139)] = 17109, - [SMALL_STATE(1140)] = 17113, - [SMALL_STATE(1141)] = 17117, - [SMALL_STATE(1142)] = 17121, - [SMALL_STATE(1143)] = 17125, - [SMALL_STATE(1144)] = 17129, - [SMALL_STATE(1145)] = 17133, - [SMALL_STATE(1146)] = 17137, - [SMALL_STATE(1147)] = 17141, - [SMALL_STATE(1148)] = 17145, - [SMALL_STATE(1149)] = 17149, - [SMALL_STATE(1150)] = 17153, - [SMALL_STATE(1151)] = 17157, - [SMALL_STATE(1152)] = 17161, - [SMALL_STATE(1153)] = 17165, - [SMALL_STATE(1154)] = 17169, - [SMALL_STATE(1155)] = 17173, - [SMALL_STATE(1156)] = 17177, - [SMALL_STATE(1157)] = 17181, + [SMALL_STATE(67)] = 73, + [SMALL_STATE(68)] = 146, + [SMALL_STATE(69)] = 212, + [SMALL_STATE(70)] = 278, + [SMALL_STATE(71)] = 328, + [SMALL_STATE(72)] = 378, + [SMALL_STATE(73)] = 423, + [SMALL_STATE(74)] = 468, + [SMALL_STATE(75)] = 513, + [SMALL_STATE(76)] = 560, + [SMALL_STATE(77)] = 607, + [SMALL_STATE(78)] = 654, + [SMALL_STATE(79)] = 701, + [SMALL_STATE(80)] = 748, + [SMALL_STATE(81)] = 793, + [SMALL_STATE(82)] = 838, + [SMALL_STATE(83)] = 883, + [SMALL_STATE(84)] = 930, + [SMALL_STATE(85)] = 977, + [SMALL_STATE(86)] = 1024, + [SMALL_STATE(87)] = 1071, + [SMALL_STATE(88)] = 1118, + [SMALL_STATE(89)] = 1165, + [SMALL_STATE(90)] = 1210, + [SMALL_STATE(91)] = 1257, + [SMALL_STATE(92)] = 1302, + [SMALL_STATE(93)] = 1349, + [SMALL_STATE(94)] = 1394, + [SMALL_STATE(95)] = 1439, + [SMALL_STATE(96)] = 1486, + [SMALL_STATE(97)] = 1533, + [SMALL_STATE(98)] = 1578, + [SMALL_STATE(99)] = 1623, + [SMALL_STATE(100)] = 1668, + [SMALL_STATE(101)] = 1715, + [SMALL_STATE(102)] = 1762, + [SMALL_STATE(103)] = 1809, + [SMALL_STATE(104)] = 1856, + [SMALL_STATE(105)] = 1903, + [SMALL_STATE(106)] = 1950, + [SMALL_STATE(107)] = 1997, + [SMALL_STATE(108)] = 2042, + [SMALL_STATE(109)] = 2089, + [SMALL_STATE(110)] = 2133, + [SMALL_STATE(111)] = 2177, + [SMALL_STATE(112)] = 2221, + [SMALL_STATE(113)] = 2265, + [SMALL_STATE(114)] = 2309, + [SMALL_STATE(115)] = 2353, + [SMALL_STATE(116)] = 2397, + [SMALL_STATE(117)] = 2441, + [SMALL_STATE(118)] = 2485, + [SMALL_STATE(119)] = 2529, + [SMALL_STATE(120)] = 2573, + [SMALL_STATE(121)] = 2617, + [SMALL_STATE(122)] = 2661, + [SMALL_STATE(123)] = 2705, + [SMALL_STATE(124)] = 2749, + [SMALL_STATE(125)] = 2793, + [SMALL_STATE(126)] = 2837, + [SMALL_STATE(127)] = 2881, + [SMALL_STATE(128)] = 2925, + [SMALL_STATE(129)] = 2969, + [SMALL_STATE(130)] = 3013, + [SMALL_STATE(131)] = 3057, + [SMALL_STATE(132)] = 3101, + [SMALL_STATE(133)] = 3145, + [SMALL_STATE(134)] = 3189, + [SMALL_STATE(135)] = 3233, + [SMALL_STATE(136)] = 3277, + [SMALL_STATE(137)] = 3321, + [SMALL_STATE(138)] = 3365, + [SMALL_STATE(139)] = 3409, + [SMALL_STATE(140)] = 3453, + [SMALL_STATE(141)] = 3497, + [SMALL_STATE(142)] = 3541, + [SMALL_STATE(143)] = 3585, + [SMALL_STATE(144)] = 3629, + [SMALL_STATE(145)] = 3673, + [SMALL_STATE(146)] = 3717, + [SMALL_STATE(147)] = 3761, + [SMALL_STATE(148)] = 3805, + [SMALL_STATE(149)] = 3849, + [SMALL_STATE(150)] = 3893, + [SMALL_STATE(151)] = 3937, + [SMALL_STATE(152)] = 3981, + [SMALL_STATE(153)] = 4025, + [SMALL_STATE(154)] = 4069, + [SMALL_STATE(155)] = 4113, + [SMALL_STATE(156)] = 4157, + [SMALL_STATE(157)] = 4201, + [SMALL_STATE(158)] = 4245, + [SMALL_STATE(159)] = 4289, + [SMALL_STATE(160)] = 4333, + [SMALL_STATE(161)] = 4377, + [SMALL_STATE(162)] = 4421, + [SMALL_STATE(163)] = 4465, + [SMALL_STATE(164)] = 4509, + [SMALL_STATE(165)] = 4553, + [SMALL_STATE(166)] = 4597, + [SMALL_STATE(167)] = 4641, + [SMALL_STATE(168)] = 4685, + [SMALL_STATE(169)] = 4729, + [SMALL_STATE(170)] = 4773, + [SMALL_STATE(171)] = 4817, + [SMALL_STATE(172)] = 4861, + [SMALL_STATE(173)] = 4905, + [SMALL_STATE(174)] = 4949, + [SMALL_STATE(175)] = 4993, + [SMALL_STATE(176)] = 5037, + [SMALL_STATE(177)] = 5081, + [SMALL_STATE(178)] = 5125, + [SMALL_STATE(179)] = 5169, + [SMALL_STATE(180)] = 5213, + [SMALL_STATE(181)] = 5257, + [SMALL_STATE(182)] = 5301, + [SMALL_STATE(183)] = 5345, + [SMALL_STATE(184)] = 5389, + [SMALL_STATE(185)] = 5433, + [SMALL_STATE(186)] = 5477, + [SMALL_STATE(187)] = 5521, + [SMALL_STATE(188)] = 5565, + [SMALL_STATE(189)] = 5609, + [SMALL_STATE(190)] = 5653, + [SMALL_STATE(191)] = 5697, + [SMALL_STATE(192)] = 5741, + [SMALL_STATE(193)] = 5785, + [SMALL_STATE(194)] = 5829, + [SMALL_STATE(195)] = 5873, + [SMALL_STATE(196)] = 5917, + [SMALL_STATE(197)] = 5961, + [SMALL_STATE(198)] = 6005, + [SMALL_STATE(199)] = 6049, + [SMALL_STATE(200)] = 6093, + [SMALL_STATE(201)] = 6137, + [SMALL_STATE(202)] = 6181, + [SMALL_STATE(203)] = 6225, + [SMALL_STATE(204)] = 6269, + [SMALL_STATE(205)] = 6313, + [SMALL_STATE(206)] = 6357, + [SMALL_STATE(207)] = 6401, + [SMALL_STATE(208)] = 6445, + [SMALL_STATE(209)] = 6492, + [SMALL_STATE(210)] = 6535, + [SMALL_STATE(211)] = 6577, + [SMALL_STATE(212)] = 6628, + [SMALL_STATE(213)] = 6679, + [SMALL_STATE(214)] = 6730, + [SMALL_STATE(215)] = 6781, + [SMALL_STATE(216)] = 6832, + [SMALL_STATE(217)] = 6883, + [SMALL_STATE(218)] = 6934, + [SMALL_STATE(219)] = 6985, + [SMALL_STATE(220)] = 7036, + [SMALL_STATE(221)] = 7087, + [SMALL_STATE(222)] = 7135, + [SMALL_STATE(223)] = 7183, + [SMALL_STATE(224)] = 7231, + [SMALL_STATE(225)] = 7279, + [SMALL_STATE(226)] = 7327, + [SMALL_STATE(227)] = 7370, + [SMALL_STATE(228)] = 7413, + [SMALL_STATE(229)] = 7456, + [SMALL_STATE(230)] = 7499, + [SMALL_STATE(231)] = 7542, + [SMALL_STATE(232)] = 7568, + [SMALL_STATE(233)] = 7594, + [SMALL_STATE(234)] = 7615, + [SMALL_STATE(235)] = 7640, + [SMALL_STATE(236)] = 7665, + [SMALL_STATE(237)] = 7704, + [SMALL_STATE(238)] = 7742, + [SMALL_STATE(239)] = 7762, + [SMALL_STATE(240)] = 7796, + [SMALL_STATE(241)] = 7828, + [SMALL_STATE(242)] = 7866, + [SMALL_STATE(243)] = 7897, + [SMALL_STATE(244)] = 7928, + [SMALL_STATE(245)] = 7959, + [SMALL_STATE(246)] = 7990, + [SMALL_STATE(247)] = 8021, + [SMALL_STATE(248)] = 8052, + [SMALL_STATE(249)] = 8083, + [SMALL_STATE(250)] = 8114, + [SMALL_STATE(251)] = 8140, + [SMALL_STATE(252)] = 8168, + [SMALL_STATE(253)] = 8194, + [SMALL_STATE(254)] = 8220, + [SMALL_STATE(255)] = 8246, + [SMALL_STATE(256)] = 8272, + [SMALL_STATE(257)] = 8297, + [SMALL_STATE(258)] = 8322, + [SMALL_STATE(259)] = 8347, + [SMALL_STATE(260)] = 8372, + [SMALL_STATE(261)] = 8405, + [SMALL_STATE(262)] = 8430, + [SMALL_STATE(263)] = 8463, + [SMALL_STATE(264)] = 8496, + [SMALL_STATE(265)] = 8529, + [SMALL_STATE(266)] = 8554, + [SMALL_STATE(267)] = 8579, + [SMALL_STATE(268)] = 8612, + [SMALL_STATE(269)] = 8645, + [SMALL_STATE(270)] = 8670, + [SMALL_STATE(271)] = 8695, + [SMALL_STATE(272)] = 8715, + [SMALL_STATE(273)] = 8737, + [SMALL_STATE(274)] = 8757, + [SMALL_STATE(275)] = 8776, + [SMALL_STATE(276)] = 8795, + [SMALL_STATE(277)] = 8814, + [SMALL_STATE(278)] = 8833, + [SMALL_STATE(279)] = 8852, + [SMALL_STATE(280)] = 8871, + [SMALL_STATE(281)] = 8885, + [SMALL_STATE(282)] = 8901, + [SMALL_STATE(283)] = 8915, + [SMALL_STATE(284)] = 8931, + [SMALL_STATE(285)] = 8945, + [SMALL_STATE(286)] = 8970, + [SMALL_STATE(287)] = 8993, + [SMALL_STATE(288)] = 9016, + [SMALL_STATE(289)] = 9041, + [SMALL_STATE(290)] = 9054, + [SMALL_STATE(291)] = 9067, + [SMALL_STATE(292)] = 9078, + [SMALL_STATE(293)] = 9089, + [SMALL_STATE(294)] = 9100, + [SMALL_STATE(295)] = 9111, + [SMALL_STATE(296)] = 9122, + [SMALL_STATE(297)] = 9133, + [SMALL_STATE(298)] = 9144, + [SMALL_STATE(299)] = 9169, + [SMALL_STATE(300)] = 9192, + [SMALL_STATE(301)] = 9215, + [SMALL_STATE(302)] = 9238, + [SMALL_STATE(303)] = 9261, + [SMALL_STATE(304)] = 9284, + [SMALL_STATE(305)] = 9295, + [SMALL_STATE(306)] = 9320, + [SMALL_STATE(307)] = 9343, + [SMALL_STATE(308)] = 9366, + [SMALL_STATE(309)] = 9389, + [SMALL_STATE(310)] = 9414, + [SMALL_STATE(311)] = 9437, + [SMALL_STATE(312)] = 9460, + [SMALL_STATE(313)] = 9483, + [SMALL_STATE(314)] = 9508, + [SMALL_STATE(315)] = 9531, + [SMALL_STATE(316)] = 9554, + [SMALL_STATE(317)] = 9576, + [SMALL_STATE(318)] = 9598, + [SMALL_STATE(319)] = 9608, + [SMALL_STATE(320)] = 9630, + [SMALL_STATE(321)] = 9650, + [SMALL_STATE(322)] = 9660, + [SMALL_STATE(323)] = 9682, + [SMALL_STATE(324)] = 9704, + [SMALL_STATE(325)] = 9724, + [SMALL_STATE(326)] = 9734, + [SMALL_STATE(327)] = 9756, + [SMALL_STATE(328)] = 9766, + [SMALL_STATE(329)] = 9776, + [SMALL_STATE(330)] = 9798, + [SMALL_STATE(331)] = 9820, + [SMALL_STATE(332)] = 9830, + [SMALL_STATE(333)] = 9852, + [SMALL_STATE(334)] = 9862, + [SMALL_STATE(335)] = 9884, + [SMALL_STATE(336)] = 9906, + [SMALL_STATE(337)] = 9928, + [SMALL_STATE(338)] = 9950, + [SMALL_STATE(339)] = 9960, + [SMALL_STATE(340)] = 9970, + [SMALL_STATE(341)] = 9980, + [SMALL_STATE(342)] = 9990, + [SMALL_STATE(343)] = 10012, + [SMALL_STATE(344)] = 10034, + [SMALL_STATE(345)] = 10056, + [SMALL_STATE(346)] = 10078, + [SMALL_STATE(347)] = 10088, + [SMALL_STATE(348)] = 10098, + [SMALL_STATE(349)] = 10120, + [SMALL_STATE(350)] = 10130, + [SMALL_STATE(351)] = 10149, + [SMALL_STATE(352)] = 10168, + [SMALL_STATE(353)] = 10183, + [SMALL_STATE(354)] = 10202, + [SMALL_STATE(355)] = 10221, + [SMALL_STATE(356)] = 10240, + [SMALL_STATE(357)] = 10259, + [SMALL_STATE(358)] = 10278, + [SMALL_STATE(359)] = 10287, + [SMALL_STATE(360)] = 10296, + [SMALL_STATE(361)] = 10315, + [SMALL_STATE(362)] = 10334, + [SMALL_STATE(363)] = 10349, + [SMALL_STATE(364)] = 10368, + [SMALL_STATE(365)] = 10387, + [SMALL_STATE(366)] = 10406, + [SMALL_STATE(367)] = 10425, + [SMALL_STATE(368)] = 10434, + [SMALL_STATE(369)] = 10453, + [SMALL_STATE(370)] = 10462, + [SMALL_STATE(371)] = 10481, + [SMALL_STATE(372)] = 10500, + [SMALL_STATE(373)] = 10509, + [SMALL_STATE(374)] = 10518, + [SMALL_STATE(375)] = 10537, + [SMALL_STATE(376)] = 10546, + [SMALL_STATE(377)] = 10561, + [SMALL_STATE(378)] = 10576, + [SMALL_STATE(379)] = 10595, + [SMALL_STATE(380)] = 10604, + [SMALL_STATE(381)] = 10613, + [SMALL_STATE(382)] = 10632, + [SMALL_STATE(383)] = 10651, + [SMALL_STATE(384)] = 10670, + [SMALL_STATE(385)] = 10679, + [SMALL_STATE(386)] = 10698, + [SMALL_STATE(387)] = 10717, + [SMALL_STATE(388)] = 10736, + [SMALL_STATE(389)] = 10755, + [SMALL_STATE(390)] = 10774, + [SMALL_STATE(391)] = 10793, + [SMALL_STATE(392)] = 10812, + [SMALL_STATE(393)] = 10831, + [SMALL_STATE(394)] = 10850, + [SMALL_STATE(395)] = 10869, + [SMALL_STATE(396)] = 10888, + [SMALL_STATE(397)] = 10907, + [SMALL_STATE(398)] = 10926, + [SMALL_STATE(399)] = 10945, + [SMALL_STATE(400)] = 10964, + [SMALL_STATE(401)] = 10983, + [SMALL_STATE(402)] = 11002, + [SMALL_STATE(403)] = 11021, + [SMALL_STATE(404)] = 11040, + [SMALL_STATE(405)] = 11059, + [SMALL_STATE(406)] = 11078, + [SMALL_STATE(407)] = 11093, + [SMALL_STATE(408)] = 11112, + [SMALL_STATE(409)] = 11131, + [SMALL_STATE(410)] = 11150, + [SMALL_STATE(411)] = 11169, + [SMALL_STATE(412)] = 11188, + [SMALL_STATE(413)] = 11207, + [SMALL_STATE(414)] = 11226, + [SMALL_STATE(415)] = 11245, + [SMALL_STATE(416)] = 11264, + [SMALL_STATE(417)] = 11283, + [SMALL_STATE(418)] = 11302, + [SMALL_STATE(419)] = 11316, + [SMALL_STATE(420)] = 11328, + [SMALL_STATE(421)] = 11340, + [SMALL_STATE(422)] = 11352, + [SMALL_STATE(423)] = 11366, + [SMALL_STATE(424)] = 11380, + [SMALL_STATE(425)] = 11389, + [SMALL_STATE(426)] = 11402, + [SMALL_STATE(427)] = 11415, + [SMALL_STATE(428)] = 11428, + [SMALL_STATE(429)] = 11441, + [SMALL_STATE(430)] = 11454, + [SMALL_STATE(431)] = 11467, + [SMALL_STATE(432)] = 11480, + [SMALL_STATE(433)] = 11493, + [SMALL_STATE(434)] = 11506, + [SMALL_STATE(435)] = 11519, + [SMALL_STATE(436)] = 11532, + [SMALL_STATE(437)] = 11545, + [SMALL_STATE(438)] = 11558, + [SMALL_STATE(439)] = 11571, + [SMALL_STATE(440)] = 11584, + [SMALL_STATE(441)] = 11597, + [SMALL_STATE(442)] = 11610, + [SMALL_STATE(443)] = 11623, + [SMALL_STATE(444)] = 11632, + [SMALL_STATE(445)] = 11641, + [SMALL_STATE(446)] = 11652, + [SMALL_STATE(447)] = 11661, + [SMALL_STATE(448)] = 11670, + [SMALL_STATE(449)] = 11683, + [SMALL_STATE(450)] = 11696, + [SMALL_STATE(451)] = 11707, + [SMALL_STATE(452)] = 11720, + [SMALL_STATE(453)] = 11729, + [SMALL_STATE(454)] = 11738, + [SMALL_STATE(455)] = 11747, + [SMALL_STATE(456)] = 11760, + [SMALL_STATE(457)] = 11769, + [SMALL_STATE(458)] = 11776, + [SMALL_STATE(459)] = 11787, + [SMALL_STATE(460)] = 11800, + [SMALL_STATE(461)] = 11813, + [SMALL_STATE(462)] = 11826, + [SMALL_STATE(463)] = 11839, + [SMALL_STATE(464)] = 11852, + [SMALL_STATE(465)] = 11865, + [SMALL_STATE(466)] = 11878, + [SMALL_STATE(467)] = 11891, + [SMALL_STATE(468)] = 11904, + [SMALL_STATE(469)] = 11917, + [SMALL_STATE(470)] = 11930, + [SMALL_STATE(471)] = 11943, + [SMALL_STATE(472)] = 11956, + [SMALL_STATE(473)] = 11969, + [SMALL_STATE(474)] = 11982, + [SMALL_STATE(475)] = 11995, + [SMALL_STATE(476)] = 12008, + [SMALL_STATE(477)] = 12019, + [SMALL_STATE(478)] = 12030, + [SMALL_STATE(479)] = 12043, + [SMALL_STATE(480)] = 12056, + [SMALL_STATE(481)] = 12067, + [SMALL_STATE(482)] = 12080, + [SMALL_STATE(483)] = 12089, + [SMALL_STATE(484)] = 12098, + [SMALL_STATE(485)] = 12111, + [SMALL_STATE(486)] = 12124, + [SMALL_STATE(487)] = 12137, + [SMALL_STATE(488)] = 12150, + [SMALL_STATE(489)] = 12163, + [SMALL_STATE(490)] = 12176, + [SMALL_STATE(491)] = 12189, + [SMALL_STATE(492)] = 12202, + [SMALL_STATE(493)] = 12215, + [SMALL_STATE(494)] = 12228, + [SMALL_STATE(495)] = 12241, + [SMALL_STATE(496)] = 12254, + [SMALL_STATE(497)] = 12267, + [SMALL_STATE(498)] = 12280, + [SMALL_STATE(499)] = 12293, + [SMALL_STATE(500)] = 12306, + [SMALL_STATE(501)] = 12319, + [SMALL_STATE(502)] = 12332, + [SMALL_STATE(503)] = 12343, + [SMALL_STATE(504)] = 12356, + [SMALL_STATE(505)] = 12369, + [SMALL_STATE(506)] = 12382, + [SMALL_STATE(507)] = 12395, + [SMALL_STATE(508)] = 12404, + [SMALL_STATE(509)] = 12417, + [SMALL_STATE(510)] = 12430, + [SMALL_STATE(511)] = 12443, + [SMALL_STATE(512)] = 12456, + [SMALL_STATE(513)] = 12469, + [SMALL_STATE(514)] = 12482, + [SMALL_STATE(515)] = 12495, + [SMALL_STATE(516)] = 12508, + [SMALL_STATE(517)] = 12521, + [SMALL_STATE(518)] = 12534, + [SMALL_STATE(519)] = 12547, + [SMALL_STATE(520)] = 12560, + [SMALL_STATE(521)] = 12573, + [SMALL_STATE(522)] = 12586, + [SMALL_STATE(523)] = 12599, + [SMALL_STATE(524)] = 12612, + [SMALL_STATE(525)] = 12623, + [SMALL_STATE(526)] = 12636, + [SMALL_STATE(527)] = 12649, + [SMALL_STATE(528)] = 12662, + [SMALL_STATE(529)] = 12675, + [SMALL_STATE(530)] = 12688, + [SMALL_STATE(531)] = 12701, + [SMALL_STATE(532)] = 12714, + [SMALL_STATE(533)] = 12727, + [SMALL_STATE(534)] = 12740, + [SMALL_STATE(535)] = 12753, + [SMALL_STATE(536)] = 12766, + [SMALL_STATE(537)] = 12779, + [SMALL_STATE(538)] = 12792, + [SMALL_STATE(539)] = 12805, + [SMALL_STATE(540)] = 12818, + [SMALL_STATE(541)] = 12831, + [SMALL_STATE(542)] = 12844, + [SMALL_STATE(543)] = 12857, + [SMALL_STATE(544)] = 12870, + [SMALL_STATE(545)] = 12883, + [SMALL_STATE(546)] = 12896, + [SMALL_STATE(547)] = 12902, + [SMALL_STATE(548)] = 12908, + [SMALL_STATE(549)] = 12914, + [SMALL_STATE(550)] = 12920, + [SMALL_STATE(551)] = 12930, + [SMALL_STATE(552)] = 12940, + [SMALL_STATE(553)] = 12950, + [SMALL_STATE(554)] = 12956, + [SMALL_STATE(555)] = 12962, + [SMALL_STATE(556)] = 12972, + [SMALL_STATE(557)] = 12978, + [SMALL_STATE(558)] = 12988, + [SMALL_STATE(559)] = 12994, + [SMALL_STATE(560)] = 13004, + [SMALL_STATE(561)] = 13010, + [SMALL_STATE(562)] = 13020, + [SMALL_STATE(563)] = 13026, + [SMALL_STATE(564)] = 13036, + [SMALL_STATE(565)] = 13046, + [SMALL_STATE(566)] = 13052, + [SMALL_STATE(567)] = 13058, + [SMALL_STATE(568)] = 13068, + [SMALL_STATE(569)] = 13074, + [SMALL_STATE(570)] = 13080, + [SMALL_STATE(571)] = 13086, + [SMALL_STATE(572)] = 13092, + [SMALL_STATE(573)] = 13098, + [SMALL_STATE(574)] = 13104, + [SMALL_STATE(575)] = 13110, + [SMALL_STATE(576)] = 13116, + [SMALL_STATE(577)] = 13122, + [SMALL_STATE(578)] = 13128, + [SMALL_STATE(579)] = 13134, + [SMALL_STATE(580)] = 13140, + [SMALL_STATE(581)] = 13146, + [SMALL_STATE(582)] = 13152, + [SMALL_STATE(583)] = 13158, + [SMALL_STATE(584)] = 13164, + [SMALL_STATE(585)] = 13170, + [SMALL_STATE(586)] = 13176, + [SMALL_STATE(587)] = 13182, + [SMALL_STATE(588)] = 13188, + [SMALL_STATE(589)] = 13194, + [SMALL_STATE(590)] = 13200, + [SMALL_STATE(591)] = 13210, + [SMALL_STATE(592)] = 13220, + [SMALL_STATE(593)] = 13226, + [SMALL_STATE(594)] = 13232, + [SMALL_STATE(595)] = 13238, + [SMALL_STATE(596)] = 13244, + [SMALL_STATE(597)] = 13250, + [SMALL_STATE(598)] = 13256, + [SMALL_STATE(599)] = 13262, + [SMALL_STATE(600)] = 13268, + [SMALL_STATE(601)] = 13274, + [SMALL_STATE(602)] = 13280, + [SMALL_STATE(603)] = 13286, + [SMALL_STATE(604)] = 13294, + [SMALL_STATE(605)] = 13300, + [SMALL_STATE(606)] = 13306, + [SMALL_STATE(607)] = 13312, + [SMALL_STATE(608)] = 13318, + [SMALL_STATE(609)] = 13324, + [SMALL_STATE(610)] = 13330, + [SMALL_STATE(611)] = 13336, + [SMALL_STATE(612)] = 13342, + [SMALL_STATE(613)] = 13348, + [SMALL_STATE(614)] = 13354, + [SMALL_STATE(615)] = 13360, + [SMALL_STATE(616)] = 13366, + [SMALL_STATE(617)] = 13372, + [SMALL_STATE(618)] = 13378, + [SMALL_STATE(619)] = 13386, + [SMALL_STATE(620)] = 13396, + [SMALL_STATE(621)] = 13406, + [SMALL_STATE(622)] = 13416, + [SMALL_STATE(623)] = 13426, + [SMALL_STATE(624)] = 13436, + [SMALL_STATE(625)] = 13446, + [SMALL_STATE(626)] = 13456, + [SMALL_STATE(627)] = 13462, + [SMALL_STATE(628)] = 13468, + [SMALL_STATE(629)] = 13474, + [SMALL_STATE(630)] = 13480, + [SMALL_STATE(631)] = 13486, + [SMALL_STATE(632)] = 13496, + [SMALL_STATE(633)] = 13506, + [SMALL_STATE(634)] = 13516, + [SMALL_STATE(635)] = 13526, + [SMALL_STATE(636)] = 13536, + [SMALL_STATE(637)] = 13542, + [SMALL_STATE(638)] = 13548, + [SMALL_STATE(639)] = 13558, + [SMALL_STATE(640)] = 13568, + [SMALL_STATE(641)] = 13578, + [SMALL_STATE(642)] = 13588, + [SMALL_STATE(643)] = 13598, + [SMALL_STATE(644)] = 13606, + [SMALL_STATE(645)] = 13616, + [SMALL_STATE(646)] = 13622, + [SMALL_STATE(647)] = 13632, + [SMALL_STATE(648)] = 13642, + [SMALL_STATE(649)] = 13652, + [SMALL_STATE(650)] = 13658, + [SMALL_STATE(651)] = 13668, + [SMALL_STATE(652)] = 13678, + [SMALL_STATE(653)] = 13684, + [SMALL_STATE(654)] = 13690, + [SMALL_STATE(655)] = 13700, + [SMALL_STATE(656)] = 13710, + [SMALL_STATE(657)] = 13720, + [SMALL_STATE(658)] = 13730, + [SMALL_STATE(659)] = 13740, + [SMALL_STATE(660)] = 13750, + [SMALL_STATE(661)] = 13760, + [SMALL_STATE(662)] = 13770, + [SMALL_STATE(663)] = 13778, + [SMALL_STATE(664)] = 13784, + [SMALL_STATE(665)] = 13792, + [SMALL_STATE(666)] = 13800, + [SMALL_STATE(667)] = 13806, + [SMALL_STATE(668)] = 13812, + [SMALL_STATE(669)] = 13820, + [SMALL_STATE(670)] = 13828, + [SMALL_STATE(671)] = 13836, + [SMALL_STATE(672)] = 13844, + [SMALL_STATE(673)] = 13852, + [SMALL_STATE(674)] = 13858, + [SMALL_STATE(675)] = 13864, + [SMALL_STATE(676)] = 13872, + [SMALL_STATE(677)] = 13880, + [SMALL_STATE(678)] = 13888, + [SMALL_STATE(679)] = 13898, + [SMALL_STATE(680)] = 13903, + [SMALL_STATE(681)] = 13908, + [SMALL_STATE(682)] = 13913, + [SMALL_STATE(683)] = 13918, + [SMALL_STATE(684)] = 13923, + [SMALL_STATE(685)] = 13928, + [SMALL_STATE(686)] = 13933, + [SMALL_STATE(687)] = 13938, + [SMALL_STATE(688)] = 13943, + [SMALL_STATE(689)] = 13948, + [SMALL_STATE(690)] = 13955, + [SMALL_STATE(691)] = 13960, + [SMALL_STATE(692)] = 13965, + [SMALL_STATE(693)] = 13970, + [SMALL_STATE(694)] = 13975, + [SMALL_STATE(695)] = 13980, + [SMALL_STATE(696)] = 13985, + [SMALL_STATE(697)] = 13990, + [SMALL_STATE(698)] = 13995, + [SMALL_STATE(699)] = 14000, + [SMALL_STATE(700)] = 14005, + [SMALL_STATE(701)] = 14010, + [SMALL_STATE(702)] = 14015, + [SMALL_STATE(703)] = 14020, + [SMALL_STATE(704)] = 14025, + [SMALL_STATE(705)] = 14030, + [SMALL_STATE(706)] = 14035, + [SMALL_STATE(707)] = 14040, + [SMALL_STATE(708)] = 14045, + [SMALL_STATE(709)] = 14050, + [SMALL_STATE(710)] = 14055, + [SMALL_STATE(711)] = 14060, + [SMALL_STATE(712)] = 14065, + [SMALL_STATE(713)] = 14070, + [SMALL_STATE(714)] = 14075, + [SMALL_STATE(715)] = 14080, + [SMALL_STATE(716)] = 14085, + [SMALL_STATE(717)] = 14090, + [SMALL_STATE(718)] = 14095, + [SMALL_STATE(719)] = 14100, + [SMALL_STATE(720)] = 14105, + [SMALL_STATE(721)] = 14110, + [SMALL_STATE(722)] = 14115, + [SMALL_STATE(723)] = 14122, + [SMALL_STATE(724)] = 14129, + [SMALL_STATE(725)] = 14134, + [SMALL_STATE(726)] = 14139, + [SMALL_STATE(727)] = 14144, + [SMALL_STATE(728)] = 14151, + [SMALL_STATE(729)] = 14156, + [SMALL_STATE(730)] = 14163, + [SMALL_STATE(731)] = 14170, + [SMALL_STATE(732)] = 14177, + [SMALL_STATE(733)] = 14182, + [SMALL_STATE(734)] = 14189, + [SMALL_STATE(735)] = 14194, + [SMALL_STATE(736)] = 14199, + [SMALL_STATE(737)] = 14206, + [SMALL_STATE(738)] = 14213, + [SMALL_STATE(739)] = 14218, + [SMALL_STATE(740)] = 14223, + [SMALL_STATE(741)] = 14228, + [SMALL_STATE(742)] = 14235, + [SMALL_STATE(743)] = 14240, + [SMALL_STATE(744)] = 14245, + [SMALL_STATE(745)] = 14252, + [SMALL_STATE(746)] = 14257, + [SMALL_STATE(747)] = 14262, + [SMALL_STATE(748)] = 14269, + [SMALL_STATE(749)] = 14274, + [SMALL_STATE(750)] = 14281, + [SMALL_STATE(751)] = 14286, + [SMALL_STATE(752)] = 14291, + [SMALL_STATE(753)] = 14296, + [SMALL_STATE(754)] = 14301, + [SMALL_STATE(755)] = 14308, + [SMALL_STATE(756)] = 14315, + [SMALL_STATE(757)] = 14322, + [SMALL_STATE(758)] = 14329, + [SMALL_STATE(759)] = 14336, + [SMALL_STATE(760)] = 14343, + [SMALL_STATE(761)] = 14350, + [SMALL_STATE(762)] = 14357, + [SMALL_STATE(763)] = 14362, + [SMALL_STATE(764)] = 14369, + [SMALL_STATE(765)] = 14376, + [SMALL_STATE(766)] = 14383, + [SMALL_STATE(767)] = 14390, + [SMALL_STATE(768)] = 14397, + [SMALL_STATE(769)] = 14404, + [SMALL_STATE(770)] = 14409, + [SMALL_STATE(771)] = 14416, + [SMALL_STATE(772)] = 14423, + [SMALL_STATE(773)] = 14430, + [SMALL_STATE(774)] = 14435, + [SMALL_STATE(775)] = 14442, + [SMALL_STATE(776)] = 14447, + [SMALL_STATE(777)] = 14452, + [SMALL_STATE(778)] = 14459, + [SMALL_STATE(779)] = 14464, + [SMALL_STATE(780)] = 14469, + [SMALL_STATE(781)] = 14476, + [SMALL_STATE(782)] = 14483, + [SMALL_STATE(783)] = 14490, + [SMALL_STATE(784)] = 14497, + [SMALL_STATE(785)] = 14502, + [SMALL_STATE(786)] = 14507, + [SMALL_STATE(787)] = 14512, + [SMALL_STATE(788)] = 14517, + [SMALL_STATE(789)] = 14522, + [SMALL_STATE(790)] = 14527, + [SMALL_STATE(791)] = 14532, + [SMALL_STATE(792)] = 14539, + [SMALL_STATE(793)] = 14544, + [SMALL_STATE(794)] = 14549, + [SMALL_STATE(795)] = 14554, + [SMALL_STATE(796)] = 14559, + [SMALL_STATE(797)] = 14564, + [SMALL_STATE(798)] = 14569, + [SMALL_STATE(799)] = 14574, + [SMALL_STATE(800)] = 14581, + [SMALL_STATE(801)] = 14588, + [SMALL_STATE(802)] = 14593, + [SMALL_STATE(803)] = 14598, + [SMALL_STATE(804)] = 14605, + [SMALL_STATE(805)] = 14610, + [SMALL_STATE(806)] = 14615, + [SMALL_STATE(807)] = 14620, + [SMALL_STATE(808)] = 14625, + [SMALL_STATE(809)] = 14630, + [SMALL_STATE(810)] = 14635, + [SMALL_STATE(811)] = 14640, + [SMALL_STATE(812)] = 14645, + [SMALL_STATE(813)] = 14650, + [SMALL_STATE(814)] = 14655, + [SMALL_STATE(815)] = 14660, + [SMALL_STATE(816)] = 14665, + [SMALL_STATE(817)] = 14670, + [SMALL_STATE(818)] = 14675, + [SMALL_STATE(819)] = 14680, + [SMALL_STATE(820)] = 14687, + [SMALL_STATE(821)] = 14692, + [SMALL_STATE(822)] = 14697, + [SMALL_STATE(823)] = 14702, + [SMALL_STATE(824)] = 14709, + [SMALL_STATE(825)] = 14714, + [SMALL_STATE(826)] = 14719, + [SMALL_STATE(827)] = 14724, + [SMALL_STATE(828)] = 14729, + [SMALL_STATE(829)] = 14734, + [SMALL_STATE(830)] = 14739, + [SMALL_STATE(831)] = 14744, + [SMALL_STATE(832)] = 14749, + [SMALL_STATE(833)] = 14754, + [SMALL_STATE(834)] = 14759, + [SMALL_STATE(835)] = 14766, + [SMALL_STATE(836)] = 14773, + [SMALL_STATE(837)] = 14780, + [SMALL_STATE(838)] = 14785, + [SMALL_STATE(839)] = 14790, + [SMALL_STATE(840)] = 14797, + [SMALL_STATE(841)] = 14804, + [SMALL_STATE(842)] = 14811, + [SMALL_STATE(843)] = 14816, + [SMALL_STATE(844)] = 14821, + [SMALL_STATE(845)] = 14826, + [SMALL_STATE(846)] = 14831, + [SMALL_STATE(847)] = 14838, + [SMALL_STATE(848)] = 14845, + [SMALL_STATE(849)] = 14852, + [SMALL_STATE(850)] = 14859, + [SMALL_STATE(851)] = 14866, + [SMALL_STATE(852)] = 14873, + [SMALL_STATE(853)] = 14880, + [SMALL_STATE(854)] = 14887, + [SMALL_STATE(855)] = 14892, + [SMALL_STATE(856)] = 14897, + [SMALL_STATE(857)] = 14902, + [SMALL_STATE(858)] = 14907, + [SMALL_STATE(859)] = 14914, + [SMALL_STATE(860)] = 14921, + [SMALL_STATE(861)] = 14928, + [SMALL_STATE(862)] = 14933, + [SMALL_STATE(863)] = 14938, + [SMALL_STATE(864)] = 14945, + [SMALL_STATE(865)] = 14952, + [SMALL_STATE(866)] = 14959, + [SMALL_STATE(867)] = 14964, + [SMALL_STATE(868)] = 14969, + [SMALL_STATE(869)] = 14974, + [SMALL_STATE(870)] = 14981, + [SMALL_STATE(871)] = 14988, + [SMALL_STATE(872)] = 14995, + [SMALL_STATE(873)] = 15000, + [SMALL_STATE(874)] = 15005, + [SMALL_STATE(875)] = 15012, + [SMALL_STATE(876)] = 15019, + [SMALL_STATE(877)] = 15026, + [SMALL_STATE(878)] = 15033, + [SMALL_STATE(879)] = 15040, + [SMALL_STATE(880)] = 15047, + [SMALL_STATE(881)] = 15054, + [SMALL_STATE(882)] = 15061, + [SMALL_STATE(883)] = 15068, + [SMALL_STATE(884)] = 15075, + [SMALL_STATE(885)] = 15082, + [SMALL_STATE(886)] = 15089, + [SMALL_STATE(887)] = 15096, + [SMALL_STATE(888)] = 15103, + [SMALL_STATE(889)] = 15110, + [SMALL_STATE(890)] = 15117, + [SMALL_STATE(891)] = 15122, + [SMALL_STATE(892)] = 15127, + [SMALL_STATE(893)] = 15132, + [SMALL_STATE(894)] = 15137, + [SMALL_STATE(895)] = 15142, + [SMALL_STATE(896)] = 15146, + [SMALL_STATE(897)] = 15150, + [SMALL_STATE(898)] = 15154, + [SMALL_STATE(899)] = 15158, + [SMALL_STATE(900)] = 15162, + [SMALL_STATE(901)] = 15166, + [SMALL_STATE(902)] = 15170, + [SMALL_STATE(903)] = 15174, + [SMALL_STATE(904)] = 15178, + [SMALL_STATE(905)] = 15182, + [SMALL_STATE(906)] = 15186, + [SMALL_STATE(907)] = 15190, + [SMALL_STATE(908)] = 15194, + [SMALL_STATE(909)] = 15198, + [SMALL_STATE(910)] = 15202, + [SMALL_STATE(911)] = 15206, + [SMALL_STATE(912)] = 15210, + [SMALL_STATE(913)] = 15214, + [SMALL_STATE(914)] = 15218, + [SMALL_STATE(915)] = 15222, + [SMALL_STATE(916)] = 15226, + [SMALL_STATE(917)] = 15230, + [SMALL_STATE(918)] = 15234, + [SMALL_STATE(919)] = 15238, + [SMALL_STATE(920)] = 15242, + [SMALL_STATE(921)] = 15246, + [SMALL_STATE(922)] = 15250, + [SMALL_STATE(923)] = 15254, + [SMALL_STATE(924)] = 15258, + [SMALL_STATE(925)] = 15262, + [SMALL_STATE(926)] = 15266, + [SMALL_STATE(927)] = 15270, + [SMALL_STATE(928)] = 15274, + [SMALL_STATE(929)] = 15278, + [SMALL_STATE(930)] = 15282, + [SMALL_STATE(931)] = 15286, + [SMALL_STATE(932)] = 15290, + [SMALL_STATE(933)] = 15294, + [SMALL_STATE(934)] = 15298, + [SMALL_STATE(935)] = 15302, + [SMALL_STATE(936)] = 15306, + [SMALL_STATE(937)] = 15310, + [SMALL_STATE(938)] = 15314, + [SMALL_STATE(939)] = 15318, + [SMALL_STATE(940)] = 15322, + [SMALL_STATE(941)] = 15326, + [SMALL_STATE(942)] = 15330, + [SMALL_STATE(943)] = 15334, + [SMALL_STATE(944)] = 15338, + [SMALL_STATE(945)] = 15342, + [SMALL_STATE(946)] = 15346, + [SMALL_STATE(947)] = 15350, + [SMALL_STATE(948)] = 15354, + [SMALL_STATE(949)] = 15358, + [SMALL_STATE(950)] = 15362, + [SMALL_STATE(951)] = 15366, + [SMALL_STATE(952)] = 15370, + [SMALL_STATE(953)] = 15374, + [SMALL_STATE(954)] = 15378, + [SMALL_STATE(955)] = 15382, + [SMALL_STATE(956)] = 15386, + [SMALL_STATE(957)] = 15390, + [SMALL_STATE(958)] = 15394, + [SMALL_STATE(959)] = 15398, + [SMALL_STATE(960)] = 15402, + [SMALL_STATE(961)] = 15406, + [SMALL_STATE(962)] = 15410, + [SMALL_STATE(963)] = 15414, + [SMALL_STATE(964)] = 15418, + [SMALL_STATE(965)] = 15422, + [SMALL_STATE(966)] = 15426, + [SMALL_STATE(967)] = 15430, + [SMALL_STATE(968)] = 15434, + [SMALL_STATE(969)] = 15438, + [SMALL_STATE(970)] = 15442, + [SMALL_STATE(971)] = 15446, + [SMALL_STATE(972)] = 15450, + [SMALL_STATE(973)] = 15454, + [SMALL_STATE(974)] = 15458, + [SMALL_STATE(975)] = 15462, + [SMALL_STATE(976)] = 15466, + [SMALL_STATE(977)] = 15470, + [SMALL_STATE(978)] = 15474, + [SMALL_STATE(979)] = 15478, + [SMALL_STATE(980)] = 15482, + [SMALL_STATE(981)] = 15486, + [SMALL_STATE(982)] = 15490, + [SMALL_STATE(983)] = 15494, + [SMALL_STATE(984)] = 15498, + [SMALL_STATE(985)] = 15502, + [SMALL_STATE(986)] = 15506, + [SMALL_STATE(987)] = 15510, + [SMALL_STATE(988)] = 15514, + [SMALL_STATE(989)] = 15518, + [SMALL_STATE(990)] = 15522, + [SMALL_STATE(991)] = 15526, + [SMALL_STATE(992)] = 15530, + [SMALL_STATE(993)] = 15534, + [SMALL_STATE(994)] = 15538, + [SMALL_STATE(995)] = 15542, + [SMALL_STATE(996)] = 15546, + [SMALL_STATE(997)] = 15550, + [SMALL_STATE(998)] = 15554, + [SMALL_STATE(999)] = 15558, + [SMALL_STATE(1000)] = 15562, + [SMALL_STATE(1001)] = 15566, + [SMALL_STATE(1002)] = 15570, + [SMALL_STATE(1003)] = 15574, + [SMALL_STATE(1004)] = 15578, + [SMALL_STATE(1005)] = 15582, + [SMALL_STATE(1006)] = 15586, + [SMALL_STATE(1007)] = 15590, + [SMALL_STATE(1008)] = 15594, + [SMALL_STATE(1009)] = 15598, + [SMALL_STATE(1010)] = 15602, + [SMALL_STATE(1011)] = 15606, + [SMALL_STATE(1012)] = 15610, + [SMALL_STATE(1013)] = 15614, + [SMALL_STATE(1014)] = 15618, + [SMALL_STATE(1015)] = 15622, + [SMALL_STATE(1016)] = 15626, + [SMALL_STATE(1017)] = 15630, + [SMALL_STATE(1018)] = 15634, + [SMALL_STATE(1019)] = 15638, + [SMALL_STATE(1020)] = 15642, + [SMALL_STATE(1021)] = 15646, + [SMALL_STATE(1022)] = 15650, + [SMALL_STATE(1023)] = 15654, + [SMALL_STATE(1024)] = 15658, + [SMALL_STATE(1025)] = 15662, + [SMALL_STATE(1026)] = 15666, + [SMALL_STATE(1027)] = 15670, + [SMALL_STATE(1028)] = 15674, + [SMALL_STATE(1029)] = 15678, + [SMALL_STATE(1030)] = 15682, + [SMALL_STATE(1031)] = 15686, + [SMALL_STATE(1032)] = 15690, + [SMALL_STATE(1033)] = 15694, + [SMALL_STATE(1034)] = 15698, + [SMALL_STATE(1035)] = 15702, + [SMALL_STATE(1036)] = 15706, + [SMALL_STATE(1037)] = 15710, + [SMALL_STATE(1038)] = 15714, + [SMALL_STATE(1039)] = 15718, + [SMALL_STATE(1040)] = 15722, + [SMALL_STATE(1041)] = 15726, + [SMALL_STATE(1042)] = 15730, + [SMALL_STATE(1043)] = 15734, + [SMALL_STATE(1044)] = 15738, + [SMALL_STATE(1045)] = 15742, + [SMALL_STATE(1046)] = 15746, + [SMALL_STATE(1047)] = 15750, + [SMALL_STATE(1048)] = 15754, + [SMALL_STATE(1049)] = 15758, + [SMALL_STATE(1050)] = 15762, + [SMALL_STATE(1051)] = 15766, + [SMALL_STATE(1052)] = 15770, + [SMALL_STATE(1053)] = 15774, + [SMALL_STATE(1054)] = 15778, + [SMALL_STATE(1055)] = 15782, + [SMALL_STATE(1056)] = 15786, + [SMALL_STATE(1057)] = 15790, + [SMALL_STATE(1058)] = 15794, + [SMALL_STATE(1059)] = 15798, + [SMALL_STATE(1060)] = 15802, + [SMALL_STATE(1061)] = 15806, + [SMALL_STATE(1062)] = 15810, + [SMALL_STATE(1063)] = 15814, + [SMALL_STATE(1064)] = 15818, + [SMALL_STATE(1065)] = 15822, + [SMALL_STATE(1066)] = 15826, + [SMALL_STATE(1067)] = 15830, + [SMALL_STATE(1068)] = 15834, + [SMALL_STATE(1069)] = 15838, + [SMALL_STATE(1070)] = 15842, + [SMALL_STATE(1071)] = 15846, + [SMALL_STATE(1072)] = 15850, + [SMALL_STATE(1073)] = 15854, + [SMALL_STATE(1074)] = 15858, + [SMALL_STATE(1075)] = 15862, + [SMALL_STATE(1076)] = 15866, + [SMALL_STATE(1077)] = 15870, + [SMALL_STATE(1078)] = 15874, + [SMALL_STATE(1079)] = 15878, + [SMALL_STATE(1080)] = 15882, + [SMALL_STATE(1081)] = 15886, + [SMALL_STATE(1082)] = 15890, + [SMALL_STATE(1083)] = 15894, + [SMALL_STATE(1084)] = 15898, + [SMALL_STATE(1085)] = 15902, + [SMALL_STATE(1086)] = 15906, + [SMALL_STATE(1087)] = 15910, + [SMALL_STATE(1088)] = 15914, + [SMALL_STATE(1089)] = 15918, + [SMALL_STATE(1090)] = 15922, + [SMALL_STATE(1091)] = 15926, + [SMALL_STATE(1092)] = 15930, + [SMALL_STATE(1093)] = 15934, + [SMALL_STATE(1094)] = 15938, + [SMALL_STATE(1095)] = 15942, + [SMALL_STATE(1096)] = 15946, + [SMALL_STATE(1097)] = 15950, + [SMALL_STATE(1098)] = 15954, + [SMALL_STATE(1099)] = 15958, + [SMALL_STATE(1100)] = 15962, + [SMALL_STATE(1101)] = 15966, + [SMALL_STATE(1102)] = 15970, + [SMALL_STATE(1103)] = 15974, + [SMALL_STATE(1104)] = 15978, + [SMALL_STATE(1105)] = 15982, + [SMALL_STATE(1106)] = 15986, + [SMALL_STATE(1107)] = 15990, + [SMALL_STATE(1108)] = 15994, + [SMALL_STATE(1109)] = 15998, + [SMALL_STATE(1110)] = 16002, + [SMALL_STATE(1111)] = 16006, + [SMALL_STATE(1112)] = 16010, + [SMALL_STATE(1113)] = 16014, + [SMALL_STATE(1114)] = 16018, + [SMALL_STATE(1115)] = 16022, + [SMALL_STATE(1116)] = 16026, + [SMALL_STATE(1117)] = 16030, + [SMALL_STATE(1118)] = 16034, + [SMALL_STATE(1119)] = 16038, + [SMALL_STATE(1120)] = 16042, + [SMALL_STATE(1121)] = 16046, + [SMALL_STATE(1122)] = 16050, + [SMALL_STATE(1123)] = 16054, + [SMALL_STATE(1124)] = 16058, + [SMALL_STATE(1125)] = 16062, + [SMALL_STATE(1126)] = 16066, + [SMALL_STATE(1127)] = 16070, + [SMALL_STATE(1128)] = 16074, + [SMALL_STATE(1129)] = 16078, + [SMALL_STATE(1130)] = 16082, + [SMALL_STATE(1131)] = 16086, + [SMALL_STATE(1132)] = 16090, + [SMALL_STATE(1133)] = 16094, + [SMALL_STATE(1134)] = 16098, + [SMALL_STATE(1135)] = 16102, + [SMALL_STATE(1136)] = 16106, + [SMALL_STATE(1137)] = 16110, + [SMALL_STATE(1138)] = 16114, + [SMALL_STATE(1139)] = 16118, + [SMALL_STATE(1140)] = 16122, + [SMALL_STATE(1141)] = 16126, + [SMALL_STATE(1142)] = 16130, + [SMALL_STATE(1143)] = 16134, + [SMALL_STATE(1144)] = 16138, + [SMALL_STATE(1145)] = 16142, + [SMALL_STATE(1146)] = 16146, + [SMALL_STATE(1147)] = 16150, + [SMALL_STATE(1148)] = 16154, + [SMALL_STATE(1149)] = 16158, + [SMALL_STATE(1150)] = 16162, + [SMALL_STATE(1151)] = 16166, + [SMALL_STATE(1152)] = 16170, + [SMALL_STATE(1153)] = 16174, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 0, 0, 0), - [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), + [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), [75] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 1, 0, 0), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [99] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 2, 0, 0), - [101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), - [103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(246), - [106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(736), - [109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(227), - [112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(285), - [115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(114), - [118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(254), - [121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(815), - [124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(1021), - [127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(25), - [130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(45), - [133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(46), - [136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(630), - [139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(237), - [142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(22), - [145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(24), - [148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(49), - [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(26), - [154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(31), - [157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(32), - [160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(33), - [163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(35), - [166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(36), - [169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(37), - [172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(38), - [175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(39), - [178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(40), - [181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(41), - [184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(43), - [187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(61), - [190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(236), - [193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(116), - [196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(288), - [199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(907), - [202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(287), - [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(252), + [77] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), + [79] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(250), + [82] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(819), + [85] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(227), + [88] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(273), + [91] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(173), + [94] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(261), + [97] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(850), + [100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(988), + [103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(47), + [106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(25), + [109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(42), + [112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(643), + [115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(239), + [118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(44), + [121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(22), + [124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(48), + [127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(24), + [130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(49), + [133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(26), + [136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(31), + [139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(32), + [142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(33), + [145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(35), + [148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(36), + [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(37), + [154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(38), + [157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(39), + [160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(40), + [163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(61), + [166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(238), + [169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(201), + [172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(761), + [175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(963), + [178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(767), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), + [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 2, 0, 0), + [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(254), [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(230), - [211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(137), - [214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(1121), - [217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(57), - [220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(142), - [223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(297), - [226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(1123), - [229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(291), + [211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(109), + [214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(1117), + [217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(64), + [220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(143), + [223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(882), + [226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(1119), + [229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(883), [232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), [240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), [244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(252), - [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(736), + [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(254), + [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(819), [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(230), - [255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(285), + [255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(273), [258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), - [260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(206), - [263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(254), - [266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(815), - [269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(1121), - [272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(25), - [275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(45), - [278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(46), - [281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(630), - [284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(237), - [287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(22), - [290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(24), - [293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(49), - [296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(26), - [299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(31), - [302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(32), - [305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(33), - [308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(35), - [311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(36), - [314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(37), - [317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(38), - [320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(39), - [323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(40), - [326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(41), - [329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(43), - [332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(57), - [335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(60), - [338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(142), - [341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(297), - [344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(1123), - [347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(291), - [350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(183), + [263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(261), + [266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(850), + [269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(1117), + [272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(47), + [275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(25), + [278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(42), + [281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(643), + [284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(239), + [287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(44), + [290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(22), + [293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(48), + [296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(24), + [299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(49), + [302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(26), + [305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(31), + [308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(32), + [311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(33), + [314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(35), + [317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(36), + [320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(37), + [323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(38), + [326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(39), + [329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(40), + [332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(64), + [335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(58), + [338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(143), + [341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(882), + [344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(1119), + [347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(883), + [350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), [358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), - [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), - [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), + [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), + [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), - [434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), - [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), + [434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), + [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), [458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 1, 0, 1), [460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 1, 0, 1), - [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), - [472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), - [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), + [472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), + [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), [492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 1, 0, 0), - [494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 1, 0, 0), SHIFT_REPEAT(236), + [494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 1, 0, 0), SHIFT_REPEAT(238), [497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 1, 0, 0), [499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 1, 0, 0), [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), [511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), [513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), - [515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(476), - [518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(288), - [521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(907), - [524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(287), - [527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(297), - [530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(1123), - [533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(291), + [515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(457), + [518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(761), + [521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(963), + [524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(767), + [527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(882), + [530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(1119), + [533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(883), [536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 2, 0, 0), [538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 2, 0, 0), [540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_separator, 4, 0, 0), [542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_separator, 4, 0, 0), [544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_row, 4, 0, 0), [546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_row, 4, 0, 0), - [548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heading, 3, 0, 4), - [550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heading, 3, 0, 4), - [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 4, 0, 14), - [556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 4, 0, 14), - [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 4, 0, 21), - [562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 4, 0, 21), - [564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 5, 0, 23), - [568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 5, 0, 23), - [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 5, 0, 24), - [574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 5, 0, 24), - [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 5, 0, 25), - [580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 5, 0, 25), - [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_header, 5, 0, 0), - [586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_header, 5, 0, 0), - [588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_separator, 5, 0, 0), - [590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_separator, 5, 0, 0), - [592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_row, 5, 0, 0), - [594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_row, 5, 0, 0), - [596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 5, 0, 21), - [598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 5, 0, 21), - [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 6, 0, 28), - [604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 6, 0, 28), - [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 6, 0, 29), - [610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 6, 0, 29), - [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_or_two_newlines, 1, 0, 0), - [616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_or_two_newlines, 1, 0, 0), - [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 4, 0, 14), + [550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 4, 0, 14), + [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 4, 0, 21), + [556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 4, 0, 21), + [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 5, 0, 23), + [562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 5, 0, 23), + [564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 5, 0, 24), + [568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 5, 0, 24), + [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 5, 0, 25), + [574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 5, 0, 25), + [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_header, 5, 0, 0), + [580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_header, 5, 0, 0), + [582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_separator, 5, 0, 0), + [584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_separator, 5, 0, 0), + [586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_row, 5, 0, 0), + [588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_row, 5, 0, 0), + [590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 5, 0, 21), + [592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 5, 0, 21), + [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 6, 0, 28), + [598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 6, 0, 28), + [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 6, 0, 29), + [604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 6, 0, 29), + [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_or_two_newlines, 1, 0, 0), + [610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_or_two_newlines, 1, 0, 0), + [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heading, 3, 0, 4), + [616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heading, 3, 0, 4), + [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), [622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 3, 0, 14), [624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 3, 0, 14), - [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), [628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_row, 2, 0, 0), [630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_row, 2, 0, 0), [632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 4, 0, 0), [634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 4, 0, 0), - [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_header, 4, 0, 0), - [642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_header, 4, 0, 0), - [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_header, 4, 0, 0), + [644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_header, 4, 0, 0), + [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_attribute, 4, 0, 20), - [664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_attribute, 4, 0, 20), - [666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 3, 0, 0), - [668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 3, 0, 0), - [670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heading, 4, 0, 4), - [672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heading, 4, 0, 4), - [674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 2, 0, 7), - [676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 2, 0, 7), - [678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 1, 0, 0), - [680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 1, 0, 0), - [682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 1, 0, 0), - [684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 1, 0, 0), - [686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_thematic_break, 1, 0, 0), - [688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_thematic_break, 1, 0, 0), - [690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph, 2, 0, 8), - [692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__paragraph, 2, 0, 8), - [694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 5, 0, 14), - [696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 5, 0, 14), - [698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frontmatter, 6, 0, 27), - [700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_frontmatter, 6, 0, 27), - [702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 6, 0, 0), - [704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 6, 0, 0), - [706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_dash, 2, 0, 0), - [708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_dash, 2, 0, 0), + [662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 1, 0, 0), + [664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 1, 0, 0), + [666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_task, 2, 0, 0), + [668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_task, 2, 0, 0), + [670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_definition, 2, 0, 0), + [672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_definition, 2, 0, 0), + [674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_decimal_period, 2, 0, 0), + [676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_decimal_period, 2, 0, 0), + [678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_decimal_paren, 2, 0, 0), + [680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_decimal_paren, 2, 0, 0), + [682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_decimal_parens, 2, 0, 0), + [684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_decimal_parens, 2, 0, 0), + [686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 5, 0, 14), + [688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 5, 0, 14), + [690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_alpha_period, 2, 0, 0), + [692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_alpha_period, 2, 0, 0), + [694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frontmatter, 6, 0, 27), + [696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_frontmatter, 6, 0, 27), + [698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 6, 0, 0), + [700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 6, 0, 0), + [702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_alpha_paren, 2, 0, 0), + [704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_alpha_paren, 2, 0, 0), + [706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_alpha_parens, 2, 0, 0), + [708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_alpha_parens, 2, 0, 0), [710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_footnote, 6, 0, 30), [712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_footnote, 6, 0, 30), [714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 6, 0, 14), @@ -28917,856 +27836,851 @@ static const TSParseActionEntry ts_parse_actions[] = { [744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 8, 0, 28), [746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 8, 0, 33), [748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 8, 0, 33), - [750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 8, 0, 34), - [752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 8, 0, 34), - [754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_plus, 2, 0, 0), - [756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_plus, 2, 0, 0), - [758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_footnote_content, 3, 0, 0), - [760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_footnote_content, 3, 0, 0), - [762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_or_two_newlines, 2, 0, 0), - [764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_or_two_newlines, 2, 0, 0), - [766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_footnote_content, 4, 0, 0), - [768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_footnote_content, 4, 0, 0), - [770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_star, 2, 0, 0), - [772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_star, 2, 0, 0), - [774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_with_heading, 2, 0, 0), - [776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_with_heading, 2, 0, 0), - [778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 3, 0, 13), - [780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 3, 0, 13), - [782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_task, 2, 0, 0), - [784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_task, 2, 0, 0), - [786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_definition, 2, 0, 0), - [788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_definition, 2, 0, 0), - [790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_decimal_period, 2, 0, 0), - [792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_decimal_period, 2, 0, 0), - [794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_decimal_paren, 2, 0, 0), - [796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_decimal_paren, 2, 0, 0), - [798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_decimal_parens, 2, 0, 0), - [800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_decimal_parens, 2, 0, 0), - [802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_alpha_period, 2, 0, 0), - [804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_alpha_period, 2, 0, 0), - [806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_alpha_paren, 2, 0, 0), - [808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_alpha_paren, 2, 0, 0), - [810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_alpha_parens, 2, 0, 0), - [812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_alpha_parens, 2, 0, 0), - [814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_alpha_period, 2, 0, 0), - [816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_alpha_period, 2, 0, 0), - [818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_alpha_paren, 2, 0, 0), - [820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_alpha_paren, 2, 0, 0), - [822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_alpha_parens, 2, 0, 0), - [824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_alpha_parens, 2, 0, 0), - [826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_roman_period, 2, 0, 0), - [828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_roman_period, 2, 0, 0), - [830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_roman_paren, 2, 0, 0), - [832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_roman_paren, 2, 0, 0), - [834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_roman_parens, 2, 0, 0), - [836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_roman_parens, 2, 0, 0), - [838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_roman_period, 2, 0, 0), - [840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_roman_period, 2, 0, 0), - [842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_roman_paren, 2, 0, 0), - [844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_roman_paren, 2, 0, 0), - [846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_roman_parens, 2, 0, 0), - [848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_roman_parens, 2, 0, 0), - [850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_quote, 3, 0, 11), - [852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_quote, 3, 0, 11), - [854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_attribute, 3, 0, 0), - [856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_attribute, 3, 0, 0), - [858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_caption, 3, 0, 22), - [860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_caption, 3, 0, 22), - [862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_div_repeat1, 1, 0, 0), - [864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 1, 0, 0), + [750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_alpha_period, 2, 0, 0), + [752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_alpha_period, 2, 0, 0), + [754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 8, 0, 34), + [756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 8, 0, 34), + [758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_alpha_paren, 2, 0, 0), + [760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_alpha_paren, 2, 0, 0), + [762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_footnote_content, 3, 0, 0), + [764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_footnote_content, 3, 0, 0), + [766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_or_two_newlines, 2, 0, 0), + [768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_or_two_newlines, 2, 0, 0), + [770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_alpha_parens, 2, 0, 0), + [772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_alpha_parens, 2, 0, 0), + [774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_footnote_content, 4, 0, 0), + [776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_footnote_content, 4, 0, 0), + [778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_roman_period, 2, 0, 0), + [780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_roman_period, 2, 0, 0), + [782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 2, 0, 7), + [784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 2, 0, 7), + [786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_roman_paren, 2, 0, 0), + [788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_roman_paren, 2, 0, 0), + [790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_with_heading, 2, 0, 0), + [792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_with_heading, 2, 0, 0), + [794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 3, 0, 13), + [796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 3, 0, 13), + [798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_thematic_break, 1, 0, 0), + [800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_thematic_break, 1, 0, 0), + [802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 1, 0, 0), + [804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 1, 0, 0), + [806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_roman_parens, 2, 0, 0), + [808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_roman_parens, 2, 0, 0), + [810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_roman_period, 2, 0, 0), + [812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_roman_period, 2, 0, 0), + [814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__paragraph, 2, 0, 8), + [816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph, 2, 0, 8), + [818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_dash, 2, 0, 0), + [820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_dash, 2, 0, 0), + [822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_plus, 2, 0, 0), + [824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_plus, 2, 0, 0), + [826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_star, 2, 0, 0), + [828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_star, 2, 0, 0), + [830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_roman_paren, 2, 0, 0), + [832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_roman_paren, 2, 0, 0), + [834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_roman_parens, 2, 0, 0), + [836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_roman_parens, 2, 0, 0), + [838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_quote, 3, 0, 11), + [840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_quote, 3, 0, 11), + [842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_attribute, 3, 0, 0), + [844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_attribute, 3, 0, 0), + [846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 3, 0, 0), + [848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 3, 0, 0), + [850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_caption, 3, 0, 22), + [852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_caption, 3, 0, 22), + [854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_div_repeat1, 1, 0, 0), + [856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 1, 0, 0), + [858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heading, 4, 0, 4), + [860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heading, 4, 0, 4), + [862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_attribute, 4, 0, 20), + [864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_attribute, 4, 0, 20), [866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), [868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), [870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(210), [873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_task, 3, 0, 10), [875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_task, 3, 0, 10), - [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), - [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), + [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), [905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), - [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), - [909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), SHIFT(700), - [912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), SHIFT(431), - [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), SHIFT(478), - [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), + [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), + [909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), SHIFT(741), + [912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), SHIFT(372), + [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), SHIFT(445), + [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), [922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), - [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), - [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), - [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), - [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), - [932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(233), - [935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_quote_prefix, 1, 0, 0), - [937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_quote_prefix, 1, 0, 0), - [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(236), - [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), - [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), - [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), - [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), - [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), - [968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 2, 0, 0), SHIFT_REPEAT(312), - [973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 2, 0, 0), - [975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 2, 0, 0), SHIFT_REPEAT(840), - [978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_caption_repeat1, 2, 0, 0), - [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(290), - [987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(1129), - [990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(295), - [993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), SHIFT(304), - [996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), SHIFT(811), - [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), - [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [1013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(293), - [1016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(1117), - [1019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(296), - [1022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [1024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [1026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [1028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [1030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [1034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [1036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [1038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [1040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [1042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [1044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [1046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [1048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [1050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [1054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [1056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [1058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [1060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(289), - [1063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(1111), - [1066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(294), - [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), - [1071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline, 1, 0, 0), - [1073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(292), - [1076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(753), - [1079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), - [1081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(299), - [1084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), - [1086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(790), - [1089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), - [1091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(700), - [1094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(431), - [1097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(394), - [1100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(478), - [1103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(1127), - [1106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [1108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [1110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [1112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [1114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [1116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), - [1118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline, 1, 0, 0), - [1120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [1122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), - [1124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [1126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [1128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(307), - [1131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(840), - [1134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(308), - [1137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(811), - [1140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [1142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [1144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), - [1146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_line, 2, 0, 0), - [1148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_line, 2, 0, 0), - [1150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(319), - [1153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 1, 0, 0), - [1155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_caption_repeat1, 1, 0, 0), - [1157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 2, -1000, 0), - [1159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 2, -1000, 0), - [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [1181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 2, 0, 0), - [1183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 2, 0, 0), SHIFT_REPEAT(630), - [1186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 2, 0, 0), SHIFT_REPEAT(695), - [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [1233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_repeat1, 2, 0, 0), SHIFT_REPEAT(935), - [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_code_repeat1, 2, 0, 0), - [1238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_repeat1, 2, 0, 0), SHIFT_REPEAT(706), - [1241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 2, 0, 0), - [1243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 2, 0, 0), SHIFT_REPEAT(25), - [1246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 2, 0, 0), SHIFT_REPEAT(828), - [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [1257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), - [1259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), SHIFT_REPEAT(46), - [1262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), SHIFT_REPEAT(880), - [1265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), - [1267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), SHIFT_REPEAT(45), - [1270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), SHIFT_REPEAT(808), - [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [1279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code, 1, 0, 0), - [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [1291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_name, 1, 0, 0), - [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [1299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, 0, 12), - [1301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_item_content_repeat1, 2, 0, 0), SHIFT_REPEAT(56), - [1304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_item_content_repeat1, 2, 0, 0), - [1306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_item_content_repeat1, 2, 0, 0), SHIFT_REPEAT(710), + [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), + [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), + [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), + [932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_quote_prefix, 1, 0, 0), + [934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_quote_prefix, 1, 0, 0), + [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(233), + [941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(238), + [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(884), + [957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(1125), + [960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(885), + [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), + [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), + [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(877), + [978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(1107), + [981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(878), + [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), + [994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), + [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [1000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(880), + [1003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(1113), + [1006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(881), + [1009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 2, 0, 0), SHIFT_REPEAT(274), + [1012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 2, 0, 0), + [1014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 2, 0, 0), SHIFT_REPEAT(743), + [1017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_caption_repeat1, 2, 0, 0), + [1019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), SHIFT(275), + [1022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), SHIFT(742), + [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [1041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), + [1043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(741), + [1046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(372), + [1049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(359), + [1052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(445), + [1055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(917), + [1058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [1060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(271), + [1063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(720), + [1066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), + [1068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [1070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline, 1, 0, 0), + [1072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [1074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), + [1076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline, 1, 0, 0), + [1078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), + [1080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(278), + [1083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), + [1085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(742), + [1088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(279), + [1091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(743), + [1094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 2, -1000, 0), + [1096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 2, -1000, 0), + [1098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 1, 0, 0), + [1100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_caption_repeat1, 1, 0, 0), + [1102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(289), + [1105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_line, 2, 0, 0), + [1107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_line, 2, 0, 0), + [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [1121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 2, 0, 0), + [1123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 2, 0, 0), SHIFT_REPEAT(643), + [1126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 2, 0, 0), SHIFT_REPEAT(821), + [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [1167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), + [1169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), SHIFT_REPEAT(42), + [1172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), SHIFT_REPEAT(683), + [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [1179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code, 1, 0, 0), + [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [1187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_repeat1, 2, 0, 0), SHIFT_REPEAT(933), + [1190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_code_repeat1, 2, 0, 0), + [1192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_repeat1, 2, 0, 0), SHIFT_REPEAT(845), + [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [1209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), + [1211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), SHIFT_REPEAT(25), + [1214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), SHIFT_REPEAT(748), + [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [1225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 2, 0, 0), + [1227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 2, 0, 0), SHIFT_REPEAT(47), + [1230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 2, 0, 0), SHIFT_REPEAT(784), + [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [1239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(687), + [1242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(52), + [1245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), + [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [1261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_name, 1, 0, 0), + [1263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 1, 0, 0), + [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [1279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, 0, 12), + [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [1283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 1, 0, 6), + [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [1289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1, 0, 0), + [1291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_no_newline, 2, 0, 0), + [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [1295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_no_newline, 3, 0, 18), + [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [1299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1, 0, 0), + [1301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value, 3, 0, 19), + [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), [1309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 3, 0, 0), - [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [1319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 1, 0, 0), - [1321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_no_newline, 2, 0, 0), - [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [1383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 1, 0, 6), - [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [1395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1, 0, 0), - [1397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(720), - [1400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(52), - [1403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), - [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [1409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(55), - [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 2, 0, 0), - [1414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(710), - [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [1419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value, 3, 0, 19), - [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [1423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_no_newline, 3, 0, 18), - [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [1431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1, 0, 0), - [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_quote_content, 1, 0, 0), - [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [1443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(476), - [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_quote_content, 2, 0, 0), - [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 2, 0, 0), - [1450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(210), - [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), - [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), - [1465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), - [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [1469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frontmatter_content, 1, 0, 0), - [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [1491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_no_newline_repeat1, 2, 0, 0), - [1493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__comment_no_newline_repeat1, 2, 0, 0), SHIFT_REPEAT(686), - [1496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), - [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [1502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [1522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [1528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [1530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_frontmatter_content_repeat1, 2, 0, 0), SHIFT_REPEAT(937), - [1533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_frontmatter_content_repeat1, 2, 0, 0), - [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [1601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_definition_repeat1, 2, 0, 0), - [1603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(237), - [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [1608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_period_repeat1, 2, 0, 0), - [1610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_decimal_period_repeat1, 2, 0, 0), SHIFT_REPEAT(22), - [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [1615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_paren_repeat1, 2, 0, 0), - [1617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_decimal_paren_repeat1, 2, 0, 0), SHIFT_REPEAT(32), - [1620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [1622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_parens_repeat1, 2, 0, 0), - [1624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_decimal_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(38), - [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [1661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_period_repeat1, 2, 0, 0), - [1663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_period_repeat1, 2, 0, 0), SHIFT_REPEAT(24), - [1666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [1668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_paren_repeat1, 2, 0, 0), - [1670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_paren_repeat1, 2, 0, 0), SHIFT_REPEAT(33), - [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [1675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_parens_repeat1, 2, 0, 0), - [1677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(39), - [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [1682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_period_repeat1, 2, 0, 0), - [1684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_period_repeat1, 2, 0, 0), SHIFT_REPEAT(49), - [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [1689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_paren_repeat1, 2, 0, 0), - [1691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_paren_repeat1, 2, 0, 0), SHIFT_REPEAT(35), - [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_parens_repeat1, 2, 0, 0), - [1698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(40), - [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [1703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_period_repeat1, 2, 0, 0), - [1705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_period_repeat1, 2, 0, 0), SHIFT_REPEAT(26), - [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_paren_repeat1, 2, 0, 0), - [1712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_paren_repeat1, 2, 0, 0), SHIFT_REPEAT(36), - [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [1717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_parens_repeat1, 2, 0, 0), - [1719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(41), - [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [1724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [1728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_period_repeat1, 2, 0, 0), - [1730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_period_repeat1, 2, 0, 0), SHIFT_REPEAT(31), - [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [1735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_paren_repeat1, 2, 0, 0), - [1737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_paren_repeat1, 2, 0, 0), SHIFT_REPEAT(37), - [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [1750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_parens_repeat1, 2, 0, 0), - [1752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(43), - [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [1763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(880), - [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dash, 3, 0, 15), - [1768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 3, 0, 15), - [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 3, 0, 15), - [1772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_task, 3, 0, 15), - [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_task, 2, 0, 4), - [1776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_item_content, 4, 0, 0), - [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [1780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__paragraph_inline_content_repeat1, 2, 0, 0), - [1784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__paragraph_inline_content_repeat1, 2, 0, 0), SHIFT_REPEAT(247), - [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [1791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__heading_content_repeat1, 2, 0, 0), - [1793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__heading_content_repeat1, 2, 0, 0), SHIFT_REPEAT(286), - [1796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_item_content, 3, 0, 0), - [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [1800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_item_content_repeat1, 3, 0, 0), - [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 3, 0, 0), - [1804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(808), - [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [1811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_item_content_repeat1, 4, 0, 0), - [1813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heading_content, 1, 0, 0), - [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [1817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heading_content, 2, 0, 0), - [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [1829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 3, 0, 0), - [1831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 4, 0, 0), - [1833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(695), - [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [1840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(706), - [1843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(710), - [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 1, 0, 2), - [1848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(720), - [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [1853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(828), - [1856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 1, 0, 2), - [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dash, 2, 0, 4), - [1860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 2, 0, 4), - [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 2, 0, 4), - [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [1866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_no_newline_repeat1, 1, 0, 0), - [1870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 1, 0, 2), - [1872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line, 2, 0, 0), - [1876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 1, 0, 2), - [1878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [1880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_paren_repeat1, 1, 0, 2), - [1884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_parens_repeat1, 1, 0, 2), - [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [1896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1, 0, 0), SHIFT(317), - [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [1905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_period_repeat1, 1, 0, 2), - [1907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_decimal_period, 2, 0, 4), - [1909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_alpha_period, 2, 0, 4), - [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_alpha_period, 2, 0, 4), - [1913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_roman_period, 2, 0, 4), - [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_roman_period, 2, 0, 4), - [1917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_decimal_paren, 2, 0, 4), - [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_alpha_paren, 2, 0, 4), - [1921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_paren_repeat1, 1, 0, 2), - [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_parens_repeat1, 1, 0, 2), - [1925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_inline_content, 4, 0, 0), - [1927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__paragraph_inline_content_repeat1, 3, 0, 0), - [1929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_period_repeat1, 1, 0, 2), - [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_paren_repeat1, 1, 0, 2), - [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [1937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_parens_repeat1, 1, 0, 2), - [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [1941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_period_repeat1, 1, 0, 2), - [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [1945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_paren_repeat1, 1, 0, 2), - [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [1949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_parens_repeat1, 1, 0, 2), - [1951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_period_repeat1, 1, 0, 2), - [1953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_definition, 5, 0, 26), - [1955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_inline_content, 3, 0, 0), - [1957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_alpha_paren, 2, 0, 4), - [1959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_roman_paren, 2, 0, 4), - [1961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_roman_paren, 2, 0, 4), - [1963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_decimal_parens, 2, 0, 4), - [1965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_alpha_parens, 2, 0, 4), - [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [1969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_paren_repeat1, 1, 0, 2), - [1971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_alpha_parens, 2, 0, 4), - [1973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_parens_repeat1, 1, 0, 2), - [1975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_inline_content, 2, 0, 0), - [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [1985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_content, 1, 0, 0), - [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [1989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_roman_parens, 2, 0, 4), - [1991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_roman_parens, 2, 0, 4), - [1993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_definition_repeat1, 1, 0, 3), - [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [1999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_definition, 4, 0, 17), - [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [2009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__div_marker_begin, 1, 0, 0), - [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [2027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_header_repeat1, 2, 0, 0), SHIFT_REPEAT(298), - [2030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_period_repeat1, 1, 0, 2), - [2032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [2042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_separator_repeat1, 2, 0, 0), SHIFT_REPEAT(976), - [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [2119] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [2121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_label, 1, 0, 0), - [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [1369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_item_content_repeat1, 2, 0, 0), SHIFT_REPEAT(55), + [1372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_item_content_repeat1, 2, 0, 0), + [1374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_item_content_repeat1, 2, 0, 0), SHIFT_REPEAT(861), + [1377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(56), + [1380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 2, 0, 0), + [1382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(861), + [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [1387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 2, 0, 0), + [1389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(210), + [1392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(457), + [1395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_quote_content, 2, 0, 0), + [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [1399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_quote_content, 1, 0, 0), + [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), + [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [1457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_parens_repeat1, 2, 0, 0), + [1459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(37), + [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [1468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_period_repeat1, 2, 0, 0), + [1470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_period_repeat1, 2, 0, 0), SHIFT_REPEAT(48), + [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [1475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), + [1477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_definition_repeat1, 2, 0, 0), + [1479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(239), + [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [1502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [1514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frontmatter_content, 1, 0, 0), + [1516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_period_repeat1, 2, 0, 0), + [1518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_period_repeat1, 2, 0, 0), SHIFT_REPEAT(22), + [1521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_parens_repeat1, 2, 0, 0), + [1523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_decimal_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(36), + [1526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_no_newline_repeat1, 2, 0, 0), + [1528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__comment_no_newline_repeat1, 2, 0, 0), SHIFT_REPEAT(653), + [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [1543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_paren_repeat1, 2, 0, 0), + [1545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_paren_repeat1, 2, 0, 0), SHIFT_REPEAT(32), + [1548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [1550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [1552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [1556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [1558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [1562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [1574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [1576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_paren_repeat1, 2, 0, 0), + [1578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_paren_repeat1, 2, 0, 0), SHIFT_REPEAT(31), + [1581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_period_repeat1, 2, 0, 0), + [1583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_decimal_period_repeat1, 2, 0, 0), SHIFT_REPEAT(44), + [1586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), + [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [1592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_paren_repeat1, 2, 0, 0), + [1594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_decimal_paren_repeat1, 2, 0, 0), SHIFT_REPEAT(26), + [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [1621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_parens_repeat1, 2, 0, 0), + [1623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(38), + [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [1632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_period_repeat1, 2, 0, 0), + [1634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_period_repeat1, 2, 0, 0), SHIFT_REPEAT(24), + [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [1639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_frontmatter_content_repeat1, 2, 0, 0), SHIFT_REPEAT(1111), + [1642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_frontmatter_content_repeat1, 2, 0, 0), + [1644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_paren_repeat1, 2, 0, 0), + [1646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_paren_repeat1, 2, 0, 0), SHIFT_REPEAT(33), + [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [1657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_parens_repeat1, 2, 0, 0), + [1659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(39), + [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [1666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_period_repeat1, 2, 0, 0), + [1668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_period_repeat1, 2, 0, 0), SHIFT_REPEAT(49), + [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [1679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_paren_repeat1, 2, 0, 0), + [1681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_paren_repeat1, 2, 0, 0), SHIFT_REPEAT(35), + [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [1686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [1690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_parens_repeat1, 2, 0, 0), + [1694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(40), + [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [1707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 3, 0, 15), + [1709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 3, 0, 15), + [1711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_task, 3, 0, 15), + [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [1717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__paragraph_inline_content_repeat1, 2, 0, 0), + [1719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__paragraph_inline_content_repeat1, 2, 0, 0), SHIFT_REPEAT(251), + [1722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 1, 0, 2), + [1724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 1, 0, 2), + [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [1728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 1, 0, 2), + [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__heading_content_repeat1, 2, 0, 0), + [1732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__heading_content_repeat1, 2, 0, 0), SHIFT_REPEAT(272), + [1735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 1, 0, 2), + [1737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_item_content, 3, 0, 0), + [1739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(683), + [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [1748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heading_content, 1, 0, 0), + [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [1752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(748), + [1755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_item_content, 4, 0, 0), + [1757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dash, 2, 0, 4), + [1759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 2, 0, 4), + [1761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 2, 0, 4), + [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [1769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(821), + [1772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(845), + [1775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(861), + [1778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(687), + [1781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_item_content_repeat1, 3, 0, 0), + [1783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 3, 0, 0), + [1785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_item_content_repeat1, 4, 0, 0), + [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [1795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heading_content, 2, 0, 0), + [1797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 3, 0, 0), + [1799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 4, 0, 0), + [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [1819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line, 2, 0, 0), + [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [1825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_no_newline_repeat1, 1, 0, 0), + [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [1841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(784), + [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [1850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_task, 2, 0, 4), + [1852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [1854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [1858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [1860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dash, 3, 0, 15), + [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [1866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [1868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [1872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_alpha_period, 2, 0, 4), + [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_paren_repeat1, 1, 0, 2), + [1876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_parens_repeat1, 1, 0, 2), + [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_period_repeat1, 1, 0, 2), + [1880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_paren_repeat1, 1, 0, 2), + [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_alpha_period, 2, 0, 4), + [1884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_roman_period, 2, 0, 4), + [1888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_roman_period, 2, 0, 4), + [1890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_decimal_paren, 2, 0, 4), + [1892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_parens_repeat1, 1, 0, 2), + [1894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_period_repeat1, 1, 0, 2), + [1896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_alpha_paren, 2, 0, 4), + [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_alpha_paren, 2, 0, 4), + [1900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_roman_paren, 2, 0, 4), + [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_roman_paren, 2, 0, 4), + [1904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_decimal_parens, 2, 0, 4), + [1906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_alpha_parens, 2, 0, 4), + [1908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_alpha_parens, 2, 0, 4), + [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [1912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_roman_parens, 2, 0, 4), + [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_roman_parens, 2, 0, 4), + [1920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_parens_repeat1, 1, 0, 2), + [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_paren_repeat1, 1, 0, 2), + [1924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [1928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_parens_repeat1, 1, 0, 2), + [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [1934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [1936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_period_repeat1, 1, 0, 2), + [1940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [1944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_inline_content, 4, 0, 0), + [1948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__paragraph_inline_content_repeat1, 3, 0, 0), + [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [1958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [1964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_definition, 5, 0, 26), + [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_inline_content, 2, 0, 0), + [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [1986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_definition_repeat1, 1, 0, 3), + [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [1998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_inline_content, 3, 0, 0), + [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [2002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_period_repeat1, 1, 0, 2), + [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [2006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_content, 1, 0, 0), + [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [2016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [2018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_definition, 4, 0, 17), + [2020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_paren_repeat1, 1, 0, 2), + [2022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [2024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_parens_repeat1, 1, 0, 2), + [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [2028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_header_repeat1, 2, 0, 0), SHIFT_REPEAT(765), + [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [2033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1, 0, 0), SHIFT(280), + [2036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_period_repeat1, 1, 0, 2), + [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [2040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_paren_repeat1, 1, 0, 2), + [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [2056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_decimal_period, 2, 0, 4), + [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [2068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__div_marker_begin, 1, 0, 0), + [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [2100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_separator_repeat1, 2, 0, 0), SHIFT_REPEAT(899), + [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [2123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_header_repeat1, 2, 0, 0), + [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [2139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key, 1, 0, 0), + [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [2197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__div_marker_begin, 3, 0, 9), - [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [2219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_header_repeat1, 2, 0, 0), - [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [2227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_label, 1, 0, 5), - [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [2275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_separator_repeat1, 2, 0, 0), - [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [2369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block_info, 2, 0, 16), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [2397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_checked, 3, 0, 0), - [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [2403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unchecked, 3, 0, 0), - [2405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_cell, 1, 0, 5), - [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [2473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key, 1, 0, 0), - [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [2163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_cell, 1, 0, 0), + [2165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_checked, 3, 0, 0), + [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [2171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unchecked, 3, 0, 0), + [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [2175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_separator_repeat1, 2, 0, 0), + [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [2185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block_info, 2, 0, 16), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [2255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__div_marker_begin, 3, 0, 9), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [2261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_label, 1, 0, 5), + [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [2275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_label, 1, 0, 0), + [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [2289] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), }; enum ts_external_scanner_symbol_identifiers { @@ -29816,10 +28730,11 @@ enum ts_external_scanner_symbol_identifiers { ts_external_token__table_header_begin = 43, ts_external_token__table_separator_begin = 44, ts_external_token__table_row_begin = 45, - ts_external_token__table_caption_begin = 46, - ts_external_token__table_caption_end = 47, - ts_external_token__in_fallback = 48, - ts_external_token__error = 49, + ts_external_token__table_cell = 46, + ts_external_token__table_caption_begin = 47, + ts_external_token__table_caption_end = 48, + ts_external_token__in_fallback = 49, + ts_external_token__error = 50, }; static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { @@ -29869,13 +28784,14 @@ static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { [ts_external_token__table_header_begin] = sym__table_header_begin, [ts_external_token__table_separator_begin] = sym__table_separator_begin, [ts_external_token__table_row_begin] = sym__table_row_begin, + [ts_external_token__table_cell] = sym__table_cell, [ts_external_token__table_caption_begin] = sym__table_caption_begin, [ts_external_token__table_caption_end] = sym__table_caption_end, [ts_external_token__in_fallback] = sym__in_fallback, [ts_external_token__error] = sym__error, }; -static const bool ts_external_scanner_states[83][EXTERNAL_TOKEN_COUNT] = { +static const bool ts_external_scanner_states[85][EXTERNAL_TOKEN_COUNT] = { [1] = { [ts_external_token__ignored] = true, [ts_external_token__block_close] = true, @@ -29923,6 +28839,7 @@ static const bool ts_external_scanner_states[83][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__table_header_begin] = true, [ts_external_token__table_separator_begin] = true, [ts_external_token__table_row_begin] = true, + [ts_external_token__table_cell] = true, [ts_external_token__table_caption_begin] = true, [ts_external_token__table_caption_end] = true, [ts_external_token__in_fallback] = true, @@ -30164,10 +29081,10 @@ static const bool ts_external_scanner_states[83][EXTERNAL_TOKEN_COUNT] = { }, [9] = { [ts_external_token__block_close] = true, - [ts_external_token__eof_or_newline] = true, [ts_external_token__newline] = true, [ts_external_token__heading_begin] = true, [ts_external_token__div_begin] = true, + [ts_external_token__div_end] = true, [ts_external_token__code_block_begin] = true, [ts_external_token_list_marker_dash] = true, [ts_external_token_list_marker_star] = true, @@ -30202,8 +29119,8 @@ static const bool ts_external_scanner_states[83][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__newline] = true, [ts_external_token__heading_begin] = true, [ts_external_token__div_begin] = true, - [ts_external_token__div_end] = true, [ts_external_token__code_block_begin] = true, + [ts_external_token__code_block_end] = true, [ts_external_token_list_marker_dash] = true, [ts_external_token_list_marker_star] = true, [ts_external_token_list_marker_plus] = true, @@ -30234,11 +29151,11 @@ static const bool ts_external_scanner_states[83][EXTERNAL_TOKEN_COUNT] = { }, [11] = { [ts_external_token__block_close] = true, + [ts_external_token__eof_or_newline] = true, [ts_external_token__newline] = true, [ts_external_token__heading_begin] = true, [ts_external_token__div_begin] = true, [ts_external_token__code_block_begin] = true, - [ts_external_token__code_block_end] = true, [ts_external_token_list_marker_dash] = true, [ts_external_token_list_marker_star] = true, [ts_external_token_list_marker_plus] = true, @@ -30414,9 +29331,6 @@ static const bool ts_external_scanner_states[83][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__table_row_begin] = true, }, [20] = { - [ts_external_token__block_quote_continuation] = true, - }, - [21] = { [ts_external_token__newline] = true, [ts_external_token__list_item_continuation] = true, [ts_external_token__list_item_end] = true, @@ -30426,40 +29340,45 @@ static const bool ts_external_scanner_states[83][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__table_row_begin] = true, [ts_external_token__table_caption_begin] = true, }, - [22] = { - [ts_external_token__table_caption_end] = true, - }, - [23] = { + [21] = { + [ts_external_token__block_close] = true, [ts_external_token__newline] = true, - [ts_external_token__indented_content_spacer] = true, [ts_external_token__block_quote_continuation] = true, [ts_external_token__table_header_begin] = true, [ts_external_token__table_separator_begin] = true, [ts_external_token__table_row_begin] = true, [ts_external_token__table_caption_begin] = true, }, - [24] = { - [ts_external_token__block_close] = true, + [22] = { + [ts_external_token__block_quote_continuation] = true, + }, + [23] = { [ts_external_token__newline] = true, + [ts_external_token__indented_content_spacer] = true, [ts_external_token__block_quote_continuation] = true, [ts_external_token__table_header_begin] = true, [ts_external_token__table_separator_begin] = true, [ts_external_token__table_row_begin] = true, [ts_external_token__table_caption_begin] = true, }, + [24] = { + [ts_external_token__table_caption_end] = true, + }, [25] = { - [ts_external_token__newline] = true, + [ts_external_token__eof_or_newline] = true, }, [26] = { - [ts_external_token__eof_or_newline] = true, + [ts_external_token__block_close] = true, + [ts_external_token__list_marker_task_begin] = true, + [ts_external_token__block_quote_continuation] = true, }, [27] = { [ts_external_token__block_close] = true, - [ts_external_token__list_marker_task_begin] = true, [ts_external_token__block_quote_continuation] = true, }, [28] = { [ts_external_token__block_close] = true, + [ts_external_token_list_marker_star] = true, [ts_external_token__block_quote_continuation] = true, }, [29] = { @@ -30473,21 +29392,22 @@ static const bool ts_external_scanner_states[83][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__block_quote_continuation] = true, }, [31] = { - [ts_external_token__block_close] = true, - [ts_external_token_list_marker_star] = true, - [ts_external_token__block_quote_continuation] = true, - }, - [32] = { [ts_external_token__list_item_continuation] = true, [ts_external_token__list_item_end] = true, [ts_external_token__block_quote_continuation] = true, }, - [33] = { + [32] = { [ts_external_token__block_quote_continuation] = true, [ts_external_token__footnote_continuation] = true, [ts_external_token__footnote_end] = true, }, + [33] = { + [ts_external_token__table_header_begin] = true, + [ts_external_token__table_separator_begin] = true, + [ts_external_token__table_row_begin] = true, + }, [34] = { + [ts_external_token__block_quote_continuation] = true, [ts_external_token__table_header_begin] = true, [ts_external_token__table_separator_begin] = true, [ts_external_token__table_row_begin] = true, @@ -30499,195 +29419,199 @@ static const bool ts_external_scanner_states[83][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__table_caption_begin] = true, }, [36] = { - [ts_external_token__block_quote_continuation] = true, - [ts_external_token__table_header_begin] = true, - [ts_external_token__table_separator_begin] = true, - [ts_external_token__table_row_begin] = true, - }, - [37] = { - [ts_external_token__code_block_end] = true, + [ts_external_token__eof_or_newline] = true, [ts_external_token__list_item_continuation] = true, [ts_external_token__list_item_end] = true, [ts_external_token__block_quote_continuation] = true, }, + [37] = { + [ts_external_token__block_close] = true, + [ts_external_token_list_marker_definition] = true, + }, [38] = { [ts_external_token__block_close] = true, - [ts_external_token__block_quote_continuation] = true, - [ts_external_token__table_caption_begin] = true, + [ts_external_token_list_marker_decimal_period] = true, }, [39] = { - [ts_external_token__eof_or_newline] = true, - [ts_external_token__list_item_continuation] = true, - [ts_external_token__list_item_end] = true, - [ts_external_token__block_quote_continuation] = true, + [ts_external_token__block_close] = true, + [ts_external_token_list_marker_decimal_paren] = true, }, [40] = { - [ts_external_token_frontmatter_marker] = true, + [ts_external_token__block_close] = true, + [ts_external_token_list_marker_decimal_parens] = true, }, [41] = { - [ts_external_token__div_end] = true, - [ts_external_token__list_item_continuation] = true, - [ts_external_token__list_item_end] = true, - [ts_external_token__block_quote_continuation] = true, + [ts_external_token__block_close] = true, + [ts_external_token_list_marker_lower_alpha_period] = true, }, [42] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_definition] = true, + [ts_external_token_list_marker_lower_alpha_paren] = true, }, [43] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_decimal_period] = true, + [ts_external_token_list_marker_lower_alpha_parens] = true, }, [44] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_decimal_paren] = true, + [ts_external_token_list_marker_upper_alpha_period] = true, }, [45] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_decimal_parens] = true, + [ts_external_token_list_marker_upper_alpha_paren] = true, }, [46] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_lower_alpha_period] = true, + [ts_external_token_list_marker_upper_alpha_parens] = true, }, [47] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_lower_alpha_paren] = true, + [ts_external_token_list_marker_lower_roman_period] = true, }, [48] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_lower_alpha_parens] = true, + [ts_external_token_list_marker_lower_roman_paren] = true, }, [49] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_upper_alpha_period] = true, + [ts_external_token_list_marker_lower_roman_parens] = true, }, [50] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_upper_alpha_paren] = true, + [ts_external_token_list_marker_upper_roman_period] = true, }, [51] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_upper_alpha_parens] = true, + [ts_external_token_list_marker_upper_roman_paren] = true, }, [52] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_lower_roman_period] = true, + [ts_external_token_list_marker_upper_roman_parens] = true, }, [53] = { - [ts_external_token__block_close] = true, - [ts_external_token_list_marker_lower_roman_paren] = true, + [ts_external_token__div_end] = true, + [ts_external_token__list_item_continuation] = true, + [ts_external_token__list_item_end] = true, + [ts_external_token__block_quote_continuation] = true, }, [54] = { - [ts_external_token__block_close] = true, - [ts_external_token_list_marker_lower_roman_parens] = true, + [ts_external_token__code_block_end] = true, + [ts_external_token__list_item_continuation] = true, + [ts_external_token__list_item_end] = true, + [ts_external_token__block_quote_continuation] = true, }, [55] = { - [ts_external_token__block_close] = true, - [ts_external_token_list_marker_upper_roman_period] = true, + [ts_external_token_frontmatter_marker] = true, }, [56] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_upper_roman_paren] = true, + [ts_external_token__block_quote_continuation] = true, + [ts_external_token__table_caption_begin] = true, }, [57] = { - [ts_external_token__block_close] = true, - [ts_external_token_list_marker_upper_roman_parens] = true, + [ts_external_token__newline] = true, }, [58] = { - [ts_external_token__indented_content_spacer] = true, - [ts_external_token__table_caption_begin] = true, - }, - [59] = { [ts_external_token_list_marker_plus] = true, [ts_external_token__block_quote_continuation] = true, }, - [60] = { + [59] = { [ts_external_token__block_close] = true, - [ts_external_token__div_end] = true, - [ts_external_token__block_quote_continuation] = true, + [ts_external_token__heading_continuation] = true, + }, + [60] = { + [ts_external_token__newline] = true, + [ts_external_token__table_cell] = true, }, [61] = { - [ts_external_token__block_close] = true, - [ts_external_token__code_block_end] = true, + [ts_external_token_list_marker_star] = true, [ts_external_token__block_quote_continuation] = true, }, [62] = { [ts_external_token__block_close] = true, - [ts_external_token__heading_continuation] = true, + [ts_external_token__eof_or_newline] = true, + [ts_external_token__block_quote_continuation] = true, }, [63] = { - [ts_external_token_list_marker_star] = true, + [ts_external_token__list_marker_task_begin] = true, [ts_external_token__block_quote_continuation] = true, }, [64] = { - [ts_external_token_list_marker_dash] = true, + [ts_external_token__list_item_continuation] = true, [ts_external_token__block_quote_continuation] = true, }, [65] = { - [ts_external_token__list_marker_task_begin] = true, [ts_external_token__block_quote_continuation] = true, + [ts_external_token__footnote_continuation] = true, }, [66] = { - [ts_external_token__list_item_continuation] = true, - [ts_external_token__block_quote_continuation] = true, + [ts_external_token__indented_content_spacer] = true, + [ts_external_token__table_caption_begin] = true, }, [67] = { + [ts_external_token_list_marker_dash] = true, [ts_external_token__block_quote_continuation] = true, - [ts_external_token__footnote_continuation] = true, }, [68] = { [ts_external_token__block_close] = true, - [ts_external_token__eof_or_newline] = true, + [ts_external_token__div_end] = true, [ts_external_token__block_quote_continuation] = true, }, [69] = { - [ts_external_token__footnote_mark_begin] = true, - [ts_external_token__in_fallback] = true, + [ts_external_token__block_close] = true, + [ts_external_token__code_block_end] = true, + [ts_external_token__block_quote_continuation] = true, }, [70] = { [ts_external_token__eof_or_newline] = true, [ts_external_token__close_paragraph] = true, }, [71] = { - [ts_external_token__div_end] = true, - [ts_external_token__indented_content_spacer] = true, + [ts_external_token__list_marker_task_begin] = true, }, [72] = { - [ts_external_token__list_marker_task_begin] = true, + [ts_external_token__footnote_mark_begin] = true, + [ts_external_token__in_fallback] = true, }, [73] = { [ts_external_token__eof_or_newline] = true, [ts_external_token__indented_content_spacer] = true, }, [74] = { - [ts_external_token__code_block_end] = true, + [ts_external_token__div_end] = true, [ts_external_token__indented_content_spacer] = true, }, [75] = { + [ts_external_token__code_block_end] = true, [ts_external_token__indented_content_spacer] = true, }, [76] = { - [ts_external_token_list_marker_star] = true, + [ts_external_token__table_cell] = true, }, [77] = { - [ts_external_token__block_close] = true, + [ts_external_token__indented_content_spacer] = true, }, [78] = { - [ts_external_token__footnote_continuation] = true, + [ts_external_token__block_close] = true, }, [79] = { - [ts_external_token__footnote_mark_begin] = true, + [ts_external_token_list_marker_dash] = true, }, [80] = { - [ts_external_token_list_marker_dash] = true, + [ts_external_token__footnote_continuation] = true, }, [81] = { - [ts_external_token_list_marker_plus] = true, + [ts_external_token_list_marker_star] = true, }, [82] = { [ts_external_token__list_item_continuation] = true, }, + [83] = { + [ts_external_token__footnote_mark_begin] = true, + }, + [84] = { + [ts_external_token_list_marker_plus] = true, + }, }; #ifdef __cplusplus diff --git a/tree-sitter-djot/src/scanner.c b/tree-sitter-djot/src/scanner.c index c0f5be8..d71ef5a 100644 --- a/tree-sitter-djot/src/scanner.c +++ b/tree-sitter-djot/src/scanner.c @@ -61,6 +61,7 @@ typedef enum { TABLE_HEADER_BEGIN, TABLE_SEPARATOR_BEGIN, TABLE_ROW_BEGIN, + TABLE_CELL, TABLE_CAPTION_BEGIN, TABLE_CAPTION_END, @@ -1591,6 +1592,16 @@ static bool parse_table_begin(Scanner *s, TSLexer *lexer, return true; } +static bool parse_table_cell(Scanner *s, TSLexer *lexer) { + bool separator; + if (!scan_table_cell(s, lexer, &separator)) { + return false; + } + lexer->mark_end(lexer); + lexer->result_symbol = TABLE_CELL; + return true; +} + static bool parse_table_caption_begin(Scanner *s, TSLexer *lexer) { if (lexer->lookahead != '^') { return false; @@ -1922,6 +1933,9 @@ bool tree_sitter_djot_external_scanner_scan(void *payload, TSLexer *lexer, if (parse_table_begin(s, lexer, valid_symbols)) { return true; } + if (valid_symbols[TABLE_CELL] && parse_table_cell(s, lexer)) { + return true; + } // May scan a complete list marker, which we can't do before checking if // we should output the list marker itself. diff --git a/tree-sitter-djot/test/corpus/syntax.txt b/tree-sitter-djot/test/corpus/syntax.txt index b6001e6..4ab8900 100644 --- a/tree-sitter-djot/test/corpus/syntax.txt +++ b/tree-sitter-djot/test/corpus/syntax.txt @@ -3049,6 +3049,30 @@ Next paragraph (content))) (paragraph (inline))) +=============================================================================== +Table: verbatim cell +=============================================================================== +| `|` | + +------------------------------------------------------------------------------- + +(document + (table + (table_row + (table_cell (inline))))) + +=============================================================================== +Table: backlashed pipe +=============================================================================== +| \| | + +------------------------------------------------------------------------------- + +(document + (table + (table_row + (table_cell (inline))))) + =============================================================================== Footnote: simple =============================================================================== From 385e7e044ae4bd44b3bee4c5a1a31306593211c4 Mon Sep 17 00:00:00 2001 From: Jonas Hietala Date: Thu, 23 Jan 2025 14:59:04 +0100 Subject: [PATCH 43/46] perf: Scan block attributes via external scanner for ~4x speedup --- tree-sitter-djot/grammar.js | 16 +- tree-sitter-djot/src/grammar.json | 53 +- tree-sitter-djot/src/parser.c | 35991 +++++++++++----------- tree-sitter-djot/src/scanner.c | 154 +- tree-sitter-djot/test/corpus/syntax.txt | 10 + 5 files changed, 18258 insertions(+), 17966 deletions(-) diff --git a/tree-sitter-djot/grammar.js b/tree-sitter-djot/grammar.js index 2edd639..1a0acb8 100644 --- a/tree-sitter-djot/grammar.js +++ b/tree-sitter-djot/grammar.js @@ -5,7 +5,6 @@ module.exports = grammar({ conflicts: ($) => [ [$.link_reference_definition, $._symbol_fallback], - [$.block_attribute, $._symbol_fallback], [$.footnote_marker_begin, $._symbol_fallback], ], @@ -358,7 +357,7 @@ module.exports = grammar({ table_header: ($) => prec.right( seq( - $._table_header_begin, + alias($._table_header_begin, "|"), $.table_cell, repeat(seq("|", $.table_cell)), "|", @@ -368,7 +367,7 @@ module.exports = grammar({ table_separator: ($) => prec.right( seq( - $._table_separator_begin, + alias($._table_separator_begin, "|"), $.table_cell_alignment, repeat(seq("|", $.table_cell_alignment)), "|", @@ -378,7 +377,7 @@ module.exports = grammar({ table_row: ($) => prec.right( seq( - $._table_row_begin, + alias($._table_row_begin, "|"), $.table_cell, repeat(seq("|", $.table_cell)), "|", @@ -509,7 +508,7 @@ module.exports = grammar({ block_attribute: ($) => seq( - "{", + alias($._block_attribute_begin, "{"), field( "args", alias( @@ -518,7 +517,7 @@ module.exports = grammar({ $.class, $.identifier, $.key_value, - alias($._comment_no_newline, $.comment), + $.comment, $._whitespace1, ), ), @@ -598,7 +597,7 @@ module.exports = grammar({ reference_label: ($) => $._id, _id: (_) => /[\w_-]+/, - _comment_no_newline: ($) => + comment: ($) => seq( "%", field( @@ -728,6 +727,9 @@ module.exports = grammar({ // Table captions have significant whitespace but contain only inline. $._table_caption_begin, $._table_caption_end, + // The `{` that begins a block attribute (scans the entire attribute to avoid + // excessive branching). + $._block_attribute_begin, $._in_fallback, diff --git a/tree-sitter-djot/src/grammar.json b/tree-sitter-djot/src/grammar.json index 1225639..1183e7e 100644 --- a/tree-sitter-djot/src/grammar.json +++ b/tree-sitter-djot/src/grammar.json @@ -1547,8 +1547,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "_table_header_begin" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_table_header_begin" + }, + "named": false, + "value": "|" }, { "type": "SYMBOL", @@ -1588,8 +1593,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "_table_separator_begin" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_table_separator_begin" + }, + "named": false, + "value": "|" }, { "type": "SYMBOL", @@ -1629,8 +1639,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "_table_row_begin" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_table_row_begin" + }, + "named": false, + "value": "|" }, { "type": "SYMBOL", @@ -2351,7 +2366,12 @@ "type": "SEQ", "members": [ { - "type": "STRING", + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_block_attribute_begin" + }, + "named": false, "value": "{" }, { @@ -2377,13 +2397,8 @@ "name": "key_value" }, { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_comment_no_newline" - }, - "named": true, - "value": "comment" + "type": "SYMBOL", + "name": "comment" }, { "type": "SYMBOL", @@ -2738,7 +2753,7 @@ "type": "PATTERN", "value": "[\\w_-]+" }, - "_comment_no_newline": { + "comment": { "type": "SEQ", "members": [ { @@ -2788,10 +2803,6 @@ "link_reference_definition", "_symbol_fallback" ], - [ - "block_attribute", - "_symbol_fallback" - ], [ "footnote_marker_begin", "_symbol_fallback" @@ -2995,6 +3006,10 @@ "type": "SYMBOL", "name": "_table_caption_end" }, + { + "type": "SYMBOL", + "name": "_block_attribute_begin" + }, { "type": "SYMBOL", "name": "_in_fallback" diff --git a/tree-sitter-djot/src/parser.c b/tree-sitter-djot/src/parser.c index 53c5eab..f5e1408 100644 --- a/tree-sitter-djot/src/parser.c +++ b/tree-sitter-djot/src/parser.c @@ -5,15 +5,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 1154 +#define STATE_COUNT 1153 #define LARGE_STATE_COUNT 66 -#define SYMBOL_COUNT 212 +#define SYMBOL_COUNT 213 #define ALIAS_COUNT 8 -#define TOKEN_COUNT 81 -#define EXTERNAL_TOKEN_COUNT 51 +#define TOKEN_COUNT 82 +#define EXTERNAL_TOKEN_COUNT 52 #define FIELD_COUNT 15 #define MAX_ALIAS_SEQUENCE_LENGTH 8 -#define PRODUCTION_ID_COUNT 35 +#define PRODUCTION_ID_COUNT 34 enum ts_symbol_identifiers { anon_sym_LBRACK = 1, @@ -31,20 +31,20 @@ enum ts_symbol_identifiers { aux_sym__line_token1 = 13, anon_sym_COLON = 14, sym_link_destination = 15, - anon_sym_LBRACE = 16, - anon_sym_RBRACE = 17, - anon_sym_DOT = 18, - aux_sym_identifier_token1 = 19, - anon_sym_DQUOTE = 20, - aux_sym_value_token1 = 21, - aux_sym_value_token2 = 22, - sym__whitespace = 23, - sym__whitespace1 = 24, - aux_sym__inline_token1 = 25, + anon_sym_RBRACE = 16, + anon_sym_DOT = 17, + aux_sym_identifier_token1 = 18, + anon_sym_DQUOTE = 19, + aux_sym_value_token1 = 20, + aux_sym_value_token2 = 21, + sym__whitespace = 22, + sym__whitespace1 = 23, + aux_sym__inline_token1 = 24, + anon_sym_LBRACE = 25, anon_sym_PERCENT = 26, sym_backslash_escape = 27, sym__id = 28, - aux_sym__comment_no_newline_token1 = 29, + aux_sym_comment_token1 = 29, sym__ignored = 30, sym__block_close = 31, sym__eof_or_newline = 32, @@ -94,147 +94,148 @@ enum ts_symbol_identifiers { sym__table_cell = 76, sym__table_caption_begin = 77, sym__table_caption_end = 78, - sym__in_fallback = 79, - sym__error = 80, - sym_document = 81, - sym_frontmatter = 82, - sym_frontmatter_content = 83, - sym__block_with_section = 84, - sym__block_with_heading = 85, - sym__block_element = 86, - sym_section = 87, - sym_heading = 88, - sym__heading_content = 89, - sym_list = 90, - sym__list_dash = 91, - sym__list_item_dash = 92, - sym__list_plus = 93, - sym__list_item_plus = 94, - sym__list_star = 95, - sym__list_item_star = 96, - sym__list_task = 97, - sym__list_item_task = 98, - sym_list_marker_task = 99, - sym_checked = 100, - sym_unchecked = 101, - sym__list_definition = 102, - sym__list_item_definition = 103, - sym__list_decimal_period = 104, - sym__list_item_decimal_period = 105, - sym__list_decimal_paren = 106, - sym__list_item_decimal_paren = 107, - sym__list_decimal_parens = 108, - sym__list_item_decimal_parens = 109, - sym__list_lower_alpha_period = 110, - sym__list_item_lower_alpha_period = 111, - sym__list_lower_alpha_paren = 112, - sym__list_item_lower_alpha_paren = 113, - sym__list_lower_alpha_parens = 114, - sym__list_item_lower_alpha_parens = 115, - sym__list_upper_alpha_period = 116, - sym__list_item_upper_alpha_period = 117, - sym__list_upper_alpha_paren = 118, - sym__list_item_upper_alpha_paren = 119, - sym__list_upper_alpha_parens = 120, - sym__list_item_upper_alpha_parens = 121, - sym__list_lower_roman_period = 122, - sym__list_item_lower_roman_period = 123, - sym__list_lower_roman_paren = 124, - sym__list_item_lower_roman_paren = 125, - sym__list_lower_roman_parens = 126, - sym__list_item_lower_roman_parens = 127, - sym__list_upper_roman_period = 128, - sym__list_item_upper_roman_period = 129, - sym__list_upper_roman_paren = 130, - sym__list_item_upper_roman_paren = 131, - sym__list_upper_roman_parens = 132, - sym__list_item_upper_roman_parens = 133, - sym_list_item_content = 134, - sym_table = 135, - sym__table_row = 136, - sym_table_header = 137, - sym_table_separator = 138, - sym_table_row = 139, - sym_table_cell = 140, - sym_table_caption = 141, - sym_footnote = 142, - sym_footnote_marker_begin = 143, - sym_footnote_content = 144, - sym_div = 145, - sym__div_marker_begin = 146, - sym_class_name = 147, - sym_code_block = 148, - sym_raw_block = 149, - sym_raw_block_info = 150, - sym_code = 151, - sym__line = 152, - sym_thematic_break = 153, - sym_block_quote = 154, - sym__block_quote_content = 155, - sym__block_quote_prefix = 156, - sym_link_reference_definition = 157, - sym_link_label = 158, - sym_block_attribute = 159, - sym_class = 160, - sym_identifier = 161, - sym_key_value = 162, - sym_key = 163, - sym_value = 164, - sym__paragraph = 165, - sym__paragraph_content = 166, - sym__paragraph_inline_content = 167, - sym__one_or_two_newlines = 168, - sym__inline = 169, - sym__inline_line = 170, - sym__symbol_fallback = 171, - sym_reference_label = 172, - sym__comment_no_newline = 173, - aux_sym_document_repeat1 = 174, - aux_sym_frontmatter_content_repeat1 = 175, - aux_sym__heading_content_repeat1 = 176, - aux_sym__list_dash_repeat1 = 177, - aux_sym__list_plus_repeat1 = 178, - aux_sym__list_star_repeat1 = 179, - aux_sym__list_task_repeat1 = 180, - aux_sym__list_definition_repeat1 = 181, - aux_sym__list_item_definition_repeat1 = 182, - aux_sym__list_decimal_period_repeat1 = 183, - aux_sym__list_decimal_paren_repeat1 = 184, - aux_sym__list_decimal_parens_repeat1 = 185, - aux_sym__list_lower_alpha_period_repeat1 = 186, - aux_sym__list_lower_alpha_paren_repeat1 = 187, - aux_sym__list_lower_alpha_parens_repeat1 = 188, - aux_sym__list_upper_alpha_period_repeat1 = 189, - aux_sym__list_upper_alpha_paren_repeat1 = 190, - aux_sym__list_upper_alpha_parens_repeat1 = 191, - aux_sym__list_lower_roman_period_repeat1 = 192, - aux_sym__list_lower_roman_paren_repeat1 = 193, - aux_sym__list_lower_roman_parens_repeat1 = 194, - aux_sym__list_upper_roman_period_repeat1 = 195, - aux_sym__list_upper_roman_paren_repeat1 = 196, - aux_sym__list_upper_roman_parens_repeat1 = 197, - aux_sym_list_item_content_repeat1 = 198, - aux_sym_table_repeat1 = 199, - aux_sym_table_header_repeat1 = 200, - aux_sym_table_separator_repeat1 = 201, - aux_sym_table_caption_repeat1 = 202, - aux_sym_footnote_content_repeat1 = 203, - aux_sym_div_repeat1 = 204, - aux_sym_code_repeat1 = 205, - aux_sym__block_quote_content_repeat1 = 206, - aux_sym__block_quote_prefix_repeat1 = 207, - aux_sym_block_attribute_repeat1 = 208, - aux_sym__paragraph_inline_content_repeat1 = 209, - aux_sym__inline_repeat1 = 210, - aux_sym__comment_no_newline_repeat1 = 211, - alias_sym_args = 212, - anon_alias_sym_class = 213, - alias_sym_definition = 214, - alias_sym_language_marker = 215, - alias_sym_paragraph = 216, - alias_sym_raw_block_marker_begin = 217, - alias_sym_raw_block_marker_end = 218, - alias_sym_section_content = 219, + sym__block_attribute_begin = 79, + sym__in_fallback = 80, + sym__error = 81, + sym_document = 82, + sym_frontmatter = 83, + sym_frontmatter_content = 84, + sym__block_with_section = 85, + sym__block_with_heading = 86, + sym__block_element = 87, + sym_section = 88, + sym_heading = 89, + sym__heading_content = 90, + sym_list = 91, + sym__list_dash = 92, + sym__list_item_dash = 93, + sym__list_plus = 94, + sym__list_item_plus = 95, + sym__list_star = 96, + sym__list_item_star = 97, + sym__list_task = 98, + sym__list_item_task = 99, + sym_list_marker_task = 100, + sym_checked = 101, + sym_unchecked = 102, + sym__list_definition = 103, + sym__list_item_definition = 104, + sym__list_decimal_period = 105, + sym__list_item_decimal_period = 106, + sym__list_decimal_paren = 107, + sym__list_item_decimal_paren = 108, + sym__list_decimal_parens = 109, + sym__list_item_decimal_parens = 110, + sym__list_lower_alpha_period = 111, + sym__list_item_lower_alpha_period = 112, + sym__list_lower_alpha_paren = 113, + sym__list_item_lower_alpha_paren = 114, + sym__list_lower_alpha_parens = 115, + sym__list_item_lower_alpha_parens = 116, + sym__list_upper_alpha_period = 117, + sym__list_item_upper_alpha_period = 118, + sym__list_upper_alpha_paren = 119, + sym__list_item_upper_alpha_paren = 120, + sym__list_upper_alpha_parens = 121, + sym__list_item_upper_alpha_parens = 122, + sym__list_lower_roman_period = 123, + sym__list_item_lower_roman_period = 124, + sym__list_lower_roman_paren = 125, + sym__list_item_lower_roman_paren = 126, + sym__list_lower_roman_parens = 127, + sym__list_item_lower_roman_parens = 128, + sym__list_upper_roman_period = 129, + sym__list_item_upper_roman_period = 130, + sym__list_upper_roman_paren = 131, + sym__list_item_upper_roman_paren = 132, + sym__list_upper_roman_parens = 133, + sym__list_item_upper_roman_parens = 134, + sym_list_item_content = 135, + sym_table = 136, + sym__table_row = 137, + sym_table_header = 138, + sym_table_separator = 139, + sym_table_row = 140, + sym_table_cell = 141, + sym_table_caption = 142, + sym_footnote = 143, + sym_footnote_marker_begin = 144, + sym_footnote_content = 145, + sym_div = 146, + sym__div_marker_begin = 147, + sym_class_name = 148, + sym_code_block = 149, + sym_raw_block = 150, + sym_raw_block_info = 151, + sym_code = 152, + sym__line = 153, + sym_thematic_break = 154, + sym_block_quote = 155, + sym__block_quote_content = 156, + sym__block_quote_prefix = 157, + sym_link_reference_definition = 158, + sym_link_label = 159, + sym_block_attribute = 160, + sym_class = 161, + sym_identifier = 162, + sym_key_value = 163, + sym_key = 164, + sym_value = 165, + sym__paragraph = 166, + sym__paragraph_content = 167, + sym__paragraph_inline_content = 168, + sym__one_or_two_newlines = 169, + sym__inline = 170, + sym__inline_line = 171, + sym__symbol_fallback = 172, + sym_reference_label = 173, + sym_comment = 174, + aux_sym_document_repeat1 = 175, + aux_sym_frontmatter_content_repeat1 = 176, + aux_sym__heading_content_repeat1 = 177, + aux_sym__list_dash_repeat1 = 178, + aux_sym__list_plus_repeat1 = 179, + aux_sym__list_star_repeat1 = 180, + aux_sym__list_task_repeat1 = 181, + aux_sym__list_definition_repeat1 = 182, + aux_sym__list_item_definition_repeat1 = 183, + aux_sym__list_decimal_period_repeat1 = 184, + aux_sym__list_decimal_paren_repeat1 = 185, + aux_sym__list_decimal_parens_repeat1 = 186, + aux_sym__list_lower_alpha_period_repeat1 = 187, + aux_sym__list_lower_alpha_paren_repeat1 = 188, + aux_sym__list_lower_alpha_parens_repeat1 = 189, + aux_sym__list_upper_alpha_period_repeat1 = 190, + aux_sym__list_upper_alpha_paren_repeat1 = 191, + aux_sym__list_upper_alpha_parens_repeat1 = 192, + aux_sym__list_lower_roman_period_repeat1 = 193, + aux_sym__list_lower_roman_paren_repeat1 = 194, + aux_sym__list_lower_roman_parens_repeat1 = 195, + aux_sym__list_upper_roman_period_repeat1 = 196, + aux_sym__list_upper_roman_paren_repeat1 = 197, + aux_sym__list_upper_roman_parens_repeat1 = 198, + aux_sym_list_item_content_repeat1 = 199, + aux_sym_table_repeat1 = 200, + aux_sym_table_header_repeat1 = 201, + aux_sym_table_separator_repeat1 = 202, + aux_sym_table_caption_repeat1 = 203, + aux_sym_footnote_content_repeat1 = 204, + aux_sym_div_repeat1 = 205, + aux_sym_code_repeat1 = 206, + aux_sym__block_quote_content_repeat1 = 207, + aux_sym__block_quote_prefix_repeat1 = 208, + aux_sym_block_attribute_repeat1 = 209, + aux_sym__paragraph_inline_content_repeat1 = 210, + aux_sym__inline_repeat1 = 211, + aux_sym_comment_repeat1 = 212, + alias_sym_args = 213, + anon_alias_sym_class = 214, + alias_sym_definition = 215, + alias_sym_language_marker = 216, + alias_sym_paragraph = 217, + alias_sym_raw_block_marker_begin = 218, + alias_sym_raw_block_marker_end = 219, + alias_sym_section_content = 220, }; static const char * const ts_symbol_names[] = { @@ -254,7 +255,6 @@ static const char * const ts_symbol_names[] = { [aux_sym__line_token1] = "_line_token1", [anon_sym_COLON] = ":", [sym_link_destination] = "link_destination", - [anon_sym_LBRACE] = "{", [anon_sym_RBRACE] = "}", [anon_sym_DOT] = ".", [aux_sym_identifier_token1] = "identifier_token1", @@ -264,10 +264,11 @@ static const char * const ts_symbol_names[] = { [sym__whitespace] = "_whitespace", [sym__whitespace1] = "_whitespace1", [aux_sym__inline_token1] = "_inline_token1", + [anon_sym_LBRACE] = "{", [anon_sym_PERCENT] = "%", [sym_backslash_escape] = "backslash_escape", [sym__id] = "_id", - [aux_sym__comment_no_newline_token1] = "_comment_no_newline_token1", + [aux_sym_comment_token1] = "comment_token1", [sym__ignored] = "_ignored", [sym__block_close] = "_block_close", [sym__eof_or_newline] = "_eof_or_newline", @@ -311,12 +312,13 @@ static const char * const ts_symbol_names[] = { [sym__footnote_mark_begin] = "_footnote_mark_begin", [sym__footnote_continuation] = "_footnote_continuation", [sym__footnote_end] = "_footnote_end", - [sym__table_header_begin] = "_table_header_begin", - [sym__table_separator_begin] = "_table_separator_begin", - [sym__table_row_begin] = "_table_row_begin", + [sym__table_header_begin] = "|", + [sym__table_separator_begin] = "|", + [sym__table_row_begin] = "|", [sym__table_cell] = "inline", [sym__table_caption_begin] = "marker", [sym__table_caption_end] = "_table_caption_end", + [sym__block_attribute_begin] = "{", [sym__in_fallback] = "_in_fallback", [sym__error] = "_error", [sym_document] = "document", @@ -411,7 +413,7 @@ static const char * const ts_symbol_names[] = { [sym__inline_line] = "_inline_line", [sym__symbol_fallback] = "_symbol_fallback", [sym_reference_label] = "reference_label", - [sym__comment_no_newline] = "comment", + [sym_comment] = "comment", [aux_sym_document_repeat1] = "document_repeat1", [aux_sym_frontmatter_content_repeat1] = "frontmatter_content_repeat1", [aux_sym__heading_content_repeat1] = "_heading_content_repeat1", @@ -449,7 +451,7 @@ static const char * const ts_symbol_names[] = { [aux_sym_block_attribute_repeat1] = "block_attribute_repeat1", [aux_sym__paragraph_inline_content_repeat1] = "_paragraph_inline_content_repeat1", [aux_sym__inline_repeat1] = "_inline_repeat1", - [aux_sym__comment_no_newline_repeat1] = "_comment_no_newline_repeat1", + [aux_sym_comment_repeat1] = "comment_repeat1", [alias_sym_args] = "args", [anon_alias_sym_class] = "class", [alias_sym_definition] = "definition", @@ -477,7 +479,6 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym__line_token1] = aux_sym__line_token1, [anon_sym_COLON] = anon_sym_COLON, [sym_link_destination] = sym_link_destination, - [anon_sym_LBRACE] = anon_sym_LBRACE, [anon_sym_RBRACE] = anon_sym_RBRACE, [anon_sym_DOT] = anon_sym_DOT, [aux_sym_identifier_token1] = aux_sym_identifier_token1, @@ -487,10 +488,11 @@ static const TSSymbol ts_symbol_map[] = { [sym__whitespace] = sym__whitespace, [sym__whitespace1] = sym__whitespace1, [aux_sym__inline_token1] = aux_sym__inline_token1, + [anon_sym_LBRACE] = anon_sym_LBRACE, [anon_sym_PERCENT] = anon_sym_PERCENT, [sym_backslash_escape] = sym_backslash_escape, [sym__id] = sym__id, - [aux_sym__comment_no_newline_token1] = aux_sym__comment_no_newline_token1, + [aux_sym_comment_token1] = aux_sym_comment_token1, [sym__ignored] = sym__ignored, [sym__block_close] = sym__block_close, [sym__eof_or_newline] = sym__eof_or_newline, @@ -534,12 +536,13 @@ static const TSSymbol ts_symbol_map[] = { [sym__footnote_mark_begin] = sym__footnote_mark_begin, [sym__footnote_continuation] = sym__footnote_continuation, [sym__footnote_end] = sym__footnote_end, - [sym__table_header_begin] = sym__table_header_begin, - [sym__table_separator_begin] = sym__table_separator_begin, - [sym__table_row_begin] = sym__table_row_begin, + [sym__table_header_begin] = anon_sym_PIPE, + [sym__table_separator_begin] = anon_sym_PIPE, + [sym__table_row_begin] = anon_sym_PIPE, [sym__table_cell] = sym__table_cell, [sym__table_caption_begin] = sym__heading_begin, [sym__table_caption_end] = sym__table_caption_end, + [sym__block_attribute_begin] = anon_sym_LBRACE, [sym__in_fallback] = sym__in_fallback, [sym__error] = sym__error, [sym_document] = sym_document, @@ -634,7 +637,7 @@ static const TSSymbol ts_symbol_map[] = { [sym__inline_line] = sym__inline_line, [sym__symbol_fallback] = sym__symbol_fallback, [sym_reference_label] = sym_reference_label, - [sym__comment_no_newline] = sym__comment_no_newline, + [sym_comment] = sym_comment, [aux_sym_document_repeat1] = aux_sym_document_repeat1, [aux_sym_frontmatter_content_repeat1] = aux_sym_frontmatter_content_repeat1, [aux_sym__heading_content_repeat1] = aux_sym__heading_content_repeat1, @@ -672,7 +675,7 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_block_attribute_repeat1] = aux_sym_block_attribute_repeat1, [aux_sym__paragraph_inline_content_repeat1] = aux_sym__paragraph_inline_content_repeat1, [aux_sym__inline_repeat1] = aux_sym__inline_repeat1, - [aux_sym__comment_no_newline_repeat1] = aux_sym__comment_no_newline_repeat1, + [aux_sym_comment_repeat1] = aux_sym_comment_repeat1, [alias_sym_args] = alias_sym_args, [anon_alias_sym_class] = anon_alias_sym_class, [alias_sym_definition] = alias_sym_definition, @@ -748,10 +751,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [anon_sym_LBRACE] = { - .visible = true, - .named = false, - }, [anon_sym_RBRACE] = { .visible = true, .named = false, @@ -788,6 +787,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [anon_sym_LBRACE] = { + .visible = true, + .named = false, + }, [anon_sym_PERCENT] = { .visible = true, .named = false, @@ -800,7 +803,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, - [aux_sym__comment_no_newline_token1] = { + [aux_sym_comment_token1] = { .visible = false, .named = false, }, @@ -977,16 +980,16 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .named = true, }, [sym__table_header_begin] = { - .visible = false, - .named = true, + .visible = true, + .named = false, }, [sym__table_separator_begin] = { - .visible = false, - .named = true, + .visible = true, + .named = false, }, [sym__table_row_begin] = { - .visible = false, - .named = true, + .visible = true, + .named = false, }, [sym__table_cell] = { .visible = true, @@ -1000,6 +1003,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, + [sym__block_attribute_begin] = { + .visible = true, + .named = false, + }, [sym__in_fallback] = { .visible = false, .named = true, @@ -1376,7 +1383,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym__comment_no_newline] = { + [sym_comment] = { .visible = true, .named = true, }, @@ -1528,7 +1535,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym__comment_no_newline_repeat1] = { + [aux_sym_comment_repeat1] = { .visible = false, .named = false, }, @@ -1608,32 +1615,31 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [3] = {.index = 2, .length = 3}, [4] = {.index = 5, .length = 2}, [6] = {.index = 7, .length = 1}, - [7] = {.index = 8, .length = 1}, + [8] = {.index = 8, .length = 1}, [9] = {.index = 9, .length = 1}, [10] = {.index = 10, .length = 1}, - [11] = {.index = 11, .length = 1}, - [13] = {.index = 12, .length = 2}, - [14] = {.index = 14, .length = 1}, - [15] = {.index = 15, .length = 2}, - [16] = {.index = 17, .length = 2}, - [17] = {.index = 19, .length = 2}, - [18] = {.index = 11, .length = 1}, - [19] = {.index = 21, .length = 2}, - [20] = {.index = 23, .length = 1}, - [21] = {.index = 24, .length = 2}, - [22] = {.index = 5, .length = 2}, + [12] = {.index = 11, .length = 2}, + [13] = {.index = 13, .length = 1}, + [14] = {.index = 14, .length = 2}, + [15] = {.index = 16, .length = 2}, + [16] = {.index = 18, .length = 2}, + [17] = {.index = 10, .length = 1}, + [18] = {.index = 20, .length = 2}, + [19] = {.index = 22, .length = 1}, + [20] = {.index = 23, .length = 2}, + [21] = {.index = 5, .length = 2}, + [22] = {.index = 25, .length = 1}, [23] = {.index = 26, .length = 1}, [24] = {.index = 27, .length = 1}, - [25] = {.index = 28, .length = 1}, - [26] = {.index = 29, .length = 3}, - [27] = {.index = 32, .length = 1}, - [28] = {.index = 33, .length = 2}, - [29] = {.index = 35, .length = 2}, - [30] = {.index = 37, .length = 2}, - [31] = {.index = 39, .length = 2}, - [32] = {.index = 28, .length = 1}, - [33] = {.index = 35, .length = 2}, - [34] = {.index = 41, .length = 2}, + [25] = {.index = 28, .length = 3}, + [26] = {.index = 31, .length = 1}, + [27] = {.index = 32, .length = 2}, + [28] = {.index = 34, .length = 2}, + [29] = {.index = 36, .length = 2}, + [30] = {.index = 38, .length = 2}, + [31] = {.index = 27, .length = 1}, + [32] = {.index = 34, .length = 2}, + [33] = {.index = 40, .length = 2}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -1648,62 +1654,60 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_content, 1}, {field_marker, 0}, [7] = - {field_content, 0, .inherited = true}, - [8] = {field_heading, 0}, - [9] = + [8] = {field_class, 2}, - [10] = + [9] = {field_checkmark, 1}, - [11] = + [10] = {field_content, 1}, - [12] = + [11] = {field_content, 1}, {field_heading, 0}, - [14] = + [13] = {field_class, 0, .inherited = true}, - [15] = + [14] = {field_content, 2}, {field_marker, 1}, - [17] = + [16] = {field_language, 1}, {field_marker, 0}, - [19] = + [18] = {field_marker, 0}, {field_term, 1}, - [21] = + [20] = {field_key, 0}, {field_value, 2}, - [23] = + [22] = {field_args, 1}, - [24] = + [23] = {field_class, 0, .inherited = true}, {field_content, 2}, - [26] = + [25] = {field_code, 3}, - [27] = + [26] = {field_language, 2}, - [28] = + [27] = {field_info, 2}, - [29] = + [28] = {field_definition, 3}, {field_marker, 0}, {field_term, 1}, - [32] = + [31] = {field_content, 3}, - [33] = + [32] = {field_code, 4}, {field_language, 2}, - [35] = + [34] = {field_content, 4}, {field_info, 2}, - [37] = + [36] = {field_content, 5}, {field_label, 2}, - [39] = + [38] = {field_content, 4}, {field_language, 2}, - [41] = + [40] = {field_destination, 5}, {field_label, 1}, }; @@ -1716,45 +1720,45 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [5] = { [0] = sym__table_cell, }, - [8] = { + [7] = { [0] = alias_sym_paragraph, }, - [12] = { + [11] = { [1] = anon_alias_sym_class, }, - [13] = { + [12] = { [1] = alias_sym_section_content, }, - [16] = { + [15] = { [0] = alias_sym_language_marker, }, - [18] = { + [17] = { [1] = sym__block_quote_content, }, - [20] = { + [19] = { [1] = alias_sym_args, }, - [21] = { + [20] = { [2] = sym__block_quote_content, }, - [22] = { + [21] = { [1] = sym__block_quote_content, }, - [25] = { + [24] = { [0] = alias_sym_raw_block_marker_begin, }, - [26] = { + [25] = { [3] = alias_sym_definition, }, - [29] = { + [28] = { [0] = alias_sym_raw_block_marker_begin, [4] = sym__block_quote_content, }, - [32] = { + [31] = { [0] = alias_sym_raw_block_marker_begin, [5] = alias_sym_raw_block_marker_end, }, - [33] = { + [32] = { [0] = alias_sym_raw_block_marker_begin, [4] = sym__block_quote_content, [6] = alias_sym_raw_block_marker_end, @@ -1789,8 +1793,8 @@ static const uint16_t ts_non_terminal_alias_map[] = { aux_sym_block_attribute_repeat1, 2, aux_sym_block_attribute_repeat1, alias_sym_args, - aux_sym__comment_no_newline_repeat1, 2, - aux_sym__comment_no_newline_repeat1, + aux_sym_comment_repeat1, 2, + aux_sym_comment_repeat1, sym__block_quote_content, 0, }; @@ -1804,20 +1808,20 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5] = 5, [6] = 6, [7] = 7, - [8] = 4, - [9] = 5, - [10] = 7, + [8] = 7, + [9] = 4, + [10] = 6, [11] = 11, [12] = 12, - [13] = 12, - [14] = 14, - [15] = 11, - [16] = 12, - [17] = 11, - [18] = 12, - [19] = 11, - [20] = 12, - [21] = 11, + [13] = 13, + [14] = 11, + [15] = 12, + [16] = 11, + [17] = 12, + [18] = 11, + [19] = 12, + [20] = 11, + [21] = 12, [22] = 22, [23] = 23, [24] = 24, @@ -1830,21 +1834,21 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [31] = 31, [32] = 32, [33] = 33, - [34] = 23, + [34] = 34, [35] = 35, [36] = 36, [37] = 37, - [38] = 38, + [38] = 32, [39] = 39, [40] = 40, - [41] = 23, + [41] = 32, [42] = 42, - [43] = 23, - [44] = 44, + [43] = 43, + [44] = 32, [45] = 45, - [46] = 23, + [46] = 46, [47] = 47, - [48] = 48, + [48] = 32, [49] = 49, [50] = 50, [51] = 51, @@ -1854,12 +1858,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [55] = 55, [56] = 56, [57] = 57, - [58] = 53, + [58] = 57, [59] = 57, - [60] = 53, - [61] = 57, - [62] = 53, - [63] = 57, + [60] = 54, + [61] = 54, + [62] = 57, + [63] = 54, [64] = 57, [65] = 65, [66] = 66, @@ -1869,42 +1873,42 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [70] = 70, [71] = 70, [72] = 72, - [73] = 72, + [73] = 73, [74] = 74, [75] = 75, [76] = 76, - [77] = 77, + [77] = 72, [78] = 78, [79] = 79, [80] = 80, [81] = 81, [82] = 82, - [83] = 83, + [83] = 81, [84] = 84, [85] = 85, - [86] = 86, - [87] = 87, - [88] = 78, - [89] = 80, + [86] = 73, + [87] = 82, + [88] = 88, + [89] = 89, [90] = 90, [91] = 91, [92] = 92, - [93] = 81, - [94] = 82, - [95] = 79, - [96] = 83, - [97] = 97, - [98] = 91, - [99] = 74, - [100] = 75, - [101] = 76, - [102] = 84, - [103] = 77, - [104] = 85, - [105] = 90, - [106] = 92, - [107] = 97, - [108] = 86, + [93] = 93, + [94] = 94, + [95] = 88, + [96] = 74, + [97] = 75, + [98] = 76, + [99] = 89, + [100] = 78, + [101] = 79, + [102] = 80, + [103] = 90, + [104] = 91, + [105] = 92, + [106] = 93, + [107] = 94, + [108] = 85, [109] = 109, [110] = 110, [111] = 111, @@ -1921,12 +1925,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [122] = 122, [123] = 123, [124] = 124, - [125] = 125, + [125] = 123, [126] = 126, [127] = 127, - [128] = 128, + [128] = 121, [129] = 129, - [130] = 130, + [130] = 109, [131] = 131, [132] = 132, [133] = 133, @@ -1944,283 +1948,283 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [145] = 145, [146] = 146, [147] = 147, - [148] = 148, + [148] = 145, [149] = 149, [150] = 150, - [151] = 110, - [152] = 111, - [153] = 112, - [154] = 113, - [155] = 114, - [156] = 116, - [157] = 119, - [158] = 120, - [159] = 131, - [160] = 133, - [161] = 136, - [162] = 138, - [163] = 140, - [164] = 145, - [165] = 146, - [166] = 166, - [167] = 167, - [168] = 166, + [151] = 151, + [152] = 149, + [153] = 117, + [154] = 154, + [155] = 155, + [156] = 156, + [157] = 157, + [158] = 150, + [159] = 124, + [160] = 160, + [161] = 154, + [162] = 146, + [163] = 156, + [164] = 160, + [165] = 127, + [166] = 151, + [167] = 129, + [168] = 168, [169] = 169, - [170] = 167, - [171] = 171, - [172] = 172, - [173] = 109, + [170] = 170, + [171] = 169, + [172] = 157, + [173] = 173, [174] = 174, - [175] = 169, - [176] = 150, - [177] = 177, - [178] = 171, - [179] = 172, + [175] = 175, + [176] = 111, + [177] = 112, + [178] = 113, + [179] = 114, [180] = 115, - [181] = 142, - [182] = 118, - [183] = 183, - [184] = 121, - [185] = 122, - [186] = 123, - [187] = 125, - [188] = 126, - [189] = 127, - [190] = 128, - [191] = 129, - [192] = 130, - [193] = 132, - [194] = 134, - [195] = 135, + [181] = 116, + [182] = 182, + [183] = 118, + [184] = 119, + [185] = 120, + [186] = 122, + [187] = 131, + [188] = 170, + [189] = 189, + [190] = 132, + [191] = 133, + [192] = 134, + [193] = 147, + [194] = 135, + [195] = 136, [196] = 137, - [197] = 139, - [198] = 174, - [199] = 199, - [200] = 144, - [201] = 143, - [202] = 202, - [203] = 147, - [204] = 177, - [205] = 149, - [206] = 148, - [207] = 202, + [197] = 138, + [198] = 139, + [199] = 140, + [200] = 141, + [201] = 142, + [202] = 143, + [203] = 144, + [204] = 173, + [205] = 174, + [206] = 175, + [207] = 155, [208] = 208, [209] = 209, [210] = 210, [211] = 211, - [212] = 212, - [213] = 211, - [214] = 211, - [215] = 212, + [212] = 211, + [213] = 213, + [214] = 213, + [215] = 213, [216] = 211, - [217] = 212, + [217] = 213, [218] = 211, - [219] = 212, - [220] = 212, + [219] = 211, + [220] = 213, [221] = 221, [222] = 221, [223] = 221, [224] = 221, [225] = 221, [226] = 226, - [227] = 226, - [228] = 226, - [229] = 226, + [227] = 208, + [228] = 208, + [229] = 66, [230] = 226, - [231] = 231, - [232] = 208, - [233] = 210, - [234] = 231, - [235] = 208, - [236] = 66, - [237] = 66, - [238] = 210, - [239] = 239, + [231] = 210, + [232] = 232, + [233] = 66, + [234] = 66, + [235] = 210, + [236] = 68, + [237] = 237, + [238] = 238, + [239] = 237, [240] = 68, - [241] = 66, - [242] = 242, - [243] = 68, - [244] = 242, - [245] = 242, - [246] = 242, - [247] = 242, - [248] = 68, - [249] = 249, - [250] = 250, + [241] = 68, + [242] = 237, + [243] = 237, + [244] = 237, + [245] = 245, + [246] = 246, + [247] = 245, + [248] = 245, + [249] = 245, + [250] = 245, [251] = 251, - [252] = 250, - [253] = 250, - [254] = 250, - [255] = 250, - [256] = 256, + [252] = 252, + [253] = 253, + [254] = 254, + [255] = 251, + [256] = 253, [257] = 257, - [258] = 257, - [259] = 256, - [260] = 260, - [261] = 257, - [262] = 260, - [263] = 260, - [264] = 260, - [265] = 257, - [266] = 256, - [267] = 267, - [268] = 260, - [269] = 256, - [270] = 256, + [258] = 251, + [259] = 257, + [260] = 253, + [261] = 252, + [262] = 257, + [263] = 253, + [264] = 252, + [265] = 251, + [266] = 257, + [267] = 252, + [268] = 251, + [269] = 257, + [270] = 252, [271] = 271, [272] = 272, [273] = 273, [274] = 273, - [275] = 273, + [275] = 275, [276] = 276, - [277] = 277, + [277] = 273, [278] = 271, [279] = 271, [280] = 280, - [281] = 231, - [282] = 282, - [283] = 208, - [284] = 284, + [281] = 281, + [282] = 208, + [283] = 283, + [284] = 226, [285] = 285, - [286] = 286, - [287] = 287, + [286] = 76, + [287] = 285, [288] = 288, - [289] = 210, - [290] = 280, - [291] = 91, - [292] = 97, - [293] = 72, - [294] = 74, - [295] = 80, - [296] = 81, - [297] = 82, - [298] = 285, - [299] = 287, - [300] = 300, - [301] = 300, - [302] = 286, - [303] = 286, - [304] = 280, - [305] = 285, - [306] = 287, - [307] = 300, - [308] = 286, - [309] = 285, - [310] = 287, - [311] = 300, - [312] = 286, - [313] = 285, - [314] = 287, - [315] = 300, + [289] = 288, + [290] = 290, + [291] = 291, + [292] = 285, + [293] = 288, + [294] = 281, + [295] = 290, + [296] = 291, + [297] = 285, + [298] = 288, + [299] = 290, + [300] = 291, + [301] = 291, + [302] = 285, + [303] = 288, + [304] = 304, + [305] = 290, + [306] = 291, + [307] = 210, + [308] = 81, + [309] = 281, + [310] = 85, + [311] = 89, + [312] = 90, + [313] = 74, + [314] = 75, + [315] = 290, [316] = 316, [317] = 317, - [318] = 91, - [319] = 319, + [318] = 318, + [319] = 317, [320] = 320, - [321] = 91, - [322] = 319, - [323] = 323, - [324] = 324, - [325] = 97, - [326] = 319, - [327] = 97, - [328] = 72, - [329] = 323, - [330] = 316, - [331] = 74, - [332] = 323, - [333] = 81, - [334] = 319, - [335] = 323, - [336] = 316, + [321] = 75, + [322] = 318, + [323] = 317, + [324] = 320, + [325] = 81, + [326] = 76, + [327] = 85, + [328] = 318, + [329] = 317, + [330] = 320, + [331] = 320, + [332] = 74, + [333] = 89, + [334] = 318, + [335] = 81, + [336] = 85, [337] = 337, - [338] = 82, - [339] = 72, + [338] = 89, + [339] = 90, [340] = 74, - [341] = 80, - [342] = 319, - [343] = 323, - [344] = 316, - [345] = 316, - [346] = 81, - [347] = 82, - [348] = 348, - [349] = 80, + [341] = 75, + [342] = 320, + [343] = 76, + [344] = 90, + [345] = 345, + [346] = 346, + [347] = 318, + [348] = 317, + [349] = 349, [350] = 350, [351] = 351, [352] = 352, [353] = 350, - [354] = 350, - [355] = 355, - [356] = 356, + [354] = 354, + [355] = 350, + [356] = 351, [357] = 357, [358] = 358, - [359] = 359, - [360] = 355, - [361] = 356, - [362] = 352, - [363] = 356, - [364] = 350, - [365] = 365, - [366] = 357, - [367] = 367, - [368] = 355, - [369] = 369, - [370] = 356, - [371] = 357, - [372] = 372, - [373] = 373, - [374] = 357, - [375] = 375, + [359] = 350, + [360] = 360, + [361] = 350, + [362] = 362, + [363] = 352, + [364] = 352, + [365] = 357, + [366] = 366, + [367] = 354, + [368] = 351, + [369] = 357, + [370] = 352, + [371] = 350, + [372] = 352, + [373] = 350, + [374] = 352, + [375] = 350, [376] = 352, - [377] = 352, - [378] = 350, - [379] = 379, - [380] = 380, - [381] = 381, - [382] = 350, - [383] = 355, - [384] = 384, - [385] = 357, - [386] = 350, - [387] = 355, - [388] = 350, - [389] = 355, - [390] = 350, - [391] = 355, - [392] = 350, - [393] = 355, - [394] = 350, - [395] = 355, - [396] = 350, - [397] = 355, - [398] = 350, - [399] = 355, - [400] = 350, - [401] = 355, - [402] = 350, - [403] = 355, - [404] = 350, - [405] = 355, + [377] = 350, + [378] = 352, + [379] = 350, + [380] = 352, + [381] = 350, + [382] = 352, + [383] = 350, + [384] = 352, + [385] = 350, + [386] = 352, + [387] = 350, + [388] = 354, + [389] = 350, + [390] = 352, + [391] = 350, + [392] = 352, + [393] = 350, + [394] = 352, + [395] = 350, + [396] = 352, + [397] = 397, + [398] = 398, + [399] = 357, + [400] = 400, + [401] = 350, + [402] = 402, + [403] = 403, + [404] = 404, + [405] = 405, [406] = 352, - [407] = 355, - [408] = 350, - [409] = 355, - [410] = 350, - [411] = 355, - [412] = 350, - [413] = 355, - [414] = 355, + [407] = 357, + [408] = 352, + [409] = 409, + [410] = 354, + [411] = 354, + [412] = 351, + [413] = 413, + [414] = 351, [415] = 415, - [416] = 416, - [417] = 356, + [416] = 352, + [417] = 417, [418] = 418, - [419] = 231, + [419] = 419, [420] = 70, - [421] = 208, - [422] = 422, + [421] = 226, + [422] = 208, [423] = 423, - [424] = 87, + [424] = 424, [425] = 425, [426] = 426, [427] = 427, @@ -2236,720 +2240,719 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [437] = 437, [438] = 438, [439] = 439, - [440] = 440, - [441] = 439, - [442] = 440, - [443] = 76, - [444] = 77, + [440] = 70, + [441] = 441, + [442] = 442, + [443] = 443, + [444] = 84, [445] = 445, - [446] = 78, - [447] = 79, - [448] = 425, - [449] = 427, - [450] = 450, - [451] = 451, - [452] = 83, - [453] = 84, - [454] = 85, - [455] = 455, - [456] = 86, - [457] = 210, - [458] = 458, + [446] = 446, + [447] = 73, + [448] = 82, + [449] = 91, + [450] = 92, + [451] = 93, + [452] = 94, + [453] = 88, + [454] = 72, + [455] = 78, + [456] = 79, + [457] = 80, + [458] = 210, [459] = 459, - [460] = 425, - [461] = 426, - [462] = 427, - [463] = 428, - [464] = 429, - [465] = 430, - [466] = 431, - [467] = 432, - [468] = 433, - [469] = 434, - [470] = 435, - [471] = 436, + [460] = 460, + [461] = 461, + [462] = 462, + [463] = 463, + [464] = 464, + [465] = 424, + [466] = 426, + [467] = 423, + [468] = 429, + [469] = 431, + [470] = 433, + [471] = 435, [472] = 437, [473] = 438, [474] = 439, - [475] = 440, + [475] = 475, [476] = 476, [477] = 477, - [478] = 478, - [479] = 479, - [480] = 480, - [481] = 426, - [482] = 90, - [483] = 92, - [484] = 425, + [478] = 459, + [479] = 460, + [480] = 461, + [481] = 462, + [482] = 463, + [483] = 464, + [484] = 424, [485] = 426, - [486] = 428, - [487] = 487, - [488] = 440, - [489] = 428, - [490] = 429, - [491] = 430, - [492] = 431, - [493] = 432, - [494] = 433, - [495] = 434, - [496] = 435, - [497] = 436, - [498] = 437, - [499] = 438, - [500] = 439, - [501] = 440, - [502] = 70, - [503] = 503, - [504] = 504, - [505] = 505, - [506] = 506, - [507] = 75, - [508] = 425, - [509] = 426, - [510] = 427, - [511] = 428, - [512] = 429, - [513] = 430, - [514] = 431, - [515] = 432, - [516] = 433, - [517] = 434, - [518] = 429, - [519] = 519, - [520] = 430, - [521] = 505, - [522] = 522, - [523] = 431, - [524] = 524, - [525] = 525, - [526] = 435, - [527] = 505, - [528] = 432, - [529] = 529, - [530] = 433, - [531] = 436, + [486] = 423, + [487] = 429, + [488] = 431, + [489] = 433, + [490] = 435, + [491] = 437, + [492] = 438, + [493] = 439, + [494] = 459, + [495] = 460, + [496] = 461, + [497] = 462, + [498] = 463, + [499] = 464, + [500] = 424, + [501] = 426, + [502] = 423, + [503] = 429, + [504] = 431, + [505] = 433, + [506] = 435, + [507] = 437, + [508] = 438, + [509] = 439, + [510] = 459, + [511] = 460, + [512] = 461, + [513] = 462, + [514] = 463, + [515] = 464, + [516] = 424, + [517] = 426, + [518] = 423, + [519] = 429, + [520] = 431, + [521] = 433, + [522] = 435, + [523] = 437, + [524] = 438, + [525] = 439, + [526] = 526, + [527] = 527, + [528] = 528, + [529] = 459, + [530] = 530, + [531] = 460, [532] = 532, - [533] = 505, - [534] = 437, - [535] = 434, + [533] = 461, + [534] = 534, + [535] = 462, [536] = 536, - [537] = 439, - [538] = 505, - [539] = 435, + [537] = 463, + [538] = 538, + [539] = 464, [540] = 540, - [541] = 436, - [542] = 437, - [543] = 438, - [544] = 438, - [545] = 427, - [546] = 172, - [547] = 547, - [548] = 548, - [549] = 549, - [550] = 231, - [551] = 551, - [552] = 552, + [541] = 442, + [542] = 442, + [543] = 442, + [544] = 442, + [545] = 135, + [546] = 118, + [547] = 119, + [548] = 120, + [549] = 122, + [550] = 226, + [551] = 208, + [552] = 94, [553] = 553, - [554] = 554, - [555] = 555, - [556] = 556, - [557] = 557, - [558] = 558, - [559] = 559, + [554] = 226, + [555] = 208, + [556] = 226, + [557] = 208, + [558] = 226, + [559] = 208, [560] = 560, - [561] = 208, - [562] = 199, - [563] = 563, - [564] = 564, - [565] = 143, - [566] = 144, - [567] = 231, - [568] = 147, - [569] = 148, - [570] = 149, - [571] = 150, - [572] = 110, - [573] = 111, - [574] = 112, - [575] = 113, - [576] = 114, - [577] = 116, - [578] = 119, - [579] = 120, - [580] = 131, - [581] = 133, - [582] = 136, - [583] = 138, - [584] = 140, - [585] = 145, - [586] = 146, - [587] = 166, - [588] = 167, - [589] = 169, + [561] = 561, + [562] = 562, + [563] = 88, + [564] = 561, + [565] = 72, + [566] = 78, + [567] = 79, + [568] = 80, + [569] = 569, + [570] = 226, + [571] = 571, + [572] = 561, + [573] = 573, + [574] = 574, + [575] = 575, + [576] = 576, + [577] = 577, + [578] = 578, + [579] = 579, + [580] = 575, + [581] = 576, + [582] = 582, + [583] = 553, + [584] = 562, + [585] = 560, + [586] = 208, + [587] = 226, + [588] = 588, + [589] = 189, [590] = 590, - [591] = 208, - [592] = 171, + [591] = 591, + [592] = 592, [593] = 593, - [594] = 174, - [595] = 202, - [596] = 177, - [597] = 597, - [598] = 598, + [594] = 594, + [595] = 595, + [596] = 596, + [597] = 70, + [598] = 208, [599] = 599, - [600] = 600, - [601] = 601, - [602] = 115, - [603] = 603, - [604] = 118, - [605] = 121, - [606] = 122, - [607] = 123, - [608] = 125, - [609] = 126, - [610] = 127, - [611] = 128, - [612] = 129, - [613] = 130, - [614] = 132, + [600] = 121, + [601] = 129, + [602] = 602, + [603] = 575, + [604] = 576, + [605] = 561, + [606] = 606, + [607] = 553, + [608] = 562, + [609] = 609, + [610] = 226, + [611] = 560, + [612] = 131, + [613] = 132, + [614] = 133, [615] = 134, - [616] = 135, - [617] = 137, - [618] = 86, - [619] = 208, - [620] = 231, - [621] = 208, - [622] = 231, - [623] = 208, - [624] = 231, - [625] = 208, - [626] = 560, - [627] = 597, + [616] = 116, + [617] = 93, + [618] = 137, + [619] = 138, + [620] = 139, + [621] = 140, + [622] = 141, + [623] = 142, + [624] = 143, + [625] = 144, + [626] = 575, + [627] = 576, [628] = 628, - [629] = 629, - [630] = 630, + [629] = 553, + [630] = 562, [631] = 631, [632] = 632, - [633] = 563, - [634] = 564, - [635] = 635, - [636] = 636, - [637] = 637, - [638] = 631, - [639] = 632, - [640] = 563, - [641] = 564, - [642] = 70, - [643] = 643, - [644] = 631, - [645] = 560, - [646] = 632, - [647] = 631, - [648] = 632, - [649] = 649, - [650] = 563, - [651] = 564, - [652] = 597, - [653] = 653, - [654] = 231, + [633] = 633, + [634] = 145, + [635] = 146, + [636] = 147, + [637] = 109, + [638] = 149, + [639] = 150, + [640] = 151, + [641] = 117, + [642] = 208, + [643] = 155, + [644] = 156, + [645] = 645, + [646] = 157, + [647] = 84, + [648] = 154, + [649] = 126, + [650] = 575, + [651] = 576, + [652] = 652, + [653] = 553, + [654] = 562, [655] = 655, - [656] = 631, - [657] = 632, - [658] = 658, - [659] = 563, - [660] = 564, - [661] = 208, - [662] = 87, - [663] = 141, - [664] = 90, - [665] = 92, - [666] = 560, - [667] = 667, - [668] = 75, - [669] = 76, - [670] = 77, - [671] = 78, - [672] = 79, - [673] = 597, - [674] = 674, - [675] = 83, - [676] = 84, - [677] = 85, - [678] = 231, - [679] = 679, - [680] = 560, - [681] = 597, - [682] = 682, - [683] = 210, - [684] = 684, - [685] = 560, - [686] = 597, - [687] = 210, - [688] = 688, - [689] = 689, - [690] = 560, - [691] = 597, - [692] = 560, - [693] = 597, + [656] = 656, + [657] = 73, + [658] = 160, + [659] = 82, + [660] = 560, + [661] = 661, + [662] = 662, + [663] = 663, + [664] = 169, + [665] = 665, + [666] = 170, + [667] = 91, + [668] = 92, + [669] = 173, + [670] = 174, + [671] = 175, + [672] = 111, + [673] = 112, + [674] = 113, + [675] = 114, + [676] = 115, + [677] = 136, + [678] = 117, + [679] = 111, + [680] = 112, + [681] = 113, + [682] = 114, + [683] = 115, + [684] = 116, + [685] = 118, + [686] = 119, + [687] = 120, + [688] = 122, + [689] = 210, + [690] = 210, + [691] = 560, + [692] = 561, + [693] = 693, [694] = 560, - [695] = 597, + [695] = 561, [696] = 560, - [697] = 597, - [698] = 560, - [699] = 597, + [697] = 561, + [698] = 210, + [699] = 699, [700] = 560, - [701] = 597, - [702] = 560, - [703] = 597, - [704] = 704, + [701] = 561, + [702] = 210, + [703] = 560, + [704] = 561, [705] = 705, - [706] = 706, - [707] = 679, - [708] = 708, - [709] = 709, - [710] = 710, - [711] = 711, - [712] = 712, - [713] = 713, - [714] = 714, - [715] = 715, - [716] = 716, - [717] = 717, - [718] = 718, - [719] = 719, - [720] = 720, - [721] = 721, - [722] = 722, + [706] = 560, + [707] = 561, + [708] = 210, + [709] = 560, + [710] = 561, + [711] = 560, + [712] = 561, + [713] = 560, + [714] = 561, + [715] = 560, + [716] = 561, + [717] = 560, + [718] = 561, + [719] = 560, + [720] = 561, + [721] = 560, + [722] = 561, [723] = 723, [724] = 724, [725] = 725, [726] = 726, [727] = 727, [728] = 728, - [729] = 729, + [729] = 80, [730] = 730, [731] = 731, - [732] = 560, + [732] = 732, [733] = 733, - [734] = 734, - [735] = 284, - [736] = 723, + [734] = 210, + [735] = 121, + [736] = 129, [737] = 737, - [738] = 132, + [738] = 738, [739] = 739, [740] = 740, - [741] = 741, - [742] = 720, - [743] = 720, - [744] = 727, - [745] = 649, - [746] = 597, - [747] = 733, - [748] = 210, - [749] = 723, - [750] = 679, - [751] = 751, - [752] = 752, - [753] = 679, - [754] = 87, + [741] = 731, + [742] = 91, + [743] = 743, + [744] = 723, + [745] = 745, + [746] = 746, + [747] = 747, + [748] = 748, + [749] = 665, + [750] = 724, + [751] = 131, + [752] = 132, + [753] = 560, + [754] = 754, [755] = 755, [756] = 756, - [757] = 727, - [758] = 758, - [759] = 90, - [760] = 92, - [761] = 761, - [762] = 135, + [757] = 757, + [758] = 133, + [759] = 134, + [760] = 135, + [761] = 136, + [762] = 561, [763] = 763, - [764] = 75, + [764] = 137, [765] = 765, - [766] = 727, + [766] = 737, [767] = 767, - [768] = 76, + [768] = 768, [769] = 769, - [770] = 77, - [771] = 78, - [772] = 79, + [770] = 138, + [771] = 731, + [772] = 772, [773] = 773, - [774] = 733, - [775] = 137, + [774] = 774, + [775] = 775, [776] = 776, [777] = 723, - [778] = 778, - [779] = 679, - [780] = 83, - [781] = 84, - [782] = 85, - [783] = 86, - [784] = 210, - [785] = 143, - [786] = 144, + [778] = 139, + [779] = 779, + [780] = 747, + [781] = 781, + [782] = 782, + [783] = 783, + [784] = 724, + [785] = 785, + [786] = 786, [787] = 787, - [788] = 788, - [789] = 560, + [788] = 140, + [789] = 789, [790] = 790, - [791] = 727, + [791] = 141, [792] = 792, [793] = 793, - [794] = 147, - [795] = 134, - [796] = 149, - [797] = 150, - [798] = 798, - [799] = 733, + [794] = 175, + [795] = 795, + [796] = 796, + [797] = 210, + [798] = 142, + [799] = 143, [800] = 800, - [801] = 110, - [802] = 111, - [803] = 723, - [804] = 112, - [805] = 113, - [806] = 114, - [807] = 116, - [808] = 119, - [809] = 120, - [810] = 131, - [811] = 133, - [812] = 136, - [813] = 138, - [814] = 140, - [815] = 145, - [816] = 146, - [817] = 166, - [818] = 167, + [801] = 144, + [802] = 802, + [803] = 803, + [804] = 145, + [805] = 731, + [806] = 146, + [807] = 147, + [808] = 808, + [809] = 809, + [810] = 109, + [811] = 723, + [812] = 149, + [813] = 747, + [814] = 814, + [815] = 150, + [816] = 724, + [817] = 151, + [818] = 92, [819] = 819, - [820] = 169, - [821] = 210, - [822] = 822, - [823] = 733, - [824] = 171, - [825] = 172, - [826] = 560, - [827] = 174, - [828] = 199, - [829] = 597, + [820] = 73, + [821] = 93, + [822] = 94, + [823] = 88, + [824] = 155, + [825] = 156, + [826] = 157, + [827] = 189, + [828] = 82, + [829] = 84, [830] = 830, - [831] = 560, - [832] = 202, - [833] = 597, - [834] = 729, - [835] = 730, - [836] = 731, + [831] = 831, + [832] = 731, + [833] = 154, + [834] = 724, + [835] = 72, + [836] = 723, [837] = 837, - [838] = 177, - [839] = 756, - [840] = 758, - [841] = 763, + [838] = 747, + [839] = 160, + [840] = 747, + [841] = 78, [842] = 842, - [843] = 560, - [844] = 597, - [845] = 210, - [846] = 729, - [847] = 730, - [848] = 731, - [849] = 849, - [850] = 850, - [851] = 756, - [852] = 758, - [853] = 763, - [854] = 560, - [855] = 115, - [856] = 597, - [857] = 118, - [858] = 729, - [859] = 730, - [860] = 731, - [861] = 210, - [862] = 597, - [863] = 756, - [864] = 758, - [865] = 763, - [866] = 121, - [867] = 122, - [868] = 123, - [869] = 729, - [870] = 730, - [871] = 731, - [872] = 125, - [873] = 126, - [874] = 756, - [875] = 758, - [876] = 763, - [877] = 761, - [878] = 767, - [879] = 879, - [880] = 761, - [881] = 767, - [882] = 761, - [883] = 767, - [884] = 761, - [885] = 767, - [886] = 849, - [887] = 849, - [888] = 849, - [889] = 849, - [890] = 127, - [891] = 128, - [892] = 129, - [893] = 130, - [894] = 148, + [843] = 843, + [844] = 560, + [845] = 845, + [846] = 846, + [847] = 79, + [848] = 737, + [849] = 280, + [850] = 169, + [851] = 561, + [852] = 852, + [853] = 853, + [854] = 170, + [855] = 705, + [856] = 726, + [857] = 727, + [858] = 730, + [859] = 732, + [860] = 733, + [861] = 705, + [862] = 726, + [863] = 727, + [864] = 730, + [865] = 732, + [866] = 733, + [867] = 173, + [868] = 705, + [869] = 726, + [870] = 727, + [871] = 730, + [872] = 732, + [873] = 733, + [874] = 174, + [875] = 705, + [876] = 726, + [877] = 727, + [878] = 730, + [879] = 732, + [880] = 733, + [881] = 738, + [882] = 853, + [883] = 738, + [884] = 853, + [885] = 738, + [886] = 853, + [887] = 738, + [888] = 853, + [889] = 779, + [890] = 779, + [891] = 779, + [892] = 779, + [893] = 893, + [894] = 894, [895] = 895, - [896] = 202, + [896] = 118, [897] = 897, [898] = 898, - [899] = 899, + [899] = 119, [900] = 900, [901] = 901, [902] = 902, - [903] = 177, + [903] = 903, [904] = 904, - [905] = 905, + [905] = 120, [906] = 906, [907] = 907, [908] = 908, [909] = 909, [910] = 910, [911] = 911, - [912] = 906, - [913] = 913, + [912] = 912, + [913] = 908, [914] = 914, - [915] = 907, - [916] = 909, - [917] = 917, - [918] = 918, - [919] = 919, - [920] = 920, + [915] = 915, + [916] = 916, + [917] = 901, + [918] = 902, + [919] = 912, + [920] = 916, [921] = 921, [922] = 922, [923] = 923, [924] = 924, - [925] = 904, - [926] = 901, - [927] = 927, - [928] = 900, - [929] = 115, - [930] = 930, + [925] = 925, + [926] = 926, + [927] = 921, + [928] = 115, + [929] = 122, + [930] = 113, [931] = 931, - [932] = 118, + [932] = 932, [933] = 933, - [934] = 905, - [935] = 121, - [936] = 122, - [937] = 123, - [938] = 125, - [939] = 126, - [940] = 127, - [941] = 128, - [942] = 129, - [943] = 130, - [944] = 944, - [945] = 132, - [946] = 134, - [947] = 135, - [948] = 137, - [949] = 949, - [950] = 950, - [951] = 900, - [952] = 902, + [934] = 160, + [935] = 935, + [936] = 126, + [937] = 155, + [938] = 156, + [939] = 116, + [940] = 932, + [941] = 941, + [942] = 157, + [943] = 943, + [944] = 895, + [945] = 189, + [946] = 932, + [947] = 947, + [948] = 948, + [949] = 895, + [950] = 895, + [951] = 951, + [952] = 952, [953] = 953, - [954] = 954, + [954] = 894, [955] = 955, - [956] = 906, - [957] = 957, - [958] = 914, - [959] = 907, - [960] = 901, - [961] = 909, - [962] = 901, - [963] = 963, - [964] = 905, - [965] = 918, - [966] = 919, - [967] = 920, - [968] = 921, - [969] = 922, - [970] = 923, - [971] = 906, - [972] = 924, + [956] = 951, + [957] = 951, + [958] = 169, + [959] = 900, + [960] = 960, + [961] = 922, + [962] = 962, + [963] = 904, + [964] = 964, + [965] = 951, + [966] = 923, + [967] = 914, + [968] = 968, + [969] = 170, + [970] = 911, + [971] = 971, + [972] = 908, [973] = 914, - [974] = 907, - [975] = 909, - [976] = 904, - [977] = 918, - [978] = 919, - [979] = 920, + [974] = 915, + [975] = 924, + [976] = 901, + [977] = 902, + [978] = 912, + [979] = 916, [980] = 921, [981] = 922, [982] = 923, [983] = 924, - [984] = 904, - [985] = 897, - [986] = 986, + [984] = 984, + [985] = 900, + [986] = 154, [987] = 987, - [988] = 895, + [988] = 915, [989] = 989, - [990] = 358, - [991] = 991, + [990] = 990, + [991] = 904, [992] = 992, [993] = 993, [994] = 994, [995] = 995, - [996] = 143, + [996] = 996, [997] = 997, - [998] = 144, + [998] = 998, [999] = 999, - [1000] = 1000, - [1001] = 141, - [1002] = 1002, + [1000] = 900, + [1001] = 1001, + [1002] = 173, [1003] = 1003, - [1004] = 1004, + [1004] = 174, [1005] = 1005, - [1006] = 1006, - [1007] = 902, - [1008] = 147, + [1006] = 121, + [1007] = 1007, + [1008] = 129, [1009] = 1009, - [1010] = 148, - [1011] = 149, - [1012] = 918, - [1013] = 897, - [1014] = 150, - [1015] = 1015, - [1016] = 1016, - [1017] = 900, - [1018] = 902, - [1019] = 1019, - [1020] = 110, - [1021] = 913, - [1022] = 111, - [1023] = 112, - [1024] = 113, - [1025] = 919, - [1026] = 920, - [1027] = 999, - [1028] = 1000, - [1029] = 921, - [1030] = 901, - [1031] = 114, - [1032] = 1032, - [1033] = 1033, - [1034] = 1034, - [1035] = 116, - [1036] = 119, - [1037] = 905, - [1038] = 1019, - [1039] = 1039, - [1040] = 913, - [1041] = 131, - [1042] = 133, - [1043] = 1043, - [1044] = 922, - [1045] = 898, - [1046] = 999, - [1047] = 1000, - [1048] = 906, - [1049] = 136, - [1050] = 914, - [1051] = 1032, - [1052] = 1033, - [1053] = 1034, - [1054] = 907, - [1055] = 909, - [1056] = 138, - [1057] = 1019, - [1058] = 918, - [1059] = 913, - [1060] = 919, - [1061] = 920, - [1062] = 921, - [1063] = 922, - [1064] = 923, - [1065] = 999, - [1066] = 1000, - [1067] = 924, - [1068] = 904, - [1069] = 1069, - [1070] = 1032, - [1071] = 1033, - [1072] = 1034, - [1073] = 140, - [1074] = 145, - [1075] = 1019, - [1076] = 146, - [1077] = 913, - [1078] = 1078, - [1079] = 166, - [1080] = 167, - [1081] = 914, - [1082] = 169, - [1083] = 999, - [1084] = 1000, - [1085] = 1019, - [1086] = 1033, - [1087] = 905, - [1088] = 1032, - [1089] = 1033, - [1090] = 1034, - [1091] = 913, - [1092] = 913, - [1093] = 913, - [1094] = 913, - [1095] = 913, - [1096] = 913, - [1097] = 913, - [1098] = 913, - [1099] = 913, - [1100] = 913, - [1101] = 913, - [1102] = 913, - [1103] = 913, - [1104] = 913, - [1105] = 895, - [1106] = 1034, - [1107] = 963, - [1108] = 1108, - [1109] = 1015, - [1110] = 953, - [1111] = 933, - [1112] = 1112, - [1113] = 963, - [1114] = 171, - [1115] = 1015, - [1116] = 953, - [1117] = 895, - [1118] = 172, - [1119] = 963, - [1120] = 923, - [1121] = 1015, - [1122] = 953, - [1123] = 895, - [1124] = 1124, - [1125] = 963, - [1126] = 174, - [1127] = 1015, - [1128] = 953, - [1129] = 199, - [1130] = 1043, - [1131] = 1131, - [1132] = 1043, - [1133] = 1133, - [1134] = 1043, - [1135] = 924, - [1136] = 1043, - [1137] = 1002, - [1138] = 1039, - [1139] = 1002, - [1140] = 1039, - [1141] = 1002, - [1142] = 1039, - [1143] = 1002, - [1144] = 1039, - [1145] = 986, - [1146] = 986, - [1147] = 986, - [1148] = 986, - [1149] = 897, - [1150] = 900, - [1151] = 902, - [1152] = 1032, - [1153] = 120, + [1010] = 911, + [1011] = 911, + [1012] = 908, + [1013] = 1013, + [1014] = 914, + [1015] = 175, + [1016] = 131, + [1017] = 915, + [1018] = 960, + [1019] = 111, + [1020] = 898, + [1021] = 941, + [1022] = 901, + [1023] = 902, + [1024] = 132, + [1025] = 133, + [1026] = 910, + [1027] = 933, + [1028] = 912, + [1029] = 916, + [1030] = 921, + [1031] = 1007, + [1032] = 952, + [1033] = 953, + [1034] = 134, + [1035] = 135, + [1036] = 136, + [1037] = 960, + [1038] = 1038, + [1039] = 898, + [1040] = 922, + [1041] = 923, + [1042] = 924, + [1043] = 137, + [1044] = 138, + [1045] = 910, + [1046] = 933, + [1047] = 1001, + [1048] = 904, + [1049] = 900, + [1050] = 1007, + [1051] = 952, + [1052] = 953, + [1053] = 139, + [1054] = 140, + [1055] = 141, + [1056] = 960, + [1057] = 1057, + [1058] = 898, + [1059] = 1059, + [1060] = 1060, + [1061] = 1061, + [1062] = 142, + [1063] = 143, + [1064] = 910, + [1065] = 933, + [1066] = 1066, + [1067] = 1067, + [1068] = 911, + [1069] = 1007, + [1070] = 952, + [1071] = 953, + [1072] = 144, + [1073] = 145, + [1074] = 960, + [1075] = 362, + [1076] = 898, + [1077] = 908, + [1078] = 914, + [1079] = 915, + [1080] = 146, + [1081] = 147, + [1082] = 910, + [1083] = 933, + [1084] = 904, + [1085] = 114, + [1086] = 901, + [1087] = 1007, + [1088] = 952, + [1089] = 953, + [1090] = 898, + [1091] = 898, + [1092] = 898, + [1093] = 898, + [1094] = 898, + [1095] = 898, + [1096] = 898, + [1097] = 898, + [1098] = 898, + [1099] = 898, + [1100] = 898, + [1101] = 898, + [1102] = 898, + [1103] = 898, + [1104] = 997, + [1105] = 1105, + [1106] = 935, + [1107] = 902, + [1108] = 926, + [1109] = 1038, + [1110] = 997, + [1111] = 912, + [1112] = 935, + [1113] = 916, + [1114] = 926, + [1115] = 1038, + [1116] = 997, + [1117] = 921, + [1118] = 935, + [1119] = 922, + [1120] = 926, + [1121] = 1038, + [1122] = 997, + [1123] = 923, + [1124] = 935, + [1125] = 924, + [1126] = 926, + [1127] = 1038, + [1128] = 932, + [1129] = 984, + [1130] = 895, + [1131] = 984, + [1132] = 951, + [1133] = 984, + [1134] = 1134, + [1135] = 984, + [1136] = 894, + [1137] = 1067, + [1138] = 894, + [1139] = 1067, + [1140] = 117, + [1141] = 1067, + [1142] = 894, + [1143] = 1067, + [1144] = 897, + [1145] = 897, + [1146] = 897, + [1147] = 897, + [1148] = 109, + [1149] = 149, + [1150] = 150, + [1151] = 151, + [1152] = 112, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -2957,288 +2960,267 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(19); - if ((!eof && lookahead == 00)) ADVANCE(32); - if (lookahead == '\t') ADVANCE(51); - if (lookahead == '\r') SKIP(17); - if (lookahead == ' ') ADVANCE(28); - if (lookahead == '"') ADVANCE(46); - if (lookahead == '#') ADVANCE(15); - if (lookahead == '%') ADVANCE(59); - if (lookahead == '.') ADVANCE(44); - if (lookahead == ':') ADVANCE(40); - if (lookahead == '=') ADVANCE(35); - if (lookahead == 'X') ADVANCE(25); - if (lookahead == '[') ADVANCE(21); - if (lookahead == '\\') ADVANCE(16); - if (lookahead == ']') ADVANCE(26); - if (lookahead == 'x') ADVANCE(23); - if (lookahead == '{') ADVANCE(42); - if (lookahead == '|') ADVANCE(29); - if (lookahead == '}') ADVANCE(43); + if (eof) ADVANCE(18); + if ((!eof && lookahead == 00)) ADVANCE(31); + if (lookahead == '\t') ADVANCE(49); + if (lookahead == '\r') SKIP(16); + if (lookahead == ' ') ADVANCE(27); + if (lookahead == '"') ADVANCE(44); + if (lookahead == '#') ADVANCE(14); + if (lookahead == '%') ADVANCE(56); + if (lookahead == '.') ADVANCE(42); + if (lookahead == ':') ADVANCE(39); + if (lookahead == '=') ADVANCE(34); + if (lookahead == 'X') ADVANCE(24); + if (lookahead == '[') ADVANCE(20); + if (lookahead == '\\') ADVANCE(15); + if (lookahead == ']') ADVANCE(25); + if (lookahead == 'x') ADVANCE(22); + if (lookahead == '{') ADVANCE(55); + if (lookahead == '|') ADVANCE(28); + if (lookahead == '}') ADVANCE(41); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(49); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(47); END_STATE(); case 1: - if ((!eof && lookahead == 00)) ADVANCE(32); - if (lookahead == '\r') ADVANCE(53); - if (lookahead == '#') ADVANCE(58); - if (lookahead == '%') ADVANCE(59); - if (lookahead == '.') ADVANCE(44); - if (lookahead == '[') ADVANCE(21); - if (lookahead == '{') ADVANCE(42); + if ((!eof && lookahead == 00)) ADVANCE(31); + if (lookahead == '\r') ADVANCE(51); + if (lookahead == '#') ADVANCE(54); + if (lookahead == '%') ADVANCE(56); + if (lookahead == '.') ADVANCE(42); + if (lookahead == '[') ADVANCE(20); + if (lookahead == '{') ADVANCE(55); if (lookahead != 0 && - lookahead != '\n') ADVANCE(52); + lookahead != '\n') ADVANCE(50); END_STATE(); case 2: - ADVANCE_MAP( - '\r', 55, - '#', 58, - '%', 59, - '.', 44, - '[', 21, - '{', 42, - '}', 43, - '\t', 51, - ' ', 51, - ); + if (lookahead == '\r') SKIP(3); + if (lookahead == '#') ADVANCE(14); + if (lookahead == '%') ADVANCE(56); + if (lookahead == '.') ADVANCE(42); + if (lookahead == '[') ADVANCE(19); + if (lookahead == ']') ADVANCE(13); + if (lookahead == '}') ADVANCE(41); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(49); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(57); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n') ADVANCE(52); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(58); END_STATE(); case 3: - if (lookahead == '\r') SKIP(4); - if (lookahead == '#') ADVANCE(15); - if (lookahead == '%') ADVANCE(59); - if (lookahead == '.') ADVANCE(44); - if (lookahead == '[') ADVANCE(20); - if (lookahead == ']') ADVANCE(14); - if (lookahead == '}') ADVANCE(43); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(51); + if (lookahead == '\r') SKIP(3); + if (lookahead == '#') ADVANCE(14); + if (lookahead == '%') ADVANCE(56); + if (lookahead == '.') ADVANCE(42); + if (lookahead == '[') ADVANCE(19); + if (lookahead == ']') ADVANCE(13); + if (lookahead == '}') ADVANCE(41); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(61); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(58); END_STATE(); case 4: - if (lookahead == '\r') SKIP(4); - if (lookahead == '#') ADVANCE(15); - if (lookahead == '%') ADVANCE(59); - if (lookahead == '.') ADVANCE(44); + if (lookahead == '\r') ADVANCE(53); + if (lookahead == '#') ADVANCE(54); + if (lookahead == '%') ADVANCE(56); + if (lookahead == '.') ADVANCE(42); if (lookahead == '[') ADVANCE(20); - if (lookahead == ']') ADVANCE(14); - if (lookahead == '}') ADVANCE(43); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(61); + if (lookahead == ']') ADVANCE(25); + if (lookahead == '{') ADVANCE(55); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(50); END_STATE(); case 5: - if (lookahead == '\r') ADVANCE(56); - if (lookahead == '#') ADVANCE(58); - if (lookahead == '%') ADVANCE(59); - if (lookahead == '.') ADVANCE(44); - if (lookahead == '[') ADVANCE(21); - if (lookahead == ']') ADVANCE(26); - if (lookahead == '{') ADVANCE(42); + if (lookahead == '\r') ADVANCE(35); + if (lookahead == '=') ADVANCE(34); if (lookahead != 0 && - lookahead != '\n') ADVANCE(52); + lookahead != '\t' && + lookahead != '\n' && + lookahead != ' ' && + lookahead != '{' && + lookahead != '}') ADVANCE(36); END_STATE(); case 6: - if (lookahead == '\r') ADVANCE(63); - if (lookahead == '%') ADVANCE(59); - if (lookahead == '\\') ADVANCE(64); + if (lookahead == '\r') ADVANCE(60); + if (lookahead == '%') ADVANCE(56); + if (lookahead == '\\') ADVANCE(61); if (lookahead != 0 && - lookahead != '\n') ADVANCE(62); + lookahead != '\n') ADVANCE(59); END_STATE(); case 7: - if (lookahead == '\r') ADVANCE(36); - if (lookahead == '=') ADVANCE(35); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != ' ' && - lookahead != '{' && - lookahead != '}') ADVANCE(37); + if (lookahead == '\r') SKIP(7); + if (lookahead == ' ') ADVANCE(26); + if (lookahead == 'X') ADVANCE(23); + if (lookahead == 'x') ADVANCE(21); END_STATE(); case 8: - if (lookahead == '\r') SKIP(8); - if (lookahead == ' ') ADVANCE(27); - if (lookahead == 'X') ADVANCE(24); - if (lookahead == 'x') ADVANCE(22); - END_STATE(); - case 9: - if (lookahead == '\r') ADVANCE(9); - if (lookahead == '"') ADVANCE(46); - if (lookahead == '-') ADVANCE(30); - if (lookahead == ':') ADVANCE(12); + if (lookahead == '\r') ADVANCE(8); + if (lookahead == '"') ADVANCE(44); + if (lookahead == '-') ADVANCE(29); + if (lookahead == ':') ADVANCE(11); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(13); + lookahead == ' ') ADVANCE(12); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(49); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(47); + END_STATE(); + case 9: + if (lookahead == '\r') ADVANCE(45); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"') ADVANCE(46); END_STATE(); case 10: if (lookahead == '\r') SKIP(10); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ') ADVANCE(41); + lookahead != ' ') ADVANCE(40); END_STATE(); case 11: - if (lookahead == '\r') ADVANCE(47); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '"') ADVANCE(48); + if (lookahead == '-') ADVANCE(29); END_STATE(); case 12: - if (lookahead == '-') ADVANCE(30); + if (lookahead == '-') ADVANCE(29); + if (lookahead == ':') ADVANCE(11); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(12); END_STATE(); case 13: - if (lookahead == '-') ADVANCE(30); - if (lookahead == ':') ADVANCE(12); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(13); + if (lookahead == ':') ADVANCE(32); END_STATE(); case 14: - if (lookahead == ':') ADVANCE(33); - END_STATE(); - case 15: if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '}') ADVANCE(45); + lookahead != '}') ADVANCE(43); END_STATE(); - case 16: + case 15: if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(60); + lookahead != '\r') ADVANCE(57); END_STATE(); - case 17: - if (eof) ADVANCE(19); - if ((!eof && lookahead == 00)) ADVANCE(32); - if (lookahead == '\r') SKIP(17); - if (lookahead == ' ') ADVANCE(27); - if (lookahead == '"') ADVANCE(46); - if (lookahead == '#') ADVANCE(15); - if (lookahead == '%') ADVANCE(59); - if (lookahead == '.') ADVANCE(44); - if (lookahead == ':') ADVANCE(40); - if (lookahead == '=') ADVANCE(35); - if (lookahead == 'X') ADVANCE(25); - if (lookahead == '[') ADVANCE(21); - if (lookahead == '\\') ADVANCE(16); - if (lookahead == ']') ADVANCE(26); - if (lookahead == 'x') ADVANCE(23); - if (lookahead == '{') ADVANCE(42); - if (lookahead == '|') ADVANCE(29); - if (lookahead == '}') ADVANCE(43); + case 16: + if (eof) ADVANCE(18); + if ((!eof && lookahead == 00)) ADVANCE(31); + if (lookahead == '\r') SKIP(16); + if (lookahead == ' ') ADVANCE(26); + if (lookahead == '"') ADVANCE(44); + if (lookahead == '#') ADVANCE(14); + if (lookahead == '%') ADVANCE(56); + if (lookahead == '.') ADVANCE(42); + if (lookahead == ':') ADVANCE(39); + if (lookahead == '=') ADVANCE(34); + if (lookahead == 'X') ADVANCE(24); + if (lookahead == '[') ADVANCE(20); + if (lookahead == '\\') ADVANCE(15); + if (lookahead == ']') ADVANCE(25); + if (lookahead == 'x') ADVANCE(22); + if (lookahead == '{') ADVANCE(55); + if (lookahead == '|') ADVANCE(28); + if (lookahead == '}') ADVANCE(41); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(49); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(47); END_STATE(); - case 18: - if (eof) ADVANCE(19); - if (lookahead == '\r') ADVANCE(54); - if (lookahead == '#') ADVANCE(58); - if (lookahead == '%') ADVANCE(59); - if (lookahead == '.') ADVANCE(44); - if (lookahead == '[') ADVANCE(21); - if (lookahead == '{') ADVANCE(42); + case 17: + if (eof) ADVANCE(18); + if (lookahead == '\r') ADVANCE(52); + if (lookahead == '#') ADVANCE(54); + if (lookahead == '%') ADVANCE(56); + if (lookahead == '.') ADVANCE(42); + if (lookahead == '[') ADVANCE(20); + if (lookahead == '{') ADVANCE(55); if (lookahead != 0 && - lookahead != '\n') ADVANCE(52); + lookahead != '\n') ADVANCE(50); END_STATE(); - case 19: + case 18: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 20: + case 19: ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); - case 21: + case 20: ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '^') ADVANCE(34); + if (lookahead == '^') ADVANCE(33); END_STATE(); - case 22: + case 21: ACCEPT_TOKEN(anon_sym_x); END_STATE(); - case 23: + case 22: ACCEPT_TOKEN(anon_sym_x); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(49); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(47); END_STATE(); - case 24: + case 23: ACCEPT_TOKEN(anon_sym_X); END_STATE(); - case 25: + case 24: ACCEPT_TOKEN(anon_sym_X); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(49); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(47); END_STATE(); - case 26: + case 25: ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); - case 27: + case 26: ACCEPT_TOKEN(anon_sym_SPACE); END_STATE(); - case 28: + case 27: ACCEPT_TOKEN(anon_sym_SPACE); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(51); + lookahead == ' ') ADVANCE(49); END_STATE(); - case 29: + case 28: ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); - case 30: + case 29: ACCEPT_TOKEN(sym_table_cell_alignment); - if (lookahead == '-') ADVANCE(30); - if (lookahead == ':') ADVANCE(31); + if (lookahead == '-') ADVANCE(29); + if (lookahead == ':') ADVANCE(30); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(31); + lookahead == ' ') ADVANCE(30); END_STATE(); - case 31: + case 30: ACCEPT_TOKEN(sym_table_cell_alignment); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(31); + lookahead == ' ') ADVANCE(30); END_STATE(); - case 32: + case 31: ACCEPT_TOKEN(anon_sym_NULL); END_STATE(); - case 33: + case 32: ACCEPT_TOKEN(anon_sym_RBRACK_COLON); END_STATE(); - case 34: + case 33: ACCEPT_TOKEN(anon_sym_LBRACK_CARET); END_STATE(); - case 35: + case 34: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 36: + case 35: ACCEPT_TOKEN(sym_language); - if (lookahead == '\r') ADVANCE(36); + if (lookahead == '\r') ADVANCE(35); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && lookahead != '=' && lookahead != '{' && - lookahead != '}') ADVANCE(37); + lookahead != '}') ADVANCE(36); END_STATE(); - case 37: + case 36: ACCEPT_TOKEN(sym_language); if (lookahead != 0 && lookahead != '\t' && @@ -3246,177 +3228,152 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ' && lookahead != '=' && lookahead != '{' && - lookahead != '}') ADVANCE(37); + lookahead != '}') ADVANCE(36); END_STATE(); - case 38: + case 37: ACCEPT_TOKEN(aux_sym__line_token1); - if (lookahead == '\r') ADVANCE(38); + if (lookahead == '\r') ADVANCE(37); if (lookahead != 0 && - lookahead != '\n') ADVANCE(39); + lookahead != '\n') ADVANCE(38); END_STATE(); - case 39: + case 38: ACCEPT_TOKEN(aux_sym__line_token1); if (lookahead != 0 && - lookahead != '\n') ADVANCE(39); + lookahead != '\n') ADVANCE(38); END_STATE(); - case 40: + case 39: ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); - case 41: + case 40: ACCEPT_TOKEN(sym_link_destination); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ') ADVANCE(41); + lookahead != ' ') ADVANCE(40); END_STATE(); - case 42: - ACCEPT_TOKEN(anon_sym_LBRACE); - END_STATE(); - case 43: + case 41: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 44: + case 42: ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); - case 45: + case 43: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '}') ADVANCE(45); + lookahead != '}') ADVANCE(43); END_STATE(); - case 46: + case 44: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 47: + case 45: ACCEPT_TOKEN(aux_sym_value_token1); - if (lookahead == '\r') ADVANCE(47); + if (lookahead == '\r') ADVANCE(45); if (lookahead != 0 && lookahead != '\n' && - lookahead != '"') ADVANCE(48); + lookahead != '"') ADVANCE(46); END_STATE(); - case 48: + case 46: ACCEPT_TOKEN(aux_sym_value_token1); if (lookahead != 0 && lookahead != '\n' && - lookahead != '"') ADVANCE(48); + lookahead != '"') ADVANCE(46); END_STATE(); - case 49: + case 47: ACCEPT_TOKEN(aux_sym_value_token2); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(49); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(47); END_STATE(); - case 50: + case 48: ACCEPT_TOKEN(sym__whitespace); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(50); + lookahead == ' ') ADVANCE(48); END_STATE(); - case 51: + case 49: ACCEPT_TOKEN(sym__whitespace1); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(51); - END_STATE(); - case 52: - ACCEPT_TOKEN(aux_sym__inline_token1); + lookahead == ' ') ADVANCE(49); END_STATE(); - case 53: + case 50: ACCEPT_TOKEN(aux_sym__inline_token1); - if ((!eof && lookahead == 00)) ADVANCE(32); - if (lookahead == '\r') ADVANCE(53); - if (lookahead == '#') ADVANCE(58); - if (lookahead == '%') ADVANCE(59); - if (lookahead == '.') ADVANCE(44); - if (lookahead == '[') ADVANCE(21); - if (lookahead == '{') ADVANCE(42); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(52); END_STATE(); - case 54: + case 51: ACCEPT_TOKEN(aux_sym__inline_token1); - if (lookahead == '\r') ADVANCE(54); - if (lookahead == '#') ADVANCE(58); - if (lookahead == '%') ADVANCE(59); - if (lookahead == '.') ADVANCE(44); - if (lookahead == '[') ADVANCE(21); - if (lookahead == '{') ADVANCE(42); + if ((!eof && lookahead == 00)) ADVANCE(31); + if (lookahead == '\r') ADVANCE(51); + if (lookahead == '#') ADVANCE(54); + if (lookahead == '%') ADVANCE(56); + if (lookahead == '.') ADVANCE(42); + if (lookahead == '[') ADVANCE(20); + if (lookahead == '{') ADVANCE(55); if (lookahead != 0 && - lookahead != '\n') ADVANCE(52); + lookahead != '\n') ADVANCE(50); END_STATE(); - case 55: + case 52: ACCEPT_TOKEN(aux_sym__inline_token1); - if (lookahead == '\r') ADVANCE(55); - if (lookahead == '#') ADVANCE(58); - if (lookahead == '%') ADVANCE(59); - if (lookahead == '.') ADVANCE(44); - if (lookahead == '[') ADVANCE(21); - if (lookahead == '{') ADVANCE(42); - if (lookahead == '}') ADVANCE(43); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(57); + if (lookahead == '\r') ADVANCE(52); + if (lookahead == '#') ADVANCE(54); + if (lookahead == '%') ADVANCE(56); + if (lookahead == '.') ADVANCE(42); + if (lookahead == '[') ADVANCE(20); + if (lookahead == '{') ADVANCE(55); if (lookahead != 0 && - lookahead != '\n') ADVANCE(52); + lookahead != '\n') ADVANCE(50); END_STATE(); - case 56: + case 53: ACCEPT_TOKEN(aux_sym__inline_token1); - if (lookahead == '\r') ADVANCE(56); - if (lookahead == '#') ADVANCE(58); - if (lookahead == '%') ADVANCE(59); - if (lookahead == '.') ADVANCE(44); - if (lookahead == '[') ADVANCE(21); - if (lookahead == ']') ADVANCE(26); - if (lookahead == '{') ADVANCE(42); + if (lookahead == '\r') ADVANCE(53); + if (lookahead == '#') ADVANCE(54); + if (lookahead == '%') ADVANCE(56); + if (lookahead == '.') ADVANCE(42); + if (lookahead == '[') ADVANCE(20); + if (lookahead == ']') ADVANCE(25); + if (lookahead == '{') ADVANCE(55); if (lookahead != 0 && - lookahead != '\n') ADVANCE(52); - END_STATE(); - case 57: - ACCEPT_TOKEN(aux_sym__inline_token1); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(61); + lookahead != '\n') ADVANCE(50); END_STATE(); - case 58: + case 54: ACCEPT_TOKEN(aux_sym__inline_token1); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '}') ADVANCE(45); + lookahead != '}') ADVANCE(43); END_STATE(); - case 59: + case 55: + ACCEPT_TOKEN(anon_sym_LBRACE); + END_STATE(); + case 56: ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); - case 60: + case 57: ACCEPT_TOKEN(sym_backslash_escape); END_STATE(); - case 61: + case 58: ACCEPT_TOKEN(sym__id); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(61); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(58); END_STATE(); - case 62: - ACCEPT_TOKEN(aux_sym__comment_no_newline_token1); + case 59: + ACCEPT_TOKEN(aux_sym_comment_token1); END_STATE(); - case 63: - ACCEPT_TOKEN(aux_sym__comment_no_newline_token1); - if (lookahead == '\r') ADVANCE(63); - if (lookahead == '\\') ADVANCE(64); + case 60: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead == '\r') ADVANCE(60); + if (lookahead == '\\') ADVANCE(61); if (lookahead != 0 && lookahead != '\n' && - lookahead != '%') ADVANCE(62); + lookahead != '%') ADVANCE(59); END_STATE(); - case 64: - ACCEPT_TOKEN(aux_sym__comment_no_newline_token1); + case 61: + ACCEPT_TOKEN(aux_sym_comment_token1); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(60); + lookahead != '\r') ADVANCE(57); END_STATE(); default: return false; @@ -3425,394 +3382,394 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 18, .external_lex_state = 2}, - [2] = {.lex_state = 18, .external_lex_state = 3}, - [3] = {.lex_state = 18, .external_lex_state = 3}, - [4] = {.lex_state = 18, .external_lex_state = 3}, - [5] = {.lex_state = 18, .external_lex_state = 4}, - [6] = {.lex_state = 18, .external_lex_state = 3}, - [7] = {.lex_state = 18, .external_lex_state = 4}, - [8] = {.lex_state = 18, .external_lex_state = 4}, - [9] = {.lex_state = 18, .external_lex_state = 4}, - [10] = {.lex_state = 18, .external_lex_state = 4}, - [11] = {.lex_state = 18, .external_lex_state = 4}, - [12] = {.lex_state = 18, .external_lex_state = 4}, - [13] = {.lex_state = 18, .external_lex_state = 4}, - [14] = {.lex_state = 18, .external_lex_state = 4}, - [15] = {.lex_state = 18, .external_lex_state = 4}, - [16] = {.lex_state = 18, .external_lex_state = 4}, - [17] = {.lex_state = 18, .external_lex_state = 4}, - [18] = {.lex_state = 18, .external_lex_state = 4}, - [19] = {.lex_state = 18, .external_lex_state = 4}, - [20] = {.lex_state = 18, .external_lex_state = 4}, - [21] = {.lex_state = 18, .external_lex_state = 4}, - [22] = {.lex_state = 18, .external_lex_state = 3}, - [23] = {.lex_state = 18, .external_lex_state = 3}, - [24] = {.lex_state = 18, .external_lex_state = 3}, - [25] = {.lex_state = 18, .external_lex_state = 3}, - [26] = {.lex_state = 18, .external_lex_state = 3}, - [27] = {.lex_state = 18, .external_lex_state = 3}, - [28] = {.lex_state = 18, .external_lex_state = 3}, - [29] = {.lex_state = 18, .external_lex_state = 3}, - [30] = {.lex_state = 18, .external_lex_state = 3}, - [31] = {.lex_state = 18, .external_lex_state = 3}, - [32] = {.lex_state = 18, .external_lex_state = 3}, - [33] = {.lex_state = 18, .external_lex_state = 3}, - [34] = {.lex_state = 18, .external_lex_state = 3}, - [35] = {.lex_state = 18, .external_lex_state = 3}, - [36] = {.lex_state = 18, .external_lex_state = 3}, - [37] = {.lex_state = 18, .external_lex_state = 3}, - [38] = {.lex_state = 18, .external_lex_state = 3}, - [39] = {.lex_state = 18, .external_lex_state = 3}, - [40] = {.lex_state = 18, .external_lex_state = 3}, - [41] = {.lex_state = 18, .external_lex_state = 3}, - [42] = {.lex_state = 18, .external_lex_state = 3}, - [43] = {.lex_state = 18, .external_lex_state = 3}, - [44] = {.lex_state = 18, .external_lex_state = 3}, - [45] = {.lex_state = 18, .external_lex_state = 3}, - [46] = {.lex_state = 18, .external_lex_state = 3}, - [47] = {.lex_state = 18, .external_lex_state = 3}, - [48] = {.lex_state = 18, .external_lex_state = 3}, - [49] = {.lex_state = 18, .external_lex_state = 3}, - [50] = {.lex_state = 18, .external_lex_state = 3}, - [51] = {.lex_state = 18, .external_lex_state = 3}, - [52] = {.lex_state = 18, .external_lex_state = 3}, - [53] = {.lex_state = 18, .external_lex_state = 4}, - [54] = {.lex_state = 18, .external_lex_state = 3}, - [55] = {.lex_state = 18, .external_lex_state = 3}, - [56] = {.lex_state = 18, .external_lex_state = 3}, - [57] = {.lex_state = 18, .external_lex_state = 5}, - [58] = {.lex_state = 18, .external_lex_state = 3}, - [59] = {.lex_state = 18, .external_lex_state = 5}, - [60] = {.lex_state = 18, .external_lex_state = 3}, - [61] = {.lex_state = 18, .external_lex_state = 5}, - [62] = {.lex_state = 18, .external_lex_state = 3}, - [63] = {.lex_state = 18, .external_lex_state = 5}, - [64] = {.lex_state = 18, .external_lex_state = 5}, - [65] = {.lex_state = 18, .external_lex_state = 6}, - [66] = {.lex_state = 18, .external_lex_state = 7}, - [67] = {.lex_state = 18, .external_lex_state = 8}, - [68] = {.lex_state = 18, .external_lex_state = 8}, - [69] = {.lex_state = 18, .external_lex_state = 7}, - [70] = {.lex_state = 18, .external_lex_state = 8}, - [71] = {.lex_state = 18, .external_lex_state = 7}, - [72] = {.lex_state = 18, .external_lex_state = 8}, - [73] = {.lex_state = 18, .external_lex_state = 7}, - [74] = {.lex_state = 18, .external_lex_state = 7}, - [75] = {.lex_state = 18, .external_lex_state = 9}, - [76] = {.lex_state = 18, .external_lex_state = 9}, - [77] = {.lex_state = 18, .external_lex_state = 10}, - [78] = {.lex_state = 18, .external_lex_state = 10}, - [79] = {.lex_state = 18, .external_lex_state = 10}, - [80] = {.lex_state = 18, .external_lex_state = 7}, - [81] = {.lex_state = 18, .external_lex_state = 7}, - [82] = {.lex_state = 18, .external_lex_state = 7}, - [83] = {.lex_state = 18, .external_lex_state = 9}, - [84] = {.lex_state = 18, .external_lex_state = 10}, - [85] = {.lex_state = 18, .external_lex_state = 10}, - [86] = {.lex_state = 18, .external_lex_state = 11}, - [87] = {.lex_state = 18, .external_lex_state = 11}, - [88] = {.lex_state = 18, .external_lex_state = 12}, - [89] = {.lex_state = 18, .external_lex_state = 8}, - [90] = {.lex_state = 18, .external_lex_state = 13}, - [91] = {.lex_state = 18, .external_lex_state = 8}, - [92] = {.lex_state = 18, .external_lex_state = 12}, - [93] = {.lex_state = 18, .external_lex_state = 8}, - [94] = {.lex_state = 18, .external_lex_state = 8}, - [95] = {.lex_state = 18, .external_lex_state = 12}, - [96] = {.lex_state = 18, .external_lex_state = 13}, - [97] = {.lex_state = 18, .external_lex_state = 8}, - [98] = {.lex_state = 18, .external_lex_state = 7}, - [99] = {.lex_state = 18, .external_lex_state = 8}, - [100] = {.lex_state = 18, .external_lex_state = 13}, - [101] = {.lex_state = 18, .external_lex_state = 13}, - [102] = {.lex_state = 18, .external_lex_state = 12}, - [103] = {.lex_state = 18, .external_lex_state = 12}, - [104] = {.lex_state = 18, .external_lex_state = 12}, - [105] = {.lex_state = 18, .external_lex_state = 9}, - [106] = {.lex_state = 18, .external_lex_state = 10}, - [107] = {.lex_state = 18, .external_lex_state = 7}, - [108] = {.lex_state = 18, .external_lex_state = 14}, - [109] = {.lex_state = 18, .external_lex_state = 4}, - [110] = {.lex_state = 18, .external_lex_state = 3}, - [111] = {.lex_state = 18, .external_lex_state = 3}, - [112] = {.lex_state = 18, .external_lex_state = 3}, - [113] = {.lex_state = 18, .external_lex_state = 3}, - [114] = {.lex_state = 18, .external_lex_state = 3}, - [115] = {.lex_state = 18, .external_lex_state = 3}, - [116] = {.lex_state = 18, .external_lex_state = 3}, - [117] = {.lex_state = 18, .external_lex_state = 3}, - [118] = {.lex_state = 18, .external_lex_state = 3}, - [119] = {.lex_state = 18, .external_lex_state = 3}, - [120] = {.lex_state = 18, .external_lex_state = 3}, - [121] = {.lex_state = 18, .external_lex_state = 3}, - [122] = {.lex_state = 18, .external_lex_state = 3}, - [123] = {.lex_state = 18, .external_lex_state = 3}, - [124] = {.lex_state = 18, .external_lex_state = 3}, - [125] = {.lex_state = 18, .external_lex_state = 3}, - [126] = {.lex_state = 18, .external_lex_state = 3}, - [127] = {.lex_state = 18, .external_lex_state = 3}, - [128] = {.lex_state = 18, .external_lex_state = 3}, - [129] = {.lex_state = 18, .external_lex_state = 3}, - [130] = {.lex_state = 18, .external_lex_state = 3}, - [131] = {.lex_state = 18, .external_lex_state = 3}, - [132] = {.lex_state = 18, .external_lex_state = 3}, - [133] = {.lex_state = 18, .external_lex_state = 3}, - [134] = {.lex_state = 18, .external_lex_state = 3}, - [135] = {.lex_state = 18, .external_lex_state = 3}, - [136] = {.lex_state = 18, .external_lex_state = 3}, - [137] = {.lex_state = 18, .external_lex_state = 3}, - [138] = {.lex_state = 18, .external_lex_state = 3}, - [139] = {.lex_state = 18, .external_lex_state = 4}, - [140] = {.lex_state = 18, .external_lex_state = 3}, - [141] = {.lex_state = 18, .external_lex_state = 4}, - [142] = {.lex_state = 18, .external_lex_state = 4}, - [143] = {.lex_state = 18, .external_lex_state = 4}, - [144] = {.lex_state = 18, .external_lex_state = 4}, - [145] = {.lex_state = 18, .external_lex_state = 3}, - [146] = {.lex_state = 18, .external_lex_state = 3}, - [147] = {.lex_state = 18, .external_lex_state = 4}, - [148] = {.lex_state = 18, .external_lex_state = 4}, - [149] = {.lex_state = 18, .external_lex_state = 4}, - [150] = {.lex_state = 18, .external_lex_state = 4}, - [151] = {.lex_state = 18, .external_lex_state = 4}, - [152] = {.lex_state = 18, .external_lex_state = 4}, - [153] = {.lex_state = 18, .external_lex_state = 4}, - [154] = {.lex_state = 18, .external_lex_state = 4}, - [155] = {.lex_state = 18, .external_lex_state = 4}, - [156] = {.lex_state = 18, .external_lex_state = 4}, - [157] = {.lex_state = 18, .external_lex_state = 4}, - [158] = {.lex_state = 18, .external_lex_state = 4}, - [159] = {.lex_state = 18, .external_lex_state = 4}, - [160] = {.lex_state = 18, .external_lex_state = 4}, - [161] = {.lex_state = 18, .external_lex_state = 4}, - [162] = {.lex_state = 18, .external_lex_state = 4}, - [163] = {.lex_state = 18, .external_lex_state = 4}, - [164] = {.lex_state = 18, .external_lex_state = 4}, - [165] = {.lex_state = 18, .external_lex_state = 4}, - [166] = {.lex_state = 18, .external_lex_state = 4}, - [167] = {.lex_state = 18, .external_lex_state = 4}, - [168] = {.lex_state = 18, .external_lex_state = 3}, - [169] = {.lex_state = 18, .external_lex_state = 4}, - [170] = {.lex_state = 18, .external_lex_state = 3}, - [171] = {.lex_state = 18, .external_lex_state = 4}, - [172] = {.lex_state = 18, .external_lex_state = 4}, - [173] = {.lex_state = 18, .external_lex_state = 3}, - [174] = {.lex_state = 18, .external_lex_state = 4}, - [175] = {.lex_state = 18, .external_lex_state = 3}, - [176] = {.lex_state = 18, .external_lex_state = 3}, - [177] = {.lex_state = 18, .external_lex_state = 4}, - [178] = {.lex_state = 18, .external_lex_state = 3}, - [179] = {.lex_state = 18, .external_lex_state = 3}, - [180] = {.lex_state = 18, .external_lex_state = 4}, - [181] = {.lex_state = 18, .external_lex_state = 3}, - [182] = {.lex_state = 18, .external_lex_state = 4}, - [183] = {.lex_state = 18, .external_lex_state = 4}, - [184] = {.lex_state = 18, .external_lex_state = 4}, - [185] = {.lex_state = 18, .external_lex_state = 4}, - [186] = {.lex_state = 18, .external_lex_state = 4}, - [187] = {.lex_state = 18, .external_lex_state = 4}, - [188] = {.lex_state = 18, .external_lex_state = 4}, - [189] = {.lex_state = 18, .external_lex_state = 4}, - [190] = {.lex_state = 18, .external_lex_state = 4}, - [191] = {.lex_state = 18, .external_lex_state = 4}, - [192] = {.lex_state = 18, .external_lex_state = 4}, - [193] = {.lex_state = 18, .external_lex_state = 4}, - [194] = {.lex_state = 18, .external_lex_state = 4}, - [195] = {.lex_state = 18, .external_lex_state = 4}, - [196] = {.lex_state = 18, .external_lex_state = 4}, - [197] = {.lex_state = 18, .external_lex_state = 3}, - [198] = {.lex_state = 18, .external_lex_state = 3}, - [199] = {.lex_state = 18, .external_lex_state = 4}, - [200] = {.lex_state = 18, .external_lex_state = 3}, - [201] = {.lex_state = 18, .external_lex_state = 3}, - [202] = {.lex_state = 18, .external_lex_state = 3}, - [203] = {.lex_state = 18, .external_lex_state = 3}, - [204] = {.lex_state = 18, .external_lex_state = 3}, - [205] = {.lex_state = 18, .external_lex_state = 3}, - [206] = {.lex_state = 18, .external_lex_state = 3}, - [207] = {.lex_state = 18, .external_lex_state = 4}, - [208] = {.lex_state = 18, .external_lex_state = 6}, - [209] = {.lex_state = 18, .external_lex_state = 3}, - [210] = {.lex_state = 18, .external_lex_state = 6}, - [211] = {.lex_state = 18, .external_lex_state = 15}, - [212] = {.lex_state = 18, .external_lex_state = 15}, - [213] = {.lex_state = 18, .external_lex_state = 15}, - [214] = {.lex_state = 18, .external_lex_state = 15}, - [215] = {.lex_state = 18, .external_lex_state = 15}, - [216] = {.lex_state = 18, .external_lex_state = 15}, - [217] = {.lex_state = 18, .external_lex_state = 15}, - [218] = {.lex_state = 18, .external_lex_state = 15}, - [219] = {.lex_state = 18, .external_lex_state = 15}, - [220] = {.lex_state = 18, .external_lex_state = 15}, - [221] = {.lex_state = 18, .external_lex_state = 16}, - [222] = {.lex_state = 18, .external_lex_state = 16}, - [223] = {.lex_state = 18, .external_lex_state = 16}, - [224] = {.lex_state = 18, .external_lex_state = 16}, - [225] = {.lex_state = 18, .external_lex_state = 16}, - [226] = {.lex_state = 2, .external_lex_state = 17}, - [227] = {.lex_state = 2, .external_lex_state = 17}, - [228] = {.lex_state = 2, .external_lex_state = 17}, - [229] = {.lex_state = 2, .external_lex_state = 17}, - [230] = {.lex_state = 2, .external_lex_state = 17}, - [231] = {.lex_state = 18, .external_lex_state = 18}, - [232] = {.lex_state = 18, .external_lex_state = 18}, - [233] = {.lex_state = 18, .external_lex_state = 18}, - [234] = {.lex_state = 18, .external_lex_state = 19}, - [235] = {.lex_state = 18, .external_lex_state = 19}, - [236] = {.lex_state = 0, .external_lex_state = 20}, - [237] = {.lex_state = 0, .external_lex_state = 21}, - [238] = {.lex_state = 18, .external_lex_state = 19}, - [239] = {.lex_state = 18, .external_lex_state = 22}, - [240] = {.lex_state = 0, .external_lex_state = 20}, - [241] = {.lex_state = 0, .external_lex_state = 23}, - [242] = {.lex_state = 1, .external_lex_state = 24}, - [243] = {.lex_state = 0, .external_lex_state = 23}, - [244] = {.lex_state = 1, .external_lex_state = 24}, - [245] = {.lex_state = 1, .external_lex_state = 24}, - [246] = {.lex_state = 1, .external_lex_state = 24}, - [247] = {.lex_state = 1, .external_lex_state = 24}, - [248] = {.lex_state = 0, .external_lex_state = 21}, - [249] = {.lex_state = 1, .external_lex_state = 24}, - [250] = {.lex_state = 18, .external_lex_state = 17}, - [251] = {.lex_state = 18, .external_lex_state = 22}, - [252] = {.lex_state = 18, .external_lex_state = 17}, - [253] = {.lex_state = 18, .external_lex_state = 17}, - [254] = {.lex_state = 18, .external_lex_state = 17}, - [255] = {.lex_state = 18, .external_lex_state = 17}, - [256] = {.lex_state = 18}, - [257] = {.lex_state = 18}, - [258] = {.lex_state = 18}, - [259] = {.lex_state = 18}, - [260] = {.lex_state = 3}, - [261] = {.lex_state = 18}, - [262] = {.lex_state = 3}, - [263] = {.lex_state = 3}, - [264] = {.lex_state = 3}, - [265] = {.lex_state = 18}, - [266] = {.lex_state = 18}, - [267] = {.lex_state = 3}, - [268] = {.lex_state = 3}, - [269] = {.lex_state = 18}, - [270] = {.lex_state = 18}, - [271] = {.lex_state = 18, .external_lex_state = 17}, - [272] = {.lex_state = 18}, - [273] = {.lex_state = 18, .external_lex_state = 17}, - [274] = {.lex_state = 18, .external_lex_state = 25}, - [275] = {.lex_state = 5}, - [276] = {.lex_state = 18}, - [277] = {.lex_state = 18}, - [278] = {.lex_state = 5}, - [279] = {.lex_state = 18, .external_lex_state = 25}, - [280] = {.lex_state = 18, .external_lex_state = 17}, - [281] = {.lex_state = 18, .external_lex_state = 22}, - [282] = {.lex_state = 1, .external_lex_state = 24}, - [283] = {.lex_state = 18, .external_lex_state = 22}, - [284] = {.lex_state = 1, .external_lex_state = 24}, + [1] = {.lex_state = 17, .external_lex_state = 2}, + [2] = {.lex_state = 17, .external_lex_state = 3}, + [3] = {.lex_state = 17, .external_lex_state = 3}, + [4] = {.lex_state = 17, .external_lex_state = 4}, + [5] = {.lex_state = 17, .external_lex_state = 3}, + [6] = {.lex_state = 17, .external_lex_state = 4}, + [7] = {.lex_state = 17, .external_lex_state = 3}, + [8] = {.lex_state = 17, .external_lex_state = 4}, + [9] = {.lex_state = 17, .external_lex_state = 4}, + [10] = {.lex_state = 17, .external_lex_state = 4}, + [11] = {.lex_state = 17, .external_lex_state = 4}, + [12] = {.lex_state = 17, .external_lex_state = 4}, + [13] = {.lex_state = 17, .external_lex_state = 4}, + [14] = {.lex_state = 17, .external_lex_state = 4}, + [15] = {.lex_state = 17, .external_lex_state = 4}, + [16] = {.lex_state = 17, .external_lex_state = 4}, + [17] = {.lex_state = 17, .external_lex_state = 4}, + [18] = {.lex_state = 17, .external_lex_state = 4}, + [19] = {.lex_state = 17, .external_lex_state = 4}, + [20] = {.lex_state = 17, .external_lex_state = 4}, + [21] = {.lex_state = 17, .external_lex_state = 4}, + [22] = {.lex_state = 17, .external_lex_state = 3}, + [23] = {.lex_state = 17, .external_lex_state = 3}, + [24] = {.lex_state = 17, .external_lex_state = 3}, + [25] = {.lex_state = 17, .external_lex_state = 3}, + [26] = {.lex_state = 17, .external_lex_state = 3}, + [27] = {.lex_state = 17, .external_lex_state = 3}, + [28] = {.lex_state = 17, .external_lex_state = 3}, + [29] = {.lex_state = 17, .external_lex_state = 3}, + [30] = {.lex_state = 17, .external_lex_state = 3}, + [31] = {.lex_state = 17, .external_lex_state = 3}, + [32] = {.lex_state = 17, .external_lex_state = 3}, + [33] = {.lex_state = 17, .external_lex_state = 3}, + [34] = {.lex_state = 17, .external_lex_state = 3}, + [35] = {.lex_state = 17, .external_lex_state = 3}, + [36] = {.lex_state = 17, .external_lex_state = 3}, + [37] = {.lex_state = 17, .external_lex_state = 3}, + [38] = {.lex_state = 17, .external_lex_state = 3}, + [39] = {.lex_state = 17, .external_lex_state = 3}, + [40] = {.lex_state = 17, .external_lex_state = 3}, + [41] = {.lex_state = 17, .external_lex_state = 3}, + [42] = {.lex_state = 17, .external_lex_state = 3}, + [43] = {.lex_state = 17, .external_lex_state = 3}, + [44] = {.lex_state = 17, .external_lex_state = 3}, + [45] = {.lex_state = 17, .external_lex_state = 3}, + [46] = {.lex_state = 17, .external_lex_state = 3}, + [47] = {.lex_state = 17, .external_lex_state = 3}, + [48] = {.lex_state = 17, .external_lex_state = 3}, + [49] = {.lex_state = 17, .external_lex_state = 3}, + [50] = {.lex_state = 17, .external_lex_state = 3}, + [51] = {.lex_state = 17, .external_lex_state = 3}, + [52] = {.lex_state = 17, .external_lex_state = 3}, + [53] = {.lex_state = 17, .external_lex_state = 3}, + [54] = {.lex_state = 17, .external_lex_state = 4}, + [55] = {.lex_state = 17, .external_lex_state = 3}, + [56] = {.lex_state = 17, .external_lex_state = 3}, + [57] = {.lex_state = 17, .external_lex_state = 5}, + [58] = {.lex_state = 17, .external_lex_state = 5}, + [59] = {.lex_state = 17, .external_lex_state = 5}, + [60] = {.lex_state = 17, .external_lex_state = 3}, + [61] = {.lex_state = 17, .external_lex_state = 3}, + [62] = {.lex_state = 17, .external_lex_state = 5}, + [63] = {.lex_state = 17, .external_lex_state = 3}, + [64] = {.lex_state = 17, .external_lex_state = 5}, + [65] = {.lex_state = 17, .external_lex_state = 6}, + [66] = {.lex_state = 17, .external_lex_state = 7}, + [67] = {.lex_state = 17, .external_lex_state = 8}, + [68] = {.lex_state = 17, .external_lex_state = 8}, + [69] = {.lex_state = 17, .external_lex_state = 7}, + [70] = {.lex_state = 17, .external_lex_state = 8}, + [71] = {.lex_state = 17, .external_lex_state = 7}, + [72] = {.lex_state = 17, .external_lex_state = 9}, + [73] = {.lex_state = 17, .external_lex_state = 10}, + [74] = {.lex_state = 17, .external_lex_state = 7}, + [75] = {.lex_state = 17, .external_lex_state = 7}, + [76] = {.lex_state = 17, .external_lex_state = 7}, + [77] = {.lex_state = 17, .external_lex_state = 10}, + [78] = {.lex_state = 17, .external_lex_state = 11}, + [79] = {.lex_state = 17, .external_lex_state = 11}, + [80] = {.lex_state = 17, .external_lex_state = 12}, + [81] = {.lex_state = 17, .external_lex_state = 7}, + [82] = {.lex_state = 17, .external_lex_state = 11}, + [83] = {.lex_state = 17, .external_lex_state = 8}, + [84] = {.lex_state = 17, .external_lex_state = 13}, + [85] = {.lex_state = 17, .external_lex_state = 7}, + [86] = {.lex_state = 17, .external_lex_state = 9}, + [87] = {.lex_state = 17, .external_lex_state = 14}, + [88] = {.lex_state = 17, .external_lex_state = 11}, + [89] = {.lex_state = 17, .external_lex_state = 8}, + [90] = {.lex_state = 17, .external_lex_state = 8}, + [91] = {.lex_state = 17, .external_lex_state = 9}, + [92] = {.lex_state = 17, .external_lex_state = 9}, + [93] = {.lex_state = 17, .external_lex_state = 14}, + [94] = {.lex_state = 17, .external_lex_state = 14}, + [95] = {.lex_state = 17, .external_lex_state = 14}, + [96] = {.lex_state = 17, .external_lex_state = 8}, + [97] = {.lex_state = 17, .external_lex_state = 8}, + [98] = {.lex_state = 17, .external_lex_state = 8}, + [99] = {.lex_state = 17, .external_lex_state = 7}, + [100] = {.lex_state = 17, .external_lex_state = 14}, + [101] = {.lex_state = 17, .external_lex_state = 14}, + [102] = {.lex_state = 17, .external_lex_state = 13}, + [103] = {.lex_state = 17, .external_lex_state = 7}, + [104] = {.lex_state = 17, .external_lex_state = 10}, + [105] = {.lex_state = 17, .external_lex_state = 10}, + [106] = {.lex_state = 17, .external_lex_state = 11}, + [107] = {.lex_state = 17, .external_lex_state = 11}, + [108] = {.lex_state = 17, .external_lex_state = 8}, + [109] = {.lex_state = 17, .external_lex_state = 4}, + [110] = {.lex_state = 17, .external_lex_state = 3}, + [111] = {.lex_state = 17, .external_lex_state = 3}, + [112] = {.lex_state = 17, .external_lex_state = 3}, + [113] = {.lex_state = 17, .external_lex_state = 3}, + [114] = {.lex_state = 17, .external_lex_state = 3}, + [115] = {.lex_state = 17, .external_lex_state = 3}, + [116] = {.lex_state = 17, .external_lex_state = 3}, + [117] = {.lex_state = 17, .external_lex_state = 3}, + [118] = {.lex_state = 17, .external_lex_state = 3}, + [119] = {.lex_state = 17, .external_lex_state = 3}, + [120] = {.lex_state = 17, .external_lex_state = 3}, + [121] = {.lex_state = 17, .external_lex_state = 3}, + [122] = {.lex_state = 17, .external_lex_state = 3}, + [123] = {.lex_state = 17, .external_lex_state = 4}, + [124] = {.lex_state = 17, .external_lex_state = 4}, + [125] = {.lex_state = 17, .external_lex_state = 3}, + [126] = {.lex_state = 17, .external_lex_state = 4}, + [127] = {.lex_state = 17, .external_lex_state = 4}, + [128] = {.lex_state = 17, .external_lex_state = 4}, + [129] = {.lex_state = 17, .external_lex_state = 4}, + [130] = {.lex_state = 17, .external_lex_state = 3}, + [131] = {.lex_state = 17, .external_lex_state = 4}, + [132] = {.lex_state = 17, .external_lex_state = 4}, + [133] = {.lex_state = 17, .external_lex_state = 4}, + [134] = {.lex_state = 17, .external_lex_state = 4}, + [135] = {.lex_state = 17, .external_lex_state = 4}, + [136] = {.lex_state = 17, .external_lex_state = 4}, + [137] = {.lex_state = 17, .external_lex_state = 4}, + [138] = {.lex_state = 17, .external_lex_state = 4}, + [139] = {.lex_state = 17, .external_lex_state = 4}, + [140] = {.lex_state = 17, .external_lex_state = 4}, + [141] = {.lex_state = 17, .external_lex_state = 4}, + [142] = {.lex_state = 17, .external_lex_state = 4}, + [143] = {.lex_state = 17, .external_lex_state = 4}, + [144] = {.lex_state = 17, .external_lex_state = 4}, + [145] = {.lex_state = 17, .external_lex_state = 4}, + [146] = {.lex_state = 17, .external_lex_state = 4}, + [147] = {.lex_state = 17, .external_lex_state = 4}, + [148] = {.lex_state = 17, .external_lex_state = 3}, + [149] = {.lex_state = 17, .external_lex_state = 4}, + [150] = {.lex_state = 17, .external_lex_state = 4}, + [151] = {.lex_state = 17, .external_lex_state = 4}, + [152] = {.lex_state = 17, .external_lex_state = 3}, + [153] = {.lex_state = 17, .external_lex_state = 4}, + [154] = {.lex_state = 17, .external_lex_state = 3}, + [155] = {.lex_state = 17, .external_lex_state = 4}, + [156] = {.lex_state = 17, .external_lex_state = 4}, + [157] = {.lex_state = 17, .external_lex_state = 4}, + [158] = {.lex_state = 17, .external_lex_state = 3}, + [159] = {.lex_state = 17, .external_lex_state = 3}, + [160] = {.lex_state = 17, .external_lex_state = 3}, + [161] = {.lex_state = 17, .external_lex_state = 4}, + [162] = {.lex_state = 17, .external_lex_state = 3}, + [163] = {.lex_state = 17, .external_lex_state = 3}, + [164] = {.lex_state = 17, .external_lex_state = 4}, + [165] = {.lex_state = 17, .external_lex_state = 3}, + [166] = {.lex_state = 17, .external_lex_state = 3}, + [167] = {.lex_state = 17, .external_lex_state = 3}, + [168] = {.lex_state = 17, .external_lex_state = 4}, + [169] = {.lex_state = 17, .external_lex_state = 4}, + [170] = {.lex_state = 17, .external_lex_state = 4}, + [171] = {.lex_state = 17, .external_lex_state = 3}, + [172] = {.lex_state = 17, .external_lex_state = 3}, + [173] = {.lex_state = 17, .external_lex_state = 4}, + [174] = {.lex_state = 17, .external_lex_state = 4}, + [175] = {.lex_state = 17, .external_lex_state = 4}, + [176] = {.lex_state = 17, .external_lex_state = 4}, + [177] = {.lex_state = 17, .external_lex_state = 4}, + [178] = {.lex_state = 17, .external_lex_state = 4}, + [179] = {.lex_state = 17, .external_lex_state = 4}, + [180] = {.lex_state = 17, .external_lex_state = 4}, + [181] = {.lex_state = 17, .external_lex_state = 4}, + [182] = {.lex_state = 17, .external_lex_state = 3}, + [183] = {.lex_state = 17, .external_lex_state = 4}, + [184] = {.lex_state = 17, .external_lex_state = 4}, + [185] = {.lex_state = 17, .external_lex_state = 4}, + [186] = {.lex_state = 17, .external_lex_state = 4}, + [187] = {.lex_state = 17, .external_lex_state = 3}, + [188] = {.lex_state = 17, .external_lex_state = 3}, + [189] = {.lex_state = 17, .external_lex_state = 4}, + [190] = {.lex_state = 17, .external_lex_state = 3}, + [191] = {.lex_state = 17, .external_lex_state = 3}, + [192] = {.lex_state = 17, .external_lex_state = 3}, + [193] = {.lex_state = 17, .external_lex_state = 3}, + [194] = {.lex_state = 17, .external_lex_state = 3}, + [195] = {.lex_state = 17, .external_lex_state = 3}, + [196] = {.lex_state = 17, .external_lex_state = 3}, + [197] = {.lex_state = 17, .external_lex_state = 3}, + [198] = {.lex_state = 17, .external_lex_state = 3}, + [199] = {.lex_state = 17, .external_lex_state = 3}, + [200] = {.lex_state = 17, .external_lex_state = 3}, + [201] = {.lex_state = 17, .external_lex_state = 3}, + [202] = {.lex_state = 17, .external_lex_state = 3}, + [203] = {.lex_state = 17, .external_lex_state = 3}, + [204] = {.lex_state = 17, .external_lex_state = 3}, + [205] = {.lex_state = 17, .external_lex_state = 3}, + [206] = {.lex_state = 17, .external_lex_state = 3}, + [207] = {.lex_state = 17, .external_lex_state = 3}, + [208] = {.lex_state = 17, .external_lex_state = 6}, + [209] = {.lex_state = 17, .external_lex_state = 3}, + [210] = {.lex_state = 17, .external_lex_state = 6}, + [211] = {.lex_state = 17, .external_lex_state = 15}, + [212] = {.lex_state = 17, .external_lex_state = 15}, + [213] = {.lex_state = 17, .external_lex_state = 15}, + [214] = {.lex_state = 17, .external_lex_state = 15}, + [215] = {.lex_state = 17, .external_lex_state = 15}, + [216] = {.lex_state = 17, .external_lex_state = 15}, + [217] = {.lex_state = 17, .external_lex_state = 15}, + [218] = {.lex_state = 17, .external_lex_state = 15}, + [219] = {.lex_state = 17, .external_lex_state = 15}, + [220] = {.lex_state = 17, .external_lex_state = 15}, + [221] = {.lex_state = 17, .external_lex_state = 16}, + [222] = {.lex_state = 17, .external_lex_state = 16}, + [223] = {.lex_state = 17, .external_lex_state = 16}, + [224] = {.lex_state = 17, .external_lex_state = 16}, + [225] = {.lex_state = 17, .external_lex_state = 16}, + [226] = {.lex_state = 17, .external_lex_state = 17}, + [227] = {.lex_state = 17, .external_lex_state = 17}, + [228] = {.lex_state = 17, .external_lex_state = 18}, + [229] = {.lex_state = 0, .external_lex_state = 19}, + [230] = {.lex_state = 17, .external_lex_state = 18}, + [231] = {.lex_state = 17, .external_lex_state = 17}, + [232] = {.lex_state = 17, .external_lex_state = 20}, + [233] = {.lex_state = 0, .external_lex_state = 21}, + [234] = {.lex_state = 0, .external_lex_state = 22}, + [235] = {.lex_state = 17, .external_lex_state = 18}, + [236] = {.lex_state = 0, .external_lex_state = 19}, + [237] = {.lex_state = 1, .external_lex_state = 23}, + [238] = {.lex_state = 1, .external_lex_state = 23}, + [239] = {.lex_state = 1, .external_lex_state = 23}, + [240] = {.lex_state = 0, .external_lex_state = 22}, + [241] = {.lex_state = 0, .external_lex_state = 21}, + [242] = {.lex_state = 1, .external_lex_state = 23}, + [243] = {.lex_state = 1, .external_lex_state = 23}, + [244] = {.lex_state = 1, .external_lex_state = 23}, + [245] = {.lex_state = 17, .external_lex_state = 24}, + [246] = {.lex_state = 17, .external_lex_state = 20}, + [247] = {.lex_state = 17, .external_lex_state = 24}, + [248] = {.lex_state = 17, .external_lex_state = 24}, + [249] = {.lex_state = 17, .external_lex_state = 24}, + [250] = {.lex_state = 17, .external_lex_state = 24}, + [251] = {.lex_state = 2}, + [252] = {.lex_state = 2}, + [253] = {.lex_state = 17}, + [254] = {.lex_state = 2}, + [255] = {.lex_state = 2}, + [256] = {.lex_state = 17}, + [257] = {.lex_state = 17}, + [258] = {.lex_state = 2}, + [259] = {.lex_state = 17}, + [260] = {.lex_state = 17}, + [261] = {.lex_state = 2}, + [262] = {.lex_state = 17}, + [263] = {.lex_state = 17}, + [264] = {.lex_state = 2}, + [265] = {.lex_state = 2}, + [266] = {.lex_state = 17}, + [267] = {.lex_state = 2}, + [268] = {.lex_state = 2}, + [269] = {.lex_state = 17}, + [270] = {.lex_state = 2}, + [271] = {.lex_state = 17, .external_lex_state = 24}, + [272] = {.lex_state = 17}, + [273] = {.lex_state = 17, .external_lex_state = 24}, + [274] = {.lex_state = 4}, + [275] = {.lex_state = 17}, + [276] = {.lex_state = 17}, + [277] = {.lex_state = 17, .external_lex_state = 25}, + [278] = {.lex_state = 17, .external_lex_state = 25}, + [279] = {.lex_state = 4}, + [280] = {.lex_state = 1, .external_lex_state = 23}, + [281] = {.lex_state = 17, .external_lex_state = 24}, + [282] = {.lex_state = 17, .external_lex_state = 20}, + [283] = {.lex_state = 1, .external_lex_state = 23}, + [284] = {.lex_state = 17, .external_lex_state = 20}, [285] = {.lex_state = 0, .external_lex_state = 26}, - [286] = {.lex_state = 38, .external_lex_state = 27}, - [287] = {.lex_state = 38, .external_lex_state = 27}, - [288] = {.lex_state = 0, .external_lex_state = 26}, - [289] = {.lex_state = 18, .external_lex_state = 22}, - [290] = {.lex_state = 18, .external_lex_state = 25}, - [291] = {.lex_state = 0, .external_lex_state = 20}, - [292] = {.lex_state = 0, .external_lex_state = 20}, - [293] = {.lex_state = 0, .external_lex_state = 20}, - [294] = {.lex_state = 0, .external_lex_state = 20}, - [295] = {.lex_state = 0, .external_lex_state = 20}, - [296] = {.lex_state = 0, .external_lex_state = 20}, - [297] = {.lex_state = 0, .external_lex_state = 20}, - [298] = {.lex_state = 0, .external_lex_state = 26}, - [299] = {.lex_state = 38, .external_lex_state = 27}, - [300] = {.lex_state = 38, .external_lex_state = 27}, - [301] = {.lex_state = 38, .external_lex_state = 27}, - [302] = {.lex_state = 38, .external_lex_state = 27}, - [303] = {.lex_state = 38, .external_lex_state = 27}, - [304] = {.lex_state = 5}, - [305] = {.lex_state = 0, .external_lex_state = 26}, - [306] = {.lex_state = 38, .external_lex_state = 27}, - [307] = {.lex_state = 38, .external_lex_state = 27}, - [308] = {.lex_state = 38, .external_lex_state = 27}, - [309] = {.lex_state = 0, .external_lex_state = 26}, - [310] = {.lex_state = 38, .external_lex_state = 27}, - [311] = {.lex_state = 38, .external_lex_state = 27}, - [312] = {.lex_state = 38, .external_lex_state = 27}, - [313] = {.lex_state = 0, .external_lex_state = 26}, - [314] = {.lex_state = 38, .external_lex_state = 27}, - [315] = {.lex_state = 38, .external_lex_state = 27}, + [286] = {.lex_state = 0, .external_lex_state = 19}, + [287] = {.lex_state = 0, .external_lex_state = 26}, + [288] = {.lex_state = 37, .external_lex_state = 27}, + [289] = {.lex_state = 37, .external_lex_state = 27}, + [290] = {.lex_state = 37, .external_lex_state = 27}, + [291] = {.lex_state = 37, .external_lex_state = 27}, + [292] = {.lex_state = 0, .external_lex_state = 26}, + [293] = {.lex_state = 37, .external_lex_state = 27}, + [294] = {.lex_state = 17, .external_lex_state = 25}, + [295] = {.lex_state = 37, .external_lex_state = 27}, + [296] = {.lex_state = 37, .external_lex_state = 27}, + [297] = {.lex_state = 0, .external_lex_state = 26}, + [298] = {.lex_state = 37, .external_lex_state = 27}, + [299] = {.lex_state = 37, .external_lex_state = 27}, + [300] = {.lex_state = 37, .external_lex_state = 27}, + [301] = {.lex_state = 37, .external_lex_state = 27}, + [302] = {.lex_state = 0, .external_lex_state = 26}, + [303] = {.lex_state = 37, .external_lex_state = 27}, + [304] = {.lex_state = 0, .external_lex_state = 26}, + [305] = {.lex_state = 37, .external_lex_state = 27}, + [306] = {.lex_state = 37, .external_lex_state = 27}, + [307] = {.lex_state = 17, .external_lex_state = 20}, + [308] = {.lex_state = 0, .external_lex_state = 19}, + [309] = {.lex_state = 4}, + [310] = {.lex_state = 0, .external_lex_state = 19}, + [311] = {.lex_state = 0, .external_lex_state = 19}, + [312] = {.lex_state = 0, .external_lex_state = 19}, + [313] = {.lex_state = 0, .external_lex_state = 19}, + [314] = {.lex_state = 0, .external_lex_state = 19}, + [315] = {.lex_state = 37, .external_lex_state = 27}, [316] = {.lex_state = 0, .external_lex_state = 28}, [317] = {.lex_state = 0, .external_lex_state = 29}, - [318] = {.lex_state = 0, .external_lex_state = 23}, - [319] = {.lex_state = 0, .external_lex_state = 30}, - [320] = {.lex_state = 38, .external_lex_state = 27}, + [318] = {.lex_state = 0, .external_lex_state = 28}, + [319] = {.lex_state = 0, .external_lex_state = 29}, + [320] = {.lex_state = 0, .external_lex_state = 30}, [321] = {.lex_state = 0, .external_lex_state = 21}, - [322] = {.lex_state = 0, .external_lex_state = 30}, + [322] = {.lex_state = 0, .external_lex_state = 28}, [323] = {.lex_state = 0, .external_lex_state = 29}, - [324] = {.lex_state = 38, .external_lex_state = 27}, - [325] = {.lex_state = 0, .external_lex_state = 23}, - [326] = {.lex_state = 0, .external_lex_state = 30}, + [324] = {.lex_state = 0, .external_lex_state = 30}, + [325] = {.lex_state = 0, .external_lex_state = 22}, + [326] = {.lex_state = 0, .external_lex_state = 21}, [327] = {.lex_state = 0, .external_lex_state = 21}, - [328] = {.lex_state = 0, .external_lex_state = 21}, + [328] = {.lex_state = 0, .external_lex_state = 28}, [329] = {.lex_state = 0, .external_lex_state = 29}, - [330] = {.lex_state = 0, .external_lex_state = 28}, - [331] = {.lex_state = 0, .external_lex_state = 21}, - [332] = {.lex_state = 0, .external_lex_state = 29}, + [330] = {.lex_state = 0, .external_lex_state = 30}, + [331] = {.lex_state = 0, .external_lex_state = 30}, + [332] = {.lex_state = 0, .external_lex_state = 21}, [333] = {.lex_state = 0, .external_lex_state = 21}, - [334] = {.lex_state = 0, .external_lex_state = 30}, - [335] = {.lex_state = 0, .external_lex_state = 29}, - [336] = {.lex_state = 0, .external_lex_state = 28}, - [337] = {.lex_state = 0, .external_lex_state = 28}, - [338] = {.lex_state = 0, .external_lex_state = 21}, - [339] = {.lex_state = 0, .external_lex_state = 23}, - [340] = {.lex_state = 0, .external_lex_state = 23}, - [341] = {.lex_state = 0, .external_lex_state = 23}, + [334] = {.lex_state = 0, .external_lex_state = 28}, + [335] = {.lex_state = 0, .external_lex_state = 21}, + [336] = {.lex_state = 0, .external_lex_state = 22}, + [337] = {.lex_state = 0, .external_lex_state = 29}, + [338] = {.lex_state = 0, .external_lex_state = 22}, + [339] = {.lex_state = 0, .external_lex_state = 22}, + [340] = {.lex_state = 0, .external_lex_state = 22}, + [341] = {.lex_state = 0, .external_lex_state = 22}, [342] = {.lex_state = 0, .external_lex_state = 30}, - [343] = {.lex_state = 0, .external_lex_state = 29}, - [344] = {.lex_state = 0, .external_lex_state = 28}, - [345] = {.lex_state = 0, .external_lex_state = 28}, - [346] = {.lex_state = 0, .external_lex_state = 23}, - [347] = {.lex_state = 0, .external_lex_state = 23}, - [348] = {.lex_state = 0, .external_lex_state = 30}, - [349] = {.lex_state = 0, .external_lex_state = 21}, + [343] = {.lex_state = 0, .external_lex_state = 22}, + [344] = {.lex_state = 0, .external_lex_state = 21}, + [345] = {.lex_state = 37, .external_lex_state = 27}, + [346] = {.lex_state = 37, .external_lex_state = 27}, + [347] = {.lex_state = 0, .external_lex_state = 28}, + [348] = {.lex_state = 0, .external_lex_state = 29}, + [349] = {.lex_state = 0, .external_lex_state = 30}, [350] = {.lex_state = 0, .external_lex_state = 31}, [351] = {.lex_state = 0, .external_lex_state = 32}, - [352] = {.lex_state = 0, .external_lex_state = 33}, + [352] = {.lex_state = 0, .external_lex_state = 31}, [353] = {.lex_state = 0, .external_lex_state = 31}, - [354] = {.lex_state = 0, .external_lex_state = 31}, + [354] = {.lex_state = 0, .external_lex_state = 32}, [355] = {.lex_state = 0, .external_lex_state = 31}, [356] = {.lex_state = 0, .external_lex_state = 32}, - [357] = {.lex_state = 0, .external_lex_state = 32}, - [358] = {.lex_state = 3}, - [359] = {.lex_state = 3}, - [360] = {.lex_state = 0, .external_lex_state = 31}, - [361] = {.lex_state = 0, .external_lex_state = 32}, - [362] = {.lex_state = 0, .external_lex_state = 33}, - [363] = {.lex_state = 0, .external_lex_state = 32}, + [357] = {.lex_state = 0, .external_lex_state = 33}, + [358] = {.lex_state = 2}, + [359] = {.lex_state = 0, .external_lex_state = 31}, + [360] = {.lex_state = 2}, + [361] = {.lex_state = 0, .external_lex_state = 31}, + [362] = {.lex_state = 2}, + [363] = {.lex_state = 0, .external_lex_state = 31}, [364] = {.lex_state = 0, .external_lex_state = 31}, - [365] = {.lex_state = 0, .external_lex_state = 31}, - [366] = {.lex_state = 0, .external_lex_state = 32}, - [367] = {.lex_state = 3}, - [368] = {.lex_state = 0, .external_lex_state = 31}, - [369] = {.lex_state = 3}, - [370] = {.lex_state = 0, .external_lex_state = 32}, - [371] = {.lex_state = 0, .external_lex_state = 32}, - [372] = {.lex_state = 3}, - [373] = {.lex_state = 3}, - [374] = {.lex_state = 0, .external_lex_state = 32}, - [375] = {.lex_state = 3}, - [376] = {.lex_state = 0, .external_lex_state = 33}, - [377] = {.lex_state = 0, .external_lex_state = 33}, + [365] = {.lex_state = 0, .external_lex_state = 33}, + [366] = {.lex_state = 0, .external_lex_state = 31}, + [367] = {.lex_state = 0, .external_lex_state = 32}, + [368] = {.lex_state = 0, .external_lex_state = 32}, + [369] = {.lex_state = 0, .external_lex_state = 33}, + [370] = {.lex_state = 0, .external_lex_state = 31}, + [371] = {.lex_state = 0, .external_lex_state = 31}, + [372] = {.lex_state = 0, .external_lex_state = 31}, + [373] = {.lex_state = 0, .external_lex_state = 31}, + [374] = {.lex_state = 0, .external_lex_state = 31}, + [375] = {.lex_state = 0, .external_lex_state = 31}, + [376] = {.lex_state = 0, .external_lex_state = 31}, + [377] = {.lex_state = 0, .external_lex_state = 31}, [378] = {.lex_state = 0, .external_lex_state = 31}, - [379] = {.lex_state = 3}, - [380] = {.lex_state = 3}, + [379] = {.lex_state = 0, .external_lex_state = 31}, + [380] = {.lex_state = 0, .external_lex_state = 31}, [381] = {.lex_state = 0, .external_lex_state = 31}, [382] = {.lex_state = 0, .external_lex_state = 31}, [383] = {.lex_state = 0, .external_lex_state = 31}, - [384] = {.lex_state = 3}, - [385] = {.lex_state = 0, .external_lex_state = 32}, + [384] = {.lex_state = 0, .external_lex_state = 31}, + [385] = {.lex_state = 0, .external_lex_state = 31}, [386] = {.lex_state = 0, .external_lex_state = 31}, [387] = {.lex_state = 0, .external_lex_state = 31}, - [388] = {.lex_state = 0, .external_lex_state = 31}, + [388] = {.lex_state = 0, .external_lex_state = 32}, [389] = {.lex_state = 0, .external_lex_state = 31}, [390] = {.lex_state = 0, .external_lex_state = 31}, [391] = {.lex_state = 0, .external_lex_state = 31}, @@ -3822,762 +3779,761 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [395] = {.lex_state = 0, .external_lex_state = 31}, [396] = {.lex_state = 0, .external_lex_state = 31}, [397] = {.lex_state = 0, .external_lex_state = 31}, - [398] = {.lex_state = 0, .external_lex_state = 31}, - [399] = {.lex_state = 0, .external_lex_state = 31}, - [400] = {.lex_state = 0, .external_lex_state = 31}, + [398] = {.lex_state = 2}, + [399] = {.lex_state = 0, .external_lex_state = 33}, + [400] = {.lex_state = 2}, [401] = {.lex_state = 0, .external_lex_state = 31}, [402] = {.lex_state = 0, .external_lex_state = 31}, - [403] = {.lex_state = 0, .external_lex_state = 31}, - [404] = {.lex_state = 0, .external_lex_state = 31}, - [405] = {.lex_state = 0, .external_lex_state = 31}, - [406] = {.lex_state = 0, .external_lex_state = 33}, - [407] = {.lex_state = 0, .external_lex_state = 31}, + [403] = {.lex_state = 2}, + [404] = {.lex_state = 0, .external_lex_state = 32}, + [405] = {.lex_state = 2}, + [406] = {.lex_state = 0, .external_lex_state = 31}, + [407] = {.lex_state = 0, .external_lex_state = 33}, [408] = {.lex_state = 0, .external_lex_state = 31}, - [409] = {.lex_state = 0, .external_lex_state = 31}, - [410] = {.lex_state = 0, .external_lex_state = 31}, - [411] = {.lex_state = 0, .external_lex_state = 31}, - [412] = {.lex_state = 0, .external_lex_state = 31}, + [409] = {.lex_state = 2}, + [410] = {.lex_state = 0, .external_lex_state = 32}, + [411] = {.lex_state = 0, .external_lex_state = 32}, + [412] = {.lex_state = 0, .external_lex_state = 32}, [413] = {.lex_state = 0, .external_lex_state = 31}, - [414] = {.lex_state = 0, .external_lex_state = 31}, - [415] = {.lex_state = 0, .external_lex_state = 31}, + [414] = {.lex_state = 0, .external_lex_state = 32}, + [415] = {.lex_state = 2}, [416] = {.lex_state = 0, .external_lex_state = 31}, - [417] = {.lex_state = 0, .external_lex_state = 32}, + [417] = {.lex_state = 0, .external_lex_state = 27}, [418] = {.lex_state = 0, .external_lex_state = 27}, - [419] = {.lex_state = 0, .external_lex_state = 34}, - [420] = {.lex_state = 0, .external_lex_state = 35}, - [421] = {.lex_state = 0, .external_lex_state = 34}, - [422] = {.lex_state = 0, .external_lex_state = 27}, - [423] = {.lex_state = 0, .external_lex_state = 27}, - [424] = {.lex_state = 0, .external_lex_state = 36}, - [425] = {.lex_state = 0, .external_lex_state = 37}, - [426] = {.lex_state = 0, .external_lex_state = 38}, - [427] = {.lex_state = 0, .external_lex_state = 39}, - [428] = {.lex_state = 0, .external_lex_state = 40}, - [429] = {.lex_state = 0, .external_lex_state = 41}, + [419] = {.lex_state = 0, .external_lex_state = 27}, + [420] = {.lex_state = 0, .external_lex_state = 34}, + [421] = {.lex_state = 0, .external_lex_state = 35}, + [422] = {.lex_state = 0, .external_lex_state = 35}, + [423] = {.lex_state = 0, .external_lex_state = 36}, + [424] = {.lex_state = 0, .external_lex_state = 37}, + [425] = {.lex_state = 0, .external_lex_state = 38}, + [426] = {.lex_state = 0, .external_lex_state = 39}, + [427] = {.lex_state = 0, .external_lex_state = 40}, + [428] = {.lex_state = 0, .external_lex_state = 41}, + [429] = {.lex_state = 0, .external_lex_state = 38}, [430] = {.lex_state = 0, .external_lex_state = 42}, - [431] = {.lex_state = 0, .external_lex_state = 43}, - [432] = {.lex_state = 0, .external_lex_state = 44}, - [433] = {.lex_state = 0, .external_lex_state = 45}, - [434] = {.lex_state = 0, .external_lex_state = 46}, - [435] = {.lex_state = 0, .external_lex_state = 47}, - [436] = {.lex_state = 0, .external_lex_state = 48}, - [437] = {.lex_state = 0, .external_lex_state = 49}, - [438] = {.lex_state = 0, .external_lex_state = 50}, - [439] = {.lex_state = 0, .external_lex_state = 51}, - [440] = {.lex_state = 0, .external_lex_state = 52}, - [441] = {.lex_state = 0, .external_lex_state = 51}, - [442] = {.lex_state = 0, .external_lex_state = 52}, - [443] = {.lex_state = 0, .external_lex_state = 53}, - [444] = {.lex_state = 0, .external_lex_state = 54}, - [445] = {.lex_state = 6}, - [446] = {.lex_state = 0, .external_lex_state = 54}, - [447] = {.lex_state = 0, .external_lex_state = 54}, - [448] = {.lex_state = 0, .external_lex_state = 37}, - [449] = {.lex_state = 0, .external_lex_state = 39}, - [450] = {.lex_state = 38}, - [451] = {.lex_state = 0, .external_lex_state = 43}, - [452] = {.lex_state = 0, .external_lex_state = 53}, - [453] = {.lex_state = 0, .external_lex_state = 54}, - [454] = {.lex_state = 0, .external_lex_state = 54}, - [455] = {.lex_state = 0, .external_lex_state = 44}, - [456] = {.lex_state = 0, .external_lex_state = 36}, - [457] = {.lex_state = 0, .external_lex_state = 34}, - [458] = {.lex_state = 6}, - [459] = {.lex_state = 0, .external_lex_state = 37}, - [460] = {.lex_state = 0, .external_lex_state = 37}, - [461] = {.lex_state = 0, .external_lex_state = 38}, - [462] = {.lex_state = 0, .external_lex_state = 39}, - [463] = {.lex_state = 0, .external_lex_state = 40}, - [464] = {.lex_state = 0, .external_lex_state = 41}, - [465] = {.lex_state = 0, .external_lex_state = 42}, - [466] = {.lex_state = 0, .external_lex_state = 43}, - [467] = {.lex_state = 0, .external_lex_state = 44}, - [468] = {.lex_state = 0, .external_lex_state = 45}, - [469] = {.lex_state = 0, .external_lex_state = 46}, - [470] = {.lex_state = 0, .external_lex_state = 47}, - [471] = {.lex_state = 0, .external_lex_state = 48}, - [472] = {.lex_state = 0, .external_lex_state = 49}, - [473] = {.lex_state = 0, .external_lex_state = 50}, - [474] = {.lex_state = 0, .external_lex_state = 51}, - [475] = {.lex_state = 0, .external_lex_state = 52}, - [476] = {.lex_state = 38, .external_lex_state = 55}, - [477] = {.lex_state = 38}, - [478] = {.lex_state = 0, .external_lex_state = 41}, - [479] = {.lex_state = 0, .external_lex_state = 40}, - [480] = {.lex_state = 6}, - [481] = {.lex_state = 0, .external_lex_state = 38}, - [482] = {.lex_state = 0, .external_lex_state = 53}, - [483] = {.lex_state = 0, .external_lex_state = 54}, + [431] = {.lex_state = 0, .external_lex_state = 40}, + [432] = {.lex_state = 0, .external_lex_state = 43}, + [433] = {.lex_state = 0, .external_lex_state = 41}, + [434] = {.lex_state = 0, .external_lex_state = 44}, + [435] = {.lex_state = 0, .external_lex_state = 42}, + [436] = {.lex_state = 0, .external_lex_state = 45}, + [437] = {.lex_state = 0, .external_lex_state = 43}, + [438] = {.lex_state = 0, .external_lex_state = 44}, + [439] = {.lex_state = 0, .external_lex_state = 45}, + [440] = {.lex_state = 0, .external_lex_state = 46}, + [441] = {.lex_state = 37}, + [442] = {.lex_state = 5, .external_lex_state = 47}, + [443] = {.lex_state = 6}, + [444] = {.lex_state = 0, .external_lex_state = 48}, + [445] = {.lex_state = 37, .external_lex_state = 49}, + [446] = {.lex_state = 37}, + [447] = {.lex_state = 0, .external_lex_state = 50}, + [448] = {.lex_state = 0, .external_lex_state = 51}, + [449] = {.lex_state = 0, .external_lex_state = 50}, + [450] = {.lex_state = 0, .external_lex_state = 50}, + [451] = {.lex_state = 0, .external_lex_state = 51}, + [452] = {.lex_state = 0, .external_lex_state = 51}, + [453] = {.lex_state = 0, .external_lex_state = 51}, + [454] = {.lex_state = 0, .external_lex_state = 50}, + [455] = {.lex_state = 0, .external_lex_state = 51}, + [456] = {.lex_state = 0, .external_lex_state = 51}, + [457] = {.lex_state = 0, .external_lex_state = 48}, + [458] = {.lex_state = 0, .external_lex_state = 35}, + [459] = {.lex_state = 0, .external_lex_state = 52}, + [460] = {.lex_state = 0, .external_lex_state = 53}, + [461] = {.lex_state = 0, .external_lex_state = 54}, + [462] = {.lex_state = 0, .external_lex_state = 55}, + [463] = {.lex_state = 0, .external_lex_state = 56}, + [464] = {.lex_state = 0, .external_lex_state = 57}, + [465] = {.lex_state = 0, .external_lex_state = 37}, + [466] = {.lex_state = 0, .external_lex_state = 39}, + [467] = {.lex_state = 0, .external_lex_state = 36}, + [468] = {.lex_state = 0, .external_lex_state = 38}, + [469] = {.lex_state = 0, .external_lex_state = 40}, + [470] = {.lex_state = 0, .external_lex_state = 41}, + [471] = {.lex_state = 0, .external_lex_state = 42}, + [472] = {.lex_state = 0, .external_lex_state = 43}, + [473] = {.lex_state = 0, .external_lex_state = 44}, + [474] = {.lex_state = 0, .external_lex_state = 45}, + [475] = {.lex_state = 6}, + [476] = {.lex_state = 6}, + [477] = {.lex_state = 37, .external_lex_state = 49}, + [478] = {.lex_state = 0, .external_lex_state = 52}, + [479] = {.lex_state = 0, .external_lex_state = 53}, + [480] = {.lex_state = 0, .external_lex_state = 54}, + [481] = {.lex_state = 0, .external_lex_state = 55}, + [482] = {.lex_state = 0, .external_lex_state = 56}, + [483] = {.lex_state = 0, .external_lex_state = 57}, [484] = {.lex_state = 0, .external_lex_state = 37}, - [485] = {.lex_state = 0, .external_lex_state = 38}, - [486] = {.lex_state = 0, .external_lex_state = 40}, - [487] = {.lex_state = 0, .external_lex_state = 45}, - [488] = {.lex_state = 0, .external_lex_state = 52}, - [489] = {.lex_state = 0, .external_lex_state = 40}, - [490] = {.lex_state = 0, .external_lex_state = 41}, - [491] = {.lex_state = 0, .external_lex_state = 42}, - [492] = {.lex_state = 0, .external_lex_state = 43}, - [493] = {.lex_state = 0, .external_lex_state = 44}, - [494] = {.lex_state = 0, .external_lex_state = 45}, - [495] = {.lex_state = 0, .external_lex_state = 46}, - [496] = {.lex_state = 0, .external_lex_state = 47}, - [497] = {.lex_state = 0, .external_lex_state = 48}, - [498] = {.lex_state = 0, .external_lex_state = 49}, - [499] = {.lex_state = 0, .external_lex_state = 50}, - [500] = {.lex_state = 0, .external_lex_state = 51}, - [501] = {.lex_state = 0, .external_lex_state = 52}, - [502] = {.lex_state = 0, .external_lex_state = 56}, - [503] = {.lex_state = 0, .external_lex_state = 42}, - [504] = {.lex_state = 0, .external_lex_state = 38}, - [505] = {.lex_state = 7, .external_lex_state = 57}, - [506] = {.lex_state = 0, .external_lex_state = 39}, - [507] = {.lex_state = 0, .external_lex_state = 53}, - [508] = {.lex_state = 0, .external_lex_state = 37}, - [509] = {.lex_state = 0, .external_lex_state = 38}, - [510] = {.lex_state = 0, .external_lex_state = 39}, - [511] = {.lex_state = 0, .external_lex_state = 40}, - [512] = {.lex_state = 0, .external_lex_state = 41}, - [513] = {.lex_state = 0, .external_lex_state = 42}, - [514] = {.lex_state = 0, .external_lex_state = 43}, - [515] = {.lex_state = 0, .external_lex_state = 44}, - [516] = {.lex_state = 0, .external_lex_state = 45}, - [517] = {.lex_state = 0, .external_lex_state = 46}, - [518] = {.lex_state = 0, .external_lex_state = 41}, - [519] = {.lex_state = 0, .external_lex_state = 46}, - [520] = {.lex_state = 0, .external_lex_state = 42}, - [521] = {.lex_state = 7, .external_lex_state = 57}, - [522] = {.lex_state = 0, .external_lex_state = 47}, + [485] = {.lex_state = 0, .external_lex_state = 39}, + [486] = {.lex_state = 0, .external_lex_state = 36}, + [487] = {.lex_state = 0, .external_lex_state = 38}, + [488] = {.lex_state = 0, .external_lex_state = 40}, + [489] = {.lex_state = 0, .external_lex_state = 41}, + [490] = {.lex_state = 0, .external_lex_state = 42}, + [491] = {.lex_state = 0, .external_lex_state = 43}, + [492] = {.lex_state = 0, .external_lex_state = 44}, + [493] = {.lex_state = 0, .external_lex_state = 45}, + [494] = {.lex_state = 0, .external_lex_state = 52}, + [495] = {.lex_state = 0, .external_lex_state = 53}, + [496] = {.lex_state = 0, .external_lex_state = 54}, + [497] = {.lex_state = 0, .external_lex_state = 55}, + [498] = {.lex_state = 0, .external_lex_state = 56}, + [499] = {.lex_state = 0, .external_lex_state = 57}, + [500] = {.lex_state = 0, .external_lex_state = 37}, + [501] = {.lex_state = 0, .external_lex_state = 39}, + [502] = {.lex_state = 0, .external_lex_state = 36}, + [503] = {.lex_state = 0, .external_lex_state = 38}, + [504] = {.lex_state = 0, .external_lex_state = 40}, + [505] = {.lex_state = 0, .external_lex_state = 41}, + [506] = {.lex_state = 0, .external_lex_state = 42}, + [507] = {.lex_state = 0, .external_lex_state = 43}, + [508] = {.lex_state = 0, .external_lex_state = 44}, + [509] = {.lex_state = 0, .external_lex_state = 45}, + [510] = {.lex_state = 0, .external_lex_state = 52}, + [511] = {.lex_state = 0, .external_lex_state = 53}, + [512] = {.lex_state = 0, .external_lex_state = 54}, + [513] = {.lex_state = 0, .external_lex_state = 55}, + [514] = {.lex_state = 0, .external_lex_state = 56}, + [515] = {.lex_state = 0, .external_lex_state = 57}, + [516] = {.lex_state = 0, .external_lex_state = 37}, + [517] = {.lex_state = 0, .external_lex_state = 39}, + [518] = {.lex_state = 0, .external_lex_state = 36}, + [519] = {.lex_state = 0, .external_lex_state = 38}, + [520] = {.lex_state = 0, .external_lex_state = 40}, + [521] = {.lex_state = 0, .external_lex_state = 41}, + [522] = {.lex_state = 0, .external_lex_state = 42}, [523] = {.lex_state = 0, .external_lex_state = 43}, - [524] = {.lex_state = 38, .external_lex_state = 55}, - [525] = {.lex_state = 0, .external_lex_state = 48}, - [526] = {.lex_state = 0, .external_lex_state = 47}, - [527] = {.lex_state = 7, .external_lex_state = 57}, - [528] = {.lex_state = 0, .external_lex_state = 44}, - [529] = {.lex_state = 0, .external_lex_state = 49}, - [530] = {.lex_state = 0, .external_lex_state = 45}, - [531] = {.lex_state = 0, .external_lex_state = 48}, - [532] = {.lex_state = 0, .external_lex_state = 50}, - [533] = {.lex_state = 7, .external_lex_state = 57}, - [534] = {.lex_state = 0, .external_lex_state = 49}, - [535] = {.lex_state = 0, .external_lex_state = 46}, - [536] = {.lex_state = 0, .external_lex_state = 51}, - [537] = {.lex_state = 0, .external_lex_state = 51}, - [538] = {.lex_state = 7, .external_lex_state = 57}, - [539] = {.lex_state = 0, .external_lex_state = 47}, - [540] = {.lex_state = 0, .external_lex_state = 52}, - [541] = {.lex_state = 0, .external_lex_state = 48}, - [542] = {.lex_state = 0, .external_lex_state = 49}, - [543] = {.lex_state = 0, .external_lex_state = 50}, - [544] = {.lex_state = 0, .external_lex_state = 50}, - [545] = {.lex_state = 0, .external_lex_state = 39}, + [524] = {.lex_state = 0, .external_lex_state = 44}, + [525] = {.lex_state = 0, .external_lex_state = 45}, + [526] = {.lex_state = 0, .external_lex_state = 52}, + [527] = {.lex_state = 0, .external_lex_state = 53}, + [528] = {.lex_state = 0, .external_lex_state = 54}, + [529] = {.lex_state = 0, .external_lex_state = 52}, + [530] = {.lex_state = 0, .external_lex_state = 55}, + [531] = {.lex_state = 0, .external_lex_state = 53}, + [532] = {.lex_state = 0, .external_lex_state = 56}, + [533] = {.lex_state = 0, .external_lex_state = 54}, + [534] = {.lex_state = 0, .external_lex_state = 57}, + [535] = {.lex_state = 0, .external_lex_state = 55}, + [536] = {.lex_state = 0, .external_lex_state = 37}, + [537] = {.lex_state = 0, .external_lex_state = 56}, + [538] = {.lex_state = 0, .external_lex_state = 39}, + [539] = {.lex_state = 0, .external_lex_state = 57}, + [540] = {.lex_state = 0, .external_lex_state = 36}, + [541] = {.lex_state = 5, .external_lex_state = 47}, + [542] = {.lex_state = 5, .external_lex_state = 47}, + [543] = {.lex_state = 5, .external_lex_state = 47}, + [544] = {.lex_state = 5, .external_lex_state = 47}, + [545] = {.lex_state = 0, .external_lex_state = 31}, [546] = {.lex_state = 0, .external_lex_state = 31}, - [547] = {.lex_state = 0, .external_lex_state = 28}, - [548] = {.lex_state = 0, .external_lex_state = 29}, - [549] = {.lex_state = 0, .external_lex_state = 26}, + [547] = {.lex_state = 0, .external_lex_state = 31}, + [548] = {.lex_state = 0, .external_lex_state = 31}, + [549] = {.lex_state = 0, .external_lex_state = 31}, [550] = {.lex_state = 0, .external_lex_state = 58}, - [551] = {.lex_state = 0, .external_lex_state = 17}, - [552] = {.lex_state = 0, .external_lex_state = 17}, - [553] = {.lex_state = 0, .external_lex_state = 30}, - [554] = {.lex_state = 0, .external_lex_state = 29}, - [555] = {.lex_state = 0, .external_lex_state = 17}, - [556] = {.lex_state = 0, .external_lex_state = 28}, - [557] = {.lex_state = 0, .external_lex_state = 59}, - [558] = {.lex_state = 0, .external_lex_state = 26}, - [559] = {.lex_state = 0, .external_lex_state = 17}, - [560] = {.lex_state = 0, .external_lex_state = 30}, - [561] = {.lex_state = 0, .external_lex_state = 58}, - [562] = {.lex_state = 0, .external_lex_state = 31}, - [563] = {.lex_state = 0, .external_lex_state = 60}, - [564] = {.lex_state = 0, .external_lex_state = 60}, - [565] = {.lex_state = 0, .external_lex_state = 31}, - [566] = {.lex_state = 0, .external_lex_state = 31}, - [567] = {.lex_state = 0, .external_lex_state = 61}, - [568] = {.lex_state = 0, .external_lex_state = 31}, - [569] = {.lex_state = 0, .external_lex_state = 31}, - [570] = {.lex_state = 0, .external_lex_state = 31}, - [571] = {.lex_state = 0, .external_lex_state = 31}, - [572] = {.lex_state = 0, .external_lex_state = 31}, - [573] = {.lex_state = 0, .external_lex_state = 31}, - [574] = {.lex_state = 0, .external_lex_state = 31}, - [575] = {.lex_state = 0, .external_lex_state = 31}, - [576] = {.lex_state = 0, .external_lex_state = 31}, - [577] = {.lex_state = 0, .external_lex_state = 31}, - [578] = {.lex_state = 0, .external_lex_state = 31}, - [579] = {.lex_state = 0, .external_lex_state = 31}, - [580] = {.lex_state = 0, .external_lex_state = 31}, - [581] = {.lex_state = 0, .external_lex_state = 31}, - [582] = {.lex_state = 0, .external_lex_state = 31}, - [583] = {.lex_state = 0, .external_lex_state = 31}, - [584] = {.lex_state = 0, .external_lex_state = 31}, - [585] = {.lex_state = 0, .external_lex_state = 31}, - [586] = {.lex_state = 0, .external_lex_state = 31}, - [587] = {.lex_state = 0, .external_lex_state = 31}, - [588] = {.lex_state = 0, .external_lex_state = 31}, + [551] = {.lex_state = 0, .external_lex_state = 58}, + [552] = {.lex_state = 0, .external_lex_state = 59}, + [553] = {.lex_state = 0, .external_lex_state = 60}, + [554] = {.lex_state = 37, .external_lex_state = 20}, + [555] = {.lex_state = 37, .external_lex_state = 20}, + [556] = {.lex_state = 0, .external_lex_state = 61}, + [557] = {.lex_state = 0, .external_lex_state = 61}, + [558] = {.lex_state = 0, .external_lex_state = 62}, + [559] = {.lex_state = 0, .external_lex_state = 62}, + [560] = {.lex_state = 0, .external_lex_state = 26}, + [561] = {.lex_state = 0, .external_lex_state = 26}, + [562] = {.lex_state = 0, .external_lex_state = 60}, + [563] = {.lex_state = 0, .external_lex_state = 59}, + [564] = {.lex_state = 0, .external_lex_state = 29}, + [565] = {.lex_state = 0, .external_lex_state = 63}, + [566] = {.lex_state = 0, .external_lex_state = 59}, + [567] = {.lex_state = 0, .external_lex_state = 59}, + [568] = {.lex_state = 0, .external_lex_state = 64}, + [569] = {.lex_state = 0, .external_lex_state = 65}, + [570] = {.lex_state = 0, .external_lex_state = 66}, + [571] = {.lex_state = 0, .external_lex_state = 65}, + [572] = {.lex_state = 0, .external_lex_state = 30}, + [573] = {.lex_state = 0, .external_lex_state = 30}, + [574] = {.lex_state = 0, .external_lex_state = 28}, + [575] = {.lex_state = 0, .external_lex_state = 60}, + [576] = {.lex_state = 0, .external_lex_state = 60}, + [577] = {.lex_state = 0, .external_lex_state = 30}, + [578] = {.lex_state = 0, .external_lex_state = 29}, + [579] = {.lex_state = 7}, + [580] = {.lex_state = 0, .external_lex_state = 60}, + [581] = {.lex_state = 0, .external_lex_state = 60}, + [582] = {.lex_state = 6}, + [583] = {.lex_state = 0, .external_lex_state = 60}, + [584] = {.lex_state = 0, .external_lex_state = 60}, + [585] = {.lex_state = 0, .external_lex_state = 30}, + [586] = {.lex_state = 0, .external_lex_state = 66}, + [587] = {.lex_state = 0, .external_lex_state = 67}, + [588] = {.lex_state = 8}, [589] = {.lex_state = 0, .external_lex_state = 31}, - [590] = {.lex_state = 0, .external_lex_state = 59}, - [591] = {.lex_state = 0, .external_lex_state = 61}, - [592] = {.lex_state = 0, .external_lex_state = 31}, - [593] = {.lex_state = 38, .external_lex_state = 27}, - [594] = {.lex_state = 0, .external_lex_state = 31}, - [595] = {.lex_state = 0, .external_lex_state = 31}, - [596] = {.lex_state = 0, .external_lex_state = 31}, - [597] = {.lex_state = 0, .external_lex_state = 30}, - [598] = {.lex_state = 0, .external_lex_state = 30}, - [599] = {.lex_state = 0, .external_lex_state = 31}, - [600] = {.lex_state = 0, .external_lex_state = 28}, - [601] = {.lex_state = 0, .external_lex_state = 29}, - [602] = {.lex_state = 0, .external_lex_state = 31}, - [603] = {.lex_state = 8}, - [604] = {.lex_state = 0, .external_lex_state = 31}, - [605] = {.lex_state = 0, .external_lex_state = 31}, - [606] = {.lex_state = 0, .external_lex_state = 31}, - [607] = {.lex_state = 0, .external_lex_state = 31}, - [608] = {.lex_state = 0, .external_lex_state = 31}, + [590] = {.lex_state = 0, .external_lex_state = 26}, + [591] = {.lex_state = 0, .external_lex_state = 28}, + [592] = {.lex_state = 0, .external_lex_state = 30}, + [593] = {.lex_state = 0, .external_lex_state = 29}, + [594] = {.lex_state = 0, .external_lex_state = 26}, + [595] = {.lex_state = 0, .external_lex_state = 24}, + [596] = {.lex_state = 0, .external_lex_state = 24}, + [597] = {.lex_state = 0, .external_lex_state = 68}, + [598] = {.lex_state = 0, .external_lex_state = 67}, + [599] = {.lex_state = 0, .external_lex_state = 65}, + [600] = {.lex_state = 0, .external_lex_state = 31}, + [601] = {.lex_state = 0, .external_lex_state = 31}, + [602] = {.lex_state = 37, .external_lex_state = 27}, + [603] = {.lex_state = 0, .external_lex_state = 60}, + [604] = {.lex_state = 0, .external_lex_state = 60}, + [605] = {.lex_state = 0, .external_lex_state = 28}, + [606] = {.lex_state = 0, .external_lex_state = 26}, + [607] = {.lex_state = 0, .external_lex_state = 60}, + [608] = {.lex_state = 0, .external_lex_state = 60}, [609] = {.lex_state = 0, .external_lex_state = 31}, - [610] = {.lex_state = 0, .external_lex_state = 31}, - [611] = {.lex_state = 0, .external_lex_state = 31}, + [610] = {.lex_state = 0, .external_lex_state = 69}, + [611] = {.lex_state = 0, .external_lex_state = 28}, [612] = {.lex_state = 0, .external_lex_state = 31}, [613] = {.lex_state = 0, .external_lex_state = 31}, [614] = {.lex_state = 0, .external_lex_state = 31}, [615] = {.lex_state = 0, .external_lex_state = 31}, [616] = {.lex_state = 0, .external_lex_state = 31}, - [617] = {.lex_state = 0, .external_lex_state = 31}, - [618] = {.lex_state = 0, .external_lex_state = 62}, - [619] = {.lex_state = 0, .external_lex_state = 63}, - [620] = {.lex_state = 38, .external_lex_state = 22}, - [621] = {.lex_state = 38, .external_lex_state = 22}, - [622] = {.lex_state = 0, .external_lex_state = 64}, - [623] = {.lex_state = 0, .external_lex_state = 64}, - [624] = {.lex_state = 0, .external_lex_state = 65}, - [625] = {.lex_state = 0, .external_lex_state = 65}, - [626] = {.lex_state = 0, .external_lex_state = 26}, - [627] = {.lex_state = 0, .external_lex_state = 26}, - [628] = {.lex_state = 0, .external_lex_state = 31}, - [629] = {.lex_state = 0, .external_lex_state = 31}, - [630] = {.lex_state = 0, .external_lex_state = 31}, - [631] = {.lex_state = 0, .external_lex_state = 60}, - [632] = {.lex_state = 0, .external_lex_state = 60}, - [633] = {.lex_state = 0, .external_lex_state = 60}, - [634] = {.lex_state = 0, .external_lex_state = 60}, - [635] = {.lex_state = 0, .external_lex_state = 59}, - [636] = {.lex_state = 0, .external_lex_state = 32}, - [637] = {.lex_state = 0, .external_lex_state = 32}, - [638] = {.lex_state = 0, .external_lex_state = 60}, - [639] = {.lex_state = 0, .external_lex_state = 60}, - [640] = {.lex_state = 0, .external_lex_state = 60}, - [641] = {.lex_state = 0, .external_lex_state = 60}, - [642] = {.lex_state = 0, .external_lex_state = 66}, - [643] = {.lex_state = 3}, - [644] = {.lex_state = 0, .external_lex_state = 60}, + [617] = {.lex_state = 0, .external_lex_state = 59}, + [618] = {.lex_state = 0, .external_lex_state = 31}, + [619] = {.lex_state = 0, .external_lex_state = 31}, + [620] = {.lex_state = 0, .external_lex_state = 31}, + [621] = {.lex_state = 0, .external_lex_state = 31}, + [622] = {.lex_state = 0, .external_lex_state = 31}, + [623] = {.lex_state = 0, .external_lex_state = 31}, + [624] = {.lex_state = 0, .external_lex_state = 31}, + [625] = {.lex_state = 0, .external_lex_state = 31}, + [626] = {.lex_state = 0, .external_lex_state = 60}, + [627] = {.lex_state = 0, .external_lex_state = 60}, + [628] = {.lex_state = 0, .external_lex_state = 24}, + [629] = {.lex_state = 0, .external_lex_state = 60}, + [630] = {.lex_state = 0, .external_lex_state = 60}, + [631] = {.lex_state = 0, .external_lex_state = 24}, + [632] = {.lex_state = 0, .external_lex_state = 31}, + [633] = {.lex_state = 0, .external_lex_state = 31}, + [634] = {.lex_state = 0, .external_lex_state = 31}, + [635] = {.lex_state = 0, .external_lex_state = 31}, + [636] = {.lex_state = 0, .external_lex_state = 31}, + [637] = {.lex_state = 0, .external_lex_state = 31}, + [638] = {.lex_state = 0, .external_lex_state = 31}, + [639] = {.lex_state = 0, .external_lex_state = 31}, + [640] = {.lex_state = 0, .external_lex_state = 31}, + [641] = {.lex_state = 0, .external_lex_state = 31}, + [642] = {.lex_state = 0, .external_lex_state = 69}, + [643] = {.lex_state = 0, .external_lex_state = 31}, + [644] = {.lex_state = 0, .external_lex_state = 31}, [645] = {.lex_state = 0, .external_lex_state = 28}, - [646] = {.lex_state = 0, .external_lex_state = 60}, - [647] = {.lex_state = 0, .external_lex_state = 60}, - [648] = {.lex_state = 0, .external_lex_state = 60}, - [649] = {.lex_state = 38, .external_lex_state = 27}, + [646] = {.lex_state = 0, .external_lex_state = 31}, + [647] = {.lex_state = 0, .external_lex_state = 64}, + [648] = {.lex_state = 0, .external_lex_state = 31}, + [649] = {.lex_state = 0, .external_lex_state = 31}, [650] = {.lex_state = 0, .external_lex_state = 60}, [651] = {.lex_state = 0, .external_lex_state = 60}, - [652] = {.lex_state = 0, .external_lex_state = 28}, - [653] = {.lex_state = 6}, - [654] = {.lex_state = 0, .external_lex_state = 67}, - [655] = {.lex_state = 0, .external_lex_state = 17}, - [656] = {.lex_state = 0, .external_lex_state = 60}, - [657] = {.lex_state = 0, .external_lex_state = 60}, - [658] = {.lex_state = 9}, - [659] = {.lex_state = 0, .external_lex_state = 60}, - [660] = {.lex_state = 0, .external_lex_state = 60}, - [661] = {.lex_state = 0, .external_lex_state = 67}, - [662] = {.lex_state = 0, .external_lex_state = 62}, - [663] = {.lex_state = 0, .external_lex_state = 31}, - [664] = {.lex_state = 0, .external_lex_state = 68}, - [665] = {.lex_state = 0, .external_lex_state = 69}, - [666] = {.lex_state = 0, .external_lex_state = 29}, - [667] = {.lex_state = 0, .external_lex_state = 26}, - [668] = {.lex_state = 0, .external_lex_state = 68}, - [669] = {.lex_state = 0, .external_lex_state = 68}, - [670] = {.lex_state = 0, .external_lex_state = 69}, - [671] = {.lex_state = 0, .external_lex_state = 69}, - [672] = {.lex_state = 0, .external_lex_state = 69}, - [673] = {.lex_state = 0, .external_lex_state = 29}, - [674] = {.lex_state = 0, .external_lex_state = 30}, - [675] = {.lex_state = 0, .external_lex_state = 68}, - [676] = {.lex_state = 0, .external_lex_state = 69}, - [677] = {.lex_state = 0, .external_lex_state = 69}, - [678] = {.lex_state = 0, .external_lex_state = 63}, - [679] = {.lex_state = 0, .external_lex_state = 70}, - [680] = {.lex_state = 0, .external_lex_state = 42}, - [681] = {.lex_state = 0, .external_lex_state = 42}, - [682] = {.lex_state = 0, .external_lex_state = 41}, - [683] = {.lex_state = 0, .external_lex_state = 58}, - [684] = {.lex_state = 0, .external_lex_state = 42}, - [685] = {.lex_state = 0, .external_lex_state = 45}, - [686] = {.lex_state = 0, .external_lex_state = 45}, - [687] = {.lex_state = 0, .external_lex_state = 65}, - [688] = {.lex_state = 0, .external_lex_state = 43}, - [689] = {.lex_state = 0, .external_lex_state = 71}, - [690] = {.lex_state = 0, .external_lex_state = 48}, - [691] = {.lex_state = 0, .external_lex_state = 48}, - [692] = {.lex_state = 0, .external_lex_state = 51}, - [693] = {.lex_state = 0, .external_lex_state = 51}, + [652] = {.lex_state = 2}, + [653] = {.lex_state = 0, .external_lex_state = 60}, + [654] = {.lex_state = 0, .external_lex_state = 60}, + [655] = {.lex_state = 0, .external_lex_state = 31}, + [656] = {.lex_state = 0, .external_lex_state = 24}, + [657] = {.lex_state = 0, .external_lex_state = 63}, + [658] = {.lex_state = 0, .external_lex_state = 31}, + [659] = {.lex_state = 0, .external_lex_state = 59}, + [660] = {.lex_state = 0, .external_lex_state = 29}, + [661] = {.lex_state = 0, .external_lex_state = 29}, + [662] = {.lex_state = 0, .external_lex_state = 32}, + [663] = {.lex_state = 0, .external_lex_state = 32}, + [664] = {.lex_state = 0, .external_lex_state = 31}, + [665] = {.lex_state = 37, .external_lex_state = 27}, + [666] = {.lex_state = 0, .external_lex_state = 31}, + [667] = {.lex_state = 0, .external_lex_state = 63}, + [668] = {.lex_state = 0, .external_lex_state = 63}, + [669] = {.lex_state = 0, .external_lex_state = 31}, + [670] = {.lex_state = 0, .external_lex_state = 31}, + [671] = {.lex_state = 0, .external_lex_state = 31}, + [672] = {.lex_state = 0, .external_lex_state = 31}, + [673] = {.lex_state = 0, .external_lex_state = 31}, + [674] = {.lex_state = 0, .external_lex_state = 31}, + [675] = {.lex_state = 0, .external_lex_state = 31}, + [676] = {.lex_state = 0, .external_lex_state = 31}, + [677] = {.lex_state = 0, .external_lex_state = 31}, + [678] = {.lex_state = 0, .external_lex_state = 27}, + [679] = {.lex_state = 0, .external_lex_state = 27}, + [680] = {.lex_state = 0, .external_lex_state = 27}, + [681] = {.lex_state = 0, .external_lex_state = 27}, + [682] = {.lex_state = 0, .external_lex_state = 27}, + [683] = {.lex_state = 0, .external_lex_state = 27}, + [684] = {.lex_state = 0, .external_lex_state = 27}, + [685] = {.lex_state = 0, .external_lex_state = 27}, + [686] = {.lex_state = 0, .external_lex_state = 27}, + [687] = {.lex_state = 0, .external_lex_state = 27}, + [688] = {.lex_state = 0, .external_lex_state = 27}, + [689] = {.lex_state = 0, .external_lex_state = 66}, + [690] = {.lex_state = 0, .external_lex_state = 58}, + [691] = {.lex_state = 0, .external_lex_state = 39}, + [692] = {.lex_state = 0, .external_lex_state = 39}, + [693] = {.lex_state = 0, .external_lex_state = 27}, [694] = {.lex_state = 0, .external_lex_state = 40}, [695] = {.lex_state = 0, .external_lex_state = 40}, [696] = {.lex_state = 0, .external_lex_state = 43}, [697] = {.lex_state = 0, .external_lex_state = 43}, - [698] = {.lex_state = 0, .external_lex_state = 46}, - [699] = {.lex_state = 0, .external_lex_state = 46}, - [700] = {.lex_state = 0, .external_lex_state = 49}, - [701] = {.lex_state = 0, .external_lex_state = 49}, - [702] = {.lex_state = 0, .external_lex_state = 52}, - [703] = {.lex_state = 0, .external_lex_state = 52}, - [704] = {.lex_state = 0, .external_lex_state = 44}, - [705] = {.lex_state = 0, .external_lex_state = 45}, - [706] = {.lex_state = 0, .external_lex_state = 44}, - [707] = {.lex_state = 0, .external_lex_state = 70}, - [708] = {.lex_state = 0, .external_lex_state = 47}, - [709] = {.lex_state = 0, .external_lex_state = 50}, - [710] = {.lex_state = 0, .external_lex_state = 39}, - [711] = {.lex_state = 0, .external_lex_state = 46}, - [712] = {.lex_state = 0, .external_lex_state = 47}, - [713] = {.lex_state = 0, .external_lex_state = 42}, - [714] = {.lex_state = 0, .external_lex_state = 45}, - [715] = {.lex_state = 0, .external_lex_state = 48}, - [716] = {.lex_state = 0, .external_lex_state = 51}, - [717] = {.lex_state = 0, .external_lex_state = 40}, - [718] = {.lex_state = 0, .external_lex_state = 43}, - [719] = {.lex_state = 0, .external_lex_state = 46}, - [720] = {.lex_state = 0, .external_lex_state = 72}, - [721] = {.lex_state = 0, .external_lex_state = 49}, - [722] = {.lex_state = 3}, - [723] = {.lex_state = 0, .external_lex_state = 25}, - [724] = {.lex_state = 0, .external_lex_state = 52}, - [725] = {.lex_state = 0, .external_lex_state = 52}, - [726] = {.lex_state = 0, .external_lex_state = 48}, - [727] = {.lex_state = 9, .external_lex_state = 57}, - [728] = {.lex_state = 0, .external_lex_state = 49}, - [729] = {.lex_state = 0}, + [698] = {.lex_state = 37, .external_lex_state = 20}, + [699] = {.lex_state = 0}, + [700] = {.lex_state = 0, .external_lex_state = 54}, + [701] = {.lex_state = 0, .external_lex_state = 54}, + [702] = {.lex_state = 0, .external_lex_state = 61}, + [703] = {.lex_state = 0, .external_lex_state = 57}, + [704] = {.lex_state = 0, .external_lex_state = 57}, + [705] = {.lex_state = 0}, + [706] = {.lex_state = 0, .external_lex_state = 36}, + [707] = {.lex_state = 0, .external_lex_state = 36}, + [708] = {.lex_state = 0, .external_lex_state = 62}, + [709] = {.lex_state = 0, .external_lex_state = 41}, + [710] = {.lex_state = 0, .external_lex_state = 41}, + [711] = {.lex_state = 0, .external_lex_state = 44}, + [712] = {.lex_state = 0, .external_lex_state = 44}, + [713] = {.lex_state = 0, .external_lex_state = 55}, + [714] = {.lex_state = 0, .external_lex_state = 55}, + [715] = {.lex_state = 0, .external_lex_state = 37}, + [716] = {.lex_state = 0, .external_lex_state = 37}, + [717] = {.lex_state = 0, .external_lex_state = 38}, + [718] = {.lex_state = 0, .external_lex_state = 38}, + [719] = {.lex_state = 0, .external_lex_state = 42}, + [720] = {.lex_state = 0, .external_lex_state = 42}, + [721] = {.lex_state = 0, .external_lex_state = 45}, + [722] = {.lex_state = 0, .external_lex_state = 45}, + [723] = {.lex_state = 8, .external_lex_state = 47}, + [724] = {.lex_state = 0, .external_lex_state = 70}, + [725] = {.lex_state = 0}, + [726] = {.lex_state = 0}, + [727] = {.lex_state = 0}, + [728] = {.lex_state = 2}, + [729] = {.lex_state = 0, .external_lex_state = 71}, [730] = {.lex_state = 0}, - [731] = {.lex_state = 0}, - [732] = {.lex_state = 0, .external_lex_state = 41}, - [733] = {.lex_state = 9, .external_lex_state = 57}, - [734] = {.lex_state = 0, .external_lex_state = 50}, - [735] = {.lex_state = 0, .external_lex_state = 59}, - [736] = {.lex_state = 0, .external_lex_state = 25}, - [737] = {.lex_state = 7, .external_lex_state = 57}, - [738] = {.lex_state = 0, .external_lex_state = 27}, - [739] = {.lex_state = 0, .external_lex_state = 70}, - [740] = {.lex_state = 0, .external_lex_state = 17}, - [741] = {.lex_state = 3}, - [742] = {.lex_state = 0, .external_lex_state = 72}, - [743] = {.lex_state = 0, .external_lex_state = 72}, - [744] = {.lex_state = 9, .external_lex_state = 57}, - [745] = {.lex_state = 38, .external_lex_state = 55}, - [746] = {.lex_state = 0, .external_lex_state = 41}, - [747] = {.lex_state = 9, .external_lex_state = 57}, - [748] = {.lex_state = 0, .external_lex_state = 61}, - [749] = {.lex_state = 0, .external_lex_state = 25}, + [731] = {.lex_state = 8, .external_lex_state = 47}, + [732] = {.lex_state = 0}, + [733] = {.lex_state = 0}, + [734] = {.lex_state = 0, .external_lex_state = 67}, + [735] = {.lex_state = 0, .external_lex_state = 27}, + [736] = {.lex_state = 0, .external_lex_state = 27}, + [737] = {.lex_state = 0, .external_lex_state = 72}, + [738] = {.lex_state = 0, .external_lex_state = 73}, + [739] = {.lex_state = 2}, + [740] = {.lex_state = 0, .external_lex_state = 52}, + [741] = {.lex_state = 8, .external_lex_state = 47}, + [742] = {.lex_state = 0, .external_lex_state = 74}, + [743] = {.lex_state = 0, .external_lex_state = 53}, + [744] = {.lex_state = 8, .external_lex_state = 47}, + [745] = {.lex_state = 0, .external_lex_state = 70}, + [746] = {.lex_state = 0, .external_lex_state = 24}, + [747] = {.lex_state = 0, .external_lex_state = 25}, + [748] = {.lex_state = 0, .external_lex_state = 54}, + [749] = {.lex_state = 37, .external_lex_state = 49}, [750] = {.lex_state = 0, .external_lex_state = 70}, - [751] = {.lex_state = 0, .external_lex_state = 37}, - [752] = {.lex_state = 0, .external_lex_state = 70}, - [753] = {.lex_state = 0, .external_lex_state = 70}, - [754] = {.lex_state = 0, .external_lex_state = 73}, - [755] = {.lex_state = 38}, - [756] = {.lex_state = 0}, - [757] = {.lex_state = 9, .external_lex_state = 57}, - [758] = {.lex_state = 0}, - [759] = {.lex_state = 0, .external_lex_state = 74}, - [760] = {.lex_state = 0, .external_lex_state = 75}, - [761] = {.lex_state = 0, .external_lex_state = 76}, - [762] = {.lex_state = 0, .external_lex_state = 27}, - [763] = {.lex_state = 0}, - [764] = {.lex_state = 0, .external_lex_state = 74}, - [765] = {.lex_state = 0, .external_lex_state = 76}, - [766] = {.lex_state = 9, .external_lex_state = 57}, - [767] = {.lex_state = 0, .external_lex_state = 76}, - [768] = {.lex_state = 0, .external_lex_state = 74}, - [769] = {.lex_state = 0, .external_lex_state = 37}, - [770] = {.lex_state = 0, .external_lex_state = 75}, - [771] = {.lex_state = 0, .external_lex_state = 75}, - [772] = {.lex_state = 0, .external_lex_state = 75}, - [773] = {.lex_state = 0, .external_lex_state = 70}, - [774] = {.lex_state = 9, .external_lex_state = 57}, - [775] = {.lex_state = 0, .external_lex_state = 27}, - [776] = {.lex_state = 0, .external_lex_state = 38}, - [777] = {.lex_state = 0, .external_lex_state = 25}, - [778] = {.lex_state = 0, .external_lex_state = 70}, - [779] = {.lex_state = 0, .external_lex_state = 70}, - [780] = {.lex_state = 0, .external_lex_state = 74}, - [781] = {.lex_state = 0, .external_lex_state = 75}, - [782] = {.lex_state = 0, .external_lex_state = 75}, - [783] = {.lex_state = 0, .external_lex_state = 73}, - [784] = {.lex_state = 0, .external_lex_state = 67}, - [785] = {.lex_state = 0, .external_lex_state = 27}, - [786] = {.lex_state = 0, .external_lex_state = 27}, - [787] = {.lex_state = 0, .external_lex_state = 37}, - [788] = {.lex_state = 0, .external_lex_state = 17}, - [789] = {.lex_state = 0, .external_lex_state = 38}, - [790] = {.lex_state = 0, .external_lex_state = 39}, - [791] = {.lex_state = 9, .external_lex_state = 57}, - [792] = {.lex_state = 0, .external_lex_state = 27}, - [793] = {.lex_state = 0, .external_lex_state = 40}, + [751] = {.lex_state = 0, .external_lex_state = 27}, + [752] = {.lex_state = 0, .external_lex_state = 27}, + [753] = {.lex_state = 0, .external_lex_state = 53}, + [754] = {.lex_state = 0, .external_lex_state = 70}, + [755] = {.lex_state = 0, .external_lex_state = 53}, + [756] = {.lex_state = 0, .external_lex_state = 56}, + [757] = {.lex_state = 0, .external_lex_state = 39}, + [758] = {.lex_state = 0, .external_lex_state = 27}, + [759] = {.lex_state = 0, .external_lex_state = 27}, + [760] = {.lex_state = 0, .external_lex_state = 27}, + [761] = {.lex_state = 0, .external_lex_state = 27}, + [762] = {.lex_state = 0, .external_lex_state = 53}, + [763] = {.lex_state = 0, .external_lex_state = 70}, + [764] = {.lex_state = 0, .external_lex_state = 27}, + [765] = {.lex_state = 0, .external_lex_state = 40}, + [766] = {.lex_state = 0, .external_lex_state = 72}, + [767] = {.lex_state = 0, .external_lex_state = 24}, + [768] = {.lex_state = 0, .external_lex_state = 55}, + [769] = {.lex_state = 0, .external_lex_state = 56}, + [770] = {.lex_state = 0, .external_lex_state = 27}, + [771] = {.lex_state = 8, .external_lex_state = 47}, + [772] = {.lex_state = 0, .external_lex_state = 43}, + [773] = {.lex_state = 0, .external_lex_state = 57}, + [774] = {.lex_state = 0, .external_lex_state = 37}, + [775] = {.lex_state = 0, .external_lex_state = 54}, + [776] = {.lex_state = 0, .external_lex_state = 57}, + [777] = {.lex_state = 8, .external_lex_state = 47}, + [778] = {.lex_state = 0, .external_lex_state = 27}, + [779] = {.lex_state = 2}, + [780] = {.lex_state = 0, .external_lex_state = 25}, + [781] = {.lex_state = 0, .external_lex_state = 52}, + [782] = {.lex_state = 0, .external_lex_state = 39}, + [783] = {.lex_state = 0, .external_lex_state = 36}, + [784] = {.lex_state = 0, .external_lex_state = 70}, + [785] = {.lex_state = 0, .external_lex_state = 73}, + [786] = {.lex_state = 0, .external_lex_state = 38}, + [787] = {.lex_state = 0, .external_lex_state = 40}, + [788] = {.lex_state = 0, .external_lex_state = 27}, + [789] = {.lex_state = 0, .external_lex_state = 36}, + [790] = {.lex_state = 0, .external_lex_state = 65}, + [791] = {.lex_state = 0, .external_lex_state = 27}, + [792] = {.lex_state = 0, .external_lex_state = 41}, + [793] = {.lex_state = 37}, [794] = {.lex_state = 0, .external_lex_state = 27}, - [795] = {.lex_state = 0, .external_lex_state = 27}, - [796] = {.lex_state = 0, .external_lex_state = 27}, - [797] = {.lex_state = 0, .external_lex_state = 27}, - [798] = {.lex_state = 0, .external_lex_state = 59}, - [799] = {.lex_state = 9, .external_lex_state = 57}, - [800] = {.lex_state = 0}, + [795] = {.lex_state = 0, .external_lex_state = 55}, + [796] = {.lex_state = 0, .external_lex_state = 37}, + [797] = {.lex_state = 0, .external_lex_state = 69}, + [798] = {.lex_state = 0, .external_lex_state = 27}, + [799] = {.lex_state = 0, .external_lex_state = 27}, + [800] = {.lex_state = 0, .external_lex_state = 38}, [801] = {.lex_state = 0, .external_lex_state = 27}, - [802] = {.lex_state = 0, .external_lex_state = 27}, - [803] = {.lex_state = 0, .external_lex_state = 25}, + [802] = {.lex_state = 0, .external_lex_state = 41}, + [803] = {.lex_state = 0, .external_lex_state = 42}, [804] = {.lex_state = 0, .external_lex_state = 27}, - [805] = {.lex_state = 0, .external_lex_state = 27}, + [805] = {.lex_state = 8, .external_lex_state = 47}, [806] = {.lex_state = 0, .external_lex_state = 27}, [807] = {.lex_state = 0, .external_lex_state = 27}, - [808] = {.lex_state = 0, .external_lex_state = 27}, - [809] = {.lex_state = 0, .external_lex_state = 27}, + [808] = {.lex_state = 0, .external_lex_state = 43}, + [809] = {.lex_state = 0, .external_lex_state = 70}, [810] = {.lex_state = 0, .external_lex_state = 27}, - [811] = {.lex_state = 0, .external_lex_state = 27}, + [811] = {.lex_state = 8, .external_lex_state = 47}, [812] = {.lex_state = 0, .external_lex_state = 27}, - [813] = {.lex_state = 0, .external_lex_state = 27}, - [814] = {.lex_state = 0, .external_lex_state = 27}, + [813] = {.lex_state = 0, .external_lex_state = 25}, + [814] = {.lex_state = 0, .external_lex_state = 44}, [815] = {.lex_state = 0, .external_lex_state = 27}, - [816] = {.lex_state = 0, .external_lex_state = 27}, + [816] = {.lex_state = 0, .external_lex_state = 70}, [817] = {.lex_state = 0, .external_lex_state = 27}, - [818] = {.lex_state = 0, .external_lex_state = 27}, - [819] = {.lex_state = 0, .external_lex_state = 72}, - [820] = {.lex_state = 0, .external_lex_state = 27}, - [821] = {.lex_state = 0, .external_lex_state = 63}, - [822] = {.lex_state = 0, .external_lex_state = 41}, - [823] = {.lex_state = 9, .external_lex_state = 57}, + [818] = {.lex_state = 0, .external_lex_state = 74}, + [819] = {.lex_state = 0, .external_lex_state = 45}, + [820] = {.lex_state = 0, .external_lex_state = 74}, + [821] = {.lex_state = 0, .external_lex_state = 75}, + [822] = {.lex_state = 0, .external_lex_state = 75}, + [823] = {.lex_state = 0, .external_lex_state = 75}, [824] = {.lex_state = 0, .external_lex_state = 27}, [825] = {.lex_state = 0, .external_lex_state = 27}, - [826] = {.lex_state = 0, .external_lex_state = 44}, + [826] = {.lex_state = 0, .external_lex_state = 27}, [827] = {.lex_state = 0, .external_lex_state = 27}, - [828] = {.lex_state = 0, .external_lex_state = 27}, - [829] = {.lex_state = 0, .external_lex_state = 44}, - [830] = {.lex_state = 0, .external_lex_state = 51}, - [831] = {.lex_state = 0, .external_lex_state = 47}, - [832] = {.lex_state = 0, .external_lex_state = 27}, - [833] = {.lex_state = 0, .external_lex_state = 47}, - [834] = {.lex_state = 0}, - [835] = {.lex_state = 0}, - [836] = {.lex_state = 0}, + [828] = {.lex_state = 0, .external_lex_state = 75}, + [829] = {.lex_state = 0, .external_lex_state = 71}, + [830] = {.lex_state = 5, .external_lex_state = 47}, + [831] = {.lex_state = 0, .external_lex_state = 42}, + [832] = {.lex_state = 8, .external_lex_state = 47}, + [833] = {.lex_state = 0, .external_lex_state = 27}, + [834] = {.lex_state = 0, .external_lex_state = 70}, + [835] = {.lex_state = 0, .external_lex_state = 74}, + [836] = {.lex_state = 8, .external_lex_state = 47}, [837] = {.lex_state = 0, .external_lex_state = 70}, - [838] = {.lex_state = 0, .external_lex_state = 27}, - [839] = {.lex_state = 0}, - [840] = {.lex_state = 0}, - [841] = {.lex_state = 0}, - [842] = {.lex_state = 0, .external_lex_state = 38}, - [843] = {.lex_state = 0, .external_lex_state = 50}, - [844] = {.lex_state = 0, .external_lex_state = 50}, - [845] = {.lex_state = 38, .external_lex_state = 22}, - [846] = {.lex_state = 0}, - [847] = {.lex_state = 0}, - [848] = {.lex_state = 0}, - [849] = {.lex_state = 3}, - [850] = {.lex_state = 2, .external_lex_state = 57}, - [851] = {.lex_state = 0}, - [852] = {.lex_state = 0}, - [853] = {.lex_state = 0}, - [854] = {.lex_state = 0, .external_lex_state = 39}, - [855] = {.lex_state = 0, .external_lex_state = 27}, - [856] = {.lex_state = 0, .external_lex_state = 39}, - [857] = {.lex_state = 0, .external_lex_state = 27}, + [838] = {.lex_state = 0, .external_lex_state = 25}, + [839] = {.lex_state = 0, .external_lex_state = 27}, + [840] = {.lex_state = 0, .external_lex_state = 25}, + [841] = {.lex_state = 0, .external_lex_state = 75}, + [842] = {.lex_state = 0, .external_lex_state = 76}, + [843] = {.lex_state = 0, .external_lex_state = 72}, + [844] = {.lex_state = 0, .external_lex_state = 56}, + [845] = {.lex_state = 2, .external_lex_state = 47}, + [846] = {.lex_state = 0, .external_lex_state = 45}, + [847] = {.lex_state = 0, .external_lex_state = 75}, + [848] = {.lex_state = 0, .external_lex_state = 72}, + [849] = {.lex_state = 0, .external_lex_state = 65}, + [850] = {.lex_state = 0, .external_lex_state = 27}, + [851] = {.lex_state = 0, .external_lex_state = 56}, + [852] = {.lex_state = 0, .external_lex_state = 52}, + [853] = {.lex_state = 0, .external_lex_state = 73}, + [854] = {.lex_state = 0, .external_lex_state = 27}, + [855] = {.lex_state = 0}, + [856] = {.lex_state = 0}, + [857] = {.lex_state = 0}, [858] = {.lex_state = 0}, [859] = {.lex_state = 0}, [860] = {.lex_state = 0}, - [861] = {.lex_state = 0, .external_lex_state = 64}, - [862] = {.lex_state = 0, .external_lex_state = 38}, + [861] = {.lex_state = 0}, + [862] = {.lex_state = 0}, [863] = {.lex_state = 0}, [864] = {.lex_state = 0}, [865] = {.lex_state = 0}, - [866] = {.lex_state = 0, .external_lex_state = 27}, + [866] = {.lex_state = 0}, [867] = {.lex_state = 0, .external_lex_state = 27}, - [868] = {.lex_state = 0, .external_lex_state = 27}, + [868] = {.lex_state = 0}, [869] = {.lex_state = 0}, [870] = {.lex_state = 0}, [871] = {.lex_state = 0}, - [872] = {.lex_state = 0, .external_lex_state = 27}, - [873] = {.lex_state = 0, .external_lex_state = 27}, - [874] = {.lex_state = 0}, + [872] = {.lex_state = 0}, + [873] = {.lex_state = 0}, + [874] = {.lex_state = 0, .external_lex_state = 27}, [875] = {.lex_state = 0}, [876] = {.lex_state = 0}, - [877] = {.lex_state = 0, .external_lex_state = 76}, - [878] = {.lex_state = 0, .external_lex_state = 76}, + [877] = {.lex_state = 0}, + [878] = {.lex_state = 0}, [879] = {.lex_state = 0}, - [880] = {.lex_state = 0, .external_lex_state = 76}, - [881] = {.lex_state = 0, .external_lex_state = 76}, - [882] = {.lex_state = 0, .external_lex_state = 76}, - [883] = {.lex_state = 0, .external_lex_state = 76}, - [884] = {.lex_state = 0, .external_lex_state = 76}, - [885] = {.lex_state = 0, .external_lex_state = 76}, - [886] = {.lex_state = 3}, - [887] = {.lex_state = 3}, - [888] = {.lex_state = 3}, - [889] = {.lex_state = 3}, - [890] = {.lex_state = 0, .external_lex_state = 27}, - [891] = {.lex_state = 0, .external_lex_state = 27}, - [892] = {.lex_state = 0, .external_lex_state = 27}, - [893] = {.lex_state = 0, .external_lex_state = 27}, - [894] = {.lex_state = 0, .external_lex_state = 27}, - [895] = {.lex_state = 50}, - [896] = {.lex_state = 0, .external_lex_state = 77}, - [897] = {.lex_state = 0, .external_lex_state = 78}, - [898] = {.lex_state = 0, .external_lex_state = 25}, - [899] = {.lex_state = 9}, - [900] = {.lex_state = 0, .external_lex_state = 78}, - [901] = {.lex_state = 0, .external_lex_state = 57}, - [902] = {.lex_state = 0, .external_lex_state = 57}, - [903] = {.lex_state = 0, .external_lex_state = 77}, - [904] = {.lex_state = 0, .external_lex_state = 57}, - [905] = {.lex_state = 0, .external_lex_state = 78}, - [906] = {.lex_state = 0, .external_lex_state = 57}, - [907] = {.lex_state = 0, .external_lex_state = 78}, - [908] = {.lex_state = 0}, - [909] = {.lex_state = 0, .external_lex_state = 78}, - [910] = {.lex_state = 0, .external_lex_state = 79}, - [911] = {.lex_state = 0, .external_lex_state = 77}, - [912] = {.lex_state = 0, .external_lex_state = 57}, - [913] = {.lex_state = 0, .external_lex_state = 77}, - [914] = {.lex_state = 0, .external_lex_state = 57}, + [880] = {.lex_state = 0}, + [881] = {.lex_state = 0, .external_lex_state = 73}, + [882] = {.lex_state = 0, .external_lex_state = 73}, + [883] = {.lex_state = 0, .external_lex_state = 73}, + [884] = {.lex_state = 0, .external_lex_state = 73}, + [885] = {.lex_state = 0, .external_lex_state = 73}, + [886] = {.lex_state = 0, .external_lex_state = 73}, + [887] = {.lex_state = 0, .external_lex_state = 73}, + [888] = {.lex_state = 0, .external_lex_state = 73}, + [889] = {.lex_state = 2}, + [890] = {.lex_state = 2}, + [891] = {.lex_state = 2}, + [892] = {.lex_state = 2}, + [893] = {.lex_state = 0, .external_lex_state = 44}, + [894] = {.lex_state = 0, .external_lex_state = 77}, + [895] = {.lex_state = 0, .external_lex_state = 78}, + [896] = {.lex_state = 0, .external_lex_state = 79}, + [897] = {.lex_state = 0}, + [898] = {.lex_state = 0, .external_lex_state = 79}, + [899] = {.lex_state = 0, .external_lex_state = 79}, + [900] = {.lex_state = 0, .external_lex_state = 47}, + [901] = {.lex_state = 0, .external_lex_state = 47}, + [902] = {.lex_state = 0, .external_lex_state = 47}, + [903] = {.lex_state = 0, .external_lex_state = 47}, + [904] = {.lex_state = 0, .external_lex_state = 78}, + [905] = {.lex_state = 0, .external_lex_state = 79}, + [906] = {.lex_state = 0, .external_lex_state = 47}, + [907] = {.lex_state = 0, .external_lex_state = 49}, + [908] = {.lex_state = 0, .external_lex_state = 47}, + [909] = {.lex_state = 5}, + [910] = {.lex_state = 0, .external_lex_state = 47}, + [911] = {.lex_state = 0, .external_lex_state = 47}, + [912] = {.lex_state = 0, .external_lex_state = 47}, + [913] = {.lex_state = 0, .external_lex_state = 47}, + [914] = {.lex_state = 0, .external_lex_state = 78}, [915] = {.lex_state = 0, .external_lex_state = 78}, - [916] = {.lex_state = 0, .external_lex_state = 78}, - [917] = {.lex_state = 0}, - [918] = {.lex_state = 0, .external_lex_state = 57}, - [919] = {.lex_state = 0, .external_lex_state = 57}, - [920] = {.lex_state = 0, .external_lex_state = 57}, - [921] = {.lex_state = 0, .external_lex_state = 57}, - [922] = {.lex_state = 0, .external_lex_state = 57}, - [923] = {.lex_state = 0, .external_lex_state = 57}, - [924] = {.lex_state = 0, .external_lex_state = 57}, - [925] = {.lex_state = 0, .external_lex_state = 57}, - [926] = {.lex_state = 0, .external_lex_state = 57}, - [927] = {.lex_state = 0}, - [928] = {.lex_state = 0, .external_lex_state = 78}, - [929] = {.lex_state = 0, .external_lex_state = 77}, - [930] = {.lex_state = 0}, - [931] = {.lex_state = 2}, - [932] = {.lex_state = 0, .external_lex_state = 77}, - [933] = {.lex_state = 0, .external_lex_state = 57}, - [934] = {.lex_state = 0, .external_lex_state = 78}, - [935] = {.lex_state = 0, .external_lex_state = 77}, - [936] = {.lex_state = 0, .external_lex_state = 77}, - [937] = {.lex_state = 0, .external_lex_state = 77}, - [938] = {.lex_state = 0, .external_lex_state = 77}, - [939] = {.lex_state = 0, .external_lex_state = 77}, - [940] = {.lex_state = 0, .external_lex_state = 77}, - [941] = {.lex_state = 0, .external_lex_state = 77}, - [942] = {.lex_state = 0, .external_lex_state = 77}, - [943] = {.lex_state = 0, .external_lex_state = 77}, - [944] = {.lex_state = 2}, - [945] = {.lex_state = 0, .external_lex_state = 77}, - [946] = {.lex_state = 0, .external_lex_state = 77}, - [947] = {.lex_state = 0, .external_lex_state = 77}, - [948] = {.lex_state = 0, .external_lex_state = 77}, - [949] = {.lex_state = 0, .external_lex_state = 57}, - [950] = {.lex_state = 0}, - [951] = {.lex_state = 0, .external_lex_state = 78}, - [952] = {.lex_state = 0, .external_lex_state = 57}, - [953] = {.lex_state = 10}, - [954] = {.lex_state = 0}, - [955] = {.lex_state = 0, .external_lex_state = 57}, - [956] = {.lex_state = 0, .external_lex_state = 57}, - [957] = {.lex_state = 0, .external_lex_state = 80}, - [958] = {.lex_state = 0, .external_lex_state = 57}, - [959] = {.lex_state = 0, .external_lex_state = 78}, - [960] = {.lex_state = 0, .external_lex_state = 57}, - [961] = {.lex_state = 0, .external_lex_state = 78}, - [962] = {.lex_state = 0, .external_lex_state = 57}, - [963] = {.lex_state = 9}, - [964] = {.lex_state = 0, .external_lex_state = 78}, - [965] = {.lex_state = 0, .external_lex_state = 57}, - [966] = {.lex_state = 0, .external_lex_state = 57}, - [967] = {.lex_state = 0, .external_lex_state = 57}, - [968] = {.lex_state = 0, .external_lex_state = 57}, - [969] = {.lex_state = 0, .external_lex_state = 57}, - [970] = {.lex_state = 0, .external_lex_state = 57}, - [971] = {.lex_state = 0, .external_lex_state = 57}, - [972] = {.lex_state = 0, .external_lex_state = 57}, - [973] = {.lex_state = 0, .external_lex_state = 57}, + [916] = {.lex_state = 0, .external_lex_state = 47}, + [917] = {.lex_state = 0, .external_lex_state = 47}, + [918] = {.lex_state = 0, .external_lex_state = 47}, + [919] = {.lex_state = 0, .external_lex_state = 47}, + [920] = {.lex_state = 0, .external_lex_state = 47}, + [921] = {.lex_state = 0, .external_lex_state = 47}, + [922] = {.lex_state = 0, .external_lex_state = 47}, + [923] = {.lex_state = 0, .external_lex_state = 47}, + [924] = {.lex_state = 0, .external_lex_state = 47}, + [925] = {.lex_state = 2}, + [926] = {.lex_state = 2}, + [927] = {.lex_state = 0, .external_lex_state = 47}, + [928] = {.lex_state = 0, .external_lex_state = 79}, + [929] = {.lex_state = 0, .external_lex_state = 79}, + [930] = {.lex_state = 0, .external_lex_state = 79}, + [931] = {.lex_state = 0, .external_lex_state = 79}, + [932] = {.lex_state = 0, .external_lex_state = 78}, + [933] = {.lex_state = 0, .external_lex_state = 47}, + [934] = {.lex_state = 0, .external_lex_state = 79}, + [935] = {.lex_state = 8}, + [936] = {.lex_state = 0, .external_lex_state = 79}, + [937] = {.lex_state = 0, .external_lex_state = 79}, + [938] = {.lex_state = 0, .external_lex_state = 79}, + [939] = {.lex_state = 0, .external_lex_state = 79}, + [940] = {.lex_state = 0, .external_lex_state = 78}, + [941] = {.lex_state = 0, .external_lex_state = 25}, + [942] = {.lex_state = 0, .external_lex_state = 79}, + [943] = {.lex_state = 0}, + [944] = {.lex_state = 0, .external_lex_state = 78}, + [945] = {.lex_state = 0, .external_lex_state = 79}, + [946] = {.lex_state = 0, .external_lex_state = 78}, + [947] = {.lex_state = 0}, + [948] = {.lex_state = 0, .external_lex_state = 80}, + [949] = {.lex_state = 0, .external_lex_state = 78}, + [950] = {.lex_state = 0, .external_lex_state = 78}, + [951] = {.lex_state = 0, .external_lex_state = 47}, + [952] = {.lex_state = 48}, + [953] = {.lex_state = 0, .external_lex_state = 79}, + [954] = {.lex_state = 0, .external_lex_state = 77}, + [955] = {.lex_state = 0, .external_lex_state = 81}, + [956] = {.lex_state = 0, .external_lex_state = 47}, + [957] = {.lex_state = 0, .external_lex_state = 47}, + [958] = {.lex_state = 0, .external_lex_state = 79}, + [959] = {.lex_state = 0, .external_lex_state = 47}, + [960] = {.lex_state = 0, .external_lex_state = 47}, + [961] = {.lex_state = 0, .external_lex_state = 47}, + [962] = {.lex_state = 9}, + [963] = {.lex_state = 0, .external_lex_state = 78}, + [964] = {.lex_state = 0, .external_lex_state = 82}, + [965] = {.lex_state = 0, .external_lex_state = 47}, + [966] = {.lex_state = 0, .external_lex_state = 47}, + [967] = {.lex_state = 0, .external_lex_state = 78}, + [968] = {.lex_state = 0}, + [969] = {.lex_state = 0, .external_lex_state = 79}, + [970] = {.lex_state = 0, .external_lex_state = 47}, + [971] = {.lex_state = 0}, + [972] = {.lex_state = 0, .external_lex_state = 47}, + [973] = {.lex_state = 0, .external_lex_state = 78}, [974] = {.lex_state = 0, .external_lex_state = 78}, - [975] = {.lex_state = 0, .external_lex_state = 78}, - [976] = {.lex_state = 0, .external_lex_state = 57}, - [977] = {.lex_state = 0, .external_lex_state = 57}, - [978] = {.lex_state = 0, .external_lex_state = 57}, - [979] = {.lex_state = 0, .external_lex_state = 57}, - [980] = {.lex_state = 0, .external_lex_state = 57}, - [981] = {.lex_state = 0, .external_lex_state = 57}, - [982] = {.lex_state = 0, .external_lex_state = 57}, - [983] = {.lex_state = 0, .external_lex_state = 57}, - [984] = {.lex_state = 0, .external_lex_state = 57}, - [985] = {.lex_state = 0, .external_lex_state = 78}, - [986] = {.lex_state = 0}, - [987] = {.lex_state = 0, .external_lex_state = 77}, - [988] = {.lex_state = 50}, - [989] = {.lex_state = 0, .external_lex_state = 57}, - [990] = {.lex_state = 0, .external_lex_state = 57}, - [991] = {.lex_state = 0, .external_lex_state = 57}, - [992] = {.lex_state = 0, .external_lex_state = 81}, - [993] = {.lex_state = 0, .external_lex_state = 77}, - [994] = {.lex_state = 0, .external_lex_state = 82}, - [995] = {.lex_state = 0}, - [996] = {.lex_state = 0, .external_lex_state = 77}, - [997] = {.lex_state = 7}, - [998] = {.lex_state = 0, .external_lex_state = 77}, - [999] = {.lex_state = 0, .external_lex_state = 57}, - [1000] = {.lex_state = 0, .external_lex_state = 57}, - [1001] = {.lex_state = 0, .external_lex_state = 77}, - [1002] = {.lex_state = 0, .external_lex_state = 83}, - [1003] = {.lex_state = 50}, - [1004] = {.lex_state = 0}, - [1005] = {.lex_state = 3}, - [1006] = {.lex_state = 0}, - [1007] = {.lex_state = 0, .external_lex_state = 57}, - [1008] = {.lex_state = 0, .external_lex_state = 77}, - [1009] = {.lex_state = 0, .external_lex_state = 57}, - [1010] = {.lex_state = 0, .external_lex_state = 77}, - [1011] = {.lex_state = 0, .external_lex_state = 77}, - [1012] = {.lex_state = 0, .external_lex_state = 57}, - [1013] = {.lex_state = 0, .external_lex_state = 78}, - [1014] = {.lex_state = 0, .external_lex_state = 77}, - [1015] = {.lex_state = 3}, - [1016] = {.lex_state = 0}, + [975] = {.lex_state = 0, .external_lex_state = 47}, + [976] = {.lex_state = 0, .external_lex_state = 47}, + [977] = {.lex_state = 0, .external_lex_state = 47}, + [978] = {.lex_state = 0, .external_lex_state = 47}, + [979] = {.lex_state = 0, .external_lex_state = 47}, + [980] = {.lex_state = 0, .external_lex_state = 47}, + [981] = {.lex_state = 0, .external_lex_state = 47}, + [982] = {.lex_state = 0, .external_lex_state = 47}, + [983] = {.lex_state = 0, .external_lex_state = 47}, + [984] = {.lex_state = 2}, + [985] = {.lex_state = 0, .external_lex_state = 47}, + [986] = {.lex_state = 0, .external_lex_state = 79}, + [987] = {.lex_state = 0, .external_lex_state = 83}, + [988] = {.lex_state = 0, .external_lex_state = 78}, + [989] = {.lex_state = 48}, + [990] = {.lex_state = 0, .external_lex_state = 79}, + [991] = {.lex_state = 0, .external_lex_state = 78}, + [992] = {.lex_state = 0}, + [993] = {.lex_state = 0}, + [994] = {.lex_state = 0, .external_lex_state = 47}, + [995] = {.lex_state = 0, .external_lex_state = 84}, + [996] = {.lex_state = 2}, + [997] = {.lex_state = 48}, + [998] = {.lex_state = 0, .external_lex_state = 79}, + [999] = {.lex_state = 2}, + [1000] = {.lex_state = 0, .external_lex_state = 47}, + [1001] = {.lex_state = 0, .external_lex_state = 47}, + [1002] = {.lex_state = 0, .external_lex_state = 79}, + [1003] = {.lex_state = 0, .external_lex_state = 79}, + [1004] = {.lex_state = 0, .external_lex_state = 79}, + [1005] = {.lex_state = 0, .external_lex_state = 47}, + [1006] = {.lex_state = 0, .external_lex_state = 79}, + [1007] = {.lex_state = 2}, + [1008] = {.lex_state = 0, .external_lex_state = 79}, + [1009] = {.lex_state = 0, .external_lex_state = 49}, + [1010] = {.lex_state = 0, .external_lex_state = 47}, + [1011] = {.lex_state = 0, .external_lex_state = 47}, + [1012] = {.lex_state = 0, .external_lex_state = 47}, + [1013] = {.lex_state = 0, .external_lex_state = 80}, + [1014] = {.lex_state = 0, .external_lex_state = 78}, + [1015] = {.lex_state = 0, .external_lex_state = 79}, + [1016] = {.lex_state = 0, .external_lex_state = 79}, [1017] = {.lex_state = 0, .external_lex_state = 78}, - [1018] = {.lex_state = 0, .external_lex_state = 57}, - [1019] = {.lex_state = 0, .external_lex_state = 57}, - [1020] = {.lex_state = 0, .external_lex_state = 77}, - [1021] = {.lex_state = 0, .external_lex_state = 77}, - [1022] = {.lex_state = 0, .external_lex_state = 77}, - [1023] = {.lex_state = 0, .external_lex_state = 77}, - [1024] = {.lex_state = 0, .external_lex_state = 77}, - [1025] = {.lex_state = 0, .external_lex_state = 57}, - [1026] = {.lex_state = 0, .external_lex_state = 57}, - [1027] = {.lex_state = 0, .external_lex_state = 57}, - [1028] = {.lex_state = 0, .external_lex_state = 57}, - [1029] = {.lex_state = 0, .external_lex_state = 57}, - [1030] = {.lex_state = 0, .external_lex_state = 57}, - [1031] = {.lex_state = 0, .external_lex_state = 77}, - [1032] = {.lex_state = 2}, - [1033] = {.lex_state = 50}, - [1034] = {.lex_state = 0, .external_lex_state = 77}, - [1035] = {.lex_state = 0, .external_lex_state = 77}, - [1036] = {.lex_state = 0, .external_lex_state = 77}, - [1037] = {.lex_state = 0, .external_lex_state = 78}, - [1038] = {.lex_state = 0, .external_lex_state = 57}, - [1039] = {.lex_state = 0}, - [1040] = {.lex_state = 0, .external_lex_state = 77}, - [1041] = {.lex_state = 0, .external_lex_state = 77}, - [1042] = {.lex_state = 0, .external_lex_state = 77}, - [1043] = {.lex_state = 2}, - [1044] = {.lex_state = 0, .external_lex_state = 57}, - [1045] = {.lex_state = 0, .external_lex_state = 25}, - [1046] = {.lex_state = 0, .external_lex_state = 57}, - [1047] = {.lex_state = 0, .external_lex_state = 57}, - [1048] = {.lex_state = 0, .external_lex_state = 57}, - [1049] = {.lex_state = 0, .external_lex_state = 77}, - [1050] = {.lex_state = 0, .external_lex_state = 57}, - [1051] = {.lex_state = 2}, - [1052] = {.lex_state = 50}, - [1053] = {.lex_state = 0, .external_lex_state = 77}, - [1054] = {.lex_state = 0, .external_lex_state = 78}, - [1055] = {.lex_state = 0, .external_lex_state = 78}, - [1056] = {.lex_state = 0, .external_lex_state = 77}, - [1057] = {.lex_state = 0, .external_lex_state = 57}, - [1058] = {.lex_state = 0, .external_lex_state = 57}, - [1059] = {.lex_state = 0, .external_lex_state = 77}, - [1060] = {.lex_state = 0, .external_lex_state = 57}, - [1061] = {.lex_state = 0, .external_lex_state = 57}, - [1062] = {.lex_state = 0, .external_lex_state = 57}, - [1063] = {.lex_state = 0, .external_lex_state = 57}, - [1064] = {.lex_state = 0, .external_lex_state = 57}, - [1065] = {.lex_state = 0, .external_lex_state = 57}, - [1066] = {.lex_state = 0, .external_lex_state = 57}, - [1067] = {.lex_state = 0, .external_lex_state = 57}, - [1068] = {.lex_state = 0, .external_lex_state = 57}, + [1018] = {.lex_state = 0, .external_lex_state = 47}, + [1019] = {.lex_state = 0, .external_lex_state = 79}, + [1020] = {.lex_state = 0, .external_lex_state = 79}, + [1021] = {.lex_state = 0, .external_lex_state = 25}, + [1022] = {.lex_state = 0, .external_lex_state = 47}, + [1023] = {.lex_state = 0, .external_lex_state = 47}, + [1024] = {.lex_state = 0, .external_lex_state = 79}, + [1025] = {.lex_state = 0, .external_lex_state = 79}, + [1026] = {.lex_state = 0, .external_lex_state = 47}, + [1027] = {.lex_state = 0, .external_lex_state = 47}, + [1028] = {.lex_state = 0, .external_lex_state = 47}, + [1029] = {.lex_state = 0, .external_lex_state = 47}, + [1030] = {.lex_state = 0, .external_lex_state = 47}, + [1031] = {.lex_state = 2}, + [1032] = {.lex_state = 48}, + [1033] = {.lex_state = 0, .external_lex_state = 79}, + [1034] = {.lex_state = 0, .external_lex_state = 79}, + [1035] = {.lex_state = 0, .external_lex_state = 79}, + [1036] = {.lex_state = 0, .external_lex_state = 79}, + [1037] = {.lex_state = 0, .external_lex_state = 47}, + [1038] = {.lex_state = 10}, + [1039] = {.lex_state = 0, .external_lex_state = 79}, + [1040] = {.lex_state = 0, .external_lex_state = 47}, + [1041] = {.lex_state = 0, .external_lex_state = 47}, + [1042] = {.lex_state = 0, .external_lex_state = 47}, + [1043] = {.lex_state = 0, .external_lex_state = 79}, + [1044] = {.lex_state = 0, .external_lex_state = 79}, + [1045] = {.lex_state = 0, .external_lex_state = 47}, + [1046] = {.lex_state = 0, .external_lex_state = 47}, + [1047] = {.lex_state = 0, .external_lex_state = 47}, + [1048] = {.lex_state = 0, .external_lex_state = 78}, + [1049] = {.lex_state = 0, .external_lex_state = 47}, + [1050] = {.lex_state = 2}, + [1051] = {.lex_state = 48}, + [1052] = {.lex_state = 0, .external_lex_state = 79}, + [1053] = {.lex_state = 0, .external_lex_state = 79}, + [1054] = {.lex_state = 0, .external_lex_state = 79}, + [1055] = {.lex_state = 0, .external_lex_state = 79}, + [1056] = {.lex_state = 0, .external_lex_state = 47}, + [1057] = {.lex_state = 0}, + [1058] = {.lex_state = 0, .external_lex_state = 79}, + [1059] = {.lex_state = 0}, + [1060] = {.lex_state = 2}, + [1061] = {.lex_state = 0}, + [1062] = {.lex_state = 0, .external_lex_state = 79}, + [1063] = {.lex_state = 0, .external_lex_state = 79}, + [1064] = {.lex_state = 0, .external_lex_state = 47}, + [1065] = {.lex_state = 0, .external_lex_state = 47}, + [1066] = {.lex_state = 8}, + [1067] = {.lex_state = 0}, + [1068] = {.lex_state = 0, .external_lex_state = 47}, [1069] = {.lex_state = 2}, - [1070] = {.lex_state = 2}, - [1071] = {.lex_state = 50}, - [1072] = {.lex_state = 0, .external_lex_state = 77}, - [1073] = {.lex_state = 0, .external_lex_state = 77}, - [1074] = {.lex_state = 0, .external_lex_state = 77}, - [1075] = {.lex_state = 0, .external_lex_state = 57}, - [1076] = {.lex_state = 0, .external_lex_state = 77}, - [1077] = {.lex_state = 0, .external_lex_state = 77}, - [1078] = {.lex_state = 0, .external_lex_state = 77}, - [1079] = {.lex_state = 0, .external_lex_state = 77}, - [1080] = {.lex_state = 0, .external_lex_state = 77}, - [1081] = {.lex_state = 0, .external_lex_state = 57}, - [1082] = {.lex_state = 0, .external_lex_state = 77}, - [1083] = {.lex_state = 0, .external_lex_state = 57}, - [1084] = {.lex_state = 0, .external_lex_state = 57}, - [1085] = {.lex_state = 0, .external_lex_state = 57}, - [1086] = {.lex_state = 50}, - [1087] = {.lex_state = 0, .external_lex_state = 78}, - [1088] = {.lex_state = 2}, - [1089] = {.lex_state = 50}, - [1090] = {.lex_state = 0, .external_lex_state = 77}, - [1091] = {.lex_state = 0, .external_lex_state = 77}, - [1092] = {.lex_state = 0, .external_lex_state = 77}, - [1093] = {.lex_state = 0, .external_lex_state = 77}, - [1094] = {.lex_state = 0, .external_lex_state = 77}, - [1095] = {.lex_state = 0, .external_lex_state = 77}, - [1096] = {.lex_state = 0, .external_lex_state = 77}, - [1097] = {.lex_state = 0, .external_lex_state = 77}, - [1098] = {.lex_state = 0, .external_lex_state = 77}, - [1099] = {.lex_state = 0, .external_lex_state = 77}, - [1100] = {.lex_state = 0, .external_lex_state = 77}, - [1101] = {.lex_state = 0, .external_lex_state = 77}, - [1102] = {.lex_state = 0, .external_lex_state = 77}, - [1103] = {.lex_state = 0, .external_lex_state = 77}, - [1104] = {.lex_state = 0, .external_lex_state = 77}, - [1105] = {.lex_state = 50}, - [1106] = {.lex_state = 0, .external_lex_state = 77}, - [1107] = {.lex_state = 9}, - [1108] = {.lex_state = 0, .external_lex_state = 55}, - [1109] = {.lex_state = 3}, - [1110] = {.lex_state = 10}, - [1111] = {.lex_state = 0, .external_lex_state = 57}, - [1112] = {.lex_state = 11}, - [1113] = {.lex_state = 9}, - [1114] = {.lex_state = 0, .external_lex_state = 77}, - [1115] = {.lex_state = 3}, - [1116] = {.lex_state = 10}, - [1117] = {.lex_state = 50}, - [1118] = {.lex_state = 0, .external_lex_state = 77}, - [1119] = {.lex_state = 9}, - [1120] = {.lex_state = 0, .external_lex_state = 57}, - [1121] = {.lex_state = 3}, - [1122] = {.lex_state = 10}, - [1123] = {.lex_state = 50}, - [1124] = {.lex_state = 0, .external_lex_state = 82}, - [1125] = {.lex_state = 9}, - [1126] = {.lex_state = 0, .external_lex_state = 77}, - [1127] = {.lex_state = 3}, - [1128] = {.lex_state = 10}, - [1129] = {.lex_state = 0, .external_lex_state = 77}, - [1130] = {.lex_state = 2}, - [1131] = {.lex_state = 0, .external_lex_state = 84}, - [1132] = {.lex_state = 2}, - [1133] = {.lex_state = 0, .external_lex_state = 55}, - [1134] = {.lex_state = 2}, - [1135] = {.lex_state = 0, .external_lex_state = 57}, - [1136] = {.lex_state = 2}, - [1137] = {.lex_state = 0, .external_lex_state = 83}, - [1138] = {.lex_state = 0}, - [1139] = {.lex_state = 0, .external_lex_state = 83}, - [1140] = {.lex_state = 0}, - [1141] = {.lex_state = 0, .external_lex_state = 83}, - [1142] = {.lex_state = 0}, - [1143] = {.lex_state = 0, .external_lex_state = 83}, + [1070] = {.lex_state = 48}, + [1071] = {.lex_state = 0, .external_lex_state = 79}, + [1072] = {.lex_state = 0, .external_lex_state = 79}, + [1073] = {.lex_state = 0, .external_lex_state = 79}, + [1074] = {.lex_state = 0, .external_lex_state = 47}, + [1075] = {.lex_state = 0, .external_lex_state = 47}, + [1076] = {.lex_state = 0, .external_lex_state = 79}, + [1077] = {.lex_state = 0, .external_lex_state = 47}, + [1078] = {.lex_state = 0, .external_lex_state = 78}, + [1079] = {.lex_state = 0, .external_lex_state = 78}, + [1080] = {.lex_state = 0, .external_lex_state = 79}, + [1081] = {.lex_state = 0, .external_lex_state = 79}, + [1082] = {.lex_state = 0, .external_lex_state = 47}, + [1083] = {.lex_state = 0, .external_lex_state = 47}, + [1084] = {.lex_state = 0, .external_lex_state = 78}, + [1085] = {.lex_state = 0, .external_lex_state = 79}, + [1086] = {.lex_state = 0, .external_lex_state = 47}, + [1087] = {.lex_state = 2}, + [1088] = {.lex_state = 48}, + [1089] = {.lex_state = 0, .external_lex_state = 79}, + [1090] = {.lex_state = 0, .external_lex_state = 79}, + [1091] = {.lex_state = 0, .external_lex_state = 79}, + [1092] = {.lex_state = 0, .external_lex_state = 79}, + [1093] = {.lex_state = 0, .external_lex_state = 79}, + [1094] = {.lex_state = 0, .external_lex_state = 79}, + [1095] = {.lex_state = 0, .external_lex_state = 79}, + [1096] = {.lex_state = 0, .external_lex_state = 79}, + [1097] = {.lex_state = 0, .external_lex_state = 79}, + [1098] = {.lex_state = 0, .external_lex_state = 79}, + [1099] = {.lex_state = 0, .external_lex_state = 79}, + [1100] = {.lex_state = 0, .external_lex_state = 79}, + [1101] = {.lex_state = 0, .external_lex_state = 79}, + [1102] = {.lex_state = 0, .external_lex_state = 79}, + [1103] = {.lex_state = 0, .external_lex_state = 79}, + [1104] = {.lex_state = 48}, + [1105] = {.lex_state = 0, .external_lex_state = 47}, + [1106] = {.lex_state = 8}, + [1107] = {.lex_state = 0, .external_lex_state = 47}, + [1108] = {.lex_state = 2}, + [1109] = {.lex_state = 10}, + [1110] = {.lex_state = 48}, + [1111] = {.lex_state = 0, .external_lex_state = 47}, + [1112] = {.lex_state = 8}, + [1113] = {.lex_state = 0, .external_lex_state = 47}, + [1114] = {.lex_state = 2}, + [1115] = {.lex_state = 10}, + [1116] = {.lex_state = 48}, + [1117] = {.lex_state = 0, .external_lex_state = 47}, + [1118] = {.lex_state = 8}, + [1119] = {.lex_state = 0, .external_lex_state = 47}, + [1120] = {.lex_state = 2}, + [1121] = {.lex_state = 10}, + [1122] = {.lex_state = 48}, + [1123] = {.lex_state = 0, .external_lex_state = 47}, + [1124] = {.lex_state = 8}, + [1125] = {.lex_state = 0, .external_lex_state = 47}, + [1126] = {.lex_state = 2}, + [1127] = {.lex_state = 10}, + [1128] = {.lex_state = 0, .external_lex_state = 78}, + [1129] = {.lex_state = 2}, + [1130] = {.lex_state = 0, .external_lex_state = 78}, + [1131] = {.lex_state = 2}, + [1132] = {.lex_state = 0, .external_lex_state = 47}, + [1133] = {.lex_state = 2}, + [1134] = {.lex_state = 0}, + [1135] = {.lex_state = 2}, + [1136] = {.lex_state = 0, .external_lex_state = 77}, + [1137] = {.lex_state = 0}, + [1138] = {.lex_state = 0, .external_lex_state = 77}, + [1139] = {.lex_state = 0}, + [1140] = {.lex_state = 0, .external_lex_state = 79}, + [1141] = {.lex_state = 0}, + [1142] = {.lex_state = 0, .external_lex_state = 77}, + [1143] = {.lex_state = 0}, [1144] = {.lex_state = 0}, [1145] = {.lex_state = 0}, [1146] = {.lex_state = 0}, [1147] = {.lex_state = 0}, - [1148] = {.lex_state = 0}, - [1149] = {.lex_state = 0, .external_lex_state = 78}, - [1150] = {.lex_state = 0, .external_lex_state = 78}, - [1151] = {.lex_state = 0, .external_lex_state = 57}, - [1152] = {.lex_state = 2}, - [1153] = {.lex_state = 0, .external_lex_state = 77}, + [1148] = {.lex_state = 0, .external_lex_state = 79}, + [1149] = {.lex_state = 0, .external_lex_state = 79}, + [1150] = {.lex_state = 0, .external_lex_state = 79}, + [1151] = {.lex_state = 0, .external_lex_state = 79}, + [1152] = {.lex_state = 0, .external_lex_state = 79}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -4593,13 +4549,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_CARET] = ACTIONS(1), [anon_sym_EQ] = ACTIONS(1), [anon_sym_COLON] = ACTIONS(1), - [anon_sym_LBRACE] = ACTIONS(1), [anon_sym_RBRACE] = ACTIONS(1), [anon_sym_DOT] = ACTIONS(1), [aux_sym_identifier_token1] = ACTIONS(1), [anon_sym_DQUOTE] = ACTIONS(1), [aux_sym_value_token2] = ACTIONS(1), [sym__whitespace1] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(1), [anon_sym_PERCENT] = ACTIONS(1), [sym_backslash_escape] = ACTIONS(1), [sym__ignored] = ACTIONS(1), @@ -4651,8475 +4607,8541 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__table_cell] = ACTIONS(1), [sym__table_caption_begin] = ACTIONS(1), [sym__table_caption_end] = ACTIONS(1), + [sym__block_attribute_begin] = ACTIONS(1), [sym__in_fallback] = ACTIONS(1), [sym__error] = ACTIONS(1), }, [1] = { - [sym_document] = STATE(1016), + [sym_document] = STATE(992), [sym_frontmatter] = STATE(2), - [sym__block_with_section] = STATE(173), - [sym__block_element] = STATE(173), - [sym_section] = STATE(173), - [sym_heading] = STATE(5), - [sym_list] = STATE(173), - [sym__list_dash] = STATE(200), - [sym__list_item_dash] = STATE(553), - [sym__list_plus] = STATE(200), - [sym__list_item_plus] = STATE(554), - [sym__list_star] = STATE(200), - [sym__list_item_star] = STATE(556), - [sym__list_task] = STATE(200), - [sym__list_item_task] = STATE(558), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(200), - [sym__list_item_definition] = STATE(769), - [sym__list_decimal_period] = STATE(200), - [sym__list_item_decimal_period] = STATE(776), - [sym__list_decimal_paren] = STATE(200), - [sym__list_item_decimal_paren] = STATE(790), - [sym__list_decimal_parens] = STATE(200), - [sym__list_item_decimal_parens] = STATE(793), - [sym__list_lower_alpha_period] = STATE(200), - [sym__list_item_lower_alpha_period] = STATE(822), - [sym__list_lower_alpha_paren] = STATE(200), - [sym__list_item_lower_alpha_paren] = STATE(684), - [sym__list_lower_alpha_parens] = STATE(200), - [sym__list_item_lower_alpha_parens] = STATE(688), - [sym__list_upper_alpha_period] = STATE(200), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(200), - [sym__list_item_upper_alpha_paren] = STATE(705), - [sym__list_upper_alpha_parens] = STATE(200), - [sym__list_item_upper_alpha_parens] = STATE(711), - [sym__list_lower_roman_period] = STATE(200), - [sym__list_item_lower_roman_period] = STATE(712), - [sym__list_lower_roman_paren] = STATE(200), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(200), - [sym__list_item_lower_roman_parens] = STATE(728), - [sym__list_upper_roman_period] = STATE(200), - [sym__list_item_upper_roman_period] = STATE(734), - [sym__list_upper_roman_paren] = STATE(200), - [sym__list_item_upper_roman_paren] = STATE(830), - [sym__list_upper_roman_parens] = STATE(200), - [sym__list_item_upper_roman_parens] = STATE(725), - [sym_table] = STATE(173), - [sym__table_row] = STATE(67), - [sym_table_header] = STATE(67), - [sym_table_separator] = STATE(67), - [sym_table_row] = STATE(67), - [sym_footnote] = STATE(173), - [sym_footnote_marker_begin] = STATE(1002), - [sym_div] = STATE(173), - [sym__div_marker_begin] = STATE(1085), - [sym_code_block] = STATE(173), - [sym_raw_block] = STATE(173), - [sym_thematic_break] = STATE(173), - [sym_block_quote] = STATE(173), - [sym__block_quote_prefix] = STATE(222), - [sym_link_reference_definition] = STATE(173), - [sym_block_attribute] = STATE(173), - [sym__paragraph] = STATE(173), - [sym__paragraph_content] = STATE(753), - [sym__paragraph_inline_content] = STATE(778), - [sym__inline] = STATE(655), + [sym__block_with_section] = STATE(125), + [sym__block_element] = STATE(125), + [sym_section] = STATE(125), + [sym_heading] = STATE(4), + [sym_list] = STATE(125), + [sym__list_dash] = STATE(167), + [sym__list_item_dash] = STATE(645), + [sym__list_plus] = STATE(167), + [sym__list_item_plus] = STATE(661), + [sym__list_star] = STATE(167), + [sym__list_item_star] = STATE(573), + [sym__list_task] = STATE(167), + [sym__list_item_task] = STATE(590), + [sym_list_marker_task] = STATE(43), + [sym__list_definition] = STATE(167), + [sym__list_item_definition] = STATE(740), + [sym__list_decimal_period] = STATE(167), + [sym__list_item_decimal_period] = STATE(743), + [sym__list_decimal_paren] = STATE(167), + [sym__list_item_decimal_paren] = STATE(748), + [sym__list_decimal_parens] = STATE(167), + [sym__list_item_decimal_parens] = STATE(768), + [sym__list_lower_alpha_period] = STATE(167), + [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_lower_alpha_paren] = STATE(167), + [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_lower_alpha_parens] = STATE(167), + [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_upper_alpha_period] = STATE(167), + [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_upper_alpha_paren] = STATE(167), + [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_upper_alpha_parens] = STATE(167), + [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_lower_roman_period] = STATE(167), + [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_lower_roman_paren] = STATE(167), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(167), + [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_upper_roman_period] = STATE(167), + [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_upper_roman_paren] = STATE(167), + [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_upper_roman_parens] = STATE(167), + [sym__list_item_upper_roman_parens] = STATE(819), + [sym_table] = STATE(125), + [sym__table_row] = STATE(66), + [sym_table_header] = STATE(66), + [sym_table_separator] = STATE(66), + [sym_table_row] = STATE(66), + [sym_footnote] = STATE(125), + [sym_footnote_marker_begin] = STATE(954), + [sym_div] = STATE(125), + [sym__div_marker_begin] = STATE(960), + [sym_code_block] = STATE(125), + [sym_raw_block] = STATE(125), + [sym_thematic_break] = STATE(125), + [sym_block_quote] = STATE(125), + [sym__block_quote_prefix] = STATE(221), + [sym_link_reference_definition] = STATE(125), + [sym_block_attribute] = STATE(125), + [sym__paragraph] = STATE(125), + [sym__paragraph_content] = STATE(834), + [sym__paragraph_inline_content] = STATE(837), + [sym__inline] = STATE(656), [sym__symbol_fallback] = STATE(273), [aux_sym_document_repeat1] = STATE(3), - [aux_sym__list_dash_repeat1] = STATE(319), - [aux_sym__list_plus_repeat1] = STATE(332), - [aux_sym__list_star_repeat1] = STATE(345), - [aux_sym__list_task_repeat1] = STATE(285), - [aux_sym__list_definition_repeat1] = STATE(448), - [aux_sym__list_decimal_period_repeat1] = STATE(481), - [aux_sym__list_decimal_paren_repeat1] = STATE(449), - [aux_sym__list_decimal_parens_repeat1] = STATE(486), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(518), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(520), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(523), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(528), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(530), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(535), - [aux_sym__list_lower_roman_period_repeat1] = STATE(539), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(541), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(542), - [aux_sym__list_upper_roman_period_repeat1] = STATE(543), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(537), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(488), - [aux_sym_table_repeat1] = STATE(67), - [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__list_dash_repeat1] = STATE(334), + [aux_sym__list_plus_repeat1] = STATE(317), + [aux_sym__list_star_repeat1] = STATE(342), + [aux_sym__list_task_repeat1] = STATE(297), + [aux_sym__list_definition_repeat1] = STATE(529), + [aux_sym__list_decimal_period_repeat1] = STATE(531), + [aux_sym__list_decimal_paren_repeat1] = STATE(533), + [aux_sym__list_decimal_parens_repeat1] = STATE(535), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(537), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(539), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(424), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(426), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(423), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(429), + [aux_sym__list_lower_roman_period_repeat1] = STATE(431), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(433), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(435), + [aux_sym__list_upper_roman_period_repeat1] = STATE(437), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(438), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(439), + [aux_sym_table_repeat1] = STATE(66), + [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), [ts_builtin_sym_end] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(5), [anon_sym_LBRACK_CARET] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(9), + [aux_sym_identifier_token1] = ACTIONS(9), + [aux_sym__inline_token1] = ACTIONS(9), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_DOT] = ACTIONS(11), - [aux_sym_identifier_token1] = ACTIONS(11), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_PERCENT] = ACTIONS(11), - [sym__newline] = ACTIONS(13), - [sym_frontmatter_marker] = ACTIONS(15), - [sym__heading_begin] = ACTIONS(17), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(21), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(63), - [sym__block_quote_continuation] = ACTIONS(65), - [sym__thematic_break_dash] = ACTIONS(67), - [sym__thematic_break_star] = ACTIONS(67), - [sym__table_header_begin] = ACTIONS(69), - [sym__table_separator_begin] = ACTIONS(71), - [sym__table_row_begin] = ACTIONS(73), + [anon_sym_PERCENT] = ACTIONS(9), + [sym__newline] = ACTIONS(11), + [sym_frontmatter_marker] = ACTIONS(13), + [sym__heading_begin] = ACTIONS(15), + [sym__div_begin] = ACTIONS(17), + [sym__code_block_begin] = ACTIONS(19), + [sym_list_marker_dash] = ACTIONS(21), + [sym_list_marker_star] = ACTIONS(23), + [sym_list_marker_plus] = ACTIONS(25), + [sym__list_marker_task_begin] = ACTIONS(27), + [sym_list_marker_definition] = ACTIONS(29), + [sym_list_marker_decimal_period] = ACTIONS(31), + [sym_list_marker_lower_alpha_period] = ACTIONS(33), + [sym_list_marker_upper_alpha_period] = ACTIONS(35), + [sym_list_marker_lower_roman_period] = ACTIONS(37), + [sym_list_marker_upper_roman_period] = ACTIONS(39), + [sym_list_marker_decimal_paren] = ACTIONS(41), + [sym_list_marker_lower_alpha_paren] = ACTIONS(43), + [sym_list_marker_upper_alpha_paren] = ACTIONS(45), + [sym_list_marker_lower_roman_paren] = ACTIONS(47), + [sym_list_marker_upper_roman_paren] = ACTIONS(49), + [sym_list_marker_decimal_parens] = ACTIONS(51), + [sym_list_marker_lower_alpha_parens] = ACTIONS(53), + [sym_list_marker_upper_alpha_parens] = ACTIONS(55), + [sym_list_marker_lower_roman_parens] = ACTIONS(57), + [sym_list_marker_upper_roman_parens] = ACTIONS(59), + [sym__block_quote_begin] = ACTIONS(61), + [sym__block_quote_continuation] = ACTIONS(63), + [sym__thematic_break_dash] = ACTIONS(65), + [sym__thematic_break_star] = ACTIONS(65), + [sym__table_header_begin] = ACTIONS(67), + [sym__table_separator_begin] = ACTIONS(69), + [sym__table_row_begin] = ACTIONS(71), + [sym__block_attribute_begin] = ACTIONS(73), }, [2] = { - [sym__block_with_section] = STATE(173), - [sym__block_element] = STATE(173), - [sym_section] = STATE(173), - [sym_heading] = STATE(5), - [sym_list] = STATE(173), - [sym__list_dash] = STATE(200), - [sym__list_item_dash] = STATE(553), - [sym__list_plus] = STATE(200), - [sym__list_item_plus] = STATE(554), - [sym__list_star] = STATE(200), - [sym__list_item_star] = STATE(556), - [sym__list_task] = STATE(200), - [sym__list_item_task] = STATE(558), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(200), - [sym__list_item_definition] = STATE(769), - [sym__list_decimal_period] = STATE(200), - [sym__list_item_decimal_period] = STATE(776), - [sym__list_decimal_paren] = STATE(200), - [sym__list_item_decimal_paren] = STATE(790), - [sym__list_decimal_parens] = STATE(200), - [sym__list_item_decimal_parens] = STATE(793), - [sym__list_lower_alpha_period] = STATE(200), - [sym__list_item_lower_alpha_period] = STATE(822), - [sym__list_lower_alpha_paren] = STATE(200), - [sym__list_item_lower_alpha_paren] = STATE(684), - [sym__list_lower_alpha_parens] = STATE(200), - [sym__list_item_lower_alpha_parens] = STATE(688), - [sym__list_upper_alpha_period] = STATE(200), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(200), - [sym__list_item_upper_alpha_paren] = STATE(705), - [sym__list_upper_alpha_parens] = STATE(200), - [sym__list_item_upper_alpha_parens] = STATE(711), - [sym__list_lower_roman_period] = STATE(200), - [sym__list_item_lower_roman_period] = STATE(712), - [sym__list_lower_roman_paren] = STATE(200), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(200), - [sym__list_item_lower_roman_parens] = STATE(728), - [sym__list_upper_roman_period] = STATE(200), - [sym__list_item_upper_roman_period] = STATE(734), - [sym__list_upper_roman_paren] = STATE(200), - [sym__list_item_upper_roman_paren] = STATE(830), - [sym__list_upper_roman_parens] = STATE(200), - [sym__list_item_upper_roman_parens] = STATE(725), - [sym_table] = STATE(173), - [sym__table_row] = STATE(67), - [sym_table_header] = STATE(67), - [sym_table_separator] = STATE(67), - [sym_table_row] = STATE(67), - [sym_footnote] = STATE(173), - [sym_footnote_marker_begin] = STATE(1002), - [sym_div] = STATE(173), - [sym__div_marker_begin] = STATE(1085), - [sym_code_block] = STATE(173), - [sym_raw_block] = STATE(173), - [sym_thematic_break] = STATE(173), - [sym_block_quote] = STATE(173), - [sym__block_quote_prefix] = STATE(222), - [sym_link_reference_definition] = STATE(173), - [sym_block_attribute] = STATE(173), - [sym__paragraph] = STATE(173), - [sym__paragraph_content] = STATE(753), - [sym__paragraph_inline_content] = STATE(778), - [sym__inline] = STATE(655), + [sym__block_with_section] = STATE(125), + [sym__block_element] = STATE(125), + [sym_section] = STATE(125), + [sym_heading] = STATE(4), + [sym_list] = STATE(125), + [sym__list_dash] = STATE(167), + [sym__list_item_dash] = STATE(645), + [sym__list_plus] = STATE(167), + [sym__list_item_plus] = STATE(661), + [sym__list_star] = STATE(167), + [sym__list_item_star] = STATE(573), + [sym__list_task] = STATE(167), + [sym__list_item_task] = STATE(590), + [sym_list_marker_task] = STATE(43), + [sym__list_definition] = STATE(167), + [sym__list_item_definition] = STATE(740), + [sym__list_decimal_period] = STATE(167), + [sym__list_item_decimal_period] = STATE(743), + [sym__list_decimal_paren] = STATE(167), + [sym__list_item_decimal_paren] = STATE(748), + [sym__list_decimal_parens] = STATE(167), + [sym__list_item_decimal_parens] = STATE(768), + [sym__list_lower_alpha_period] = STATE(167), + [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_lower_alpha_paren] = STATE(167), + [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_lower_alpha_parens] = STATE(167), + [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_upper_alpha_period] = STATE(167), + [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_upper_alpha_paren] = STATE(167), + [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_upper_alpha_parens] = STATE(167), + [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_lower_roman_period] = STATE(167), + [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_lower_roman_paren] = STATE(167), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(167), + [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_upper_roman_period] = STATE(167), + [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_upper_roman_paren] = STATE(167), + [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_upper_roman_parens] = STATE(167), + [sym__list_item_upper_roman_parens] = STATE(819), + [sym_table] = STATE(125), + [sym__table_row] = STATE(66), + [sym_table_header] = STATE(66), + [sym_table_separator] = STATE(66), + [sym_table_row] = STATE(66), + [sym_footnote] = STATE(125), + [sym_footnote_marker_begin] = STATE(954), + [sym_div] = STATE(125), + [sym__div_marker_begin] = STATE(960), + [sym_code_block] = STATE(125), + [sym_raw_block] = STATE(125), + [sym_thematic_break] = STATE(125), + [sym_block_quote] = STATE(125), + [sym__block_quote_prefix] = STATE(221), + [sym_link_reference_definition] = STATE(125), + [sym_block_attribute] = STATE(125), + [sym__paragraph] = STATE(125), + [sym__paragraph_content] = STATE(834), + [sym__paragraph_inline_content] = STATE(837), + [sym__inline] = STATE(656), [sym__symbol_fallback] = STATE(273), - [aux_sym_document_repeat1] = STATE(6), - [aux_sym__list_dash_repeat1] = STATE(319), - [aux_sym__list_plus_repeat1] = STATE(332), - [aux_sym__list_star_repeat1] = STATE(345), - [aux_sym__list_task_repeat1] = STATE(285), - [aux_sym__list_definition_repeat1] = STATE(448), - [aux_sym__list_decimal_period_repeat1] = STATE(481), - [aux_sym__list_decimal_paren_repeat1] = STATE(449), - [aux_sym__list_decimal_parens_repeat1] = STATE(486), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(518), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(520), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(523), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(528), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(530), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(535), - [aux_sym__list_lower_roman_period_repeat1] = STATE(539), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(541), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(542), - [aux_sym__list_upper_roman_period_repeat1] = STATE(543), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(537), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(488), - [aux_sym_table_repeat1] = STATE(67), - [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym_document_repeat1] = STATE(5), + [aux_sym__list_dash_repeat1] = STATE(334), + [aux_sym__list_plus_repeat1] = STATE(317), + [aux_sym__list_star_repeat1] = STATE(342), + [aux_sym__list_task_repeat1] = STATE(297), + [aux_sym__list_definition_repeat1] = STATE(529), + [aux_sym__list_decimal_period_repeat1] = STATE(531), + [aux_sym__list_decimal_paren_repeat1] = STATE(533), + [aux_sym__list_decimal_parens_repeat1] = STATE(535), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(537), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(539), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(424), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(426), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(423), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(429), + [aux_sym__list_lower_roman_period_repeat1] = STATE(431), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(433), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(435), + [aux_sym__list_upper_roman_period_repeat1] = STATE(437), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(438), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(439), + [aux_sym_table_repeat1] = STATE(66), + [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), [ts_builtin_sym_end] = ACTIONS(75), [anon_sym_LBRACK] = ACTIONS(5), [anon_sym_LBRACK_CARET] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(9), + [aux_sym_identifier_token1] = ACTIONS(9), + [aux_sym__inline_token1] = ACTIONS(9), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_DOT] = ACTIONS(11), - [aux_sym_identifier_token1] = ACTIONS(11), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_PERCENT] = ACTIONS(11), - [sym__newline] = ACTIONS(13), - [sym__heading_begin] = ACTIONS(17), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(21), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(63), - [sym__block_quote_continuation] = ACTIONS(65), - [sym__thematic_break_dash] = ACTIONS(67), - [sym__thematic_break_star] = ACTIONS(67), - [sym__table_header_begin] = ACTIONS(69), - [sym__table_separator_begin] = ACTIONS(71), - [sym__table_row_begin] = ACTIONS(73), + [anon_sym_PERCENT] = ACTIONS(9), + [sym__newline] = ACTIONS(11), + [sym__heading_begin] = ACTIONS(15), + [sym__div_begin] = ACTIONS(17), + [sym__code_block_begin] = ACTIONS(19), + [sym_list_marker_dash] = ACTIONS(21), + [sym_list_marker_star] = ACTIONS(23), + [sym_list_marker_plus] = ACTIONS(25), + [sym__list_marker_task_begin] = ACTIONS(27), + [sym_list_marker_definition] = ACTIONS(29), + [sym_list_marker_decimal_period] = ACTIONS(31), + [sym_list_marker_lower_alpha_period] = ACTIONS(33), + [sym_list_marker_upper_alpha_period] = ACTIONS(35), + [sym_list_marker_lower_roman_period] = ACTIONS(37), + [sym_list_marker_upper_roman_period] = ACTIONS(39), + [sym_list_marker_decimal_paren] = ACTIONS(41), + [sym_list_marker_lower_alpha_paren] = ACTIONS(43), + [sym_list_marker_upper_alpha_paren] = ACTIONS(45), + [sym_list_marker_lower_roman_paren] = ACTIONS(47), + [sym_list_marker_upper_roman_paren] = ACTIONS(49), + [sym_list_marker_decimal_parens] = ACTIONS(51), + [sym_list_marker_lower_alpha_parens] = ACTIONS(53), + [sym_list_marker_upper_alpha_parens] = ACTIONS(55), + [sym_list_marker_lower_roman_parens] = ACTIONS(57), + [sym_list_marker_upper_roman_parens] = ACTIONS(59), + [sym__block_quote_begin] = ACTIONS(61), + [sym__block_quote_continuation] = ACTIONS(63), + [sym__thematic_break_dash] = ACTIONS(65), + [sym__thematic_break_star] = ACTIONS(65), + [sym__table_header_begin] = ACTIONS(67), + [sym__table_separator_begin] = ACTIONS(69), + [sym__table_row_begin] = ACTIONS(71), + [sym__block_attribute_begin] = ACTIONS(73), }, [3] = { - [sym__block_with_section] = STATE(173), - [sym__block_element] = STATE(173), - [sym_section] = STATE(173), - [sym_heading] = STATE(5), - [sym_list] = STATE(173), - [sym__list_dash] = STATE(200), - [sym__list_item_dash] = STATE(553), - [sym__list_plus] = STATE(200), - [sym__list_item_plus] = STATE(554), - [sym__list_star] = STATE(200), - [sym__list_item_star] = STATE(556), - [sym__list_task] = STATE(200), - [sym__list_item_task] = STATE(558), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(200), - [sym__list_item_definition] = STATE(769), - [sym__list_decimal_period] = STATE(200), - [sym__list_item_decimal_period] = STATE(776), - [sym__list_decimal_paren] = STATE(200), - [sym__list_item_decimal_paren] = STATE(790), - [sym__list_decimal_parens] = STATE(200), - [sym__list_item_decimal_parens] = STATE(793), - [sym__list_lower_alpha_period] = STATE(200), - [sym__list_item_lower_alpha_period] = STATE(822), - [sym__list_lower_alpha_paren] = STATE(200), - [sym__list_item_lower_alpha_paren] = STATE(684), - [sym__list_lower_alpha_parens] = STATE(200), - [sym__list_item_lower_alpha_parens] = STATE(688), - [sym__list_upper_alpha_period] = STATE(200), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(200), - [sym__list_item_upper_alpha_paren] = STATE(705), - [sym__list_upper_alpha_parens] = STATE(200), - [sym__list_item_upper_alpha_parens] = STATE(711), - [sym__list_lower_roman_period] = STATE(200), - [sym__list_item_lower_roman_period] = STATE(712), - [sym__list_lower_roman_paren] = STATE(200), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(200), - [sym__list_item_lower_roman_parens] = STATE(728), - [sym__list_upper_roman_period] = STATE(200), - [sym__list_item_upper_roman_period] = STATE(734), - [sym__list_upper_roman_paren] = STATE(200), - [sym__list_item_upper_roman_paren] = STATE(830), - [sym__list_upper_roman_parens] = STATE(200), - [sym__list_item_upper_roman_parens] = STATE(725), - [sym_table] = STATE(173), - [sym__table_row] = STATE(67), - [sym_table_header] = STATE(67), - [sym_table_separator] = STATE(67), - [sym_table_row] = STATE(67), - [sym_footnote] = STATE(173), - [sym_footnote_marker_begin] = STATE(1002), - [sym_div] = STATE(173), - [sym__div_marker_begin] = STATE(1085), - [sym_code_block] = STATE(173), - [sym_raw_block] = STATE(173), - [sym_thematic_break] = STATE(173), - [sym_block_quote] = STATE(173), - [sym__block_quote_prefix] = STATE(222), - [sym_link_reference_definition] = STATE(173), - [sym_block_attribute] = STATE(173), - [sym__paragraph] = STATE(173), - [sym__paragraph_content] = STATE(753), - [sym__paragraph_inline_content] = STATE(778), - [sym__inline] = STATE(655), + [sym__block_with_section] = STATE(125), + [sym__block_element] = STATE(125), + [sym_section] = STATE(125), + [sym_heading] = STATE(4), + [sym_list] = STATE(125), + [sym__list_dash] = STATE(167), + [sym__list_item_dash] = STATE(645), + [sym__list_plus] = STATE(167), + [sym__list_item_plus] = STATE(661), + [sym__list_star] = STATE(167), + [sym__list_item_star] = STATE(573), + [sym__list_task] = STATE(167), + [sym__list_item_task] = STATE(590), + [sym_list_marker_task] = STATE(43), + [sym__list_definition] = STATE(167), + [sym__list_item_definition] = STATE(740), + [sym__list_decimal_period] = STATE(167), + [sym__list_item_decimal_period] = STATE(743), + [sym__list_decimal_paren] = STATE(167), + [sym__list_item_decimal_paren] = STATE(748), + [sym__list_decimal_parens] = STATE(167), + [sym__list_item_decimal_parens] = STATE(768), + [sym__list_lower_alpha_period] = STATE(167), + [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_lower_alpha_paren] = STATE(167), + [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_lower_alpha_parens] = STATE(167), + [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_upper_alpha_period] = STATE(167), + [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_upper_alpha_paren] = STATE(167), + [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_upper_alpha_parens] = STATE(167), + [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_lower_roman_period] = STATE(167), + [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_lower_roman_paren] = STATE(167), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(167), + [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_upper_roman_period] = STATE(167), + [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_upper_roman_paren] = STATE(167), + [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_upper_roman_parens] = STATE(167), + [sym__list_item_upper_roman_parens] = STATE(819), + [sym_table] = STATE(125), + [sym__table_row] = STATE(66), + [sym_table_header] = STATE(66), + [sym_table_separator] = STATE(66), + [sym_table_row] = STATE(66), + [sym_footnote] = STATE(125), + [sym_footnote_marker_begin] = STATE(954), + [sym_div] = STATE(125), + [sym__div_marker_begin] = STATE(960), + [sym_code_block] = STATE(125), + [sym_raw_block] = STATE(125), + [sym_thematic_break] = STATE(125), + [sym_block_quote] = STATE(125), + [sym__block_quote_prefix] = STATE(221), + [sym_link_reference_definition] = STATE(125), + [sym_block_attribute] = STATE(125), + [sym__paragraph] = STATE(125), + [sym__paragraph_content] = STATE(834), + [sym__paragraph_inline_content] = STATE(837), + [sym__inline] = STATE(656), [sym__symbol_fallback] = STATE(273), - [aux_sym_document_repeat1] = STATE(4), - [aux_sym__list_dash_repeat1] = STATE(319), - [aux_sym__list_plus_repeat1] = STATE(332), - [aux_sym__list_star_repeat1] = STATE(345), - [aux_sym__list_task_repeat1] = STATE(285), - [aux_sym__list_definition_repeat1] = STATE(448), - [aux_sym__list_decimal_period_repeat1] = STATE(481), - [aux_sym__list_decimal_paren_repeat1] = STATE(449), - [aux_sym__list_decimal_parens_repeat1] = STATE(486), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(518), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(520), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(523), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(528), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(530), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(535), - [aux_sym__list_lower_roman_period_repeat1] = STATE(539), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(541), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(542), - [aux_sym__list_upper_roman_period_repeat1] = STATE(543), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(537), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(488), - [aux_sym_table_repeat1] = STATE(67), - [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym_document_repeat1] = STATE(7), + [aux_sym__list_dash_repeat1] = STATE(334), + [aux_sym__list_plus_repeat1] = STATE(317), + [aux_sym__list_star_repeat1] = STATE(342), + [aux_sym__list_task_repeat1] = STATE(297), + [aux_sym__list_definition_repeat1] = STATE(529), + [aux_sym__list_decimal_period_repeat1] = STATE(531), + [aux_sym__list_decimal_paren_repeat1] = STATE(533), + [aux_sym__list_decimal_parens_repeat1] = STATE(535), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(537), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(539), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(424), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(426), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(423), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(429), + [aux_sym__list_lower_roman_period_repeat1] = STATE(431), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(433), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(435), + [aux_sym__list_upper_roman_period_repeat1] = STATE(437), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(438), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(439), + [aux_sym_table_repeat1] = STATE(66), + [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), [ts_builtin_sym_end] = ACTIONS(75), [anon_sym_LBRACK] = ACTIONS(5), [anon_sym_LBRACK_CARET] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(9), + [aux_sym_identifier_token1] = ACTIONS(9), + [aux_sym__inline_token1] = ACTIONS(9), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_DOT] = ACTIONS(11), - [aux_sym_identifier_token1] = ACTIONS(11), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_PERCENT] = ACTIONS(11), - [sym__newline] = ACTIONS(13), - [sym__heading_begin] = ACTIONS(17), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(21), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(63), - [sym__block_quote_continuation] = ACTIONS(65), - [sym__thematic_break_dash] = ACTIONS(67), - [sym__thematic_break_star] = ACTIONS(67), - [sym__table_header_begin] = ACTIONS(69), - [sym__table_separator_begin] = ACTIONS(71), - [sym__table_row_begin] = ACTIONS(73), + [anon_sym_PERCENT] = ACTIONS(9), + [sym__newline] = ACTIONS(11), + [sym__heading_begin] = ACTIONS(15), + [sym__div_begin] = ACTIONS(17), + [sym__code_block_begin] = ACTIONS(19), + [sym_list_marker_dash] = ACTIONS(21), + [sym_list_marker_star] = ACTIONS(23), + [sym_list_marker_plus] = ACTIONS(25), + [sym__list_marker_task_begin] = ACTIONS(27), + [sym_list_marker_definition] = ACTIONS(29), + [sym_list_marker_decimal_period] = ACTIONS(31), + [sym_list_marker_lower_alpha_period] = ACTIONS(33), + [sym_list_marker_upper_alpha_period] = ACTIONS(35), + [sym_list_marker_lower_roman_period] = ACTIONS(37), + [sym_list_marker_upper_roman_period] = ACTIONS(39), + [sym_list_marker_decimal_paren] = ACTIONS(41), + [sym_list_marker_lower_alpha_paren] = ACTIONS(43), + [sym_list_marker_upper_alpha_paren] = ACTIONS(45), + [sym_list_marker_lower_roman_paren] = ACTIONS(47), + [sym_list_marker_upper_roman_paren] = ACTIONS(49), + [sym_list_marker_decimal_parens] = ACTIONS(51), + [sym_list_marker_lower_alpha_parens] = ACTIONS(53), + [sym_list_marker_upper_alpha_parens] = ACTIONS(55), + [sym_list_marker_lower_roman_parens] = ACTIONS(57), + [sym_list_marker_upper_roman_parens] = ACTIONS(59), + [sym__block_quote_begin] = ACTIONS(61), + [sym__block_quote_continuation] = ACTIONS(63), + [sym__thematic_break_dash] = ACTIONS(65), + [sym__thematic_break_star] = ACTIONS(65), + [sym__table_header_begin] = ACTIONS(67), + [sym__table_separator_begin] = ACTIONS(69), + [sym__table_row_begin] = ACTIONS(71), + [sym__block_attribute_begin] = ACTIONS(73), }, [4] = { - [sym__block_with_section] = STATE(173), - [sym__block_element] = STATE(173), - [sym_section] = STATE(173), - [sym_heading] = STATE(5), - [sym_list] = STATE(173), - [sym__list_dash] = STATE(200), - [sym__list_item_dash] = STATE(553), - [sym__list_plus] = STATE(200), - [sym__list_item_plus] = STATE(554), - [sym__list_star] = STATE(200), - [sym__list_item_star] = STATE(556), - [sym__list_task] = STATE(200), - [sym__list_item_task] = STATE(558), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(200), - [sym__list_item_definition] = STATE(769), - [sym__list_decimal_period] = STATE(200), - [sym__list_item_decimal_period] = STATE(776), - [sym__list_decimal_paren] = STATE(200), - [sym__list_item_decimal_paren] = STATE(790), - [sym__list_decimal_parens] = STATE(200), - [sym__list_item_decimal_parens] = STATE(793), - [sym__list_lower_alpha_period] = STATE(200), - [sym__list_item_lower_alpha_period] = STATE(822), - [sym__list_lower_alpha_paren] = STATE(200), - [sym__list_item_lower_alpha_paren] = STATE(684), - [sym__list_lower_alpha_parens] = STATE(200), - [sym__list_item_lower_alpha_parens] = STATE(688), - [sym__list_upper_alpha_period] = STATE(200), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(200), - [sym__list_item_upper_alpha_paren] = STATE(705), - [sym__list_upper_alpha_parens] = STATE(200), - [sym__list_item_upper_alpha_parens] = STATE(711), - [sym__list_lower_roman_period] = STATE(200), - [sym__list_item_lower_roman_period] = STATE(712), - [sym__list_lower_roman_paren] = STATE(200), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(200), - [sym__list_item_lower_roman_parens] = STATE(728), - [sym__list_upper_roman_period] = STATE(200), - [sym__list_item_upper_roman_period] = STATE(734), - [sym__list_upper_roman_paren] = STATE(200), - [sym__list_item_upper_roman_paren] = STATE(830), - [sym__list_upper_roman_parens] = STATE(200), - [sym__list_item_upper_roman_parens] = STATE(725), - [sym_table] = STATE(173), + [sym__block_with_section] = STATE(123), + [sym__block_element] = STATE(123), + [sym_section] = STATE(123), + [sym_heading] = STATE(9), + [sym_list] = STATE(123), + [sym__list_dash] = STATE(129), + [sym__list_item_dash] = STATE(645), + [sym__list_plus] = STATE(129), + [sym__list_item_plus] = STATE(661), + [sym__list_star] = STATE(129), + [sym__list_item_star] = STATE(573), + [sym__list_task] = STATE(129), + [sym__list_item_task] = STATE(590), + [sym_list_marker_task] = STATE(43), + [sym__list_definition] = STATE(129), + [sym__list_item_definition] = STATE(740), + [sym__list_decimal_period] = STATE(129), + [sym__list_item_decimal_period] = STATE(743), + [sym__list_decimal_paren] = STATE(129), + [sym__list_item_decimal_paren] = STATE(748), + [sym__list_decimal_parens] = STATE(129), + [sym__list_item_decimal_parens] = STATE(768), + [sym__list_lower_alpha_period] = STATE(129), + [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_lower_alpha_paren] = STATE(129), + [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_lower_alpha_parens] = STATE(129), + [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_upper_alpha_period] = STATE(129), + [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_upper_alpha_paren] = STATE(129), + [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_upper_alpha_parens] = STATE(129), + [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_lower_roman_period] = STATE(129), + [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_lower_roman_paren] = STATE(129), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(129), + [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_upper_roman_period] = STATE(129), + [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_upper_roman_paren] = STATE(129), + [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_upper_roman_parens] = STATE(129), + [sym__list_item_upper_roman_parens] = STATE(819), + [sym_table] = STATE(123), [sym__table_row] = STATE(67), [sym_table_header] = STATE(67), [sym_table_separator] = STATE(67), [sym_table_row] = STATE(67), - [sym_footnote] = STATE(173), - [sym_footnote_marker_begin] = STATE(1002), - [sym_div] = STATE(173), - [sym__div_marker_begin] = STATE(1085), - [sym_code_block] = STATE(173), - [sym_raw_block] = STATE(173), - [sym_thematic_break] = STATE(173), - [sym_block_quote] = STATE(173), - [sym__block_quote_prefix] = STATE(222), - [sym_link_reference_definition] = STATE(173), - [sym_block_attribute] = STATE(173), - [sym__paragraph] = STATE(173), - [sym__paragraph_content] = STATE(753), - [sym__paragraph_inline_content] = STATE(778), - [sym__inline] = STATE(655), + [sym_footnote] = STATE(123), + [sym_footnote_marker_begin] = STATE(894), + [sym_div] = STATE(123), + [sym__div_marker_begin] = STATE(1056), + [sym_code_block] = STATE(123), + [sym_raw_block] = STATE(123), + [sym_thematic_break] = STATE(123), + [sym_block_quote] = STATE(123), + [sym__block_quote_prefix] = STATE(223), + [sym_link_reference_definition] = STATE(123), + [sym_block_attribute] = STATE(123), + [sym__paragraph] = STATE(123), + [sym__paragraph_content] = STATE(784), + [sym__paragraph_inline_content] = STATE(837), + [sym__inline] = STATE(656), [sym__symbol_fallback] = STATE(273), - [aux_sym_document_repeat1] = STATE(4), - [aux_sym__list_dash_repeat1] = STATE(319), - [aux_sym__list_plus_repeat1] = STATE(332), - [aux_sym__list_star_repeat1] = STATE(345), + [aux_sym_document_repeat1] = STATE(6), + [aux_sym__list_dash_repeat1] = STATE(322), + [aux_sym__list_plus_repeat1] = STATE(323), + [aux_sym__list_star_repeat1] = STATE(324), [aux_sym__list_task_repeat1] = STATE(285), - [aux_sym__list_definition_repeat1] = STATE(448), - [aux_sym__list_decimal_period_repeat1] = STATE(481), - [aux_sym__list_decimal_paren_repeat1] = STATE(449), - [aux_sym__list_decimal_parens_repeat1] = STATE(486), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(518), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(520), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(523), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(528), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(530), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(535), - [aux_sym__list_lower_roman_period_repeat1] = STATE(539), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(541), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(542), - [aux_sym__list_upper_roman_period_repeat1] = STATE(543), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(537), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(488), + [aux_sym__list_definition_repeat1] = STATE(494), + [aux_sym__list_decimal_period_repeat1] = STATE(495), + [aux_sym__list_decimal_paren_repeat1] = STATE(496), + [aux_sym__list_decimal_parens_repeat1] = STATE(497), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(498), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(499), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(500), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(501), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(502), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(503), + [aux_sym__list_lower_roman_period_repeat1] = STATE(504), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(505), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(506), + [aux_sym__list_upper_roman_period_repeat1] = STATE(507), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(508), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(509), [aux_sym_table_repeat1] = STATE(67), - [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), - [ts_builtin_sym_end] = ACTIONS(77), - [anon_sym_LBRACK] = ACTIONS(79), - [anon_sym_LBRACK_CARET] = ACTIONS(82), - [anon_sym_LBRACE] = ACTIONS(85), - [anon_sym_DOT] = ACTIONS(88), - [aux_sym_identifier_token1] = ACTIONS(88), - [aux_sym__inline_token1] = ACTIONS(88), - [anon_sym_PERCENT] = ACTIONS(88), - [sym__newline] = ACTIONS(91), - [sym__heading_begin] = ACTIONS(94), - [sym__div_begin] = ACTIONS(97), - [sym__code_block_begin] = ACTIONS(100), - [sym_list_marker_dash] = ACTIONS(103), - [sym_list_marker_star] = ACTIONS(106), - [sym_list_marker_plus] = ACTIONS(109), - [sym__list_marker_task_begin] = ACTIONS(112), - [sym_list_marker_definition] = ACTIONS(115), - [sym_list_marker_decimal_period] = ACTIONS(118), - [sym_list_marker_lower_alpha_period] = ACTIONS(121), - [sym_list_marker_upper_alpha_period] = ACTIONS(124), - [sym_list_marker_lower_roman_period] = ACTIONS(127), - [sym_list_marker_upper_roman_period] = ACTIONS(130), - [sym_list_marker_decimal_paren] = ACTIONS(133), - [sym_list_marker_lower_alpha_paren] = ACTIONS(136), - [sym_list_marker_upper_alpha_paren] = ACTIONS(139), - [sym_list_marker_lower_roman_paren] = ACTIONS(142), - [sym_list_marker_upper_roman_paren] = ACTIONS(145), - [sym_list_marker_decimal_parens] = ACTIONS(148), - [sym_list_marker_lower_alpha_parens] = ACTIONS(151), - [sym_list_marker_upper_alpha_parens] = ACTIONS(154), - [sym_list_marker_lower_roman_parens] = ACTIONS(157), - [sym_list_marker_upper_roman_parens] = ACTIONS(160), - [sym__block_quote_begin] = ACTIONS(163), - [sym__block_quote_continuation] = ACTIONS(166), - [sym__thematic_break_dash] = ACTIONS(169), - [sym__thematic_break_star] = ACTIONS(169), - [sym__table_header_begin] = ACTIONS(172), - [sym__table_separator_begin] = ACTIONS(175), - [sym__table_row_begin] = ACTIONS(178), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_LBRACK_CARET] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(9), + [aux_sym_identifier_token1] = ACTIONS(9), + [aux_sym__inline_token1] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(9), + [anon_sym_PERCENT] = ACTIONS(9), + [sym__block_close] = ACTIONS(79), + [sym__newline] = ACTIONS(81), + [sym__heading_begin] = ACTIONS(15), + [sym__div_begin] = ACTIONS(17), + [sym__code_block_begin] = ACTIONS(83), + [sym_list_marker_dash] = ACTIONS(21), + [sym_list_marker_star] = ACTIONS(23), + [sym_list_marker_plus] = ACTIONS(25), + [sym__list_marker_task_begin] = ACTIONS(27), + [sym_list_marker_definition] = ACTIONS(29), + [sym_list_marker_decimal_period] = ACTIONS(31), + [sym_list_marker_lower_alpha_period] = ACTIONS(33), + [sym_list_marker_upper_alpha_period] = ACTIONS(35), + [sym_list_marker_lower_roman_period] = ACTIONS(37), + [sym_list_marker_upper_roman_period] = ACTIONS(39), + [sym_list_marker_decimal_paren] = ACTIONS(41), + [sym_list_marker_lower_alpha_paren] = ACTIONS(43), + [sym_list_marker_upper_alpha_paren] = ACTIONS(45), + [sym_list_marker_lower_roman_paren] = ACTIONS(47), + [sym_list_marker_upper_roman_paren] = ACTIONS(49), + [sym_list_marker_decimal_parens] = ACTIONS(51), + [sym_list_marker_lower_alpha_parens] = ACTIONS(53), + [sym_list_marker_upper_alpha_parens] = ACTIONS(55), + [sym_list_marker_lower_roman_parens] = ACTIONS(57), + [sym_list_marker_upper_roman_parens] = ACTIONS(59), + [sym__block_quote_begin] = ACTIONS(85), + [sym__block_quote_continuation] = ACTIONS(63), + [sym__thematic_break_dash] = ACTIONS(87), + [sym__thematic_break_star] = ACTIONS(87), + [sym__table_header_begin] = ACTIONS(89), + [sym__table_separator_begin] = ACTIONS(91), + [sym__table_row_begin] = ACTIONS(93), + [sym__block_attribute_begin] = ACTIONS(95), }, [5] = { - [sym__block_with_section] = STATE(109), - [sym__block_element] = STATE(109), - [sym_section] = STATE(109), - [sym_heading] = STATE(9), - [sym_list] = STATE(109), - [sym__list_dash] = STATE(144), - [sym__list_item_dash] = STATE(553), - [sym__list_plus] = STATE(144), - [sym__list_item_plus] = STATE(554), - [sym__list_star] = STATE(144), - [sym__list_item_star] = STATE(556), - [sym__list_task] = STATE(144), - [sym__list_item_task] = STATE(558), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(144), - [sym__list_item_definition] = STATE(769), - [sym__list_decimal_period] = STATE(144), - [sym__list_item_decimal_period] = STATE(776), - [sym__list_decimal_paren] = STATE(144), - [sym__list_item_decimal_paren] = STATE(790), - [sym__list_decimal_parens] = STATE(144), - [sym__list_item_decimal_parens] = STATE(793), - [sym__list_lower_alpha_period] = STATE(144), - [sym__list_item_lower_alpha_period] = STATE(822), - [sym__list_lower_alpha_paren] = STATE(144), - [sym__list_item_lower_alpha_paren] = STATE(684), - [sym__list_lower_alpha_parens] = STATE(144), - [sym__list_item_lower_alpha_parens] = STATE(688), - [sym__list_upper_alpha_period] = STATE(144), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(144), - [sym__list_item_upper_alpha_paren] = STATE(705), - [sym__list_upper_alpha_parens] = STATE(144), - [sym__list_item_upper_alpha_parens] = STATE(711), - [sym__list_lower_roman_period] = STATE(144), - [sym__list_item_lower_roman_period] = STATE(712), - [sym__list_lower_roman_paren] = STATE(144), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(144), - [sym__list_item_lower_roman_parens] = STATE(728), - [sym__list_upper_roman_period] = STATE(144), - [sym__list_item_upper_roman_period] = STATE(734), - [sym__list_upper_roman_paren] = STATE(144), - [sym__list_item_upper_roman_paren] = STATE(830), - [sym__list_upper_roman_parens] = STATE(144), - [sym__list_item_upper_roman_parens] = STATE(725), - [sym_table] = STATE(109), + [sym__block_with_section] = STATE(125), + [sym__block_element] = STATE(125), + [sym_section] = STATE(125), + [sym_heading] = STATE(4), + [sym_list] = STATE(125), + [sym__list_dash] = STATE(167), + [sym__list_item_dash] = STATE(645), + [sym__list_plus] = STATE(167), + [sym__list_item_plus] = STATE(661), + [sym__list_star] = STATE(167), + [sym__list_item_star] = STATE(573), + [sym__list_task] = STATE(167), + [sym__list_item_task] = STATE(590), + [sym_list_marker_task] = STATE(43), + [sym__list_definition] = STATE(167), + [sym__list_item_definition] = STATE(740), + [sym__list_decimal_period] = STATE(167), + [sym__list_item_decimal_period] = STATE(743), + [sym__list_decimal_paren] = STATE(167), + [sym__list_item_decimal_paren] = STATE(748), + [sym__list_decimal_parens] = STATE(167), + [sym__list_item_decimal_parens] = STATE(768), + [sym__list_lower_alpha_period] = STATE(167), + [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_lower_alpha_paren] = STATE(167), + [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_lower_alpha_parens] = STATE(167), + [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_upper_alpha_period] = STATE(167), + [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_upper_alpha_paren] = STATE(167), + [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_upper_alpha_parens] = STATE(167), + [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_lower_roman_period] = STATE(167), + [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_lower_roman_paren] = STATE(167), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(167), + [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_upper_roman_period] = STATE(167), + [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_upper_roman_paren] = STATE(167), + [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_upper_roman_parens] = STATE(167), + [sym__list_item_upper_roman_parens] = STATE(819), + [sym_table] = STATE(125), [sym__table_row] = STATE(66), [sym_table_header] = STATE(66), [sym_table_separator] = STATE(66), [sym_table_row] = STATE(66), - [sym_footnote] = STATE(109), - [sym_footnote_marker_begin] = STATE(1141), - [sym_div] = STATE(109), - [sym__div_marker_begin] = STATE(1057), - [sym_code_block] = STATE(109), - [sym_raw_block] = STATE(109), - [sym_thematic_break] = STATE(109), - [sym_block_quote] = STATE(109), - [sym__block_quote_prefix] = STATE(225), - [sym_link_reference_definition] = STATE(109), - [sym_block_attribute] = STATE(109), - [sym__paragraph] = STATE(109), - [sym__paragraph_content] = STATE(750), - [sym__paragraph_inline_content] = STATE(778), - [sym__inline] = STATE(655), + [sym_footnote] = STATE(125), + [sym_footnote_marker_begin] = STATE(954), + [sym_div] = STATE(125), + [sym__div_marker_begin] = STATE(960), + [sym_code_block] = STATE(125), + [sym_raw_block] = STATE(125), + [sym_thematic_break] = STATE(125), + [sym_block_quote] = STATE(125), + [sym__block_quote_prefix] = STATE(221), + [sym_link_reference_definition] = STATE(125), + [sym_block_attribute] = STATE(125), + [sym__paragraph] = STATE(125), + [sym__paragraph_content] = STATE(834), + [sym__paragraph_inline_content] = STATE(837), + [sym__inline] = STATE(656), [sym__symbol_fallback] = STATE(273), [aux_sym_document_repeat1] = STATE(7), [aux_sym__list_dash_repeat1] = STATE(334), - [aux_sym__list_plus_repeat1] = STATE(335), - [aux_sym__list_star_repeat1] = STATE(336), - [aux_sym__list_task_repeat1] = STATE(309), - [aux_sym__list_definition_repeat1] = STATE(425), - [aux_sym__list_decimal_period_repeat1] = STATE(426), - [aux_sym__list_decimal_paren_repeat1] = STATE(427), - [aux_sym__list_decimal_parens_repeat1] = STATE(428), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(429), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(430), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(431), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(432), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(433), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(434), - [aux_sym__list_lower_roman_period_repeat1] = STATE(435), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(436), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(437), - [aux_sym__list_upper_roman_period_repeat1] = STATE(438), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(439), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(440), + [aux_sym__list_plus_repeat1] = STATE(317), + [aux_sym__list_star_repeat1] = STATE(342), + [aux_sym__list_task_repeat1] = STATE(297), + [aux_sym__list_definition_repeat1] = STATE(529), + [aux_sym__list_decimal_period_repeat1] = STATE(531), + [aux_sym__list_decimal_paren_repeat1] = STATE(533), + [aux_sym__list_decimal_parens_repeat1] = STATE(535), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(537), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(539), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(424), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(426), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(423), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(429), + [aux_sym__list_lower_roman_period_repeat1] = STATE(431), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(433), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(435), + [aux_sym__list_upper_roman_period_repeat1] = STATE(437), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(438), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(439), [aux_sym_table_repeat1] = STATE(66), - [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), - [anon_sym_LBRACK] = ACTIONS(181), + [ts_builtin_sym_end] = ACTIONS(97), + [anon_sym_LBRACK] = ACTIONS(5), [anon_sym_LBRACK_CARET] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(11), - [aux_sym_identifier_token1] = ACTIONS(11), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_PERCENT] = ACTIONS(11), - [sym__block_close] = ACTIONS(185), - [sym__newline] = ACTIONS(187), - [sym__heading_begin] = ACTIONS(17), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(189), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(191), - [sym__block_quote_continuation] = ACTIONS(65), - [sym__thematic_break_dash] = ACTIONS(193), - [sym__thematic_break_star] = ACTIONS(193), - [sym__table_header_begin] = ACTIONS(195), - [sym__table_separator_begin] = ACTIONS(197), - [sym__table_row_begin] = ACTIONS(199), + [anon_sym_DOT] = ACTIONS(9), + [aux_sym_identifier_token1] = ACTIONS(9), + [aux_sym__inline_token1] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(9), + [anon_sym_PERCENT] = ACTIONS(9), + [sym__newline] = ACTIONS(11), + [sym__heading_begin] = ACTIONS(15), + [sym__div_begin] = ACTIONS(17), + [sym__code_block_begin] = ACTIONS(19), + [sym_list_marker_dash] = ACTIONS(21), + [sym_list_marker_star] = ACTIONS(23), + [sym_list_marker_plus] = ACTIONS(25), + [sym__list_marker_task_begin] = ACTIONS(27), + [sym_list_marker_definition] = ACTIONS(29), + [sym_list_marker_decimal_period] = ACTIONS(31), + [sym_list_marker_lower_alpha_period] = ACTIONS(33), + [sym_list_marker_upper_alpha_period] = ACTIONS(35), + [sym_list_marker_lower_roman_period] = ACTIONS(37), + [sym_list_marker_upper_roman_period] = ACTIONS(39), + [sym_list_marker_decimal_paren] = ACTIONS(41), + [sym_list_marker_lower_alpha_paren] = ACTIONS(43), + [sym_list_marker_upper_alpha_paren] = ACTIONS(45), + [sym_list_marker_lower_roman_paren] = ACTIONS(47), + [sym_list_marker_upper_roman_paren] = ACTIONS(49), + [sym_list_marker_decimal_parens] = ACTIONS(51), + [sym_list_marker_lower_alpha_parens] = ACTIONS(53), + [sym_list_marker_upper_alpha_parens] = ACTIONS(55), + [sym_list_marker_lower_roman_parens] = ACTIONS(57), + [sym_list_marker_upper_roman_parens] = ACTIONS(59), + [sym__block_quote_begin] = ACTIONS(61), + [sym__block_quote_continuation] = ACTIONS(63), + [sym__thematic_break_dash] = ACTIONS(65), + [sym__thematic_break_star] = ACTIONS(65), + [sym__table_header_begin] = ACTIONS(67), + [sym__table_separator_begin] = ACTIONS(69), + [sym__table_row_begin] = ACTIONS(71), + [sym__block_attribute_begin] = ACTIONS(73), }, [6] = { - [sym__block_with_section] = STATE(173), - [sym__block_element] = STATE(173), - [sym_section] = STATE(173), - [sym_heading] = STATE(5), - [sym_list] = STATE(173), - [sym__list_dash] = STATE(200), - [sym__list_item_dash] = STATE(553), - [sym__list_plus] = STATE(200), - [sym__list_item_plus] = STATE(554), - [sym__list_star] = STATE(200), - [sym__list_item_star] = STATE(556), - [sym__list_task] = STATE(200), - [sym__list_item_task] = STATE(558), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(200), - [sym__list_item_definition] = STATE(769), - [sym__list_decimal_period] = STATE(200), - [sym__list_item_decimal_period] = STATE(776), - [sym__list_decimal_paren] = STATE(200), - [sym__list_item_decimal_paren] = STATE(790), - [sym__list_decimal_parens] = STATE(200), - [sym__list_item_decimal_parens] = STATE(793), - [sym__list_lower_alpha_period] = STATE(200), - [sym__list_item_lower_alpha_period] = STATE(822), - [sym__list_lower_alpha_paren] = STATE(200), - [sym__list_item_lower_alpha_paren] = STATE(684), - [sym__list_lower_alpha_parens] = STATE(200), - [sym__list_item_lower_alpha_parens] = STATE(688), - [sym__list_upper_alpha_period] = STATE(200), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(200), - [sym__list_item_upper_alpha_paren] = STATE(705), - [sym__list_upper_alpha_parens] = STATE(200), - [sym__list_item_upper_alpha_parens] = STATE(711), - [sym__list_lower_roman_period] = STATE(200), - [sym__list_item_lower_roman_period] = STATE(712), - [sym__list_lower_roman_paren] = STATE(200), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(200), - [sym__list_item_lower_roman_parens] = STATE(728), - [sym__list_upper_roman_period] = STATE(200), - [sym__list_item_upper_roman_period] = STATE(734), - [sym__list_upper_roman_paren] = STATE(200), - [sym__list_item_upper_roman_paren] = STATE(830), - [sym__list_upper_roman_parens] = STATE(200), - [sym__list_item_upper_roman_parens] = STATE(725), - [sym_table] = STATE(173), + [sym__block_with_section] = STATE(123), + [sym__block_element] = STATE(123), + [sym_section] = STATE(123), + [sym_heading] = STATE(9), + [sym_list] = STATE(123), + [sym__list_dash] = STATE(129), + [sym__list_item_dash] = STATE(645), + [sym__list_plus] = STATE(129), + [sym__list_item_plus] = STATE(661), + [sym__list_star] = STATE(129), + [sym__list_item_star] = STATE(573), + [sym__list_task] = STATE(129), + [sym__list_item_task] = STATE(590), + [sym_list_marker_task] = STATE(43), + [sym__list_definition] = STATE(129), + [sym__list_item_definition] = STATE(740), + [sym__list_decimal_period] = STATE(129), + [sym__list_item_decimal_period] = STATE(743), + [sym__list_decimal_paren] = STATE(129), + [sym__list_item_decimal_paren] = STATE(748), + [sym__list_decimal_parens] = STATE(129), + [sym__list_item_decimal_parens] = STATE(768), + [sym__list_lower_alpha_period] = STATE(129), + [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_lower_alpha_paren] = STATE(129), + [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_lower_alpha_parens] = STATE(129), + [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_upper_alpha_period] = STATE(129), + [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_upper_alpha_paren] = STATE(129), + [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_upper_alpha_parens] = STATE(129), + [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_lower_roman_period] = STATE(129), + [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_lower_roman_paren] = STATE(129), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(129), + [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_upper_roman_period] = STATE(129), + [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_upper_roman_paren] = STATE(129), + [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_upper_roman_parens] = STATE(129), + [sym__list_item_upper_roman_parens] = STATE(819), + [sym_table] = STATE(123), [sym__table_row] = STATE(67), [sym_table_header] = STATE(67), [sym_table_separator] = STATE(67), [sym_table_row] = STATE(67), - [sym_footnote] = STATE(173), - [sym_footnote_marker_begin] = STATE(1002), - [sym_div] = STATE(173), - [sym__div_marker_begin] = STATE(1085), - [sym_code_block] = STATE(173), - [sym_raw_block] = STATE(173), - [sym_thematic_break] = STATE(173), - [sym_block_quote] = STATE(173), - [sym__block_quote_prefix] = STATE(222), - [sym_link_reference_definition] = STATE(173), - [sym_block_attribute] = STATE(173), - [sym__paragraph] = STATE(173), - [sym__paragraph_content] = STATE(753), - [sym__paragraph_inline_content] = STATE(778), - [sym__inline] = STATE(655), + [sym_footnote] = STATE(123), + [sym_footnote_marker_begin] = STATE(894), + [sym_div] = STATE(123), + [sym__div_marker_begin] = STATE(1056), + [sym_code_block] = STATE(123), + [sym_raw_block] = STATE(123), + [sym_thematic_break] = STATE(123), + [sym_block_quote] = STATE(123), + [sym__block_quote_prefix] = STATE(223), + [sym_link_reference_definition] = STATE(123), + [sym_block_attribute] = STATE(123), + [sym__paragraph] = STATE(123), + [sym__paragraph_content] = STATE(784), + [sym__paragraph_inline_content] = STATE(837), + [sym__inline] = STATE(656), [sym__symbol_fallback] = STATE(273), - [aux_sym_document_repeat1] = STATE(4), - [aux_sym__list_dash_repeat1] = STATE(319), - [aux_sym__list_plus_repeat1] = STATE(332), - [aux_sym__list_star_repeat1] = STATE(345), + [aux_sym_document_repeat1] = STATE(8), + [aux_sym__list_dash_repeat1] = STATE(322), + [aux_sym__list_plus_repeat1] = STATE(323), + [aux_sym__list_star_repeat1] = STATE(324), [aux_sym__list_task_repeat1] = STATE(285), - [aux_sym__list_definition_repeat1] = STATE(448), - [aux_sym__list_decimal_period_repeat1] = STATE(481), - [aux_sym__list_decimal_paren_repeat1] = STATE(449), - [aux_sym__list_decimal_parens_repeat1] = STATE(486), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(518), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(520), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(523), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(528), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(530), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(535), - [aux_sym__list_lower_roman_period_repeat1] = STATE(539), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(541), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(542), - [aux_sym__list_upper_roman_period_repeat1] = STATE(543), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(537), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(488), + [aux_sym__list_definition_repeat1] = STATE(494), + [aux_sym__list_decimal_period_repeat1] = STATE(495), + [aux_sym__list_decimal_paren_repeat1] = STATE(496), + [aux_sym__list_decimal_parens_repeat1] = STATE(497), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(498), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(499), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(500), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(501), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(502), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(503), + [aux_sym__list_lower_roman_period_repeat1] = STATE(504), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(505), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(506), + [aux_sym__list_upper_roman_period_repeat1] = STATE(507), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(508), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(509), [aux_sym_table_repeat1] = STATE(67), - [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), - [ts_builtin_sym_end] = ACTIONS(201), - [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACK_CARET] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(9), + [aux_sym_identifier_token1] = ACTIONS(9), + [aux_sym__inline_token1] = ACTIONS(9), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_DOT] = ACTIONS(11), - [aux_sym_identifier_token1] = ACTIONS(11), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_PERCENT] = ACTIONS(11), - [sym__newline] = ACTIONS(13), - [sym__heading_begin] = ACTIONS(17), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(21), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(63), - [sym__block_quote_continuation] = ACTIONS(65), - [sym__thematic_break_dash] = ACTIONS(67), - [sym__thematic_break_star] = ACTIONS(67), - [sym__table_header_begin] = ACTIONS(69), - [sym__table_separator_begin] = ACTIONS(71), - [sym__table_row_begin] = ACTIONS(73), + [anon_sym_PERCENT] = ACTIONS(9), + [sym__block_close] = ACTIONS(99), + [sym__newline] = ACTIONS(81), + [sym__heading_begin] = ACTIONS(15), + [sym__div_begin] = ACTIONS(17), + [sym__code_block_begin] = ACTIONS(83), + [sym_list_marker_dash] = ACTIONS(21), + [sym_list_marker_star] = ACTIONS(23), + [sym_list_marker_plus] = ACTIONS(25), + [sym__list_marker_task_begin] = ACTIONS(27), + [sym_list_marker_definition] = ACTIONS(29), + [sym_list_marker_decimal_period] = ACTIONS(31), + [sym_list_marker_lower_alpha_period] = ACTIONS(33), + [sym_list_marker_upper_alpha_period] = ACTIONS(35), + [sym_list_marker_lower_roman_period] = ACTIONS(37), + [sym_list_marker_upper_roman_period] = ACTIONS(39), + [sym_list_marker_decimal_paren] = ACTIONS(41), + [sym_list_marker_lower_alpha_paren] = ACTIONS(43), + [sym_list_marker_upper_alpha_paren] = ACTIONS(45), + [sym_list_marker_lower_roman_paren] = ACTIONS(47), + [sym_list_marker_upper_roman_paren] = ACTIONS(49), + [sym_list_marker_decimal_parens] = ACTIONS(51), + [sym_list_marker_lower_alpha_parens] = ACTIONS(53), + [sym_list_marker_upper_alpha_parens] = ACTIONS(55), + [sym_list_marker_lower_roman_parens] = ACTIONS(57), + [sym_list_marker_upper_roman_parens] = ACTIONS(59), + [sym__block_quote_begin] = ACTIONS(85), + [sym__block_quote_continuation] = ACTIONS(63), + [sym__thematic_break_dash] = ACTIONS(87), + [sym__thematic_break_star] = ACTIONS(87), + [sym__table_header_begin] = ACTIONS(89), + [sym__table_separator_begin] = ACTIONS(91), + [sym__table_row_begin] = ACTIONS(93), + [sym__block_attribute_begin] = ACTIONS(95), }, [7] = { - [sym__block_with_section] = STATE(109), - [sym__block_element] = STATE(109), - [sym_section] = STATE(109), - [sym_heading] = STATE(9), - [sym_list] = STATE(109), - [sym__list_dash] = STATE(144), - [sym__list_item_dash] = STATE(553), - [sym__list_plus] = STATE(144), - [sym__list_item_plus] = STATE(554), - [sym__list_star] = STATE(144), - [sym__list_item_star] = STATE(556), - [sym__list_task] = STATE(144), - [sym__list_item_task] = STATE(558), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(144), - [sym__list_item_definition] = STATE(769), - [sym__list_decimal_period] = STATE(144), - [sym__list_item_decimal_period] = STATE(776), - [sym__list_decimal_paren] = STATE(144), - [sym__list_item_decimal_paren] = STATE(790), - [sym__list_decimal_parens] = STATE(144), - [sym__list_item_decimal_parens] = STATE(793), - [sym__list_lower_alpha_period] = STATE(144), - [sym__list_item_lower_alpha_period] = STATE(822), - [sym__list_lower_alpha_paren] = STATE(144), - [sym__list_item_lower_alpha_paren] = STATE(684), - [sym__list_lower_alpha_parens] = STATE(144), - [sym__list_item_lower_alpha_parens] = STATE(688), - [sym__list_upper_alpha_period] = STATE(144), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(144), - [sym__list_item_upper_alpha_paren] = STATE(705), - [sym__list_upper_alpha_parens] = STATE(144), - [sym__list_item_upper_alpha_parens] = STATE(711), - [sym__list_lower_roman_period] = STATE(144), - [sym__list_item_lower_roman_period] = STATE(712), - [sym__list_lower_roman_paren] = STATE(144), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(144), - [sym__list_item_lower_roman_parens] = STATE(728), - [sym__list_upper_roman_period] = STATE(144), - [sym__list_item_upper_roman_period] = STATE(734), - [sym__list_upper_roman_paren] = STATE(144), - [sym__list_item_upper_roman_paren] = STATE(830), - [sym__list_upper_roman_parens] = STATE(144), - [sym__list_item_upper_roman_parens] = STATE(725), - [sym_table] = STATE(109), + [sym__block_with_section] = STATE(125), + [sym__block_element] = STATE(125), + [sym_section] = STATE(125), + [sym_heading] = STATE(4), + [sym_list] = STATE(125), + [sym__list_dash] = STATE(167), + [sym__list_item_dash] = STATE(645), + [sym__list_plus] = STATE(167), + [sym__list_item_plus] = STATE(661), + [sym__list_star] = STATE(167), + [sym__list_item_star] = STATE(573), + [sym__list_task] = STATE(167), + [sym__list_item_task] = STATE(590), + [sym_list_marker_task] = STATE(43), + [sym__list_definition] = STATE(167), + [sym__list_item_definition] = STATE(740), + [sym__list_decimal_period] = STATE(167), + [sym__list_item_decimal_period] = STATE(743), + [sym__list_decimal_paren] = STATE(167), + [sym__list_item_decimal_paren] = STATE(748), + [sym__list_decimal_parens] = STATE(167), + [sym__list_item_decimal_parens] = STATE(768), + [sym__list_lower_alpha_period] = STATE(167), + [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_lower_alpha_paren] = STATE(167), + [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_lower_alpha_parens] = STATE(167), + [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_upper_alpha_period] = STATE(167), + [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_upper_alpha_paren] = STATE(167), + [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_upper_alpha_parens] = STATE(167), + [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_lower_roman_period] = STATE(167), + [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_lower_roman_paren] = STATE(167), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(167), + [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_upper_roman_period] = STATE(167), + [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_upper_roman_paren] = STATE(167), + [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_upper_roman_parens] = STATE(167), + [sym__list_item_upper_roman_parens] = STATE(819), + [sym_table] = STATE(125), [sym__table_row] = STATE(66), [sym_table_header] = STATE(66), [sym_table_separator] = STATE(66), [sym_table_row] = STATE(66), - [sym_footnote] = STATE(109), - [sym_footnote_marker_begin] = STATE(1141), - [sym_div] = STATE(109), - [sym__div_marker_begin] = STATE(1057), - [sym_code_block] = STATE(109), - [sym_raw_block] = STATE(109), - [sym_thematic_break] = STATE(109), - [sym_block_quote] = STATE(109), - [sym__block_quote_prefix] = STATE(225), - [sym_link_reference_definition] = STATE(109), - [sym_block_attribute] = STATE(109), - [sym__paragraph] = STATE(109), - [sym__paragraph_content] = STATE(750), - [sym__paragraph_inline_content] = STATE(778), - [sym__inline] = STATE(655), + [sym_footnote] = STATE(125), + [sym_footnote_marker_begin] = STATE(954), + [sym_div] = STATE(125), + [sym__div_marker_begin] = STATE(960), + [sym_code_block] = STATE(125), + [sym_raw_block] = STATE(125), + [sym_thematic_break] = STATE(125), + [sym_block_quote] = STATE(125), + [sym__block_quote_prefix] = STATE(221), + [sym_link_reference_definition] = STATE(125), + [sym_block_attribute] = STATE(125), + [sym__paragraph] = STATE(125), + [sym__paragraph_content] = STATE(834), + [sym__paragraph_inline_content] = STATE(837), + [sym__inline] = STATE(656), [sym__symbol_fallback] = STATE(273), - [aux_sym_document_repeat1] = STATE(8), + [aux_sym_document_repeat1] = STATE(7), [aux_sym__list_dash_repeat1] = STATE(334), - [aux_sym__list_plus_repeat1] = STATE(335), - [aux_sym__list_star_repeat1] = STATE(336), - [aux_sym__list_task_repeat1] = STATE(309), - [aux_sym__list_definition_repeat1] = STATE(425), - [aux_sym__list_decimal_period_repeat1] = STATE(426), - [aux_sym__list_decimal_paren_repeat1] = STATE(427), - [aux_sym__list_decimal_parens_repeat1] = STATE(428), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(429), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(430), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(431), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(432), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(433), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(434), - [aux_sym__list_lower_roman_period_repeat1] = STATE(435), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(436), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(437), - [aux_sym__list_upper_roman_period_repeat1] = STATE(438), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(439), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(440), + [aux_sym__list_plus_repeat1] = STATE(317), + [aux_sym__list_star_repeat1] = STATE(342), + [aux_sym__list_task_repeat1] = STATE(297), + [aux_sym__list_definition_repeat1] = STATE(529), + [aux_sym__list_decimal_period_repeat1] = STATE(531), + [aux_sym__list_decimal_paren_repeat1] = STATE(533), + [aux_sym__list_decimal_parens_repeat1] = STATE(535), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(537), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(539), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(424), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(426), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(423), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(429), + [aux_sym__list_lower_roman_period_repeat1] = STATE(431), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(433), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(435), + [aux_sym__list_upper_roman_period_repeat1] = STATE(437), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(438), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(439), [aux_sym_table_repeat1] = STATE(66), - [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), - [anon_sym_LBRACK] = ACTIONS(181), - [anon_sym_LBRACK_CARET] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(11), - [aux_sym_identifier_token1] = ACTIONS(11), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_PERCENT] = ACTIONS(11), - [sym__block_close] = ACTIONS(203), - [sym__newline] = ACTIONS(187), - [sym__heading_begin] = ACTIONS(17), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(189), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(191), - [sym__block_quote_continuation] = ACTIONS(65), - [sym__thematic_break_dash] = ACTIONS(193), - [sym__thematic_break_star] = ACTIONS(193), - [sym__table_header_begin] = ACTIONS(195), - [sym__table_separator_begin] = ACTIONS(197), + [ts_builtin_sym_end] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_LBRACK_CARET] = ACTIONS(106), + [anon_sym_DOT] = ACTIONS(109), + [aux_sym_identifier_token1] = ACTIONS(109), + [aux_sym__inline_token1] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(109), + [anon_sym_PERCENT] = ACTIONS(109), + [sym__newline] = ACTIONS(112), + [sym__heading_begin] = ACTIONS(115), + [sym__div_begin] = ACTIONS(118), + [sym__code_block_begin] = ACTIONS(121), + [sym_list_marker_dash] = ACTIONS(124), + [sym_list_marker_star] = ACTIONS(127), + [sym_list_marker_plus] = ACTIONS(130), + [sym__list_marker_task_begin] = ACTIONS(133), + [sym_list_marker_definition] = ACTIONS(136), + [sym_list_marker_decimal_period] = ACTIONS(139), + [sym_list_marker_lower_alpha_period] = ACTIONS(142), + [sym_list_marker_upper_alpha_period] = ACTIONS(145), + [sym_list_marker_lower_roman_period] = ACTIONS(148), + [sym_list_marker_upper_roman_period] = ACTIONS(151), + [sym_list_marker_decimal_paren] = ACTIONS(154), + [sym_list_marker_lower_alpha_paren] = ACTIONS(157), + [sym_list_marker_upper_alpha_paren] = ACTIONS(160), + [sym_list_marker_lower_roman_paren] = ACTIONS(163), + [sym_list_marker_upper_roman_paren] = ACTIONS(166), + [sym_list_marker_decimal_parens] = ACTIONS(169), + [sym_list_marker_lower_alpha_parens] = ACTIONS(172), + [sym_list_marker_upper_alpha_parens] = ACTIONS(175), + [sym_list_marker_lower_roman_parens] = ACTIONS(178), + [sym_list_marker_upper_roman_parens] = ACTIONS(181), + [sym__block_quote_begin] = ACTIONS(184), + [sym__block_quote_continuation] = ACTIONS(187), + [sym__thematic_break_dash] = ACTIONS(190), + [sym__thematic_break_star] = ACTIONS(190), + [sym__table_header_begin] = ACTIONS(193), + [sym__table_separator_begin] = ACTIONS(196), [sym__table_row_begin] = ACTIONS(199), + [sym__block_attribute_begin] = ACTIONS(202), }, [8] = { - [sym__block_with_section] = STATE(109), - [sym__block_element] = STATE(109), - [sym_section] = STATE(109), + [sym__block_with_section] = STATE(123), + [sym__block_element] = STATE(123), + [sym_section] = STATE(123), [sym_heading] = STATE(9), - [sym_list] = STATE(109), - [sym__list_dash] = STATE(144), - [sym__list_item_dash] = STATE(553), - [sym__list_plus] = STATE(144), - [sym__list_item_plus] = STATE(554), - [sym__list_star] = STATE(144), - [sym__list_item_star] = STATE(556), - [sym__list_task] = STATE(144), - [sym__list_item_task] = STATE(558), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(144), - [sym__list_item_definition] = STATE(769), - [sym__list_decimal_period] = STATE(144), - [sym__list_item_decimal_period] = STATE(776), - [sym__list_decimal_paren] = STATE(144), - [sym__list_item_decimal_paren] = STATE(790), - [sym__list_decimal_parens] = STATE(144), - [sym__list_item_decimal_parens] = STATE(793), - [sym__list_lower_alpha_period] = STATE(144), - [sym__list_item_lower_alpha_period] = STATE(822), - [sym__list_lower_alpha_paren] = STATE(144), - [sym__list_item_lower_alpha_paren] = STATE(684), - [sym__list_lower_alpha_parens] = STATE(144), - [sym__list_item_lower_alpha_parens] = STATE(688), - [sym__list_upper_alpha_period] = STATE(144), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(144), - [sym__list_item_upper_alpha_paren] = STATE(705), - [sym__list_upper_alpha_parens] = STATE(144), - [sym__list_item_upper_alpha_parens] = STATE(711), - [sym__list_lower_roman_period] = STATE(144), - [sym__list_item_lower_roman_period] = STATE(712), - [sym__list_lower_roman_paren] = STATE(144), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(144), - [sym__list_item_lower_roman_parens] = STATE(728), - [sym__list_upper_roman_period] = STATE(144), - [sym__list_item_upper_roman_period] = STATE(734), - [sym__list_upper_roman_paren] = STATE(144), - [sym__list_item_upper_roman_paren] = STATE(830), - [sym__list_upper_roman_parens] = STATE(144), - [sym__list_item_upper_roman_parens] = STATE(725), - [sym_table] = STATE(109), - [sym__table_row] = STATE(66), - [sym_table_header] = STATE(66), - [sym_table_separator] = STATE(66), - [sym_table_row] = STATE(66), - [sym_footnote] = STATE(109), - [sym_footnote_marker_begin] = STATE(1141), - [sym_div] = STATE(109), - [sym__div_marker_begin] = STATE(1057), - [sym_code_block] = STATE(109), - [sym_raw_block] = STATE(109), - [sym_thematic_break] = STATE(109), - [sym_block_quote] = STATE(109), - [sym__block_quote_prefix] = STATE(225), - [sym_link_reference_definition] = STATE(109), - [sym_block_attribute] = STATE(109), - [sym__paragraph] = STATE(109), - [sym__paragraph_content] = STATE(750), - [sym__paragraph_inline_content] = STATE(778), - [sym__inline] = STATE(655), + [sym_list] = STATE(123), + [sym__list_dash] = STATE(129), + [sym__list_item_dash] = STATE(645), + [sym__list_plus] = STATE(129), + [sym__list_item_plus] = STATE(661), + [sym__list_star] = STATE(129), + [sym__list_item_star] = STATE(573), + [sym__list_task] = STATE(129), + [sym__list_item_task] = STATE(590), + [sym_list_marker_task] = STATE(43), + [sym__list_definition] = STATE(129), + [sym__list_item_definition] = STATE(740), + [sym__list_decimal_period] = STATE(129), + [sym__list_item_decimal_period] = STATE(743), + [sym__list_decimal_paren] = STATE(129), + [sym__list_item_decimal_paren] = STATE(748), + [sym__list_decimal_parens] = STATE(129), + [sym__list_item_decimal_parens] = STATE(768), + [sym__list_lower_alpha_period] = STATE(129), + [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_lower_alpha_paren] = STATE(129), + [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_lower_alpha_parens] = STATE(129), + [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_upper_alpha_period] = STATE(129), + [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_upper_alpha_paren] = STATE(129), + [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_upper_alpha_parens] = STATE(129), + [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_lower_roman_period] = STATE(129), + [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_lower_roman_paren] = STATE(129), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(129), + [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_upper_roman_period] = STATE(129), + [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_upper_roman_paren] = STATE(129), + [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_upper_roman_parens] = STATE(129), + [sym__list_item_upper_roman_parens] = STATE(819), + [sym_table] = STATE(123), + [sym__table_row] = STATE(67), + [sym_table_header] = STATE(67), + [sym_table_separator] = STATE(67), + [sym_table_row] = STATE(67), + [sym_footnote] = STATE(123), + [sym_footnote_marker_begin] = STATE(894), + [sym_div] = STATE(123), + [sym__div_marker_begin] = STATE(1056), + [sym_code_block] = STATE(123), + [sym_raw_block] = STATE(123), + [sym_thematic_break] = STATE(123), + [sym_block_quote] = STATE(123), + [sym__block_quote_prefix] = STATE(223), + [sym_link_reference_definition] = STATE(123), + [sym_block_attribute] = STATE(123), + [sym__paragraph] = STATE(123), + [sym__paragraph_content] = STATE(784), + [sym__paragraph_inline_content] = STATE(837), + [sym__inline] = STATE(656), [sym__symbol_fallback] = STATE(273), [aux_sym_document_repeat1] = STATE(8), - [aux_sym__list_dash_repeat1] = STATE(334), - [aux_sym__list_plus_repeat1] = STATE(335), - [aux_sym__list_star_repeat1] = STATE(336), - [aux_sym__list_task_repeat1] = STATE(309), - [aux_sym__list_definition_repeat1] = STATE(425), - [aux_sym__list_decimal_period_repeat1] = STATE(426), - [aux_sym__list_decimal_paren_repeat1] = STATE(427), - [aux_sym__list_decimal_parens_repeat1] = STATE(428), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(429), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(430), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(431), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(432), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(433), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(434), - [aux_sym__list_lower_roman_period_repeat1] = STATE(435), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(436), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(437), - [aux_sym__list_upper_roman_period_repeat1] = STATE(438), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(439), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(440), - [aux_sym_table_repeat1] = STATE(66), - [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__list_dash_repeat1] = STATE(322), + [aux_sym__list_plus_repeat1] = STATE(323), + [aux_sym__list_star_repeat1] = STATE(324), + [aux_sym__list_task_repeat1] = STATE(285), + [aux_sym__list_definition_repeat1] = STATE(494), + [aux_sym__list_decimal_period_repeat1] = STATE(495), + [aux_sym__list_decimal_paren_repeat1] = STATE(496), + [aux_sym__list_decimal_parens_repeat1] = STATE(497), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(498), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(499), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(500), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(501), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(502), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(503), + [aux_sym__list_lower_roman_period_repeat1] = STATE(504), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(505), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(506), + [aux_sym__list_upper_roman_period_repeat1] = STATE(507), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(508), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(509), + [aux_sym_table_repeat1] = STATE(67), + [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_LBRACK_CARET] = ACTIONS(82), - [anon_sym_LBRACE] = ACTIONS(208), - [anon_sym_DOT] = ACTIONS(88), - [aux_sym_identifier_token1] = ACTIONS(88), - [aux_sym__inline_token1] = ACTIONS(88), - [anon_sym_PERCENT] = ACTIONS(88), - [sym__block_close] = ACTIONS(77), - [sym__newline] = ACTIONS(211), - [sym__heading_begin] = ACTIONS(94), - [sym__div_begin] = ACTIONS(97), - [sym__code_block_begin] = ACTIONS(214), - [sym_list_marker_dash] = ACTIONS(103), - [sym_list_marker_star] = ACTIONS(106), - [sym_list_marker_plus] = ACTIONS(109), - [sym__list_marker_task_begin] = ACTIONS(112), - [sym_list_marker_definition] = ACTIONS(115), - [sym_list_marker_decimal_period] = ACTIONS(118), - [sym_list_marker_lower_alpha_period] = ACTIONS(121), - [sym_list_marker_upper_alpha_period] = ACTIONS(124), - [sym_list_marker_lower_roman_period] = ACTIONS(127), - [sym_list_marker_upper_roman_period] = ACTIONS(130), - [sym_list_marker_decimal_paren] = ACTIONS(133), - [sym_list_marker_lower_alpha_paren] = ACTIONS(136), - [sym_list_marker_upper_alpha_paren] = ACTIONS(139), - [sym_list_marker_lower_roman_paren] = ACTIONS(142), - [sym_list_marker_upper_roman_paren] = ACTIONS(145), - [sym_list_marker_decimal_parens] = ACTIONS(148), - [sym_list_marker_lower_alpha_parens] = ACTIONS(151), - [sym_list_marker_upper_alpha_parens] = ACTIONS(154), - [sym_list_marker_lower_roman_parens] = ACTIONS(157), - [sym_list_marker_upper_roman_parens] = ACTIONS(160), - [sym__block_quote_begin] = ACTIONS(217), - [sym__block_quote_continuation] = ACTIONS(166), - [sym__thematic_break_dash] = ACTIONS(220), - [sym__thematic_break_star] = ACTIONS(220), - [sym__table_header_begin] = ACTIONS(223), - [sym__table_separator_begin] = ACTIONS(226), - [sym__table_row_begin] = ACTIONS(229), + [anon_sym_LBRACK_CARET] = ACTIONS(106), + [anon_sym_DOT] = ACTIONS(109), + [aux_sym_identifier_token1] = ACTIONS(109), + [aux_sym__inline_token1] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(109), + [anon_sym_PERCENT] = ACTIONS(109), + [sym__block_close] = ACTIONS(101), + [sym__newline] = ACTIONS(208), + [sym__heading_begin] = ACTIONS(115), + [sym__div_begin] = ACTIONS(118), + [sym__code_block_begin] = ACTIONS(211), + [sym_list_marker_dash] = ACTIONS(124), + [sym_list_marker_star] = ACTIONS(127), + [sym_list_marker_plus] = ACTIONS(130), + [sym__list_marker_task_begin] = ACTIONS(133), + [sym_list_marker_definition] = ACTIONS(136), + [sym_list_marker_decimal_period] = ACTIONS(139), + [sym_list_marker_lower_alpha_period] = ACTIONS(142), + [sym_list_marker_upper_alpha_period] = ACTIONS(145), + [sym_list_marker_lower_roman_period] = ACTIONS(148), + [sym_list_marker_upper_roman_period] = ACTIONS(151), + [sym_list_marker_decimal_paren] = ACTIONS(154), + [sym_list_marker_lower_alpha_paren] = ACTIONS(157), + [sym_list_marker_upper_alpha_paren] = ACTIONS(160), + [sym_list_marker_lower_roman_paren] = ACTIONS(163), + [sym_list_marker_upper_roman_paren] = ACTIONS(166), + [sym_list_marker_decimal_parens] = ACTIONS(169), + [sym_list_marker_lower_alpha_parens] = ACTIONS(172), + [sym_list_marker_upper_alpha_parens] = ACTIONS(175), + [sym_list_marker_lower_roman_parens] = ACTIONS(178), + [sym_list_marker_upper_roman_parens] = ACTIONS(181), + [sym__block_quote_begin] = ACTIONS(214), + [sym__block_quote_continuation] = ACTIONS(187), + [sym__thematic_break_dash] = ACTIONS(217), + [sym__thematic_break_star] = ACTIONS(217), + [sym__table_header_begin] = ACTIONS(220), + [sym__table_separator_begin] = ACTIONS(223), + [sym__table_row_begin] = ACTIONS(226), + [sym__block_attribute_begin] = ACTIONS(229), }, [9] = { - [sym__block_with_section] = STATE(109), - [sym__block_element] = STATE(109), - [sym_section] = STATE(109), + [sym__block_with_section] = STATE(123), + [sym__block_element] = STATE(123), + [sym_section] = STATE(123), [sym_heading] = STATE(9), - [sym_list] = STATE(109), - [sym__list_dash] = STATE(144), - [sym__list_item_dash] = STATE(553), - [sym__list_plus] = STATE(144), - [sym__list_item_plus] = STATE(554), - [sym__list_star] = STATE(144), - [sym__list_item_star] = STATE(556), - [sym__list_task] = STATE(144), - [sym__list_item_task] = STATE(558), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(144), - [sym__list_item_definition] = STATE(769), - [sym__list_decimal_period] = STATE(144), - [sym__list_item_decimal_period] = STATE(776), - [sym__list_decimal_paren] = STATE(144), - [sym__list_item_decimal_paren] = STATE(790), - [sym__list_decimal_parens] = STATE(144), - [sym__list_item_decimal_parens] = STATE(793), - [sym__list_lower_alpha_period] = STATE(144), - [sym__list_item_lower_alpha_period] = STATE(822), - [sym__list_lower_alpha_paren] = STATE(144), - [sym__list_item_lower_alpha_paren] = STATE(684), - [sym__list_lower_alpha_parens] = STATE(144), - [sym__list_item_lower_alpha_parens] = STATE(688), - [sym__list_upper_alpha_period] = STATE(144), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(144), - [sym__list_item_upper_alpha_paren] = STATE(705), - [sym__list_upper_alpha_parens] = STATE(144), - [sym__list_item_upper_alpha_parens] = STATE(711), - [sym__list_lower_roman_period] = STATE(144), - [sym__list_item_lower_roman_period] = STATE(712), - [sym__list_lower_roman_paren] = STATE(144), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(144), - [sym__list_item_lower_roman_parens] = STATE(728), - [sym__list_upper_roman_period] = STATE(144), - [sym__list_item_upper_roman_period] = STATE(734), - [sym__list_upper_roman_paren] = STATE(144), - [sym__list_item_upper_roman_paren] = STATE(830), - [sym__list_upper_roman_parens] = STATE(144), - [sym__list_item_upper_roman_parens] = STATE(725), - [sym_table] = STATE(109), - [sym__table_row] = STATE(66), - [sym_table_header] = STATE(66), - [sym_table_separator] = STATE(66), - [sym_table_row] = STATE(66), - [sym_footnote] = STATE(109), - [sym_footnote_marker_begin] = STATE(1141), - [sym_div] = STATE(109), - [sym__div_marker_begin] = STATE(1057), - [sym_code_block] = STATE(109), - [sym_raw_block] = STATE(109), - [sym_thematic_break] = STATE(109), - [sym_block_quote] = STATE(109), - [sym__block_quote_prefix] = STATE(225), - [sym_link_reference_definition] = STATE(109), - [sym_block_attribute] = STATE(109), - [sym__paragraph] = STATE(109), - [sym__paragraph_content] = STATE(750), - [sym__paragraph_inline_content] = STATE(778), - [sym__inline] = STATE(655), + [sym_list] = STATE(123), + [sym__list_dash] = STATE(129), + [sym__list_item_dash] = STATE(645), + [sym__list_plus] = STATE(129), + [sym__list_item_plus] = STATE(661), + [sym__list_star] = STATE(129), + [sym__list_item_star] = STATE(573), + [sym__list_task] = STATE(129), + [sym__list_item_task] = STATE(590), + [sym_list_marker_task] = STATE(43), + [sym__list_definition] = STATE(129), + [sym__list_item_definition] = STATE(740), + [sym__list_decimal_period] = STATE(129), + [sym__list_item_decimal_period] = STATE(743), + [sym__list_decimal_paren] = STATE(129), + [sym__list_item_decimal_paren] = STATE(748), + [sym__list_decimal_parens] = STATE(129), + [sym__list_item_decimal_parens] = STATE(768), + [sym__list_lower_alpha_period] = STATE(129), + [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_lower_alpha_paren] = STATE(129), + [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_lower_alpha_parens] = STATE(129), + [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_upper_alpha_period] = STATE(129), + [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_upper_alpha_paren] = STATE(129), + [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_upper_alpha_parens] = STATE(129), + [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_lower_roman_period] = STATE(129), + [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_lower_roman_paren] = STATE(129), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(129), + [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_upper_roman_period] = STATE(129), + [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_upper_roman_paren] = STATE(129), + [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_upper_roman_parens] = STATE(129), + [sym__list_item_upper_roman_parens] = STATE(819), + [sym_table] = STATE(123), + [sym__table_row] = STATE(67), + [sym_table_header] = STATE(67), + [sym_table_separator] = STATE(67), + [sym_table_row] = STATE(67), + [sym_footnote] = STATE(123), + [sym_footnote_marker_begin] = STATE(894), + [sym_div] = STATE(123), + [sym__div_marker_begin] = STATE(1056), + [sym_code_block] = STATE(123), + [sym_raw_block] = STATE(123), + [sym_thematic_break] = STATE(123), + [sym_block_quote] = STATE(123), + [sym__block_quote_prefix] = STATE(223), + [sym_link_reference_definition] = STATE(123), + [sym_block_attribute] = STATE(123), + [sym__paragraph] = STATE(123), + [sym__paragraph_content] = STATE(784), + [sym__paragraph_inline_content] = STATE(837), + [sym__inline] = STATE(656), [sym__symbol_fallback] = STATE(273), [aux_sym_document_repeat1] = STATE(10), - [aux_sym__list_dash_repeat1] = STATE(334), - [aux_sym__list_plus_repeat1] = STATE(335), - [aux_sym__list_star_repeat1] = STATE(336), - [aux_sym__list_task_repeat1] = STATE(309), - [aux_sym__list_definition_repeat1] = STATE(425), - [aux_sym__list_decimal_period_repeat1] = STATE(426), - [aux_sym__list_decimal_paren_repeat1] = STATE(427), - [aux_sym__list_decimal_parens_repeat1] = STATE(428), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(429), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(430), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(431), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(432), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(433), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(434), - [aux_sym__list_lower_roman_period_repeat1] = STATE(435), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(436), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(437), - [aux_sym__list_upper_roman_period_repeat1] = STATE(438), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(439), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(440), - [aux_sym_table_repeat1] = STATE(66), - [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__list_dash_repeat1] = STATE(322), + [aux_sym__list_plus_repeat1] = STATE(323), + [aux_sym__list_star_repeat1] = STATE(324), + [aux_sym__list_task_repeat1] = STATE(285), + [aux_sym__list_definition_repeat1] = STATE(494), + [aux_sym__list_decimal_period_repeat1] = STATE(495), + [aux_sym__list_decimal_paren_repeat1] = STATE(496), + [aux_sym__list_decimal_parens_repeat1] = STATE(497), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(498), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(499), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(500), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(501), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(502), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(503), + [aux_sym__list_lower_roman_period_repeat1] = STATE(504), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(505), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(506), + [aux_sym__list_upper_roman_period_repeat1] = STATE(507), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(508), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(509), + [aux_sym_table_repeat1] = STATE(67), + [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), - [anon_sym_LBRACK] = ACTIONS(181), + [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACK_CARET] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(11), - [aux_sym_identifier_token1] = ACTIONS(11), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_PERCENT] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(9), + [aux_sym_identifier_token1] = ACTIONS(9), + [aux_sym__inline_token1] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(9), + [anon_sym_PERCENT] = ACTIONS(9), [sym__block_close] = ACTIONS(232), - [sym__newline] = ACTIONS(187), - [sym__heading_begin] = ACTIONS(17), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(189), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(191), - [sym__block_quote_continuation] = ACTIONS(65), - [sym__thematic_break_dash] = ACTIONS(193), - [sym__thematic_break_star] = ACTIONS(193), - [sym__table_header_begin] = ACTIONS(195), - [sym__table_separator_begin] = ACTIONS(197), - [sym__table_row_begin] = ACTIONS(199), + [sym__newline] = ACTIONS(81), + [sym__heading_begin] = ACTIONS(15), + [sym__div_begin] = ACTIONS(17), + [sym__code_block_begin] = ACTIONS(83), + [sym_list_marker_dash] = ACTIONS(21), + [sym_list_marker_star] = ACTIONS(23), + [sym_list_marker_plus] = ACTIONS(25), + [sym__list_marker_task_begin] = ACTIONS(27), + [sym_list_marker_definition] = ACTIONS(29), + [sym_list_marker_decimal_period] = ACTIONS(31), + [sym_list_marker_lower_alpha_period] = ACTIONS(33), + [sym_list_marker_upper_alpha_period] = ACTIONS(35), + [sym_list_marker_lower_roman_period] = ACTIONS(37), + [sym_list_marker_upper_roman_period] = ACTIONS(39), + [sym_list_marker_decimal_paren] = ACTIONS(41), + [sym_list_marker_lower_alpha_paren] = ACTIONS(43), + [sym_list_marker_upper_alpha_paren] = ACTIONS(45), + [sym_list_marker_lower_roman_paren] = ACTIONS(47), + [sym_list_marker_upper_roman_paren] = ACTIONS(49), + [sym_list_marker_decimal_parens] = ACTIONS(51), + [sym_list_marker_lower_alpha_parens] = ACTIONS(53), + [sym_list_marker_upper_alpha_parens] = ACTIONS(55), + [sym_list_marker_lower_roman_parens] = ACTIONS(57), + [sym_list_marker_upper_roman_parens] = ACTIONS(59), + [sym__block_quote_begin] = ACTIONS(85), + [sym__block_quote_continuation] = ACTIONS(63), + [sym__thematic_break_dash] = ACTIONS(87), + [sym__thematic_break_star] = ACTIONS(87), + [sym__table_header_begin] = ACTIONS(89), + [sym__table_separator_begin] = ACTIONS(91), + [sym__table_row_begin] = ACTIONS(93), + [sym__block_attribute_begin] = ACTIONS(95), }, [10] = { - [sym__block_with_section] = STATE(109), - [sym__block_element] = STATE(109), - [sym_section] = STATE(109), + [sym__block_with_section] = STATE(123), + [sym__block_element] = STATE(123), + [sym_section] = STATE(123), [sym_heading] = STATE(9), - [sym_list] = STATE(109), - [sym__list_dash] = STATE(144), - [sym__list_item_dash] = STATE(553), - [sym__list_plus] = STATE(144), - [sym__list_item_plus] = STATE(554), - [sym__list_star] = STATE(144), - [sym__list_item_star] = STATE(556), - [sym__list_task] = STATE(144), - [sym__list_item_task] = STATE(558), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(144), - [sym__list_item_definition] = STATE(769), - [sym__list_decimal_period] = STATE(144), - [sym__list_item_decimal_period] = STATE(776), - [sym__list_decimal_paren] = STATE(144), - [sym__list_item_decimal_paren] = STATE(790), - [sym__list_decimal_parens] = STATE(144), - [sym__list_item_decimal_parens] = STATE(793), - [sym__list_lower_alpha_period] = STATE(144), - [sym__list_item_lower_alpha_period] = STATE(822), - [sym__list_lower_alpha_paren] = STATE(144), - [sym__list_item_lower_alpha_paren] = STATE(684), - [sym__list_lower_alpha_parens] = STATE(144), - [sym__list_item_lower_alpha_parens] = STATE(688), - [sym__list_upper_alpha_period] = STATE(144), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(144), - [sym__list_item_upper_alpha_paren] = STATE(705), - [sym__list_upper_alpha_parens] = STATE(144), - [sym__list_item_upper_alpha_parens] = STATE(711), - [sym__list_lower_roman_period] = STATE(144), - [sym__list_item_lower_roman_period] = STATE(712), - [sym__list_lower_roman_paren] = STATE(144), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(144), - [sym__list_item_lower_roman_parens] = STATE(728), - [sym__list_upper_roman_period] = STATE(144), - [sym__list_item_upper_roman_period] = STATE(734), - [sym__list_upper_roman_paren] = STATE(144), - [sym__list_item_upper_roman_paren] = STATE(830), - [sym__list_upper_roman_parens] = STATE(144), - [sym__list_item_upper_roman_parens] = STATE(725), - [sym_table] = STATE(109), - [sym__table_row] = STATE(66), - [sym_table_header] = STATE(66), - [sym_table_separator] = STATE(66), - [sym_table_row] = STATE(66), - [sym_footnote] = STATE(109), - [sym_footnote_marker_begin] = STATE(1141), - [sym_div] = STATE(109), - [sym__div_marker_begin] = STATE(1057), - [sym_code_block] = STATE(109), - [sym_raw_block] = STATE(109), - [sym_thematic_break] = STATE(109), - [sym_block_quote] = STATE(109), - [sym__block_quote_prefix] = STATE(225), - [sym_link_reference_definition] = STATE(109), - [sym_block_attribute] = STATE(109), - [sym__paragraph] = STATE(109), - [sym__paragraph_content] = STATE(750), - [sym__paragraph_inline_content] = STATE(778), - [sym__inline] = STATE(655), + [sym_list] = STATE(123), + [sym__list_dash] = STATE(129), + [sym__list_item_dash] = STATE(645), + [sym__list_plus] = STATE(129), + [sym__list_item_plus] = STATE(661), + [sym__list_star] = STATE(129), + [sym__list_item_star] = STATE(573), + [sym__list_task] = STATE(129), + [sym__list_item_task] = STATE(590), + [sym_list_marker_task] = STATE(43), + [sym__list_definition] = STATE(129), + [sym__list_item_definition] = STATE(740), + [sym__list_decimal_period] = STATE(129), + [sym__list_item_decimal_period] = STATE(743), + [sym__list_decimal_paren] = STATE(129), + [sym__list_item_decimal_paren] = STATE(748), + [sym__list_decimal_parens] = STATE(129), + [sym__list_item_decimal_parens] = STATE(768), + [sym__list_lower_alpha_period] = STATE(129), + [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_lower_alpha_paren] = STATE(129), + [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_lower_alpha_parens] = STATE(129), + [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_upper_alpha_period] = STATE(129), + [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_upper_alpha_paren] = STATE(129), + [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_upper_alpha_parens] = STATE(129), + [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_lower_roman_period] = STATE(129), + [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_lower_roman_paren] = STATE(129), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(129), + [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_upper_roman_period] = STATE(129), + [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_upper_roman_paren] = STATE(129), + [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_upper_roman_parens] = STATE(129), + [sym__list_item_upper_roman_parens] = STATE(819), + [sym_table] = STATE(123), + [sym__table_row] = STATE(67), + [sym_table_header] = STATE(67), + [sym_table_separator] = STATE(67), + [sym_table_row] = STATE(67), + [sym_footnote] = STATE(123), + [sym_footnote_marker_begin] = STATE(894), + [sym_div] = STATE(123), + [sym__div_marker_begin] = STATE(1056), + [sym_code_block] = STATE(123), + [sym_raw_block] = STATE(123), + [sym_thematic_break] = STATE(123), + [sym_block_quote] = STATE(123), + [sym__block_quote_prefix] = STATE(223), + [sym_link_reference_definition] = STATE(123), + [sym_block_attribute] = STATE(123), + [sym__paragraph] = STATE(123), + [sym__paragraph_content] = STATE(784), + [sym__paragraph_inline_content] = STATE(837), + [sym__inline] = STATE(656), [sym__symbol_fallback] = STATE(273), [aux_sym_document_repeat1] = STATE(8), - [aux_sym__list_dash_repeat1] = STATE(334), - [aux_sym__list_plus_repeat1] = STATE(335), - [aux_sym__list_star_repeat1] = STATE(336), - [aux_sym__list_task_repeat1] = STATE(309), - [aux_sym__list_definition_repeat1] = STATE(425), - [aux_sym__list_decimal_period_repeat1] = STATE(426), - [aux_sym__list_decimal_paren_repeat1] = STATE(427), - [aux_sym__list_decimal_parens_repeat1] = STATE(428), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(429), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(430), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(431), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(432), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(433), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(434), - [aux_sym__list_lower_roman_period_repeat1] = STATE(435), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(436), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(437), - [aux_sym__list_upper_roman_period_repeat1] = STATE(438), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(439), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(440), - [aux_sym_table_repeat1] = STATE(66), - [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__list_dash_repeat1] = STATE(322), + [aux_sym__list_plus_repeat1] = STATE(323), + [aux_sym__list_star_repeat1] = STATE(324), + [aux_sym__list_task_repeat1] = STATE(285), + [aux_sym__list_definition_repeat1] = STATE(494), + [aux_sym__list_decimal_period_repeat1] = STATE(495), + [aux_sym__list_decimal_paren_repeat1] = STATE(496), + [aux_sym__list_decimal_parens_repeat1] = STATE(497), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(498), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(499), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(500), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(501), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(502), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(503), + [aux_sym__list_lower_roman_period_repeat1] = STATE(504), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(505), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(506), + [aux_sym__list_upper_roman_period_repeat1] = STATE(507), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(508), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(509), + [aux_sym_table_repeat1] = STATE(67), + [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), - [anon_sym_LBRACK] = ACTIONS(181), + [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACK_CARET] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(11), - [aux_sym_identifier_token1] = ACTIONS(11), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_PERCENT] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(9), + [aux_sym_identifier_token1] = ACTIONS(9), + [aux_sym__inline_token1] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(9), + [anon_sym_PERCENT] = ACTIONS(9), [sym__block_close] = ACTIONS(234), - [sym__newline] = ACTIONS(187), - [sym__heading_begin] = ACTIONS(17), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(189), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(191), - [sym__block_quote_continuation] = ACTIONS(65), - [sym__thematic_break_dash] = ACTIONS(193), - [sym__thematic_break_star] = ACTIONS(193), - [sym__table_header_begin] = ACTIONS(195), - [sym__table_separator_begin] = ACTIONS(197), - [sym__table_row_begin] = ACTIONS(199), + [sym__newline] = ACTIONS(81), + [sym__heading_begin] = ACTIONS(15), + [sym__div_begin] = ACTIONS(17), + [sym__code_block_begin] = ACTIONS(83), + [sym_list_marker_dash] = ACTIONS(21), + [sym_list_marker_star] = ACTIONS(23), + [sym_list_marker_plus] = ACTIONS(25), + [sym__list_marker_task_begin] = ACTIONS(27), + [sym_list_marker_definition] = ACTIONS(29), + [sym_list_marker_decimal_period] = ACTIONS(31), + [sym_list_marker_lower_alpha_period] = ACTIONS(33), + [sym_list_marker_upper_alpha_period] = ACTIONS(35), + [sym_list_marker_lower_roman_period] = ACTIONS(37), + [sym_list_marker_upper_roman_period] = ACTIONS(39), + [sym_list_marker_decimal_paren] = ACTIONS(41), + [sym_list_marker_lower_alpha_paren] = ACTIONS(43), + [sym_list_marker_upper_alpha_paren] = ACTIONS(45), + [sym_list_marker_lower_roman_paren] = ACTIONS(47), + [sym_list_marker_upper_roman_paren] = ACTIONS(49), + [sym_list_marker_decimal_parens] = ACTIONS(51), + [sym_list_marker_lower_alpha_parens] = ACTIONS(53), + [sym_list_marker_upper_alpha_parens] = ACTIONS(55), + [sym_list_marker_lower_roman_parens] = ACTIONS(57), + [sym_list_marker_upper_roman_parens] = ACTIONS(59), + [sym__block_quote_begin] = ACTIONS(85), + [sym__block_quote_continuation] = ACTIONS(63), + [sym__thematic_break_dash] = ACTIONS(87), + [sym__thematic_break_star] = ACTIONS(87), + [sym__table_header_begin] = ACTIONS(89), + [sym__table_separator_begin] = ACTIONS(91), + [sym__table_row_begin] = ACTIONS(93), + [sym__block_attribute_begin] = ACTIONS(95), }, [11] = { - [sym__block_with_heading] = STATE(183), - [sym__block_element] = STATE(183), - [sym_heading] = STATE(183), - [sym_list] = STATE(183), - [sym__list_dash] = STATE(144), - [sym__list_item_dash] = STATE(553), - [sym__list_plus] = STATE(144), - [sym__list_item_plus] = STATE(554), - [sym__list_star] = STATE(144), - [sym__list_item_star] = STATE(556), - [sym__list_task] = STATE(144), - [sym__list_item_task] = STATE(558), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(144), - [sym__list_item_definition] = STATE(769), - [sym__list_decimal_period] = STATE(144), - [sym__list_item_decimal_period] = STATE(776), - [sym__list_decimal_paren] = STATE(144), - [sym__list_item_decimal_paren] = STATE(790), - [sym__list_decimal_parens] = STATE(144), - [sym__list_item_decimal_parens] = STATE(793), - [sym__list_lower_alpha_period] = STATE(144), - [sym__list_item_lower_alpha_period] = STATE(822), - [sym__list_lower_alpha_paren] = STATE(144), - [sym__list_item_lower_alpha_paren] = STATE(684), - [sym__list_lower_alpha_parens] = STATE(144), - [sym__list_item_lower_alpha_parens] = STATE(688), - [sym__list_upper_alpha_period] = STATE(144), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(144), - [sym__list_item_upper_alpha_paren] = STATE(705), - [sym__list_upper_alpha_parens] = STATE(144), - [sym__list_item_upper_alpha_parens] = STATE(711), - [sym__list_lower_roman_period] = STATE(144), - [sym__list_item_lower_roman_period] = STATE(712), - [sym__list_lower_roman_paren] = STATE(144), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(144), - [sym__list_item_lower_roman_parens] = STATE(728), - [sym__list_upper_roman_period] = STATE(144), - [sym__list_item_upper_roman_period] = STATE(734), - [sym__list_upper_roman_paren] = STATE(144), - [sym__list_item_upper_roman_paren] = STATE(830), - [sym__list_upper_roman_parens] = STATE(144), - [sym__list_item_upper_roman_parens] = STATE(725), - [sym_table] = STATE(183), - [sym__table_row] = STATE(66), - [sym_table_header] = STATE(66), - [sym_table_separator] = STATE(66), - [sym_table_row] = STATE(66), - [sym_footnote] = STATE(183), - [sym_footnote_marker_begin] = STATE(1141), - [sym_div] = STATE(183), - [sym__div_marker_begin] = STATE(1057), - [sym_code_block] = STATE(183), - [sym_raw_block] = STATE(183), - [sym_thematic_break] = STATE(183), - [sym_block_quote] = STATE(183), - [sym__block_quote_prefix] = STATE(216), - [sym_link_reference_definition] = STATE(183), - [sym_block_attribute] = STATE(183), - [sym__paragraph] = STATE(183), - [sym__paragraph_content] = STATE(750), - [sym__paragraph_inline_content] = STATE(778), - [sym__inline] = STATE(655), + [sym__block_with_heading] = STATE(168), + [sym__block_element] = STATE(168), + [sym_heading] = STATE(168), + [sym_list] = STATE(168), + [sym__list_dash] = STATE(129), + [sym__list_item_dash] = STATE(645), + [sym__list_plus] = STATE(129), + [sym__list_item_plus] = STATE(661), + [sym__list_star] = STATE(129), + [sym__list_item_star] = STATE(573), + [sym__list_task] = STATE(129), + [sym__list_item_task] = STATE(590), + [sym_list_marker_task] = STATE(43), + [sym__list_definition] = STATE(129), + [sym__list_item_definition] = STATE(740), + [sym__list_decimal_period] = STATE(129), + [sym__list_item_decimal_period] = STATE(743), + [sym__list_decimal_paren] = STATE(129), + [sym__list_item_decimal_paren] = STATE(748), + [sym__list_decimal_parens] = STATE(129), + [sym__list_item_decimal_parens] = STATE(768), + [sym__list_lower_alpha_period] = STATE(129), + [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_lower_alpha_paren] = STATE(129), + [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_lower_alpha_parens] = STATE(129), + [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_upper_alpha_period] = STATE(129), + [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_upper_alpha_paren] = STATE(129), + [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_upper_alpha_parens] = STATE(129), + [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_lower_roman_period] = STATE(129), + [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_lower_roman_paren] = STATE(129), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(129), + [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_upper_roman_period] = STATE(129), + [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_upper_roman_paren] = STATE(129), + [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_upper_roman_parens] = STATE(129), + [sym__list_item_upper_roman_parens] = STATE(819), + [sym_table] = STATE(168), + [sym__table_row] = STATE(67), + [sym_table_header] = STATE(67), + [sym_table_separator] = STATE(67), + [sym_table_row] = STATE(67), + [sym_footnote] = STATE(168), + [sym_footnote_marker_begin] = STATE(894), + [sym_div] = STATE(168), + [sym__div_marker_begin] = STATE(1056), + [sym_code_block] = STATE(168), + [sym_raw_block] = STATE(168), + [sym_thematic_break] = STATE(168), + [sym_block_quote] = STATE(168), + [sym__block_quote_prefix] = STATE(211), + [sym_link_reference_definition] = STATE(168), + [sym_block_attribute] = STATE(168), + [sym__paragraph] = STATE(168), + [sym__paragraph_content] = STATE(784), + [sym__paragraph_inline_content] = STATE(837), + [sym__inline] = STATE(656), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(334), - [aux_sym__list_plus_repeat1] = STATE(335), - [aux_sym__list_star_repeat1] = STATE(336), - [aux_sym__list_task_repeat1] = STATE(309), - [aux_sym__list_definition_repeat1] = STATE(425), - [aux_sym__list_decimal_period_repeat1] = STATE(426), - [aux_sym__list_decimal_paren_repeat1] = STATE(427), - [aux_sym__list_decimal_parens_repeat1] = STATE(428), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(429), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(430), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(431), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(432), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(433), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(434), - [aux_sym__list_lower_roman_period_repeat1] = STATE(435), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(436), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(437), - [aux_sym__list_upper_roman_period_repeat1] = STATE(438), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(439), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(440), - [aux_sym_table_repeat1] = STATE(66), - [aux_sym_div_repeat1] = STATE(13), - [aux_sym__block_quote_prefix_repeat1] = STATE(231), + [aux_sym__list_dash_repeat1] = STATE(322), + [aux_sym__list_plus_repeat1] = STATE(323), + [aux_sym__list_star_repeat1] = STATE(324), + [aux_sym__list_task_repeat1] = STATE(285), + [aux_sym__list_definition_repeat1] = STATE(494), + [aux_sym__list_decimal_period_repeat1] = STATE(495), + [aux_sym__list_decimal_paren_repeat1] = STATE(496), + [aux_sym__list_decimal_parens_repeat1] = STATE(497), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(498), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(499), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(500), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(501), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(502), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(503), + [aux_sym__list_lower_roman_period_repeat1] = STATE(504), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(505), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(506), + [aux_sym__list_upper_roman_period_repeat1] = STATE(507), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(508), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(509), + [aux_sym_table_repeat1] = STATE(67), + [aux_sym_div_repeat1] = STATE(12), + [aux_sym__block_quote_prefix_repeat1] = STATE(226), [aux_sym__inline_repeat1] = STATE(273), - [anon_sym_LBRACK] = ACTIONS(181), + [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACK_CARET] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(11), - [aux_sym_identifier_token1] = ACTIONS(11), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_PERCENT] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(9), + [aux_sym_identifier_token1] = ACTIONS(9), + [aux_sym__inline_token1] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(9), + [anon_sym_PERCENT] = ACTIONS(9), [sym__block_close] = ACTIONS(236), [sym__newline] = ACTIONS(238), - [sym__heading_begin] = ACTIONS(17), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(189), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(191), + [sym__heading_begin] = ACTIONS(15), + [sym__div_begin] = ACTIONS(17), + [sym__code_block_begin] = ACTIONS(83), + [sym_list_marker_dash] = ACTIONS(21), + [sym_list_marker_star] = ACTIONS(23), + [sym_list_marker_plus] = ACTIONS(25), + [sym__list_marker_task_begin] = ACTIONS(27), + [sym_list_marker_definition] = ACTIONS(29), + [sym_list_marker_decimal_period] = ACTIONS(31), + [sym_list_marker_lower_alpha_period] = ACTIONS(33), + [sym_list_marker_upper_alpha_period] = ACTIONS(35), + [sym_list_marker_lower_roman_period] = ACTIONS(37), + [sym_list_marker_upper_roman_period] = ACTIONS(39), + [sym_list_marker_decimal_paren] = ACTIONS(41), + [sym_list_marker_lower_alpha_paren] = ACTIONS(43), + [sym_list_marker_upper_alpha_paren] = ACTIONS(45), + [sym_list_marker_lower_roman_paren] = ACTIONS(47), + [sym_list_marker_upper_roman_paren] = ACTIONS(49), + [sym_list_marker_decimal_parens] = ACTIONS(51), + [sym_list_marker_lower_alpha_parens] = ACTIONS(53), + [sym_list_marker_upper_alpha_parens] = ACTIONS(55), + [sym_list_marker_lower_roman_parens] = ACTIONS(57), + [sym_list_marker_upper_roman_parens] = ACTIONS(59), + [sym__block_quote_begin] = ACTIONS(85), [sym__block_quote_continuation] = ACTIONS(240), - [sym__thematic_break_dash] = ACTIONS(193), - [sym__thematic_break_star] = ACTIONS(193), - [sym__table_header_begin] = ACTIONS(195), - [sym__table_separator_begin] = ACTIONS(197), - [sym__table_row_begin] = ACTIONS(199), + [sym__thematic_break_dash] = ACTIONS(87), + [sym__thematic_break_star] = ACTIONS(87), + [sym__table_header_begin] = ACTIONS(89), + [sym__table_separator_begin] = ACTIONS(91), + [sym__table_row_begin] = ACTIONS(93), + [sym__block_attribute_begin] = ACTIONS(95), }, [12] = { - [sym__block_with_heading] = STATE(183), - [sym__block_element] = STATE(183), - [sym_heading] = STATE(183), - [sym_list] = STATE(183), - [sym__list_dash] = STATE(144), - [sym__list_item_dash] = STATE(553), - [sym__list_plus] = STATE(144), - [sym__list_item_plus] = STATE(554), - [sym__list_star] = STATE(144), - [sym__list_item_star] = STATE(556), - [sym__list_task] = STATE(144), - [sym__list_item_task] = STATE(558), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(144), - [sym__list_item_definition] = STATE(769), - [sym__list_decimal_period] = STATE(144), - [sym__list_item_decimal_period] = STATE(776), - [sym__list_decimal_paren] = STATE(144), - [sym__list_item_decimal_paren] = STATE(790), - [sym__list_decimal_parens] = STATE(144), - [sym__list_item_decimal_parens] = STATE(793), - [sym__list_lower_alpha_period] = STATE(144), - [sym__list_item_lower_alpha_period] = STATE(822), - [sym__list_lower_alpha_paren] = STATE(144), - [sym__list_item_lower_alpha_paren] = STATE(684), - [sym__list_lower_alpha_parens] = STATE(144), - [sym__list_item_lower_alpha_parens] = STATE(688), - [sym__list_upper_alpha_period] = STATE(144), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(144), - [sym__list_item_upper_alpha_paren] = STATE(705), - [sym__list_upper_alpha_parens] = STATE(144), - [sym__list_item_upper_alpha_parens] = STATE(711), - [sym__list_lower_roman_period] = STATE(144), - [sym__list_item_lower_roman_period] = STATE(712), - [sym__list_lower_roman_paren] = STATE(144), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(144), - [sym__list_item_lower_roman_parens] = STATE(728), - [sym__list_upper_roman_period] = STATE(144), - [sym__list_item_upper_roman_period] = STATE(734), - [sym__list_upper_roman_paren] = STATE(144), - [sym__list_item_upper_roman_paren] = STATE(830), - [sym__list_upper_roman_parens] = STATE(144), - [sym__list_item_upper_roman_parens] = STATE(725), - [sym_table] = STATE(183), - [sym__table_row] = STATE(66), - [sym_table_header] = STATE(66), - [sym_table_separator] = STATE(66), - [sym_table_row] = STATE(66), - [sym_footnote] = STATE(183), - [sym_footnote_marker_begin] = STATE(1141), - [sym_div] = STATE(183), - [sym__div_marker_begin] = STATE(1057), - [sym_code_block] = STATE(183), - [sym_raw_block] = STATE(183), - [sym_thematic_break] = STATE(183), - [sym_block_quote] = STATE(183), - [sym__block_quote_prefix] = STATE(219), - [sym_link_reference_definition] = STATE(183), - [sym_block_attribute] = STATE(183), - [sym__paragraph] = STATE(183), - [sym__paragraph_content] = STATE(750), - [sym__paragraph_inline_content] = STATE(778), - [sym__inline] = STATE(655), + [sym__block_with_heading] = STATE(168), + [sym__block_element] = STATE(168), + [sym_heading] = STATE(168), + [sym_list] = STATE(168), + [sym__list_dash] = STATE(129), + [sym__list_item_dash] = STATE(645), + [sym__list_plus] = STATE(129), + [sym__list_item_plus] = STATE(661), + [sym__list_star] = STATE(129), + [sym__list_item_star] = STATE(573), + [sym__list_task] = STATE(129), + [sym__list_item_task] = STATE(590), + [sym_list_marker_task] = STATE(43), + [sym__list_definition] = STATE(129), + [sym__list_item_definition] = STATE(740), + [sym__list_decimal_period] = STATE(129), + [sym__list_item_decimal_period] = STATE(743), + [sym__list_decimal_paren] = STATE(129), + [sym__list_item_decimal_paren] = STATE(748), + [sym__list_decimal_parens] = STATE(129), + [sym__list_item_decimal_parens] = STATE(768), + [sym__list_lower_alpha_period] = STATE(129), + [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_lower_alpha_paren] = STATE(129), + [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_lower_alpha_parens] = STATE(129), + [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_upper_alpha_period] = STATE(129), + [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_upper_alpha_paren] = STATE(129), + [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_upper_alpha_parens] = STATE(129), + [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_lower_roman_period] = STATE(129), + [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_lower_roman_paren] = STATE(129), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(129), + [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_upper_roman_period] = STATE(129), + [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_upper_roman_paren] = STATE(129), + [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_upper_roman_parens] = STATE(129), + [sym__list_item_upper_roman_parens] = STATE(819), + [sym_table] = STATE(168), + [sym__table_row] = STATE(67), + [sym_table_header] = STATE(67), + [sym_table_separator] = STATE(67), + [sym_table_row] = STATE(67), + [sym_footnote] = STATE(168), + [sym_footnote_marker_begin] = STATE(894), + [sym_div] = STATE(168), + [sym__div_marker_begin] = STATE(1056), + [sym_code_block] = STATE(168), + [sym_raw_block] = STATE(168), + [sym_thematic_break] = STATE(168), + [sym_block_quote] = STATE(168), + [sym__block_quote_prefix] = STATE(213), + [sym_link_reference_definition] = STATE(168), + [sym_block_attribute] = STATE(168), + [sym__paragraph] = STATE(168), + [sym__paragraph_content] = STATE(784), + [sym__paragraph_inline_content] = STATE(837), + [sym__inline] = STATE(656), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(334), - [aux_sym__list_plus_repeat1] = STATE(335), - [aux_sym__list_star_repeat1] = STATE(336), - [aux_sym__list_task_repeat1] = STATE(309), - [aux_sym__list_definition_repeat1] = STATE(425), - [aux_sym__list_decimal_period_repeat1] = STATE(426), - [aux_sym__list_decimal_paren_repeat1] = STATE(427), - [aux_sym__list_decimal_parens_repeat1] = STATE(428), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(429), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(430), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(431), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(432), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(433), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(434), - [aux_sym__list_lower_roman_period_repeat1] = STATE(435), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(436), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(437), - [aux_sym__list_upper_roman_period_repeat1] = STATE(438), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(439), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(440), - [aux_sym_table_repeat1] = STATE(66), - [aux_sym_div_repeat1] = STATE(14), - [aux_sym__block_quote_prefix_repeat1] = STATE(231), + [aux_sym__list_dash_repeat1] = STATE(322), + [aux_sym__list_plus_repeat1] = STATE(323), + [aux_sym__list_star_repeat1] = STATE(324), + [aux_sym__list_task_repeat1] = STATE(285), + [aux_sym__list_definition_repeat1] = STATE(494), + [aux_sym__list_decimal_period_repeat1] = STATE(495), + [aux_sym__list_decimal_paren_repeat1] = STATE(496), + [aux_sym__list_decimal_parens_repeat1] = STATE(497), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(498), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(499), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(500), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(501), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(502), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(503), + [aux_sym__list_lower_roman_period_repeat1] = STATE(504), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(505), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(506), + [aux_sym__list_upper_roman_period_repeat1] = STATE(507), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(508), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(509), + [aux_sym_table_repeat1] = STATE(67), + [aux_sym_div_repeat1] = STATE(13), + [aux_sym__block_quote_prefix_repeat1] = STATE(226), [aux_sym__inline_repeat1] = STATE(273), - [anon_sym_LBRACK] = ACTIONS(181), + [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACK_CARET] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(11), - [aux_sym_identifier_token1] = ACTIONS(11), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_PERCENT] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(9), + [aux_sym_identifier_token1] = ACTIONS(9), + [aux_sym__inline_token1] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(9), + [anon_sym_PERCENT] = ACTIONS(9), [sym__block_close] = ACTIONS(242), [sym__newline] = ACTIONS(238), - [sym__heading_begin] = ACTIONS(17), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(189), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(191), + [sym__heading_begin] = ACTIONS(15), + [sym__div_begin] = ACTIONS(17), + [sym__code_block_begin] = ACTIONS(83), + [sym_list_marker_dash] = ACTIONS(21), + [sym_list_marker_star] = ACTIONS(23), + [sym_list_marker_plus] = ACTIONS(25), + [sym__list_marker_task_begin] = ACTIONS(27), + [sym_list_marker_definition] = ACTIONS(29), + [sym_list_marker_decimal_period] = ACTIONS(31), + [sym_list_marker_lower_alpha_period] = ACTIONS(33), + [sym_list_marker_upper_alpha_period] = ACTIONS(35), + [sym_list_marker_lower_roman_period] = ACTIONS(37), + [sym_list_marker_upper_roman_period] = ACTIONS(39), + [sym_list_marker_decimal_paren] = ACTIONS(41), + [sym_list_marker_lower_alpha_paren] = ACTIONS(43), + [sym_list_marker_upper_alpha_paren] = ACTIONS(45), + [sym_list_marker_lower_roman_paren] = ACTIONS(47), + [sym_list_marker_upper_roman_paren] = ACTIONS(49), + [sym_list_marker_decimal_parens] = ACTIONS(51), + [sym_list_marker_lower_alpha_parens] = ACTIONS(53), + [sym_list_marker_upper_alpha_parens] = ACTIONS(55), + [sym_list_marker_lower_roman_parens] = ACTIONS(57), + [sym_list_marker_upper_roman_parens] = ACTIONS(59), + [sym__block_quote_begin] = ACTIONS(85), [sym__block_quote_continuation] = ACTIONS(240), - [sym__thematic_break_dash] = ACTIONS(193), - [sym__thematic_break_star] = ACTIONS(193), - [sym__table_header_begin] = ACTIONS(195), - [sym__table_separator_begin] = ACTIONS(197), - [sym__table_row_begin] = ACTIONS(199), + [sym__thematic_break_dash] = ACTIONS(87), + [sym__thematic_break_star] = ACTIONS(87), + [sym__table_header_begin] = ACTIONS(89), + [sym__table_separator_begin] = ACTIONS(91), + [sym__table_row_begin] = ACTIONS(93), + [sym__block_attribute_begin] = ACTIONS(95), }, [13] = { - [sym__block_with_heading] = STATE(183), - [sym__block_element] = STATE(183), - [sym_heading] = STATE(183), - [sym_list] = STATE(183), - [sym__list_dash] = STATE(144), - [sym__list_item_dash] = STATE(553), - [sym__list_plus] = STATE(144), - [sym__list_item_plus] = STATE(554), - [sym__list_star] = STATE(144), - [sym__list_item_star] = STATE(556), - [sym__list_task] = STATE(144), - [sym__list_item_task] = STATE(558), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(144), - [sym__list_item_definition] = STATE(769), - [sym__list_decimal_period] = STATE(144), - [sym__list_item_decimal_period] = STATE(776), - [sym__list_decimal_paren] = STATE(144), - [sym__list_item_decimal_paren] = STATE(790), - [sym__list_decimal_parens] = STATE(144), - [sym__list_item_decimal_parens] = STATE(793), - [sym__list_lower_alpha_period] = STATE(144), - [sym__list_item_lower_alpha_period] = STATE(822), - [sym__list_lower_alpha_paren] = STATE(144), - [sym__list_item_lower_alpha_paren] = STATE(684), - [sym__list_lower_alpha_parens] = STATE(144), - [sym__list_item_lower_alpha_parens] = STATE(688), - [sym__list_upper_alpha_period] = STATE(144), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(144), - [sym__list_item_upper_alpha_paren] = STATE(705), - [sym__list_upper_alpha_parens] = STATE(144), - [sym__list_item_upper_alpha_parens] = STATE(711), - [sym__list_lower_roman_period] = STATE(144), - [sym__list_item_lower_roman_period] = STATE(712), - [sym__list_lower_roman_paren] = STATE(144), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(144), - [sym__list_item_lower_roman_parens] = STATE(728), - [sym__list_upper_roman_period] = STATE(144), - [sym__list_item_upper_roman_period] = STATE(734), - [sym__list_upper_roman_paren] = STATE(144), - [sym__list_item_upper_roman_paren] = STATE(830), - [sym__list_upper_roman_parens] = STATE(144), - [sym__list_item_upper_roman_parens] = STATE(725), - [sym_table] = STATE(183), - [sym__table_row] = STATE(66), - [sym_table_header] = STATE(66), - [sym_table_separator] = STATE(66), - [sym_table_row] = STATE(66), - [sym_footnote] = STATE(183), - [sym_footnote_marker_begin] = STATE(1141), - [sym_div] = STATE(183), - [sym__div_marker_begin] = STATE(1057), - [sym_code_block] = STATE(183), - [sym_raw_block] = STATE(183), - [sym_thematic_break] = STATE(183), - [sym_block_quote] = STATE(183), - [sym__block_quote_prefix] = STATE(220), - [sym_link_reference_definition] = STATE(183), - [sym_block_attribute] = STATE(183), - [sym__paragraph] = STATE(183), - [sym__paragraph_content] = STATE(750), - [sym__paragraph_inline_content] = STATE(778), - [sym__inline] = STATE(655), + [sym__block_with_heading] = STATE(168), + [sym__block_element] = STATE(168), + [sym_heading] = STATE(168), + [sym_list] = STATE(168), + [sym__list_dash] = STATE(129), + [sym__list_item_dash] = STATE(645), + [sym__list_plus] = STATE(129), + [sym__list_item_plus] = STATE(661), + [sym__list_star] = STATE(129), + [sym__list_item_star] = STATE(573), + [sym__list_task] = STATE(129), + [sym__list_item_task] = STATE(590), + [sym_list_marker_task] = STATE(43), + [sym__list_definition] = STATE(129), + [sym__list_item_definition] = STATE(740), + [sym__list_decimal_period] = STATE(129), + [sym__list_item_decimal_period] = STATE(743), + [sym__list_decimal_paren] = STATE(129), + [sym__list_item_decimal_paren] = STATE(748), + [sym__list_decimal_parens] = STATE(129), + [sym__list_item_decimal_parens] = STATE(768), + [sym__list_lower_alpha_period] = STATE(129), + [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_lower_alpha_paren] = STATE(129), + [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_lower_alpha_parens] = STATE(129), + [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_upper_alpha_period] = STATE(129), + [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_upper_alpha_paren] = STATE(129), + [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_upper_alpha_parens] = STATE(129), + [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_lower_roman_period] = STATE(129), + [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_lower_roman_paren] = STATE(129), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(129), + [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_upper_roman_period] = STATE(129), + [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_upper_roman_paren] = STATE(129), + [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_upper_roman_parens] = STATE(129), + [sym__list_item_upper_roman_parens] = STATE(819), + [sym_table] = STATE(168), + [sym__table_row] = STATE(67), + [sym_table_header] = STATE(67), + [sym_table_separator] = STATE(67), + [sym_table_row] = STATE(67), + [sym_footnote] = STATE(168), + [sym_footnote_marker_begin] = STATE(894), + [sym_div] = STATE(168), + [sym__div_marker_begin] = STATE(1056), + [sym_code_block] = STATE(168), + [sym_raw_block] = STATE(168), + [sym_thematic_break] = STATE(168), + [sym_block_quote] = STATE(168), + [sym__block_quote_prefix] = STATE(223), + [sym_link_reference_definition] = STATE(168), + [sym_block_attribute] = STATE(168), + [sym__paragraph] = STATE(168), + [sym__paragraph_content] = STATE(784), + [sym__paragraph_inline_content] = STATE(837), + [sym__inline] = STATE(656), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(334), - [aux_sym__list_plus_repeat1] = STATE(335), - [aux_sym__list_star_repeat1] = STATE(336), - [aux_sym__list_task_repeat1] = STATE(309), - [aux_sym__list_definition_repeat1] = STATE(425), - [aux_sym__list_decimal_period_repeat1] = STATE(426), - [aux_sym__list_decimal_paren_repeat1] = STATE(427), - [aux_sym__list_decimal_parens_repeat1] = STATE(428), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(429), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(430), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(431), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(432), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(433), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(434), - [aux_sym__list_lower_roman_period_repeat1] = STATE(435), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(436), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(437), - [aux_sym__list_upper_roman_period_repeat1] = STATE(438), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(439), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(440), - [aux_sym_table_repeat1] = STATE(66), - [aux_sym_div_repeat1] = STATE(14), - [aux_sym__block_quote_prefix_repeat1] = STATE(231), + [aux_sym__list_dash_repeat1] = STATE(322), + [aux_sym__list_plus_repeat1] = STATE(323), + [aux_sym__list_star_repeat1] = STATE(324), + [aux_sym__list_task_repeat1] = STATE(285), + [aux_sym__list_definition_repeat1] = STATE(494), + [aux_sym__list_decimal_period_repeat1] = STATE(495), + [aux_sym__list_decimal_paren_repeat1] = STATE(496), + [aux_sym__list_decimal_parens_repeat1] = STATE(497), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(498), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(499), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(500), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(501), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(502), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(503), + [aux_sym__list_lower_roman_period_repeat1] = STATE(504), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(505), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(506), + [aux_sym__list_upper_roman_period_repeat1] = STATE(507), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(508), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(509), + [aux_sym_table_repeat1] = STATE(67), + [aux_sym_div_repeat1] = STATE(13), + [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), - [anon_sym_LBRACK] = ACTIONS(181), - [anon_sym_LBRACK_CARET] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(11), - [aux_sym_identifier_token1] = ACTIONS(11), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_PERCENT] = ACTIONS(11), - [sym__block_close] = ACTIONS(244), - [sym__newline] = ACTIONS(238), - [sym__heading_begin] = ACTIONS(17), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(189), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(191), - [sym__block_quote_continuation] = ACTIONS(240), - [sym__thematic_break_dash] = ACTIONS(193), - [sym__thematic_break_star] = ACTIONS(193), - [sym__table_header_begin] = ACTIONS(195), - [sym__table_separator_begin] = ACTIONS(197), - [sym__table_row_begin] = ACTIONS(199), + [anon_sym_LBRACK] = ACTIONS(244), + [anon_sym_LBRACK_CARET] = ACTIONS(247), + [anon_sym_DOT] = ACTIONS(250), + [aux_sym_identifier_token1] = ACTIONS(250), + [aux_sym__inline_token1] = ACTIONS(250), + [anon_sym_LBRACE] = ACTIONS(250), + [anon_sym_PERCENT] = ACTIONS(250), + [sym__block_close] = ACTIONS(253), + [sym__newline] = ACTIONS(255), + [sym__heading_begin] = ACTIONS(258), + [sym__div_begin] = ACTIONS(261), + [sym__code_block_begin] = ACTIONS(264), + [sym_list_marker_dash] = ACTIONS(267), + [sym_list_marker_star] = ACTIONS(270), + [sym_list_marker_plus] = ACTIONS(273), + [sym__list_marker_task_begin] = ACTIONS(276), + [sym_list_marker_definition] = ACTIONS(279), + [sym_list_marker_decimal_period] = ACTIONS(282), + [sym_list_marker_lower_alpha_period] = ACTIONS(285), + [sym_list_marker_upper_alpha_period] = ACTIONS(288), + [sym_list_marker_lower_roman_period] = ACTIONS(291), + [sym_list_marker_upper_roman_period] = ACTIONS(294), + [sym_list_marker_decimal_paren] = ACTIONS(297), + [sym_list_marker_lower_alpha_paren] = ACTIONS(300), + [sym_list_marker_upper_alpha_paren] = ACTIONS(303), + [sym_list_marker_lower_roman_paren] = ACTIONS(306), + [sym_list_marker_upper_roman_paren] = ACTIONS(309), + [sym_list_marker_decimal_parens] = ACTIONS(312), + [sym_list_marker_lower_alpha_parens] = ACTIONS(315), + [sym_list_marker_upper_alpha_parens] = ACTIONS(318), + [sym_list_marker_lower_roman_parens] = ACTIONS(321), + [sym_list_marker_upper_roman_parens] = ACTIONS(324), + [sym__block_quote_begin] = ACTIONS(327), + [sym__block_quote_continuation] = ACTIONS(330), + [sym__thematic_break_dash] = ACTIONS(333), + [sym__thematic_break_star] = ACTIONS(333), + [sym__table_header_begin] = ACTIONS(336), + [sym__table_separator_begin] = ACTIONS(339), + [sym__table_row_begin] = ACTIONS(342), + [sym__block_attribute_begin] = ACTIONS(345), }, [14] = { - [sym__block_with_heading] = STATE(183), - [sym__block_element] = STATE(183), - [sym_heading] = STATE(183), - [sym_list] = STATE(183), - [sym__list_dash] = STATE(144), - [sym__list_item_dash] = STATE(553), - [sym__list_plus] = STATE(144), - [sym__list_item_plus] = STATE(554), - [sym__list_star] = STATE(144), - [sym__list_item_star] = STATE(556), - [sym__list_task] = STATE(144), - [sym__list_item_task] = STATE(558), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(144), - [sym__list_item_definition] = STATE(769), - [sym__list_decimal_period] = STATE(144), - [sym__list_item_decimal_period] = STATE(776), - [sym__list_decimal_paren] = STATE(144), - [sym__list_item_decimal_paren] = STATE(790), - [sym__list_decimal_parens] = STATE(144), - [sym__list_item_decimal_parens] = STATE(793), - [sym__list_lower_alpha_period] = STATE(144), - [sym__list_item_lower_alpha_period] = STATE(822), - [sym__list_lower_alpha_paren] = STATE(144), - [sym__list_item_lower_alpha_paren] = STATE(684), - [sym__list_lower_alpha_parens] = STATE(144), - [sym__list_item_lower_alpha_parens] = STATE(688), - [sym__list_upper_alpha_period] = STATE(144), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(144), - [sym__list_item_upper_alpha_paren] = STATE(705), - [sym__list_upper_alpha_parens] = STATE(144), - [sym__list_item_upper_alpha_parens] = STATE(711), - [sym__list_lower_roman_period] = STATE(144), - [sym__list_item_lower_roman_period] = STATE(712), - [sym__list_lower_roman_paren] = STATE(144), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(144), - [sym__list_item_lower_roman_parens] = STATE(728), - [sym__list_upper_roman_period] = STATE(144), - [sym__list_item_upper_roman_period] = STATE(734), - [sym__list_upper_roman_paren] = STATE(144), - [sym__list_item_upper_roman_paren] = STATE(830), - [sym__list_upper_roman_parens] = STATE(144), - [sym__list_item_upper_roman_parens] = STATE(725), - [sym_table] = STATE(183), - [sym__table_row] = STATE(66), - [sym_table_header] = STATE(66), - [sym_table_separator] = STATE(66), - [sym_table_row] = STATE(66), - [sym_footnote] = STATE(183), - [sym_footnote_marker_begin] = STATE(1141), - [sym_div] = STATE(183), - [sym__div_marker_begin] = STATE(1057), - [sym_code_block] = STATE(183), - [sym_raw_block] = STATE(183), - [sym_thematic_break] = STATE(183), - [sym_block_quote] = STATE(183), - [sym__block_quote_prefix] = STATE(225), - [sym_link_reference_definition] = STATE(183), - [sym_block_attribute] = STATE(183), - [sym__paragraph] = STATE(183), - [sym__paragraph_content] = STATE(750), - [sym__paragraph_inline_content] = STATE(778), - [sym__inline] = STATE(655), + [sym__block_with_heading] = STATE(168), + [sym__block_element] = STATE(168), + [sym_heading] = STATE(168), + [sym_list] = STATE(168), + [sym__list_dash] = STATE(129), + [sym__list_item_dash] = STATE(645), + [sym__list_plus] = STATE(129), + [sym__list_item_plus] = STATE(661), + [sym__list_star] = STATE(129), + [sym__list_item_star] = STATE(573), + [sym__list_task] = STATE(129), + [sym__list_item_task] = STATE(590), + [sym_list_marker_task] = STATE(43), + [sym__list_definition] = STATE(129), + [sym__list_item_definition] = STATE(740), + [sym__list_decimal_period] = STATE(129), + [sym__list_item_decimal_period] = STATE(743), + [sym__list_decimal_paren] = STATE(129), + [sym__list_item_decimal_paren] = STATE(748), + [sym__list_decimal_parens] = STATE(129), + [sym__list_item_decimal_parens] = STATE(768), + [sym__list_lower_alpha_period] = STATE(129), + [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_lower_alpha_paren] = STATE(129), + [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_lower_alpha_parens] = STATE(129), + [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_upper_alpha_period] = STATE(129), + [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_upper_alpha_paren] = STATE(129), + [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_upper_alpha_parens] = STATE(129), + [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_lower_roman_period] = STATE(129), + [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_lower_roman_paren] = STATE(129), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(129), + [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_upper_roman_period] = STATE(129), + [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_upper_roman_paren] = STATE(129), + [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_upper_roman_parens] = STATE(129), + [sym__list_item_upper_roman_parens] = STATE(819), + [sym_table] = STATE(168), + [sym__table_row] = STATE(67), + [sym_table_header] = STATE(67), + [sym_table_separator] = STATE(67), + [sym_table_row] = STATE(67), + [sym_footnote] = STATE(168), + [sym_footnote_marker_begin] = STATE(894), + [sym_div] = STATE(168), + [sym__div_marker_begin] = STATE(1056), + [sym_code_block] = STATE(168), + [sym_raw_block] = STATE(168), + [sym_thematic_break] = STATE(168), + [sym_block_quote] = STATE(168), + [sym__block_quote_prefix] = STATE(212), + [sym_link_reference_definition] = STATE(168), + [sym_block_attribute] = STATE(168), + [sym__paragraph] = STATE(168), + [sym__paragraph_content] = STATE(784), + [sym__paragraph_inline_content] = STATE(837), + [sym__inline] = STATE(656), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(334), - [aux_sym__list_plus_repeat1] = STATE(335), - [aux_sym__list_star_repeat1] = STATE(336), - [aux_sym__list_task_repeat1] = STATE(309), - [aux_sym__list_definition_repeat1] = STATE(425), - [aux_sym__list_decimal_period_repeat1] = STATE(426), - [aux_sym__list_decimal_paren_repeat1] = STATE(427), - [aux_sym__list_decimal_parens_repeat1] = STATE(428), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(429), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(430), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(431), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(432), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(433), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(434), - [aux_sym__list_lower_roman_period_repeat1] = STATE(435), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(436), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(437), - [aux_sym__list_upper_roman_period_repeat1] = STATE(438), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(439), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(440), - [aux_sym_table_repeat1] = STATE(66), - [aux_sym_div_repeat1] = STATE(14), - [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__list_dash_repeat1] = STATE(322), + [aux_sym__list_plus_repeat1] = STATE(323), + [aux_sym__list_star_repeat1] = STATE(324), + [aux_sym__list_task_repeat1] = STATE(285), + [aux_sym__list_definition_repeat1] = STATE(494), + [aux_sym__list_decimal_period_repeat1] = STATE(495), + [aux_sym__list_decimal_paren_repeat1] = STATE(496), + [aux_sym__list_decimal_parens_repeat1] = STATE(497), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(498), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(499), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(500), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(501), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(502), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(503), + [aux_sym__list_lower_roman_period_repeat1] = STATE(504), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(505), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(506), + [aux_sym__list_upper_roman_period_repeat1] = STATE(507), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(508), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(509), + [aux_sym_table_repeat1] = STATE(67), + [aux_sym_div_repeat1] = STATE(15), + [aux_sym__block_quote_prefix_repeat1] = STATE(226), [aux_sym__inline_repeat1] = STATE(273), - [anon_sym_LBRACK] = ACTIONS(246), - [anon_sym_LBRACK_CARET] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(252), - [anon_sym_DOT] = ACTIONS(255), - [aux_sym_identifier_token1] = ACTIONS(255), - [aux_sym__inline_token1] = ACTIONS(255), - [anon_sym_PERCENT] = ACTIONS(255), - [sym__block_close] = ACTIONS(258), - [sym__newline] = ACTIONS(260), - [sym__heading_begin] = ACTIONS(263), - [sym__div_begin] = ACTIONS(266), - [sym__code_block_begin] = ACTIONS(269), - [sym_list_marker_dash] = ACTIONS(272), - [sym_list_marker_star] = ACTIONS(275), - [sym_list_marker_plus] = ACTIONS(278), - [sym__list_marker_task_begin] = ACTIONS(281), - [sym_list_marker_definition] = ACTIONS(284), - [sym_list_marker_decimal_period] = ACTIONS(287), - [sym_list_marker_lower_alpha_period] = ACTIONS(290), - [sym_list_marker_upper_alpha_period] = ACTIONS(293), - [sym_list_marker_lower_roman_period] = ACTIONS(296), - [sym_list_marker_upper_roman_period] = ACTIONS(299), - [sym_list_marker_decimal_paren] = ACTIONS(302), - [sym_list_marker_lower_alpha_paren] = ACTIONS(305), - [sym_list_marker_upper_alpha_paren] = ACTIONS(308), - [sym_list_marker_lower_roman_paren] = ACTIONS(311), - [sym_list_marker_upper_roman_paren] = ACTIONS(314), - [sym_list_marker_decimal_parens] = ACTIONS(317), - [sym_list_marker_lower_alpha_parens] = ACTIONS(320), - [sym_list_marker_upper_alpha_parens] = ACTIONS(323), - [sym_list_marker_lower_roman_parens] = ACTIONS(326), - [sym_list_marker_upper_roman_parens] = ACTIONS(329), - [sym__block_quote_begin] = ACTIONS(332), - [sym__block_quote_continuation] = ACTIONS(335), - [sym__thematic_break_dash] = ACTIONS(338), - [sym__thematic_break_star] = ACTIONS(338), - [sym__table_header_begin] = ACTIONS(341), - [sym__table_separator_begin] = ACTIONS(344), - [sym__table_row_begin] = ACTIONS(347), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_LBRACK_CARET] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(9), + [aux_sym_identifier_token1] = ACTIONS(9), + [aux_sym__inline_token1] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(9), + [anon_sym_PERCENT] = ACTIONS(9), + [sym__block_close] = ACTIONS(348), + [sym__newline] = ACTIONS(238), + [sym__heading_begin] = ACTIONS(15), + [sym__div_begin] = ACTIONS(17), + [sym__code_block_begin] = ACTIONS(83), + [sym_list_marker_dash] = ACTIONS(21), + [sym_list_marker_star] = ACTIONS(23), + [sym_list_marker_plus] = ACTIONS(25), + [sym__list_marker_task_begin] = ACTIONS(27), + [sym_list_marker_definition] = ACTIONS(29), + [sym_list_marker_decimal_period] = ACTIONS(31), + [sym_list_marker_lower_alpha_period] = ACTIONS(33), + [sym_list_marker_upper_alpha_period] = ACTIONS(35), + [sym_list_marker_lower_roman_period] = ACTIONS(37), + [sym_list_marker_upper_roman_period] = ACTIONS(39), + [sym_list_marker_decimal_paren] = ACTIONS(41), + [sym_list_marker_lower_alpha_paren] = ACTIONS(43), + [sym_list_marker_upper_alpha_paren] = ACTIONS(45), + [sym_list_marker_lower_roman_paren] = ACTIONS(47), + [sym_list_marker_upper_roman_paren] = ACTIONS(49), + [sym_list_marker_decimal_parens] = ACTIONS(51), + [sym_list_marker_lower_alpha_parens] = ACTIONS(53), + [sym_list_marker_upper_alpha_parens] = ACTIONS(55), + [sym_list_marker_lower_roman_parens] = ACTIONS(57), + [sym_list_marker_upper_roman_parens] = ACTIONS(59), + [sym__block_quote_begin] = ACTIONS(85), + [sym__block_quote_continuation] = ACTIONS(240), + [sym__thematic_break_dash] = ACTIONS(87), + [sym__thematic_break_star] = ACTIONS(87), + [sym__table_header_begin] = ACTIONS(89), + [sym__table_separator_begin] = ACTIONS(91), + [sym__table_row_begin] = ACTIONS(93), + [sym__block_attribute_begin] = ACTIONS(95), }, [15] = { - [sym__block_with_heading] = STATE(183), - [sym__block_element] = STATE(183), - [sym_heading] = STATE(183), - [sym_list] = STATE(183), - [sym__list_dash] = STATE(144), - [sym__list_item_dash] = STATE(553), - [sym__list_plus] = STATE(144), - [sym__list_item_plus] = STATE(554), - [sym__list_star] = STATE(144), - [sym__list_item_star] = STATE(556), - [sym__list_task] = STATE(144), - [sym__list_item_task] = STATE(558), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(144), - [sym__list_item_definition] = STATE(769), - [sym__list_decimal_period] = STATE(144), - [sym__list_item_decimal_period] = STATE(776), - [sym__list_decimal_paren] = STATE(144), - [sym__list_item_decimal_paren] = STATE(790), - [sym__list_decimal_parens] = STATE(144), - [sym__list_item_decimal_parens] = STATE(793), - [sym__list_lower_alpha_period] = STATE(144), - [sym__list_item_lower_alpha_period] = STATE(822), - [sym__list_lower_alpha_paren] = STATE(144), - [sym__list_item_lower_alpha_paren] = STATE(684), - [sym__list_lower_alpha_parens] = STATE(144), - [sym__list_item_lower_alpha_parens] = STATE(688), - [sym__list_upper_alpha_period] = STATE(144), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(144), - [sym__list_item_upper_alpha_paren] = STATE(705), - [sym__list_upper_alpha_parens] = STATE(144), - [sym__list_item_upper_alpha_parens] = STATE(711), - [sym__list_lower_roman_period] = STATE(144), - [sym__list_item_lower_roman_period] = STATE(712), - [sym__list_lower_roman_paren] = STATE(144), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(144), - [sym__list_item_lower_roman_parens] = STATE(728), - [sym__list_upper_roman_period] = STATE(144), - [sym__list_item_upper_roman_period] = STATE(734), - [sym__list_upper_roman_paren] = STATE(144), - [sym__list_item_upper_roman_paren] = STATE(830), - [sym__list_upper_roman_parens] = STATE(144), - [sym__list_item_upper_roman_parens] = STATE(725), - [sym_table] = STATE(183), - [sym__table_row] = STATE(66), - [sym_table_header] = STATE(66), - [sym_table_separator] = STATE(66), - [sym_table_row] = STATE(66), - [sym_footnote] = STATE(183), - [sym_footnote_marker_begin] = STATE(1141), - [sym_div] = STATE(183), - [sym__div_marker_begin] = STATE(1057), - [sym_code_block] = STATE(183), - [sym_raw_block] = STATE(183), - [sym_thematic_break] = STATE(183), - [sym_block_quote] = STATE(183), - [sym__block_quote_prefix] = STATE(214), - [sym_link_reference_definition] = STATE(183), - [sym_block_attribute] = STATE(183), - [sym__paragraph] = STATE(183), - [sym__paragraph_content] = STATE(750), - [sym__paragraph_inline_content] = STATE(778), - [sym__inline] = STATE(655), + [sym__block_with_heading] = STATE(168), + [sym__block_element] = STATE(168), + [sym_heading] = STATE(168), + [sym_list] = STATE(168), + [sym__list_dash] = STATE(129), + [sym__list_item_dash] = STATE(645), + [sym__list_plus] = STATE(129), + [sym__list_item_plus] = STATE(661), + [sym__list_star] = STATE(129), + [sym__list_item_star] = STATE(573), + [sym__list_task] = STATE(129), + [sym__list_item_task] = STATE(590), + [sym_list_marker_task] = STATE(43), + [sym__list_definition] = STATE(129), + [sym__list_item_definition] = STATE(740), + [sym__list_decimal_period] = STATE(129), + [sym__list_item_decimal_period] = STATE(743), + [sym__list_decimal_paren] = STATE(129), + [sym__list_item_decimal_paren] = STATE(748), + [sym__list_decimal_parens] = STATE(129), + [sym__list_item_decimal_parens] = STATE(768), + [sym__list_lower_alpha_period] = STATE(129), + [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_lower_alpha_paren] = STATE(129), + [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_lower_alpha_parens] = STATE(129), + [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_upper_alpha_period] = STATE(129), + [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_upper_alpha_paren] = STATE(129), + [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_upper_alpha_parens] = STATE(129), + [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_lower_roman_period] = STATE(129), + [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_lower_roman_paren] = STATE(129), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(129), + [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_upper_roman_period] = STATE(129), + [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_upper_roman_paren] = STATE(129), + [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_upper_roman_parens] = STATE(129), + [sym__list_item_upper_roman_parens] = STATE(819), + [sym_table] = STATE(168), + [sym__table_row] = STATE(67), + [sym_table_header] = STATE(67), + [sym_table_separator] = STATE(67), + [sym_table_row] = STATE(67), + [sym_footnote] = STATE(168), + [sym_footnote_marker_begin] = STATE(894), + [sym_div] = STATE(168), + [sym__div_marker_begin] = STATE(1056), + [sym_code_block] = STATE(168), + [sym_raw_block] = STATE(168), + [sym_thematic_break] = STATE(168), + [sym_block_quote] = STATE(168), + [sym__block_quote_prefix] = STATE(215), + [sym_link_reference_definition] = STATE(168), + [sym_block_attribute] = STATE(168), + [sym__paragraph] = STATE(168), + [sym__paragraph_content] = STATE(784), + [sym__paragraph_inline_content] = STATE(837), + [sym__inline] = STATE(656), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(334), - [aux_sym__list_plus_repeat1] = STATE(335), - [aux_sym__list_star_repeat1] = STATE(336), - [aux_sym__list_task_repeat1] = STATE(309), - [aux_sym__list_definition_repeat1] = STATE(425), - [aux_sym__list_decimal_period_repeat1] = STATE(426), - [aux_sym__list_decimal_paren_repeat1] = STATE(427), - [aux_sym__list_decimal_parens_repeat1] = STATE(428), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(429), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(430), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(431), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(432), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(433), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(434), - [aux_sym__list_lower_roman_period_repeat1] = STATE(435), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(436), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(437), - [aux_sym__list_upper_roman_period_repeat1] = STATE(438), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(439), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(440), - [aux_sym_table_repeat1] = STATE(66), - [aux_sym_div_repeat1] = STATE(16), - [aux_sym__block_quote_prefix_repeat1] = STATE(231), + [aux_sym__list_dash_repeat1] = STATE(322), + [aux_sym__list_plus_repeat1] = STATE(323), + [aux_sym__list_star_repeat1] = STATE(324), + [aux_sym__list_task_repeat1] = STATE(285), + [aux_sym__list_definition_repeat1] = STATE(494), + [aux_sym__list_decimal_period_repeat1] = STATE(495), + [aux_sym__list_decimal_paren_repeat1] = STATE(496), + [aux_sym__list_decimal_parens_repeat1] = STATE(497), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(498), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(499), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(500), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(501), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(502), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(503), + [aux_sym__list_lower_roman_period_repeat1] = STATE(504), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(505), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(506), + [aux_sym__list_upper_roman_period_repeat1] = STATE(507), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(508), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(509), + [aux_sym_table_repeat1] = STATE(67), + [aux_sym_div_repeat1] = STATE(13), + [aux_sym__block_quote_prefix_repeat1] = STATE(226), [aux_sym__inline_repeat1] = STATE(273), - [anon_sym_LBRACK] = ACTIONS(181), + [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACK_CARET] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(11), - [aux_sym_identifier_token1] = ACTIONS(11), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_PERCENT] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(9), + [aux_sym_identifier_token1] = ACTIONS(9), + [aux_sym__inline_token1] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(9), + [anon_sym_PERCENT] = ACTIONS(9), [sym__block_close] = ACTIONS(350), [sym__newline] = ACTIONS(238), - [sym__heading_begin] = ACTIONS(17), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(189), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(191), + [sym__heading_begin] = ACTIONS(15), + [sym__div_begin] = ACTIONS(17), + [sym__code_block_begin] = ACTIONS(83), + [sym_list_marker_dash] = ACTIONS(21), + [sym_list_marker_star] = ACTIONS(23), + [sym_list_marker_plus] = ACTIONS(25), + [sym__list_marker_task_begin] = ACTIONS(27), + [sym_list_marker_definition] = ACTIONS(29), + [sym_list_marker_decimal_period] = ACTIONS(31), + [sym_list_marker_lower_alpha_period] = ACTIONS(33), + [sym_list_marker_upper_alpha_period] = ACTIONS(35), + [sym_list_marker_lower_roman_period] = ACTIONS(37), + [sym_list_marker_upper_roman_period] = ACTIONS(39), + [sym_list_marker_decimal_paren] = ACTIONS(41), + [sym_list_marker_lower_alpha_paren] = ACTIONS(43), + [sym_list_marker_upper_alpha_paren] = ACTIONS(45), + [sym_list_marker_lower_roman_paren] = ACTIONS(47), + [sym_list_marker_upper_roman_paren] = ACTIONS(49), + [sym_list_marker_decimal_parens] = ACTIONS(51), + [sym_list_marker_lower_alpha_parens] = ACTIONS(53), + [sym_list_marker_upper_alpha_parens] = ACTIONS(55), + [sym_list_marker_lower_roman_parens] = ACTIONS(57), + [sym_list_marker_upper_roman_parens] = ACTIONS(59), + [sym__block_quote_begin] = ACTIONS(85), [sym__block_quote_continuation] = ACTIONS(240), - [sym__thematic_break_dash] = ACTIONS(193), - [sym__thematic_break_star] = ACTIONS(193), - [sym__table_header_begin] = ACTIONS(195), - [sym__table_separator_begin] = ACTIONS(197), - [sym__table_row_begin] = ACTIONS(199), + [sym__thematic_break_dash] = ACTIONS(87), + [sym__thematic_break_star] = ACTIONS(87), + [sym__table_header_begin] = ACTIONS(89), + [sym__table_separator_begin] = ACTIONS(91), + [sym__table_row_begin] = ACTIONS(93), + [sym__block_attribute_begin] = ACTIONS(95), }, [16] = { - [sym__block_with_heading] = STATE(183), - [sym__block_element] = STATE(183), - [sym_heading] = STATE(183), - [sym_list] = STATE(183), - [sym__list_dash] = STATE(144), - [sym__list_item_dash] = STATE(553), - [sym__list_plus] = STATE(144), - [sym__list_item_plus] = STATE(554), - [sym__list_star] = STATE(144), - [sym__list_item_star] = STATE(556), - [sym__list_task] = STATE(144), - [sym__list_item_task] = STATE(558), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(144), - [sym__list_item_definition] = STATE(769), - [sym__list_decimal_period] = STATE(144), - [sym__list_item_decimal_period] = STATE(776), - [sym__list_decimal_paren] = STATE(144), - [sym__list_item_decimal_paren] = STATE(790), - [sym__list_decimal_parens] = STATE(144), - [sym__list_item_decimal_parens] = STATE(793), - [sym__list_lower_alpha_period] = STATE(144), - [sym__list_item_lower_alpha_period] = STATE(822), - [sym__list_lower_alpha_paren] = STATE(144), - [sym__list_item_lower_alpha_paren] = STATE(684), - [sym__list_lower_alpha_parens] = STATE(144), - [sym__list_item_lower_alpha_parens] = STATE(688), - [sym__list_upper_alpha_period] = STATE(144), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(144), - [sym__list_item_upper_alpha_paren] = STATE(705), - [sym__list_upper_alpha_parens] = STATE(144), - [sym__list_item_upper_alpha_parens] = STATE(711), - [sym__list_lower_roman_period] = STATE(144), - [sym__list_item_lower_roman_period] = STATE(712), - [sym__list_lower_roman_paren] = STATE(144), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(144), - [sym__list_item_lower_roman_parens] = STATE(728), - [sym__list_upper_roman_period] = STATE(144), - [sym__list_item_upper_roman_period] = STATE(734), - [sym__list_upper_roman_paren] = STATE(144), - [sym__list_item_upper_roman_paren] = STATE(830), - [sym__list_upper_roman_parens] = STATE(144), - [sym__list_item_upper_roman_parens] = STATE(725), - [sym_table] = STATE(183), - [sym__table_row] = STATE(66), - [sym_table_header] = STATE(66), - [sym_table_separator] = STATE(66), - [sym_table_row] = STATE(66), - [sym_footnote] = STATE(183), - [sym_footnote_marker_begin] = STATE(1141), - [sym_div] = STATE(183), - [sym__div_marker_begin] = STATE(1057), - [sym_code_block] = STATE(183), - [sym_raw_block] = STATE(183), - [sym_thematic_break] = STATE(183), - [sym_block_quote] = STATE(183), - [sym__block_quote_prefix] = STATE(212), - [sym_link_reference_definition] = STATE(183), - [sym_block_attribute] = STATE(183), - [sym__paragraph] = STATE(183), - [sym__paragraph_content] = STATE(750), - [sym__paragraph_inline_content] = STATE(778), - [sym__inline] = STATE(655), + [sym__block_with_heading] = STATE(168), + [sym__block_element] = STATE(168), + [sym_heading] = STATE(168), + [sym_list] = STATE(168), + [sym__list_dash] = STATE(129), + [sym__list_item_dash] = STATE(645), + [sym__list_plus] = STATE(129), + [sym__list_item_plus] = STATE(661), + [sym__list_star] = STATE(129), + [sym__list_item_star] = STATE(573), + [sym__list_task] = STATE(129), + [sym__list_item_task] = STATE(590), + [sym_list_marker_task] = STATE(43), + [sym__list_definition] = STATE(129), + [sym__list_item_definition] = STATE(740), + [sym__list_decimal_period] = STATE(129), + [sym__list_item_decimal_period] = STATE(743), + [sym__list_decimal_paren] = STATE(129), + [sym__list_item_decimal_paren] = STATE(748), + [sym__list_decimal_parens] = STATE(129), + [sym__list_item_decimal_parens] = STATE(768), + [sym__list_lower_alpha_period] = STATE(129), + [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_lower_alpha_paren] = STATE(129), + [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_lower_alpha_parens] = STATE(129), + [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_upper_alpha_period] = STATE(129), + [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_upper_alpha_paren] = STATE(129), + [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_upper_alpha_parens] = STATE(129), + [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_lower_roman_period] = STATE(129), + [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_lower_roman_paren] = STATE(129), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(129), + [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_upper_roman_period] = STATE(129), + [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_upper_roman_paren] = STATE(129), + [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_upper_roman_parens] = STATE(129), + [sym__list_item_upper_roman_parens] = STATE(819), + [sym_table] = STATE(168), + [sym__table_row] = STATE(67), + [sym_table_header] = STATE(67), + [sym_table_separator] = STATE(67), + [sym_table_row] = STATE(67), + [sym_footnote] = STATE(168), + [sym_footnote_marker_begin] = STATE(894), + [sym_div] = STATE(168), + [sym__div_marker_begin] = STATE(1056), + [sym_code_block] = STATE(168), + [sym_raw_block] = STATE(168), + [sym_thematic_break] = STATE(168), + [sym_block_quote] = STATE(168), + [sym__block_quote_prefix] = STATE(216), + [sym_link_reference_definition] = STATE(168), + [sym_block_attribute] = STATE(168), + [sym__paragraph] = STATE(168), + [sym__paragraph_content] = STATE(784), + [sym__paragraph_inline_content] = STATE(837), + [sym__inline] = STATE(656), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(334), - [aux_sym__list_plus_repeat1] = STATE(335), - [aux_sym__list_star_repeat1] = STATE(336), - [aux_sym__list_task_repeat1] = STATE(309), - [aux_sym__list_definition_repeat1] = STATE(425), - [aux_sym__list_decimal_period_repeat1] = STATE(426), - [aux_sym__list_decimal_paren_repeat1] = STATE(427), - [aux_sym__list_decimal_parens_repeat1] = STATE(428), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(429), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(430), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(431), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(432), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(433), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(434), - [aux_sym__list_lower_roman_period_repeat1] = STATE(435), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(436), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(437), - [aux_sym__list_upper_roman_period_repeat1] = STATE(438), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(439), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(440), - [aux_sym_table_repeat1] = STATE(66), - [aux_sym_div_repeat1] = STATE(14), - [aux_sym__block_quote_prefix_repeat1] = STATE(231), + [aux_sym__list_dash_repeat1] = STATE(322), + [aux_sym__list_plus_repeat1] = STATE(323), + [aux_sym__list_star_repeat1] = STATE(324), + [aux_sym__list_task_repeat1] = STATE(285), + [aux_sym__list_definition_repeat1] = STATE(494), + [aux_sym__list_decimal_period_repeat1] = STATE(495), + [aux_sym__list_decimal_paren_repeat1] = STATE(496), + [aux_sym__list_decimal_parens_repeat1] = STATE(497), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(498), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(499), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(500), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(501), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(502), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(503), + [aux_sym__list_lower_roman_period_repeat1] = STATE(504), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(505), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(506), + [aux_sym__list_upper_roman_period_repeat1] = STATE(507), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(508), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(509), + [aux_sym_table_repeat1] = STATE(67), + [aux_sym_div_repeat1] = STATE(17), + [aux_sym__block_quote_prefix_repeat1] = STATE(226), [aux_sym__inline_repeat1] = STATE(273), - [anon_sym_LBRACK] = ACTIONS(181), + [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACK_CARET] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(11), - [aux_sym_identifier_token1] = ACTIONS(11), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_PERCENT] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(9), + [aux_sym_identifier_token1] = ACTIONS(9), + [aux_sym__inline_token1] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(9), + [anon_sym_PERCENT] = ACTIONS(9), [sym__block_close] = ACTIONS(352), [sym__newline] = ACTIONS(238), - [sym__heading_begin] = ACTIONS(17), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(189), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(191), + [sym__heading_begin] = ACTIONS(15), + [sym__div_begin] = ACTIONS(17), + [sym__code_block_begin] = ACTIONS(83), + [sym_list_marker_dash] = ACTIONS(21), + [sym_list_marker_star] = ACTIONS(23), + [sym_list_marker_plus] = ACTIONS(25), + [sym__list_marker_task_begin] = ACTIONS(27), + [sym_list_marker_definition] = ACTIONS(29), + [sym_list_marker_decimal_period] = ACTIONS(31), + [sym_list_marker_lower_alpha_period] = ACTIONS(33), + [sym_list_marker_upper_alpha_period] = ACTIONS(35), + [sym_list_marker_lower_roman_period] = ACTIONS(37), + [sym_list_marker_upper_roman_period] = ACTIONS(39), + [sym_list_marker_decimal_paren] = ACTIONS(41), + [sym_list_marker_lower_alpha_paren] = ACTIONS(43), + [sym_list_marker_upper_alpha_paren] = ACTIONS(45), + [sym_list_marker_lower_roman_paren] = ACTIONS(47), + [sym_list_marker_upper_roman_paren] = ACTIONS(49), + [sym_list_marker_decimal_parens] = ACTIONS(51), + [sym_list_marker_lower_alpha_parens] = ACTIONS(53), + [sym_list_marker_upper_alpha_parens] = ACTIONS(55), + [sym_list_marker_lower_roman_parens] = ACTIONS(57), + [sym_list_marker_upper_roman_parens] = ACTIONS(59), + [sym__block_quote_begin] = ACTIONS(85), [sym__block_quote_continuation] = ACTIONS(240), - [sym__thematic_break_dash] = ACTIONS(193), - [sym__thematic_break_star] = ACTIONS(193), - [sym__table_header_begin] = ACTIONS(195), - [sym__table_separator_begin] = ACTIONS(197), - [sym__table_row_begin] = ACTIONS(199), + [sym__thematic_break_dash] = ACTIONS(87), + [sym__thematic_break_star] = ACTIONS(87), + [sym__table_header_begin] = ACTIONS(89), + [sym__table_separator_begin] = ACTIONS(91), + [sym__table_row_begin] = ACTIONS(93), + [sym__block_attribute_begin] = ACTIONS(95), }, [17] = { - [sym__block_with_heading] = STATE(183), - [sym__block_element] = STATE(183), - [sym_heading] = STATE(183), - [sym_list] = STATE(183), - [sym__list_dash] = STATE(144), - [sym__list_item_dash] = STATE(553), - [sym__list_plus] = STATE(144), - [sym__list_item_plus] = STATE(554), - [sym__list_star] = STATE(144), - [sym__list_item_star] = STATE(556), - [sym__list_task] = STATE(144), - [sym__list_item_task] = STATE(558), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(144), - [sym__list_item_definition] = STATE(769), - [sym__list_decimal_period] = STATE(144), - [sym__list_item_decimal_period] = STATE(776), - [sym__list_decimal_paren] = STATE(144), - [sym__list_item_decimal_paren] = STATE(790), - [sym__list_decimal_parens] = STATE(144), - [sym__list_item_decimal_parens] = STATE(793), - [sym__list_lower_alpha_period] = STATE(144), - [sym__list_item_lower_alpha_period] = STATE(822), - [sym__list_lower_alpha_paren] = STATE(144), - [sym__list_item_lower_alpha_paren] = STATE(684), - [sym__list_lower_alpha_parens] = STATE(144), - [sym__list_item_lower_alpha_parens] = STATE(688), - [sym__list_upper_alpha_period] = STATE(144), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(144), - [sym__list_item_upper_alpha_paren] = STATE(705), - [sym__list_upper_alpha_parens] = STATE(144), - [sym__list_item_upper_alpha_parens] = STATE(711), - [sym__list_lower_roman_period] = STATE(144), - [sym__list_item_lower_roman_period] = STATE(712), - [sym__list_lower_roman_paren] = STATE(144), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(144), - [sym__list_item_lower_roman_parens] = STATE(728), - [sym__list_upper_roman_period] = STATE(144), - [sym__list_item_upper_roman_period] = STATE(734), - [sym__list_upper_roman_paren] = STATE(144), - [sym__list_item_upper_roman_paren] = STATE(830), - [sym__list_upper_roman_parens] = STATE(144), - [sym__list_item_upper_roman_parens] = STATE(725), - [sym_table] = STATE(183), - [sym__table_row] = STATE(66), - [sym_table_header] = STATE(66), - [sym_table_separator] = STATE(66), - [sym_table_row] = STATE(66), - [sym_footnote] = STATE(183), - [sym_footnote_marker_begin] = STATE(1141), - [sym_div] = STATE(183), - [sym__div_marker_begin] = STATE(1057), - [sym_code_block] = STATE(183), - [sym_raw_block] = STATE(183), - [sym_thematic_break] = STATE(183), - [sym_block_quote] = STATE(183), - [sym__block_quote_prefix] = STATE(213), - [sym_link_reference_definition] = STATE(183), - [sym_block_attribute] = STATE(183), - [sym__paragraph] = STATE(183), - [sym__paragraph_content] = STATE(750), - [sym__paragraph_inline_content] = STATE(778), - [sym__inline] = STATE(655), + [sym__block_with_heading] = STATE(168), + [sym__block_element] = STATE(168), + [sym_heading] = STATE(168), + [sym_list] = STATE(168), + [sym__list_dash] = STATE(129), + [sym__list_item_dash] = STATE(645), + [sym__list_plus] = STATE(129), + [sym__list_item_plus] = STATE(661), + [sym__list_star] = STATE(129), + [sym__list_item_star] = STATE(573), + [sym__list_task] = STATE(129), + [sym__list_item_task] = STATE(590), + [sym_list_marker_task] = STATE(43), + [sym__list_definition] = STATE(129), + [sym__list_item_definition] = STATE(740), + [sym__list_decimal_period] = STATE(129), + [sym__list_item_decimal_period] = STATE(743), + [sym__list_decimal_paren] = STATE(129), + [sym__list_item_decimal_paren] = STATE(748), + [sym__list_decimal_parens] = STATE(129), + [sym__list_item_decimal_parens] = STATE(768), + [sym__list_lower_alpha_period] = STATE(129), + [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_lower_alpha_paren] = STATE(129), + [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_lower_alpha_parens] = STATE(129), + [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_upper_alpha_period] = STATE(129), + [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_upper_alpha_paren] = STATE(129), + [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_upper_alpha_parens] = STATE(129), + [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_lower_roman_period] = STATE(129), + [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_lower_roman_paren] = STATE(129), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(129), + [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_upper_roman_period] = STATE(129), + [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_upper_roman_paren] = STATE(129), + [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_upper_roman_parens] = STATE(129), + [sym__list_item_upper_roman_parens] = STATE(819), + [sym_table] = STATE(168), + [sym__table_row] = STATE(67), + [sym_table_header] = STATE(67), + [sym_table_separator] = STATE(67), + [sym_table_row] = STATE(67), + [sym_footnote] = STATE(168), + [sym_footnote_marker_begin] = STATE(894), + [sym_div] = STATE(168), + [sym__div_marker_begin] = STATE(1056), + [sym_code_block] = STATE(168), + [sym_raw_block] = STATE(168), + [sym_thematic_break] = STATE(168), + [sym_block_quote] = STATE(168), + [sym__block_quote_prefix] = STATE(214), + [sym_link_reference_definition] = STATE(168), + [sym_block_attribute] = STATE(168), + [sym__paragraph] = STATE(168), + [sym__paragraph_content] = STATE(784), + [sym__paragraph_inline_content] = STATE(837), + [sym__inline] = STATE(656), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(334), - [aux_sym__list_plus_repeat1] = STATE(335), - [aux_sym__list_star_repeat1] = STATE(336), - [aux_sym__list_task_repeat1] = STATE(309), - [aux_sym__list_definition_repeat1] = STATE(425), - [aux_sym__list_decimal_period_repeat1] = STATE(426), - [aux_sym__list_decimal_paren_repeat1] = STATE(427), - [aux_sym__list_decimal_parens_repeat1] = STATE(428), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(429), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(430), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(431), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(432), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(433), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(434), - [aux_sym__list_lower_roman_period_repeat1] = STATE(435), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(436), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(437), - [aux_sym__list_upper_roman_period_repeat1] = STATE(438), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(439), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(440), - [aux_sym_table_repeat1] = STATE(66), - [aux_sym_div_repeat1] = STATE(18), - [aux_sym__block_quote_prefix_repeat1] = STATE(231), + [aux_sym__list_dash_repeat1] = STATE(322), + [aux_sym__list_plus_repeat1] = STATE(323), + [aux_sym__list_star_repeat1] = STATE(324), + [aux_sym__list_task_repeat1] = STATE(285), + [aux_sym__list_definition_repeat1] = STATE(494), + [aux_sym__list_decimal_period_repeat1] = STATE(495), + [aux_sym__list_decimal_paren_repeat1] = STATE(496), + [aux_sym__list_decimal_parens_repeat1] = STATE(497), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(498), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(499), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(500), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(501), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(502), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(503), + [aux_sym__list_lower_roman_period_repeat1] = STATE(504), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(505), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(506), + [aux_sym__list_upper_roman_period_repeat1] = STATE(507), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(508), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(509), + [aux_sym_table_repeat1] = STATE(67), + [aux_sym_div_repeat1] = STATE(13), + [aux_sym__block_quote_prefix_repeat1] = STATE(226), [aux_sym__inline_repeat1] = STATE(273), - [anon_sym_LBRACK] = ACTIONS(181), + [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACK_CARET] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(11), - [aux_sym_identifier_token1] = ACTIONS(11), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_PERCENT] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(9), + [aux_sym_identifier_token1] = ACTIONS(9), + [aux_sym__inline_token1] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(9), + [anon_sym_PERCENT] = ACTIONS(9), [sym__block_close] = ACTIONS(354), [sym__newline] = ACTIONS(238), - [sym__heading_begin] = ACTIONS(17), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(189), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(191), + [sym__heading_begin] = ACTIONS(15), + [sym__div_begin] = ACTIONS(17), + [sym__code_block_begin] = ACTIONS(83), + [sym_list_marker_dash] = ACTIONS(21), + [sym_list_marker_star] = ACTIONS(23), + [sym_list_marker_plus] = ACTIONS(25), + [sym__list_marker_task_begin] = ACTIONS(27), + [sym_list_marker_definition] = ACTIONS(29), + [sym_list_marker_decimal_period] = ACTIONS(31), + [sym_list_marker_lower_alpha_period] = ACTIONS(33), + [sym_list_marker_upper_alpha_period] = ACTIONS(35), + [sym_list_marker_lower_roman_period] = ACTIONS(37), + [sym_list_marker_upper_roman_period] = ACTIONS(39), + [sym_list_marker_decimal_paren] = ACTIONS(41), + [sym_list_marker_lower_alpha_paren] = ACTIONS(43), + [sym_list_marker_upper_alpha_paren] = ACTIONS(45), + [sym_list_marker_lower_roman_paren] = ACTIONS(47), + [sym_list_marker_upper_roman_paren] = ACTIONS(49), + [sym_list_marker_decimal_parens] = ACTIONS(51), + [sym_list_marker_lower_alpha_parens] = ACTIONS(53), + [sym_list_marker_upper_alpha_parens] = ACTIONS(55), + [sym_list_marker_lower_roman_parens] = ACTIONS(57), + [sym_list_marker_upper_roman_parens] = ACTIONS(59), + [sym__block_quote_begin] = ACTIONS(85), [sym__block_quote_continuation] = ACTIONS(240), - [sym__thematic_break_dash] = ACTIONS(193), - [sym__thematic_break_star] = ACTIONS(193), - [sym__table_header_begin] = ACTIONS(195), - [sym__table_separator_begin] = ACTIONS(197), - [sym__table_row_begin] = ACTIONS(199), + [sym__thematic_break_dash] = ACTIONS(87), + [sym__thematic_break_star] = ACTIONS(87), + [sym__table_header_begin] = ACTIONS(89), + [sym__table_separator_begin] = ACTIONS(91), + [sym__table_row_begin] = ACTIONS(93), + [sym__block_attribute_begin] = ACTIONS(95), }, [18] = { - [sym__block_with_heading] = STATE(183), - [sym__block_element] = STATE(183), - [sym_heading] = STATE(183), - [sym_list] = STATE(183), - [sym__list_dash] = STATE(144), - [sym__list_item_dash] = STATE(553), - [sym__list_plus] = STATE(144), - [sym__list_item_plus] = STATE(554), - [sym__list_star] = STATE(144), - [sym__list_item_star] = STATE(556), - [sym__list_task] = STATE(144), - [sym__list_item_task] = STATE(558), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(144), - [sym__list_item_definition] = STATE(769), - [sym__list_decimal_period] = STATE(144), - [sym__list_item_decimal_period] = STATE(776), - [sym__list_decimal_paren] = STATE(144), - [sym__list_item_decimal_paren] = STATE(790), - [sym__list_decimal_parens] = STATE(144), - [sym__list_item_decimal_parens] = STATE(793), - [sym__list_lower_alpha_period] = STATE(144), - [sym__list_item_lower_alpha_period] = STATE(822), - [sym__list_lower_alpha_paren] = STATE(144), - [sym__list_item_lower_alpha_paren] = STATE(684), - [sym__list_lower_alpha_parens] = STATE(144), - [sym__list_item_lower_alpha_parens] = STATE(688), - [sym__list_upper_alpha_period] = STATE(144), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(144), - [sym__list_item_upper_alpha_paren] = STATE(705), - [sym__list_upper_alpha_parens] = STATE(144), - [sym__list_item_upper_alpha_parens] = STATE(711), - [sym__list_lower_roman_period] = STATE(144), - [sym__list_item_lower_roman_period] = STATE(712), - [sym__list_lower_roman_paren] = STATE(144), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(144), - [sym__list_item_lower_roman_parens] = STATE(728), - [sym__list_upper_roman_period] = STATE(144), - [sym__list_item_upper_roman_period] = STATE(734), - [sym__list_upper_roman_paren] = STATE(144), - [sym__list_item_upper_roman_paren] = STATE(830), - [sym__list_upper_roman_parens] = STATE(144), - [sym__list_item_upper_roman_parens] = STATE(725), - [sym_table] = STATE(183), - [sym__table_row] = STATE(66), - [sym_table_header] = STATE(66), - [sym_table_separator] = STATE(66), - [sym_table_row] = STATE(66), - [sym_footnote] = STATE(183), - [sym_footnote_marker_begin] = STATE(1141), - [sym_div] = STATE(183), - [sym__div_marker_begin] = STATE(1057), - [sym_code_block] = STATE(183), - [sym_raw_block] = STATE(183), - [sym_thematic_break] = STATE(183), - [sym_block_quote] = STATE(183), - [sym__block_quote_prefix] = STATE(215), - [sym_link_reference_definition] = STATE(183), - [sym_block_attribute] = STATE(183), - [sym__paragraph] = STATE(183), - [sym__paragraph_content] = STATE(750), - [sym__paragraph_inline_content] = STATE(778), - [sym__inline] = STATE(655), + [sym__block_with_heading] = STATE(168), + [sym__block_element] = STATE(168), + [sym_heading] = STATE(168), + [sym_list] = STATE(168), + [sym__list_dash] = STATE(129), + [sym__list_item_dash] = STATE(645), + [sym__list_plus] = STATE(129), + [sym__list_item_plus] = STATE(661), + [sym__list_star] = STATE(129), + [sym__list_item_star] = STATE(573), + [sym__list_task] = STATE(129), + [sym__list_item_task] = STATE(590), + [sym_list_marker_task] = STATE(43), + [sym__list_definition] = STATE(129), + [sym__list_item_definition] = STATE(740), + [sym__list_decimal_period] = STATE(129), + [sym__list_item_decimal_period] = STATE(743), + [sym__list_decimal_paren] = STATE(129), + [sym__list_item_decimal_paren] = STATE(748), + [sym__list_decimal_parens] = STATE(129), + [sym__list_item_decimal_parens] = STATE(768), + [sym__list_lower_alpha_period] = STATE(129), + [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_lower_alpha_paren] = STATE(129), + [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_lower_alpha_parens] = STATE(129), + [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_upper_alpha_period] = STATE(129), + [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_upper_alpha_paren] = STATE(129), + [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_upper_alpha_parens] = STATE(129), + [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_lower_roman_period] = STATE(129), + [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_lower_roman_paren] = STATE(129), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(129), + [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_upper_roman_period] = STATE(129), + [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_upper_roman_paren] = STATE(129), + [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_upper_roman_parens] = STATE(129), + [sym__list_item_upper_roman_parens] = STATE(819), + [sym_table] = STATE(168), + [sym__table_row] = STATE(67), + [sym_table_header] = STATE(67), + [sym_table_separator] = STATE(67), + [sym_table_row] = STATE(67), + [sym_footnote] = STATE(168), + [sym_footnote_marker_begin] = STATE(894), + [sym_div] = STATE(168), + [sym__div_marker_begin] = STATE(1056), + [sym_code_block] = STATE(168), + [sym_raw_block] = STATE(168), + [sym_thematic_break] = STATE(168), + [sym_block_quote] = STATE(168), + [sym__block_quote_prefix] = STATE(218), + [sym_link_reference_definition] = STATE(168), + [sym_block_attribute] = STATE(168), + [sym__paragraph] = STATE(168), + [sym__paragraph_content] = STATE(784), + [sym__paragraph_inline_content] = STATE(837), + [sym__inline] = STATE(656), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(334), - [aux_sym__list_plus_repeat1] = STATE(335), - [aux_sym__list_star_repeat1] = STATE(336), - [aux_sym__list_task_repeat1] = STATE(309), - [aux_sym__list_definition_repeat1] = STATE(425), - [aux_sym__list_decimal_period_repeat1] = STATE(426), - [aux_sym__list_decimal_paren_repeat1] = STATE(427), - [aux_sym__list_decimal_parens_repeat1] = STATE(428), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(429), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(430), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(431), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(432), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(433), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(434), - [aux_sym__list_lower_roman_period_repeat1] = STATE(435), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(436), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(437), - [aux_sym__list_upper_roman_period_repeat1] = STATE(438), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(439), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(440), - [aux_sym_table_repeat1] = STATE(66), - [aux_sym_div_repeat1] = STATE(14), - [aux_sym__block_quote_prefix_repeat1] = STATE(231), + [aux_sym__list_dash_repeat1] = STATE(322), + [aux_sym__list_plus_repeat1] = STATE(323), + [aux_sym__list_star_repeat1] = STATE(324), + [aux_sym__list_task_repeat1] = STATE(285), + [aux_sym__list_definition_repeat1] = STATE(494), + [aux_sym__list_decimal_period_repeat1] = STATE(495), + [aux_sym__list_decimal_paren_repeat1] = STATE(496), + [aux_sym__list_decimal_parens_repeat1] = STATE(497), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(498), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(499), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(500), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(501), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(502), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(503), + [aux_sym__list_lower_roman_period_repeat1] = STATE(504), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(505), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(506), + [aux_sym__list_upper_roman_period_repeat1] = STATE(507), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(508), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(509), + [aux_sym_table_repeat1] = STATE(67), + [aux_sym_div_repeat1] = STATE(19), + [aux_sym__block_quote_prefix_repeat1] = STATE(226), [aux_sym__inline_repeat1] = STATE(273), - [anon_sym_LBRACK] = ACTIONS(181), + [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACK_CARET] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(11), - [aux_sym_identifier_token1] = ACTIONS(11), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_PERCENT] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(9), + [aux_sym_identifier_token1] = ACTIONS(9), + [aux_sym__inline_token1] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(9), + [anon_sym_PERCENT] = ACTIONS(9), [sym__block_close] = ACTIONS(356), [sym__newline] = ACTIONS(238), - [sym__heading_begin] = ACTIONS(17), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(189), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(191), + [sym__heading_begin] = ACTIONS(15), + [sym__div_begin] = ACTIONS(17), + [sym__code_block_begin] = ACTIONS(83), + [sym_list_marker_dash] = ACTIONS(21), + [sym_list_marker_star] = ACTIONS(23), + [sym_list_marker_plus] = ACTIONS(25), + [sym__list_marker_task_begin] = ACTIONS(27), + [sym_list_marker_definition] = ACTIONS(29), + [sym_list_marker_decimal_period] = ACTIONS(31), + [sym_list_marker_lower_alpha_period] = ACTIONS(33), + [sym_list_marker_upper_alpha_period] = ACTIONS(35), + [sym_list_marker_lower_roman_period] = ACTIONS(37), + [sym_list_marker_upper_roman_period] = ACTIONS(39), + [sym_list_marker_decimal_paren] = ACTIONS(41), + [sym_list_marker_lower_alpha_paren] = ACTIONS(43), + [sym_list_marker_upper_alpha_paren] = ACTIONS(45), + [sym_list_marker_lower_roman_paren] = ACTIONS(47), + [sym_list_marker_upper_roman_paren] = ACTIONS(49), + [sym_list_marker_decimal_parens] = ACTIONS(51), + [sym_list_marker_lower_alpha_parens] = ACTIONS(53), + [sym_list_marker_upper_alpha_parens] = ACTIONS(55), + [sym_list_marker_lower_roman_parens] = ACTIONS(57), + [sym_list_marker_upper_roman_parens] = ACTIONS(59), + [sym__block_quote_begin] = ACTIONS(85), [sym__block_quote_continuation] = ACTIONS(240), - [sym__thematic_break_dash] = ACTIONS(193), - [sym__thematic_break_star] = ACTIONS(193), - [sym__table_header_begin] = ACTIONS(195), - [sym__table_separator_begin] = ACTIONS(197), - [sym__table_row_begin] = ACTIONS(199), + [sym__thematic_break_dash] = ACTIONS(87), + [sym__thematic_break_star] = ACTIONS(87), + [sym__table_header_begin] = ACTIONS(89), + [sym__table_separator_begin] = ACTIONS(91), + [sym__table_row_begin] = ACTIONS(93), + [sym__block_attribute_begin] = ACTIONS(95), }, [19] = { - [sym__block_with_heading] = STATE(183), - [sym__block_element] = STATE(183), - [sym_heading] = STATE(183), - [sym_list] = STATE(183), - [sym__list_dash] = STATE(144), - [sym__list_item_dash] = STATE(553), - [sym__list_plus] = STATE(144), - [sym__list_item_plus] = STATE(554), - [sym__list_star] = STATE(144), - [sym__list_item_star] = STATE(556), - [sym__list_task] = STATE(144), - [sym__list_item_task] = STATE(558), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(144), - [sym__list_item_definition] = STATE(769), - [sym__list_decimal_period] = STATE(144), - [sym__list_item_decimal_period] = STATE(776), - [sym__list_decimal_paren] = STATE(144), - [sym__list_item_decimal_paren] = STATE(790), - [sym__list_decimal_parens] = STATE(144), - [sym__list_item_decimal_parens] = STATE(793), - [sym__list_lower_alpha_period] = STATE(144), - [sym__list_item_lower_alpha_period] = STATE(822), - [sym__list_lower_alpha_paren] = STATE(144), - [sym__list_item_lower_alpha_paren] = STATE(684), - [sym__list_lower_alpha_parens] = STATE(144), - [sym__list_item_lower_alpha_parens] = STATE(688), - [sym__list_upper_alpha_period] = STATE(144), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(144), - [sym__list_item_upper_alpha_paren] = STATE(705), - [sym__list_upper_alpha_parens] = STATE(144), - [sym__list_item_upper_alpha_parens] = STATE(711), - [sym__list_lower_roman_period] = STATE(144), - [sym__list_item_lower_roman_period] = STATE(712), - [sym__list_lower_roman_paren] = STATE(144), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(144), - [sym__list_item_lower_roman_parens] = STATE(728), - [sym__list_upper_roman_period] = STATE(144), - [sym__list_item_upper_roman_period] = STATE(734), - [sym__list_upper_roman_paren] = STATE(144), - [sym__list_item_upper_roman_paren] = STATE(830), - [sym__list_upper_roman_parens] = STATE(144), - [sym__list_item_upper_roman_parens] = STATE(725), - [sym_table] = STATE(183), - [sym__table_row] = STATE(66), - [sym_table_header] = STATE(66), - [sym_table_separator] = STATE(66), - [sym_table_row] = STATE(66), - [sym_footnote] = STATE(183), - [sym_footnote_marker_begin] = STATE(1141), - [sym_div] = STATE(183), - [sym__div_marker_begin] = STATE(1057), - [sym_code_block] = STATE(183), - [sym_raw_block] = STATE(183), - [sym_thematic_break] = STATE(183), - [sym_block_quote] = STATE(183), - [sym__block_quote_prefix] = STATE(211), - [sym_link_reference_definition] = STATE(183), - [sym_block_attribute] = STATE(183), - [sym__paragraph] = STATE(183), - [sym__paragraph_content] = STATE(750), - [sym__paragraph_inline_content] = STATE(778), - [sym__inline] = STATE(655), + [sym__block_with_heading] = STATE(168), + [sym__block_element] = STATE(168), + [sym_heading] = STATE(168), + [sym_list] = STATE(168), + [sym__list_dash] = STATE(129), + [sym__list_item_dash] = STATE(645), + [sym__list_plus] = STATE(129), + [sym__list_item_plus] = STATE(661), + [sym__list_star] = STATE(129), + [sym__list_item_star] = STATE(573), + [sym__list_task] = STATE(129), + [sym__list_item_task] = STATE(590), + [sym_list_marker_task] = STATE(43), + [sym__list_definition] = STATE(129), + [sym__list_item_definition] = STATE(740), + [sym__list_decimal_period] = STATE(129), + [sym__list_item_decimal_period] = STATE(743), + [sym__list_decimal_paren] = STATE(129), + [sym__list_item_decimal_paren] = STATE(748), + [sym__list_decimal_parens] = STATE(129), + [sym__list_item_decimal_parens] = STATE(768), + [sym__list_lower_alpha_period] = STATE(129), + [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_lower_alpha_paren] = STATE(129), + [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_lower_alpha_parens] = STATE(129), + [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_upper_alpha_period] = STATE(129), + [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_upper_alpha_paren] = STATE(129), + [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_upper_alpha_parens] = STATE(129), + [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_lower_roman_period] = STATE(129), + [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_lower_roman_paren] = STATE(129), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(129), + [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_upper_roman_period] = STATE(129), + [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_upper_roman_paren] = STATE(129), + [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_upper_roman_parens] = STATE(129), + [sym__list_item_upper_roman_parens] = STATE(819), + [sym_table] = STATE(168), + [sym__table_row] = STATE(67), + [sym_table_header] = STATE(67), + [sym_table_separator] = STATE(67), + [sym_table_row] = STATE(67), + [sym_footnote] = STATE(168), + [sym_footnote_marker_begin] = STATE(894), + [sym_div] = STATE(168), + [sym__div_marker_begin] = STATE(1056), + [sym_code_block] = STATE(168), + [sym_raw_block] = STATE(168), + [sym_thematic_break] = STATE(168), + [sym_block_quote] = STATE(168), + [sym__block_quote_prefix] = STATE(217), + [sym_link_reference_definition] = STATE(168), + [sym_block_attribute] = STATE(168), + [sym__paragraph] = STATE(168), + [sym__paragraph_content] = STATE(784), + [sym__paragraph_inline_content] = STATE(837), + [sym__inline] = STATE(656), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(334), - [aux_sym__list_plus_repeat1] = STATE(335), - [aux_sym__list_star_repeat1] = STATE(336), - [aux_sym__list_task_repeat1] = STATE(309), - [aux_sym__list_definition_repeat1] = STATE(425), - [aux_sym__list_decimal_period_repeat1] = STATE(426), - [aux_sym__list_decimal_paren_repeat1] = STATE(427), - [aux_sym__list_decimal_parens_repeat1] = STATE(428), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(429), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(430), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(431), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(432), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(433), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(434), - [aux_sym__list_lower_roman_period_repeat1] = STATE(435), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(436), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(437), - [aux_sym__list_upper_roman_period_repeat1] = STATE(438), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(439), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(440), - [aux_sym_table_repeat1] = STATE(66), - [aux_sym_div_repeat1] = STATE(20), - [aux_sym__block_quote_prefix_repeat1] = STATE(231), + [aux_sym__list_dash_repeat1] = STATE(322), + [aux_sym__list_plus_repeat1] = STATE(323), + [aux_sym__list_star_repeat1] = STATE(324), + [aux_sym__list_task_repeat1] = STATE(285), + [aux_sym__list_definition_repeat1] = STATE(494), + [aux_sym__list_decimal_period_repeat1] = STATE(495), + [aux_sym__list_decimal_paren_repeat1] = STATE(496), + [aux_sym__list_decimal_parens_repeat1] = STATE(497), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(498), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(499), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(500), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(501), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(502), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(503), + [aux_sym__list_lower_roman_period_repeat1] = STATE(504), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(505), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(506), + [aux_sym__list_upper_roman_period_repeat1] = STATE(507), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(508), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(509), + [aux_sym_table_repeat1] = STATE(67), + [aux_sym_div_repeat1] = STATE(13), + [aux_sym__block_quote_prefix_repeat1] = STATE(226), [aux_sym__inline_repeat1] = STATE(273), - [anon_sym_LBRACK] = ACTIONS(181), + [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACK_CARET] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(11), - [aux_sym_identifier_token1] = ACTIONS(11), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_PERCENT] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(9), + [aux_sym_identifier_token1] = ACTIONS(9), + [aux_sym__inline_token1] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(9), + [anon_sym_PERCENT] = ACTIONS(9), [sym__block_close] = ACTIONS(358), [sym__newline] = ACTIONS(238), - [sym__heading_begin] = ACTIONS(17), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(189), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(191), + [sym__heading_begin] = ACTIONS(15), + [sym__div_begin] = ACTIONS(17), + [sym__code_block_begin] = ACTIONS(83), + [sym_list_marker_dash] = ACTIONS(21), + [sym_list_marker_star] = ACTIONS(23), + [sym_list_marker_plus] = ACTIONS(25), + [sym__list_marker_task_begin] = ACTIONS(27), + [sym_list_marker_definition] = ACTIONS(29), + [sym_list_marker_decimal_period] = ACTIONS(31), + [sym_list_marker_lower_alpha_period] = ACTIONS(33), + [sym_list_marker_upper_alpha_period] = ACTIONS(35), + [sym_list_marker_lower_roman_period] = ACTIONS(37), + [sym_list_marker_upper_roman_period] = ACTIONS(39), + [sym_list_marker_decimal_paren] = ACTIONS(41), + [sym_list_marker_lower_alpha_paren] = ACTIONS(43), + [sym_list_marker_upper_alpha_paren] = ACTIONS(45), + [sym_list_marker_lower_roman_paren] = ACTIONS(47), + [sym_list_marker_upper_roman_paren] = ACTIONS(49), + [sym_list_marker_decimal_parens] = ACTIONS(51), + [sym_list_marker_lower_alpha_parens] = ACTIONS(53), + [sym_list_marker_upper_alpha_parens] = ACTIONS(55), + [sym_list_marker_lower_roman_parens] = ACTIONS(57), + [sym_list_marker_upper_roman_parens] = ACTIONS(59), + [sym__block_quote_begin] = ACTIONS(85), [sym__block_quote_continuation] = ACTIONS(240), - [sym__thematic_break_dash] = ACTIONS(193), - [sym__thematic_break_star] = ACTIONS(193), - [sym__table_header_begin] = ACTIONS(195), - [sym__table_separator_begin] = ACTIONS(197), - [sym__table_row_begin] = ACTIONS(199), + [sym__thematic_break_dash] = ACTIONS(87), + [sym__thematic_break_star] = ACTIONS(87), + [sym__table_header_begin] = ACTIONS(89), + [sym__table_separator_begin] = ACTIONS(91), + [sym__table_row_begin] = ACTIONS(93), + [sym__block_attribute_begin] = ACTIONS(95), }, [20] = { - [sym__block_with_heading] = STATE(183), - [sym__block_element] = STATE(183), - [sym_heading] = STATE(183), - [sym_list] = STATE(183), - [sym__list_dash] = STATE(144), - [sym__list_item_dash] = STATE(553), - [sym__list_plus] = STATE(144), - [sym__list_item_plus] = STATE(554), - [sym__list_star] = STATE(144), - [sym__list_item_star] = STATE(556), - [sym__list_task] = STATE(144), - [sym__list_item_task] = STATE(558), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(144), - [sym__list_item_definition] = STATE(769), - [sym__list_decimal_period] = STATE(144), - [sym__list_item_decimal_period] = STATE(776), - [sym__list_decimal_paren] = STATE(144), - [sym__list_item_decimal_paren] = STATE(790), - [sym__list_decimal_parens] = STATE(144), - [sym__list_item_decimal_parens] = STATE(793), - [sym__list_lower_alpha_period] = STATE(144), - [sym__list_item_lower_alpha_period] = STATE(822), - [sym__list_lower_alpha_paren] = STATE(144), - [sym__list_item_lower_alpha_paren] = STATE(684), - [sym__list_lower_alpha_parens] = STATE(144), - [sym__list_item_lower_alpha_parens] = STATE(688), - [sym__list_upper_alpha_period] = STATE(144), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(144), - [sym__list_item_upper_alpha_paren] = STATE(705), - [sym__list_upper_alpha_parens] = STATE(144), - [sym__list_item_upper_alpha_parens] = STATE(711), - [sym__list_lower_roman_period] = STATE(144), - [sym__list_item_lower_roman_period] = STATE(712), - [sym__list_lower_roman_paren] = STATE(144), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(144), - [sym__list_item_lower_roman_parens] = STATE(728), - [sym__list_upper_roman_period] = STATE(144), - [sym__list_item_upper_roman_period] = STATE(734), - [sym__list_upper_roman_paren] = STATE(144), - [sym__list_item_upper_roman_paren] = STATE(830), - [sym__list_upper_roman_parens] = STATE(144), - [sym__list_item_upper_roman_parens] = STATE(725), - [sym_table] = STATE(183), - [sym__table_row] = STATE(66), - [sym_table_header] = STATE(66), - [sym_table_separator] = STATE(66), - [sym_table_row] = STATE(66), - [sym_footnote] = STATE(183), - [sym_footnote_marker_begin] = STATE(1141), - [sym_div] = STATE(183), - [sym__div_marker_begin] = STATE(1057), - [sym_code_block] = STATE(183), - [sym_raw_block] = STATE(183), - [sym_thematic_break] = STATE(183), - [sym_block_quote] = STATE(183), - [sym__block_quote_prefix] = STATE(217), - [sym_link_reference_definition] = STATE(183), - [sym_block_attribute] = STATE(183), - [sym__paragraph] = STATE(183), - [sym__paragraph_content] = STATE(750), - [sym__paragraph_inline_content] = STATE(778), - [sym__inline] = STATE(655), + [sym__block_with_heading] = STATE(168), + [sym__block_element] = STATE(168), + [sym_heading] = STATE(168), + [sym_list] = STATE(168), + [sym__list_dash] = STATE(129), + [sym__list_item_dash] = STATE(645), + [sym__list_plus] = STATE(129), + [sym__list_item_plus] = STATE(661), + [sym__list_star] = STATE(129), + [sym__list_item_star] = STATE(573), + [sym__list_task] = STATE(129), + [sym__list_item_task] = STATE(590), + [sym_list_marker_task] = STATE(43), + [sym__list_definition] = STATE(129), + [sym__list_item_definition] = STATE(740), + [sym__list_decimal_period] = STATE(129), + [sym__list_item_decimal_period] = STATE(743), + [sym__list_decimal_paren] = STATE(129), + [sym__list_item_decimal_paren] = STATE(748), + [sym__list_decimal_parens] = STATE(129), + [sym__list_item_decimal_parens] = STATE(768), + [sym__list_lower_alpha_period] = STATE(129), + [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_lower_alpha_paren] = STATE(129), + [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_lower_alpha_parens] = STATE(129), + [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_upper_alpha_period] = STATE(129), + [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_upper_alpha_paren] = STATE(129), + [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_upper_alpha_parens] = STATE(129), + [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_lower_roman_period] = STATE(129), + [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_lower_roman_paren] = STATE(129), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(129), + [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_upper_roman_period] = STATE(129), + [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_upper_roman_paren] = STATE(129), + [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_upper_roman_parens] = STATE(129), + [sym__list_item_upper_roman_parens] = STATE(819), + [sym_table] = STATE(168), + [sym__table_row] = STATE(67), + [sym_table_header] = STATE(67), + [sym_table_separator] = STATE(67), + [sym_table_row] = STATE(67), + [sym_footnote] = STATE(168), + [sym_footnote_marker_begin] = STATE(894), + [sym_div] = STATE(168), + [sym__div_marker_begin] = STATE(1056), + [sym_code_block] = STATE(168), + [sym_raw_block] = STATE(168), + [sym_thematic_break] = STATE(168), + [sym_block_quote] = STATE(168), + [sym__block_quote_prefix] = STATE(219), + [sym_link_reference_definition] = STATE(168), + [sym_block_attribute] = STATE(168), + [sym__paragraph] = STATE(168), + [sym__paragraph_content] = STATE(784), + [sym__paragraph_inline_content] = STATE(837), + [sym__inline] = STATE(656), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(334), - [aux_sym__list_plus_repeat1] = STATE(335), - [aux_sym__list_star_repeat1] = STATE(336), - [aux_sym__list_task_repeat1] = STATE(309), - [aux_sym__list_definition_repeat1] = STATE(425), - [aux_sym__list_decimal_period_repeat1] = STATE(426), - [aux_sym__list_decimal_paren_repeat1] = STATE(427), - [aux_sym__list_decimal_parens_repeat1] = STATE(428), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(429), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(430), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(431), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(432), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(433), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(434), - [aux_sym__list_lower_roman_period_repeat1] = STATE(435), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(436), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(437), - [aux_sym__list_upper_roman_period_repeat1] = STATE(438), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(439), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(440), - [aux_sym_table_repeat1] = STATE(66), - [aux_sym_div_repeat1] = STATE(14), - [aux_sym__block_quote_prefix_repeat1] = STATE(231), + [aux_sym__list_dash_repeat1] = STATE(322), + [aux_sym__list_plus_repeat1] = STATE(323), + [aux_sym__list_star_repeat1] = STATE(324), + [aux_sym__list_task_repeat1] = STATE(285), + [aux_sym__list_definition_repeat1] = STATE(494), + [aux_sym__list_decimal_period_repeat1] = STATE(495), + [aux_sym__list_decimal_paren_repeat1] = STATE(496), + [aux_sym__list_decimal_parens_repeat1] = STATE(497), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(498), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(499), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(500), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(501), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(502), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(503), + [aux_sym__list_lower_roman_period_repeat1] = STATE(504), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(505), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(506), + [aux_sym__list_upper_roman_period_repeat1] = STATE(507), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(508), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(509), + [aux_sym_table_repeat1] = STATE(67), + [aux_sym_div_repeat1] = STATE(21), + [aux_sym__block_quote_prefix_repeat1] = STATE(226), [aux_sym__inline_repeat1] = STATE(273), - [anon_sym_LBRACK] = ACTIONS(181), + [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACK_CARET] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(11), - [aux_sym_identifier_token1] = ACTIONS(11), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_PERCENT] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(9), + [aux_sym_identifier_token1] = ACTIONS(9), + [aux_sym__inline_token1] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(9), + [anon_sym_PERCENT] = ACTIONS(9), [sym__block_close] = ACTIONS(360), [sym__newline] = ACTIONS(238), - [sym__heading_begin] = ACTIONS(17), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(189), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(191), + [sym__heading_begin] = ACTIONS(15), + [sym__div_begin] = ACTIONS(17), + [sym__code_block_begin] = ACTIONS(83), + [sym_list_marker_dash] = ACTIONS(21), + [sym_list_marker_star] = ACTIONS(23), + [sym_list_marker_plus] = ACTIONS(25), + [sym__list_marker_task_begin] = ACTIONS(27), + [sym_list_marker_definition] = ACTIONS(29), + [sym_list_marker_decimal_period] = ACTIONS(31), + [sym_list_marker_lower_alpha_period] = ACTIONS(33), + [sym_list_marker_upper_alpha_period] = ACTIONS(35), + [sym_list_marker_lower_roman_period] = ACTIONS(37), + [sym_list_marker_upper_roman_period] = ACTIONS(39), + [sym_list_marker_decimal_paren] = ACTIONS(41), + [sym_list_marker_lower_alpha_paren] = ACTIONS(43), + [sym_list_marker_upper_alpha_paren] = ACTIONS(45), + [sym_list_marker_lower_roman_paren] = ACTIONS(47), + [sym_list_marker_upper_roman_paren] = ACTIONS(49), + [sym_list_marker_decimal_parens] = ACTIONS(51), + [sym_list_marker_lower_alpha_parens] = ACTIONS(53), + [sym_list_marker_upper_alpha_parens] = ACTIONS(55), + [sym_list_marker_lower_roman_parens] = ACTIONS(57), + [sym_list_marker_upper_roman_parens] = ACTIONS(59), + [sym__block_quote_begin] = ACTIONS(85), [sym__block_quote_continuation] = ACTIONS(240), - [sym__thematic_break_dash] = ACTIONS(193), - [sym__thematic_break_star] = ACTIONS(193), - [sym__table_header_begin] = ACTIONS(195), - [sym__table_separator_begin] = ACTIONS(197), - [sym__table_row_begin] = ACTIONS(199), + [sym__thematic_break_dash] = ACTIONS(87), + [sym__thematic_break_star] = ACTIONS(87), + [sym__table_header_begin] = ACTIONS(89), + [sym__table_separator_begin] = ACTIONS(91), + [sym__table_row_begin] = ACTIONS(93), + [sym__block_attribute_begin] = ACTIONS(95), }, [21] = { - [sym__block_with_heading] = STATE(183), - [sym__block_element] = STATE(183), - [sym_heading] = STATE(183), - [sym_list] = STATE(183), - [sym__list_dash] = STATE(144), - [sym__list_item_dash] = STATE(553), - [sym__list_plus] = STATE(144), - [sym__list_item_plus] = STATE(554), - [sym__list_star] = STATE(144), - [sym__list_item_star] = STATE(556), - [sym__list_task] = STATE(144), - [sym__list_item_task] = STATE(558), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(144), - [sym__list_item_definition] = STATE(769), - [sym__list_decimal_period] = STATE(144), - [sym__list_item_decimal_period] = STATE(776), - [sym__list_decimal_paren] = STATE(144), - [sym__list_item_decimal_paren] = STATE(790), - [sym__list_decimal_parens] = STATE(144), - [sym__list_item_decimal_parens] = STATE(793), - [sym__list_lower_alpha_period] = STATE(144), - [sym__list_item_lower_alpha_period] = STATE(822), - [sym__list_lower_alpha_paren] = STATE(144), - [sym__list_item_lower_alpha_paren] = STATE(684), - [sym__list_lower_alpha_parens] = STATE(144), - [sym__list_item_lower_alpha_parens] = STATE(688), - [sym__list_upper_alpha_period] = STATE(144), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(144), - [sym__list_item_upper_alpha_paren] = STATE(705), - [sym__list_upper_alpha_parens] = STATE(144), - [sym__list_item_upper_alpha_parens] = STATE(711), - [sym__list_lower_roman_period] = STATE(144), - [sym__list_item_lower_roman_period] = STATE(712), - [sym__list_lower_roman_paren] = STATE(144), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(144), - [sym__list_item_lower_roman_parens] = STATE(728), - [sym__list_upper_roman_period] = STATE(144), - [sym__list_item_upper_roman_period] = STATE(734), - [sym__list_upper_roman_paren] = STATE(144), - [sym__list_item_upper_roman_paren] = STATE(830), - [sym__list_upper_roman_parens] = STATE(144), - [sym__list_item_upper_roman_parens] = STATE(725), - [sym_table] = STATE(183), - [sym__table_row] = STATE(66), - [sym_table_header] = STATE(66), - [sym_table_separator] = STATE(66), - [sym_table_row] = STATE(66), - [sym_footnote] = STATE(183), - [sym_footnote_marker_begin] = STATE(1141), - [sym_div] = STATE(183), - [sym__div_marker_begin] = STATE(1057), - [sym_code_block] = STATE(183), - [sym_raw_block] = STATE(183), - [sym_thematic_break] = STATE(183), - [sym_block_quote] = STATE(183), - [sym__block_quote_prefix] = STATE(218), - [sym_link_reference_definition] = STATE(183), - [sym_block_attribute] = STATE(183), - [sym__paragraph] = STATE(183), - [sym__paragraph_content] = STATE(750), - [sym__paragraph_inline_content] = STATE(778), - [sym__inline] = STATE(655), + [sym__block_with_heading] = STATE(168), + [sym__block_element] = STATE(168), + [sym_heading] = STATE(168), + [sym_list] = STATE(168), + [sym__list_dash] = STATE(129), + [sym__list_item_dash] = STATE(645), + [sym__list_plus] = STATE(129), + [sym__list_item_plus] = STATE(661), + [sym__list_star] = STATE(129), + [sym__list_item_star] = STATE(573), + [sym__list_task] = STATE(129), + [sym__list_item_task] = STATE(590), + [sym_list_marker_task] = STATE(43), + [sym__list_definition] = STATE(129), + [sym__list_item_definition] = STATE(740), + [sym__list_decimal_period] = STATE(129), + [sym__list_item_decimal_period] = STATE(743), + [sym__list_decimal_paren] = STATE(129), + [sym__list_item_decimal_paren] = STATE(748), + [sym__list_decimal_parens] = STATE(129), + [sym__list_item_decimal_parens] = STATE(768), + [sym__list_lower_alpha_period] = STATE(129), + [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_lower_alpha_paren] = STATE(129), + [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_lower_alpha_parens] = STATE(129), + [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_upper_alpha_period] = STATE(129), + [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_upper_alpha_paren] = STATE(129), + [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_upper_alpha_parens] = STATE(129), + [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_lower_roman_period] = STATE(129), + [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_lower_roman_paren] = STATE(129), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(129), + [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_upper_roman_period] = STATE(129), + [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_upper_roman_paren] = STATE(129), + [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_upper_roman_parens] = STATE(129), + [sym__list_item_upper_roman_parens] = STATE(819), + [sym_table] = STATE(168), + [sym__table_row] = STATE(67), + [sym_table_header] = STATE(67), + [sym_table_separator] = STATE(67), + [sym_table_row] = STATE(67), + [sym_footnote] = STATE(168), + [sym_footnote_marker_begin] = STATE(894), + [sym_div] = STATE(168), + [sym__div_marker_begin] = STATE(1056), + [sym_code_block] = STATE(168), + [sym_raw_block] = STATE(168), + [sym_thematic_break] = STATE(168), + [sym_block_quote] = STATE(168), + [sym__block_quote_prefix] = STATE(220), + [sym_link_reference_definition] = STATE(168), + [sym_block_attribute] = STATE(168), + [sym__paragraph] = STATE(168), + [sym__paragraph_content] = STATE(784), + [sym__paragraph_inline_content] = STATE(837), + [sym__inline] = STATE(656), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(334), - [aux_sym__list_plus_repeat1] = STATE(335), - [aux_sym__list_star_repeat1] = STATE(336), - [aux_sym__list_task_repeat1] = STATE(309), - [aux_sym__list_definition_repeat1] = STATE(425), - [aux_sym__list_decimal_period_repeat1] = STATE(426), - [aux_sym__list_decimal_paren_repeat1] = STATE(427), - [aux_sym__list_decimal_parens_repeat1] = STATE(428), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(429), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(430), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(431), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(432), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(433), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(434), - [aux_sym__list_lower_roman_period_repeat1] = STATE(435), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(436), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(437), - [aux_sym__list_upper_roman_period_repeat1] = STATE(438), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(439), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(440), - [aux_sym_table_repeat1] = STATE(66), - [aux_sym_div_repeat1] = STATE(12), - [aux_sym__block_quote_prefix_repeat1] = STATE(231), + [aux_sym__list_dash_repeat1] = STATE(322), + [aux_sym__list_plus_repeat1] = STATE(323), + [aux_sym__list_star_repeat1] = STATE(324), + [aux_sym__list_task_repeat1] = STATE(285), + [aux_sym__list_definition_repeat1] = STATE(494), + [aux_sym__list_decimal_period_repeat1] = STATE(495), + [aux_sym__list_decimal_paren_repeat1] = STATE(496), + [aux_sym__list_decimal_parens_repeat1] = STATE(497), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(498), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(499), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(500), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(501), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(502), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(503), + [aux_sym__list_lower_roman_period_repeat1] = STATE(504), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(505), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(506), + [aux_sym__list_upper_roman_period_repeat1] = STATE(507), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(508), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(509), + [aux_sym_table_repeat1] = STATE(67), + [aux_sym_div_repeat1] = STATE(13), + [aux_sym__block_quote_prefix_repeat1] = STATE(226), [aux_sym__inline_repeat1] = STATE(273), - [anon_sym_LBRACK] = ACTIONS(181), + [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACK_CARET] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(11), - [aux_sym_identifier_token1] = ACTIONS(11), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_PERCENT] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(9), + [aux_sym_identifier_token1] = ACTIONS(9), + [aux_sym__inline_token1] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(9), + [anon_sym_PERCENT] = ACTIONS(9), [sym__block_close] = ACTIONS(362), [sym__newline] = ACTIONS(238), - [sym__heading_begin] = ACTIONS(17), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(189), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(191), + [sym__heading_begin] = ACTIONS(15), + [sym__div_begin] = ACTIONS(17), + [sym__code_block_begin] = ACTIONS(83), + [sym_list_marker_dash] = ACTIONS(21), + [sym_list_marker_star] = ACTIONS(23), + [sym_list_marker_plus] = ACTIONS(25), + [sym__list_marker_task_begin] = ACTIONS(27), + [sym_list_marker_definition] = ACTIONS(29), + [sym_list_marker_decimal_period] = ACTIONS(31), + [sym_list_marker_lower_alpha_period] = ACTIONS(33), + [sym_list_marker_upper_alpha_period] = ACTIONS(35), + [sym_list_marker_lower_roman_period] = ACTIONS(37), + [sym_list_marker_upper_roman_period] = ACTIONS(39), + [sym_list_marker_decimal_paren] = ACTIONS(41), + [sym_list_marker_lower_alpha_paren] = ACTIONS(43), + [sym_list_marker_upper_alpha_paren] = ACTIONS(45), + [sym_list_marker_lower_roman_paren] = ACTIONS(47), + [sym_list_marker_upper_roman_paren] = ACTIONS(49), + [sym_list_marker_decimal_parens] = ACTIONS(51), + [sym_list_marker_lower_alpha_parens] = ACTIONS(53), + [sym_list_marker_upper_alpha_parens] = ACTIONS(55), + [sym_list_marker_lower_roman_parens] = ACTIONS(57), + [sym_list_marker_upper_roman_parens] = ACTIONS(59), + [sym__block_quote_begin] = ACTIONS(85), [sym__block_quote_continuation] = ACTIONS(240), - [sym__thematic_break_dash] = ACTIONS(193), - [sym__thematic_break_star] = ACTIONS(193), - [sym__table_header_begin] = ACTIONS(195), - [sym__table_separator_begin] = ACTIONS(197), - [sym__table_row_begin] = ACTIONS(199), + [sym__thematic_break_dash] = ACTIONS(87), + [sym__thematic_break_star] = ACTIONS(87), + [sym__table_header_begin] = ACTIONS(89), + [sym__table_separator_begin] = ACTIONS(91), + [sym__table_row_begin] = ACTIONS(93), + [sym__block_attribute_begin] = ACTIONS(95), }, [22] = { - [sym__block_with_heading] = STATE(1077), - [sym__block_element] = STATE(1077), - [sym_heading] = STATE(1077), - [sym_list] = STATE(1077), - [sym__list_dash] = STATE(998), - [sym__list_item_dash] = STATE(553), - [sym__list_plus] = STATE(998), - [sym__list_item_plus] = STATE(554), - [sym__list_star] = STATE(998), - [sym__list_item_star] = STATE(556), - [sym__list_task] = STATE(998), - [sym__list_item_task] = STATE(558), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(998), - [sym__list_item_definition] = STATE(769), - [sym__list_decimal_period] = STATE(998), - [sym__list_item_decimal_period] = STATE(776), - [sym__list_decimal_paren] = STATE(998), - [sym__list_item_decimal_paren] = STATE(790), - [sym__list_decimal_parens] = STATE(998), - [sym__list_item_decimal_parens] = STATE(793), - [sym__list_lower_alpha_period] = STATE(998), - [sym__list_item_lower_alpha_period] = STATE(822), - [sym__list_lower_alpha_paren] = STATE(998), - [sym__list_item_lower_alpha_paren] = STATE(684), - [sym__list_lower_alpha_parens] = STATE(998), - [sym__list_item_lower_alpha_parens] = STATE(688), - [sym__list_upper_alpha_period] = STATE(998), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(998), - [sym__list_item_upper_alpha_paren] = STATE(705), - [sym__list_upper_alpha_parens] = STATE(998), - [sym__list_item_upper_alpha_parens] = STATE(711), - [sym__list_lower_roman_period] = STATE(998), - [sym__list_item_lower_roman_period] = STATE(712), - [sym__list_lower_roman_paren] = STATE(998), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(998), - [sym__list_item_lower_roman_parens] = STATE(728), - [sym__list_upper_roman_period] = STATE(998), - [sym__list_item_upper_roman_period] = STATE(734), - [sym__list_upper_roman_paren] = STATE(998), - [sym__list_item_upper_roman_paren] = STATE(830), - [sym__list_upper_roman_parens] = STATE(998), - [sym__list_item_upper_roman_parens] = STATE(725), - [sym_list_item_content] = STATE(682), - [sym_table] = STATE(1077), - [sym__table_row] = STATE(241), - [sym_table_header] = STATE(241), - [sym_table_separator] = STATE(241), - [sym_table_row] = STATE(241), - [sym_footnote] = STATE(1077), - [sym_footnote_marker_begin] = STATE(1137), - [sym_div] = STATE(1077), - [sym__div_marker_begin] = STATE(1019), - [sym_code_block] = STATE(1077), - [sym_raw_block] = STATE(1077), - [sym_thematic_break] = STATE(1077), - [sym_block_quote] = STATE(1077), - [sym__block_quote_prefix] = STATE(223), - [sym_link_reference_definition] = STATE(1077), - [sym_block_attribute] = STATE(1077), - [sym__paragraph] = STATE(1077), - [sym__paragraph_content] = STATE(707), - [sym__paragraph_inline_content] = STATE(778), - [sym__inline] = STATE(655), + [sym__block_with_heading] = STATE(1039), + [sym__block_element] = STATE(1039), + [sym_heading] = STATE(1039), + [sym_list] = STATE(1039), + [sym__list_dash] = STATE(1008), + [sym__list_item_dash] = STATE(645), + [sym__list_plus] = STATE(1008), + [sym__list_item_plus] = STATE(661), + [sym__list_star] = STATE(1008), + [sym__list_item_star] = STATE(573), + [sym__list_task] = STATE(1008), + [sym__list_item_task] = STATE(590), + [sym_list_marker_task] = STATE(43), + [sym__list_definition] = STATE(1008), + [sym__list_item_definition] = STATE(740), + [sym__list_decimal_period] = STATE(1008), + [sym__list_item_decimal_period] = STATE(743), + [sym__list_decimal_paren] = STATE(1008), + [sym__list_item_decimal_paren] = STATE(748), + [sym__list_decimal_parens] = STATE(1008), + [sym__list_item_decimal_parens] = STATE(768), + [sym__list_lower_alpha_period] = STATE(1008), + [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_lower_alpha_paren] = STATE(1008), + [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_lower_alpha_parens] = STATE(1008), + [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_upper_alpha_period] = STATE(1008), + [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_upper_alpha_paren] = STATE(1008), + [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_upper_alpha_parens] = STATE(1008), + [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_lower_roman_period] = STATE(1008), + [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_lower_roman_paren] = STATE(1008), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(1008), + [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_upper_roman_period] = STATE(1008), + [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_upper_roman_paren] = STATE(1008), + [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_upper_roman_parens] = STATE(1008), + [sym__list_item_upper_roman_parens] = STATE(819), + [sym_list_item_content] = STATE(593), + [sym_table] = STATE(1039), + [sym__table_row] = STATE(234), + [sym_table_header] = STATE(234), + [sym_table_separator] = STATE(234), + [sym_table_row] = STATE(234), + [sym_footnote] = STATE(1039), + [sym_footnote_marker_begin] = STATE(1136), + [sym_div] = STATE(1039), + [sym__div_marker_begin] = STATE(1018), + [sym_code_block] = STATE(1039), + [sym_raw_block] = STATE(1039), + [sym_thematic_break] = STATE(1039), + [sym_block_quote] = STATE(1039), + [sym__block_quote_prefix] = STATE(225), + [sym_link_reference_definition] = STATE(1039), + [sym_block_attribute] = STATE(1039), + [sym__paragraph] = STATE(1039), + [sym__paragraph_content] = STATE(724), + [sym__paragraph_inline_content] = STATE(837), + [sym__inline] = STATE(656), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(326), - [aux_sym__list_plus_repeat1] = STATE(329), - [aux_sym__list_star_repeat1] = STATE(330), - [aux_sym__list_task_repeat1] = STATE(298), - [aux_sym__list_definition_repeat1] = STATE(508), - [aux_sym__list_decimal_period_repeat1] = STATE(509), - [aux_sym__list_decimal_paren_repeat1] = STATE(510), - [aux_sym__list_decimal_parens_repeat1] = STATE(511), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(512), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(513), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(514), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(515), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(516), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(517), - [aux_sym__list_lower_roman_period_repeat1] = STATE(526), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(531), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(534), - [aux_sym__list_upper_roman_period_repeat1] = STATE(544), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(441), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(442), - [aux_sym_table_repeat1] = STATE(241), - [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__list_dash_repeat1] = STATE(318), + [aux_sym__list_plus_repeat1] = STATE(319), + [aux_sym__list_star_repeat1] = STATE(320), + [aux_sym__list_task_repeat1] = STATE(287), + [aux_sym__list_definition_repeat1] = STATE(459), + [aux_sym__list_decimal_period_repeat1] = STATE(460), + [aux_sym__list_decimal_paren_repeat1] = STATE(461), + [aux_sym__list_decimal_parens_repeat1] = STATE(462), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(463), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(464), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(465), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(466), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(467), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(468), + [aux_sym__list_lower_roman_period_repeat1] = STATE(469), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(470), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(471), + [aux_sym__list_upper_roman_period_repeat1] = STATE(472), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(473), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym_table_repeat1] = STATE(234), + [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(366), - [anon_sym_DOT] = ACTIONS(11), - [aux_sym_identifier_token1] = ACTIONS(11), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_PERCENT] = ACTIONS(11), - [sym__newline] = ACTIONS(368), - [sym__heading_begin] = ACTIONS(370), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(372), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(374), - [sym__block_quote_continuation] = ACTIONS(376), - [sym__thematic_break_dash] = ACTIONS(378), - [sym__thematic_break_star] = ACTIONS(378), - [sym__table_header_begin] = ACTIONS(380), - [sym__table_separator_begin] = ACTIONS(382), - [sym__table_row_begin] = ACTIONS(384), + [anon_sym_DOT] = ACTIONS(9), + [aux_sym_identifier_token1] = ACTIONS(9), + [aux_sym__inline_token1] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(9), + [anon_sym_PERCENT] = ACTIONS(9), + [sym__newline] = ACTIONS(366), + [sym__heading_begin] = ACTIONS(368), + [sym__div_begin] = ACTIONS(17), + [sym__code_block_begin] = ACTIONS(370), + [sym_list_marker_dash] = ACTIONS(21), + [sym_list_marker_star] = ACTIONS(23), + [sym_list_marker_plus] = ACTIONS(25), + [sym__list_marker_task_begin] = ACTIONS(27), + [sym_list_marker_definition] = ACTIONS(29), + [sym_list_marker_decimal_period] = ACTIONS(31), + [sym_list_marker_lower_alpha_period] = ACTIONS(33), + [sym_list_marker_upper_alpha_period] = ACTIONS(35), + [sym_list_marker_lower_roman_period] = ACTIONS(37), + [sym_list_marker_upper_roman_period] = ACTIONS(39), + [sym_list_marker_decimal_paren] = ACTIONS(41), + [sym_list_marker_lower_alpha_paren] = ACTIONS(43), + [sym_list_marker_upper_alpha_paren] = ACTIONS(45), + [sym_list_marker_lower_roman_paren] = ACTIONS(47), + [sym_list_marker_upper_roman_paren] = ACTIONS(49), + [sym_list_marker_decimal_parens] = ACTIONS(51), + [sym_list_marker_lower_alpha_parens] = ACTIONS(53), + [sym_list_marker_upper_alpha_parens] = ACTIONS(55), + [sym_list_marker_lower_roman_parens] = ACTIONS(57), + [sym_list_marker_upper_roman_parens] = ACTIONS(59), + [sym__block_quote_begin] = ACTIONS(372), + [sym__block_quote_continuation] = ACTIONS(374), + [sym__thematic_break_dash] = ACTIONS(376), + [sym__thematic_break_star] = ACTIONS(376), + [sym__table_header_begin] = ACTIONS(378), + [sym__table_separator_begin] = ACTIONS(380), + [sym__table_row_begin] = ACTIONS(382), + [sym__block_attribute_begin] = ACTIONS(384), }, [23] = { - [sym__block_with_heading] = STATE(1090), - [sym__block_element] = STATE(1090), - [sym_heading] = STATE(1090), - [sym_list] = STATE(1090), - [sym__list_dash] = STATE(998), - [sym__list_item_dash] = STATE(553), - [sym__list_plus] = STATE(998), - [sym__list_item_plus] = STATE(554), - [sym__list_star] = STATE(998), - [sym__list_item_star] = STATE(556), - [sym__list_task] = STATE(998), - [sym__list_item_task] = STATE(558), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(998), - [sym__list_item_definition] = STATE(769), - [sym__list_decimal_period] = STATE(998), - [sym__list_item_decimal_period] = STATE(776), - [sym__list_decimal_paren] = STATE(998), - [sym__list_item_decimal_paren] = STATE(790), - [sym__list_decimal_parens] = STATE(998), - [sym__list_item_decimal_parens] = STATE(793), - [sym__list_lower_alpha_period] = STATE(998), - [sym__list_item_lower_alpha_period] = STATE(822), - [sym__list_lower_alpha_paren] = STATE(998), - [sym__list_item_lower_alpha_paren] = STATE(684), - [sym__list_lower_alpha_parens] = STATE(998), - [sym__list_item_lower_alpha_parens] = STATE(688), - [sym__list_upper_alpha_period] = STATE(998), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(998), - [sym__list_item_upper_alpha_paren] = STATE(705), - [sym__list_upper_alpha_parens] = STATE(998), - [sym__list_item_upper_alpha_parens] = STATE(711), - [sym__list_lower_roman_period] = STATE(998), - [sym__list_item_lower_roman_period] = STATE(712), - [sym__list_lower_roman_paren] = STATE(998), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(998), - [sym__list_item_lower_roman_parens] = STATE(728), - [sym__list_upper_roman_period] = STATE(998), - [sym__list_item_upper_roman_period] = STATE(734), - [sym__list_upper_roman_paren] = STATE(998), - [sym__list_item_upper_roman_paren] = STATE(830), - [sym__list_upper_roman_parens] = STATE(998), - [sym__list_item_upper_roman_parens] = STATE(725), - [sym_table] = STATE(1090), - [sym__table_row] = STATE(241), - [sym_table_header] = STATE(241), - [sym_table_separator] = STATE(241), - [sym_table_row] = STATE(241), - [sym_footnote] = STATE(1090), - [sym_footnote_marker_begin] = STATE(1137), - [sym_footnote_content] = STATE(605), - [sym_div] = STATE(1090), - [sym__div_marker_begin] = STATE(1019), - [sym_code_block] = STATE(1090), - [sym_raw_block] = STATE(1090), - [sym_thematic_break] = STATE(1090), - [sym_block_quote] = STATE(1090), - [sym__block_quote_prefix] = STATE(223), - [sym_link_reference_definition] = STATE(1090), - [sym_block_attribute] = STATE(1090), - [sym__paragraph] = STATE(1090), - [sym__paragraph_content] = STATE(707), - [sym__paragraph_inline_content] = STATE(778), - [sym__inline] = STATE(655), - [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(326), - [aux_sym__list_plus_repeat1] = STATE(329), - [aux_sym__list_star_repeat1] = STATE(330), - [aux_sym__list_task_repeat1] = STATE(298), - [aux_sym__list_definition_repeat1] = STATE(508), - [aux_sym__list_decimal_period_repeat1] = STATE(509), - [aux_sym__list_decimal_paren_repeat1] = STATE(510), - [aux_sym__list_decimal_parens_repeat1] = STATE(511), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(512), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(513), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(514), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(515), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(516), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(517), - [aux_sym__list_lower_roman_period_repeat1] = STATE(526), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(531), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(534), - [aux_sym__list_upper_roman_period_repeat1] = STATE(544), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(441), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(442), - [aux_sym_table_repeat1] = STATE(241), - [aux_sym__block_quote_prefix_repeat1] = STATE(234), - [aux_sym__inline_repeat1] = STATE(273), - [anon_sym_LBRACK] = ACTIONS(364), - [anon_sym_LBRACK_CARET] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(366), - [anon_sym_DOT] = ACTIONS(11), - [aux_sym_identifier_token1] = ACTIONS(11), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_PERCENT] = ACTIONS(11), - [sym__newline] = ACTIONS(386), - [sym__heading_begin] = ACTIONS(370), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(372), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(374), - [sym__block_quote_continuation] = ACTIONS(376), - [sym__thematic_break_dash] = ACTIONS(378), - [sym__thematic_break_star] = ACTIONS(378), - [sym__table_header_begin] = ACTIONS(380), - [sym__table_separator_begin] = ACTIONS(382), - [sym__table_row_begin] = ACTIONS(384), - }, - [24] = { [sym__block_with_heading] = STATE(1092), [sym__block_element] = STATE(1092), [sym_heading] = STATE(1092), [sym_list] = STATE(1092), - [sym__list_dash] = STATE(998), - [sym__list_item_dash] = STATE(553), - [sym__list_plus] = STATE(998), - [sym__list_item_plus] = STATE(554), - [sym__list_star] = STATE(998), - [sym__list_item_star] = STATE(556), - [sym__list_task] = STATE(998), - [sym__list_item_task] = STATE(558), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(998), - [sym__list_item_definition] = STATE(769), - [sym__list_decimal_period] = STATE(998), - [sym__list_item_decimal_period] = STATE(776), - [sym__list_decimal_paren] = STATE(998), - [sym__list_item_decimal_paren] = STATE(790), - [sym__list_decimal_parens] = STATE(998), - [sym__list_item_decimal_parens] = STATE(793), - [sym__list_lower_alpha_period] = STATE(998), - [sym__list_item_lower_alpha_period] = STATE(822), - [sym__list_lower_alpha_paren] = STATE(998), - [sym__list_item_lower_alpha_paren] = STATE(684), - [sym__list_lower_alpha_parens] = STATE(998), - [sym__list_item_lower_alpha_parens] = STATE(688), - [sym__list_upper_alpha_period] = STATE(998), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(998), - [sym__list_item_upper_alpha_paren] = STATE(705), - [sym__list_upper_alpha_parens] = STATE(998), - [sym__list_item_upper_alpha_parens] = STATE(711), - [sym__list_lower_roman_period] = STATE(998), - [sym__list_item_lower_roman_period] = STATE(712), - [sym__list_lower_roman_paren] = STATE(998), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(998), - [sym__list_item_lower_roman_parens] = STATE(728), - [sym__list_upper_roman_period] = STATE(998), - [sym__list_item_upper_roman_period] = STATE(734), - [sym__list_upper_roman_paren] = STATE(998), - [sym__list_item_upper_roman_paren] = STATE(830), - [sym__list_upper_roman_parens] = STATE(998), - [sym__list_item_upper_roman_parens] = STATE(725), - [sym_list_item_content] = STATE(708), + [sym__list_dash] = STATE(1008), + [sym__list_item_dash] = STATE(645), + [sym__list_plus] = STATE(1008), + [sym__list_item_plus] = STATE(661), + [sym__list_star] = STATE(1008), + [sym__list_item_star] = STATE(573), + [sym__list_task] = STATE(1008), + [sym__list_item_task] = STATE(590), + [sym_list_marker_task] = STATE(43), + [sym__list_definition] = STATE(1008), + [sym__list_item_definition] = STATE(740), + [sym__list_decimal_period] = STATE(1008), + [sym__list_item_decimal_period] = STATE(743), + [sym__list_decimal_paren] = STATE(1008), + [sym__list_item_decimal_paren] = STATE(748), + [sym__list_decimal_parens] = STATE(1008), + [sym__list_item_decimal_parens] = STATE(768), + [sym__list_lower_alpha_period] = STATE(1008), + [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_lower_alpha_paren] = STATE(1008), + [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_lower_alpha_parens] = STATE(1008), + [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_upper_alpha_period] = STATE(1008), + [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_upper_alpha_paren] = STATE(1008), + [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_upper_alpha_parens] = STATE(1008), + [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_lower_roman_period] = STATE(1008), + [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_lower_roman_paren] = STATE(1008), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(1008), + [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_upper_roman_period] = STATE(1008), + [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_upper_roman_paren] = STATE(1008), + [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_upper_roman_parens] = STATE(1008), + [sym__list_item_upper_roman_parens] = STATE(819), + [sym_list_item_content] = STATE(772), [sym_table] = STATE(1092), - [sym__table_row] = STATE(241), - [sym_table_header] = STATE(241), - [sym_table_separator] = STATE(241), - [sym_table_row] = STATE(241), + [sym__table_row] = STATE(234), + [sym_table_header] = STATE(234), + [sym_table_separator] = STATE(234), + [sym_table_row] = STATE(234), [sym_footnote] = STATE(1092), - [sym_footnote_marker_begin] = STATE(1137), + [sym_footnote_marker_begin] = STATE(1136), [sym_div] = STATE(1092), - [sym__div_marker_begin] = STATE(1019), + [sym__div_marker_begin] = STATE(1018), [sym_code_block] = STATE(1092), [sym_raw_block] = STATE(1092), [sym_thematic_break] = STATE(1092), [sym_block_quote] = STATE(1092), - [sym__block_quote_prefix] = STATE(223), + [sym__block_quote_prefix] = STATE(225), [sym_link_reference_definition] = STATE(1092), [sym_block_attribute] = STATE(1092), [sym__paragraph] = STATE(1092), - [sym__paragraph_content] = STATE(707), - [sym__paragraph_inline_content] = STATE(778), - [sym__inline] = STATE(655), + [sym__paragraph_content] = STATE(724), + [sym__paragraph_inline_content] = STATE(837), + [sym__inline] = STATE(656), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(326), - [aux_sym__list_plus_repeat1] = STATE(329), - [aux_sym__list_star_repeat1] = STATE(330), - [aux_sym__list_task_repeat1] = STATE(298), - [aux_sym__list_definition_repeat1] = STATE(508), - [aux_sym__list_decimal_period_repeat1] = STATE(509), - [aux_sym__list_decimal_paren_repeat1] = STATE(510), - [aux_sym__list_decimal_parens_repeat1] = STATE(511), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(512), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(513), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(514), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(515), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(516), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(517), - [aux_sym__list_lower_roman_period_repeat1] = STATE(526), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(531), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(534), - [aux_sym__list_upper_roman_period_repeat1] = STATE(544), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(441), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(442), - [aux_sym_table_repeat1] = STATE(241), - [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__list_dash_repeat1] = STATE(318), + [aux_sym__list_plus_repeat1] = STATE(319), + [aux_sym__list_star_repeat1] = STATE(320), + [aux_sym__list_task_repeat1] = STATE(287), + [aux_sym__list_definition_repeat1] = STATE(459), + [aux_sym__list_decimal_period_repeat1] = STATE(460), + [aux_sym__list_decimal_paren_repeat1] = STATE(461), + [aux_sym__list_decimal_parens_repeat1] = STATE(462), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(463), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(464), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(465), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(466), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(467), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(468), + [aux_sym__list_lower_roman_period_repeat1] = STATE(469), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(470), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(471), + [aux_sym__list_upper_roman_period_repeat1] = STATE(472), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(473), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym_table_repeat1] = STATE(234), + [aux_sym__block_quote_prefix_repeat1] = STATE(230), + [aux_sym__inline_repeat1] = STATE(273), + [anon_sym_LBRACK] = ACTIONS(364), + [anon_sym_LBRACK_CARET] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(9), + [aux_sym_identifier_token1] = ACTIONS(9), + [aux_sym__inline_token1] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(9), + [anon_sym_PERCENT] = ACTIONS(9), + [sym__newline] = ACTIONS(386), + [sym__heading_begin] = ACTIONS(368), + [sym__div_begin] = ACTIONS(17), + [sym__code_block_begin] = ACTIONS(370), + [sym_list_marker_dash] = ACTIONS(21), + [sym_list_marker_star] = ACTIONS(23), + [sym_list_marker_plus] = ACTIONS(25), + [sym__list_marker_task_begin] = ACTIONS(27), + [sym_list_marker_definition] = ACTIONS(29), + [sym_list_marker_decimal_period] = ACTIONS(31), + [sym_list_marker_lower_alpha_period] = ACTIONS(33), + [sym_list_marker_upper_alpha_period] = ACTIONS(35), + [sym_list_marker_lower_roman_period] = ACTIONS(37), + [sym_list_marker_upper_roman_period] = ACTIONS(39), + [sym_list_marker_decimal_paren] = ACTIONS(41), + [sym_list_marker_lower_alpha_paren] = ACTIONS(43), + [sym_list_marker_upper_alpha_paren] = ACTIONS(45), + [sym_list_marker_lower_roman_paren] = ACTIONS(47), + [sym_list_marker_upper_roman_paren] = ACTIONS(49), + [sym_list_marker_decimal_parens] = ACTIONS(51), + [sym_list_marker_lower_alpha_parens] = ACTIONS(53), + [sym_list_marker_upper_alpha_parens] = ACTIONS(55), + [sym_list_marker_lower_roman_parens] = ACTIONS(57), + [sym_list_marker_upper_roman_parens] = ACTIONS(59), + [sym__block_quote_begin] = ACTIONS(372), + [sym__block_quote_continuation] = ACTIONS(374), + [sym__thematic_break_dash] = ACTIONS(376), + [sym__thematic_break_star] = ACTIONS(376), + [sym__table_header_begin] = ACTIONS(378), + [sym__table_separator_begin] = ACTIONS(380), + [sym__table_row_begin] = ACTIONS(382), + [sym__block_attribute_begin] = ACTIONS(384), + }, + [24] = { + [sym__block_with_heading] = STATE(1093), + [sym__block_element] = STATE(1093), + [sym_heading] = STATE(1093), + [sym_list] = STATE(1093), + [sym__list_dash] = STATE(1008), + [sym__list_item_dash] = STATE(645), + [sym__list_plus] = STATE(1008), + [sym__list_item_plus] = STATE(661), + [sym__list_star] = STATE(1008), + [sym__list_item_star] = STATE(573), + [sym__list_task] = STATE(1008), + [sym__list_item_task] = STATE(590), + [sym_list_marker_task] = STATE(43), + [sym__list_definition] = STATE(1008), + [sym__list_item_definition] = STATE(740), + [sym__list_decimal_period] = STATE(1008), + [sym__list_item_decimal_period] = STATE(743), + [sym__list_decimal_paren] = STATE(1008), + [sym__list_item_decimal_paren] = STATE(748), + [sym__list_decimal_parens] = STATE(1008), + [sym__list_item_decimal_parens] = STATE(768), + [sym__list_lower_alpha_period] = STATE(1008), + [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_lower_alpha_paren] = STATE(1008), + [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_lower_alpha_parens] = STATE(1008), + [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_upper_alpha_period] = STATE(1008), + [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_upper_alpha_paren] = STATE(1008), + [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_upper_alpha_parens] = STATE(1008), + [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_lower_roman_period] = STATE(1008), + [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_lower_roman_paren] = STATE(1008), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(1008), + [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_upper_roman_period] = STATE(1008), + [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_upper_roman_paren] = STATE(1008), + [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_upper_roman_parens] = STATE(1008), + [sym__list_item_upper_roman_parens] = STATE(819), + [sym_list_item_content] = STATE(775), + [sym_table] = STATE(1093), + [sym__table_row] = STATE(234), + [sym_table_header] = STATE(234), + [sym_table_separator] = STATE(234), + [sym_table_row] = STATE(234), + [sym_footnote] = STATE(1093), + [sym_footnote_marker_begin] = STATE(1136), + [sym_div] = STATE(1093), + [sym__div_marker_begin] = STATE(1018), + [sym_code_block] = STATE(1093), + [sym_raw_block] = STATE(1093), + [sym_thematic_break] = STATE(1093), + [sym_block_quote] = STATE(1093), + [sym__block_quote_prefix] = STATE(225), + [sym_link_reference_definition] = STATE(1093), + [sym_block_attribute] = STATE(1093), + [sym__paragraph] = STATE(1093), + [sym__paragraph_content] = STATE(724), + [sym__paragraph_inline_content] = STATE(837), + [sym__inline] = STATE(656), + [sym__symbol_fallback] = STATE(273), + [aux_sym__list_dash_repeat1] = STATE(318), + [aux_sym__list_plus_repeat1] = STATE(319), + [aux_sym__list_star_repeat1] = STATE(320), + [aux_sym__list_task_repeat1] = STATE(287), + [aux_sym__list_definition_repeat1] = STATE(459), + [aux_sym__list_decimal_period_repeat1] = STATE(460), + [aux_sym__list_decimal_paren_repeat1] = STATE(461), + [aux_sym__list_decimal_parens_repeat1] = STATE(462), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(463), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(464), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(465), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(466), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(467), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(468), + [aux_sym__list_lower_roman_period_repeat1] = STATE(469), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(470), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(471), + [aux_sym__list_upper_roman_period_repeat1] = STATE(472), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(473), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym_table_repeat1] = STATE(234), + [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(366), - [anon_sym_DOT] = ACTIONS(11), - [aux_sym_identifier_token1] = ACTIONS(11), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_PERCENT] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(9), + [aux_sym_identifier_token1] = ACTIONS(9), + [aux_sym__inline_token1] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(9), + [anon_sym_PERCENT] = ACTIONS(9), [sym__newline] = ACTIONS(388), - [sym__heading_begin] = ACTIONS(370), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(372), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(374), - [sym__block_quote_continuation] = ACTIONS(376), - [sym__thematic_break_dash] = ACTIONS(378), - [sym__thematic_break_star] = ACTIONS(378), - [sym__table_header_begin] = ACTIONS(380), - [sym__table_separator_begin] = ACTIONS(382), - [sym__table_row_begin] = ACTIONS(384), + [sym__heading_begin] = ACTIONS(368), + [sym__div_begin] = ACTIONS(17), + [sym__code_block_begin] = ACTIONS(370), + [sym_list_marker_dash] = ACTIONS(21), + [sym_list_marker_star] = ACTIONS(23), + [sym_list_marker_plus] = ACTIONS(25), + [sym__list_marker_task_begin] = ACTIONS(27), + [sym_list_marker_definition] = ACTIONS(29), + [sym_list_marker_decimal_period] = ACTIONS(31), + [sym_list_marker_lower_alpha_period] = ACTIONS(33), + [sym_list_marker_upper_alpha_period] = ACTIONS(35), + [sym_list_marker_lower_roman_period] = ACTIONS(37), + [sym_list_marker_upper_roman_period] = ACTIONS(39), + [sym_list_marker_decimal_paren] = ACTIONS(41), + [sym_list_marker_lower_alpha_paren] = ACTIONS(43), + [sym_list_marker_upper_alpha_paren] = ACTIONS(45), + [sym_list_marker_lower_roman_paren] = ACTIONS(47), + [sym_list_marker_upper_roman_paren] = ACTIONS(49), + [sym_list_marker_decimal_parens] = ACTIONS(51), + [sym_list_marker_lower_alpha_parens] = ACTIONS(53), + [sym_list_marker_upper_alpha_parens] = ACTIONS(55), + [sym_list_marker_lower_roman_parens] = ACTIONS(57), + [sym_list_marker_upper_roman_parens] = ACTIONS(59), + [sym__block_quote_begin] = ACTIONS(372), + [sym__block_quote_continuation] = ACTIONS(374), + [sym__thematic_break_dash] = ACTIONS(376), + [sym__thematic_break_star] = ACTIONS(376), + [sym__table_header_begin] = ACTIONS(378), + [sym__table_separator_begin] = ACTIONS(380), + [sym__table_row_begin] = ACTIONS(382), + [sym__block_attribute_begin] = ACTIONS(384), }, [25] = { - [sym__block_with_heading] = STATE(1021), - [sym__block_element] = STATE(1021), - [sym_heading] = STATE(1021), - [sym_list] = STATE(1021), - [sym__list_dash] = STATE(998), - [sym__list_item_dash] = STATE(553), - [sym__list_plus] = STATE(998), - [sym__list_item_plus] = STATE(554), - [sym__list_star] = STATE(998), - [sym__list_item_star] = STATE(556), - [sym__list_task] = STATE(998), - [sym__list_item_task] = STATE(558), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(998), - [sym__list_item_definition] = STATE(769), - [sym__list_decimal_period] = STATE(998), - [sym__list_item_decimal_period] = STATE(776), - [sym__list_decimal_paren] = STATE(998), - [sym__list_item_decimal_paren] = STATE(790), - [sym__list_decimal_parens] = STATE(998), - [sym__list_item_decimal_parens] = STATE(793), - [sym__list_lower_alpha_period] = STATE(998), - [sym__list_item_lower_alpha_period] = STATE(822), - [sym__list_lower_alpha_paren] = STATE(998), - [sym__list_item_lower_alpha_paren] = STATE(684), - [sym__list_lower_alpha_parens] = STATE(998), - [sym__list_item_lower_alpha_parens] = STATE(688), - [sym__list_upper_alpha_period] = STATE(998), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(998), - [sym__list_item_upper_alpha_paren] = STATE(705), - [sym__list_upper_alpha_parens] = STATE(998), - [sym__list_item_upper_alpha_parens] = STATE(711), - [sym__list_lower_roman_period] = STATE(998), - [sym__list_item_lower_roman_period] = STATE(712), - [sym__list_lower_roman_paren] = STATE(998), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(998), - [sym__list_item_lower_roman_parens] = STATE(728), - [sym__list_upper_roman_period] = STATE(998), - [sym__list_item_upper_roman_period] = STATE(734), - [sym__list_upper_roman_paren] = STATE(998), - [sym__list_item_upper_roman_paren] = STATE(830), - [sym__list_upper_roman_parens] = STATE(998), - [sym__list_item_upper_roman_parens] = STATE(725), - [sym_list_item_content] = STATE(600), - [sym_table] = STATE(1021), - [sym__table_row] = STATE(241), - [sym_table_header] = STATE(241), - [sym_table_separator] = STATE(241), - [sym_table_row] = STATE(241), - [sym_footnote] = STATE(1021), - [sym_footnote_marker_begin] = STATE(1137), - [sym_div] = STATE(1021), - [sym__div_marker_begin] = STATE(1019), - [sym_code_block] = STATE(1021), - [sym_raw_block] = STATE(1021), - [sym_thematic_break] = STATE(1021), - [sym_block_quote] = STATE(1021), - [sym__block_quote_prefix] = STATE(223), - [sym_link_reference_definition] = STATE(1021), - [sym_block_attribute] = STATE(1021), - [sym__paragraph] = STATE(1021), - [sym__paragraph_content] = STATE(707), - [sym__paragraph_inline_content] = STATE(778), - [sym__inline] = STATE(655), + [sym__block_with_heading] = STATE(898), + [sym__block_element] = STATE(898), + [sym_heading] = STATE(898), + [sym_list] = STATE(898), + [sym__list_dash] = STATE(1008), + [sym__list_item_dash] = STATE(645), + [sym__list_plus] = STATE(1008), + [sym__list_item_plus] = STATE(661), + [sym__list_star] = STATE(1008), + [sym__list_item_star] = STATE(573), + [sym__list_task] = STATE(1008), + [sym__list_item_task] = STATE(590), + [sym_list_marker_task] = STATE(43), + [sym__list_definition] = STATE(1008), + [sym__list_item_definition] = STATE(740), + [sym__list_decimal_period] = STATE(1008), + [sym__list_item_decimal_period] = STATE(743), + [sym__list_decimal_paren] = STATE(1008), + [sym__list_item_decimal_paren] = STATE(748), + [sym__list_decimal_parens] = STATE(1008), + [sym__list_item_decimal_parens] = STATE(768), + [sym__list_lower_alpha_period] = STATE(1008), + [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_lower_alpha_paren] = STATE(1008), + [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_lower_alpha_parens] = STATE(1008), + [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_upper_alpha_period] = STATE(1008), + [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_upper_alpha_paren] = STATE(1008), + [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_upper_alpha_parens] = STATE(1008), + [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_lower_roman_period] = STATE(1008), + [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_lower_roman_paren] = STATE(1008), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(1008), + [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_upper_roman_period] = STATE(1008), + [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_upper_roman_paren] = STATE(1008), + [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_upper_roman_parens] = STATE(1008), + [sym__list_item_upper_roman_parens] = STATE(819), + [sym_list_item_content] = STATE(591), + [sym_table] = STATE(898), + [sym__table_row] = STATE(234), + [sym_table_header] = STATE(234), + [sym_table_separator] = STATE(234), + [sym_table_row] = STATE(234), + [sym_footnote] = STATE(898), + [sym_footnote_marker_begin] = STATE(1136), + [sym_div] = STATE(898), + [sym__div_marker_begin] = STATE(1018), + [sym_code_block] = STATE(898), + [sym_raw_block] = STATE(898), + [sym_thematic_break] = STATE(898), + [sym_block_quote] = STATE(898), + [sym__block_quote_prefix] = STATE(225), + [sym_link_reference_definition] = STATE(898), + [sym_block_attribute] = STATE(898), + [sym__paragraph] = STATE(898), + [sym__paragraph_content] = STATE(724), + [sym__paragraph_inline_content] = STATE(837), + [sym__inline] = STATE(656), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(326), - [aux_sym__list_plus_repeat1] = STATE(329), - [aux_sym__list_star_repeat1] = STATE(330), - [aux_sym__list_task_repeat1] = STATE(298), - [aux_sym__list_definition_repeat1] = STATE(508), - [aux_sym__list_decimal_period_repeat1] = STATE(509), - [aux_sym__list_decimal_paren_repeat1] = STATE(510), - [aux_sym__list_decimal_parens_repeat1] = STATE(511), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(512), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(513), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(514), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(515), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(516), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(517), - [aux_sym__list_lower_roman_period_repeat1] = STATE(526), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(531), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(534), - [aux_sym__list_upper_roman_period_repeat1] = STATE(544), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(441), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(442), - [aux_sym_table_repeat1] = STATE(241), - [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__list_dash_repeat1] = STATE(318), + [aux_sym__list_plus_repeat1] = STATE(319), + [aux_sym__list_star_repeat1] = STATE(320), + [aux_sym__list_task_repeat1] = STATE(287), + [aux_sym__list_definition_repeat1] = STATE(459), + [aux_sym__list_decimal_period_repeat1] = STATE(460), + [aux_sym__list_decimal_paren_repeat1] = STATE(461), + [aux_sym__list_decimal_parens_repeat1] = STATE(462), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(463), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(464), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(465), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(466), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(467), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(468), + [aux_sym__list_lower_roman_period_repeat1] = STATE(469), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(470), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(471), + [aux_sym__list_upper_roman_period_repeat1] = STATE(472), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(473), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym_table_repeat1] = STATE(234), + [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(366), - [anon_sym_DOT] = ACTIONS(11), - [aux_sym_identifier_token1] = ACTIONS(11), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_PERCENT] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(9), + [aux_sym_identifier_token1] = ACTIONS(9), + [aux_sym__inline_token1] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(9), + [anon_sym_PERCENT] = ACTIONS(9), [sym__newline] = ACTIONS(390), - [sym__heading_begin] = ACTIONS(370), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(372), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(374), - [sym__block_quote_continuation] = ACTIONS(376), - [sym__thematic_break_dash] = ACTIONS(378), - [sym__thematic_break_star] = ACTIONS(378), - [sym__table_header_begin] = ACTIONS(380), - [sym__table_separator_begin] = ACTIONS(382), - [sym__table_row_begin] = ACTIONS(384), + [sym__heading_begin] = ACTIONS(368), + [sym__div_begin] = ACTIONS(17), + [sym__code_block_begin] = ACTIONS(370), + [sym_list_marker_dash] = ACTIONS(21), + [sym_list_marker_star] = ACTIONS(23), + [sym_list_marker_plus] = ACTIONS(25), + [sym__list_marker_task_begin] = ACTIONS(27), + [sym_list_marker_definition] = ACTIONS(29), + [sym_list_marker_decimal_period] = ACTIONS(31), + [sym_list_marker_lower_alpha_period] = ACTIONS(33), + [sym_list_marker_upper_alpha_period] = ACTIONS(35), + [sym_list_marker_lower_roman_period] = ACTIONS(37), + [sym_list_marker_upper_roman_period] = ACTIONS(39), + [sym_list_marker_decimal_paren] = ACTIONS(41), + [sym_list_marker_lower_alpha_paren] = ACTIONS(43), + [sym_list_marker_upper_alpha_paren] = ACTIONS(45), + [sym_list_marker_lower_roman_paren] = ACTIONS(47), + [sym_list_marker_upper_roman_paren] = ACTIONS(49), + [sym_list_marker_decimal_parens] = ACTIONS(51), + [sym_list_marker_lower_alpha_parens] = ACTIONS(53), + [sym_list_marker_upper_alpha_parens] = ACTIONS(55), + [sym_list_marker_lower_roman_parens] = ACTIONS(57), + [sym_list_marker_upper_roman_parens] = ACTIONS(59), + [sym__block_quote_begin] = ACTIONS(372), + [sym__block_quote_continuation] = ACTIONS(374), + [sym__thematic_break_dash] = ACTIONS(376), + [sym__thematic_break_star] = ACTIONS(376), + [sym__table_header_begin] = ACTIONS(378), + [sym__table_separator_begin] = ACTIONS(380), + [sym__table_row_begin] = ACTIONS(382), + [sym__block_attribute_begin] = ACTIONS(384), }, [26] = { - [sym__block_with_heading] = STATE(1094), - [sym__block_element] = STATE(1094), - [sym_heading] = STATE(1094), - [sym_list] = STATE(1094), - [sym__list_dash] = STATE(998), - [sym__list_item_dash] = STATE(553), - [sym__list_plus] = STATE(998), - [sym__list_item_plus] = STATE(554), - [sym__list_star] = STATE(998), - [sym__list_item_star] = STATE(556), - [sym__list_task] = STATE(998), - [sym__list_item_task] = STATE(558), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(998), - [sym__list_item_definition] = STATE(769), - [sym__list_decimal_period] = STATE(998), - [sym__list_item_decimal_period] = STATE(776), - [sym__list_decimal_paren] = STATE(998), - [sym__list_item_decimal_paren] = STATE(790), - [sym__list_decimal_parens] = STATE(998), - [sym__list_item_decimal_parens] = STATE(793), - [sym__list_lower_alpha_period] = STATE(998), - [sym__list_item_lower_alpha_period] = STATE(822), - [sym__list_lower_alpha_paren] = STATE(998), - [sym__list_item_lower_alpha_paren] = STATE(684), - [sym__list_lower_alpha_parens] = STATE(998), - [sym__list_item_lower_alpha_parens] = STATE(688), - [sym__list_upper_alpha_period] = STATE(998), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(998), - [sym__list_item_upper_alpha_paren] = STATE(705), - [sym__list_upper_alpha_parens] = STATE(998), - [sym__list_item_upper_alpha_parens] = STATE(711), - [sym__list_lower_roman_period] = STATE(998), - [sym__list_item_lower_roman_period] = STATE(712), - [sym__list_lower_roman_paren] = STATE(998), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(998), - [sym__list_item_lower_roman_parens] = STATE(728), - [sym__list_upper_roman_period] = STATE(998), - [sym__list_item_upper_roman_period] = STATE(734), - [sym__list_upper_roman_paren] = STATE(998), - [sym__list_item_upper_roman_paren] = STATE(830), - [sym__list_upper_roman_parens] = STATE(998), - [sym__list_item_upper_roman_parens] = STATE(725), - [sym_list_item_content] = STATE(710), - [sym_table] = STATE(1094), - [sym__table_row] = STATE(241), - [sym_table_header] = STATE(241), - [sym_table_separator] = STATE(241), - [sym_table_row] = STATE(241), - [sym_footnote] = STATE(1094), - [sym_footnote_marker_begin] = STATE(1137), - [sym_div] = STATE(1094), - [sym__div_marker_begin] = STATE(1019), - [sym_code_block] = STATE(1094), - [sym_raw_block] = STATE(1094), - [sym_thematic_break] = STATE(1094), - [sym_block_quote] = STATE(1094), - [sym__block_quote_prefix] = STATE(223), - [sym_link_reference_definition] = STATE(1094), - [sym_block_attribute] = STATE(1094), - [sym__paragraph] = STATE(1094), - [sym__paragraph_content] = STATE(707), - [sym__paragraph_inline_content] = STATE(778), - [sym__inline] = STATE(655), + [sym__block_with_heading] = STATE(1020), + [sym__block_element] = STATE(1020), + [sym_heading] = STATE(1020), + [sym_list] = STATE(1020), + [sym__list_dash] = STATE(1008), + [sym__list_item_dash] = STATE(645), + [sym__list_plus] = STATE(1008), + [sym__list_item_plus] = STATE(661), + [sym__list_star] = STATE(1008), + [sym__list_item_star] = STATE(573), + [sym__list_task] = STATE(1008), + [sym__list_item_task] = STATE(590), + [sym_list_marker_task] = STATE(43), + [sym__list_definition] = STATE(1008), + [sym__list_item_definition] = STATE(740), + [sym__list_decimal_period] = STATE(1008), + [sym__list_item_decimal_period] = STATE(743), + [sym__list_decimal_paren] = STATE(1008), + [sym__list_item_decimal_paren] = STATE(748), + [sym__list_decimal_parens] = STATE(1008), + [sym__list_item_decimal_parens] = STATE(768), + [sym__list_lower_alpha_period] = STATE(1008), + [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_lower_alpha_paren] = STATE(1008), + [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_lower_alpha_parens] = STATE(1008), + [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_upper_alpha_period] = STATE(1008), + [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_upper_alpha_paren] = STATE(1008), + [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_upper_alpha_parens] = STATE(1008), + [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_lower_roman_period] = STATE(1008), + [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_lower_roman_paren] = STATE(1008), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(1008), + [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_upper_roman_period] = STATE(1008), + [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_upper_roman_paren] = STATE(1008), + [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_upper_roman_parens] = STATE(1008), + [sym__list_item_upper_roman_parens] = STATE(819), + [sym_list_item_content] = STATE(592), + [sym_table] = STATE(1020), + [sym__table_row] = STATE(234), + [sym_table_header] = STATE(234), + [sym_table_separator] = STATE(234), + [sym_table_row] = STATE(234), + [sym_footnote] = STATE(1020), + [sym_footnote_marker_begin] = STATE(1136), + [sym_div] = STATE(1020), + [sym__div_marker_begin] = STATE(1018), + [sym_code_block] = STATE(1020), + [sym_raw_block] = STATE(1020), + [sym_thematic_break] = STATE(1020), + [sym_block_quote] = STATE(1020), + [sym__block_quote_prefix] = STATE(225), + [sym_link_reference_definition] = STATE(1020), + [sym_block_attribute] = STATE(1020), + [sym__paragraph] = STATE(1020), + [sym__paragraph_content] = STATE(724), + [sym__paragraph_inline_content] = STATE(837), + [sym__inline] = STATE(656), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(326), - [aux_sym__list_plus_repeat1] = STATE(329), - [aux_sym__list_star_repeat1] = STATE(330), - [aux_sym__list_task_repeat1] = STATE(298), - [aux_sym__list_definition_repeat1] = STATE(508), - [aux_sym__list_decimal_period_repeat1] = STATE(509), - [aux_sym__list_decimal_paren_repeat1] = STATE(510), - [aux_sym__list_decimal_parens_repeat1] = STATE(511), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(512), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(513), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(514), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(515), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(516), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(517), - [aux_sym__list_lower_roman_period_repeat1] = STATE(526), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(531), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(534), - [aux_sym__list_upper_roman_period_repeat1] = STATE(544), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(441), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(442), - [aux_sym_table_repeat1] = STATE(241), - [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__list_dash_repeat1] = STATE(318), + [aux_sym__list_plus_repeat1] = STATE(319), + [aux_sym__list_star_repeat1] = STATE(320), + [aux_sym__list_task_repeat1] = STATE(287), + [aux_sym__list_definition_repeat1] = STATE(459), + [aux_sym__list_decimal_period_repeat1] = STATE(460), + [aux_sym__list_decimal_paren_repeat1] = STATE(461), + [aux_sym__list_decimal_parens_repeat1] = STATE(462), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(463), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(464), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(465), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(466), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(467), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(468), + [aux_sym__list_lower_roman_period_repeat1] = STATE(469), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(470), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(471), + [aux_sym__list_upper_roman_period_repeat1] = STATE(472), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(473), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym_table_repeat1] = STATE(234), + [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(366), - [anon_sym_DOT] = ACTIONS(11), - [aux_sym_identifier_token1] = ACTIONS(11), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_PERCENT] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(9), + [aux_sym_identifier_token1] = ACTIONS(9), + [aux_sym__inline_token1] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(9), + [anon_sym_PERCENT] = ACTIONS(9), [sym__newline] = ACTIONS(392), - [sym__heading_begin] = ACTIONS(370), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(372), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(374), - [sym__block_quote_continuation] = ACTIONS(376), - [sym__thematic_break_dash] = ACTIONS(378), - [sym__thematic_break_star] = ACTIONS(378), - [sym__table_header_begin] = ACTIONS(380), - [sym__table_separator_begin] = ACTIONS(382), - [sym__table_row_begin] = ACTIONS(384), + [sym__heading_begin] = ACTIONS(368), + [sym__div_begin] = ACTIONS(17), + [sym__code_block_begin] = ACTIONS(370), + [sym_list_marker_dash] = ACTIONS(21), + [sym_list_marker_star] = ACTIONS(23), + [sym_list_marker_plus] = ACTIONS(25), + [sym__list_marker_task_begin] = ACTIONS(27), + [sym_list_marker_definition] = ACTIONS(29), + [sym_list_marker_decimal_period] = ACTIONS(31), + [sym_list_marker_lower_alpha_period] = ACTIONS(33), + [sym_list_marker_upper_alpha_period] = ACTIONS(35), + [sym_list_marker_lower_roman_period] = ACTIONS(37), + [sym_list_marker_upper_roman_period] = ACTIONS(39), + [sym_list_marker_decimal_paren] = ACTIONS(41), + [sym_list_marker_lower_alpha_paren] = ACTIONS(43), + [sym_list_marker_upper_alpha_paren] = ACTIONS(45), + [sym_list_marker_lower_roman_paren] = ACTIONS(47), + [sym_list_marker_upper_roman_paren] = ACTIONS(49), + [sym_list_marker_decimal_parens] = ACTIONS(51), + [sym_list_marker_lower_alpha_parens] = ACTIONS(53), + [sym_list_marker_upper_alpha_parens] = ACTIONS(55), + [sym_list_marker_lower_roman_parens] = ACTIONS(57), + [sym_list_marker_upper_roman_parens] = ACTIONS(59), + [sym__block_quote_begin] = ACTIONS(372), + [sym__block_quote_continuation] = ACTIONS(374), + [sym__thematic_break_dash] = ACTIONS(376), + [sym__thematic_break_star] = ACTIONS(376), + [sym__table_header_begin] = ACTIONS(378), + [sym__table_separator_begin] = ACTIONS(380), + [sym__table_row_begin] = ACTIONS(382), + [sym__block_attribute_begin] = ACTIONS(384), }, [27] = { - [sym__block_with_heading] = STATE(913), - [sym__block_element] = STATE(913), - [sym_heading] = STATE(913), - [sym_list] = STATE(913), - [sym__list_dash] = STATE(998), - [sym__list_item_dash] = STATE(553), - [sym__list_plus] = STATE(998), - [sym__list_item_plus] = STATE(554), - [sym__list_star] = STATE(998), - [sym__list_item_star] = STATE(556), - [sym__list_task] = STATE(998), - [sym__list_item_task] = STATE(558), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(998), - [sym__list_item_definition] = STATE(769), - [sym__list_decimal_period] = STATE(998), - [sym__list_item_decimal_period] = STATE(776), - [sym__list_decimal_paren] = STATE(998), - [sym__list_item_decimal_paren] = STATE(790), - [sym__list_decimal_parens] = STATE(998), - [sym__list_item_decimal_parens] = STATE(793), - [sym__list_lower_alpha_period] = STATE(998), - [sym__list_item_lower_alpha_period] = STATE(822), - [sym__list_lower_alpha_paren] = STATE(998), - [sym__list_item_lower_alpha_paren] = STATE(684), - [sym__list_lower_alpha_parens] = STATE(998), - [sym__list_item_lower_alpha_parens] = STATE(688), - [sym__list_upper_alpha_period] = STATE(998), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(998), - [sym__list_item_upper_alpha_paren] = STATE(705), - [sym__list_upper_alpha_parens] = STATE(998), - [sym__list_item_upper_alpha_parens] = STATE(711), - [sym__list_lower_roman_period] = STATE(998), - [sym__list_item_lower_roman_period] = STATE(712), - [sym__list_lower_roman_paren] = STATE(998), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(998), - [sym__list_item_lower_roman_parens] = STATE(728), - [sym__list_upper_roman_period] = STATE(998), - [sym__list_item_upper_roman_period] = STATE(734), - [sym__list_upper_roman_paren] = STATE(998), - [sym__list_item_upper_roman_paren] = STATE(830), - [sym__list_upper_roman_parens] = STATE(998), - [sym__list_item_upper_roman_parens] = STATE(725), - [sym_list_item_content] = STATE(674), - [sym_table] = STATE(913), - [sym__table_row] = STATE(241), - [sym_table_header] = STATE(241), - [sym_table_separator] = STATE(241), - [sym_table_row] = STATE(241), - [sym_footnote] = STATE(913), - [sym_footnote_marker_begin] = STATE(1137), - [sym_div] = STATE(913), - [sym__div_marker_begin] = STATE(1019), - [sym_code_block] = STATE(913), - [sym_raw_block] = STATE(913), - [sym_thematic_break] = STATE(913), - [sym_block_quote] = STATE(913), - [sym__block_quote_prefix] = STATE(223), - [sym_link_reference_definition] = STATE(913), - [sym_block_attribute] = STATE(913), - [sym__paragraph] = STATE(913), - [sym__paragraph_content] = STATE(707), - [sym__paragraph_inline_content] = STATE(778), - [sym__inline] = STATE(655), + [sym__block_with_heading] = STATE(898), + [sym__block_element] = STATE(898), + [sym_heading] = STATE(898), + [sym_list] = STATE(898), + [sym__list_dash] = STATE(1008), + [sym__list_item_dash] = STATE(645), + [sym__list_plus] = STATE(1008), + [sym__list_item_plus] = STATE(661), + [sym__list_star] = STATE(1008), + [sym__list_item_star] = STATE(573), + [sym__list_task] = STATE(1008), + [sym__list_item_task] = STATE(590), + [sym_list_marker_task] = STATE(43), + [sym__list_definition] = STATE(1008), + [sym__list_item_definition] = STATE(740), + [sym__list_decimal_period] = STATE(1008), + [sym__list_item_decimal_period] = STATE(743), + [sym__list_decimal_paren] = STATE(1008), + [sym__list_item_decimal_paren] = STATE(748), + [sym__list_decimal_parens] = STATE(1008), + [sym__list_item_decimal_parens] = STATE(768), + [sym__list_lower_alpha_period] = STATE(1008), + [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_lower_alpha_paren] = STATE(1008), + [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_lower_alpha_parens] = STATE(1008), + [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_upper_alpha_period] = STATE(1008), + [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_upper_alpha_paren] = STATE(1008), + [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_upper_alpha_parens] = STATE(1008), + [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_lower_roman_period] = STATE(1008), + [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_lower_roman_paren] = STATE(1008), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(1008), + [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_upper_roman_period] = STATE(1008), + [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_upper_roman_paren] = STATE(1008), + [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_upper_roman_parens] = STATE(1008), + [sym__list_item_upper_roman_parens] = STATE(819), + [sym_list_item_content] = STATE(574), + [sym_table] = STATE(898), + [sym__table_row] = STATE(234), + [sym_table_header] = STATE(234), + [sym_table_separator] = STATE(234), + [sym_table_row] = STATE(234), + [sym_footnote] = STATE(898), + [sym_footnote_marker_begin] = STATE(1136), + [sym_div] = STATE(898), + [sym__div_marker_begin] = STATE(1018), + [sym_code_block] = STATE(898), + [sym_raw_block] = STATE(898), + [sym_thematic_break] = STATE(898), + [sym_block_quote] = STATE(898), + [sym__block_quote_prefix] = STATE(225), + [sym_link_reference_definition] = STATE(898), + [sym_block_attribute] = STATE(898), + [sym__paragraph] = STATE(898), + [sym__paragraph_content] = STATE(724), + [sym__paragraph_inline_content] = STATE(837), + [sym__inline] = STATE(656), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(326), - [aux_sym__list_plus_repeat1] = STATE(329), - [aux_sym__list_star_repeat1] = STATE(330), - [aux_sym__list_task_repeat1] = STATE(298), - [aux_sym__list_definition_repeat1] = STATE(508), - [aux_sym__list_decimal_period_repeat1] = STATE(509), - [aux_sym__list_decimal_paren_repeat1] = STATE(510), - [aux_sym__list_decimal_parens_repeat1] = STATE(511), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(512), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(513), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(514), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(515), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(516), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(517), - [aux_sym__list_lower_roman_period_repeat1] = STATE(526), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(531), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(534), - [aux_sym__list_upper_roman_period_repeat1] = STATE(544), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(441), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(442), - [aux_sym_table_repeat1] = STATE(241), - [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__list_dash_repeat1] = STATE(318), + [aux_sym__list_plus_repeat1] = STATE(319), + [aux_sym__list_star_repeat1] = STATE(320), + [aux_sym__list_task_repeat1] = STATE(287), + [aux_sym__list_definition_repeat1] = STATE(459), + [aux_sym__list_decimal_period_repeat1] = STATE(460), + [aux_sym__list_decimal_paren_repeat1] = STATE(461), + [aux_sym__list_decimal_parens_repeat1] = STATE(462), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(463), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(464), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(465), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(466), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(467), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(468), + [aux_sym__list_lower_roman_period_repeat1] = STATE(469), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(470), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(471), + [aux_sym__list_upper_roman_period_repeat1] = STATE(472), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(473), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym_table_repeat1] = STATE(234), + [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(366), - [anon_sym_DOT] = ACTIONS(11), - [aux_sym_identifier_token1] = ACTIONS(11), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_PERCENT] = ACTIONS(11), - [sym__newline] = ACTIONS(394), - [sym__heading_begin] = ACTIONS(370), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(372), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(374), - [sym__block_quote_continuation] = ACTIONS(376), - [sym__thematic_break_dash] = ACTIONS(378), - [sym__thematic_break_star] = ACTIONS(378), - [sym__table_header_begin] = ACTIONS(380), - [sym__table_separator_begin] = ACTIONS(382), - [sym__table_row_begin] = ACTIONS(384), + [anon_sym_DOT] = ACTIONS(9), + [aux_sym_identifier_token1] = ACTIONS(9), + [aux_sym__inline_token1] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(9), + [anon_sym_PERCENT] = ACTIONS(9), + [sym__newline] = ACTIONS(390), + [sym__heading_begin] = ACTIONS(368), + [sym__div_begin] = ACTIONS(17), + [sym__code_block_begin] = ACTIONS(370), + [sym_list_marker_dash] = ACTIONS(21), + [sym_list_marker_star] = ACTIONS(23), + [sym_list_marker_plus] = ACTIONS(25), + [sym__list_marker_task_begin] = ACTIONS(27), + [sym_list_marker_definition] = ACTIONS(29), + [sym_list_marker_decimal_period] = ACTIONS(31), + [sym_list_marker_lower_alpha_period] = ACTIONS(33), + [sym_list_marker_upper_alpha_period] = ACTIONS(35), + [sym_list_marker_lower_roman_period] = ACTIONS(37), + [sym_list_marker_upper_roman_period] = ACTIONS(39), + [sym_list_marker_decimal_paren] = ACTIONS(41), + [sym_list_marker_lower_alpha_paren] = ACTIONS(43), + [sym_list_marker_upper_alpha_paren] = ACTIONS(45), + [sym_list_marker_lower_roman_paren] = ACTIONS(47), + [sym_list_marker_upper_roman_paren] = ACTIONS(49), + [sym_list_marker_decimal_parens] = ACTIONS(51), + [sym_list_marker_lower_alpha_parens] = ACTIONS(53), + [sym_list_marker_upper_alpha_parens] = ACTIONS(55), + [sym_list_marker_lower_roman_parens] = ACTIONS(57), + [sym_list_marker_upper_roman_parens] = ACTIONS(59), + [sym__block_quote_begin] = ACTIONS(372), + [sym__block_quote_continuation] = ACTIONS(374), + [sym__thematic_break_dash] = ACTIONS(376), + [sym__thematic_break_star] = ACTIONS(376), + [sym__table_header_begin] = ACTIONS(378), + [sym__table_separator_begin] = ACTIONS(380), + [sym__table_row_begin] = ACTIONS(382), + [sym__block_attribute_begin] = ACTIONS(384), }, [28] = { - [sym__block_with_heading] = STATE(1021), - [sym__block_element] = STATE(1021), - [sym_heading] = STATE(1021), - [sym_list] = STATE(1021), - [sym__list_dash] = STATE(998), - [sym__list_item_dash] = STATE(553), - [sym__list_plus] = STATE(998), - [sym__list_item_plus] = STATE(554), - [sym__list_star] = STATE(998), - [sym__list_item_star] = STATE(556), - [sym__list_task] = STATE(998), - [sym__list_item_task] = STATE(558), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(998), - [sym__list_item_definition] = STATE(769), - [sym__list_decimal_period] = STATE(998), - [sym__list_item_decimal_period] = STATE(776), - [sym__list_decimal_paren] = STATE(998), - [sym__list_item_decimal_paren] = STATE(790), - [sym__list_decimal_parens] = STATE(998), - [sym__list_item_decimal_parens] = STATE(793), - [sym__list_lower_alpha_period] = STATE(998), - [sym__list_item_lower_alpha_period] = STATE(822), - [sym__list_lower_alpha_paren] = STATE(998), - [sym__list_item_lower_alpha_paren] = STATE(684), - [sym__list_lower_alpha_parens] = STATE(998), - [sym__list_item_lower_alpha_parens] = STATE(688), - [sym__list_upper_alpha_period] = STATE(998), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(998), - [sym__list_item_upper_alpha_paren] = STATE(705), - [sym__list_upper_alpha_parens] = STATE(998), - [sym__list_item_upper_alpha_parens] = STATE(711), - [sym__list_lower_roman_period] = STATE(998), - [sym__list_item_lower_roman_period] = STATE(712), - [sym__list_lower_roman_paren] = STATE(998), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(998), - [sym__list_item_lower_roman_parens] = STATE(728), - [sym__list_upper_roman_period] = STATE(998), - [sym__list_item_upper_roman_period] = STATE(734), - [sym__list_upper_roman_paren] = STATE(998), - [sym__list_item_upper_roman_paren] = STATE(830), - [sym__list_upper_roman_parens] = STATE(998), - [sym__list_item_upper_roman_parens] = STATE(725), - [sym_list_item_content] = STATE(547), - [sym_table] = STATE(1021), - [sym__table_row] = STATE(241), - [sym_table_header] = STATE(241), - [sym_table_separator] = STATE(241), - [sym_table_row] = STATE(241), - [sym_footnote] = STATE(1021), - [sym_footnote_marker_begin] = STATE(1137), - [sym_div] = STATE(1021), - [sym__div_marker_begin] = STATE(1019), - [sym_code_block] = STATE(1021), - [sym_raw_block] = STATE(1021), - [sym_thematic_break] = STATE(1021), - [sym_block_quote] = STATE(1021), - [sym__block_quote_prefix] = STATE(223), - [sym_link_reference_definition] = STATE(1021), - [sym_block_attribute] = STATE(1021), - [sym__paragraph] = STATE(1021), - [sym__paragraph_content] = STATE(707), - [sym__paragraph_inline_content] = STATE(778), - [sym__inline] = STATE(655), + [sym__block_with_heading] = STATE(1103), + [sym__block_element] = STATE(1103), + [sym_heading] = STATE(1103), + [sym_list] = STATE(1103), + [sym__list_dash] = STATE(1008), + [sym__list_item_dash] = STATE(645), + [sym__list_plus] = STATE(1008), + [sym__list_item_plus] = STATE(661), + [sym__list_star] = STATE(1008), + [sym__list_item_star] = STATE(573), + [sym__list_task] = STATE(1008), + [sym__list_item_task] = STATE(590), + [sym_list_marker_task] = STATE(43), + [sym__list_definition] = STATE(1008), + [sym__list_item_definition] = STATE(740), + [sym__list_decimal_period] = STATE(1008), + [sym__list_item_decimal_period] = STATE(743), + [sym__list_decimal_paren] = STATE(1008), + [sym__list_item_decimal_paren] = STATE(748), + [sym__list_decimal_parens] = STATE(1008), + [sym__list_item_decimal_parens] = STATE(768), + [sym__list_lower_alpha_period] = STATE(1008), + [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_lower_alpha_paren] = STATE(1008), + [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_lower_alpha_parens] = STATE(1008), + [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_upper_alpha_period] = STATE(1008), + [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_upper_alpha_paren] = STATE(1008), + [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_upper_alpha_parens] = STATE(1008), + [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_lower_roman_period] = STATE(1008), + [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_lower_roman_paren] = STATE(1008), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(1008), + [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_upper_roman_period] = STATE(1008), + [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_upper_roman_paren] = STATE(1008), + [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_upper_roman_parens] = STATE(1008), + [sym__list_item_upper_roman_parens] = STATE(819), + [sym_list_item_content] = STATE(594), + [sym_table] = STATE(1103), + [sym__table_row] = STATE(234), + [sym_table_header] = STATE(234), + [sym_table_separator] = STATE(234), + [sym_table_row] = STATE(234), + [sym_footnote] = STATE(1103), + [sym_footnote_marker_begin] = STATE(1136), + [sym_div] = STATE(1103), + [sym__div_marker_begin] = STATE(1018), + [sym_code_block] = STATE(1103), + [sym_raw_block] = STATE(1103), + [sym_thematic_break] = STATE(1103), + [sym_block_quote] = STATE(1103), + [sym__block_quote_prefix] = STATE(225), + [sym_link_reference_definition] = STATE(1103), + [sym_block_attribute] = STATE(1103), + [sym__paragraph] = STATE(1103), + [sym__paragraph_content] = STATE(724), + [sym__paragraph_inline_content] = STATE(837), + [sym__inline] = STATE(656), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(326), - [aux_sym__list_plus_repeat1] = STATE(329), - [aux_sym__list_star_repeat1] = STATE(330), - [aux_sym__list_task_repeat1] = STATE(298), - [aux_sym__list_definition_repeat1] = STATE(508), - [aux_sym__list_decimal_period_repeat1] = STATE(509), - [aux_sym__list_decimal_paren_repeat1] = STATE(510), - [aux_sym__list_decimal_parens_repeat1] = STATE(511), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(512), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(513), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(514), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(515), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(516), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(517), - [aux_sym__list_lower_roman_period_repeat1] = STATE(526), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(531), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(534), - [aux_sym__list_upper_roman_period_repeat1] = STATE(544), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(441), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(442), - [aux_sym_table_repeat1] = STATE(241), - [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__list_dash_repeat1] = STATE(318), + [aux_sym__list_plus_repeat1] = STATE(319), + [aux_sym__list_star_repeat1] = STATE(320), + [aux_sym__list_task_repeat1] = STATE(287), + [aux_sym__list_definition_repeat1] = STATE(459), + [aux_sym__list_decimal_period_repeat1] = STATE(460), + [aux_sym__list_decimal_paren_repeat1] = STATE(461), + [aux_sym__list_decimal_parens_repeat1] = STATE(462), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(463), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(464), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(465), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(466), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(467), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(468), + [aux_sym__list_lower_roman_period_repeat1] = STATE(469), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(470), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(471), + [aux_sym__list_upper_roman_period_repeat1] = STATE(472), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(473), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym_table_repeat1] = STATE(234), + [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(366), - [anon_sym_DOT] = ACTIONS(11), - [aux_sym_identifier_token1] = ACTIONS(11), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_PERCENT] = ACTIONS(11), - [sym__newline] = ACTIONS(390), - [sym__heading_begin] = ACTIONS(370), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(372), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(374), - [sym__block_quote_continuation] = ACTIONS(376), - [sym__thematic_break_dash] = ACTIONS(378), - [sym__thematic_break_star] = ACTIONS(378), - [sym__table_header_begin] = ACTIONS(380), - [sym__table_separator_begin] = ACTIONS(382), - [sym__table_row_begin] = ACTIONS(384), + [anon_sym_DOT] = ACTIONS(9), + [aux_sym_identifier_token1] = ACTIONS(9), + [aux_sym__inline_token1] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(9), + [anon_sym_PERCENT] = ACTIONS(9), + [sym__newline] = ACTIONS(394), + [sym__heading_begin] = ACTIONS(368), + [sym__div_begin] = ACTIONS(17), + [sym__code_block_begin] = ACTIONS(370), + [sym_list_marker_dash] = ACTIONS(21), + [sym_list_marker_star] = ACTIONS(23), + [sym_list_marker_plus] = ACTIONS(25), + [sym__list_marker_task_begin] = ACTIONS(27), + [sym_list_marker_definition] = ACTIONS(29), + [sym_list_marker_decimal_period] = ACTIONS(31), + [sym_list_marker_lower_alpha_period] = ACTIONS(33), + [sym_list_marker_upper_alpha_period] = ACTIONS(35), + [sym_list_marker_lower_roman_period] = ACTIONS(37), + [sym_list_marker_upper_roman_period] = ACTIONS(39), + [sym_list_marker_decimal_paren] = ACTIONS(41), + [sym_list_marker_lower_alpha_paren] = ACTIONS(43), + [sym_list_marker_upper_alpha_paren] = ACTIONS(45), + [sym_list_marker_lower_roman_paren] = ACTIONS(47), + [sym_list_marker_upper_roman_paren] = ACTIONS(49), + [sym_list_marker_decimal_parens] = ACTIONS(51), + [sym_list_marker_lower_alpha_parens] = ACTIONS(53), + [sym_list_marker_upper_alpha_parens] = ACTIONS(55), + [sym_list_marker_lower_roman_parens] = ACTIONS(57), + [sym_list_marker_upper_roman_parens] = ACTIONS(59), + [sym__block_quote_begin] = ACTIONS(372), + [sym__block_quote_continuation] = ACTIONS(374), + [sym__thematic_break_dash] = ACTIONS(376), + [sym__thematic_break_star] = ACTIONS(376), + [sym__table_header_begin] = ACTIONS(378), + [sym__table_separator_begin] = ACTIONS(380), + [sym__table_row_begin] = ACTIONS(382), + [sym__block_attribute_begin] = ACTIONS(384), }, [29] = { - [sym__block_with_heading] = STATE(1040), - [sym__block_element] = STATE(1040), - [sym_heading] = STATE(1040), - [sym_list] = STATE(1040), - [sym__list_dash] = STATE(998), - [sym__list_item_dash] = STATE(553), - [sym__list_plus] = STATE(998), - [sym__list_item_plus] = STATE(554), - [sym__list_star] = STATE(998), - [sym__list_item_star] = STATE(556), - [sym__list_task] = STATE(998), - [sym__list_item_task] = STATE(558), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(998), - [sym__list_item_definition] = STATE(769), - [sym__list_decimal_period] = STATE(998), - [sym__list_item_decimal_period] = STATE(776), - [sym__list_decimal_paren] = STATE(998), - [sym__list_item_decimal_paren] = STATE(790), - [sym__list_decimal_parens] = STATE(998), - [sym__list_item_decimal_parens] = STATE(793), - [sym__list_lower_alpha_period] = STATE(998), - [sym__list_item_lower_alpha_period] = STATE(822), - [sym__list_lower_alpha_paren] = STATE(998), - [sym__list_item_lower_alpha_paren] = STATE(684), - [sym__list_lower_alpha_parens] = STATE(998), - [sym__list_item_lower_alpha_parens] = STATE(688), - [sym__list_upper_alpha_period] = STATE(998), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(998), - [sym__list_item_upper_alpha_paren] = STATE(705), - [sym__list_upper_alpha_parens] = STATE(998), - [sym__list_item_upper_alpha_parens] = STATE(711), - [sym__list_lower_roman_period] = STATE(998), - [sym__list_item_lower_roman_period] = STATE(712), - [sym__list_lower_roman_paren] = STATE(998), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(998), - [sym__list_item_lower_roman_parens] = STATE(728), - [sym__list_upper_roman_period] = STATE(998), - [sym__list_item_upper_roman_period] = STATE(734), - [sym__list_upper_roman_paren] = STATE(998), - [sym__list_item_upper_roman_paren] = STATE(830), - [sym__list_upper_roman_parens] = STATE(998), - [sym__list_item_upper_roman_parens] = STATE(725), - [sym_list_item_content] = STATE(548), - [sym_table] = STATE(1040), - [sym__table_row] = STATE(241), - [sym_table_header] = STATE(241), - [sym_table_separator] = STATE(241), - [sym_table_row] = STATE(241), - [sym_footnote] = STATE(1040), - [sym_footnote_marker_begin] = STATE(1137), - [sym_div] = STATE(1040), - [sym__div_marker_begin] = STATE(1019), - [sym_code_block] = STATE(1040), - [sym_raw_block] = STATE(1040), - [sym_thematic_break] = STATE(1040), - [sym_block_quote] = STATE(1040), - [sym__block_quote_prefix] = STATE(223), - [sym_link_reference_definition] = STATE(1040), - [sym_block_attribute] = STATE(1040), - [sym__paragraph] = STATE(1040), - [sym__paragraph_content] = STATE(707), - [sym__paragraph_inline_content] = STATE(778), - [sym__inline] = STATE(655), + [sym__block_with_heading] = STATE(1094), + [sym__block_element] = STATE(1094), + [sym_heading] = STATE(1094), + [sym_list] = STATE(1094), + [sym__list_dash] = STATE(1008), + [sym__list_item_dash] = STATE(645), + [sym__list_plus] = STATE(1008), + [sym__list_item_plus] = STATE(661), + [sym__list_star] = STATE(1008), + [sym__list_item_star] = STATE(573), + [sym__list_task] = STATE(1008), + [sym__list_item_task] = STATE(590), + [sym_list_marker_task] = STATE(43), + [sym__list_definition] = STATE(1008), + [sym__list_item_definition] = STATE(740), + [sym__list_decimal_period] = STATE(1008), + [sym__list_item_decimal_period] = STATE(743), + [sym__list_decimal_paren] = STATE(1008), + [sym__list_item_decimal_paren] = STATE(748), + [sym__list_decimal_parens] = STATE(1008), + [sym__list_item_decimal_parens] = STATE(768), + [sym__list_lower_alpha_period] = STATE(1008), + [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_lower_alpha_paren] = STATE(1008), + [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_lower_alpha_parens] = STATE(1008), + [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_upper_alpha_period] = STATE(1008), + [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_upper_alpha_paren] = STATE(1008), + [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_upper_alpha_parens] = STATE(1008), + [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_lower_roman_period] = STATE(1008), + [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_lower_roman_paren] = STATE(1008), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(1008), + [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_upper_roman_period] = STATE(1008), + [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_upper_roman_paren] = STATE(1008), + [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_upper_roman_parens] = STATE(1008), + [sym__list_item_upper_roman_parens] = STATE(819), + [sym_list_item_content] = STATE(776), + [sym_table] = STATE(1094), + [sym__table_row] = STATE(234), + [sym_table_header] = STATE(234), + [sym_table_separator] = STATE(234), + [sym_table_row] = STATE(234), + [sym_footnote] = STATE(1094), + [sym_footnote_marker_begin] = STATE(1136), + [sym_div] = STATE(1094), + [sym__div_marker_begin] = STATE(1018), + [sym_code_block] = STATE(1094), + [sym_raw_block] = STATE(1094), + [sym_thematic_break] = STATE(1094), + [sym_block_quote] = STATE(1094), + [sym__block_quote_prefix] = STATE(225), + [sym_link_reference_definition] = STATE(1094), + [sym_block_attribute] = STATE(1094), + [sym__paragraph] = STATE(1094), + [sym__paragraph_content] = STATE(724), + [sym__paragraph_inline_content] = STATE(837), + [sym__inline] = STATE(656), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(326), - [aux_sym__list_plus_repeat1] = STATE(329), - [aux_sym__list_star_repeat1] = STATE(330), - [aux_sym__list_task_repeat1] = STATE(298), - [aux_sym__list_definition_repeat1] = STATE(508), - [aux_sym__list_decimal_period_repeat1] = STATE(509), - [aux_sym__list_decimal_paren_repeat1] = STATE(510), - [aux_sym__list_decimal_parens_repeat1] = STATE(511), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(512), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(513), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(514), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(515), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(516), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(517), - [aux_sym__list_lower_roman_period_repeat1] = STATE(526), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(531), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(534), - [aux_sym__list_upper_roman_period_repeat1] = STATE(544), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(441), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(442), - [aux_sym_table_repeat1] = STATE(241), - [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__list_dash_repeat1] = STATE(318), + [aux_sym__list_plus_repeat1] = STATE(319), + [aux_sym__list_star_repeat1] = STATE(320), + [aux_sym__list_task_repeat1] = STATE(287), + [aux_sym__list_definition_repeat1] = STATE(459), + [aux_sym__list_decimal_period_repeat1] = STATE(460), + [aux_sym__list_decimal_paren_repeat1] = STATE(461), + [aux_sym__list_decimal_parens_repeat1] = STATE(462), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(463), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(464), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(465), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(466), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(467), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(468), + [aux_sym__list_lower_roman_period_repeat1] = STATE(469), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(470), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(471), + [aux_sym__list_upper_roman_period_repeat1] = STATE(472), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(473), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym_table_repeat1] = STATE(234), + [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(366), - [anon_sym_DOT] = ACTIONS(11), - [aux_sym_identifier_token1] = ACTIONS(11), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_PERCENT] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(9), + [aux_sym_identifier_token1] = ACTIONS(9), + [aux_sym__inline_token1] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(9), + [anon_sym_PERCENT] = ACTIONS(9), [sym__newline] = ACTIONS(396), - [sym__heading_begin] = ACTIONS(370), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(372), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(374), - [sym__block_quote_continuation] = ACTIONS(376), - [sym__thematic_break_dash] = ACTIONS(378), - [sym__thematic_break_star] = ACTIONS(378), - [sym__table_header_begin] = ACTIONS(380), - [sym__table_separator_begin] = ACTIONS(382), - [sym__table_row_begin] = ACTIONS(384), + [sym__heading_begin] = ACTIONS(368), + [sym__div_begin] = ACTIONS(17), + [sym__code_block_begin] = ACTIONS(370), + [sym_list_marker_dash] = ACTIONS(21), + [sym_list_marker_star] = ACTIONS(23), + [sym_list_marker_plus] = ACTIONS(25), + [sym__list_marker_task_begin] = ACTIONS(27), + [sym_list_marker_definition] = ACTIONS(29), + [sym_list_marker_decimal_period] = ACTIONS(31), + [sym_list_marker_lower_alpha_period] = ACTIONS(33), + [sym_list_marker_upper_alpha_period] = ACTIONS(35), + [sym_list_marker_lower_roman_period] = ACTIONS(37), + [sym_list_marker_upper_roman_period] = ACTIONS(39), + [sym_list_marker_decimal_paren] = ACTIONS(41), + [sym_list_marker_lower_alpha_paren] = ACTIONS(43), + [sym_list_marker_upper_alpha_paren] = ACTIONS(45), + [sym_list_marker_lower_roman_paren] = ACTIONS(47), + [sym_list_marker_upper_roman_paren] = ACTIONS(49), + [sym_list_marker_decimal_parens] = ACTIONS(51), + [sym_list_marker_lower_alpha_parens] = ACTIONS(53), + [sym_list_marker_upper_alpha_parens] = ACTIONS(55), + [sym_list_marker_lower_roman_parens] = ACTIONS(57), + [sym_list_marker_upper_roman_parens] = ACTIONS(59), + [sym__block_quote_begin] = ACTIONS(372), + [sym__block_quote_continuation] = ACTIONS(374), + [sym__thematic_break_dash] = ACTIONS(376), + [sym__thematic_break_star] = ACTIONS(376), + [sym__table_header_begin] = ACTIONS(378), + [sym__table_separator_begin] = ACTIONS(380), + [sym__table_row_begin] = ACTIONS(382), + [sym__block_attribute_begin] = ACTIONS(384), }, [30] = { - [sym__block_with_heading] = STATE(1104), - [sym__block_element] = STATE(1104), - [sym_heading] = STATE(1104), - [sym_list] = STATE(1104), - [sym__list_dash] = STATE(998), - [sym__list_item_dash] = STATE(553), - [sym__list_plus] = STATE(998), - [sym__list_item_plus] = STATE(554), - [sym__list_star] = STATE(998), - [sym__list_item_star] = STATE(556), - [sym__list_task] = STATE(998), - [sym__list_item_task] = STATE(558), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(998), - [sym__list_item_definition] = STATE(769), - [sym__list_decimal_period] = STATE(998), - [sym__list_item_decimal_period] = STATE(776), - [sym__list_decimal_paren] = STATE(998), - [sym__list_item_decimal_paren] = STATE(790), - [sym__list_decimal_parens] = STATE(998), - [sym__list_item_decimal_parens] = STATE(793), - [sym__list_lower_alpha_period] = STATE(998), - [sym__list_item_lower_alpha_period] = STATE(822), - [sym__list_lower_alpha_paren] = STATE(998), - [sym__list_item_lower_alpha_paren] = STATE(684), - [sym__list_lower_alpha_parens] = STATE(998), - [sym__list_item_lower_alpha_parens] = STATE(688), - [sym__list_upper_alpha_period] = STATE(998), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(998), - [sym__list_item_upper_alpha_paren] = STATE(705), - [sym__list_upper_alpha_parens] = STATE(998), - [sym__list_item_upper_alpha_parens] = STATE(711), - [sym__list_lower_roman_period] = STATE(998), - [sym__list_item_lower_roman_period] = STATE(712), - [sym__list_lower_roman_paren] = STATE(998), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(998), - [sym__list_item_lower_roman_parens] = STATE(728), - [sym__list_upper_roman_period] = STATE(998), - [sym__list_item_upper_roman_period] = STATE(734), - [sym__list_upper_roman_paren] = STATE(998), - [sym__list_item_upper_roman_paren] = STATE(830), - [sym__list_upper_roman_parens] = STATE(998), - [sym__list_item_upper_roman_parens] = STATE(725), - [sym_list_item_content] = STATE(549), - [sym_table] = STATE(1104), - [sym__table_row] = STATE(241), - [sym_table_header] = STATE(241), - [sym_table_separator] = STATE(241), - [sym_table_row] = STATE(241), - [sym_footnote] = STATE(1104), - [sym_footnote_marker_begin] = STATE(1137), - [sym_div] = STATE(1104), - [sym__div_marker_begin] = STATE(1019), - [sym_code_block] = STATE(1104), - [sym_raw_block] = STATE(1104), - [sym_thematic_break] = STATE(1104), - [sym_block_quote] = STATE(1104), - [sym__block_quote_prefix] = STATE(223), - [sym_link_reference_definition] = STATE(1104), - [sym_block_attribute] = STATE(1104), - [sym__paragraph] = STATE(1104), - [sym__paragraph_content] = STATE(707), - [sym__paragraph_inline_content] = STATE(778), - [sym__inline] = STATE(655), - [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(326), - [aux_sym__list_plus_repeat1] = STATE(329), - [aux_sym__list_star_repeat1] = STATE(330), - [aux_sym__list_task_repeat1] = STATE(298), - [aux_sym__list_definition_repeat1] = STATE(508), - [aux_sym__list_decimal_period_repeat1] = STATE(509), - [aux_sym__list_decimal_paren_repeat1] = STATE(510), - [aux_sym__list_decimal_parens_repeat1] = STATE(511), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(512), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(513), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(514), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(515), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(516), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(517), - [aux_sym__list_lower_roman_period_repeat1] = STATE(526), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(531), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(534), - [aux_sym__list_upper_roman_period_repeat1] = STATE(544), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(441), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(442), - [aux_sym_table_repeat1] = STATE(241), - [aux_sym__block_quote_prefix_repeat1] = STATE(234), - [aux_sym__inline_repeat1] = STATE(273), - [anon_sym_LBRACK] = ACTIONS(364), - [anon_sym_LBRACK_CARET] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(366), - [anon_sym_DOT] = ACTIONS(11), - [aux_sym_identifier_token1] = ACTIONS(11), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_PERCENT] = ACTIONS(11), - [sym__newline] = ACTIONS(398), - [sym__heading_begin] = ACTIONS(370), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(372), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(374), - [sym__block_quote_continuation] = ACTIONS(376), - [sym__thematic_break_dash] = ACTIONS(378), - [sym__thematic_break_star] = ACTIONS(378), - [sym__table_header_begin] = ACTIONS(380), - [sym__table_separator_begin] = ACTIONS(382), - [sym__table_row_begin] = ACTIONS(384), - }, - [31] = { [sym__block_with_heading] = STATE(1095), [sym__block_element] = STATE(1095), [sym_heading] = STATE(1095), [sym_list] = STATE(1095), - [sym__list_dash] = STATE(998), - [sym__list_item_dash] = STATE(553), - [sym__list_plus] = STATE(998), - [sym__list_item_plus] = STATE(554), - [sym__list_star] = STATE(998), - [sym__list_item_star] = STATE(556), - [sym__list_task] = STATE(998), - [sym__list_item_task] = STATE(558), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(998), - [sym__list_item_definition] = STATE(769), - [sym__list_decimal_period] = STATE(998), - [sym__list_item_decimal_period] = STATE(776), - [sym__list_decimal_paren] = STATE(998), - [sym__list_item_decimal_paren] = STATE(790), - [sym__list_decimal_parens] = STATE(998), - [sym__list_item_decimal_parens] = STATE(793), - [sym__list_lower_alpha_period] = STATE(998), - [sym__list_item_lower_alpha_period] = STATE(822), - [sym__list_lower_alpha_paren] = STATE(998), - [sym__list_item_lower_alpha_paren] = STATE(684), - [sym__list_lower_alpha_parens] = STATE(998), - [sym__list_item_lower_alpha_parens] = STATE(688), - [sym__list_upper_alpha_period] = STATE(998), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(998), - [sym__list_item_upper_alpha_paren] = STATE(705), - [sym__list_upper_alpha_parens] = STATE(998), - [sym__list_item_upper_alpha_parens] = STATE(711), - [sym__list_lower_roman_period] = STATE(998), - [sym__list_item_lower_roman_period] = STATE(712), - [sym__list_lower_roman_paren] = STATE(998), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(998), - [sym__list_item_lower_roman_parens] = STATE(728), - [sym__list_upper_roman_period] = STATE(998), - [sym__list_item_upper_roman_period] = STATE(734), - [sym__list_upper_roman_paren] = STATE(998), - [sym__list_item_upper_roman_paren] = STATE(830), - [sym__list_upper_roman_parens] = STATE(998), - [sym__list_item_upper_roman_parens] = STATE(725), - [sym_list_item_content] = STATE(713), + [sym__list_dash] = STATE(1008), + [sym__list_item_dash] = STATE(645), + [sym__list_plus] = STATE(1008), + [sym__list_item_plus] = STATE(661), + [sym__list_star] = STATE(1008), + [sym__list_item_star] = STATE(573), + [sym__list_task] = STATE(1008), + [sym__list_item_task] = STATE(590), + [sym_list_marker_task] = STATE(43), + [sym__list_definition] = STATE(1008), + [sym__list_item_definition] = STATE(740), + [sym__list_decimal_period] = STATE(1008), + [sym__list_item_decimal_period] = STATE(743), + [sym__list_decimal_paren] = STATE(1008), + [sym__list_item_decimal_paren] = STATE(748), + [sym__list_decimal_parens] = STATE(1008), + [sym__list_item_decimal_parens] = STATE(768), + [sym__list_lower_alpha_period] = STATE(1008), + [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_lower_alpha_paren] = STATE(1008), + [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_lower_alpha_parens] = STATE(1008), + [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_upper_alpha_period] = STATE(1008), + [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_upper_alpha_paren] = STATE(1008), + [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_upper_alpha_parens] = STATE(1008), + [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_lower_roman_period] = STATE(1008), + [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_lower_roman_paren] = STATE(1008), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(1008), + [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_upper_roman_period] = STATE(1008), + [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_upper_roman_paren] = STATE(1008), + [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_upper_roman_parens] = STATE(1008), + [sym__list_item_upper_roman_parens] = STATE(819), + [sym_list_item_content] = STATE(789), [sym_table] = STATE(1095), - [sym__table_row] = STATE(241), - [sym_table_header] = STATE(241), - [sym_table_separator] = STATE(241), - [sym_table_row] = STATE(241), + [sym__table_row] = STATE(234), + [sym_table_header] = STATE(234), + [sym_table_separator] = STATE(234), + [sym_table_row] = STATE(234), [sym_footnote] = STATE(1095), - [sym_footnote_marker_begin] = STATE(1137), + [sym_footnote_marker_begin] = STATE(1136), [sym_div] = STATE(1095), - [sym__div_marker_begin] = STATE(1019), + [sym__div_marker_begin] = STATE(1018), [sym_code_block] = STATE(1095), [sym_raw_block] = STATE(1095), [sym_thematic_break] = STATE(1095), [sym_block_quote] = STATE(1095), - [sym__block_quote_prefix] = STATE(223), + [sym__block_quote_prefix] = STATE(225), [sym_link_reference_definition] = STATE(1095), [sym_block_attribute] = STATE(1095), [sym__paragraph] = STATE(1095), - [sym__paragraph_content] = STATE(707), - [sym__paragraph_inline_content] = STATE(778), - [sym__inline] = STATE(655), + [sym__paragraph_content] = STATE(724), + [sym__paragraph_inline_content] = STATE(837), + [sym__inline] = STATE(656), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(326), - [aux_sym__list_plus_repeat1] = STATE(329), - [aux_sym__list_star_repeat1] = STATE(330), - [aux_sym__list_task_repeat1] = STATE(298), - [aux_sym__list_definition_repeat1] = STATE(508), - [aux_sym__list_decimal_period_repeat1] = STATE(509), - [aux_sym__list_decimal_paren_repeat1] = STATE(510), - [aux_sym__list_decimal_parens_repeat1] = STATE(511), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(512), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(513), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(514), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(515), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(516), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(517), - [aux_sym__list_lower_roman_period_repeat1] = STATE(526), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(531), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(534), - [aux_sym__list_upper_roman_period_repeat1] = STATE(544), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(441), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(442), - [aux_sym_table_repeat1] = STATE(241), - [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__list_dash_repeat1] = STATE(318), + [aux_sym__list_plus_repeat1] = STATE(319), + [aux_sym__list_star_repeat1] = STATE(320), + [aux_sym__list_task_repeat1] = STATE(287), + [aux_sym__list_definition_repeat1] = STATE(459), + [aux_sym__list_decimal_period_repeat1] = STATE(460), + [aux_sym__list_decimal_paren_repeat1] = STATE(461), + [aux_sym__list_decimal_parens_repeat1] = STATE(462), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(463), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(464), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(465), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(466), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(467), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(468), + [aux_sym__list_lower_roman_period_repeat1] = STATE(469), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(470), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(471), + [aux_sym__list_upper_roman_period_repeat1] = STATE(472), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(473), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym_table_repeat1] = STATE(234), + [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(366), - [anon_sym_DOT] = ACTIONS(11), - [aux_sym_identifier_token1] = ACTIONS(11), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_PERCENT] = ACTIONS(11), - [sym__newline] = ACTIONS(400), - [sym__heading_begin] = ACTIONS(370), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(372), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(374), - [sym__block_quote_continuation] = ACTIONS(376), - [sym__thematic_break_dash] = ACTIONS(378), - [sym__thematic_break_star] = ACTIONS(378), - [sym__table_header_begin] = ACTIONS(380), - [sym__table_separator_begin] = ACTIONS(382), - [sym__table_row_begin] = ACTIONS(384), + [anon_sym_DOT] = ACTIONS(9), + [aux_sym_identifier_token1] = ACTIONS(9), + [aux_sym__inline_token1] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(9), + [anon_sym_PERCENT] = ACTIONS(9), + [sym__newline] = ACTIONS(398), + [sym__heading_begin] = ACTIONS(368), + [sym__div_begin] = ACTIONS(17), + [sym__code_block_begin] = ACTIONS(370), + [sym_list_marker_dash] = ACTIONS(21), + [sym_list_marker_star] = ACTIONS(23), + [sym_list_marker_plus] = ACTIONS(25), + [sym__list_marker_task_begin] = ACTIONS(27), + [sym_list_marker_definition] = ACTIONS(29), + [sym_list_marker_decimal_period] = ACTIONS(31), + [sym_list_marker_lower_alpha_period] = ACTIONS(33), + [sym_list_marker_upper_alpha_period] = ACTIONS(35), + [sym_list_marker_lower_roman_period] = ACTIONS(37), + [sym_list_marker_upper_roman_period] = ACTIONS(39), + [sym_list_marker_decimal_paren] = ACTIONS(41), + [sym_list_marker_lower_alpha_paren] = ACTIONS(43), + [sym_list_marker_upper_alpha_paren] = ACTIONS(45), + [sym_list_marker_lower_roman_paren] = ACTIONS(47), + [sym_list_marker_upper_roman_paren] = ACTIONS(49), + [sym_list_marker_decimal_parens] = ACTIONS(51), + [sym_list_marker_lower_alpha_parens] = ACTIONS(53), + [sym_list_marker_upper_alpha_parens] = ACTIONS(55), + [sym_list_marker_lower_roman_parens] = ACTIONS(57), + [sym_list_marker_upper_roman_parens] = ACTIONS(59), + [sym__block_quote_begin] = ACTIONS(372), + [sym__block_quote_continuation] = ACTIONS(374), + [sym__thematic_break_dash] = ACTIONS(376), + [sym__thematic_break_star] = ACTIONS(376), + [sym__table_header_begin] = ACTIONS(378), + [sym__table_separator_begin] = ACTIONS(380), + [sym__table_row_begin] = ACTIONS(382), + [sym__block_attribute_begin] = ACTIONS(384), }, - [32] = { + [31] = { [sym__block_with_heading] = STATE(1096), [sym__block_element] = STATE(1096), [sym_heading] = STATE(1096), [sym_list] = STATE(1096), - [sym__list_dash] = STATE(998), - [sym__list_item_dash] = STATE(553), - [sym__list_plus] = STATE(998), - [sym__list_item_plus] = STATE(554), - [sym__list_star] = STATE(998), - [sym__list_item_star] = STATE(556), - [sym__list_task] = STATE(998), - [sym__list_item_task] = STATE(558), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(998), - [sym__list_item_definition] = STATE(769), - [sym__list_decimal_period] = STATE(998), - [sym__list_item_decimal_period] = STATE(776), - [sym__list_decimal_paren] = STATE(998), - [sym__list_item_decimal_paren] = STATE(790), - [sym__list_decimal_parens] = STATE(998), - [sym__list_item_decimal_parens] = STATE(793), - [sym__list_lower_alpha_period] = STATE(998), - [sym__list_item_lower_alpha_period] = STATE(822), - [sym__list_lower_alpha_paren] = STATE(998), - [sym__list_item_lower_alpha_paren] = STATE(684), - [sym__list_lower_alpha_parens] = STATE(998), - [sym__list_item_lower_alpha_parens] = STATE(688), - [sym__list_upper_alpha_period] = STATE(998), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(998), - [sym__list_item_upper_alpha_paren] = STATE(705), - [sym__list_upper_alpha_parens] = STATE(998), - [sym__list_item_upper_alpha_parens] = STATE(711), - [sym__list_lower_roman_period] = STATE(998), - [sym__list_item_lower_roman_period] = STATE(712), - [sym__list_lower_roman_paren] = STATE(998), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(998), - [sym__list_item_lower_roman_parens] = STATE(728), - [sym__list_upper_roman_period] = STATE(998), - [sym__list_item_upper_roman_period] = STATE(734), - [sym__list_upper_roman_paren] = STATE(998), - [sym__list_item_upper_roman_paren] = STATE(830), - [sym__list_upper_roman_parens] = STATE(998), - [sym__list_item_upper_roman_parens] = STATE(725), - [sym_list_item_content] = STATE(714), + [sym__list_dash] = STATE(1008), + [sym__list_item_dash] = STATE(645), + [sym__list_plus] = STATE(1008), + [sym__list_item_plus] = STATE(661), + [sym__list_star] = STATE(1008), + [sym__list_item_star] = STATE(573), + [sym__list_task] = STATE(1008), + [sym__list_item_task] = STATE(590), + [sym_list_marker_task] = STATE(43), + [sym__list_definition] = STATE(1008), + [sym__list_item_definition] = STATE(740), + [sym__list_decimal_period] = STATE(1008), + [sym__list_item_decimal_period] = STATE(743), + [sym__list_decimal_paren] = STATE(1008), + [sym__list_item_decimal_paren] = STATE(748), + [sym__list_decimal_parens] = STATE(1008), + [sym__list_item_decimal_parens] = STATE(768), + [sym__list_lower_alpha_period] = STATE(1008), + [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_lower_alpha_paren] = STATE(1008), + [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_lower_alpha_parens] = STATE(1008), + [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_upper_alpha_period] = STATE(1008), + [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_upper_alpha_paren] = STATE(1008), + [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_upper_alpha_parens] = STATE(1008), + [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_lower_roman_period] = STATE(1008), + [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_lower_roman_paren] = STATE(1008), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(1008), + [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_upper_roman_period] = STATE(1008), + [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_upper_roman_paren] = STATE(1008), + [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_upper_roman_parens] = STATE(1008), + [sym__list_item_upper_roman_parens] = STATE(819), + [sym_list_item_content] = STATE(792), [sym_table] = STATE(1096), - [sym__table_row] = STATE(241), - [sym_table_header] = STATE(241), - [sym_table_separator] = STATE(241), - [sym_table_row] = STATE(241), + [sym__table_row] = STATE(234), + [sym_table_header] = STATE(234), + [sym_table_separator] = STATE(234), + [sym_table_row] = STATE(234), [sym_footnote] = STATE(1096), - [sym_footnote_marker_begin] = STATE(1137), + [sym_footnote_marker_begin] = STATE(1136), [sym_div] = STATE(1096), - [sym__div_marker_begin] = STATE(1019), + [sym__div_marker_begin] = STATE(1018), [sym_code_block] = STATE(1096), [sym_raw_block] = STATE(1096), [sym_thematic_break] = STATE(1096), [sym_block_quote] = STATE(1096), - [sym__block_quote_prefix] = STATE(223), + [sym__block_quote_prefix] = STATE(225), [sym_link_reference_definition] = STATE(1096), [sym_block_attribute] = STATE(1096), [sym__paragraph] = STATE(1096), - [sym__paragraph_content] = STATE(707), - [sym__paragraph_inline_content] = STATE(778), - [sym__inline] = STATE(655), + [sym__paragraph_content] = STATE(724), + [sym__paragraph_inline_content] = STATE(837), + [sym__inline] = STATE(656), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(326), - [aux_sym__list_plus_repeat1] = STATE(329), - [aux_sym__list_star_repeat1] = STATE(330), - [aux_sym__list_task_repeat1] = STATE(298), - [aux_sym__list_definition_repeat1] = STATE(508), - [aux_sym__list_decimal_period_repeat1] = STATE(509), - [aux_sym__list_decimal_paren_repeat1] = STATE(510), - [aux_sym__list_decimal_parens_repeat1] = STATE(511), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(512), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(513), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(514), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(515), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(516), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(517), - [aux_sym__list_lower_roman_period_repeat1] = STATE(526), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(531), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(534), - [aux_sym__list_upper_roman_period_repeat1] = STATE(544), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(441), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(442), - [aux_sym_table_repeat1] = STATE(241), - [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__list_dash_repeat1] = STATE(318), + [aux_sym__list_plus_repeat1] = STATE(319), + [aux_sym__list_star_repeat1] = STATE(320), + [aux_sym__list_task_repeat1] = STATE(287), + [aux_sym__list_definition_repeat1] = STATE(459), + [aux_sym__list_decimal_period_repeat1] = STATE(460), + [aux_sym__list_decimal_paren_repeat1] = STATE(461), + [aux_sym__list_decimal_parens_repeat1] = STATE(462), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(463), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(464), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(465), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(466), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(467), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(468), + [aux_sym__list_lower_roman_period_repeat1] = STATE(469), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(470), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(471), + [aux_sym__list_upper_roman_period_repeat1] = STATE(472), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(473), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym_table_repeat1] = STATE(234), + [aux_sym__block_quote_prefix_repeat1] = STATE(230), + [aux_sym__inline_repeat1] = STATE(273), + [anon_sym_LBRACK] = ACTIONS(364), + [anon_sym_LBRACK_CARET] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(9), + [aux_sym_identifier_token1] = ACTIONS(9), + [aux_sym__inline_token1] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(9), + [anon_sym_PERCENT] = ACTIONS(9), + [sym__newline] = ACTIONS(400), + [sym__heading_begin] = ACTIONS(368), + [sym__div_begin] = ACTIONS(17), + [sym__code_block_begin] = ACTIONS(370), + [sym_list_marker_dash] = ACTIONS(21), + [sym_list_marker_star] = ACTIONS(23), + [sym_list_marker_plus] = ACTIONS(25), + [sym__list_marker_task_begin] = ACTIONS(27), + [sym_list_marker_definition] = ACTIONS(29), + [sym_list_marker_decimal_period] = ACTIONS(31), + [sym_list_marker_lower_alpha_period] = ACTIONS(33), + [sym_list_marker_upper_alpha_period] = ACTIONS(35), + [sym_list_marker_lower_roman_period] = ACTIONS(37), + [sym_list_marker_upper_roman_period] = ACTIONS(39), + [sym_list_marker_decimal_paren] = ACTIONS(41), + [sym_list_marker_lower_alpha_paren] = ACTIONS(43), + [sym_list_marker_upper_alpha_paren] = ACTIONS(45), + [sym_list_marker_lower_roman_paren] = ACTIONS(47), + [sym_list_marker_upper_roman_paren] = ACTIONS(49), + [sym_list_marker_decimal_parens] = ACTIONS(51), + [sym_list_marker_lower_alpha_parens] = ACTIONS(53), + [sym_list_marker_upper_alpha_parens] = ACTIONS(55), + [sym_list_marker_lower_roman_parens] = ACTIONS(57), + [sym_list_marker_upper_roman_parens] = ACTIONS(59), + [sym__block_quote_begin] = ACTIONS(372), + [sym__block_quote_continuation] = ACTIONS(374), + [sym__thematic_break_dash] = ACTIONS(376), + [sym__thematic_break_star] = ACTIONS(376), + [sym__table_header_begin] = ACTIONS(378), + [sym__table_separator_begin] = ACTIONS(380), + [sym__table_row_begin] = ACTIONS(382), + [sym__block_attribute_begin] = ACTIONS(384), + }, + [32] = { + [sym__block_with_heading] = STATE(953), + [sym__block_element] = STATE(953), + [sym_heading] = STATE(953), + [sym_list] = STATE(953), + [sym__list_dash] = STATE(1008), + [sym__list_item_dash] = STATE(645), + [sym__list_plus] = STATE(1008), + [sym__list_item_plus] = STATE(661), + [sym__list_star] = STATE(1008), + [sym__list_item_star] = STATE(573), + [sym__list_task] = STATE(1008), + [sym__list_item_task] = STATE(590), + [sym_list_marker_task] = STATE(43), + [sym__list_definition] = STATE(1008), + [sym__list_item_definition] = STATE(740), + [sym__list_decimal_period] = STATE(1008), + [sym__list_item_decimal_period] = STATE(743), + [sym__list_decimal_paren] = STATE(1008), + [sym__list_item_decimal_paren] = STATE(748), + [sym__list_decimal_parens] = STATE(1008), + [sym__list_item_decimal_parens] = STATE(768), + [sym__list_lower_alpha_period] = STATE(1008), + [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_lower_alpha_paren] = STATE(1008), + [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_lower_alpha_parens] = STATE(1008), + [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_upper_alpha_period] = STATE(1008), + [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_upper_alpha_paren] = STATE(1008), + [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_upper_alpha_parens] = STATE(1008), + [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_lower_roman_period] = STATE(1008), + [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_lower_roman_paren] = STATE(1008), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(1008), + [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_upper_roman_period] = STATE(1008), + [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_upper_roman_paren] = STATE(1008), + [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_upper_roman_parens] = STATE(1008), + [sym__list_item_upper_roman_parens] = STATE(819), + [sym_table] = STATE(953), + [sym__table_row] = STATE(234), + [sym_table_header] = STATE(234), + [sym_table_separator] = STATE(234), + [sym_table_row] = STATE(234), + [sym_footnote] = STATE(953), + [sym_footnote_marker_begin] = STATE(1136), + [sym_footnote_content] = STATE(204), + [sym_div] = STATE(953), + [sym__div_marker_begin] = STATE(1018), + [sym_code_block] = STATE(953), + [sym_raw_block] = STATE(953), + [sym_thematic_break] = STATE(953), + [sym_block_quote] = STATE(953), + [sym__block_quote_prefix] = STATE(225), + [sym_link_reference_definition] = STATE(953), + [sym_block_attribute] = STATE(953), + [sym__paragraph] = STATE(953), + [sym__paragraph_content] = STATE(724), + [sym__paragraph_inline_content] = STATE(837), + [sym__inline] = STATE(656), + [sym__symbol_fallback] = STATE(273), + [aux_sym__list_dash_repeat1] = STATE(318), + [aux_sym__list_plus_repeat1] = STATE(319), + [aux_sym__list_star_repeat1] = STATE(320), + [aux_sym__list_task_repeat1] = STATE(287), + [aux_sym__list_definition_repeat1] = STATE(459), + [aux_sym__list_decimal_period_repeat1] = STATE(460), + [aux_sym__list_decimal_paren_repeat1] = STATE(461), + [aux_sym__list_decimal_parens_repeat1] = STATE(462), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(463), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(464), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(465), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(466), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(467), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(468), + [aux_sym__list_lower_roman_period_repeat1] = STATE(469), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(470), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(471), + [aux_sym__list_upper_roman_period_repeat1] = STATE(472), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(473), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym_table_repeat1] = STATE(234), + [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(366), - [anon_sym_DOT] = ACTIONS(11), - [aux_sym_identifier_token1] = ACTIONS(11), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_PERCENT] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(9), + [aux_sym_identifier_token1] = ACTIONS(9), + [aux_sym__inline_token1] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(9), + [anon_sym_PERCENT] = ACTIONS(9), [sym__newline] = ACTIONS(402), - [sym__heading_begin] = ACTIONS(370), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(372), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(374), - [sym__block_quote_continuation] = ACTIONS(376), - [sym__thematic_break_dash] = ACTIONS(378), - [sym__thematic_break_star] = ACTIONS(378), - [sym__table_header_begin] = ACTIONS(380), - [sym__table_separator_begin] = ACTIONS(382), - [sym__table_row_begin] = ACTIONS(384), + [sym__heading_begin] = ACTIONS(368), + [sym__div_begin] = ACTIONS(17), + [sym__code_block_begin] = ACTIONS(370), + [sym_list_marker_dash] = ACTIONS(21), + [sym_list_marker_star] = ACTIONS(23), + [sym_list_marker_plus] = ACTIONS(25), + [sym__list_marker_task_begin] = ACTIONS(27), + [sym_list_marker_definition] = ACTIONS(29), + [sym_list_marker_decimal_period] = ACTIONS(31), + [sym_list_marker_lower_alpha_period] = ACTIONS(33), + [sym_list_marker_upper_alpha_period] = ACTIONS(35), + [sym_list_marker_lower_roman_period] = ACTIONS(37), + [sym_list_marker_upper_roman_period] = ACTIONS(39), + [sym_list_marker_decimal_paren] = ACTIONS(41), + [sym_list_marker_lower_alpha_paren] = ACTIONS(43), + [sym_list_marker_upper_alpha_paren] = ACTIONS(45), + [sym_list_marker_lower_roman_paren] = ACTIONS(47), + [sym_list_marker_upper_roman_paren] = ACTIONS(49), + [sym_list_marker_decimal_parens] = ACTIONS(51), + [sym_list_marker_lower_alpha_parens] = ACTIONS(53), + [sym_list_marker_upper_alpha_parens] = ACTIONS(55), + [sym_list_marker_lower_roman_parens] = ACTIONS(57), + [sym_list_marker_upper_roman_parens] = ACTIONS(59), + [sym__block_quote_begin] = ACTIONS(372), + [sym__block_quote_continuation] = ACTIONS(374), + [sym__thematic_break_dash] = ACTIONS(376), + [sym__thematic_break_star] = ACTIONS(376), + [sym__table_header_begin] = ACTIONS(378), + [sym__table_separator_begin] = ACTIONS(380), + [sym__table_row_begin] = ACTIONS(382), + [sym__block_attribute_begin] = ACTIONS(384), }, [33] = { [sym__block_with_heading] = STATE(1097), [sym__block_element] = STATE(1097), [sym_heading] = STATE(1097), [sym_list] = STATE(1097), - [sym__list_dash] = STATE(998), - [sym__list_item_dash] = STATE(553), - [sym__list_plus] = STATE(998), - [sym__list_item_plus] = STATE(554), - [sym__list_star] = STATE(998), - [sym__list_item_star] = STATE(556), - [sym__list_task] = STATE(998), - [sym__list_item_task] = STATE(558), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(998), - [sym__list_item_definition] = STATE(769), - [sym__list_decimal_period] = STATE(998), - [sym__list_item_decimal_period] = STATE(776), - [sym__list_decimal_paren] = STATE(998), - [sym__list_item_decimal_paren] = STATE(790), - [sym__list_decimal_parens] = STATE(998), - [sym__list_item_decimal_parens] = STATE(793), - [sym__list_lower_alpha_period] = STATE(998), - [sym__list_item_lower_alpha_period] = STATE(822), - [sym__list_lower_alpha_paren] = STATE(998), - [sym__list_item_lower_alpha_paren] = STATE(684), - [sym__list_lower_alpha_parens] = STATE(998), - [sym__list_item_lower_alpha_parens] = STATE(688), - [sym__list_upper_alpha_period] = STATE(998), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(998), - [sym__list_item_upper_alpha_paren] = STATE(705), - [sym__list_upper_alpha_parens] = STATE(998), - [sym__list_item_upper_alpha_parens] = STATE(711), - [sym__list_lower_roman_period] = STATE(998), - [sym__list_item_lower_roman_period] = STATE(712), - [sym__list_lower_roman_paren] = STATE(998), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(998), - [sym__list_item_lower_roman_parens] = STATE(728), - [sym__list_upper_roman_period] = STATE(998), - [sym__list_item_upper_roman_period] = STATE(734), - [sym__list_upper_roman_paren] = STATE(998), - [sym__list_item_upper_roman_paren] = STATE(830), - [sym__list_upper_roman_parens] = STATE(998), - [sym__list_item_upper_roman_parens] = STATE(725), - [sym_list_item_content] = STATE(715), + [sym__list_dash] = STATE(1008), + [sym__list_item_dash] = STATE(645), + [sym__list_plus] = STATE(1008), + [sym__list_item_plus] = STATE(661), + [sym__list_star] = STATE(1008), + [sym__list_item_star] = STATE(573), + [sym__list_task] = STATE(1008), + [sym__list_item_task] = STATE(590), + [sym_list_marker_task] = STATE(43), + [sym__list_definition] = STATE(1008), + [sym__list_item_definition] = STATE(740), + [sym__list_decimal_period] = STATE(1008), + [sym__list_item_decimal_period] = STATE(743), + [sym__list_decimal_paren] = STATE(1008), + [sym__list_item_decimal_paren] = STATE(748), + [sym__list_decimal_parens] = STATE(1008), + [sym__list_item_decimal_parens] = STATE(768), + [sym__list_lower_alpha_period] = STATE(1008), + [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_lower_alpha_paren] = STATE(1008), + [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_lower_alpha_parens] = STATE(1008), + [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_upper_alpha_period] = STATE(1008), + [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_upper_alpha_paren] = STATE(1008), + [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_upper_alpha_parens] = STATE(1008), + [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_lower_roman_period] = STATE(1008), + [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_lower_roman_paren] = STATE(1008), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(1008), + [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_upper_roman_period] = STATE(1008), + [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_upper_roman_paren] = STATE(1008), + [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_upper_roman_parens] = STATE(1008), + [sym__list_item_upper_roman_parens] = STATE(819), + [sym_list_item_content] = STATE(893), [sym_table] = STATE(1097), - [sym__table_row] = STATE(241), - [sym_table_header] = STATE(241), - [sym_table_separator] = STATE(241), - [sym_table_row] = STATE(241), + [sym__table_row] = STATE(234), + [sym_table_header] = STATE(234), + [sym_table_separator] = STATE(234), + [sym_table_row] = STATE(234), [sym_footnote] = STATE(1097), - [sym_footnote_marker_begin] = STATE(1137), + [sym_footnote_marker_begin] = STATE(1136), [sym_div] = STATE(1097), - [sym__div_marker_begin] = STATE(1019), + [sym__div_marker_begin] = STATE(1018), [sym_code_block] = STATE(1097), [sym_raw_block] = STATE(1097), [sym_thematic_break] = STATE(1097), [sym_block_quote] = STATE(1097), - [sym__block_quote_prefix] = STATE(223), + [sym__block_quote_prefix] = STATE(225), [sym_link_reference_definition] = STATE(1097), [sym_block_attribute] = STATE(1097), [sym__paragraph] = STATE(1097), - [sym__paragraph_content] = STATE(707), - [sym__paragraph_inline_content] = STATE(778), - [sym__inline] = STATE(655), + [sym__paragraph_content] = STATE(724), + [sym__paragraph_inline_content] = STATE(837), + [sym__inline] = STATE(656), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(326), - [aux_sym__list_plus_repeat1] = STATE(329), - [aux_sym__list_star_repeat1] = STATE(330), - [aux_sym__list_task_repeat1] = STATE(298), - [aux_sym__list_definition_repeat1] = STATE(508), - [aux_sym__list_decimal_period_repeat1] = STATE(509), - [aux_sym__list_decimal_paren_repeat1] = STATE(510), - [aux_sym__list_decimal_parens_repeat1] = STATE(511), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(512), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(513), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(514), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(515), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(516), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(517), - [aux_sym__list_lower_roman_period_repeat1] = STATE(526), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(531), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(534), - [aux_sym__list_upper_roman_period_repeat1] = STATE(544), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(441), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(442), - [aux_sym_table_repeat1] = STATE(241), - [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__list_dash_repeat1] = STATE(318), + [aux_sym__list_plus_repeat1] = STATE(319), + [aux_sym__list_star_repeat1] = STATE(320), + [aux_sym__list_task_repeat1] = STATE(287), + [aux_sym__list_definition_repeat1] = STATE(459), + [aux_sym__list_decimal_period_repeat1] = STATE(460), + [aux_sym__list_decimal_paren_repeat1] = STATE(461), + [aux_sym__list_decimal_parens_repeat1] = STATE(462), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(463), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(464), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(465), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(466), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(467), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(468), + [aux_sym__list_lower_roman_period_repeat1] = STATE(469), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(470), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(471), + [aux_sym__list_upper_roman_period_repeat1] = STATE(472), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(473), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym_table_repeat1] = STATE(234), + [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(366), - [anon_sym_DOT] = ACTIONS(11), - [aux_sym_identifier_token1] = ACTIONS(11), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_PERCENT] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(9), + [aux_sym_identifier_token1] = ACTIONS(9), + [aux_sym__inline_token1] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(9), + [anon_sym_PERCENT] = ACTIONS(9), [sym__newline] = ACTIONS(404), - [sym__heading_begin] = ACTIONS(370), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(372), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(374), - [sym__block_quote_continuation] = ACTIONS(376), - [sym__thematic_break_dash] = ACTIONS(378), - [sym__thematic_break_star] = ACTIONS(378), - [sym__table_header_begin] = ACTIONS(380), - [sym__table_separator_begin] = ACTIONS(382), - [sym__table_row_begin] = ACTIONS(384), + [sym__heading_begin] = ACTIONS(368), + [sym__div_begin] = ACTIONS(17), + [sym__code_block_begin] = ACTIONS(370), + [sym_list_marker_dash] = ACTIONS(21), + [sym_list_marker_star] = ACTIONS(23), + [sym_list_marker_plus] = ACTIONS(25), + [sym__list_marker_task_begin] = ACTIONS(27), + [sym_list_marker_definition] = ACTIONS(29), + [sym_list_marker_decimal_period] = ACTIONS(31), + [sym_list_marker_lower_alpha_period] = ACTIONS(33), + [sym_list_marker_upper_alpha_period] = ACTIONS(35), + [sym_list_marker_lower_roman_period] = ACTIONS(37), + [sym_list_marker_upper_roman_period] = ACTIONS(39), + [sym_list_marker_decimal_paren] = ACTIONS(41), + [sym_list_marker_lower_alpha_paren] = ACTIONS(43), + [sym_list_marker_upper_alpha_paren] = ACTIONS(45), + [sym_list_marker_lower_roman_paren] = ACTIONS(47), + [sym_list_marker_upper_roman_paren] = ACTIONS(49), + [sym_list_marker_decimal_parens] = ACTIONS(51), + [sym_list_marker_lower_alpha_parens] = ACTIONS(53), + [sym_list_marker_upper_alpha_parens] = ACTIONS(55), + [sym_list_marker_lower_roman_parens] = ACTIONS(57), + [sym_list_marker_upper_roman_parens] = ACTIONS(59), + [sym__block_quote_begin] = ACTIONS(372), + [sym__block_quote_continuation] = ACTIONS(374), + [sym__thematic_break_dash] = ACTIONS(376), + [sym__thematic_break_star] = ACTIONS(376), + [sym__table_header_begin] = ACTIONS(378), + [sym__table_separator_begin] = ACTIONS(380), + [sym__table_row_begin] = ACTIONS(382), + [sym__block_attribute_begin] = ACTIONS(384), }, [34] = { - [sym__block_with_heading] = STATE(1106), - [sym__block_element] = STATE(1106), - [sym_heading] = STATE(1106), - [sym_list] = STATE(1106), - [sym__list_dash] = STATE(998), - [sym__list_item_dash] = STATE(553), - [sym__list_plus] = STATE(998), - [sym__list_item_plus] = STATE(554), - [sym__list_star] = STATE(998), - [sym__list_item_star] = STATE(556), - [sym__list_task] = STATE(998), - [sym__list_item_task] = STATE(558), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(998), - [sym__list_item_definition] = STATE(769), - [sym__list_decimal_period] = STATE(998), - [sym__list_item_decimal_period] = STATE(776), - [sym__list_decimal_paren] = STATE(998), - [sym__list_item_decimal_paren] = STATE(790), - [sym__list_decimal_parens] = STATE(998), - [sym__list_item_decimal_parens] = STATE(793), - [sym__list_lower_alpha_period] = STATE(998), - [sym__list_item_lower_alpha_period] = STATE(822), - [sym__list_lower_alpha_paren] = STATE(998), - [sym__list_item_lower_alpha_paren] = STATE(684), - [sym__list_lower_alpha_parens] = STATE(998), - [sym__list_item_lower_alpha_parens] = STATE(688), - [sym__list_upper_alpha_period] = STATE(998), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(998), - [sym__list_item_upper_alpha_paren] = STATE(705), - [sym__list_upper_alpha_parens] = STATE(998), - [sym__list_item_upper_alpha_parens] = STATE(711), - [sym__list_lower_roman_period] = STATE(998), - [sym__list_item_lower_roman_period] = STATE(712), - [sym__list_lower_roman_paren] = STATE(998), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(998), - [sym__list_item_lower_roman_parens] = STATE(728), - [sym__list_upper_roman_period] = STATE(998), - [sym__list_item_upper_roman_period] = STATE(734), - [sym__list_upper_roman_paren] = STATE(998), - [sym__list_item_upper_roman_paren] = STATE(830), - [sym__list_upper_roman_parens] = STATE(998), - [sym__list_item_upper_roman_parens] = STATE(725), - [sym_table] = STATE(1106), - [sym__table_row] = STATE(241), - [sym_table_header] = STATE(241), - [sym_table_separator] = STATE(241), - [sym_table_row] = STATE(241), - [sym_footnote] = STATE(1106), - [sym_footnote_marker_begin] = STATE(1137), - [sym_footnote_content] = STATE(121), - [sym_div] = STATE(1106), - [sym__div_marker_begin] = STATE(1019), - [sym_code_block] = STATE(1106), - [sym_raw_block] = STATE(1106), - [sym_thematic_break] = STATE(1106), - [sym_block_quote] = STATE(1106), - [sym__block_quote_prefix] = STATE(223), - [sym_link_reference_definition] = STATE(1106), - [sym_block_attribute] = STATE(1106), - [sym__paragraph] = STATE(1106), - [sym__paragraph_content] = STATE(707), - [sym__paragraph_inline_content] = STATE(778), - [sym__inline] = STATE(655), - [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(326), - [aux_sym__list_plus_repeat1] = STATE(329), - [aux_sym__list_star_repeat1] = STATE(330), - [aux_sym__list_task_repeat1] = STATE(298), - [aux_sym__list_definition_repeat1] = STATE(508), - [aux_sym__list_decimal_period_repeat1] = STATE(509), - [aux_sym__list_decimal_paren_repeat1] = STATE(510), - [aux_sym__list_decimal_parens_repeat1] = STATE(511), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(512), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(513), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(514), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(515), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(516), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(517), - [aux_sym__list_lower_roman_period_repeat1] = STATE(526), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(531), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(534), - [aux_sym__list_upper_roman_period_repeat1] = STATE(544), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(441), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(442), - [aux_sym_table_repeat1] = STATE(241), - [aux_sym__block_quote_prefix_repeat1] = STATE(234), - [aux_sym__inline_repeat1] = STATE(273), - [anon_sym_LBRACK] = ACTIONS(364), - [anon_sym_LBRACK_CARET] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(366), - [anon_sym_DOT] = ACTIONS(11), - [aux_sym_identifier_token1] = ACTIONS(11), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_PERCENT] = ACTIONS(11), - [sym__newline] = ACTIONS(406), - [sym__heading_begin] = ACTIONS(370), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(372), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(374), - [sym__block_quote_continuation] = ACTIONS(376), - [sym__thematic_break_dash] = ACTIONS(378), - [sym__thematic_break_star] = ACTIONS(378), - [sym__table_header_begin] = ACTIONS(380), - [sym__table_separator_begin] = ACTIONS(382), - [sym__table_row_begin] = ACTIONS(384), - }, - [35] = { [sym__block_with_heading] = STATE(1098), [sym__block_element] = STATE(1098), [sym_heading] = STATE(1098), [sym_list] = STATE(1098), - [sym__list_dash] = STATE(998), - [sym__list_item_dash] = STATE(553), - [sym__list_plus] = STATE(998), - [sym__list_item_plus] = STATE(554), - [sym__list_star] = STATE(998), - [sym__list_item_star] = STATE(556), - [sym__list_task] = STATE(998), - [sym__list_item_task] = STATE(558), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(998), - [sym__list_item_definition] = STATE(769), - [sym__list_decimal_period] = STATE(998), - [sym__list_item_decimal_period] = STATE(776), - [sym__list_decimal_paren] = STATE(998), - [sym__list_item_decimal_paren] = STATE(790), - [sym__list_decimal_parens] = STATE(998), - [sym__list_item_decimal_parens] = STATE(793), - [sym__list_lower_alpha_period] = STATE(998), - [sym__list_item_lower_alpha_period] = STATE(822), - [sym__list_lower_alpha_paren] = STATE(998), - [sym__list_item_lower_alpha_paren] = STATE(684), - [sym__list_lower_alpha_parens] = STATE(998), - [sym__list_item_lower_alpha_parens] = STATE(688), - [sym__list_upper_alpha_period] = STATE(998), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(998), - [sym__list_item_upper_alpha_paren] = STATE(705), - [sym__list_upper_alpha_parens] = STATE(998), - [sym__list_item_upper_alpha_parens] = STATE(711), - [sym__list_lower_roman_period] = STATE(998), - [sym__list_item_lower_roman_period] = STATE(712), - [sym__list_lower_roman_paren] = STATE(998), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(998), - [sym__list_item_lower_roman_parens] = STATE(728), - [sym__list_upper_roman_period] = STATE(998), - [sym__list_item_upper_roman_period] = STATE(734), - [sym__list_upper_roman_paren] = STATE(998), - [sym__list_item_upper_roman_paren] = STATE(830), - [sym__list_upper_roman_parens] = STATE(998), - [sym__list_item_upper_roman_parens] = STATE(725), - [sym_list_item_content] = STATE(716), + [sym__list_dash] = STATE(1008), + [sym__list_item_dash] = STATE(645), + [sym__list_plus] = STATE(1008), + [sym__list_item_plus] = STATE(661), + [sym__list_star] = STATE(1008), + [sym__list_item_star] = STATE(573), + [sym__list_task] = STATE(1008), + [sym__list_item_task] = STATE(590), + [sym_list_marker_task] = STATE(43), + [sym__list_definition] = STATE(1008), + [sym__list_item_definition] = STATE(740), + [sym__list_decimal_period] = STATE(1008), + [sym__list_item_decimal_period] = STATE(743), + [sym__list_decimal_paren] = STATE(1008), + [sym__list_item_decimal_paren] = STATE(748), + [sym__list_decimal_parens] = STATE(1008), + [sym__list_item_decimal_parens] = STATE(768), + [sym__list_lower_alpha_period] = STATE(1008), + [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_lower_alpha_paren] = STATE(1008), + [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_lower_alpha_parens] = STATE(1008), + [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_upper_alpha_period] = STATE(1008), + [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_upper_alpha_paren] = STATE(1008), + [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_upper_alpha_parens] = STATE(1008), + [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_lower_roman_period] = STATE(1008), + [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_lower_roman_paren] = STATE(1008), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(1008), + [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_upper_roman_period] = STATE(1008), + [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_upper_roman_paren] = STATE(1008), + [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_upper_roman_parens] = STATE(1008), + [sym__list_item_upper_roman_parens] = STATE(819), + [sym_list_item_content] = STATE(795), [sym_table] = STATE(1098), - [sym__table_row] = STATE(241), - [sym_table_header] = STATE(241), - [sym_table_separator] = STATE(241), - [sym_table_row] = STATE(241), + [sym__table_row] = STATE(234), + [sym_table_header] = STATE(234), + [sym_table_separator] = STATE(234), + [sym_table_row] = STATE(234), [sym_footnote] = STATE(1098), - [sym_footnote_marker_begin] = STATE(1137), + [sym_footnote_marker_begin] = STATE(1136), [sym_div] = STATE(1098), - [sym__div_marker_begin] = STATE(1019), + [sym__div_marker_begin] = STATE(1018), [sym_code_block] = STATE(1098), [sym_raw_block] = STATE(1098), [sym_thematic_break] = STATE(1098), [sym_block_quote] = STATE(1098), - [sym__block_quote_prefix] = STATE(223), + [sym__block_quote_prefix] = STATE(225), [sym_link_reference_definition] = STATE(1098), [sym_block_attribute] = STATE(1098), [sym__paragraph] = STATE(1098), - [sym__paragraph_content] = STATE(707), - [sym__paragraph_inline_content] = STATE(778), - [sym__inline] = STATE(655), + [sym__paragraph_content] = STATE(724), + [sym__paragraph_inline_content] = STATE(837), + [sym__inline] = STATE(656), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(326), - [aux_sym__list_plus_repeat1] = STATE(329), - [aux_sym__list_star_repeat1] = STATE(330), - [aux_sym__list_task_repeat1] = STATE(298), - [aux_sym__list_definition_repeat1] = STATE(508), - [aux_sym__list_decimal_period_repeat1] = STATE(509), - [aux_sym__list_decimal_paren_repeat1] = STATE(510), - [aux_sym__list_decimal_parens_repeat1] = STATE(511), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(512), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(513), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(514), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(515), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(516), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(517), - [aux_sym__list_lower_roman_period_repeat1] = STATE(526), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(531), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(534), - [aux_sym__list_upper_roman_period_repeat1] = STATE(544), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(441), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(442), - [aux_sym_table_repeat1] = STATE(241), - [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__list_dash_repeat1] = STATE(318), + [aux_sym__list_plus_repeat1] = STATE(319), + [aux_sym__list_star_repeat1] = STATE(320), + [aux_sym__list_task_repeat1] = STATE(287), + [aux_sym__list_definition_repeat1] = STATE(459), + [aux_sym__list_decimal_period_repeat1] = STATE(460), + [aux_sym__list_decimal_paren_repeat1] = STATE(461), + [aux_sym__list_decimal_parens_repeat1] = STATE(462), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(463), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(464), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(465), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(466), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(467), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(468), + [aux_sym__list_lower_roman_period_repeat1] = STATE(469), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(470), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(471), + [aux_sym__list_upper_roman_period_repeat1] = STATE(472), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(473), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym_table_repeat1] = STATE(234), + [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(366), - [anon_sym_DOT] = ACTIONS(11), - [aux_sym_identifier_token1] = ACTIONS(11), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_PERCENT] = ACTIONS(11), - [sym__newline] = ACTIONS(408), - [sym__heading_begin] = ACTIONS(370), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(372), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(374), - [sym__block_quote_continuation] = ACTIONS(376), - [sym__thematic_break_dash] = ACTIONS(378), - [sym__thematic_break_star] = ACTIONS(378), - [sym__table_header_begin] = ACTIONS(380), - [sym__table_separator_begin] = ACTIONS(382), - [sym__table_row_begin] = ACTIONS(384), + [anon_sym_DOT] = ACTIONS(9), + [aux_sym_identifier_token1] = ACTIONS(9), + [aux_sym__inline_token1] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(9), + [anon_sym_PERCENT] = ACTIONS(9), + [sym__newline] = ACTIONS(406), + [sym__heading_begin] = ACTIONS(368), + [sym__div_begin] = ACTIONS(17), + [sym__code_block_begin] = ACTIONS(370), + [sym_list_marker_dash] = ACTIONS(21), + [sym_list_marker_star] = ACTIONS(23), + [sym_list_marker_plus] = ACTIONS(25), + [sym__list_marker_task_begin] = ACTIONS(27), + [sym_list_marker_definition] = ACTIONS(29), + [sym_list_marker_decimal_period] = ACTIONS(31), + [sym_list_marker_lower_alpha_period] = ACTIONS(33), + [sym_list_marker_upper_alpha_period] = ACTIONS(35), + [sym_list_marker_lower_roman_period] = ACTIONS(37), + [sym_list_marker_upper_roman_period] = ACTIONS(39), + [sym_list_marker_decimal_paren] = ACTIONS(41), + [sym_list_marker_lower_alpha_paren] = ACTIONS(43), + [sym_list_marker_upper_alpha_paren] = ACTIONS(45), + [sym_list_marker_lower_roman_paren] = ACTIONS(47), + [sym_list_marker_upper_roman_paren] = ACTIONS(49), + [sym_list_marker_decimal_parens] = ACTIONS(51), + [sym_list_marker_lower_alpha_parens] = ACTIONS(53), + [sym_list_marker_upper_alpha_parens] = ACTIONS(55), + [sym_list_marker_lower_roman_parens] = ACTIONS(57), + [sym_list_marker_upper_roman_parens] = ACTIONS(59), + [sym__block_quote_begin] = ACTIONS(372), + [sym__block_quote_continuation] = ACTIONS(374), + [sym__thematic_break_dash] = ACTIONS(376), + [sym__thematic_break_star] = ACTIONS(376), + [sym__table_header_begin] = ACTIONS(378), + [sym__table_separator_begin] = ACTIONS(380), + [sym__table_row_begin] = ACTIONS(382), + [sym__block_attribute_begin] = ACTIONS(384), }, - [36] = { + [35] = { [sym__block_with_heading] = STATE(1099), [sym__block_element] = STATE(1099), [sym_heading] = STATE(1099), [sym_list] = STATE(1099), - [sym__list_dash] = STATE(998), - [sym__list_item_dash] = STATE(553), - [sym__list_plus] = STATE(998), - [sym__list_item_plus] = STATE(554), - [sym__list_star] = STATE(998), - [sym__list_item_star] = STATE(556), - [sym__list_task] = STATE(998), - [sym__list_item_task] = STATE(558), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(998), - [sym__list_item_definition] = STATE(769), - [sym__list_decimal_period] = STATE(998), - [sym__list_item_decimal_period] = STATE(776), - [sym__list_decimal_paren] = STATE(998), - [sym__list_item_decimal_paren] = STATE(790), - [sym__list_decimal_parens] = STATE(998), - [sym__list_item_decimal_parens] = STATE(793), - [sym__list_lower_alpha_period] = STATE(998), - [sym__list_item_lower_alpha_period] = STATE(822), - [sym__list_lower_alpha_paren] = STATE(998), - [sym__list_item_lower_alpha_paren] = STATE(684), - [sym__list_lower_alpha_parens] = STATE(998), - [sym__list_item_lower_alpha_parens] = STATE(688), - [sym__list_upper_alpha_period] = STATE(998), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(998), - [sym__list_item_upper_alpha_paren] = STATE(705), - [sym__list_upper_alpha_parens] = STATE(998), - [sym__list_item_upper_alpha_parens] = STATE(711), - [sym__list_lower_roman_period] = STATE(998), - [sym__list_item_lower_roman_period] = STATE(712), - [sym__list_lower_roman_paren] = STATE(998), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(998), - [sym__list_item_lower_roman_parens] = STATE(728), - [sym__list_upper_roman_period] = STATE(998), - [sym__list_item_upper_roman_period] = STATE(734), - [sym__list_upper_roman_paren] = STATE(998), - [sym__list_item_upper_roman_paren] = STATE(830), - [sym__list_upper_roman_parens] = STATE(998), - [sym__list_item_upper_roman_parens] = STATE(725), - [sym_list_item_content] = STATE(717), + [sym__list_dash] = STATE(1008), + [sym__list_item_dash] = STATE(645), + [sym__list_plus] = STATE(1008), + [sym__list_item_plus] = STATE(661), + [sym__list_star] = STATE(1008), + [sym__list_item_star] = STATE(573), + [sym__list_task] = STATE(1008), + [sym__list_item_task] = STATE(590), + [sym_list_marker_task] = STATE(43), + [sym__list_definition] = STATE(1008), + [sym__list_item_definition] = STATE(740), + [sym__list_decimal_period] = STATE(1008), + [sym__list_item_decimal_period] = STATE(743), + [sym__list_decimal_paren] = STATE(1008), + [sym__list_item_decimal_paren] = STATE(748), + [sym__list_decimal_parens] = STATE(1008), + [sym__list_item_decimal_parens] = STATE(768), + [sym__list_lower_alpha_period] = STATE(1008), + [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_lower_alpha_paren] = STATE(1008), + [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_lower_alpha_parens] = STATE(1008), + [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_upper_alpha_period] = STATE(1008), + [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_upper_alpha_paren] = STATE(1008), + [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_upper_alpha_parens] = STATE(1008), + [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_lower_roman_period] = STATE(1008), + [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_lower_roman_paren] = STATE(1008), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(1008), + [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_upper_roman_period] = STATE(1008), + [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_upper_roman_paren] = STATE(1008), + [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_upper_roman_parens] = STATE(1008), + [sym__list_item_upper_roman_parens] = STATE(819), + [sym_list_item_content] = STATE(796), [sym_table] = STATE(1099), - [sym__table_row] = STATE(241), - [sym_table_header] = STATE(241), - [sym_table_separator] = STATE(241), - [sym_table_row] = STATE(241), + [sym__table_row] = STATE(234), + [sym_table_header] = STATE(234), + [sym_table_separator] = STATE(234), + [sym_table_row] = STATE(234), [sym_footnote] = STATE(1099), - [sym_footnote_marker_begin] = STATE(1137), + [sym_footnote_marker_begin] = STATE(1136), [sym_div] = STATE(1099), - [sym__div_marker_begin] = STATE(1019), + [sym__div_marker_begin] = STATE(1018), [sym_code_block] = STATE(1099), [sym_raw_block] = STATE(1099), [sym_thematic_break] = STATE(1099), [sym_block_quote] = STATE(1099), - [sym__block_quote_prefix] = STATE(223), + [sym__block_quote_prefix] = STATE(225), [sym_link_reference_definition] = STATE(1099), [sym_block_attribute] = STATE(1099), [sym__paragraph] = STATE(1099), - [sym__paragraph_content] = STATE(707), - [sym__paragraph_inline_content] = STATE(778), - [sym__inline] = STATE(655), + [sym__paragraph_content] = STATE(724), + [sym__paragraph_inline_content] = STATE(837), + [sym__inline] = STATE(656), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(326), - [aux_sym__list_plus_repeat1] = STATE(329), - [aux_sym__list_star_repeat1] = STATE(330), - [aux_sym__list_task_repeat1] = STATE(298), - [aux_sym__list_definition_repeat1] = STATE(508), - [aux_sym__list_decimal_period_repeat1] = STATE(509), - [aux_sym__list_decimal_paren_repeat1] = STATE(510), - [aux_sym__list_decimal_parens_repeat1] = STATE(511), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(512), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(513), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(514), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(515), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(516), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(517), - [aux_sym__list_lower_roman_period_repeat1] = STATE(526), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(531), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(534), - [aux_sym__list_upper_roman_period_repeat1] = STATE(544), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(441), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(442), - [aux_sym_table_repeat1] = STATE(241), - [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__list_dash_repeat1] = STATE(318), + [aux_sym__list_plus_repeat1] = STATE(319), + [aux_sym__list_star_repeat1] = STATE(320), + [aux_sym__list_task_repeat1] = STATE(287), + [aux_sym__list_definition_repeat1] = STATE(459), + [aux_sym__list_decimal_period_repeat1] = STATE(460), + [aux_sym__list_decimal_paren_repeat1] = STATE(461), + [aux_sym__list_decimal_parens_repeat1] = STATE(462), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(463), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(464), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(465), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(466), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(467), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(468), + [aux_sym__list_lower_roman_period_repeat1] = STATE(469), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(470), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(471), + [aux_sym__list_upper_roman_period_repeat1] = STATE(472), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(473), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym_table_repeat1] = STATE(234), + [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(366), - [anon_sym_DOT] = ACTIONS(11), - [aux_sym_identifier_token1] = ACTIONS(11), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_PERCENT] = ACTIONS(11), - [sym__newline] = ACTIONS(410), - [sym__heading_begin] = ACTIONS(370), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(372), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(374), - [sym__block_quote_continuation] = ACTIONS(376), - [sym__thematic_break_dash] = ACTIONS(378), - [sym__thematic_break_star] = ACTIONS(378), - [sym__table_header_begin] = ACTIONS(380), - [sym__table_separator_begin] = ACTIONS(382), - [sym__table_row_begin] = ACTIONS(384), + [anon_sym_DOT] = ACTIONS(9), + [aux_sym_identifier_token1] = ACTIONS(9), + [aux_sym__inline_token1] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(9), + [anon_sym_PERCENT] = ACTIONS(9), + [sym__newline] = ACTIONS(408), + [sym__heading_begin] = ACTIONS(368), + [sym__div_begin] = ACTIONS(17), + [sym__code_block_begin] = ACTIONS(370), + [sym_list_marker_dash] = ACTIONS(21), + [sym_list_marker_star] = ACTIONS(23), + [sym_list_marker_plus] = ACTIONS(25), + [sym__list_marker_task_begin] = ACTIONS(27), + [sym_list_marker_definition] = ACTIONS(29), + [sym_list_marker_decimal_period] = ACTIONS(31), + [sym_list_marker_lower_alpha_period] = ACTIONS(33), + [sym_list_marker_upper_alpha_period] = ACTIONS(35), + [sym_list_marker_lower_roman_period] = ACTIONS(37), + [sym_list_marker_upper_roman_period] = ACTIONS(39), + [sym_list_marker_decimal_paren] = ACTIONS(41), + [sym_list_marker_lower_alpha_paren] = ACTIONS(43), + [sym_list_marker_upper_alpha_paren] = ACTIONS(45), + [sym_list_marker_lower_roman_paren] = ACTIONS(47), + [sym_list_marker_upper_roman_paren] = ACTIONS(49), + [sym_list_marker_decimal_parens] = ACTIONS(51), + [sym_list_marker_lower_alpha_parens] = ACTIONS(53), + [sym_list_marker_upper_alpha_parens] = ACTIONS(55), + [sym_list_marker_lower_roman_parens] = ACTIONS(57), + [sym_list_marker_upper_roman_parens] = ACTIONS(59), + [sym__block_quote_begin] = ACTIONS(372), + [sym__block_quote_continuation] = ACTIONS(374), + [sym__thematic_break_dash] = ACTIONS(376), + [sym__thematic_break_star] = ACTIONS(376), + [sym__table_header_begin] = ACTIONS(378), + [sym__table_separator_begin] = ACTIONS(380), + [sym__table_row_begin] = ACTIONS(382), + [sym__block_attribute_begin] = ACTIONS(384), }, - [37] = { + [36] = { [sym__block_with_heading] = STATE(1100), [sym__block_element] = STATE(1100), [sym_heading] = STATE(1100), [sym_list] = STATE(1100), - [sym__list_dash] = STATE(998), - [sym__list_item_dash] = STATE(553), - [sym__list_plus] = STATE(998), - [sym__list_item_plus] = STATE(554), - [sym__list_star] = STATE(998), - [sym__list_item_star] = STATE(556), - [sym__list_task] = STATE(998), - [sym__list_item_task] = STATE(558), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(998), - [sym__list_item_definition] = STATE(769), - [sym__list_decimal_period] = STATE(998), - [sym__list_item_decimal_period] = STATE(776), - [sym__list_decimal_paren] = STATE(998), - [sym__list_item_decimal_paren] = STATE(790), - [sym__list_decimal_parens] = STATE(998), - [sym__list_item_decimal_parens] = STATE(793), - [sym__list_lower_alpha_period] = STATE(998), - [sym__list_item_lower_alpha_period] = STATE(822), - [sym__list_lower_alpha_paren] = STATE(998), - [sym__list_item_lower_alpha_paren] = STATE(684), - [sym__list_lower_alpha_parens] = STATE(998), - [sym__list_item_lower_alpha_parens] = STATE(688), - [sym__list_upper_alpha_period] = STATE(998), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(998), - [sym__list_item_upper_alpha_paren] = STATE(705), - [sym__list_upper_alpha_parens] = STATE(998), - [sym__list_item_upper_alpha_parens] = STATE(711), - [sym__list_lower_roman_period] = STATE(998), - [sym__list_item_lower_roman_period] = STATE(712), - [sym__list_lower_roman_paren] = STATE(998), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(998), - [sym__list_item_lower_roman_parens] = STATE(728), - [sym__list_upper_roman_period] = STATE(998), - [sym__list_item_upper_roman_period] = STATE(734), - [sym__list_upper_roman_paren] = STATE(998), - [sym__list_item_upper_roman_paren] = STATE(830), - [sym__list_upper_roman_parens] = STATE(998), - [sym__list_item_upper_roman_parens] = STATE(725), - [sym_list_item_content] = STATE(718), + [sym__list_dash] = STATE(1008), + [sym__list_item_dash] = STATE(645), + [sym__list_plus] = STATE(1008), + [sym__list_item_plus] = STATE(661), + [sym__list_star] = STATE(1008), + [sym__list_item_star] = STATE(573), + [sym__list_task] = STATE(1008), + [sym__list_item_task] = STATE(590), + [sym_list_marker_task] = STATE(43), + [sym__list_definition] = STATE(1008), + [sym__list_item_definition] = STATE(740), + [sym__list_decimal_period] = STATE(1008), + [sym__list_item_decimal_period] = STATE(743), + [sym__list_decimal_paren] = STATE(1008), + [sym__list_item_decimal_paren] = STATE(748), + [sym__list_decimal_parens] = STATE(1008), + [sym__list_item_decimal_parens] = STATE(768), + [sym__list_lower_alpha_period] = STATE(1008), + [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_lower_alpha_paren] = STATE(1008), + [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_lower_alpha_parens] = STATE(1008), + [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_upper_alpha_period] = STATE(1008), + [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_upper_alpha_paren] = STATE(1008), + [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_upper_alpha_parens] = STATE(1008), + [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_lower_roman_period] = STATE(1008), + [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_lower_roman_paren] = STATE(1008), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(1008), + [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_upper_roman_period] = STATE(1008), + [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_upper_roman_paren] = STATE(1008), + [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_upper_roman_parens] = STATE(1008), + [sym__list_item_upper_roman_parens] = STATE(819), + [sym_list_item_content] = STATE(800), [sym_table] = STATE(1100), - [sym__table_row] = STATE(241), - [sym_table_header] = STATE(241), - [sym_table_separator] = STATE(241), - [sym_table_row] = STATE(241), + [sym__table_row] = STATE(234), + [sym_table_header] = STATE(234), + [sym_table_separator] = STATE(234), + [sym_table_row] = STATE(234), [sym_footnote] = STATE(1100), - [sym_footnote_marker_begin] = STATE(1137), + [sym_footnote_marker_begin] = STATE(1136), [sym_div] = STATE(1100), - [sym__div_marker_begin] = STATE(1019), + [sym__div_marker_begin] = STATE(1018), [sym_code_block] = STATE(1100), [sym_raw_block] = STATE(1100), [sym_thematic_break] = STATE(1100), [sym_block_quote] = STATE(1100), - [sym__block_quote_prefix] = STATE(223), + [sym__block_quote_prefix] = STATE(225), [sym_link_reference_definition] = STATE(1100), [sym_block_attribute] = STATE(1100), [sym__paragraph] = STATE(1100), - [sym__paragraph_content] = STATE(707), - [sym__paragraph_inline_content] = STATE(778), - [sym__inline] = STATE(655), + [sym__paragraph_content] = STATE(724), + [sym__paragraph_inline_content] = STATE(837), + [sym__inline] = STATE(656), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(326), - [aux_sym__list_plus_repeat1] = STATE(329), - [aux_sym__list_star_repeat1] = STATE(330), - [aux_sym__list_task_repeat1] = STATE(298), - [aux_sym__list_definition_repeat1] = STATE(508), - [aux_sym__list_decimal_period_repeat1] = STATE(509), - [aux_sym__list_decimal_paren_repeat1] = STATE(510), - [aux_sym__list_decimal_parens_repeat1] = STATE(511), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(512), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(513), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(514), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(515), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(516), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(517), - [aux_sym__list_lower_roman_period_repeat1] = STATE(526), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(531), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(534), - [aux_sym__list_upper_roman_period_repeat1] = STATE(544), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(441), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(442), - [aux_sym_table_repeat1] = STATE(241), - [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__list_dash_repeat1] = STATE(318), + [aux_sym__list_plus_repeat1] = STATE(319), + [aux_sym__list_star_repeat1] = STATE(320), + [aux_sym__list_task_repeat1] = STATE(287), + [aux_sym__list_definition_repeat1] = STATE(459), + [aux_sym__list_decimal_period_repeat1] = STATE(460), + [aux_sym__list_decimal_paren_repeat1] = STATE(461), + [aux_sym__list_decimal_parens_repeat1] = STATE(462), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(463), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(464), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(465), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(466), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(467), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(468), + [aux_sym__list_lower_roman_period_repeat1] = STATE(469), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(470), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(471), + [aux_sym__list_upper_roman_period_repeat1] = STATE(472), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(473), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym_table_repeat1] = STATE(234), + [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(366), - [anon_sym_DOT] = ACTIONS(11), - [aux_sym_identifier_token1] = ACTIONS(11), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_PERCENT] = ACTIONS(11), - [sym__newline] = ACTIONS(412), - [sym__heading_begin] = ACTIONS(370), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(372), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(374), - [sym__block_quote_continuation] = ACTIONS(376), - [sym__thematic_break_dash] = ACTIONS(378), - [sym__thematic_break_star] = ACTIONS(378), - [sym__table_header_begin] = ACTIONS(380), - [sym__table_separator_begin] = ACTIONS(382), - [sym__table_row_begin] = ACTIONS(384), + [anon_sym_DOT] = ACTIONS(9), + [aux_sym_identifier_token1] = ACTIONS(9), + [aux_sym__inline_token1] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(9), + [anon_sym_PERCENT] = ACTIONS(9), + [sym__newline] = ACTIONS(410), + [sym__heading_begin] = ACTIONS(368), + [sym__div_begin] = ACTIONS(17), + [sym__code_block_begin] = ACTIONS(370), + [sym_list_marker_dash] = ACTIONS(21), + [sym_list_marker_star] = ACTIONS(23), + [sym_list_marker_plus] = ACTIONS(25), + [sym__list_marker_task_begin] = ACTIONS(27), + [sym_list_marker_definition] = ACTIONS(29), + [sym_list_marker_decimal_period] = ACTIONS(31), + [sym_list_marker_lower_alpha_period] = ACTIONS(33), + [sym_list_marker_upper_alpha_period] = ACTIONS(35), + [sym_list_marker_lower_roman_period] = ACTIONS(37), + [sym_list_marker_upper_roman_period] = ACTIONS(39), + [sym_list_marker_decimal_paren] = ACTIONS(41), + [sym_list_marker_lower_alpha_paren] = ACTIONS(43), + [sym_list_marker_upper_alpha_paren] = ACTIONS(45), + [sym_list_marker_lower_roman_paren] = ACTIONS(47), + [sym_list_marker_upper_roman_paren] = ACTIONS(49), + [sym_list_marker_decimal_parens] = ACTIONS(51), + [sym_list_marker_lower_alpha_parens] = ACTIONS(53), + [sym_list_marker_upper_alpha_parens] = ACTIONS(55), + [sym_list_marker_lower_roman_parens] = ACTIONS(57), + [sym_list_marker_upper_roman_parens] = ACTIONS(59), + [sym__block_quote_begin] = ACTIONS(372), + [sym__block_quote_continuation] = ACTIONS(374), + [sym__thematic_break_dash] = ACTIONS(376), + [sym__thematic_break_star] = ACTIONS(376), + [sym__table_header_begin] = ACTIONS(378), + [sym__table_separator_begin] = ACTIONS(380), + [sym__table_row_begin] = ACTIONS(382), + [sym__block_attribute_begin] = ACTIONS(384), }, - [38] = { + [37] = { [sym__block_with_heading] = STATE(1101), [sym__block_element] = STATE(1101), [sym_heading] = STATE(1101), [sym_list] = STATE(1101), - [sym__list_dash] = STATE(998), - [sym__list_item_dash] = STATE(553), - [sym__list_plus] = STATE(998), - [sym__list_item_plus] = STATE(554), - [sym__list_star] = STATE(998), - [sym__list_item_star] = STATE(556), - [sym__list_task] = STATE(998), - [sym__list_item_task] = STATE(558), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(998), - [sym__list_item_definition] = STATE(769), - [sym__list_decimal_period] = STATE(998), - [sym__list_item_decimal_period] = STATE(776), - [sym__list_decimal_paren] = STATE(998), - [sym__list_item_decimal_paren] = STATE(790), - [sym__list_decimal_parens] = STATE(998), - [sym__list_item_decimal_parens] = STATE(793), - [sym__list_lower_alpha_period] = STATE(998), - [sym__list_item_lower_alpha_period] = STATE(822), - [sym__list_lower_alpha_paren] = STATE(998), - [sym__list_item_lower_alpha_paren] = STATE(684), - [sym__list_lower_alpha_parens] = STATE(998), - [sym__list_item_lower_alpha_parens] = STATE(688), - [sym__list_upper_alpha_period] = STATE(998), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(998), - [sym__list_item_upper_alpha_paren] = STATE(705), - [sym__list_upper_alpha_parens] = STATE(998), - [sym__list_item_upper_alpha_parens] = STATE(711), - [sym__list_lower_roman_period] = STATE(998), - [sym__list_item_lower_roman_period] = STATE(712), - [sym__list_lower_roman_paren] = STATE(998), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(998), - [sym__list_item_lower_roman_parens] = STATE(728), - [sym__list_upper_roman_period] = STATE(998), - [sym__list_item_upper_roman_period] = STATE(734), - [sym__list_upper_roman_paren] = STATE(998), - [sym__list_item_upper_roman_paren] = STATE(830), - [sym__list_upper_roman_parens] = STATE(998), - [sym__list_item_upper_roman_parens] = STATE(725), - [sym_list_item_content] = STATE(719), + [sym__list_dash] = STATE(1008), + [sym__list_item_dash] = STATE(645), + [sym__list_plus] = STATE(1008), + [sym__list_item_plus] = STATE(661), + [sym__list_star] = STATE(1008), + [sym__list_item_star] = STATE(573), + [sym__list_task] = STATE(1008), + [sym__list_item_task] = STATE(590), + [sym_list_marker_task] = STATE(43), + [sym__list_definition] = STATE(1008), + [sym__list_item_definition] = STATE(740), + [sym__list_decimal_period] = STATE(1008), + [sym__list_item_decimal_period] = STATE(743), + [sym__list_decimal_paren] = STATE(1008), + [sym__list_item_decimal_paren] = STATE(748), + [sym__list_decimal_parens] = STATE(1008), + [sym__list_item_decimal_parens] = STATE(768), + [sym__list_lower_alpha_period] = STATE(1008), + [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_lower_alpha_paren] = STATE(1008), + [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_lower_alpha_parens] = STATE(1008), + [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_upper_alpha_period] = STATE(1008), + [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_upper_alpha_paren] = STATE(1008), + [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_upper_alpha_parens] = STATE(1008), + [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_lower_roman_period] = STATE(1008), + [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_lower_roman_paren] = STATE(1008), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(1008), + [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_upper_roman_period] = STATE(1008), + [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_upper_roman_paren] = STATE(1008), + [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_upper_roman_parens] = STATE(1008), + [sym__list_item_upper_roman_parens] = STATE(819), + [sym_list_item_content] = STATE(831), [sym_table] = STATE(1101), - [sym__table_row] = STATE(241), - [sym_table_header] = STATE(241), - [sym_table_separator] = STATE(241), - [sym_table_row] = STATE(241), + [sym__table_row] = STATE(234), + [sym_table_header] = STATE(234), + [sym_table_separator] = STATE(234), + [sym_table_row] = STATE(234), [sym_footnote] = STATE(1101), - [sym_footnote_marker_begin] = STATE(1137), + [sym_footnote_marker_begin] = STATE(1136), [sym_div] = STATE(1101), - [sym__div_marker_begin] = STATE(1019), + [sym__div_marker_begin] = STATE(1018), [sym_code_block] = STATE(1101), [sym_raw_block] = STATE(1101), [sym_thematic_break] = STATE(1101), [sym_block_quote] = STATE(1101), - [sym__block_quote_prefix] = STATE(223), + [sym__block_quote_prefix] = STATE(225), [sym_link_reference_definition] = STATE(1101), [sym_block_attribute] = STATE(1101), [sym__paragraph] = STATE(1101), - [sym__paragraph_content] = STATE(707), - [sym__paragraph_inline_content] = STATE(778), - [sym__inline] = STATE(655), + [sym__paragraph_content] = STATE(724), + [sym__paragraph_inline_content] = STATE(837), + [sym__inline] = STATE(656), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(326), - [aux_sym__list_plus_repeat1] = STATE(329), - [aux_sym__list_star_repeat1] = STATE(330), - [aux_sym__list_task_repeat1] = STATE(298), - [aux_sym__list_definition_repeat1] = STATE(508), - [aux_sym__list_decimal_period_repeat1] = STATE(509), - [aux_sym__list_decimal_paren_repeat1] = STATE(510), - [aux_sym__list_decimal_parens_repeat1] = STATE(511), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(512), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(513), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(514), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(515), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(516), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(517), - [aux_sym__list_lower_roman_period_repeat1] = STATE(526), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(531), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(534), - [aux_sym__list_upper_roman_period_repeat1] = STATE(544), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(441), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(442), - [aux_sym_table_repeat1] = STATE(241), - [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__list_dash_repeat1] = STATE(318), + [aux_sym__list_plus_repeat1] = STATE(319), + [aux_sym__list_star_repeat1] = STATE(320), + [aux_sym__list_task_repeat1] = STATE(287), + [aux_sym__list_definition_repeat1] = STATE(459), + [aux_sym__list_decimal_period_repeat1] = STATE(460), + [aux_sym__list_decimal_paren_repeat1] = STATE(461), + [aux_sym__list_decimal_parens_repeat1] = STATE(462), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(463), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(464), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(465), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(466), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(467), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(468), + [aux_sym__list_lower_roman_period_repeat1] = STATE(469), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(470), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(471), + [aux_sym__list_upper_roman_period_repeat1] = STATE(472), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(473), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym_table_repeat1] = STATE(234), + [aux_sym__block_quote_prefix_repeat1] = STATE(230), + [aux_sym__inline_repeat1] = STATE(273), + [anon_sym_LBRACK] = ACTIONS(364), + [anon_sym_LBRACK_CARET] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(9), + [aux_sym_identifier_token1] = ACTIONS(9), + [aux_sym__inline_token1] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(9), + [anon_sym_PERCENT] = ACTIONS(9), + [sym__newline] = ACTIONS(412), + [sym__heading_begin] = ACTIONS(368), + [sym__div_begin] = ACTIONS(17), + [sym__code_block_begin] = ACTIONS(370), + [sym_list_marker_dash] = ACTIONS(21), + [sym_list_marker_star] = ACTIONS(23), + [sym_list_marker_plus] = ACTIONS(25), + [sym__list_marker_task_begin] = ACTIONS(27), + [sym_list_marker_definition] = ACTIONS(29), + [sym_list_marker_decimal_period] = ACTIONS(31), + [sym_list_marker_lower_alpha_period] = ACTIONS(33), + [sym_list_marker_upper_alpha_period] = ACTIONS(35), + [sym_list_marker_lower_roman_period] = ACTIONS(37), + [sym_list_marker_upper_roman_period] = ACTIONS(39), + [sym_list_marker_decimal_paren] = ACTIONS(41), + [sym_list_marker_lower_alpha_paren] = ACTIONS(43), + [sym_list_marker_upper_alpha_paren] = ACTIONS(45), + [sym_list_marker_lower_roman_paren] = ACTIONS(47), + [sym_list_marker_upper_roman_paren] = ACTIONS(49), + [sym_list_marker_decimal_parens] = ACTIONS(51), + [sym_list_marker_lower_alpha_parens] = ACTIONS(53), + [sym_list_marker_upper_alpha_parens] = ACTIONS(55), + [sym_list_marker_lower_roman_parens] = ACTIONS(57), + [sym_list_marker_upper_roman_parens] = ACTIONS(59), + [sym__block_quote_begin] = ACTIONS(372), + [sym__block_quote_continuation] = ACTIONS(374), + [sym__thematic_break_dash] = ACTIONS(376), + [sym__thematic_break_star] = ACTIONS(376), + [sym__table_header_begin] = ACTIONS(378), + [sym__table_separator_begin] = ACTIONS(380), + [sym__table_row_begin] = ACTIONS(382), + [sym__block_attribute_begin] = ACTIONS(384), + }, + [38] = { + [sym__block_with_heading] = STATE(1033), + [sym__block_element] = STATE(1033), + [sym_heading] = STATE(1033), + [sym_list] = STATE(1033), + [sym__list_dash] = STATE(1008), + [sym__list_item_dash] = STATE(645), + [sym__list_plus] = STATE(1008), + [sym__list_item_plus] = STATE(661), + [sym__list_star] = STATE(1008), + [sym__list_item_star] = STATE(573), + [sym__list_task] = STATE(1008), + [sym__list_item_task] = STATE(590), + [sym_list_marker_task] = STATE(43), + [sym__list_definition] = STATE(1008), + [sym__list_item_definition] = STATE(740), + [sym__list_decimal_period] = STATE(1008), + [sym__list_item_decimal_period] = STATE(743), + [sym__list_decimal_paren] = STATE(1008), + [sym__list_item_decimal_paren] = STATE(748), + [sym__list_decimal_parens] = STATE(1008), + [sym__list_item_decimal_parens] = STATE(768), + [sym__list_lower_alpha_period] = STATE(1008), + [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_lower_alpha_paren] = STATE(1008), + [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_lower_alpha_parens] = STATE(1008), + [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_upper_alpha_period] = STATE(1008), + [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_upper_alpha_paren] = STATE(1008), + [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_upper_alpha_parens] = STATE(1008), + [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_lower_roman_period] = STATE(1008), + [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_lower_roman_paren] = STATE(1008), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(1008), + [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_upper_roman_period] = STATE(1008), + [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_upper_roman_paren] = STATE(1008), + [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_upper_roman_parens] = STATE(1008), + [sym__list_item_upper_roman_parens] = STATE(819), + [sym_table] = STATE(1033), + [sym__table_row] = STATE(234), + [sym_table_header] = STATE(234), + [sym_table_separator] = STATE(234), + [sym_table_row] = STATE(234), + [sym_footnote] = STATE(1033), + [sym_footnote_marker_begin] = STATE(1136), + [sym_footnote_content] = STATE(1002), + [sym_div] = STATE(1033), + [sym__div_marker_begin] = STATE(1018), + [sym_code_block] = STATE(1033), + [sym_raw_block] = STATE(1033), + [sym_thematic_break] = STATE(1033), + [sym_block_quote] = STATE(1033), + [sym__block_quote_prefix] = STATE(225), + [sym_link_reference_definition] = STATE(1033), + [sym_block_attribute] = STATE(1033), + [sym__paragraph] = STATE(1033), + [sym__paragraph_content] = STATE(724), + [sym__paragraph_inline_content] = STATE(837), + [sym__inline] = STATE(656), + [sym__symbol_fallback] = STATE(273), + [aux_sym__list_dash_repeat1] = STATE(318), + [aux_sym__list_plus_repeat1] = STATE(319), + [aux_sym__list_star_repeat1] = STATE(320), + [aux_sym__list_task_repeat1] = STATE(287), + [aux_sym__list_definition_repeat1] = STATE(459), + [aux_sym__list_decimal_period_repeat1] = STATE(460), + [aux_sym__list_decimal_paren_repeat1] = STATE(461), + [aux_sym__list_decimal_parens_repeat1] = STATE(462), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(463), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(464), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(465), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(466), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(467), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(468), + [aux_sym__list_lower_roman_period_repeat1] = STATE(469), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(470), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(471), + [aux_sym__list_upper_roman_period_repeat1] = STATE(472), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(473), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym_table_repeat1] = STATE(234), + [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(366), - [anon_sym_DOT] = ACTIONS(11), - [aux_sym_identifier_token1] = ACTIONS(11), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_PERCENT] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(9), + [aux_sym_identifier_token1] = ACTIONS(9), + [aux_sym__inline_token1] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(9), + [anon_sym_PERCENT] = ACTIONS(9), [sym__newline] = ACTIONS(414), - [sym__heading_begin] = ACTIONS(370), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(372), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(374), - [sym__block_quote_continuation] = ACTIONS(376), - [sym__thematic_break_dash] = ACTIONS(378), - [sym__thematic_break_star] = ACTIONS(378), - [sym__table_header_begin] = ACTIONS(380), - [sym__table_separator_begin] = ACTIONS(382), - [sym__table_row_begin] = ACTIONS(384), + [sym__heading_begin] = ACTIONS(368), + [sym__div_begin] = ACTIONS(17), + [sym__code_block_begin] = ACTIONS(370), + [sym_list_marker_dash] = ACTIONS(21), + [sym_list_marker_star] = ACTIONS(23), + [sym_list_marker_plus] = ACTIONS(25), + [sym__list_marker_task_begin] = ACTIONS(27), + [sym_list_marker_definition] = ACTIONS(29), + [sym_list_marker_decimal_period] = ACTIONS(31), + [sym_list_marker_lower_alpha_period] = ACTIONS(33), + [sym_list_marker_upper_alpha_period] = ACTIONS(35), + [sym_list_marker_lower_roman_period] = ACTIONS(37), + [sym_list_marker_upper_roman_period] = ACTIONS(39), + [sym_list_marker_decimal_paren] = ACTIONS(41), + [sym_list_marker_lower_alpha_paren] = ACTIONS(43), + [sym_list_marker_upper_alpha_paren] = ACTIONS(45), + [sym_list_marker_lower_roman_paren] = ACTIONS(47), + [sym_list_marker_upper_roman_paren] = ACTIONS(49), + [sym_list_marker_decimal_parens] = ACTIONS(51), + [sym_list_marker_lower_alpha_parens] = ACTIONS(53), + [sym_list_marker_upper_alpha_parens] = ACTIONS(55), + [sym_list_marker_lower_roman_parens] = ACTIONS(57), + [sym_list_marker_upper_roman_parens] = ACTIONS(59), + [sym__block_quote_begin] = ACTIONS(372), + [sym__block_quote_continuation] = ACTIONS(374), + [sym__thematic_break_dash] = ACTIONS(376), + [sym__thematic_break_star] = ACTIONS(376), + [sym__table_header_begin] = ACTIONS(378), + [sym__table_separator_begin] = ACTIONS(380), + [sym__table_row_begin] = ACTIONS(382), + [sym__block_attribute_begin] = ACTIONS(384), }, [39] = { [sym__block_with_heading] = STATE(1102), [sym__block_element] = STATE(1102), [sym_heading] = STATE(1102), [sym_list] = STATE(1102), - [sym__list_dash] = STATE(998), - [sym__list_item_dash] = STATE(553), - [sym__list_plus] = STATE(998), - [sym__list_item_plus] = STATE(554), - [sym__list_star] = STATE(998), - [sym__list_item_star] = STATE(556), - [sym__list_task] = STATE(998), - [sym__list_item_task] = STATE(558), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(998), - [sym__list_item_definition] = STATE(769), - [sym__list_decimal_period] = STATE(998), - [sym__list_item_decimal_period] = STATE(776), - [sym__list_decimal_paren] = STATE(998), - [sym__list_item_decimal_paren] = STATE(790), - [sym__list_decimal_parens] = STATE(998), - [sym__list_item_decimal_parens] = STATE(793), - [sym__list_lower_alpha_period] = STATE(998), - [sym__list_item_lower_alpha_period] = STATE(822), - [sym__list_lower_alpha_paren] = STATE(998), - [sym__list_item_lower_alpha_paren] = STATE(684), - [sym__list_lower_alpha_parens] = STATE(998), - [sym__list_item_lower_alpha_parens] = STATE(688), - [sym__list_upper_alpha_period] = STATE(998), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(998), - [sym__list_item_upper_alpha_paren] = STATE(705), - [sym__list_upper_alpha_parens] = STATE(998), - [sym__list_item_upper_alpha_parens] = STATE(711), - [sym__list_lower_roman_period] = STATE(998), - [sym__list_item_lower_roman_period] = STATE(712), - [sym__list_lower_roman_paren] = STATE(998), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(998), - [sym__list_item_lower_roman_parens] = STATE(728), - [sym__list_upper_roman_period] = STATE(998), - [sym__list_item_upper_roman_period] = STATE(734), - [sym__list_upper_roman_paren] = STATE(998), - [sym__list_item_upper_roman_paren] = STATE(830), - [sym__list_upper_roman_parens] = STATE(998), - [sym__list_item_upper_roman_parens] = STATE(725), - [sym_list_item_content] = STATE(721), + [sym__list_dash] = STATE(1008), + [sym__list_item_dash] = STATE(645), + [sym__list_plus] = STATE(1008), + [sym__list_item_plus] = STATE(661), + [sym__list_star] = STATE(1008), + [sym__list_item_star] = STATE(573), + [sym__list_task] = STATE(1008), + [sym__list_item_task] = STATE(590), + [sym_list_marker_task] = STATE(43), + [sym__list_definition] = STATE(1008), + [sym__list_item_definition] = STATE(740), + [sym__list_decimal_period] = STATE(1008), + [sym__list_item_decimal_period] = STATE(743), + [sym__list_decimal_paren] = STATE(1008), + [sym__list_item_decimal_paren] = STATE(748), + [sym__list_decimal_parens] = STATE(1008), + [sym__list_item_decimal_parens] = STATE(768), + [sym__list_lower_alpha_period] = STATE(1008), + [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_lower_alpha_paren] = STATE(1008), + [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_lower_alpha_parens] = STATE(1008), + [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_upper_alpha_period] = STATE(1008), + [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_upper_alpha_paren] = STATE(1008), + [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_upper_alpha_parens] = STATE(1008), + [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_lower_roman_period] = STATE(1008), + [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_lower_roman_paren] = STATE(1008), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(1008), + [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_upper_roman_period] = STATE(1008), + [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_upper_roman_paren] = STATE(1008), + [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_upper_roman_parens] = STATE(1008), + [sym__list_item_upper_roman_parens] = STATE(819), + [sym_list_item_content] = STATE(846), [sym_table] = STATE(1102), - [sym__table_row] = STATE(241), - [sym_table_header] = STATE(241), - [sym_table_separator] = STATE(241), - [sym_table_row] = STATE(241), + [sym__table_row] = STATE(234), + [sym_table_header] = STATE(234), + [sym_table_separator] = STATE(234), + [sym_table_row] = STATE(234), [sym_footnote] = STATE(1102), - [sym_footnote_marker_begin] = STATE(1137), + [sym_footnote_marker_begin] = STATE(1136), [sym_div] = STATE(1102), - [sym__div_marker_begin] = STATE(1019), + [sym__div_marker_begin] = STATE(1018), [sym_code_block] = STATE(1102), [sym_raw_block] = STATE(1102), [sym_thematic_break] = STATE(1102), [sym_block_quote] = STATE(1102), - [sym__block_quote_prefix] = STATE(223), + [sym__block_quote_prefix] = STATE(225), [sym_link_reference_definition] = STATE(1102), [sym_block_attribute] = STATE(1102), [sym__paragraph] = STATE(1102), - [sym__paragraph_content] = STATE(707), - [sym__paragraph_inline_content] = STATE(778), - [sym__inline] = STATE(655), + [sym__paragraph_content] = STATE(724), + [sym__paragraph_inline_content] = STATE(837), + [sym__inline] = STATE(656), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(326), - [aux_sym__list_plus_repeat1] = STATE(329), - [aux_sym__list_star_repeat1] = STATE(330), - [aux_sym__list_task_repeat1] = STATE(298), - [aux_sym__list_definition_repeat1] = STATE(508), - [aux_sym__list_decimal_period_repeat1] = STATE(509), - [aux_sym__list_decimal_paren_repeat1] = STATE(510), - [aux_sym__list_decimal_parens_repeat1] = STATE(511), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(512), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(513), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(514), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(515), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(516), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(517), - [aux_sym__list_lower_roman_period_repeat1] = STATE(526), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(531), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(534), - [aux_sym__list_upper_roman_period_repeat1] = STATE(544), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(441), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(442), - [aux_sym_table_repeat1] = STATE(241), - [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__list_dash_repeat1] = STATE(318), + [aux_sym__list_plus_repeat1] = STATE(319), + [aux_sym__list_star_repeat1] = STATE(320), + [aux_sym__list_task_repeat1] = STATE(287), + [aux_sym__list_definition_repeat1] = STATE(459), + [aux_sym__list_decimal_period_repeat1] = STATE(460), + [aux_sym__list_decimal_paren_repeat1] = STATE(461), + [aux_sym__list_decimal_parens_repeat1] = STATE(462), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(463), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(464), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(465), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(466), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(467), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(468), + [aux_sym__list_lower_roman_period_repeat1] = STATE(469), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(470), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(471), + [aux_sym__list_upper_roman_period_repeat1] = STATE(472), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(473), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym_table_repeat1] = STATE(234), + [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(366), - [anon_sym_DOT] = ACTIONS(11), - [aux_sym_identifier_token1] = ACTIONS(11), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_PERCENT] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(9), + [aux_sym_identifier_token1] = ACTIONS(9), + [aux_sym__inline_token1] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(9), + [anon_sym_PERCENT] = ACTIONS(9), [sym__newline] = ACTIONS(416), - [sym__heading_begin] = ACTIONS(370), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(372), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(374), - [sym__block_quote_continuation] = ACTIONS(376), - [sym__thematic_break_dash] = ACTIONS(378), - [sym__thematic_break_star] = ACTIONS(378), - [sym__table_header_begin] = ACTIONS(380), - [sym__table_separator_begin] = ACTIONS(382), - [sym__table_row_begin] = ACTIONS(384), + [sym__heading_begin] = ACTIONS(368), + [sym__div_begin] = ACTIONS(17), + [sym__code_block_begin] = ACTIONS(370), + [sym_list_marker_dash] = ACTIONS(21), + [sym_list_marker_star] = ACTIONS(23), + [sym_list_marker_plus] = ACTIONS(25), + [sym__list_marker_task_begin] = ACTIONS(27), + [sym_list_marker_definition] = ACTIONS(29), + [sym_list_marker_decimal_period] = ACTIONS(31), + [sym_list_marker_lower_alpha_period] = ACTIONS(33), + [sym_list_marker_upper_alpha_period] = ACTIONS(35), + [sym_list_marker_lower_roman_period] = ACTIONS(37), + [sym_list_marker_upper_roman_period] = ACTIONS(39), + [sym_list_marker_decimal_paren] = ACTIONS(41), + [sym_list_marker_lower_alpha_paren] = ACTIONS(43), + [sym_list_marker_upper_alpha_paren] = ACTIONS(45), + [sym_list_marker_lower_roman_paren] = ACTIONS(47), + [sym_list_marker_upper_roman_paren] = ACTIONS(49), + [sym_list_marker_decimal_parens] = ACTIONS(51), + [sym_list_marker_lower_alpha_parens] = ACTIONS(53), + [sym_list_marker_upper_alpha_parens] = ACTIONS(55), + [sym_list_marker_lower_roman_parens] = ACTIONS(57), + [sym_list_marker_upper_roman_parens] = ACTIONS(59), + [sym__block_quote_begin] = ACTIONS(372), + [sym__block_quote_continuation] = ACTIONS(374), + [sym__thematic_break_dash] = ACTIONS(376), + [sym__thematic_break_star] = ACTIONS(376), + [sym__table_header_begin] = ACTIONS(378), + [sym__table_separator_begin] = ACTIONS(380), + [sym__table_row_begin] = ACTIONS(382), + [sym__block_attribute_begin] = ACTIONS(384), }, [40] = { - [sym__block_with_heading] = STATE(1103), - [sym__block_element] = STATE(1103), - [sym_heading] = STATE(1103), - [sym_list] = STATE(1103), - [sym__list_dash] = STATE(998), - [sym__list_item_dash] = STATE(553), - [sym__list_plus] = STATE(998), - [sym__list_item_plus] = STATE(554), - [sym__list_star] = STATE(998), - [sym__list_item_star] = STATE(556), - [sym__list_task] = STATE(998), - [sym__list_item_task] = STATE(558), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(998), - [sym__list_item_definition] = STATE(769), - [sym__list_decimal_period] = STATE(998), - [sym__list_item_decimal_period] = STATE(776), - [sym__list_decimal_paren] = STATE(998), - [sym__list_item_decimal_paren] = STATE(790), - [sym__list_decimal_parens] = STATE(998), - [sym__list_item_decimal_parens] = STATE(793), - [sym__list_lower_alpha_period] = STATE(998), - [sym__list_item_lower_alpha_period] = STATE(822), - [sym__list_lower_alpha_paren] = STATE(998), - [sym__list_item_lower_alpha_paren] = STATE(684), - [sym__list_lower_alpha_parens] = STATE(998), - [sym__list_item_lower_alpha_parens] = STATE(688), - [sym__list_upper_alpha_period] = STATE(998), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(998), - [sym__list_item_upper_alpha_paren] = STATE(705), - [sym__list_upper_alpha_parens] = STATE(998), - [sym__list_item_upper_alpha_parens] = STATE(711), - [sym__list_lower_roman_period] = STATE(998), - [sym__list_item_lower_roman_period] = STATE(712), - [sym__list_lower_roman_paren] = STATE(998), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(998), - [sym__list_item_lower_roman_parens] = STATE(728), - [sym__list_upper_roman_period] = STATE(998), - [sym__list_item_upper_roman_period] = STATE(734), - [sym__list_upper_roman_paren] = STATE(998), - [sym__list_item_upper_roman_paren] = STATE(830), - [sym__list_upper_roman_parens] = STATE(998), - [sym__list_item_upper_roman_parens] = STATE(725), - [sym_list_item_content] = STATE(724), - [sym_table] = STATE(1103), - [sym__table_row] = STATE(241), - [sym_table_header] = STATE(241), - [sym_table_separator] = STATE(241), - [sym_table_row] = STATE(241), - [sym_footnote] = STATE(1103), - [sym_footnote_marker_begin] = STATE(1137), - [sym_div] = STATE(1103), - [sym__div_marker_begin] = STATE(1019), - [sym_code_block] = STATE(1103), - [sym_raw_block] = STATE(1103), - [sym_thematic_break] = STATE(1103), - [sym_block_quote] = STATE(1103), - [sym__block_quote_prefix] = STATE(223), - [sym_link_reference_definition] = STATE(1103), - [sym_block_attribute] = STATE(1103), - [sym__paragraph] = STATE(1103), - [sym__paragraph_content] = STATE(707), - [sym__paragraph_inline_content] = STATE(778), - [sym__inline] = STATE(655), + [sym__block_with_heading] = STATE(1039), + [sym__block_element] = STATE(1039), + [sym_heading] = STATE(1039), + [sym_list] = STATE(1039), + [sym__list_dash] = STATE(1008), + [sym__list_item_dash] = STATE(645), + [sym__list_plus] = STATE(1008), + [sym__list_item_plus] = STATE(661), + [sym__list_star] = STATE(1008), + [sym__list_item_star] = STATE(573), + [sym__list_task] = STATE(1008), + [sym__list_item_task] = STATE(590), + [sym_list_marker_task] = STATE(43), + [sym__list_definition] = STATE(1008), + [sym__list_item_definition] = STATE(740), + [sym__list_decimal_period] = STATE(1008), + [sym__list_item_decimal_period] = STATE(743), + [sym__list_decimal_paren] = STATE(1008), + [sym__list_item_decimal_paren] = STATE(748), + [sym__list_decimal_parens] = STATE(1008), + [sym__list_item_decimal_parens] = STATE(768), + [sym__list_lower_alpha_period] = STATE(1008), + [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_lower_alpha_paren] = STATE(1008), + [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_lower_alpha_parens] = STATE(1008), + [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_upper_alpha_period] = STATE(1008), + [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_upper_alpha_paren] = STATE(1008), + [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_upper_alpha_parens] = STATE(1008), + [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_lower_roman_period] = STATE(1008), + [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_lower_roman_paren] = STATE(1008), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(1008), + [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_upper_roman_period] = STATE(1008), + [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_upper_roman_paren] = STATE(1008), + [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_upper_roman_parens] = STATE(1008), + [sym__list_item_upper_roman_parens] = STATE(819), + [sym_list_item_content] = STATE(578), + [sym_table] = STATE(1039), + [sym__table_row] = STATE(234), + [sym_table_header] = STATE(234), + [sym_table_separator] = STATE(234), + [sym_table_row] = STATE(234), + [sym_footnote] = STATE(1039), + [sym_footnote_marker_begin] = STATE(1136), + [sym_div] = STATE(1039), + [sym__div_marker_begin] = STATE(1018), + [sym_code_block] = STATE(1039), + [sym_raw_block] = STATE(1039), + [sym_thematic_break] = STATE(1039), + [sym_block_quote] = STATE(1039), + [sym__block_quote_prefix] = STATE(225), + [sym_link_reference_definition] = STATE(1039), + [sym_block_attribute] = STATE(1039), + [sym__paragraph] = STATE(1039), + [sym__paragraph_content] = STATE(724), + [sym__paragraph_inline_content] = STATE(837), + [sym__inline] = STATE(656), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(326), - [aux_sym__list_plus_repeat1] = STATE(329), - [aux_sym__list_star_repeat1] = STATE(330), - [aux_sym__list_task_repeat1] = STATE(298), - [aux_sym__list_definition_repeat1] = STATE(508), - [aux_sym__list_decimal_period_repeat1] = STATE(509), - [aux_sym__list_decimal_paren_repeat1] = STATE(510), - [aux_sym__list_decimal_parens_repeat1] = STATE(511), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(512), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(513), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(514), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(515), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(516), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(517), - [aux_sym__list_lower_roman_period_repeat1] = STATE(526), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(531), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(534), - [aux_sym__list_upper_roman_period_repeat1] = STATE(544), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(441), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(442), - [aux_sym_table_repeat1] = STATE(241), - [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__list_dash_repeat1] = STATE(318), + [aux_sym__list_plus_repeat1] = STATE(319), + [aux_sym__list_star_repeat1] = STATE(320), + [aux_sym__list_task_repeat1] = STATE(287), + [aux_sym__list_definition_repeat1] = STATE(459), + [aux_sym__list_decimal_period_repeat1] = STATE(460), + [aux_sym__list_decimal_paren_repeat1] = STATE(461), + [aux_sym__list_decimal_parens_repeat1] = STATE(462), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(463), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(464), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(465), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(466), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(467), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(468), + [aux_sym__list_lower_roman_period_repeat1] = STATE(469), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(470), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(471), + [aux_sym__list_upper_roman_period_repeat1] = STATE(472), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(473), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym_table_repeat1] = STATE(234), + [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(366), - [anon_sym_DOT] = ACTIONS(11), - [aux_sym_identifier_token1] = ACTIONS(11), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_PERCENT] = ACTIONS(11), - [sym__newline] = ACTIONS(418), - [sym__heading_begin] = ACTIONS(370), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(372), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(374), - [sym__block_quote_continuation] = ACTIONS(376), - [sym__thematic_break_dash] = ACTIONS(378), - [sym__thematic_break_star] = ACTIONS(378), - [sym__table_header_begin] = ACTIONS(380), - [sym__table_separator_begin] = ACTIONS(382), - [sym__table_row_begin] = ACTIONS(384), + [anon_sym_DOT] = ACTIONS(9), + [aux_sym_identifier_token1] = ACTIONS(9), + [aux_sym__inline_token1] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(9), + [anon_sym_PERCENT] = ACTIONS(9), + [sym__newline] = ACTIONS(366), + [sym__heading_begin] = ACTIONS(368), + [sym__div_begin] = ACTIONS(17), + [sym__code_block_begin] = ACTIONS(370), + [sym_list_marker_dash] = ACTIONS(21), + [sym_list_marker_star] = ACTIONS(23), + [sym_list_marker_plus] = ACTIONS(25), + [sym__list_marker_task_begin] = ACTIONS(27), + [sym_list_marker_definition] = ACTIONS(29), + [sym_list_marker_decimal_period] = ACTIONS(31), + [sym_list_marker_lower_alpha_period] = ACTIONS(33), + [sym_list_marker_upper_alpha_period] = ACTIONS(35), + [sym_list_marker_lower_roman_period] = ACTIONS(37), + [sym_list_marker_upper_roman_period] = ACTIONS(39), + [sym_list_marker_decimal_paren] = ACTIONS(41), + [sym_list_marker_lower_alpha_paren] = ACTIONS(43), + [sym_list_marker_upper_alpha_paren] = ACTIONS(45), + [sym_list_marker_lower_roman_paren] = ACTIONS(47), + [sym_list_marker_upper_roman_paren] = ACTIONS(49), + [sym_list_marker_decimal_parens] = ACTIONS(51), + [sym_list_marker_lower_alpha_parens] = ACTIONS(53), + [sym_list_marker_upper_alpha_parens] = ACTIONS(55), + [sym_list_marker_lower_roman_parens] = ACTIONS(57), + [sym_list_marker_upper_roman_parens] = ACTIONS(59), + [sym__block_quote_begin] = ACTIONS(372), + [sym__block_quote_continuation] = ACTIONS(374), + [sym__thematic_break_dash] = ACTIONS(376), + [sym__thematic_break_star] = ACTIONS(376), + [sym__table_header_begin] = ACTIONS(378), + [sym__table_separator_begin] = ACTIONS(380), + [sym__table_row_begin] = ACTIONS(382), + [sym__block_attribute_begin] = ACTIONS(384), }, [41] = { - [sym__block_with_heading] = STATE(1034), - [sym__block_element] = STATE(1034), - [sym_heading] = STATE(1034), - [sym_list] = STATE(1034), - [sym__list_dash] = STATE(998), - [sym__list_item_dash] = STATE(553), - [sym__list_plus] = STATE(998), - [sym__list_item_plus] = STATE(554), - [sym__list_star] = STATE(998), - [sym__list_item_star] = STATE(556), - [sym__list_task] = STATE(998), - [sym__list_item_task] = STATE(558), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(998), - [sym__list_item_definition] = STATE(769), - [sym__list_decimal_period] = STATE(998), - [sym__list_item_decimal_period] = STATE(776), - [sym__list_decimal_paren] = STATE(998), - [sym__list_item_decimal_paren] = STATE(790), - [sym__list_decimal_parens] = STATE(998), - [sym__list_item_decimal_parens] = STATE(793), - [sym__list_lower_alpha_period] = STATE(998), - [sym__list_item_lower_alpha_period] = STATE(822), - [sym__list_lower_alpha_paren] = STATE(998), - [sym__list_item_lower_alpha_paren] = STATE(684), - [sym__list_lower_alpha_parens] = STATE(998), - [sym__list_item_lower_alpha_parens] = STATE(688), - [sym__list_upper_alpha_period] = STATE(998), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(998), - [sym__list_item_upper_alpha_paren] = STATE(705), - [sym__list_upper_alpha_parens] = STATE(998), - [sym__list_item_upper_alpha_parens] = STATE(711), - [sym__list_lower_roman_period] = STATE(998), - [sym__list_item_lower_roman_period] = STATE(712), - [sym__list_lower_roman_paren] = STATE(998), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(998), - [sym__list_item_lower_roman_parens] = STATE(728), - [sym__list_upper_roman_period] = STATE(998), - [sym__list_item_upper_roman_period] = STATE(734), - [sym__list_upper_roman_paren] = STATE(998), - [sym__list_item_upper_roman_paren] = STATE(830), - [sym__list_upper_roman_parens] = STATE(998), - [sym__list_item_upper_roman_parens] = STATE(725), - [sym_table] = STATE(1034), - [sym__table_row] = STATE(241), - [sym_table_header] = STATE(241), - [sym_table_separator] = STATE(241), - [sym_table_row] = STATE(241), - [sym_footnote] = STATE(1034), - [sym_footnote_marker_begin] = STATE(1137), - [sym_footnote_content] = STATE(935), - [sym_div] = STATE(1034), - [sym__div_marker_begin] = STATE(1019), - [sym_code_block] = STATE(1034), - [sym_raw_block] = STATE(1034), - [sym_thematic_break] = STATE(1034), - [sym_block_quote] = STATE(1034), - [sym__block_quote_prefix] = STATE(223), - [sym_link_reference_definition] = STATE(1034), - [sym_block_attribute] = STATE(1034), - [sym__paragraph] = STATE(1034), - [sym__paragraph_content] = STATE(707), - [sym__paragraph_inline_content] = STATE(778), - [sym__inline] = STATE(655), + [sym__block_with_heading] = STATE(1052), + [sym__block_element] = STATE(1052), + [sym_heading] = STATE(1052), + [sym_list] = STATE(1052), + [sym__list_dash] = STATE(1008), + [sym__list_item_dash] = STATE(645), + [sym__list_plus] = STATE(1008), + [sym__list_item_plus] = STATE(661), + [sym__list_star] = STATE(1008), + [sym__list_item_star] = STATE(573), + [sym__list_task] = STATE(1008), + [sym__list_item_task] = STATE(590), + [sym_list_marker_task] = STATE(43), + [sym__list_definition] = STATE(1008), + [sym__list_item_definition] = STATE(740), + [sym__list_decimal_period] = STATE(1008), + [sym__list_item_decimal_period] = STATE(743), + [sym__list_decimal_paren] = STATE(1008), + [sym__list_item_decimal_paren] = STATE(748), + [sym__list_decimal_parens] = STATE(1008), + [sym__list_item_decimal_parens] = STATE(768), + [sym__list_lower_alpha_period] = STATE(1008), + [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_lower_alpha_paren] = STATE(1008), + [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_lower_alpha_parens] = STATE(1008), + [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_upper_alpha_period] = STATE(1008), + [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_upper_alpha_paren] = STATE(1008), + [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_upper_alpha_parens] = STATE(1008), + [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_lower_roman_period] = STATE(1008), + [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_lower_roman_paren] = STATE(1008), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(1008), + [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_upper_roman_period] = STATE(1008), + [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_upper_roman_paren] = STATE(1008), + [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_upper_roman_parens] = STATE(1008), + [sym__list_item_upper_roman_parens] = STATE(819), + [sym_table] = STATE(1052), + [sym__table_row] = STATE(234), + [sym_table_header] = STATE(234), + [sym_table_separator] = STATE(234), + [sym_table_row] = STATE(234), + [sym_footnote] = STATE(1052), + [sym_footnote_marker_begin] = STATE(1136), + [sym_footnote_content] = STATE(867), + [sym_div] = STATE(1052), + [sym__div_marker_begin] = STATE(1018), + [sym_code_block] = STATE(1052), + [sym_raw_block] = STATE(1052), + [sym_thematic_break] = STATE(1052), + [sym_block_quote] = STATE(1052), + [sym__block_quote_prefix] = STATE(225), + [sym_link_reference_definition] = STATE(1052), + [sym_block_attribute] = STATE(1052), + [sym__paragraph] = STATE(1052), + [sym__paragraph_content] = STATE(724), + [sym__paragraph_inline_content] = STATE(837), + [sym__inline] = STATE(656), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(326), - [aux_sym__list_plus_repeat1] = STATE(329), - [aux_sym__list_star_repeat1] = STATE(330), - [aux_sym__list_task_repeat1] = STATE(298), - [aux_sym__list_definition_repeat1] = STATE(508), - [aux_sym__list_decimal_period_repeat1] = STATE(509), - [aux_sym__list_decimal_paren_repeat1] = STATE(510), - [aux_sym__list_decimal_parens_repeat1] = STATE(511), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(512), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(513), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(514), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(515), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(516), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(517), - [aux_sym__list_lower_roman_period_repeat1] = STATE(526), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(531), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(534), - [aux_sym__list_upper_roman_period_repeat1] = STATE(544), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(441), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(442), - [aux_sym_table_repeat1] = STATE(241), - [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__list_dash_repeat1] = STATE(318), + [aux_sym__list_plus_repeat1] = STATE(319), + [aux_sym__list_star_repeat1] = STATE(320), + [aux_sym__list_task_repeat1] = STATE(287), + [aux_sym__list_definition_repeat1] = STATE(459), + [aux_sym__list_decimal_period_repeat1] = STATE(460), + [aux_sym__list_decimal_paren_repeat1] = STATE(461), + [aux_sym__list_decimal_parens_repeat1] = STATE(462), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(463), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(464), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(465), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(466), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(467), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(468), + [aux_sym__list_lower_roman_period_repeat1] = STATE(469), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(470), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(471), + [aux_sym__list_upper_roman_period_repeat1] = STATE(472), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(473), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym_table_repeat1] = STATE(234), + [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(366), - [anon_sym_DOT] = ACTIONS(11), - [aux_sym_identifier_token1] = ACTIONS(11), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_PERCENT] = ACTIONS(11), - [sym__newline] = ACTIONS(420), - [sym__heading_begin] = ACTIONS(370), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(372), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(374), - [sym__block_quote_continuation] = ACTIONS(376), - [sym__thematic_break_dash] = ACTIONS(378), - [sym__thematic_break_star] = ACTIONS(378), - [sym__table_header_begin] = ACTIONS(380), - [sym__table_separator_begin] = ACTIONS(382), - [sym__table_row_begin] = ACTIONS(384), + [anon_sym_DOT] = ACTIONS(9), + [aux_sym_identifier_token1] = ACTIONS(9), + [aux_sym__inline_token1] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(9), + [anon_sym_PERCENT] = ACTIONS(9), + [sym__newline] = ACTIONS(418), + [sym__heading_begin] = ACTIONS(368), + [sym__div_begin] = ACTIONS(17), + [sym__code_block_begin] = ACTIONS(370), + [sym_list_marker_dash] = ACTIONS(21), + [sym_list_marker_star] = ACTIONS(23), + [sym_list_marker_plus] = ACTIONS(25), + [sym__list_marker_task_begin] = ACTIONS(27), + [sym_list_marker_definition] = ACTIONS(29), + [sym_list_marker_decimal_period] = ACTIONS(31), + [sym_list_marker_lower_alpha_period] = ACTIONS(33), + [sym_list_marker_upper_alpha_period] = ACTIONS(35), + [sym_list_marker_lower_roman_period] = ACTIONS(37), + [sym_list_marker_upper_roman_period] = ACTIONS(39), + [sym_list_marker_decimal_paren] = ACTIONS(41), + [sym_list_marker_lower_alpha_paren] = ACTIONS(43), + [sym_list_marker_upper_alpha_paren] = ACTIONS(45), + [sym_list_marker_lower_roman_paren] = ACTIONS(47), + [sym_list_marker_upper_roman_paren] = ACTIONS(49), + [sym_list_marker_decimal_parens] = ACTIONS(51), + [sym_list_marker_lower_alpha_parens] = ACTIONS(53), + [sym_list_marker_upper_alpha_parens] = ACTIONS(55), + [sym_list_marker_lower_roman_parens] = ACTIONS(57), + [sym_list_marker_upper_roman_parens] = ACTIONS(59), + [sym__block_quote_begin] = ACTIONS(372), + [sym__block_quote_continuation] = ACTIONS(374), + [sym__thematic_break_dash] = ACTIONS(376), + [sym__thematic_break_star] = ACTIONS(376), + [sym__table_header_begin] = ACTIONS(378), + [sym__table_separator_begin] = ACTIONS(380), + [sym__table_row_begin] = ACTIONS(382), + [sym__block_attribute_begin] = ACTIONS(384), }, [42] = { - [sym__block_with_heading] = STATE(1040), - [sym__block_element] = STATE(1040), - [sym_heading] = STATE(1040), - [sym_list] = STATE(1040), - [sym__list_dash] = STATE(998), - [sym__list_item_dash] = STATE(553), - [sym__list_plus] = STATE(998), - [sym__list_item_plus] = STATE(554), - [sym__list_star] = STATE(998), - [sym__list_item_star] = STATE(556), - [sym__list_task] = STATE(998), - [sym__list_item_task] = STATE(558), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(998), - [sym__list_item_definition] = STATE(769), - [sym__list_decimal_period] = STATE(998), - [sym__list_item_decimal_period] = STATE(776), - [sym__list_decimal_paren] = STATE(998), - [sym__list_item_decimal_paren] = STATE(790), - [sym__list_decimal_parens] = STATE(998), - [sym__list_item_decimal_parens] = STATE(793), - [sym__list_lower_alpha_period] = STATE(998), - [sym__list_item_lower_alpha_period] = STATE(822), - [sym__list_lower_alpha_paren] = STATE(998), - [sym__list_item_lower_alpha_paren] = STATE(684), - [sym__list_lower_alpha_parens] = STATE(998), - [sym__list_item_lower_alpha_parens] = STATE(688), - [sym__list_upper_alpha_period] = STATE(998), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(998), - [sym__list_item_upper_alpha_paren] = STATE(705), - [sym__list_upper_alpha_parens] = STATE(998), - [sym__list_item_upper_alpha_parens] = STATE(711), - [sym__list_lower_roman_period] = STATE(998), - [sym__list_item_lower_roman_period] = STATE(712), - [sym__list_lower_roman_paren] = STATE(998), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(998), - [sym__list_item_lower_roman_parens] = STATE(728), - [sym__list_upper_roman_period] = STATE(998), - [sym__list_item_upper_roman_period] = STATE(734), - [sym__list_upper_roman_paren] = STATE(998), - [sym__list_item_upper_roman_paren] = STATE(830), - [sym__list_upper_roman_parens] = STATE(998), - [sym__list_item_upper_roman_parens] = STATE(725), - [sym_list_item_content] = STATE(601), - [sym_table] = STATE(1040), - [sym__table_row] = STATE(241), - [sym_table_header] = STATE(241), - [sym_table_separator] = STATE(241), - [sym_table_row] = STATE(241), - [sym_footnote] = STATE(1040), - [sym_footnote_marker_begin] = STATE(1137), - [sym_div] = STATE(1040), - [sym__div_marker_begin] = STATE(1019), - [sym_code_block] = STATE(1040), - [sym_raw_block] = STATE(1040), - [sym_thematic_break] = STATE(1040), - [sym_block_quote] = STATE(1040), - [sym__block_quote_prefix] = STATE(223), - [sym_link_reference_definition] = STATE(1040), - [sym_block_attribute] = STATE(1040), - [sym__paragraph] = STATE(1040), - [sym__paragraph_content] = STATE(707), - [sym__paragraph_inline_content] = STATE(778), - [sym__inline] = STATE(655), + [sym__block_with_heading] = STATE(1058), + [sym__block_element] = STATE(1058), + [sym_heading] = STATE(1058), + [sym_list] = STATE(1058), + [sym__list_dash] = STATE(1008), + [sym__list_item_dash] = STATE(645), + [sym__list_plus] = STATE(1008), + [sym__list_item_plus] = STATE(661), + [sym__list_star] = STATE(1008), + [sym__list_item_star] = STATE(573), + [sym__list_task] = STATE(1008), + [sym__list_item_task] = STATE(590), + [sym_list_marker_task] = STATE(43), + [sym__list_definition] = STATE(1008), + [sym__list_item_definition] = STATE(740), + [sym__list_decimal_period] = STATE(1008), + [sym__list_item_decimal_period] = STATE(743), + [sym__list_decimal_paren] = STATE(1008), + [sym__list_item_decimal_paren] = STATE(748), + [sym__list_decimal_parens] = STATE(1008), + [sym__list_item_decimal_parens] = STATE(768), + [sym__list_lower_alpha_period] = STATE(1008), + [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_lower_alpha_paren] = STATE(1008), + [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_lower_alpha_parens] = STATE(1008), + [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_upper_alpha_period] = STATE(1008), + [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_upper_alpha_paren] = STATE(1008), + [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_upper_alpha_parens] = STATE(1008), + [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_lower_roman_period] = STATE(1008), + [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_lower_roman_paren] = STATE(1008), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(1008), + [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_upper_roman_period] = STATE(1008), + [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_upper_roman_paren] = STATE(1008), + [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_upper_roman_parens] = STATE(1008), + [sym__list_item_upper_roman_parens] = STATE(819), + [sym_list_item_content] = STATE(755), + [sym_table] = STATE(1058), + [sym__table_row] = STATE(234), + [sym_table_header] = STATE(234), + [sym_table_separator] = STATE(234), + [sym_table_row] = STATE(234), + [sym_footnote] = STATE(1058), + [sym_footnote_marker_begin] = STATE(1136), + [sym_div] = STATE(1058), + [sym__div_marker_begin] = STATE(1018), + [sym_code_block] = STATE(1058), + [sym_raw_block] = STATE(1058), + [sym_thematic_break] = STATE(1058), + [sym_block_quote] = STATE(1058), + [sym__block_quote_prefix] = STATE(225), + [sym_link_reference_definition] = STATE(1058), + [sym_block_attribute] = STATE(1058), + [sym__paragraph] = STATE(1058), + [sym__paragraph_content] = STATE(724), + [sym__paragraph_inline_content] = STATE(837), + [sym__inline] = STATE(656), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(326), - [aux_sym__list_plus_repeat1] = STATE(329), - [aux_sym__list_star_repeat1] = STATE(330), - [aux_sym__list_task_repeat1] = STATE(298), - [aux_sym__list_definition_repeat1] = STATE(508), - [aux_sym__list_decimal_period_repeat1] = STATE(509), - [aux_sym__list_decimal_paren_repeat1] = STATE(510), - [aux_sym__list_decimal_parens_repeat1] = STATE(511), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(512), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(513), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(514), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(515), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(516), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(517), - [aux_sym__list_lower_roman_period_repeat1] = STATE(526), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(531), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(534), - [aux_sym__list_upper_roman_period_repeat1] = STATE(544), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(441), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(442), - [aux_sym_table_repeat1] = STATE(241), - [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__list_dash_repeat1] = STATE(318), + [aux_sym__list_plus_repeat1] = STATE(319), + [aux_sym__list_star_repeat1] = STATE(320), + [aux_sym__list_task_repeat1] = STATE(287), + [aux_sym__list_definition_repeat1] = STATE(459), + [aux_sym__list_decimal_period_repeat1] = STATE(460), + [aux_sym__list_decimal_paren_repeat1] = STATE(461), + [aux_sym__list_decimal_parens_repeat1] = STATE(462), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(463), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(464), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(465), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(466), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(467), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(468), + [aux_sym__list_lower_roman_period_repeat1] = STATE(469), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(470), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(471), + [aux_sym__list_upper_roman_period_repeat1] = STATE(472), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(473), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym_table_repeat1] = STATE(234), + [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(366), - [anon_sym_DOT] = ACTIONS(11), - [aux_sym_identifier_token1] = ACTIONS(11), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_PERCENT] = ACTIONS(11), - [sym__newline] = ACTIONS(396), - [sym__heading_begin] = ACTIONS(370), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(372), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(374), - [sym__block_quote_continuation] = ACTIONS(376), - [sym__thematic_break_dash] = ACTIONS(378), - [sym__thematic_break_star] = ACTIONS(378), - [sym__table_header_begin] = ACTIONS(380), - [sym__table_separator_begin] = ACTIONS(382), - [sym__table_row_begin] = ACTIONS(384), + [anon_sym_DOT] = ACTIONS(9), + [aux_sym_identifier_token1] = ACTIONS(9), + [aux_sym__inline_token1] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(9), + [anon_sym_PERCENT] = ACTIONS(9), + [sym__newline] = ACTIONS(420), + [sym__heading_begin] = ACTIONS(368), + [sym__div_begin] = ACTIONS(17), + [sym__code_block_begin] = ACTIONS(370), + [sym_list_marker_dash] = ACTIONS(21), + [sym_list_marker_star] = ACTIONS(23), + [sym_list_marker_plus] = ACTIONS(25), + [sym__list_marker_task_begin] = ACTIONS(27), + [sym_list_marker_definition] = ACTIONS(29), + [sym_list_marker_decimal_period] = ACTIONS(31), + [sym_list_marker_lower_alpha_period] = ACTIONS(33), + [sym_list_marker_upper_alpha_period] = ACTIONS(35), + [sym_list_marker_lower_roman_period] = ACTIONS(37), + [sym_list_marker_upper_roman_period] = ACTIONS(39), + [sym_list_marker_decimal_paren] = ACTIONS(41), + [sym_list_marker_lower_alpha_paren] = ACTIONS(43), + [sym_list_marker_upper_alpha_paren] = ACTIONS(45), + [sym_list_marker_lower_roman_paren] = ACTIONS(47), + [sym_list_marker_upper_roman_paren] = ACTIONS(49), + [sym_list_marker_decimal_parens] = ACTIONS(51), + [sym_list_marker_lower_alpha_parens] = ACTIONS(53), + [sym_list_marker_upper_alpha_parens] = ACTIONS(55), + [sym_list_marker_lower_roman_parens] = ACTIONS(57), + [sym_list_marker_upper_roman_parens] = ACTIONS(59), + [sym__block_quote_begin] = ACTIONS(372), + [sym__block_quote_continuation] = ACTIONS(374), + [sym__thematic_break_dash] = ACTIONS(376), + [sym__thematic_break_star] = ACTIONS(376), + [sym__table_header_begin] = ACTIONS(378), + [sym__table_separator_begin] = ACTIONS(380), + [sym__table_row_begin] = ACTIONS(382), + [sym__block_attribute_begin] = ACTIONS(384), }, [43] = { - [sym__block_with_heading] = STATE(1053), - [sym__block_element] = STATE(1053), - [sym_heading] = STATE(1053), - [sym_list] = STATE(1053), - [sym__list_dash] = STATE(998), - [sym__list_item_dash] = STATE(553), - [sym__list_plus] = STATE(998), - [sym__list_item_plus] = STATE(554), - [sym__list_star] = STATE(998), - [sym__list_item_star] = STATE(556), - [sym__list_task] = STATE(998), - [sym__list_item_task] = STATE(558), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(998), - [sym__list_item_definition] = STATE(769), - [sym__list_decimal_period] = STATE(998), - [sym__list_item_decimal_period] = STATE(776), - [sym__list_decimal_paren] = STATE(998), - [sym__list_item_decimal_paren] = STATE(790), - [sym__list_decimal_parens] = STATE(998), - [sym__list_item_decimal_parens] = STATE(793), - [sym__list_lower_alpha_period] = STATE(998), - [sym__list_item_lower_alpha_period] = STATE(822), - [sym__list_lower_alpha_paren] = STATE(998), - [sym__list_item_lower_alpha_paren] = STATE(684), - [sym__list_lower_alpha_parens] = STATE(998), - [sym__list_item_lower_alpha_parens] = STATE(688), - [sym__list_upper_alpha_period] = STATE(998), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(998), - [sym__list_item_upper_alpha_paren] = STATE(705), - [sym__list_upper_alpha_parens] = STATE(998), - [sym__list_item_upper_alpha_parens] = STATE(711), - [sym__list_lower_roman_period] = STATE(998), - [sym__list_item_lower_roman_period] = STATE(712), - [sym__list_lower_roman_paren] = STATE(998), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(998), - [sym__list_item_lower_roman_parens] = STATE(728), - [sym__list_upper_roman_period] = STATE(998), - [sym__list_item_upper_roman_period] = STATE(734), - [sym__list_upper_roman_paren] = STATE(998), - [sym__list_item_upper_roman_paren] = STATE(830), - [sym__list_upper_roman_parens] = STATE(998), - [sym__list_item_upper_roman_parens] = STATE(725), - [sym_table] = STATE(1053), - [sym__table_row] = STATE(241), - [sym_table_header] = STATE(241), - [sym_table_separator] = STATE(241), - [sym_table_row] = STATE(241), - [sym_footnote] = STATE(1053), - [sym_footnote_marker_begin] = STATE(1137), - [sym_footnote_content] = STATE(866), - [sym_div] = STATE(1053), - [sym__div_marker_begin] = STATE(1019), - [sym_code_block] = STATE(1053), - [sym_raw_block] = STATE(1053), - [sym_thematic_break] = STATE(1053), - [sym_block_quote] = STATE(1053), - [sym__block_quote_prefix] = STATE(223), - [sym_link_reference_definition] = STATE(1053), - [sym_block_attribute] = STATE(1053), - [sym__paragraph] = STATE(1053), - [sym__paragraph_content] = STATE(707), - [sym__paragraph_inline_content] = STATE(778), - [sym__inline] = STATE(655), + [sym__block_with_heading] = STATE(1103), + [sym__block_element] = STATE(1103), + [sym_heading] = STATE(1103), + [sym_list] = STATE(1103), + [sym__list_dash] = STATE(1008), + [sym__list_item_dash] = STATE(645), + [sym__list_plus] = STATE(1008), + [sym__list_item_plus] = STATE(661), + [sym__list_star] = STATE(1008), + [sym__list_item_star] = STATE(573), + [sym__list_task] = STATE(1008), + [sym__list_item_task] = STATE(590), + [sym_list_marker_task] = STATE(43), + [sym__list_definition] = STATE(1008), + [sym__list_item_definition] = STATE(740), + [sym__list_decimal_period] = STATE(1008), + [sym__list_item_decimal_period] = STATE(743), + [sym__list_decimal_paren] = STATE(1008), + [sym__list_item_decimal_paren] = STATE(748), + [sym__list_decimal_parens] = STATE(1008), + [sym__list_item_decimal_parens] = STATE(768), + [sym__list_lower_alpha_period] = STATE(1008), + [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_lower_alpha_paren] = STATE(1008), + [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_lower_alpha_parens] = STATE(1008), + [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_upper_alpha_period] = STATE(1008), + [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_upper_alpha_paren] = STATE(1008), + [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_upper_alpha_parens] = STATE(1008), + [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_lower_roman_period] = STATE(1008), + [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_lower_roman_paren] = STATE(1008), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(1008), + [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_upper_roman_period] = STATE(1008), + [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_upper_roman_paren] = STATE(1008), + [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_upper_roman_parens] = STATE(1008), + [sym__list_item_upper_roman_parens] = STATE(819), + [sym_list_item_content] = STATE(606), + [sym_table] = STATE(1103), + [sym__table_row] = STATE(234), + [sym_table_header] = STATE(234), + [sym_table_separator] = STATE(234), + [sym_table_row] = STATE(234), + [sym_footnote] = STATE(1103), + [sym_footnote_marker_begin] = STATE(1136), + [sym_div] = STATE(1103), + [sym__div_marker_begin] = STATE(1018), + [sym_code_block] = STATE(1103), + [sym_raw_block] = STATE(1103), + [sym_thematic_break] = STATE(1103), + [sym_block_quote] = STATE(1103), + [sym__block_quote_prefix] = STATE(225), + [sym_link_reference_definition] = STATE(1103), + [sym_block_attribute] = STATE(1103), + [sym__paragraph] = STATE(1103), + [sym__paragraph_content] = STATE(724), + [sym__paragraph_inline_content] = STATE(837), + [sym__inline] = STATE(656), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(326), - [aux_sym__list_plus_repeat1] = STATE(329), - [aux_sym__list_star_repeat1] = STATE(330), - [aux_sym__list_task_repeat1] = STATE(298), - [aux_sym__list_definition_repeat1] = STATE(508), - [aux_sym__list_decimal_period_repeat1] = STATE(509), - [aux_sym__list_decimal_paren_repeat1] = STATE(510), - [aux_sym__list_decimal_parens_repeat1] = STATE(511), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(512), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(513), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(514), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(515), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(516), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(517), - [aux_sym__list_lower_roman_period_repeat1] = STATE(526), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(531), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(534), - [aux_sym__list_upper_roman_period_repeat1] = STATE(544), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(441), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(442), - [aux_sym_table_repeat1] = STATE(241), - [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__list_dash_repeat1] = STATE(318), + [aux_sym__list_plus_repeat1] = STATE(319), + [aux_sym__list_star_repeat1] = STATE(320), + [aux_sym__list_task_repeat1] = STATE(287), + [aux_sym__list_definition_repeat1] = STATE(459), + [aux_sym__list_decimal_period_repeat1] = STATE(460), + [aux_sym__list_decimal_paren_repeat1] = STATE(461), + [aux_sym__list_decimal_parens_repeat1] = STATE(462), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(463), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(464), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(465), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(466), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(467), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(468), + [aux_sym__list_lower_roman_period_repeat1] = STATE(469), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(470), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(471), + [aux_sym__list_upper_roman_period_repeat1] = STATE(472), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(473), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym_table_repeat1] = STATE(234), + [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(366), - [anon_sym_DOT] = ACTIONS(11), - [aux_sym_identifier_token1] = ACTIONS(11), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_PERCENT] = ACTIONS(11), - [sym__newline] = ACTIONS(422), - [sym__heading_begin] = ACTIONS(370), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(372), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(374), - [sym__block_quote_continuation] = ACTIONS(376), - [sym__thematic_break_dash] = ACTIONS(378), - [sym__thematic_break_star] = ACTIONS(378), - [sym__table_header_begin] = ACTIONS(380), - [sym__table_separator_begin] = ACTIONS(382), - [sym__table_row_begin] = ACTIONS(384), + [anon_sym_DOT] = ACTIONS(9), + [aux_sym_identifier_token1] = ACTIONS(9), + [aux_sym__inline_token1] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(9), + [anon_sym_PERCENT] = ACTIONS(9), + [sym__newline] = ACTIONS(394), + [sym__heading_begin] = ACTIONS(368), + [sym__div_begin] = ACTIONS(17), + [sym__code_block_begin] = ACTIONS(370), + [sym_list_marker_dash] = ACTIONS(21), + [sym_list_marker_star] = ACTIONS(23), + [sym_list_marker_plus] = ACTIONS(25), + [sym__list_marker_task_begin] = ACTIONS(27), + [sym_list_marker_definition] = ACTIONS(29), + [sym_list_marker_decimal_period] = ACTIONS(31), + [sym_list_marker_lower_alpha_period] = ACTIONS(33), + [sym_list_marker_upper_alpha_period] = ACTIONS(35), + [sym_list_marker_lower_roman_period] = ACTIONS(37), + [sym_list_marker_upper_roman_period] = ACTIONS(39), + [sym_list_marker_decimal_paren] = ACTIONS(41), + [sym_list_marker_lower_alpha_paren] = ACTIONS(43), + [sym_list_marker_upper_alpha_paren] = ACTIONS(45), + [sym_list_marker_lower_roman_paren] = ACTIONS(47), + [sym_list_marker_upper_roman_paren] = ACTIONS(49), + [sym_list_marker_decimal_parens] = ACTIONS(51), + [sym_list_marker_lower_alpha_parens] = ACTIONS(53), + [sym_list_marker_upper_alpha_parens] = ACTIONS(55), + [sym_list_marker_lower_roman_parens] = ACTIONS(57), + [sym_list_marker_upper_roman_parens] = ACTIONS(59), + [sym__block_quote_begin] = ACTIONS(372), + [sym__block_quote_continuation] = ACTIONS(374), + [sym__thematic_break_dash] = ACTIONS(376), + [sym__thematic_break_star] = ACTIONS(376), + [sym__table_header_begin] = ACTIONS(378), + [sym__table_separator_begin] = ACTIONS(380), + [sym__table_row_begin] = ACTIONS(382), + [sym__block_attribute_begin] = ACTIONS(384), }, [44] = { - [sym__block_with_heading] = STATE(1059), - [sym__block_element] = STATE(1059), - [sym_heading] = STATE(1059), - [sym_list] = STATE(1059), - [sym__list_dash] = STATE(998), - [sym__list_item_dash] = STATE(553), - [sym__list_plus] = STATE(998), - [sym__list_item_plus] = STATE(554), - [sym__list_star] = STATE(998), - [sym__list_item_star] = STATE(556), - [sym__list_task] = STATE(998), - [sym__list_item_task] = STATE(558), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(998), - [sym__list_item_definition] = STATE(769), - [sym__list_decimal_period] = STATE(998), - [sym__list_item_decimal_period] = STATE(776), - [sym__list_decimal_paren] = STATE(998), - [sym__list_item_decimal_paren] = STATE(790), - [sym__list_decimal_parens] = STATE(998), - [sym__list_item_decimal_parens] = STATE(793), - [sym__list_lower_alpha_period] = STATE(998), - [sym__list_item_lower_alpha_period] = STATE(822), - [sym__list_lower_alpha_paren] = STATE(998), - [sym__list_item_lower_alpha_paren] = STATE(684), - [sym__list_lower_alpha_parens] = STATE(998), - [sym__list_item_lower_alpha_parens] = STATE(688), - [sym__list_upper_alpha_period] = STATE(998), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(998), - [sym__list_item_upper_alpha_paren] = STATE(705), - [sym__list_upper_alpha_parens] = STATE(998), - [sym__list_item_upper_alpha_parens] = STATE(711), - [sym__list_lower_roman_period] = STATE(998), - [sym__list_item_lower_roman_period] = STATE(712), - [sym__list_lower_roman_paren] = STATE(998), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(998), - [sym__list_item_lower_roman_parens] = STATE(728), - [sym__list_upper_roman_period] = STATE(998), - [sym__list_item_upper_roman_period] = STATE(734), - [sym__list_upper_roman_paren] = STATE(998), - [sym__list_item_upper_roman_paren] = STATE(830), - [sym__list_upper_roman_parens] = STATE(998), - [sym__list_item_upper_roman_parens] = STATE(725), - [sym_list_item_content] = STATE(842), - [sym_table] = STATE(1059), - [sym__table_row] = STATE(241), - [sym_table_header] = STATE(241), - [sym_table_separator] = STATE(241), - [sym_table_row] = STATE(241), - [sym_footnote] = STATE(1059), - [sym_footnote_marker_begin] = STATE(1137), - [sym_div] = STATE(1059), - [sym__div_marker_begin] = STATE(1019), - [sym_code_block] = STATE(1059), - [sym_raw_block] = STATE(1059), - [sym_thematic_break] = STATE(1059), - [sym_block_quote] = STATE(1059), - [sym__block_quote_prefix] = STATE(223), - [sym_link_reference_definition] = STATE(1059), - [sym_block_attribute] = STATE(1059), - [sym__paragraph] = STATE(1059), - [sym__paragraph_content] = STATE(707), - [sym__paragraph_inline_content] = STATE(778), - [sym__inline] = STATE(655), + [sym__block_with_heading] = STATE(1071), + [sym__block_element] = STATE(1071), + [sym_heading] = STATE(1071), + [sym_list] = STATE(1071), + [sym__list_dash] = STATE(1008), + [sym__list_item_dash] = STATE(645), + [sym__list_plus] = STATE(1008), + [sym__list_item_plus] = STATE(661), + [sym__list_star] = STATE(1008), + [sym__list_item_star] = STATE(573), + [sym__list_task] = STATE(1008), + [sym__list_item_task] = STATE(590), + [sym_list_marker_task] = STATE(43), + [sym__list_definition] = STATE(1008), + [sym__list_item_definition] = STATE(740), + [sym__list_decimal_period] = STATE(1008), + [sym__list_item_decimal_period] = STATE(743), + [sym__list_decimal_paren] = STATE(1008), + [sym__list_item_decimal_paren] = STATE(748), + [sym__list_decimal_parens] = STATE(1008), + [sym__list_item_decimal_parens] = STATE(768), + [sym__list_lower_alpha_period] = STATE(1008), + [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_lower_alpha_paren] = STATE(1008), + [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_lower_alpha_parens] = STATE(1008), + [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_upper_alpha_period] = STATE(1008), + [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_upper_alpha_paren] = STATE(1008), + [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_upper_alpha_parens] = STATE(1008), + [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_lower_roman_period] = STATE(1008), + [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_lower_roman_paren] = STATE(1008), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(1008), + [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_upper_roman_period] = STATE(1008), + [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_upper_roman_paren] = STATE(1008), + [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_upper_roman_parens] = STATE(1008), + [sym__list_item_upper_roman_parens] = STATE(819), + [sym_table] = STATE(1071), + [sym__table_row] = STATE(234), + [sym_table_header] = STATE(234), + [sym_table_separator] = STATE(234), + [sym_table_row] = STATE(234), + [sym_footnote] = STATE(1071), + [sym_footnote_marker_begin] = STATE(1136), + [sym_footnote_content] = STATE(173), + [sym_div] = STATE(1071), + [sym__div_marker_begin] = STATE(1018), + [sym_code_block] = STATE(1071), + [sym_raw_block] = STATE(1071), + [sym_thematic_break] = STATE(1071), + [sym_block_quote] = STATE(1071), + [sym__block_quote_prefix] = STATE(225), + [sym_link_reference_definition] = STATE(1071), + [sym_block_attribute] = STATE(1071), + [sym__paragraph] = STATE(1071), + [sym__paragraph_content] = STATE(724), + [sym__paragraph_inline_content] = STATE(837), + [sym__inline] = STATE(656), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(326), - [aux_sym__list_plus_repeat1] = STATE(329), - [aux_sym__list_star_repeat1] = STATE(330), - [aux_sym__list_task_repeat1] = STATE(298), - [aux_sym__list_definition_repeat1] = STATE(508), - [aux_sym__list_decimal_period_repeat1] = STATE(509), - [aux_sym__list_decimal_paren_repeat1] = STATE(510), - [aux_sym__list_decimal_parens_repeat1] = STATE(511), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(512), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(513), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(514), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(515), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(516), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(517), - [aux_sym__list_lower_roman_period_repeat1] = STATE(526), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(531), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(534), - [aux_sym__list_upper_roman_period_repeat1] = STATE(544), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(441), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(442), - [aux_sym_table_repeat1] = STATE(241), - [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__list_dash_repeat1] = STATE(318), + [aux_sym__list_plus_repeat1] = STATE(319), + [aux_sym__list_star_repeat1] = STATE(320), + [aux_sym__list_task_repeat1] = STATE(287), + [aux_sym__list_definition_repeat1] = STATE(459), + [aux_sym__list_decimal_period_repeat1] = STATE(460), + [aux_sym__list_decimal_paren_repeat1] = STATE(461), + [aux_sym__list_decimal_parens_repeat1] = STATE(462), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(463), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(464), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(465), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(466), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(467), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(468), + [aux_sym__list_lower_roman_period_repeat1] = STATE(469), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(470), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(471), + [aux_sym__list_upper_roman_period_repeat1] = STATE(472), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(473), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym_table_repeat1] = STATE(234), + [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(366), - [anon_sym_DOT] = ACTIONS(11), - [aux_sym_identifier_token1] = ACTIONS(11), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_PERCENT] = ACTIONS(11), - [sym__newline] = ACTIONS(424), - [sym__heading_begin] = ACTIONS(370), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(372), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(374), - [sym__block_quote_continuation] = ACTIONS(376), - [sym__thematic_break_dash] = ACTIONS(378), - [sym__thematic_break_star] = ACTIONS(378), - [sym__table_header_begin] = ACTIONS(380), - [sym__table_separator_begin] = ACTIONS(382), - [sym__table_row_begin] = ACTIONS(384), + [anon_sym_DOT] = ACTIONS(9), + [aux_sym_identifier_token1] = ACTIONS(9), + [aux_sym__inline_token1] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(9), + [anon_sym_PERCENT] = ACTIONS(9), + [sym__newline] = ACTIONS(422), + [sym__heading_begin] = ACTIONS(368), + [sym__div_begin] = ACTIONS(17), + [sym__code_block_begin] = ACTIONS(370), + [sym_list_marker_dash] = ACTIONS(21), + [sym_list_marker_star] = ACTIONS(23), + [sym_list_marker_plus] = ACTIONS(25), + [sym__list_marker_task_begin] = ACTIONS(27), + [sym_list_marker_definition] = ACTIONS(29), + [sym_list_marker_decimal_period] = ACTIONS(31), + [sym_list_marker_lower_alpha_period] = ACTIONS(33), + [sym_list_marker_upper_alpha_period] = ACTIONS(35), + [sym_list_marker_lower_roman_period] = ACTIONS(37), + [sym_list_marker_upper_roman_period] = ACTIONS(39), + [sym_list_marker_decimal_paren] = ACTIONS(41), + [sym_list_marker_lower_alpha_paren] = ACTIONS(43), + [sym_list_marker_upper_alpha_paren] = ACTIONS(45), + [sym_list_marker_lower_roman_paren] = ACTIONS(47), + [sym_list_marker_upper_roman_paren] = ACTIONS(49), + [sym_list_marker_decimal_parens] = ACTIONS(51), + [sym_list_marker_lower_alpha_parens] = ACTIONS(53), + [sym_list_marker_upper_alpha_parens] = ACTIONS(55), + [sym_list_marker_lower_roman_parens] = ACTIONS(57), + [sym_list_marker_upper_roman_parens] = ACTIONS(59), + [sym__block_quote_begin] = ACTIONS(372), + [sym__block_quote_continuation] = ACTIONS(374), + [sym__thematic_break_dash] = ACTIONS(376), + [sym__thematic_break_star] = ACTIONS(376), + [sym__table_header_begin] = ACTIONS(378), + [sym__table_separator_begin] = ACTIONS(380), + [sym__table_row_begin] = ACTIONS(382), + [sym__block_attribute_begin] = ACTIONS(384), }, [45] = { - [sym__block_with_heading] = STATE(1104), - [sym__block_element] = STATE(1104), - [sym_heading] = STATE(1104), - [sym_list] = STATE(1104), - [sym__list_dash] = STATE(998), - [sym__list_item_dash] = STATE(553), - [sym__list_plus] = STATE(998), - [sym__list_item_plus] = STATE(554), - [sym__list_star] = STATE(998), - [sym__list_item_star] = STATE(556), - [sym__list_task] = STATE(998), - [sym__list_item_task] = STATE(558), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(998), - [sym__list_item_definition] = STATE(769), - [sym__list_decimal_period] = STATE(998), - [sym__list_item_decimal_period] = STATE(776), - [sym__list_decimal_paren] = STATE(998), - [sym__list_item_decimal_paren] = STATE(790), - [sym__list_decimal_parens] = STATE(998), - [sym__list_item_decimal_parens] = STATE(793), - [sym__list_lower_alpha_period] = STATE(998), - [sym__list_item_lower_alpha_period] = STATE(822), - [sym__list_lower_alpha_paren] = STATE(998), - [sym__list_item_lower_alpha_paren] = STATE(684), - [sym__list_lower_alpha_parens] = STATE(998), - [sym__list_item_lower_alpha_parens] = STATE(688), - [sym__list_upper_alpha_period] = STATE(998), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(998), - [sym__list_item_upper_alpha_paren] = STATE(705), - [sym__list_upper_alpha_parens] = STATE(998), - [sym__list_item_upper_alpha_parens] = STATE(711), - [sym__list_lower_roman_period] = STATE(998), - [sym__list_item_lower_roman_period] = STATE(712), - [sym__list_lower_roman_paren] = STATE(998), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(998), - [sym__list_item_lower_roman_parens] = STATE(728), - [sym__list_upper_roman_period] = STATE(998), - [sym__list_item_upper_roman_period] = STATE(734), - [sym__list_upper_roman_paren] = STATE(998), - [sym__list_item_upper_roman_paren] = STATE(830), - [sym__list_upper_roman_parens] = STATE(998), - [sym__list_item_upper_roman_parens] = STATE(725), - [sym_list_item_content] = STATE(667), - [sym_table] = STATE(1104), - [sym__table_row] = STATE(241), - [sym_table_header] = STATE(241), - [sym_table_separator] = STATE(241), - [sym_table_row] = STATE(241), - [sym_footnote] = STATE(1104), - [sym_footnote_marker_begin] = STATE(1137), - [sym_div] = STATE(1104), - [sym__div_marker_begin] = STATE(1019), - [sym_code_block] = STATE(1104), - [sym_raw_block] = STATE(1104), - [sym_thematic_break] = STATE(1104), - [sym_block_quote] = STATE(1104), - [sym__block_quote_prefix] = STATE(223), - [sym_link_reference_definition] = STATE(1104), - [sym_block_attribute] = STATE(1104), - [sym__paragraph] = STATE(1104), - [sym__paragraph_content] = STATE(707), - [sym__paragraph_inline_content] = STATE(778), - [sym__inline] = STATE(655), + [sym__block_with_heading] = STATE(1076), + [sym__block_element] = STATE(1076), + [sym_heading] = STATE(1076), + [sym_list] = STATE(1076), + [sym__list_dash] = STATE(1008), + [sym__list_item_dash] = STATE(645), + [sym__list_plus] = STATE(1008), + [sym__list_item_plus] = STATE(661), + [sym__list_star] = STATE(1008), + [sym__list_item_star] = STATE(573), + [sym__list_task] = STATE(1008), + [sym__list_item_task] = STATE(590), + [sym_list_marker_task] = STATE(43), + [sym__list_definition] = STATE(1008), + [sym__list_item_definition] = STATE(740), + [sym__list_decimal_period] = STATE(1008), + [sym__list_item_decimal_period] = STATE(743), + [sym__list_decimal_paren] = STATE(1008), + [sym__list_item_decimal_paren] = STATE(748), + [sym__list_decimal_parens] = STATE(1008), + [sym__list_item_decimal_parens] = STATE(768), + [sym__list_lower_alpha_period] = STATE(1008), + [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_lower_alpha_paren] = STATE(1008), + [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_lower_alpha_parens] = STATE(1008), + [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_upper_alpha_period] = STATE(1008), + [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_upper_alpha_paren] = STATE(1008), + [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_upper_alpha_parens] = STATE(1008), + [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_lower_roman_period] = STATE(1008), + [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_lower_roman_paren] = STATE(1008), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(1008), + [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_upper_roman_period] = STATE(1008), + [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_upper_roman_paren] = STATE(1008), + [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_upper_roman_parens] = STATE(1008), + [sym__list_item_upper_roman_parens] = STATE(819), + [sym_list_item_content] = STATE(756), + [sym_table] = STATE(1076), + [sym__table_row] = STATE(234), + [sym_table_header] = STATE(234), + [sym_table_separator] = STATE(234), + [sym_table_row] = STATE(234), + [sym_footnote] = STATE(1076), + [sym_footnote_marker_begin] = STATE(1136), + [sym_div] = STATE(1076), + [sym__div_marker_begin] = STATE(1018), + [sym_code_block] = STATE(1076), + [sym_raw_block] = STATE(1076), + [sym_thematic_break] = STATE(1076), + [sym_block_quote] = STATE(1076), + [sym__block_quote_prefix] = STATE(225), + [sym_link_reference_definition] = STATE(1076), + [sym_block_attribute] = STATE(1076), + [sym__paragraph] = STATE(1076), + [sym__paragraph_content] = STATE(724), + [sym__paragraph_inline_content] = STATE(837), + [sym__inline] = STATE(656), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(326), - [aux_sym__list_plus_repeat1] = STATE(329), - [aux_sym__list_star_repeat1] = STATE(330), - [aux_sym__list_task_repeat1] = STATE(298), - [aux_sym__list_definition_repeat1] = STATE(508), - [aux_sym__list_decimal_period_repeat1] = STATE(509), - [aux_sym__list_decimal_paren_repeat1] = STATE(510), - [aux_sym__list_decimal_parens_repeat1] = STATE(511), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(512), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(513), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(514), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(515), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(516), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(517), - [aux_sym__list_lower_roman_period_repeat1] = STATE(526), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(531), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(534), - [aux_sym__list_upper_roman_period_repeat1] = STATE(544), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(441), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(442), - [aux_sym_table_repeat1] = STATE(241), - [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__list_dash_repeat1] = STATE(318), + [aux_sym__list_plus_repeat1] = STATE(319), + [aux_sym__list_star_repeat1] = STATE(320), + [aux_sym__list_task_repeat1] = STATE(287), + [aux_sym__list_definition_repeat1] = STATE(459), + [aux_sym__list_decimal_period_repeat1] = STATE(460), + [aux_sym__list_decimal_paren_repeat1] = STATE(461), + [aux_sym__list_decimal_parens_repeat1] = STATE(462), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(463), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(464), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(465), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(466), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(467), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(468), + [aux_sym__list_lower_roman_period_repeat1] = STATE(469), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(470), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(471), + [aux_sym__list_upper_roman_period_repeat1] = STATE(472), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(473), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym_table_repeat1] = STATE(234), + [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(366), - [anon_sym_DOT] = ACTIONS(11), - [aux_sym_identifier_token1] = ACTIONS(11), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_PERCENT] = ACTIONS(11), - [sym__newline] = ACTIONS(398), - [sym__heading_begin] = ACTIONS(370), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(372), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(374), - [sym__block_quote_continuation] = ACTIONS(376), - [sym__thematic_break_dash] = ACTIONS(378), - [sym__thematic_break_star] = ACTIONS(378), - [sym__table_header_begin] = ACTIONS(380), - [sym__table_separator_begin] = ACTIONS(382), - [sym__table_row_begin] = ACTIONS(384), + [anon_sym_DOT] = ACTIONS(9), + [aux_sym_identifier_token1] = ACTIONS(9), + [aux_sym__inline_token1] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(9), + [anon_sym_PERCENT] = ACTIONS(9), + [sym__newline] = ACTIONS(424), + [sym__heading_begin] = ACTIONS(368), + [sym__div_begin] = ACTIONS(17), + [sym__code_block_begin] = ACTIONS(370), + [sym_list_marker_dash] = ACTIONS(21), + [sym_list_marker_star] = ACTIONS(23), + [sym_list_marker_plus] = ACTIONS(25), + [sym__list_marker_task_begin] = ACTIONS(27), + [sym_list_marker_definition] = ACTIONS(29), + [sym_list_marker_decimal_period] = ACTIONS(31), + [sym_list_marker_lower_alpha_period] = ACTIONS(33), + [sym_list_marker_upper_alpha_period] = ACTIONS(35), + [sym_list_marker_lower_roman_period] = ACTIONS(37), + [sym_list_marker_upper_roman_period] = ACTIONS(39), + [sym_list_marker_decimal_paren] = ACTIONS(41), + [sym_list_marker_lower_alpha_paren] = ACTIONS(43), + [sym_list_marker_upper_alpha_paren] = ACTIONS(45), + [sym_list_marker_lower_roman_paren] = ACTIONS(47), + [sym_list_marker_upper_roman_paren] = ACTIONS(49), + [sym_list_marker_decimal_parens] = ACTIONS(51), + [sym_list_marker_lower_alpha_parens] = ACTIONS(53), + [sym_list_marker_upper_alpha_parens] = ACTIONS(55), + [sym_list_marker_lower_roman_parens] = ACTIONS(57), + [sym_list_marker_upper_roman_parens] = ACTIONS(59), + [sym__block_quote_begin] = ACTIONS(372), + [sym__block_quote_continuation] = ACTIONS(374), + [sym__thematic_break_dash] = ACTIONS(376), + [sym__thematic_break_star] = ACTIONS(376), + [sym__table_header_begin] = ACTIONS(378), + [sym__table_separator_begin] = ACTIONS(380), + [sym__table_row_begin] = ACTIONS(382), + [sym__block_attribute_begin] = ACTIONS(384), }, [46] = { - [sym__block_with_heading] = STATE(1072), - [sym__block_element] = STATE(1072), - [sym_heading] = STATE(1072), - [sym_list] = STATE(1072), - [sym__list_dash] = STATE(998), - [sym__list_item_dash] = STATE(553), - [sym__list_plus] = STATE(998), - [sym__list_item_plus] = STATE(554), - [sym__list_star] = STATE(998), - [sym__list_item_star] = STATE(556), - [sym__list_task] = STATE(998), - [sym__list_item_task] = STATE(558), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(998), - [sym__list_item_definition] = STATE(769), - [sym__list_decimal_period] = STATE(998), - [sym__list_item_decimal_period] = STATE(776), - [sym__list_decimal_paren] = STATE(998), - [sym__list_item_decimal_paren] = STATE(790), - [sym__list_decimal_parens] = STATE(998), - [sym__list_item_decimal_parens] = STATE(793), - [sym__list_lower_alpha_period] = STATE(998), - [sym__list_item_lower_alpha_period] = STATE(822), - [sym__list_lower_alpha_paren] = STATE(998), - [sym__list_item_lower_alpha_paren] = STATE(684), - [sym__list_lower_alpha_parens] = STATE(998), - [sym__list_item_lower_alpha_parens] = STATE(688), - [sym__list_upper_alpha_period] = STATE(998), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(998), - [sym__list_item_upper_alpha_paren] = STATE(705), - [sym__list_upper_alpha_parens] = STATE(998), - [sym__list_item_upper_alpha_parens] = STATE(711), - [sym__list_lower_roman_period] = STATE(998), - [sym__list_item_lower_roman_period] = STATE(712), - [sym__list_lower_roman_paren] = STATE(998), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(998), - [sym__list_item_lower_roman_parens] = STATE(728), - [sym__list_upper_roman_period] = STATE(998), - [sym__list_item_upper_roman_period] = STATE(734), - [sym__list_upper_roman_paren] = STATE(998), - [sym__list_item_upper_roman_paren] = STATE(830), - [sym__list_upper_roman_parens] = STATE(998), - [sym__list_item_upper_roman_parens] = STATE(725), - [sym_table] = STATE(1072), - [sym__table_row] = STATE(241), - [sym_table_header] = STATE(241), - [sym_table_separator] = STATE(241), - [sym_table_row] = STATE(241), - [sym_footnote] = STATE(1072), - [sym_footnote_marker_begin] = STATE(1137), - [sym_footnote_content] = STATE(184), - [sym_div] = STATE(1072), - [sym__div_marker_begin] = STATE(1019), - [sym_code_block] = STATE(1072), - [sym_raw_block] = STATE(1072), - [sym_thematic_break] = STATE(1072), - [sym_block_quote] = STATE(1072), - [sym__block_quote_prefix] = STATE(223), - [sym_link_reference_definition] = STATE(1072), - [sym_block_attribute] = STATE(1072), - [sym__paragraph] = STATE(1072), - [sym__paragraph_content] = STATE(707), - [sym__paragraph_inline_content] = STATE(778), - [sym__inline] = STATE(655), + [sym__block_with_heading] = STATE(1090), + [sym__block_element] = STATE(1090), + [sym_heading] = STATE(1090), + [sym_list] = STATE(1090), + [sym__list_dash] = STATE(1008), + [sym__list_item_dash] = STATE(645), + [sym__list_plus] = STATE(1008), + [sym__list_item_plus] = STATE(661), + [sym__list_star] = STATE(1008), + [sym__list_item_star] = STATE(573), + [sym__list_task] = STATE(1008), + [sym__list_item_task] = STATE(590), + [sym_list_marker_task] = STATE(43), + [sym__list_definition] = STATE(1008), + [sym__list_item_definition] = STATE(740), + [sym__list_decimal_period] = STATE(1008), + [sym__list_item_decimal_period] = STATE(743), + [sym__list_decimal_paren] = STATE(1008), + [sym__list_item_decimal_paren] = STATE(748), + [sym__list_decimal_parens] = STATE(1008), + [sym__list_item_decimal_parens] = STATE(768), + [sym__list_lower_alpha_period] = STATE(1008), + [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_lower_alpha_paren] = STATE(1008), + [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_lower_alpha_parens] = STATE(1008), + [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_upper_alpha_period] = STATE(1008), + [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_upper_alpha_paren] = STATE(1008), + [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_upper_alpha_parens] = STATE(1008), + [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_lower_roman_period] = STATE(1008), + [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_lower_roman_paren] = STATE(1008), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(1008), + [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_upper_roman_period] = STATE(1008), + [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_upper_roman_paren] = STATE(1008), + [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_upper_roman_parens] = STATE(1008), + [sym__list_item_upper_roman_parens] = STATE(819), + [sym_list_item_content] = STATE(757), + [sym_table] = STATE(1090), + [sym__table_row] = STATE(234), + [sym_table_header] = STATE(234), + [sym_table_separator] = STATE(234), + [sym_table_row] = STATE(234), + [sym_footnote] = STATE(1090), + [sym_footnote_marker_begin] = STATE(1136), + [sym_div] = STATE(1090), + [sym__div_marker_begin] = STATE(1018), + [sym_code_block] = STATE(1090), + [sym_raw_block] = STATE(1090), + [sym_thematic_break] = STATE(1090), + [sym_block_quote] = STATE(1090), + [sym__block_quote_prefix] = STATE(225), + [sym_link_reference_definition] = STATE(1090), + [sym_block_attribute] = STATE(1090), + [sym__paragraph] = STATE(1090), + [sym__paragraph_content] = STATE(724), + [sym__paragraph_inline_content] = STATE(837), + [sym__inline] = STATE(656), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(326), - [aux_sym__list_plus_repeat1] = STATE(329), - [aux_sym__list_star_repeat1] = STATE(330), - [aux_sym__list_task_repeat1] = STATE(298), - [aux_sym__list_definition_repeat1] = STATE(508), - [aux_sym__list_decimal_period_repeat1] = STATE(509), - [aux_sym__list_decimal_paren_repeat1] = STATE(510), - [aux_sym__list_decimal_parens_repeat1] = STATE(511), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(512), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(513), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(514), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(515), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(516), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(517), - [aux_sym__list_lower_roman_period_repeat1] = STATE(526), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(531), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(534), - [aux_sym__list_upper_roman_period_repeat1] = STATE(544), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(441), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(442), - [aux_sym_table_repeat1] = STATE(241), - [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__list_dash_repeat1] = STATE(318), + [aux_sym__list_plus_repeat1] = STATE(319), + [aux_sym__list_star_repeat1] = STATE(320), + [aux_sym__list_task_repeat1] = STATE(287), + [aux_sym__list_definition_repeat1] = STATE(459), + [aux_sym__list_decimal_period_repeat1] = STATE(460), + [aux_sym__list_decimal_paren_repeat1] = STATE(461), + [aux_sym__list_decimal_parens_repeat1] = STATE(462), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(463), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(464), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(465), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(466), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(467), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(468), + [aux_sym__list_lower_roman_period_repeat1] = STATE(469), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(470), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(471), + [aux_sym__list_upper_roman_period_repeat1] = STATE(472), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(473), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym_table_repeat1] = STATE(234), + [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(366), - [anon_sym_DOT] = ACTIONS(11), - [aux_sym_identifier_token1] = ACTIONS(11), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_PERCENT] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(9), + [aux_sym_identifier_token1] = ACTIONS(9), + [aux_sym__inline_token1] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(9), + [anon_sym_PERCENT] = ACTIONS(9), [sym__newline] = ACTIONS(426), - [sym__heading_begin] = ACTIONS(370), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(372), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(374), - [sym__block_quote_continuation] = ACTIONS(376), - [sym__thematic_break_dash] = ACTIONS(378), - [sym__thematic_break_star] = ACTIONS(378), - [sym__table_header_begin] = ACTIONS(380), - [sym__table_separator_begin] = ACTIONS(382), - [sym__table_row_begin] = ACTIONS(384), + [sym__heading_begin] = ACTIONS(368), + [sym__div_begin] = ACTIONS(17), + [sym__code_block_begin] = ACTIONS(370), + [sym_list_marker_dash] = ACTIONS(21), + [sym_list_marker_star] = ACTIONS(23), + [sym_list_marker_plus] = ACTIONS(25), + [sym__list_marker_task_begin] = ACTIONS(27), + [sym_list_marker_definition] = ACTIONS(29), + [sym_list_marker_decimal_period] = ACTIONS(31), + [sym_list_marker_lower_alpha_period] = ACTIONS(33), + [sym_list_marker_upper_alpha_period] = ACTIONS(35), + [sym_list_marker_lower_roman_period] = ACTIONS(37), + [sym_list_marker_upper_roman_period] = ACTIONS(39), + [sym_list_marker_decimal_paren] = ACTIONS(41), + [sym_list_marker_lower_alpha_paren] = ACTIONS(43), + [sym_list_marker_upper_alpha_paren] = ACTIONS(45), + [sym_list_marker_lower_roman_paren] = ACTIONS(47), + [sym_list_marker_upper_roman_paren] = ACTIONS(49), + [sym_list_marker_decimal_parens] = ACTIONS(51), + [sym_list_marker_lower_alpha_parens] = ACTIONS(53), + [sym_list_marker_upper_alpha_parens] = ACTIONS(55), + [sym_list_marker_lower_roman_parens] = ACTIONS(57), + [sym_list_marker_upper_roman_parens] = ACTIONS(59), + [sym__block_quote_begin] = ACTIONS(372), + [sym__block_quote_continuation] = ACTIONS(374), + [sym__thematic_break_dash] = ACTIONS(376), + [sym__thematic_break_star] = ACTIONS(376), + [sym__table_header_begin] = ACTIONS(378), + [sym__table_separator_begin] = ACTIONS(380), + [sym__table_row_begin] = ACTIONS(382), + [sym__block_attribute_begin] = ACTIONS(384), }, [47] = { - [sym__block_with_heading] = STATE(913), - [sym__block_element] = STATE(913), - [sym_heading] = STATE(913), - [sym_list] = STATE(913), - [sym__list_dash] = STATE(998), - [sym__list_item_dash] = STATE(553), - [sym__list_plus] = STATE(998), - [sym__list_item_plus] = STATE(554), - [sym__list_star] = STATE(998), - [sym__list_item_star] = STATE(556), - [sym__list_task] = STATE(998), - [sym__list_item_task] = STATE(558), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(998), - [sym__list_item_definition] = STATE(769), - [sym__list_decimal_period] = STATE(998), - [sym__list_item_decimal_period] = STATE(776), - [sym__list_decimal_paren] = STATE(998), - [sym__list_item_decimal_paren] = STATE(790), - [sym__list_decimal_parens] = STATE(998), - [sym__list_item_decimal_parens] = STATE(793), - [sym__list_lower_alpha_period] = STATE(998), - [sym__list_item_lower_alpha_period] = STATE(822), - [sym__list_lower_alpha_paren] = STATE(998), - [sym__list_item_lower_alpha_paren] = STATE(684), - [sym__list_lower_alpha_parens] = STATE(998), - [sym__list_item_lower_alpha_parens] = STATE(688), - [sym__list_upper_alpha_period] = STATE(998), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(998), - [sym__list_item_upper_alpha_paren] = STATE(705), - [sym__list_upper_alpha_parens] = STATE(998), - [sym__list_item_upper_alpha_parens] = STATE(711), - [sym__list_lower_roman_period] = STATE(998), - [sym__list_item_lower_roman_period] = STATE(712), - [sym__list_lower_roman_paren] = STATE(998), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(998), - [sym__list_item_lower_roman_parens] = STATE(728), - [sym__list_upper_roman_period] = STATE(998), - [sym__list_item_upper_roman_period] = STATE(734), - [sym__list_upper_roman_paren] = STATE(998), - [sym__list_item_upper_roman_paren] = STATE(830), - [sym__list_upper_roman_parens] = STATE(998), - [sym__list_item_upper_roman_parens] = STATE(725), - [sym_list_item_content] = STATE(598), - [sym_table] = STATE(913), - [sym__table_row] = STATE(241), - [sym_table_header] = STATE(241), - [sym_table_separator] = STATE(241), - [sym_table_row] = STATE(241), - [sym_footnote] = STATE(913), - [sym_footnote_marker_begin] = STATE(1137), - [sym_div] = STATE(913), - [sym__div_marker_begin] = STATE(1019), - [sym_code_block] = STATE(913), - [sym_raw_block] = STATE(913), - [sym_thematic_break] = STATE(913), - [sym_block_quote] = STATE(913), - [sym__block_quote_prefix] = STATE(223), - [sym_link_reference_definition] = STATE(913), - [sym_block_attribute] = STATE(913), - [sym__paragraph] = STATE(913), - [sym__paragraph_content] = STATE(707), - [sym__paragraph_inline_content] = STATE(778), - [sym__inline] = STATE(655), - [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(326), - [aux_sym__list_plus_repeat1] = STATE(329), - [aux_sym__list_star_repeat1] = STATE(330), - [aux_sym__list_task_repeat1] = STATE(298), - [aux_sym__list_definition_repeat1] = STATE(508), - [aux_sym__list_decimal_period_repeat1] = STATE(509), - [aux_sym__list_decimal_paren_repeat1] = STATE(510), - [aux_sym__list_decimal_parens_repeat1] = STATE(511), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(512), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(513), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(514), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(515), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(516), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(517), - [aux_sym__list_lower_roman_period_repeat1] = STATE(526), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(531), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(534), - [aux_sym__list_upper_roman_period_repeat1] = STATE(544), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(441), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(442), - [aux_sym_table_repeat1] = STATE(241), - [aux_sym__block_quote_prefix_repeat1] = STATE(234), - [aux_sym__inline_repeat1] = STATE(273), - [anon_sym_LBRACK] = ACTIONS(364), - [anon_sym_LBRACK_CARET] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(366), - [anon_sym_DOT] = ACTIONS(11), - [aux_sym_identifier_token1] = ACTIONS(11), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_PERCENT] = ACTIONS(11), - [sym__newline] = ACTIONS(394), - [sym__heading_begin] = ACTIONS(370), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(372), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(374), - [sym__block_quote_continuation] = ACTIONS(376), - [sym__thematic_break_dash] = ACTIONS(378), - [sym__thematic_break_star] = ACTIONS(378), - [sym__table_header_begin] = ACTIONS(380), - [sym__table_separator_begin] = ACTIONS(382), - [sym__table_row_begin] = ACTIONS(384), - }, - [48] = { [sym__block_with_heading] = STATE(1091), [sym__block_element] = STATE(1091), [sym_heading] = STATE(1091), [sym_list] = STATE(1091), - [sym__list_dash] = STATE(998), - [sym__list_item_dash] = STATE(553), - [sym__list_plus] = STATE(998), - [sym__list_item_plus] = STATE(554), - [sym__list_star] = STATE(998), - [sym__list_item_star] = STATE(556), - [sym__list_task] = STATE(998), - [sym__list_item_task] = STATE(558), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(998), - [sym__list_item_definition] = STATE(769), - [sym__list_decimal_period] = STATE(998), - [sym__list_item_decimal_period] = STATE(776), - [sym__list_decimal_paren] = STATE(998), - [sym__list_item_decimal_paren] = STATE(790), - [sym__list_decimal_parens] = STATE(998), - [sym__list_item_decimal_parens] = STATE(793), - [sym__list_lower_alpha_period] = STATE(998), - [sym__list_item_lower_alpha_period] = STATE(822), - [sym__list_lower_alpha_paren] = STATE(998), - [sym__list_item_lower_alpha_paren] = STATE(684), - [sym__list_lower_alpha_parens] = STATE(998), - [sym__list_item_lower_alpha_parens] = STATE(688), - [sym__list_upper_alpha_period] = STATE(998), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(998), - [sym__list_item_upper_alpha_paren] = STATE(705), - [sym__list_upper_alpha_parens] = STATE(998), - [sym__list_item_upper_alpha_parens] = STATE(711), - [sym__list_lower_roman_period] = STATE(998), - [sym__list_item_lower_roman_period] = STATE(712), - [sym__list_lower_roman_paren] = STATE(998), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(998), - [sym__list_item_lower_roman_parens] = STATE(728), - [sym__list_upper_roman_period] = STATE(998), - [sym__list_item_upper_roman_period] = STATE(734), - [sym__list_upper_roman_paren] = STATE(998), - [sym__list_item_upper_roman_paren] = STATE(830), - [sym__list_upper_roman_parens] = STATE(998), - [sym__list_item_upper_roman_parens] = STATE(725), - [sym_list_item_content] = STATE(706), + [sym__list_dash] = STATE(1008), + [sym__list_item_dash] = STATE(645), + [sym__list_plus] = STATE(1008), + [sym__list_item_plus] = STATE(661), + [sym__list_star] = STATE(1008), + [sym__list_item_star] = STATE(573), + [sym__list_task] = STATE(1008), + [sym__list_item_task] = STATE(590), + [sym_list_marker_task] = STATE(43), + [sym__list_definition] = STATE(1008), + [sym__list_item_definition] = STATE(740), + [sym__list_decimal_period] = STATE(1008), + [sym__list_item_decimal_period] = STATE(743), + [sym__list_decimal_paren] = STATE(1008), + [sym__list_item_decimal_paren] = STATE(748), + [sym__list_decimal_parens] = STATE(1008), + [sym__list_item_decimal_parens] = STATE(768), + [sym__list_lower_alpha_period] = STATE(1008), + [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_lower_alpha_paren] = STATE(1008), + [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_lower_alpha_parens] = STATE(1008), + [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_upper_alpha_period] = STATE(1008), + [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_upper_alpha_paren] = STATE(1008), + [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_upper_alpha_parens] = STATE(1008), + [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_lower_roman_period] = STATE(1008), + [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_lower_roman_paren] = STATE(1008), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(1008), + [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_upper_roman_period] = STATE(1008), + [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_upper_roman_paren] = STATE(1008), + [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_upper_roman_parens] = STATE(1008), + [sym__list_item_upper_roman_parens] = STATE(819), + [sym_list_item_content] = STATE(765), [sym_table] = STATE(1091), - [sym__table_row] = STATE(241), - [sym_table_header] = STATE(241), - [sym_table_separator] = STATE(241), - [sym_table_row] = STATE(241), + [sym__table_row] = STATE(234), + [sym_table_header] = STATE(234), + [sym_table_separator] = STATE(234), + [sym_table_row] = STATE(234), [sym_footnote] = STATE(1091), - [sym_footnote_marker_begin] = STATE(1137), + [sym_footnote_marker_begin] = STATE(1136), [sym_div] = STATE(1091), - [sym__div_marker_begin] = STATE(1019), + [sym__div_marker_begin] = STATE(1018), [sym_code_block] = STATE(1091), [sym_raw_block] = STATE(1091), [sym_thematic_break] = STATE(1091), [sym_block_quote] = STATE(1091), - [sym__block_quote_prefix] = STATE(223), + [sym__block_quote_prefix] = STATE(225), [sym_link_reference_definition] = STATE(1091), [sym_block_attribute] = STATE(1091), [sym__paragraph] = STATE(1091), - [sym__paragraph_content] = STATE(707), - [sym__paragraph_inline_content] = STATE(778), - [sym__inline] = STATE(655), + [sym__paragraph_content] = STATE(724), + [sym__paragraph_inline_content] = STATE(837), + [sym__inline] = STATE(656), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(326), - [aux_sym__list_plus_repeat1] = STATE(329), - [aux_sym__list_star_repeat1] = STATE(330), - [aux_sym__list_task_repeat1] = STATE(298), - [aux_sym__list_definition_repeat1] = STATE(508), - [aux_sym__list_decimal_period_repeat1] = STATE(509), - [aux_sym__list_decimal_paren_repeat1] = STATE(510), - [aux_sym__list_decimal_parens_repeat1] = STATE(511), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(512), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(513), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(514), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(515), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(516), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(517), - [aux_sym__list_lower_roman_period_repeat1] = STATE(526), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(531), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(534), - [aux_sym__list_upper_roman_period_repeat1] = STATE(544), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(441), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(442), - [aux_sym_table_repeat1] = STATE(241), - [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__list_dash_repeat1] = STATE(318), + [aux_sym__list_plus_repeat1] = STATE(319), + [aux_sym__list_star_repeat1] = STATE(320), + [aux_sym__list_task_repeat1] = STATE(287), + [aux_sym__list_definition_repeat1] = STATE(459), + [aux_sym__list_decimal_period_repeat1] = STATE(460), + [aux_sym__list_decimal_paren_repeat1] = STATE(461), + [aux_sym__list_decimal_parens_repeat1] = STATE(462), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(463), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(464), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(465), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(466), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(467), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(468), + [aux_sym__list_lower_roman_period_repeat1] = STATE(469), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(470), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(471), + [aux_sym__list_upper_roman_period_repeat1] = STATE(472), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(473), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym_table_repeat1] = STATE(234), + [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(366), - [anon_sym_DOT] = ACTIONS(11), - [aux_sym_identifier_token1] = ACTIONS(11), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_PERCENT] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(9), + [aux_sym_identifier_token1] = ACTIONS(9), + [aux_sym__inline_token1] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(9), + [anon_sym_PERCENT] = ACTIONS(9), [sym__newline] = ACTIONS(428), - [sym__heading_begin] = ACTIONS(370), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(372), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(374), - [sym__block_quote_continuation] = ACTIONS(376), - [sym__thematic_break_dash] = ACTIONS(378), - [sym__thematic_break_star] = ACTIONS(378), - [sym__table_header_begin] = ACTIONS(380), - [sym__table_separator_begin] = ACTIONS(382), - [sym__table_row_begin] = ACTIONS(384), + [sym__heading_begin] = ACTIONS(368), + [sym__div_begin] = ACTIONS(17), + [sym__code_block_begin] = ACTIONS(370), + [sym_list_marker_dash] = ACTIONS(21), + [sym_list_marker_star] = ACTIONS(23), + [sym_list_marker_plus] = ACTIONS(25), + [sym__list_marker_task_begin] = ACTIONS(27), + [sym_list_marker_definition] = ACTIONS(29), + [sym_list_marker_decimal_period] = ACTIONS(31), + [sym_list_marker_lower_alpha_period] = ACTIONS(33), + [sym_list_marker_upper_alpha_period] = ACTIONS(35), + [sym_list_marker_lower_roman_period] = ACTIONS(37), + [sym_list_marker_upper_roman_period] = ACTIONS(39), + [sym_list_marker_decimal_paren] = ACTIONS(41), + [sym_list_marker_lower_alpha_paren] = ACTIONS(43), + [sym_list_marker_upper_alpha_paren] = ACTIONS(45), + [sym_list_marker_lower_roman_paren] = ACTIONS(47), + [sym_list_marker_upper_roman_paren] = ACTIONS(49), + [sym_list_marker_decimal_parens] = ACTIONS(51), + [sym_list_marker_lower_alpha_parens] = ACTIONS(53), + [sym_list_marker_upper_alpha_parens] = ACTIONS(55), + [sym_list_marker_lower_roman_parens] = ACTIONS(57), + [sym_list_marker_upper_roman_parens] = ACTIONS(59), + [sym__block_quote_begin] = ACTIONS(372), + [sym__block_quote_continuation] = ACTIONS(374), + [sym__thematic_break_dash] = ACTIONS(376), + [sym__thematic_break_star] = ACTIONS(376), + [sym__table_header_begin] = ACTIONS(378), + [sym__table_separator_begin] = ACTIONS(380), + [sym__table_row_begin] = ACTIONS(382), + [sym__block_attribute_begin] = ACTIONS(384), }, - [49] = { - [sym__block_with_heading] = STATE(1093), - [sym__block_element] = STATE(1093), - [sym_heading] = STATE(1093), - [sym_list] = STATE(1093), - [sym__list_dash] = STATE(998), - [sym__list_item_dash] = STATE(553), - [sym__list_plus] = STATE(998), - [sym__list_item_plus] = STATE(554), - [sym__list_star] = STATE(998), - [sym__list_item_star] = STATE(556), - [sym__list_task] = STATE(998), - [sym__list_item_task] = STATE(558), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(998), - [sym__list_item_definition] = STATE(769), - [sym__list_decimal_period] = STATE(998), - [sym__list_item_decimal_period] = STATE(776), - [sym__list_decimal_paren] = STATE(998), - [sym__list_item_decimal_paren] = STATE(790), - [sym__list_decimal_parens] = STATE(998), - [sym__list_item_decimal_parens] = STATE(793), - [sym__list_lower_alpha_period] = STATE(998), - [sym__list_item_lower_alpha_period] = STATE(822), - [sym__list_lower_alpha_paren] = STATE(998), - [sym__list_item_lower_alpha_paren] = STATE(684), - [sym__list_lower_alpha_parens] = STATE(998), - [sym__list_item_lower_alpha_parens] = STATE(688), - [sym__list_upper_alpha_period] = STATE(998), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(998), - [sym__list_item_upper_alpha_paren] = STATE(705), - [sym__list_upper_alpha_parens] = STATE(998), - [sym__list_item_upper_alpha_parens] = STATE(711), - [sym__list_lower_roman_period] = STATE(998), - [sym__list_item_lower_roman_period] = STATE(712), - [sym__list_lower_roman_paren] = STATE(998), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(998), - [sym__list_item_lower_roman_parens] = STATE(728), - [sym__list_upper_roman_period] = STATE(998), - [sym__list_item_upper_roman_period] = STATE(734), - [sym__list_upper_roman_paren] = STATE(998), - [sym__list_item_upper_roman_paren] = STATE(830), - [sym__list_upper_roman_parens] = STATE(998), - [sym__list_item_upper_roman_parens] = STATE(725), - [sym_list_item_content] = STATE(709), - [sym_table] = STATE(1093), - [sym__table_row] = STATE(241), - [sym_table_header] = STATE(241), - [sym_table_separator] = STATE(241), - [sym_table_row] = STATE(241), - [sym_footnote] = STATE(1093), - [sym_footnote_marker_begin] = STATE(1137), - [sym_div] = STATE(1093), - [sym__div_marker_begin] = STATE(1019), - [sym_code_block] = STATE(1093), - [sym_raw_block] = STATE(1093), - [sym_thematic_break] = STATE(1093), - [sym_block_quote] = STATE(1093), - [sym__block_quote_prefix] = STATE(223), - [sym_link_reference_definition] = STATE(1093), - [sym_block_attribute] = STATE(1093), - [sym__paragraph] = STATE(1093), - [sym__paragraph_content] = STATE(707), - [sym__paragraph_inline_content] = STATE(778), - [sym__inline] = STATE(655), + [48] = { + [sym__block_with_heading] = STATE(1089), + [sym__block_element] = STATE(1089), + [sym_heading] = STATE(1089), + [sym_list] = STATE(1089), + [sym__list_dash] = STATE(1008), + [sym__list_item_dash] = STATE(645), + [sym__list_plus] = STATE(1008), + [sym__list_item_plus] = STATE(661), + [sym__list_star] = STATE(1008), + [sym__list_item_star] = STATE(573), + [sym__list_task] = STATE(1008), + [sym__list_item_task] = STATE(590), + [sym_list_marker_task] = STATE(43), + [sym__list_definition] = STATE(1008), + [sym__list_item_definition] = STATE(740), + [sym__list_decimal_period] = STATE(1008), + [sym__list_item_decimal_period] = STATE(743), + [sym__list_decimal_paren] = STATE(1008), + [sym__list_item_decimal_paren] = STATE(748), + [sym__list_decimal_parens] = STATE(1008), + [sym__list_item_decimal_parens] = STATE(768), + [sym__list_lower_alpha_period] = STATE(1008), + [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_lower_alpha_paren] = STATE(1008), + [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_lower_alpha_parens] = STATE(1008), + [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_upper_alpha_period] = STATE(1008), + [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_upper_alpha_paren] = STATE(1008), + [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_upper_alpha_parens] = STATE(1008), + [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_lower_roman_period] = STATE(1008), + [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_lower_roman_paren] = STATE(1008), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(1008), + [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_upper_roman_period] = STATE(1008), + [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_upper_roman_paren] = STATE(1008), + [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_upper_roman_parens] = STATE(1008), + [sym__list_item_upper_roman_parens] = STATE(819), + [sym_table] = STATE(1089), + [sym__table_row] = STATE(234), + [sym_table_header] = STATE(234), + [sym_table_separator] = STATE(234), + [sym_table_row] = STATE(234), + [sym_footnote] = STATE(1089), + [sym_footnote_marker_begin] = STATE(1136), + [sym_footnote_content] = STATE(669), + [sym_div] = STATE(1089), + [sym__div_marker_begin] = STATE(1018), + [sym_code_block] = STATE(1089), + [sym_raw_block] = STATE(1089), + [sym_thematic_break] = STATE(1089), + [sym_block_quote] = STATE(1089), + [sym__block_quote_prefix] = STATE(225), + [sym_link_reference_definition] = STATE(1089), + [sym_block_attribute] = STATE(1089), + [sym__paragraph] = STATE(1089), + [sym__paragraph_content] = STATE(724), + [sym__paragraph_inline_content] = STATE(837), + [sym__inline] = STATE(656), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(326), - [aux_sym__list_plus_repeat1] = STATE(329), - [aux_sym__list_star_repeat1] = STATE(330), - [aux_sym__list_task_repeat1] = STATE(298), - [aux_sym__list_definition_repeat1] = STATE(508), - [aux_sym__list_decimal_period_repeat1] = STATE(509), - [aux_sym__list_decimal_paren_repeat1] = STATE(510), - [aux_sym__list_decimal_parens_repeat1] = STATE(511), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(512), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(513), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(514), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(515), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(516), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(517), - [aux_sym__list_lower_roman_period_repeat1] = STATE(526), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(531), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(534), - [aux_sym__list_upper_roman_period_repeat1] = STATE(544), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(441), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(442), - [aux_sym_table_repeat1] = STATE(241), - [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__list_dash_repeat1] = STATE(318), + [aux_sym__list_plus_repeat1] = STATE(319), + [aux_sym__list_star_repeat1] = STATE(320), + [aux_sym__list_task_repeat1] = STATE(287), + [aux_sym__list_definition_repeat1] = STATE(459), + [aux_sym__list_decimal_period_repeat1] = STATE(460), + [aux_sym__list_decimal_paren_repeat1] = STATE(461), + [aux_sym__list_decimal_parens_repeat1] = STATE(462), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(463), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(464), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(465), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(466), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(467), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(468), + [aux_sym__list_lower_roman_period_repeat1] = STATE(469), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(470), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(471), + [aux_sym__list_upper_roman_period_repeat1] = STATE(472), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(473), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym_table_repeat1] = STATE(234), + [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(366), - [anon_sym_DOT] = ACTIONS(11), - [aux_sym_identifier_token1] = ACTIONS(11), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_PERCENT] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(9), + [aux_sym_identifier_token1] = ACTIONS(9), + [aux_sym__inline_token1] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(9), + [anon_sym_PERCENT] = ACTIONS(9), [sym__newline] = ACTIONS(430), - [sym__heading_begin] = ACTIONS(370), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(372), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(374), - [sym__block_quote_continuation] = ACTIONS(376), - [sym__thematic_break_dash] = ACTIONS(378), - [sym__thematic_break_star] = ACTIONS(378), - [sym__table_header_begin] = ACTIONS(380), - [sym__table_separator_begin] = ACTIONS(382), - [sym__table_row_begin] = ACTIONS(384), + [sym__heading_begin] = ACTIONS(368), + [sym__div_begin] = ACTIONS(17), + [sym__code_block_begin] = ACTIONS(370), + [sym_list_marker_dash] = ACTIONS(21), + [sym_list_marker_star] = ACTIONS(23), + [sym_list_marker_plus] = ACTIONS(25), + [sym__list_marker_task_begin] = ACTIONS(27), + [sym_list_marker_definition] = ACTIONS(29), + [sym_list_marker_decimal_period] = ACTIONS(31), + [sym_list_marker_lower_alpha_period] = ACTIONS(33), + [sym_list_marker_upper_alpha_period] = ACTIONS(35), + [sym_list_marker_lower_roman_period] = ACTIONS(37), + [sym_list_marker_upper_roman_period] = ACTIONS(39), + [sym_list_marker_decimal_paren] = ACTIONS(41), + [sym_list_marker_lower_alpha_paren] = ACTIONS(43), + [sym_list_marker_upper_alpha_paren] = ACTIONS(45), + [sym_list_marker_lower_roman_paren] = ACTIONS(47), + [sym_list_marker_upper_roman_paren] = ACTIONS(49), + [sym_list_marker_decimal_parens] = ACTIONS(51), + [sym_list_marker_lower_alpha_parens] = ACTIONS(53), + [sym_list_marker_upper_alpha_parens] = ACTIONS(55), + [sym_list_marker_lower_roman_parens] = ACTIONS(57), + [sym_list_marker_upper_roman_parens] = ACTIONS(59), + [sym__block_quote_begin] = ACTIONS(372), + [sym__block_quote_continuation] = ACTIONS(374), + [sym__thematic_break_dash] = ACTIONS(376), + [sym__thematic_break_star] = ACTIONS(376), + [sym__table_header_begin] = ACTIONS(378), + [sym__table_separator_begin] = ACTIONS(380), + [sym__table_row_begin] = ACTIONS(382), + [sym__block_attribute_begin] = ACTIONS(384), + }, + [49] = { + [sym__block_with_heading] = STATE(1020), + [sym__block_element] = STATE(1020), + [sym_heading] = STATE(1020), + [sym_list] = STATE(1020), + [sym__list_dash] = STATE(1008), + [sym__list_item_dash] = STATE(645), + [sym__list_plus] = STATE(1008), + [sym__list_item_plus] = STATE(661), + [sym__list_star] = STATE(1008), + [sym__list_item_star] = STATE(573), + [sym__list_task] = STATE(1008), + [sym__list_item_task] = STATE(590), + [sym_list_marker_task] = STATE(43), + [sym__list_definition] = STATE(1008), + [sym__list_item_definition] = STATE(740), + [sym__list_decimal_period] = STATE(1008), + [sym__list_item_decimal_period] = STATE(743), + [sym__list_decimal_paren] = STATE(1008), + [sym__list_item_decimal_paren] = STATE(748), + [sym__list_decimal_parens] = STATE(1008), + [sym__list_item_decimal_parens] = STATE(768), + [sym__list_lower_alpha_period] = STATE(1008), + [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_lower_alpha_paren] = STATE(1008), + [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_lower_alpha_parens] = STATE(1008), + [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_upper_alpha_period] = STATE(1008), + [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_upper_alpha_paren] = STATE(1008), + [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_upper_alpha_parens] = STATE(1008), + [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_lower_roman_period] = STATE(1008), + [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_lower_roman_paren] = STATE(1008), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(1008), + [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_upper_roman_period] = STATE(1008), + [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_upper_roman_paren] = STATE(1008), + [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_upper_roman_parens] = STATE(1008), + [sym__list_item_upper_roman_parens] = STATE(819), + [sym_list_item_content] = STATE(577), + [sym_table] = STATE(1020), + [sym__table_row] = STATE(234), + [sym_table_header] = STATE(234), + [sym_table_separator] = STATE(234), + [sym_table_row] = STATE(234), + [sym_footnote] = STATE(1020), + [sym_footnote_marker_begin] = STATE(1136), + [sym_div] = STATE(1020), + [sym__div_marker_begin] = STATE(1018), + [sym_code_block] = STATE(1020), + [sym_raw_block] = STATE(1020), + [sym_thematic_break] = STATE(1020), + [sym_block_quote] = STATE(1020), + [sym__block_quote_prefix] = STATE(225), + [sym_link_reference_definition] = STATE(1020), + [sym_block_attribute] = STATE(1020), + [sym__paragraph] = STATE(1020), + [sym__paragraph_content] = STATE(724), + [sym__paragraph_inline_content] = STATE(837), + [sym__inline] = STATE(656), + [sym__symbol_fallback] = STATE(273), + [aux_sym__list_dash_repeat1] = STATE(318), + [aux_sym__list_plus_repeat1] = STATE(319), + [aux_sym__list_star_repeat1] = STATE(320), + [aux_sym__list_task_repeat1] = STATE(287), + [aux_sym__list_definition_repeat1] = STATE(459), + [aux_sym__list_decimal_period_repeat1] = STATE(460), + [aux_sym__list_decimal_paren_repeat1] = STATE(461), + [aux_sym__list_decimal_parens_repeat1] = STATE(462), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(463), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(464), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(465), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(466), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(467), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(468), + [aux_sym__list_lower_roman_period_repeat1] = STATE(469), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(470), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(471), + [aux_sym__list_upper_roman_period_repeat1] = STATE(472), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(473), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym_table_repeat1] = STATE(234), + [aux_sym__block_quote_prefix_repeat1] = STATE(230), + [aux_sym__inline_repeat1] = STATE(273), + [anon_sym_LBRACK] = ACTIONS(364), + [anon_sym_LBRACK_CARET] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(9), + [aux_sym_identifier_token1] = ACTIONS(9), + [aux_sym__inline_token1] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(9), + [anon_sym_PERCENT] = ACTIONS(9), + [sym__newline] = ACTIONS(392), + [sym__heading_begin] = ACTIONS(368), + [sym__div_begin] = ACTIONS(17), + [sym__code_block_begin] = ACTIONS(370), + [sym_list_marker_dash] = ACTIONS(21), + [sym_list_marker_star] = ACTIONS(23), + [sym_list_marker_plus] = ACTIONS(25), + [sym__list_marker_task_begin] = ACTIONS(27), + [sym_list_marker_definition] = ACTIONS(29), + [sym_list_marker_decimal_period] = ACTIONS(31), + [sym_list_marker_lower_alpha_period] = ACTIONS(33), + [sym_list_marker_upper_alpha_period] = ACTIONS(35), + [sym_list_marker_lower_roman_period] = ACTIONS(37), + [sym_list_marker_upper_roman_period] = ACTIONS(39), + [sym_list_marker_decimal_paren] = ACTIONS(41), + [sym_list_marker_lower_alpha_paren] = ACTIONS(43), + [sym_list_marker_upper_alpha_paren] = ACTIONS(45), + [sym_list_marker_lower_roman_paren] = ACTIONS(47), + [sym_list_marker_upper_roman_paren] = ACTIONS(49), + [sym_list_marker_decimal_parens] = ACTIONS(51), + [sym_list_marker_lower_alpha_parens] = ACTIONS(53), + [sym_list_marker_upper_alpha_parens] = ACTIONS(55), + [sym_list_marker_lower_roman_parens] = ACTIONS(57), + [sym_list_marker_upper_roman_parens] = ACTIONS(59), + [sym__block_quote_begin] = ACTIONS(372), + [sym__block_quote_continuation] = ACTIONS(374), + [sym__thematic_break_dash] = ACTIONS(376), + [sym__thematic_break_star] = ACTIONS(376), + [sym__table_header_begin] = ACTIONS(378), + [sym__table_separator_begin] = ACTIONS(380), + [sym__table_row_begin] = ACTIONS(382), + [sym__block_attribute_begin] = ACTIONS(384), }, [50] = { - [sym__block_with_heading] = STATE(629), - [sym__block_element] = STATE(629), - [sym_heading] = STATE(629), - [sym_list] = STATE(629), - [sym__list_dash] = STATE(566), - [sym__list_item_dash] = STATE(553), - [sym__list_plus] = STATE(566), - [sym__list_item_plus] = STATE(554), - [sym__list_star] = STATE(566), - [sym__list_item_star] = STATE(556), - [sym__list_task] = STATE(566), - [sym__list_item_task] = STATE(558), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(566), - [sym__list_item_definition] = STATE(769), - [sym__list_decimal_period] = STATE(566), - [sym__list_item_decimal_period] = STATE(776), - [sym__list_decimal_paren] = STATE(566), - [sym__list_item_decimal_paren] = STATE(790), - [sym__list_decimal_parens] = STATE(566), - [sym__list_item_decimal_parens] = STATE(793), - [sym__list_lower_alpha_period] = STATE(566), - [sym__list_item_lower_alpha_period] = STATE(822), - [sym__list_lower_alpha_paren] = STATE(566), - [sym__list_item_lower_alpha_paren] = STATE(684), - [sym__list_lower_alpha_parens] = STATE(566), - [sym__list_item_lower_alpha_parens] = STATE(688), - [sym__list_upper_alpha_period] = STATE(566), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(566), - [sym__list_item_upper_alpha_paren] = STATE(705), - [sym__list_upper_alpha_parens] = STATE(566), - [sym__list_item_upper_alpha_parens] = STATE(711), - [sym__list_lower_roman_period] = STATE(566), - [sym__list_item_lower_roman_period] = STATE(712), - [sym__list_lower_roman_paren] = STATE(566), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(566), - [sym__list_item_lower_roman_parens] = STATE(728), - [sym__list_upper_roman_period] = STATE(566), - [sym__list_item_upper_roman_period] = STATE(734), - [sym__list_upper_roman_paren] = STATE(566), - [sym__list_item_upper_roman_paren] = STATE(830), - [sym__list_upper_roman_parens] = STATE(566), - [sym__list_item_upper_roman_parens] = STATE(725), - [sym_table] = STATE(629), - [sym__table_row] = STATE(236), - [sym_table_header] = STATE(236), - [sym_table_separator] = STATE(236), - [sym_table_row] = STATE(236), - [sym_footnote] = STATE(629), - [sym_footnote_marker_begin] = STATE(1143), - [sym_div] = STATE(629), - [sym__div_marker_begin] = STATE(1075), - [sym_code_block] = STATE(629), - [sym_raw_block] = STATE(629), - [sym_thematic_break] = STATE(629), - [sym_block_quote] = STATE(629), + [sym__block_with_heading] = STATE(633), + [sym__block_element] = STATE(633), + [sym_heading] = STATE(633), + [sym_list] = STATE(633), + [sym__list_dash] = STATE(601), + [sym__list_item_dash] = STATE(645), + [sym__list_plus] = STATE(601), + [sym__list_item_plus] = STATE(661), + [sym__list_star] = STATE(601), + [sym__list_item_star] = STATE(573), + [sym__list_task] = STATE(601), + [sym__list_item_task] = STATE(590), + [sym_list_marker_task] = STATE(43), + [sym__list_definition] = STATE(601), + [sym__list_item_definition] = STATE(740), + [sym__list_decimal_period] = STATE(601), + [sym__list_item_decimal_period] = STATE(743), + [sym__list_decimal_paren] = STATE(601), + [sym__list_item_decimal_paren] = STATE(748), + [sym__list_decimal_parens] = STATE(601), + [sym__list_item_decimal_parens] = STATE(768), + [sym__list_lower_alpha_period] = STATE(601), + [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_lower_alpha_paren] = STATE(601), + [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_lower_alpha_parens] = STATE(601), + [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_upper_alpha_period] = STATE(601), + [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_upper_alpha_paren] = STATE(601), + [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_upper_alpha_parens] = STATE(601), + [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_lower_roman_period] = STATE(601), + [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_lower_roman_paren] = STATE(601), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(601), + [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_upper_roman_period] = STATE(601), + [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_upper_roman_paren] = STATE(601), + [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_upper_roman_parens] = STATE(601), + [sym__list_item_upper_roman_parens] = STATE(819), + [sym_table] = STATE(633), + [sym__table_row] = STATE(229), + [sym_table_header] = STATE(229), + [sym_table_separator] = STATE(229), + [sym_table_row] = STATE(229), + [sym_footnote] = STATE(633), + [sym_footnote_marker_begin] = STATE(1142), + [sym_div] = STATE(633), + [sym__div_marker_begin] = STATE(1074), + [sym_code_block] = STATE(633), + [sym_raw_block] = STATE(633), + [sym_thematic_break] = STATE(633), + [sym_block_quote] = STATE(633), [sym__block_quote_prefix] = STATE(224), - [sym_link_reference_definition] = STATE(629), - [sym_block_attribute] = STATE(629), - [sym__paragraph] = STATE(629), - [sym__paragraph_content] = STATE(779), - [sym__paragraph_inline_content] = STATE(778), - [sym__inline] = STATE(655), + [sym_link_reference_definition] = STATE(633), + [sym_block_attribute] = STATE(633), + [sym__paragraph] = STATE(633), + [sym__paragraph_content] = STATE(816), + [sym__paragraph_inline_content] = STATE(837), + [sym__inline] = STATE(656), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(342), - [aux_sym__list_plus_repeat1] = STATE(343), - [aux_sym__list_star_repeat1] = STATE(344), - [aux_sym__list_task_repeat1] = STATE(313), - [aux_sym__list_definition_repeat1] = STATE(460), - [aux_sym__list_decimal_period_repeat1] = STATE(461), - [aux_sym__list_decimal_paren_repeat1] = STATE(462), - [aux_sym__list_decimal_parens_repeat1] = STATE(463), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(464), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(465), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(466), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(467), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(468), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(469), - [aux_sym__list_lower_roman_period_repeat1] = STATE(470), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(471), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(472), - [aux_sym__list_upper_roman_period_repeat1] = STATE(473), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(474), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(475), - [aux_sym_table_repeat1] = STATE(236), - [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__list_dash_repeat1] = STATE(328), + [aux_sym__list_plus_repeat1] = STATE(329), + [aux_sym__list_star_repeat1] = STATE(330), + [aux_sym__list_task_repeat1] = STATE(302), + [aux_sym__list_definition_repeat1] = STATE(510), + [aux_sym__list_decimal_period_repeat1] = STATE(511), + [aux_sym__list_decimal_paren_repeat1] = STATE(512), + [aux_sym__list_decimal_parens_repeat1] = STATE(513), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(514), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(515), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(516), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(517), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(518), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(519), + [aux_sym__list_lower_roman_period_repeat1] = STATE(520), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(521), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(522), + [aux_sym__list_upper_roman_period_repeat1] = STATE(523), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(524), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(525), + [aux_sym_table_repeat1] = STATE(229), + [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), [anon_sym_LBRACK] = ACTIONS(432), [anon_sym_LBRACK_CARET] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_DOT] = ACTIONS(11), - [aux_sym_identifier_token1] = ACTIONS(11), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_PERCENT] = ACTIONS(11), - [sym__newline] = ACTIONS(436), - [sym__heading_begin] = ACTIONS(438), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(440), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(442), - [sym__block_quote_continuation] = ACTIONS(444), - [sym__thematic_break_dash] = ACTIONS(446), - [sym__thematic_break_star] = ACTIONS(446), - [sym__table_header_begin] = ACTIONS(448), - [sym__table_separator_begin] = ACTIONS(450), - [sym__table_row_begin] = ACTIONS(452), + [anon_sym_DOT] = ACTIONS(9), + [aux_sym_identifier_token1] = ACTIONS(9), + [aux_sym__inline_token1] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(9), + [anon_sym_PERCENT] = ACTIONS(9), + [sym__newline] = ACTIONS(434), + [sym__heading_begin] = ACTIONS(436), + [sym__div_begin] = ACTIONS(17), + [sym__code_block_begin] = ACTIONS(438), + [sym_list_marker_dash] = ACTIONS(21), + [sym_list_marker_star] = ACTIONS(23), + [sym_list_marker_plus] = ACTIONS(25), + [sym__list_marker_task_begin] = ACTIONS(27), + [sym_list_marker_definition] = ACTIONS(29), + [sym_list_marker_decimal_period] = ACTIONS(31), + [sym_list_marker_lower_alpha_period] = ACTIONS(33), + [sym_list_marker_upper_alpha_period] = ACTIONS(35), + [sym_list_marker_lower_roman_period] = ACTIONS(37), + [sym_list_marker_upper_roman_period] = ACTIONS(39), + [sym_list_marker_decimal_paren] = ACTIONS(41), + [sym_list_marker_lower_alpha_paren] = ACTIONS(43), + [sym_list_marker_upper_alpha_paren] = ACTIONS(45), + [sym_list_marker_lower_roman_paren] = ACTIONS(47), + [sym_list_marker_upper_roman_paren] = ACTIONS(49), + [sym_list_marker_decimal_parens] = ACTIONS(51), + [sym_list_marker_lower_alpha_parens] = ACTIONS(53), + [sym_list_marker_upper_alpha_parens] = ACTIONS(55), + [sym_list_marker_lower_roman_parens] = ACTIONS(57), + [sym_list_marker_upper_roman_parens] = ACTIONS(59), + [sym__block_quote_begin] = ACTIONS(440), + [sym__block_quote_continuation] = ACTIONS(442), + [sym__thematic_break_dash] = ACTIONS(444), + [sym__thematic_break_star] = ACTIONS(444), + [sym__table_header_begin] = ACTIONS(446), + [sym__table_separator_begin] = ACTIONS(448), + [sym__table_row_begin] = ACTIONS(450), + [sym__block_attribute_begin] = ACTIONS(452), }, [51] = { - [sym__block_with_heading] = STATE(1078), - [sym__block_element] = STATE(1078), - [sym_heading] = STATE(1078), - [sym_list] = STATE(1078), - [sym__list_dash] = STATE(998), - [sym__list_item_dash] = STATE(553), - [sym__list_plus] = STATE(998), - [sym__list_item_plus] = STATE(554), - [sym__list_star] = STATE(998), - [sym__list_item_star] = STATE(556), - [sym__list_task] = STATE(998), - [sym__list_item_task] = STATE(558), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(998), - [sym__list_item_definition] = STATE(769), - [sym__list_decimal_period] = STATE(998), - [sym__list_item_decimal_period] = STATE(776), - [sym__list_decimal_paren] = STATE(998), - [sym__list_item_decimal_paren] = STATE(790), - [sym__list_decimal_parens] = STATE(998), - [sym__list_item_decimal_parens] = STATE(793), - [sym__list_lower_alpha_period] = STATE(998), - [sym__list_item_lower_alpha_period] = STATE(822), - [sym__list_lower_alpha_paren] = STATE(998), - [sym__list_item_lower_alpha_paren] = STATE(684), - [sym__list_lower_alpha_parens] = STATE(998), - [sym__list_item_lower_alpha_parens] = STATE(688), - [sym__list_upper_alpha_period] = STATE(998), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(998), - [sym__list_item_upper_alpha_paren] = STATE(705), - [sym__list_upper_alpha_parens] = STATE(998), - [sym__list_item_upper_alpha_parens] = STATE(711), - [sym__list_lower_roman_period] = STATE(998), - [sym__list_item_lower_roman_period] = STATE(712), - [sym__list_lower_roman_paren] = STATE(998), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(998), - [sym__list_item_lower_roman_parens] = STATE(728), - [sym__list_upper_roman_period] = STATE(998), - [sym__list_item_upper_roman_period] = STATE(734), - [sym__list_upper_roman_paren] = STATE(998), - [sym__list_item_upper_roman_paren] = STATE(830), - [sym__list_upper_roman_parens] = STATE(998), - [sym__list_item_upper_roman_parens] = STATE(725), - [sym_table] = STATE(1078), - [sym__table_row] = STATE(241), - [sym_table_header] = STATE(241), - [sym_table_separator] = STATE(241), - [sym_table_row] = STATE(241), - [sym_footnote] = STATE(1078), - [sym_footnote_marker_begin] = STATE(1137), - [sym_div] = STATE(1078), - [sym__div_marker_begin] = STATE(1019), - [sym_code_block] = STATE(1078), - [sym_raw_block] = STATE(1078), - [sym_thematic_break] = STATE(1078), - [sym_block_quote] = STATE(1078), - [sym__block_quote_prefix] = STATE(223), - [sym_link_reference_definition] = STATE(1078), - [sym_block_attribute] = STATE(1078), - [sym__paragraph] = STATE(1078), - [sym__paragraph_content] = STATE(707), - [sym__paragraph_inline_content] = STATE(778), - [sym__inline] = STATE(655), + [sym__block_with_heading] = STATE(609), + [sym__block_element] = STATE(609), + [sym_heading] = STATE(609), + [sym_list] = STATE(609), + [sym__list_dash] = STATE(601), + [sym__list_item_dash] = STATE(645), + [sym__list_plus] = STATE(601), + [sym__list_item_plus] = STATE(661), + [sym__list_star] = STATE(601), + [sym__list_item_star] = STATE(573), + [sym__list_task] = STATE(601), + [sym__list_item_task] = STATE(590), + [sym_list_marker_task] = STATE(43), + [sym__list_definition] = STATE(601), + [sym__list_item_definition] = STATE(740), + [sym__list_decimal_period] = STATE(601), + [sym__list_item_decimal_period] = STATE(743), + [sym__list_decimal_paren] = STATE(601), + [sym__list_item_decimal_paren] = STATE(748), + [sym__list_decimal_parens] = STATE(601), + [sym__list_item_decimal_parens] = STATE(768), + [sym__list_lower_alpha_period] = STATE(601), + [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_lower_alpha_paren] = STATE(601), + [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_lower_alpha_parens] = STATE(601), + [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_upper_alpha_period] = STATE(601), + [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_upper_alpha_paren] = STATE(601), + [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_upper_alpha_parens] = STATE(601), + [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_lower_roman_period] = STATE(601), + [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_lower_roman_paren] = STATE(601), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(601), + [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_upper_roman_period] = STATE(601), + [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_upper_roman_paren] = STATE(601), + [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_upper_roman_parens] = STATE(601), + [sym__list_item_upper_roman_parens] = STATE(819), + [sym_table] = STATE(609), + [sym__table_row] = STATE(229), + [sym_table_header] = STATE(229), + [sym_table_separator] = STATE(229), + [sym_table_row] = STATE(229), + [sym_footnote] = STATE(609), + [sym_footnote_marker_begin] = STATE(1142), + [sym_div] = STATE(609), + [sym__div_marker_begin] = STATE(1074), + [sym_code_block] = STATE(609), + [sym_raw_block] = STATE(609), + [sym_thematic_break] = STATE(609), + [sym_block_quote] = STATE(609), + [sym__block_quote_prefix] = STATE(224), + [sym_link_reference_definition] = STATE(609), + [sym_block_attribute] = STATE(609), + [sym__paragraph] = STATE(609), + [sym__paragraph_content] = STATE(816), + [sym__paragraph_inline_content] = STATE(837), + [sym__inline] = STATE(656), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(326), + [aux_sym__list_dash_repeat1] = STATE(328), [aux_sym__list_plus_repeat1] = STATE(329), [aux_sym__list_star_repeat1] = STATE(330), - [aux_sym__list_task_repeat1] = STATE(298), - [aux_sym__list_definition_repeat1] = STATE(508), - [aux_sym__list_decimal_period_repeat1] = STATE(509), - [aux_sym__list_decimal_paren_repeat1] = STATE(510), - [aux_sym__list_decimal_parens_repeat1] = STATE(511), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(512), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(513), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(514), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(515), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(516), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(517), - [aux_sym__list_lower_roman_period_repeat1] = STATE(526), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(531), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(534), - [aux_sym__list_upper_roman_period_repeat1] = STATE(544), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(441), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(442), - [aux_sym_table_repeat1] = STATE(241), - [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__list_task_repeat1] = STATE(302), + [aux_sym__list_definition_repeat1] = STATE(510), + [aux_sym__list_decimal_period_repeat1] = STATE(511), + [aux_sym__list_decimal_paren_repeat1] = STATE(512), + [aux_sym__list_decimal_parens_repeat1] = STATE(513), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(514), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(515), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(516), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(517), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(518), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(519), + [aux_sym__list_lower_roman_period_repeat1] = STATE(520), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(521), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(522), + [aux_sym__list_upper_roman_period_repeat1] = STATE(523), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(524), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(525), + [aux_sym_table_repeat1] = STATE(229), + [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), - [anon_sym_LBRACK] = ACTIONS(364), + [anon_sym_LBRACK] = ACTIONS(432), [anon_sym_LBRACK_CARET] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(366), - [anon_sym_DOT] = ACTIONS(11), - [aux_sym_identifier_token1] = ACTIONS(11), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_PERCENT] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(9), + [aux_sym_identifier_token1] = ACTIONS(9), + [aux_sym__inline_token1] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(9), + [anon_sym_PERCENT] = ACTIONS(9), [sym__newline] = ACTIONS(454), - [sym__heading_begin] = ACTIONS(370), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(372), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(374), - [sym__block_quote_continuation] = ACTIONS(376), - [sym__thematic_break_dash] = ACTIONS(378), - [sym__thematic_break_star] = ACTIONS(378), - [sym__table_header_begin] = ACTIONS(380), - [sym__table_separator_begin] = ACTIONS(382), - [sym__table_row_begin] = ACTIONS(384), + [sym__heading_begin] = ACTIONS(436), + [sym__div_begin] = ACTIONS(17), + [sym__code_block_begin] = ACTIONS(438), + [sym_list_marker_dash] = ACTIONS(21), + [sym_list_marker_star] = ACTIONS(23), + [sym_list_marker_plus] = ACTIONS(25), + [sym__list_marker_task_begin] = ACTIONS(27), + [sym_list_marker_definition] = ACTIONS(29), + [sym_list_marker_decimal_period] = ACTIONS(31), + [sym_list_marker_lower_alpha_period] = ACTIONS(33), + [sym_list_marker_upper_alpha_period] = ACTIONS(35), + [sym_list_marker_lower_roman_period] = ACTIONS(37), + [sym_list_marker_upper_roman_period] = ACTIONS(39), + [sym_list_marker_decimal_paren] = ACTIONS(41), + [sym_list_marker_lower_alpha_paren] = ACTIONS(43), + [sym_list_marker_upper_alpha_paren] = ACTIONS(45), + [sym_list_marker_lower_roman_paren] = ACTIONS(47), + [sym_list_marker_upper_roman_paren] = ACTIONS(49), + [sym_list_marker_decimal_parens] = ACTIONS(51), + [sym_list_marker_lower_alpha_parens] = ACTIONS(53), + [sym_list_marker_upper_alpha_parens] = ACTIONS(55), + [sym_list_marker_lower_roman_parens] = ACTIONS(57), + [sym_list_marker_upper_roman_parens] = ACTIONS(59), + [sym__block_quote_begin] = ACTIONS(440), + [sym__block_quote_continuation] = ACTIONS(442), + [sym__thematic_break_dash] = ACTIONS(444), + [sym__thematic_break_star] = ACTIONS(444), + [sym__table_header_begin] = ACTIONS(446), + [sym__table_separator_begin] = ACTIONS(448), + [sym__table_row_begin] = ACTIONS(450), + [sym__block_attribute_begin] = ACTIONS(452), }, [52] = { - [sym__block_with_heading] = STATE(987), - [sym__block_element] = STATE(987), - [sym_heading] = STATE(987), - [sym_list] = STATE(987), - [sym__list_dash] = STATE(998), - [sym__list_item_dash] = STATE(553), - [sym__list_plus] = STATE(998), - [sym__list_item_plus] = STATE(554), - [sym__list_star] = STATE(998), - [sym__list_item_star] = STATE(556), - [sym__list_task] = STATE(998), - [sym__list_item_task] = STATE(558), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(998), - [sym__list_item_definition] = STATE(769), - [sym__list_decimal_period] = STATE(998), - [sym__list_item_decimal_period] = STATE(776), - [sym__list_decimal_paren] = STATE(998), - [sym__list_item_decimal_paren] = STATE(790), - [sym__list_decimal_parens] = STATE(998), - [sym__list_item_decimal_parens] = STATE(793), - [sym__list_lower_alpha_period] = STATE(998), - [sym__list_item_lower_alpha_period] = STATE(822), - [sym__list_lower_alpha_paren] = STATE(998), - [sym__list_item_lower_alpha_paren] = STATE(684), - [sym__list_lower_alpha_parens] = STATE(998), - [sym__list_item_lower_alpha_parens] = STATE(688), - [sym__list_upper_alpha_period] = STATE(998), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(998), - [sym__list_item_upper_alpha_paren] = STATE(705), - [sym__list_upper_alpha_parens] = STATE(998), - [sym__list_item_upper_alpha_parens] = STATE(711), - [sym__list_lower_roman_period] = STATE(998), - [sym__list_item_lower_roman_period] = STATE(712), - [sym__list_lower_roman_paren] = STATE(998), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(998), - [sym__list_item_lower_roman_parens] = STATE(728), - [sym__list_upper_roman_period] = STATE(998), - [sym__list_item_upper_roman_period] = STATE(734), - [sym__list_upper_roman_paren] = STATE(998), - [sym__list_item_upper_roman_paren] = STATE(830), - [sym__list_upper_roman_parens] = STATE(998), - [sym__list_item_upper_roman_parens] = STATE(725), - [sym_table] = STATE(987), - [sym__table_row] = STATE(241), - [sym_table_header] = STATE(241), - [sym_table_separator] = STATE(241), - [sym_table_row] = STATE(241), - [sym_footnote] = STATE(987), - [sym_footnote_marker_begin] = STATE(1137), - [sym_div] = STATE(987), - [sym__div_marker_begin] = STATE(1019), - [sym_code_block] = STATE(987), - [sym_raw_block] = STATE(987), - [sym_thematic_break] = STATE(987), - [sym_block_quote] = STATE(987), - [sym__block_quote_prefix] = STATE(223), - [sym_link_reference_definition] = STATE(987), - [sym_block_attribute] = STATE(987), - [sym__paragraph] = STATE(987), - [sym__paragraph_content] = STATE(707), - [sym__paragraph_inline_content] = STATE(778), - [sym__inline] = STATE(655), + [sym__block_with_heading] = STATE(998), + [sym__block_element] = STATE(998), + [sym_heading] = STATE(998), + [sym_list] = STATE(998), + [sym__list_dash] = STATE(1008), + [sym__list_item_dash] = STATE(645), + [sym__list_plus] = STATE(1008), + [sym__list_item_plus] = STATE(661), + [sym__list_star] = STATE(1008), + [sym__list_item_star] = STATE(573), + [sym__list_task] = STATE(1008), + [sym__list_item_task] = STATE(590), + [sym_list_marker_task] = STATE(43), + [sym__list_definition] = STATE(1008), + [sym__list_item_definition] = STATE(740), + [sym__list_decimal_period] = STATE(1008), + [sym__list_item_decimal_period] = STATE(743), + [sym__list_decimal_paren] = STATE(1008), + [sym__list_item_decimal_paren] = STATE(748), + [sym__list_decimal_parens] = STATE(1008), + [sym__list_item_decimal_parens] = STATE(768), + [sym__list_lower_alpha_period] = STATE(1008), + [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_lower_alpha_paren] = STATE(1008), + [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_lower_alpha_parens] = STATE(1008), + [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_upper_alpha_period] = STATE(1008), + [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_upper_alpha_paren] = STATE(1008), + [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_upper_alpha_parens] = STATE(1008), + [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_lower_roman_period] = STATE(1008), + [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_lower_roman_paren] = STATE(1008), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(1008), + [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_upper_roman_period] = STATE(1008), + [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_upper_roman_paren] = STATE(1008), + [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_upper_roman_parens] = STATE(1008), + [sym__list_item_upper_roman_parens] = STATE(819), + [sym_table] = STATE(998), + [sym__table_row] = STATE(234), + [sym_table_header] = STATE(234), + [sym_table_separator] = STATE(234), + [sym_table_row] = STATE(234), + [sym_footnote] = STATE(998), + [sym_footnote_marker_begin] = STATE(1136), + [sym_div] = STATE(998), + [sym__div_marker_begin] = STATE(1018), + [sym_code_block] = STATE(998), + [sym_raw_block] = STATE(998), + [sym_thematic_break] = STATE(998), + [sym_block_quote] = STATE(998), + [sym__block_quote_prefix] = STATE(225), + [sym_link_reference_definition] = STATE(998), + [sym_block_attribute] = STATE(998), + [sym__paragraph] = STATE(998), + [sym__paragraph_content] = STATE(724), + [sym__paragraph_inline_content] = STATE(837), + [sym__inline] = STATE(656), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(326), - [aux_sym__list_plus_repeat1] = STATE(329), - [aux_sym__list_star_repeat1] = STATE(330), - [aux_sym__list_task_repeat1] = STATE(298), - [aux_sym__list_definition_repeat1] = STATE(508), - [aux_sym__list_decimal_period_repeat1] = STATE(509), - [aux_sym__list_decimal_paren_repeat1] = STATE(510), - [aux_sym__list_decimal_parens_repeat1] = STATE(511), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(512), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(513), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(514), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(515), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(516), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(517), - [aux_sym__list_lower_roman_period_repeat1] = STATE(526), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(531), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(534), - [aux_sym__list_upper_roman_period_repeat1] = STATE(544), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(441), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(442), - [aux_sym_table_repeat1] = STATE(241), - [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__list_dash_repeat1] = STATE(318), + [aux_sym__list_plus_repeat1] = STATE(319), + [aux_sym__list_star_repeat1] = STATE(320), + [aux_sym__list_task_repeat1] = STATE(287), + [aux_sym__list_definition_repeat1] = STATE(459), + [aux_sym__list_decimal_period_repeat1] = STATE(460), + [aux_sym__list_decimal_paren_repeat1] = STATE(461), + [aux_sym__list_decimal_parens_repeat1] = STATE(462), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(463), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(464), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(465), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(466), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(467), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(468), + [aux_sym__list_lower_roman_period_repeat1] = STATE(469), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(470), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(471), + [aux_sym__list_upper_roman_period_repeat1] = STATE(472), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(473), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym_table_repeat1] = STATE(234), + [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(366), - [anon_sym_DOT] = ACTIONS(11), - [aux_sym_identifier_token1] = ACTIONS(11), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_PERCENT] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(9), + [aux_sym_identifier_token1] = ACTIONS(9), + [aux_sym__inline_token1] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(9), + [anon_sym_PERCENT] = ACTIONS(9), [sym__newline] = ACTIONS(456), - [sym__heading_begin] = ACTIONS(370), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(372), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(374), - [sym__block_quote_continuation] = ACTIONS(376), - [sym__thematic_break_dash] = ACTIONS(378), - [sym__thematic_break_star] = ACTIONS(378), - [sym__table_header_begin] = ACTIONS(380), - [sym__table_separator_begin] = ACTIONS(382), - [sym__table_row_begin] = ACTIONS(384), + [sym__heading_begin] = ACTIONS(368), + [sym__div_begin] = ACTIONS(17), + [sym__code_block_begin] = ACTIONS(370), + [sym_list_marker_dash] = ACTIONS(21), + [sym_list_marker_star] = ACTIONS(23), + [sym_list_marker_plus] = ACTIONS(25), + [sym__list_marker_task_begin] = ACTIONS(27), + [sym_list_marker_definition] = ACTIONS(29), + [sym_list_marker_decimal_period] = ACTIONS(31), + [sym_list_marker_lower_alpha_period] = ACTIONS(33), + [sym_list_marker_upper_alpha_period] = ACTIONS(35), + [sym_list_marker_lower_roman_period] = ACTIONS(37), + [sym_list_marker_upper_roman_period] = ACTIONS(39), + [sym_list_marker_decimal_paren] = ACTIONS(41), + [sym_list_marker_lower_alpha_paren] = ACTIONS(43), + [sym_list_marker_upper_alpha_paren] = ACTIONS(45), + [sym_list_marker_lower_roman_paren] = ACTIONS(47), + [sym_list_marker_upper_roman_paren] = ACTIONS(49), + [sym_list_marker_decimal_parens] = ACTIONS(51), + [sym_list_marker_lower_alpha_parens] = ACTIONS(53), + [sym_list_marker_upper_alpha_parens] = ACTIONS(55), + [sym_list_marker_lower_roman_parens] = ACTIONS(57), + [sym_list_marker_upper_roman_parens] = ACTIONS(59), + [sym__block_quote_begin] = ACTIONS(372), + [sym__block_quote_continuation] = ACTIONS(374), + [sym__thematic_break_dash] = ACTIONS(376), + [sym__thematic_break_star] = ACTIONS(376), + [sym__table_header_begin] = ACTIONS(378), + [sym__table_separator_begin] = ACTIONS(380), + [sym__table_row_begin] = ACTIONS(382), + [sym__block_attribute_begin] = ACTIONS(384), }, [53] = { - [sym__block_element] = STATE(141), - [sym_heading] = STATE(141), - [sym_list] = STATE(141), - [sym__list_dash] = STATE(144), - [sym__list_item_dash] = STATE(553), - [sym__list_plus] = STATE(144), - [sym__list_item_plus] = STATE(554), - [sym__list_star] = STATE(144), - [sym__list_item_star] = STATE(556), - [sym__list_task] = STATE(144), - [sym__list_item_task] = STATE(558), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(144), - [sym__list_item_definition] = STATE(769), - [sym__list_decimal_period] = STATE(144), - [sym__list_item_decimal_period] = STATE(776), - [sym__list_decimal_paren] = STATE(144), - [sym__list_item_decimal_paren] = STATE(790), - [sym__list_decimal_parens] = STATE(144), - [sym__list_item_decimal_parens] = STATE(793), - [sym__list_lower_alpha_period] = STATE(144), - [sym__list_item_lower_alpha_period] = STATE(822), - [sym__list_lower_alpha_paren] = STATE(144), - [sym__list_item_lower_alpha_paren] = STATE(684), - [sym__list_lower_alpha_parens] = STATE(144), - [sym__list_item_lower_alpha_parens] = STATE(688), - [sym__list_upper_alpha_period] = STATE(144), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(144), - [sym__list_item_upper_alpha_paren] = STATE(705), - [sym__list_upper_alpha_parens] = STATE(144), - [sym__list_item_upper_alpha_parens] = STATE(711), - [sym__list_lower_roman_period] = STATE(144), - [sym__list_item_lower_roman_period] = STATE(712), - [sym__list_lower_roman_paren] = STATE(144), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(144), - [sym__list_item_lower_roman_parens] = STATE(728), - [sym__list_upper_roman_period] = STATE(144), - [sym__list_item_upper_roman_period] = STATE(734), - [sym__list_upper_roman_paren] = STATE(144), - [sym__list_item_upper_roman_paren] = STATE(830), - [sym__list_upper_roman_parens] = STATE(144), - [sym__list_item_upper_roman_parens] = STATE(725), - [sym_table] = STATE(141), - [sym__table_row] = STATE(66), - [sym_table_header] = STATE(66), - [sym_table_separator] = STATE(66), - [sym_table_row] = STATE(66), - [sym_footnote] = STATE(141), - [sym_footnote_marker_begin] = STATE(1141), - [sym_div] = STATE(141), - [sym__div_marker_begin] = STATE(1057), - [sym_code_block] = STATE(141), - [sym_raw_block] = STATE(141), - [sym_thematic_break] = STATE(141), - [sym_block_quote] = STATE(141), + [sym__block_with_heading] = STATE(1003), + [sym__block_element] = STATE(1003), + [sym_heading] = STATE(1003), + [sym_list] = STATE(1003), + [sym__list_dash] = STATE(1008), + [sym__list_item_dash] = STATE(645), + [sym__list_plus] = STATE(1008), + [sym__list_item_plus] = STATE(661), + [sym__list_star] = STATE(1008), + [sym__list_item_star] = STATE(573), + [sym__list_task] = STATE(1008), + [sym__list_item_task] = STATE(590), + [sym_list_marker_task] = STATE(43), + [sym__list_definition] = STATE(1008), + [sym__list_item_definition] = STATE(740), + [sym__list_decimal_period] = STATE(1008), + [sym__list_item_decimal_period] = STATE(743), + [sym__list_decimal_paren] = STATE(1008), + [sym__list_item_decimal_paren] = STATE(748), + [sym__list_decimal_parens] = STATE(1008), + [sym__list_item_decimal_parens] = STATE(768), + [sym__list_lower_alpha_period] = STATE(1008), + [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_lower_alpha_paren] = STATE(1008), + [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_lower_alpha_parens] = STATE(1008), + [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_upper_alpha_period] = STATE(1008), + [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_upper_alpha_paren] = STATE(1008), + [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_upper_alpha_parens] = STATE(1008), + [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_lower_roman_period] = STATE(1008), + [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_lower_roman_paren] = STATE(1008), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(1008), + [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_upper_roman_period] = STATE(1008), + [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_upper_roman_paren] = STATE(1008), + [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_upper_roman_parens] = STATE(1008), + [sym__list_item_upper_roman_parens] = STATE(819), + [sym_table] = STATE(1003), + [sym__table_row] = STATE(234), + [sym_table_header] = STATE(234), + [sym_table_separator] = STATE(234), + [sym_table_row] = STATE(234), + [sym_footnote] = STATE(1003), + [sym_footnote_marker_begin] = STATE(1136), + [sym_div] = STATE(1003), + [sym__div_marker_begin] = STATE(1018), + [sym_code_block] = STATE(1003), + [sym_raw_block] = STATE(1003), + [sym_thematic_break] = STATE(1003), + [sym_block_quote] = STATE(1003), [sym__block_quote_prefix] = STATE(225), - [sym_link_reference_definition] = STATE(141), - [sym_block_attribute] = STATE(141), - [sym__paragraph] = STATE(141), - [sym__paragraph_content] = STATE(750), - [sym__paragraph_inline_content] = STATE(778), - [sym__inline] = STATE(655), + [sym_link_reference_definition] = STATE(1003), + [sym_block_attribute] = STATE(1003), + [sym__paragraph] = STATE(1003), + [sym__paragraph_content] = STATE(724), + [sym__paragraph_inline_content] = STATE(837), + [sym__inline] = STATE(656), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(334), - [aux_sym__list_plus_repeat1] = STATE(335), - [aux_sym__list_star_repeat1] = STATE(336), - [aux_sym__list_task_repeat1] = STATE(309), - [aux_sym__list_definition_repeat1] = STATE(425), - [aux_sym__list_decimal_period_repeat1] = STATE(426), - [aux_sym__list_decimal_paren_repeat1] = STATE(427), - [aux_sym__list_decimal_parens_repeat1] = STATE(428), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(429), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(430), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(431), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(432), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(433), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(434), - [aux_sym__list_lower_roman_period_repeat1] = STATE(435), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(436), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(437), - [aux_sym__list_upper_roman_period_repeat1] = STATE(438), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(439), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(440), - [aux_sym_table_repeat1] = STATE(66), - [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__list_dash_repeat1] = STATE(318), + [aux_sym__list_plus_repeat1] = STATE(319), + [aux_sym__list_star_repeat1] = STATE(320), + [aux_sym__list_task_repeat1] = STATE(287), + [aux_sym__list_definition_repeat1] = STATE(459), + [aux_sym__list_decimal_period_repeat1] = STATE(460), + [aux_sym__list_decimal_paren_repeat1] = STATE(461), + [aux_sym__list_decimal_parens_repeat1] = STATE(462), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(463), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(464), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(465), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(466), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(467), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(468), + [aux_sym__list_lower_roman_period_repeat1] = STATE(469), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(470), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(471), + [aux_sym__list_upper_roman_period_repeat1] = STATE(472), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(473), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym_table_repeat1] = STATE(234), + [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), - [anon_sym_LBRACK] = ACTIONS(458), - [anon_sym_LBRACK_CARET] = ACTIONS(458), - [anon_sym_LBRACE] = ACTIONS(458), - [anon_sym_DOT] = ACTIONS(458), - [aux_sym_identifier_token1] = ACTIONS(458), - [aux_sym__inline_token1] = ACTIONS(458), - [anon_sym_PERCENT] = ACTIONS(458), - [sym__block_close] = ACTIONS(460), - [sym__newline] = ACTIONS(462), - [sym__heading_begin] = ACTIONS(17), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(189), - [sym_list_marker_dash] = ACTIONS(460), - [sym_list_marker_star] = ACTIONS(460), - [sym_list_marker_plus] = ACTIONS(460), - [sym__list_marker_task_begin] = ACTIONS(460), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(191), - [sym__block_quote_continuation] = ACTIONS(460), - [sym__thematic_break_dash] = ACTIONS(193), - [sym__thematic_break_star] = ACTIONS(193), - [sym__table_header_begin] = ACTIONS(460), - [sym__table_separator_begin] = ACTIONS(460), - [sym__table_row_begin] = ACTIONS(460), + [anon_sym_LBRACK] = ACTIONS(364), + [anon_sym_LBRACK_CARET] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(9), + [aux_sym_identifier_token1] = ACTIONS(9), + [aux_sym__inline_token1] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(9), + [anon_sym_PERCENT] = ACTIONS(9), + [sym__newline] = ACTIONS(458), + [sym__heading_begin] = ACTIONS(368), + [sym__div_begin] = ACTIONS(17), + [sym__code_block_begin] = ACTIONS(370), + [sym_list_marker_dash] = ACTIONS(21), + [sym_list_marker_star] = ACTIONS(23), + [sym_list_marker_plus] = ACTIONS(25), + [sym__list_marker_task_begin] = ACTIONS(27), + [sym_list_marker_definition] = ACTIONS(29), + [sym_list_marker_decimal_period] = ACTIONS(31), + [sym_list_marker_lower_alpha_period] = ACTIONS(33), + [sym_list_marker_upper_alpha_period] = ACTIONS(35), + [sym_list_marker_lower_roman_period] = ACTIONS(37), + [sym_list_marker_upper_roman_period] = ACTIONS(39), + [sym_list_marker_decimal_paren] = ACTIONS(41), + [sym_list_marker_lower_alpha_paren] = ACTIONS(43), + [sym_list_marker_upper_alpha_paren] = ACTIONS(45), + [sym_list_marker_lower_roman_paren] = ACTIONS(47), + [sym_list_marker_upper_roman_paren] = ACTIONS(49), + [sym_list_marker_decimal_parens] = ACTIONS(51), + [sym_list_marker_lower_alpha_parens] = ACTIONS(53), + [sym_list_marker_upper_alpha_parens] = ACTIONS(55), + [sym_list_marker_lower_roman_parens] = ACTIONS(57), + [sym_list_marker_upper_roman_parens] = ACTIONS(59), + [sym__block_quote_begin] = ACTIONS(372), + [sym__block_quote_continuation] = ACTIONS(374), + [sym__thematic_break_dash] = ACTIONS(376), + [sym__thematic_break_star] = ACTIONS(376), + [sym__table_header_begin] = ACTIONS(378), + [sym__table_separator_begin] = ACTIONS(380), + [sym__table_row_begin] = ACTIONS(382), + [sym__block_attribute_begin] = ACTIONS(384), }, [54] = { - [sym__block_with_heading] = STATE(993), - [sym__block_element] = STATE(993), - [sym_heading] = STATE(993), - [sym_list] = STATE(993), - [sym__list_dash] = STATE(998), - [sym__list_item_dash] = STATE(553), - [sym__list_plus] = STATE(998), - [sym__list_item_plus] = STATE(554), - [sym__list_star] = STATE(998), - [sym__list_item_star] = STATE(556), - [sym__list_task] = STATE(998), - [sym__list_item_task] = STATE(558), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(998), - [sym__list_item_definition] = STATE(769), - [sym__list_decimal_period] = STATE(998), - [sym__list_item_decimal_period] = STATE(776), - [sym__list_decimal_paren] = STATE(998), - [sym__list_item_decimal_paren] = STATE(790), - [sym__list_decimal_parens] = STATE(998), - [sym__list_item_decimal_parens] = STATE(793), - [sym__list_lower_alpha_period] = STATE(998), - [sym__list_item_lower_alpha_period] = STATE(822), - [sym__list_lower_alpha_paren] = STATE(998), - [sym__list_item_lower_alpha_paren] = STATE(684), - [sym__list_lower_alpha_parens] = STATE(998), - [sym__list_item_lower_alpha_parens] = STATE(688), - [sym__list_upper_alpha_period] = STATE(998), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(998), - [sym__list_item_upper_alpha_paren] = STATE(705), - [sym__list_upper_alpha_parens] = STATE(998), - [sym__list_item_upper_alpha_parens] = STATE(711), - [sym__list_lower_roman_period] = STATE(998), - [sym__list_item_lower_roman_period] = STATE(712), - [sym__list_lower_roman_paren] = STATE(998), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(998), - [sym__list_item_lower_roman_parens] = STATE(728), - [sym__list_upper_roman_period] = STATE(998), - [sym__list_item_upper_roman_period] = STATE(734), - [sym__list_upper_roman_paren] = STATE(998), - [sym__list_item_upper_roman_paren] = STATE(830), - [sym__list_upper_roman_parens] = STATE(998), - [sym__list_item_upper_roman_parens] = STATE(725), - [sym_table] = STATE(993), - [sym__table_row] = STATE(241), - [sym_table_header] = STATE(241), - [sym_table_separator] = STATE(241), - [sym_table_row] = STATE(241), - [sym_footnote] = STATE(993), - [sym_footnote_marker_begin] = STATE(1137), - [sym_div] = STATE(993), - [sym__div_marker_begin] = STATE(1019), - [sym_code_block] = STATE(993), - [sym_raw_block] = STATE(993), - [sym_thematic_break] = STATE(993), - [sym_block_quote] = STATE(993), + [sym__block_element] = STATE(126), + [sym_heading] = STATE(126), + [sym_list] = STATE(126), + [sym__list_dash] = STATE(129), + [sym__list_item_dash] = STATE(645), + [sym__list_plus] = STATE(129), + [sym__list_item_plus] = STATE(661), + [sym__list_star] = STATE(129), + [sym__list_item_star] = STATE(573), + [sym__list_task] = STATE(129), + [sym__list_item_task] = STATE(590), + [sym_list_marker_task] = STATE(43), + [sym__list_definition] = STATE(129), + [sym__list_item_definition] = STATE(740), + [sym__list_decimal_period] = STATE(129), + [sym__list_item_decimal_period] = STATE(743), + [sym__list_decimal_paren] = STATE(129), + [sym__list_item_decimal_paren] = STATE(748), + [sym__list_decimal_parens] = STATE(129), + [sym__list_item_decimal_parens] = STATE(768), + [sym__list_lower_alpha_period] = STATE(129), + [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_lower_alpha_paren] = STATE(129), + [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_lower_alpha_parens] = STATE(129), + [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_upper_alpha_period] = STATE(129), + [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_upper_alpha_paren] = STATE(129), + [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_upper_alpha_parens] = STATE(129), + [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_lower_roman_period] = STATE(129), + [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_lower_roman_paren] = STATE(129), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(129), + [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_upper_roman_period] = STATE(129), + [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_upper_roman_paren] = STATE(129), + [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_upper_roman_parens] = STATE(129), + [sym__list_item_upper_roman_parens] = STATE(819), + [sym_table] = STATE(126), + [sym__table_row] = STATE(67), + [sym_table_header] = STATE(67), + [sym_table_separator] = STATE(67), + [sym_table_row] = STATE(67), + [sym_footnote] = STATE(126), + [sym_footnote_marker_begin] = STATE(894), + [sym_div] = STATE(126), + [sym__div_marker_begin] = STATE(1056), + [sym_code_block] = STATE(126), + [sym_raw_block] = STATE(126), + [sym_thematic_break] = STATE(126), + [sym_block_quote] = STATE(126), [sym__block_quote_prefix] = STATE(223), - [sym_link_reference_definition] = STATE(993), - [sym_block_attribute] = STATE(993), - [sym__paragraph] = STATE(993), - [sym__paragraph_content] = STATE(707), - [sym__paragraph_inline_content] = STATE(778), - [sym__inline] = STATE(655), + [sym_link_reference_definition] = STATE(126), + [sym_block_attribute] = STATE(126), + [sym__paragraph] = STATE(126), + [sym__paragraph_content] = STATE(784), + [sym__paragraph_inline_content] = STATE(837), + [sym__inline] = STATE(656), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(326), - [aux_sym__list_plus_repeat1] = STATE(329), - [aux_sym__list_star_repeat1] = STATE(330), - [aux_sym__list_task_repeat1] = STATE(298), - [aux_sym__list_definition_repeat1] = STATE(508), - [aux_sym__list_decimal_period_repeat1] = STATE(509), - [aux_sym__list_decimal_paren_repeat1] = STATE(510), - [aux_sym__list_decimal_parens_repeat1] = STATE(511), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(512), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(513), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(514), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(515), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(516), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(517), - [aux_sym__list_lower_roman_period_repeat1] = STATE(526), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(531), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(534), - [aux_sym__list_upper_roman_period_repeat1] = STATE(544), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(441), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(442), - [aux_sym_table_repeat1] = STATE(241), - [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__list_dash_repeat1] = STATE(322), + [aux_sym__list_plus_repeat1] = STATE(323), + [aux_sym__list_star_repeat1] = STATE(324), + [aux_sym__list_task_repeat1] = STATE(285), + [aux_sym__list_definition_repeat1] = STATE(494), + [aux_sym__list_decimal_period_repeat1] = STATE(495), + [aux_sym__list_decimal_paren_repeat1] = STATE(496), + [aux_sym__list_decimal_parens_repeat1] = STATE(497), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(498), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(499), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(500), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(501), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(502), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(503), + [aux_sym__list_lower_roman_period_repeat1] = STATE(504), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(505), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(506), + [aux_sym__list_upper_roman_period_repeat1] = STATE(507), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(508), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(509), + [aux_sym_table_repeat1] = STATE(67), + [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), - [anon_sym_LBRACK] = ACTIONS(364), - [anon_sym_LBRACK_CARET] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(366), - [anon_sym_DOT] = ACTIONS(11), - [aux_sym_identifier_token1] = ACTIONS(11), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_PERCENT] = ACTIONS(11), + [anon_sym_LBRACK] = ACTIONS(460), + [anon_sym_LBRACK_CARET] = ACTIONS(460), + [anon_sym_DOT] = ACTIONS(460), + [aux_sym_identifier_token1] = ACTIONS(460), + [aux_sym__inline_token1] = ACTIONS(460), + [anon_sym_LBRACE] = ACTIONS(460), + [anon_sym_PERCENT] = ACTIONS(460), + [sym__block_close] = ACTIONS(462), [sym__newline] = ACTIONS(464), - [sym__heading_begin] = ACTIONS(370), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(372), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(374), - [sym__block_quote_continuation] = ACTIONS(376), - [sym__thematic_break_dash] = ACTIONS(378), - [sym__thematic_break_star] = ACTIONS(378), - [sym__table_header_begin] = ACTIONS(380), - [sym__table_separator_begin] = ACTIONS(382), - [sym__table_row_begin] = ACTIONS(384), + [sym__heading_begin] = ACTIONS(15), + [sym__div_begin] = ACTIONS(17), + [sym__code_block_begin] = ACTIONS(83), + [sym_list_marker_dash] = ACTIONS(462), + [sym_list_marker_star] = ACTIONS(462), + [sym_list_marker_plus] = ACTIONS(462), + [sym__list_marker_task_begin] = ACTIONS(462), + [sym_list_marker_definition] = ACTIONS(29), + [sym_list_marker_decimal_period] = ACTIONS(31), + [sym_list_marker_lower_alpha_period] = ACTIONS(33), + [sym_list_marker_upper_alpha_period] = ACTIONS(35), + [sym_list_marker_lower_roman_period] = ACTIONS(37), + [sym_list_marker_upper_roman_period] = ACTIONS(39), + [sym_list_marker_decimal_paren] = ACTIONS(41), + [sym_list_marker_lower_alpha_paren] = ACTIONS(43), + [sym_list_marker_upper_alpha_paren] = ACTIONS(45), + [sym_list_marker_lower_roman_paren] = ACTIONS(47), + [sym_list_marker_upper_roman_paren] = ACTIONS(49), + [sym_list_marker_decimal_parens] = ACTIONS(51), + [sym_list_marker_lower_alpha_parens] = ACTIONS(53), + [sym_list_marker_upper_alpha_parens] = ACTIONS(55), + [sym_list_marker_lower_roman_parens] = ACTIONS(57), + [sym_list_marker_upper_roman_parens] = ACTIONS(59), + [sym__block_quote_begin] = ACTIONS(85), + [sym__block_quote_continuation] = ACTIONS(462), + [sym__thematic_break_dash] = ACTIONS(87), + [sym__thematic_break_star] = ACTIONS(87), + [sym__table_header_begin] = ACTIONS(462), + [sym__table_separator_begin] = ACTIONS(462), + [sym__table_row_begin] = ACTIONS(462), + [sym__block_attribute_begin] = ACTIONS(95), }, [55] = { - [sym__block_with_heading] = STATE(911), - [sym__block_element] = STATE(911), - [sym_heading] = STATE(911), - [sym_list] = STATE(911), - [sym__list_dash] = STATE(998), - [sym__list_item_dash] = STATE(553), - [sym__list_plus] = STATE(998), - [sym__list_item_plus] = STATE(554), - [sym__list_star] = STATE(998), - [sym__list_item_star] = STATE(556), - [sym__list_task] = STATE(998), - [sym__list_item_task] = STATE(558), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(998), - [sym__list_item_definition] = STATE(769), - [sym__list_decimal_period] = STATE(998), - [sym__list_item_decimal_period] = STATE(776), - [sym__list_decimal_paren] = STATE(998), - [sym__list_item_decimal_paren] = STATE(790), - [sym__list_decimal_parens] = STATE(998), - [sym__list_item_decimal_parens] = STATE(793), - [sym__list_lower_alpha_period] = STATE(998), - [sym__list_item_lower_alpha_period] = STATE(822), - [sym__list_lower_alpha_paren] = STATE(998), - [sym__list_item_lower_alpha_paren] = STATE(684), - [sym__list_lower_alpha_parens] = STATE(998), - [sym__list_item_lower_alpha_parens] = STATE(688), - [sym__list_upper_alpha_period] = STATE(998), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(998), - [sym__list_item_upper_alpha_paren] = STATE(705), - [sym__list_upper_alpha_parens] = STATE(998), - [sym__list_item_upper_alpha_parens] = STATE(711), - [sym__list_lower_roman_period] = STATE(998), - [sym__list_item_lower_roman_period] = STATE(712), - [sym__list_lower_roman_paren] = STATE(998), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(998), - [sym__list_item_lower_roman_parens] = STATE(728), - [sym__list_upper_roman_period] = STATE(998), - [sym__list_item_upper_roman_period] = STATE(734), - [sym__list_upper_roman_paren] = STATE(998), - [sym__list_item_upper_roman_paren] = STATE(830), - [sym__list_upper_roman_parens] = STATE(998), - [sym__list_item_upper_roman_parens] = STATE(725), - [sym_table] = STATE(911), - [sym__table_row] = STATE(241), - [sym_table_header] = STATE(241), - [sym_table_separator] = STATE(241), - [sym_table_row] = STATE(241), - [sym_footnote] = STATE(911), - [sym_footnote_marker_begin] = STATE(1137), - [sym_div] = STATE(911), - [sym__div_marker_begin] = STATE(1019), - [sym_code_block] = STATE(911), - [sym_raw_block] = STATE(911), - [sym_thematic_break] = STATE(911), - [sym_block_quote] = STATE(911), - [sym__block_quote_prefix] = STATE(223), - [sym_link_reference_definition] = STATE(911), - [sym_block_attribute] = STATE(911), - [sym__paragraph] = STATE(911), - [sym__paragraph_content] = STATE(707), - [sym__paragraph_inline_content] = STATE(778), - [sym__inline] = STATE(655), + [sym__block_with_heading] = STATE(990), + [sym__block_element] = STATE(990), + [sym_heading] = STATE(990), + [sym_list] = STATE(990), + [sym__list_dash] = STATE(1008), + [sym__list_item_dash] = STATE(645), + [sym__list_plus] = STATE(1008), + [sym__list_item_plus] = STATE(661), + [sym__list_star] = STATE(1008), + [sym__list_item_star] = STATE(573), + [sym__list_task] = STATE(1008), + [sym__list_item_task] = STATE(590), + [sym_list_marker_task] = STATE(43), + [sym__list_definition] = STATE(1008), + [sym__list_item_definition] = STATE(740), + [sym__list_decimal_period] = STATE(1008), + [sym__list_item_decimal_period] = STATE(743), + [sym__list_decimal_paren] = STATE(1008), + [sym__list_item_decimal_paren] = STATE(748), + [sym__list_decimal_parens] = STATE(1008), + [sym__list_item_decimal_parens] = STATE(768), + [sym__list_lower_alpha_period] = STATE(1008), + [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_lower_alpha_paren] = STATE(1008), + [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_lower_alpha_parens] = STATE(1008), + [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_upper_alpha_period] = STATE(1008), + [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_upper_alpha_paren] = STATE(1008), + [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_upper_alpha_parens] = STATE(1008), + [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_lower_roman_period] = STATE(1008), + [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_lower_roman_paren] = STATE(1008), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(1008), + [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_upper_roman_period] = STATE(1008), + [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_upper_roman_paren] = STATE(1008), + [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_upper_roman_parens] = STATE(1008), + [sym__list_item_upper_roman_parens] = STATE(819), + [sym_table] = STATE(990), + [sym__table_row] = STATE(234), + [sym_table_header] = STATE(234), + [sym_table_separator] = STATE(234), + [sym_table_row] = STATE(234), + [sym_footnote] = STATE(990), + [sym_footnote_marker_begin] = STATE(1136), + [sym_div] = STATE(990), + [sym__div_marker_begin] = STATE(1018), + [sym_code_block] = STATE(990), + [sym_raw_block] = STATE(990), + [sym_thematic_break] = STATE(990), + [sym_block_quote] = STATE(990), + [sym__block_quote_prefix] = STATE(225), + [sym_link_reference_definition] = STATE(990), + [sym_block_attribute] = STATE(990), + [sym__paragraph] = STATE(990), + [sym__paragraph_content] = STATE(724), + [sym__paragraph_inline_content] = STATE(837), + [sym__inline] = STATE(656), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(326), - [aux_sym__list_plus_repeat1] = STATE(329), - [aux_sym__list_star_repeat1] = STATE(330), - [aux_sym__list_task_repeat1] = STATE(298), - [aux_sym__list_definition_repeat1] = STATE(508), - [aux_sym__list_decimal_period_repeat1] = STATE(509), - [aux_sym__list_decimal_paren_repeat1] = STATE(510), - [aux_sym__list_decimal_parens_repeat1] = STATE(511), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(512), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(513), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(514), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(515), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(516), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(517), - [aux_sym__list_lower_roman_period_repeat1] = STATE(526), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(531), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(534), - [aux_sym__list_upper_roman_period_repeat1] = STATE(544), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(441), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(442), - [aux_sym_table_repeat1] = STATE(241), - [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__list_dash_repeat1] = STATE(318), + [aux_sym__list_plus_repeat1] = STATE(319), + [aux_sym__list_star_repeat1] = STATE(320), + [aux_sym__list_task_repeat1] = STATE(287), + [aux_sym__list_definition_repeat1] = STATE(459), + [aux_sym__list_decimal_period_repeat1] = STATE(460), + [aux_sym__list_decimal_paren_repeat1] = STATE(461), + [aux_sym__list_decimal_parens_repeat1] = STATE(462), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(463), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(464), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(465), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(466), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(467), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(468), + [aux_sym__list_lower_roman_period_repeat1] = STATE(469), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(470), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(471), + [aux_sym__list_upper_roman_period_repeat1] = STATE(472), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(473), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym_table_repeat1] = STATE(234), + [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(366), - [anon_sym_DOT] = ACTIONS(11), - [aux_sym_identifier_token1] = ACTIONS(11), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_PERCENT] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(9), + [aux_sym_identifier_token1] = ACTIONS(9), + [aux_sym__inline_token1] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(9), + [anon_sym_PERCENT] = ACTIONS(9), [sym__newline] = ACTIONS(466), - [sym__heading_begin] = ACTIONS(370), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(372), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(374), - [sym__block_quote_continuation] = ACTIONS(376), - [sym__thematic_break_dash] = ACTIONS(378), - [sym__thematic_break_star] = ACTIONS(378), - [sym__table_header_begin] = ACTIONS(380), - [sym__table_separator_begin] = ACTIONS(382), - [sym__table_row_begin] = ACTIONS(384), + [sym__heading_begin] = ACTIONS(368), + [sym__div_begin] = ACTIONS(17), + [sym__code_block_begin] = ACTIONS(370), + [sym_list_marker_dash] = ACTIONS(21), + [sym_list_marker_star] = ACTIONS(23), + [sym_list_marker_plus] = ACTIONS(25), + [sym__list_marker_task_begin] = ACTIONS(27), + [sym_list_marker_definition] = ACTIONS(29), + [sym_list_marker_decimal_period] = ACTIONS(31), + [sym_list_marker_lower_alpha_period] = ACTIONS(33), + [sym_list_marker_upper_alpha_period] = ACTIONS(35), + [sym_list_marker_lower_roman_period] = ACTIONS(37), + [sym_list_marker_upper_roman_period] = ACTIONS(39), + [sym_list_marker_decimal_paren] = ACTIONS(41), + [sym_list_marker_lower_alpha_paren] = ACTIONS(43), + [sym_list_marker_upper_alpha_paren] = ACTIONS(45), + [sym_list_marker_lower_roman_paren] = ACTIONS(47), + [sym_list_marker_upper_roman_paren] = ACTIONS(49), + [sym_list_marker_decimal_parens] = ACTIONS(51), + [sym_list_marker_lower_alpha_parens] = ACTIONS(53), + [sym_list_marker_upper_alpha_parens] = ACTIONS(55), + [sym_list_marker_lower_roman_parens] = ACTIONS(57), + [sym_list_marker_upper_roman_parens] = ACTIONS(59), + [sym__block_quote_begin] = ACTIONS(372), + [sym__block_quote_continuation] = ACTIONS(374), + [sym__thematic_break_dash] = ACTIONS(376), + [sym__thematic_break_star] = ACTIONS(376), + [sym__table_header_begin] = ACTIONS(378), + [sym__table_separator_begin] = ACTIONS(380), + [sym__table_row_begin] = ACTIONS(382), + [sym__block_attribute_begin] = ACTIONS(384), }, [56] = { - [sym__block_with_heading] = STATE(599), - [sym__block_element] = STATE(599), - [sym_heading] = STATE(599), - [sym_list] = STATE(599), - [sym__list_dash] = STATE(566), - [sym__list_item_dash] = STATE(553), - [sym__list_plus] = STATE(566), - [sym__list_item_plus] = STATE(554), - [sym__list_star] = STATE(566), - [sym__list_item_star] = STATE(556), - [sym__list_task] = STATE(566), - [sym__list_item_task] = STATE(558), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(566), - [sym__list_item_definition] = STATE(769), - [sym__list_decimal_period] = STATE(566), - [sym__list_item_decimal_period] = STATE(776), - [sym__list_decimal_paren] = STATE(566), - [sym__list_item_decimal_paren] = STATE(790), - [sym__list_decimal_parens] = STATE(566), - [sym__list_item_decimal_parens] = STATE(793), - [sym__list_lower_alpha_period] = STATE(566), - [sym__list_item_lower_alpha_period] = STATE(822), - [sym__list_lower_alpha_paren] = STATE(566), - [sym__list_item_lower_alpha_paren] = STATE(684), - [sym__list_lower_alpha_parens] = STATE(566), - [sym__list_item_lower_alpha_parens] = STATE(688), - [sym__list_upper_alpha_period] = STATE(566), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(566), - [sym__list_item_upper_alpha_paren] = STATE(705), - [sym__list_upper_alpha_parens] = STATE(566), - [sym__list_item_upper_alpha_parens] = STATE(711), - [sym__list_lower_roman_period] = STATE(566), - [sym__list_item_lower_roman_period] = STATE(712), - [sym__list_lower_roman_paren] = STATE(566), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(566), - [sym__list_item_lower_roman_parens] = STATE(728), - [sym__list_upper_roman_period] = STATE(566), - [sym__list_item_upper_roman_period] = STATE(734), - [sym__list_upper_roman_paren] = STATE(566), - [sym__list_item_upper_roman_paren] = STATE(830), - [sym__list_upper_roman_parens] = STATE(566), - [sym__list_item_upper_roman_parens] = STATE(725), - [sym_table] = STATE(599), - [sym__table_row] = STATE(236), - [sym_table_header] = STATE(236), - [sym_table_separator] = STATE(236), - [sym_table_row] = STATE(236), - [sym_footnote] = STATE(599), - [sym_footnote_marker_begin] = STATE(1143), - [sym_div] = STATE(599), - [sym__div_marker_begin] = STATE(1075), - [sym_code_block] = STATE(599), - [sym_raw_block] = STATE(599), - [sym_thematic_break] = STATE(599), - [sym_block_quote] = STATE(599), - [sym__block_quote_prefix] = STATE(224), - [sym_link_reference_definition] = STATE(599), - [sym_block_attribute] = STATE(599), - [sym__paragraph] = STATE(599), - [sym__paragraph_content] = STATE(779), - [sym__paragraph_inline_content] = STATE(778), - [sym__inline] = STATE(655), + [sym__block_with_heading] = STATE(931), + [sym__block_element] = STATE(931), + [sym_heading] = STATE(931), + [sym_list] = STATE(931), + [sym__list_dash] = STATE(1008), + [sym__list_item_dash] = STATE(645), + [sym__list_plus] = STATE(1008), + [sym__list_item_plus] = STATE(661), + [sym__list_star] = STATE(1008), + [sym__list_item_star] = STATE(573), + [sym__list_task] = STATE(1008), + [sym__list_item_task] = STATE(590), + [sym_list_marker_task] = STATE(43), + [sym__list_definition] = STATE(1008), + [sym__list_item_definition] = STATE(740), + [sym__list_decimal_period] = STATE(1008), + [sym__list_item_decimal_period] = STATE(743), + [sym__list_decimal_paren] = STATE(1008), + [sym__list_item_decimal_paren] = STATE(748), + [sym__list_decimal_parens] = STATE(1008), + [sym__list_item_decimal_parens] = STATE(768), + [sym__list_lower_alpha_period] = STATE(1008), + [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_lower_alpha_paren] = STATE(1008), + [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_lower_alpha_parens] = STATE(1008), + [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_upper_alpha_period] = STATE(1008), + [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_upper_alpha_paren] = STATE(1008), + [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_upper_alpha_parens] = STATE(1008), + [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_lower_roman_period] = STATE(1008), + [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_lower_roman_paren] = STATE(1008), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(1008), + [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_upper_roman_period] = STATE(1008), + [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_upper_roman_paren] = STATE(1008), + [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_upper_roman_parens] = STATE(1008), + [sym__list_item_upper_roman_parens] = STATE(819), + [sym_table] = STATE(931), + [sym__table_row] = STATE(234), + [sym_table_header] = STATE(234), + [sym_table_separator] = STATE(234), + [sym_table_row] = STATE(234), + [sym_footnote] = STATE(931), + [sym_footnote_marker_begin] = STATE(1136), + [sym_div] = STATE(931), + [sym__div_marker_begin] = STATE(1018), + [sym_code_block] = STATE(931), + [sym_raw_block] = STATE(931), + [sym_thematic_break] = STATE(931), + [sym_block_quote] = STATE(931), + [sym__block_quote_prefix] = STATE(225), + [sym_link_reference_definition] = STATE(931), + [sym_block_attribute] = STATE(931), + [sym__paragraph] = STATE(931), + [sym__paragraph_content] = STATE(724), + [sym__paragraph_inline_content] = STATE(837), + [sym__inline] = STATE(656), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(342), - [aux_sym__list_plus_repeat1] = STATE(343), - [aux_sym__list_star_repeat1] = STATE(344), - [aux_sym__list_task_repeat1] = STATE(313), - [aux_sym__list_definition_repeat1] = STATE(460), - [aux_sym__list_decimal_period_repeat1] = STATE(461), - [aux_sym__list_decimal_paren_repeat1] = STATE(462), - [aux_sym__list_decimal_parens_repeat1] = STATE(463), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(464), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(465), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(466), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(467), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(468), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(469), - [aux_sym__list_lower_roman_period_repeat1] = STATE(470), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(471), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(472), - [aux_sym__list_upper_roman_period_repeat1] = STATE(473), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(474), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(475), - [aux_sym_table_repeat1] = STATE(236), - [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__list_dash_repeat1] = STATE(318), + [aux_sym__list_plus_repeat1] = STATE(319), + [aux_sym__list_star_repeat1] = STATE(320), + [aux_sym__list_task_repeat1] = STATE(287), + [aux_sym__list_definition_repeat1] = STATE(459), + [aux_sym__list_decimal_period_repeat1] = STATE(460), + [aux_sym__list_decimal_paren_repeat1] = STATE(461), + [aux_sym__list_decimal_parens_repeat1] = STATE(462), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(463), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(464), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(465), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(466), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(467), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(468), + [aux_sym__list_lower_roman_period_repeat1] = STATE(469), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(470), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(471), + [aux_sym__list_upper_roman_period_repeat1] = STATE(472), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(473), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym_table_repeat1] = STATE(234), + [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), - [anon_sym_LBRACK] = ACTIONS(432), + [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_DOT] = ACTIONS(11), - [aux_sym_identifier_token1] = ACTIONS(11), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_PERCENT] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(9), + [aux_sym_identifier_token1] = ACTIONS(9), + [aux_sym__inline_token1] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(9), + [anon_sym_PERCENT] = ACTIONS(9), [sym__newline] = ACTIONS(468), - [sym__heading_begin] = ACTIONS(438), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(440), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(442), - [sym__block_quote_continuation] = ACTIONS(444), - [sym__thematic_break_dash] = ACTIONS(446), - [sym__thematic_break_star] = ACTIONS(446), - [sym__table_header_begin] = ACTIONS(448), - [sym__table_separator_begin] = ACTIONS(450), - [sym__table_row_begin] = ACTIONS(452), + [sym__heading_begin] = ACTIONS(368), + [sym__div_begin] = ACTIONS(17), + [sym__code_block_begin] = ACTIONS(370), + [sym_list_marker_dash] = ACTIONS(21), + [sym_list_marker_star] = ACTIONS(23), + [sym_list_marker_plus] = ACTIONS(25), + [sym__list_marker_task_begin] = ACTIONS(27), + [sym_list_marker_definition] = ACTIONS(29), + [sym_list_marker_decimal_period] = ACTIONS(31), + [sym_list_marker_lower_alpha_period] = ACTIONS(33), + [sym_list_marker_upper_alpha_period] = ACTIONS(35), + [sym_list_marker_lower_roman_period] = ACTIONS(37), + [sym_list_marker_upper_roman_period] = ACTIONS(39), + [sym_list_marker_decimal_paren] = ACTIONS(41), + [sym_list_marker_lower_alpha_paren] = ACTIONS(43), + [sym_list_marker_upper_alpha_paren] = ACTIONS(45), + [sym_list_marker_lower_roman_paren] = ACTIONS(47), + [sym_list_marker_upper_roman_paren] = ACTIONS(49), + [sym_list_marker_decimal_parens] = ACTIONS(51), + [sym_list_marker_lower_alpha_parens] = ACTIONS(53), + [sym_list_marker_upper_alpha_parens] = ACTIONS(55), + [sym_list_marker_lower_roman_parens] = ACTIONS(57), + [sym_list_marker_upper_roman_parens] = ACTIONS(59), + [sym__block_quote_begin] = ACTIONS(372), + [sym__block_quote_continuation] = ACTIONS(374), + [sym__thematic_break_dash] = ACTIONS(376), + [sym__thematic_break_star] = ACTIONS(376), + [sym__table_header_begin] = ACTIONS(378), + [sym__table_separator_begin] = ACTIONS(380), + [sym__table_row_begin] = ACTIONS(382), + [sym__block_attribute_begin] = ACTIONS(384), }, [57] = { - [sym__block_element] = STATE(423), - [sym_heading] = STATE(423), - [sym_list] = STATE(423), - [sym__list_dash] = STATE(786), - [sym__list_item_dash] = STATE(553), - [sym__list_plus] = STATE(786), - [sym__list_item_plus] = STATE(554), - [sym__list_star] = STATE(786), - [sym__list_item_star] = STATE(556), - [sym__list_task] = STATE(786), - [sym__list_item_task] = STATE(558), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(786), - [sym__list_item_definition] = STATE(769), - [sym__list_decimal_period] = STATE(786), - [sym__list_item_decimal_period] = STATE(776), - [sym__list_decimal_paren] = STATE(786), - [sym__list_item_decimal_paren] = STATE(790), - [sym__list_decimal_parens] = STATE(786), - [sym__list_item_decimal_parens] = STATE(793), - [sym__list_lower_alpha_period] = STATE(786), - [sym__list_item_lower_alpha_period] = STATE(822), - [sym__list_lower_alpha_paren] = STATE(786), - [sym__list_item_lower_alpha_paren] = STATE(684), - [sym__list_lower_alpha_parens] = STATE(786), - [sym__list_item_lower_alpha_parens] = STATE(688), - [sym__list_upper_alpha_period] = STATE(786), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(786), - [sym__list_item_upper_alpha_paren] = STATE(705), - [sym__list_upper_alpha_parens] = STATE(786), - [sym__list_item_upper_alpha_parens] = STATE(711), - [sym__list_lower_roman_period] = STATE(786), - [sym__list_item_lower_roman_period] = STATE(712), - [sym__list_lower_roman_paren] = STATE(786), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(786), - [sym__list_item_lower_roman_parens] = STATE(728), - [sym__list_upper_roman_period] = STATE(786), - [sym__list_item_upper_roman_period] = STATE(734), - [sym__list_upper_roman_paren] = STATE(786), - [sym__list_item_upper_roman_paren] = STATE(830), - [sym__list_upper_roman_parens] = STATE(786), - [sym__list_item_upper_roman_parens] = STATE(725), - [sym_table] = STATE(423), - [sym__table_row] = STATE(237), - [sym_table_header] = STATE(237), - [sym_table_separator] = STATE(237), - [sym_table_row] = STATE(237), - [sym_footnote] = STATE(423), - [sym_footnote_marker_begin] = STATE(1139), - [sym_div] = STATE(423), - [sym__div_marker_begin] = STATE(1038), - [sym_code_block] = STATE(423), - [sym_raw_block] = STATE(423), - [sym_thematic_break] = STATE(423), - [sym_block_quote] = STATE(423), - [sym__block_quote_content] = STATE(951), - [sym__block_quote_prefix] = STATE(221), - [sym_link_reference_definition] = STATE(423), - [sym_block_attribute] = STATE(423), - [sym__paragraph] = STATE(423), - [sym__paragraph_content] = STATE(679), - [sym__paragraph_inline_content] = STATE(778), - [sym__inline] = STATE(655), + [sym__block_element] = STATE(419), + [sym_heading] = STATE(419), + [sym_list] = STATE(419), + [sym__list_dash] = STATE(736), + [sym__list_item_dash] = STATE(645), + [sym__list_plus] = STATE(736), + [sym__list_item_plus] = STATE(661), + [sym__list_star] = STATE(736), + [sym__list_item_star] = STATE(573), + [sym__list_task] = STATE(736), + [sym__list_item_task] = STATE(590), + [sym_list_marker_task] = STATE(43), + [sym__list_definition] = STATE(736), + [sym__list_item_definition] = STATE(740), + [sym__list_decimal_period] = STATE(736), + [sym__list_item_decimal_period] = STATE(743), + [sym__list_decimal_paren] = STATE(736), + [sym__list_item_decimal_paren] = STATE(748), + [sym__list_decimal_parens] = STATE(736), + [sym__list_item_decimal_parens] = STATE(768), + [sym__list_lower_alpha_period] = STATE(736), + [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_lower_alpha_paren] = STATE(736), + [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_lower_alpha_parens] = STATE(736), + [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_upper_alpha_period] = STATE(736), + [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_upper_alpha_paren] = STATE(736), + [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_upper_alpha_parens] = STATE(736), + [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_lower_roman_period] = STATE(736), + [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_lower_roman_paren] = STATE(736), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(736), + [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_upper_roman_period] = STATE(736), + [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_upper_roman_paren] = STATE(736), + [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_upper_roman_parens] = STATE(736), + [sym__list_item_upper_roman_parens] = STATE(819), + [sym_table] = STATE(419), + [sym__table_row] = STATE(233), + [sym_table_header] = STATE(233), + [sym_table_separator] = STATE(233), + [sym_table_row] = STATE(233), + [sym_footnote] = STATE(419), + [sym_footnote_marker_begin] = STATE(1138), + [sym_div] = STATE(419), + [sym__div_marker_begin] = STATE(1037), + [sym_code_block] = STATE(419), + [sym_raw_block] = STATE(419), + [sym_thematic_break] = STATE(419), + [sym_block_quote] = STATE(419), + [sym__block_quote_content] = STATE(950), + [sym__block_quote_prefix] = STATE(222), + [sym_link_reference_definition] = STATE(419), + [sym_block_attribute] = STATE(419), + [sym__paragraph] = STATE(419), + [sym__paragraph_content] = STATE(750), + [sym__paragraph_inline_content] = STATE(837), + [sym__inline] = STATE(656), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(322), - [aux_sym__list_plus_repeat1] = STATE(323), - [aux_sym__list_star_repeat1] = STATE(316), - [aux_sym__list_task_repeat1] = STATE(305), - [aux_sym__list_definition_repeat1] = STATE(484), - [aux_sym__list_decimal_period_repeat1] = STATE(485), - [aux_sym__list_decimal_paren_repeat1] = STATE(545), - [aux_sym__list_decimal_parens_repeat1] = STATE(489), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(490), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(491), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(492), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(493), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(494), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(495), - [aux_sym__list_lower_roman_period_repeat1] = STATE(496), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(497), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(498), - [aux_sym__list_upper_roman_period_repeat1] = STATE(499), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(500), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(501), - [aux_sym_table_repeat1] = STATE(237), - [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__list_dash_repeat1] = STATE(347), + [aux_sym__list_plus_repeat1] = STATE(348), + [aux_sym__list_star_repeat1] = STATE(331), + [aux_sym__list_task_repeat1] = STATE(292), + [aux_sym__list_definition_repeat1] = STATE(478), + [aux_sym__list_decimal_period_repeat1] = STATE(479), + [aux_sym__list_decimal_paren_repeat1] = STATE(480), + [aux_sym__list_decimal_parens_repeat1] = STATE(481), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(482), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(483), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(484), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(485), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(486), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(487), + [aux_sym__list_lower_roman_period_repeat1] = STATE(488), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(489), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(490), + [aux_sym__list_upper_roman_period_repeat1] = STATE(491), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(492), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(493), + [aux_sym_table_repeat1] = STATE(233), + [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), [anon_sym_LBRACK] = ACTIONS(470), [anon_sym_LBRACK_CARET] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(472), - [anon_sym_DOT] = ACTIONS(11), - [aux_sym_identifier_token1] = ACTIONS(11), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_PERCENT] = ACTIONS(11), - [sym__heading_begin] = ACTIONS(474), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(476), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(478), - [sym__block_quote_continuation] = ACTIONS(65), - [sym__thematic_break_dash] = ACTIONS(480), - [sym__thematic_break_star] = ACTIONS(480), - [sym__table_header_begin] = ACTIONS(482), - [sym__table_separator_begin] = ACTIONS(484), - [sym__table_row_begin] = ACTIONS(486), + [anon_sym_DOT] = ACTIONS(9), + [aux_sym_identifier_token1] = ACTIONS(9), + [aux_sym__inline_token1] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(9), + [anon_sym_PERCENT] = ACTIONS(9), + [sym__heading_begin] = ACTIONS(472), + [sym__div_begin] = ACTIONS(17), + [sym__code_block_begin] = ACTIONS(474), + [sym_list_marker_dash] = ACTIONS(21), + [sym_list_marker_star] = ACTIONS(23), + [sym_list_marker_plus] = ACTIONS(25), + [sym__list_marker_task_begin] = ACTIONS(27), + [sym_list_marker_definition] = ACTIONS(29), + [sym_list_marker_decimal_period] = ACTIONS(31), + [sym_list_marker_lower_alpha_period] = ACTIONS(33), + [sym_list_marker_upper_alpha_period] = ACTIONS(35), + [sym_list_marker_lower_roman_period] = ACTIONS(37), + [sym_list_marker_upper_roman_period] = ACTIONS(39), + [sym_list_marker_decimal_paren] = ACTIONS(41), + [sym_list_marker_lower_alpha_paren] = ACTIONS(43), + [sym_list_marker_upper_alpha_paren] = ACTIONS(45), + [sym_list_marker_lower_roman_paren] = ACTIONS(47), + [sym_list_marker_upper_roman_paren] = ACTIONS(49), + [sym_list_marker_decimal_parens] = ACTIONS(51), + [sym_list_marker_lower_alpha_parens] = ACTIONS(53), + [sym_list_marker_upper_alpha_parens] = ACTIONS(55), + [sym_list_marker_lower_roman_parens] = ACTIONS(57), + [sym_list_marker_upper_roman_parens] = ACTIONS(59), + [sym__block_quote_begin] = ACTIONS(476), + [sym__block_quote_continuation] = ACTIONS(63), + [sym__thematic_break_dash] = ACTIONS(478), + [sym__thematic_break_star] = ACTIONS(478), + [sym__table_header_begin] = ACTIONS(480), + [sym__table_separator_begin] = ACTIONS(482), + [sym__table_row_begin] = ACTIONS(484), + [sym__block_attribute_begin] = ACTIONS(486), }, [58] = { - [sym__block_element] = STATE(141), - [sym_heading] = STATE(141), - [sym_list] = STATE(141), - [sym__list_dash] = STATE(144), - [sym__list_item_dash] = STATE(553), - [sym__list_plus] = STATE(144), - [sym__list_item_plus] = STATE(554), - [sym__list_star] = STATE(144), - [sym__list_item_star] = STATE(556), - [sym__list_task] = STATE(144), - [sym__list_item_task] = STATE(558), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(144), - [sym__list_item_definition] = STATE(769), - [sym__list_decimal_period] = STATE(144), - [sym__list_item_decimal_period] = STATE(776), - [sym__list_decimal_paren] = STATE(144), - [sym__list_item_decimal_paren] = STATE(790), - [sym__list_decimal_parens] = STATE(144), - [sym__list_item_decimal_parens] = STATE(793), - [sym__list_lower_alpha_period] = STATE(144), - [sym__list_item_lower_alpha_period] = STATE(822), - [sym__list_lower_alpha_paren] = STATE(144), - [sym__list_item_lower_alpha_paren] = STATE(684), - [sym__list_lower_alpha_parens] = STATE(144), - [sym__list_item_lower_alpha_parens] = STATE(688), - [sym__list_upper_alpha_period] = STATE(144), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(144), - [sym__list_item_upper_alpha_paren] = STATE(705), - [sym__list_upper_alpha_parens] = STATE(144), - [sym__list_item_upper_alpha_parens] = STATE(711), - [sym__list_lower_roman_period] = STATE(144), - [sym__list_item_lower_roman_period] = STATE(712), - [sym__list_lower_roman_paren] = STATE(144), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(144), - [sym__list_item_lower_roman_parens] = STATE(728), - [sym__list_upper_roman_period] = STATE(144), - [sym__list_item_upper_roman_period] = STATE(734), - [sym__list_upper_roman_paren] = STATE(144), - [sym__list_item_upper_roman_paren] = STATE(830), - [sym__list_upper_roman_parens] = STATE(144), - [sym__list_item_upper_roman_parens] = STATE(725), - [sym_table] = STATE(141), - [sym__table_row] = STATE(66), - [sym_table_header] = STATE(66), - [sym_table_separator] = STATE(66), - [sym_table_row] = STATE(66), - [sym_footnote] = STATE(141), - [sym_footnote_marker_begin] = STATE(1141), - [sym_div] = STATE(141), - [sym__div_marker_begin] = STATE(1057), - [sym_code_block] = STATE(141), - [sym_raw_block] = STATE(141), - [sym_thematic_break] = STATE(141), - [sym_block_quote] = STATE(141), - [sym__block_quote_prefix] = STATE(225), - [sym_link_reference_definition] = STATE(141), - [sym_block_attribute] = STATE(141), - [sym__paragraph] = STATE(141), + [sym__block_element] = STATE(419), + [sym_heading] = STATE(419), + [sym_list] = STATE(419), + [sym__list_dash] = STATE(736), + [sym__list_item_dash] = STATE(645), + [sym__list_plus] = STATE(736), + [sym__list_item_plus] = STATE(661), + [sym__list_star] = STATE(736), + [sym__list_item_star] = STATE(573), + [sym__list_task] = STATE(736), + [sym__list_item_task] = STATE(590), + [sym_list_marker_task] = STATE(43), + [sym__list_definition] = STATE(736), + [sym__list_item_definition] = STATE(740), + [sym__list_decimal_period] = STATE(736), + [sym__list_item_decimal_period] = STATE(743), + [sym__list_decimal_paren] = STATE(736), + [sym__list_item_decimal_paren] = STATE(748), + [sym__list_decimal_parens] = STATE(736), + [sym__list_item_decimal_parens] = STATE(768), + [sym__list_lower_alpha_period] = STATE(736), + [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_lower_alpha_paren] = STATE(736), + [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_lower_alpha_parens] = STATE(736), + [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_upper_alpha_period] = STATE(736), + [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_upper_alpha_paren] = STATE(736), + [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_upper_alpha_parens] = STATE(736), + [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_lower_roman_period] = STATE(736), + [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_lower_roman_paren] = STATE(736), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(736), + [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_upper_roman_period] = STATE(736), + [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_upper_roman_paren] = STATE(736), + [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_upper_roman_parens] = STATE(736), + [sym__list_item_upper_roman_parens] = STATE(819), + [sym_table] = STATE(419), + [sym__table_row] = STATE(233), + [sym_table_header] = STATE(233), + [sym_table_separator] = STATE(233), + [sym_table_row] = STATE(233), + [sym_footnote] = STATE(419), + [sym_footnote_marker_begin] = STATE(1138), + [sym_div] = STATE(419), + [sym__div_marker_begin] = STATE(1037), + [sym_code_block] = STATE(419), + [sym_raw_block] = STATE(419), + [sym_thematic_break] = STATE(419), + [sym_block_quote] = STATE(419), + [sym__block_quote_content] = STATE(944), + [sym__block_quote_prefix] = STATE(222), + [sym_link_reference_definition] = STATE(419), + [sym_block_attribute] = STATE(419), + [sym__paragraph] = STATE(419), [sym__paragraph_content] = STATE(750), - [sym__paragraph_inline_content] = STATE(778), - [sym__inline] = STATE(655), + [sym__paragraph_inline_content] = STATE(837), + [sym__inline] = STATE(656), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(334), - [aux_sym__list_plus_repeat1] = STATE(335), - [aux_sym__list_star_repeat1] = STATE(336), - [aux_sym__list_task_repeat1] = STATE(309), - [aux_sym__list_definition_repeat1] = STATE(425), - [aux_sym__list_decimal_period_repeat1] = STATE(426), - [aux_sym__list_decimal_paren_repeat1] = STATE(427), - [aux_sym__list_decimal_parens_repeat1] = STATE(428), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(429), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(430), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(431), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(432), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(433), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(434), - [aux_sym__list_lower_roman_period_repeat1] = STATE(435), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(436), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(437), - [aux_sym__list_upper_roman_period_repeat1] = STATE(438), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(439), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(440), - [aux_sym_table_repeat1] = STATE(66), - [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__list_dash_repeat1] = STATE(347), + [aux_sym__list_plus_repeat1] = STATE(348), + [aux_sym__list_star_repeat1] = STATE(331), + [aux_sym__list_task_repeat1] = STATE(292), + [aux_sym__list_definition_repeat1] = STATE(478), + [aux_sym__list_decimal_period_repeat1] = STATE(479), + [aux_sym__list_decimal_paren_repeat1] = STATE(480), + [aux_sym__list_decimal_parens_repeat1] = STATE(481), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(482), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(483), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(484), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(485), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(486), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(487), + [aux_sym__list_lower_roman_period_repeat1] = STATE(488), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(489), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(490), + [aux_sym__list_upper_roman_period_repeat1] = STATE(491), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(492), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(493), + [aux_sym_table_repeat1] = STATE(233), + [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), - [anon_sym_LBRACK] = ACTIONS(458), - [anon_sym_LBRACK_CARET] = ACTIONS(458), - [anon_sym_LBRACE] = ACTIONS(458), - [anon_sym_DOT] = ACTIONS(458), - [aux_sym_identifier_token1] = ACTIONS(458), - [aux_sym__inline_token1] = ACTIONS(458), - [anon_sym_PERCENT] = ACTIONS(458), - [sym__newline] = ACTIONS(462), - [sym__heading_begin] = ACTIONS(17), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(189), - [sym_list_marker_dash] = ACTIONS(460), - [sym_list_marker_star] = ACTIONS(460), - [sym_list_marker_plus] = ACTIONS(460), - [sym__list_marker_task_begin] = ACTIONS(460), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(191), - [sym__block_quote_continuation] = ACTIONS(460), - [sym__thematic_break_dash] = ACTIONS(193), - [sym__thematic_break_star] = ACTIONS(193), - [sym__table_header_begin] = ACTIONS(460), - [sym__table_separator_begin] = ACTIONS(460), - [sym__table_row_begin] = ACTIONS(460), + [anon_sym_LBRACK] = ACTIONS(470), + [anon_sym_LBRACK_CARET] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(9), + [aux_sym_identifier_token1] = ACTIONS(9), + [aux_sym__inline_token1] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(9), + [anon_sym_PERCENT] = ACTIONS(9), + [sym__heading_begin] = ACTIONS(472), + [sym__div_begin] = ACTIONS(17), + [sym__code_block_begin] = ACTIONS(474), + [sym_list_marker_dash] = ACTIONS(21), + [sym_list_marker_star] = ACTIONS(23), + [sym_list_marker_plus] = ACTIONS(25), + [sym__list_marker_task_begin] = ACTIONS(27), + [sym_list_marker_definition] = ACTIONS(29), + [sym_list_marker_decimal_period] = ACTIONS(31), + [sym_list_marker_lower_alpha_period] = ACTIONS(33), + [sym_list_marker_upper_alpha_period] = ACTIONS(35), + [sym_list_marker_lower_roman_period] = ACTIONS(37), + [sym_list_marker_upper_roman_period] = ACTIONS(39), + [sym_list_marker_decimal_paren] = ACTIONS(41), + [sym_list_marker_lower_alpha_paren] = ACTIONS(43), + [sym_list_marker_upper_alpha_paren] = ACTIONS(45), + [sym_list_marker_lower_roman_paren] = ACTIONS(47), + [sym_list_marker_upper_roman_paren] = ACTIONS(49), + [sym_list_marker_decimal_parens] = ACTIONS(51), + [sym_list_marker_lower_alpha_parens] = ACTIONS(53), + [sym_list_marker_upper_alpha_parens] = ACTIONS(55), + [sym_list_marker_lower_roman_parens] = ACTIONS(57), + [sym_list_marker_upper_roman_parens] = ACTIONS(59), + [sym__block_quote_begin] = ACTIONS(476), + [sym__block_quote_continuation] = ACTIONS(63), + [sym__thematic_break_dash] = ACTIONS(478), + [sym__thematic_break_star] = ACTIONS(478), + [sym__table_header_begin] = ACTIONS(480), + [sym__table_separator_begin] = ACTIONS(482), + [sym__table_row_begin] = ACTIONS(484), + [sym__block_attribute_begin] = ACTIONS(486), }, [59] = { - [sym__block_element] = STATE(423), - [sym_heading] = STATE(423), - [sym_list] = STATE(423), - [sym__list_dash] = STATE(786), - [sym__list_item_dash] = STATE(553), - [sym__list_plus] = STATE(786), - [sym__list_item_plus] = STATE(554), - [sym__list_star] = STATE(786), - [sym__list_item_star] = STATE(556), - [sym__list_task] = STATE(786), - [sym__list_item_task] = STATE(558), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(786), - [sym__list_item_definition] = STATE(769), - [sym__list_decimal_period] = STATE(786), - [sym__list_item_decimal_period] = STATE(776), - [sym__list_decimal_paren] = STATE(786), - [sym__list_item_decimal_paren] = STATE(790), - [sym__list_decimal_parens] = STATE(786), - [sym__list_item_decimal_parens] = STATE(793), - [sym__list_lower_alpha_period] = STATE(786), - [sym__list_item_lower_alpha_period] = STATE(822), - [sym__list_lower_alpha_paren] = STATE(786), - [sym__list_item_lower_alpha_paren] = STATE(684), - [sym__list_lower_alpha_parens] = STATE(786), - [sym__list_item_lower_alpha_parens] = STATE(688), - [sym__list_upper_alpha_period] = STATE(786), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(786), - [sym__list_item_upper_alpha_paren] = STATE(705), - [sym__list_upper_alpha_parens] = STATE(786), - [sym__list_item_upper_alpha_parens] = STATE(711), - [sym__list_lower_roman_period] = STATE(786), - [sym__list_item_lower_roman_period] = STATE(712), - [sym__list_lower_roman_paren] = STATE(786), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(786), - [sym__list_item_lower_roman_parens] = STATE(728), - [sym__list_upper_roman_period] = STATE(786), - [sym__list_item_upper_roman_period] = STATE(734), - [sym__list_upper_roman_paren] = STATE(786), - [sym__list_item_upper_roman_paren] = STATE(830), - [sym__list_upper_roman_parens] = STATE(786), - [sym__list_item_upper_roman_parens] = STATE(725), - [sym_table] = STATE(423), - [sym__table_row] = STATE(237), - [sym_table_header] = STATE(237), - [sym_table_separator] = STATE(237), - [sym_table_row] = STATE(237), - [sym_footnote] = STATE(423), - [sym_footnote_marker_begin] = STATE(1139), - [sym_div] = STATE(423), - [sym__div_marker_begin] = STATE(1038), - [sym_code_block] = STATE(423), - [sym_raw_block] = STATE(423), - [sym_thematic_break] = STATE(423), - [sym_block_quote] = STATE(423), - [sym__block_quote_content] = STATE(900), - [sym__block_quote_prefix] = STATE(221), - [sym_link_reference_definition] = STATE(423), - [sym_block_attribute] = STATE(423), - [sym__paragraph] = STATE(423), - [sym__paragraph_content] = STATE(679), - [sym__paragraph_inline_content] = STATE(778), - [sym__inline] = STATE(655), + [sym__block_element] = STATE(419), + [sym_heading] = STATE(419), + [sym_list] = STATE(419), + [sym__list_dash] = STATE(736), + [sym__list_item_dash] = STATE(645), + [sym__list_plus] = STATE(736), + [sym__list_item_plus] = STATE(661), + [sym__list_star] = STATE(736), + [sym__list_item_star] = STATE(573), + [sym__list_task] = STATE(736), + [sym__list_item_task] = STATE(590), + [sym_list_marker_task] = STATE(43), + [sym__list_definition] = STATE(736), + [sym__list_item_definition] = STATE(740), + [sym__list_decimal_period] = STATE(736), + [sym__list_item_decimal_period] = STATE(743), + [sym__list_decimal_paren] = STATE(736), + [sym__list_item_decimal_paren] = STATE(748), + [sym__list_decimal_parens] = STATE(736), + [sym__list_item_decimal_parens] = STATE(768), + [sym__list_lower_alpha_period] = STATE(736), + [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_lower_alpha_paren] = STATE(736), + [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_lower_alpha_parens] = STATE(736), + [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_upper_alpha_period] = STATE(736), + [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_upper_alpha_paren] = STATE(736), + [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_upper_alpha_parens] = STATE(736), + [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_lower_roman_period] = STATE(736), + [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_lower_roman_paren] = STATE(736), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(736), + [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_upper_roman_period] = STATE(736), + [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_upper_roman_paren] = STATE(736), + [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_upper_roman_parens] = STATE(736), + [sym__list_item_upper_roman_parens] = STATE(819), + [sym_table] = STATE(419), + [sym__table_row] = STATE(233), + [sym_table_header] = STATE(233), + [sym_table_separator] = STATE(233), + [sym_table_row] = STATE(233), + [sym_footnote] = STATE(419), + [sym_footnote_marker_begin] = STATE(1138), + [sym_div] = STATE(419), + [sym__div_marker_begin] = STATE(1037), + [sym_code_block] = STATE(419), + [sym_raw_block] = STATE(419), + [sym_thematic_break] = STATE(419), + [sym_block_quote] = STATE(419), + [sym__block_quote_content] = STATE(1130), + [sym__block_quote_prefix] = STATE(222), + [sym_link_reference_definition] = STATE(419), + [sym_block_attribute] = STATE(419), + [sym__paragraph] = STATE(419), + [sym__paragraph_content] = STATE(750), + [sym__paragraph_inline_content] = STATE(837), + [sym__inline] = STATE(656), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(322), - [aux_sym__list_plus_repeat1] = STATE(323), - [aux_sym__list_star_repeat1] = STATE(316), - [aux_sym__list_task_repeat1] = STATE(305), - [aux_sym__list_definition_repeat1] = STATE(484), - [aux_sym__list_decimal_period_repeat1] = STATE(485), - [aux_sym__list_decimal_paren_repeat1] = STATE(545), - [aux_sym__list_decimal_parens_repeat1] = STATE(489), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(490), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(491), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(492), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(493), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(494), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(495), - [aux_sym__list_lower_roman_period_repeat1] = STATE(496), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(497), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(498), - [aux_sym__list_upper_roman_period_repeat1] = STATE(499), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(500), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(501), - [aux_sym_table_repeat1] = STATE(237), - [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__list_dash_repeat1] = STATE(347), + [aux_sym__list_plus_repeat1] = STATE(348), + [aux_sym__list_star_repeat1] = STATE(331), + [aux_sym__list_task_repeat1] = STATE(292), + [aux_sym__list_definition_repeat1] = STATE(478), + [aux_sym__list_decimal_period_repeat1] = STATE(479), + [aux_sym__list_decimal_paren_repeat1] = STATE(480), + [aux_sym__list_decimal_parens_repeat1] = STATE(481), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(482), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(483), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(484), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(485), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(486), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(487), + [aux_sym__list_lower_roman_period_repeat1] = STATE(488), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(489), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(490), + [aux_sym__list_upper_roman_period_repeat1] = STATE(491), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(492), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(493), + [aux_sym_table_repeat1] = STATE(233), + [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), [anon_sym_LBRACK] = ACTIONS(470), [anon_sym_LBRACK_CARET] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(472), - [anon_sym_DOT] = ACTIONS(11), - [aux_sym_identifier_token1] = ACTIONS(11), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_PERCENT] = ACTIONS(11), - [sym__heading_begin] = ACTIONS(474), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(476), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(478), - [sym__block_quote_continuation] = ACTIONS(65), - [sym__thematic_break_dash] = ACTIONS(480), - [sym__thematic_break_star] = ACTIONS(480), - [sym__table_header_begin] = ACTIONS(482), - [sym__table_separator_begin] = ACTIONS(484), - [sym__table_row_begin] = ACTIONS(486), + [anon_sym_DOT] = ACTIONS(9), + [aux_sym_identifier_token1] = ACTIONS(9), + [aux_sym__inline_token1] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(9), + [anon_sym_PERCENT] = ACTIONS(9), + [sym__heading_begin] = ACTIONS(472), + [sym__div_begin] = ACTIONS(17), + [sym__code_block_begin] = ACTIONS(474), + [sym_list_marker_dash] = ACTIONS(21), + [sym_list_marker_star] = ACTIONS(23), + [sym_list_marker_plus] = ACTIONS(25), + [sym__list_marker_task_begin] = ACTIONS(27), + [sym_list_marker_definition] = ACTIONS(29), + [sym_list_marker_decimal_period] = ACTIONS(31), + [sym_list_marker_lower_alpha_period] = ACTIONS(33), + [sym_list_marker_upper_alpha_period] = ACTIONS(35), + [sym_list_marker_lower_roman_period] = ACTIONS(37), + [sym_list_marker_upper_roman_period] = ACTIONS(39), + [sym_list_marker_decimal_paren] = ACTIONS(41), + [sym_list_marker_lower_alpha_paren] = ACTIONS(43), + [sym_list_marker_upper_alpha_paren] = ACTIONS(45), + [sym_list_marker_lower_roman_paren] = ACTIONS(47), + [sym_list_marker_upper_roman_paren] = ACTIONS(49), + [sym_list_marker_decimal_parens] = ACTIONS(51), + [sym_list_marker_lower_alpha_parens] = ACTIONS(53), + [sym_list_marker_upper_alpha_parens] = ACTIONS(55), + [sym_list_marker_lower_roman_parens] = ACTIONS(57), + [sym_list_marker_upper_roman_parens] = ACTIONS(59), + [sym__block_quote_begin] = ACTIONS(476), + [sym__block_quote_continuation] = ACTIONS(63), + [sym__thematic_break_dash] = ACTIONS(478), + [sym__thematic_break_star] = ACTIONS(478), + [sym__table_header_begin] = ACTIONS(480), + [sym__table_separator_begin] = ACTIONS(482), + [sym__table_row_begin] = ACTIONS(484), + [sym__block_attribute_begin] = ACTIONS(486), }, [60] = { - [sym__block_element] = STATE(663), - [sym_heading] = STATE(663), - [sym_list] = STATE(663), - [sym__list_dash] = STATE(566), - [sym__list_item_dash] = STATE(553), - [sym__list_plus] = STATE(566), - [sym__list_item_plus] = STATE(554), - [sym__list_star] = STATE(566), - [sym__list_item_star] = STATE(556), - [sym__list_task] = STATE(566), - [sym__list_item_task] = STATE(558), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(566), - [sym__list_item_definition] = STATE(769), - [sym__list_decimal_period] = STATE(566), - [sym__list_item_decimal_period] = STATE(776), - [sym__list_decimal_paren] = STATE(566), - [sym__list_item_decimal_paren] = STATE(790), - [sym__list_decimal_parens] = STATE(566), - [sym__list_item_decimal_parens] = STATE(793), - [sym__list_lower_alpha_period] = STATE(566), - [sym__list_item_lower_alpha_period] = STATE(822), - [sym__list_lower_alpha_paren] = STATE(566), - [sym__list_item_lower_alpha_paren] = STATE(684), - [sym__list_lower_alpha_parens] = STATE(566), - [sym__list_item_lower_alpha_parens] = STATE(688), - [sym__list_upper_alpha_period] = STATE(566), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(566), - [sym__list_item_upper_alpha_paren] = STATE(705), - [sym__list_upper_alpha_parens] = STATE(566), - [sym__list_item_upper_alpha_parens] = STATE(711), - [sym__list_lower_roman_period] = STATE(566), - [sym__list_item_lower_roman_period] = STATE(712), - [sym__list_lower_roman_paren] = STATE(566), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(566), - [sym__list_item_lower_roman_parens] = STATE(728), - [sym__list_upper_roman_period] = STATE(566), - [sym__list_item_upper_roman_period] = STATE(734), - [sym__list_upper_roman_paren] = STATE(566), - [sym__list_item_upper_roman_paren] = STATE(830), - [sym__list_upper_roman_parens] = STATE(566), - [sym__list_item_upper_roman_parens] = STATE(725), - [sym_table] = STATE(663), - [sym__table_row] = STATE(236), - [sym_table_header] = STATE(236), - [sym_table_separator] = STATE(236), - [sym_table_row] = STATE(236), - [sym_footnote] = STATE(663), - [sym_footnote_marker_begin] = STATE(1143), - [sym_div] = STATE(663), - [sym__div_marker_begin] = STATE(1075), - [sym_code_block] = STATE(663), - [sym_raw_block] = STATE(663), - [sym_thematic_break] = STATE(663), - [sym_block_quote] = STATE(663), + [sym__block_element] = STATE(649), + [sym_heading] = STATE(649), + [sym_list] = STATE(649), + [sym__list_dash] = STATE(601), + [sym__list_item_dash] = STATE(645), + [sym__list_plus] = STATE(601), + [sym__list_item_plus] = STATE(661), + [sym__list_star] = STATE(601), + [sym__list_item_star] = STATE(573), + [sym__list_task] = STATE(601), + [sym__list_item_task] = STATE(590), + [sym_list_marker_task] = STATE(43), + [sym__list_definition] = STATE(601), + [sym__list_item_definition] = STATE(740), + [sym__list_decimal_period] = STATE(601), + [sym__list_item_decimal_period] = STATE(743), + [sym__list_decimal_paren] = STATE(601), + [sym__list_item_decimal_paren] = STATE(748), + [sym__list_decimal_parens] = STATE(601), + [sym__list_item_decimal_parens] = STATE(768), + [sym__list_lower_alpha_period] = STATE(601), + [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_lower_alpha_paren] = STATE(601), + [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_lower_alpha_parens] = STATE(601), + [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_upper_alpha_period] = STATE(601), + [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_upper_alpha_paren] = STATE(601), + [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_upper_alpha_parens] = STATE(601), + [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_lower_roman_period] = STATE(601), + [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_lower_roman_paren] = STATE(601), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(601), + [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_upper_roman_period] = STATE(601), + [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_upper_roman_paren] = STATE(601), + [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_upper_roman_parens] = STATE(601), + [sym__list_item_upper_roman_parens] = STATE(819), + [sym_table] = STATE(649), + [sym__table_row] = STATE(229), + [sym_table_header] = STATE(229), + [sym_table_separator] = STATE(229), + [sym_table_row] = STATE(229), + [sym_footnote] = STATE(649), + [sym_footnote_marker_begin] = STATE(1142), + [sym_div] = STATE(649), + [sym__div_marker_begin] = STATE(1074), + [sym_code_block] = STATE(649), + [sym_raw_block] = STATE(649), + [sym_thematic_break] = STATE(649), + [sym_block_quote] = STATE(649), [sym__block_quote_prefix] = STATE(224), - [sym_link_reference_definition] = STATE(663), - [sym_block_attribute] = STATE(663), - [sym__paragraph] = STATE(663), - [sym__paragraph_content] = STATE(779), - [sym__paragraph_inline_content] = STATE(778), - [sym__inline] = STATE(655), + [sym_link_reference_definition] = STATE(649), + [sym_block_attribute] = STATE(649), + [sym__paragraph] = STATE(649), + [sym__paragraph_content] = STATE(816), + [sym__paragraph_inline_content] = STATE(837), + [sym__inline] = STATE(656), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(342), - [aux_sym__list_plus_repeat1] = STATE(343), - [aux_sym__list_star_repeat1] = STATE(344), - [aux_sym__list_task_repeat1] = STATE(313), - [aux_sym__list_definition_repeat1] = STATE(460), - [aux_sym__list_decimal_period_repeat1] = STATE(461), - [aux_sym__list_decimal_paren_repeat1] = STATE(462), - [aux_sym__list_decimal_parens_repeat1] = STATE(463), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(464), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(465), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(466), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(467), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(468), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(469), - [aux_sym__list_lower_roman_period_repeat1] = STATE(470), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(471), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(472), - [aux_sym__list_upper_roman_period_repeat1] = STATE(473), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(474), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(475), - [aux_sym_table_repeat1] = STATE(236), - [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__list_dash_repeat1] = STATE(328), + [aux_sym__list_plus_repeat1] = STATE(329), + [aux_sym__list_star_repeat1] = STATE(330), + [aux_sym__list_task_repeat1] = STATE(302), + [aux_sym__list_definition_repeat1] = STATE(510), + [aux_sym__list_decimal_period_repeat1] = STATE(511), + [aux_sym__list_decimal_paren_repeat1] = STATE(512), + [aux_sym__list_decimal_parens_repeat1] = STATE(513), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(514), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(515), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(516), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(517), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(518), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(519), + [aux_sym__list_lower_roman_period_repeat1] = STATE(520), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(521), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(522), + [aux_sym__list_upper_roman_period_repeat1] = STATE(523), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(524), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(525), + [aux_sym_table_repeat1] = STATE(229), + [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), - [anon_sym_LBRACK] = ACTIONS(458), - [anon_sym_LBRACK_CARET] = ACTIONS(458), - [anon_sym_LBRACE] = ACTIONS(458), - [anon_sym_DOT] = ACTIONS(458), - [aux_sym_identifier_token1] = ACTIONS(458), - [aux_sym__inline_token1] = ACTIONS(458), - [anon_sym_PERCENT] = ACTIONS(458), + [anon_sym_LBRACK] = ACTIONS(460), + [anon_sym_LBRACK_CARET] = ACTIONS(460), + [anon_sym_DOT] = ACTIONS(460), + [aux_sym_identifier_token1] = ACTIONS(460), + [aux_sym__inline_token1] = ACTIONS(460), + [anon_sym_LBRACE] = ACTIONS(460), + [anon_sym_PERCENT] = ACTIONS(460), [sym__newline] = ACTIONS(488), - [sym__heading_begin] = ACTIONS(438), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(440), - [sym_list_marker_dash] = ACTIONS(460), - [sym_list_marker_star] = ACTIONS(460), - [sym_list_marker_plus] = ACTIONS(460), - [sym__list_marker_task_begin] = ACTIONS(460), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(442), - [sym__block_quote_continuation] = ACTIONS(460), - [sym__thematic_break_dash] = ACTIONS(446), - [sym__thematic_break_star] = ACTIONS(446), - [sym__table_header_begin] = ACTIONS(460), - [sym__table_separator_begin] = ACTIONS(460), - [sym__table_row_begin] = ACTIONS(460), + [sym__heading_begin] = ACTIONS(436), + [sym__div_begin] = ACTIONS(17), + [sym__code_block_begin] = ACTIONS(438), + [sym_list_marker_dash] = ACTIONS(462), + [sym_list_marker_star] = ACTIONS(462), + [sym_list_marker_plus] = ACTIONS(462), + [sym__list_marker_task_begin] = ACTIONS(462), + [sym_list_marker_definition] = ACTIONS(29), + [sym_list_marker_decimal_period] = ACTIONS(31), + [sym_list_marker_lower_alpha_period] = ACTIONS(33), + [sym_list_marker_upper_alpha_period] = ACTIONS(35), + [sym_list_marker_lower_roman_period] = ACTIONS(37), + [sym_list_marker_upper_roman_period] = ACTIONS(39), + [sym_list_marker_decimal_paren] = ACTIONS(41), + [sym_list_marker_lower_alpha_paren] = ACTIONS(43), + [sym_list_marker_upper_alpha_paren] = ACTIONS(45), + [sym_list_marker_lower_roman_paren] = ACTIONS(47), + [sym_list_marker_upper_roman_paren] = ACTIONS(49), + [sym_list_marker_decimal_parens] = ACTIONS(51), + [sym_list_marker_lower_alpha_parens] = ACTIONS(53), + [sym_list_marker_upper_alpha_parens] = ACTIONS(55), + [sym_list_marker_lower_roman_parens] = ACTIONS(57), + [sym_list_marker_upper_roman_parens] = ACTIONS(59), + [sym__block_quote_begin] = ACTIONS(440), + [sym__block_quote_continuation] = ACTIONS(462), + [sym__thematic_break_dash] = ACTIONS(444), + [sym__thematic_break_star] = ACTIONS(444), + [sym__table_header_begin] = ACTIONS(462), + [sym__table_separator_begin] = ACTIONS(462), + [sym__table_row_begin] = ACTIONS(462), + [sym__block_attribute_begin] = ACTIONS(452), }, [61] = { - [sym__block_element] = STATE(423), - [sym_heading] = STATE(423), - [sym_list] = STATE(423), - [sym__list_dash] = STATE(786), - [sym__list_item_dash] = STATE(553), - [sym__list_plus] = STATE(786), - [sym__list_item_plus] = STATE(554), - [sym__list_star] = STATE(786), - [sym__list_item_star] = STATE(556), - [sym__list_task] = STATE(786), - [sym__list_item_task] = STATE(558), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(786), - [sym__list_item_definition] = STATE(769), - [sym__list_decimal_period] = STATE(786), - [sym__list_item_decimal_period] = STATE(776), - [sym__list_decimal_paren] = STATE(786), - [sym__list_item_decimal_paren] = STATE(790), - [sym__list_decimal_parens] = STATE(786), - [sym__list_item_decimal_parens] = STATE(793), - [sym__list_lower_alpha_period] = STATE(786), - [sym__list_item_lower_alpha_period] = STATE(822), - [sym__list_lower_alpha_paren] = STATE(786), - [sym__list_item_lower_alpha_paren] = STATE(684), - [sym__list_lower_alpha_parens] = STATE(786), - [sym__list_item_lower_alpha_parens] = STATE(688), - [sym__list_upper_alpha_period] = STATE(786), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(786), - [sym__list_item_upper_alpha_paren] = STATE(705), - [sym__list_upper_alpha_parens] = STATE(786), - [sym__list_item_upper_alpha_parens] = STATE(711), - [sym__list_lower_roman_period] = STATE(786), - [sym__list_item_lower_roman_period] = STATE(712), - [sym__list_lower_roman_paren] = STATE(786), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(786), - [sym__list_item_lower_roman_parens] = STATE(728), - [sym__list_upper_roman_period] = STATE(786), - [sym__list_item_upper_roman_period] = STATE(734), - [sym__list_upper_roman_paren] = STATE(786), - [sym__list_item_upper_roman_paren] = STATE(830), - [sym__list_upper_roman_parens] = STATE(786), - [sym__list_item_upper_roman_parens] = STATE(725), - [sym_table] = STATE(423), - [sym__table_row] = STATE(237), - [sym_table_header] = STATE(237), - [sym_table_separator] = STATE(237), - [sym_table_row] = STATE(237), - [sym_footnote] = STATE(423), - [sym_footnote_marker_begin] = STATE(1139), - [sym_div] = STATE(423), - [sym__div_marker_begin] = STATE(1038), - [sym_code_block] = STATE(423), - [sym_raw_block] = STATE(423), - [sym_thematic_break] = STATE(423), - [sym_block_quote] = STATE(423), - [sym__block_quote_content] = STATE(928), - [sym__block_quote_prefix] = STATE(221), - [sym_link_reference_definition] = STATE(423), - [sym_block_attribute] = STATE(423), - [sym__paragraph] = STATE(423), - [sym__paragraph_content] = STATE(679), - [sym__paragraph_inline_content] = STATE(778), - [sym__inline] = STATE(655), + [sym__block_element] = STATE(936), + [sym_heading] = STATE(936), + [sym_list] = STATE(936), + [sym__list_dash] = STATE(1008), + [sym__list_item_dash] = STATE(645), + [sym__list_plus] = STATE(1008), + [sym__list_item_plus] = STATE(661), + [sym__list_star] = STATE(1008), + [sym__list_item_star] = STATE(573), + [sym__list_task] = STATE(1008), + [sym__list_item_task] = STATE(590), + [sym_list_marker_task] = STATE(43), + [sym__list_definition] = STATE(1008), + [sym__list_item_definition] = STATE(740), + [sym__list_decimal_period] = STATE(1008), + [sym__list_item_decimal_period] = STATE(743), + [sym__list_decimal_paren] = STATE(1008), + [sym__list_item_decimal_paren] = STATE(748), + [sym__list_decimal_parens] = STATE(1008), + [sym__list_item_decimal_parens] = STATE(768), + [sym__list_lower_alpha_period] = STATE(1008), + [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_lower_alpha_paren] = STATE(1008), + [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_lower_alpha_parens] = STATE(1008), + [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_upper_alpha_period] = STATE(1008), + [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_upper_alpha_paren] = STATE(1008), + [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_upper_alpha_parens] = STATE(1008), + [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_lower_roman_period] = STATE(1008), + [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_lower_roman_paren] = STATE(1008), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(1008), + [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_upper_roman_period] = STATE(1008), + [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_upper_roman_paren] = STATE(1008), + [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_upper_roman_parens] = STATE(1008), + [sym__list_item_upper_roman_parens] = STATE(819), + [sym_table] = STATE(936), + [sym__table_row] = STATE(234), + [sym_table_header] = STATE(234), + [sym_table_separator] = STATE(234), + [sym_table_row] = STATE(234), + [sym_footnote] = STATE(936), + [sym_footnote_marker_begin] = STATE(1136), + [sym_div] = STATE(936), + [sym__div_marker_begin] = STATE(1018), + [sym_code_block] = STATE(936), + [sym_raw_block] = STATE(936), + [sym_thematic_break] = STATE(936), + [sym_block_quote] = STATE(936), + [sym__block_quote_prefix] = STATE(225), + [sym_link_reference_definition] = STATE(936), + [sym_block_attribute] = STATE(936), + [sym__paragraph] = STATE(936), + [sym__paragraph_content] = STATE(724), + [sym__paragraph_inline_content] = STATE(837), + [sym__inline] = STATE(656), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(322), - [aux_sym__list_plus_repeat1] = STATE(323), - [aux_sym__list_star_repeat1] = STATE(316), - [aux_sym__list_task_repeat1] = STATE(305), - [aux_sym__list_definition_repeat1] = STATE(484), - [aux_sym__list_decimal_period_repeat1] = STATE(485), - [aux_sym__list_decimal_paren_repeat1] = STATE(545), - [aux_sym__list_decimal_parens_repeat1] = STATE(489), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(490), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(491), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(492), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(493), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(494), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(495), - [aux_sym__list_lower_roman_period_repeat1] = STATE(496), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(497), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(498), - [aux_sym__list_upper_roman_period_repeat1] = STATE(499), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(500), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(501), - [aux_sym_table_repeat1] = STATE(237), - [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__list_dash_repeat1] = STATE(318), + [aux_sym__list_plus_repeat1] = STATE(319), + [aux_sym__list_star_repeat1] = STATE(320), + [aux_sym__list_task_repeat1] = STATE(287), + [aux_sym__list_definition_repeat1] = STATE(459), + [aux_sym__list_decimal_period_repeat1] = STATE(460), + [aux_sym__list_decimal_paren_repeat1] = STATE(461), + [aux_sym__list_decimal_parens_repeat1] = STATE(462), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(463), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(464), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(465), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(466), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(467), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(468), + [aux_sym__list_lower_roman_period_repeat1] = STATE(469), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(470), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(471), + [aux_sym__list_upper_roman_period_repeat1] = STATE(472), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(473), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym_table_repeat1] = STATE(234), + [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), - [anon_sym_LBRACK] = ACTIONS(470), - [anon_sym_LBRACK_CARET] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(472), - [anon_sym_DOT] = ACTIONS(11), - [aux_sym_identifier_token1] = ACTIONS(11), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_PERCENT] = ACTIONS(11), - [sym__heading_begin] = ACTIONS(474), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(476), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(478), - [sym__block_quote_continuation] = ACTIONS(65), - [sym__thematic_break_dash] = ACTIONS(480), - [sym__thematic_break_star] = ACTIONS(480), - [sym__table_header_begin] = ACTIONS(482), - [sym__table_separator_begin] = ACTIONS(484), - [sym__table_row_begin] = ACTIONS(486), + [anon_sym_LBRACK] = ACTIONS(460), + [anon_sym_LBRACK_CARET] = ACTIONS(460), + [anon_sym_DOT] = ACTIONS(460), + [aux_sym_identifier_token1] = ACTIONS(460), + [aux_sym__inline_token1] = ACTIONS(460), + [anon_sym_LBRACE] = ACTIONS(460), + [anon_sym_PERCENT] = ACTIONS(460), + [sym__newline] = ACTIONS(490), + [sym__heading_begin] = ACTIONS(368), + [sym__div_begin] = ACTIONS(17), + [sym__code_block_begin] = ACTIONS(370), + [sym_list_marker_dash] = ACTIONS(462), + [sym_list_marker_star] = ACTIONS(462), + [sym_list_marker_plus] = ACTIONS(462), + [sym__list_marker_task_begin] = ACTIONS(462), + [sym_list_marker_definition] = ACTIONS(29), + [sym_list_marker_decimal_period] = ACTIONS(31), + [sym_list_marker_lower_alpha_period] = ACTIONS(33), + [sym_list_marker_upper_alpha_period] = ACTIONS(35), + [sym_list_marker_lower_roman_period] = ACTIONS(37), + [sym_list_marker_upper_roman_period] = ACTIONS(39), + [sym_list_marker_decimal_paren] = ACTIONS(41), + [sym_list_marker_lower_alpha_paren] = ACTIONS(43), + [sym_list_marker_upper_alpha_paren] = ACTIONS(45), + [sym_list_marker_lower_roman_paren] = ACTIONS(47), + [sym_list_marker_upper_roman_paren] = ACTIONS(49), + [sym_list_marker_decimal_parens] = ACTIONS(51), + [sym_list_marker_lower_alpha_parens] = ACTIONS(53), + [sym_list_marker_upper_alpha_parens] = ACTIONS(55), + [sym_list_marker_lower_roman_parens] = ACTIONS(57), + [sym_list_marker_upper_roman_parens] = ACTIONS(59), + [sym__block_quote_begin] = ACTIONS(372), + [sym__block_quote_continuation] = ACTIONS(462), + [sym__thematic_break_dash] = ACTIONS(376), + [sym__thematic_break_star] = ACTIONS(376), + [sym__table_header_begin] = ACTIONS(462), + [sym__table_separator_begin] = ACTIONS(462), + [sym__table_row_begin] = ACTIONS(462), + [sym__block_attribute_begin] = ACTIONS(384), }, [62] = { - [sym__block_element] = STATE(1001), - [sym_heading] = STATE(1001), - [sym_list] = STATE(1001), - [sym__list_dash] = STATE(998), - [sym__list_item_dash] = STATE(553), - [sym__list_plus] = STATE(998), - [sym__list_item_plus] = STATE(554), - [sym__list_star] = STATE(998), - [sym__list_item_star] = STATE(556), - [sym__list_task] = STATE(998), - [sym__list_item_task] = STATE(558), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(998), - [sym__list_item_definition] = STATE(769), - [sym__list_decimal_period] = STATE(998), - [sym__list_item_decimal_period] = STATE(776), - [sym__list_decimal_paren] = STATE(998), - [sym__list_item_decimal_paren] = STATE(790), - [sym__list_decimal_parens] = STATE(998), - [sym__list_item_decimal_parens] = STATE(793), - [sym__list_lower_alpha_period] = STATE(998), - [sym__list_item_lower_alpha_period] = STATE(822), - [sym__list_lower_alpha_paren] = STATE(998), - [sym__list_item_lower_alpha_paren] = STATE(684), - [sym__list_lower_alpha_parens] = STATE(998), - [sym__list_item_lower_alpha_parens] = STATE(688), - [sym__list_upper_alpha_period] = STATE(998), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(998), - [sym__list_item_upper_alpha_paren] = STATE(705), - [sym__list_upper_alpha_parens] = STATE(998), - [sym__list_item_upper_alpha_parens] = STATE(711), - [sym__list_lower_roman_period] = STATE(998), - [sym__list_item_lower_roman_period] = STATE(712), - [sym__list_lower_roman_paren] = STATE(998), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(998), - [sym__list_item_lower_roman_parens] = STATE(728), - [sym__list_upper_roman_period] = STATE(998), - [sym__list_item_upper_roman_period] = STATE(734), - [sym__list_upper_roman_paren] = STATE(998), - [sym__list_item_upper_roman_paren] = STATE(830), - [sym__list_upper_roman_parens] = STATE(998), - [sym__list_item_upper_roman_parens] = STATE(725), - [sym_table] = STATE(1001), - [sym__table_row] = STATE(241), - [sym_table_header] = STATE(241), - [sym_table_separator] = STATE(241), - [sym_table_row] = STATE(241), - [sym_footnote] = STATE(1001), - [sym_footnote_marker_begin] = STATE(1137), - [sym_div] = STATE(1001), - [sym__div_marker_begin] = STATE(1019), - [sym_code_block] = STATE(1001), - [sym_raw_block] = STATE(1001), - [sym_thematic_break] = STATE(1001), - [sym_block_quote] = STATE(1001), - [sym__block_quote_prefix] = STATE(223), - [sym_link_reference_definition] = STATE(1001), - [sym_block_attribute] = STATE(1001), - [sym__paragraph] = STATE(1001), - [sym__paragraph_content] = STATE(707), - [sym__paragraph_inline_content] = STATE(778), - [sym__inline] = STATE(655), + [sym__block_element] = STATE(419), + [sym_heading] = STATE(419), + [sym_list] = STATE(419), + [sym__list_dash] = STATE(736), + [sym__list_item_dash] = STATE(645), + [sym__list_plus] = STATE(736), + [sym__list_item_plus] = STATE(661), + [sym__list_star] = STATE(736), + [sym__list_item_star] = STATE(573), + [sym__list_task] = STATE(736), + [sym__list_item_task] = STATE(590), + [sym_list_marker_task] = STATE(43), + [sym__list_definition] = STATE(736), + [sym__list_item_definition] = STATE(740), + [sym__list_decimal_period] = STATE(736), + [sym__list_item_decimal_period] = STATE(743), + [sym__list_decimal_paren] = STATE(736), + [sym__list_item_decimal_paren] = STATE(748), + [sym__list_decimal_parens] = STATE(736), + [sym__list_item_decimal_parens] = STATE(768), + [sym__list_lower_alpha_period] = STATE(736), + [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_lower_alpha_paren] = STATE(736), + [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_lower_alpha_parens] = STATE(736), + [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_upper_alpha_period] = STATE(736), + [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_upper_alpha_paren] = STATE(736), + [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_upper_alpha_parens] = STATE(736), + [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_lower_roman_period] = STATE(736), + [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_lower_roman_paren] = STATE(736), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(736), + [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_upper_roman_period] = STATE(736), + [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_upper_roman_paren] = STATE(736), + [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_upper_roman_parens] = STATE(736), + [sym__list_item_upper_roman_parens] = STATE(819), + [sym_table] = STATE(419), + [sym__table_row] = STATE(233), + [sym_table_header] = STATE(233), + [sym_table_separator] = STATE(233), + [sym_table_row] = STATE(233), + [sym_footnote] = STATE(419), + [sym_footnote_marker_begin] = STATE(1138), + [sym_div] = STATE(419), + [sym__div_marker_begin] = STATE(1037), + [sym_code_block] = STATE(419), + [sym_raw_block] = STATE(419), + [sym_thematic_break] = STATE(419), + [sym_block_quote] = STATE(419), + [sym__block_quote_content] = STATE(895), + [sym__block_quote_prefix] = STATE(222), + [sym_link_reference_definition] = STATE(419), + [sym_block_attribute] = STATE(419), + [sym__paragraph] = STATE(419), + [sym__paragraph_content] = STATE(750), + [sym__paragraph_inline_content] = STATE(837), + [sym__inline] = STATE(656), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(326), - [aux_sym__list_plus_repeat1] = STATE(329), - [aux_sym__list_star_repeat1] = STATE(330), - [aux_sym__list_task_repeat1] = STATE(298), - [aux_sym__list_definition_repeat1] = STATE(508), - [aux_sym__list_decimal_period_repeat1] = STATE(509), - [aux_sym__list_decimal_paren_repeat1] = STATE(510), - [aux_sym__list_decimal_parens_repeat1] = STATE(511), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(512), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(513), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(514), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(515), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(516), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(517), - [aux_sym__list_lower_roman_period_repeat1] = STATE(526), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(531), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(534), - [aux_sym__list_upper_roman_period_repeat1] = STATE(544), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(441), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(442), - [aux_sym_table_repeat1] = STATE(241), - [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__list_dash_repeat1] = STATE(347), + [aux_sym__list_plus_repeat1] = STATE(348), + [aux_sym__list_star_repeat1] = STATE(331), + [aux_sym__list_task_repeat1] = STATE(292), + [aux_sym__list_definition_repeat1] = STATE(478), + [aux_sym__list_decimal_period_repeat1] = STATE(479), + [aux_sym__list_decimal_paren_repeat1] = STATE(480), + [aux_sym__list_decimal_parens_repeat1] = STATE(481), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(482), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(483), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(484), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(485), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(486), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(487), + [aux_sym__list_lower_roman_period_repeat1] = STATE(488), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(489), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(490), + [aux_sym__list_upper_roman_period_repeat1] = STATE(491), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(492), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(493), + [aux_sym_table_repeat1] = STATE(233), + [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), - [anon_sym_LBRACK] = ACTIONS(458), - [anon_sym_LBRACK_CARET] = ACTIONS(458), - [anon_sym_LBRACE] = ACTIONS(458), - [anon_sym_DOT] = ACTIONS(458), - [aux_sym_identifier_token1] = ACTIONS(458), - [aux_sym__inline_token1] = ACTIONS(458), - [anon_sym_PERCENT] = ACTIONS(458), - [sym__newline] = ACTIONS(490), - [sym__heading_begin] = ACTIONS(370), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(372), - [sym_list_marker_dash] = ACTIONS(460), - [sym_list_marker_star] = ACTIONS(460), - [sym_list_marker_plus] = ACTIONS(460), - [sym__list_marker_task_begin] = ACTIONS(460), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(374), - [sym__block_quote_continuation] = ACTIONS(460), - [sym__thematic_break_dash] = ACTIONS(378), - [sym__thematic_break_star] = ACTIONS(378), - [sym__table_header_begin] = ACTIONS(460), - [sym__table_separator_begin] = ACTIONS(460), - [sym__table_row_begin] = ACTIONS(460), + [anon_sym_LBRACK] = ACTIONS(470), + [anon_sym_LBRACK_CARET] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(9), + [aux_sym_identifier_token1] = ACTIONS(9), + [aux_sym__inline_token1] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(9), + [anon_sym_PERCENT] = ACTIONS(9), + [sym__heading_begin] = ACTIONS(472), + [sym__div_begin] = ACTIONS(17), + [sym__code_block_begin] = ACTIONS(474), + [sym_list_marker_dash] = ACTIONS(21), + [sym_list_marker_star] = ACTIONS(23), + [sym_list_marker_plus] = ACTIONS(25), + [sym__list_marker_task_begin] = ACTIONS(27), + [sym_list_marker_definition] = ACTIONS(29), + [sym_list_marker_decimal_period] = ACTIONS(31), + [sym_list_marker_lower_alpha_period] = ACTIONS(33), + [sym_list_marker_upper_alpha_period] = ACTIONS(35), + [sym_list_marker_lower_roman_period] = ACTIONS(37), + [sym_list_marker_upper_roman_period] = ACTIONS(39), + [sym_list_marker_decimal_paren] = ACTIONS(41), + [sym_list_marker_lower_alpha_paren] = ACTIONS(43), + [sym_list_marker_upper_alpha_paren] = ACTIONS(45), + [sym_list_marker_lower_roman_paren] = ACTIONS(47), + [sym_list_marker_upper_roman_paren] = ACTIONS(49), + [sym_list_marker_decimal_parens] = ACTIONS(51), + [sym_list_marker_lower_alpha_parens] = ACTIONS(53), + [sym_list_marker_upper_alpha_parens] = ACTIONS(55), + [sym_list_marker_lower_roman_parens] = ACTIONS(57), + [sym_list_marker_upper_roman_parens] = ACTIONS(59), + [sym__block_quote_begin] = ACTIONS(476), + [sym__block_quote_continuation] = ACTIONS(63), + [sym__thematic_break_dash] = ACTIONS(478), + [sym__thematic_break_star] = ACTIONS(478), + [sym__table_header_begin] = ACTIONS(480), + [sym__table_separator_begin] = ACTIONS(482), + [sym__table_row_begin] = ACTIONS(484), + [sym__block_attribute_begin] = ACTIONS(486), }, [63] = { - [sym__block_element] = STATE(423), - [sym_heading] = STATE(423), - [sym_list] = STATE(423), - [sym__list_dash] = STATE(786), - [sym__list_item_dash] = STATE(553), - [sym__list_plus] = STATE(786), - [sym__list_item_plus] = STATE(554), - [sym__list_star] = STATE(786), - [sym__list_item_star] = STATE(556), - [sym__list_task] = STATE(786), - [sym__list_item_task] = STATE(558), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(786), - [sym__list_item_definition] = STATE(769), - [sym__list_decimal_period] = STATE(786), - [sym__list_item_decimal_period] = STATE(776), - [sym__list_decimal_paren] = STATE(786), - [sym__list_item_decimal_paren] = STATE(790), - [sym__list_decimal_parens] = STATE(786), - [sym__list_item_decimal_parens] = STATE(793), - [sym__list_lower_alpha_period] = STATE(786), - [sym__list_item_lower_alpha_period] = STATE(822), - [sym__list_lower_alpha_paren] = STATE(786), - [sym__list_item_lower_alpha_paren] = STATE(684), - [sym__list_lower_alpha_parens] = STATE(786), - [sym__list_item_lower_alpha_parens] = STATE(688), - [sym__list_upper_alpha_period] = STATE(786), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(786), - [sym__list_item_upper_alpha_paren] = STATE(705), - [sym__list_upper_alpha_parens] = STATE(786), - [sym__list_item_upper_alpha_parens] = STATE(711), - [sym__list_lower_roman_period] = STATE(786), - [sym__list_item_lower_roman_period] = STATE(712), - [sym__list_lower_roman_paren] = STATE(786), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(786), - [sym__list_item_lower_roman_parens] = STATE(728), - [sym__list_upper_roman_period] = STATE(786), - [sym__list_item_upper_roman_period] = STATE(734), - [sym__list_upper_roman_paren] = STATE(786), - [sym__list_item_upper_roman_paren] = STATE(830), - [sym__list_upper_roman_parens] = STATE(786), - [sym__list_item_upper_roman_parens] = STATE(725), - [sym_table] = STATE(423), - [sym__table_row] = STATE(237), - [sym_table_header] = STATE(237), - [sym_table_separator] = STATE(237), - [sym_table_row] = STATE(237), - [sym_footnote] = STATE(423), - [sym_footnote_marker_begin] = STATE(1139), - [sym_div] = STATE(423), - [sym__div_marker_begin] = STATE(1038), - [sym_code_block] = STATE(423), - [sym_raw_block] = STATE(423), - [sym_thematic_break] = STATE(423), - [sym_block_quote] = STATE(423), - [sym__block_quote_content] = STATE(1017), - [sym__block_quote_prefix] = STATE(221), - [sym_link_reference_definition] = STATE(423), - [sym_block_attribute] = STATE(423), - [sym__paragraph] = STATE(423), - [sym__paragraph_content] = STATE(679), - [sym__paragraph_inline_content] = STATE(778), - [sym__inline] = STATE(655), + [sym__block_element] = STATE(126), + [sym_heading] = STATE(126), + [sym_list] = STATE(126), + [sym__list_dash] = STATE(129), + [sym__list_item_dash] = STATE(645), + [sym__list_plus] = STATE(129), + [sym__list_item_plus] = STATE(661), + [sym__list_star] = STATE(129), + [sym__list_item_star] = STATE(573), + [sym__list_task] = STATE(129), + [sym__list_item_task] = STATE(590), + [sym_list_marker_task] = STATE(43), + [sym__list_definition] = STATE(129), + [sym__list_item_definition] = STATE(740), + [sym__list_decimal_period] = STATE(129), + [sym__list_item_decimal_period] = STATE(743), + [sym__list_decimal_paren] = STATE(129), + [sym__list_item_decimal_paren] = STATE(748), + [sym__list_decimal_parens] = STATE(129), + [sym__list_item_decimal_parens] = STATE(768), + [sym__list_lower_alpha_period] = STATE(129), + [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_lower_alpha_paren] = STATE(129), + [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_lower_alpha_parens] = STATE(129), + [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_upper_alpha_period] = STATE(129), + [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_upper_alpha_paren] = STATE(129), + [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_upper_alpha_parens] = STATE(129), + [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_lower_roman_period] = STATE(129), + [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_lower_roman_paren] = STATE(129), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(129), + [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_upper_roman_period] = STATE(129), + [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_upper_roman_paren] = STATE(129), + [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_upper_roman_parens] = STATE(129), + [sym__list_item_upper_roman_parens] = STATE(819), + [sym_table] = STATE(126), + [sym__table_row] = STATE(67), + [sym_table_header] = STATE(67), + [sym_table_separator] = STATE(67), + [sym_table_row] = STATE(67), + [sym_footnote] = STATE(126), + [sym_footnote_marker_begin] = STATE(894), + [sym_div] = STATE(126), + [sym__div_marker_begin] = STATE(1056), + [sym_code_block] = STATE(126), + [sym_raw_block] = STATE(126), + [sym_thematic_break] = STATE(126), + [sym_block_quote] = STATE(126), + [sym__block_quote_prefix] = STATE(223), + [sym_link_reference_definition] = STATE(126), + [sym_block_attribute] = STATE(126), + [sym__paragraph] = STATE(126), + [sym__paragraph_content] = STATE(784), + [sym__paragraph_inline_content] = STATE(837), + [sym__inline] = STATE(656), [sym__symbol_fallback] = STATE(273), [aux_sym__list_dash_repeat1] = STATE(322), [aux_sym__list_plus_repeat1] = STATE(323), - [aux_sym__list_star_repeat1] = STATE(316), - [aux_sym__list_task_repeat1] = STATE(305), - [aux_sym__list_definition_repeat1] = STATE(484), - [aux_sym__list_decimal_period_repeat1] = STATE(485), - [aux_sym__list_decimal_paren_repeat1] = STATE(545), - [aux_sym__list_decimal_parens_repeat1] = STATE(489), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(490), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(491), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(492), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(493), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(494), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(495), - [aux_sym__list_lower_roman_period_repeat1] = STATE(496), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(497), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(498), - [aux_sym__list_upper_roman_period_repeat1] = STATE(499), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(500), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(501), - [aux_sym_table_repeat1] = STATE(237), - [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__list_star_repeat1] = STATE(324), + [aux_sym__list_task_repeat1] = STATE(285), + [aux_sym__list_definition_repeat1] = STATE(494), + [aux_sym__list_decimal_period_repeat1] = STATE(495), + [aux_sym__list_decimal_paren_repeat1] = STATE(496), + [aux_sym__list_decimal_parens_repeat1] = STATE(497), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(498), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(499), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(500), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(501), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(502), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(503), + [aux_sym__list_lower_roman_period_repeat1] = STATE(504), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(505), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(506), + [aux_sym__list_upper_roman_period_repeat1] = STATE(507), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(508), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(509), + [aux_sym_table_repeat1] = STATE(67), + [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), - [anon_sym_LBRACK] = ACTIONS(470), - [anon_sym_LBRACK_CARET] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(472), - [anon_sym_DOT] = ACTIONS(11), - [aux_sym_identifier_token1] = ACTIONS(11), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_PERCENT] = ACTIONS(11), - [sym__heading_begin] = ACTIONS(474), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(476), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(478), - [sym__block_quote_continuation] = ACTIONS(65), - [sym__thematic_break_dash] = ACTIONS(480), - [sym__thematic_break_star] = ACTIONS(480), - [sym__table_header_begin] = ACTIONS(482), - [sym__table_separator_begin] = ACTIONS(484), - [sym__table_row_begin] = ACTIONS(486), + [anon_sym_LBRACK] = ACTIONS(460), + [anon_sym_LBRACK_CARET] = ACTIONS(460), + [anon_sym_DOT] = ACTIONS(460), + [aux_sym_identifier_token1] = ACTIONS(460), + [aux_sym__inline_token1] = ACTIONS(460), + [anon_sym_LBRACE] = ACTIONS(460), + [anon_sym_PERCENT] = ACTIONS(460), + [sym__newline] = ACTIONS(464), + [sym__heading_begin] = ACTIONS(15), + [sym__div_begin] = ACTIONS(17), + [sym__code_block_begin] = ACTIONS(83), + [sym_list_marker_dash] = ACTIONS(462), + [sym_list_marker_star] = ACTIONS(462), + [sym_list_marker_plus] = ACTIONS(462), + [sym__list_marker_task_begin] = ACTIONS(462), + [sym_list_marker_definition] = ACTIONS(29), + [sym_list_marker_decimal_period] = ACTIONS(31), + [sym_list_marker_lower_alpha_period] = ACTIONS(33), + [sym_list_marker_upper_alpha_period] = ACTIONS(35), + [sym_list_marker_lower_roman_period] = ACTIONS(37), + [sym_list_marker_upper_roman_period] = ACTIONS(39), + [sym_list_marker_decimal_paren] = ACTIONS(41), + [sym_list_marker_lower_alpha_paren] = ACTIONS(43), + [sym_list_marker_upper_alpha_paren] = ACTIONS(45), + [sym_list_marker_lower_roman_paren] = ACTIONS(47), + [sym_list_marker_upper_roman_paren] = ACTIONS(49), + [sym_list_marker_decimal_parens] = ACTIONS(51), + [sym_list_marker_lower_alpha_parens] = ACTIONS(53), + [sym_list_marker_upper_alpha_parens] = ACTIONS(55), + [sym_list_marker_lower_roman_parens] = ACTIONS(57), + [sym_list_marker_upper_roman_parens] = ACTIONS(59), + [sym__block_quote_begin] = ACTIONS(85), + [sym__block_quote_continuation] = ACTIONS(462), + [sym__thematic_break_dash] = ACTIONS(87), + [sym__thematic_break_star] = ACTIONS(87), + [sym__table_header_begin] = ACTIONS(462), + [sym__table_separator_begin] = ACTIONS(462), + [sym__table_row_begin] = ACTIONS(462), + [sym__block_attribute_begin] = ACTIONS(95), }, [64] = { - [sym__block_element] = STATE(423), - [sym_heading] = STATE(423), - [sym_list] = STATE(423), - [sym__list_dash] = STATE(786), - [sym__list_item_dash] = STATE(553), - [sym__list_plus] = STATE(786), - [sym__list_item_plus] = STATE(554), - [sym__list_star] = STATE(786), - [sym__list_item_star] = STATE(556), - [sym__list_task] = STATE(786), - [sym__list_item_task] = STATE(558), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(786), - [sym__list_item_definition] = STATE(769), - [sym__list_decimal_period] = STATE(786), - [sym__list_item_decimal_period] = STATE(776), - [sym__list_decimal_paren] = STATE(786), - [sym__list_item_decimal_paren] = STATE(790), - [sym__list_decimal_parens] = STATE(786), - [sym__list_item_decimal_parens] = STATE(793), - [sym__list_lower_alpha_period] = STATE(786), - [sym__list_item_lower_alpha_period] = STATE(822), - [sym__list_lower_alpha_paren] = STATE(786), - [sym__list_item_lower_alpha_paren] = STATE(684), - [sym__list_lower_alpha_parens] = STATE(786), - [sym__list_item_lower_alpha_parens] = STATE(688), - [sym__list_upper_alpha_period] = STATE(786), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(786), - [sym__list_item_upper_alpha_paren] = STATE(705), - [sym__list_upper_alpha_parens] = STATE(786), - [sym__list_item_upper_alpha_parens] = STATE(711), - [sym__list_lower_roman_period] = STATE(786), - [sym__list_item_lower_roman_period] = STATE(712), - [sym__list_lower_roman_paren] = STATE(786), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(786), - [sym__list_item_lower_roman_parens] = STATE(728), - [sym__list_upper_roman_period] = STATE(786), - [sym__list_item_upper_roman_period] = STATE(734), - [sym__list_upper_roman_paren] = STATE(786), - [sym__list_item_upper_roman_paren] = STATE(830), - [sym__list_upper_roman_parens] = STATE(786), - [sym__list_item_upper_roman_parens] = STATE(725), - [sym_table] = STATE(423), - [sym__table_row] = STATE(237), - [sym_table_header] = STATE(237), - [sym_table_separator] = STATE(237), - [sym_table_row] = STATE(237), - [sym_footnote] = STATE(423), - [sym_footnote_marker_begin] = STATE(1139), - [sym_div] = STATE(423), - [sym__div_marker_begin] = STATE(1038), - [sym_code_block] = STATE(423), - [sym_raw_block] = STATE(423), - [sym_thematic_break] = STATE(423), - [sym_block_quote] = STATE(423), - [sym__block_quote_content] = STATE(1150), - [sym__block_quote_prefix] = STATE(221), - [sym_link_reference_definition] = STATE(423), - [sym_block_attribute] = STATE(423), - [sym__paragraph] = STATE(423), - [sym__paragraph_content] = STATE(679), - [sym__paragraph_inline_content] = STATE(778), - [sym__inline] = STATE(655), + [sym__block_element] = STATE(419), + [sym_heading] = STATE(419), + [sym_list] = STATE(419), + [sym__list_dash] = STATE(736), + [sym__list_item_dash] = STATE(645), + [sym__list_plus] = STATE(736), + [sym__list_item_plus] = STATE(661), + [sym__list_star] = STATE(736), + [sym__list_item_star] = STATE(573), + [sym__list_task] = STATE(736), + [sym__list_item_task] = STATE(590), + [sym_list_marker_task] = STATE(43), + [sym__list_definition] = STATE(736), + [sym__list_item_definition] = STATE(740), + [sym__list_decimal_period] = STATE(736), + [sym__list_item_decimal_period] = STATE(743), + [sym__list_decimal_paren] = STATE(736), + [sym__list_item_decimal_paren] = STATE(748), + [sym__list_decimal_parens] = STATE(736), + [sym__list_item_decimal_parens] = STATE(768), + [sym__list_lower_alpha_period] = STATE(736), + [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_lower_alpha_paren] = STATE(736), + [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_lower_alpha_parens] = STATE(736), + [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_upper_alpha_period] = STATE(736), + [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_upper_alpha_paren] = STATE(736), + [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_upper_alpha_parens] = STATE(736), + [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_lower_roman_period] = STATE(736), + [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_lower_roman_paren] = STATE(736), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(736), + [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_upper_roman_period] = STATE(736), + [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_upper_roman_paren] = STATE(736), + [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_upper_roman_parens] = STATE(736), + [sym__list_item_upper_roman_parens] = STATE(819), + [sym_table] = STATE(419), + [sym__table_row] = STATE(233), + [sym_table_header] = STATE(233), + [sym_table_separator] = STATE(233), + [sym_table_row] = STATE(233), + [sym_footnote] = STATE(419), + [sym_footnote_marker_begin] = STATE(1138), + [sym_div] = STATE(419), + [sym__div_marker_begin] = STATE(1037), + [sym_code_block] = STATE(419), + [sym_raw_block] = STATE(419), + [sym_thematic_break] = STATE(419), + [sym_block_quote] = STATE(419), + [sym__block_quote_content] = STATE(949), + [sym__block_quote_prefix] = STATE(222), + [sym_link_reference_definition] = STATE(419), + [sym_block_attribute] = STATE(419), + [sym__paragraph] = STATE(419), + [sym__paragraph_content] = STATE(750), + [sym__paragraph_inline_content] = STATE(837), + [sym__inline] = STATE(656), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(322), - [aux_sym__list_plus_repeat1] = STATE(323), - [aux_sym__list_star_repeat1] = STATE(316), - [aux_sym__list_task_repeat1] = STATE(305), - [aux_sym__list_definition_repeat1] = STATE(484), - [aux_sym__list_decimal_period_repeat1] = STATE(485), - [aux_sym__list_decimal_paren_repeat1] = STATE(545), - [aux_sym__list_decimal_parens_repeat1] = STATE(489), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(490), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(491), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(492), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(493), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(494), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(495), - [aux_sym__list_lower_roman_period_repeat1] = STATE(496), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(497), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(498), - [aux_sym__list_upper_roman_period_repeat1] = STATE(499), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(500), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(501), - [aux_sym_table_repeat1] = STATE(237), - [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__list_dash_repeat1] = STATE(347), + [aux_sym__list_plus_repeat1] = STATE(348), + [aux_sym__list_star_repeat1] = STATE(331), + [aux_sym__list_task_repeat1] = STATE(292), + [aux_sym__list_definition_repeat1] = STATE(478), + [aux_sym__list_decimal_period_repeat1] = STATE(479), + [aux_sym__list_decimal_paren_repeat1] = STATE(480), + [aux_sym__list_decimal_parens_repeat1] = STATE(481), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(482), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(483), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(484), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(485), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(486), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(487), + [aux_sym__list_lower_roman_period_repeat1] = STATE(488), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(489), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(490), + [aux_sym__list_upper_roman_period_repeat1] = STATE(491), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(492), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(493), + [aux_sym_table_repeat1] = STATE(233), + [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), [anon_sym_LBRACK] = ACTIONS(470), [anon_sym_LBRACK_CARET] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(472), - [anon_sym_DOT] = ACTIONS(11), - [aux_sym_identifier_token1] = ACTIONS(11), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_PERCENT] = ACTIONS(11), - [sym__heading_begin] = ACTIONS(474), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(476), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(478), - [sym__block_quote_continuation] = ACTIONS(65), - [sym__thematic_break_dash] = ACTIONS(480), - [sym__thematic_break_star] = ACTIONS(480), - [sym__table_header_begin] = ACTIONS(482), - [sym__table_separator_begin] = ACTIONS(484), - [sym__table_row_begin] = ACTIONS(486), + [anon_sym_DOT] = ACTIONS(9), + [aux_sym_identifier_token1] = ACTIONS(9), + [aux_sym__inline_token1] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(9), + [anon_sym_PERCENT] = ACTIONS(9), + [sym__heading_begin] = ACTIONS(472), + [sym__div_begin] = ACTIONS(17), + [sym__code_block_begin] = ACTIONS(474), + [sym_list_marker_dash] = ACTIONS(21), + [sym_list_marker_star] = ACTIONS(23), + [sym_list_marker_plus] = ACTIONS(25), + [sym__list_marker_task_begin] = ACTIONS(27), + [sym_list_marker_definition] = ACTIONS(29), + [sym_list_marker_decimal_period] = ACTIONS(31), + [sym_list_marker_lower_alpha_period] = ACTIONS(33), + [sym_list_marker_upper_alpha_period] = ACTIONS(35), + [sym_list_marker_lower_roman_period] = ACTIONS(37), + [sym_list_marker_upper_roman_period] = ACTIONS(39), + [sym_list_marker_decimal_paren] = ACTIONS(41), + [sym_list_marker_lower_alpha_paren] = ACTIONS(43), + [sym_list_marker_upper_alpha_paren] = ACTIONS(45), + [sym_list_marker_lower_roman_paren] = ACTIONS(47), + [sym_list_marker_upper_roman_paren] = ACTIONS(49), + [sym_list_marker_decimal_parens] = ACTIONS(51), + [sym_list_marker_lower_alpha_parens] = ACTIONS(53), + [sym_list_marker_upper_alpha_parens] = ACTIONS(55), + [sym_list_marker_lower_roman_parens] = ACTIONS(57), + [sym_list_marker_upper_roman_parens] = ACTIONS(59), + [sym__block_quote_begin] = ACTIONS(476), + [sym__block_quote_continuation] = ACTIONS(63), + [sym__thematic_break_dash] = ACTIONS(478), + [sym__thematic_break_star] = ACTIONS(478), + [sym__table_header_begin] = ACTIONS(480), + [sym__table_separator_begin] = ACTIONS(482), + [sym__table_row_begin] = ACTIONS(484), + [sym__block_attribute_begin] = ACTIONS(486), }, [65] = { - [sym__block_element] = STATE(792), - [sym_list] = STATE(792), - [sym__list_dash] = STATE(786), - [sym__list_item_dash] = STATE(553), - [sym__list_plus] = STATE(786), - [sym__list_item_plus] = STATE(554), - [sym__list_star] = STATE(786), - [sym__list_item_star] = STATE(556), - [sym__list_task] = STATE(786), - [sym__list_item_task] = STATE(558), - [sym_list_marker_task] = STATE(45), - [sym__list_definition] = STATE(786), - [sym__list_item_definition] = STATE(769), - [sym__list_decimal_period] = STATE(786), - [sym__list_item_decimal_period] = STATE(776), - [sym__list_decimal_paren] = STATE(786), - [sym__list_item_decimal_paren] = STATE(790), - [sym__list_decimal_parens] = STATE(786), - [sym__list_item_decimal_parens] = STATE(793), - [sym__list_lower_alpha_period] = STATE(786), - [sym__list_item_lower_alpha_period] = STATE(822), - [sym__list_lower_alpha_paren] = STATE(786), - [sym__list_item_lower_alpha_paren] = STATE(684), - [sym__list_lower_alpha_parens] = STATE(786), - [sym__list_item_lower_alpha_parens] = STATE(688), - [sym__list_upper_alpha_period] = STATE(786), - [sym__list_item_upper_alpha_period] = STATE(704), - [sym__list_upper_alpha_paren] = STATE(786), - [sym__list_item_upper_alpha_paren] = STATE(705), - [sym__list_upper_alpha_parens] = STATE(786), - [sym__list_item_upper_alpha_parens] = STATE(711), - [sym__list_lower_roman_period] = STATE(786), - [sym__list_item_lower_roman_period] = STATE(712), - [sym__list_lower_roman_paren] = STATE(786), - [sym__list_item_lower_roman_paren] = STATE(726), - [sym__list_lower_roman_parens] = STATE(786), - [sym__list_item_lower_roman_parens] = STATE(728), - [sym__list_upper_roman_period] = STATE(786), - [sym__list_item_upper_roman_period] = STATE(734), - [sym__list_upper_roman_paren] = STATE(786), - [sym__list_item_upper_roman_paren] = STATE(830), - [sym__list_upper_roman_parens] = STATE(786), - [sym__list_item_upper_roman_parens] = STATE(725), - [sym_table] = STATE(792), - [sym__table_row] = STATE(237), - [sym_table_header] = STATE(237), - [sym_table_separator] = STATE(237), - [sym_table_row] = STATE(237), - [sym_footnote] = STATE(792), - [sym_footnote_marker_begin] = STATE(1139), - [sym_div] = STATE(792), - [sym__div_marker_begin] = STATE(1038), - [sym_code_block] = STATE(792), - [sym_raw_block] = STATE(792), - [sym_thematic_break] = STATE(792), - [sym_block_quote] = STATE(792), - [sym__block_quote_prefix] = STATE(221), - [sym_link_reference_definition] = STATE(792), - [sym_block_attribute] = STATE(792), - [sym__paragraph] = STATE(792), - [sym__paragraph_content] = STATE(679), - [sym__paragraph_inline_content] = STATE(778), - [sym__inline] = STATE(655), + [sym__block_element] = STATE(693), + [sym_list] = STATE(693), + [sym__list_dash] = STATE(736), + [sym__list_item_dash] = STATE(645), + [sym__list_plus] = STATE(736), + [sym__list_item_plus] = STATE(661), + [sym__list_star] = STATE(736), + [sym__list_item_star] = STATE(573), + [sym__list_task] = STATE(736), + [sym__list_item_task] = STATE(590), + [sym_list_marker_task] = STATE(43), + [sym__list_definition] = STATE(736), + [sym__list_item_definition] = STATE(740), + [sym__list_decimal_period] = STATE(736), + [sym__list_item_decimal_period] = STATE(743), + [sym__list_decimal_paren] = STATE(736), + [sym__list_item_decimal_paren] = STATE(748), + [sym__list_decimal_parens] = STATE(736), + [sym__list_item_decimal_parens] = STATE(768), + [sym__list_lower_alpha_period] = STATE(736), + [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_lower_alpha_paren] = STATE(736), + [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_lower_alpha_parens] = STATE(736), + [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_upper_alpha_period] = STATE(736), + [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_upper_alpha_paren] = STATE(736), + [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_upper_alpha_parens] = STATE(736), + [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_lower_roman_period] = STATE(736), + [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_lower_roman_paren] = STATE(736), + [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_lower_roman_parens] = STATE(736), + [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_upper_roman_period] = STATE(736), + [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_upper_roman_paren] = STATE(736), + [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_upper_roman_parens] = STATE(736), + [sym__list_item_upper_roman_parens] = STATE(819), + [sym_table] = STATE(693), + [sym__table_row] = STATE(233), + [sym_table_header] = STATE(233), + [sym_table_separator] = STATE(233), + [sym_table_row] = STATE(233), + [sym_footnote] = STATE(693), + [sym_footnote_marker_begin] = STATE(1138), + [sym_div] = STATE(693), + [sym__div_marker_begin] = STATE(1037), + [sym_code_block] = STATE(693), + [sym_raw_block] = STATE(693), + [sym_thematic_break] = STATE(693), + [sym_block_quote] = STATE(693), + [sym__block_quote_prefix] = STATE(222), + [sym_link_reference_definition] = STATE(693), + [sym_block_attribute] = STATE(693), + [sym__paragraph] = STATE(693), + [sym__paragraph_content] = STATE(750), + [sym__paragraph_inline_content] = STATE(837), + [sym__inline] = STATE(656), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(322), - [aux_sym__list_plus_repeat1] = STATE(323), - [aux_sym__list_star_repeat1] = STATE(316), - [aux_sym__list_task_repeat1] = STATE(305), - [aux_sym__list_definition_repeat1] = STATE(484), - [aux_sym__list_decimal_period_repeat1] = STATE(485), - [aux_sym__list_decimal_paren_repeat1] = STATE(545), - [aux_sym__list_decimal_parens_repeat1] = STATE(489), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(490), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(491), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(492), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(493), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(494), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(495), - [aux_sym__list_lower_roman_period_repeat1] = STATE(496), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(497), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(498), - [aux_sym__list_upper_roman_period_repeat1] = STATE(499), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(500), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(501), - [aux_sym_table_repeat1] = STATE(237), - [aux_sym__block_quote_prefix_repeat1] = STATE(234), + [aux_sym__list_dash_repeat1] = STATE(347), + [aux_sym__list_plus_repeat1] = STATE(348), + [aux_sym__list_star_repeat1] = STATE(331), + [aux_sym__list_task_repeat1] = STATE(292), + [aux_sym__list_definition_repeat1] = STATE(478), + [aux_sym__list_decimal_period_repeat1] = STATE(479), + [aux_sym__list_decimal_paren_repeat1] = STATE(480), + [aux_sym__list_decimal_parens_repeat1] = STATE(481), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(482), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(483), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(484), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(485), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(486), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(487), + [aux_sym__list_lower_roman_period_repeat1] = STATE(488), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(489), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(490), + [aux_sym__list_upper_roman_period_repeat1] = STATE(491), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(492), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(493), + [aux_sym_table_repeat1] = STATE(233), + [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), [anon_sym_LBRACK] = ACTIONS(470), [anon_sym_LBRACK_CARET] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(472), - [anon_sym_DOT] = ACTIONS(11), - [aux_sym_identifier_token1] = ACTIONS(11), - [aux_sym__inline_token1] = ACTIONS(11), - [anon_sym_PERCENT] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(9), + [aux_sym_identifier_token1] = ACTIONS(9), + [aux_sym__inline_token1] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(9), + [anon_sym_PERCENT] = ACTIONS(9), [sym__block_close] = ACTIONS(492), - [sym__div_begin] = ACTIONS(19), - [sym__code_block_begin] = ACTIONS(476), - [sym_list_marker_dash] = ACTIONS(23), - [sym_list_marker_star] = ACTIONS(25), - [sym_list_marker_plus] = ACTIONS(27), - [sym__list_marker_task_begin] = ACTIONS(29), - [sym_list_marker_definition] = ACTIONS(31), - [sym_list_marker_decimal_period] = ACTIONS(33), - [sym_list_marker_lower_alpha_period] = ACTIONS(35), - [sym_list_marker_upper_alpha_period] = ACTIONS(37), - [sym_list_marker_lower_roman_period] = ACTIONS(39), - [sym_list_marker_upper_roman_period] = ACTIONS(41), - [sym_list_marker_decimal_paren] = ACTIONS(43), - [sym_list_marker_lower_alpha_paren] = ACTIONS(45), - [sym_list_marker_upper_alpha_paren] = ACTIONS(47), - [sym_list_marker_lower_roman_paren] = ACTIONS(49), - [sym_list_marker_upper_roman_paren] = ACTIONS(51), - [sym_list_marker_decimal_parens] = ACTIONS(53), - [sym_list_marker_lower_alpha_parens] = ACTIONS(55), - [sym_list_marker_upper_alpha_parens] = ACTIONS(57), - [sym_list_marker_lower_roman_parens] = ACTIONS(59), - [sym_list_marker_upper_roman_parens] = ACTIONS(61), - [sym__block_quote_begin] = ACTIONS(478), + [sym__div_begin] = ACTIONS(17), + [sym__code_block_begin] = ACTIONS(474), + [sym_list_marker_dash] = ACTIONS(21), + [sym_list_marker_star] = ACTIONS(23), + [sym_list_marker_plus] = ACTIONS(25), + [sym__list_marker_task_begin] = ACTIONS(27), + [sym_list_marker_definition] = ACTIONS(29), + [sym_list_marker_decimal_period] = ACTIONS(31), + [sym_list_marker_lower_alpha_period] = ACTIONS(33), + [sym_list_marker_upper_alpha_period] = ACTIONS(35), + [sym_list_marker_lower_roman_period] = ACTIONS(37), + [sym_list_marker_upper_roman_period] = ACTIONS(39), + [sym_list_marker_decimal_paren] = ACTIONS(41), + [sym_list_marker_lower_alpha_paren] = ACTIONS(43), + [sym_list_marker_upper_alpha_paren] = ACTIONS(45), + [sym_list_marker_lower_roman_paren] = ACTIONS(47), + [sym_list_marker_upper_roman_paren] = ACTIONS(49), + [sym_list_marker_decimal_parens] = ACTIONS(51), + [sym_list_marker_lower_alpha_parens] = ACTIONS(53), + [sym_list_marker_upper_alpha_parens] = ACTIONS(55), + [sym_list_marker_lower_roman_parens] = ACTIONS(57), + [sym_list_marker_upper_roman_parens] = ACTIONS(59), + [sym__block_quote_begin] = ACTIONS(476), [sym__block_quote_continuation] = ACTIONS(494), - [sym__thematic_break_dash] = ACTIONS(480), - [sym__thematic_break_star] = ACTIONS(480), - [sym__table_header_begin] = ACTIONS(482), - [sym__table_separator_begin] = ACTIONS(484), - [sym__table_row_begin] = ACTIONS(486), + [sym__thematic_break_dash] = ACTIONS(478), + [sym__thematic_break_star] = ACTIONS(478), + [sym__table_header_begin] = ACTIONS(480), + [sym__table_separator_begin] = ACTIONS(482), + [sym__table_row_begin] = ACTIONS(484), + [sym__block_attribute_begin] = ACTIONS(486), }, }; static const uint16_t ts_small_parse_table[] = { [0] = 12, - ACTIONS(195), 1, + ACTIONS(67), 1, sym__table_header_begin, - ACTIONS(197), 1, + ACTIONS(69), 1, sym__table_separator_begin, - ACTIONS(199), 1, + ACTIONS(71), 1, sym__table_row_begin, ACTIONS(501), 1, sym__newline, @@ -13127,11 +13149,11 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, ACTIONS(505), 1, sym__table_caption_begin, - STATE(169), 1, + STATE(117), 1, sym_table_caption, - STATE(362), 1, + STATE(365), 1, sym__block_quote_prefix, - STATE(419), 1, + STATE(421), 1, aux_sym__block_quote_prefix_repeat1, STATE(69), 5, sym__table_row, @@ -13139,16 +13161,15 @@ static const uint16_t ts_small_parse_table[] = { sym_table_separator, sym_table_row, aux_sym_table_repeat1, - ACTIONS(497), 7, + ACTIONS(499), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(499), 27, - sym__block_close, + ACTIONS(497), 28, sym__heading_begin, sym__div_begin, sym__code_block_begin, @@ -13175,12 +13196,14 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_begin, sym__thematic_break_dash, sym__thematic_break_star, - [73] = 12, - ACTIONS(69), 1, + sym__block_attribute_begin, + ts_builtin_sym_end, + [74] = 12, + ACTIONS(89), 1, sym__table_header_begin, - ACTIONS(71), 1, + ACTIONS(91), 1, sym__table_separator_begin, - ACTIONS(73), 1, + ACTIONS(93), 1, sym__table_row_begin, ACTIONS(503), 1, sym__block_quote_continuation, @@ -13188,11 +13211,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, ACTIONS(509), 1, sym__table_caption_begin, - STATE(175), 1, + STATE(153), 1, sym_table_caption, - STATE(406), 1, + STATE(399), 1, sym__block_quote_prefix, - STATE(419), 1, + STATE(421), 1, aux_sym__block_quote_prefix_repeat1, STATE(68), 5, sym__table_row, @@ -13200,15 +13223,16 @@ static const uint16_t ts_small_parse_table[] = { sym_table_separator, sym_table_row, aux_sym_table_repeat1, - ACTIONS(497), 7, + ACTIONS(499), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(499), 27, + ACTIONS(497), 28, + sym__block_close, sym__heading_begin, sym__div_begin, sym__code_block_begin, @@ -13235,8 +13259,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_begin, sym__thematic_break_dash, sym__thematic_break_star, - ts_builtin_sym_end, - [146] = 9, + sym__block_attribute_begin, + [148] = 9, ACTIONS(515), 1, sym__block_quote_continuation, ACTIONS(518), 1, @@ -13245,9 +13269,9 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, ACTIONS(524), 1, sym__table_row_begin, - STATE(406), 1, + STATE(399), 1, sym__block_quote_prefix, - STATE(419), 1, + STATE(421), 1, aux_sym__block_quote_prefix_repeat1, STATE(68), 5, sym__table_row, @@ -13255,15 +13279,16 @@ static const uint16_t ts_small_parse_table[] = { sym_table_separator, sym_table_row, aux_sym_table_repeat1, - ACTIONS(513), 7, + ACTIONS(511), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(511), 29, + ACTIONS(513), 30, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -13292,8 +13317,8 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__table_caption_begin, - ts_builtin_sym_end, - [212] = 9, + sym__block_attribute_begin, + [215] = 9, ACTIONS(515), 1, sym__block_quote_continuation, ACTIONS(527), 1, @@ -13302,9 +13327,9 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, ACTIONS(533), 1, sym__table_row_begin, - STATE(362), 1, + STATE(365), 1, sym__block_quote_prefix, - STATE(419), 1, + STATE(421), 1, aux_sym__block_quote_prefix_repeat1, STATE(69), 5, sym__table_row, @@ -13312,16 +13337,15 @@ static const uint16_t ts_small_parse_table[] = { sym_table_separator, sym_table_row, aux_sym_table_repeat1, - ACTIONS(513), 7, + ACTIONS(511), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(511), 29, - sym__block_close, + ACTIONS(513), 30, sym__newline, sym__heading_begin, sym__div_begin, @@ -13350,20 +13374,23 @@ static const uint16_t ts_small_parse_table[] = { sym__thematic_break_dash, sym__thematic_break_star, sym__table_caption_begin, - [278] = 4, + sym__block_attribute_begin, + ts_builtin_sym_end, + [282] = 4, ACTIONS(509), 1, sym__table_caption_begin, - STATE(198), 1, + STATE(157), 1, sym_table_caption, - ACTIONS(538), 7, + ACTIONS(536), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(536), 32, + ACTIONS(538), 33, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -13395,22 +13422,21 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - ts_builtin_sym_end, - [328] = 4, + sym__block_attribute_begin, + [333] = 4, ACTIONS(505), 1, sym__table_caption_begin, - STATE(174), 1, + STATE(172), 1, sym_table_caption, - ACTIONS(538), 7, + ACTIONS(536), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(536), 32, - sym__block_close, + ACTIONS(538), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -13442,16 +13468,21 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [378] = 2, - ACTIONS(542), 7, + sym__block_attribute_begin, + ts_builtin_sym_end, + [384] = 3, + ACTIONS(544), 1, + sym__div_end, + ACTIONS(540), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(540), 33, + ACTIONS(542), 33, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -13483,19 +13514,19 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - sym__table_caption_begin, - ts_builtin_sym_end, - [423] = 2, - ACTIONS(542), 7, + sym__block_attribute_begin, + [432] = 3, + ACTIONS(550), 1, + sym__div_end, + ACTIONS(548), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(540), 33, - sym__block_close, + ACTIONS(546), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -13527,18 +13558,18 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - sym__table_caption_begin, - [468] = 2, - ACTIONS(544), 7, + sym__block_attribute_begin, + ts_builtin_sym_end, + [480] = 2, + ACTIONS(554), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(546), 33, - sym__block_close, + ACTIONS(552), 34, sym__newline, sym__heading_begin, sym__div_begin, @@ -13571,19 +13602,18 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, sym__table_caption_begin, - [513] = 3, - ACTIONS(552), 1, - sym__div_end, - ACTIONS(548), 7, + sym__block_attribute_begin, + ts_builtin_sym_end, + [526] = 2, + ACTIONS(558), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(550), 32, - sym__block_close, + ACTIONS(556), 34, sym__newline, sym__heading_begin, sym__div_begin, @@ -13615,19 +13645,19 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [560] = 3, - ACTIONS(558), 1, - sym__div_end, - ACTIONS(554), 7, + sym__table_caption_begin, + sym__block_attribute_begin, + ts_builtin_sym_end, + [572] = 2, + ACTIONS(562), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(556), 32, - sym__block_close, + ACTIONS(560), 34, sym__newline, sym__heading_begin, sym__div_begin, @@ -13659,19 +13689,21 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [607] = 3, + sym__table_caption_begin, + sym__block_attribute_begin, + ts_builtin_sym_end, + [618] = 3, ACTIONS(564), 1, - sym__code_block_end, - ACTIONS(560), 7, + sym__div_end, + ACTIONS(540), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(562), 32, - sym__block_close, + ACTIONS(542), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -13703,19 +13735,20 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [654] = 3, + sym__block_attribute_begin, + ts_builtin_sym_end, + [666] = 3, ACTIONS(570), 1, sym__code_block_end, - ACTIONS(566), 7, + ACTIONS(568), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(568), 32, - sym__block_close, + ACTIONS(566), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -13747,19 +13780,20 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [701] = 3, + sym__block_attribute_begin, + ts_builtin_sym_end, + [714] = 3, ACTIONS(576), 1, sym__code_block_end, - ACTIONS(572), 7, + ACTIONS(574), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(574), 32, - sym__block_close, + ACTIONS(572), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -13791,17 +13825,20 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [748] = 2, - ACTIONS(578), 7, + sym__block_attribute_begin, + ts_builtin_sym_end, + [762] = 3, + ACTIONS(582), 1, + sym__eof_or_newline, + ACTIONS(580), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(580), 33, - sym__block_close, + ACTIONS(578), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -13833,18 +13870,18 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - sym__table_caption_begin, - [793] = 2, - ACTIONS(582), 7, + sym__block_attribute_begin, + ts_builtin_sym_end, + [810] = 2, + ACTIONS(586), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(584), 33, - sym__block_close, + ACTIONS(584), 34, sym__newline, sym__heading_begin, sym__div_begin, @@ -13877,17 +13914,20 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, sym__table_caption_begin, - [838] = 2, - ACTIONS(586), 7, + sym__block_attribute_begin, + ts_builtin_sym_end, + [856] = 3, + ACTIONS(592), 1, + sym__code_block_end, + ACTIONS(590), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, ACTIONS(588), 33, - sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -13919,19 +13959,18 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - sym__table_caption_begin, - [883] = 3, - ACTIONS(594), 1, - sym__div_end, - ACTIONS(590), 7, + sym__block_attribute_begin, + ts_builtin_sym_end, + [904] = 2, + ACTIONS(586), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(592), 32, + ACTIONS(584), 34, sym__block_close, sym__newline, sym__heading_begin, @@ -13964,18 +14003,20 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [930] = 3, - ACTIONS(600), 1, - sym__code_block_end, - ACTIONS(596), 7, + sym__table_caption_begin, + sym__block_attribute_begin, + [950] = 3, + ACTIONS(598), 1, + sym__eof_or_newline, + ACTIONS(594), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(598), 32, + ACTIONS(596), 33, sym__block_close, sym__newline, sym__heading_begin, @@ -14008,19 +14049,17 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [977] = 3, - ACTIONS(606), 1, - sym__code_block_end, + sym__block_attribute_begin, + [998] = 2, ACTIONS(602), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(604), 32, - sym__block_close, + ACTIONS(600), 34, sym__newline, sym__heading_begin, sym__div_begin, @@ -14052,18 +14091,21 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [1024] = 3, - ACTIONS(612), 1, - sym__eof_or_newline, - ACTIONS(608), 7, + sym__table_caption_begin, + sym__block_attribute_begin, + ts_builtin_sym_end, + [1044] = 3, + ACTIONS(604), 1, + sym__div_end, + ACTIONS(548), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(610), 32, + ACTIONS(546), 33, sym__block_close, sym__newline, sym__heading_begin, @@ -14096,18 +14138,19 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [1071] = 3, - ACTIONS(618), 1, - sym__eof_or_newline, - ACTIONS(614), 7, + sym__block_attribute_begin, + [1092] = 3, + ACTIONS(606), 1, + sym__code_block_end, + ACTIONS(590), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(616), 32, + ACTIONS(588), 33, sym__block_close, sym__newline, sym__heading_begin, @@ -14140,18 +14183,19 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [1118] = 3, - ACTIONS(620), 1, + sym__block_attribute_begin, + [1140] = 3, + ACTIONS(612), 1, sym__code_block_end, - ACTIONS(566), 7, + ACTIONS(610), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(568), 32, + ACTIONS(608), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -14183,17 +14227,19 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, + sym__block_attribute_begin, ts_builtin_sym_end, - [1165] = 2, - ACTIONS(578), 7, + [1188] = 2, + ACTIONS(614), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(580), 33, + ACTIONS(616), 34, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -14226,19 +14272,18 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, sym__table_caption_begin, - ts_builtin_sym_end, - [1210] = 3, - ACTIONS(626), 1, - sym__div_end, - ACTIONS(624), 7, + sym__block_attribute_begin, + [1234] = 2, + ACTIONS(618), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(622), 32, + ACTIONS(620), 34, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -14270,17 +14315,21 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - ts_builtin_sym_end, - [1257] = 2, - ACTIONS(630), 7, + sym__table_caption_begin, + sym__block_attribute_begin, + [1280] = 3, + ACTIONS(626), 1, + sym__div_end, + ACTIONS(622), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(628), 33, + ACTIONS(624), 33, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -14312,20 +14361,20 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - sym__table_caption_begin, - ts_builtin_sym_end, - [1302] = 3, - ACTIONS(636), 1, - sym__code_block_end, - ACTIONS(634), 7, + sym__block_attribute_begin, + [1328] = 3, + ACTIONS(632), 1, + sym__div_end, + ACTIONS(628), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(632), 32, + ACTIONS(630), 33, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -14357,17 +14406,20 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - ts_builtin_sym_end, - [1349] = 2, - ACTIONS(582), 7, + sym__block_attribute_begin, + [1376] = 3, + ACTIONS(638), 1, + sym__code_block_end, + ACTIONS(634), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(584), 33, + ACTIONS(636), 33, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -14399,18 +14451,20 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - sym__table_caption_begin, - ts_builtin_sym_end, - [1394] = 2, - ACTIONS(586), 7, + sym__block_attribute_begin, + [1424] = 3, + ACTIONS(644), 1, + sym__code_block_end, + ACTIONS(640), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(588), 33, + ACTIONS(642), 33, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -14442,20 +14496,20 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - sym__table_caption_begin, - ts_builtin_sym_end, - [1439] = 3, - ACTIONS(638), 1, + sym__block_attribute_begin, + [1472] = 3, + ACTIONS(646), 1, sym__code_block_end, - ACTIONS(572), 7, + ACTIONS(610), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(574), 32, + ACTIONS(608), 33, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -14487,19 +14541,18 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - ts_builtin_sym_end, - [1486] = 3, - ACTIONS(640), 1, - sym__div_end, - ACTIONS(590), 7, + sym__block_attribute_begin, + [1520] = 2, + ACTIONS(554), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(592), 32, + ACTIONS(552), 34, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -14531,17 +14584,19 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - ts_builtin_sym_end, - [1533] = 2, - ACTIONS(644), 7, + sym__table_caption_begin, + sym__block_attribute_begin, + [1566] = 2, + ACTIONS(558), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(642), 33, + ACTIONS(556), 34, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -14574,17 +14629,17 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, sym__table_caption_begin, - ts_builtin_sym_end, - [1578] = 2, - ACTIONS(630), 7, + sym__block_attribute_begin, + [1612] = 2, + ACTIONS(562), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(628), 33, + ACTIONS(560), 34, sym__block_close, sym__newline, sym__heading_begin, @@ -14618,16 +14673,17 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, sym__table_caption_begin, - [1623] = 2, - ACTIONS(544), 7, + sym__block_attribute_begin, + [1658] = 2, + ACTIONS(614), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(546), 33, + ACTIONS(616), 34, sym__newline, sym__heading_begin, sym__div_begin, @@ -14660,19 +14716,21 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, sym__table_caption_begin, + sym__block_attribute_begin, ts_builtin_sym_end, - [1668] = 3, - ACTIONS(646), 1, - sym__div_end, - ACTIONS(548), 7, + [1704] = 3, + ACTIONS(648), 1, + sym__code_block_end, + ACTIONS(568), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(550), 32, + ACTIONS(566), 33, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -14704,19 +14762,20 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - ts_builtin_sym_end, - [1715] = 3, - ACTIONS(648), 1, - sym__div_end, - ACTIONS(554), 7, + sym__block_attribute_begin, + [1752] = 3, + ACTIONS(650), 1, + sym__code_block_end, + ACTIONS(574), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(556), 32, + ACTIONS(572), 33, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -14748,19 +14807,20 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - ts_builtin_sym_end, - [1762] = 3, - ACTIONS(650), 1, - sym__code_block_end, - ACTIONS(596), 7, + sym__block_attribute_begin, + [1800] = 3, + ACTIONS(652), 1, + sym__eof_or_newline, + ACTIONS(580), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(598), 32, + ACTIONS(578), 33, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -14792,19 +14852,17 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - ts_builtin_sym_end, - [1809] = 3, - ACTIONS(652), 1, - sym__code_block_end, - ACTIONS(560), 7, + sym__block_attribute_begin, + [1848] = 2, + ACTIONS(618), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(562), 32, + ACTIONS(620), 34, sym__newline, sym__heading_begin, sym__div_begin, @@ -14836,19 +14894,21 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, + sym__table_caption_begin, + sym__block_attribute_begin, ts_builtin_sym_end, - [1856] = 3, + [1894] = 3, ACTIONS(654), 1, - sym__code_block_end, - ACTIONS(602), 7, + sym__div_end, + ACTIONS(622), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(604), 32, + ACTIONS(624), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -14880,20 +14940,20 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, + sym__block_attribute_begin, ts_builtin_sym_end, - [1903] = 3, + [1942] = 3, ACTIONS(656), 1, sym__div_end, - ACTIONS(624), 7, + ACTIONS(628), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(622), 32, - sym__block_close, + ACTIONS(630), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -14925,19 +14985,20 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [1950] = 3, + sym__block_attribute_begin, + ts_builtin_sym_end, + [1990] = 3, ACTIONS(658), 1, sym__code_block_end, ACTIONS(634), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(632), 32, - sym__block_close, + ACTIONS(636), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -14969,17 +15030,20 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [1997] = 2, - ACTIONS(644), 7, + sym__block_attribute_begin, + ts_builtin_sym_end, + [2038] = 3, + ACTIONS(660), 1, + sym__code_block_end, + ACTIONS(640), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, ACTIONS(642), 33, - sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -15011,19 +15075,19 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - sym__table_caption_begin, - [2042] = 3, - ACTIONS(660), 1, - sym__eof_or_newline, - ACTIONS(608), 7, + sym__block_attribute_begin, + ts_builtin_sym_end, + [2086] = 2, + ACTIONS(602), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(610), 32, + ACTIONS(600), 34, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -15055,17 +15119,18 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - ts_builtin_sym_end, - [2089] = 2, + sym__table_caption_begin, + sym__block_attribute_begin, + [2132] = 2, ACTIONS(662), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(664), 32, + ACTIONS(664), 33, sym__block_close, sym__newline, sym__heading_begin, @@ -15098,16 +15163,17 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [2133] = 2, + sym__block_attribute_begin, + [2177] = 2, ACTIONS(668), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(666), 32, + ACTIONS(666), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -15139,17 +15205,18 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, + sym__block_attribute_begin, ts_builtin_sym_end, - [2177] = 2, + [2222] = 2, ACTIONS(672), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(670), 32, + ACTIONS(670), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -15181,17 +15248,18 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, + sym__block_attribute_begin, ts_builtin_sym_end, - [2221] = 2, + [2267] = 2, ACTIONS(676), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(674), 32, + ACTIONS(674), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -15223,17 +15291,18 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, + sym__block_attribute_begin, ts_builtin_sym_end, - [2265] = 2, + [2312] = 2, ACTIONS(680), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(678), 32, + ACTIONS(678), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -15265,17 +15334,18 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, + sym__block_attribute_begin, ts_builtin_sym_end, - [2309] = 2, + [2357] = 2, ACTIONS(684), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(682), 32, + ACTIONS(682), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -15307,17 +15377,18 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, + sym__block_attribute_begin, ts_builtin_sym_end, - [2353] = 2, + [2402] = 2, ACTIONS(688), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(686), 32, + ACTIONS(686), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -15349,17 +15420,18 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, + sym__block_attribute_begin, ts_builtin_sym_end, - [2397] = 2, + [2447] = 2, ACTIONS(692), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(690), 32, + ACTIONS(690), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -15391,17 +15463,18 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, + sym__block_attribute_begin, ts_builtin_sym_end, - [2441] = 2, - ACTIONS(696), 7, + [2492] = 2, + ACTIONS(536), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(694), 32, + ACTIONS(538), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -15433,17 +15506,18 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, + sym__block_attribute_begin, ts_builtin_sym_end, - [2485] = 2, - ACTIONS(700), 7, + [2537] = 2, + ACTIONS(696), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(698), 32, + ACTIONS(694), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -15475,17 +15549,18 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, + sym__block_attribute_begin, ts_builtin_sym_end, - [2529] = 2, - ACTIONS(704), 7, + [2582] = 2, + ACTIONS(700), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(702), 32, + ACTIONS(698), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -15517,17 +15592,18 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, + sym__block_attribute_begin, ts_builtin_sym_end, - [2573] = 2, - ACTIONS(708), 7, + [2627] = 2, + ACTIONS(704), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(706), 32, + ACTIONS(702), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -15559,17 +15635,18 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, + sym__block_attribute_begin, ts_builtin_sym_end, - [2617] = 2, - ACTIONS(712), 7, + [2672] = 2, + ACTIONS(708), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(710), 32, + ACTIONS(706), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -15601,17 +15678,18 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, + sym__block_attribute_begin, ts_builtin_sym_end, - [2661] = 2, - ACTIONS(716), 7, + [2717] = 2, + ACTIONS(712), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(714), 32, + ACTIONS(710), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -15643,17 +15721,19 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, + sym__block_attribute_begin, ts_builtin_sym_end, - [2705] = 2, - ACTIONS(720), 7, + [2762] = 2, + ACTIONS(714), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(718), 32, + ACTIONS(716), 33, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -15685,17 +15765,18 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - ts_builtin_sym_end, - [2749] = 2, - ACTIONS(724), 7, + sym__block_attribute_begin, + [2807] = 2, + ACTIONS(718), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(722), 32, + ACTIONS(720), 33, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -15727,17 +15808,17 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - ts_builtin_sym_end, - [2793] = 2, - ACTIONS(728), 7, + sym__block_attribute_begin, + [2852] = 2, + ACTIONS(714), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(726), 32, + ACTIONS(716), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -15769,17 +15850,19 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, + sym__block_attribute_begin, ts_builtin_sym_end, - [2837] = 2, - ACTIONS(732), 7, + [2897] = 2, + ACTIONS(722), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(730), 32, + ACTIONS(724), 33, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -15811,17 +15894,18 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - ts_builtin_sym_end, - [2881] = 2, - ACTIONS(736), 7, + sym__block_attribute_begin, + [2942] = 2, + ACTIONS(726), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(734), 32, + ACTIONS(728), 33, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -15853,17 +15937,18 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - ts_builtin_sym_end, - [2925] = 2, - ACTIONS(740), 7, + sym__block_attribute_begin, + [2987] = 2, + ACTIONS(708), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(738), 32, + ACTIONS(706), 33, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -15895,17 +15980,18 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - ts_builtin_sym_end, - [2969] = 2, - ACTIONS(744), 7, + sym__block_attribute_begin, + [3032] = 2, + ACTIONS(730), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(742), 32, + ACTIONS(732), 33, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -15937,17 +16023,17 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - ts_builtin_sym_end, - [3013] = 2, - ACTIONS(748), 7, + sym__block_attribute_begin, + [3077] = 2, + ACTIONS(662), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(746), 32, + ACTIONS(664), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -15979,17 +16065,19 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, + sym__block_attribute_begin, ts_builtin_sym_end, - [3057] = 2, - ACTIONS(752), 7, + [3122] = 2, + ACTIONS(734), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(750), 32, + ACTIONS(736), 33, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -16021,17 +16109,18 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - ts_builtin_sym_end, - [3101] = 2, - ACTIONS(756), 7, + sym__block_attribute_begin, + [3167] = 2, + ACTIONS(738), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(754), 32, + ACTIONS(740), 33, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -16063,17 +16152,18 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - ts_builtin_sym_end, - [3145] = 2, - ACTIONS(760), 7, + sym__block_attribute_begin, + [3212] = 2, + ACTIONS(742), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(758), 32, + ACTIONS(744), 33, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -16105,17 +16195,18 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - ts_builtin_sym_end, - [3189] = 2, - ACTIONS(764), 7, + sym__block_attribute_begin, + [3257] = 2, + ACTIONS(746), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(762), 32, + ACTIONS(748), 33, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -16147,17 +16238,18 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - ts_builtin_sym_end, - [3233] = 2, - ACTIONS(768), 7, + sym__block_attribute_begin, + [3302] = 2, + ACTIONS(750), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(766), 32, + ACTIONS(752), 33, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -16189,17 +16281,18 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - ts_builtin_sym_end, - [3277] = 2, - ACTIONS(772), 7, + sym__block_attribute_begin, + [3347] = 2, + ACTIONS(754), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(770), 32, + ACTIONS(756), 33, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -16231,17 +16324,18 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - ts_builtin_sym_end, - [3321] = 2, - ACTIONS(776), 7, + sym__block_attribute_begin, + [3392] = 2, + ACTIONS(758), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(774), 32, + ACTIONS(760), 33, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -16273,17 +16367,18 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - ts_builtin_sym_end, - [3365] = 2, - ACTIONS(780), 7, + sym__block_attribute_begin, + [3437] = 2, + ACTIONS(762), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(778), 32, + ACTIONS(764), 33, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -16315,17 +16410,17 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - ts_builtin_sym_end, - [3409] = 2, - ACTIONS(782), 7, + sym__block_attribute_begin, + [3482] = 2, + ACTIONS(766), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(784), 32, + ACTIONS(768), 33, sym__block_close, sym__newline, sym__heading_begin, @@ -16358,16 +16453,18 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [3453] = 2, - ACTIONS(788), 7, + sym__block_attribute_begin, + [3527] = 2, + ACTIONS(770), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(786), 32, + ACTIONS(772), 33, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -16399,17 +16496,17 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - ts_builtin_sym_end, - [3497] = 2, - ACTIONS(790), 7, + sym__block_attribute_begin, + [3572] = 2, + ACTIONS(774), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(792), 32, + ACTIONS(776), 33, sym__block_close, sym__newline, sym__heading_begin, @@ -16442,16 +16539,17 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [3541] = 2, - ACTIONS(794), 7, + sym__block_attribute_begin, + [3617] = 2, + ACTIONS(778), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(796), 32, + ACTIONS(780), 33, sym__block_close, sym__newline, sym__heading_begin, @@ -16484,16 +16582,17 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [3585] = 2, - ACTIONS(798), 7, + sym__block_attribute_begin, + [3662] = 2, + ACTIONS(782), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(800), 32, + ACTIONS(784), 33, sym__block_close, sym__newline, sym__heading_begin, @@ -16526,16 +16625,17 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [3629] = 2, - ACTIONS(802), 7, + sym__block_attribute_begin, + [3707] = 2, + ACTIONS(786), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(804), 32, + ACTIONS(788), 33, sym__block_close, sym__newline, sym__heading_begin, @@ -16568,16 +16668,18 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [3673] = 2, - ACTIONS(808), 7, + sym__block_attribute_begin, + [3752] = 2, + ACTIONS(790), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(806), 32, + ACTIONS(792), 33, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -16609,17 +16711,18 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - ts_builtin_sym_end, - [3717] = 2, - ACTIONS(812), 7, + sym__block_attribute_begin, + [3797] = 2, + ACTIONS(794), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(810), 32, + ACTIONS(796), 33, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -16651,17 +16754,17 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - ts_builtin_sym_end, - [3761] = 2, - ACTIONS(814), 7, + sym__block_attribute_begin, + [3842] = 2, + ACTIONS(798), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(816), 32, + ACTIONS(800), 33, sym__block_close, sym__newline, sym__heading_begin, @@ -16694,17 +16797,17 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [3805] = 2, - ACTIONS(818), 7, + sym__block_attribute_begin, + [3887] = 2, + ACTIONS(790), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(820), 32, - sym__block_close, + ACTIONS(792), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -16736,16 +16839,18 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [3849] = 2, - ACTIONS(822), 7, + sym__block_attribute_begin, + ts_builtin_sym_end, + [3932] = 2, + ACTIONS(802), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(824), 32, + ACTIONS(804), 33, sym__block_close, sym__newline, sym__heading_begin, @@ -16778,16 +16883,17 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [3893] = 2, - ACTIONS(826), 7, + sym__block_attribute_begin, + [3977] = 2, + ACTIONS(806), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(828), 32, + ACTIONS(808), 33, sym__block_close, sym__newline, sym__heading_begin, @@ -16820,16 +16926,17 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [3937] = 2, - ACTIONS(668), 7, + sym__block_attribute_begin, + [4022] = 2, + ACTIONS(810), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(666), 32, + ACTIONS(812), 33, sym__block_close, sym__newline, sym__heading_begin, @@ -16862,17 +16969,17 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [3981] = 2, - ACTIONS(672), 7, + sym__block_attribute_begin, + [4067] = 2, + ACTIONS(802), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(670), 32, - sym__block_close, + ACTIONS(804), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -16904,16 +17011,18 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [4025] = 2, - ACTIONS(676), 7, + sym__block_attribute_begin, + ts_builtin_sym_end, + [4112] = 2, + ACTIONS(536), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(674), 32, + ACTIONS(538), 33, sym__block_close, sym__newline, sym__heading_begin, @@ -16946,17 +17055,17 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [4069] = 2, - ACTIONS(680), 7, + sym__block_attribute_begin, + [4157] = 2, + ACTIONS(816), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(678), 32, - sym__block_close, + ACTIONS(814), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -16988,16 +17097,18 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [4113] = 2, - ACTIONS(684), 7, + sym__block_attribute_begin, + ts_builtin_sym_end, + [4202] = 2, + ACTIONS(818), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(682), 32, + ACTIONS(820), 33, sym__block_close, sym__newline, sym__heading_begin, @@ -17030,16 +17141,17 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [4157] = 2, - ACTIONS(692), 7, + sym__block_attribute_begin, + [4247] = 2, + ACTIONS(822), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(690), 32, + ACTIONS(824), 33, sym__block_close, sym__newline, sym__heading_begin, @@ -17072,16 +17184,17 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [4201] = 2, - ACTIONS(704), 7, + sym__block_attribute_begin, + [4292] = 2, + ACTIONS(826), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(702), 32, + ACTIONS(828), 33, sym__block_close, sym__newline, sym__heading_begin, @@ -17114,17 +17227,17 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [4245] = 2, - ACTIONS(708), 7, + sym__block_attribute_begin, + [4337] = 2, + ACTIONS(806), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(706), 32, - sym__block_close, + ACTIONS(808), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -17156,17 +17269,18 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [4289] = 2, - ACTIONS(752), 7, + sym__block_attribute_begin, + ts_builtin_sym_end, + [4382] = 2, + ACTIONS(718), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(750), 32, - sym__block_close, + ACTIONS(720), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -17198,17 +17312,18 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [4333] = 2, - ACTIONS(760), 7, + sym__block_attribute_begin, + ts_builtin_sym_end, + [4427] = 2, + ACTIONS(832), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(758), 32, - sym__block_close, + ACTIONS(830), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -17240,16 +17355,18 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [4377] = 2, - ACTIONS(772), 7, + sym__block_attribute_begin, + ts_builtin_sym_end, + [4472] = 2, + ACTIONS(816), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(770), 32, + ACTIONS(814), 33, sym__block_close, sym__newline, sym__heading_begin, @@ -17282,17 +17399,17 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [4421] = 2, - ACTIONS(780), 7, + sym__block_attribute_begin, + [4517] = 2, + ACTIONS(794), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(778), 32, - sym__block_close, + ACTIONS(796), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -17324,17 +17441,18 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [4465] = 2, - ACTIONS(788), 7, + sym__block_attribute_begin, + ts_builtin_sym_end, + [4562] = 2, + ACTIONS(822), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(786), 32, - sym__block_close, + ACTIONS(824), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -17366,16 +17484,18 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [4509] = 2, - ACTIONS(808), 7, + sym__block_attribute_begin, + ts_builtin_sym_end, + [4607] = 2, + ACTIONS(832), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(806), 32, + ACTIONS(830), 33, sym__block_close, sym__newline, sym__heading_begin, @@ -17408,17 +17528,17 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [4553] = 2, - ACTIONS(812), 7, + sym__block_attribute_begin, + [4652] = 2, + ACTIONS(726), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(810), 32, - sym__block_close, + ACTIONS(728), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -17450,17 +17570,18 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [4597] = 2, - ACTIONS(830), 7, + sym__block_attribute_begin, + ts_builtin_sym_end, + [4697] = 2, + ACTIONS(810), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(832), 32, - sym__block_close, + ACTIONS(812), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -17492,17 +17613,18 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [4641] = 2, - ACTIONS(834), 7, + sym__block_attribute_begin, + ts_builtin_sym_end, + [4742] = 2, + ACTIONS(730), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(836), 32, - sym__block_close, + ACTIONS(732), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -17534,16 +17656,19 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [4685] = 2, - ACTIONS(830), 7, + sym__block_attribute_begin, + ts_builtin_sym_end, + [4787] = 2, + ACTIONS(834), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(832), 32, + ACTIONS(836), 33, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -17575,17 +17700,17 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - ts_builtin_sym_end, - [4729] = 2, - ACTIONS(538), 7, + sym__block_attribute_begin, + [4832] = 2, + ACTIONS(838), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(536), 32, + ACTIONS(840), 33, sym__block_close, sym__newline, sym__heading_begin, @@ -17618,16 +17743,18 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [4773] = 2, - ACTIONS(834), 7, + sym__block_attribute_begin, + [4877] = 2, + ACTIONS(842), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(836), 32, + ACTIONS(844), 33, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -17659,18 +17786,17 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - ts_builtin_sym_end, - [4817] = 2, + sym__block_attribute_begin, + [4922] = 2, ACTIONS(838), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(840), 32, - sym__block_close, + ACTIONS(840), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -17702,17 +17828,18 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [4861] = 2, - ACTIONS(842), 7, + sym__block_attribute_begin, + ts_builtin_sym_end, + [4967] = 2, + ACTIONS(826), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(844), 32, - sym__block_close, + ACTIONS(828), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -17744,16 +17871,19 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [4905] = 2, - ACTIONS(662), 7, + sym__block_attribute_begin, + ts_builtin_sym_end, + [5012] = 2, + ACTIONS(846), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(664), 32, + ACTIONS(848), 33, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -17785,17 +17915,17 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - ts_builtin_sym_end, - [4949] = 2, - ACTIONS(846), 7, + sym__block_attribute_begin, + [5057] = 2, + ACTIONS(850), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(848), 32, + ACTIONS(852), 33, sym__block_close, sym__newline, sym__heading_begin, @@ -17828,16 +17958,18 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [4993] = 2, - ACTIONS(538), 7, + sym__block_attribute_begin, + [5102] = 2, + ACTIONS(854), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(536), 32, + ACTIONS(856), 33, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -17869,17 +18001,18 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - ts_builtin_sym_end, - [5037] = 2, - ACTIONS(826), 7, + sym__block_attribute_begin, + [5147] = 2, + ACTIONS(672), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(828), 32, + ACTIONS(670), 33, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -17911,17 +18044,17 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - ts_builtin_sym_end, - [5081] = 2, - ACTIONS(850), 7, + sym__block_attribute_begin, + [5192] = 2, + ACTIONS(676), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(852), 32, + ACTIONS(674), 33, sym__block_close, sym__newline, sym__heading_begin, @@ -17954,16 +18087,18 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [5125] = 2, - ACTIONS(838), 7, + sym__block_attribute_begin, + [5237] = 2, + ACTIONS(680), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(840), 32, + ACTIONS(678), 33, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -17995,17 +18130,18 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - ts_builtin_sym_end, - [5169] = 2, - ACTIONS(842), 7, + sym__block_attribute_begin, + [5282] = 2, + ACTIONS(684), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(844), 32, + ACTIONS(682), 33, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -18037,17 +18173,17 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - ts_builtin_sym_end, - [5213] = 2, + sym__block_attribute_begin, + [5327] = 2, ACTIONS(688), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(686), 32, + ACTIONS(686), 33, sym__block_close, sym__newline, sym__heading_begin, @@ -18080,16 +18216,18 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [5257] = 2, - ACTIONS(794), 7, + sym__block_attribute_begin, + [5372] = 2, + ACTIONS(692), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(796), 32, + ACTIONS(690), 33, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -18121,18 +18259,17 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - ts_builtin_sym_end, - [5301] = 2, - ACTIONS(700), 7, + sym__block_attribute_begin, + [5417] = 2, + ACTIONS(860), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(698), 32, - sym__block_close, + ACTIONS(858), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -18164,16 +18301,18 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [5345] = 2, - ACTIONS(854), 7, + sym__block_attribute_begin, + ts_builtin_sym_end, + [5462] = 2, + ACTIONS(696), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(856), 32, + ACTIONS(694), 33, sym__block_close, sym__newline, sym__heading_begin, @@ -18206,16 +18345,17 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [5389] = 2, - ACTIONS(712), 7, + sym__block_attribute_begin, + [5507] = 2, + ACTIONS(700), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(710), 32, + ACTIONS(698), 33, sym__block_close, sym__newline, sym__heading_begin, @@ -18248,16 +18388,17 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [5433] = 2, - ACTIONS(716), 7, + sym__block_attribute_begin, + [5552] = 2, + ACTIONS(704), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(714), 32, + ACTIONS(702), 33, sym__block_close, sym__newline, sym__heading_begin, @@ -18290,16 +18431,17 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [5477] = 2, - ACTIONS(720), 7, + sym__block_attribute_begin, + [5597] = 2, + ACTIONS(712), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(718), 32, + ACTIONS(710), 33, sym__block_close, sym__newline, sym__heading_begin, @@ -18332,17 +18474,17 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [5521] = 2, - ACTIONS(728), 7, + sym__block_attribute_begin, + [5642] = 2, + ACTIONS(734), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(726), 32, - sym__block_close, + ACTIONS(736), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -18374,17 +18516,18 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [5565] = 2, - ACTIONS(732), 7, + sym__block_attribute_begin, + ts_builtin_sym_end, + [5687] = 2, + ACTIONS(842), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(730), 32, - sym__block_close, + ACTIONS(844), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -18416,16 +18559,18 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [5609] = 2, - ACTIONS(736), 7, + sym__block_attribute_begin, + ts_builtin_sym_end, + [5732] = 2, + ACTIONS(862), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(734), 32, + ACTIONS(864), 33, sym__block_close, sym__newline, sym__heading_begin, @@ -18458,17 +18603,17 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [5653] = 2, - ACTIONS(740), 7, + sym__block_attribute_begin, + [5777] = 2, + ACTIONS(738), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(738), 32, - sym__block_close, + ACTIONS(740), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -18500,17 +18645,18 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [5697] = 2, - ACTIONS(744), 7, + sym__block_attribute_begin, + ts_builtin_sym_end, + [5822] = 2, + ACTIONS(742), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(742), 32, - sym__block_close, + ACTIONS(744), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -18542,17 +18688,18 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [5741] = 2, - ACTIONS(748), 7, + sym__block_attribute_begin, + ts_builtin_sym_end, + [5867] = 2, + ACTIONS(746), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(746), 32, - sym__block_close, + ACTIONS(748), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -18584,17 +18731,18 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [5785] = 2, - ACTIONS(756), 7, + sym__block_attribute_begin, + ts_builtin_sym_end, + [5912] = 2, + ACTIONS(798), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(754), 32, - sym__block_close, + ACTIONS(800), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -18626,17 +18774,18 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [5829] = 2, - ACTIONS(764), 7, + sym__block_attribute_begin, + ts_builtin_sym_end, + [5957] = 2, + ACTIONS(750), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(762), 32, - sym__block_close, + ACTIONS(752), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -18668,17 +18817,18 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [5873] = 2, - ACTIONS(768), 7, + sym__block_attribute_begin, + ts_builtin_sym_end, + [6002] = 2, + ACTIONS(754), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(766), 32, - sym__block_close, + ACTIONS(756), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -18710,17 +18860,18 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [5917] = 2, - ACTIONS(776), 7, + sym__block_attribute_begin, + ts_builtin_sym_end, + [6047] = 2, + ACTIONS(758), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(774), 32, - sym__block_close, + ACTIONS(760), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -18752,16 +18903,18 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [5961] = 2, - ACTIONS(782), 7, + sym__block_attribute_begin, + ts_builtin_sym_end, + [6092] = 2, + ACTIONS(762), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(784), 32, + ACTIONS(764), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -18793,17 +18946,18 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, + sym__block_attribute_begin, ts_builtin_sym_end, - [6005] = 2, - ACTIONS(846), 7, + [6137] = 2, + ACTIONS(766), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(848), 32, + ACTIONS(768), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -18835,18 +18989,18 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, + sym__block_attribute_begin, ts_builtin_sym_end, - [6049] = 2, - ACTIONS(858), 7, + [6182] = 2, + ACTIONS(770), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(860), 32, - sym__block_close, + ACTIONS(772), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -18878,16 +19032,18 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [6093] = 2, - ACTIONS(802), 7, + sym__block_attribute_begin, + ts_builtin_sym_end, + [6227] = 2, + ACTIONS(774), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(804), 32, + ACTIONS(776), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -18919,17 +19075,18 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, + sym__block_attribute_begin, ts_builtin_sym_end, - [6137] = 2, - ACTIONS(798), 7, + [6272] = 2, + ACTIONS(778), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(800), 32, + ACTIONS(780), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -18961,17 +19118,18 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, + sym__block_attribute_begin, ts_builtin_sym_end, - [6181] = 2, - ACTIONS(864), 7, + [6317] = 2, + ACTIONS(782), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(862), 32, + ACTIONS(784), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -19003,17 +19161,18 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, + sym__block_attribute_begin, ts_builtin_sym_end, - [6225] = 2, - ACTIONS(814), 7, + [6362] = 2, + ACTIONS(786), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(816), 32, + ACTIONS(788), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -19045,17 +19204,18 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, + sym__block_attribute_begin, ts_builtin_sym_end, - [6269] = 2, - ACTIONS(850), 7, + [6407] = 2, + ACTIONS(846), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(852), 32, + ACTIONS(848), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -19087,17 +19247,18 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, + sym__block_attribute_begin, ts_builtin_sym_end, - [6313] = 2, - ACTIONS(822), 7, + [6452] = 2, + ACTIONS(850), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(824), 32, + ACTIONS(852), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -19129,17 +19290,18 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, + sym__block_attribute_begin, ts_builtin_sym_end, - [6357] = 2, - ACTIONS(818), 7, + [6497] = 2, + ACTIONS(854), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(820), 32, + ACTIONS(856), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -19171,18 +19333,18 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, + sym__block_attribute_begin, ts_builtin_sym_end, - [6401] = 2, - ACTIONS(864), 7, + [6542] = 2, + ACTIONS(818), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(862), 32, - sym__block_close, + ACTIONS(820), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -19214,7 +19376,9 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [6445] = 4, + sym__block_attribute_begin, + ts_builtin_sym_end, + [6587] = 4, ACTIONS(870), 1, sym__block_quote_continuation, STATE(208), 1, @@ -19222,12 +19386,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(866), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(868), 29, + ACTIONS(868), 30, sym__block_close, sym__div_begin, sym__code_block_begin, @@ -19257,16 +19421,17 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [6492] = 2, + sym__block_attribute_begin, + [6635] = 2, ACTIONS(873), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(875), 31, + ACTIONS(875), 32, sym__newline, sym__heading_begin, sym__div_begin, @@ -19298,16 +19463,17 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [6535] = 2, - ACTIONS(458), 7, + sym__block_attribute_begin, + [6679] = 2, + ACTIONS(460), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(460), 30, + ACTIONS(462), 31, sym__block_close, sym__div_begin, sym__code_block_begin, @@ -19338,14 +19504,15 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [6577] = 14, - ACTIONS(29), 1, + sym__block_attribute_begin, + [6722] = 14, + ACTIONS(27), 1, sym__list_marker_task_begin, - ACTIONS(195), 1, + ACTIONS(89), 1, sym__table_header_begin, - ACTIONS(197), 1, + ACTIONS(91), 1, sym__table_separator_begin, - ACTIONS(199), 1, + ACTIONS(93), 1, sym__table_row_begin, ACTIONS(877), 1, anon_sym_LBRACK_CARET, @@ -19357,32 +19524,32 @@ static const uint16_t ts_small_parse_table[] = { sym_list_marker_star, ACTIONS(885), 1, sym_list_marker_plus, - STATE(30), 1, + STATE(28), 1, sym_list_marker_task, - STATE(555), 1, + STATE(628), 1, sym__inline, STATE(273), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - STATE(98), 3, + STATE(83), 3, sym_table_header, sym_table_separator, sym_table_row, - ACTIONS(11), 6, + ACTIONS(9), 6, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - [6628] = 14, - ACTIONS(29), 1, + [6773] = 14, + ACTIONS(27), 1, sym__list_marker_task_begin, - ACTIONS(195), 1, + ACTIONS(89), 1, sym__table_header_begin, - ACTIONS(197), 1, + ACTIONS(91), 1, sym__table_separator_begin, - ACTIONS(199), 1, + ACTIONS(93), 1, sym__table_row_begin, ACTIONS(877), 1, anon_sym_LBRACK_CARET, @@ -19394,32 +19561,32 @@ static const uint16_t ts_small_parse_table[] = { sym_list_marker_plus, ACTIONS(887), 1, sym__block_close, - STATE(30), 1, + STATE(28), 1, sym_list_marker_task, - STATE(555), 1, + STATE(628), 1, sym__inline, STATE(273), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - STATE(98), 3, + STATE(83), 3, sym_table_header, sym_table_separator, sym_table_row, - ACTIONS(11), 6, + ACTIONS(9), 6, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - [6679] = 14, - ACTIONS(29), 1, + [6824] = 14, + ACTIONS(27), 1, sym__list_marker_task_begin, - ACTIONS(195), 1, + ACTIONS(89), 1, sym__table_header_begin, - ACTIONS(197), 1, + ACTIONS(91), 1, sym__table_separator_begin, - ACTIONS(199), 1, + ACTIONS(93), 1, sym__table_row_begin, ACTIONS(877), 1, anon_sym_LBRACK_CARET, @@ -19431,32 +19598,32 @@ static const uint16_t ts_small_parse_table[] = { sym_list_marker_plus, ACTIONS(889), 1, sym__block_close, - STATE(30), 1, + STATE(28), 1, sym_list_marker_task, - STATE(555), 1, + STATE(628), 1, sym__inline, STATE(273), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - STATE(98), 3, + STATE(83), 3, sym_table_header, sym_table_separator, sym_table_row, - ACTIONS(11), 6, + ACTIONS(9), 6, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - [6730] = 14, - ACTIONS(29), 1, + [6875] = 14, + ACTIONS(27), 1, sym__list_marker_task_begin, - ACTIONS(195), 1, + ACTIONS(89), 1, sym__table_header_begin, - ACTIONS(197), 1, + ACTIONS(91), 1, sym__table_separator_begin, - ACTIONS(199), 1, + ACTIONS(93), 1, sym__table_row_begin, ACTIONS(877), 1, anon_sym_LBRACK_CARET, @@ -19468,32 +19635,32 @@ static const uint16_t ts_small_parse_table[] = { sym_list_marker_plus, ACTIONS(891), 1, sym__block_close, - STATE(30), 1, + STATE(28), 1, sym_list_marker_task, - STATE(555), 1, + STATE(628), 1, sym__inline, STATE(273), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - STATE(98), 3, + STATE(83), 3, sym_table_header, sym_table_separator, sym_table_row, - ACTIONS(11), 6, + ACTIONS(9), 6, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - [6781] = 14, - ACTIONS(29), 1, + [6926] = 14, + ACTIONS(27), 1, sym__list_marker_task_begin, - ACTIONS(195), 1, + ACTIONS(89), 1, sym__table_header_begin, - ACTIONS(197), 1, + ACTIONS(91), 1, sym__table_separator_begin, - ACTIONS(199), 1, + ACTIONS(93), 1, sym__table_row_begin, ACTIONS(877), 1, anon_sym_LBRACK_CARET, @@ -19505,32 +19672,32 @@ static const uint16_t ts_small_parse_table[] = { sym_list_marker_plus, ACTIONS(893), 1, sym__block_close, - STATE(30), 1, + STATE(28), 1, sym_list_marker_task, - STATE(555), 1, + STATE(628), 1, sym__inline, STATE(273), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - STATE(98), 3, + STATE(83), 3, sym_table_header, sym_table_separator, sym_table_row, - ACTIONS(11), 6, + ACTIONS(9), 6, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - [6832] = 14, - ACTIONS(29), 1, + [6977] = 14, + ACTIONS(27), 1, sym__list_marker_task_begin, - ACTIONS(195), 1, + ACTIONS(89), 1, sym__table_header_begin, - ACTIONS(197), 1, + ACTIONS(91), 1, sym__table_separator_begin, - ACTIONS(199), 1, + ACTIONS(93), 1, sym__table_row_begin, ACTIONS(877), 1, anon_sym_LBRACK_CARET, @@ -19542,32 +19709,32 @@ static const uint16_t ts_small_parse_table[] = { sym_list_marker_plus, ACTIONS(895), 1, sym__block_close, - STATE(30), 1, + STATE(28), 1, sym_list_marker_task, - STATE(555), 1, + STATE(628), 1, sym__inline, STATE(273), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - STATE(98), 3, + STATE(83), 3, sym_table_header, sym_table_separator, sym_table_row, - ACTIONS(11), 6, + ACTIONS(9), 6, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - [6883] = 14, - ACTIONS(29), 1, + [7028] = 14, + ACTIONS(27), 1, sym__list_marker_task_begin, - ACTIONS(195), 1, + ACTIONS(89), 1, sym__table_header_begin, - ACTIONS(197), 1, + ACTIONS(91), 1, sym__table_separator_begin, - ACTIONS(199), 1, + ACTIONS(93), 1, sym__table_row_begin, ACTIONS(877), 1, anon_sym_LBRACK_CARET, @@ -19579,32 +19746,32 @@ static const uint16_t ts_small_parse_table[] = { sym_list_marker_plus, ACTIONS(897), 1, sym__block_close, - STATE(30), 1, + STATE(28), 1, sym_list_marker_task, - STATE(555), 1, + STATE(628), 1, sym__inline, STATE(273), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - STATE(98), 3, + STATE(83), 3, sym_table_header, sym_table_separator, sym_table_row, - ACTIONS(11), 6, + ACTIONS(9), 6, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - [6934] = 14, - ACTIONS(29), 1, + [7079] = 14, + ACTIONS(27), 1, sym__list_marker_task_begin, - ACTIONS(195), 1, + ACTIONS(89), 1, sym__table_header_begin, - ACTIONS(197), 1, + ACTIONS(91), 1, sym__table_separator_begin, - ACTIONS(199), 1, + ACTIONS(93), 1, sym__table_row_begin, ACTIONS(877), 1, anon_sym_LBRACK_CARET, @@ -19616,32 +19783,32 @@ static const uint16_t ts_small_parse_table[] = { sym_list_marker_plus, ACTIONS(899), 1, sym__block_close, - STATE(30), 1, + STATE(28), 1, sym_list_marker_task, - STATE(555), 1, + STATE(628), 1, sym__inline, STATE(273), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - STATE(98), 3, + STATE(83), 3, sym_table_header, sym_table_separator, sym_table_row, - ACTIONS(11), 6, + ACTIONS(9), 6, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - [6985] = 14, - ACTIONS(29), 1, + [7130] = 14, + ACTIONS(27), 1, sym__list_marker_task_begin, - ACTIONS(195), 1, + ACTIONS(89), 1, sym__table_header_begin, - ACTIONS(197), 1, + ACTIONS(91), 1, sym__table_separator_begin, - ACTIONS(199), 1, + ACTIONS(93), 1, sym__table_row_begin, ACTIONS(877), 1, anon_sym_LBRACK_CARET, @@ -19653,32 +19820,32 @@ static const uint16_t ts_small_parse_table[] = { sym_list_marker_plus, ACTIONS(901), 1, sym__block_close, - STATE(30), 1, + STATE(28), 1, sym_list_marker_task, - STATE(555), 1, + STATE(628), 1, sym__inline, STATE(273), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - STATE(98), 3, + STATE(83), 3, sym_table_header, sym_table_separator, sym_table_row, - ACTIONS(11), 6, + ACTIONS(9), 6, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - [7036] = 14, - ACTIONS(29), 1, + [7181] = 14, + ACTIONS(27), 1, sym__list_marker_task_begin, - ACTIONS(195), 1, + ACTIONS(89), 1, sym__table_header_begin, - ACTIONS(197), 1, + ACTIONS(91), 1, sym__table_separator_begin, - ACTIONS(199), 1, + ACTIONS(93), 1, sym__table_row_begin, ACTIONS(877), 1, anon_sym_LBRACK_CARET, @@ -19690,32 +19857,32 @@ static const uint16_t ts_small_parse_table[] = { sym_list_marker_plus, ACTIONS(903), 1, sym__block_close, - STATE(30), 1, + STATE(28), 1, sym_list_marker_task, - STATE(555), 1, + STATE(628), 1, sym__inline, STATE(273), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - STATE(98), 3, + STATE(83), 3, sym_table_header, sym_table_separator, sym_table_row, - ACTIONS(11), 6, + ACTIONS(9), 6, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - [7087] = 13, - ACTIONS(29), 1, + [7232] = 13, + ACTIONS(27), 1, sym__list_marker_task_begin, - ACTIONS(482), 1, + ACTIONS(67), 1, sym__table_header_begin, - ACTIONS(484), 1, + ACTIONS(69), 1, sym__table_separator_begin, - ACTIONS(486), 1, + ACTIONS(71), 1, sym__table_row_begin, ACTIONS(877), 1, anon_sym_LBRACK_CARET, @@ -19725,32 +19892,32 @@ static const uint16_t ts_small_parse_table[] = { sym_list_marker_star, ACTIONS(885), 1, sym_list_marker_plus, - STATE(30), 1, + STATE(28), 1, sym_list_marker_task, - STATE(555), 1, + STATE(628), 1, sym__inline, STATE(273), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - STATE(321), 3, + STATE(81), 3, sym_table_header, sym_table_separator, sym_table_row, - ACTIONS(11), 6, + ACTIONS(9), 6, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - [7135] = 13, - ACTIONS(29), 1, + [7280] = 13, + ACTIONS(27), 1, sym__list_marker_task_begin, - ACTIONS(69), 1, + ACTIONS(480), 1, sym__table_header_begin, - ACTIONS(71), 1, + ACTIONS(482), 1, sym__table_separator_begin, - ACTIONS(73), 1, + ACTIONS(484), 1, sym__table_row_begin, ACTIONS(877), 1, anon_sym_LBRACK_CARET, @@ -19760,32 +19927,32 @@ static const uint16_t ts_small_parse_table[] = { sym_list_marker_star, ACTIONS(885), 1, sym_list_marker_plus, - STATE(30), 1, + STATE(28), 1, sym_list_marker_task, - STATE(555), 1, + STATE(628), 1, sym__inline, STATE(273), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - STATE(91), 3, + STATE(335), 3, sym_table_header, sym_table_separator, sym_table_row, - ACTIONS(11), 6, + ACTIONS(9), 6, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - [7183] = 13, - ACTIONS(29), 1, + [7328] = 13, + ACTIONS(27), 1, sym__list_marker_task_begin, - ACTIONS(380), 1, + ACTIONS(89), 1, sym__table_header_begin, - ACTIONS(382), 1, + ACTIONS(91), 1, sym__table_separator_begin, - ACTIONS(384), 1, + ACTIONS(93), 1, sym__table_row_begin, ACTIONS(877), 1, anon_sym_LBRACK_CARET, @@ -19795,32 +19962,32 @@ static const uint16_t ts_small_parse_table[] = { sym_list_marker_star, ACTIONS(885), 1, sym_list_marker_plus, - STATE(30), 1, + STATE(28), 1, sym_list_marker_task, - STATE(555), 1, + STATE(628), 1, sym__inline, STATE(273), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - STATE(318), 3, + STATE(83), 3, sym_table_header, sym_table_separator, sym_table_row, - ACTIONS(11), 6, + ACTIONS(9), 6, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - [7231] = 13, - ACTIONS(29), 1, + [7376] = 13, + ACTIONS(27), 1, sym__list_marker_task_begin, - ACTIONS(448), 1, + ACTIONS(446), 1, sym__table_header_begin, - ACTIONS(450), 1, + ACTIONS(448), 1, sym__table_separator_begin, - ACTIONS(452), 1, + ACTIONS(450), 1, sym__table_row_begin, ACTIONS(877), 1, anon_sym_LBRACK_CARET, @@ -19830,32 +19997,32 @@ static const uint16_t ts_small_parse_table[] = { sym_list_marker_star, ACTIONS(885), 1, sym_list_marker_plus, - STATE(30), 1, + STATE(28), 1, sym_list_marker_task, - STATE(555), 1, + STATE(628), 1, sym__inline, STATE(273), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - STATE(291), 3, + STATE(308), 3, sym_table_header, sym_table_separator, sym_table_row, - ACTIONS(11), 6, + ACTIONS(9), 6, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - [7279] = 13, - ACTIONS(29), 1, + [7424] = 13, + ACTIONS(27), 1, sym__list_marker_task_begin, - ACTIONS(195), 1, + ACTIONS(378), 1, sym__table_header_begin, - ACTIONS(197), 1, + ACTIONS(380), 1, sym__table_separator_begin, - ACTIONS(199), 1, + ACTIONS(382), 1, sym__table_row_begin, ACTIONS(877), 1, anon_sym_LBRACK_CARET, @@ -19865,193 +20032,38 @@ static const uint16_t ts_small_parse_table[] = { sym_list_marker_star, ACTIONS(885), 1, sym_list_marker_plus, - STATE(30), 1, + STATE(28), 1, sym_list_marker_task, - STATE(555), 1, + STATE(628), 1, sym__inline, STATE(273), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - STATE(98), 3, + STATE(325), 3, sym_table_header, sym_table_separator, sym_table_row, - ACTIONS(11), 6, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_PERCENT, - [7327] = 12, - ACTIONS(907), 1, - anon_sym_RBRACE, - ACTIONS(909), 1, - anon_sym_DOT, - ACTIONS(912), 1, - aux_sym_identifier_token1, - ACTIONS(915), 1, - sym__whitespace1, - ACTIONS(917), 1, - anon_sym_PERCENT, - ACTIONS(920), 1, - sym__id, - STATE(268), 1, - aux_sym_block_attribute_repeat1, - STATE(369), 1, - sym__comment_no_newline, - STATE(927), 1, - sym_key, - ACTIONS(922), 2, - sym__eof_or_newline, - sym__newline_inline, - STATE(359), 3, - sym_class, - sym_identifier, - sym_key_value, - ACTIONS(905), 4, + ACTIONS(9), 6, anon_sym_LBRACK, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, - aux_sym__inline_token1, - [7370] = 12, - ACTIONS(909), 1, anon_sym_DOT, - ACTIONS(912), 1, aux_sym_identifier_token1, - ACTIONS(915), 1, - sym__whitespace1, - ACTIONS(917), 1, - anon_sym_PERCENT, - ACTIONS(920), 1, - sym__id, - ACTIONS(924), 1, - anon_sym_RBRACE, - STATE(260), 1, - aux_sym_block_attribute_repeat1, - STATE(369), 1, - sym__comment_no_newline, - STATE(927), 1, - sym_key, - ACTIONS(922), 2, - sym__eof_or_newline, - sym__newline_inline, - STATE(359), 3, - sym_class, - sym_identifier, - sym_key_value, - ACTIONS(905), 4, - anon_sym_LBRACK, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, aux_sym__inline_token1, - [7413] = 12, - ACTIONS(909), 1, - anon_sym_DOT, - ACTIONS(912), 1, - aux_sym_identifier_token1, - ACTIONS(915), 1, - sym__whitespace1, - ACTIONS(917), 1, - anon_sym_PERCENT, - ACTIONS(920), 1, - sym__id, - ACTIONS(926), 1, - anon_sym_RBRACE, - STATE(262), 1, - aux_sym_block_attribute_repeat1, - STATE(369), 1, - sym__comment_no_newline, - STATE(927), 1, - sym_key, - ACTIONS(922), 2, - sym__eof_or_newline, - sym__newline_inline, - STATE(359), 3, - sym_class, - sym_identifier, - sym_key_value, - ACTIONS(905), 4, - anon_sym_LBRACK, - anon_sym_LBRACK_CARET, anon_sym_LBRACE, - aux_sym__inline_token1, - [7456] = 12, - ACTIONS(909), 1, - anon_sym_DOT, - ACTIONS(912), 1, - aux_sym_identifier_token1, - ACTIONS(915), 1, - sym__whitespace1, - ACTIONS(917), 1, anon_sym_PERCENT, - ACTIONS(920), 1, - sym__id, - ACTIONS(928), 1, - anon_sym_RBRACE, - STATE(263), 1, - aux_sym_block_attribute_repeat1, - STATE(369), 1, - sym__comment_no_newline, - STATE(927), 1, - sym_key, - ACTIONS(922), 2, - sym__eof_or_newline, - sym__newline_inline, - STATE(359), 3, - sym_class, - sym_identifier, - sym_key_value, - ACTIONS(905), 4, - anon_sym_LBRACK, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, - aux_sym__inline_token1, - [7499] = 12, + [7472] = 4, ACTIONS(909), 1, - anon_sym_DOT, - ACTIONS(912), 1, - aux_sym_identifier_token1, - ACTIONS(915), 1, - sym__whitespace1, - ACTIONS(917), 1, - anon_sym_PERCENT, - ACTIONS(920), 1, - sym__id, - ACTIONS(930), 1, - anon_sym_RBRACE, - STATE(264), 1, - aux_sym_block_attribute_repeat1, - STATE(369), 1, - sym__comment_no_newline, - STATE(927), 1, - sym_key, - ACTIONS(922), 2, - sym__eof_or_newline, - sym__newline_inline, - STATE(359), 3, - sym_class, - sym_identifier, - sym_key_value, - ACTIONS(905), 4, - anon_sym_LBRACK, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, - aux_sym__inline_token1, - [7542] = 4, - ACTIONS(936), 1, sym__block_quote_continuation, - STATE(232), 1, + STATE(227), 1, aux_sym__block_quote_prefix_repeat1, - ACTIONS(932), 7, + ACTIONS(905), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(934), 8, + ACTIONS(907), 8, sym__block_close, sym_list_marker_dash, sym_list_marker_star, @@ -20060,18 +20072,18 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [7568] = 4, - ACTIONS(938), 1, + [7498] = 4, + ACTIONS(911), 1, sym__block_quote_continuation, - STATE(232), 1, + STATE(227), 1, aux_sym__block_quote_prefix_repeat1, ACTIONS(866), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, ACTIONS(868), 8, sym__block_close, @@ -20082,39 +20094,69 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [7594] = 2, - ACTIONS(458), 7, + [7524] = 4, + ACTIONS(914), 1, + sym__block_quote_continuation, + STATE(228), 1, + aux_sym__block_quote_prefix_repeat1, + ACTIONS(866), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(460), 9, - sym__block_close, + ACTIONS(868), 7, sym_list_marker_dash, sym_list_marker_star, sym_list_marker_plus, sym__list_marker_task_begin, - sym__block_quote_continuation, sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [7615] = 4, - ACTIONS(65), 1, + [7549] = 11, + ACTIONS(446), 1, + sym__table_header_begin, + ACTIONS(448), 1, + sym__table_separator_begin, + ACTIONS(450), 1, + sym__table_row_begin, + ACTIONS(503), 1, + sym__block_quote_continuation, + ACTIONS(917), 1, + sym__newline, + ACTIONS(919), 1, + sym__table_caption_begin, + STATE(357), 1, + sym__block_quote_prefix, + STATE(421), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(641), 1, + sym_table_caption, + ACTIONS(497), 2, + sym__list_item_continuation, + sym__list_item_end, + STATE(236), 5, + sym__table_row, + sym_table_header, + sym_table_separator, + sym_table_row, + aux_sym_table_repeat1, + [7588] = 4, + ACTIONS(63), 1, sym__block_quote_continuation, - STATE(235), 1, + STATE(228), 1, aux_sym__block_quote_prefix_repeat1, - ACTIONS(932), 7, + ACTIONS(905), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(934), 7, + ACTIONS(907), 7, sym_list_marker_dash, sym_list_marker_star, sym_list_marker_plus, @@ -20122,92 +20164,114 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [7640] = 4, - ACTIONS(941), 1, - sym__block_quote_continuation, - STATE(235), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(866), 7, + [7613] = 2, + ACTIONS(460), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(868), 7, + ACTIONS(462), 9, + sym__block_close, sym_list_marker_dash, sym_list_marker_star, sym_list_marker_plus, sym__list_marker_task_begin, + sym__block_quote_continuation, sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [7665] = 11, - ACTIONS(448), 1, + [7634] = 9, + ACTIONS(877), 1, + anon_sym_LBRACK_CARET, + ACTIONS(921), 1, + sym__block_quote_continuation, + STATE(276), 1, + sym__block_quote_prefix, + STATE(284), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(656), 1, + sym__inline, + STATE(754), 1, + sym__paragraph_content, + STATE(837), 1, + sym__paragraph_inline_content, + STATE(273), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(9), 6, + anon_sym_LBRACK, + anon_sym_DOT, + aux_sym_identifier_token1, + aux_sym__inline_token1, + anon_sym_LBRACE, + anon_sym_PERCENT, + [7668] = 11, + ACTIONS(480), 1, sym__table_header_begin, - ACTIONS(450), 1, + ACTIONS(482), 1, sym__table_separator_begin, - ACTIONS(452), 1, + ACTIONS(484), 1, sym__table_row_begin, + ACTIONS(497), 1, + sym__block_close, ACTIONS(503), 1, sym__block_quote_continuation, - ACTIONS(944), 1, + ACTIONS(923), 1, sym__newline, - ACTIONS(946), 1, + ACTIONS(925), 1, sym__table_caption_begin, - STATE(376), 1, + STATE(369), 1, sym__block_quote_prefix, - STATE(419), 1, + STATE(421), 1, aux_sym__block_quote_prefix_repeat1, - STATE(589), 1, + STATE(678), 1, sym_table_caption, - ACTIONS(499), 2, - sym__list_item_continuation, - sym__list_item_end, - STATE(240), 5, + STATE(241), 5, sym__table_row, sym_table_header, sym_table_separator, sym_table_row, aux_sym_table_repeat1, - [7704] = 11, - ACTIONS(482), 1, + [7706] = 11, + ACTIONS(378), 1, sym__table_header_begin, - ACTIONS(484), 1, + ACTIONS(380), 1, sym__table_separator_begin, - ACTIONS(486), 1, + ACTIONS(382), 1, sym__table_row_begin, - ACTIONS(499), 1, - sym__block_close, + ACTIONS(497), 1, + sym__indented_content_spacer, ACTIONS(503), 1, sym__block_quote_continuation, - ACTIONS(948), 1, + ACTIONS(927), 1, sym__newline, - ACTIONS(950), 1, + ACTIONS(929), 1, sym__table_caption_begin, - STATE(377), 1, + STATE(407), 1, sym__block_quote_prefix, - STATE(419), 1, + STATE(421), 1, aux_sym__block_quote_prefix_repeat1, - STATE(820), 1, + STATE(1140), 1, sym_table_caption, - STATE(248), 5, + STATE(240), 5, sym__table_row, sym_table_header, sym_table_separator, sym_table_row, aux_sym_table_repeat1, - [7742] = 2, - ACTIONS(458), 7, + [7744] = 2, + ACTIONS(460), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(460), 8, + ACTIONS(462), 8, sym_list_marker_dash, sym_list_marker_star, sym_list_marker_plus, @@ -20216,1560 +20280,1470 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [7762] = 9, - ACTIONS(877), 1, - anon_sym_LBRACK_CARET, - ACTIONS(952), 1, - sym__block_quote_continuation, - STATE(277), 1, - sym__block_quote_prefix, - STATE(281), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(655), 1, - sym__inline, - STATE(778), 1, - sym__paragraph_inline_content, - STATE(837), 1, - sym__paragraph_content, - STATE(273), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(11), 6, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_PERCENT, - [7796] = 8, + [7764] = 8, ACTIONS(515), 1, sym__block_quote_continuation, - ACTIONS(954), 1, + ACTIONS(931), 1, sym__table_header_begin, - ACTIONS(957), 1, + ACTIONS(934), 1, sym__table_separator_begin, - ACTIONS(960), 1, + ACTIONS(937), 1, sym__table_row_begin, - STATE(376), 1, + STATE(357), 1, sym__block_quote_prefix, - STATE(419), 1, + STATE(421), 1, aux_sym__block_quote_prefix_repeat1, - ACTIONS(511), 4, + ACTIONS(513), 4, sym__newline, sym__list_item_continuation, sym__list_item_end, sym__table_caption_begin, - STATE(240), 5, - sym__table_row, - sym_table_header, - sym_table_separator, - sym_table_row, - aux_sym_table_repeat1, - [7828] = 11, - ACTIONS(380), 1, - sym__table_header_begin, - ACTIONS(382), 1, - sym__table_separator_begin, - ACTIONS(384), 1, - sym__table_row_begin, - ACTIONS(499), 1, - sym__indented_content_spacer, - ACTIONS(503), 1, - sym__block_quote_continuation, - ACTIONS(963), 1, - sym__newline, - ACTIONS(965), 1, - sym__table_caption_begin, - STATE(352), 1, - sym__block_quote_prefix, - STATE(419), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(1082), 1, - sym_table_caption, - STATE(243), 5, + STATE(236), 5, sym__table_row, sym_table_header, sym_table_separator, sym_table_row, aux_sym_table_repeat1, - [7866] = 8, - ACTIONS(969), 1, + [7796] = 8, + ACTIONS(942), 1, anon_sym_NULL, - ACTIONS(971), 1, + ACTIONS(944), 1, anon_sym_LBRACK_CARET, - ACTIONS(973), 1, + ACTIONS(946), 1, sym__table_caption_end, - STATE(249), 1, + STATE(238), 1, aux_sym_table_caption_repeat1, - STATE(282), 1, + STATE(283), 1, sym__inline_line, - STATE(898), 1, + STATE(941), 1, sym__inline, - STATE(274), 2, + STATE(277), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(967), 6, + ACTIONS(940), 6, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - [7897] = 8, - ACTIONS(515), 1, - sym__block_quote_continuation, - ACTIONS(975), 1, - sym__table_header_begin, - ACTIONS(978), 1, - sym__table_separator_begin, - ACTIONS(981), 1, - sym__table_row_begin, - STATE(352), 1, - sym__block_quote_prefix, - STATE(419), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(511), 3, - sym__newline, - sym__indented_content_spacer, - sym__table_caption_begin, - STATE(243), 5, - sym__table_row, - sym_table_header, - sym_table_separator, - sym_table_row, - aux_sym_table_repeat1, - [7928] = 8, - ACTIONS(971), 1, - anon_sym_LBRACK_CARET, - ACTIONS(984), 1, + [7827] = 8, + ACTIONS(951), 1, anon_sym_NULL, - ACTIONS(986), 1, + ACTIONS(953), 1, + anon_sym_LBRACK_CARET, + ACTIONS(956), 1, sym__table_caption_end, - STATE(249), 1, + STATE(238), 1, aux_sym_table_caption_repeat1, - STATE(282), 1, + STATE(283), 1, sym__inline_line, - STATE(898), 1, + STATE(941), 1, sym__inline, - STATE(274), 2, + STATE(277), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(967), 6, + ACTIONS(948), 6, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - [7959] = 8, - ACTIONS(971), 1, + [7858] = 8, + ACTIONS(944), 1, anon_sym_LBRACK_CARET, - ACTIONS(988), 1, + ACTIONS(958), 1, anon_sym_NULL, - ACTIONS(990), 1, + ACTIONS(960), 1, sym__table_caption_end, - STATE(249), 1, + STATE(238), 1, aux_sym_table_caption_repeat1, - STATE(282), 1, + STATE(283), 1, sym__inline_line, - STATE(898), 1, + STATE(941), 1, sym__inline, - STATE(274), 2, + STATE(277), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(967), 6, + ACTIONS(940), 6, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - [7990] = 8, + [7889] = 8, + ACTIONS(515), 1, + sym__block_quote_continuation, + ACTIONS(962), 1, + sym__table_header_begin, + ACTIONS(965), 1, + sym__table_separator_begin, + ACTIONS(968), 1, + sym__table_row_begin, + STATE(407), 1, + sym__block_quote_prefix, + STATE(421), 1, + aux_sym__block_quote_prefix_repeat1, + ACTIONS(513), 3, + sym__newline, + sym__indented_content_spacer, + sym__table_caption_begin, + STATE(240), 5, + sym__table_row, + sym_table_header, + sym_table_separator, + sym_table_row, + aux_sym_table_repeat1, + [7920] = 8, + ACTIONS(515), 1, + sym__block_quote_continuation, ACTIONS(971), 1, + sym__table_header_begin, + ACTIONS(974), 1, + sym__table_separator_begin, + ACTIONS(977), 1, + sym__table_row_begin, + STATE(369), 1, + sym__block_quote_prefix, + STATE(421), 1, + aux_sym__block_quote_prefix_repeat1, + ACTIONS(513), 3, + sym__block_close, + sym__newline, + sym__table_caption_begin, + STATE(241), 5, + sym__table_row, + sym_table_header, + sym_table_separator, + sym_table_row, + aux_sym_table_repeat1, + [7951] = 8, + ACTIONS(944), 1, anon_sym_LBRACK_CARET, - ACTIONS(992), 1, + ACTIONS(980), 1, anon_sym_NULL, - ACTIONS(994), 1, + ACTIONS(982), 1, sym__table_caption_end, - STATE(249), 1, + STATE(238), 1, aux_sym_table_caption_repeat1, - STATE(282), 1, + STATE(283), 1, sym__inline_line, - STATE(898), 1, + STATE(941), 1, sym__inline, - STATE(274), 2, + STATE(277), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(967), 6, + ACTIONS(940), 6, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - [8021] = 8, - ACTIONS(971), 1, + [7982] = 8, + ACTIONS(944), 1, anon_sym_LBRACK_CARET, - ACTIONS(996), 1, + ACTIONS(984), 1, anon_sym_NULL, - ACTIONS(998), 1, + ACTIONS(986), 1, sym__table_caption_end, - STATE(249), 1, + STATE(238), 1, aux_sym_table_caption_repeat1, - STATE(282), 1, + STATE(283), 1, sym__inline_line, - STATE(898), 1, + STATE(941), 1, sym__inline, - STATE(274), 2, + STATE(277), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(967), 6, + ACTIONS(940), 6, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - [8052] = 8, - ACTIONS(515), 1, - sym__block_quote_continuation, - ACTIONS(1000), 1, - sym__table_header_begin, - ACTIONS(1003), 1, - sym__table_separator_begin, - ACTIONS(1006), 1, - sym__table_row_begin, - STATE(377), 1, - sym__block_quote_prefix, - STATE(419), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(511), 3, - sym__block_close, - sym__newline, - sym__table_caption_begin, - STATE(248), 5, - sym__table_row, - sym_table_header, - sym_table_separator, - sym_table_row, - aux_sym_table_repeat1, - [8083] = 8, - ACTIONS(1012), 1, - anon_sym_NULL, - ACTIONS(1014), 1, + [8013] = 8, + ACTIONS(944), 1, anon_sym_LBRACK_CARET, - ACTIONS(1017), 1, + ACTIONS(988), 1, + anon_sym_NULL, + ACTIONS(990), 1, sym__table_caption_end, - STATE(249), 1, + STATE(238), 1, aux_sym_table_caption_repeat1, - STATE(282), 1, + STATE(283), 1, sym__inline_line, - STATE(898), 1, + STATE(941), 1, sym__inline, - STATE(274), 2, + STATE(277), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1009), 6, + ACTIONS(940), 6, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - [8114] = 6, - ACTIONS(1022), 1, + [8044] = 6, + ACTIONS(995), 1, anon_sym_LBRACK_CARET, - STATE(986), 1, - sym_link_label, - STATE(995), 1, + STATE(947), 1, sym__inline, - ACTIONS(922), 2, + STATE(1146), 1, + sym_link_label, + ACTIONS(998), 2, sym__eof_or_newline, sym__newline_inline, - STATE(275), 2, + STATE(274), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1019), 6, + ACTIONS(992), 6, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - [8140] = 7, + [8070] = 7, ACTIONS(877), 1, anon_sym_LBRACK_CARET, - ACTIONS(952), 1, + ACTIONS(921), 1, sym__block_quote_continuation, - STATE(276), 1, + STATE(275), 1, sym__block_quote_prefix, - STATE(281), 1, + STATE(284), 1, aux_sym__block_quote_prefix_repeat1, - STATE(788), 1, + STATE(767), 1, sym__inline, STATE(273), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(11), 6, + ACTIONS(9), 6, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - [8168] = 6, - ACTIONS(1022), 1, + [8098] = 6, + ACTIONS(995), 1, anon_sym_LBRACK_CARET, - STATE(995), 1, - sym__inline, - STATE(1145), 1, + STATE(897), 1, sym_link_label, - ACTIONS(922), 2, + STATE(947), 1, + sym__inline, + ACTIONS(998), 2, sym__eof_or_newline, sym__newline_inline, - STATE(275), 2, + STATE(274), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1019), 6, + ACTIONS(992), 6, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - [8194] = 6, - ACTIONS(1022), 1, + [8124] = 6, + ACTIONS(995), 1, anon_sym_LBRACK_CARET, - STATE(995), 1, + STATE(947), 1, sym__inline, - STATE(1146), 1, + STATE(1147), 1, sym_link_label, - ACTIONS(922), 2, + ACTIONS(998), 2, sym__eof_or_newline, sym__newline_inline, - STATE(275), 2, + STATE(274), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1019), 6, + ACTIONS(992), 6, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - [8220] = 6, - ACTIONS(1022), 1, + [8150] = 6, + ACTIONS(995), 1, anon_sym_LBRACK_CARET, - STATE(995), 1, + STATE(947), 1, sym__inline, - STATE(1147), 1, + STATE(1144), 1, sym_link_label, - ACTIONS(922), 2, + ACTIONS(998), 2, sym__eof_or_newline, sym__newline_inline, - STATE(275), 2, + STATE(274), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1019), 6, + ACTIONS(992), 6, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - [8246] = 6, - ACTIONS(1022), 1, + [8176] = 6, + ACTIONS(995), 1, anon_sym_LBRACK_CARET, - STATE(995), 1, + STATE(947), 1, sym__inline, - STATE(1148), 1, + STATE(1145), 1, sym_link_label, - ACTIONS(922), 2, + ACTIONS(998), 2, sym__eof_or_newline, sym__newline_inline, - STATE(275), 2, + STATE(274), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1019), 6, + ACTIONS(992), 6, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_PERCENT, - [8272] = 6, - ACTIONS(971), 1, - anon_sym_LBRACK_CARET, - STATE(246), 1, - aux_sym_table_caption_repeat1, - STATE(282), 1, - sym__inline_line, - STATE(898), 1, - sym__inline, - STATE(274), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(967), 6, - anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_PERCENT, + [8202] = 9, + ACTIONS(1000), 1, + anon_sym_RBRACE, + ACTIONS(1002), 1, anon_sym_DOT, + ACTIONS(1004), 1, aux_sym_identifier_token1, - aux_sym__inline_token1, + ACTIONS(1006), 1, + sym__whitespace1, + ACTIONS(1008), 1, anon_sym_PERCENT, - [8297] = 6, - ACTIONS(971), 1, - anon_sym_LBRACK_CARET, - STATE(590), 1, - sym__inline_line, - STATE(897), 1, - sym__heading_content, - STATE(1045), 1, - sym__inline, - STATE(274), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(967), 6, - anon_sym_LBRACK, - anon_sym_LBRACE, + ACTIONS(1010), 1, + sym__id, + STATE(254), 1, + aux_sym_block_attribute_repeat1, + STATE(1059), 1, + sym_key, + STATE(415), 4, + sym_class, + sym_identifier, + sym_key_value, + sym_comment, + [8233] = 9, + ACTIONS(1002), 1, anon_sym_DOT, + ACTIONS(1004), 1, aux_sym_identifier_token1, - aux_sym__inline_token1, + ACTIONS(1006), 1, + sym__whitespace1, + ACTIONS(1008), 1, anon_sym_PERCENT, - [8322] = 6, - ACTIONS(971), 1, + ACTIONS(1010), 1, + sym__id, + ACTIONS(1012), 1, + anon_sym_RBRACE, + STATE(255), 1, + aux_sym_block_attribute_repeat1, + STATE(1059), 1, + sym_key, + STATE(415), 4, + sym_class, + sym_identifier, + sym_key_value, + sym_comment, + [8264] = 6, + ACTIONS(944), 1, anon_sym_LBRACK_CARET, - STATE(590), 1, + STATE(571), 1, sym__inline_line, - STATE(1013), 1, + STATE(932), 1, sym__heading_content, - STATE(1045), 1, + STATE(1021), 1, sym__inline, - STATE(274), 2, + STATE(277), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(967), 6, + ACTIONS(940), 6, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_PERCENT, - [8347] = 6, - ACTIONS(971), 1, - anon_sym_LBRACK_CARET, - STATE(242), 1, - aux_sym_table_caption_repeat1, - STATE(282), 1, - sym__inline_line, - STATE(898), 1, - sym__inline, - STATE(274), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(967), 6, - anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_PERCENT, + [8289] = 9, + ACTIONS(1014), 1, + anon_sym_RBRACE, + ACTIONS(1016), 1, anon_sym_DOT, + ACTIONS(1019), 1, aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_PERCENT, - [8372] = 10, - ACTIONS(915), 1, + ACTIONS(1022), 1, sym__whitespace1, ACTIONS(1025), 1, - anon_sym_RBRACE, - ACTIONS(1027), 1, + anon_sym_PERCENT, + ACTIONS(1028), 1, + sym__id, + STATE(254), 1, + aux_sym_block_attribute_repeat1, + STATE(1059), 1, + sym_key, + STATE(415), 4, + sym_class, + sym_identifier, + sym_key_value, + sym_comment, + [8320] = 9, + ACTIONS(1002), 1, anon_sym_DOT, - ACTIONS(1029), 1, + ACTIONS(1004), 1, aux_sym_identifier_token1, - ACTIONS(1031), 1, + ACTIONS(1006), 1, + sym__whitespace1, + ACTIONS(1008), 1, anon_sym_PERCENT, - ACTIONS(1033), 1, + ACTIONS(1010), 1, sym__id, - STATE(267), 1, + ACTIONS(1031), 1, + anon_sym_RBRACE, + STATE(254), 1, aux_sym_block_attribute_repeat1, - STATE(369), 1, - sym__comment_no_newline, - STATE(927), 1, + STATE(1059), 1, sym_key, - STATE(359), 3, + STATE(415), 4, sym_class, sym_identifier, sym_key_value, - [8405] = 6, - ACTIONS(971), 1, + sym_comment, + [8351] = 6, + ACTIONS(944), 1, anon_sym_LBRACK_CARET, - STATE(590), 1, + STATE(571), 1, sym__inline_line, - STATE(985), 1, + STATE(940), 1, sym__heading_content, - STATE(1045), 1, + STATE(1021), 1, sym__inline, - STATE(274), 2, + STATE(277), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(967), 6, + ACTIONS(940), 6, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - [8430] = 10, - ACTIONS(915), 1, - sym__whitespace1, - ACTIONS(1027), 1, - anon_sym_DOT, - ACTIONS(1029), 1, + [8376] = 6, + ACTIONS(944), 1, + anon_sym_LBRACK_CARET, + STATE(244), 1, + aux_sym_table_caption_repeat1, + STATE(283), 1, + sym__inline_line, + STATE(941), 1, + sym__inline, + STATE(277), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(940), 6, + anon_sym_LBRACK, + anon_sym_DOT, aux_sym_identifier_token1, - ACTIONS(1031), 1, + aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(1033), 1, - sym__id, - ACTIONS(1035), 1, - anon_sym_RBRACE, - STATE(267), 1, - aux_sym_block_attribute_repeat1, - STATE(369), 1, - sym__comment_no_newline, - STATE(927), 1, - sym_key, - STATE(359), 3, - sym_class, - sym_identifier, - sym_key_value, - [8463] = 10, - ACTIONS(915), 1, - sym__whitespace1, - ACTIONS(1027), 1, + [8401] = 9, + ACTIONS(1002), 1, anon_sym_DOT, - ACTIONS(1029), 1, + ACTIONS(1004), 1, aux_sym_identifier_token1, - ACTIONS(1031), 1, + ACTIONS(1006), 1, + sym__whitespace1, + ACTIONS(1008), 1, anon_sym_PERCENT, - ACTIONS(1033), 1, + ACTIONS(1010), 1, sym__id, - ACTIONS(1037), 1, + ACTIONS(1033), 1, anon_sym_RBRACE, - STATE(267), 1, + STATE(254), 1, aux_sym_block_attribute_repeat1, - STATE(369), 1, - sym__comment_no_newline, - STATE(927), 1, + STATE(1059), 1, sym_key, - STATE(359), 3, + STATE(415), 4, sym_class, sym_identifier, sym_key_value, - [8496] = 10, - ACTIONS(915), 1, - sym__whitespace1, - ACTIONS(1027), 1, + sym_comment, + [8432] = 6, + ACTIONS(944), 1, + anon_sym_LBRACK_CARET, + STATE(243), 1, + aux_sym_table_caption_repeat1, + STATE(283), 1, + sym__inline_line, + STATE(941), 1, + sym__inline, + STATE(277), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(940), 6, + anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(1029), 1, aux_sym_identifier_token1, - ACTIONS(1031), 1, + aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(1033), 1, + [8457] = 6, + ACTIONS(944), 1, + anon_sym_LBRACK_CARET, + STATE(571), 1, + sym__inline_line, + STATE(946), 1, + sym__heading_content, + STATE(1021), 1, + sym__inline, + STATE(277), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(940), 6, + anon_sym_LBRACK, + anon_sym_DOT, + aux_sym_identifier_token1, + aux_sym__inline_token1, + anon_sym_LBRACE, + anon_sym_PERCENT, + [8482] = 9, + ACTIONS(1002), 1, + anon_sym_DOT, + ACTIONS(1004), 1, + aux_sym_identifier_token1, + ACTIONS(1006), 1, + sym__whitespace1, + ACTIONS(1008), 1, + anon_sym_PERCENT, + ACTIONS(1010), 1, sym__id, - ACTIONS(1039), 1, + ACTIONS(1035), 1, anon_sym_RBRACE, - STATE(267), 1, + STATE(251), 1, aux_sym_block_attribute_repeat1, - STATE(369), 1, - sym__comment_no_newline, - STATE(927), 1, + STATE(1059), 1, sym_key, - STATE(359), 3, + STATE(415), 4, sym_class, sym_identifier, sym_key_value, - [8529] = 6, - ACTIONS(971), 1, + sym_comment, + [8513] = 6, + ACTIONS(944), 1, anon_sym_LBRACK_CARET, - STATE(590), 1, + STATE(239), 1, + aux_sym_table_caption_repeat1, + STATE(283), 1, sym__inline_line, - STATE(1045), 1, + STATE(941), 1, sym__inline, - STATE(1149), 1, - sym__heading_content, - STATE(274), 2, + STATE(277), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(967), 6, + ACTIONS(940), 6, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - [8554] = 6, - ACTIONS(971), 1, + [8538] = 6, + ACTIONS(944), 1, anon_sym_LBRACK_CARET, - STATE(247), 1, - aux_sym_table_caption_repeat1, - STATE(282), 1, + STATE(571), 1, sym__inline_line, - STATE(898), 1, + STATE(1021), 1, sym__inline, - STATE(274), 2, + STATE(1128), 1, + sym__heading_content, + STATE(277), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(967), 6, + ACTIONS(940), 6, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - [8579] = 10, - ACTIONS(1041), 1, - anon_sym_RBRACE, - ACTIONS(1043), 1, + [8563] = 9, + ACTIONS(1002), 1, anon_sym_DOT, - ACTIONS(1046), 1, + ACTIONS(1004), 1, aux_sym_identifier_token1, - ACTIONS(1049), 1, + ACTIONS(1006), 1, sym__whitespace1, - ACTIONS(1052), 1, + ACTIONS(1008), 1, anon_sym_PERCENT, - ACTIONS(1055), 1, + ACTIONS(1010), 1, sym__id, - STATE(267), 1, + ACTIONS(1037), 1, + anon_sym_RBRACE, + STATE(265), 1, aux_sym_block_attribute_repeat1, - STATE(369), 1, - sym__comment_no_newline, - STATE(927), 1, + STATE(1059), 1, sym_key, - STATE(359), 3, + STATE(415), 4, sym_class, sym_identifier, sym_key_value, - [8612] = 10, - ACTIONS(915), 1, - sym__whitespace1, - ACTIONS(1027), 1, + sym_comment, + [8594] = 9, + ACTIONS(1002), 1, anon_sym_DOT, - ACTIONS(1029), 1, + ACTIONS(1004), 1, aux_sym_identifier_token1, - ACTIONS(1031), 1, + ACTIONS(1006), 1, + sym__whitespace1, + ACTIONS(1008), 1, anon_sym_PERCENT, - ACTIONS(1033), 1, + ACTIONS(1010), 1, sym__id, - ACTIONS(1058), 1, + ACTIONS(1039), 1, anon_sym_RBRACE, - STATE(267), 1, + STATE(254), 1, aux_sym_block_attribute_repeat1, - STATE(369), 1, - sym__comment_no_newline, - STATE(927), 1, + STATE(1059), 1, sym_key, - STATE(359), 3, + STATE(415), 4, sym_class, sym_identifier, sym_key_value, - [8645] = 6, - ACTIONS(971), 1, + sym_comment, + [8625] = 6, + ACTIONS(944), 1, anon_sym_LBRACK_CARET, - STATE(244), 1, + STATE(242), 1, aux_sym_table_caption_repeat1, - STATE(282), 1, + STATE(283), 1, sym__inline_line, - STATE(898), 1, + STATE(941), 1, sym__inline, - STATE(274), 2, + STATE(277), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(967), 6, + ACTIONS(940), 6, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - [8670] = 6, - ACTIONS(971), 1, + [8650] = 9, + ACTIONS(1002), 1, + anon_sym_DOT, + ACTIONS(1004), 1, + aux_sym_identifier_token1, + ACTIONS(1006), 1, + sym__whitespace1, + ACTIONS(1008), 1, + anon_sym_PERCENT, + ACTIONS(1010), 1, + sym__id, + ACTIONS(1041), 1, + anon_sym_RBRACE, + STATE(268), 1, + aux_sym_block_attribute_repeat1, + STATE(1059), 1, + sym_key, + STATE(415), 4, + sym_class, + sym_identifier, + sym_key_value, + sym_comment, + [8681] = 9, + ACTIONS(1002), 1, + anon_sym_DOT, + ACTIONS(1004), 1, + aux_sym_identifier_token1, + ACTIONS(1006), 1, + sym__whitespace1, + ACTIONS(1008), 1, + anon_sym_PERCENT, + ACTIONS(1010), 1, + sym__id, + ACTIONS(1043), 1, + anon_sym_RBRACE, + STATE(254), 1, + aux_sym_block_attribute_repeat1, + STATE(1059), 1, + sym_key, + STATE(415), 4, + sym_class, + sym_identifier, + sym_key_value, + sym_comment, + [8712] = 6, + ACTIONS(944), 1, anon_sym_LBRACK_CARET, - STATE(245), 1, + STATE(237), 1, aux_sym_table_caption_repeat1, - STATE(282), 1, + STATE(283), 1, sym__inline_line, - STATE(898), 1, + STATE(941), 1, sym__inline, - STATE(274), 2, + STATE(277), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(967), 6, + ACTIONS(940), 6, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - [8695] = 4, - ACTIONS(1063), 1, + [8737] = 9, + ACTIONS(1002), 1, + anon_sym_DOT, + ACTIONS(1004), 1, + aux_sym_identifier_token1, + ACTIONS(1006), 1, + sym__whitespace1, + ACTIONS(1008), 1, + anon_sym_PERCENT, + ACTIONS(1010), 1, + sym__id, + ACTIONS(1045), 1, + anon_sym_RBRACE, + STATE(258), 1, + aux_sym_block_attribute_repeat1, + STATE(1059), 1, + sym_key, + STATE(415), 4, + sym_class, + sym_identifier, + sym_key_value, + sym_comment, + [8768] = 4, + ACTIONS(1050), 1, anon_sym_LBRACK_CARET, - ACTIONS(1066), 2, + ACTIONS(1053), 2, sym__eof_or_newline, sym__newline_inline, STATE(271), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1060), 6, + ACTIONS(1047), 6, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - [8715] = 5, - ACTIONS(971), 1, + [8788] = 5, + ACTIONS(944), 1, anon_sym_LBRACK_CARET, - STATE(798), 1, + STATE(790), 1, sym__inline_line, - STATE(1045), 1, + STATE(1021), 1, sym__inline, - STATE(274), 2, + STATE(277), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(967), 6, + ACTIONS(940), 6, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - [8737] = 4, + [8810] = 4, ACTIONS(877), 1, anon_sym_LBRACK_CARET, - ACTIONS(1070), 2, + ACTIONS(1057), 2, sym__eof_or_newline, sym__newline_inline, STATE(271), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1068), 6, + ACTIONS(1055), 6, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - [8757] = 4, - ACTIONS(971), 1, + [8830] = 4, + ACTIONS(1061), 1, + anon_sym_RBRACK, + ACTIONS(1063), 1, anon_sym_LBRACK_CARET, - ACTIONS(1070), 1, - sym__eof_or_newline, STATE(279), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1072), 6, + ACTIONS(1059), 6, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - [8776] = 4, - ACTIONS(1076), 1, - anon_sym_RBRACK, - ACTIONS(1078), 1, + [8849] = 4, + ACTIONS(877), 1, anon_sym_LBRACK_CARET, - STATE(278), 2, + STATE(746), 1, + sym__inline, + STATE(273), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1074), 6, + ACTIONS(9), 6, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - [8795] = 4, + [8868] = 4, ACTIONS(877), 1, anon_sym_LBRACK_CARET, - STATE(740), 1, + STATE(628), 1, sym__inline, STATE(273), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(11), 6, + ACTIONS(9), 6, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - [8814] = 4, - ACTIONS(877), 1, + [8887] = 4, + ACTIONS(944), 1, anon_sym_LBRACK_CARET, - STATE(555), 1, - sym__inline, - STATE(273), 2, + ACTIONS(1057), 1, + sym__eof_or_newline, + STATE(278), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(11), 6, + ACTIONS(1065), 6, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - [8833] = 4, - ACTIONS(1083), 1, - anon_sym_RBRACK, - ACTIONS(1085), 1, + [8906] = 4, + ACTIONS(1053), 1, + sym__eof_or_newline, + ACTIONS(1070), 1, anon_sym_LBRACK_CARET, STATE(278), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1080), 6, + ACTIONS(1067), 6, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - [8852] = 4, - ACTIONS(1066), 1, - sym__eof_or_newline, - ACTIONS(1091), 1, + [8925] = 4, + ACTIONS(1076), 1, + anon_sym_RBRACK, + ACTIONS(1078), 1, anon_sym_LBRACK_CARET, STATE(279), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1088), 6, + ACTIONS(1073), 6, anon_sym_LBRACK, + anon_sym_DOT, + aux_sym_identifier_token1, + aux_sym__inline_token1, anon_sym_LBRACE, + anon_sym_PERCENT, + [8944] = 2, + ACTIONS(1083), 1, + sym__table_caption_end, + ACTIONS(1081), 8, + anon_sym_LBRACK, + anon_sym_NULL, + anon_sym_LBRACK_CARET, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - [8871] = 2, - ACTIONS(1096), 2, + [8958] = 2, + ACTIONS(1087), 2, sym__eof_or_newline, sym__newline_inline, - ACTIONS(1094), 7, + ACTIONS(1085), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - [8885] = 3, - ACTIONS(952), 1, + [8972] = 3, + ACTIONS(1089), 1, sym__block_quote_continuation, - STATE(283), 1, + STATE(282), 1, aux_sym__block_quote_prefix_repeat1, - ACTIONS(932), 7, + ACTIONS(866), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - [8901] = 2, - ACTIONS(1100), 1, + [8988] = 2, + ACTIONS(1094), 1, sym__table_caption_end, - ACTIONS(1098), 8, + ACTIONS(1092), 8, anon_sym_LBRACK, anon_sym_NULL, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - [8915] = 3, - ACTIONS(1102), 1, + [9002] = 3, + ACTIONS(921), 1, sym__block_quote_continuation, - STATE(283), 1, + STATE(282), 1, aux_sym__block_quote_prefix_repeat1, - ACTIONS(866), 7, + ACTIONS(905), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, - anon_sym_LBRACE, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, - anon_sym_PERCENT, - [8931] = 2, - ACTIONS(1107), 1, - sym__table_caption_end, - ACTIONS(1105), 8, - anon_sym_LBRACK, - anon_sym_NULL, - anon_sym_LBRACK_CARET, anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, anon_sym_PERCENT, - [8945] = 8, - ACTIONS(29), 1, + [9018] = 8, + ACTIONS(27), 1, sym__list_marker_task_begin, - ACTIONS(1109), 1, + ACTIONS(1096), 1, sym__block_close, - ACTIONS(1111), 1, + ACTIONS(1098), 1, sym__block_quote_continuation, - STATE(45), 1, + STATE(43), 1, sym_list_marker_task, - STATE(288), 1, + STATE(304), 1, aux_sym__list_task_repeat1, - STATE(558), 1, - sym__list_item_task, - STATE(678), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(689), 1, - sym__block_quote_prefix, - [8970] = 7, - ACTIONS(1113), 1, - aux_sym__line_token1, - ACTIONS(1115), 1, - sym__block_close, - ACTIONS(1117), 1, - sym__block_quote_continuation, - STATE(620), 1, + STATE(550), 1, aux_sym__block_quote_prefix_repeat1, - STATE(755), 1, + STATE(590), 1, + sym__list_item_task, + STATE(842), 1, sym__block_quote_prefix, - STATE(975), 1, - sym_code, - STATE(320), 2, - sym__line, - aux_sym_code_repeat1, - [8993] = 7, - ACTIONS(1113), 1, - aux_sym__line_token1, - ACTIONS(1117), 1, - sym__block_quote_continuation, - ACTIONS(1119), 1, - sym__block_close, - STATE(620), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(755), 1, - sym__block_quote_prefix, - STATE(1087), 1, - sym_code, - STATE(320), 2, - sym__line, - aux_sym_code_repeat1, - [9016] = 8, - ACTIONS(1121), 1, - sym__block_close, - ACTIONS(1123), 1, - sym__list_marker_task_begin, - ACTIONS(1126), 1, - sym__block_quote_continuation, - STATE(45), 1, - sym_list_marker_task, - STATE(288), 1, - aux_sym__list_task_repeat1, - STATE(558), 1, - sym__list_item_task, - STATE(678), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(689), 1, - sym__block_quote_prefix, - [9041] = 2, - ACTIONS(460), 1, - sym__block_quote_continuation, - ACTIONS(458), 7, - anon_sym_LBRACK, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_PERCENT, - [9054] = 2, - ACTIONS(1096), 1, - sym__eof_or_newline, - ACTIONS(1094), 7, - anon_sym_LBRACK, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_PERCENT, - [9067] = 1, - ACTIONS(628), 8, - sym__newline, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - sym__table_header_begin, - sym__table_separator_begin, - sym__table_row_begin, - sym__table_caption_begin, - [9078] = 1, - ACTIONS(642), 8, - sym__newline, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - sym__table_header_begin, - sym__table_separator_begin, - sym__table_row_begin, - sym__table_caption_begin, - [9089] = 1, - ACTIONS(540), 8, - sym__newline, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - sym__table_header_begin, - sym__table_separator_begin, - sym__table_row_begin, - sym__table_caption_begin, - [9100] = 1, - ACTIONS(546), 8, - sym__newline, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - sym__table_header_begin, - sym__table_separator_begin, - sym__table_row_begin, - sym__table_caption_begin, - [9111] = 1, - ACTIONS(580), 8, - sym__newline, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - sym__table_header_begin, - sym__table_separator_begin, - sym__table_row_begin, - sym__table_caption_begin, - [9122] = 1, - ACTIONS(584), 8, - sym__newline, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - sym__table_header_begin, - sym__table_separator_begin, - sym__table_row_begin, - sym__table_caption_begin, - [9133] = 1, - ACTIONS(588), 8, - sym__newline, - sym__list_item_continuation, - sym__list_item_end, + [9043] = 1, + ACTIONS(560), 8, + sym__newline, + sym__list_item_continuation, + sym__list_item_end, sym__block_quote_continuation, sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, sym__table_caption_begin, - [9144] = 8, - ACTIONS(29), 1, + [9054] = 8, + ACTIONS(27), 1, sym__list_marker_task_begin, - ACTIONS(1111), 1, + ACTIONS(1098), 1, sym__block_quote_continuation, - ACTIONS(1129), 1, + ACTIONS(1100), 1, sym__block_close, - STATE(45), 1, + STATE(43), 1, sym_list_marker_task, - STATE(288), 1, + STATE(304), 1, aux_sym__list_task_repeat1, - STATE(558), 1, - sym__list_item_task, - STATE(678), 1, + STATE(550), 1, aux_sym__block_quote_prefix_repeat1, - STATE(689), 1, + STATE(590), 1, + sym__list_item_task, + STATE(842), 1, sym__block_quote_prefix, - [9169] = 7, - ACTIONS(1113), 1, + [9079] = 7, + ACTIONS(1102), 1, aux_sym__line_token1, - ACTIONS(1117), 1, - sym__block_quote_continuation, - ACTIONS(1131), 1, + ACTIONS(1104), 1, sym__block_close, - STATE(620), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(755), 1, - sym__block_quote_prefix, - STATE(934), 1, - sym_code, - STATE(320), 2, - sym__line, - aux_sym_code_repeat1, - [9192] = 7, - ACTIONS(1113), 1, - aux_sym__line_token1, - ACTIONS(1117), 1, + ACTIONS(1106), 1, sym__block_quote_continuation, - ACTIONS(1133), 1, - sym__block_close, - STATE(620), 1, + STATE(554), 1, aux_sym__block_quote_prefix_repeat1, - STATE(755), 1, + STATE(793), 1, sym__block_quote_prefix, - STATE(907), 1, + STATE(1084), 1, sym_code, - STATE(320), 2, + STATE(345), 2, sym__line, aux_sym_code_repeat1, - [9215] = 7, - ACTIONS(1113), 1, + [9102] = 7, + ACTIONS(1102), 1, aux_sym__line_token1, - ACTIONS(1117), 1, + ACTIONS(1106), 1, sym__block_quote_continuation, - ACTIONS(1135), 1, + ACTIONS(1108), 1, sym__block_close, - STATE(620), 1, + STATE(554), 1, aux_sym__block_quote_prefix_repeat1, - STATE(755), 1, + STATE(793), 1, sym__block_quote_prefix, - STATE(959), 1, + STATE(1048), 1, sym_code, - STATE(320), 2, + STATE(345), 2, sym__line, aux_sym_code_repeat1, - [9238] = 7, - ACTIONS(1113), 1, + [9125] = 7, + ACTIONS(1102), 1, aux_sym__line_token1, - ACTIONS(1117), 1, + ACTIONS(1106), 1, sym__block_quote_continuation, - ACTIONS(1137), 1, + ACTIONS(1110), 1, sym__block_close, - STATE(620), 1, + STATE(554), 1, aux_sym__block_quote_prefix_repeat1, - STATE(755), 1, + STATE(793), 1, sym__block_quote_prefix, - STATE(961), 1, + STATE(1078), 1, sym_code, - STATE(320), 2, + STATE(345), 2, sym__line, aux_sym_code_repeat1, - [9261] = 7, - ACTIONS(1113), 1, + [9148] = 7, + ACTIONS(1102), 1, aux_sym__line_token1, - ACTIONS(1117), 1, + ACTIONS(1106), 1, sym__block_quote_continuation, - ACTIONS(1139), 1, + ACTIONS(1112), 1, sym__block_close, - STATE(620), 1, + STATE(554), 1, aux_sym__block_quote_prefix_repeat1, - STATE(755), 1, + STATE(793), 1, sym__block_quote_prefix, - STATE(909), 1, + STATE(1079), 1, sym_code, - STATE(320), 2, + STATE(345), 2, sym__line, aux_sym_code_repeat1, - [9284] = 1, - ACTIONS(1094), 8, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACK_CARET, - anon_sym_LBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_PERCENT, - [9295] = 8, - ACTIONS(29), 1, + [9171] = 8, + ACTIONS(27), 1, sym__list_marker_task_begin, - ACTIONS(1111), 1, + ACTIONS(1098), 1, sym__block_quote_continuation, - ACTIONS(1141), 1, + ACTIONS(1114), 1, sym__block_close, - STATE(45), 1, + STATE(43), 1, sym_list_marker_task, - STATE(288), 1, + STATE(304), 1, aux_sym__list_task_repeat1, - STATE(558), 1, - sym__list_item_task, - STATE(678), 1, + STATE(550), 1, aux_sym__block_quote_prefix_repeat1, - STATE(689), 1, + STATE(590), 1, + sym__list_item_task, + STATE(842), 1, sym__block_quote_prefix, - [9320] = 7, - ACTIONS(1113), 1, + [9196] = 7, + ACTIONS(1102), 1, aux_sym__line_token1, - ACTIONS(1117), 1, + ACTIONS(1106), 1, sym__block_quote_continuation, - ACTIONS(1143), 1, + ACTIONS(1116), 1, sym__block_close, - STATE(620), 1, + STATE(554), 1, aux_sym__block_quote_prefix_repeat1, - STATE(755), 1, + STATE(793), 1, sym__block_quote_prefix, - STATE(1037), 1, + STATE(991), 1, sym_code, - STATE(320), 2, + STATE(345), 2, sym__line, aux_sym_code_repeat1, - [9343] = 7, - ACTIONS(1113), 1, + [9219] = 2, + ACTIONS(1087), 1, + sym__eof_or_newline, + ACTIONS(1085), 7, + anon_sym_LBRACK, + anon_sym_LBRACK_CARET, + anon_sym_DOT, + aux_sym_identifier_token1, + aux_sym__inline_token1, + anon_sym_LBRACE, + anon_sym_PERCENT, + [9232] = 7, + ACTIONS(1102), 1, aux_sym__line_token1, - ACTIONS(1117), 1, + ACTIONS(1106), 1, sym__block_quote_continuation, - ACTIONS(1145), 1, + ACTIONS(1118), 1, sym__block_close, - STATE(620), 1, + STATE(554), 1, aux_sym__block_quote_prefix_repeat1, - STATE(755), 1, + STATE(793), 1, sym__block_quote_prefix, - STATE(1054), 1, + STATE(1014), 1, sym_code, - STATE(320), 2, + STATE(345), 2, sym__line, aux_sym_code_repeat1, - [9366] = 7, - ACTIONS(1113), 1, + [9255] = 7, + ACTIONS(1102), 1, aux_sym__line_token1, - ACTIONS(1117), 1, + ACTIONS(1106), 1, sym__block_quote_continuation, - ACTIONS(1147), 1, + ACTIONS(1120), 1, sym__block_close, - STATE(620), 1, + STATE(554), 1, aux_sym__block_quote_prefix_repeat1, - STATE(755), 1, + STATE(793), 1, sym__block_quote_prefix, - STATE(1055), 1, + STATE(1017), 1, sym_code, - STATE(320), 2, + STATE(345), 2, sym__line, aux_sym_code_repeat1, - [9389] = 8, - ACTIONS(29), 1, + [9278] = 8, + ACTIONS(27), 1, sym__list_marker_task_begin, - ACTIONS(1111), 1, + ACTIONS(1098), 1, sym__block_quote_continuation, - ACTIONS(1149), 1, + ACTIONS(1122), 1, sym__block_close, - STATE(45), 1, + STATE(43), 1, sym_list_marker_task, - STATE(288), 1, + STATE(304), 1, aux_sym__list_task_repeat1, - STATE(558), 1, + STATE(550), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(590), 1, sym__list_item_task, - STATE(678), 1, + STATE(842), 1, + sym__block_quote_prefix, + [9303] = 7, + ACTIONS(1102), 1, + aux_sym__line_token1, + ACTIONS(1106), 1, + sym__block_quote_continuation, + ACTIONS(1124), 1, + sym__block_close, + STATE(554), 1, aux_sym__block_quote_prefix_repeat1, - STATE(689), 1, + STATE(793), 1, sym__block_quote_prefix, - [9414] = 7, - ACTIONS(1113), 1, + STATE(904), 1, + sym_code, + STATE(345), 2, + sym__line, + aux_sym_code_repeat1, + [9326] = 7, + ACTIONS(1102), 1, aux_sym__line_token1, - ACTIONS(1117), 1, + ACTIONS(1106), 1, sym__block_quote_continuation, - ACTIONS(1151), 1, + ACTIONS(1126), 1, sym__block_close, - STATE(620), 1, + STATE(554), 1, aux_sym__block_quote_prefix_repeat1, - STATE(755), 1, + STATE(793), 1, sym__block_quote_prefix, - STATE(905), 1, + STATE(914), 1, sym_code, - STATE(320), 2, + STATE(345), 2, sym__line, aux_sym_code_repeat1, - [9437] = 7, - ACTIONS(1113), 1, + [9349] = 7, + ACTIONS(1102), 1, aux_sym__line_token1, - ACTIONS(1117), 1, + ACTIONS(1106), 1, sym__block_quote_continuation, - ACTIONS(1153), 1, + ACTIONS(1128), 1, sym__block_close, - STATE(620), 1, + STATE(554), 1, aux_sym__block_quote_prefix_repeat1, - STATE(755), 1, + STATE(793), 1, sym__block_quote_prefix, STATE(915), 1, sym_code, - STATE(320), 2, + STATE(345), 2, sym__line, aux_sym_code_repeat1, - [9460] = 7, - ACTIONS(1113), 1, + [9372] = 7, + ACTIONS(1102), 1, aux_sym__line_token1, - ACTIONS(1117), 1, + ACTIONS(1106), 1, sym__block_quote_continuation, - ACTIONS(1155), 1, + ACTIONS(1130), 1, sym__block_close, - STATE(620), 1, + STATE(554), 1, aux_sym__block_quote_prefix_repeat1, - STATE(755), 1, + STATE(793), 1, sym__block_quote_prefix, - STATE(916), 1, + STATE(988), 1, sym_code, - STATE(320), 2, + STATE(345), 2, sym__line, aux_sym_code_repeat1, - [9483] = 8, - ACTIONS(29), 1, + [9395] = 8, + ACTIONS(27), 1, sym__list_marker_task_begin, - ACTIONS(1111), 1, + ACTIONS(1098), 1, sym__block_quote_continuation, - ACTIONS(1157), 1, + ACTIONS(1132), 1, sym__block_close, - STATE(45), 1, + STATE(43), 1, sym_list_marker_task, - STATE(288), 1, + STATE(304), 1, aux_sym__list_task_repeat1, - STATE(558), 1, - sym__list_item_task, - STATE(678), 1, + STATE(550), 1, aux_sym__block_quote_prefix_repeat1, - STATE(689), 1, + STATE(590), 1, + sym__list_item_task, + STATE(842), 1, sym__block_quote_prefix, - [9508] = 7, - ACTIONS(1113), 1, + [9420] = 7, + ACTIONS(1102), 1, aux_sym__line_token1, - ACTIONS(1117), 1, + ACTIONS(1106), 1, sym__block_quote_continuation, - ACTIONS(1159), 1, + ACTIONS(1134), 1, sym__block_close, - STATE(620), 1, + STATE(554), 1, aux_sym__block_quote_prefix_repeat1, - STATE(755), 1, + STATE(793), 1, sym__block_quote_prefix, - STATE(964), 1, + STATE(963), 1, sym_code, - STATE(320), 2, + STATE(345), 2, sym__line, aux_sym_code_repeat1, - [9531] = 7, - ACTIONS(1113), 1, + [9443] = 8, + ACTIONS(1136), 1, + sym__block_close, + ACTIONS(1138), 1, + sym__list_marker_task_begin, + ACTIONS(1141), 1, + sym__block_quote_continuation, + STATE(43), 1, + sym_list_marker_task, + STATE(304), 1, + aux_sym__list_task_repeat1, + STATE(550), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(590), 1, + sym__list_item_task, + STATE(842), 1, + sym__block_quote_prefix, + [9468] = 7, + ACTIONS(1102), 1, aux_sym__line_token1, - ACTIONS(1117), 1, + ACTIONS(1106), 1, sym__block_quote_continuation, - ACTIONS(1161), 1, + ACTIONS(1144), 1, sym__block_close, - STATE(620), 1, + STATE(554), 1, aux_sym__block_quote_prefix_repeat1, - STATE(755), 1, + STATE(793), 1, sym__block_quote_prefix, - STATE(974), 1, + STATE(973), 1, sym_code, - STATE(320), 2, + STATE(345), 2, sym__line, aux_sym_code_repeat1, - [9554] = 7, - ACTIONS(25), 1, - sym_list_marker_star, - ACTIONS(1163), 1, - sym__block_close, - ACTIONS(1165), 1, + [9491] = 7, + ACTIONS(1102), 1, + aux_sym__line_token1, + ACTIONS(1106), 1, sym__block_quote_continuation, - STATE(337), 1, - aux_sym__list_star_repeat1, - STATE(556), 1, - sym__list_item_star, - STATE(567), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(992), 1, - sym__block_quote_prefix, - [9576] = 7, - ACTIONS(1167), 1, + ACTIONS(1146), 1, sym__block_close, - ACTIONS(1169), 1, - sym_list_marker_plus, - ACTIONS(1172), 1, - sym__block_quote_continuation, - STATE(317), 1, - aux_sym__list_plus_repeat1, - STATE(550), 1, - aux_sym__block_quote_prefix_repeat1, STATE(554), 1, - sym__list_item_plus, - STATE(1131), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(793), 1, sym__block_quote_prefix, - [9598] = 1, - ACTIONS(628), 7, + STATE(974), 1, + sym_code, + STATE(345), 2, + sym__line, + aux_sym_code_repeat1, + [9514] = 2, + ACTIONS(462), 1, + sym__block_quote_continuation, + ACTIONS(460), 7, + anon_sym_LBRACK, + anon_sym_LBRACK_CARET, + anon_sym_DOT, + aux_sym_identifier_token1, + aux_sym__inline_token1, + anon_sym_LBRACE, + anon_sym_PERCENT, + [9527] = 1, + ACTIONS(584), 8, sym__newline, - sym__indented_content_spacer, + sym__list_item_continuation, + sym__list_item_end, sym__block_quote_continuation, sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, sym__table_caption_begin, - [9608] = 7, - ACTIONS(23), 1, - sym_list_marker_dash, - ACTIONS(1175), 1, - sym__block_close, - ACTIONS(1177), 1, - sym__block_quote_continuation, - STATE(348), 1, - aux_sym__list_dash_repeat1, - STATE(553), 1, - sym__list_item_dash, - STATE(654), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(910), 1, - sym__block_quote_prefix, - [9630] = 6, - ACTIONS(1113), 1, - aux_sym__line_token1, - ACTIONS(1117), 1, - sym__block_quote_continuation, - ACTIONS(1179), 1, - sym__block_close, - STATE(620), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(755), 1, - sym__block_quote_prefix, - STATE(324), 2, - sym__line, - aux_sym_code_repeat1, - [9650] = 1, - ACTIONS(628), 7, - sym__block_close, + [9538] = 1, + ACTIONS(1085), 8, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACK_CARET, + anon_sym_DOT, + aux_sym_identifier_token1, + aux_sym__inline_token1, + anon_sym_LBRACE, + anon_sym_PERCENT, + [9549] = 1, + ACTIONS(600), 8, sym__newline, + sym__list_item_continuation, + sym__list_item_end, sym__block_quote_continuation, sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, sym__table_caption_begin, - [9660] = 7, - ACTIONS(23), 1, - sym_list_marker_dash, - ACTIONS(1177), 1, - sym__block_quote_continuation, - ACTIONS(1181), 1, - sym__block_close, - STATE(348), 1, - aux_sym__list_dash_repeat1, - STATE(553), 1, - sym__list_item_dash, - STATE(654), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(910), 1, - sym__block_quote_prefix, - [9682] = 7, - ACTIONS(27), 1, - sym_list_marker_plus, - ACTIONS(1183), 1, - sym__block_close, - ACTIONS(1185), 1, - sym__block_quote_continuation, - STATE(317), 1, - aux_sym__list_plus_repeat1, - STATE(550), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(554), 1, - sym__list_item_plus, - STATE(1131), 1, - sym__block_quote_prefix, - [9704] = 6, - ACTIONS(1187), 1, - aux_sym__line_token1, - ACTIONS(1190), 1, - sym__block_close, - ACTIONS(1192), 1, - sym__block_quote_continuation, - STATE(620), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(755), 1, - sym__block_quote_prefix, - STATE(324), 2, - sym__line, - aux_sym_code_repeat1, - [9724] = 1, - ACTIONS(642), 7, + [9560] = 1, + ACTIONS(616), 8, sym__newline, - sym__indented_content_spacer, + sym__list_item_continuation, + sym__list_item_end, sym__block_quote_continuation, sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, sym__table_caption_begin, - [9734] = 7, - ACTIONS(23), 1, - sym_list_marker_dash, - ACTIONS(1177), 1, + [9571] = 1, + ACTIONS(620), 8, + sym__newline, + sym__list_item_continuation, + sym__list_item_end, sym__block_quote_continuation, - ACTIONS(1195), 1, - sym__block_close, - STATE(348), 1, - aux_sym__list_dash_repeat1, - STATE(553), 1, - sym__list_item_dash, - STATE(654), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(910), 1, - sym__block_quote_prefix, - [9756] = 1, - ACTIONS(642), 7, - sym__block_close, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + sym__table_caption_begin, + [9582] = 1, + ACTIONS(552), 8, sym__newline, + sym__list_item_continuation, + sym__list_item_end, sym__block_quote_continuation, sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, sym__table_caption_begin, - [9766] = 1, - ACTIONS(540), 7, - sym__block_close, + [9593] = 1, + ACTIONS(556), 8, sym__newline, + sym__list_item_continuation, + sym__list_item_end, sym__block_quote_continuation, sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, sym__table_caption_begin, - [9776] = 7, - ACTIONS(27), 1, - sym_list_marker_plus, - ACTIONS(1185), 1, + [9604] = 7, + ACTIONS(1102), 1, + aux_sym__line_token1, + ACTIONS(1106), 1, sym__block_quote_continuation, - ACTIONS(1197), 1, + ACTIONS(1148), 1, sym__block_close, - STATE(317), 1, - aux_sym__list_plus_repeat1, - STATE(550), 1, - aux_sym__block_quote_prefix_repeat1, STATE(554), 1, - sym__list_item_plus, - STATE(1131), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(793), 1, sym__block_quote_prefix, - [9798] = 7, - ACTIONS(25), 1, - sym_list_marker_star, - ACTIONS(1165), 1, + STATE(967), 1, + sym_code, + STATE(345), 2, + sym__line, + aux_sym_code_repeat1, + [9627] = 7, + ACTIONS(1150), 1, + sym__block_close, + ACTIONS(1152), 1, + sym_list_marker_dash, + ACTIONS(1155), 1, sym__block_quote_continuation, - ACTIONS(1199), 1, + STATE(316), 1, + aux_sym__list_dash_repeat1, + STATE(587), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(645), 1, + sym__list_item_dash, + STATE(955), 1, + sym__block_quote_prefix, + [9649] = 7, + ACTIONS(25), 1, + sym_list_marker_plus, + ACTIONS(1158), 1, sym__block_close, + ACTIONS(1160), 1, + sym__block_quote_continuation, STATE(337), 1, - aux_sym__list_star_repeat1, - STATE(556), 1, - sym__list_item_star, - STATE(567), 1, + aux_sym__list_plus_repeat1, + STATE(570), 1, aux_sym__block_quote_prefix_repeat1, - STATE(992), 1, + STATE(661), 1, + sym__list_item_plus, + STATE(964), 1, sym__block_quote_prefix, - [9820] = 1, - ACTIONS(546), 7, + [9671] = 7, + ACTIONS(21), 1, + sym_list_marker_dash, + ACTIONS(1162), 1, sym__block_close, - sym__newline, + ACTIONS(1164), 1, sym__block_quote_continuation, - sym__table_header_begin, - sym__table_separator_begin, - sym__table_row_begin, - sym__table_caption_begin, - [9830] = 7, - ACTIONS(27), 1, + STATE(316), 1, + aux_sym__list_dash_repeat1, + STATE(587), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(645), 1, + sym__list_item_dash, + STATE(955), 1, + sym__block_quote_prefix, + [9693] = 7, + ACTIONS(25), 1, sym_list_marker_plus, - ACTIONS(1185), 1, + ACTIONS(1160), 1, sym__block_quote_continuation, - ACTIONS(1201), 1, + ACTIONS(1166), 1, sym__block_close, - STATE(317), 1, + STATE(337), 1, aux_sym__list_plus_repeat1, - STATE(550), 1, + STATE(570), 1, aux_sym__block_quote_prefix_repeat1, - STATE(554), 1, + STATE(661), 1, sym__list_item_plus, - STATE(1131), 1, + STATE(964), 1, sym__block_quote_prefix, - [9852] = 1, - ACTIONS(584), 7, + [9715] = 7, + ACTIONS(23), 1, + sym_list_marker_star, + ACTIONS(1168), 1, + sym__block_close, + ACTIONS(1170), 1, + sym__block_quote_continuation, + STATE(349), 1, + aux_sym__list_star_repeat1, + STATE(573), 1, + sym__list_item_star, + STATE(610), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(987), 1, + sym__block_quote_prefix, + [9737] = 1, + ACTIONS(556), 7, sym__block_close, sym__newline, sym__block_quote_continuation, @@ -21777,77 +21751,53 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, sym__table_caption_begin, - [9862] = 7, - ACTIONS(23), 1, + [9747] = 7, + ACTIONS(21), 1, sym_list_marker_dash, - ACTIONS(1177), 1, + ACTIONS(1164), 1, sym__block_quote_continuation, - ACTIONS(1203), 1, + ACTIONS(1172), 1, sym__block_close, - STATE(348), 1, + STATE(316), 1, aux_sym__list_dash_repeat1, - STATE(553), 1, - sym__list_item_dash, - STATE(654), 1, + STATE(587), 1, aux_sym__block_quote_prefix_repeat1, - STATE(910), 1, + STATE(645), 1, + sym__list_item_dash, + STATE(955), 1, sym__block_quote_prefix, - [9884] = 7, - ACTIONS(27), 1, + [9769] = 7, + ACTIONS(25), 1, sym_list_marker_plus, - ACTIONS(1185), 1, + ACTIONS(1160), 1, sym__block_quote_continuation, - ACTIONS(1205), 1, + ACTIONS(1174), 1, sym__block_close, - STATE(317), 1, + STATE(337), 1, aux_sym__list_plus_repeat1, - STATE(550), 1, + STATE(570), 1, aux_sym__block_quote_prefix_repeat1, - STATE(554), 1, + STATE(661), 1, sym__list_item_plus, - STATE(1131), 1, + STATE(964), 1, sym__block_quote_prefix, - [9906] = 7, - ACTIONS(25), 1, + [9791] = 7, + ACTIONS(23), 1, sym_list_marker_star, - ACTIONS(1165), 1, + ACTIONS(1170), 1, sym__block_quote_continuation, - ACTIONS(1207), 1, - sym__block_close, - STATE(337), 1, - aux_sym__list_star_repeat1, - STATE(556), 1, - sym__list_item_star, - STATE(567), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(992), 1, - sym__block_quote_prefix, - [9928] = 7, - ACTIONS(1209), 1, + ACTIONS(1176), 1, sym__block_close, - ACTIONS(1211), 1, - sym_list_marker_star, - ACTIONS(1214), 1, - sym__block_quote_continuation, - STATE(337), 1, + STATE(349), 1, aux_sym__list_star_repeat1, - STATE(556), 1, + STATE(573), 1, sym__list_item_star, - STATE(567), 1, + STATE(610), 1, aux_sym__block_quote_prefix_repeat1, - STATE(992), 1, + STATE(987), 1, sym__block_quote_prefix, - [9950] = 1, - ACTIONS(588), 7, - sym__block_close, - sym__newline, - sym__block_quote_continuation, - sym__table_header_begin, - sym__table_separator_begin, - sym__table_row_begin, - sym__table_caption_begin, - [9960] = 1, - ACTIONS(540), 7, + [9813] = 1, + ACTIONS(584), 7, sym__newline, sym__indented_content_spacer, sym__block_quote_continuation, @@ -21855,119 +21805,119 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, sym__table_caption_begin, - [9970] = 1, - ACTIONS(546), 7, + [9823] = 1, + ACTIONS(560), 7, + sym__block_close, sym__newline, - sym__indented_content_spacer, sym__block_quote_continuation, sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, sym__table_caption_begin, - [9980] = 1, - ACTIONS(580), 7, + [9833] = 1, + ACTIONS(600), 7, + sym__block_close, sym__newline, - sym__indented_content_spacer, sym__block_quote_continuation, sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, sym__table_caption_begin, - [9990] = 7, - ACTIONS(23), 1, + [9843] = 7, + ACTIONS(21), 1, sym_list_marker_dash, - ACTIONS(1177), 1, + ACTIONS(1164), 1, sym__block_quote_continuation, - ACTIONS(1217), 1, + ACTIONS(1178), 1, sym__block_close, - STATE(348), 1, + STATE(316), 1, aux_sym__list_dash_repeat1, - STATE(553), 1, - sym__list_item_dash, - STATE(654), 1, + STATE(587), 1, aux_sym__block_quote_prefix_repeat1, - STATE(910), 1, + STATE(645), 1, + sym__list_item_dash, + STATE(955), 1, sym__block_quote_prefix, - [10012] = 7, - ACTIONS(27), 1, + [9865] = 7, + ACTIONS(25), 1, sym_list_marker_plus, - ACTIONS(1185), 1, + ACTIONS(1160), 1, sym__block_quote_continuation, - ACTIONS(1219), 1, + ACTIONS(1180), 1, sym__block_close, - STATE(317), 1, + STATE(337), 1, aux_sym__list_plus_repeat1, - STATE(550), 1, + STATE(570), 1, aux_sym__block_quote_prefix_repeat1, - STATE(554), 1, + STATE(661), 1, sym__list_item_plus, - STATE(1131), 1, + STATE(964), 1, sym__block_quote_prefix, - [10034] = 7, - ACTIONS(25), 1, + [9887] = 7, + ACTIONS(23), 1, sym_list_marker_star, - ACTIONS(1165), 1, + ACTIONS(1170), 1, sym__block_quote_continuation, - ACTIONS(1221), 1, + ACTIONS(1182), 1, sym__block_close, - STATE(337), 1, + STATE(349), 1, aux_sym__list_star_repeat1, - STATE(556), 1, + STATE(573), 1, sym__list_item_star, - STATE(567), 1, + STATE(610), 1, aux_sym__block_quote_prefix_repeat1, - STATE(992), 1, + STATE(987), 1, sym__block_quote_prefix, - [10056] = 7, - ACTIONS(25), 1, + [9909] = 7, + ACTIONS(23), 1, sym_list_marker_star, - ACTIONS(1165), 1, + ACTIONS(1170), 1, sym__block_quote_continuation, - ACTIONS(1223), 1, + ACTIONS(1184), 1, sym__block_close, - STATE(337), 1, + STATE(349), 1, aux_sym__list_star_repeat1, - STATE(556), 1, + STATE(573), 1, sym__list_item_star, - STATE(567), 1, + STATE(610), 1, aux_sym__block_quote_prefix_repeat1, - STATE(992), 1, + STATE(987), 1, sym__block_quote_prefix, - [10078] = 1, - ACTIONS(584), 7, + [9931] = 1, + ACTIONS(552), 7, + sym__block_close, sym__newline, - sym__indented_content_spacer, sym__block_quote_continuation, sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, sym__table_caption_begin, - [10088] = 1, - ACTIONS(588), 7, + [9941] = 1, + ACTIONS(616), 7, + sym__block_close, sym__newline, - sym__indented_content_spacer, sym__block_quote_continuation, sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, sym__table_caption_begin, - [10098] = 7, - ACTIONS(1225), 1, - sym__block_close, - ACTIONS(1227), 1, + [9951] = 7, + ACTIONS(21), 1, sym_list_marker_dash, - ACTIONS(1230), 1, + ACTIONS(1164), 1, sym__block_quote_continuation, - STATE(348), 1, + ACTIONS(1186), 1, + sym__block_close, + STATE(316), 1, aux_sym__list_dash_repeat1, - STATE(553), 1, - sym__list_item_dash, - STATE(654), 1, + STATE(587), 1, aux_sym__block_quote_prefix_repeat1, - STATE(910), 1, + STATE(645), 1, + sym__list_item_dash, + STATE(955), 1, sym__block_quote_prefix, - [10120] = 1, - ACTIONS(580), 7, + [9973] = 1, + ACTIONS(584), 7, sym__block_close, sym__newline, sym__block_quote_continuation, @@ -21975,6712 +21925,6863 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, sym__table_caption_begin, - [10130] = 6, - ACTIONS(1233), 1, - sym__list_item_continuation, - ACTIONS(1235), 1, - sym__list_item_end, - ACTIONS(1237), 1, - sym__block_quote_continuation, - STATE(407), 1, - aux_sym_list_item_content_repeat1, - STATE(622), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(1124), 1, - sym__block_quote_prefix, - [10149] = 6, - ACTIONS(1239), 1, + [9983] = 1, + ACTIONS(600), 7, + sym__newline, + sym__indented_content_spacer, sym__block_quote_continuation, - ACTIONS(1242), 1, - sym__footnote_continuation, - ACTIONS(1245), 1, - sym__footnote_end, - STATE(351), 1, - aux_sym_footnote_content_repeat1, - STATE(624), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(957), 1, - sym__block_quote_prefix, - [10168] = 4, - ACTIONS(380), 1, sym__table_header_begin, - ACTIONS(382), 1, sym__table_separator_begin, - ACTIONS(384), 1, sym__table_row_begin, - STATE(318), 3, - sym_table_header, - sym_table_separator, - sym_table_row, - [10183] = 6, - ACTIONS(1233), 1, - sym__list_item_continuation, - ACTIONS(1237), 1, + sym__table_caption_begin, + [9993] = 7, + ACTIONS(1188), 1, + sym__block_close, + ACTIONS(1190), 1, + sym_list_marker_plus, + ACTIONS(1193), 1, sym__block_quote_continuation, - ACTIONS(1247), 1, - sym__list_item_end, - STATE(414), 1, - aux_sym_list_item_content_repeat1, - STATE(622), 1, + STATE(337), 1, + aux_sym__list_plus_repeat1, + STATE(570), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1124), 1, + STATE(661), 1, + sym__list_item_plus, + STATE(964), 1, sym__block_quote_prefix, - [10202] = 6, - ACTIONS(1233), 1, - sym__list_item_continuation, - ACTIONS(1237), 1, + [10015] = 1, + ACTIONS(616), 7, + sym__newline, + sym__indented_content_spacer, sym__block_quote_continuation, - ACTIONS(1249), 1, - sym__list_item_end, - STATE(360), 1, - aux_sym_list_item_content_repeat1, - STATE(622), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(1124), 1, - sym__block_quote_prefix, - [10221] = 6, - ACTIONS(1233), 1, - sym__list_item_continuation, - ACTIONS(1237), 1, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + sym__table_caption_begin, + [10025] = 1, + ACTIONS(620), 7, + sym__newline, + sym__indented_content_spacer, sym__block_quote_continuation, - ACTIONS(1251), 1, - sym__list_item_end, - STATE(415), 1, - aux_sym_list_item_content_repeat1, - STATE(622), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(1124), 1, - sym__block_quote_prefix, - [10240] = 6, - ACTIONS(1253), 1, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + sym__table_caption_begin, + [10035] = 1, + ACTIONS(552), 7, + sym__newline, + sym__indented_content_spacer, sym__block_quote_continuation, - ACTIONS(1255), 1, - sym__footnote_continuation, - ACTIONS(1257), 1, - sym__footnote_end, - STATE(357), 1, - aux_sym_footnote_content_repeat1, - STATE(624), 1, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + sym__table_caption_begin, + [10045] = 1, + ACTIONS(556), 7, + sym__newline, + sym__indented_content_spacer, + sym__block_quote_continuation, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + sym__table_caption_begin, + [10055] = 7, + ACTIONS(23), 1, + sym_list_marker_star, + ACTIONS(1170), 1, + sym__block_quote_continuation, + ACTIONS(1196), 1, + sym__block_close, + STATE(349), 1, + aux_sym__list_star_repeat1, + STATE(573), 1, + sym__list_item_star, + STATE(610), 1, aux_sym__block_quote_prefix_repeat1, - STATE(957), 1, + STATE(987), 1, sym__block_quote_prefix, - [10259] = 6, - ACTIONS(1253), 1, + [10077] = 1, + ACTIONS(560), 7, + sym__newline, + sym__indented_content_spacer, sym__block_quote_continuation, - ACTIONS(1255), 1, - sym__footnote_continuation, - ACTIONS(1259), 1, - sym__footnote_end, - STATE(351), 1, - aux_sym_footnote_content_repeat1, - STATE(624), 1, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + sym__table_caption_begin, + [10087] = 1, + ACTIONS(620), 7, + sym__block_close, + sym__newline, + sym__block_quote_continuation, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + sym__table_caption_begin, + [10097] = 6, + ACTIONS(1102), 1, + aux_sym__line_token1, + ACTIONS(1106), 1, + sym__block_quote_continuation, + ACTIONS(1198), 1, + sym__block_close, + STATE(554), 1, aux_sym__block_quote_prefix_repeat1, - STATE(957), 1, + STATE(793), 1, sym__block_quote_prefix, - [10278] = 1, - ACTIONS(1261), 6, - anon_sym_RBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - sym__whitespace1, - anon_sym_PERCENT, - sym__id, - [10287] = 1, - ACTIONS(1263), 6, - anon_sym_RBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - sym__whitespace1, - anon_sym_PERCENT, - sym__id, - [10296] = 6, - ACTIONS(1233), 1, - sym__list_item_continuation, - ACTIONS(1237), 1, + STATE(346), 2, + sym__line, + aux_sym_code_repeat1, + [10117] = 6, + ACTIONS(1200), 1, + aux_sym__line_token1, + ACTIONS(1203), 1, + sym__block_close, + ACTIONS(1205), 1, sym__block_quote_continuation, - ACTIONS(1265), 1, - sym__list_item_end, - STATE(415), 1, - aux_sym_list_item_content_repeat1, - STATE(622), 1, + STATE(554), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1124), 1, + STATE(793), 1, sym__block_quote_prefix, - [10315] = 6, - ACTIONS(1253), 1, + STATE(346), 2, + sym__line, + aux_sym_code_repeat1, + [10137] = 7, + ACTIONS(21), 1, + sym_list_marker_dash, + ACTIONS(1164), 1, sym__block_quote_continuation, - ACTIONS(1255), 1, - sym__footnote_continuation, - ACTIONS(1267), 1, - sym__footnote_end, - STATE(374), 1, - aux_sym_footnote_content_repeat1, - STATE(624), 1, + ACTIONS(1208), 1, + sym__block_close, + STATE(316), 1, + aux_sym__list_dash_repeat1, + STATE(587), 1, aux_sym__block_quote_prefix_repeat1, - STATE(957), 1, + STATE(645), 1, + sym__list_item_dash, + STATE(955), 1, sym__block_quote_prefix, - [10334] = 4, - ACTIONS(195), 1, - sym__table_header_begin, - ACTIONS(197), 1, - sym__table_separator_begin, - ACTIONS(199), 1, - sym__table_row_begin, - STATE(98), 3, - sym_table_header, - sym_table_separator, - sym_table_row, - [10349] = 6, - ACTIONS(1253), 1, + [10159] = 7, + ACTIONS(25), 1, + sym_list_marker_plus, + ACTIONS(1160), 1, sym__block_quote_continuation, - ACTIONS(1255), 1, - sym__footnote_continuation, - ACTIONS(1269), 1, - sym__footnote_end, - STATE(366), 1, - aux_sym_footnote_content_repeat1, - STATE(624), 1, + ACTIONS(1210), 1, + sym__block_close, + STATE(337), 1, + aux_sym__list_plus_repeat1, + STATE(570), 1, aux_sym__block_quote_prefix_repeat1, - STATE(957), 1, + STATE(661), 1, + sym__list_item_plus, + STATE(964), 1, sym__block_quote_prefix, - [10368] = 6, - ACTIONS(1233), 1, - sym__list_item_continuation, - ACTIONS(1237), 1, + [10181] = 7, + ACTIONS(1212), 1, + sym__block_close, + ACTIONS(1214), 1, + sym_list_marker_star, + ACTIONS(1217), 1, sym__block_quote_continuation, - ACTIONS(1271), 1, - sym__list_item_end, - STATE(368), 1, - aux_sym_list_item_content_repeat1, - STATE(622), 1, + STATE(349), 1, + aux_sym__list_star_repeat1, + STATE(573), 1, + sym__list_item_star, + STATE(610), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1124), 1, + STATE(987), 1, sym__block_quote_prefix, - [10387] = 6, - ACTIONS(1237), 1, - sym__block_quote_continuation, - ACTIONS(1273), 1, + [10203] = 6, + ACTIONS(1220), 1, sym__list_item_continuation, - ACTIONS(1275), 1, + ACTIONS(1222), 1, sym__list_item_end, - STATE(416), 1, - aux_sym__list_item_definition_repeat1, - STATE(622), 1, + ACTIONS(1224), 1, + sym__block_quote_continuation, + STATE(370), 1, + aux_sym_list_item_content_repeat1, + STATE(556), 1, aux_sym__block_quote_prefix_repeat1, - STATE(994), 1, + STATE(948), 1, sym__block_quote_prefix, - [10406] = 6, - ACTIONS(1253), 1, + [10222] = 6, + ACTIONS(1226), 1, sym__block_quote_continuation, - ACTIONS(1255), 1, + ACTIONS(1228), 1, sym__footnote_continuation, - ACTIONS(1277), 1, + ACTIONS(1230), 1, sym__footnote_end, - STATE(351), 1, + STATE(404), 1, aux_sym_footnote_content_repeat1, - STATE(624), 1, + STATE(558), 1, aux_sym__block_quote_prefix_repeat1, - STATE(957), 1, + STATE(995), 1, sym__block_quote_prefix, - [10425] = 1, - ACTIONS(1279), 6, - anon_sym_RBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - sym__whitespace1, - anon_sym_PERCENT, - sym__id, - [10434] = 6, - ACTIONS(1233), 1, + [10241] = 6, + ACTIONS(1220), 1, sym__list_item_continuation, - ACTIONS(1237), 1, + ACTIONS(1224), 1, sym__block_quote_continuation, - ACTIONS(1281), 1, + ACTIONS(1232), 1, sym__list_item_end, - STATE(415), 1, + STATE(397), 1, aux_sym_list_item_content_repeat1, - STATE(622), 1, + STATE(556), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1124), 1, + STATE(948), 1, sym__block_quote_prefix, - [10453] = 1, - ACTIONS(1283), 6, - anon_sym_RBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - sym__whitespace1, - anon_sym_PERCENT, - sym__id, - [10462] = 6, - ACTIONS(1253), 1, + [10260] = 6, + ACTIONS(1220), 1, + sym__list_item_continuation, + ACTIONS(1224), 1, sym__block_quote_continuation, - ACTIONS(1255), 1, - sym__footnote_continuation, - ACTIONS(1285), 1, - sym__footnote_end, - STATE(371), 1, - aux_sym_footnote_content_repeat1, - STATE(624), 1, + ACTIONS(1234), 1, + sym__list_item_end, + STATE(352), 1, + aux_sym_list_item_content_repeat1, + STATE(556), 1, aux_sym__block_quote_prefix_repeat1, - STATE(957), 1, + STATE(948), 1, sym__block_quote_prefix, - [10481] = 6, - ACTIONS(1253), 1, + [10279] = 6, + ACTIONS(1226), 1, sym__block_quote_continuation, - ACTIONS(1255), 1, + ACTIONS(1228), 1, sym__footnote_continuation, - ACTIONS(1287), 1, + ACTIONS(1236), 1, sym__footnote_end, - STATE(351), 1, + STATE(356), 1, aux_sym_footnote_content_repeat1, - STATE(624), 1, + STATE(558), 1, aux_sym__block_quote_prefix_repeat1, - STATE(957), 1, + STATE(995), 1, sym__block_quote_prefix, - [10500] = 1, - ACTIONS(1289), 6, - anon_sym_RBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - sym__whitespace1, - anon_sym_PERCENT, - sym__id, - [10509] = 1, - ACTIONS(1291), 6, - anon_sym_RBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - sym__whitespace1, - anon_sym_PERCENT, - sym__id, - [10518] = 6, - ACTIONS(1253), 1, + [10298] = 6, + ACTIONS(1220), 1, + sym__list_item_continuation, + ACTIONS(1224), 1, + sym__block_quote_continuation, + ACTIONS(1238), 1, + sym__list_item_end, + STATE(406), 1, + aux_sym_list_item_content_repeat1, + STATE(556), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(948), 1, + sym__block_quote_prefix, + [10317] = 6, + ACTIONS(1226), 1, sym__block_quote_continuation, - ACTIONS(1255), 1, + ACTIONS(1228), 1, sym__footnote_continuation, - ACTIONS(1293), 1, + ACTIONS(1240), 1, sym__footnote_end, - STATE(351), 1, + STATE(404), 1, aux_sym_footnote_content_repeat1, - STATE(624), 1, + STATE(558), 1, aux_sym__block_quote_prefix_repeat1, - STATE(957), 1, + STATE(995), 1, sym__block_quote_prefix, - [10537] = 1, - ACTIONS(1295), 6, - anon_sym_RBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - sym__whitespace1, - anon_sym_PERCENT, - sym__id, - [10546] = 4, - ACTIONS(448), 1, - sym__table_header_begin, - ACTIONS(450), 1, - sym__table_separator_begin, - ACTIONS(452), 1, - sym__table_row_begin, - STATE(291), 3, - sym_table_header, - sym_table_separator, - sym_table_row, - [10561] = 4, - ACTIONS(482), 1, + [10336] = 4, + ACTIONS(446), 1, sym__table_header_begin, - ACTIONS(484), 1, + ACTIONS(448), 1, sym__table_separator_begin, - ACTIONS(486), 1, + ACTIONS(450), 1, sym__table_row_begin, - STATE(321), 3, + STATE(308), 3, sym_table_header, sym_table_separator, sym_table_row, - [10576] = 6, - ACTIONS(1233), 1, + [10351] = 1, + ACTIONS(1242), 6, + anon_sym_RBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + sym__whitespace1, + anon_sym_PERCENT, + sym__id, + [10360] = 6, + ACTIONS(1220), 1, sym__list_item_continuation, - ACTIONS(1237), 1, + ACTIONS(1224), 1, sym__block_quote_continuation, - ACTIONS(1297), 1, + ACTIONS(1244), 1, sym__list_item_end, - STATE(383), 1, + STATE(364), 1, aux_sym_list_item_content_repeat1, - STATE(622), 1, + STATE(556), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1124), 1, + STATE(948), 1, sym__block_quote_prefix, - [10595] = 1, - ACTIONS(1299), 6, + [10379] = 1, + ACTIONS(1246), 6, anon_sym_RBRACE, anon_sym_DOT, aux_sym_identifier_token1, sym__whitespace1, anon_sym_PERCENT, sym__id, - [10604] = 1, - ACTIONS(1301), 6, + [10388] = 6, + ACTIONS(1220), 1, + sym__list_item_continuation, + ACTIONS(1224), 1, + sym__block_quote_continuation, + ACTIONS(1248), 1, + sym__list_item_end, + STATE(363), 1, + aux_sym_list_item_content_repeat1, + STATE(556), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(948), 1, + sym__block_quote_prefix, + [10407] = 1, + ACTIONS(1250), 6, anon_sym_RBRACE, anon_sym_DOT, aux_sym_identifier_token1, sym__whitespace1, anon_sym_PERCENT, sym__id, - [10613] = 6, - ACTIONS(1237), 1, - sym__block_quote_continuation, - ACTIONS(1273), 1, + [10416] = 6, + ACTIONS(1220), 1, sym__list_item_continuation, - ACTIONS(1303), 1, + ACTIONS(1224), 1, + sym__block_quote_continuation, + ACTIONS(1252), 1, sym__list_item_end, - STATE(365), 1, - aux_sym__list_item_definition_repeat1, - STATE(622), 1, + STATE(397), 1, + aux_sym_list_item_content_repeat1, + STATE(556), 1, aux_sym__block_quote_prefix_repeat1, - STATE(994), 1, + STATE(948), 1, sym__block_quote_prefix, - [10632] = 6, - ACTIONS(1233), 1, + [10435] = 6, + ACTIONS(1220), 1, sym__list_item_continuation, - ACTIONS(1237), 1, + ACTIONS(1224), 1, sym__block_quote_continuation, - ACTIONS(1305), 1, + ACTIONS(1254), 1, sym__list_item_end, - STATE(355), 1, + STATE(397), 1, aux_sym_list_item_content_repeat1, - STATE(622), 1, + STATE(556), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1124), 1, + STATE(948), 1, sym__block_quote_prefix, - [10651] = 6, - ACTIONS(1233), 1, + [10454] = 4, + ACTIONS(67), 1, + sym__table_header_begin, + ACTIONS(69), 1, + sym__table_separator_begin, + ACTIONS(71), 1, + sym__table_row_begin, + STATE(81), 3, + sym_table_header, + sym_table_separator, + sym_table_row, + [10469] = 6, + ACTIONS(1256), 1, sym__list_item_continuation, - ACTIONS(1237), 1, - sym__block_quote_continuation, - ACTIONS(1307), 1, + ACTIONS(1259), 1, sym__list_item_end, - STATE(415), 1, - aux_sym_list_item_content_repeat1, - STATE(622), 1, + ACTIONS(1261), 1, + sym__block_quote_continuation, + STATE(366), 1, + aux_sym__list_item_definition_repeat1, + STATE(556), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1124), 1, + STATE(1013), 1, sym__block_quote_prefix, - [10670] = 1, - ACTIONS(1309), 6, - anon_sym_RBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - sym__whitespace1, - anon_sym_PERCENT, - sym__id, - [10679] = 6, - ACTIONS(1253), 1, + [10488] = 6, + ACTIONS(1226), 1, sym__block_quote_continuation, - ACTIONS(1255), 1, + ACTIONS(1228), 1, sym__footnote_continuation, - ACTIONS(1311), 1, + ACTIONS(1264), 1, sym__footnote_end, - STATE(351), 1, + STATE(368), 1, aux_sym_footnote_content_repeat1, - STATE(624), 1, + STATE(558), 1, aux_sym__block_quote_prefix_repeat1, - STATE(957), 1, + STATE(995), 1, sym__block_quote_prefix, - [10698] = 6, - ACTIONS(1233), 1, - sym__list_item_continuation, - ACTIONS(1237), 1, + [10507] = 6, + ACTIONS(1226), 1, sym__block_quote_continuation, - ACTIONS(1313), 1, - sym__list_item_end, - STATE(387), 1, - aux_sym_list_item_content_repeat1, - STATE(622), 1, + ACTIONS(1228), 1, + sym__footnote_continuation, + ACTIONS(1266), 1, + sym__footnote_end, + STATE(404), 1, + aux_sym_footnote_content_repeat1, + STATE(558), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1124), 1, + STATE(995), 1, sym__block_quote_prefix, - [10717] = 6, - ACTIONS(1233), 1, + [10526] = 4, + ACTIONS(480), 1, + sym__table_header_begin, + ACTIONS(482), 1, + sym__table_separator_begin, + ACTIONS(484), 1, + sym__table_row_begin, + STATE(335), 3, + sym_table_header, + sym_table_separator, + sym_table_row, + [10541] = 6, + ACTIONS(1220), 1, sym__list_item_continuation, - ACTIONS(1237), 1, + ACTIONS(1224), 1, sym__block_quote_continuation, - ACTIONS(1315), 1, + ACTIONS(1268), 1, sym__list_item_end, - STATE(415), 1, + STATE(397), 1, aux_sym_list_item_content_repeat1, - STATE(622), 1, + STATE(556), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1124), 1, + STATE(948), 1, sym__block_quote_prefix, - [10736] = 6, - ACTIONS(1233), 1, + [10560] = 6, + ACTIONS(1220), 1, sym__list_item_continuation, - ACTIONS(1237), 1, + ACTIONS(1224), 1, sym__block_quote_continuation, - ACTIONS(1317), 1, + ACTIONS(1270), 1, sym__list_item_end, - STATE(389), 1, + STATE(372), 1, aux_sym_list_item_content_repeat1, - STATE(622), 1, + STATE(556), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1124), 1, + STATE(948), 1, sym__block_quote_prefix, - [10755] = 6, - ACTIONS(1233), 1, + [10579] = 6, + ACTIONS(1220), 1, sym__list_item_continuation, - ACTIONS(1237), 1, + ACTIONS(1224), 1, sym__block_quote_continuation, - ACTIONS(1319), 1, + ACTIONS(1272), 1, sym__list_item_end, - STATE(415), 1, + STATE(397), 1, aux_sym_list_item_content_repeat1, - STATE(622), 1, + STATE(556), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1124), 1, + STATE(948), 1, sym__block_quote_prefix, - [10774] = 6, - ACTIONS(1233), 1, + [10598] = 6, + ACTIONS(1220), 1, sym__list_item_continuation, - ACTIONS(1237), 1, + ACTIONS(1224), 1, sym__block_quote_continuation, - ACTIONS(1321), 1, + ACTIONS(1274), 1, sym__list_item_end, - STATE(391), 1, + STATE(374), 1, aux_sym_list_item_content_repeat1, - STATE(622), 1, + STATE(556), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1124), 1, + STATE(948), 1, sym__block_quote_prefix, - [10793] = 6, - ACTIONS(1233), 1, + [10617] = 6, + ACTIONS(1220), 1, sym__list_item_continuation, - ACTIONS(1237), 1, + ACTIONS(1224), 1, sym__block_quote_continuation, - ACTIONS(1323), 1, + ACTIONS(1276), 1, sym__list_item_end, - STATE(415), 1, + STATE(397), 1, aux_sym_list_item_content_repeat1, - STATE(622), 1, + STATE(556), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1124), 1, + STATE(948), 1, sym__block_quote_prefix, - [10812] = 6, - ACTIONS(1233), 1, + [10636] = 6, + ACTIONS(1220), 1, sym__list_item_continuation, - ACTIONS(1237), 1, + ACTIONS(1224), 1, sym__block_quote_continuation, - ACTIONS(1325), 1, + ACTIONS(1278), 1, sym__list_item_end, - STATE(393), 1, + STATE(376), 1, aux_sym_list_item_content_repeat1, - STATE(622), 1, + STATE(556), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1124), 1, + STATE(948), 1, sym__block_quote_prefix, - [10831] = 6, - ACTIONS(1233), 1, + [10655] = 6, + ACTIONS(1220), 1, sym__list_item_continuation, - ACTIONS(1237), 1, + ACTIONS(1224), 1, sym__block_quote_continuation, - ACTIONS(1327), 1, + ACTIONS(1280), 1, sym__list_item_end, - STATE(415), 1, + STATE(397), 1, aux_sym_list_item_content_repeat1, - STATE(622), 1, + STATE(556), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1124), 1, + STATE(948), 1, sym__block_quote_prefix, - [10850] = 6, - ACTIONS(1233), 1, + [10674] = 6, + ACTIONS(1220), 1, sym__list_item_continuation, - ACTIONS(1237), 1, + ACTIONS(1224), 1, sym__block_quote_continuation, - ACTIONS(1329), 1, + ACTIONS(1282), 1, sym__list_item_end, - STATE(395), 1, + STATE(378), 1, aux_sym_list_item_content_repeat1, - STATE(622), 1, + STATE(556), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1124), 1, + STATE(948), 1, sym__block_quote_prefix, - [10869] = 6, - ACTIONS(1233), 1, + [10693] = 6, + ACTIONS(1220), 1, sym__list_item_continuation, - ACTIONS(1237), 1, + ACTIONS(1224), 1, sym__block_quote_continuation, - ACTIONS(1331), 1, + ACTIONS(1284), 1, sym__list_item_end, - STATE(415), 1, + STATE(397), 1, aux_sym_list_item_content_repeat1, - STATE(622), 1, + STATE(556), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1124), 1, + STATE(948), 1, sym__block_quote_prefix, - [10888] = 6, - ACTIONS(1233), 1, + [10712] = 6, + ACTIONS(1220), 1, sym__list_item_continuation, - ACTIONS(1237), 1, + ACTIONS(1224), 1, sym__block_quote_continuation, - ACTIONS(1333), 1, + ACTIONS(1286), 1, sym__list_item_end, - STATE(397), 1, + STATE(380), 1, aux_sym_list_item_content_repeat1, - STATE(622), 1, + STATE(556), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1124), 1, + STATE(948), 1, sym__block_quote_prefix, - [10907] = 6, - ACTIONS(1233), 1, + [10731] = 6, + ACTIONS(1220), 1, sym__list_item_continuation, - ACTIONS(1237), 1, + ACTIONS(1224), 1, sym__block_quote_continuation, - ACTIONS(1335), 1, + ACTIONS(1288), 1, sym__list_item_end, - STATE(415), 1, + STATE(397), 1, aux_sym_list_item_content_repeat1, - STATE(622), 1, + STATE(556), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1124), 1, + STATE(948), 1, sym__block_quote_prefix, - [10926] = 6, - ACTIONS(1233), 1, + [10750] = 6, + ACTIONS(1220), 1, sym__list_item_continuation, - ACTIONS(1237), 1, + ACTIONS(1224), 1, sym__block_quote_continuation, - ACTIONS(1337), 1, + ACTIONS(1290), 1, sym__list_item_end, - STATE(399), 1, + STATE(382), 1, aux_sym_list_item_content_repeat1, - STATE(622), 1, + STATE(556), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1124), 1, + STATE(948), 1, sym__block_quote_prefix, - [10945] = 6, - ACTIONS(1233), 1, + [10769] = 6, + ACTIONS(1220), 1, sym__list_item_continuation, - ACTIONS(1237), 1, + ACTIONS(1224), 1, sym__block_quote_continuation, - ACTIONS(1339), 1, + ACTIONS(1292), 1, sym__list_item_end, - STATE(415), 1, + STATE(397), 1, aux_sym_list_item_content_repeat1, - STATE(622), 1, + STATE(556), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1124), 1, + STATE(948), 1, sym__block_quote_prefix, - [10964] = 6, - ACTIONS(1233), 1, + [10788] = 6, + ACTIONS(1220), 1, sym__list_item_continuation, - ACTIONS(1237), 1, + ACTIONS(1224), 1, sym__block_quote_continuation, - ACTIONS(1341), 1, + ACTIONS(1294), 1, sym__list_item_end, - STATE(401), 1, + STATE(384), 1, aux_sym_list_item_content_repeat1, - STATE(622), 1, + STATE(556), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1124), 1, + STATE(948), 1, sym__block_quote_prefix, - [10983] = 6, - ACTIONS(1233), 1, + [10807] = 6, + ACTIONS(1220), 1, sym__list_item_continuation, - ACTIONS(1237), 1, + ACTIONS(1224), 1, sym__block_quote_continuation, - ACTIONS(1343), 1, + ACTIONS(1296), 1, sym__list_item_end, - STATE(415), 1, + STATE(397), 1, aux_sym_list_item_content_repeat1, - STATE(622), 1, + STATE(556), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1124), 1, + STATE(948), 1, sym__block_quote_prefix, - [11002] = 6, - ACTIONS(1233), 1, + [10826] = 6, + ACTIONS(1220), 1, sym__list_item_continuation, - ACTIONS(1237), 1, + ACTIONS(1224), 1, sym__block_quote_continuation, - ACTIONS(1345), 1, + ACTIONS(1298), 1, sym__list_item_end, - STATE(403), 1, + STATE(386), 1, aux_sym_list_item_content_repeat1, - STATE(622), 1, + STATE(556), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1124), 1, + STATE(948), 1, sym__block_quote_prefix, - [11021] = 6, - ACTIONS(1233), 1, + [10845] = 6, + ACTIONS(1220), 1, sym__list_item_continuation, - ACTIONS(1237), 1, + ACTIONS(1224), 1, sym__block_quote_continuation, - ACTIONS(1347), 1, + ACTIONS(1300), 1, sym__list_item_end, - STATE(415), 1, + STATE(397), 1, aux_sym_list_item_content_repeat1, - STATE(622), 1, + STATE(556), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1124), 1, + STATE(948), 1, sym__block_quote_prefix, - [11040] = 6, - ACTIONS(1233), 1, + [10864] = 6, + ACTIONS(1220), 1, sym__list_item_continuation, - ACTIONS(1237), 1, + ACTIONS(1224), 1, sym__block_quote_continuation, - ACTIONS(1349), 1, + ACTIONS(1302), 1, sym__list_item_end, - STATE(405), 1, + STATE(416), 1, aux_sym_list_item_content_repeat1, - STATE(622), 1, + STATE(556), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(948), 1, + sym__block_quote_prefix, + [10883] = 6, + ACTIONS(1226), 1, + sym__block_quote_continuation, + ACTIONS(1228), 1, + sym__footnote_continuation, + ACTIONS(1304), 1, + sym__footnote_end, + STATE(351), 1, + aux_sym_footnote_content_repeat1, + STATE(558), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1124), 1, + STATE(995), 1, sym__block_quote_prefix, - [11059] = 6, - ACTIONS(1233), 1, + [10902] = 6, + ACTIONS(1220), 1, sym__list_item_continuation, - ACTIONS(1237), 1, + ACTIONS(1224), 1, sym__block_quote_continuation, - ACTIONS(1351), 1, + ACTIONS(1306), 1, sym__list_item_end, - STATE(415), 1, + STATE(390), 1, aux_sym_list_item_content_repeat1, - STATE(622), 1, + STATE(556), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1124), 1, + STATE(948), 1, sym__block_quote_prefix, - [11078] = 4, - ACTIONS(69), 1, - sym__table_header_begin, - ACTIONS(71), 1, - sym__table_separator_begin, - ACTIONS(73), 1, - sym__table_row_begin, - STATE(91), 3, - sym_table_header, - sym_table_separator, - sym_table_row, - [11093] = 6, - ACTIONS(1233), 1, + [10921] = 6, + ACTIONS(1220), 1, sym__list_item_continuation, - ACTIONS(1237), 1, + ACTIONS(1224), 1, sym__block_quote_continuation, - ACTIONS(1353), 1, + ACTIONS(1308), 1, sym__list_item_end, - STATE(415), 1, + STATE(397), 1, aux_sym_list_item_content_repeat1, - STATE(622), 1, + STATE(556), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1124), 1, + STATE(948), 1, sym__block_quote_prefix, - [11112] = 6, - ACTIONS(1233), 1, + [10940] = 6, + ACTIONS(1220), 1, sym__list_item_continuation, - ACTIONS(1237), 1, + ACTIONS(1224), 1, sym__block_quote_continuation, - ACTIONS(1355), 1, + ACTIONS(1310), 1, sym__list_item_end, - STATE(409), 1, + STATE(392), 1, aux_sym_list_item_content_repeat1, - STATE(622), 1, + STATE(556), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1124), 1, + STATE(948), 1, sym__block_quote_prefix, - [11131] = 6, - ACTIONS(1233), 1, + [10959] = 6, + ACTIONS(1220), 1, sym__list_item_continuation, - ACTIONS(1237), 1, + ACTIONS(1224), 1, sym__block_quote_continuation, - ACTIONS(1357), 1, + ACTIONS(1312), 1, sym__list_item_end, - STATE(415), 1, + STATE(397), 1, aux_sym_list_item_content_repeat1, - STATE(622), 1, + STATE(556), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1124), 1, + STATE(948), 1, sym__block_quote_prefix, - [11150] = 6, - ACTIONS(1233), 1, + [10978] = 6, + ACTIONS(1220), 1, sym__list_item_continuation, - ACTIONS(1237), 1, + ACTIONS(1224), 1, sym__block_quote_continuation, - ACTIONS(1359), 1, + ACTIONS(1314), 1, sym__list_item_end, - STATE(411), 1, + STATE(394), 1, aux_sym_list_item_content_repeat1, - STATE(622), 1, + STATE(556), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1124), 1, + STATE(948), 1, sym__block_quote_prefix, - [11169] = 6, - ACTIONS(1233), 1, + [10997] = 6, + ACTIONS(1220), 1, sym__list_item_continuation, - ACTIONS(1237), 1, + ACTIONS(1224), 1, sym__block_quote_continuation, - ACTIONS(1361), 1, + ACTIONS(1316), 1, sym__list_item_end, - STATE(415), 1, + STATE(397), 1, aux_sym_list_item_content_repeat1, - STATE(622), 1, + STATE(556), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1124), 1, + STATE(948), 1, sym__block_quote_prefix, - [11188] = 6, - ACTIONS(1233), 1, + [11016] = 6, + ACTIONS(1220), 1, sym__list_item_continuation, - ACTIONS(1237), 1, + ACTIONS(1224), 1, sym__block_quote_continuation, - ACTIONS(1363), 1, + ACTIONS(1318), 1, sym__list_item_end, - STATE(413), 1, + STATE(396), 1, aux_sym_list_item_content_repeat1, - STATE(622), 1, + STATE(556), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1124), 1, + STATE(948), 1, sym__block_quote_prefix, - [11207] = 6, - ACTIONS(1233), 1, + [11035] = 6, + ACTIONS(1220), 1, sym__list_item_continuation, - ACTIONS(1237), 1, + ACTIONS(1224), 1, sym__block_quote_continuation, - ACTIONS(1365), 1, + ACTIONS(1320), 1, + sym__list_item_end, + STATE(397), 1, + aux_sym_list_item_content_repeat1, + STATE(556), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(948), 1, + sym__block_quote_prefix, + [11054] = 6, + ACTIONS(1322), 1, + sym__list_item_continuation, + ACTIONS(1325), 1, sym__list_item_end, - STATE(415), 1, + ACTIONS(1327), 1, + sym__block_quote_continuation, + STATE(397), 1, aux_sym_list_item_content_repeat1, - STATE(622), 1, + STATE(556), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1124), 1, + STATE(948), 1, sym__block_quote_prefix, - [11226] = 6, - ACTIONS(1233), 1, + [11073] = 1, + ACTIONS(1330), 6, + anon_sym_RBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + sym__whitespace1, + anon_sym_PERCENT, + sym__id, + [11082] = 4, + ACTIONS(89), 1, + sym__table_header_begin, + ACTIONS(91), 1, + sym__table_separator_begin, + ACTIONS(93), 1, + sym__table_row_begin, + STATE(83), 3, + sym_table_header, + sym_table_separator, + sym_table_row, + [11097] = 1, + ACTIONS(1332), 6, + anon_sym_RBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + sym__whitespace1, + anon_sym_PERCENT, + sym__id, + [11106] = 6, + ACTIONS(1220), 1, sym__list_item_continuation, - ACTIONS(1237), 1, + ACTIONS(1224), 1, sym__block_quote_continuation, - ACTIONS(1367), 1, + ACTIONS(1334), 1, sym__list_item_end, - STATE(415), 1, + STATE(408), 1, aux_sym_list_item_content_repeat1, - STATE(622), 1, + STATE(556), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1124), 1, + STATE(948), 1, sym__block_quote_prefix, - [11245] = 6, - ACTIONS(1369), 1, + [11125] = 6, + ACTIONS(1224), 1, + sym__block_quote_continuation, + ACTIONS(1336), 1, sym__list_item_continuation, - ACTIONS(1372), 1, + ACTIONS(1338), 1, sym__list_item_end, - ACTIONS(1374), 1, + STATE(366), 1, + aux_sym__list_item_definition_repeat1, + STATE(556), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(1013), 1, + sym__block_quote_prefix, + [11144] = 1, + ACTIONS(1340), 6, + anon_sym_RBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + sym__whitespace1, + anon_sym_PERCENT, + sym__id, + [11153] = 6, + ACTIONS(1342), 1, + sym__block_quote_continuation, + ACTIONS(1345), 1, + sym__footnote_continuation, + ACTIONS(1348), 1, + sym__footnote_end, + STATE(404), 1, + aux_sym_footnote_content_repeat1, + STATE(558), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(995), 1, + sym__block_quote_prefix, + [11172] = 1, + ACTIONS(1350), 6, + anon_sym_RBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + sym__whitespace1, + anon_sym_PERCENT, + sym__id, + [11181] = 6, + ACTIONS(1220), 1, + sym__list_item_continuation, + ACTIONS(1224), 1, sym__block_quote_continuation, - STATE(415), 1, + ACTIONS(1352), 1, + sym__list_item_end, + STATE(397), 1, aux_sym_list_item_content_repeat1, - STATE(622), 1, + STATE(556), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1124), 1, + STATE(948), 1, sym__block_quote_prefix, - [11264] = 6, - ACTIONS(1377), 1, + [11200] = 4, + ACTIONS(378), 1, + sym__table_header_begin, + ACTIONS(380), 1, + sym__table_separator_begin, + ACTIONS(382), 1, + sym__table_row_begin, + STATE(325), 3, + sym_table_header, + sym_table_separator, + sym_table_row, + [11215] = 6, + ACTIONS(1220), 1, sym__list_item_continuation, - ACTIONS(1380), 1, + ACTIONS(1224), 1, + sym__block_quote_continuation, + ACTIONS(1354), 1, sym__list_item_end, - ACTIONS(1382), 1, + STATE(397), 1, + aux_sym_list_item_content_repeat1, + STATE(556), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(948), 1, + sym__block_quote_prefix, + [11234] = 1, + ACTIONS(1356), 6, + anon_sym_RBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + sym__whitespace1, + anon_sym_PERCENT, + sym__id, + [11243] = 6, + ACTIONS(1226), 1, sym__block_quote_continuation, - STATE(416), 1, - aux_sym__list_item_definition_repeat1, - STATE(622), 1, + ACTIONS(1228), 1, + sym__footnote_continuation, + ACTIONS(1358), 1, + sym__footnote_end, + STATE(414), 1, + aux_sym_footnote_content_repeat1, + STATE(558), 1, aux_sym__block_quote_prefix_repeat1, - STATE(994), 1, + STATE(995), 1, sym__block_quote_prefix, - [11283] = 6, - ACTIONS(1253), 1, + [11262] = 6, + ACTIONS(1226), 1, sym__block_quote_continuation, - ACTIONS(1255), 1, + ACTIONS(1228), 1, sym__footnote_continuation, - ACTIONS(1385), 1, + ACTIONS(1360), 1, sym__footnote_end, - STATE(385), 1, + STATE(412), 1, aux_sym_footnote_content_repeat1, - STATE(624), 1, + STATE(558), 1, aux_sym__block_quote_prefix_repeat1, - STATE(957), 1, + STATE(995), 1, sym__block_quote_prefix, - [11302] = 4, - ACTIONS(1387), 1, - sym__block_close, - ACTIONS(1389), 1, + [11281] = 6, + ACTIONS(1226), 1, sym__block_quote_continuation, - STATE(418), 1, - aux_sym__block_quote_content_repeat1, - STATE(65), 2, + ACTIONS(1228), 1, + sym__footnote_continuation, + ACTIONS(1362), 1, + sym__footnote_end, + STATE(404), 1, + aux_sym_footnote_content_repeat1, + STATE(558), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(995), 1, sym__block_quote_prefix, + [11300] = 6, + ACTIONS(1224), 1, + sym__block_quote_continuation, + ACTIONS(1336), 1, + sym__list_item_continuation, + ACTIONS(1364), 1, + sym__list_item_end, + STATE(402), 1, + aux_sym__list_item_definition_repeat1, + STATE(556), 1, aux_sym__block_quote_prefix_repeat1, - [11316] = 3, - ACTIONS(503), 1, + STATE(1013), 1, + sym__block_quote_prefix, + [11319] = 6, + ACTIONS(1226), 1, sym__block_quote_continuation, - STATE(421), 1, + ACTIONS(1228), 1, + sym__footnote_continuation, + ACTIONS(1366), 1, + sym__footnote_end, + STATE(404), 1, + aux_sym_footnote_content_repeat1, + STATE(558), 1, aux_sym__block_quote_prefix_repeat1, - ACTIONS(934), 3, - sym__table_header_begin, - sym__table_separator_begin, - sym__table_row_begin, - [11328] = 3, - ACTIONS(946), 1, - sym__table_caption_begin, - STATE(594), 1, - sym_table_caption, - ACTIONS(536), 3, + STATE(995), 1, + sym__block_quote_prefix, + [11338] = 1, + ACTIONS(1368), 6, + anon_sym_RBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + sym__whitespace1, + anon_sym_PERCENT, + sym__id, + [11347] = 6, + ACTIONS(1220), 1, sym__list_item_continuation, - sym__list_item_end, + ACTIONS(1224), 1, sym__block_quote_continuation, - [11340] = 3, - ACTIONS(1392), 1, + ACTIONS(1370), 1, + sym__list_item_end, + STATE(397), 1, + aux_sym_list_item_content_repeat1, + STATE(556), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(948), 1, + sym__block_quote_prefix, + [11366] = 4, + ACTIONS(1372), 1, + sym__block_close, + ACTIONS(1374), 1, sym__block_quote_continuation, - STATE(421), 1, + STATE(418), 1, + aux_sym__block_quote_content_repeat1, + STATE(65), 2, + sym__block_quote_prefix, aux_sym__block_quote_prefix_repeat1, - ACTIONS(868), 3, - sym__table_header_begin, - sym__table_separator_begin, - sym__table_row_begin, - [11352] = 4, - ACTIONS(1395), 1, + [11380] = 4, + ACTIONS(1376), 1, sym__block_close, - ACTIONS(1397), 1, + ACTIONS(1378), 1, sym__block_quote_continuation, STATE(418), 1, aux_sym__block_quote_content_repeat1, STATE(65), 2, sym__block_quote_prefix, aux_sym__block_quote_prefix_repeat1, - [11366] = 4, - ACTIONS(1397), 1, + [11394] = 4, + ACTIONS(1374), 1, sym__block_quote_continuation, - ACTIONS(1399), 1, + ACTIONS(1381), 1, sym__block_close, - STATE(422), 1, + STATE(417), 1, aux_sym__block_quote_content_repeat1, STATE(65), 2, sym__block_quote_prefix, aux_sym__block_quote_prefix_repeat1, - [11380] = 2, - ACTIONS(1401), 1, - sym__eof_or_newline, - ACTIONS(616), 3, + [11408] = 3, + ACTIONS(919), 1, + sym__table_caption_begin, + STATE(646), 1, + sym_table_caption, + ACTIONS(538), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [11389] = 4, - ACTIONS(31), 1, - sym_list_marker_definition, - ACTIONS(1403), 1, - sym__block_close, - STATE(459), 1, - aux_sym__list_definition_repeat1, - STATE(769), 1, - sym__list_item_definition, - [11402] = 4, - ACTIONS(33), 1, - sym_list_marker_decimal_period, - ACTIONS(1405), 1, + [11420] = 3, + ACTIONS(503), 1, + sym__block_quote_continuation, + STATE(422), 1, + aux_sym__block_quote_prefix_repeat1, + ACTIONS(907), 3, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + [11432] = 3, + ACTIONS(1383), 1, + sym__block_quote_continuation, + STATE(422), 1, + aux_sym__block_quote_prefix_repeat1, + ACTIONS(868), 3, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + [11444] = 4, + ACTIONS(45), 1, + sym_list_marker_upper_alpha_paren, + ACTIONS(1386), 1, sym__block_close, - STATE(504), 1, - aux_sym__list_decimal_period_repeat1, - STATE(776), 1, - sym__list_item_decimal_period, - [11415] = 4, - ACTIONS(43), 1, - sym_list_marker_decimal_paren, - ACTIONS(1407), 1, + STATE(540), 1, + aux_sym__list_upper_alpha_paren_repeat1, + STATE(783), 1, + sym__list_item_upper_alpha_paren, + [11457] = 4, + ACTIONS(53), 1, + sym_list_marker_lower_alpha_parens, + ACTIONS(1388), 1, sym__block_close, - STATE(506), 1, - aux_sym__list_decimal_paren_repeat1, - STATE(790), 1, - sym__list_item_decimal_paren, - [11428] = 4, - ACTIONS(53), 1, - sym_list_marker_decimal_parens, - ACTIONS(1409), 1, - sym__block_close, - STATE(479), 1, - aux_sym__list_decimal_parens_repeat1, - STATE(793), 1, - sym__list_item_decimal_parens, - [11441] = 4, - ACTIONS(35), 1, - sym_list_marker_lower_alpha_period, - ACTIONS(1411), 1, - sym__block_close, - STATE(478), 1, - aux_sym__list_lower_alpha_period_repeat1, - STATE(822), 1, - sym__list_item_lower_alpha_period, - [11454] = 4, - ACTIONS(45), 1, - sym_list_marker_lower_alpha_paren, - ACTIONS(1413), 1, - sym__block_close, - STATE(503), 1, - aux_sym__list_lower_alpha_paren_repeat1, - STATE(684), 1, - sym__list_item_lower_alpha_paren, - [11467] = 4, - ACTIONS(55), 1, - sym_list_marker_lower_alpha_parens, - ACTIONS(1415), 1, - sym__block_close, - STATE(451), 1, + STATE(536), 1, aux_sym__list_lower_alpha_parens_repeat1, - STATE(688), 1, + STATE(774), 1, sym__list_item_lower_alpha_parens, - [11480] = 4, - ACTIONS(37), 1, + [11470] = 4, + ACTIONS(1390), 1, + sym__block_close, + ACTIONS(1392), 1, + sym_list_marker_upper_alpha_parens, + STATE(425), 1, + aux_sym__list_upper_alpha_parens_repeat1, + STATE(786), 1, + sym__list_item_upper_alpha_parens, + [11483] = 4, + ACTIONS(35), 1, sym_list_marker_upper_alpha_period, - ACTIONS(1417), 1, + ACTIONS(1395), 1, sym__block_close, - STATE(455), 1, + STATE(538), 1, aux_sym__list_upper_alpha_period_repeat1, - STATE(704), 1, + STATE(782), 1, sym__list_item_upper_alpha_period, - [11493] = 4, - ACTIONS(47), 1, - sym_list_marker_upper_alpha_paren, - ACTIONS(1419), 1, + [11496] = 4, + ACTIONS(1397), 1, sym__block_close, - STATE(487), 1, - aux_sym__list_upper_alpha_paren_repeat1, - STATE(705), 1, - sym__list_item_upper_alpha_paren, - [11506] = 4, - ACTIONS(57), 1, + ACTIONS(1399), 1, + sym_list_marker_lower_roman_period, + STATE(427), 1, + aux_sym__list_lower_roman_period_repeat1, + STATE(787), 1, + sym__list_item_lower_roman_period, + [11509] = 4, + ACTIONS(1402), 1, + sym__block_close, + ACTIONS(1404), 1, + sym_list_marker_lower_roman_paren, + STATE(428), 1, + aux_sym__list_lower_roman_paren_repeat1, + STATE(802), 1, + sym__list_item_lower_roman_paren, + [11522] = 4, + ACTIONS(55), 1, sym_list_marker_upper_alpha_parens, - ACTIONS(1421), 1, + ACTIONS(1407), 1, sym__block_close, - STATE(519), 1, + STATE(425), 1, aux_sym__list_upper_alpha_parens_repeat1, - STATE(711), 1, + STATE(786), 1, sym__list_item_upper_alpha_parens, - [11519] = 4, - ACTIONS(39), 1, + [11535] = 4, + ACTIONS(1409), 1, + sym__block_close, + ACTIONS(1411), 1, + sym_list_marker_lower_roman_parens, + STATE(430), 1, + aux_sym__list_lower_roman_parens_repeat1, + STATE(803), 1, + sym__list_item_lower_roman_parens, + [11548] = 4, + ACTIONS(37), 1, sym_list_marker_lower_roman_period, - ACTIONS(1423), 1, + ACTIONS(1414), 1, sym__block_close, - STATE(522), 1, + STATE(427), 1, aux_sym__list_lower_roman_period_repeat1, - STATE(712), 1, + STATE(787), 1, sym__list_item_lower_roman_period, - [11532] = 4, - ACTIONS(49), 1, + [11561] = 4, + ACTIONS(1416), 1, + sym__block_close, + ACTIONS(1418), 1, + sym_list_marker_upper_roman_period, + STATE(432), 1, + aux_sym__list_upper_roman_period_repeat1, + STATE(808), 1, + sym__list_item_upper_roman_period, + [11574] = 4, + ACTIONS(47), 1, sym_list_marker_lower_roman_paren, - ACTIONS(1425), 1, + ACTIONS(1421), 1, sym__block_close, - STATE(525), 1, + STATE(428), 1, aux_sym__list_lower_roman_paren_repeat1, - STATE(726), 1, + STATE(802), 1, sym__list_item_lower_roman_paren, - [11545] = 4, - ACTIONS(59), 1, + [11587] = 4, + ACTIONS(1423), 1, + sym__block_close, + ACTIONS(1425), 1, + sym_list_marker_upper_roman_paren, + STATE(434), 1, + aux_sym__list_upper_roman_paren_repeat1, + STATE(814), 1, + sym__list_item_upper_roman_paren, + [11600] = 4, + ACTIONS(57), 1, sym_list_marker_lower_roman_parens, - ACTIONS(1427), 1, + ACTIONS(1428), 1, sym__block_close, - STATE(529), 1, + STATE(430), 1, aux_sym__list_lower_roman_parens_repeat1, - STATE(728), 1, + STATE(803), 1, sym__list_item_lower_roman_parens, - [11558] = 4, - ACTIONS(41), 1, + [11613] = 4, + ACTIONS(1430), 1, + sym__block_close, + ACTIONS(1432), 1, + sym_list_marker_upper_roman_parens, + STATE(436), 1, + aux_sym__list_upper_roman_parens_repeat1, + STATE(819), 1, + sym__list_item_upper_roman_parens, + [11626] = 4, + ACTIONS(39), 1, sym_list_marker_upper_roman_period, - ACTIONS(1429), 1, + ACTIONS(1435), 1, sym__block_close, - STATE(532), 1, + STATE(432), 1, aux_sym__list_upper_roman_period_repeat1, - STATE(734), 1, + STATE(808), 1, sym__list_item_upper_roman_period, - [11571] = 4, - ACTIONS(51), 1, + [11639] = 4, + ACTIONS(49), 1, sym_list_marker_upper_roman_paren, - ACTIONS(1431), 1, + ACTIONS(1437), 1, sym__block_close, - STATE(536), 1, + STATE(434), 1, aux_sym__list_upper_roman_paren_repeat1, - STATE(830), 1, + STATE(814), 1, sym__list_item_upper_roman_paren, - [11584] = 4, - ACTIONS(61), 1, + [11652] = 4, + ACTIONS(59), 1, sym_list_marker_upper_roman_parens, - ACTIONS(1433), 1, + ACTIONS(1439), 1, sym__block_close, - STATE(540), 1, + STATE(436), 1, aux_sym__list_upper_roman_parens_repeat1, - STATE(725), 1, + STATE(819), 1, sym__list_item_upper_roman_parens, - [11597] = 4, - ACTIONS(51), 1, - sym_list_marker_upper_roman_paren, - ACTIONS(1435), 1, - sym__block_close, - STATE(536), 1, - aux_sym__list_upper_roman_paren_repeat1, - STATE(830), 1, - sym__list_item_upper_roman_paren, - [11610] = 4, - ACTIONS(61), 1, - sym_list_marker_upper_roman_parens, - ACTIONS(1437), 1, + [11665] = 3, + ACTIONS(925), 1, + sym__table_caption_begin, + STATE(826), 1, + sym_table_caption, + ACTIONS(538), 2, sym__block_close, - STATE(540), 1, - aux_sym__list_upper_roman_parens_repeat1, - STATE(725), 1, - sym__list_item_upper_roman_parens, - [11623] = 2, - ACTIONS(1439), 1, - sym__div_end, - ACTIONS(556), 3, - sym__list_item_continuation, - sym__list_item_end, sym__block_quote_continuation, - [11632] = 2, + [11676] = 3, ACTIONS(1441), 1, - sym__code_block_end, - ACTIONS(562), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [11641] = 3, + aux_sym__line_token1, + STATE(1009), 1, + sym_frontmatter_content, + STATE(445), 2, + sym__line, + aux_sym_frontmatter_content_repeat1, + [11687] = 4, ACTIONS(1443), 1, - anon_sym_PERCENT, - STATE(458), 1, - aux_sym__comment_no_newline_repeat1, - ACTIONS(1445), 2, - sym_backslash_escape, - aux_sym__comment_no_newline_token1, - [11652] = 2, + anon_sym_EQ, + ACTIONS(1445), 1, + sym_language, ACTIONS(1447), 1, - sym__code_block_end, - ACTIONS(568), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [11661] = 2, + sym__newline, + STATE(933), 1, + sym_raw_block_info, + [11700] = 3, ACTIONS(1449), 1, - sym__code_block_end, - ACTIONS(574), 3, + anon_sym_PERCENT, + STATE(475), 1, + aux_sym_comment_repeat1, + ACTIONS(1451), 2, + sym_backslash_escape, + aux_sym_comment_token1, + [11711] = 2, + ACTIONS(1453), 1, + sym__eof_or_newline, + ACTIONS(596), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [11670] = 4, - ACTIONS(31), 1, - sym_list_marker_definition, - ACTIONS(1451), 1, - sym__block_close, - STATE(459), 1, - aux_sym__list_definition_repeat1, - STATE(769), 1, - sym__list_item_definition, - [11683] = 4, - ACTIONS(43), 1, - sym_list_marker_decimal_paren, - ACTIONS(1453), 1, - sym__block_close, - STATE(506), 1, - aux_sym__list_decimal_paren_repeat1, - STATE(790), 1, - sym__list_item_decimal_paren, - [11696] = 3, + [11720] = 3, + ACTIONS(1441), 1, + aux_sym__line_token1, ACTIONS(1455), 1, + sym_frontmatter_marker, + STATE(477), 2, + sym__line, + aux_sym_frontmatter_content_repeat1, + [11731] = 3, + ACTIONS(1441), 1, aux_sym__line_token1, - STATE(1133), 1, + STATE(907), 1, sym_frontmatter_content, - STATE(476), 2, + STATE(445), 2, sym__line, aux_sym_frontmatter_content_repeat1, - [11707] = 4, + [11742] = 2, ACTIONS(1457), 1, - sym__block_close, + sym__div_end, + ACTIONS(546), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [11751] = 2, ACTIONS(1459), 1, - sym_list_marker_lower_alpha_parens, - STATE(451), 1, - aux_sym__list_lower_alpha_parens_repeat1, - STATE(688), 1, - sym__list_item_lower_alpha_parens, - [11720] = 2, - ACTIONS(1462), 1, + sym__code_block_end, + ACTIONS(588), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [11760] = 2, + ACTIONS(1461), 1, + sym__div_end, + ACTIONS(624), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [11769] = 2, + ACTIONS(1463), 1, sym__div_end, - ACTIONS(592), 3, + ACTIONS(630), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [11729] = 2, - ACTIONS(1464), 1, + [11778] = 2, + ACTIONS(1465), 1, sym__code_block_end, - ACTIONS(598), 3, + ACTIONS(636), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [11738] = 2, - ACTIONS(1466), 1, + [11787] = 2, + ACTIONS(1467), 1, sym__code_block_end, - ACTIONS(604), 3, + ACTIONS(642), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [11747] = 4, - ACTIONS(1468), 1, - sym__block_close, - ACTIONS(1470), 1, - sym_list_marker_upper_alpha_period, - STATE(455), 1, - aux_sym__list_upper_alpha_period_repeat1, - STATE(704), 1, - sym__list_item_upper_alpha_period, - [11760] = 2, + [11796] = 2, + ACTIONS(1469), 1, + sym__code_block_end, + ACTIONS(608), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [11805] = 2, + ACTIONS(1471), 1, + sym__div_end, + ACTIONS(542), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [11814] = 2, ACTIONS(1473), 1, + sym__code_block_end, + ACTIONS(566), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [11823] = 2, + ACTIONS(1475), 1, + sym__code_block_end, + ACTIONS(572), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [11832] = 2, + ACTIONS(1477), 1, sym__eof_or_newline, - ACTIONS(610), 3, + ACTIONS(578), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [11769] = 1, - ACTIONS(460), 4, + [11841] = 1, + ACTIONS(462), 4, sym__block_quote_continuation, sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [11776] = 3, - ACTIONS(1475), 1, - anon_sym_PERCENT, - STATE(480), 1, - aux_sym__comment_no_newline_repeat1, - ACTIONS(1445), 2, - sym_backslash_escape, - aux_sym__comment_no_newline_token1, - [11787] = 4, - ACTIONS(1477), 1, - sym__block_close, - ACTIONS(1479), 1, - sym_list_marker_definition, - STATE(459), 1, - aux_sym__list_definition_repeat1, - STATE(769), 1, - sym__list_item_definition, - [11800] = 4, - ACTIONS(31), 1, + [11848] = 4, + ACTIONS(29), 1, sym_list_marker_definition, - ACTIONS(1482), 1, + ACTIONS(1479), 1, sym__block_close, - STATE(459), 1, + STATE(526), 1, aux_sym__list_definition_repeat1, - STATE(769), 1, + STATE(740), 1, sym__list_item_definition, - [11813] = 4, - ACTIONS(33), 1, + [11861] = 4, + ACTIONS(31), 1, sym_list_marker_decimal_period, - ACTIONS(1484), 1, + ACTIONS(1481), 1, sym__block_close, - STATE(504), 1, + STATE(527), 1, aux_sym__list_decimal_period_repeat1, - STATE(776), 1, + STATE(743), 1, sym__list_item_decimal_period, - [11826] = 4, - ACTIONS(43), 1, + [11874] = 4, + ACTIONS(41), 1, sym_list_marker_decimal_paren, - ACTIONS(1486), 1, + ACTIONS(1483), 1, sym__block_close, - STATE(506), 1, + STATE(528), 1, aux_sym__list_decimal_paren_repeat1, - STATE(790), 1, + STATE(748), 1, sym__list_item_decimal_paren, - [11839] = 4, - ACTIONS(53), 1, + [11887] = 4, + ACTIONS(51), 1, sym_list_marker_decimal_parens, - ACTIONS(1488), 1, + ACTIONS(1485), 1, sym__block_close, - STATE(479), 1, + STATE(530), 1, aux_sym__list_decimal_parens_repeat1, - STATE(793), 1, + STATE(768), 1, sym__list_item_decimal_parens, - [11852] = 4, - ACTIONS(35), 1, + [11900] = 4, + ACTIONS(33), 1, sym_list_marker_lower_alpha_period, - ACTIONS(1490), 1, + ACTIONS(1487), 1, sym__block_close, - STATE(478), 1, + STATE(532), 1, aux_sym__list_lower_alpha_period_repeat1, - STATE(822), 1, + STATE(769), 1, sym__list_item_lower_alpha_period, - [11865] = 4, - ACTIONS(45), 1, + [11913] = 4, + ACTIONS(43), 1, sym_list_marker_lower_alpha_paren, - ACTIONS(1492), 1, + ACTIONS(1489), 1, sym__block_close, - STATE(503), 1, + STATE(534), 1, aux_sym__list_lower_alpha_paren_repeat1, - STATE(684), 1, + STATE(773), 1, sym__list_item_lower_alpha_paren, - [11878] = 4, - ACTIONS(55), 1, + [11926] = 4, + ACTIONS(53), 1, sym_list_marker_lower_alpha_parens, - ACTIONS(1494), 1, + ACTIONS(1491), 1, sym__block_close, - STATE(451), 1, + STATE(536), 1, aux_sym__list_lower_alpha_parens_repeat1, - STATE(688), 1, + STATE(774), 1, sym__list_item_lower_alpha_parens, - [11891] = 4, - ACTIONS(37), 1, + [11939] = 4, + ACTIONS(35), 1, sym_list_marker_upper_alpha_period, - ACTIONS(1496), 1, + ACTIONS(1493), 1, sym__block_close, - STATE(455), 1, + STATE(538), 1, aux_sym__list_upper_alpha_period_repeat1, - STATE(704), 1, + STATE(782), 1, sym__list_item_upper_alpha_period, - [11904] = 4, - ACTIONS(47), 1, + [11952] = 4, + ACTIONS(45), 1, sym_list_marker_upper_alpha_paren, - ACTIONS(1498), 1, + ACTIONS(1495), 1, sym__block_close, - STATE(487), 1, + STATE(540), 1, aux_sym__list_upper_alpha_paren_repeat1, - STATE(705), 1, + STATE(783), 1, sym__list_item_upper_alpha_paren, - [11917] = 4, - ACTIONS(57), 1, + [11965] = 4, + ACTIONS(55), 1, sym_list_marker_upper_alpha_parens, - ACTIONS(1500), 1, + ACTIONS(1497), 1, sym__block_close, - STATE(519), 1, + STATE(425), 1, aux_sym__list_upper_alpha_parens_repeat1, - STATE(711), 1, + STATE(786), 1, sym__list_item_upper_alpha_parens, - [11930] = 4, - ACTIONS(39), 1, + [11978] = 4, + ACTIONS(37), 1, sym_list_marker_lower_roman_period, - ACTIONS(1502), 1, + ACTIONS(1499), 1, sym__block_close, - STATE(522), 1, + STATE(427), 1, aux_sym__list_lower_roman_period_repeat1, - STATE(712), 1, + STATE(787), 1, sym__list_item_lower_roman_period, - [11943] = 4, - ACTIONS(49), 1, + [11991] = 4, + ACTIONS(47), 1, sym_list_marker_lower_roman_paren, - ACTIONS(1504), 1, + ACTIONS(1501), 1, sym__block_close, - STATE(525), 1, + STATE(428), 1, aux_sym__list_lower_roman_paren_repeat1, - STATE(726), 1, + STATE(802), 1, sym__list_item_lower_roman_paren, - [11956] = 4, - ACTIONS(59), 1, + [12004] = 4, + ACTIONS(57), 1, sym_list_marker_lower_roman_parens, - ACTIONS(1506), 1, + ACTIONS(1503), 1, sym__block_close, - STATE(529), 1, + STATE(430), 1, aux_sym__list_lower_roman_parens_repeat1, - STATE(728), 1, + STATE(803), 1, sym__list_item_lower_roman_parens, - [11969] = 4, - ACTIONS(41), 1, + [12017] = 4, + ACTIONS(39), 1, sym_list_marker_upper_roman_period, - ACTIONS(1508), 1, + ACTIONS(1505), 1, sym__block_close, - STATE(532), 1, + STATE(432), 1, aux_sym__list_upper_roman_period_repeat1, - STATE(734), 1, + STATE(808), 1, sym__list_item_upper_roman_period, - [11982] = 4, - ACTIONS(51), 1, + [12030] = 4, + ACTIONS(49), 1, sym_list_marker_upper_roman_paren, - ACTIONS(1510), 1, + ACTIONS(1507), 1, sym__block_close, - STATE(536), 1, + STATE(434), 1, aux_sym__list_upper_roman_paren_repeat1, - STATE(830), 1, + STATE(814), 1, sym__list_item_upper_roman_paren, - [11995] = 4, - ACTIONS(61), 1, + [12043] = 4, + ACTIONS(59), 1, sym_list_marker_upper_roman_parens, - ACTIONS(1512), 1, + ACTIONS(1509), 1, sym__block_close, - STATE(540), 1, + STATE(436), 1, aux_sym__list_upper_roman_parens_repeat1, - STATE(725), 1, + STATE(819), 1, sym__list_item_upper_roman_parens, - [12008] = 3, - ACTIONS(1455), 1, - aux_sym__line_token1, - ACTIONS(1514), 1, - sym_frontmatter_marker, - STATE(524), 2, - sym__line, - aux_sym_frontmatter_content_repeat1, - [12019] = 3, - ACTIONS(1455), 1, + [12056] = 3, + ACTIONS(1511), 1, + anon_sym_PERCENT, + STATE(475), 1, + aux_sym_comment_repeat1, + ACTIONS(1513), 2, + sym_backslash_escape, + aux_sym_comment_token1, + [12067] = 3, + ACTIONS(1516), 1, + anon_sym_PERCENT, + STATE(443), 1, + aux_sym_comment_repeat1, + ACTIONS(1451), 2, + sym_backslash_escape, + aux_sym_comment_token1, + [12078] = 3, + ACTIONS(1518), 1, aux_sym__line_token1, - STATE(1108), 1, - sym_frontmatter_content, - STATE(476), 2, + ACTIONS(1521), 1, + sym_frontmatter_marker, + STATE(477), 2, sym__line, aux_sym_frontmatter_content_repeat1, - [12030] = 4, - ACTIONS(1516), 1, + [12089] = 4, + ACTIONS(29), 1, + sym_list_marker_definition, + ACTIONS(1523), 1, sym__block_close, - ACTIONS(1518), 1, - sym_list_marker_lower_alpha_period, - STATE(478), 1, - aux_sym__list_lower_alpha_period_repeat1, - STATE(822), 1, - sym__list_item_lower_alpha_period, - [12043] = 4, - ACTIONS(1521), 1, + STATE(526), 1, + aux_sym__list_definition_repeat1, + STATE(740), 1, + sym__list_item_definition, + [12102] = 4, + ACTIONS(31), 1, + sym_list_marker_decimal_period, + ACTIONS(1525), 1, sym__block_close, - ACTIONS(1523), 1, + STATE(527), 1, + aux_sym__list_decimal_period_repeat1, + STATE(743), 1, + sym__list_item_decimal_period, + [12115] = 4, + ACTIONS(41), 1, + sym_list_marker_decimal_paren, + ACTIONS(1527), 1, + sym__block_close, + STATE(528), 1, + aux_sym__list_decimal_paren_repeat1, + STATE(748), 1, + sym__list_item_decimal_paren, + [12128] = 4, + ACTIONS(51), 1, sym_list_marker_decimal_parens, - STATE(479), 1, + ACTIONS(1529), 1, + sym__block_close, + STATE(530), 1, aux_sym__list_decimal_parens_repeat1, - STATE(793), 1, + STATE(768), 1, sym__list_item_decimal_parens, - [12056] = 3, - ACTIONS(1526), 1, - anon_sym_PERCENT, - STATE(480), 1, - aux_sym__comment_no_newline_repeat1, - ACTIONS(1528), 2, - sym_backslash_escape, - aux_sym__comment_no_newline_token1, - [12067] = 4, + [12141] = 4, ACTIONS(33), 1, - sym_list_marker_decimal_period, + sym_list_marker_lower_alpha_period, ACTIONS(1531), 1, sym__block_close, - STATE(504), 1, - aux_sym__list_decimal_period_repeat1, - STATE(776), 1, - sym__list_item_decimal_period, - [12080] = 2, + STATE(532), 1, + aux_sym__list_lower_alpha_period_repeat1, + STATE(769), 1, + sym__list_item_lower_alpha_period, + [12154] = 4, + ACTIONS(43), 1, + sym_list_marker_lower_alpha_paren, ACTIONS(1533), 1, - sym__div_end, - ACTIONS(622), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [12089] = 2, + sym__block_close, + STATE(534), 1, + aux_sym__list_lower_alpha_paren_repeat1, + STATE(773), 1, + sym__list_item_lower_alpha_paren, + [12167] = 4, + ACTIONS(53), 1, + sym_list_marker_lower_alpha_parens, ACTIONS(1535), 1, - sym__code_block_end, - ACTIONS(632), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [12098] = 4, - ACTIONS(31), 1, - sym_list_marker_definition, + sym__block_close, + STATE(536), 1, + aux_sym__list_lower_alpha_parens_repeat1, + STATE(774), 1, + sym__list_item_lower_alpha_parens, + [12180] = 4, + ACTIONS(35), 1, + sym_list_marker_upper_alpha_period, ACTIONS(1537), 1, sym__block_close, - STATE(459), 1, - aux_sym__list_definition_repeat1, - STATE(769), 1, - sym__list_item_definition, - [12111] = 4, - ACTIONS(33), 1, - sym_list_marker_decimal_period, + STATE(538), 1, + aux_sym__list_upper_alpha_period_repeat1, + STATE(782), 1, + sym__list_item_upper_alpha_period, + [12193] = 4, + ACTIONS(45), 1, + sym_list_marker_upper_alpha_paren, ACTIONS(1539), 1, sym__block_close, - STATE(504), 1, - aux_sym__list_decimal_period_repeat1, - STATE(776), 1, - sym__list_item_decimal_period, - [12124] = 4, - ACTIONS(53), 1, - sym_list_marker_decimal_parens, + STATE(540), 1, + aux_sym__list_upper_alpha_paren_repeat1, + STATE(783), 1, + sym__list_item_upper_alpha_paren, + [12206] = 4, + ACTIONS(55), 1, + sym_list_marker_upper_alpha_parens, ACTIONS(1541), 1, sym__block_close, - STATE(479), 1, - aux_sym__list_decimal_parens_repeat1, - STATE(793), 1, - sym__list_item_decimal_parens, - [12137] = 4, + STATE(425), 1, + aux_sym__list_upper_alpha_parens_repeat1, + STATE(786), 1, + sym__list_item_upper_alpha_parens, + [12219] = 4, + ACTIONS(37), 1, + sym_list_marker_lower_roman_period, ACTIONS(1543), 1, sym__block_close, + STATE(427), 1, + aux_sym__list_lower_roman_period_repeat1, + STATE(787), 1, + sym__list_item_lower_roman_period, + [12232] = 4, + ACTIONS(47), 1, + sym_list_marker_lower_roman_paren, ACTIONS(1545), 1, - sym_list_marker_upper_alpha_paren, - STATE(487), 1, - aux_sym__list_upper_alpha_paren_repeat1, - STATE(705), 1, - sym__list_item_upper_alpha_paren, - [12150] = 4, - ACTIONS(61), 1, + sym__block_close, + STATE(428), 1, + aux_sym__list_lower_roman_paren_repeat1, + STATE(802), 1, + sym__list_item_lower_roman_paren, + [12245] = 4, + ACTIONS(57), 1, + sym_list_marker_lower_roman_parens, + ACTIONS(1547), 1, + sym__block_close, + STATE(430), 1, + aux_sym__list_lower_roman_parens_repeat1, + STATE(803), 1, + sym__list_item_lower_roman_parens, + [12258] = 4, + ACTIONS(39), 1, + sym_list_marker_upper_roman_period, + ACTIONS(1549), 1, + sym__block_close, + STATE(432), 1, + aux_sym__list_upper_roman_period_repeat1, + STATE(808), 1, + sym__list_item_upper_roman_period, + [12271] = 4, + ACTIONS(49), 1, + sym_list_marker_upper_roman_paren, + ACTIONS(1551), 1, + sym__block_close, + STATE(434), 1, + aux_sym__list_upper_roman_paren_repeat1, + STATE(814), 1, + sym__list_item_upper_roman_paren, + [12284] = 4, + ACTIONS(59), 1, sym_list_marker_upper_roman_parens, - ACTIONS(1548), 1, + ACTIONS(1553), 1, sym__block_close, - STATE(540), 1, + STATE(436), 1, aux_sym__list_upper_roman_parens_repeat1, - STATE(725), 1, + STATE(819), 1, sym__list_item_upper_roman_parens, - [12163] = 4, - ACTIONS(53), 1, + [12297] = 4, + ACTIONS(29), 1, + sym_list_marker_definition, + ACTIONS(1555), 1, + sym__block_close, + STATE(526), 1, + aux_sym__list_definition_repeat1, + STATE(740), 1, + sym__list_item_definition, + [12310] = 4, + ACTIONS(31), 1, + sym_list_marker_decimal_period, + ACTIONS(1557), 1, + sym__block_close, + STATE(527), 1, + aux_sym__list_decimal_period_repeat1, + STATE(743), 1, + sym__list_item_decimal_period, + [12323] = 4, + ACTIONS(41), 1, + sym_list_marker_decimal_paren, + ACTIONS(1559), 1, + sym__block_close, + STATE(528), 1, + aux_sym__list_decimal_paren_repeat1, + STATE(748), 1, + sym__list_item_decimal_paren, + [12336] = 4, + ACTIONS(51), 1, sym_list_marker_decimal_parens, - ACTIONS(1550), 1, + ACTIONS(1561), 1, sym__block_close, - STATE(479), 1, + STATE(530), 1, aux_sym__list_decimal_parens_repeat1, - STATE(793), 1, + STATE(768), 1, sym__list_item_decimal_parens, - [12176] = 4, - ACTIONS(35), 1, + [12349] = 4, + ACTIONS(33), 1, sym_list_marker_lower_alpha_period, - ACTIONS(1552), 1, + ACTIONS(1563), 1, sym__block_close, - STATE(478), 1, + STATE(532), 1, aux_sym__list_lower_alpha_period_repeat1, - STATE(822), 1, + STATE(769), 1, sym__list_item_lower_alpha_period, - [12189] = 4, - ACTIONS(45), 1, + [12362] = 4, + ACTIONS(43), 1, sym_list_marker_lower_alpha_paren, - ACTIONS(1554), 1, + ACTIONS(1565), 1, sym__block_close, - STATE(503), 1, + STATE(534), 1, aux_sym__list_lower_alpha_paren_repeat1, - STATE(684), 1, + STATE(773), 1, sym__list_item_lower_alpha_paren, - [12202] = 4, - ACTIONS(55), 1, + [12375] = 4, + ACTIONS(53), 1, sym_list_marker_lower_alpha_parens, - ACTIONS(1556), 1, + ACTIONS(1567), 1, sym__block_close, - STATE(451), 1, + STATE(536), 1, aux_sym__list_lower_alpha_parens_repeat1, - STATE(688), 1, + STATE(774), 1, sym__list_item_lower_alpha_parens, - [12215] = 4, - ACTIONS(37), 1, + [12388] = 4, + ACTIONS(35), 1, sym_list_marker_upper_alpha_period, - ACTIONS(1558), 1, + ACTIONS(1569), 1, sym__block_close, - STATE(455), 1, + STATE(538), 1, aux_sym__list_upper_alpha_period_repeat1, - STATE(704), 1, + STATE(782), 1, sym__list_item_upper_alpha_period, - [12228] = 4, - ACTIONS(47), 1, + [12401] = 4, + ACTIONS(45), 1, sym_list_marker_upper_alpha_paren, - ACTIONS(1560), 1, + ACTIONS(1571), 1, sym__block_close, - STATE(487), 1, + STATE(540), 1, aux_sym__list_upper_alpha_paren_repeat1, - STATE(705), 1, + STATE(783), 1, sym__list_item_upper_alpha_paren, - [12241] = 4, - ACTIONS(57), 1, + [12414] = 4, + ACTIONS(55), 1, sym_list_marker_upper_alpha_parens, - ACTIONS(1562), 1, + ACTIONS(1573), 1, sym__block_close, - STATE(519), 1, + STATE(425), 1, aux_sym__list_upper_alpha_parens_repeat1, - STATE(711), 1, + STATE(786), 1, sym__list_item_upper_alpha_parens, - [12254] = 4, - ACTIONS(39), 1, + [12427] = 4, + ACTIONS(37), 1, sym_list_marker_lower_roman_period, - ACTIONS(1564), 1, + ACTIONS(1575), 1, sym__block_close, - STATE(522), 1, + STATE(427), 1, aux_sym__list_lower_roman_period_repeat1, - STATE(712), 1, + STATE(787), 1, sym__list_item_lower_roman_period, - [12267] = 4, - ACTIONS(49), 1, + [12440] = 4, + ACTIONS(47), 1, sym_list_marker_lower_roman_paren, - ACTIONS(1566), 1, + ACTIONS(1577), 1, sym__block_close, - STATE(525), 1, + STATE(428), 1, aux_sym__list_lower_roman_paren_repeat1, - STATE(726), 1, + STATE(802), 1, sym__list_item_lower_roman_paren, - [12280] = 4, - ACTIONS(59), 1, + [12453] = 4, + ACTIONS(57), 1, sym_list_marker_lower_roman_parens, - ACTIONS(1568), 1, + ACTIONS(1579), 1, sym__block_close, - STATE(529), 1, + STATE(430), 1, aux_sym__list_lower_roman_parens_repeat1, - STATE(728), 1, + STATE(803), 1, sym__list_item_lower_roman_parens, - [12293] = 4, - ACTIONS(41), 1, + [12466] = 4, + ACTIONS(39), 1, sym_list_marker_upper_roman_period, - ACTIONS(1570), 1, + ACTIONS(1581), 1, sym__block_close, - STATE(532), 1, + STATE(432), 1, aux_sym__list_upper_roman_period_repeat1, - STATE(734), 1, + STATE(808), 1, sym__list_item_upper_roman_period, - [12306] = 4, - ACTIONS(51), 1, + [12479] = 4, + ACTIONS(49), 1, sym_list_marker_upper_roman_paren, - ACTIONS(1572), 1, + ACTIONS(1583), 1, sym__block_close, - STATE(536), 1, + STATE(434), 1, aux_sym__list_upper_roman_paren_repeat1, - STATE(830), 1, + STATE(814), 1, sym__list_item_upper_roman_paren, - [12319] = 4, - ACTIONS(61), 1, + [12492] = 4, + ACTIONS(59), 1, sym_list_marker_upper_roman_parens, - ACTIONS(1574), 1, + ACTIONS(1585), 1, sym__block_close, - STATE(540), 1, + STATE(436), 1, aux_sym__list_upper_roman_parens_repeat1, - STATE(725), 1, + STATE(819), 1, sym__list_item_upper_roman_parens, - [12332] = 3, - ACTIONS(950), 1, - sym__table_caption_begin, - STATE(827), 1, - sym_table_caption, - ACTIONS(536), 2, - sym__block_close, - sym__block_quote_continuation, - [12343] = 4, - ACTIONS(1576), 1, - sym__block_close, - ACTIONS(1578), 1, - sym_list_marker_lower_alpha_paren, - STATE(503), 1, - aux_sym__list_lower_alpha_paren_repeat1, - STATE(684), 1, - sym__list_item_lower_alpha_paren, - [12356] = 4, - ACTIONS(1581), 1, - sym__block_close, - ACTIONS(1583), 1, - sym_list_marker_decimal_period, - STATE(504), 1, - aux_sym__list_decimal_period_repeat1, - STATE(776), 1, - sym__list_item_decimal_period, - [12369] = 4, - ACTIONS(1586), 1, - anon_sym_EQ, - ACTIONS(1588), 1, - sym_language, - ACTIONS(1590), 1, - sym__newline, - STATE(1000), 1, - sym_raw_block_info, - [12382] = 4, - ACTIONS(1592), 1, - sym__block_close, - ACTIONS(1594), 1, - sym_list_marker_decimal_paren, - STATE(506), 1, - aux_sym__list_decimal_paren_repeat1, - STATE(790), 1, - sym__list_item_decimal_paren, - [12395] = 2, - ACTIONS(1597), 1, - sym__div_end, - ACTIONS(550), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [12404] = 4, - ACTIONS(31), 1, + [12505] = 4, + ACTIONS(29), 1, sym_list_marker_definition, - ACTIONS(1599), 1, + ACTIONS(1587), 1, sym__block_close, - STATE(459), 1, + STATE(526), 1, aux_sym__list_definition_repeat1, - STATE(769), 1, + STATE(740), 1, sym__list_item_definition, - [12417] = 4, - ACTIONS(33), 1, + [12518] = 4, + ACTIONS(31), 1, sym_list_marker_decimal_period, - ACTIONS(1601), 1, + ACTIONS(1589), 1, sym__block_close, - STATE(504), 1, + STATE(527), 1, aux_sym__list_decimal_period_repeat1, - STATE(776), 1, + STATE(743), 1, sym__list_item_decimal_period, - [12430] = 4, - ACTIONS(43), 1, + [12531] = 4, + ACTIONS(41), 1, sym_list_marker_decimal_paren, - ACTIONS(1603), 1, + ACTIONS(1591), 1, sym__block_close, - STATE(506), 1, + STATE(528), 1, aux_sym__list_decimal_paren_repeat1, - STATE(790), 1, + STATE(748), 1, sym__list_item_decimal_paren, - [12443] = 4, - ACTIONS(53), 1, + [12544] = 4, + ACTIONS(51), 1, sym_list_marker_decimal_parens, - ACTIONS(1605), 1, + ACTIONS(1593), 1, sym__block_close, - STATE(479), 1, + STATE(530), 1, aux_sym__list_decimal_parens_repeat1, - STATE(793), 1, + STATE(768), 1, sym__list_item_decimal_parens, - [12456] = 4, - ACTIONS(35), 1, + [12557] = 4, + ACTIONS(33), 1, sym_list_marker_lower_alpha_period, - ACTIONS(1607), 1, + ACTIONS(1595), 1, sym__block_close, - STATE(478), 1, + STATE(532), 1, aux_sym__list_lower_alpha_period_repeat1, - STATE(822), 1, + STATE(769), 1, sym__list_item_lower_alpha_period, - [12469] = 4, - ACTIONS(45), 1, + [12570] = 4, + ACTIONS(43), 1, sym_list_marker_lower_alpha_paren, - ACTIONS(1609), 1, + ACTIONS(1597), 1, sym__block_close, - STATE(503), 1, + STATE(534), 1, aux_sym__list_lower_alpha_paren_repeat1, - STATE(684), 1, + STATE(773), 1, sym__list_item_lower_alpha_paren, - [12482] = 4, - ACTIONS(55), 1, + [12583] = 4, + ACTIONS(53), 1, sym_list_marker_lower_alpha_parens, - ACTIONS(1611), 1, + ACTIONS(1599), 1, sym__block_close, - STATE(451), 1, + STATE(536), 1, aux_sym__list_lower_alpha_parens_repeat1, - STATE(688), 1, + STATE(774), 1, sym__list_item_lower_alpha_parens, - [12495] = 4, - ACTIONS(37), 1, + [12596] = 4, + ACTIONS(35), 1, sym_list_marker_upper_alpha_period, - ACTIONS(1613), 1, + ACTIONS(1601), 1, sym__block_close, - STATE(455), 1, + STATE(538), 1, aux_sym__list_upper_alpha_period_repeat1, - STATE(704), 1, + STATE(782), 1, sym__list_item_upper_alpha_period, - [12508] = 4, - ACTIONS(47), 1, + [12609] = 4, + ACTIONS(45), 1, sym_list_marker_upper_alpha_paren, - ACTIONS(1615), 1, + ACTIONS(1603), 1, sym__block_close, - STATE(487), 1, + STATE(540), 1, aux_sym__list_upper_alpha_paren_repeat1, - STATE(705), 1, + STATE(783), 1, sym__list_item_upper_alpha_paren, - [12521] = 4, - ACTIONS(57), 1, + [12622] = 4, + ACTIONS(55), 1, sym_list_marker_upper_alpha_parens, - ACTIONS(1617), 1, + ACTIONS(1605), 1, sym__block_close, - STATE(519), 1, + STATE(425), 1, aux_sym__list_upper_alpha_parens_repeat1, - STATE(711), 1, + STATE(786), 1, sym__list_item_upper_alpha_parens, - [12534] = 4, - ACTIONS(35), 1, - sym_list_marker_lower_alpha_period, - ACTIONS(1619), 1, - sym__block_close, - STATE(478), 1, - aux_sym__list_lower_alpha_period_repeat1, - STATE(822), 1, - sym__list_item_lower_alpha_period, - [12547] = 4, - ACTIONS(1621), 1, - sym__block_close, - ACTIONS(1623), 1, - sym_list_marker_upper_alpha_parens, - STATE(519), 1, - aux_sym__list_upper_alpha_parens_repeat1, - STATE(711), 1, - sym__list_item_upper_alpha_parens, - [12560] = 4, - ACTIONS(45), 1, - sym_list_marker_lower_alpha_paren, - ACTIONS(1626), 1, - sym__block_close, - STATE(503), 1, - aux_sym__list_lower_alpha_paren_repeat1, - STATE(684), 1, - sym__list_item_lower_alpha_paren, - [12573] = 4, - ACTIONS(1586), 1, - anon_sym_EQ, - ACTIONS(1628), 1, - sym_language, - ACTIONS(1630), 1, - sym__newline, - STATE(1028), 1, - sym_raw_block_info, - [12586] = 4, - ACTIONS(1632), 1, - sym__block_close, - ACTIONS(1634), 1, + [12635] = 4, + ACTIONS(37), 1, sym_list_marker_lower_roman_period, - STATE(522), 1, + ACTIONS(1607), 1, + sym__block_close, + STATE(427), 1, aux_sym__list_lower_roman_period_repeat1, - STATE(712), 1, + STATE(787), 1, sym__list_item_lower_roman_period, - [12599] = 4, - ACTIONS(55), 1, - sym_list_marker_lower_alpha_parens, - ACTIONS(1637), 1, - sym__block_close, - STATE(451), 1, - aux_sym__list_lower_alpha_parens_repeat1, - STATE(688), 1, - sym__list_item_lower_alpha_parens, - [12612] = 3, - ACTIONS(1639), 1, - aux_sym__line_token1, - ACTIONS(1642), 1, - sym_frontmatter_marker, - STATE(524), 2, - sym__line, - aux_sym_frontmatter_content_repeat1, - [12623] = 4, - ACTIONS(1644), 1, - sym__block_close, - ACTIONS(1646), 1, + [12648] = 4, + ACTIONS(47), 1, sym_list_marker_lower_roman_paren, - STATE(525), 1, + ACTIONS(1609), 1, + sym__block_close, + STATE(428), 1, aux_sym__list_lower_roman_paren_repeat1, - STATE(726), 1, + STATE(802), 1, sym__list_item_lower_roman_paren, - [12636] = 4, + [12661] = 4, + ACTIONS(57), 1, + sym_list_marker_lower_roman_parens, + ACTIONS(1611), 1, + sym__block_close, + STATE(430), 1, + aux_sym__list_lower_roman_parens_repeat1, + STATE(803), 1, + sym__list_item_lower_roman_parens, + [12674] = 4, ACTIONS(39), 1, - sym_list_marker_lower_roman_period, - ACTIONS(1649), 1, + sym_list_marker_upper_roman_period, + ACTIONS(1613), 1, sym__block_close, - STATE(522), 1, - aux_sym__list_lower_roman_period_repeat1, - STATE(712), 1, - sym__list_item_lower_roman_period, - [12649] = 4, - ACTIONS(1586), 1, - anon_sym_EQ, - ACTIONS(1651), 1, - sym_language, - ACTIONS(1653), 1, - sym__newline, - STATE(1047), 1, - sym_raw_block_info, - [12662] = 4, - ACTIONS(37), 1, - sym_list_marker_upper_alpha_period, + STATE(432), 1, + aux_sym__list_upper_roman_period_repeat1, + STATE(808), 1, + sym__list_item_upper_roman_period, + [12687] = 4, + ACTIONS(49), 1, + sym_list_marker_upper_roman_paren, + ACTIONS(1615), 1, + sym__block_close, + STATE(434), 1, + aux_sym__list_upper_roman_paren_repeat1, + STATE(814), 1, + sym__list_item_upper_roman_paren, + [12700] = 4, + ACTIONS(59), 1, + sym_list_marker_upper_roman_parens, + ACTIONS(1617), 1, + sym__block_close, + STATE(436), 1, + aux_sym__list_upper_roman_parens_repeat1, + STATE(819), 1, + sym__list_item_upper_roman_parens, + [12713] = 4, + ACTIONS(1619), 1, + sym__block_close, + ACTIONS(1621), 1, + sym_list_marker_definition, + STATE(526), 1, + aux_sym__list_definition_repeat1, + STATE(740), 1, + sym__list_item_definition, + [12726] = 4, + ACTIONS(1624), 1, + sym__block_close, + ACTIONS(1626), 1, + sym_list_marker_decimal_period, + STATE(527), 1, + aux_sym__list_decimal_period_repeat1, + STATE(743), 1, + sym__list_item_decimal_period, + [12739] = 4, + ACTIONS(1629), 1, + sym__block_close, + ACTIONS(1631), 1, + sym_list_marker_decimal_paren, + STATE(528), 1, + aux_sym__list_decimal_paren_repeat1, + STATE(748), 1, + sym__list_item_decimal_paren, + [12752] = 4, + ACTIONS(29), 1, + sym_list_marker_definition, + ACTIONS(1634), 1, + sym__block_close, + STATE(526), 1, + aux_sym__list_definition_repeat1, + STATE(740), 1, + sym__list_item_definition, + [12765] = 4, + ACTIONS(1636), 1, + sym__block_close, + ACTIONS(1638), 1, + sym_list_marker_decimal_parens, + STATE(530), 1, + aux_sym__list_decimal_parens_repeat1, + STATE(768), 1, + sym__list_item_decimal_parens, + [12778] = 4, + ACTIONS(31), 1, + sym_list_marker_decimal_period, + ACTIONS(1641), 1, + sym__block_close, + STATE(527), 1, + aux_sym__list_decimal_period_repeat1, + STATE(743), 1, + sym__list_item_decimal_period, + [12791] = 4, + ACTIONS(1643), 1, + sym__block_close, + ACTIONS(1645), 1, + sym_list_marker_lower_alpha_period, + STATE(532), 1, + aux_sym__list_lower_alpha_period_repeat1, + STATE(769), 1, + sym__list_item_lower_alpha_period, + [12804] = 4, + ACTIONS(41), 1, + sym_list_marker_decimal_paren, + ACTIONS(1648), 1, + sym__block_close, + STATE(528), 1, + aux_sym__list_decimal_paren_repeat1, + STATE(748), 1, + sym__list_item_decimal_paren, + [12817] = 4, + ACTIONS(1650), 1, + sym__block_close, + ACTIONS(1652), 1, + sym_list_marker_lower_alpha_paren, + STATE(534), 1, + aux_sym__list_lower_alpha_paren_repeat1, + STATE(773), 1, + sym__list_item_lower_alpha_paren, + [12830] = 4, + ACTIONS(51), 1, + sym_list_marker_decimal_parens, ACTIONS(1655), 1, sym__block_close, - STATE(455), 1, - aux_sym__list_upper_alpha_period_repeat1, - STATE(704), 1, - sym__list_item_upper_alpha_period, - [12675] = 4, + STATE(530), 1, + aux_sym__list_decimal_parens_repeat1, + STATE(768), 1, + sym__list_item_decimal_parens, + [12843] = 4, ACTIONS(1657), 1, sym__block_close, ACTIONS(1659), 1, - sym_list_marker_lower_roman_parens, - STATE(529), 1, - aux_sym__list_lower_roman_parens_repeat1, - STATE(728), 1, - sym__list_item_lower_roman_parens, - [12688] = 4, - ACTIONS(47), 1, - sym_list_marker_upper_alpha_paren, + sym_list_marker_lower_alpha_parens, + STATE(536), 1, + aux_sym__list_lower_alpha_parens_repeat1, + STATE(774), 1, + sym__list_item_lower_alpha_parens, + [12856] = 4, + ACTIONS(33), 1, + sym_list_marker_lower_alpha_period, ACTIONS(1662), 1, sym__block_close, - STATE(487), 1, - aux_sym__list_upper_alpha_paren_repeat1, - STATE(705), 1, - sym__list_item_upper_alpha_paren, - [12701] = 4, - ACTIONS(49), 1, - sym_list_marker_lower_roman_paren, + STATE(532), 1, + aux_sym__list_lower_alpha_period_repeat1, + STATE(769), 1, + sym__list_item_lower_alpha_period, + [12869] = 4, ACTIONS(1664), 1, sym__block_close, - STATE(525), 1, - aux_sym__list_lower_roman_paren_repeat1, - STATE(726), 1, - sym__list_item_lower_roman_paren, - [12714] = 4, ACTIONS(1666), 1, + sym_list_marker_upper_alpha_period, + STATE(538), 1, + aux_sym__list_upper_alpha_period_repeat1, + STATE(782), 1, + sym__list_item_upper_alpha_period, + [12882] = 4, + ACTIONS(43), 1, + sym_list_marker_lower_alpha_paren, + ACTIONS(1669), 1, sym__block_close, - ACTIONS(1668), 1, - sym_list_marker_upper_roman_period, - STATE(532), 1, - aux_sym__list_upper_roman_period_repeat1, - STATE(734), 1, - sym__list_item_upper_roman_period, - [12727] = 4, - ACTIONS(1586), 1, - anon_sym_EQ, + STATE(534), 1, + aux_sym__list_lower_alpha_paren_repeat1, + STATE(773), 1, + sym__list_item_lower_alpha_paren, + [12895] = 4, ACTIONS(1671), 1, - sym_language, + sym__block_close, ACTIONS(1673), 1, + sym_list_marker_upper_alpha_paren, + STATE(540), 1, + aux_sym__list_upper_alpha_paren_repeat1, + STATE(783), 1, + sym__list_item_upper_alpha_paren, + [12908] = 4, + ACTIONS(1443), 1, + anon_sym_EQ, + ACTIONS(1676), 1, + sym_language, + ACTIONS(1678), 1, sym__newline, - STATE(1066), 1, + STATE(1027), 1, sym_raw_block_info, - [12740] = 4, - ACTIONS(59), 1, - sym_list_marker_lower_roman_parens, - ACTIONS(1675), 1, - sym__block_close, - STATE(529), 1, - aux_sym__list_lower_roman_parens_repeat1, - STATE(728), 1, - sym__list_item_lower_roman_parens, - [12753] = 4, - ACTIONS(57), 1, - sym_list_marker_upper_alpha_parens, - ACTIONS(1677), 1, - sym__block_close, - STATE(519), 1, - aux_sym__list_upper_alpha_parens_repeat1, - STATE(711), 1, - sym__list_item_upper_alpha_parens, - [12766] = 4, - ACTIONS(1679), 1, - sym__block_close, - ACTIONS(1681), 1, - sym_list_marker_upper_roman_paren, - STATE(536), 1, - aux_sym__list_upper_roman_paren_repeat1, - STATE(830), 1, - sym__list_item_upper_roman_paren, - [12779] = 4, - ACTIONS(51), 1, - sym_list_marker_upper_roman_paren, - ACTIONS(1684), 1, - sym__block_close, - STATE(536), 1, - aux_sym__list_upper_roman_paren_repeat1, - STATE(830), 1, - sym__list_item_upper_roman_paren, - [12792] = 4, - ACTIONS(1586), 1, + [12921] = 4, + ACTIONS(1443), 1, anon_sym_EQ, - ACTIONS(1686), 1, + ACTIONS(1680), 1, sym_language, - ACTIONS(1688), 1, + ACTIONS(1682), 1, sym__newline, - STATE(1084), 1, + STATE(1046), 1, sym_raw_block_info, - [12805] = 4, - ACTIONS(39), 1, - sym_list_marker_lower_roman_period, + [12934] = 4, + ACTIONS(1443), 1, + anon_sym_EQ, + ACTIONS(1684), 1, + sym_language, + ACTIONS(1686), 1, + sym__newline, + STATE(1065), 1, + sym_raw_block_info, + [12947] = 4, + ACTIONS(1443), 1, + anon_sym_EQ, + ACTIONS(1688), 1, + sym_language, ACTIONS(1690), 1, - sym__block_close, - STATE(522), 1, - aux_sym__list_lower_roman_period_repeat1, - STATE(712), 1, - sym__list_item_lower_roman_period, - [12818] = 4, + sym__newline, + STATE(1083), 1, + sym_raw_block_info, + [12960] = 1, + ACTIONS(752), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [12966] = 1, + ACTIONS(694), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [12972] = 1, + ACTIONS(698), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [12978] = 1, + ACTIONS(702), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [12984] = 1, + ACTIONS(710), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [12990] = 3, + ACTIONS(907), 1, + sym__list_marker_task_begin, + ACTIONS(1098), 1, + sym__block_quote_continuation, + STATE(551), 1, + aux_sym__block_quote_prefix_repeat1, + [13000] = 3, + ACTIONS(868), 1, + sym__list_marker_task_begin, ACTIONS(1692), 1, + sym__block_quote_continuation, + STATE(551), 1, + aux_sym__block_quote_prefix_repeat1, + [13010] = 2, + ACTIONS(1695), 1, + sym__code_block_end, + ACTIONS(642), 2, sym__block_close, - ACTIONS(1694), 1, - sym_list_marker_upper_roman_parens, - STATE(540), 1, - aux_sym__list_upper_roman_parens_repeat1, - STATE(725), 1, - sym__list_item_upper_roman_parens, - [12831] = 4, - ACTIONS(49), 1, - sym_list_marker_lower_roman_paren, + sym__block_quote_continuation, + [13018] = 3, ACTIONS(1697), 1, - sym__block_close, - STATE(525), 1, - aux_sym__list_lower_roman_paren_repeat1, - STATE(726), 1, - sym__list_item_lower_roman_paren, - [12844] = 4, - ACTIONS(59), 1, - sym_list_marker_lower_roman_parens, + sym__newline, ACTIONS(1699), 1, - sym__block_close, - STATE(529), 1, - aux_sym__list_lower_roman_parens_repeat1, - STATE(728), 1, - sym__list_item_lower_roman_parens, - [12857] = 4, - ACTIONS(41), 1, - sym_list_marker_upper_roman_period, + sym__table_cell, + STATE(993), 1, + sym_table_cell, + [13028] = 3, + ACTIONS(907), 1, + aux_sym__line_token1, + ACTIONS(1106), 1, + sym__block_quote_continuation, + STATE(555), 1, + aux_sym__block_quote_prefix_repeat1, + [13038] = 3, + ACTIONS(868), 1, + aux_sym__line_token1, ACTIONS(1701), 1, + sym__block_quote_continuation, + STATE(555), 1, + aux_sym__block_quote_prefix_repeat1, + [13048] = 3, + ACTIONS(907), 1, + sym__list_item_continuation, + ACTIONS(1224), 1, + sym__block_quote_continuation, + STATE(557), 1, + aux_sym__block_quote_prefix_repeat1, + [13058] = 3, + ACTIONS(868), 1, + sym__list_item_continuation, + ACTIONS(1704), 1, + sym__block_quote_continuation, + STATE(557), 1, + aux_sym__block_quote_prefix_repeat1, + [13068] = 3, + ACTIONS(907), 1, + sym__footnote_continuation, + ACTIONS(1226), 1, + sym__block_quote_continuation, + STATE(559), 1, + aux_sym__block_quote_prefix_repeat1, + [13078] = 3, + ACTIONS(868), 1, + sym__footnote_continuation, + ACTIONS(1707), 1, + sym__block_quote_continuation, + STATE(559), 1, + aux_sym__block_quote_prefix_repeat1, + [13088] = 1, + ACTIONS(1710), 3, sym__block_close, - STATE(532), 1, - aux_sym__list_upper_roman_period_repeat1, - STATE(734), 1, - sym__list_item_upper_roman_period, - [12870] = 4, - ACTIONS(41), 1, - sym_list_marker_upper_roman_period, - ACTIONS(1703), 1, - sym__block_close, - STATE(532), 1, - aux_sym__list_upper_roman_period_repeat1, - STATE(734), 1, - sym__list_item_upper_roman_period, - [12883] = 4, - ACTIONS(43), 1, - sym_list_marker_decimal_paren, - ACTIONS(1705), 1, + sym__list_marker_task_begin, + sym__block_quote_continuation, + [13094] = 1, + ACTIONS(1712), 3, sym__block_close, - STATE(506), 1, - aux_sym__list_decimal_paren_repeat1, - STATE(790), 1, - sym__list_item_decimal_paren, - [12896] = 1, - ACTIONS(844), 3, - sym__list_item_continuation, - sym__list_item_end, + sym__list_marker_task_begin, sym__block_quote_continuation, - [12902] = 1, - ACTIONS(1707), 3, + [13100] = 3, + ACTIONS(1699), 1, + sym__table_cell, + ACTIONS(1714), 1, + sym__newline, + STATE(993), 1, + sym_table_cell, + [13110] = 2, + ACTIONS(1716), 1, + sym__code_block_end, + ACTIONS(608), 2, sym__block_close, - sym_list_marker_star, sym__block_quote_continuation, - [12908] = 1, - ACTIONS(1709), 3, + [13118] = 1, + ACTIONS(1712), 3, sym__block_close, sym_list_marker_plus, sym__block_quote_continuation, - [12914] = 1, - ACTIONS(1711), 3, + [13124] = 2, + ACTIONS(1718), 1, + sym__div_end, + ACTIONS(542), 2, sym__block_close, - sym__list_marker_task_begin, sym__block_quote_continuation, - [12920] = 3, - ACTIONS(934), 1, - sym_list_marker_plus, - ACTIONS(1185), 1, + [13132] = 2, + ACTIONS(1720), 1, + sym__code_block_end, + ACTIONS(566), 2, + sym__block_close, sym__block_quote_continuation, - STATE(561), 1, - aux_sym__block_quote_prefix_repeat1, - [12930] = 3, - ACTIONS(1713), 1, - sym__eof_or_newline, - ACTIONS(1715), 1, - sym__newline_inline, - STATE(552), 1, - aux_sym__paragraph_inline_content_repeat1, - [12940] = 3, - ACTIONS(1717), 1, - sym__eof_or_newline, - ACTIONS(1719), 1, - sym__newline_inline, - STATE(552), 1, - aux_sym__paragraph_inline_content_repeat1, - [12950] = 1, - ACTIONS(1722), 3, + [13140] = 2, + ACTIONS(1722), 1, + sym__code_block_end, + ACTIONS(572), 2, sym__block_close, - sym_list_marker_dash, sym__block_quote_continuation, - [12956] = 1, - ACTIONS(1724), 3, + [13148] = 2, + ACTIONS(1724), 1, + sym__eof_or_newline, + ACTIONS(578), 2, sym__block_close, - sym_list_marker_plus, sym__block_quote_continuation, - [12962] = 3, - ACTIONS(1715), 1, - sym__newline_inline, + [13156] = 3, ACTIONS(1726), 1, - sym__eof_or_newline, - STATE(551), 1, - aux_sym__paragraph_inline_content_repeat1, - [12972] = 1, - ACTIONS(1728), 3, sym__block_close, - sym_list_marker_star, + ACTIONS(1728), 1, + sym__heading_continuation, + STATE(599), 1, + aux_sym__heading_content_repeat1, + [13166] = 3, + ACTIONS(907), 1, + sym_list_marker_plus, + ACTIONS(1160), 1, sym__block_quote_continuation, - [12978] = 3, + STATE(586), 1, + aux_sym__block_quote_prefix_repeat1, + [13176] = 3, + ACTIONS(1728), 1, + sym__heading_continuation, ACTIONS(1730), 1, sym__block_close, - ACTIONS(1732), 1, - sym__heading_continuation, - STATE(557), 1, + STATE(569), 1, aux_sym__heading_content_repeat1, - [12988] = 1, - ACTIONS(1735), 3, + [13186] = 1, + ACTIONS(1712), 3, sym__block_close, - sym__list_marker_task_begin, + sym_list_marker_star, sym__block_quote_continuation, - [12994] = 3, - ACTIONS(1715), 1, - sym__newline_inline, - ACTIONS(1726), 1, - sym__eof_or_newline, - STATE(552), 1, - aux_sym__paragraph_inline_content_repeat1, - [13004] = 1, - ACTIONS(1737), 3, + [13192] = 1, + ACTIONS(1732), 3, + sym__block_close, + sym_list_marker_star, + sym__block_quote_continuation, + [13198] = 1, + ACTIONS(1734), 3, sym__block_close, sym_list_marker_dash, sym__block_quote_continuation, - [13010] = 3, - ACTIONS(868), 1, - sym_list_marker_plus, - ACTIONS(1739), 1, + [13204] = 3, + ACTIONS(1699), 1, + sym__table_cell, + ACTIONS(1736), 1, + sym__newline, + STATE(993), 1, + sym_table_cell, + [13214] = 3, + ACTIONS(1699), 1, + sym__table_cell, + ACTIONS(1738), 1, + sym__newline, + STATE(993), 1, + sym_table_cell, + [13224] = 1, + ACTIONS(1740), 3, + sym__block_close, + sym_list_marker_star, sym__block_quote_continuation, - STATE(561), 1, - aux_sym__block_quote_prefix_repeat1, - [13020] = 1, - ACTIONS(860), 3, - sym__list_item_continuation, - sym__list_item_end, + [13230] = 1, + ACTIONS(1742), 3, + sym__block_close, + sym_list_marker_plus, sym__block_quote_continuation, - [13026] = 3, - ACTIONS(1742), 1, + [13236] = 2, + ACTIONS(1746), 1, + anon_sym_SPACE, + ACTIONS(1744), 2, + anon_sym_x, + anon_sym_X, + [13244] = 3, + ACTIONS(1699), 1, + sym__table_cell, + ACTIONS(1748), 1, sym__newline, - ACTIONS(1744), 1, + STATE(993), 1, + sym_table_cell, + [13254] = 3, + ACTIONS(1699), 1, sym__table_cell, - STATE(908), 1, + ACTIONS(1750), 1, + sym__newline, + STATE(993), 1, sym_table_cell, - [13036] = 3, - ACTIONS(1744), 1, + [13264] = 1, + ACTIONS(1752), 3, + anon_sym_PERCENT, + sym_backslash_escape, + aux_sym_comment_token1, + [13270] = 3, + ACTIONS(1699), 1, sym__table_cell, - ACTIONS(1746), 1, + ACTIONS(1754), 1, sym__newline, - STATE(908), 1, + STATE(993), 1, sym_table_cell, - [13046] = 1, - ACTIONS(800), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [13052] = 1, - ACTIONS(804), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [13058] = 3, - ACTIONS(934), 1, + [13280] = 3, + ACTIONS(1699), 1, + sym__table_cell, + ACTIONS(1756), 1, + sym__newline, + STATE(993), 1, + sym_table_cell, + [13290] = 1, + ACTIONS(1710), 3, + sym__block_close, sym_list_marker_star, - ACTIONS(1165), 1, - sym__block_quote_continuation, - STATE(591), 1, - aux_sym__block_quote_prefix_repeat1, - [13068] = 1, - ACTIONS(816), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [13074] = 1, - ACTIONS(820), 3, - sym__list_item_continuation, - sym__list_item_end, sym__block_quote_continuation, - [13080] = 1, - ACTIONS(824), 3, - sym__list_item_continuation, - sym__list_item_end, + [13296] = 3, + ACTIONS(868), 1, + sym_list_marker_plus, + ACTIONS(1758), 1, sym__block_quote_continuation, - [13086] = 1, - ACTIONS(828), 3, - sym__list_item_continuation, - sym__list_item_end, + STATE(586), 1, + aux_sym__block_quote_prefix_repeat1, + [13306] = 3, + ACTIONS(907), 1, + sym_list_marker_dash, + ACTIONS(1164), 1, sym__block_quote_continuation, - [13092] = 1, - ACTIONS(666), 3, + STATE(598), 1, + aux_sym__block_quote_prefix_repeat1, + [13316] = 3, + ACTIONS(1761), 1, + anon_sym_DQUOTE, + ACTIONS(1763), 1, + aux_sym_value_token2, + STATE(409), 1, + sym_value, + [13326] = 1, + ACTIONS(864), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13098] = 1, - ACTIONS(670), 3, - sym__list_item_continuation, - sym__list_item_end, + [13332] = 1, + ACTIONS(1765), 3, + sym__block_close, + sym__list_marker_task_begin, sym__block_quote_continuation, - [13104] = 1, - ACTIONS(674), 3, - sym__list_item_continuation, - sym__list_item_end, + [13338] = 1, + ACTIONS(1767), 3, + sym__block_close, + sym_list_marker_dash, sym__block_quote_continuation, - [13110] = 1, - ACTIONS(678), 3, - sym__list_item_continuation, - sym__list_item_end, + [13344] = 1, + ACTIONS(1769), 3, + sym__block_close, + sym_list_marker_star, sym__block_quote_continuation, - [13116] = 1, - ACTIONS(682), 3, - sym__list_item_continuation, - sym__list_item_end, + [13350] = 1, + ACTIONS(1771), 3, + sym__block_close, + sym_list_marker_plus, sym__block_quote_continuation, - [13122] = 1, - ACTIONS(690), 3, - sym__list_item_continuation, - sym__list_item_end, + [13356] = 1, + ACTIONS(1773), 3, + sym__block_close, + sym__list_marker_task_begin, sym__block_quote_continuation, - [13128] = 1, - ACTIONS(702), 3, - sym__list_item_continuation, - sym__list_item_end, + [13362] = 3, + ACTIONS(1775), 1, + sym__eof_or_newline, + ACTIONS(1777), 1, + sym__newline_inline, + STATE(596), 1, + aux_sym__paragraph_inline_content_repeat1, + [13372] = 3, + ACTIONS(1779), 1, + sym__eof_or_newline, + ACTIONS(1781), 1, + sym__newline_inline, + STATE(596), 1, + aux_sym__paragraph_inline_content_repeat1, + [13382] = 3, + ACTIONS(538), 1, + sym__indented_content_spacer, + ACTIONS(929), 1, + sym__table_caption_begin, + STATE(942), 1, + sym_table_caption, + [13392] = 3, + ACTIONS(868), 1, + sym_list_marker_dash, + ACTIONS(1784), 1, sym__block_quote_continuation, - [13134] = 1, + STATE(598), 1, + aux_sym__block_quote_prefix_repeat1, + [13402] = 3, + ACTIONS(1787), 1, + sym__block_close, + ACTIONS(1789), 1, + sym__heading_continuation, + STATE(599), 1, + aux_sym__heading_content_repeat1, + [13412] = 1, ACTIONS(706), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13140] = 1, - ACTIONS(750), 3, + [13418] = 1, + ACTIONS(732), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13146] = 1, - ACTIONS(758), 3, - sym__list_item_continuation, - sym__list_item_end, + [13424] = 1, + ACTIONS(1203), 3, + sym__block_close, sym__block_quote_continuation, - [13152] = 1, - ACTIONS(770), 3, - sym__list_item_continuation, - sym__list_item_end, + aux_sym__line_token1, + [13430] = 3, + ACTIONS(1699), 1, + sym__table_cell, + ACTIONS(1792), 1, + sym__newline, + STATE(993), 1, + sym_table_cell, + [13440] = 3, + ACTIONS(1699), 1, + sym__table_cell, + ACTIONS(1794), 1, + sym__newline, + STATE(993), 1, + sym_table_cell, + [13450] = 1, + ACTIONS(1712), 3, + sym__block_close, + sym_list_marker_dash, sym__block_quote_continuation, - [13158] = 1, - ACTIONS(778), 3, + [13456] = 1, + ACTIONS(1796), 3, + sym__block_close, + sym__list_marker_task_begin, + sym__block_quote_continuation, + [13462] = 3, + ACTIONS(1699), 1, + sym__table_cell, + ACTIONS(1798), 1, + sym__newline, + STATE(993), 1, + sym_table_cell, + [13472] = 3, + ACTIONS(1699), 1, + sym__table_cell, + ACTIONS(1800), 1, + sym__newline, + STATE(993), 1, + sym_table_cell, + [13482] = 1, + ACTIONS(1259), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13164] = 1, - ACTIONS(786), 3, - sym__list_item_continuation, - sym__list_item_end, + [13488] = 3, + ACTIONS(907), 1, + sym_list_marker_star, + ACTIONS(1170), 1, sym__block_quote_continuation, - [13170] = 1, - ACTIONS(806), 3, - sym__list_item_continuation, - sym__list_item_end, + STATE(642), 1, + aux_sym__block_quote_prefix_repeat1, + [13498] = 1, + ACTIONS(1710), 3, + sym__block_close, + sym_list_marker_dash, sym__block_quote_continuation, - [13176] = 1, - ACTIONS(810), 3, + [13504] = 1, + ACTIONS(736), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13182] = 1, - ACTIONS(832), 3, + [13510] = 1, + ACTIONS(740), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13188] = 1, - ACTIONS(836), 3, + [13516] = 1, + ACTIONS(744), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13194] = 1, - ACTIONS(536), 3, + [13522] = 1, + ACTIONS(748), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13200] = 3, - ACTIONS(1748), 1, - sym__block_close, - ACTIONS(1750), 1, - sym__heading_continuation, - STATE(635), 1, - aux_sym__heading_content_repeat1, - [13210] = 3, - ACTIONS(868), 1, - sym_list_marker_star, - ACTIONS(1752), 1, - sym__block_quote_continuation, - STATE(591), 1, - aux_sym__block_quote_prefix_repeat1, - [13220] = 1, - ACTIONS(840), 3, + [13528] = 1, + ACTIONS(690), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13226] = 1, - ACTIONS(1190), 3, + [13534] = 2, + ACTIONS(1802), 1, + sym__code_block_end, + ACTIONS(636), 2, sym__block_close, sym__block_quote_continuation, - aux_sym__line_token1, - [13232] = 1, - ACTIONS(848), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [13238] = 1, - ACTIONS(862), 3, + [13542] = 1, + ACTIONS(760), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13244] = 1, - ACTIONS(852), 3, + [13548] = 1, + ACTIONS(764), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13250] = 1, - ACTIONS(1755), 3, - sym__block_close, - sym_list_marker_dash, - sym__block_quote_continuation, - [13256] = 1, - ACTIONS(1757), 3, - sym__block_close, - sym_list_marker_dash, - sym__block_quote_continuation, - [13262] = 1, - ACTIONS(1380), 3, + [13554] = 1, + ACTIONS(768), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13268] = 1, - ACTIONS(1759), 3, - sym__block_close, - sym_list_marker_star, - sym__block_quote_continuation, - [13274] = 1, - ACTIONS(1761), 3, - sym__block_close, - sym_list_marker_plus, - sym__block_quote_continuation, - [13280] = 1, - ACTIONS(686), 3, + [13560] = 1, + ACTIONS(772), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13286] = 2, - ACTIONS(1765), 1, - anon_sym_SPACE, - ACTIONS(1763), 2, - anon_sym_x, - anon_sym_X, - [13294] = 1, - ACTIONS(698), 3, + [13566] = 1, + ACTIONS(776), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13300] = 1, - ACTIONS(710), 3, + [13572] = 1, + ACTIONS(780), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13306] = 1, - ACTIONS(714), 3, + [13578] = 1, + ACTIONS(784), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13312] = 1, - ACTIONS(718), 3, + [13584] = 1, + ACTIONS(788), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13318] = 1, - ACTIONS(726), 3, + [13590] = 3, + ACTIONS(1699), 1, + sym__table_cell, + ACTIONS(1804), 1, + sym__newline, + STATE(993), 1, + sym_table_cell, + [13600] = 3, + ACTIONS(1699), 1, + sym__table_cell, + ACTIONS(1806), 1, + sym__newline, + STATE(993), 1, + sym_table_cell, + [13610] = 3, + ACTIONS(1777), 1, + sym__newline_inline, + ACTIONS(1808), 1, + sym__eof_or_newline, + STATE(595), 1, + aux_sym__paragraph_inline_content_repeat1, + [13620] = 3, + ACTIONS(1699), 1, + sym__table_cell, + ACTIONS(1810), 1, + sym__newline, + STATE(993), 1, + sym_table_cell, + [13630] = 3, + ACTIONS(1699), 1, + sym__table_cell, + ACTIONS(1812), 1, + sym__newline, + STATE(993), 1, + sym_table_cell, + [13640] = 3, + ACTIONS(1777), 1, + sym__newline_inline, + ACTIONS(1808), 1, + sym__eof_or_newline, + STATE(596), 1, + aux_sym__paragraph_inline_content_repeat1, + [13650] = 1, + ACTIONS(1814), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13324] = 1, - ACTIONS(730), 3, + [13656] = 1, + ACTIONS(1816), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13330] = 1, - ACTIONS(734), 3, + [13662] = 1, + ACTIONS(792), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13336] = 1, - ACTIONS(738), 3, + [13668] = 1, + ACTIONS(796), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13342] = 1, - ACTIONS(742), 3, + [13674] = 1, + ACTIONS(800), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13348] = 1, - ACTIONS(746), 3, + [13680] = 1, + ACTIONS(664), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13354] = 1, - ACTIONS(754), 3, + [13686] = 1, + ACTIONS(804), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13360] = 1, - ACTIONS(762), 3, + [13692] = 1, + ACTIONS(808), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13366] = 1, - ACTIONS(766), 3, + [13698] = 1, + ACTIONS(812), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13372] = 1, - ACTIONS(774), 3, + [13704] = 1, + ACTIONS(538), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13378] = 2, - ACTIONS(1767), 1, - sym__eof_or_newline, - ACTIONS(610), 2, - sym__block_close, - sym__block_quote_continuation, - [13386] = 3, - ACTIONS(868), 1, - sym__list_marker_task_begin, - ACTIONS(1769), 1, - sym__block_quote_continuation, - STATE(619), 1, - aux_sym__block_quote_prefix_repeat1, - [13396] = 3, - ACTIONS(934), 1, - aux_sym__line_token1, - ACTIONS(1117), 1, - sym__block_quote_continuation, - STATE(621), 1, - aux_sym__block_quote_prefix_repeat1, - [13406] = 3, + [13710] = 3, ACTIONS(868), 1, - aux_sym__line_token1, - ACTIONS(1772), 1, + sym_list_marker_star, + ACTIONS(1818), 1, sym__block_quote_continuation, - STATE(621), 1, + STATE(642), 1, aux_sym__block_quote_prefix_repeat1, - [13416] = 3, - ACTIONS(934), 1, + [13720] = 1, + ACTIONS(820), 3, sym__list_item_continuation, - ACTIONS(1237), 1, + sym__list_item_end, sym__block_quote_continuation, - STATE(623), 1, - aux_sym__block_quote_prefix_repeat1, - [13426] = 3, - ACTIONS(868), 1, + [13726] = 1, + ACTIONS(824), 3, sym__list_item_continuation, - ACTIONS(1775), 1, - sym__block_quote_continuation, - STATE(623), 1, - aux_sym__block_quote_prefix_repeat1, - [13436] = 3, - ACTIONS(934), 1, - sym__footnote_continuation, - ACTIONS(1253), 1, - sym__block_quote_continuation, - STATE(625), 1, - aux_sym__block_quote_prefix_repeat1, - [13446] = 3, - ACTIONS(868), 1, - sym__footnote_continuation, - ACTIONS(1778), 1, - sym__block_quote_continuation, - STATE(625), 1, - aux_sym__block_quote_prefix_repeat1, - [13456] = 1, - ACTIONS(1737), 3, - sym__block_close, - sym__list_marker_task_begin, + sym__list_item_end, sym__block_quote_continuation, - [13462] = 1, - ACTIONS(1755), 3, + [13732] = 1, + ACTIONS(1821), 3, sym__block_close, - sym__list_marker_task_begin, + sym_list_marker_dash, sym__block_quote_continuation, - [13468] = 1, - ACTIONS(1781), 3, + [13738] = 1, + ACTIONS(828), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13474] = 1, - ACTIONS(1783), 3, + [13744] = 2, + ACTIONS(1823), 1, + sym__eof_or_newline, + ACTIONS(596), 2, + sym__block_close, + sym__block_quote_continuation, + [13752] = 1, + ACTIONS(814), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13480] = 1, - ACTIONS(1785), 3, + [13758] = 1, + ACTIONS(724), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13486] = 3, - ACTIONS(1744), 1, + [13764] = 3, + ACTIONS(1699), 1, sym__table_cell, - ACTIONS(1787), 1, + ACTIONS(1825), 1, sym__newline, - STATE(908), 1, + STATE(993), 1, sym_table_cell, - [13496] = 3, - ACTIONS(1744), 1, + [13774] = 3, + ACTIONS(1699), 1, sym__table_cell, - ACTIONS(1789), 1, + ACTIONS(1827), 1, sym__newline, - STATE(908), 1, + STATE(993), 1, sym_table_cell, - [13506] = 3, - ACTIONS(1744), 1, + [13784] = 2, + ACTIONS(1829), 1, + anon_sym_LBRACK, + STATE(1060), 2, + sym_checked, + sym_unchecked, + [13792] = 3, + ACTIONS(1699), 1, sym__table_cell, - ACTIONS(1791), 1, + ACTIONS(1831), 1, sym__newline, - STATE(908), 1, + STATE(993), 1, sym_table_cell, - [13516] = 3, - ACTIONS(1744), 1, + [13802] = 3, + ACTIONS(1699), 1, sym__table_cell, - ACTIONS(1793), 1, + ACTIONS(1833), 1, sym__newline, - STATE(908), 1, + STATE(993), 1, sym_table_cell, - [13526] = 3, - ACTIONS(1750), 1, - sym__heading_continuation, - ACTIONS(1795), 1, + [13812] = 1, + ACTIONS(1835), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [13818] = 3, + ACTIONS(1777), 1, + sym__newline_inline, + ACTIONS(1837), 1, + sym__eof_or_newline, + STATE(631), 1, + aux_sym__paragraph_inline_content_repeat1, + [13828] = 2, + ACTIONS(1839), 1, + sym__div_end, + ACTIONS(546), 2, sym__block_close, - STATE(557), 1, - aux_sym__heading_content_repeat1, - [13536] = 1, - ACTIONS(1797), 3, + sym__block_quote_continuation, + [13836] = 1, + ACTIONS(830), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [13842] = 2, + ACTIONS(1841), 1, + sym__code_block_end, + ACTIONS(588), 2, + sym__block_close, + sym__block_quote_continuation, + [13850] = 1, + ACTIONS(1710), 3, + sym__block_close, + sym_list_marker_plus, + sym__block_quote_continuation, + [13856] = 1, + ACTIONS(1843), 3, + sym__block_close, + sym_list_marker_plus, + sym__block_quote_continuation, + [13862] = 1, + ACTIONS(1845), 3, sym__block_quote_continuation, sym__footnote_continuation, sym__footnote_end, - [13542] = 1, - ACTIONS(1799), 3, + [13868] = 1, + ACTIONS(1847), 3, sym__block_quote_continuation, sym__footnote_continuation, sym__footnote_end, - [13548] = 3, - ACTIONS(1744), 1, - sym__table_cell, - ACTIONS(1801), 1, - sym__newline, - STATE(908), 1, - sym_table_cell, - [13558] = 3, - ACTIONS(1744), 1, - sym__table_cell, - ACTIONS(1803), 1, - sym__newline, - STATE(908), 1, - sym_table_cell, - [13568] = 3, - ACTIONS(1744), 1, - sym__table_cell, - ACTIONS(1805), 1, - sym__newline, - STATE(908), 1, - sym_table_cell, - [13578] = 3, - ACTIONS(1744), 1, - sym__table_cell, - ACTIONS(1807), 1, - sym__newline, - STATE(908), 1, - sym_table_cell, - [13588] = 3, - ACTIONS(536), 1, - sym__indented_content_spacer, - ACTIONS(965), 1, - sym__table_caption_begin, - STATE(1126), 1, - sym_table_caption, - [13598] = 2, - ACTIONS(1809), 1, - anon_sym_LBRACK, - STATE(1069), 2, - sym_checked, - sym_unchecked, - [13606] = 3, - ACTIONS(1744), 1, - sym__table_cell, - ACTIONS(1811), 1, - sym__newline, - STATE(908), 1, - sym_table_cell, - [13616] = 1, - ACTIONS(1737), 3, - sym__block_close, - sym_list_marker_star, + [13874] = 1, + ACTIONS(840), 3, + sym__list_item_continuation, + sym__list_item_end, sym__block_quote_continuation, - [13622] = 3, - ACTIONS(1744), 1, - sym__table_cell, - ACTIONS(1813), 1, - sym__newline, - STATE(908), 1, - sym_table_cell, - [13632] = 3, - ACTIONS(1744), 1, - sym__table_cell, - ACTIONS(1815), 1, - sym__newline, - STATE(908), 1, - sym_table_cell, - [13642] = 3, - ACTIONS(1744), 1, - sym__table_cell, - ACTIONS(1817), 1, - sym__newline, - STATE(908), 1, - sym_table_cell, - [13652] = 1, - ACTIONS(1819), 3, + [13880] = 1, + ACTIONS(1849), 3, sym__block_close, sym__block_quote_continuation, aux_sym__line_token1, - [13658] = 3, - ACTIONS(1744), 1, - sym__table_cell, - ACTIONS(1821), 1, - sym__newline, - STATE(908), 1, - sym_table_cell, - [13668] = 3, - ACTIONS(1744), 1, - sym__table_cell, - ACTIONS(1823), 1, - sym__newline, - STATE(908), 1, - sym_table_cell, - [13678] = 1, - ACTIONS(1755), 3, + [13886] = 1, + ACTIONS(844), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [13892] = 2, + ACTIONS(1851), 1, + sym__div_end, + ACTIONS(624), 2, sym__block_close, - sym_list_marker_star, sym__block_quote_continuation, - [13684] = 1, - ACTIONS(1825), 3, - anon_sym_PERCENT, - sym_backslash_escape, - aux_sym__comment_no_newline_token1, - [13690] = 3, - ACTIONS(934), 1, - sym_list_marker_dash, - ACTIONS(1177), 1, + [13900] = 2, + ACTIONS(1853), 1, + sym__div_end, + ACTIONS(630), 2, + sym__block_close, sym__block_quote_continuation, - STATE(661), 1, - aux_sym__block_quote_prefix_repeat1, - [13700] = 3, - ACTIONS(1715), 1, - sym__newline_inline, - ACTIONS(1827), 1, - sym__eof_or_newline, - STATE(559), 1, - aux_sym__paragraph_inline_content_repeat1, - [13710] = 3, - ACTIONS(1744), 1, - sym__table_cell, - ACTIONS(1829), 1, - sym__newline, - STATE(908), 1, - sym_table_cell, - [13720] = 3, - ACTIONS(1744), 1, - sym__table_cell, - ACTIONS(1831), 1, - sym__newline, - STATE(908), 1, - sym_table_cell, - [13730] = 3, - ACTIONS(1833), 1, - anon_sym_DQUOTE, - ACTIONS(1835), 1, - aux_sym_value_token2, - STATE(380), 1, - sym_value, - [13740] = 3, - ACTIONS(1744), 1, - sym__table_cell, - ACTIONS(1837), 1, - sym__newline, - STATE(908), 1, - sym_table_cell, - [13750] = 3, - ACTIONS(1744), 1, - sym__table_cell, - ACTIONS(1839), 1, - sym__newline, - STATE(908), 1, - sym_table_cell, - [13760] = 3, - ACTIONS(868), 1, - sym_list_marker_dash, - ACTIONS(1841), 1, + [13908] = 1, + ACTIONS(848), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [13914] = 1, + ACTIONS(852), 3, + sym__list_item_continuation, + sym__list_item_end, sym__block_quote_continuation, - STATE(661), 1, - aux_sym__block_quote_prefix_repeat1, - [13770] = 2, - ACTIONS(1844), 1, - sym__eof_or_newline, - ACTIONS(616), 2, - sym__block_close, + [13920] = 1, + ACTIONS(856), 3, + sym__list_item_continuation, + sym__list_item_end, sym__block_quote_continuation, - [13778] = 1, - ACTIONS(792), 3, + [13926] = 1, + ACTIONS(670), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13784] = 2, - ACTIONS(1846), 1, - sym__div_end, - ACTIONS(622), 2, - sym__block_close, + [13932] = 1, + ACTIONS(674), 3, + sym__list_item_continuation, + sym__list_item_end, sym__block_quote_continuation, - [13792] = 2, - ACTIONS(1848), 1, - sym__code_block_end, - ACTIONS(632), 2, - sym__block_close, + [13938] = 1, + ACTIONS(678), 3, + sym__list_item_continuation, + sym__list_item_end, sym__block_quote_continuation, - [13800] = 1, - ACTIONS(1737), 3, - sym__block_close, - sym_list_marker_plus, + [13944] = 1, + ACTIONS(682), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [13950] = 1, + ACTIONS(686), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [13956] = 1, + ACTIONS(756), 3, + sym__list_item_continuation, + sym__list_item_end, sym__block_quote_continuation, - [13806] = 1, - ACTIONS(1850), 3, + [13962] = 1, + ACTIONS(538), 2, sym__block_close, - sym__list_marker_task_begin, sym__block_quote_continuation, - [13812] = 2, - ACTIONS(1852), 1, - sym__div_end, - ACTIONS(550), 2, + [13967] = 1, + ACTIONS(670), 2, sym__block_close, sym__block_quote_continuation, - [13820] = 2, - ACTIONS(1854), 1, - sym__div_end, - ACTIONS(556), 2, + [13972] = 1, + ACTIONS(674), 2, sym__block_close, sym__block_quote_continuation, - [13828] = 2, - ACTIONS(1856), 1, - sym__code_block_end, - ACTIONS(562), 2, + [13977] = 1, + ACTIONS(678), 2, sym__block_close, sym__block_quote_continuation, - [13836] = 2, - ACTIONS(1858), 1, - sym__code_block_end, - ACTIONS(568), 2, + [13982] = 1, + ACTIONS(682), 2, sym__block_close, sym__block_quote_continuation, - [13844] = 2, - ACTIONS(1860), 1, - sym__code_block_end, - ACTIONS(574), 2, + [13987] = 1, + ACTIONS(686), 2, sym__block_close, sym__block_quote_continuation, - [13852] = 1, - ACTIONS(1755), 3, + [13992] = 1, + ACTIONS(690), 2, sym__block_close, - sym_list_marker_plus, sym__block_quote_continuation, - [13858] = 1, - ACTIONS(1862), 3, + [13997] = 1, + ACTIONS(694), 2, sym__block_close, - sym_list_marker_dash, sym__block_quote_continuation, - [13864] = 2, - ACTIONS(1864), 1, - sym__div_end, - ACTIONS(592), 2, + [14002] = 1, + ACTIONS(698), 2, sym__block_close, sym__block_quote_continuation, - [13872] = 2, - ACTIONS(1866), 1, - sym__code_block_end, - ACTIONS(598), 2, + [14007] = 1, + ACTIONS(702), 2, sym__block_close, sym__block_quote_continuation, - [13880] = 2, - ACTIONS(1868), 1, - sym__code_block_end, - ACTIONS(604), 2, + [14012] = 1, + ACTIONS(710), 2, sym__block_close, sym__block_quote_continuation, - [13888] = 3, - ACTIONS(934), 1, + [14017] = 1, + ACTIONS(462), 2, + sym_list_marker_plus, + sym__block_quote_continuation, + [14022] = 1, + ACTIONS(462), 2, sym__list_marker_task_begin, - ACTIONS(1111), 1, sym__block_quote_continuation, - STATE(619), 1, - aux_sym__block_quote_prefix_repeat1, - [13898] = 1, - ACTIONS(1870), 2, - sym__eof_or_newline, - sym__close_paragraph, - [13903] = 1, - ACTIONS(1737), 2, + [14027] = 1, + ACTIONS(1710), 2, sym__block_close, - sym_list_marker_lower_alpha_paren, - [13908] = 1, - ACTIONS(1755), 2, + sym_list_marker_upper_alpha_period, + [14032] = 1, + ACTIONS(1712), 2, sym__block_close, - sym_list_marker_lower_alpha_paren, - [13913] = 1, - ACTIONS(1872), 2, + sym_list_marker_upper_alpha_period, + [14037] = 1, + ACTIONS(1376), 2, sym__block_close, - sym_list_marker_lower_alpha_period, - [13918] = 1, - ACTIONS(460), 2, - sym_list_marker_plus, sym__block_quote_continuation, - [13923] = 1, - ACTIONS(1874), 2, + [14042] = 1, + ACTIONS(1710), 2, + sym__block_close, + sym_list_marker_lower_roman_period, + [14047] = 1, + ACTIONS(1712), 2, + sym__block_close, + sym_list_marker_lower_roman_period, + [14052] = 1, + ACTIONS(1710), 2, + sym__block_close, + sym_list_marker_upper_roman_period, + [14057] = 1, + ACTIONS(1712), 2, + sym__block_close, + sym_list_marker_upper_roman_period, + [14062] = 1, + ACTIONS(462), 2, + sym__block_quote_continuation, + aux_sym__line_token1, + [14067] = 2, + ACTIONS(1855), 1, + anon_sym_PIPE, + STATE(699), 1, + aux_sym_table_header_repeat1, + [14074] = 1, + ACTIONS(1710), 2, + sym__block_close, + sym_list_marker_decimal_paren, + [14079] = 1, + ACTIONS(1712), 2, + sym__block_close, + sym_list_marker_decimal_paren, + [14084] = 1, + ACTIONS(462), 2, + sym__list_item_continuation, + sym__block_quote_continuation, + [14089] = 1, + ACTIONS(1710), 2, sym__block_close, sym_list_marker_lower_alpha_paren, - [13928] = 1, - ACTIONS(1737), 2, + [14094] = 1, + ACTIONS(1712), 2, + sym__block_close, + sym_list_marker_lower_alpha_paren, + [14099] = 2, + ACTIONS(1858), 1, + anon_sym_PIPE, + STATE(730), 1, + aux_sym_table_header_repeat1, + [14106] = 1, + ACTIONS(1710), 2, sym__block_close, sym_list_marker_upper_alpha_paren, - [13933] = 1, - ACTIONS(1755), 2, + [14111] = 1, + ACTIONS(1712), 2, sym__block_close, sym_list_marker_upper_alpha_paren, - [13938] = 1, - ACTIONS(460), 2, + [14116] = 1, + ACTIONS(462), 2, sym__block_quote_continuation, sym__footnote_continuation, - [13943] = 1, - ACTIONS(1876), 2, - sym__block_close, - sym_list_marker_lower_alpha_parens, - [13948] = 2, - ACTIONS(29), 1, - sym__list_marker_task_begin, - STATE(30), 1, - sym_list_marker_task, - [13955] = 1, - ACTIONS(1737), 2, + [14121] = 1, + ACTIONS(1710), 2, sym__block_close, sym_list_marker_lower_roman_paren, - [13960] = 1, - ACTIONS(1755), 2, + [14126] = 1, + ACTIONS(1712), 2, sym__block_close, sym_list_marker_lower_roman_paren, - [13965] = 1, - ACTIONS(1737), 2, + [14131] = 1, + ACTIONS(1710), 2, sym__block_close, sym_list_marker_upper_roman_paren, - [13970] = 1, - ACTIONS(1755), 2, + [14136] = 1, + ACTIONS(1712), 2, sym__block_close, sym_list_marker_upper_roman_paren, - [13975] = 1, - ACTIONS(1737), 2, + [14141] = 1, + ACTIONS(1710), 2, sym__block_close, sym_list_marker_decimal_parens, - [13980] = 1, - ACTIONS(1755), 2, + [14146] = 1, + ACTIONS(1712), 2, sym__block_close, sym_list_marker_decimal_parens, - [13985] = 1, - ACTIONS(1737), 2, + [14151] = 1, + ACTIONS(1710), 2, sym__block_close, sym_list_marker_lower_alpha_parens, - [13990] = 1, - ACTIONS(1755), 2, + [14156] = 1, + ACTIONS(1712), 2, sym__block_close, sym_list_marker_lower_alpha_parens, - [13995] = 1, - ACTIONS(1737), 2, + [14161] = 1, + ACTIONS(1710), 2, sym__block_close, sym_list_marker_upper_alpha_parens, - [14000] = 1, - ACTIONS(1755), 2, + [14166] = 1, + ACTIONS(1712), 2, sym__block_close, sym_list_marker_upper_alpha_parens, - [14005] = 1, - ACTIONS(1737), 2, + [14171] = 1, + ACTIONS(1710), 2, sym__block_close, sym_list_marker_lower_roman_parens, - [14010] = 1, - ACTIONS(1755), 2, - sym__block_close, - sym_list_marker_lower_roman_parens, - [14015] = 1, - ACTIONS(1737), 2, - sym__block_close, - sym_list_marker_upper_roman_parens, - [14020] = 1, - ACTIONS(1755), 2, - sym__block_close, - sym_list_marker_upper_roman_parens, - [14025] = 1, - ACTIONS(1878), 2, - sym__block_close, - sym_list_marker_upper_alpha_period, - [14030] = 1, - ACTIONS(1880), 2, - sym__block_close, - sym_list_marker_upper_alpha_paren, - [14035] = 1, - ACTIONS(1882), 2, - sym__block_close, - sym_list_marker_upper_alpha_period, - [14040] = 1, - ACTIONS(1884), 2, - sym__eof_or_newline, - sym__close_paragraph, - [14045] = 1, - ACTIONS(1886), 2, - sym__block_close, - sym_list_marker_lower_roman_period, - [14050] = 1, - ACTIONS(1888), 2, - sym__block_close, - sym_list_marker_upper_roman_period, - [14055] = 1, - ACTIONS(1890), 2, - sym__block_close, - sym_list_marker_decimal_paren, - [14060] = 1, - ACTIONS(1892), 2, - sym__block_close, - sym_list_marker_upper_alpha_parens, - [14065] = 1, - ACTIONS(1894), 2, - sym__block_close, - sym_list_marker_lower_roman_period, - [14070] = 1, - ACTIONS(1896), 2, - sym__block_close, - sym_list_marker_lower_alpha_paren, - [14075] = 1, - ACTIONS(1898), 2, - sym__block_close, - sym_list_marker_upper_alpha_paren, - [14080] = 1, - ACTIONS(1900), 2, - sym__block_close, - sym_list_marker_lower_roman_paren, - [14085] = 1, - ACTIONS(1902), 2, - sym__block_close, - sym_list_marker_upper_roman_paren, - [14090] = 1, - ACTIONS(1904), 2, - sym__block_close, - sym_list_marker_decimal_parens, - [14095] = 1, - ACTIONS(1906), 2, - sym__block_close, - sym_list_marker_lower_alpha_parens, - [14100] = 1, - ACTIONS(1908), 2, - sym__block_close, - sym_list_marker_upper_alpha_parens, - [14105] = 1, - ACTIONS(1910), 2, - sym__footnote_mark_begin, - sym__in_fallback, - [14110] = 1, - ACTIONS(1912), 2, + [14176] = 1, + ACTIONS(1712), 2, sym__block_close, sym_list_marker_lower_roman_parens, - [14115] = 2, - ACTIONS(1914), 1, - sym__id, - STATE(991), 1, - sym_class_name, - [14122] = 2, - ACTIONS(1916), 1, - sym__eof_or_newline, - STATE(132), 1, - sym__one_or_two_newlines, - [14129] = 1, - ACTIONS(1918), 2, + [14181] = 1, + ACTIONS(1710), 2, sym__block_close, sym_list_marker_upper_roman_parens, - [14134] = 1, - ACTIONS(1920), 2, + [14186] = 1, + ACTIONS(1712), 2, sym__block_close, sym_list_marker_upper_roman_parens, - [14139] = 1, - ACTIONS(1922), 2, - sym__block_close, - sym_list_marker_lower_roman_paren, - [14144] = 2, - ACTIONS(1924), 1, + [14191] = 2, + ACTIONS(1860), 1, sym_table_cell_alignment, - ACTIONS(1926), 1, + ACTIONS(1862), 1, sym__newline, - [14151] = 1, - ACTIONS(1928), 2, - sym__block_close, - sym_list_marker_lower_roman_parens, - [14156] = 2, - ACTIONS(1930), 1, + [14198] = 1, + ACTIONS(1864), 2, + sym__eof_or_newline, + sym__close_paragraph, + [14203] = 2, + ACTIONS(1866), 1, anon_sym_PIPE, - STATE(756), 1, - aux_sym_table_header_repeat1, - [14163] = 2, - ACTIONS(1932), 1, + STATE(725), 1, + aux_sym_table_separator_repeat1, + [14210] = 2, + ACTIONS(1869), 1, anon_sym_PIPE, - STATE(758), 1, + STATE(732), 1, aux_sym_table_separator_repeat1, - [14170] = 2, - ACTIONS(1934), 1, + [14217] = 2, + ACTIONS(1871), 1, anon_sym_PIPE, - STATE(763), 1, + STATE(733), 1, aux_sym_table_header_repeat1, - [14177] = 1, - ACTIONS(1737), 2, - sym__block_close, - sym_list_marker_lower_alpha_period, - [14182] = 2, - ACTIONS(1924), 1, - sym_table_cell_alignment, - ACTIONS(1936), 1, - sym__newline, - [14189] = 1, - ACTIONS(1938), 2, - sym__block_close, - sym_list_marker_upper_roman_period, - [14194] = 1, - ACTIONS(1107), 2, - sym__block_close, - sym__heading_continuation, - [14199] = 2, - ACTIONS(1940), 1, - sym__eof_or_newline, - STATE(945), 1, - sym__one_or_two_newlines, - [14206] = 2, - ACTIONS(1942), 1, - sym_language, - ACTIONS(1944), 1, - sym__newline, - [14213] = 1, - ACTIONS(754), 2, - sym__block_close, - sym__block_quote_continuation, - [14218] = 1, - ACTIONS(1946), 2, - sym__eof_or_newline, - sym__close_paragraph, - [14223] = 1, - ACTIONS(1948), 2, - sym__eof_or_newline, - sym__newline_inline, - [14228] = 2, - ACTIONS(1950), 1, + [14224] = 2, + ACTIONS(1873), 1, sym__id, - STATE(367), 1, + STATE(994), 1, sym_class_name, - [14235] = 1, - ACTIONS(1952), 2, - sym__footnote_mark_begin, - sym__in_fallback, - [14240] = 1, - ACTIONS(1954), 2, - sym__footnote_mark_begin, - sym__in_fallback, - [14245] = 2, - ACTIONS(1924), 1, - sym_table_cell_alignment, - ACTIONS(1956), 1, - sym__newline, - [14252] = 1, - ACTIONS(1819), 2, - sym_frontmatter_marker, - aux_sym__line_token1, - [14257] = 1, - ACTIONS(1755), 2, - sym__block_close, - sym_list_marker_lower_alpha_period, - [14262] = 2, - ACTIONS(1924), 1, - sym_table_cell_alignment, - ACTIONS(1958), 1, - sym__newline, - [14269] = 1, - ACTIONS(460), 2, - sym_list_marker_star, - sym__block_quote_continuation, - [14274] = 2, - ACTIONS(1960), 1, - sym__eof_or_newline, - STATE(738), 1, - sym__one_or_two_newlines, - [14281] = 1, - ACTIONS(1962), 2, - sym__eof_or_newline, - sym__close_paragraph, - [14286] = 1, - ACTIONS(1964), 2, - sym__block_close, - sym_list_marker_definition, - [14291] = 1, - ACTIONS(1966), 2, - sym__eof_or_newline, - sym__close_paragraph, - [14296] = 1, - ACTIONS(1968), 2, - sym__eof_or_newline, - sym__close_paragraph, - [14301] = 2, - ACTIONS(616), 1, + [14231] = 2, + ACTIONS(578), 1, sym__indented_content_spacer, - ACTIONS(1970), 1, + ACTIONS(1875), 1, sym__eof_or_newline, - [14308] = 2, - ACTIONS(1113), 1, - aux_sym__line_token1, - STATE(593), 1, - sym__line, - [14315] = 2, - ACTIONS(1972), 1, + [14238] = 2, + ACTIONS(1877), 1, anon_sym_PIPE, - STATE(800), 1, + STATE(699), 1, aux_sym_table_header_repeat1, - [14322] = 2, - ACTIONS(1924), 1, + [14245] = 2, + ACTIONS(1860), 1, sym_table_cell_alignment, - ACTIONS(1974), 1, + ACTIONS(1879), 1, sym__newline, - [14329] = 2, - ACTIONS(1976), 1, + [14252] = 2, + ACTIONS(1881), 1, anon_sym_PIPE, - STATE(879), 1, + STATE(725), 1, aux_sym_table_separator_repeat1, - [14336] = 2, - ACTIONS(622), 1, - sym__indented_content_spacer, - ACTIONS(1978), 1, - sym__div_end, - [14343] = 2, - ACTIONS(632), 1, - sym__indented_content_spacer, - ACTIONS(1980), 1, - sym__code_block_end, - [14350] = 2, - ACTIONS(1744), 1, - sym__table_cell, - STATE(729), 1, - sym_table_cell, - [14357] = 1, - ACTIONS(766), 2, - sym__block_close, - sym__block_quote_continuation, - [14362] = 2, - ACTIONS(1982), 1, + [14259] = 2, + ACTIONS(1883), 1, anon_sym_PIPE, - STATE(800), 1, + STATE(699), 1, aux_sym_table_header_repeat1, - [14369] = 2, - ACTIONS(550), 1, - sym__indented_content_spacer, - ACTIONS(1984), 1, - sym__div_end, - [14376] = 2, - ACTIONS(1744), 1, + [14266] = 1, + ACTIONS(462), 2, + sym_list_marker_dash, + sym__block_quote_continuation, + [14271] = 1, + ACTIONS(706), 2, + sym__block_close, + sym__block_quote_continuation, + [14276] = 1, + ACTIONS(732), 2, + sym__block_close, + sym__block_quote_continuation, + [14281] = 1, + ACTIONS(1885), 2, + sym__footnote_mark_begin, + sym__in_fallback, + [14286] = 2, + ACTIONS(1699), 1, sym__table_cell, - STATE(908), 1, + STATE(705), 1, sym_table_cell, - [14383] = 2, - ACTIONS(1924), 1, + [14293] = 2, + ACTIONS(1887), 1, + sym__id, + STATE(358), 1, + sym_class_name, + [14300] = 1, + ACTIONS(1889), 2, + sym__block_close, + sym_list_marker_definition, + [14305] = 2, + ACTIONS(1860), 1, sym_table_cell_alignment, - ACTIONS(1986), 1, + ACTIONS(1891), 1, sym__newline, - [14390] = 2, - ACTIONS(1744), 1, - sym__table_cell, - STATE(731), 1, - sym_table_cell, - [14397] = 2, - ACTIONS(556), 1, + [14312] = 2, + ACTIONS(624), 1, sym__indented_content_spacer, - ACTIONS(1988), 1, + ACTIONS(1893), 1, sym__div_end, - [14404] = 1, - ACTIONS(1990), 2, + [14319] = 1, + ACTIONS(1895), 2, sym__block_close, - sym_list_marker_definition, - [14409] = 2, - ACTIONS(562), 1, - sym__indented_content_spacer, - ACTIONS(1992), 1, - sym__code_block_end, - [14416] = 2, - ACTIONS(568), 1, - sym__indented_content_spacer, - ACTIONS(1994), 1, - sym__code_block_end, - [14423] = 2, - ACTIONS(574), 1, - sym__indented_content_spacer, - ACTIONS(1996), 1, - sym__code_block_end, - [14430] = 1, - ACTIONS(1998), 2, + sym_list_marker_decimal_period, + [14324] = 2, + ACTIONS(1860), 1, + sym_table_cell_alignment, + ACTIONS(1897), 1, + sym__newline, + [14331] = 1, + ACTIONS(1899), 2, + sym__eof_or_newline, + sym__close_paragraph, + [14336] = 1, + ACTIONS(1901), 2, + sym__eof_or_newline, + sym__newline_inline, + [14341] = 2, + ACTIONS(1903), 1, + sym__eof_or_newline, + STATE(896), 1, + sym__one_or_two_newlines, + [14348] = 1, + ACTIONS(1905), 2, + sym__block_close, + sym_list_marker_decimal_paren, + [14353] = 1, + ACTIONS(1849), 2, + sym_frontmatter_marker, + aux_sym__line_token1, + [14358] = 1, + ACTIONS(1907), 2, sym__eof_or_newline, sym__close_paragraph, - [14435] = 2, - ACTIONS(1924), 1, - sym_table_cell_alignment, - ACTIONS(2000), 1, - sym__newline, - [14442] = 1, - ACTIONS(774), 2, + [14363] = 1, + ACTIONS(736), 2, + sym__block_close, + sym__block_quote_continuation, + [14368] = 1, + ACTIONS(740), 2, sym__block_close, sym__block_quote_continuation, - [14447] = 1, - ACTIONS(2002), 2, + [14373] = 1, + ACTIONS(1710), 2, sym__block_close, sym_list_marker_decimal_period, - [14452] = 2, - ACTIONS(2004), 1, - sym__eof_or_newline, - STATE(193), 1, - sym__one_or_two_newlines, - [14459] = 1, - ACTIONS(2006), 2, - sym__eof_or_newline, - sym__close_paragraph, - [14464] = 1, - ACTIONS(2008), 2, + [14378] = 1, + ACTIONS(1909), 2, sym__eof_or_newline, sym__close_paragraph, - [14469] = 2, - ACTIONS(592), 1, - sym__indented_content_spacer, - ACTIONS(2010), 1, - sym__div_end, - [14476] = 2, - ACTIONS(598), 1, - sym__indented_content_spacer, - ACTIONS(2012), 1, - sym__code_block_end, - [14483] = 2, - ACTIONS(604), 1, - sym__indented_content_spacer, - ACTIONS(2014), 1, - sym__code_block_end, - [14490] = 2, - ACTIONS(610), 1, - sym__indented_content_spacer, - ACTIONS(2016), 1, - sym__eof_or_newline, - [14497] = 1, - ACTIONS(460), 2, - sym_list_marker_dash, + [14383] = 1, + ACTIONS(1911), 2, + sym__block_close, + sym_list_marker_decimal_period, + [14388] = 1, + ACTIONS(1913), 2, + sym__block_close, + sym_list_marker_lower_alpha_period, + [14393] = 1, + ACTIONS(1915), 2, + sym__block_close, + sym_list_marker_upper_alpha_period, + [14398] = 1, + ACTIONS(744), 2, + sym__block_close, sym__block_quote_continuation, - [14502] = 1, - ACTIONS(800), 2, + [14403] = 1, + ACTIONS(748), 2, sym__block_close, sym__block_quote_continuation, - [14507] = 1, - ACTIONS(804), 2, + [14408] = 1, + ACTIONS(752), 2, sym__block_close, sym__block_quote_continuation, - [14512] = 1, - ACTIONS(2018), 2, + [14413] = 1, + ACTIONS(756), 2, sym__block_close, - sym_list_marker_definition, - [14517] = 1, - ACTIONS(1717), 2, + sym__block_quote_continuation, + [14418] = 1, + ACTIONS(1712), 2, + sym__block_close, + sym_list_marker_decimal_period, + [14423] = 1, + ACTIONS(1917), 2, + sym__eof_or_newline, + sym__close_paragraph, + [14428] = 1, + ACTIONS(760), 2, + sym__block_close, + sym__block_quote_continuation, + [14433] = 1, + ACTIONS(1919), 2, + sym__block_close, + sym_list_marker_lower_roman_period, + [14438] = 1, + ACTIONS(1921), 2, + sym__footnote_mark_begin, + sym__in_fallback, + [14443] = 1, + ACTIONS(1779), 2, sym__eof_or_newline, sym__newline_inline, - [14522] = 1, - ACTIONS(1737), 2, + [14448] = 1, + ACTIONS(1923), 2, sym__block_close, - sym_list_marker_decimal_period, - [14527] = 1, - ACTIONS(2020), 2, + sym_list_marker_decimal_parens, + [14453] = 1, + ACTIONS(1925), 2, + sym__block_close, + sym_list_marker_lower_alpha_period, + [14458] = 1, + ACTIONS(764), 2, + sym__block_close, + sym__block_quote_continuation, + [14463] = 2, + ACTIONS(1860), 1, + sym_table_cell_alignment, + ACTIONS(1927), 1, + sym__newline, + [14470] = 1, + ACTIONS(1929), 2, + sym__block_close, + sym_list_marker_upper_roman_period, + [14475] = 1, + ACTIONS(1931), 2, + sym__block_close, + sym_list_marker_lower_alpha_paren, + [14480] = 1, + ACTIONS(1933), 2, + sym__block_close, + sym_list_marker_lower_alpha_parens, + [14485] = 1, + ACTIONS(1935), 2, sym__block_close, sym_list_marker_decimal_paren, - [14532] = 2, - ACTIONS(1924), 1, + [14490] = 1, + ACTIONS(1937), 2, + sym__block_close, + sym_list_marker_lower_alpha_paren, + [14495] = 2, + ACTIONS(1860), 1, sym_table_cell_alignment, - ACTIONS(2022), 1, + ACTIONS(1939), 1, sym__newline, - [14539] = 1, - ACTIONS(1387), 2, + [14502] = 1, + ACTIONS(768), 2, sym__block_close, sym__block_quote_continuation, - [14544] = 1, - ACTIONS(2024), 2, + [14507] = 2, + ACTIONS(1941), 1, + sym__id, + STATE(926), 1, + sym_reference_label, + [14514] = 2, + ACTIONS(1943), 1, + sym__eof_or_newline, + STATE(685), 1, + sym__one_or_two_newlines, + [14521] = 1, + ACTIONS(1945), 2, sym__block_close, - sym_list_marker_decimal_parens, - [14549] = 1, - ACTIONS(816), 2, + sym_list_marker_definition, + [14526] = 1, + ACTIONS(1947), 2, sym__block_close, - sym__block_quote_continuation, - [14554] = 1, - ACTIONS(762), 2, + sym_list_marker_upper_alpha_period, + [14531] = 1, + ACTIONS(1949), 2, sym__block_close, - sym__block_quote_continuation, - [14559] = 1, - ACTIONS(824), 2, + sym_list_marker_upper_alpha_paren, + [14536] = 1, + ACTIONS(1951), 2, + sym__eof_or_newline, + sym__close_paragraph, + [14541] = 2, + ACTIONS(1699), 1, + sym__table_cell, + STATE(993), 1, + sym_table_cell, + [14548] = 1, + ACTIONS(1953), 2, sym__block_close, - sym__block_quote_continuation, - [14564] = 1, - ACTIONS(828), 2, + sym_list_marker_upper_alpha_parens, + [14553] = 1, + ACTIONS(1955), 2, + sym__block_close, + sym_list_marker_lower_roman_period, + [14558] = 1, + ACTIONS(772), 2, sym__block_close, sym__block_quote_continuation, - [14569] = 1, - ACTIONS(1730), 2, + [14563] = 1, + ACTIONS(1957), 2, + sym__block_close, + sym_list_marker_upper_alpha_paren, + [14568] = 1, + ACTIONS(1787), 2, sym__block_close, sym__heading_continuation, - [14574] = 2, - ACTIONS(1924), 1, - sym_table_cell_alignment, - ACTIONS(2026), 1, - sym__newline, - [14581] = 2, - ACTIONS(2028), 1, - anon_sym_PIPE, - STATE(800), 1, - aux_sym_table_header_repeat1, - [14588] = 1, - ACTIONS(666), 2, + [14573] = 1, + ACTIONS(776), 2, sym__block_close, sym__block_quote_continuation, - [14593] = 1, - ACTIONS(670), 2, + [14578] = 1, + ACTIONS(1959), 2, + sym__block_close, + sym_list_marker_lower_roman_paren, + [14583] = 2, + ACTIONS(1102), 1, + aux_sym__line_token1, + STATE(602), 1, + sym__line, + [14590] = 1, + ACTIONS(856), 2, sym__block_close, sym__block_quote_continuation, - [14598] = 2, - ACTIONS(2031), 1, - sym__eof_or_newline, - STATE(614), 1, - sym__one_or_two_newlines, - [14605] = 1, - ACTIONS(674), 2, + [14595] = 1, + ACTIONS(1961), 2, sym__block_close, + sym_list_marker_decimal_parens, + [14600] = 1, + ACTIONS(1963), 2, + sym__block_close, + sym_list_marker_lower_alpha_parens, + [14605] = 1, + ACTIONS(462), 2, + sym_list_marker_star, sym__block_quote_continuation, [14610] = 1, - ACTIONS(678), 2, + ACTIONS(780), 2, sym__block_close, sym__block_quote_continuation, [14615] = 1, - ACTIONS(682), 2, + ACTIONS(784), 2, sym__block_close, sym__block_quote_continuation, [14620] = 1, - ACTIONS(690), 2, + ACTIONS(1965), 2, sym__block_close, - sym__block_quote_continuation, + sym_list_marker_upper_alpha_parens, [14625] = 1, - ACTIONS(702), 2, + ACTIONS(788), 2, sym__block_close, sym__block_quote_continuation, [14630] = 1, - ACTIONS(706), 2, + ACTIONS(1967), 2, sym__block_close, - sym__block_quote_continuation, + sym_list_marker_lower_roman_paren, [14635] = 1, - ACTIONS(750), 2, + ACTIONS(1969), 2, sym__block_close, - sym__block_quote_continuation, + sym_list_marker_lower_roman_parens, [14640] = 1, - ACTIONS(758), 2, + ACTIONS(792), 2, sym__block_close, sym__block_quote_continuation, - [14645] = 1, - ACTIONS(770), 2, + [14645] = 2, + ACTIONS(1860), 1, + sym_table_cell_alignment, + ACTIONS(1971), 1, + sym__newline, + [14652] = 1, + ACTIONS(796), 2, + sym__block_close, + sym__block_quote_continuation, + [14657] = 1, + ACTIONS(800), 2, sym__block_close, sym__block_quote_continuation, - [14650] = 1, - ACTIONS(778), 2, + [14662] = 1, + ACTIONS(1973), 2, + sym__block_close, + sym_list_marker_upper_roman_period, + [14667] = 1, + ACTIONS(1975), 2, + sym__eof_or_newline, + sym__close_paragraph, + [14672] = 1, + ACTIONS(664), 2, sym__block_close, sym__block_quote_continuation, - [14655] = 1, - ACTIONS(786), 2, + [14677] = 2, + ACTIONS(1860), 1, + sym_table_cell_alignment, + ACTIONS(1977), 1, + sym__newline, + [14684] = 1, + ACTIONS(804), 2, sym__block_close, sym__block_quote_continuation, - [14660] = 1, - ACTIONS(806), 2, + [14689] = 2, + ACTIONS(1979), 1, + sym__eof_or_newline, + STATE(183), 1, + sym__one_or_two_newlines, + [14696] = 1, + ACTIONS(1981), 2, + sym__block_close, + sym_list_marker_upper_roman_paren, + [14701] = 1, + ACTIONS(808), 2, sym__block_close, sym__block_quote_continuation, - [14665] = 1, - ACTIONS(810), 2, + [14706] = 1, + ACTIONS(1983), 2, + sym__eof_or_newline, + sym__close_paragraph, + [14711] = 1, + ACTIONS(812), 2, sym__block_close, sym__block_quote_continuation, - [14670] = 1, - ACTIONS(832), 2, + [14716] = 2, + ACTIONS(630), 1, + sym__indented_content_spacer, + ACTIONS(1985), 1, + sym__div_end, + [14723] = 1, + ACTIONS(1987), 2, + sym__block_close, + sym_list_marker_upper_roman_parens, + [14728] = 2, + ACTIONS(546), 1, + sym__indented_content_spacer, + ACTIONS(1989), 1, + sym__div_end, + [14735] = 2, + ACTIONS(636), 1, + sym__indented_content_spacer, + ACTIONS(1991), 1, + sym__code_block_end, + [14742] = 2, + ACTIONS(642), 1, + sym__indented_content_spacer, + ACTIONS(1993), 1, + sym__code_block_end, + [14749] = 2, + ACTIONS(608), 1, + sym__indented_content_spacer, + ACTIONS(1995), 1, + sym__code_block_end, + [14756] = 1, + ACTIONS(820), 2, sym__block_close, sym__block_quote_continuation, - [14675] = 1, - ACTIONS(836), 2, + [14761] = 1, + ACTIONS(824), 2, sym__block_close, sym__block_quote_continuation, - [14680] = 2, - ACTIONS(1910), 1, - sym__in_fallback, - ACTIONS(2033), 1, - sym__footnote_mark_begin, - [14687] = 1, - ACTIONS(536), 2, + [14766] = 1, + ACTIONS(828), 2, sym__block_close, sym__block_quote_continuation, - [14692] = 1, - ACTIONS(460), 2, - sym__list_marker_task_begin, + [14771] = 1, + ACTIONS(864), 2, + sym__block_close, sym__block_quote_continuation, - [14697] = 1, - ACTIONS(2036), 2, + [14776] = 2, + ACTIONS(588), 1, + sym__indented_content_spacer, + ACTIONS(1997), 1, + sym__code_block_end, + [14783] = 2, + ACTIONS(596), 1, + sym__indented_content_spacer, + ACTIONS(1999), 1, + sym__eof_or_newline, + [14790] = 2, + ACTIONS(2001), 1, + sym_language, + ACTIONS(2003), 1, + sym__newline, + [14797] = 1, + ACTIONS(2005), 2, sym__block_close, - sym_list_marker_lower_alpha_period, - [14702] = 2, - ACTIONS(1924), 1, + sym_list_marker_lower_roman_parens, + [14802] = 2, + ACTIONS(1860), 1, sym_table_cell_alignment, - ACTIONS(2038), 1, + ACTIONS(2007), 1, sym__newline, - [14709] = 1, - ACTIONS(840), 2, + [14809] = 1, + ACTIONS(814), 2, sym__block_close, sym__block_quote_continuation, - [14714] = 1, - ACTIONS(844), 2, + [14814] = 1, + ACTIONS(2009), 2, + sym__eof_or_newline, + sym__close_paragraph, + [14819] = 2, + ACTIONS(542), 1, + sym__indented_content_spacer, + ACTIONS(2011), 1, + sym__div_end, + [14826] = 2, + ACTIONS(1860), 1, + sym_table_cell_alignment, + ACTIONS(2013), 1, + sym__newline, + [14833] = 1, + ACTIONS(2015), 2, + sym__eof_or_newline, + sym__close_paragraph, + [14838] = 2, + ACTIONS(2017), 1, + sym__eof_or_newline, + STATE(546), 1, + sym__one_or_two_newlines, + [14845] = 1, + ACTIONS(830), 2, sym__block_close, sym__block_quote_continuation, - [14719] = 1, - ACTIONS(1737), 2, + [14850] = 2, + ACTIONS(2019), 1, + sym__eof_or_newline, + STATE(118), 1, + sym__one_or_two_newlines, + [14857] = 2, + ACTIONS(566), 1, + sym__indented_content_spacer, + ACTIONS(2021), 1, + sym__code_block_end, + [14864] = 2, + ACTIONS(27), 1, + sym__list_marker_task_begin, + STATE(28), 1, + sym_list_marker_task, + [14871] = 2, + ACTIONS(1885), 1, + sym__in_fallback, + ACTIONS(2023), 1, + sym__footnote_mark_begin, + [14878] = 1, + ACTIONS(1710), 2, sym__block_close, - sym_list_marker_upper_alpha_period, - [14724] = 1, - ACTIONS(848), 2, + sym_list_marker_lower_alpha_period, + [14883] = 2, + ACTIONS(2026), 1, + sym__whitespace1, + ACTIONS(2028), 1, + sym__newline, + [14890] = 1, + ACTIONS(2030), 2, sym__block_close, - sym__block_quote_continuation, - [14729] = 1, - ACTIONS(860), 2, + sym_list_marker_upper_roman_parens, + [14895] = 2, + ACTIONS(572), 1, + sym__indented_content_spacer, + ACTIONS(2032), 1, + sym__code_block_end, + [14902] = 1, + ACTIONS(2034), 2, + sym__footnote_mark_begin, + sym__in_fallback, + [14907] = 1, + ACTIONS(1083), 2, sym__block_close, - sym__block_quote_continuation, - [14734] = 1, - ACTIONS(1755), 2, + sym__heading_continuation, + [14912] = 1, + ACTIONS(840), 2, sym__block_close, - sym_list_marker_upper_alpha_period, - [14739] = 1, - ACTIONS(2040), 2, + sym__block_quote_continuation, + [14917] = 1, + ACTIONS(1712), 2, sym__block_close, - sym_list_marker_upper_roman_paren, - [14744] = 1, - ACTIONS(1737), 2, + sym_list_marker_lower_alpha_period, + [14922] = 1, + ACTIONS(2036), 2, sym__block_close, - sym_list_marker_lower_roman_period, - [14749] = 1, - ACTIONS(862), 2, + sym_list_marker_definition, + [14927] = 2, + ACTIONS(1699), 1, + sym__table_cell, + STATE(727), 1, + sym_table_cell, + [14934] = 1, + ACTIONS(844), 2, sym__block_close, sym__block_quote_continuation, - [14754] = 1, - ACTIONS(1755), 2, - sym__block_close, - sym_list_marker_lower_roman_period, - [14759] = 2, - ACTIONS(2042), 1, + [14939] = 2, + ACTIONS(2038), 1, anon_sym_PIPE, - STATE(839), 1, + STATE(858), 1, aux_sym_table_header_repeat1, - [14766] = 2, - ACTIONS(2044), 1, + [14946] = 2, + ACTIONS(2040), 1, anon_sym_PIPE, - STATE(840), 1, + STATE(859), 1, aux_sym_table_separator_repeat1, - [14773] = 2, - ACTIONS(2046), 1, + [14953] = 2, + ACTIONS(2042), 1, anon_sym_PIPE, - STATE(841), 1, + STATE(860), 1, aux_sym_table_header_repeat1, - [14780] = 1, - ACTIONS(2048), 2, - sym__eof_or_newline, - sym__close_paragraph, - [14785] = 1, - ACTIONS(852), 2, - sym__block_close, - sym__block_quote_continuation, - [14790] = 2, - ACTIONS(2050), 1, + [14960] = 2, + ACTIONS(2044), 1, anon_sym_PIPE, - STATE(800), 1, + STATE(699), 1, aux_sym_table_header_repeat1, - [14797] = 2, - ACTIONS(2052), 1, + [14967] = 2, + ACTIONS(2046), 1, anon_sym_PIPE, - STATE(879), 1, + STATE(725), 1, aux_sym_table_separator_repeat1, - [14804] = 2, - ACTIONS(2054), 1, - anon_sym_PIPE, - STATE(800), 1, - aux_sym_table_header_repeat1, - [14811] = 1, - ACTIONS(2056), 2, - sym__block_close, - sym_list_marker_decimal_period, - [14816] = 1, - ACTIONS(1737), 2, - sym__block_close, - sym_list_marker_upper_roman_period, - [14821] = 1, - ACTIONS(1755), 2, - sym__block_close, - sym_list_marker_upper_roman_period, - [14826] = 1, - ACTIONS(460), 2, - sym__block_quote_continuation, - aux_sym__line_token1, - [14831] = 2, - ACTIONS(2058), 1, + [14974] = 2, + ACTIONS(2048), 1, anon_sym_PIPE, - STATE(851), 1, + STATE(699), 1, aux_sym_table_header_repeat1, - [14838] = 2, - ACTIONS(2060), 1, + [14981] = 2, + ACTIONS(2050), 1, + anon_sym_PIPE, + STATE(864), 1, + aux_sym_table_header_repeat1, + [14988] = 2, + ACTIONS(2052), 1, anon_sym_PIPE, - STATE(852), 1, + STATE(865), 1, aux_sym_table_separator_repeat1, - [14845] = 2, - ACTIONS(2062), 1, + [14995] = 2, + ACTIONS(2054), 1, anon_sym_PIPE, - STATE(853), 1, + STATE(866), 1, aux_sym_table_header_repeat1, - [14852] = 2, - ACTIONS(2064), 1, - sym__id, - STATE(1015), 1, - sym_reference_label, - [14859] = 2, - ACTIONS(2066), 1, - sym__whitespace1, - ACTIONS(2068), 1, - sym__newline, - [14866] = 2, - ACTIONS(2070), 1, + [15002] = 2, + ACTIONS(2056), 1, anon_sym_PIPE, - STATE(800), 1, + STATE(699), 1, aux_sym_table_header_repeat1, - [14873] = 2, - ACTIONS(2072), 1, + [15009] = 2, + ACTIONS(2058), 1, anon_sym_PIPE, - STATE(879), 1, + STATE(725), 1, aux_sym_table_separator_repeat1, - [14880] = 2, - ACTIONS(2074), 1, + [15016] = 2, + ACTIONS(2060), 1, anon_sym_PIPE, - STATE(800), 1, + STATE(699), 1, aux_sym_table_header_repeat1, - [14887] = 1, - ACTIONS(1737), 2, - sym__block_close, - sym_list_marker_decimal_paren, - [14892] = 1, - ACTIONS(686), 2, - sym__block_close, - sym__block_quote_continuation, - [14897] = 1, - ACTIONS(1755), 2, - sym__block_close, - sym_list_marker_decimal_paren, - [14902] = 1, - ACTIONS(698), 2, + [15023] = 1, + ACTIONS(848), 2, sym__block_close, sym__block_quote_continuation, - [14907] = 2, - ACTIONS(2076), 1, + [15028] = 2, + ACTIONS(2062), 1, anon_sym_PIPE, - STATE(863), 1, + STATE(871), 1, aux_sym_table_header_repeat1, - [14914] = 2, - ACTIONS(2078), 1, + [15035] = 2, + ACTIONS(2064), 1, anon_sym_PIPE, - STATE(864), 1, + STATE(872), 1, aux_sym_table_separator_repeat1, - [14921] = 2, - ACTIONS(2080), 1, + [15042] = 2, + ACTIONS(2066), 1, anon_sym_PIPE, - STATE(865), 1, + STATE(873), 1, aux_sym_table_header_repeat1, - [14928] = 1, - ACTIONS(460), 2, - sym__list_item_continuation, - sym__block_quote_continuation, - [14933] = 1, - ACTIONS(1755), 2, - sym__block_close, - sym_list_marker_decimal_period, - [14938] = 2, - ACTIONS(2082), 1, + [15049] = 2, + ACTIONS(2068), 1, anon_sym_PIPE, - STATE(800), 1, + STATE(699), 1, aux_sym_table_header_repeat1, - [14945] = 2, - ACTIONS(2084), 1, + [15056] = 2, + ACTIONS(2070), 1, anon_sym_PIPE, - STATE(879), 1, + STATE(725), 1, aux_sym_table_separator_repeat1, - [14952] = 2, - ACTIONS(2086), 1, + [15063] = 2, + ACTIONS(2072), 1, anon_sym_PIPE, - STATE(800), 1, + STATE(699), 1, aux_sym_table_header_repeat1, - [14959] = 1, - ACTIONS(710), 2, - sym__block_close, - sym__block_quote_continuation, - [14964] = 1, - ACTIONS(714), 2, - sym__block_close, - sym__block_quote_continuation, - [14969] = 1, - ACTIONS(718), 2, + [15070] = 1, + ACTIONS(852), 2, sym__block_close, sym__block_quote_continuation, - [14974] = 2, - ACTIONS(2088), 1, + [15075] = 2, + ACTIONS(2074), 1, anon_sym_PIPE, - STATE(874), 1, + STATE(878), 1, aux_sym_table_header_repeat1, - [14981] = 2, - ACTIONS(2090), 1, + [15082] = 2, + ACTIONS(2076), 1, anon_sym_PIPE, - STATE(875), 1, + STATE(879), 1, aux_sym_table_separator_repeat1, - [14988] = 2, - ACTIONS(2092), 1, + [15089] = 2, + ACTIONS(2078), 1, anon_sym_PIPE, - STATE(876), 1, + STATE(880), 1, aux_sym_table_header_repeat1, - [14995] = 1, - ACTIONS(726), 2, - sym__block_close, - sym__block_quote_continuation, - [15000] = 1, - ACTIONS(730), 2, - sym__block_close, - sym__block_quote_continuation, - [15005] = 2, - ACTIONS(2094), 1, + [15096] = 2, + ACTIONS(2080), 1, anon_sym_PIPE, - STATE(800), 1, + STATE(699), 1, aux_sym_table_header_repeat1, - [15012] = 2, - ACTIONS(2096), 1, + [15103] = 2, + ACTIONS(2082), 1, anon_sym_PIPE, - STATE(879), 1, + STATE(725), 1, aux_sym_table_separator_repeat1, - [15019] = 2, - ACTIONS(2098), 1, + [15110] = 2, + ACTIONS(2084), 1, anon_sym_PIPE, - STATE(800), 1, + STATE(699), 1, aux_sym_table_header_repeat1, - [15026] = 2, - ACTIONS(1744), 1, + [15117] = 2, + ACTIONS(1699), 1, sym__table_cell, - STATE(834), 1, + STATE(855), 1, sym_table_cell, - [15033] = 2, - ACTIONS(1744), 1, + [15124] = 2, + ACTIONS(1699), 1, sym__table_cell, - STATE(836), 1, + STATE(857), 1, sym_table_cell, - [15040] = 2, - ACTIONS(2100), 1, - anon_sym_PIPE, - STATE(879), 1, - aux_sym_table_separator_repeat1, - [15047] = 2, - ACTIONS(1744), 1, + [15131] = 2, + ACTIONS(1699), 1, sym__table_cell, - STATE(846), 1, + STATE(861), 1, sym_table_cell, - [15054] = 2, - ACTIONS(1744), 1, + [15138] = 2, + ACTIONS(1699), 1, sym__table_cell, - STATE(848), 1, + STATE(863), 1, sym_table_cell, - [15061] = 2, - ACTIONS(1744), 1, + [15145] = 2, + ACTIONS(1699), 1, sym__table_cell, - STATE(858), 1, + STATE(868), 1, sym_table_cell, - [15068] = 2, - ACTIONS(1744), 1, + [15152] = 2, + ACTIONS(1699), 1, sym__table_cell, - STATE(860), 1, + STATE(870), 1, sym_table_cell, - [15075] = 2, - ACTIONS(1744), 1, + [15159] = 2, + ACTIONS(1699), 1, sym__table_cell, - STATE(869), 1, + STATE(875), 1, sym_table_cell, - [15082] = 2, - ACTIONS(1744), 1, + [15166] = 2, + ACTIONS(1699), 1, sym__table_cell, - STATE(871), 1, + STATE(877), 1, sym_table_cell, - [15089] = 2, - ACTIONS(2064), 1, + [15173] = 2, + ACTIONS(1941), 1, sym__id, - STATE(1109), 1, + STATE(1108), 1, sym_reference_label, - [15096] = 2, - ACTIONS(2064), 1, + [15180] = 2, + ACTIONS(1941), 1, sym__id, - STATE(1115), 1, + STATE(1114), 1, sym_reference_label, - [15103] = 2, - ACTIONS(2064), 1, + [15187] = 2, + ACTIONS(1941), 1, sym__id, - STATE(1121), 1, + STATE(1120), 1, sym_reference_label, - [15110] = 2, - ACTIONS(2064), 1, + [15194] = 2, + ACTIONS(1941), 1, sym__id, - STATE(1127), 1, + STATE(1126), 1, sym_reference_label, - [15117] = 1, - ACTIONS(734), 2, - sym__block_close, - sym__block_quote_continuation, - [15122] = 1, - ACTIONS(738), 2, - sym__block_close, - sym__block_quote_continuation, - [15127] = 1, - ACTIONS(742), 2, - sym__block_close, - sym__block_quote_continuation, - [15132] = 1, - ACTIONS(746), 2, + [15201] = 1, + ACTIONS(2086), 2, sym__block_close, - sym__block_quote_continuation, - [15137] = 1, - ACTIONS(820), 2, - sym__block_close, - sym__block_quote_continuation, - [15142] = 1, - ACTIONS(2103), 1, - sym__whitespace, - [15146] = 1, - ACTIONS(862), 1, - sym__indented_content_spacer, - [15150] = 1, - ACTIONS(2105), 1, - sym__block_close, - [15154] = 1, - ACTIONS(2107), 1, - sym__eof_or_newline, - [15158] = 1, - ACTIONS(1924), 1, - sym_table_cell_alignment, - [15162] = 1, - ACTIONS(2109), 1, - sym__block_close, - [15166] = 1, - ACTIONS(2111), 1, - sym__newline, - [15170] = 1, - ACTIONS(2113), 1, - sym__newline, - [15174] = 1, - ACTIONS(852), 1, - sym__indented_content_spacer, - [15178] = 1, - ACTIONS(2115), 1, - sym__newline, - [15182] = 1, - ACTIONS(2117), 1, - sym__block_close, - [15186] = 1, - ACTIONS(2119), 1, - sym__newline, - [15190] = 1, - ACTIONS(2121), 1, - sym__block_close, - [15194] = 1, - ACTIONS(2123), 1, - anon_sym_PIPE, - [15198] = 1, - ACTIONS(2125), 1, - sym__block_close, - [15202] = 1, - ACTIONS(881), 1, - sym_list_marker_dash, + sym_list_marker_upper_roman_paren, [15206] = 1, - ACTIONS(2127), 1, - sym__indented_content_spacer, + ACTIONS(2088), 1, + sym__footnote_mark_begin, [15210] = 1, - ACTIONS(2129), 1, - sym__newline, + ACTIONS(2090), 1, + sym__block_close, [15214] = 1, - ACTIONS(2131), 1, + ACTIONS(694), 1, sym__indented_content_spacer, [15218] = 1, - ACTIONS(2133), 1, - sym__newline, + ACTIONS(2092), 1, + anon_sym_RBRACK, [15222] = 1, - ACTIONS(2135), 1, - sym__block_close, + ACTIONS(2094), 1, + sym__indented_content_spacer, [15226] = 1, - ACTIONS(2137), 1, - sym__block_close, + ACTIONS(698), 1, + sym__indented_content_spacer, [15230] = 1, - ACTIONS(2139), 1, - anon_sym_EQ, + ACTIONS(2096), 1, + sym__newline, [15234] = 1, - ACTIONS(2141), 1, + ACTIONS(2098), 1, sym__newline, [15238] = 1, - ACTIONS(2143), 1, + ACTIONS(2100), 1, sym__newline, [15242] = 1, - ACTIONS(2145), 1, + ACTIONS(2102), 1, sym__newline, [15246] = 1, - ACTIONS(2147), 1, - sym__newline, + ACTIONS(2104), 1, + sym__block_close, [15250] = 1, - ACTIONS(2149), 1, - sym__newline, + ACTIONS(702), 1, + sym__indented_content_spacer, [15254] = 1, - ACTIONS(2151), 1, + ACTIONS(2106), 1, sym__newline, [15258] = 1, - ACTIONS(2153), 1, - sym__newline, + ACTIONS(2108), 1, + sym_frontmatter_marker, [15262] = 1, - ACTIONS(2155), 1, + ACTIONS(2110), 1, sym__newline, [15266] = 1, - ACTIONS(2157), 1, - sym__newline, + ACTIONS(2112), 1, + sym_language, [15270] = 1, - ACTIONS(2159), 1, - anon_sym_EQ, + ACTIONS(2114), 1, + sym__newline, [15274] = 1, - ACTIONS(2161), 1, - sym__block_close, + ACTIONS(2116), 1, + sym__newline, [15278] = 1, - ACTIONS(686), 1, - sym__indented_content_spacer, + ACTIONS(2118), 1, + sym__newline, [15282] = 1, - ACTIONS(2163), 1, - anon_sym_PIPE, + ACTIONS(2120), 1, + sym__newline, [15286] = 1, - ACTIONS(2165), 1, - sym__whitespace1, + ACTIONS(2122), 1, + sym__block_close, [15290] = 1, - ACTIONS(698), 1, - sym__indented_content_spacer, + ACTIONS(2124), 1, + sym__block_close, [15294] = 1, - ACTIONS(2167), 1, + ACTIONS(2126), 1, sym__newline, [15298] = 1, - ACTIONS(2169), 1, - sym__block_close, + ACTIONS(2128), 1, + sym__newline, [15302] = 1, - ACTIONS(710), 1, - sym__indented_content_spacer, + ACTIONS(2130), 1, + sym__newline, [15306] = 1, - ACTIONS(714), 1, - sym__indented_content_spacer, + ACTIONS(2132), 1, + sym__newline, [15310] = 1, - ACTIONS(718), 1, - sym__indented_content_spacer, + ACTIONS(2134), 1, + sym__newline, [15314] = 1, - ACTIONS(726), 1, - sym__indented_content_spacer, + ACTIONS(2136), 1, + sym__newline, [15318] = 1, - ACTIONS(730), 1, - sym__indented_content_spacer, + ACTIONS(2138), 1, + sym__newline, [15322] = 1, - ACTIONS(734), 1, - sym__indented_content_spacer, + ACTIONS(2140), 1, + sym__newline, [15326] = 1, - ACTIONS(738), 1, - sym__indented_content_spacer, + ACTIONS(2142), 1, + sym__newline, [15330] = 1, - ACTIONS(742), 1, - sym__indented_content_spacer, + ACTIONS(2144), 1, + anon_sym_RBRACK_COLON, [15334] = 1, - ACTIONS(746), 1, - sym__indented_content_spacer, + ACTIONS(2146), 1, + anon_sym_RBRACK_COLON, [15338] = 1, - ACTIONS(2171), 1, - sym__whitespace1, + ACTIONS(2148), 1, + sym__newline, [15342] = 1, - ACTIONS(754), 1, + ACTIONS(686), 1, sym__indented_content_spacer, [15346] = 1, - ACTIONS(762), 1, + ACTIONS(710), 1, sym__indented_content_spacer, [15350] = 1, - ACTIONS(766), 1, + ACTIONS(678), 1, sym__indented_content_spacer, [15354] = 1, - ACTIONS(774), 1, + ACTIONS(2150), 1, sym__indented_content_spacer, [15358] = 1, - ACTIONS(2173), 1, - sym__newline, + ACTIONS(2152), 1, + sym__block_close, [15362] = 1, - ACTIONS(2175), 1, - anon_sym_PIPE, + ACTIONS(2154), 1, + sym__newline, [15366] = 1, - ACTIONS(2177), 1, - sym__block_close, + ACTIONS(830), 1, + sym__indented_content_spacer, [15370] = 1, - ACTIONS(2179), 1, - sym__newline, + ACTIONS(2156), 1, + sym_table_cell_alignment, [15374] = 1, - ACTIONS(2181), 1, - sym_link_destination, + ACTIONS(724), 1, + sym__indented_content_spacer, [15378] = 1, - ACTIONS(2183), 1, - anon_sym_DQUOTE, + ACTIONS(820), 1, + sym__indented_content_spacer, [15382] = 1, - ACTIONS(2185), 1, - sym__newline, + ACTIONS(824), 1, + sym__indented_content_spacer, [15386] = 1, - ACTIONS(2187), 1, - sym__newline, + ACTIONS(690), 1, + sym__indented_content_spacer, [15390] = 1, - ACTIONS(2189), 1, - sym__footnote_continuation, + ACTIONS(2158), 1, + sym__block_close, [15394] = 1, - ACTIONS(2191), 1, - sym__newline, + ACTIONS(2160), 1, + sym__eof_or_newline, [15398] = 1, - ACTIONS(2193), 1, - sym__block_close, + ACTIONS(828), 1, + sym__indented_content_spacer, [15402] = 1, - ACTIONS(2195), 1, - sym__newline, + ACTIONS(2162), 1, + anon_sym_RBRACK, [15406] = 1, - ACTIONS(2197), 1, + ACTIONS(2164), 1, sym__block_close, [15410] = 1, - ACTIONS(2199), 1, - sym__newline, + ACTIONS(864), 1, + sym__indented_content_spacer, [15414] = 1, - ACTIONS(2201), 1, - sym_table_cell_alignment, - [15418] = 1, - ACTIONS(2203), 1, + ACTIONS(2166), 1, sym__block_close, + [15418] = 1, + ACTIONS(2168), 1, + anon_sym_RBRACK, [15422] = 1, - ACTIONS(2205), 1, - sym__newline, + ACTIONS(2170), 1, + sym__list_item_continuation, [15426] = 1, - ACTIONS(2207), 1, - sym__newline, + ACTIONS(2172), 1, + sym__block_close, [15430] = 1, - ACTIONS(2209), 1, - sym__newline, + ACTIONS(2174), 1, + sym__block_close, [15434] = 1, - ACTIONS(2211), 1, + ACTIONS(2176), 1, sym__newline, [15438] = 1, - ACTIONS(2213), 1, - sym__newline, + ACTIONS(2178), 1, + sym__whitespace, [15442] = 1, - ACTIONS(2215), 1, - sym__newline, + ACTIONS(2180), 1, + sym__indented_content_spacer, [15446] = 1, - ACTIONS(2217), 1, - sym__newline, + ACTIONS(2182), 1, + sym__footnote_mark_begin, [15450] = 1, - ACTIONS(2219), 1, - sym__newline, + ACTIONS(881), 1, + sym_list_marker_dash, [15454] = 1, - ACTIONS(2221), 1, + ACTIONS(2184), 1, sym__newline, [15458] = 1, - ACTIONS(2223), 1, - sym__block_close, + ACTIONS(2186), 1, + sym__newline, [15462] = 1, - ACTIONS(2225), 1, - sym__block_close, + ACTIONS(840), 1, + sym__indented_content_spacer, [15466] = 1, - ACTIONS(2227), 1, + ACTIONS(2188), 1, sym__newline, [15470] = 1, - ACTIONS(2229), 1, + ACTIONS(2190), 1, sym__newline, [15474] = 1, - ACTIONS(2231), 1, + ACTIONS(2192), 1, sym__newline, [15478] = 1, - ACTIONS(2233), 1, - sym__newline, + ACTIONS(2194), 1, + aux_sym_value_token1, [15482] = 1, - ACTIONS(2235), 1, - sym__newline, + ACTIONS(2196), 1, + sym__block_close, [15486] = 1, - ACTIONS(2237), 1, - sym__newline, + ACTIONS(885), 1, + sym_list_marker_plus, [15490] = 1, - ACTIONS(2239), 1, + ACTIONS(2198), 1, sym__newline, [15494] = 1, - ACTIONS(2241), 1, + ACTIONS(2200), 1, sym__newline, [15498] = 1, - ACTIONS(2243), 1, - sym__newline, - [15502] = 1, - ACTIONS(2245), 1, + ACTIONS(2202), 1, sym__block_close, + [15502] = 1, + ACTIONS(2204), 1, + anon_sym_PIPE, [15506] = 1, - ACTIONS(2247), 1, - anon_sym_RBRACK, - [15510] = 1, - ACTIONS(2249), 1, + ACTIONS(844), 1, sym__indented_content_spacer, + [15510] = 1, + ACTIONS(2206), 1, + sym__newline, [15514] = 1, - ACTIONS(2251), 1, - sym__whitespace, + ACTIONS(2208), 1, + anon_sym_PIPE, [15518] = 1, - ACTIONS(2253), 1, + ACTIONS(2210), 1, sym__newline, [15522] = 1, - ACTIONS(1261), 1, - sym__newline, + ACTIONS(2212), 1, + sym__block_close, [15526] = 1, - ACTIONS(2255), 1, - sym__newline, + ACTIONS(2214), 1, + sym__block_close, [15530] = 1, - ACTIONS(883), 1, - sym_list_marker_star, + ACTIONS(2216), 1, + sym__newline, [15534] = 1, - ACTIONS(2257), 1, - sym__indented_content_spacer, + ACTIONS(2218), 1, + sym__newline, [15538] = 1, - ACTIONS(2259), 1, - sym__list_item_continuation, + ACTIONS(2220), 1, + sym__newline, [15542] = 1, - ACTIONS(2261), 1, - anon_sym_RBRACK, + ACTIONS(2222), 1, + sym__newline, [15546] = 1, - ACTIONS(800), 1, - sym__indented_content_spacer, + ACTIONS(2224), 1, + sym__newline, [15550] = 1, - ACTIONS(2263), 1, - sym_language, + ACTIONS(2226), 1, + sym__newline, [15554] = 1, - ACTIONS(804), 1, - sym__indented_content_spacer, + ACTIONS(2228), 1, + sym__newline, [15558] = 1, - ACTIONS(2265), 1, + ACTIONS(2230), 1, sym__newline, [15562] = 1, - ACTIONS(2267), 1, + ACTIONS(2232), 1, sym__newline, [15566] = 1, - ACTIONS(792), 1, - sym__indented_content_spacer, + ACTIONS(2234), 1, + sym__whitespace1, [15570] = 1, - ACTIONS(2269), 1, - sym__footnote_mark_begin, + ACTIONS(2236), 1, + sym__newline, [15574] = 1, - ACTIONS(2271), 1, - sym__whitespace, + ACTIONS(814), 1, + sym__indented_content_spacer, [15578] = 1, - ACTIONS(2273), 1, - anon_sym_RBRACK, + ACTIONS(883), 1, + sym_list_marker_star, [15582] = 1, - ACTIONS(2275), 1, - anon_sym_RBRACK_COLON, + ACTIONS(2238), 1, + sym__block_close, [15586] = 1, - ACTIONS(2277), 1, - anon_sym_RBRACK, + ACTIONS(2240), 1, + sym__whitespace, [15590] = 1, - ACTIONS(2279), 1, - sym__newline, - [15594] = 1, - ACTIONS(816), 1, + ACTIONS(2242), 1, sym__indented_content_spacer, + [15594] = 1, + ACTIONS(2244), 1, + sym__block_close, [15598] = 1, - ACTIONS(2281), 1, - sym__newline, + ACTIONS(2246), 1, + ts_builtin_sym_end, [15602] = 1, - ACTIONS(820), 1, - sym__indented_content_spacer, + ACTIONS(2248), 1, + anon_sym_PIPE, [15606] = 1, - ACTIONS(824), 1, - sym__indented_content_spacer, - [15610] = 1, - ACTIONS(2283), 1, + ACTIONS(2250), 1, sym__newline, + [15610] = 1, + ACTIONS(2252), 1, + sym__footnote_continuation, [15614] = 1, - ACTIONS(2285), 1, - sym__block_close, + ACTIONS(2254), 1, + sym__whitespace1, [15618] = 1, - ACTIONS(828), 1, - sym__indented_content_spacer, + ACTIONS(2256), 1, + sym__whitespace, [15622] = 1, - ACTIONS(2287), 1, - anon_sym_RBRACK_COLON, + ACTIONS(2258), 1, + sym__indented_content_spacer, [15626] = 1, - ACTIONS(2289), 1, - ts_builtin_sym_end, + ACTIONS(2260), 1, + sym__whitespace1, [15630] = 1, - ACTIONS(2291), 1, - sym__block_close, + ACTIONS(2262), 1, + sym__newline, [15634] = 1, - ACTIONS(2293), 1, + ACTIONS(2264), 1, sym__newline, [15638] = 1, - ACTIONS(2295), 1, - sym__newline, + ACTIONS(848), 1, + sym__indented_content_spacer, [15642] = 1, - ACTIONS(666), 1, + ACTIONS(2266), 1, sym__indented_content_spacer, [15646] = 1, - ACTIONS(2297), 1, + ACTIONS(852), 1, sym__indented_content_spacer, [15650] = 1, - ACTIONS(670), 1, - sym__indented_content_spacer, + ACTIONS(2268), 1, + sym__newline, [15654] = 1, - ACTIONS(674), 1, + ACTIONS(706), 1, sym__indented_content_spacer, [15658] = 1, - ACTIONS(678), 1, - sym__indented_content_spacer, + ACTIONS(2270), 1, + sym__whitespace1, [15662] = 1, - ACTIONS(2299), 1, - sym__newline, + ACTIONS(732), 1, + sym__indented_content_spacer, [15666] = 1, - ACTIONS(2301), 1, - sym__newline, + ACTIONS(2272), 1, + sym_frontmatter_marker, [15670] = 1, - ACTIONS(2303), 1, + ACTIONS(2274), 1, sym__newline, [15674] = 1, - ACTIONS(2305), 1, + ACTIONS(2276), 1, sym__newline, [15678] = 1, - ACTIONS(2307), 1, + ACTIONS(2278), 1, sym__newline, [15682] = 1, - ACTIONS(2309), 1, - sym__newline, + ACTIONS(2280), 1, + sym__list_item_continuation, [15686] = 1, - ACTIONS(682), 1, - sym__indented_content_spacer, + ACTIONS(2282), 1, + sym__block_close, [15690] = 1, - ACTIONS(2311), 1, - sym__whitespace1, + ACTIONS(856), 1, + sym__indented_content_spacer, [15694] = 1, - ACTIONS(2313), 1, - sym__whitespace, - [15698] = 1, - ACTIONS(2315), 1, + ACTIONS(736), 1, sym__indented_content_spacer, + [15698] = 1, + ACTIONS(2284), 1, + sym__block_close, [15702] = 1, - ACTIONS(690), 1, - sym__indented_content_spacer, + ACTIONS(2286), 1, + sym__newline, [15706] = 1, - ACTIONS(702), 1, + ACTIONS(670), 1, sym__indented_content_spacer, [15710] = 1, - ACTIONS(2317), 1, - sym__block_close, + ACTIONS(2288), 1, + sym__indented_content_spacer, [15714] = 1, - ACTIONS(2319), 1, - sym__newline, + ACTIONS(2290), 1, + sym__eof_or_newline, [15718] = 1, - ACTIONS(2321), 1, - anon_sym_COLON, + ACTIONS(2292), 1, + sym__newline, [15722] = 1, - ACTIONS(2323), 1, - sym__indented_content_spacer, + ACTIONS(2294), 1, + sym__newline, [15726] = 1, - ACTIONS(750), 1, + ACTIONS(740), 1, sym__indented_content_spacer, [15730] = 1, - ACTIONS(758), 1, + ACTIONS(744), 1, sym__indented_content_spacer, [15734] = 1, - ACTIONS(2325), 1, - sym__whitespace1, + ACTIONS(2296), 1, + sym__newline, [15738] = 1, - ACTIONS(2327), 1, + ACTIONS(2298), 1, sym__newline, [15742] = 1, - ACTIONS(2329), 1, - sym__eof_or_newline, + ACTIONS(2300), 1, + sym__newline, [15746] = 1, - ACTIONS(2331), 1, + ACTIONS(2302), 1, sym__newline, [15750] = 1, - ACTIONS(2333), 1, + ACTIONS(2304), 1, sym__newline, [15754] = 1, - ACTIONS(2335), 1, - sym__newline, + ACTIONS(2306), 1, + sym__whitespace1, [15758] = 1, - ACTIONS(770), 1, - sym__indented_content_spacer, + ACTIONS(2308), 1, + sym__whitespace, [15762] = 1, - ACTIONS(2337), 1, - sym__newline, + ACTIONS(2310), 1, + sym__indented_content_spacer, [15766] = 1, - ACTIONS(2339), 1, - sym__whitespace1, + ACTIONS(748), 1, + sym__indented_content_spacer, [15770] = 1, - ACTIONS(2341), 1, - sym__whitespace, + ACTIONS(752), 1, + sym__indented_content_spacer, [15774] = 1, - ACTIONS(2343), 1, + ACTIONS(756), 1, sym__indented_content_spacer, [15778] = 1, - ACTIONS(2345), 1, - sym__block_close, + ACTIONS(2312), 1, + sym__newline, [15782] = 1, - ACTIONS(2347), 1, - sym__block_close, + ACTIONS(2314), 1, + sym_link_destination, [15786] = 1, - ACTIONS(778), 1, + ACTIONS(2316), 1, sym__indented_content_spacer, [15790] = 1, - ACTIONS(2349), 1, + ACTIONS(2318), 1, sym__newline, [15794] = 1, - ACTIONS(2351), 1, + ACTIONS(2320), 1, sym__newline, [15798] = 1, - ACTIONS(2353), 1, - sym__indented_content_spacer, - [15802] = 1, - ACTIONS(2355), 1, + ACTIONS(2322), 1, sym__newline, + [15802] = 1, + ACTIONS(760), 1, + sym__indented_content_spacer, [15806] = 1, - ACTIONS(2357), 1, - sym__newline, + ACTIONS(764), 1, + sym__indented_content_spacer, [15810] = 1, - ACTIONS(2359), 1, + ACTIONS(2324), 1, sym__newline, [15814] = 1, - ACTIONS(2361), 1, + ACTIONS(2326), 1, sym__newline, [15818] = 1, - ACTIONS(2363), 1, + ACTIONS(2328), 1, sym__newline, [15822] = 1, - ACTIONS(2365), 1, - sym__newline, + ACTIONS(2330), 1, + sym__block_close, [15826] = 1, - ACTIONS(2367), 1, + ACTIONS(2332), 1, sym__newline, [15830] = 1, - ACTIONS(2369), 1, - sym__newline, + ACTIONS(2334), 1, + sym__whitespace1, [15834] = 1, - ACTIONS(2371), 1, - sym__newline, + ACTIONS(2336), 1, + sym__whitespace, [15838] = 1, - ACTIONS(2373), 1, - sym__whitespace1, + ACTIONS(2338), 1, + sym__indented_content_spacer, [15842] = 1, - ACTIONS(2375), 1, - sym__whitespace1, + ACTIONS(768), 1, + sym__indented_content_spacer, [15846] = 1, - ACTIONS(2377), 1, - sym__whitespace, + ACTIONS(772), 1, + sym__indented_content_spacer, [15850] = 1, - ACTIONS(2379), 1, + ACTIONS(776), 1, sym__indented_content_spacer, [15854] = 1, - ACTIONS(786), 1, - sym__indented_content_spacer, + ACTIONS(2340), 1, + sym__newline, [15858] = 1, - ACTIONS(806), 1, - sym__indented_content_spacer, + ACTIONS(2342), 1, + anon_sym_EQ, [15862] = 1, - ACTIONS(2381), 1, - sym__newline, - [15866] = 1, - ACTIONS(810), 1, + ACTIONS(2344), 1, sym__indented_content_spacer, + [15866] = 1, + ACTIONS(2346), 1, + anon_sym_EQ, [15870] = 1, - ACTIONS(2383), 1, - sym__indented_content_spacer, + ACTIONS(2348), 1, + sym__whitespace1, [15874] = 1, - ACTIONS(2385), 1, - sym__indented_content_spacer, + ACTIONS(2350), 1, + anon_sym_RBRACK, [15878] = 1, - ACTIONS(832), 1, + ACTIONS(780), 1, sym__indented_content_spacer, [15882] = 1, - ACTIONS(836), 1, + ACTIONS(784), 1, sym__indented_content_spacer, [15886] = 1, - ACTIONS(2387), 1, + ACTIONS(2352), 1, sym__newline, [15890] = 1, - ACTIONS(536), 1, - sym__indented_content_spacer, - [15894] = 1, - ACTIONS(2389), 1, + ACTIONS(2354), 1, sym__newline, + [15894] = 1, + ACTIONS(1860), 1, + sym_table_cell_alignment, [15898] = 1, - ACTIONS(2391), 1, - sym__newline, + ACTIONS(2356), 1, + anon_sym_COLON, [15902] = 1, - ACTIONS(2393), 1, + ACTIONS(2358), 1, sym__newline, [15906] = 1, - ACTIONS(2395), 1, - sym__whitespace, + ACTIONS(2360), 1, + sym__whitespace1, [15910] = 1, - ACTIONS(2397), 1, - sym__block_close, + ACTIONS(2362), 1, + sym__whitespace, [15914] = 1, - ACTIONS(2399), 1, - sym__whitespace1, + ACTIONS(2364), 1, + sym__indented_content_spacer, [15918] = 1, - ACTIONS(2401), 1, - sym__whitespace, + ACTIONS(788), 1, + sym__indented_content_spacer, [15922] = 1, - ACTIONS(2403), 1, + ACTIONS(792), 1, sym__indented_content_spacer, [15926] = 1, - ACTIONS(2405), 1, - sym__indented_content_spacer, + ACTIONS(2366), 1, + sym__newline, [15930] = 1, - ACTIONS(2407), 1, - sym__indented_content_spacer, + ACTIONS(1250), 1, + sym__newline, [15934] = 1, - ACTIONS(2409), 1, + ACTIONS(2368), 1, sym__indented_content_spacer, [15938] = 1, - ACTIONS(2411), 1, - sym__indented_content_spacer, + ACTIONS(2370), 1, + sym__newline, [15942] = 1, - ACTIONS(2413), 1, - sym__indented_content_spacer, + ACTIONS(2372), 1, + sym__block_close, [15946] = 1, - ACTIONS(2415), 1, - sym__indented_content_spacer, + ACTIONS(2374), 1, + sym__block_close, [15950] = 1, - ACTIONS(2417), 1, + ACTIONS(796), 1, sym__indented_content_spacer, [15954] = 1, - ACTIONS(2419), 1, + ACTIONS(800), 1, sym__indented_content_spacer, [15958] = 1, - ACTIONS(2421), 1, - sym__indented_content_spacer, + ACTIONS(2376), 1, + sym__newline, [15962] = 1, - ACTIONS(2423), 1, - sym__indented_content_spacer, + ACTIONS(2378), 1, + sym__newline, [15966] = 1, - ACTIONS(2425), 1, - sym__indented_content_spacer, + ACTIONS(2380), 1, + sym__block_close, [15970] = 1, - ACTIONS(2427), 1, + ACTIONS(682), 1, sym__indented_content_spacer, [15974] = 1, - ACTIONS(2429), 1, - sym__indented_content_spacer, + ACTIONS(2382), 1, + sym__newline, [15978] = 1, - ACTIONS(2431), 1, - sym__indented_content_spacer, + ACTIONS(2384), 1, + sym__whitespace1, [15982] = 1, - ACTIONS(2433), 1, + ACTIONS(2386), 1, sym__whitespace, [15986] = 1, - ACTIONS(2435), 1, + ACTIONS(2388), 1, sym__indented_content_spacer, [15990] = 1, - ACTIONS(2437), 1, - sym_table_cell_alignment, + ACTIONS(2390), 1, + sym__indented_content_spacer, [15994] = 1, - ACTIONS(2439), 1, - sym_frontmatter_marker, + ACTIONS(2392), 1, + sym__indented_content_spacer, [15998] = 1, - ACTIONS(2441), 1, - anon_sym_RBRACK_COLON, + ACTIONS(2394), 1, + sym__indented_content_spacer, [16002] = 1, - ACTIONS(2443), 1, - sym_link_destination, + ACTIONS(2396), 1, + sym__indented_content_spacer, [16006] = 1, - ACTIONS(2445), 1, - sym__newline, + ACTIONS(2398), 1, + sym__indented_content_spacer, [16010] = 1, - ACTIONS(2447), 1, - aux_sym_value_token1, + ACTIONS(2400), 1, + sym__indented_content_spacer, [16014] = 1, - ACTIONS(2449), 1, - sym_table_cell_alignment, + ACTIONS(2402), 1, + sym__indented_content_spacer, [16018] = 1, - ACTIONS(840), 1, + ACTIONS(2404), 1, sym__indented_content_spacer, [16022] = 1, - ACTIONS(2451), 1, - anon_sym_RBRACK_COLON, + ACTIONS(2406), 1, + sym__indented_content_spacer, [16026] = 1, - ACTIONS(2453), 1, - sym_link_destination, + ACTIONS(2408), 1, + sym__indented_content_spacer, [16030] = 1, - ACTIONS(2455), 1, - sym__whitespace, + ACTIONS(2410), 1, + sym__indented_content_spacer, [16034] = 1, - ACTIONS(844), 1, + ACTIONS(2412), 1, sym__indented_content_spacer, [16038] = 1, - ACTIONS(2457), 1, - sym_table_cell_alignment, + ACTIONS(2414), 1, + sym__indented_content_spacer, [16042] = 1, - ACTIONS(2459), 1, - sym__newline, + ACTIONS(2416), 1, + sym__indented_content_spacer, [16046] = 1, - ACTIONS(2461), 1, - anon_sym_RBRACK_COLON, + ACTIONS(2418), 1, + sym__whitespace, [16050] = 1, - ACTIONS(2463), 1, - sym_link_destination, + ACTIONS(2420), 1, + sym__newline, [16054] = 1, - ACTIONS(2465), 1, - sym__whitespace, + ACTIONS(2422), 1, + sym_table_cell_alignment, [16058] = 1, - ACTIONS(2467), 1, - sym__list_item_continuation, + ACTIONS(2424), 1, + sym__newline, [16062] = 1, - ACTIONS(2469), 1, - sym_table_cell_alignment, + ACTIONS(2426), 1, + anon_sym_RBRACK_COLON, [16066] = 1, - ACTIONS(848), 1, - sym__indented_content_spacer, + ACTIONS(2428), 1, + sym_link_destination, [16070] = 1, - ACTIONS(2471), 1, - anon_sym_RBRACK_COLON, + ACTIONS(2430), 1, + sym__whitespace, [16074] = 1, - ACTIONS(2473), 1, - sym_link_destination, + ACTIONS(2432), 1, + sym__newline, [16078] = 1, - ACTIONS(860), 1, - sym__indented_content_spacer, + ACTIONS(2434), 1, + sym_table_cell_alignment, [16082] = 1, - ACTIONS(2475), 1, - sym__whitespace1, + ACTIONS(2436), 1, + sym__newline, [16086] = 1, - ACTIONS(885), 1, - sym_list_marker_plus, + ACTIONS(2438), 1, + anon_sym_RBRACK_COLON, [16090] = 1, - ACTIONS(2477), 1, - sym__whitespace1, + ACTIONS(2440), 1, + sym_link_destination, [16094] = 1, - ACTIONS(2479), 1, - sym_frontmatter_marker, + ACTIONS(2442), 1, + sym__whitespace, [16098] = 1, - ACTIONS(2481), 1, - sym__whitespace1, - [16102] = 1, - ACTIONS(2483), 1, + ACTIONS(2444), 1, sym__newline, + [16102] = 1, + ACTIONS(2446), 1, + sym_table_cell_alignment, [16106] = 1, - ACTIONS(2485), 1, - sym__whitespace1, + ACTIONS(2448), 1, + sym__newline, [16110] = 1, - ACTIONS(2487), 1, - sym__footnote_mark_begin, + ACTIONS(2450), 1, + anon_sym_RBRACK_COLON, [16114] = 1, - ACTIONS(2489), 1, - anon_sym_COLON, + ACTIONS(2452), 1, + sym_link_destination, [16118] = 1, - ACTIONS(2491), 1, - sym__footnote_mark_begin, + ACTIONS(2454), 1, + sym__whitespace, [16122] = 1, - ACTIONS(2493), 1, - anon_sym_COLON, + ACTIONS(2456), 1, + sym__newline, [16126] = 1, - ACTIONS(2495), 1, - sym__footnote_mark_begin, + ACTIONS(2458), 1, + sym_table_cell_alignment, [16130] = 1, - ACTIONS(2497), 1, - anon_sym_COLON, + ACTIONS(2460), 1, + sym__newline, [16134] = 1, - ACTIONS(2499), 1, - sym__footnote_mark_begin, + ACTIONS(2462), 1, + anon_sym_RBRACK_COLON, [16138] = 1, - ACTIONS(2501), 1, - anon_sym_COLON, + ACTIONS(2464), 1, + sym_link_destination, [16142] = 1, - ACTIONS(2503), 1, - anon_sym_RBRACK, + ACTIONS(2466), 1, + sym__block_close, [16146] = 1, - ACTIONS(2505), 1, - anon_sym_RBRACK, + ACTIONS(2468), 1, + sym__whitespace1, [16150] = 1, - ACTIONS(2507), 1, - anon_sym_RBRACK, + ACTIONS(2470), 1, + sym__block_close, [16154] = 1, - ACTIONS(2509), 1, - anon_sym_RBRACK, + ACTIONS(2472), 1, + sym__whitespace1, [16158] = 1, - ACTIONS(2511), 1, - sym__block_close, + ACTIONS(2474), 1, + sym__newline, [16162] = 1, - ACTIONS(2513), 1, - sym__block_close, + ACTIONS(2476), 1, + sym__whitespace1, [16166] = 1, - ACTIONS(2515), 1, - sym__newline, + ACTIONS(2478), 1, + anon_sym_DQUOTE, [16170] = 1, - ACTIONS(2517), 1, + ACTIONS(2480), 1, sym__whitespace1, [16174] = 1, - ACTIONS(706), 1, + ACTIONS(2482), 1, + sym__footnote_mark_begin, + [16178] = 1, + ACTIONS(2484), 1, + anon_sym_COLON, + [16182] = 1, + ACTIONS(2486), 1, + sym__footnote_mark_begin, + [16186] = 1, + ACTIONS(2488), 1, + anon_sym_COLON, + [16190] = 1, + ACTIONS(538), 1, + sym__indented_content_spacer, + [16194] = 1, + ACTIONS(2490), 1, + anon_sym_COLON, + [16198] = 1, + ACTIONS(2492), 1, + sym__footnote_mark_begin, + [16202] = 1, + ACTIONS(2494), 1, + anon_sym_COLON, + [16206] = 1, + ACTIONS(2496), 1, + anon_sym_RBRACK, + [16210] = 1, + ACTIONS(2498), 1, + anon_sym_RBRACK, + [16214] = 1, + ACTIONS(2500), 1, + anon_sym_RBRACK, + [16218] = 1, + ACTIONS(2502), 1, + anon_sym_RBRACK, + [16222] = 1, + ACTIONS(664), 1, + sym__indented_content_spacer, + [16226] = 1, + ACTIONS(804), 1, + sym__indented_content_spacer, + [16230] = 1, + ACTIONS(808), 1, + sym__indented_content_spacer, + [16234] = 1, + ACTIONS(812), 1, + sym__indented_content_spacer, + [16238] = 1, + ACTIONS(674), 1, sym__indented_content_spacer, }; static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(66)] = 0, - [SMALL_STATE(67)] = 73, - [SMALL_STATE(68)] = 146, - [SMALL_STATE(69)] = 212, - [SMALL_STATE(70)] = 278, - [SMALL_STATE(71)] = 328, - [SMALL_STATE(72)] = 378, - [SMALL_STATE(73)] = 423, - [SMALL_STATE(74)] = 468, - [SMALL_STATE(75)] = 513, - [SMALL_STATE(76)] = 560, - [SMALL_STATE(77)] = 607, - [SMALL_STATE(78)] = 654, - [SMALL_STATE(79)] = 701, - [SMALL_STATE(80)] = 748, - [SMALL_STATE(81)] = 793, - [SMALL_STATE(82)] = 838, - [SMALL_STATE(83)] = 883, - [SMALL_STATE(84)] = 930, - [SMALL_STATE(85)] = 977, - [SMALL_STATE(86)] = 1024, - [SMALL_STATE(87)] = 1071, - [SMALL_STATE(88)] = 1118, - [SMALL_STATE(89)] = 1165, - [SMALL_STATE(90)] = 1210, - [SMALL_STATE(91)] = 1257, - [SMALL_STATE(92)] = 1302, - [SMALL_STATE(93)] = 1349, - [SMALL_STATE(94)] = 1394, - [SMALL_STATE(95)] = 1439, - [SMALL_STATE(96)] = 1486, - [SMALL_STATE(97)] = 1533, - [SMALL_STATE(98)] = 1578, - [SMALL_STATE(99)] = 1623, - [SMALL_STATE(100)] = 1668, - [SMALL_STATE(101)] = 1715, - [SMALL_STATE(102)] = 1762, - [SMALL_STATE(103)] = 1809, - [SMALL_STATE(104)] = 1856, - [SMALL_STATE(105)] = 1903, - [SMALL_STATE(106)] = 1950, - [SMALL_STATE(107)] = 1997, - [SMALL_STATE(108)] = 2042, - [SMALL_STATE(109)] = 2089, - [SMALL_STATE(110)] = 2133, - [SMALL_STATE(111)] = 2177, - [SMALL_STATE(112)] = 2221, - [SMALL_STATE(113)] = 2265, - [SMALL_STATE(114)] = 2309, - [SMALL_STATE(115)] = 2353, - [SMALL_STATE(116)] = 2397, - [SMALL_STATE(117)] = 2441, - [SMALL_STATE(118)] = 2485, - [SMALL_STATE(119)] = 2529, - [SMALL_STATE(120)] = 2573, - [SMALL_STATE(121)] = 2617, - [SMALL_STATE(122)] = 2661, - [SMALL_STATE(123)] = 2705, - [SMALL_STATE(124)] = 2749, - [SMALL_STATE(125)] = 2793, - [SMALL_STATE(126)] = 2837, - [SMALL_STATE(127)] = 2881, - [SMALL_STATE(128)] = 2925, - [SMALL_STATE(129)] = 2969, - [SMALL_STATE(130)] = 3013, - [SMALL_STATE(131)] = 3057, - [SMALL_STATE(132)] = 3101, - [SMALL_STATE(133)] = 3145, - [SMALL_STATE(134)] = 3189, - [SMALL_STATE(135)] = 3233, - [SMALL_STATE(136)] = 3277, - [SMALL_STATE(137)] = 3321, - [SMALL_STATE(138)] = 3365, - [SMALL_STATE(139)] = 3409, - [SMALL_STATE(140)] = 3453, - [SMALL_STATE(141)] = 3497, - [SMALL_STATE(142)] = 3541, - [SMALL_STATE(143)] = 3585, - [SMALL_STATE(144)] = 3629, - [SMALL_STATE(145)] = 3673, - [SMALL_STATE(146)] = 3717, - [SMALL_STATE(147)] = 3761, - [SMALL_STATE(148)] = 3805, - [SMALL_STATE(149)] = 3849, - [SMALL_STATE(150)] = 3893, - [SMALL_STATE(151)] = 3937, - [SMALL_STATE(152)] = 3981, - [SMALL_STATE(153)] = 4025, - [SMALL_STATE(154)] = 4069, - [SMALL_STATE(155)] = 4113, - [SMALL_STATE(156)] = 4157, - [SMALL_STATE(157)] = 4201, - [SMALL_STATE(158)] = 4245, - [SMALL_STATE(159)] = 4289, - [SMALL_STATE(160)] = 4333, - [SMALL_STATE(161)] = 4377, - [SMALL_STATE(162)] = 4421, - [SMALL_STATE(163)] = 4465, - [SMALL_STATE(164)] = 4509, - [SMALL_STATE(165)] = 4553, - [SMALL_STATE(166)] = 4597, - [SMALL_STATE(167)] = 4641, - [SMALL_STATE(168)] = 4685, - [SMALL_STATE(169)] = 4729, - [SMALL_STATE(170)] = 4773, - [SMALL_STATE(171)] = 4817, - [SMALL_STATE(172)] = 4861, - [SMALL_STATE(173)] = 4905, - [SMALL_STATE(174)] = 4949, - [SMALL_STATE(175)] = 4993, - [SMALL_STATE(176)] = 5037, - [SMALL_STATE(177)] = 5081, - [SMALL_STATE(178)] = 5125, - [SMALL_STATE(179)] = 5169, - [SMALL_STATE(180)] = 5213, - [SMALL_STATE(181)] = 5257, - [SMALL_STATE(182)] = 5301, - [SMALL_STATE(183)] = 5345, - [SMALL_STATE(184)] = 5389, - [SMALL_STATE(185)] = 5433, - [SMALL_STATE(186)] = 5477, - [SMALL_STATE(187)] = 5521, - [SMALL_STATE(188)] = 5565, - [SMALL_STATE(189)] = 5609, - [SMALL_STATE(190)] = 5653, - [SMALL_STATE(191)] = 5697, - [SMALL_STATE(192)] = 5741, - [SMALL_STATE(193)] = 5785, - [SMALL_STATE(194)] = 5829, - [SMALL_STATE(195)] = 5873, - [SMALL_STATE(196)] = 5917, - [SMALL_STATE(197)] = 5961, - [SMALL_STATE(198)] = 6005, - [SMALL_STATE(199)] = 6049, - [SMALL_STATE(200)] = 6093, - [SMALL_STATE(201)] = 6137, - [SMALL_STATE(202)] = 6181, - [SMALL_STATE(203)] = 6225, - [SMALL_STATE(204)] = 6269, - [SMALL_STATE(205)] = 6313, - [SMALL_STATE(206)] = 6357, - [SMALL_STATE(207)] = 6401, - [SMALL_STATE(208)] = 6445, - [SMALL_STATE(209)] = 6492, - [SMALL_STATE(210)] = 6535, - [SMALL_STATE(211)] = 6577, - [SMALL_STATE(212)] = 6628, - [SMALL_STATE(213)] = 6679, - [SMALL_STATE(214)] = 6730, - [SMALL_STATE(215)] = 6781, - [SMALL_STATE(216)] = 6832, - [SMALL_STATE(217)] = 6883, - [SMALL_STATE(218)] = 6934, - [SMALL_STATE(219)] = 6985, - [SMALL_STATE(220)] = 7036, - [SMALL_STATE(221)] = 7087, - [SMALL_STATE(222)] = 7135, - [SMALL_STATE(223)] = 7183, - [SMALL_STATE(224)] = 7231, - [SMALL_STATE(225)] = 7279, - [SMALL_STATE(226)] = 7327, - [SMALL_STATE(227)] = 7370, - [SMALL_STATE(228)] = 7413, - [SMALL_STATE(229)] = 7456, - [SMALL_STATE(230)] = 7499, - [SMALL_STATE(231)] = 7542, - [SMALL_STATE(232)] = 7568, - [SMALL_STATE(233)] = 7594, - [SMALL_STATE(234)] = 7615, - [SMALL_STATE(235)] = 7640, - [SMALL_STATE(236)] = 7665, - [SMALL_STATE(237)] = 7704, - [SMALL_STATE(238)] = 7742, - [SMALL_STATE(239)] = 7762, - [SMALL_STATE(240)] = 7796, - [SMALL_STATE(241)] = 7828, - [SMALL_STATE(242)] = 7866, - [SMALL_STATE(243)] = 7897, - [SMALL_STATE(244)] = 7928, - [SMALL_STATE(245)] = 7959, - [SMALL_STATE(246)] = 7990, - [SMALL_STATE(247)] = 8021, - [SMALL_STATE(248)] = 8052, - [SMALL_STATE(249)] = 8083, - [SMALL_STATE(250)] = 8114, - [SMALL_STATE(251)] = 8140, - [SMALL_STATE(252)] = 8168, - [SMALL_STATE(253)] = 8194, - [SMALL_STATE(254)] = 8220, - [SMALL_STATE(255)] = 8246, - [SMALL_STATE(256)] = 8272, - [SMALL_STATE(257)] = 8297, - [SMALL_STATE(258)] = 8322, - [SMALL_STATE(259)] = 8347, - [SMALL_STATE(260)] = 8372, - [SMALL_STATE(261)] = 8405, - [SMALL_STATE(262)] = 8430, - [SMALL_STATE(263)] = 8463, - [SMALL_STATE(264)] = 8496, - [SMALL_STATE(265)] = 8529, - [SMALL_STATE(266)] = 8554, - [SMALL_STATE(267)] = 8579, - [SMALL_STATE(268)] = 8612, - [SMALL_STATE(269)] = 8645, - [SMALL_STATE(270)] = 8670, - [SMALL_STATE(271)] = 8695, - [SMALL_STATE(272)] = 8715, - [SMALL_STATE(273)] = 8737, - [SMALL_STATE(274)] = 8757, - [SMALL_STATE(275)] = 8776, - [SMALL_STATE(276)] = 8795, - [SMALL_STATE(277)] = 8814, - [SMALL_STATE(278)] = 8833, - [SMALL_STATE(279)] = 8852, - [SMALL_STATE(280)] = 8871, - [SMALL_STATE(281)] = 8885, - [SMALL_STATE(282)] = 8901, - [SMALL_STATE(283)] = 8915, - [SMALL_STATE(284)] = 8931, - [SMALL_STATE(285)] = 8945, - [SMALL_STATE(286)] = 8970, - [SMALL_STATE(287)] = 8993, - [SMALL_STATE(288)] = 9016, - [SMALL_STATE(289)] = 9041, - [SMALL_STATE(290)] = 9054, - [SMALL_STATE(291)] = 9067, - [SMALL_STATE(292)] = 9078, - [SMALL_STATE(293)] = 9089, - [SMALL_STATE(294)] = 9100, - [SMALL_STATE(295)] = 9111, - [SMALL_STATE(296)] = 9122, - [SMALL_STATE(297)] = 9133, - [SMALL_STATE(298)] = 9144, - [SMALL_STATE(299)] = 9169, - [SMALL_STATE(300)] = 9192, - [SMALL_STATE(301)] = 9215, - [SMALL_STATE(302)] = 9238, - [SMALL_STATE(303)] = 9261, - [SMALL_STATE(304)] = 9284, - [SMALL_STATE(305)] = 9295, - [SMALL_STATE(306)] = 9320, - [SMALL_STATE(307)] = 9343, - [SMALL_STATE(308)] = 9366, - [SMALL_STATE(309)] = 9389, - [SMALL_STATE(310)] = 9414, - [SMALL_STATE(311)] = 9437, - [SMALL_STATE(312)] = 9460, - [SMALL_STATE(313)] = 9483, - [SMALL_STATE(314)] = 9508, - [SMALL_STATE(315)] = 9531, - [SMALL_STATE(316)] = 9554, - [SMALL_STATE(317)] = 9576, - [SMALL_STATE(318)] = 9598, - [SMALL_STATE(319)] = 9608, - [SMALL_STATE(320)] = 9630, - [SMALL_STATE(321)] = 9650, - [SMALL_STATE(322)] = 9660, - [SMALL_STATE(323)] = 9682, - [SMALL_STATE(324)] = 9704, - [SMALL_STATE(325)] = 9724, - [SMALL_STATE(326)] = 9734, - [SMALL_STATE(327)] = 9756, - [SMALL_STATE(328)] = 9766, - [SMALL_STATE(329)] = 9776, - [SMALL_STATE(330)] = 9798, - [SMALL_STATE(331)] = 9820, - [SMALL_STATE(332)] = 9830, - [SMALL_STATE(333)] = 9852, - [SMALL_STATE(334)] = 9862, - [SMALL_STATE(335)] = 9884, - [SMALL_STATE(336)] = 9906, - [SMALL_STATE(337)] = 9928, - [SMALL_STATE(338)] = 9950, - [SMALL_STATE(339)] = 9960, - [SMALL_STATE(340)] = 9970, - [SMALL_STATE(341)] = 9980, - [SMALL_STATE(342)] = 9990, - [SMALL_STATE(343)] = 10012, - [SMALL_STATE(344)] = 10034, - [SMALL_STATE(345)] = 10056, - [SMALL_STATE(346)] = 10078, - [SMALL_STATE(347)] = 10088, - [SMALL_STATE(348)] = 10098, - [SMALL_STATE(349)] = 10120, - [SMALL_STATE(350)] = 10130, - [SMALL_STATE(351)] = 10149, - [SMALL_STATE(352)] = 10168, - [SMALL_STATE(353)] = 10183, - [SMALL_STATE(354)] = 10202, - [SMALL_STATE(355)] = 10221, - [SMALL_STATE(356)] = 10240, - [SMALL_STATE(357)] = 10259, - [SMALL_STATE(358)] = 10278, - [SMALL_STATE(359)] = 10287, - [SMALL_STATE(360)] = 10296, - [SMALL_STATE(361)] = 10315, - [SMALL_STATE(362)] = 10334, - [SMALL_STATE(363)] = 10349, - [SMALL_STATE(364)] = 10368, - [SMALL_STATE(365)] = 10387, - [SMALL_STATE(366)] = 10406, - [SMALL_STATE(367)] = 10425, - [SMALL_STATE(368)] = 10434, - [SMALL_STATE(369)] = 10453, - [SMALL_STATE(370)] = 10462, - [SMALL_STATE(371)] = 10481, - [SMALL_STATE(372)] = 10500, - [SMALL_STATE(373)] = 10509, - [SMALL_STATE(374)] = 10518, - [SMALL_STATE(375)] = 10537, - [SMALL_STATE(376)] = 10546, - [SMALL_STATE(377)] = 10561, - [SMALL_STATE(378)] = 10576, - [SMALL_STATE(379)] = 10595, - [SMALL_STATE(380)] = 10604, - [SMALL_STATE(381)] = 10613, - [SMALL_STATE(382)] = 10632, - [SMALL_STATE(383)] = 10651, - [SMALL_STATE(384)] = 10670, - [SMALL_STATE(385)] = 10679, - [SMALL_STATE(386)] = 10698, - [SMALL_STATE(387)] = 10717, - [SMALL_STATE(388)] = 10736, - [SMALL_STATE(389)] = 10755, - [SMALL_STATE(390)] = 10774, - [SMALL_STATE(391)] = 10793, - [SMALL_STATE(392)] = 10812, - [SMALL_STATE(393)] = 10831, - [SMALL_STATE(394)] = 10850, - [SMALL_STATE(395)] = 10869, - [SMALL_STATE(396)] = 10888, - [SMALL_STATE(397)] = 10907, - [SMALL_STATE(398)] = 10926, - [SMALL_STATE(399)] = 10945, - [SMALL_STATE(400)] = 10964, - [SMALL_STATE(401)] = 10983, - [SMALL_STATE(402)] = 11002, - [SMALL_STATE(403)] = 11021, - [SMALL_STATE(404)] = 11040, - [SMALL_STATE(405)] = 11059, - [SMALL_STATE(406)] = 11078, - [SMALL_STATE(407)] = 11093, - [SMALL_STATE(408)] = 11112, - [SMALL_STATE(409)] = 11131, - [SMALL_STATE(410)] = 11150, - [SMALL_STATE(411)] = 11169, - [SMALL_STATE(412)] = 11188, - [SMALL_STATE(413)] = 11207, - [SMALL_STATE(414)] = 11226, - [SMALL_STATE(415)] = 11245, - [SMALL_STATE(416)] = 11264, - [SMALL_STATE(417)] = 11283, - [SMALL_STATE(418)] = 11302, - [SMALL_STATE(419)] = 11316, - [SMALL_STATE(420)] = 11328, - [SMALL_STATE(421)] = 11340, - [SMALL_STATE(422)] = 11352, - [SMALL_STATE(423)] = 11366, - [SMALL_STATE(424)] = 11380, - [SMALL_STATE(425)] = 11389, - [SMALL_STATE(426)] = 11402, - [SMALL_STATE(427)] = 11415, - [SMALL_STATE(428)] = 11428, - [SMALL_STATE(429)] = 11441, - [SMALL_STATE(430)] = 11454, - [SMALL_STATE(431)] = 11467, - [SMALL_STATE(432)] = 11480, - [SMALL_STATE(433)] = 11493, - [SMALL_STATE(434)] = 11506, - [SMALL_STATE(435)] = 11519, - [SMALL_STATE(436)] = 11532, - [SMALL_STATE(437)] = 11545, - [SMALL_STATE(438)] = 11558, - [SMALL_STATE(439)] = 11571, - [SMALL_STATE(440)] = 11584, - [SMALL_STATE(441)] = 11597, - [SMALL_STATE(442)] = 11610, - [SMALL_STATE(443)] = 11623, - [SMALL_STATE(444)] = 11632, - [SMALL_STATE(445)] = 11641, - [SMALL_STATE(446)] = 11652, - [SMALL_STATE(447)] = 11661, - [SMALL_STATE(448)] = 11670, - [SMALL_STATE(449)] = 11683, - [SMALL_STATE(450)] = 11696, - [SMALL_STATE(451)] = 11707, - [SMALL_STATE(452)] = 11720, - [SMALL_STATE(453)] = 11729, - [SMALL_STATE(454)] = 11738, - [SMALL_STATE(455)] = 11747, - [SMALL_STATE(456)] = 11760, - [SMALL_STATE(457)] = 11769, - [SMALL_STATE(458)] = 11776, - [SMALL_STATE(459)] = 11787, - [SMALL_STATE(460)] = 11800, - [SMALL_STATE(461)] = 11813, - [SMALL_STATE(462)] = 11826, - [SMALL_STATE(463)] = 11839, - [SMALL_STATE(464)] = 11852, - [SMALL_STATE(465)] = 11865, - [SMALL_STATE(466)] = 11878, - [SMALL_STATE(467)] = 11891, - [SMALL_STATE(468)] = 11904, - [SMALL_STATE(469)] = 11917, - [SMALL_STATE(470)] = 11930, - [SMALL_STATE(471)] = 11943, - [SMALL_STATE(472)] = 11956, - [SMALL_STATE(473)] = 11969, - [SMALL_STATE(474)] = 11982, - [SMALL_STATE(475)] = 11995, - [SMALL_STATE(476)] = 12008, - [SMALL_STATE(477)] = 12019, - [SMALL_STATE(478)] = 12030, - [SMALL_STATE(479)] = 12043, - [SMALL_STATE(480)] = 12056, - [SMALL_STATE(481)] = 12067, - [SMALL_STATE(482)] = 12080, - [SMALL_STATE(483)] = 12089, - [SMALL_STATE(484)] = 12098, - [SMALL_STATE(485)] = 12111, - [SMALL_STATE(486)] = 12124, - [SMALL_STATE(487)] = 12137, - [SMALL_STATE(488)] = 12150, - [SMALL_STATE(489)] = 12163, - [SMALL_STATE(490)] = 12176, - [SMALL_STATE(491)] = 12189, - [SMALL_STATE(492)] = 12202, - [SMALL_STATE(493)] = 12215, - [SMALL_STATE(494)] = 12228, - [SMALL_STATE(495)] = 12241, - [SMALL_STATE(496)] = 12254, - [SMALL_STATE(497)] = 12267, - [SMALL_STATE(498)] = 12280, - [SMALL_STATE(499)] = 12293, - [SMALL_STATE(500)] = 12306, - [SMALL_STATE(501)] = 12319, - [SMALL_STATE(502)] = 12332, - [SMALL_STATE(503)] = 12343, - [SMALL_STATE(504)] = 12356, - [SMALL_STATE(505)] = 12369, - [SMALL_STATE(506)] = 12382, - [SMALL_STATE(507)] = 12395, - [SMALL_STATE(508)] = 12404, - [SMALL_STATE(509)] = 12417, - [SMALL_STATE(510)] = 12430, - [SMALL_STATE(511)] = 12443, - [SMALL_STATE(512)] = 12456, - [SMALL_STATE(513)] = 12469, - [SMALL_STATE(514)] = 12482, - [SMALL_STATE(515)] = 12495, - [SMALL_STATE(516)] = 12508, - [SMALL_STATE(517)] = 12521, - [SMALL_STATE(518)] = 12534, - [SMALL_STATE(519)] = 12547, - [SMALL_STATE(520)] = 12560, - [SMALL_STATE(521)] = 12573, - [SMALL_STATE(522)] = 12586, - [SMALL_STATE(523)] = 12599, - [SMALL_STATE(524)] = 12612, - [SMALL_STATE(525)] = 12623, - [SMALL_STATE(526)] = 12636, - [SMALL_STATE(527)] = 12649, - [SMALL_STATE(528)] = 12662, - [SMALL_STATE(529)] = 12675, - [SMALL_STATE(530)] = 12688, - [SMALL_STATE(531)] = 12701, - [SMALL_STATE(532)] = 12714, - [SMALL_STATE(533)] = 12727, - [SMALL_STATE(534)] = 12740, - [SMALL_STATE(535)] = 12753, - [SMALL_STATE(536)] = 12766, - [SMALL_STATE(537)] = 12779, - [SMALL_STATE(538)] = 12792, - [SMALL_STATE(539)] = 12805, - [SMALL_STATE(540)] = 12818, - [SMALL_STATE(541)] = 12831, - [SMALL_STATE(542)] = 12844, - [SMALL_STATE(543)] = 12857, - [SMALL_STATE(544)] = 12870, - [SMALL_STATE(545)] = 12883, - [SMALL_STATE(546)] = 12896, - [SMALL_STATE(547)] = 12902, - [SMALL_STATE(548)] = 12908, - [SMALL_STATE(549)] = 12914, - [SMALL_STATE(550)] = 12920, - [SMALL_STATE(551)] = 12930, - [SMALL_STATE(552)] = 12940, - [SMALL_STATE(553)] = 12950, - [SMALL_STATE(554)] = 12956, - [SMALL_STATE(555)] = 12962, - [SMALL_STATE(556)] = 12972, - [SMALL_STATE(557)] = 12978, - [SMALL_STATE(558)] = 12988, - [SMALL_STATE(559)] = 12994, - [SMALL_STATE(560)] = 13004, - [SMALL_STATE(561)] = 13010, - [SMALL_STATE(562)] = 13020, - [SMALL_STATE(563)] = 13026, - [SMALL_STATE(564)] = 13036, - [SMALL_STATE(565)] = 13046, - [SMALL_STATE(566)] = 13052, - [SMALL_STATE(567)] = 13058, - [SMALL_STATE(568)] = 13068, - [SMALL_STATE(569)] = 13074, - [SMALL_STATE(570)] = 13080, - [SMALL_STATE(571)] = 13086, - [SMALL_STATE(572)] = 13092, - [SMALL_STATE(573)] = 13098, - [SMALL_STATE(574)] = 13104, - [SMALL_STATE(575)] = 13110, - [SMALL_STATE(576)] = 13116, - [SMALL_STATE(577)] = 13122, - [SMALL_STATE(578)] = 13128, - [SMALL_STATE(579)] = 13134, - [SMALL_STATE(580)] = 13140, - [SMALL_STATE(581)] = 13146, - [SMALL_STATE(582)] = 13152, - [SMALL_STATE(583)] = 13158, - [SMALL_STATE(584)] = 13164, - [SMALL_STATE(585)] = 13170, - [SMALL_STATE(586)] = 13176, - [SMALL_STATE(587)] = 13182, - [SMALL_STATE(588)] = 13188, - [SMALL_STATE(589)] = 13194, - [SMALL_STATE(590)] = 13200, - [SMALL_STATE(591)] = 13210, - [SMALL_STATE(592)] = 13220, - [SMALL_STATE(593)] = 13226, - [SMALL_STATE(594)] = 13232, - [SMALL_STATE(595)] = 13238, - [SMALL_STATE(596)] = 13244, - [SMALL_STATE(597)] = 13250, - [SMALL_STATE(598)] = 13256, - [SMALL_STATE(599)] = 13262, - [SMALL_STATE(600)] = 13268, - [SMALL_STATE(601)] = 13274, - [SMALL_STATE(602)] = 13280, - [SMALL_STATE(603)] = 13286, - [SMALL_STATE(604)] = 13294, - [SMALL_STATE(605)] = 13300, - [SMALL_STATE(606)] = 13306, - [SMALL_STATE(607)] = 13312, - [SMALL_STATE(608)] = 13318, - [SMALL_STATE(609)] = 13324, - [SMALL_STATE(610)] = 13330, - [SMALL_STATE(611)] = 13336, - [SMALL_STATE(612)] = 13342, - [SMALL_STATE(613)] = 13348, - [SMALL_STATE(614)] = 13354, - [SMALL_STATE(615)] = 13360, - [SMALL_STATE(616)] = 13366, - [SMALL_STATE(617)] = 13372, - [SMALL_STATE(618)] = 13378, - [SMALL_STATE(619)] = 13386, - [SMALL_STATE(620)] = 13396, - [SMALL_STATE(621)] = 13406, - [SMALL_STATE(622)] = 13416, - [SMALL_STATE(623)] = 13426, - [SMALL_STATE(624)] = 13436, - [SMALL_STATE(625)] = 13446, - [SMALL_STATE(626)] = 13456, - [SMALL_STATE(627)] = 13462, - [SMALL_STATE(628)] = 13468, - [SMALL_STATE(629)] = 13474, - [SMALL_STATE(630)] = 13480, - [SMALL_STATE(631)] = 13486, - [SMALL_STATE(632)] = 13496, - [SMALL_STATE(633)] = 13506, - [SMALL_STATE(634)] = 13516, - [SMALL_STATE(635)] = 13526, - [SMALL_STATE(636)] = 13536, - [SMALL_STATE(637)] = 13542, - [SMALL_STATE(638)] = 13548, - [SMALL_STATE(639)] = 13558, - [SMALL_STATE(640)] = 13568, - [SMALL_STATE(641)] = 13578, - [SMALL_STATE(642)] = 13588, - [SMALL_STATE(643)] = 13598, - [SMALL_STATE(644)] = 13606, - [SMALL_STATE(645)] = 13616, - [SMALL_STATE(646)] = 13622, - [SMALL_STATE(647)] = 13632, - [SMALL_STATE(648)] = 13642, - [SMALL_STATE(649)] = 13652, - [SMALL_STATE(650)] = 13658, - [SMALL_STATE(651)] = 13668, - [SMALL_STATE(652)] = 13678, - [SMALL_STATE(653)] = 13684, - [SMALL_STATE(654)] = 13690, - [SMALL_STATE(655)] = 13700, - [SMALL_STATE(656)] = 13710, - [SMALL_STATE(657)] = 13720, - [SMALL_STATE(658)] = 13730, - [SMALL_STATE(659)] = 13740, - [SMALL_STATE(660)] = 13750, - [SMALL_STATE(661)] = 13760, - [SMALL_STATE(662)] = 13770, - [SMALL_STATE(663)] = 13778, - [SMALL_STATE(664)] = 13784, - [SMALL_STATE(665)] = 13792, - [SMALL_STATE(666)] = 13800, - [SMALL_STATE(667)] = 13806, - [SMALL_STATE(668)] = 13812, - [SMALL_STATE(669)] = 13820, - [SMALL_STATE(670)] = 13828, - [SMALL_STATE(671)] = 13836, - [SMALL_STATE(672)] = 13844, - [SMALL_STATE(673)] = 13852, - [SMALL_STATE(674)] = 13858, - [SMALL_STATE(675)] = 13864, - [SMALL_STATE(676)] = 13872, - [SMALL_STATE(677)] = 13880, - [SMALL_STATE(678)] = 13888, - [SMALL_STATE(679)] = 13898, - [SMALL_STATE(680)] = 13903, - [SMALL_STATE(681)] = 13908, - [SMALL_STATE(682)] = 13913, - [SMALL_STATE(683)] = 13918, - [SMALL_STATE(684)] = 13923, - [SMALL_STATE(685)] = 13928, - [SMALL_STATE(686)] = 13933, - [SMALL_STATE(687)] = 13938, - [SMALL_STATE(688)] = 13943, - [SMALL_STATE(689)] = 13948, - [SMALL_STATE(690)] = 13955, - [SMALL_STATE(691)] = 13960, - [SMALL_STATE(692)] = 13965, - [SMALL_STATE(693)] = 13970, - [SMALL_STATE(694)] = 13975, - [SMALL_STATE(695)] = 13980, - [SMALL_STATE(696)] = 13985, - [SMALL_STATE(697)] = 13990, - [SMALL_STATE(698)] = 13995, - [SMALL_STATE(699)] = 14000, - [SMALL_STATE(700)] = 14005, - [SMALL_STATE(701)] = 14010, - [SMALL_STATE(702)] = 14015, - [SMALL_STATE(703)] = 14020, - [SMALL_STATE(704)] = 14025, - [SMALL_STATE(705)] = 14030, - [SMALL_STATE(706)] = 14035, - [SMALL_STATE(707)] = 14040, - [SMALL_STATE(708)] = 14045, - [SMALL_STATE(709)] = 14050, - [SMALL_STATE(710)] = 14055, - [SMALL_STATE(711)] = 14060, - [SMALL_STATE(712)] = 14065, - [SMALL_STATE(713)] = 14070, - [SMALL_STATE(714)] = 14075, - [SMALL_STATE(715)] = 14080, - [SMALL_STATE(716)] = 14085, - [SMALL_STATE(717)] = 14090, - [SMALL_STATE(718)] = 14095, - [SMALL_STATE(719)] = 14100, - [SMALL_STATE(720)] = 14105, - [SMALL_STATE(721)] = 14110, - [SMALL_STATE(722)] = 14115, - [SMALL_STATE(723)] = 14122, - [SMALL_STATE(724)] = 14129, - [SMALL_STATE(725)] = 14134, - [SMALL_STATE(726)] = 14139, - [SMALL_STATE(727)] = 14144, - [SMALL_STATE(728)] = 14151, - [SMALL_STATE(729)] = 14156, - [SMALL_STATE(730)] = 14163, - [SMALL_STATE(731)] = 14170, - [SMALL_STATE(732)] = 14177, - [SMALL_STATE(733)] = 14182, - [SMALL_STATE(734)] = 14189, - [SMALL_STATE(735)] = 14194, - [SMALL_STATE(736)] = 14199, - [SMALL_STATE(737)] = 14206, - [SMALL_STATE(738)] = 14213, - [SMALL_STATE(739)] = 14218, - [SMALL_STATE(740)] = 14223, - [SMALL_STATE(741)] = 14228, - [SMALL_STATE(742)] = 14235, - [SMALL_STATE(743)] = 14240, - [SMALL_STATE(744)] = 14245, - [SMALL_STATE(745)] = 14252, - [SMALL_STATE(746)] = 14257, - [SMALL_STATE(747)] = 14262, - [SMALL_STATE(748)] = 14269, - [SMALL_STATE(749)] = 14274, - [SMALL_STATE(750)] = 14281, - [SMALL_STATE(751)] = 14286, - [SMALL_STATE(752)] = 14291, - [SMALL_STATE(753)] = 14296, - [SMALL_STATE(754)] = 14301, - [SMALL_STATE(755)] = 14308, - [SMALL_STATE(756)] = 14315, - [SMALL_STATE(757)] = 14322, - [SMALL_STATE(758)] = 14329, - [SMALL_STATE(759)] = 14336, - [SMALL_STATE(760)] = 14343, - [SMALL_STATE(761)] = 14350, - [SMALL_STATE(762)] = 14357, - [SMALL_STATE(763)] = 14362, - [SMALL_STATE(764)] = 14369, - [SMALL_STATE(765)] = 14376, - [SMALL_STATE(766)] = 14383, - [SMALL_STATE(767)] = 14390, - [SMALL_STATE(768)] = 14397, - [SMALL_STATE(769)] = 14404, - [SMALL_STATE(770)] = 14409, - [SMALL_STATE(771)] = 14416, - [SMALL_STATE(772)] = 14423, - [SMALL_STATE(773)] = 14430, - [SMALL_STATE(774)] = 14435, - [SMALL_STATE(775)] = 14442, - [SMALL_STATE(776)] = 14447, - [SMALL_STATE(777)] = 14452, - [SMALL_STATE(778)] = 14459, - [SMALL_STATE(779)] = 14464, - [SMALL_STATE(780)] = 14469, - [SMALL_STATE(781)] = 14476, - [SMALL_STATE(782)] = 14483, - [SMALL_STATE(783)] = 14490, - [SMALL_STATE(784)] = 14497, - [SMALL_STATE(785)] = 14502, - [SMALL_STATE(786)] = 14507, - [SMALL_STATE(787)] = 14512, - [SMALL_STATE(788)] = 14517, - [SMALL_STATE(789)] = 14522, - [SMALL_STATE(790)] = 14527, - [SMALL_STATE(791)] = 14532, - [SMALL_STATE(792)] = 14539, - [SMALL_STATE(793)] = 14544, - [SMALL_STATE(794)] = 14549, - [SMALL_STATE(795)] = 14554, - [SMALL_STATE(796)] = 14559, - [SMALL_STATE(797)] = 14564, - [SMALL_STATE(798)] = 14569, - [SMALL_STATE(799)] = 14574, - [SMALL_STATE(800)] = 14581, - [SMALL_STATE(801)] = 14588, - [SMALL_STATE(802)] = 14593, - [SMALL_STATE(803)] = 14598, - [SMALL_STATE(804)] = 14605, - [SMALL_STATE(805)] = 14610, - [SMALL_STATE(806)] = 14615, - [SMALL_STATE(807)] = 14620, - [SMALL_STATE(808)] = 14625, - [SMALL_STATE(809)] = 14630, - [SMALL_STATE(810)] = 14635, - [SMALL_STATE(811)] = 14640, - [SMALL_STATE(812)] = 14645, - [SMALL_STATE(813)] = 14650, - [SMALL_STATE(814)] = 14655, - [SMALL_STATE(815)] = 14660, - [SMALL_STATE(816)] = 14665, - [SMALL_STATE(817)] = 14670, - [SMALL_STATE(818)] = 14675, - [SMALL_STATE(819)] = 14680, - [SMALL_STATE(820)] = 14687, - [SMALL_STATE(821)] = 14692, - [SMALL_STATE(822)] = 14697, - [SMALL_STATE(823)] = 14702, - [SMALL_STATE(824)] = 14709, - [SMALL_STATE(825)] = 14714, - [SMALL_STATE(826)] = 14719, - [SMALL_STATE(827)] = 14724, - [SMALL_STATE(828)] = 14729, - [SMALL_STATE(829)] = 14734, - [SMALL_STATE(830)] = 14739, - [SMALL_STATE(831)] = 14744, - [SMALL_STATE(832)] = 14749, - [SMALL_STATE(833)] = 14754, - [SMALL_STATE(834)] = 14759, - [SMALL_STATE(835)] = 14766, - [SMALL_STATE(836)] = 14773, - [SMALL_STATE(837)] = 14780, - [SMALL_STATE(838)] = 14785, - [SMALL_STATE(839)] = 14790, - [SMALL_STATE(840)] = 14797, - [SMALL_STATE(841)] = 14804, - [SMALL_STATE(842)] = 14811, - [SMALL_STATE(843)] = 14816, - [SMALL_STATE(844)] = 14821, - [SMALL_STATE(845)] = 14826, - [SMALL_STATE(846)] = 14831, - [SMALL_STATE(847)] = 14838, - [SMALL_STATE(848)] = 14845, - [SMALL_STATE(849)] = 14852, - [SMALL_STATE(850)] = 14859, - [SMALL_STATE(851)] = 14866, - [SMALL_STATE(852)] = 14873, - [SMALL_STATE(853)] = 14880, - [SMALL_STATE(854)] = 14887, - [SMALL_STATE(855)] = 14892, - [SMALL_STATE(856)] = 14897, - [SMALL_STATE(857)] = 14902, - [SMALL_STATE(858)] = 14907, - [SMALL_STATE(859)] = 14914, - [SMALL_STATE(860)] = 14921, - [SMALL_STATE(861)] = 14928, - [SMALL_STATE(862)] = 14933, - [SMALL_STATE(863)] = 14938, - [SMALL_STATE(864)] = 14945, - [SMALL_STATE(865)] = 14952, - [SMALL_STATE(866)] = 14959, - [SMALL_STATE(867)] = 14964, - [SMALL_STATE(868)] = 14969, - [SMALL_STATE(869)] = 14974, - [SMALL_STATE(870)] = 14981, - [SMALL_STATE(871)] = 14988, - [SMALL_STATE(872)] = 14995, - [SMALL_STATE(873)] = 15000, - [SMALL_STATE(874)] = 15005, - [SMALL_STATE(875)] = 15012, - [SMALL_STATE(876)] = 15019, - [SMALL_STATE(877)] = 15026, - [SMALL_STATE(878)] = 15033, - [SMALL_STATE(879)] = 15040, - [SMALL_STATE(880)] = 15047, - [SMALL_STATE(881)] = 15054, - [SMALL_STATE(882)] = 15061, - [SMALL_STATE(883)] = 15068, - [SMALL_STATE(884)] = 15075, - [SMALL_STATE(885)] = 15082, - [SMALL_STATE(886)] = 15089, - [SMALL_STATE(887)] = 15096, - [SMALL_STATE(888)] = 15103, - [SMALL_STATE(889)] = 15110, - [SMALL_STATE(890)] = 15117, - [SMALL_STATE(891)] = 15122, - [SMALL_STATE(892)] = 15127, - [SMALL_STATE(893)] = 15132, - [SMALL_STATE(894)] = 15137, - [SMALL_STATE(895)] = 15142, - [SMALL_STATE(896)] = 15146, - [SMALL_STATE(897)] = 15150, - [SMALL_STATE(898)] = 15154, - [SMALL_STATE(899)] = 15158, - [SMALL_STATE(900)] = 15162, - [SMALL_STATE(901)] = 15166, - [SMALL_STATE(902)] = 15170, - [SMALL_STATE(903)] = 15174, - [SMALL_STATE(904)] = 15178, - [SMALL_STATE(905)] = 15182, - [SMALL_STATE(906)] = 15186, - [SMALL_STATE(907)] = 15190, - [SMALL_STATE(908)] = 15194, - [SMALL_STATE(909)] = 15198, - [SMALL_STATE(910)] = 15202, - [SMALL_STATE(911)] = 15206, - [SMALL_STATE(912)] = 15210, - [SMALL_STATE(913)] = 15214, - [SMALL_STATE(914)] = 15218, - [SMALL_STATE(915)] = 15222, - [SMALL_STATE(916)] = 15226, - [SMALL_STATE(917)] = 15230, - [SMALL_STATE(918)] = 15234, - [SMALL_STATE(919)] = 15238, - [SMALL_STATE(920)] = 15242, - [SMALL_STATE(921)] = 15246, - [SMALL_STATE(922)] = 15250, - [SMALL_STATE(923)] = 15254, - [SMALL_STATE(924)] = 15258, - [SMALL_STATE(925)] = 15262, - [SMALL_STATE(926)] = 15266, - [SMALL_STATE(927)] = 15270, - [SMALL_STATE(928)] = 15274, - [SMALL_STATE(929)] = 15278, - [SMALL_STATE(930)] = 15282, - [SMALL_STATE(931)] = 15286, - [SMALL_STATE(932)] = 15290, - [SMALL_STATE(933)] = 15294, - [SMALL_STATE(934)] = 15298, - [SMALL_STATE(935)] = 15302, - [SMALL_STATE(936)] = 15306, - [SMALL_STATE(937)] = 15310, - [SMALL_STATE(938)] = 15314, - [SMALL_STATE(939)] = 15318, - [SMALL_STATE(940)] = 15322, - [SMALL_STATE(941)] = 15326, - [SMALL_STATE(942)] = 15330, - [SMALL_STATE(943)] = 15334, - [SMALL_STATE(944)] = 15338, - [SMALL_STATE(945)] = 15342, - [SMALL_STATE(946)] = 15346, - [SMALL_STATE(947)] = 15350, - [SMALL_STATE(948)] = 15354, - [SMALL_STATE(949)] = 15358, - [SMALL_STATE(950)] = 15362, - [SMALL_STATE(951)] = 15366, - [SMALL_STATE(952)] = 15370, - [SMALL_STATE(953)] = 15374, - [SMALL_STATE(954)] = 15378, - [SMALL_STATE(955)] = 15382, - [SMALL_STATE(956)] = 15386, - [SMALL_STATE(957)] = 15390, - [SMALL_STATE(958)] = 15394, - [SMALL_STATE(959)] = 15398, - [SMALL_STATE(960)] = 15402, - [SMALL_STATE(961)] = 15406, - [SMALL_STATE(962)] = 15410, - [SMALL_STATE(963)] = 15414, - [SMALL_STATE(964)] = 15418, - [SMALL_STATE(965)] = 15422, - [SMALL_STATE(966)] = 15426, - [SMALL_STATE(967)] = 15430, - [SMALL_STATE(968)] = 15434, - [SMALL_STATE(969)] = 15438, - [SMALL_STATE(970)] = 15442, - [SMALL_STATE(971)] = 15446, - [SMALL_STATE(972)] = 15450, - [SMALL_STATE(973)] = 15454, - [SMALL_STATE(974)] = 15458, - [SMALL_STATE(975)] = 15462, - [SMALL_STATE(976)] = 15466, - [SMALL_STATE(977)] = 15470, - [SMALL_STATE(978)] = 15474, - [SMALL_STATE(979)] = 15478, - [SMALL_STATE(980)] = 15482, - [SMALL_STATE(981)] = 15486, - [SMALL_STATE(982)] = 15490, - [SMALL_STATE(983)] = 15494, - [SMALL_STATE(984)] = 15498, - [SMALL_STATE(985)] = 15502, - [SMALL_STATE(986)] = 15506, - [SMALL_STATE(987)] = 15510, - [SMALL_STATE(988)] = 15514, - [SMALL_STATE(989)] = 15518, - [SMALL_STATE(990)] = 15522, - [SMALL_STATE(991)] = 15526, - [SMALL_STATE(992)] = 15530, - [SMALL_STATE(993)] = 15534, - [SMALL_STATE(994)] = 15538, - [SMALL_STATE(995)] = 15542, - [SMALL_STATE(996)] = 15546, - [SMALL_STATE(997)] = 15550, - [SMALL_STATE(998)] = 15554, - [SMALL_STATE(999)] = 15558, - [SMALL_STATE(1000)] = 15562, - [SMALL_STATE(1001)] = 15566, - [SMALL_STATE(1002)] = 15570, - [SMALL_STATE(1003)] = 15574, - [SMALL_STATE(1004)] = 15578, - [SMALL_STATE(1005)] = 15582, - [SMALL_STATE(1006)] = 15586, - [SMALL_STATE(1007)] = 15590, - [SMALL_STATE(1008)] = 15594, - [SMALL_STATE(1009)] = 15598, - [SMALL_STATE(1010)] = 15602, - [SMALL_STATE(1011)] = 15606, - [SMALL_STATE(1012)] = 15610, - [SMALL_STATE(1013)] = 15614, - [SMALL_STATE(1014)] = 15618, - [SMALL_STATE(1015)] = 15622, - [SMALL_STATE(1016)] = 15626, - [SMALL_STATE(1017)] = 15630, - [SMALL_STATE(1018)] = 15634, - [SMALL_STATE(1019)] = 15638, - [SMALL_STATE(1020)] = 15642, - [SMALL_STATE(1021)] = 15646, - [SMALL_STATE(1022)] = 15650, - [SMALL_STATE(1023)] = 15654, - [SMALL_STATE(1024)] = 15658, - [SMALL_STATE(1025)] = 15662, - [SMALL_STATE(1026)] = 15666, - [SMALL_STATE(1027)] = 15670, - [SMALL_STATE(1028)] = 15674, - [SMALL_STATE(1029)] = 15678, - [SMALL_STATE(1030)] = 15682, - [SMALL_STATE(1031)] = 15686, - [SMALL_STATE(1032)] = 15690, - [SMALL_STATE(1033)] = 15694, - [SMALL_STATE(1034)] = 15698, - [SMALL_STATE(1035)] = 15702, - [SMALL_STATE(1036)] = 15706, - [SMALL_STATE(1037)] = 15710, - [SMALL_STATE(1038)] = 15714, - [SMALL_STATE(1039)] = 15718, - [SMALL_STATE(1040)] = 15722, - [SMALL_STATE(1041)] = 15726, - [SMALL_STATE(1042)] = 15730, - [SMALL_STATE(1043)] = 15734, - [SMALL_STATE(1044)] = 15738, - [SMALL_STATE(1045)] = 15742, - [SMALL_STATE(1046)] = 15746, - [SMALL_STATE(1047)] = 15750, - [SMALL_STATE(1048)] = 15754, - [SMALL_STATE(1049)] = 15758, - [SMALL_STATE(1050)] = 15762, - [SMALL_STATE(1051)] = 15766, - [SMALL_STATE(1052)] = 15770, - [SMALL_STATE(1053)] = 15774, - [SMALL_STATE(1054)] = 15778, - [SMALL_STATE(1055)] = 15782, - [SMALL_STATE(1056)] = 15786, - [SMALL_STATE(1057)] = 15790, - [SMALL_STATE(1058)] = 15794, - [SMALL_STATE(1059)] = 15798, - [SMALL_STATE(1060)] = 15802, - [SMALL_STATE(1061)] = 15806, - [SMALL_STATE(1062)] = 15810, - [SMALL_STATE(1063)] = 15814, - [SMALL_STATE(1064)] = 15818, - [SMALL_STATE(1065)] = 15822, - [SMALL_STATE(1066)] = 15826, - [SMALL_STATE(1067)] = 15830, - [SMALL_STATE(1068)] = 15834, - [SMALL_STATE(1069)] = 15838, - [SMALL_STATE(1070)] = 15842, - [SMALL_STATE(1071)] = 15846, - [SMALL_STATE(1072)] = 15850, - [SMALL_STATE(1073)] = 15854, - [SMALL_STATE(1074)] = 15858, - [SMALL_STATE(1075)] = 15862, - [SMALL_STATE(1076)] = 15866, - [SMALL_STATE(1077)] = 15870, - [SMALL_STATE(1078)] = 15874, - [SMALL_STATE(1079)] = 15878, - [SMALL_STATE(1080)] = 15882, - [SMALL_STATE(1081)] = 15886, - [SMALL_STATE(1082)] = 15890, - [SMALL_STATE(1083)] = 15894, - [SMALL_STATE(1084)] = 15898, - [SMALL_STATE(1085)] = 15902, - [SMALL_STATE(1086)] = 15906, - [SMALL_STATE(1087)] = 15910, - [SMALL_STATE(1088)] = 15914, - [SMALL_STATE(1089)] = 15918, - [SMALL_STATE(1090)] = 15922, - [SMALL_STATE(1091)] = 15926, - [SMALL_STATE(1092)] = 15930, - [SMALL_STATE(1093)] = 15934, - [SMALL_STATE(1094)] = 15938, - [SMALL_STATE(1095)] = 15942, - [SMALL_STATE(1096)] = 15946, - [SMALL_STATE(1097)] = 15950, - [SMALL_STATE(1098)] = 15954, - [SMALL_STATE(1099)] = 15958, - [SMALL_STATE(1100)] = 15962, - [SMALL_STATE(1101)] = 15966, - [SMALL_STATE(1102)] = 15970, - [SMALL_STATE(1103)] = 15974, - [SMALL_STATE(1104)] = 15978, - [SMALL_STATE(1105)] = 15982, - [SMALL_STATE(1106)] = 15986, - [SMALL_STATE(1107)] = 15990, - [SMALL_STATE(1108)] = 15994, - [SMALL_STATE(1109)] = 15998, - [SMALL_STATE(1110)] = 16002, - [SMALL_STATE(1111)] = 16006, - [SMALL_STATE(1112)] = 16010, - [SMALL_STATE(1113)] = 16014, - [SMALL_STATE(1114)] = 16018, - [SMALL_STATE(1115)] = 16022, - [SMALL_STATE(1116)] = 16026, - [SMALL_STATE(1117)] = 16030, - [SMALL_STATE(1118)] = 16034, - [SMALL_STATE(1119)] = 16038, - [SMALL_STATE(1120)] = 16042, - [SMALL_STATE(1121)] = 16046, - [SMALL_STATE(1122)] = 16050, - [SMALL_STATE(1123)] = 16054, - [SMALL_STATE(1124)] = 16058, - [SMALL_STATE(1125)] = 16062, - [SMALL_STATE(1126)] = 16066, - [SMALL_STATE(1127)] = 16070, - [SMALL_STATE(1128)] = 16074, - [SMALL_STATE(1129)] = 16078, - [SMALL_STATE(1130)] = 16082, - [SMALL_STATE(1131)] = 16086, - [SMALL_STATE(1132)] = 16090, - [SMALL_STATE(1133)] = 16094, - [SMALL_STATE(1134)] = 16098, - [SMALL_STATE(1135)] = 16102, - [SMALL_STATE(1136)] = 16106, - [SMALL_STATE(1137)] = 16110, - [SMALL_STATE(1138)] = 16114, - [SMALL_STATE(1139)] = 16118, - [SMALL_STATE(1140)] = 16122, - [SMALL_STATE(1141)] = 16126, - [SMALL_STATE(1142)] = 16130, - [SMALL_STATE(1143)] = 16134, - [SMALL_STATE(1144)] = 16138, - [SMALL_STATE(1145)] = 16142, - [SMALL_STATE(1146)] = 16146, - [SMALL_STATE(1147)] = 16150, - [SMALL_STATE(1148)] = 16154, - [SMALL_STATE(1149)] = 16158, - [SMALL_STATE(1150)] = 16162, - [SMALL_STATE(1151)] = 16166, - [SMALL_STATE(1152)] = 16170, - [SMALL_STATE(1153)] = 16174, + [SMALL_STATE(67)] = 74, + [SMALL_STATE(68)] = 148, + [SMALL_STATE(69)] = 215, + [SMALL_STATE(70)] = 282, + [SMALL_STATE(71)] = 333, + [SMALL_STATE(72)] = 384, + [SMALL_STATE(73)] = 432, + [SMALL_STATE(74)] = 480, + [SMALL_STATE(75)] = 526, + [SMALL_STATE(76)] = 572, + [SMALL_STATE(77)] = 618, + [SMALL_STATE(78)] = 666, + [SMALL_STATE(79)] = 714, + [SMALL_STATE(80)] = 762, + [SMALL_STATE(81)] = 810, + [SMALL_STATE(82)] = 856, + [SMALL_STATE(83)] = 904, + [SMALL_STATE(84)] = 950, + [SMALL_STATE(85)] = 998, + [SMALL_STATE(86)] = 1044, + [SMALL_STATE(87)] = 1092, + [SMALL_STATE(88)] = 1140, + [SMALL_STATE(89)] = 1188, + [SMALL_STATE(90)] = 1234, + [SMALL_STATE(91)] = 1280, + [SMALL_STATE(92)] = 1328, + [SMALL_STATE(93)] = 1376, + [SMALL_STATE(94)] = 1424, + [SMALL_STATE(95)] = 1472, + [SMALL_STATE(96)] = 1520, + [SMALL_STATE(97)] = 1566, + [SMALL_STATE(98)] = 1612, + [SMALL_STATE(99)] = 1658, + [SMALL_STATE(100)] = 1704, + [SMALL_STATE(101)] = 1752, + [SMALL_STATE(102)] = 1800, + [SMALL_STATE(103)] = 1848, + [SMALL_STATE(104)] = 1894, + [SMALL_STATE(105)] = 1942, + [SMALL_STATE(106)] = 1990, + [SMALL_STATE(107)] = 2038, + [SMALL_STATE(108)] = 2086, + [SMALL_STATE(109)] = 2132, + [SMALL_STATE(110)] = 2177, + [SMALL_STATE(111)] = 2222, + [SMALL_STATE(112)] = 2267, + [SMALL_STATE(113)] = 2312, + [SMALL_STATE(114)] = 2357, + [SMALL_STATE(115)] = 2402, + [SMALL_STATE(116)] = 2447, + [SMALL_STATE(117)] = 2492, + [SMALL_STATE(118)] = 2537, + [SMALL_STATE(119)] = 2582, + [SMALL_STATE(120)] = 2627, + [SMALL_STATE(121)] = 2672, + [SMALL_STATE(122)] = 2717, + [SMALL_STATE(123)] = 2762, + [SMALL_STATE(124)] = 2807, + [SMALL_STATE(125)] = 2852, + [SMALL_STATE(126)] = 2897, + [SMALL_STATE(127)] = 2942, + [SMALL_STATE(128)] = 2987, + [SMALL_STATE(129)] = 3032, + [SMALL_STATE(130)] = 3077, + [SMALL_STATE(131)] = 3122, + [SMALL_STATE(132)] = 3167, + [SMALL_STATE(133)] = 3212, + [SMALL_STATE(134)] = 3257, + [SMALL_STATE(135)] = 3302, + [SMALL_STATE(136)] = 3347, + [SMALL_STATE(137)] = 3392, + [SMALL_STATE(138)] = 3437, + [SMALL_STATE(139)] = 3482, + [SMALL_STATE(140)] = 3527, + [SMALL_STATE(141)] = 3572, + [SMALL_STATE(142)] = 3617, + [SMALL_STATE(143)] = 3662, + [SMALL_STATE(144)] = 3707, + [SMALL_STATE(145)] = 3752, + [SMALL_STATE(146)] = 3797, + [SMALL_STATE(147)] = 3842, + [SMALL_STATE(148)] = 3887, + [SMALL_STATE(149)] = 3932, + [SMALL_STATE(150)] = 3977, + [SMALL_STATE(151)] = 4022, + [SMALL_STATE(152)] = 4067, + [SMALL_STATE(153)] = 4112, + [SMALL_STATE(154)] = 4157, + [SMALL_STATE(155)] = 4202, + [SMALL_STATE(156)] = 4247, + [SMALL_STATE(157)] = 4292, + [SMALL_STATE(158)] = 4337, + [SMALL_STATE(159)] = 4382, + [SMALL_STATE(160)] = 4427, + [SMALL_STATE(161)] = 4472, + [SMALL_STATE(162)] = 4517, + [SMALL_STATE(163)] = 4562, + [SMALL_STATE(164)] = 4607, + [SMALL_STATE(165)] = 4652, + [SMALL_STATE(166)] = 4697, + [SMALL_STATE(167)] = 4742, + [SMALL_STATE(168)] = 4787, + [SMALL_STATE(169)] = 4832, + [SMALL_STATE(170)] = 4877, + [SMALL_STATE(171)] = 4922, + [SMALL_STATE(172)] = 4967, + [SMALL_STATE(173)] = 5012, + [SMALL_STATE(174)] = 5057, + [SMALL_STATE(175)] = 5102, + [SMALL_STATE(176)] = 5147, + [SMALL_STATE(177)] = 5192, + [SMALL_STATE(178)] = 5237, + [SMALL_STATE(179)] = 5282, + [SMALL_STATE(180)] = 5327, + [SMALL_STATE(181)] = 5372, + [SMALL_STATE(182)] = 5417, + [SMALL_STATE(183)] = 5462, + [SMALL_STATE(184)] = 5507, + [SMALL_STATE(185)] = 5552, + [SMALL_STATE(186)] = 5597, + [SMALL_STATE(187)] = 5642, + [SMALL_STATE(188)] = 5687, + [SMALL_STATE(189)] = 5732, + [SMALL_STATE(190)] = 5777, + [SMALL_STATE(191)] = 5822, + [SMALL_STATE(192)] = 5867, + [SMALL_STATE(193)] = 5912, + [SMALL_STATE(194)] = 5957, + [SMALL_STATE(195)] = 6002, + [SMALL_STATE(196)] = 6047, + [SMALL_STATE(197)] = 6092, + [SMALL_STATE(198)] = 6137, + [SMALL_STATE(199)] = 6182, + [SMALL_STATE(200)] = 6227, + [SMALL_STATE(201)] = 6272, + [SMALL_STATE(202)] = 6317, + [SMALL_STATE(203)] = 6362, + [SMALL_STATE(204)] = 6407, + [SMALL_STATE(205)] = 6452, + [SMALL_STATE(206)] = 6497, + [SMALL_STATE(207)] = 6542, + [SMALL_STATE(208)] = 6587, + [SMALL_STATE(209)] = 6635, + [SMALL_STATE(210)] = 6679, + [SMALL_STATE(211)] = 6722, + [SMALL_STATE(212)] = 6773, + [SMALL_STATE(213)] = 6824, + [SMALL_STATE(214)] = 6875, + [SMALL_STATE(215)] = 6926, + [SMALL_STATE(216)] = 6977, + [SMALL_STATE(217)] = 7028, + [SMALL_STATE(218)] = 7079, + [SMALL_STATE(219)] = 7130, + [SMALL_STATE(220)] = 7181, + [SMALL_STATE(221)] = 7232, + [SMALL_STATE(222)] = 7280, + [SMALL_STATE(223)] = 7328, + [SMALL_STATE(224)] = 7376, + [SMALL_STATE(225)] = 7424, + [SMALL_STATE(226)] = 7472, + [SMALL_STATE(227)] = 7498, + [SMALL_STATE(228)] = 7524, + [SMALL_STATE(229)] = 7549, + [SMALL_STATE(230)] = 7588, + [SMALL_STATE(231)] = 7613, + [SMALL_STATE(232)] = 7634, + [SMALL_STATE(233)] = 7668, + [SMALL_STATE(234)] = 7706, + [SMALL_STATE(235)] = 7744, + [SMALL_STATE(236)] = 7764, + [SMALL_STATE(237)] = 7796, + [SMALL_STATE(238)] = 7827, + [SMALL_STATE(239)] = 7858, + [SMALL_STATE(240)] = 7889, + [SMALL_STATE(241)] = 7920, + [SMALL_STATE(242)] = 7951, + [SMALL_STATE(243)] = 7982, + [SMALL_STATE(244)] = 8013, + [SMALL_STATE(245)] = 8044, + [SMALL_STATE(246)] = 8070, + [SMALL_STATE(247)] = 8098, + [SMALL_STATE(248)] = 8124, + [SMALL_STATE(249)] = 8150, + [SMALL_STATE(250)] = 8176, + [SMALL_STATE(251)] = 8202, + [SMALL_STATE(252)] = 8233, + [SMALL_STATE(253)] = 8264, + [SMALL_STATE(254)] = 8289, + [SMALL_STATE(255)] = 8320, + [SMALL_STATE(256)] = 8351, + [SMALL_STATE(257)] = 8376, + [SMALL_STATE(258)] = 8401, + [SMALL_STATE(259)] = 8432, + [SMALL_STATE(260)] = 8457, + [SMALL_STATE(261)] = 8482, + [SMALL_STATE(262)] = 8513, + [SMALL_STATE(263)] = 8538, + [SMALL_STATE(264)] = 8563, + [SMALL_STATE(265)] = 8594, + [SMALL_STATE(266)] = 8625, + [SMALL_STATE(267)] = 8650, + [SMALL_STATE(268)] = 8681, + [SMALL_STATE(269)] = 8712, + [SMALL_STATE(270)] = 8737, + [SMALL_STATE(271)] = 8768, + [SMALL_STATE(272)] = 8788, + [SMALL_STATE(273)] = 8810, + [SMALL_STATE(274)] = 8830, + [SMALL_STATE(275)] = 8849, + [SMALL_STATE(276)] = 8868, + [SMALL_STATE(277)] = 8887, + [SMALL_STATE(278)] = 8906, + [SMALL_STATE(279)] = 8925, + [SMALL_STATE(280)] = 8944, + [SMALL_STATE(281)] = 8958, + [SMALL_STATE(282)] = 8972, + [SMALL_STATE(283)] = 8988, + [SMALL_STATE(284)] = 9002, + [SMALL_STATE(285)] = 9018, + [SMALL_STATE(286)] = 9043, + [SMALL_STATE(287)] = 9054, + [SMALL_STATE(288)] = 9079, + [SMALL_STATE(289)] = 9102, + [SMALL_STATE(290)] = 9125, + [SMALL_STATE(291)] = 9148, + [SMALL_STATE(292)] = 9171, + [SMALL_STATE(293)] = 9196, + [SMALL_STATE(294)] = 9219, + [SMALL_STATE(295)] = 9232, + [SMALL_STATE(296)] = 9255, + [SMALL_STATE(297)] = 9278, + [SMALL_STATE(298)] = 9303, + [SMALL_STATE(299)] = 9326, + [SMALL_STATE(300)] = 9349, + [SMALL_STATE(301)] = 9372, + [SMALL_STATE(302)] = 9395, + [SMALL_STATE(303)] = 9420, + [SMALL_STATE(304)] = 9443, + [SMALL_STATE(305)] = 9468, + [SMALL_STATE(306)] = 9491, + [SMALL_STATE(307)] = 9514, + [SMALL_STATE(308)] = 9527, + [SMALL_STATE(309)] = 9538, + [SMALL_STATE(310)] = 9549, + [SMALL_STATE(311)] = 9560, + [SMALL_STATE(312)] = 9571, + [SMALL_STATE(313)] = 9582, + [SMALL_STATE(314)] = 9593, + [SMALL_STATE(315)] = 9604, + [SMALL_STATE(316)] = 9627, + [SMALL_STATE(317)] = 9649, + [SMALL_STATE(318)] = 9671, + [SMALL_STATE(319)] = 9693, + [SMALL_STATE(320)] = 9715, + [SMALL_STATE(321)] = 9737, + [SMALL_STATE(322)] = 9747, + [SMALL_STATE(323)] = 9769, + [SMALL_STATE(324)] = 9791, + [SMALL_STATE(325)] = 9813, + [SMALL_STATE(326)] = 9823, + [SMALL_STATE(327)] = 9833, + [SMALL_STATE(328)] = 9843, + [SMALL_STATE(329)] = 9865, + [SMALL_STATE(330)] = 9887, + [SMALL_STATE(331)] = 9909, + [SMALL_STATE(332)] = 9931, + [SMALL_STATE(333)] = 9941, + [SMALL_STATE(334)] = 9951, + [SMALL_STATE(335)] = 9973, + [SMALL_STATE(336)] = 9983, + [SMALL_STATE(337)] = 9993, + [SMALL_STATE(338)] = 10015, + [SMALL_STATE(339)] = 10025, + [SMALL_STATE(340)] = 10035, + [SMALL_STATE(341)] = 10045, + [SMALL_STATE(342)] = 10055, + [SMALL_STATE(343)] = 10077, + [SMALL_STATE(344)] = 10087, + [SMALL_STATE(345)] = 10097, + [SMALL_STATE(346)] = 10117, + [SMALL_STATE(347)] = 10137, + [SMALL_STATE(348)] = 10159, + [SMALL_STATE(349)] = 10181, + [SMALL_STATE(350)] = 10203, + [SMALL_STATE(351)] = 10222, + [SMALL_STATE(352)] = 10241, + [SMALL_STATE(353)] = 10260, + [SMALL_STATE(354)] = 10279, + [SMALL_STATE(355)] = 10298, + [SMALL_STATE(356)] = 10317, + [SMALL_STATE(357)] = 10336, + [SMALL_STATE(358)] = 10351, + [SMALL_STATE(359)] = 10360, + [SMALL_STATE(360)] = 10379, + [SMALL_STATE(361)] = 10388, + [SMALL_STATE(362)] = 10407, + [SMALL_STATE(363)] = 10416, + [SMALL_STATE(364)] = 10435, + [SMALL_STATE(365)] = 10454, + [SMALL_STATE(366)] = 10469, + [SMALL_STATE(367)] = 10488, + [SMALL_STATE(368)] = 10507, + [SMALL_STATE(369)] = 10526, + [SMALL_STATE(370)] = 10541, + [SMALL_STATE(371)] = 10560, + [SMALL_STATE(372)] = 10579, + [SMALL_STATE(373)] = 10598, + [SMALL_STATE(374)] = 10617, + [SMALL_STATE(375)] = 10636, + [SMALL_STATE(376)] = 10655, + [SMALL_STATE(377)] = 10674, + [SMALL_STATE(378)] = 10693, + [SMALL_STATE(379)] = 10712, + [SMALL_STATE(380)] = 10731, + [SMALL_STATE(381)] = 10750, + [SMALL_STATE(382)] = 10769, + [SMALL_STATE(383)] = 10788, + [SMALL_STATE(384)] = 10807, + [SMALL_STATE(385)] = 10826, + [SMALL_STATE(386)] = 10845, + [SMALL_STATE(387)] = 10864, + [SMALL_STATE(388)] = 10883, + [SMALL_STATE(389)] = 10902, + [SMALL_STATE(390)] = 10921, + [SMALL_STATE(391)] = 10940, + [SMALL_STATE(392)] = 10959, + [SMALL_STATE(393)] = 10978, + [SMALL_STATE(394)] = 10997, + [SMALL_STATE(395)] = 11016, + [SMALL_STATE(396)] = 11035, + [SMALL_STATE(397)] = 11054, + [SMALL_STATE(398)] = 11073, + [SMALL_STATE(399)] = 11082, + [SMALL_STATE(400)] = 11097, + [SMALL_STATE(401)] = 11106, + [SMALL_STATE(402)] = 11125, + [SMALL_STATE(403)] = 11144, + [SMALL_STATE(404)] = 11153, + [SMALL_STATE(405)] = 11172, + [SMALL_STATE(406)] = 11181, + [SMALL_STATE(407)] = 11200, + [SMALL_STATE(408)] = 11215, + [SMALL_STATE(409)] = 11234, + [SMALL_STATE(410)] = 11243, + [SMALL_STATE(411)] = 11262, + [SMALL_STATE(412)] = 11281, + [SMALL_STATE(413)] = 11300, + [SMALL_STATE(414)] = 11319, + [SMALL_STATE(415)] = 11338, + [SMALL_STATE(416)] = 11347, + [SMALL_STATE(417)] = 11366, + [SMALL_STATE(418)] = 11380, + [SMALL_STATE(419)] = 11394, + [SMALL_STATE(420)] = 11408, + [SMALL_STATE(421)] = 11420, + [SMALL_STATE(422)] = 11432, + [SMALL_STATE(423)] = 11444, + [SMALL_STATE(424)] = 11457, + [SMALL_STATE(425)] = 11470, + [SMALL_STATE(426)] = 11483, + [SMALL_STATE(427)] = 11496, + [SMALL_STATE(428)] = 11509, + [SMALL_STATE(429)] = 11522, + [SMALL_STATE(430)] = 11535, + [SMALL_STATE(431)] = 11548, + [SMALL_STATE(432)] = 11561, + [SMALL_STATE(433)] = 11574, + [SMALL_STATE(434)] = 11587, + [SMALL_STATE(435)] = 11600, + [SMALL_STATE(436)] = 11613, + [SMALL_STATE(437)] = 11626, + [SMALL_STATE(438)] = 11639, + [SMALL_STATE(439)] = 11652, + [SMALL_STATE(440)] = 11665, + [SMALL_STATE(441)] = 11676, + [SMALL_STATE(442)] = 11687, + [SMALL_STATE(443)] = 11700, + [SMALL_STATE(444)] = 11711, + [SMALL_STATE(445)] = 11720, + [SMALL_STATE(446)] = 11731, + [SMALL_STATE(447)] = 11742, + [SMALL_STATE(448)] = 11751, + [SMALL_STATE(449)] = 11760, + [SMALL_STATE(450)] = 11769, + [SMALL_STATE(451)] = 11778, + [SMALL_STATE(452)] = 11787, + [SMALL_STATE(453)] = 11796, + [SMALL_STATE(454)] = 11805, + [SMALL_STATE(455)] = 11814, + [SMALL_STATE(456)] = 11823, + [SMALL_STATE(457)] = 11832, + [SMALL_STATE(458)] = 11841, + [SMALL_STATE(459)] = 11848, + [SMALL_STATE(460)] = 11861, + [SMALL_STATE(461)] = 11874, + [SMALL_STATE(462)] = 11887, + [SMALL_STATE(463)] = 11900, + [SMALL_STATE(464)] = 11913, + [SMALL_STATE(465)] = 11926, + [SMALL_STATE(466)] = 11939, + [SMALL_STATE(467)] = 11952, + [SMALL_STATE(468)] = 11965, + [SMALL_STATE(469)] = 11978, + [SMALL_STATE(470)] = 11991, + [SMALL_STATE(471)] = 12004, + [SMALL_STATE(472)] = 12017, + [SMALL_STATE(473)] = 12030, + [SMALL_STATE(474)] = 12043, + [SMALL_STATE(475)] = 12056, + [SMALL_STATE(476)] = 12067, + [SMALL_STATE(477)] = 12078, + [SMALL_STATE(478)] = 12089, + [SMALL_STATE(479)] = 12102, + [SMALL_STATE(480)] = 12115, + [SMALL_STATE(481)] = 12128, + [SMALL_STATE(482)] = 12141, + [SMALL_STATE(483)] = 12154, + [SMALL_STATE(484)] = 12167, + [SMALL_STATE(485)] = 12180, + [SMALL_STATE(486)] = 12193, + [SMALL_STATE(487)] = 12206, + [SMALL_STATE(488)] = 12219, + [SMALL_STATE(489)] = 12232, + [SMALL_STATE(490)] = 12245, + [SMALL_STATE(491)] = 12258, + [SMALL_STATE(492)] = 12271, + [SMALL_STATE(493)] = 12284, + [SMALL_STATE(494)] = 12297, + [SMALL_STATE(495)] = 12310, + [SMALL_STATE(496)] = 12323, + [SMALL_STATE(497)] = 12336, + [SMALL_STATE(498)] = 12349, + [SMALL_STATE(499)] = 12362, + [SMALL_STATE(500)] = 12375, + [SMALL_STATE(501)] = 12388, + [SMALL_STATE(502)] = 12401, + [SMALL_STATE(503)] = 12414, + [SMALL_STATE(504)] = 12427, + [SMALL_STATE(505)] = 12440, + [SMALL_STATE(506)] = 12453, + [SMALL_STATE(507)] = 12466, + [SMALL_STATE(508)] = 12479, + [SMALL_STATE(509)] = 12492, + [SMALL_STATE(510)] = 12505, + [SMALL_STATE(511)] = 12518, + [SMALL_STATE(512)] = 12531, + [SMALL_STATE(513)] = 12544, + [SMALL_STATE(514)] = 12557, + [SMALL_STATE(515)] = 12570, + [SMALL_STATE(516)] = 12583, + [SMALL_STATE(517)] = 12596, + [SMALL_STATE(518)] = 12609, + [SMALL_STATE(519)] = 12622, + [SMALL_STATE(520)] = 12635, + [SMALL_STATE(521)] = 12648, + [SMALL_STATE(522)] = 12661, + [SMALL_STATE(523)] = 12674, + [SMALL_STATE(524)] = 12687, + [SMALL_STATE(525)] = 12700, + [SMALL_STATE(526)] = 12713, + [SMALL_STATE(527)] = 12726, + [SMALL_STATE(528)] = 12739, + [SMALL_STATE(529)] = 12752, + [SMALL_STATE(530)] = 12765, + [SMALL_STATE(531)] = 12778, + [SMALL_STATE(532)] = 12791, + [SMALL_STATE(533)] = 12804, + [SMALL_STATE(534)] = 12817, + [SMALL_STATE(535)] = 12830, + [SMALL_STATE(536)] = 12843, + [SMALL_STATE(537)] = 12856, + [SMALL_STATE(538)] = 12869, + [SMALL_STATE(539)] = 12882, + [SMALL_STATE(540)] = 12895, + [SMALL_STATE(541)] = 12908, + [SMALL_STATE(542)] = 12921, + [SMALL_STATE(543)] = 12934, + [SMALL_STATE(544)] = 12947, + [SMALL_STATE(545)] = 12960, + [SMALL_STATE(546)] = 12966, + [SMALL_STATE(547)] = 12972, + [SMALL_STATE(548)] = 12978, + [SMALL_STATE(549)] = 12984, + [SMALL_STATE(550)] = 12990, + [SMALL_STATE(551)] = 13000, + [SMALL_STATE(552)] = 13010, + [SMALL_STATE(553)] = 13018, + [SMALL_STATE(554)] = 13028, + [SMALL_STATE(555)] = 13038, + [SMALL_STATE(556)] = 13048, + [SMALL_STATE(557)] = 13058, + [SMALL_STATE(558)] = 13068, + [SMALL_STATE(559)] = 13078, + [SMALL_STATE(560)] = 13088, + [SMALL_STATE(561)] = 13094, + [SMALL_STATE(562)] = 13100, + [SMALL_STATE(563)] = 13110, + [SMALL_STATE(564)] = 13118, + [SMALL_STATE(565)] = 13124, + [SMALL_STATE(566)] = 13132, + [SMALL_STATE(567)] = 13140, + [SMALL_STATE(568)] = 13148, + [SMALL_STATE(569)] = 13156, + [SMALL_STATE(570)] = 13166, + [SMALL_STATE(571)] = 13176, + [SMALL_STATE(572)] = 13186, + [SMALL_STATE(573)] = 13192, + [SMALL_STATE(574)] = 13198, + [SMALL_STATE(575)] = 13204, + [SMALL_STATE(576)] = 13214, + [SMALL_STATE(577)] = 13224, + [SMALL_STATE(578)] = 13230, + [SMALL_STATE(579)] = 13236, + [SMALL_STATE(580)] = 13244, + [SMALL_STATE(581)] = 13254, + [SMALL_STATE(582)] = 13264, + [SMALL_STATE(583)] = 13270, + [SMALL_STATE(584)] = 13280, + [SMALL_STATE(585)] = 13290, + [SMALL_STATE(586)] = 13296, + [SMALL_STATE(587)] = 13306, + [SMALL_STATE(588)] = 13316, + [SMALL_STATE(589)] = 13326, + [SMALL_STATE(590)] = 13332, + [SMALL_STATE(591)] = 13338, + [SMALL_STATE(592)] = 13344, + [SMALL_STATE(593)] = 13350, + [SMALL_STATE(594)] = 13356, + [SMALL_STATE(595)] = 13362, + [SMALL_STATE(596)] = 13372, + [SMALL_STATE(597)] = 13382, + [SMALL_STATE(598)] = 13392, + [SMALL_STATE(599)] = 13402, + [SMALL_STATE(600)] = 13412, + [SMALL_STATE(601)] = 13418, + [SMALL_STATE(602)] = 13424, + [SMALL_STATE(603)] = 13430, + [SMALL_STATE(604)] = 13440, + [SMALL_STATE(605)] = 13450, + [SMALL_STATE(606)] = 13456, + [SMALL_STATE(607)] = 13462, + [SMALL_STATE(608)] = 13472, + [SMALL_STATE(609)] = 13482, + [SMALL_STATE(610)] = 13488, + [SMALL_STATE(611)] = 13498, + [SMALL_STATE(612)] = 13504, + [SMALL_STATE(613)] = 13510, + [SMALL_STATE(614)] = 13516, + [SMALL_STATE(615)] = 13522, + [SMALL_STATE(616)] = 13528, + [SMALL_STATE(617)] = 13534, + [SMALL_STATE(618)] = 13542, + [SMALL_STATE(619)] = 13548, + [SMALL_STATE(620)] = 13554, + [SMALL_STATE(621)] = 13560, + [SMALL_STATE(622)] = 13566, + [SMALL_STATE(623)] = 13572, + [SMALL_STATE(624)] = 13578, + [SMALL_STATE(625)] = 13584, + [SMALL_STATE(626)] = 13590, + [SMALL_STATE(627)] = 13600, + [SMALL_STATE(628)] = 13610, + [SMALL_STATE(629)] = 13620, + [SMALL_STATE(630)] = 13630, + [SMALL_STATE(631)] = 13640, + [SMALL_STATE(632)] = 13650, + [SMALL_STATE(633)] = 13656, + [SMALL_STATE(634)] = 13662, + [SMALL_STATE(635)] = 13668, + [SMALL_STATE(636)] = 13674, + [SMALL_STATE(637)] = 13680, + [SMALL_STATE(638)] = 13686, + [SMALL_STATE(639)] = 13692, + [SMALL_STATE(640)] = 13698, + [SMALL_STATE(641)] = 13704, + [SMALL_STATE(642)] = 13710, + [SMALL_STATE(643)] = 13720, + [SMALL_STATE(644)] = 13726, + [SMALL_STATE(645)] = 13732, + [SMALL_STATE(646)] = 13738, + [SMALL_STATE(647)] = 13744, + [SMALL_STATE(648)] = 13752, + [SMALL_STATE(649)] = 13758, + [SMALL_STATE(650)] = 13764, + [SMALL_STATE(651)] = 13774, + [SMALL_STATE(652)] = 13784, + [SMALL_STATE(653)] = 13792, + [SMALL_STATE(654)] = 13802, + [SMALL_STATE(655)] = 13812, + [SMALL_STATE(656)] = 13818, + [SMALL_STATE(657)] = 13828, + [SMALL_STATE(658)] = 13836, + [SMALL_STATE(659)] = 13842, + [SMALL_STATE(660)] = 13850, + [SMALL_STATE(661)] = 13856, + [SMALL_STATE(662)] = 13862, + [SMALL_STATE(663)] = 13868, + [SMALL_STATE(664)] = 13874, + [SMALL_STATE(665)] = 13880, + [SMALL_STATE(666)] = 13886, + [SMALL_STATE(667)] = 13892, + [SMALL_STATE(668)] = 13900, + [SMALL_STATE(669)] = 13908, + [SMALL_STATE(670)] = 13914, + [SMALL_STATE(671)] = 13920, + [SMALL_STATE(672)] = 13926, + [SMALL_STATE(673)] = 13932, + [SMALL_STATE(674)] = 13938, + [SMALL_STATE(675)] = 13944, + [SMALL_STATE(676)] = 13950, + [SMALL_STATE(677)] = 13956, + [SMALL_STATE(678)] = 13962, + [SMALL_STATE(679)] = 13967, + [SMALL_STATE(680)] = 13972, + [SMALL_STATE(681)] = 13977, + [SMALL_STATE(682)] = 13982, + [SMALL_STATE(683)] = 13987, + [SMALL_STATE(684)] = 13992, + [SMALL_STATE(685)] = 13997, + [SMALL_STATE(686)] = 14002, + [SMALL_STATE(687)] = 14007, + [SMALL_STATE(688)] = 14012, + [SMALL_STATE(689)] = 14017, + [SMALL_STATE(690)] = 14022, + [SMALL_STATE(691)] = 14027, + [SMALL_STATE(692)] = 14032, + [SMALL_STATE(693)] = 14037, + [SMALL_STATE(694)] = 14042, + [SMALL_STATE(695)] = 14047, + [SMALL_STATE(696)] = 14052, + [SMALL_STATE(697)] = 14057, + [SMALL_STATE(698)] = 14062, + [SMALL_STATE(699)] = 14067, + [SMALL_STATE(700)] = 14074, + [SMALL_STATE(701)] = 14079, + [SMALL_STATE(702)] = 14084, + [SMALL_STATE(703)] = 14089, + [SMALL_STATE(704)] = 14094, + [SMALL_STATE(705)] = 14099, + [SMALL_STATE(706)] = 14106, + [SMALL_STATE(707)] = 14111, + [SMALL_STATE(708)] = 14116, + [SMALL_STATE(709)] = 14121, + [SMALL_STATE(710)] = 14126, + [SMALL_STATE(711)] = 14131, + [SMALL_STATE(712)] = 14136, + [SMALL_STATE(713)] = 14141, + [SMALL_STATE(714)] = 14146, + [SMALL_STATE(715)] = 14151, + [SMALL_STATE(716)] = 14156, + [SMALL_STATE(717)] = 14161, + [SMALL_STATE(718)] = 14166, + [SMALL_STATE(719)] = 14171, + [SMALL_STATE(720)] = 14176, + [SMALL_STATE(721)] = 14181, + [SMALL_STATE(722)] = 14186, + [SMALL_STATE(723)] = 14191, + [SMALL_STATE(724)] = 14198, + [SMALL_STATE(725)] = 14203, + [SMALL_STATE(726)] = 14210, + [SMALL_STATE(727)] = 14217, + [SMALL_STATE(728)] = 14224, + [SMALL_STATE(729)] = 14231, + [SMALL_STATE(730)] = 14238, + [SMALL_STATE(731)] = 14245, + [SMALL_STATE(732)] = 14252, + [SMALL_STATE(733)] = 14259, + [SMALL_STATE(734)] = 14266, + [SMALL_STATE(735)] = 14271, + [SMALL_STATE(736)] = 14276, + [SMALL_STATE(737)] = 14281, + [SMALL_STATE(738)] = 14286, + [SMALL_STATE(739)] = 14293, + [SMALL_STATE(740)] = 14300, + [SMALL_STATE(741)] = 14305, + [SMALL_STATE(742)] = 14312, + [SMALL_STATE(743)] = 14319, + [SMALL_STATE(744)] = 14324, + [SMALL_STATE(745)] = 14331, + [SMALL_STATE(746)] = 14336, + [SMALL_STATE(747)] = 14341, + [SMALL_STATE(748)] = 14348, + [SMALL_STATE(749)] = 14353, + [SMALL_STATE(750)] = 14358, + [SMALL_STATE(751)] = 14363, + [SMALL_STATE(752)] = 14368, + [SMALL_STATE(753)] = 14373, + [SMALL_STATE(754)] = 14378, + [SMALL_STATE(755)] = 14383, + [SMALL_STATE(756)] = 14388, + [SMALL_STATE(757)] = 14393, + [SMALL_STATE(758)] = 14398, + [SMALL_STATE(759)] = 14403, + [SMALL_STATE(760)] = 14408, + [SMALL_STATE(761)] = 14413, + [SMALL_STATE(762)] = 14418, + [SMALL_STATE(763)] = 14423, + [SMALL_STATE(764)] = 14428, + [SMALL_STATE(765)] = 14433, + [SMALL_STATE(766)] = 14438, + [SMALL_STATE(767)] = 14443, + [SMALL_STATE(768)] = 14448, + [SMALL_STATE(769)] = 14453, + [SMALL_STATE(770)] = 14458, + [SMALL_STATE(771)] = 14463, + [SMALL_STATE(772)] = 14470, + [SMALL_STATE(773)] = 14475, + [SMALL_STATE(774)] = 14480, + [SMALL_STATE(775)] = 14485, + [SMALL_STATE(776)] = 14490, + [SMALL_STATE(777)] = 14495, + [SMALL_STATE(778)] = 14502, + [SMALL_STATE(779)] = 14507, + [SMALL_STATE(780)] = 14514, + [SMALL_STATE(781)] = 14521, + [SMALL_STATE(782)] = 14526, + [SMALL_STATE(783)] = 14531, + [SMALL_STATE(784)] = 14536, + [SMALL_STATE(785)] = 14541, + [SMALL_STATE(786)] = 14548, + [SMALL_STATE(787)] = 14553, + [SMALL_STATE(788)] = 14558, + [SMALL_STATE(789)] = 14563, + [SMALL_STATE(790)] = 14568, + [SMALL_STATE(791)] = 14573, + [SMALL_STATE(792)] = 14578, + [SMALL_STATE(793)] = 14583, + [SMALL_STATE(794)] = 14590, + [SMALL_STATE(795)] = 14595, + [SMALL_STATE(796)] = 14600, + [SMALL_STATE(797)] = 14605, + [SMALL_STATE(798)] = 14610, + [SMALL_STATE(799)] = 14615, + [SMALL_STATE(800)] = 14620, + [SMALL_STATE(801)] = 14625, + [SMALL_STATE(802)] = 14630, + [SMALL_STATE(803)] = 14635, + [SMALL_STATE(804)] = 14640, + [SMALL_STATE(805)] = 14645, + [SMALL_STATE(806)] = 14652, + [SMALL_STATE(807)] = 14657, + [SMALL_STATE(808)] = 14662, + [SMALL_STATE(809)] = 14667, + [SMALL_STATE(810)] = 14672, + [SMALL_STATE(811)] = 14677, + [SMALL_STATE(812)] = 14684, + [SMALL_STATE(813)] = 14689, + [SMALL_STATE(814)] = 14696, + [SMALL_STATE(815)] = 14701, + [SMALL_STATE(816)] = 14706, + [SMALL_STATE(817)] = 14711, + [SMALL_STATE(818)] = 14716, + [SMALL_STATE(819)] = 14723, + [SMALL_STATE(820)] = 14728, + [SMALL_STATE(821)] = 14735, + [SMALL_STATE(822)] = 14742, + [SMALL_STATE(823)] = 14749, + [SMALL_STATE(824)] = 14756, + [SMALL_STATE(825)] = 14761, + [SMALL_STATE(826)] = 14766, + [SMALL_STATE(827)] = 14771, + [SMALL_STATE(828)] = 14776, + [SMALL_STATE(829)] = 14783, + [SMALL_STATE(830)] = 14790, + [SMALL_STATE(831)] = 14797, + [SMALL_STATE(832)] = 14802, + [SMALL_STATE(833)] = 14809, + [SMALL_STATE(834)] = 14814, + [SMALL_STATE(835)] = 14819, + [SMALL_STATE(836)] = 14826, + [SMALL_STATE(837)] = 14833, + [SMALL_STATE(838)] = 14838, + [SMALL_STATE(839)] = 14845, + [SMALL_STATE(840)] = 14850, + [SMALL_STATE(841)] = 14857, + [SMALL_STATE(842)] = 14864, + [SMALL_STATE(843)] = 14871, + [SMALL_STATE(844)] = 14878, + [SMALL_STATE(845)] = 14883, + [SMALL_STATE(846)] = 14890, + [SMALL_STATE(847)] = 14895, + [SMALL_STATE(848)] = 14902, + [SMALL_STATE(849)] = 14907, + [SMALL_STATE(850)] = 14912, + [SMALL_STATE(851)] = 14917, + [SMALL_STATE(852)] = 14922, + [SMALL_STATE(853)] = 14927, + [SMALL_STATE(854)] = 14934, + [SMALL_STATE(855)] = 14939, + [SMALL_STATE(856)] = 14946, + [SMALL_STATE(857)] = 14953, + [SMALL_STATE(858)] = 14960, + [SMALL_STATE(859)] = 14967, + [SMALL_STATE(860)] = 14974, + [SMALL_STATE(861)] = 14981, + [SMALL_STATE(862)] = 14988, + [SMALL_STATE(863)] = 14995, + [SMALL_STATE(864)] = 15002, + [SMALL_STATE(865)] = 15009, + [SMALL_STATE(866)] = 15016, + [SMALL_STATE(867)] = 15023, + [SMALL_STATE(868)] = 15028, + [SMALL_STATE(869)] = 15035, + [SMALL_STATE(870)] = 15042, + [SMALL_STATE(871)] = 15049, + [SMALL_STATE(872)] = 15056, + [SMALL_STATE(873)] = 15063, + [SMALL_STATE(874)] = 15070, + [SMALL_STATE(875)] = 15075, + [SMALL_STATE(876)] = 15082, + [SMALL_STATE(877)] = 15089, + [SMALL_STATE(878)] = 15096, + [SMALL_STATE(879)] = 15103, + [SMALL_STATE(880)] = 15110, + [SMALL_STATE(881)] = 15117, + [SMALL_STATE(882)] = 15124, + [SMALL_STATE(883)] = 15131, + [SMALL_STATE(884)] = 15138, + [SMALL_STATE(885)] = 15145, + [SMALL_STATE(886)] = 15152, + [SMALL_STATE(887)] = 15159, + [SMALL_STATE(888)] = 15166, + [SMALL_STATE(889)] = 15173, + [SMALL_STATE(890)] = 15180, + [SMALL_STATE(891)] = 15187, + [SMALL_STATE(892)] = 15194, + [SMALL_STATE(893)] = 15201, + [SMALL_STATE(894)] = 15206, + [SMALL_STATE(895)] = 15210, + [SMALL_STATE(896)] = 15214, + [SMALL_STATE(897)] = 15218, + [SMALL_STATE(898)] = 15222, + [SMALL_STATE(899)] = 15226, + [SMALL_STATE(900)] = 15230, + [SMALL_STATE(901)] = 15234, + [SMALL_STATE(902)] = 15238, + [SMALL_STATE(903)] = 15242, + [SMALL_STATE(904)] = 15246, + [SMALL_STATE(905)] = 15250, + [SMALL_STATE(906)] = 15254, + [SMALL_STATE(907)] = 15258, + [SMALL_STATE(908)] = 15262, + [SMALL_STATE(909)] = 15266, + [SMALL_STATE(910)] = 15270, + [SMALL_STATE(911)] = 15274, + [SMALL_STATE(912)] = 15278, + [SMALL_STATE(913)] = 15282, + [SMALL_STATE(914)] = 15286, + [SMALL_STATE(915)] = 15290, + [SMALL_STATE(916)] = 15294, + [SMALL_STATE(917)] = 15298, + [SMALL_STATE(918)] = 15302, + [SMALL_STATE(919)] = 15306, + [SMALL_STATE(920)] = 15310, + [SMALL_STATE(921)] = 15314, + [SMALL_STATE(922)] = 15318, + [SMALL_STATE(923)] = 15322, + [SMALL_STATE(924)] = 15326, + [SMALL_STATE(925)] = 15330, + [SMALL_STATE(926)] = 15334, + [SMALL_STATE(927)] = 15338, + [SMALL_STATE(928)] = 15342, + [SMALL_STATE(929)] = 15346, + [SMALL_STATE(930)] = 15350, + [SMALL_STATE(931)] = 15354, + [SMALL_STATE(932)] = 15358, + [SMALL_STATE(933)] = 15362, + [SMALL_STATE(934)] = 15366, + [SMALL_STATE(935)] = 15370, + [SMALL_STATE(936)] = 15374, + [SMALL_STATE(937)] = 15378, + [SMALL_STATE(938)] = 15382, + [SMALL_STATE(939)] = 15386, + [SMALL_STATE(940)] = 15390, + [SMALL_STATE(941)] = 15394, + [SMALL_STATE(942)] = 15398, + [SMALL_STATE(943)] = 15402, + [SMALL_STATE(944)] = 15406, + [SMALL_STATE(945)] = 15410, + [SMALL_STATE(946)] = 15414, + [SMALL_STATE(947)] = 15418, + [SMALL_STATE(948)] = 15422, + [SMALL_STATE(949)] = 15426, + [SMALL_STATE(950)] = 15430, + [SMALL_STATE(951)] = 15434, + [SMALL_STATE(952)] = 15438, + [SMALL_STATE(953)] = 15442, + [SMALL_STATE(954)] = 15446, + [SMALL_STATE(955)] = 15450, + [SMALL_STATE(956)] = 15454, + [SMALL_STATE(957)] = 15458, + [SMALL_STATE(958)] = 15462, + [SMALL_STATE(959)] = 15466, + [SMALL_STATE(960)] = 15470, + [SMALL_STATE(961)] = 15474, + [SMALL_STATE(962)] = 15478, + [SMALL_STATE(963)] = 15482, + [SMALL_STATE(964)] = 15486, + [SMALL_STATE(965)] = 15490, + [SMALL_STATE(966)] = 15494, + [SMALL_STATE(967)] = 15498, + [SMALL_STATE(968)] = 15502, + [SMALL_STATE(969)] = 15506, + [SMALL_STATE(970)] = 15510, + [SMALL_STATE(971)] = 15514, + [SMALL_STATE(972)] = 15518, + [SMALL_STATE(973)] = 15522, + [SMALL_STATE(974)] = 15526, + [SMALL_STATE(975)] = 15530, + [SMALL_STATE(976)] = 15534, + [SMALL_STATE(977)] = 15538, + [SMALL_STATE(978)] = 15542, + [SMALL_STATE(979)] = 15546, + [SMALL_STATE(980)] = 15550, + [SMALL_STATE(981)] = 15554, + [SMALL_STATE(982)] = 15558, + [SMALL_STATE(983)] = 15562, + [SMALL_STATE(984)] = 15566, + [SMALL_STATE(985)] = 15570, + [SMALL_STATE(986)] = 15574, + [SMALL_STATE(987)] = 15578, + [SMALL_STATE(988)] = 15582, + [SMALL_STATE(989)] = 15586, + [SMALL_STATE(990)] = 15590, + [SMALL_STATE(991)] = 15594, + [SMALL_STATE(992)] = 15598, + [SMALL_STATE(993)] = 15602, + [SMALL_STATE(994)] = 15606, + [SMALL_STATE(995)] = 15610, + [SMALL_STATE(996)] = 15614, + [SMALL_STATE(997)] = 15618, + [SMALL_STATE(998)] = 15622, + [SMALL_STATE(999)] = 15626, + [SMALL_STATE(1000)] = 15630, + [SMALL_STATE(1001)] = 15634, + [SMALL_STATE(1002)] = 15638, + [SMALL_STATE(1003)] = 15642, + [SMALL_STATE(1004)] = 15646, + [SMALL_STATE(1005)] = 15650, + [SMALL_STATE(1006)] = 15654, + [SMALL_STATE(1007)] = 15658, + [SMALL_STATE(1008)] = 15662, + [SMALL_STATE(1009)] = 15666, + [SMALL_STATE(1010)] = 15670, + [SMALL_STATE(1011)] = 15674, + [SMALL_STATE(1012)] = 15678, + [SMALL_STATE(1013)] = 15682, + [SMALL_STATE(1014)] = 15686, + [SMALL_STATE(1015)] = 15690, + [SMALL_STATE(1016)] = 15694, + [SMALL_STATE(1017)] = 15698, + [SMALL_STATE(1018)] = 15702, + [SMALL_STATE(1019)] = 15706, + [SMALL_STATE(1020)] = 15710, + [SMALL_STATE(1021)] = 15714, + [SMALL_STATE(1022)] = 15718, + [SMALL_STATE(1023)] = 15722, + [SMALL_STATE(1024)] = 15726, + [SMALL_STATE(1025)] = 15730, + [SMALL_STATE(1026)] = 15734, + [SMALL_STATE(1027)] = 15738, + [SMALL_STATE(1028)] = 15742, + [SMALL_STATE(1029)] = 15746, + [SMALL_STATE(1030)] = 15750, + [SMALL_STATE(1031)] = 15754, + [SMALL_STATE(1032)] = 15758, + [SMALL_STATE(1033)] = 15762, + [SMALL_STATE(1034)] = 15766, + [SMALL_STATE(1035)] = 15770, + [SMALL_STATE(1036)] = 15774, + [SMALL_STATE(1037)] = 15778, + [SMALL_STATE(1038)] = 15782, + [SMALL_STATE(1039)] = 15786, + [SMALL_STATE(1040)] = 15790, + [SMALL_STATE(1041)] = 15794, + [SMALL_STATE(1042)] = 15798, + [SMALL_STATE(1043)] = 15802, + [SMALL_STATE(1044)] = 15806, + [SMALL_STATE(1045)] = 15810, + [SMALL_STATE(1046)] = 15814, + [SMALL_STATE(1047)] = 15818, + [SMALL_STATE(1048)] = 15822, + [SMALL_STATE(1049)] = 15826, + [SMALL_STATE(1050)] = 15830, + [SMALL_STATE(1051)] = 15834, + [SMALL_STATE(1052)] = 15838, + [SMALL_STATE(1053)] = 15842, + [SMALL_STATE(1054)] = 15846, + [SMALL_STATE(1055)] = 15850, + [SMALL_STATE(1056)] = 15854, + [SMALL_STATE(1057)] = 15858, + [SMALL_STATE(1058)] = 15862, + [SMALL_STATE(1059)] = 15866, + [SMALL_STATE(1060)] = 15870, + [SMALL_STATE(1061)] = 15874, + [SMALL_STATE(1062)] = 15878, + [SMALL_STATE(1063)] = 15882, + [SMALL_STATE(1064)] = 15886, + [SMALL_STATE(1065)] = 15890, + [SMALL_STATE(1066)] = 15894, + [SMALL_STATE(1067)] = 15898, + [SMALL_STATE(1068)] = 15902, + [SMALL_STATE(1069)] = 15906, + [SMALL_STATE(1070)] = 15910, + [SMALL_STATE(1071)] = 15914, + [SMALL_STATE(1072)] = 15918, + [SMALL_STATE(1073)] = 15922, + [SMALL_STATE(1074)] = 15926, + [SMALL_STATE(1075)] = 15930, + [SMALL_STATE(1076)] = 15934, + [SMALL_STATE(1077)] = 15938, + [SMALL_STATE(1078)] = 15942, + [SMALL_STATE(1079)] = 15946, + [SMALL_STATE(1080)] = 15950, + [SMALL_STATE(1081)] = 15954, + [SMALL_STATE(1082)] = 15958, + [SMALL_STATE(1083)] = 15962, + [SMALL_STATE(1084)] = 15966, + [SMALL_STATE(1085)] = 15970, + [SMALL_STATE(1086)] = 15974, + [SMALL_STATE(1087)] = 15978, + [SMALL_STATE(1088)] = 15982, + [SMALL_STATE(1089)] = 15986, + [SMALL_STATE(1090)] = 15990, + [SMALL_STATE(1091)] = 15994, + [SMALL_STATE(1092)] = 15998, + [SMALL_STATE(1093)] = 16002, + [SMALL_STATE(1094)] = 16006, + [SMALL_STATE(1095)] = 16010, + [SMALL_STATE(1096)] = 16014, + [SMALL_STATE(1097)] = 16018, + [SMALL_STATE(1098)] = 16022, + [SMALL_STATE(1099)] = 16026, + [SMALL_STATE(1100)] = 16030, + [SMALL_STATE(1101)] = 16034, + [SMALL_STATE(1102)] = 16038, + [SMALL_STATE(1103)] = 16042, + [SMALL_STATE(1104)] = 16046, + [SMALL_STATE(1105)] = 16050, + [SMALL_STATE(1106)] = 16054, + [SMALL_STATE(1107)] = 16058, + [SMALL_STATE(1108)] = 16062, + [SMALL_STATE(1109)] = 16066, + [SMALL_STATE(1110)] = 16070, + [SMALL_STATE(1111)] = 16074, + [SMALL_STATE(1112)] = 16078, + [SMALL_STATE(1113)] = 16082, + [SMALL_STATE(1114)] = 16086, + [SMALL_STATE(1115)] = 16090, + [SMALL_STATE(1116)] = 16094, + [SMALL_STATE(1117)] = 16098, + [SMALL_STATE(1118)] = 16102, + [SMALL_STATE(1119)] = 16106, + [SMALL_STATE(1120)] = 16110, + [SMALL_STATE(1121)] = 16114, + [SMALL_STATE(1122)] = 16118, + [SMALL_STATE(1123)] = 16122, + [SMALL_STATE(1124)] = 16126, + [SMALL_STATE(1125)] = 16130, + [SMALL_STATE(1126)] = 16134, + [SMALL_STATE(1127)] = 16138, + [SMALL_STATE(1128)] = 16142, + [SMALL_STATE(1129)] = 16146, + [SMALL_STATE(1130)] = 16150, + [SMALL_STATE(1131)] = 16154, + [SMALL_STATE(1132)] = 16158, + [SMALL_STATE(1133)] = 16162, + [SMALL_STATE(1134)] = 16166, + [SMALL_STATE(1135)] = 16170, + [SMALL_STATE(1136)] = 16174, + [SMALL_STATE(1137)] = 16178, + [SMALL_STATE(1138)] = 16182, + [SMALL_STATE(1139)] = 16186, + [SMALL_STATE(1140)] = 16190, + [SMALL_STATE(1141)] = 16194, + [SMALL_STATE(1142)] = 16198, + [SMALL_STATE(1143)] = 16202, + [SMALL_STATE(1144)] = 16206, + [SMALL_STATE(1145)] = 16210, + [SMALL_STATE(1146)] = 16214, + [SMALL_STATE(1147)] = 16218, + [SMALL_STATE(1148)] = 16222, + [SMALL_STATE(1149)] = 16226, + [SMALL_STATE(1150)] = 16230, + [SMALL_STATE(1151)] = 16234, + [SMALL_STATE(1152)] = 16238, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 0, 0, 0), - [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), [75] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 1, 0, 0), - [77] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), - [79] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(250), - [82] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(819), - [85] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(227), - [88] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(273), - [91] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(173), - [94] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(261), - [97] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(850), - [100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(988), - [103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(47), - [106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(25), - [109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(42), - [112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(643), - [115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(239), - [118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(44), - [121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(22), - [124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(48), - [127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(24), - [130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(49), - [133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(26), - [136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(31), - [139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(32), - [142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(33), - [145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(35), - [148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(36), - [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(37), - [154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(38), - [157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(39), - [160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(40), - [163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(61), - [166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(238), - [169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(201), - [172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(761), - [175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(963), - [178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(767), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), - [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 2, 0, 0), - [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(254), - [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(230), - [211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(109), - [214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(1117), - [217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(64), - [220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(143), - [223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(882), - [226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(1119), - [229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(883), - [232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(254), - [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(819), - [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(230), - [255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(273), - [258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), - [260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(183), - [263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(261), - [266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(850), - [269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(1117), - [272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(47), - [275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(25), - [278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(42), - [281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(643), - [284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(239), - [287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(44), - [290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(22), - [293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(48), - [296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(24), - [299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(49), - [302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(26), - [305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(31), - [308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(32), - [311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(33), - [314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(35), - [317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(36), - [320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(37), - [323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(38), - [326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(39), - [329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(40), - [332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(64), - [335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(58), - [338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(143), - [341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(882), - [344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(1119), - [347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(883), - [350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), - [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), - [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [97] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 2, 0, 0), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), + [103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(247), + [106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(843), + [109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(273), + [112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(125), + [115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(253), + [118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(845), + [121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(997), + [124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(27), + [127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(49), + [130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(40), + [133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(652), + [136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(232), + [139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(42), + [142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(45), + [145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(46), + [148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(47), + [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(23), + [154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(24), + [157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(29), + [160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(30), + [163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(31), + [166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(33), + [169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(34), + [172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(35), + [175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(36), + [178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(37), + [181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(39), + [184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(62), + [187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(235), + [190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(121), + [193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(738), + [196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(935), + [199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(853), + [202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(252), + [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(245), + [208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(123), + [211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(1116), + [214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(59), + [217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(128), + [220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(885), + [223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(1118), + [226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(886), + [229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(264), + [232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(245), + [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(843), + [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(273), + [253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), + [255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(168), + [258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(253), + [261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(845), + [264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(1116), + [267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(27), + [270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(49), + [273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(40), + [276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(652), + [279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(232), + [282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(42), + [285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(45), + [288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(46), + [291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(47), + [294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(23), + [297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(24), + [300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(29), + [303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(30), + [306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(31), + [309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(33), + [312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(34), + [315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(35), + [318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(36), + [321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(37), + [324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(39), + [327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(59), + [330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(63), + [333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(128), + [336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(885), + [339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(1118), + [342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(886), + [345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(264), + [348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), + [366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), [404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), [416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), [428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), - [434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), - [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 1, 0, 1), - [460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 1, 0, 1), - [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), - [472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), - [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), + [434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 1, 0, 1), + [462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 1, 0, 1), + [464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), + [472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), [492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 1, 0, 0), - [494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 1, 0, 0), SHIFT_REPEAT(238), - [497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 1, 0, 0), - [499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 1, 0, 0), + [494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 1, 0, 0), SHIFT_REPEAT(235), + [497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 1, 0, 0), + [499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 1, 0, 0), [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), - [513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), - [515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(457), - [518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(761), - [521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(963), - [524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(767), - [527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(882), - [530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(1119), - [533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(883), - [536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 2, 0, 0), - [538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 2, 0, 0), - [540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_separator, 4, 0, 0), - [542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_separator, 4, 0, 0), - [544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_row, 4, 0, 0), - [546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_row, 4, 0, 0), - [548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 4, 0, 14), - [550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 4, 0, 14), - [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 4, 0, 21), - [556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 4, 0, 21), - [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 5, 0, 23), - [562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 5, 0, 23), - [564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 5, 0, 24), - [568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 5, 0, 24), - [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 5, 0, 25), - [574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 5, 0, 25), - [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_header, 5, 0, 0), - [580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_header, 5, 0, 0), - [582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_separator, 5, 0, 0), - [584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_separator, 5, 0, 0), - [586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_row, 5, 0, 0), - [588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_row, 5, 0, 0), - [590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 5, 0, 21), - [592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 5, 0, 21), - [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 6, 0, 28), - [598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 6, 0, 28), - [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 6, 0, 29), - [604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 6, 0, 29), - [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_or_two_newlines, 1, 0, 0), - [610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_or_two_newlines, 1, 0, 0), - [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heading, 3, 0, 4), - [616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heading, 3, 0, 4), - [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 3, 0, 14), - [624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 3, 0, 14), - [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_row, 2, 0, 0), - [630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_row, 2, 0, 0), - [632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 4, 0, 0), - [634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 4, 0, 0), - [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_header, 4, 0, 0), - [644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_header, 4, 0, 0), - [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 1, 0, 0), - [664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 1, 0, 0), - [666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_task, 2, 0, 0), - [668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_task, 2, 0, 0), - [670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_definition, 2, 0, 0), - [672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_definition, 2, 0, 0), - [674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_decimal_period, 2, 0, 0), - [676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_decimal_period, 2, 0, 0), - [678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_decimal_paren, 2, 0, 0), - [680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_decimal_paren, 2, 0, 0), - [682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_decimal_parens, 2, 0, 0), - [684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_decimal_parens, 2, 0, 0), - [686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 5, 0, 14), - [688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 5, 0, 14), - [690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_alpha_period, 2, 0, 0), - [692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_alpha_period, 2, 0, 0), - [694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frontmatter, 6, 0, 27), - [696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_frontmatter, 6, 0, 27), - [698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 6, 0, 0), - [700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 6, 0, 0), - [702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_alpha_paren, 2, 0, 0), - [704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_alpha_paren, 2, 0, 0), - [706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_alpha_parens, 2, 0, 0), - [708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_alpha_parens, 2, 0, 0), - [710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_footnote, 6, 0, 30), - [712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_footnote, 6, 0, 30), - [714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 6, 0, 14), - [716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 6, 0, 14), - [718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 6, 0, 21), - [720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 6, 0, 21), - [722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frontmatter, 7, 0, 31), - [724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_frontmatter, 7, 0, 31), - [726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 7, 0, 23), - [728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 7, 0, 23), - [730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 7, 0, 24), - [732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 7, 0, 24), - [734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 7, 0, 32), - [736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 7, 0, 32), - [738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 7, 0, 21), - [740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 7, 0, 21), - [742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 8, 0, 28), - [744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 8, 0, 28), - [746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 8, 0, 33), - [748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 8, 0, 33), - [750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_alpha_period, 2, 0, 0), - [752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_alpha_period, 2, 0, 0), - [754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 8, 0, 34), - [756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 8, 0, 34), - [758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_alpha_paren, 2, 0, 0), - [760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_alpha_paren, 2, 0, 0), - [762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_footnote_content, 3, 0, 0), - [764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_footnote_content, 3, 0, 0), - [766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_or_two_newlines, 2, 0, 0), - [768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_or_two_newlines, 2, 0, 0), - [770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_alpha_parens, 2, 0, 0), - [772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_alpha_parens, 2, 0, 0), - [774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_footnote_content, 4, 0, 0), - [776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_footnote_content, 4, 0, 0), - [778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_roman_period, 2, 0, 0), - [780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_roman_period, 2, 0, 0), - [782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 2, 0, 7), - [784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 2, 0, 7), - [786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_roman_paren, 2, 0, 0), - [788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_roman_paren, 2, 0, 0), - [790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_with_heading, 2, 0, 0), - [792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_with_heading, 2, 0, 0), - [794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 3, 0, 13), - [796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 3, 0, 13), - [798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_thematic_break, 1, 0, 0), - [800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_thematic_break, 1, 0, 0), - [802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 1, 0, 0), - [804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 1, 0, 0), - [806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_roman_parens, 2, 0, 0), - [808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_roman_parens, 2, 0, 0), - [810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_roman_period, 2, 0, 0), - [812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_roman_period, 2, 0, 0), - [814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__paragraph, 2, 0, 8), - [816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph, 2, 0, 8), - [818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_dash, 2, 0, 0), - [820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_dash, 2, 0, 0), - [822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_plus, 2, 0, 0), - [824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_plus, 2, 0, 0), - [826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_star, 2, 0, 0), - [828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_star, 2, 0, 0), - [830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_roman_paren, 2, 0, 0), - [832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_roman_paren, 2, 0, 0), - [834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_roman_parens, 2, 0, 0), - [836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_roman_parens, 2, 0, 0), - [838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_quote, 3, 0, 11), - [840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_quote, 3, 0, 11), - [842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_attribute, 3, 0, 0), - [844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_attribute, 3, 0, 0), - [846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 3, 0, 0), - [848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 3, 0, 0), - [850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_caption, 3, 0, 22), - [852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_caption, 3, 0, 22), - [854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_div_repeat1, 1, 0, 0), - [856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 1, 0, 0), - [858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heading, 4, 0, 4), - [860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heading, 4, 0, 4), - [862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_attribute, 4, 0, 20), - [864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_attribute, 4, 0, 20), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), + [513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), + [515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(458), + [518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(885), + [521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(1118), + [524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(886), + [527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(738), + [530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(935), + [533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(853), + [536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 2, 0, 0), + [538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 2, 0, 0), + [540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 5, 0, 20), + [542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 5, 0, 20), + [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 3, 0, 13), + [548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 3, 0, 13), + [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_header, 5, 0, 0), + [554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_header, 5, 0, 0), + [556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_separator, 5, 0, 0), + [558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_separator, 5, 0, 0), + [560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_row, 5, 0, 0), + [562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_row, 5, 0, 0), + [564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 6, 0, 27), + [568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 6, 0, 27), + [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 6, 0, 28), + [574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 6, 0, 28), + [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_or_two_newlines, 1, 0, 0), + [580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_or_two_newlines, 1, 0, 0), + [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_row, 2, 0, 0), + [586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_row, 2, 0, 0), + [588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 4, 0, 0), + [590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 4, 0, 0), + [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heading, 3, 0, 4), + [596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heading, 3, 0, 4), + [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_header, 4, 0, 0), + [602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_header, 4, 0, 0), + [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 5, 0, 24), + [610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 5, 0, 24), + [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_separator, 4, 0, 0), + [616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_separator, 4, 0, 0), + [618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_row, 4, 0, 0), + [620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_row, 4, 0, 0), + [622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 4, 0, 13), + [624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 4, 0, 13), + [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 4, 0, 20), + [630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 4, 0, 20), + [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 5, 0, 22), + [636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 5, 0, 22), + [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 5, 0, 23), + [642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 5, 0, 23), + [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_roman_parens, 2, 0, 0), + [664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_roman_parens, 2, 0, 0), + [666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frontmatter, 7, 0, 30), + [668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_frontmatter, 7, 0, 30), + [670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 7, 0, 22), + [672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 7, 0, 22), + [674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 7, 0, 23), + [676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 7, 0, 23), + [678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 7, 0, 31), + [680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 7, 0, 31), + [682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 7, 0, 20), + [684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 7, 0, 20), + [686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 8, 0, 27), + [688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 8, 0, 27), + [690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 8, 0, 32), + [692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 8, 0, 32), + [694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 8, 0, 33), + [696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 8, 0, 33), + [698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_footnote_content, 3, 0, 0), + [700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_footnote_content, 3, 0, 0), + [702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_or_two_newlines, 2, 0, 0), + [704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_or_two_newlines, 2, 0, 0), + [706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_thematic_break, 1, 0, 0), + [708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_thematic_break, 1, 0, 0), + [710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_footnote_content, 4, 0, 0), + [712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_footnote_content, 4, 0, 0), + [714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 1, 0, 0), + [716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 1, 0, 0), + [718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 2, 0, 6), + [720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 2, 0, 6), + [722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_with_heading, 2, 0, 0), + [724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_with_heading, 2, 0, 0), + [726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 3, 0, 12), + [728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 3, 0, 12), + [730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 1, 0, 0), + [732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 1, 0, 0), + [734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__paragraph, 2, 0, 7), + [736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph, 2, 0, 7), + [738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_dash, 2, 0, 0), + [740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_dash, 2, 0, 0), + [742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_plus, 2, 0, 0), + [744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_plus, 2, 0, 0), + [746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_star, 2, 0, 0), + [748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_star, 2, 0, 0), + [750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_task, 2, 0, 0), + [752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_task, 2, 0, 0), + [754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_definition, 2, 0, 0), + [756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_definition, 2, 0, 0), + [758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_decimal_period, 2, 0, 0), + [760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_decimal_period, 2, 0, 0), + [762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_decimal_paren, 2, 0, 0), + [764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_decimal_paren, 2, 0, 0), + [766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_decimal_parens, 2, 0, 0), + [768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_decimal_parens, 2, 0, 0), + [770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_alpha_period, 2, 0, 0), + [772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_alpha_period, 2, 0, 0), + [774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_alpha_paren, 2, 0, 0), + [776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_alpha_paren, 2, 0, 0), + [778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_alpha_parens, 2, 0, 0), + [780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_alpha_parens, 2, 0, 0), + [782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_alpha_period, 2, 0, 0), + [784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_alpha_period, 2, 0, 0), + [786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_alpha_paren, 2, 0, 0), + [788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_alpha_paren, 2, 0, 0), + [790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_alpha_parens, 2, 0, 0), + [792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_alpha_parens, 2, 0, 0), + [794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_roman_period, 2, 0, 0), + [796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_roman_period, 2, 0, 0), + [798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_roman_paren, 2, 0, 0), + [800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_roman_paren, 2, 0, 0), + [802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_roman_period, 2, 0, 0), + [804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_roman_period, 2, 0, 0), + [806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_roman_paren, 2, 0, 0), + [808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_roman_paren, 2, 0, 0), + [810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_roman_parens, 2, 0, 0), + [812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_roman_parens, 2, 0, 0), + [814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_attribute, 4, 0, 19), + [816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_attribute, 4, 0, 19), + [818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_quote, 3, 0, 10), + [820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_quote, 3, 0, 10), + [822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_attribute, 3, 0, 0), + [824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_attribute, 3, 0, 0), + [826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 3, 0, 0), + [828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 3, 0, 0), + [830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_caption, 3, 0, 21), + [832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_caption, 3, 0, 21), + [834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_div_repeat1, 1, 0, 0), + [836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 1, 0, 0), + [838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 5, 0, 13), + [840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 5, 0, 13), + [842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 6, 0, 0), + [844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 6, 0, 0), + [846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_footnote, 6, 0, 29), + [848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_footnote, 6, 0, 29), + [850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 6, 0, 13), + [852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 6, 0, 13), + [854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 6, 0, 20), + [856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 6, 0, 20), + [858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frontmatter, 6, 0, 26), + [860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_frontmatter, 6, 0, 26), + [862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heading, 4, 0, 4), + [864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heading, 4, 0, 4), [866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), [868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), [870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(210), - [873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_task, 3, 0, 10), - [875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_task, 3, 0, 10), - [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), - [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), - [909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), SHIFT(741), - [912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), SHIFT(372), - [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), SHIFT(445), - [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), - [922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), - [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), - [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), - [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), - [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), - [932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_quote_prefix, 1, 0, 0), - [934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_quote_prefix, 1, 0, 0), - [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(233), - [941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(238), - [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(884), - [957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(1125), - [960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(885), - [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), - [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(877), - [978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(1107), - [981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(878), - [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), - [994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), - [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [1000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(880), - [1003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(1113), - [1006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(881), - [1009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 2, 0, 0), SHIFT_REPEAT(274), - [1012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 2, 0, 0), - [1014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 2, 0, 0), SHIFT_REPEAT(743), - [1017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_caption_repeat1, 2, 0, 0), - [1019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), SHIFT(275), - [1022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), SHIFT(742), - [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [1041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), - [1043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(741), - [1046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(372), - [1049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(359), - [1052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(445), - [1055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(917), - [1058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [1060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(271), - [1063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(720), - [1066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), - [1068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), - [1070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline, 1, 0, 0), - [1072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), - [1074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [1076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline, 1, 0, 0), - [1078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), - [1080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(278), - [1083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), - [1085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(742), - [1088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(279), - [1091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(743), - [1094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 2, -1000, 0), - [1096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 2, -1000, 0), - [1098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 1, 0, 0), - [1100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_caption_repeat1, 1, 0, 0), - [1102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(289), - [1105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_line, 2, 0, 0), - [1107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_line, 2, 0, 0), - [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [1121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 2, 0, 0), - [1123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 2, 0, 0), SHIFT_REPEAT(643), - [1126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 2, 0, 0), SHIFT_REPEAT(821), - [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [1167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), - [1169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), SHIFT_REPEAT(42), - [1172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), SHIFT_REPEAT(683), - [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [1179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code, 1, 0, 0), - [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [1187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_repeat1, 2, 0, 0), SHIFT_REPEAT(933), - [1190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_code_repeat1, 2, 0, 0), - [1192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_repeat1, 2, 0, 0), SHIFT_REPEAT(845), - [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [1209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), - [1211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), SHIFT_REPEAT(25), - [1214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), SHIFT_REPEAT(748), - [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [1225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 2, 0, 0), - [1227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 2, 0, 0), SHIFT_REPEAT(47), - [1230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 2, 0, 0), SHIFT_REPEAT(784), - [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [1239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(687), - [1242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(52), - [1245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), - [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [1261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_name, 1, 0, 0), - [1263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 1, 0, 0), - [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [1279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, 0, 12), - [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [1283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 1, 0, 6), - [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [1289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1, 0, 0), - [1291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_no_newline, 2, 0, 0), - [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [1295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_no_newline, 3, 0, 18), - [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [1299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1, 0, 0), - [1301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value, 3, 0, 19), - [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [1309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 3, 0, 0), - [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [1369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_item_content_repeat1, 2, 0, 0), SHIFT_REPEAT(55), - [1372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_item_content_repeat1, 2, 0, 0), - [1374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_item_content_repeat1, 2, 0, 0), SHIFT_REPEAT(861), - [1377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(56), - [1380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 2, 0, 0), - [1382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(861), - [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [1387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 2, 0, 0), - [1389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(210), - [1392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(457), - [1395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_quote_content, 2, 0, 0), - [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [1399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_quote_content, 1, 0, 0), - [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), - [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), - [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [1457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_parens_repeat1, 2, 0, 0), - [1459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(37), - [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [1468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_period_repeat1, 2, 0, 0), - [1470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_period_repeat1, 2, 0, 0), SHIFT_REPEAT(48), - [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [1475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), - [1477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_definition_repeat1, 2, 0, 0), - [1479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(239), - [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [1502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [1514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frontmatter_content, 1, 0, 0), - [1516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_period_repeat1, 2, 0, 0), - [1518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_period_repeat1, 2, 0, 0), SHIFT_REPEAT(22), - [1521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_parens_repeat1, 2, 0, 0), - [1523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_decimal_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(36), - [1526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_no_newline_repeat1, 2, 0, 0), - [1528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__comment_no_newline_repeat1, 2, 0, 0), SHIFT_REPEAT(653), - [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [1543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_paren_repeat1, 2, 0, 0), - [1545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_paren_repeat1, 2, 0, 0), SHIFT_REPEAT(32), - [1548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [1550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [1552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [1556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [1558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [1562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [1574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [1576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_paren_repeat1, 2, 0, 0), - [1578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_paren_repeat1, 2, 0, 0), SHIFT_REPEAT(31), - [1581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_period_repeat1, 2, 0, 0), - [1583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_decimal_period_repeat1, 2, 0, 0), SHIFT_REPEAT(44), - [1586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), - [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [1592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_paren_repeat1, 2, 0, 0), - [1594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_decimal_paren_repeat1, 2, 0, 0), SHIFT_REPEAT(26), - [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [1621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_parens_repeat1, 2, 0, 0), - [1623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(38), - [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [1632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_period_repeat1, 2, 0, 0), - [1634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_period_repeat1, 2, 0, 0), SHIFT_REPEAT(24), - [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [1639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_frontmatter_content_repeat1, 2, 0, 0), SHIFT_REPEAT(1111), - [1642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_frontmatter_content_repeat1, 2, 0, 0), - [1644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_paren_repeat1, 2, 0, 0), - [1646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_paren_repeat1, 2, 0, 0), SHIFT_REPEAT(33), - [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [1657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_parens_repeat1, 2, 0, 0), - [1659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(39), - [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [1666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_period_repeat1, 2, 0, 0), - [1668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_period_repeat1, 2, 0, 0), SHIFT_REPEAT(49), - [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [1679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_paren_repeat1, 2, 0, 0), - [1681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_paren_repeat1, 2, 0, 0), SHIFT_REPEAT(35), - [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [1686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [1690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_parens_repeat1, 2, 0, 0), - [1694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(40), - [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [1707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 3, 0, 15), - [1709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 3, 0, 15), - [1711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_task, 3, 0, 15), - [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [1717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__paragraph_inline_content_repeat1, 2, 0, 0), - [1719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__paragraph_inline_content_repeat1, 2, 0, 0), SHIFT_REPEAT(251), - [1722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 1, 0, 2), - [1724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 1, 0, 2), - [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [1728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 1, 0, 2), - [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__heading_content_repeat1, 2, 0, 0), - [1732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__heading_content_repeat1, 2, 0, 0), SHIFT_REPEAT(272), - [1735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 1, 0, 2), - [1737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_item_content, 3, 0, 0), - [1739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(683), - [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [1748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heading_content, 1, 0, 0), - [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [1752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(748), - [1755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_item_content, 4, 0, 0), - [1757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dash, 2, 0, 4), - [1759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 2, 0, 4), - [1761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 2, 0, 4), - [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [1769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(821), - [1772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(845), - [1775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(861), - [1778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(687), - [1781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_item_content_repeat1, 3, 0, 0), - [1783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 3, 0, 0), - [1785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_item_content_repeat1, 4, 0, 0), - [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [1795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heading_content, 2, 0, 0), - [1797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 3, 0, 0), - [1799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 4, 0, 0), - [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [1819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line, 2, 0, 0), - [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [1825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__comment_no_newline_repeat1, 1, 0, 0), - [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [1841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(784), - [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [1850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_task, 2, 0, 4), - [1852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [1854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [1858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [1860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dash, 3, 0, 15), - [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [1866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [1868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [1872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_alpha_period, 2, 0, 4), - [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_paren_repeat1, 1, 0, 2), - [1876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_parens_repeat1, 1, 0, 2), - [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_period_repeat1, 1, 0, 2), - [1880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_paren_repeat1, 1, 0, 2), - [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_alpha_period, 2, 0, 4), - [1884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_roman_period, 2, 0, 4), - [1888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_roman_period, 2, 0, 4), - [1890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_decimal_paren, 2, 0, 4), - [1892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_parens_repeat1, 1, 0, 2), - [1894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_period_repeat1, 1, 0, 2), - [1896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_alpha_paren, 2, 0, 4), - [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_alpha_paren, 2, 0, 4), - [1900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_roman_paren, 2, 0, 4), - [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_roman_paren, 2, 0, 4), - [1904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_decimal_parens, 2, 0, 4), - [1906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_alpha_parens, 2, 0, 4), - [1908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_alpha_parens, 2, 0, 4), - [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [1912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_roman_parens, 2, 0, 4), - [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_roman_parens, 2, 0, 4), - [1920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_parens_repeat1, 1, 0, 2), - [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_paren_repeat1, 1, 0, 2), - [1924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [1928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_parens_repeat1, 1, 0, 2), - [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [1934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [1936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_period_repeat1, 1, 0, 2), - [1940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [1944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_inline_content, 4, 0, 0), - [1948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__paragraph_inline_content_repeat1, 3, 0, 0), - [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [1958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [1964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_definition, 5, 0, 26), - [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_inline_content, 2, 0, 0), - [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [1986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_definition_repeat1, 1, 0, 3), - [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [1998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_inline_content, 3, 0, 0), - [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [2002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_period_repeat1, 1, 0, 2), - [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [2006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_content, 1, 0, 0), - [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [2016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [2018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_definition, 4, 0, 17), - [2020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_paren_repeat1, 1, 0, 2), - [2022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [2024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_parens_repeat1, 1, 0, 2), - [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [2028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_header_repeat1, 2, 0, 0), SHIFT_REPEAT(765), - [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [2033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1, 0, 0), SHIFT(280), - [2036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_period_repeat1, 1, 0, 2), - [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [2040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_paren_repeat1, 1, 0, 2), - [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [2056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_decimal_period, 2, 0, 4), - [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [2068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__div_marker_begin, 1, 0, 0), - [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [2100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_separator_repeat1, 2, 0, 0), SHIFT_REPEAT(899), - [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [2123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_header_repeat1, 2, 0, 0), - [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [2139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key, 1, 0, 0), - [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [2163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_cell, 1, 0, 0), - [2165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_checked, 3, 0, 0), - [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [2171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unchecked, 3, 0, 0), - [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [2175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_separator_repeat1, 2, 0, 0), - [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [2185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block_info, 2, 0, 16), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [2255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__div_marker_begin, 3, 0, 9), - [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [2261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_label, 1, 0, 5), - [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [2275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_label, 1, 0, 0), - [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [2289] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_task, 3, 0, 9), + [875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_task, 3, 0, 9), + [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), + [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_quote_prefix, 1, 0, 0), + [907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_quote_prefix, 1, 0, 0), + [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(231), + [914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(235), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(887), + [934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(1124), + [937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(888), + [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), + [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), + [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 2, 0, 0), SHIFT_REPEAT(277), + [951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 2, 0, 0), + [953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 2, 0, 0), SHIFT_REPEAT(848), + [956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_caption_repeat1, 2, 0, 0), + [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), + [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(881), + [965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(1106), + [968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(882), + [971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(883), + [974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(1112), + [977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(884), + [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), SHIFT(274), + [995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), SHIFT(766), + [998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), + [1000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [1012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [1014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), + [1016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(739), + [1019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(403), + [1022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(415), + [1025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(476), + [1028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(1057), + [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [1047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(271), + [1050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(737), + [1053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), + [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [1057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline, 1, 0, 0), + [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [1061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline, 1, 0, 0), + [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), + [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), + [1067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(278), + [1070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(848), + [1073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(279), + [1076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), + [1078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(766), + [1081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_line, 2, 0, 0), + [1083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_line, 2, 0, 0), + [1085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 2, -1000, 0), + [1087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 2, -1000, 0), + [1089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(307), + [1092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 1, 0, 0), + [1094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_caption_repeat1, 1, 0, 0), + [1096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [1098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [1100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [1104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [1106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [1108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [1110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [1112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [1114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [1116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [1118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [1120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [1122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [1124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [1126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [1128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [1130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [1132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [1134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [1136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 2, 0, 0), + [1138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 2, 0, 0), SHIFT_REPEAT(652), + [1141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 2, 0, 0), SHIFT_REPEAT(690), + [1144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [1146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [1148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [1150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 2, 0, 0), + [1152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 2, 0, 0), SHIFT_REPEAT(27), + [1155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 2, 0, 0), SHIFT_REPEAT(734), + [1158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [1160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [1162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [1164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [1170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [1176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [1178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [1180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [1184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [1188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), + [1190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), SHIFT_REPEAT(40), + [1193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), SHIFT_REPEAT(689), + [1196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [1198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code, 1, 0, 0), + [1200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_repeat1, 2, 0, 0), SHIFT_REPEAT(1047), + [1203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_code_repeat1, 2, 0, 0), + [1205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_repeat1, 2, 0, 0), SHIFT_REPEAT(698), + [1208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [1212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), + [1214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), SHIFT_REPEAT(49), + [1217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), SHIFT_REPEAT(797), + [1220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [1222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [1224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [1226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [1228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [1232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [1234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [1238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [1240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, 0, 11), + [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [1246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 3, 0, 0), + [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [1250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_name, 1, 0, 0), + [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [1256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(51), + [1259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 2, 0, 0), + [1261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(702), + [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [1292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [1294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [1296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [1322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_item_content_repeat1, 2, 0, 0), SHIFT_REPEAT(55), + [1325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_item_content_repeat1, 2, 0, 0), + [1327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_item_content_repeat1, 2, 0, 0), SHIFT_REPEAT(702), + [1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2, 0, 0), + [1332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 3, 0, 17), + [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [1340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1, 0, 0), + [1342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(708), + [1345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(52), + [1348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), + [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1, 0, 0), + [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [1356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value, 3, 0, 18), + [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [1368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 1, 0, 0), + [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [1372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_quote_content, 2, 0, 0), + [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [1376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 2, 0, 0), + [1378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(210), + [1381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_quote_content, 1, 0, 0), + [1383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(458), + [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_parens_repeat1, 2, 0, 0), + [1392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(36), + [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [1397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_period_repeat1, 2, 0, 0), + [1399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_period_repeat1, 2, 0, 0), SHIFT_REPEAT(47), + [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_paren_repeat1, 2, 0, 0), + [1404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_paren_repeat1, 2, 0, 0), SHIFT_REPEAT(31), + [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [1409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_parens_repeat1, 2, 0, 0), + [1411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(37), + [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [1416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_period_repeat1, 2, 0, 0), + [1418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_period_repeat1, 2, 0, 0), SHIFT_REPEAT(23), + [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [1423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_paren_repeat1, 2, 0, 0), + [1425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_paren_repeat1, 2, 0, 0), SHIFT_REPEAT(33), + [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_parens_repeat1, 2, 0, 0), + [1432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(39), + [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), + [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), + [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), + [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [1455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frontmatter_content, 1, 0, 0), + [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [1511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comment_repeat1, 2, 0, 0), + [1513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comment_repeat1, 2, 0, 0), SHIFT_REPEAT(582), + [1516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [1518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_frontmatter_content_repeat1, 2, 0, 0), SHIFT_REPEAT(1001), + [1521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_frontmatter_content_repeat1, 2, 0, 0), + [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [1619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_definition_repeat1, 2, 0, 0), + [1621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(232), + [1624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_period_repeat1, 2, 0, 0), + [1626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_decimal_period_repeat1, 2, 0, 0), SHIFT_REPEAT(42), + [1629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_paren_repeat1, 2, 0, 0), + [1631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_decimal_paren_repeat1, 2, 0, 0), SHIFT_REPEAT(24), + [1634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [1636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_parens_repeat1, 2, 0, 0), + [1638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_decimal_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(34), + [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [1643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_period_repeat1, 2, 0, 0), + [1645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_period_repeat1, 2, 0, 0), SHIFT_REPEAT(45), + [1648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [1650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_paren_repeat1, 2, 0, 0), + [1652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_paren_repeat1, 2, 0, 0), SHIFT_REPEAT(29), + [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [1657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_parens_repeat1, 2, 0, 0), + [1659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(35), + [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_period_repeat1, 2, 0, 0), + [1666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_period_repeat1, 2, 0, 0), SHIFT_REPEAT(46), + [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [1671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_paren_repeat1, 2, 0, 0), + [1673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_paren_repeat1, 2, 0, 0), SHIFT_REPEAT(30), + [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [1678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [1682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [1686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [1690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [1692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(690), + [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [1701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(698), + [1704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(702), + [1707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(708), + [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_item_content, 3, 0, 0), + [1712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_item_content, 4, 0, 0), + [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [1724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [1726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heading_content, 2, 0, 0), + [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heading_content, 1, 0, 0), + [1732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 1, 0, 2), + [1734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dash, 2, 0, 4), + [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [1740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 2, 0, 4), + [1742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 2, 0, 4), + [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [1752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comment_repeat1, 1, 0, 0), + [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [1758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(689), + [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [1765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 1, 0, 2), + [1767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dash, 3, 0, 14), + [1769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 3, 0, 14), + [1771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 3, 0, 14), + [1773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_task, 3, 0, 14), + [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [1779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__paragraph_inline_content_repeat1, 2, 0, 0), + [1781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__paragraph_inline_content_repeat1, 2, 0, 0), SHIFT_REPEAT(246), + [1784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(734), + [1787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__heading_content_repeat1, 2, 0, 0), + [1789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__heading_content_repeat1, 2, 0, 0), SHIFT_REPEAT(272), + [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [1796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_task, 2, 0, 4), + [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_item_content_repeat1, 3, 0, 0), + [1816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 3, 0, 0), + [1818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(797), + [1821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 1, 0, 2), + [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [1835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_item_content_repeat1, 4, 0, 0), + [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [1843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 1, 0, 2), + [1845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 3, 0, 0), + [1847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 4, 0, 0), + [1849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line, 2, 0, 0), + [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [1855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_header_repeat1, 2, 0, 0), SHIFT_REPEAT(785), + [1858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [1860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [1862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [1866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_separator_repeat1, 2, 0, 0), SHIFT_REPEAT(1066), + [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [1889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_definition_repeat1, 1, 0, 3), + [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [1895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_period_repeat1, 1, 0, 2), + [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_inline_content, 4, 0, 0), + [1901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__paragraph_inline_content_repeat1, 3, 0, 0), + [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [1905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_paren_repeat1, 1, 0, 2), + [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_decimal_period, 2, 0, 4), + [1913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_alpha_period, 2, 0, 4), + [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_alpha_period, 2, 0, 4), + [1917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_inline_content, 3, 0, 0), + [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_roman_period, 2, 0, 4), + [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_parens_repeat1, 1, 0, 2), + [1925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_period_repeat1, 1, 0, 2), + [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [1929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_roman_period, 2, 0, 4), + [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_paren_repeat1, 1, 0, 2), + [1933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_parens_repeat1, 1, 0, 2), + [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_decimal_paren, 2, 0, 4), + [1937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_alpha_paren, 2, 0, 4), + [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [1945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_definition, 5, 0, 25), + [1947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_period_repeat1, 1, 0, 2), + [1949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_paren_repeat1, 1, 0, 2), + [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [1953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_parens_repeat1, 1, 0, 2), + [1955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_period_repeat1, 1, 0, 2), + [1957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_alpha_paren, 2, 0, 4), + [1959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_roman_paren, 2, 0, 4), + [1961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_decimal_parens, 2, 0, 4), + [1963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_alpha_parens, 2, 0, 4), + [1965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_alpha_parens, 2, 0, 4), + [1967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_paren_repeat1, 1, 0, 2), + [1969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_parens_repeat1, 1, 0, 2), + [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [1973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_period_repeat1, 1, 0, 2), + [1975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_inline_content, 2, 0, 0), + [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [1981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_paren_repeat1, 1, 0, 2), + [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_parens_repeat1, 1, 0, 2), + [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [2005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_roman_parens, 2, 0, 4), + [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_content, 1, 0, 0), + [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [2023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1, 0, 0), SHIFT(281), + [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [2028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__div_marker_begin, 1, 0, 0), + [2030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_roman_parens, 2, 0, 4), + [2032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [2036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_definition, 4, 0, 16), + [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [2086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_roman_paren, 2, 0, 4), + [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [2144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_label, 1, 0, 0), + [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [2168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_label, 1, 0, 5), + [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [2204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_separator_repeat1, 2, 0, 0), + [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [2208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_cell, 1, 0, 0), + [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [2246] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [2248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_header_repeat1, 2, 0, 0), + [2250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__div_marker_begin, 3, 0, 8), + [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [2254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_checked, 3, 0, 0), + [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [2260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unchecked, 3, 0, 0), + [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [2342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key, 1, 0, 0), + [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [2420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block_info, 2, 0, 15), + [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), }; enum ts_external_scanner_symbol_identifiers { @@ -28733,8 +28834,9 @@ enum ts_external_scanner_symbol_identifiers { ts_external_token__table_cell = 46, ts_external_token__table_caption_begin = 47, ts_external_token__table_caption_end = 48, - ts_external_token__in_fallback = 49, - ts_external_token__error = 50, + ts_external_token__block_attribute_begin = 49, + ts_external_token__in_fallback = 50, + ts_external_token__error = 51, }; static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { @@ -28787,6 +28889,7 @@ static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { [ts_external_token__table_cell] = sym__table_cell, [ts_external_token__table_caption_begin] = sym__table_caption_begin, [ts_external_token__table_caption_end] = sym__table_caption_end, + [ts_external_token__block_attribute_begin] = sym__block_attribute_begin, [ts_external_token__in_fallback] = sym__in_fallback, [ts_external_token__error] = sym__error, }; @@ -28842,6 +28945,7 @@ static const bool ts_external_scanner_states[85][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__table_cell] = true, [ts_external_token__table_caption_begin] = true, [ts_external_token__table_caption_end] = true, + [ts_external_token__block_attribute_begin] = true, [ts_external_token__in_fallback] = true, [ts_external_token__error] = true, }, @@ -28878,6 +28982,7 @@ static const bool ts_external_scanner_states[85][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__table_header_begin] = true, [ts_external_token__table_separator_begin] = true, [ts_external_token__table_row_begin] = true, + [ts_external_token__block_attribute_begin] = true, }, [3] = { [ts_external_token__newline] = true, @@ -28911,6 +29016,7 @@ static const bool ts_external_scanner_states[85][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__table_header_begin] = true, [ts_external_token__table_separator_begin] = true, [ts_external_token__table_row_begin] = true, + [ts_external_token__block_attribute_begin] = true, }, [4] = { [ts_external_token__block_close] = true, @@ -28945,6 +29051,7 @@ static const bool ts_external_scanner_states[85][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__table_header_begin] = true, [ts_external_token__table_separator_begin] = true, [ts_external_token__table_row_begin] = true, + [ts_external_token__block_attribute_begin] = true, }, [5] = { [ts_external_token__heading_begin] = true, @@ -28977,6 +29084,7 @@ static const bool ts_external_scanner_states[85][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__table_header_begin] = true, [ts_external_token__table_separator_begin] = true, [ts_external_token__table_row_begin] = true, + [ts_external_token__block_attribute_begin] = true, }, [6] = { [ts_external_token__block_close] = true, @@ -29009,9 +29117,9 @@ static const bool ts_external_scanner_states[85][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__table_header_begin] = true, [ts_external_token__table_separator_begin] = true, [ts_external_token__table_row_begin] = true, + [ts_external_token__block_attribute_begin] = true, }, [7] = { - [ts_external_token__block_close] = true, [ts_external_token__newline] = true, [ts_external_token__heading_begin] = true, [ts_external_token__div_begin] = true, @@ -29044,8 +29152,10 @@ static const bool ts_external_scanner_states[85][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__table_separator_begin] = true, [ts_external_token__table_row_begin] = true, [ts_external_token__table_caption_begin] = true, + [ts_external_token__block_attribute_begin] = true, }, [8] = { + [ts_external_token__block_close] = true, [ts_external_token__newline] = true, [ts_external_token__heading_begin] = true, [ts_external_token__div_begin] = true, @@ -29078,6 +29188,7 @@ static const bool ts_external_scanner_states[85][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__table_separator_begin] = true, [ts_external_token__table_row_begin] = true, [ts_external_token__table_caption_begin] = true, + [ts_external_token__block_attribute_begin] = true, }, [9] = { [ts_external_token__block_close] = true, @@ -29113,14 +29224,14 @@ static const bool ts_external_scanner_states[85][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__table_header_begin] = true, [ts_external_token__table_separator_begin] = true, [ts_external_token__table_row_begin] = true, + [ts_external_token__block_attribute_begin] = true, }, [10] = { - [ts_external_token__block_close] = true, [ts_external_token__newline] = true, [ts_external_token__heading_begin] = true, [ts_external_token__div_begin] = true, + [ts_external_token__div_end] = true, [ts_external_token__code_block_begin] = true, - [ts_external_token__code_block_end] = true, [ts_external_token_list_marker_dash] = true, [ts_external_token_list_marker_star] = true, [ts_external_token_list_marker_plus] = true, @@ -29148,14 +29259,14 @@ static const bool ts_external_scanner_states[85][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__table_header_begin] = true, [ts_external_token__table_separator_begin] = true, [ts_external_token__table_row_begin] = true, + [ts_external_token__block_attribute_begin] = true, }, [11] = { - [ts_external_token__block_close] = true, - [ts_external_token__eof_or_newline] = true, [ts_external_token__newline] = true, [ts_external_token__heading_begin] = true, [ts_external_token__div_begin] = true, [ts_external_token__code_block_begin] = true, + [ts_external_token__code_block_end] = true, [ts_external_token_list_marker_dash] = true, [ts_external_token_list_marker_star] = true, [ts_external_token_list_marker_plus] = true, @@ -29183,13 +29294,14 @@ static const bool ts_external_scanner_states[85][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__table_header_begin] = true, [ts_external_token__table_separator_begin] = true, [ts_external_token__table_row_begin] = true, + [ts_external_token__block_attribute_begin] = true, }, [12] = { + [ts_external_token__eof_or_newline] = true, [ts_external_token__newline] = true, [ts_external_token__heading_begin] = true, [ts_external_token__div_begin] = true, [ts_external_token__code_block_begin] = true, - [ts_external_token__code_block_end] = true, [ts_external_token_list_marker_dash] = true, [ts_external_token_list_marker_star] = true, [ts_external_token_list_marker_plus] = true, @@ -29217,12 +29329,14 @@ static const bool ts_external_scanner_states[85][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__table_header_begin] = true, [ts_external_token__table_separator_begin] = true, [ts_external_token__table_row_begin] = true, + [ts_external_token__block_attribute_begin] = true, }, [13] = { + [ts_external_token__block_close] = true, + [ts_external_token__eof_or_newline] = true, [ts_external_token__newline] = true, [ts_external_token__heading_begin] = true, [ts_external_token__div_begin] = true, - [ts_external_token__div_end] = true, [ts_external_token__code_block_begin] = true, [ts_external_token_list_marker_dash] = true, [ts_external_token_list_marker_star] = true, @@ -29251,13 +29365,15 @@ static const bool ts_external_scanner_states[85][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__table_header_begin] = true, [ts_external_token__table_separator_begin] = true, [ts_external_token__table_row_begin] = true, + [ts_external_token__block_attribute_begin] = true, }, [14] = { - [ts_external_token__eof_or_newline] = true, + [ts_external_token__block_close] = true, [ts_external_token__newline] = true, [ts_external_token__heading_begin] = true, [ts_external_token__div_begin] = true, [ts_external_token__code_block_begin] = true, + [ts_external_token__code_block_end] = true, [ts_external_token_list_marker_dash] = true, [ts_external_token_list_marker_star] = true, [ts_external_token_list_marker_plus] = true, @@ -29285,6 +29401,7 @@ static const bool ts_external_scanner_states[85][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__table_header_begin] = true, [ts_external_token__table_separator_begin] = true, [ts_external_token__table_row_begin] = true, + [ts_external_token__block_attribute_begin] = true, }, [15] = { [ts_external_token__block_close] = true, @@ -29306,10 +29423,6 @@ static const bool ts_external_scanner_states[85][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__table_row_begin] = true, }, [17] = { - [ts_external_token__eof_or_newline] = true, - [ts_external_token__newline_inline] = true, - }, - [18] = { [ts_external_token__block_close] = true, [ts_external_token_list_marker_dash] = true, [ts_external_token_list_marker_star] = true, @@ -29320,7 +29433,7 @@ static const bool ts_external_scanner_states[85][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__table_separator_begin] = true, [ts_external_token__table_row_begin] = true, }, - [19] = { + [18] = { [ts_external_token_list_marker_dash] = true, [ts_external_token_list_marker_star] = true, [ts_external_token_list_marker_plus] = true, @@ -29330,7 +29443,7 @@ static const bool ts_external_scanner_states[85][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__table_separator_begin] = true, [ts_external_token__table_row_begin] = true, }, - [20] = { + [19] = { [ts_external_token__newline] = true, [ts_external_token__list_item_continuation] = true, [ts_external_token__list_item_end] = true, @@ -29340,6 +29453,9 @@ static const bool ts_external_scanner_states[85][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__table_row_begin] = true, [ts_external_token__table_caption_begin] = true, }, + [20] = { + [ts_external_token__block_quote_continuation] = true, + }, [21] = { [ts_external_token__block_close] = true, [ts_external_token__newline] = true, @@ -29350,9 +29466,6 @@ static const bool ts_external_scanner_states[85][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__table_caption_begin] = true, }, [22] = { - [ts_external_token__block_quote_continuation] = true, - }, - [23] = { [ts_external_token__newline] = true, [ts_external_token__indented_content_spacer] = true, [ts_external_token__block_quote_continuation] = true, @@ -29361,9 +29474,13 @@ static const bool ts_external_scanner_states[85][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__table_row_begin] = true, [ts_external_token__table_caption_begin] = true, }, - [24] = { + [23] = { [ts_external_token__table_caption_end] = true, }, + [24] = { + [ts_external_token__eof_or_newline] = true, + [ts_external_token__newline_inline] = true, + }, [25] = { [ts_external_token__eof_or_newline] = true, }, @@ -29378,7 +29495,7 @@ static const bool ts_external_scanner_states[85][EXTERNAL_TOKEN_COUNT] = { }, [28] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_star] = true, + [ts_external_token_list_marker_dash] = true, [ts_external_token__block_quote_continuation] = true, }, [29] = { @@ -29388,7 +29505,7 @@ static const bool ts_external_scanner_states[85][EXTERNAL_TOKEN_COUNT] = { }, [30] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_dash] = true, + [ts_external_token_list_marker_star] = true, [ts_external_token__block_quote_continuation] = true, }, [31] = { @@ -29407,159 +29524,159 @@ static const bool ts_external_scanner_states[85][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__table_row_begin] = true, }, [34] = { - [ts_external_token__block_quote_continuation] = true, - [ts_external_token__table_header_begin] = true, - [ts_external_token__table_separator_begin] = true, - [ts_external_token__table_row_begin] = true, - }, - [35] = { [ts_external_token__list_item_continuation] = true, [ts_external_token__list_item_end] = true, [ts_external_token__block_quote_continuation] = true, [ts_external_token__table_caption_begin] = true, }, - [36] = { - [ts_external_token__eof_or_newline] = true, - [ts_external_token__list_item_continuation] = true, - [ts_external_token__list_item_end] = true, + [35] = { [ts_external_token__block_quote_continuation] = true, + [ts_external_token__table_header_begin] = true, + [ts_external_token__table_separator_begin] = true, + [ts_external_token__table_row_begin] = true, + }, + [36] = { + [ts_external_token__block_close] = true, + [ts_external_token_list_marker_upper_alpha_paren] = true, }, [37] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_definition] = true, + [ts_external_token_list_marker_lower_alpha_parens] = true, }, [38] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_decimal_period] = true, + [ts_external_token_list_marker_upper_alpha_parens] = true, }, [39] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_decimal_paren] = true, + [ts_external_token_list_marker_upper_alpha_period] = true, }, [40] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_decimal_parens] = true, + [ts_external_token_list_marker_lower_roman_period] = true, }, [41] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_lower_alpha_period] = true, + [ts_external_token_list_marker_lower_roman_paren] = true, }, [42] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_lower_alpha_paren] = true, + [ts_external_token_list_marker_lower_roman_parens] = true, }, [43] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_lower_alpha_parens] = true, + [ts_external_token_list_marker_upper_roman_period] = true, }, [44] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_upper_alpha_period] = true, + [ts_external_token_list_marker_upper_roman_paren] = true, }, [45] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_upper_alpha_paren] = true, + [ts_external_token_list_marker_upper_roman_parens] = true, }, [46] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_upper_alpha_parens] = true, + [ts_external_token__block_quote_continuation] = true, + [ts_external_token__table_caption_begin] = true, }, [47] = { - [ts_external_token__block_close] = true, - [ts_external_token_list_marker_lower_roman_period] = true, + [ts_external_token__newline] = true, }, [48] = { - [ts_external_token__block_close] = true, - [ts_external_token_list_marker_lower_roman_paren] = true, + [ts_external_token__eof_or_newline] = true, + [ts_external_token__list_item_continuation] = true, + [ts_external_token__list_item_end] = true, + [ts_external_token__block_quote_continuation] = true, }, [49] = { - [ts_external_token__block_close] = true, - [ts_external_token_list_marker_lower_roman_parens] = true, + [ts_external_token_frontmatter_marker] = true, }, [50] = { - [ts_external_token__block_close] = true, - [ts_external_token_list_marker_upper_roman_period] = true, - }, - [51] = { - [ts_external_token__block_close] = true, - [ts_external_token_list_marker_upper_roman_paren] = true, - }, - [52] = { - [ts_external_token__block_close] = true, - [ts_external_token_list_marker_upper_roman_parens] = true, - }, - [53] = { [ts_external_token__div_end] = true, [ts_external_token__list_item_continuation] = true, [ts_external_token__list_item_end] = true, [ts_external_token__block_quote_continuation] = true, }, - [54] = { + [51] = { [ts_external_token__code_block_end] = true, [ts_external_token__list_item_continuation] = true, [ts_external_token__list_item_end] = true, [ts_external_token__block_quote_continuation] = true, }, + [52] = { + [ts_external_token__block_close] = true, + [ts_external_token_list_marker_definition] = true, + }, + [53] = { + [ts_external_token__block_close] = true, + [ts_external_token_list_marker_decimal_period] = true, + }, + [54] = { + [ts_external_token__block_close] = true, + [ts_external_token_list_marker_decimal_paren] = true, + }, [55] = { - [ts_external_token_frontmatter_marker] = true, + [ts_external_token__block_close] = true, + [ts_external_token_list_marker_decimal_parens] = true, }, [56] = { [ts_external_token__block_close] = true, - [ts_external_token__block_quote_continuation] = true, - [ts_external_token__table_caption_begin] = true, + [ts_external_token_list_marker_lower_alpha_period] = true, }, [57] = { - [ts_external_token__newline] = true, + [ts_external_token__block_close] = true, + [ts_external_token_list_marker_lower_alpha_paren] = true, }, [58] = { - [ts_external_token_list_marker_plus] = true, + [ts_external_token__list_marker_task_begin] = true, [ts_external_token__block_quote_continuation] = true, }, [59] = { [ts_external_token__block_close] = true, - [ts_external_token__heading_continuation] = true, + [ts_external_token__code_block_end] = true, + [ts_external_token__block_quote_continuation] = true, }, [60] = { [ts_external_token__newline] = true, [ts_external_token__table_cell] = true, }, [61] = { - [ts_external_token_list_marker_star] = true, + [ts_external_token__list_item_continuation] = true, [ts_external_token__block_quote_continuation] = true, }, [62] = { - [ts_external_token__block_close] = true, - [ts_external_token__eof_or_newline] = true, [ts_external_token__block_quote_continuation] = true, + [ts_external_token__footnote_continuation] = true, }, [63] = { - [ts_external_token__list_marker_task_begin] = true, + [ts_external_token__block_close] = true, + [ts_external_token__div_end] = true, [ts_external_token__block_quote_continuation] = true, }, [64] = { - [ts_external_token__list_item_continuation] = true, + [ts_external_token__block_close] = true, + [ts_external_token__eof_or_newline] = true, [ts_external_token__block_quote_continuation] = true, }, [65] = { - [ts_external_token__block_quote_continuation] = true, - [ts_external_token__footnote_continuation] = true, + [ts_external_token__block_close] = true, + [ts_external_token__heading_continuation] = true, }, [66] = { - [ts_external_token__indented_content_spacer] = true, - [ts_external_token__table_caption_begin] = true, + [ts_external_token_list_marker_plus] = true, + [ts_external_token__block_quote_continuation] = true, }, [67] = { [ts_external_token_list_marker_dash] = true, [ts_external_token__block_quote_continuation] = true, }, [68] = { - [ts_external_token__block_close] = true, - [ts_external_token__div_end] = true, - [ts_external_token__block_quote_continuation] = true, + [ts_external_token__indented_content_spacer] = true, + [ts_external_token__table_caption_begin] = true, }, [69] = { - [ts_external_token__block_close] = true, - [ts_external_token__code_block_end] = true, + [ts_external_token_list_marker_star] = true, [ts_external_token__block_quote_continuation] = true, }, [70] = { @@ -29567,15 +29684,15 @@ static const bool ts_external_scanner_states[85][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__close_paragraph] = true, }, [71] = { - [ts_external_token__list_marker_task_begin] = true, + [ts_external_token__eof_or_newline] = true, + [ts_external_token__indented_content_spacer] = true, }, [72] = { [ts_external_token__footnote_mark_begin] = true, [ts_external_token__in_fallback] = true, }, [73] = { - [ts_external_token__eof_or_newline] = true, - [ts_external_token__indented_content_spacer] = true, + [ts_external_token__table_cell] = true, }, [74] = { [ts_external_token__div_end] = true, @@ -29586,31 +29703,31 @@ static const bool ts_external_scanner_states[85][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__indented_content_spacer] = true, }, [76] = { - [ts_external_token__table_cell] = true, + [ts_external_token__list_marker_task_begin] = true, }, [77] = { - [ts_external_token__indented_content_spacer] = true, + [ts_external_token__footnote_mark_begin] = true, }, [78] = { [ts_external_token__block_close] = true, }, [79] = { - [ts_external_token_list_marker_dash] = true, + [ts_external_token__indented_content_spacer] = true, }, [80] = { - [ts_external_token__footnote_continuation] = true, + [ts_external_token__list_item_continuation] = true, }, [81] = { - [ts_external_token_list_marker_star] = true, + [ts_external_token_list_marker_dash] = true, }, [82] = { - [ts_external_token__list_item_continuation] = true, + [ts_external_token_list_marker_plus] = true, }, [83] = { - [ts_external_token__footnote_mark_begin] = true, + [ts_external_token_list_marker_star] = true, }, [84] = { - [ts_external_token_list_marker_plus] = true, + [ts_external_token__footnote_continuation] = true, }, }; diff --git a/tree-sitter-djot/src/scanner.c b/tree-sitter-djot/src/scanner.c index d71ef5a..ff81339 100644 --- a/tree-sitter-djot/src/scanner.c +++ b/tree-sitter-djot/src/scanner.c @@ -1,6 +1,7 @@ #include "tree_sitter/alloc.h" #include "tree_sitter/array.h" #include "tree_sitter/parser.h" +#include #include // #define DEBUG @@ -64,6 +65,7 @@ typedef enum { TABLE_CELL, TABLE_CAPTION_BEGIN, TABLE_CAPTION_END, + BLOCK_ATTRIBUTE_BEGIN, IN_FALLBACK, @@ -1635,6 +1637,141 @@ static bool parse_table_caption_end(Scanner *s, TSLexer *lexer) { return true; } +static bool scan_identifier(Scanner *s, TSLexer *lexer) { + bool any_scanned = false; + while (!lexer->eof(lexer)) { + if (isalnum(lexer->lookahead) || lexer->lookahead == '-' || + lexer->lookahead == '_') { + any_scanned = true; + advance(s, lexer); + } else { + return any_scanned; + } + } + return any_scanned; +} + +static bool scan_until_unescaped(Scanner *s, TSLexer *lexer, char c) { + while (!lexer->eof(lexer)) { + if (lexer->lookahead == c) { + return true; + } else if (lexer->lookahead == '\\') { + advance(s, lexer); + } + advance(s, lexer); + } + return false; +} + +// Scan until the end of a comment, either consuming the next `%` +// or before the ending `}`. +static bool scan_comment(Scanner *s, TSLexer *lexer) { + if (lexer->lookahead != '%') { + return false; + } + advance(s, lexer); + + while (!lexer->eof(lexer)) { + if (lexer->lookahead == '%') { + advance(s, lexer); + return true; + } else if (lexer->lookahead == '}') { + return true; + } else if (lexer->lookahead == '\\') { + advance(s, lexer); + } + advance(s, lexer); + } + return false; +} + +static bool scan_value(Scanner *s, TSLexer *lexer) { + if (lexer->lookahead == '"') { + // First " + advance(s, lexer); + if (!scan_until_unescaped(s, lexer, '"')) { + return false; + } + // Last " + advance(s, lexer); + return true; + } else { + return scan_identifier(s, lexer); + } +} + +static bool parse_attribute_begin(Scanner *s, TSLexer *lexer, + const bool *valid_symbols) { + if (!valid_symbols[BLOCK_ATTRIBUTE_BEGIN]) { + return false; + } + if (lexer->lookahead != '{') { + return false; + } + // Only consume the `{`, if successful. + advance(s, lexer); + lexer->mark_end(lexer); + + // Match indent to one past the `{` + uint8_t indent = s->indent + 1; + + while (!lexer->eof(lexer)) { + consume_whitespace(s, lexer); + + switch (lexer->lookahead) { + case '\\': + advance(s, lexer); + advance(s, lexer); + break; + case '}': + lexer->result_symbol = BLOCK_ATTRIBUTE_BEGIN; + return true; + case '.': + advance(s, lexer); + if (!scan_identifier(s, lexer)) { + return false; + } + break; + case '#': + advance(s, lexer); + if (!scan_identifier(s, lexer)) { + return false; + } + break; + case '%': + if (!scan_comment(s, lexer)) { + return false; + } + break; + case '\n': + // Need to match indent! + if (indent != consume_whitespace(s, lexer)) { + return false; + } + // Can only have one newline in a row for a valid attribute. + if (lexer->lookahead == '\n') { + return false; + } + break; + default: + // First scan a key + if (!scan_identifier(s, lexer)) { + return false; + } + // Must have equals + if (lexer->lookahead != '=') { + return false; + } + advance(s, lexer); + // Then scan the value + if (!scan_value(s, lexer)) { + return false; + } + } + } + return false; +} + static bool end_paragraph_in_block_quote(Scanner *s, TSLexer *lexer) { Block *block = find_block(s, BLOCK_QUOTE); if (!block) { @@ -1910,6 +2047,16 @@ bool tree_sitter_djot_external_scanner_scan(void *payload, TSLexer *lexer, return true; } break; + case '|': + if (parse_table_begin(s, lexer, valid_symbols)) { + return true; + } + break; + case '{': + if (parse_attribute_begin(s, lexer, valid_symbols)) { + return true; + } + break; default: break; } @@ -1930,9 +2077,6 @@ bool tree_sitter_djot_external_scanner_scan(void *payload, TSLexer *lexer, parse_table_caption_begin(s, lexer)) { return true; } - if (parse_table_begin(s, lexer, valid_symbols)) { - return true; - } if (valid_symbols[TABLE_CELL] && parse_table_cell(s, lexer)) { return true; } @@ -2113,10 +2257,14 @@ static char *token_type_s(TokenType t) { return "TABLE_SEPARATOR_BEGIN"; case TABLE_ROW_BEGIN: return "TABLE_ROW_BEGIN"; + case TABLE_CELL: + return "TABLE_CELL"; case TABLE_CAPTION_BEGIN: return "TABLE_CAPTION_BEGIN"; case TABLE_CAPTION_END: return "TABLE_CAPTION_END"; + case BLOCK_ATTRIBUTE_BEGIN: + return "BLOCK_ATTRIBUTE_BEGIN"; case IN_FALLBACK: return "IN_FALLBACK"; diff --git a/tree-sitter-djot/test/corpus/syntax.txt b/tree-sitter-djot/test/corpus/syntax.txt index 4ab8900..312acbc 100644 --- a/tree-sitter-djot/test/corpus/syntax.txt +++ b/tree-sitter-djot/test/corpus/syntax.txt @@ -1209,6 +1209,16 @@ Link: inside list (list_item_content (paragraph (inline)))))) +=============================================================================== +Block attribute: must be first +=============================================================================== +[span]{author=value} + +------------------------------------------------------------------------------- + +(document + (paragraph (inline))) + =============================================================================== Div: simple =============================================================================== From 487a4bc06a8311e948bb566ea91474e48ccad1a0 Mon Sep 17 00:00:00 2001 From: Jonas Hietala Date: Thu, 23 Jan 2025 15:14:27 +0100 Subject: [PATCH 44/46] fix: Narrow verbatim in table cells --- tree-sitter-djot/src/scanner.c | 5 +++++ tree-sitter-djot/test/corpus/syntax.txt | 12 ++++++++++++ 2 files changed, 17 insertions(+) diff --git a/tree-sitter-djot/src/scanner.c b/tree-sitter-djot/src/scanner.c index ff81339..ec166e9 100644 --- a/tree-sitter-djot/src/scanner.c +++ b/tree-sitter-djot/src/scanner.c @@ -553,6 +553,11 @@ static bool parse_code_block(Scanner *s, TSLexer *lexer, uint8_t ticks) { static bool parse_backtick(Scanner *s, TSLexer *lexer, const bool *valid_symbols) { + + if (!valid_symbols[CODE_BLOCK_BEGIN] && !valid_symbols[CODE_BLOCK_END] && + !valid_symbols[BLOCK_CLOSE]) { + return false; + } uint8_t ticks = consume_chars(s, lexer, '`'); if (ticks == 0) { return false; diff --git a/tree-sitter-djot/test/corpus/syntax.txt b/tree-sitter-djot/test/corpus/syntax.txt index 312acbc..8a8a993 100644 --- a/tree-sitter-djot/test/corpus/syntax.txt +++ b/tree-sitter-djot/test/corpus/syntax.txt @@ -3066,6 +3066,18 @@ Table: verbatim cell ------------------------------------------------------------------------------- +(document + (table + (table_row + (table_cell (inline))))) + +=============================================================================== +Table: narrow verbatim cell +=============================================================================== +|`|`| + +------------------------------------------------------------------------------- + (document (table (table_row From 1b53d7020e2a269b486784211d8940b888b8761c Mon Sep 17 00:00:00 2001 From: Jonas Hietala Date: Thu, 23 Jan 2025 16:16:49 +0100 Subject: [PATCH 45/46] test: More failing block attribute formats --- tree-sitter-djot/grammar.js | 1 + tree-sitter-djot/src/grammar.json | 4 + tree-sitter-djot/src/parser.c | 21957 +++++++++++----------- tree-sitter-djot/src/scanner.c | 1 + tree-sitter-djot/test/corpus/syntax.txt | 98 + 5 files changed, 11089 insertions(+), 10972 deletions(-) diff --git a/tree-sitter-djot/grammar.js b/tree-sitter-djot/grammar.js index 1a0acb8..de89426 100644 --- a/tree-sitter-djot/grammar.js +++ b/tree-sitter-djot/grammar.js @@ -519,6 +519,7 @@ module.exports = grammar({ $.key_value, $.comment, $._whitespace1, + $._newline, ), ), $.args, diff --git a/tree-sitter-djot/src/grammar.json b/tree-sitter-djot/src/grammar.json index 1183e7e..ee6bfe1 100644 --- a/tree-sitter-djot/src/grammar.json +++ b/tree-sitter-djot/src/grammar.json @@ -2403,6 +2403,10 @@ { "type": "SYMBOL", "name": "_whitespace1" + }, + { + "type": "SYMBOL", + "name": "_newline" } ] } diff --git a/tree-sitter-djot/src/parser.c b/tree-sitter-djot/src/parser.c index f5e1408..27a0ec9 100644 --- a/tree-sitter-djot/src/parser.c +++ b/tree-sitter-djot/src/parser.c @@ -5,7 +5,7 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 1153 +#define STATE_COUNT 1152 #define LARGE_STATE_COUNT 66 #define SYMBOL_COUNT 213 #define ALIAS_COUNT 8 @@ -2038,189 +2038,189 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [235] = 210, [236] = 68, [237] = 237, - [238] = 238, - [239] = 237, + [238] = 237, + [239] = 68, [240] = 68, - [241] = 68, + [241] = 241, [242] = 237, [243] = 237, [244] = 237, [245] = 245, - [246] = 246, - [247] = 245, + [246] = 245, + [247] = 247, [248] = 245, - [249] = 245, - [250] = 245, + [249] = 249, + [250] = 250, [251] = 251, - [252] = 252, - [253] = 253, - [254] = 254, + [252] = 247, + [253] = 251, + [254] = 247, [255] = 251, - [256] = 253, - [257] = 257, - [258] = 251, - [259] = 257, - [260] = 253, - [261] = 252, - [262] = 257, - [263] = 253, - [264] = 252, - [265] = 251, - [266] = 257, - [267] = 252, - [268] = 251, - [269] = 257, - [270] = 252, + [256] = 247, + [257] = 251, + [258] = 247, + [259] = 251, + [260] = 245, + [261] = 245, + [262] = 262, + [263] = 263, + [264] = 263, + [265] = 262, + [266] = 262, + [267] = 263, + [268] = 263, + [269] = 262, + [270] = 262, [271] = 271, [272] = 272, [273] = 273, - [274] = 273, - [275] = 275, + [274] = 272, + [275] = 273, [276] = 276, [277] = 273, - [278] = 271, - [279] = 271, + [278] = 272, + [279] = 279, [280] = 280, [281] = 281, - [282] = 208, - [283] = 283, + [282] = 282, + [283] = 208, [284] = 226, - [285] = 285, + [285] = 210, [286] = 76, - [287] = 285, + [287] = 287, [288] = 288, - [289] = 288, + [289] = 289, [290] = 290, - [291] = 291, - [292] = 285, - [293] = 288, - [294] = 281, - [295] = 290, - [296] = 291, - [297] = 285, - [298] = 288, - [299] = 290, - [300] = 291, - [301] = 291, - [302] = 285, + [291] = 287, + [292] = 290, + [293] = 289, + [294] = 288, + [295] = 289, + [296] = 281, + [297] = 287, + [298] = 290, + [299] = 288, + [300] = 289, + [301] = 287, + [302] = 290, [303] = 288, - [304] = 304, - [305] = 290, - [306] = 291, - [307] = 210, - [308] = 81, - [309] = 281, - [310] = 85, - [311] = 89, - [312] = 90, - [313] = 74, - [314] = 75, - [315] = 290, + [304] = 288, + [305] = 289, + [306] = 287, + [307] = 290, + [308] = 308, + [309] = 81, + [310] = 281, + [311] = 85, + [312] = 89, + [313] = 90, + [314] = 74, + [315] = 75, [316] = 316, [317] = 317, [318] = 318, - [319] = 317, - [320] = 320, - [321] = 75, - [322] = 318, - [323] = 317, - [324] = 320, - [325] = 81, - [326] = 76, - [327] = 85, - [328] = 318, - [329] = 317, - [330] = 320, - [331] = 320, - [332] = 74, - [333] = 89, - [334] = 318, - [335] = 81, - [336] = 85, + [319] = 319, + [320] = 75, + [321] = 76, + [322] = 322, + [323] = 316, + [324] = 319, + [325] = 318, + [326] = 326, + [327] = 327, + [328] = 328, + [329] = 81, + [330] = 85, + [331] = 331, + [332] = 332, + [333] = 316, + [334] = 319, + [335] = 318, + [336] = 319, [337] = 337, - [338] = 89, - [339] = 90, - [340] = 74, - [341] = 75, - [342] = 320, - [343] = 76, - [344] = 90, - [345] = 345, - [346] = 346, - [347] = 318, - [348] = 317, - [349] = 349, - [350] = 350, - [351] = 351, + [338] = 338, + [339] = 339, + [340] = 340, + [341] = 90, + [342] = 74, + [343] = 81, + [344] = 344, + [345] = 85, + [346] = 89, + [347] = 90, + [348] = 74, + [349] = 75, + [350] = 76, + [351] = 316, [352] = 352, - [353] = 350, - [354] = 354, - [355] = 350, - [356] = 351, - [357] = 357, - [358] = 358, - [359] = 350, + [353] = 353, + [354] = 318, + [355] = 316, + [356] = 319, + [357] = 318, + [358] = 89, + [359] = 359, [360] = 360, - [361] = 350, + [361] = 361, [362] = 362, - [363] = 352, - [364] = 352, - [365] = 357, - [366] = 366, - [367] = 354, - [368] = 351, - [369] = 357, - [370] = 352, - [371] = 350, - [372] = 352, - [373] = 350, - [374] = 352, - [375] = 350, - [376] = 352, - [377] = 350, - [378] = 352, - [379] = 350, - [380] = 352, - [381] = 350, - [382] = 352, - [383] = 350, - [384] = 352, - [385] = 350, - [386] = 352, - [387] = 350, - [388] = 354, - [389] = 350, - [390] = 352, - [391] = 350, - [392] = 352, - [393] = 350, - [394] = 352, - [395] = 350, - [396] = 352, - [397] = 397, - [398] = 398, - [399] = 357, - [400] = 400, - [401] = 350, - [402] = 402, - [403] = 403, - [404] = 404, + [363] = 360, + [364] = 359, + [365] = 365, + [366] = 359, + [367] = 367, + [368] = 368, + [369] = 367, + [370] = 360, + [371] = 360, + [372] = 359, + [373] = 360, + [374] = 359, + [375] = 360, + [376] = 359, + [377] = 360, + [378] = 359, + [379] = 360, + [380] = 359, + [381] = 360, + [382] = 359, + [383] = 360, + [384] = 359, + [385] = 362, + [386] = 359, + [387] = 360, + [388] = 359, + [389] = 360, + [390] = 359, + [391] = 360, + [392] = 359, + [393] = 360, + [394] = 359, + [395] = 360, + [396] = 359, + [397] = 368, + [398] = 359, + [399] = 360, + [400] = 359, + [401] = 359, + [402] = 367, + [403] = 368, + [404] = 367, [405] = 405, - [406] = 352, - [407] = 357, - [408] = 352, - [409] = 409, - [410] = 354, - [411] = 354, - [412] = 351, - [413] = 413, - [414] = 351, - [415] = 415, - [416] = 352, + [406] = 406, + [407] = 368, + [408] = 362, + [409] = 362, + [410] = 368, + [411] = 411, + [412] = 367, + [413] = 360, + [414] = 360, + [415] = 362, + [416] = 360, [417] = 417, - [418] = 418, + [418] = 70, [419] = 419, - [420] = 70, + [420] = 420, [421] = 226, [422] = 208, [423] = 423, @@ -2237,722 +2237,721 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [434] = 434, [435] = 435, [436] = 436, - [437] = 437, + [437] = 70, [438] = 438, [439] = 439, - [440] = 70, - [441] = 441, + [440] = 440, + [441] = 84, [442] = 442, [443] = 443, - [444] = 84, - [445] = 445, - [446] = 446, - [447] = 73, - [448] = 82, - [449] = 91, - [450] = 92, - [451] = 93, - [452] = 94, - [453] = 88, - [454] = 72, - [455] = 78, - [456] = 79, - [457] = 80, - [458] = 210, + [444] = 73, + [445] = 82, + [446] = 91, + [447] = 92, + [448] = 93, + [449] = 94, + [450] = 88, + [451] = 72, + [452] = 78, + [453] = 79, + [454] = 80, + [455] = 210, + [456] = 456, + [457] = 457, + [458] = 458, [459] = 459, [460] = 460, [461] = 461, [462] = 462, [463] = 463, - [464] = 464, - [465] = 424, - [466] = 426, - [467] = 423, - [468] = 429, - [469] = 431, - [470] = 433, - [471] = 435, - [472] = 437, - [473] = 438, - [474] = 439, - [475] = 475, - [476] = 476, - [477] = 477, + [464] = 423, + [465] = 426, + [466] = 428, + [467] = 430, + [468] = 432, + [469] = 434, + [470] = 435, + [471] = 436, + [472] = 472, + [473] = 473, + [474] = 474, + [475] = 456, + [476] = 457, + [477] = 458, [478] = 459, [479] = 460, [480] = 461, [481] = 462, [482] = 463, - [483] = 464, - [484] = 424, - [485] = 426, - [486] = 423, - [487] = 429, - [488] = 431, - [489] = 433, - [490] = 435, - [491] = 437, - [492] = 438, - [493] = 439, + [483] = 423, + [484] = 426, + [485] = 428, + [486] = 430, + [487] = 463, + [488] = 434, + [489] = 435, + [490] = 436, + [491] = 456, + [492] = 457, + [493] = 458, [494] = 459, [495] = 460, [496] = 461, [497] = 462, [498] = 463, - [499] = 464, - [500] = 424, - [501] = 426, - [502] = 423, - [503] = 429, - [504] = 431, - [505] = 433, - [506] = 435, - [507] = 437, - [508] = 438, - [509] = 439, + [499] = 423, + [500] = 426, + [501] = 428, + [502] = 430, + [503] = 432, + [504] = 434, + [505] = 435, + [506] = 436, + [507] = 456, + [508] = 457, + [509] = 458, [510] = 459, [511] = 460, [512] = 461, [513] = 462, [514] = 463, - [515] = 464, - [516] = 424, - [517] = 426, - [518] = 423, - [519] = 429, - [520] = 431, - [521] = 433, - [522] = 435, - [523] = 437, - [524] = 438, - [525] = 439, - [526] = 526, + [515] = 423, + [516] = 426, + [517] = 428, + [518] = 430, + [519] = 432, + [520] = 434, + [521] = 435, + [522] = 436, + [523] = 523, + [524] = 524, + [525] = 525, + [526] = 456, [527] = 527, - [528] = 528, - [529] = 459, + [528] = 457, + [529] = 529, [530] = 530, - [531] = 460, + [531] = 458, [532] = 532, - [533] = 461, + [533] = 459, [534] = 534, - [535] = 462, + [535] = 460, [536] = 536, - [537] = 463, + [537] = 461, [538] = 538, - [539] = 464, - [540] = 540, - [541] = 442, - [542] = 442, - [543] = 442, - [544] = 442, - [545] = 135, - [546] = 118, - [547] = 119, - [548] = 120, - [549] = 122, - [550] = 226, - [551] = 208, - [552] = 94, - [553] = 553, - [554] = 226, - [555] = 208, - [556] = 226, - [557] = 208, - [558] = 226, - [559] = 208, + [539] = 462, + [540] = 439, + [541] = 439, + [542] = 439, + [543] = 439, + [544] = 432, + [545] = 545, + [546] = 122, + [547] = 226, + [548] = 208, + [549] = 88, + [550] = 550, + [551] = 226, + [552] = 208, + [553] = 226, + [554] = 208, + [555] = 226, + [556] = 208, + [557] = 70, + [558] = 558, + [559] = 559, [560] = 560, - [561] = 561, - [562] = 562, - [563] = 88, - [564] = 561, - [565] = 72, - [566] = 78, - [567] = 79, - [568] = 80, - [569] = 569, - [570] = 226, + [561] = 559, + [562] = 72, + [563] = 78, + [564] = 79, + [565] = 80, + [566] = 566, + [567] = 226, + [568] = 568, + [569] = 559, + [570] = 570, [571] = 571, - [572] = 561, + [572] = 572, [573] = 573, [574] = 574, [575] = 575, [576] = 576, [577] = 577, - [578] = 578, - [579] = 579, - [580] = 575, - [581] = 576, - [582] = 582, - [583] = 553, - [584] = 562, - [585] = 560, - [586] = 208, - [587] = 226, + [578] = 573, + [579] = 574, + [580] = 558, + [581] = 550, + [582] = 560, + [583] = 208, + [584] = 226, + [585] = 585, + [586] = 586, + [587] = 189, [588] = 588, - [589] = 189, + [589] = 589, [590] = 590, [591] = 591, [592] = 592, [593] = 593, - [594] = 594, + [594] = 208, [595] = 595, [596] = 596, - [597] = 70, - [598] = 208, - [599] = 599, - [600] = 121, - [601] = 129, - [602] = 602, - [603] = 575, - [604] = 576, - [605] = 561, - [606] = 606, - [607] = 553, - [608] = 562, - [609] = 609, - [610] = 226, - [611] = 560, - [612] = 131, - [613] = 132, - [614] = 133, - [615] = 134, - [616] = 116, - [617] = 93, - [618] = 137, - [619] = 138, - [620] = 139, - [621] = 140, - [622] = 141, - [623] = 142, - [624] = 143, - [625] = 144, - [626] = 575, - [627] = 576, - [628] = 628, - [629] = 553, - [630] = 562, + [597] = 121, + [598] = 129, + [599] = 226, + [600] = 600, + [601] = 573, + [602] = 574, + [603] = 603, + [604] = 559, + [605] = 550, + [606] = 560, + [607] = 607, + [608] = 558, + [609] = 131, + [610] = 132, + [611] = 133, + [612] = 134, + [613] = 135, + [614] = 136, + [615] = 137, + [616] = 138, + [617] = 120, + [618] = 140, + [619] = 141, + [620] = 142, + [621] = 143, + [622] = 144, + [623] = 145, + [624] = 624, + [625] = 573, + [626] = 574, + [627] = 550, + [628] = 560, + [629] = 629, + [630] = 630, [631] = 631, - [632] = 632, - [633] = 633, - [634] = 145, - [635] = 146, - [636] = 147, - [637] = 109, - [638] = 149, - [639] = 150, - [640] = 151, - [641] = 117, - [642] = 208, - [643] = 155, - [644] = 156, - [645] = 645, - [646] = 157, - [647] = 84, - [648] = 154, - [649] = 126, - [650] = 575, - [651] = 576, - [652] = 652, - [653] = 553, - [654] = 562, - [655] = 655, - [656] = 656, - [657] = 73, - [658] = 160, - [659] = 82, - [660] = 560, - [661] = 661, + [632] = 146, + [633] = 147, + [634] = 109, + [635] = 149, + [636] = 150, + [637] = 151, + [638] = 117, + [639] = 208, + [640] = 155, + [641] = 156, + [642] = 84, + [643] = 157, + [644] = 126, + [645] = 154, + [646] = 73, + [647] = 82, + [648] = 573, + [649] = 574, + [650] = 650, + [651] = 550, + [652] = 560, + [653] = 653, + [654] = 654, + [655] = 160, + [656] = 558, + [657] = 657, + [658] = 658, + [659] = 169, + [660] = 91, + [661] = 170, [662] = 662, - [663] = 663, - [664] = 169, - [665] = 665, - [666] = 170, - [667] = 91, - [668] = 92, - [669] = 173, - [670] = 174, - [671] = 175, - [672] = 111, - [673] = 112, - [674] = 113, - [675] = 114, - [676] = 115, - [677] = 136, - [678] = 117, - [679] = 111, - [680] = 112, - [681] = 113, - [682] = 114, - [683] = 115, - [684] = 116, - [685] = 118, - [686] = 119, - [687] = 120, - [688] = 122, - [689] = 210, - [690] = 210, - [691] = 560, - [692] = 561, - [693] = 693, - [694] = 560, - [695] = 561, - [696] = 560, - [697] = 561, - [698] = 210, + [663] = 92, + [664] = 93, + [665] = 173, + [666] = 174, + [667] = 175, + [668] = 111, + [669] = 112, + [670] = 113, + [671] = 114, + [672] = 115, + [673] = 116, + [674] = 94, + [675] = 118, + [676] = 119, + [677] = 139, + [678] = 558, + [679] = 558, + [680] = 559, + [681] = 558, + [682] = 559, + [683] = 91, + [684] = 559, + [685] = 558, + [686] = 559, + [687] = 559, + [688] = 688, + [689] = 689, + [690] = 690, + [691] = 691, + [692] = 692, + [693] = 72, + [694] = 694, + [695] = 695, + [696] = 696, + [697] = 155, + [698] = 698, [699] = 699, - [700] = 560, - [701] = 561, - [702] = 210, - [703] = 560, - [704] = 561, - [705] = 705, - [706] = 560, - [707] = 561, - [708] = 210, - [709] = 560, - [710] = 561, - [711] = 560, - [712] = 561, - [713] = 560, - [714] = 561, - [715] = 560, - [716] = 561, - [717] = 560, - [718] = 561, - [719] = 560, - [720] = 561, - [721] = 560, - [722] = 561, + [700] = 700, + [701] = 156, + [702] = 78, + [703] = 703, + [704] = 704, + [705] = 157, + [706] = 706, + [707] = 707, + [708] = 708, + [709] = 709, + [710] = 710, + [711] = 711, + [712] = 210, + [713] = 713, + [714] = 714, + [715] = 189, + [716] = 716, + [717] = 79, + [718] = 718, + [719] = 719, + [720] = 80, + [721] = 689, + [722] = 210, [723] = 723, [724] = 724, [725] = 725, - [726] = 726, - [727] = 727, + [726] = 658, + [727] = 690, [728] = 728, - [729] = 80, - [730] = 730, - [731] = 731, - [732] = 732, - [733] = 733, - [734] = 210, - [735] = 121, - [736] = 129, - [737] = 737, - [738] = 738, - [739] = 739, - [740] = 740, - [741] = 731, - [742] = 91, - [743] = 743, - [744] = 723, - [745] = 745, + [729] = 121, + [730] = 154, + [731] = 129, + [732] = 92, + [733] = 160, + [734] = 84, + [735] = 93, + [736] = 94, + [737] = 88, + [738] = 711, + [739] = 280, + [740] = 169, + [741] = 131, + [742] = 170, + [743] = 132, + [744] = 133, + [745] = 711, [746] = 746, - [747] = 747, + [747] = 173, [748] = 748, - [749] = 665, - [750] = 724, - [751] = 131, - [752] = 132, - [753] = 560, - [754] = 754, - [755] = 755, + [749] = 749, + [750] = 174, + [751] = 716, + [752] = 175, + [753] = 753, + [754] = 111, + [755] = 112, [756] = 756, [757] = 757, - [758] = 133, - [759] = 134, - [760] = 135, - [761] = 136, - [762] = 561, + [758] = 689, + [759] = 113, + [760] = 114, + [761] = 761, + [762] = 725, [763] = 763, - [764] = 137, + [764] = 764, [765] = 765, - [766] = 737, + [766] = 690, [767] = 767, [768] = 768, [769] = 769, - [770] = 138, - [771] = 731, - [772] = 772, - [773] = 773, - [774] = 774, + [770] = 115, + [771] = 116, + [772] = 134, + [773] = 118, + [774] = 558, [775] = 775, - [776] = 776, - [777] = 723, - [778] = 139, - [779] = 779, - [780] = 747, - [781] = 781, - [782] = 782, - [783] = 783, - [784] = 724, + [776] = 119, + [777] = 120, + [778] = 122, + [779] = 210, + [780] = 135, + [781] = 136, + [782] = 137, + [783] = 559, + [784] = 784, [785] = 785, [786] = 786, - [787] = 787, - [788] = 140, - [789] = 789, - [790] = 790, - [791] = 141, + [787] = 138, + [788] = 139, + [789] = 716, + [790] = 140, + [791] = 791, [792] = 792, [793] = 793, - [794] = 175, - [795] = 795, - [796] = 796, - [797] = 210, - [798] = 142, - [799] = 143, - [800] = 800, - [801] = 144, + [794] = 559, + [795] = 689, + [796] = 142, + [797] = 725, + [798] = 798, + [799] = 799, + [800] = 690, + [801] = 716, [802] = 802, - [803] = 803, - [804] = 145, - [805] = 731, - [806] = 146, - [807] = 147, - [808] = 808, - [809] = 809, - [810] = 109, - [811] = 723, - [812] = 149, - [813] = 747, + [803] = 143, + [804] = 804, + [805] = 144, + [806] = 145, + [807] = 146, + [808] = 147, + [809] = 109, + [810] = 149, + [811] = 150, + [812] = 151, + [813] = 210, [814] = 814, - [815] = 150, - [816] = 724, - [817] = 151, - [818] = 92, + [815] = 815, + [816] = 558, + [817] = 559, + [818] = 558, [819] = 819, - [820] = 73, - [821] = 93, - [822] = 94, - [823] = 88, - [824] = 155, - [825] = 156, - [826] = 157, - [827] = 189, - [828] = 82, - [829] = 84, - [830] = 830, - [831] = 831, - [832] = 731, - [833] = 154, - [834] = 724, - [835] = 72, - [836] = 723, - [837] = 837, - [838] = 747, - [839] = 160, - [840] = 747, - [841] = 78, - [842] = 842, - [843] = 843, - [844] = 560, + [820] = 716, + [821] = 558, + [822] = 559, + [823] = 690, + [824] = 824, + [825] = 825, + [826] = 689, + [827] = 558, + [828] = 725, + [829] = 559, + [830] = 725, + [831] = 210, + [832] = 832, + [833] = 833, + [834] = 834, + [835] = 835, + [836] = 836, + [837] = 558, + [838] = 559, + [839] = 210, + [840] = 840, + [841] = 841, + [842] = 558, + [843] = 559, + [844] = 844, [845] = 845, - [846] = 846, - [847] = 79, - [848] = 737, - [849] = 280, - [850] = 169, - [851] = 561, - [852] = 852, - [853] = 853, - [854] = 170, - [855] = 705, - [856] = 726, - [857] = 727, - [858] = 730, - [859] = 732, - [860] = 733, - [861] = 705, - [862] = 726, - [863] = 727, - [864] = 730, - [865] = 732, - [866] = 733, - [867] = 173, - [868] = 705, - [869] = 726, - [870] = 727, - [871] = 730, - [872] = 732, - [873] = 733, - [874] = 174, - [875] = 705, - [876] = 726, - [877] = 727, - [878] = 730, - [879] = 732, - [880] = 733, - [881] = 738, - [882] = 853, - [883] = 738, - [884] = 853, - [885] = 738, - [886] = 853, - [887] = 738, - [888] = 853, - [889] = 779, - [890] = 779, - [891] = 779, - [892] = 779, - [893] = 893, + [846] = 117, + [847] = 558, + [848] = 559, + [849] = 210, + [850] = 73, + [851] = 82, + [852] = 558, + [853] = 559, + [854] = 825, + [855] = 844, + [856] = 692, + [857] = 798, + [858] = 802, + [859] = 804, + [860] = 558, + [861] = 825, + [862] = 844, + [863] = 692, + [864] = 798, + [865] = 802, + [866] = 804, + [867] = 559, + [868] = 825, + [869] = 844, + [870] = 692, + [871] = 798, + [872] = 802, + [873] = 804, + [874] = 558, + [875] = 825, + [876] = 844, + [877] = 692, + [878] = 798, + [879] = 802, + [880] = 804, + [881] = 814, + [882] = 775, + [883] = 814, + [884] = 775, + [885] = 814, + [886] = 775, + [887] = 814, + [888] = 775, + [889] = 756, + [890] = 756, + [891] = 756, + [892] = 756, + [893] = 141, [894] = 894, [895] = 895, - [896] = 118, + [896] = 896, [897] = 897, [898] = 898, - [899] = 119, + [899] = 899, [900] = 900, [901] = 901, [902] = 902, [903] = 903, [904] = 904, - [905] = 120, - [906] = 906, - [907] = 907, + [905] = 905, + [906] = 900, + [907] = 901, [908] = 908, [909] = 909, - [910] = 910, - [911] = 911, - [912] = 912, - [913] = 908, - [914] = 914, - [915] = 915, - [916] = 916, + [910] = 895, + [911] = 908, + [912] = 897, + [913] = 898, + [914] = 902, + [915] = 909, + [916] = 900, [917] = 901, - [918] = 902, - [919] = 912, - [920] = 916, + [918] = 908, + [919] = 909, + [920] = 920, [921] = 921, [922] = 922, [923] = 923, - [924] = 924, - [925] = 925, - [926] = 926, - [927] = 921, - [928] = 115, - [929] = 122, - [930] = 113, + [924] = 920, + [925] = 921, + [926] = 920, + [927] = 922, + [928] = 923, + [929] = 929, + [930] = 930, [931] = 931, - [932] = 932, + [932] = 894, [933] = 933, - [934] = 160, + [934] = 934, [935] = 935, - [936] = 126, - [937] = 155, - [938] = 156, - [939] = 116, - [940] = 932, - [941] = 941, - [942] = 157, + [936] = 936, + [937] = 111, + [938] = 938, + [939] = 897, + [940] = 940, + [941] = 112, + [942] = 942, [943] = 943, - [944] = 895, - [945] = 189, - [946] = 932, + [944] = 944, + [945] = 126, + [946] = 113, [947] = 947, [948] = 948, - [949] = 895, - [950] = 895, + [949] = 949, + [950] = 950, [951] = 951, [952] = 952, [953] = 953, - [954] = 894, + [954] = 954, [955] = 955, - [956] = 951, - [957] = 951, - [958] = 169, - [959] = 900, - [960] = 960, - [961] = 922, - [962] = 962, - [963] = 904, - [964] = 964, - [965] = 951, - [966] = 923, - [967] = 914, - [968] = 968, - [969] = 170, - [970] = 911, - [971] = 971, - [972] = 908, - [973] = 914, - [974] = 915, - [975] = 924, + [956] = 114, + [957] = 115, + [958] = 899, + [959] = 959, + [960] = 921, + [961] = 961, + [962] = 903, + [963] = 116, + [964] = 160, + [965] = 922, + [966] = 966, + [967] = 118, + [968] = 896, + [969] = 895, + [970] = 970, + [971] = 897, + [972] = 898, + [973] = 902, + [974] = 923, + [975] = 900, [976] = 901, - [977] = 902, - [978] = 912, - [979] = 916, + [977] = 908, + [978] = 909, + [979] = 920, [980] = 921, [981] = 922, [982] = 923, - [983] = 924, - [984] = 984, - [985] = 900, - [986] = 154, + [983] = 983, + [984] = 949, + [985] = 950, + [986] = 986, [987] = 987, - [988] = 915, - [989] = 989, + [988] = 988, + [989] = 119, [990] = 990, - [991] = 904, - [992] = 992, + [991] = 898, + [992] = 120, [993] = 993, [994] = 994, [995] = 995, - [996] = 996, + [996] = 122, [997] = 997, - [998] = 998, - [999] = 999, - [1000] = 900, + [998] = 899, + [999] = 189, + [1000] = 902, [1001] = 1001, - [1002] = 173, - [1003] = 1003, - [1004] = 174, - [1005] = 1005, - [1006] = 121, - [1007] = 1007, - [1008] = 129, + [1002] = 1002, + [1003] = 903, + [1004] = 155, + [1005] = 121, + [1006] = 169, + [1007] = 129, + [1008] = 1008, [1009] = 1009, - [1010] = 911, - [1011] = 911, - [1012] = 908, + [1010] = 903, + [1011] = 154, + [1012] = 895, [1013] = 1013, - [1014] = 914, - [1015] = 175, - [1016] = 131, - [1017] = 915, - [1018] = 960, - [1019] = 111, - [1020] = 898, - [1021] = 941, + [1014] = 897, + [1015] = 131, + [1016] = 898, + [1017] = 954, + [1018] = 902, + [1019] = 959, + [1020] = 1020, + [1021] = 900, [1022] = 901, - [1023] = 902, - [1024] = 132, - [1025] = 133, - [1026] = 910, - [1027] = 933, - [1028] = 912, - [1029] = 916, - [1030] = 921, - [1031] = 1007, + [1023] = 132, + [1024] = 133, + [1025] = 943, + [1026] = 944, + [1027] = 908, + [1028] = 909, + [1029] = 920, + [1030] = 1030, + [1031] = 951, [1032] = 952, - [1033] = 953, - [1034] = 134, - [1035] = 135, - [1036] = 136, - [1037] = 960, - [1038] = 1038, - [1039] = 898, - [1040] = 922, - [1041] = 923, - [1042] = 924, - [1043] = 137, - [1044] = 138, - [1045] = 910, - [1046] = 933, - [1047] = 1001, - [1048] = 904, - [1049] = 900, - [1050] = 1007, + [1033] = 134, + [1034] = 135, + [1035] = 136, + [1036] = 954, + [1037] = 921, + [1038] = 117, + [1039] = 922, + [1040] = 923, + [1041] = 896, + [1042] = 137, + [1043] = 138, + [1044] = 943, + [1045] = 944, + [1046] = 935, + [1047] = 170, + [1048] = 949, + [1049] = 1030, + [1050] = 951, [1051] = 952, - [1052] = 953, - [1053] = 139, - [1054] = 140, - [1055] = 141, - [1056] = 960, - [1057] = 1057, - [1058] = 898, - [1059] = 1059, + [1052] = 139, + [1053] = 140, + [1054] = 141, + [1055] = 954, + [1056] = 950, + [1057] = 959, + [1058] = 1058, + [1059] = 950, [1060] = 1060, - [1061] = 1061, - [1062] = 142, - [1063] = 143, - [1064] = 910, - [1065] = 933, - [1066] = 1066, + [1061] = 142, + [1062] = 143, + [1063] = 943, + [1064] = 944, + [1065] = 156, + [1066] = 157, [1067] = 1067, - [1068] = 911, - [1069] = 1007, + [1068] = 1030, + [1069] = 951, [1070] = 952, - [1071] = 953, - [1072] = 144, - [1073] = 145, - [1074] = 960, - [1075] = 362, - [1076] = 898, - [1077] = 908, - [1078] = 914, - [1079] = 915, - [1080] = 146, - [1081] = 147, - [1082] = 910, - [1083] = 933, - [1084] = 904, - [1085] = 114, - [1086] = 901, - [1087] = 1007, + [1071] = 144, + [1072] = 145, + [1073] = 954, + [1074] = 173, + [1075] = 959, + [1076] = 174, + [1077] = 899, + [1078] = 899, + [1079] = 146, + [1080] = 147, + [1081] = 943, + [1082] = 944, + [1083] = 1030, + [1084] = 895, + [1085] = 1085, + [1086] = 1030, + [1087] = 951, [1088] = 952, - [1089] = 953, - [1090] = 898, - [1091] = 898, - [1092] = 898, - [1093] = 898, - [1094] = 898, - [1095] = 898, - [1096] = 898, - [1097] = 898, - [1098] = 898, - [1099] = 898, - [1100] = 898, - [1101] = 898, - [1102] = 898, - [1103] = 898, - [1104] = 997, + [1089] = 959, + [1090] = 959, + [1091] = 959, + [1092] = 959, + [1093] = 959, + [1094] = 959, + [1095] = 959, + [1096] = 959, + [1097] = 959, + [1098] = 959, + [1099] = 959, + [1100] = 959, + [1101] = 959, + [1102] = 959, + [1103] = 995, + [1104] = 983, [1105] = 1105, - [1106] = 935, - [1107] = 902, - [1108] = 926, - [1109] = 1038, - [1110] = 997, - [1111] = 912, - [1112] = 935, - [1113] = 916, - [1114] = 926, - [1115] = 1038, - [1116] = 997, - [1117] = 921, - [1118] = 935, - [1119] = 922, - [1120] = 926, - [1121] = 1038, - [1122] = 997, - [1123] = 923, - [1124] = 935, - [1125] = 924, - [1126] = 926, - [1127] = 1038, - [1128] = 932, - [1129] = 984, - [1130] = 895, - [1131] = 984, - [1132] = 951, - [1133] = 984, - [1134] = 1134, - [1135] = 984, - [1136] = 894, - [1137] = 1067, - [1138] = 894, - [1139] = 1067, - [1140] = 117, - [1141] = 1067, - [1142] = 894, - [1143] = 1067, - [1144] = 897, - [1145] = 897, - [1146] = 897, - [1147] = 897, - [1148] = 109, - [1149] = 149, - [1150] = 150, - [1151] = 151, - [1152] = 112, + [1106] = 903, + [1107] = 934, + [1108] = 1108, + [1109] = 995, + [1110] = 1110, + [1111] = 1105, + [1112] = 1112, + [1113] = 934, + [1114] = 1108, + [1115] = 995, + [1116] = 949, + [1117] = 1105, + [1118] = 175, + [1119] = 934, + [1120] = 1108, + [1121] = 995, + [1122] = 1122, + [1123] = 1105, + [1124] = 896, + [1125] = 934, + [1126] = 1108, + [1127] = 949, + [1128] = 1067, + [1129] = 950, + [1130] = 1067, + [1131] = 1131, + [1132] = 1067, + [1133] = 1108, + [1134] = 1067, + [1135] = 894, + [1136] = 1122, + [1137] = 894, + [1138] = 1122, + [1139] = 894, + [1140] = 1122, + [1141] = 1105, + [1142] = 1122, + [1143] = 931, + [1144] = 931, + [1145] = 931, + [1146] = 931, + [1147] = 109, + [1148] = 149, + [1149] = 150, + [1150] = 151, + [1151] = 959, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -3620,856 +3619,856 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [236] = {.lex_state = 0, .external_lex_state = 19}, [237] = {.lex_state = 1, .external_lex_state = 23}, [238] = {.lex_state = 1, .external_lex_state = 23}, - [239] = {.lex_state = 1, .external_lex_state = 23}, - [240] = {.lex_state = 0, .external_lex_state = 22}, - [241] = {.lex_state = 0, .external_lex_state = 21}, + [239] = {.lex_state = 0, .external_lex_state = 22}, + [240] = {.lex_state = 0, .external_lex_state = 21}, + [241] = {.lex_state = 1, .external_lex_state = 23}, [242] = {.lex_state = 1, .external_lex_state = 23}, [243] = {.lex_state = 1, .external_lex_state = 23}, [244] = {.lex_state = 1, .external_lex_state = 23}, [245] = {.lex_state = 17, .external_lex_state = 24}, - [246] = {.lex_state = 17, .external_lex_state = 20}, - [247] = {.lex_state = 17, .external_lex_state = 24}, + [246] = {.lex_state = 17, .external_lex_state = 24}, + [247] = {.lex_state = 2, .external_lex_state = 25}, [248] = {.lex_state = 17, .external_lex_state = 24}, - [249] = {.lex_state = 17, .external_lex_state = 24}, - [250] = {.lex_state = 17, .external_lex_state = 24}, - [251] = {.lex_state = 2}, - [252] = {.lex_state = 2}, - [253] = {.lex_state = 17}, - [254] = {.lex_state = 2}, - [255] = {.lex_state = 2}, - [256] = {.lex_state = 17}, - [257] = {.lex_state = 17}, - [258] = {.lex_state = 2}, - [259] = {.lex_state = 17}, - [260] = {.lex_state = 17}, - [261] = {.lex_state = 2}, + [249] = {.lex_state = 2, .external_lex_state = 25}, + [250] = {.lex_state = 17, .external_lex_state = 20}, + [251] = {.lex_state = 2, .external_lex_state = 25}, + [252] = {.lex_state = 2, .external_lex_state = 25}, + [253] = {.lex_state = 2, .external_lex_state = 25}, + [254] = {.lex_state = 2, .external_lex_state = 25}, + [255] = {.lex_state = 2, .external_lex_state = 25}, + [256] = {.lex_state = 2, .external_lex_state = 25}, + [257] = {.lex_state = 2, .external_lex_state = 25}, + [258] = {.lex_state = 2, .external_lex_state = 25}, + [259] = {.lex_state = 2, .external_lex_state = 25}, + [260] = {.lex_state = 17, .external_lex_state = 24}, + [261] = {.lex_state = 17, .external_lex_state = 24}, [262] = {.lex_state = 17}, [263] = {.lex_state = 17}, - [264] = {.lex_state = 2}, - [265] = {.lex_state = 2}, + [264] = {.lex_state = 17}, + [265] = {.lex_state = 17}, [266] = {.lex_state = 17}, - [267] = {.lex_state = 2}, - [268] = {.lex_state = 2}, + [267] = {.lex_state = 17}, + [268] = {.lex_state = 17}, [269] = {.lex_state = 17}, - [270] = {.lex_state = 2}, - [271] = {.lex_state = 17, .external_lex_state = 24}, - [272] = {.lex_state = 17}, + [270] = {.lex_state = 17}, + [271] = {.lex_state = 17}, + [272] = {.lex_state = 17, .external_lex_state = 24}, [273] = {.lex_state = 17, .external_lex_state = 24}, - [274] = {.lex_state = 4}, - [275] = {.lex_state = 17}, + [274] = {.lex_state = 17, .external_lex_state = 26}, + [275] = {.lex_state = 17, .external_lex_state = 26}, [276] = {.lex_state = 17}, - [277] = {.lex_state = 17, .external_lex_state = 25}, - [278] = {.lex_state = 17, .external_lex_state = 25}, - [279] = {.lex_state = 4}, + [277] = {.lex_state = 4}, + [278] = {.lex_state = 4}, + [279] = {.lex_state = 17}, [280] = {.lex_state = 1, .external_lex_state = 23}, [281] = {.lex_state = 17, .external_lex_state = 24}, - [282] = {.lex_state = 17, .external_lex_state = 20}, - [283] = {.lex_state = 1, .external_lex_state = 23}, + [282] = {.lex_state = 1, .external_lex_state = 23}, + [283] = {.lex_state = 17, .external_lex_state = 20}, [284] = {.lex_state = 17, .external_lex_state = 20}, - [285] = {.lex_state = 0, .external_lex_state = 26}, + [285] = {.lex_state = 17, .external_lex_state = 20}, [286] = {.lex_state = 0, .external_lex_state = 19}, - [287] = {.lex_state = 0, .external_lex_state = 26}, - [288] = {.lex_state = 37, .external_lex_state = 27}, + [287] = {.lex_state = 37, .external_lex_state = 27}, + [288] = {.lex_state = 0, .external_lex_state = 28}, [289] = {.lex_state = 37, .external_lex_state = 27}, [290] = {.lex_state = 37, .external_lex_state = 27}, [291] = {.lex_state = 37, .external_lex_state = 27}, - [292] = {.lex_state = 0, .external_lex_state = 26}, + [292] = {.lex_state = 37, .external_lex_state = 27}, [293] = {.lex_state = 37, .external_lex_state = 27}, - [294] = {.lex_state = 17, .external_lex_state = 25}, + [294] = {.lex_state = 0, .external_lex_state = 28}, [295] = {.lex_state = 37, .external_lex_state = 27}, - [296] = {.lex_state = 37, .external_lex_state = 27}, - [297] = {.lex_state = 0, .external_lex_state = 26}, + [296] = {.lex_state = 17, .external_lex_state = 26}, + [297] = {.lex_state = 37, .external_lex_state = 27}, [298] = {.lex_state = 37, .external_lex_state = 27}, - [299] = {.lex_state = 37, .external_lex_state = 27}, + [299] = {.lex_state = 0, .external_lex_state = 28}, [300] = {.lex_state = 37, .external_lex_state = 27}, [301] = {.lex_state = 37, .external_lex_state = 27}, - [302] = {.lex_state = 0, .external_lex_state = 26}, - [303] = {.lex_state = 37, .external_lex_state = 27}, - [304] = {.lex_state = 0, .external_lex_state = 26}, + [302] = {.lex_state = 37, .external_lex_state = 27}, + [303] = {.lex_state = 0, .external_lex_state = 28}, + [304] = {.lex_state = 0, .external_lex_state = 28}, [305] = {.lex_state = 37, .external_lex_state = 27}, [306] = {.lex_state = 37, .external_lex_state = 27}, - [307] = {.lex_state = 17, .external_lex_state = 20}, - [308] = {.lex_state = 0, .external_lex_state = 19}, - [309] = {.lex_state = 4}, - [310] = {.lex_state = 0, .external_lex_state = 19}, + [307] = {.lex_state = 37, .external_lex_state = 27}, + [308] = {.lex_state = 0, .external_lex_state = 28}, + [309] = {.lex_state = 0, .external_lex_state = 19}, + [310] = {.lex_state = 4}, [311] = {.lex_state = 0, .external_lex_state = 19}, [312] = {.lex_state = 0, .external_lex_state = 19}, [313] = {.lex_state = 0, .external_lex_state = 19}, [314] = {.lex_state = 0, .external_lex_state = 19}, - [315] = {.lex_state = 37, .external_lex_state = 27}, - [316] = {.lex_state = 0, .external_lex_state = 28}, - [317] = {.lex_state = 0, .external_lex_state = 29}, - [318] = {.lex_state = 0, .external_lex_state = 28}, - [319] = {.lex_state = 0, .external_lex_state = 29}, - [320] = {.lex_state = 0, .external_lex_state = 30}, + [315] = {.lex_state = 0, .external_lex_state = 19}, + [316] = {.lex_state = 0, .external_lex_state = 29}, + [317] = {.lex_state = 2, .external_lex_state = 25}, + [318] = {.lex_state = 0, .external_lex_state = 30}, + [319] = {.lex_state = 0, .external_lex_state = 31}, + [320] = {.lex_state = 0, .external_lex_state = 21}, [321] = {.lex_state = 0, .external_lex_state = 21}, - [322] = {.lex_state = 0, .external_lex_state = 28}, + [322] = {.lex_state = 2, .external_lex_state = 25}, [323] = {.lex_state = 0, .external_lex_state = 29}, - [324] = {.lex_state = 0, .external_lex_state = 30}, - [325] = {.lex_state = 0, .external_lex_state = 22}, - [326] = {.lex_state = 0, .external_lex_state = 21}, - [327] = {.lex_state = 0, .external_lex_state = 21}, - [328] = {.lex_state = 0, .external_lex_state = 28}, - [329] = {.lex_state = 0, .external_lex_state = 29}, - [330] = {.lex_state = 0, .external_lex_state = 30}, - [331] = {.lex_state = 0, .external_lex_state = 30}, - [332] = {.lex_state = 0, .external_lex_state = 21}, - [333] = {.lex_state = 0, .external_lex_state = 21}, - [334] = {.lex_state = 0, .external_lex_state = 28}, - [335] = {.lex_state = 0, .external_lex_state = 21}, - [336] = {.lex_state = 0, .external_lex_state = 22}, - [337] = {.lex_state = 0, .external_lex_state = 29}, - [338] = {.lex_state = 0, .external_lex_state = 22}, - [339] = {.lex_state = 0, .external_lex_state = 22}, - [340] = {.lex_state = 0, .external_lex_state = 22}, - [341] = {.lex_state = 0, .external_lex_state = 22}, - [342] = {.lex_state = 0, .external_lex_state = 30}, - [343] = {.lex_state = 0, .external_lex_state = 22}, - [344] = {.lex_state = 0, .external_lex_state = 21}, - [345] = {.lex_state = 37, .external_lex_state = 27}, - [346] = {.lex_state = 37, .external_lex_state = 27}, - [347] = {.lex_state = 0, .external_lex_state = 28}, - [348] = {.lex_state = 0, .external_lex_state = 29}, - [349] = {.lex_state = 0, .external_lex_state = 30}, - [350] = {.lex_state = 0, .external_lex_state = 31}, - [351] = {.lex_state = 0, .external_lex_state = 32}, + [324] = {.lex_state = 0, .external_lex_state = 31}, + [325] = {.lex_state = 0, .external_lex_state = 30}, + [326] = {.lex_state = 2, .external_lex_state = 25}, + [327] = {.lex_state = 2, .external_lex_state = 25}, + [328] = {.lex_state = 2, .external_lex_state = 25}, + [329] = {.lex_state = 0, .external_lex_state = 22}, + [330] = {.lex_state = 0, .external_lex_state = 21}, + [331] = {.lex_state = 2, .external_lex_state = 25}, + [332] = {.lex_state = 2, .external_lex_state = 25}, + [333] = {.lex_state = 0, .external_lex_state = 29}, + [334] = {.lex_state = 0, .external_lex_state = 31}, + [335] = {.lex_state = 0, .external_lex_state = 30}, + [336] = {.lex_state = 0, .external_lex_state = 31}, + [337] = {.lex_state = 2, .external_lex_state = 25}, + [338] = {.lex_state = 0, .external_lex_state = 30}, + [339] = {.lex_state = 2, .external_lex_state = 25}, + [340] = {.lex_state = 0, .external_lex_state = 29}, + [341] = {.lex_state = 0, .external_lex_state = 21}, + [342] = {.lex_state = 0, .external_lex_state = 21}, + [343] = {.lex_state = 0, .external_lex_state = 21}, + [344] = {.lex_state = 37, .external_lex_state = 27}, + [345] = {.lex_state = 0, .external_lex_state = 22}, + [346] = {.lex_state = 0, .external_lex_state = 22}, + [347] = {.lex_state = 0, .external_lex_state = 22}, + [348] = {.lex_state = 0, .external_lex_state = 22}, + [349] = {.lex_state = 0, .external_lex_state = 22}, + [350] = {.lex_state = 0, .external_lex_state = 22}, + [351] = {.lex_state = 0, .external_lex_state = 29}, [352] = {.lex_state = 0, .external_lex_state = 31}, - [353] = {.lex_state = 0, .external_lex_state = 31}, - [354] = {.lex_state = 0, .external_lex_state = 32}, - [355] = {.lex_state = 0, .external_lex_state = 31}, - [356] = {.lex_state = 0, .external_lex_state = 32}, - [357] = {.lex_state = 0, .external_lex_state = 33}, - [358] = {.lex_state = 2}, - [359] = {.lex_state = 0, .external_lex_state = 31}, - [360] = {.lex_state = 2}, - [361] = {.lex_state = 0, .external_lex_state = 31}, - [362] = {.lex_state = 2}, - [363] = {.lex_state = 0, .external_lex_state = 31}, - [364] = {.lex_state = 0, .external_lex_state = 31}, - [365] = {.lex_state = 0, .external_lex_state = 33}, - [366] = {.lex_state = 0, .external_lex_state = 31}, - [367] = {.lex_state = 0, .external_lex_state = 32}, - [368] = {.lex_state = 0, .external_lex_state = 32}, - [369] = {.lex_state = 0, .external_lex_state = 33}, - [370] = {.lex_state = 0, .external_lex_state = 31}, - [371] = {.lex_state = 0, .external_lex_state = 31}, - [372] = {.lex_state = 0, .external_lex_state = 31}, - [373] = {.lex_state = 0, .external_lex_state = 31}, - [374] = {.lex_state = 0, .external_lex_state = 31}, - [375] = {.lex_state = 0, .external_lex_state = 31}, - [376] = {.lex_state = 0, .external_lex_state = 31}, - [377] = {.lex_state = 0, .external_lex_state = 31}, - [378] = {.lex_state = 0, .external_lex_state = 31}, - [379] = {.lex_state = 0, .external_lex_state = 31}, - [380] = {.lex_state = 0, .external_lex_state = 31}, - [381] = {.lex_state = 0, .external_lex_state = 31}, - [382] = {.lex_state = 0, .external_lex_state = 31}, - [383] = {.lex_state = 0, .external_lex_state = 31}, - [384] = {.lex_state = 0, .external_lex_state = 31}, - [385] = {.lex_state = 0, .external_lex_state = 31}, - [386] = {.lex_state = 0, .external_lex_state = 31}, - [387] = {.lex_state = 0, .external_lex_state = 31}, + [353] = {.lex_state = 37, .external_lex_state = 27}, + [354] = {.lex_state = 0, .external_lex_state = 30}, + [355] = {.lex_state = 0, .external_lex_state = 29}, + [356] = {.lex_state = 0, .external_lex_state = 31}, + [357] = {.lex_state = 0, .external_lex_state = 30}, + [358] = {.lex_state = 0, .external_lex_state = 21}, + [359] = {.lex_state = 0, .external_lex_state = 32}, + [360] = {.lex_state = 0, .external_lex_state = 32}, + [361] = {.lex_state = 0, .external_lex_state = 32}, + [362] = {.lex_state = 0, .external_lex_state = 33}, + [363] = {.lex_state = 0, .external_lex_state = 32}, + [364] = {.lex_state = 0, .external_lex_state = 32}, + [365] = {.lex_state = 0, .external_lex_state = 32}, + [366] = {.lex_state = 0, .external_lex_state = 32}, + [367] = {.lex_state = 0, .external_lex_state = 34}, + [368] = {.lex_state = 0, .external_lex_state = 34}, + [369] = {.lex_state = 0, .external_lex_state = 34}, + [370] = {.lex_state = 0, .external_lex_state = 32}, + [371] = {.lex_state = 0, .external_lex_state = 32}, + [372] = {.lex_state = 0, .external_lex_state = 32}, + [373] = {.lex_state = 0, .external_lex_state = 32}, + [374] = {.lex_state = 0, .external_lex_state = 32}, + [375] = {.lex_state = 0, .external_lex_state = 32}, + [376] = {.lex_state = 0, .external_lex_state = 32}, + [377] = {.lex_state = 0, .external_lex_state = 32}, + [378] = {.lex_state = 0, .external_lex_state = 32}, + [379] = {.lex_state = 0, .external_lex_state = 32}, + [380] = {.lex_state = 0, .external_lex_state = 32}, + [381] = {.lex_state = 0, .external_lex_state = 32}, + [382] = {.lex_state = 0, .external_lex_state = 32}, + [383] = {.lex_state = 0, .external_lex_state = 32}, + [384] = {.lex_state = 0, .external_lex_state = 32}, + [385] = {.lex_state = 0, .external_lex_state = 33}, + [386] = {.lex_state = 0, .external_lex_state = 32}, + [387] = {.lex_state = 0, .external_lex_state = 32}, [388] = {.lex_state = 0, .external_lex_state = 32}, - [389] = {.lex_state = 0, .external_lex_state = 31}, - [390] = {.lex_state = 0, .external_lex_state = 31}, - [391] = {.lex_state = 0, .external_lex_state = 31}, - [392] = {.lex_state = 0, .external_lex_state = 31}, - [393] = {.lex_state = 0, .external_lex_state = 31}, - [394] = {.lex_state = 0, .external_lex_state = 31}, - [395] = {.lex_state = 0, .external_lex_state = 31}, - [396] = {.lex_state = 0, .external_lex_state = 31}, - [397] = {.lex_state = 0, .external_lex_state = 31}, - [398] = {.lex_state = 2}, - [399] = {.lex_state = 0, .external_lex_state = 33}, - [400] = {.lex_state = 2}, - [401] = {.lex_state = 0, .external_lex_state = 31}, - [402] = {.lex_state = 0, .external_lex_state = 31}, - [403] = {.lex_state = 2}, - [404] = {.lex_state = 0, .external_lex_state = 32}, - [405] = {.lex_state = 2}, - [406] = {.lex_state = 0, .external_lex_state = 31}, - [407] = {.lex_state = 0, .external_lex_state = 33}, - [408] = {.lex_state = 0, .external_lex_state = 31}, - [409] = {.lex_state = 2}, - [410] = {.lex_state = 0, .external_lex_state = 32}, + [389] = {.lex_state = 0, .external_lex_state = 32}, + [390] = {.lex_state = 0, .external_lex_state = 32}, + [391] = {.lex_state = 0, .external_lex_state = 32}, + [392] = {.lex_state = 0, .external_lex_state = 32}, + [393] = {.lex_state = 0, .external_lex_state = 32}, + [394] = {.lex_state = 0, .external_lex_state = 32}, + [395] = {.lex_state = 0, .external_lex_state = 32}, + [396] = {.lex_state = 0, .external_lex_state = 32}, + [397] = {.lex_state = 0, .external_lex_state = 34}, + [398] = {.lex_state = 0, .external_lex_state = 32}, + [399] = {.lex_state = 0, .external_lex_state = 32}, + [400] = {.lex_state = 0, .external_lex_state = 32}, + [401] = {.lex_state = 0, .external_lex_state = 32}, + [402] = {.lex_state = 0, .external_lex_state = 34}, + [403] = {.lex_state = 0, .external_lex_state = 34}, + [404] = {.lex_state = 0, .external_lex_state = 34}, + [405] = {.lex_state = 0, .external_lex_state = 32}, + [406] = {.lex_state = 0, .external_lex_state = 34}, + [407] = {.lex_state = 0, .external_lex_state = 34}, + [408] = {.lex_state = 0, .external_lex_state = 33}, + [409] = {.lex_state = 0, .external_lex_state = 33}, + [410] = {.lex_state = 0, .external_lex_state = 34}, [411] = {.lex_state = 0, .external_lex_state = 32}, - [412] = {.lex_state = 0, .external_lex_state = 32}, - [413] = {.lex_state = 0, .external_lex_state = 31}, + [412] = {.lex_state = 0, .external_lex_state = 34}, + [413] = {.lex_state = 0, .external_lex_state = 32}, [414] = {.lex_state = 0, .external_lex_state = 32}, - [415] = {.lex_state = 2}, - [416] = {.lex_state = 0, .external_lex_state = 31}, + [415] = {.lex_state = 0, .external_lex_state = 33}, + [416] = {.lex_state = 0, .external_lex_state = 32}, [417] = {.lex_state = 0, .external_lex_state = 27}, - [418] = {.lex_state = 0, .external_lex_state = 27}, + [418] = {.lex_state = 0, .external_lex_state = 35}, [419] = {.lex_state = 0, .external_lex_state = 27}, - [420] = {.lex_state = 0, .external_lex_state = 34}, - [421] = {.lex_state = 0, .external_lex_state = 35}, - [422] = {.lex_state = 0, .external_lex_state = 35}, - [423] = {.lex_state = 0, .external_lex_state = 36}, - [424] = {.lex_state = 0, .external_lex_state = 37}, - [425] = {.lex_state = 0, .external_lex_state = 38}, - [426] = {.lex_state = 0, .external_lex_state = 39}, - [427] = {.lex_state = 0, .external_lex_state = 40}, - [428] = {.lex_state = 0, .external_lex_state = 41}, - [429] = {.lex_state = 0, .external_lex_state = 38}, - [430] = {.lex_state = 0, .external_lex_state = 42}, - [431] = {.lex_state = 0, .external_lex_state = 40}, - [432] = {.lex_state = 0, .external_lex_state = 43}, - [433] = {.lex_state = 0, .external_lex_state = 41}, - [434] = {.lex_state = 0, .external_lex_state = 44}, - [435] = {.lex_state = 0, .external_lex_state = 42}, - [436] = {.lex_state = 0, .external_lex_state = 45}, - [437] = {.lex_state = 0, .external_lex_state = 43}, - [438] = {.lex_state = 0, .external_lex_state = 44}, - [439] = {.lex_state = 0, .external_lex_state = 45}, - [440] = {.lex_state = 0, .external_lex_state = 46}, - [441] = {.lex_state = 37}, - [442] = {.lex_state = 5, .external_lex_state = 47}, - [443] = {.lex_state = 6}, + [420] = {.lex_state = 0, .external_lex_state = 27}, + [421] = {.lex_state = 0, .external_lex_state = 36}, + [422] = {.lex_state = 0, .external_lex_state = 36}, + [423] = {.lex_state = 0, .external_lex_state = 37}, + [424] = {.lex_state = 0, .external_lex_state = 38}, + [425] = {.lex_state = 0, .external_lex_state = 39}, + [426] = {.lex_state = 0, .external_lex_state = 40}, + [427] = {.lex_state = 0, .external_lex_state = 41}, + [428] = {.lex_state = 0, .external_lex_state = 38}, + [429] = {.lex_state = 0, .external_lex_state = 42}, + [430] = {.lex_state = 0, .external_lex_state = 39}, + [431] = {.lex_state = 0, .external_lex_state = 43}, + [432] = {.lex_state = 0, .external_lex_state = 41}, + [433] = {.lex_state = 0, .external_lex_state = 44}, + [434] = {.lex_state = 0, .external_lex_state = 42}, + [435] = {.lex_state = 0, .external_lex_state = 43}, + [436] = {.lex_state = 0, .external_lex_state = 44}, + [437] = {.lex_state = 0, .external_lex_state = 45}, + [438] = {.lex_state = 37}, + [439] = {.lex_state = 5, .external_lex_state = 25}, + [440] = {.lex_state = 6}, + [441] = {.lex_state = 0, .external_lex_state = 46}, + [442] = {.lex_state = 37, .external_lex_state = 47}, + [443] = {.lex_state = 37}, [444] = {.lex_state = 0, .external_lex_state = 48}, - [445] = {.lex_state = 37, .external_lex_state = 49}, - [446] = {.lex_state = 37}, - [447] = {.lex_state = 0, .external_lex_state = 50}, - [448] = {.lex_state = 0, .external_lex_state = 51}, - [449] = {.lex_state = 0, .external_lex_state = 50}, - [450] = {.lex_state = 0, .external_lex_state = 50}, - [451] = {.lex_state = 0, .external_lex_state = 51}, - [452] = {.lex_state = 0, .external_lex_state = 51}, - [453] = {.lex_state = 0, .external_lex_state = 51}, - [454] = {.lex_state = 0, .external_lex_state = 50}, - [455] = {.lex_state = 0, .external_lex_state = 51}, - [456] = {.lex_state = 0, .external_lex_state = 51}, - [457] = {.lex_state = 0, .external_lex_state = 48}, - [458] = {.lex_state = 0, .external_lex_state = 35}, - [459] = {.lex_state = 0, .external_lex_state = 52}, - [460] = {.lex_state = 0, .external_lex_state = 53}, - [461] = {.lex_state = 0, .external_lex_state = 54}, - [462] = {.lex_state = 0, .external_lex_state = 55}, - [463] = {.lex_state = 0, .external_lex_state = 56}, - [464] = {.lex_state = 0, .external_lex_state = 57}, - [465] = {.lex_state = 0, .external_lex_state = 37}, - [466] = {.lex_state = 0, .external_lex_state = 39}, - [467] = {.lex_state = 0, .external_lex_state = 36}, - [468] = {.lex_state = 0, .external_lex_state = 38}, - [469] = {.lex_state = 0, .external_lex_state = 40}, - [470] = {.lex_state = 0, .external_lex_state = 41}, - [471] = {.lex_state = 0, .external_lex_state = 42}, - [472] = {.lex_state = 0, .external_lex_state = 43}, - [473] = {.lex_state = 0, .external_lex_state = 44}, - [474] = {.lex_state = 0, .external_lex_state = 45}, - [475] = {.lex_state = 6}, - [476] = {.lex_state = 6}, - [477] = {.lex_state = 37, .external_lex_state = 49}, - [478] = {.lex_state = 0, .external_lex_state = 52}, - [479] = {.lex_state = 0, .external_lex_state = 53}, - [480] = {.lex_state = 0, .external_lex_state = 54}, - [481] = {.lex_state = 0, .external_lex_state = 55}, - [482] = {.lex_state = 0, .external_lex_state = 56}, - [483] = {.lex_state = 0, .external_lex_state = 57}, - [484] = {.lex_state = 0, .external_lex_state = 37}, - [485] = {.lex_state = 0, .external_lex_state = 39}, - [486] = {.lex_state = 0, .external_lex_state = 36}, - [487] = {.lex_state = 0, .external_lex_state = 38}, - [488] = {.lex_state = 0, .external_lex_state = 40}, - [489] = {.lex_state = 0, .external_lex_state = 41}, - [490] = {.lex_state = 0, .external_lex_state = 42}, - [491] = {.lex_state = 0, .external_lex_state = 43}, - [492] = {.lex_state = 0, .external_lex_state = 44}, - [493] = {.lex_state = 0, .external_lex_state = 45}, - [494] = {.lex_state = 0, .external_lex_state = 52}, - [495] = {.lex_state = 0, .external_lex_state = 53}, - [496] = {.lex_state = 0, .external_lex_state = 54}, - [497] = {.lex_state = 0, .external_lex_state = 55}, - [498] = {.lex_state = 0, .external_lex_state = 56}, - [499] = {.lex_state = 0, .external_lex_state = 57}, - [500] = {.lex_state = 0, .external_lex_state = 37}, - [501] = {.lex_state = 0, .external_lex_state = 39}, - [502] = {.lex_state = 0, .external_lex_state = 36}, - [503] = {.lex_state = 0, .external_lex_state = 38}, - [504] = {.lex_state = 0, .external_lex_state = 40}, - [505] = {.lex_state = 0, .external_lex_state = 41}, - [506] = {.lex_state = 0, .external_lex_state = 42}, - [507] = {.lex_state = 0, .external_lex_state = 43}, - [508] = {.lex_state = 0, .external_lex_state = 44}, - [509] = {.lex_state = 0, .external_lex_state = 45}, - [510] = {.lex_state = 0, .external_lex_state = 52}, - [511] = {.lex_state = 0, .external_lex_state = 53}, - [512] = {.lex_state = 0, .external_lex_state = 54}, - [513] = {.lex_state = 0, .external_lex_state = 55}, - [514] = {.lex_state = 0, .external_lex_state = 56}, - [515] = {.lex_state = 0, .external_lex_state = 57}, - [516] = {.lex_state = 0, .external_lex_state = 37}, - [517] = {.lex_state = 0, .external_lex_state = 39}, - [518] = {.lex_state = 0, .external_lex_state = 36}, - [519] = {.lex_state = 0, .external_lex_state = 38}, - [520] = {.lex_state = 0, .external_lex_state = 40}, - [521] = {.lex_state = 0, .external_lex_state = 41}, - [522] = {.lex_state = 0, .external_lex_state = 42}, - [523] = {.lex_state = 0, .external_lex_state = 43}, - [524] = {.lex_state = 0, .external_lex_state = 44}, - [525] = {.lex_state = 0, .external_lex_state = 45}, - [526] = {.lex_state = 0, .external_lex_state = 52}, + [445] = {.lex_state = 0, .external_lex_state = 49}, + [446] = {.lex_state = 0, .external_lex_state = 48}, + [447] = {.lex_state = 0, .external_lex_state = 48}, + [448] = {.lex_state = 0, .external_lex_state = 49}, + [449] = {.lex_state = 0, .external_lex_state = 49}, + [450] = {.lex_state = 0, .external_lex_state = 49}, + [451] = {.lex_state = 0, .external_lex_state = 48}, + [452] = {.lex_state = 0, .external_lex_state = 49}, + [453] = {.lex_state = 0, .external_lex_state = 49}, + [454] = {.lex_state = 0, .external_lex_state = 46}, + [455] = {.lex_state = 0, .external_lex_state = 36}, + [456] = {.lex_state = 0, .external_lex_state = 50}, + [457] = {.lex_state = 0, .external_lex_state = 51}, + [458] = {.lex_state = 0, .external_lex_state = 52}, + [459] = {.lex_state = 0, .external_lex_state = 53}, + [460] = {.lex_state = 0, .external_lex_state = 54}, + [461] = {.lex_state = 0, .external_lex_state = 55}, + [462] = {.lex_state = 0, .external_lex_state = 56}, + [463] = {.lex_state = 0, .external_lex_state = 57}, + [464] = {.lex_state = 0, .external_lex_state = 37}, + [465] = {.lex_state = 0, .external_lex_state = 40}, + [466] = {.lex_state = 0, .external_lex_state = 38}, + [467] = {.lex_state = 0, .external_lex_state = 39}, + [468] = {.lex_state = 0, .external_lex_state = 41}, + [469] = {.lex_state = 0, .external_lex_state = 42}, + [470] = {.lex_state = 0, .external_lex_state = 43}, + [471] = {.lex_state = 0, .external_lex_state = 44}, + [472] = {.lex_state = 6}, + [473] = {.lex_state = 6}, + [474] = {.lex_state = 37, .external_lex_state = 47}, + [475] = {.lex_state = 0, .external_lex_state = 50}, + [476] = {.lex_state = 0, .external_lex_state = 51}, + [477] = {.lex_state = 0, .external_lex_state = 52}, + [478] = {.lex_state = 0, .external_lex_state = 53}, + [479] = {.lex_state = 0, .external_lex_state = 54}, + [480] = {.lex_state = 0, .external_lex_state = 55}, + [481] = {.lex_state = 0, .external_lex_state = 56}, + [482] = {.lex_state = 0, .external_lex_state = 57}, + [483] = {.lex_state = 0, .external_lex_state = 37}, + [484] = {.lex_state = 0, .external_lex_state = 40}, + [485] = {.lex_state = 0, .external_lex_state = 38}, + [486] = {.lex_state = 0, .external_lex_state = 39}, + [487] = {.lex_state = 0, .external_lex_state = 57}, + [488] = {.lex_state = 0, .external_lex_state = 42}, + [489] = {.lex_state = 0, .external_lex_state = 43}, + [490] = {.lex_state = 0, .external_lex_state = 44}, + [491] = {.lex_state = 0, .external_lex_state = 50}, + [492] = {.lex_state = 0, .external_lex_state = 51}, + [493] = {.lex_state = 0, .external_lex_state = 52}, + [494] = {.lex_state = 0, .external_lex_state = 53}, + [495] = {.lex_state = 0, .external_lex_state = 54}, + [496] = {.lex_state = 0, .external_lex_state = 55}, + [497] = {.lex_state = 0, .external_lex_state = 56}, + [498] = {.lex_state = 0, .external_lex_state = 57}, + [499] = {.lex_state = 0, .external_lex_state = 37}, + [500] = {.lex_state = 0, .external_lex_state = 40}, + [501] = {.lex_state = 0, .external_lex_state = 38}, + [502] = {.lex_state = 0, .external_lex_state = 39}, + [503] = {.lex_state = 0, .external_lex_state = 41}, + [504] = {.lex_state = 0, .external_lex_state = 42}, + [505] = {.lex_state = 0, .external_lex_state = 43}, + [506] = {.lex_state = 0, .external_lex_state = 44}, + [507] = {.lex_state = 0, .external_lex_state = 50}, + [508] = {.lex_state = 0, .external_lex_state = 51}, + [509] = {.lex_state = 0, .external_lex_state = 52}, + [510] = {.lex_state = 0, .external_lex_state = 53}, + [511] = {.lex_state = 0, .external_lex_state = 54}, + [512] = {.lex_state = 0, .external_lex_state = 55}, + [513] = {.lex_state = 0, .external_lex_state = 56}, + [514] = {.lex_state = 0, .external_lex_state = 57}, + [515] = {.lex_state = 0, .external_lex_state = 37}, + [516] = {.lex_state = 0, .external_lex_state = 40}, + [517] = {.lex_state = 0, .external_lex_state = 38}, + [518] = {.lex_state = 0, .external_lex_state = 39}, + [519] = {.lex_state = 0, .external_lex_state = 41}, + [520] = {.lex_state = 0, .external_lex_state = 42}, + [521] = {.lex_state = 0, .external_lex_state = 43}, + [522] = {.lex_state = 0, .external_lex_state = 44}, + [523] = {.lex_state = 0, .external_lex_state = 50}, + [524] = {.lex_state = 0, .external_lex_state = 51}, + [525] = {.lex_state = 0, .external_lex_state = 52}, + [526] = {.lex_state = 0, .external_lex_state = 50}, [527] = {.lex_state = 0, .external_lex_state = 53}, - [528] = {.lex_state = 0, .external_lex_state = 54}, - [529] = {.lex_state = 0, .external_lex_state = 52}, - [530] = {.lex_state = 0, .external_lex_state = 55}, - [531] = {.lex_state = 0, .external_lex_state = 53}, - [532] = {.lex_state = 0, .external_lex_state = 56}, - [533] = {.lex_state = 0, .external_lex_state = 54}, - [534] = {.lex_state = 0, .external_lex_state = 57}, - [535] = {.lex_state = 0, .external_lex_state = 55}, - [536] = {.lex_state = 0, .external_lex_state = 37}, - [537] = {.lex_state = 0, .external_lex_state = 56}, - [538] = {.lex_state = 0, .external_lex_state = 39}, - [539] = {.lex_state = 0, .external_lex_state = 57}, - [540] = {.lex_state = 0, .external_lex_state = 36}, - [541] = {.lex_state = 5, .external_lex_state = 47}, - [542] = {.lex_state = 5, .external_lex_state = 47}, - [543] = {.lex_state = 5, .external_lex_state = 47}, - [544] = {.lex_state = 5, .external_lex_state = 47}, - [545] = {.lex_state = 0, .external_lex_state = 31}, - [546] = {.lex_state = 0, .external_lex_state = 31}, - [547] = {.lex_state = 0, .external_lex_state = 31}, - [548] = {.lex_state = 0, .external_lex_state = 31}, - [549] = {.lex_state = 0, .external_lex_state = 31}, - [550] = {.lex_state = 0, .external_lex_state = 58}, - [551] = {.lex_state = 0, .external_lex_state = 58}, - [552] = {.lex_state = 0, .external_lex_state = 59}, - [553] = {.lex_state = 0, .external_lex_state = 60}, - [554] = {.lex_state = 37, .external_lex_state = 20}, - [555] = {.lex_state = 37, .external_lex_state = 20}, - [556] = {.lex_state = 0, .external_lex_state = 61}, - [557] = {.lex_state = 0, .external_lex_state = 61}, - [558] = {.lex_state = 0, .external_lex_state = 62}, - [559] = {.lex_state = 0, .external_lex_state = 62}, - [560] = {.lex_state = 0, .external_lex_state = 26}, - [561] = {.lex_state = 0, .external_lex_state = 26}, - [562] = {.lex_state = 0, .external_lex_state = 60}, + [528] = {.lex_state = 0, .external_lex_state = 51}, + [529] = {.lex_state = 0, .external_lex_state = 40}, + [530] = {.lex_state = 0, .external_lex_state = 54}, + [531] = {.lex_state = 0, .external_lex_state = 52}, + [532] = {.lex_state = 0, .external_lex_state = 55}, + [533] = {.lex_state = 0, .external_lex_state = 53}, + [534] = {.lex_state = 0, .external_lex_state = 56}, + [535] = {.lex_state = 0, .external_lex_state = 54}, + [536] = {.lex_state = 0, .external_lex_state = 57}, + [537] = {.lex_state = 0, .external_lex_state = 55}, + [538] = {.lex_state = 0, .external_lex_state = 37}, + [539] = {.lex_state = 0, .external_lex_state = 56}, + [540] = {.lex_state = 5, .external_lex_state = 25}, + [541] = {.lex_state = 5, .external_lex_state = 25}, + [542] = {.lex_state = 5, .external_lex_state = 25}, + [543] = {.lex_state = 5, .external_lex_state = 25}, + [544] = {.lex_state = 0, .external_lex_state = 41}, + [545] = {.lex_state = 0, .external_lex_state = 34}, + [546] = {.lex_state = 0, .external_lex_state = 32}, + [547] = {.lex_state = 0, .external_lex_state = 58}, + [548] = {.lex_state = 0, .external_lex_state = 58}, + [549] = {.lex_state = 0, .external_lex_state = 59}, + [550] = {.lex_state = 0, .external_lex_state = 60}, + [551] = {.lex_state = 37, .external_lex_state = 20}, + [552] = {.lex_state = 37, .external_lex_state = 20}, + [553] = {.lex_state = 0, .external_lex_state = 61}, + [554] = {.lex_state = 0, .external_lex_state = 61}, + [555] = {.lex_state = 0, .external_lex_state = 62}, + [556] = {.lex_state = 0, .external_lex_state = 62}, + [557] = {.lex_state = 0, .external_lex_state = 63}, + [558] = {.lex_state = 0, .external_lex_state = 28}, + [559] = {.lex_state = 0, .external_lex_state = 28}, + [560] = {.lex_state = 0, .external_lex_state = 60}, + [561] = {.lex_state = 0, .external_lex_state = 31}, + [562] = {.lex_state = 0, .external_lex_state = 64}, [563] = {.lex_state = 0, .external_lex_state = 59}, - [564] = {.lex_state = 0, .external_lex_state = 29}, - [565] = {.lex_state = 0, .external_lex_state = 63}, - [566] = {.lex_state = 0, .external_lex_state = 59}, - [567] = {.lex_state = 0, .external_lex_state = 59}, - [568] = {.lex_state = 0, .external_lex_state = 64}, - [569] = {.lex_state = 0, .external_lex_state = 65}, - [570] = {.lex_state = 0, .external_lex_state = 66}, - [571] = {.lex_state = 0, .external_lex_state = 65}, + [564] = {.lex_state = 0, .external_lex_state = 59}, + [565] = {.lex_state = 0, .external_lex_state = 65}, + [566] = {.lex_state = 0, .external_lex_state = 66}, + [567] = {.lex_state = 0, .external_lex_state = 67}, + [568] = {.lex_state = 0, .external_lex_state = 66}, + [569] = {.lex_state = 0, .external_lex_state = 30}, + [570] = {.lex_state = 0, .external_lex_state = 30}, + [571] = {.lex_state = 0, .external_lex_state = 29}, [572] = {.lex_state = 0, .external_lex_state = 30}, - [573] = {.lex_state = 0, .external_lex_state = 30}, - [574] = {.lex_state = 0, .external_lex_state = 28}, - [575] = {.lex_state = 0, .external_lex_state = 60}, - [576] = {.lex_state = 0, .external_lex_state = 60}, - [577] = {.lex_state = 0, .external_lex_state = 30}, - [578] = {.lex_state = 0, .external_lex_state = 29}, - [579] = {.lex_state = 7}, - [580] = {.lex_state = 0, .external_lex_state = 60}, + [573] = {.lex_state = 0, .external_lex_state = 60}, + [574] = {.lex_state = 0, .external_lex_state = 60}, + [575] = {.lex_state = 0, .external_lex_state = 31}, + [576] = {.lex_state = 7}, + [577] = {.lex_state = 6}, + [578] = {.lex_state = 0, .external_lex_state = 60}, + [579] = {.lex_state = 0, .external_lex_state = 60}, + [580] = {.lex_state = 0, .external_lex_state = 30}, [581] = {.lex_state = 0, .external_lex_state = 60}, - [582] = {.lex_state = 6}, - [583] = {.lex_state = 0, .external_lex_state = 60}, - [584] = {.lex_state = 0, .external_lex_state = 60}, - [585] = {.lex_state = 0, .external_lex_state = 30}, - [586] = {.lex_state = 0, .external_lex_state = 66}, - [587] = {.lex_state = 0, .external_lex_state = 67}, - [588] = {.lex_state = 8}, - [589] = {.lex_state = 0, .external_lex_state = 31}, - [590] = {.lex_state = 0, .external_lex_state = 26}, + [582] = {.lex_state = 0, .external_lex_state = 60}, + [583] = {.lex_state = 0, .external_lex_state = 67}, + [584] = {.lex_state = 0, .external_lex_state = 68}, + [585] = {.lex_state = 8}, + [586] = {.lex_state = 0, .external_lex_state = 28}, + [587] = {.lex_state = 0, .external_lex_state = 32}, + [588] = {.lex_state = 0, .external_lex_state = 29}, + [589] = {.lex_state = 0, .external_lex_state = 30}, + [590] = {.lex_state = 0, .external_lex_state = 31}, [591] = {.lex_state = 0, .external_lex_state = 28}, - [592] = {.lex_state = 0, .external_lex_state = 30}, - [593] = {.lex_state = 0, .external_lex_state = 29}, - [594] = {.lex_state = 0, .external_lex_state = 26}, - [595] = {.lex_state = 0, .external_lex_state = 24}, - [596] = {.lex_state = 0, .external_lex_state = 24}, - [597] = {.lex_state = 0, .external_lex_state = 68}, - [598] = {.lex_state = 0, .external_lex_state = 67}, - [599] = {.lex_state = 0, .external_lex_state = 65}, - [600] = {.lex_state = 0, .external_lex_state = 31}, - [601] = {.lex_state = 0, .external_lex_state = 31}, - [602] = {.lex_state = 37, .external_lex_state = 27}, - [603] = {.lex_state = 0, .external_lex_state = 60}, - [604] = {.lex_state = 0, .external_lex_state = 60}, - [605] = {.lex_state = 0, .external_lex_state = 28}, - [606] = {.lex_state = 0, .external_lex_state = 26}, - [607] = {.lex_state = 0, .external_lex_state = 60}, - [608] = {.lex_state = 0, .external_lex_state = 60}, - [609] = {.lex_state = 0, .external_lex_state = 31}, - [610] = {.lex_state = 0, .external_lex_state = 69}, - [611] = {.lex_state = 0, .external_lex_state = 28}, - [612] = {.lex_state = 0, .external_lex_state = 31}, - [613] = {.lex_state = 0, .external_lex_state = 31}, - [614] = {.lex_state = 0, .external_lex_state = 31}, - [615] = {.lex_state = 0, .external_lex_state = 31}, - [616] = {.lex_state = 0, .external_lex_state = 31}, - [617] = {.lex_state = 0, .external_lex_state = 59}, - [618] = {.lex_state = 0, .external_lex_state = 31}, - [619] = {.lex_state = 0, .external_lex_state = 31}, - [620] = {.lex_state = 0, .external_lex_state = 31}, - [621] = {.lex_state = 0, .external_lex_state = 31}, - [622] = {.lex_state = 0, .external_lex_state = 31}, - [623] = {.lex_state = 0, .external_lex_state = 31}, - [624] = {.lex_state = 0, .external_lex_state = 31}, - [625] = {.lex_state = 0, .external_lex_state = 31}, + [592] = {.lex_state = 0, .external_lex_state = 24}, + [593] = {.lex_state = 0, .external_lex_state = 24}, + [594] = {.lex_state = 0, .external_lex_state = 68}, + [595] = {.lex_state = 0, .external_lex_state = 29}, + [596] = {.lex_state = 0, .external_lex_state = 66}, + [597] = {.lex_state = 0, .external_lex_state = 32}, + [598] = {.lex_state = 0, .external_lex_state = 32}, + [599] = {.lex_state = 0, .external_lex_state = 69}, + [600] = {.lex_state = 37, .external_lex_state = 27}, + [601] = {.lex_state = 0, .external_lex_state = 60}, + [602] = {.lex_state = 0, .external_lex_state = 60}, + [603] = {.lex_state = 0, .external_lex_state = 28}, + [604] = {.lex_state = 0, .external_lex_state = 29}, + [605] = {.lex_state = 0, .external_lex_state = 60}, + [606] = {.lex_state = 0, .external_lex_state = 60}, + [607] = {.lex_state = 0, .external_lex_state = 32}, + [608] = {.lex_state = 0, .external_lex_state = 29}, + [609] = {.lex_state = 0, .external_lex_state = 32}, + [610] = {.lex_state = 0, .external_lex_state = 32}, + [611] = {.lex_state = 0, .external_lex_state = 32}, + [612] = {.lex_state = 0, .external_lex_state = 32}, + [613] = {.lex_state = 0, .external_lex_state = 32}, + [614] = {.lex_state = 0, .external_lex_state = 32}, + [615] = {.lex_state = 0, .external_lex_state = 32}, + [616] = {.lex_state = 0, .external_lex_state = 32}, + [617] = {.lex_state = 0, .external_lex_state = 32}, + [618] = {.lex_state = 0, .external_lex_state = 32}, + [619] = {.lex_state = 0, .external_lex_state = 32}, + [620] = {.lex_state = 0, .external_lex_state = 32}, + [621] = {.lex_state = 0, .external_lex_state = 32}, + [622] = {.lex_state = 0, .external_lex_state = 32}, + [623] = {.lex_state = 0, .external_lex_state = 32}, + [624] = {.lex_state = 0, .external_lex_state = 24}, + [625] = {.lex_state = 0, .external_lex_state = 60}, [626] = {.lex_state = 0, .external_lex_state = 60}, [627] = {.lex_state = 0, .external_lex_state = 60}, - [628] = {.lex_state = 0, .external_lex_state = 24}, - [629] = {.lex_state = 0, .external_lex_state = 60}, - [630] = {.lex_state = 0, .external_lex_state = 60}, - [631] = {.lex_state = 0, .external_lex_state = 24}, - [632] = {.lex_state = 0, .external_lex_state = 31}, - [633] = {.lex_state = 0, .external_lex_state = 31}, - [634] = {.lex_state = 0, .external_lex_state = 31}, - [635] = {.lex_state = 0, .external_lex_state = 31}, - [636] = {.lex_state = 0, .external_lex_state = 31}, - [637] = {.lex_state = 0, .external_lex_state = 31}, - [638] = {.lex_state = 0, .external_lex_state = 31}, - [639] = {.lex_state = 0, .external_lex_state = 31}, - [640] = {.lex_state = 0, .external_lex_state = 31}, - [641] = {.lex_state = 0, .external_lex_state = 31}, - [642] = {.lex_state = 0, .external_lex_state = 69}, - [643] = {.lex_state = 0, .external_lex_state = 31}, - [644] = {.lex_state = 0, .external_lex_state = 31}, - [645] = {.lex_state = 0, .external_lex_state = 28}, - [646] = {.lex_state = 0, .external_lex_state = 31}, - [647] = {.lex_state = 0, .external_lex_state = 64}, - [648] = {.lex_state = 0, .external_lex_state = 31}, - [649] = {.lex_state = 0, .external_lex_state = 31}, - [650] = {.lex_state = 0, .external_lex_state = 60}, + [628] = {.lex_state = 0, .external_lex_state = 60}, + [629] = {.lex_state = 0, .external_lex_state = 24}, + [630] = {.lex_state = 0, .external_lex_state = 32}, + [631] = {.lex_state = 0, .external_lex_state = 32}, + [632] = {.lex_state = 0, .external_lex_state = 32}, + [633] = {.lex_state = 0, .external_lex_state = 32}, + [634] = {.lex_state = 0, .external_lex_state = 32}, + [635] = {.lex_state = 0, .external_lex_state = 32}, + [636] = {.lex_state = 0, .external_lex_state = 32}, + [637] = {.lex_state = 0, .external_lex_state = 32}, + [638] = {.lex_state = 0, .external_lex_state = 32}, + [639] = {.lex_state = 0, .external_lex_state = 69}, + [640] = {.lex_state = 0, .external_lex_state = 32}, + [641] = {.lex_state = 0, .external_lex_state = 32}, + [642] = {.lex_state = 0, .external_lex_state = 65}, + [643] = {.lex_state = 0, .external_lex_state = 32}, + [644] = {.lex_state = 0, .external_lex_state = 32}, + [645] = {.lex_state = 0, .external_lex_state = 32}, + [646] = {.lex_state = 0, .external_lex_state = 64}, + [647] = {.lex_state = 0, .external_lex_state = 59}, + [648] = {.lex_state = 0, .external_lex_state = 60}, + [649] = {.lex_state = 0, .external_lex_state = 60}, + [650] = {.lex_state = 2}, [651] = {.lex_state = 0, .external_lex_state = 60}, - [652] = {.lex_state = 2}, - [653] = {.lex_state = 0, .external_lex_state = 60}, - [654] = {.lex_state = 0, .external_lex_state = 60}, - [655] = {.lex_state = 0, .external_lex_state = 31}, - [656] = {.lex_state = 0, .external_lex_state = 24}, - [657] = {.lex_state = 0, .external_lex_state = 63}, - [658] = {.lex_state = 0, .external_lex_state = 31}, - [659] = {.lex_state = 0, .external_lex_state = 59}, - [660] = {.lex_state = 0, .external_lex_state = 29}, - [661] = {.lex_state = 0, .external_lex_state = 29}, - [662] = {.lex_state = 0, .external_lex_state = 32}, - [663] = {.lex_state = 0, .external_lex_state = 32}, - [664] = {.lex_state = 0, .external_lex_state = 31}, - [665] = {.lex_state = 37, .external_lex_state = 27}, - [666] = {.lex_state = 0, .external_lex_state = 31}, - [667] = {.lex_state = 0, .external_lex_state = 63}, - [668] = {.lex_state = 0, .external_lex_state = 63}, - [669] = {.lex_state = 0, .external_lex_state = 31}, - [670] = {.lex_state = 0, .external_lex_state = 31}, - [671] = {.lex_state = 0, .external_lex_state = 31}, - [672] = {.lex_state = 0, .external_lex_state = 31}, - [673] = {.lex_state = 0, .external_lex_state = 31}, - [674] = {.lex_state = 0, .external_lex_state = 31}, - [675] = {.lex_state = 0, .external_lex_state = 31}, - [676] = {.lex_state = 0, .external_lex_state = 31}, - [677] = {.lex_state = 0, .external_lex_state = 31}, - [678] = {.lex_state = 0, .external_lex_state = 27}, - [679] = {.lex_state = 0, .external_lex_state = 27}, - [680] = {.lex_state = 0, .external_lex_state = 27}, - [681] = {.lex_state = 0, .external_lex_state = 27}, - [682] = {.lex_state = 0, .external_lex_state = 27}, - [683] = {.lex_state = 0, .external_lex_state = 27}, - [684] = {.lex_state = 0, .external_lex_state = 27}, - [685] = {.lex_state = 0, .external_lex_state = 27}, - [686] = {.lex_state = 0, .external_lex_state = 27}, - [687] = {.lex_state = 0, .external_lex_state = 27}, - [688] = {.lex_state = 0, .external_lex_state = 27}, - [689] = {.lex_state = 0, .external_lex_state = 66}, - [690] = {.lex_state = 0, .external_lex_state = 58}, - [691] = {.lex_state = 0, .external_lex_state = 39}, - [692] = {.lex_state = 0, .external_lex_state = 39}, - [693] = {.lex_state = 0, .external_lex_state = 27}, - [694] = {.lex_state = 0, .external_lex_state = 40}, - [695] = {.lex_state = 0, .external_lex_state = 40}, - [696] = {.lex_state = 0, .external_lex_state = 43}, - [697] = {.lex_state = 0, .external_lex_state = 43}, - [698] = {.lex_state = 37, .external_lex_state = 20}, - [699] = {.lex_state = 0}, - [700] = {.lex_state = 0, .external_lex_state = 54}, - [701] = {.lex_state = 0, .external_lex_state = 54}, - [702] = {.lex_state = 0, .external_lex_state = 61}, - [703] = {.lex_state = 0, .external_lex_state = 57}, - [704] = {.lex_state = 0, .external_lex_state = 57}, - [705] = {.lex_state = 0}, - [706] = {.lex_state = 0, .external_lex_state = 36}, - [707] = {.lex_state = 0, .external_lex_state = 36}, - [708] = {.lex_state = 0, .external_lex_state = 62}, - [709] = {.lex_state = 0, .external_lex_state = 41}, - [710] = {.lex_state = 0, .external_lex_state = 41}, - [711] = {.lex_state = 0, .external_lex_state = 44}, - [712] = {.lex_state = 0, .external_lex_state = 44}, - [713] = {.lex_state = 0, .external_lex_state = 55}, - [714] = {.lex_state = 0, .external_lex_state = 55}, - [715] = {.lex_state = 0, .external_lex_state = 37}, - [716] = {.lex_state = 0, .external_lex_state = 37}, - [717] = {.lex_state = 0, .external_lex_state = 38}, - [718] = {.lex_state = 0, .external_lex_state = 38}, - [719] = {.lex_state = 0, .external_lex_state = 42}, - [720] = {.lex_state = 0, .external_lex_state = 42}, - [721] = {.lex_state = 0, .external_lex_state = 45}, - [722] = {.lex_state = 0, .external_lex_state = 45}, - [723] = {.lex_state = 8, .external_lex_state = 47}, - [724] = {.lex_state = 0, .external_lex_state = 70}, - [725] = {.lex_state = 0}, - [726] = {.lex_state = 0}, - [727] = {.lex_state = 0}, - [728] = {.lex_state = 2}, - [729] = {.lex_state = 0, .external_lex_state = 71}, - [730] = {.lex_state = 0}, - [731] = {.lex_state = 8, .external_lex_state = 47}, - [732] = {.lex_state = 0}, - [733] = {.lex_state = 0}, - [734] = {.lex_state = 0, .external_lex_state = 67}, - [735] = {.lex_state = 0, .external_lex_state = 27}, - [736] = {.lex_state = 0, .external_lex_state = 27}, + [652] = {.lex_state = 0, .external_lex_state = 60}, + [653] = {.lex_state = 0, .external_lex_state = 32}, + [654] = {.lex_state = 0, .external_lex_state = 24}, + [655] = {.lex_state = 0, .external_lex_state = 32}, + [656] = {.lex_state = 0, .external_lex_state = 31}, + [657] = {.lex_state = 0, .external_lex_state = 31}, + [658] = {.lex_state = 37, .external_lex_state = 27}, + [659] = {.lex_state = 0, .external_lex_state = 32}, + [660] = {.lex_state = 0, .external_lex_state = 64}, + [661] = {.lex_state = 0, .external_lex_state = 32}, + [662] = {.lex_state = 0, .external_lex_state = 34}, + [663] = {.lex_state = 0, .external_lex_state = 64}, + [664] = {.lex_state = 0, .external_lex_state = 59}, + [665] = {.lex_state = 0, .external_lex_state = 32}, + [666] = {.lex_state = 0, .external_lex_state = 32}, + [667] = {.lex_state = 0, .external_lex_state = 32}, + [668] = {.lex_state = 0, .external_lex_state = 32}, + [669] = {.lex_state = 0, .external_lex_state = 32}, + [670] = {.lex_state = 0, .external_lex_state = 32}, + [671] = {.lex_state = 0, .external_lex_state = 32}, + [672] = {.lex_state = 0, .external_lex_state = 32}, + [673] = {.lex_state = 0, .external_lex_state = 32}, + [674] = {.lex_state = 0, .external_lex_state = 59}, + [675] = {.lex_state = 0, .external_lex_state = 32}, + [676] = {.lex_state = 0, .external_lex_state = 32}, + [677] = {.lex_state = 0, .external_lex_state = 32}, + [678] = {.lex_state = 0, .external_lex_state = 41}, + [679] = {.lex_state = 0, .external_lex_state = 56}, + [680] = {.lex_state = 0, .external_lex_state = 56}, + [681] = {.lex_state = 0, .external_lex_state = 40}, + [682] = {.lex_state = 0, .external_lex_state = 40}, + [683] = {.lex_state = 0, .external_lex_state = 70}, + [684] = {.lex_state = 0, .external_lex_state = 41}, + [685] = {.lex_state = 0, .external_lex_state = 44}, + [686] = {.lex_state = 0, .external_lex_state = 44}, + [687] = {.lex_state = 0, .external_lex_state = 51}, + [688] = {.lex_state = 0, .external_lex_state = 71}, + [689] = {.lex_state = 8, .external_lex_state = 25}, + [690] = {.lex_state = 0, .external_lex_state = 71}, + [691] = {.lex_state = 0}, + [692] = {.lex_state = 0}, + [693] = {.lex_state = 0, .external_lex_state = 70}, + [694] = {.lex_state = 0, .external_lex_state = 50}, + [695] = {.lex_state = 0, .external_lex_state = 42}, + [696] = {.lex_state = 0, .external_lex_state = 24}, + [697] = {.lex_state = 0, .external_lex_state = 27}, + [698] = {.lex_state = 0, .external_lex_state = 52}, + [699] = {.lex_state = 0, .external_lex_state = 55}, + [700] = {.lex_state = 0, .external_lex_state = 37}, + [701] = {.lex_state = 0, .external_lex_state = 27}, + [702] = {.lex_state = 0, .external_lex_state = 72}, + [703] = {.lex_state = 0, .external_lex_state = 39}, + [704] = {.lex_state = 0, .external_lex_state = 66}, + [705] = {.lex_state = 0, .external_lex_state = 27}, + [706] = {.lex_state = 0, .external_lex_state = 43}, + [707] = {.lex_state = 37}, + [708] = {.lex_state = 0, .external_lex_state = 53}, + [709] = {.lex_state = 0, .external_lex_state = 56}, + [710] = {.lex_state = 0, .external_lex_state = 40}, + [711] = {.lex_state = 0, .external_lex_state = 73}, + [712] = {.lex_state = 0, .external_lex_state = 69}, + [713] = {.lex_state = 2}, + [714] = {.lex_state = 0, .external_lex_state = 51}, + [715] = {.lex_state = 0, .external_lex_state = 27}, + [716] = {.lex_state = 8, .external_lex_state = 25}, + [717] = {.lex_state = 0, .external_lex_state = 72}, + [718] = {.lex_state = 0, .external_lex_state = 41}, + [719] = {.lex_state = 0, .external_lex_state = 52}, + [720] = {.lex_state = 0, .external_lex_state = 74}, + [721] = {.lex_state = 8, .external_lex_state = 25}, + [722] = {.lex_state = 0, .external_lex_state = 68}, + [723] = {.lex_state = 0, .external_lex_state = 71}, + [724] = {.lex_state = 0, .external_lex_state = 24}, + [725] = {.lex_state = 0, .external_lex_state = 26}, + [726] = {.lex_state = 37, .external_lex_state = 47}, + [727] = {.lex_state = 0, .external_lex_state = 71}, + [728] = {.lex_state = 5, .external_lex_state = 25}, + [729] = {.lex_state = 0, .external_lex_state = 27}, + [730] = {.lex_state = 0, .external_lex_state = 27}, + [731] = {.lex_state = 0, .external_lex_state = 27}, + [732] = {.lex_state = 0, .external_lex_state = 70}, + [733] = {.lex_state = 0, .external_lex_state = 27}, + [734] = {.lex_state = 0, .external_lex_state = 74}, + [735] = {.lex_state = 0, .external_lex_state = 72}, + [736] = {.lex_state = 0, .external_lex_state = 72}, [737] = {.lex_state = 0, .external_lex_state = 72}, [738] = {.lex_state = 0, .external_lex_state = 73}, - [739] = {.lex_state = 2}, - [740] = {.lex_state = 0, .external_lex_state = 52}, - [741] = {.lex_state = 8, .external_lex_state = 47}, - [742] = {.lex_state = 0, .external_lex_state = 74}, - [743] = {.lex_state = 0, .external_lex_state = 53}, - [744] = {.lex_state = 8, .external_lex_state = 47}, - [745] = {.lex_state = 0, .external_lex_state = 70}, - [746] = {.lex_state = 0, .external_lex_state = 24}, - [747] = {.lex_state = 0, .external_lex_state = 25}, + [739] = {.lex_state = 0, .external_lex_state = 66}, + [740] = {.lex_state = 0, .external_lex_state = 27}, + [741] = {.lex_state = 0, .external_lex_state = 27}, + [742] = {.lex_state = 0, .external_lex_state = 27}, + [743] = {.lex_state = 0, .external_lex_state = 27}, + [744] = {.lex_state = 0, .external_lex_state = 27}, + [745] = {.lex_state = 0, .external_lex_state = 73}, + [746] = {.lex_state = 0, .external_lex_state = 53}, + [747] = {.lex_state = 0, .external_lex_state = 27}, [748] = {.lex_state = 0, .external_lex_state = 54}, - [749] = {.lex_state = 37, .external_lex_state = 49}, - [750] = {.lex_state = 0, .external_lex_state = 70}, - [751] = {.lex_state = 0, .external_lex_state = 27}, + [749] = {.lex_state = 0, .external_lex_state = 55}, + [750] = {.lex_state = 0, .external_lex_state = 27}, + [751] = {.lex_state = 8, .external_lex_state = 25}, [752] = {.lex_state = 0, .external_lex_state = 27}, - [753] = {.lex_state = 0, .external_lex_state = 53}, - [754] = {.lex_state = 0, .external_lex_state = 70}, - [755] = {.lex_state = 0, .external_lex_state = 53}, - [756] = {.lex_state = 0, .external_lex_state = 56}, - [757] = {.lex_state = 0, .external_lex_state = 39}, - [758] = {.lex_state = 0, .external_lex_state = 27}, + [753] = {.lex_state = 0, .external_lex_state = 56}, + [754] = {.lex_state = 0, .external_lex_state = 27}, + [755] = {.lex_state = 0, .external_lex_state = 27}, + [756] = {.lex_state = 2}, + [757] = {.lex_state = 0, .external_lex_state = 44}, + [758] = {.lex_state = 8, .external_lex_state = 25}, [759] = {.lex_state = 0, .external_lex_state = 27}, [760] = {.lex_state = 0, .external_lex_state = 27}, - [761] = {.lex_state = 0, .external_lex_state = 27}, - [762] = {.lex_state = 0, .external_lex_state = 53}, - [763] = {.lex_state = 0, .external_lex_state = 70}, - [764] = {.lex_state = 0, .external_lex_state = 27}, + [761] = {.lex_state = 0, .external_lex_state = 57}, + [762] = {.lex_state = 0, .external_lex_state = 26}, + [763] = {.lex_state = 0, .external_lex_state = 50}, + [764] = {.lex_state = 0, .external_lex_state = 37}, [765] = {.lex_state = 0, .external_lex_state = 40}, - [766] = {.lex_state = 0, .external_lex_state = 72}, - [767] = {.lex_state = 0, .external_lex_state = 24}, - [768] = {.lex_state = 0, .external_lex_state = 55}, - [769] = {.lex_state = 0, .external_lex_state = 56}, + [766] = {.lex_state = 0, .external_lex_state = 71}, + [767] = {.lex_state = 0, .external_lex_state = 75}, + [768] = {.lex_state = 0, .external_lex_state = 38}, + [769] = {.lex_state = 0, .external_lex_state = 39}, [770] = {.lex_state = 0, .external_lex_state = 27}, - [771] = {.lex_state = 8, .external_lex_state = 47}, - [772] = {.lex_state = 0, .external_lex_state = 43}, - [773] = {.lex_state = 0, .external_lex_state = 57}, - [774] = {.lex_state = 0, .external_lex_state = 37}, - [775] = {.lex_state = 0, .external_lex_state = 54}, - [776] = {.lex_state = 0, .external_lex_state = 57}, - [777] = {.lex_state = 8, .external_lex_state = 47}, + [771] = {.lex_state = 0, .external_lex_state = 27}, + [772] = {.lex_state = 0, .external_lex_state = 27}, + [773] = {.lex_state = 0, .external_lex_state = 27}, + [774] = {.lex_state = 0, .external_lex_state = 54}, + [775] = {.lex_state = 0, .external_lex_state = 75}, + [776] = {.lex_state = 0, .external_lex_state = 27}, + [777] = {.lex_state = 0, .external_lex_state = 27}, [778] = {.lex_state = 0, .external_lex_state = 27}, - [779] = {.lex_state = 2}, - [780] = {.lex_state = 0, .external_lex_state = 25}, - [781] = {.lex_state = 0, .external_lex_state = 52}, - [782] = {.lex_state = 0, .external_lex_state = 39}, - [783] = {.lex_state = 0, .external_lex_state = 36}, - [784] = {.lex_state = 0, .external_lex_state = 70}, - [785] = {.lex_state = 0, .external_lex_state = 73}, - [786] = {.lex_state = 0, .external_lex_state = 38}, - [787] = {.lex_state = 0, .external_lex_state = 40}, + [779] = {.lex_state = 0, .external_lex_state = 67}, + [780] = {.lex_state = 0, .external_lex_state = 27}, + [781] = {.lex_state = 0, .external_lex_state = 27}, + [782] = {.lex_state = 0, .external_lex_state = 27}, + [783] = {.lex_state = 0, .external_lex_state = 54}, + [784] = {.lex_state = 0, .external_lex_state = 50}, + [785] = {.lex_state = 2}, + [786] = {.lex_state = 0, .external_lex_state = 41}, + [787] = {.lex_state = 0, .external_lex_state = 27}, [788] = {.lex_state = 0, .external_lex_state = 27}, - [789] = {.lex_state = 0, .external_lex_state = 36}, - [790] = {.lex_state = 0, .external_lex_state = 65}, - [791] = {.lex_state = 0, .external_lex_state = 27}, - [792] = {.lex_state = 0, .external_lex_state = 41}, - [793] = {.lex_state = 37}, - [794] = {.lex_state = 0, .external_lex_state = 27}, - [795] = {.lex_state = 0, .external_lex_state = 55}, - [796] = {.lex_state = 0, .external_lex_state = 37}, - [797] = {.lex_state = 0, .external_lex_state = 69}, - [798] = {.lex_state = 0, .external_lex_state = 27}, - [799] = {.lex_state = 0, .external_lex_state = 27}, - [800] = {.lex_state = 0, .external_lex_state = 38}, - [801] = {.lex_state = 0, .external_lex_state = 27}, - [802] = {.lex_state = 0, .external_lex_state = 41}, - [803] = {.lex_state = 0, .external_lex_state = 42}, - [804] = {.lex_state = 0, .external_lex_state = 27}, - [805] = {.lex_state = 8, .external_lex_state = 47}, + [789] = {.lex_state = 8, .external_lex_state = 25}, + [790] = {.lex_state = 0, .external_lex_state = 27}, + [791] = {.lex_state = 0, .external_lex_state = 42}, + [792] = {.lex_state = 0, .external_lex_state = 71}, + [793] = {.lex_state = 0, .external_lex_state = 43}, + [794] = {.lex_state = 0, .external_lex_state = 53}, + [795] = {.lex_state = 8, .external_lex_state = 25}, + [796] = {.lex_state = 0, .external_lex_state = 27}, + [797] = {.lex_state = 0, .external_lex_state = 26}, + [798] = {.lex_state = 0}, + [799] = {.lex_state = 0, .external_lex_state = 44}, + [800] = {.lex_state = 0, .external_lex_state = 71}, + [801] = {.lex_state = 8, .external_lex_state = 25}, + [802] = {.lex_state = 0}, + [803] = {.lex_state = 0, .external_lex_state = 27}, + [804] = {.lex_state = 0}, + [805] = {.lex_state = 0, .external_lex_state = 27}, [806] = {.lex_state = 0, .external_lex_state = 27}, [807] = {.lex_state = 0, .external_lex_state = 27}, - [808] = {.lex_state = 0, .external_lex_state = 43}, - [809] = {.lex_state = 0, .external_lex_state = 70}, + [808] = {.lex_state = 0, .external_lex_state = 27}, + [809] = {.lex_state = 0, .external_lex_state = 27}, [810] = {.lex_state = 0, .external_lex_state = 27}, - [811] = {.lex_state = 8, .external_lex_state = 47}, + [811] = {.lex_state = 0, .external_lex_state = 27}, [812] = {.lex_state = 0, .external_lex_state = 27}, - [813] = {.lex_state = 0, .external_lex_state = 25}, - [814] = {.lex_state = 0, .external_lex_state = 44}, - [815] = {.lex_state = 0, .external_lex_state = 27}, - [816] = {.lex_state = 0, .external_lex_state = 70}, - [817] = {.lex_state = 0, .external_lex_state = 27}, - [818] = {.lex_state = 0, .external_lex_state = 74}, - [819] = {.lex_state = 0, .external_lex_state = 45}, - [820] = {.lex_state = 0, .external_lex_state = 74}, - [821] = {.lex_state = 0, .external_lex_state = 75}, - [822] = {.lex_state = 0, .external_lex_state = 75}, - [823] = {.lex_state = 0, .external_lex_state = 75}, - [824] = {.lex_state = 0, .external_lex_state = 27}, - [825] = {.lex_state = 0, .external_lex_state = 27}, - [826] = {.lex_state = 0, .external_lex_state = 27}, - [827] = {.lex_state = 0, .external_lex_state = 27}, - [828] = {.lex_state = 0, .external_lex_state = 75}, - [829] = {.lex_state = 0, .external_lex_state = 71}, - [830] = {.lex_state = 5, .external_lex_state = 47}, - [831] = {.lex_state = 0, .external_lex_state = 42}, - [832] = {.lex_state = 8, .external_lex_state = 47}, - [833] = {.lex_state = 0, .external_lex_state = 27}, - [834] = {.lex_state = 0, .external_lex_state = 70}, - [835] = {.lex_state = 0, .external_lex_state = 74}, - [836] = {.lex_state = 8, .external_lex_state = 47}, - [837] = {.lex_state = 0, .external_lex_state = 70}, - [838] = {.lex_state = 0, .external_lex_state = 25}, - [839] = {.lex_state = 0, .external_lex_state = 27}, - [840] = {.lex_state = 0, .external_lex_state = 25}, - [841] = {.lex_state = 0, .external_lex_state = 75}, - [842] = {.lex_state = 0, .external_lex_state = 76}, - [843] = {.lex_state = 0, .external_lex_state = 72}, - [844] = {.lex_state = 0, .external_lex_state = 56}, - [845] = {.lex_state = 2, .external_lex_state = 47}, - [846] = {.lex_state = 0, .external_lex_state = 45}, - [847] = {.lex_state = 0, .external_lex_state = 75}, - [848] = {.lex_state = 0, .external_lex_state = 72}, - [849] = {.lex_state = 0, .external_lex_state = 65}, - [850] = {.lex_state = 0, .external_lex_state = 27}, - [851] = {.lex_state = 0, .external_lex_state = 56}, - [852] = {.lex_state = 0, .external_lex_state = 52}, - [853] = {.lex_state = 0, .external_lex_state = 73}, - [854] = {.lex_state = 0, .external_lex_state = 27}, + [813] = {.lex_state = 0, .external_lex_state = 58}, + [814] = {.lex_state = 0, .external_lex_state = 75}, + [815] = {.lex_state = 0, .external_lex_state = 71}, + [816] = {.lex_state = 0, .external_lex_state = 57}, + [817] = {.lex_state = 0, .external_lex_state = 57}, + [818] = {.lex_state = 0, .external_lex_state = 51}, + [819] = {.lex_state = 0, .external_lex_state = 27}, + [820] = {.lex_state = 8, .external_lex_state = 25}, + [821] = {.lex_state = 0, .external_lex_state = 38}, + [822] = {.lex_state = 0, .external_lex_state = 38}, + [823] = {.lex_state = 0, .external_lex_state = 71}, + [824] = {.lex_state = 0, .external_lex_state = 71}, + [825] = {.lex_state = 0}, + [826] = {.lex_state = 8, .external_lex_state = 25}, + [827] = {.lex_state = 0, .external_lex_state = 42}, + [828] = {.lex_state = 0, .external_lex_state = 26}, + [829] = {.lex_state = 0, .external_lex_state = 42}, + [830] = {.lex_state = 0, .external_lex_state = 26}, + [831] = {.lex_state = 37, .external_lex_state = 20}, + [832] = {.lex_state = 0, .external_lex_state = 76}, + [833] = {.lex_state = 0, .external_lex_state = 73}, + [834] = {.lex_state = 0, .external_lex_state = 51}, + [835] = {.lex_state = 2, .external_lex_state = 25}, + [836] = {.lex_state = 0}, + [837] = {.lex_state = 0, .external_lex_state = 52}, + [838] = {.lex_state = 0, .external_lex_state = 52}, + [839] = {.lex_state = 0, .external_lex_state = 61}, + [840] = {.lex_state = 0, .external_lex_state = 54}, + [841] = {.lex_state = 0, .external_lex_state = 57}, + [842] = {.lex_state = 0, .external_lex_state = 55}, + [843] = {.lex_state = 0, .external_lex_state = 55}, + [844] = {.lex_state = 0}, + [845] = {.lex_state = 0, .external_lex_state = 38}, + [846] = {.lex_state = 0, .external_lex_state = 27}, + [847] = {.lex_state = 0, .external_lex_state = 37}, + [848] = {.lex_state = 0, .external_lex_state = 37}, + [849] = {.lex_state = 0, .external_lex_state = 62}, + [850] = {.lex_state = 0, .external_lex_state = 70}, + [851] = {.lex_state = 0, .external_lex_state = 72}, + [852] = {.lex_state = 0, .external_lex_state = 39}, + [853] = {.lex_state = 0, .external_lex_state = 39}, + [854] = {.lex_state = 0}, [855] = {.lex_state = 0}, [856] = {.lex_state = 0}, [857] = {.lex_state = 0}, [858] = {.lex_state = 0}, [859] = {.lex_state = 0}, - [860] = {.lex_state = 0}, + [860] = {.lex_state = 0, .external_lex_state = 43}, [861] = {.lex_state = 0}, [862] = {.lex_state = 0}, [863] = {.lex_state = 0}, [864] = {.lex_state = 0}, [865] = {.lex_state = 0}, [866] = {.lex_state = 0}, - [867] = {.lex_state = 0, .external_lex_state = 27}, + [867] = {.lex_state = 0, .external_lex_state = 43}, [868] = {.lex_state = 0}, [869] = {.lex_state = 0}, [870] = {.lex_state = 0}, [871] = {.lex_state = 0}, [872] = {.lex_state = 0}, [873] = {.lex_state = 0}, - [874] = {.lex_state = 0, .external_lex_state = 27}, + [874] = {.lex_state = 0, .external_lex_state = 53}, [875] = {.lex_state = 0}, [876] = {.lex_state = 0}, [877] = {.lex_state = 0}, [878] = {.lex_state = 0}, [879] = {.lex_state = 0}, [880] = {.lex_state = 0}, - [881] = {.lex_state = 0, .external_lex_state = 73}, - [882] = {.lex_state = 0, .external_lex_state = 73}, - [883] = {.lex_state = 0, .external_lex_state = 73}, - [884] = {.lex_state = 0, .external_lex_state = 73}, - [885] = {.lex_state = 0, .external_lex_state = 73}, - [886] = {.lex_state = 0, .external_lex_state = 73}, - [887] = {.lex_state = 0, .external_lex_state = 73}, - [888] = {.lex_state = 0, .external_lex_state = 73}, + [881] = {.lex_state = 0, .external_lex_state = 75}, + [882] = {.lex_state = 0, .external_lex_state = 75}, + [883] = {.lex_state = 0, .external_lex_state = 75}, + [884] = {.lex_state = 0, .external_lex_state = 75}, + [885] = {.lex_state = 0, .external_lex_state = 75}, + [886] = {.lex_state = 0, .external_lex_state = 75}, + [887] = {.lex_state = 0, .external_lex_state = 75}, + [888] = {.lex_state = 0, .external_lex_state = 75}, [889] = {.lex_state = 2}, [890] = {.lex_state = 2}, [891] = {.lex_state = 2}, [892] = {.lex_state = 2}, - [893] = {.lex_state = 0, .external_lex_state = 44}, + [893] = {.lex_state = 0, .external_lex_state = 27}, [894] = {.lex_state = 0, .external_lex_state = 77}, - [895] = {.lex_state = 0, .external_lex_state = 78}, - [896] = {.lex_state = 0, .external_lex_state = 79}, - [897] = {.lex_state = 0}, - [898] = {.lex_state = 0, .external_lex_state = 79}, - [899] = {.lex_state = 0, .external_lex_state = 79}, - [900] = {.lex_state = 0, .external_lex_state = 47}, - [901] = {.lex_state = 0, .external_lex_state = 47}, - [902] = {.lex_state = 0, .external_lex_state = 47}, - [903] = {.lex_state = 0, .external_lex_state = 47}, - [904] = {.lex_state = 0, .external_lex_state = 78}, - [905] = {.lex_state = 0, .external_lex_state = 79}, - [906] = {.lex_state = 0, .external_lex_state = 47}, - [907] = {.lex_state = 0, .external_lex_state = 49}, - [908] = {.lex_state = 0, .external_lex_state = 47}, - [909] = {.lex_state = 5}, - [910] = {.lex_state = 0, .external_lex_state = 47}, - [911] = {.lex_state = 0, .external_lex_state = 47}, - [912] = {.lex_state = 0, .external_lex_state = 47}, - [913] = {.lex_state = 0, .external_lex_state = 47}, + [895] = {.lex_state = 0, .external_lex_state = 25}, + [896] = {.lex_state = 0, .external_lex_state = 78}, + [897] = {.lex_state = 0, .external_lex_state = 25}, + [898] = {.lex_state = 0, .external_lex_state = 78}, + [899] = {.lex_state = 0, .external_lex_state = 25}, + [900] = {.lex_state = 0, .external_lex_state = 25}, + [901] = {.lex_state = 0, .external_lex_state = 25}, + [902] = {.lex_state = 0, .external_lex_state = 78}, + [903] = {.lex_state = 0, .external_lex_state = 78}, + [904] = {.lex_state = 0, .external_lex_state = 25}, + [905] = {.lex_state = 0, .external_lex_state = 25}, + [906] = {.lex_state = 0, .external_lex_state = 25}, + [907] = {.lex_state = 0, .external_lex_state = 25}, + [908] = {.lex_state = 0, .external_lex_state = 25}, + [909] = {.lex_state = 0, .external_lex_state = 25}, + [910] = {.lex_state = 0, .external_lex_state = 25}, + [911] = {.lex_state = 0, .external_lex_state = 25}, + [912] = {.lex_state = 0, .external_lex_state = 25}, + [913] = {.lex_state = 0, .external_lex_state = 78}, [914] = {.lex_state = 0, .external_lex_state = 78}, - [915] = {.lex_state = 0, .external_lex_state = 78}, - [916] = {.lex_state = 0, .external_lex_state = 47}, - [917] = {.lex_state = 0, .external_lex_state = 47}, - [918] = {.lex_state = 0, .external_lex_state = 47}, - [919] = {.lex_state = 0, .external_lex_state = 47}, - [920] = {.lex_state = 0, .external_lex_state = 47}, - [921] = {.lex_state = 0, .external_lex_state = 47}, - [922] = {.lex_state = 0, .external_lex_state = 47}, - [923] = {.lex_state = 0, .external_lex_state = 47}, - [924] = {.lex_state = 0, .external_lex_state = 47}, - [925] = {.lex_state = 2}, - [926] = {.lex_state = 2}, - [927] = {.lex_state = 0, .external_lex_state = 47}, - [928] = {.lex_state = 0, .external_lex_state = 79}, - [929] = {.lex_state = 0, .external_lex_state = 79}, + [915] = {.lex_state = 0, .external_lex_state = 25}, + [916] = {.lex_state = 0, .external_lex_state = 25}, + [917] = {.lex_state = 0, .external_lex_state = 25}, + [918] = {.lex_state = 0, .external_lex_state = 25}, + [919] = {.lex_state = 0, .external_lex_state = 25}, + [920] = {.lex_state = 0, .external_lex_state = 25}, + [921] = {.lex_state = 0, .external_lex_state = 25}, + [922] = {.lex_state = 0, .external_lex_state = 25}, + [923] = {.lex_state = 0, .external_lex_state = 25}, + [924] = {.lex_state = 0, .external_lex_state = 25}, + [925] = {.lex_state = 0, .external_lex_state = 25}, + [926] = {.lex_state = 0, .external_lex_state = 25}, + [927] = {.lex_state = 0, .external_lex_state = 25}, + [928] = {.lex_state = 0, .external_lex_state = 25}, + [929] = {.lex_state = 2}, [930] = {.lex_state = 0, .external_lex_state = 79}, - [931] = {.lex_state = 0, .external_lex_state = 79}, - [932] = {.lex_state = 0, .external_lex_state = 78}, - [933] = {.lex_state = 0, .external_lex_state = 47}, - [934] = {.lex_state = 0, .external_lex_state = 79}, - [935] = {.lex_state = 8}, - [936] = {.lex_state = 0, .external_lex_state = 79}, + [931] = {.lex_state = 0}, + [932] = {.lex_state = 0, .external_lex_state = 77}, + [933] = {.lex_state = 0}, + [934] = {.lex_state = 2}, + [935] = {.lex_state = 0, .external_lex_state = 26}, + [936] = {.lex_state = 0, .external_lex_state = 25}, [937] = {.lex_state = 0, .external_lex_state = 79}, - [938] = {.lex_state = 0, .external_lex_state = 79}, - [939] = {.lex_state = 0, .external_lex_state = 79}, - [940] = {.lex_state = 0, .external_lex_state = 78}, - [941] = {.lex_state = 0, .external_lex_state = 25}, - [942] = {.lex_state = 0, .external_lex_state = 79}, - [943] = {.lex_state = 0}, - [944] = {.lex_state = 0, .external_lex_state = 78}, + [938] = {.lex_state = 0, .external_lex_state = 47}, + [939] = {.lex_state = 0, .external_lex_state = 25}, + [940] = {.lex_state = 0, .external_lex_state = 25}, + [941] = {.lex_state = 0, .external_lex_state = 79}, + [942] = {.lex_state = 5}, + [943] = {.lex_state = 0, .external_lex_state = 25}, + [944] = {.lex_state = 0, .external_lex_state = 25}, [945] = {.lex_state = 0, .external_lex_state = 79}, - [946] = {.lex_state = 0, .external_lex_state = 78}, + [946] = {.lex_state = 0, .external_lex_state = 79}, [947] = {.lex_state = 0}, - [948] = {.lex_state = 0, .external_lex_state = 80}, + [948] = {.lex_state = 0}, [949] = {.lex_state = 0, .external_lex_state = 78}, - [950] = {.lex_state = 0, .external_lex_state = 78}, - [951] = {.lex_state = 0, .external_lex_state = 47}, - [952] = {.lex_state = 48}, - [953] = {.lex_state = 0, .external_lex_state = 79}, - [954] = {.lex_state = 0, .external_lex_state = 77}, - [955] = {.lex_state = 0, .external_lex_state = 81}, - [956] = {.lex_state = 0, .external_lex_state = 47}, - [957] = {.lex_state = 0, .external_lex_state = 47}, - [958] = {.lex_state = 0, .external_lex_state = 79}, - [959] = {.lex_state = 0, .external_lex_state = 47}, - [960] = {.lex_state = 0, .external_lex_state = 47}, - [961] = {.lex_state = 0, .external_lex_state = 47}, - [962] = {.lex_state = 9}, - [963] = {.lex_state = 0, .external_lex_state = 78}, - [964] = {.lex_state = 0, .external_lex_state = 82}, - [965] = {.lex_state = 0, .external_lex_state = 47}, - [966] = {.lex_state = 0, .external_lex_state = 47}, - [967] = {.lex_state = 0, .external_lex_state = 78}, - [968] = {.lex_state = 0}, - [969] = {.lex_state = 0, .external_lex_state = 79}, - [970] = {.lex_state = 0, .external_lex_state = 47}, - [971] = {.lex_state = 0}, - [972] = {.lex_state = 0, .external_lex_state = 47}, + [950] = {.lex_state = 0, .external_lex_state = 25}, + [951] = {.lex_state = 48}, + [952] = {.lex_state = 0, .external_lex_state = 79}, + [953] = {.lex_state = 0, .external_lex_state = 80}, + [954] = {.lex_state = 0, .external_lex_state = 25}, + [955] = {.lex_state = 0}, + [956] = {.lex_state = 0, .external_lex_state = 79}, + [957] = {.lex_state = 0, .external_lex_state = 79}, + [958] = {.lex_state = 0, .external_lex_state = 25}, + [959] = {.lex_state = 0, .external_lex_state = 79}, + [960] = {.lex_state = 0, .external_lex_state = 25}, + [961] = {.lex_state = 0, .external_lex_state = 81}, + [962] = {.lex_state = 0, .external_lex_state = 78}, + [963] = {.lex_state = 0, .external_lex_state = 79}, + [964] = {.lex_state = 0, .external_lex_state = 79}, + [965] = {.lex_state = 0, .external_lex_state = 25}, + [966] = {.lex_state = 0, .external_lex_state = 82}, + [967] = {.lex_state = 0, .external_lex_state = 79}, + [968] = {.lex_state = 0, .external_lex_state = 78}, + [969] = {.lex_state = 0, .external_lex_state = 25}, + [970] = {.lex_state = 0, .external_lex_state = 83}, + [971] = {.lex_state = 0, .external_lex_state = 25}, + [972] = {.lex_state = 0, .external_lex_state = 78}, [973] = {.lex_state = 0, .external_lex_state = 78}, - [974] = {.lex_state = 0, .external_lex_state = 78}, - [975] = {.lex_state = 0, .external_lex_state = 47}, - [976] = {.lex_state = 0, .external_lex_state = 47}, - [977] = {.lex_state = 0, .external_lex_state = 47}, - [978] = {.lex_state = 0, .external_lex_state = 47}, - [979] = {.lex_state = 0, .external_lex_state = 47}, - [980] = {.lex_state = 0, .external_lex_state = 47}, - [981] = {.lex_state = 0, .external_lex_state = 47}, - [982] = {.lex_state = 0, .external_lex_state = 47}, - [983] = {.lex_state = 0, .external_lex_state = 47}, - [984] = {.lex_state = 2}, - [985] = {.lex_state = 0, .external_lex_state = 47}, - [986] = {.lex_state = 0, .external_lex_state = 79}, - [987] = {.lex_state = 0, .external_lex_state = 83}, - [988] = {.lex_state = 0, .external_lex_state = 78}, - [989] = {.lex_state = 48}, - [990] = {.lex_state = 0, .external_lex_state = 79}, + [974] = {.lex_state = 0, .external_lex_state = 25}, + [975] = {.lex_state = 0, .external_lex_state = 25}, + [976] = {.lex_state = 0, .external_lex_state = 25}, + [977] = {.lex_state = 0, .external_lex_state = 25}, + [978] = {.lex_state = 0, .external_lex_state = 25}, + [979] = {.lex_state = 0, .external_lex_state = 25}, + [980] = {.lex_state = 0, .external_lex_state = 25}, + [981] = {.lex_state = 0, .external_lex_state = 25}, + [982] = {.lex_state = 0, .external_lex_state = 25}, + [983] = {.lex_state = 0, .external_lex_state = 25}, + [984] = {.lex_state = 0, .external_lex_state = 78}, + [985] = {.lex_state = 0, .external_lex_state = 25}, + [986] = {.lex_state = 0}, + [987] = {.lex_state = 48}, + [988] = {.lex_state = 0, .external_lex_state = 47}, + [989] = {.lex_state = 0, .external_lex_state = 79}, + [990] = {.lex_state = 0}, [991] = {.lex_state = 0, .external_lex_state = 78}, - [992] = {.lex_state = 0}, + [992] = {.lex_state = 0, .external_lex_state = 79}, [993] = {.lex_state = 0}, - [994] = {.lex_state = 0, .external_lex_state = 47}, - [995] = {.lex_state = 0, .external_lex_state = 84}, - [996] = {.lex_state = 2}, - [997] = {.lex_state = 48}, - [998] = {.lex_state = 0, .external_lex_state = 79}, - [999] = {.lex_state = 2}, - [1000] = {.lex_state = 0, .external_lex_state = 47}, - [1001] = {.lex_state = 0, .external_lex_state = 47}, + [994] = {.lex_state = 0, .external_lex_state = 84}, + [995] = {.lex_state = 48}, + [996] = {.lex_state = 0, .external_lex_state = 79}, + [997] = {.lex_state = 0, .external_lex_state = 79}, + [998] = {.lex_state = 0, .external_lex_state = 25}, + [999] = {.lex_state = 0, .external_lex_state = 79}, + [1000] = {.lex_state = 0, .external_lex_state = 78}, + [1001] = {.lex_state = 0, .external_lex_state = 79}, [1002] = {.lex_state = 0, .external_lex_state = 79}, - [1003] = {.lex_state = 0, .external_lex_state = 79}, + [1003] = {.lex_state = 0, .external_lex_state = 78}, [1004] = {.lex_state = 0, .external_lex_state = 79}, - [1005] = {.lex_state = 0, .external_lex_state = 47}, + [1005] = {.lex_state = 0, .external_lex_state = 79}, [1006] = {.lex_state = 0, .external_lex_state = 79}, - [1007] = {.lex_state = 2}, - [1008] = {.lex_state = 0, .external_lex_state = 79}, - [1009] = {.lex_state = 0, .external_lex_state = 49}, - [1010] = {.lex_state = 0, .external_lex_state = 47}, - [1011] = {.lex_state = 0, .external_lex_state = 47}, - [1012] = {.lex_state = 0, .external_lex_state = 47}, - [1013] = {.lex_state = 0, .external_lex_state = 80}, - [1014] = {.lex_state = 0, .external_lex_state = 78}, + [1007] = {.lex_state = 0, .external_lex_state = 79}, + [1008] = {.lex_state = 2}, + [1009] = {.lex_state = 2}, + [1010] = {.lex_state = 0, .external_lex_state = 78}, + [1011] = {.lex_state = 0, .external_lex_state = 79}, + [1012] = {.lex_state = 0, .external_lex_state = 25}, + [1013] = {.lex_state = 2}, + [1014] = {.lex_state = 0, .external_lex_state = 25}, [1015] = {.lex_state = 0, .external_lex_state = 79}, - [1016] = {.lex_state = 0, .external_lex_state = 79}, - [1017] = {.lex_state = 0, .external_lex_state = 78}, - [1018] = {.lex_state = 0, .external_lex_state = 47}, + [1016] = {.lex_state = 0, .external_lex_state = 78}, + [1017] = {.lex_state = 0, .external_lex_state = 25}, + [1018] = {.lex_state = 0, .external_lex_state = 78}, [1019] = {.lex_state = 0, .external_lex_state = 79}, - [1020] = {.lex_state = 0, .external_lex_state = 79}, + [1020] = {.lex_state = 0, .external_lex_state = 25}, [1021] = {.lex_state = 0, .external_lex_state = 25}, - [1022] = {.lex_state = 0, .external_lex_state = 47}, - [1023] = {.lex_state = 0, .external_lex_state = 47}, + [1022] = {.lex_state = 0, .external_lex_state = 25}, + [1023] = {.lex_state = 0, .external_lex_state = 79}, [1024] = {.lex_state = 0, .external_lex_state = 79}, - [1025] = {.lex_state = 0, .external_lex_state = 79}, - [1026] = {.lex_state = 0, .external_lex_state = 47}, - [1027] = {.lex_state = 0, .external_lex_state = 47}, - [1028] = {.lex_state = 0, .external_lex_state = 47}, - [1029] = {.lex_state = 0, .external_lex_state = 47}, - [1030] = {.lex_state = 0, .external_lex_state = 47}, - [1031] = {.lex_state = 2}, - [1032] = {.lex_state = 48}, + [1025] = {.lex_state = 0, .external_lex_state = 25}, + [1026] = {.lex_state = 0, .external_lex_state = 25}, + [1027] = {.lex_state = 0, .external_lex_state = 25}, + [1028] = {.lex_state = 0, .external_lex_state = 25}, + [1029] = {.lex_state = 0, .external_lex_state = 25}, + [1030] = {.lex_state = 2}, + [1031] = {.lex_state = 48}, + [1032] = {.lex_state = 0, .external_lex_state = 79}, [1033] = {.lex_state = 0, .external_lex_state = 79}, [1034] = {.lex_state = 0, .external_lex_state = 79}, [1035] = {.lex_state = 0, .external_lex_state = 79}, - [1036] = {.lex_state = 0, .external_lex_state = 79}, - [1037] = {.lex_state = 0, .external_lex_state = 47}, - [1038] = {.lex_state = 10}, - [1039] = {.lex_state = 0, .external_lex_state = 79}, - [1040] = {.lex_state = 0, .external_lex_state = 47}, - [1041] = {.lex_state = 0, .external_lex_state = 47}, - [1042] = {.lex_state = 0, .external_lex_state = 47}, + [1036] = {.lex_state = 0, .external_lex_state = 25}, + [1037] = {.lex_state = 0, .external_lex_state = 25}, + [1038] = {.lex_state = 0, .external_lex_state = 79}, + [1039] = {.lex_state = 0, .external_lex_state = 25}, + [1040] = {.lex_state = 0, .external_lex_state = 25}, + [1041] = {.lex_state = 0, .external_lex_state = 78}, + [1042] = {.lex_state = 0, .external_lex_state = 79}, [1043] = {.lex_state = 0, .external_lex_state = 79}, - [1044] = {.lex_state = 0, .external_lex_state = 79}, - [1045] = {.lex_state = 0, .external_lex_state = 47}, - [1046] = {.lex_state = 0, .external_lex_state = 47}, - [1047] = {.lex_state = 0, .external_lex_state = 47}, + [1044] = {.lex_state = 0, .external_lex_state = 25}, + [1045] = {.lex_state = 0, .external_lex_state = 25}, + [1046] = {.lex_state = 0, .external_lex_state = 26}, + [1047] = {.lex_state = 0, .external_lex_state = 79}, [1048] = {.lex_state = 0, .external_lex_state = 78}, - [1049] = {.lex_state = 0, .external_lex_state = 47}, - [1050] = {.lex_state = 2}, - [1051] = {.lex_state = 48}, + [1049] = {.lex_state = 2}, + [1050] = {.lex_state = 48}, + [1051] = {.lex_state = 0, .external_lex_state = 79}, [1052] = {.lex_state = 0, .external_lex_state = 79}, [1053] = {.lex_state = 0, .external_lex_state = 79}, [1054] = {.lex_state = 0, .external_lex_state = 79}, - [1055] = {.lex_state = 0, .external_lex_state = 79}, - [1056] = {.lex_state = 0, .external_lex_state = 47}, - [1057] = {.lex_state = 0}, - [1058] = {.lex_state = 0, .external_lex_state = 79}, - [1059] = {.lex_state = 0}, - [1060] = {.lex_state = 2}, - [1061] = {.lex_state = 0}, + [1055] = {.lex_state = 0, .external_lex_state = 25}, + [1056] = {.lex_state = 0, .external_lex_state = 25}, + [1057] = {.lex_state = 0, .external_lex_state = 79}, + [1058] = {.lex_state = 9}, + [1059] = {.lex_state = 0, .external_lex_state = 25}, + [1060] = {.lex_state = 8}, + [1061] = {.lex_state = 0, .external_lex_state = 79}, [1062] = {.lex_state = 0, .external_lex_state = 79}, - [1063] = {.lex_state = 0, .external_lex_state = 79}, - [1064] = {.lex_state = 0, .external_lex_state = 47}, - [1065] = {.lex_state = 0, .external_lex_state = 47}, - [1066] = {.lex_state = 8}, - [1067] = {.lex_state = 0}, - [1068] = {.lex_state = 0, .external_lex_state = 47}, - [1069] = {.lex_state = 2}, - [1070] = {.lex_state = 48}, + [1063] = {.lex_state = 0, .external_lex_state = 25}, + [1064] = {.lex_state = 0, .external_lex_state = 25}, + [1065] = {.lex_state = 0, .external_lex_state = 79}, + [1066] = {.lex_state = 0, .external_lex_state = 79}, + [1067] = {.lex_state = 2}, + [1068] = {.lex_state = 2}, + [1069] = {.lex_state = 48}, + [1070] = {.lex_state = 0, .external_lex_state = 79}, [1071] = {.lex_state = 0, .external_lex_state = 79}, [1072] = {.lex_state = 0, .external_lex_state = 79}, - [1073] = {.lex_state = 0, .external_lex_state = 79}, - [1074] = {.lex_state = 0, .external_lex_state = 47}, - [1075] = {.lex_state = 0, .external_lex_state = 47}, + [1073] = {.lex_state = 0, .external_lex_state = 25}, + [1074] = {.lex_state = 0, .external_lex_state = 79}, + [1075] = {.lex_state = 0, .external_lex_state = 79}, [1076] = {.lex_state = 0, .external_lex_state = 79}, - [1077] = {.lex_state = 0, .external_lex_state = 47}, - [1078] = {.lex_state = 0, .external_lex_state = 78}, - [1079] = {.lex_state = 0, .external_lex_state = 78}, + [1077] = {.lex_state = 0, .external_lex_state = 25}, + [1078] = {.lex_state = 0, .external_lex_state = 25}, + [1079] = {.lex_state = 0, .external_lex_state = 79}, [1080] = {.lex_state = 0, .external_lex_state = 79}, - [1081] = {.lex_state = 0, .external_lex_state = 79}, - [1082] = {.lex_state = 0, .external_lex_state = 47}, - [1083] = {.lex_state = 0, .external_lex_state = 47}, - [1084] = {.lex_state = 0, .external_lex_state = 78}, - [1085] = {.lex_state = 0, .external_lex_state = 79}, - [1086] = {.lex_state = 0, .external_lex_state = 47}, - [1087] = {.lex_state = 2}, - [1088] = {.lex_state = 48}, + [1081] = {.lex_state = 0, .external_lex_state = 25}, + [1082] = {.lex_state = 0, .external_lex_state = 25}, + [1083] = {.lex_state = 2}, + [1084] = {.lex_state = 0, .external_lex_state = 25}, + [1085] = {.lex_state = 0, .external_lex_state = 82}, + [1086] = {.lex_state = 2}, + [1087] = {.lex_state = 48}, + [1088] = {.lex_state = 0, .external_lex_state = 79}, [1089] = {.lex_state = 0, .external_lex_state = 79}, [1090] = {.lex_state = 0, .external_lex_state = 79}, [1091] = {.lex_state = 0, .external_lex_state = 79}, @@ -4484,56 +4483,55 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1100] = {.lex_state = 0, .external_lex_state = 79}, [1101] = {.lex_state = 0, .external_lex_state = 79}, [1102] = {.lex_state = 0, .external_lex_state = 79}, - [1103] = {.lex_state = 0, .external_lex_state = 79}, - [1104] = {.lex_state = 48}, - [1105] = {.lex_state = 0, .external_lex_state = 47}, - [1106] = {.lex_state = 8}, - [1107] = {.lex_state = 0, .external_lex_state = 47}, - [1108] = {.lex_state = 2}, - [1109] = {.lex_state = 10}, - [1110] = {.lex_state = 48}, - [1111] = {.lex_state = 0, .external_lex_state = 47}, - [1112] = {.lex_state = 8}, - [1113] = {.lex_state = 0, .external_lex_state = 47}, - [1114] = {.lex_state = 2}, - [1115] = {.lex_state = 10}, - [1116] = {.lex_state = 48}, - [1117] = {.lex_state = 0, .external_lex_state = 47}, - [1118] = {.lex_state = 8}, - [1119] = {.lex_state = 0, .external_lex_state = 47}, - [1120] = {.lex_state = 2}, - [1121] = {.lex_state = 10}, - [1122] = {.lex_state = 48}, - [1123] = {.lex_state = 0, .external_lex_state = 47}, - [1124] = {.lex_state = 8}, - [1125] = {.lex_state = 0, .external_lex_state = 47}, - [1126] = {.lex_state = 2}, - [1127] = {.lex_state = 10}, - [1128] = {.lex_state = 0, .external_lex_state = 78}, - [1129] = {.lex_state = 2}, - [1130] = {.lex_state = 0, .external_lex_state = 78}, - [1131] = {.lex_state = 2}, - [1132] = {.lex_state = 0, .external_lex_state = 47}, - [1133] = {.lex_state = 2}, - [1134] = {.lex_state = 0}, - [1135] = {.lex_state = 2}, - [1136] = {.lex_state = 0, .external_lex_state = 77}, - [1137] = {.lex_state = 0}, - [1138] = {.lex_state = 0, .external_lex_state = 77}, - [1139] = {.lex_state = 0}, - [1140] = {.lex_state = 0, .external_lex_state = 79}, - [1141] = {.lex_state = 0}, - [1142] = {.lex_state = 0, .external_lex_state = 77}, + [1103] = {.lex_state = 48}, + [1104] = {.lex_state = 0, .external_lex_state = 25}, + [1105] = {.lex_state = 8}, + [1106] = {.lex_state = 0, .external_lex_state = 78}, + [1107] = {.lex_state = 2}, + [1108] = {.lex_state = 10}, + [1109] = {.lex_state = 48}, + [1110] = {.lex_state = 0}, + [1111] = {.lex_state = 8}, + [1112] = {.lex_state = 0}, + [1113] = {.lex_state = 2}, + [1114] = {.lex_state = 10}, + [1115] = {.lex_state = 48}, + [1116] = {.lex_state = 0, .external_lex_state = 78}, + [1117] = {.lex_state = 8}, + [1118] = {.lex_state = 0, .external_lex_state = 79}, + [1119] = {.lex_state = 2}, + [1120] = {.lex_state = 10}, + [1121] = {.lex_state = 48}, + [1122] = {.lex_state = 0}, + [1123] = {.lex_state = 8}, + [1124] = {.lex_state = 0, .external_lex_state = 78}, + [1125] = {.lex_state = 2}, + [1126] = {.lex_state = 10}, + [1127] = {.lex_state = 0, .external_lex_state = 78}, + [1128] = {.lex_state = 2}, + [1129] = {.lex_state = 0, .external_lex_state = 25}, + [1130] = {.lex_state = 2}, + [1131] = {.lex_state = 0}, + [1132] = {.lex_state = 2}, + [1133] = {.lex_state = 10}, + [1134] = {.lex_state = 2}, + [1135] = {.lex_state = 0, .external_lex_state = 77}, + [1136] = {.lex_state = 0}, + [1137] = {.lex_state = 0, .external_lex_state = 77}, + [1138] = {.lex_state = 0}, + [1139] = {.lex_state = 0, .external_lex_state = 77}, + [1140] = {.lex_state = 0}, + [1141] = {.lex_state = 8}, + [1142] = {.lex_state = 0}, [1143] = {.lex_state = 0}, [1144] = {.lex_state = 0}, [1145] = {.lex_state = 0}, [1146] = {.lex_state = 0}, - [1147] = {.lex_state = 0}, + [1147] = {.lex_state = 0, .external_lex_state = 79}, [1148] = {.lex_state = 0, .external_lex_state = 79}, [1149] = {.lex_state = 0, .external_lex_state = 79}, [1150] = {.lex_state = 0, .external_lex_state = 79}, [1151] = {.lex_state = 0, .external_lex_state = 79}, - [1152] = {.lex_state = 0, .external_lex_state = 79}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -4612,7 +4610,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__error] = ACTIONS(1), }, [1] = { - [sym_document] = STATE(992), + [sym_document] = STATE(990), [sym_frontmatter] = STATE(2), [sym__block_with_section] = STATE(125), [sym__block_element] = STATE(125), @@ -4620,55 +4618,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heading] = STATE(4), [sym_list] = STATE(125), [sym__list_dash] = STATE(167), - [sym__list_item_dash] = STATE(645), + [sym__list_item_dash] = STATE(595), [sym__list_plus] = STATE(167), - [sym__list_item_plus] = STATE(661), + [sym__list_item_plus] = STATE(657), [sym__list_star] = STATE(167), - [sym__list_item_star] = STATE(573), + [sym__list_item_star] = STATE(570), [sym__list_task] = STATE(167), - [sym__list_item_task] = STATE(590), + [sym__list_item_task] = STATE(586), [sym_list_marker_task] = STATE(43), [sym__list_definition] = STATE(167), - [sym__list_item_definition] = STATE(740), + [sym__list_item_definition] = STATE(694), [sym__list_decimal_period] = STATE(167), - [sym__list_item_decimal_period] = STATE(743), + [sym__list_item_decimal_period] = STATE(714), [sym__list_decimal_paren] = STATE(167), - [sym__list_item_decimal_paren] = STATE(748), + [sym__list_item_decimal_paren] = STATE(719), [sym__list_decimal_parens] = STATE(167), - [sym__list_item_decimal_parens] = STATE(768), + [sym__list_item_decimal_parens] = STATE(746), [sym__list_lower_alpha_period] = STATE(167), - [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_item_lower_alpha_period] = STATE(748), [sym__list_lower_alpha_paren] = STATE(167), - [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_item_lower_alpha_paren] = STATE(749), [sym__list_lower_alpha_parens] = STATE(167), - [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_item_lower_alpha_parens] = STATE(753), [sym__list_upper_alpha_period] = STATE(167), - [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_item_upper_alpha_period] = STATE(761), [sym__list_upper_alpha_paren] = STATE(167), - [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_item_upper_alpha_paren] = STATE(764), [sym__list_upper_alpha_parens] = STATE(167), - [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_item_upper_alpha_parens] = STATE(765), [sym__list_lower_roman_period] = STATE(167), - [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_item_lower_roman_period] = STATE(768), [sym__list_lower_roman_paren] = STATE(167), - [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_item_lower_roman_paren] = STATE(769), [sym__list_lower_roman_parens] = STATE(167), - [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_item_lower_roman_parens] = STATE(786), [sym__list_upper_roman_period] = STATE(167), - [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_item_upper_roman_period] = STATE(791), [sym__list_upper_roman_paren] = STATE(167), - [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_item_upper_roman_paren] = STATE(793), [sym__list_upper_roman_parens] = STATE(167), - [sym__list_item_upper_roman_parens] = STATE(819), + [sym__list_item_upper_roman_parens] = STATE(799), [sym_table] = STATE(125), [sym__table_row] = STATE(66), [sym_table_header] = STATE(66), [sym_table_separator] = STATE(66), [sym_table_row] = STATE(66), [sym_footnote] = STATE(125), - [sym_footnote_marker_begin] = STATE(954), + [sym_footnote_marker_begin] = STATE(932), [sym_div] = STATE(125), - [sym__div_marker_begin] = STATE(960), + [sym__div_marker_begin] = STATE(954), [sym_code_block] = STATE(125), [sym_raw_block] = STATE(125), [sym_thematic_break] = STATE(125), @@ -4677,31 +4675,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_link_reference_definition] = STATE(125), [sym_block_attribute] = STATE(125), [sym__paragraph] = STATE(125), - [sym__paragraph_content] = STATE(834), - [sym__paragraph_inline_content] = STATE(837), - [sym__inline] = STATE(656), + [sym__paragraph_content] = STATE(823), + [sym__paragraph_inline_content] = STATE(824), + [sym__inline] = STATE(654), [sym__symbol_fallback] = STATE(273), [aux_sym_document_repeat1] = STATE(3), - [aux_sym__list_dash_repeat1] = STATE(334), - [aux_sym__list_plus_repeat1] = STATE(317), - [aux_sym__list_star_repeat1] = STATE(342), - [aux_sym__list_task_repeat1] = STATE(297), - [aux_sym__list_definition_repeat1] = STATE(529), - [aux_sym__list_decimal_period_repeat1] = STATE(531), - [aux_sym__list_decimal_paren_repeat1] = STATE(533), - [aux_sym__list_decimal_parens_repeat1] = STATE(535), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(537), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(539), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(424), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(426), + [aux_sym__list_dash_repeat1] = STATE(351), + [aux_sym__list_plus_repeat1] = STATE(319), + [aux_sym__list_star_repeat1] = STATE(354), + [aux_sym__list_task_repeat1] = STATE(303), + [aux_sym__list_definition_repeat1] = STATE(526), + [aux_sym__list_decimal_period_repeat1] = STATE(528), + [aux_sym__list_decimal_paren_repeat1] = STATE(531), + [aux_sym__list_decimal_parens_repeat1] = STATE(533), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(535), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(537), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(539), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(487), [aux_sym__list_upper_alpha_paren_repeat1] = STATE(423), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(429), - [aux_sym__list_lower_roman_period_repeat1] = STATE(431), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(433), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(435), - [aux_sym__list_upper_roman_period_repeat1] = STATE(437), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(438), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(439), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(426), + [aux_sym__list_lower_roman_period_repeat1] = STATE(428), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(430), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(432), + [aux_sym__list_upper_roman_period_repeat1] = STATE(434), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(435), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(436), [aux_sym_table_repeat1] = STATE(66), [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), @@ -4754,55 +4752,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heading] = STATE(4), [sym_list] = STATE(125), [sym__list_dash] = STATE(167), - [sym__list_item_dash] = STATE(645), + [sym__list_item_dash] = STATE(595), [sym__list_plus] = STATE(167), - [sym__list_item_plus] = STATE(661), + [sym__list_item_plus] = STATE(657), [sym__list_star] = STATE(167), - [sym__list_item_star] = STATE(573), + [sym__list_item_star] = STATE(570), [sym__list_task] = STATE(167), - [sym__list_item_task] = STATE(590), + [sym__list_item_task] = STATE(586), [sym_list_marker_task] = STATE(43), [sym__list_definition] = STATE(167), - [sym__list_item_definition] = STATE(740), + [sym__list_item_definition] = STATE(694), [sym__list_decimal_period] = STATE(167), - [sym__list_item_decimal_period] = STATE(743), + [sym__list_item_decimal_period] = STATE(714), [sym__list_decimal_paren] = STATE(167), - [sym__list_item_decimal_paren] = STATE(748), + [sym__list_item_decimal_paren] = STATE(719), [sym__list_decimal_parens] = STATE(167), - [sym__list_item_decimal_parens] = STATE(768), + [sym__list_item_decimal_parens] = STATE(746), [sym__list_lower_alpha_period] = STATE(167), - [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_item_lower_alpha_period] = STATE(748), [sym__list_lower_alpha_paren] = STATE(167), - [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_item_lower_alpha_paren] = STATE(749), [sym__list_lower_alpha_parens] = STATE(167), - [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_item_lower_alpha_parens] = STATE(753), [sym__list_upper_alpha_period] = STATE(167), - [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_item_upper_alpha_period] = STATE(761), [sym__list_upper_alpha_paren] = STATE(167), - [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_item_upper_alpha_paren] = STATE(764), [sym__list_upper_alpha_parens] = STATE(167), - [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_item_upper_alpha_parens] = STATE(765), [sym__list_lower_roman_period] = STATE(167), - [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_item_lower_roman_period] = STATE(768), [sym__list_lower_roman_paren] = STATE(167), - [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_item_lower_roman_paren] = STATE(769), [sym__list_lower_roman_parens] = STATE(167), - [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_item_lower_roman_parens] = STATE(786), [sym__list_upper_roman_period] = STATE(167), - [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_item_upper_roman_period] = STATE(791), [sym__list_upper_roman_paren] = STATE(167), - [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_item_upper_roman_paren] = STATE(793), [sym__list_upper_roman_parens] = STATE(167), - [sym__list_item_upper_roman_parens] = STATE(819), + [sym__list_item_upper_roman_parens] = STATE(799), [sym_table] = STATE(125), [sym__table_row] = STATE(66), [sym_table_header] = STATE(66), [sym_table_separator] = STATE(66), [sym_table_row] = STATE(66), [sym_footnote] = STATE(125), - [sym_footnote_marker_begin] = STATE(954), + [sym_footnote_marker_begin] = STATE(932), [sym_div] = STATE(125), - [sym__div_marker_begin] = STATE(960), + [sym__div_marker_begin] = STATE(954), [sym_code_block] = STATE(125), [sym_raw_block] = STATE(125), [sym_thematic_break] = STATE(125), @@ -4811,31 +4809,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_link_reference_definition] = STATE(125), [sym_block_attribute] = STATE(125), [sym__paragraph] = STATE(125), - [sym__paragraph_content] = STATE(834), - [sym__paragraph_inline_content] = STATE(837), - [sym__inline] = STATE(656), + [sym__paragraph_content] = STATE(823), + [sym__paragraph_inline_content] = STATE(824), + [sym__inline] = STATE(654), [sym__symbol_fallback] = STATE(273), [aux_sym_document_repeat1] = STATE(5), - [aux_sym__list_dash_repeat1] = STATE(334), - [aux_sym__list_plus_repeat1] = STATE(317), - [aux_sym__list_star_repeat1] = STATE(342), - [aux_sym__list_task_repeat1] = STATE(297), - [aux_sym__list_definition_repeat1] = STATE(529), - [aux_sym__list_decimal_period_repeat1] = STATE(531), - [aux_sym__list_decimal_paren_repeat1] = STATE(533), - [aux_sym__list_decimal_parens_repeat1] = STATE(535), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(537), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(539), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(424), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(426), + [aux_sym__list_dash_repeat1] = STATE(351), + [aux_sym__list_plus_repeat1] = STATE(319), + [aux_sym__list_star_repeat1] = STATE(354), + [aux_sym__list_task_repeat1] = STATE(303), + [aux_sym__list_definition_repeat1] = STATE(526), + [aux_sym__list_decimal_period_repeat1] = STATE(528), + [aux_sym__list_decimal_paren_repeat1] = STATE(531), + [aux_sym__list_decimal_parens_repeat1] = STATE(533), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(535), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(537), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(539), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(487), [aux_sym__list_upper_alpha_paren_repeat1] = STATE(423), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(429), - [aux_sym__list_lower_roman_period_repeat1] = STATE(431), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(433), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(435), - [aux_sym__list_upper_roman_period_repeat1] = STATE(437), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(438), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(439), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(426), + [aux_sym__list_lower_roman_period_repeat1] = STATE(428), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(430), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(432), + [aux_sym__list_upper_roman_period_repeat1] = STATE(434), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(435), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(436), [aux_sym_table_repeat1] = STATE(66), [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), @@ -4887,55 +4885,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heading] = STATE(4), [sym_list] = STATE(125), [sym__list_dash] = STATE(167), - [sym__list_item_dash] = STATE(645), + [sym__list_item_dash] = STATE(595), [sym__list_plus] = STATE(167), - [sym__list_item_plus] = STATE(661), + [sym__list_item_plus] = STATE(657), [sym__list_star] = STATE(167), - [sym__list_item_star] = STATE(573), + [sym__list_item_star] = STATE(570), [sym__list_task] = STATE(167), - [sym__list_item_task] = STATE(590), + [sym__list_item_task] = STATE(586), [sym_list_marker_task] = STATE(43), [sym__list_definition] = STATE(167), - [sym__list_item_definition] = STATE(740), + [sym__list_item_definition] = STATE(694), [sym__list_decimal_period] = STATE(167), - [sym__list_item_decimal_period] = STATE(743), + [sym__list_item_decimal_period] = STATE(714), [sym__list_decimal_paren] = STATE(167), - [sym__list_item_decimal_paren] = STATE(748), + [sym__list_item_decimal_paren] = STATE(719), [sym__list_decimal_parens] = STATE(167), - [sym__list_item_decimal_parens] = STATE(768), + [sym__list_item_decimal_parens] = STATE(746), [sym__list_lower_alpha_period] = STATE(167), - [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_item_lower_alpha_period] = STATE(748), [sym__list_lower_alpha_paren] = STATE(167), - [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_item_lower_alpha_paren] = STATE(749), [sym__list_lower_alpha_parens] = STATE(167), - [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_item_lower_alpha_parens] = STATE(753), [sym__list_upper_alpha_period] = STATE(167), - [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_item_upper_alpha_period] = STATE(761), [sym__list_upper_alpha_paren] = STATE(167), - [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_item_upper_alpha_paren] = STATE(764), [sym__list_upper_alpha_parens] = STATE(167), - [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_item_upper_alpha_parens] = STATE(765), [sym__list_lower_roman_period] = STATE(167), - [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_item_lower_roman_period] = STATE(768), [sym__list_lower_roman_paren] = STATE(167), - [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_item_lower_roman_paren] = STATE(769), [sym__list_lower_roman_parens] = STATE(167), - [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_item_lower_roman_parens] = STATE(786), [sym__list_upper_roman_period] = STATE(167), - [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_item_upper_roman_period] = STATE(791), [sym__list_upper_roman_paren] = STATE(167), - [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_item_upper_roman_paren] = STATE(793), [sym__list_upper_roman_parens] = STATE(167), - [sym__list_item_upper_roman_parens] = STATE(819), + [sym__list_item_upper_roman_parens] = STATE(799), [sym_table] = STATE(125), [sym__table_row] = STATE(66), [sym_table_header] = STATE(66), [sym_table_separator] = STATE(66), [sym_table_row] = STATE(66), [sym_footnote] = STATE(125), - [sym_footnote_marker_begin] = STATE(954), + [sym_footnote_marker_begin] = STATE(932), [sym_div] = STATE(125), - [sym__div_marker_begin] = STATE(960), + [sym__div_marker_begin] = STATE(954), [sym_code_block] = STATE(125), [sym_raw_block] = STATE(125), [sym_thematic_break] = STATE(125), @@ -4944,31 +4942,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_link_reference_definition] = STATE(125), [sym_block_attribute] = STATE(125), [sym__paragraph] = STATE(125), - [sym__paragraph_content] = STATE(834), - [sym__paragraph_inline_content] = STATE(837), - [sym__inline] = STATE(656), + [sym__paragraph_content] = STATE(823), + [sym__paragraph_inline_content] = STATE(824), + [sym__inline] = STATE(654), [sym__symbol_fallback] = STATE(273), [aux_sym_document_repeat1] = STATE(7), - [aux_sym__list_dash_repeat1] = STATE(334), - [aux_sym__list_plus_repeat1] = STATE(317), - [aux_sym__list_star_repeat1] = STATE(342), - [aux_sym__list_task_repeat1] = STATE(297), - [aux_sym__list_definition_repeat1] = STATE(529), - [aux_sym__list_decimal_period_repeat1] = STATE(531), - [aux_sym__list_decimal_paren_repeat1] = STATE(533), - [aux_sym__list_decimal_parens_repeat1] = STATE(535), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(537), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(539), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(424), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(426), + [aux_sym__list_dash_repeat1] = STATE(351), + [aux_sym__list_plus_repeat1] = STATE(319), + [aux_sym__list_star_repeat1] = STATE(354), + [aux_sym__list_task_repeat1] = STATE(303), + [aux_sym__list_definition_repeat1] = STATE(526), + [aux_sym__list_decimal_period_repeat1] = STATE(528), + [aux_sym__list_decimal_paren_repeat1] = STATE(531), + [aux_sym__list_decimal_parens_repeat1] = STATE(533), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(535), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(537), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(539), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(487), [aux_sym__list_upper_alpha_paren_repeat1] = STATE(423), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(429), - [aux_sym__list_lower_roman_period_repeat1] = STATE(431), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(433), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(435), - [aux_sym__list_upper_roman_period_repeat1] = STATE(437), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(438), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(439), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(426), + [aux_sym__list_lower_roman_period_repeat1] = STATE(428), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(430), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(432), + [aux_sym__list_upper_roman_period_repeat1] = STATE(434), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(435), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(436), [aux_sym_table_repeat1] = STATE(66), [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), @@ -5020,55 +5018,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heading] = STATE(9), [sym_list] = STATE(123), [sym__list_dash] = STATE(129), - [sym__list_item_dash] = STATE(645), + [sym__list_item_dash] = STATE(595), [sym__list_plus] = STATE(129), - [sym__list_item_plus] = STATE(661), + [sym__list_item_plus] = STATE(657), [sym__list_star] = STATE(129), - [sym__list_item_star] = STATE(573), + [sym__list_item_star] = STATE(570), [sym__list_task] = STATE(129), - [sym__list_item_task] = STATE(590), + [sym__list_item_task] = STATE(586), [sym_list_marker_task] = STATE(43), [sym__list_definition] = STATE(129), - [sym__list_item_definition] = STATE(740), + [sym__list_item_definition] = STATE(694), [sym__list_decimal_period] = STATE(129), - [sym__list_item_decimal_period] = STATE(743), + [sym__list_item_decimal_period] = STATE(714), [sym__list_decimal_paren] = STATE(129), - [sym__list_item_decimal_paren] = STATE(748), + [sym__list_item_decimal_paren] = STATE(719), [sym__list_decimal_parens] = STATE(129), - [sym__list_item_decimal_parens] = STATE(768), + [sym__list_item_decimal_parens] = STATE(746), [sym__list_lower_alpha_period] = STATE(129), - [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_item_lower_alpha_period] = STATE(748), [sym__list_lower_alpha_paren] = STATE(129), - [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_item_lower_alpha_paren] = STATE(749), [sym__list_lower_alpha_parens] = STATE(129), - [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_item_lower_alpha_parens] = STATE(753), [sym__list_upper_alpha_period] = STATE(129), - [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_item_upper_alpha_period] = STATE(761), [sym__list_upper_alpha_paren] = STATE(129), - [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_item_upper_alpha_paren] = STATE(764), [sym__list_upper_alpha_parens] = STATE(129), - [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_item_upper_alpha_parens] = STATE(765), [sym__list_lower_roman_period] = STATE(129), - [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_item_lower_roman_period] = STATE(768), [sym__list_lower_roman_paren] = STATE(129), - [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_item_lower_roman_paren] = STATE(769), [sym__list_lower_roman_parens] = STATE(129), - [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_item_lower_roman_parens] = STATE(786), [sym__list_upper_roman_period] = STATE(129), - [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_item_upper_roman_period] = STATE(791), [sym__list_upper_roman_paren] = STATE(129), - [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_item_upper_roman_paren] = STATE(793), [sym__list_upper_roman_parens] = STATE(129), - [sym__list_item_upper_roman_parens] = STATE(819), + [sym__list_item_upper_roman_parens] = STATE(799), [sym_table] = STATE(123), [sym__table_row] = STATE(67), [sym_table_header] = STATE(67), [sym_table_separator] = STATE(67), [sym_table_row] = STATE(67), [sym_footnote] = STATE(123), - [sym_footnote_marker_begin] = STATE(894), + [sym_footnote_marker_begin] = STATE(1139), [sym_div] = STATE(123), - [sym__div_marker_begin] = STATE(1056), + [sym__div_marker_begin] = STATE(1055), [sym_code_block] = STATE(123), [sym_raw_block] = STATE(123), [sym_thematic_break] = STATE(123), @@ -5077,31 +5075,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_link_reference_definition] = STATE(123), [sym_block_attribute] = STATE(123), [sym__paragraph] = STATE(123), - [sym__paragraph_content] = STATE(784), - [sym__paragraph_inline_content] = STATE(837), - [sym__inline] = STATE(656), + [sym__paragraph_content] = STATE(766), + [sym__paragraph_inline_content] = STATE(824), + [sym__inline] = STATE(654), [sym__symbol_fallback] = STATE(273), [aux_sym_document_repeat1] = STATE(6), - [aux_sym__list_dash_repeat1] = STATE(322), - [aux_sym__list_plus_repeat1] = STATE(323), - [aux_sym__list_star_repeat1] = STATE(324), - [aux_sym__list_task_repeat1] = STATE(285), - [aux_sym__list_definition_repeat1] = STATE(494), - [aux_sym__list_decimal_period_repeat1] = STATE(495), - [aux_sym__list_decimal_paren_repeat1] = STATE(496), - [aux_sym__list_decimal_parens_repeat1] = STATE(497), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(498), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(499), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(500), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(501), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(502), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(503), - [aux_sym__list_lower_roman_period_repeat1] = STATE(504), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(505), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(506), - [aux_sym__list_upper_roman_period_repeat1] = STATE(507), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(508), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(509), + [aux_sym__list_dash_repeat1] = STATE(323), + [aux_sym__list_plus_repeat1] = STATE(324), + [aux_sym__list_star_repeat1] = STATE(325), + [aux_sym__list_task_repeat1] = STATE(299), + [aux_sym__list_definition_repeat1] = STATE(491), + [aux_sym__list_decimal_period_repeat1] = STATE(492), + [aux_sym__list_decimal_paren_repeat1] = STATE(493), + [aux_sym__list_decimal_parens_repeat1] = STATE(494), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(495), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(496), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(497), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(498), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(499), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(500), + [aux_sym__list_lower_roman_period_repeat1] = STATE(501), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(502), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(503), + [aux_sym__list_upper_roman_period_repeat1] = STATE(504), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(505), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(506), [aux_sym_table_repeat1] = STATE(67), [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), @@ -5153,55 +5151,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heading] = STATE(4), [sym_list] = STATE(125), [sym__list_dash] = STATE(167), - [sym__list_item_dash] = STATE(645), + [sym__list_item_dash] = STATE(595), [sym__list_plus] = STATE(167), - [sym__list_item_plus] = STATE(661), + [sym__list_item_plus] = STATE(657), [sym__list_star] = STATE(167), - [sym__list_item_star] = STATE(573), + [sym__list_item_star] = STATE(570), [sym__list_task] = STATE(167), - [sym__list_item_task] = STATE(590), + [sym__list_item_task] = STATE(586), [sym_list_marker_task] = STATE(43), [sym__list_definition] = STATE(167), - [sym__list_item_definition] = STATE(740), + [sym__list_item_definition] = STATE(694), [sym__list_decimal_period] = STATE(167), - [sym__list_item_decimal_period] = STATE(743), + [sym__list_item_decimal_period] = STATE(714), [sym__list_decimal_paren] = STATE(167), - [sym__list_item_decimal_paren] = STATE(748), + [sym__list_item_decimal_paren] = STATE(719), [sym__list_decimal_parens] = STATE(167), - [sym__list_item_decimal_parens] = STATE(768), + [sym__list_item_decimal_parens] = STATE(746), [sym__list_lower_alpha_period] = STATE(167), - [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_item_lower_alpha_period] = STATE(748), [sym__list_lower_alpha_paren] = STATE(167), - [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_item_lower_alpha_paren] = STATE(749), [sym__list_lower_alpha_parens] = STATE(167), - [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_item_lower_alpha_parens] = STATE(753), [sym__list_upper_alpha_period] = STATE(167), - [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_item_upper_alpha_period] = STATE(761), [sym__list_upper_alpha_paren] = STATE(167), - [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_item_upper_alpha_paren] = STATE(764), [sym__list_upper_alpha_parens] = STATE(167), - [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_item_upper_alpha_parens] = STATE(765), [sym__list_lower_roman_period] = STATE(167), - [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_item_lower_roman_period] = STATE(768), [sym__list_lower_roman_paren] = STATE(167), - [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_item_lower_roman_paren] = STATE(769), [sym__list_lower_roman_parens] = STATE(167), - [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_item_lower_roman_parens] = STATE(786), [sym__list_upper_roman_period] = STATE(167), - [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_item_upper_roman_period] = STATE(791), [sym__list_upper_roman_paren] = STATE(167), - [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_item_upper_roman_paren] = STATE(793), [sym__list_upper_roman_parens] = STATE(167), - [sym__list_item_upper_roman_parens] = STATE(819), + [sym__list_item_upper_roman_parens] = STATE(799), [sym_table] = STATE(125), [sym__table_row] = STATE(66), [sym_table_header] = STATE(66), [sym_table_separator] = STATE(66), [sym_table_row] = STATE(66), [sym_footnote] = STATE(125), - [sym_footnote_marker_begin] = STATE(954), + [sym_footnote_marker_begin] = STATE(932), [sym_div] = STATE(125), - [sym__div_marker_begin] = STATE(960), + [sym__div_marker_begin] = STATE(954), [sym_code_block] = STATE(125), [sym_raw_block] = STATE(125), [sym_thematic_break] = STATE(125), @@ -5210,31 +5208,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_link_reference_definition] = STATE(125), [sym_block_attribute] = STATE(125), [sym__paragraph] = STATE(125), - [sym__paragraph_content] = STATE(834), - [sym__paragraph_inline_content] = STATE(837), - [sym__inline] = STATE(656), + [sym__paragraph_content] = STATE(823), + [sym__paragraph_inline_content] = STATE(824), + [sym__inline] = STATE(654), [sym__symbol_fallback] = STATE(273), [aux_sym_document_repeat1] = STATE(7), - [aux_sym__list_dash_repeat1] = STATE(334), - [aux_sym__list_plus_repeat1] = STATE(317), - [aux_sym__list_star_repeat1] = STATE(342), - [aux_sym__list_task_repeat1] = STATE(297), - [aux_sym__list_definition_repeat1] = STATE(529), - [aux_sym__list_decimal_period_repeat1] = STATE(531), - [aux_sym__list_decimal_paren_repeat1] = STATE(533), - [aux_sym__list_decimal_parens_repeat1] = STATE(535), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(537), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(539), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(424), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(426), + [aux_sym__list_dash_repeat1] = STATE(351), + [aux_sym__list_plus_repeat1] = STATE(319), + [aux_sym__list_star_repeat1] = STATE(354), + [aux_sym__list_task_repeat1] = STATE(303), + [aux_sym__list_definition_repeat1] = STATE(526), + [aux_sym__list_decimal_period_repeat1] = STATE(528), + [aux_sym__list_decimal_paren_repeat1] = STATE(531), + [aux_sym__list_decimal_parens_repeat1] = STATE(533), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(535), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(537), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(539), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(487), [aux_sym__list_upper_alpha_paren_repeat1] = STATE(423), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(429), - [aux_sym__list_lower_roman_period_repeat1] = STATE(431), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(433), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(435), - [aux_sym__list_upper_roman_period_repeat1] = STATE(437), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(438), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(439), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(426), + [aux_sym__list_lower_roman_period_repeat1] = STATE(428), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(430), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(432), + [aux_sym__list_upper_roman_period_repeat1] = STATE(434), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(435), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(436), [aux_sym_table_repeat1] = STATE(66), [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), @@ -5286,55 +5284,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heading] = STATE(9), [sym_list] = STATE(123), [sym__list_dash] = STATE(129), - [sym__list_item_dash] = STATE(645), + [sym__list_item_dash] = STATE(595), [sym__list_plus] = STATE(129), - [sym__list_item_plus] = STATE(661), + [sym__list_item_plus] = STATE(657), [sym__list_star] = STATE(129), - [sym__list_item_star] = STATE(573), + [sym__list_item_star] = STATE(570), [sym__list_task] = STATE(129), - [sym__list_item_task] = STATE(590), + [sym__list_item_task] = STATE(586), [sym_list_marker_task] = STATE(43), [sym__list_definition] = STATE(129), - [sym__list_item_definition] = STATE(740), + [sym__list_item_definition] = STATE(694), [sym__list_decimal_period] = STATE(129), - [sym__list_item_decimal_period] = STATE(743), + [sym__list_item_decimal_period] = STATE(714), [sym__list_decimal_paren] = STATE(129), - [sym__list_item_decimal_paren] = STATE(748), + [sym__list_item_decimal_paren] = STATE(719), [sym__list_decimal_parens] = STATE(129), - [sym__list_item_decimal_parens] = STATE(768), + [sym__list_item_decimal_parens] = STATE(746), [sym__list_lower_alpha_period] = STATE(129), - [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_item_lower_alpha_period] = STATE(748), [sym__list_lower_alpha_paren] = STATE(129), - [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_item_lower_alpha_paren] = STATE(749), [sym__list_lower_alpha_parens] = STATE(129), - [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_item_lower_alpha_parens] = STATE(753), [sym__list_upper_alpha_period] = STATE(129), - [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_item_upper_alpha_period] = STATE(761), [sym__list_upper_alpha_paren] = STATE(129), - [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_item_upper_alpha_paren] = STATE(764), [sym__list_upper_alpha_parens] = STATE(129), - [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_item_upper_alpha_parens] = STATE(765), [sym__list_lower_roman_period] = STATE(129), - [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_item_lower_roman_period] = STATE(768), [sym__list_lower_roman_paren] = STATE(129), - [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_item_lower_roman_paren] = STATE(769), [sym__list_lower_roman_parens] = STATE(129), - [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_item_lower_roman_parens] = STATE(786), [sym__list_upper_roman_period] = STATE(129), - [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_item_upper_roman_period] = STATE(791), [sym__list_upper_roman_paren] = STATE(129), - [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_item_upper_roman_paren] = STATE(793), [sym__list_upper_roman_parens] = STATE(129), - [sym__list_item_upper_roman_parens] = STATE(819), + [sym__list_item_upper_roman_parens] = STATE(799), [sym_table] = STATE(123), [sym__table_row] = STATE(67), [sym_table_header] = STATE(67), [sym_table_separator] = STATE(67), [sym_table_row] = STATE(67), [sym_footnote] = STATE(123), - [sym_footnote_marker_begin] = STATE(894), + [sym_footnote_marker_begin] = STATE(1139), [sym_div] = STATE(123), - [sym__div_marker_begin] = STATE(1056), + [sym__div_marker_begin] = STATE(1055), [sym_code_block] = STATE(123), [sym_raw_block] = STATE(123), [sym_thematic_break] = STATE(123), @@ -5343,31 +5341,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_link_reference_definition] = STATE(123), [sym_block_attribute] = STATE(123), [sym__paragraph] = STATE(123), - [sym__paragraph_content] = STATE(784), - [sym__paragraph_inline_content] = STATE(837), - [sym__inline] = STATE(656), + [sym__paragraph_content] = STATE(766), + [sym__paragraph_inline_content] = STATE(824), + [sym__inline] = STATE(654), [sym__symbol_fallback] = STATE(273), [aux_sym_document_repeat1] = STATE(8), - [aux_sym__list_dash_repeat1] = STATE(322), - [aux_sym__list_plus_repeat1] = STATE(323), - [aux_sym__list_star_repeat1] = STATE(324), - [aux_sym__list_task_repeat1] = STATE(285), - [aux_sym__list_definition_repeat1] = STATE(494), - [aux_sym__list_decimal_period_repeat1] = STATE(495), - [aux_sym__list_decimal_paren_repeat1] = STATE(496), - [aux_sym__list_decimal_parens_repeat1] = STATE(497), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(498), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(499), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(500), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(501), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(502), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(503), - [aux_sym__list_lower_roman_period_repeat1] = STATE(504), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(505), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(506), - [aux_sym__list_upper_roman_period_repeat1] = STATE(507), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(508), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(509), + [aux_sym__list_dash_repeat1] = STATE(323), + [aux_sym__list_plus_repeat1] = STATE(324), + [aux_sym__list_star_repeat1] = STATE(325), + [aux_sym__list_task_repeat1] = STATE(299), + [aux_sym__list_definition_repeat1] = STATE(491), + [aux_sym__list_decimal_period_repeat1] = STATE(492), + [aux_sym__list_decimal_paren_repeat1] = STATE(493), + [aux_sym__list_decimal_parens_repeat1] = STATE(494), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(495), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(496), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(497), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(498), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(499), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(500), + [aux_sym__list_lower_roman_period_repeat1] = STATE(501), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(502), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(503), + [aux_sym__list_upper_roman_period_repeat1] = STATE(504), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(505), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(506), [aux_sym_table_repeat1] = STATE(67), [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), @@ -5419,55 +5417,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heading] = STATE(4), [sym_list] = STATE(125), [sym__list_dash] = STATE(167), - [sym__list_item_dash] = STATE(645), + [sym__list_item_dash] = STATE(595), [sym__list_plus] = STATE(167), - [sym__list_item_plus] = STATE(661), + [sym__list_item_plus] = STATE(657), [sym__list_star] = STATE(167), - [sym__list_item_star] = STATE(573), + [sym__list_item_star] = STATE(570), [sym__list_task] = STATE(167), - [sym__list_item_task] = STATE(590), + [sym__list_item_task] = STATE(586), [sym_list_marker_task] = STATE(43), [sym__list_definition] = STATE(167), - [sym__list_item_definition] = STATE(740), + [sym__list_item_definition] = STATE(694), [sym__list_decimal_period] = STATE(167), - [sym__list_item_decimal_period] = STATE(743), + [sym__list_item_decimal_period] = STATE(714), [sym__list_decimal_paren] = STATE(167), - [sym__list_item_decimal_paren] = STATE(748), + [sym__list_item_decimal_paren] = STATE(719), [sym__list_decimal_parens] = STATE(167), - [sym__list_item_decimal_parens] = STATE(768), + [sym__list_item_decimal_parens] = STATE(746), [sym__list_lower_alpha_period] = STATE(167), - [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_item_lower_alpha_period] = STATE(748), [sym__list_lower_alpha_paren] = STATE(167), - [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_item_lower_alpha_paren] = STATE(749), [sym__list_lower_alpha_parens] = STATE(167), - [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_item_lower_alpha_parens] = STATE(753), [sym__list_upper_alpha_period] = STATE(167), - [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_item_upper_alpha_period] = STATE(761), [sym__list_upper_alpha_paren] = STATE(167), - [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_item_upper_alpha_paren] = STATE(764), [sym__list_upper_alpha_parens] = STATE(167), - [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_item_upper_alpha_parens] = STATE(765), [sym__list_lower_roman_period] = STATE(167), - [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_item_lower_roman_period] = STATE(768), [sym__list_lower_roman_paren] = STATE(167), - [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_item_lower_roman_paren] = STATE(769), [sym__list_lower_roman_parens] = STATE(167), - [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_item_lower_roman_parens] = STATE(786), [sym__list_upper_roman_period] = STATE(167), - [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_item_upper_roman_period] = STATE(791), [sym__list_upper_roman_paren] = STATE(167), - [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_item_upper_roman_paren] = STATE(793), [sym__list_upper_roman_parens] = STATE(167), - [sym__list_item_upper_roman_parens] = STATE(819), + [sym__list_item_upper_roman_parens] = STATE(799), [sym_table] = STATE(125), [sym__table_row] = STATE(66), [sym_table_header] = STATE(66), [sym_table_separator] = STATE(66), [sym_table_row] = STATE(66), [sym_footnote] = STATE(125), - [sym_footnote_marker_begin] = STATE(954), + [sym_footnote_marker_begin] = STATE(932), [sym_div] = STATE(125), - [sym__div_marker_begin] = STATE(960), + [sym__div_marker_begin] = STATE(954), [sym_code_block] = STATE(125), [sym_raw_block] = STATE(125), [sym_thematic_break] = STATE(125), @@ -5476,31 +5474,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_link_reference_definition] = STATE(125), [sym_block_attribute] = STATE(125), [sym__paragraph] = STATE(125), - [sym__paragraph_content] = STATE(834), - [sym__paragraph_inline_content] = STATE(837), - [sym__inline] = STATE(656), + [sym__paragraph_content] = STATE(823), + [sym__paragraph_inline_content] = STATE(824), + [sym__inline] = STATE(654), [sym__symbol_fallback] = STATE(273), [aux_sym_document_repeat1] = STATE(7), - [aux_sym__list_dash_repeat1] = STATE(334), - [aux_sym__list_plus_repeat1] = STATE(317), - [aux_sym__list_star_repeat1] = STATE(342), - [aux_sym__list_task_repeat1] = STATE(297), - [aux_sym__list_definition_repeat1] = STATE(529), - [aux_sym__list_decimal_period_repeat1] = STATE(531), - [aux_sym__list_decimal_paren_repeat1] = STATE(533), - [aux_sym__list_decimal_parens_repeat1] = STATE(535), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(537), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(539), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(424), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(426), + [aux_sym__list_dash_repeat1] = STATE(351), + [aux_sym__list_plus_repeat1] = STATE(319), + [aux_sym__list_star_repeat1] = STATE(354), + [aux_sym__list_task_repeat1] = STATE(303), + [aux_sym__list_definition_repeat1] = STATE(526), + [aux_sym__list_decimal_period_repeat1] = STATE(528), + [aux_sym__list_decimal_paren_repeat1] = STATE(531), + [aux_sym__list_decimal_parens_repeat1] = STATE(533), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(535), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(537), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(539), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(487), [aux_sym__list_upper_alpha_paren_repeat1] = STATE(423), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(429), - [aux_sym__list_lower_roman_period_repeat1] = STATE(431), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(433), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(435), - [aux_sym__list_upper_roman_period_repeat1] = STATE(437), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(438), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(439), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(426), + [aux_sym__list_lower_roman_period_repeat1] = STATE(428), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(430), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(432), + [aux_sym__list_upper_roman_period_repeat1] = STATE(434), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(435), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(436), [aux_sym_table_repeat1] = STATE(66), [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), @@ -5552,55 +5550,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heading] = STATE(9), [sym_list] = STATE(123), [sym__list_dash] = STATE(129), - [sym__list_item_dash] = STATE(645), + [sym__list_item_dash] = STATE(595), [sym__list_plus] = STATE(129), - [sym__list_item_plus] = STATE(661), + [sym__list_item_plus] = STATE(657), [sym__list_star] = STATE(129), - [sym__list_item_star] = STATE(573), + [sym__list_item_star] = STATE(570), [sym__list_task] = STATE(129), - [sym__list_item_task] = STATE(590), + [sym__list_item_task] = STATE(586), [sym_list_marker_task] = STATE(43), [sym__list_definition] = STATE(129), - [sym__list_item_definition] = STATE(740), + [sym__list_item_definition] = STATE(694), [sym__list_decimal_period] = STATE(129), - [sym__list_item_decimal_period] = STATE(743), + [sym__list_item_decimal_period] = STATE(714), [sym__list_decimal_paren] = STATE(129), - [sym__list_item_decimal_paren] = STATE(748), + [sym__list_item_decimal_paren] = STATE(719), [sym__list_decimal_parens] = STATE(129), - [sym__list_item_decimal_parens] = STATE(768), + [sym__list_item_decimal_parens] = STATE(746), [sym__list_lower_alpha_period] = STATE(129), - [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_item_lower_alpha_period] = STATE(748), [sym__list_lower_alpha_paren] = STATE(129), - [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_item_lower_alpha_paren] = STATE(749), [sym__list_lower_alpha_parens] = STATE(129), - [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_item_lower_alpha_parens] = STATE(753), [sym__list_upper_alpha_period] = STATE(129), - [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_item_upper_alpha_period] = STATE(761), [sym__list_upper_alpha_paren] = STATE(129), - [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_item_upper_alpha_paren] = STATE(764), [sym__list_upper_alpha_parens] = STATE(129), - [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_item_upper_alpha_parens] = STATE(765), [sym__list_lower_roman_period] = STATE(129), - [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_item_lower_roman_period] = STATE(768), [sym__list_lower_roman_paren] = STATE(129), - [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_item_lower_roman_paren] = STATE(769), [sym__list_lower_roman_parens] = STATE(129), - [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_item_lower_roman_parens] = STATE(786), [sym__list_upper_roman_period] = STATE(129), - [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_item_upper_roman_period] = STATE(791), [sym__list_upper_roman_paren] = STATE(129), - [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_item_upper_roman_paren] = STATE(793), [sym__list_upper_roman_parens] = STATE(129), - [sym__list_item_upper_roman_parens] = STATE(819), + [sym__list_item_upper_roman_parens] = STATE(799), [sym_table] = STATE(123), [sym__table_row] = STATE(67), [sym_table_header] = STATE(67), [sym_table_separator] = STATE(67), [sym_table_row] = STATE(67), [sym_footnote] = STATE(123), - [sym_footnote_marker_begin] = STATE(894), + [sym_footnote_marker_begin] = STATE(1139), [sym_div] = STATE(123), - [sym__div_marker_begin] = STATE(1056), + [sym__div_marker_begin] = STATE(1055), [sym_code_block] = STATE(123), [sym_raw_block] = STATE(123), [sym_thematic_break] = STATE(123), @@ -5609,31 +5607,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_link_reference_definition] = STATE(123), [sym_block_attribute] = STATE(123), [sym__paragraph] = STATE(123), - [sym__paragraph_content] = STATE(784), - [sym__paragraph_inline_content] = STATE(837), - [sym__inline] = STATE(656), + [sym__paragraph_content] = STATE(766), + [sym__paragraph_inline_content] = STATE(824), + [sym__inline] = STATE(654), [sym__symbol_fallback] = STATE(273), [aux_sym_document_repeat1] = STATE(8), - [aux_sym__list_dash_repeat1] = STATE(322), - [aux_sym__list_plus_repeat1] = STATE(323), - [aux_sym__list_star_repeat1] = STATE(324), - [aux_sym__list_task_repeat1] = STATE(285), - [aux_sym__list_definition_repeat1] = STATE(494), - [aux_sym__list_decimal_period_repeat1] = STATE(495), - [aux_sym__list_decimal_paren_repeat1] = STATE(496), - [aux_sym__list_decimal_parens_repeat1] = STATE(497), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(498), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(499), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(500), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(501), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(502), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(503), - [aux_sym__list_lower_roman_period_repeat1] = STATE(504), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(505), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(506), - [aux_sym__list_upper_roman_period_repeat1] = STATE(507), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(508), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(509), + [aux_sym__list_dash_repeat1] = STATE(323), + [aux_sym__list_plus_repeat1] = STATE(324), + [aux_sym__list_star_repeat1] = STATE(325), + [aux_sym__list_task_repeat1] = STATE(299), + [aux_sym__list_definition_repeat1] = STATE(491), + [aux_sym__list_decimal_period_repeat1] = STATE(492), + [aux_sym__list_decimal_paren_repeat1] = STATE(493), + [aux_sym__list_decimal_parens_repeat1] = STATE(494), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(495), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(496), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(497), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(498), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(499), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(500), + [aux_sym__list_lower_roman_period_repeat1] = STATE(501), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(502), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(503), + [aux_sym__list_upper_roman_period_repeat1] = STATE(504), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(505), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(506), [aux_sym_table_repeat1] = STATE(67), [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), @@ -5685,55 +5683,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heading] = STATE(9), [sym_list] = STATE(123), [sym__list_dash] = STATE(129), - [sym__list_item_dash] = STATE(645), + [sym__list_item_dash] = STATE(595), [sym__list_plus] = STATE(129), - [sym__list_item_plus] = STATE(661), + [sym__list_item_plus] = STATE(657), [sym__list_star] = STATE(129), - [sym__list_item_star] = STATE(573), + [sym__list_item_star] = STATE(570), [sym__list_task] = STATE(129), - [sym__list_item_task] = STATE(590), + [sym__list_item_task] = STATE(586), [sym_list_marker_task] = STATE(43), [sym__list_definition] = STATE(129), - [sym__list_item_definition] = STATE(740), + [sym__list_item_definition] = STATE(694), [sym__list_decimal_period] = STATE(129), - [sym__list_item_decimal_period] = STATE(743), + [sym__list_item_decimal_period] = STATE(714), [sym__list_decimal_paren] = STATE(129), - [sym__list_item_decimal_paren] = STATE(748), + [sym__list_item_decimal_paren] = STATE(719), [sym__list_decimal_parens] = STATE(129), - [sym__list_item_decimal_parens] = STATE(768), + [sym__list_item_decimal_parens] = STATE(746), [sym__list_lower_alpha_period] = STATE(129), - [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_item_lower_alpha_period] = STATE(748), [sym__list_lower_alpha_paren] = STATE(129), - [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_item_lower_alpha_paren] = STATE(749), [sym__list_lower_alpha_parens] = STATE(129), - [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_item_lower_alpha_parens] = STATE(753), [sym__list_upper_alpha_period] = STATE(129), - [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_item_upper_alpha_period] = STATE(761), [sym__list_upper_alpha_paren] = STATE(129), - [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_item_upper_alpha_paren] = STATE(764), [sym__list_upper_alpha_parens] = STATE(129), - [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_item_upper_alpha_parens] = STATE(765), [sym__list_lower_roman_period] = STATE(129), - [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_item_lower_roman_period] = STATE(768), [sym__list_lower_roman_paren] = STATE(129), - [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_item_lower_roman_paren] = STATE(769), [sym__list_lower_roman_parens] = STATE(129), - [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_item_lower_roman_parens] = STATE(786), [sym__list_upper_roman_period] = STATE(129), - [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_item_upper_roman_period] = STATE(791), [sym__list_upper_roman_paren] = STATE(129), - [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_item_upper_roman_paren] = STATE(793), [sym__list_upper_roman_parens] = STATE(129), - [sym__list_item_upper_roman_parens] = STATE(819), + [sym__list_item_upper_roman_parens] = STATE(799), [sym_table] = STATE(123), [sym__table_row] = STATE(67), [sym_table_header] = STATE(67), [sym_table_separator] = STATE(67), [sym_table_row] = STATE(67), [sym_footnote] = STATE(123), - [sym_footnote_marker_begin] = STATE(894), + [sym_footnote_marker_begin] = STATE(1139), [sym_div] = STATE(123), - [sym__div_marker_begin] = STATE(1056), + [sym__div_marker_begin] = STATE(1055), [sym_code_block] = STATE(123), [sym_raw_block] = STATE(123), [sym_thematic_break] = STATE(123), @@ -5742,31 +5740,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_link_reference_definition] = STATE(123), [sym_block_attribute] = STATE(123), [sym__paragraph] = STATE(123), - [sym__paragraph_content] = STATE(784), - [sym__paragraph_inline_content] = STATE(837), - [sym__inline] = STATE(656), + [sym__paragraph_content] = STATE(766), + [sym__paragraph_inline_content] = STATE(824), + [sym__inline] = STATE(654), [sym__symbol_fallback] = STATE(273), [aux_sym_document_repeat1] = STATE(10), - [aux_sym__list_dash_repeat1] = STATE(322), - [aux_sym__list_plus_repeat1] = STATE(323), - [aux_sym__list_star_repeat1] = STATE(324), - [aux_sym__list_task_repeat1] = STATE(285), - [aux_sym__list_definition_repeat1] = STATE(494), - [aux_sym__list_decimal_period_repeat1] = STATE(495), - [aux_sym__list_decimal_paren_repeat1] = STATE(496), - [aux_sym__list_decimal_parens_repeat1] = STATE(497), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(498), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(499), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(500), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(501), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(502), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(503), - [aux_sym__list_lower_roman_period_repeat1] = STATE(504), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(505), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(506), - [aux_sym__list_upper_roman_period_repeat1] = STATE(507), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(508), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(509), + [aux_sym__list_dash_repeat1] = STATE(323), + [aux_sym__list_plus_repeat1] = STATE(324), + [aux_sym__list_star_repeat1] = STATE(325), + [aux_sym__list_task_repeat1] = STATE(299), + [aux_sym__list_definition_repeat1] = STATE(491), + [aux_sym__list_decimal_period_repeat1] = STATE(492), + [aux_sym__list_decimal_paren_repeat1] = STATE(493), + [aux_sym__list_decimal_parens_repeat1] = STATE(494), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(495), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(496), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(497), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(498), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(499), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(500), + [aux_sym__list_lower_roman_period_repeat1] = STATE(501), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(502), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(503), + [aux_sym__list_upper_roman_period_repeat1] = STATE(504), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(505), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(506), [aux_sym_table_repeat1] = STATE(67), [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), @@ -5818,55 +5816,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heading] = STATE(9), [sym_list] = STATE(123), [sym__list_dash] = STATE(129), - [sym__list_item_dash] = STATE(645), + [sym__list_item_dash] = STATE(595), [sym__list_plus] = STATE(129), - [sym__list_item_plus] = STATE(661), + [sym__list_item_plus] = STATE(657), [sym__list_star] = STATE(129), - [sym__list_item_star] = STATE(573), + [sym__list_item_star] = STATE(570), [sym__list_task] = STATE(129), - [sym__list_item_task] = STATE(590), + [sym__list_item_task] = STATE(586), [sym_list_marker_task] = STATE(43), [sym__list_definition] = STATE(129), - [sym__list_item_definition] = STATE(740), + [sym__list_item_definition] = STATE(694), [sym__list_decimal_period] = STATE(129), - [sym__list_item_decimal_period] = STATE(743), + [sym__list_item_decimal_period] = STATE(714), [sym__list_decimal_paren] = STATE(129), - [sym__list_item_decimal_paren] = STATE(748), + [sym__list_item_decimal_paren] = STATE(719), [sym__list_decimal_parens] = STATE(129), - [sym__list_item_decimal_parens] = STATE(768), + [sym__list_item_decimal_parens] = STATE(746), [sym__list_lower_alpha_period] = STATE(129), - [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_item_lower_alpha_period] = STATE(748), [sym__list_lower_alpha_paren] = STATE(129), - [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_item_lower_alpha_paren] = STATE(749), [sym__list_lower_alpha_parens] = STATE(129), - [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_item_lower_alpha_parens] = STATE(753), [sym__list_upper_alpha_period] = STATE(129), - [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_item_upper_alpha_period] = STATE(761), [sym__list_upper_alpha_paren] = STATE(129), - [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_item_upper_alpha_paren] = STATE(764), [sym__list_upper_alpha_parens] = STATE(129), - [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_item_upper_alpha_parens] = STATE(765), [sym__list_lower_roman_period] = STATE(129), - [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_item_lower_roman_period] = STATE(768), [sym__list_lower_roman_paren] = STATE(129), - [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_item_lower_roman_paren] = STATE(769), [sym__list_lower_roman_parens] = STATE(129), - [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_item_lower_roman_parens] = STATE(786), [sym__list_upper_roman_period] = STATE(129), - [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_item_upper_roman_period] = STATE(791), [sym__list_upper_roman_paren] = STATE(129), - [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_item_upper_roman_paren] = STATE(793), [sym__list_upper_roman_parens] = STATE(129), - [sym__list_item_upper_roman_parens] = STATE(819), + [sym__list_item_upper_roman_parens] = STATE(799), [sym_table] = STATE(123), [sym__table_row] = STATE(67), [sym_table_header] = STATE(67), [sym_table_separator] = STATE(67), [sym_table_row] = STATE(67), [sym_footnote] = STATE(123), - [sym_footnote_marker_begin] = STATE(894), + [sym_footnote_marker_begin] = STATE(1139), [sym_div] = STATE(123), - [sym__div_marker_begin] = STATE(1056), + [sym__div_marker_begin] = STATE(1055), [sym_code_block] = STATE(123), [sym_raw_block] = STATE(123), [sym_thematic_break] = STATE(123), @@ -5875,31 +5873,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_link_reference_definition] = STATE(123), [sym_block_attribute] = STATE(123), [sym__paragraph] = STATE(123), - [sym__paragraph_content] = STATE(784), - [sym__paragraph_inline_content] = STATE(837), - [sym__inline] = STATE(656), + [sym__paragraph_content] = STATE(766), + [sym__paragraph_inline_content] = STATE(824), + [sym__inline] = STATE(654), [sym__symbol_fallback] = STATE(273), [aux_sym_document_repeat1] = STATE(8), - [aux_sym__list_dash_repeat1] = STATE(322), - [aux_sym__list_plus_repeat1] = STATE(323), - [aux_sym__list_star_repeat1] = STATE(324), - [aux_sym__list_task_repeat1] = STATE(285), - [aux_sym__list_definition_repeat1] = STATE(494), - [aux_sym__list_decimal_period_repeat1] = STATE(495), - [aux_sym__list_decimal_paren_repeat1] = STATE(496), - [aux_sym__list_decimal_parens_repeat1] = STATE(497), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(498), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(499), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(500), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(501), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(502), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(503), - [aux_sym__list_lower_roman_period_repeat1] = STATE(504), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(505), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(506), - [aux_sym__list_upper_roman_period_repeat1] = STATE(507), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(508), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(509), + [aux_sym__list_dash_repeat1] = STATE(323), + [aux_sym__list_plus_repeat1] = STATE(324), + [aux_sym__list_star_repeat1] = STATE(325), + [aux_sym__list_task_repeat1] = STATE(299), + [aux_sym__list_definition_repeat1] = STATE(491), + [aux_sym__list_decimal_period_repeat1] = STATE(492), + [aux_sym__list_decimal_paren_repeat1] = STATE(493), + [aux_sym__list_decimal_parens_repeat1] = STATE(494), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(495), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(496), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(497), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(498), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(499), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(500), + [aux_sym__list_lower_roman_period_repeat1] = STATE(501), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(502), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(503), + [aux_sym__list_upper_roman_period_repeat1] = STATE(504), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(505), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(506), [aux_sym_table_repeat1] = STATE(67), [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), @@ -5950,55 +5948,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heading] = STATE(168), [sym_list] = STATE(168), [sym__list_dash] = STATE(129), - [sym__list_item_dash] = STATE(645), + [sym__list_item_dash] = STATE(595), [sym__list_plus] = STATE(129), - [sym__list_item_plus] = STATE(661), + [sym__list_item_plus] = STATE(657), [sym__list_star] = STATE(129), - [sym__list_item_star] = STATE(573), + [sym__list_item_star] = STATE(570), [sym__list_task] = STATE(129), - [sym__list_item_task] = STATE(590), + [sym__list_item_task] = STATE(586), [sym_list_marker_task] = STATE(43), [sym__list_definition] = STATE(129), - [sym__list_item_definition] = STATE(740), + [sym__list_item_definition] = STATE(694), [sym__list_decimal_period] = STATE(129), - [sym__list_item_decimal_period] = STATE(743), + [sym__list_item_decimal_period] = STATE(714), [sym__list_decimal_paren] = STATE(129), - [sym__list_item_decimal_paren] = STATE(748), + [sym__list_item_decimal_paren] = STATE(719), [sym__list_decimal_parens] = STATE(129), - [sym__list_item_decimal_parens] = STATE(768), + [sym__list_item_decimal_parens] = STATE(746), [sym__list_lower_alpha_period] = STATE(129), - [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_item_lower_alpha_period] = STATE(748), [sym__list_lower_alpha_paren] = STATE(129), - [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_item_lower_alpha_paren] = STATE(749), [sym__list_lower_alpha_parens] = STATE(129), - [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_item_lower_alpha_parens] = STATE(753), [sym__list_upper_alpha_period] = STATE(129), - [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_item_upper_alpha_period] = STATE(761), [sym__list_upper_alpha_paren] = STATE(129), - [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_item_upper_alpha_paren] = STATE(764), [sym__list_upper_alpha_parens] = STATE(129), - [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_item_upper_alpha_parens] = STATE(765), [sym__list_lower_roman_period] = STATE(129), - [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_item_lower_roman_period] = STATE(768), [sym__list_lower_roman_paren] = STATE(129), - [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_item_lower_roman_paren] = STATE(769), [sym__list_lower_roman_parens] = STATE(129), - [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_item_lower_roman_parens] = STATE(786), [sym__list_upper_roman_period] = STATE(129), - [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_item_upper_roman_period] = STATE(791), [sym__list_upper_roman_paren] = STATE(129), - [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_item_upper_roman_paren] = STATE(793), [sym__list_upper_roman_parens] = STATE(129), - [sym__list_item_upper_roman_parens] = STATE(819), + [sym__list_item_upper_roman_parens] = STATE(799), [sym_table] = STATE(168), [sym__table_row] = STATE(67), [sym_table_header] = STATE(67), [sym_table_separator] = STATE(67), [sym_table_row] = STATE(67), [sym_footnote] = STATE(168), - [sym_footnote_marker_begin] = STATE(894), + [sym_footnote_marker_begin] = STATE(1139), [sym_div] = STATE(168), - [sym__div_marker_begin] = STATE(1056), + [sym__div_marker_begin] = STATE(1055), [sym_code_block] = STATE(168), [sym_raw_block] = STATE(168), [sym_thematic_break] = STATE(168), @@ -6007,30 +6005,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_link_reference_definition] = STATE(168), [sym_block_attribute] = STATE(168), [sym__paragraph] = STATE(168), - [sym__paragraph_content] = STATE(784), - [sym__paragraph_inline_content] = STATE(837), - [sym__inline] = STATE(656), + [sym__paragraph_content] = STATE(766), + [sym__paragraph_inline_content] = STATE(824), + [sym__inline] = STATE(654), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(322), - [aux_sym__list_plus_repeat1] = STATE(323), - [aux_sym__list_star_repeat1] = STATE(324), - [aux_sym__list_task_repeat1] = STATE(285), - [aux_sym__list_definition_repeat1] = STATE(494), - [aux_sym__list_decimal_period_repeat1] = STATE(495), - [aux_sym__list_decimal_paren_repeat1] = STATE(496), - [aux_sym__list_decimal_parens_repeat1] = STATE(497), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(498), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(499), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(500), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(501), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(502), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(503), - [aux_sym__list_lower_roman_period_repeat1] = STATE(504), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(505), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(506), - [aux_sym__list_upper_roman_period_repeat1] = STATE(507), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(508), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(509), + [aux_sym__list_dash_repeat1] = STATE(323), + [aux_sym__list_plus_repeat1] = STATE(324), + [aux_sym__list_star_repeat1] = STATE(325), + [aux_sym__list_task_repeat1] = STATE(299), + [aux_sym__list_definition_repeat1] = STATE(491), + [aux_sym__list_decimal_period_repeat1] = STATE(492), + [aux_sym__list_decimal_paren_repeat1] = STATE(493), + [aux_sym__list_decimal_parens_repeat1] = STATE(494), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(495), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(496), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(497), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(498), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(499), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(500), + [aux_sym__list_lower_roman_period_repeat1] = STATE(501), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(502), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(503), + [aux_sym__list_upper_roman_period_repeat1] = STATE(504), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(505), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(506), [aux_sym_table_repeat1] = STATE(67), [aux_sym_div_repeat1] = STATE(12), [aux_sym__block_quote_prefix_repeat1] = STATE(226), @@ -6082,55 +6080,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heading] = STATE(168), [sym_list] = STATE(168), [sym__list_dash] = STATE(129), - [sym__list_item_dash] = STATE(645), + [sym__list_item_dash] = STATE(595), [sym__list_plus] = STATE(129), - [sym__list_item_plus] = STATE(661), + [sym__list_item_plus] = STATE(657), [sym__list_star] = STATE(129), - [sym__list_item_star] = STATE(573), + [sym__list_item_star] = STATE(570), [sym__list_task] = STATE(129), - [sym__list_item_task] = STATE(590), + [sym__list_item_task] = STATE(586), [sym_list_marker_task] = STATE(43), [sym__list_definition] = STATE(129), - [sym__list_item_definition] = STATE(740), + [sym__list_item_definition] = STATE(694), [sym__list_decimal_period] = STATE(129), - [sym__list_item_decimal_period] = STATE(743), + [sym__list_item_decimal_period] = STATE(714), [sym__list_decimal_paren] = STATE(129), - [sym__list_item_decimal_paren] = STATE(748), + [sym__list_item_decimal_paren] = STATE(719), [sym__list_decimal_parens] = STATE(129), - [sym__list_item_decimal_parens] = STATE(768), + [sym__list_item_decimal_parens] = STATE(746), [sym__list_lower_alpha_period] = STATE(129), - [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_item_lower_alpha_period] = STATE(748), [sym__list_lower_alpha_paren] = STATE(129), - [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_item_lower_alpha_paren] = STATE(749), [sym__list_lower_alpha_parens] = STATE(129), - [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_item_lower_alpha_parens] = STATE(753), [sym__list_upper_alpha_period] = STATE(129), - [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_item_upper_alpha_period] = STATE(761), [sym__list_upper_alpha_paren] = STATE(129), - [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_item_upper_alpha_paren] = STATE(764), [sym__list_upper_alpha_parens] = STATE(129), - [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_item_upper_alpha_parens] = STATE(765), [sym__list_lower_roman_period] = STATE(129), - [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_item_lower_roman_period] = STATE(768), [sym__list_lower_roman_paren] = STATE(129), - [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_item_lower_roman_paren] = STATE(769), [sym__list_lower_roman_parens] = STATE(129), - [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_item_lower_roman_parens] = STATE(786), [sym__list_upper_roman_period] = STATE(129), - [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_item_upper_roman_period] = STATE(791), [sym__list_upper_roman_paren] = STATE(129), - [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_item_upper_roman_paren] = STATE(793), [sym__list_upper_roman_parens] = STATE(129), - [sym__list_item_upper_roman_parens] = STATE(819), + [sym__list_item_upper_roman_parens] = STATE(799), [sym_table] = STATE(168), [sym__table_row] = STATE(67), [sym_table_header] = STATE(67), [sym_table_separator] = STATE(67), [sym_table_row] = STATE(67), [sym_footnote] = STATE(168), - [sym_footnote_marker_begin] = STATE(894), + [sym_footnote_marker_begin] = STATE(1139), [sym_div] = STATE(168), - [sym__div_marker_begin] = STATE(1056), + [sym__div_marker_begin] = STATE(1055), [sym_code_block] = STATE(168), [sym_raw_block] = STATE(168), [sym_thematic_break] = STATE(168), @@ -6139,30 +6137,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_link_reference_definition] = STATE(168), [sym_block_attribute] = STATE(168), [sym__paragraph] = STATE(168), - [sym__paragraph_content] = STATE(784), - [sym__paragraph_inline_content] = STATE(837), - [sym__inline] = STATE(656), + [sym__paragraph_content] = STATE(766), + [sym__paragraph_inline_content] = STATE(824), + [sym__inline] = STATE(654), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(322), - [aux_sym__list_plus_repeat1] = STATE(323), - [aux_sym__list_star_repeat1] = STATE(324), - [aux_sym__list_task_repeat1] = STATE(285), - [aux_sym__list_definition_repeat1] = STATE(494), - [aux_sym__list_decimal_period_repeat1] = STATE(495), - [aux_sym__list_decimal_paren_repeat1] = STATE(496), - [aux_sym__list_decimal_parens_repeat1] = STATE(497), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(498), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(499), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(500), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(501), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(502), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(503), - [aux_sym__list_lower_roman_period_repeat1] = STATE(504), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(505), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(506), - [aux_sym__list_upper_roman_period_repeat1] = STATE(507), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(508), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(509), + [aux_sym__list_dash_repeat1] = STATE(323), + [aux_sym__list_plus_repeat1] = STATE(324), + [aux_sym__list_star_repeat1] = STATE(325), + [aux_sym__list_task_repeat1] = STATE(299), + [aux_sym__list_definition_repeat1] = STATE(491), + [aux_sym__list_decimal_period_repeat1] = STATE(492), + [aux_sym__list_decimal_paren_repeat1] = STATE(493), + [aux_sym__list_decimal_parens_repeat1] = STATE(494), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(495), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(496), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(497), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(498), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(499), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(500), + [aux_sym__list_lower_roman_period_repeat1] = STATE(501), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(502), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(503), + [aux_sym__list_upper_roman_period_repeat1] = STATE(504), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(505), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(506), [aux_sym_table_repeat1] = STATE(67), [aux_sym_div_repeat1] = STATE(13), [aux_sym__block_quote_prefix_repeat1] = STATE(226), @@ -6214,55 +6212,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heading] = STATE(168), [sym_list] = STATE(168), [sym__list_dash] = STATE(129), - [sym__list_item_dash] = STATE(645), + [sym__list_item_dash] = STATE(595), [sym__list_plus] = STATE(129), - [sym__list_item_plus] = STATE(661), + [sym__list_item_plus] = STATE(657), [sym__list_star] = STATE(129), - [sym__list_item_star] = STATE(573), + [sym__list_item_star] = STATE(570), [sym__list_task] = STATE(129), - [sym__list_item_task] = STATE(590), + [sym__list_item_task] = STATE(586), [sym_list_marker_task] = STATE(43), [sym__list_definition] = STATE(129), - [sym__list_item_definition] = STATE(740), + [sym__list_item_definition] = STATE(694), [sym__list_decimal_period] = STATE(129), - [sym__list_item_decimal_period] = STATE(743), + [sym__list_item_decimal_period] = STATE(714), [sym__list_decimal_paren] = STATE(129), - [sym__list_item_decimal_paren] = STATE(748), + [sym__list_item_decimal_paren] = STATE(719), [sym__list_decimal_parens] = STATE(129), - [sym__list_item_decimal_parens] = STATE(768), + [sym__list_item_decimal_parens] = STATE(746), [sym__list_lower_alpha_period] = STATE(129), - [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_item_lower_alpha_period] = STATE(748), [sym__list_lower_alpha_paren] = STATE(129), - [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_item_lower_alpha_paren] = STATE(749), [sym__list_lower_alpha_parens] = STATE(129), - [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_item_lower_alpha_parens] = STATE(753), [sym__list_upper_alpha_period] = STATE(129), - [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_item_upper_alpha_period] = STATE(761), [sym__list_upper_alpha_paren] = STATE(129), - [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_item_upper_alpha_paren] = STATE(764), [sym__list_upper_alpha_parens] = STATE(129), - [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_item_upper_alpha_parens] = STATE(765), [sym__list_lower_roman_period] = STATE(129), - [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_item_lower_roman_period] = STATE(768), [sym__list_lower_roman_paren] = STATE(129), - [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_item_lower_roman_paren] = STATE(769), [sym__list_lower_roman_parens] = STATE(129), - [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_item_lower_roman_parens] = STATE(786), [sym__list_upper_roman_period] = STATE(129), - [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_item_upper_roman_period] = STATE(791), [sym__list_upper_roman_paren] = STATE(129), - [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_item_upper_roman_paren] = STATE(793), [sym__list_upper_roman_parens] = STATE(129), - [sym__list_item_upper_roman_parens] = STATE(819), + [sym__list_item_upper_roman_parens] = STATE(799), [sym_table] = STATE(168), [sym__table_row] = STATE(67), [sym_table_header] = STATE(67), [sym_table_separator] = STATE(67), [sym_table_row] = STATE(67), [sym_footnote] = STATE(168), - [sym_footnote_marker_begin] = STATE(894), + [sym_footnote_marker_begin] = STATE(1139), [sym_div] = STATE(168), - [sym__div_marker_begin] = STATE(1056), + [sym__div_marker_begin] = STATE(1055), [sym_code_block] = STATE(168), [sym_raw_block] = STATE(168), [sym_thematic_break] = STATE(168), @@ -6271,30 +6269,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_link_reference_definition] = STATE(168), [sym_block_attribute] = STATE(168), [sym__paragraph] = STATE(168), - [sym__paragraph_content] = STATE(784), - [sym__paragraph_inline_content] = STATE(837), - [sym__inline] = STATE(656), + [sym__paragraph_content] = STATE(766), + [sym__paragraph_inline_content] = STATE(824), + [sym__inline] = STATE(654), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(322), - [aux_sym__list_plus_repeat1] = STATE(323), - [aux_sym__list_star_repeat1] = STATE(324), - [aux_sym__list_task_repeat1] = STATE(285), - [aux_sym__list_definition_repeat1] = STATE(494), - [aux_sym__list_decimal_period_repeat1] = STATE(495), - [aux_sym__list_decimal_paren_repeat1] = STATE(496), - [aux_sym__list_decimal_parens_repeat1] = STATE(497), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(498), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(499), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(500), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(501), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(502), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(503), - [aux_sym__list_lower_roman_period_repeat1] = STATE(504), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(505), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(506), - [aux_sym__list_upper_roman_period_repeat1] = STATE(507), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(508), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(509), + [aux_sym__list_dash_repeat1] = STATE(323), + [aux_sym__list_plus_repeat1] = STATE(324), + [aux_sym__list_star_repeat1] = STATE(325), + [aux_sym__list_task_repeat1] = STATE(299), + [aux_sym__list_definition_repeat1] = STATE(491), + [aux_sym__list_decimal_period_repeat1] = STATE(492), + [aux_sym__list_decimal_paren_repeat1] = STATE(493), + [aux_sym__list_decimal_parens_repeat1] = STATE(494), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(495), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(496), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(497), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(498), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(499), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(500), + [aux_sym__list_lower_roman_period_repeat1] = STATE(501), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(502), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(503), + [aux_sym__list_upper_roman_period_repeat1] = STATE(504), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(505), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(506), [aux_sym_table_repeat1] = STATE(67), [aux_sym_div_repeat1] = STATE(13), [aux_sym__block_quote_prefix_repeat1] = STATE(230), @@ -6346,55 +6344,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heading] = STATE(168), [sym_list] = STATE(168), [sym__list_dash] = STATE(129), - [sym__list_item_dash] = STATE(645), + [sym__list_item_dash] = STATE(595), [sym__list_plus] = STATE(129), - [sym__list_item_plus] = STATE(661), + [sym__list_item_plus] = STATE(657), [sym__list_star] = STATE(129), - [sym__list_item_star] = STATE(573), + [sym__list_item_star] = STATE(570), [sym__list_task] = STATE(129), - [sym__list_item_task] = STATE(590), + [sym__list_item_task] = STATE(586), [sym_list_marker_task] = STATE(43), [sym__list_definition] = STATE(129), - [sym__list_item_definition] = STATE(740), + [sym__list_item_definition] = STATE(694), [sym__list_decimal_period] = STATE(129), - [sym__list_item_decimal_period] = STATE(743), + [sym__list_item_decimal_period] = STATE(714), [sym__list_decimal_paren] = STATE(129), - [sym__list_item_decimal_paren] = STATE(748), + [sym__list_item_decimal_paren] = STATE(719), [sym__list_decimal_parens] = STATE(129), - [sym__list_item_decimal_parens] = STATE(768), + [sym__list_item_decimal_parens] = STATE(746), [sym__list_lower_alpha_period] = STATE(129), - [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_item_lower_alpha_period] = STATE(748), [sym__list_lower_alpha_paren] = STATE(129), - [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_item_lower_alpha_paren] = STATE(749), [sym__list_lower_alpha_parens] = STATE(129), - [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_item_lower_alpha_parens] = STATE(753), [sym__list_upper_alpha_period] = STATE(129), - [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_item_upper_alpha_period] = STATE(761), [sym__list_upper_alpha_paren] = STATE(129), - [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_item_upper_alpha_paren] = STATE(764), [sym__list_upper_alpha_parens] = STATE(129), - [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_item_upper_alpha_parens] = STATE(765), [sym__list_lower_roman_period] = STATE(129), - [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_item_lower_roman_period] = STATE(768), [sym__list_lower_roman_paren] = STATE(129), - [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_item_lower_roman_paren] = STATE(769), [sym__list_lower_roman_parens] = STATE(129), - [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_item_lower_roman_parens] = STATE(786), [sym__list_upper_roman_period] = STATE(129), - [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_item_upper_roman_period] = STATE(791), [sym__list_upper_roman_paren] = STATE(129), - [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_item_upper_roman_paren] = STATE(793), [sym__list_upper_roman_parens] = STATE(129), - [sym__list_item_upper_roman_parens] = STATE(819), + [sym__list_item_upper_roman_parens] = STATE(799), [sym_table] = STATE(168), [sym__table_row] = STATE(67), [sym_table_header] = STATE(67), [sym_table_separator] = STATE(67), [sym_table_row] = STATE(67), [sym_footnote] = STATE(168), - [sym_footnote_marker_begin] = STATE(894), + [sym_footnote_marker_begin] = STATE(1139), [sym_div] = STATE(168), - [sym__div_marker_begin] = STATE(1056), + [sym__div_marker_begin] = STATE(1055), [sym_code_block] = STATE(168), [sym_raw_block] = STATE(168), [sym_thematic_break] = STATE(168), @@ -6403,30 +6401,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_link_reference_definition] = STATE(168), [sym_block_attribute] = STATE(168), [sym__paragraph] = STATE(168), - [sym__paragraph_content] = STATE(784), - [sym__paragraph_inline_content] = STATE(837), - [sym__inline] = STATE(656), + [sym__paragraph_content] = STATE(766), + [sym__paragraph_inline_content] = STATE(824), + [sym__inline] = STATE(654), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(322), - [aux_sym__list_plus_repeat1] = STATE(323), - [aux_sym__list_star_repeat1] = STATE(324), - [aux_sym__list_task_repeat1] = STATE(285), - [aux_sym__list_definition_repeat1] = STATE(494), - [aux_sym__list_decimal_period_repeat1] = STATE(495), - [aux_sym__list_decimal_paren_repeat1] = STATE(496), - [aux_sym__list_decimal_parens_repeat1] = STATE(497), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(498), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(499), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(500), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(501), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(502), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(503), - [aux_sym__list_lower_roman_period_repeat1] = STATE(504), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(505), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(506), - [aux_sym__list_upper_roman_period_repeat1] = STATE(507), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(508), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(509), + [aux_sym__list_dash_repeat1] = STATE(323), + [aux_sym__list_plus_repeat1] = STATE(324), + [aux_sym__list_star_repeat1] = STATE(325), + [aux_sym__list_task_repeat1] = STATE(299), + [aux_sym__list_definition_repeat1] = STATE(491), + [aux_sym__list_decimal_period_repeat1] = STATE(492), + [aux_sym__list_decimal_paren_repeat1] = STATE(493), + [aux_sym__list_decimal_parens_repeat1] = STATE(494), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(495), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(496), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(497), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(498), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(499), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(500), + [aux_sym__list_lower_roman_period_repeat1] = STATE(501), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(502), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(503), + [aux_sym__list_upper_roman_period_repeat1] = STATE(504), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(505), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(506), [aux_sym_table_repeat1] = STATE(67), [aux_sym_div_repeat1] = STATE(15), [aux_sym__block_quote_prefix_repeat1] = STATE(226), @@ -6478,55 +6476,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heading] = STATE(168), [sym_list] = STATE(168), [sym__list_dash] = STATE(129), - [sym__list_item_dash] = STATE(645), + [sym__list_item_dash] = STATE(595), [sym__list_plus] = STATE(129), - [sym__list_item_plus] = STATE(661), + [sym__list_item_plus] = STATE(657), [sym__list_star] = STATE(129), - [sym__list_item_star] = STATE(573), + [sym__list_item_star] = STATE(570), [sym__list_task] = STATE(129), - [sym__list_item_task] = STATE(590), + [sym__list_item_task] = STATE(586), [sym_list_marker_task] = STATE(43), [sym__list_definition] = STATE(129), - [sym__list_item_definition] = STATE(740), + [sym__list_item_definition] = STATE(694), [sym__list_decimal_period] = STATE(129), - [sym__list_item_decimal_period] = STATE(743), + [sym__list_item_decimal_period] = STATE(714), [sym__list_decimal_paren] = STATE(129), - [sym__list_item_decimal_paren] = STATE(748), + [sym__list_item_decimal_paren] = STATE(719), [sym__list_decimal_parens] = STATE(129), - [sym__list_item_decimal_parens] = STATE(768), + [sym__list_item_decimal_parens] = STATE(746), [sym__list_lower_alpha_period] = STATE(129), - [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_item_lower_alpha_period] = STATE(748), [sym__list_lower_alpha_paren] = STATE(129), - [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_item_lower_alpha_paren] = STATE(749), [sym__list_lower_alpha_parens] = STATE(129), - [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_item_lower_alpha_parens] = STATE(753), [sym__list_upper_alpha_period] = STATE(129), - [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_item_upper_alpha_period] = STATE(761), [sym__list_upper_alpha_paren] = STATE(129), - [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_item_upper_alpha_paren] = STATE(764), [sym__list_upper_alpha_parens] = STATE(129), - [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_item_upper_alpha_parens] = STATE(765), [sym__list_lower_roman_period] = STATE(129), - [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_item_lower_roman_period] = STATE(768), [sym__list_lower_roman_paren] = STATE(129), - [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_item_lower_roman_paren] = STATE(769), [sym__list_lower_roman_parens] = STATE(129), - [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_item_lower_roman_parens] = STATE(786), [sym__list_upper_roman_period] = STATE(129), - [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_item_upper_roman_period] = STATE(791), [sym__list_upper_roman_paren] = STATE(129), - [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_item_upper_roman_paren] = STATE(793), [sym__list_upper_roman_parens] = STATE(129), - [sym__list_item_upper_roman_parens] = STATE(819), + [sym__list_item_upper_roman_parens] = STATE(799), [sym_table] = STATE(168), [sym__table_row] = STATE(67), [sym_table_header] = STATE(67), [sym_table_separator] = STATE(67), [sym_table_row] = STATE(67), [sym_footnote] = STATE(168), - [sym_footnote_marker_begin] = STATE(894), + [sym_footnote_marker_begin] = STATE(1139), [sym_div] = STATE(168), - [sym__div_marker_begin] = STATE(1056), + [sym__div_marker_begin] = STATE(1055), [sym_code_block] = STATE(168), [sym_raw_block] = STATE(168), [sym_thematic_break] = STATE(168), @@ -6535,30 +6533,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_link_reference_definition] = STATE(168), [sym_block_attribute] = STATE(168), [sym__paragraph] = STATE(168), - [sym__paragraph_content] = STATE(784), - [sym__paragraph_inline_content] = STATE(837), - [sym__inline] = STATE(656), + [sym__paragraph_content] = STATE(766), + [sym__paragraph_inline_content] = STATE(824), + [sym__inline] = STATE(654), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(322), - [aux_sym__list_plus_repeat1] = STATE(323), - [aux_sym__list_star_repeat1] = STATE(324), - [aux_sym__list_task_repeat1] = STATE(285), - [aux_sym__list_definition_repeat1] = STATE(494), - [aux_sym__list_decimal_period_repeat1] = STATE(495), - [aux_sym__list_decimal_paren_repeat1] = STATE(496), - [aux_sym__list_decimal_parens_repeat1] = STATE(497), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(498), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(499), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(500), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(501), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(502), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(503), - [aux_sym__list_lower_roman_period_repeat1] = STATE(504), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(505), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(506), - [aux_sym__list_upper_roman_period_repeat1] = STATE(507), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(508), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(509), + [aux_sym__list_dash_repeat1] = STATE(323), + [aux_sym__list_plus_repeat1] = STATE(324), + [aux_sym__list_star_repeat1] = STATE(325), + [aux_sym__list_task_repeat1] = STATE(299), + [aux_sym__list_definition_repeat1] = STATE(491), + [aux_sym__list_decimal_period_repeat1] = STATE(492), + [aux_sym__list_decimal_paren_repeat1] = STATE(493), + [aux_sym__list_decimal_parens_repeat1] = STATE(494), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(495), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(496), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(497), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(498), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(499), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(500), + [aux_sym__list_lower_roman_period_repeat1] = STATE(501), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(502), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(503), + [aux_sym__list_upper_roman_period_repeat1] = STATE(504), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(505), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(506), [aux_sym_table_repeat1] = STATE(67), [aux_sym_div_repeat1] = STATE(13), [aux_sym__block_quote_prefix_repeat1] = STATE(226), @@ -6610,55 +6608,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heading] = STATE(168), [sym_list] = STATE(168), [sym__list_dash] = STATE(129), - [sym__list_item_dash] = STATE(645), + [sym__list_item_dash] = STATE(595), [sym__list_plus] = STATE(129), - [sym__list_item_plus] = STATE(661), + [sym__list_item_plus] = STATE(657), [sym__list_star] = STATE(129), - [sym__list_item_star] = STATE(573), + [sym__list_item_star] = STATE(570), [sym__list_task] = STATE(129), - [sym__list_item_task] = STATE(590), + [sym__list_item_task] = STATE(586), [sym_list_marker_task] = STATE(43), [sym__list_definition] = STATE(129), - [sym__list_item_definition] = STATE(740), + [sym__list_item_definition] = STATE(694), [sym__list_decimal_period] = STATE(129), - [sym__list_item_decimal_period] = STATE(743), + [sym__list_item_decimal_period] = STATE(714), [sym__list_decimal_paren] = STATE(129), - [sym__list_item_decimal_paren] = STATE(748), + [sym__list_item_decimal_paren] = STATE(719), [sym__list_decimal_parens] = STATE(129), - [sym__list_item_decimal_parens] = STATE(768), + [sym__list_item_decimal_parens] = STATE(746), [sym__list_lower_alpha_period] = STATE(129), - [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_item_lower_alpha_period] = STATE(748), [sym__list_lower_alpha_paren] = STATE(129), - [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_item_lower_alpha_paren] = STATE(749), [sym__list_lower_alpha_parens] = STATE(129), - [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_item_lower_alpha_parens] = STATE(753), [sym__list_upper_alpha_period] = STATE(129), - [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_item_upper_alpha_period] = STATE(761), [sym__list_upper_alpha_paren] = STATE(129), - [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_item_upper_alpha_paren] = STATE(764), [sym__list_upper_alpha_parens] = STATE(129), - [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_item_upper_alpha_parens] = STATE(765), [sym__list_lower_roman_period] = STATE(129), - [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_item_lower_roman_period] = STATE(768), [sym__list_lower_roman_paren] = STATE(129), - [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_item_lower_roman_paren] = STATE(769), [sym__list_lower_roman_parens] = STATE(129), - [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_item_lower_roman_parens] = STATE(786), [sym__list_upper_roman_period] = STATE(129), - [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_item_upper_roman_period] = STATE(791), [sym__list_upper_roman_paren] = STATE(129), - [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_item_upper_roman_paren] = STATE(793), [sym__list_upper_roman_parens] = STATE(129), - [sym__list_item_upper_roman_parens] = STATE(819), + [sym__list_item_upper_roman_parens] = STATE(799), [sym_table] = STATE(168), [sym__table_row] = STATE(67), [sym_table_header] = STATE(67), [sym_table_separator] = STATE(67), [sym_table_row] = STATE(67), [sym_footnote] = STATE(168), - [sym_footnote_marker_begin] = STATE(894), + [sym_footnote_marker_begin] = STATE(1139), [sym_div] = STATE(168), - [sym__div_marker_begin] = STATE(1056), + [sym__div_marker_begin] = STATE(1055), [sym_code_block] = STATE(168), [sym_raw_block] = STATE(168), [sym_thematic_break] = STATE(168), @@ -6667,30 +6665,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_link_reference_definition] = STATE(168), [sym_block_attribute] = STATE(168), [sym__paragraph] = STATE(168), - [sym__paragraph_content] = STATE(784), - [sym__paragraph_inline_content] = STATE(837), - [sym__inline] = STATE(656), + [sym__paragraph_content] = STATE(766), + [sym__paragraph_inline_content] = STATE(824), + [sym__inline] = STATE(654), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(322), - [aux_sym__list_plus_repeat1] = STATE(323), - [aux_sym__list_star_repeat1] = STATE(324), - [aux_sym__list_task_repeat1] = STATE(285), - [aux_sym__list_definition_repeat1] = STATE(494), - [aux_sym__list_decimal_period_repeat1] = STATE(495), - [aux_sym__list_decimal_paren_repeat1] = STATE(496), - [aux_sym__list_decimal_parens_repeat1] = STATE(497), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(498), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(499), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(500), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(501), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(502), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(503), - [aux_sym__list_lower_roman_period_repeat1] = STATE(504), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(505), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(506), - [aux_sym__list_upper_roman_period_repeat1] = STATE(507), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(508), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(509), + [aux_sym__list_dash_repeat1] = STATE(323), + [aux_sym__list_plus_repeat1] = STATE(324), + [aux_sym__list_star_repeat1] = STATE(325), + [aux_sym__list_task_repeat1] = STATE(299), + [aux_sym__list_definition_repeat1] = STATE(491), + [aux_sym__list_decimal_period_repeat1] = STATE(492), + [aux_sym__list_decimal_paren_repeat1] = STATE(493), + [aux_sym__list_decimal_parens_repeat1] = STATE(494), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(495), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(496), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(497), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(498), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(499), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(500), + [aux_sym__list_lower_roman_period_repeat1] = STATE(501), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(502), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(503), + [aux_sym__list_upper_roman_period_repeat1] = STATE(504), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(505), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(506), [aux_sym_table_repeat1] = STATE(67), [aux_sym_div_repeat1] = STATE(17), [aux_sym__block_quote_prefix_repeat1] = STATE(226), @@ -6742,55 +6740,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heading] = STATE(168), [sym_list] = STATE(168), [sym__list_dash] = STATE(129), - [sym__list_item_dash] = STATE(645), + [sym__list_item_dash] = STATE(595), [sym__list_plus] = STATE(129), - [sym__list_item_plus] = STATE(661), + [sym__list_item_plus] = STATE(657), [sym__list_star] = STATE(129), - [sym__list_item_star] = STATE(573), + [sym__list_item_star] = STATE(570), [sym__list_task] = STATE(129), - [sym__list_item_task] = STATE(590), + [sym__list_item_task] = STATE(586), [sym_list_marker_task] = STATE(43), [sym__list_definition] = STATE(129), - [sym__list_item_definition] = STATE(740), + [sym__list_item_definition] = STATE(694), [sym__list_decimal_period] = STATE(129), - [sym__list_item_decimal_period] = STATE(743), + [sym__list_item_decimal_period] = STATE(714), [sym__list_decimal_paren] = STATE(129), - [sym__list_item_decimal_paren] = STATE(748), + [sym__list_item_decimal_paren] = STATE(719), [sym__list_decimal_parens] = STATE(129), - [sym__list_item_decimal_parens] = STATE(768), + [sym__list_item_decimal_parens] = STATE(746), [sym__list_lower_alpha_period] = STATE(129), - [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_item_lower_alpha_period] = STATE(748), [sym__list_lower_alpha_paren] = STATE(129), - [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_item_lower_alpha_paren] = STATE(749), [sym__list_lower_alpha_parens] = STATE(129), - [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_item_lower_alpha_parens] = STATE(753), [sym__list_upper_alpha_period] = STATE(129), - [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_item_upper_alpha_period] = STATE(761), [sym__list_upper_alpha_paren] = STATE(129), - [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_item_upper_alpha_paren] = STATE(764), [sym__list_upper_alpha_parens] = STATE(129), - [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_item_upper_alpha_parens] = STATE(765), [sym__list_lower_roman_period] = STATE(129), - [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_item_lower_roman_period] = STATE(768), [sym__list_lower_roman_paren] = STATE(129), - [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_item_lower_roman_paren] = STATE(769), [sym__list_lower_roman_parens] = STATE(129), - [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_item_lower_roman_parens] = STATE(786), [sym__list_upper_roman_period] = STATE(129), - [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_item_upper_roman_period] = STATE(791), [sym__list_upper_roman_paren] = STATE(129), - [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_item_upper_roman_paren] = STATE(793), [sym__list_upper_roman_parens] = STATE(129), - [sym__list_item_upper_roman_parens] = STATE(819), + [sym__list_item_upper_roman_parens] = STATE(799), [sym_table] = STATE(168), [sym__table_row] = STATE(67), [sym_table_header] = STATE(67), [sym_table_separator] = STATE(67), [sym_table_row] = STATE(67), [sym_footnote] = STATE(168), - [sym_footnote_marker_begin] = STATE(894), + [sym_footnote_marker_begin] = STATE(1139), [sym_div] = STATE(168), - [sym__div_marker_begin] = STATE(1056), + [sym__div_marker_begin] = STATE(1055), [sym_code_block] = STATE(168), [sym_raw_block] = STATE(168), [sym_thematic_break] = STATE(168), @@ -6799,30 +6797,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_link_reference_definition] = STATE(168), [sym_block_attribute] = STATE(168), [sym__paragraph] = STATE(168), - [sym__paragraph_content] = STATE(784), - [sym__paragraph_inline_content] = STATE(837), - [sym__inline] = STATE(656), + [sym__paragraph_content] = STATE(766), + [sym__paragraph_inline_content] = STATE(824), + [sym__inline] = STATE(654), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(322), - [aux_sym__list_plus_repeat1] = STATE(323), - [aux_sym__list_star_repeat1] = STATE(324), - [aux_sym__list_task_repeat1] = STATE(285), - [aux_sym__list_definition_repeat1] = STATE(494), - [aux_sym__list_decimal_period_repeat1] = STATE(495), - [aux_sym__list_decimal_paren_repeat1] = STATE(496), - [aux_sym__list_decimal_parens_repeat1] = STATE(497), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(498), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(499), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(500), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(501), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(502), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(503), - [aux_sym__list_lower_roman_period_repeat1] = STATE(504), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(505), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(506), - [aux_sym__list_upper_roman_period_repeat1] = STATE(507), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(508), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(509), + [aux_sym__list_dash_repeat1] = STATE(323), + [aux_sym__list_plus_repeat1] = STATE(324), + [aux_sym__list_star_repeat1] = STATE(325), + [aux_sym__list_task_repeat1] = STATE(299), + [aux_sym__list_definition_repeat1] = STATE(491), + [aux_sym__list_decimal_period_repeat1] = STATE(492), + [aux_sym__list_decimal_paren_repeat1] = STATE(493), + [aux_sym__list_decimal_parens_repeat1] = STATE(494), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(495), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(496), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(497), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(498), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(499), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(500), + [aux_sym__list_lower_roman_period_repeat1] = STATE(501), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(502), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(503), + [aux_sym__list_upper_roman_period_repeat1] = STATE(504), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(505), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(506), [aux_sym_table_repeat1] = STATE(67), [aux_sym_div_repeat1] = STATE(13), [aux_sym__block_quote_prefix_repeat1] = STATE(226), @@ -6874,55 +6872,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heading] = STATE(168), [sym_list] = STATE(168), [sym__list_dash] = STATE(129), - [sym__list_item_dash] = STATE(645), + [sym__list_item_dash] = STATE(595), [sym__list_plus] = STATE(129), - [sym__list_item_plus] = STATE(661), + [sym__list_item_plus] = STATE(657), [sym__list_star] = STATE(129), - [sym__list_item_star] = STATE(573), + [sym__list_item_star] = STATE(570), [sym__list_task] = STATE(129), - [sym__list_item_task] = STATE(590), + [sym__list_item_task] = STATE(586), [sym_list_marker_task] = STATE(43), [sym__list_definition] = STATE(129), - [sym__list_item_definition] = STATE(740), + [sym__list_item_definition] = STATE(694), [sym__list_decimal_period] = STATE(129), - [sym__list_item_decimal_period] = STATE(743), + [sym__list_item_decimal_period] = STATE(714), [sym__list_decimal_paren] = STATE(129), - [sym__list_item_decimal_paren] = STATE(748), + [sym__list_item_decimal_paren] = STATE(719), [sym__list_decimal_parens] = STATE(129), - [sym__list_item_decimal_parens] = STATE(768), + [sym__list_item_decimal_parens] = STATE(746), [sym__list_lower_alpha_period] = STATE(129), - [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_item_lower_alpha_period] = STATE(748), [sym__list_lower_alpha_paren] = STATE(129), - [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_item_lower_alpha_paren] = STATE(749), [sym__list_lower_alpha_parens] = STATE(129), - [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_item_lower_alpha_parens] = STATE(753), [sym__list_upper_alpha_period] = STATE(129), - [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_item_upper_alpha_period] = STATE(761), [sym__list_upper_alpha_paren] = STATE(129), - [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_item_upper_alpha_paren] = STATE(764), [sym__list_upper_alpha_parens] = STATE(129), - [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_item_upper_alpha_parens] = STATE(765), [sym__list_lower_roman_period] = STATE(129), - [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_item_lower_roman_period] = STATE(768), [sym__list_lower_roman_paren] = STATE(129), - [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_item_lower_roman_paren] = STATE(769), [sym__list_lower_roman_parens] = STATE(129), - [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_item_lower_roman_parens] = STATE(786), [sym__list_upper_roman_period] = STATE(129), - [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_item_upper_roman_period] = STATE(791), [sym__list_upper_roman_paren] = STATE(129), - [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_item_upper_roman_paren] = STATE(793), [sym__list_upper_roman_parens] = STATE(129), - [sym__list_item_upper_roman_parens] = STATE(819), + [sym__list_item_upper_roman_parens] = STATE(799), [sym_table] = STATE(168), [sym__table_row] = STATE(67), [sym_table_header] = STATE(67), [sym_table_separator] = STATE(67), [sym_table_row] = STATE(67), [sym_footnote] = STATE(168), - [sym_footnote_marker_begin] = STATE(894), + [sym_footnote_marker_begin] = STATE(1139), [sym_div] = STATE(168), - [sym__div_marker_begin] = STATE(1056), + [sym__div_marker_begin] = STATE(1055), [sym_code_block] = STATE(168), [sym_raw_block] = STATE(168), [sym_thematic_break] = STATE(168), @@ -6931,30 +6929,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_link_reference_definition] = STATE(168), [sym_block_attribute] = STATE(168), [sym__paragraph] = STATE(168), - [sym__paragraph_content] = STATE(784), - [sym__paragraph_inline_content] = STATE(837), - [sym__inline] = STATE(656), + [sym__paragraph_content] = STATE(766), + [sym__paragraph_inline_content] = STATE(824), + [sym__inline] = STATE(654), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(322), - [aux_sym__list_plus_repeat1] = STATE(323), - [aux_sym__list_star_repeat1] = STATE(324), - [aux_sym__list_task_repeat1] = STATE(285), - [aux_sym__list_definition_repeat1] = STATE(494), - [aux_sym__list_decimal_period_repeat1] = STATE(495), - [aux_sym__list_decimal_paren_repeat1] = STATE(496), - [aux_sym__list_decimal_parens_repeat1] = STATE(497), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(498), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(499), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(500), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(501), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(502), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(503), - [aux_sym__list_lower_roman_period_repeat1] = STATE(504), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(505), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(506), - [aux_sym__list_upper_roman_period_repeat1] = STATE(507), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(508), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(509), + [aux_sym__list_dash_repeat1] = STATE(323), + [aux_sym__list_plus_repeat1] = STATE(324), + [aux_sym__list_star_repeat1] = STATE(325), + [aux_sym__list_task_repeat1] = STATE(299), + [aux_sym__list_definition_repeat1] = STATE(491), + [aux_sym__list_decimal_period_repeat1] = STATE(492), + [aux_sym__list_decimal_paren_repeat1] = STATE(493), + [aux_sym__list_decimal_parens_repeat1] = STATE(494), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(495), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(496), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(497), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(498), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(499), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(500), + [aux_sym__list_lower_roman_period_repeat1] = STATE(501), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(502), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(503), + [aux_sym__list_upper_roman_period_repeat1] = STATE(504), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(505), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(506), [aux_sym_table_repeat1] = STATE(67), [aux_sym_div_repeat1] = STATE(19), [aux_sym__block_quote_prefix_repeat1] = STATE(226), @@ -7006,55 +7004,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heading] = STATE(168), [sym_list] = STATE(168), [sym__list_dash] = STATE(129), - [sym__list_item_dash] = STATE(645), + [sym__list_item_dash] = STATE(595), [sym__list_plus] = STATE(129), - [sym__list_item_plus] = STATE(661), + [sym__list_item_plus] = STATE(657), [sym__list_star] = STATE(129), - [sym__list_item_star] = STATE(573), + [sym__list_item_star] = STATE(570), [sym__list_task] = STATE(129), - [sym__list_item_task] = STATE(590), + [sym__list_item_task] = STATE(586), [sym_list_marker_task] = STATE(43), [sym__list_definition] = STATE(129), - [sym__list_item_definition] = STATE(740), + [sym__list_item_definition] = STATE(694), [sym__list_decimal_period] = STATE(129), - [sym__list_item_decimal_period] = STATE(743), + [sym__list_item_decimal_period] = STATE(714), [sym__list_decimal_paren] = STATE(129), - [sym__list_item_decimal_paren] = STATE(748), + [sym__list_item_decimal_paren] = STATE(719), [sym__list_decimal_parens] = STATE(129), - [sym__list_item_decimal_parens] = STATE(768), + [sym__list_item_decimal_parens] = STATE(746), [sym__list_lower_alpha_period] = STATE(129), - [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_item_lower_alpha_period] = STATE(748), [sym__list_lower_alpha_paren] = STATE(129), - [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_item_lower_alpha_paren] = STATE(749), [sym__list_lower_alpha_parens] = STATE(129), - [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_item_lower_alpha_parens] = STATE(753), [sym__list_upper_alpha_period] = STATE(129), - [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_item_upper_alpha_period] = STATE(761), [sym__list_upper_alpha_paren] = STATE(129), - [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_item_upper_alpha_paren] = STATE(764), [sym__list_upper_alpha_parens] = STATE(129), - [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_item_upper_alpha_parens] = STATE(765), [sym__list_lower_roman_period] = STATE(129), - [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_item_lower_roman_period] = STATE(768), [sym__list_lower_roman_paren] = STATE(129), - [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_item_lower_roman_paren] = STATE(769), [sym__list_lower_roman_parens] = STATE(129), - [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_item_lower_roman_parens] = STATE(786), [sym__list_upper_roman_period] = STATE(129), - [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_item_upper_roman_period] = STATE(791), [sym__list_upper_roman_paren] = STATE(129), - [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_item_upper_roman_paren] = STATE(793), [sym__list_upper_roman_parens] = STATE(129), - [sym__list_item_upper_roman_parens] = STATE(819), + [sym__list_item_upper_roman_parens] = STATE(799), [sym_table] = STATE(168), [sym__table_row] = STATE(67), [sym_table_header] = STATE(67), [sym_table_separator] = STATE(67), [sym_table_row] = STATE(67), [sym_footnote] = STATE(168), - [sym_footnote_marker_begin] = STATE(894), + [sym_footnote_marker_begin] = STATE(1139), [sym_div] = STATE(168), - [sym__div_marker_begin] = STATE(1056), + [sym__div_marker_begin] = STATE(1055), [sym_code_block] = STATE(168), [sym_raw_block] = STATE(168), [sym_thematic_break] = STATE(168), @@ -7063,30 +7061,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_link_reference_definition] = STATE(168), [sym_block_attribute] = STATE(168), [sym__paragraph] = STATE(168), - [sym__paragraph_content] = STATE(784), - [sym__paragraph_inline_content] = STATE(837), - [sym__inline] = STATE(656), + [sym__paragraph_content] = STATE(766), + [sym__paragraph_inline_content] = STATE(824), + [sym__inline] = STATE(654), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(322), - [aux_sym__list_plus_repeat1] = STATE(323), - [aux_sym__list_star_repeat1] = STATE(324), - [aux_sym__list_task_repeat1] = STATE(285), - [aux_sym__list_definition_repeat1] = STATE(494), - [aux_sym__list_decimal_period_repeat1] = STATE(495), - [aux_sym__list_decimal_paren_repeat1] = STATE(496), - [aux_sym__list_decimal_parens_repeat1] = STATE(497), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(498), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(499), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(500), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(501), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(502), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(503), - [aux_sym__list_lower_roman_period_repeat1] = STATE(504), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(505), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(506), - [aux_sym__list_upper_roman_period_repeat1] = STATE(507), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(508), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(509), + [aux_sym__list_dash_repeat1] = STATE(323), + [aux_sym__list_plus_repeat1] = STATE(324), + [aux_sym__list_star_repeat1] = STATE(325), + [aux_sym__list_task_repeat1] = STATE(299), + [aux_sym__list_definition_repeat1] = STATE(491), + [aux_sym__list_decimal_period_repeat1] = STATE(492), + [aux_sym__list_decimal_paren_repeat1] = STATE(493), + [aux_sym__list_decimal_parens_repeat1] = STATE(494), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(495), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(496), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(497), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(498), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(499), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(500), + [aux_sym__list_lower_roman_period_repeat1] = STATE(501), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(502), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(503), + [aux_sym__list_upper_roman_period_repeat1] = STATE(504), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(505), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(506), [aux_sym_table_repeat1] = STATE(67), [aux_sym_div_repeat1] = STATE(13), [aux_sym__block_quote_prefix_repeat1] = STATE(226), @@ -7138,55 +7136,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heading] = STATE(168), [sym_list] = STATE(168), [sym__list_dash] = STATE(129), - [sym__list_item_dash] = STATE(645), + [sym__list_item_dash] = STATE(595), [sym__list_plus] = STATE(129), - [sym__list_item_plus] = STATE(661), + [sym__list_item_plus] = STATE(657), [sym__list_star] = STATE(129), - [sym__list_item_star] = STATE(573), + [sym__list_item_star] = STATE(570), [sym__list_task] = STATE(129), - [sym__list_item_task] = STATE(590), + [sym__list_item_task] = STATE(586), [sym_list_marker_task] = STATE(43), [sym__list_definition] = STATE(129), - [sym__list_item_definition] = STATE(740), + [sym__list_item_definition] = STATE(694), [sym__list_decimal_period] = STATE(129), - [sym__list_item_decimal_period] = STATE(743), + [sym__list_item_decimal_period] = STATE(714), [sym__list_decimal_paren] = STATE(129), - [sym__list_item_decimal_paren] = STATE(748), + [sym__list_item_decimal_paren] = STATE(719), [sym__list_decimal_parens] = STATE(129), - [sym__list_item_decimal_parens] = STATE(768), + [sym__list_item_decimal_parens] = STATE(746), [sym__list_lower_alpha_period] = STATE(129), - [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_item_lower_alpha_period] = STATE(748), [sym__list_lower_alpha_paren] = STATE(129), - [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_item_lower_alpha_paren] = STATE(749), [sym__list_lower_alpha_parens] = STATE(129), - [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_item_lower_alpha_parens] = STATE(753), [sym__list_upper_alpha_period] = STATE(129), - [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_item_upper_alpha_period] = STATE(761), [sym__list_upper_alpha_paren] = STATE(129), - [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_item_upper_alpha_paren] = STATE(764), [sym__list_upper_alpha_parens] = STATE(129), - [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_item_upper_alpha_parens] = STATE(765), [sym__list_lower_roman_period] = STATE(129), - [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_item_lower_roman_period] = STATE(768), [sym__list_lower_roman_paren] = STATE(129), - [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_item_lower_roman_paren] = STATE(769), [sym__list_lower_roman_parens] = STATE(129), - [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_item_lower_roman_parens] = STATE(786), [sym__list_upper_roman_period] = STATE(129), - [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_item_upper_roman_period] = STATE(791), [sym__list_upper_roman_paren] = STATE(129), - [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_item_upper_roman_paren] = STATE(793), [sym__list_upper_roman_parens] = STATE(129), - [sym__list_item_upper_roman_parens] = STATE(819), + [sym__list_item_upper_roman_parens] = STATE(799), [sym_table] = STATE(168), [sym__table_row] = STATE(67), [sym_table_header] = STATE(67), [sym_table_separator] = STATE(67), [sym_table_row] = STATE(67), [sym_footnote] = STATE(168), - [sym_footnote_marker_begin] = STATE(894), + [sym_footnote_marker_begin] = STATE(1139), [sym_div] = STATE(168), - [sym__div_marker_begin] = STATE(1056), + [sym__div_marker_begin] = STATE(1055), [sym_code_block] = STATE(168), [sym_raw_block] = STATE(168), [sym_thematic_break] = STATE(168), @@ -7195,30 +7193,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_link_reference_definition] = STATE(168), [sym_block_attribute] = STATE(168), [sym__paragraph] = STATE(168), - [sym__paragraph_content] = STATE(784), - [sym__paragraph_inline_content] = STATE(837), - [sym__inline] = STATE(656), + [sym__paragraph_content] = STATE(766), + [sym__paragraph_inline_content] = STATE(824), + [sym__inline] = STATE(654), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(322), - [aux_sym__list_plus_repeat1] = STATE(323), - [aux_sym__list_star_repeat1] = STATE(324), - [aux_sym__list_task_repeat1] = STATE(285), - [aux_sym__list_definition_repeat1] = STATE(494), - [aux_sym__list_decimal_period_repeat1] = STATE(495), - [aux_sym__list_decimal_paren_repeat1] = STATE(496), - [aux_sym__list_decimal_parens_repeat1] = STATE(497), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(498), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(499), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(500), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(501), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(502), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(503), - [aux_sym__list_lower_roman_period_repeat1] = STATE(504), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(505), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(506), - [aux_sym__list_upper_roman_period_repeat1] = STATE(507), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(508), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(509), + [aux_sym__list_dash_repeat1] = STATE(323), + [aux_sym__list_plus_repeat1] = STATE(324), + [aux_sym__list_star_repeat1] = STATE(325), + [aux_sym__list_task_repeat1] = STATE(299), + [aux_sym__list_definition_repeat1] = STATE(491), + [aux_sym__list_decimal_period_repeat1] = STATE(492), + [aux_sym__list_decimal_paren_repeat1] = STATE(493), + [aux_sym__list_decimal_parens_repeat1] = STATE(494), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(495), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(496), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(497), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(498), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(499), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(500), + [aux_sym__list_lower_roman_period_repeat1] = STATE(501), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(502), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(503), + [aux_sym__list_upper_roman_period_repeat1] = STATE(504), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(505), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(506), [aux_sym_table_repeat1] = STATE(67), [aux_sym_div_repeat1] = STATE(21), [aux_sym__block_quote_prefix_repeat1] = STATE(226), @@ -7270,55 +7268,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heading] = STATE(168), [sym_list] = STATE(168), [sym__list_dash] = STATE(129), - [sym__list_item_dash] = STATE(645), + [sym__list_item_dash] = STATE(595), [sym__list_plus] = STATE(129), - [sym__list_item_plus] = STATE(661), + [sym__list_item_plus] = STATE(657), [sym__list_star] = STATE(129), - [sym__list_item_star] = STATE(573), + [sym__list_item_star] = STATE(570), [sym__list_task] = STATE(129), - [sym__list_item_task] = STATE(590), + [sym__list_item_task] = STATE(586), [sym_list_marker_task] = STATE(43), [sym__list_definition] = STATE(129), - [sym__list_item_definition] = STATE(740), + [sym__list_item_definition] = STATE(694), [sym__list_decimal_period] = STATE(129), - [sym__list_item_decimal_period] = STATE(743), + [sym__list_item_decimal_period] = STATE(714), [sym__list_decimal_paren] = STATE(129), - [sym__list_item_decimal_paren] = STATE(748), + [sym__list_item_decimal_paren] = STATE(719), [sym__list_decimal_parens] = STATE(129), - [sym__list_item_decimal_parens] = STATE(768), + [sym__list_item_decimal_parens] = STATE(746), [sym__list_lower_alpha_period] = STATE(129), - [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_item_lower_alpha_period] = STATE(748), [sym__list_lower_alpha_paren] = STATE(129), - [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_item_lower_alpha_paren] = STATE(749), [sym__list_lower_alpha_parens] = STATE(129), - [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_item_lower_alpha_parens] = STATE(753), [sym__list_upper_alpha_period] = STATE(129), - [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_item_upper_alpha_period] = STATE(761), [sym__list_upper_alpha_paren] = STATE(129), - [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_item_upper_alpha_paren] = STATE(764), [sym__list_upper_alpha_parens] = STATE(129), - [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_item_upper_alpha_parens] = STATE(765), [sym__list_lower_roman_period] = STATE(129), - [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_item_lower_roman_period] = STATE(768), [sym__list_lower_roman_paren] = STATE(129), - [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_item_lower_roman_paren] = STATE(769), [sym__list_lower_roman_parens] = STATE(129), - [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_item_lower_roman_parens] = STATE(786), [sym__list_upper_roman_period] = STATE(129), - [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_item_upper_roman_period] = STATE(791), [sym__list_upper_roman_paren] = STATE(129), - [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_item_upper_roman_paren] = STATE(793), [sym__list_upper_roman_parens] = STATE(129), - [sym__list_item_upper_roman_parens] = STATE(819), + [sym__list_item_upper_roman_parens] = STATE(799), [sym_table] = STATE(168), [sym__table_row] = STATE(67), [sym_table_header] = STATE(67), [sym_table_separator] = STATE(67), [sym_table_row] = STATE(67), [sym_footnote] = STATE(168), - [sym_footnote_marker_begin] = STATE(894), + [sym_footnote_marker_begin] = STATE(1139), [sym_div] = STATE(168), - [sym__div_marker_begin] = STATE(1056), + [sym__div_marker_begin] = STATE(1055), [sym_code_block] = STATE(168), [sym_raw_block] = STATE(168), [sym_thematic_break] = STATE(168), @@ -7327,30 +7325,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_link_reference_definition] = STATE(168), [sym_block_attribute] = STATE(168), [sym__paragraph] = STATE(168), - [sym__paragraph_content] = STATE(784), - [sym__paragraph_inline_content] = STATE(837), - [sym__inline] = STATE(656), + [sym__paragraph_content] = STATE(766), + [sym__paragraph_inline_content] = STATE(824), + [sym__inline] = STATE(654), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(322), - [aux_sym__list_plus_repeat1] = STATE(323), - [aux_sym__list_star_repeat1] = STATE(324), - [aux_sym__list_task_repeat1] = STATE(285), - [aux_sym__list_definition_repeat1] = STATE(494), - [aux_sym__list_decimal_period_repeat1] = STATE(495), - [aux_sym__list_decimal_paren_repeat1] = STATE(496), - [aux_sym__list_decimal_parens_repeat1] = STATE(497), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(498), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(499), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(500), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(501), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(502), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(503), - [aux_sym__list_lower_roman_period_repeat1] = STATE(504), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(505), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(506), - [aux_sym__list_upper_roman_period_repeat1] = STATE(507), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(508), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(509), + [aux_sym__list_dash_repeat1] = STATE(323), + [aux_sym__list_plus_repeat1] = STATE(324), + [aux_sym__list_star_repeat1] = STATE(325), + [aux_sym__list_task_repeat1] = STATE(299), + [aux_sym__list_definition_repeat1] = STATE(491), + [aux_sym__list_decimal_period_repeat1] = STATE(492), + [aux_sym__list_decimal_paren_repeat1] = STATE(493), + [aux_sym__list_decimal_parens_repeat1] = STATE(494), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(495), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(496), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(497), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(498), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(499), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(500), + [aux_sym__list_lower_roman_period_repeat1] = STATE(501), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(502), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(503), + [aux_sym__list_upper_roman_period_repeat1] = STATE(504), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(505), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(506), [aux_sym_table_repeat1] = STATE(67), [aux_sym_div_repeat1] = STATE(13), [aux_sym__block_quote_prefix_repeat1] = STATE(226), @@ -7397,93 +7395,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block_attribute_begin] = ACTIONS(95), }, [22] = { - [sym__block_with_heading] = STATE(1039), - [sym__block_element] = STATE(1039), - [sym_heading] = STATE(1039), - [sym_list] = STATE(1039), - [sym__list_dash] = STATE(1008), - [sym__list_item_dash] = STATE(645), - [sym__list_plus] = STATE(1008), - [sym__list_item_plus] = STATE(661), - [sym__list_star] = STATE(1008), - [sym__list_item_star] = STATE(573), - [sym__list_task] = STATE(1008), - [sym__list_item_task] = STATE(590), + [sym__block_with_heading] = STATE(1151), + [sym__block_element] = STATE(1151), + [sym_heading] = STATE(1151), + [sym_list] = STATE(1151), + [sym__list_dash] = STATE(1007), + [sym__list_item_dash] = STATE(595), + [sym__list_plus] = STATE(1007), + [sym__list_item_plus] = STATE(657), + [sym__list_star] = STATE(1007), + [sym__list_item_star] = STATE(570), + [sym__list_task] = STATE(1007), + [sym__list_item_task] = STATE(586), [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(1008), - [sym__list_item_definition] = STATE(740), - [sym__list_decimal_period] = STATE(1008), - [sym__list_item_decimal_period] = STATE(743), - [sym__list_decimal_paren] = STATE(1008), - [sym__list_item_decimal_paren] = STATE(748), - [sym__list_decimal_parens] = STATE(1008), - [sym__list_item_decimal_parens] = STATE(768), - [sym__list_lower_alpha_period] = STATE(1008), - [sym__list_item_lower_alpha_period] = STATE(769), - [sym__list_lower_alpha_paren] = STATE(1008), - [sym__list_item_lower_alpha_paren] = STATE(773), - [sym__list_lower_alpha_parens] = STATE(1008), - [sym__list_item_lower_alpha_parens] = STATE(774), - [sym__list_upper_alpha_period] = STATE(1008), - [sym__list_item_upper_alpha_period] = STATE(782), - [sym__list_upper_alpha_paren] = STATE(1008), - [sym__list_item_upper_alpha_paren] = STATE(783), - [sym__list_upper_alpha_parens] = STATE(1008), - [sym__list_item_upper_alpha_parens] = STATE(786), - [sym__list_lower_roman_period] = STATE(1008), - [sym__list_item_lower_roman_period] = STATE(787), - [sym__list_lower_roman_paren] = STATE(1008), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(1008), - [sym__list_item_lower_roman_parens] = STATE(803), - [sym__list_upper_roman_period] = STATE(1008), - [sym__list_item_upper_roman_period] = STATE(808), - [sym__list_upper_roman_paren] = STATE(1008), - [sym__list_item_upper_roman_paren] = STATE(814), - [sym__list_upper_roman_parens] = STATE(1008), - [sym__list_item_upper_roman_parens] = STATE(819), - [sym_list_item_content] = STATE(593), - [sym_table] = STATE(1039), + [sym__list_definition] = STATE(1007), + [sym__list_item_definition] = STATE(694), + [sym__list_decimal_period] = STATE(1007), + [sym__list_item_decimal_period] = STATE(714), + [sym__list_decimal_paren] = STATE(1007), + [sym__list_item_decimal_paren] = STATE(719), + [sym__list_decimal_parens] = STATE(1007), + [sym__list_item_decimal_parens] = STATE(746), + [sym__list_lower_alpha_period] = STATE(1007), + [sym__list_item_lower_alpha_period] = STATE(748), + [sym__list_lower_alpha_paren] = STATE(1007), + [sym__list_item_lower_alpha_paren] = STATE(749), + [sym__list_lower_alpha_parens] = STATE(1007), + [sym__list_item_lower_alpha_parens] = STATE(753), + [sym__list_upper_alpha_period] = STATE(1007), + [sym__list_item_upper_alpha_period] = STATE(761), + [sym__list_upper_alpha_paren] = STATE(1007), + [sym__list_item_upper_alpha_paren] = STATE(764), + [sym__list_upper_alpha_parens] = STATE(1007), + [sym__list_item_upper_alpha_parens] = STATE(765), + [sym__list_lower_roman_period] = STATE(1007), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(1007), + [sym__list_item_lower_roman_paren] = STATE(769), + [sym__list_lower_roman_parens] = STATE(1007), + [sym__list_item_lower_roman_parens] = STATE(786), + [sym__list_upper_roman_period] = STATE(1007), + [sym__list_item_upper_roman_period] = STATE(791), + [sym__list_upper_roman_paren] = STATE(1007), + [sym__list_item_upper_roman_paren] = STATE(793), + [sym__list_upper_roman_parens] = STATE(1007), + [sym__list_item_upper_roman_parens] = STATE(799), + [sym_list_item_content] = STATE(590), + [sym_table] = STATE(1151), [sym__table_row] = STATE(234), [sym_table_header] = STATE(234), [sym_table_separator] = STATE(234), [sym_table_row] = STATE(234), - [sym_footnote] = STATE(1039), - [sym_footnote_marker_begin] = STATE(1136), - [sym_div] = STATE(1039), - [sym__div_marker_begin] = STATE(1018), - [sym_code_block] = STATE(1039), - [sym_raw_block] = STATE(1039), - [sym_thematic_break] = STATE(1039), - [sym_block_quote] = STATE(1039), + [sym_footnote] = STATE(1151), + [sym_footnote_marker_begin] = STATE(1135), + [sym_div] = STATE(1151), + [sym__div_marker_begin] = STATE(1017), + [sym_code_block] = STATE(1151), + [sym_raw_block] = STATE(1151), + [sym_thematic_break] = STATE(1151), + [sym_block_quote] = STATE(1151), [sym__block_quote_prefix] = STATE(225), - [sym_link_reference_definition] = STATE(1039), - [sym_block_attribute] = STATE(1039), - [sym__paragraph] = STATE(1039), - [sym__paragraph_content] = STATE(724), - [sym__paragraph_inline_content] = STATE(837), - [sym__inline] = STATE(656), + [sym_link_reference_definition] = STATE(1151), + [sym_block_attribute] = STATE(1151), + [sym__paragraph] = STATE(1151), + [sym__paragraph_content] = STATE(690), + [sym__paragraph_inline_content] = STATE(824), + [sym__inline] = STATE(654), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(318), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_star_repeat1] = STATE(320), - [aux_sym__list_task_repeat1] = STATE(287), - [aux_sym__list_definition_repeat1] = STATE(459), - [aux_sym__list_decimal_period_repeat1] = STATE(460), - [aux_sym__list_decimal_paren_repeat1] = STATE(461), - [aux_sym__list_decimal_parens_repeat1] = STATE(462), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(463), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(464), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(465), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(466), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(467), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(468), - [aux_sym__list_lower_roman_period_repeat1] = STATE(469), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(470), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(471), - [aux_sym__list_upper_roman_period_repeat1] = STATE(472), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(473), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym__list_dash_repeat1] = STATE(316), + [aux_sym__list_plus_repeat1] = STATE(336), + [aux_sym__list_star_repeat1] = STATE(318), + [aux_sym__list_task_repeat1] = STATE(288), + [aux_sym__list_definition_repeat1] = STATE(456), + [aux_sym__list_decimal_period_repeat1] = STATE(457), + [aux_sym__list_decimal_paren_repeat1] = STATE(458), + [aux_sym__list_decimal_parens_repeat1] = STATE(459), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(460), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(461), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(462), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(463), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(464), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(465), + [aux_sym__list_lower_roman_period_repeat1] = STATE(466), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(467), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(468), + [aux_sym__list_upper_roman_period_repeat1] = STATE(469), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(470), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(471), [aux_sym_table_repeat1] = STATE(234), [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), @@ -7528,61 +7526,192 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block_attribute_begin] = ACTIONS(384), }, [23] = { + [sym__block_with_heading] = STATE(1091), + [sym__block_element] = STATE(1091), + [sym_heading] = STATE(1091), + [sym_list] = STATE(1091), + [sym__list_dash] = STATE(1007), + [sym__list_item_dash] = STATE(595), + [sym__list_plus] = STATE(1007), + [sym__list_item_plus] = STATE(657), + [sym__list_star] = STATE(1007), + [sym__list_item_star] = STATE(570), + [sym__list_task] = STATE(1007), + [sym__list_item_task] = STATE(586), + [sym_list_marker_task] = STATE(43), + [sym__list_definition] = STATE(1007), + [sym__list_item_definition] = STATE(694), + [sym__list_decimal_period] = STATE(1007), + [sym__list_item_decimal_period] = STATE(714), + [sym__list_decimal_paren] = STATE(1007), + [sym__list_item_decimal_paren] = STATE(719), + [sym__list_decimal_parens] = STATE(1007), + [sym__list_item_decimal_parens] = STATE(746), + [sym__list_lower_alpha_period] = STATE(1007), + [sym__list_item_lower_alpha_period] = STATE(748), + [sym__list_lower_alpha_paren] = STATE(1007), + [sym__list_item_lower_alpha_paren] = STATE(749), + [sym__list_lower_alpha_parens] = STATE(1007), + [sym__list_item_lower_alpha_parens] = STATE(753), + [sym__list_upper_alpha_period] = STATE(1007), + [sym__list_item_upper_alpha_period] = STATE(761), + [sym__list_upper_alpha_paren] = STATE(1007), + [sym__list_item_upper_alpha_paren] = STATE(764), + [sym__list_upper_alpha_parens] = STATE(1007), + [sym__list_item_upper_alpha_parens] = STATE(765), + [sym__list_lower_roman_period] = STATE(1007), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(1007), + [sym__list_item_lower_roman_paren] = STATE(769), + [sym__list_lower_roman_parens] = STATE(1007), + [sym__list_item_lower_roman_parens] = STATE(786), + [sym__list_upper_roman_period] = STATE(1007), + [sym__list_item_upper_roman_period] = STATE(791), + [sym__list_upper_roman_paren] = STATE(1007), + [sym__list_item_upper_roman_paren] = STATE(793), + [sym__list_upper_roman_parens] = STATE(1007), + [sym__list_item_upper_roman_parens] = STATE(799), + [sym_list_item_content] = STATE(695), + [sym_table] = STATE(1091), + [sym__table_row] = STATE(234), + [sym_table_header] = STATE(234), + [sym_table_separator] = STATE(234), + [sym_table_row] = STATE(234), + [sym_footnote] = STATE(1091), + [sym_footnote_marker_begin] = STATE(1135), + [sym_div] = STATE(1091), + [sym__div_marker_begin] = STATE(1017), + [sym_code_block] = STATE(1091), + [sym_raw_block] = STATE(1091), + [sym_thematic_break] = STATE(1091), + [sym_block_quote] = STATE(1091), + [sym__block_quote_prefix] = STATE(225), + [sym_link_reference_definition] = STATE(1091), + [sym_block_attribute] = STATE(1091), + [sym__paragraph] = STATE(1091), + [sym__paragraph_content] = STATE(690), + [sym__paragraph_inline_content] = STATE(824), + [sym__inline] = STATE(654), + [sym__symbol_fallback] = STATE(273), + [aux_sym__list_dash_repeat1] = STATE(316), + [aux_sym__list_plus_repeat1] = STATE(336), + [aux_sym__list_star_repeat1] = STATE(318), + [aux_sym__list_task_repeat1] = STATE(288), + [aux_sym__list_definition_repeat1] = STATE(456), + [aux_sym__list_decimal_period_repeat1] = STATE(457), + [aux_sym__list_decimal_paren_repeat1] = STATE(458), + [aux_sym__list_decimal_parens_repeat1] = STATE(459), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(460), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(461), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(462), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(463), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(464), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(465), + [aux_sym__list_lower_roman_period_repeat1] = STATE(466), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(467), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(468), + [aux_sym__list_upper_roman_period_repeat1] = STATE(469), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(470), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(471), + [aux_sym_table_repeat1] = STATE(234), + [aux_sym__block_quote_prefix_repeat1] = STATE(230), + [aux_sym__inline_repeat1] = STATE(273), + [anon_sym_LBRACK] = ACTIONS(364), + [anon_sym_LBRACK_CARET] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(9), + [aux_sym_identifier_token1] = ACTIONS(9), + [aux_sym__inline_token1] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(9), + [anon_sym_PERCENT] = ACTIONS(9), + [sym__newline] = ACTIONS(386), + [sym__heading_begin] = ACTIONS(368), + [sym__div_begin] = ACTIONS(17), + [sym__code_block_begin] = ACTIONS(370), + [sym_list_marker_dash] = ACTIONS(21), + [sym_list_marker_star] = ACTIONS(23), + [sym_list_marker_plus] = ACTIONS(25), + [sym__list_marker_task_begin] = ACTIONS(27), + [sym_list_marker_definition] = ACTIONS(29), + [sym_list_marker_decimal_period] = ACTIONS(31), + [sym_list_marker_lower_alpha_period] = ACTIONS(33), + [sym_list_marker_upper_alpha_period] = ACTIONS(35), + [sym_list_marker_lower_roman_period] = ACTIONS(37), + [sym_list_marker_upper_roman_period] = ACTIONS(39), + [sym_list_marker_decimal_paren] = ACTIONS(41), + [sym_list_marker_lower_alpha_paren] = ACTIONS(43), + [sym_list_marker_upper_alpha_paren] = ACTIONS(45), + [sym_list_marker_lower_roman_paren] = ACTIONS(47), + [sym_list_marker_upper_roman_paren] = ACTIONS(49), + [sym_list_marker_decimal_parens] = ACTIONS(51), + [sym_list_marker_lower_alpha_parens] = ACTIONS(53), + [sym_list_marker_upper_alpha_parens] = ACTIONS(55), + [sym_list_marker_lower_roman_parens] = ACTIONS(57), + [sym_list_marker_upper_roman_parens] = ACTIONS(59), + [sym__block_quote_begin] = ACTIONS(372), + [sym__block_quote_continuation] = ACTIONS(374), + [sym__thematic_break_dash] = ACTIONS(376), + [sym__thematic_break_star] = ACTIONS(376), + [sym__table_header_begin] = ACTIONS(378), + [sym__table_separator_begin] = ACTIONS(380), + [sym__table_row_begin] = ACTIONS(382), + [sym__block_attribute_begin] = ACTIONS(384), + }, + [24] = { [sym__block_with_heading] = STATE(1092), [sym__block_element] = STATE(1092), [sym_heading] = STATE(1092), [sym_list] = STATE(1092), - [sym__list_dash] = STATE(1008), - [sym__list_item_dash] = STATE(645), - [sym__list_plus] = STATE(1008), - [sym__list_item_plus] = STATE(661), - [sym__list_star] = STATE(1008), - [sym__list_item_star] = STATE(573), - [sym__list_task] = STATE(1008), - [sym__list_item_task] = STATE(590), + [sym__list_dash] = STATE(1007), + [sym__list_item_dash] = STATE(595), + [sym__list_plus] = STATE(1007), + [sym__list_item_plus] = STATE(657), + [sym__list_star] = STATE(1007), + [sym__list_item_star] = STATE(570), + [sym__list_task] = STATE(1007), + [sym__list_item_task] = STATE(586), [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(1008), - [sym__list_item_definition] = STATE(740), - [sym__list_decimal_period] = STATE(1008), - [sym__list_item_decimal_period] = STATE(743), - [sym__list_decimal_paren] = STATE(1008), - [sym__list_item_decimal_paren] = STATE(748), - [sym__list_decimal_parens] = STATE(1008), - [sym__list_item_decimal_parens] = STATE(768), - [sym__list_lower_alpha_period] = STATE(1008), - [sym__list_item_lower_alpha_period] = STATE(769), - [sym__list_lower_alpha_paren] = STATE(1008), - [sym__list_item_lower_alpha_paren] = STATE(773), - [sym__list_lower_alpha_parens] = STATE(1008), - [sym__list_item_lower_alpha_parens] = STATE(774), - [sym__list_upper_alpha_period] = STATE(1008), - [sym__list_item_upper_alpha_period] = STATE(782), - [sym__list_upper_alpha_paren] = STATE(1008), - [sym__list_item_upper_alpha_paren] = STATE(783), - [sym__list_upper_alpha_parens] = STATE(1008), - [sym__list_item_upper_alpha_parens] = STATE(786), - [sym__list_lower_roman_period] = STATE(1008), - [sym__list_item_lower_roman_period] = STATE(787), - [sym__list_lower_roman_paren] = STATE(1008), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(1008), - [sym__list_item_lower_roman_parens] = STATE(803), - [sym__list_upper_roman_period] = STATE(1008), - [sym__list_item_upper_roman_period] = STATE(808), - [sym__list_upper_roman_paren] = STATE(1008), - [sym__list_item_upper_roman_paren] = STATE(814), - [sym__list_upper_roman_parens] = STATE(1008), - [sym__list_item_upper_roman_parens] = STATE(819), - [sym_list_item_content] = STATE(772), + [sym__list_definition] = STATE(1007), + [sym__list_item_definition] = STATE(694), + [sym__list_decimal_period] = STATE(1007), + [sym__list_item_decimal_period] = STATE(714), + [sym__list_decimal_paren] = STATE(1007), + [sym__list_item_decimal_paren] = STATE(719), + [sym__list_decimal_parens] = STATE(1007), + [sym__list_item_decimal_parens] = STATE(746), + [sym__list_lower_alpha_period] = STATE(1007), + [sym__list_item_lower_alpha_period] = STATE(748), + [sym__list_lower_alpha_paren] = STATE(1007), + [sym__list_item_lower_alpha_paren] = STATE(749), + [sym__list_lower_alpha_parens] = STATE(1007), + [sym__list_item_lower_alpha_parens] = STATE(753), + [sym__list_upper_alpha_period] = STATE(1007), + [sym__list_item_upper_alpha_period] = STATE(761), + [sym__list_upper_alpha_paren] = STATE(1007), + [sym__list_item_upper_alpha_paren] = STATE(764), + [sym__list_upper_alpha_parens] = STATE(1007), + [sym__list_item_upper_alpha_parens] = STATE(765), + [sym__list_lower_roman_period] = STATE(1007), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(1007), + [sym__list_item_lower_roman_paren] = STATE(769), + [sym__list_lower_roman_parens] = STATE(1007), + [sym__list_item_lower_roman_parens] = STATE(786), + [sym__list_upper_roman_period] = STATE(1007), + [sym__list_item_upper_roman_period] = STATE(791), + [sym__list_upper_roman_paren] = STATE(1007), + [sym__list_item_upper_roman_paren] = STATE(793), + [sym__list_upper_roman_parens] = STATE(1007), + [sym__list_item_upper_roman_parens] = STATE(799), + [sym_list_item_content] = STATE(698), [sym_table] = STATE(1092), [sym__table_row] = STATE(234), [sym_table_header] = STATE(234), [sym_table_separator] = STATE(234), [sym_table_row] = STATE(234), [sym_footnote] = STATE(1092), - [sym_footnote_marker_begin] = STATE(1136), + [sym_footnote_marker_begin] = STATE(1135), [sym_div] = STATE(1092), - [sym__div_marker_begin] = STATE(1018), + [sym__div_marker_begin] = STATE(1017), [sym_code_block] = STATE(1092), [sym_raw_block] = STATE(1092), [sym_thematic_break] = STATE(1092), @@ -7591,30 +7720,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_link_reference_definition] = STATE(1092), [sym_block_attribute] = STATE(1092), [sym__paragraph] = STATE(1092), - [sym__paragraph_content] = STATE(724), - [sym__paragraph_inline_content] = STATE(837), - [sym__inline] = STATE(656), + [sym__paragraph_content] = STATE(690), + [sym__paragraph_inline_content] = STATE(824), + [sym__inline] = STATE(654), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(318), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_star_repeat1] = STATE(320), - [aux_sym__list_task_repeat1] = STATE(287), - [aux_sym__list_definition_repeat1] = STATE(459), - [aux_sym__list_decimal_period_repeat1] = STATE(460), - [aux_sym__list_decimal_paren_repeat1] = STATE(461), - [aux_sym__list_decimal_parens_repeat1] = STATE(462), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(463), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(464), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(465), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(466), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(467), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(468), - [aux_sym__list_lower_roman_period_repeat1] = STATE(469), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(470), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(471), - [aux_sym__list_upper_roman_period_repeat1] = STATE(472), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(473), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym__list_dash_repeat1] = STATE(316), + [aux_sym__list_plus_repeat1] = STATE(336), + [aux_sym__list_star_repeat1] = STATE(318), + [aux_sym__list_task_repeat1] = STATE(288), + [aux_sym__list_definition_repeat1] = STATE(456), + [aux_sym__list_decimal_period_repeat1] = STATE(457), + [aux_sym__list_decimal_paren_repeat1] = STATE(458), + [aux_sym__list_decimal_parens_repeat1] = STATE(459), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(460), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(461), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(462), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(463), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(464), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(465), + [aux_sym__list_lower_roman_period_repeat1] = STATE(466), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(467), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(468), + [aux_sym__list_upper_roman_period_repeat1] = STATE(469), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(470), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(471), [aux_sym_table_repeat1] = STATE(234), [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), @@ -7625,7 +7754,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_token1] = ACTIONS(9), [anon_sym_LBRACE] = ACTIONS(9), [anon_sym_PERCENT] = ACTIONS(9), - [sym__newline] = ACTIONS(386), + [sym__newline] = ACTIONS(388), [sym__heading_begin] = ACTIONS(368), [sym__div_begin] = ACTIONS(17), [sym__code_block_begin] = ACTIONS(370), @@ -7658,94 +7787,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__table_row_begin] = ACTIONS(382), [sym__block_attribute_begin] = ACTIONS(384), }, - [24] = { - [sym__block_with_heading] = STATE(1093), - [sym__block_element] = STATE(1093), - [sym_heading] = STATE(1093), - [sym_list] = STATE(1093), - [sym__list_dash] = STATE(1008), - [sym__list_item_dash] = STATE(645), - [sym__list_plus] = STATE(1008), - [sym__list_item_plus] = STATE(661), - [sym__list_star] = STATE(1008), - [sym__list_item_star] = STATE(573), - [sym__list_task] = STATE(1008), - [sym__list_item_task] = STATE(590), + [25] = { + [sym__block_with_heading] = STATE(959), + [sym__block_element] = STATE(959), + [sym_heading] = STATE(959), + [sym_list] = STATE(959), + [sym__list_dash] = STATE(1007), + [sym__list_item_dash] = STATE(595), + [sym__list_plus] = STATE(1007), + [sym__list_item_plus] = STATE(657), + [sym__list_star] = STATE(1007), + [sym__list_item_star] = STATE(570), + [sym__list_task] = STATE(1007), + [sym__list_item_task] = STATE(586), [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(1008), - [sym__list_item_definition] = STATE(740), - [sym__list_decimal_period] = STATE(1008), - [sym__list_item_decimal_period] = STATE(743), - [sym__list_decimal_paren] = STATE(1008), - [sym__list_item_decimal_paren] = STATE(748), - [sym__list_decimal_parens] = STATE(1008), - [sym__list_item_decimal_parens] = STATE(768), - [sym__list_lower_alpha_period] = STATE(1008), - [sym__list_item_lower_alpha_period] = STATE(769), - [sym__list_lower_alpha_paren] = STATE(1008), - [sym__list_item_lower_alpha_paren] = STATE(773), - [sym__list_lower_alpha_parens] = STATE(1008), - [sym__list_item_lower_alpha_parens] = STATE(774), - [sym__list_upper_alpha_period] = STATE(1008), - [sym__list_item_upper_alpha_period] = STATE(782), - [sym__list_upper_alpha_paren] = STATE(1008), - [sym__list_item_upper_alpha_paren] = STATE(783), - [sym__list_upper_alpha_parens] = STATE(1008), - [sym__list_item_upper_alpha_parens] = STATE(786), - [sym__list_lower_roman_period] = STATE(1008), - [sym__list_item_lower_roman_period] = STATE(787), - [sym__list_lower_roman_paren] = STATE(1008), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(1008), - [sym__list_item_lower_roman_parens] = STATE(803), - [sym__list_upper_roman_period] = STATE(1008), - [sym__list_item_upper_roman_period] = STATE(808), - [sym__list_upper_roman_paren] = STATE(1008), - [sym__list_item_upper_roman_paren] = STATE(814), - [sym__list_upper_roman_parens] = STATE(1008), - [sym__list_item_upper_roman_parens] = STATE(819), - [sym_list_item_content] = STATE(775), - [sym_table] = STATE(1093), + [sym__list_definition] = STATE(1007), + [sym__list_item_definition] = STATE(694), + [sym__list_decimal_period] = STATE(1007), + [sym__list_item_decimal_period] = STATE(714), + [sym__list_decimal_paren] = STATE(1007), + [sym__list_item_decimal_paren] = STATE(719), + [sym__list_decimal_parens] = STATE(1007), + [sym__list_item_decimal_parens] = STATE(746), + [sym__list_lower_alpha_period] = STATE(1007), + [sym__list_item_lower_alpha_period] = STATE(748), + [sym__list_lower_alpha_paren] = STATE(1007), + [sym__list_item_lower_alpha_paren] = STATE(749), + [sym__list_lower_alpha_parens] = STATE(1007), + [sym__list_item_lower_alpha_parens] = STATE(753), + [sym__list_upper_alpha_period] = STATE(1007), + [sym__list_item_upper_alpha_period] = STATE(761), + [sym__list_upper_alpha_paren] = STATE(1007), + [sym__list_item_upper_alpha_paren] = STATE(764), + [sym__list_upper_alpha_parens] = STATE(1007), + [sym__list_item_upper_alpha_parens] = STATE(765), + [sym__list_lower_roman_period] = STATE(1007), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(1007), + [sym__list_item_lower_roman_paren] = STATE(769), + [sym__list_lower_roman_parens] = STATE(1007), + [sym__list_item_lower_roman_parens] = STATE(786), + [sym__list_upper_roman_period] = STATE(1007), + [sym__list_item_upper_roman_period] = STATE(791), + [sym__list_upper_roman_paren] = STATE(1007), + [sym__list_item_upper_roman_paren] = STATE(793), + [sym__list_upper_roman_parens] = STATE(1007), + [sym__list_item_upper_roman_parens] = STATE(799), + [sym_list_item_content] = STATE(588), + [sym_table] = STATE(959), [sym__table_row] = STATE(234), [sym_table_header] = STATE(234), [sym_table_separator] = STATE(234), [sym_table_row] = STATE(234), - [sym_footnote] = STATE(1093), - [sym_footnote_marker_begin] = STATE(1136), - [sym_div] = STATE(1093), - [sym__div_marker_begin] = STATE(1018), - [sym_code_block] = STATE(1093), - [sym_raw_block] = STATE(1093), - [sym_thematic_break] = STATE(1093), - [sym_block_quote] = STATE(1093), + [sym_footnote] = STATE(959), + [sym_footnote_marker_begin] = STATE(1135), + [sym_div] = STATE(959), + [sym__div_marker_begin] = STATE(1017), + [sym_code_block] = STATE(959), + [sym_raw_block] = STATE(959), + [sym_thematic_break] = STATE(959), + [sym_block_quote] = STATE(959), [sym__block_quote_prefix] = STATE(225), - [sym_link_reference_definition] = STATE(1093), - [sym_block_attribute] = STATE(1093), - [sym__paragraph] = STATE(1093), - [sym__paragraph_content] = STATE(724), - [sym__paragraph_inline_content] = STATE(837), - [sym__inline] = STATE(656), + [sym_link_reference_definition] = STATE(959), + [sym_block_attribute] = STATE(959), + [sym__paragraph] = STATE(959), + [sym__paragraph_content] = STATE(690), + [sym__paragraph_inline_content] = STATE(824), + [sym__inline] = STATE(654), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(318), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_star_repeat1] = STATE(320), - [aux_sym__list_task_repeat1] = STATE(287), - [aux_sym__list_definition_repeat1] = STATE(459), - [aux_sym__list_decimal_period_repeat1] = STATE(460), - [aux_sym__list_decimal_paren_repeat1] = STATE(461), - [aux_sym__list_decimal_parens_repeat1] = STATE(462), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(463), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(464), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(465), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(466), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(467), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(468), - [aux_sym__list_lower_roman_period_repeat1] = STATE(469), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(470), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(471), - [aux_sym__list_upper_roman_period_repeat1] = STATE(472), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(473), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym__list_dash_repeat1] = STATE(316), + [aux_sym__list_plus_repeat1] = STATE(336), + [aux_sym__list_star_repeat1] = STATE(318), + [aux_sym__list_task_repeat1] = STATE(288), + [aux_sym__list_definition_repeat1] = STATE(456), + [aux_sym__list_decimal_period_repeat1] = STATE(457), + [aux_sym__list_decimal_paren_repeat1] = STATE(458), + [aux_sym__list_decimal_parens_repeat1] = STATE(459), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(460), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(461), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(462), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(463), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(464), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(465), + [aux_sym__list_lower_roman_period_repeat1] = STATE(466), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(467), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(468), + [aux_sym__list_upper_roman_period_repeat1] = STATE(469), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(470), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(471), [aux_sym_table_repeat1] = STATE(234), [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), @@ -7756,7 +7885,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_token1] = ACTIONS(9), [anon_sym_LBRACE] = ACTIONS(9), [anon_sym_PERCENT] = ACTIONS(9), - [sym__newline] = ACTIONS(388), + [sym__newline] = ACTIONS(390), [sym__heading_begin] = ACTIONS(368), [sym__div_begin] = ACTIONS(17), [sym__code_block_begin] = ACTIONS(370), @@ -7789,94 +7918,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__table_row_begin] = ACTIONS(382), [sym__block_attribute_begin] = ACTIONS(384), }, - [25] = { - [sym__block_with_heading] = STATE(898), - [sym__block_element] = STATE(898), - [sym_heading] = STATE(898), - [sym_list] = STATE(898), - [sym__list_dash] = STATE(1008), - [sym__list_item_dash] = STATE(645), - [sym__list_plus] = STATE(1008), - [sym__list_item_plus] = STATE(661), - [sym__list_star] = STATE(1008), - [sym__list_item_star] = STATE(573), - [sym__list_task] = STATE(1008), - [sym__list_item_task] = STATE(590), + [26] = { + [sym__block_with_heading] = STATE(1019), + [sym__block_element] = STATE(1019), + [sym_heading] = STATE(1019), + [sym_list] = STATE(1019), + [sym__list_dash] = STATE(1007), + [sym__list_item_dash] = STATE(595), + [sym__list_plus] = STATE(1007), + [sym__list_item_plus] = STATE(657), + [sym__list_star] = STATE(1007), + [sym__list_item_star] = STATE(570), + [sym__list_task] = STATE(1007), + [sym__list_item_task] = STATE(586), [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(1008), - [sym__list_item_definition] = STATE(740), - [sym__list_decimal_period] = STATE(1008), - [sym__list_item_decimal_period] = STATE(743), - [sym__list_decimal_paren] = STATE(1008), - [sym__list_item_decimal_paren] = STATE(748), - [sym__list_decimal_parens] = STATE(1008), - [sym__list_item_decimal_parens] = STATE(768), - [sym__list_lower_alpha_period] = STATE(1008), - [sym__list_item_lower_alpha_period] = STATE(769), - [sym__list_lower_alpha_paren] = STATE(1008), - [sym__list_item_lower_alpha_paren] = STATE(773), - [sym__list_lower_alpha_parens] = STATE(1008), - [sym__list_item_lower_alpha_parens] = STATE(774), - [sym__list_upper_alpha_period] = STATE(1008), - [sym__list_item_upper_alpha_period] = STATE(782), - [sym__list_upper_alpha_paren] = STATE(1008), - [sym__list_item_upper_alpha_paren] = STATE(783), - [sym__list_upper_alpha_parens] = STATE(1008), - [sym__list_item_upper_alpha_parens] = STATE(786), - [sym__list_lower_roman_period] = STATE(1008), - [sym__list_item_lower_roman_period] = STATE(787), - [sym__list_lower_roman_paren] = STATE(1008), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(1008), - [sym__list_item_lower_roman_parens] = STATE(803), - [sym__list_upper_roman_period] = STATE(1008), - [sym__list_item_upper_roman_period] = STATE(808), - [sym__list_upper_roman_paren] = STATE(1008), - [sym__list_item_upper_roman_paren] = STATE(814), - [sym__list_upper_roman_parens] = STATE(1008), - [sym__list_item_upper_roman_parens] = STATE(819), - [sym_list_item_content] = STATE(591), - [sym_table] = STATE(898), + [sym__list_definition] = STATE(1007), + [sym__list_item_definition] = STATE(694), + [sym__list_decimal_period] = STATE(1007), + [sym__list_item_decimal_period] = STATE(714), + [sym__list_decimal_paren] = STATE(1007), + [sym__list_item_decimal_paren] = STATE(719), + [sym__list_decimal_parens] = STATE(1007), + [sym__list_item_decimal_parens] = STATE(746), + [sym__list_lower_alpha_period] = STATE(1007), + [sym__list_item_lower_alpha_period] = STATE(748), + [sym__list_lower_alpha_paren] = STATE(1007), + [sym__list_item_lower_alpha_paren] = STATE(749), + [sym__list_lower_alpha_parens] = STATE(1007), + [sym__list_item_lower_alpha_parens] = STATE(753), + [sym__list_upper_alpha_period] = STATE(1007), + [sym__list_item_upper_alpha_period] = STATE(761), + [sym__list_upper_alpha_paren] = STATE(1007), + [sym__list_item_upper_alpha_paren] = STATE(764), + [sym__list_upper_alpha_parens] = STATE(1007), + [sym__list_item_upper_alpha_parens] = STATE(765), + [sym__list_lower_roman_period] = STATE(1007), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(1007), + [sym__list_item_lower_roman_paren] = STATE(769), + [sym__list_lower_roman_parens] = STATE(1007), + [sym__list_item_lower_roman_parens] = STATE(786), + [sym__list_upper_roman_period] = STATE(1007), + [sym__list_item_upper_roman_period] = STATE(791), + [sym__list_upper_roman_paren] = STATE(1007), + [sym__list_item_upper_roman_paren] = STATE(793), + [sym__list_upper_roman_parens] = STATE(1007), + [sym__list_item_upper_roman_parens] = STATE(799), + [sym_list_item_content] = STATE(589), + [sym_table] = STATE(1019), [sym__table_row] = STATE(234), [sym_table_header] = STATE(234), [sym_table_separator] = STATE(234), [sym_table_row] = STATE(234), - [sym_footnote] = STATE(898), - [sym_footnote_marker_begin] = STATE(1136), - [sym_div] = STATE(898), - [sym__div_marker_begin] = STATE(1018), - [sym_code_block] = STATE(898), - [sym_raw_block] = STATE(898), - [sym_thematic_break] = STATE(898), - [sym_block_quote] = STATE(898), + [sym_footnote] = STATE(1019), + [sym_footnote_marker_begin] = STATE(1135), + [sym_div] = STATE(1019), + [sym__div_marker_begin] = STATE(1017), + [sym_code_block] = STATE(1019), + [sym_raw_block] = STATE(1019), + [sym_thematic_break] = STATE(1019), + [sym_block_quote] = STATE(1019), [sym__block_quote_prefix] = STATE(225), - [sym_link_reference_definition] = STATE(898), - [sym_block_attribute] = STATE(898), - [sym__paragraph] = STATE(898), - [sym__paragraph_content] = STATE(724), - [sym__paragraph_inline_content] = STATE(837), - [sym__inline] = STATE(656), + [sym_link_reference_definition] = STATE(1019), + [sym_block_attribute] = STATE(1019), + [sym__paragraph] = STATE(1019), + [sym__paragraph_content] = STATE(690), + [sym__paragraph_inline_content] = STATE(824), + [sym__inline] = STATE(654), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(318), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_star_repeat1] = STATE(320), - [aux_sym__list_task_repeat1] = STATE(287), - [aux_sym__list_definition_repeat1] = STATE(459), - [aux_sym__list_decimal_period_repeat1] = STATE(460), - [aux_sym__list_decimal_paren_repeat1] = STATE(461), - [aux_sym__list_decimal_parens_repeat1] = STATE(462), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(463), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(464), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(465), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(466), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(467), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(468), - [aux_sym__list_lower_roman_period_repeat1] = STATE(469), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(470), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(471), - [aux_sym__list_upper_roman_period_repeat1] = STATE(472), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(473), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym__list_dash_repeat1] = STATE(316), + [aux_sym__list_plus_repeat1] = STATE(336), + [aux_sym__list_star_repeat1] = STATE(318), + [aux_sym__list_task_repeat1] = STATE(288), + [aux_sym__list_definition_repeat1] = STATE(456), + [aux_sym__list_decimal_period_repeat1] = STATE(457), + [aux_sym__list_decimal_paren_repeat1] = STATE(458), + [aux_sym__list_decimal_parens_repeat1] = STATE(459), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(460), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(461), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(462), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(463), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(464), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(465), + [aux_sym__list_lower_roman_period_repeat1] = STATE(466), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(467), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(468), + [aux_sym__list_upper_roman_period_repeat1] = STATE(469), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(470), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(471), [aux_sym_table_repeat1] = STATE(234), [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), @@ -7887,7 +8016,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_token1] = ACTIONS(9), [anon_sym_LBRACE] = ACTIONS(9), [anon_sym_PERCENT] = ACTIONS(9), - [sym__newline] = ACTIONS(390), + [sym__newline] = ACTIONS(392), [sym__heading_begin] = ACTIONS(368), [sym__div_begin] = ACTIONS(17), [sym__code_block_begin] = ACTIONS(370), @@ -7920,94 +8049,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__table_row_begin] = ACTIONS(382), [sym__block_attribute_begin] = ACTIONS(384), }, - [26] = { - [sym__block_with_heading] = STATE(1020), - [sym__block_element] = STATE(1020), - [sym_heading] = STATE(1020), - [sym_list] = STATE(1020), - [sym__list_dash] = STATE(1008), - [sym__list_item_dash] = STATE(645), - [sym__list_plus] = STATE(1008), - [sym__list_item_plus] = STATE(661), - [sym__list_star] = STATE(1008), - [sym__list_item_star] = STATE(573), - [sym__list_task] = STATE(1008), - [sym__list_item_task] = STATE(590), + [27] = { + [sym__block_with_heading] = STATE(959), + [sym__block_element] = STATE(959), + [sym_heading] = STATE(959), + [sym_list] = STATE(959), + [sym__list_dash] = STATE(1007), + [sym__list_item_dash] = STATE(595), + [sym__list_plus] = STATE(1007), + [sym__list_item_plus] = STATE(657), + [sym__list_star] = STATE(1007), + [sym__list_item_star] = STATE(570), + [sym__list_task] = STATE(1007), + [sym__list_item_task] = STATE(586), [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(1008), - [sym__list_item_definition] = STATE(740), - [sym__list_decimal_period] = STATE(1008), - [sym__list_item_decimal_period] = STATE(743), - [sym__list_decimal_paren] = STATE(1008), - [sym__list_item_decimal_paren] = STATE(748), - [sym__list_decimal_parens] = STATE(1008), - [sym__list_item_decimal_parens] = STATE(768), - [sym__list_lower_alpha_period] = STATE(1008), - [sym__list_item_lower_alpha_period] = STATE(769), - [sym__list_lower_alpha_paren] = STATE(1008), - [sym__list_item_lower_alpha_paren] = STATE(773), - [sym__list_lower_alpha_parens] = STATE(1008), - [sym__list_item_lower_alpha_parens] = STATE(774), - [sym__list_upper_alpha_period] = STATE(1008), - [sym__list_item_upper_alpha_period] = STATE(782), - [sym__list_upper_alpha_paren] = STATE(1008), - [sym__list_item_upper_alpha_paren] = STATE(783), - [sym__list_upper_alpha_parens] = STATE(1008), - [sym__list_item_upper_alpha_parens] = STATE(786), - [sym__list_lower_roman_period] = STATE(1008), - [sym__list_item_lower_roman_period] = STATE(787), - [sym__list_lower_roman_paren] = STATE(1008), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(1008), - [sym__list_item_lower_roman_parens] = STATE(803), - [sym__list_upper_roman_period] = STATE(1008), - [sym__list_item_upper_roman_period] = STATE(808), - [sym__list_upper_roman_paren] = STATE(1008), - [sym__list_item_upper_roman_paren] = STATE(814), - [sym__list_upper_roman_parens] = STATE(1008), - [sym__list_item_upper_roman_parens] = STATE(819), - [sym_list_item_content] = STATE(592), - [sym_table] = STATE(1020), + [sym__list_definition] = STATE(1007), + [sym__list_item_definition] = STATE(694), + [sym__list_decimal_period] = STATE(1007), + [sym__list_item_decimal_period] = STATE(714), + [sym__list_decimal_paren] = STATE(1007), + [sym__list_item_decimal_paren] = STATE(719), + [sym__list_decimal_parens] = STATE(1007), + [sym__list_item_decimal_parens] = STATE(746), + [sym__list_lower_alpha_period] = STATE(1007), + [sym__list_item_lower_alpha_period] = STATE(748), + [sym__list_lower_alpha_paren] = STATE(1007), + [sym__list_item_lower_alpha_paren] = STATE(749), + [sym__list_lower_alpha_parens] = STATE(1007), + [sym__list_item_lower_alpha_parens] = STATE(753), + [sym__list_upper_alpha_period] = STATE(1007), + [sym__list_item_upper_alpha_period] = STATE(761), + [sym__list_upper_alpha_paren] = STATE(1007), + [sym__list_item_upper_alpha_paren] = STATE(764), + [sym__list_upper_alpha_parens] = STATE(1007), + [sym__list_item_upper_alpha_parens] = STATE(765), + [sym__list_lower_roman_period] = STATE(1007), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(1007), + [sym__list_item_lower_roman_paren] = STATE(769), + [sym__list_lower_roman_parens] = STATE(1007), + [sym__list_item_lower_roman_parens] = STATE(786), + [sym__list_upper_roman_period] = STATE(1007), + [sym__list_item_upper_roman_period] = STATE(791), + [sym__list_upper_roman_paren] = STATE(1007), + [sym__list_item_upper_roman_paren] = STATE(793), + [sym__list_upper_roman_parens] = STATE(1007), + [sym__list_item_upper_roman_parens] = STATE(799), + [sym_list_item_content] = STATE(571), + [sym_table] = STATE(959), [sym__table_row] = STATE(234), [sym_table_header] = STATE(234), [sym_table_separator] = STATE(234), [sym_table_row] = STATE(234), - [sym_footnote] = STATE(1020), - [sym_footnote_marker_begin] = STATE(1136), - [sym_div] = STATE(1020), - [sym__div_marker_begin] = STATE(1018), - [sym_code_block] = STATE(1020), - [sym_raw_block] = STATE(1020), - [sym_thematic_break] = STATE(1020), - [sym_block_quote] = STATE(1020), + [sym_footnote] = STATE(959), + [sym_footnote_marker_begin] = STATE(1135), + [sym_div] = STATE(959), + [sym__div_marker_begin] = STATE(1017), + [sym_code_block] = STATE(959), + [sym_raw_block] = STATE(959), + [sym_thematic_break] = STATE(959), + [sym_block_quote] = STATE(959), [sym__block_quote_prefix] = STATE(225), - [sym_link_reference_definition] = STATE(1020), - [sym_block_attribute] = STATE(1020), - [sym__paragraph] = STATE(1020), - [sym__paragraph_content] = STATE(724), - [sym__paragraph_inline_content] = STATE(837), - [sym__inline] = STATE(656), + [sym_link_reference_definition] = STATE(959), + [sym_block_attribute] = STATE(959), + [sym__paragraph] = STATE(959), + [sym__paragraph_content] = STATE(690), + [sym__paragraph_inline_content] = STATE(824), + [sym__inline] = STATE(654), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(318), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_star_repeat1] = STATE(320), - [aux_sym__list_task_repeat1] = STATE(287), - [aux_sym__list_definition_repeat1] = STATE(459), - [aux_sym__list_decimal_period_repeat1] = STATE(460), - [aux_sym__list_decimal_paren_repeat1] = STATE(461), - [aux_sym__list_decimal_parens_repeat1] = STATE(462), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(463), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(464), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(465), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(466), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(467), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(468), - [aux_sym__list_lower_roman_period_repeat1] = STATE(469), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(470), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(471), - [aux_sym__list_upper_roman_period_repeat1] = STATE(472), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(473), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym__list_dash_repeat1] = STATE(316), + [aux_sym__list_plus_repeat1] = STATE(336), + [aux_sym__list_star_repeat1] = STATE(318), + [aux_sym__list_task_repeat1] = STATE(288), + [aux_sym__list_definition_repeat1] = STATE(456), + [aux_sym__list_decimal_period_repeat1] = STATE(457), + [aux_sym__list_decimal_paren_repeat1] = STATE(458), + [aux_sym__list_decimal_parens_repeat1] = STATE(459), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(460), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(461), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(462), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(463), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(464), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(465), + [aux_sym__list_lower_roman_period_repeat1] = STATE(466), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(467), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(468), + [aux_sym__list_upper_roman_period_repeat1] = STATE(469), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(470), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(471), [aux_sym_table_repeat1] = STATE(234), [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), @@ -8018,7 +8147,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_token1] = ACTIONS(9), [anon_sym_LBRACE] = ACTIONS(9), [anon_sym_PERCENT] = ACTIONS(9), - [sym__newline] = ACTIONS(392), + [sym__newline] = ACTIONS(390), [sym__heading_begin] = ACTIONS(368), [sym__div_begin] = ACTIONS(17), [sym__code_block_begin] = ACTIONS(370), @@ -8051,94 +8180,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__table_row_begin] = ACTIONS(382), [sym__block_attribute_begin] = ACTIONS(384), }, - [27] = { - [sym__block_with_heading] = STATE(898), - [sym__block_element] = STATE(898), - [sym_heading] = STATE(898), - [sym_list] = STATE(898), - [sym__list_dash] = STATE(1008), - [sym__list_item_dash] = STATE(645), - [sym__list_plus] = STATE(1008), - [sym__list_item_plus] = STATE(661), - [sym__list_star] = STATE(1008), - [sym__list_item_star] = STATE(573), - [sym__list_task] = STATE(1008), - [sym__list_item_task] = STATE(590), + [28] = { + [sym__block_with_heading] = STATE(1102), + [sym__block_element] = STATE(1102), + [sym_heading] = STATE(1102), + [sym_list] = STATE(1102), + [sym__list_dash] = STATE(1007), + [sym__list_item_dash] = STATE(595), + [sym__list_plus] = STATE(1007), + [sym__list_item_plus] = STATE(657), + [sym__list_star] = STATE(1007), + [sym__list_item_star] = STATE(570), + [sym__list_task] = STATE(1007), + [sym__list_item_task] = STATE(586), [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(1008), - [sym__list_item_definition] = STATE(740), - [sym__list_decimal_period] = STATE(1008), - [sym__list_item_decimal_period] = STATE(743), - [sym__list_decimal_paren] = STATE(1008), - [sym__list_item_decimal_paren] = STATE(748), - [sym__list_decimal_parens] = STATE(1008), - [sym__list_item_decimal_parens] = STATE(768), - [sym__list_lower_alpha_period] = STATE(1008), - [sym__list_item_lower_alpha_period] = STATE(769), - [sym__list_lower_alpha_paren] = STATE(1008), - [sym__list_item_lower_alpha_paren] = STATE(773), - [sym__list_lower_alpha_parens] = STATE(1008), - [sym__list_item_lower_alpha_parens] = STATE(774), - [sym__list_upper_alpha_period] = STATE(1008), - [sym__list_item_upper_alpha_period] = STATE(782), - [sym__list_upper_alpha_paren] = STATE(1008), - [sym__list_item_upper_alpha_paren] = STATE(783), - [sym__list_upper_alpha_parens] = STATE(1008), - [sym__list_item_upper_alpha_parens] = STATE(786), - [sym__list_lower_roman_period] = STATE(1008), - [sym__list_item_lower_roman_period] = STATE(787), - [sym__list_lower_roman_paren] = STATE(1008), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(1008), - [sym__list_item_lower_roman_parens] = STATE(803), - [sym__list_upper_roman_period] = STATE(1008), - [sym__list_item_upper_roman_period] = STATE(808), - [sym__list_upper_roman_paren] = STATE(1008), - [sym__list_item_upper_roman_paren] = STATE(814), - [sym__list_upper_roman_parens] = STATE(1008), - [sym__list_item_upper_roman_parens] = STATE(819), - [sym_list_item_content] = STATE(574), - [sym_table] = STATE(898), + [sym__list_definition] = STATE(1007), + [sym__list_item_definition] = STATE(694), + [sym__list_decimal_period] = STATE(1007), + [sym__list_item_decimal_period] = STATE(714), + [sym__list_decimal_paren] = STATE(1007), + [sym__list_item_decimal_paren] = STATE(719), + [sym__list_decimal_parens] = STATE(1007), + [sym__list_item_decimal_parens] = STATE(746), + [sym__list_lower_alpha_period] = STATE(1007), + [sym__list_item_lower_alpha_period] = STATE(748), + [sym__list_lower_alpha_paren] = STATE(1007), + [sym__list_item_lower_alpha_paren] = STATE(749), + [sym__list_lower_alpha_parens] = STATE(1007), + [sym__list_item_lower_alpha_parens] = STATE(753), + [sym__list_upper_alpha_period] = STATE(1007), + [sym__list_item_upper_alpha_period] = STATE(761), + [sym__list_upper_alpha_paren] = STATE(1007), + [sym__list_item_upper_alpha_paren] = STATE(764), + [sym__list_upper_alpha_parens] = STATE(1007), + [sym__list_item_upper_alpha_parens] = STATE(765), + [sym__list_lower_roman_period] = STATE(1007), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(1007), + [sym__list_item_lower_roman_paren] = STATE(769), + [sym__list_lower_roman_parens] = STATE(1007), + [sym__list_item_lower_roman_parens] = STATE(786), + [sym__list_upper_roman_period] = STATE(1007), + [sym__list_item_upper_roman_period] = STATE(791), + [sym__list_upper_roman_paren] = STATE(1007), + [sym__list_item_upper_roman_paren] = STATE(793), + [sym__list_upper_roman_parens] = STATE(1007), + [sym__list_item_upper_roman_parens] = STATE(799), + [sym_list_item_content] = STATE(591), + [sym_table] = STATE(1102), [sym__table_row] = STATE(234), [sym_table_header] = STATE(234), [sym_table_separator] = STATE(234), [sym_table_row] = STATE(234), - [sym_footnote] = STATE(898), - [sym_footnote_marker_begin] = STATE(1136), - [sym_div] = STATE(898), - [sym__div_marker_begin] = STATE(1018), - [sym_code_block] = STATE(898), - [sym_raw_block] = STATE(898), - [sym_thematic_break] = STATE(898), - [sym_block_quote] = STATE(898), + [sym_footnote] = STATE(1102), + [sym_footnote_marker_begin] = STATE(1135), + [sym_div] = STATE(1102), + [sym__div_marker_begin] = STATE(1017), + [sym_code_block] = STATE(1102), + [sym_raw_block] = STATE(1102), + [sym_thematic_break] = STATE(1102), + [sym_block_quote] = STATE(1102), [sym__block_quote_prefix] = STATE(225), - [sym_link_reference_definition] = STATE(898), - [sym_block_attribute] = STATE(898), - [sym__paragraph] = STATE(898), - [sym__paragraph_content] = STATE(724), - [sym__paragraph_inline_content] = STATE(837), - [sym__inline] = STATE(656), + [sym_link_reference_definition] = STATE(1102), + [sym_block_attribute] = STATE(1102), + [sym__paragraph] = STATE(1102), + [sym__paragraph_content] = STATE(690), + [sym__paragraph_inline_content] = STATE(824), + [sym__inline] = STATE(654), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(318), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_star_repeat1] = STATE(320), - [aux_sym__list_task_repeat1] = STATE(287), - [aux_sym__list_definition_repeat1] = STATE(459), - [aux_sym__list_decimal_period_repeat1] = STATE(460), - [aux_sym__list_decimal_paren_repeat1] = STATE(461), - [aux_sym__list_decimal_parens_repeat1] = STATE(462), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(463), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(464), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(465), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(466), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(467), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(468), - [aux_sym__list_lower_roman_period_repeat1] = STATE(469), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(470), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(471), - [aux_sym__list_upper_roman_period_repeat1] = STATE(472), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(473), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym__list_dash_repeat1] = STATE(316), + [aux_sym__list_plus_repeat1] = STATE(336), + [aux_sym__list_star_repeat1] = STATE(318), + [aux_sym__list_task_repeat1] = STATE(288), + [aux_sym__list_definition_repeat1] = STATE(456), + [aux_sym__list_decimal_period_repeat1] = STATE(457), + [aux_sym__list_decimal_paren_repeat1] = STATE(458), + [aux_sym__list_decimal_parens_repeat1] = STATE(459), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(460), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(461), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(462), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(463), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(464), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(465), + [aux_sym__list_lower_roman_period_repeat1] = STATE(466), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(467), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(468), + [aux_sym__list_upper_roman_period_repeat1] = STATE(469), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(470), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(471), [aux_sym_table_repeat1] = STATE(234), [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), @@ -8149,7 +8278,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_token1] = ACTIONS(9), [anon_sym_LBRACE] = ACTIONS(9), [anon_sym_PERCENT] = ACTIONS(9), - [sym__newline] = ACTIONS(390), + [sym__newline] = ACTIONS(394), [sym__heading_begin] = ACTIONS(368), [sym__div_begin] = ACTIONS(17), [sym__code_block_begin] = ACTIONS(370), @@ -8182,94 +8311,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__table_row_begin] = ACTIONS(382), [sym__block_attribute_begin] = ACTIONS(384), }, - [28] = { - [sym__block_with_heading] = STATE(1103), - [sym__block_element] = STATE(1103), - [sym_heading] = STATE(1103), - [sym_list] = STATE(1103), - [sym__list_dash] = STATE(1008), - [sym__list_item_dash] = STATE(645), - [sym__list_plus] = STATE(1008), - [sym__list_item_plus] = STATE(661), - [sym__list_star] = STATE(1008), - [sym__list_item_star] = STATE(573), - [sym__list_task] = STATE(1008), - [sym__list_item_task] = STATE(590), + [29] = { + [sym__block_with_heading] = STATE(1093), + [sym__block_element] = STATE(1093), + [sym_heading] = STATE(1093), + [sym_list] = STATE(1093), + [sym__list_dash] = STATE(1007), + [sym__list_item_dash] = STATE(595), + [sym__list_plus] = STATE(1007), + [sym__list_item_plus] = STATE(657), + [sym__list_star] = STATE(1007), + [sym__list_item_star] = STATE(570), + [sym__list_task] = STATE(1007), + [sym__list_item_task] = STATE(586), [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(1008), - [sym__list_item_definition] = STATE(740), - [sym__list_decimal_period] = STATE(1008), - [sym__list_item_decimal_period] = STATE(743), - [sym__list_decimal_paren] = STATE(1008), - [sym__list_item_decimal_paren] = STATE(748), - [sym__list_decimal_parens] = STATE(1008), - [sym__list_item_decimal_parens] = STATE(768), - [sym__list_lower_alpha_period] = STATE(1008), - [sym__list_item_lower_alpha_period] = STATE(769), - [sym__list_lower_alpha_paren] = STATE(1008), - [sym__list_item_lower_alpha_paren] = STATE(773), - [sym__list_lower_alpha_parens] = STATE(1008), - [sym__list_item_lower_alpha_parens] = STATE(774), - [sym__list_upper_alpha_period] = STATE(1008), - [sym__list_item_upper_alpha_period] = STATE(782), - [sym__list_upper_alpha_paren] = STATE(1008), - [sym__list_item_upper_alpha_paren] = STATE(783), - [sym__list_upper_alpha_parens] = STATE(1008), - [sym__list_item_upper_alpha_parens] = STATE(786), - [sym__list_lower_roman_period] = STATE(1008), - [sym__list_item_lower_roman_period] = STATE(787), - [sym__list_lower_roman_paren] = STATE(1008), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(1008), - [sym__list_item_lower_roman_parens] = STATE(803), - [sym__list_upper_roman_period] = STATE(1008), - [sym__list_item_upper_roman_period] = STATE(808), - [sym__list_upper_roman_paren] = STATE(1008), - [sym__list_item_upper_roman_paren] = STATE(814), - [sym__list_upper_roman_parens] = STATE(1008), - [sym__list_item_upper_roman_parens] = STATE(819), - [sym_list_item_content] = STATE(594), - [sym_table] = STATE(1103), + [sym__list_definition] = STATE(1007), + [sym__list_item_definition] = STATE(694), + [sym__list_decimal_period] = STATE(1007), + [sym__list_item_decimal_period] = STATE(714), + [sym__list_decimal_paren] = STATE(1007), + [sym__list_item_decimal_paren] = STATE(719), + [sym__list_decimal_parens] = STATE(1007), + [sym__list_item_decimal_parens] = STATE(746), + [sym__list_lower_alpha_period] = STATE(1007), + [sym__list_item_lower_alpha_period] = STATE(748), + [sym__list_lower_alpha_paren] = STATE(1007), + [sym__list_item_lower_alpha_paren] = STATE(749), + [sym__list_lower_alpha_parens] = STATE(1007), + [sym__list_item_lower_alpha_parens] = STATE(753), + [sym__list_upper_alpha_period] = STATE(1007), + [sym__list_item_upper_alpha_period] = STATE(761), + [sym__list_upper_alpha_paren] = STATE(1007), + [sym__list_item_upper_alpha_paren] = STATE(764), + [sym__list_upper_alpha_parens] = STATE(1007), + [sym__list_item_upper_alpha_parens] = STATE(765), + [sym__list_lower_roman_period] = STATE(1007), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(1007), + [sym__list_item_lower_roman_paren] = STATE(769), + [sym__list_lower_roman_parens] = STATE(1007), + [sym__list_item_lower_roman_parens] = STATE(786), + [sym__list_upper_roman_period] = STATE(1007), + [sym__list_item_upper_roman_period] = STATE(791), + [sym__list_upper_roman_paren] = STATE(1007), + [sym__list_item_upper_roman_paren] = STATE(793), + [sym__list_upper_roman_parens] = STATE(1007), + [sym__list_item_upper_roman_parens] = STATE(799), + [sym_list_item_content] = STATE(699), + [sym_table] = STATE(1093), [sym__table_row] = STATE(234), [sym_table_header] = STATE(234), [sym_table_separator] = STATE(234), [sym_table_row] = STATE(234), - [sym_footnote] = STATE(1103), - [sym_footnote_marker_begin] = STATE(1136), - [sym_div] = STATE(1103), - [sym__div_marker_begin] = STATE(1018), - [sym_code_block] = STATE(1103), - [sym_raw_block] = STATE(1103), - [sym_thematic_break] = STATE(1103), - [sym_block_quote] = STATE(1103), + [sym_footnote] = STATE(1093), + [sym_footnote_marker_begin] = STATE(1135), + [sym_div] = STATE(1093), + [sym__div_marker_begin] = STATE(1017), + [sym_code_block] = STATE(1093), + [sym_raw_block] = STATE(1093), + [sym_thematic_break] = STATE(1093), + [sym_block_quote] = STATE(1093), [sym__block_quote_prefix] = STATE(225), - [sym_link_reference_definition] = STATE(1103), - [sym_block_attribute] = STATE(1103), - [sym__paragraph] = STATE(1103), - [sym__paragraph_content] = STATE(724), - [sym__paragraph_inline_content] = STATE(837), - [sym__inline] = STATE(656), + [sym_link_reference_definition] = STATE(1093), + [sym_block_attribute] = STATE(1093), + [sym__paragraph] = STATE(1093), + [sym__paragraph_content] = STATE(690), + [sym__paragraph_inline_content] = STATE(824), + [sym__inline] = STATE(654), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(318), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_star_repeat1] = STATE(320), - [aux_sym__list_task_repeat1] = STATE(287), - [aux_sym__list_definition_repeat1] = STATE(459), - [aux_sym__list_decimal_period_repeat1] = STATE(460), - [aux_sym__list_decimal_paren_repeat1] = STATE(461), - [aux_sym__list_decimal_parens_repeat1] = STATE(462), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(463), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(464), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(465), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(466), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(467), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(468), - [aux_sym__list_lower_roman_period_repeat1] = STATE(469), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(470), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(471), - [aux_sym__list_upper_roman_period_repeat1] = STATE(472), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(473), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym__list_dash_repeat1] = STATE(316), + [aux_sym__list_plus_repeat1] = STATE(336), + [aux_sym__list_star_repeat1] = STATE(318), + [aux_sym__list_task_repeat1] = STATE(288), + [aux_sym__list_definition_repeat1] = STATE(456), + [aux_sym__list_decimal_period_repeat1] = STATE(457), + [aux_sym__list_decimal_paren_repeat1] = STATE(458), + [aux_sym__list_decimal_parens_repeat1] = STATE(459), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(460), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(461), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(462), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(463), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(464), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(465), + [aux_sym__list_lower_roman_period_repeat1] = STATE(466), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(467), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(468), + [aux_sym__list_upper_roman_period_repeat1] = STATE(469), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(470), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(471), [aux_sym_table_repeat1] = STATE(234), [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), @@ -8280,7 +8409,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_token1] = ACTIONS(9), [anon_sym_LBRACE] = ACTIONS(9), [anon_sym_PERCENT] = ACTIONS(9), - [sym__newline] = ACTIONS(394), + [sym__newline] = ACTIONS(396), [sym__heading_begin] = ACTIONS(368), [sym__div_begin] = ACTIONS(17), [sym__code_block_begin] = ACTIONS(370), @@ -8313,62 +8442,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__table_row_begin] = ACTIONS(382), [sym__block_attribute_begin] = ACTIONS(384), }, - [29] = { + [30] = { [sym__block_with_heading] = STATE(1094), [sym__block_element] = STATE(1094), [sym_heading] = STATE(1094), [sym_list] = STATE(1094), - [sym__list_dash] = STATE(1008), - [sym__list_item_dash] = STATE(645), - [sym__list_plus] = STATE(1008), - [sym__list_item_plus] = STATE(661), - [sym__list_star] = STATE(1008), - [sym__list_item_star] = STATE(573), - [sym__list_task] = STATE(1008), - [sym__list_item_task] = STATE(590), + [sym__list_dash] = STATE(1007), + [sym__list_item_dash] = STATE(595), + [sym__list_plus] = STATE(1007), + [sym__list_item_plus] = STATE(657), + [sym__list_star] = STATE(1007), + [sym__list_item_star] = STATE(570), + [sym__list_task] = STATE(1007), + [sym__list_item_task] = STATE(586), [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(1008), - [sym__list_item_definition] = STATE(740), - [sym__list_decimal_period] = STATE(1008), - [sym__list_item_decimal_period] = STATE(743), - [sym__list_decimal_paren] = STATE(1008), - [sym__list_item_decimal_paren] = STATE(748), - [sym__list_decimal_parens] = STATE(1008), - [sym__list_item_decimal_parens] = STATE(768), - [sym__list_lower_alpha_period] = STATE(1008), - [sym__list_item_lower_alpha_period] = STATE(769), - [sym__list_lower_alpha_paren] = STATE(1008), - [sym__list_item_lower_alpha_paren] = STATE(773), - [sym__list_lower_alpha_parens] = STATE(1008), - [sym__list_item_lower_alpha_parens] = STATE(774), - [sym__list_upper_alpha_period] = STATE(1008), - [sym__list_item_upper_alpha_period] = STATE(782), - [sym__list_upper_alpha_paren] = STATE(1008), - [sym__list_item_upper_alpha_paren] = STATE(783), - [sym__list_upper_alpha_parens] = STATE(1008), - [sym__list_item_upper_alpha_parens] = STATE(786), - [sym__list_lower_roman_period] = STATE(1008), - [sym__list_item_lower_roman_period] = STATE(787), - [sym__list_lower_roman_paren] = STATE(1008), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(1008), - [sym__list_item_lower_roman_parens] = STATE(803), - [sym__list_upper_roman_period] = STATE(1008), - [sym__list_item_upper_roman_period] = STATE(808), - [sym__list_upper_roman_paren] = STATE(1008), - [sym__list_item_upper_roman_paren] = STATE(814), - [sym__list_upper_roman_parens] = STATE(1008), - [sym__list_item_upper_roman_parens] = STATE(819), - [sym_list_item_content] = STATE(776), + [sym__list_definition] = STATE(1007), + [sym__list_item_definition] = STATE(694), + [sym__list_decimal_period] = STATE(1007), + [sym__list_item_decimal_period] = STATE(714), + [sym__list_decimal_paren] = STATE(1007), + [sym__list_item_decimal_paren] = STATE(719), + [sym__list_decimal_parens] = STATE(1007), + [sym__list_item_decimal_parens] = STATE(746), + [sym__list_lower_alpha_period] = STATE(1007), + [sym__list_item_lower_alpha_period] = STATE(748), + [sym__list_lower_alpha_paren] = STATE(1007), + [sym__list_item_lower_alpha_paren] = STATE(749), + [sym__list_lower_alpha_parens] = STATE(1007), + [sym__list_item_lower_alpha_parens] = STATE(753), + [sym__list_upper_alpha_period] = STATE(1007), + [sym__list_item_upper_alpha_period] = STATE(761), + [sym__list_upper_alpha_paren] = STATE(1007), + [sym__list_item_upper_alpha_paren] = STATE(764), + [sym__list_upper_alpha_parens] = STATE(1007), + [sym__list_item_upper_alpha_parens] = STATE(765), + [sym__list_lower_roman_period] = STATE(1007), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(1007), + [sym__list_item_lower_roman_paren] = STATE(769), + [sym__list_lower_roman_parens] = STATE(1007), + [sym__list_item_lower_roman_parens] = STATE(786), + [sym__list_upper_roman_period] = STATE(1007), + [sym__list_item_upper_roman_period] = STATE(791), + [sym__list_upper_roman_paren] = STATE(1007), + [sym__list_item_upper_roman_paren] = STATE(793), + [sym__list_upper_roman_parens] = STATE(1007), + [sym__list_item_upper_roman_parens] = STATE(799), + [sym_list_item_content] = STATE(700), [sym_table] = STATE(1094), [sym__table_row] = STATE(234), [sym_table_header] = STATE(234), [sym_table_separator] = STATE(234), [sym_table_row] = STATE(234), [sym_footnote] = STATE(1094), - [sym_footnote_marker_begin] = STATE(1136), + [sym_footnote_marker_begin] = STATE(1135), [sym_div] = STATE(1094), - [sym__div_marker_begin] = STATE(1018), + [sym__div_marker_begin] = STATE(1017), [sym_code_block] = STATE(1094), [sym_raw_block] = STATE(1094), [sym_thematic_break] = STATE(1094), @@ -8377,30 +8506,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_link_reference_definition] = STATE(1094), [sym_block_attribute] = STATE(1094), [sym__paragraph] = STATE(1094), - [sym__paragraph_content] = STATE(724), - [sym__paragraph_inline_content] = STATE(837), - [sym__inline] = STATE(656), + [sym__paragraph_content] = STATE(690), + [sym__paragraph_inline_content] = STATE(824), + [sym__inline] = STATE(654), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(318), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_star_repeat1] = STATE(320), - [aux_sym__list_task_repeat1] = STATE(287), - [aux_sym__list_definition_repeat1] = STATE(459), - [aux_sym__list_decimal_period_repeat1] = STATE(460), - [aux_sym__list_decimal_paren_repeat1] = STATE(461), - [aux_sym__list_decimal_parens_repeat1] = STATE(462), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(463), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(464), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(465), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(466), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(467), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(468), - [aux_sym__list_lower_roman_period_repeat1] = STATE(469), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(470), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(471), - [aux_sym__list_upper_roman_period_repeat1] = STATE(472), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(473), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym__list_dash_repeat1] = STATE(316), + [aux_sym__list_plus_repeat1] = STATE(336), + [aux_sym__list_star_repeat1] = STATE(318), + [aux_sym__list_task_repeat1] = STATE(288), + [aux_sym__list_definition_repeat1] = STATE(456), + [aux_sym__list_decimal_period_repeat1] = STATE(457), + [aux_sym__list_decimal_paren_repeat1] = STATE(458), + [aux_sym__list_decimal_parens_repeat1] = STATE(459), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(460), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(461), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(462), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(463), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(464), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(465), + [aux_sym__list_lower_roman_period_repeat1] = STATE(466), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(467), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(468), + [aux_sym__list_upper_roman_period_repeat1] = STATE(469), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(470), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(471), [aux_sym_table_repeat1] = STATE(234), [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), @@ -8411,7 +8540,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_token1] = ACTIONS(9), [anon_sym_LBRACE] = ACTIONS(9), [anon_sym_PERCENT] = ACTIONS(9), - [sym__newline] = ACTIONS(396), + [sym__newline] = ACTIONS(398), [sym__heading_begin] = ACTIONS(368), [sym__div_begin] = ACTIONS(17), [sym__code_block_begin] = ACTIONS(370), @@ -8444,62 +8573,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__table_row_begin] = ACTIONS(382), [sym__block_attribute_begin] = ACTIONS(384), }, - [30] = { + [31] = { [sym__block_with_heading] = STATE(1095), [sym__block_element] = STATE(1095), [sym_heading] = STATE(1095), [sym_list] = STATE(1095), - [sym__list_dash] = STATE(1008), - [sym__list_item_dash] = STATE(645), - [sym__list_plus] = STATE(1008), - [sym__list_item_plus] = STATE(661), - [sym__list_star] = STATE(1008), - [sym__list_item_star] = STATE(573), - [sym__list_task] = STATE(1008), - [sym__list_item_task] = STATE(590), + [sym__list_dash] = STATE(1007), + [sym__list_item_dash] = STATE(595), + [sym__list_plus] = STATE(1007), + [sym__list_item_plus] = STATE(657), + [sym__list_star] = STATE(1007), + [sym__list_item_star] = STATE(570), + [sym__list_task] = STATE(1007), + [sym__list_item_task] = STATE(586), [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(1008), - [sym__list_item_definition] = STATE(740), - [sym__list_decimal_period] = STATE(1008), - [sym__list_item_decimal_period] = STATE(743), - [sym__list_decimal_paren] = STATE(1008), - [sym__list_item_decimal_paren] = STATE(748), - [sym__list_decimal_parens] = STATE(1008), - [sym__list_item_decimal_parens] = STATE(768), - [sym__list_lower_alpha_period] = STATE(1008), - [sym__list_item_lower_alpha_period] = STATE(769), - [sym__list_lower_alpha_paren] = STATE(1008), - [sym__list_item_lower_alpha_paren] = STATE(773), - [sym__list_lower_alpha_parens] = STATE(1008), - [sym__list_item_lower_alpha_parens] = STATE(774), - [sym__list_upper_alpha_period] = STATE(1008), - [sym__list_item_upper_alpha_period] = STATE(782), - [sym__list_upper_alpha_paren] = STATE(1008), - [sym__list_item_upper_alpha_paren] = STATE(783), - [sym__list_upper_alpha_parens] = STATE(1008), - [sym__list_item_upper_alpha_parens] = STATE(786), - [sym__list_lower_roman_period] = STATE(1008), - [sym__list_item_lower_roman_period] = STATE(787), - [sym__list_lower_roman_paren] = STATE(1008), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(1008), - [sym__list_item_lower_roman_parens] = STATE(803), - [sym__list_upper_roman_period] = STATE(1008), - [sym__list_item_upper_roman_period] = STATE(808), - [sym__list_upper_roman_paren] = STATE(1008), - [sym__list_item_upper_roman_paren] = STATE(814), - [sym__list_upper_roman_parens] = STATE(1008), - [sym__list_item_upper_roman_parens] = STATE(819), - [sym_list_item_content] = STATE(789), + [sym__list_definition] = STATE(1007), + [sym__list_item_definition] = STATE(694), + [sym__list_decimal_period] = STATE(1007), + [sym__list_item_decimal_period] = STATE(714), + [sym__list_decimal_paren] = STATE(1007), + [sym__list_item_decimal_paren] = STATE(719), + [sym__list_decimal_parens] = STATE(1007), + [sym__list_item_decimal_parens] = STATE(746), + [sym__list_lower_alpha_period] = STATE(1007), + [sym__list_item_lower_alpha_period] = STATE(748), + [sym__list_lower_alpha_paren] = STATE(1007), + [sym__list_item_lower_alpha_paren] = STATE(749), + [sym__list_lower_alpha_parens] = STATE(1007), + [sym__list_item_lower_alpha_parens] = STATE(753), + [sym__list_upper_alpha_period] = STATE(1007), + [sym__list_item_upper_alpha_period] = STATE(761), + [sym__list_upper_alpha_paren] = STATE(1007), + [sym__list_item_upper_alpha_paren] = STATE(764), + [sym__list_upper_alpha_parens] = STATE(1007), + [sym__list_item_upper_alpha_parens] = STATE(765), + [sym__list_lower_roman_period] = STATE(1007), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(1007), + [sym__list_item_lower_roman_paren] = STATE(769), + [sym__list_lower_roman_parens] = STATE(1007), + [sym__list_item_lower_roman_parens] = STATE(786), + [sym__list_upper_roman_period] = STATE(1007), + [sym__list_item_upper_roman_period] = STATE(791), + [sym__list_upper_roman_paren] = STATE(1007), + [sym__list_item_upper_roman_paren] = STATE(793), + [sym__list_upper_roman_parens] = STATE(1007), + [sym__list_item_upper_roman_parens] = STATE(799), + [sym_list_item_content] = STATE(703), [sym_table] = STATE(1095), [sym__table_row] = STATE(234), [sym_table_header] = STATE(234), [sym_table_separator] = STATE(234), [sym_table_row] = STATE(234), [sym_footnote] = STATE(1095), - [sym_footnote_marker_begin] = STATE(1136), + [sym_footnote_marker_begin] = STATE(1135), [sym_div] = STATE(1095), - [sym__div_marker_begin] = STATE(1018), + [sym__div_marker_begin] = STATE(1017), [sym_code_block] = STATE(1095), [sym_raw_block] = STATE(1095), [sym_thematic_break] = STATE(1095), @@ -8508,30 +8637,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_link_reference_definition] = STATE(1095), [sym_block_attribute] = STATE(1095), [sym__paragraph] = STATE(1095), - [sym__paragraph_content] = STATE(724), - [sym__paragraph_inline_content] = STATE(837), - [sym__inline] = STATE(656), + [sym__paragraph_content] = STATE(690), + [sym__paragraph_inline_content] = STATE(824), + [sym__inline] = STATE(654), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(318), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_star_repeat1] = STATE(320), - [aux_sym__list_task_repeat1] = STATE(287), - [aux_sym__list_definition_repeat1] = STATE(459), - [aux_sym__list_decimal_period_repeat1] = STATE(460), - [aux_sym__list_decimal_paren_repeat1] = STATE(461), - [aux_sym__list_decimal_parens_repeat1] = STATE(462), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(463), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(464), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(465), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(466), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(467), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(468), - [aux_sym__list_lower_roman_period_repeat1] = STATE(469), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(470), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(471), - [aux_sym__list_upper_roman_period_repeat1] = STATE(472), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(473), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym__list_dash_repeat1] = STATE(316), + [aux_sym__list_plus_repeat1] = STATE(336), + [aux_sym__list_star_repeat1] = STATE(318), + [aux_sym__list_task_repeat1] = STATE(288), + [aux_sym__list_definition_repeat1] = STATE(456), + [aux_sym__list_decimal_period_repeat1] = STATE(457), + [aux_sym__list_decimal_paren_repeat1] = STATE(458), + [aux_sym__list_decimal_parens_repeat1] = STATE(459), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(460), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(461), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(462), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(463), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(464), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(465), + [aux_sym__list_lower_roman_period_repeat1] = STATE(466), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(467), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(468), + [aux_sym__list_upper_roman_period_repeat1] = STATE(469), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(470), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(471), [aux_sym_table_repeat1] = STATE(234), [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), @@ -8542,7 +8671,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_token1] = ACTIONS(9), [anon_sym_LBRACE] = ACTIONS(9), [anon_sym_PERCENT] = ACTIONS(9), - [sym__newline] = ACTIONS(398), + [sym__newline] = ACTIONS(400), [sym__heading_begin] = ACTIONS(368), [sym__div_begin] = ACTIONS(17), [sym__code_block_begin] = ACTIONS(370), @@ -8575,94 +8704,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__table_row_begin] = ACTIONS(382), [sym__block_attribute_begin] = ACTIONS(384), }, - [31] = { - [sym__block_with_heading] = STATE(1096), - [sym__block_element] = STATE(1096), - [sym_heading] = STATE(1096), - [sym_list] = STATE(1096), - [sym__list_dash] = STATE(1008), - [sym__list_item_dash] = STATE(645), - [sym__list_plus] = STATE(1008), - [sym__list_item_plus] = STATE(661), - [sym__list_star] = STATE(1008), - [sym__list_item_star] = STATE(573), - [sym__list_task] = STATE(1008), - [sym__list_item_task] = STATE(590), + [32] = { + [sym__block_with_heading] = STATE(952), + [sym__block_element] = STATE(952), + [sym_heading] = STATE(952), + [sym_list] = STATE(952), + [sym__list_dash] = STATE(1007), + [sym__list_item_dash] = STATE(595), + [sym__list_plus] = STATE(1007), + [sym__list_item_plus] = STATE(657), + [sym__list_star] = STATE(1007), + [sym__list_item_star] = STATE(570), + [sym__list_task] = STATE(1007), + [sym__list_item_task] = STATE(586), [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(1008), - [sym__list_item_definition] = STATE(740), - [sym__list_decimal_period] = STATE(1008), - [sym__list_item_decimal_period] = STATE(743), - [sym__list_decimal_paren] = STATE(1008), - [sym__list_item_decimal_paren] = STATE(748), - [sym__list_decimal_parens] = STATE(1008), - [sym__list_item_decimal_parens] = STATE(768), - [sym__list_lower_alpha_period] = STATE(1008), - [sym__list_item_lower_alpha_period] = STATE(769), - [sym__list_lower_alpha_paren] = STATE(1008), - [sym__list_item_lower_alpha_paren] = STATE(773), - [sym__list_lower_alpha_parens] = STATE(1008), - [sym__list_item_lower_alpha_parens] = STATE(774), - [sym__list_upper_alpha_period] = STATE(1008), - [sym__list_item_upper_alpha_period] = STATE(782), - [sym__list_upper_alpha_paren] = STATE(1008), - [sym__list_item_upper_alpha_paren] = STATE(783), - [sym__list_upper_alpha_parens] = STATE(1008), - [sym__list_item_upper_alpha_parens] = STATE(786), - [sym__list_lower_roman_period] = STATE(1008), - [sym__list_item_lower_roman_period] = STATE(787), - [sym__list_lower_roman_paren] = STATE(1008), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(1008), - [sym__list_item_lower_roman_parens] = STATE(803), - [sym__list_upper_roman_period] = STATE(1008), - [sym__list_item_upper_roman_period] = STATE(808), - [sym__list_upper_roman_paren] = STATE(1008), - [sym__list_item_upper_roman_paren] = STATE(814), - [sym__list_upper_roman_parens] = STATE(1008), - [sym__list_item_upper_roman_parens] = STATE(819), - [sym_list_item_content] = STATE(792), - [sym_table] = STATE(1096), + [sym__list_definition] = STATE(1007), + [sym__list_item_definition] = STATE(694), + [sym__list_decimal_period] = STATE(1007), + [sym__list_item_decimal_period] = STATE(714), + [sym__list_decimal_paren] = STATE(1007), + [sym__list_item_decimal_paren] = STATE(719), + [sym__list_decimal_parens] = STATE(1007), + [sym__list_item_decimal_parens] = STATE(746), + [sym__list_lower_alpha_period] = STATE(1007), + [sym__list_item_lower_alpha_period] = STATE(748), + [sym__list_lower_alpha_paren] = STATE(1007), + [sym__list_item_lower_alpha_paren] = STATE(749), + [sym__list_lower_alpha_parens] = STATE(1007), + [sym__list_item_lower_alpha_parens] = STATE(753), + [sym__list_upper_alpha_period] = STATE(1007), + [sym__list_item_upper_alpha_period] = STATE(761), + [sym__list_upper_alpha_paren] = STATE(1007), + [sym__list_item_upper_alpha_paren] = STATE(764), + [sym__list_upper_alpha_parens] = STATE(1007), + [sym__list_item_upper_alpha_parens] = STATE(765), + [sym__list_lower_roman_period] = STATE(1007), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(1007), + [sym__list_item_lower_roman_paren] = STATE(769), + [sym__list_lower_roman_parens] = STATE(1007), + [sym__list_item_lower_roman_parens] = STATE(786), + [sym__list_upper_roman_period] = STATE(1007), + [sym__list_item_upper_roman_period] = STATE(791), + [sym__list_upper_roman_paren] = STATE(1007), + [sym__list_item_upper_roman_paren] = STATE(793), + [sym__list_upper_roman_parens] = STATE(1007), + [sym__list_item_upper_roman_parens] = STATE(799), + [sym_table] = STATE(952), [sym__table_row] = STATE(234), [sym_table_header] = STATE(234), [sym_table_separator] = STATE(234), [sym_table_row] = STATE(234), - [sym_footnote] = STATE(1096), - [sym_footnote_marker_begin] = STATE(1136), - [sym_div] = STATE(1096), - [sym__div_marker_begin] = STATE(1018), - [sym_code_block] = STATE(1096), - [sym_raw_block] = STATE(1096), - [sym_thematic_break] = STATE(1096), - [sym_block_quote] = STATE(1096), + [sym_footnote] = STATE(952), + [sym_footnote_marker_begin] = STATE(1135), + [sym_footnote_content] = STATE(204), + [sym_div] = STATE(952), + [sym__div_marker_begin] = STATE(1017), + [sym_code_block] = STATE(952), + [sym_raw_block] = STATE(952), + [sym_thematic_break] = STATE(952), + [sym_block_quote] = STATE(952), [sym__block_quote_prefix] = STATE(225), - [sym_link_reference_definition] = STATE(1096), - [sym_block_attribute] = STATE(1096), - [sym__paragraph] = STATE(1096), - [sym__paragraph_content] = STATE(724), - [sym__paragraph_inline_content] = STATE(837), - [sym__inline] = STATE(656), + [sym_link_reference_definition] = STATE(952), + [sym_block_attribute] = STATE(952), + [sym__paragraph] = STATE(952), + [sym__paragraph_content] = STATE(690), + [sym__paragraph_inline_content] = STATE(824), + [sym__inline] = STATE(654), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(318), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_star_repeat1] = STATE(320), - [aux_sym__list_task_repeat1] = STATE(287), - [aux_sym__list_definition_repeat1] = STATE(459), - [aux_sym__list_decimal_period_repeat1] = STATE(460), - [aux_sym__list_decimal_paren_repeat1] = STATE(461), - [aux_sym__list_decimal_parens_repeat1] = STATE(462), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(463), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(464), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(465), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(466), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(467), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(468), - [aux_sym__list_lower_roman_period_repeat1] = STATE(469), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(470), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(471), - [aux_sym__list_upper_roman_period_repeat1] = STATE(472), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(473), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym__list_dash_repeat1] = STATE(316), + [aux_sym__list_plus_repeat1] = STATE(336), + [aux_sym__list_star_repeat1] = STATE(318), + [aux_sym__list_task_repeat1] = STATE(288), + [aux_sym__list_definition_repeat1] = STATE(456), + [aux_sym__list_decimal_period_repeat1] = STATE(457), + [aux_sym__list_decimal_paren_repeat1] = STATE(458), + [aux_sym__list_decimal_parens_repeat1] = STATE(459), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(460), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(461), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(462), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(463), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(464), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(465), + [aux_sym__list_lower_roman_period_repeat1] = STATE(466), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(467), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(468), + [aux_sym__list_upper_roman_period_repeat1] = STATE(469), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(470), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(471), [aux_sym_table_repeat1] = STATE(234), [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), @@ -8673,7 +8802,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_token1] = ACTIONS(9), [anon_sym_LBRACE] = ACTIONS(9), [anon_sym_PERCENT] = ACTIONS(9), - [sym__newline] = ACTIONS(400), + [sym__newline] = ACTIONS(402), [sym__heading_begin] = ACTIONS(368), [sym__div_begin] = ACTIONS(17), [sym__code_block_begin] = ACTIONS(370), @@ -8706,94 +8835,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__table_row_begin] = ACTIONS(382), [sym__block_attribute_begin] = ACTIONS(384), }, - [32] = { - [sym__block_with_heading] = STATE(953), - [sym__block_element] = STATE(953), - [sym_heading] = STATE(953), - [sym_list] = STATE(953), - [sym__list_dash] = STATE(1008), - [sym__list_item_dash] = STATE(645), - [sym__list_plus] = STATE(1008), - [sym__list_item_plus] = STATE(661), - [sym__list_star] = STATE(1008), - [sym__list_item_star] = STATE(573), - [sym__list_task] = STATE(1008), - [sym__list_item_task] = STATE(590), + [33] = { + [sym__block_with_heading] = STATE(1096), + [sym__block_element] = STATE(1096), + [sym_heading] = STATE(1096), + [sym_list] = STATE(1096), + [sym__list_dash] = STATE(1007), + [sym__list_item_dash] = STATE(595), + [sym__list_plus] = STATE(1007), + [sym__list_item_plus] = STATE(657), + [sym__list_star] = STATE(1007), + [sym__list_item_star] = STATE(570), + [sym__list_task] = STATE(1007), + [sym__list_item_task] = STATE(586), [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(1008), - [sym__list_item_definition] = STATE(740), - [sym__list_decimal_period] = STATE(1008), - [sym__list_item_decimal_period] = STATE(743), - [sym__list_decimal_paren] = STATE(1008), - [sym__list_item_decimal_paren] = STATE(748), - [sym__list_decimal_parens] = STATE(1008), - [sym__list_item_decimal_parens] = STATE(768), - [sym__list_lower_alpha_period] = STATE(1008), - [sym__list_item_lower_alpha_period] = STATE(769), - [sym__list_lower_alpha_paren] = STATE(1008), - [sym__list_item_lower_alpha_paren] = STATE(773), - [sym__list_lower_alpha_parens] = STATE(1008), - [sym__list_item_lower_alpha_parens] = STATE(774), - [sym__list_upper_alpha_period] = STATE(1008), - [sym__list_item_upper_alpha_period] = STATE(782), - [sym__list_upper_alpha_paren] = STATE(1008), - [sym__list_item_upper_alpha_paren] = STATE(783), - [sym__list_upper_alpha_parens] = STATE(1008), - [sym__list_item_upper_alpha_parens] = STATE(786), - [sym__list_lower_roman_period] = STATE(1008), - [sym__list_item_lower_roman_period] = STATE(787), - [sym__list_lower_roman_paren] = STATE(1008), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(1008), - [sym__list_item_lower_roman_parens] = STATE(803), - [sym__list_upper_roman_period] = STATE(1008), - [sym__list_item_upper_roman_period] = STATE(808), - [sym__list_upper_roman_paren] = STATE(1008), - [sym__list_item_upper_roman_paren] = STATE(814), - [sym__list_upper_roman_parens] = STATE(1008), - [sym__list_item_upper_roman_parens] = STATE(819), - [sym_table] = STATE(953), + [sym__list_definition] = STATE(1007), + [sym__list_item_definition] = STATE(694), + [sym__list_decimal_period] = STATE(1007), + [sym__list_item_decimal_period] = STATE(714), + [sym__list_decimal_paren] = STATE(1007), + [sym__list_item_decimal_paren] = STATE(719), + [sym__list_decimal_parens] = STATE(1007), + [sym__list_item_decimal_parens] = STATE(746), + [sym__list_lower_alpha_period] = STATE(1007), + [sym__list_item_lower_alpha_period] = STATE(748), + [sym__list_lower_alpha_paren] = STATE(1007), + [sym__list_item_lower_alpha_paren] = STATE(749), + [sym__list_lower_alpha_parens] = STATE(1007), + [sym__list_item_lower_alpha_parens] = STATE(753), + [sym__list_upper_alpha_period] = STATE(1007), + [sym__list_item_upper_alpha_period] = STATE(761), + [sym__list_upper_alpha_paren] = STATE(1007), + [sym__list_item_upper_alpha_paren] = STATE(764), + [sym__list_upper_alpha_parens] = STATE(1007), + [sym__list_item_upper_alpha_parens] = STATE(765), + [sym__list_lower_roman_period] = STATE(1007), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(1007), + [sym__list_item_lower_roman_paren] = STATE(769), + [sym__list_lower_roman_parens] = STATE(1007), + [sym__list_item_lower_roman_parens] = STATE(786), + [sym__list_upper_roman_period] = STATE(1007), + [sym__list_item_upper_roman_period] = STATE(791), + [sym__list_upper_roman_paren] = STATE(1007), + [sym__list_item_upper_roman_paren] = STATE(793), + [sym__list_upper_roman_parens] = STATE(1007), + [sym__list_item_upper_roman_parens] = STATE(799), + [sym_list_item_content] = STATE(706), + [sym_table] = STATE(1096), [sym__table_row] = STATE(234), [sym_table_header] = STATE(234), [sym_table_separator] = STATE(234), [sym_table_row] = STATE(234), - [sym_footnote] = STATE(953), - [sym_footnote_marker_begin] = STATE(1136), - [sym_footnote_content] = STATE(204), - [sym_div] = STATE(953), - [sym__div_marker_begin] = STATE(1018), - [sym_code_block] = STATE(953), - [sym_raw_block] = STATE(953), - [sym_thematic_break] = STATE(953), - [sym_block_quote] = STATE(953), + [sym_footnote] = STATE(1096), + [sym_footnote_marker_begin] = STATE(1135), + [sym_div] = STATE(1096), + [sym__div_marker_begin] = STATE(1017), + [sym_code_block] = STATE(1096), + [sym_raw_block] = STATE(1096), + [sym_thematic_break] = STATE(1096), + [sym_block_quote] = STATE(1096), [sym__block_quote_prefix] = STATE(225), - [sym_link_reference_definition] = STATE(953), - [sym_block_attribute] = STATE(953), - [sym__paragraph] = STATE(953), - [sym__paragraph_content] = STATE(724), - [sym__paragraph_inline_content] = STATE(837), - [sym__inline] = STATE(656), + [sym_link_reference_definition] = STATE(1096), + [sym_block_attribute] = STATE(1096), + [sym__paragraph] = STATE(1096), + [sym__paragraph_content] = STATE(690), + [sym__paragraph_inline_content] = STATE(824), + [sym__inline] = STATE(654), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(318), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_star_repeat1] = STATE(320), - [aux_sym__list_task_repeat1] = STATE(287), - [aux_sym__list_definition_repeat1] = STATE(459), - [aux_sym__list_decimal_period_repeat1] = STATE(460), - [aux_sym__list_decimal_paren_repeat1] = STATE(461), - [aux_sym__list_decimal_parens_repeat1] = STATE(462), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(463), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(464), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(465), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(466), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(467), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(468), - [aux_sym__list_lower_roman_period_repeat1] = STATE(469), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(470), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(471), - [aux_sym__list_upper_roman_period_repeat1] = STATE(472), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(473), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym__list_dash_repeat1] = STATE(316), + [aux_sym__list_plus_repeat1] = STATE(336), + [aux_sym__list_star_repeat1] = STATE(318), + [aux_sym__list_task_repeat1] = STATE(288), + [aux_sym__list_definition_repeat1] = STATE(456), + [aux_sym__list_decimal_period_repeat1] = STATE(457), + [aux_sym__list_decimal_paren_repeat1] = STATE(458), + [aux_sym__list_decimal_parens_repeat1] = STATE(459), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(460), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(461), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(462), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(463), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(464), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(465), + [aux_sym__list_lower_roman_period_repeat1] = STATE(466), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(467), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(468), + [aux_sym__list_upper_roman_period_repeat1] = STATE(469), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(470), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(471), [aux_sym_table_repeat1] = STATE(234), [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), @@ -8804,7 +8933,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_token1] = ACTIONS(9), [anon_sym_LBRACE] = ACTIONS(9), [anon_sym_PERCENT] = ACTIONS(9), - [sym__newline] = ACTIONS(402), + [sym__newline] = ACTIONS(404), [sym__heading_begin] = ACTIONS(368), [sym__div_begin] = ACTIONS(17), [sym__code_block_begin] = ACTIONS(370), @@ -8837,62 +8966,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__table_row_begin] = ACTIONS(382), [sym__block_attribute_begin] = ACTIONS(384), }, - [33] = { + [34] = { [sym__block_with_heading] = STATE(1097), [sym__block_element] = STATE(1097), [sym_heading] = STATE(1097), [sym_list] = STATE(1097), - [sym__list_dash] = STATE(1008), - [sym__list_item_dash] = STATE(645), - [sym__list_plus] = STATE(1008), - [sym__list_item_plus] = STATE(661), - [sym__list_star] = STATE(1008), - [sym__list_item_star] = STATE(573), - [sym__list_task] = STATE(1008), - [sym__list_item_task] = STATE(590), + [sym__list_dash] = STATE(1007), + [sym__list_item_dash] = STATE(595), + [sym__list_plus] = STATE(1007), + [sym__list_item_plus] = STATE(657), + [sym__list_star] = STATE(1007), + [sym__list_item_star] = STATE(570), + [sym__list_task] = STATE(1007), + [sym__list_item_task] = STATE(586), [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(1008), - [sym__list_item_definition] = STATE(740), - [sym__list_decimal_period] = STATE(1008), - [sym__list_item_decimal_period] = STATE(743), - [sym__list_decimal_paren] = STATE(1008), - [sym__list_item_decimal_paren] = STATE(748), - [sym__list_decimal_parens] = STATE(1008), - [sym__list_item_decimal_parens] = STATE(768), - [sym__list_lower_alpha_period] = STATE(1008), - [sym__list_item_lower_alpha_period] = STATE(769), - [sym__list_lower_alpha_paren] = STATE(1008), - [sym__list_item_lower_alpha_paren] = STATE(773), - [sym__list_lower_alpha_parens] = STATE(1008), - [sym__list_item_lower_alpha_parens] = STATE(774), - [sym__list_upper_alpha_period] = STATE(1008), - [sym__list_item_upper_alpha_period] = STATE(782), - [sym__list_upper_alpha_paren] = STATE(1008), - [sym__list_item_upper_alpha_paren] = STATE(783), - [sym__list_upper_alpha_parens] = STATE(1008), - [sym__list_item_upper_alpha_parens] = STATE(786), - [sym__list_lower_roman_period] = STATE(1008), - [sym__list_item_lower_roman_period] = STATE(787), - [sym__list_lower_roman_paren] = STATE(1008), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(1008), - [sym__list_item_lower_roman_parens] = STATE(803), - [sym__list_upper_roman_period] = STATE(1008), - [sym__list_item_upper_roman_period] = STATE(808), - [sym__list_upper_roman_paren] = STATE(1008), - [sym__list_item_upper_roman_paren] = STATE(814), - [sym__list_upper_roman_parens] = STATE(1008), - [sym__list_item_upper_roman_parens] = STATE(819), - [sym_list_item_content] = STATE(893), + [sym__list_definition] = STATE(1007), + [sym__list_item_definition] = STATE(694), + [sym__list_decimal_period] = STATE(1007), + [sym__list_item_decimal_period] = STATE(714), + [sym__list_decimal_paren] = STATE(1007), + [sym__list_item_decimal_paren] = STATE(719), + [sym__list_decimal_parens] = STATE(1007), + [sym__list_item_decimal_parens] = STATE(746), + [sym__list_lower_alpha_period] = STATE(1007), + [sym__list_item_lower_alpha_period] = STATE(748), + [sym__list_lower_alpha_paren] = STATE(1007), + [sym__list_item_lower_alpha_paren] = STATE(749), + [sym__list_lower_alpha_parens] = STATE(1007), + [sym__list_item_lower_alpha_parens] = STATE(753), + [sym__list_upper_alpha_period] = STATE(1007), + [sym__list_item_upper_alpha_period] = STATE(761), + [sym__list_upper_alpha_paren] = STATE(1007), + [sym__list_item_upper_alpha_paren] = STATE(764), + [sym__list_upper_alpha_parens] = STATE(1007), + [sym__list_item_upper_alpha_parens] = STATE(765), + [sym__list_lower_roman_period] = STATE(1007), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(1007), + [sym__list_item_lower_roman_paren] = STATE(769), + [sym__list_lower_roman_parens] = STATE(1007), + [sym__list_item_lower_roman_parens] = STATE(786), + [sym__list_upper_roman_period] = STATE(1007), + [sym__list_item_upper_roman_period] = STATE(791), + [sym__list_upper_roman_paren] = STATE(1007), + [sym__list_item_upper_roman_paren] = STATE(793), + [sym__list_upper_roman_parens] = STATE(1007), + [sym__list_item_upper_roman_parens] = STATE(799), + [sym_list_item_content] = STATE(708), [sym_table] = STATE(1097), [sym__table_row] = STATE(234), [sym_table_header] = STATE(234), [sym_table_separator] = STATE(234), [sym_table_row] = STATE(234), [sym_footnote] = STATE(1097), - [sym_footnote_marker_begin] = STATE(1136), + [sym_footnote_marker_begin] = STATE(1135), [sym_div] = STATE(1097), - [sym__div_marker_begin] = STATE(1018), + [sym__div_marker_begin] = STATE(1017), [sym_code_block] = STATE(1097), [sym_raw_block] = STATE(1097), [sym_thematic_break] = STATE(1097), @@ -8901,30 +9030,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_link_reference_definition] = STATE(1097), [sym_block_attribute] = STATE(1097), [sym__paragraph] = STATE(1097), - [sym__paragraph_content] = STATE(724), - [sym__paragraph_inline_content] = STATE(837), - [sym__inline] = STATE(656), + [sym__paragraph_content] = STATE(690), + [sym__paragraph_inline_content] = STATE(824), + [sym__inline] = STATE(654), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(318), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_star_repeat1] = STATE(320), - [aux_sym__list_task_repeat1] = STATE(287), - [aux_sym__list_definition_repeat1] = STATE(459), - [aux_sym__list_decimal_period_repeat1] = STATE(460), - [aux_sym__list_decimal_paren_repeat1] = STATE(461), - [aux_sym__list_decimal_parens_repeat1] = STATE(462), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(463), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(464), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(465), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(466), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(467), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(468), - [aux_sym__list_lower_roman_period_repeat1] = STATE(469), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(470), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(471), - [aux_sym__list_upper_roman_period_repeat1] = STATE(472), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(473), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym__list_dash_repeat1] = STATE(316), + [aux_sym__list_plus_repeat1] = STATE(336), + [aux_sym__list_star_repeat1] = STATE(318), + [aux_sym__list_task_repeat1] = STATE(288), + [aux_sym__list_definition_repeat1] = STATE(456), + [aux_sym__list_decimal_period_repeat1] = STATE(457), + [aux_sym__list_decimal_paren_repeat1] = STATE(458), + [aux_sym__list_decimal_parens_repeat1] = STATE(459), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(460), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(461), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(462), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(463), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(464), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(465), + [aux_sym__list_lower_roman_period_repeat1] = STATE(466), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(467), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(468), + [aux_sym__list_upper_roman_period_repeat1] = STATE(469), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(470), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(471), [aux_sym_table_repeat1] = STATE(234), [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), @@ -8935,7 +9064,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_token1] = ACTIONS(9), [anon_sym_LBRACE] = ACTIONS(9), [anon_sym_PERCENT] = ACTIONS(9), - [sym__newline] = ACTIONS(404), + [sym__newline] = ACTIONS(406), [sym__heading_begin] = ACTIONS(368), [sym__div_begin] = ACTIONS(17), [sym__code_block_begin] = ACTIONS(370), @@ -8968,62 +9097,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__table_row_begin] = ACTIONS(382), [sym__block_attribute_begin] = ACTIONS(384), }, - [34] = { + [35] = { [sym__block_with_heading] = STATE(1098), [sym__block_element] = STATE(1098), [sym_heading] = STATE(1098), [sym_list] = STATE(1098), - [sym__list_dash] = STATE(1008), - [sym__list_item_dash] = STATE(645), - [sym__list_plus] = STATE(1008), - [sym__list_item_plus] = STATE(661), - [sym__list_star] = STATE(1008), - [sym__list_item_star] = STATE(573), - [sym__list_task] = STATE(1008), - [sym__list_item_task] = STATE(590), + [sym__list_dash] = STATE(1007), + [sym__list_item_dash] = STATE(595), + [sym__list_plus] = STATE(1007), + [sym__list_item_plus] = STATE(657), + [sym__list_star] = STATE(1007), + [sym__list_item_star] = STATE(570), + [sym__list_task] = STATE(1007), + [sym__list_item_task] = STATE(586), [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(1008), - [sym__list_item_definition] = STATE(740), - [sym__list_decimal_period] = STATE(1008), - [sym__list_item_decimal_period] = STATE(743), - [sym__list_decimal_paren] = STATE(1008), - [sym__list_item_decimal_paren] = STATE(748), - [sym__list_decimal_parens] = STATE(1008), - [sym__list_item_decimal_parens] = STATE(768), - [sym__list_lower_alpha_period] = STATE(1008), - [sym__list_item_lower_alpha_period] = STATE(769), - [sym__list_lower_alpha_paren] = STATE(1008), - [sym__list_item_lower_alpha_paren] = STATE(773), - [sym__list_lower_alpha_parens] = STATE(1008), - [sym__list_item_lower_alpha_parens] = STATE(774), - [sym__list_upper_alpha_period] = STATE(1008), - [sym__list_item_upper_alpha_period] = STATE(782), - [sym__list_upper_alpha_paren] = STATE(1008), - [sym__list_item_upper_alpha_paren] = STATE(783), - [sym__list_upper_alpha_parens] = STATE(1008), - [sym__list_item_upper_alpha_parens] = STATE(786), - [sym__list_lower_roman_period] = STATE(1008), - [sym__list_item_lower_roman_period] = STATE(787), - [sym__list_lower_roman_paren] = STATE(1008), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(1008), - [sym__list_item_lower_roman_parens] = STATE(803), - [sym__list_upper_roman_period] = STATE(1008), - [sym__list_item_upper_roman_period] = STATE(808), - [sym__list_upper_roman_paren] = STATE(1008), - [sym__list_item_upper_roman_paren] = STATE(814), - [sym__list_upper_roman_parens] = STATE(1008), - [sym__list_item_upper_roman_parens] = STATE(819), - [sym_list_item_content] = STATE(795), + [sym__list_definition] = STATE(1007), + [sym__list_item_definition] = STATE(694), + [sym__list_decimal_period] = STATE(1007), + [sym__list_item_decimal_period] = STATE(714), + [sym__list_decimal_paren] = STATE(1007), + [sym__list_item_decimal_paren] = STATE(719), + [sym__list_decimal_parens] = STATE(1007), + [sym__list_item_decimal_parens] = STATE(746), + [sym__list_lower_alpha_period] = STATE(1007), + [sym__list_item_lower_alpha_period] = STATE(748), + [sym__list_lower_alpha_paren] = STATE(1007), + [sym__list_item_lower_alpha_paren] = STATE(749), + [sym__list_lower_alpha_parens] = STATE(1007), + [sym__list_item_lower_alpha_parens] = STATE(753), + [sym__list_upper_alpha_period] = STATE(1007), + [sym__list_item_upper_alpha_period] = STATE(761), + [sym__list_upper_alpha_paren] = STATE(1007), + [sym__list_item_upper_alpha_paren] = STATE(764), + [sym__list_upper_alpha_parens] = STATE(1007), + [sym__list_item_upper_alpha_parens] = STATE(765), + [sym__list_lower_roman_period] = STATE(1007), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(1007), + [sym__list_item_lower_roman_paren] = STATE(769), + [sym__list_lower_roman_parens] = STATE(1007), + [sym__list_item_lower_roman_parens] = STATE(786), + [sym__list_upper_roman_period] = STATE(1007), + [sym__list_item_upper_roman_period] = STATE(791), + [sym__list_upper_roman_paren] = STATE(1007), + [sym__list_item_upper_roman_paren] = STATE(793), + [sym__list_upper_roman_parens] = STATE(1007), + [sym__list_item_upper_roman_parens] = STATE(799), + [sym_list_item_content] = STATE(709), [sym_table] = STATE(1098), [sym__table_row] = STATE(234), [sym_table_header] = STATE(234), [sym_table_separator] = STATE(234), [sym_table_row] = STATE(234), [sym_footnote] = STATE(1098), - [sym_footnote_marker_begin] = STATE(1136), + [sym_footnote_marker_begin] = STATE(1135), [sym_div] = STATE(1098), - [sym__div_marker_begin] = STATE(1018), + [sym__div_marker_begin] = STATE(1017), [sym_code_block] = STATE(1098), [sym_raw_block] = STATE(1098), [sym_thematic_break] = STATE(1098), @@ -9032,30 +9161,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_link_reference_definition] = STATE(1098), [sym_block_attribute] = STATE(1098), [sym__paragraph] = STATE(1098), - [sym__paragraph_content] = STATE(724), - [sym__paragraph_inline_content] = STATE(837), - [sym__inline] = STATE(656), + [sym__paragraph_content] = STATE(690), + [sym__paragraph_inline_content] = STATE(824), + [sym__inline] = STATE(654), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(318), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_star_repeat1] = STATE(320), - [aux_sym__list_task_repeat1] = STATE(287), - [aux_sym__list_definition_repeat1] = STATE(459), - [aux_sym__list_decimal_period_repeat1] = STATE(460), - [aux_sym__list_decimal_paren_repeat1] = STATE(461), - [aux_sym__list_decimal_parens_repeat1] = STATE(462), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(463), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(464), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(465), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(466), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(467), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(468), - [aux_sym__list_lower_roman_period_repeat1] = STATE(469), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(470), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(471), - [aux_sym__list_upper_roman_period_repeat1] = STATE(472), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(473), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym__list_dash_repeat1] = STATE(316), + [aux_sym__list_plus_repeat1] = STATE(336), + [aux_sym__list_star_repeat1] = STATE(318), + [aux_sym__list_task_repeat1] = STATE(288), + [aux_sym__list_definition_repeat1] = STATE(456), + [aux_sym__list_decimal_period_repeat1] = STATE(457), + [aux_sym__list_decimal_paren_repeat1] = STATE(458), + [aux_sym__list_decimal_parens_repeat1] = STATE(459), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(460), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(461), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(462), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(463), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(464), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(465), + [aux_sym__list_lower_roman_period_repeat1] = STATE(466), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(467), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(468), + [aux_sym__list_upper_roman_period_repeat1] = STATE(469), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(470), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(471), [aux_sym_table_repeat1] = STATE(234), [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), @@ -9066,7 +9195,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_token1] = ACTIONS(9), [anon_sym_LBRACE] = ACTIONS(9), [anon_sym_PERCENT] = ACTIONS(9), - [sym__newline] = ACTIONS(406), + [sym__newline] = ACTIONS(408), [sym__heading_begin] = ACTIONS(368), [sym__div_begin] = ACTIONS(17), [sym__code_block_begin] = ACTIONS(370), @@ -9099,62 +9228,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__table_row_begin] = ACTIONS(382), [sym__block_attribute_begin] = ACTIONS(384), }, - [35] = { + [36] = { [sym__block_with_heading] = STATE(1099), [sym__block_element] = STATE(1099), [sym_heading] = STATE(1099), [sym_list] = STATE(1099), - [sym__list_dash] = STATE(1008), - [sym__list_item_dash] = STATE(645), - [sym__list_plus] = STATE(1008), - [sym__list_item_plus] = STATE(661), - [sym__list_star] = STATE(1008), - [sym__list_item_star] = STATE(573), - [sym__list_task] = STATE(1008), - [sym__list_item_task] = STATE(590), + [sym__list_dash] = STATE(1007), + [sym__list_item_dash] = STATE(595), + [sym__list_plus] = STATE(1007), + [sym__list_item_plus] = STATE(657), + [sym__list_star] = STATE(1007), + [sym__list_item_star] = STATE(570), + [sym__list_task] = STATE(1007), + [sym__list_item_task] = STATE(586), [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(1008), - [sym__list_item_definition] = STATE(740), - [sym__list_decimal_period] = STATE(1008), - [sym__list_item_decimal_period] = STATE(743), - [sym__list_decimal_paren] = STATE(1008), - [sym__list_item_decimal_paren] = STATE(748), - [sym__list_decimal_parens] = STATE(1008), - [sym__list_item_decimal_parens] = STATE(768), - [sym__list_lower_alpha_period] = STATE(1008), - [sym__list_item_lower_alpha_period] = STATE(769), - [sym__list_lower_alpha_paren] = STATE(1008), - [sym__list_item_lower_alpha_paren] = STATE(773), - [sym__list_lower_alpha_parens] = STATE(1008), - [sym__list_item_lower_alpha_parens] = STATE(774), - [sym__list_upper_alpha_period] = STATE(1008), - [sym__list_item_upper_alpha_period] = STATE(782), - [sym__list_upper_alpha_paren] = STATE(1008), - [sym__list_item_upper_alpha_paren] = STATE(783), - [sym__list_upper_alpha_parens] = STATE(1008), - [sym__list_item_upper_alpha_parens] = STATE(786), - [sym__list_lower_roman_period] = STATE(1008), - [sym__list_item_lower_roman_period] = STATE(787), - [sym__list_lower_roman_paren] = STATE(1008), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(1008), - [sym__list_item_lower_roman_parens] = STATE(803), - [sym__list_upper_roman_period] = STATE(1008), - [sym__list_item_upper_roman_period] = STATE(808), - [sym__list_upper_roman_paren] = STATE(1008), - [sym__list_item_upper_roman_paren] = STATE(814), - [sym__list_upper_roman_parens] = STATE(1008), - [sym__list_item_upper_roman_parens] = STATE(819), - [sym_list_item_content] = STATE(796), + [sym__list_definition] = STATE(1007), + [sym__list_item_definition] = STATE(694), + [sym__list_decimal_period] = STATE(1007), + [sym__list_item_decimal_period] = STATE(714), + [sym__list_decimal_paren] = STATE(1007), + [sym__list_item_decimal_paren] = STATE(719), + [sym__list_decimal_parens] = STATE(1007), + [sym__list_item_decimal_parens] = STATE(746), + [sym__list_lower_alpha_period] = STATE(1007), + [sym__list_item_lower_alpha_period] = STATE(748), + [sym__list_lower_alpha_paren] = STATE(1007), + [sym__list_item_lower_alpha_paren] = STATE(749), + [sym__list_lower_alpha_parens] = STATE(1007), + [sym__list_item_lower_alpha_parens] = STATE(753), + [sym__list_upper_alpha_period] = STATE(1007), + [sym__list_item_upper_alpha_period] = STATE(761), + [sym__list_upper_alpha_paren] = STATE(1007), + [sym__list_item_upper_alpha_paren] = STATE(764), + [sym__list_upper_alpha_parens] = STATE(1007), + [sym__list_item_upper_alpha_parens] = STATE(765), + [sym__list_lower_roman_period] = STATE(1007), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(1007), + [sym__list_item_lower_roman_paren] = STATE(769), + [sym__list_lower_roman_parens] = STATE(1007), + [sym__list_item_lower_roman_parens] = STATE(786), + [sym__list_upper_roman_period] = STATE(1007), + [sym__list_item_upper_roman_period] = STATE(791), + [sym__list_upper_roman_paren] = STATE(1007), + [sym__list_item_upper_roman_paren] = STATE(793), + [sym__list_upper_roman_parens] = STATE(1007), + [sym__list_item_upper_roman_parens] = STATE(799), + [sym_list_item_content] = STATE(710), [sym_table] = STATE(1099), [sym__table_row] = STATE(234), [sym_table_header] = STATE(234), [sym_table_separator] = STATE(234), [sym_table_row] = STATE(234), [sym_footnote] = STATE(1099), - [sym_footnote_marker_begin] = STATE(1136), + [sym_footnote_marker_begin] = STATE(1135), [sym_div] = STATE(1099), - [sym__div_marker_begin] = STATE(1018), + [sym__div_marker_begin] = STATE(1017), [sym_code_block] = STATE(1099), [sym_raw_block] = STATE(1099), [sym_thematic_break] = STATE(1099), @@ -9163,30 +9292,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_link_reference_definition] = STATE(1099), [sym_block_attribute] = STATE(1099), [sym__paragraph] = STATE(1099), - [sym__paragraph_content] = STATE(724), - [sym__paragraph_inline_content] = STATE(837), - [sym__inline] = STATE(656), + [sym__paragraph_content] = STATE(690), + [sym__paragraph_inline_content] = STATE(824), + [sym__inline] = STATE(654), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(318), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_star_repeat1] = STATE(320), - [aux_sym__list_task_repeat1] = STATE(287), - [aux_sym__list_definition_repeat1] = STATE(459), - [aux_sym__list_decimal_period_repeat1] = STATE(460), - [aux_sym__list_decimal_paren_repeat1] = STATE(461), - [aux_sym__list_decimal_parens_repeat1] = STATE(462), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(463), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(464), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(465), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(466), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(467), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(468), - [aux_sym__list_lower_roman_period_repeat1] = STATE(469), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(470), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(471), - [aux_sym__list_upper_roman_period_repeat1] = STATE(472), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(473), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym__list_dash_repeat1] = STATE(316), + [aux_sym__list_plus_repeat1] = STATE(336), + [aux_sym__list_star_repeat1] = STATE(318), + [aux_sym__list_task_repeat1] = STATE(288), + [aux_sym__list_definition_repeat1] = STATE(456), + [aux_sym__list_decimal_period_repeat1] = STATE(457), + [aux_sym__list_decimal_paren_repeat1] = STATE(458), + [aux_sym__list_decimal_parens_repeat1] = STATE(459), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(460), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(461), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(462), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(463), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(464), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(465), + [aux_sym__list_lower_roman_period_repeat1] = STATE(466), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(467), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(468), + [aux_sym__list_upper_roman_period_repeat1] = STATE(469), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(470), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(471), [aux_sym_table_repeat1] = STATE(234), [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), @@ -9197,7 +9326,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_token1] = ACTIONS(9), [anon_sym_LBRACE] = ACTIONS(9), [anon_sym_PERCENT] = ACTIONS(9), - [sym__newline] = ACTIONS(408), + [sym__newline] = ACTIONS(410), [sym__heading_begin] = ACTIONS(368), [sym__div_begin] = ACTIONS(17), [sym__code_block_begin] = ACTIONS(370), @@ -9230,62 +9359,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__table_row_begin] = ACTIONS(382), [sym__block_attribute_begin] = ACTIONS(384), }, - [36] = { + [37] = { [sym__block_with_heading] = STATE(1100), [sym__block_element] = STATE(1100), [sym_heading] = STATE(1100), [sym_list] = STATE(1100), - [sym__list_dash] = STATE(1008), - [sym__list_item_dash] = STATE(645), - [sym__list_plus] = STATE(1008), - [sym__list_item_plus] = STATE(661), - [sym__list_star] = STATE(1008), - [sym__list_item_star] = STATE(573), - [sym__list_task] = STATE(1008), - [sym__list_item_task] = STATE(590), + [sym__list_dash] = STATE(1007), + [sym__list_item_dash] = STATE(595), + [sym__list_plus] = STATE(1007), + [sym__list_item_plus] = STATE(657), + [sym__list_star] = STATE(1007), + [sym__list_item_star] = STATE(570), + [sym__list_task] = STATE(1007), + [sym__list_item_task] = STATE(586), [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(1008), - [sym__list_item_definition] = STATE(740), - [sym__list_decimal_period] = STATE(1008), - [sym__list_item_decimal_period] = STATE(743), - [sym__list_decimal_paren] = STATE(1008), - [sym__list_item_decimal_paren] = STATE(748), - [sym__list_decimal_parens] = STATE(1008), - [sym__list_item_decimal_parens] = STATE(768), - [sym__list_lower_alpha_period] = STATE(1008), - [sym__list_item_lower_alpha_period] = STATE(769), - [sym__list_lower_alpha_paren] = STATE(1008), - [sym__list_item_lower_alpha_paren] = STATE(773), - [sym__list_lower_alpha_parens] = STATE(1008), - [sym__list_item_lower_alpha_parens] = STATE(774), - [sym__list_upper_alpha_period] = STATE(1008), - [sym__list_item_upper_alpha_period] = STATE(782), - [sym__list_upper_alpha_paren] = STATE(1008), - [sym__list_item_upper_alpha_paren] = STATE(783), - [sym__list_upper_alpha_parens] = STATE(1008), - [sym__list_item_upper_alpha_parens] = STATE(786), - [sym__list_lower_roman_period] = STATE(1008), - [sym__list_item_lower_roman_period] = STATE(787), - [sym__list_lower_roman_paren] = STATE(1008), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(1008), - [sym__list_item_lower_roman_parens] = STATE(803), - [sym__list_upper_roman_period] = STATE(1008), - [sym__list_item_upper_roman_period] = STATE(808), - [sym__list_upper_roman_paren] = STATE(1008), - [sym__list_item_upper_roman_paren] = STATE(814), - [sym__list_upper_roman_parens] = STATE(1008), - [sym__list_item_upper_roman_parens] = STATE(819), - [sym_list_item_content] = STATE(800), + [sym__list_definition] = STATE(1007), + [sym__list_item_definition] = STATE(694), + [sym__list_decimal_period] = STATE(1007), + [sym__list_item_decimal_period] = STATE(714), + [sym__list_decimal_paren] = STATE(1007), + [sym__list_item_decimal_paren] = STATE(719), + [sym__list_decimal_parens] = STATE(1007), + [sym__list_item_decimal_parens] = STATE(746), + [sym__list_lower_alpha_period] = STATE(1007), + [sym__list_item_lower_alpha_period] = STATE(748), + [sym__list_lower_alpha_paren] = STATE(1007), + [sym__list_item_lower_alpha_paren] = STATE(749), + [sym__list_lower_alpha_parens] = STATE(1007), + [sym__list_item_lower_alpha_parens] = STATE(753), + [sym__list_upper_alpha_period] = STATE(1007), + [sym__list_item_upper_alpha_period] = STATE(761), + [sym__list_upper_alpha_paren] = STATE(1007), + [sym__list_item_upper_alpha_paren] = STATE(764), + [sym__list_upper_alpha_parens] = STATE(1007), + [sym__list_item_upper_alpha_parens] = STATE(765), + [sym__list_lower_roman_period] = STATE(1007), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(1007), + [sym__list_item_lower_roman_paren] = STATE(769), + [sym__list_lower_roman_parens] = STATE(1007), + [sym__list_item_lower_roman_parens] = STATE(786), + [sym__list_upper_roman_period] = STATE(1007), + [sym__list_item_upper_roman_period] = STATE(791), + [sym__list_upper_roman_paren] = STATE(1007), + [sym__list_item_upper_roman_paren] = STATE(793), + [sym__list_upper_roman_parens] = STATE(1007), + [sym__list_item_upper_roman_parens] = STATE(799), + [sym_list_item_content] = STATE(718), [sym_table] = STATE(1100), [sym__table_row] = STATE(234), [sym_table_header] = STATE(234), [sym_table_separator] = STATE(234), [sym_table_row] = STATE(234), [sym_footnote] = STATE(1100), - [sym_footnote_marker_begin] = STATE(1136), + [sym_footnote_marker_begin] = STATE(1135), [sym_div] = STATE(1100), - [sym__div_marker_begin] = STATE(1018), + [sym__div_marker_begin] = STATE(1017), [sym_code_block] = STATE(1100), [sym_raw_block] = STATE(1100), [sym_thematic_break] = STATE(1100), @@ -9294,30 +9423,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_link_reference_definition] = STATE(1100), [sym_block_attribute] = STATE(1100), [sym__paragraph] = STATE(1100), - [sym__paragraph_content] = STATE(724), - [sym__paragraph_inline_content] = STATE(837), - [sym__inline] = STATE(656), + [sym__paragraph_content] = STATE(690), + [sym__paragraph_inline_content] = STATE(824), + [sym__inline] = STATE(654), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(318), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_star_repeat1] = STATE(320), - [aux_sym__list_task_repeat1] = STATE(287), - [aux_sym__list_definition_repeat1] = STATE(459), - [aux_sym__list_decimal_period_repeat1] = STATE(460), - [aux_sym__list_decimal_paren_repeat1] = STATE(461), - [aux_sym__list_decimal_parens_repeat1] = STATE(462), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(463), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(464), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(465), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(466), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(467), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(468), - [aux_sym__list_lower_roman_period_repeat1] = STATE(469), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(470), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(471), - [aux_sym__list_upper_roman_period_repeat1] = STATE(472), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(473), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym__list_dash_repeat1] = STATE(316), + [aux_sym__list_plus_repeat1] = STATE(336), + [aux_sym__list_star_repeat1] = STATE(318), + [aux_sym__list_task_repeat1] = STATE(288), + [aux_sym__list_definition_repeat1] = STATE(456), + [aux_sym__list_decimal_period_repeat1] = STATE(457), + [aux_sym__list_decimal_paren_repeat1] = STATE(458), + [aux_sym__list_decimal_parens_repeat1] = STATE(459), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(460), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(461), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(462), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(463), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(464), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(465), + [aux_sym__list_lower_roman_period_repeat1] = STATE(466), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(467), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(468), + [aux_sym__list_upper_roman_period_repeat1] = STATE(469), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(470), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(471), [aux_sym_table_repeat1] = STATE(234), [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), @@ -9328,7 +9457,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_token1] = ACTIONS(9), [anon_sym_LBRACE] = ACTIONS(9), [anon_sym_PERCENT] = ACTIONS(9), - [sym__newline] = ACTIONS(410), + [sym__newline] = ACTIONS(412), [sym__heading_begin] = ACTIONS(368), [sym__div_begin] = ACTIONS(17), [sym__code_block_begin] = ACTIONS(370), @@ -9361,94 +9490,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__table_row_begin] = ACTIONS(382), [sym__block_attribute_begin] = ACTIONS(384), }, - [37] = { - [sym__block_with_heading] = STATE(1101), - [sym__block_element] = STATE(1101), - [sym_heading] = STATE(1101), - [sym_list] = STATE(1101), - [sym__list_dash] = STATE(1008), - [sym__list_item_dash] = STATE(645), - [sym__list_plus] = STATE(1008), - [sym__list_item_plus] = STATE(661), - [sym__list_star] = STATE(1008), - [sym__list_item_star] = STATE(573), - [sym__list_task] = STATE(1008), - [sym__list_item_task] = STATE(590), + [38] = { + [sym__block_with_heading] = STATE(1032), + [sym__block_element] = STATE(1032), + [sym_heading] = STATE(1032), + [sym_list] = STATE(1032), + [sym__list_dash] = STATE(1007), + [sym__list_item_dash] = STATE(595), + [sym__list_plus] = STATE(1007), + [sym__list_item_plus] = STATE(657), + [sym__list_star] = STATE(1007), + [sym__list_item_star] = STATE(570), + [sym__list_task] = STATE(1007), + [sym__list_item_task] = STATE(586), [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(1008), - [sym__list_item_definition] = STATE(740), - [sym__list_decimal_period] = STATE(1008), - [sym__list_item_decimal_period] = STATE(743), - [sym__list_decimal_paren] = STATE(1008), - [sym__list_item_decimal_paren] = STATE(748), - [sym__list_decimal_parens] = STATE(1008), - [sym__list_item_decimal_parens] = STATE(768), - [sym__list_lower_alpha_period] = STATE(1008), - [sym__list_item_lower_alpha_period] = STATE(769), - [sym__list_lower_alpha_paren] = STATE(1008), - [sym__list_item_lower_alpha_paren] = STATE(773), - [sym__list_lower_alpha_parens] = STATE(1008), - [sym__list_item_lower_alpha_parens] = STATE(774), - [sym__list_upper_alpha_period] = STATE(1008), - [sym__list_item_upper_alpha_period] = STATE(782), - [sym__list_upper_alpha_paren] = STATE(1008), - [sym__list_item_upper_alpha_paren] = STATE(783), - [sym__list_upper_alpha_parens] = STATE(1008), - [sym__list_item_upper_alpha_parens] = STATE(786), - [sym__list_lower_roman_period] = STATE(1008), - [sym__list_item_lower_roman_period] = STATE(787), - [sym__list_lower_roman_paren] = STATE(1008), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(1008), - [sym__list_item_lower_roman_parens] = STATE(803), - [sym__list_upper_roman_period] = STATE(1008), - [sym__list_item_upper_roman_period] = STATE(808), - [sym__list_upper_roman_paren] = STATE(1008), - [sym__list_item_upper_roman_paren] = STATE(814), - [sym__list_upper_roman_parens] = STATE(1008), - [sym__list_item_upper_roman_parens] = STATE(819), - [sym_list_item_content] = STATE(831), - [sym_table] = STATE(1101), + [sym__list_definition] = STATE(1007), + [sym__list_item_definition] = STATE(694), + [sym__list_decimal_period] = STATE(1007), + [sym__list_item_decimal_period] = STATE(714), + [sym__list_decimal_paren] = STATE(1007), + [sym__list_item_decimal_paren] = STATE(719), + [sym__list_decimal_parens] = STATE(1007), + [sym__list_item_decimal_parens] = STATE(746), + [sym__list_lower_alpha_period] = STATE(1007), + [sym__list_item_lower_alpha_period] = STATE(748), + [sym__list_lower_alpha_paren] = STATE(1007), + [sym__list_item_lower_alpha_paren] = STATE(749), + [sym__list_lower_alpha_parens] = STATE(1007), + [sym__list_item_lower_alpha_parens] = STATE(753), + [sym__list_upper_alpha_period] = STATE(1007), + [sym__list_item_upper_alpha_period] = STATE(761), + [sym__list_upper_alpha_paren] = STATE(1007), + [sym__list_item_upper_alpha_paren] = STATE(764), + [sym__list_upper_alpha_parens] = STATE(1007), + [sym__list_item_upper_alpha_parens] = STATE(765), + [sym__list_lower_roman_period] = STATE(1007), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(1007), + [sym__list_item_lower_roman_paren] = STATE(769), + [sym__list_lower_roman_parens] = STATE(1007), + [sym__list_item_lower_roman_parens] = STATE(786), + [sym__list_upper_roman_period] = STATE(1007), + [sym__list_item_upper_roman_period] = STATE(791), + [sym__list_upper_roman_paren] = STATE(1007), + [sym__list_item_upper_roman_paren] = STATE(793), + [sym__list_upper_roman_parens] = STATE(1007), + [sym__list_item_upper_roman_parens] = STATE(799), + [sym_table] = STATE(1032), [sym__table_row] = STATE(234), [sym_table_header] = STATE(234), [sym_table_separator] = STATE(234), [sym_table_row] = STATE(234), - [sym_footnote] = STATE(1101), - [sym_footnote_marker_begin] = STATE(1136), - [sym_div] = STATE(1101), - [sym__div_marker_begin] = STATE(1018), - [sym_code_block] = STATE(1101), - [sym_raw_block] = STATE(1101), - [sym_thematic_break] = STATE(1101), - [sym_block_quote] = STATE(1101), + [sym_footnote] = STATE(1032), + [sym_footnote_marker_begin] = STATE(1135), + [sym_footnote_content] = STATE(1074), + [sym_div] = STATE(1032), + [sym__div_marker_begin] = STATE(1017), + [sym_code_block] = STATE(1032), + [sym_raw_block] = STATE(1032), + [sym_thematic_break] = STATE(1032), + [sym_block_quote] = STATE(1032), [sym__block_quote_prefix] = STATE(225), - [sym_link_reference_definition] = STATE(1101), - [sym_block_attribute] = STATE(1101), - [sym__paragraph] = STATE(1101), - [sym__paragraph_content] = STATE(724), - [sym__paragraph_inline_content] = STATE(837), - [sym__inline] = STATE(656), + [sym_link_reference_definition] = STATE(1032), + [sym_block_attribute] = STATE(1032), + [sym__paragraph] = STATE(1032), + [sym__paragraph_content] = STATE(690), + [sym__paragraph_inline_content] = STATE(824), + [sym__inline] = STATE(654), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(318), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_star_repeat1] = STATE(320), - [aux_sym__list_task_repeat1] = STATE(287), - [aux_sym__list_definition_repeat1] = STATE(459), - [aux_sym__list_decimal_period_repeat1] = STATE(460), - [aux_sym__list_decimal_paren_repeat1] = STATE(461), - [aux_sym__list_decimal_parens_repeat1] = STATE(462), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(463), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(464), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(465), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(466), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(467), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(468), - [aux_sym__list_lower_roman_period_repeat1] = STATE(469), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(470), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(471), - [aux_sym__list_upper_roman_period_repeat1] = STATE(472), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(473), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym__list_dash_repeat1] = STATE(316), + [aux_sym__list_plus_repeat1] = STATE(336), + [aux_sym__list_star_repeat1] = STATE(318), + [aux_sym__list_task_repeat1] = STATE(288), + [aux_sym__list_definition_repeat1] = STATE(456), + [aux_sym__list_decimal_period_repeat1] = STATE(457), + [aux_sym__list_decimal_paren_repeat1] = STATE(458), + [aux_sym__list_decimal_parens_repeat1] = STATE(459), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(460), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(461), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(462), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(463), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(464), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(465), + [aux_sym__list_lower_roman_period_repeat1] = STATE(466), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(467), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(468), + [aux_sym__list_upper_roman_period_repeat1] = STATE(469), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(470), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(471), [aux_sym_table_repeat1] = STATE(234), [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), @@ -9459,7 +9588,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_token1] = ACTIONS(9), [anon_sym_LBRACE] = ACTIONS(9), [anon_sym_PERCENT] = ACTIONS(9), - [sym__newline] = ACTIONS(412), + [sym__newline] = ACTIONS(414), [sym__heading_begin] = ACTIONS(368), [sym__div_begin] = ACTIONS(17), [sym__code_block_begin] = ACTIONS(370), @@ -9492,225 +9621,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__table_row_begin] = ACTIONS(382), [sym__block_attribute_begin] = ACTIONS(384), }, - [38] = { - [sym__block_with_heading] = STATE(1033), - [sym__block_element] = STATE(1033), - [sym_heading] = STATE(1033), - [sym_list] = STATE(1033), - [sym__list_dash] = STATE(1008), - [sym__list_item_dash] = STATE(645), - [sym__list_plus] = STATE(1008), - [sym__list_item_plus] = STATE(661), - [sym__list_star] = STATE(1008), - [sym__list_item_star] = STATE(573), - [sym__list_task] = STATE(1008), - [sym__list_item_task] = STATE(590), + [39] = { + [sym__block_with_heading] = STATE(1101), + [sym__block_element] = STATE(1101), + [sym_heading] = STATE(1101), + [sym_list] = STATE(1101), + [sym__list_dash] = STATE(1007), + [sym__list_item_dash] = STATE(595), + [sym__list_plus] = STATE(1007), + [sym__list_item_plus] = STATE(657), + [sym__list_star] = STATE(1007), + [sym__list_item_star] = STATE(570), + [sym__list_task] = STATE(1007), + [sym__list_item_task] = STATE(586), [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(1008), - [sym__list_item_definition] = STATE(740), - [sym__list_decimal_period] = STATE(1008), - [sym__list_item_decimal_period] = STATE(743), - [sym__list_decimal_paren] = STATE(1008), - [sym__list_item_decimal_paren] = STATE(748), - [sym__list_decimal_parens] = STATE(1008), - [sym__list_item_decimal_parens] = STATE(768), - [sym__list_lower_alpha_period] = STATE(1008), - [sym__list_item_lower_alpha_period] = STATE(769), - [sym__list_lower_alpha_paren] = STATE(1008), - [sym__list_item_lower_alpha_paren] = STATE(773), - [sym__list_lower_alpha_parens] = STATE(1008), - [sym__list_item_lower_alpha_parens] = STATE(774), - [sym__list_upper_alpha_period] = STATE(1008), - [sym__list_item_upper_alpha_period] = STATE(782), - [sym__list_upper_alpha_paren] = STATE(1008), - [sym__list_item_upper_alpha_paren] = STATE(783), - [sym__list_upper_alpha_parens] = STATE(1008), - [sym__list_item_upper_alpha_parens] = STATE(786), - [sym__list_lower_roman_period] = STATE(1008), - [sym__list_item_lower_roman_period] = STATE(787), - [sym__list_lower_roman_paren] = STATE(1008), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(1008), - [sym__list_item_lower_roman_parens] = STATE(803), - [sym__list_upper_roman_period] = STATE(1008), - [sym__list_item_upper_roman_period] = STATE(808), - [sym__list_upper_roman_paren] = STATE(1008), - [sym__list_item_upper_roman_paren] = STATE(814), - [sym__list_upper_roman_parens] = STATE(1008), - [sym__list_item_upper_roman_parens] = STATE(819), - [sym_table] = STATE(1033), + [sym__list_definition] = STATE(1007), + [sym__list_item_definition] = STATE(694), + [sym__list_decimal_period] = STATE(1007), + [sym__list_item_decimal_period] = STATE(714), + [sym__list_decimal_paren] = STATE(1007), + [sym__list_item_decimal_paren] = STATE(719), + [sym__list_decimal_parens] = STATE(1007), + [sym__list_item_decimal_parens] = STATE(746), + [sym__list_lower_alpha_period] = STATE(1007), + [sym__list_item_lower_alpha_period] = STATE(748), + [sym__list_lower_alpha_paren] = STATE(1007), + [sym__list_item_lower_alpha_paren] = STATE(749), + [sym__list_lower_alpha_parens] = STATE(1007), + [sym__list_item_lower_alpha_parens] = STATE(753), + [sym__list_upper_alpha_period] = STATE(1007), + [sym__list_item_upper_alpha_period] = STATE(761), + [sym__list_upper_alpha_paren] = STATE(1007), + [sym__list_item_upper_alpha_paren] = STATE(764), + [sym__list_upper_alpha_parens] = STATE(1007), + [sym__list_item_upper_alpha_parens] = STATE(765), + [sym__list_lower_roman_period] = STATE(1007), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(1007), + [sym__list_item_lower_roman_paren] = STATE(769), + [sym__list_lower_roman_parens] = STATE(1007), + [sym__list_item_lower_roman_parens] = STATE(786), + [sym__list_upper_roman_period] = STATE(1007), + [sym__list_item_upper_roman_period] = STATE(791), + [sym__list_upper_roman_paren] = STATE(1007), + [sym__list_item_upper_roman_paren] = STATE(793), + [sym__list_upper_roman_parens] = STATE(1007), + [sym__list_item_upper_roman_parens] = STATE(799), + [sym_list_item_content] = STATE(757), + [sym_table] = STATE(1101), [sym__table_row] = STATE(234), [sym_table_header] = STATE(234), [sym_table_separator] = STATE(234), [sym_table_row] = STATE(234), - [sym_footnote] = STATE(1033), - [sym_footnote_marker_begin] = STATE(1136), - [sym_footnote_content] = STATE(1002), - [sym_div] = STATE(1033), - [sym__div_marker_begin] = STATE(1018), - [sym_code_block] = STATE(1033), - [sym_raw_block] = STATE(1033), - [sym_thematic_break] = STATE(1033), - [sym_block_quote] = STATE(1033), - [sym__block_quote_prefix] = STATE(225), - [sym_link_reference_definition] = STATE(1033), - [sym_block_attribute] = STATE(1033), - [sym__paragraph] = STATE(1033), - [sym__paragraph_content] = STATE(724), - [sym__paragraph_inline_content] = STATE(837), - [sym__inline] = STATE(656), - [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(318), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_star_repeat1] = STATE(320), - [aux_sym__list_task_repeat1] = STATE(287), - [aux_sym__list_definition_repeat1] = STATE(459), - [aux_sym__list_decimal_period_repeat1] = STATE(460), - [aux_sym__list_decimal_paren_repeat1] = STATE(461), - [aux_sym__list_decimal_parens_repeat1] = STATE(462), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(463), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(464), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(465), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(466), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(467), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(468), - [aux_sym__list_lower_roman_period_repeat1] = STATE(469), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(470), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(471), - [aux_sym__list_upper_roman_period_repeat1] = STATE(472), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(473), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), - [aux_sym_table_repeat1] = STATE(234), - [aux_sym__block_quote_prefix_repeat1] = STATE(230), - [aux_sym__inline_repeat1] = STATE(273), - [anon_sym_LBRACK] = ACTIONS(364), - [anon_sym_LBRACK_CARET] = ACTIONS(7), - [anon_sym_DOT] = ACTIONS(9), - [aux_sym_identifier_token1] = ACTIONS(9), - [aux_sym__inline_token1] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_PERCENT] = ACTIONS(9), - [sym__newline] = ACTIONS(414), - [sym__heading_begin] = ACTIONS(368), - [sym__div_begin] = ACTIONS(17), - [sym__code_block_begin] = ACTIONS(370), - [sym_list_marker_dash] = ACTIONS(21), - [sym_list_marker_star] = ACTIONS(23), - [sym_list_marker_plus] = ACTIONS(25), - [sym__list_marker_task_begin] = ACTIONS(27), - [sym_list_marker_definition] = ACTIONS(29), - [sym_list_marker_decimal_period] = ACTIONS(31), - [sym_list_marker_lower_alpha_period] = ACTIONS(33), - [sym_list_marker_upper_alpha_period] = ACTIONS(35), - [sym_list_marker_lower_roman_period] = ACTIONS(37), - [sym_list_marker_upper_roman_period] = ACTIONS(39), - [sym_list_marker_decimal_paren] = ACTIONS(41), - [sym_list_marker_lower_alpha_paren] = ACTIONS(43), - [sym_list_marker_upper_alpha_paren] = ACTIONS(45), - [sym_list_marker_lower_roman_paren] = ACTIONS(47), - [sym_list_marker_upper_roman_paren] = ACTIONS(49), - [sym_list_marker_decimal_parens] = ACTIONS(51), - [sym_list_marker_lower_alpha_parens] = ACTIONS(53), - [sym_list_marker_upper_alpha_parens] = ACTIONS(55), - [sym_list_marker_lower_roman_parens] = ACTIONS(57), - [sym_list_marker_upper_roman_parens] = ACTIONS(59), - [sym__block_quote_begin] = ACTIONS(372), - [sym__block_quote_continuation] = ACTIONS(374), - [sym__thematic_break_dash] = ACTIONS(376), - [sym__thematic_break_star] = ACTIONS(376), - [sym__table_header_begin] = ACTIONS(378), - [sym__table_separator_begin] = ACTIONS(380), - [sym__table_row_begin] = ACTIONS(382), - [sym__block_attribute_begin] = ACTIONS(384), - }, - [39] = { - [sym__block_with_heading] = STATE(1102), - [sym__block_element] = STATE(1102), - [sym_heading] = STATE(1102), - [sym_list] = STATE(1102), - [sym__list_dash] = STATE(1008), - [sym__list_item_dash] = STATE(645), - [sym__list_plus] = STATE(1008), - [sym__list_item_plus] = STATE(661), - [sym__list_star] = STATE(1008), - [sym__list_item_star] = STATE(573), - [sym__list_task] = STATE(1008), - [sym__list_item_task] = STATE(590), - [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(1008), - [sym__list_item_definition] = STATE(740), - [sym__list_decimal_period] = STATE(1008), - [sym__list_item_decimal_period] = STATE(743), - [sym__list_decimal_paren] = STATE(1008), - [sym__list_item_decimal_paren] = STATE(748), - [sym__list_decimal_parens] = STATE(1008), - [sym__list_item_decimal_parens] = STATE(768), - [sym__list_lower_alpha_period] = STATE(1008), - [sym__list_item_lower_alpha_period] = STATE(769), - [sym__list_lower_alpha_paren] = STATE(1008), - [sym__list_item_lower_alpha_paren] = STATE(773), - [sym__list_lower_alpha_parens] = STATE(1008), - [sym__list_item_lower_alpha_parens] = STATE(774), - [sym__list_upper_alpha_period] = STATE(1008), - [sym__list_item_upper_alpha_period] = STATE(782), - [sym__list_upper_alpha_paren] = STATE(1008), - [sym__list_item_upper_alpha_paren] = STATE(783), - [sym__list_upper_alpha_parens] = STATE(1008), - [sym__list_item_upper_alpha_parens] = STATE(786), - [sym__list_lower_roman_period] = STATE(1008), - [sym__list_item_lower_roman_period] = STATE(787), - [sym__list_lower_roman_paren] = STATE(1008), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(1008), - [sym__list_item_lower_roman_parens] = STATE(803), - [sym__list_upper_roman_period] = STATE(1008), - [sym__list_item_upper_roman_period] = STATE(808), - [sym__list_upper_roman_paren] = STATE(1008), - [sym__list_item_upper_roman_paren] = STATE(814), - [sym__list_upper_roman_parens] = STATE(1008), - [sym__list_item_upper_roman_parens] = STATE(819), - [sym_list_item_content] = STATE(846), - [sym_table] = STATE(1102), - [sym__table_row] = STATE(234), - [sym_table_header] = STATE(234), - [sym_table_separator] = STATE(234), - [sym_table_row] = STATE(234), - [sym_footnote] = STATE(1102), - [sym_footnote_marker_begin] = STATE(1136), - [sym_div] = STATE(1102), - [sym__div_marker_begin] = STATE(1018), - [sym_code_block] = STATE(1102), - [sym_raw_block] = STATE(1102), - [sym_thematic_break] = STATE(1102), - [sym_block_quote] = STATE(1102), + [sym_footnote] = STATE(1101), + [sym_footnote_marker_begin] = STATE(1135), + [sym_div] = STATE(1101), + [sym__div_marker_begin] = STATE(1017), + [sym_code_block] = STATE(1101), + [sym_raw_block] = STATE(1101), + [sym_thematic_break] = STATE(1101), + [sym_block_quote] = STATE(1101), [sym__block_quote_prefix] = STATE(225), - [sym_link_reference_definition] = STATE(1102), - [sym_block_attribute] = STATE(1102), - [sym__paragraph] = STATE(1102), - [sym__paragraph_content] = STATE(724), - [sym__paragraph_inline_content] = STATE(837), - [sym__inline] = STATE(656), + [sym_link_reference_definition] = STATE(1101), + [sym_block_attribute] = STATE(1101), + [sym__paragraph] = STATE(1101), + [sym__paragraph_content] = STATE(690), + [sym__paragraph_inline_content] = STATE(824), + [sym__inline] = STATE(654), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(318), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_star_repeat1] = STATE(320), - [aux_sym__list_task_repeat1] = STATE(287), - [aux_sym__list_definition_repeat1] = STATE(459), - [aux_sym__list_decimal_period_repeat1] = STATE(460), - [aux_sym__list_decimal_paren_repeat1] = STATE(461), - [aux_sym__list_decimal_parens_repeat1] = STATE(462), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(463), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(464), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(465), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(466), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(467), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(468), - [aux_sym__list_lower_roman_period_repeat1] = STATE(469), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(470), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(471), - [aux_sym__list_upper_roman_period_repeat1] = STATE(472), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(473), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym__list_dash_repeat1] = STATE(316), + [aux_sym__list_plus_repeat1] = STATE(336), + [aux_sym__list_star_repeat1] = STATE(318), + [aux_sym__list_task_repeat1] = STATE(288), + [aux_sym__list_definition_repeat1] = STATE(456), + [aux_sym__list_decimal_period_repeat1] = STATE(457), + [aux_sym__list_decimal_paren_repeat1] = STATE(458), + [aux_sym__list_decimal_parens_repeat1] = STATE(459), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(460), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(461), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(462), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(463), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(464), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(465), + [aux_sym__list_lower_roman_period_repeat1] = STATE(466), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(467), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(468), + [aux_sym__list_upper_roman_period_repeat1] = STATE(469), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(470), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(471), [aux_sym_table_repeat1] = STATE(234), [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), @@ -9755,93 +9753,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block_attribute_begin] = ACTIONS(384), }, [40] = { - [sym__block_with_heading] = STATE(1039), - [sym__block_element] = STATE(1039), - [sym_heading] = STATE(1039), - [sym_list] = STATE(1039), - [sym__list_dash] = STATE(1008), - [sym__list_item_dash] = STATE(645), - [sym__list_plus] = STATE(1008), - [sym__list_item_plus] = STATE(661), - [sym__list_star] = STATE(1008), - [sym__list_item_star] = STATE(573), - [sym__list_task] = STATE(1008), - [sym__list_item_task] = STATE(590), + [sym__block_with_heading] = STATE(1151), + [sym__block_element] = STATE(1151), + [sym_heading] = STATE(1151), + [sym_list] = STATE(1151), + [sym__list_dash] = STATE(1007), + [sym__list_item_dash] = STATE(595), + [sym__list_plus] = STATE(1007), + [sym__list_item_plus] = STATE(657), + [sym__list_star] = STATE(1007), + [sym__list_item_star] = STATE(570), + [sym__list_task] = STATE(1007), + [sym__list_item_task] = STATE(586), [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(1008), - [sym__list_item_definition] = STATE(740), - [sym__list_decimal_period] = STATE(1008), - [sym__list_item_decimal_period] = STATE(743), - [sym__list_decimal_paren] = STATE(1008), - [sym__list_item_decimal_paren] = STATE(748), - [sym__list_decimal_parens] = STATE(1008), - [sym__list_item_decimal_parens] = STATE(768), - [sym__list_lower_alpha_period] = STATE(1008), - [sym__list_item_lower_alpha_period] = STATE(769), - [sym__list_lower_alpha_paren] = STATE(1008), - [sym__list_item_lower_alpha_paren] = STATE(773), - [sym__list_lower_alpha_parens] = STATE(1008), - [sym__list_item_lower_alpha_parens] = STATE(774), - [sym__list_upper_alpha_period] = STATE(1008), - [sym__list_item_upper_alpha_period] = STATE(782), - [sym__list_upper_alpha_paren] = STATE(1008), - [sym__list_item_upper_alpha_paren] = STATE(783), - [sym__list_upper_alpha_parens] = STATE(1008), - [sym__list_item_upper_alpha_parens] = STATE(786), - [sym__list_lower_roman_period] = STATE(1008), - [sym__list_item_lower_roman_period] = STATE(787), - [sym__list_lower_roman_paren] = STATE(1008), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(1008), - [sym__list_item_lower_roman_parens] = STATE(803), - [sym__list_upper_roman_period] = STATE(1008), - [sym__list_item_upper_roman_period] = STATE(808), - [sym__list_upper_roman_paren] = STATE(1008), - [sym__list_item_upper_roman_paren] = STATE(814), - [sym__list_upper_roman_parens] = STATE(1008), - [sym__list_item_upper_roman_parens] = STATE(819), - [sym_list_item_content] = STATE(578), - [sym_table] = STATE(1039), + [sym__list_definition] = STATE(1007), + [sym__list_item_definition] = STATE(694), + [sym__list_decimal_period] = STATE(1007), + [sym__list_item_decimal_period] = STATE(714), + [sym__list_decimal_paren] = STATE(1007), + [sym__list_item_decimal_paren] = STATE(719), + [sym__list_decimal_parens] = STATE(1007), + [sym__list_item_decimal_parens] = STATE(746), + [sym__list_lower_alpha_period] = STATE(1007), + [sym__list_item_lower_alpha_period] = STATE(748), + [sym__list_lower_alpha_paren] = STATE(1007), + [sym__list_item_lower_alpha_paren] = STATE(749), + [sym__list_lower_alpha_parens] = STATE(1007), + [sym__list_item_lower_alpha_parens] = STATE(753), + [sym__list_upper_alpha_period] = STATE(1007), + [sym__list_item_upper_alpha_period] = STATE(761), + [sym__list_upper_alpha_paren] = STATE(1007), + [sym__list_item_upper_alpha_paren] = STATE(764), + [sym__list_upper_alpha_parens] = STATE(1007), + [sym__list_item_upper_alpha_parens] = STATE(765), + [sym__list_lower_roman_period] = STATE(1007), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(1007), + [sym__list_item_lower_roman_paren] = STATE(769), + [sym__list_lower_roman_parens] = STATE(1007), + [sym__list_item_lower_roman_parens] = STATE(786), + [sym__list_upper_roman_period] = STATE(1007), + [sym__list_item_upper_roman_period] = STATE(791), + [sym__list_upper_roman_paren] = STATE(1007), + [sym__list_item_upper_roman_paren] = STATE(793), + [sym__list_upper_roman_parens] = STATE(1007), + [sym__list_item_upper_roman_parens] = STATE(799), + [sym_list_item_content] = STATE(575), + [sym_table] = STATE(1151), [sym__table_row] = STATE(234), [sym_table_header] = STATE(234), [sym_table_separator] = STATE(234), [sym_table_row] = STATE(234), - [sym_footnote] = STATE(1039), - [sym_footnote_marker_begin] = STATE(1136), - [sym_div] = STATE(1039), - [sym__div_marker_begin] = STATE(1018), - [sym_code_block] = STATE(1039), - [sym_raw_block] = STATE(1039), - [sym_thematic_break] = STATE(1039), - [sym_block_quote] = STATE(1039), + [sym_footnote] = STATE(1151), + [sym_footnote_marker_begin] = STATE(1135), + [sym_div] = STATE(1151), + [sym__div_marker_begin] = STATE(1017), + [sym_code_block] = STATE(1151), + [sym_raw_block] = STATE(1151), + [sym_thematic_break] = STATE(1151), + [sym_block_quote] = STATE(1151), [sym__block_quote_prefix] = STATE(225), - [sym_link_reference_definition] = STATE(1039), - [sym_block_attribute] = STATE(1039), - [sym__paragraph] = STATE(1039), - [sym__paragraph_content] = STATE(724), - [sym__paragraph_inline_content] = STATE(837), - [sym__inline] = STATE(656), + [sym_link_reference_definition] = STATE(1151), + [sym_block_attribute] = STATE(1151), + [sym__paragraph] = STATE(1151), + [sym__paragraph_content] = STATE(690), + [sym__paragraph_inline_content] = STATE(824), + [sym__inline] = STATE(654), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(318), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_star_repeat1] = STATE(320), - [aux_sym__list_task_repeat1] = STATE(287), - [aux_sym__list_definition_repeat1] = STATE(459), - [aux_sym__list_decimal_period_repeat1] = STATE(460), - [aux_sym__list_decimal_paren_repeat1] = STATE(461), - [aux_sym__list_decimal_parens_repeat1] = STATE(462), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(463), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(464), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(465), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(466), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(467), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(468), - [aux_sym__list_lower_roman_period_repeat1] = STATE(469), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(470), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(471), - [aux_sym__list_upper_roman_period_repeat1] = STATE(472), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(473), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym__list_dash_repeat1] = STATE(316), + [aux_sym__list_plus_repeat1] = STATE(336), + [aux_sym__list_star_repeat1] = STATE(318), + [aux_sym__list_task_repeat1] = STATE(288), + [aux_sym__list_definition_repeat1] = STATE(456), + [aux_sym__list_decimal_period_repeat1] = STATE(457), + [aux_sym__list_decimal_paren_repeat1] = STATE(458), + [aux_sym__list_decimal_parens_repeat1] = STATE(459), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(460), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(461), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(462), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(463), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(464), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(465), + [aux_sym__list_lower_roman_period_repeat1] = STATE(466), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(467), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(468), + [aux_sym__list_upper_roman_period_repeat1] = STATE(469), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(470), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(471), [aux_sym_table_repeat1] = STATE(234), [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), @@ -9886,93 +9884,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block_attribute_begin] = ACTIONS(384), }, [41] = { - [sym__block_with_heading] = STATE(1052), - [sym__block_element] = STATE(1052), - [sym_heading] = STATE(1052), - [sym_list] = STATE(1052), - [sym__list_dash] = STATE(1008), - [sym__list_item_dash] = STATE(645), - [sym__list_plus] = STATE(1008), - [sym__list_item_plus] = STATE(661), - [sym__list_star] = STATE(1008), - [sym__list_item_star] = STATE(573), - [sym__list_task] = STATE(1008), - [sym__list_item_task] = STATE(590), + [sym__block_with_heading] = STATE(1051), + [sym__block_element] = STATE(1051), + [sym_heading] = STATE(1051), + [sym_list] = STATE(1051), + [sym__list_dash] = STATE(1007), + [sym__list_item_dash] = STATE(595), + [sym__list_plus] = STATE(1007), + [sym__list_item_plus] = STATE(657), + [sym__list_star] = STATE(1007), + [sym__list_item_star] = STATE(570), + [sym__list_task] = STATE(1007), + [sym__list_item_task] = STATE(586), [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(1008), - [sym__list_item_definition] = STATE(740), - [sym__list_decimal_period] = STATE(1008), - [sym__list_item_decimal_period] = STATE(743), - [sym__list_decimal_paren] = STATE(1008), - [sym__list_item_decimal_paren] = STATE(748), - [sym__list_decimal_parens] = STATE(1008), - [sym__list_item_decimal_parens] = STATE(768), - [sym__list_lower_alpha_period] = STATE(1008), - [sym__list_item_lower_alpha_period] = STATE(769), - [sym__list_lower_alpha_paren] = STATE(1008), - [sym__list_item_lower_alpha_paren] = STATE(773), - [sym__list_lower_alpha_parens] = STATE(1008), - [sym__list_item_lower_alpha_parens] = STATE(774), - [sym__list_upper_alpha_period] = STATE(1008), - [sym__list_item_upper_alpha_period] = STATE(782), - [sym__list_upper_alpha_paren] = STATE(1008), - [sym__list_item_upper_alpha_paren] = STATE(783), - [sym__list_upper_alpha_parens] = STATE(1008), - [sym__list_item_upper_alpha_parens] = STATE(786), - [sym__list_lower_roman_period] = STATE(1008), - [sym__list_item_lower_roman_period] = STATE(787), - [sym__list_lower_roman_paren] = STATE(1008), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(1008), - [sym__list_item_lower_roman_parens] = STATE(803), - [sym__list_upper_roman_period] = STATE(1008), - [sym__list_item_upper_roman_period] = STATE(808), - [sym__list_upper_roman_paren] = STATE(1008), - [sym__list_item_upper_roman_paren] = STATE(814), - [sym__list_upper_roman_parens] = STATE(1008), - [sym__list_item_upper_roman_parens] = STATE(819), - [sym_table] = STATE(1052), + [sym__list_definition] = STATE(1007), + [sym__list_item_definition] = STATE(694), + [sym__list_decimal_period] = STATE(1007), + [sym__list_item_decimal_period] = STATE(714), + [sym__list_decimal_paren] = STATE(1007), + [sym__list_item_decimal_paren] = STATE(719), + [sym__list_decimal_parens] = STATE(1007), + [sym__list_item_decimal_parens] = STATE(746), + [sym__list_lower_alpha_period] = STATE(1007), + [sym__list_item_lower_alpha_period] = STATE(748), + [sym__list_lower_alpha_paren] = STATE(1007), + [sym__list_item_lower_alpha_paren] = STATE(749), + [sym__list_lower_alpha_parens] = STATE(1007), + [sym__list_item_lower_alpha_parens] = STATE(753), + [sym__list_upper_alpha_period] = STATE(1007), + [sym__list_item_upper_alpha_period] = STATE(761), + [sym__list_upper_alpha_paren] = STATE(1007), + [sym__list_item_upper_alpha_paren] = STATE(764), + [sym__list_upper_alpha_parens] = STATE(1007), + [sym__list_item_upper_alpha_parens] = STATE(765), + [sym__list_lower_roman_period] = STATE(1007), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(1007), + [sym__list_item_lower_roman_paren] = STATE(769), + [sym__list_lower_roman_parens] = STATE(1007), + [sym__list_item_lower_roman_parens] = STATE(786), + [sym__list_upper_roman_period] = STATE(1007), + [sym__list_item_upper_roman_period] = STATE(791), + [sym__list_upper_roman_paren] = STATE(1007), + [sym__list_item_upper_roman_paren] = STATE(793), + [sym__list_upper_roman_parens] = STATE(1007), + [sym__list_item_upper_roman_parens] = STATE(799), + [sym_table] = STATE(1051), [sym__table_row] = STATE(234), [sym_table_header] = STATE(234), [sym_table_separator] = STATE(234), [sym_table_row] = STATE(234), - [sym_footnote] = STATE(1052), - [sym_footnote_marker_begin] = STATE(1136), - [sym_footnote_content] = STATE(867), - [sym_div] = STATE(1052), - [sym__div_marker_begin] = STATE(1018), - [sym_code_block] = STATE(1052), - [sym_raw_block] = STATE(1052), - [sym_thematic_break] = STATE(1052), - [sym_block_quote] = STATE(1052), + [sym_footnote] = STATE(1051), + [sym_footnote_marker_begin] = STATE(1135), + [sym_footnote_content] = STATE(747), + [sym_div] = STATE(1051), + [sym__div_marker_begin] = STATE(1017), + [sym_code_block] = STATE(1051), + [sym_raw_block] = STATE(1051), + [sym_thematic_break] = STATE(1051), + [sym_block_quote] = STATE(1051), [sym__block_quote_prefix] = STATE(225), - [sym_link_reference_definition] = STATE(1052), - [sym_block_attribute] = STATE(1052), - [sym__paragraph] = STATE(1052), - [sym__paragraph_content] = STATE(724), - [sym__paragraph_inline_content] = STATE(837), - [sym__inline] = STATE(656), + [sym_link_reference_definition] = STATE(1051), + [sym_block_attribute] = STATE(1051), + [sym__paragraph] = STATE(1051), + [sym__paragraph_content] = STATE(690), + [sym__paragraph_inline_content] = STATE(824), + [sym__inline] = STATE(654), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(318), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_star_repeat1] = STATE(320), - [aux_sym__list_task_repeat1] = STATE(287), - [aux_sym__list_definition_repeat1] = STATE(459), - [aux_sym__list_decimal_period_repeat1] = STATE(460), - [aux_sym__list_decimal_paren_repeat1] = STATE(461), - [aux_sym__list_decimal_parens_repeat1] = STATE(462), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(463), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(464), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(465), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(466), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(467), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(468), - [aux_sym__list_lower_roman_period_repeat1] = STATE(469), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(470), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(471), - [aux_sym__list_upper_roman_period_repeat1] = STATE(472), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(473), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym__list_dash_repeat1] = STATE(316), + [aux_sym__list_plus_repeat1] = STATE(336), + [aux_sym__list_star_repeat1] = STATE(318), + [aux_sym__list_task_repeat1] = STATE(288), + [aux_sym__list_definition_repeat1] = STATE(456), + [aux_sym__list_decimal_period_repeat1] = STATE(457), + [aux_sym__list_decimal_paren_repeat1] = STATE(458), + [aux_sym__list_decimal_parens_repeat1] = STATE(459), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(460), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(461), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(462), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(463), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(464), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(465), + [aux_sym__list_lower_roman_period_repeat1] = STATE(466), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(467), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(468), + [aux_sym__list_upper_roman_period_repeat1] = STATE(469), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(470), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(471), [aux_sym_table_repeat1] = STATE(234), [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), @@ -10017,93 +10015,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block_attribute_begin] = ACTIONS(384), }, [42] = { - [sym__block_with_heading] = STATE(1058), - [sym__block_element] = STATE(1058), - [sym_heading] = STATE(1058), - [sym_list] = STATE(1058), - [sym__list_dash] = STATE(1008), - [sym__list_item_dash] = STATE(645), - [sym__list_plus] = STATE(1008), - [sym__list_item_plus] = STATE(661), - [sym__list_star] = STATE(1008), - [sym__list_item_star] = STATE(573), - [sym__list_task] = STATE(1008), - [sym__list_item_task] = STATE(590), + [sym__block_with_heading] = STATE(1057), + [sym__block_element] = STATE(1057), + [sym_heading] = STATE(1057), + [sym_list] = STATE(1057), + [sym__list_dash] = STATE(1007), + [sym__list_item_dash] = STATE(595), + [sym__list_plus] = STATE(1007), + [sym__list_item_plus] = STATE(657), + [sym__list_star] = STATE(1007), + [sym__list_item_star] = STATE(570), + [sym__list_task] = STATE(1007), + [sym__list_item_task] = STATE(586), [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(1008), - [sym__list_item_definition] = STATE(740), - [sym__list_decimal_period] = STATE(1008), - [sym__list_item_decimal_period] = STATE(743), - [sym__list_decimal_paren] = STATE(1008), - [sym__list_item_decimal_paren] = STATE(748), - [sym__list_decimal_parens] = STATE(1008), - [sym__list_item_decimal_parens] = STATE(768), - [sym__list_lower_alpha_period] = STATE(1008), - [sym__list_item_lower_alpha_period] = STATE(769), - [sym__list_lower_alpha_paren] = STATE(1008), - [sym__list_item_lower_alpha_paren] = STATE(773), - [sym__list_lower_alpha_parens] = STATE(1008), - [sym__list_item_lower_alpha_parens] = STATE(774), - [sym__list_upper_alpha_period] = STATE(1008), - [sym__list_item_upper_alpha_period] = STATE(782), - [sym__list_upper_alpha_paren] = STATE(1008), - [sym__list_item_upper_alpha_paren] = STATE(783), - [sym__list_upper_alpha_parens] = STATE(1008), - [sym__list_item_upper_alpha_parens] = STATE(786), - [sym__list_lower_roman_period] = STATE(1008), - [sym__list_item_lower_roman_period] = STATE(787), - [sym__list_lower_roman_paren] = STATE(1008), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(1008), - [sym__list_item_lower_roman_parens] = STATE(803), - [sym__list_upper_roman_period] = STATE(1008), - [sym__list_item_upper_roman_period] = STATE(808), - [sym__list_upper_roman_paren] = STATE(1008), - [sym__list_item_upper_roman_paren] = STATE(814), - [sym__list_upper_roman_parens] = STATE(1008), - [sym__list_item_upper_roman_parens] = STATE(819), - [sym_list_item_content] = STATE(755), - [sym_table] = STATE(1058), + [sym__list_definition] = STATE(1007), + [sym__list_item_definition] = STATE(694), + [sym__list_decimal_period] = STATE(1007), + [sym__list_item_decimal_period] = STATE(714), + [sym__list_decimal_paren] = STATE(1007), + [sym__list_item_decimal_paren] = STATE(719), + [sym__list_decimal_parens] = STATE(1007), + [sym__list_item_decimal_parens] = STATE(746), + [sym__list_lower_alpha_period] = STATE(1007), + [sym__list_item_lower_alpha_period] = STATE(748), + [sym__list_lower_alpha_paren] = STATE(1007), + [sym__list_item_lower_alpha_paren] = STATE(749), + [sym__list_lower_alpha_parens] = STATE(1007), + [sym__list_item_lower_alpha_parens] = STATE(753), + [sym__list_upper_alpha_period] = STATE(1007), + [sym__list_item_upper_alpha_period] = STATE(761), + [sym__list_upper_alpha_paren] = STATE(1007), + [sym__list_item_upper_alpha_paren] = STATE(764), + [sym__list_upper_alpha_parens] = STATE(1007), + [sym__list_item_upper_alpha_parens] = STATE(765), + [sym__list_lower_roman_period] = STATE(1007), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(1007), + [sym__list_item_lower_roman_paren] = STATE(769), + [sym__list_lower_roman_parens] = STATE(1007), + [sym__list_item_lower_roman_parens] = STATE(786), + [sym__list_upper_roman_period] = STATE(1007), + [sym__list_item_upper_roman_period] = STATE(791), + [sym__list_upper_roman_paren] = STATE(1007), + [sym__list_item_upper_roman_paren] = STATE(793), + [sym__list_upper_roman_parens] = STATE(1007), + [sym__list_item_upper_roman_parens] = STATE(799), + [sym_list_item_content] = STATE(834), + [sym_table] = STATE(1057), [sym__table_row] = STATE(234), [sym_table_header] = STATE(234), [sym_table_separator] = STATE(234), [sym_table_row] = STATE(234), - [sym_footnote] = STATE(1058), - [sym_footnote_marker_begin] = STATE(1136), - [sym_div] = STATE(1058), - [sym__div_marker_begin] = STATE(1018), - [sym_code_block] = STATE(1058), - [sym_raw_block] = STATE(1058), - [sym_thematic_break] = STATE(1058), - [sym_block_quote] = STATE(1058), + [sym_footnote] = STATE(1057), + [sym_footnote_marker_begin] = STATE(1135), + [sym_div] = STATE(1057), + [sym__div_marker_begin] = STATE(1017), + [sym_code_block] = STATE(1057), + [sym_raw_block] = STATE(1057), + [sym_thematic_break] = STATE(1057), + [sym_block_quote] = STATE(1057), [sym__block_quote_prefix] = STATE(225), - [sym_link_reference_definition] = STATE(1058), - [sym_block_attribute] = STATE(1058), - [sym__paragraph] = STATE(1058), - [sym__paragraph_content] = STATE(724), - [sym__paragraph_inline_content] = STATE(837), - [sym__inline] = STATE(656), + [sym_link_reference_definition] = STATE(1057), + [sym_block_attribute] = STATE(1057), + [sym__paragraph] = STATE(1057), + [sym__paragraph_content] = STATE(690), + [sym__paragraph_inline_content] = STATE(824), + [sym__inline] = STATE(654), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(318), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_star_repeat1] = STATE(320), - [aux_sym__list_task_repeat1] = STATE(287), - [aux_sym__list_definition_repeat1] = STATE(459), - [aux_sym__list_decimal_period_repeat1] = STATE(460), - [aux_sym__list_decimal_paren_repeat1] = STATE(461), - [aux_sym__list_decimal_parens_repeat1] = STATE(462), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(463), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(464), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(465), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(466), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(467), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(468), - [aux_sym__list_lower_roman_period_repeat1] = STATE(469), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(470), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(471), - [aux_sym__list_upper_roman_period_repeat1] = STATE(472), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(473), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym__list_dash_repeat1] = STATE(316), + [aux_sym__list_plus_repeat1] = STATE(336), + [aux_sym__list_star_repeat1] = STATE(318), + [aux_sym__list_task_repeat1] = STATE(288), + [aux_sym__list_definition_repeat1] = STATE(456), + [aux_sym__list_decimal_period_repeat1] = STATE(457), + [aux_sym__list_decimal_paren_repeat1] = STATE(458), + [aux_sym__list_decimal_parens_repeat1] = STATE(459), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(460), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(461), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(462), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(463), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(464), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(465), + [aux_sym__list_lower_roman_period_repeat1] = STATE(466), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(467), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(468), + [aux_sym__list_upper_roman_period_repeat1] = STATE(469), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(470), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(471), [aux_sym_table_repeat1] = STATE(234), [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), @@ -10148,93 +10146,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block_attribute_begin] = ACTIONS(384), }, [43] = { - [sym__block_with_heading] = STATE(1103), - [sym__block_element] = STATE(1103), - [sym_heading] = STATE(1103), - [sym_list] = STATE(1103), - [sym__list_dash] = STATE(1008), - [sym__list_item_dash] = STATE(645), - [sym__list_plus] = STATE(1008), - [sym__list_item_plus] = STATE(661), - [sym__list_star] = STATE(1008), - [sym__list_item_star] = STATE(573), - [sym__list_task] = STATE(1008), - [sym__list_item_task] = STATE(590), + [sym__block_with_heading] = STATE(1102), + [sym__block_element] = STATE(1102), + [sym_heading] = STATE(1102), + [sym_list] = STATE(1102), + [sym__list_dash] = STATE(1007), + [sym__list_item_dash] = STATE(595), + [sym__list_plus] = STATE(1007), + [sym__list_item_plus] = STATE(657), + [sym__list_star] = STATE(1007), + [sym__list_item_star] = STATE(570), + [sym__list_task] = STATE(1007), + [sym__list_item_task] = STATE(586), [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(1008), - [sym__list_item_definition] = STATE(740), - [sym__list_decimal_period] = STATE(1008), - [sym__list_item_decimal_period] = STATE(743), - [sym__list_decimal_paren] = STATE(1008), - [sym__list_item_decimal_paren] = STATE(748), - [sym__list_decimal_parens] = STATE(1008), - [sym__list_item_decimal_parens] = STATE(768), - [sym__list_lower_alpha_period] = STATE(1008), - [sym__list_item_lower_alpha_period] = STATE(769), - [sym__list_lower_alpha_paren] = STATE(1008), - [sym__list_item_lower_alpha_paren] = STATE(773), - [sym__list_lower_alpha_parens] = STATE(1008), - [sym__list_item_lower_alpha_parens] = STATE(774), - [sym__list_upper_alpha_period] = STATE(1008), - [sym__list_item_upper_alpha_period] = STATE(782), - [sym__list_upper_alpha_paren] = STATE(1008), - [sym__list_item_upper_alpha_paren] = STATE(783), - [sym__list_upper_alpha_parens] = STATE(1008), - [sym__list_item_upper_alpha_parens] = STATE(786), - [sym__list_lower_roman_period] = STATE(1008), - [sym__list_item_lower_roman_period] = STATE(787), - [sym__list_lower_roman_paren] = STATE(1008), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(1008), - [sym__list_item_lower_roman_parens] = STATE(803), - [sym__list_upper_roman_period] = STATE(1008), - [sym__list_item_upper_roman_period] = STATE(808), - [sym__list_upper_roman_paren] = STATE(1008), - [sym__list_item_upper_roman_paren] = STATE(814), - [sym__list_upper_roman_parens] = STATE(1008), - [sym__list_item_upper_roman_parens] = STATE(819), - [sym_list_item_content] = STATE(606), - [sym_table] = STATE(1103), + [sym__list_definition] = STATE(1007), + [sym__list_item_definition] = STATE(694), + [sym__list_decimal_period] = STATE(1007), + [sym__list_item_decimal_period] = STATE(714), + [sym__list_decimal_paren] = STATE(1007), + [sym__list_item_decimal_paren] = STATE(719), + [sym__list_decimal_parens] = STATE(1007), + [sym__list_item_decimal_parens] = STATE(746), + [sym__list_lower_alpha_period] = STATE(1007), + [sym__list_item_lower_alpha_period] = STATE(748), + [sym__list_lower_alpha_paren] = STATE(1007), + [sym__list_item_lower_alpha_paren] = STATE(749), + [sym__list_lower_alpha_parens] = STATE(1007), + [sym__list_item_lower_alpha_parens] = STATE(753), + [sym__list_upper_alpha_period] = STATE(1007), + [sym__list_item_upper_alpha_period] = STATE(761), + [sym__list_upper_alpha_paren] = STATE(1007), + [sym__list_item_upper_alpha_paren] = STATE(764), + [sym__list_upper_alpha_parens] = STATE(1007), + [sym__list_item_upper_alpha_parens] = STATE(765), + [sym__list_lower_roman_period] = STATE(1007), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(1007), + [sym__list_item_lower_roman_paren] = STATE(769), + [sym__list_lower_roman_parens] = STATE(1007), + [sym__list_item_lower_roman_parens] = STATE(786), + [sym__list_upper_roman_period] = STATE(1007), + [sym__list_item_upper_roman_period] = STATE(791), + [sym__list_upper_roman_paren] = STATE(1007), + [sym__list_item_upper_roman_paren] = STATE(793), + [sym__list_upper_roman_parens] = STATE(1007), + [sym__list_item_upper_roman_parens] = STATE(799), + [sym_list_item_content] = STATE(603), + [sym_table] = STATE(1102), [sym__table_row] = STATE(234), [sym_table_header] = STATE(234), [sym_table_separator] = STATE(234), [sym_table_row] = STATE(234), - [sym_footnote] = STATE(1103), - [sym_footnote_marker_begin] = STATE(1136), - [sym_div] = STATE(1103), - [sym__div_marker_begin] = STATE(1018), - [sym_code_block] = STATE(1103), - [sym_raw_block] = STATE(1103), - [sym_thematic_break] = STATE(1103), - [sym_block_quote] = STATE(1103), + [sym_footnote] = STATE(1102), + [sym_footnote_marker_begin] = STATE(1135), + [sym_div] = STATE(1102), + [sym__div_marker_begin] = STATE(1017), + [sym_code_block] = STATE(1102), + [sym_raw_block] = STATE(1102), + [sym_thematic_break] = STATE(1102), + [sym_block_quote] = STATE(1102), [sym__block_quote_prefix] = STATE(225), - [sym_link_reference_definition] = STATE(1103), - [sym_block_attribute] = STATE(1103), - [sym__paragraph] = STATE(1103), - [sym__paragraph_content] = STATE(724), - [sym__paragraph_inline_content] = STATE(837), - [sym__inline] = STATE(656), + [sym_link_reference_definition] = STATE(1102), + [sym_block_attribute] = STATE(1102), + [sym__paragraph] = STATE(1102), + [sym__paragraph_content] = STATE(690), + [sym__paragraph_inline_content] = STATE(824), + [sym__inline] = STATE(654), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(318), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_star_repeat1] = STATE(320), - [aux_sym__list_task_repeat1] = STATE(287), - [aux_sym__list_definition_repeat1] = STATE(459), - [aux_sym__list_decimal_period_repeat1] = STATE(460), - [aux_sym__list_decimal_paren_repeat1] = STATE(461), - [aux_sym__list_decimal_parens_repeat1] = STATE(462), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(463), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(464), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(465), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(466), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(467), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(468), - [aux_sym__list_lower_roman_period_repeat1] = STATE(469), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(470), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(471), - [aux_sym__list_upper_roman_period_repeat1] = STATE(472), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(473), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym__list_dash_repeat1] = STATE(316), + [aux_sym__list_plus_repeat1] = STATE(336), + [aux_sym__list_star_repeat1] = STATE(318), + [aux_sym__list_task_repeat1] = STATE(288), + [aux_sym__list_definition_repeat1] = STATE(456), + [aux_sym__list_decimal_period_repeat1] = STATE(457), + [aux_sym__list_decimal_paren_repeat1] = STATE(458), + [aux_sym__list_decimal_parens_repeat1] = STATE(459), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(460), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(461), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(462), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(463), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(464), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(465), + [aux_sym__list_lower_roman_period_repeat1] = STATE(466), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(467), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(468), + [aux_sym__list_upper_roman_period_repeat1] = STATE(469), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(470), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(471), [aux_sym_table_repeat1] = STATE(234), [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), @@ -10279,93 +10277,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block_attribute_begin] = ACTIONS(384), }, [44] = { - [sym__block_with_heading] = STATE(1071), - [sym__block_element] = STATE(1071), - [sym_heading] = STATE(1071), - [sym_list] = STATE(1071), - [sym__list_dash] = STATE(1008), - [sym__list_item_dash] = STATE(645), - [sym__list_plus] = STATE(1008), - [sym__list_item_plus] = STATE(661), - [sym__list_star] = STATE(1008), - [sym__list_item_star] = STATE(573), - [sym__list_task] = STATE(1008), - [sym__list_item_task] = STATE(590), + [sym__block_with_heading] = STATE(1070), + [sym__block_element] = STATE(1070), + [sym_heading] = STATE(1070), + [sym_list] = STATE(1070), + [sym__list_dash] = STATE(1007), + [sym__list_item_dash] = STATE(595), + [sym__list_plus] = STATE(1007), + [sym__list_item_plus] = STATE(657), + [sym__list_star] = STATE(1007), + [sym__list_item_star] = STATE(570), + [sym__list_task] = STATE(1007), + [sym__list_item_task] = STATE(586), [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(1008), - [sym__list_item_definition] = STATE(740), - [sym__list_decimal_period] = STATE(1008), - [sym__list_item_decimal_period] = STATE(743), - [sym__list_decimal_paren] = STATE(1008), - [sym__list_item_decimal_paren] = STATE(748), - [sym__list_decimal_parens] = STATE(1008), - [sym__list_item_decimal_parens] = STATE(768), - [sym__list_lower_alpha_period] = STATE(1008), - [sym__list_item_lower_alpha_period] = STATE(769), - [sym__list_lower_alpha_paren] = STATE(1008), - [sym__list_item_lower_alpha_paren] = STATE(773), - [sym__list_lower_alpha_parens] = STATE(1008), - [sym__list_item_lower_alpha_parens] = STATE(774), - [sym__list_upper_alpha_period] = STATE(1008), - [sym__list_item_upper_alpha_period] = STATE(782), - [sym__list_upper_alpha_paren] = STATE(1008), - [sym__list_item_upper_alpha_paren] = STATE(783), - [sym__list_upper_alpha_parens] = STATE(1008), - [sym__list_item_upper_alpha_parens] = STATE(786), - [sym__list_lower_roman_period] = STATE(1008), - [sym__list_item_lower_roman_period] = STATE(787), - [sym__list_lower_roman_paren] = STATE(1008), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(1008), - [sym__list_item_lower_roman_parens] = STATE(803), - [sym__list_upper_roman_period] = STATE(1008), - [sym__list_item_upper_roman_period] = STATE(808), - [sym__list_upper_roman_paren] = STATE(1008), - [sym__list_item_upper_roman_paren] = STATE(814), - [sym__list_upper_roman_parens] = STATE(1008), - [sym__list_item_upper_roman_parens] = STATE(819), - [sym_table] = STATE(1071), + [sym__list_definition] = STATE(1007), + [sym__list_item_definition] = STATE(694), + [sym__list_decimal_period] = STATE(1007), + [sym__list_item_decimal_period] = STATE(714), + [sym__list_decimal_paren] = STATE(1007), + [sym__list_item_decimal_paren] = STATE(719), + [sym__list_decimal_parens] = STATE(1007), + [sym__list_item_decimal_parens] = STATE(746), + [sym__list_lower_alpha_period] = STATE(1007), + [sym__list_item_lower_alpha_period] = STATE(748), + [sym__list_lower_alpha_paren] = STATE(1007), + [sym__list_item_lower_alpha_paren] = STATE(749), + [sym__list_lower_alpha_parens] = STATE(1007), + [sym__list_item_lower_alpha_parens] = STATE(753), + [sym__list_upper_alpha_period] = STATE(1007), + [sym__list_item_upper_alpha_period] = STATE(761), + [sym__list_upper_alpha_paren] = STATE(1007), + [sym__list_item_upper_alpha_paren] = STATE(764), + [sym__list_upper_alpha_parens] = STATE(1007), + [sym__list_item_upper_alpha_parens] = STATE(765), + [sym__list_lower_roman_period] = STATE(1007), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(1007), + [sym__list_item_lower_roman_paren] = STATE(769), + [sym__list_lower_roman_parens] = STATE(1007), + [sym__list_item_lower_roman_parens] = STATE(786), + [sym__list_upper_roman_period] = STATE(1007), + [sym__list_item_upper_roman_period] = STATE(791), + [sym__list_upper_roman_paren] = STATE(1007), + [sym__list_item_upper_roman_paren] = STATE(793), + [sym__list_upper_roman_parens] = STATE(1007), + [sym__list_item_upper_roman_parens] = STATE(799), + [sym_table] = STATE(1070), [sym__table_row] = STATE(234), [sym_table_header] = STATE(234), [sym_table_separator] = STATE(234), [sym_table_row] = STATE(234), - [sym_footnote] = STATE(1071), - [sym_footnote_marker_begin] = STATE(1136), + [sym_footnote] = STATE(1070), + [sym_footnote_marker_begin] = STATE(1135), [sym_footnote_content] = STATE(173), - [sym_div] = STATE(1071), - [sym__div_marker_begin] = STATE(1018), - [sym_code_block] = STATE(1071), - [sym_raw_block] = STATE(1071), - [sym_thematic_break] = STATE(1071), - [sym_block_quote] = STATE(1071), + [sym_div] = STATE(1070), + [sym__div_marker_begin] = STATE(1017), + [sym_code_block] = STATE(1070), + [sym_raw_block] = STATE(1070), + [sym_thematic_break] = STATE(1070), + [sym_block_quote] = STATE(1070), [sym__block_quote_prefix] = STATE(225), - [sym_link_reference_definition] = STATE(1071), - [sym_block_attribute] = STATE(1071), - [sym__paragraph] = STATE(1071), - [sym__paragraph_content] = STATE(724), - [sym__paragraph_inline_content] = STATE(837), - [sym__inline] = STATE(656), + [sym_link_reference_definition] = STATE(1070), + [sym_block_attribute] = STATE(1070), + [sym__paragraph] = STATE(1070), + [sym__paragraph_content] = STATE(690), + [sym__paragraph_inline_content] = STATE(824), + [sym__inline] = STATE(654), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(318), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_star_repeat1] = STATE(320), - [aux_sym__list_task_repeat1] = STATE(287), - [aux_sym__list_definition_repeat1] = STATE(459), - [aux_sym__list_decimal_period_repeat1] = STATE(460), - [aux_sym__list_decimal_paren_repeat1] = STATE(461), - [aux_sym__list_decimal_parens_repeat1] = STATE(462), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(463), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(464), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(465), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(466), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(467), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(468), - [aux_sym__list_lower_roman_period_repeat1] = STATE(469), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(470), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(471), - [aux_sym__list_upper_roman_period_repeat1] = STATE(472), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(473), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym__list_dash_repeat1] = STATE(316), + [aux_sym__list_plus_repeat1] = STATE(336), + [aux_sym__list_star_repeat1] = STATE(318), + [aux_sym__list_task_repeat1] = STATE(288), + [aux_sym__list_definition_repeat1] = STATE(456), + [aux_sym__list_decimal_period_repeat1] = STATE(457), + [aux_sym__list_decimal_paren_repeat1] = STATE(458), + [aux_sym__list_decimal_parens_repeat1] = STATE(459), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(460), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(461), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(462), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(463), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(464), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(465), + [aux_sym__list_lower_roman_period_repeat1] = STATE(466), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(467), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(468), + [aux_sym__list_upper_roman_period_repeat1] = STATE(469), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(470), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(471), [aux_sym_table_repeat1] = STATE(234), [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), @@ -10410,93 +10408,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block_attribute_begin] = ACTIONS(384), }, [45] = { - [sym__block_with_heading] = STATE(1076), - [sym__block_element] = STATE(1076), - [sym_heading] = STATE(1076), - [sym_list] = STATE(1076), - [sym__list_dash] = STATE(1008), - [sym__list_item_dash] = STATE(645), - [sym__list_plus] = STATE(1008), - [sym__list_item_plus] = STATE(661), - [sym__list_star] = STATE(1008), - [sym__list_item_star] = STATE(573), - [sym__list_task] = STATE(1008), - [sym__list_item_task] = STATE(590), + [sym__block_with_heading] = STATE(1075), + [sym__block_element] = STATE(1075), + [sym_heading] = STATE(1075), + [sym_list] = STATE(1075), + [sym__list_dash] = STATE(1007), + [sym__list_item_dash] = STATE(595), + [sym__list_plus] = STATE(1007), + [sym__list_item_plus] = STATE(657), + [sym__list_star] = STATE(1007), + [sym__list_item_star] = STATE(570), + [sym__list_task] = STATE(1007), + [sym__list_item_task] = STATE(586), [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(1008), - [sym__list_item_definition] = STATE(740), - [sym__list_decimal_period] = STATE(1008), - [sym__list_item_decimal_period] = STATE(743), - [sym__list_decimal_paren] = STATE(1008), - [sym__list_item_decimal_paren] = STATE(748), - [sym__list_decimal_parens] = STATE(1008), - [sym__list_item_decimal_parens] = STATE(768), - [sym__list_lower_alpha_period] = STATE(1008), - [sym__list_item_lower_alpha_period] = STATE(769), - [sym__list_lower_alpha_paren] = STATE(1008), - [sym__list_item_lower_alpha_paren] = STATE(773), - [sym__list_lower_alpha_parens] = STATE(1008), - [sym__list_item_lower_alpha_parens] = STATE(774), - [sym__list_upper_alpha_period] = STATE(1008), - [sym__list_item_upper_alpha_period] = STATE(782), - [sym__list_upper_alpha_paren] = STATE(1008), - [sym__list_item_upper_alpha_paren] = STATE(783), - [sym__list_upper_alpha_parens] = STATE(1008), - [sym__list_item_upper_alpha_parens] = STATE(786), - [sym__list_lower_roman_period] = STATE(1008), - [sym__list_item_lower_roman_period] = STATE(787), - [sym__list_lower_roman_paren] = STATE(1008), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(1008), - [sym__list_item_lower_roman_parens] = STATE(803), - [sym__list_upper_roman_period] = STATE(1008), - [sym__list_item_upper_roman_period] = STATE(808), - [sym__list_upper_roman_paren] = STATE(1008), - [sym__list_item_upper_roman_paren] = STATE(814), - [sym__list_upper_roman_parens] = STATE(1008), - [sym__list_item_upper_roman_parens] = STATE(819), - [sym_list_item_content] = STATE(756), - [sym_table] = STATE(1076), + [sym__list_definition] = STATE(1007), + [sym__list_item_definition] = STATE(694), + [sym__list_decimal_period] = STATE(1007), + [sym__list_item_decimal_period] = STATE(714), + [sym__list_decimal_paren] = STATE(1007), + [sym__list_item_decimal_paren] = STATE(719), + [sym__list_decimal_parens] = STATE(1007), + [sym__list_item_decimal_parens] = STATE(746), + [sym__list_lower_alpha_period] = STATE(1007), + [sym__list_item_lower_alpha_period] = STATE(748), + [sym__list_lower_alpha_paren] = STATE(1007), + [sym__list_item_lower_alpha_paren] = STATE(749), + [sym__list_lower_alpha_parens] = STATE(1007), + [sym__list_item_lower_alpha_parens] = STATE(753), + [sym__list_upper_alpha_period] = STATE(1007), + [sym__list_item_upper_alpha_period] = STATE(761), + [sym__list_upper_alpha_paren] = STATE(1007), + [sym__list_item_upper_alpha_paren] = STATE(764), + [sym__list_upper_alpha_parens] = STATE(1007), + [sym__list_item_upper_alpha_parens] = STATE(765), + [sym__list_lower_roman_period] = STATE(1007), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(1007), + [sym__list_item_lower_roman_paren] = STATE(769), + [sym__list_lower_roman_parens] = STATE(1007), + [sym__list_item_lower_roman_parens] = STATE(786), + [sym__list_upper_roman_period] = STATE(1007), + [sym__list_item_upper_roman_period] = STATE(791), + [sym__list_upper_roman_paren] = STATE(1007), + [sym__list_item_upper_roman_paren] = STATE(793), + [sym__list_upper_roman_parens] = STATE(1007), + [sym__list_item_upper_roman_parens] = STATE(799), + [sym_list_item_content] = STATE(840), + [sym_table] = STATE(1075), [sym__table_row] = STATE(234), [sym_table_header] = STATE(234), [sym_table_separator] = STATE(234), [sym_table_row] = STATE(234), - [sym_footnote] = STATE(1076), - [sym_footnote_marker_begin] = STATE(1136), - [sym_div] = STATE(1076), - [sym__div_marker_begin] = STATE(1018), - [sym_code_block] = STATE(1076), - [sym_raw_block] = STATE(1076), - [sym_thematic_break] = STATE(1076), - [sym_block_quote] = STATE(1076), + [sym_footnote] = STATE(1075), + [sym_footnote_marker_begin] = STATE(1135), + [sym_div] = STATE(1075), + [sym__div_marker_begin] = STATE(1017), + [sym_code_block] = STATE(1075), + [sym_raw_block] = STATE(1075), + [sym_thematic_break] = STATE(1075), + [sym_block_quote] = STATE(1075), [sym__block_quote_prefix] = STATE(225), - [sym_link_reference_definition] = STATE(1076), - [sym_block_attribute] = STATE(1076), - [sym__paragraph] = STATE(1076), - [sym__paragraph_content] = STATE(724), - [sym__paragraph_inline_content] = STATE(837), - [sym__inline] = STATE(656), + [sym_link_reference_definition] = STATE(1075), + [sym_block_attribute] = STATE(1075), + [sym__paragraph] = STATE(1075), + [sym__paragraph_content] = STATE(690), + [sym__paragraph_inline_content] = STATE(824), + [sym__inline] = STATE(654), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(318), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_star_repeat1] = STATE(320), - [aux_sym__list_task_repeat1] = STATE(287), - [aux_sym__list_definition_repeat1] = STATE(459), - [aux_sym__list_decimal_period_repeat1] = STATE(460), - [aux_sym__list_decimal_paren_repeat1] = STATE(461), - [aux_sym__list_decimal_parens_repeat1] = STATE(462), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(463), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(464), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(465), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(466), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(467), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(468), - [aux_sym__list_lower_roman_period_repeat1] = STATE(469), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(470), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(471), - [aux_sym__list_upper_roman_period_repeat1] = STATE(472), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(473), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym__list_dash_repeat1] = STATE(316), + [aux_sym__list_plus_repeat1] = STATE(336), + [aux_sym__list_star_repeat1] = STATE(318), + [aux_sym__list_task_repeat1] = STATE(288), + [aux_sym__list_definition_repeat1] = STATE(456), + [aux_sym__list_decimal_period_repeat1] = STATE(457), + [aux_sym__list_decimal_paren_repeat1] = STATE(458), + [aux_sym__list_decimal_parens_repeat1] = STATE(459), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(460), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(461), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(462), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(463), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(464), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(465), + [aux_sym__list_lower_roman_period_repeat1] = STATE(466), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(467), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(468), + [aux_sym__list_upper_roman_period_repeat1] = STATE(469), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(470), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(471), [aux_sym_table_repeat1] = STATE(234), [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), @@ -10541,93 +10539,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block_attribute_begin] = ACTIONS(384), }, [46] = { - [sym__block_with_heading] = STATE(1090), - [sym__block_element] = STATE(1090), - [sym_heading] = STATE(1090), - [sym_list] = STATE(1090), - [sym__list_dash] = STATE(1008), - [sym__list_item_dash] = STATE(645), - [sym__list_plus] = STATE(1008), - [sym__list_item_plus] = STATE(661), - [sym__list_star] = STATE(1008), - [sym__list_item_star] = STATE(573), - [sym__list_task] = STATE(1008), - [sym__list_item_task] = STATE(590), + [sym__block_with_heading] = STATE(1089), + [sym__block_element] = STATE(1089), + [sym_heading] = STATE(1089), + [sym_list] = STATE(1089), + [sym__list_dash] = STATE(1007), + [sym__list_item_dash] = STATE(595), + [sym__list_plus] = STATE(1007), + [sym__list_item_plus] = STATE(657), + [sym__list_star] = STATE(1007), + [sym__list_item_star] = STATE(570), + [sym__list_task] = STATE(1007), + [sym__list_item_task] = STATE(586), [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(1008), - [sym__list_item_definition] = STATE(740), - [sym__list_decimal_period] = STATE(1008), - [sym__list_item_decimal_period] = STATE(743), - [sym__list_decimal_paren] = STATE(1008), - [sym__list_item_decimal_paren] = STATE(748), - [sym__list_decimal_parens] = STATE(1008), - [sym__list_item_decimal_parens] = STATE(768), - [sym__list_lower_alpha_period] = STATE(1008), - [sym__list_item_lower_alpha_period] = STATE(769), - [sym__list_lower_alpha_paren] = STATE(1008), - [sym__list_item_lower_alpha_paren] = STATE(773), - [sym__list_lower_alpha_parens] = STATE(1008), - [sym__list_item_lower_alpha_parens] = STATE(774), - [sym__list_upper_alpha_period] = STATE(1008), - [sym__list_item_upper_alpha_period] = STATE(782), - [sym__list_upper_alpha_paren] = STATE(1008), - [sym__list_item_upper_alpha_paren] = STATE(783), - [sym__list_upper_alpha_parens] = STATE(1008), - [sym__list_item_upper_alpha_parens] = STATE(786), - [sym__list_lower_roman_period] = STATE(1008), - [sym__list_item_lower_roman_period] = STATE(787), - [sym__list_lower_roman_paren] = STATE(1008), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(1008), - [sym__list_item_lower_roman_parens] = STATE(803), - [sym__list_upper_roman_period] = STATE(1008), - [sym__list_item_upper_roman_period] = STATE(808), - [sym__list_upper_roman_paren] = STATE(1008), - [sym__list_item_upper_roman_paren] = STATE(814), - [sym__list_upper_roman_parens] = STATE(1008), - [sym__list_item_upper_roman_parens] = STATE(819), - [sym_list_item_content] = STATE(757), - [sym_table] = STATE(1090), + [sym__list_definition] = STATE(1007), + [sym__list_item_definition] = STATE(694), + [sym__list_decimal_period] = STATE(1007), + [sym__list_item_decimal_period] = STATE(714), + [sym__list_decimal_paren] = STATE(1007), + [sym__list_item_decimal_paren] = STATE(719), + [sym__list_decimal_parens] = STATE(1007), + [sym__list_item_decimal_parens] = STATE(746), + [sym__list_lower_alpha_period] = STATE(1007), + [sym__list_item_lower_alpha_period] = STATE(748), + [sym__list_lower_alpha_paren] = STATE(1007), + [sym__list_item_lower_alpha_paren] = STATE(749), + [sym__list_lower_alpha_parens] = STATE(1007), + [sym__list_item_lower_alpha_parens] = STATE(753), + [sym__list_upper_alpha_period] = STATE(1007), + [sym__list_item_upper_alpha_period] = STATE(761), + [sym__list_upper_alpha_paren] = STATE(1007), + [sym__list_item_upper_alpha_paren] = STATE(764), + [sym__list_upper_alpha_parens] = STATE(1007), + [sym__list_item_upper_alpha_parens] = STATE(765), + [sym__list_lower_roman_period] = STATE(1007), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(1007), + [sym__list_item_lower_roman_paren] = STATE(769), + [sym__list_lower_roman_parens] = STATE(1007), + [sym__list_item_lower_roman_parens] = STATE(786), + [sym__list_upper_roman_period] = STATE(1007), + [sym__list_item_upper_roman_period] = STATE(791), + [sym__list_upper_roman_paren] = STATE(1007), + [sym__list_item_upper_roman_paren] = STATE(793), + [sym__list_upper_roman_parens] = STATE(1007), + [sym__list_item_upper_roman_parens] = STATE(799), + [sym_list_item_content] = STATE(841), + [sym_table] = STATE(1089), [sym__table_row] = STATE(234), [sym_table_header] = STATE(234), [sym_table_separator] = STATE(234), [sym_table_row] = STATE(234), - [sym_footnote] = STATE(1090), - [sym_footnote_marker_begin] = STATE(1136), - [sym_div] = STATE(1090), - [sym__div_marker_begin] = STATE(1018), - [sym_code_block] = STATE(1090), - [sym_raw_block] = STATE(1090), - [sym_thematic_break] = STATE(1090), - [sym_block_quote] = STATE(1090), + [sym_footnote] = STATE(1089), + [sym_footnote_marker_begin] = STATE(1135), + [sym_div] = STATE(1089), + [sym__div_marker_begin] = STATE(1017), + [sym_code_block] = STATE(1089), + [sym_raw_block] = STATE(1089), + [sym_thematic_break] = STATE(1089), + [sym_block_quote] = STATE(1089), [sym__block_quote_prefix] = STATE(225), - [sym_link_reference_definition] = STATE(1090), - [sym_block_attribute] = STATE(1090), - [sym__paragraph] = STATE(1090), - [sym__paragraph_content] = STATE(724), - [sym__paragraph_inline_content] = STATE(837), - [sym__inline] = STATE(656), + [sym_link_reference_definition] = STATE(1089), + [sym_block_attribute] = STATE(1089), + [sym__paragraph] = STATE(1089), + [sym__paragraph_content] = STATE(690), + [sym__paragraph_inline_content] = STATE(824), + [sym__inline] = STATE(654), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(318), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_star_repeat1] = STATE(320), - [aux_sym__list_task_repeat1] = STATE(287), - [aux_sym__list_definition_repeat1] = STATE(459), - [aux_sym__list_decimal_period_repeat1] = STATE(460), - [aux_sym__list_decimal_paren_repeat1] = STATE(461), - [aux_sym__list_decimal_parens_repeat1] = STATE(462), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(463), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(464), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(465), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(466), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(467), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(468), - [aux_sym__list_lower_roman_period_repeat1] = STATE(469), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(470), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(471), - [aux_sym__list_upper_roman_period_repeat1] = STATE(472), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(473), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym__list_dash_repeat1] = STATE(316), + [aux_sym__list_plus_repeat1] = STATE(336), + [aux_sym__list_star_repeat1] = STATE(318), + [aux_sym__list_task_repeat1] = STATE(288), + [aux_sym__list_definition_repeat1] = STATE(456), + [aux_sym__list_decimal_period_repeat1] = STATE(457), + [aux_sym__list_decimal_paren_repeat1] = STATE(458), + [aux_sym__list_decimal_parens_repeat1] = STATE(459), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(460), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(461), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(462), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(463), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(464), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(465), + [aux_sym__list_lower_roman_period_repeat1] = STATE(466), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(467), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(468), + [aux_sym__list_upper_roman_period_repeat1] = STATE(469), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(470), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(471), [aux_sym_table_repeat1] = STATE(234), [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), @@ -10672,93 +10670,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block_attribute_begin] = ACTIONS(384), }, [47] = { - [sym__block_with_heading] = STATE(1091), - [sym__block_element] = STATE(1091), - [sym_heading] = STATE(1091), - [sym_list] = STATE(1091), - [sym__list_dash] = STATE(1008), - [sym__list_item_dash] = STATE(645), - [sym__list_plus] = STATE(1008), - [sym__list_item_plus] = STATE(661), - [sym__list_star] = STATE(1008), - [sym__list_item_star] = STATE(573), - [sym__list_task] = STATE(1008), - [sym__list_item_task] = STATE(590), + [sym__block_with_heading] = STATE(1090), + [sym__block_element] = STATE(1090), + [sym_heading] = STATE(1090), + [sym_list] = STATE(1090), + [sym__list_dash] = STATE(1007), + [sym__list_item_dash] = STATE(595), + [sym__list_plus] = STATE(1007), + [sym__list_item_plus] = STATE(657), + [sym__list_star] = STATE(1007), + [sym__list_item_star] = STATE(570), + [sym__list_task] = STATE(1007), + [sym__list_item_task] = STATE(586), [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(1008), - [sym__list_item_definition] = STATE(740), - [sym__list_decimal_period] = STATE(1008), - [sym__list_item_decimal_period] = STATE(743), - [sym__list_decimal_paren] = STATE(1008), - [sym__list_item_decimal_paren] = STATE(748), - [sym__list_decimal_parens] = STATE(1008), - [sym__list_item_decimal_parens] = STATE(768), - [sym__list_lower_alpha_period] = STATE(1008), - [sym__list_item_lower_alpha_period] = STATE(769), - [sym__list_lower_alpha_paren] = STATE(1008), - [sym__list_item_lower_alpha_paren] = STATE(773), - [sym__list_lower_alpha_parens] = STATE(1008), - [sym__list_item_lower_alpha_parens] = STATE(774), - [sym__list_upper_alpha_period] = STATE(1008), - [sym__list_item_upper_alpha_period] = STATE(782), - [sym__list_upper_alpha_paren] = STATE(1008), - [sym__list_item_upper_alpha_paren] = STATE(783), - [sym__list_upper_alpha_parens] = STATE(1008), - [sym__list_item_upper_alpha_parens] = STATE(786), - [sym__list_lower_roman_period] = STATE(1008), - [sym__list_item_lower_roman_period] = STATE(787), - [sym__list_lower_roman_paren] = STATE(1008), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(1008), - [sym__list_item_lower_roman_parens] = STATE(803), - [sym__list_upper_roman_period] = STATE(1008), - [sym__list_item_upper_roman_period] = STATE(808), - [sym__list_upper_roman_paren] = STATE(1008), - [sym__list_item_upper_roman_paren] = STATE(814), - [sym__list_upper_roman_parens] = STATE(1008), - [sym__list_item_upper_roman_parens] = STATE(819), - [sym_list_item_content] = STATE(765), - [sym_table] = STATE(1091), + [sym__list_definition] = STATE(1007), + [sym__list_item_definition] = STATE(694), + [sym__list_decimal_period] = STATE(1007), + [sym__list_item_decimal_period] = STATE(714), + [sym__list_decimal_paren] = STATE(1007), + [sym__list_item_decimal_paren] = STATE(719), + [sym__list_decimal_parens] = STATE(1007), + [sym__list_item_decimal_parens] = STATE(746), + [sym__list_lower_alpha_period] = STATE(1007), + [sym__list_item_lower_alpha_period] = STATE(748), + [sym__list_lower_alpha_paren] = STATE(1007), + [sym__list_item_lower_alpha_paren] = STATE(749), + [sym__list_lower_alpha_parens] = STATE(1007), + [sym__list_item_lower_alpha_parens] = STATE(753), + [sym__list_upper_alpha_period] = STATE(1007), + [sym__list_item_upper_alpha_period] = STATE(761), + [sym__list_upper_alpha_paren] = STATE(1007), + [sym__list_item_upper_alpha_paren] = STATE(764), + [sym__list_upper_alpha_parens] = STATE(1007), + [sym__list_item_upper_alpha_parens] = STATE(765), + [sym__list_lower_roman_period] = STATE(1007), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(1007), + [sym__list_item_lower_roman_paren] = STATE(769), + [sym__list_lower_roman_parens] = STATE(1007), + [sym__list_item_lower_roman_parens] = STATE(786), + [sym__list_upper_roman_period] = STATE(1007), + [sym__list_item_upper_roman_period] = STATE(791), + [sym__list_upper_roman_paren] = STATE(1007), + [sym__list_item_upper_roman_paren] = STATE(793), + [sym__list_upper_roman_parens] = STATE(1007), + [sym__list_item_upper_roman_parens] = STATE(799), + [sym_list_item_content] = STATE(845), + [sym_table] = STATE(1090), [sym__table_row] = STATE(234), [sym_table_header] = STATE(234), [sym_table_separator] = STATE(234), [sym_table_row] = STATE(234), - [sym_footnote] = STATE(1091), - [sym_footnote_marker_begin] = STATE(1136), - [sym_div] = STATE(1091), - [sym__div_marker_begin] = STATE(1018), - [sym_code_block] = STATE(1091), - [sym_raw_block] = STATE(1091), - [sym_thematic_break] = STATE(1091), - [sym_block_quote] = STATE(1091), + [sym_footnote] = STATE(1090), + [sym_footnote_marker_begin] = STATE(1135), + [sym_div] = STATE(1090), + [sym__div_marker_begin] = STATE(1017), + [sym_code_block] = STATE(1090), + [sym_raw_block] = STATE(1090), + [sym_thematic_break] = STATE(1090), + [sym_block_quote] = STATE(1090), [sym__block_quote_prefix] = STATE(225), - [sym_link_reference_definition] = STATE(1091), - [sym_block_attribute] = STATE(1091), - [sym__paragraph] = STATE(1091), - [sym__paragraph_content] = STATE(724), - [sym__paragraph_inline_content] = STATE(837), - [sym__inline] = STATE(656), + [sym_link_reference_definition] = STATE(1090), + [sym_block_attribute] = STATE(1090), + [sym__paragraph] = STATE(1090), + [sym__paragraph_content] = STATE(690), + [sym__paragraph_inline_content] = STATE(824), + [sym__inline] = STATE(654), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(318), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_star_repeat1] = STATE(320), - [aux_sym__list_task_repeat1] = STATE(287), - [aux_sym__list_definition_repeat1] = STATE(459), - [aux_sym__list_decimal_period_repeat1] = STATE(460), - [aux_sym__list_decimal_paren_repeat1] = STATE(461), - [aux_sym__list_decimal_parens_repeat1] = STATE(462), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(463), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(464), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(465), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(466), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(467), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(468), - [aux_sym__list_lower_roman_period_repeat1] = STATE(469), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(470), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(471), - [aux_sym__list_upper_roman_period_repeat1] = STATE(472), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(473), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym__list_dash_repeat1] = STATE(316), + [aux_sym__list_plus_repeat1] = STATE(336), + [aux_sym__list_star_repeat1] = STATE(318), + [aux_sym__list_task_repeat1] = STATE(288), + [aux_sym__list_definition_repeat1] = STATE(456), + [aux_sym__list_decimal_period_repeat1] = STATE(457), + [aux_sym__list_decimal_paren_repeat1] = STATE(458), + [aux_sym__list_decimal_parens_repeat1] = STATE(459), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(460), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(461), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(462), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(463), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(464), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(465), + [aux_sym__list_lower_roman_period_repeat1] = STATE(466), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(467), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(468), + [aux_sym__list_upper_roman_period_repeat1] = STATE(469), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(470), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(471), [aux_sym_table_repeat1] = STATE(234), [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), @@ -10803,93 +10801,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block_attribute_begin] = ACTIONS(384), }, [48] = { - [sym__block_with_heading] = STATE(1089), - [sym__block_element] = STATE(1089), - [sym_heading] = STATE(1089), - [sym_list] = STATE(1089), - [sym__list_dash] = STATE(1008), - [sym__list_item_dash] = STATE(645), - [sym__list_plus] = STATE(1008), - [sym__list_item_plus] = STATE(661), - [sym__list_star] = STATE(1008), - [sym__list_item_star] = STATE(573), - [sym__list_task] = STATE(1008), - [sym__list_item_task] = STATE(590), + [sym__block_with_heading] = STATE(1088), + [sym__block_element] = STATE(1088), + [sym_heading] = STATE(1088), + [sym_list] = STATE(1088), + [sym__list_dash] = STATE(1007), + [sym__list_item_dash] = STATE(595), + [sym__list_plus] = STATE(1007), + [sym__list_item_plus] = STATE(657), + [sym__list_star] = STATE(1007), + [sym__list_item_star] = STATE(570), + [sym__list_task] = STATE(1007), + [sym__list_item_task] = STATE(586), [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(1008), - [sym__list_item_definition] = STATE(740), - [sym__list_decimal_period] = STATE(1008), - [sym__list_item_decimal_period] = STATE(743), - [sym__list_decimal_paren] = STATE(1008), - [sym__list_item_decimal_paren] = STATE(748), - [sym__list_decimal_parens] = STATE(1008), - [sym__list_item_decimal_parens] = STATE(768), - [sym__list_lower_alpha_period] = STATE(1008), - [sym__list_item_lower_alpha_period] = STATE(769), - [sym__list_lower_alpha_paren] = STATE(1008), - [sym__list_item_lower_alpha_paren] = STATE(773), - [sym__list_lower_alpha_parens] = STATE(1008), - [sym__list_item_lower_alpha_parens] = STATE(774), - [sym__list_upper_alpha_period] = STATE(1008), - [sym__list_item_upper_alpha_period] = STATE(782), - [sym__list_upper_alpha_paren] = STATE(1008), - [sym__list_item_upper_alpha_paren] = STATE(783), - [sym__list_upper_alpha_parens] = STATE(1008), - [sym__list_item_upper_alpha_parens] = STATE(786), - [sym__list_lower_roman_period] = STATE(1008), - [sym__list_item_lower_roman_period] = STATE(787), - [sym__list_lower_roman_paren] = STATE(1008), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(1008), - [sym__list_item_lower_roman_parens] = STATE(803), - [sym__list_upper_roman_period] = STATE(1008), - [sym__list_item_upper_roman_period] = STATE(808), - [sym__list_upper_roman_paren] = STATE(1008), - [sym__list_item_upper_roman_paren] = STATE(814), - [sym__list_upper_roman_parens] = STATE(1008), - [sym__list_item_upper_roman_parens] = STATE(819), - [sym_table] = STATE(1089), + [sym__list_definition] = STATE(1007), + [sym__list_item_definition] = STATE(694), + [sym__list_decimal_period] = STATE(1007), + [sym__list_item_decimal_period] = STATE(714), + [sym__list_decimal_paren] = STATE(1007), + [sym__list_item_decimal_paren] = STATE(719), + [sym__list_decimal_parens] = STATE(1007), + [sym__list_item_decimal_parens] = STATE(746), + [sym__list_lower_alpha_period] = STATE(1007), + [sym__list_item_lower_alpha_period] = STATE(748), + [sym__list_lower_alpha_paren] = STATE(1007), + [sym__list_item_lower_alpha_paren] = STATE(749), + [sym__list_lower_alpha_parens] = STATE(1007), + [sym__list_item_lower_alpha_parens] = STATE(753), + [sym__list_upper_alpha_period] = STATE(1007), + [sym__list_item_upper_alpha_period] = STATE(761), + [sym__list_upper_alpha_paren] = STATE(1007), + [sym__list_item_upper_alpha_paren] = STATE(764), + [sym__list_upper_alpha_parens] = STATE(1007), + [sym__list_item_upper_alpha_parens] = STATE(765), + [sym__list_lower_roman_period] = STATE(1007), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(1007), + [sym__list_item_lower_roman_paren] = STATE(769), + [sym__list_lower_roman_parens] = STATE(1007), + [sym__list_item_lower_roman_parens] = STATE(786), + [sym__list_upper_roman_period] = STATE(1007), + [sym__list_item_upper_roman_period] = STATE(791), + [sym__list_upper_roman_paren] = STATE(1007), + [sym__list_item_upper_roman_paren] = STATE(793), + [sym__list_upper_roman_parens] = STATE(1007), + [sym__list_item_upper_roman_parens] = STATE(799), + [sym_table] = STATE(1088), [sym__table_row] = STATE(234), [sym_table_header] = STATE(234), [sym_table_separator] = STATE(234), [sym_table_row] = STATE(234), - [sym_footnote] = STATE(1089), - [sym_footnote_marker_begin] = STATE(1136), - [sym_footnote_content] = STATE(669), - [sym_div] = STATE(1089), - [sym__div_marker_begin] = STATE(1018), - [sym_code_block] = STATE(1089), - [sym_raw_block] = STATE(1089), - [sym_thematic_break] = STATE(1089), - [sym_block_quote] = STATE(1089), + [sym_footnote] = STATE(1088), + [sym_footnote_marker_begin] = STATE(1135), + [sym_footnote_content] = STATE(665), + [sym_div] = STATE(1088), + [sym__div_marker_begin] = STATE(1017), + [sym_code_block] = STATE(1088), + [sym_raw_block] = STATE(1088), + [sym_thematic_break] = STATE(1088), + [sym_block_quote] = STATE(1088), [sym__block_quote_prefix] = STATE(225), - [sym_link_reference_definition] = STATE(1089), - [sym_block_attribute] = STATE(1089), - [sym__paragraph] = STATE(1089), - [sym__paragraph_content] = STATE(724), - [sym__paragraph_inline_content] = STATE(837), - [sym__inline] = STATE(656), + [sym_link_reference_definition] = STATE(1088), + [sym_block_attribute] = STATE(1088), + [sym__paragraph] = STATE(1088), + [sym__paragraph_content] = STATE(690), + [sym__paragraph_inline_content] = STATE(824), + [sym__inline] = STATE(654), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(318), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_star_repeat1] = STATE(320), - [aux_sym__list_task_repeat1] = STATE(287), - [aux_sym__list_definition_repeat1] = STATE(459), - [aux_sym__list_decimal_period_repeat1] = STATE(460), - [aux_sym__list_decimal_paren_repeat1] = STATE(461), - [aux_sym__list_decimal_parens_repeat1] = STATE(462), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(463), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(464), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(465), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(466), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(467), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(468), - [aux_sym__list_lower_roman_period_repeat1] = STATE(469), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(470), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(471), - [aux_sym__list_upper_roman_period_repeat1] = STATE(472), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(473), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym__list_dash_repeat1] = STATE(316), + [aux_sym__list_plus_repeat1] = STATE(336), + [aux_sym__list_star_repeat1] = STATE(318), + [aux_sym__list_task_repeat1] = STATE(288), + [aux_sym__list_definition_repeat1] = STATE(456), + [aux_sym__list_decimal_period_repeat1] = STATE(457), + [aux_sym__list_decimal_paren_repeat1] = STATE(458), + [aux_sym__list_decimal_parens_repeat1] = STATE(459), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(460), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(461), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(462), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(463), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(464), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(465), + [aux_sym__list_lower_roman_period_repeat1] = STATE(466), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(467), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(468), + [aux_sym__list_upper_roman_period_repeat1] = STATE(469), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(470), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(471), [aux_sym_table_repeat1] = STATE(234), [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), @@ -10934,93 +10932,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block_attribute_begin] = ACTIONS(384), }, [49] = { - [sym__block_with_heading] = STATE(1020), - [sym__block_element] = STATE(1020), - [sym_heading] = STATE(1020), - [sym_list] = STATE(1020), - [sym__list_dash] = STATE(1008), - [sym__list_item_dash] = STATE(645), - [sym__list_plus] = STATE(1008), - [sym__list_item_plus] = STATE(661), - [sym__list_star] = STATE(1008), - [sym__list_item_star] = STATE(573), - [sym__list_task] = STATE(1008), - [sym__list_item_task] = STATE(590), + [sym__block_with_heading] = STATE(1019), + [sym__block_element] = STATE(1019), + [sym_heading] = STATE(1019), + [sym_list] = STATE(1019), + [sym__list_dash] = STATE(1007), + [sym__list_item_dash] = STATE(595), + [sym__list_plus] = STATE(1007), + [sym__list_item_plus] = STATE(657), + [sym__list_star] = STATE(1007), + [sym__list_item_star] = STATE(570), + [sym__list_task] = STATE(1007), + [sym__list_item_task] = STATE(586), [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(1008), - [sym__list_item_definition] = STATE(740), - [sym__list_decimal_period] = STATE(1008), - [sym__list_item_decimal_period] = STATE(743), - [sym__list_decimal_paren] = STATE(1008), - [sym__list_item_decimal_paren] = STATE(748), - [sym__list_decimal_parens] = STATE(1008), - [sym__list_item_decimal_parens] = STATE(768), - [sym__list_lower_alpha_period] = STATE(1008), - [sym__list_item_lower_alpha_period] = STATE(769), - [sym__list_lower_alpha_paren] = STATE(1008), - [sym__list_item_lower_alpha_paren] = STATE(773), - [sym__list_lower_alpha_parens] = STATE(1008), - [sym__list_item_lower_alpha_parens] = STATE(774), - [sym__list_upper_alpha_period] = STATE(1008), - [sym__list_item_upper_alpha_period] = STATE(782), - [sym__list_upper_alpha_paren] = STATE(1008), - [sym__list_item_upper_alpha_paren] = STATE(783), - [sym__list_upper_alpha_parens] = STATE(1008), - [sym__list_item_upper_alpha_parens] = STATE(786), - [sym__list_lower_roman_period] = STATE(1008), - [sym__list_item_lower_roman_period] = STATE(787), - [sym__list_lower_roman_paren] = STATE(1008), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(1008), - [sym__list_item_lower_roman_parens] = STATE(803), - [sym__list_upper_roman_period] = STATE(1008), - [sym__list_item_upper_roman_period] = STATE(808), - [sym__list_upper_roman_paren] = STATE(1008), - [sym__list_item_upper_roman_paren] = STATE(814), - [sym__list_upper_roman_parens] = STATE(1008), - [sym__list_item_upper_roman_parens] = STATE(819), - [sym_list_item_content] = STATE(577), - [sym_table] = STATE(1020), + [sym__list_definition] = STATE(1007), + [sym__list_item_definition] = STATE(694), + [sym__list_decimal_period] = STATE(1007), + [sym__list_item_decimal_period] = STATE(714), + [sym__list_decimal_paren] = STATE(1007), + [sym__list_item_decimal_paren] = STATE(719), + [sym__list_decimal_parens] = STATE(1007), + [sym__list_item_decimal_parens] = STATE(746), + [sym__list_lower_alpha_period] = STATE(1007), + [sym__list_item_lower_alpha_period] = STATE(748), + [sym__list_lower_alpha_paren] = STATE(1007), + [sym__list_item_lower_alpha_paren] = STATE(749), + [sym__list_lower_alpha_parens] = STATE(1007), + [sym__list_item_lower_alpha_parens] = STATE(753), + [sym__list_upper_alpha_period] = STATE(1007), + [sym__list_item_upper_alpha_period] = STATE(761), + [sym__list_upper_alpha_paren] = STATE(1007), + [sym__list_item_upper_alpha_paren] = STATE(764), + [sym__list_upper_alpha_parens] = STATE(1007), + [sym__list_item_upper_alpha_parens] = STATE(765), + [sym__list_lower_roman_period] = STATE(1007), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(1007), + [sym__list_item_lower_roman_paren] = STATE(769), + [sym__list_lower_roman_parens] = STATE(1007), + [sym__list_item_lower_roman_parens] = STATE(786), + [sym__list_upper_roman_period] = STATE(1007), + [sym__list_item_upper_roman_period] = STATE(791), + [sym__list_upper_roman_paren] = STATE(1007), + [sym__list_item_upper_roman_paren] = STATE(793), + [sym__list_upper_roman_parens] = STATE(1007), + [sym__list_item_upper_roman_parens] = STATE(799), + [sym_list_item_content] = STATE(572), + [sym_table] = STATE(1019), [sym__table_row] = STATE(234), [sym_table_header] = STATE(234), [sym_table_separator] = STATE(234), [sym_table_row] = STATE(234), - [sym_footnote] = STATE(1020), - [sym_footnote_marker_begin] = STATE(1136), - [sym_div] = STATE(1020), - [sym__div_marker_begin] = STATE(1018), - [sym_code_block] = STATE(1020), - [sym_raw_block] = STATE(1020), - [sym_thematic_break] = STATE(1020), - [sym_block_quote] = STATE(1020), + [sym_footnote] = STATE(1019), + [sym_footnote_marker_begin] = STATE(1135), + [sym_div] = STATE(1019), + [sym__div_marker_begin] = STATE(1017), + [sym_code_block] = STATE(1019), + [sym_raw_block] = STATE(1019), + [sym_thematic_break] = STATE(1019), + [sym_block_quote] = STATE(1019), [sym__block_quote_prefix] = STATE(225), - [sym_link_reference_definition] = STATE(1020), - [sym_block_attribute] = STATE(1020), - [sym__paragraph] = STATE(1020), - [sym__paragraph_content] = STATE(724), - [sym__paragraph_inline_content] = STATE(837), - [sym__inline] = STATE(656), + [sym_link_reference_definition] = STATE(1019), + [sym_block_attribute] = STATE(1019), + [sym__paragraph] = STATE(1019), + [sym__paragraph_content] = STATE(690), + [sym__paragraph_inline_content] = STATE(824), + [sym__inline] = STATE(654), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(318), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_star_repeat1] = STATE(320), - [aux_sym__list_task_repeat1] = STATE(287), - [aux_sym__list_definition_repeat1] = STATE(459), - [aux_sym__list_decimal_period_repeat1] = STATE(460), - [aux_sym__list_decimal_paren_repeat1] = STATE(461), - [aux_sym__list_decimal_parens_repeat1] = STATE(462), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(463), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(464), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(465), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(466), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(467), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(468), - [aux_sym__list_lower_roman_period_repeat1] = STATE(469), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(470), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(471), - [aux_sym__list_upper_roman_period_repeat1] = STATE(472), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(473), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym__list_dash_repeat1] = STATE(316), + [aux_sym__list_plus_repeat1] = STATE(336), + [aux_sym__list_star_repeat1] = STATE(318), + [aux_sym__list_task_repeat1] = STATE(288), + [aux_sym__list_definition_repeat1] = STATE(456), + [aux_sym__list_decimal_period_repeat1] = STATE(457), + [aux_sym__list_decimal_paren_repeat1] = STATE(458), + [aux_sym__list_decimal_parens_repeat1] = STATE(459), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(460), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(461), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(462), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(463), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(464), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(465), + [aux_sym__list_lower_roman_period_repeat1] = STATE(466), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(467), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(468), + [aux_sym__list_upper_roman_period_repeat1] = STATE(469), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(470), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(471), [aux_sym_table_repeat1] = STATE(234), [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), @@ -11065,92 +11063,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block_attribute_begin] = ACTIONS(384), }, [50] = { - [sym__block_with_heading] = STATE(633), - [sym__block_element] = STATE(633), - [sym_heading] = STATE(633), - [sym_list] = STATE(633), - [sym__list_dash] = STATE(601), - [sym__list_item_dash] = STATE(645), - [sym__list_plus] = STATE(601), - [sym__list_item_plus] = STATE(661), - [sym__list_star] = STATE(601), - [sym__list_item_star] = STATE(573), - [sym__list_task] = STATE(601), - [sym__list_item_task] = STATE(590), + [sym__block_with_heading] = STATE(631), + [sym__block_element] = STATE(631), + [sym_heading] = STATE(631), + [sym_list] = STATE(631), + [sym__list_dash] = STATE(598), + [sym__list_item_dash] = STATE(595), + [sym__list_plus] = STATE(598), + [sym__list_item_plus] = STATE(657), + [sym__list_star] = STATE(598), + [sym__list_item_star] = STATE(570), + [sym__list_task] = STATE(598), + [sym__list_item_task] = STATE(586), [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(601), - [sym__list_item_definition] = STATE(740), - [sym__list_decimal_period] = STATE(601), - [sym__list_item_decimal_period] = STATE(743), - [sym__list_decimal_paren] = STATE(601), - [sym__list_item_decimal_paren] = STATE(748), - [sym__list_decimal_parens] = STATE(601), - [sym__list_item_decimal_parens] = STATE(768), - [sym__list_lower_alpha_period] = STATE(601), - [sym__list_item_lower_alpha_period] = STATE(769), - [sym__list_lower_alpha_paren] = STATE(601), - [sym__list_item_lower_alpha_paren] = STATE(773), - [sym__list_lower_alpha_parens] = STATE(601), - [sym__list_item_lower_alpha_parens] = STATE(774), - [sym__list_upper_alpha_period] = STATE(601), - [sym__list_item_upper_alpha_period] = STATE(782), - [sym__list_upper_alpha_paren] = STATE(601), - [sym__list_item_upper_alpha_paren] = STATE(783), - [sym__list_upper_alpha_parens] = STATE(601), - [sym__list_item_upper_alpha_parens] = STATE(786), - [sym__list_lower_roman_period] = STATE(601), - [sym__list_item_lower_roman_period] = STATE(787), - [sym__list_lower_roman_paren] = STATE(601), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(601), - [sym__list_item_lower_roman_parens] = STATE(803), - [sym__list_upper_roman_period] = STATE(601), - [sym__list_item_upper_roman_period] = STATE(808), - [sym__list_upper_roman_paren] = STATE(601), - [sym__list_item_upper_roman_paren] = STATE(814), - [sym__list_upper_roman_parens] = STATE(601), - [sym__list_item_upper_roman_parens] = STATE(819), - [sym_table] = STATE(633), + [sym__list_definition] = STATE(598), + [sym__list_item_definition] = STATE(694), + [sym__list_decimal_period] = STATE(598), + [sym__list_item_decimal_period] = STATE(714), + [sym__list_decimal_paren] = STATE(598), + [sym__list_item_decimal_paren] = STATE(719), + [sym__list_decimal_parens] = STATE(598), + [sym__list_item_decimal_parens] = STATE(746), + [sym__list_lower_alpha_period] = STATE(598), + [sym__list_item_lower_alpha_period] = STATE(748), + [sym__list_lower_alpha_paren] = STATE(598), + [sym__list_item_lower_alpha_paren] = STATE(749), + [sym__list_lower_alpha_parens] = STATE(598), + [sym__list_item_lower_alpha_parens] = STATE(753), + [sym__list_upper_alpha_period] = STATE(598), + [sym__list_item_upper_alpha_period] = STATE(761), + [sym__list_upper_alpha_paren] = STATE(598), + [sym__list_item_upper_alpha_paren] = STATE(764), + [sym__list_upper_alpha_parens] = STATE(598), + [sym__list_item_upper_alpha_parens] = STATE(765), + [sym__list_lower_roman_period] = STATE(598), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(598), + [sym__list_item_lower_roman_paren] = STATE(769), + [sym__list_lower_roman_parens] = STATE(598), + [sym__list_item_lower_roman_parens] = STATE(786), + [sym__list_upper_roman_period] = STATE(598), + [sym__list_item_upper_roman_period] = STATE(791), + [sym__list_upper_roman_paren] = STATE(598), + [sym__list_item_upper_roman_paren] = STATE(793), + [sym__list_upper_roman_parens] = STATE(598), + [sym__list_item_upper_roman_parens] = STATE(799), + [sym_table] = STATE(631), [sym__table_row] = STATE(229), [sym_table_header] = STATE(229), [sym_table_separator] = STATE(229), [sym_table_row] = STATE(229), - [sym_footnote] = STATE(633), - [sym_footnote_marker_begin] = STATE(1142), - [sym_div] = STATE(633), - [sym__div_marker_begin] = STATE(1074), - [sym_code_block] = STATE(633), - [sym_raw_block] = STATE(633), - [sym_thematic_break] = STATE(633), - [sym_block_quote] = STATE(633), + [sym_footnote] = STATE(631), + [sym_footnote_marker_begin] = STATE(894), + [sym_div] = STATE(631), + [sym__div_marker_begin] = STATE(1073), + [sym_code_block] = STATE(631), + [sym_raw_block] = STATE(631), + [sym_thematic_break] = STATE(631), + [sym_block_quote] = STATE(631), [sym__block_quote_prefix] = STATE(224), - [sym_link_reference_definition] = STATE(633), - [sym_block_attribute] = STATE(633), - [sym__paragraph] = STATE(633), - [sym__paragraph_content] = STATE(816), - [sym__paragraph_inline_content] = STATE(837), - [sym__inline] = STATE(656), + [sym_link_reference_definition] = STATE(631), + [sym_block_attribute] = STATE(631), + [sym__paragraph] = STATE(631), + [sym__paragraph_content] = STATE(800), + [sym__paragraph_inline_content] = STATE(824), + [sym__inline] = STATE(654), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(328), - [aux_sym__list_plus_repeat1] = STATE(329), - [aux_sym__list_star_repeat1] = STATE(330), - [aux_sym__list_task_repeat1] = STATE(302), - [aux_sym__list_definition_repeat1] = STATE(510), - [aux_sym__list_decimal_period_repeat1] = STATE(511), - [aux_sym__list_decimal_paren_repeat1] = STATE(512), - [aux_sym__list_decimal_parens_repeat1] = STATE(513), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(514), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(515), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(516), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(517), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(518), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(519), - [aux_sym__list_lower_roman_period_repeat1] = STATE(520), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(521), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(522), - [aux_sym__list_upper_roman_period_repeat1] = STATE(523), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(524), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(525), + [aux_sym__list_dash_repeat1] = STATE(333), + [aux_sym__list_plus_repeat1] = STATE(334), + [aux_sym__list_star_repeat1] = STATE(335), + [aux_sym__list_task_repeat1] = STATE(304), + [aux_sym__list_definition_repeat1] = STATE(507), + [aux_sym__list_decimal_period_repeat1] = STATE(508), + [aux_sym__list_decimal_paren_repeat1] = STATE(509), + [aux_sym__list_decimal_parens_repeat1] = STATE(510), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(511), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(512), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(513), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(514), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(515), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(516), + [aux_sym__list_lower_roman_period_repeat1] = STATE(517), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(518), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(519), + [aux_sym__list_upper_roman_period_repeat1] = STATE(520), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(521), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(522), [aux_sym_table_repeat1] = STATE(229), [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), @@ -11195,92 +11193,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block_attribute_begin] = ACTIONS(452), }, [51] = { - [sym__block_with_heading] = STATE(609), - [sym__block_element] = STATE(609), - [sym_heading] = STATE(609), - [sym_list] = STATE(609), - [sym__list_dash] = STATE(601), - [sym__list_item_dash] = STATE(645), - [sym__list_plus] = STATE(601), - [sym__list_item_plus] = STATE(661), - [sym__list_star] = STATE(601), - [sym__list_item_star] = STATE(573), - [sym__list_task] = STATE(601), - [sym__list_item_task] = STATE(590), + [sym__block_with_heading] = STATE(607), + [sym__block_element] = STATE(607), + [sym_heading] = STATE(607), + [sym_list] = STATE(607), + [sym__list_dash] = STATE(598), + [sym__list_item_dash] = STATE(595), + [sym__list_plus] = STATE(598), + [sym__list_item_plus] = STATE(657), + [sym__list_star] = STATE(598), + [sym__list_item_star] = STATE(570), + [sym__list_task] = STATE(598), + [sym__list_item_task] = STATE(586), [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(601), - [sym__list_item_definition] = STATE(740), - [sym__list_decimal_period] = STATE(601), - [sym__list_item_decimal_period] = STATE(743), - [sym__list_decimal_paren] = STATE(601), - [sym__list_item_decimal_paren] = STATE(748), - [sym__list_decimal_parens] = STATE(601), - [sym__list_item_decimal_parens] = STATE(768), - [sym__list_lower_alpha_period] = STATE(601), - [sym__list_item_lower_alpha_period] = STATE(769), - [sym__list_lower_alpha_paren] = STATE(601), - [sym__list_item_lower_alpha_paren] = STATE(773), - [sym__list_lower_alpha_parens] = STATE(601), - [sym__list_item_lower_alpha_parens] = STATE(774), - [sym__list_upper_alpha_period] = STATE(601), - [sym__list_item_upper_alpha_period] = STATE(782), - [sym__list_upper_alpha_paren] = STATE(601), - [sym__list_item_upper_alpha_paren] = STATE(783), - [sym__list_upper_alpha_parens] = STATE(601), - [sym__list_item_upper_alpha_parens] = STATE(786), - [sym__list_lower_roman_period] = STATE(601), - [sym__list_item_lower_roman_period] = STATE(787), - [sym__list_lower_roman_paren] = STATE(601), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(601), - [sym__list_item_lower_roman_parens] = STATE(803), - [sym__list_upper_roman_period] = STATE(601), - [sym__list_item_upper_roman_period] = STATE(808), - [sym__list_upper_roman_paren] = STATE(601), - [sym__list_item_upper_roman_paren] = STATE(814), - [sym__list_upper_roman_parens] = STATE(601), - [sym__list_item_upper_roman_parens] = STATE(819), - [sym_table] = STATE(609), + [sym__list_definition] = STATE(598), + [sym__list_item_definition] = STATE(694), + [sym__list_decimal_period] = STATE(598), + [sym__list_item_decimal_period] = STATE(714), + [sym__list_decimal_paren] = STATE(598), + [sym__list_item_decimal_paren] = STATE(719), + [sym__list_decimal_parens] = STATE(598), + [sym__list_item_decimal_parens] = STATE(746), + [sym__list_lower_alpha_period] = STATE(598), + [sym__list_item_lower_alpha_period] = STATE(748), + [sym__list_lower_alpha_paren] = STATE(598), + [sym__list_item_lower_alpha_paren] = STATE(749), + [sym__list_lower_alpha_parens] = STATE(598), + [sym__list_item_lower_alpha_parens] = STATE(753), + [sym__list_upper_alpha_period] = STATE(598), + [sym__list_item_upper_alpha_period] = STATE(761), + [sym__list_upper_alpha_paren] = STATE(598), + [sym__list_item_upper_alpha_paren] = STATE(764), + [sym__list_upper_alpha_parens] = STATE(598), + [sym__list_item_upper_alpha_parens] = STATE(765), + [sym__list_lower_roman_period] = STATE(598), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(598), + [sym__list_item_lower_roman_paren] = STATE(769), + [sym__list_lower_roman_parens] = STATE(598), + [sym__list_item_lower_roman_parens] = STATE(786), + [sym__list_upper_roman_period] = STATE(598), + [sym__list_item_upper_roman_period] = STATE(791), + [sym__list_upper_roman_paren] = STATE(598), + [sym__list_item_upper_roman_paren] = STATE(793), + [sym__list_upper_roman_parens] = STATE(598), + [sym__list_item_upper_roman_parens] = STATE(799), + [sym_table] = STATE(607), [sym__table_row] = STATE(229), [sym_table_header] = STATE(229), [sym_table_separator] = STATE(229), [sym_table_row] = STATE(229), - [sym_footnote] = STATE(609), - [sym_footnote_marker_begin] = STATE(1142), - [sym_div] = STATE(609), - [sym__div_marker_begin] = STATE(1074), - [sym_code_block] = STATE(609), - [sym_raw_block] = STATE(609), - [sym_thematic_break] = STATE(609), - [sym_block_quote] = STATE(609), + [sym_footnote] = STATE(607), + [sym_footnote_marker_begin] = STATE(894), + [sym_div] = STATE(607), + [sym__div_marker_begin] = STATE(1073), + [sym_code_block] = STATE(607), + [sym_raw_block] = STATE(607), + [sym_thematic_break] = STATE(607), + [sym_block_quote] = STATE(607), [sym__block_quote_prefix] = STATE(224), - [sym_link_reference_definition] = STATE(609), - [sym_block_attribute] = STATE(609), - [sym__paragraph] = STATE(609), - [sym__paragraph_content] = STATE(816), - [sym__paragraph_inline_content] = STATE(837), - [sym__inline] = STATE(656), + [sym_link_reference_definition] = STATE(607), + [sym_block_attribute] = STATE(607), + [sym__paragraph] = STATE(607), + [sym__paragraph_content] = STATE(800), + [sym__paragraph_inline_content] = STATE(824), + [sym__inline] = STATE(654), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(328), - [aux_sym__list_plus_repeat1] = STATE(329), - [aux_sym__list_star_repeat1] = STATE(330), - [aux_sym__list_task_repeat1] = STATE(302), - [aux_sym__list_definition_repeat1] = STATE(510), - [aux_sym__list_decimal_period_repeat1] = STATE(511), - [aux_sym__list_decimal_paren_repeat1] = STATE(512), - [aux_sym__list_decimal_parens_repeat1] = STATE(513), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(514), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(515), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(516), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(517), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(518), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(519), - [aux_sym__list_lower_roman_period_repeat1] = STATE(520), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(521), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(522), - [aux_sym__list_upper_roman_period_repeat1] = STATE(523), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(524), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(525), + [aux_sym__list_dash_repeat1] = STATE(333), + [aux_sym__list_plus_repeat1] = STATE(334), + [aux_sym__list_star_repeat1] = STATE(335), + [aux_sym__list_task_repeat1] = STATE(304), + [aux_sym__list_definition_repeat1] = STATE(507), + [aux_sym__list_decimal_period_repeat1] = STATE(508), + [aux_sym__list_decimal_paren_repeat1] = STATE(509), + [aux_sym__list_decimal_parens_repeat1] = STATE(510), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(511), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(512), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(513), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(514), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(515), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(516), + [aux_sym__list_lower_roman_period_repeat1] = STATE(517), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(518), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(519), + [aux_sym__list_upper_roman_period_repeat1] = STATE(520), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(521), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(522), [aux_sym_table_repeat1] = STATE(229), [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), @@ -11325,92 +11323,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block_attribute_begin] = ACTIONS(452), }, [52] = { - [sym__block_with_heading] = STATE(998), - [sym__block_element] = STATE(998), - [sym_heading] = STATE(998), - [sym_list] = STATE(998), - [sym__list_dash] = STATE(1008), - [sym__list_item_dash] = STATE(645), - [sym__list_plus] = STATE(1008), - [sym__list_item_plus] = STATE(661), - [sym__list_star] = STATE(1008), - [sym__list_item_star] = STATE(573), - [sym__list_task] = STATE(1008), - [sym__list_item_task] = STATE(590), + [sym__block_with_heading] = STATE(997), + [sym__block_element] = STATE(997), + [sym_heading] = STATE(997), + [sym_list] = STATE(997), + [sym__list_dash] = STATE(1007), + [sym__list_item_dash] = STATE(595), + [sym__list_plus] = STATE(1007), + [sym__list_item_plus] = STATE(657), + [sym__list_star] = STATE(1007), + [sym__list_item_star] = STATE(570), + [sym__list_task] = STATE(1007), + [sym__list_item_task] = STATE(586), [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(1008), - [sym__list_item_definition] = STATE(740), - [sym__list_decimal_period] = STATE(1008), - [sym__list_item_decimal_period] = STATE(743), - [sym__list_decimal_paren] = STATE(1008), - [sym__list_item_decimal_paren] = STATE(748), - [sym__list_decimal_parens] = STATE(1008), - [sym__list_item_decimal_parens] = STATE(768), - [sym__list_lower_alpha_period] = STATE(1008), - [sym__list_item_lower_alpha_period] = STATE(769), - [sym__list_lower_alpha_paren] = STATE(1008), - [sym__list_item_lower_alpha_paren] = STATE(773), - [sym__list_lower_alpha_parens] = STATE(1008), - [sym__list_item_lower_alpha_parens] = STATE(774), - [sym__list_upper_alpha_period] = STATE(1008), - [sym__list_item_upper_alpha_period] = STATE(782), - [sym__list_upper_alpha_paren] = STATE(1008), - [sym__list_item_upper_alpha_paren] = STATE(783), - [sym__list_upper_alpha_parens] = STATE(1008), - [sym__list_item_upper_alpha_parens] = STATE(786), - [sym__list_lower_roman_period] = STATE(1008), - [sym__list_item_lower_roman_period] = STATE(787), - [sym__list_lower_roman_paren] = STATE(1008), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(1008), - [sym__list_item_lower_roman_parens] = STATE(803), - [sym__list_upper_roman_period] = STATE(1008), - [sym__list_item_upper_roman_period] = STATE(808), - [sym__list_upper_roman_paren] = STATE(1008), - [sym__list_item_upper_roman_paren] = STATE(814), - [sym__list_upper_roman_parens] = STATE(1008), - [sym__list_item_upper_roman_parens] = STATE(819), - [sym_table] = STATE(998), + [sym__list_definition] = STATE(1007), + [sym__list_item_definition] = STATE(694), + [sym__list_decimal_period] = STATE(1007), + [sym__list_item_decimal_period] = STATE(714), + [sym__list_decimal_paren] = STATE(1007), + [sym__list_item_decimal_paren] = STATE(719), + [sym__list_decimal_parens] = STATE(1007), + [sym__list_item_decimal_parens] = STATE(746), + [sym__list_lower_alpha_period] = STATE(1007), + [sym__list_item_lower_alpha_period] = STATE(748), + [sym__list_lower_alpha_paren] = STATE(1007), + [sym__list_item_lower_alpha_paren] = STATE(749), + [sym__list_lower_alpha_parens] = STATE(1007), + [sym__list_item_lower_alpha_parens] = STATE(753), + [sym__list_upper_alpha_period] = STATE(1007), + [sym__list_item_upper_alpha_period] = STATE(761), + [sym__list_upper_alpha_paren] = STATE(1007), + [sym__list_item_upper_alpha_paren] = STATE(764), + [sym__list_upper_alpha_parens] = STATE(1007), + [sym__list_item_upper_alpha_parens] = STATE(765), + [sym__list_lower_roman_period] = STATE(1007), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(1007), + [sym__list_item_lower_roman_paren] = STATE(769), + [sym__list_lower_roman_parens] = STATE(1007), + [sym__list_item_lower_roman_parens] = STATE(786), + [sym__list_upper_roman_period] = STATE(1007), + [sym__list_item_upper_roman_period] = STATE(791), + [sym__list_upper_roman_paren] = STATE(1007), + [sym__list_item_upper_roman_paren] = STATE(793), + [sym__list_upper_roman_parens] = STATE(1007), + [sym__list_item_upper_roman_parens] = STATE(799), + [sym_table] = STATE(997), [sym__table_row] = STATE(234), [sym_table_header] = STATE(234), [sym_table_separator] = STATE(234), [sym_table_row] = STATE(234), - [sym_footnote] = STATE(998), - [sym_footnote_marker_begin] = STATE(1136), - [sym_div] = STATE(998), - [sym__div_marker_begin] = STATE(1018), - [sym_code_block] = STATE(998), - [sym_raw_block] = STATE(998), - [sym_thematic_break] = STATE(998), - [sym_block_quote] = STATE(998), + [sym_footnote] = STATE(997), + [sym_footnote_marker_begin] = STATE(1135), + [sym_div] = STATE(997), + [sym__div_marker_begin] = STATE(1017), + [sym_code_block] = STATE(997), + [sym_raw_block] = STATE(997), + [sym_thematic_break] = STATE(997), + [sym_block_quote] = STATE(997), [sym__block_quote_prefix] = STATE(225), - [sym_link_reference_definition] = STATE(998), - [sym_block_attribute] = STATE(998), - [sym__paragraph] = STATE(998), - [sym__paragraph_content] = STATE(724), - [sym__paragraph_inline_content] = STATE(837), - [sym__inline] = STATE(656), + [sym_link_reference_definition] = STATE(997), + [sym_block_attribute] = STATE(997), + [sym__paragraph] = STATE(997), + [sym__paragraph_content] = STATE(690), + [sym__paragraph_inline_content] = STATE(824), + [sym__inline] = STATE(654), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(318), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_star_repeat1] = STATE(320), - [aux_sym__list_task_repeat1] = STATE(287), - [aux_sym__list_definition_repeat1] = STATE(459), - [aux_sym__list_decimal_period_repeat1] = STATE(460), - [aux_sym__list_decimal_paren_repeat1] = STATE(461), - [aux_sym__list_decimal_parens_repeat1] = STATE(462), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(463), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(464), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(465), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(466), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(467), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(468), - [aux_sym__list_lower_roman_period_repeat1] = STATE(469), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(470), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(471), - [aux_sym__list_upper_roman_period_repeat1] = STATE(472), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(473), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym__list_dash_repeat1] = STATE(316), + [aux_sym__list_plus_repeat1] = STATE(336), + [aux_sym__list_star_repeat1] = STATE(318), + [aux_sym__list_task_repeat1] = STATE(288), + [aux_sym__list_definition_repeat1] = STATE(456), + [aux_sym__list_decimal_period_repeat1] = STATE(457), + [aux_sym__list_decimal_paren_repeat1] = STATE(458), + [aux_sym__list_decimal_parens_repeat1] = STATE(459), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(460), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(461), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(462), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(463), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(464), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(465), + [aux_sym__list_lower_roman_period_repeat1] = STATE(466), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(467), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(468), + [aux_sym__list_upper_roman_period_repeat1] = STATE(469), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(470), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(471), [aux_sym_table_repeat1] = STATE(234), [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), @@ -11455,92 +11453,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block_attribute_begin] = ACTIONS(384), }, [53] = { - [sym__block_with_heading] = STATE(1003), - [sym__block_element] = STATE(1003), - [sym_heading] = STATE(1003), - [sym_list] = STATE(1003), - [sym__list_dash] = STATE(1008), - [sym__list_item_dash] = STATE(645), - [sym__list_plus] = STATE(1008), - [sym__list_item_plus] = STATE(661), - [sym__list_star] = STATE(1008), - [sym__list_item_star] = STATE(573), - [sym__list_task] = STATE(1008), - [sym__list_item_task] = STATE(590), + [sym__block_with_heading] = STATE(1002), + [sym__block_element] = STATE(1002), + [sym_heading] = STATE(1002), + [sym_list] = STATE(1002), + [sym__list_dash] = STATE(1007), + [sym__list_item_dash] = STATE(595), + [sym__list_plus] = STATE(1007), + [sym__list_item_plus] = STATE(657), + [sym__list_star] = STATE(1007), + [sym__list_item_star] = STATE(570), + [sym__list_task] = STATE(1007), + [sym__list_item_task] = STATE(586), [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(1008), - [sym__list_item_definition] = STATE(740), - [sym__list_decimal_period] = STATE(1008), - [sym__list_item_decimal_period] = STATE(743), - [sym__list_decimal_paren] = STATE(1008), - [sym__list_item_decimal_paren] = STATE(748), - [sym__list_decimal_parens] = STATE(1008), - [sym__list_item_decimal_parens] = STATE(768), - [sym__list_lower_alpha_period] = STATE(1008), - [sym__list_item_lower_alpha_period] = STATE(769), - [sym__list_lower_alpha_paren] = STATE(1008), - [sym__list_item_lower_alpha_paren] = STATE(773), - [sym__list_lower_alpha_parens] = STATE(1008), - [sym__list_item_lower_alpha_parens] = STATE(774), - [sym__list_upper_alpha_period] = STATE(1008), - [sym__list_item_upper_alpha_period] = STATE(782), - [sym__list_upper_alpha_paren] = STATE(1008), - [sym__list_item_upper_alpha_paren] = STATE(783), - [sym__list_upper_alpha_parens] = STATE(1008), - [sym__list_item_upper_alpha_parens] = STATE(786), - [sym__list_lower_roman_period] = STATE(1008), - [sym__list_item_lower_roman_period] = STATE(787), - [sym__list_lower_roman_paren] = STATE(1008), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(1008), - [sym__list_item_lower_roman_parens] = STATE(803), - [sym__list_upper_roman_period] = STATE(1008), - [sym__list_item_upper_roman_period] = STATE(808), - [sym__list_upper_roman_paren] = STATE(1008), - [sym__list_item_upper_roman_paren] = STATE(814), - [sym__list_upper_roman_parens] = STATE(1008), - [sym__list_item_upper_roman_parens] = STATE(819), - [sym_table] = STATE(1003), + [sym__list_definition] = STATE(1007), + [sym__list_item_definition] = STATE(694), + [sym__list_decimal_period] = STATE(1007), + [sym__list_item_decimal_period] = STATE(714), + [sym__list_decimal_paren] = STATE(1007), + [sym__list_item_decimal_paren] = STATE(719), + [sym__list_decimal_parens] = STATE(1007), + [sym__list_item_decimal_parens] = STATE(746), + [sym__list_lower_alpha_period] = STATE(1007), + [sym__list_item_lower_alpha_period] = STATE(748), + [sym__list_lower_alpha_paren] = STATE(1007), + [sym__list_item_lower_alpha_paren] = STATE(749), + [sym__list_lower_alpha_parens] = STATE(1007), + [sym__list_item_lower_alpha_parens] = STATE(753), + [sym__list_upper_alpha_period] = STATE(1007), + [sym__list_item_upper_alpha_period] = STATE(761), + [sym__list_upper_alpha_paren] = STATE(1007), + [sym__list_item_upper_alpha_paren] = STATE(764), + [sym__list_upper_alpha_parens] = STATE(1007), + [sym__list_item_upper_alpha_parens] = STATE(765), + [sym__list_lower_roman_period] = STATE(1007), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(1007), + [sym__list_item_lower_roman_paren] = STATE(769), + [sym__list_lower_roman_parens] = STATE(1007), + [sym__list_item_lower_roman_parens] = STATE(786), + [sym__list_upper_roman_period] = STATE(1007), + [sym__list_item_upper_roman_period] = STATE(791), + [sym__list_upper_roman_paren] = STATE(1007), + [sym__list_item_upper_roman_paren] = STATE(793), + [sym__list_upper_roman_parens] = STATE(1007), + [sym__list_item_upper_roman_parens] = STATE(799), + [sym_table] = STATE(1002), [sym__table_row] = STATE(234), [sym_table_header] = STATE(234), [sym_table_separator] = STATE(234), [sym_table_row] = STATE(234), - [sym_footnote] = STATE(1003), - [sym_footnote_marker_begin] = STATE(1136), - [sym_div] = STATE(1003), - [sym__div_marker_begin] = STATE(1018), - [sym_code_block] = STATE(1003), - [sym_raw_block] = STATE(1003), - [sym_thematic_break] = STATE(1003), - [sym_block_quote] = STATE(1003), + [sym_footnote] = STATE(1002), + [sym_footnote_marker_begin] = STATE(1135), + [sym_div] = STATE(1002), + [sym__div_marker_begin] = STATE(1017), + [sym_code_block] = STATE(1002), + [sym_raw_block] = STATE(1002), + [sym_thematic_break] = STATE(1002), + [sym_block_quote] = STATE(1002), [sym__block_quote_prefix] = STATE(225), - [sym_link_reference_definition] = STATE(1003), - [sym_block_attribute] = STATE(1003), - [sym__paragraph] = STATE(1003), - [sym__paragraph_content] = STATE(724), - [sym__paragraph_inline_content] = STATE(837), - [sym__inline] = STATE(656), + [sym_link_reference_definition] = STATE(1002), + [sym_block_attribute] = STATE(1002), + [sym__paragraph] = STATE(1002), + [sym__paragraph_content] = STATE(690), + [sym__paragraph_inline_content] = STATE(824), + [sym__inline] = STATE(654), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(318), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_star_repeat1] = STATE(320), - [aux_sym__list_task_repeat1] = STATE(287), - [aux_sym__list_definition_repeat1] = STATE(459), - [aux_sym__list_decimal_period_repeat1] = STATE(460), - [aux_sym__list_decimal_paren_repeat1] = STATE(461), - [aux_sym__list_decimal_parens_repeat1] = STATE(462), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(463), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(464), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(465), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(466), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(467), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(468), - [aux_sym__list_lower_roman_period_repeat1] = STATE(469), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(470), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(471), - [aux_sym__list_upper_roman_period_repeat1] = STATE(472), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(473), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym__list_dash_repeat1] = STATE(316), + [aux_sym__list_plus_repeat1] = STATE(336), + [aux_sym__list_star_repeat1] = STATE(318), + [aux_sym__list_task_repeat1] = STATE(288), + [aux_sym__list_definition_repeat1] = STATE(456), + [aux_sym__list_decimal_period_repeat1] = STATE(457), + [aux_sym__list_decimal_paren_repeat1] = STATE(458), + [aux_sym__list_decimal_parens_repeat1] = STATE(459), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(460), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(461), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(462), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(463), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(464), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(465), + [aux_sym__list_lower_roman_period_repeat1] = STATE(466), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(467), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(468), + [aux_sym__list_upper_roman_period_repeat1] = STATE(469), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(470), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(471), [aux_sym_table_repeat1] = STATE(234), [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), @@ -11589,55 +11587,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heading] = STATE(126), [sym_list] = STATE(126), [sym__list_dash] = STATE(129), - [sym__list_item_dash] = STATE(645), + [sym__list_item_dash] = STATE(595), [sym__list_plus] = STATE(129), - [sym__list_item_plus] = STATE(661), + [sym__list_item_plus] = STATE(657), [sym__list_star] = STATE(129), - [sym__list_item_star] = STATE(573), + [sym__list_item_star] = STATE(570), [sym__list_task] = STATE(129), - [sym__list_item_task] = STATE(590), + [sym__list_item_task] = STATE(586), [sym_list_marker_task] = STATE(43), [sym__list_definition] = STATE(129), - [sym__list_item_definition] = STATE(740), + [sym__list_item_definition] = STATE(694), [sym__list_decimal_period] = STATE(129), - [sym__list_item_decimal_period] = STATE(743), + [sym__list_item_decimal_period] = STATE(714), [sym__list_decimal_paren] = STATE(129), - [sym__list_item_decimal_paren] = STATE(748), + [sym__list_item_decimal_paren] = STATE(719), [sym__list_decimal_parens] = STATE(129), - [sym__list_item_decimal_parens] = STATE(768), + [sym__list_item_decimal_parens] = STATE(746), [sym__list_lower_alpha_period] = STATE(129), - [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_item_lower_alpha_period] = STATE(748), [sym__list_lower_alpha_paren] = STATE(129), - [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_item_lower_alpha_paren] = STATE(749), [sym__list_lower_alpha_parens] = STATE(129), - [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_item_lower_alpha_parens] = STATE(753), [sym__list_upper_alpha_period] = STATE(129), - [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_item_upper_alpha_period] = STATE(761), [sym__list_upper_alpha_paren] = STATE(129), - [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_item_upper_alpha_paren] = STATE(764), [sym__list_upper_alpha_parens] = STATE(129), - [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_item_upper_alpha_parens] = STATE(765), [sym__list_lower_roman_period] = STATE(129), - [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_item_lower_roman_period] = STATE(768), [sym__list_lower_roman_paren] = STATE(129), - [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_item_lower_roman_paren] = STATE(769), [sym__list_lower_roman_parens] = STATE(129), - [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_item_lower_roman_parens] = STATE(786), [sym__list_upper_roman_period] = STATE(129), - [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_item_upper_roman_period] = STATE(791), [sym__list_upper_roman_paren] = STATE(129), - [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_item_upper_roman_paren] = STATE(793), [sym__list_upper_roman_parens] = STATE(129), - [sym__list_item_upper_roman_parens] = STATE(819), + [sym__list_item_upper_roman_parens] = STATE(799), [sym_table] = STATE(126), [sym__table_row] = STATE(67), [sym_table_header] = STATE(67), [sym_table_separator] = STATE(67), [sym_table_row] = STATE(67), [sym_footnote] = STATE(126), - [sym_footnote_marker_begin] = STATE(894), + [sym_footnote_marker_begin] = STATE(1139), [sym_div] = STATE(126), - [sym__div_marker_begin] = STATE(1056), + [sym__div_marker_begin] = STATE(1055), [sym_code_block] = STATE(126), [sym_raw_block] = STATE(126), [sym_thematic_break] = STATE(126), @@ -11646,30 +11644,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_link_reference_definition] = STATE(126), [sym_block_attribute] = STATE(126), [sym__paragraph] = STATE(126), - [sym__paragraph_content] = STATE(784), - [sym__paragraph_inline_content] = STATE(837), - [sym__inline] = STATE(656), + [sym__paragraph_content] = STATE(766), + [sym__paragraph_inline_content] = STATE(824), + [sym__inline] = STATE(654), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(322), - [aux_sym__list_plus_repeat1] = STATE(323), - [aux_sym__list_star_repeat1] = STATE(324), - [aux_sym__list_task_repeat1] = STATE(285), - [aux_sym__list_definition_repeat1] = STATE(494), - [aux_sym__list_decimal_period_repeat1] = STATE(495), - [aux_sym__list_decimal_paren_repeat1] = STATE(496), - [aux_sym__list_decimal_parens_repeat1] = STATE(497), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(498), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(499), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(500), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(501), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(502), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(503), - [aux_sym__list_lower_roman_period_repeat1] = STATE(504), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(505), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(506), - [aux_sym__list_upper_roman_period_repeat1] = STATE(507), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(508), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(509), + [aux_sym__list_dash_repeat1] = STATE(323), + [aux_sym__list_plus_repeat1] = STATE(324), + [aux_sym__list_star_repeat1] = STATE(325), + [aux_sym__list_task_repeat1] = STATE(299), + [aux_sym__list_definition_repeat1] = STATE(491), + [aux_sym__list_decimal_period_repeat1] = STATE(492), + [aux_sym__list_decimal_paren_repeat1] = STATE(493), + [aux_sym__list_decimal_parens_repeat1] = STATE(494), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(495), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(496), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(497), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(498), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(499), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(500), + [aux_sym__list_lower_roman_period_repeat1] = STATE(501), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(502), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(503), + [aux_sym__list_upper_roman_period_repeat1] = STATE(504), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(505), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(506), [aux_sym_table_repeat1] = STATE(67), [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), @@ -11715,92 +11713,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block_attribute_begin] = ACTIONS(95), }, [55] = { - [sym__block_with_heading] = STATE(990), - [sym__block_element] = STATE(990), - [sym_heading] = STATE(990), - [sym_list] = STATE(990), - [sym__list_dash] = STATE(1008), - [sym__list_item_dash] = STATE(645), - [sym__list_plus] = STATE(1008), - [sym__list_item_plus] = STATE(661), - [sym__list_star] = STATE(1008), - [sym__list_item_star] = STATE(573), - [sym__list_task] = STATE(1008), - [sym__list_item_task] = STATE(590), + [sym__block_with_heading] = STATE(1001), + [sym__block_element] = STATE(1001), + [sym_heading] = STATE(1001), + [sym_list] = STATE(1001), + [sym__list_dash] = STATE(1007), + [sym__list_item_dash] = STATE(595), + [sym__list_plus] = STATE(1007), + [sym__list_item_plus] = STATE(657), + [sym__list_star] = STATE(1007), + [sym__list_item_star] = STATE(570), + [sym__list_task] = STATE(1007), + [sym__list_item_task] = STATE(586), [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(1008), - [sym__list_item_definition] = STATE(740), - [sym__list_decimal_period] = STATE(1008), - [sym__list_item_decimal_period] = STATE(743), - [sym__list_decimal_paren] = STATE(1008), - [sym__list_item_decimal_paren] = STATE(748), - [sym__list_decimal_parens] = STATE(1008), - [sym__list_item_decimal_parens] = STATE(768), - [sym__list_lower_alpha_period] = STATE(1008), - [sym__list_item_lower_alpha_period] = STATE(769), - [sym__list_lower_alpha_paren] = STATE(1008), - [sym__list_item_lower_alpha_paren] = STATE(773), - [sym__list_lower_alpha_parens] = STATE(1008), - [sym__list_item_lower_alpha_parens] = STATE(774), - [sym__list_upper_alpha_period] = STATE(1008), - [sym__list_item_upper_alpha_period] = STATE(782), - [sym__list_upper_alpha_paren] = STATE(1008), - [sym__list_item_upper_alpha_paren] = STATE(783), - [sym__list_upper_alpha_parens] = STATE(1008), - [sym__list_item_upper_alpha_parens] = STATE(786), - [sym__list_lower_roman_period] = STATE(1008), - [sym__list_item_lower_roman_period] = STATE(787), - [sym__list_lower_roman_paren] = STATE(1008), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(1008), - [sym__list_item_lower_roman_parens] = STATE(803), - [sym__list_upper_roman_period] = STATE(1008), - [sym__list_item_upper_roman_period] = STATE(808), - [sym__list_upper_roman_paren] = STATE(1008), - [sym__list_item_upper_roman_paren] = STATE(814), - [sym__list_upper_roman_parens] = STATE(1008), - [sym__list_item_upper_roman_parens] = STATE(819), - [sym_table] = STATE(990), + [sym__list_definition] = STATE(1007), + [sym__list_item_definition] = STATE(694), + [sym__list_decimal_period] = STATE(1007), + [sym__list_item_decimal_period] = STATE(714), + [sym__list_decimal_paren] = STATE(1007), + [sym__list_item_decimal_paren] = STATE(719), + [sym__list_decimal_parens] = STATE(1007), + [sym__list_item_decimal_parens] = STATE(746), + [sym__list_lower_alpha_period] = STATE(1007), + [sym__list_item_lower_alpha_period] = STATE(748), + [sym__list_lower_alpha_paren] = STATE(1007), + [sym__list_item_lower_alpha_paren] = STATE(749), + [sym__list_lower_alpha_parens] = STATE(1007), + [sym__list_item_lower_alpha_parens] = STATE(753), + [sym__list_upper_alpha_period] = STATE(1007), + [sym__list_item_upper_alpha_period] = STATE(761), + [sym__list_upper_alpha_paren] = STATE(1007), + [sym__list_item_upper_alpha_paren] = STATE(764), + [sym__list_upper_alpha_parens] = STATE(1007), + [sym__list_item_upper_alpha_parens] = STATE(765), + [sym__list_lower_roman_period] = STATE(1007), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(1007), + [sym__list_item_lower_roman_paren] = STATE(769), + [sym__list_lower_roman_parens] = STATE(1007), + [sym__list_item_lower_roman_parens] = STATE(786), + [sym__list_upper_roman_period] = STATE(1007), + [sym__list_item_upper_roman_period] = STATE(791), + [sym__list_upper_roman_paren] = STATE(1007), + [sym__list_item_upper_roman_paren] = STATE(793), + [sym__list_upper_roman_parens] = STATE(1007), + [sym__list_item_upper_roman_parens] = STATE(799), + [sym_table] = STATE(1001), [sym__table_row] = STATE(234), [sym_table_header] = STATE(234), [sym_table_separator] = STATE(234), [sym_table_row] = STATE(234), - [sym_footnote] = STATE(990), - [sym_footnote_marker_begin] = STATE(1136), - [sym_div] = STATE(990), - [sym__div_marker_begin] = STATE(1018), - [sym_code_block] = STATE(990), - [sym_raw_block] = STATE(990), - [sym_thematic_break] = STATE(990), - [sym_block_quote] = STATE(990), + [sym_footnote] = STATE(1001), + [sym_footnote_marker_begin] = STATE(1135), + [sym_div] = STATE(1001), + [sym__div_marker_begin] = STATE(1017), + [sym_code_block] = STATE(1001), + [sym_raw_block] = STATE(1001), + [sym_thematic_break] = STATE(1001), + [sym_block_quote] = STATE(1001), [sym__block_quote_prefix] = STATE(225), - [sym_link_reference_definition] = STATE(990), - [sym_block_attribute] = STATE(990), - [sym__paragraph] = STATE(990), - [sym__paragraph_content] = STATE(724), - [sym__paragraph_inline_content] = STATE(837), - [sym__inline] = STATE(656), + [sym_link_reference_definition] = STATE(1001), + [sym_block_attribute] = STATE(1001), + [sym__paragraph] = STATE(1001), + [sym__paragraph_content] = STATE(690), + [sym__paragraph_inline_content] = STATE(824), + [sym__inline] = STATE(654), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(318), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_star_repeat1] = STATE(320), - [aux_sym__list_task_repeat1] = STATE(287), - [aux_sym__list_definition_repeat1] = STATE(459), - [aux_sym__list_decimal_period_repeat1] = STATE(460), - [aux_sym__list_decimal_paren_repeat1] = STATE(461), - [aux_sym__list_decimal_parens_repeat1] = STATE(462), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(463), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(464), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(465), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(466), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(467), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(468), - [aux_sym__list_lower_roman_period_repeat1] = STATE(469), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(470), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(471), - [aux_sym__list_upper_roman_period_repeat1] = STATE(472), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(473), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym__list_dash_repeat1] = STATE(316), + [aux_sym__list_plus_repeat1] = STATE(336), + [aux_sym__list_star_repeat1] = STATE(318), + [aux_sym__list_task_repeat1] = STATE(288), + [aux_sym__list_definition_repeat1] = STATE(456), + [aux_sym__list_decimal_period_repeat1] = STATE(457), + [aux_sym__list_decimal_paren_repeat1] = STATE(458), + [aux_sym__list_decimal_parens_repeat1] = STATE(459), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(460), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(461), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(462), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(463), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(464), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(465), + [aux_sym__list_lower_roman_period_repeat1] = STATE(466), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(467), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(468), + [aux_sym__list_upper_roman_period_repeat1] = STATE(469), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(470), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(471), [aux_sym_table_repeat1] = STATE(234), [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), @@ -11845,92 +11843,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block_attribute_begin] = ACTIONS(384), }, [56] = { - [sym__block_with_heading] = STATE(931), - [sym__block_element] = STATE(931), - [sym_heading] = STATE(931), - [sym_list] = STATE(931), - [sym__list_dash] = STATE(1008), - [sym__list_item_dash] = STATE(645), - [sym__list_plus] = STATE(1008), - [sym__list_item_plus] = STATE(661), - [sym__list_star] = STATE(1008), - [sym__list_item_star] = STATE(573), - [sym__list_task] = STATE(1008), - [sym__list_item_task] = STATE(590), + [sym__block_with_heading] = STATE(930), + [sym__block_element] = STATE(930), + [sym_heading] = STATE(930), + [sym_list] = STATE(930), + [sym__list_dash] = STATE(1007), + [sym__list_item_dash] = STATE(595), + [sym__list_plus] = STATE(1007), + [sym__list_item_plus] = STATE(657), + [sym__list_star] = STATE(1007), + [sym__list_item_star] = STATE(570), + [sym__list_task] = STATE(1007), + [sym__list_item_task] = STATE(586), [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(1008), - [sym__list_item_definition] = STATE(740), - [sym__list_decimal_period] = STATE(1008), - [sym__list_item_decimal_period] = STATE(743), - [sym__list_decimal_paren] = STATE(1008), - [sym__list_item_decimal_paren] = STATE(748), - [sym__list_decimal_parens] = STATE(1008), - [sym__list_item_decimal_parens] = STATE(768), - [sym__list_lower_alpha_period] = STATE(1008), - [sym__list_item_lower_alpha_period] = STATE(769), - [sym__list_lower_alpha_paren] = STATE(1008), - [sym__list_item_lower_alpha_paren] = STATE(773), - [sym__list_lower_alpha_parens] = STATE(1008), - [sym__list_item_lower_alpha_parens] = STATE(774), - [sym__list_upper_alpha_period] = STATE(1008), - [sym__list_item_upper_alpha_period] = STATE(782), - [sym__list_upper_alpha_paren] = STATE(1008), - [sym__list_item_upper_alpha_paren] = STATE(783), - [sym__list_upper_alpha_parens] = STATE(1008), - [sym__list_item_upper_alpha_parens] = STATE(786), - [sym__list_lower_roman_period] = STATE(1008), - [sym__list_item_lower_roman_period] = STATE(787), - [sym__list_lower_roman_paren] = STATE(1008), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(1008), - [sym__list_item_lower_roman_parens] = STATE(803), - [sym__list_upper_roman_period] = STATE(1008), - [sym__list_item_upper_roman_period] = STATE(808), - [sym__list_upper_roman_paren] = STATE(1008), - [sym__list_item_upper_roman_paren] = STATE(814), - [sym__list_upper_roman_parens] = STATE(1008), - [sym__list_item_upper_roman_parens] = STATE(819), - [sym_table] = STATE(931), + [sym__list_definition] = STATE(1007), + [sym__list_item_definition] = STATE(694), + [sym__list_decimal_period] = STATE(1007), + [sym__list_item_decimal_period] = STATE(714), + [sym__list_decimal_paren] = STATE(1007), + [sym__list_item_decimal_paren] = STATE(719), + [sym__list_decimal_parens] = STATE(1007), + [sym__list_item_decimal_parens] = STATE(746), + [sym__list_lower_alpha_period] = STATE(1007), + [sym__list_item_lower_alpha_period] = STATE(748), + [sym__list_lower_alpha_paren] = STATE(1007), + [sym__list_item_lower_alpha_paren] = STATE(749), + [sym__list_lower_alpha_parens] = STATE(1007), + [sym__list_item_lower_alpha_parens] = STATE(753), + [sym__list_upper_alpha_period] = STATE(1007), + [sym__list_item_upper_alpha_period] = STATE(761), + [sym__list_upper_alpha_paren] = STATE(1007), + [sym__list_item_upper_alpha_paren] = STATE(764), + [sym__list_upper_alpha_parens] = STATE(1007), + [sym__list_item_upper_alpha_parens] = STATE(765), + [sym__list_lower_roman_period] = STATE(1007), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(1007), + [sym__list_item_lower_roman_paren] = STATE(769), + [sym__list_lower_roman_parens] = STATE(1007), + [sym__list_item_lower_roman_parens] = STATE(786), + [sym__list_upper_roman_period] = STATE(1007), + [sym__list_item_upper_roman_period] = STATE(791), + [sym__list_upper_roman_paren] = STATE(1007), + [sym__list_item_upper_roman_paren] = STATE(793), + [sym__list_upper_roman_parens] = STATE(1007), + [sym__list_item_upper_roman_parens] = STATE(799), + [sym_table] = STATE(930), [sym__table_row] = STATE(234), [sym_table_header] = STATE(234), [sym_table_separator] = STATE(234), [sym_table_row] = STATE(234), - [sym_footnote] = STATE(931), - [sym_footnote_marker_begin] = STATE(1136), - [sym_div] = STATE(931), - [sym__div_marker_begin] = STATE(1018), - [sym_code_block] = STATE(931), - [sym_raw_block] = STATE(931), - [sym_thematic_break] = STATE(931), - [sym_block_quote] = STATE(931), + [sym_footnote] = STATE(930), + [sym_footnote_marker_begin] = STATE(1135), + [sym_div] = STATE(930), + [sym__div_marker_begin] = STATE(1017), + [sym_code_block] = STATE(930), + [sym_raw_block] = STATE(930), + [sym_thematic_break] = STATE(930), + [sym_block_quote] = STATE(930), [sym__block_quote_prefix] = STATE(225), - [sym_link_reference_definition] = STATE(931), - [sym_block_attribute] = STATE(931), - [sym__paragraph] = STATE(931), - [sym__paragraph_content] = STATE(724), - [sym__paragraph_inline_content] = STATE(837), - [sym__inline] = STATE(656), + [sym_link_reference_definition] = STATE(930), + [sym_block_attribute] = STATE(930), + [sym__paragraph] = STATE(930), + [sym__paragraph_content] = STATE(690), + [sym__paragraph_inline_content] = STATE(824), + [sym__inline] = STATE(654), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(318), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_star_repeat1] = STATE(320), - [aux_sym__list_task_repeat1] = STATE(287), - [aux_sym__list_definition_repeat1] = STATE(459), - [aux_sym__list_decimal_period_repeat1] = STATE(460), - [aux_sym__list_decimal_paren_repeat1] = STATE(461), - [aux_sym__list_decimal_parens_repeat1] = STATE(462), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(463), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(464), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(465), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(466), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(467), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(468), - [aux_sym__list_lower_roman_period_repeat1] = STATE(469), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(470), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(471), - [aux_sym__list_upper_roman_period_repeat1] = STATE(472), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(473), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym__list_dash_repeat1] = STATE(316), + [aux_sym__list_plus_repeat1] = STATE(336), + [aux_sym__list_star_repeat1] = STATE(318), + [aux_sym__list_task_repeat1] = STATE(288), + [aux_sym__list_definition_repeat1] = STATE(456), + [aux_sym__list_decimal_period_repeat1] = STATE(457), + [aux_sym__list_decimal_paren_repeat1] = STATE(458), + [aux_sym__list_decimal_parens_repeat1] = STATE(459), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(460), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(461), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(462), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(463), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(464), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(465), + [aux_sym__list_lower_roman_period_repeat1] = STATE(466), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(467), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(468), + [aux_sym__list_upper_roman_period_repeat1] = STATE(469), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(470), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(471), [aux_sym_table_repeat1] = STATE(234), [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), @@ -11978,89 +11976,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block_element] = STATE(419), [sym_heading] = STATE(419), [sym_list] = STATE(419), - [sym__list_dash] = STATE(736), - [sym__list_item_dash] = STATE(645), - [sym__list_plus] = STATE(736), - [sym__list_item_plus] = STATE(661), - [sym__list_star] = STATE(736), - [sym__list_item_star] = STATE(573), - [sym__list_task] = STATE(736), - [sym__list_item_task] = STATE(590), + [sym__list_dash] = STATE(731), + [sym__list_item_dash] = STATE(595), + [sym__list_plus] = STATE(731), + [sym__list_item_plus] = STATE(657), + [sym__list_star] = STATE(731), + [sym__list_item_star] = STATE(570), + [sym__list_task] = STATE(731), + [sym__list_item_task] = STATE(586), [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(736), - [sym__list_item_definition] = STATE(740), - [sym__list_decimal_period] = STATE(736), - [sym__list_item_decimal_period] = STATE(743), - [sym__list_decimal_paren] = STATE(736), - [sym__list_item_decimal_paren] = STATE(748), - [sym__list_decimal_parens] = STATE(736), - [sym__list_item_decimal_parens] = STATE(768), - [sym__list_lower_alpha_period] = STATE(736), - [sym__list_item_lower_alpha_period] = STATE(769), - [sym__list_lower_alpha_paren] = STATE(736), - [sym__list_item_lower_alpha_paren] = STATE(773), - [sym__list_lower_alpha_parens] = STATE(736), - [sym__list_item_lower_alpha_parens] = STATE(774), - [sym__list_upper_alpha_period] = STATE(736), - [sym__list_item_upper_alpha_period] = STATE(782), - [sym__list_upper_alpha_paren] = STATE(736), - [sym__list_item_upper_alpha_paren] = STATE(783), - [sym__list_upper_alpha_parens] = STATE(736), - [sym__list_item_upper_alpha_parens] = STATE(786), - [sym__list_lower_roman_period] = STATE(736), - [sym__list_item_lower_roman_period] = STATE(787), - [sym__list_lower_roman_paren] = STATE(736), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(736), - [sym__list_item_lower_roman_parens] = STATE(803), - [sym__list_upper_roman_period] = STATE(736), - [sym__list_item_upper_roman_period] = STATE(808), - [sym__list_upper_roman_paren] = STATE(736), - [sym__list_item_upper_roman_paren] = STATE(814), - [sym__list_upper_roman_parens] = STATE(736), - [sym__list_item_upper_roman_parens] = STATE(819), + [sym__list_definition] = STATE(731), + [sym__list_item_definition] = STATE(694), + [sym__list_decimal_period] = STATE(731), + [sym__list_item_decimal_period] = STATE(714), + [sym__list_decimal_paren] = STATE(731), + [sym__list_item_decimal_paren] = STATE(719), + [sym__list_decimal_parens] = STATE(731), + [sym__list_item_decimal_parens] = STATE(746), + [sym__list_lower_alpha_period] = STATE(731), + [sym__list_item_lower_alpha_period] = STATE(748), + [sym__list_lower_alpha_paren] = STATE(731), + [sym__list_item_lower_alpha_paren] = STATE(749), + [sym__list_lower_alpha_parens] = STATE(731), + [sym__list_item_lower_alpha_parens] = STATE(753), + [sym__list_upper_alpha_period] = STATE(731), + [sym__list_item_upper_alpha_period] = STATE(761), + [sym__list_upper_alpha_paren] = STATE(731), + [sym__list_item_upper_alpha_paren] = STATE(764), + [sym__list_upper_alpha_parens] = STATE(731), + [sym__list_item_upper_alpha_parens] = STATE(765), + [sym__list_lower_roman_period] = STATE(731), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(731), + [sym__list_item_lower_roman_paren] = STATE(769), + [sym__list_lower_roman_parens] = STATE(731), + [sym__list_item_lower_roman_parens] = STATE(786), + [sym__list_upper_roman_period] = STATE(731), + [sym__list_item_upper_roman_period] = STATE(791), + [sym__list_upper_roman_paren] = STATE(731), + [sym__list_item_upper_roman_paren] = STATE(793), + [sym__list_upper_roman_parens] = STATE(731), + [sym__list_item_upper_roman_parens] = STATE(799), [sym_table] = STATE(419), [sym__table_row] = STATE(233), [sym_table_header] = STATE(233), [sym_table_separator] = STATE(233), [sym_table_row] = STATE(233), [sym_footnote] = STATE(419), - [sym_footnote_marker_begin] = STATE(1138), + [sym_footnote_marker_begin] = STATE(1137), [sym_div] = STATE(419), - [sym__div_marker_begin] = STATE(1037), + [sym__div_marker_begin] = STATE(1036), [sym_code_block] = STATE(419), [sym_raw_block] = STATE(419), [sym_thematic_break] = STATE(419), [sym_block_quote] = STATE(419), - [sym__block_quote_content] = STATE(950), + [sym__block_quote_content] = STATE(949), [sym__block_quote_prefix] = STATE(222), [sym_link_reference_definition] = STATE(419), [sym_block_attribute] = STATE(419), [sym__paragraph] = STATE(419), - [sym__paragraph_content] = STATE(750), - [sym__paragraph_inline_content] = STATE(837), - [sym__inline] = STATE(656), + [sym__paragraph_content] = STATE(727), + [sym__paragraph_inline_content] = STATE(824), + [sym__inline] = STATE(654), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(347), - [aux_sym__list_plus_repeat1] = STATE(348), - [aux_sym__list_star_repeat1] = STATE(331), - [aux_sym__list_task_repeat1] = STATE(292), - [aux_sym__list_definition_repeat1] = STATE(478), - [aux_sym__list_decimal_period_repeat1] = STATE(479), - [aux_sym__list_decimal_paren_repeat1] = STATE(480), - [aux_sym__list_decimal_parens_repeat1] = STATE(481), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(482), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(483), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(484), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(485), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(486), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(487), - [aux_sym__list_lower_roman_period_repeat1] = STATE(488), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(489), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(490), - [aux_sym__list_upper_roman_period_repeat1] = STATE(491), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(492), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(493), + [aux_sym__list_dash_repeat1] = STATE(355), + [aux_sym__list_plus_repeat1] = STATE(356), + [aux_sym__list_star_repeat1] = STATE(357), + [aux_sym__list_task_repeat1] = STATE(294), + [aux_sym__list_definition_repeat1] = STATE(475), + [aux_sym__list_decimal_period_repeat1] = STATE(476), + [aux_sym__list_decimal_paren_repeat1] = STATE(477), + [aux_sym__list_decimal_parens_repeat1] = STATE(478), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(479), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(480), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(481), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(482), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(483), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(484), + [aux_sym__list_lower_roman_period_repeat1] = STATE(485), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(486), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(544), + [aux_sym__list_upper_roman_period_repeat1] = STATE(488), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(489), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(490), [aux_sym_table_repeat1] = STATE(233), [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), @@ -12107,89 +12105,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block_element] = STATE(419), [sym_heading] = STATE(419), [sym_list] = STATE(419), - [sym__list_dash] = STATE(736), - [sym__list_item_dash] = STATE(645), - [sym__list_plus] = STATE(736), - [sym__list_item_plus] = STATE(661), - [sym__list_star] = STATE(736), - [sym__list_item_star] = STATE(573), - [sym__list_task] = STATE(736), - [sym__list_item_task] = STATE(590), + [sym__list_dash] = STATE(731), + [sym__list_item_dash] = STATE(595), + [sym__list_plus] = STATE(731), + [sym__list_item_plus] = STATE(657), + [sym__list_star] = STATE(731), + [sym__list_item_star] = STATE(570), + [sym__list_task] = STATE(731), + [sym__list_item_task] = STATE(586), [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(736), - [sym__list_item_definition] = STATE(740), - [sym__list_decimal_period] = STATE(736), - [sym__list_item_decimal_period] = STATE(743), - [sym__list_decimal_paren] = STATE(736), - [sym__list_item_decimal_paren] = STATE(748), - [sym__list_decimal_parens] = STATE(736), - [sym__list_item_decimal_parens] = STATE(768), - [sym__list_lower_alpha_period] = STATE(736), - [sym__list_item_lower_alpha_period] = STATE(769), - [sym__list_lower_alpha_paren] = STATE(736), - [sym__list_item_lower_alpha_paren] = STATE(773), - [sym__list_lower_alpha_parens] = STATE(736), - [sym__list_item_lower_alpha_parens] = STATE(774), - [sym__list_upper_alpha_period] = STATE(736), - [sym__list_item_upper_alpha_period] = STATE(782), - [sym__list_upper_alpha_paren] = STATE(736), - [sym__list_item_upper_alpha_paren] = STATE(783), - [sym__list_upper_alpha_parens] = STATE(736), - [sym__list_item_upper_alpha_parens] = STATE(786), - [sym__list_lower_roman_period] = STATE(736), - [sym__list_item_lower_roman_period] = STATE(787), - [sym__list_lower_roman_paren] = STATE(736), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(736), - [sym__list_item_lower_roman_parens] = STATE(803), - [sym__list_upper_roman_period] = STATE(736), - [sym__list_item_upper_roman_period] = STATE(808), - [sym__list_upper_roman_paren] = STATE(736), - [sym__list_item_upper_roman_paren] = STATE(814), - [sym__list_upper_roman_parens] = STATE(736), - [sym__list_item_upper_roman_parens] = STATE(819), + [sym__list_definition] = STATE(731), + [sym__list_item_definition] = STATE(694), + [sym__list_decimal_period] = STATE(731), + [sym__list_item_decimal_period] = STATE(714), + [sym__list_decimal_paren] = STATE(731), + [sym__list_item_decimal_paren] = STATE(719), + [sym__list_decimal_parens] = STATE(731), + [sym__list_item_decimal_parens] = STATE(746), + [sym__list_lower_alpha_period] = STATE(731), + [sym__list_item_lower_alpha_period] = STATE(748), + [sym__list_lower_alpha_paren] = STATE(731), + [sym__list_item_lower_alpha_paren] = STATE(749), + [sym__list_lower_alpha_parens] = STATE(731), + [sym__list_item_lower_alpha_parens] = STATE(753), + [sym__list_upper_alpha_period] = STATE(731), + [sym__list_item_upper_alpha_period] = STATE(761), + [sym__list_upper_alpha_paren] = STATE(731), + [sym__list_item_upper_alpha_paren] = STATE(764), + [sym__list_upper_alpha_parens] = STATE(731), + [sym__list_item_upper_alpha_parens] = STATE(765), + [sym__list_lower_roman_period] = STATE(731), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(731), + [sym__list_item_lower_roman_paren] = STATE(769), + [sym__list_lower_roman_parens] = STATE(731), + [sym__list_item_lower_roman_parens] = STATE(786), + [sym__list_upper_roman_period] = STATE(731), + [sym__list_item_upper_roman_period] = STATE(791), + [sym__list_upper_roman_paren] = STATE(731), + [sym__list_item_upper_roman_paren] = STATE(793), + [sym__list_upper_roman_parens] = STATE(731), + [sym__list_item_upper_roman_parens] = STATE(799), [sym_table] = STATE(419), [sym__table_row] = STATE(233), [sym_table_header] = STATE(233), [sym_table_separator] = STATE(233), [sym_table_row] = STATE(233), [sym_footnote] = STATE(419), - [sym_footnote_marker_begin] = STATE(1138), + [sym_footnote_marker_begin] = STATE(1137), [sym_div] = STATE(419), - [sym__div_marker_begin] = STATE(1037), + [sym__div_marker_begin] = STATE(1036), [sym_code_block] = STATE(419), [sym_raw_block] = STATE(419), [sym_thematic_break] = STATE(419), [sym_block_quote] = STATE(419), - [sym__block_quote_content] = STATE(944), + [sym__block_quote_content] = STATE(1048), [sym__block_quote_prefix] = STATE(222), [sym_link_reference_definition] = STATE(419), [sym_block_attribute] = STATE(419), [sym__paragraph] = STATE(419), - [sym__paragraph_content] = STATE(750), - [sym__paragraph_inline_content] = STATE(837), - [sym__inline] = STATE(656), + [sym__paragraph_content] = STATE(727), + [sym__paragraph_inline_content] = STATE(824), + [sym__inline] = STATE(654), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(347), - [aux_sym__list_plus_repeat1] = STATE(348), - [aux_sym__list_star_repeat1] = STATE(331), - [aux_sym__list_task_repeat1] = STATE(292), - [aux_sym__list_definition_repeat1] = STATE(478), - [aux_sym__list_decimal_period_repeat1] = STATE(479), - [aux_sym__list_decimal_paren_repeat1] = STATE(480), - [aux_sym__list_decimal_parens_repeat1] = STATE(481), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(482), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(483), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(484), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(485), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(486), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(487), - [aux_sym__list_lower_roman_period_repeat1] = STATE(488), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(489), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(490), - [aux_sym__list_upper_roman_period_repeat1] = STATE(491), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(492), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(493), + [aux_sym__list_dash_repeat1] = STATE(355), + [aux_sym__list_plus_repeat1] = STATE(356), + [aux_sym__list_star_repeat1] = STATE(357), + [aux_sym__list_task_repeat1] = STATE(294), + [aux_sym__list_definition_repeat1] = STATE(475), + [aux_sym__list_decimal_period_repeat1] = STATE(476), + [aux_sym__list_decimal_paren_repeat1] = STATE(477), + [aux_sym__list_decimal_parens_repeat1] = STATE(478), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(479), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(480), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(481), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(482), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(483), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(484), + [aux_sym__list_lower_roman_period_repeat1] = STATE(485), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(486), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(544), + [aux_sym__list_upper_roman_period_repeat1] = STATE(488), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(489), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(490), [aux_sym_table_repeat1] = STATE(233), [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), @@ -12236,89 +12234,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block_element] = STATE(419), [sym_heading] = STATE(419), [sym_list] = STATE(419), - [sym__list_dash] = STATE(736), - [sym__list_item_dash] = STATE(645), - [sym__list_plus] = STATE(736), - [sym__list_item_plus] = STATE(661), - [sym__list_star] = STATE(736), - [sym__list_item_star] = STATE(573), - [sym__list_task] = STATE(736), - [sym__list_item_task] = STATE(590), + [sym__list_dash] = STATE(731), + [sym__list_item_dash] = STATE(595), + [sym__list_plus] = STATE(731), + [sym__list_item_plus] = STATE(657), + [sym__list_star] = STATE(731), + [sym__list_item_star] = STATE(570), + [sym__list_task] = STATE(731), + [sym__list_item_task] = STATE(586), [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(736), - [sym__list_item_definition] = STATE(740), - [sym__list_decimal_period] = STATE(736), - [sym__list_item_decimal_period] = STATE(743), - [sym__list_decimal_paren] = STATE(736), - [sym__list_item_decimal_paren] = STATE(748), - [sym__list_decimal_parens] = STATE(736), - [sym__list_item_decimal_parens] = STATE(768), - [sym__list_lower_alpha_period] = STATE(736), - [sym__list_item_lower_alpha_period] = STATE(769), - [sym__list_lower_alpha_paren] = STATE(736), - [sym__list_item_lower_alpha_paren] = STATE(773), - [sym__list_lower_alpha_parens] = STATE(736), - [sym__list_item_lower_alpha_parens] = STATE(774), - [sym__list_upper_alpha_period] = STATE(736), - [sym__list_item_upper_alpha_period] = STATE(782), - [sym__list_upper_alpha_paren] = STATE(736), - [sym__list_item_upper_alpha_paren] = STATE(783), - [sym__list_upper_alpha_parens] = STATE(736), - [sym__list_item_upper_alpha_parens] = STATE(786), - [sym__list_lower_roman_period] = STATE(736), - [sym__list_item_lower_roman_period] = STATE(787), - [sym__list_lower_roman_paren] = STATE(736), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(736), - [sym__list_item_lower_roman_parens] = STATE(803), - [sym__list_upper_roman_period] = STATE(736), - [sym__list_item_upper_roman_period] = STATE(808), - [sym__list_upper_roman_paren] = STATE(736), - [sym__list_item_upper_roman_paren] = STATE(814), - [sym__list_upper_roman_parens] = STATE(736), - [sym__list_item_upper_roman_parens] = STATE(819), + [sym__list_definition] = STATE(731), + [sym__list_item_definition] = STATE(694), + [sym__list_decimal_period] = STATE(731), + [sym__list_item_decimal_period] = STATE(714), + [sym__list_decimal_paren] = STATE(731), + [sym__list_item_decimal_paren] = STATE(719), + [sym__list_decimal_parens] = STATE(731), + [sym__list_item_decimal_parens] = STATE(746), + [sym__list_lower_alpha_period] = STATE(731), + [sym__list_item_lower_alpha_period] = STATE(748), + [sym__list_lower_alpha_paren] = STATE(731), + [sym__list_item_lower_alpha_paren] = STATE(749), + [sym__list_lower_alpha_parens] = STATE(731), + [sym__list_item_lower_alpha_parens] = STATE(753), + [sym__list_upper_alpha_period] = STATE(731), + [sym__list_item_upper_alpha_period] = STATE(761), + [sym__list_upper_alpha_paren] = STATE(731), + [sym__list_item_upper_alpha_paren] = STATE(764), + [sym__list_upper_alpha_parens] = STATE(731), + [sym__list_item_upper_alpha_parens] = STATE(765), + [sym__list_lower_roman_period] = STATE(731), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(731), + [sym__list_item_lower_roman_paren] = STATE(769), + [sym__list_lower_roman_parens] = STATE(731), + [sym__list_item_lower_roman_parens] = STATE(786), + [sym__list_upper_roman_period] = STATE(731), + [sym__list_item_upper_roman_period] = STATE(791), + [sym__list_upper_roman_paren] = STATE(731), + [sym__list_item_upper_roman_paren] = STATE(793), + [sym__list_upper_roman_parens] = STATE(731), + [sym__list_item_upper_roman_parens] = STATE(799), [sym_table] = STATE(419), [sym__table_row] = STATE(233), [sym_table_header] = STATE(233), [sym_table_separator] = STATE(233), [sym_table_row] = STATE(233), [sym_footnote] = STATE(419), - [sym_footnote_marker_begin] = STATE(1138), + [sym_footnote_marker_begin] = STATE(1137), [sym_div] = STATE(419), - [sym__div_marker_begin] = STATE(1037), + [sym__div_marker_begin] = STATE(1036), [sym_code_block] = STATE(419), [sym_raw_block] = STATE(419), [sym_thematic_break] = STATE(419), [sym_block_quote] = STATE(419), - [sym__block_quote_content] = STATE(1130), + [sym__block_quote_content] = STATE(1127), [sym__block_quote_prefix] = STATE(222), [sym_link_reference_definition] = STATE(419), [sym_block_attribute] = STATE(419), [sym__paragraph] = STATE(419), - [sym__paragraph_content] = STATE(750), - [sym__paragraph_inline_content] = STATE(837), - [sym__inline] = STATE(656), + [sym__paragraph_content] = STATE(727), + [sym__paragraph_inline_content] = STATE(824), + [sym__inline] = STATE(654), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(347), - [aux_sym__list_plus_repeat1] = STATE(348), - [aux_sym__list_star_repeat1] = STATE(331), - [aux_sym__list_task_repeat1] = STATE(292), - [aux_sym__list_definition_repeat1] = STATE(478), - [aux_sym__list_decimal_period_repeat1] = STATE(479), - [aux_sym__list_decimal_paren_repeat1] = STATE(480), - [aux_sym__list_decimal_parens_repeat1] = STATE(481), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(482), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(483), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(484), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(485), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(486), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(487), - [aux_sym__list_lower_roman_period_repeat1] = STATE(488), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(489), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(490), - [aux_sym__list_upper_roman_period_repeat1] = STATE(491), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(492), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(493), + [aux_sym__list_dash_repeat1] = STATE(355), + [aux_sym__list_plus_repeat1] = STATE(356), + [aux_sym__list_star_repeat1] = STATE(357), + [aux_sym__list_task_repeat1] = STATE(294), + [aux_sym__list_definition_repeat1] = STATE(475), + [aux_sym__list_decimal_period_repeat1] = STATE(476), + [aux_sym__list_decimal_paren_repeat1] = STATE(477), + [aux_sym__list_decimal_parens_repeat1] = STATE(478), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(479), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(480), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(481), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(482), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(483), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(484), + [aux_sym__list_lower_roman_period_repeat1] = STATE(485), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(486), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(544), + [aux_sym__list_upper_roman_period_repeat1] = STATE(488), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(489), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(490), [aux_sym_table_repeat1] = STATE(233), [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), @@ -12362,91 +12360,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block_attribute_begin] = ACTIONS(486), }, [60] = { - [sym__block_element] = STATE(649), - [sym_heading] = STATE(649), - [sym_list] = STATE(649), - [sym__list_dash] = STATE(601), - [sym__list_item_dash] = STATE(645), - [sym__list_plus] = STATE(601), - [sym__list_item_plus] = STATE(661), - [sym__list_star] = STATE(601), - [sym__list_item_star] = STATE(573), - [sym__list_task] = STATE(601), - [sym__list_item_task] = STATE(590), + [sym__block_element] = STATE(644), + [sym_heading] = STATE(644), + [sym_list] = STATE(644), + [sym__list_dash] = STATE(598), + [sym__list_item_dash] = STATE(595), + [sym__list_plus] = STATE(598), + [sym__list_item_plus] = STATE(657), + [sym__list_star] = STATE(598), + [sym__list_item_star] = STATE(570), + [sym__list_task] = STATE(598), + [sym__list_item_task] = STATE(586), [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(601), - [sym__list_item_definition] = STATE(740), - [sym__list_decimal_period] = STATE(601), - [sym__list_item_decimal_period] = STATE(743), - [sym__list_decimal_paren] = STATE(601), - [sym__list_item_decimal_paren] = STATE(748), - [sym__list_decimal_parens] = STATE(601), - [sym__list_item_decimal_parens] = STATE(768), - [sym__list_lower_alpha_period] = STATE(601), - [sym__list_item_lower_alpha_period] = STATE(769), - [sym__list_lower_alpha_paren] = STATE(601), - [sym__list_item_lower_alpha_paren] = STATE(773), - [sym__list_lower_alpha_parens] = STATE(601), - [sym__list_item_lower_alpha_parens] = STATE(774), - [sym__list_upper_alpha_period] = STATE(601), - [sym__list_item_upper_alpha_period] = STATE(782), - [sym__list_upper_alpha_paren] = STATE(601), - [sym__list_item_upper_alpha_paren] = STATE(783), - [sym__list_upper_alpha_parens] = STATE(601), - [sym__list_item_upper_alpha_parens] = STATE(786), - [sym__list_lower_roman_period] = STATE(601), - [sym__list_item_lower_roman_period] = STATE(787), - [sym__list_lower_roman_paren] = STATE(601), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(601), - [sym__list_item_lower_roman_parens] = STATE(803), - [sym__list_upper_roman_period] = STATE(601), - [sym__list_item_upper_roman_period] = STATE(808), - [sym__list_upper_roman_paren] = STATE(601), - [sym__list_item_upper_roman_paren] = STATE(814), - [sym__list_upper_roman_parens] = STATE(601), - [sym__list_item_upper_roman_parens] = STATE(819), - [sym_table] = STATE(649), + [sym__list_definition] = STATE(598), + [sym__list_item_definition] = STATE(694), + [sym__list_decimal_period] = STATE(598), + [sym__list_item_decimal_period] = STATE(714), + [sym__list_decimal_paren] = STATE(598), + [sym__list_item_decimal_paren] = STATE(719), + [sym__list_decimal_parens] = STATE(598), + [sym__list_item_decimal_parens] = STATE(746), + [sym__list_lower_alpha_period] = STATE(598), + [sym__list_item_lower_alpha_period] = STATE(748), + [sym__list_lower_alpha_paren] = STATE(598), + [sym__list_item_lower_alpha_paren] = STATE(749), + [sym__list_lower_alpha_parens] = STATE(598), + [sym__list_item_lower_alpha_parens] = STATE(753), + [sym__list_upper_alpha_period] = STATE(598), + [sym__list_item_upper_alpha_period] = STATE(761), + [sym__list_upper_alpha_paren] = STATE(598), + [sym__list_item_upper_alpha_paren] = STATE(764), + [sym__list_upper_alpha_parens] = STATE(598), + [sym__list_item_upper_alpha_parens] = STATE(765), + [sym__list_lower_roman_period] = STATE(598), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(598), + [sym__list_item_lower_roman_paren] = STATE(769), + [sym__list_lower_roman_parens] = STATE(598), + [sym__list_item_lower_roman_parens] = STATE(786), + [sym__list_upper_roman_period] = STATE(598), + [sym__list_item_upper_roman_period] = STATE(791), + [sym__list_upper_roman_paren] = STATE(598), + [sym__list_item_upper_roman_paren] = STATE(793), + [sym__list_upper_roman_parens] = STATE(598), + [sym__list_item_upper_roman_parens] = STATE(799), + [sym_table] = STATE(644), [sym__table_row] = STATE(229), [sym_table_header] = STATE(229), [sym_table_separator] = STATE(229), [sym_table_row] = STATE(229), - [sym_footnote] = STATE(649), - [sym_footnote_marker_begin] = STATE(1142), - [sym_div] = STATE(649), - [sym__div_marker_begin] = STATE(1074), - [sym_code_block] = STATE(649), - [sym_raw_block] = STATE(649), - [sym_thematic_break] = STATE(649), - [sym_block_quote] = STATE(649), + [sym_footnote] = STATE(644), + [sym_footnote_marker_begin] = STATE(894), + [sym_div] = STATE(644), + [sym__div_marker_begin] = STATE(1073), + [sym_code_block] = STATE(644), + [sym_raw_block] = STATE(644), + [sym_thematic_break] = STATE(644), + [sym_block_quote] = STATE(644), [sym__block_quote_prefix] = STATE(224), - [sym_link_reference_definition] = STATE(649), - [sym_block_attribute] = STATE(649), - [sym__paragraph] = STATE(649), - [sym__paragraph_content] = STATE(816), - [sym__paragraph_inline_content] = STATE(837), - [sym__inline] = STATE(656), + [sym_link_reference_definition] = STATE(644), + [sym_block_attribute] = STATE(644), + [sym__paragraph] = STATE(644), + [sym__paragraph_content] = STATE(800), + [sym__paragraph_inline_content] = STATE(824), + [sym__inline] = STATE(654), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(328), - [aux_sym__list_plus_repeat1] = STATE(329), - [aux_sym__list_star_repeat1] = STATE(330), - [aux_sym__list_task_repeat1] = STATE(302), - [aux_sym__list_definition_repeat1] = STATE(510), - [aux_sym__list_decimal_period_repeat1] = STATE(511), - [aux_sym__list_decimal_paren_repeat1] = STATE(512), - [aux_sym__list_decimal_parens_repeat1] = STATE(513), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(514), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(515), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(516), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(517), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(518), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(519), - [aux_sym__list_lower_roman_period_repeat1] = STATE(520), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(521), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(522), - [aux_sym__list_upper_roman_period_repeat1] = STATE(523), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(524), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(525), + [aux_sym__list_dash_repeat1] = STATE(333), + [aux_sym__list_plus_repeat1] = STATE(334), + [aux_sym__list_star_repeat1] = STATE(335), + [aux_sym__list_task_repeat1] = STATE(304), + [aux_sym__list_definition_repeat1] = STATE(507), + [aux_sym__list_decimal_period_repeat1] = STATE(508), + [aux_sym__list_decimal_paren_repeat1] = STATE(509), + [aux_sym__list_decimal_parens_repeat1] = STATE(510), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(511), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(512), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(513), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(514), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(515), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(516), + [aux_sym__list_lower_roman_period_repeat1] = STATE(517), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(518), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(519), + [aux_sym__list_upper_roman_period_repeat1] = STATE(520), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(521), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(522), [aux_sym_table_repeat1] = STATE(229), [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), @@ -12491,91 +12489,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block_attribute_begin] = ACTIONS(452), }, [61] = { - [sym__block_element] = STATE(936), - [sym_heading] = STATE(936), - [sym_list] = STATE(936), - [sym__list_dash] = STATE(1008), - [sym__list_item_dash] = STATE(645), - [sym__list_plus] = STATE(1008), - [sym__list_item_plus] = STATE(661), - [sym__list_star] = STATE(1008), - [sym__list_item_star] = STATE(573), - [sym__list_task] = STATE(1008), - [sym__list_item_task] = STATE(590), + [sym__block_element] = STATE(945), + [sym_heading] = STATE(945), + [sym_list] = STATE(945), + [sym__list_dash] = STATE(1007), + [sym__list_item_dash] = STATE(595), + [sym__list_plus] = STATE(1007), + [sym__list_item_plus] = STATE(657), + [sym__list_star] = STATE(1007), + [sym__list_item_star] = STATE(570), + [sym__list_task] = STATE(1007), + [sym__list_item_task] = STATE(586), [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(1008), - [sym__list_item_definition] = STATE(740), - [sym__list_decimal_period] = STATE(1008), - [sym__list_item_decimal_period] = STATE(743), - [sym__list_decimal_paren] = STATE(1008), - [sym__list_item_decimal_paren] = STATE(748), - [sym__list_decimal_parens] = STATE(1008), - [sym__list_item_decimal_parens] = STATE(768), - [sym__list_lower_alpha_period] = STATE(1008), - [sym__list_item_lower_alpha_period] = STATE(769), - [sym__list_lower_alpha_paren] = STATE(1008), - [sym__list_item_lower_alpha_paren] = STATE(773), - [sym__list_lower_alpha_parens] = STATE(1008), - [sym__list_item_lower_alpha_parens] = STATE(774), - [sym__list_upper_alpha_period] = STATE(1008), - [sym__list_item_upper_alpha_period] = STATE(782), - [sym__list_upper_alpha_paren] = STATE(1008), - [sym__list_item_upper_alpha_paren] = STATE(783), - [sym__list_upper_alpha_parens] = STATE(1008), - [sym__list_item_upper_alpha_parens] = STATE(786), - [sym__list_lower_roman_period] = STATE(1008), - [sym__list_item_lower_roman_period] = STATE(787), - [sym__list_lower_roman_paren] = STATE(1008), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(1008), - [sym__list_item_lower_roman_parens] = STATE(803), - [sym__list_upper_roman_period] = STATE(1008), - [sym__list_item_upper_roman_period] = STATE(808), - [sym__list_upper_roman_paren] = STATE(1008), - [sym__list_item_upper_roman_paren] = STATE(814), - [sym__list_upper_roman_parens] = STATE(1008), - [sym__list_item_upper_roman_parens] = STATE(819), - [sym_table] = STATE(936), + [sym__list_definition] = STATE(1007), + [sym__list_item_definition] = STATE(694), + [sym__list_decimal_period] = STATE(1007), + [sym__list_item_decimal_period] = STATE(714), + [sym__list_decimal_paren] = STATE(1007), + [sym__list_item_decimal_paren] = STATE(719), + [sym__list_decimal_parens] = STATE(1007), + [sym__list_item_decimal_parens] = STATE(746), + [sym__list_lower_alpha_period] = STATE(1007), + [sym__list_item_lower_alpha_period] = STATE(748), + [sym__list_lower_alpha_paren] = STATE(1007), + [sym__list_item_lower_alpha_paren] = STATE(749), + [sym__list_lower_alpha_parens] = STATE(1007), + [sym__list_item_lower_alpha_parens] = STATE(753), + [sym__list_upper_alpha_period] = STATE(1007), + [sym__list_item_upper_alpha_period] = STATE(761), + [sym__list_upper_alpha_paren] = STATE(1007), + [sym__list_item_upper_alpha_paren] = STATE(764), + [sym__list_upper_alpha_parens] = STATE(1007), + [sym__list_item_upper_alpha_parens] = STATE(765), + [sym__list_lower_roman_period] = STATE(1007), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(1007), + [sym__list_item_lower_roman_paren] = STATE(769), + [sym__list_lower_roman_parens] = STATE(1007), + [sym__list_item_lower_roman_parens] = STATE(786), + [sym__list_upper_roman_period] = STATE(1007), + [sym__list_item_upper_roman_period] = STATE(791), + [sym__list_upper_roman_paren] = STATE(1007), + [sym__list_item_upper_roman_paren] = STATE(793), + [sym__list_upper_roman_parens] = STATE(1007), + [sym__list_item_upper_roman_parens] = STATE(799), + [sym_table] = STATE(945), [sym__table_row] = STATE(234), [sym_table_header] = STATE(234), [sym_table_separator] = STATE(234), [sym_table_row] = STATE(234), - [sym_footnote] = STATE(936), - [sym_footnote_marker_begin] = STATE(1136), - [sym_div] = STATE(936), - [sym__div_marker_begin] = STATE(1018), - [sym_code_block] = STATE(936), - [sym_raw_block] = STATE(936), - [sym_thematic_break] = STATE(936), - [sym_block_quote] = STATE(936), + [sym_footnote] = STATE(945), + [sym_footnote_marker_begin] = STATE(1135), + [sym_div] = STATE(945), + [sym__div_marker_begin] = STATE(1017), + [sym_code_block] = STATE(945), + [sym_raw_block] = STATE(945), + [sym_thematic_break] = STATE(945), + [sym_block_quote] = STATE(945), [sym__block_quote_prefix] = STATE(225), - [sym_link_reference_definition] = STATE(936), - [sym_block_attribute] = STATE(936), - [sym__paragraph] = STATE(936), - [sym__paragraph_content] = STATE(724), - [sym__paragraph_inline_content] = STATE(837), - [sym__inline] = STATE(656), + [sym_link_reference_definition] = STATE(945), + [sym_block_attribute] = STATE(945), + [sym__paragraph] = STATE(945), + [sym__paragraph_content] = STATE(690), + [sym__paragraph_inline_content] = STATE(824), + [sym__inline] = STATE(654), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(318), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_star_repeat1] = STATE(320), - [aux_sym__list_task_repeat1] = STATE(287), - [aux_sym__list_definition_repeat1] = STATE(459), - [aux_sym__list_decimal_period_repeat1] = STATE(460), - [aux_sym__list_decimal_paren_repeat1] = STATE(461), - [aux_sym__list_decimal_parens_repeat1] = STATE(462), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(463), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(464), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(465), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(466), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(467), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(468), - [aux_sym__list_lower_roman_period_repeat1] = STATE(469), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(470), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(471), - [aux_sym__list_upper_roman_period_repeat1] = STATE(472), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(473), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(474), + [aux_sym__list_dash_repeat1] = STATE(316), + [aux_sym__list_plus_repeat1] = STATE(336), + [aux_sym__list_star_repeat1] = STATE(318), + [aux_sym__list_task_repeat1] = STATE(288), + [aux_sym__list_definition_repeat1] = STATE(456), + [aux_sym__list_decimal_period_repeat1] = STATE(457), + [aux_sym__list_decimal_paren_repeat1] = STATE(458), + [aux_sym__list_decimal_parens_repeat1] = STATE(459), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(460), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(461), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(462), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(463), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(464), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(465), + [aux_sym__list_lower_roman_period_repeat1] = STATE(466), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(467), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(468), + [aux_sym__list_upper_roman_period_repeat1] = STATE(469), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(470), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(471), [aux_sym_table_repeat1] = STATE(234), [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), @@ -12623,89 +12621,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block_element] = STATE(419), [sym_heading] = STATE(419), [sym_list] = STATE(419), - [sym__list_dash] = STATE(736), - [sym__list_item_dash] = STATE(645), - [sym__list_plus] = STATE(736), - [sym__list_item_plus] = STATE(661), - [sym__list_star] = STATE(736), - [sym__list_item_star] = STATE(573), - [sym__list_task] = STATE(736), - [sym__list_item_task] = STATE(590), + [sym__list_dash] = STATE(731), + [sym__list_item_dash] = STATE(595), + [sym__list_plus] = STATE(731), + [sym__list_item_plus] = STATE(657), + [sym__list_star] = STATE(731), + [sym__list_item_star] = STATE(570), + [sym__list_task] = STATE(731), + [sym__list_item_task] = STATE(586), [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(736), - [sym__list_item_definition] = STATE(740), - [sym__list_decimal_period] = STATE(736), - [sym__list_item_decimal_period] = STATE(743), - [sym__list_decimal_paren] = STATE(736), - [sym__list_item_decimal_paren] = STATE(748), - [sym__list_decimal_parens] = STATE(736), - [sym__list_item_decimal_parens] = STATE(768), - [sym__list_lower_alpha_period] = STATE(736), - [sym__list_item_lower_alpha_period] = STATE(769), - [sym__list_lower_alpha_paren] = STATE(736), - [sym__list_item_lower_alpha_paren] = STATE(773), - [sym__list_lower_alpha_parens] = STATE(736), - [sym__list_item_lower_alpha_parens] = STATE(774), - [sym__list_upper_alpha_period] = STATE(736), - [sym__list_item_upper_alpha_period] = STATE(782), - [sym__list_upper_alpha_paren] = STATE(736), - [sym__list_item_upper_alpha_paren] = STATE(783), - [sym__list_upper_alpha_parens] = STATE(736), - [sym__list_item_upper_alpha_parens] = STATE(786), - [sym__list_lower_roman_period] = STATE(736), - [sym__list_item_lower_roman_period] = STATE(787), - [sym__list_lower_roman_paren] = STATE(736), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(736), - [sym__list_item_lower_roman_parens] = STATE(803), - [sym__list_upper_roman_period] = STATE(736), - [sym__list_item_upper_roman_period] = STATE(808), - [sym__list_upper_roman_paren] = STATE(736), - [sym__list_item_upper_roman_paren] = STATE(814), - [sym__list_upper_roman_parens] = STATE(736), - [sym__list_item_upper_roman_parens] = STATE(819), + [sym__list_definition] = STATE(731), + [sym__list_item_definition] = STATE(694), + [sym__list_decimal_period] = STATE(731), + [sym__list_item_decimal_period] = STATE(714), + [sym__list_decimal_paren] = STATE(731), + [sym__list_item_decimal_paren] = STATE(719), + [sym__list_decimal_parens] = STATE(731), + [sym__list_item_decimal_parens] = STATE(746), + [sym__list_lower_alpha_period] = STATE(731), + [sym__list_item_lower_alpha_period] = STATE(748), + [sym__list_lower_alpha_paren] = STATE(731), + [sym__list_item_lower_alpha_paren] = STATE(749), + [sym__list_lower_alpha_parens] = STATE(731), + [sym__list_item_lower_alpha_parens] = STATE(753), + [sym__list_upper_alpha_period] = STATE(731), + [sym__list_item_upper_alpha_period] = STATE(761), + [sym__list_upper_alpha_paren] = STATE(731), + [sym__list_item_upper_alpha_paren] = STATE(764), + [sym__list_upper_alpha_parens] = STATE(731), + [sym__list_item_upper_alpha_parens] = STATE(765), + [sym__list_lower_roman_period] = STATE(731), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(731), + [sym__list_item_lower_roman_paren] = STATE(769), + [sym__list_lower_roman_parens] = STATE(731), + [sym__list_item_lower_roman_parens] = STATE(786), + [sym__list_upper_roman_period] = STATE(731), + [sym__list_item_upper_roman_period] = STATE(791), + [sym__list_upper_roman_paren] = STATE(731), + [sym__list_item_upper_roman_paren] = STATE(793), + [sym__list_upper_roman_parens] = STATE(731), + [sym__list_item_upper_roman_parens] = STATE(799), [sym_table] = STATE(419), [sym__table_row] = STATE(233), [sym_table_header] = STATE(233), [sym_table_separator] = STATE(233), [sym_table_row] = STATE(233), [sym_footnote] = STATE(419), - [sym_footnote_marker_begin] = STATE(1138), + [sym_footnote_marker_begin] = STATE(1137), [sym_div] = STATE(419), - [sym__div_marker_begin] = STATE(1037), + [sym__div_marker_begin] = STATE(1036), [sym_code_block] = STATE(419), [sym_raw_block] = STATE(419), [sym_thematic_break] = STATE(419), [sym_block_quote] = STATE(419), - [sym__block_quote_content] = STATE(895), + [sym__block_quote_content] = STATE(1116), [sym__block_quote_prefix] = STATE(222), [sym_link_reference_definition] = STATE(419), [sym_block_attribute] = STATE(419), [sym__paragraph] = STATE(419), - [sym__paragraph_content] = STATE(750), - [sym__paragraph_inline_content] = STATE(837), - [sym__inline] = STATE(656), + [sym__paragraph_content] = STATE(727), + [sym__paragraph_inline_content] = STATE(824), + [sym__inline] = STATE(654), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(347), - [aux_sym__list_plus_repeat1] = STATE(348), - [aux_sym__list_star_repeat1] = STATE(331), - [aux_sym__list_task_repeat1] = STATE(292), - [aux_sym__list_definition_repeat1] = STATE(478), - [aux_sym__list_decimal_period_repeat1] = STATE(479), - [aux_sym__list_decimal_paren_repeat1] = STATE(480), - [aux_sym__list_decimal_parens_repeat1] = STATE(481), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(482), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(483), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(484), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(485), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(486), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(487), - [aux_sym__list_lower_roman_period_repeat1] = STATE(488), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(489), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(490), - [aux_sym__list_upper_roman_period_repeat1] = STATE(491), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(492), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(493), + [aux_sym__list_dash_repeat1] = STATE(355), + [aux_sym__list_plus_repeat1] = STATE(356), + [aux_sym__list_star_repeat1] = STATE(357), + [aux_sym__list_task_repeat1] = STATE(294), + [aux_sym__list_definition_repeat1] = STATE(475), + [aux_sym__list_decimal_period_repeat1] = STATE(476), + [aux_sym__list_decimal_paren_repeat1] = STATE(477), + [aux_sym__list_decimal_parens_repeat1] = STATE(478), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(479), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(480), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(481), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(482), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(483), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(484), + [aux_sym__list_lower_roman_period_repeat1] = STATE(485), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(486), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(544), + [aux_sym__list_upper_roman_period_repeat1] = STATE(488), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(489), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(490), [aux_sym_table_repeat1] = STATE(233), [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), @@ -12753,55 +12751,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heading] = STATE(126), [sym_list] = STATE(126), [sym__list_dash] = STATE(129), - [sym__list_item_dash] = STATE(645), + [sym__list_item_dash] = STATE(595), [sym__list_plus] = STATE(129), - [sym__list_item_plus] = STATE(661), + [sym__list_item_plus] = STATE(657), [sym__list_star] = STATE(129), - [sym__list_item_star] = STATE(573), + [sym__list_item_star] = STATE(570), [sym__list_task] = STATE(129), - [sym__list_item_task] = STATE(590), + [sym__list_item_task] = STATE(586), [sym_list_marker_task] = STATE(43), [sym__list_definition] = STATE(129), - [sym__list_item_definition] = STATE(740), + [sym__list_item_definition] = STATE(694), [sym__list_decimal_period] = STATE(129), - [sym__list_item_decimal_period] = STATE(743), + [sym__list_item_decimal_period] = STATE(714), [sym__list_decimal_paren] = STATE(129), - [sym__list_item_decimal_paren] = STATE(748), + [sym__list_item_decimal_paren] = STATE(719), [sym__list_decimal_parens] = STATE(129), - [sym__list_item_decimal_parens] = STATE(768), + [sym__list_item_decimal_parens] = STATE(746), [sym__list_lower_alpha_period] = STATE(129), - [sym__list_item_lower_alpha_period] = STATE(769), + [sym__list_item_lower_alpha_period] = STATE(748), [sym__list_lower_alpha_paren] = STATE(129), - [sym__list_item_lower_alpha_paren] = STATE(773), + [sym__list_item_lower_alpha_paren] = STATE(749), [sym__list_lower_alpha_parens] = STATE(129), - [sym__list_item_lower_alpha_parens] = STATE(774), + [sym__list_item_lower_alpha_parens] = STATE(753), [sym__list_upper_alpha_period] = STATE(129), - [sym__list_item_upper_alpha_period] = STATE(782), + [sym__list_item_upper_alpha_period] = STATE(761), [sym__list_upper_alpha_paren] = STATE(129), - [sym__list_item_upper_alpha_paren] = STATE(783), + [sym__list_item_upper_alpha_paren] = STATE(764), [sym__list_upper_alpha_parens] = STATE(129), - [sym__list_item_upper_alpha_parens] = STATE(786), + [sym__list_item_upper_alpha_parens] = STATE(765), [sym__list_lower_roman_period] = STATE(129), - [sym__list_item_lower_roman_period] = STATE(787), + [sym__list_item_lower_roman_period] = STATE(768), [sym__list_lower_roman_paren] = STATE(129), - [sym__list_item_lower_roman_paren] = STATE(802), + [sym__list_item_lower_roman_paren] = STATE(769), [sym__list_lower_roman_parens] = STATE(129), - [sym__list_item_lower_roman_parens] = STATE(803), + [sym__list_item_lower_roman_parens] = STATE(786), [sym__list_upper_roman_period] = STATE(129), - [sym__list_item_upper_roman_period] = STATE(808), + [sym__list_item_upper_roman_period] = STATE(791), [sym__list_upper_roman_paren] = STATE(129), - [sym__list_item_upper_roman_paren] = STATE(814), + [sym__list_item_upper_roman_paren] = STATE(793), [sym__list_upper_roman_parens] = STATE(129), - [sym__list_item_upper_roman_parens] = STATE(819), + [sym__list_item_upper_roman_parens] = STATE(799), [sym_table] = STATE(126), [sym__table_row] = STATE(67), [sym_table_header] = STATE(67), [sym_table_separator] = STATE(67), [sym_table_row] = STATE(67), [sym_footnote] = STATE(126), - [sym_footnote_marker_begin] = STATE(894), + [sym_footnote_marker_begin] = STATE(1139), [sym_div] = STATE(126), - [sym__div_marker_begin] = STATE(1056), + [sym__div_marker_begin] = STATE(1055), [sym_code_block] = STATE(126), [sym_raw_block] = STATE(126), [sym_thematic_break] = STATE(126), @@ -12810,30 +12808,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_link_reference_definition] = STATE(126), [sym_block_attribute] = STATE(126), [sym__paragraph] = STATE(126), - [sym__paragraph_content] = STATE(784), - [sym__paragraph_inline_content] = STATE(837), - [sym__inline] = STATE(656), + [sym__paragraph_content] = STATE(766), + [sym__paragraph_inline_content] = STATE(824), + [sym__inline] = STATE(654), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(322), - [aux_sym__list_plus_repeat1] = STATE(323), - [aux_sym__list_star_repeat1] = STATE(324), - [aux_sym__list_task_repeat1] = STATE(285), - [aux_sym__list_definition_repeat1] = STATE(494), - [aux_sym__list_decimal_period_repeat1] = STATE(495), - [aux_sym__list_decimal_paren_repeat1] = STATE(496), - [aux_sym__list_decimal_parens_repeat1] = STATE(497), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(498), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(499), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(500), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(501), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(502), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(503), - [aux_sym__list_lower_roman_period_repeat1] = STATE(504), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(505), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(506), - [aux_sym__list_upper_roman_period_repeat1] = STATE(507), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(508), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(509), + [aux_sym__list_dash_repeat1] = STATE(323), + [aux_sym__list_plus_repeat1] = STATE(324), + [aux_sym__list_star_repeat1] = STATE(325), + [aux_sym__list_task_repeat1] = STATE(299), + [aux_sym__list_definition_repeat1] = STATE(491), + [aux_sym__list_decimal_period_repeat1] = STATE(492), + [aux_sym__list_decimal_paren_repeat1] = STATE(493), + [aux_sym__list_decimal_parens_repeat1] = STATE(494), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(495), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(496), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(497), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(498), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(499), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(500), + [aux_sym__list_lower_roman_period_repeat1] = STATE(501), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(502), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(503), + [aux_sym__list_upper_roman_period_repeat1] = STATE(504), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(505), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(506), [aux_sym_table_repeat1] = STATE(67), [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), @@ -12881,89 +12879,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block_element] = STATE(419), [sym_heading] = STATE(419), [sym_list] = STATE(419), - [sym__list_dash] = STATE(736), - [sym__list_item_dash] = STATE(645), - [sym__list_plus] = STATE(736), - [sym__list_item_plus] = STATE(661), - [sym__list_star] = STATE(736), - [sym__list_item_star] = STATE(573), - [sym__list_task] = STATE(736), - [sym__list_item_task] = STATE(590), + [sym__list_dash] = STATE(731), + [sym__list_item_dash] = STATE(595), + [sym__list_plus] = STATE(731), + [sym__list_item_plus] = STATE(657), + [sym__list_star] = STATE(731), + [sym__list_item_star] = STATE(570), + [sym__list_task] = STATE(731), + [sym__list_item_task] = STATE(586), [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(736), - [sym__list_item_definition] = STATE(740), - [sym__list_decimal_period] = STATE(736), - [sym__list_item_decimal_period] = STATE(743), - [sym__list_decimal_paren] = STATE(736), - [sym__list_item_decimal_paren] = STATE(748), - [sym__list_decimal_parens] = STATE(736), - [sym__list_item_decimal_parens] = STATE(768), - [sym__list_lower_alpha_period] = STATE(736), - [sym__list_item_lower_alpha_period] = STATE(769), - [sym__list_lower_alpha_paren] = STATE(736), - [sym__list_item_lower_alpha_paren] = STATE(773), - [sym__list_lower_alpha_parens] = STATE(736), - [sym__list_item_lower_alpha_parens] = STATE(774), - [sym__list_upper_alpha_period] = STATE(736), - [sym__list_item_upper_alpha_period] = STATE(782), - [sym__list_upper_alpha_paren] = STATE(736), - [sym__list_item_upper_alpha_paren] = STATE(783), - [sym__list_upper_alpha_parens] = STATE(736), - [sym__list_item_upper_alpha_parens] = STATE(786), - [sym__list_lower_roman_period] = STATE(736), - [sym__list_item_lower_roman_period] = STATE(787), - [sym__list_lower_roman_paren] = STATE(736), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(736), - [sym__list_item_lower_roman_parens] = STATE(803), - [sym__list_upper_roman_period] = STATE(736), - [sym__list_item_upper_roman_period] = STATE(808), - [sym__list_upper_roman_paren] = STATE(736), - [sym__list_item_upper_roman_paren] = STATE(814), - [sym__list_upper_roman_parens] = STATE(736), - [sym__list_item_upper_roman_parens] = STATE(819), + [sym__list_definition] = STATE(731), + [sym__list_item_definition] = STATE(694), + [sym__list_decimal_period] = STATE(731), + [sym__list_item_decimal_period] = STATE(714), + [sym__list_decimal_paren] = STATE(731), + [sym__list_item_decimal_paren] = STATE(719), + [sym__list_decimal_parens] = STATE(731), + [sym__list_item_decimal_parens] = STATE(746), + [sym__list_lower_alpha_period] = STATE(731), + [sym__list_item_lower_alpha_period] = STATE(748), + [sym__list_lower_alpha_paren] = STATE(731), + [sym__list_item_lower_alpha_paren] = STATE(749), + [sym__list_lower_alpha_parens] = STATE(731), + [sym__list_item_lower_alpha_parens] = STATE(753), + [sym__list_upper_alpha_period] = STATE(731), + [sym__list_item_upper_alpha_period] = STATE(761), + [sym__list_upper_alpha_paren] = STATE(731), + [sym__list_item_upper_alpha_paren] = STATE(764), + [sym__list_upper_alpha_parens] = STATE(731), + [sym__list_item_upper_alpha_parens] = STATE(765), + [sym__list_lower_roman_period] = STATE(731), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(731), + [sym__list_item_lower_roman_paren] = STATE(769), + [sym__list_lower_roman_parens] = STATE(731), + [sym__list_item_lower_roman_parens] = STATE(786), + [sym__list_upper_roman_period] = STATE(731), + [sym__list_item_upper_roman_period] = STATE(791), + [sym__list_upper_roman_paren] = STATE(731), + [sym__list_item_upper_roman_paren] = STATE(793), + [sym__list_upper_roman_parens] = STATE(731), + [sym__list_item_upper_roman_parens] = STATE(799), [sym_table] = STATE(419), [sym__table_row] = STATE(233), [sym_table_header] = STATE(233), [sym_table_separator] = STATE(233), [sym_table_row] = STATE(233), [sym_footnote] = STATE(419), - [sym_footnote_marker_begin] = STATE(1138), + [sym_footnote_marker_begin] = STATE(1137), [sym_div] = STATE(419), - [sym__div_marker_begin] = STATE(1037), + [sym__div_marker_begin] = STATE(1036), [sym_code_block] = STATE(419), [sym_raw_block] = STATE(419), [sym_thematic_break] = STATE(419), [sym_block_quote] = STATE(419), - [sym__block_quote_content] = STATE(949), + [sym__block_quote_content] = STATE(984), [sym__block_quote_prefix] = STATE(222), [sym_link_reference_definition] = STATE(419), [sym_block_attribute] = STATE(419), [sym__paragraph] = STATE(419), - [sym__paragraph_content] = STATE(750), - [sym__paragraph_inline_content] = STATE(837), - [sym__inline] = STATE(656), + [sym__paragraph_content] = STATE(727), + [sym__paragraph_inline_content] = STATE(824), + [sym__inline] = STATE(654), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(347), - [aux_sym__list_plus_repeat1] = STATE(348), - [aux_sym__list_star_repeat1] = STATE(331), - [aux_sym__list_task_repeat1] = STATE(292), - [aux_sym__list_definition_repeat1] = STATE(478), - [aux_sym__list_decimal_period_repeat1] = STATE(479), - [aux_sym__list_decimal_paren_repeat1] = STATE(480), - [aux_sym__list_decimal_parens_repeat1] = STATE(481), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(482), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(483), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(484), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(485), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(486), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(487), - [aux_sym__list_lower_roman_period_repeat1] = STATE(488), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(489), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(490), - [aux_sym__list_upper_roman_period_repeat1] = STATE(491), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(492), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(493), + [aux_sym__list_dash_repeat1] = STATE(355), + [aux_sym__list_plus_repeat1] = STATE(356), + [aux_sym__list_star_repeat1] = STATE(357), + [aux_sym__list_task_repeat1] = STATE(294), + [aux_sym__list_definition_repeat1] = STATE(475), + [aux_sym__list_decimal_period_repeat1] = STATE(476), + [aux_sym__list_decimal_paren_repeat1] = STATE(477), + [aux_sym__list_decimal_parens_repeat1] = STATE(478), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(479), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(480), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(481), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(482), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(483), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(484), + [aux_sym__list_lower_roman_period_repeat1] = STATE(485), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(486), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(544), + [aux_sym__list_upper_roman_period_repeat1] = STATE(488), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(489), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(490), [aux_sym_table_repeat1] = STATE(233), [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), @@ -13007,90 +13005,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block_attribute_begin] = ACTIONS(486), }, [65] = { - [sym__block_element] = STATE(693), - [sym_list] = STATE(693), - [sym__list_dash] = STATE(736), - [sym__list_item_dash] = STATE(645), - [sym__list_plus] = STATE(736), - [sym__list_item_plus] = STATE(661), - [sym__list_star] = STATE(736), - [sym__list_item_star] = STATE(573), - [sym__list_task] = STATE(736), - [sym__list_item_task] = STATE(590), + [sym__block_element] = STATE(819), + [sym_list] = STATE(819), + [sym__list_dash] = STATE(731), + [sym__list_item_dash] = STATE(595), + [sym__list_plus] = STATE(731), + [sym__list_item_plus] = STATE(657), + [sym__list_star] = STATE(731), + [sym__list_item_star] = STATE(570), + [sym__list_task] = STATE(731), + [sym__list_item_task] = STATE(586), [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(736), - [sym__list_item_definition] = STATE(740), - [sym__list_decimal_period] = STATE(736), - [sym__list_item_decimal_period] = STATE(743), - [sym__list_decimal_paren] = STATE(736), - [sym__list_item_decimal_paren] = STATE(748), - [sym__list_decimal_parens] = STATE(736), - [sym__list_item_decimal_parens] = STATE(768), - [sym__list_lower_alpha_period] = STATE(736), - [sym__list_item_lower_alpha_period] = STATE(769), - [sym__list_lower_alpha_paren] = STATE(736), - [sym__list_item_lower_alpha_paren] = STATE(773), - [sym__list_lower_alpha_parens] = STATE(736), - [sym__list_item_lower_alpha_parens] = STATE(774), - [sym__list_upper_alpha_period] = STATE(736), - [sym__list_item_upper_alpha_period] = STATE(782), - [sym__list_upper_alpha_paren] = STATE(736), - [sym__list_item_upper_alpha_paren] = STATE(783), - [sym__list_upper_alpha_parens] = STATE(736), - [sym__list_item_upper_alpha_parens] = STATE(786), - [sym__list_lower_roman_period] = STATE(736), - [sym__list_item_lower_roman_period] = STATE(787), - [sym__list_lower_roman_paren] = STATE(736), - [sym__list_item_lower_roman_paren] = STATE(802), - [sym__list_lower_roman_parens] = STATE(736), - [sym__list_item_lower_roman_parens] = STATE(803), - [sym__list_upper_roman_period] = STATE(736), - [sym__list_item_upper_roman_period] = STATE(808), - [sym__list_upper_roman_paren] = STATE(736), - [sym__list_item_upper_roman_paren] = STATE(814), - [sym__list_upper_roman_parens] = STATE(736), - [sym__list_item_upper_roman_parens] = STATE(819), - [sym_table] = STATE(693), + [sym__list_definition] = STATE(731), + [sym__list_item_definition] = STATE(694), + [sym__list_decimal_period] = STATE(731), + [sym__list_item_decimal_period] = STATE(714), + [sym__list_decimal_paren] = STATE(731), + [sym__list_item_decimal_paren] = STATE(719), + [sym__list_decimal_parens] = STATE(731), + [sym__list_item_decimal_parens] = STATE(746), + [sym__list_lower_alpha_period] = STATE(731), + [sym__list_item_lower_alpha_period] = STATE(748), + [sym__list_lower_alpha_paren] = STATE(731), + [sym__list_item_lower_alpha_paren] = STATE(749), + [sym__list_lower_alpha_parens] = STATE(731), + [sym__list_item_lower_alpha_parens] = STATE(753), + [sym__list_upper_alpha_period] = STATE(731), + [sym__list_item_upper_alpha_period] = STATE(761), + [sym__list_upper_alpha_paren] = STATE(731), + [sym__list_item_upper_alpha_paren] = STATE(764), + [sym__list_upper_alpha_parens] = STATE(731), + [sym__list_item_upper_alpha_parens] = STATE(765), + [sym__list_lower_roman_period] = STATE(731), + [sym__list_item_lower_roman_period] = STATE(768), + [sym__list_lower_roman_paren] = STATE(731), + [sym__list_item_lower_roman_paren] = STATE(769), + [sym__list_lower_roman_parens] = STATE(731), + [sym__list_item_lower_roman_parens] = STATE(786), + [sym__list_upper_roman_period] = STATE(731), + [sym__list_item_upper_roman_period] = STATE(791), + [sym__list_upper_roman_paren] = STATE(731), + [sym__list_item_upper_roman_paren] = STATE(793), + [sym__list_upper_roman_parens] = STATE(731), + [sym__list_item_upper_roman_parens] = STATE(799), + [sym_table] = STATE(819), [sym__table_row] = STATE(233), [sym_table_header] = STATE(233), [sym_table_separator] = STATE(233), [sym_table_row] = STATE(233), - [sym_footnote] = STATE(693), - [sym_footnote_marker_begin] = STATE(1138), - [sym_div] = STATE(693), - [sym__div_marker_begin] = STATE(1037), - [sym_code_block] = STATE(693), - [sym_raw_block] = STATE(693), - [sym_thematic_break] = STATE(693), - [sym_block_quote] = STATE(693), + [sym_footnote] = STATE(819), + [sym_footnote_marker_begin] = STATE(1137), + [sym_div] = STATE(819), + [sym__div_marker_begin] = STATE(1036), + [sym_code_block] = STATE(819), + [sym_raw_block] = STATE(819), + [sym_thematic_break] = STATE(819), + [sym_block_quote] = STATE(819), [sym__block_quote_prefix] = STATE(222), - [sym_link_reference_definition] = STATE(693), - [sym_block_attribute] = STATE(693), - [sym__paragraph] = STATE(693), - [sym__paragraph_content] = STATE(750), - [sym__paragraph_inline_content] = STATE(837), - [sym__inline] = STATE(656), + [sym_link_reference_definition] = STATE(819), + [sym_block_attribute] = STATE(819), + [sym__paragraph] = STATE(819), + [sym__paragraph_content] = STATE(727), + [sym__paragraph_inline_content] = STATE(824), + [sym__inline] = STATE(654), [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(347), - [aux_sym__list_plus_repeat1] = STATE(348), - [aux_sym__list_star_repeat1] = STATE(331), - [aux_sym__list_task_repeat1] = STATE(292), - [aux_sym__list_definition_repeat1] = STATE(478), - [aux_sym__list_decimal_period_repeat1] = STATE(479), - [aux_sym__list_decimal_paren_repeat1] = STATE(480), - [aux_sym__list_decimal_parens_repeat1] = STATE(481), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(482), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(483), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(484), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(485), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(486), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(487), - [aux_sym__list_lower_roman_period_repeat1] = STATE(488), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(489), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(490), - [aux_sym__list_upper_roman_period_repeat1] = STATE(491), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(492), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(493), + [aux_sym__list_dash_repeat1] = STATE(355), + [aux_sym__list_plus_repeat1] = STATE(356), + [aux_sym__list_star_repeat1] = STATE(357), + [aux_sym__list_task_repeat1] = STATE(294), + [aux_sym__list_definition_repeat1] = STATE(475), + [aux_sym__list_decimal_period_repeat1] = STATE(476), + [aux_sym__list_decimal_paren_repeat1] = STATE(477), + [aux_sym__list_decimal_parens_repeat1] = STATE(478), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(479), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(480), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(481), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(482), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(483), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(484), + [aux_sym__list_lower_roman_period_repeat1] = STATE(485), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(486), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(544), + [aux_sym__list_upper_roman_period_repeat1] = STATE(488), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(489), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(490), [aux_sym_table_repeat1] = STATE(233), [aux_sym__block_quote_prefix_repeat1] = STATE(230), [aux_sym__inline_repeat1] = STATE(273), @@ -13151,7 +13149,7 @@ static const uint16_t ts_small_parse_table[] = { sym__table_caption_begin, STATE(117), 1, sym_table_caption, - STATE(365), 1, + STATE(409), 1, sym__block_quote_prefix, STATE(421), 1, aux_sym__block_quote_prefix_repeat1, @@ -13213,7 +13211,7 @@ static const uint16_t ts_small_parse_table[] = { sym__table_caption_begin, STATE(153), 1, sym_table_caption, - STATE(399), 1, + STATE(385), 1, sym__block_quote_prefix, STATE(421), 1, aux_sym__block_quote_prefix_repeat1, @@ -13269,7 +13267,7 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, ACTIONS(524), 1, sym__table_row_begin, - STATE(399), 1, + STATE(385), 1, sym__block_quote_prefix, STATE(421), 1, aux_sym__block_quote_prefix_repeat1, @@ -13327,7 +13325,7 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, ACTIONS(533), 1, sym__table_row_begin, - STATE(365), 1, + STATE(409), 1, sym__block_quote_prefix, STATE(421), 1, aux_sym__block_quote_prefix_repeat1, @@ -19526,7 +19524,7 @@ static const uint16_t ts_small_parse_table[] = { sym_list_marker_plus, STATE(28), 1, sym_list_marker_task, - STATE(628), 1, + STATE(624), 1, sym__inline, STATE(273), 2, sym__symbol_fallback, @@ -19563,7 +19561,7 @@ static const uint16_t ts_small_parse_table[] = { sym__block_close, STATE(28), 1, sym_list_marker_task, - STATE(628), 1, + STATE(624), 1, sym__inline, STATE(273), 2, sym__symbol_fallback, @@ -19600,7 +19598,7 @@ static const uint16_t ts_small_parse_table[] = { sym__block_close, STATE(28), 1, sym_list_marker_task, - STATE(628), 1, + STATE(624), 1, sym__inline, STATE(273), 2, sym__symbol_fallback, @@ -19637,7 +19635,7 @@ static const uint16_t ts_small_parse_table[] = { sym__block_close, STATE(28), 1, sym_list_marker_task, - STATE(628), 1, + STATE(624), 1, sym__inline, STATE(273), 2, sym__symbol_fallback, @@ -19674,7 +19672,7 @@ static const uint16_t ts_small_parse_table[] = { sym__block_close, STATE(28), 1, sym_list_marker_task, - STATE(628), 1, + STATE(624), 1, sym__inline, STATE(273), 2, sym__symbol_fallback, @@ -19711,7 +19709,7 @@ static const uint16_t ts_small_parse_table[] = { sym__block_close, STATE(28), 1, sym_list_marker_task, - STATE(628), 1, + STATE(624), 1, sym__inline, STATE(273), 2, sym__symbol_fallback, @@ -19748,7 +19746,7 @@ static const uint16_t ts_small_parse_table[] = { sym__block_close, STATE(28), 1, sym_list_marker_task, - STATE(628), 1, + STATE(624), 1, sym__inline, STATE(273), 2, sym__symbol_fallback, @@ -19785,7 +19783,7 @@ static const uint16_t ts_small_parse_table[] = { sym__block_close, STATE(28), 1, sym_list_marker_task, - STATE(628), 1, + STATE(624), 1, sym__inline, STATE(273), 2, sym__symbol_fallback, @@ -19822,7 +19820,7 @@ static const uint16_t ts_small_parse_table[] = { sym__block_close, STATE(28), 1, sym_list_marker_task, - STATE(628), 1, + STATE(624), 1, sym__inline, STATE(273), 2, sym__symbol_fallback, @@ -19859,7 +19857,7 @@ static const uint16_t ts_small_parse_table[] = { sym__block_close, STATE(28), 1, sym_list_marker_task, - STATE(628), 1, + STATE(624), 1, sym__inline, STATE(273), 2, sym__symbol_fallback, @@ -19894,7 +19892,7 @@ static const uint16_t ts_small_parse_table[] = { sym_list_marker_plus, STATE(28), 1, sym_list_marker_task, - STATE(628), 1, + STATE(624), 1, sym__inline, STATE(273), 2, sym__symbol_fallback, @@ -19929,12 +19927,12 @@ static const uint16_t ts_small_parse_table[] = { sym_list_marker_plus, STATE(28), 1, sym_list_marker_task, - STATE(628), 1, + STATE(624), 1, sym__inline, STATE(273), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - STATE(335), 3, + STATE(343), 3, sym_table_header, sym_table_separator, sym_table_row, @@ -19964,7 +19962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_list_marker_plus, STATE(28), 1, sym_list_marker_task, - STATE(628), 1, + STATE(624), 1, sym__inline, STATE(273), 2, sym__symbol_fallback, @@ -19999,12 +19997,12 @@ static const uint16_t ts_small_parse_table[] = { sym_list_marker_plus, STATE(28), 1, sym_list_marker_task, - STATE(628), 1, + STATE(624), 1, sym__inline, STATE(273), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - STATE(308), 3, + STATE(309), 3, sym_table_header, sym_table_separator, sym_table_row, @@ -20034,12 +20032,12 @@ static const uint16_t ts_small_parse_table[] = { sym_list_marker_plus, STATE(28), 1, sym_list_marker_task, - STATE(628), 1, + STATE(624), 1, sym__inline, STATE(273), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - STATE(325), 3, + STATE(329), 3, sym_table_header, sym_table_separator, sym_table_row, @@ -20128,11 +20126,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, ACTIONS(919), 1, sym__table_caption_begin, - STATE(357), 1, + STATE(415), 1, sym__block_quote_prefix, STATE(421), 1, aux_sym__block_quote_prefix_repeat1, - STATE(641), 1, + STATE(638), 1, sym_table_caption, ACTIONS(497), 2, sym__list_item_continuation, @@ -20192,11 +20190,11 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_prefix, STATE(284), 1, aux_sym__block_quote_prefix_repeat1, - STATE(656), 1, + STATE(654), 1, sym__inline, - STATE(754), 1, + STATE(815), 1, sym__paragraph_content, - STATE(837), 1, + STATE(824), 1, sym__paragraph_inline_content, STATE(273), 2, sym__symbol_fallback, @@ -20223,13 +20221,13 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, ACTIONS(925), 1, sym__table_caption_begin, - STATE(369), 1, + STATE(408), 1, sym__block_quote_prefix, STATE(421), 1, aux_sym__block_quote_prefix_repeat1, - STATE(678), 1, + STATE(846), 1, sym_table_caption, - STATE(241), 5, + STATE(240), 5, sym__table_row, sym_table_header, sym_table_separator, @@ -20250,13 +20248,13 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, ACTIONS(929), 1, sym__table_caption_begin, - STATE(407), 1, + STATE(362), 1, sym__block_quote_prefix, STATE(421), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1140), 1, + STATE(1038), 1, sym_table_caption, - STATE(240), 5, + STATE(239), 5, sym__table_row, sym_table_header, sym_table_separator, @@ -20289,7 +20287,7 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, ACTIONS(937), 1, sym__table_row_begin, - STATE(357), 1, + STATE(415), 1, sym__block_quote_prefix, STATE(421), 1, aux_sym__block_quote_prefix_repeat1, @@ -20311,13 +20309,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_CARET, ACTIONS(946), 1, sym__table_caption_end, - STATE(238), 1, + STATE(241), 1, aux_sym_table_caption_repeat1, - STATE(283), 1, + STATE(282), 1, sym__inline_line, - STATE(941), 1, + STATE(1046), 1, sym__inline, - STATE(277), 2, + STATE(275), 2, sym__symbol_fallback, aux_sym__inline_repeat1, ACTIONS(940), 6, @@ -20328,42 +20326,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PERCENT, [7827] = 8, - ACTIONS(951), 1, - anon_sym_NULL, - ACTIONS(953), 1, - anon_sym_LBRACK_CARET, - ACTIONS(956), 1, - sym__table_caption_end, - STATE(238), 1, - aux_sym_table_caption_repeat1, - STATE(283), 1, - sym__inline_line, - STATE(941), 1, - sym__inline, - STATE(277), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(948), 6, - anon_sym_LBRACK, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE, - anon_sym_PERCENT, - [7858] = 8, ACTIONS(944), 1, anon_sym_LBRACK_CARET, - ACTIONS(958), 1, + ACTIONS(948), 1, anon_sym_NULL, - ACTIONS(960), 1, + ACTIONS(950), 1, sym__table_caption_end, - STATE(238), 1, + STATE(241), 1, aux_sym_table_caption_repeat1, - STATE(283), 1, + STATE(282), 1, sym__inline_line, - STATE(941), 1, + STATE(1046), 1, sym__inline, - STATE(277), 2, + STATE(275), 2, sym__symbol_fallback, aux_sym__inline_repeat1, ACTIONS(940), 6, @@ -20373,16 +20348,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - [7889] = 8, + [7858] = 8, ACTIONS(515), 1, sym__block_quote_continuation, - ACTIONS(962), 1, + ACTIONS(952), 1, sym__table_header_begin, - ACTIONS(965), 1, + ACTIONS(955), 1, sym__table_separator_begin, - ACTIONS(968), 1, + ACTIONS(958), 1, sym__table_row_begin, - STATE(407), 1, + STATE(362), 1, sym__block_quote_prefix, STATE(421), 1, aux_sym__block_quote_prefix_repeat1, @@ -20390,22 +20365,22 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, sym__indented_content_spacer, sym__table_caption_begin, - STATE(240), 5, + STATE(239), 5, sym__table_row, sym_table_header, sym_table_separator, sym_table_row, aux_sym_table_repeat1, - [7920] = 8, + [7889] = 8, ACTIONS(515), 1, sym__block_quote_continuation, - ACTIONS(971), 1, + ACTIONS(961), 1, sym__table_header_begin, - ACTIONS(974), 1, + ACTIONS(964), 1, sym__table_separator_begin, - ACTIONS(977), 1, + ACTIONS(967), 1, sym__table_row_begin, - STATE(369), 1, + STATE(408), 1, sym__block_quote_prefix, STATE(421), 1, aux_sym__block_quote_prefix_repeat1, @@ -20413,12 +20388,35 @@ static const uint16_t ts_small_parse_table[] = { sym__block_close, sym__newline, sym__table_caption_begin, - STATE(241), 5, + STATE(240), 5, sym__table_row, sym_table_header, sym_table_separator, sym_table_row, aux_sym_table_repeat1, + [7920] = 8, + ACTIONS(973), 1, + anon_sym_NULL, + ACTIONS(975), 1, + anon_sym_LBRACK_CARET, + ACTIONS(978), 1, + sym__table_caption_end, + STATE(241), 1, + aux_sym_table_caption_repeat1, + STATE(282), 1, + sym__inline_line, + STATE(1046), 1, + sym__inline, + STATE(275), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(970), 6, + anon_sym_LBRACK, + anon_sym_DOT, + aux_sym_identifier_token1, + aux_sym__inline_token1, + anon_sym_LBRACE, + anon_sym_PERCENT, [7951] = 8, ACTIONS(944), 1, anon_sym_LBRACK_CARET, @@ -20426,13 +20424,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, ACTIONS(982), 1, sym__table_caption_end, - STATE(238), 1, + STATE(241), 1, aux_sym_table_caption_repeat1, - STATE(283), 1, + STATE(282), 1, sym__inline_line, - STATE(941), 1, + STATE(1046), 1, sym__inline, - STATE(277), 2, + STATE(275), 2, sym__symbol_fallback, aux_sym__inline_repeat1, ACTIONS(940), 6, @@ -20449,13 +20447,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, ACTIONS(986), 1, sym__table_caption_end, - STATE(238), 1, + STATE(241), 1, aux_sym_table_caption_repeat1, - STATE(283), 1, + STATE(282), 1, sym__inline_line, - STATE(941), 1, + STATE(1046), 1, sym__inline, - STATE(277), 2, + STATE(275), 2, sym__symbol_fallback, aux_sym__inline_repeat1, ACTIONS(940), 6, @@ -20472,13 +20470,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, ACTIONS(990), 1, sym__table_caption_end, - STATE(238), 1, + STATE(241), 1, aux_sym_table_caption_repeat1, - STATE(283), 1, + STATE(282), 1, sym__inline_line, - STATE(941), 1, + STATE(1046), 1, sym__inline, - STATE(277), 2, + STATE(275), 2, sym__symbol_fallback, aux_sym__inline_repeat1, ACTIONS(940), 6, @@ -20491,14 +20489,14 @@ static const uint16_t ts_small_parse_table[] = { [8044] = 6, ACTIONS(995), 1, anon_sym_LBRACK_CARET, - STATE(947), 1, + STATE(933), 1, sym__inline, STATE(1146), 1, sym_link_label, ACTIONS(998), 2, sym__eof_or_newline, sym__newline_inline, - STATE(274), 2, + STATE(277), 2, sym__symbol_fallback, aux_sym__inline_repeat1, ACTIONS(992), 6, @@ -20508,38 +20506,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - [8070] = 7, - ACTIONS(877), 1, - anon_sym_LBRACK_CARET, - ACTIONS(921), 1, - sym__block_quote_continuation, - STATE(275), 1, - sym__block_quote_prefix, - STATE(284), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(767), 1, - sym__inline, - STATE(273), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(9), 6, - anon_sym_LBRACK, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE, - anon_sym_PERCENT, - [8098] = 6, + [8070] = 6, ACTIONS(995), 1, anon_sym_LBRACK_CARET, - STATE(897), 1, - sym_link_label, - STATE(947), 1, + STATE(933), 1, sym__inline, + STATE(1145), 1, + sym_link_label, ACTIONS(998), 2, sym__eof_or_newline, sym__newline_inline, - STATE(274), 2, + STATE(277), 2, sym__symbol_fallback, aux_sym__inline_repeat1, ACTIONS(992), 6, @@ -20549,37 +20526,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - [8124] = 6, - ACTIONS(995), 1, - anon_sym_LBRACK_CARET, - STATE(947), 1, - sym__inline, - STATE(1147), 1, - sym_link_label, - ACTIONS(998), 2, - sym__eof_or_newline, - sym__newline_inline, - STATE(274), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(992), 6, - anon_sym_LBRACK, + [8096] = 9, + ACTIONS(1000), 1, + anon_sym_RBRACE, + ACTIONS(1002), 1, anon_sym_DOT, + ACTIONS(1004), 1, aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE, + ACTIONS(1008), 1, anon_sym_PERCENT, - [8150] = 6, + ACTIONS(1010), 1, + sym__id, + STATE(251), 1, + aux_sym_block_attribute_repeat1, + STATE(1112), 1, + sym_key, + ACTIONS(1006), 2, + sym__newline, + sym__whitespace1, + STATE(331), 4, + sym_class, + sym_identifier, + sym_key_value, + sym_comment, + [8128] = 6, ACTIONS(995), 1, anon_sym_LBRACK_CARET, - STATE(947), 1, - sym__inline, - STATE(1144), 1, + STATE(931), 1, sym_link_label, + STATE(933), 1, + sym__inline, ACTIONS(998), 2, sym__eof_or_newline, sym__newline_inline, - STATE(274), 2, + STATE(277), 2, sym__symbol_fallback, aux_sym__inline_repeat1, ACTIONS(992), 6, @@ -20589,408 +20569,307 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - [8176] = 6, - ACTIONS(995), 1, + [8154] = 9, + ACTIONS(1012), 1, + anon_sym_RBRACE, + ACTIONS(1014), 1, + anon_sym_DOT, + ACTIONS(1017), 1, + aux_sym_identifier_token1, + ACTIONS(1023), 1, + anon_sym_PERCENT, + ACTIONS(1026), 1, + sym__id, + STATE(249), 1, + aux_sym_block_attribute_repeat1, + STATE(1112), 1, + sym_key, + ACTIONS(1020), 2, + sym__newline, + sym__whitespace1, + STATE(331), 4, + sym_class, + sym_identifier, + sym_key_value, + sym_comment, + [8186] = 7, + ACTIONS(877), 1, anon_sym_LBRACK_CARET, - STATE(947), 1, + ACTIONS(921), 1, + sym__block_quote_continuation, + STATE(279), 1, + sym__block_quote_prefix, + STATE(284), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(696), 1, sym__inline, - STATE(1145), 1, - sym_link_label, - ACTIONS(998), 2, - sym__eof_or_newline, - sym__newline_inline, - STATE(274), 2, + STATE(273), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(992), 6, + ACTIONS(9), 6, anon_sym_LBRACK, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - [8202] = 9, - ACTIONS(1000), 1, - anon_sym_RBRACE, + [8214] = 9, ACTIONS(1002), 1, anon_sym_DOT, ACTIONS(1004), 1, aux_sym_identifier_token1, - ACTIONS(1006), 1, - sym__whitespace1, ACTIONS(1008), 1, anon_sym_PERCENT, ACTIONS(1010), 1, sym__id, - STATE(254), 1, + ACTIONS(1029), 1, + anon_sym_RBRACE, + STATE(249), 1, aux_sym_block_attribute_repeat1, - STATE(1059), 1, + STATE(1112), 1, sym_key, - STATE(415), 4, + ACTIONS(1006), 2, + sym__newline, + sym__whitespace1, + STATE(331), 4, sym_class, sym_identifier, sym_key_value, sym_comment, - [8233] = 9, + [8246] = 9, ACTIONS(1002), 1, anon_sym_DOT, ACTIONS(1004), 1, aux_sym_identifier_token1, - ACTIONS(1006), 1, - sym__whitespace1, ACTIONS(1008), 1, anon_sym_PERCENT, ACTIONS(1010), 1, sym__id, - ACTIONS(1012), 1, + ACTIONS(1031), 1, anon_sym_RBRACE, - STATE(255), 1, + STATE(253), 1, aux_sym_block_attribute_repeat1, - STATE(1059), 1, + STATE(1112), 1, sym_key, - STATE(415), 4, + ACTIONS(1006), 2, + sym__newline, + sym__whitespace1, + STATE(331), 4, sym_class, sym_identifier, sym_key_value, sym_comment, - [8264] = 6, - ACTIONS(944), 1, - anon_sym_LBRACK_CARET, - STATE(571), 1, - sym__inline_line, - STATE(932), 1, - sym__heading_content, - STATE(1021), 1, - sym__inline, - STATE(277), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(940), 6, - anon_sym_LBRACK, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE, - anon_sym_PERCENT, - [8289] = 9, - ACTIONS(1014), 1, - anon_sym_RBRACE, - ACTIONS(1016), 1, + [8278] = 9, + ACTIONS(1002), 1, anon_sym_DOT, - ACTIONS(1019), 1, + ACTIONS(1004), 1, aux_sym_identifier_token1, - ACTIONS(1022), 1, - sym__whitespace1, - ACTIONS(1025), 1, + ACTIONS(1008), 1, anon_sym_PERCENT, - ACTIONS(1028), 1, + ACTIONS(1010), 1, sym__id, - STATE(254), 1, + ACTIONS(1033), 1, + anon_sym_RBRACE, + STATE(249), 1, aux_sym_block_attribute_repeat1, - STATE(1059), 1, + STATE(1112), 1, sym_key, - STATE(415), 4, + ACTIONS(1006), 2, + sym__newline, + sym__whitespace1, + STATE(331), 4, sym_class, sym_identifier, sym_key_value, sym_comment, - [8320] = 9, + [8310] = 9, ACTIONS(1002), 1, anon_sym_DOT, ACTIONS(1004), 1, aux_sym_identifier_token1, - ACTIONS(1006), 1, - sym__whitespace1, ACTIONS(1008), 1, anon_sym_PERCENT, ACTIONS(1010), 1, sym__id, - ACTIONS(1031), 1, + ACTIONS(1035), 1, anon_sym_RBRACE, - STATE(254), 1, + STATE(255), 1, aux_sym_block_attribute_repeat1, - STATE(1059), 1, + STATE(1112), 1, sym_key, - STATE(415), 4, + ACTIONS(1006), 2, + sym__newline, + sym__whitespace1, + STATE(331), 4, sym_class, sym_identifier, sym_key_value, sym_comment, - [8351] = 6, - ACTIONS(944), 1, - anon_sym_LBRACK_CARET, - STATE(571), 1, - sym__inline_line, - STATE(940), 1, - sym__heading_content, - STATE(1021), 1, - sym__inline, - STATE(277), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(940), 6, - anon_sym_LBRACK, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE, - anon_sym_PERCENT, - [8376] = 6, - ACTIONS(944), 1, - anon_sym_LBRACK_CARET, - STATE(244), 1, - aux_sym_table_caption_repeat1, - STATE(283), 1, - sym__inline_line, - STATE(941), 1, - sym__inline, - STATE(277), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(940), 6, - anon_sym_LBRACK, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE, - anon_sym_PERCENT, - [8401] = 9, + [8342] = 9, ACTIONS(1002), 1, anon_sym_DOT, ACTIONS(1004), 1, aux_sym_identifier_token1, - ACTIONS(1006), 1, - sym__whitespace1, ACTIONS(1008), 1, anon_sym_PERCENT, ACTIONS(1010), 1, sym__id, - ACTIONS(1033), 1, + ACTIONS(1037), 1, anon_sym_RBRACE, - STATE(254), 1, + STATE(249), 1, aux_sym_block_attribute_repeat1, - STATE(1059), 1, + STATE(1112), 1, sym_key, - STATE(415), 4, + ACTIONS(1006), 2, + sym__newline, + sym__whitespace1, + STATE(331), 4, sym_class, sym_identifier, sym_key_value, sym_comment, - [8432] = 6, - ACTIONS(944), 1, - anon_sym_LBRACK_CARET, - STATE(243), 1, - aux_sym_table_caption_repeat1, - STATE(283), 1, - sym__inline_line, - STATE(941), 1, - sym__inline, - STATE(277), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(940), 6, - anon_sym_LBRACK, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE, - anon_sym_PERCENT, - [8457] = 6, - ACTIONS(944), 1, - anon_sym_LBRACK_CARET, - STATE(571), 1, - sym__inline_line, - STATE(946), 1, - sym__heading_content, - STATE(1021), 1, - sym__inline, - STATE(277), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(940), 6, - anon_sym_LBRACK, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE, - anon_sym_PERCENT, - [8482] = 9, + [8374] = 9, ACTIONS(1002), 1, anon_sym_DOT, ACTIONS(1004), 1, aux_sym_identifier_token1, - ACTIONS(1006), 1, - sym__whitespace1, ACTIONS(1008), 1, anon_sym_PERCENT, ACTIONS(1010), 1, sym__id, - ACTIONS(1035), 1, + ACTIONS(1039), 1, anon_sym_RBRACE, - STATE(251), 1, + STATE(257), 1, aux_sym_block_attribute_repeat1, - STATE(1059), 1, + STATE(1112), 1, sym_key, - STATE(415), 4, + ACTIONS(1006), 2, + sym__newline, + sym__whitespace1, + STATE(331), 4, sym_class, sym_identifier, sym_key_value, sym_comment, - [8513] = 6, - ACTIONS(944), 1, - anon_sym_LBRACK_CARET, - STATE(239), 1, - aux_sym_table_caption_repeat1, - STATE(283), 1, - sym__inline_line, - STATE(941), 1, - sym__inline, - STATE(277), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(940), 6, - anon_sym_LBRACK, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE, - anon_sym_PERCENT, - [8538] = 6, - ACTIONS(944), 1, - anon_sym_LBRACK_CARET, - STATE(571), 1, - sym__inline_line, - STATE(1021), 1, - sym__inline, - STATE(1128), 1, - sym__heading_content, - STATE(277), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(940), 6, - anon_sym_LBRACK, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE, - anon_sym_PERCENT, - [8563] = 9, + [8406] = 9, ACTIONS(1002), 1, anon_sym_DOT, ACTIONS(1004), 1, aux_sym_identifier_token1, - ACTIONS(1006), 1, - sym__whitespace1, ACTIONS(1008), 1, anon_sym_PERCENT, ACTIONS(1010), 1, sym__id, - ACTIONS(1037), 1, + ACTIONS(1041), 1, anon_sym_RBRACE, - STATE(265), 1, + STATE(249), 1, aux_sym_block_attribute_repeat1, - STATE(1059), 1, + STATE(1112), 1, sym_key, - STATE(415), 4, + ACTIONS(1006), 2, + sym__newline, + sym__whitespace1, + STATE(331), 4, sym_class, sym_identifier, sym_key_value, sym_comment, - [8594] = 9, + [8438] = 9, ACTIONS(1002), 1, anon_sym_DOT, ACTIONS(1004), 1, aux_sym_identifier_token1, - ACTIONS(1006), 1, - sym__whitespace1, ACTIONS(1008), 1, anon_sym_PERCENT, ACTIONS(1010), 1, sym__id, - ACTIONS(1039), 1, + ACTIONS(1043), 1, anon_sym_RBRACE, - STATE(254), 1, + STATE(259), 1, aux_sym_block_attribute_repeat1, - STATE(1059), 1, + STATE(1112), 1, sym_key, - STATE(415), 4, + ACTIONS(1006), 2, + sym__newline, + sym__whitespace1, + STATE(331), 4, sym_class, sym_identifier, sym_key_value, sym_comment, - [8625] = 6, - ACTIONS(944), 1, - anon_sym_LBRACK_CARET, - STATE(242), 1, - aux_sym_table_caption_repeat1, - STATE(283), 1, - sym__inline_line, - STATE(941), 1, - sym__inline, - STATE(277), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(940), 6, - anon_sym_LBRACK, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE, - anon_sym_PERCENT, - [8650] = 9, + [8470] = 9, ACTIONS(1002), 1, anon_sym_DOT, ACTIONS(1004), 1, aux_sym_identifier_token1, - ACTIONS(1006), 1, - sym__whitespace1, ACTIONS(1008), 1, anon_sym_PERCENT, ACTIONS(1010), 1, sym__id, - ACTIONS(1041), 1, + ACTIONS(1045), 1, anon_sym_RBRACE, - STATE(268), 1, + STATE(249), 1, aux_sym_block_attribute_repeat1, - STATE(1059), 1, + STATE(1112), 1, sym_key, - STATE(415), 4, + ACTIONS(1006), 2, + sym__newline, + sym__whitespace1, + STATE(331), 4, sym_class, sym_identifier, sym_key_value, sym_comment, - [8681] = 9, - ACTIONS(1002), 1, + [8502] = 6, + ACTIONS(995), 1, + anon_sym_LBRACK_CARET, + STATE(933), 1, + sym__inline, + STATE(1143), 1, + sym_link_label, + ACTIONS(998), 2, + sym__eof_or_newline, + sym__newline_inline, + STATE(277), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(992), 6, + anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(1004), 1, aux_sym_identifier_token1, - ACTIONS(1006), 1, - sym__whitespace1, - ACTIONS(1008), 1, + aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(1010), 1, - sym__id, - ACTIONS(1043), 1, - anon_sym_RBRACE, - STATE(254), 1, - aux_sym_block_attribute_repeat1, - STATE(1059), 1, - sym_key, - STATE(415), 4, - sym_class, - sym_identifier, - sym_key_value, - sym_comment, - [8712] = 6, + [8528] = 6, + ACTIONS(995), 1, + anon_sym_LBRACK_CARET, + STATE(933), 1, + sym__inline, + STATE(1144), 1, + sym_link_label, + ACTIONS(998), 2, + sym__eof_or_newline, + sym__newline_inline, + STATE(277), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(992), 6, + anon_sym_LBRACK, + anon_sym_DOT, + aux_sym_identifier_token1, + aux_sym__inline_token1, + anon_sym_LBRACE, + anon_sym_PERCENT, + [8554] = 6, ACTIONS(944), 1, anon_sym_LBRACK_CARET, - STATE(237), 1, + STATE(243), 1, aux_sym_table_caption_repeat1, - STATE(283), 1, + STATE(282), 1, sym__inline_line, - STATE(941), 1, + STATE(1046), 1, sym__inline, - STATE(277), 2, + STATE(275), 2, sym__symbol_fallback, aux_sym__inline_repeat1, ACTIONS(940), 6, @@ -21000,52 +20879,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - [8737] = 9, - ACTIONS(1002), 1, + [8579] = 6, + ACTIONS(944), 1, + anon_sym_LBRACK_CARET, + STATE(568), 1, + sym__inline_line, + STATE(935), 1, + sym__inline, + STATE(1041), 1, + sym__heading_content, + STATE(275), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(940), 6, + anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(1004), 1, aux_sym_identifier_token1, - ACTIONS(1006), 1, - sym__whitespace1, - ACTIONS(1008), 1, + aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(1010), 1, - sym__id, - ACTIONS(1045), 1, - anon_sym_RBRACE, - STATE(258), 1, - aux_sym_block_attribute_repeat1, - STATE(1059), 1, - sym_key, - STATE(415), 4, - sym_class, - sym_identifier, - sym_key_value, - sym_comment, - [8768] = 4, - ACTIONS(1050), 1, + [8604] = 6, + ACTIONS(944), 1, anon_sym_LBRACK_CARET, - ACTIONS(1053), 2, - sym__eof_or_newline, - sym__newline_inline, - STATE(271), 2, + STATE(568), 1, + sym__inline_line, + STATE(935), 1, + sym__inline, + STATE(968), 1, + sym__heading_content, + STATE(275), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1047), 6, + ACTIONS(940), 6, anon_sym_LBRACK, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - [8788] = 5, + [8629] = 6, ACTIONS(944), 1, anon_sym_LBRACK_CARET, - STATE(790), 1, + STATE(242), 1, + aux_sym_table_caption_repeat1, + STATE(282), 1, sym__inline_line, - STATE(1021), 1, + STATE(1046), 1, sym__inline, - STATE(277), 2, + STATE(275), 2, sym__symbol_fallback, aux_sym__inline_repeat1, ACTIONS(940), 6, @@ -21055,192 +20936,314 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - [8810] = 4, - ACTIONS(877), 1, + [8654] = 6, + ACTIONS(944), 1, anon_sym_LBRACK_CARET, - ACTIONS(1057), 2, - sym__eof_or_newline, - sym__newline_inline, - STATE(271), 2, + STATE(238), 1, + aux_sym_table_caption_repeat1, + STATE(282), 1, + sym__inline_line, + STATE(1046), 1, + sym__inline, + STATE(275), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1055), 6, + ACTIONS(940), 6, anon_sym_LBRACK, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - [8830] = 4, - ACTIONS(1061), 1, - anon_sym_RBRACK, - ACTIONS(1063), 1, + [8679] = 6, + ACTIONS(944), 1, anon_sym_LBRACK_CARET, - STATE(279), 2, + STATE(568), 1, + sym__inline_line, + STATE(935), 1, + sym__inline, + STATE(1124), 1, + sym__heading_content, + STATE(275), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1059), 6, + ACTIONS(940), 6, anon_sym_LBRACK, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - [8849] = 4, - ACTIONS(877), 1, + [8704] = 6, + ACTIONS(944), 1, anon_sym_LBRACK_CARET, - STATE(746), 1, + STATE(568), 1, + sym__inline_line, + STATE(896), 1, + sym__heading_content, + STATE(935), 1, sym__inline, - STATE(273), 2, + STATE(275), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(9), 6, + ACTIONS(940), 6, anon_sym_LBRACK, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - [8868] = 4, - ACTIONS(877), 1, + [8729] = 6, + ACTIONS(944), 1, anon_sym_LBRACK_CARET, - STATE(628), 1, + STATE(237), 1, + aux_sym_table_caption_repeat1, + STATE(282), 1, + sym__inline_line, + STATE(1046), 1, sym__inline, - STATE(273), 2, + STATE(275), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(9), 6, + ACTIONS(940), 6, anon_sym_LBRACK, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - [8887] = 4, + [8754] = 6, ACTIONS(944), 1, anon_sym_LBRACK_CARET, - ACTIONS(1057), 1, - sym__eof_or_newline, - STATE(278), 2, + STATE(244), 1, + aux_sym_table_caption_repeat1, + STATE(282), 1, + sym__inline_line, + STATE(1046), 1, + sym__inline, + STATE(275), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1065), 6, + ACTIONS(940), 6, anon_sym_LBRACK, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - [8906] = 4, - ACTIONS(1053), 1, - sym__eof_or_newline, - ACTIONS(1070), 1, + [8779] = 5, + ACTIONS(944), 1, anon_sym_LBRACK_CARET, - STATE(278), 2, + STATE(704), 1, + sym__inline_line, + STATE(935), 1, + sym__inline, + STATE(275), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1067), 6, + ACTIONS(940), 6, anon_sym_LBRACK, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - [8925] = 4, - ACTIONS(1076), 1, - anon_sym_RBRACK, - ACTIONS(1078), 1, + [8801] = 4, + ACTIONS(1050), 1, anon_sym_LBRACK_CARET, - STATE(279), 2, + ACTIONS(1053), 2, + sym__eof_or_newline, + sym__newline_inline, + STATE(272), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1073), 6, + ACTIONS(1047), 6, anon_sym_LBRACK, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - [8944] = 2, - ACTIONS(1083), 1, - sym__table_caption_end, - ACTIONS(1081), 8, - anon_sym_LBRACK, - anon_sym_NULL, + [8821] = 4, + ACTIONS(877), 1, anon_sym_LBRACK_CARET, + ACTIONS(1057), 2, + sym__eof_or_newline, + sym__newline_inline, + STATE(272), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(1055), 6, + anon_sym_LBRACK, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - [8958] = 2, - ACTIONS(1087), 2, + [8841] = 4, + ACTIONS(1053), 1, sym__eof_or_newline, - sym__newline_inline, - ACTIONS(1085), 7, - anon_sym_LBRACK, + ACTIONS(1062), 1, anon_sym_LBRACK_CARET, + STATE(274), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(1059), 6, + anon_sym_LBRACK, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - [8972] = 3, - ACTIONS(1089), 1, - sym__block_quote_continuation, - STATE(282), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(866), 7, - anon_sym_LBRACK, + [8860] = 4, + ACTIONS(944), 1, anon_sym_LBRACK_CARET, + ACTIONS(1057), 1, + sym__eof_or_newline, + STATE(274), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(1065), 6, + anon_sym_LBRACK, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - [8988] = 2, - ACTIONS(1094), 1, - sym__table_caption_end, - ACTIONS(1092), 8, - anon_sym_LBRACK, - anon_sym_NULL, + [8879] = 4, + ACTIONS(877), 1, anon_sym_LBRACK_CARET, + STATE(624), 1, + sym__inline, + STATE(273), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(9), 6, + anon_sym_LBRACK, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - [9002] = 3, - ACTIONS(921), 1, - sym__block_quote_continuation, - STATE(282), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(905), 7, - anon_sym_LBRACK, + [8898] = 4, + ACTIONS(1069), 1, + anon_sym_RBRACK, + ACTIONS(1071), 1, anon_sym_LBRACK_CARET, + STATE(278), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(1067), 6, + anon_sym_LBRACK, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - [9018] = 8, - ACTIONS(27), 1, - sym__list_marker_task_begin, - ACTIONS(1096), 1, - sym__block_close, - ACTIONS(1098), 1, - sym__block_quote_continuation, - STATE(43), 1, - sym_list_marker_task, - STATE(304), 1, - aux_sym__list_task_repeat1, - STATE(550), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(590), 1, - sym__list_item_task, - STATE(842), 1, - sym__block_quote_prefix, - [9043] = 1, + [8917] = 4, + ACTIONS(1076), 1, + anon_sym_RBRACK, + ACTIONS(1078), 1, + anon_sym_LBRACK_CARET, + STATE(278), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(1073), 6, + anon_sym_LBRACK, + anon_sym_DOT, + aux_sym_identifier_token1, + aux_sym__inline_token1, + anon_sym_LBRACE, + anon_sym_PERCENT, + [8936] = 4, + ACTIONS(877), 1, + anon_sym_LBRACK_CARET, + STATE(724), 1, + sym__inline, + STATE(273), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(9), 6, + anon_sym_LBRACK, + anon_sym_DOT, + aux_sym_identifier_token1, + aux_sym__inline_token1, + anon_sym_LBRACE, + anon_sym_PERCENT, + [8955] = 2, + ACTIONS(1083), 1, + sym__table_caption_end, + ACTIONS(1081), 8, + anon_sym_LBRACK, + anon_sym_NULL, + anon_sym_LBRACK_CARET, + anon_sym_DOT, + aux_sym_identifier_token1, + aux_sym__inline_token1, + anon_sym_LBRACE, + anon_sym_PERCENT, + [8969] = 2, + ACTIONS(1087), 2, + sym__eof_or_newline, + sym__newline_inline, + ACTIONS(1085), 7, + anon_sym_LBRACK, + anon_sym_LBRACK_CARET, + anon_sym_DOT, + aux_sym_identifier_token1, + aux_sym__inline_token1, + anon_sym_LBRACE, + anon_sym_PERCENT, + [8983] = 2, + ACTIONS(1091), 1, + sym__table_caption_end, + ACTIONS(1089), 8, + anon_sym_LBRACK, + anon_sym_NULL, + anon_sym_LBRACK_CARET, + anon_sym_DOT, + aux_sym_identifier_token1, + aux_sym__inline_token1, + anon_sym_LBRACE, + anon_sym_PERCENT, + [8997] = 3, + ACTIONS(1093), 1, + sym__block_quote_continuation, + STATE(283), 1, + aux_sym__block_quote_prefix_repeat1, + ACTIONS(866), 7, + anon_sym_LBRACK, + anon_sym_LBRACK_CARET, + anon_sym_DOT, + aux_sym_identifier_token1, + aux_sym__inline_token1, + anon_sym_LBRACE, + anon_sym_PERCENT, + [9013] = 3, + ACTIONS(921), 1, + sym__block_quote_continuation, + STATE(283), 1, + aux_sym__block_quote_prefix_repeat1, + ACTIONS(905), 7, + anon_sym_LBRACK, + anon_sym_LBRACK_CARET, + anon_sym_DOT, + aux_sym_identifier_token1, + aux_sym__inline_token1, + anon_sym_LBRACE, + anon_sym_PERCENT, + [9029] = 2, + ACTIONS(462), 1, + sym__block_quote_continuation, + ACTIONS(460), 7, + anon_sym_LBRACK, + anon_sym_LBRACK_CARET, + anon_sym_DOT, + aux_sym_identifier_token1, + aux_sym__inline_token1, + anon_sym_LBRACE, + anon_sym_PERCENT, + [9042] = 1, ACTIONS(560), 8, sym__newline, sym__list_item_continuation, @@ -21250,121 +21253,153 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, sym__table_caption_begin, - [9054] = 8, - ACTIONS(27), 1, - sym__list_marker_task_begin, + [9053] = 7, + ACTIONS(1096), 1, + aux_sym__line_token1, ACTIONS(1098), 1, - sym__block_quote_continuation, + sym__block_close, ACTIONS(1100), 1, + sym__block_quote_continuation, + STATE(551), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(707), 1, + sym__block_quote_prefix, + STATE(991), 1, + sym_code, + STATE(344), 2, + sym__line, + aux_sym_code_repeat1, + [9076] = 8, + ACTIONS(27), 1, + sym__list_marker_task_begin, + ACTIONS(1102), 1, sym__block_close, + ACTIONS(1104), 1, + sym__block_quote_continuation, STATE(43), 1, sym_list_marker_task, - STATE(304), 1, + STATE(308), 1, aux_sym__list_task_repeat1, - STATE(550), 1, + STATE(547), 1, aux_sym__block_quote_prefix_repeat1, - STATE(590), 1, + STATE(586), 1, sym__list_item_task, - STATE(842), 1, + STATE(832), 1, sym__block_quote_prefix, - [9079] = 7, - ACTIONS(1102), 1, + [9101] = 7, + ACTIONS(1096), 1, aux_sym__line_token1, - ACTIONS(1104), 1, - sym__block_close, - ACTIONS(1106), 1, + ACTIONS(1100), 1, sym__block_quote_continuation, - STATE(554), 1, + ACTIONS(1106), 1, + sym__block_close, + STATE(551), 1, aux_sym__block_quote_prefix_repeat1, - STATE(793), 1, + STATE(707), 1, sym__block_quote_prefix, - STATE(1084), 1, + STATE(1106), 1, sym_code, - STATE(345), 2, + STATE(344), 2, sym__line, aux_sym_code_repeat1, - [9102] = 7, - ACTIONS(1102), 1, + [9124] = 7, + ACTIONS(1096), 1, aux_sym__line_token1, - ACTIONS(1106), 1, + ACTIONS(1100), 1, sym__block_quote_continuation, ACTIONS(1108), 1, sym__block_close, - STATE(554), 1, + STATE(551), 1, aux_sym__block_quote_prefix_repeat1, - STATE(793), 1, + STATE(707), 1, sym__block_quote_prefix, - STATE(1048), 1, + STATE(1000), 1, sym_code, - STATE(345), 2, + STATE(344), 2, sym__line, aux_sym_code_repeat1, - [9125] = 7, - ACTIONS(1102), 1, + [9147] = 7, + ACTIONS(1096), 1, aux_sym__line_token1, - ACTIONS(1106), 1, + ACTIONS(1100), 1, sym__block_quote_continuation, ACTIONS(1110), 1, sym__block_close, - STATE(554), 1, + STATE(551), 1, aux_sym__block_quote_prefix_repeat1, - STATE(793), 1, + STATE(707), 1, sym__block_quote_prefix, - STATE(1078), 1, + STATE(898), 1, sym_code, - STATE(345), 2, + STATE(344), 2, sym__line, aux_sym_code_repeat1, - [9148] = 7, - ACTIONS(1102), 1, + [9170] = 7, + ACTIONS(1096), 1, aux_sym__line_token1, - ACTIONS(1106), 1, + ACTIONS(1100), 1, sym__block_quote_continuation, ACTIONS(1112), 1, sym__block_close, - STATE(554), 1, + STATE(551), 1, aux_sym__block_quote_prefix_repeat1, - STATE(793), 1, + STATE(707), 1, sym__block_quote_prefix, - STATE(1079), 1, + STATE(902), 1, sym_code, - STATE(345), 2, + STATE(344), 2, sym__line, aux_sym_code_repeat1, - [9171] = 8, + [9193] = 7, + ACTIONS(1096), 1, + aux_sym__line_token1, + ACTIONS(1100), 1, + sym__block_quote_continuation, + ACTIONS(1114), 1, + sym__block_close, + STATE(551), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(707), 1, + sym__block_quote_prefix, + STATE(1010), 1, + sym_code, + STATE(344), 2, + sym__line, + aux_sym_code_repeat1, + [9216] = 8, ACTIONS(27), 1, sym__list_marker_task_begin, - ACTIONS(1098), 1, + ACTIONS(1104), 1, sym__block_quote_continuation, - ACTIONS(1114), 1, + ACTIONS(1116), 1, sym__block_close, STATE(43), 1, sym_list_marker_task, - STATE(304), 1, + STATE(308), 1, aux_sym__list_task_repeat1, - STATE(550), 1, + STATE(547), 1, aux_sym__block_quote_prefix_repeat1, - STATE(590), 1, + STATE(586), 1, sym__list_item_task, - STATE(842), 1, + STATE(832), 1, sym__block_quote_prefix, - [9196] = 7, - ACTIONS(1102), 1, + [9241] = 7, + ACTIONS(1096), 1, aux_sym__line_token1, - ACTIONS(1106), 1, + ACTIONS(1100), 1, sym__block_quote_continuation, - ACTIONS(1116), 1, + ACTIONS(1118), 1, sym__block_close, - STATE(554), 1, + STATE(551), 1, aux_sym__block_quote_prefix_repeat1, - STATE(793), 1, + STATE(707), 1, sym__block_quote_prefix, - STATE(991), 1, + STATE(1003), 1, sym_code, - STATE(345), 2, + STATE(344), 2, sym__line, aux_sym_code_repeat1, - [9219] = 2, + [9264] = 2, ACTIONS(1087), 1, sym__eof_or_newline, ACTIONS(1085), 7, @@ -21375,213 +21410,203 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - [9232] = 7, - ACTIONS(1102), 1, + [9277] = 7, + ACTIONS(1096), 1, aux_sym__line_token1, - ACTIONS(1106), 1, + ACTIONS(1100), 1, sym__block_quote_continuation, - ACTIONS(1118), 1, + ACTIONS(1120), 1, sym__block_close, - STATE(554), 1, + STATE(551), 1, aux_sym__block_quote_prefix_repeat1, - STATE(793), 1, + STATE(707), 1, sym__block_quote_prefix, - STATE(1014), 1, + STATE(1016), 1, sym_code, - STATE(345), 2, + STATE(344), 2, sym__line, aux_sym_code_repeat1, - [9255] = 7, - ACTIONS(1102), 1, + [9300] = 7, + ACTIONS(1096), 1, aux_sym__line_token1, - ACTIONS(1106), 1, + ACTIONS(1100), 1, sym__block_quote_continuation, - ACTIONS(1120), 1, + ACTIONS(1122), 1, sym__block_close, - STATE(554), 1, + STATE(551), 1, aux_sym__block_quote_prefix_repeat1, - STATE(793), 1, + STATE(707), 1, sym__block_quote_prefix, - STATE(1017), 1, + STATE(1018), 1, sym_code, - STATE(345), 2, + STATE(344), 2, sym__line, aux_sym_code_repeat1, - [9278] = 8, + [9323] = 8, ACTIONS(27), 1, sym__list_marker_task_begin, - ACTIONS(1098), 1, + ACTIONS(1104), 1, sym__block_quote_continuation, - ACTIONS(1122), 1, + ACTIONS(1124), 1, sym__block_close, STATE(43), 1, sym_list_marker_task, - STATE(304), 1, + STATE(308), 1, aux_sym__list_task_repeat1, - STATE(550), 1, + STATE(547), 1, aux_sym__block_quote_prefix_repeat1, - STATE(590), 1, + STATE(586), 1, sym__list_item_task, - STATE(842), 1, - sym__block_quote_prefix, - [9303] = 7, - ACTIONS(1102), 1, - aux_sym__line_token1, - ACTIONS(1106), 1, - sym__block_quote_continuation, - ACTIONS(1124), 1, - sym__block_close, - STATE(554), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(793), 1, + STATE(832), 1, sym__block_quote_prefix, - STATE(904), 1, - sym_code, - STATE(345), 2, - sym__line, - aux_sym_code_repeat1, - [9326] = 7, - ACTIONS(1102), 1, + [9348] = 7, + ACTIONS(1096), 1, aux_sym__line_token1, - ACTIONS(1106), 1, + ACTIONS(1100), 1, sym__block_quote_continuation, ACTIONS(1126), 1, sym__block_close, - STATE(554), 1, + STATE(551), 1, aux_sym__block_quote_prefix_repeat1, - STATE(793), 1, + STATE(707), 1, sym__block_quote_prefix, - STATE(914), 1, + STATE(903), 1, sym_code, - STATE(345), 2, + STATE(344), 2, sym__line, aux_sym_code_repeat1, - [9349] = 7, - ACTIONS(1102), 1, + [9371] = 7, + ACTIONS(1096), 1, aux_sym__line_token1, - ACTIONS(1106), 1, + ACTIONS(1100), 1, sym__block_quote_continuation, ACTIONS(1128), 1, sym__block_close, - STATE(554), 1, + STATE(551), 1, aux_sym__block_quote_prefix_repeat1, - STATE(793), 1, + STATE(707), 1, sym__block_quote_prefix, - STATE(915), 1, + STATE(913), 1, sym_code, - STATE(345), 2, + STATE(344), 2, sym__line, aux_sym_code_repeat1, - [9372] = 7, - ACTIONS(1102), 1, + [9394] = 7, + ACTIONS(1096), 1, aux_sym__line_token1, - ACTIONS(1106), 1, + ACTIONS(1100), 1, sym__block_quote_continuation, ACTIONS(1130), 1, sym__block_close, - STATE(554), 1, + STATE(551), 1, aux_sym__block_quote_prefix_repeat1, - STATE(793), 1, + STATE(707), 1, sym__block_quote_prefix, - STATE(988), 1, + STATE(914), 1, sym_code, - STATE(345), 2, + STATE(344), 2, sym__line, aux_sym_code_repeat1, - [9395] = 8, + [9417] = 8, ACTIONS(27), 1, sym__list_marker_task_begin, - ACTIONS(1098), 1, + ACTIONS(1104), 1, sym__block_quote_continuation, ACTIONS(1132), 1, sym__block_close, STATE(43), 1, sym_list_marker_task, - STATE(304), 1, + STATE(308), 1, aux_sym__list_task_repeat1, - STATE(550), 1, + STATE(547), 1, aux_sym__block_quote_prefix_repeat1, - STATE(590), 1, + STATE(586), 1, sym__list_item_task, - STATE(842), 1, + STATE(832), 1, sym__block_quote_prefix, - [9420] = 7, - ACTIONS(1102), 1, - aux_sym__line_token1, - ACTIONS(1106), 1, + [9442] = 8, + ACTIONS(27), 1, + sym__list_marker_task_begin, + ACTIONS(1104), 1, sym__block_quote_continuation, ACTIONS(1134), 1, sym__block_close, - STATE(554), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(793), 1, - sym__block_quote_prefix, - STATE(963), 1, - sym_code, - STATE(345), 2, - sym__line, - aux_sym_code_repeat1, - [9443] = 8, - ACTIONS(1136), 1, - sym__block_close, - ACTIONS(1138), 1, - sym__list_marker_task_begin, - ACTIONS(1141), 1, - sym__block_quote_continuation, STATE(43), 1, sym_list_marker_task, - STATE(304), 1, + STATE(308), 1, aux_sym__list_task_repeat1, - STATE(550), 1, + STATE(547), 1, aux_sym__block_quote_prefix_repeat1, - STATE(590), 1, + STATE(586), 1, sym__list_item_task, - STATE(842), 1, + STATE(832), 1, sym__block_quote_prefix, - [9468] = 7, - ACTIONS(1102), 1, + [9467] = 7, + ACTIONS(1096), 1, aux_sym__line_token1, - ACTIONS(1106), 1, + ACTIONS(1100), 1, sym__block_quote_continuation, - ACTIONS(1144), 1, + ACTIONS(1136), 1, sym__block_close, - STATE(554), 1, + STATE(551), 1, aux_sym__block_quote_prefix_repeat1, - STATE(793), 1, + STATE(707), 1, sym__block_quote_prefix, - STATE(973), 1, + STATE(962), 1, sym_code, - STATE(345), 2, + STATE(344), 2, sym__line, aux_sym_code_repeat1, - [9491] = 7, - ACTIONS(1102), 1, + [9490] = 7, + ACTIONS(1096), 1, aux_sym__line_token1, - ACTIONS(1106), 1, + ACTIONS(1100), 1, sym__block_quote_continuation, - ACTIONS(1146), 1, + ACTIONS(1138), 1, sym__block_close, - STATE(554), 1, + STATE(551), 1, aux_sym__block_quote_prefix_repeat1, - STATE(793), 1, + STATE(707), 1, sym__block_quote_prefix, - STATE(974), 1, + STATE(972), 1, sym_code, - STATE(345), 2, + STATE(344), 2, sym__line, aux_sym_code_repeat1, - [9514] = 2, - ACTIONS(462), 1, + [9513] = 7, + ACTIONS(1096), 1, + aux_sym__line_token1, + ACTIONS(1100), 1, sym__block_quote_continuation, - ACTIONS(460), 7, - anon_sym_LBRACK, - anon_sym_LBRACK_CARET, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE, - anon_sym_PERCENT, - [9527] = 1, + ACTIONS(1140), 1, + sym__block_close, + STATE(551), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(707), 1, + sym__block_quote_prefix, + STATE(973), 1, + sym_code, + STATE(344), 2, + sym__line, + aux_sym_code_repeat1, + [9536] = 8, + ACTIONS(1142), 1, + sym__block_close, + ACTIONS(1144), 1, + sym__list_marker_task_begin, + ACTIONS(1147), 1, + sym__block_quote_continuation, + STATE(43), 1, + sym_list_marker_task, + STATE(308), 1, + aux_sym__list_task_repeat1, + STATE(547), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(586), 1, + sym__list_item_task, + STATE(832), 1, + sym__block_quote_prefix, + [9561] = 1, ACTIONS(584), 8, sym__newline, sym__list_item_continuation, @@ -21591,7 +21616,7 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, sym__table_caption_begin, - [9538] = 1, + [9572] = 1, ACTIONS(1085), 8, anon_sym_LBRACK, anon_sym_RBRACK, @@ -21601,7 +21626,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - [9549] = 1, + [9583] = 1, ACTIONS(600), 8, sym__newline, sym__list_item_continuation, @@ -21611,7 +21636,7 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, sym__table_caption_begin, - [9560] = 1, + [9594] = 1, ACTIONS(616), 8, sym__newline, sym__list_item_continuation, @@ -21621,7 +21646,7 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, sym__table_caption_begin, - [9571] = 1, + [9605] = 1, ACTIONS(620), 8, sym__newline, sym__list_item_continuation, @@ -21631,7 +21656,7 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, sym__table_caption_begin, - [9582] = 1, + [9616] = 1, ACTIONS(552), 8, sym__newline, sym__list_item_continuation, @@ -21641,7 +21666,7 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, sym__table_caption_begin, - [9593] = 1, + [9627] = 1, ACTIONS(556), 8, sym__newline, sym__list_item_continuation, @@ -21651,99 +21676,71 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, sym__table_caption_begin, - [9604] = 7, - ACTIONS(1102), 1, - aux_sym__line_token1, - ACTIONS(1106), 1, - sym__block_quote_continuation, - ACTIONS(1148), 1, - sym__block_close, - STATE(554), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(793), 1, - sym__block_quote_prefix, - STATE(967), 1, - sym_code, - STATE(345), 2, - sym__line, - aux_sym_code_repeat1, - [9627] = 7, + [9638] = 7, + ACTIONS(21), 1, + sym_list_marker_dash, ACTIONS(1150), 1, sym__block_close, ACTIONS(1152), 1, - sym_list_marker_dash, - ACTIONS(1155), 1, sym__block_quote_continuation, - STATE(316), 1, + STATE(340), 1, aux_sym__list_dash_repeat1, - STATE(587), 1, + STATE(584), 1, aux_sym__block_quote_prefix_repeat1, - STATE(645), 1, + STATE(595), 1, sym__list_item_dash, - STATE(955), 1, + STATE(953), 1, sym__block_quote_prefix, - [9649] = 7, - ACTIONS(25), 1, - sym_list_marker_plus, - ACTIONS(1158), 1, + [9660] = 1, + ACTIONS(1154), 7, + sym__newline, + anon_sym_RBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + sym__whitespace1, + anon_sym_PERCENT, + sym__id, + [9670] = 7, + ACTIONS(23), 1, + sym_list_marker_star, + ACTIONS(1156), 1, sym__block_close, - ACTIONS(1160), 1, + ACTIONS(1158), 1, sym__block_quote_continuation, - STATE(337), 1, - aux_sym__list_plus_repeat1, + STATE(338), 1, + aux_sym__list_star_repeat1, STATE(570), 1, + sym__list_item_star, + STATE(599), 1, aux_sym__block_quote_prefix_repeat1, - STATE(661), 1, - sym__list_item_plus, - STATE(964), 1, - sym__block_quote_prefix, - [9671] = 7, - ACTIONS(21), 1, - sym_list_marker_dash, - ACTIONS(1162), 1, - sym__block_close, - ACTIONS(1164), 1, - sym__block_quote_continuation, - STATE(316), 1, - aux_sym__list_dash_repeat1, - STATE(587), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(645), 1, - sym__list_item_dash, - STATE(955), 1, + STATE(970), 1, sym__block_quote_prefix, - [9693] = 7, + [9692] = 7, ACTIONS(25), 1, sym_list_marker_plus, ACTIONS(1160), 1, - sym__block_quote_continuation, - ACTIONS(1166), 1, sym__block_close, - STATE(337), 1, + ACTIONS(1162), 1, + sym__block_quote_continuation, + STATE(352), 1, aux_sym__list_plus_repeat1, - STATE(570), 1, + STATE(567), 1, aux_sym__block_quote_prefix_repeat1, - STATE(661), 1, + STATE(657), 1, sym__list_item_plus, - STATE(964), 1, + STATE(961), 1, sym__block_quote_prefix, - [9715] = 7, - ACTIONS(23), 1, - sym_list_marker_star, - ACTIONS(1168), 1, + [9714] = 1, + ACTIONS(556), 7, sym__block_close, - ACTIONS(1170), 1, + sym__newline, sym__block_quote_continuation, - STATE(349), 1, - aux_sym__list_star_repeat1, - STATE(573), 1, - sym__list_item_star, - STATE(610), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(987), 1, - sym__block_quote_prefix, - [9737] = 1, - ACTIONS(556), 7, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + sym__table_caption_begin, + [9724] = 1, + ACTIONS(560), 7, sym__block_close, sym__newline, sym__block_quote_continuation, @@ -21751,52 +21748,88 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, sym__table_caption_begin, - [9747] = 7, + [9734] = 1, + ACTIONS(1164), 7, + sym__newline, + anon_sym_RBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + sym__whitespace1, + anon_sym_PERCENT, + sym__id, + [9744] = 7, ACTIONS(21), 1, sym_list_marker_dash, - ACTIONS(1164), 1, + ACTIONS(1152), 1, sym__block_quote_continuation, - ACTIONS(1172), 1, + ACTIONS(1166), 1, sym__block_close, - STATE(316), 1, + STATE(340), 1, aux_sym__list_dash_repeat1, - STATE(587), 1, + STATE(584), 1, aux_sym__block_quote_prefix_repeat1, - STATE(645), 1, + STATE(595), 1, sym__list_item_dash, - STATE(955), 1, + STATE(953), 1, sym__block_quote_prefix, - [9769] = 7, + [9766] = 7, ACTIONS(25), 1, sym_list_marker_plus, - ACTIONS(1160), 1, + ACTIONS(1162), 1, sym__block_quote_continuation, - ACTIONS(1174), 1, + ACTIONS(1168), 1, sym__block_close, - STATE(337), 1, + STATE(352), 1, aux_sym__list_plus_repeat1, - STATE(570), 1, + STATE(567), 1, aux_sym__block_quote_prefix_repeat1, - STATE(661), 1, + STATE(657), 1, sym__list_item_plus, - STATE(964), 1, + STATE(961), 1, sym__block_quote_prefix, - [9791] = 7, + [9788] = 7, ACTIONS(23), 1, sym_list_marker_star, - ACTIONS(1170), 1, + ACTIONS(1158), 1, sym__block_quote_continuation, - ACTIONS(1176), 1, + ACTIONS(1170), 1, sym__block_close, - STATE(349), 1, + STATE(338), 1, aux_sym__list_star_repeat1, - STATE(573), 1, + STATE(570), 1, sym__list_item_star, - STATE(610), 1, + STATE(599), 1, aux_sym__block_quote_prefix_repeat1, - STATE(987), 1, + STATE(970), 1, sym__block_quote_prefix, - [9813] = 1, + [9810] = 1, + ACTIONS(1172), 7, + sym__newline, + anon_sym_RBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + sym__whitespace1, + anon_sym_PERCENT, + sym__id, + [9820] = 1, + ACTIONS(1174), 7, + sym__newline, + anon_sym_RBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + sym__whitespace1, + anon_sym_PERCENT, + sym__id, + [9830] = 1, + ACTIONS(1176), 7, + sym__newline, + anon_sym_RBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + sym__whitespace1, + anon_sym_PERCENT, + sym__id, + [9840] = 1, ACTIONS(584), 7, sym__newline, sym__indented_content_spacer, @@ -21805,16 +21838,7 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, sym__table_caption_begin, - [9823] = 1, - ACTIONS(560), 7, - sym__block_close, - sym__newline, - sym__block_quote_continuation, - sym__table_header_begin, - sym__table_separator_begin, - sym__table_row_begin, - sym__table_caption_begin, - [9833] = 1, + [9850] = 1, ACTIONS(600), 7, sym__block_close, sym__newline, @@ -21823,68 +21847,134 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, sym__table_caption_begin, - [9843] = 7, + [9860] = 1, + ACTIONS(1178), 7, + sym__newline, + anon_sym_RBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + sym__whitespace1, + anon_sym_PERCENT, + sym__id, + [9870] = 1, + ACTIONS(1180), 7, + sym__newline, + anon_sym_RBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + sym__whitespace1, + anon_sym_PERCENT, + sym__id, + [9880] = 7, ACTIONS(21), 1, sym_list_marker_dash, - ACTIONS(1164), 1, + ACTIONS(1152), 1, sym__block_quote_continuation, - ACTIONS(1178), 1, + ACTIONS(1182), 1, sym__block_close, - STATE(316), 1, + STATE(340), 1, aux_sym__list_dash_repeat1, - STATE(587), 1, + STATE(584), 1, aux_sym__block_quote_prefix_repeat1, - STATE(645), 1, + STATE(595), 1, sym__list_item_dash, - STATE(955), 1, + STATE(953), 1, sym__block_quote_prefix, - [9865] = 7, + [9902] = 7, ACTIONS(25), 1, sym_list_marker_plus, - ACTIONS(1160), 1, + ACTIONS(1162), 1, sym__block_quote_continuation, - ACTIONS(1180), 1, + ACTIONS(1184), 1, sym__block_close, - STATE(337), 1, + STATE(352), 1, aux_sym__list_plus_repeat1, - STATE(570), 1, + STATE(567), 1, aux_sym__block_quote_prefix_repeat1, - STATE(661), 1, + STATE(657), 1, sym__list_item_plus, - STATE(964), 1, + STATE(961), 1, sym__block_quote_prefix, - [9887] = 7, + [9924] = 7, ACTIONS(23), 1, sym_list_marker_star, - ACTIONS(1170), 1, + ACTIONS(1158), 1, sym__block_quote_continuation, - ACTIONS(1182), 1, + ACTIONS(1186), 1, sym__block_close, - STATE(349), 1, + STATE(338), 1, aux_sym__list_star_repeat1, - STATE(573), 1, + STATE(570), 1, sym__list_item_star, - STATE(610), 1, + STATE(599), 1, aux_sym__block_quote_prefix_repeat1, - STATE(987), 1, + STATE(970), 1, sym__block_quote_prefix, - [9909] = 7, - ACTIONS(23), 1, - sym_list_marker_star, - ACTIONS(1170), 1, + [9946] = 7, + ACTIONS(25), 1, + sym_list_marker_plus, + ACTIONS(1162), 1, sym__block_quote_continuation, - ACTIONS(1184), 1, + ACTIONS(1188), 1, + sym__block_close, + STATE(352), 1, + aux_sym__list_plus_repeat1, + STATE(567), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(657), 1, + sym__list_item_plus, + STATE(961), 1, + sym__block_quote_prefix, + [9968] = 1, + ACTIONS(1190), 7, + sym__newline, + anon_sym_RBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + sym__whitespace1, + anon_sym_PERCENT, + sym__id, + [9978] = 7, + ACTIONS(1192), 1, sym__block_close, - STATE(349), 1, + ACTIONS(1194), 1, + sym_list_marker_star, + ACTIONS(1197), 1, + sym__block_quote_continuation, + STATE(338), 1, aux_sym__list_star_repeat1, - STATE(573), 1, + STATE(570), 1, sym__list_item_star, - STATE(610), 1, + STATE(599), 1, aux_sym__block_quote_prefix_repeat1, - STATE(987), 1, + STATE(970), 1, sym__block_quote_prefix, - [9931] = 1, - ACTIONS(552), 7, + [10000] = 1, + ACTIONS(1200), 7, + sym__newline, + anon_sym_RBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + sym__whitespace1, + anon_sym_PERCENT, + sym__id, + [10010] = 7, + ACTIONS(1202), 1, + sym__block_close, + ACTIONS(1204), 1, + sym_list_marker_dash, + ACTIONS(1207), 1, + sym__block_quote_continuation, + STATE(340), 1, + aux_sym__list_dash_repeat1, + STATE(584), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(595), 1, + sym__list_item_dash, + STATE(953), 1, + sym__block_quote_prefix, + [10032] = 1, + ACTIONS(620), 7, sym__block_close, sym__newline, sym__block_quote_continuation, @@ -21892,8 +21982,8 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, sym__table_caption_begin, - [9941] = 1, - ACTIONS(616), 7, + [10042] = 1, + ACTIONS(552), 7, sym__block_close, sym__newline, sym__block_quote_continuation, @@ -21901,22 +21991,7 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, sym__table_caption_begin, - [9951] = 7, - ACTIONS(21), 1, - sym_list_marker_dash, - ACTIONS(1164), 1, - sym__block_quote_continuation, - ACTIONS(1186), 1, - sym__block_close, - STATE(316), 1, - aux_sym__list_dash_repeat1, - STATE(587), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(645), 1, - sym__list_item_dash, - STATE(955), 1, - sym__block_quote_prefix, - [9973] = 1, + [10052] = 1, ACTIONS(584), 7, sym__block_close, sym__newline, @@ -21925,7 +22000,21 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, sym__table_caption_begin, - [9983] = 1, + [10062] = 6, + ACTIONS(1096), 1, + aux_sym__line_token1, + ACTIONS(1100), 1, + sym__block_quote_continuation, + ACTIONS(1210), 1, + sym__block_close, + STATE(551), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(707), 1, + sym__block_quote_prefix, + STATE(353), 2, + sym__line, + aux_sym_code_repeat1, + [10082] = 1, ACTIONS(600), 7, sym__newline, sym__indented_content_spacer, @@ -21934,22 +22023,7 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, sym__table_caption_begin, - [9993] = 7, - ACTIONS(1188), 1, - sym__block_close, - ACTIONS(1190), 1, - sym_list_marker_plus, - ACTIONS(1193), 1, - sym__block_quote_continuation, - STATE(337), 1, - aux_sym__list_plus_repeat1, - STATE(570), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(661), 1, - sym__list_item_plus, - STATE(964), 1, - sym__block_quote_prefix, - [10015] = 1, + [10092] = 1, ACTIONS(616), 7, sym__newline, sym__indented_content_spacer, @@ -21958,7 +22032,7 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, sym__table_caption_begin, - [10025] = 1, + [10102] = 1, ACTIONS(620), 7, sym__newline, sym__indented_content_spacer, @@ -21967,7 +22041,7 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, sym__table_caption_begin, - [10035] = 1, + [10112] = 1, ACTIONS(552), 7, sym__newline, sym__indented_content_spacer, @@ -21976,7 +22050,7 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, sym__table_caption_begin, - [10045] = 1, + [10122] = 1, ACTIONS(556), 7, sym__newline, sym__indented_content_spacer, @@ -21985,22 +22059,7 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, sym__table_caption_begin, - [10055] = 7, - ACTIONS(23), 1, - sym_list_marker_star, - ACTIONS(1170), 1, - sym__block_quote_continuation, - ACTIONS(1196), 1, - sym__block_close, - STATE(349), 1, - aux_sym__list_star_repeat1, - STATE(573), 1, - sym__list_item_star, - STATE(610), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(987), 1, - sym__block_quote_prefix, - [10077] = 1, + [10132] = 1, ACTIONS(560), 7, sym__newline, sym__indented_content_spacer, @@ -22009,944 +22068,903 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, sym__table_caption_begin, - [10087] = 1, - ACTIONS(620), 7, - sym__block_close, - sym__newline, - sym__block_quote_continuation, - sym__table_header_begin, - sym__table_separator_begin, - sym__table_row_begin, - sym__table_caption_begin, - [10097] = 6, - ACTIONS(1102), 1, - aux_sym__line_token1, - ACTIONS(1106), 1, + [10142] = 7, + ACTIONS(21), 1, + sym_list_marker_dash, + ACTIONS(1152), 1, sym__block_quote_continuation, - ACTIONS(1198), 1, + ACTIONS(1212), 1, sym__block_close, - STATE(554), 1, + STATE(340), 1, + aux_sym__list_dash_repeat1, + STATE(584), 1, aux_sym__block_quote_prefix_repeat1, - STATE(793), 1, + STATE(595), 1, + sym__list_item_dash, + STATE(953), 1, sym__block_quote_prefix, - STATE(346), 2, - sym__line, - aux_sym_code_repeat1, - [10117] = 6, - ACTIONS(1200), 1, + [10164] = 7, + ACTIONS(1214), 1, + sym__block_close, + ACTIONS(1216), 1, + sym_list_marker_plus, + ACTIONS(1219), 1, + sym__block_quote_continuation, + STATE(352), 1, + aux_sym__list_plus_repeat1, + STATE(567), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(657), 1, + sym__list_item_plus, + STATE(961), 1, + sym__block_quote_prefix, + [10186] = 6, + ACTIONS(1222), 1, aux_sym__line_token1, - ACTIONS(1203), 1, + ACTIONS(1225), 1, sym__block_close, - ACTIONS(1205), 1, + ACTIONS(1227), 1, sym__block_quote_continuation, - STATE(554), 1, + STATE(551), 1, aux_sym__block_quote_prefix_repeat1, - STATE(793), 1, + STATE(707), 1, sym__block_quote_prefix, - STATE(346), 2, + STATE(353), 2, sym__line, aux_sym_code_repeat1, - [10137] = 7, + [10206] = 7, + ACTIONS(23), 1, + sym_list_marker_star, + ACTIONS(1158), 1, + sym__block_quote_continuation, + ACTIONS(1230), 1, + sym__block_close, + STATE(338), 1, + aux_sym__list_star_repeat1, + STATE(570), 1, + sym__list_item_star, + STATE(599), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(970), 1, + sym__block_quote_prefix, + [10228] = 7, ACTIONS(21), 1, sym_list_marker_dash, - ACTIONS(1164), 1, + ACTIONS(1152), 1, sym__block_quote_continuation, - ACTIONS(1208), 1, + ACTIONS(1232), 1, sym__block_close, - STATE(316), 1, + STATE(340), 1, aux_sym__list_dash_repeat1, - STATE(587), 1, + STATE(584), 1, aux_sym__block_quote_prefix_repeat1, - STATE(645), 1, + STATE(595), 1, sym__list_item_dash, - STATE(955), 1, + STATE(953), 1, sym__block_quote_prefix, - [10159] = 7, + [10250] = 7, ACTIONS(25), 1, sym_list_marker_plus, - ACTIONS(1160), 1, + ACTIONS(1162), 1, sym__block_quote_continuation, - ACTIONS(1210), 1, + ACTIONS(1234), 1, sym__block_close, - STATE(337), 1, + STATE(352), 1, aux_sym__list_plus_repeat1, - STATE(570), 1, + STATE(567), 1, aux_sym__block_quote_prefix_repeat1, - STATE(661), 1, + STATE(657), 1, sym__list_item_plus, - STATE(964), 1, + STATE(961), 1, sym__block_quote_prefix, - [10181] = 7, - ACTIONS(1212), 1, - sym__block_close, - ACTIONS(1214), 1, + [10272] = 7, + ACTIONS(23), 1, sym_list_marker_star, - ACTIONS(1217), 1, + ACTIONS(1158), 1, sym__block_quote_continuation, - STATE(349), 1, + ACTIONS(1236), 1, + sym__block_close, + STATE(338), 1, aux_sym__list_star_repeat1, - STATE(573), 1, + STATE(570), 1, sym__list_item_star, - STATE(610), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(987), 1, - sym__block_quote_prefix, - [10203] = 6, - ACTIONS(1220), 1, - sym__list_item_continuation, - ACTIONS(1222), 1, - sym__list_item_end, - ACTIONS(1224), 1, - sym__block_quote_continuation, - STATE(370), 1, - aux_sym_list_item_content_repeat1, - STATE(556), 1, + STATE(599), 1, aux_sym__block_quote_prefix_repeat1, - STATE(948), 1, + STATE(970), 1, sym__block_quote_prefix, - [10222] = 6, - ACTIONS(1226), 1, + [10294] = 1, + ACTIONS(616), 7, + sym__block_close, + sym__newline, sym__block_quote_continuation, - ACTIONS(1228), 1, - sym__footnote_continuation, - ACTIONS(1230), 1, - sym__footnote_end, - STATE(404), 1, - aux_sym_footnote_content_repeat1, - STATE(558), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(995), 1, - sym__block_quote_prefix, - [10241] = 6, - ACTIONS(1220), 1, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + sym__table_caption_begin, + [10304] = 6, + ACTIONS(1238), 1, sym__list_item_continuation, - ACTIONS(1224), 1, - sym__block_quote_continuation, - ACTIONS(1232), 1, + ACTIONS(1240), 1, sym__list_item_end, - STATE(397), 1, + ACTIONS(1242), 1, + sym__block_quote_continuation, + STATE(405), 1, aux_sym_list_item_content_repeat1, - STATE(556), 1, + STATE(553), 1, aux_sym__block_quote_prefix_repeat1, - STATE(948), 1, + STATE(966), 1, sym__block_quote_prefix, - [10260] = 6, - ACTIONS(1220), 1, + [10323] = 6, + ACTIONS(1238), 1, sym__list_item_continuation, - ACTIONS(1224), 1, + ACTIONS(1242), 1, sym__block_quote_continuation, - ACTIONS(1234), 1, + ACTIONS(1244), 1, sym__list_item_end, - STATE(352), 1, + STATE(366), 1, aux_sym_list_item_content_repeat1, - STATE(556), 1, + STATE(553), 1, aux_sym__block_quote_prefix_repeat1, - STATE(948), 1, + STATE(966), 1, sym__block_quote_prefix, - [10279] = 6, - ACTIONS(1226), 1, + [10342] = 6, + ACTIONS(1242), 1, sym__block_quote_continuation, - ACTIONS(1228), 1, - sym__footnote_continuation, - ACTIONS(1236), 1, - sym__footnote_end, - STATE(356), 1, - aux_sym_footnote_content_repeat1, - STATE(558), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(995), 1, - sym__block_quote_prefix, - [10298] = 6, - ACTIONS(1220), 1, + ACTIONS(1246), 1, sym__list_item_continuation, - ACTIONS(1224), 1, - sym__block_quote_continuation, - ACTIONS(1238), 1, + ACTIONS(1248), 1, sym__list_item_end, - STATE(406), 1, - aux_sym_list_item_content_repeat1, - STATE(556), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(948), 1, - sym__block_quote_prefix, - [10317] = 6, - ACTIONS(1226), 1, - sym__block_quote_continuation, - ACTIONS(1228), 1, - sym__footnote_continuation, - ACTIONS(1240), 1, - sym__footnote_end, - STATE(404), 1, - aux_sym_footnote_content_repeat1, - STATE(558), 1, + STATE(365), 1, + aux_sym__list_item_definition_repeat1, + STATE(553), 1, aux_sym__block_quote_prefix_repeat1, - STATE(995), 1, + STATE(1085), 1, sym__block_quote_prefix, - [10336] = 4, - ACTIONS(446), 1, + [10361] = 4, + ACTIONS(378), 1, sym__table_header_begin, - ACTIONS(448), 1, + ACTIONS(380), 1, sym__table_separator_begin, - ACTIONS(450), 1, + ACTIONS(382), 1, sym__table_row_begin, - STATE(308), 3, + STATE(329), 3, sym_table_header, sym_table_separator, sym_table_row, - [10351] = 1, - ACTIONS(1242), 6, - anon_sym_RBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - sym__whitespace1, - anon_sym_PERCENT, - sym__id, - [10360] = 6, - ACTIONS(1220), 1, + [10376] = 6, + ACTIONS(1238), 1, sym__list_item_continuation, - ACTIONS(1224), 1, + ACTIONS(1242), 1, sym__block_quote_continuation, - ACTIONS(1244), 1, + ACTIONS(1250), 1, sym__list_item_end, - STATE(364), 1, + STATE(400), 1, aux_sym_list_item_content_repeat1, - STATE(556), 1, + STATE(553), 1, aux_sym__block_quote_prefix_repeat1, - STATE(948), 1, + STATE(966), 1, sym__block_quote_prefix, - [10379] = 1, - ACTIONS(1246), 6, - anon_sym_RBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - sym__whitespace1, - anon_sym_PERCENT, - sym__id, - [10388] = 6, - ACTIONS(1220), 1, + [10395] = 6, + ACTIONS(1238), 1, sym__list_item_continuation, - ACTIONS(1224), 1, + ACTIONS(1242), 1, sym__block_quote_continuation, - ACTIONS(1248), 1, + ACTIONS(1252), 1, sym__list_item_end, - STATE(363), 1, + STATE(405), 1, aux_sym_list_item_content_repeat1, - STATE(556), 1, + STATE(553), 1, aux_sym__block_quote_prefix_repeat1, - STATE(948), 1, + STATE(966), 1, sym__block_quote_prefix, - [10407] = 1, - ACTIONS(1250), 6, - anon_sym_RBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - sym__whitespace1, - anon_sym_PERCENT, - sym__id, - [10416] = 6, - ACTIONS(1220), 1, + [10414] = 6, + ACTIONS(1254), 1, sym__list_item_continuation, - ACTIONS(1224), 1, - sym__block_quote_continuation, - ACTIONS(1252), 1, + ACTIONS(1257), 1, sym__list_item_end, - STATE(397), 1, - aux_sym_list_item_content_repeat1, - STATE(556), 1, + ACTIONS(1259), 1, + sym__block_quote_continuation, + STATE(365), 1, + aux_sym__list_item_definition_repeat1, + STATE(553), 1, aux_sym__block_quote_prefix_repeat1, - STATE(948), 1, + STATE(1085), 1, sym__block_quote_prefix, - [10435] = 6, - ACTIONS(1220), 1, + [10433] = 6, + ACTIONS(1238), 1, sym__list_item_continuation, - ACTIONS(1224), 1, + ACTIONS(1242), 1, sym__block_quote_continuation, - ACTIONS(1254), 1, + ACTIONS(1262), 1, sym__list_item_end, - STATE(397), 1, + STATE(405), 1, aux_sym_list_item_content_repeat1, - STATE(556), 1, + STATE(553), 1, aux_sym__block_quote_prefix_repeat1, - STATE(948), 1, + STATE(966), 1, sym__block_quote_prefix, - [10454] = 4, - ACTIONS(67), 1, - sym__table_header_begin, - ACTIONS(69), 1, - sym__table_separator_begin, - ACTIONS(71), 1, - sym__table_row_begin, - STATE(81), 3, - sym_table_header, - sym_table_separator, - sym_table_row, - [10469] = 6, - ACTIONS(1256), 1, - sym__list_item_continuation, - ACTIONS(1259), 1, - sym__list_item_end, - ACTIONS(1261), 1, + [10452] = 6, + ACTIONS(1264), 1, sym__block_quote_continuation, - STATE(366), 1, - aux_sym__list_item_definition_repeat1, - STATE(556), 1, + ACTIONS(1266), 1, + sym__footnote_continuation, + ACTIONS(1268), 1, + sym__footnote_end, + STATE(406), 1, + aux_sym_footnote_content_repeat1, + STATE(555), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1013), 1, + STATE(994), 1, sym__block_quote_prefix, - [10488] = 6, - ACTIONS(1226), 1, + [10471] = 6, + ACTIONS(1264), 1, sym__block_quote_continuation, - ACTIONS(1228), 1, + ACTIONS(1266), 1, sym__footnote_continuation, - ACTIONS(1264), 1, + ACTIONS(1270), 1, sym__footnote_end, - STATE(368), 1, + STATE(369), 1, aux_sym_footnote_content_repeat1, - STATE(558), 1, + STATE(555), 1, aux_sym__block_quote_prefix_repeat1, - STATE(995), 1, + STATE(994), 1, sym__block_quote_prefix, - [10507] = 6, - ACTIONS(1226), 1, + [10490] = 6, + ACTIONS(1264), 1, sym__block_quote_continuation, - ACTIONS(1228), 1, - sym__footnote_continuation, ACTIONS(1266), 1, + sym__footnote_continuation, + ACTIONS(1272), 1, sym__footnote_end, - STATE(404), 1, + STATE(406), 1, aux_sym_footnote_content_repeat1, - STATE(558), 1, + STATE(555), 1, aux_sym__block_quote_prefix_repeat1, - STATE(995), 1, + STATE(994), 1, sym__block_quote_prefix, - [10526] = 4, - ACTIONS(480), 1, - sym__table_header_begin, - ACTIONS(482), 1, - sym__table_separator_begin, - ACTIONS(484), 1, - sym__table_row_begin, - STATE(335), 3, - sym_table_header, - sym_table_separator, - sym_table_row, - [10541] = 6, - ACTIONS(1220), 1, + [10509] = 6, + ACTIONS(1238), 1, sym__list_item_continuation, - ACTIONS(1224), 1, + ACTIONS(1242), 1, sym__block_quote_continuation, - ACTIONS(1268), 1, + ACTIONS(1274), 1, sym__list_item_end, - STATE(397), 1, + STATE(359), 1, aux_sym_list_item_content_repeat1, - STATE(556), 1, + STATE(553), 1, aux_sym__block_quote_prefix_repeat1, - STATE(948), 1, + STATE(966), 1, sym__block_quote_prefix, - [10560] = 6, - ACTIONS(1220), 1, + [10528] = 6, + ACTIONS(1238), 1, sym__list_item_continuation, - ACTIONS(1224), 1, + ACTIONS(1242), 1, sym__block_quote_continuation, - ACTIONS(1270), 1, + ACTIONS(1276), 1, sym__list_item_end, STATE(372), 1, aux_sym_list_item_content_repeat1, - STATE(556), 1, + STATE(553), 1, aux_sym__block_quote_prefix_repeat1, - STATE(948), 1, + STATE(966), 1, sym__block_quote_prefix, - [10579] = 6, - ACTIONS(1220), 1, + [10547] = 6, + ACTIONS(1238), 1, sym__list_item_continuation, - ACTIONS(1224), 1, + ACTIONS(1242), 1, sym__block_quote_continuation, - ACTIONS(1272), 1, + ACTIONS(1278), 1, sym__list_item_end, - STATE(397), 1, + STATE(405), 1, aux_sym_list_item_content_repeat1, - STATE(556), 1, + STATE(553), 1, aux_sym__block_quote_prefix_repeat1, - STATE(948), 1, + STATE(966), 1, sym__block_quote_prefix, - [10598] = 6, - ACTIONS(1220), 1, + [10566] = 6, + ACTIONS(1238), 1, sym__list_item_continuation, - ACTIONS(1224), 1, + ACTIONS(1242), 1, sym__block_quote_continuation, - ACTIONS(1274), 1, + ACTIONS(1280), 1, sym__list_item_end, STATE(374), 1, aux_sym_list_item_content_repeat1, - STATE(556), 1, + STATE(553), 1, aux_sym__block_quote_prefix_repeat1, - STATE(948), 1, + STATE(966), 1, sym__block_quote_prefix, - [10617] = 6, - ACTIONS(1220), 1, + [10585] = 6, + ACTIONS(1238), 1, sym__list_item_continuation, - ACTIONS(1224), 1, + ACTIONS(1242), 1, sym__block_quote_continuation, - ACTIONS(1276), 1, + ACTIONS(1282), 1, sym__list_item_end, - STATE(397), 1, + STATE(405), 1, aux_sym_list_item_content_repeat1, - STATE(556), 1, + STATE(553), 1, aux_sym__block_quote_prefix_repeat1, - STATE(948), 1, + STATE(966), 1, sym__block_quote_prefix, - [10636] = 6, - ACTIONS(1220), 1, + [10604] = 6, + ACTIONS(1238), 1, sym__list_item_continuation, - ACTIONS(1224), 1, + ACTIONS(1242), 1, sym__block_quote_continuation, - ACTIONS(1278), 1, + ACTIONS(1284), 1, sym__list_item_end, STATE(376), 1, aux_sym_list_item_content_repeat1, - STATE(556), 1, + STATE(553), 1, aux_sym__block_quote_prefix_repeat1, - STATE(948), 1, + STATE(966), 1, sym__block_quote_prefix, - [10655] = 6, - ACTIONS(1220), 1, + [10623] = 6, + ACTIONS(1238), 1, sym__list_item_continuation, - ACTIONS(1224), 1, - sym__block_quote_continuation, - ACTIONS(1280), 1, - sym__list_item_end, - STATE(397), 1, - aux_sym_list_item_content_repeat1, - STATE(556), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(948), 1, - sym__block_quote_prefix, - [10674] = 6, - ACTIONS(1220), 1, - sym__list_item_continuation, - ACTIONS(1224), 1, - sym__block_quote_continuation, - ACTIONS(1282), 1, - sym__list_item_end, - STATE(378), 1, - aux_sym_list_item_content_repeat1, - STATE(556), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(948), 1, - sym__block_quote_prefix, - [10693] = 6, - ACTIONS(1220), 1, - sym__list_item_continuation, - ACTIONS(1224), 1, - sym__block_quote_continuation, - ACTIONS(1284), 1, - sym__list_item_end, - STATE(397), 1, - aux_sym_list_item_content_repeat1, - STATE(556), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(948), 1, - sym__block_quote_prefix, - [10712] = 6, - ACTIONS(1220), 1, - sym__list_item_continuation, - ACTIONS(1224), 1, + ACTIONS(1242), 1, sym__block_quote_continuation, ACTIONS(1286), 1, sym__list_item_end, - STATE(380), 1, + STATE(405), 1, aux_sym_list_item_content_repeat1, - STATE(556), 1, + STATE(553), 1, aux_sym__block_quote_prefix_repeat1, - STATE(948), 1, + STATE(966), 1, sym__block_quote_prefix, - [10731] = 6, - ACTIONS(1220), 1, + [10642] = 6, + ACTIONS(1238), 1, sym__list_item_continuation, - ACTIONS(1224), 1, + ACTIONS(1242), 1, sym__block_quote_continuation, ACTIONS(1288), 1, sym__list_item_end, - STATE(397), 1, + STATE(378), 1, aux_sym_list_item_content_repeat1, - STATE(556), 1, + STATE(553), 1, aux_sym__block_quote_prefix_repeat1, - STATE(948), 1, + STATE(966), 1, sym__block_quote_prefix, - [10750] = 6, - ACTIONS(1220), 1, + [10661] = 6, + ACTIONS(1238), 1, sym__list_item_continuation, - ACTIONS(1224), 1, + ACTIONS(1242), 1, sym__block_quote_continuation, ACTIONS(1290), 1, sym__list_item_end, - STATE(382), 1, + STATE(405), 1, aux_sym_list_item_content_repeat1, - STATE(556), 1, + STATE(553), 1, aux_sym__block_quote_prefix_repeat1, - STATE(948), 1, + STATE(966), 1, sym__block_quote_prefix, - [10769] = 6, - ACTIONS(1220), 1, + [10680] = 6, + ACTIONS(1238), 1, sym__list_item_continuation, - ACTIONS(1224), 1, + ACTIONS(1242), 1, sym__block_quote_continuation, ACTIONS(1292), 1, sym__list_item_end, - STATE(397), 1, + STATE(380), 1, aux_sym_list_item_content_repeat1, - STATE(556), 1, + STATE(553), 1, aux_sym__block_quote_prefix_repeat1, - STATE(948), 1, + STATE(966), 1, sym__block_quote_prefix, - [10788] = 6, - ACTIONS(1220), 1, + [10699] = 6, + ACTIONS(1238), 1, sym__list_item_continuation, - ACTIONS(1224), 1, + ACTIONS(1242), 1, sym__block_quote_continuation, ACTIONS(1294), 1, sym__list_item_end, - STATE(384), 1, + STATE(405), 1, aux_sym_list_item_content_repeat1, - STATE(556), 1, + STATE(553), 1, aux_sym__block_quote_prefix_repeat1, - STATE(948), 1, + STATE(966), 1, sym__block_quote_prefix, - [10807] = 6, - ACTIONS(1220), 1, + [10718] = 6, + ACTIONS(1238), 1, sym__list_item_continuation, - ACTIONS(1224), 1, + ACTIONS(1242), 1, sym__block_quote_continuation, ACTIONS(1296), 1, sym__list_item_end, - STATE(397), 1, + STATE(382), 1, aux_sym_list_item_content_repeat1, - STATE(556), 1, + STATE(553), 1, aux_sym__block_quote_prefix_repeat1, - STATE(948), 1, + STATE(966), 1, sym__block_quote_prefix, - [10826] = 6, - ACTIONS(1220), 1, + [10737] = 6, + ACTIONS(1238), 1, sym__list_item_continuation, - ACTIONS(1224), 1, + ACTIONS(1242), 1, sym__block_quote_continuation, ACTIONS(1298), 1, sym__list_item_end, - STATE(386), 1, + STATE(405), 1, aux_sym_list_item_content_repeat1, - STATE(556), 1, + STATE(553), 1, aux_sym__block_quote_prefix_repeat1, - STATE(948), 1, + STATE(966), 1, sym__block_quote_prefix, - [10845] = 6, - ACTIONS(1220), 1, + [10756] = 6, + ACTIONS(1238), 1, sym__list_item_continuation, - ACTIONS(1224), 1, + ACTIONS(1242), 1, sym__block_quote_continuation, ACTIONS(1300), 1, sym__list_item_end, - STATE(397), 1, + STATE(384), 1, aux_sym_list_item_content_repeat1, - STATE(556), 1, + STATE(553), 1, aux_sym__block_quote_prefix_repeat1, - STATE(948), 1, + STATE(966), 1, sym__block_quote_prefix, - [10864] = 6, - ACTIONS(1220), 1, + [10775] = 6, + ACTIONS(1238), 1, sym__list_item_continuation, - ACTIONS(1224), 1, + ACTIONS(1242), 1, sym__block_quote_continuation, ACTIONS(1302), 1, sym__list_item_end, - STATE(416), 1, + STATE(405), 1, aux_sym_list_item_content_repeat1, - STATE(556), 1, + STATE(553), 1, aux_sym__block_quote_prefix_repeat1, - STATE(948), 1, + STATE(966), 1, sym__block_quote_prefix, - [10883] = 6, - ACTIONS(1226), 1, + [10794] = 4, + ACTIONS(89), 1, + sym__table_header_begin, + ACTIONS(91), 1, + sym__table_separator_begin, + ACTIONS(93), 1, + sym__table_row_begin, + STATE(83), 3, + sym_table_header, + sym_table_separator, + sym_table_row, + [10809] = 6, + ACTIONS(1238), 1, + sym__list_item_continuation, + ACTIONS(1242), 1, sym__block_quote_continuation, - ACTIONS(1228), 1, - sym__footnote_continuation, ACTIONS(1304), 1, - sym__footnote_end, - STATE(351), 1, - aux_sym_footnote_content_repeat1, - STATE(558), 1, + sym__list_item_end, + STATE(405), 1, + aux_sym_list_item_content_repeat1, + STATE(553), 1, aux_sym__block_quote_prefix_repeat1, - STATE(995), 1, + STATE(966), 1, sym__block_quote_prefix, - [10902] = 6, - ACTIONS(1220), 1, + [10828] = 6, + ACTIONS(1238), 1, sym__list_item_continuation, - ACTIONS(1224), 1, + ACTIONS(1242), 1, sym__block_quote_continuation, ACTIONS(1306), 1, sym__list_item_end, - STATE(390), 1, + STATE(388), 1, aux_sym_list_item_content_repeat1, - STATE(556), 1, + STATE(553), 1, aux_sym__block_quote_prefix_repeat1, - STATE(948), 1, + STATE(966), 1, sym__block_quote_prefix, - [10921] = 6, - ACTIONS(1220), 1, + [10847] = 6, + ACTIONS(1238), 1, sym__list_item_continuation, - ACTIONS(1224), 1, + ACTIONS(1242), 1, sym__block_quote_continuation, ACTIONS(1308), 1, sym__list_item_end, - STATE(397), 1, + STATE(405), 1, aux_sym_list_item_content_repeat1, - STATE(556), 1, + STATE(553), 1, aux_sym__block_quote_prefix_repeat1, - STATE(948), 1, + STATE(966), 1, sym__block_quote_prefix, - [10940] = 6, - ACTIONS(1220), 1, + [10866] = 6, + ACTIONS(1238), 1, sym__list_item_continuation, - ACTIONS(1224), 1, + ACTIONS(1242), 1, sym__block_quote_continuation, ACTIONS(1310), 1, sym__list_item_end, - STATE(392), 1, + STATE(390), 1, aux_sym_list_item_content_repeat1, - STATE(556), 1, + STATE(553), 1, aux_sym__block_quote_prefix_repeat1, - STATE(948), 1, + STATE(966), 1, sym__block_quote_prefix, - [10959] = 6, - ACTIONS(1220), 1, + [10885] = 6, + ACTIONS(1238), 1, sym__list_item_continuation, - ACTIONS(1224), 1, + ACTIONS(1242), 1, sym__block_quote_continuation, ACTIONS(1312), 1, sym__list_item_end, - STATE(397), 1, + STATE(405), 1, aux_sym_list_item_content_repeat1, - STATE(556), 1, + STATE(553), 1, aux_sym__block_quote_prefix_repeat1, - STATE(948), 1, + STATE(966), 1, sym__block_quote_prefix, - [10978] = 6, - ACTIONS(1220), 1, + [10904] = 6, + ACTIONS(1238), 1, sym__list_item_continuation, - ACTIONS(1224), 1, + ACTIONS(1242), 1, sym__block_quote_continuation, ACTIONS(1314), 1, sym__list_item_end, - STATE(394), 1, + STATE(392), 1, aux_sym_list_item_content_repeat1, - STATE(556), 1, + STATE(553), 1, aux_sym__block_quote_prefix_repeat1, - STATE(948), 1, + STATE(966), 1, sym__block_quote_prefix, - [10997] = 6, - ACTIONS(1220), 1, + [10923] = 6, + ACTIONS(1238), 1, sym__list_item_continuation, - ACTIONS(1224), 1, + ACTIONS(1242), 1, sym__block_quote_continuation, ACTIONS(1316), 1, sym__list_item_end, - STATE(397), 1, + STATE(405), 1, aux_sym_list_item_content_repeat1, - STATE(556), 1, + STATE(553), 1, aux_sym__block_quote_prefix_repeat1, - STATE(948), 1, + STATE(966), 1, sym__block_quote_prefix, - [11016] = 6, - ACTIONS(1220), 1, + [10942] = 6, + ACTIONS(1238), 1, sym__list_item_continuation, - ACTIONS(1224), 1, + ACTIONS(1242), 1, sym__block_quote_continuation, ACTIONS(1318), 1, sym__list_item_end, - STATE(396), 1, + STATE(394), 1, aux_sym_list_item_content_repeat1, - STATE(556), 1, + STATE(553), 1, aux_sym__block_quote_prefix_repeat1, - STATE(948), 1, + STATE(966), 1, sym__block_quote_prefix, - [11035] = 6, - ACTIONS(1220), 1, + [10961] = 6, + ACTIONS(1238), 1, sym__list_item_continuation, - ACTIONS(1224), 1, + ACTIONS(1242), 1, sym__block_quote_continuation, ACTIONS(1320), 1, sym__list_item_end, - STATE(397), 1, + STATE(405), 1, aux_sym_list_item_content_repeat1, - STATE(556), 1, + STATE(553), 1, aux_sym__block_quote_prefix_repeat1, - STATE(948), 1, + STATE(966), 1, sym__block_quote_prefix, - [11054] = 6, - ACTIONS(1322), 1, + [10980] = 6, + ACTIONS(1238), 1, sym__list_item_continuation, - ACTIONS(1325), 1, - sym__list_item_end, - ACTIONS(1327), 1, + ACTIONS(1242), 1, sym__block_quote_continuation, - STATE(397), 1, + ACTIONS(1322), 1, + sym__list_item_end, + STATE(396), 1, aux_sym_list_item_content_repeat1, - STATE(556), 1, + STATE(553), 1, aux_sym__block_quote_prefix_repeat1, - STATE(948), 1, + STATE(966), 1, sym__block_quote_prefix, - [11073] = 1, - ACTIONS(1330), 6, - anon_sym_RBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - sym__whitespace1, - anon_sym_PERCENT, - sym__id, - [11082] = 4, - ACTIONS(89), 1, - sym__table_header_begin, - ACTIONS(91), 1, - sym__table_separator_begin, - ACTIONS(93), 1, - sym__table_row_begin, - STATE(83), 3, - sym_table_header, - sym_table_separator, - sym_table_row, - [11097] = 1, - ACTIONS(1332), 6, - anon_sym_RBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - sym__whitespace1, - anon_sym_PERCENT, - sym__id, - [11106] = 6, - ACTIONS(1220), 1, + [10999] = 6, + ACTIONS(1238), 1, sym__list_item_continuation, - ACTIONS(1224), 1, + ACTIONS(1242), 1, sym__block_quote_continuation, - ACTIONS(1334), 1, + ACTIONS(1324), 1, sym__list_item_end, - STATE(408), 1, + STATE(405), 1, aux_sym_list_item_content_repeat1, - STATE(556), 1, + STATE(553), 1, aux_sym__block_quote_prefix_repeat1, - STATE(948), 1, + STATE(966), 1, sym__block_quote_prefix, - [11125] = 6, - ACTIONS(1224), 1, + [11018] = 6, + ACTIONS(1264), 1, sym__block_quote_continuation, - ACTIONS(1336), 1, + ACTIONS(1266), 1, + sym__footnote_continuation, + ACTIONS(1326), 1, + sym__footnote_end, + STATE(402), 1, + aux_sym_footnote_content_repeat1, + STATE(555), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(994), 1, + sym__block_quote_prefix, + [11037] = 6, + ACTIONS(1238), 1, sym__list_item_continuation, - ACTIONS(1338), 1, + ACTIONS(1242), 1, + sym__block_quote_continuation, + ACTIONS(1328), 1, sym__list_item_end, - STATE(366), 1, - aux_sym__list_item_definition_repeat1, - STATE(556), 1, + STATE(405), 1, + aux_sym_list_item_content_repeat1, + STATE(553), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1013), 1, + STATE(966), 1, sym__block_quote_prefix, - [11144] = 1, - ACTIONS(1340), 6, - anon_sym_RBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - sym__whitespace1, - anon_sym_PERCENT, - sym__id, - [11153] = 6, - ACTIONS(1342), 1, + [11056] = 6, + ACTIONS(1238), 1, + sym__list_item_continuation, + ACTIONS(1242), 1, sym__block_quote_continuation, - ACTIONS(1345), 1, - sym__footnote_continuation, - ACTIONS(1348), 1, - sym__footnote_end, - STATE(404), 1, - aux_sym_footnote_content_repeat1, - STATE(558), 1, + ACTIONS(1330), 1, + sym__list_item_end, + STATE(398), 1, + aux_sym_list_item_content_repeat1, + STATE(553), 1, aux_sym__block_quote_prefix_repeat1, - STATE(995), 1, + STATE(966), 1, sym__block_quote_prefix, - [11172] = 1, - ACTIONS(1350), 6, - anon_sym_RBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - sym__whitespace1, - anon_sym_PERCENT, - sym__id, - [11181] = 6, - ACTIONS(1220), 1, + [11075] = 6, + ACTIONS(1238), 1, sym__list_item_continuation, - ACTIONS(1224), 1, + ACTIONS(1242), 1, sym__block_quote_continuation, - ACTIONS(1352), 1, + ACTIONS(1332), 1, sym__list_item_end, - STATE(397), 1, + STATE(405), 1, aux_sym_list_item_content_repeat1, - STATE(556), 1, + STATE(553), 1, aux_sym__block_quote_prefix_repeat1, - STATE(948), 1, + STATE(966), 1, sym__block_quote_prefix, - [11200] = 4, - ACTIONS(378), 1, - sym__table_header_begin, - ACTIONS(380), 1, - sym__table_separator_begin, - ACTIONS(382), 1, - sym__table_row_begin, - STATE(325), 3, - sym_table_header, - sym_table_separator, - sym_table_row, - [11215] = 6, - ACTIONS(1220), 1, + [11094] = 6, + ACTIONS(1238), 1, sym__list_item_continuation, - ACTIONS(1224), 1, + ACTIONS(1242), 1, sym__block_quote_continuation, - ACTIONS(1354), 1, + ACTIONS(1334), 1, sym__list_item_end, - STATE(397), 1, + STATE(405), 1, aux_sym_list_item_content_repeat1, - STATE(556), 1, + STATE(553), 1, aux_sym__block_quote_prefix_repeat1, - STATE(948), 1, + STATE(966), 1, sym__block_quote_prefix, - [11234] = 1, - ACTIONS(1356), 6, - anon_sym_RBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - sym__whitespace1, - anon_sym_PERCENT, - sym__id, - [11243] = 6, - ACTIONS(1226), 1, + [11113] = 6, + ACTIONS(1264), 1, sym__block_quote_continuation, - ACTIONS(1228), 1, + ACTIONS(1266), 1, sym__footnote_continuation, - ACTIONS(1358), 1, + ACTIONS(1336), 1, sym__footnote_end, - STATE(414), 1, + STATE(406), 1, aux_sym_footnote_content_repeat1, - STATE(558), 1, + STATE(555), 1, aux_sym__block_quote_prefix_repeat1, - STATE(995), 1, + STATE(994), 1, sym__block_quote_prefix, - [11262] = 6, - ACTIONS(1226), 1, + [11132] = 6, + ACTIONS(1264), 1, sym__block_quote_continuation, - ACTIONS(1228), 1, + ACTIONS(1266), 1, sym__footnote_continuation, - ACTIONS(1360), 1, + ACTIONS(1338), 1, sym__footnote_end, - STATE(412), 1, + STATE(404), 1, aux_sym_footnote_content_repeat1, - STATE(558), 1, + STATE(555), 1, aux_sym__block_quote_prefix_repeat1, - STATE(995), 1, + STATE(994), 1, sym__block_quote_prefix, - [11281] = 6, - ACTIONS(1226), 1, + [11151] = 6, + ACTIONS(1264), 1, sym__block_quote_continuation, - ACTIONS(1228), 1, + ACTIONS(1266), 1, sym__footnote_continuation, - ACTIONS(1362), 1, + ACTIONS(1340), 1, sym__footnote_end, - STATE(404), 1, + STATE(406), 1, aux_sym_footnote_content_repeat1, - STATE(558), 1, + STATE(555), 1, aux_sym__block_quote_prefix_repeat1, - STATE(995), 1, + STATE(994), 1, sym__block_quote_prefix, - [11300] = 6, - ACTIONS(1224), 1, - sym__block_quote_continuation, - ACTIONS(1336), 1, + [11170] = 6, + ACTIONS(1342), 1, sym__list_item_continuation, - ACTIONS(1364), 1, + ACTIONS(1345), 1, sym__list_item_end, - STATE(402), 1, - aux_sym__list_item_definition_repeat1, - STATE(556), 1, + ACTIONS(1347), 1, + sym__block_quote_continuation, + STATE(405), 1, + aux_sym_list_item_content_repeat1, + STATE(553), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1013), 1, + STATE(966), 1, sym__block_quote_prefix, - [11319] = 6, - ACTIONS(1226), 1, + [11189] = 6, + ACTIONS(1350), 1, sym__block_quote_continuation, - ACTIONS(1228), 1, + ACTIONS(1353), 1, sym__footnote_continuation, - ACTIONS(1366), 1, + ACTIONS(1356), 1, sym__footnote_end, - STATE(404), 1, + STATE(406), 1, aux_sym_footnote_content_repeat1, - STATE(558), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(995), 1, - sym__block_quote_prefix, - [11338] = 1, - ACTIONS(1368), 6, - anon_sym_RBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - sym__whitespace1, - anon_sym_PERCENT, - sym__id, - [11347] = 6, - ACTIONS(1220), 1, - sym__list_item_continuation, - ACTIONS(1224), 1, - sym__block_quote_continuation, - ACTIONS(1370), 1, - sym__list_item_end, - STATE(397), 1, - aux_sym_list_item_content_repeat1, - STATE(556), 1, + STATE(555), 1, aux_sym__block_quote_prefix_repeat1, - STATE(948), 1, + STATE(994), 1, sym__block_quote_prefix, - [11366] = 4, - ACTIONS(1372), 1, - sym__block_close, - ACTIONS(1374), 1, + [11208] = 6, + ACTIONS(1264), 1, sym__block_quote_continuation, - STATE(418), 1, - aux_sym__block_quote_content_repeat1, - STATE(65), 2, - sym__block_quote_prefix, + ACTIONS(1266), 1, + sym__footnote_continuation, + ACTIONS(1358), 1, + sym__footnote_end, + STATE(367), 1, + aux_sym_footnote_content_repeat1, + STATE(555), 1, aux_sym__block_quote_prefix_repeat1, - [11380] = 4, - ACTIONS(1376), 1, - sym__block_close, - ACTIONS(1378), 1, - sym__block_quote_continuation, - STATE(418), 1, - aux_sym__block_quote_content_repeat1, - STATE(65), 2, + STATE(994), 1, sym__block_quote_prefix, - aux_sym__block_quote_prefix_repeat1, - [11394] = 4, - ACTIONS(1374), 1, + [11227] = 4, + ACTIONS(480), 1, + sym__table_header_begin, + ACTIONS(482), 1, + sym__table_separator_begin, + ACTIONS(484), 1, + sym__table_row_begin, + STATE(343), 3, + sym_table_header, + sym_table_separator, + sym_table_row, + [11242] = 4, + ACTIONS(67), 1, + sym__table_header_begin, + ACTIONS(69), 1, + sym__table_separator_begin, + ACTIONS(71), 1, + sym__table_row_begin, + STATE(81), 3, + sym_table_header, + sym_table_separator, + sym_table_row, + [11257] = 6, + ACTIONS(1264), 1, + sym__block_quote_continuation, + ACTIONS(1266), 1, + sym__footnote_continuation, + ACTIONS(1360), 1, + sym__footnote_end, + STATE(412), 1, + aux_sym_footnote_content_repeat1, + STATE(555), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(994), 1, + sym__block_quote_prefix, + [11276] = 6, + ACTIONS(1242), 1, + sym__block_quote_continuation, + ACTIONS(1246), 1, + sym__list_item_continuation, + ACTIONS(1362), 1, + sym__list_item_end, + STATE(361), 1, + aux_sym__list_item_definition_repeat1, + STATE(553), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(1085), 1, + sym__block_quote_prefix, + [11295] = 6, + ACTIONS(1264), 1, + sym__block_quote_continuation, + ACTIONS(1266), 1, + sym__footnote_continuation, + ACTIONS(1364), 1, + sym__footnote_end, + STATE(406), 1, + aux_sym_footnote_content_repeat1, + STATE(555), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(994), 1, + sym__block_quote_prefix, + [11314] = 6, + ACTIONS(1238), 1, + sym__list_item_continuation, + ACTIONS(1242), 1, + sym__block_quote_continuation, + ACTIONS(1366), 1, + sym__list_item_end, + STATE(401), 1, + aux_sym_list_item_content_repeat1, + STATE(553), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(966), 1, + sym__block_quote_prefix, + [11333] = 6, + ACTIONS(1238), 1, + sym__list_item_continuation, + ACTIONS(1242), 1, + sym__block_quote_continuation, + ACTIONS(1368), 1, + sym__list_item_end, + STATE(364), 1, + aux_sym_list_item_content_repeat1, + STATE(553), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(966), 1, + sym__block_quote_prefix, + [11352] = 4, + ACTIONS(446), 1, + sym__table_header_begin, + ACTIONS(448), 1, + sym__table_separator_begin, + ACTIONS(450), 1, + sym__table_row_begin, + STATE(309), 3, + sym_table_header, + sym_table_separator, + sym_table_row, + [11367] = 6, + ACTIONS(1238), 1, + sym__list_item_continuation, + ACTIONS(1242), 1, sym__block_quote_continuation, - ACTIONS(1381), 1, + ACTIONS(1370), 1, + sym__list_item_end, + STATE(386), 1, + aux_sym_list_item_content_repeat1, + STATE(553), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(966), 1, + sym__block_quote_prefix, + [11386] = 4, + ACTIONS(1372), 1, sym__block_close, - STATE(417), 1, + ACTIONS(1374), 1, + sym__block_quote_continuation, + STATE(420), 1, aux_sym__block_quote_content_repeat1, STATE(65), 2, sym__block_quote_prefix, aux_sym__block_quote_prefix_repeat1, - [11408] = 3, + [11400] = 3, ACTIONS(919), 1, sym__table_caption_begin, - STATE(646), 1, + STATE(643), 1, sym_table_caption, ACTIONS(538), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [11420] = 3, + [11412] = 4, + ACTIONS(1374), 1, + sym__block_quote_continuation, + ACTIONS(1376), 1, + sym__block_close, + STATE(417), 1, + aux_sym__block_quote_content_repeat1, + STATE(65), 2, + sym__block_quote_prefix, + aux_sym__block_quote_prefix_repeat1, + [11426] = 4, + ACTIONS(1378), 1, + sym__block_close, + ACTIONS(1380), 1, + sym__block_quote_continuation, + STATE(420), 1, + aux_sym__block_quote_content_repeat1, + STATE(65), 2, + sym__block_quote_prefix, + aux_sym__block_quote_prefix_repeat1, + [11440] = 3, ACTIONS(503), 1, sym__block_quote_continuation, STATE(422), 1, @@ -22955,7 +22973,7 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [11432] = 3, + [11452] = 3, ACTIONS(1383), 1, sym__block_quote_continuation, STATE(422), 1, @@ -22964,1404 +22982,1388 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [11444] = 4, + [11464] = 4, ACTIONS(45), 1, sym_list_marker_upper_alpha_paren, ACTIONS(1386), 1, sym__block_close, - STATE(540), 1, + STATE(538), 1, aux_sym__list_upper_alpha_paren_repeat1, - STATE(783), 1, + STATE(764), 1, sym__list_item_upper_alpha_paren, - [11457] = 4, - ACTIONS(53), 1, - sym_list_marker_lower_alpha_parens, + [11477] = 4, ACTIONS(1388), 1, sym__block_close, - STATE(536), 1, - aux_sym__list_lower_alpha_parens_repeat1, - STATE(774), 1, - sym__list_item_lower_alpha_parens, - [11470] = 4, ACTIONS(1390), 1, - sym__block_close, - ACTIONS(1392), 1, - sym_list_marker_upper_alpha_parens, - STATE(425), 1, - aux_sym__list_upper_alpha_parens_repeat1, - STATE(786), 1, - sym__list_item_upper_alpha_parens, - [11483] = 4, - ACTIONS(35), 1, - sym_list_marker_upper_alpha_period, - ACTIONS(1395), 1, - sym__block_close, - STATE(538), 1, - aux_sym__list_upper_alpha_period_repeat1, - STATE(782), 1, - sym__list_item_upper_alpha_period, - [11496] = 4, - ACTIONS(1397), 1, - sym__block_close, - ACTIONS(1399), 1, sym_list_marker_lower_roman_period, - STATE(427), 1, + STATE(424), 1, aux_sym__list_lower_roman_period_repeat1, - STATE(787), 1, + STATE(768), 1, sym__list_item_lower_roman_period, - [11509] = 4, - ACTIONS(1402), 1, + [11490] = 4, + ACTIONS(1393), 1, sym__block_close, - ACTIONS(1404), 1, + ACTIONS(1395), 1, sym_list_marker_lower_roman_paren, - STATE(428), 1, + STATE(425), 1, aux_sym__list_lower_roman_paren_repeat1, - STATE(802), 1, + STATE(769), 1, sym__list_item_lower_roman_paren, - [11522] = 4, + [11503] = 4, ACTIONS(55), 1, sym_list_marker_upper_alpha_parens, - ACTIONS(1407), 1, + ACTIONS(1398), 1, sym__block_close, - STATE(425), 1, + STATE(529), 1, aux_sym__list_upper_alpha_parens_repeat1, - STATE(786), 1, + STATE(765), 1, sym__list_item_upper_alpha_parens, - [11535] = 4, - ACTIONS(1409), 1, + [11516] = 4, + ACTIONS(1400), 1, sym__block_close, - ACTIONS(1411), 1, + ACTIONS(1402), 1, sym_list_marker_lower_roman_parens, - STATE(430), 1, + STATE(427), 1, aux_sym__list_lower_roman_parens_repeat1, - STATE(803), 1, + STATE(786), 1, sym__list_item_lower_roman_parens, - [11548] = 4, + [11529] = 4, ACTIONS(37), 1, sym_list_marker_lower_roman_period, - ACTIONS(1414), 1, + ACTIONS(1405), 1, sym__block_close, - STATE(427), 1, + STATE(424), 1, aux_sym__list_lower_roman_period_repeat1, - STATE(787), 1, + STATE(768), 1, sym__list_item_lower_roman_period, - [11561] = 4, - ACTIONS(1416), 1, + [11542] = 4, + ACTIONS(1407), 1, sym__block_close, - ACTIONS(1418), 1, + ACTIONS(1409), 1, sym_list_marker_upper_roman_period, - STATE(432), 1, + STATE(429), 1, aux_sym__list_upper_roman_period_repeat1, - STATE(808), 1, + STATE(791), 1, sym__list_item_upper_roman_period, - [11574] = 4, + [11555] = 4, ACTIONS(47), 1, sym_list_marker_lower_roman_paren, - ACTIONS(1421), 1, + ACTIONS(1412), 1, sym__block_close, - STATE(428), 1, + STATE(425), 1, aux_sym__list_lower_roman_paren_repeat1, - STATE(802), 1, + STATE(769), 1, sym__list_item_lower_roman_paren, - [11587] = 4, - ACTIONS(1423), 1, + [11568] = 4, + ACTIONS(1414), 1, sym__block_close, - ACTIONS(1425), 1, + ACTIONS(1416), 1, sym_list_marker_upper_roman_paren, - STATE(434), 1, + STATE(431), 1, aux_sym__list_upper_roman_paren_repeat1, - STATE(814), 1, + STATE(793), 1, sym__list_item_upper_roman_paren, - [11600] = 4, + [11581] = 4, ACTIONS(57), 1, sym_list_marker_lower_roman_parens, - ACTIONS(1428), 1, + ACTIONS(1419), 1, sym__block_close, - STATE(430), 1, + STATE(427), 1, aux_sym__list_lower_roman_parens_repeat1, - STATE(803), 1, + STATE(786), 1, sym__list_item_lower_roman_parens, - [11613] = 4, - ACTIONS(1430), 1, + [11594] = 4, + ACTIONS(1421), 1, sym__block_close, - ACTIONS(1432), 1, + ACTIONS(1423), 1, sym_list_marker_upper_roman_parens, - STATE(436), 1, + STATE(433), 1, aux_sym__list_upper_roman_parens_repeat1, - STATE(819), 1, + STATE(799), 1, sym__list_item_upper_roman_parens, - [11626] = 4, + [11607] = 4, ACTIONS(39), 1, sym_list_marker_upper_roman_period, - ACTIONS(1435), 1, + ACTIONS(1426), 1, sym__block_close, - STATE(432), 1, + STATE(429), 1, aux_sym__list_upper_roman_period_repeat1, - STATE(808), 1, + STATE(791), 1, sym__list_item_upper_roman_period, - [11639] = 4, + [11620] = 4, ACTIONS(49), 1, sym_list_marker_upper_roman_paren, - ACTIONS(1437), 1, + ACTIONS(1428), 1, sym__block_close, - STATE(434), 1, + STATE(431), 1, aux_sym__list_upper_roman_paren_repeat1, - STATE(814), 1, + STATE(793), 1, sym__list_item_upper_roman_paren, - [11652] = 4, + [11633] = 4, ACTIONS(59), 1, sym_list_marker_upper_roman_parens, - ACTIONS(1439), 1, + ACTIONS(1430), 1, sym__block_close, - STATE(436), 1, + STATE(433), 1, aux_sym__list_upper_roman_parens_repeat1, - STATE(819), 1, + STATE(799), 1, sym__list_item_upper_roman_parens, - [11665] = 3, + [11646] = 3, ACTIONS(925), 1, sym__table_caption_begin, - STATE(826), 1, + STATE(705), 1, sym_table_caption, ACTIONS(538), 2, sym__block_close, sym__block_quote_continuation, - [11676] = 3, - ACTIONS(1441), 1, + [11657] = 3, + ACTIONS(1432), 1, aux_sym__line_token1, - STATE(1009), 1, + STATE(988), 1, sym_frontmatter_content, - STATE(445), 2, + STATE(442), 2, sym__line, aux_sym_frontmatter_content_repeat1, - [11687] = 4, - ACTIONS(1443), 1, + [11668] = 4, + ACTIONS(1434), 1, anon_sym_EQ, - ACTIONS(1445), 1, + ACTIONS(1436), 1, sym_language, - ACTIONS(1447), 1, + ACTIONS(1438), 1, sym__newline, - STATE(933), 1, + STATE(944), 1, sym_raw_block_info, - [11700] = 3, - ACTIONS(1449), 1, + [11681] = 3, + ACTIONS(1440), 1, anon_sym_PERCENT, - STATE(475), 1, + STATE(472), 1, aux_sym_comment_repeat1, - ACTIONS(1451), 2, + ACTIONS(1442), 2, sym_backslash_escape, aux_sym_comment_token1, - [11711] = 2, - ACTIONS(1453), 1, + [11692] = 2, + ACTIONS(1444), 1, sym__eof_or_newline, ACTIONS(596), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [11720] = 3, - ACTIONS(1441), 1, + [11701] = 3, + ACTIONS(1432), 1, aux_sym__line_token1, - ACTIONS(1455), 1, + ACTIONS(1446), 1, sym_frontmatter_marker, - STATE(477), 2, + STATE(474), 2, sym__line, aux_sym_frontmatter_content_repeat1, - [11731] = 3, - ACTIONS(1441), 1, + [11712] = 3, + ACTIONS(1432), 1, aux_sym__line_token1, - STATE(907), 1, + STATE(938), 1, sym_frontmatter_content, - STATE(445), 2, + STATE(442), 2, sym__line, aux_sym_frontmatter_content_repeat1, - [11742] = 2, - ACTIONS(1457), 1, + [11723] = 2, + ACTIONS(1448), 1, sym__div_end, ACTIONS(546), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [11751] = 2, - ACTIONS(1459), 1, + [11732] = 2, + ACTIONS(1450), 1, sym__code_block_end, ACTIONS(588), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [11760] = 2, - ACTIONS(1461), 1, + [11741] = 2, + ACTIONS(1452), 1, sym__div_end, ACTIONS(624), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [11769] = 2, - ACTIONS(1463), 1, + [11750] = 2, + ACTIONS(1454), 1, sym__div_end, ACTIONS(630), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [11778] = 2, - ACTIONS(1465), 1, + [11759] = 2, + ACTIONS(1456), 1, sym__code_block_end, ACTIONS(636), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [11787] = 2, - ACTIONS(1467), 1, + [11768] = 2, + ACTIONS(1458), 1, sym__code_block_end, ACTIONS(642), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [11796] = 2, - ACTIONS(1469), 1, + [11777] = 2, + ACTIONS(1460), 1, sym__code_block_end, ACTIONS(608), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [11805] = 2, - ACTIONS(1471), 1, + [11786] = 2, + ACTIONS(1462), 1, sym__div_end, ACTIONS(542), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [11814] = 2, - ACTIONS(1473), 1, + [11795] = 2, + ACTIONS(1464), 1, sym__code_block_end, ACTIONS(566), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [11823] = 2, - ACTIONS(1475), 1, + [11804] = 2, + ACTIONS(1466), 1, sym__code_block_end, ACTIONS(572), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [11832] = 2, - ACTIONS(1477), 1, + [11813] = 2, + ACTIONS(1468), 1, sym__eof_or_newline, ACTIONS(578), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [11841] = 1, + [11822] = 1, ACTIONS(462), 4, sym__block_quote_continuation, sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [11848] = 4, + [11829] = 4, ACTIONS(29), 1, sym_list_marker_definition, - ACTIONS(1479), 1, + ACTIONS(1470), 1, sym__block_close, - STATE(526), 1, + STATE(523), 1, aux_sym__list_definition_repeat1, - STATE(740), 1, + STATE(694), 1, sym__list_item_definition, - [11861] = 4, + [11842] = 4, ACTIONS(31), 1, sym_list_marker_decimal_period, - ACTIONS(1481), 1, + ACTIONS(1472), 1, sym__block_close, - STATE(527), 1, + STATE(524), 1, aux_sym__list_decimal_period_repeat1, - STATE(743), 1, + STATE(714), 1, sym__list_item_decimal_period, - [11874] = 4, + [11855] = 4, ACTIONS(41), 1, sym_list_marker_decimal_paren, - ACTIONS(1483), 1, + ACTIONS(1474), 1, sym__block_close, - STATE(528), 1, + STATE(525), 1, aux_sym__list_decimal_paren_repeat1, - STATE(748), 1, + STATE(719), 1, sym__list_item_decimal_paren, - [11887] = 4, + [11868] = 4, ACTIONS(51), 1, sym_list_marker_decimal_parens, - ACTIONS(1485), 1, + ACTIONS(1476), 1, sym__block_close, - STATE(530), 1, + STATE(527), 1, aux_sym__list_decimal_parens_repeat1, - STATE(768), 1, + STATE(746), 1, sym__list_item_decimal_parens, - [11900] = 4, + [11881] = 4, ACTIONS(33), 1, sym_list_marker_lower_alpha_period, - ACTIONS(1487), 1, + ACTIONS(1478), 1, sym__block_close, - STATE(532), 1, + STATE(530), 1, aux_sym__list_lower_alpha_period_repeat1, - STATE(769), 1, + STATE(748), 1, sym__list_item_lower_alpha_period, - [11913] = 4, + [11894] = 4, ACTIONS(43), 1, sym_list_marker_lower_alpha_paren, - ACTIONS(1489), 1, + ACTIONS(1480), 1, sym__block_close, - STATE(534), 1, + STATE(532), 1, aux_sym__list_lower_alpha_paren_repeat1, - STATE(773), 1, + STATE(749), 1, sym__list_item_lower_alpha_paren, - [11926] = 4, + [11907] = 4, ACTIONS(53), 1, sym_list_marker_lower_alpha_parens, - ACTIONS(1491), 1, + ACTIONS(1482), 1, sym__block_close, - STATE(536), 1, + STATE(534), 1, aux_sym__list_lower_alpha_parens_repeat1, - STATE(774), 1, + STATE(753), 1, sym__list_item_lower_alpha_parens, - [11939] = 4, + [11920] = 4, ACTIONS(35), 1, sym_list_marker_upper_alpha_period, - ACTIONS(1493), 1, + ACTIONS(1484), 1, sym__block_close, - STATE(538), 1, + STATE(536), 1, aux_sym__list_upper_alpha_period_repeat1, - STATE(782), 1, + STATE(761), 1, sym__list_item_upper_alpha_period, - [11952] = 4, + [11933] = 4, ACTIONS(45), 1, sym_list_marker_upper_alpha_paren, - ACTIONS(1495), 1, + ACTIONS(1486), 1, sym__block_close, - STATE(540), 1, + STATE(538), 1, aux_sym__list_upper_alpha_paren_repeat1, - STATE(783), 1, + STATE(764), 1, sym__list_item_upper_alpha_paren, - [11965] = 4, + [11946] = 4, ACTIONS(55), 1, sym_list_marker_upper_alpha_parens, - ACTIONS(1497), 1, + ACTIONS(1488), 1, sym__block_close, - STATE(425), 1, + STATE(529), 1, aux_sym__list_upper_alpha_parens_repeat1, - STATE(786), 1, + STATE(765), 1, sym__list_item_upper_alpha_parens, - [11978] = 4, + [11959] = 4, ACTIONS(37), 1, sym_list_marker_lower_roman_period, - ACTIONS(1499), 1, + ACTIONS(1490), 1, sym__block_close, - STATE(427), 1, + STATE(424), 1, aux_sym__list_lower_roman_period_repeat1, - STATE(787), 1, + STATE(768), 1, sym__list_item_lower_roman_period, - [11991] = 4, + [11972] = 4, ACTIONS(47), 1, sym_list_marker_lower_roman_paren, - ACTIONS(1501), 1, + ACTIONS(1492), 1, sym__block_close, - STATE(428), 1, + STATE(425), 1, aux_sym__list_lower_roman_paren_repeat1, - STATE(802), 1, + STATE(769), 1, sym__list_item_lower_roman_paren, - [12004] = 4, + [11985] = 4, ACTIONS(57), 1, sym_list_marker_lower_roman_parens, - ACTIONS(1503), 1, + ACTIONS(1494), 1, sym__block_close, - STATE(430), 1, + STATE(427), 1, aux_sym__list_lower_roman_parens_repeat1, - STATE(803), 1, + STATE(786), 1, sym__list_item_lower_roman_parens, - [12017] = 4, + [11998] = 4, ACTIONS(39), 1, sym_list_marker_upper_roman_period, - ACTIONS(1505), 1, + ACTIONS(1496), 1, sym__block_close, - STATE(432), 1, + STATE(429), 1, aux_sym__list_upper_roman_period_repeat1, - STATE(808), 1, + STATE(791), 1, sym__list_item_upper_roman_period, - [12030] = 4, + [12011] = 4, ACTIONS(49), 1, sym_list_marker_upper_roman_paren, - ACTIONS(1507), 1, + ACTIONS(1498), 1, sym__block_close, - STATE(434), 1, + STATE(431), 1, aux_sym__list_upper_roman_paren_repeat1, - STATE(814), 1, + STATE(793), 1, sym__list_item_upper_roman_paren, - [12043] = 4, + [12024] = 4, ACTIONS(59), 1, sym_list_marker_upper_roman_parens, - ACTIONS(1509), 1, + ACTIONS(1500), 1, sym__block_close, - STATE(436), 1, + STATE(433), 1, aux_sym__list_upper_roman_parens_repeat1, - STATE(819), 1, + STATE(799), 1, sym__list_item_upper_roman_parens, - [12056] = 3, - ACTIONS(1511), 1, + [12037] = 3, + ACTIONS(1502), 1, anon_sym_PERCENT, - STATE(475), 1, + STATE(472), 1, aux_sym_comment_repeat1, - ACTIONS(1513), 2, + ACTIONS(1504), 2, sym_backslash_escape, aux_sym_comment_token1, - [12067] = 3, - ACTIONS(1516), 1, + [12048] = 3, + ACTIONS(1507), 1, anon_sym_PERCENT, - STATE(443), 1, + STATE(440), 1, aux_sym_comment_repeat1, - ACTIONS(1451), 2, + ACTIONS(1442), 2, sym_backslash_escape, aux_sym_comment_token1, - [12078] = 3, - ACTIONS(1518), 1, + [12059] = 3, + ACTIONS(1509), 1, aux_sym__line_token1, - ACTIONS(1521), 1, + ACTIONS(1512), 1, sym_frontmatter_marker, - STATE(477), 2, + STATE(474), 2, sym__line, aux_sym_frontmatter_content_repeat1, - [12089] = 4, + [12070] = 4, ACTIONS(29), 1, sym_list_marker_definition, - ACTIONS(1523), 1, + ACTIONS(1514), 1, sym__block_close, - STATE(526), 1, + STATE(523), 1, aux_sym__list_definition_repeat1, - STATE(740), 1, + STATE(694), 1, sym__list_item_definition, - [12102] = 4, + [12083] = 4, ACTIONS(31), 1, sym_list_marker_decimal_period, - ACTIONS(1525), 1, + ACTIONS(1516), 1, sym__block_close, - STATE(527), 1, + STATE(524), 1, aux_sym__list_decimal_period_repeat1, - STATE(743), 1, + STATE(714), 1, sym__list_item_decimal_period, - [12115] = 4, + [12096] = 4, ACTIONS(41), 1, sym_list_marker_decimal_paren, - ACTIONS(1527), 1, + ACTIONS(1518), 1, sym__block_close, - STATE(528), 1, + STATE(525), 1, aux_sym__list_decimal_paren_repeat1, - STATE(748), 1, + STATE(719), 1, sym__list_item_decimal_paren, - [12128] = 4, + [12109] = 4, ACTIONS(51), 1, sym_list_marker_decimal_parens, - ACTIONS(1529), 1, + ACTIONS(1520), 1, sym__block_close, - STATE(530), 1, + STATE(527), 1, aux_sym__list_decimal_parens_repeat1, - STATE(768), 1, + STATE(746), 1, sym__list_item_decimal_parens, - [12141] = 4, + [12122] = 4, ACTIONS(33), 1, sym_list_marker_lower_alpha_period, - ACTIONS(1531), 1, + ACTIONS(1522), 1, sym__block_close, - STATE(532), 1, + STATE(530), 1, aux_sym__list_lower_alpha_period_repeat1, - STATE(769), 1, + STATE(748), 1, sym__list_item_lower_alpha_period, - [12154] = 4, + [12135] = 4, ACTIONS(43), 1, sym_list_marker_lower_alpha_paren, - ACTIONS(1533), 1, + ACTIONS(1524), 1, sym__block_close, - STATE(534), 1, + STATE(532), 1, aux_sym__list_lower_alpha_paren_repeat1, - STATE(773), 1, + STATE(749), 1, sym__list_item_lower_alpha_paren, - [12167] = 4, + [12148] = 4, ACTIONS(53), 1, sym_list_marker_lower_alpha_parens, - ACTIONS(1535), 1, + ACTIONS(1526), 1, sym__block_close, - STATE(536), 1, + STATE(534), 1, aux_sym__list_lower_alpha_parens_repeat1, - STATE(774), 1, + STATE(753), 1, sym__list_item_lower_alpha_parens, - [12180] = 4, + [12161] = 4, ACTIONS(35), 1, sym_list_marker_upper_alpha_period, - ACTIONS(1537), 1, + ACTIONS(1528), 1, sym__block_close, - STATE(538), 1, + STATE(536), 1, aux_sym__list_upper_alpha_period_repeat1, - STATE(782), 1, + STATE(761), 1, sym__list_item_upper_alpha_period, - [12193] = 4, + [12174] = 4, ACTIONS(45), 1, sym_list_marker_upper_alpha_paren, - ACTIONS(1539), 1, + ACTIONS(1530), 1, sym__block_close, - STATE(540), 1, + STATE(538), 1, aux_sym__list_upper_alpha_paren_repeat1, - STATE(783), 1, + STATE(764), 1, sym__list_item_upper_alpha_paren, - [12206] = 4, + [12187] = 4, ACTIONS(55), 1, sym_list_marker_upper_alpha_parens, - ACTIONS(1541), 1, + ACTIONS(1532), 1, sym__block_close, - STATE(425), 1, + STATE(529), 1, aux_sym__list_upper_alpha_parens_repeat1, - STATE(786), 1, + STATE(765), 1, sym__list_item_upper_alpha_parens, - [12219] = 4, + [12200] = 4, ACTIONS(37), 1, sym_list_marker_lower_roman_period, - ACTIONS(1543), 1, + ACTIONS(1534), 1, sym__block_close, - STATE(427), 1, + STATE(424), 1, aux_sym__list_lower_roman_period_repeat1, - STATE(787), 1, + STATE(768), 1, sym__list_item_lower_roman_period, - [12232] = 4, + [12213] = 4, ACTIONS(47), 1, sym_list_marker_lower_roman_paren, - ACTIONS(1545), 1, + ACTIONS(1536), 1, sym__block_close, - STATE(428), 1, + STATE(425), 1, aux_sym__list_lower_roman_paren_repeat1, - STATE(802), 1, + STATE(769), 1, sym__list_item_lower_roman_paren, - [12245] = 4, - ACTIONS(57), 1, - sym_list_marker_lower_roman_parens, - ACTIONS(1547), 1, + [12226] = 4, + ACTIONS(35), 1, + sym_list_marker_upper_alpha_period, + ACTIONS(1538), 1, sym__block_close, - STATE(430), 1, - aux_sym__list_lower_roman_parens_repeat1, - STATE(803), 1, - sym__list_item_lower_roman_parens, - [12258] = 4, + STATE(536), 1, + aux_sym__list_upper_alpha_period_repeat1, + STATE(761), 1, + sym__list_item_upper_alpha_period, + [12239] = 4, ACTIONS(39), 1, sym_list_marker_upper_roman_period, - ACTIONS(1549), 1, + ACTIONS(1540), 1, sym__block_close, - STATE(432), 1, + STATE(429), 1, aux_sym__list_upper_roman_period_repeat1, - STATE(808), 1, + STATE(791), 1, sym__list_item_upper_roman_period, - [12271] = 4, + [12252] = 4, ACTIONS(49), 1, sym_list_marker_upper_roman_paren, - ACTIONS(1551), 1, + ACTIONS(1542), 1, sym__block_close, - STATE(434), 1, + STATE(431), 1, aux_sym__list_upper_roman_paren_repeat1, - STATE(814), 1, + STATE(793), 1, sym__list_item_upper_roman_paren, - [12284] = 4, + [12265] = 4, ACTIONS(59), 1, sym_list_marker_upper_roman_parens, - ACTIONS(1553), 1, + ACTIONS(1544), 1, sym__block_close, - STATE(436), 1, + STATE(433), 1, aux_sym__list_upper_roman_parens_repeat1, - STATE(819), 1, + STATE(799), 1, sym__list_item_upper_roman_parens, - [12297] = 4, + [12278] = 4, ACTIONS(29), 1, sym_list_marker_definition, - ACTIONS(1555), 1, + ACTIONS(1546), 1, sym__block_close, - STATE(526), 1, + STATE(523), 1, aux_sym__list_definition_repeat1, - STATE(740), 1, + STATE(694), 1, sym__list_item_definition, - [12310] = 4, + [12291] = 4, ACTIONS(31), 1, sym_list_marker_decimal_period, - ACTIONS(1557), 1, + ACTIONS(1548), 1, sym__block_close, - STATE(527), 1, + STATE(524), 1, aux_sym__list_decimal_period_repeat1, - STATE(743), 1, + STATE(714), 1, sym__list_item_decimal_period, - [12323] = 4, + [12304] = 4, ACTIONS(41), 1, sym_list_marker_decimal_paren, - ACTIONS(1559), 1, + ACTIONS(1550), 1, sym__block_close, - STATE(528), 1, + STATE(525), 1, aux_sym__list_decimal_paren_repeat1, - STATE(748), 1, + STATE(719), 1, sym__list_item_decimal_paren, - [12336] = 4, + [12317] = 4, ACTIONS(51), 1, sym_list_marker_decimal_parens, - ACTIONS(1561), 1, + ACTIONS(1552), 1, sym__block_close, - STATE(530), 1, + STATE(527), 1, aux_sym__list_decimal_parens_repeat1, - STATE(768), 1, + STATE(746), 1, sym__list_item_decimal_parens, - [12349] = 4, + [12330] = 4, ACTIONS(33), 1, sym_list_marker_lower_alpha_period, - ACTIONS(1563), 1, + ACTIONS(1554), 1, sym__block_close, - STATE(532), 1, + STATE(530), 1, aux_sym__list_lower_alpha_period_repeat1, - STATE(769), 1, + STATE(748), 1, sym__list_item_lower_alpha_period, - [12362] = 4, + [12343] = 4, ACTIONS(43), 1, sym_list_marker_lower_alpha_paren, - ACTIONS(1565), 1, + ACTIONS(1556), 1, sym__block_close, - STATE(534), 1, + STATE(532), 1, aux_sym__list_lower_alpha_paren_repeat1, - STATE(773), 1, + STATE(749), 1, sym__list_item_lower_alpha_paren, - [12375] = 4, + [12356] = 4, ACTIONS(53), 1, sym_list_marker_lower_alpha_parens, - ACTIONS(1567), 1, + ACTIONS(1558), 1, sym__block_close, - STATE(536), 1, + STATE(534), 1, aux_sym__list_lower_alpha_parens_repeat1, - STATE(774), 1, + STATE(753), 1, sym__list_item_lower_alpha_parens, - [12388] = 4, + [12369] = 4, ACTIONS(35), 1, sym_list_marker_upper_alpha_period, - ACTIONS(1569), 1, + ACTIONS(1560), 1, sym__block_close, - STATE(538), 1, + STATE(536), 1, aux_sym__list_upper_alpha_period_repeat1, - STATE(782), 1, + STATE(761), 1, sym__list_item_upper_alpha_period, - [12401] = 4, + [12382] = 4, ACTIONS(45), 1, sym_list_marker_upper_alpha_paren, - ACTIONS(1571), 1, + ACTIONS(1562), 1, sym__block_close, - STATE(540), 1, + STATE(538), 1, aux_sym__list_upper_alpha_paren_repeat1, - STATE(783), 1, + STATE(764), 1, sym__list_item_upper_alpha_paren, - [12414] = 4, + [12395] = 4, ACTIONS(55), 1, sym_list_marker_upper_alpha_parens, - ACTIONS(1573), 1, + ACTIONS(1564), 1, sym__block_close, - STATE(425), 1, + STATE(529), 1, aux_sym__list_upper_alpha_parens_repeat1, - STATE(786), 1, + STATE(765), 1, sym__list_item_upper_alpha_parens, - [12427] = 4, + [12408] = 4, ACTIONS(37), 1, sym_list_marker_lower_roman_period, - ACTIONS(1575), 1, + ACTIONS(1566), 1, sym__block_close, - STATE(427), 1, + STATE(424), 1, aux_sym__list_lower_roman_period_repeat1, - STATE(787), 1, + STATE(768), 1, sym__list_item_lower_roman_period, - [12440] = 4, + [12421] = 4, ACTIONS(47), 1, sym_list_marker_lower_roman_paren, - ACTIONS(1577), 1, + ACTIONS(1568), 1, sym__block_close, - STATE(428), 1, + STATE(425), 1, aux_sym__list_lower_roman_paren_repeat1, - STATE(802), 1, + STATE(769), 1, sym__list_item_lower_roman_paren, - [12453] = 4, + [12434] = 4, ACTIONS(57), 1, sym_list_marker_lower_roman_parens, - ACTIONS(1579), 1, + ACTIONS(1570), 1, sym__block_close, - STATE(430), 1, + STATE(427), 1, aux_sym__list_lower_roman_parens_repeat1, - STATE(803), 1, + STATE(786), 1, sym__list_item_lower_roman_parens, - [12466] = 4, + [12447] = 4, ACTIONS(39), 1, sym_list_marker_upper_roman_period, - ACTIONS(1581), 1, + ACTIONS(1572), 1, sym__block_close, - STATE(432), 1, + STATE(429), 1, aux_sym__list_upper_roman_period_repeat1, - STATE(808), 1, + STATE(791), 1, sym__list_item_upper_roman_period, - [12479] = 4, + [12460] = 4, ACTIONS(49), 1, sym_list_marker_upper_roman_paren, - ACTIONS(1583), 1, + ACTIONS(1574), 1, sym__block_close, - STATE(434), 1, + STATE(431), 1, aux_sym__list_upper_roman_paren_repeat1, - STATE(814), 1, + STATE(793), 1, sym__list_item_upper_roman_paren, - [12492] = 4, + [12473] = 4, ACTIONS(59), 1, sym_list_marker_upper_roman_parens, - ACTIONS(1585), 1, + ACTIONS(1576), 1, sym__block_close, - STATE(436), 1, + STATE(433), 1, aux_sym__list_upper_roman_parens_repeat1, - STATE(819), 1, + STATE(799), 1, sym__list_item_upper_roman_parens, - [12505] = 4, + [12486] = 4, ACTIONS(29), 1, sym_list_marker_definition, - ACTIONS(1587), 1, + ACTIONS(1578), 1, sym__block_close, - STATE(526), 1, + STATE(523), 1, aux_sym__list_definition_repeat1, - STATE(740), 1, + STATE(694), 1, sym__list_item_definition, - [12518] = 4, + [12499] = 4, ACTIONS(31), 1, sym_list_marker_decimal_period, - ACTIONS(1589), 1, + ACTIONS(1580), 1, sym__block_close, - STATE(527), 1, + STATE(524), 1, aux_sym__list_decimal_period_repeat1, - STATE(743), 1, + STATE(714), 1, sym__list_item_decimal_period, - [12531] = 4, + [12512] = 4, ACTIONS(41), 1, sym_list_marker_decimal_paren, - ACTIONS(1591), 1, + ACTIONS(1582), 1, sym__block_close, - STATE(528), 1, + STATE(525), 1, aux_sym__list_decimal_paren_repeat1, - STATE(748), 1, + STATE(719), 1, sym__list_item_decimal_paren, - [12544] = 4, + [12525] = 4, ACTIONS(51), 1, sym_list_marker_decimal_parens, - ACTIONS(1593), 1, + ACTIONS(1584), 1, sym__block_close, - STATE(530), 1, + STATE(527), 1, aux_sym__list_decimal_parens_repeat1, - STATE(768), 1, + STATE(746), 1, sym__list_item_decimal_parens, - [12557] = 4, + [12538] = 4, ACTIONS(33), 1, sym_list_marker_lower_alpha_period, - ACTIONS(1595), 1, + ACTIONS(1586), 1, sym__block_close, - STATE(532), 1, + STATE(530), 1, aux_sym__list_lower_alpha_period_repeat1, - STATE(769), 1, + STATE(748), 1, sym__list_item_lower_alpha_period, - [12570] = 4, + [12551] = 4, ACTIONS(43), 1, sym_list_marker_lower_alpha_paren, - ACTIONS(1597), 1, + ACTIONS(1588), 1, sym__block_close, - STATE(534), 1, + STATE(532), 1, aux_sym__list_lower_alpha_paren_repeat1, - STATE(773), 1, + STATE(749), 1, sym__list_item_lower_alpha_paren, - [12583] = 4, + [12564] = 4, ACTIONS(53), 1, sym_list_marker_lower_alpha_parens, - ACTIONS(1599), 1, + ACTIONS(1590), 1, sym__block_close, - STATE(536), 1, + STATE(534), 1, aux_sym__list_lower_alpha_parens_repeat1, - STATE(774), 1, + STATE(753), 1, sym__list_item_lower_alpha_parens, - [12596] = 4, + [12577] = 4, ACTIONS(35), 1, sym_list_marker_upper_alpha_period, - ACTIONS(1601), 1, + ACTIONS(1592), 1, sym__block_close, - STATE(538), 1, + STATE(536), 1, aux_sym__list_upper_alpha_period_repeat1, - STATE(782), 1, + STATE(761), 1, sym__list_item_upper_alpha_period, - [12609] = 4, + [12590] = 4, ACTIONS(45), 1, sym_list_marker_upper_alpha_paren, - ACTIONS(1603), 1, + ACTIONS(1594), 1, sym__block_close, - STATE(540), 1, + STATE(538), 1, aux_sym__list_upper_alpha_paren_repeat1, - STATE(783), 1, + STATE(764), 1, sym__list_item_upper_alpha_paren, - [12622] = 4, + [12603] = 4, ACTIONS(55), 1, sym_list_marker_upper_alpha_parens, - ACTIONS(1605), 1, + ACTIONS(1596), 1, sym__block_close, - STATE(425), 1, + STATE(529), 1, aux_sym__list_upper_alpha_parens_repeat1, - STATE(786), 1, + STATE(765), 1, sym__list_item_upper_alpha_parens, - [12635] = 4, + [12616] = 4, ACTIONS(37), 1, sym_list_marker_lower_roman_period, - ACTIONS(1607), 1, + ACTIONS(1598), 1, sym__block_close, - STATE(427), 1, + STATE(424), 1, aux_sym__list_lower_roman_period_repeat1, - STATE(787), 1, + STATE(768), 1, sym__list_item_lower_roman_period, - [12648] = 4, + [12629] = 4, ACTIONS(47), 1, sym_list_marker_lower_roman_paren, - ACTIONS(1609), 1, + ACTIONS(1600), 1, sym__block_close, - STATE(428), 1, + STATE(425), 1, aux_sym__list_lower_roman_paren_repeat1, - STATE(802), 1, + STATE(769), 1, sym__list_item_lower_roman_paren, - [12661] = 4, + [12642] = 4, ACTIONS(57), 1, sym_list_marker_lower_roman_parens, - ACTIONS(1611), 1, + ACTIONS(1602), 1, sym__block_close, - STATE(430), 1, + STATE(427), 1, aux_sym__list_lower_roman_parens_repeat1, - STATE(803), 1, + STATE(786), 1, sym__list_item_lower_roman_parens, - [12674] = 4, + [12655] = 4, ACTIONS(39), 1, sym_list_marker_upper_roman_period, - ACTIONS(1613), 1, + ACTIONS(1604), 1, sym__block_close, - STATE(432), 1, + STATE(429), 1, aux_sym__list_upper_roman_period_repeat1, - STATE(808), 1, + STATE(791), 1, sym__list_item_upper_roman_period, - [12687] = 4, + [12668] = 4, ACTIONS(49), 1, sym_list_marker_upper_roman_paren, - ACTIONS(1615), 1, + ACTIONS(1606), 1, sym__block_close, - STATE(434), 1, + STATE(431), 1, aux_sym__list_upper_roman_paren_repeat1, - STATE(814), 1, + STATE(793), 1, sym__list_item_upper_roman_paren, - [12700] = 4, + [12681] = 4, ACTIONS(59), 1, sym_list_marker_upper_roman_parens, - ACTIONS(1617), 1, + ACTIONS(1608), 1, sym__block_close, - STATE(436), 1, + STATE(433), 1, aux_sym__list_upper_roman_parens_repeat1, - STATE(819), 1, + STATE(799), 1, sym__list_item_upper_roman_parens, - [12713] = 4, - ACTIONS(1619), 1, + [12694] = 4, + ACTIONS(1610), 1, sym__block_close, - ACTIONS(1621), 1, + ACTIONS(1612), 1, sym_list_marker_definition, - STATE(526), 1, + STATE(523), 1, aux_sym__list_definition_repeat1, - STATE(740), 1, + STATE(694), 1, sym__list_item_definition, - [12726] = 4, - ACTIONS(1624), 1, + [12707] = 4, + ACTIONS(1615), 1, sym__block_close, - ACTIONS(1626), 1, + ACTIONS(1617), 1, sym_list_marker_decimal_period, - STATE(527), 1, + STATE(524), 1, aux_sym__list_decimal_period_repeat1, - STATE(743), 1, + STATE(714), 1, sym__list_item_decimal_period, - [12739] = 4, - ACTIONS(1629), 1, + [12720] = 4, + ACTIONS(1620), 1, sym__block_close, - ACTIONS(1631), 1, + ACTIONS(1622), 1, sym_list_marker_decimal_paren, - STATE(528), 1, + STATE(525), 1, aux_sym__list_decimal_paren_repeat1, - STATE(748), 1, + STATE(719), 1, sym__list_item_decimal_paren, - [12752] = 4, + [12733] = 4, ACTIONS(29), 1, sym_list_marker_definition, - ACTIONS(1634), 1, + ACTIONS(1625), 1, sym__block_close, - STATE(526), 1, + STATE(523), 1, aux_sym__list_definition_repeat1, - STATE(740), 1, + STATE(694), 1, sym__list_item_definition, - [12765] = 4, - ACTIONS(1636), 1, + [12746] = 4, + ACTIONS(1627), 1, sym__block_close, - ACTIONS(1638), 1, + ACTIONS(1629), 1, sym_list_marker_decimal_parens, - STATE(530), 1, + STATE(527), 1, aux_sym__list_decimal_parens_repeat1, - STATE(768), 1, + STATE(746), 1, sym__list_item_decimal_parens, - [12778] = 4, + [12759] = 4, ACTIONS(31), 1, sym_list_marker_decimal_period, - ACTIONS(1641), 1, + ACTIONS(1632), 1, sym__block_close, - STATE(527), 1, + STATE(524), 1, aux_sym__list_decimal_period_repeat1, - STATE(743), 1, + STATE(714), 1, sym__list_item_decimal_period, - [12791] = 4, - ACTIONS(1643), 1, + [12772] = 4, + ACTIONS(1634), 1, + sym__block_close, + ACTIONS(1636), 1, + sym_list_marker_upper_alpha_parens, + STATE(529), 1, + aux_sym__list_upper_alpha_parens_repeat1, + STATE(765), 1, + sym__list_item_upper_alpha_parens, + [12785] = 4, + ACTIONS(1639), 1, sym__block_close, - ACTIONS(1645), 1, + ACTIONS(1641), 1, sym_list_marker_lower_alpha_period, - STATE(532), 1, + STATE(530), 1, aux_sym__list_lower_alpha_period_repeat1, - STATE(769), 1, + STATE(748), 1, sym__list_item_lower_alpha_period, - [12804] = 4, + [12798] = 4, ACTIONS(41), 1, sym_list_marker_decimal_paren, - ACTIONS(1648), 1, + ACTIONS(1644), 1, sym__block_close, - STATE(528), 1, + STATE(525), 1, aux_sym__list_decimal_paren_repeat1, - STATE(748), 1, + STATE(719), 1, sym__list_item_decimal_paren, - [12817] = 4, - ACTIONS(1650), 1, + [12811] = 4, + ACTIONS(1646), 1, sym__block_close, - ACTIONS(1652), 1, + ACTIONS(1648), 1, sym_list_marker_lower_alpha_paren, - STATE(534), 1, + STATE(532), 1, aux_sym__list_lower_alpha_paren_repeat1, - STATE(773), 1, + STATE(749), 1, sym__list_item_lower_alpha_paren, - [12830] = 4, + [12824] = 4, ACTIONS(51), 1, sym_list_marker_decimal_parens, - ACTIONS(1655), 1, + ACTIONS(1651), 1, sym__block_close, - STATE(530), 1, + STATE(527), 1, aux_sym__list_decimal_parens_repeat1, - STATE(768), 1, + STATE(746), 1, sym__list_item_decimal_parens, - [12843] = 4, - ACTIONS(1657), 1, + [12837] = 4, + ACTIONS(1653), 1, sym__block_close, - ACTIONS(1659), 1, + ACTIONS(1655), 1, sym_list_marker_lower_alpha_parens, - STATE(536), 1, + STATE(534), 1, aux_sym__list_lower_alpha_parens_repeat1, - STATE(774), 1, + STATE(753), 1, sym__list_item_lower_alpha_parens, - [12856] = 4, + [12850] = 4, ACTIONS(33), 1, sym_list_marker_lower_alpha_period, - ACTIONS(1662), 1, + ACTIONS(1658), 1, sym__block_close, - STATE(532), 1, + STATE(530), 1, aux_sym__list_lower_alpha_period_repeat1, - STATE(769), 1, + STATE(748), 1, sym__list_item_lower_alpha_period, - [12869] = 4, - ACTIONS(1664), 1, + [12863] = 4, + ACTIONS(1660), 1, sym__block_close, - ACTIONS(1666), 1, + ACTIONS(1662), 1, sym_list_marker_upper_alpha_period, - STATE(538), 1, + STATE(536), 1, aux_sym__list_upper_alpha_period_repeat1, - STATE(782), 1, + STATE(761), 1, sym__list_item_upper_alpha_period, - [12882] = 4, + [12876] = 4, ACTIONS(43), 1, sym_list_marker_lower_alpha_paren, - ACTIONS(1669), 1, + ACTIONS(1665), 1, sym__block_close, - STATE(534), 1, + STATE(532), 1, aux_sym__list_lower_alpha_paren_repeat1, - STATE(773), 1, + STATE(749), 1, sym__list_item_lower_alpha_paren, - [12895] = 4, - ACTIONS(1671), 1, + [12889] = 4, + ACTIONS(1667), 1, sym__block_close, - ACTIONS(1673), 1, + ACTIONS(1669), 1, sym_list_marker_upper_alpha_paren, - STATE(540), 1, + STATE(538), 1, aux_sym__list_upper_alpha_paren_repeat1, - STATE(783), 1, + STATE(764), 1, sym__list_item_upper_alpha_paren, - [12908] = 4, - ACTIONS(1443), 1, + [12902] = 4, + ACTIONS(53), 1, + sym_list_marker_lower_alpha_parens, + ACTIONS(1672), 1, + sym__block_close, + STATE(534), 1, + aux_sym__list_lower_alpha_parens_repeat1, + STATE(753), 1, + sym__list_item_lower_alpha_parens, + [12915] = 4, + ACTIONS(1434), 1, anon_sym_EQ, - ACTIONS(1676), 1, + ACTIONS(1674), 1, sym_language, - ACTIONS(1678), 1, + ACTIONS(1676), 1, sym__newline, - STATE(1027), 1, + STATE(1026), 1, sym_raw_block_info, - [12921] = 4, - ACTIONS(1443), 1, + [12928] = 4, + ACTIONS(1434), 1, anon_sym_EQ, - ACTIONS(1680), 1, + ACTIONS(1678), 1, sym_language, - ACTIONS(1682), 1, + ACTIONS(1680), 1, sym__newline, - STATE(1046), 1, + STATE(1045), 1, sym_raw_block_info, - [12934] = 4, - ACTIONS(1443), 1, + [12941] = 4, + ACTIONS(1434), 1, anon_sym_EQ, - ACTIONS(1684), 1, + ACTIONS(1682), 1, sym_language, - ACTIONS(1686), 1, + ACTIONS(1684), 1, sym__newline, - STATE(1065), 1, + STATE(1064), 1, sym_raw_block_info, - [12947] = 4, - ACTIONS(1443), 1, + [12954] = 4, + ACTIONS(1434), 1, anon_sym_EQ, - ACTIONS(1688), 1, + ACTIONS(1686), 1, sym_language, - ACTIONS(1690), 1, + ACTIONS(1688), 1, sym__newline, - STATE(1083), 1, + STATE(1082), 1, sym_raw_block_info, - [12960] = 1, - ACTIONS(752), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [12966] = 1, - ACTIONS(694), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [12972] = 1, - ACTIONS(698), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [12978] = 1, - ACTIONS(702), 3, - sym__list_item_continuation, - sym__list_item_end, + [12967] = 4, + ACTIONS(57), 1, + sym_list_marker_lower_roman_parens, + ACTIONS(1690), 1, + sym__block_close, + STATE(427), 1, + aux_sym__list_lower_roman_parens_repeat1, + STATE(786), 1, + sym__list_item_lower_roman_parens, + [12980] = 1, + ACTIONS(1692), 3, sym__block_quote_continuation, - [12984] = 1, + sym__footnote_continuation, + sym__footnote_end, + [12986] = 1, ACTIONS(710), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [12990] = 3, + [12992] = 3, ACTIONS(907), 1, sym__list_marker_task_begin, - ACTIONS(1098), 1, + ACTIONS(1104), 1, sym__block_quote_continuation, - STATE(551), 1, + STATE(548), 1, aux_sym__block_quote_prefix_repeat1, - [13000] = 3, + [13002] = 3, ACTIONS(868), 1, sym__list_marker_task_begin, - ACTIONS(1692), 1, + ACTIONS(1694), 1, sym__block_quote_continuation, - STATE(551), 1, + STATE(548), 1, aux_sym__block_quote_prefix_repeat1, - [13010] = 2, - ACTIONS(1695), 1, + [13012] = 2, + ACTIONS(1697), 1, sym__code_block_end, - ACTIONS(642), 2, + ACTIONS(608), 2, sym__block_close, sym__block_quote_continuation, - [13018] = 3, - ACTIONS(1697), 1, - sym__newline, + [13020] = 3, ACTIONS(1699), 1, + sym__newline, + ACTIONS(1701), 1, sym__table_cell, STATE(993), 1, sym_table_cell, - [13028] = 3, + [13030] = 3, ACTIONS(907), 1, aux_sym__line_token1, - ACTIONS(1106), 1, + ACTIONS(1100), 1, sym__block_quote_continuation, - STATE(555), 1, + STATE(552), 1, aux_sym__block_quote_prefix_repeat1, - [13038] = 3, + [13040] = 3, ACTIONS(868), 1, aux_sym__line_token1, - ACTIONS(1701), 1, + ACTIONS(1703), 1, sym__block_quote_continuation, - STATE(555), 1, + STATE(552), 1, aux_sym__block_quote_prefix_repeat1, - [13048] = 3, + [13050] = 3, ACTIONS(907), 1, sym__list_item_continuation, - ACTIONS(1224), 1, + ACTIONS(1242), 1, sym__block_quote_continuation, - STATE(557), 1, + STATE(554), 1, aux_sym__block_quote_prefix_repeat1, - [13058] = 3, + [13060] = 3, ACTIONS(868), 1, sym__list_item_continuation, - ACTIONS(1704), 1, + ACTIONS(1706), 1, sym__block_quote_continuation, - STATE(557), 1, + STATE(554), 1, aux_sym__block_quote_prefix_repeat1, - [13068] = 3, + [13070] = 3, ACTIONS(907), 1, sym__footnote_continuation, - ACTIONS(1226), 1, + ACTIONS(1264), 1, sym__block_quote_continuation, - STATE(559), 1, + STATE(556), 1, aux_sym__block_quote_prefix_repeat1, - [13078] = 3, + [13080] = 3, ACTIONS(868), 1, sym__footnote_continuation, - ACTIONS(1707), 1, + ACTIONS(1709), 1, sym__block_quote_continuation, - STATE(559), 1, + STATE(556), 1, aux_sym__block_quote_prefix_repeat1, - [13088] = 1, - ACTIONS(1710), 3, + [13090] = 3, + ACTIONS(538), 1, + sym__indented_content_spacer, + ACTIONS(929), 1, + sym__table_caption_begin, + STATE(1066), 1, + sym_table_caption, + [13100] = 1, + ACTIONS(1712), 3, sym__block_close, sym__list_marker_task_begin, sym__block_quote_continuation, - [13094] = 1, - ACTIONS(1712), 3, + [13106] = 1, + ACTIONS(1714), 3, sym__block_close, sym__list_marker_task_begin, sym__block_quote_continuation, - [13100] = 3, - ACTIONS(1699), 1, + [13112] = 3, + ACTIONS(1701), 1, sym__table_cell, - ACTIONS(1714), 1, + ACTIONS(1716), 1, sym__newline, STATE(993), 1, sym_table_cell, - [13110] = 2, - ACTIONS(1716), 1, - sym__code_block_end, - ACTIONS(608), 2, - sym__block_close, - sym__block_quote_continuation, - [13118] = 1, - ACTIONS(1712), 3, + [13122] = 1, + ACTIONS(1714), 3, sym__block_close, sym_list_marker_plus, sym__block_quote_continuation, - [13124] = 2, + [13128] = 2, ACTIONS(1718), 1, sym__div_end, ACTIONS(542), 2, sym__block_close, sym__block_quote_continuation, - [13132] = 2, + [13136] = 2, ACTIONS(1720), 1, sym__code_block_end, ACTIONS(566), 2, sym__block_close, sym__block_quote_continuation, - [13140] = 2, + [13144] = 2, ACTIONS(1722), 1, sym__code_block_end, ACTIONS(572), 2, sym__block_close, sym__block_quote_continuation, - [13148] = 2, + [13152] = 2, ACTIONS(1724), 1, sym__eof_or_newline, ACTIONS(578), 2, sym__block_close, sym__block_quote_continuation, - [13156] = 3, + [13160] = 3, ACTIONS(1726), 1, sym__block_close, ACTIONS(1728), 1, sym__heading_continuation, - STATE(599), 1, + STATE(596), 1, aux_sym__heading_content_repeat1, - [13166] = 3, + [13170] = 3, ACTIONS(907), 1, sym_list_marker_plus, - ACTIONS(1160), 1, + ACTIONS(1162), 1, sym__block_quote_continuation, - STATE(586), 1, + STATE(583), 1, aux_sym__block_quote_prefix_repeat1, - [13176] = 3, + [13180] = 3, ACTIONS(1728), 1, sym__heading_continuation, ACTIONS(1730), 1, sym__block_close, - STATE(569), 1, + STATE(566), 1, aux_sym__heading_content_repeat1, - [13186] = 1, - ACTIONS(1712), 3, + [13190] = 1, + ACTIONS(1714), 3, sym__block_close, sym_list_marker_star, sym__block_quote_continuation, - [13192] = 1, + [13196] = 1, ACTIONS(1732), 3, sym__block_close, sym_list_marker_star, sym__block_quote_continuation, - [13198] = 1, + [13202] = 1, ACTIONS(1734), 3, sym__block_close, sym_list_marker_dash, sym__block_quote_continuation, - [13204] = 3, - ACTIONS(1699), 1, + [13208] = 1, + ACTIONS(1736), 3, + sym__block_close, + sym_list_marker_star, + sym__block_quote_continuation, + [13214] = 3, + ACTIONS(1701), 1, sym__table_cell, - ACTIONS(1736), 1, + ACTIONS(1738), 1, sym__newline, STATE(993), 1, sym_table_cell, - [13214] = 3, - ACTIONS(1699), 1, + [13224] = 3, + ACTIONS(1701), 1, sym__table_cell, - ACTIONS(1738), 1, + ACTIONS(1740), 1, sym__newline, STATE(993), 1, sym_table_cell, - [13224] = 1, - ACTIONS(1740), 3, - sym__block_close, - sym_list_marker_star, - sym__block_quote_continuation, - [13230] = 1, + [13234] = 1, ACTIONS(1742), 3, sym__block_close, sym_list_marker_plus, sym__block_quote_continuation, - [13236] = 2, + [13240] = 2, ACTIONS(1746), 1, anon_sym_SPACE, ACTIONS(1744), 2, anon_sym_x, anon_sym_X, - [13244] = 3, - ACTIONS(1699), 1, + [13248] = 1, + ACTIONS(1748), 3, + anon_sym_PERCENT, + sym_backslash_escape, + aux_sym_comment_token1, + [13254] = 3, + ACTIONS(1701), 1, sym__table_cell, - ACTIONS(1748), 1, + ACTIONS(1750), 1, sym__newline, STATE(993), 1, sym_table_cell, - [13254] = 3, - ACTIONS(1699), 1, + [13264] = 3, + ACTIONS(1701), 1, sym__table_cell, - ACTIONS(1750), 1, + ACTIONS(1752), 1, sym__newline, STATE(993), 1, sym_table_cell, - [13264] = 1, - ACTIONS(1752), 3, - anon_sym_PERCENT, - sym_backslash_escape, - aux_sym_comment_token1, - [13270] = 3, - ACTIONS(1699), 1, + [13274] = 1, + ACTIONS(1712), 3, + sym__block_close, + sym_list_marker_star, + sym__block_quote_continuation, + [13280] = 3, + ACTIONS(1701), 1, sym__table_cell, ACTIONS(1754), 1, sym__newline, STATE(993), 1, sym_table_cell, - [13280] = 3, - ACTIONS(1699), 1, + [13290] = 3, + ACTIONS(1701), 1, sym__table_cell, ACTIONS(1756), 1, sym__newline, STATE(993), 1, sym_table_cell, - [13290] = 1, - ACTIONS(1710), 3, - sym__block_close, - sym_list_marker_star, - sym__block_quote_continuation, - [13296] = 3, + [13300] = 3, ACTIONS(868), 1, sym_list_marker_plus, ACTIONS(1758), 1, sym__block_quote_continuation, - STATE(586), 1, + STATE(583), 1, aux_sym__block_quote_prefix_repeat1, - [13306] = 3, + [13310] = 3, ACTIONS(907), 1, sym_list_marker_dash, - ACTIONS(1164), 1, + ACTIONS(1152), 1, sym__block_quote_continuation, - STATE(598), 1, + STATE(594), 1, aux_sym__block_quote_prefix_repeat1, - [13316] = 3, + [13320] = 3, ACTIONS(1761), 1, anon_sym_DQUOTE, ACTIONS(1763), 1, aux_sym_value_token2, - STATE(409), 1, + STATE(322), 1, sym_value, - [13326] = 1, - ACTIONS(864), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [13332] = 1, + [13330] = 1, ACTIONS(1765), 3, sym__block_close, sym__list_marker_task_begin, sym__block_quote_continuation, - [13338] = 1, + [13336] = 1, + ACTIONS(864), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [13342] = 1, ACTIONS(1767), 3, sym__block_close, sym_list_marker_dash, sym__block_quote_continuation, - [13344] = 1, + [13348] = 1, ACTIONS(1769), 3, sym__block_close, sym_list_marker_star, sym__block_quote_continuation, - [13350] = 1, + [13354] = 1, ACTIONS(1771), 3, sym__block_close, sym_list_marker_plus, sym__block_quote_continuation, - [13356] = 1, + [13360] = 1, ACTIONS(1773), 3, sym__block_close, sym__list_marker_task_begin, sym__block_quote_continuation, - [13362] = 3, + [13366] = 3, ACTIONS(1775), 1, sym__eof_or_newline, ACTIONS(1777), 1, sym__newline_inline, - STATE(596), 1, + STATE(593), 1, aux_sym__paragraph_inline_content_repeat1, - [13372] = 3, + [13376] = 3, ACTIONS(1779), 1, sym__eof_or_newline, ACTIONS(1781), 1, sym__newline_inline, - STATE(596), 1, + STATE(593), 1, aux_sym__paragraph_inline_content_repeat1, - [13382] = 3, - ACTIONS(538), 1, - sym__indented_content_spacer, - ACTIONS(929), 1, - sym__table_caption_begin, - STATE(942), 1, - sym_table_caption, - [13392] = 3, + [13386] = 3, ACTIONS(868), 1, sym_list_marker_dash, ACTIONS(1784), 1, sym__block_quote_continuation, - STATE(598), 1, + STATE(594), 1, aux_sym__block_quote_prefix_repeat1, - [13402] = 3, - ACTIONS(1787), 1, + [13396] = 1, + ACTIONS(1787), 3, sym__block_close, + sym_list_marker_dash, + sym__block_quote_continuation, + [13402] = 3, ACTIONS(1789), 1, + sym__block_close, + ACTIONS(1791), 1, sym__heading_continuation, - STATE(599), 1, + STATE(596), 1, aux_sym__heading_content_repeat1, [13412] = 1, ACTIONS(706), 3, @@ -24373,63 +24375,63 @@ static const uint16_t ts_small_parse_table[] = { sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13424] = 1, - ACTIONS(1203), 3, + [13424] = 3, + ACTIONS(907), 1, + sym_list_marker_star, + ACTIONS(1158), 1, + sym__block_quote_continuation, + STATE(639), 1, + aux_sym__block_quote_prefix_repeat1, + [13434] = 1, + ACTIONS(1225), 3, sym__block_close, sym__block_quote_continuation, aux_sym__line_token1, - [13430] = 3, - ACTIONS(1699), 1, - sym__table_cell, - ACTIONS(1792), 1, + [13440] = 3, + ACTIONS(1701), 1, + sym__table_cell, + ACTIONS(1794), 1, sym__newline, STATE(993), 1, sym_table_cell, - [13440] = 3, - ACTIONS(1699), 1, + [13450] = 3, + ACTIONS(1701), 1, sym__table_cell, - ACTIONS(1794), 1, + ACTIONS(1796), 1, sym__newline, STATE(993), 1, sym_table_cell, - [13450] = 1, - ACTIONS(1712), 3, + [13460] = 1, + ACTIONS(1798), 3, sym__block_close, - sym_list_marker_dash, + sym__list_marker_task_begin, sym__block_quote_continuation, - [13456] = 1, - ACTIONS(1796), 3, + [13466] = 1, + ACTIONS(1714), 3, sym__block_close, - sym__list_marker_task_begin, + sym_list_marker_dash, sym__block_quote_continuation, - [13462] = 3, - ACTIONS(1699), 1, + [13472] = 3, + ACTIONS(1701), 1, sym__table_cell, - ACTIONS(1798), 1, + ACTIONS(1800), 1, sym__newline, STATE(993), 1, sym_table_cell, - [13472] = 3, - ACTIONS(1699), 1, + [13482] = 3, + ACTIONS(1701), 1, sym__table_cell, - ACTIONS(1800), 1, + ACTIONS(1802), 1, sym__newline, STATE(993), 1, sym_table_cell, - [13482] = 1, - ACTIONS(1259), 3, + [13492] = 1, + ACTIONS(1257), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13488] = 3, - ACTIONS(907), 1, - sym_list_marker_star, - ACTIONS(1170), 1, - sym__block_quote_continuation, - STATE(642), 1, - aux_sym__block_quote_prefix_repeat1, [13498] = 1, - ACTIONS(1710), 3, + ACTIONS(1712), 3, sym__block_close, sym_list_marker_dash, sym__block_quote_continuation, @@ -24454,1688 +24456,1689 @@ static const uint16_t ts_small_parse_table[] = { sym__list_item_end, sym__block_quote_continuation, [13528] = 1, - ACTIONS(690), 3, + ACTIONS(752), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13534] = 2, - ACTIONS(1802), 1, - sym__code_block_end, - ACTIONS(636), 2, - sym__block_close, + [13534] = 1, + ACTIONS(756), 3, + sym__list_item_continuation, + sym__list_item_end, sym__block_quote_continuation, - [13542] = 1, + [13540] = 1, ACTIONS(760), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13548] = 1, + [13546] = 1, ACTIONS(764), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13554] = 1, - ACTIONS(768), 3, + [13552] = 1, + ACTIONS(702), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13560] = 1, + [13558] = 1, ACTIONS(772), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13566] = 1, + [13564] = 1, ACTIONS(776), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13572] = 1, + [13570] = 1, ACTIONS(780), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13578] = 1, + [13576] = 1, ACTIONS(784), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13584] = 1, + [13582] = 1, ACTIONS(788), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13590] = 3, - ACTIONS(1699), 1, - sym__table_cell, + [13588] = 1, + ACTIONS(792), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [13594] = 3, + ACTIONS(1777), 1, + sym__newline_inline, ACTIONS(1804), 1, + sym__eof_or_newline, + STATE(592), 1, + aux_sym__paragraph_inline_content_repeat1, + [13604] = 3, + ACTIONS(1701), 1, + sym__table_cell, + ACTIONS(1806), 1, sym__newline, STATE(993), 1, sym_table_cell, - [13600] = 3, - ACTIONS(1699), 1, + [13614] = 3, + ACTIONS(1701), 1, sym__table_cell, - ACTIONS(1806), 1, + ACTIONS(1808), 1, sym__newline, STATE(993), 1, sym_table_cell, - [13610] = 3, - ACTIONS(1777), 1, - sym__newline_inline, - ACTIONS(1808), 1, - sym__eof_or_newline, - STATE(595), 1, - aux_sym__paragraph_inline_content_repeat1, - [13620] = 3, - ACTIONS(1699), 1, + [13624] = 3, + ACTIONS(1701), 1, sym__table_cell, ACTIONS(1810), 1, sym__newline, STATE(993), 1, sym_table_cell, - [13630] = 3, - ACTIONS(1699), 1, + [13634] = 3, + ACTIONS(1701), 1, sym__table_cell, ACTIONS(1812), 1, sym__newline, STATE(993), 1, sym_table_cell, - [13640] = 3, + [13644] = 3, ACTIONS(1777), 1, sym__newline_inline, - ACTIONS(1808), 1, + ACTIONS(1804), 1, sym__eof_or_newline, - STATE(596), 1, + STATE(593), 1, aux_sym__paragraph_inline_content_repeat1, - [13650] = 1, + [13654] = 1, ACTIONS(1814), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13656] = 1, + [13660] = 1, ACTIONS(1816), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13662] = 1, - ACTIONS(792), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [13668] = 1, + [13666] = 1, ACTIONS(796), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13674] = 1, + [13672] = 1, ACTIONS(800), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13680] = 1, + [13678] = 1, ACTIONS(664), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13686] = 1, + [13684] = 1, ACTIONS(804), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13692] = 1, + [13690] = 1, ACTIONS(808), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13698] = 1, + [13696] = 1, ACTIONS(812), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13704] = 1, + [13702] = 1, ACTIONS(538), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13710] = 3, + [13708] = 3, ACTIONS(868), 1, sym_list_marker_star, ACTIONS(1818), 1, sym__block_quote_continuation, - STATE(642), 1, + STATE(639), 1, aux_sym__block_quote_prefix_repeat1, - [13720] = 1, + [13718] = 1, ACTIONS(820), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13726] = 1, + [13724] = 1, ACTIONS(824), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13732] = 1, - ACTIONS(1821), 3, + [13730] = 2, + ACTIONS(1821), 1, + sym__eof_or_newline, + ACTIONS(596), 2, sym__block_close, - sym_list_marker_dash, sym__block_quote_continuation, [13738] = 1, ACTIONS(828), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13744] = 2, - ACTIONS(1823), 1, - sym__eof_or_newline, - ACTIONS(596), 2, - sym__block_close, - sym__block_quote_continuation, - [13752] = 1, - ACTIONS(814), 3, + [13744] = 1, + ACTIONS(724), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13758] = 1, - ACTIONS(724), 3, + [13750] = 1, + ACTIONS(814), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13764] = 3, - ACTIONS(1699), 1, - sym__table_cell, + [13756] = 2, + ACTIONS(1823), 1, + sym__div_end, + ACTIONS(546), 2, + sym__block_close, + sym__block_quote_continuation, + [13764] = 2, ACTIONS(1825), 1, + sym__code_block_end, + ACTIONS(588), 2, + sym__block_close, + sym__block_quote_continuation, + [13772] = 3, + ACTIONS(1701), 1, + sym__table_cell, + ACTIONS(1827), 1, sym__newline, STATE(993), 1, sym_table_cell, - [13774] = 3, - ACTIONS(1699), 1, + [13782] = 3, + ACTIONS(1701), 1, sym__table_cell, - ACTIONS(1827), 1, + ACTIONS(1829), 1, sym__newline, STATE(993), 1, sym_table_cell, - [13784] = 2, - ACTIONS(1829), 1, + [13792] = 2, + ACTIONS(1831), 1, anon_sym_LBRACK, - STATE(1060), 2, + STATE(1013), 2, sym_checked, sym_unchecked, - [13792] = 3, - ACTIONS(1699), 1, + [13800] = 3, + ACTIONS(1701), 1, sym__table_cell, - ACTIONS(1831), 1, + ACTIONS(1833), 1, sym__newline, STATE(993), 1, sym_table_cell, - [13802] = 3, - ACTIONS(1699), 1, + [13810] = 3, + ACTIONS(1701), 1, sym__table_cell, - ACTIONS(1833), 1, + ACTIONS(1835), 1, sym__newline, STATE(993), 1, sym_table_cell, - [13812] = 1, - ACTIONS(1835), 3, + [13820] = 1, + ACTIONS(1837), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13818] = 3, + [13826] = 3, ACTIONS(1777), 1, sym__newline_inline, - ACTIONS(1837), 1, + ACTIONS(1839), 1, sym__eof_or_newline, - STATE(631), 1, + STATE(629), 1, aux_sym__paragraph_inline_content_repeat1, - [13828] = 2, - ACTIONS(1839), 1, - sym__div_end, - ACTIONS(546), 2, - sym__block_close, - sym__block_quote_continuation, [13836] = 1, ACTIONS(830), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13842] = 2, - ACTIONS(1841), 1, - sym__code_block_end, - ACTIONS(588), 2, + [13842] = 1, + ACTIONS(1712), 3, sym__block_close, + sym_list_marker_plus, sym__block_quote_continuation, - [13850] = 1, - ACTIONS(1710), 3, + [13848] = 1, + ACTIONS(1841), 3, sym__block_close, sym_list_marker_plus, sym__block_quote_continuation, - [13856] = 1, + [13854] = 1, ACTIONS(1843), 3, sym__block_close, - sym_list_marker_plus, - sym__block_quote_continuation, - [13862] = 1, - ACTIONS(1845), 3, - sym__block_quote_continuation, - sym__footnote_continuation, - sym__footnote_end, - [13868] = 1, - ACTIONS(1847), 3, sym__block_quote_continuation, - sym__footnote_continuation, - sym__footnote_end, - [13874] = 1, + aux_sym__line_token1, + [13860] = 1, ACTIONS(840), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13880] = 1, - ACTIONS(1849), 3, + [13866] = 2, + ACTIONS(1845), 1, + sym__div_end, + ACTIONS(624), 2, sym__block_close, sym__block_quote_continuation, - aux_sym__line_token1, - [13886] = 1, + [13874] = 1, ACTIONS(844), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13892] = 2, - ACTIONS(1851), 1, - sym__div_end, - ACTIONS(624), 2, - sym__block_close, + [13880] = 1, + ACTIONS(1847), 3, sym__block_quote_continuation, - [13900] = 2, - ACTIONS(1853), 1, + sym__footnote_continuation, + sym__footnote_end, + [13886] = 2, + ACTIONS(1849), 1, sym__div_end, ACTIONS(630), 2, sym__block_close, sym__block_quote_continuation, - [13908] = 1, + [13894] = 2, + ACTIONS(1851), 1, + sym__code_block_end, + ACTIONS(636), 2, + sym__block_close, + sym__block_quote_continuation, + [13902] = 1, ACTIONS(848), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13914] = 1, + [13908] = 1, ACTIONS(852), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13920] = 1, + [13914] = 1, ACTIONS(856), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13926] = 1, + [13920] = 1, ACTIONS(670), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13932] = 1, + [13926] = 1, ACTIONS(674), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13938] = 1, + [13932] = 1, ACTIONS(678), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13944] = 1, + [13938] = 1, ACTIONS(682), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13950] = 1, + [13944] = 1, ACTIONS(686), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13956] = 1, - ACTIONS(756), 3, + [13950] = 1, + ACTIONS(690), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13962] = 1, - ACTIONS(538), 2, + [13956] = 2, + ACTIONS(1853), 1, + sym__code_block_end, + ACTIONS(642), 2, sym__block_close, sym__block_quote_continuation, - [13967] = 1, - ACTIONS(670), 2, - sym__block_close, + [13964] = 1, + ACTIONS(694), 3, + sym__list_item_continuation, + sym__list_item_end, sym__block_quote_continuation, - [13972] = 1, - ACTIONS(674), 2, - sym__block_close, + [13970] = 1, + ACTIONS(698), 3, + sym__list_item_continuation, + sym__list_item_end, sym__block_quote_continuation, - [13977] = 1, - ACTIONS(678), 2, - sym__block_close, + [13976] = 1, + ACTIONS(768), 3, + sym__list_item_continuation, + sym__list_item_end, sym__block_quote_continuation, [13982] = 1, - ACTIONS(682), 2, + ACTIONS(1712), 2, sym__block_close, - sym__block_quote_continuation, + sym_list_marker_lower_roman_parens, [13987] = 1, - ACTIONS(686), 2, + ACTIONS(1712), 2, sym__block_close, - sym__block_quote_continuation, + sym_list_marker_lower_alpha_parens, [13992] = 1, - ACTIONS(690), 2, + ACTIONS(1714), 2, sym__block_close, - sym__block_quote_continuation, + sym_list_marker_lower_alpha_parens, [13997] = 1, - ACTIONS(694), 2, + ACTIONS(1712), 2, sym__block_close, - sym__block_quote_continuation, + sym_list_marker_upper_alpha_parens, [14002] = 1, - ACTIONS(698), 2, - sym__block_close, - sym__block_quote_continuation, - [14007] = 1, - ACTIONS(702), 2, - sym__block_close, - sym__block_quote_continuation, - [14012] = 1, - ACTIONS(710), 2, + ACTIONS(1714), 2, sym__block_close, - sym__block_quote_continuation, - [14017] = 1, - ACTIONS(462), 2, - sym_list_marker_plus, - sym__block_quote_continuation, - [14022] = 1, - ACTIONS(462), 2, - sym__list_marker_task_begin, - sym__block_quote_continuation, - [14027] = 1, - ACTIONS(1710), 2, + sym_list_marker_upper_alpha_parens, + [14007] = 2, + ACTIONS(624), 1, + sym__indented_content_spacer, + ACTIONS(1855), 1, + sym__div_end, + [14014] = 1, + ACTIONS(1714), 2, sym__block_close, - sym_list_marker_upper_alpha_period, - [14032] = 1, + sym_list_marker_lower_roman_parens, + [14019] = 1, ACTIONS(1712), 2, sym__block_close, - sym_list_marker_upper_alpha_period, - [14037] = 1, - ACTIONS(1376), 2, + sym_list_marker_upper_roman_parens, + [14024] = 1, + ACTIONS(1714), 2, sym__block_close, - sym__block_quote_continuation, - [14042] = 1, - ACTIONS(1710), 2, + sym_list_marker_upper_roman_parens, + [14029] = 1, + ACTIONS(1714), 2, sym__block_close, - sym_list_marker_lower_roman_period, - [14047] = 1, - ACTIONS(1712), 2, + sym_list_marker_decimal_period, + [14034] = 1, + ACTIONS(1857), 2, + sym__eof_or_newline, + sym__close_paragraph, + [14039] = 2, + ACTIONS(1859), 1, + sym_table_cell_alignment, + ACTIONS(1861), 1, + sym__newline, + [14046] = 1, + ACTIONS(1863), 2, + sym__eof_or_newline, + sym__close_paragraph, + [14051] = 2, + ACTIONS(1865), 1, + anon_sym_PIPE, + STATE(691), 1, + aux_sym_table_separator_repeat1, + [14058] = 2, + ACTIONS(1868), 1, + anon_sym_PIPE, + STATE(804), 1, + aux_sym_table_header_repeat1, + [14065] = 2, + ACTIONS(542), 1, + sym__indented_content_spacer, + ACTIONS(1870), 1, + sym__div_end, + [14072] = 1, + ACTIONS(1872), 2, sym__block_close, - sym_list_marker_lower_roman_period, - [14052] = 1, - ACTIONS(1710), 2, + sym_list_marker_definition, + [14077] = 1, + ACTIONS(1874), 2, sym__block_close, sym_list_marker_upper_roman_period, - [14057] = 1, - ACTIONS(1712), 2, + [14082] = 1, + ACTIONS(1779), 2, + sym__eof_or_newline, + sym__newline_inline, + [14087] = 1, + ACTIONS(820), 2, sym__block_close, - sym_list_marker_upper_roman_period, - [14062] = 1, - ACTIONS(462), 2, sym__block_quote_continuation, - aux_sym__line_token1, - [14067] = 2, - ACTIONS(1855), 1, - anon_sym_PIPE, - STATE(699), 1, - aux_sym_table_header_repeat1, - [14074] = 1, - ACTIONS(1710), 2, - sym__block_close, - sym_list_marker_decimal_paren, - [14079] = 1, - ACTIONS(1712), 2, + [14092] = 1, + ACTIONS(1876), 2, sym__block_close, sym_list_marker_decimal_paren, - [14084] = 1, - ACTIONS(462), 2, - sym__list_item_continuation, - sym__block_quote_continuation, - [14089] = 1, - ACTIONS(1710), 2, - sym__block_close, - sym_list_marker_lower_alpha_paren, - [14094] = 1, - ACTIONS(1712), 2, + [14097] = 1, + ACTIONS(1878), 2, sym__block_close, sym_list_marker_lower_alpha_paren, - [14099] = 2, - ACTIONS(1858), 1, - anon_sym_PIPE, - STATE(730), 1, - aux_sym_table_header_repeat1, - [14106] = 1, - ACTIONS(1710), 2, + [14102] = 1, + ACTIONS(1880), 2, sym__block_close, sym_list_marker_upper_alpha_paren, - [14111] = 1, - ACTIONS(1712), 2, + [14107] = 1, + ACTIONS(824), 2, sym__block_close, - sym_list_marker_upper_alpha_paren, - [14116] = 1, - ACTIONS(462), 2, sym__block_quote_continuation, - sym__footnote_continuation, - [14121] = 1, - ACTIONS(1710), 2, + [14112] = 2, + ACTIONS(566), 1, + sym__indented_content_spacer, + ACTIONS(1882), 1, + sym__code_block_end, + [14119] = 1, + ACTIONS(1884), 2, sym__block_close, sym_list_marker_lower_roman_paren, - [14126] = 1, - ACTIONS(1712), 2, + [14124] = 1, + ACTIONS(1789), 2, sym__block_close, - sym_list_marker_lower_roman_paren, - [14131] = 1, - ACTIONS(1710), 2, + sym__heading_continuation, + [14129] = 1, + ACTIONS(828), 2, sym__block_close, - sym_list_marker_upper_roman_paren, - [14136] = 1, - ACTIONS(1712), 2, + sym__block_quote_continuation, + [14134] = 1, + ACTIONS(1886), 2, sym__block_close, sym_list_marker_upper_roman_paren, - [14141] = 1, - ACTIONS(1710), 2, - sym__block_close, - sym_list_marker_decimal_parens, + [14139] = 2, + ACTIONS(1096), 1, + aux_sym__line_token1, + STATE(600), 1, + sym__line, [14146] = 1, - ACTIONS(1712), 2, + ACTIONS(1888), 2, sym__block_close, sym_list_marker_decimal_parens, [14151] = 1, - ACTIONS(1710), 2, + ACTIONS(1890), 2, sym__block_close, sym_list_marker_lower_alpha_parens, [14156] = 1, - ACTIONS(1712), 2, - sym__block_close, - sym_list_marker_lower_alpha_parens, - [14161] = 1, - ACTIONS(1710), 2, + ACTIONS(1892), 2, sym__block_close, sym_list_marker_upper_alpha_parens, + [14161] = 1, + ACTIONS(1894), 2, + sym__footnote_mark_begin, + sym__in_fallback, [14166] = 1, - ACTIONS(1712), 2, + ACTIONS(462), 2, + sym_list_marker_star, + sym__block_quote_continuation, + [14171] = 2, + ACTIONS(1896), 1, + sym__id, + STATE(327), 1, + sym_class_name, + [14178] = 1, + ACTIONS(1898), 2, sym__block_close, - sym_list_marker_upper_alpha_parens, - [14171] = 1, - ACTIONS(1710), 2, + sym_list_marker_decimal_period, + [14183] = 1, + ACTIONS(864), 2, sym__block_close, - sym_list_marker_lower_roman_parens, - [14176] = 1, - ACTIONS(1712), 2, + sym__block_quote_continuation, + [14188] = 2, + ACTIONS(1859), 1, + sym_table_cell_alignment, + ACTIONS(1900), 1, + sym__newline, + [14195] = 2, + ACTIONS(572), 1, + sym__indented_content_spacer, + ACTIONS(1902), 1, + sym__code_block_end, + [14202] = 1, + ACTIONS(1904), 2, sym__block_close, sym_list_marker_lower_roman_parens, - [14181] = 1, - ACTIONS(1710), 2, - sym__block_close, - sym_list_marker_upper_roman_parens, - [14186] = 1, - ACTIONS(1712), 2, + [14207] = 1, + ACTIONS(1906), 2, sym__block_close, - sym_list_marker_upper_roman_parens, - [14191] = 2, - ACTIONS(1860), 1, - sym_table_cell_alignment, - ACTIONS(1862), 1, - sym__newline, - [14198] = 1, - ACTIONS(1864), 2, - sym__eof_or_newline, - sym__close_paragraph, - [14203] = 2, - ACTIONS(1866), 1, - anon_sym_PIPE, - STATE(725), 1, - aux_sym_table_separator_repeat1, - [14210] = 2, - ACTIONS(1869), 1, - anon_sym_PIPE, - STATE(732), 1, - aux_sym_table_separator_repeat1, - [14217] = 2, - ACTIONS(1871), 1, - anon_sym_PIPE, - STATE(733), 1, - aux_sym_table_header_repeat1, - [14224] = 2, - ACTIONS(1873), 1, - sym__id, - STATE(994), 1, - sym_class_name, - [14231] = 2, + sym_list_marker_decimal_paren, + [14212] = 2, ACTIONS(578), 1, sym__indented_content_spacer, - ACTIONS(1875), 1, + ACTIONS(1908), 1, sym__eof_or_newline, - [14238] = 2, - ACTIONS(1877), 1, - anon_sym_PIPE, - STATE(699), 1, - aux_sym_table_header_repeat1, - [14245] = 2, - ACTIONS(1860), 1, + [14219] = 2, + ACTIONS(1859), 1, sym_table_cell_alignment, - ACTIONS(1879), 1, + ACTIONS(1910), 1, sym__newline, - [14252] = 2, - ACTIONS(1881), 1, - anon_sym_PIPE, - STATE(725), 1, - aux_sym_table_separator_repeat1, - [14259] = 2, - ACTIONS(1883), 1, - anon_sym_PIPE, - STATE(699), 1, - aux_sym_table_header_repeat1, - [14266] = 1, + [14226] = 1, ACTIONS(462), 2, sym_list_marker_dash, sym__block_quote_continuation, - [14271] = 1, - ACTIONS(706), 2, - sym__block_close, - sym__block_quote_continuation, - [14276] = 1, - ACTIONS(732), 2, - sym__block_close, - sym__block_quote_continuation, - [14281] = 1, - ACTIONS(1885), 2, - sym__footnote_mark_begin, - sym__in_fallback, - [14286] = 2, - ACTIONS(1699), 1, - sym__table_cell, - STATE(705), 1, - sym_table_cell, - [14293] = 2, - ACTIONS(1887), 1, - sym__id, - STATE(358), 1, - sym_class_name, - [14300] = 1, - ACTIONS(1889), 2, - sym__block_close, - sym_list_marker_definition, - [14305] = 2, - ACTIONS(1860), 1, - sym_table_cell_alignment, - ACTIONS(1891), 1, - sym__newline, - [14312] = 2, - ACTIONS(624), 1, - sym__indented_content_spacer, - ACTIONS(1893), 1, - sym__div_end, - [14319] = 1, - ACTIONS(1895), 2, - sym__block_close, - sym_list_marker_decimal_period, - [14324] = 2, - ACTIONS(1860), 1, - sym_table_cell_alignment, - ACTIONS(1897), 1, - sym__newline, - [14331] = 1, - ACTIONS(1899), 2, + [14231] = 1, + ACTIONS(1912), 2, sym__eof_or_newline, sym__close_paragraph, - [14336] = 1, - ACTIONS(1901), 2, + [14236] = 1, + ACTIONS(1914), 2, sym__eof_or_newline, sym__newline_inline, - [14341] = 2, - ACTIONS(1903), 1, + [14241] = 2, + ACTIONS(1916), 1, sym__eof_or_newline, - STATE(896), 1, + STATE(967), 1, sym__one_or_two_newlines, - [14348] = 1, - ACTIONS(1905), 2, - sym__block_close, - sym_list_marker_decimal_paren, - [14353] = 1, - ACTIONS(1849), 2, + [14248] = 1, + ACTIONS(1843), 2, sym_frontmatter_marker, aux_sym__line_token1, - [14358] = 1, - ACTIONS(1907), 2, + [14253] = 1, + ACTIONS(1918), 2, sym__eof_or_newline, sym__close_paragraph, - [14363] = 1, - ACTIONS(736), 2, + [14258] = 2, + ACTIONS(1920), 1, + sym_language, + ACTIONS(1922), 1, + sym__newline, + [14265] = 1, + ACTIONS(706), 2, sym__block_close, sym__block_quote_continuation, - [14368] = 1, - ACTIONS(740), 2, + [14270] = 1, + ACTIONS(814), 2, sym__block_close, sym__block_quote_continuation, - [14373] = 1, - ACTIONS(1710), 2, - sym__block_close, - sym_list_marker_decimal_period, - [14378] = 1, - ACTIONS(1909), 2, - sym__eof_or_newline, - sym__close_paragraph, - [14383] = 1, - ACTIONS(1911), 2, + [14275] = 1, + ACTIONS(732), 2, sym__block_close, - sym_list_marker_decimal_period, - [14388] = 1, - ACTIONS(1913), 2, + sym__block_quote_continuation, + [14280] = 2, + ACTIONS(630), 1, + sym__indented_content_spacer, + ACTIONS(1924), 1, + sym__div_end, + [14287] = 1, + ACTIONS(830), 2, sym__block_close, - sym_list_marker_lower_alpha_period, - [14393] = 1, - ACTIONS(1915), 2, + sym__block_quote_continuation, + [14292] = 2, + ACTIONS(596), 1, + sym__indented_content_spacer, + ACTIONS(1926), 1, + sym__eof_or_newline, + [14299] = 2, + ACTIONS(636), 1, + sym__indented_content_spacer, + ACTIONS(1928), 1, + sym__code_block_end, + [14306] = 2, + ACTIONS(642), 1, + sym__indented_content_spacer, + ACTIONS(1930), 1, + sym__code_block_end, + [14313] = 2, + ACTIONS(608), 1, + sym__indented_content_spacer, + ACTIONS(1932), 1, + sym__code_block_end, + [14320] = 1, + ACTIONS(1934), 2, + sym__footnote_mark_begin, + sym__in_fallback, + [14325] = 1, + ACTIONS(1083), 2, sym__block_close, - sym_list_marker_upper_alpha_period, - [14398] = 1, - ACTIONS(744), 2, + sym__heading_continuation, + [14330] = 1, + ACTIONS(840), 2, sym__block_close, sym__block_quote_continuation, - [14403] = 1, - ACTIONS(748), 2, + [14335] = 1, + ACTIONS(736), 2, sym__block_close, sym__block_quote_continuation, - [14408] = 1, - ACTIONS(752), 2, + [14340] = 1, + ACTIONS(844), 2, sym__block_close, sym__block_quote_continuation, - [14413] = 1, - ACTIONS(756), 2, + [14345] = 1, + ACTIONS(740), 2, sym__block_close, sym__block_quote_continuation, - [14418] = 1, - ACTIONS(1712), 2, - sym__block_close, - sym_list_marker_decimal_period, - [14423] = 1, - ACTIONS(1917), 2, - sym__eof_or_newline, - sym__close_paragraph, - [14428] = 1, - ACTIONS(760), 2, + [14350] = 1, + ACTIONS(744), 2, sym__block_close, sym__block_quote_continuation, - [14433] = 1, - ACTIONS(1919), 2, - sym__block_close, - sym_list_marker_lower_roman_period, - [14438] = 1, - ACTIONS(1921), 2, + [14355] = 1, + ACTIONS(1936), 2, sym__footnote_mark_begin, sym__in_fallback, - [14443] = 1, - ACTIONS(1779), 2, - sym__eof_or_newline, - sym__newline_inline, - [14448] = 1, - ACTIONS(1923), 2, + [14360] = 1, + ACTIONS(1938), 2, sym__block_close, sym_list_marker_decimal_parens, - [14453] = 1, - ACTIONS(1925), 2, + [14365] = 1, + ACTIONS(848), 2, + sym__block_close, + sym__block_quote_continuation, + [14370] = 1, + ACTIONS(1940), 2, sym__block_close, sym_list_marker_lower_alpha_period, - [14458] = 1, - ACTIONS(764), 2, + [14375] = 1, + ACTIONS(1942), 2, + sym__block_close, + sym_list_marker_lower_alpha_paren, + [14380] = 1, + ACTIONS(852), 2, sym__block_close, sym__block_quote_continuation, - [14463] = 2, - ACTIONS(1860), 1, + [14385] = 2, + ACTIONS(1859), 1, sym_table_cell_alignment, - ACTIONS(1927), 1, + ACTIONS(1944), 1, sym__newline, - [14470] = 1, - ACTIONS(1929), 2, - sym__block_close, - sym_list_marker_upper_roman_period, - [14475] = 1, - ACTIONS(1931), 2, + [14392] = 1, + ACTIONS(856), 2, sym__block_close, - sym_list_marker_lower_alpha_paren, - [14480] = 1, - ACTIONS(1933), 2, + sym__block_quote_continuation, + [14397] = 1, + ACTIONS(1946), 2, sym__block_close, sym_list_marker_lower_alpha_parens, - [14485] = 1, - ACTIONS(1935), 2, + [14402] = 1, + ACTIONS(670), 2, sym__block_close, - sym_list_marker_decimal_paren, - [14490] = 1, - ACTIONS(1937), 2, + sym__block_quote_continuation, + [14407] = 1, + ACTIONS(674), 2, sym__block_close, - sym_list_marker_lower_alpha_paren, - [14495] = 2, - ACTIONS(1860), 1, + sym__block_quote_continuation, + [14412] = 2, + ACTIONS(1948), 1, + sym__id, + STATE(934), 1, + sym_reference_label, + [14419] = 1, + ACTIONS(1950), 2, + sym__block_close, + sym_list_marker_upper_roman_parens, + [14424] = 2, + ACTIONS(1859), 1, sym_table_cell_alignment, - ACTIONS(1939), 1, + ACTIONS(1952), 1, sym__newline, - [14502] = 1, - ACTIONS(768), 2, + [14431] = 1, + ACTIONS(678), 2, sym__block_close, sym__block_quote_continuation, - [14507] = 2, - ACTIONS(1941), 1, - sym__id, - STATE(926), 1, - sym_reference_label, - [14514] = 2, - ACTIONS(1943), 1, + [14436] = 1, + ACTIONS(682), 2, + sym__block_close, + sym__block_quote_continuation, + [14441] = 1, + ACTIONS(1954), 2, + sym__block_close, + sym_list_marker_upper_alpha_period, + [14446] = 2, + ACTIONS(1956), 1, sym__eof_or_newline, - STATE(685), 1, + STATE(773), 1, sym__one_or_two_newlines, - [14521] = 1, - ACTIONS(1945), 2, + [14453] = 1, + ACTIONS(1958), 2, sym__block_close, sym_list_marker_definition, - [14526] = 1, - ACTIONS(1947), 2, - sym__block_close, - sym_list_marker_upper_alpha_period, - [14531] = 1, - ACTIONS(1949), 2, + [14458] = 1, + ACTIONS(1960), 2, sym__block_close, sym_list_marker_upper_alpha_paren, - [14536] = 1, - ACTIONS(1951), 2, + [14463] = 1, + ACTIONS(1962), 2, + sym__block_close, + sym_list_marker_upper_alpha_parens, + [14468] = 1, + ACTIONS(1964), 2, sym__eof_or_newline, sym__close_paragraph, - [14541] = 2, - ACTIONS(1699), 1, + [14473] = 2, + ACTIONS(1701), 1, sym__table_cell, STATE(993), 1, sym_table_cell, - [14548] = 1, - ACTIONS(1953), 2, - sym__block_close, - sym_list_marker_upper_alpha_parens, - [14553] = 1, - ACTIONS(1955), 2, + [14480] = 1, + ACTIONS(1966), 2, sym__block_close, sym_list_marker_lower_roman_period, - [14558] = 1, - ACTIONS(772), 2, + [14485] = 1, + ACTIONS(1968), 2, + sym__block_close, + sym_list_marker_lower_roman_paren, + [14490] = 1, + ACTIONS(686), 2, sym__block_close, sym__block_quote_continuation, - [14563] = 1, - ACTIONS(1957), 2, + [14495] = 1, + ACTIONS(690), 2, sym__block_close, - sym_list_marker_upper_alpha_paren, - [14568] = 1, - ACTIONS(1787), 2, + sym__block_quote_continuation, + [14500] = 1, + ACTIONS(748), 2, sym__block_close, - sym__heading_continuation, - [14573] = 1, - ACTIONS(776), 2, + sym__block_quote_continuation, + [14505] = 1, + ACTIONS(694), 2, sym__block_close, sym__block_quote_continuation, - [14578] = 1, - ACTIONS(1959), 2, + [14510] = 1, + ACTIONS(1712), 2, sym__block_close, - sym_list_marker_lower_roman_paren, - [14583] = 2, - ACTIONS(1102), 1, - aux_sym__line_token1, - STATE(602), 1, - sym__line, - [14590] = 1, - ACTIONS(856), 2, + sym_list_marker_lower_alpha_period, + [14515] = 2, + ACTIONS(1701), 1, + sym__table_cell, + STATE(692), 1, + sym_table_cell, + [14522] = 1, + ACTIONS(698), 2, sym__block_close, sym__block_quote_continuation, - [14595] = 1, - ACTIONS(1961), 2, + [14527] = 1, + ACTIONS(702), 2, sym__block_close, - sym_list_marker_decimal_parens, - [14600] = 1, - ACTIONS(1963), 2, + sym__block_quote_continuation, + [14532] = 1, + ACTIONS(710), 2, sym__block_close, - sym_list_marker_lower_alpha_parens, - [14605] = 1, + sym__block_quote_continuation, + [14537] = 1, ACTIONS(462), 2, - sym_list_marker_star, + sym_list_marker_plus, sym__block_quote_continuation, - [14610] = 1, - ACTIONS(780), 2, + [14542] = 1, + ACTIONS(752), 2, sym__block_close, sym__block_quote_continuation, - [14615] = 1, - ACTIONS(784), 2, + [14547] = 1, + ACTIONS(756), 2, sym__block_close, sym__block_quote_continuation, - [14620] = 1, - ACTIONS(1965), 2, - sym__block_close, - sym_list_marker_upper_alpha_parens, - [14625] = 1, - ACTIONS(788), 2, + [14552] = 1, + ACTIONS(760), 2, sym__block_close, sym__block_quote_continuation, - [14630] = 1, - ACTIONS(1967), 2, + [14557] = 1, + ACTIONS(1714), 2, sym__block_close, - sym_list_marker_lower_roman_paren, - [14635] = 1, - ACTIONS(1969), 2, + sym_list_marker_lower_alpha_period, + [14562] = 1, + ACTIONS(1970), 2, + sym__block_close, + sym_list_marker_definition, + [14567] = 2, + ACTIONS(1896), 1, + sym__id, + STATE(940), 1, + sym_class_name, + [14574] = 1, + ACTIONS(1972), 2, sym__block_close, sym_list_marker_lower_roman_parens, - [14640] = 1, - ACTIONS(792), 2, + [14579] = 1, + ACTIONS(764), 2, sym__block_close, sym__block_quote_continuation, - [14645] = 2, - ACTIONS(1860), 1, - sym_table_cell_alignment, - ACTIONS(1971), 1, - sym__newline, - [14652] = 1, - ACTIONS(796), 2, + [14584] = 1, + ACTIONS(768), 2, sym__block_close, sym__block_quote_continuation, - [14657] = 1, - ACTIONS(800), 2, + [14589] = 2, + ACTIONS(1859), 1, + sym_table_cell_alignment, + ACTIONS(1974), 1, + sym__newline, + [14596] = 1, + ACTIONS(772), 2, sym__block_close, sym__block_quote_continuation, - [14662] = 1, - ACTIONS(1973), 2, + [14601] = 1, + ACTIONS(1976), 2, sym__block_close, sym_list_marker_upper_roman_period, - [14667] = 1, - ACTIONS(1975), 2, + [14606] = 1, + ACTIONS(1978), 2, sym__eof_or_newline, sym__close_paragraph, - [14672] = 1, - ACTIONS(664), 2, + [14611] = 1, + ACTIONS(1980), 2, sym__block_close, - sym__block_quote_continuation, - [14677] = 2, - ACTIONS(1860), 1, + sym_list_marker_upper_roman_paren, + [14616] = 1, + ACTIONS(1714), 2, + sym__block_close, + sym_list_marker_decimal_parens, + [14621] = 2, + ACTIONS(1859), 1, sym_table_cell_alignment, - ACTIONS(1977), 1, + ACTIONS(1982), 1, sym__newline, - [14684] = 1, - ACTIONS(804), 2, + [14628] = 1, + ACTIONS(780), 2, sym__block_close, sym__block_quote_continuation, - [14689] = 2, - ACTIONS(1979), 1, + [14633] = 2, + ACTIONS(1984), 1, sym__eof_or_newline, STATE(183), 1, sym__one_or_two_newlines, - [14696] = 1, - ACTIONS(1981), 2, - sym__block_close, - sym_list_marker_upper_roman_paren, - [14701] = 1, - ACTIONS(808), 2, + [14640] = 2, + ACTIONS(1986), 1, + anon_sym_PIPE, + STATE(836), 1, + aux_sym_table_header_repeat1, + [14647] = 1, + ACTIONS(1988), 2, sym__block_close, - sym__block_quote_continuation, - [14706] = 1, - ACTIONS(1983), 2, + sym_list_marker_upper_roman_parens, + [14652] = 1, + ACTIONS(1990), 2, sym__eof_or_newline, sym__close_paragraph, - [14711] = 1, - ACTIONS(812), 2, + [14657] = 2, + ACTIONS(1859), 1, + sym_table_cell_alignment, + ACTIONS(1992), 1, + sym__newline, + [14664] = 2, + ACTIONS(1994), 1, + anon_sym_PIPE, + STATE(691), 1, + aux_sym_table_separator_repeat1, + [14671] = 1, + ACTIONS(784), 2, sym__block_close, sym__block_quote_continuation, - [14716] = 2, - ACTIONS(630), 1, - sym__indented_content_spacer, - ACTIONS(1985), 1, - sym__div_end, - [14723] = 1, - ACTIONS(1987), 2, + [14676] = 2, + ACTIONS(1996), 1, + anon_sym_PIPE, + STATE(836), 1, + aux_sym_table_header_repeat1, + [14683] = 1, + ACTIONS(788), 2, sym__block_close, - sym_list_marker_upper_roman_parens, - [14728] = 2, - ACTIONS(546), 1, - sym__indented_content_spacer, - ACTIONS(1989), 1, - sym__div_end, - [14735] = 2, - ACTIONS(636), 1, - sym__indented_content_spacer, - ACTIONS(1991), 1, - sym__code_block_end, - [14742] = 2, - ACTIONS(642), 1, - sym__indented_content_spacer, - ACTIONS(1993), 1, - sym__code_block_end, - [14749] = 2, - ACTIONS(608), 1, - sym__indented_content_spacer, - ACTIONS(1995), 1, - sym__code_block_end, - [14756] = 1, - ACTIONS(820), 2, + sym__block_quote_continuation, + [14688] = 1, + ACTIONS(792), 2, sym__block_close, sym__block_quote_continuation, - [14761] = 1, - ACTIONS(824), 2, + [14693] = 1, + ACTIONS(796), 2, sym__block_close, sym__block_quote_continuation, - [14766] = 1, - ACTIONS(828), 2, + [14698] = 1, + ACTIONS(800), 2, sym__block_close, sym__block_quote_continuation, - [14771] = 1, - ACTIONS(864), 2, + [14703] = 1, + ACTIONS(664), 2, sym__block_close, sym__block_quote_continuation, - [14776] = 2, - ACTIONS(588), 1, - sym__indented_content_spacer, - ACTIONS(1997), 1, - sym__code_block_end, - [14783] = 2, - ACTIONS(596), 1, - sym__indented_content_spacer, - ACTIONS(1999), 1, - sym__eof_or_newline, - [14790] = 2, - ACTIONS(2001), 1, - sym_language, - ACTIONS(2003), 1, - sym__newline, - [14797] = 1, - ACTIONS(2005), 2, + [14708] = 1, + ACTIONS(804), 2, sym__block_close, - sym_list_marker_lower_roman_parens, - [14802] = 2, - ACTIONS(1860), 1, - sym_table_cell_alignment, - ACTIONS(2007), 1, - sym__newline, - [14809] = 1, - ACTIONS(814), 2, + sym__block_quote_continuation, + [14713] = 1, + ACTIONS(808), 2, + sym__block_close, + sym__block_quote_continuation, + [14718] = 1, + ACTIONS(812), 2, sym__block_close, sym__block_quote_continuation, - [14814] = 1, - ACTIONS(2009), 2, + [14723] = 1, + ACTIONS(462), 2, + sym__list_marker_task_begin, + sym__block_quote_continuation, + [14728] = 2, + ACTIONS(1701), 1, + sym__table_cell, + STATE(825), 1, + sym_table_cell, + [14735] = 1, + ACTIONS(1998), 2, sym__eof_or_newline, sym__close_paragraph, - [14819] = 2, - ACTIONS(542), 1, - sym__indented_content_spacer, - ACTIONS(2011), 1, - sym__div_end, - [14826] = 2, - ACTIONS(1860), 1, + [14740] = 1, + ACTIONS(1712), 2, + sym__block_close, + sym_list_marker_upper_alpha_period, + [14745] = 1, + ACTIONS(1714), 2, + sym__block_close, + sym_list_marker_upper_alpha_period, + [14750] = 1, + ACTIONS(1712), 2, + sym__block_close, + sym_list_marker_decimal_period, + [14755] = 1, + ACTIONS(1378), 2, + sym__block_close, + sym__block_quote_continuation, + [14760] = 2, + ACTIONS(1859), 1, sym_table_cell_alignment, - ACTIONS(2013), 1, + ACTIONS(2000), 1, sym__newline, - [14833] = 1, - ACTIONS(2015), 2, + [14767] = 1, + ACTIONS(1712), 2, + sym__block_close, + sym_list_marker_lower_roman_period, + [14772] = 1, + ACTIONS(1714), 2, + sym__block_close, + sym_list_marker_lower_roman_period, + [14777] = 1, + ACTIONS(2002), 2, sym__eof_or_newline, sym__close_paragraph, - [14838] = 2, - ACTIONS(2017), 1, + [14782] = 1, + ACTIONS(2004), 2, sym__eof_or_newline, - STATE(546), 1, + sym__close_paragraph, + [14787] = 2, + ACTIONS(2006), 1, + anon_sym_PIPE, + STATE(798), 1, + aux_sym_table_header_repeat1, + [14794] = 2, + ACTIONS(1859), 1, + sym_table_cell_alignment, + ACTIONS(2008), 1, + sym__newline, + [14801] = 1, + ACTIONS(1712), 2, + sym__block_close, + sym_list_marker_upper_roman_period, + [14806] = 2, + ACTIONS(2010), 1, + sym__eof_or_newline, + STATE(675), 1, sym__one_or_two_newlines, - [14845] = 1, - ACTIONS(830), 2, + [14813] = 1, + ACTIONS(1714), 2, sym__block_close, - sym__block_quote_continuation, - [14850] = 2, - ACTIONS(2019), 1, + sym_list_marker_upper_roman_period, + [14818] = 2, + ACTIONS(2012), 1, sym__eof_or_newline, STATE(118), 1, sym__one_or_two_newlines, - [14857] = 2, - ACTIONS(566), 1, - sym__indented_content_spacer, - ACTIONS(2021), 1, - sym__code_block_end, - [14864] = 2, + [14825] = 1, + ACTIONS(462), 2, + sym__block_quote_continuation, + aux_sym__line_token1, + [14830] = 2, ACTIONS(27), 1, sym__list_marker_task_begin, STATE(28), 1, sym_list_marker_task, - [14871] = 2, - ACTIONS(1885), 1, + [14837] = 2, + ACTIONS(1894), 1, sym__in_fallback, - ACTIONS(2023), 1, + ACTIONS(2014), 1, sym__footnote_mark_begin, - [14878] = 1, - ACTIONS(1710), 2, + [14844] = 1, + ACTIONS(2017), 2, sym__block_close, - sym_list_marker_lower_alpha_period, - [14883] = 2, - ACTIONS(2026), 1, + sym_list_marker_decimal_period, + [14849] = 2, + ACTIONS(2019), 1, sym__whitespace1, - ACTIONS(2028), 1, + ACTIONS(2021), 1, sym__newline, - [14890] = 1, - ACTIONS(2030), 2, - sym__block_close, - sym_list_marker_upper_roman_parens, - [14895] = 2, - ACTIONS(572), 1, - sym__indented_content_spacer, - ACTIONS(2032), 1, - sym__code_block_end, - [14902] = 1, - ACTIONS(2034), 2, - sym__footnote_mark_begin, - sym__in_fallback, - [14907] = 1, - ACTIONS(1083), 2, + [14856] = 2, + ACTIONS(2023), 1, + anon_sym_PIPE, + STATE(836), 1, + aux_sym_table_header_repeat1, + [14863] = 1, + ACTIONS(1712), 2, sym__block_close, - sym__heading_continuation, - [14912] = 1, - ACTIONS(840), 2, + sym_list_marker_decimal_paren, + [14868] = 1, + ACTIONS(1714), 2, sym__block_close, + sym_list_marker_decimal_paren, + [14873] = 1, + ACTIONS(462), 2, + sym__list_item_continuation, sym__block_quote_continuation, - [14917] = 1, - ACTIONS(1712), 2, + [14878] = 1, + ACTIONS(2026), 2, sym__block_close, sym_list_marker_lower_alpha_period, - [14922] = 1, - ACTIONS(2036), 2, + [14883] = 1, + ACTIONS(2028), 2, sym__block_close, - sym_list_marker_definition, - [14927] = 2, - ACTIONS(1699), 1, - sym__table_cell, - STATE(727), 1, - sym_table_cell, - [14934] = 1, - ACTIONS(844), 2, + sym_list_marker_upper_alpha_period, + [14888] = 1, + ACTIONS(1712), 2, + sym__block_close, + sym_list_marker_lower_alpha_paren, + [14893] = 1, + ACTIONS(1714), 2, + sym__block_close, + sym_list_marker_lower_alpha_paren, + [14898] = 2, + ACTIONS(2030), 1, + anon_sym_PIPE, + STATE(802), 1, + aux_sym_table_separator_repeat1, + [14905] = 1, + ACTIONS(2032), 2, + sym__block_close, + sym_list_marker_lower_roman_period, + [14910] = 1, + ACTIONS(538), 2, + sym__block_close, + sym__block_quote_continuation, + [14915] = 1, + ACTIONS(1712), 2, + sym__block_close, + sym_list_marker_upper_alpha_paren, + [14920] = 1, + ACTIONS(1714), 2, sym__block_close, + sym_list_marker_upper_alpha_paren, + [14925] = 1, + ACTIONS(462), 2, sym__block_quote_continuation, - [14939] = 2, + sym__footnote_continuation, + [14930] = 2, + ACTIONS(546), 1, + sym__indented_content_spacer, + ACTIONS(2034), 1, + sym__div_end, + [14937] = 2, + ACTIONS(588), 1, + sym__indented_content_spacer, + ACTIONS(2036), 1, + sym__code_block_end, + [14944] = 1, + ACTIONS(1712), 2, + sym__block_close, + sym_list_marker_lower_roman_paren, + [14949] = 1, + ACTIONS(1714), 2, + sym__block_close, + sym_list_marker_lower_roman_paren, + [14954] = 2, ACTIONS(2038), 1, anon_sym_PIPE, - STATE(858), 1, + STATE(857), 1, aux_sym_table_header_repeat1, - [14946] = 2, + [14961] = 2, ACTIONS(2040), 1, anon_sym_PIPE, - STATE(859), 1, + STATE(858), 1, aux_sym_table_separator_repeat1, - [14953] = 2, + [14968] = 2, ACTIONS(2042), 1, anon_sym_PIPE, - STATE(860), 1, + STATE(859), 1, aux_sym_table_header_repeat1, - [14960] = 2, + [14975] = 2, ACTIONS(2044), 1, anon_sym_PIPE, - STATE(699), 1, + STATE(836), 1, aux_sym_table_header_repeat1, - [14967] = 2, + [14982] = 2, ACTIONS(2046), 1, anon_sym_PIPE, - STATE(725), 1, + STATE(691), 1, aux_sym_table_separator_repeat1, - [14974] = 2, + [14989] = 2, ACTIONS(2048), 1, anon_sym_PIPE, - STATE(699), 1, + STATE(836), 1, aux_sym_table_header_repeat1, - [14981] = 2, + [14996] = 1, + ACTIONS(1712), 2, + sym__block_close, + sym_list_marker_upper_roman_paren, + [15001] = 2, ACTIONS(2050), 1, anon_sym_PIPE, STATE(864), 1, aux_sym_table_header_repeat1, - [14988] = 2, + [15008] = 2, ACTIONS(2052), 1, anon_sym_PIPE, STATE(865), 1, aux_sym_table_separator_repeat1, - [14995] = 2, + [15015] = 2, ACTIONS(2054), 1, anon_sym_PIPE, STATE(866), 1, aux_sym_table_header_repeat1, - [15002] = 2, + [15022] = 2, ACTIONS(2056), 1, anon_sym_PIPE, - STATE(699), 1, + STATE(836), 1, aux_sym_table_header_repeat1, - [15009] = 2, + [15029] = 2, ACTIONS(2058), 1, anon_sym_PIPE, - STATE(725), 1, + STATE(691), 1, aux_sym_table_separator_repeat1, - [15016] = 2, + [15036] = 2, ACTIONS(2060), 1, anon_sym_PIPE, - STATE(699), 1, + STATE(836), 1, aux_sym_table_header_repeat1, - [15023] = 1, - ACTIONS(848), 2, + [15043] = 1, + ACTIONS(1714), 2, sym__block_close, - sym__block_quote_continuation, - [15028] = 2, + sym_list_marker_upper_roman_paren, + [15048] = 2, ACTIONS(2062), 1, anon_sym_PIPE, STATE(871), 1, aux_sym_table_header_repeat1, - [15035] = 2, + [15055] = 2, ACTIONS(2064), 1, anon_sym_PIPE, STATE(872), 1, aux_sym_table_separator_repeat1, - [15042] = 2, + [15062] = 2, ACTIONS(2066), 1, anon_sym_PIPE, STATE(873), 1, aux_sym_table_header_repeat1, - [15049] = 2, + [15069] = 2, ACTIONS(2068), 1, anon_sym_PIPE, - STATE(699), 1, + STATE(836), 1, aux_sym_table_header_repeat1, - [15056] = 2, + [15076] = 2, ACTIONS(2070), 1, anon_sym_PIPE, - STATE(725), 1, + STATE(691), 1, aux_sym_table_separator_repeat1, - [15063] = 2, + [15083] = 2, ACTIONS(2072), 1, anon_sym_PIPE, - STATE(699), 1, + STATE(836), 1, aux_sym_table_header_repeat1, - [15070] = 1, - ACTIONS(852), 2, + [15090] = 1, + ACTIONS(1712), 2, sym__block_close, - sym__block_quote_continuation, - [15075] = 2, + sym_list_marker_decimal_parens, + [15095] = 2, ACTIONS(2074), 1, anon_sym_PIPE, STATE(878), 1, aux_sym_table_header_repeat1, - [15082] = 2, + [15102] = 2, ACTIONS(2076), 1, anon_sym_PIPE, STATE(879), 1, aux_sym_table_separator_repeat1, - [15089] = 2, + [15109] = 2, ACTIONS(2078), 1, anon_sym_PIPE, STATE(880), 1, aux_sym_table_header_repeat1, - [15096] = 2, + [15116] = 2, ACTIONS(2080), 1, anon_sym_PIPE, - STATE(699), 1, + STATE(836), 1, aux_sym_table_header_repeat1, - [15103] = 2, + [15123] = 2, ACTIONS(2082), 1, anon_sym_PIPE, - STATE(725), 1, + STATE(691), 1, aux_sym_table_separator_repeat1, - [15110] = 2, + [15130] = 2, ACTIONS(2084), 1, anon_sym_PIPE, - STATE(699), 1, + STATE(836), 1, aux_sym_table_header_repeat1, - [15117] = 2, - ACTIONS(1699), 1, + [15137] = 2, + ACTIONS(1701), 1, sym__table_cell, - STATE(855), 1, + STATE(854), 1, sym_table_cell, - [15124] = 2, - ACTIONS(1699), 1, + [15144] = 2, + ACTIONS(1701), 1, sym__table_cell, - STATE(857), 1, + STATE(856), 1, sym_table_cell, - [15131] = 2, - ACTIONS(1699), 1, + [15151] = 2, + ACTIONS(1701), 1, sym__table_cell, STATE(861), 1, sym_table_cell, - [15138] = 2, - ACTIONS(1699), 1, + [15158] = 2, + ACTIONS(1701), 1, sym__table_cell, STATE(863), 1, sym_table_cell, - [15145] = 2, - ACTIONS(1699), 1, + [15165] = 2, + ACTIONS(1701), 1, sym__table_cell, STATE(868), 1, sym_table_cell, - [15152] = 2, - ACTIONS(1699), 1, + [15172] = 2, + ACTIONS(1701), 1, sym__table_cell, STATE(870), 1, sym_table_cell, - [15159] = 2, - ACTIONS(1699), 1, + [15179] = 2, + ACTIONS(1701), 1, sym__table_cell, STATE(875), 1, sym_table_cell, - [15166] = 2, - ACTIONS(1699), 1, + [15186] = 2, + ACTIONS(1701), 1, sym__table_cell, STATE(877), 1, sym_table_cell, - [15173] = 2, - ACTIONS(1941), 1, + [15193] = 2, + ACTIONS(1948), 1, sym__id, - STATE(1108), 1, + STATE(1107), 1, sym_reference_label, - [15180] = 2, - ACTIONS(1941), 1, + [15200] = 2, + ACTIONS(1948), 1, sym__id, - STATE(1114), 1, + STATE(1113), 1, sym_reference_label, - [15187] = 2, - ACTIONS(1941), 1, + [15207] = 2, + ACTIONS(1948), 1, sym__id, - STATE(1120), 1, + STATE(1119), 1, sym_reference_label, - [15194] = 2, - ACTIONS(1941), 1, + [15214] = 2, + ACTIONS(1948), 1, sym__id, - STATE(1126), 1, + STATE(1125), 1, sym_reference_label, - [15201] = 1, - ACTIONS(2086), 2, + [15221] = 1, + ACTIONS(776), 2, sym__block_close, - sym_list_marker_upper_roman_paren, - [15206] = 1, - ACTIONS(2088), 1, + sym__block_quote_continuation, + [15226] = 1, + ACTIONS(2086), 1, sym__footnote_mark_begin, - [15210] = 1, + [15230] = 1, + ACTIONS(2088), 1, + sym__newline, + [15234] = 1, ACTIONS(2090), 1, sym__block_close, - [15214] = 1, - ACTIONS(694), 1, - sym__indented_content_spacer, - [15218] = 1, + [15238] = 1, ACTIONS(2092), 1, - anon_sym_RBRACK, - [15222] = 1, + sym__newline, + [15242] = 1, ACTIONS(2094), 1, - sym__indented_content_spacer, - [15226] = 1, - ACTIONS(698), 1, - sym__indented_content_spacer, - [15230] = 1, + sym__block_close, + [15246] = 1, ACTIONS(2096), 1, sym__newline, - [15234] = 1, + [15250] = 1, ACTIONS(2098), 1, sym__newline, - [15238] = 1, + [15254] = 1, ACTIONS(2100), 1, sym__newline, - [15242] = 1, + [15258] = 1, ACTIONS(2102), 1, - sym__newline, - [15246] = 1, + sym__block_close, + [15262] = 1, ACTIONS(2104), 1, sym__block_close, - [15250] = 1, - ACTIONS(702), 1, - sym__indented_content_spacer, - [15254] = 1, + [15266] = 1, ACTIONS(2106), 1, sym__newline, - [15258] = 1, + [15270] = 1, ACTIONS(2108), 1, - sym_frontmatter_marker, - [15262] = 1, + sym__newline, + [15274] = 1, ACTIONS(2110), 1, sym__newline, - [15266] = 1, + [15278] = 1, ACTIONS(2112), 1, - sym_language, - [15270] = 1, + sym__newline, + [15282] = 1, ACTIONS(2114), 1, sym__newline, - [15274] = 1, + [15286] = 1, ACTIONS(2116), 1, sym__newline, - [15278] = 1, + [15290] = 1, ACTIONS(2118), 1, sym__newline, - [15282] = 1, + [15294] = 1, ACTIONS(2120), 1, sym__newline, - [15286] = 1, + [15298] = 1, ACTIONS(2122), 1, - sym__block_close, - [15290] = 1, + sym__newline, + [15302] = 1, ACTIONS(2124), 1, sym__block_close, - [15294] = 1, + [15306] = 1, ACTIONS(2126), 1, - sym__newline, - [15298] = 1, + sym__block_close, + [15310] = 1, ACTIONS(2128), 1, sym__newline, - [15302] = 1, + [15314] = 1, ACTIONS(2130), 1, sym__newline, - [15306] = 1, + [15318] = 1, ACTIONS(2132), 1, sym__newline, - [15310] = 1, + [15322] = 1, ACTIONS(2134), 1, sym__newline, - [15314] = 1, + [15326] = 1, ACTIONS(2136), 1, sym__newline, - [15318] = 1, + [15330] = 1, ACTIONS(2138), 1, sym__newline, - [15322] = 1, + [15334] = 1, ACTIONS(2140), 1, sym__newline, - [15326] = 1, + [15338] = 1, ACTIONS(2142), 1, sym__newline, - [15330] = 1, + [15342] = 1, ACTIONS(2144), 1, - anon_sym_RBRACK_COLON, - [15334] = 1, - ACTIONS(2146), 1, - anon_sym_RBRACK_COLON, - [15338] = 1, - ACTIONS(2148), 1, sym__newline, - [15342] = 1, - ACTIONS(686), 1, - sym__indented_content_spacer, [15346] = 1, - ACTIONS(710), 1, - sym__indented_content_spacer, + ACTIONS(2146), 1, + sym__newline, [15350] = 1, - ACTIONS(678), 1, - sym__indented_content_spacer, + ACTIONS(2148), 1, + sym__newline, [15354] = 1, ACTIONS(2150), 1, - sym__indented_content_spacer, + sym__newline, [15358] = 1, ACTIONS(2152), 1, - sym__block_close, + sym__newline, [15362] = 1, ACTIONS(2154), 1, sym__newline, [15366] = 1, - ACTIONS(830), 1, - sym__indented_content_spacer, - [15370] = 1, ACTIONS(2156), 1, - sym_table_cell_alignment, - [15374] = 1, - ACTIONS(724), 1, + anon_sym_RBRACK_COLON, + [15370] = 1, + ACTIONS(2158), 1, sym__indented_content_spacer, + [15374] = 1, + ACTIONS(2160), 1, + anon_sym_RBRACK, [15378] = 1, - ACTIONS(820), 1, - sym__indented_content_spacer, + ACTIONS(2162), 1, + sym__footnote_mark_begin, [15382] = 1, - ACTIONS(824), 1, - sym__indented_content_spacer, + ACTIONS(2164), 1, + anon_sym_RBRACK, [15386] = 1, - ACTIONS(690), 1, - sym__indented_content_spacer, + ACTIONS(2166), 1, + anon_sym_RBRACK_COLON, [15390] = 1, - ACTIONS(2158), 1, - sym__block_close, - [15394] = 1, - ACTIONS(2160), 1, + ACTIONS(2168), 1, sym__eof_or_newline, + [15394] = 1, + ACTIONS(2170), 1, + sym__newline, [15398] = 1, - ACTIONS(828), 1, + ACTIONS(670), 1, sym__indented_content_spacer, [15402] = 1, - ACTIONS(2162), 1, - anon_sym_RBRACK, + ACTIONS(2172), 1, + sym_frontmatter_marker, [15406] = 1, - ACTIONS(2164), 1, - sym__block_close, + ACTIONS(2174), 1, + sym__newline, [15410] = 1, - ACTIONS(864), 1, - sym__indented_content_spacer, + ACTIONS(2176), 1, + sym__newline, [15414] = 1, - ACTIONS(2166), 1, - sym__block_close, + ACTIONS(674), 1, + sym__indented_content_spacer, [15418] = 1, - ACTIONS(2168), 1, - anon_sym_RBRACK, + ACTIONS(2178), 1, + sym_language, [15422] = 1, - ACTIONS(2170), 1, - sym__list_item_continuation, + ACTIONS(2180), 1, + sym__newline, [15426] = 1, - ACTIONS(2172), 1, - sym__block_close, + ACTIONS(2182), 1, + sym__newline, [15430] = 1, - ACTIONS(2174), 1, - sym__block_close, + ACTIONS(724), 1, + sym__indented_content_spacer, [15434] = 1, - ACTIONS(2176), 1, - sym__newline, + ACTIONS(678), 1, + sym__indented_content_spacer, [15438] = 1, - ACTIONS(2178), 1, - sym__whitespace, + ACTIONS(2184), 1, + anon_sym_RBRACK, [15442] = 1, - ACTIONS(2180), 1, - sym__indented_content_spacer, + ACTIONS(2186), 1, + anon_sym_RBRACK, [15446] = 1, - ACTIONS(2182), 1, - sym__footnote_mark_begin, + ACTIONS(2188), 1, + sym__block_close, [15450] = 1, - ACTIONS(881), 1, - sym_list_marker_dash, - [15454] = 1, - ACTIONS(2184), 1, + ACTIONS(2190), 1, sym__newline, + [15454] = 1, + ACTIONS(2192), 1, + sym__whitespace, [15458] = 1, - ACTIONS(2186), 1, - sym__newline, - [15462] = 1, - ACTIONS(840), 1, + ACTIONS(2194), 1, sym__indented_content_spacer, + [15462] = 1, + ACTIONS(881), 1, + sym_list_marker_dash, [15466] = 1, - ACTIONS(2188), 1, + ACTIONS(2196), 1, sym__newline, [15470] = 1, - ACTIONS(2190), 1, - sym__newline, + ACTIONS(2198), 1, + anon_sym_PIPE, [15474] = 1, - ACTIONS(2192), 1, - sym__newline, + ACTIONS(682), 1, + sym__indented_content_spacer, [15478] = 1, - ACTIONS(2194), 1, - aux_sym_value_token1, + ACTIONS(686), 1, + sym__indented_content_spacer, [15482] = 1, - ACTIONS(2196), 1, - sym__block_close, + ACTIONS(2200), 1, + sym__newline, [15486] = 1, - ACTIONS(885), 1, - sym_list_marker_plus, + ACTIONS(2202), 1, + sym__indented_content_spacer, [15490] = 1, - ACTIONS(2198), 1, + ACTIONS(2204), 1, sym__newline, [15494] = 1, - ACTIONS(2200), 1, - sym__newline, + ACTIONS(885), 1, + sym_list_marker_plus, [15498] = 1, - ACTIONS(2202), 1, + ACTIONS(2206), 1, sym__block_close, [15502] = 1, - ACTIONS(2204), 1, - anon_sym_PIPE, + ACTIONS(690), 1, + sym__indented_content_spacer, [15506] = 1, - ACTIONS(844), 1, + ACTIONS(830), 1, sym__indented_content_spacer, [15510] = 1, - ACTIONS(2206), 1, + ACTIONS(2208), 1, sym__newline, [15514] = 1, - ACTIONS(2208), 1, - anon_sym_PIPE, - [15518] = 1, ACTIONS(2210), 1, - sym__newline, + sym__list_item_continuation, + [15518] = 1, + ACTIONS(694), 1, + sym__indented_content_spacer, [15522] = 1, ACTIONS(2212), 1, sym__block_close, [15526] = 1, ACTIONS(2214), 1, - sym__block_close, - [15530] = 1, - ACTIONS(2216), 1, sym__newline, + [15530] = 1, + ACTIONS(883), 1, + sym_list_marker_star, [15534] = 1, - ACTIONS(2218), 1, + ACTIONS(2216), 1, sym__newline, [15538] = 1, - ACTIONS(2220), 1, - sym__newline, + ACTIONS(2218), 1, + sym__block_close, [15542] = 1, + ACTIONS(2220), 1, + sym__block_close, + [15546] = 1, ACTIONS(2222), 1, sym__newline, - [15546] = 1, + [15550] = 1, ACTIONS(2224), 1, sym__newline, - [15550] = 1, + [15554] = 1, ACTIONS(2226), 1, sym__newline, - [15554] = 1, + [15558] = 1, ACTIONS(2228), 1, sym__newline, - [15558] = 1, + [15562] = 1, ACTIONS(2230), 1, sym__newline, - [15562] = 1, + [15566] = 1, ACTIONS(2232), 1, sym__newline, - [15566] = 1, - ACTIONS(2234), 1, - sym__whitespace1, [15570] = 1, - ACTIONS(2236), 1, + ACTIONS(2234), 1, sym__newline, [15574] = 1, - ACTIONS(814), 1, - sym__indented_content_spacer, + ACTIONS(2236), 1, + sym__newline, [15578] = 1, - ACTIONS(883), 1, - sym_list_marker_star, - [15582] = 1, ACTIONS(2238), 1, - sym__block_close, - [15586] = 1, + sym__newline, + [15582] = 1, ACTIONS(2240), 1, - sym__whitespace, - [15590] = 1, + sym__newline, + [15586] = 1, ACTIONS(2242), 1, - sym__indented_content_spacer, - [15594] = 1, - ACTIONS(2244), 1, sym__block_close, - [15598] = 1, + [15590] = 1, + ACTIONS(2244), 1, + sym__newline, + [15594] = 1, ACTIONS(2246), 1, - ts_builtin_sym_end, - [15602] = 1, - ACTIONS(2248), 1, anon_sym_PIPE, - [15606] = 1, + [15598] = 1, + ACTIONS(2248), 1, + sym__whitespace, + [15602] = 1, ACTIONS(2250), 1, - sym__newline, + sym_frontmatter_marker, + [15606] = 1, + ACTIONS(698), 1, + sym__indented_content_spacer, [15610] = 1, ACTIONS(2252), 1, - sym__footnote_continuation, + ts_builtin_sym_end, [15614] = 1, ACTIONS(2254), 1, - sym__whitespace1, + sym__block_close, [15618] = 1, - ACTIONS(2256), 1, - sym__whitespace, - [15622] = 1, - ACTIONS(2258), 1, + ACTIONS(702), 1, sym__indented_content_spacer, + [15622] = 1, + ACTIONS(2256), 1, + anon_sym_PIPE, [15626] = 1, - ACTIONS(2260), 1, - sym__whitespace1, + ACTIONS(2258), 1, + sym__footnote_continuation, [15630] = 1, - ACTIONS(2262), 1, - sym__newline, + ACTIONS(2260), 1, + sym__whitespace, [15634] = 1, - ACTIONS(2264), 1, - sym__newline, + ACTIONS(710), 1, + sym__indented_content_spacer, [15638] = 1, - ACTIONS(848), 1, + ACTIONS(2262), 1, sym__indented_content_spacer, [15642] = 1, - ACTIONS(2266), 1, - sym__indented_content_spacer, + ACTIONS(2264), 1, + sym__newline, [15646] = 1, - ACTIONS(852), 1, + ACTIONS(864), 1, sym__indented_content_spacer, [15650] = 1, - ACTIONS(2268), 1, - sym__newline, + ACTIONS(2266), 1, + sym__block_close, [15654] = 1, - ACTIONS(706), 1, + ACTIONS(2268), 1, sym__indented_content_spacer, [15658] = 1, ACTIONS(2270), 1, - sym__whitespace1, - [15662] = 1, - ACTIONS(732), 1, sym__indented_content_spacer, - [15666] = 1, + [15662] = 1, ACTIONS(2272), 1, - sym_frontmatter_marker, + sym__block_close, + [15666] = 1, + ACTIONS(820), 1, + sym__indented_content_spacer, [15670] = 1, - ACTIONS(2274), 1, - sym__newline, + ACTIONS(706), 1, + sym__indented_content_spacer, [15674] = 1, - ACTIONS(2276), 1, - sym__newline, + ACTIONS(840), 1, + sym__indented_content_spacer, [15678] = 1, - ACTIONS(2278), 1, - sym__newline, + ACTIONS(732), 1, + sym__indented_content_spacer, [15682] = 1, - ACTIONS(2280), 1, - sym__list_item_continuation, + ACTIONS(2274), 1, + sym__whitespace1, [15686] = 1, - ACTIONS(2282), 1, - sym__block_close, + ACTIONS(2276), 1, + sym__whitespace1, [15690] = 1, - ACTIONS(856), 1, - sym__indented_content_spacer, + ACTIONS(2278), 1, + sym__block_close, [15694] = 1, - ACTIONS(736), 1, + ACTIONS(814), 1, sym__indented_content_spacer, [15698] = 1, - ACTIONS(2284), 1, - sym__block_close, - [15702] = 1, - ACTIONS(2286), 1, + ACTIONS(2280), 1, sym__newline, + [15702] = 1, + ACTIONS(2282), 1, + sym__whitespace1, [15706] = 1, - ACTIONS(670), 1, - sym__indented_content_spacer, + ACTIONS(2284), 1, + sym__newline, [15710] = 1, - ACTIONS(2288), 1, + ACTIONS(736), 1, sym__indented_content_spacer, [15714] = 1, - ACTIONS(2290), 1, - sym__eof_or_newline, + ACTIONS(2286), 1, + sym__block_close, [15718] = 1, - ACTIONS(2292), 1, + ACTIONS(2288), 1, sym__newline, [15722] = 1, - ACTIONS(2294), 1, - sym__newline, + ACTIONS(2290), 1, + sym__block_close, [15726] = 1, - ACTIONS(740), 1, + ACTIONS(2292), 1, sym__indented_content_spacer, [15730] = 1, - ACTIONS(744), 1, - sym__indented_content_spacer, + ACTIONS(2294), 1, + sym__newline, [15734] = 1, ACTIONS(2296), 1, sym__newline, @@ -26143,379 +26146,391 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2298), 1, sym__newline, [15742] = 1, + ACTIONS(740), 1, + sym__indented_content_spacer, + [15746] = 1, + ACTIONS(744), 1, + sym__indented_content_spacer, + [15750] = 1, ACTIONS(2300), 1, sym__newline, - [15746] = 1, + [15754] = 1, ACTIONS(2302), 1, sym__newline, - [15750] = 1, + [15758] = 1, ACTIONS(2304), 1, sym__newline, - [15754] = 1, + [15762] = 1, ACTIONS(2306), 1, - sym__whitespace1, - [15758] = 1, + sym__newline, + [15766] = 1, ACTIONS(2308), 1, - sym__whitespace, - [15762] = 1, + sym__newline, + [15770] = 1, ACTIONS(2310), 1, + sym__whitespace1, + [15774] = 1, + ACTIONS(2312), 1, + sym__whitespace, + [15778] = 1, + ACTIONS(2314), 1, sym__indented_content_spacer, - [15766] = 1, + [15782] = 1, ACTIONS(748), 1, sym__indented_content_spacer, - [15770] = 1, + [15786] = 1, ACTIONS(752), 1, sym__indented_content_spacer, - [15774] = 1, + [15790] = 1, ACTIONS(756), 1, sym__indented_content_spacer, - [15778] = 1, - ACTIONS(2312), 1, - sym__newline, - [15782] = 1, - ACTIONS(2314), 1, - sym_link_destination, - [15786] = 1, + [15794] = 1, ACTIONS(2316), 1, - sym__indented_content_spacer, - [15790] = 1, + sym__newline, + [15798] = 1, ACTIONS(2318), 1, sym__newline, - [15794] = 1, + [15802] = 1, + ACTIONS(538), 1, + sym__indented_content_spacer, + [15806] = 1, ACTIONS(2320), 1, sym__newline, - [15798] = 1, + [15810] = 1, ACTIONS(2322), 1, sym__newline, - [15802] = 1, + [15814] = 1, + ACTIONS(2324), 1, + sym__block_close, + [15818] = 1, ACTIONS(760), 1, sym__indented_content_spacer, - [15806] = 1, + [15822] = 1, ACTIONS(764), 1, sym__indented_content_spacer, - [15810] = 1, - ACTIONS(2324), 1, - sym__newline, - [15814] = 1, + [15826] = 1, ACTIONS(2326), 1, sym__newline, - [15818] = 1, + [15830] = 1, ACTIONS(2328), 1, sym__newline, - [15822] = 1, + [15834] = 1, ACTIONS(2330), 1, - sym__block_close, - [15826] = 1, + sym__eof_or_newline, + [15838] = 1, + ACTIONS(844), 1, + sym__indented_content_spacer, + [15842] = 1, ACTIONS(2332), 1, - sym__newline, - [15830] = 1, + sym__block_close, + [15846] = 1, ACTIONS(2334), 1, sym__whitespace1, - [15834] = 1, + [15850] = 1, ACTIONS(2336), 1, sym__whitespace, - [15838] = 1, + [15854] = 1, ACTIONS(2338), 1, sym__indented_content_spacer, - [15842] = 1, + [15858] = 1, ACTIONS(768), 1, sym__indented_content_spacer, - [15846] = 1, + [15862] = 1, ACTIONS(772), 1, sym__indented_content_spacer, - [15850] = 1, + [15866] = 1, ACTIONS(776), 1, sym__indented_content_spacer, - [15854] = 1, + [15870] = 1, ACTIONS(2340), 1, sym__newline, - [15858] = 1, - ACTIONS(2342), 1, - anon_sym_EQ, - [15862] = 1, - ACTIONS(2344), 1, - sym__indented_content_spacer, - [15866] = 1, - ACTIONS(2346), 1, - anon_sym_EQ, - [15870] = 1, - ACTIONS(2348), 1, - sym__whitespace1, [15874] = 1, - ACTIONS(2350), 1, - anon_sym_RBRACK, + ACTIONS(2342), 1, + sym__newline, [15878] = 1, - ACTIONS(780), 1, + ACTIONS(2344), 1, sym__indented_content_spacer, [15882] = 1, - ACTIONS(784), 1, - sym__indented_content_spacer, + ACTIONS(2346), 1, + aux_sym_value_token1, [15886] = 1, - ACTIONS(2352), 1, + ACTIONS(2348), 1, sym__newline, [15890] = 1, - ACTIONS(2354), 1, - sym__newline, - [15894] = 1, - ACTIONS(1860), 1, + ACTIONS(1859), 1, sym_table_cell_alignment, + [15894] = 1, + ACTIONS(780), 1, + sym__indented_content_spacer, [15898] = 1, - ACTIONS(2356), 1, - anon_sym_COLON, + ACTIONS(784), 1, + sym__indented_content_spacer, [15902] = 1, - ACTIONS(2358), 1, + ACTIONS(2350), 1, sym__newline, [15906] = 1, - ACTIONS(2360), 1, - sym__whitespace1, + ACTIONS(2352), 1, + sym__newline, [15910] = 1, - ACTIONS(2362), 1, - sym__whitespace, + ACTIONS(824), 1, + sym__indented_content_spacer, [15914] = 1, - ACTIONS(2364), 1, + ACTIONS(828), 1, sym__indented_content_spacer, [15918] = 1, - ACTIONS(788), 1, - sym__indented_content_spacer, + ACTIONS(2354), 1, + sym__whitespace1, [15922] = 1, - ACTIONS(792), 1, - sym__indented_content_spacer, + ACTIONS(2356), 1, + sym__whitespace1, [15926] = 1, - ACTIONS(2366), 1, - sym__newline, + ACTIONS(2358), 1, + sym__whitespace, [15930] = 1, - ACTIONS(1250), 1, - sym__newline, + ACTIONS(2360), 1, + sym__indented_content_spacer, [15934] = 1, - ACTIONS(2368), 1, + ACTIONS(788), 1, sym__indented_content_spacer, [15938] = 1, - ACTIONS(2370), 1, - sym__newline, + ACTIONS(792), 1, + sym__indented_content_spacer, [15942] = 1, - ACTIONS(2372), 1, - sym__block_close, + ACTIONS(2362), 1, + sym__newline, [15946] = 1, - ACTIONS(2374), 1, - sym__block_close, + ACTIONS(848), 1, + sym__indented_content_spacer, [15950] = 1, - ACTIONS(796), 1, + ACTIONS(2364), 1, sym__indented_content_spacer, [15954] = 1, - ACTIONS(800), 1, + ACTIONS(852), 1, sym__indented_content_spacer, [15958] = 1, - ACTIONS(2376), 1, + ACTIONS(2366), 1, sym__newline, [15962] = 1, - ACTIONS(2378), 1, + ACTIONS(2368), 1, sym__newline, [15966] = 1, - ACTIONS(2380), 1, - sym__block_close, + ACTIONS(796), 1, + sym__indented_content_spacer, [15970] = 1, - ACTIONS(682), 1, + ACTIONS(800), 1, sym__indented_content_spacer, [15974] = 1, - ACTIONS(2382), 1, + ACTIONS(2370), 1, sym__newline, [15978] = 1, - ACTIONS(2384), 1, - sym__whitespace1, + ACTIONS(2372), 1, + sym__newline, [15982] = 1, - ACTIONS(2386), 1, - sym__whitespace, + ACTIONS(2374), 1, + sym__whitespace1, [15986] = 1, - ACTIONS(2388), 1, - sym__indented_content_spacer, + ACTIONS(2376), 1, + sym__newline, [15990] = 1, - ACTIONS(2390), 1, - sym__indented_content_spacer, + ACTIONS(2378), 1, + sym__list_item_continuation, [15994] = 1, - ACTIONS(2392), 1, - sym__indented_content_spacer, + ACTIONS(2380), 1, + sym__whitespace1, [15998] = 1, - ACTIONS(2394), 1, - sym__indented_content_spacer, + ACTIONS(2382), 1, + sym__whitespace, [16002] = 1, - ACTIONS(2396), 1, + ACTIONS(2384), 1, sym__indented_content_spacer, [16006] = 1, - ACTIONS(2398), 1, + ACTIONS(2386), 1, sym__indented_content_spacer, [16010] = 1, - ACTIONS(2400), 1, + ACTIONS(2388), 1, sym__indented_content_spacer, [16014] = 1, - ACTIONS(2402), 1, + ACTIONS(2390), 1, sym__indented_content_spacer, [16018] = 1, - ACTIONS(2404), 1, + ACTIONS(2392), 1, sym__indented_content_spacer, [16022] = 1, - ACTIONS(2406), 1, + ACTIONS(2394), 1, sym__indented_content_spacer, [16026] = 1, - ACTIONS(2408), 1, + ACTIONS(2396), 1, sym__indented_content_spacer, [16030] = 1, - ACTIONS(2410), 1, + ACTIONS(2398), 1, sym__indented_content_spacer, [16034] = 1, - ACTIONS(2412), 1, + ACTIONS(2400), 1, sym__indented_content_spacer, [16038] = 1, - ACTIONS(2414), 1, + ACTIONS(2402), 1, sym__indented_content_spacer, [16042] = 1, - ACTIONS(2416), 1, + ACTIONS(2404), 1, sym__indented_content_spacer, [16046] = 1, - ACTIONS(2418), 1, - sym__whitespace, + ACTIONS(2406), 1, + sym__indented_content_spacer, [16050] = 1, - ACTIONS(2420), 1, - sym__newline, + ACTIONS(2408), 1, + sym__indented_content_spacer, [16054] = 1, - ACTIONS(2422), 1, - sym_table_cell_alignment, + ACTIONS(2410), 1, + sym__indented_content_spacer, [16058] = 1, - ACTIONS(2424), 1, - sym__newline, + ACTIONS(2412), 1, + sym__indented_content_spacer, [16062] = 1, - ACTIONS(2426), 1, - anon_sym_RBRACK_COLON, + ACTIONS(2414), 1, + sym__whitespace, [16066] = 1, - ACTIONS(2428), 1, - sym_link_destination, + ACTIONS(2416), 1, + sym__newline, [16070] = 1, - ACTIONS(2430), 1, - sym__whitespace, + ACTIONS(2418), 1, + sym_table_cell_alignment, [16074] = 1, - ACTIONS(2432), 1, - sym__newline, + ACTIONS(2420), 1, + sym__block_close, [16078] = 1, - ACTIONS(2434), 1, - sym_table_cell_alignment, + ACTIONS(2422), 1, + anon_sym_RBRACK_COLON, [16082] = 1, - ACTIONS(2436), 1, - sym__newline, + ACTIONS(2424), 1, + sym_link_destination, [16086] = 1, - ACTIONS(2438), 1, - anon_sym_RBRACK_COLON, + ACTIONS(2426), 1, + sym__whitespace, [16090] = 1, - ACTIONS(2440), 1, - sym_link_destination, + ACTIONS(2428), 1, + anon_sym_EQ, [16094] = 1, - ACTIONS(2442), 1, - sym__whitespace, + ACTIONS(2430), 1, + sym_table_cell_alignment, [16098] = 1, - ACTIONS(2444), 1, - sym__newline, + ACTIONS(2432), 1, + anon_sym_EQ, [16102] = 1, - ACTIONS(2446), 1, - sym_table_cell_alignment, + ACTIONS(2434), 1, + anon_sym_RBRACK_COLON, [16106] = 1, - ACTIONS(2448), 1, - sym__newline, + ACTIONS(2436), 1, + sym_link_destination, [16110] = 1, - ACTIONS(2450), 1, - anon_sym_RBRACK_COLON, + ACTIONS(2438), 1, + sym__whitespace, [16114] = 1, - ACTIONS(2452), 1, - sym_link_destination, + ACTIONS(2440), 1, + sym__block_close, [16118] = 1, - ACTIONS(2454), 1, - sym__whitespace, + ACTIONS(2442), 1, + sym_table_cell_alignment, [16122] = 1, - ACTIONS(2456), 1, - sym__newline, + ACTIONS(856), 1, + sym__indented_content_spacer, [16126] = 1, - ACTIONS(2458), 1, - sym_table_cell_alignment, + ACTIONS(2444), 1, + anon_sym_RBRACK_COLON, [16130] = 1, - ACTIONS(2460), 1, - sym__newline, + ACTIONS(2446), 1, + sym_link_destination, [16134] = 1, - ACTIONS(2462), 1, - anon_sym_RBRACK_COLON, + ACTIONS(2448), 1, + sym__whitespace, [16138] = 1, - ACTIONS(2464), 1, - sym_link_destination, + ACTIONS(2450), 1, + anon_sym_COLON, [16142] = 1, - ACTIONS(2466), 1, - sym__block_close, + ACTIONS(2452), 1, + sym_table_cell_alignment, [16146] = 1, - ACTIONS(2468), 1, - sym__whitespace1, - [16150] = 1, - ACTIONS(2470), 1, + ACTIONS(2454), 1, sym__block_close, + [16150] = 1, + ACTIONS(2456), 1, + anon_sym_RBRACK_COLON, [16154] = 1, - ACTIONS(2472), 1, - sym__whitespace1, + ACTIONS(2458), 1, + sym_link_destination, [16158] = 1, - ACTIONS(2474), 1, - sym__newline, + ACTIONS(2460), 1, + sym__block_close, [16162] = 1, - ACTIONS(2476), 1, + ACTIONS(2462), 1, sym__whitespace1, [16166] = 1, - ACTIONS(2478), 1, - anon_sym_DQUOTE, + ACTIONS(2464), 1, + sym__newline, [16170] = 1, - ACTIONS(2480), 1, + ACTIONS(2466), 1, sym__whitespace1, [16174] = 1, - ACTIONS(2482), 1, - sym__footnote_mark_begin, + ACTIONS(2468), 1, + anon_sym_DQUOTE, [16178] = 1, - ACTIONS(2484), 1, - anon_sym_COLON, + ACTIONS(2470), 1, + sym__whitespace1, [16182] = 1, - ACTIONS(2486), 1, - sym__footnote_mark_begin, + ACTIONS(2472), 1, + sym_link_destination, [16186] = 1, - ACTIONS(2488), 1, - anon_sym_COLON, + ACTIONS(2474), 1, + sym__whitespace1, [16190] = 1, - ACTIONS(538), 1, - sym__indented_content_spacer, + ACTIONS(2476), 1, + sym__footnote_mark_begin, [16194] = 1, - ACTIONS(2490), 1, + ACTIONS(2478), 1, anon_sym_COLON, [16198] = 1, - ACTIONS(2492), 1, + ACTIONS(2480), 1, sym__footnote_mark_begin, [16202] = 1, - ACTIONS(2494), 1, + ACTIONS(2482), 1, anon_sym_COLON, [16206] = 1, - ACTIONS(2496), 1, - anon_sym_RBRACK, + ACTIONS(2484), 1, + sym__footnote_mark_begin, [16210] = 1, - ACTIONS(2498), 1, - anon_sym_RBRACK, + ACTIONS(2486), 1, + anon_sym_COLON, [16214] = 1, - ACTIONS(2500), 1, - anon_sym_RBRACK, + ACTIONS(2488), 1, + sym_table_cell_alignment, [16218] = 1, - ACTIONS(2502), 1, - anon_sym_RBRACK, + ACTIONS(2490), 1, + anon_sym_COLON, [16222] = 1, + ACTIONS(2492), 1, + anon_sym_RBRACK, + [16226] = 1, + ACTIONS(2494), 1, + anon_sym_RBRACK, + [16230] = 1, + ACTIONS(2496), 1, + anon_sym_RBRACK, + [16234] = 1, + ACTIONS(2498), 1, + anon_sym_RBRACK, + [16238] = 1, ACTIONS(664), 1, sym__indented_content_spacer, - [16226] = 1, + [16242] = 1, ACTIONS(804), 1, sym__indented_content_spacer, - [16230] = 1, + [16246] = 1, ACTIONS(808), 1, sym__indented_content_spacer, - [16234] = 1, + [16250] = 1, ACTIONS(812), 1, sym__indented_content_spacer, - [16238] = 1, - ACTIONS(674), 1, + [16254] = 1, + ACTIONS(2500), 1, sym__indented_content_spacer, }; @@ -26701,930 +26716,929 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(244)] = 8013, [SMALL_STATE(245)] = 8044, [SMALL_STATE(246)] = 8070, - [SMALL_STATE(247)] = 8098, - [SMALL_STATE(248)] = 8124, - [SMALL_STATE(249)] = 8150, - [SMALL_STATE(250)] = 8176, - [SMALL_STATE(251)] = 8202, - [SMALL_STATE(252)] = 8233, - [SMALL_STATE(253)] = 8264, - [SMALL_STATE(254)] = 8289, - [SMALL_STATE(255)] = 8320, - [SMALL_STATE(256)] = 8351, - [SMALL_STATE(257)] = 8376, - [SMALL_STATE(258)] = 8401, - [SMALL_STATE(259)] = 8432, - [SMALL_STATE(260)] = 8457, - [SMALL_STATE(261)] = 8482, - [SMALL_STATE(262)] = 8513, - [SMALL_STATE(263)] = 8538, - [SMALL_STATE(264)] = 8563, - [SMALL_STATE(265)] = 8594, - [SMALL_STATE(266)] = 8625, - [SMALL_STATE(267)] = 8650, - [SMALL_STATE(268)] = 8681, - [SMALL_STATE(269)] = 8712, - [SMALL_STATE(270)] = 8737, - [SMALL_STATE(271)] = 8768, - [SMALL_STATE(272)] = 8788, - [SMALL_STATE(273)] = 8810, - [SMALL_STATE(274)] = 8830, - [SMALL_STATE(275)] = 8849, - [SMALL_STATE(276)] = 8868, - [SMALL_STATE(277)] = 8887, - [SMALL_STATE(278)] = 8906, - [SMALL_STATE(279)] = 8925, - [SMALL_STATE(280)] = 8944, - [SMALL_STATE(281)] = 8958, - [SMALL_STATE(282)] = 8972, - [SMALL_STATE(283)] = 8988, - [SMALL_STATE(284)] = 9002, - [SMALL_STATE(285)] = 9018, - [SMALL_STATE(286)] = 9043, - [SMALL_STATE(287)] = 9054, - [SMALL_STATE(288)] = 9079, - [SMALL_STATE(289)] = 9102, - [SMALL_STATE(290)] = 9125, - [SMALL_STATE(291)] = 9148, - [SMALL_STATE(292)] = 9171, - [SMALL_STATE(293)] = 9196, - [SMALL_STATE(294)] = 9219, - [SMALL_STATE(295)] = 9232, - [SMALL_STATE(296)] = 9255, - [SMALL_STATE(297)] = 9278, - [SMALL_STATE(298)] = 9303, - [SMALL_STATE(299)] = 9326, - [SMALL_STATE(300)] = 9349, - [SMALL_STATE(301)] = 9372, - [SMALL_STATE(302)] = 9395, - [SMALL_STATE(303)] = 9420, - [SMALL_STATE(304)] = 9443, - [SMALL_STATE(305)] = 9468, - [SMALL_STATE(306)] = 9491, - [SMALL_STATE(307)] = 9514, - [SMALL_STATE(308)] = 9527, - [SMALL_STATE(309)] = 9538, - [SMALL_STATE(310)] = 9549, - [SMALL_STATE(311)] = 9560, - [SMALL_STATE(312)] = 9571, - [SMALL_STATE(313)] = 9582, - [SMALL_STATE(314)] = 9593, - [SMALL_STATE(315)] = 9604, - [SMALL_STATE(316)] = 9627, - [SMALL_STATE(317)] = 9649, - [SMALL_STATE(318)] = 9671, - [SMALL_STATE(319)] = 9693, - [SMALL_STATE(320)] = 9715, - [SMALL_STATE(321)] = 9737, - [SMALL_STATE(322)] = 9747, - [SMALL_STATE(323)] = 9769, - [SMALL_STATE(324)] = 9791, - [SMALL_STATE(325)] = 9813, - [SMALL_STATE(326)] = 9823, - [SMALL_STATE(327)] = 9833, - [SMALL_STATE(328)] = 9843, - [SMALL_STATE(329)] = 9865, - [SMALL_STATE(330)] = 9887, - [SMALL_STATE(331)] = 9909, - [SMALL_STATE(332)] = 9931, - [SMALL_STATE(333)] = 9941, - [SMALL_STATE(334)] = 9951, - [SMALL_STATE(335)] = 9973, - [SMALL_STATE(336)] = 9983, - [SMALL_STATE(337)] = 9993, - [SMALL_STATE(338)] = 10015, - [SMALL_STATE(339)] = 10025, - [SMALL_STATE(340)] = 10035, - [SMALL_STATE(341)] = 10045, - [SMALL_STATE(342)] = 10055, - [SMALL_STATE(343)] = 10077, - [SMALL_STATE(344)] = 10087, - [SMALL_STATE(345)] = 10097, - [SMALL_STATE(346)] = 10117, - [SMALL_STATE(347)] = 10137, - [SMALL_STATE(348)] = 10159, - [SMALL_STATE(349)] = 10181, - [SMALL_STATE(350)] = 10203, - [SMALL_STATE(351)] = 10222, - [SMALL_STATE(352)] = 10241, - [SMALL_STATE(353)] = 10260, - [SMALL_STATE(354)] = 10279, - [SMALL_STATE(355)] = 10298, - [SMALL_STATE(356)] = 10317, - [SMALL_STATE(357)] = 10336, - [SMALL_STATE(358)] = 10351, - [SMALL_STATE(359)] = 10360, - [SMALL_STATE(360)] = 10379, - [SMALL_STATE(361)] = 10388, - [SMALL_STATE(362)] = 10407, - [SMALL_STATE(363)] = 10416, - [SMALL_STATE(364)] = 10435, - [SMALL_STATE(365)] = 10454, - [SMALL_STATE(366)] = 10469, - [SMALL_STATE(367)] = 10488, - [SMALL_STATE(368)] = 10507, - [SMALL_STATE(369)] = 10526, - [SMALL_STATE(370)] = 10541, - [SMALL_STATE(371)] = 10560, - [SMALL_STATE(372)] = 10579, - [SMALL_STATE(373)] = 10598, - [SMALL_STATE(374)] = 10617, - [SMALL_STATE(375)] = 10636, - [SMALL_STATE(376)] = 10655, - [SMALL_STATE(377)] = 10674, - [SMALL_STATE(378)] = 10693, - [SMALL_STATE(379)] = 10712, - [SMALL_STATE(380)] = 10731, - [SMALL_STATE(381)] = 10750, - [SMALL_STATE(382)] = 10769, - [SMALL_STATE(383)] = 10788, - [SMALL_STATE(384)] = 10807, - [SMALL_STATE(385)] = 10826, - [SMALL_STATE(386)] = 10845, - [SMALL_STATE(387)] = 10864, - [SMALL_STATE(388)] = 10883, - [SMALL_STATE(389)] = 10902, - [SMALL_STATE(390)] = 10921, - [SMALL_STATE(391)] = 10940, - [SMALL_STATE(392)] = 10959, - [SMALL_STATE(393)] = 10978, - [SMALL_STATE(394)] = 10997, - [SMALL_STATE(395)] = 11016, - [SMALL_STATE(396)] = 11035, - [SMALL_STATE(397)] = 11054, - [SMALL_STATE(398)] = 11073, - [SMALL_STATE(399)] = 11082, - [SMALL_STATE(400)] = 11097, - [SMALL_STATE(401)] = 11106, - [SMALL_STATE(402)] = 11125, - [SMALL_STATE(403)] = 11144, - [SMALL_STATE(404)] = 11153, - [SMALL_STATE(405)] = 11172, - [SMALL_STATE(406)] = 11181, - [SMALL_STATE(407)] = 11200, - [SMALL_STATE(408)] = 11215, - [SMALL_STATE(409)] = 11234, - [SMALL_STATE(410)] = 11243, - [SMALL_STATE(411)] = 11262, - [SMALL_STATE(412)] = 11281, - [SMALL_STATE(413)] = 11300, - [SMALL_STATE(414)] = 11319, - [SMALL_STATE(415)] = 11338, - [SMALL_STATE(416)] = 11347, - [SMALL_STATE(417)] = 11366, - [SMALL_STATE(418)] = 11380, - [SMALL_STATE(419)] = 11394, - [SMALL_STATE(420)] = 11408, - [SMALL_STATE(421)] = 11420, - [SMALL_STATE(422)] = 11432, - [SMALL_STATE(423)] = 11444, - [SMALL_STATE(424)] = 11457, - [SMALL_STATE(425)] = 11470, - [SMALL_STATE(426)] = 11483, - [SMALL_STATE(427)] = 11496, - [SMALL_STATE(428)] = 11509, - [SMALL_STATE(429)] = 11522, - [SMALL_STATE(430)] = 11535, - [SMALL_STATE(431)] = 11548, - [SMALL_STATE(432)] = 11561, - [SMALL_STATE(433)] = 11574, - [SMALL_STATE(434)] = 11587, - [SMALL_STATE(435)] = 11600, - [SMALL_STATE(436)] = 11613, - [SMALL_STATE(437)] = 11626, - [SMALL_STATE(438)] = 11639, - [SMALL_STATE(439)] = 11652, - [SMALL_STATE(440)] = 11665, - [SMALL_STATE(441)] = 11676, - [SMALL_STATE(442)] = 11687, - [SMALL_STATE(443)] = 11700, - [SMALL_STATE(444)] = 11711, - [SMALL_STATE(445)] = 11720, - [SMALL_STATE(446)] = 11731, - [SMALL_STATE(447)] = 11742, - [SMALL_STATE(448)] = 11751, - [SMALL_STATE(449)] = 11760, - [SMALL_STATE(450)] = 11769, - [SMALL_STATE(451)] = 11778, - [SMALL_STATE(452)] = 11787, - [SMALL_STATE(453)] = 11796, - [SMALL_STATE(454)] = 11805, - [SMALL_STATE(455)] = 11814, - [SMALL_STATE(456)] = 11823, - [SMALL_STATE(457)] = 11832, - [SMALL_STATE(458)] = 11841, - [SMALL_STATE(459)] = 11848, - [SMALL_STATE(460)] = 11861, - [SMALL_STATE(461)] = 11874, - [SMALL_STATE(462)] = 11887, - [SMALL_STATE(463)] = 11900, - [SMALL_STATE(464)] = 11913, - [SMALL_STATE(465)] = 11926, - [SMALL_STATE(466)] = 11939, - [SMALL_STATE(467)] = 11952, - [SMALL_STATE(468)] = 11965, - [SMALL_STATE(469)] = 11978, - [SMALL_STATE(470)] = 11991, - [SMALL_STATE(471)] = 12004, - [SMALL_STATE(472)] = 12017, - [SMALL_STATE(473)] = 12030, - [SMALL_STATE(474)] = 12043, - [SMALL_STATE(475)] = 12056, - [SMALL_STATE(476)] = 12067, - [SMALL_STATE(477)] = 12078, - [SMALL_STATE(478)] = 12089, - [SMALL_STATE(479)] = 12102, - [SMALL_STATE(480)] = 12115, - [SMALL_STATE(481)] = 12128, - [SMALL_STATE(482)] = 12141, - [SMALL_STATE(483)] = 12154, - [SMALL_STATE(484)] = 12167, - [SMALL_STATE(485)] = 12180, - [SMALL_STATE(486)] = 12193, - [SMALL_STATE(487)] = 12206, - [SMALL_STATE(488)] = 12219, - [SMALL_STATE(489)] = 12232, - [SMALL_STATE(490)] = 12245, - [SMALL_STATE(491)] = 12258, - [SMALL_STATE(492)] = 12271, - [SMALL_STATE(493)] = 12284, - [SMALL_STATE(494)] = 12297, - [SMALL_STATE(495)] = 12310, - [SMALL_STATE(496)] = 12323, - [SMALL_STATE(497)] = 12336, - [SMALL_STATE(498)] = 12349, - [SMALL_STATE(499)] = 12362, - [SMALL_STATE(500)] = 12375, - [SMALL_STATE(501)] = 12388, - [SMALL_STATE(502)] = 12401, - [SMALL_STATE(503)] = 12414, - [SMALL_STATE(504)] = 12427, - [SMALL_STATE(505)] = 12440, - [SMALL_STATE(506)] = 12453, - [SMALL_STATE(507)] = 12466, - [SMALL_STATE(508)] = 12479, - [SMALL_STATE(509)] = 12492, - [SMALL_STATE(510)] = 12505, - [SMALL_STATE(511)] = 12518, - [SMALL_STATE(512)] = 12531, - [SMALL_STATE(513)] = 12544, - [SMALL_STATE(514)] = 12557, - [SMALL_STATE(515)] = 12570, - [SMALL_STATE(516)] = 12583, - [SMALL_STATE(517)] = 12596, - [SMALL_STATE(518)] = 12609, - [SMALL_STATE(519)] = 12622, - [SMALL_STATE(520)] = 12635, - [SMALL_STATE(521)] = 12648, - [SMALL_STATE(522)] = 12661, - [SMALL_STATE(523)] = 12674, - [SMALL_STATE(524)] = 12687, - [SMALL_STATE(525)] = 12700, - [SMALL_STATE(526)] = 12713, - [SMALL_STATE(527)] = 12726, - [SMALL_STATE(528)] = 12739, - [SMALL_STATE(529)] = 12752, - [SMALL_STATE(530)] = 12765, - [SMALL_STATE(531)] = 12778, - [SMALL_STATE(532)] = 12791, - [SMALL_STATE(533)] = 12804, - [SMALL_STATE(534)] = 12817, - [SMALL_STATE(535)] = 12830, - [SMALL_STATE(536)] = 12843, - [SMALL_STATE(537)] = 12856, - [SMALL_STATE(538)] = 12869, - [SMALL_STATE(539)] = 12882, - [SMALL_STATE(540)] = 12895, - [SMALL_STATE(541)] = 12908, - [SMALL_STATE(542)] = 12921, - [SMALL_STATE(543)] = 12934, - [SMALL_STATE(544)] = 12947, - [SMALL_STATE(545)] = 12960, - [SMALL_STATE(546)] = 12966, - [SMALL_STATE(547)] = 12972, - [SMALL_STATE(548)] = 12978, - [SMALL_STATE(549)] = 12984, - [SMALL_STATE(550)] = 12990, - [SMALL_STATE(551)] = 13000, - [SMALL_STATE(552)] = 13010, - [SMALL_STATE(553)] = 13018, - [SMALL_STATE(554)] = 13028, - [SMALL_STATE(555)] = 13038, - [SMALL_STATE(556)] = 13048, - [SMALL_STATE(557)] = 13058, - [SMALL_STATE(558)] = 13068, - [SMALL_STATE(559)] = 13078, - [SMALL_STATE(560)] = 13088, - [SMALL_STATE(561)] = 13094, - [SMALL_STATE(562)] = 13100, - [SMALL_STATE(563)] = 13110, - [SMALL_STATE(564)] = 13118, - [SMALL_STATE(565)] = 13124, - [SMALL_STATE(566)] = 13132, - [SMALL_STATE(567)] = 13140, - [SMALL_STATE(568)] = 13148, - [SMALL_STATE(569)] = 13156, - [SMALL_STATE(570)] = 13166, - [SMALL_STATE(571)] = 13176, - [SMALL_STATE(572)] = 13186, - [SMALL_STATE(573)] = 13192, - [SMALL_STATE(574)] = 13198, - [SMALL_STATE(575)] = 13204, - [SMALL_STATE(576)] = 13214, - [SMALL_STATE(577)] = 13224, - [SMALL_STATE(578)] = 13230, - [SMALL_STATE(579)] = 13236, - [SMALL_STATE(580)] = 13244, - [SMALL_STATE(581)] = 13254, - [SMALL_STATE(582)] = 13264, - [SMALL_STATE(583)] = 13270, - [SMALL_STATE(584)] = 13280, - [SMALL_STATE(585)] = 13290, - [SMALL_STATE(586)] = 13296, - [SMALL_STATE(587)] = 13306, - [SMALL_STATE(588)] = 13316, - [SMALL_STATE(589)] = 13326, - [SMALL_STATE(590)] = 13332, - [SMALL_STATE(591)] = 13338, - [SMALL_STATE(592)] = 13344, - [SMALL_STATE(593)] = 13350, - [SMALL_STATE(594)] = 13356, - [SMALL_STATE(595)] = 13362, - [SMALL_STATE(596)] = 13372, - [SMALL_STATE(597)] = 13382, - [SMALL_STATE(598)] = 13392, - [SMALL_STATE(599)] = 13402, - [SMALL_STATE(600)] = 13412, - [SMALL_STATE(601)] = 13418, - [SMALL_STATE(602)] = 13424, - [SMALL_STATE(603)] = 13430, - [SMALL_STATE(604)] = 13440, - [SMALL_STATE(605)] = 13450, - [SMALL_STATE(606)] = 13456, - [SMALL_STATE(607)] = 13462, - [SMALL_STATE(608)] = 13472, - [SMALL_STATE(609)] = 13482, - [SMALL_STATE(610)] = 13488, - [SMALL_STATE(611)] = 13498, - [SMALL_STATE(612)] = 13504, - [SMALL_STATE(613)] = 13510, - [SMALL_STATE(614)] = 13516, - [SMALL_STATE(615)] = 13522, - [SMALL_STATE(616)] = 13528, - [SMALL_STATE(617)] = 13534, - [SMALL_STATE(618)] = 13542, - [SMALL_STATE(619)] = 13548, - [SMALL_STATE(620)] = 13554, - [SMALL_STATE(621)] = 13560, - [SMALL_STATE(622)] = 13566, - [SMALL_STATE(623)] = 13572, - [SMALL_STATE(624)] = 13578, - [SMALL_STATE(625)] = 13584, - [SMALL_STATE(626)] = 13590, - [SMALL_STATE(627)] = 13600, - [SMALL_STATE(628)] = 13610, - [SMALL_STATE(629)] = 13620, - [SMALL_STATE(630)] = 13630, - [SMALL_STATE(631)] = 13640, - [SMALL_STATE(632)] = 13650, - [SMALL_STATE(633)] = 13656, - [SMALL_STATE(634)] = 13662, - [SMALL_STATE(635)] = 13668, - [SMALL_STATE(636)] = 13674, - [SMALL_STATE(637)] = 13680, - [SMALL_STATE(638)] = 13686, - [SMALL_STATE(639)] = 13692, - [SMALL_STATE(640)] = 13698, - [SMALL_STATE(641)] = 13704, - [SMALL_STATE(642)] = 13710, - [SMALL_STATE(643)] = 13720, - [SMALL_STATE(644)] = 13726, - [SMALL_STATE(645)] = 13732, - [SMALL_STATE(646)] = 13738, - [SMALL_STATE(647)] = 13744, - [SMALL_STATE(648)] = 13752, - [SMALL_STATE(649)] = 13758, - [SMALL_STATE(650)] = 13764, - [SMALL_STATE(651)] = 13774, - [SMALL_STATE(652)] = 13784, - [SMALL_STATE(653)] = 13792, - [SMALL_STATE(654)] = 13802, - [SMALL_STATE(655)] = 13812, - [SMALL_STATE(656)] = 13818, - [SMALL_STATE(657)] = 13828, - [SMALL_STATE(658)] = 13836, - [SMALL_STATE(659)] = 13842, - [SMALL_STATE(660)] = 13850, - [SMALL_STATE(661)] = 13856, - [SMALL_STATE(662)] = 13862, - [SMALL_STATE(663)] = 13868, - [SMALL_STATE(664)] = 13874, - [SMALL_STATE(665)] = 13880, - [SMALL_STATE(666)] = 13886, - [SMALL_STATE(667)] = 13892, - [SMALL_STATE(668)] = 13900, - [SMALL_STATE(669)] = 13908, - [SMALL_STATE(670)] = 13914, - [SMALL_STATE(671)] = 13920, - [SMALL_STATE(672)] = 13926, - [SMALL_STATE(673)] = 13932, - [SMALL_STATE(674)] = 13938, - [SMALL_STATE(675)] = 13944, - [SMALL_STATE(676)] = 13950, - [SMALL_STATE(677)] = 13956, - [SMALL_STATE(678)] = 13962, - [SMALL_STATE(679)] = 13967, - [SMALL_STATE(680)] = 13972, - [SMALL_STATE(681)] = 13977, - [SMALL_STATE(682)] = 13982, - [SMALL_STATE(683)] = 13987, - [SMALL_STATE(684)] = 13992, - [SMALL_STATE(685)] = 13997, - [SMALL_STATE(686)] = 14002, - [SMALL_STATE(687)] = 14007, - [SMALL_STATE(688)] = 14012, - [SMALL_STATE(689)] = 14017, - [SMALL_STATE(690)] = 14022, - [SMALL_STATE(691)] = 14027, - [SMALL_STATE(692)] = 14032, - [SMALL_STATE(693)] = 14037, - [SMALL_STATE(694)] = 14042, - [SMALL_STATE(695)] = 14047, - [SMALL_STATE(696)] = 14052, - [SMALL_STATE(697)] = 14057, - [SMALL_STATE(698)] = 14062, - [SMALL_STATE(699)] = 14067, - [SMALL_STATE(700)] = 14074, - [SMALL_STATE(701)] = 14079, - [SMALL_STATE(702)] = 14084, - [SMALL_STATE(703)] = 14089, - [SMALL_STATE(704)] = 14094, - [SMALL_STATE(705)] = 14099, - [SMALL_STATE(706)] = 14106, - [SMALL_STATE(707)] = 14111, - [SMALL_STATE(708)] = 14116, - [SMALL_STATE(709)] = 14121, - [SMALL_STATE(710)] = 14126, - [SMALL_STATE(711)] = 14131, - [SMALL_STATE(712)] = 14136, - [SMALL_STATE(713)] = 14141, - [SMALL_STATE(714)] = 14146, - [SMALL_STATE(715)] = 14151, - [SMALL_STATE(716)] = 14156, - [SMALL_STATE(717)] = 14161, - [SMALL_STATE(718)] = 14166, - [SMALL_STATE(719)] = 14171, - [SMALL_STATE(720)] = 14176, - [SMALL_STATE(721)] = 14181, - [SMALL_STATE(722)] = 14186, - [SMALL_STATE(723)] = 14191, - [SMALL_STATE(724)] = 14198, - [SMALL_STATE(725)] = 14203, - [SMALL_STATE(726)] = 14210, - [SMALL_STATE(727)] = 14217, - [SMALL_STATE(728)] = 14224, - [SMALL_STATE(729)] = 14231, - [SMALL_STATE(730)] = 14238, - [SMALL_STATE(731)] = 14245, - [SMALL_STATE(732)] = 14252, - [SMALL_STATE(733)] = 14259, - [SMALL_STATE(734)] = 14266, - [SMALL_STATE(735)] = 14271, - [SMALL_STATE(736)] = 14276, - [SMALL_STATE(737)] = 14281, - [SMALL_STATE(738)] = 14286, - [SMALL_STATE(739)] = 14293, - [SMALL_STATE(740)] = 14300, - [SMALL_STATE(741)] = 14305, - [SMALL_STATE(742)] = 14312, - [SMALL_STATE(743)] = 14319, - [SMALL_STATE(744)] = 14324, - [SMALL_STATE(745)] = 14331, - [SMALL_STATE(746)] = 14336, - [SMALL_STATE(747)] = 14341, - [SMALL_STATE(748)] = 14348, - [SMALL_STATE(749)] = 14353, - [SMALL_STATE(750)] = 14358, - [SMALL_STATE(751)] = 14363, - [SMALL_STATE(752)] = 14368, - [SMALL_STATE(753)] = 14373, - [SMALL_STATE(754)] = 14378, - [SMALL_STATE(755)] = 14383, - [SMALL_STATE(756)] = 14388, - [SMALL_STATE(757)] = 14393, - [SMALL_STATE(758)] = 14398, - [SMALL_STATE(759)] = 14403, - [SMALL_STATE(760)] = 14408, - [SMALL_STATE(761)] = 14413, - [SMALL_STATE(762)] = 14418, - [SMALL_STATE(763)] = 14423, - [SMALL_STATE(764)] = 14428, - [SMALL_STATE(765)] = 14433, - [SMALL_STATE(766)] = 14438, - [SMALL_STATE(767)] = 14443, - [SMALL_STATE(768)] = 14448, - [SMALL_STATE(769)] = 14453, - [SMALL_STATE(770)] = 14458, - [SMALL_STATE(771)] = 14463, - [SMALL_STATE(772)] = 14470, - [SMALL_STATE(773)] = 14475, - [SMALL_STATE(774)] = 14480, - [SMALL_STATE(775)] = 14485, - [SMALL_STATE(776)] = 14490, - [SMALL_STATE(777)] = 14495, - [SMALL_STATE(778)] = 14502, - [SMALL_STATE(779)] = 14507, - [SMALL_STATE(780)] = 14514, - [SMALL_STATE(781)] = 14521, - [SMALL_STATE(782)] = 14526, - [SMALL_STATE(783)] = 14531, - [SMALL_STATE(784)] = 14536, - [SMALL_STATE(785)] = 14541, - [SMALL_STATE(786)] = 14548, - [SMALL_STATE(787)] = 14553, - [SMALL_STATE(788)] = 14558, - [SMALL_STATE(789)] = 14563, - [SMALL_STATE(790)] = 14568, - [SMALL_STATE(791)] = 14573, - [SMALL_STATE(792)] = 14578, - [SMALL_STATE(793)] = 14583, - [SMALL_STATE(794)] = 14590, - [SMALL_STATE(795)] = 14595, - [SMALL_STATE(796)] = 14600, - [SMALL_STATE(797)] = 14605, - [SMALL_STATE(798)] = 14610, - [SMALL_STATE(799)] = 14615, - [SMALL_STATE(800)] = 14620, - [SMALL_STATE(801)] = 14625, - [SMALL_STATE(802)] = 14630, - [SMALL_STATE(803)] = 14635, - [SMALL_STATE(804)] = 14640, - [SMALL_STATE(805)] = 14645, - [SMALL_STATE(806)] = 14652, - [SMALL_STATE(807)] = 14657, - [SMALL_STATE(808)] = 14662, - [SMALL_STATE(809)] = 14667, - [SMALL_STATE(810)] = 14672, - [SMALL_STATE(811)] = 14677, - [SMALL_STATE(812)] = 14684, - [SMALL_STATE(813)] = 14689, - [SMALL_STATE(814)] = 14696, - [SMALL_STATE(815)] = 14701, - [SMALL_STATE(816)] = 14706, - [SMALL_STATE(817)] = 14711, - [SMALL_STATE(818)] = 14716, - [SMALL_STATE(819)] = 14723, - [SMALL_STATE(820)] = 14728, - [SMALL_STATE(821)] = 14735, - [SMALL_STATE(822)] = 14742, - [SMALL_STATE(823)] = 14749, - [SMALL_STATE(824)] = 14756, - [SMALL_STATE(825)] = 14761, - [SMALL_STATE(826)] = 14766, - [SMALL_STATE(827)] = 14771, - [SMALL_STATE(828)] = 14776, - [SMALL_STATE(829)] = 14783, - [SMALL_STATE(830)] = 14790, - [SMALL_STATE(831)] = 14797, - [SMALL_STATE(832)] = 14802, - [SMALL_STATE(833)] = 14809, - [SMALL_STATE(834)] = 14814, - [SMALL_STATE(835)] = 14819, - [SMALL_STATE(836)] = 14826, - [SMALL_STATE(837)] = 14833, - [SMALL_STATE(838)] = 14838, - [SMALL_STATE(839)] = 14845, - [SMALL_STATE(840)] = 14850, - [SMALL_STATE(841)] = 14857, - [SMALL_STATE(842)] = 14864, - [SMALL_STATE(843)] = 14871, - [SMALL_STATE(844)] = 14878, - [SMALL_STATE(845)] = 14883, - [SMALL_STATE(846)] = 14890, - [SMALL_STATE(847)] = 14895, - [SMALL_STATE(848)] = 14902, - [SMALL_STATE(849)] = 14907, - [SMALL_STATE(850)] = 14912, - [SMALL_STATE(851)] = 14917, - [SMALL_STATE(852)] = 14922, - [SMALL_STATE(853)] = 14927, - [SMALL_STATE(854)] = 14934, - [SMALL_STATE(855)] = 14939, - [SMALL_STATE(856)] = 14946, - [SMALL_STATE(857)] = 14953, - [SMALL_STATE(858)] = 14960, - [SMALL_STATE(859)] = 14967, - [SMALL_STATE(860)] = 14974, - [SMALL_STATE(861)] = 14981, - [SMALL_STATE(862)] = 14988, - [SMALL_STATE(863)] = 14995, - [SMALL_STATE(864)] = 15002, - [SMALL_STATE(865)] = 15009, - [SMALL_STATE(866)] = 15016, - [SMALL_STATE(867)] = 15023, - [SMALL_STATE(868)] = 15028, - [SMALL_STATE(869)] = 15035, - [SMALL_STATE(870)] = 15042, - [SMALL_STATE(871)] = 15049, - [SMALL_STATE(872)] = 15056, - [SMALL_STATE(873)] = 15063, - [SMALL_STATE(874)] = 15070, - [SMALL_STATE(875)] = 15075, - [SMALL_STATE(876)] = 15082, - [SMALL_STATE(877)] = 15089, - [SMALL_STATE(878)] = 15096, - [SMALL_STATE(879)] = 15103, - [SMALL_STATE(880)] = 15110, - [SMALL_STATE(881)] = 15117, - [SMALL_STATE(882)] = 15124, - [SMALL_STATE(883)] = 15131, - [SMALL_STATE(884)] = 15138, - [SMALL_STATE(885)] = 15145, - [SMALL_STATE(886)] = 15152, - [SMALL_STATE(887)] = 15159, - [SMALL_STATE(888)] = 15166, - [SMALL_STATE(889)] = 15173, - [SMALL_STATE(890)] = 15180, - [SMALL_STATE(891)] = 15187, - [SMALL_STATE(892)] = 15194, - [SMALL_STATE(893)] = 15201, - [SMALL_STATE(894)] = 15206, - [SMALL_STATE(895)] = 15210, - [SMALL_STATE(896)] = 15214, - [SMALL_STATE(897)] = 15218, - [SMALL_STATE(898)] = 15222, - [SMALL_STATE(899)] = 15226, - [SMALL_STATE(900)] = 15230, - [SMALL_STATE(901)] = 15234, - [SMALL_STATE(902)] = 15238, - [SMALL_STATE(903)] = 15242, - [SMALL_STATE(904)] = 15246, - [SMALL_STATE(905)] = 15250, - [SMALL_STATE(906)] = 15254, - [SMALL_STATE(907)] = 15258, - [SMALL_STATE(908)] = 15262, - [SMALL_STATE(909)] = 15266, - [SMALL_STATE(910)] = 15270, - [SMALL_STATE(911)] = 15274, - [SMALL_STATE(912)] = 15278, - [SMALL_STATE(913)] = 15282, - [SMALL_STATE(914)] = 15286, - [SMALL_STATE(915)] = 15290, - [SMALL_STATE(916)] = 15294, - [SMALL_STATE(917)] = 15298, - [SMALL_STATE(918)] = 15302, - [SMALL_STATE(919)] = 15306, - [SMALL_STATE(920)] = 15310, - [SMALL_STATE(921)] = 15314, - [SMALL_STATE(922)] = 15318, - [SMALL_STATE(923)] = 15322, - [SMALL_STATE(924)] = 15326, - [SMALL_STATE(925)] = 15330, - [SMALL_STATE(926)] = 15334, - [SMALL_STATE(927)] = 15338, - [SMALL_STATE(928)] = 15342, - [SMALL_STATE(929)] = 15346, - [SMALL_STATE(930)] = 15350, - [SMALL_STATE(931)] = 15354, - [SMALL_STATE(932)] = 15358, - [SMALL_STATE(933)] = 15362, - [SMALL_STATE(934)] = 15366, - [SMALL_STATE(935)] = 15370, - [SMALL_STATE(936)] = 15374, - [SMALL_STATE(937)] = 15378, - [SMALL_STATE(938)] = 15382, - [SMALL_STATE(939)] = 15386, - [SMALL_STATE(940)] = 15390, - [SMALL_STATE(941)] = 15394, - [SMALL_STATE(942)] = 15398, - [SMALL_STATE(943)] = 15402, - [SMALL_STATE(944)] = 15406, - [SMALL_STATE(945)] = 15410, - [SMALL_STATE(946)] = 15414, - [SMALL_STATE(947)] = 15418, - [SMALL_STATE(948)] = 15422, - [SMALL_STATE(949)] = 15426, - [SMALL_STATE(950)] = 15430, - [SMALL_STATE(951)] = 15434, - [SMALL_STATE(952)] = 15438, - [SMALL_STATE(953)] = 15442, - [SMALL_STATE(954)] = 15446, - [SMALL_STATE(955)] = 15450, - [SMALL_STATE(956)] = 15454, - [SMALL_STATE(957)] = 15458, - [SMALL_STATE(958)] = 15462, - [SMALL_STATE(959)] = 15466, - [SMALL_STATE(960)] = 15470, - [SMALL_STATE(961)] = 15474, - [SMALL_STATE(962)] = 15478, - [SMALL_STATE(963)] = 15482, - [SMALL_STATE(964)] = 15486, - [SMALL_STATE(965)] = 15490, - [SMALL_STATE(966)] = 15494, - [SMALL_STATE(967)] = 15498, - [SMALL_STATE(968)] = 15502, - [SMALL_STATE(969)] = 15506, - [SMALL_STATE(970)] = 15510, - [SMALL_STATE(971)] = 15514, - [SMALL_STATE(972)] = 15518, - [SMALL_STATE(973)] = 15522, - [SMALL_STATE(974)] = 15526, - [SMALL_STATE(975)] = 15530, - [SMALL_STATE(976)] = 15534, - [SMALL_STATE(977)] = 15538, - [SMALL_STATE(978)] = 15542, - [SMALL_STATE(979)] = 15546, - [SMALL_STATE(980)] = 15550, - [SMALL_STATE(981)] = 15554, - [SMALL_STATE(982)] = 15558, - [SMALL_STATE(983)] = 15562, - [SMALL_STATE(984)] = 15566, - [SMALL_STATE(985)] = 15570, - [SMALL_STATE(986)] = 15574, - [SMALL_STATE(987)] = 15578, - [SMALL_STATE(988)] = 15582, - [SMALL_STATE(989)] = 15586, - [SMALL_STATE(990)] = 15590, - [SMALL_STATE(991)] = 15594, - [SMALL_STATE(992)] = 15598, - [SMALL_STATE(993)] = 15602, - [SMALL_STATE(994)] = 15606, - [SMALL_STATE(995)] = 15610, - [SMALL_STATE(996)] = 15614, - [SMALL_STATE(997)] = 15618, - [SMALL_STATE(998)] = 15622, - [SMALL_STATE(999)] = 15626, - [SMALL_STATE(1000)] = 15630, - [SMALL_STATE(1001)] = 15634, - [SMALL_STATE(1002)] = 15638, - [SMALL_STATE(1003)] = 15642, - [SMALL_STATE(1004)] = 15646, - [SMALL_STATE(1005)] = 15650, - [SMALL_STATE(1006)] = 15654, - [SMALL_STATE(1007)] = 15658, - [SMALL_STATE(1008)] = 15662, - [SMALL_STATE(1009)] = 15666, - [SMALL_STATE(1010)] = 15670, - [SMALL_STATE(1011)] = 15674, - [SMALL_STATE(1012)] = 15678, - [SMALL_STATE(1013)] = 15682, - [SMALL_STATE(1014)] = 15686, - [SMALL_STATE(1015)] = 15690, - [SMALL_STATE(1016)] = 15694, - [SMALL_STATE(1017)] = 15698, - [SMALL_STATE(1018)] = 15702, - [SMALL_STATE(1019)] = 15706, - [SMALL_STATE(1020)] = 15710, - [SMALL_STATE(1021)] = 15714, - [SMALL_STATE(1022)] = 15718, - [SMALL_STATE(1023)] = 15722, - [SMALL_STATE(1024)] = 15726, - [SMALL_STATE(1025)] = 15730, - [SMALL_STATE(1026)] = 15734, - [SMALL_STATE(1027)] = 15738, - [SMALL_STATE(1028)] = 15742, - [SMALL_STATE(1029)] = 15746, - [SMALL_STATE(1030)] = 15750, - [SMALL_STATE(1031)] = 15754, - [SMALL_STATE(1032)] = 15758, - [SMALL_STATE(1033)] = 15762, - [SMALL_STATE(1034)] = 15766, - [SMALL_STATE(1035)] = 15770, - [SMALL_STATE(1036)] = 15774, - [SMALL_STATE(1037)] = 15778, - [SMALL_STATE(1038)] = 15782, - [SMALL_STATE(1039)] = 15786, - [SMALL_STATE(1040)] = 15790, - [SMALL_STATE(1041)] = 15794, - [SMALL_STATE(1042)] = 15798, - [SMALL_STATE(1043)] = 15802, - [SMALL_STATE(1044)] = 15806, - [SMALL_STATE(1045)] = 15810, - [SMALL_STATE(1046)] = 15814, - [SMALL_STATE(1047)] = 15818, - [SMALL_STATE(1048)] = 15822, - [SMALL_STATE(1049)] = 15826, - [SMALL_STATE(1050)] = 15830, - [SMALL_STATE(1051)] = 15834, - [SMALL_STATE(1052)] = 15838, - [SMALL_STATE(1053)] = 15842, - [SMALL_STATE(1054)] = 15846, - [SMALL_STATE(1055)] = 15850, - [SMALL_STATE(1056)] = 15854, - [SMALL_STATE(1057)] = 15858, - [SMALL_STATE(1058)] = 15862, - [SMALL_STATE(1059)] = 15866, - [SMALL_STATE(1060)] = 15870, - [SMALL_STATE(1061)] = 15874, - [SMALL_STATE(1062)] = 15878, - [SMALL_STATE(1063)] = 15882, - [SMALL_STATE(1064)] = 15886, - [SMALL_STATE(1065)] = 15890, - [SMALL_STATE(1066)] = 15894, - [SMALL_STATE(1067)] = 15898, - [SMALL_STATE(1068)] = 15902, - [SMALL_STATE(1069)] = 15906, - [SMALL_STATE(1070)] = 15910, - [SMALL_STATE(1071)] = 15914, - [SMALL_STATE(1072)] = 15918, - [SMALL_STATE(1073)] = 15922, - [SMALL_STATE(1074)] = 15926, - [SMALL_STATE(1075)] = 15930, - [SMALL_STATE(1076)] = 15934, - [SMALL_STATE(1077)] = 15938, - [SMALL_STATE(1078)] = 15942, - [SMALL_STATE(1079)] = 15946, - [SMALL_STATE(1080)] = 15950, - [SMALL_STATE(1081)] = 15954, - [SMALL_STATE(1082)] = 15958, - [SMALL_STATE(1083)] = 15962, - [SMALL_STATE(1084)] = 15966, - [SMALL_STATE(1085)] = 15970, - [SMALL_STATE(1086)] = 15974, - [SMALL_STATE(1087)] = 15978, - [SMALL_STATE(1088)] = 15982, - [SMALL_STATE(1089)] = 15986, - [SMALL_STATE(1090)] = 15990, - [SMALL_STATE(1091)] = 15994, - [SMALL_STATE(1092)] = 15998, - [SMALL_STATE(1093)] = 16002, - [SMALL_STATE(1094)] = 16006, - [SMALL_STATE(1095)] = 16010, - [SMALL_STATE(1096)] = 16014, - [SMALL_STATE(1097)] = 16018, - [SMALL_STATE(1098)] = 16022, - [SMALL_STATE(1099)] = 16026, - [SMALL_STATE(1100)] = 16030, - [SMALL_STATE(1101)] = 16034, - [SMALL_STATE(1102)] = 16038, - [SMALL_STATE(1103)] = 16042, - [SMALL_STATE(1104)] = 16046, - [SMALL_STATE(1105)] = 16050, - [SMALL_STATE(1106)] = 16054, - [SMALL_STATE(1107)] = 16058, - [SMALL_STATE(1108)] = 16062, - [SMALL_STATE(1109)] = 16066, - [SMALL_STATE(1110)] = 16070, - [SMALL_STATE(1111)] = 16074, - [SMALL_STATE(1112)] = 16078, - [SMALL_STATE(1113)] = 16082, - [SMALL_STATE(1114)] = 16086, - [SMALL_STATE(1115)] = 16090, - [SMALL_STATE(1116)] = 16094, - [SMALL_STATE(1117)] = 16098, - [SMALL_STATE(1118)] = 16102, - [SMALL_STATE(1119)] = 16106, - [SMALL_STATE(1120)] = 16110, - [SMALL_STATE(1121)] = 16114, - [SMALL_STATE(1122)] = 16118, - [SMALL_STATE(1123)] = 16122, - [SMALL_STATE(1124)] = 16126, - [SMALL_STATE(1125)] = 16130, - [SMALL_STATE(1126)] = 16134, - [SMALL_STATE(1127)] = 16138, - [SMALL_STATE(1128)] = 16142, - [SMALL_STATE(1129)] = 16146, - [SMALL_STATE(1130)] = 16150, - [SMALL_STATE(1131)] = 16154, - [SMALL_STATE(1132)] = 16158, - [SMALL_STATE(1133)] = 16162, - [SMALL_STATE(1134)] = 16166, - [SMALL_STATE(1135)] = 16170, - [SMALL_STATE(1136)] = 16174, - [SMALL_STATE(1137)] = 16178, - [SMALL_STATE(1138)] = 16182, - [SMALL_STATE(1139)] = 16186, - [SMALL_STATE(1140)] = 16190, - [SMALL_STATE(1141)] = 16194, - [SMALL_STATE(1142)] = 16198, - [SMALL_STATE(1143)] = 16202, - [SMALL_STATE(1144)] = 16206, - [SMALL_STATE(1145)] = 16210, - [SMALL_STATE(1146)] = 16214, - [SMALL_STATE(1147)] = 16218, - [SMALL_STATE(1148)] = 16222, - [SMALL_STATE(1149)] = 16226, - [SMALL_STATE(1150)] = 16230, - [SMALL_STATE(1151)] = 16234, - [SMALL_STATE(1152)] = 16238, + [SMALL_STATE(247)] = 8096, + [SMALL_STATE(248)] = 8128, + [SMALL_STATE(249)] = 8154, + [SMALL_STATE(250)] = 8186, + [SMALL_STATE(251)] = 8214, + [SMALL_STATE(252)] = 8246, + [SMALL_STATE(253)] = 8278, + [SMALL_STATE(254)] = 8310, + [SMALL_STATE(255)] = 8342, + [SMALL_STATE(256)] = 8374, + [SMALL_STATE(257)] = 8406, + [SMALL_STATE(258)] = 8438, + [SMALL_STATE(259)] = 8470, + [SMALL_STATE(260)] = 8502, + [SMALL_STATE(261)] = 8528, + [SMALL_STATE(262)] = 8554, + [SMALL_STATE(263)] = 8579, + [SMALL_STATE(264)] = 8604, + [SMALL_STATE(265)] = 8629, + [SMALL_STATE(266)] = 8654, + [SMALL_STATE(267)] = 8679, + [SMALL_STATE(268)] = 8704, + [SMALL_STATE(269)] = 8729, + [SMALL_STATE(270)] = 8754, + [SMALL_STATE(271)] = 8779, + [SMALL_STATE(272)] = 8801, + [SMALL_STATE(273)] = 8821, + [SMALL_STATE(274)] = 8841, + [SMALL_STATE(275)] = 8860, + [SMALL_STATE(276)] = 8879, + [SMALL_STATE(277)] = 8898, + [SMALL_STATE(278)] = 8917, + [SMALL_STATE(279)] = 8936, + [SMALL_STATE(280)] = 8955, + [SMALL_STATE(281)] = 8969, + [SMALL_STATE(282)] = 8983, + [SMALL_STATE(283)] = 8997, + [SMALL_STATE(284)] = 9013, + [SMALL_STATE(285)] = 9029, + [SMALL_STATE(286)] = 9042, + [SMALL_STATE(287)] = 9053, + [SMALL_STATE(288)] = 9076, + [SMALL_STATE(289)] = 9101, + [SMALL_STATE(290)] = 9124, + [SMALL_STATE(291)] = 9147, + [SMALL_STATE(292)] = 9170, + [SMALL_STATE(293)] = 9193, + [SMALL_STATE(294)] = 9216, + [SMALL_STATE(295)] = 9241, + [SMALL_STATE(296)] = 9264, + [SMALL_STATE(297)] = 9277, + [SMALL_STATE(298)] = 9300, + [SMALL_STATE(299)] = 9323, + [SMALL_STATE(300)] = 9348, + [SMALL_STATE(301)] = 9371, + [SMALL_STATE(302)] = 9394, + [SMALL_STATE(303)] = 9417, + [SMALL_STATE(304)] = 9442, + [SMALL_STATE(305)] = 9467, + [SMALL_STATE(306)] = 9490, + [SMALL_STATE(307)] = 9513, + [SMALL_STATE(308)] = 9536, + [SMALL_STATE(309)] = 9561, + [SMALL_STATE(310)] = 9572, + [SMALL_STATE(311)] = 9583, + [SMALL_STATE(312)] = 9594, + [SMALL_STATE(313)] = 9605, + [SMALL_STATE(314)] = 9616, + [SMALL_STATE(315)] = 9627, + [SMALL_STATE(316)] = 9638, + [SMALL_STATE(317)] = 9660, + [SMALL_STATE(318)] = 9670, + [SMALL_STATE(319)] = 9692, + [SMALL_STATE(320)] = 9714, + [SMALL_STATE(321)] = 9724, + [SMALL_STATE(322)] = 9734, + [SMALL_STATE(323)] = 9744, + [SMALL_STATE(324)] = 9766, + [SMALL_STATE(325)] = 9788, + [SMALL_STATE(326)] = 9810, + [SMALL_STATE(327)] = 9820, + [SMALL_STATE(328)] = 9830, + [SMALL_STATE(329)] = 9840, + [SMALL_STATE(330)] = 9850, + [SMALL_STATE(331)] = 9860, + [SMALL_STATE(332)] = 9870, + [SMALL_STATE(333)] = 9880, + [SMALL_STATE(334)] = 9902, + [SMALL_STATE(335)] = 9924, + [SMALL_STATE(336)] = 9946, + [SMALL_STATE(337)] = 9968, + [SMALL_STATE(338)] = 9978, + [SMALL_STATE(339)] = 10000, + [SMALL_STATE(340)] = 10010, + [SMALL_STATE(341)] = 10032, + [SMALL_STATE(342)] = 10042, + [SMALL_STATE(343)] = 10052, + [SMALL_STATE(344)] = 10062, + [SMALL_STATE(345)] = 10082, + [SMALL_STATE(346)] = 10092, + [SMALL_STATE(347)] = 10102, + [SMALL_STATE(348)] = 10112, + [SMALL_STATE(349)] = 10122, + [SMALL_STATE(350)] = 10132, + [SMALL_STATE(351)] = 10142, + [SMALL_STATE(352)] = 10164, + [SMALL_STATE(353)] = 10186, + [SMALL_STATE(354)] = 10206, + [SMALL_STATE(355)] = 10228, + [SMALL_STATE(356)] = 10250, + [SMALL_STATE(357)] = 10272, + [SMALL_STATE(358)] = 10294, + [SMALL_STATE(359)] = 10304, + [SMALL_STATE(360)] = 10323, + [SMALL_STATE(361)] = 10342, + [SMALL_STATE(362)] = 10361, + [SMALL_STATE(363)] = 10376, + [SMALL_STATE(364)] = 10395, + [SMALL_STATE(365)] = 10414, + [SMALL_STATE(366)] = 10433, + [SMALL_STATE(367)] = 10452, + [SMALL_STATE(368)] = 10471, + [SMALL_STATE(369)] = 10490, + [SMALL_STATE(370)] = 10509, + [SMALL_STATE(371)] = 10528, + [SMALL_STATE(372)] = 10547, + [SMALL_STATE(373)] = 10566, + [SMALL_STATE(374)] = 10585, + [SMALL_STATE(375)] = 10604, + [SMALL_STATE(376)] = 10623, + [SMALL_STATE(377)] = 10642, + [SMALL_STATE(378)] = 10661, + [SMALL_STATE(379)] = 10680, + [SMALL_STATE(380)] = 10699, + [SMALL_STATE(381)] = 10718, + [SMALL_STATE(382)] = 10737, + [SMALL_STATE(383)] = 10756, + [SMALL_STATE(384)] = 10775, + [SMALL_STATE(385)] = 10794, + [SMALL_STATE(386)] = 10809, + [SMALL_STATE(387)] = 10828, + [SMALL_STATE(388)] = 10847, + [SMALL_STATE(389)] = 10866, + [SMALL_STATE(390)] = 10885, + [SMALL_STATE(391)] = 10904, + [SMALL_STATE(392)] = 10923, + [SMALL_STATE(393)] = 10942, + [SMALL_STATE(394)] = 10961, + [SMALL_STATE(395)] = 10980, + [SMALL_STATE(396)] = 10999, + [SMALL_STATE(397)] = 11018, + [SMALL_STATE(398)] = 11037, + [SMALL_STATE(399)] = 11056, + [SMALL_STATE(400)] = 11075, + [SMALL_STATE(401)] = 11094, + [SMALL_STATE(402)] = 11113, + [SMALL_STATE(403)] = 11132, + [SMALL_STATE(404)] = 11151, + [SMALL_STATE(405)] = 11170, + [SMALL_STATE(406)] = 11189, + [SMALL_STATE(407)] = 11208, + [SMALL_STATE(408)] = 11227, + [SMALL_STATE(409)] = 11242, + [SMALL_STATE(410)] = 11257, + [SMALL_STATE(411)] = 11276, + [SMALL_STATE(412)] = 11295, + [SMALL_STATE(413)] = 11314, + [SMALL_STATE(414)] = 11333, + [SMALL_STATE(415)] = 11352, + [SMALL_STATE(416)] = 11367, + [SMALL_STATE(417)] = 11386, + [SMALL_STATE(418)] = 11400, + [SMALL_STATE(419)] = 11412, + [SMALL_STATE(420)] = 11426, + [SMALL_STATE(421)] = 11440, + [SMALL_STATE(422)] = 11452, + [SMALL_STATE(423)] = 11464, + [SMALL_STATE(424)] = 11477, + [SMALL_STATE(425)] = 11490, + [SMALL_STATE(426)] = 11503, + [SMALL_STATE(427)] = 11516, + [SMALL_STATE(428)] = 11529, + [SMALL_STATE(429)] = 11542, + [SMALL_STATE(430)] = 11555, + [SMALL_STATE(431)] = 11568, + [SMALL_STATE(432)] = 11581, + [SMALL_STATE(433)] = 11594, + [SMALL_STATE(434)] = 11607, + [SMALL_STATE(435)] = 11620, + [SMALL_STATE(436)] = 11633, + [SMALL_STATE(437)] = 11646, + [SMALL_STATE(438)] = 11657, + [SMALL_STATE(439)] = 11668, + [SMALL_STATE(440)] = 11681, + [SMALL_STATE(441)] = 11692, + [SMALL_STATE(442)] = 11701, + [SMALL_STATE(443)] = 11712, + [SMALL_STATE(444)] = 11723, + [SMALL_STATE(445)] = 11732, + [SMALL_STATE(446)] = 11741, + [SMALL_STATE(447)] = 11750, + [SMALL_STATE(448)] = 11759, + [SMALL_STATE(449)] = 11768, + [SMALL_STATE(450)] = 11777, + [SMALL_STATE(451)] = 11786, + [SMALL_STATE(452)] = 11795, + [SMALL_STATE(453)] = 11804, + [SMALL_STATE(454)] = 11813, + [SMALL_STATE(455)] = 11822, + [SMALL_STATE(456)] = 11829, + [SMALL_STATE(457)] = 11842, + [SMALL_STATE(458)] = 11855, + [SMALL_STATE(459)] = 11868, + [SMALL_STATE(460)] = 11881, + [SMALL_STATE(461)] = 11894, + [SMALL_STATE(462)] = 11907, + [SMALL_STATE(463)] = 11920, + [SMALL_STATE(464)] = 11933, + [SMALL_STATE(465)] = 11946, + [SMALL_STATE(466)] = 11959, + [SMALL_STATE(467)] = 11972, + [SMALL_STATE(468)] = 11985, + [SMALL_STATE(469)] = 11998, + [SMALL_STATE(470)] = 12011, + [SMALL_STATE(471)] = 12024, + [SMALL_STATE(472)] = 12037, + [SMALL_STATE(473)] = 12048, + [SMALL_STATE(474)] = 12059, + [SMALL_STATE(475)] = 12070, + [SMALL_STATE(476)] = 12083, + [SMALL_STATE(477)] = 12096, + [SMALL_STATE(478)] = 12109, + [SMALL_STATE(479)] = 12122, + [SMALL_STATE(480)] = 12135, + [SMALL_STATE(481)] = 12148, + [SMALL_STATE(482)] = 12161, + [SMALL_STATE(483)] = 12174, + [SMALL_STATE(484)] = 12187, + [SMALL_STATE(485)] = 12200, + [SMALL_STATE(486)] = 12213, + [SMALL_STATE(487)] = 12226, + [SMALL_STATE(488)] = 12239, + [SMALL_STATE(489)] = 12252, + [SMALL_STATE(490)] = 12265, + [SMALL_STATE(491)] = 12278, + [SMALL_STATE(492)] = 12291, + [SMALL_STATE(493)] = 12304, + [SMALL_STATE(494)] = 12317, + [SMALL_STATE(495)] = 12330, + [SMALL_STATE(496)] = 12343, + [SMALL_STATE(497)] = 12356, + [SMALL_STATE(498)] = 12369, + [SMALL_STATE(499)] = 12382, + [SMALL_STATE(500)] = 12395, + [SMALL_STATE(501)] = 12408, + [SMALL_STATE(502)] = 12421, + [SMALL_STATE(503)] = 12434, + [SMALL_STATE(504)] = 12447, + [SMALL_STATE(505)] = 12460, + [SMALL_STATE(506)] = 12473, + [SMALL_STATE(507)] = 12486, + [SMALL_STATE(508)] = 12499, + [SMALL_STATE(509)] = 12512, + [SMALL_STATE(510)] = 12525, + [SMALL_STATE(511)] = 12538, + [SMALL_STATE(512)] = 12551, + [SMALL_STATE(513)] = 12564, + [SMALL_STATE(514)] = 12577, + [SMALL_STATE(515)] = 12590, + [SMALL_STATE(516)] = 12603, + [SMALL_STATE(517)] = 12616, + [SMALL_STATE(518)] = 12629, + [SMALL_STATE(519)] = 12642, + [SMALL_STATE(520)] = 12655, + [SMALL_STATE(521)] = 12668, + [SMALL_STATE(522)] = 12681, + [SMALL_STATE(523)] = 12694, + [SMALL_STATE(524)] = 12707, + [SMALL_STATE(525)] = 12720, + [SMALL_STATE(526)] = 12733, + [SMALL_STATE(527)] = 12746, + [SMALL_STATE(528)] = 12759, + [SMALL_STATE(529)] = 12772, + [SMALL_STATE(530)] = 12785, + [SMALL_STATE(531)] = 12798, + [SMALL_STATE(532)] = 12811, + [SMALL_STATE(533)] = 12824, + [SMALL_STATE(534)] = 12837, + [SMALL_STATE(535)] = 12850, + [SMALL_STATE(536)] = 12863, + [SMALL_STATE(537)] = 12876, + [SMALL_STATE(538)] = 12889, + [SMALL_STATE(539)] = 12902, + [SMALL_STATE(540)] = 12915, + [SMALL_STATE(541)] = 12928, + [SMALL_STATE(542)] = 12941, + [SMALL_STATE(543)] = 12954, + [SMALL_STATE(544)] = 12967, + [SMALL_STATE(545)] = 12980, + [SMALL_STATE(546)] = 12986, + [SMALL_STATE(547)] = 12992, + [SMALL_STATE(548)] = 13002, + [SMALL_STATE(549)] = 13012, + [SMALL_STATE(550)] = 13020, + [SMALL_STATE(551)] = 13030, + [SMALL_STATE(552)] = 13040, + [SMALL_STATE(553)] = 13050, + [SMALL_STATE(554)] = 13060, + [SMALL_STATE(555)] = 13070, + [SMALL_STATE(556)] = 13080, + [SMALL_STATE(557)] = 13090, + [SMALL_STATE(558)] = 13100, + [SMALL_STATE(559)] = 13106, + [SMALL_STATE(560)] = 13112, + [SMALL_STATE(561)] = 13122, + [SMALL_STATE(562)] = 13128, + [SMALL_STATE(563)] = 13136, + [SMALL_STATE(564)] = 13144, + [SMALL_STATE(565)] = 13152, + [SMALL_STATE(566)] = 13160, + [SMALL_STATE(567)] = 13170, + [SMALL_STATE(568)] = 13180, + [SMALL_STATE(569)] = 13190, + [SMALL_STATE(570)] = 13196, + [SMALL_STATE(571)] = 13202, + [SMALL_STATE(572)] = 13208, + [SMALL_STATE(573)] = 13214, + [SMALL_STATE(574)] = 13224, + [SMALL_STATE(575)] = 13234, + [SMALL_STATE(576)] = 13240, + [SMALL_STATE(577)] = 13248, + [SMALL_STATE(578)] = 13254, + [SMALL_STATE(579)] = 13264, + [SMALL_STATE(580)] = 13274, + [SMALL_STATE(581)] = 13280, + [SMALL_STATE(582)] = 13290, + [SMALL_STATE(583)] = 13300, + [SMALL_STATE(584)] = 13310, + [SMALL_STATE(585)] = 13320, + [SMALL_STATE(586)] = 13330, + [SMALL_STATE(587)] = 13336, + [SMALL_STATE(588)] = 13342, + [SMALL_STATE(589)] = 13348, + [SMALL_STATE(590)] = 13354, + [SMALL_STATE(591)] = 13360, + [SMALL_STATE(592)] = 13366, + [SMALL_STATE(593)] = 13376, + [SMALL_STATE(594)] = 13386, + [SMALL_STATE(595)] = 13396, + [SMALL_STATE(596)] = 13402, + [SMALL_STATE(597)] = 13412, + [SMALL_STATE(598)] = 13418, + [SMALL_STATE(599)] = 13424, + [SMALL_STATE(600)] = 13434, + [SMALL_STATE(601)] = 13440, + [SMALL_STATE(602)] = 13450, + [SMALL_STATE(603)] = 13460, + [SMALL_STATE(604)] = 13466, + [SMALL_STATE(605)] = 13472, + [SMALL_STATE(606)] = 13482, + [SMALL_STATE(607)] = 13492, + [SMALL_STATE(608)] = 13498, + [SMALL_STATE(609)] = 13504, + [SMALL_STATE(610)] = 13510, + [SMALL_STATE(611)] = 13516, + [SMALL_STATE(612)] = 13522, + [SMALL_STATE(613)] = 13528, + [SMALL_STATE(614)] = 13534, + [SMALL_STATE(615)] = 13540, + [SMALL_STATE(616)] = 13546, + [SMALL_STATE(617)] = 13552, + [SMALL_STATE(618)] = 13558, + [SMALL_STATE(619)] = 13564, + [SMALL_STATE(620)] = 13570, + [SMALL_STATE(621)] = 13576, + [SMALL_STATE(622)] = 13582, + [SMALL_STATE(623)] = 13588, + [SMALL_STATE(624)] = 13594, + [SMALL_STATE(625)] = 13604, + [SMALL_STATE(626)] = 13614, + [SMALL_STATE(627)] = 13624, + [SMALL_STATE(628)] = 13634, + [SMALL_STATE(629)] = 13644, + [SMALL_STATE(630)] = 13654, + [SMALL_STATE(631)] = 13660, + [SMALL_STATE(632)] = 13666, + [SMALL_STATE(633)] = 13672, + [SMALL_STATE(634)] = 13678, + [SMALL_STATE(635)] = 13684, + [SMALL_STATE(636)] = 13690, + [SMALL_STATE(637)] = 13696, + [SMALL_STATE(638)] = 13702, + [SMALL_STATE(639)] = 13708, + [SMALL_STATE(640)] = 13718, + [SMALL_STATE(641)] = 13724, + [SMALL_STATE(642)] = 13730, + [SMALL_STATE(643)] = 13738, + [SMALL_STATE(644)] = 13744, + [SMALL_STATE(645)] = 13750, + [SMALL_STATE(646)] = 13756, + [SMALL_STATE(647)] = 13764, + [SMALL_STATE(648)] = 13772, + [SMALL_STATE(649)] = 13782, + [SMALL_STATE(650)] = 13792, + [SMALL_STATE(651)] = 13800, + [SMALL_STATE(652)] = 13810, + [SMALL_STATE(653)] = 13820, + [SMALL_STATE(654)] = 13826, + [SMALL_STATE(655)] = 13836, + [SMALL_STATE(656)] = 13842, + [SMALL_STATE(657)] = 13848, + [SMALL_STATE(658)] = 13854, + [SMALL_STATE(659)] = 13860, + [SMALL_STATE(660)] = 13866, + [SMALL_STATE(661)] = 13874, + [SMALL_STATE(662)] = 13880, + [SMALL_STATE(663)] = 13886, + [SMALL_STATE(664)] = 13894, + [SMALL_STATE(665)] = 13902, + [SMALL_STATE(666)] = 13908, + [SMALL_STATE(667)] = 13914, + [SMALL_STATE(668)] = 13920, + [SMALL_STATE(669)] = 13926, + [SMALL_STATE(670)] = 13932, + [SMALL_STATE(671)] = 13938, + [SMALL_STATE(672)] = 13944, + [SMALL_STATE(673)] = 13950, + [SMALL_STATE(674)] = 13956, + [SMALL_STATE(675)] = 13964, + [SMALL_STATE(676)] = 13970, + [SMALL_STATE(677)] = 13976, + [SMALL_STATE(678)] = 13982, + [SMALL_STATE(679)] = 13987, + [SMALL_STATE(680)] = 13992, + [SMALL_STATE(681)] = 13997, + [SMALL_STATE(682)] = 14002, + [SMALL_STATE(683)] = 14007, + [SMALL_STATE(684)] = 14014, + [SMALL_STATE(685)] = 14019, + [SMALL_STATE(686)] = 14024, + [SMALL_STATE(687)] = 14029, + [SMALL_STATE(688)] = 14034, + [SMALL_STATE(689)] = 14039, + [SMALL_STATE(690)] = 14046, + [SMALL_STATE(691)] = 14051, + [SMALL_STATE(692)] = 14058, + [SMALL_STATE(693)] = 14065, + [SMALL_STATE(694)] = 14072, + [SMALL_STATE(695)] = 14077, + [SMALL_STATE(696)] = 14082, + [SMALL_STATE(697)] = 14087, + [SMALL_STATE(698)] = 14092, + [SMALL_STATE(699)] = 14097, + [SMALL_STATE(700)] = 14102, + [SMALL_STATE(701)] = 14107, + [SMALL_STATE(702)] = 14112, + [SMALL_STATE(703)] = 14119, + [SMALL_STATE(704)] = 14124, + [SMALL_STATE(705)] = 14129, + [SMALL_STATE(706)] = 14134, + [SMALL_STATE(707)] = 14139, + [SMALL_STATE(708)] = 14146, + [SMALL_STATE(709)] = 14151, + [SMALL_STATE(710)] = 14156, + [SMALL_STATE(711)] = 14161, + [SMALL_STATE(712)] = 14166, + [SMALL_STATE(713)] = 14171, + [SMALL_STATE(714)] = 14178, + [SMALL_STATE(715)] = 14183, + [SMALL_STATE(716)] = 14188, + [SMALL_STATE(717)] = 14195, + [SMALL_STATE(718)] = 14202, + [SMALL_STATE(719)] = 14207, + [SMALL_STATE(720)] = 14212, + [SMALL_STATE(721)] = 14219, + [SMALL_STATE(722)] = 14226, + [SMALL_STATE(723)] = 14231, + [SMALL_STATE(724)] = 14236, + [SMALL_STATE(725)] = 14241, + [SMALL_STATE(726)] = 14248, + [SMALL_STATE(727)] = 14253, + [SMALL_STATE(728)] = 14258, + [SMALL_STATE(729)] = 14265, + [SMALL_STATE(730)] = 14270, + [SMALL_STATE(731)] = 14275, + [SMALL_STATE(732)] = 14280, + [SMALL_STATE(733)] = 14287, + [SMALL_STATE(734)] = 14292, + [SMALL_STATE(735)] = 14299, + [SMALL_STATE(736)] = 14306, + [SMALL_STATE(737)] = 14313, + [SMALL_STATE(738)] = 14320, + [SMALL_STATE(739)] = 14325, + [SMALL_STATE(740)] = 14330, + [SMALL_STATE(741)] = 14335, + [SMALL_STATE(742)] = 14340, + [SMALL_STATE(743)] = 14345, + [SMALL_STATE(744)] = 14350, + [SMALL_STATE(745)] = 14355, + [SMALL_STATE(746)] = 14360, + [SMALL_STATE(747)] = 14365, + [SMALL_STATE(748)] = 14370, + [SMALL_STATE(749)] = 14375, + [SMALL_STATE(750)] = 14380, + [SMALL_STATE(751)] = 14385, + [SMALL_STATE(752)] = 14392, + [SMALL_STATE(753)] = 14397, + [SMALL_STATE(754)] = 14402, + [SMALL_STATE(755)] = 14407, + [SMALL_STATE(756)] = 14412, + [SMALL_STATE(757)] = 14419, + [SMALL_STATE(758)] = 14424, + [SMALL_STATE(759)] = 14431, + [SMALL_STATE(760)] = 14436, + [SMALL_STATE(761)] = 14441, + [SMALL_STATE(762)] = 14446, + [SMALL_STATE(763)] = 14453, + [SMALL_STATE(764)] = 14458, + [SMALL_STATE(765)] = 14463, + [SMALL_STATE(766)] = 14468, + [SMALL_STATE(767)] = 14473, + [SMALL_STATE(768)] = 14480, + [SMALL_STATE(769)] = 14485, + [SMALL_STATE(770)] = 14490, + [SMALL_STATE(771)] = 14495, + [SMALL_STATE(772)] = 14500, + [SMALL_STATE(773)] = 14505, + [SMALL_STATE(774)] = 14510, + [SMALL_STATE(775)] = 14515, + [SMALL_STATE(776)] = 14522, + [SMALL_STATE(777)] = 14527, + [SMALL_STATE(778)] = 14532, + [SMALL_STATE(779)] = 14537, + [SMALL_STATE(780)] = 14542, + [SMALL_STATE(781)] = 14547, + [SMALL_STATE(782)] = 14552, + [SMALL_STATE(783)] = 14557, + [SMALL_STATE(784)] = 14562, + [SMALL_STATE(785)] = 14567, + [SMALL_STATE(786)] = 14574, + [SMALL_STATE(787)] = 14579, + [SMALL_STATE(788)] = 14584, + [SMALL_STATE(789)] = 14589, + [SMALL_STATE(790)] = 14596, + [SMALL_STATE(791)] = 14601, + [SMALL_STATE(792)] = 14606, + [SMALL_STATE(793)] = 14611, + [SMALL_STATE(794)] = 14616, + [SMALL_STATE(795)] = 14621, + [SMALL_STATE(796)] = 14628, + [SMALL_STATE(797)] = 14633, + [SMALL_STATE(798)] = 14640, + [SMALL_STATE(799)] = 14647, + [SMALL_STATE(800)] = 14652, + [SMALL_STATE(801)] = 14657, + [SMALL_STATE(802)] = 14664, + [SMALL_STATE(803)] = 14671, + [SMALL_STATE(804)] = 14676, + [SMALL_STATE(805)] = 14683, + [SMALL_STATE(806)] = 14688, + [SMALL_STATE(807)] = 14693, + [SMALL_STATE(808)] = 14698, + [SMALL_STATE(809)] = 14703, + [SMALL_STATE(810)] = 14708, + [SMALL_STATE(811)] = 14713, + [SMALL_STATE(812)] = 14718, + [SMALL_STATE(813)] = 14723, + [SMALL_STATE(814)] = 14728, + [SMALL_STATE(815)] = 14735, + [SMALL_STATE(816)] = 14740, + [SMALL_STATE(817)] = 14745, + [SMALL_STATE(818)] = 14750, + [SMALL_STATE(819)] = 14755, + [SMALL_STATE(820)] = 14760, + [SMALL_STATE(821)] = 14767, + [SMALL_STATE(822)] = 14772, + [SMALL_STATE(823)] = 14777, + [SMALL_STATE(824)] = 14782, + [SMALL_STATE(825)] = 14787, + [SMALL_STATE(826)] = 14794, + [SMALL_STATE(827)] = 14801, + [SMALL_STATE(828)] = 14806, + [SMALL_STATE(829)] = 14813, + [SMALL_STATE(830)] = 14818, + [SMALL_STATE(831)] = 14825, + [SMALL_STATE(832)] = 14830, + [SMALL_STATE(833)] = 14837, + [SMALL_STATE(834)] = 14844, + [SMALL_STATE(835)] = 14849, + [SMALL_STATE(836)] = 14856, + [SMALL_STATE(837)] = 14863, + [SMALL_STATE(838)] = 14868, + [SMALL_STATE(839)] = 14873, + [SMALL_STATE(840)] = 14878, + [SMALL_STATE(841)] = 14883, + [SMALL_STATE(842)] = 14888, + [SMALL_STATE(843)] = 14893, + [SMALL_STATE(844)] = 14898, + [SMALL_STATE(845)] = 14905, + [SMALL_STATE(846)] = 14910, + [SMALL_STATE(847)] = 14915, + [SMALL_STATE(848)] = 14920, + [SMALL_STATE(849)] = 14925, + [SMALL_STATE(850)] = 14930, + [SMALL_STATE(851)] = 14937, + [SMALL_STATE(852)] = 14944, + [SMALL_STATE(853)] = 14949, + [SMALL_STATE(854)] = 14954, + [SMALL_STATE(855)] = 14961, + [SMALL_STATE(856)] = 14968, + [SMALL_STATE(857)] = 14975, + [SMALL_STATE(858)] = 14982, + [SMALL_STATE(859)] = 14989, + [SMALL_STATE(860)] = 14996, + [SMALL_STATE(861)] = 15001, + [SMALL_STATE(862)] = 15008, + [SMALL_STATE(863)] = 15015, + [SMALL_STATE(864)] = 15022, + [SMALL_STATE(865)] = 15029, + [SMALL_STATE(866)] = 15036, + [SMALL_STATE(867)] = 15043, + [SMALL_STATE(868)] = 15048, + [SMALL_STATE(869)] = 15055, + [SMALL_STATE(870)] = 15062, + [SMALL_STATE(871)] = 15069, + [SMALL_STATE(872)] = 15076, + [SMALL_STATE(873)] = 15083, + [SMALL_STATE(874)] = 15090, + [SMALL_STATE(875)] = 15095, + [SMALL_STATE(876)] = 15102, + [SMALL_STATE(877)] = 15109, + [SMALL_STATE(878)] = 15116, + [SMALL_STATE(879)] = 15123, + [SMALL_STATE(880)] = 15130, + [SMALL_STATE(881)] = 15137, + [SMALL_STATE(882)] = 15144, + [SMALL_STATE(883)] = 15151, + [SMALL_STATE(884)] = 15158, + [SMALL_STATE(885)] = 15165, + [SMALL_STATE(886)] = 15172, + [SMALL_STATE(887)] = 15179, + [SMALL_STATE(888)] = 15186, + [SMALL_STATE(889)] = 15193, + [SMALL_STATE(890)] = 15200, + [SMALL_STATE(891)] = 15207, + [SMALL_STATE(892)] = 15214, + [SMALL_STATE(893)] = 15221, + [SMALL_STATE(894)] = 15226, + [SMALL_STATE(895)] = 15230, + [SMALL_STATE(896)] = 15234, + [SMALL_STATE(897)] = 15238, + [SMALL_STATE(898)] = 15242, + [SMALL_STATE(899)] = 15246, + [SMALL_STATE(900)] = 15250, + [SMALL_STATE(901)] = 15254, + [SMALL_STATE(902)] = 15258, + [SMALL_STATE(903)] = 15262, + [SMALL_STATE(904)] = 15266, + [SMALL_STATE(905)] = 15270, + [SMALL_STATE(906)] = 15274, + [SMALL_STATE(907)] = 15278, + [SMALL_STATE(908)] = 15282, + [SMALL_STATE(909)] = 15286, + [SMALL_STATE(910)] = 15290, + [SMALL_STATE(911)] = 15294, + [SMALL_STATE(912)] = 15298, + [SMALL_STATE(913)] = 15302, + [SMALL_STATE(914)] = 15306, + [SMALL_STATE(915)] = 15310, + [SMALL_STATE(916)] = 15314, + [SMALL_STATE(917)] = 15318, + [SMALL_STATE(918)] = 15322, + [SMALL_STATE(919)] = 15326, + [SMALL_STATE(920)] = 15330, + [SMALL_STATE(921)] = 15334, + [SMALL_STATE(922)] = 15338, + [SMALL_STATE(923)] = 15342, + [SMALL_STATE(924)] = 15346, + [SMALL_STATE(925)] = 15350, + [SMALL_STATE(926)] = 15354, + [SMALL_STATE(927)] = 15358, + [SMALL_STATE(928)] = 15362, + [SMALL_STATE(929)] = 15366, + [SMALL_STATE(930)] = 15370, + [SMALL_STATE(931)] = 15374, + [SMALL_STATE(932)] = 15378, + [SMALL_STATE(933)] = 15382, + [SMALL_STATE(934)] = 15386, + [SMALL_STATE(935)] = 15390, + [SMALL_STATE(936)] = 15394, + [SMALL_STATE(937)] = 15398, + [SMALL_STATE(938)] = 15402, + [SMALL_STATE(939)] = 15406, + [SMALL_STATE(940)] = 15410, + [SMALL_STATE(941)] = 15414, + [SMALL_STATE(942)] = 15418, + [SMALL_STATE(943)] = 15422, + [SMALL_STATE(944)] = 15426, + [SMALL_STATE(945)] = 15430, + [SMALL_STATE(946)] = 15434, + [SMALL_STATE(947)] = 15438, + [SMALL_STATE(948)] = 15442, + [SMALL_STATE(949)] = 15446, + [SMALL_STATE(950)] = 15450, + [SMALL_STATE(951)] = 15454, + [SMALL_STATE(952)] = 15458, + [SMALL_STATE(953)] = 15462, + [SMALL_STATE(954)] = 15466, + [SMALL_STATE(955)] = 15470, + [SMALL_STATE(956)] = 15474, + [SMALL_STATE(957)] = 15478, + [SMALL_STATE(958)] = 15482, + [SMALL_STATE(959)] = 15486, + [SMALL_STATE(960)] = 15490, + [SMALL_STATE(961)] = 15494, + [SMALL_STATE(962)] = 15498, + [SMALL_STATE(963)] = 15502, + [SMALL_STATE(964)] = 15506, + [SMALL_STATE(965)] = 15510, + [SMALL_STATE(966)] = 15514, + [SMALL_STATE(967)] = 15518, + [SMALL_STATE(968)] = 15522, + [SMALL_STATE(969)] = 15526, + [SMALL_STATE(970)] = 15530, + [SMALL_STATE(971)] = 15534, + [SMALL_STATE(972)] = 15538, + [SMALL_STATE(973)] = 15542, + [SMALL_STATE(974)] = 15546, + [SMALL_STATE(975)] = 15550, + [SMALL_STATE(976)] = 15554, + [SMALL_STATE(977)] = 15558, + [SMALL_STATE(978)] = 15562, + [SMALL_STATE(979)] = 15566, + [SMALL_STATE(980)] = 15570, + [SMALL_STATE(981)] = 15574, + [SMALL_STATE(982)] = 15578, + [SMALL_STATE(983)] = 15582, + [SMALL_STATE(984)] = 15586, + [SMALL_STATE(985)] = 15590, + [SMALL_STATE(986)] = 15594, + [SMALL_STATE(987)] = 15598, + [SMALL_STATE(988)] = 15602, + [SMALL_STATE(989)] = 15606, + [SMALL_STATE(990)] = 15610, + [SMALL_STATE(991)] = 15614, + [SMALL_STATE(992)] = 15618, + [SMALL_STATE(993)] = 15622, + [SMALL_STATE(994)] = 15626, + [SMALL_STATE(995)] = 15630, + [SMALL_STATE(996)] = 15634, + [SMALL_STATE(997)] = 15638, + [SMALL_STATE(998)] = 15642, + [SMALL_STATE(999)] = 15646, + [SMALL_STATE(1000)] = 15650, + [SMALL_STATE(1001)] = 15654, + [SMALL_STATE(1002)] = 15658, + [SMALL_STATE(1003)] = 15662, + [SMALL_STATE(1004)] = 15666, + [SMALL_STATE(1005)] = 15670, + [SMALL_STATE(1006)] = 15674, + [SMALL_STATE(1007)] = 15678, + [SMALL_STATE(1008)] = 15682, + [SMALL_STATE(1009)] = 15686, + [SMALL_STATE(1010)] = 15690, + [SMALL_STATE(1011)] = 15694, + [SMALL_STATE(1012)] = 15698, + [SMALL_STATE(1013)] = 15702, + [SMALL_STATE(1014)] = 15706, + [SMALL_STATE(1015)] = 15710, + [SMALL_STATE(1016)] = 15714, + [SMALL_STATE(1017)] = 15718, + [SMALL_STATE(1018)] = 15722, + [SMALL_STATE(1019)] = 15726, + [SMALL_STATE(1020)] = 15730, + [SMALL_STATE(1021)] = 15734, + [SMALL_STATE(1022)] = 15738, + [SMALL_STATE(1023)] = 15742, + [SMALL_STATE(1024)] = 15746, + [SMALL_STATE(1025)] = 15750, + [SMALL_STATE(1026)] = 15754, + [SMALL_STATE(1027)] = 15758, + [SMALL_STATE(1028)] = 15762, + [SMALL_STATE(1029)] = 15766, + [SMALL_STATE(1030)] = 15770, + [SMALL_STATE(1031)] = 15774, + [SMALL_STATE(1032)] = 15778, + [SMALL_STATE(1033)] = 15782, + [SMALL_STATE(1034)] = 15786, + [SMALL_STATE(1035)] = 15790, + [SMALL_STATE(1036)] = 15794, + [SMALL_STATE(1037)] = 15798, + [SMALL_STATE(1038)] = 15802, + [SMALL_STATE(1039)] = 15806, + [SMALL_STATE(1040)] = 15810, + [SMALL_STATE(1041)] = 15814, + [SMALL_STATE(1042)] = 15818, + [SMALL_STATE(1043)] = 15822, + [SMALL_STATE(1044)] = 15826, + [SMALL_STATE(1045)] = 15830, + [SMALL_STATE(1046)] = 15834, + [SMALL_STATE(1047)] = 15838, + [SMALL_STATE(1048)] = 15842, + [SMALL_STATE(1049)] = 15846, + [SMALL_STATE(1050)] = 15850, + [SMALL_STATE(1051)] = 15854, + [SMALL_STATE(1052)] = 15858, + [SMALL_STATE(1053)] = 15862, + [SMALL_STATE(1054)] = 15866, + [SMALL_STATE(1055)] = 15870, + [SMALL_STATE(1056)] = 15874, + [SMALL_STATE(1057)] = 15878, + [SMALL_STATE(1058)] = 15882, + [SMALL_STATE(1059)] = 15886, + [SMALL_STATE(1060)] = 15890, + [SMALL_STATE(1061)] = 15894, + [SMALL_STATE(1062)] = 15898, + [SMALL_STATE(1063)] = 15902, + [SMALL_STATE(1064)] = 15906, + [SMALL_STATE(1065)] = 15910, + [SMALL_STATE(1066)] = 15914, + [SMALL_STATE(1067)] = 15918, + [SMALL_STATE(1068)] = 15922, + [SMALL_STATE(1069)] = 15926, + [SMALL_STATE(1070)] = 15930, + [SMALL_STATE(1071)] = 15934, + [SMALL_STATE(1072)] = 15938, + [SMALL_STATE(1073)] = 15942, + [SMALL_STATE(1074)] = 15946, + [SMALL_STATE(1075)] = 15950, + [SMALL_STATE(1076)] = 15954, + [SMALL_STATE(1077)] = 15958, + [SMALL_STATE(1078)] = 15962, + [SMALL_STATE(1079)] = 15966, + [SMALL_STATE(1080)] = 15970, + [SMALL_STATE(1081)] = 15974, + [SMALL_STATE(1082)] = 15978, + [SMALL_STATE(1083)] = 15982, + [SMALL_STATE(1084)] = 15986, + [SMALL_STATE(1085)] = 15990, + [SMALL_STATE(1086)] = 15994, + [SMALL_STATE(1087)] = 15998, + [SMALL_STATE(1088)] = 16002, + [SMALL_STATE(1089)] = 16006, + [SMALL_STATE(1090)] = 16010, + [SMALL_STATE(1091)] = 16014, + [SMALL_STATE(1092)] = 16018, + [SMALL_STATE(1093)] = 16022, + [SMALL_STATE(1094)] = 16026, + [SMALL_STATE(1095)] = 16030, + [SMALL_STATE(1096)] = 16034, + [SMALL_STATE(1097)] = 16038, + [SMALL_STATE(1098)] = 16042, + [SMALL_STATE(1099)] = 16046, + [SMALL_STATE(1100)] = 16050, + [SMALL_STATE(1101)] = 16054, + [SMALL_STATE(1102)] = 16058, + [SMALL_STATE(1103)] = 16062, + [SMALL_STATE(1104)] = 16066, + [SMALL_STATE(1105)] = 16070, + [SMALL_STATE(1106)] = 16074, + [SMALL_STATE(1107)] = 16078, + [SMALL_STATE(1108)] = 16082, + [SMALL_STATE(1109)] = 16086, + [SMALL_STATE(1110)] = 16090, + [SMALL_STATE(1111)] = 16094, + [SMALL_STATE(1112)] = 16098, + [SMALL_STATE(1113)] = 16102, + [SMALL_STATE(1114)] = 16106, + [SMALL_STATE(1115)] = 16110, + [SMALL_STATE(1116)] = 16114, + [SMALL_STATE(1117)] = 16118, + [SMALL_STATE(1118)] = 16122, + [SMALL_STATE(1119)] = 16126, + [SMALL_STATE(1120)] = 16130, + [SMALL_STATE(1121)] = 16134, + [SMALL_STATE(1122)] = 16138, + [SMALL_STATE(1123)] = 16142, + [SMALL_STATE(1124)] = 16146, + [SMALL_STATE(1125)] = 16150, + [SMALL_STATE(1126)] = 16154, + [SMALL_STATE(1127)] = 16158, + [SMALL_STATE(1128)] = 16162, + [SMALL_STATE(1129)] = 16166, + [SMALL_STATE(1130)] = 16170, + [SMALL_STATE(1131)] = 16174, + [SMALL_STATE(1132)] = 16178, + [SMALL_STATE(1133)] = 16182, + [SMALL_STATE(1134)] = 16186, + [SMALL_STATE(1135)] = 16190, + [SMALL_STATE(1136)] = 16194, + [SMALL_STATE(1137)] = 16198, + [SMALL_STATE(1138)] = 16202, + [SMALL_STATE(1139)] = 16206, + [SMALL_STATE(1140)] = 16210, + [SMALL_STATE(1141)] = 16214, + [SMALL_STATE(1142)] = 16218, + [SMALL_STATE(1143)] = 16222, + [SMALL_STATE(1144)] = 16226, + [SMALL_STATE(1145)] = 16230, + [SMALL_STATE(1146)] = 16234, + [SMALL_STATE(1147)] = 16238, + [SMALL_STATE(1148)] = 16242, + [SMALL_STATE(1149)] = 16246, + [SMALL_STATE(1150)] = 16250, + [SMALL_STATE(1151)] = 16254, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 0, 0, 0), - [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), + [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), @@ -27644,35 +27658,35 @@ static const TSParseActionEntry ts_parse_actions[] = { [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), [75] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 1, 0, 0), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), [97] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 2, 0, 0), [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), [101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), - [103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(247), - [106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(843), + [103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(248), + [106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(833), [109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(273), [112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(125), - [115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(253), - [118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(845), - [121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(997), + [115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(268), + [118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(835), + [121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(995), [124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(27), [127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(49), [130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(40), - [133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(652), + [133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(650), [136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(232), [139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(42), [142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(45), @@ -27692,37 +27706,37 @@ static const TSParseActionEntry ts_parse_actions[] = { [184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(62), [187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(235), [190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(121), - [193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(738), - [196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(935), - [199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(853), - [202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(252), - [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(245), + [193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(814), + [196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(1141), + [199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(775), + [202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(247), + [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(246), [208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(123), - [211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(1116), + [211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(1115), [214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(59), [217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(128), [220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(885), - [223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(1118), + [223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(1117), [226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(886), - [229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(264), + [229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(256), [232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), [234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), [236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), [238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), [240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), [242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(245), - [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(843), + [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(246), + [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(833), [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(273), [253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), [255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(168), - [258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(253), - [261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(845), - [264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(1116), + [258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(268), + [261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(835), + [264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(1115), [267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(27), [270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(49), [273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(40), - [276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(652), + [276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(650), [279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(232), [282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(42), [285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(45), @@ -27743,120 +27757,120 @@ static const TSParseActionEntry ts_parse_actions[] = { [330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(63), [333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(128), [336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(885), - [339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(1118), + [339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(1117), [342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(886), - [345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(264), - [348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(256), + [348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), [356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), [358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), - [366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), + [366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), [372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), - [434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), [440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), [442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), [446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), [450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), [460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 1, 0, 1), [462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 1, 0, 1), [464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), - [472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), + [472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), [484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), [492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 1, 0, 0), [494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 1, 0, 0), SHIFT_REPEAT(235), [497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 1, 0, 0), [499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 1, 0, 0), [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), [511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), [513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), - [515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(458), + [515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(455), [518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(885), - [521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(1118), + [521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(1117), [524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(886), - [527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(738), - [530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(935), - [533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(853), + [527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(814), + [530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(1141), + [533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(775), [536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 2, 0, 0), [538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 2, 0, 0), [540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 5, 0, 20), [542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 5, 0, 20), - [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), [546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 3, 0, 13), [548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 3, 0, 13), - [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), [552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_header, 5, 0, 0), [554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_header, 5, 0, 0), [556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_separator, 5, 0, 0), [558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_separator, 5, 0, 0), [560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_row, 5, 0, 0), [562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_row, 5, 0, 0), - [564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), [566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 6, 0, 27), [568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 6, 0, 27), - [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), [572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 6, 0, 28), [574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 6, 0, 28), - [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), [578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_or_two_newlines, 1, 0, 0), [580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_or_two_newlines, 1, 0, 0), [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), @@ -27864,41 +27878,41 @@ static const TSParseActionEntry ts_parse_actions[] = { [586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_row, 2, 0, 0), [588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 4, 0, 0), [590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 4, 0, 0), - [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), [594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heading, 3, 0, 4), [596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heading, 3, 0, 4), [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), [600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_header, 4, 0, 0), [602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_header, 4, 0, 0), - [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), [608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 5, 0, 24), [610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 5, 0, 24), - [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), [614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_separator, 4, 0, 0), [616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_separator, 4, 0, 0), [618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_row, 4, 0, 0), [620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_row, 4, 0, 0), [622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 4, 0, 13), [624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 4, 0, 13), - [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), [628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 4, 0, 20), [630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 4, 0, 20), - [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), [634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 5, 0, 22), [636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 5, 0, 22), - [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), [640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 5, 0, 23), [642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 5, 0, 23), - [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), [662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_roman_parens, 2, 0, 0), [664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_roman_parens, 2, 0, 0), [666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frontmatter, 7, 0, 30), @@ -28006,782 +28020,781 @@ static const TSParseActionEntry ts_parse_actions[] = { [870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(210), [873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_task, 3, 0, 9), [875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_task, 3, 0, 9), - [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), + [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), [905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_quote_prefix, 1, 0, 0), [907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_quote_prefix, 1, 0, 0), [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), [911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(231), [914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(235), - [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), [931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(887), - [934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(1124), + [934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(1123), [937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(888), - [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), - [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), - [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 2, 0, 0), SHIFT_REPEAT(277), - [951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 2, 0, 0), - [953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 2, 0, 0), SHIFT_REPEAT(848), - [956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_caption_repeat1, 2, 0, 0), - [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), - [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(881), - [965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(1106), - [968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(882), - [971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(883), - [974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(1112), - [977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(884), - [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), - [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), SHIFT(274), - [995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), SHIFT(766), + [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), + [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), + [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), + [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(881), + [955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(1105), + [958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(882), + [961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(883), + [964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(1111), + [967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(884), + [970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 2, 0, 0), SHIFT_REPEAT(275), + [973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 2, 0, 0), + [975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 2, 0, 0), SHIFT_REPEAT(738), + [978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_caption_repeat1, 2, 0, 0), + [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), + [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), SHIFT(277), + [995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), SHIFT(745), [998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), - [1000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [1012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [1014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), - [1016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(739), - [1019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(403), - [1022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(415), - [1025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(476), - [1028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(1057), - [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [1047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(271), - [1050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(737), + [1000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [1012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), + [1014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(713), + [1017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(337), + [1020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(331), + [1023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(473), + [1026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(1110), + [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [1047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(272), + [1050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(711), [1053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), - [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), [1057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline, 1, 0, 0), - [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), - [1061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline, 1, 0, 0), - [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), - [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [1067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(278), - [1070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(848), - [1073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(279), + [1059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(274), + [1062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(738), + [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), + [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), + [1069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline, 1, 0, 0), + [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), + [1073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(278), [1076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), - [1078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(766), + [1078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(745), [1081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_line, 2, 0, 0), [1083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_line, 2, 0, 0), [1085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 2, -1000, 0), [1087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 2, -1000, 0), - [1089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(307), - [1092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 1, 0, 0), - [1094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_caption_repeat1, 1, 0, 0), - [1096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [1098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [1100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [1104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [1106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [1108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [1110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [1112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [1114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [1116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [1118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [1120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [1122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [1124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [1126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [1128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [1130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [1132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [1134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [1136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 2, 0, 0), - [1138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 2, 0, 0), SHIFT_REPEAT(652), - [1141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 2, 0, 0), SHIFT_REPEAT(690), - [1144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [1146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [1148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [1150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 2, 0, 0), - [1152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 2, 0, 0), SHIFT_REPEAT(27), - [1155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 2, 0, 0), SHIFT_REPEAT(734), - [1158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [1160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [1162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [1164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [1170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [1176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [1178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [1180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [1184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [1188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), - [1190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), SHIFT_REPEAT(40), - [1193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), SHIFT_REPEAT(689), - [1196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [1198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code, 1, 0, 0), - [1200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_repeat1, 2, 0, 0), SHIFT_REPEAT(1047), - [1203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_code_repeat1, 2, 0, 0), - [1205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_repeat1, 2, 0, 0), SHIFT_REPEAT(698), - [1208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [1212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), - [1214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), SHIFT_REPEAT(49), - [1217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), SHIFT_REPEAT(797), - [1220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [1222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [1224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [1226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [1228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [1232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [1234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [1238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [1240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, 0, 11), - [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [1246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 3, 0, 0), - [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [1250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_name, 1, 0, 0), - [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [1256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(51), - [1259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 2, 0, 0), - [1261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(702), - [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [1292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [1294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [1296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [1322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_item_content_repeat1, 2, 0, 0), SHIFT_REPEAT(55), - [1325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_item_content_repeat1, 2, 0, 0), - [1327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_item_content_repeat1, 2, 0, 0), SHIFT_REPEAT(702), - [1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2, 0, 0), - [1332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 3, 0, 17), - [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [1340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1, 0, 0), - [1342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(708), - [1345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(52), - [1348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), - [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1, 0, 0), - [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [1356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value, 3, 0, 18), + [1089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 1, 0, 0), + [1091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_caption_repeat1, 1, 0, 0), + [1093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(285), + [1096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [1098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [1100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [1104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [1106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [1108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [1110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [1112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [1114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [1116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [1118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [1120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [1122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [1124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [1126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [1128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [1130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [1132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [1134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [1136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [1138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [1140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [1142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 2, 0, 0), + [1144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 2, 0, 0), SHIFT_REPEAT(650), + [1147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 2, 0, 0), SHIFT_REPEAT(813), + [1150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [1152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [1154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1, 0, 0), + [1156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [1158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [1160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [1162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [1164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value, 3, 0, 18), + [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [1170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [1172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 3, 0, 17), + [1174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, 0, 11), + [1176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2, 0, 0), + [1178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 1, 0, 0), + [1180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_name, 1, 0, 0), + [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [1184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [1188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [1190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1, 0, 0), + [1192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), + [1194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), SHIFT_REPEAT(49), + [1197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), SHIFT_REPEAT(712), + [1200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 3, 0, 0), + [1202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 2, 0, 0), + [1204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 2, 0, 0), SHIFT_REPEAT(27), + [1207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 2, 0, 0), SHIFT_REPEAT(722), + [1210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code, 1, 0, 0), + [1212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [1214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), + [1216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), SHIFT_REPEAT(40), + [1219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), SHIFT_REPEAT(779), + [1222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_repeat1, 2, 0, 0), SHIFT_REPEAT(1104), + [1225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_code_repeat1, 2, 0, 0), + [1227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_repeat1, 2, 0, 0), SHIFT_REPEAT(831), + [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [1232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [1234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [1238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [1240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [1242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [1254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(51), + [1257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 2, 0, 0), + [1259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(839), + [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [1292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [1294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [1296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [1342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_item_content_repeat1, 2, 0, 0), SHIFT_REPEAT(55), + [1345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_item_content_repeat1, 2, 0, 0), + [1347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_item_content_repeat1, 2, 0, 0), SHIFT_REPEAT(839), + [1350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(849), + [1353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(52), + [1356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [1368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 1, 0, 0), - [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), [1372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_quote_content, 2, 0, 0), [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [1376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 2, 0, 0), - [1378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(210), - [1381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_quote_content, 1, 0, 0), - [1383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(458), + [1376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_quote_content, 1, 0, 0), + [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 2, 0, 0), + [1380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(210), + [1383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(455), [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_parens_repeat1, 2, 0, 0), - [1392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(36), - [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [1397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_period_repeat1, 2, 0, 0), - [1399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_period_repeat1, 2, 0, 0), SHIFT_REPEAT(47), - [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_paren_repeat1, 2, 0, 0), - [1404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_paren_repeat1, 2, 0, 0), SHIFT_REPEAT(31), - [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [1409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_parens_repeat1, 2, 0, 0), - [1411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(37), - [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [1416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_period_repeat1, 2, 0, 0), - [1418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_period_repeat1, 2, 0, 0), SHIFT_REPEAT(23), - [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [1423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_paren_repeat1, 2, 0, 0), - [1425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_paren_repeat1, 2, 0, 0), SHIFT_REPEAT(33), - [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_parens_repeat1, 2, 0, 0), - [1432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(39), - [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), - [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), - [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [1455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frontmatter_content, 1, 0, 0), - [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [1511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comment_repeat1, 2, 0, 0), - [1513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comment_repeat1, 2, 0, 0), SHIFT_REPEAT(582), - [1516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), - [1518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_frontmatter_content_repeat1, 2, 0, 0), SHIFT_REPEAT(1001), - [1521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_frontmatter_content_repeat1, 2, 0, 0), - [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [1619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_definition_repeat1, 2, 0, 0), - [1621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(232), - [1624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_period_repeat1, 2, 0, 0), - [1626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_decimal_period_repeat1, 2, 0, 0), SHIFT_REPEAT(42), - [1629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_paren_repeat1, 2, 0, 0), - [1631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_decimal_paren_repeat1, 2, 0, 0), SHIFT_REPEAT(24), - [1634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [1636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_parens_repeat1, 2, 0, 0), - [1638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_decimal_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(34), - [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [1643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_period_repeat1, 2, 0, 0), - [1645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_period_repeat1, 2, 0, 0), SHIFT_REPEAT(45), - [1648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [1650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_paren_repeat1, 2, 0, 0), - [1652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_paren_repeat1, 2, 0, 0), SHIFT_REPEAT(29), - [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [1657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_parens_repeat1, 2, 0, 0), - [1659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(35), - [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_period_repeat1, 2, 0, 0), - [1666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_period_repeat1, 2, 0, 0), SHIFT_REPEAT(46), - [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [1671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_paren_repeat1, 2, 0, 0), - [1673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_paren_repeat1, 2, 0, 0), SHIFT_REPEAT(30), - [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [1678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [1682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [1686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [1690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [1692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(690), - [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [1701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(698), - [1704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(702), - [1707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(708), - [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_item_content, 3, 0, 0), - [1712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_item_content, 4, 0, 0), - [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [1724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_period_repeat1, 2, 0, 0), + [1390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_period_repeat1, 2, 0, 0), SHIFT_REPEAT(47), + [1393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_paren_repeat1, 2, 0, 0), + [1395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_paren_repeat1, 2, 0, 0), SHIFT_REPEAT(31), + [1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [1400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_parens_repeat1, 2, 0, 0), + [1402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(37), + [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [1407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_period_repeat1, 2, 0, 0), + [1409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_period_repeat1, 2, 0, 0), SHIFT_REPEAT(23), + [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_paren_repeat1, 2, 0, 0), + [1416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_paren_repeat1, 2, 0, 0), SHIFT_REPEAT(33), + [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [1421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_parens_repeat1, 2, 0, 0), + [1423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(39), + [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [1434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), + [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [1440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frontmatter_content, 1, 0, 0), + [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [1502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comment_repeat1, 2, 0, 0), + [1504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comment_repeat1, 2, 0, 0), SHIFT_REPEAT(577), + [1507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), + [1509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_frontmatter_content_repeat1, 2, 0, 0), SHIFT_REPEAT(983), + [1512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_frontmatter_content_repeat1, 2, 0, 0), + [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [1522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [1528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [1530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [1532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [1534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [1536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [1538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [1540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [1542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [1544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [1546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [1548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [1550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [1552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [1556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [1558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [1562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [1574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [1576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [1578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [1580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [1582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [1584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [1586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [1598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [1604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [1608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [1610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_definition_repeat1, 2, 0, 0), + [1612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(232), + [1615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_period_repeat1, 2, 0, 0), + [1617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_decimal_period_repeat1, 2, 0, 0), SHIFT_REPEAT(42), + [1620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_paren_repeat1, 2, 0, 0), + [1622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_decimal_paren_repeat1, 2, 0, 0), SHIFT_REPEAT(24), + [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [1627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_parens_repeat1, 2, 0, 0), + [1629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_decimal_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(34), + [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [1634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_parens_repeat1, 2, 0, 0), + [1636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(36), + [1639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_period_repeat1, 2, 0, 0), + [1641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_period_repeat1, 2, 0, 0), SHIFT_REPEAT(45), + [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [1646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_paren_repeat1, 2, 0, 0), + [1648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_paren_repeat1, 2, 0, 0), SHIFT_REPEAT(29), + [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [1653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_parens_repeat1, 2, 0, 0), + [1655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(35), + [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [1660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_period_repeat1, 2, 0, 0), + [1662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_period_repeat1, 2, 0, 0), SHIFT_REPEAT(46), + [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [1667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_paren_repeat1, 2, 0, 0), + [1669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_paren_repeat1, 2, 0, 0), SHIFT_REPEAT(30), + [1672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [1674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [1678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [1682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [1686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [1690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 3, 0, 0), + [1694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(813), + [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [1703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(831), + [1706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(839), + [1709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(849), + [1712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_item_content, 3, 0, 0), + [1714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_item_content, 4, 0, 0), + [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [1724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), [1726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heading_content, 2, 0, 0), - [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heading_content, 1, 0, 0), [1732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 1, 0, 2), [1734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dash, 2, 0, 4), - [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [1740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 2, 0, 4), + [1736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 2, 0, 4), + [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), [1742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 2, 0, 4), - [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [1752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comment_repeat1, 1, 0, 0), - [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [1758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(689), - [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [1748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comment_repeat1, 1, 0, 0), + [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [1758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(779), + [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), [1765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 1, 0, 2), [1767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dash, 3, 0, 14), [1769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 3, 0, 14), [1771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 3, 0, 14), [1773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_task, 3, 0, 14), - [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), [1779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__paragraph_inline_content_repeat1, 2, 0, 0), - [1781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__paragraph_inline_content_repeat1, 2, 0, 0), SHIFT_REPEAT(246), - [1784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(734), - [1787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__heading_content_repeat1, 2, 0, 0), - [1789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__heading_content_repeat1, 2, 0, 0), SHIFT_REPEAT(272), - [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [1796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_task, 2, 0, 4), - [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [1781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__paragraph_inline_content_repeat1, 2, 0, 0), SHIFT_REPEAT(250), + [1784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(722), + [1787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 1, 0, 2), + [1789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__heading_content_repeat1, 2, 0, 0), + [1791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__heading_content_repeat1, 2, 0, 0), SHIFT_REPEAT(271), + [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [1798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_task, 2, 0, 4), + [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_item_content_repeat1, 3, 0, 0), [1816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 3, 0, 0), - [1818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(797), - [1821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 1, 0, 2), - [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [1835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_item_content_repeat1, 4, 0, 0), - [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [1843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 1, 0, 2), - [1845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 3, 0, 0), + [1818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(712), + [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [1837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_item_content_repeat1, 4, 0, 0), + [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [1841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 1, 0, 2), + [1843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line, 2, 0, 0), + [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), [1847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 4, 0, 0), - [1849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line, 2, 0, 0), - [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [1855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_header_repeat1, 2, 0, 0), SHIFT_REPEAT(785), - [1858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [1860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [1862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [1866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_separator_repeat1, 2, 0, 0), SHIFT_REPEAT(1066), - [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [1889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_definition_repeat1, 1, 0, 3), - [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [1895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_period_repeat1, 1, 0, 2), - [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_inline_content, 4, 0, 0), - [1901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__paragraph_inline_content_repeat1, 3, 0, 0), - [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [1905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_paren_repeat1, 1, 0, 2), - [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_decimal_period, 2, 0, 4), - [1913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_alpha_period, 2, 0, 4), - [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_alpha_period, 2, 0, 4), - [1917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_inline_content, 3, 0, 0), - [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_roman_period, 2, 0, 4), - [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_parens_repeat1, 1, 0, 2), - [1925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_period_repeat1, 1, 0, 2), - [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [1929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_roman_period, 2, 0, 4), - [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_paren_repeat1, 1, 0, 2), - [1933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_parens_repeat1, 1, 0, 2), - [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_decimal_paren, 2, 0, 4), - [1937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_alpha_paren, 2, 0, 4), - [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [1945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_definition, 5, 0, 25), - [1947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_period_repeat1, 1, 0, 2), - [1949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_paren_repeat1, 1, 0, 2), - [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [1953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_parens_repeat1, 1, 0, 2), - [1955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_period_repeat1, 1, 0, 2), - [1957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_alpha_paren, 2, 0, 4), - [1959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_roman_paren, 2, 0, 4), - [1961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_decimal_parens, 2, 0, 4), - [1963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_alpha_parens, 2, 0, 4), - [1965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_alpha_parens, 2, 0, 4), - [1967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_paren_repeat1, 1, 0, 2), - [1969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_parens_repeat1, 1, 0, 2), - [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [1973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_period_repeat1, 1, 0, 2), - [1975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_inline_content, 2, 0, 0), - [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [1981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_paren_repeat1, 1, 0, 2), - [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_parens_repeat1, 1, 0, 2), - [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [2005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_roman_parens, 2, 0, 4), - [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_content, 1, 0, 0), - [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [2023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1, 0, 0), SHIFT(281), - [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [2028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__div_marker_begin, 1, 0, 0), - [2030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_roman_parens, 2, 0, 4), - [2032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [2036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_definition, 4, 0, 16), - [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [2086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_roman_paren, 2, 0, 4), - [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [1857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_inline_content, 3, 0, 0), + [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [1865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_separator_repeat1, 2, 0, 0), SHIFT_REPEAT(1060), + [1868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [1872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_definition_repeat1, 1, 0, 3), + [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_roman_period, 2, 0, 4), + [1876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_decimal_paren, 2, 0, 4), + [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_alpha_paren, 2, 0, 4), + [1880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_alpha_paren, 2, 0, 4), + [1882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [1884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_roman_paren, 2, 0, 4), + [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_roman_paren, 2, 0, 4), + [1888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_decimal_parens, 2, 0, 4), + [1890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_alpha_parens, 2, 0, 4), + [1892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_alpha_parens, 2, 0, 4), + [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_period_repeat1, 1, 0, 2), + [1900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [1904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_roman_parens, 2, 0, 4), + [1906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_paren_repeat1, 1, 0, 2), + [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [1912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_inline_content, 4, 0, 0), + [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__paragraph_inline_content_repeat1, 3, 0, 0), + [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [1920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [1924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [1934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [1936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_parens_repeat1, 1, 0, 2), + [1940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_period_repeat1, 1, 0, 2), + [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_paren_repeat1, 1, 0, 2), + [1944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_parens_repeat1, 1, 0, 2), + [1948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [1950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_roman_parens, 2, 0, 4), + [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_period_repeat1, 1, 0, 2), + [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_definition, 5, 0, 25), + [1960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_paren_repeat1, 1, 0, 2), + [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_parens_repeat1, 1, 0, 2), + [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_period_repeat1, 1, 0, 2), + [1968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_paren_repeat1, 1, 0, 2), + [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_definition, 4, 0, 16), + [1972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_parens_repeat1, 1, 0, 2), + [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [1976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_period_repeat1, 1, 0, 2), + [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_inline_content, 2, 0, 0), + [1980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_paren_repeat1, 1, 0, 2), + [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [1986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [1988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_parens_repeat1, 1, 0, 2), + [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [1998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [2004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_content, 1, 0, 0), + [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [2014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1, 0, 0), SHIFT(281), + [2017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_decimal_period, 2, 0, 4), + [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [2021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__div_marker_begin, 1, 0, 0), + [2023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_header_repeat1, 2, 0, 0), SHIFT_REPEAT(767), + [2026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_alpha_period, 2, 0, 4), + [2028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_alpha_period, 2, 0, 4), + [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [2032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_roman_period, 2, 0, 4), + [2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [2144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_label, 1, 0, 0), - [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [2168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_label, 1, 0, 5), - [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [2204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_separator_repeat1, 2, 0, 0), - [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [2208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_cell, 1, 0, 0), - [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [2246] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [2248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_header_repeat1, 2, 0, 0), - [2250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__div_marker_begin, 3, 0, 8), - [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [2254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_checked, 3, 0, 0), - [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [2260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unchecked, 3, 0, 0), - [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [2156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_label, 1, 0, 0), + [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [2164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_label, 1, 0, 5), + [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [2176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__div_marker_begin, 3, 0, 8), + [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [2198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_separator_repeat1, 2, 0, 0), + [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [2246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_cell, 1, 0, 0), + [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [2252] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [2256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_header_repeat1, 2, 0, 0), + [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [2274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_checked, 3, 0, 0), + [2276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unchecked, 3, 0, 0), + [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [2294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block_info, 2, 0, 15), + [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [2342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key, 1, 0, 0), - [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [2420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block_info, 2, 0, 15), - [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [2428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key, 1, 0, 0), + [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), }; enum ts_external_scanner_symbol_identifiers { @@ -29482,12 +29495,10 @@ static const bool ts_external_scanner_states[85][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__newline_inline] = true, }, [25] = { - [ts_external_token__eof_or_newline] = true, + [ts_external_token__newline] = true, }, [26] = { - [ts_external_token__block_close] = true, - [ts_external_token__list_marker_task_begin] = true, - [ts_external_token__block_quote_continuation] = true, + [ts_external_token__eof_or_newline] = true, }, [27] = { [ts_external_token__block_close] = true, @@ -29495,12 +29506,12 @@ static const bool ts_external_scanner_states[85][EXTERNAL_TOKEN_COUNT] = { }, [28] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_dash] = true, + [ts_external_token__list_marker_task_begin] = true, [ts_external_token__block_quote_continuation] = true, }, [29] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_plus] = true, + [ts_external_token_list_marker_dash] = true, [ts_external_token__block_quote_continuation] = true, }, [30] = { @@ -29509,14 +29520,14 @@ static const bool ts_external_scanner_states[85][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__block_quote_continuation] = true, }, [31] = { - [ts_external_token__list_item_continuation] = true, - [ts_external_token__list_item_end] = true, + [ts_external_token__block_close] = true, + [ts_external_token_list_marker_plus] = true, [ts_external_token__block_quote_continuation] = true, }, [32] = { + [ts_external_token__list_item_continuation] = true, + [ts_external_token__list_item_end] = true, [ts_external_token__block_quote_continuation] = true, - [ts_external_token__footnote_continuation] = true, - [ts_external_token__footnote_end] = true, }, [33] = { [ts_external_token__table_header_begin] = true, @@ -29524,110 +29535,112 @@ static const bool ts_external_scanner_states[85][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__table_row_begin] = true, }, [34] = { + [ts_external_token__block_quote_continuation] = true, + [ts_external_token__footnote_continuation] = true, + [ts_external_token__footnote_end] = true, + }, + [35] = { [ts_external_token__list_item_continuation] = true, [ts_external_token__list_item_end] = true, [ts_external_token__block_quote_continuation] = true, [ts_external_token__table_caption_begin] = true, }, - [35] = { + [36] = { [ts_external_token__block_quote_continuation] = true, [ts_external_token__table_header_begin] = true, [ts_external_token__table_separator_begin] = true, [ts_external_token__table_row_begin] = true, }, - [36] = { - [ts_external_token__block_close] = true, - [ts_external_token_list_marker_upper_alpha_paren] = true, - }, [37] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_lower_alpha_parens] = true, + [ts_external_token_list_marker_upper_alpha_paren] = true, }, [38] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_upper_alpha_parens] = true, + [ts_external_token_list_marker_lower_roman_period] = true, }, [39] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_upper_alpha_period] = true, + [ts_external_token_list_marker_lower_roman_paren] = true, }, [40] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_lower_roman_period] = true, + [ts_external_token_list_marker_upper_alpha_parens] = true, }, [41] = { - [ts_external_token__block_close] = true, - [ts_external_token_list_marker_lower_roman_paren] = true, - }, - [42] = { [ts_external_token__block_close] = true, [ts_external_token_list_marker_lower_roman_parens] = true, }, - [43] = { + [42] = { [ts_external_token__block_close] = true, [ts_external_token_list_marker_upper_roman_period] = true, }, - [44] = { + [43] = { [ts_external_token__block_close] = true, [ts_external_token_list_marker_upper_roman_paren] = true, }, - [45] = { + [44] = { [ts_external_token__block_close] = true, [ts_external_token_list_marker_upper_roman_parens] = true, }, - [46] = { + [45] = { [ts_external_token__block_close] = true, [ts_external_token__block_quote_continuation] = true, [ts_external_token__table_caption_begin] = true, }, - [47] = { - [ts_external_token__newline] = true, - }, - [48] = { + [46] = { [ts_external_token__eof_or_newline] = true, [ts_external_token__list_item_continuation] = true, [ts_external_token__list_item_end] = true, [ts_external_token__block_quote_continuation] = true, }, - [49] = { + [47] = { [ts_external_token_frontmatter_marker] = true, }, - [50] = { + [48] = { [ts_external_token__div_end] = true, [ts_external_token__list_item_continuation] = true, [ts_external_token__list_item_end] = true, [ts_external_token__block_quote_continuation] = true, }, - [51] = { + [49] = { [ts_external_token__code_block_end] = true, [ts_external_token__list_item_continuation] = true, [ts_external_token__list_item_end] = true, [ts_external_token__block_quote_continuation] = true, }, - [52] = { + [50] = { [ts_external_token__block_close] = true, [ts_external_token_list_marker_definition] = true, }, - [53] = { + [51] = { [ts_external_token__block_close] = true, [ts_external_token_list_marker_decimal_period] = true, }, - [54] = { + [52] = { [ts_external_token__block_close] = true, [ts_external_token_list_marker_decimal_paren] = true, }, - [55] = { + [53] = { [ts_external_token__block_close] = true, [ts_external_token_list_marker_decimal_parens] = true, }, - [56] = { + [54] = { [ts_external_token__block_close] = true, [ts_external_token_list_marker_lower_alpha_period] = true, }, - [57] = { + [55] = { [ts_external_token__block_close] = true, [ts_external_token_list_marker_lower_alpha_paren] = true, }, + [56] = { + [ts_external_token__block_close] = true, + [ts_external_token_list_marker_lower_alpha_parens] = true, + }, + [57] = { + [ts_external_token__block_close] = true, + [ts_external_token_list_marker_upper_alpha_period] = true, + }, [58] = { [ts_external_token__list_marker_task_begin] = true, [ts_external_token__block_quote_continuation] = true, @@ -29650,57 +29663,57 @@ static const bool ts_external_scanner_states[85][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__footnote_continuation] = true, }, [63] = { + [ts_external_token__indented_content_spacer] = true, + [ts_external_token__table_caption_begin] = true, + }, + [64] = { [ts_external_token__block_close] = true, [ts_external_token__div_end] = true, [ts_external_token__block_quote_continuation] = true, }, - [64] = { + [65] = { [ts_external_token__block_close] = true, [ts_external_token__eof_or_newline] = true, [ts_external_token__block_quote_continuation] = true, }, - [65] = { + [66] = { [ts_external_token__block_close] = true, [ts_external_token__heading_continuation] = true, }, - [66] = { + [67] = { [ts_external_token_list_marker_plus] = true, [ts_external_token__block_quote_continuation] = true, }, - [67] = { + [68] = { [ts_external_token_list_marker_dash] = true, [ts_external_token__block_quote_continuation] = true, }, - [68] = { - [ts_external_token__indented_content_spacer] = true, - [ts_external_token__table_caption_begin] = true, - }, [69] = { [ts_external_token_list_marker_star] = true, [ts_external_token__block_quote_continuation] = true, }, [70] = { - [ts_external_token__eof_or_newline] = true, - [ts_external_token__close_paragraph] = true, + [ts_external_token__div_end] = true, + [ts_external_token__indented_content_spacer] = true, }, [71] = { [ts_external_token__eof_or_newline] = true, - [ts_external_token__indented_content_spacer] = true, + [ts_external_token__close_paragraph] = true, }, [72] = { - [ts_external_token__footnote_mark_begin] = true, - [ts_external_token__in_fallback] = true, + [ts_external_token__code_block_end] = true, + [ts_external_token__indented_content_spacer] = true, }, [73] = { - [ts_external_token__table_cell] = true, + [ts_external_token__footnote_mark_begin] = true, + [ts_external_token__in_fallback] = true, }, [74] = { - [ts_external_token__div_end] = true, + [ts_external_token__eof_or_newline] = true, [ts_external_token__indented_content_spacer] = true, }, [75] = { - [ts_external_token__code_block_end] = true, - [ts_external_token__indented_content_spacer] = true, + [ts_external_token__table_cell] = true, }, [76] = { [ts_external_token__list_marker_task_begin] = true, @@ -29715,13 +29728,13 @@ static const bool ts_external_scanner_states[85][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__indented_content_spacer] = true, }, [80] = { - [ts_external_token__list_item_continuation] = true, + [ts_external_token_list_marker_dash] = true, }, [81] = { - [ts_external_token_list_marker_dash] = true, + [ts_external_token_list_marker_plus] = true, }, [82] = { - [ts_external_token_list_marker_plus] = true, + [ts_external_token__list_item_continuation] = true, }, [83] = { [ts_external_token_list_marker_star] = true, diff --git a/tree-sitter-djot/src/scanner.c b/tree-sitter-djot/src/scanner.c index ec166e9..6598c18 100644 --- a/tree-sitter-djot/src/scanner.c +++ b/tree-sitter-djot/src/scanner.c @@ -1749,6 +1749,7 @@ static bool parse_attribute_begin(Scanner *s, TSLexer *lexer, } break; case '\n': + advance(s, lexer); // Need to match indent! if (indent != consume_whitespace(s, lexer)) { return false; diff --git a/tree-sitter-djot/test/corpus/syntax.txt b/tree-sitter-djot/test/corpus/syntax.txt index 8a8a993..c379fc1 100644 --- a/tree-sitter-djot/test/corpus/syntax.txt +++ b/tree-sitter-djot/test/corpus/syntax.txt @@ -1216,6 +1216,104 @@ Block attribute: must be first ------------------------------------------------------------------------------- +(document + (paragraph (inline))) + +=============================================================================== +Block attribute: single new line ok if indented +=============================================================================== +{.c + #i} + +------------------------------------------------------------------------------- + +(document + (block_attribute + (args (class) (identifier)))) + +=============================================================================== +Block attribute: not okay if not indented +=============================================================================== +{.c +#i} + +------------------------------------------------------------------------------- + +(document + (paragraph (inline))) + +=============================================================================== +Block attribute: indent inside list +=============================================================================== +- a + + {.c + #i} + x + +------------------------------------------------------------------------------- + +(document + (list + (list_item + (list_marker_dash) + (list_item_content + (paragraph + (inline)) + (block_attribute + (args + (class) + (identifier))) + (paragraph + (inline)))))) + +=============================================================================== +Block attribute: not okay if two newlines in a row +=============================================================================== +{.c + + #i} + +------------------------------------------------------------------------------- + +(document + (paragraph (inline)) + (paragraph (inline))) + +=============================================================================== +Block attribute: comment closed at } +=============================================================================== +{% comment } + +------------------------------------------------------------------------------- + +(document + (block_attribute + (args (comment)))) + +=============================================================================== +Block attribute: comment can contain newlines +=============================================================================== +{% a + b + c + %} + +------------------------------------------------------------------------------- + +(document + (block_attribute + (args (comment)))) + +=============================================================================== +Block attribute: comment newlines must match indent +=============================================================================== +{% a +c + %} + +------------------------------------------------------------------------------- + (document (paragraph (inline))) From 5e654beb9437e832490d07b4c4128c887a10269d Mon Sep 17 00:00:00 2001 From: Jonas Hietala Date: Thu, 23 Jan 2025 20:51:39 +0100 Subject: [PATCH 46/46] feat: Proper handling of newlines in comments --- tree-sitter-djot/grammar.js | 7 +- tree-sitter-djot/src/grammar.json | 28 +- tree-sitter-djot/src/parser.c | 26526 +++++++++++----------- tree-sitter-djot/src/scanner.c | 46 +- tree-sitter-djot/test/corpus/syntax.txt | 111 +- 5 files changed, 13403 insertions(+), 13315 deletions(-) diff --git a/tree-sitter-djot/grammar.js b/tree-sitter-djot/grammar.js index de89426..a820070 100644 --- a/tree-sitter-djot/grammar.js +++ b/tree-sitter-djot/grammar.js @@ -603,9 +603,9 @@ module.exports = grammar({ "%", field( "content", - alias(repeat(choice($.backslash_escape, /[^%\n]/)), $.content), + alias(repeat(choice($.backslash_escape, /[^%}]/)), $.content), ), - "%", + choice(alias($._comment_end_marker, "%"), $._comment_close), ), }, @@ -731,6 +731,9 @@ module.exports = grammar({ // The `{` that begins a block attribute (scans the entire attribute to avoid // excessive branching). $._block_attribute_begin, + // A comment can be closed by a `%` or implicitly when the attribute closes at `}`. + $._comment_end_marker, + $._comment_close, $._in_fallback, diff --git a/tree-sitter-djot/src/grammar.json b/tree-sitter-djot/src/grammar.json index ee6bfe1..0ea31de 100644 --- a/tree-sitter-djot/src/grammar.json +++ b/tree-sitter-djot/src/grammar.json @@ -2780,7 +2780,7 @@ }, { "type": "PATTERN", - "value": "[^%\\n]" + "value": "[^%}]" } ] } @@ -2790,8 +2790,22 @@ } }, { - "type": "STRING", - "value": "%" + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_comment_end_marker" + }, + "named": false, + "value": "%" + }, + { + "type": "SYMBOL", + "name": "_comment_close" + } + ] } ] } @@ -3014,6 +3028,14 @@ "type": "SYMBOL", "name": "_block_attribute_begin" }, + { + "type": "SYMBOL", + "name": "_comment_end_marker" + }, + { + "type": "SYMBOL", + "name": "_comment_close" + }, { "type": "SYMBOL", "name": "_in_fallback" diff --git a/tree-sitter-djot/src/parser.c b/tree-sitter-djot/src/parser.c index 27a0ec9..944e3f4 100644 --- a/tree-sitter-djot/src/parser.c +++ b/tree-sitter-djot/src/parser.c @@ -7,10 +7,10 @@ #define LANGUAGE_VERSION 14 #define STATE_COUNT 1152 #define LARGE_STATE_COUNT 66 -#define SYMBOL_COUNT 213 +#define SYMBOL_COUNT 215 #define ALIAS_COUNT 8 -#define TOKEN_COUNT 82 -#define EXTERNAL_TOKEN_COUNT 52 +#define TOKEN_COUNT 84 +#define EXTERNAL_TOKEN_COUNT 54 #define FIELD_COUNT 15 #define MAX_ALIAS_SEQUENCE_LENGTH 8 #define PRODUCTION_ID_COUNT 34 @@ -95,147 +95,149 @@ enum ts_symbol_identifiers { sym__table_caption_begin = 77, sym__table_caption_end = 78, sym__block_attribute_begin = 79, - sym__in_fallback = 80, - sym__error = 81, - sym_document = 82, - sym_frontmatter = 83, - sym_frontmatter_content = 84, - sym__block_with_section = 85, - sym__block_with_heading = 86, - sym__block_element = 87, - sym_section = 88, - sym_heading = 89, - sym__heading_content = 90, - sym_list = 91, - sym__list_dash = 92, - sym__list_item_dash = 93, - sym__list_plus = 94, - sym__list_item_plus = 95, - sym__list_star = 96, - sym__list_item_star = 97, - sym__list_task = 98, - sym__list_item_task = 99, - sym_list_marker_task = 100, - sym_checked = 101, - sym_unchecked = 102, - sym__list_definition = 103, - sym__list_item_definition = 104, - sym__list_decimal_period = 105, - sym__list_item_decimal_period = 106, - sym__list_decimal_paren = 107, - sym__list_item_decimal_paren = 108, - sym__list_decimal_parens = 109, - sym__list_item_decimal_parens = 110, - sym__list_lower_alpha_period = 111, - sym__list_item_lower_alpha_period = 112, - sym__list_lower_alpha_paren = 113, - sym__list_item_lower_alpha_paren = 114, - sym__list_lower_alpha_parens = 115, - sym__list_item_lower_alpha_parens = 116, - sym__list_upper_alpha_period = 117, - sym__list_item_upper_alpha_period = 118, - sym__list_upper_alpha_paren = 119, - sym__list_item_upper_alpha_paren = 120, - sym__list_upper_alpha_parens = 121, - sym__list_item_upper_alpha_parens = 122, - sym__list_lower_roman_period = 123, - sym__list_item_lower_roman_period = 124, - sym__list_lower_roman_paren = 125, - sym__list_item_lower_roman_paren = 126, - sym__list_lower_roman_parens = 127, - sym__list_item_lower_roman_parens = 128, - sym__list_upper_roman_period = 129, - sym__list_item_upper_roman_period = 130, - sym__list_upper_roman_paren = 131, - sym__list_item_upper_roman_paren = 132, - sym__list_upper_roman_parens = 133, - sym__list_item_upper_roman_parens = 134, - sym_list_item_content = 135, - sym_table = 136, - sym__table_row = 137, - sym_table_header = 138, - sym_table_separator = 139, - sym_table_row = 140, - sym_table_cell = 141, - sym_table_caption = 142, - sym_footnote = 143, - sym_footnote_marker_begin = 144, - sym_footnote_content = 145, - sym_div = 146, - sym__div_marker_begin = 147, - sym_class_name = 148, - sym_code_block = 149, - sym_raw_block = 150, - sym_raw_block_info = 151, - sym_code = 152, - sym__line = 153, - sym_thematic_break = 154, - sym_block_quote = 155, - sym__block_quote_content = 156, - sym__block_quote_prefix = 157, - sym_link_reference_definition = 158, - sym_link_label = 159, - sym_block_attribute = 160, - sym_class = 161, - sym_identifier = 162, - sym_key_value = 163, - sym_key = 164, - sym_value = 165, - sym__paragraph = 166, - sym__paragraph_content = 167, - sym__paragraph_inline_content = 168, - sym__one_or_two_newlines = 169, - sym__inline = 170, - sym__inline_line = 171, - sym__symbol_fallback = 172, - sym_reference_label = 173, - sym_comment = 174, - aux_sym_document_repeat1 = 175, - aux_sym_frontmatter_content_repeat1 = 176, - aux_sym__heading_content_repeat1 = 177, - aux_sym__list_dash_repeat1 = 178, - aux_sym__list_plus_repeat1 = 179, - aux_sym__list_star_repeat1 = 180, - aux_sym__list_task_repeat1 = 181, - aux_sym__list_definition_repeat1 = 182, - aux_sym__list_item_definition_repeat1 = 183, - aux_sym__list_decimal_period_repeat1 = 184, - aux_sym__list_decimal_paren_repeat1 = 185, - aux_sym__list_decimal_parens_repeat1 = 186, - aux_sym__list_lower_alpha_period_repeat1 = 187, - aux_sym__list_lower_alpha_paren_repeat1 = 188, - aux_sym__list_lower_alpha_parens_repeat1 = 189, - aux_sym__list_upper_alpha_period_repeat1 = 190, - aux_sym__list_upper_alpha_paren_repeat1 = 191, - aux_sym__list_upper_alpha_parens_repeat1 = 192, - aux_sym__list_lower_roman_period_repeat1 = 193, - aux_sym__list_lower_roman_paren_repeat1 = 194, - aux_sym__list_lower_roman_parens_repeat1 = 195, - aux_sym__list_upper_roman_period_repeat1 = 196, - aux_sym__list_upper_roman_paren_repeat1 = 197, - aux_sym__list_upper_roman_parens_repeat1 = 198, - aux_sym_list_item_content_repeat1 = 199, - aux_sym_table_repeat1 = 200, - aux_sym_table_header_repeat1 = 201, - aux_sym_table_separator_repeat1 = 202, - aux_sym_table_caption_repeat1 = 203, - aux_sym_footnote_content_repeat1 = 204, - aux_sym_div_repeat1 = 205, - aux_sym_code_repeat1 = 206, - aux_sym__block_quote_content_repeat1 = 207, - aux_sym__block_quote_prefix_repeat1 = 208, - aux_sym_block_attribute_repeat1 = 209, - aux_sym__paragraph_inline_content_repeat1 = 210, - aux_sym__inline_repeat1 = 211, - aux_sym_comment_repeat1 = 212, - alias_sym_args = 213, - anon_alias_sym_class = 214, - alias_sym_definition = 215, - alias_sym_language_marker = 216, - alias_sym_paragraph = 217, - alias_sym_raw_block_marker_begin = 218, - alias_sym_raw_block_marker_end = 219, - alias_sym_section_content = 220, + sym__comment_end_marker = 80, + sym__comment_close = 81, + sym__in_fallback = 82, + sym__error = 83, + sym_document = 84, + sym_frontmatter = 85, + sym_frontmatter_content = 86, + sym__block_with_section = 87, + sym__block_with_heading = 88, + sym__block_element = 89, + sym_section = 90, + sym_heading = 91, + sym__heading_content = 92, + sym_list = 93, + sym__list_dash = 94, + sym__list_item_dash = 95, + sym__list_plus = 96, + sym__list_item_plus = 97, + sym__list_star = 98, + sym__list_item_star = 99, + sym__list_task = 100, + sym__list_item_task = 101, + sym_list_marker_task = 102, + sym_checked = 103, + sym_unchecked = 104, + sym__list_definition = 105, + sym__list_item_definition = 106, + sym__list_decimal_period = 107, + sym__list_item_decimal_period = 108, + sym__list_decimal_paren = 109, + sym__list_item_decimal_paren = 110, + sym__list_decimal_parens = 111, + sym__list_item_decimal_parens = 112, + sym__list_lower_alpha_period = 113, + sym__list_item_lower_alpha_period = 114, + sym__list_lower_alpha_paren = 115, + sym__list_item_lower_alpha_paren = 116, + sym__list_lower_alpha_parens = 117, + sym__list_item_lower_alpha_parens = 118, + sym__list_upper_alpha_period = 119, + sym__list_item_upper_alpha_period = 120, + sym__list_upper_alpha_paren = 121, + sym__list_item_upper_alpha_paren = 122, + sym__list_upper_alpha_parens = 123, + sym__list_item_upper_alpha_parens = 124, + sym__list_lower_roman_period = 125, + sym__list_item_lower_roman_period = 126, + sym__list_lower_roman_paren = 127, + sym__list_item_lower_roman_paren = 128, + sym__list_lower_roman_parens = 129, + sym__list_item_lower_roman_parens = 130, + sym__list_upper_roman_period = 131, + sym__list_item_upper_roman_period = 132, + sym__list_upper_roman_paren = 133, + sym__list_item_upper_roman_paren = 134, + sym__list_upper_roman_parens = 135, + sym__list_item_upper_roman_parens = 136, + sym_list_item_content = 137, + sym_table = 138, + sym__table_row = 139, + sym_table_header = 140, + sym_table_separator = 141, + sym_table_row = 142, + sym_table_cell = 143, + sym_table_caption = 144, + sym_footnote = 145, + sym_footnote_marker_begin = 146, + sym_footnote_content = 147, + sym_div = 148, + sym__div_marker_begin = 149, + sym_class_name = 150, + sym_code_block = 151, + sym_raw_block = 152, + sym_raw_block_info = 153, + sym_code = 154, + sym__line = 155, + sym_thematic_break = 156, + sym_block_quote = 157, + sym__block_quote_content = 158, + sym__block_quote_prefix = 159, + sym_link_reference_definition = 160, + sym_link_label = 161, + sym_block_attribute = 162, + sym_class = 163, + sym_identifier = 164, + sym_key_value = 165, + sym_key = 166, + sym_value = 167, + sym__paragraph = 168, + sym__paragraph_content = 169, + sym__paragraph_inline_content = 170, + sym__one_or_two_newlines = 171, + sym__inline = 172, + sym__inline_line = 173, + sym__symbol_fallback = 174, + sym_reference_label = 175, + sym_comment = 176, + aux_sym_document_repeat1 = 177, + aux_sym_frontmatter_content_repeat1 = 178, + aux_sym__heading_content_repeat1 = 179, + aux_sym__list_dash_repeat1 = 180, + aux_sym__list_plus_repeat1 = 181, + aux_sym__list_star_repeat1 = 182, + aux_sym__list_task_repeat1 = 183, + aux_sym__list_definition_repeat1 = 184, + aux_sym__list_item_definition_repeat1 = 185, + aux_sym__list_decimal_period_repeat1 = 186, + aux_sym__list_decimal_paren_repeat1 = 187, + aux_sym__list_decimal_parens_repeat1 = 188, + aux_sym__list_lower_alpha_period_repeat1 = 189, + aux_sym__list_lower_alpha_paren_repeat1 = 190, + aux_sym__list_lower_alpha_parens_repeat1 = 191, + aux_sym__list_upper_alpha_period_repeat1 = 192, + aux_sym__list_upper_alpha_paren_repeat1 = 193, + aux_sym__list_upper_alpha_parens_repeat1 = 194, + aux_sym__list_lower_roman_period_repeat1 = 195, + aux_sym__list_lower_roman_paren_repeat1 = 196, + aux_sym__list_lower_roman_parens_repeat1 = 197, + aux_sym__list_upper_roman_period_repeat1 = 198, + aux_sym__list_upper_roman_paren_repeat1 = 199, + aux_sym__list_upper_roman_parens_repeat1 = 200, + aux_sym_list_item_content_repeat1 = 201, + aux_sym_table_repeat1 = 202, + aux_sym_table_header_repeat1 = 203, + aux_sym_table_separator_repeat1 = 204, + aux_sym_table_caption_repeat1 = 205, + aux_sym_footnote_content_repeat1 = 206, + aux_sym_div_repeat1 = 207, + aux_sym_code_repeat1 = 208, + aux_sym__block_quote_content_repeat1 = 209, + aux_sym__block_quote_prefix_repeat1 = 210, + aux_sym_block_attribute_repeat1 = 211, + aux_sym__paragraph_inline_content_repeat1 = 212, + aux_sym__inline_repeat1 = 213, + aux_sym_comment_repeat1 = 214, + alias_sym_args = 215, + anon_alias_sym_class = 216, + alias_sym_definition = 217, + alias_sym_language_marker = 218, + alias_sym_paragraph = 219, + alias_sym_raw_block_marker_begin = 220, + alias_sym_raw_block_marker_end = 221, + alias_sym_section_content = 222, }; static const char * const ts_symbol_names[] = { @@ -319,6 +321,8 @@ static const char * const ts_symbol_names[] = { [sym__table_caption_begin] = "marker", [sym__table_caption_end] = "_table_caption_end", [sym__block_attribute_begin] = "{", + [sym__comment_end_marker] = "%", + [sym__comment_close] = "_comment_close", [sym__in_fallback] = "_in_fallback", [sym__error] = "_error", [sym_document] = "document", @@ -543,6 +547,8 @@ static const TSSymbol ts_symbol_map[] = { [sym__table_caption_begin] = sym__heading_begin, [sym__table_caption_end] = sym__table_caption_end, [sym__block_attribute_begin] = anon_sym_LBRACE, + [sym__comment_end_marker] = anon_sym_PERCENT, + [sym__comment_close] = sym__comment_close, [sym__in_fallback] = sym__in_fallback, [sym__error] = sym__error, [sym_document] = sym_document, @@ -1007,6 +1013,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [sym__comment_end_marker] = { + .visible = true, + .named = false, + }, + [sym__comment_close] = { + .visible = false, + .named = true, + }, [sym__in_fallback] = { .visible = false, .named = true, @@ -1808,13 +1822,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5] = 5, [6] = 6, [7] = 7, - [8] = 7, - [9] = 4, - [10] = 6, + [8] = 6, + [9] = 7, + [10] = 2, [11] = 11, [12] = 12, - [13] = 13, - [14] = 11, + [13] = 11, + [14] = 14, [15] = 12, [16] = 11, [17] = 12, @@ -1838,17 +1852,17 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [35] = 35, [36] = 36, [37] = 37, - [38] = 32, - [39] = 39, + [38] = 38, + [39] = 33, [40] = 40, - [41] = 32, - [42] = 42, + [41] = 41, + [42] = 33, [43] = 43, - [44] = 32, - [45] = 45, + [44] = 44, + [45] = 33, [46] = 46, [47] = 47, - [48] = 32, + [48] = 33, [49] = 49, [50] = 50, [51] = 51, @@ -1860,10 +1874,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [57] = 57, [58] = 57, [59] = 57, - [60] = 54, - [61] = 54, + [60] = 55, + [61] = 55, [62] = 57, - [63] = 54, + [63] = 55, [64] = 57, [65] = 65, [66] = 66, @@ -1876,8 +1890,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [73] = 73, [74] = 74, [75] = 75, - [76] = 76, - [77] = 72, + [76] = 72, + [77] = 77, [78] = 78, [79] = 79, [80] = 80, @@ -1886,7 +1900,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [83] = 81, [84] = 84, [85] = 85, - [86] = 73, + [86] = 80, [87] = 82, [88] = 88, [89] = 89, @@ -1896,13 +1910,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [93] = 93, [94] = 94, [95] = 88, - [96] = 74, - [97] = 75, - [98] = 76, + [96] = 73, + [97] = 74, + [98] = 75, [99] = 89, - [100] = 78, - [101] = 79, - [102] = 80, + [100] = 77, + [101] = 78, + [102] = 79, [103] = 90, [104] = 91, [105] = 92, @@ -1925,19 +1939,19 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [122] = 122, [123] = 123, [124] = 124, - [125] = 123, + [125] = 125, [126] = 126, [127] = 127, - [128] = 121, + [128] = 128, [129] = 129, - [130] = 109, + [130] = 130, [131] = 131, [132] = 132, - [133] = 133, + [133] = 124, [134] = 134, [135] = 135, [136] = 136, - [137] = 137, + [137] = 109, [138] = 138, [139] = 139, [140] = 140, @@ -1948,281 +1962,281 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [145] = 145, [146] = 146, [147] = 147, - [148] = 145, - [149] = 149, + [148] = 148, + [149] = 132, [150] = 150, [151] = 151, - [152] = 149, - [153] = 117, - [154] = 154, + [152] = 152, + [153] = 153, + [154] = 127, [155] = 155, - [156] = 156, - [157] = 157, - [158] = 150, - [159] = 124, + [156] = 155, + [157] = 150, + [158] = 158, + [159] = 159, [160] = 160, - [161] = 154, - [162] = 146, - [163] = 156, - [164] = 160, - [165] = 127, - [166] = 151, - [167] = 129, - [168] = 168, - [169] = 169, - [170] = 170, - [171] = 169, - [172] = 157, + [161] = 161, + [162] = 151, + [163] = 148, + [164] = 126, + [165] = 165, + [166] = 165, + [167] = 152, + [168] = 158, + [169] = 159, + [170] = 131, + [171] = 171, + [172] = 129, [173] = 173, - [174] = 174, + [174] = 153, [175] = 175, - [176] = 111, - [177] = 112, - [178] = 113, + [176] = 110, + [177] = 111, + [178] = 112, [179] = 114, [180] = 115, [181] = 116, - [182] = 182, + [182] = 117, [183] = 118, [184] = 119, - [185] = 120, - [186] = 122, - [187] = 131, - [188] = 170, - [189] = 189, - [190] = 132, - [191] = 133, - [192] = 134, - [193] = 147, - [194] = 135, - [195] = 136, - [196] = 137, - [197] = 138, - [198] = 139, - [199] = 140, - [200] = 141, - [201] = 142, - [202] = 143, - [203] = 144, - [204] = 173, - [205] = 174, - [206] = 175, - [207] = 155, + [185] = 130, + [186] = 120, + [187] = 121, + [188] = 122, + [189] = 123, + [190] = 134, + [191] = 171, + [192] = 135, + [193] = 136, + [194] = 147, + [195] = 195, + [196] = 138, + [197] = 139, + [198] = 140, + [199] = 141, + [200] = 142, + [201] = 143, + [202] = 144, + [203] = 145, + [204] = 146, + [205] = 173, + [206] = 160, + [207] = 161, [208] = 208, [209] = 209, [210] = 210, [211] = 211, [212] = 211, - [213] = 213, - [214] = 213, - [215] = 213, - [216] = 211, - [217] = 213, - [218] = 211, - [219] = 211, - [220] = 213, + [213] = 211, + [214] = 214, + [215] = 214, + [216] = 214, + [217] = 211, + [218] = 214, + [219] = 214, + [220] = 211, [221] = 221, [222] = 221, [223] = 221, [224] = 221, [225] = 221, [226] = 226, - [227] = 208, - [228] = 208, - [229] = 66, - [230] = 226, - [231] = 210, - [232] = 232, + [227] = 209, + [228] = 66, + [229] = 210, + [230] = 209, + [231] = 226, + [232] = 66, [233] = 66, - [234] = 66, - [235] = 210, - [236] = 68, + [234] = 210, + [235] = 68, + [236] = 236, [237] = 237, [238] = 237, - [239] = 68, + [239] = 237, [240] = 68, - [241] = 241, - [242] = 237, - [243] = 237, + [241] = 237, + [242] = 242, + [243] = 68, [244] = 237, [245] = 245, - [246] = 245, + [246] = 246, [247] = 247, - [248] = 245, + [248] = 248, [249] = 249, - [250] = 250, - [251] = 251, - [252] = 247, - [253] = 251, - [254] = 247, - [255] = 251, - [256] = 247, - [257] = 251, - [258] = 247, - [259] = 251, - [260] = 245, - [261] = 245, + [250] = 246, + [251] = 245, + [252] = 249, + [253] = 245, + [254] = 249, + [255] = 245, + [256] = 249, + [257] = 245, + [258] = 249, + [259] = 246, + [260] = 246, + [261] = 246, [262] = 262, [263] = 263, [264] = 263, [265] = 262, [266] = 262, [267] = 263, - [268] = 263, - [269] = 262, - [270] = 262, + [268] = 262, + [269] = 263, + [270] = 263, [271] = 271, [272] = 272, [273] = 273, - [274] = 272, - [275] = 273, + [274] = 273, + [275] = 271, [276] = 276, - [277] = 273, - [278] = 272, - [279] = 279, - [280] = 280, + [277] = 277, + [278] = 273, + [279] = 271, + [280] = 209, [281] = 281, [282] = 282, - [283] = 208, + [283] = 283, [284] = 226, - [285] = 210, - [286] = 76, + [285] = 285, + [286] = 286, [287] = 287, [288] = 288, - [289] = 289, + [289] = 285, [290] = 290, - [291] = 287, - [292] = 290, - [293] = 289, - [294] = 288, - [295] = 289, - [296] = 281, - [297] = 287, + [291] = 81, + [292] = 286, + [293] = 287, + [294] = 287, + [295] = 285, + [296] = 285, + [297] = 282, [298] = 290, - [299] = 288, - [300] = 289, - [301] = 287, - [302] = 290, - [303] = 288, - [304] = 288, - [305] = 289, - [306] = 287, - [307] = 290, - [308] = 308, - [309] = 81, - [310] = 281, - [311] = 85, - [312] = 89, - [313] = 90, - [314] = 74, - [315] = 75, - [316] = 316, + [299] = 286, + [300] = 287, + [301] = 286, + [302] = 287, + [303] = 290, + [304] = 210, + [305] = 85, + [306] = 89, + [307] = 90, + [308] = 73, + [309] = 74, + [310] = 290, + [311] = 75, + [312] = 286, + [313] = 282, + [314] = 285, + [315] = 290, + [316] = 90, [317] = 317, [318] = 318, - [319] = 319, - [320] = 75, - [321] = 76, - [322] = 322, - [323] = 316, - [324] = 319, - [325] = 318, + [319] = 85, + [320] = 320, + [321] = 321, + [322] = 89, + [323] = 323, + [324] = 81, + [325] = 325, [326] = 326, - [327] = 327, - [328] = 328, - [329] = 81, - [330] = 85, + [327] = 317, + [328] = 318, + [329] = 85, + [330] = 330, [331] = 331, - [332] = 332, - [333] = 316, - [334] = 319, - [335] = 318, - [336] = 319, + [332] = 89, + [333] = 90, + [334] = 73, + [335] = 74, + [336] = 326, [337] = 337, - [338] = 338, - [339] = 339, - [340] = 340, - [341] = 90, - [342] = 74, - [343] = 81, + [338] = 326, + [339] = 317, + [340] = 318, + [341] = 326, + [342] = 317, + [343] = 318, [344] = 344, - [345] = 85, - [346] = 89, - [347] = 90, - [348] = 74, - [349] = 75, - [350] = 76, - [351] = 316, - [352] = 352, + [345] = 345, + [346] = 318, + [347] = 347, + [348] = 326, + [349] = 73, + [350] = 350, + [351] = 74, + [352] = 75, [353] = 353, - [354] = 318, - [355] = 316, - [356] = 319, - [357] = 318, - [358] = 89, + [354] = 354, + [355] = 355, + [356] = 81, + [357] = 317, + [358] = 75, [359] = 359, [360] = 360, [361] = 361, [362] = 362, - [363] = 360, - [364] = 359, - [365] = 365, + [363] = 361, + [364] = 364, + [365] = 361, [366] = 359, - [367] = 367, - [368] = 368, - [369] = 367, - [370] = 360, + [367] = 362, + [368] = 364, + [369] = 359, + [370] = 370, [371] = 360, - [372] = 359, - [373] = 360, - [374] = 359, - [375] = 360, - [376] = 359, - [377] = 360, - [378] = 359, - [379] = 360, - [380] = 359, - [381] = 360, - [382] = 359, - [383] = 360, - [384] = 359, - [385] = 362, - [386] = 359, - [387] = 360, - [388] = 359, - [389] = 360, - [390] = 359, - [391] = 360, - [392] = 359, - [393] = 360, - [394] = 359, - [395] = 360, - [396] = 359, - [397] = 368, - [398] = 359, - [399] = 360, - [400] = 359, - [401] = 359, - [402] = 367, - [403] = 368, - [404] = 367, + [372] = 362, + [373] = 364, + [374] = 362, + [375] = 364, + [376] = 362, + [377] = 364, + [378] = 362, + [379] = 364, + [380] = 362, + [381] = 364, + [382] = 362, + [383] = 364, + [384] = 362, + [385] = 364, + [386] = 362, + [387] = 364, + [388] = 362, + [389] = 364, + [390] = 362, + [391] = 364, + [392] = 362, + [393] = 364, + [394] = 362, + [395] = 364, + [396] = 362, + [397] = 364, + [398] = 362, + [399] = 364, + [400] = 361, + [401] = 360, + [402] = 402, + [403] = 364, + [404] = 362, [405] = 405, - [406] = 406, - [407] = 368, - [408] = 362, - [409] = 362, - [410] = 368, + [406] = 364, + [407] = 359, + [408] = 360, + [409] = 364, + [410] = 410, [411] = 411, - [412] = 367, - [413] = 360, - [414] = 360, - [415] = 362, - [416] = 360, - [417] = 417, - [418] = 70, + [412] = 360, + [413] = 359, + [414] = 362, + [415] = 361, + [416] = 362, + [417] = 226, + [418] = 418, [419] = 419, [420] = 420, - [421] = 226, - [422] = 208, + [421] = 70, + [422] = 209, [423] = 423, [424] = 424, [425] = 425, @@ -2244,7 +2258,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [441] = 84, [442] = 442, [443] = 443, - [444] = 73, + [444] = 80, [445] = 82, [446] = 91, [447] = 92, @@ -2252,9 +2266,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [449] = 94, [450] = 88, [451] = 72, - [452] = 78, - [453] = 79, - [454] = 80, + [452] = 77, + [453] = 78, + [454] = 79, [455] = 210, [456] = 456, [457] = 457, @@ -2264,439 +2278,439 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [461] = 461, [462] = 462, [463] = 463, - [464] = 423, - [465] = 426, - [466] = 428, - [467] = 430, - [468] = 432, - [469] = 434, - [470] = 435, - [471] = 436, + [464] = 426, + [465] = 465, + [466] = 436, + [467] = 428, + [468] = 430, + [469] = 432, + [470] = 434, + [471] = 435, [472] = 472, - [473] = 473, - [474] = 474, - [475] = 456, - [476] = 457, - [477] = 458, - [478] = 459, - [479] = 460, - [480] = 461, - [481] = 462, - [482] = 463, - [483] = 423, - [484] = 426, - [485] = 428, - [486] = 430, - [487] = 463, - [488] = 434, - [489] = 435, - [490] = 436, - [491] = 456, - [492] = 457, - [493] = 458, - [494] = 459, - [495] = 460, - [496] = 461, - [497] = 462, - [498] = 463, - [499] = 423, - [500] = 426, - [501] = 428, - [502] = 430, - [503] = 432, - [504] = 434, - [505] = 435, - [506] = 436, - [507] = 456, - [508] = 457, - [509] = 458, - [510] = 459, - [511] = 460, - [512] = 461, - [513] = 462, - [514] = 463, - [515] = 423, - [516] = 426, - [517] = 428, - [518] = 430, - [519] = 432, - [520] = 434, - [521] = 435, - [522] = 436, - [523] = 523, + [473] = 456, + [474] = 457, + [475] = 458, + [476] = 459, + [477] = 460, + [478] = 461, + [479] = 462, + [480] = 463, + [481] = 426, + [482] = 465, + [483] = 436, + [484] = 428, + [485] = 430, + [486] = 465, + [487] = 434, + [488] = 435, + [489] = 456, + [490] = 457, + [491] = 458, + [492] = 459, + [493] = 460, + [494] = 461, + [495] = 462, + [496] = 463, + [497] = 426, + [498] = 465, + [499] = 436, + [500] = 428, + [501] = 430, + [502] = 432, + [503] = 434, + [504] = 435, + [505] = 456, + [506] = 457, + [507] = 458, + [508] = 459, + [509] = 460, + [510] = 461, + [511] = 462, + [512] = 463, + [513] = 426, + [514] = 465, + [515] = 436, + [516] = 428, + [517] = 430, + [518] = 432, + [519] = 434, + [520] = 435, + [521] = 521, + [522] = 522, + [523] = 456, [524] = 524, - [525] = 525, - [526] = 456, - [527] = 527, - [528] = 457, - [529] = 529, + [525] = 457, + [526] = 526, + [527] = 458, + [528] = 528, + [529] = 459, [530] = 530, - [531] = 458, + [531] = 460, [532] = 532, - [533] = 459, + [533] = 461, [534] = 534, - [535] = 460, + [535] = 462, [536] = 536, - [537] = 461, + [537] = 463, [538] = 538, - [539] = 462, + [539] = 539, [540] = 439, [541] = 439, [542] = 439, [543] = 439, - [544] = 432, - [545] = 545, - [546] = 122, - [547] = 226, - [548] = 208, - [549] = 88, + [544] = 544, + [545] = 432, + [546] = 226, + [547] = 547, + [548] = 548, + [549] = 549, [550] = 550, - [551] = 226, - [552] = 208, - [553] = 226, - [554] = 208, - [555] = 226, - [556] = 208, - [557] = 70, - [558] = 558, - [559] = 559, - [560] = 560, - [561] = 559, - [562] = 72, - [563] = 78, - [564] = 79, - [565] = 80, - [566] = 566, - [567] = 226, - [568] = 568, - [569] = 559, - [570] = 570, - [571] = 571, - [572] = 572, - [573] = 573, - [574] = 574, - [575] = 575, - [576] = 576, - [577] = 577, - [578] = 573, - [579] = 574, - [580] = 558, - [581] = 550, - [582] = 560, - [583] = 208, - [584] = 226, - [585] = 585, - [586] = 586, - [587] = 189, - [588] = 588, - [589] = 589, - [590] = 590, - [591] = 591, - [592] = 592, - [593] = 593, - [594] = 208, - [595] = 595, - [596] = 596, - [597] = 121, - [598] = 129, - [599] = 226, - [600] = 600, - [601] = 573, - [602] = 574, - [603] = 603, - [604] = 559, - [605] = 550, - [606] = 560, + [551] = 551, + [552] = 552, + [553] = 553, + [554] = 554, + [555] = 555, + [556] = 130, + [557] = 131, + [558] = 226, + [559] = 134, + [560] = 135, + [561] = 136, + [562] = 109, + [563] = 138, + [564] = 139, + [565] = 140, + [566] = 141, + [567] = 142, + [568] = 143, + [569] = 144, + [570] = 145, + [571] = 146, + [572] = 147, + [573] = 148, + [574] = 132, + [575] = 150, + [576] = 151, + [577] = 152, + [578] = 153, + [579] = 127, + [580] = 155, + [581] = 209, + [582] = 158, + [583] = 159, + [584] = 160, + [585] = 555, + [586] = 161, + [587] = 165, + [588] = 171, + [589] = 173, + [590] = 110, + [591] = 111, + [592] = 112, + [593] = 114, + [594] = 115, + [595] = 116, + [596] = 117, + [597] = 118, + [598] = 119, + [599] = 599, + [600] = 120, + [601] = 121, + [602] = 122, + [603] = 123, + [604] = 226, + [605] = 209, + [606] = 606, [607] = 607, - [608] = 558, - [609] = 131, - [610] = 132, - [611] = 133, - [612] = 134, - [613] = 135, - [614] = 136, - [615] = 137, - [616] = 138, - [617] = 120, - [618] = 140, - [619] = 141, - [620] = 142, - [621] = 143, - [622] = 144, - [623] = 145, + [608] = 226, + [609] = 209, + [610] = 226, + [611] = 209, + [612] = 226, + [613] = 209, + [614] = 555, + [615] = 553, + [616] = 616, + [617] = 617, + [618] = 125, + [619] = 607, + [620] = 616, + [621] = 621, + [622] = 622, + [623] = 209, [624] = 624, - [625] = 573, - [626] = 574, - [627] = 550, - [628] = 560, + [625] = 84, + [626] = 128, + [627] = 80, + [628] = 617, [629] = 629, - [630] = 630, + [630] = 553, [631] = 631, - [632] = 146, - [633] = 147, - [634] = 109, - [635] = 149, - [636] = 150, - [637] = 151, - [638] = 117, - [639] = 208, - [640] = 155, - [641] = 156, - [642] = 84, - [643] = 157, - [644] = 126, - [645] = 154, - [646] = 73, - [647] = 82, - [648] = 573, - [649] = 574, - [650] = 650, - [651] = 550, - [652] = 560, + [632] = 607, + [633] = 616, + [634] = 634, + [635] = 82, + [636] = 555, + [637] = 91, + [638] = 92, + [639] = 93, + [640] = 94, + [641] = 88, + [642] = 553, + [643] = 643, + [644] = 644, + [645] = 72, + [646] = 646, + [647] = 617, + [648] = 629, + [649] = 607, + [650] = 616, + [651] = 651, + [652] = 652, [653] = 653, - [654] = 654, - [655] = 160, - [656] = 558, + [654] = 77, + [655] = 78, + [656] = 79, [657] = 657, - [658] = 658, - [659] = 169, - [660] = 91, - [661] = 170, - [662] = 662, - [663] = 92, - [664] = 93, - [665] = 173, - [666] = 174, - [667] = 175, - [668] = 111, - [669] = 112, - [670] = 113, - [671] = 114, - [672] = 115, - [673] = 116, - [674] = 94, - [675] = 118, - [676] = 119, - [677] = 139, - [678] = 558, - [679] = 558, - [680] = 559, - [681] = 558, - [682] = 559, - [683] = 91, - [684] = 559, - [685] = 558, - [686] = 559, - [687] = 559, - [688] = 688, + [658] = 617, + [659] = 629, + [660] = 660, + [661] = 607, + [662] = 616, + [663] = 226, + [664] = 664, + [665] = 665, + [666] = 666, + [667] = 667, + [668] = 617, + [669] = 669, + [670] = 670, + [671] = 629, + [672] = 672, + [673] = 673, + [674] = 674, + [675] = 209, + [676] = 70, + [677] = 629, + [678] = 678, + [679] = 553, + [680] = 555, + [681] = 553, + [682] = 555, + [683] = 553, + [684] = 555, + [685] = 553, + [686] = 686, + [687] = 78, + [688] = 79, [689] = 689, [690] = 690, [691] = 691, [692] = 692, - [693] = 72, - [694] = 694, - [695] = 695, - [696] = 696, - [697] = 155, - [698] = 698, - [699] = 699, - [700] = 700, - [701] = 156, - [702] = 78, - [703] = 703, - [704] = 704, - [705] = 157, - [706] = 706, - [707] = 707, - [708] = 708, + [693] = 693, + [694] = 134, + [695] = 135, + [696] = 136, + [697] = 109, + [698] = 138, + [699] = 139, + [700] = 140, + [701] = 141, + [702] = 142, + [703] = 143, + [704] = 144, + [705] = 145, + [706] = 146, + [707] = 147, + [708] = 148, [709] = 709, [710] = 710, - [711] = 711, - [712] = 210, - [713] = 713, + [711] = 210, + [712] = 712, + [713] = 553, [714] = 714, - [715] = 189, + [715] = 715, [716] = 716, - [717] = 79, + [717] = 717, [718] = 718, [719] = 719, - [720] = 80, - [721] = 689, - [722] = 210, + [720] = 720, + [721] = 721, + [722] = 624, [723] = 723, - [724] = 724, - [725] = 725, - [726] = 658, - [727] = 690, + [724] = 132, + [725] = 689, + [726] = 726, + [727] = 678, [728] = 728, - [729] = 121, - [730] = 154, - [731] = 129, - [732] = 92, - [733] = 160, - [734] = 84, - [735] = 93, - [736] = 94, - [737] = 88, - [738] = 711, - [739] = 280, - [740] = 169, - [741] = 131, - [742] = 170, - [743] = 132, - [744] = 133, - [745] = 711, + [729] = 150, + [730] = 151, + [731] = 152, + [732] = 153, + [733] = 127, + [734] = 92, + [735] = 155, + [736] = 709, + [737] = 130, + [738] = 738, + [739] = 131, + [740] = 91, + [741] = 158, + [742] = 159, + [743] = 743, + [744] = 160, + [745] = 709, [746] = 746, - [747] = 173, + [747] = 747, [748] = 748, - [749] = 749, - [750] = 174, - [751] = 716, - [752] = 175, + [749] = 712, + [750] = 750, + [751] = 751, + [752] = 752, [753] = 753, - [754] = 111, - [755] = 112, + [754] = 754, + [755] = 755, [756] = 756, [757] = 757, - [758] = 689, - [759] = 113, - [760] = 114, + [758] = 719, + [759] = 759, + [760] = 760, [761] = 761, - [762] = 725, + [762] = 723, [763] = 763, - [764] = 764, - [765] = 765, - [766] = 690, + [764] = 210, + [765] = 689, + [766] = 766, [767] = 767, - [768] = 768, - [769] = 769, - [770] = 115, - [771] = 116, - [772] = 134, - [773] = 118, - [774] = 558, - [775] = 775, - [776] = 119, - [777] = 120, - [778] = 122, - [779] = 210, - [780] = 135, - [781] = 136, - [782] = 137, - [783] = 559, + [768] = 125, + [769] = 555, + [770] = 770, + [771] = 281, + [772] = 161, + [773] = 553, + [774] = 774, + [775] = 165, + [776] = 776, + [777] = 777, + [778] = 210, + [779] = 779, + [780] = 82, + [781] = 555, + [782] = 171, + [783] = 553, [784] = 784, [785] = 785, [786] = 786, - [787] = 138, - [788] = 139, - [789] = 716, - [790] = 140, + [787] = 712, + [788] = 555, + [789] = 553, + [790] = 719, [791] = 791, [792] = 792, - [793] = 793, - [794] = 559, - [795] = 689, - [796] = 142, - [797] = 725, - [798] = 798, - [799] = 799, - [800] = 690, - [801] = 716, - [802] = 802, - [803] = 143, - [804] = 804, - [805] = 144, - [806] = 145, - [807] = 146, - [808] = 147, - [809] = 109, - [810] = 149, - [811] = 150, - [812] = 151, - [813] = 210, + [793] = 723, + [794] = 794, + [795] = 553, + [796] = 689, + [797] = 689, + [798] = 173, + [799] = 210, + [800] = 719, + [801] = 110, + [802] = 111, + [803] = 112, + [804] = 114, + [805] = 115, + [806] = 116, + [807] = 117, + [808] = 118, + [809] = 119, + [810] = 555, + [811] = 120, + [812] = 121, + [813] = 122, [814] = 814, - [815] = 815, - [816] = 558, - [817] = 559, - [818] = 558, + [815] = 553, + [816] = 210, + [817] = 712, + [818] = 555, [819] = 819, - [820] = 716, - [821] = 558, - [822] = 559, - [823] = 690, - [824] = 824, - [825] = 825, - [826] = 689, - [827] = 558, - [828] = 725, - [829] = 559, - [830] = 725, - [831] = 210, - [832] = 832, + [820] = 820, + [821] = 821, + [822] = 555, + [823] = 719, + [824] = 553, + [825] = 723, + [826] = 723, + [827] = 827, + [828] = 123, + [829] = 210, + [830] = 830, + [831] = 831, + [832] = 93, [833] = 833, - [834] = 834, - [835] = 835, - [836] = 836, - [837] = 558, - [838] = 559, - [839] = 210, + [834] = 80, + [835] = 555, + [836] = 553, + [837] = 210, + [838] = 72, + [839] = 77, [840] = 840, - [841] = 841, - [842] = 558, - [843] = 559, + [841] = 712, + [842] = 842, + [843] = 555, [844] = 844, - [845] = 845, - [846] = 117, - [847] = 558, - [848] = 559, - [849] = 210, - [850] = 73, - [851] = 82, - [852] = 558, - [853] = 559, - [854] = 825, - [855] = 844, - [856] = 692, - [857] = 798, - [858] = 802, - [859] = 804, - [860] = 558, - [861] = 825, - [862] = 844, - [863] = 692, - [864] = 798, - [865] = 802, - [866] = 804, - [867] = 559, - [868] = 825, - [869] = 844, - [870] = 692, - [871] = 798, - [872] = 802, - [873] = 804, - [874] = 558, - [875] = 825, - [876] = 844, - [877] = 692, - [878] = 798, - [879] = 802, - [880] = 804, - [881] = 814, - [882] = 775, - [883] = 814, - [884] = 775, - [885] = 814, - [886] = 775, - [887] = 814, - [888] = 775, - [889] = 756, - [890] = 756, - [891] = 756, - [892] = 756, - [893] = 141, + [845] = 553, + [846] = 555, + [847] = 94, + [848] = 848, + [849] = 849, + [850] = 553, + [851] = 833, + [852] = 720, + [853] = 678, + [854] = 840, + [855] = 842, + [856] = 844, + [857] = 857, + [858] = 833, + [859] = 720, + [860] = 678, + [861] = 840, + [862] = 842, + [863] = 844, + [864] = 555, + [865] = 833, + [866] = 720, + [867] = 84, + [868] = 840, + [869] = 842, + [870] = 844, + [871] = 88, + [872] = 833, + [873] = 720, + [874] = 678, + [875] = 840, + [876] = 842, + [877] = 844, + [878] = 848, + [879] = 757, + [880] = 848, + [881] = 757, + [882] = 848, + [883] = 757, + [884] = 848, + [885] = 757, + [886] = 746, + [887] = 746, + [888] = 746, + [889] = 746, + [890] = 890, + [891] = 553, + [892] = 555, + [893] = 555, [894] = 894, - [895] = 895, - [896] = 896, + [895] = 125, + [896] = 158, [897] = 897, [898] = 898, [899] = 899, @@ -2706,252 +2720,252 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [903] = 903, [904] = 904, [905] = 905, - [906] = 900, - [907] = 901, + [906] = 906, + [907] = 907, [908] = 908, [909] = 909, - [910] = 895, - [911] = 908, - [912] = 897, - [913] = 898, - [914] = 902, - [915] = 909, - [916] = 900, - [917] = 901, - [918] = 908, - [919] = 909, - [920] = 920, + [910] = 897, + [911] = 911, + [912] = 907, + [913] = 908, + [914] = 909, + [915] = 894, + [916] = 916, + [917] = 917, + [918] = 904, + [919] = 905, + [920] = 911, [921] = 921, [922] = 922, [923] = 923, - [924] = 920, - [925] = 921, - [926] = 920, - [927] = 922, - [928] = 923, - [929] = 929, + [924] = 916, + [925] = 917, + [926] = 926, + [927] = 904, + [928] = 905, + [929] = 911, [930] = 930, [931] = 931, - [932] = 894, - [933] = 933, - [934] = 934, - [935] = 935, + [932] = 932, + [933] = 921, + [934] = 922, + [935] = 923, [936] = 936, - [937] = 111, - [938] = 938, - [939] = 897, + [937] = 937, + [938] = 171, + [939] = 939, [940] = 940, - [941] = 112, + [941] = 907, [942] = 942, [943] = 943, - [944] = 944, - [945] = 126, - [946] = 113, - [947] = 947, + [944] = 161, + [945] = 173, + [946] = 946, + [947] = 159, [948] = 948, - [949] = 949, + [949] = 898, [950] = 950, - [951] = 951, + [951] = 160, [952] = 952, - [953] = 953, + [953] = 921, [954] = 954, [955] = 955, - [956] = 114, - [957] = 115, + [956] = 128, + [957] = 957, [958] = 899, [959] = 959, - [960] = 921, - [961] = 961, + [960] = 950, + [961] = 922, [962] = 903, - [963] = 116, - [964] = 160, - [965] = 922, - [966] = 966, - [967] = 118, - [968] = 896, - [969] = 895, - [970] = 970, - [971] = 897, - [972] = 898, - [973] = 902, - [974] = 923, - [975] = 900, - [976] = 901, - [977] = 908, - [978] = 909, - [979] = 920, + [963] = 963, + [964] = 923, + [965] = 965, + [966] = 110, + [967] = 967, + [968] = 968, + [969] = 897, + [970] = 111, + [971] = 907, + [972] = 908, + [973] = 909, + [974] = 974, + [975] = 916, + [976] = 917, + [977] = 904, + [978] = 905, + [979] = 911, [980] = 921, [981] = 922, [982] = 923, - [983] = 983, - [984] = 949, - [985] = 950, + [983] = 112, + [984] = 984, + [985] = 114, [986] = 986, - [987] = 987, - [988] = 988, - [989] = 119, + [987] = 898, + [988] = 950, + [989] = 908, [990] = 990, - [991] = 898, - [992] = 120, + [991] = 991, + [992] = 909, [993] = 993, [994] = 994, [995] = 995, - [996] = 122, + [996] = 115, [997] = 997, [998] = 899, - [999] = 189, - [1000] = 902, + [999] = 999, + [1000] = 1000, [1001] = 1001, - [1002] = 1002, - [1003] = 903, - [1004] = 155, - [1005] = 121, - [1006] = 169, - [1007] = 129, - [1008] = 1008, + [1002] = 130, + [1003] = 116, + [1004] = 131, + [1005] = 903, + [1006] = 117, + [1007] = 118, + [1008] = 119, [1009] = 1009, - [1010] = 903, - [1011] = 154, - [1012] = 895, - [1013] = 1013, - [1014] = 897, - [1015] = 131, - [1016] = 898, - [1017] = 954, - [1018] = 902, - [1019] = 959, - [1020] = 1020, - [1021] = 900, - [1022] = 901, - [1023] = 132, - [1024] = 133, - [1025] = 943, - [1026] = 944, - [1027] = 908, - [1028] = 909, - [1029] = 920, + [1010] = 165, + [1011] = 120, + [1012] = 134, + [1013] = 897, + [1014] = 135, + [1015] = 136, + [1016] = 109, + [1017] = 902, + [1018] = 1018, + [1019] = 967, + [1020] = 907, + [1021] = 908, + [1022] = 909, + [1023] = 138, + [1024] = 139, + [1025] = 952, + [1026] = 955, + [1027] = 903, + [1028] = 916, + [1029] = 917, [1030] = 1030, - [1031] = 951, - [1032] = 952, - [1033] = 134, - [1034] = 135, - [1035] = 136, - [1036] = 954, - [1037] = 921, - [1038] = 117, - [1039] = 922, - [1040] = 923, - [1041] = 896, - [1042] = 137, - [1043] = 138, - [1044] = 943, - [1045] = 944, - [1046] = 935, - [1047] = 170, - [1048] = 949, + [1031] = 930, + [1032] = 931, + [1033] = 140, + [1034] = 141, + [1035] = 142, + [1036] = 902, + [1037] = 904, + [1038] = 917, + [1039] = 905, + [1040] = 911, + [1041] = 921, + [1042] = 143, + [1043] = 144, + [1044] = 952, + [1045] = 955, + [1046] = 922, + [1047] = 923, + [1048] = 984, [1049] = 1030, - [1050] = 951, - [1051] = 952, - [1052] = 139, - [1053] = 140, - [1054] = 141, - [1055] = 954, - [1056] = 950, - [1057] = 959, + [1050] = 930, + [1051] = 931, + [1052] = 145, + [1053] = 146, + [1054] = 147, + [1055] = 902, + [1056] = 957, + [1057] = 967, [1058] = 1058, - [1059] = 950, - [1060] = 1060, - [1061] = 142, - [1062] = 143, - [1063] = 943, - [1064] = 944, - [1065] = 156, - [1066] = 157, + [1059] = 1059, + [1060] = 898, + [1061] = 148, + [1062] = 132, + [1063] = 952, + [1064] = 955, + [1065] = 950, + [1066] = 1066, [1067] = 1067, [1068] = 1030, - [1069] = 951, - [1070] = 952, - [1071] = 144, - [1072] = 145, - [1073] = 954, - [1074] = 173, - [1075] = 959, - [1076] = 174, - [1077] = 899, - [1078] = 899, - [1079] = 146, - [1080] = 147, - [1081] = 943, - [1082] = 944, - [1083] = 1030, - [1084] = 895, + [1069] = 930, + [1070] = 931, + [1071] = 150, + [1072] = 151, + [1073] = 902, + [1074] = 1074, + [1075] = 967, + [1076] = 1076, + [1077] = 1030, + [1078] = 897, + [1079] = 152, + [1080] = 153, + [1081] = 952, + [1082] = 955, + [1083] = 1083, + [1084] = 121, [1085] = 1085, [1086] = 1030, - [1087] = 951, - [1088] = 952, - [1089] = 959, - [1090] = 959, - [1091] = 959, - [1092] = 959, - [1093] = 959, - [1094] = 959, - [1095] = 959, - [1096] = 959, - [1097] = 959, - [1098] = 959, - [1099] = 959, - [1100] = 959, - [1101] = 959, - [1102] = 959, - [1103] = 995, - [1104] = 983, - [1105] = 1105, - [1106] = 903, - [1107] = 934, - [1108] = 1108, - [1109] = 995, + [1087] = 930, + [1088] = 931, + [1089] = 967, + [1090] = 967, + [1091] = 967, + [1092] = 967, + [1093] = 967, + [1094] = 967, + [1095] = 967, + [1096] = 967, + [1097] = 967, + [1098] = 967, + [1099] = 967, + [1100] = 967, + [1101] = 967, + [1102] = 967, + [1103] = 986, + [1104] = 122, + [1105] = 943, + [1106] = 899, + [1107] = 942, + [1108] = 1067, + [1109] = 986, [1110] = 1110, - [1111] = 1105, + [1111] = 943, [1112] = 1112, - [1113] = 934, - [1114] = 1108, - [1115] = 995, - [1116] = 949, - [1117] = 1105, - [1118] = 175, - [1119] = 934, - [1120] = 1108, - [1121] = 995, - [1122] = 1122, - [1123] = 1105, - [1124] = 896, - [1125] = 934, - [1126] = 1108, - [1127] = 949, - [1128] = 1067, - [1129] = 950, - [1130] = 1067, - [1131] = 1131, - [1132] = 1067, - [1133] = 1108, - [1134] = 1067, - [1135] = 894, - [1136] = 1122, - [1137] = 894, - [1138] = 1122, - [1139] = 894, - [1140] = 1122, - [1141] = 1105, - [1142] = 1122, - [1143] = 931, - [1144] = 931, - [1145] = 931, - [1146] = 931, - [1147] = 109, - [1148] = 149, - [1149] = 150, - [1150] = 151, - [1151] = 959, + [1113] = 942, + [1114] = 1067, + [1115] = 986, + [1116] = 1116, + [1117] = 943, + [1118] = 1000, + [1119] = 942, + [1120] = 1067, + [1121] = 986, + [1122] = 903, + [1123] = 943, + [1124] = 984, + [1125] = 942, + [1126] = 1067, + [1127] = 899, + [1128] = 1076, + [1129] = 1129, + [1130] = 1076, + [1131] = 984, + [1132] = 1076, + [1133] = 898, + [1134] = 1076, + [1135] = 900, + [1136] = 894, + [1137] = 900, + [1138] = 894, + [1139] = 900, + [1140] = 950, + [1141] = 900, + [1142] = 894, + [1143] = 1110, + [1144] = 1110, + [1145] = 1110, + [1146] = 1110, + [1147] = 127, + [1148] = 123, + [1149] = 155, + [1150] = 916, + [1151] = 967, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -3036,6 +3050,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\n') ADVANCE(50); END_STATE(); case 5: + if (lookahead == '\r') ADVANCE(60); + if (lookahead == '\\') ADVANCE(61); + if (lookahead != 0 && + lookahead != '%' && + lookahead != '}') ADVANCE(59); + END_STATE(); + case 6: if (lookahead == '\r') ADVANCE(35); if (lookahead == '=') ADVANCE(34); if (lookahead != 0 && @@ -3045,13 +3066,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '{' && lookahead != '}') ADVANCE(36); END_STATE(); - case 6: - if (lookahead == '\r') ADVANCE(60); - if (lookahead == '%') ADVANCE(56); - if (lookahead == '\\') ADVANCE(61); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(59); - END_STATE(); case 7: if (lookahead == '\r') SKIP(7); if (lookahead == ' ') ADVANCE(26); @@ -3365,8 +3379,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\r') ADVANCE(60); if (lookahead == '\\') ADVANCE(61); if (lookahead != 0 && - lookahead != '\n' && - lookahead != '%') ADVANCE(59); + lookahead != '%' && + lookahead != '}') ADVANCE(59); END_STATE(); case 61: ACCEPT_TOKEN(aux_sym_comment_token1); @@ -3383,67 +3397,67 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, [1] = {.lex_state = 17, .external_lex_state = 2}, [2] = {.lex_state = 17, .external_lex_state = 3}, - [3] = {.lex_state = 17, .external_lex_state = 3}, + [3] = {.lex_state = 17, .external_lex_state = 4}, [4] = {.lex_state = 17, .external_lex_state = 4}, - [5] = {.lex_state = 17, .external_lex_state = 3}, - [6] = {.lex_state = 17, .external_lex_state = 4}, - [7] = {.lex_state = 17, .external_lex_state = 3}, - [8] = {.lex_state = 17, .external_lex_state = 4}, - [9] = {.lex_state = 17, .external_lex_state = 4}, - [10] = {.lex_state = 17, .external_lex_state = 4}, - [11] = {.lex_state = 17, .external_lex_state = 4}, - [12] = {.lex_state = 17, .external_lex_state = 4}, - [13] = {.lex_state = 17, .external_lex_state = 4}, - [14] = {.lex_state = 17, .external_lex_state = 4}, - [15] = {.lex_state = 17, .external_lex_state = 4}, - [16] = {.lex_state = 17, .external_lex_state = 4}, - [17] = {.lex_state = 17, .external_lex_state = 4}, - [18] = {.lex_state = 17, .external_lex_state = 4}, - [19] = {.lex_state = 17, .external_lex_state = 4}, - [20] = {.lex_state = 17, .external_lex_state = 4}, - [21] = {.lex_state = 17, .external_lex_state = 4}, - [22] = {.lex_state = 17, .external_lex_state = 3}, - [23] = {.lex_state = 17, .external_lex_state = 3}, - [24] = {.lex_state = 17, .external_lex_state = 3}, - [25] = {.lex_state = 17, .external_lex_state = 3}, - [26] = {.lex_state = 17, .external_lex_state = 3}, - [27] = {.lex_state = 17, .external_lex_state = 3}, - [28] = {.lex_state = 17, .external_lex_state = 3}, - [29] = {.lex_state = 17, .external_lex_state = 3}, - [30] = {.lex_state = 17, .external_lex_state = 3}, - [31] = {.lex_state = 17, .external_lex_state = 3}, - [32] = {.lex_state = 17, .external_lex_state = 3}, - [33] = {.lex_state = 17, .external_lex_state = 3}, - [34] = {.lex_state = 17, .external_lex_state = 3}, - [35] = {.lex_state = 17, .external_lex_state = 3}, - [36] = {.lex_state = 17, .external_lex_state = 3}, - [37] = {.lex_state = 17, .external_lex_state = 3}, - [38] = {.lex_state = 17, .external_lex_state = 3}, - [39] = {.lex_state = 17, .external_lex_state = 3}, - [40] = {.lex_state = 17, .external_lex_state = 3}, - [41] = {.lex_state = 17, .external_lex_state = 3}, - [42] = {.lex_state = 17, .external_lex_state = 3}, - [43] = {.lex_state = 17, .external_lex_state = 3}, - [44] = {.lex_state = 17, .external_lex_state = 3}, - [45] = {.lex_state = 17, .external_lex_state = 3}, - [46] = {.lex_state = 17, .external_lex_state = 3}, - [47] = {.lex_state = 17, .external_lex_state = 3}, - [48] = {.lex_state = 17, .external_lex_state = 3}, - [49] = {.lex_state = 17, .external_lex_state = 3}, - [50] = {.lex_state = 17, .external_lex_state = 3}, - [51] = {.lex_state = 17, .external_lex_state = 3}, - [52] = {.lex_state = 17, .external_lex_state = 3}, - [53] = {.lex_state = 17, .external_lex_state = 3}, + [5] = {.lex_state = 17, .external_lex_state = 4}, + [6] = {.lex_state = 17, .external_lex_state = 3}, + [7] = {.lex_state = 17, .external_lex_state = 4}, + [8] = {.lex_state = 17, .external_lex_state = 3}, + [9] = {.lex_state = 17, .external_lex_state = 3}, + [10] = {.lex_state = 17, .external_lex_state = 3}, + [11] = {.lex_state = 17, .external_lex_state = 3}, + [12] = {.lex_state = 17, .external_lex_state = 3}, + [13] = {.lex_state = 17, .external_lex_state = 3}, + [14] = {.lex_state = 17, .external_lex_state = 3}, + [15] = {.lex_state = 17, .external_lex_state = 3}, + [16] = {.lex_state = 17, .external_lex_state = 3}, + [17] = {.lex_state = 17, .external_lex_state = 3}, + [18] = {.lex_state = 17, .external_lex_state = 3}, + [19] = {.lex_state = 17, .external_lex_state = 3}, + [20] = {.lex_state = 17, .external_lex_state = 3}, + [21] = {.lex_state = 17, .external_lex_state = 3}, + [22] = {.lex_state = 17, .external_lex_state = 4}, + [23] = {.lex_state = 17, .external_lex_state = 4}, + [24] = {.lex_state = 17, .external_lex_state = 4}, + [25] = {.lex_state = 17, .external_lex_state = 4}, + [26] = {.lex_state = 17, .external_lex_state = 4}, + [27] = {.lex_state = 17, .external_lex_state = 4}, + [28] = {.lex_state = 17, .external_lex_state = 4}, + [29] = {.lex_state = 17, .external_lex_state = 4}, + [30] = {.lex_state = 17, .external_lex_state = 4}, + [31] = {.lex_state = 17, .external_lex_state = 4}, + [32] = {.lex_state = 17, .external_lex_state = 4}, + [33] = {.lex_state = 17, .external_lex_state = 4}, + [34] = {.lex_state = 17, .external_lex_state = 4}, + [35] = {.lex_state = 17, .external_lex_state = 4}, + [36] = {.lex_state = 17, .external_lex_state = 4}, + [37] = {.lex_state = 17, .external_lex_state = 4}, + [38] = {.lex_state = 17, .external_lex_state = 4}, + [39] = {.lex_state = 17, .external_lex_state = 4}, + [40] = {.lex_state = 17, .external_lex_state = 4}, + [41] = {.lex_state = 17, .external_lex_state = 4}, + [42] = {.lex_state = 17, .external_lex_state = 4}, + [43] = {.lex_state = 17, .external_lex_state = 4}, + [44] = {.lex_state = 17, .external_lex_state = 4}, + [45] = {.lex_state = 17, .external_lex_state = 4}, + [46] = {.lex_state = 17, .external_lex_state = 4}, + [47] = {.lex_state = 17, .external_lex_state = 4}, + [48] = {.lex_state = 17, .external_lex_state = 4}, + [49] = {.lex_state = 17, .external_lex_state = 4}, + [50] = {.lex_state = 17, .external_lex_state = 4}, + [51] = {.lex_state = 17, .external_lex_state = 4}, + [52] = {.lex_state = 17, .external_lex_state = 4}, + [53] = {.lex_state = 17, .external_lex_state = 4}, [54] = {.lex_state = 17, .external_lex_state = 4}, [55] = {.lex_state = 17, .external_lex_state = 3}, - [56] = {.lex_state = 17, .external_lex_state = 3}, + [56] = {.lex_state = 17, .external_lex_state = 4}, [57] = {.lex_state = 17, .external_lex_state = 5}, [58] = {.lex_state = 17, .external_lex_state = 5}, [59] = {.lex_state = 17, .external_lex_state = 5}, - [60] = {.lex_state = 17, .external_lex_state = 3}, - [61] = {.lex_state = 17, .external_lex_state = 3}, + [60] = {.lex_state = 17, .external_lex_state = 4}, + [61] = {.lex_state = 17, .external_lex_state = 4}, [62] = {.lex_state = 17, .external_lex_state = 5}, - [63] = {.lex_state = 17, .external_lex_state = 3}, + [63] = {.lex_state = 17, .external_lex_state = 4}, [64] = {.lex_state = 17, .external_lex_state = 5}, [65] = {.lex_state = 17, .external_lex_state = 6}, [66] = {.lex_state = 17, .external_lex_state = 7}, @@ -3453,14 +3467,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [70] = {.lex_state = 17, .external_lex_state = 8}, [71] = {.lex_state = 17, .external_lex_state = 7}, [72] = {.lex_state = 17, .external_lex_state = 9}, - [73] = {.lex_state = 17, .external_lex_state = 10}, + [73] = {.lex_state = 17, .external_lex_state = 7}, [74] = {.lex_state = 17, .external_lex_state = 7}, [75] = {.lex_state = 17, .external_lex_state = 7}, - [76] = {.lex_state = 17, .external_lex_state = 7}, - [77] = {.lex_state = 17, .external_lex_state = 10}, + [76] = {.lex_state = 17, .external_lex_state = 10}, + [77] = {.lex_state = 17, .external_lex_state = 11}, [78] = {.lex_state = 17, .external_lex_state = 11}, - [79] = {.lex_state = 17, .external_lex_state = 11}, - [80] = {.lex_state = 17, .external_lex_state = 12}, + [79] = {.lex_state = 17, .external_lex_state = 12}, + [80] = {.lex_state = 17, .external_lex_state = 10}, [81] = {.lex_state = 17, .external_lex_state = 7}, [82] = {.lex_state = 17, .external_lex_state = 11}, [83] = {.lex_state = 17, .external_lex_state = 8}, @@ -3490,106 +3504,106 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [107] = {.lex_state = 17, .external_lex_state = 11}, [108] = {.lex_state = 17, .external_lex_state = 8}, [109] = {.lex_state = 17, .external_lex_state = 4}, - [110] = {.lex_state = 17, .external_lex_state = 3}, - [111] = {.lex_state = 17, .external_lex_state = 3}, - [112] = {.lex_state = 17, .external_lex_state = 3}, - [113] = {.lex_state = 17, .external_lex_state = 3}, - [114] = {.lex_state = 17, .external_lex_state = 3}, - [115] = {.lex_state = 17, .external_lex_state = 3}, - [116] = {.lex_state = 17, .external_lex_state = 3}, - [117] = {.lex_state = 17, .external_lex_state = 3}, - [118] = {.lex_state = 17, .external_lex_state = 3}, - [119] = {.lex_state = 17, .external_lex_state = 3}, - [120] = {.lex_state = 17, .external_lex_state = 3}, - [121] = {.lex_state = 17, .external_lex_state = 3}, - [122] = {.lex_state = 17, .external_lex_state = 3}, + [110] = {.lex_state = 17, .external_lex_state = 4}, + [111] = {.lex_state = 17, .external_lex_state = 4}, + [112] = {.lex_state = 17, .external_lex_state = 4}, + [113] = {.lex_state = 17, .external_lex_state = 4}, + [114] = {.lex_state = 17, .external_lex_state = 4}, + [115] = {.lex_state = 17, .external_lex_state = 4}, + [116] = {.lex_state = 17, .external_lex_state = 4}, + [117] = {.lex_state = 17, .external_lex_state = 4}, + [118] = {.lex_state = 17, .external_lex_state = 4}, + [119] = {.lex_state = 17, .external_lex_state = 4}, + [120] = {.lex_state = 17, .external_lex_state = 4}, + [121] = {.lex_state = 17, .external_lex_state = 4}, + [122] = {.lex_state = 17, .external_lex_state = 4}, [123] = {.lex_state = 17, .external_lex_state = 4}, - [124] = {.lex_state = 17, .external_lex_state = 4}, + [124] = {.lex_state = 17, .external_lex_state = 3}, [125] = {.lex_state = 17, .external_lex_state = 3}, - [126] = {.lex_state = 17, .external_lex_state = 4}, + [126] = {.lex_state = 17, .external_lex_state = 3}, [127] = {.lex_state = 17, .external_lex_state = 4}, - [128] = {.lex_state = 17, .external_lex_state = 4}, - [129] = {.lex_state = 17, .external_lex_state = 4}, + [128] = {.lex_state = 17, .external_lex_state = 3}, + [129] = {.lex_state = 17, .external_lex_state = 3}, [130] = {.lex_state = 17, .external_lex_state = 3}, - [131] = {.lex_state = 17, .external_lex_state = 4}, + [131] = {.lex_state = 17, .external_lex_state = 3}, [132] = {.lex_state = 17, .external_lex_state = 4}, [133] = {.lex_state = 17, .external_lex_state = 4}, - [134] = {.lex_state = 17, .external_lex_state = 4}, - [135] = {.lex_state = 17, .external_lex_state = 4}, - [136] = {.lex_state = 17, .external_lex_state = 4}, - [137] = {.lex_state = 17, .external_lex_state = 4}, - [138] = {.lex_state = 17, .external_lex_state = 4}, - [139] = {.lex_state = 17, .external_lex_state = 4}, - [140] = {.lex_state = 17, .external_lex_state = 4}, - [141] = {.lex_state = 17, .external_lex_state = 4}, - [142] = {.lex_state = 17, .external_lex_state = 4}, - [143] = {.lex_state = 17, .external_lex_state = 4}, - [144] = {.lex_state = 17, .external_lex_state = 4}, - [145] = {.lex_state = 17, .external_lex_state = 4}, - [146] = {.lex_state = 17, .external_lex_state = 4}, - [147] = {.lex_state = 17, .external_lex_state = 4}, + [134] = {.lex_state = 17, .external_lex_state = 3}, + [135] = {.lex_state = 17, .external_lex_state = 3}, + [136] = {.lex_state = 17, .external_lex_state = 3}, + [137] = {.lex_state = 17, .external_lex_state = 3}, + [138] = {.lex_state = 17, .external_lex_state = 3}, + [139] = {.lex_state = 17, .external_lex_state = 3}, + [140] = {.lex_state = 17, .external_lex_state = 3}, + [141] = {.lex_state = 17, .external_lex_state = 3}, + [142] = {.lex_state = 17, .external_lex_state = 3}, + [143] = {.lex_state = 17, .external_lex_state = 3}, + [144] = {.lex_state = 17, .external_lex_state = 3}, + [145] = {.lex_state = 17, .external_lex_state = 3}, + [146] = {.lex_state = 17, .external_lex_state = 3}, + [147] = {.lex_state = 17, .external_lex_state = 3}, [148] = {.lex_state = 17, .external_lex_state = 3}, - [149] = {.lex_state = 17, .external_lex_state = 4}, - [150] = {.lex_state = 17, .external_lex_state = 4}, - [151] = {.lex_state = 17, .external_lex_state = 4}, + [149] = {.lex_state = 17, .external_lex_state = 3}, + [150] = {.lex_state = 17, .external_lex_state = 3}, + [151] = {.lex_state = 17, .external_lex_state = 3}, [152] = {.lex_state = 17, .external_lex_state = 3}, - [153] = {.lex_state = 17, .external_lex_state = 4}, + [153] = {.lex_state = 17, .external_lex_state = 3}, [154] = {.lex_state = 17, .external_lex_state = 3}, [155] = {.lex_state = 17, .external_lex_state = 4}, - [156] = {.lex_state = 17, .external_lex_state = 4}, + [156] = {.lex_state = 17, .external_lex_state = 3}, [157] = {.lex_state = 17, .external_lex_state = 4}, [158] = {.lex_state = 17, .external_lex_state = 3}, [159] = {.lex_state = 17, .external_lex_state = 3}, [160] = {.lex_state = 17, .external_lex_state = 3}, [161] = {.lex_state = 17, .external_lex_state = 4}, - [162] = {.lex_state = 17, .external_lex_state = 3}, - [163] = {.lex_state = 17, .external_lex_state = 3}, + [162] = {.lex_state = 17, .external_lex_state = 4}, + [163] = {.lex_state = 17, .external_lex_state = 4}, [164] = {.lex_state = 17, .external_lex_state = 4}, - [165] = {.lex_state = 17, .external_lex_state = 3}, + [165] = {.lex_state = 17, .external_lex_state = 4}, [166] = {.lex_state = 17, .external_lex_state = 3}, - [167] = {.lex_state = 17, .external_lex_state = 3}, + [167] = {.lex_state = 17, .external_lex_state = 4}, [168] = {.lex_state = 17, .external_lex_state = 4}, [169] = {.lex_state = 17, .external_lex_state = 4}, [170] = {.lex_state = 17, .external_lex_state = 4}, [171] = {.lex_state = 17, .external_lex_state = 3}, - [172] = {.lex_state = 17, .external_lex_state = 3}, - [173] = {.lex_state = 17, .external_lex_state = 4}, + [172] = {.lex_state = 17, .external_lex_state = 4}, + [173] = {.lex_state = 17, .external_lex_state = 3}, [174] = {.lex_state = 17, .external_lex_state = 4}, - [175] = {.lex_state = 17, .external_lex_state = 4}, - [176] = {.lex_state = 17, .external_lex_state = 4}, - [177] = {.lex_state = 17, .external_lex_state = 4}, - [178] = {.lex_state = 17, .external_lex_state = 4}, - [179] = {.lex_state = 17, .external_lex_state = 4}, - [180] = {.lex_state = 17, .external_lex_state = 4}, - [181] = {.lex_state = 17, .external_lex_state = 4}, + [175] = {.lex_state = 17, .external_lex_state = 3}, + [176] = {.lex_state = 17, .external_lex_state = 3}, + [177] = {.lex_state = 17, .external_lex_state = 3}, + [178] = {.lex_state = 17, .external_lex_state = 3}, + [179] = {.lex_state = 17, .external_lex_state = 3}, + [180] = {.lex_state = 17, .external_lex_state = 3}, + [181] = {.lex_state = 17, .external_lex_state = 3}, [182] = {.lex_state = 17, .external_lex_state = 3}, - [183] = {.lex_state = 17, .external_lex_state = 4}, - [184] = {.lex_state = 17, .external_lex_state = 4}, + [183] = {.lex_state = 17, .external_lex_state = 3}, + [184] = {.lex_state = 17, .external_lex_state = 3}, [185] = {.lex_state = 17, .external_lex_state = 4}, - [186] = {.lex_state = 17, .external_lex_state = 4}, + [186] = {.lex_state = 17, .external_lex_state = 3}, [187] = {.lex_state = 17, .external_lex_state = 3}, [188] = {.lex_state = 17, .external_lex_state = 3}, - [189] = {.lex_state = 17, .external_lex_state = 4}, - [190] = {.lex_state = 17, .external_lex_state = 3}, - [191] = {.lex_state = 17, .external_lex_state = 3}, - [192] = {.lex_state = 17, .external_lex_state = 3}, - [193] = {.lex_state = 17, .external_lex_state = 3}, - [194] = {.lex_state = 17, .external_lex_state = 3}, - [195] = {.lex_state = 17, .external_lex_state = 3}, - [196] = {.lex_state = 17, .external_lex_state = 3}, - [197] = {.lex_state = 17, .external_lex_state = 3}, - [198] = {.lex_state = 17, .external_lex_state = 3}, - [199] = {.lex_state = 17, .external_lex_state = 3}, - [200] = {.lex_state = 17, .external_lex_state = 3}, - [201] = {.lex_state = 17, .external_lex_state = 3}, - [202] = {.lex_state = 17, .external_lex_state = 3}, - [203] = {.lex_state = 17, .external_lex_state = 3}, - [204] = {.lex_state = 17, .external_lex_state = 3}, - [205] = {.lex_state = 17, .external_lex_state = 3}, - [206] = {.lex_state = 17, .external_lex_state = 3}, + [189] = {.lex_state = 17, .external_lex_state = 3}, + [190] = {.lex_state = 17, .external_lex_state = 4}, + [191] = {.lex_state = 17, .external_lex_state = 4}, + [192] = {.lex_state = 17, .external_lex_state = 4}, + [193] = {.lex_state = 17, .external_lex_state = 4}, + [194] = {.lex_state = 17, .external_lex_state = 4}, + [195] = {.lex_state = 17, .external_lex_state = 4}, + [196] = {.lex_state = 17, .external_lex_state = 4}, + [197] = {.lex_state = 17, .external_lex_state = 4}, + [198] = {.lex_state = 17, .external_lex_state = 4}, + [199] = {.lex_state = 17, .external_lex_state = 4}, + [200] = {.lex_state = 17, .external_lex_state = 4}, + [201] = {.lex_state = 17, .external_lex_state = 4}, + [202] = {.lex_state = 17, .external_lex_state = 4}, + [203] = {.lex_state = 17, .external_lex_state = 4}, + [204] = {.lex_state = 17, .external_lex_state = 4}, + [205] = {.lex_state = 17, .external_lex_state = 4}, + [206] = {.lex_state = 17, .external_lex_state = 4}, [207] = {.lex_state = 17, .external_lex_state = 3}, - [208] = {.lex_state = 17, .external_lex_state = 6}, - [209] = {.lex_state = 17, .external_lex_state = 3}, + [208] = {.lex_state = 17, .external_lex_state = 4}, + [209] = {.lex_state = 17, .external_lex_state = 6}, [210] = {.lex_state = 17, .external_lex_state = 6}, [211] = {.lex_state = 17, .external_lex_state = 15}, [212] = {.lex_state = 17, .external_lex_state = 15}, @@ -3608,40 +3622,40 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [225] = {.lex_state = 17, .external_lex_state = 16}, [226] = {.lex_state = 17, .external_lex_state = 17}, [227] = {.lex_state = 17, .external_lex_state = 17}, - [228] = {.lex_state = 17, .external_lex_state = 18}, - [229] = {.lex_state = 0, .external_lex_state = 19}, - [230] = {.lex_state = 17, .external_lex_state = 18}, - [231] = {.lex_state = 17, .external_lex_state = 17}, - [232] = {.lex_state = 17, .external_lex_state = 20}, + [228] = {.lex_state = 0, .external_lex_state = 18}, + [229] = {.lex_state = 17, .external_lex_state = 17}, + [230] = {.lex_state = 17, .external_lex_state = 19}, + [231] = {.lex_state = 17, .external_lex_state = 19}, + [232] = {.lex_state = 0, .external_lex_state = 20}, [233] = {.lex_state = 0, .external_lex_state = 21}, - [234] = {.lex_state = 0, .external_lex_state = 22}, - [235] = {.lex_state = 17, .external_lex_state = 18}, - [236] = {.lex_state = 0, .external_lex_state = 19}, + [234] = {.lex_state = 17, .external_lex_state = 19}, + [235] = {.lex_state = 0, .external_lex_state = 18}, + [236] = {.lex_state = 17, .external_lex_state = 22}, [237] = {.lex_state = 1, .external_lex_state = 23}, [238] = {.lex_state = 1, .external_lex_state = 23}, - [239] = {.lex_state = 0, .external_lex_state = 22}, - [240] = {.lex_state = 0, .external_lex_state = 21}, + [239] = {.lex_state = 1, .external_lex_state = 23}, + [240] = {.lex_state = 0, .external_lex_state = 20}, [241] = {.lex_state = 1, .external_lex_state = 23}, [242] = {.lex_state = 1, .external_lex_state = 23}, - [243] = {.lex_state = 1, .external_lex_state = 23}, + [243] = {.lex_state = 0, .external_lex_state = 21}, [244] = {.lex_state = 1, .external_lex_state = 23}, - [245] = {.lex_state = 17, .external_lex_state = 24}, - [246] = {.lex_state = 17, .external_lex_state = 24}, - [247] = {.lex_state = 2, .external_lex_state = 25}, - [248] = {.lex_state = 17, .external_lex_state = 24}, - [249] = {.lex_state = 2, .external_lex_state = 25}, - [250] = {.lex_state = 17, .external_lex_state = 20}, - [251] = {.lex_state = 2, .external_lex_state = 25}, - [252] = {.lex_state = 2, .external_lex_state = 25}, - [253] = {.lex_state = 2, .external_lex_state = 25}, - [254] = {.lex_state = 2, .external_lex_state = 25}, - [255] = {.lex_state = 2, .external_lex_state = 25}, - [256] = {.lex_state = 2, .external_lex_state = 25}, - [257] = {.lex_state = 2, .external_lex_state = 25}, - [258] = {.lex_state = 2, .external_lex_state = 25}, - [259] = {.lex_state = 2, .external_lex_state = 25}, - [260] = {.lex_state = 17, .external_lex_state = 24}, - [261] = {.lex_state = 17, .external_lex_state = 24}, + [245] = {.lex_state = 2, .external_lex_state = 24}, + [246] = {.lex_state = 17, .external_lex_state = 25}, + [247] = {.lex_state = 2, .external_lex_state = 24}, + [248] = {.lex_state = 17, .external_lex_state = 22}, + [249] = {.lex_state = 2, .external_lex_state = 24}, + [250] = {.lex_state = 17, .external_lex_state = 25}, + [251] = {.lex_state = 2, .external_lex_state = 24}, + [252] = {.lex_state = 2, .external_lex_state = 24}, + [253] = {.lex_state = 2, .external_lex_state = 24}, + [254] = {.lex_state = 2, .external_lex_state = 24}, + [255] = {.lex_state = 2, .external_lex_state = 24}, + [256] = {.lex_state = 2, .external_lex_state = 24}, + [257] = {.lex_state = 2, .external_lex_state = 24}, + [258] = {.lex_state = 2, .external_lex_state = 24}, + [259] = {.lex_state = 17, .external_lex_state = 25}, + [260] = {.lex_state = 17, .external_lex_state = 25}, + [261] = {.lex_state = 17, .external_lex_state = 25}, [262] = {.lex_state = 17}, [263] = {.lex_state = 17}, [264] = {.lex_state = 17}, @@ -3651,176 +3665,176 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [268] = {.lex_state = 17}, [269] = {.lex_state = 17}, [270] = {.lex_state = 17}, - [271] = {.lex_state = 17}, - [272] = {.lex_state = 17, .external_lex_state = 24}, - [273] = {.lex_state = 17, .external_lex_state = 24}, - [274] = {.lex_state = 17, .external_lex_state = 26}, - [275] = {.lex_state = 17, .external_lex_state = 26}, + [271] = {.lex_state = 17, .external_lex_state = 25}, + [272] = {.lex_state = 17}, + [273] = {.lex_state = 17, .external_lex_state = 25}, + [274] = {.lex_state = 4}, + [275] = {.lex_state = 4}, [276] = {.lex_state = 17}, - [277] = {.lex_state = 4}, - [278] = {.lex_state = 4}, - [279] = {.lex_state = 17}, - [280] = {.lex_state = 1, .external_lex_state = 23}, - [281] = {.lex_state = 17, .external_lex_state = 24}, - [282] = {.lex_state = 1, .external_lex_state = 23}, - [283] = {.lex_state = 17, .external_lex_state = 20}, - [284] = {.lex_state = 17, .external_lex_state = 20}, - [285] = {.lex_state = 17, .external_lex_state = 20}, - [286] = {.lex_state = 0, .external_lex_state = 19}, - [287] = {.lex_state = 37, .external_lex_state = 27}, - [288] = {.lex_state = 0, .external_lex_state = 28}, - [289] = {.lex_state = 37, .external_lex_state = 27}, - [290] = {.lex_state = 37, .external_lex_state = 27}, - [291] = {.lex_state = 37, .external_lex_state = 27}, - [292] = {.lex_state = 37, .external_lex_state = 27}, - [293] = {.lex_state = 37, .external_lex_state = 27}, - [294] = {.lex_state = 0, .external_lex_state = 28}, - [295] = {.lex_state = 37, .external_lex_state = 27}, - [296] = {.lex_state = 17, .external_lex_state = 26}, - [297] = {.lex_state = 37, .external_lex_state = 27}, - [298] = {.lex_state = 37, .external_lex_state = 27}, - [299] = {.lex_state = 0, .external_lex_state = 28}, - [300] = {.lex_state = 37, .external_lex_state = 27}, - [301] = {.lex_state = 37, .external_lex_state = 27}, - [302] = {.lex_state = 37, .external_lex_state = 27}, - [303] = {.lex_state = 0, .external_lex_state = 28}, - [304] = {.lex_state = 0, .external_lex_state = 28}, - [305] = {.lex_state = 37, .external_lex_state = 27}, - [306] = {.lex_state = 37, .external_lex_state = 27}, - [307] = {.lex_state = 37, .external_lex_state = 27}, - [308] = {.lex_state = 0, .external_lex_state = 28}, - [309] = {.lex_state = 0, .external_lex_state = 19}, - [310] = {.lex_state = 4}, - [311] = {.lex_state = 0, .external_lex_state = 19}, - [312] = {.lex_state = 0, .external_lex_state = 19}, - [313] = {.lex_state = 0, .external_lex_state = 19}, - [314] = {.lex_state = 0, .external_lex_state = 19}, - [315] = {.lex_state = 0, .external_lex_state = 19}, - [316] = {.lex_state = 0, .external_lex_state = 29}, - [317] = {.lex_state = 2, .external_lex_state = 25}, + [277] = {.lex_state = 17}, + [278] = {.lex_state = 17, .external_lex_state = 26}, + [279] = {.lex_state = 17, .external_lex_state = 26}, + [280] = {.lex_state = 17, .external_lex_state = 22}, + [281] = {.lex_state = 1, .external_lex_state = 23}, + [282] = {.lex_state = 17, .external_lex_state = 25}, + [283] = {.lex_state = 1, .external_lex_state = 23}, + [284] = {.lex_state = 17, .external_lex_state = 22}, + [285] = {.lex_state = 0, .external_lex_state = 27}, + [286] = {.lex_state = 37, .external_lex_state = 28}, + [287] = {.lex_state = 37, .external_lex_state = 28}, + [288] = {.lex_state = 0, .external_lex_state = 27}, + [289] = {.lex_state = 0, .external_lex_state = 27}, + [290] = {.lex_state = 37, .external_lex_state = 28}, + [291] = {.lex_state = 0, .external_lex_state = 18}, + [292] = {.lex_state = 37, .external_lex_state = 28}, + [293] = {.lex_state = 37, .external_lex_state = 28}, + [294] = {.lex_state = 37, .external_lex_state = 28}, + [295] = {.lex_state = 0, .external_lex_state = 27}, + [296] = {.lex_state = 0, .external_lex_state = 27}, + [297] = {.lex_state = 4}, + [298] = {.lex_state = 37, .external_lex_state = 28}, + [299] = {.lex_state = 37, .external_lex_state = 28}, + [300] = {.lex_state = 37, .external_lex_state = 28}, + [301] = {.lex_state = 37, .external_lex_state = 28}, + [302] = {.lex_state = 37, .external_lex_state = 28}, + [303] = {.lex_state = 37, .external_lex_state = 28}, + [304] = {.lex_state = 17, .external_lex_state = 22}, + [305] = {.lex_state = 0, .external_lex_state = 18}, + [306] = {.lex_state = 0, .external_lex_state = 18}, + [307] = {.lex_state = 0, .external_lex_state = 18}, + [308] = {.lex_state = 0, .external_lex_state = 18}, + [309] = {.lex_state = 0, .external_lex_state = 18}, + [310] = {.lex_state = 37, .external_lex_state = 28}, + [311] = {.lex_state = 0, .external_lex_state = 18}, + [312] = {.lex_state = 37, .external_lex_state = 28}, + [313] = {.lex_state = 17, .external_lex_state = 26}, + [314] = {.lex_state = 0, .external_lex_state = 27}, + [315] = {.lex_state = 37, .external_lex_state = 28}, + [316] = {.lex_state = 0, .external_lex_state = 20}, + [317] = {.lex_state = 0, .external_lex_state = 29}, [318] = {.lex_state = 0, .external_lex_state = 30}, - [319] = {.lex_state = 0, .external_lex_state = 31}, - [320] = {.lex_state = 0, .external_lex_state = 21}, - [321] = {.lex_state = 0, .external_lex_state = 21}, - [322] = {.lex_state = 2, .external_lex_state = 25}, - [323] = {.lex_state = 0, .external_lex_state = 29}, - [324] = {.lex_state = 0, .external_lex_state = 31}, - [325] = {.lex_state = 0, .external_lex_state = 30}, - [326] = {.lex_state = 2, .external_lex_state = 25}, - [327] = {.lex_state = 2, .external_lex_state = 25}, - [328] = {.lex_state = 2, .external_lex_state = 25}, - [329] = {.lex_state = 0, .external_lex_state = 22}, - [330] = {.lex_state = 0, .external_lex_state = 21}, - [331] = {.lex_state = 2, .external_lex_state = 25}, - [332] = {.lex_state = 2, .external_lex_state = 25}, - [333] = {.lex_state = 0, .external_lex_state = 29}, - [334] = {.lex_state = 0, .external_lex_state = 31}, - [335] = {.lex_state = 0, .external_lex_state = 30}, + [319] = {.lex_state = 0, .external_lex_state = 20}, + [320] = {.lex_state = 2, .external_lex_state = 24}, + [321] = {.lex_state = 2, .external_lex_state = 24}, + [322] = {.lex_state = 0, .external_lex_state = 20}, + [323] = {.lex_state = 2, .external_lex_state = 24}, + [324] = {.lex_state = 0, .external_lex_state = 21}, + [325] = {.lex_state = 2, .external_lex_state = 24}, + [326] = {.lex_state = 0, .external_lex_state = 31}, + [327] = {.lex_state = 0, .external_lex_state = 29}, + [328] = {.lex_state = 0, .external_lex_state = 30}, + [329] = {.lex_state = 0, .external_lex_state = 21}, + [330] = {.lex_state = 0, .external_lex_state = 31}, + [331] = {.lex_state = 2, .external_lex_state = 24}, + [332] = {.lex_state = 0, .external_lex_state = 21}, + [333] = {.lex_state = 0, .external_lex_state = 21}, + [334] = {.lex_state = 0, .external_lex_state = 21}, + [335] = {.lex_state = 0, .external_lex_state = 21}, [336] = {.lex_state = 0, .external_lex_state = 31}, - [337] = {.lex_state = 2, .external_lex_state = 25}, - [338] = {.lex_state = 0, .external_lex_state = 30}, - [339] = {.lex_state = 2, .external_lex_state = 25}, - [340] = {.lex_state = 0, .external_lex_state = 29}, - [341] = {.lex_state = 0, .external_lex_state = 21}, - [342] = {.lex_state = 0, .external_lex_state = 21}, - [343] = {.lex_state = 0, .external_lex_state = 21}, - [344] = {.lex_state = 37, .external_lex_state = 27}, - [345] = {.lex_state = 0, .external_lex_state = 22}, - [346] = {.lex_state = 0, .external_lex_state = 22}, - [347] = {.lex_state = 0, .external_lex_state = 22}, - [348] = {.lex_state = 0, .external_lex_state = 22}, - [349] = {.lex_state = 0, .external_lex_state = 22}, - [350] = {.lex_state = 0, .external_lex_state = 22}, - [351] = {.lex_state = 0, .external_lex_state = 29}, - [352] = {.lex_state = 0, .external_lex_state = 31}, - [353] = {.lex_state = 37, .external_lex_state = 27}, - [354] = {.lex_state = 0, .external_lex_state = 30}, - [355] = {.lex_state = 0, .external_lex_state = 29}, - [356] = {.lex_state = 0, .external_lex_state = 31}, - [357] = {.lex_state = 0, .external_lex_state = 30}, + [337] = {.lex_state = 0, .external_lex_state = 29}, + [338] = {.lex_state = 0, .external_lex_state = 31}, + [339] = {.lex_state = 0, .external_lex_state = 29}, + [340] = {.lex_state = 0, .external_lex_state = 30}, + [341] = {.lex_state = 0, .external_lex_state = 31}, + [342] = {.lex_state = 0, .external_lex_state = 29}, + [343] = {.lex_state = 0, .external_lex_state = 30}, + [344] = {.lex_state = 0, .external_lex_state = 30}, + [345] = {.lex_state = 37, .external_lex_state = 28}, + [346] = {.lex_state = 0, .external_lex_state = 30}, + [347] = {.lex_state = 37, .external_lex_state = 28}, + [348] = {.lex_state = 0, .external_lex_state = 31}, + [349] = {.lex_state = 0, .external_lex_state = 20}, + [350] = {.lex_state = 2, .external_lex_state = 24}, + [351] = {.lex_state = 0, .external_lex_state = 20}, + [352] = {.lex_state = 0, .external_lex_state = 20}, + [353] = {.lex_state = 2, .external_lex_state = 24}, + [354] = {.lex_state = 2, .external_lex_state = 24}, + [355] = {.lex_state = 2, .external_lex_state = 24}, + [356] = {.lex_state = 0, .external_lex_state = 20}, + [357] = {.lex_state = 0, .external_lex_state = 29}, [358] = {.lex_state = 0, .external_lex_state = 21}, [359] = {.lex_state = 0, .external_lex_state = 32}, [360] = {.lex_state = 0, .external_lex_state = 32}, - [361] = {.lex_state = 0, .external_lex_state = 32}, - [362] = {.lex_state = 0, .external_lex_state = 33}, - [363] = {.lex_state = 0, .external_lex_state = 32}, - [364] = {.lex_state = 0, .external_lex_state = 32}, - [365] = {.lex_state = 0, .external_lex_state = 32}, + [361] = {.lex_state = 0, .external_lex_state = 33}, + [362] = {.lex_state = 0, .external_lex_state = 34}, + [363] = {.lex_state = 0, .external_lex_state = 33}, + [364] = {.lex_state = 0, .external_lex_state = 34}, + [365] = {.lex_state = 0, .external_lex_state = 33}, [366] = {.lex_state = 0, .external_lex_state = 32}, [367] = {.lex_state = 0, .external_lex_state = 34}, [368] = {.lex_state = 0, .external_lex_state = 34}, - [369] = {.lex_state = 0, .external_lex_state = 34}, - [370] = {.lex_state = 0, .external_lex_state = 32}, + [369] = {.lex_state = 0, .external_lex_state = 32}, + [370] = {.lex_state = 0, .external_lex_state = 34}, [371] = {.lex_state = 0, .external_lex_state = 32}, - [372] = {.lex_state = 0, .external_lex_state = 32}, - [373] = {.lex_state = 0, .external_lex_state = 32}, - [374] = {.lex_state = 0, .external_lex_state = 32}, - [375] = {.lex_state = 0, .external_lex_state = 32}, - [376] = {.lex_state = 0, .external_lex_state = 32}, - [377] = {.lex_state = 0, .external_lex_state = 32}, - [378] = {.lex_state = 0, .external_lex_state = 32}, - [379] = {.lex_state = 0, .external_lex_state = 32}, - [380] = {.lex_state = 0, .external_lex_state = 32}, - [381] = {.lex_state = 0, .external_lex_state = 32}, - [382] = {.lex_state = 0, .external_lex_state = 32}, - [383] = {.lex_state = 0, .external_lex_state = 32}, - [384] = {.lex_state = 0, .external_lex_state = 32}, - [385] = {.lex_state = 0, .external_lex_state = 33}, - [386] = {.lex_state = 0, .external_lex_state = 32}, - [387] = {.lex_state = 0, .external_lex_state = 32}, - [388] = {.lex_state = 0, .external_lex_state = 32}, - [389] = {.lex_state = 0, .external_lex_state = 32}, - [390] = {.lex_state = 0, .external_lex_state = 32}, - [391] = {.lex_state = 0, .external_lex_state = 32}, - [392] = {.lex_state = 0, .external_lex_state = 32}, - [393] = {.lex_state = 0, .external_lex_state = 32}, - [394] = {.lex_state = 0, .external_lex_state = 32}, - [395] = {.lex_state = 0, .external_lex_state = 32}, - [396] = {.lex_state = 0, .external_lex_state = 32}, + [372] = {.lex_state = 0, .external_lex_state = 34}, + [373] = {.lex_state = 0, .external_lex_state = 34}, + [374] = {.lex_state = 0, .external_lex_state = 34}, + [375] = {.lex_state = 0, .external_lex_state = 34}, + [376] = {.lex_state = 0, .external_lex_state = 34}, + [377] = {.lex_state = 0, .external_lex_state = 34}, + [378] = {.lex_state = 0, .external_lex_state = 34}, + [379] = {.lex_state = 0, .external_lex_state = 34}, + [380] = {.lex_state = 0, .external_lex_state = 34}, + [381] = {.lex_state = 0, .external_lex_state = 34}, + [382] = {.lex_state = 0, .external_lex_state = 34}, + [383] = {.lex_state = 0, .external_lex_state = 34}, + [384] = {.lex_state = 0, .external_lex_state = 34}, + [385] = {.lex_state = 0, .external_lex_state = 34}, + [386] = {.lex_state = 0, .external_lex_state = 34}, + [387] = {.lex_state = 0, .external_lex_state = 34}, + [388] = {.lex_state = 0, .external_lex_state = 34}, + [389] = {.lex_state = 0, .external_lex_state = 34}, + [390] = {.lex_state = 0, .external_lex_state = 34}, + [391] = {.lex_state = 0, .external_lex_state = 34}, + [392] = {.lex_state = 0, .external_lex_state = 34}, + [393] = {.lex_state = 0, .external_lex_state = 34}, + [394] = {.lex_state = 0, .external_lex_state = 34}, + [395] = {.lex_state = 0, .external_lex_state = 34}, + [396] = {.lex_state = 0, .external_lex_state = 34}, [397] = {.lex_state = 0, .external_lex_state = 34}, - [398] = {.lex_state = 0, .external_lex_state = 32}, - [399] = {.lex_state = 0, .external_lex_state = 32}, - [400] = {.lex_state = 0, .external_lex_state = 32}, + [398] = {.lex_state = 0, .external_lex_state = 34}, + [399] = {.lex_state = 0, .external_lex_state = 34}, + [400] = {.lex_state = 0, .external_lex_state = 33}, [401] = {.lex_state = 0, .external_lex_state = 32}, - [402] = {.lex_state = 0, .external_lex_state = 34}, + [402] = {.lex_state = 0, .external_lex_state = 32}, [403] = {.lex_state = 0, .external_lex_state = 34}, [404] = {.lex_state = 0, .external_lex_state = 34}, - [405] = {.lex_state = 0, .external_lex_state = 32}, + [405] = {.lex_state = 0, .external_lex_state = 34}, [406] = {.lex_state = 0, .external_lex_state = 34}, - [407] = {.lex_state = 0, .external_lex_state = 34}, - [408] = {.lex_state = 0, .external_lex_state = 33}, - [409] = {.lex_state = 0, .external_lex_state = 33}, + [407] = {.lex_state = 0, .external_lex_state = 32}, + [408] = {.lex_state = 0, .external_lex_state = 32}, + [409] = {.lex_state = 0, .external_lex_state = 34}, [410] = {.lex_state = 0, .external_lex_state = 34}, - [411] = {.lex_state = 0, .external_lex_state = 32}, - [412] = {.lex_state = 0, .external_lex_state = 34}, + [411] = {.lex_state = 0, .external_lex_state = 34}, + [412] = {.lex_state = 0, .external_lex_state = 32}, [413] = {.lex_state = 0, .external_lex_state = 32}, - [414] = {.lex_state = 0, .external_lex_state = 32}, + [414] = {.lex_state = 0, .external_lex_state = 34}, [415] = {.lex_state = 0, .external_lex_state = 33}, - [416] = {.lex_state = 0, .external_lex_state = 32}, - [417] = {.lex_state = 0, .external_lex_state = 27}, - [418] = {.lex_state = 0, .external_lex_state = 35}, - [419] = {.lex_state = 0, .external_lex_state = 27}, - [420] = {.lex_state = 0, .external_lex_state = 27}, - [421] = {.lex_state = 0, .external_lex_state = 36}, - [422] = {.lex_state = 0, .external_lex_state = 36}, - [423] = {.lex_state = 0, .external_lex_state = 37}, - [424] = {.lex_state = 0, .external_lex_state = 38}, - [425] = {.lex_state = 0, .external_lex_state = 39}, - [426] = {.lex_state = 0, .external_lex_state = 40}, - [427] = {.lex_state = 0, .external_lex_state = 41}, - [428] = {.lex_state = 0, .external_lex_state = 38}, - [429] = {.lex_state = 0, .external_lex_state = 42}, + [416] = {.lex_state = 0, .external_lex_state = 34}, + [417] = {.lex_state = 0, .external_lex_state = 35}, + [418] = {.lex_state = 5, .external_lex_state = 36}, + [419] = {.lex_state = 0, .external_lex_state = 28}, + [420] = {.lex_state = 0, .external_lex_state = 28}, + [421] = {.lex_state = 0, .external_lex_state = 37}, + [422] = {.lex_state = 0, .external_lex_state = 35}, + [423] = {.lex_state = 0, .external_lex_state = 28}, + [424] = {.lex_state = 5, .external_lex_state = 36}, + [425] = {.lex_state = 5, .external_lex_state = 36}, + [426] = {.lex_state = 0, .external_lex_state = 38}, + [427] = {.lex_state = 0, .external_lex_state = 39}, + [428] = {.lex_state = 0, .external_lex_state = 40}, + [429] = {.lex_state = 0, .external_lex_state = 41}, [430] = {.lex_state = 0, .external_lex_state = 39}, - [431] = {.lex_state = 0, .external_lex_state = 43}, + [431] = {.lex_state = 0, .external_lex_state = 42}, [432] = {.lex_state = 0, .external_lex_state = 41}, - [433] = {.lex_state = 0, .external_lex_state = 44}, + [433] = {.lex_state = 0, .external_lex_state = 43}, [434] = {.lex_state = 0, .external_lex_state = 42}, [435] = {.lex_state = 0, .external_lex_state = 43}, [436] = {.lex_state = 0, .external_lex_state = 44}, [437] = {.lex_state = 0, .external_lex_state = 45}, [438] = {.lex_state = 37}, - [439] = {.lex_state = 5, .external_lex_state = 25}, - [440] = {.lex_state = 6}, + [439] = {.lex_state = 6, .external_lex_state = 24}, + [440] = {.lex_state = 5, .external_lex_state = 36}, [441] = {.lex_state = 0, .external_lex_state = 46}, [442] = {.lex_state = 37, .external_lex_state = 47}, [443] = {.lex_state = 37}, @@ -3835,7 +3849,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [452] = {.lex_state = 0, .external_lex_state = 49}, [453] = {.lex_state = 0, .external_lex_state = 49}, [454] = {.lex_state = 0, .external_lex_state = 46}, - [455] = {.lex_state = 0, .external_lex_state = 36}, + [455] = {.lex_state = 0, .external_lex_state = 35}, [456] = {.lex_state = 0, .external_lex_state = 50}, [457] = {.lex_state = 0, .external_lex_state = 51}, [458] = {.lex_state = 0, .external_lex_state = 52}, @@ -3844,649 +3858,649 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [461] = {.lex_state = 0, .external_lex_state = 55}, [462] = {.lex_state = 0, .external_lex_state = 56}, [463] = {.lex_state = 0, .external_lex_state = 57}, - [464] = {.lex_state = 0, .external_lex_state = 37}, - [465] = {.lex_state = 0, .external_lex_state = 40}, - [466] = {.lex_state = 0, .external_lex_state = 38}, - [467] = {.lex_state = 0, .external_lex_state = 39}, - [468] = {.lex_state = 0, .external_lex_state = 41}, - [469] = {.lex_state = 0, .external_lex_state = 42}, - [470] = {.lex_state = 0, .external_lex_state = 43}, - [471] = {.lex_state = 0, .external_lex_state = 44}, - [472] = {.lex_state = 6}, - [473] = {.lex_state = 6}, - [474] = {.lex_state = 37, .external_lex_state = 47}, - [475] = {.lex_state = 0, .external_lex_state = 50}, - [476] = {.lex_state = 0, .external_lex_state = 51}, - [477] = {.lex_state = 0, .external_lex_state = 52}, - [478] = {.lex_state = 0, .external_lex_state = 53}, - [479] = {.lex_state = 0, .external_lex_state = 54}, - [480] = {.lex_state = 0, .external_lex_state = 55}, - [481] = {.lex_state = 0, .external_lex_state = 56}, - [482] = {.lex_state = 0, .external_lex_state = 57}, - [483] = {.lex_state = 0, .external_lex_state = 37}, + [464] = {.lex_state = 0, .external_lex_state = 38}, + [465] = {.lex_state = 0, .external_lex_state = 58}, + [466] = {.lex_state = 0, .external_lex_state = 44}, + [467] = {.lex_state = 0, .external_lex_state = 40}, + [468] = {.lex_state = 0, .external_lex_state = 39}, + [469] = {.lex_state = 0, .external_lex_state = 41}, + [470] = {.lex_state = 0, .external_lex_state = 42}, + [471] = {.lex_state = 0, .external_lex_state = 43}, + [472] = {.lex_state = 37, .external_lex_state = 47}, + [473] = {.lex_state = 0, .external_lex_state = 50}, + [474] = {.lex_state = 0, .external_lex_state = 51}, + [475] = {.lex_state = 0, .external_lex_state = 52}, + [476] = {.lex_state = 0, .external_lex_state = 53}, + [477] = {.lex_state = 0, .external_lex_state = 54}, + [478] = {.lex_state = 0, .external_lex_state = 55}, + [479] = {.lex_state = 0, .external_lex_state = 56}, + [480] = {.lex_state = 0, .external_lex_state = 57}, + [481] = {.lex_state = 0, .external_lex_state = 38}, + [482] = {.lex_state = 0, .external_lex_state = 58}, + [483] = {.lex_state = 0, .external_lex_state = 44}, [484] = {.lex_state = 0, .external_lex_state = 40}, - [485] = {.lex_state = 0, .external_lex_state = 38}, - [486] = {.lex_state = 0, .external_lex_state = 39}, - [487] = {.lex_state = 0, .external_lex_state = 57}, - [488] = {.lex_state = 0, .external_lex_state = 42}, - [489] = {.lex_state = 0, .external_lex_state = 43}, - [490] = {.lex_state = 0, .external_lex_state = 44}, - [491] = {.lex_state = 0, .external_lex_state = 50}, - [492] = {.lex_state = 0, .external_lex_state = 51}, - [493] = {.lex_state = 0, .external_lex_state = 52}, - [494] = {.lex_state = 0, .external_lex_state = 53}, - [495] = {.lex_state = 0, .external_lex_state = 54}, - [496] = {.lex_state = 0, .external_lex_state = 55}, - [497] = {.lex_state = 0, .external_lex_state = 56}, - [498] = {.lex_state = 0, .external_lex_state = 57}, - [499] = {.lex_state = 0, .external_lex_state = 37}, + [485] = {.lex_state = 0, .external_lex_state = 39}, + [486] = {.lex_state = 0, .external_lex_state = 58}, + [487] = {.lex_state = 0, .external_lex_state = 42}, + [488] = {.lex_state = 0, .external_lex_state = 43}, + [489] = {.lex_state = 0, .external_lex_state = 50}, + [490] = {.lex_state = 0, .external_lex_state = 51}, + [491] = {.lex_state = 0, .external_lex_state = 52}, + [492] = {.lex_state = 0, .external_lex_state = 53}, + [493] = {.lex_state = 0, .external_lex_state = 54}, + [494] = {.lex_state = 0, .external_lex_state = 55}, + [495] = {.lex_state = 0, .external_lex_state = 56}, + [496] = {.lex_state = 0, .external_lex_state = 57}, + [497] = {.lex_state = 0, .external_lex_state = 38}, + [498] = {.lex_state = 0, .external_lex_state = 58}, + [499] = {.lex_state = 0, .external_lex_state = 44}, [500] = {.lex_state = 0, .external_lex_state = 40}, - [501] = {.lex_state = 0, .external_lex_state = 38}, - [502] = {.lex_state = 0, .external_lex_state = 39}, - [503] = {.lex_state = 0, .external_lex_state = 41}, - [504] = {.lex_state = 0, .external_lex_state = 42}, - [505] = {.lex_state = 0, .external_lex_state = 43}, - [506] = {.lex_state = 0, .external_lex_state = 44}, - [507] = {.lex_state = 0, .external_lex_state = 50}, - [508] = {.lex_state = 0, .external_lex_state = 51}, - [509] = {.lex_state = 0, .external_lex_state = 52}, - [510] = {.lex_state = 0, .external_lex_state = 53}, - [511] = {.lex_state = 0, .external_lex_state = 54}, - [512] = {.lex_state = 0, .external_lex_state = 55}, - [513] = {.lex_state = 0, .external_lex_state = 56}, - [514] = {.lex_state = 0, .external_lex_state = 57}, - [515] = {.lex_state = 0, .external_lex_state = 37}, + [501] = {.lex_state = 0, .external_lex_state = 39}, + [502] = {.lex_state = 0, .external_lex_state = 41}, + [503] = {.lex_state = 0, .external_lex_state = 42}, + [504] = {.lex_state = 0, .external_lex_state = 43}, + [505] = {.lex_state = 0, .external_lex_state = 50}, + [506] = {.lex_state = 0, .external_lex_state = 51}, + [507] = {.lex_state = 0, .external_lex_state = 52}, + [508] = {.lex_state = 0, .external_lex_state = 53}, + [509] = {.lex_state = 0, .external_lex_state = 54}, + [510] = {.lex_state = 0, .external_lex_state = 55}, + [511] = {.lex_state = 0, .external_lex_state = 56}, + [512] = {.lex_state = 0, .external_lex_state = 57}, + [513] = {.lex_state = 0, .external_lex_state = 38}, + [514] = {.lex_state = 0, .external_lex_state = 58}, + [515] = {.lex_state = 0, .external_lex_state = 44}, [516] = {.lex_state = 0, .external_lex_state = 40}, - [517] = {.lex_state = 0, .external_lex_state = 38}, - [518] = {.lex_state = 0, .external_lex_state = 39}, - [519] = {.lex_state = 0, .external_lex_state = 41}, - [520] = {.lex_state = 0, .external_lex_state = 42}, - [521] = {.lex_state = 0, .external_lex_state = 43}, - [522] = {.lex_state = 0, .external_lex_state = 44}, + [517] = {.lex_state = 0, .external_lex_state = 39}, + [518] = {.lex_state = 0, .external_lex_state = 41}, + [519] = {.lex_state = 0, .external_lex_state = 42}, + [520] = {.lex_state = 0, .external_lex_state = 43}, + [521] = {.lex_state = 0, .external_lex_state = 50}, + [522] = {.lex_state = 0, .external_lex_state = 51}, [523] = {.lex_state = 0, .external_lex_state = 50}, - [524] = {.lex_state = 0, .external_lex_state = 51}, - [525] = {.lex_state = 0, .external_lex_state = 52}, - [526] = {.lex_state = 0, .external_lex_state = 50}, - [527] = {.lex_state = 0, .external_lex_state = 53}, - [528] = {.lex_state = 0, .external_lex_state = 51}, - [529] = {.lex_state = 0, .external_lex_state = 40}, - [530] = {.lex_state = 0, .external_lex_state = 54}, - [531] = {.lex_state = 0, .external_lex_state = 52}, - [532] = {.lex_state = 0, .external_lex_state = 55}, - [533] = {.lex_state = 0, .external_lex_state = 53}, - [534] = {.lex_state = 0, .external_lex_state = 56}, - [535] = {.lex_state = 0, .external_lex_state = 54}, - [536] = {.lex_state = 0, .external_lex_state = 57}, - [537] = {.lex_state = 0, .external_lex_state = 55}, - [538] = {.lex_state = 0, .external_lex_state = 37}, - [539] = {.lex_state = 0, .external_lex_state = 56}, - [540] = {.lex_state = 5, .external_lex_state = 25}, - [541] = {.lex_state = 5, .external_lex_state = 25}, - [542] = {.lex_state = 5, .external_lex_state = 25}, - [543] = {.lex_state = 5, .external_lex_state = 25}, - [544] = {.lex_state = 0, .external_lex_state = 41}, - [545] = {.lex_state = 0, .external_lex_state = 34}, - [546] = {.lex_state = 0, .external_lex_state = 32}, - [547] = {.lex_state = 0, .external_lex_state = 58}, - [548] = {.lex_state = 0, .external_lex_state = 58}, - [549] = {.lex_state = 0, .external_lex_state = 59}, - [550] = {.lex_state = 0, .external_lex_state = 60}, - [551] = {.lex_state = 37, .external_lex_state = 20}, - [552] = {.lex_state = 37, .external_lex_state = 20}, - [553] = {.lex_state = 0, .external_lex_state = 61}, - [554] = {.lex_state = 0, .external_lex_state = 61}, - [555] = {.lex_state = 0, .external_lex_state = 62}, - [556] = {.lex_state = 0, .external_lex_state = 62}, - [557] = {.lex_state = 0, .external_lex_state = 63}, - [558] = {.lex_state = 0, .external_lex_state = 28}, - [559] = {.lex_state = 0, .external_lex_state = 28}, - [560] = {.lex_state = 0, .external_lex_state = 60}, - [561] = {.lex_state = 0, .external_lex_state = 31}, - [562] = {.lex_state = 0, .external_lex_state = 64}, - [563] = {.lex_state = 0, .external_lex_state = 59}, - [564] = {.lex_state = 0, .external_lex_state = 59}, - [565] = {.lex_state = 0, .external_lex_state = 65}, - [566] = {.lex_state = 0, .external_lex_state = 66}, - [567] = {.lex_state = 0, .external_lex_state = 67}, - [568] = {.lex_state = 0, .external_lex_state = 66}, - [569] = {.lex_state = 0, .external_lex_state = 30}, - [570] = {.lex_state = 0, .external_lex_state = 30}, - [571] = {.lex_state = 0, .external_lex_state = 29}, - [572] = {.lex_state = 0, .external_lex_state = 30}, - [573] = {.lex_state = 0, .external_lex_state = 60}, - [574] = {.lex_state = 0, .external_lex_state = 60}, - [575] = {.lex_state = 0, .external_lex_state = 31}, - [576] = {.lex_state = 7}, - [577] = {.lex_state = 6}, - [578] = {.lex_state = 0, .external_lex_state = 60}, - [579] = {.lex_state = 0, .external_lex_state = 60}, - [580] = {.lex_state = 0, .external_lex_state = 30}, - [581] = {.lex_state = 0, .external_lex_state = 60}, - [582] = {.lex_state = 0, .external_lex_state = 60}, - [583] = {.lex_state = 0, .external_lex_state = 67}, - [584] = {.lex_state = 0, .external_lex_state = 68}, - [585] = {.lex_state = 8}, - [586] = {.lex_state = 0, .external_lex_state = 28}, - [587] = {.lex_state = 0, .external_lex_state = 32}, - [588] = {.lex_state = 0, .external_lex_state = 29}, - [589] = {.lex_state = 0, .external_lex_state = 30}, - [590] = {.lex_state = 0, .external_lex_state = 31}, - [591] = {.lex_state = 0, .external_lex_state = 28}, - [592] = {.lex_state = 0, .external_lex_state = 24}, - [593] = {.lex_state = 0, .external_lex_state = 24}, - [594] = {.lex_state = 0, .external_lex_state = 68}, - [595] = {.lex_state = 0, .external_lex_state = 29}, - [596] = {.lex_state = 0, .external_lex_state = 66}, - [597] = {.lex_state = 0, .external_lex_state = 32}, - [598] = {.lex_state = 0, .external_lex_state = 32}, - [599] = {.lex_state = 0, .external_lex_state = 69}, - [600] = {.lex_state = 37, .external_lex_state = 27}, - [601] = {.lex_state = 0, .external_lex_state = 60}, - [602] = {.lex_state = 0, .external_lex_state = 60}, - [603] = {.lex_state = 0, .external_lex_state = 28}, - [604] = {.lex_state = 0, .external_lex_state = 29}, - [605] = {.lex_state = 0, .external_lex_state = 60}, - [606] = {.lex_state = 0, .external_lex_state = 60}, - [607] = {.lex_state = 0, .external_lex_state = 32}, - [608] = {.lex_state = 0, .external_lex_state = 29}, - [609] = {.lex_state = 0, .external_lex_state = 32}, - [610] = {.lex_state = 0, .external_lex_state = 32}, - [611] = {.lex_state = 0, .external_lex_state = 32}, - [612] = {.lex_state = 0, .external_lex_state = 32}, - [613] = {.lex_state = 0, .external_lex_state = 32}, - [614] = {.lex_state = 0, .external_lex_state = 32}, - [615] = {.lex_state = 0, .external_lex_state = 32}, - [616] = {.lex_state = 0, .external_lex_state = 32}, - [617] = {.lex_state = 0, .external_lex_state = 32}, - [618] = {.lex_state = 0, .external_lex_state = 32}, - [619] = {.lex_state = 0, .external_lex_state = 32}, - [620] = {.lex_state = 0, .external_lex_state = 32}, - [621] = {.lex_state = 0, .external_lex_state = 32}, - [622] = {.lex_state = 0, .external_lex_state = 32}, - [623] = {.lex_state = 0, .external_lex_state = 32}, - [624] = {.lex_state = 0, .external_lex_state = 24}, - [625] = {.lex_state = 0, .external_lex_state = 60}, - [626] = {.lex_state = 0, .external_lex_state = 60}, - [627] = {.lex_state = 0, .external_lex_state = 60}, - [628] = {.lex_state = 0, .external_lex_state = 60}, - [629] = {.lex_state = 0, .external_lex_state = 24}, - [630] = {.lex_state = 0, .external_lex_state = 32}, - [631] = {.lex_state = 0, .external_lex_state = 32}, - [632] = {.lex_state = 0, .external_lex_state = 32}, - [633] = {.lex_state = 0, .external_lex_state = 32}, - [634] = {.lex_state = 0, .external_lex_state = 32}, - [635] = {.lex_state = 0, .external_lex_state = 32}, - [636] = {.lex_state = 0, .external_lex_state = 32}, - [637] = {.lex_state = 0, .external_lex_state = 32}, - [638] = {.lex_state = 0, .external_lex_state = 32}, - [639] = {.lex_state = 0, .external_lex_state = 69}, - [640] = {.lex_state = 0, .external_lex_state = 32}, - [641] = {.lex_state = 0, .external_lex_state = 32}, - [642] = {.lex_state = 0, .external_lex_state = 65}, - [643] = {.lex_state = 0, .external_lex_state = 32}, - [644] = {.lex_state = 0, .external_lex_state = 32}, - [645] = {.lex_state = 0, .external_lex_state = 32}, - [646] = {.lex_state = 0, .external_lex_state = 64}, - [647] = {.lex_state = 0, .external_lex_state = 59}, - [648] = {.lex_state = 0, .external_lex_state = 60}, - [649] = {.lex_state = 0, .external_lex_state = 60}, - [650] = {.lex_state = 2}, - [651] = {.lex_state = 0, .external_lex_state = 60}, - [652] = {.lex_state = 0, .external_lex_state = 60}, - [653] = {.lex_state = 0, .external_lex_state = 32}, - [654] = {.lex_state = 0, .external_lex_state = 24}, - [655] = {.lex_state = 0, .external_lex_state = 32}, - [656] = {.lex_state = 0, .external_lex_state = 31}, - [657] = {.lex_state = 0, .external_lex_state = 31}, - [658] = {.lex_state = 37, .external_lex_state = 27}, - [659] = {.lex_state = 0, .external_lex_state = 32}, - [660] = {.lex_state = 0, .external_lex_state = 64}, - [661] = {.lex_state = 0, .external_lex_state = 32}, - [662] = {.lex_state = 0, .external_lex_state = 34}, - [663] = {.lex_state = 0, .external_lex_state = 64}, - [664] = {.lex_state = 0, .external_lex_state = 59}, - [665] = {.lex_state = 0, .external_lex_state = 32}, - [666] = {.lex_state = 0, .external_lex_state = 32}, - [667] = {.lex_state = 0, .external_lex_state = 32}, - [668] = {.lex_state = 0, .external_lex_state = 32}, + [524] = {.lex_state = 0, .external_lex_state = 52}, + [525] = {.lex_state = 0, .external_lex_state = 51}, + [526] = {.lex_state = 0, .external_lex_state = 53}, + [527] = {.lex_state = 0, .external_lex_state = 52}, + [528] = {.lex_state = 0, .external_lex_state = 54}, + [529] = {.lex_state = 0, .external_lex_state = 53}, + [530] = {.lex_state = 0, .external_lex_state = 55}, + [531] = {.lex_state = 0, .external_lex_state = 54}, + [532] = {.lex_state = 0, .external_lex_state = 56}, + [533] = {.lex_state = 0, .external_lex_state = 55}, + [534] = {.lex_state = 0, .external_lex_state = 57}, + [535] = {.lex_state = 0, .external_lex_state = 56}, + [536] = {.lex_state = 0, .external_lex_state = 38}, + [537] = {.lex_state = 0, .external_lex_state = 57}, + [538] = {.lex_state = 0, .external_lex_state = 58}, + [539] = {.lex_state = 0, .external_lex_state = 44}, + [540] = {.lex_state = 6, .external_lex_state = 24}, + [541] = {.lex_state = 6, .external_lex_state = 24}, + [542] = {.lex_state = 6, .external_lex_state = 24}, + [543] = {.lex_state = 6, .external_lex_state = 24}, + [544] = {.lex_state = 0, .external_lex_state = 40}, + [545] = {.lex_state = 0, .external_lex_state = 41}, + [546] = {.lex_state = 0, .external_lex_state = 59}, + [547] = {.lex_state = 0, .external_lex_state = 31}, + [548] = {.lex_state = 0, .external_lex_state = 30}, + [549] = {.lex_state = 0, .external_lex_state = 29}, + [550] = {.lex_state = 0, .external_lex_state = 27}, + [551] = {.lex_state = 0, .external_lex_state = 25}, + [552] = {.lex_state = 0, .external_lex_state = 25}, + [553] = {.lex_state = 0, .external_lex_state = 30}, + [554] = {.lex_state = 0, .external_lex_state = 60}, + [555] = {.lex_state = 0, .external_lex_state = 31}, + [556] = {.lex_state = 0, .external_lex_state = 34}, + [557] = {.lex_state = 0, .external_lex_state = 34}, + [558] = {.lex_state = 0, .external_lex_state = 61}, + [559] = {.lex_state = 0, .external_lex_state = 34}, + [560] = {.lex_state = 0, .external_lex_state = 34}, + [561] = {.lex_state = 0, .external_lex_state = 34}, + [562] = {.lex_state = 0, .external_lex_state = 34}, + [563] = {.lex_state = 0, .external_lex_state = 34}, + [564] = {.lex_state = 0, .external_lex_state = 34}, + [565] = {.lex_state = 0, .external_lex_state = 34}, + [566] = {.lex_state = 0, .external_lex_state = 34}, + [567] = {.lex_state = 0, .external_lex_state = 34}, + [568] = {.lex_state = 0, .external_lex_state = 34}, + [569] = {.lex_state = 0, .external_lex_state = 34}, + [570] = {.lex_state = 0, .external_lex_state = 34}, + [571] = {.lex_state = 0, .external_lex_state = 34}, + [572] = {.lex_state = 0, .external_lex_state = 34}, + [573] = {.lex_state = 0, .external_lex_state = 34}, + [574] = {.lex_state = 0, .external_lex_state = 34}, + [575] = {.lex_state = 0, .external_lex_state = 34}, + [576] = {.lex_state = 0, .external_lex_state = 34}, + [577] = {.lex_state = 0, .external_lex_state = 34}, + [578] = {.lex_state = 0, .external_lex_state = 34}, + [579] = {.lex_state = 0, .external_lex_state = 34}, + [580] = {.lex_state = 0, .external_lex_state = 34}, + [581] = {.lex_state = 0, .external_lex_state = 61}, + [582] = {.lex_state = 0, .external_lex_state = 34}, + [583] = {.lex_state = 0, .external_lex_state = 34}, + [584] = {.lex_state = 0, .external_lex_state = 34}, + [585] = {.lex_state = 0, .external_lex_state = 30}, + [586] = {.lex_state = 0, .external_lex_state = 34}, + [587] = {.lex_state = 0, .external_lex_state = 34}, + [588] = {.lex_state = 0, .external_lex_state = 34}, + [589] = {.lex_state = 0, .external_lex_state = 34}, + [590] = {.lex_state = 0, .external_lex_state = 34}, + [591] = {.lex_state = 0, .external_lex_state = 34}, + [592] = {.lex_state = 0, .external_lex_state = 34}, + [593] = {.lex_state = 0, .external_lex_state = 34}, + [594] = {.lex_state = 0, .external_lex_state = 34}, + [595] = {.lex_state = 0, .external_lex_state = 34}, + [596] = {.lex_state = 0, .external_lex_state = 34}, + [597] = {.lex_state = 0, .external_lex_state = 34}, + [598] = {.lex_state = 0, .external_lex_state = 34}, + [599] = {.lex_state = 0, .external_lex_state = 31}, + [600] = {.lex_state = 0, .external_lex_state = 34}, + [601] = {.lex_state = 0, .external_lex_state = 34}, + [602] = {.lex_state = 0, .external_lex_state = 34}, + [603] = {.lex_state = 0, .external_lex_state = 34}, + [604] = {.lex_state = 0, .external_lex_state = 62}, + [605] = {.lex_state = 0, .external_lex_state = 62}, + [606] = {.lex_state = 0, .external_lex_state = 29}, + [607] = {.lex_state = 0, .external_lex_state = 63}, + [608] = {.lex_state = 37, .external_lex_state = 22}, + [609] = {.lex_state = 37, .external_lex_state = 22}, + [610] = {.lex_state = 0, .external_lex_state = 64}, + [611] = {.lex_state = 0, .external_lex_state = 64}, + [612] = {.lex_state = 0, .external_lex_state = 65}, + [613] = {.lex_state = 0, .external_lex_state = 65}, + [614] = {.lex_state = 0, .external_lex_state = 27}, + [615] = {.lex_state = 0, .external_lex_state = 27}, + [616] = {.lex_state = 0, .external_lex_state = 63}, + [617] = {.lex_state = 0, .external_lex_state = 63}, + [618] = {.lex_state = 0, .external_lex_state = 34}, + [619] = {.lex_state = 0, .external_lex_state = 63}, + [620] = {.lex_state = 0, .external_lex_state = 63}, + [621] = {.lex_state = 37, .external_lex_state = 28}, + [622] = {.lex_state = 0, .external_lex_state = 27}, + [623] = {.lex_state = 0, .external_lex_state = 59}, + [624] = {.lex_state = 37, .external_lex_state = 28}, + [625] = {.lex_state = 0, .external_lex_state = 66}, + [626] = {.lex_state = 0, .external_lex_state = 34}, + [627] = {.lex_state = 0, .external_lex_state = 67}, + [628] = {.lex_state = 0, .external_lex_state = 63}, + [629] = {.lex_state = 0, .external_lex_state = 63}, + [630] = {.lex_state = 0, .external_lex_state = 31}, + [631] = {.lex_state = 0, .external_lex_state = 34}, + [632] = {.lex_state = 0, .external_lex_state = 63}, + [633] = {.lex_state = 0, .external_lex_state = 63}, + [634] = {.lex_state = 0, .external_lex_state = 25}, + [635] = {.lex_state = 0, .external_lex_state = 68}, + [636] = {.lex_state = 0, .external_lex_state = 29}, + [637] = {.lex_state = 0, .external_lex_state = 67}, + [638] = {.lex_state = 0, .external_lex_state = 67}, + [639] = {.lex_state = 0, .external_lex_state = 68}, + [640] = {.lex_state = 0, .external_lex_state = 68}, + [641] = {.lex_state = 0, .external_lex_state = 68}, + [642] = {.lex_state = 0, .external_lex_state = 29}, + [643] = {.lex_state = 0, .external_lex_state = 60}, + [644] = {.lex_state = 0, .external_lex_state = 60}, + [645] = {.lex_state = 0, .external_lex_state = 67}, + [646] = {.lex_state = 0, .external_lex_state = 25}, + [647] = {.lex_state = 0, .external_lex_state = 63}, + [648] = {.lex_state = 0, .external_lex_state = 63}, + [649] = {.lex_state = 0, .external_lex_state = 63}, + [650] = {.lex_state = 0, .external_lex_state = 63}, + [651] = {.lex_state = 2}, + [652] = {.lex_state = 0, .external_lex_state = 34}, + [653] = {.lex_state = 0, .external_lex_state = 34}, + [654] = {.lex_state = 0, .external_lex_state = 68}, + [655] = {.lex_state = 0, .external_lex_state = 68}, + [656] = {.lex_state = 0, .external_lex_state = 66}, + [657] = {.lex_state = 0, .external_lex_state = 25}, + [658] = {.lex_state = 0, .external_lex_state = 63}, + [659] = {.lex_state = 0, .external_lex_state = 63}, + [660] = {.lex_state = 0, .external_lex_state = 34}, + [661] = {.lex_state = 0, .external_lex_state = 63}, + [662] = {.lex_state = 0, .external_lex_state = 63}, + [663] = {.lex_state = 0, .external_lex_state = 69}, + [664] = {.lex_state = 0, .external_lex_state = 30}, + [665] = {.lex_state = 0, .external_lex_state = 31}, + [666] = {.lex_state = 0, .external_lex_state = 30}, + [667] = {.lex_state = 0, .external_lex_state = 29}, + [668] = {.lex_state = 0, .external_lex_state = 63}, [669] = {.lex_state = 0, .external_lex_state = 32}, [670] = {.lex_state = 0, .external_lex_state = 32}, - [671] = {.lex_state = 0, .external_lex_state = 32}, - [672] = {.lex_state = 0, .external_lex_state = 32}, - [673] = {.lex_state = 0, .external_lex_state = 32}, - [674] = {.lex_state = 0, .external_lex_state = 59}, - [675] = {.lex_state = 0, .external_lex_state = 32}, - [676] = {.lex_state = 0, .external_lex_state = 32}, - [677] = {.lex_state = 0, .external_lex_state = 32}, - [678] = {.lex_state = 0, .external_lex_state = 41}, + [671] = {.lex_state = 0, .external_lex_state = 63}, + [672] = {.lex_state = 7}, + [673] = {.lex_state = 0, .external_lex_state = 27}, + [674] = {.lex_state = 8}, + [675] = {.lex_state = 0, .external_lex_state = 69}, + [676] = {.lex_state = 0, .external_lex_state = 70}, + [677] = {.lex_state = 0, .external_lex_state = 63}, + [678] = {.lex_state = 0}, [679] = {.lex_state = 0, .external_lex_state = 56}, - [680] = {.lex_state = 0, .external_lex_state = 56}, - [681] = {.lex_state = 0, .external_lex_state = 40}, - [682] = {.lex_state = 0, .external_lex_state = 40}, - [683] = {.lex_state = 0, .external_lex_state = 70}, - [684] = {.lex_state = 0, .external_lex_state = 41}, - [685] = {.lex_state = 0, .external_lex_state = 44}, - [686] = {.lex_state = 0, .external_lex_state = 44}, - [687] = {.lex_state = 0, .external_lex_state = 51}, - [688] = {.lex_state = 0, .external_lex_state = 71}, - [689] = {.lex_state = 8, .external_lex_state = 25}, - [690] = {.lex_state = 0, .external_lex_state = 71}, - [691] = {.lex_state = 0}, - [692] = {.lex_state = 0}, - [693] = {.lex_state = 0, .external_lex_state = 70}, - [694] = {.lex_state = 0, .external_lex_state = 50}, - [695] = {.lex_state = 0, .external_lex_state = 42}, - [696] = {.lex_state = 0, .external_lex_state = 24}, - [697] = {.lex_state = 0, .external_lex_state = 27}, - [698] = {.lex_state = 0, .external_lex_state = 52}, - [699] = {.lex_state = 0, .external_lex_state = 55}, - [700] = {.lex_state = 0, .external_lex_state = 37}, - [701] = {.lex_state = 0, .external_lex_state = 27}, - [702] = {.lex_state = 0, .external_lex_state = 72}, - [703] = {.lex_state = 0, .external_lex_state = 39}, - [704] = {.lex_state = 0, .external_lex_state = 66}, - [705] = {.lex_state = 0, .external_lex_state = 27}, - [706] = {.lex_state = 0, .external_lex_state = 43}, - [707] = {.lex_state = 37}, - [708] = {.lex_state = 0, .external_lex_state = 53}, - [709] = {.lex_state = 0, .external_lex_state = 56}, - [710] = {.lex_state = 0, .external_lex_state = 40}, - [711] = {.lex_state = 0, .external_lex_state = 73}, - [712] = {.lex_state = 0, .external_lex_state = 69}, - [713] = {.lex_state = 2}, - [714] = {.lex_state = 0, .external_lex_state = 51}, - [715] = {.lex_state = 0, .external_lex_state = 27}, - [716] = {.lex_state = 8, .external_lex_state = 25}, - [717] = {.lex_state = 0, .external_lex_state = 72}, - [718] = {.lex_state = 0, .external_lex_state = 41}, - [719] = {.lex_state = 0, .external_lex_state = 52}, - [720] = {.lex_state = 0, .external_lex_state = 74}, - [721] = {.lex_state = 8, .external_lex_state = 25}, - [722] = {.lex_state = 0, .external_lex_state = 68}, - [723] = {.lex_state = 0, .external_lex_state = 71}, - [724] = {.lex_state = 0, .external_lex_state = 24}, - [725] = {.lex_state = 0, .external_lex_state = 26}, - [726] = {.lex_state = 37, .external_lex_state = 47}, - [727] = {.lex_state = 0, .external_lex_state = 71}, - [728] = {.lex_state = 5, .external_lex_state = 25}, - [729] = {.lex_state = 0, .external_lex_state = 27}, - [730] = {.lex_state = 0, .external_lex_state = 27}, - [731] = {.lex_state = 0, .external_lex_state = 27}, - [732] = {.lex_state = 0, .external_lex_state = 70}, - [733] = {.lex_state = 0, .external_lex_state = 27}, - [734] = {.lex_state = 0, .external_lex_state = 74}, - [735] = {.lex_state = 0, .external_lex_state = 72}, - [736] = {.lex_state = 0, .external_lex_state = 72}, - [737] = {.lex_state = 0, .external_lex_state = 72}, - [738] = {.lex_state = 0, .external_lex_state = 73}, - [739] = {.lex_state = 0, .external_lex_state = 66}, - [740] = {.lex_state = 0, .external_lex_state = 27}, - [741] = {.lex_state = 0, .external_lex_state = 27}, - [742] = {.lex_state = 0, .external_lex_state = 27}, - [743] = {.lex_state = 0, .external_lex_state = 27}, - [744] = {.lex_state = 0, .external_lex_state = 27}, - [745] = {.lex_state = 0, .external_lex_state = 73}, - [746] = {.lex_state = 0, .external_lex_state = 53}, - [747] = {.lex_state = 0, .external_lex_state = 27}, - [748] = {.lex_state = 0, .external_lex_state = 54}, - [749] = {.lex_state = 0, .external_lex_state = 55}, - [750] = {.lex_state = 0, .external_lex_state = 27}, - [751] = {.lex_state = 8, .external_lex_state = 25}, - [752] = {.lex_state = 0, .external_lex_state = 27}, - [753] = {.lex_state = 0, .external_lex_state = 56}, - [754] = {.lex_state = 0, .external_lex_state = 27}, - [755] = {.lex_state = 0, .external_lex_state = 27}, - [756] = {.lex_state = 2}, - [757] = {.lex_state = 0, .external_lex_state = 44}, - [758] = {.lex_state = 8, .external_lex_state = 25}, - [759] = {.lex_state = 0, .external_lex_state = 27}, - [760] = {.lex_state = 0, .external_lex_state = 27}, - [761] = {.lex_state = 0, .external_lex_state = 57}, + [680] = {.lex_state = 0, .external_lex_state = 58}, + [681] = {.lex_state = 0, .external_lex_state = 58}, + [682] = {.lex_state = 0, .external_lex_state = 39}, + [683] = {.lex_state = 0, .external_lex_state = 39}, + [684] = {.lex_state = 0, .external_lex_state = 43}, + [685] = {.lex_state = 0, .external_lex_state = 43}, + [686] = {.lex_state = 0, .external_lex_state = 53}, + [687] = {.lex_state = 0, .external_lex_state = 71}, + [688] = {.lex_state = 0, .external_lex_state = 72}, + [689] = {.lex_state = 0, .external_lex_state = 73}, + [690] = {.lex_state = 2}, + [691] = {.lex_state = 0, .external_lex_state = 51}, + [692] = {.lex_state = 0, .external_lex_state = 52}, + [693] = {.lex_state = 6, .external_lex_state = 24}, + [694] = {.lex_state = 0, .external_lex_state = 28}, + [695] = {.lex_state = 0, .external_lex_state = 28}, + [696] = {.lex_state = 0, .external_lex_state = 28}, + [697] = {.lex_state = 0, .external_lex_state = 28}, + [698] = {.lex_state = 0, .external_lex_state = 28}, + [699] = {.lex_state = 0, .external_lex_state = 28}, + [700] = {.lex_state = 0, .external_lex_state = 28}, + [701] = {.lex_state = 0, .external_lex_state = 28}, + [702] = {.lex_state = 0, .external_lex_state = 28}, + [703] = {.lex_state = 0, .external_lex_state = 28}, + [704] = {.lex_state = 0, .external_lex_state = 28}, + [705] = {.lex_state = 0, .external_lex_state = 28}, + [706] = {.lex_state = 0, .external_lex_state = 28}, + [707] = {.lex_state = 0, .external_lex_state = 28}, + [708] = {.lex_state = 0, .external_lex_state = 28}, + [709] = {.lex_state = 0, .external_lex_state = 74}, + [710] = {.lex_state = 0, .external_lex_state = 53}, + [711] = {.lex_state = 0, .external_lex_state = 59}, + [712] = {.lex_state = 8, .external_lex_state = 24}, + [713] = {.lex_state = 0, .external_lex_state = 54}, + [714] = {.lex_state = 0, .external_lex_state = 54}, + [715] = {.lex_state = 0, .external_lex_state = 73}, + [716] = {.lex_state = 0, .external_lex_state = 25}, + [717] = {.lex_state = 0, .external_lex_state = 55}, + [718] = {.lex_state = 0, .external_lex_state = 28}, + [719] = {.lex_state = 8, .external_lex_state = 24}, + [720] = {.lex_state = 0}, + [721] = {.lex_state = 0, .external_lex_state = 56}, + [722] = {.lex_state = 37, .external_lex_state = 47}, + [723] = {.lex_state = 0, .external_lex_state = 26}, + [724] = {.lex_state = 0, .external_lex_state = 28}, + [725] = {.lex_state = 0, .external_lex_state = 73}, + [726] = {.lex_state = 0, .external_lex_state = 57}, + [727] = {.lex_state = 0}, + [728] = {.lex_state = 0, .external_lex_state = 60}, + [729] = {.lex_state = 0, .external_lex_state = 28}, + [730] = {.lex_state = 0, .external_lex_state = 28}, + [731] = {.lex_state = 0, .external_lex_state = 28}, + [732] = {.lex_state = 0, .external_lex_state = 28}, + [733] = {.lex_state = 0, .external_lex_state = 28}, + [734] = {.lex_state = 0, .external_lex_state = 75}, + [735] = {.lex_state = 0, .external_lex_state = 28}, + [736] = {.lex_state = 0, .external_lex_state = 74}, + [737] = {.lex_state = 0, .external_lex_state = 28}, + [738] = {.lex_state = 0, .external_lex_state = 52}, + [739] = {.lex_state = 0, .external_lex_state = 28}, + [740] = {.lex_state = 0, .external_lex_state = 75}, + [741] = {.lex_state = 0, .external_lex_state = 28}, + [742] = {.lex_state = 0, .external_lex_state = 28}, + [743] = {.lex_state = 0, .external_lex_state = 56}, + [744] = {.lex_state = 0, .external_lex_state = 28}, + [745] = {.lex_state = 0, .external_lex_state = 74}, + [746] = {.lex_state = 2}, + [747] = {.lex_state = 0, .external_lex_state = 38}, + [748] = {.lex_state = 37}, + [749] = {.lex_state = 8, .external_lex_state = 24}, + [750] = {.lex_state = 0, .external_lex_state = 58}, + [751] = {.lex_state = 0, .external_lex_state = 58}, + [752] = {.lex_state = 0, .external_lex_state = 39}, + [753] = {.lex_state = 0, .external_lex_state = 44}, + [754] = {.lex_state = 0, .external_lex_state = 43}, + [755] = {.lex_state = 0, .external_lex_state = 40}, + [756] = {.lex_state = 0, .external_lex_state = 50}, + [757] = {.lex_state = 0, .external_lex_state = 76}, + [758] = {.lex_state = 8, .external_lex_state = 24}, + [759] = {.lex_state = 0, .external_lex_state = 73}, + [760] = {.lex_state = 0, .external_lex_state = 39}, + [761] = {.lex_state = 0, .external_lex_state = 41}, [762] = {.lex_state = 0, .external_lex_state = 26}, - [763] = {.lex_state = 0, .external_lex_state = 50}, - [764] = {.lex_state = 0, .external_lex_state = 37}, - [765] = {.lex_state = 0, .external_lex_state = 40}, - [766] = {.lex_state = 0, .external_lex_state = 71}, - [767] = {.lex_state = 0, .external_lex_state = 75}, - [768] = {.lex_state = 0, .external_lex_state = 38}, - [769] = {.lex_state = 0, .external_lex_state = 39}, - [770] = {.lex_state = 0, .external_lex_state = 27}, - [771] = {.lex_state = 0, .external_lex_state = 27}, - [772] = {.lex_state = 0, .external_lex_state = 27}, - [773] = {.lex_state = 0, .external_lex_state = 27}, - [774] = {.lex_state = 0, .external_lex_state = 54}, - [775] = {.lex_state = 0, .external_lex_state = 75}, - [776] = {.lex_state = 0, .external_lex_state = 27}, - [777] = {.lex_state = 0, .external_lex_state = 27}, - [778] = {.lex_state = 0, .external_lex_state = 27}, - [779] = {.lex_state = 0, .external_lex_state = 67}, - [780] = {.lex_state = 0, .external_lex_state = 27}, - [781] = {.lex_state = 0, .external_lex_state = 27}, - [782] = {.lex_state = 0, .external_lex_state = 27}, - [783] = {.lex_state = 0, .external_lex_state = 54}, - [784] = {.lex_state = 0, .external_lex_state = 50}, - [785] = {.lex_state = 2}, + [763] = {.lex_state = 0, .external_lex_state = 76}, + [764] = {.lex_state = 0, .external_lex_state = 61}, + [765] = {.lex_state = 0, .external_lex_state = 73}, + [766] = {.lex_state = 0, .external_lex_state = 42}, + [767] = {.lex_state = 0, .external_lex_state = 73}, + [768] = {.lex_state = 0, .external_lex_state = 28}, + [769] = {.lex_state = 0, .external_lex_state = 51}, + [770] = {.lex_state = 0, .external_lex_state = 55}, + [771] = {.lex_state = 0, .external_lex_state = 60}, + [772] = {.lex_state = 0, .external_lex_state = 28}, + [773] = {.lex_state = 0, .external_lex_state = 51}, + [774] = {.lex_state = 0, .external_lex_state = 25}, + [775] = {.lex_state = 0, .external_lex_state = 28}, + [776] = {.lex_state = 0, .external_lex_state = 44}, + [777] = {.lex_state = 0, .external_lex_state = 38}, + [778] = {.lex_state = 0, .external_lex_state = 62}, + [779] = {.lex_state = 0, .external_lex_state = 40}, + [780] = {.lex_state = 0, .external_lex_state = 71}, + [781] = {.lex_state = 0, .external_lex_state = 57}, + [782] = {.lex_state = 0, .external_lex_state = 28}, + [783] = {.lex_state = 0, .external_lex_state = 57}, + [784] = {.lex_state = 0, .external_lex_state = 43}, + [785] = {.lex_state = 0, .external_lex_state = 42}, [786] = {.lex_state = 0, .external_lex_state = 41}, - [787] = {.lex_state = 0, .external_lex_state = 27}, - [788] = {.lex_state = 0, .external_lex_state = 27}, - [789] = {.lex_state = 8, .external_lex_state = 25}, - [790] = {.lex_state = 0, .external_lex_state = 27}, - [791] = {.lex_state = 0, .external_lex_state = 42}, - [792] = {.lex_state = 0, .external_lex_state = 71}, - [793] = {.lex_state = 0, .external_lex_state = 43}, - [794] = {.lex_state = 0, .external_lex_state = 53}, - [795] = {.lex_state = 8, .external_lex_state = 25}, - [796] = {.lex_state = 0, .external_lex_state = 27}, - [797] = {.lex_state = 0, .external_lex_state = 26}, - [798] = {.lex_state = 0}, - [799] = {.lex_state = 0, .external_lex_state = 44}, - [800] = {.lex_state = 0, .external_lex_state = 71}, - [801] = {.lex_state = 8, .external_lex_state = 25}, - [802] = {.lex_state = 0}, - [803] = {.lex_state = 0, .external_lex_state = 27}, - [804] = {.lex_state = 0}, - [805] = {.lex_state = 0, .external_lex_state = 27}, - [806] = {.lex_state = 0, .external_lex_state = 27}, - [807] = {.lex_state = 0, .external_lex_state = 27}, - [808] = {.lex_state = 0, .external_lex_state = 27}, - [809] = {.lex_state = 0, .external_lex_state = 27}, - [810] = {.lex_state = 0, .external_lex_state = 27}, - [811] = {.lex_state = 0, .external_lex_state = 27}, - [812] = {.lex_state = 0, .external_lex_state = 27}, - [813] = {.lex_state = 0, .external_lex_state = 58}, - [814] = {.lex_state = 0, .external_lex_state = 75}, - [815] = {.lex_state = 0, .external_lex_state = 71}, - [816] = {.lex_state = 0, .external_lex_state = 57}, - [817] = {.lex_state = 0, .external_lex_state = 57}, - [818] = {.lex_state = 0, .external_lex_state = 51}, - [819] = {.lex_state = 0, .external_lex_state = 27}, - [820] = {.lex_state = 8, .external_lex_state = 25}, - [821] = {.lex_state = 0, .external_lex_state = 38}, - [822] = {.lex_state = 0, .external_lex_state = 38}, - [823] = {.lex_state = 0, .external_lex_state = 71}, - [824] = {.lex_state = 0, .external_lex_state = 71}, - [825] = {.lex_state = 0}, - [826] = {.lex_state = 8, .external_lex_state = 25}, - [827] = {.lex_state = 0, .external_lex_state = 42}, - [828] = {.lex_state = 0, .external_lex_state = 26}, - [829] = {.lex_state = 0, .external_lex_state = 42}, - [830] = {.lex_state = 0, .external_lex_state = 26}, - [831] = {.lex_state = 37, .external_lex_state = 20}, - [832] = {.lex_state = 0, .external_lex_state = 76}, - [833] = {.lex_state = 0, .external_lex_state = 73}, - [834] = {.lex_state = 0, .external_lex_state = 51}, - [835] = {.lex_state = 2, .external_lex_state = 25}, - [836] = {.lex_state = 0}, - [837] = {.lex_state = 0, .external_lex_state = 52}, - [838] = {.lex_state = 0, .external_lex_state = 52}, - [839] = {.lex_state = 0, .external_lex_state = 61}, - [840] = {.lex_state = 0, .external_lex_state = 54}, - [841] = {.lex_state = 0, .external_lex_state = 57}, - [842] = {.lex_state = 0, .external_lex_state = 55}, - [843] = {.lex_state = 0, .external_lex_state = 55}, + [787] = {.lex_state = 8, .external_lex_state = 24}, + [788] = {.lex_state = 0, .external_lex_state = 44}, + [789] = {.lex_state = 0, .external_lex_state = 44}, + [790] = {.lex_state = 8, .external_lex_state = 24}, + [791] = {.lex_state = 0}, + [792] = {.lex_state = 0, .external_lex_state = 50}, + [793] = {.lex_state = 0, .external_lex_state = 26}, + [794] = {.lex_state = 0, .external_lex_state = 57}, + [795] = {.lex_state = 0, .external_lex_state = 41}, + [796] = {.lex_state = 0, .external_lex_state = 73}, + [797] = {.lex_state = 0, .external_lex_state = 73}, + [798] = {.lex_state = 0, .external_lex_state = 28}, + [799] = {.lex_state = 37, .external_lex_state = 22}, + [800] = {.lex_state = 8, .external_lex_state = 24}, + [801] = {.lex_state = 0, .external_lex_state = 28}, + [802] = {.lex_state = 0, .external_lex_state = 28}, + [803] = {.lex_state = 0, .external_lex_state = 28}, + [804] = {.lex_state = 0, .external_lex_state = 28}, + [805] = {.lex_state = 0, .external_lex_state = 28}, + [806] = {.lex_state = 0, .external_lex_state = 28}, + [807] = {.lex_state = 0, .external_lex_state = 28}, + [808] = {.lex_state = 0, .external_lex_state = 28}, + [809] = {.lex_state = 0, .external_lex_state = 28}, + [810] = {.lex_state = 0, .external_lex_state = 52}, + [811] = {.lex_state = 0, .external_lex_state = 28}, + [812] = {.lex_state = 0, .external_lex_state = 28}, + [813] = {.lex_state = 0, .external_lex_state = 28}, + [814] = {.lex_state = 0, .external_lex_state = 73}, + [815] = {.lex_state = 0, .external_lex_state = 52}, + [816] = {.lex_state = 0, .external_lex_state = 64}, + [817] = {.lex_state = 8, .external_lex_state = 24}, + [818] = {.lex_state = 0, .external_lex_state = 54}, + [819] = {.lex_state = 0, .external_lex_state = 74}, + [820] = {.lex_state = 0, .external_lex_state = 77}, + [821] = {.lex_state = 0, .external_lex_state = 50}, + [822] = {.lex_state = 0, .external_lex_state = 55}, + [823] = {.lex_state = 8, .external_lex_state = 24}, + [824] = {.lex_state = 0, .external_lex_state = 55}, + [825] = {.lex_state = 0, .external_lex_state = 26}, + [826] = {.lex_state = 0, .external_lex_state = 26}, + [827] = {.lex_state = 2, .external_lex_state = 24}, + [828] = {.lex_state = 0, .external_lex_state = 28}, + [829] = {.lex_state = 0, .external_lex_state = 69}, + [830] = {.lex_state = 2}, + [831] = {.lex_state = 0}, + [832] = {.lex_state = 0, .external_lex_state = 71}, + [833] = {.lex_state = 0}, + [834] = {.lex_state = 0, .external_lex_state = 75}, + [835] = {.lex_state = 0, .external_lex_state = 38}, + [836] = {.lex_state = 0, .external_lex_state = 38}, + [837] = {.lex_state = 0, .external_lex_state = 65}, + [838] = {.lex_state = 0, .external_lex_state = 75}, + [839] = {.lex_state = 0, .external_lex_state = 71}, + [840] = {.lex_state = 0}, + [841] = {.lex_state = 8, .external_lex_state = 24}, + [842] = {.lex_state = 0}, + [843] = {.lex_state = 0, .external_lex_state = 40}, [844] = {.lex_state = 0}, - [845] = {.lex_state = 0, .external_lex_state = 38}, - [846] = {.lex_state = 0, .external_lex_state = 27}, - [847] = {.lex_state = 0, .external_lex_state = 37}, - [848] = {.lex_state = 0, .external_lex_state = 37}, - [849] = {.lex_state = 0, .external_lex_state = 62}, - [850] = {.lex_state = 0, .external_lex_state = 70}, - [851] = {.lex_state = 0, .external_lex_state = 72}, - [852] = {.lex_state = 0, .external_lex_state = 39}, - [853] = {.lex_state = 0, .external_lex_state = 39}, + [845] = {.lex_state = 0, .external_lex_state = 40}, + [846] = {.lex_state = 0, .external_lex_state = 42}, + [847] = {.lex_state = 0, .external_lex_state = 71}, + [848] = {.lex_state = 0, .external_lex_state = 76}, + [849] = {.lex_state = 0, .external_lex_state = 73}, + [850] = {.lex_state = 0, .external_lex_state = 42}, + [851] = {.lex_state = 0}, + [852] = {.lex_state = 0}, + [853] = {.lex_state = 0}, [854] = {.lex_state = 0}, [855] = {.lex_state = 0}, [856] = {.lex_state = 0}, - [857] = {.lex_state = 0}, + [857] = {.lex_state = 0, .external_lex_state = 51}, [858] = {.lex_state = 0}, [859] = {.lex_state = 0}, - [860] = {.lex_state = 0, .external_lex_state = 43}, + [860] = {.lex_state = 0}, [861] = {.lex_state = 0}, [862] = {.lex_state = 0}, [863] = {.lex_state = 0}, - [864] = {.lex_state = 0}, + [864] = {.lex_state = 0, .external_lex_state = 53}, [865] = {.lex_state = 0}, [866] = {.lex_state = 0}, - [867] = {.lex_state = 0, .external_lex_state = 43}, + [867] = {.lex_state = 0, .external_lex_state = 72}, [868] = {.lex_state = 0}, [869] = {.lex_state = 0}, [870] = {.lex_state = 0}, - [871] = {.lex_state = 0}, + [871] = {.lex_state = 0, .external_lex_state = 71}, [872] = {.lex_state = 0}, [873] = {.lex_state = 0}, - [874] = {.lex_state = 0, .external_lex_state = 53}, + [874] = {.lex_state = 0}, [875] = {.lex_state = 0}, [876] = {.lex_state = 0}, [877] = {.lex_state = 0}, - [878] = {.lex_state = 0}, - [879] = {.lex_state = 0}, - [880] = {.lex_state = 0}, - [881] = {.lex_state = 0, .external_lex_state = 75}, - [882] = {.lex_state = 0, .external_lex_state = 75}, - [883] = {.lex_state = 0, .external_lex_state = 75}, - [884] = {.lex_state = 0, .external_lex_state = 75}, - [885] = {.lex_state = 0, .external_lex_state = 75}, - [886] = {.lex_state = 0, .external_lex_state = 75}, - [887] = {.lex_state = 0, .external_lex_state = 75}, - [888] = {.lex_state = 0, .external_lex_state = 75}, + [878] = {.lex_state = 0, .external_lex_state = 76}, + [879] = {.lex_state = 0, .external_lex_state = 76}, + [880] = {.lex_state = 0, .external_lex_state = 76}, + [881] = {.lex_state = 0, .external_lex_state = 76}, + [882] = {.lex_state = 0, .external_lex_state = 76}, + [883] = {.lex_state = 0, .external_lex_state = 76}, + [884] = {.lex_state = 0, .external_lex_state = 76}, + [885] = {.lex_state = 0, .external_lex_state = 76}, + [886] = {.lex_state = 2}, + [887] = {.lex_state = 2}, + [888] = {.lex_state = 2}, [889] = {.lex_state = 2}, - [890] = {.lex_state = 2}, - [891] = {.lex_state = 2}, - [892] = {.lex_state = 2}, - [893] = {.lex_state = 0, .external_lex_state = 27}, - [894] = {.lex_state = 0, .external_lex_state = 77}, - [895] = {.lex_state = 0, .external_lex_state = 25}, + [890] = {.lex_state = 0, .external_lex_state = 54}, + [891] = {.lex_state = 0, .external_lex_state = 53}, + [892] = {.lex_state = 0, .external_lex_state = 56}, + [893] = {.lex_state = 0, .external_lex_state = 41}, + [894] = {.lex_state = 0}, + [895] = {.lex_state = 0, .external_lex_state = 78}, [896] = {.lex_state = 0, .external_lex_state = 78}, - [897] = {.lex_state = 0, .external_lex_state = 25}, - [898] = {.lex_state = 0, .external_lex_state = 78}, - [899] = {.lex_state = 0, .external_lex_state = 25}, - [900] = {.lex_state = 0, .external_lex_state = 25}, - [901] = {.lex_state = 0, .external_lex_state = 25}, - [902] = {.lex_state = 0, .external_lex_state = 78}, - [903] = {.lex_state = 0, .external_lex_state = 78}, - [904] = {.lex_state = 0, .external_lex_state = 25}, - [905] = {.lex_state = 0, .external_lex_state = 25}, - [906] = {.lex_state = 0, .external_lex_state = 25}, - [907] = {.lex_state = 0, .external_lex_state = 25}, - [908] = {.lex_state = 0, .external_lex_state = 25}, - [909] = {.lex_state = 0, .external_lex_state = 25}, - [910] = {.lex_state = 0, .external_lex_state = 25}, - [911] = {.lex_state = 0, .external_lex_state = 25}, - [912] = {.lex_state = 0, .external_lex_state = 25}, - [913] = {.lex_state = 0, .external_lex_state = 78}, - [914] = {.lex_state = 0, .external_lex_state = 78}, - [915] = {.lex_state = 0, .external_lex_state = 25}, - [916] = {.lex_state = 0, .external_lex_state = 25}, - [917] = {.lex_state = 0, .external_lex_state = 25}, - [918] = {.lex_state = 0, .external_lex_state = 25}, - [919] = {.lex_state = 0, .external_lex_state = 25}, - [920] = {.lex_state = 0, .external_lex_state = 25}, - [921] = {.lex_state = 0, .external_lex_state = 25}, - [922] = {.lex_state = 0, .external_lex_state = 25}, - [923] = {.lex_state = 0, .external_lex_state = 25}, - [924] = {.lex_state = 0, .external_lex_state = 25}, - [925] = {.lex_state = 0, .external_lex_state = 25}, - [926] = {.lex_state = 0, .external_lex_state = 25}, - [927] = {.lex_state = 0, .external_lex_state = 25}, - [928] = {.lex_state = 0, .external_lex_state = 25}, - [929] = {.lex_state = 2}, - [930] = {.lex_state = 0, .external_lex_state = 79}, - [931] = {.lex_state = 0}, - [932] = {.lex_state = 0, .external_lex_state = 77}, - [933] = {.lex_state = 0}, - [934] = {.lex_state = 2}, - [935] = {.lex_state = 0, .external_lex_state = 26}, - [936] = {.lex_state = 0, .external_lex_state = 25}, - [937] = {.lex_state = 0, .external_lex_state = 79}, - [938] = {.lex_state = 0, .external_lex_state = 47}, - [939] = {.lex_state = 0, .external_lex_state = 25}, - [940] = {.lex_state = 0, .external_lex_state = 25}, - [941] = {.lex_state = 0, .external_lex_state = 79}, - [942] = {.lex_state = 5}, - [943] = {.lex_state = 0, .external_lex_state = 25}, - [944] = {.lex_state = 0, .external_lex_state = 25}, - [945] = {.lex_state = 0, .external_lex_state = 79}, - [946] = {.lex_state = 0, .external_lex_state = 79}, - [947] = {.lex_state = 0}, - [948] = {.lex_state = 0}, - [949] = {.lex_state = 0, .external_lex_state = 78}, - [950] = {.lex_state = 0, .external_lex_state = 25}, - [951] = {.lex_state = 48}, - [952] = {.lex_state = 0, .external_lex_state = 79}, - [953] = {.lex_state = 0, .external_lex_state = 80}, - [954] = {.lex_state = 0, .external_lex_state = 25}, - [955] = {.lex_state = 0}, - [956] = {.lex_state = 0, .external_lex_state = 79}, - [957] = {.lex_state = 0, .external_lex_state = 79}, - [958] = {.lex_state = 0, .external_lex_state = 25}, - [959] = {.lex_state = 0, .external_lex_state = 79}, - [960] = {.lex_state = 0, .external_lex_state = 25}, - [961] = {.lex_state = 0, .external_lex_state = 81}, - [962] = {.lex_state = 0, .external_lex_state = 78}, - [963] = {.lex_state = 0, .external_lex_state = 79}, - [964] = {.lex_state = 0, .external_lex_state = 79}, - [965] = {.lex_state = 0, .external_lex_state = 25}, - [966] = {.lex_state = 0, .external_lex_state = 82}, - [967] = {.lex_state = 0, .external_lex_state = 79}, - [968] = {.lex_state = 0, .external_lex_state = 78}, - [969] = {.lex_state = 0, .external_lex_state = 25}, - [970] = {.lex_state = 0, .external_lex_state = 83}, - [971] = {.lex_state = 0, .external_lex_state = 25}, - [972] = {.lex_state = 0, .external_lex_state = 78}, - [973] = {.lex_state = 0, .external_lex_state = 78}, - [974] = {.lex_state = 0, .external_lex_state = 25}, - [975] = {.lex_state = 0, .external_lex_state = 25}, - [976] = {.lex_state = 0, .external_lex_state = 25}, - [977] = {.lex_state = 0, .external_lex_state = 25}, - [978] = {.lex_state = 0, .external_lex_state = 25}, - [979] = {.lex_state = 0, .external_lex_state = 25}, - [980] = {.lex_state = 0, .external_lex_state = 25}, - [981] = {.lex_state = 0, .external_lex_state = 25}, - [982] = {.lex_state = 0, .external_lex_state = 25}, - [983] = {.lex_state = 0, .external_lex_state = 25}, - [984] = {.lex_state = 0, .external_lex_state = 78}, - [985] = {.lex_state = 0, .external_lex_state = 25}, - [986] = {.lex_state = 0}, - [987] = {.lex_state = 48}, - [988] = {.lex_state = 0, .external_lex_state = 47}, + [897] = {.lex_state = 0, .external_lex_state = 24}, + [898] = {.lex_state = 0, .external_lex_state = 79}, + [899] = {.lex_state = 0, .external_lex_state = 24}, + [900] = {.lex_state = 0, .external_lex_state = 80}, + [901] = {.lex_state = 0, .external_lex_state = 24}, + [902] = {.lex_state = 0, .external_lex_state = 24}, + [903] = {.lex_state = 0, .external_lex_state = 79}, + [904] = {.lex_state = 0, .external_lex_state = 24}, + [905] = {.lex_state = 0, .external_lex_state = 24}, + [906] = {.lex_state = 0, .external_lex_state = 81}, + [907] = {.lex_state = 0, .external_lex_state = 24}, + [908] = {.lex_state = 0, .external_lex_state = 79}, + [909] = {.lex_state = 0, .external_lex_state = 79}, + [910] = {.lex_state = 0, .external_lex_state = 24}, + [911] = {.lex_state = 0, .external_lex_state = 24}, + [912] = {.lex_state = 0, .external_lex_state = 24}, + [913] = {.lex_state = 0, .external_lex_state = 79}, + [914] = {.lex_state = 0, .external_lex_state = 79}, + [915] = {.lex_state = 0}, + [916] = {.lex_state = 0, .external_lex_state = 24}, + [917] = {.lex_state = 0, .external_lex_state = 24}, + [918] = {.lex_state = 0, .external_lex_state = 24}, + [919] = {.lex_state = 0, .external_lex_state = 24}, + [920] = {.lex_state = 0, .external_lex_state = 24}, + [921] = {.lex_state = 0, .external_lex_state = 24}, + [922] = {.lex_state = 0, .external_lex_state = 24}, + [923] = {.lex_state = 0, .external_lex_state = 24}, + [924] = {.lex_state = 0, .external_lex_state = 24}, + [925] = {.lex_state = 0, .external_lex_state = 24}, + [926] = {.lex_state = 0, .external_lex_state = 78}, + [927] = {.lex_state = 0, .external_lex_state = 24}, + [928] = {.lex_state = 0, .external_lex_state = 24}, + [929] = {.lex_state = 0, .external_lex_state = 24}, + [930] = {.lex_state = 48}, + [931] = {.lex_state = 0, .external_lex_state = 78}, + [932] = {.lex_state = 0, .external_lex_state = 82}, + [933] = {.lex_state = 0, .external_lex_state = 24}, + [934] = {.lex_state = 0, .external_lex_state = 24}, + [935] = {.lex_state = 0, .external_lex_state = 24}, + [936] = {.lex_state = 2}, + [937] = {.lex_state = 0, .external_lex_state = 24}, + [938] = {.lex_state = 0, .external_lex_state = 78}, + [939] = {.lex_state = 0, .external_lex_state = 47}, + [940] = {.lex_state = 2}, + [941] = {.lex_state = 0, .external_lex_state = 24}, + [942] = {.lex_state = 2}, + [943] = {.lex_state = 8}, + [944] = {.lex_state = 0, .external_lex_state = 78}, + [945] = {.lex_state = 0, .external_lex_state = 78}, + [946] = {.lex_state = 0, .external_lex_state = 24}, + [947] = {.lex_state = 0, .external_lex_state = 78}, + [948] = {.lex_state = 6}, + [949] = {.lex_state = 0, .external_lex_state = 79}, + [950] = {.lex_state = 0, .external_lex_state = 24}, + [951] = {.lex_state = 0, .external_lex_state = 78}, + [952] = {.lex_state = 0, .external_lex_state = 24}, + [953] = {.lex_state = 0, .external_lex_state = 24}, + [954] = {.lex_state = 0, .external_lex_state = 83}, + [955] = {.lex_state = 0, .external_lex_state = 24}, + [956] = {.lex_state = 0, .external_lex_state = 78}, + [957] = {.lex_state = 0, .external_lex_state = 26}, + [958] = {.lex_state = 0, .external_lex_state = 24}, + [959] = {.lex_state = 48}, + [960] = {.lex_state = 0, .external_lex_state = 24}, + [961] = {.lex_state = 0, .external_lex_state = 24}, + [962] = {.lex_state = 0, .external_lex_state = 79}, + [963] = {.lex_state = 0}, + [964] = {.lex_state = 0, .external_lex_state = 24}, + [965] = {.lex_state = 0}, + [966] = {.lex_state = 0, .external_lex_state = 78}, + [967] = {.lex_state = 0, .external_lex_state = 78}, + [968] = {.lex_state = 9}, + [969] = {.lex_state = 0, .external_lex_state = 24}, + [970] = {.lex_state = 0, .external_lex_state = 78}, + [971] = {.lex_state = 0, .external_lex_state = 24}, + [972] = {.lex_state = 0, .external_lex_state = 79}, + [973] = {.lex_state = 0, .external_lex_state = 79}, + [974] = {.lex_state = 0}, + [975] = {.lex_state = 0, .external_lex_state = 24}, + [976] = {.lex_state = 0, .external_lex_state = 24}, + [977] = {.lex_state = 0, .external_lex_state = 24}, + [978] = {.lex_state = 0, .external_lex_state = 24}, + [979] = {.lex_state = 0, .external_lex_state = 24}, + [980] = {.lex_state = 0, .external_lex_state = 24}, + [981] = {.lex_state = 0, .external_lex_state = 24}, + [982] = {.lex_state = 0, .external_lex_state = 24}, + [983] = {.lex_state = 0, .external_lex_state = 78}, + [984] = {.lex_state = 0, .external_lex_state = 79}, + [985] = {.lex_state = 0, .external_lex_state = 78}, + [986] = {.lex_state = 48}, + [987] = {.lex_state = 0, .external_lex_state = 79}, + [988] = {.lex_state = 0, .external_lex_state = 24}, [989] = {.lex_state = 0, .external_lex_state = 79}, - [990] = {.lex_state = 0}, - [991] = {.lex_state = 0, .external_lex_state = 78}, + [990] = {.lex_state = 2}, + [991] = {.lex_state = 0, .external_lex_state = 84}, [992] = {.lex_state = 0, .external_lex_state = 79}, - [993] = {.lex_state = 0}, - [994] = {.lex_state = 0, .external_lex_state = 84}, - [995] = {.lex_state = 48}, - [996] = {.lex_state = 0, .external_lex_state = 79}, - [997] = {.lex_state = 0, .external_lex_state = 79}, - [998] = {.lex_state = 0, .external_lex_state = 25}, - [999] = {.lex_state = 0, .external_lex_state = 79}, - [1000] = {.lex_state = 0, .external_lex_state = 78}, - [1001] = {.lex_state = 0, .external_lex_state = 79}, - [1002] = {.lex_state = 0, .external_lex_state = 79}, + [993] = {.lex_state = 0, .external_lex_state = 78}, + [994] = {.lex_state = 0, .external_lex_state = 78}, + [995] = {.lex_state = 0}, + [996] = {.lex_state = 0, .external_lex_state = 78}, + [997] = {.lex_state = 0}, + [998] = {.lex_state = 0, .external_lex_state = 24}, + [999] = {.lex_state = 0, .external_lex_state = 78}, + [1000] = {.lex_state = 0, .external_lex_state = 24}, + [1001] = {.lex_state = 0, .external_lex_state = 47}, + [1002] = {.lex_state = 0, .external_lex_state = 78}, [1003] = {.lex_state = 0, .external_lex_state = 78}, - [1004] = {.lex_state = 0, .external_lex_state = 79}, + [1004] = {.lex_state = 0, .external_lex_state = 78}, [1005] = {.lex_state = 0, .external_lex_state = 79}, - [1006] = {.lex_state = 0, .external_lex_state = 79}, - [1007] = {.lex_state = 0, .external_lex_state = 79}, - [1008] = {.lex_state = 2}, - [1009] = {.lex_state = 2}, + [1006] = {.lex_state = 0, .external_lex_state = 78}, + [1007] = {.lex_state = 0, .external_lex_state = 78}, + [1008] = {.lex_state = 0, .external_lex_state = 78}, + [1009] = {.lex_state = 0}, [1010] = {.lex_state = 0, .external_lex_state = 78}, - [1011] = {.lex_state = 0, .external_lex_state = 79}, - [1012] = {.lex_state = 0, .external_lex_state = 25}, - [1013] = {.lex_state = 2}, - [1014] = {.lex_state = 0, .external_lex_state = 25}, - [1015] = {.lex_state = 0, .external_lex_state = 79}, + [1011] = {.lex_state = 0, .external_lex_state = 78}, + [1012] = {.lex_state = 0, .external_lex_state = 78}, + [1013] = {.lex_state = 0, .external_lex_state = 24}, + [1014] = {.lex_state = 0, .external_lex_state = 78}, + [1015] = {.lex_state = 0, .external_lex_state = 78}, [1016] = {.lex_state = 0, .external_lex_state = 78}, - [1017] = {.lex_state = 0, .external_lex_state = 25}, - [1018] = {.lex_state = 0, .external_lex_state = 78}, - [1019] = {.lex_state = 0, .external_lex_state = 79}, - [1020] = {.lex_state = 0, .external_lex_state = 25}, - [1021] = {.lex_state = 0, .external_lex_state = 25}, - [1022] = {.lex_state = 0, .external_lex_state = 25}, - [1023] = {.lex_state = 0, .external_lex_state = 79}, - [1024] = {.lex_state = 0, .external_lex_state = 79}, - [1025] = {.lex_state = 0, .external_lex_state = 25}, - [1026] = {.lex_state = 0, .external_lex_state = 25}, - [1027] = {.lex_state = 0, .external_lex_state = 25}, - [1028] = {.lex_state = 0, .external_lex_state = 25}, - [1029] = {.lex_state = 0, .external_lex_state = 25}, + [1017] = {.lex_state = 0, .external_lex_state = 24}, + [1018] = {.lex_state = 0, .external_lex_state = 85}, + [1019] = {.lex_state = 0, .external_lex_state = 78}, + [1020] = {.lex_state = 0, .external_lex_state = 24}, + [1021] = {.lex_state = 0, .external_lex_state = 79}, + [1022] = {.lex_state = 0, .external_lex_state = 79}, + [1023] = {.lex_state = 0, .external_lex_state = 78}, + [1024] = {.lex_state = 0, .external_lex_state = 78}, + [1025] = {.lex_state = 0, .external_lex_state = 24}, + [1026] = {.lex_state = 0, .external_lex_state = 24}, + [1027] = {.lex_state = 0, .external_lex_state = 79}, + [1028] = {.lex_state = 0, .external_lex_state = 24}, + [1029] = {.lex_state = 0, .external_lex_state = 24}, [1030] = {.lex_state = 2}, [1031] = {.lex_state = 48}, - [1032] = {.lex_state = 0, .external_lex_state = 79}, - [1033] = {.lex_state = 0, .external_lex_state = 79}, - [1034] = {.lex_state = 0, .external_lex_state = 79}, - [1035] = {.lex_state = 0, .external_lex_state = 79}, - [1036] = {.lex_state = 0, .external_lex_state = 25}, - [1037] = {.lex_state = 0, .external_lex_state = 25}, - [1038] = {.lex_state = 0, .external_lex_state = 79}, - [1039] = {.lex_state = 0, .external_lex_state = 25}, - [1040] = {.lex_state = 0, .external_lex_state = 25}, - [1041] = {.lex_state = 0, .external_lex_state = 78}, - [1042] = {.lex_state = 0, .external_lex_state = 79}, - [1043] = {.lex_state = 0, .external_lex_state = 79}, - [1044] = {.lex_state = 0, .external_lex_state = 25}, - [1045] = {.lex_state = 0, .external_lex_state = 25}, - [1046] = {.lex_state = 0, .external_lex_state = 26}, - [1047] = {.lex_state = 0, .external_lex_state = 79}, - [1048] = {.lex_state = 0, .external_lex_state = 78}, + [1032] = {.lex_state = 0, .external_lex_state = 78}, + [1033] = {.lex_state = 0, .external_lex_state = 78}, + [1034] = {.lex_state = 0, .external_lex_state = 78}, + [1035] = {.lex_state = 0, .external_lex_state = 78}, + [1036] = {.lex_state = 0, .external_lex_state = 24}, + [1037] = {.lex_state = 0, .external_lex_state = 24}, + [1038] = {.lex_state = 0, .external_lex_state = 24}, + [1039] = {.lex_state = 0, .external_lex_state = 24}, + [1040] = {.lex_state = 0, .external_lex_state = 24}, + [1041] = {.lex_state = 0, .external_lex_state = 24}, + [1042] = {.lex_state = 0, .external_lex_state = 78}, + [1043] = {.lex_state = 0, .external_lex_state = 78}, + [1044] = {.lex_state = 0, .external_lex_state = 24}, + [1045] = {.lex_state = 0, .external_lex_state = 24}, + [1046] = {.lex_state = 0, .external_lex_state = 24}, + [1047] = {.lex_state = 0, .external_lex_state = 24}, + [1048] = {.lex_state = 0, .external_lex_state = 79}, [1049] = {.lex_state = 2}, [1050] = {.lex_state = 48}, - [1051] = {.lex_state = 0, .external_lex_state = 79}, - [1052] = {.lex_state = 0, .external_lex_state = 79}, - [1053] = {.lex_state = 0, .external_lex_state = 79}, - [1054] = {.lex_state = 0, .external_lex_state = 79}, - [1055] = {.lex_state = 0, .external_lex_state = 25}, - [1056] = {.lex_state = 0, .external_lex_state = 25}, - [1057] = {.lex_state = 0, .external_lex_state = 79}, - [1058] = {.lex_state = 9}, - [1059] = {.lex_state = 0, .external_lex_state = 25}, - [1060] = {.lex_state = 8}, - [1061] = {.lex_state = 0, .external_lex_state = 79}, - [1062] = {.lex_state = 0, .external_lex_state = 79}, - [1063] = {.lex_state = 0, .external_lex_state = 25}, - [1064] = {.lex_state = 0, .external_lex_state = 25}, - [1065] = {.lex_state = 0, .external_lex_state = 79}, - [1066] = {.lex_state = 0, .external_lex_state = 79}, - [1067] = {.lex_state = 2}, + [1051] = {.lex_state = 0, .external_lex_state = 78}, + [1052] = {.lex_state = 0, .external_lex_state = 78}, + [1053] = {.lex_state = 0, .external_lex_state = 78}, + [1054] = {.lex_state = 0, .external_lex_state = 78}, + [1055] = {.lex_state = 0, .external_lex_state = 24}, + [1056] = {.lex_state = 0, .external_lex_state = 26}, + [1057] = {.lex_state = 0, .external_lex_state = 78}, + [1058] = {.lex_state = 0}, + [1059] = {.lex_state = 8}, + [1060] = {.lex_state = 0, .external_lex_state = 79}, + [1061] = {.lex_state = 0, .external_lex_state = 78}, + [1062] = {.lex_state = 0, .external_lex_state = 78}, + [1063] = {.lex_state = 0, .external_lex_state = 24}, + [1064] = {.lex_state = 0, .external_lex_state = 24}, + [1065] = {.lex_state = 0, .external_lex_state = 24}, + [1066] = {.lex_state = 0}, + [1067] = {.lex_state = 10}, [1068] = {.lex_state = 2}, [1069] = {.lex_state = 48}, - [1070] = {.lex_state = 0, .external_lex_state = 79}, - [1071] = {.lex_state = 0, .external_lex_state = 79}, - [1072] = {.lex_state = 0, .external_lex_state = 79}, - [1073] = {.lex_state = 0, .external_lex_state = 25}, - [1074] = {.lex_state = 0, .external_lex_state = 79}, - [1075] = {.lex_state = 0, .external_lex_state = 79}, - [1076] = {.lex_state = 0, .external_lex_state = 79}, - [1077] = {.lex_state = 0, .external_lex_state = 25}, - [1078] = {.lex_state = 0, .external_lex_state = 25}, - [1079] = {.lex_state = 0, .external_lex_state = 79}, - [1080] = {.lex_state = 0, .external_lex_state = 79}, - [1081] = {.lex_state = 0, .external_lex_state = 25}, - [1082] = {.lex_state = 0, .external_lex_state = 25}, + [1070] = {.lex_state = 0, .external_lex_state = 78}, + [1071] = {.lex_state = 0, .external_lex_state = 78}, + [1072] = {.lex_state = 0, .external_lex_state = 78}, + [1073] = {.lex_state = 0, .external_lex_state = 24}, + [1074] = {.lex_state = 0}, + [1075] = {.lex_state = 0, .external_lex_state = 78}, + [1076] = {.lex_state = 2}, + [1077] = {.lex_state = 2}, + [1078] = {.lex_state = 0, .external_lex_state = 24}, + [1079] = {.lex_state = 0, .external_lex_state = 78}, + [1080] = {.lex_state = 0, .external_lex_state = 78}, + [1081] = {.lex_state = 0, .external_lex_state = 24}, + [1082] = {.lex_state = 0, .external_lex_state = 24}, [1083] = {.lex_state = 2}, - [1084] = {.lex_state = 0, .external_lex_state = 25}, - [1085] = {.lex_state = 0, .external_lex_state = 82}, + [1084] = {.lex_state = 0, .external_lex_state = 78}, + [1085] = {.lex_state = 0, .external_lex_state = 24}, [1086] = {.lex_state = 2}, [1087] = {.lex_state = 48}, - [1088] = {.lex_state = 0, .external_lex_state = 79}, - [1089] = {.lex_state = 0, .external_lex_state = 79}, - [1090] = {.lex_state = 0, .external_lex_state = 79}, - [1091] = {.lex_state = 0, .external_lex_state = 79}, - [1092] = {.lex_state = 0, .external_lex_state = 79}, - [1093] = {.lex_state = 0, .external_lex_state = 79}, - [1094] = {.lex_state = 0, .external_lex_state = 79}, - [1095] = {.lex_state = 0, .external_lex_state = 79}, - [1096] = {.lex_state = 0, .external_lex_state = 79}, - [1097] = {.lex_state = 0, .external_lex_state = 79}, - [1098] = {.lex_state = 0, .external_lex_state = 79}, - [1099] = {.lex_state = 0, .external_lex_state = 79}, - [1100] = {.lex_state = 0, .external_lex_state = 79}, - [1101] = {.lex_state = 0, .external_lex_state = 79}, - [1102] = {.lex_state = 0, .external_lex_state = 79}, + [1088] = {.lex_state = 0, .external_lex_state = 78}, + [1089] = {.lex_state = 0, .external_lex_state = 78}, + [1090] = {.lex_state = 0, .external_lex_state = 78}, + [1091] = {.lex_state = 0, .external_lex_state = 78}, + [1092] = {.lex_state = 0, .external_lex_state = 78}, + [1093] = {.lex_state = 0, .external_lex_state = 78}, + [1094] = {.lex_state = 0, .external_lex_state = 78}, + [1095] = {.lex_state = 0, .external_lex_state = 78}, + [1096] = {.lex_state = 0, .external_lex_state = 78}, + [1097] = {.lex_state = 0, .external_lex_state = 78}, + [1098] = {.lex_state = 0, .external_lex_state = 78}, + [1099] = {.lex_state = 0, .external_lex_state = 78}, + [1100] = {.lex_state = 0, .external_lex_state = 78}, + [1101] = {.lex_state = 0, .external_lex_state = 78}, + [1102] = {.lex_state = 0, .external_lex_state = 78}, [1103] = {.lex_state = 48}, - [1104] = {.lex_state = 0, .external_lex_state = 25}, + [1104] = {.lex_state = 0, .external_lex_state = 78}, [1105] = {.lex_state = 8}, - [1106] = {.lex_state = 0, .external_lex_state = 78}, + [1106] = {.lex_state = 0, .external_lex_state = 24}, [1107] = {.lex_state = 2}, [1108] = {.lex_state = 10}, [1109] = {.lex_state = 48}, @@ -4496,42 +4510,42 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1113] = {.lex_state = 2}, [1114] = {.lex_state = 10}, [1115] = {.lex_state = 48}, - [1116] = {.lex_state = 0, .external_lex_state = 78}, + [1116] = {.lex_state = 0, .external_lex_state = 24}, [1117] = {.lex_state = 8}, - [1118] = {.lex_state = 0, .external_lex_state = 79}, + [1118] = {.lex_state = 0, .external_lex_state = 24}, [1119] = {.lex_state = 2}, [1120] = {.lex_state = 10}, [1121] = {.lex_state = 48}, - [1122] = {.lex_state = 0}, + [1122] = {.lex_state = 0, .external_lex_state = 79}, [1123] = {.lex_state = 8}, - [1124] = {.lex_state = 0, .external_lex_state = 78}, + [1124] = {.lex_state = 0, .external_lex_state = 79}, [1125] = {.lex_state = 2}, [1126] = {.lex_state = 10}, - [1127] = {.lex_state = 0, .external_lex_state = 78}, + [1127] = {.lex_state = 0, .external_lex_state = 24}, [1128] = {.lex_state = 2}, - [1129] = {.lex_state = 0, .external_lex_state = 25}, + [1129] = {.lex_state = 0, .external_lex_state = 85}, [1130] = {.lex_state = 2}, - [1131] = {.lex_state = 0}, + [1131] = {.lex_state = 0, .external_lex_state = 79}, [1132] = {.lex_state = 2}, - [1133] = {.lex_state = 10}, + [1133] = {.lex_state = 0, .external_lex_state = 79}, [1134] = {.lex_state = 2}, - [1135] = {.lex_state = 0, .external_lex_state = 77}, + [1135] = {.lex_state = 0, .external_lex_state = 80}, [1136] = {.lex_state = 0}, - [1137] = {.lex_state = 0, .external_lex_state = 77}, + [1137] = {.lex_state = 0, .external_lex_state = 80}, [1138] = {.lex_state = 0}, - [1139] = {.lex_state = 0, .external_lex_state = 77}, - [1140] = {.lex_state = 0}, - [1141] = {.lex_state = 8}, + [1139] = {.lex_state = 0, .external_lex_state = 80}, + [1140] = {.lex_state = 0, .external_lex_state = 24}, + [1141] = {.lex_state = 0, .external_lex_state = 80}, [1142] = {.lex_state = 0}, [1143] = {.lex_state = 0}, [1144] = {.lex_state = 0}, [1145] = {.lex_state = 0}, [1146] = {.lex_state = 0}, - [1147] = {.lex_state = 0, .external_lex_state = 79}, - [1148] = {.lex_state = 0, .external_lex_state = 79}, - [1149] = {.lex_state = 0, .external_lex_state = 79}, - [1150] = {.lex_state = 0, .external_lex_state = 79}, - [1151] = {.lex_state = 0, .external_lex_state = 79}, + [1147] = {.lex_state = 0, .external_lex_state = 78}, + [1148] = {.lex_state = 0, .external_lex_state = 78}, + [1149] = {.lex_state = 0, .external_lex_state = 78}, + [1150] = {.lex_state = 0, .external_lex_state = 24}, + [1151] = {.lex_state = 0, .external_lex_state = 78}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -4606,103 +4620,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__table_caption_begin] = ACTIONS(1), [sym__table_caption_end] = ACTIONS(1), [sym__block_attribute_begin] = ACTIONS(1), + [sym__comment_end_marker] = ACTIONS(1), + [sym__comment_close] = ACTIONS(1), [sym__in_fallback] = ACTIONS(1), [sym__error] = ACTIONS(1), }, [1] = { - [sym_document] = STATE(990), - [sym_frontmatter] = STATE(2), - [sym__block_with_section] = STATE(125), - [sym__block_element] = STATE(125), - [sym_section] = STATE(125), - [sym_heading] = STATE(4), - [sym_list] = STATE(125), - [sym__list_dash] = STATE(167), - [sym__list_item_dash] = STATE(595), - [sym__list_plus] = STATE(167), - [sym__list_item_plus] = STATE(657), - [sym__list_star] = STATE(167), - [sym__list_item_star] = STATE(570), - [sym__list_task] = STATE(167), - [sym__list_item_task] = STATE(586), - [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(167), - [sym__list_item_definition] = STATE(694), - [sym__list_decimal_period] = STATE(167), - [sym__list_item_decimal_period] = STATE(714), - [sym__list_decimal_paren] = STATE(167), - [sym__list_item_decimal_paren] = STATE(719), - [sym__list_decimal_parens] = STATE(167), - [sym__list_item_decimal_parens] = STATE(746), - [sym__list_lower_alpha_period] = STATE(167), - [sym__list_item_lower_alpha_period] = STATE(748), - [sym__list_lower_alpha_paren] = STATE(167), - [sym__list_item_lower_alpha_paren] = STATE(749), - [sym__list_lower_alpha_parens] = STATE(167), - [sym__list_item_lower_alpha_parens] = STATE(753), - [sym__list_upper_alpha_period] = STATE(167), - [sym__list_item_upper_alpha_period] = STATE(761), - [sym__list_upper_alpha_paren] = STATE(167), - [sym__list_item_upper_alpha_paren] = STATE(764), - [sym__list_upper_alpha_parens] = STATE(167), - [sym__list_item_upper_alpha_parens] = STATE(765), - [sym__list_lower_roman_period] = STATE(167), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(167), - [sym__list_item_lower_roman_paren] = STATE(769), - [sym__list_lower_roman_parens] = STATE(167), - [sym__list_item_lower_roman_parens] = STATE(786), - [sym__list_upper_roman_period] = STATE(167), - [sym__list_item_upper_roman_period] = STATE(791), - [sym__list_upper_roman_paren] = STATE(167), - [sym__list_item_upper_roman_paren] = STATE(793), - [sym__list_upper_roman_parens] = STATE(167), - [sym__list_item_upper_roman_parens] = STATE(799), - [sym_table] = STATE(125), + [sym_document] = STATE(974), + [sym_frontmatter] = STATE(5), + [sym__block_with_section] = STATE(133), + [sym__block_element] = STATE(133), + [sym_section] = STATE(133), + [sym_heading] = STATE(2), + [sym_list] = STATE(133), + [sym__list_dash] = STATE(170), + [sym__list_item_dash] = STATE(599), + [sym__list_plus] = STATE(170), + [sym__list_item_plus] = STATE(606), + [sym__list_star] = STATE(170), + [sym__list_item_star] = STATE(664), + [sym__list_task] = STATE(170), + [sym__list_item_task] = STATE(673), + [sym_list_marker_task] = STATE(44), + [sym__list_definition] = STATE(170), + [sym__list_item_definition] = STATE(792), + [sym__list_decimal_period] = STATE(170), + [sym__list_item_decimal_period] = STATE(691), + [sym__list_decimal_paren] = STATE(170), + [sym__list_item_decimal_paren] = STATE(692), + [sym__list_decimal_parens] = STATE(170), + [sym__list_item_decimal_parens] = STATE(710), + [sym__list_lower_alpha_period] = STATE(170), + [sym__list_item_lower_alpha_period] = STATE(714), + [sym__list_lower_alpha_paren] = STATE(170), + [sym__list_item_lower_alpha_paren] = STATE(717), + [sym__list_lower_alpha_parens] = STATE(170), + [sym__list_item_lower_alpha_parens] = STATE(721), + [sym__list_upper_alpha_period] = STATE(170), + [sym__list_item_upper_alpha_period] = STATE(726), + [sym__list_upper_alpha_paren] = STATE(170), + [sym__list_item_upper_alpha_paren] = STATE(747), + [sym__list_upper_alpha_parens] = STATE(170), + [sym__list_item_upper_alpha_parens] = STATE(751), + [sym__list_lower_roman_period] = STATE(170), + [sym__list_item_lower_roman_period] = STATE(753), + [sym__list_lower_roman_paren] = STATE(170), + [sym__list_item_lower_roman_paren] = STATE(755), + [sym__list_lower_roman_parens] = STATE(170), + [sym__list_item_lower_roman_parens] = STATE(760), + [sym__list_upper_roman_period] = STATE(170), + [sym__list_item_upper_roman_period] = STATE(761), + [sym__list_upper_roman_paren] = STATE(170), + [sym__list_item_upper_roman_paren] = STATE(766), + [sym__list_upper_roman_parens] = STATE(170), + [sym__list_item_upper_roman_parens] = STATE(784), + [sym_table] = STATE(133), [sym__table_row] = STATE(66), [sym_table_header] = STATE(66), [sym_table_separator] = STATE(66), [sym_table_row] = STATE(66), - [sym_footnote] = STATE(125), - [sym_footnote_marker_begin] = STATE(932), - [sym_div] = STATE(125), - [sym__div_marker_begin] = STATE(954), - [sym_code_block] = STATE(125), - [sym_raw_block] = STATE(125), - [sym_thematic_break] = STATE(125), - [sym_block_quote] = STATE(125), - [sym__block_quote_prefix] = STATE(221), - [sym_link_reference_definition] = STATE(125), - [sym_block_attribute] = STATE(125), - [sym__paragraph] = STATE(125), - [sym__paragraph_content] = STATE(823), - [sym__paragraph_inline_content] = STATE(824), - [sym__inline] = STATE(654), - [sym__symbol_fallback] = STATE(273), - [aux_sym_document_repeat1] = STATE(3), - [aux_sym__list_dash_repeat1] = STATE(351), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_star_repeat1] = STATE(354), - [aux_sym__list_task_repeat1] = STATE(303), - [aux_sym__list_definition_repeat1] = STATE(526), - [aux_sym__list_decimal_period_repeat1] = STATE(528), - [aux_sym__list_decimal_paren_repeat1] = STATE(531), - [aux_sym__list_decimal_parens_repeat1] = STATE(533), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(535), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(537), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(539), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(487), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(423), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(426), - [aux_sym__list_lower_roman_period_repeat1] = STATE(428), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(430), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(432), - [aux_sym__list_upper_roman_period_repeat1] = STATE(434), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(435), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(436), + [sym_footnote] = STATE(133), + [sym_footnote_marker_begin] = STATE(900), + [sym_div] = STATE(133), + [sym__div_marker_begin] = STATE(902), + [sym_code_block] = STATE(133), + [sym_raw_block] = STATE(133), + [sym_thematic_break] = STATE(133), + [sym_block_quote] = STATE(133), + [sym__block_quote_prefix] = STATE(225), + [sym_link_reference_definition] = STATE(133), + [sym_block_attribute] = STATE(133), + [sym__paragraph] = STATE(133), + [sym__paragraph_content] = STATE(797), + [sym__paragraph_inline_content] = STATE(814), + [sym__inline] = STATE(657), + [sym__symbol_fallback] = STATE(271), + [aux_sym_document_repeat1] = STATE(4), + [aux_sym__list_dash_repeat1] = STATE(348), + [aux_sym__list_plus_repeat1] = STATE(357), + [aux_sym__list_star_repeat1] = STATE(346), + [aux_sym__list_task_repeat1] = STATE(285), + [aux_sym__list_definition_repeat1] = STATE(523), + [aux_sym__list_decimal_period_repeat1] = STATE(525), + [aux_sym__list_decimal_paren_repeat1] = STATE(527), + [aux_sym__list_decimal_parens_repeat1] = STATE(529), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(531), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(533), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(535), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(537), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(426), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(486), + [aux_sym__list_lower_roman_period_repeat1] = STATE(436), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(428), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(430), + [aux_sym__list_upper_roman_period_repeat1] = STATE(432), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(434), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(435), [aux_sym_table_repeat1] = STATE(66), - [aux_sym__block_quote_prefix_repeat1] = STATE(230), - [aux_sym__inline_repeat1] = STATE(273), + [aux_sym__block_quote_prefix_repeat1] = STATE(231), + [aux_sym__inline_repeat1] = STATE(271), [ts_builtin_sym_end] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(5), [anon_sym_LBRACK_CARET] = ACTIONS(7), @@ -4746,109 +4762,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block_attribute_begin] = ACTIONS(73), }, [2] = { - [sym__block_with_section] = STATE(125), - [sym__block_element] = STATE(125), - [sym_section] = STATE(125), - [sym_heading] = STATE(4), - [sym_list] = STATE(125), - [sym__list_dash] = STATE(167), - [sym__list_item_dash] = STATE(595), - [sym__list_plus] = STATE(167), - [sym__list_item_plus] = STATE(657), - [sym__list_star] = STATE(167), - [sym__list_item_star] = STATE(570), - [sym__list_task] = STATE(167), - [sym__list_item_task] = STATE(586), - [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(167), - [sym__list_item_definition] = STATE(694), - [sym__list_decimal_period] = STATE(167), - [sym__list_item_decimal_period] = STATE(714), - [sym__list_decimal_paren] = STATE(167), - [sym__list_item_decimal_paren] = STATE(719), - [sym__list_decimal_parens] = STATE(167), - [sym__list_item_decimal_parens] = STATE(746), - [sym__list_lower_alpha_period] = STATE(167), - [sym__list_item_lower_alpha_period] = STATE(748), - [sym__list_lower_alpha_paren] = STATE(167), - [sym__list_item_lower_alpha_paren] = STATE(749), - [sym__list_lower_alpha_parens] = STATE(167), - [sym__list_item_lower_alpha_parens] = STATE(753), - [sym__list_upper_alpha_period] = STATE(167), - [sym__list_item_upper_alpha_period] = STATE(761), - [sym__list_upper_alpha_paren] = STATE(167), - [sym__list_item_upper_alpha_paren] = STATE(764), - [sym__list_upper_alpha_parens] = STATE(167), - [sym__list_item_upper_alpha_parens] = STATE(765), - [sym__list_lower_roman_period] = STATE(167), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(167), - [sym__list_item_lower_roman_paren] = STATE(769), - [sym__list_lower_roman_parens] = STATE(167), - [sym__list_item_lower_roman_parens] = STATE(786), - [sym__list_upper_roman_period] = STATE(167), - [sym__list_item_upper_roman_period] = STATE(791), - [sym__list_upper_roman_paren] = STATE(167), - [sym__list_item_upper_roman_paren] = STATE(793), - [sym__list_upper_roman_parens] = STATE(167), - [sym__list_item_upper_roman_parens] = STATE(799), - [sym_table] = STATE(125), - [sym__table_row] = STATE(66), - [sym_table_header] = STATE(66), - [sym_table_separator] = STATE(66), - [sym_table_row] = STATE(66), - [sym_footnote] = STATE(125), - [sym_footnote_marker_begin] = STATE(932), - [sym_div] = STATE(125), - [sym__div_marker_begin] = STATE(954), - [sym_code_block] = STATE(125), - [sym_raw_block] = STATE(125), - [sym_thematic_break] = STATE(125), - [sym_block_quote] = STATE(125), - [sym__block_quote_prefix] = STATE(221), - [sym_link_reference_definition] = STATE(125), - [sym_block_attribute] = STATE(125), - [sym__paragraph] = STATE(125), - [sym__paragraph_content] = STATE(823), - [sym__paragraph_inline_content] = STATE(824), - [sym__inline] = STATE(654), - [sym__symbol_fallback] = STATE(273), - [aux_sym_document_repeat1] = STATE(5), - [aux_sym__list_dash_repeat1] = STATE(351), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_star_repeat1] = STATE(354), - [aux_sym__list_task_repeat1] = STATE(303), - [aux_sym__list_definition_repeat1] = STATE(526), - [aux_sym__list_decimal_period_repeat1] = STATE(528), - [aux_sym__list_decimal_paren_repeat1] = STATE(531), - [aux_sym__list_decimal_parens_repeat1] = STATE(533), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(535), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(537), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(539), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(487), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(423), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(426), - [aux_sym__list_lower_roman_period_repeat1] = STATE(428), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(430), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(432), - [aux_sym__list_upper_roman_period_repeat1] = STATE(434), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(435), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(436), - [aux_sym_table_repeat1] = STATE(66), - [aux_sym__block_quote_prefix_repeat1] = STATE(230), - [aux_sym__inline_repeat1] = STATE(273), - [ts_builtin_sym_end] = ACTIONS(75), - [anon_sym_LBRACK] = ACTIONS(5), + [sym__block_with_section] = STATE(124), + [sym__block_element] = STATE(124), + [sym_section] = STATE(124), + [sym_heading] = STATE(10), + [sym_list] = STATE(124), + [sym__list_dash] = STATE(131), + [sym__list_item_dash] = STATE(599), + [sym__list_plus] = STATE(131), + [sym__list_item_plus] = STATE(606), + [sym__list_star] = STATE(131), + [sym__list_item_star] = STATE(664), + [sym__list_task] = STATE(131), + [sym__list_item_task] = STATE(673), + [sym_list_marker_task] = STATE(44), + [sym__list_definition] = STATE(131), + [sym__list_item_definition] = STATE(792), + [sym__list_decimal_period] = STATE(131), + [sym__list_item_decimal_period] = STATE(691), + [sym__list_decimal_paren] = STATE(131), + [sym__list_item_decimal_paren] = STATE(692), + [sym__list_decimal_parens] = STATE(131), + [sym__list_item_decimal_parens] = STATE(710), + [sym__list_lower_alpha_period] = STATE(131), + [sym__list_item_lower_alpha_period] = STATE(714), + [sym__list_lower_alpha_paren] = STATE(131), + [sym__list_item_lower_alpha_paren] = STATE(717), + [sym__list_lower_alpha_parens] = STATE(131), + [sym__list_item_lower_alpha_parens] = STATE(721), + [sym__list_upper_alpha_period] = STATE(131), + [sym__list_item_upper_alpha_period] = STATE(726), + [sym__list_upper_alpha_paren] = STATE(131), + [sym__list_item_upper_alpha_paren] = STATE(747), + [sym__list_upper_alpha_parens] = STATE(131), + [sym__list_item_upper_alpha_parens] = STATE(751), + [sym__list_lower_roman_period] = STATE(131), + [sym__list_item_lower_roman_period] = STATE(753), + [sym__list_lower_roman_paren] = STATE(131), + [sym__list_item_lower_roman_paren] = STATE(755), + [sym__list_lower_roman_parens] = STATE(131), + [sym__list_item_lower_roman_parens] = STATE(760), + [sym__list_upper_roman_period] = STATE(131), + [sym__list_item_upper_roman_period] = STATE(761), + [sym__list_upper_roman_paren] = STATE(131), + [sym__list_item_upper_roman_paren] = STATE(766), + [sym__list_upper_roman_parens] = STATE(131), + [sym__list_item_upper_roman_parens] = STATE(784), + [sym_table] = STATE(124), + [sym__table_row] = STATE(67), + [sym_table_header] = STATE(67), + [sym_table_separator] = STATE(67), + [sym_table_row] = STATE(67), + [sym_footnote] = STATE(124), + [sym_footnote_marker_begin] = STATE(1139), + [sym_div] = STATE(124), + [sym__div_marker_begin] = STATE(1055), + [sym_code_block] = STATE(124), + [sym_raw_block] = STATE(124), + [sym_thematic_break] = STATE(124), + [sym_block_quote] = STATE(124), + [sym__block_quote_prefix] = STATE(223), + [sym_link_reference_definition] = STATE(124), + [sym_block_attribute] = STATE(124), + [sym__paragraph] = STATE(124), + [sym__paragraph_content] = STATE(765), + [sym__paragraph_inline_content] = STATE(814), + [sym__inline] = STATE(657), + [sym__symbol_fallback] = STATE(271), + [aux_sym_document_repeat1] = STATE(6), + [aux_sym__list_dash_repeat1] = STATE(326), + [aux_sym__list_plus_repeat1] = STATE(327), + [aux_sym__list_star_repeat1] = STATE(328), + [aux_sym__list_task_repeat1] = STATE(289), + [aux_sym__list_definition_repeat1] = STATE(489), + [aux_sym__list_decimal_period_repeat1] = STATE(490), + [aux_sym__list_decimal_paren_repeat1] = STATE(491), + [aux_sym__list_decimal_parens_repeat1] = STATE(492), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(493), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(494), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(495), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(496), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(497), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(498), + [aux_sym__list_lower_roman_period_repeat1] = STATE(499), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(500), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(501), + [aux_sym__list_upper_roman_period_repeat1] = STATE(502), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(503), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(504), + [aux_sym_table_repeat1] = STATE(67), + [aux_sym__block_quote_prefix_repeat1] = STATE(231), + [aux_sym__inline_repeat1] = STATE(271), + [anon_sym_LBRACK] = ACTIONS(75), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_DOT] = ACTIONS(9), [aux_sym_identifier_token1] = ACTIONS(9), [aux_sym__inline_token1] = ACTIONS(9), [anon_sym_LBRACE] = ACTIONS(9), [anon_sym_PERCENT] = ACTIONS(9), - [sym__newline] = ACTIONS(11), + [sym__block_close] = ACTIONS(77), + [sym__newline] = ACTIONS(79), [sym__heading_begin] = ACTIONS(15), [sym__div_begin] = ACTIONS(17), - [sym__code_block_begin] = ACTIONS(19), + [sym__code_block_begin] = ACTIONS(81), [sym_list_marker_dash] = ACTIONS(21), [sym_list_marker_star] = ACTIONS(23), [sym_list_marker_plus] = ACTIONS(25), @@ -4869,108 +4885,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(55), [sym_list_marker_lower_roman_parens] = ACTIONS(57), [sym_list_marker_upper_roman_parens] = ACTIONS(59), - [sym__block_quote_begin] = ACTIONS(61), + [sym__block_quote_begin] = ACTIONS(83), [sym__block_quote_continuation] = ACTIONS(63), - [sym__thematic_break_dash] = ACTIONS(65), - [sym__thematic_break_star] = ACTIONS(65), - [sym__table_header_begin] = ACTIONS(67), - [sym__table_separator_begin] = ACTIONS(69), - [sym__table_row_begin] = ACTIONS(71), - [sym__block_attribute_begin] = ACTIONS(73), + [sym__thematic_break_dash] = ACTIONS(85), + [sym__thematic_break_star] = ACTIONS(85), + [sym__table_header_begin] = ACTIONS(87), + [sym__table_separator_begin] = ACTIONS(89), + [sym__table_row_begin] = ACTIONS(91), + [sym__block_attribute_begin] = ACTIONS(93), }, [3] = { - [sym__block_with_section] = STATE(125), - [sym__block_element] = STATE(125), - [sym_section] = STATE(125), - [sym_heading] = STATE(4), - [sym_list] = STATE(125), - [sym__list_dash] = STATE(167), - [sym__list_item_dash] = STATE(595), - [sym__list_plus] = STATE(167), - [sym__list_item_plus] = STATE(657), - [sym__list_star] = STATE(167), - [sym__list_item_star] = STATE(570), - [sym__list_task] = STATE(167), - [sym__list_item_task] = STATE(586), - [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(167), - [sym__list_item_definition] = STATE(694), - [sym__list_decimal_period] = STATE(167), - [sym__list_item_decimal_period] = STATE(714), - [sym__list_decimal_paren] = STATE(167), - [sym__list_item_decimal_paren] = STATE(719), - [sym__list_decimal_parens] = STATE(167), - [sym__list_item_decimal_parens] = STATE(746), - [sym__list_lower_alpha_period] = STATE(167), - [sym__list_item_lower_alpha_period] = STATE(748), - [sym__list_lower_alpha_paren] = STATE(167), - [sym__list_item_lower_alpha_paren] = STATE(749), - [sym__list_lower_alpha_parens] = STATE(167), - [sym__list_item_lower_alpha_parens] = STATE(753), - [sym__list_upper_alpha_period] = STATE(167), - [sym__list_item_upper_alpha_period] = STATE(761), - [sym__list_upper_alpha_paren] = STATE(167), - [sym__list_item_upper_alpha_paren] = STATE(764), - [sym__list_upper_alpha_parens] = STATE(167), - [sym__list_item_upper_alpha_parens] = STATE(765), - [sym__list_lower_roman_period] = STATE(167), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(167), - [sym__list_item_lower_roman_paren] = STATE(769), - [sym__list_lower_roman_parens] = STATE(167), - [sym__list_item_lower_roman_parens] = STATE(786), - [sym__list_upper_roman_period] = STATE(167), - [sym__list_item_upper_roman_period] = STATE(791), - [sym__list_upper_roman_paren] = STATE(167), - [sym__list_item_upper_roman_paren] = STATE(793), - [sym__list_upper_roman_parens] = STATE(167), - [sym__list_item_upper_roman_parens] = STATE(799), - [sym_table] = STATE(125), + [sym__block_with_section] = STATE(133), + [sym__block_element] = STATE(133), + [sym_section] = STATE(133), + [sym_heading] = STATE(2), + [sym_list] = STATE(133), + [sym__list_dash] = STATE(170), + [sym__list_item_dash] = STATE(599), + [sym__list_plus] = STATE(170), + [sym__list_item_plus] = STATE(606), + [sym__list_star] = STATE(170), + [sym__list_item_star] = STATE(664), + [sym__list_task] = STATE(170), + [sym__list_item_task] = STATE(673), + [sym_list_marker_task] = STATE(44), + [sym__list_definition] = STATE(170), + [sym__list_item_definition] = STATE(792), + [sym__list_decimal_period] = STATE(170), + [sym__list_item_decimal_period] = STATE(691), + [sym__list_decimal_paren] = STATE(170), + [sym__list_item_decimal_paren] = STATE(692), + [sym__list_decimal_parens] = STATE(170), + [sym__list_item_decimal_parens] = STATE(710), + [sym__list_lower_alpha_period] = STATE(170), + [sym__list_item_lower_alpha_period] = STATE(714), + [sym__list_lower_alpha_paren] = STATE(170), + [sym__list_item_lower_alpha_paren] = STATE(717), + [sym__list_lower_alpha_parens] = STATE(170), + [sym__list_item_lower_alpha_parens] = STATE(721), + [sym__list_upper_alpha_period] = STATE(170), + [sym__list_item_upper_alpha_period] = STATE(726), + [sym__list_upper_alpha_paren] = STATE(170), + [sym__list_item_upper_alpha_paren] = STATE(747), + [sym__list_upper_alpha_parens] = STATE(170), + [sym__list_item_upper_alpha_parens] = STATE(751), + [sym__list_lower_roman_period] = STATE(170), + [sym__list_item_lower_roman_period] = STATE(753), + [sym__list_lower_roman_paren] = STATE(170), + [sym__list_item_lower_roman_paren] = STATE(755), + [sym__list_lower_roman_parens] = STATE(170), + [sym__list_item_lower_roman_parens] = STATE(760), + [sym__list_upper_roman_period] = STATE(170), + [sym__list_item_upper_roman_period] = STATE(761), + [sym__list_upper_roman_paren] = STATE(170), + [sym__list_item_upper_roman_paren] = STATE(766), + [sym__list_upper_roman_parens] = STATE(170), + [sym__list_item_upper_roman_parens] = STATE(784), + [sym_table] = STATE(133), [sym__table_row] = STATE(66), [sym_table_header] = STATE(66), [sym_table_separator] = STATE(66), [sym_table_row] = STATE(66), - [sym_footnote] = STATE(125), - [sym_footnote_marker_begin] = STATE(932), - [sym_div] = STATE(125), - [sym__div_marker_begin] = STATE(954), - [sym_code_block] = STATE(125), - [sym_raw_block] = STATE(125), - [sym_thematic_break] = STATE(125), - [sym_block_quote] = STATE(125), - [sym__block_quote_prefix] = STATE(221), - [sym_link_reference_definition] = STATE(125), - [sym_block_attribute] = STATE(125), - [sym__paragraph] = STATE(125), - [sym__paragraph_content] = STATE(823), - [sym__paragraph_inline_content] = STATE(824), - [sym__inline] = STATE(654), - [sym__symbol_fallback] = STATE(273), + [sym_footnote] = STATE(133), + [sym_footnote_marker_begin] = STATE(900), + [sym_div] = STATE(133), + [sym__div_marker_begin] = STATE(902), + [sym_code_block] = STATE(133), + [sym_raw_block] = STATE(133), + [sym_thematic_break] = STATE(133), + [sym_block_quote] = STATE(133), + [sym__block_quote_prefix] = STATE(225), + [sym_link_reference_definition] = STATE(133), + [sym_block_attribute] = STATE(133), + [sym__paragraph] = STATE(133), + [sym__paragraph_content] = STATE(797), + [sym__paragraph_inline_content] = STATE(814), + [sym__inline] = STATE(657), + [sym__symbol_fallback] = STATE(271), [aux_sym_document_repeat1] = STATE(7), - [aux_sym__list_dash_repeat1] = STATE(351), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_star_repeat1] = STATE(354), - [aux_sym__list_task_repeat1] = STATE(303), - [aux_sym__list_definition_repeat1] = STATE(526), - [aux_sym__list_decimal_period_repeat1] = STATE(528), - [aux_sym__list_decimal_paren_repeat1] = STATE(531), - [aux_sym__list_decimal_parens_repeat1] = STATE(533), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(535), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(537), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(539), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(487), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(423), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(426), - [aux_sym__list_lower_roman_period_repeat1] = STATE(428), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(430), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(432), - [aux_sym__list_upper_roman_period_repeat1] = STATE(434), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(435), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(436), + [aux_sym__list_dash_repeat1] = STATE(348), + [aux_sym__list_plus_repeat1] = STATE(357), + [aux_sym__list_star_repeat1] = STATE(346), + [aux_sym__list_task_repeat1] = STATE(285), + [aux_sym__list_definition_repeat1] = STATE(523), + [aux_sym__list_decimal_period_repeat1] = STATE(525), + [aux_sym__list_decimal_paren_repeat1] = STATE(527), + [aux_sym__list_decimal_parens_repeat1] = STATE(529), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(531), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(533), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(535), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(537), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(426), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(486), + [aux_sym__list_lower_roman_period_repeat1] = STATE(436), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(428), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(430), + [aux_sym__list_upper_roman_period_repeat1] = STATE(432), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(434), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(435), [aux_sym_table_repeat1] = STATE(66), - [aux_sym__block_quote_prefix_repeat1] = STATE(230), - [aux_sym__inline_repeat1] = STATE(273), - [ts_builtin_sym_end] = ACTIONS(75), + [aux_sym__block_quote_prefix_repeat1] = STATE(231), + [aux_sym__inline_repeat1] = STATE(271), + [ts_builtin_sym_end] = ACTIONS(95), [anon_sym_LBRACK] = ACTIONS(5), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_DOT] = ACTIONS(9), @@ -5012,109 +5028,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block_attribute_begin] = ACTIONS(73), }, [4] = { - [sym__block_with_section] = STATE(123), - [sym__block_element] = STATE(123), - [sym_section] = STATE(123), - [sym_heading] = STATE(9), - [sym_list] = STATE(123), - [sym__list_dash] = STATE(129), - [sym__list_item_dash] = STATE(595), - [sym__list_plus] = STATE(129), - [sym__list_item_plus] = STATE(657), - [sym__list_star] = STATE(129), - [sym__list_item_star] = STATE(570), - [sym__list_task] = STATE(129), - [sym__list_item_task] = STATE(586), - [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(129), - [sym__list_item_definition] = STATE(694), - [sym__list_decimal_period] = STATE(129), - [sym__list_item_decimal_period] = STATE(714), - [sym__list_decimal_paren] = STATE(129), - [sym__list_item_decimal_paren] = STATE(719), - [sym__list_decimal_parens] = STATE(129), - [sym__list_item_decimal_parens] = STATE(746), - [sym__list_lower_alpha_period] = STATE(129), - [sym__list_item_lower_alpha_period] = STATE(748), - [sym__list_lower_alpha_paren] = STATE(129), - [sym__list_item_lower_alpha_paren] = STATE(749), - [sym__list_lower_alpha_parens] = STATE(129), - [sym__list_item_lower_alpha_parens] = STATE(753), - [sym__list_upper_alpha_period] = STATE(129), - [sym__list_item_upper_alpha_period] = STATE(761), - [sym__list_upper_alpha_paren] = STATE(129), - [sym__list_item_upper_alpha_paren] = STATE(764), - [sym__list_upper_alpha_parens] = STATE(129), - [sym__list_item_upper_alpha_parens] = STATE(765), - [sym__list_lower_roman_period] = STATE(129), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(129), - [sym__list_item_lower_roman_paren] = STATE(769), - [sym__list_lower_roman_parens] = STATE(129), - [sym__list_item_lower_roman_parens] = STATE(786), - [sym__list_upper_roman_period] = STATE(129), - [sym__list_item_upper_roman_period] = STATE(791), - [sym__list_upper_roman_paren] = STATE(129), - [sym__list_item_upper_roman_paren] = STATE(793), - [sym__list_upper_roman_parens] = STATE(129), - [sym__list_item_upper_roman_parens] = STATE(799), - [sym_table] = STATE(123), - [sym__table_row] = STATE(67), - [sym_table_header] = STATE(67), - [sym_table_separator] = STATE(67), - [sym_table_row] = STATE(67), - [sym_footnote] = STATE(123), - [sym_footnote_marker_begin] = STATE(1139), - [sym_div] = STATE(123), - [sym__div_marker_begin] = STATE(1055), - [sym_code_block] = STATE(123), - [sym_raw_block] = STATE(123), - [sym_thematic_break] = STATE(123), - [sym_block_quote] = STATE(123), - [sym__block_quote_prefix] = STATE(223), - [sym_link_reference_definition] = STATE(123), - [sym_block_attribute] = STATE(123), - [sym__paragraph] = STATE(123), - [sym__paragraph_content] = STATE(766), - [sym__paragraph_inline_content] = STATE(824), - [sym__inline] = STATE(654), - [sym__symbol_fallback] = STATE(273), - [aux_sym_document_repeat1] = STATE(6), - [aux_sym__list_dash_repeat1] = STATE(323), - [aux_sym__list_plus_repeat1] = STATE(324), - [aux_sym__list_star_repeat1] = STATE(325), - [aux_sym__list_task_repeat1] = STATE(299), - [aux_sym__list_definition_repeat1] = STATE(491), - [aux_sym__list_decimal_period_repeat1] = STATE(492), - [aux_sym__list_decimal_paren_repeat1] = STATE(493), - [aux_sym__list_decimal_parens_repeat1] = STATE(494), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(495), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(496), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(497), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(498), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(499), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(500), - [aux_sym__list_lower_roman_period_repeat1] = STATE(501), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(502), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(503), - [aux_sym__list_upper_roman_period_repeat1] = STATE(504), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(505), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(506), - [aux_sym_table_repeat1] = STATE(67), - [aux_sym__block_quote_prefix_repeat1] = STATE(230), - [aux_sym__inline_repeat1] = STATE(273), - [anon_sym_LBRACK] = ACTIONS(77), + [sym__block_with_section] = STATE(133), + [sym__block_element] = STATE(133), + [sym_section] = STATE(133), + [sym_heading] = STATE(2), + [sym_list] = STATE(133), + [sym__list_dash] = STATE(170), + [sym__list_item_dash] = STATE(599), + [sym__list_plus] = STATE(170), + [sym__list_item_plus] = STATE(606), + [sym__list_star] = STATE(170), + [sym__list_item_star] = STATE(664), + [sym__list_task] = STATE(170), + [sym__list_item_task] = STATE(673), + [sym_list_marker_task] = STATE(44), + [sym__list_definition] = STATE(170), + [sym__list_item_definition] = STATE(792), + [sym__list_decimal_period] = STATE(170), + [sym__list_item_decimal_period] = STATE(691), + [sym__list_decimal_paren] = STATE(170), + [sym__list_item_decimal_paren] = STATE(692), + [sym__list_decimal_parens] = STATE(170), + [sym__list_item_decimal_parens] = STATE(710), + [sym__list_lower_alpha_period] = STATE(170), + [sym__list_item_lower_alpha_period] = STATE(714), + [sym__list_lower_alpha_paren] = STATE(170), + [sym__list_item_lower_alpha_paren] = STATE(717), + [sym__list_lower_alpha_parens] = STATE(170), + [sym__list_item_lower_alpha_parens] = STATE(721), + [sym__list_upper_alpha_period] = STATE(170), + [sym__list_item_upper_alpha_period] = STATE(726), + [sym__list_upper_alpha_paren] = STATE(170), + [sym__list_item_upper_alpha_paren] = STATE(747), + [sym__list_upper_alpha_parens] = STATE(170), + [sym__list_item_upper_alpha_parens] = STATE(751), + [sym__list_lower_roman_period] = STATE(170), + [sym__list_item_lower_roman_period] = STATE(753), + [sym__list_lower_roman_paren] = STATE(170), + [sym__list_item_lower_roman_paren] = STATE(755), + [sym__list_lower_roman_parens] = STATE(170), + [sym__list_item_lower_roman_parens] = STATE(760), + [sym__list_upper_roman_period] = STATE(170), + [sym__list_item_upper_roman_period] = STATE(761), + [sym__list_upper_roman_paren] = STATE(170), + [sym__list_item_upper_roman_paren] = STATE(766), + [sym__list_upper_roman_parens] = STATE(170), + [sym__list_item_upper_roman_parens] = STATE(784), + [sym_table] = STATE(133), + [sym__table_row] = STATE(66), + [sym_table_header] = STATE(66), + [sym_table_separator] = STATE(66), + [sym_table_row] = STATE(66), + [sym_footnote] = STATE(133), + [sym_footnote_marker_begin] = STATE(900), + [sym_div] = STATE(133), + [sym__div_marker_begin] = STATE(902), + [sym_code_block] = STATE(133), + [sym_raw_block] = STATE(133), + [sym_thematic_break] = STATE(133), + [sym_block_quote] = STATE(133), + [sym__block_quote_prefix] = STATE(225), + [sym_link_reference_definition] = STATE(133), + [sym_block_attribute] = STATE(133), + [sym__paragraph] = STATE(133), + [sym__paragraph_content] = STATE(797), + [sym__paragraph_inline_content] = STATE(814), + [sym__inline] = STATE(657), + [sym__symbol_fallback] = STATE(271), + [aux_sym_document_repeat1] = STATE(7), + [aux_sym__list_dash_repeat1] = STATE(348), + [aux_sym__list_plus_repeat1] = STATE(357), + [aux_sym__list_star_repeat1] = STATE(346), + [aux_sym__list_task_repeat1] = STATE(285), + [aux_sym__list_definition_repeat1] = STATE(523), + [aux_sym__list_decimal_period_repeat1] = STATE(525), + [aux_sym__list_decimal_paren_repeat1] = STATE(527), + [aux_sym__list_decimal_parens_repeat1] = STATE(529), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(531), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(533), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(535), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(537), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(426), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(486), + [aux_sym__list_lower_roman_period_repeat1] = STATE(436), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(428), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(430), + [aux_sym__list_upper_roman_period_repeat1] = STATE(432), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(434), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(435), + [aux_sym_table_repeat1] = STATE(66), + [aux_sym__block_quote_prefix_repeat1] = STATE(231), + [aux_sym__inline_repeat1] = STATE(271), + [ts_builtin_sym_end] = ACTIONS(97), + [anon_sym_LBRACK] = ACTIONS(5), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_DOT] = ACTIONS(9), [aux_sym_identifier_token1] = ACTIONS(9), [aux_sym__inline_token1] = ACTIONS(9), [anon_sym_LBRACE] = ACTIONS(9), [anon_sym_PERCENT] = ACTIONS(9), - [sym__block_close] = ACTIONS(79), - [sym__newline] = ACTIONS(81), + [sym__newline] = ACTIONS(11), [sym__heading_begin] = ACTIONS(15), [sym__div_begin] = ACTIONS(17), - [sym__code_block_begin] = ACTIONS(83), + [sym__code_block_begin] = ACTIONS(19), [sym_list_marker_dash] = ACTIONS(21), [sym_list_marker_star] = ACTIONS(23), [sym_list_marker_plus] = ACTIONS(25), @@ -5135,107 +5151,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(55), [sym_list_marker_lower_roman_parens] = ACTIONS(57), [sym_list_marker_upper_roman_parens] = ACTIONS(59), - [sym__block_quote_begin] = ACTIONS(85), + [sym__block_quote_begin] = ACTIONS(61), [sym__block_quote_continuation] = ACTIONS(63), - [sym__thematic_break_dash] = ACTIONS(87), - [sym__thematic_break_star] = ACTIONS(87), - [sym__table_header_begin] = ACTIONS(89), - [sym__table_separator_begin] = ACTIONS(91), - [sym__table_row_begin] = ACTIONS(93), - [sym__block_attribute_begin] = ACTIONS(95), + [sym__thematic_break_dash] = ACTIONS(65), + [sym__thematic_break_star] = ACTIONS(65), + [sym__table_header_begin] = ACTIONS(67), + [sym__table_separator_begin] = ACTIONS(69), + [sym__table_row_begin] = ACTIONS(71), + [sym__block_attribute_begin] = ACTIONS(73), }, [5] = { - [sym__block_with_section] = STATE(125), - [sym__block_element] = STATE(125), - [sym_section] = STATE(125), - [sym_heading] = STATE(4), - [sym_list] = STATE(125), - [sym__list_dash] = STATE(167), - [sym__list_item_dash] = STATE(595), - [sym__list_plus] = STATE(167), - [sym__list_item_plus] = STATE(657), - [sym__list_star] = STATE(167), - [sym__list_item_star] = STATE(570), - [sym__list_task] = STATE(167), - [sym__list_item_task] = STATE(586), - [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(167), - [sym__list_item_definition] = STATE(694), - [sym__list_decimal_period] = STATE(167), - [sym__list_item_decimal_period] = STATE(714), - [sym__list_decimal_paren] = STATE(167), - [sym__list_item_decimal_paren] = STATE(719), - [sym__list_decimal_parens] = STATE(167), - [sym__list_item_decimal_parens] = STATE(746), - [sym__list_lower_alpha_period] = STATE(167), - [sym__list_item_lower_alpha_period] = STATE(748), - [sym__list_lower_alpha_paren] = STATE(167), - [sym__list_item_lower_alpha_paren] = STATE(749), - [sym__list_lower_alpha_parens] = STATE(167), - [sym__list_item_lower_alpha_parens] = STATE(753), - [sym__list_upper_alpha_period] = STATE(167), - [sym__list_item_upper_alpha_period] = STATE(761), - [sym__list_upper_alpha_paren] = STATE(167), - [sym__list_item_upper_alpha_paren] = STATE(764), - [sym__list_upper_alpha_parens] = STATE(167), - [sym__list_item_upper_alpha_parens] = STATE(765), - [sym__list_lower_roman_period] = STATE(167), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(167), - [sym__list_item_lower_roman_paren] = STATE(769), - [sym__list_lower_roman_parens] = STATE(167), - [sym__list_item_lower_roman_parens] = STATE(786), - [sym__list_upper_roman_period] = STATE(167), - [sym__list_item_upper_roman_period] = STATE(791), - [sym__list_upper_roman_paren] = STATE(167), - [sym__list_item_upper_roman_paren] = STATE(793), - [sym__list_upper_roman_parens] = STATE(167), - [sym__list_item_upper_roman_parens] = STATE(799), - [sym_table] = STATE(125), + [sym__block_with_section] = STATE(133), + [sym__block_element] = STATE(133), + [sym_section] = STATE(133), + [sym_heading] = STATE(2), + [sym_list] = STATE(133), + [sym__list_dash] = STATE(170), + [sym__list_item_dash] = STATE(599), + [sym__list_plus] = STATE(170), + [sym__list_item_plus] = STATE(606), + [sym__list_star] = STATE(170), + [sym__list_item_star] = STATE(664), + [sym__list_task] = STATE(170), + [sym__list_item_task] = STATE(673), + [sym_list_marker_task] = STATE(44), + [sym__list_definition] = STATE(170), + [sym__list_item_definition] = STATE(792), + [sym__list_decimal_period] = STATE(170), + [sym__list_item_decimal_period] = STATE(691), + [sym__list_decimal_paren] = STATE(170), + [sym__list_item_decimal_paren] = STATE(692), + [sym__list_decimal_parens] = STATE(170), + [sym__list_item_decimal_parens] = STATE(710), + [sym__list_lower_alpha_period] = STATE(170), + [sym__list_item_lower_alpha_period] = STATE(714), + [sym__list_lower_alpha_paren] = STATE(170), + [sym__list_item_lower_alpha_paren] = STATE(717), + [sym__list_lower_alpha_parens] = STATE(170), + [sym__list_item_lower_alpha_parens] = STATE(721), + [sym__list_upper_alpha_period] = STATE(170), + [sym__list_item_upper_alpha_period] = STATE(726), + [sym__list_upper_alpha_paren] = STATE(170), + [sym__list_item_upper_alpha_paren] = STATE(747), + [sym__list_upper_alpha_parens] = STATE(170), + [sym__list_item_upper_alpha_parens] = STATE(751), + [sym__list_lower_roman_period] = STATE(170), + [sym__list_item_lower_roman_period] = STATE(753), + [sym__list_lower_roman_paren] = STATE(170), + [sym__list_item_lower_roman_paren] = STATE(755), + [sym__list_lower_roman_parens] = STATE(170), + [sym__list_item_lower_roman_parens] = STATE(760), + [sym__list_upper_roman_period] = STATE(170), + [sym__list_item_upper_roman_period] = STATE(761), + [sym__list_upper_roman_paren] = STATE(170), + [sym__list_item_upper_roman_paren] = STATE(766), + [sym__list_upper_roman_parens] = STATE(170), + [sym__list_item_upper_roman_parens] = STATE(784), + [sym_table] = STATE(133), [sym__table_row] = STATE(66), [sym_table_header] = STATE(66), [sym_table_separator] = STATE(66), [sym_table_row] = STATE(66), - [sym_footnote] = STATE(125), - [sym_footnote_marker_begin] = STATE(932), - [sym_div] = STATE(125), - [sym__div_marker_begin] = STATE(954), - [sym_code_block] = STATE(125), - [sym_raw_block] = STATE(125), - [sym_thematic_break] = STATE(125), - [sym_block_quote] = STATE(125), - [sym__block_quote_prefix] = STATE(221), - [sym_link_reference_definition] = STATE(125), - [sym_block_attribute] = STATE(125), - [sym__paragraph] = STATE(125), - [sym__paragraph_content] = STATE(823), - [sym__paragraph_inline_content] = STATE(824), - [sym__inline] = STATE(654), - [sym__symbol_fallback] = STATE(273), - [aux_sym_document_repeat1] = STATE(7), - [aux_sym__list_dash_repeat1] = STATE(351), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_star_repeat1] = STATE(354), - [aux_sym__list_task_repeat1] = STATE(303), - [aux_sym__list_definition_repeat1] = STATE(526), - [aux_sym__list_decimal_period_repeat1] = STATE(528), - [aux_sym__list_decimal_paren_repeat1] = STATE(531), - [aux_sym__list_decimal_parens_repeat1] = STATE(533), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(535), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(537), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(539), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(487), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(423), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(426), - [aux_sym__list_lower_roman_period_repeat1] = STATE(428), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(430), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(432), - [aux_sym__list_upper_roman_period_repeat1] = STATE(434), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(435), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(436), + [sym_footnote] = STATE(133), + [sym_footnote_marker_begin] = STATE(900), + [sym_div] = STATE(133), + [sym__div_marker_begin] = STATE(902), + [sym_code_block] = STATE(133), + [sym_raw_block] = STATE(133), + [sym_thematic_break] = STATE(133), + [sym_block_quote] = STATE(133), + [sym__block_quote_prefix] = STATE(225), + [sym_link_reference_definition] = STATE(133), + [sym_block_attribute] = STATE(133), + [sym__paragraph] = STATE(133), + [sym__paragraph_content] = STATE(797), + [sym__paragraph_inline_content] = STATE(814), + [sym__inline] = STATE(657), + [sym__symbol_fallback] = STATE(271), + [aux_sym_document_repeat1] = STATE(3), + [aux_sym__list_dash_repeat1] = STATE(348), + [aux_sym__list_plus_repeat1] = STATE(357), + [aux_sym__list_star_repeat1] = STATE(346), + [aux_sym__list_task_repeat1] = STATE(285), + [aux_sym__list_definition_repeat1] = STATE(523), + [aux_sym__list_decimal_period_repeat1] = STATE(525), + [aux_sym__list_decimal_paren_repeat1] = STATE(527), + [aux_sym__list_decimal_parens_repeat1] = STATE(529), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(531), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(533), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(535), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(537), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(426), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(486), + [aux_sym__list_lower_roman_period_repeat1] = STATE(436), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(428), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(430), + [aux_sym__list_upper_roman_period_repeat1] = STATE(432), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(434), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(435), [aux_sym_table_repeat1] = STATE(66), - [aux_sym__block_quote_prefix_repeat1] = STATE(230), - [aux_sym__inline_repeat1] = STATE(273), + [aux_sym__block_quote_prefix_repeat1] = STATE(231), + [aux_sym__inline_repeat1] = STATE(271), [ts_builtin_sym_end] = ACTIONS(97), [anon_sym_LBRACK] = ACTIONS(5), [anon_sym_LBRACK_CARET] = ACTIONS(7), @@ -5278,98 +5294,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block_attribute_begin] = ACTIONS(73), }, [6] = { - [sym__block_with_section] = STATE(123), - [sym__block_element] = STATE(123), - [sym_section] = STATE(123), - [sym_heading] = STATE(9), - [sym_list] = STATE(123), - [sym__list_dash] = STATE(129), - [sym__list_item_dash] = STATE(595), - [sym__list_plus] = STATE(129), - [sym__list_item_plus] = STATE(657), - [sym__list_star] = STATE(129), - [sym__list_item_star] = STATE(570), - [sym__list_task] = STATE(129), - [sym__list_item_task] = STATE(586), - [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(129), - [sym__list_item_definition] = STATE(694), - [sym__list_decimal_period] = STATE(129), - [sym__list_item_decimal_period] = STATE(714), - [sym__list_decimal_paren] = STATE(129), - [sym__list_item_decimal_paren] = STATE(719), - [sym__list_decimal_parens] = STATE(129), - [sym__list_item_decimal_parens] = STATE(746), - [sym__list_lower_alpha_period] = STATE(129), - [sym__list_item_lower_alpha_period] = STATE(748), - [sym__list_lower_alpha_paren] = STATE(129), - [sym__list_item_lower_alpha_paren] = STATE(749), - [sym__list_lower_alpha_parens] = STATE(129), - [sym__list_item_lower_alpha_parens] = STATE(753), - [sym__list_upper_alpha_period] = STATE(129), - [sym__list_item_upper_alpha_period] = STATE(761), - [sym__list_upper_alpha_paren] = STATE(129), - [sym__list_item_upper_alpha_paren] = STATE(764), - [sym__list_upper_alpha_parens] = STATE(129), - [sym__list_item_upper_alpha_parens] = STATE(765), - [sym__list_lower_roman_period] = STATE(129), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(129), - [sym__list_item_lower_roman_paren] = STATE(769), - [sym__list_lower_roman_parens] = STATE(129), - [sym__list_item_lower_roman_parens] = STATE(786), - [sym__list_upper_roman_period] = STATE(129), - [sym__list_item_upper_roman_period] = STATE(791), - [sym__list_upper_roman_paren] = STATE(129), - [sym__list_item_upper_roman_paren] = STATE(793), - [sym__list_upper_roman_parens] = STATE(129), - [sym__list_item_upper_roman_parens] = STATE(799), - [sym_table] = STATE(123), + [sym__block_with_section] = STATE(124), + [sym__block_element] = STATE(124), + [sym_section] = STATE(124), + [sym_heading] = STATE(10), + [sym_list] = STATE(124), + [sym__list_dash] = STATE(131), + [sym__list_item_dash] = STATE(599), + [sym__list_plus] = STATE(131), + [sym__list_item_plus] = STATE(606), + [sym__list_star] = STATE(131), + [sym__list_item_star] = STATE(664), + [sym__list_task] = STATE(131), + [sym__list_item_task] = STATE(673), + [sym_list_marker_task] = STATE(44), + [sym__list_definition] = STATE(131), + [sym__list_item_definition] = STATE(792), + [sym__list_decimal_period] = STATE(131), + [sym__list_item_decimal_period] = STATE(691), + [sym__list_decimal_paren] = STATE(131), + [sym__list_item_decimal_paren] = STATE(692), + [sym__list_decimal_parens] = STATE(131), + [sym__list_item_decimal_parens] = STATE(710), + [sym__list_lower_alpha_period] = STATE(131), + [sym__list_item_lower_alpha_period] = STATE(714), + [sym__list_lower_alpha_paren] = STATE(131), + [sym__list_item_lower_alpha_paren] = STATE(717), + [sym__list_lower_alpha_parens] = STATE(131), + [sym__list_item_lower_alpha_parens] = STATE(721), + [sym__list_upper_alpha_period] = STATE(131), + [sym__list_item_upper_alpha_period] = STATE(726), + [sym__list_upper_alpha_paren] = STATE(131), + [sym__list_item_upper_alpha_paren] = STATE(747), + [sym__list_upper_alpha_parens] = STATE(131), + [sym__list_item_upper_alpha_parens] = STATE(751), + [sym__list_lower_roman_period] = STATE(131), + [sym__list_item_lower_roman_period] = STATE(753), + [sym__list_lower_roman_paren] = STATE(131), + [sym__list_item_lower_roman_paren] = STATE(755), + [sym__list_lower_roman_parens] = STATE(131), + [sym__list_item_lower_roman_parens] = STATE(760), + [sym__list_upper_roman_period] = STATE(131), + [sym__list_item_upper_roman_period] = STATE(761), + [sym__list_upper_roman_paren] = STATE(131), + [sym__list_item_upper_roman_paren] = STATE(766), + [sym__list_upper_roman_parens] = STATE(131), + [sym__list_item_upper_roman_parens] = STATE(784), + [sym_table] = STATE(124), [sym__table_row] = STATE(67), [sym_table_header] = STATE(67), [sym_table_separator] = STATE(67), [sym_table_row] = STATE(67), - [sym_footnote] = STATE(123), + [sym_footnote] = STATE(124), [sym_footnote_marker_begin] = STATE(1139), - [sym_div] = STATE(123), + [sym_div] = STATE(124), [sym__div_marker_begin] = STATE(1055), - [sym_code_block] = STATE(123), - [sym_raw_block] = STATE(123), - [sym_thematic_break] = STATE(123), - [sym_block_quote] = STATE(123), + [sym_code_block] = STATE(124), + [sym_raw_block] = STATE(124), + [sym_thematic_break] = STATE(124), + [sym_block_quote] = STATE(124), [sym__block_quote_prefix] = STATE(223), - [sym_link_reference_definition] = STATE(123), - [sym_block_attribute] = STATE(123), - [sym__paragraph] = STATE(123), - [sym__paragraph_content] = STATE(766), - [sym__paragraph_inline_content] = STATE(824), - [sym__inline] = STATE(654), - [sym__symbol_fallback] = STATE(273), - [aux_sym_document_repeat1] = STATE(8), - [aux_sym__list_dash_repeat1] = STATE(323), - [aux_sym__list_plus_repeat1] = STATE(324), - [aux_sym__list_star_repeat1] = STATE(325), - [aux_sym__list_task_repeat1] = STATE(299), - [aux_sym__list_definition_repeat1] = STATE(491), - [aux_sym__list_decimal_period_repeat1] = STATE(492), - [aux_sym__list_decimal_paren_repeat1] = STATE(493), - [aux_sym__list_decimal_parens_repeat1] = STATE(494), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(495), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(496), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(497), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(498), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(499), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(500), - [aux_sym__list_lower_roman_period_repeat1] = STATE(501), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(502), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(503), - [aux_sym__list_upper_roman_period_repeat1] = STATE(504), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(505), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(506), + [sym_link_reference_definition] = STATE(124), + [sym_block_attribute] = STATE(124), + [sym__paragraph] = STATE(124), + [sym__paragraph_content] = STATE(765), + [sym__paragraph_inline_content] = STATE(814), + [sym__inline] = STATE(657), + [sym__symbol_fallback] = STATE(271), + [aux_sym_document_repeat1] = STATE(9), + [aux_sym__list_dash_repeat1] = STATE(326), + [aux_sym__list_plus_repeat1] = STATE(327), + [aux_sym__list_star_repeat1] = STATE(328), + [aux_sym__list_task_repeat1] = STATE(289), + [aux_sym__list_definition_repeat1] = STATE(489), + [aux_sym__list_decimal_period_repeat1] = STATE(490), + [aux_sym__list_decimal_paren_repeat1] = STATE(491), + [aux_sym__list_decimal_parens_repeat1] = STATE(492), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(493), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(494), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(495), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(496), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(497), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(498), + [aux_sym__list_lower_roman_period_repeat1] = STATE(499), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(500), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(501), + [aux_sym__list_upper_roman_period_repeat1] = STATE(502), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(503), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(504), [aux_sym_table_repeat1] = STATE(67), - [aux_sym__block_quote_prefix_repeat1] = STATE(230), - [aux_sym__inline_repeat1] = STATE(273), - [anon_sym_LBRACK] = ACTIONS(77), + [aux_sym__block_quote_prefix_repeat1] = STATE(231), + [aux_sym__inline_repeat1] = STATE(271), + [anon_sym_LBRACK] = ACTIONS(75), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_DOT] = ACTIONS(9), [aux_sym_identifier_token1] = ACTIONS(9), @@ -5377,10 +5393,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(9), [anon_sym_PERCENT] = ACTIONS(9), [sym__block_close] = ACTIONS(99), - [sym__newline] = ACTIONS(81), + [sym__newline] = ACTIONS(79), [sym__heading_begin] = ACTIONS(15), [sym__div_begin] = ACTIONS(17), - [sym__code_block_begin] = ACTIONS(83), + [sym__code_block_begin] = ACTIONS(81), [sym_list_marker_dash] = ACTIONS(21), [sym_list_marker_star] = ACTIONS(23), [sym_list_marker_plus] = ACTIONS(25), @@ -5401,107 +5417,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(55), [sym_list_marker_lower_roman_parens] = ACTIONS(57), [sym_list_marker_upper_roman_parens] = ACTIONS(59), - [sym__block_quote_begin] = ACTIONS(85), + [sym__block_quote_begin] = ACTIONS(83), [sym__block_quote_continuation] = ACTIONS(63), - [sym__thematic_break_dash] = ACTIONS(87), - [sym__thematic_break_star] = ACTIONS(87), - [sym__table_header_begin] = ACTIONS(89), - [sym__table_separator_begin] = ACTIONS(91), - [sym__table_row_begin] = ACTIONS(93), - [sym__block_attribute_begin] = ACTIONS(95), + [sym__thematic_break_dash] = ACTIONS(85), + [sym__thematic_break_star] = ACTIONS(85), + [sym__table_header_begin] = ACTIONS(87), + [sym__table_separator_begin] = ACTIONS(89), + [sym__table_row_begin] = ACTIONS(91), + [sym__block_attribute_begin] = ACTIONS(93), }, [7] = { - [sym__block_with_section] = STATE(125), - [sym__block_element] = STATE(125), - [sym_section] = STATE(125), - [sym_heading] = STATE(4), - [sym_list] = STATE(125), - [sym__list_dash] = STATE(167), - [sym__list_item_dash] = STATE(595), - [sym__list_plus] = STATE(167), - [sym__list_item_plus] = STATE(657), - [sym__list_star] = STATE(167), - [sym__list_item_star] = STATE(570), - [sym__list_task] = STATE(167), - [sym__list_item_task] = STATE(586), - [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(167), - [sym__list_item_definition] = STATE(694), - [sym__list_decimal_period] = STATE(167), - [sym__list_item_decimal_period] = STATE(714), - [sym__list_decimal_paren] = STATE(167), - [sym__list_item_decimal_paren] = STATE(719), - [sym__list_decimal_parens] = STATE(167), - [sym__list_item_decimal_parens] = STATE(746), - [sym__list_lower_alpha_period] = STATE(167), - [sym__list_item_lower_alpha_period] = STATE(748), - [sym__list_lower_alpha_paren] = STATE(167), - [sym__list_item_lower_alpha_paren] = STATE(749), - [sym__list_lower_alpha_parens] = STATE(167), - [sym__list_item_lower_alpha_parens] = STATE(753), - [sym__list_upper_alpha_period] = STATE(167), - [sym__list_item_upper_alpha_period] = STATE(761), - [sym__list_upper_alpha_paren] = STATE(167), - [sym__list_item_upper_alpha_paren] = STATE(764), - [sym__list_upper_alpha_parens] = STATE(167), - [sym__list_item_upper_alpha_parens] = STATE(765), - [sym__list_lower_roman_period] = STATE(167), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(167), - [sym__list_item_lower_roman_paren] = STATE(769), - [sym__list_lower_roman_parens] = STATE(167), - [sym__list_item_lower_roman_parens] = STATE(786), - [sym__list_upper_roman_period] = STATE(167), - [sym__list_item_upper_roman_period] = STATE(791), - [sym__list_upper_roman_paren] = STATE(167), - [sym__list_item_upper_roman_paren] = STATE(793), - [sym__list_upper_roman_parens] = STATE(167), - [sym__list_item_upper_roman_parens] = STATE(799), - [sym_table] = STATE(125), + [sym__block_with_section] = STATE(133), + [sym__block_element] = STATE(133), + [sym_section] = STATE(133), + [sym_heading] = STATE(2), + [sym_list] = STATE(133), + [sym__list_dash] = STATE(170), + [sym__list_item_dash] = STATE(599), + [sym__list_plus] = STATE(170), + [sym__list_item_plus] = STATE(606), + [sym__list_star] = STATE(170), + [sym__list_item_star] = STATE(664), + [sym__list_task] = STATE(170), + [sym__list_item_task] = STATE(673), + [sym_list_marker_task] = STATE(44), + [sym__list_definition] = STATE(170), + [sym__list_item_definition] = STATE(792), + [sym__list_decimal_period] = STATE(170), + [sym__list_item_decimal_period] = STATE(691), + [sym__list_decimal_paren] = STATE(170), + [sym__list_item_decimal_paren] = STATE(692), + [sym__list_decimal_parens] = STATE(170), + [sym__list_item_decimal_parens] = STATE(710), + [sym__list_lower_alpha_period] = STATE(170), + [sym__list_item_lower_alpha_period] = STATE(714), + [sym__list_lower_alpha_paren] = STATE(170), + [sym__list_item_lower_alpha_paren] = STATE(717), + [sym__list_lower_alpha_parens] = STATE(170), + [sym__list_item_lower_alpha_parens] = STATE(721), + [sym__list_upper_alpha_period] = STATE(170), + [sym__list_item_upper_alpha_period] = STATE(726), + [sym__list_upper_alpha_paren] = STATE(170), + [sym__list_item_upper_alpha_paren] = STATE(747), + [sym__list_upper_alpha_parens] = STATE(170), + [sym__list_item_upper_alpha_parens] = STATE(751), + [sym__list_lower_roman_period] = STATE(170), + [sym__list_item_lower_roman_period] = STATE(753), + [sym__list_lower_roman_paren] = STATE(170), + [sym__list_item_lower_roman_paren] = STATE(755), + [sym__list_lower_roman_parens] = STATE(170), + [sym__list_item_lower_roman_parens] = STATE(760), + [sym__list_upper_roman_period] = STATE(170), + [sym__list_item_upper_roman_period] = STATE(761), + [sym__list_upper_roman_paren] = STATE(170), + [sym__list_item_upper_roman_paren] = STATE(766), + [sym__list_upper_roman_parens] = STATE(170), + [sym__list_item_upper_roman_parens] = STATE(784), + [sym_table] = STATE(133), [sym__table_row] = STATE(66), [sym_table_header] = STATE(66), [sym_table_separator] = STATE(66), [sym_table_row] = STATE(66), - [sym_footnote] = STATE(125), - [sym_footnote_marker_begin] = STATE(932), - [sym_div] = STATE(125), - [sym__div_marker_begin] = STATE(954), - [sym_code_block] = STATE(125), - [sym_raw_block] = STATE(125), - [sym_thematic_break] = STATE(125), - [sym_block_quote] = STATE(125), - [sym__block_quote_prefix] = STATE(221), - [sym_link_reference_definition] = STATE(125), - [sym_block_attribute] = STATE(125), - [sym__paragraph] = STATE(125), - [sym__paragraph_content] = STATE(823), - [sym__paragraph_inline_content] = STATE(824), - [sym__inline] = STATE(654), - [sym__symbol_fallback] = STATE(273), + [sym_footnote] = STATE(133), + [sym_footnote_marker_begin] = STATE(900), + [sym_div] = STATE(133), + [sym__div_marker_begin] = STATE(902), + [sym_code_block] = STATE(133), + [sym_raw_block] = STATE(133), + [sym_thematic_break] = STATE(133), + [sym_block_quote] = STATE(133), + [sym__block_quote_prefix] = STATE(225), + [sym_link_reference_definition] = STATE(133), + [sym_block_attribute] = STATE(133), + [sym__paragraph] = STATE(133), + [sym__paragraph_content] = STATE(797), + [sym__paragraph_inline_content] = STATE(814), + [sym__inline] = STATE(657), + [sym__symbol_fallback] = STATE(271), [aux_sym_document_repeat1] = STATE(7), - [aux_sym__list_dash_repeat1] = STATE(351), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_star_repeat1] = STATE(354), - [aux_sym__list_task_repeat1] = STATE(303), - [aux_sym__list_definition_repeat1] = STATE(526), - [aux_sym__list_decimal_period_repeat1] = STATE(528), - [aux_sym__list_decimal_paren_repeat1] = STATE(531), - [aux_sym__list_decimal_parens_repeat1] = STATE(533), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(535), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(537), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(539), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(487), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(423), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(426), - [aux_sym__list_lower_roman_period_repeat1] = STATE(428), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(430), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(432), - [aux_sym__list_upper_roman_period_repeat1] = STATE(434), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(435), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(436), + [aux_sym__list_dash_repeat1] = STATE(348), + [aux_sym__list_plus_repeat1] = STATE(357), + [aux_sym__list_star_repeat1] = STATE(346), + [aux_sym__list_task_repeat1] = STATE(285), + [aux_sym__list_definition_repeat1] = STATE(523), + [aux_sym__list_decimal_period_repeat1] = STATE(525), + [aux_sym__list_decimal_paren_repeat1] = STATE(527), + [aux_sym__list_decimal_parens_repeat1] = STATE(529), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(531), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(533), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(535), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(537), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(426), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(486), + [aux_sym__list_lower_roman_period_repeat1] = STATE(436), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(428), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(430), + [aux_sym__list_upper_roman_period_repeat1] = STATE(432), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(434), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(435), [aux_sym_table_repeat1] = STATE(66), - [aux_sym__block_quote_prefix_repeat1] = STATE(230), - [aux_sym__inline_repeat1] = STATE(273), + [aux_sym__block_quote_prefix_repeat1] = STATE(231), + [aux_sym__inline_repeat1] = STATE(271), [ts_builtin_sym_end] = ACTIONS(101), [anon_sym_LBRACK] = ACTIONS(103), [anon_sym_LBRACK_CARET] = ACTIONS(106), @@ -5544,98 +5560,231 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block_attribute_begin] = ACTIONS(202), }, [8] = { - [sym__block_with_section] = STATE(123), - [sym__block_element] = STATE(123), - [sym_section] = STATE(123), - [sym_heading] = STATE(9), - [sym_list] = STATE(123), - [sym__list_dash] = STATE(129), - [sym__list_item_dash] = STATE(595), - [sym__list_plus] = STATE(129), - [sym__list_item_plus] = STATE(657), - [sym__list_star] = STATE(129), - [sym__list_item_star] = STATE(570), - [sym__list_task] = STATE(129), - [sym__list_item_task] = STATE(586), - [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(129), - [sym__list_item_definition] = STATE(694), - [sym__list_decimal_period] = STATE(129), - [sym__list_item_decimal_period] = STATE(714), - [sym__list_decimal_paren] = STATE(129), - [sym__list_item_decimal_paren] = STATE(719), - [sym__list_decimal_parens] = STATE(129), - [sym__list_item_decimal_parens] = STATE(746), - [sym__list_lower_alpha_period] = STATE(129), - [sym__list_item_lower_alpha_period] = STATE(748), - [sym__list_lower_alpha_paren] = STATE(129), - [sym__list_item_lower_alpha_paren] = STATE(749), - [sym__list_lower_alpha_parens] = STATE(129), - [sym__list_item_lower_alpha_parens] = STATE(753), - [sym__list_upper_alpha_period] = STATE(129), - [sym__list_item_upper_alpha_period] = STATE(761), - [sym__list_upper_alpha_paren] = STATE(129), - [sym__list_item_upper_alpha_paren] = STATE(764), - [sym__list_upper_alpha_parens] = STATE(129), - [sym__list_item_upper_alpha_parens] = STATE(765), - [sym__list_lower_roman_period] = STATE(129), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(129), - [sym__list_item_lower_roman_paren] = STATE(769), - [sym__list_lower_roman_parens] = STATE(129), - [sym__list_item_lower_roman_parens] = STATE(786), - [sym__list_upper_roman_period] = STATE(129), - [sym__list_item_upper_roman_period] = STATE(791), - [sym__list_upper_roman_paren] = STATE(129), - [sym__list_item_upper_roman_paren] = STATE(793), - [sym__list_upper_roman_parens] = STATE(129), - [sym__list_item_upper_roman_parens] = STATE(799), - [sym_table] = STATE(123), + [sym__block_with_section] = STATE(124), + [sym__block_element] = STATE(124), + [sym_section] = STATE(124), + [sym_heading] = STATE(10), + [sym_list] = STATE(124), + [sym__list_dash] = STATE(131), + [sym__list_item_dash] = STATE(599), + [sym__list_plus] = STATE(131), + [sym__list_item_plus] = STATE(606), + [sym__list_star] = STATE(131), + [sym__list_item_star] = STATE(664), + [sym__list_task] = STATE(131), + [sym__list_item_task] = STATE(673), + [sym_list_marker_task] = STATE(44), + [sym__list_definition] = STATE(131), + [sym__list_item_definition] = STATE(792), + [sym__list_decimal_period] = STATE(131), + [sym__list_item_decimal_period] = STATE(691), + [sym__list_decimal_paren] = STATE(131), + [sym__list_item_decimal_paren] = STATE(692), + [sym__list_decimal_parens] = STATE(131), + [sym__list_item_decimal_parens] = STATE(710), + [sym__list_lower_alpha_period] = STATE(131), + [sym__list_item_lower_alpha_period] = STATE(714), + [sym__list_lower_alpha_paren] = STATE(131), + [sym__list_item_lower_alpha_paren] = STATE(717), + [sym__list_lower_alpha_parens] = STATE(131), + [sym__list_item_lower_alpha_parens] = STATE(721), + [sym__list_upper_alpha_period] = STATE(131), + [sym__list_item_upper_alpha_period] = STATE(726), + [sym__list_upper_alpha_paren] = STATE(131), + [sym__list_item_upper_alpha_paren] = STATE(747), + [sym__list_upper_alpha_parens] = STATE(131), + [sym__list_item_upper_alpha_parens] = STATE(751), + [sym__list_lower_roman_period] = STATE(131), + [sym__list_item_lower_roman_period] = STATE(753), + [sym__list_lower_roman_paren] = STATE(131), + [sym__list_item_lower_roman_paren] = STATE(755), + [sym__list_lower_roman_parens] = STATE(131), + [sym__list_item_lower_roman_parens] = STATE(760), + [sym__list_upper_roman_period] = STATE(131), + [sym__list_item_upper_roman_period] = STATE(761), + [sym__list_upper_roman_paren] = STATE(131), + [sym__list_item_upper_roman_paren] = STATE(766), + [sym__list_upper_roman_parens] = STATE(131), + [sym__list_item_upper_roman_parens] = STATE(784), + [sym_table] = STATE(124), [sym__table_row] = STATE(67), [sym_table_header] = STATE(67), [sym_table_separator] = STATE(67), [sym_table_row] = STATE(67), - [sym_footnote] = STATE(123), + [sym_footnote] = STATE(124), [sym_footnote_marker_begin] = STATE(1139), - [sym_div] = STATE(123), + [sym_div] = STATE(124), [sym__div_marker_begin] = STATE(1055), - [sym_code_block] = STATE(123), - [sym_raw_block] = STATE(123), - [sym_thematic_break] = STATE(123), - [sym_block_quote] = STATE(123), + [sym_code_block] = STATE(124), + [sym_raw_block] = STATE(124), + [sym_thematic_break] = STATE(124), + [sym_block_quote] = STATE(124), [sym__block_quote_prefix] = STATE(223), - [sym_link_reference_definition] = STATE(123), - [sym_block_attribute] = STATE(123), - [sym__paragraph] = STATE(123), - [sym__paragraph_content] = STATE(766), - [sym__paragraph_inline_content] = STATE(824), - [sym__inline] = STATE(654), - [sym__symbol_fallback] = STATE(273), - [aux_sym_document_repeat1] = STATE(8), - [aux_sym__list_dash_repeat1] = STATE(323), - [aux_sym__list_plus_repeat1] = STATE(324), - [aux_sym__list_star_repeat1] = STATE(325), - [aux_sym__list_task_repeat1] = STATE(299), - [aux_sym__list_definition_repeat1] = STATE(491), - [aux_sym__list_decimal_period_repeat1] = STATE(492), - [aux_sym__list_decimal_paren_repeat1] = STATE(493), - [aux_sym__list_decimal_parens_repeat1] = STATE(494), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(495), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(496), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(497), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(498), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(499), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(500), - [aux_sym__list_lower_roman_period_repeat1] = STATE(501), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(502), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(503), - [aux_sym__list_upper_roman_period_repeat1] = STATE(504), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(505), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(506), + [sym_link_reference_definition] = STATE(124), + [sym_block_attribute] = STATE(124), + [sym__paragraph] = STATE(124), + [sym__paragraph_content] = STATE(765), + [sym__paragraph_inline_content] = STATE(814), + [sym__inline] = STATE(657), + [sym__symbol_fallback] = STATE(271), + [aux_sym_document_repeat1] = STATE(9), + [aux_sym__list_dash_repeat1] = STATE(326), + [aux_sym__list_plus_repeat1] = STATE(327), + [aux_sym__list_star_repeat1] = STATE(328), + [aux_sym__list_task_repeat1] = STATE(289), + [aux_sym__list_definition_repeat1] = STATE(489), + [aux_sym__list_decimal_period_repeat1] = STATE(490), + [aux_sym__list_decimal_paren_repeat1] = STATE(491), + [aux_sym__list_decimal_parens_repeat1] = STATE(492), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(493), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(494), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(495), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(496), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(497), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(498), + [aux_sym__list_lower_roman_period_repeat1] = STATE(499), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(500), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(501), + [aux_sym__list_upper_roman_period_repeat1] = STATE(502), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(503), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(504), + [aux_sym_table_repeat1] = STATE(67), + [aux_sym__block_quote_prefix_repeat1] = STATE(231), + [aux_sym__inline_repeat1] = STATE(271), + [anon_sym_LBRACK] = ACTIONS(75), + [anon_sym_LBRACK_CARET] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(9), + [aux_sym_identifier_token1] = ACTIONS(9), + [aux_sym__inline_token1] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(9), + [anon_sym_PERCENT] = ACTIONS(9), + [sym__block_close] = ACTIONS(205), + [sym__newline] = ACTIONS(79), + [sym__heading_begin] = ACTIONS(15), + [sym__div_begin] = ACTIONS(17), + [sym__code_block_begin] = ACTIONS(81), + [sym_list_marker_dash] = ACTIONS(21), + [sym_list_marker_star] = ACTIONS(23), + [sym_list_marker_plus] = ACTIONS(25), + [sym__list_marker_task_begin] = ACTIONS(27), + [sym_list_marker_definition] = ACTIONS(29), + [sym_list_marker_decimal_period] = ACTIONS(31), + [sym_list_marker_lower_alpha_period] = ACTIONS(33), + [sym_list_marker_upper_alpha_period] = ACTIONS(35), + [sym_list_marker_lower_roman_period] = ACTIONS(37), + [sym_list_marker_upper_roman_period] = ACTIONS(39), + [sym_list_marker_decimal_paren] = ACTIONS(41), + [sym_list_marker_lower_alpha_paren] = ACTIONS(43), + [sym_list_marker_upper_alpha_paren] = ACTIONS(45), + [sym_list_marker_lower_roman_paren] = ACTIONS(47), + [sym_list_marker_upper_roman_paren] = ACTIONS(49), + [sym_list_marker_decimal_parens] = ACTIONS(51), + [sym_list_marker_lower_alpha_parens] = ACTIONS(53), + [sym_list_marker_upper_alpha_parens] = ACTIONS(55), + [sym_list_marker_lower_roman_parens] = ACTIONS(57), + [sym_list_marker_upper_roman_parens] = ACTIONS(59), + [sym__block_quote_begin] = ACTIONS(83), + [sym__block_quote_continuation] = ACTIONS(63), + [sym__thematic_break_dash] = ACTIONS(85), + [sym__thematic_break_star] = ACTIONS(85), + [sym__table_header_begin] = ACTIONS(87), + [sym__table_separator_begin] = ACTIONS(89), + [sym__table_row_begin] = ACTIONS(91), + [sym__block_attribute_begin] = ACTIONS(93), + }, + [9] = { + [sym__block_with_section] = STATE(124), + [sym__block_element] = STATE(124), + [sym_section] = STATE(124), + [sym_heading] = STATE(10), + [sym_list] = STATE(124), + [sym__list_dash] = STATE(131), + [sym__list_item_dash] = STATE(599), + [sym__list_plus] = STATE(131), + [sym__list_item_plus] = STATE(606), + [sym__list_star] = STATE(131), + [sym__list_item_star] = STATE(664), + [sym__list_task] = STATE(131), + [sym__list_item_task] = STATE(673), + [sym_list_marker_task] = STATE(44), + [sym__list_definition] = STATE(131), + [sym__list_item_definition] = STATE(792), + [sym__list_decimal_period] = STATE(131), + [sym__list_item_decimal_period] = STATE(691), + [sym__list_decimal_paren] = STATE(131), + [sym__list_item_decimal_paren] = STATE(692), + [sym__list_decimal_parens] = STATE(131), + [sym__list_item_decimal_parens] = STATE(710), + [sym__list_lower_alpha_period] = STATE(131), + [sym__list_item_lower_alpha_period] = STATE(714), + [sym__list_lower_alpha_paren] = STATE(131), + [sym__list_item_lower_alpha_paren] = STATE(717), + [sym__list_lower_alpha_parens] = STATE(131), + [sym__list_item_lower_alpha_parens] = STATE(721), + [sym__list_upper_alpha_period] = STATE(131), + [sym__list_item_upper_alpha_period] = STATE(726), + [sym__list_upper_alpha_paren] = STATE(131), + [sym__list_item_upper_alpha_paren] = STATE(747), + [sym__list_upper_alpha_parens] = STATE(131), + [sym__list_item_upper_alpha_parens] = STATE(751), + [sym__list_lower_roman_period] = STATE(131), + [sym__list_item_lower_roman_period] = STATE(753), + [sym__list_lower_roman_paren] = STATE(131), + [sym__list_item_lower_roman_paren] = STATE(755), + [sym__list_lower_roman_parens] = STATE(131), + [sym__list_item_lower_roman_parens] = STATE(760), + [sym__list_upper_roman_period] = STATE(131), + [sym__list_item_upper_roman_period] = STATE(761), + [sym__list_upper_roman_paren] = STATE(131), + [sym__list_item_upper_roman_paren] = STATE(766), + [sym__list_upper_roman_parens] = STATE(131), + [sym__list_item_upper_roman_parens] = STATE(784), + [sym_table] = STATE(124), + [sym__table_row] = STATE(67), + [sym_table_header] = STATE(67), + [sym_table_separator] = STATE(67), + [sym_table_row] = STATE(67), + [sym_footnote] = STATE(124), + [sym_footnote_marker_begin] = STATE(1139), + [sym_div] = STATE(124), + [sym__div_marker_begin] = STATE(1055), + [sym_code_block] = STATE(124), + [sym_raw_block] = STATE(124), + [sym_thematic_break] = STATE(124), + [sym_block_quote] = STATE(124), + [sym__block_quote_prefix] = STATE(223), + [sym_link_reference_definition] = STATE(124), + [sym_block_attribute] = STATE(124), + [sym__paragraph] = STATE(124), + [sym__paragraph_content] = STATE(765), + [sym__paragraph_inline_content] = STATE(814), + [sym__inline] = STATE(657), + [sym__symbol_fallback] = STATE(271), + [aux_sym_document_repeat1] = STATE(9), + [aux_sym__list_dash_repeat1] = STATE(326), + [aux_sym__list_plus_repeat1] = STATE(327), + [aux_sym__list_star_repeat1] = STATE(328), + [aux_sym__list_task_repeat1] = STATE(289), + [aux_sym__list_definition_repeat1] = STATE(489), + [aux_sym__list_decimal_period_repeat1] = STATE(490), + [aux_sym__list_decimal_paren_repeat1] = STATE(491), + [aux_sym__list_decimal_parens_repeat1] = STATE(492), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(493), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(494), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(495), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(496), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(497), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(498), + [aux_sym__list_lower_roman_period_repeat1] = STATE(499), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(500), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(501), + [aux_sym__list_upper_roman_period_repeat1] = STATE(502), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(503), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(504), [aux_sym_table_repeat1] = STATE(67), - [aux_sym__block_quote_prefix_repeat1] = STATE(230), - [aux_sym__inline_repeat1] = STATE(273), - [anon_sym_LBRACK] = ACTIONS(205), + [aux_sym__block_quote_prefix_repeat1] = STATE(231), + [aux_sym__inline_repeat1] = STATE(271), + [anon_sym_LBRACK] = ACTIONS(207), [anon_sym_LBRACK_CARET] = ACTIONS(106), [anon_sym_DOT] = ACTIONS(109), [aux_sym_identifier_token1] = ACTIONS(109), @@ -5643,10 +5792,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(109), [anon_sym_PERCENT] = ACTIONS(109), [sym__block_close] = ACTIONS(101), - [sym__newline] = ACTIONS(208), + [sym__newline] = ACTIONS(210), [sym__heading_begin] = ACTIONS(115), [sym__div_begin] = ACTIONS(118), - [sym__code_block_begin] = ACTIONS(211), + [sym__code_block_begin] = ACTIONS(213), [sym_list_marker_dash] = ACTIONS(124), [sym_list_marker_star] = ACTIONS(127), [sym_list_marker_plus] = ACTIONS(130), @@ -5667,241 +5816,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(175), [sym_list_marker_lower_roman_parens] = ACTIONS(178), [sym_list_marker_upper_roman_parens] = ACTIONS(181), - [sym__block_quote_begin] = ACTIONS(214), + [sym__block_quote_begin] = ACTIONS(216), [sym__block_quote_continuation] = ACTIONS(187), - [sym__thematic_break_dash] = ACTIONS(217), - [sym__thematic_break_star] = ACTIONS(217), - [sym__table_header_begin] = ACTIONS(220), - [sym__table_separator_begin] = ACTIONS(223), - [sym__table_row_begin] = ACTIONS(226), - [sym__block_attribute_begin] = ACTIONS(229), - }, - [9] = { - [sym__block_with_section] = STATE(123), - [sym__block_element] = STATE(123), - [sym_section] = STATE(123), - [sym_heading] = STATE(9), - [sym_list] = STATE(123), - [sym__list_dash] = STATE(129), - [sym__list_item_dash] = STATE(595), - [sym__list_plus] = STATE(129), - [sym__list_item_plus] = STATE(657), - [sym__list_star] = STATE(129), - [sym__list_item_star] = STATE(570), - [sym__list_task] = STATE(129), - [sym__list_item_task] = STATE(586), - [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(129), - [sym__list_item_definition] = STATE(694), - [sym__list_decimal_period] = STATE(129), - [sym__list_item_decimal_period] = STATE(714), - [sym__list_decimal_paren] = STATE(129), - [sym__list_item_decimal_paren] = STATE(719), - [sym__list_decimal_parens] = STATE(129), - [sym__list_item_decimal_parens] = STATE(746), - [sym__list_lower_alpha_period] = STATE(129), - [sym__list_item_lower_alpha_period] = STATE(748), - [sym__list_lower_alpha_paren] = STATE(129), - [sym__list_item_lower_alpha_paren] = STATE(749), - [sym__list_lower_alpha_parens] = STATE(129), - [sym__list_item_lower_alpha_parens] = STATE(753), - [sym__list_upper_alpha_period] = STATE(129), - [sym__list_item_upper_alpha_period] = STATE(761), - [sym__list_upper_alpha_paren] = STATE(129), - [sym__list_item_upper_alpha_paren] = STATE(764), - [sym__list_upper_alpha_parens] = STATE(129), - [sym__list_item_upper_alpha_parens] = STATE(765), - [sym__list_lower_roman_period] = STATE(129), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(129), - [sym__list_item_lower_roman_paren] = STATE(769), - [sym__list_lower_roman_parens] = STATE(129), - [sym__list_item_lower_roman_parens] = STATE(786), - [sym__list_upper_roman_period] = STATE(129), - [sym__list_item_upper_roman_period] = STATE(791), - [sym__list_upper_roman_paren] = STATE(129), - [sym__list_item_upper_roman_paren] = STATE(793), - [sym__list_upper_roman_parens] = STATE(129), - [sym__list_item_upper_roman_parens] = STATE(799), - [sym_table] = STATE(123), - [sym__table_row] = STATE(67), - [sym_table_header] = STATE(67), - [sym_table_separator] = STATE(67), - [sym_table_row] = STATE(67), - [sym_footnote] = STATE(123), - [sym_footnote_marker_begin] = STATE(1139), - [sym_div] = STATE(123), - [sym__div_marker_begin] = STATE(1055), - [sym_code_block] = STATE(123), - [sym_raw_block] = STATE(123), - [sym_thematic_break] = STATE(123), - [sym_block_quote] = STATE(123), - [sym__block_quote_prefix] = STATE(223), - [sym_link_reference_definition] = STATE(123), - [sym_block_attribute] = STATE(123), - [sym__paragraph] = STATE(123), - [sym__paragraph_content] = STATE(766), - [sym__paragraph_inline_content] = STATE(824), - [sym__inline] = STATE(654), - [sym__symbol_fallback] = STATE(273), - [aux_sym_document_repeat1] = STATE(10), - [aux_sym__list_dash_repeat1] = STATE(323), - [aux_sym__list_plus_repeat1] = STATE(324), - [aux_sym__list_star_repeat1] = STATE(325), - [aux_sym__list_task_repeat1] = STATE(299), - [aux_sym__list_definition_repeat1] = STATE(491), - [aux_sym__list_decimal_period_repeat1] = STATE(492), - [aux_sym__list_decimal_paren_repeat1] = STATE(493), - [aux_sym__list_decimal_parens_repeat1] = STATE(494), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(495), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(496), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(497), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(498), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(499), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(500), - [aux_sym__list_lower_roman_period_repeat1] = STATE(501), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(502), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(503), - [aux_sym__list_upper_roman_period_repeat1] = STATE(504), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(505), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(506), - [aux_sym_table_repeat1] = STATE(67), - [aux_sym__block_quote_prefix_repeat1] = STATE(230), - [aux_sym__inline_repeat1] = STATE(273), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_LBRACK_CARET] = ACTIONS(7), - [anon_sym_DOT] = ACTIONS(9), - [aux_sym_identifier_token1] = ACTIONS(9), - [aux_sym__inline_token1] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_PERCENT] = ACTIONS(9), - [sym__block_close] = ACTIONS(232), - [sym__newline] = ACTIONS(81), - [sym__heading_begin] = ACTIONS(15), - [sym__div_begin] = ACTIONS(17), - [sym__code_block_begin] = ACTIONS(83), - [sym_list_marker_dash] = ACTIONS(21), - [sym_list_marker_star] = ACTIONS(23), - [sym_list_marker_plus] = ACTIONS(25), - [sym__list_marker_task_begin] = ACTIONS(27), - [sym_list_marker_definition] = ACTIONS(29), - [sym_list_marker_decimal_period] = ACTIONS(31), - [sym_list_marker_lower_alpha_period] = ACTIONS(33), - [sym_list_marker_upper_alpha_period] = ACTIONS(35), - [sym_list_marker_lower_roman_period] = ACTIONS(37), - [sym_list_marker_upper_roman_period] = ACTIONS(39), - [sym_list_marker_decimal_paren] = ACTIONS(41), - [sym_list_marker_lower_alpha_paren] = ACTIONS(43), - [sym_list_marker_upper_alpha_paren] = ACTIONS(45), - [sym_list_marker_lower_roman_paren] = ACTIONS(47), - [sym_list_marker_upper_roman_paren] = ACTIONS(49), - [sym_list_marker_decimal_parens] = ACTIONS(51), - [sym_list_marker_lower_alpha_parens] = ACTIONS(53), - [sym_list_marker_upper_alpha_parens] = ACTIONS(55), - [sym_list_marker_lower_roman_parens] = ACTIONS(57), - [sym_list_marker_upper_roman_parens] = ACTIONS(59), - [sym__block_quote_begin] = ACTIONS(85), - [sym__block_quote_continuation] = ACTIONS(63), - [sym__thematic_break_dash] = ACTIONS(87), - [sym__thematic_break_star] = ACTIONS(87), - [sym__table_header_begin] = ACTIONS(89), - [sym__table_separator_begin] = ACTIONS(91), - [sym__table_row_begin] = ACTIONS(93), - [sym__block_attribute_begin] = ACTIONS(95), + [sym__thematic_break_dash] = ACTIONS(219), + [sym__thematic_break_star] = ACTIONS(219), + [sym__table_header_begin] = ACTIONS(222), + [sym__table_separator_begin] = ACTIONS(225), + [sym__table_row_begin] = ACTIONS(228), + [sym__block_attribute_begin] = ACTIONS(231), }, [10] = { - [sym__block_with_section] = STATE(123), - [sym__block_element] = STATE(123), - [sym_section] = STATE(123), - [sym_heading] = STATE(9), - [sym_list] = STATE(123), - [sym__list_dash] = STATE(129), - [sym__list_item_dash] = STATE(595), - [sym__list_plus] = STATE(129), - [sym__list_item_plus] = STATE(657), - [sym__list_star] = STATE(129), - [sym__list_item_star] = STATE(570), - [sym__list_task] = STATE(129), - [sym__list_item_task] = STATE(586), - [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(129), - [sym__list_item_definition] = STATE(694), - [sym__list_decimal_period] = STATE(129), - [sym__list_item_decimal_period] = STATE(714), - [sym__list_decimal_paren] = STATE(129), - [sym__list_item_decimal_paren] = STATE(719), - [sym__list_decimal_parens] = STATE(129), - [sym__list_item_decimal_parens] = STATE(746), - [sym__list_lower_alpha_period] = STATE(129), - [sym__list_item_lower_alpha_period] = STATE(748), - [sym__list_lower_alpha_paren] = STATE(129), - [sym__list_item_lower_alpha_paren] = STATE(749), - [sym__list_lower_alpha_parens] = STATE(129), - [sym__list_item_lower_alpha_parens] = STATE(753), - [sym__list_upper_alpha_period] = STATE(129), - [sym__list_item_upper_alpha_period] = STATE(761), - [sym__list_upper_alpha_paren] = STATE(129), - [sym__list_item_upper_alpha_paren] = STATE(764), - [sym__list_upper_alpha_parens] = STATE(129), - [sym__list_item_upper_alpha_parens] = STATE(765), - [sym__list_lower_roman_period] = STATE(129), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(129), - [sym__list_item_lower_roman_paren] = STATE(769), - [sym__list_lower_roman_parens] = STATE(129), - [sym__list_item_lower_roman_parens] = STATE(786), - [sym__list_upper_roman_period] = STATE(129), - [sym__list_item_upper_roman_period] = STATE(791), - [sym__list_upper_roman_paren] = STATE(129), - [sym__list_item_upper_roman_paren] = STATE(793), - [sym__list_upper_roman_parens] = STATE(129), - [sym__list_item_upper_roman_parens] = STATE(799), - [sym_table] = STATE(123), + [sym__block_with_section] = STATE(124), + [sym__block_element] = STATE(124), + [sym_section] = STATE(124), + [sym_heading] = STATE(10), + [sym_list] = STATE(124), + [sym__list_dash] = STATE(131), + [sym__list_item_dash] = STATE(599), + [sym__list_plus] = STATE(131), + [sym__list_item_plus] = STATE(606), + [sym__list_star] = STATE(131), + [sym__list_item_star] = STATE(664), + [sym__list_task] = STATE(131), + [sym__list_item_task] = STATE(673), + [sym_list_marker_task] = STATE(44), + [sym__list_definition] = STATE(131), + [sym__list_item_definition] = STATE(792), + [sym__list_decimal_period] = STATE(131), + [sym__list_item_decimal_period] = STATE(691), + [sym__list_decimal_paren] = STATE(131), + [sym__list_item_decimal_paren] = STATE(692), + [sym__list_decimal_parens] = STATE(131), + [sym__list_item_decimal_parens] = STATE(710), + [sym__list_lower_alpha_period] = STATE(131), + [sym__list_item_lower_alpha_period] = STATE(714), + [sym__list_lower_alpha_paren] = STATE(131), + [sym__list_item_lower_alpha_paren] = STATE(717), + [sym__list_lower_alpha_parens] = STATE(131), + [sym__list_item_lower_alpha_parens] = STATE(721), + [sym__list_upper_alpha_period] = STATE(131), + [sym__list_item_upper_alpha_period] = STATE(726), + [sym__list_upper_alpha_paren] = STATE(131), + [sym__list_item_upper_alpha_paren] = STATE(747), + [sym__list_upper_alpha_parens] = STATE(131), + [sym__list_item_upper_alpha_parens] = STATE(751), + [sym__list_lower_roman_period] = STATE(131), + [sym__list_item_lower_roman_period] = STATE(753), + [sym__list_lower_roman_paren] = STATE(131), + [sym__list_item_lower_roman_paren] = STATE(755), + [sym__list_lower_roman_parens] = STATE(131), + [sym__list_item_lower_roman_parens] = STATE(760), + [sym__list_upper_roman_period] = STATE(131), + [sym__list_item_upper_roman_period] = STATE(761), + [sym__list_upper_roman_paren] = STATE(131), + [sym__list_item_upper_roman_paren] = STATE(766), + [sym__list_upper_roman_parens] = STATE(131), + [sym__list_item_upper_roman_parens] = STATE(784), + [sym_table] = STATE(124), [sym__table_row] = STATE(67), [sym_table_header] = STATE(67), [sym_table_separator] = STATE(67), [sym_table_row] = STATE(67), - [sym_footnote] = STATE(123), + [sym_footnote] = STATE(124), [sym_footnote_marker_begin] = STATE(1139), - [sym_div] = STATE(123), + [sym_div] = STATE(124), [sym__div_marker_begin] = STATE(1055), - [sym_code_block] = STATE(123), - [sym_raw_block] = STATE(123), - [sym_thematic_break] = STATE(123), - [sym_block_quote] = STATE(123), + [sym_code_block] = STATE(124), + [sym_raw_block] = STATE(124), + [sym_thematic_break] = STATE(124), + [sym_block_quote] = STATE(124), [sym__block_quote_prefix] = STATE(223), - [sym_link_reference_definition] = STATE(123), - [sym_block_attribute] = STATE(123), - [sym__paragraph] = STATE(123), - [sym__paragraph_content] = STATE(766), - [sym__paragraph_inline_content] = STATE(824), - [sym__inline] = STATE(654), - [sym__symbol_fallback] = STATE(273), + [sym_link_reference_definition] = STATE(124), + [sym_block_attribute] = STATE(124), + [sym__paragraph] = STATE(124), + [sym__paragraph_content] = STATE(765), + [sym__paragraph_inline_content] = STATE(814), + [sym__inline] = STATE(657), + [sym__symbol_fallback] = STATE(271), [aux_sym_document_repeat1] = STATE(8), - [aux_sym__list_dash_repeat1] = STATE(323), - [aux_sym__list_plus_repeat1] = STATE(324), - [aux_sym__list_star_repeat1] = STATE(325), - [aux_sym__list_task_repeat1] = STATE(299), - [aux_sym__list_definition_repeat1] = STATE(491), - [aux_sym__list_decimal_period_repeat1] = STATE(492), - [aux_sym__list_decimal_paren_repeat1] = STATE(493), - [aux_sym__list_decimal_parens_repeat1] = STATE(494), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(495), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(496), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(497), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(498), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(499), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(500), - [aux_sym__list_lower_roman_period_repeat1] = STATE(501), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(502), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(503), - [aux_sym__list_upper_roman_period_repeat1] = STATE(504), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(505), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(506), + [aux_sym__list_dash_repeat1] = STATE(326), + [aux_sym__list_plus_repeat1] = STATE(327), + [aux_sym__list_star_repeat1] = STATE(328), + [aux_sym__list_task_repeat1] = STATE(289), + [aux_sym__list_definition_repeat1] = STATE(489), + [aux_sym__list_decimal_period_repeat1] = STATE(490), + [aux_sym__list_decimal_paren_repeat1] = STATE(491), + [aux_sym__list_decimal_parens_repeat1] = STATE(492), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(493), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(494), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(495), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(496), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(497), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(498), + [aux_sym__list_lower_roman_period_repeat1] = STATE(499), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(500), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(501), + [aux_sym__list_upper_roman_period_repeat1] = STATE(502), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(503), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(504), [aux_sym_table_repeat1] = STATE(67), - [aux_sym__block_quote_prefix_repeat1] = STATE(230), - [aux_sym__inline_repeat1] = STATE(273), - [anon_sym_LBRACK] = ACTIONS(77), + [aux_sym__block_quote_prefix_repeat1] = STATE(231), + [aux_sym__inline_repeat1] = STATE(271), + [anon_sym_LBRACK] = ACTIONS(75), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_DOT] = ACTIONS(9), [aux_sym_identifier_token1] = ACTIONS(9), @@ -5909,10 +5925,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(9), [anon_sym_PERCENT] = ACTIONS(9), [sym__block_close] = ACTIONS(234), - [sym__newline] = ACTIONS(81), + [sym__newline] = ACTIONS(79), [sym__heading_begin] = ACTIONS(15), [sym__div_begin] = ACTIONS(17), - [sym__code_block_begin] = ACTIONS(83), + [sym__code_block_begin] = ACTIONS(81), [sym_list_marker_dash] = ACTIONS(21), [sym_list_marker_star] = ACTIONS(23), [sym_list_marker_plus] = ACTIONS(25), @@ -5933,107 +5949,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(55), [sym_list_marker_lower_roman_parens] = ACTIONS(57), [sym_list_marker_upper_roman_parens] = ACTIONS(59), - [sym__block_quote_begin] = ACTIONS(85), + [sym__block_quote_begin] = ACTIONS(83), [sym__block_quote_continuation] = ACTIONS(63), - [sym__thematic_break_dash] = ACTIONS(87), - [sym__thematic_break_star] = ACTIONS(87), - [sym__table_header_begin] = ACTIONS(89), - [sym__table_separator_begin] = ACTIONS(91), - [sym__table_row_begin] = ACTIONS(93), - [sym__block_attribute_begin] = ACTIONS(95), + [sym__thematic_break_dash] = ACTIONS(85), + [sym__thematic_break_star] = ACTIONS(85), + [sym__table_header_begin] = ACTIONS(87), + [sym__table_separator_begin] = ACTIONS(89), + [sym__table_row_begin] = ACTIONS(91), + [sym__block_attribute_begin] = ACTIONS(93), }, [11] = { - [sym__block_with_heading] = STATE(168), - [sym__block_element] = STATE(168), - [sym_heading] = STATE(168), - [sym_list] = STATE(168), - [sym__list_dash] = STATE(129), - [sym__list_item_dash] = STATE(595), - [sym__list_plus] = STATE(129), - [sym__list_item_plus] = STATE(657), - [sym__list_star] = STATE(129), - [sym__list_item_star] = STATE(570), - [sym__list_task] = STATE(129), - [sym__list_item_task] = STATE(586), - [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(129), - [sym__list_item_definition] = STATE(694), - [sym__list_decimal_period] = STATE(129), - [sym__list_item_decimal_period] = STATE(714), - [sym__list_decimal_paren] = STATE(129), - [sym__list_item_decimal_paren] = STATE(719), - [sym__list_decimal_parens] = STATE(129), - [sym__list_item_decimal_parens] = STATE(746), - [sym__list_lower_alpha_period] = STATE(129), - [sym__list_item_lower_alpha_period] = STATE(748), - [sym__list_lower_alpha_paren] = STATE(129), - [sym__list_item_lower_alpha_paren] = STATE(749), - [sym__list_lower_alpha_parens] = STATE(129), - [sym__list_item_lower_alpha_parens] = STATE(753), - [sym__list_upper_alpha_period] = STATE(129), - [sym__list_item_upper_alpha_period] = STATE(761), - [sym__list_upper_alpha_paren] = STATE(129), - [sym__list_item_upper_alpha_paren] = STATE(764), - [sym__list_upper_alpha_parens] = STATE(129), - [sym__list_item_upper_alpha_parens] = STATE(765), - [sym__list_lower_roman_period] = STATE(129), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(129), - [sym__list_item_lower_roman_paren] = STATE(769), - [sym__list_lower_roman_parens] = STATE(129), - [sym__list_item_lower_roman_parens] = STATE(786), - [sym__list_upper_roman_period] = STATE(129), - [sym__list_item_upper_roman_period] = STATE(791), - [sym__list_upper_roman_paren] = STATE(129), - [sym__list_item_upper_roman_paren] = STATE(793), - [sym__list_upper_roman_parens] = STATE(129), - [sym__list_item_upper_roman_parens] = STATE(799), - [sym_table] = STATE(168), + [sym__block_with_heading] = STATE(175), + [sym__block_element] = STATE(175), + [sym_heading] = STATE(175), + [sym_list] = STATE(175), + [sym__list_dash] = STATE(131), + [sym__list_item_dash] = STATE(599), + [sym__list_plus] = STATE(131), + [sym__list_item_plus] = STATE(606), + [sym__list_star] = STATE(131), + [sym__list_item_star] = STATE(664), + [sym__list_task] = STATE(131), + [sym__list_item_task] = STATE(673), + [sym_list_marker_task] = STATE(44), + [sym__list_definition] = STATE(131), + [sym__list_item_definition] = STATE(792), + [sym__list_decimal_period] = STATE(131), + [sym__list_item_decimal_period] = STATE(691), + [sym__list_decimal_paren] = STATE(131), + [sym__list_item_decimal_paren] = STATE(692), + [sym__list_decimal_parens] = STATE(131), + [sym__list_item_decimal_parens] = STATE(710), + [sym__list_lower_alpha_period] = STATE(131), + [sym__list_item_lower_alpha_period] = STATE(714), + [sym__list_lower_alpha_paren] = STATE(131), + [sym__list_item_lower_alpha_paren] = STATE(717), + [sym__list_lower_alpha_parens] = STATE(131), + [sym__list_item_lower_alpha_parens] = STATE(721), + [sym__list_upper_alpha_period] = STATE(131), + [sym__list_item_upper_alpha_period] = STATE(726), + [sym__list_upper_alpha_paren] = STATE(131), + [sym__list_item_upper_alpha_paren] = STATE(747), + [sym__list_upper_alpha_parens] = STATE(131), + [sym__list_item_upper_alpha_parens] = STATE(751), + [sym__list_lower_roman_period] = STATE(131), + [sym__list_item_lower_roman_period] = STATE(753), + [sym__list_lower_roman_paren] = STATE(131), + [sym__list_item_lower_roman_paren] = STATE(755), + [sym__list_lower_roman_parens] = STATE(131), + [sym__list_item_lower_roman_parens] = STATE(760), + [sym__list_upper_roman_period] = STATE(131), + [sym__list_item_upper_roman_period] = STATE(761), + [sym__list_upper_roman_paren] = STATE(131), + [sym__list_item_upper_roman_paren] = STATE(766), + [sym__list_upper_roman_parens] = STATE(131), + [sym__list_item_upper_roman_parens] = STATE(784), + [sym_table] = STATE(175), [sym__table_row] = STATE(67), [sym_table_header] = STATE(67), [sym_table_separator] = STATE(67), [sym_table_row] = STATE(67), - [sym_footnote] = STATE(168), + [sym_footnote] = STATE(175), [sym_footnote_marker_begin] = STATE(1139), - [sym_div] = STATE(168), + [sym_div] = STATE(175), [sym__div_marker_begin] = STATE(1055), - [sym_code_block] = STATE(168), - [sym_raw_block] = STATE(168), - [sym_thematic_break] = STATE(168), - [sym_block_quote] = STATE(168), - [sym__block_quote_prefix] = STATE(211), - [sym_link_reference_definition] = STATE(168), - [sym_block_attribute] = STATE(168), - [sym__paragraph] = STATE(168), - [sym__paragraph_content] = STATE(766), - [sym__paragraph_inline_content] = STATE(824), - [sym__inline] = STATE(654), - [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(323), - [aux_sym__list_plus_repeat1] = STATE(324), - [aux_sym__list_star_repeat1] = STATE(325), - [aux_sym__list_task_repeat1] = STATE(299), - [aux_sym__list_definition_repeat1] = STATE(491), - [aux_sym__list_decimal_period_repeat1] = STATE(492), - [aux_sym__list_decimal_paren_repeat1] = STATE(493), - [aux_sym__list_decimal_parens_repeat1] = STATE(494), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(495), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(496), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(497), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(498), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(499), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(500), - [aux_sym__list_lower_roman_period_repeat1] = STATE(501), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(502), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(503), - [aux_sym__list_upper_roman_period_repeat1] = STATE(504), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(505), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(506), + [sym_code_block] = STATE(175), + [sym_raw_block] = STATE(175), + [sym_thematic_break] = STATE(175), + [sym_block_quote] = STATE(175), + [sym__block_quote_prefix] = STATE(219), + [sym_link_reference_definition] = STATE(175), + [sym_block_attribute] = STATE(175), + [sym__paragraph] = STATE(175), + [sym__paragraph_content] = STATE(765), + [sym__paragraph_inline_content] = STATE(814), + [sym__inline] = STATE(657), + [sym__symbol_fallback] = STATE(271), + [aux_sym__list_dash_repeat1] = STATE(326), + [aux_sym__list_plus_repeat1] = STATE(327), + [aux_sym__list_star_repeat1] = STATE(328), + [aux_sym__list_task_repeat1] = STATE(289), + [aux_sym__list_definition_repeat1] = STATE(489), + [aux_sym__list_decimal_period_repeat1] = STATE(490), + [aux_sym__list_decimal_paren_repeat1] = STATE(491), + [aux_sym__list_decimal_parens_repeat1] = STATE(492), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(493), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(494), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(495), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(496), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(497), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(498), + [aux_sym__list_lower_roman_period_repeat1] = STATE(499), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(500), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(501), + [aux_sym__list_upper_roman_period_repeat1] = STATE(502), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(503), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(504), [aux_sym_table_repeat1] = STATE(67), - [aux_sym_div_repeat1] = STATE(12), + [aux_sym_div_repeat1] = STATE(14), [aux_sym__block_quote_prefix_repeat1] = STATE(226), - [aux_sym__inline_repeat1] = STATE(273), - [anon_sym_LBRACK] = ACTIONS(77), + [aux_sym__inline_repeat1] = STATE(271), + [anon_sym_LBRACK] = ACTIONS(75), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_DOT] = ACTIONS(9), [aux_sym_identifier_token1] = ACTIONS(9), @@ -6044,7 +6060,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(238), [sym__heading_begin] = ACTIONS(15), [sym__div_begin] = ACTIONS(17), - [sym__code_block_begin] = ACTIONS(83), + [sym__code_block_begin] = ACTIONS(81), [sym_list_marker_dash] = ACTIONS(21), [sym_list_marker_star] = ACTIONS(23), [sym_list_marker_plus] = ACTIONS(25), @@ -6065,107 +6081,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(55), [sym_list_marker_lower_roman_parens] = ACTIONS(57), [sym_list_marker_upper_roman_parens] = ACTIONS(59), - [sym__block_quote_begin] = ACTIONS(85), + [sym__block_quote_begin] = ACTIONS(83), [sym__block_quote_continuation] = ACTIONS(240), - [sym__thematic_break_dash] = ACTIONS(87), - [sym__thematic_break_star] = ACTIONS(87), - [sym__table_header_begin] = ACTIONS(89), - [sym__table_separator_begin] = ACTIONS(91), - [sym__table_row_begin] = ACTIONS(93), - [sym__block_attribute_begin] = ACTIONS(95), + [sym__thematic_break_dash] = ACTIONS(85), + [sym__thematic_break_star] = ACTIONS(85), + [sym__table_header_begin] = ACTIONS(87), + [sym__table_separator_begin] = ACTIONS(89), + [sym__table_row_begin] = ACTIONS(91), + [sym__block_attribute_begin] = ACTIONS(93), }, [12] = { - [sym__block_with_heading] = STATE(168), - [sym__block_element] = STATE(168), - [sym_heading] = STATE(168), - [sym_list] = STATE(168), - [sym__list_dash] = STATE(129), - [sym__list_item_dash] = STATE(595), - [sym__list_plus] = STATE(129), - [sym__list_item_plus] = STATE(657), - [sym__list_star] = STATE(129), - [sym__list_item_star] = STATE(570), - [sym__list_task] = STATE(129), - [sym__list_item_task] = STATE(586), - [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(129), - [sym__list_item_definition] = STATE(694), - [sym__list_decimal_period] = STATE(129), - [sym__list_item_decimal_period] = STATE(714), - [sym__list_decimal_paren] = STATE(129), - [sym__list_item_decimal_paren] = STATE(719), - [sym__list_decimal_parens] = STATE(129), - [sym__list_item_decimal_parens] = STATE(746), - [sym__list_lower_alpha_period] = STATE(129), - [sym__list_item_lower_alpha_period] = STATE(748), - [sym__list_lower_alpha_paren] = STATE(129), - [sym__list_item_lower_alpha_paren] = STATE(749), - [sym__list_lower_alpha_parens] = STATE(129), - [sym__list_item_lower_alpha_parens] = STATE(753), - [sym__list_upper_alpha_period] = STATE(129), - [sym__list_item_upper_alpha_period] = STATE(761), - [sym__list_upper_alpha_paren] = STATE(129), - [sym__list_item_upper_alpha_paren] = STATE(764), - [sym__list_upper_alpha_parens] = STATE(129), - [sym__list_item_upper_alpha_parens] = STATE(765), - [sym__list_lower_roman_period] = STATE(129), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(129), - [sym__list_item_lower_roman_paren] = STATE(769), - [sym__list_lower_roman_parens] = STATE(129), - [sym__list_item_lower_roman_parens] = STATE(786), - [sym__list_upper_roman_period] = STATE(129), - [sym__list_item_upper_roman_period] = STATE(791), - [sym__list_upper_roman_paren] = STATE(129), - [sym__list_item_upper_roman_paren] = STATE(793), - [sym__list_upper_roman_parens] = STATE(129), - [sym__list_item_upper_roman_parens] = STATE(799), - [sym_table] = STATE(168), + [sym__block_with_heading] = STATE(175), + [sym__block_element] = STATE(175), + [sym_heading] = STATE(175), + [sym_list] = STATE(175), + [sym__list_dash] = STATE(131), + [sym__list_item_dash] = STATE(599), + [sym__list_plus] = STATE(131), + [sym__list_item_plus] = STATE(606), + [sym__list_star] = STATE(131), + [sym__list_item_star] = STATE(664), + [sym__list_task] = STATE(131), + [sym__list_item_task] = STATE(673), + [sym_list_marker_task] = STATE(44), + [sym__list_definition] = STATE(131), + [sym__list_item_definition] = STATE(792), + [sym__list_decimal_period] = STATE(131), + [sym__list_item_decimal_period] = STATE(691), + [sym__list_decimal_paren] = STATE(131), + [sym__list_item_decimal_paren] = STATE(692), + [sym__list_decimal_parens] = STATE(131), + [sym__list_item_decimal_parens] = STATE(710), + [sym__list_lower_alpha_period] = STATE(131), + [sym__list_item_lower_alpha_period] = STATE(714), + [sym__list_lower_alpha_paren] = STATE(131), + [sym__list_item_lower_alpha_paren] = STATE(717), + [sym__list_lower_alpha_parens] = STATE(131), + [sym__list_item_lower_alpha_parens] = STATE(721), + [sym__list_upper_alpha_period] = STATE(131), + [sym__list_item_upper_alpha_period] = STATE(726), + [sym__list_upper_alpha_paren] = STATE(131), + [sym__list_item_upper_alpha_paren] = STATE(747), + [sym__list_upper_alpha_parens] = STATE(131), + [sym__list_item_upper_alpha_parens] = STATE(751), + [sym__list_lower_roman_period] = STATE(131), + [sym__list_item_lower_roman_period] = STATE(753), + [sym__list_lower_roman_paren] = STATE(131), + [sym__list_item_lower_roman_paren] = STATE(755), + [sym__list_lower_roman_parens] = STATE(131), + [sym__list_item_lower_roman_parens] = STATE(760), + [sym__list_upper_roman_period] = STATE(131), + [sym__list_item_upper_roman_period] = STATE(761), + [sym__list_upper_roman_paren] = STATE(131), + [sym__list_item_upper_roman_paren] = STATE(766), + [sym__list_upper_roman_parens] = STATE(131), + [sym__list_item_upper_roman_parens] = STATE(784), + [sym_table] = STATE(175), [sym__table_row] = STATE(67), [sym_table_header] = STATE(67), [sym_table_separator] = STATE(67), [sym_table_row] = STATE(67), - [sym_footnote] = STATE(168), + [sym_footnote] = STATE(175), [sym_footnote_marker_begin] = STATE(1139), - [sym_div] = STATE(168), + [sym_div] = STATE(175), [sym__div_marker_begin] = STATE(1055), - [sym_code_block] = STATE(168), - [sym_raw_block] = STATE(168), - [sym_thematic_break] = STATE(168), - [sym_block_quote] = STATE(168), - [sym__block_quote_prefix] = STATE(213), - [sym_link_reference_definition] = STATE(168), - [sym_block_attribute] = STATE(168), - [sym__paragraph] = STATE(168), - [sym__paragraph_content] = STATE(766), - [sym__paragraph_inline_content] = STATE(824), - [sym__inline] = STATE(654), - [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(323), - [aux_sym__list_plus_repeat1] = STATE(324), - [aux_sym__list_star_repeat1] = STATE(325), - [aux_sym__list_task_repeat1] = STATE(299), - [aux_sym__list_definition_repeat1] = STATE(491), - [aux_sym__list_decimal_period_repeat1] = STATE(492), - [aux_sym__list_decimal_paren_repeat1] = STATE(493), - [aux_sym__list_decimal_parens_repeat1] = STATE(494), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(495), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(496), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(497), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(498), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(499), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(500), - [aux_sym__list_lower_roman_period_repeat1] = STATE(501), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(502), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(503), - [aux_sym__list_upper_roman_period_repeat1] = STATE(504), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(505), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(506), + [sym_code_block] = STATE(175), + [sym_raw_block] = STATE(175), + [sym_thematic_break] = STATE(175), + [sym_block_quote] = STATE(175), + [sym__block_quote_prefix] = STATE(212), + [sym_link_reference_definition] = STATE(175), + [sym_block_attribute] = STATE(175), + [sym__paragraph] = STATE(175), + [sym__paragraph_content] = STATE(765), + [sym__paragraph_inline_content] = STATE(814), + [sym__inline] = STATE(657), + [sym__symbol_fallback] = STATE(271), + [aux_sym__list_dash_repeat1] = STATE(326), + [aux_sym__list_plus_repeat1] = STATE(327), + [aux_sym__list_star_repeat1] = STATE(328), + [aux_sym__list_task_repeat1] = STATE(289), + [aux_sym__list_definition_repeat1] = STATE(489), + [aux_sym__list_decimal_period_repeat1] = STATE(490), + [aux_sym__list_decimal_paren_repeat1] = STATE(491), + [aux_sym__list_decimal_parens_repeat1] = STATE(492), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(493), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(494), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(495), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(496), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(497), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(498), + [aux_sym__list_lower_roman_period_repeat1] = STATE(499), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(500), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(501), + [aux_sym__list_upper_roman_period_repeat1] = STATE(502), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(503), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(504), [aux_sym_table_repeat1] = STATE(67), [aux_sym_div_repeat1] = STATE(13), [aux_sym__block_quote_prefix_repeat1] = STATE(226), - [aux_sym__inline_repeat1] = STATE(273), - [anon_sym_LBRACK] = ACTIONS(77), + [aux_sym__inline_repeat1] = STATE(271), + [anon_sym_LBRACK] = ACTIONS(75), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_DOT] = ACTIONS(9), [aux_sym_identifier_token1] = ACTIONS(9), @@ -6176,7 +6192,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(238), [sym__heading_begin] = ACTIONS(15), [sym__div_begin] = ACTIONS(17), - [sym__code_block_begin] = ACTIONS(83), + [sym__code_block_begin] = ACTIONS(81), [sym_list_marker_dash] = ACTIONS(21), [sym_list_marker_star] = ACTIONS(23), [sym_list_marker_plus] = ACTIONS(25), @@ -6197,250 +6213,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(55), [sym_list_marker_lower_roman_parens] = ACTIONS(57), [sym_list_marker_upper_roman_parens] = ACTIONS(59), - [sym__block_quote_begin] = ACTIONS(85), + [sym__block_quote_begin] = ACTIONS(83), [sym__block_quote_continuation] = ACTIONS(240), - [sym__thematic_break_dash] = ACTIONS(87), - [sym__thematic_break_star] = ACTIONS(87), - [sym__table_header_begin] = ACTIONS(89), - [sym__table_separator_begin] = ACTIONS(91), - [sym__table_row_begin] = ACTIONS(93), - [sym__block_attribute_begin] = ACTIONS(95), + [sym__thematic_break_dash] = ACTIONS(85), + [sym__thematic_break_star] = ACTIONS(85), + [sym__table_header_begin] = ACTIONS(87), + [sym__table_separator_begin] = ACTIONS(89), + [sym__table_row_begin] = ACTIONS(91), + [sym__block_attribute_begin] = ACTIONS(93), }, [13] = { - [sym__block_with_heading] = STATE(168), - [sym__block_element] = STATE(168), - [sym_heading] = STATE(168), - [sym_list] = STATE(168), - [sym__list_dash] = STATE(129), - [sym__list_item_dash] = STATE(595), - [sym__list_plus] = STATE(129), - [sym__list_item_plus] = STATE(657), - [sym__list_star] = STATE(129), - [sym__list_item_star] = STATE(570), - [sym__list_task] = STATE(129), - [sym__list_item_task] = STATE(586), - [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(129), - [sym__list_item_definition] = STATE(694), - [sym__list_decimal_period] = STATE(129), - [sym__list_item_decimal_period] = STATE(714), - [sym__list_decimal_paren] = STATE(129), - [sym__list_item_decimal_paren] = STATE(719), - [sym__list_decimal_parens] = STATE(129), - [sym__list_item_decimal_parens] = STATE(746), - [sym__list_lower_alpha_period] = STATE(129), - [sym__list_item_lower_alpha_period] = STATE(748), - [sym__list_lower_alpha_paren] = STATE(129), - [sym__list_item_lower_alpha_paren] = STATE(749), - [sym__list_lower_alpha_parens] = STATE(129), - [sym__list_item_lower_alpha_parens] = STATE(753), - [sym__list_upper_alpha_period] = STATE(129), - [sym__list_item_upper_alpha_period] = STATE(761), - [sym__list_upper_alpha_paren] = STATE(129), - [sym__list_item_upper_alpha_paren] = STATE(764), - [sym__list_upper_alpha_parens] = STATE(129), - [sym__list_item_upper_alpha_parens] = STATE(765), - [sym__list_lower_roman_period] = STATE(129), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(129), - [sym__list_item_lower_roman_paren] = STATE(769), - [sym__list_lower_roman_parens] = STATE(129), - [sym__list_item_lower_roman_parens] = STATE(786), - [sym__list_upper_roman_period] = STATE(129), - [sym__list_item_upper_roman_period] = STATE(791), - [sym__list_upper_roman_paren] = STATE(129), - [sym__list_item_upper_roman_paren] = STATE(793), - [sym__list_upper_roman_parens] = STATE(129), - [sym__list_item_upper_roman_parens] = STATE(799), - [sym_table] = STATE(168), - [sym__table_row] = STATE(67), - [sym_table_header] = STATE(67), - [sym_table_separator] = STATE(67), - [sym_table_row] = STATE(67), - [sym_footnote] = STATE(168), - [sym_footnote_marker_begin] = STATE(1139), - [sym_div] = STATE(168), - [sym__div_marker_begin] = STATE(1055), - [sym_code_block] = STATE(168), - [sym_raw_block] = STATE(168), - [sym_thematic_break] = STATE(168), - [sym_block_quote] = STATE(168), - [sym__block_quote_prefix] = STATE(223), - [sym_link_reference_definition] = STATE(168), - [sym_block_attribute] = STATE(168), - [sym__paragraph] = STATE(168), - [sym__paragraph_content] = STATE(766), - [sym__paragraph_inline_content] = STATE(824), - [sym__inline] = STATE(654), - [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(323), - [aux_sym__list_plus_repeat1] = STATE(324), - [aux_sym__list_star_repeat1] = STATE(325), - [aux_sym__list_task_repeat1] = STATE(299), - [aux_sym__list_definition_repeat1] = STATE(491), - [aux_sym__list_decimal_period_repeat1] = STATE(492), - [aux_sym__list_decimal_paren_repeat1] = STATE(493), - [aux_sym__list_decimal_parens_repeat1] = STATE(494), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(495), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(496), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(497), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(498), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(499), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(500), - [aux_sym__list_lower_roman_period_repeat1] = STATE(501), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(502), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(503), - [aux_sym__list_upper_roman_period_repeat1] = STATE(504), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(505), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(506), - [aux_sym_table_repeat1] = STATE(67), - [aux_sym_div_repeat1] = STATE(13), - [aux_sym__block_quote_prefix_repeat1] = STATE(230), - [aux_sym__inline_repeat1] = STATE(273), - [anon_sym_LBRACK] = ACTIONS(244), - [anon_sym_LBRACK_CARET] = ACTIONS(247), - [anon_sym_DOT] = ACTIONS(250), - [aux_sym_identifier_token1] = ACTIONS(250), - [aux_sym__inline_token1] = ACTIONS(250), - [anon_sym_LBRACE] = ACTIONS(250), - [anon_sym_PERCENT] = ACTIONS(250), - [sym__block_close] = ACTIONS(253), - [sym__newline] = ACTIONS(255), - [sym__heading_begin] = ACTIONS(258), - [sym__div_begin] = ACTIONS(261), - [sym__code_block_begin] = ACTIONS(264), - [sym_list_marker_dash] = ACTIONS(267), - [sym_list_marker_star] = ACTIONS(270), - [sym_list_marker_plus] = ACTIONS(273), - [sym__list_marker_task_begin] = ACTIONS(276), - [sym_list_marker_definition] = ACTIONS(279), - [sym_list_marker_decimal_period] = ACTIONS(282), - [sym_list_marker_lower_alpha_period] = ACTIONS(285), - [sym_list_marker_upper_alpha_period] = ACTIONS(288), - [sym_list_marker_lower_roman_period] = ACTIONS(291), - [sym_list_marker_upper_roman_period] = ACTIONS(294), - [sym_list_marker_decimal_paren] = ACTIONS(297), - [sym_list_marker_lower_alpha_paren] = ACTIONS(300), - [sym_list_marker_upper_alpha_paren] = ACTIONS(303), - [sym_list_marker_lower_roman_paren] = ACTIONS(306), - [sym_list_marker_upper_roman_paren] = ACTIONS(309), - [sym_list_marker_decimal_parens] = ACTIONS(312), - [sym_list_marker_lower_alpha_parens] = ACTIONS(315), - [sym_list_marker_upper_alpha_parens] = ACTIONS(318), - [sym_list_marker_lower_roman_parens] = ACTIONS(321), - [sym_list_marker_upper_roman_parens] = ACTIONS(324), - [sym__block_quote_begin] = ACTIONS(327), - [sym__block_quote_continuation] = ACTIONS(330), - [sym__thematic_break_dash] = ACTIONS(333), - [sym__thematic_break_star] = ACTIONS(333), - [sym__table_header_begin] = ACTIONS(336), - [sym__table_separator_begin] = ACTIONS(339), - [sym__table_row_begin] = ACTIONS(342), - [sym__block_attribute_begin] = ACTIONS(345), - }, - [14] = { - [sym__block_with_heading] = STATE(168), - [sym__block_element] = STATE(168), - [sym_heading] = STATE(168), - [sym_list] = STATE(168), - [sym__list_dash] = STATE(129), - [sym__list_item_dash] = STATE(595), - [sym__list_plus] = STATE(129), - [sym__list_item_plus] = STATE(657), - [sym__list_star] = STATE(129), - [sym__list_item_star] = STATE(570), - [sym__list_task] = STATE(129), - [sym__list_item_task] = STATE(586), - [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(129), - [sym__list_item_definition] = STATE(694), - [sym__list_decimal_period] = STATE(129), - [sym__list_item_decimal_period] = STATE(714), - [sym__list_decimal_paren] = STATE(129), - [sym__list_item_decimal_paren] = STATE(719), - [sym__list_decimal_parens] = STATE(129), - [sym__list_item_decimal_parens] = STATE(746), - [sym__list_lower_alpha_period] = STATE(129), - [sym__list_item_lower_alpha_period] = STATE(748), - [sym__list_lower_alpha_paren] = STATE(129), - [sym__list_item_lower_alpha_paren] = STATE(749), - [sym__list_lower_alpha_parens] = STATE(129), - [sym__list_item_lower_alpha_parens] = STATE(753), - [sym__list_upper_alpha_period] = STATE(129), - [sym__list_item_upper_alpha_period] = STATE(761), - [sym__list_upper_alpha_paren] = STATE(129), - [sym__list_item_upper_alpha_paren] = STATE(764), - [sym__list_upper_alpha_parens] = STATE(129), - [sym__list_item_upper_alpha_parens] = STATE(765), - [sym__list_lower_roman_period] = STATE(129), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(129), - [sym__list_item_lower_roman_paren] = STATE(769), - [sym__list_lower_roman_parens] = STATE(129), - [sym__list_item_lower_roman_parens] = STATE(786), - [sym__list_upper_roman_period] = STATE(129), - [sym__list_item_upper_roman_period] = STATE(791), - [sym__list_upper_roman_paren] = STATE(129), - [sym__list_item_upper_roman_paren] = STATE(793), - [sym__list_upper_roman_parens] = STATE(129), - [sym__list_item_upper_roman_parens] = STATE(799), - [sym_table] = STATE(168), + [sym__block_with_heading] = STATE(175), + [sym__block_element] = STATE(175), + [sym_heading] = STATE(175), + [sym_list] = STATE(175), + [sym__list_dash] = STATE(131), + [sym__list_item_dash] = STATE(599), + [sym__list_plus] = STATE(131), + [sym__list_item_plus] = STATE(606), + [sym__list_star] = STATE(131), + [sym__list_item_star] = STATE(664), + [sym__list_task] = STATE(131), + [sym__list_item_task] = STATE(673), + [sym_list_marker_task] = STATE(44), + [sym__list_definition] = STATE(131), + [sym__list_item_definition] = STATE(792), + [sym__list_decimal_period] = STATE(131), + [sym__list_item_decimal_period] = STATE(691), + [sym__list_decimal_paren] = STATE(131), + [sym__list_item_decimal_paren] = STATE(692), + [sym__list_decimal_parens] = STATE(131), + [sym__list_item_decimal_parens] = STATE(710), + [sym__list_lower_alpha_period] = STATE(131), + [sym__list_item_lower_alpha_period] = STATE(714), + [sym__list_lower_alpha_paren] = STATE(131), + [sym__list_item_lower_alpha_paren] = STATE(717), + [sym__list_lower_alpha_parens] = STATE(131), + [sym__list_item_lower_alpha_parens] = STATE(721), + [sym__list_upper_alpha_period] = STATE(131), + [sym__list_item_upper_alpha_period] = STATE(726), + [sym__list_upper_alpha_paren] = STATE(131), + [sym__list_item_upper_alpha_paren] = STATE(747), + [sym__list_upper_alpha_parens] = STATE(131), + [sym__list_item_upper_alpha_parens] = STATE(751), + [sym__list_lower_roman_period] = STATE(131), + [sym__list_item_lower_roman_period] = STATE(753), + [sym__list_lower_roman_paren] = STATE(131), + [sym__list_item_lower_roman_paren] = STATE(755), + [sym__list_lower_roman_parens] = STATE(131), + [sym__list_item_lower_roman_parens] = STATE(760), + [sym__list_upper_roman_period] = STATE(131), + [sym__list_item_upper_roman_period] = STATE(761), + [sym__list_upper_roman_paren] = STATE(131), + [sym__list_item_upper_roman_paren] = STATE(766), + [sym__list_upper_roman_parens] = STATE(131), + [sym__list_item_upper_roman_parens] = STATE(784), + [sym_table] = STATE(175), [sym__table_row] = STATE(67), [sym_table_header] = STATE(67), [sym_table_separator] = STATE(67), [sym_table_row] = STATE(67), - [sym_footnote] = STATE(168), + [sym_footnote] = STATE(175), [sym_footnote_marker_begin] = STATE(1139), - [sym_div] = STATE(168), + [sym_div] = STATE(175), [sym__div_marker_begin] = STATE(1055), - [sym_code_block] = STATE(168), - [sym_raw_block] = STATE(168), - [sym_thematic_break] = STATE(168), - [sym_block_quote] = STATE(168), - [sym__block_quote_prefix] = STATE(212), - [sym_link_reference_definition] = STATE(168), - [sym_block_attribute] = STATE(168), - [sym__paragraph] = STATE(168), - [sym__paragraph_content] = STATE(766), - [sym__paragraph_inline_content] = STATE(824), - [sym__inline] = STATE(654), - [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(323), - [aux_sym__list_plus_repeat1] = STATE(324), - [aux_sym__list_star_repeat1] = STATE(325), - [aux_sym__list_task_repeat1] = STATE(299), - [aux_sym__list_definition_repeat1] = STATE(491), - [aux_sym__list_decimal_period_repeat1] = STATE(492), - [aux_sym__list_decimal_paren_repeat1] = STATE(493), - [aux_sym__list_decimal_parens_repeat1] = STATE(494), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(495), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(496), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(497), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(498), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(499), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(500), - [aux_sym__list_lower_roman_period_repeat1] = STATE(501), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(502), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(503), - [aux_sym__list_upper_roman_period_repeat1] = STATE(504), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(505), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(506), + [sym_code_block] = STATE(175), + [sym_raw_block] = STATE(175), + [sym_thematic_break] = STATE(175), + [sym_block_quote] = STATE(175), + [sym__block_quote_prefix] = STATE(214), + [sym_link_reference_definition] = STATE(175), + [sym_block_attribute] = STATE(175), + [sym__paragraph] = STATE(175), + [sym__paragraph_content] = STATE(765), + [sym__paragraph_inline_content] = STATE(814), + [sym__inline] = STATE(657), + [sym__symbol_fallback] = STATE(271), + [aux_sym__list_dash_repeat1] = STATE(326), + [aux_sym__list_plus_repeat1] = STATE(327), + [aux_sym__list_star_repeat1] = STATE(328), + [aux_sym__list_task_repeat1] = STATE(289), + [aux_sym__list_definition_repeat1] = STATE(489), + [aux_sym__list_decimal_period_repeat1] = STATE(490), + [aux_sym__list_decimal_paren_repeat1] = STATE(491), + [aux_sym__list_decimal_parens_repeat1] = STATE(492), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(493), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(494), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(495), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(496), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(497), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(498), + [aux_sym__list_lower_roman_period_repeat1] = STATE(499), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(500), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(501), + [aux_sym__list_upper_roman_period_repeat1] = STATE(502), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(503), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(504), [aux_sym_table_repeat1] = STATE(67), - [aux_sym_div_repeat1] = STATE(15), + [aux_sym_div_repeat1] = STATE(14), [aux_sym__block_quote_prefix_repeat1] = STATE(226), - [aux_sym__inline_repeat1] = STATE(273), - [anon_sym_LBRACK] = ACTIONS(77), + [aux_sym__inline_repeat1] = STATE(271), + [anon_sym_LBRACK] = ACTIONS(75), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_DOT] = ACTIONS(9), [aux_sym_identifier_token1] = ACTIONS(9), [aux_sym__inline_token1] = ACTIONS(9), [anon_sym_LBRACE] = ACTIONS(9), [anon_sym_PERCENT] = ACTIONS(9), - [sym__block_close] = ACTIONS(348), + [sym__block_close] = ACTIONS(244), [sym__newline] = ACTIONS(238), [sym__heading_begin] = ACTIONS(15), [sym__div_begin] = ACTIONS(17), - [sym__code_block_begin] = ACTIONS(83), + [sym__code_block_begin] = ACTIONS(81), [sym_list_marker_dash] = ACTIONS(21), [sym_list_marker_star] = ACTIONS(23), [sym_list_marker_plus] = ACTIONS(25), @@ -6461,107 +6345,239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(55), [sym_list_marker_lower_roman_parens] = ACTIONS(57), [sym_list_marker_upper_roman_parens] = ACTIONS(59), - [sym__block_quote_begin] = ACTIONS(85), + [sym__block_quote_begin] = ACTIONS(83), [sym__block_quote_continuation] = ACTIONS(240), - [sym__thematic_break_dash] = ACTIONS(87), - [sym__thematic_break_star] = ACTIONS(87), - [sym__table_header_begin] = ACTIONS(89), - [sym__table_separator_begin] = ACTIONS(91), - [sym__table_row_begin] = ACTIONS(93), - [sym__block_attribute_begin] = ACTIONS(95), + [sym__thematic_break_dash] = ACTIONS(85), + [sym__thematic_break_star] = ACTIONS(85), + [sym__table_header_begin] = ACTIONS(87), + [sym__table_separator_begin] = ACTIONS(89), + [sym__table_row_begin] = ACTIONS(91), + [sym__block_attribute_begin] = ACTIONS(93), + }, + [14] = { + [sym__block_with_heading] = STATE(175), + [sym__block_element] = STATE(175), + [sym_heading] = STATE(175), + [sym_list] = STATE(175), + [sym__list_dash] = STATE(131), + [sym__list_item_dash] = STATE(599), + [sym__list_plus] = STATE(131), + [sym__list_item_plus] = STATE(606), + [sym__list_star] = STATE(131), + [sym__list_item_star] = STATE(664), + [sym__list_task] = STATE(131), + [sym__list_item_task] = STATE(673), + [sym_list_marker_task] = STATE(44), + [sym__list_definition] = STATE(131), + [sym__list_item_definition] = STATE(792), + [sym__list_decimal_period] = STATE(131), + [sym__list_item_decimal_period] = STATE(691), + [sym__list_decimal_paren] = STATE(131), + [sym__list_item_decimal_paren] = STATE(692), + [sym__list_decimal_parens] = STATE(131), + [sym__list_item_decimal_parens] = STATE(710), + [sym__list_lower_alpha_period] = STATE(131), + [sym__list_item_lower_alpha_period] = STATE(714), + [sym__list_lower_alpha_paren] = STATE(131), + [sym__list_item_lower_alpha_paren] = STATE(717), + [sym__list_lower_alpha_parens] = STATE(131), + [sym__list_item_lower_alpha_parens] = STATE(721), + [sym__list_upper_alpha_period] = STATE(131), + [sym__list_item_upper_alpha_period] = STATE(726), + [sym__list_upper_alpha_paren] = STATE(131), + [sym__list_item_upper_alpha_paren] = STATE(747), + [sym__list_upper_alpha_parens] = STATE(131), + [sym__list_item_upper_alpha_parens] = STATE(751), + [sym__list_lower_roman_period] = STATE(131), + [sym__list_item_lower_roman_period] = STATE(753), + [sym__list_lower_roman_paren] = STATE(131), + [sym__list_item_lower_roman_paren] = STATE(755), + [sym__list_lower_roman_parens] = STATE(131), + [sym__list_item_lower_roman_parens] = STATE(760), + [sym__list_upper_roman_period] = STATE(131), + [sym__list_item_upper_roman_period] = STATE(761), + [sym__list_upper_roman_paren] = STATE(131), + [sym__list_item_upper_roman_paren] = STATE(766), + [sym__list_upper_roman_parens] = STATE(131), + [sym__list_item_upper_roman_parens] = STATE(784), + [sym_table] = STATE(175), + [sym__table_row] = STATE(67), + [sym_table_header] = STATE(67), + [sym_table_separator] = STATE(67), + [sym_table_row] = STATE(67), + [sym_footnote] = STATE(175), + [sym_footnote_marker_begin] = STATE(1139), + [sym_div] = STATE(175), + [sym__div_marker_begin] = STATE(1055), + [sym_code_block] = STATE(175), + [sym_raw_block] = STATE(175), + [sym_thematic_break] = STATE(175), + [sym_block_quote] = STATE(175), + [sym__block_quote_prefix] = STATE(223), + [sym_link_reference_definition] = STATE(175), + [sym_block_attribute] = STATE(175), + [sym__paragraph] = STATE(175), + [sym__paragraph_content] = STATE(765), + [sym__paragraph_inline_content] = STATE(814), + [sym__inline] = STATE(657), + [sym__symbol_fallback] = STATE(271), + [aux_sym__list_dash_repeat1] = STATE(326), + [aux_sym__list_plus_repeat1] = STATE(327), + [aux_sym__list_star_repeat1] = STATE(328), + [aux_sym__list_task_repeat1] = STATE(289), + [aux_sym__list_definition_repeat1] = STATE(489), + [aux_sym__list_decimal_period_repeat1] = STATE(490), + [aux_sym__list_decimal_paren_repeat1] = STATE(491), + [aux_sym__list_decimal_parens_repeat1] = STATE(492), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(493), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(494), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(495), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(496), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(497), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(498), + [aux_sym__list_lower_roman_period_repeat1] = STATE(499), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(500), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(501), + [aux_sym__list_upper_roman_period_repeat1] = STATE(502), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(503), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(504), + [aux_sym_table_repeat1] = STATE(67), + [aux_sym_div_repeat1] = STATE(14), + [aux_sym__block_quote_prefix_repeat1] = STATE(231), + [aux_sym__inline_repeat1] = STATE(271), + [anon_sym_LBRACK] = ACTIONS(246), + [anon_sym_LBRACK_CARET] = ACTIONS(249), + [anon_sym_DOT] = ACTIONS(252), + [aux_sym_identifier_token1] = ACTIONS(252), + [aux_sym__inline_token1] = ACTIONS(252), + [anon_sym_LBRACE] = ACTIONS(252), + [anon_sym_PERCENT] = ACTIONS(252), + [sym__block_close] = ACTIONS(255), + [sym__newline] = ACTIONS(257), + [sym__heading_begin] = ACTIONS(260), + [sym__div_begin] = ACTIONS(263), + [sym__code_block_begin] = ACTIONS(266), + [sym_list_marker_dash] = ACTIONS(269), + [sym_list_marker_star] = ACTIONS(272), + [sym_list_marker_plus] = ACTIONS(275), + [sym__list_marker_task_begin] = ACTIONS(278), + [sym_list_marker_definition] = ACTIONS(281), + [sym_list_marker_decimal_period] = ACTIONS(284), + [sym_list_marker_lower_alpha_period] = ACTIONS(287), + [sym_list_marker_upper_alpha_period] = ACTIONS(290), + [sym_list_marker_lower_roman_period] = ACTIONS(293), + [sym_list_marker_upper_roman_period] = ACTIONS(296), + [sym_list_marker_decimal_paren] = ACTIONS(299), + [sym_list_marker_lower_alpha_paren] = ACTIONS(302), + [sym_list_marker_upper_alpha_paren] = ACTIONS(305), + [sym_list_marker_lower_roman_paren] = ACTIONS(308), + [sym_list_marker_upper_roman_paren] = ACTIONS(311), + [sym_list_marker_decimal_parens] = ACTIONS(314), + [sym_list_marker_lower_alpha_parens] = ACTIONS(317), + [sym_list_marker_upper_alpha_parens] = ACTIONS(320), + [sym_list_marker_lower_roman_parens] = ACTIONS(323), + [sym_list_marker_upper_roman_parens] = ACTIONS(326), + [sym__block_quote_begin] = ACTIONS(329), + [sym__block_quote_continuation] = ACTIONS(332), + [sym__thematic_break_dash] = ACTIONS(335), + [sym__thematic_break_star] = ACTIONS(335), + [sym__table_header_begin] = ACTIONS(338), + [sym__table_separator_begin] = ACTIONS(341), + [sym__table_row_begin] = ACTIONS(344), + [sym__block_attribute_begin] = ACTIONS(347), }, [15] = { - [sym__block_with_heading] = STATE(168), - [sym__block_element] = STATE(168), - [sym_heading] = STATE(168), - [sym_list] = STATE(168), - [sym__list_dash] = STATE(129), - [sym__list_item_dash] = STATE(595), - [sym__list_plus] = STATE(129), - [sym__list_item_plus] = STATE(657), - [sym__list_star] = STATE(129), - [sym__list_item_star] = STATE(570), - [sym__list_task] = STATE(129), - [sym__list_item_task] = STATE(586), - [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(129), - [sym__list_item_definition] = STATE(694), - [sym__list_decimal_period] = STATE(129), - [sym__list_item_decimal_period] = STATE(714), - [sym__list_decimal_paren] = STATE(129), - [sym__list_item_decimal_paren] = STATE(719), - [sym__list_decimal_parens] = STATE(129), - [sym__list_item_decimal_parens] = STATE(746), - [sym__list_lower_alpha_period] = STATE(129), - [sym__list_item_lower_alpha_period] = STATE(748), - [sym__list_lower_alpha_paren] = STATE(129), - [sym__list_item_lower_alpha_paren] = STATE(749), - [sym__list_lower_alpha_parens] = STATE(129), - [sym__list_item_lower_alpha_parens] = STATE(753), - [sym__list_upper_alpha_period] = STATE(129), - [sym__list_item_upper_alpha_period] = STATE(761), - [sym__list_upper_alpha_paren] = STATE(129), - [sym__list_item_upper_alpha_paren] = STATE(764), - [sym__list_upper_alpha_parens] = STATE(129), - [sym__list_item_upper_alpha_parens] = STATE(765), - [sym__list_lower_roman_period] = STATE(129), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(129), - [sym__list_item_lower_roman_paren] = STATE(769), - [sym__list_lower_roman_parens] = STATE(129), - [sym__list_item_lower_roman_parens] = STATE(786), - [sym__list_upper_roman_period] = STATE(129), - [sym__list_item_upper_roman_period] = STATE(791), - [sym__list_upper_roman_paren] = STATE(129), - [sym__list_item_upper_roman_paren] = STATE(793), - [sym__list_upper_roman_parens] = STATE(129), - [sym__list_item_upper_roman_parens] = STATE(799), - [sym_table] = STATE(168), + [sym__block_with_heading] = STATE(175), + [sym__block_element] = STATE(175), + [sym_heading] = STATE(175), + [sym_list] = STATE(175), + [sym__list_dash] = STATE(131), + [sym__list_item_dash] = STATE(599), + [sym__list_plus] = STATE(131), + [sym__list_item_plus] = STATE(606), + [sym__list_star] = STATE(131), + [sym__list_item_star] = STATE(664), + [sym__list_task] = STATE(131), + [sym__list_item_task] = STATE(673), + [sym_list_marker_task] = STATE(44), + [sym__list_definition] = STATE(131), + [sym__list_item_definition] = STATE(792), + [sym__list_decimal_period] = STATE(131), + [sym__list_item_decimal_period] = STATE(691), + [sym__list_decimal_paren] = STATE(131), + [sym__list_item_decimal_paren] = STATE(692), + [sym__list_decimal_parens] = STATE(131), + [sym__list_item_decimal_parens] = STATE(710), + [sym__list_lower_alpha_period] = STATE(131), + [sym__list_item_lower_alpha_period] = STATE(714), + [sym__list_lower_alpha_paren] = STATE(131), + [sym__list_item_lower_alpha_paren] = STATE(717), + [sym__list_lower_alpha_parens] = STATE(131), + [sym__list_item_lower_alpha_parens] = STATE(721), + [sym__list_upper_alpha_period] = STATE(131), + [sym__list_item_upper_alpha_period] = STATE(726), + [sym__list_upper_alpha_paren] = STATE(131), + [sym__list_item_upper_alpha_paren] = STATE(747), + [sym__list_upper_alpha_parens] = STATE(131), + [sym__list_item_upper_alpha_parens] = STATE(751), + [sym__list_lower_roman_period] = STATE(131), + [sym__list_item_lower_roman_period] = STATE(753), + [sym__list_lower_roman_paren] = STATE(131), + [sym__list_item_lower_roman_paren] = STATE(755), + [sym__list_lower_roman_parens] = STATE(131), + [sym__list_item_lower_roman_parens] = STATE(760), + [sym__list_upper_roman_period] = STATE(131), + [sym__list_item_upper_roman_period] = STATE(761), + [sym__list_upper_roman_paren] = STATE(131), + [sym__list_item_upper_roman_paren] = STATE(766), + [sym__list_upper_roman_parens] = STATE(131), + [sym__list_item_upper_roman_parens] = STATE(784), + [sym_table] = STATE(175), [sym__table_row] = STATE(67), [sym_table_header] = STATE(67), [sym_table_separator] = STATE(67), [sym_table_row] = STATE(67), - [sym_footnote] = STATE(168), + [sym_footnote] = STATE(175), [sym_footnote_marker_begin] = STATE(1139), - [sym_div] = STATE(168), + [sym_div] = STATE(175), [sym__div_marker_begin] = STATE(1055), - [sym_code_block] = STATE(168), - [sym_raw_block] = STATE(168), - [sym_thematic_break] = STATE(168), - [sym_block_quote] = STATE(168), - [sym__block_quote_prefix] = STATE(215), - [sym_link_reference_definition] = STATE(168), - [sym_block_attribute] = STATE(168), - [sym__paragraph] = STATE(168), - [sym__paragraph_content] = STATE(766), - [sym__paragraph_inline_content] = STATE(824), - [sym__inline] = STATE(654), - [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(323), - [aux_sym__list_plus_repeat1] = STATE(324), - [aux_sym__list_star_repeat1] = STATE(325), - [aux_sym__list_task_repeat1] = STATE(299), - [aux_sym__list_definition_repeat1] = STATE(491), - [aux_sym__list_decimal_period_repeat1] = STATE(492), - [aux_sym__list_decimal_paren_repeat1] = STATE(493), - [aux_sym__list_decimal_parens_repeat1] = STATE(494), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(495), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(496), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(497), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(498), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(499), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(500), - [aux_sym__list_lower_roman_period_repeat1] = STATE(501), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(502), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(503), - [aux_sym__list_upper_roman_period_repeat1] = STATE(504), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(505), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(506), + [sym_code_block] = STATE(175), + [sym_raw_block] = STATE(175), + [sym_thematic_break] = STATE(175), + [sym_block_quote] = STATE(175), + [sym__block_quote_prefix] = STATE(211), + [sym_link_reference_definition] = STATE(175), + [sym_block_attribute] = STATE(175), + [sym__paragraph] = STATE(175), + [sym__paragraph_content] = STATE(765), + [sym__paragraph_inline_content] = STATE(814), + [sym__inline] = STATE(657), + [sym__symbol_fallback] = STATE(271), + [aux_sym__list_dash_repeat1] = STATE(326), + [aux_sym__list_plus_repeat1] = STATE(327), + [aux_sym__list_star_repeat1] = STATE(328), + [aux_sym__list_task_repeat1] = STATE(289), + [aux_sym__list_definition_repeat1] = STATE(489), + [aux_sym__list_decimal_period_repeat1] = STATE(490), + [aux_sym__list_decimal_paren_repeat1] = STATE(491), + [aux_sym__list_decimal_parens_repeat1] = STATE(492), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(493), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(494), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(495), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(496), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(497), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(498), + [aux_sym__list_lower_roman_period_repeat1] = STATE(499), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(500), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(501), + [aux_sym__list_upper_roman_period_repeat1] = STATE(502), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(503), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(504), [aux_sym_table_repeat1] = STATE(67), - [aux_sym_div_repeat1] = STATE(13), + [aux_sym_div_repeat1] = STATE(16), [aux_sym__block_quote_prefix_repeat1] = STATE(226), - [aux_sym__inline_repeat1] = STATE(273), - [anon_sym_LBRACK] = ACTIONS(77), + [aux_sym__inline_repeat1] = STATE(271), + [anon_sym_LBRACK] = ACTIONS(75), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_DOT] = ACTIONS(9), [aux_sym_identifier_token1] = ACTIONS(9), @@ -6572,7 +6588,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(238), [sym__heading_begin] = ACTIONS(15), [sym__div_begin] = ACTIONS(17), - [sym__code_block_begin] = ACTIONS(83), + [sym__code_block_begin] = ACTIONS(81), [sym_list_marker_dash] = ACTIONS(21), [sym_list_marker_star] = ACTIONS(23), [sym_list_marker_plus] = ACTIONS(25), @@ -6593,107 +6609,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(55), [sym_list_marker_lower_roman_parens] = ACTIONS(57), [sym_list_marker_upper_roman_parens] = ACTIONS(59), - [sym__block_quote_begin] = ACTIONS(85), + [sym__block_quote_begin] = ACTIONS(83), [sym__block_quote_continuation] = ACTIONS(240), - [sym__thematic_break_dash] = ACTIONS(87), - [sym__thematic_break_star] = ACTIONS(87), - [sym__table_header_begin] = ACTIONS(89), - [sym__table_separator_begin] = ACTIONS(91), - [sym__table_row_begin] = ACTIONS(93), - [sym__block_attribute_begin] = ACTIONS(95), + [sym__thematic_break_dash] = ACTIONS(85), + [sym__thematic_break_star] = ACTIONS(85), + [sym__table_header_begin] = ACTIONS(87), + [sym__table_separator_begin] = ACTIONS(89), + [sym__table_row_begin] = ACTIONS(91), + [sym__block_attribute_begin] = ACTIONS(93), }, [16] = { - [sym__block_with_heading] = STATE(168), - [sym__block_element] = STATE(168), - [sym_heading] = STATE(168), - [sym_list] = STATE(168), - [sym__list_dash] = STATE(129), - [sym__list_item_dash] = STATE(595), - [sym__list_plus] = STATE(129), - [sym__list_item_plus] = STATE(657), - [sym__list_star] = STATE(129), - [sym__list_item_star] = STATE(570), - [sym__list_task] = STATE(129), - [sym__list_item_task] = STATE(586), - [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(129), - [sym__list_item_definition] = STATE(694), - [sym__list_decimal_period] = STATE(129), - [sym__list_item_decimal_period] = STATE(714), - [sym__list_decimal_paren] = STATE(129), - [sym__list_item_decimal_paren] = STATE(719), - [sym__list_decimal_parens] = STATE(129), - [sym__list_item_decimal_parens] = STATE(746), - [sym__list_lower_alpha_period] = STATE(129), - [sym__list_item_lower_alpha_period] = STATE(748), - [sym__list_lower_alpha_paren] = STATE(129), - [sym__list_item_lower_alpha_paren] = STATE(749), - [sym__list_lower_alpha_parens] = STATE(129), - [sym__list_item_lower_alpha_parens] = STATE(753), - [sym__list_upper_alpha_period] = STATE(129), - [sym__list_item_upper_alpha_period] = STATE(761), - [sym__list_upper_alpha_paren] = STATE(129), - [sym__list_item_upper_alpha_paren] = STATE(764), - [sym__list_upper_alpha_parens] = STATE(129), - [sym__list_item_upper_alpha_parens] = STATE(765), - [sym__list_lower_roman_period] = STATE(129), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(129), - [sym__list_item_lower_roman_paren] = STATE(769), - [sym__list_lower_roman_parens] = STATE(129), - [sym__list_item_lower_roman_parens] = STATE(786), - [sym__list_upper_roman_period] = STATE(129), - [sym__list_item_upper_roman_period] = STATE(791), - [sym__list_upper_roman_paren] = STATE(129), - [sym__list_item_upper_roman_paren] = STATE(793), - [sym__list_upper_roman_parens] = STATE(129), - [sym__list_item_upper_roman_parens] = STATE(799), - [sym_table] = STATE(168), + [sym__block_with_heading] = STATE(175), + [sym__block_element] = STATE(175), + [sym_heading] = STATE(175), + [sym_list] = STATE(175), + [sym__list_dash] = STATE(131), + [sym__list_item_dash] = STATE(599), + [sym__list_plus] = STATE(131), + [sym__list_item_plus] = STATE(606), + [sym__list_star] = STATE(131), + [sym__list_item_star] = STATE(664), + [sym__list_task] = STATE(131), + [sym__list_item_task] = STATE(673), + [sym_list_marker_task] = STATE(44), + [sym__list_definition] = STATE(131), + [sym__list_item_definition] = STATE(792), + [sym__list_decimal_period] = STATE(131), + [sym__list_item_decimal_period] = STATE(691), + [sym__list_decimal_paren] = STATE(131), + [sym__list_item_decimal_paren] = STATE(692), + [sym__list_decimal_parens] = STATE(131), + [sym__list_item_decimal_parens] = STATE(710), + [sym__list_lower_alpha_period] = STATE(131), + [sym__list_item_lower_alpha_period] = STATE(714), + [sym__list_lower_alpha_paren] = STATE(131), + [sym__list_item_lower_alpha_paren] = STATE(717), + [sym__list_lower_alpha_parens] = STATE(131), + [sym__list_item_lower_alpha_parens] = STATE(721), + [sym__list_upper_alpha_period] = STATE(131), + [sym__list_item_upper_alpha_period] = STATE(726), + [sym__list_upper_alpha_paren] = STATE(131), + [sym__list_item_upper_alpha_paren] = STATE(747), + [sym__list_upper_alpha_parens] = STATE(131), + [sym__list_item_upper_alpha_parens] = STATE(751), + [sym__list_lower_roman_period] = STATE(131), + [sym__list_item_lower_roman_period] = STATE(753), + [sym__list_lower_roman_paren] = STATE(131), + [sym__list_item_lower_roman_paren] = STATE(755), + [sym__list_lower_roman_parens] = STATE(131), + [sym__list_item_lower_roman_parens] = STATE(760), + [sym__list_upper_roman_period] = STATE(131), + [sym__list_item_upper_roman_period] = STATE(761), + [sym__list_upper_roman_paren] = STATE(131), + [sym__list_item_upper_roman_paren] = STATE(766), + [sym__list_upper_roman_parens] = STATE(131), + [sym__list_item_upper_roman_parens] = STATE(784), + [sym_table] = STATE(175), [sym__table_row] = STATE(67), [sym_table_header] = STATE(67), [sym_table_separator] = STATE(67), [sym_table_row] = STATE(67), - [sym_footnote] = STATE(168), + [sym_footnote] = STATE(175), [sym_footnote_marker_begin] = STATE(1139), - [sym_div] = STATE(168), + [sym_div] = STATE(175), [sym__div_marker_begin] = STATE(1055), - [sym_code_block] = STATE(168), - [sym_raw_block] = STATE(168), - [sym_thematic_break] = STATE(168), - [sym_block_quote] = STATE(168), - [sym__block_quote_prefix] = STATE(216), - [sym_link_reference_definition] = STATE(168), - [sym_block_attribute] = STATE(168), - [sym__paragraph] = STATE(168), - [sym__paragraph_content] = STATE(766), - [sym__paragraph_inline_content] = STATE(824), - [sym__inline] = STATE(654), - [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(323), - [aux_sym__list_plus_repeat1] = STATE(324), - [aux_sym__list_star_repeat1] = STATE(325), - [aux_sym__list_task_repeat1] = STATE(299), - [aux_sym__list_definition_repeat1] = STATE(491), - [aux_sym__list_decimal_period_repeat1] = STATE(492), - [aux_sym__list_decimal_paren_repeat1] = STATE(493), - [aux_sym__list_decimal_parens_repeat1] = STATE(494), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(495), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(496), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(497), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(498), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(499), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(500), - [aux_sym__list_lower_roman_period_repeat1] = STATE(501), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(502), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(503), - [aux_sym__list_upper_roman_period_repeat1] = STATE(504), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(505), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(506), + [sym_code_block] = STATE(175), + [sym_raw_block] = STATE(175), + [sym_thematic_break] = STATE(175), + [sym_block_quote] = STATE(175), + [sym__block_quote_prefix] = STATE(215), + [sym_link_reference_definition] = STATE(175), + [sym_block_attribute] = STATE(175), + [sym__paragraph] = STATE(175), + [sym__paragraph_content] = STATE(765), + [sym__paragraph_inline_content] = STATE(814), + [sym__inline] = STATE(657), + [sym__symbol_fallback] = STATE(271), + [aux_sym__list_dash_repeat1] = STATE(326), + [aux_sym__list_plus_repeat1] = STATE(327), + [aux_sym__list_star_repeat1] = STATE(328), + [aux_sym__list_task_repeat1] = STATE(289), + [aux_sym__list_definition_repeat1] = STATE(489), + [aux_sym__list_decimal_period_repeat1] = STATE(490), + [aux_sym__list_decimal_paren_repeat1] = STATE(491), + [aux_sym__list_decimal_parens_repeat1] = STATE(492), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(493), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(494), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(495), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(496), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(497), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(498), + [aux_sym__list_lower_roman_period_repeat1] = STATE(499), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(500), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(501), + [aux_sym__list_upper_roman_period_repeat1] = STATE(502), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(503), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(504), [aux_sym_table_repeat1] = STATE(67), - [aux_sym_div_repeat1] = STATE(17), + [aux_sym_div_repeat1] = STATE(14), [aux_sym__block_quote_prefix_repeat1] = STATE(226), - [aux_sym__inline_repeat1] = STATE(273), - [anon_sym_LBRACK] = ACTIONS(77), + [aux_sym__inline_repeat1] = STATE(271), + [anon_sym_LBRACK] = ACTIONS(75), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_DOT] = ACTIONS(9), [aux_sym_identifier_token1] = ACTIONS(9), @@ -6704,7 +6720,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(238), [sym__heading_begin] = ACTIONS(15), [sym__div_begin] = ACTIONS(17), - [sym__code_block_begin] = ACTIONS(83), + [sym__code_block_begin] = ACTIONS(81), [sym_list_marker_dash] = ACTIONS(21), [sym_list_marker_star] = ACTIONS(23), [sym_list_marker_plus] = ACTIONS(25), @@ -6725,107 +6741,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(55), [sym_list_marker_lower_roman_parens] = ACTIONS(57), [sym_list_marker_upper_roman_parens] = ACTIONS(59), - [sym__block_quote_begin] = ACTIONS(85), + [sym__block_quote_begin] = ACTIONS(83), [sym__block_quote_continuation] = ACTIONS(240), - [sym__thematic_break_dash] = ACTIONS(87), - [sym__thematic_break_star] = ACTIONS(87), - [sym__table_header_begin] = ACTIONS(89), - [sym__table_separator_begin] = ACTIONS(91), - [sym__table_row_begin] = ACTIONS(93), - [sym__block_attribute_begin] = ACTIONS(95), + [sym__thematic_break_dash] = ACTIONS(85), + [sym__thematic_break_star] = ACTIONS(85), + [sym__table_header_begin] = ACTIONS(87), + [sym__table_separator_begin] = ACTIONS(89), + [sym__table_row_begin] = ACTIONS(91), + [sym__block_attribute_begin] = ACTIONS(93), }, [17] = { - [sym__block_with_heading] = STATE(168), - [sym__block_element] = STATE(168), - [sym_heading] = STATE(168), - [sym_list] = STATE(168), - [sym__list_dash] = STATE(129), - [sym__list_item_dash] = STATE(595), - [sym__list_plus] = STATE(129), - [sym__list_item_plus] = STATE(657), - [sym__list_star] = STATE(129), - [sym__list_item_star] = STATE(570), - [sym__list_task] = STATE(129), - [sym__list_item_task] = STATE(586), - [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(129), - [sym__list_item_definition] = STATE(694), - [sym__list_decimal_period] = STATE(129), - [sym__list_item_decimal_period] = STATE(714), - [sym__list_decimal_paren] = STATE(129), - [sym__list_item_decimal_paren] = STATE(719), - [sym__list_decimal_parens] = STATE(129), - [sym__list_item_decimal_parens] = STATE(746), - [sym__list_lower_alpha_period] = STATE(129), - [sym__list_item_lower_alpha_period] = STATE(748), - [sym__list_lower_alpha_paren] = STATE(129), - [sym__list_item_lower_alpha_paren] = STATE(749), - [sym__list_lower_alpha_parens] = STATE(129), - [sym__list_item_lower_alpha_parens] = STATE(753), - [sym__list_upper_alpha_period] = STATE(129), - [sym__list_item_upper_alpha_period] = STATE(761), - [sym__list_upper_alpha_paren] = STATE(129), - [sym__list_item_upper_alpha_paren] = STATE(764), - [sym__list_upper_alpha_parens] = STATE(129), - [sym__list_item_upper_alpha_parens] = STATE(765), - [sym__list_lower_roman_period] = STATE(129), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(129), - [sym__list_item_lower_roman_paren] = STATE(769), - [sym__list_lower_roman_parens] = STATE(129), - [sym__list_item_lower_roman_parens] = STATE(786), - [sym__list_upper_roman_period] = STATE(129), - [sym__list_item_upper_roman_period] = STATE(791), - [sym__list_upper_roman_paren] = STATE(129), - [sym__list_item_upper_roman_paren] = STATE(793), - [sym__list_upper_roman_parens] = STATE(129), - [sym__list_item_upper_roman_parens] = STATE(799), - [sym_table] = STATE(168), + [sym__block_with_heading] = STATE(175), + [sym__block_element] = STATE(175), + [sym_heading] = STATE(175), + [sym_list] = STATE(175), + [sym__list_dash] = STATE(131), + [sym__list_item_dash] = STATE(599), + [sym__list_plus] = STATE(131), + [sym__list_item_plus] = STATE(606), + [sym__list_star] = STATE(131), + [sym__list_item_star] = STATE(664), + [sym__list_task] = STATE(131), + [sym__list_item_task] = STATE(673), + [sym_list_marker_task] = STATE(44), + [sym__list_definition] = STATE(131), + [sym__list_item_definition] = STATE(792), + [sym__list_decimal_period] = STATE(131), + [sym__list_item_decimal_period] = STATE(691), + [sym__list_decimal_paren] = STATE(131), + [sym__list_item_decimal_paren] = STATE(692), + [sym__list_decimal_parens] = STATE(131), + [sym__list_item_decimal_parens] = STATE(710), + [sym__list_lower_alpha_period] = STATE(131), + [sym__list_item_lower_alpha_period] = STATE(714), + [sym__list_lower_alpha_paren] = STATE(131), + [sym__list_item_lower_alpha_paren] = STATE(717), + [sym__list_lower_alpha_parens] = STATE(131), + [sym__list_item_lower_alpha_parens] = STATE(721), + [sym__list_upper_alpha_period] = STATE(131), + [sym__list_item_upper_alpha_period] = STATE(726), + [sym__list_upper_alpha_paren] = STATE(131), + [sym__list_item_upper_alpha_paren] = STATE(747), + [sym__list_upper_alpha_parens] = STATE(131), + [sym__list_item_upper_alpha_parens] = STATE(751), + [sym__list_lower_roman_period] = STATE(131), + [sym__list_item_lower_roman_period] = STATE(753), + [sym__list_lower_roman_paren] = STATE(131), + [sym__list_item_lower_roman_paren] = STATE(755), + [sym__list_lower_roman_parens] = STATE(131), + [sym__list_item_lower_roman_parens] = STATE(760), + [sym__list_upper_roman_period] = STATE(131), + [sym__list_item_upper_roman_period] = STATE(761), + [sym__list_upper_roman_paren] = STATE(131), + [sym__list_item_upper_roman_paren] = STATE(766), + [sym__list_upper_roman_parens] = STATE(131), + [sym__list_item_upper_roman_parens] = STATE(784), + [sym_table] = STATE(175), [sym__table_row] = STATE(67), [sym_table_header] = STATE(67), [sym_table_separator] = STATE(67), [sym_table_row] = STATE(67), - [sym_footnote] = STATE(168), + [sym_footnote] = STATE(175), [sym_footnote_marker_begin] = STATE(1139), - [sym_div] = STATE(168), + [sym_div] = STATE(175), [sym__div_marker_begin] = STATE(1055), - [sym_code_block] = STATE(168), - [sym_raw_block] = STATE(168), - [sym_thematic_break] = STATE(168), - [sym_block_quote] = STATE(168), - [sym__block_quote_prefix] = STATE(214), - [sym_link_reference_definition] = STATE(168), - [sym_block_attribute] = STATE(168), - [sym__paragraph] = STATE(168), - [sym__paragraph_content] = STATE(766), - [sym__paragraph_inline_content] = STATE(824), - [sym__inline] = STATE(654), - [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(323), - [aux_sym__list_plus_repeat1] = STATE(324), - [aux_sym__list_star_repeat1] = STATE(325), - [aux_sym__list_task_repeat1] = STATE(299), - [aux_sym__list_definition_repeat1] = STATE(491), - [aux_sym__list_decimal_period_repeat1] = STATE(492), - [aux_sym__list_decimal_paren_repeat1] = STATE(493), - [aux_sym__list_decimal_parens_repeat1] = STATE(494), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(495), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(496), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(497), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(498), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(499), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(500), - [aux_sym__list_lower_roman_period_repeat1] = STATE(501), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(502), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(503), - [aux_sym__list_upper_roman_period_repeat1] = STATE(504), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(505), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(506), + [sym_code_block] = STATE(175), + [sym_raw_block] = STATE(175), + [sym_thematic_break] = STATE(175), + [sym_block_quote] = STATE(175), + [sym__block_quote_prefix] = STATE(213), + [sym_link_reference_definition] = STATE(175), + [sym_block_attribute] = STATE(175), + [sym__paragraph] = STATE(175), + [sym__paragraph_content] = STATE(765), + [sym__paragraph_inline_content] = STATE(814), + [sym__inline] = STATE(657), + [sym__symbol_fallback] = STATE(271), + [aux_sym__list_dash_repeat1] = STATE(326), + [aux_sym__list_plus_repeat1] = STATE(327), + [aux_sym__list_star_repeat1] = STATE(328), + [aux_sym__list_task_repeat1] = STATE(289), + [aux_sym__list_definition_repeat1] = STATE(489), + [aux_sym__list_decimal_period_repeat1] = STATE(490), + [aux_sym__list_decimal_paren_repeat1] = STATE(491), + [aux_sym__list_decimal_parens_repeat1] = STATE(492), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(493), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(494), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(495), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(496), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(497), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(498), + [aux_sym__list_lower_roman_period_repeat1] = STATE(499), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(500), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(501), + [aux_sym__list_upper_roman_period_repeat1] = STATE(502), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(503), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(504), [aux_sym_table_repeat1] = STATE(67), - [aux_sym_div_repeat1] = STATE(13), + [aux_sym_div_repeat1] = STATE(18), [aux_sym__block_quote_prefix_repeat1] = STATE(226), - [aux_sym__inline_repeat1] = STATE(273), - [anon_sym_LBRACK] = ACTIONS(77), + [aux_sym__inline_repeat1] = STATE(271), + [anon_sym_LBRACK] = ACTIONS(75), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_DOT] = ACTIONS(9), [aux_sym_identifier_token1] = ACTIONS(9), @@ -6836,7 +6852,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(238), [sym__heading_begin] = ACTIONS(15), [sym__div_begin] = ACTIONS(17), - [sym__code_block_begin] = ACTIONS(83), + [sym__code_block_begin] = ACTIONS(81), [sym_list_marker_dash] = ACTIONS(21), [sym_list_marker_star] = ACTIONS(23), [sym_list_marker_plus] = ACTIONS(25), @@ -6857,107 +6873,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(55), [sym_list_marker_lower_roman_parens] = ACTIONS(57), [sym_list_marker_upper_roman_parens] = ACTIONS(59), - [sym__block_quote_begin] = ACTIONS(85), + [sym__block_quote_begin] = ACTIONS(83), [sym__block_quote_continuation] = ACTIONS(240), - [sym__thematic_break_dash] = ACTIONS(87), - [sym__thematic_break_star] = ACTIONS(87), - [sym__table_header_begin] = ACTIONS(89), - [sym__table_separator_begin] = ACTIONS(91), - [sym__table_row_begin] = ACTIONS(93), - [sym__block_attribute_begin] = ACTIONS(95), + [sym__thematic_break_dash] = ACTIONS(85), + [sym__thematic_break_star] = ACTIONS(85), + [sym__table_header_begin] = ACTIONS(87), + [sym__table_separator_begin] = ACTIONS(89), + [sym__table_row_begin] = ACTIONS(91), + [sym__block_attribute_begin] = ACTIONS(93), }, [18] = { - [sym__block_with_heading] = STATE(168), - [sym__block_element] = STATE(168), - [sym_heading] = STATE(168), - [sym_list] = STATE(168), - [sym__list_dash] = STATE(129), - [sym__list_item_dash] = STATE(595), - [sym__list_plus] = STATE(129), - [sym__list_item_plus] = STATE(657), - [sym__list_star] = STATE(129), - [sym__list_item_star] = STATE(570), - [sym__list_task] = STATE(129), - [sym__list_item_task] = STATE(586), - [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(129), - [sym__list_item_definition] = STATE(694), - [sym__list_decimal_period] = STATE(129), - [sym__list_item_decimal_period] = STATE(714), - [sym__list_decimal_paren] = STATE(129), - [sym__list_item_decimal_paren] = STATE(719), - [sym__list_decimal_parens] = STATE(129), - [sym__list_item_decimal_parens] = STATE(746), - [sym__list_lower_alpha_period] = STATE(129), - [sym__list_item_lower_alpha_period] = STATE(748), - [sym__list_lower_alpha_paren] = STATE(129), - [sym__list_item_lower_alpha_paren] = STATE(749), - [sym__list_lower_alpha_parens] = STATE(129), - [sym__list_item_lower_alpha_parens] = STATE(753), - [sym__list_upper_alpha_period] = STATE(129), - [sym__list_item_upper_alpha_period] = STATE(761), - [sym__list_upper_alpha_paren] = STATE(129), - [sym__list_item_upper_alpha_paren] = STATE(764), - [sym__list_upper_alpha_parens] = STATE(129), - [sym__list_item_upper_alpha_parens] = STATE(765), - [sym__list_lower_roman_period] = STATE(129), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(129), - [sym__list_item_lower_roman_paren] = STATE(769), - [sym__list_lower_roman_parens] = STATE(129), - [sym__list_item_lower_roman_parens] = STATE(786), - [sym__list_upper_roman_period] = STATE(129), - [sym__list_item_upper_roman_period] = STATE(791), - [sym__list_upper_roman_paren] = STATE(129), - [sym__list_item_upper_roman_paren] = STATE(793), - [sym__list_upper_roman_parens] = STATE(129), - [sym__list_item_upper_roman_parens] = STATE(799), - [sym_table] = STATE(168), + [sym__block_with_heading] = STATE(175), + [sym__block_element] = STATE(175), + [sym_heading] = STATE(175), + [sym_list] = STATE(175), + [sym__list_dash] = STATE(131), + [sym__list_item_dash] = STATE(599), + [sym__list_plus] = STATE(131), + [sym__list_item_plus] = STATE(606), + [sym__list_star] = STATE(131), + [sym__list_item_star] = STATE(664), + [sym__list_task] = STATE(131), + [sym__list_item_task] = STATE(673), + [sym_list_marker_task] = STATE(44), + [sym__list_definition] = STATE(131), + [sym__list_item_definition] = STATE(792), + [sym__list_decimal_period] = STATE(131), + [sym__list_item_decimal_period] = STATE(691), + [sym__list_decimal_paren] = STATE(131), + [sym__list_item_decimal_paren] = STATE(692), + [sym__list_decimal_parens] = STATE(131), + [sym__list_item_decimal_parens] = STATE(710), + [sym__list_lower_alpha_period] = STATE(131), + [sym__list_item_lower_alpha_period] = STATE(714), + [sym__list_lower_alpha_paren] = STATE(131), + [sym__list_item_lower_alpha_paren] = STATE(717), + [sym__list_lower_alpha_parens] = STATE(131), + [sym__list_item_lower_alpha_parens] = STATE(721), + [sym__list_upper_alpha_period] = STATE(131), + [sym__list_item_upper_alpha_period] = STATE(726), + [sym__list_upper_alpha_paren] = STATE(131), + [sym__list_item_upper_alpha_paren] = STATE(747), + [sym__list_upper_alpha_parens] = STATE(131), + [sym__list_item_upper_alpha_parens] = STATE(751), + [sym__list_lower_roman_period] = STATE(131), + [sym__list_item_lower_roman_period] = STATE(753), + [sym__list_lower_roman_paren] = STATE(131), + [sym__list_item_lower_roman_paren] = STATE(755), + [sym__list_lower_roman_parens] = STATE(131), + [sym__list_item_lower_roman_parens] = STATE(760), + [sym__list_upper_roman_period] = STATE(131), + [sym__list_item_upper_roman_period] = STATE(761), + [sym__list_upper_roman_paren] = STATE(131), + [sym__list_item_upper_roman_paren] = STATE(766), + [sym__list_upper_roman_parens] = STATE(131), + [sym__list_item_upper_roman_parens] = STATE(784), + [sym_table] = STATE(175), [sym__table_row] = STATE(67), [sym_table_header] = STATE(67), [sym_table_separator] = STATE(67), [sym_table_row] = STATE(67), - [sym_footnote] = STATE(168), + [sym_footnote] = STATE(175), [sym_footnote_marker_begin] = STATE(1139), - [sym_div] = STATE(168), + [sym_div] = STATE(175), [sym__div_marker_begin] = STATE(1055), - [sym_code_block] = STATE(168), - [sym_raw_block] = STATE(168), - [sym_thematic_break] = STATE(168), - [sym_block_quote] = STATE(168), - [sym__block_quote_prefix] = STATE(218), - [sym_link_reference_definition] = STATE(168), - [sym_block_attribute] = STATE(168), - [sym__paragraph] = STATE(168), - [sym__paragraph_content] = STATE(766), - [sym__paragraph_inline_content] = STATE(824), - [sym__inline] = STATE(654), - [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(323), - [aux_sym__list_plus_repeat1] = STATE(324), - [aux_sym__list_star_repeat1] = STATE(325), - [aux_sym__list_task_repeat1] = STATE(299), - [aux_sym__list_definition_repeat1] = STATE(491), - [aux_sym__list_decimal_period_repeat1] = STATE(492), - [aux_sym__list_decimal_paren_repeat1] = STATE(493), - [aux_sym__list_decimal_parens_repeat1] = STATE(494), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(495), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(496), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(497), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(498), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(499), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(500), - [aux_sym__list_lower_roman_period_repeat1] = STATE(501), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(502), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(503), - [aux_sym__list_upper_roman_period_repeat1] = STATE(504), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(505), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(506), + [sym_code_block] = STATE(175), + [sym_raw_block] = STATE(175), + [sym_thematic_break] = STATE(175), + [sym_block_quote] = STATE(175), + [sym__block_quote_prefix] = STATE(216), + [sym_link_reference_definition] = STATE(175), + [sym_block_attribute] = STATE(175), + [sym__paragraph] = STATE(175), + [sym__paragraph_content] = STATE(765), + [sym__paragraph_inline_content] = STATE(814), + [sym__inline] = STATE(657), + [sym__symbol_fallback] = STATE(271), + [aux_sym__list_dash_repeat1] = STATE(326), + [aux_sym__list_plus_repeat1] = STATE(327), + [aux_sym__list_star_repeat1] = STATE(328), + [aux_sym__list_task_repeat1] = STATE(289), + [aux_sym__list_definition_repeat1] = STATE(489), + [aux_sym__list_decimal_period_repeat1] = STATE(490), + [aux_sym__list_decimal_paren_repeat1] = STATE(491), + [aux_sym__list_decimal_parens_repeat1] = STATE(492), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(493), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(494), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(495), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(496), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(497), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(498), + [aux_sym__list_lower_roman_period_repeat1] = STATE(499), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(500), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(501), + [aux_sym__list_upper_roman_period_repeat1] = STATE(502), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(503), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(504), [aux_sym_table_repeat1] = STATE(67), - [aux_sym_div_repeat1] = STATE(19), + [aux_sym_div_repeat1] = STATE(14), [aux_sym__block_quote_prefix_repeat1] = STATE(226), - [aux_sym__inline_repeat1] = STATE(273), - [anon_sym_LBRACK] = ACTIONS(77), + [aux_sym__inline_repeat1] = STATE(271), + [anon_sym_LBRACK] = ACTIONS(75), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_DOT] = ACTIONS(9), [aux_sym_identifier_token1] = ACTIONS(9), @@ -6968,7 +6984,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(238), [sym__heading_begin] = ACTIONS(15), [sym__div_begin] = ACTIONS(17), - [sym__code_block_begin] = ACTIONS(83), + [sym__code_block_begin] = ACTIONS(81), [sym_list_marker_dash] = ACTIONS(21), [sym_list_marker_star] = ACTIONS(23), [sym_list_marker_plus] = ACTIONS(25), @@ -6989,107 +7005,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(55), [sym_list_marker_lower_roman_parens] = ACTIONS(57), [sym_list_marker_upper_roman_parens] = ACTIONS(59), - [sym__block_quote_begin] = ACTIONS(85), + [sym__block_quote_begin] = ACTIONS(83), [sym__block_quote_continuation] = ACTIONS(240), - [sym__thematic_break_dash] = ACTIONS(87), - [sym__thematic_break_star] = ACTIONS(87), - [sym__table_header_begin] = ACTIONS(89), - [sym__table_separator_begin] = ACTIONS(91), - [sym__table_row_begin] = ACTIONS(93), - [sym__block_attribute_begin] = ACTIONS(95), + [sym__thematic_break_dash] = ACTIONS(85), + [sym__thematic_break_star] = ACTIONS(85), + [sym__table_header_begin] = ACTIONS(87), + [sym__table_separator_begin] = ACTIONS(89), + [sym__table_row_begin] = ACTIONS(91), + [sym__block_attribute_begin] = ACTIONS(93), }, [19] = { - [sym__block_with_heading] = STATE(168), - [sym__block_element] = STATE(168), - [sym_heading] = STATE(168), - [sym_list] = STATE(168), - [sym__list_dash] = STATE(129), - [sym__list_item_dash] = STATE(595), - [sym__list_plus] = STATE(129), - [sym__list_item_plus] = STATE(657), - [sym__list_star] = STATE(129), - [sym__list_item_star] = STATE(570), - [sym__list_task] = STATE(129), - [sym__list_item_task] = STATE(586), - [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(129), - [sym__list_item_definition] = STATE(694), - [sym__list_decimal_period] = STATE(129), - [sym__list_item_decimal_period] = STATE(714), - [sym__list_decimal_paren] = STATE(129), - [sym__list_item_decimal_paren] = STATE(719), - [sym__list_decimal_parens] = STATE(129), - [sym__list_item_decimal_parens] = STATE(746), - [sym__list_lower_alpha_period] = STATE(129), - [sym__list_item_lower_alpha_period] = STATE(748), - [sym__list_lower_alpha_paren] = STATE(129), - [sym__list_item_lower_alpha_paren] = STATE(749), - [sym__list_lower_alpha_parens] = STATE(129), - [sym__list_item_lower_alpha_parens] = STATE(753), - [sym__list_upper_alpha_period] = STATE(129), - [sym__list_item_upper_alpha_period] = STATE(761), - [sym__list_upper_alpha_paren] = STATE(129), - [sym__list_item_upper_alpha_paren] = STATE(764), - [sym__list_upper_alpha_parens] = STATE(129), - [sym__list_item_upper_alpha_parens] = STATE(765), - [sym__list_lower_roman_period] = STATE(129), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(129), - [sym__list_item_lower_roman_paren] = STATE(769), - [sym__list_lower_roman_parens] = STATE(129), - [sym__list_item_lower_roman_parens] = STATE(786), - [sym__list_upper_roman_period] = STATE(129), - [sym__list_item_upper_roman_period] = STATE(791), - [sym__list_upper_roman_paren] = STATE(129), - [sym__list_item_upper_roman_paren] = STATE(793), - [sym__list_upper_roman_parens] = STATE(129), - [sym__list_item_upper_roman_parens] = STATE(799), - [sym_table] = STATE(168), + [sym__block_with_heading] = STATE(175), + [sym__block_element] = STATE(175), + [sym_heading] = STATE(175), + [sym_list] = STATE(175), + [sym__list_dash] = STATE(131), + [sym__list_item_dash] = STATE(599), + [sym__list_plus] = STATE(131), + [sym__list_item_plus] = STATE(606), + [sym__list_star] = STATE(131), + [sym__list_item_star] = STATE(664), + [sym__list_task] = STATE(131), + [sym__list_item_task] = STATE(673), + [sym_list_marker_task] = STATE(44), + [sym__list_definition] = STATE(131), + [sym__list_item_definition] = STATE(792), + [sym__list_decimal_period] = STATE(131), + [sym__list_item_decimal_period] = STATE(691), + [sym__list_decimal_paren] = STATE(131), + [sym__list_item_decimal_paren] = STATE(692), + [sym__list_decimal_parens] = STATE(131), + [sym__list_item_decimal_parens] = STATE(710), + [sym__list_lower_alpha_period] = STATE(131), + [sym__list_item_lower_alpha_period] = STATE(714), + [sym__list_lower_alpha_paren] = STATE(131), + [sym__list_item_lower_alpha_paren] = STATE(717), + [sym__list_lower_alpha_parens] = STATE(131), + [sym__list_item_lower_alpha_parens] = STATE(721), + [sym__list_upper_alpha_period] = STATE(131), + [sym__list_item_upper_alpha_period] = STATE(726), + [sym__list_upper_alpha_paren] = STATE(131), + [sym__list_item_upper_alpha_paren] = STATE(747), + [sym__list_upper_alpha_parens] = STATE(131), + [sym__list_item_upper_alpha_parens] = STATE(751), + [sym__list_lower_roman_period] = STATE(131), + [sym__list_item_lower_roman_period] = STATE(753), + [sym__list_lower_roman_paren] = STATE(131), + [sym__list_item_lower_roman_paren] = STATE(755), + [sym__list_lower_roman_parens] = STATE(131), + [sym__list_item_lower_roman_parens] = STATE(760), + [sym__list_upper_roman_period] = STATE(131), + [sym__list_item_upper_roman_period] = STATE(761), + [sym__list_upper_roman_paren] = STATE(131), + [sym__list_item_upper_roman_paren] = STATE(766), + [sym__list_upper_roman_parens] = STATE(131), + [sym__list_item_upper_roman_parens] = STATE(784), + [sym_table] = STATE(175), [sym__table_row] = STATE(67), [sym_table_header] = STATE(67), [sym_table_separator] = STATE(67), [sym_table_row] = STATE(67), - [sym_footnote] = STATE(168), + [sym_footnote] = STATE(175), [sym_footnote_marker_begin] = STATE(1139), - [sym_div] = STATE(168), + [sym_div] = STATE(175), [sym__div_marker_begin] = STATE(1055), - [sym_code_block] = STATE(168), - [sym_raw_block] = STATE(168), - [sym_thematic_break] = STATE(168), - [sym_block_quote] = STATE(168), + [sym_code_block] = STATE(175), + [sym_raw_block] = STATE(175), + [sym_thematic_break] = STATE(175), + [sym_block_quote] = STATE(175), [sym__block_quote_prefix] = STATE(217), - [sym_link_reference_definition] = STATE(168), - [sym_block_attribute] = STATE(168), - [sym__paragraph] = STATE(168), - [sym__paragraph_content] = STATE(766), - [sym__paragraph_inline_content] = STATE(824), - [sym__inline] = STATE(654), - [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(323), - [aux_sym__list_plus_repeat1] = STATE(324), - [aux_sym__list_star_repeat1] = STATE(325), - [aux_sym__list_task_repeat1] = STATE(299), - [aux_sym__list_definition_repeat1] = STATE(491), - [aux_sym__list_decimal_period_repeat1] = STATE(492), - [aux_sym__list_decimal_paren_repeat1] = STATE(493), - [aux_sym__list_decimal_parens_repeat1] = STATE(494), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(495), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(496), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(497), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(498), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(499), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(500), - [aux_sym__list_lower_roman_period_repeat1] = STATE(501), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(502), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(503), - [aux_sym__list_upper_roman_period_repeat1] = STATE(504), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(505), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(506), + [sym_link_reference_definition] = STATE(175), + [sym_block_attribute] = STATE(175), + [sym__paragraph] = STATE(175), + [sym__paragraph_content] = STATE(765), + [sym__paragraph_inline_content] = STATE(814), + [sym__inline] = STATE(657), + [sym__symbol_fallback] = STATE(271), + [aux_sym__list_dash_repeat1] = STATE(326), + [aux_sym__list_plus_repeat1] = STATE(327), + [aux_sym__list_star_repeat1] = STATE(328), + [aux_sym__list_task_repeat1] = STATE(289), + [aux_sym__list_definition_repeat1] = STATE(489), + [aux_sym__list_decimal_period_repeat1] = STATE(490), + [aux_sym__list_decimal_paren_repeat1] = STATE(491), + [aux_sym__list_decimal_parens_repeat1] = STATE(492), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(493), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(494), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(495), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(496), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(497), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(498), + [aux_sym__list_lower_roman_period_repeat1] = STATE(499), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(500), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(501), + [aux_sym__list_upper_roman_period_repeat1] = STATE(502), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(503), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(504), [aux_sym_table_repeat1] = STATE(67), - [aux_sym_div_repeat1] = STATE(13), + [aux_sym_div_repeat1] = STATE(20), [aux_sym__block_quote_prefix_repeat1] = STATE(226), - [aux_sym__inline_repeat1] = STATE(273), - [anon_sym_LBRACK] = ACTIONS(77), + [aux_sym__inline_repeat1] = STATE(271), + [anon_sym_LBRACK] = ACTIONS(75), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_DOT] = ACTIONS(9), [aux_sym_identifier_token1] = ACTIONS(9), @@ -7100,7 +7116,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(238), [sym__heading_begin] = ACTIONS(15), [sym__div_begin] = ACTIONS(17), - [sym__code_block_begin] = ACTIONS(83), + [sym__code_block_begin] = ACTIONS(81), [sym_list_marker_dash] = ACTIONS(21), [sym_list_marker_star] = ACTIONS(23), [sym_list_marker_plus] = ACTIONS(25), @@ -7121,107 +7137,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(55), [sym_list_marker_lower_roman_parens] = ACTIONS(57), [sym_list_marker_upper_roman_parens] = ACTIONS(59), - [sym__block_quote_begin] = ACTIONS(85), + [sym__block_quote_begin] = ACTIONS(83), [sym__block_quote_continuation] = ACTIONS(240), - [sym__thematic_break_dash] = ACTIONS(87), - [sym__thematic_break_star] = ACTIONS(87), - [sym__table_header_begin] = ACTIONS(89), - [sym__table_separator_begin] = ACTIONS(91), - [sym__table_row_begin] = ACTIONS(93), - [sym__block_attribute_begin] = ACTIONS(95), + [sym__thematic_break_dash] = ACTIONS(85), + [sym__thematic_break_star] = ACTIONS(85), + [sym__table_header_begin] = ACTIONS(87), + [sym__table_separator_begin] = ACTIONS(89), + [sym__table_row_begin] = ACTIONS(91), + [sym__block_attribute_begin] = ACTIONS(93), }, [20] = { - [sym__block_with_heading] = STATE(168), - [sym__block_element] = STATE(168), - [sym_heading] = STATE(168), - [sym_list] = STATE(168), - [sym__list_dash] = STATE(129), - [sym__list_item_dash] = STATE(595), - [sym__list_plus] = STATE(129), - [sym__list_item_plus] = STATE(657), - [sym__list_star] = STATE(129), - [sym__list_item_star] = STATE(570), - [sym__list_task] = STATE(129), - [sym__list_item_task] = STATE(586), - [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(129), - [sym__list_item_definition] = STATE(694), - [sym__list_decimal_period] = STATE(129), - [sym__list_item_decimal_period] = STATE(714), - [sym__list_decimal_paren] = STATE(129), - [sym__list_item_decimal_paren] = STATE(719), - [sym__list_decimal_parens] = STATE(129), - [sym__list_item_decimal_parens] = STATE(746), - [sym__list_lower_alpha_period] = STATE(129), - [sym__list_item_lower_alpha_period] = STATE(748), - [sym__list_lower_alpha_paren] = STATE(129), - [sym__list_item_lower_alpha_paren] = STATE(749), - [sym__list_lower_alpha_parens] = STATE(129), - [sym__list_item_lower_alpha_parens] = STATE(753), - [sym__list_upper_alpha_period] = STATE(129), - [sym__list_item_upper_alpha_period] = STATE(761), - [sym__list_upper_alpha_paren] = STATE(129), - [sym__list_item_upper_alpha_paren] = STATE(764), - [sym__list_upper_alpha_parens] = STATE(129), - [sym__list_item_upper_alpha_parens] = STATE(765), - [sym__list_lower_roman_period] = STATE(129), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(129), - [sym__list_item_lower_roman_paren] = STATE(769), - [sym__list_lower_roman_parens] = STATE(129), - [sym__list_item_lower_roman_parens] = STATE(786), - [sym__list_upper_roman_period] = STATE(129), - [sym__list_item_upper_roman_period] = STATE(791), - [sym__list_upper_roman_paren] = STATE(129), - [sym__list_item_upper_roman_paren] = STATE(793), - [sym__list_upper_roman_parens] = STATE(129), - [sym__list_item_upper_roman_parens] = STATE(799), - [sym_table] = STATE(168), + [sym__block_with_heading] = STATE(175), + [sym__block_element] = STATE(175), + [sym_heading] = STATE(175), + [sym_list] = STATE(175), + [sym__list_dash] = STATE(131), + [sym__list_item_dash] = STATE(599), + [sym__list_plus] = STATE(131), + [sym__list_item_plus] = STATE(606), + [sym__list_star] = STATE(131), + [sym__list_item_star] = STATE(664), + [sym__list_task] = STATE(131), + [sym__list_item_task] = STATE(673), + [sym_list_marker_task] = STATE(44), + [sym__list_definition] = STATE(131), + [sym__list_item_definition] = STATE(792), + [sym__list_decimal_period] = STATE(131), + [sym__list_item_decimal_period] = STATE(691), + [sym__list_decimal_paren] = STATE(131), + [sym__list_item_decimal_paren] = STATE(692), + [sym__list_decimal_parens] = STATE(131), + [sym__list_item_decimal_parens] = STATE(710), + [sym__list_lower_alpha_period] = STATE(131), + [sym__list_item_lower_alpha_period] = STATE(714), + [sym__list_lower_alpha_paren] = STATE(131), + [sym__list_item_lower_alpha_paren] = STATE(717), + [sym__list_lower_alpha_parens] = STATE(131), + [sym__list_item_lower_alpha_parens] = STATE(721), + [sym__list_upper_alpha_period] = STATE(131), + [sym__list_item_upper_alpha_period] = STATE(726), + [sym__list_upper_alpha_paren] = STATE(131), + [sym__list_item_upper_alpha_paren] = STATE(747), + [sym__list_upper_alpha_parens] = STATE(131), + [sym__list_item_upper_alpha_parens] = STATE(751), + [sym__list_lower_roman_period] = STATE(131), + [sym__list_item_lower_roman_period] = STATE(753), + [sym__list_lower_roman_paren] = STATE(131), + [sym__list_item_lower_roman_paren] = STATE(755), + [sym__list_lower_roman_parens] = STATE(131), + [sym__list_item_lower_roman_parens] = STATE(760), + [sym__list_upper_roman_period] = STATE(131), + [sym__list_item_upper_roman_period] = STATE(761), + [sym__list_upper_roman_paren] = STATE(131), + [sym__list_item_upper_roman_paren] = STATE(766), + [sym__list_upper_roman_parens] = STATE(131), + [sym__list_item_upper_roman_parens] = STATE(784), + [sym_table] = STATE(175), [sym__table_row] = STATE(67), [sym_table_header] = STATE(67), [sym_table_separator] = STATE(67), [sym_table_row] = STATE(67), - [sym_footnote] = STATE(168), + [sym_footnote] = STATE(175), [sym_footnote_marker_begin] = STATE(1139), - [sym_div] = STATE(168), + [sym_div] = STATE(175), [sym__div_marker_begin] = STATE(1055), - [sym_code_block] = STATE(168), - [sym_raw_block] = STATE(168), - [sym_thematic_break] = STATE(168), - [sym_block_quote] = STATE(168), - [sym__block_quote_prefix] = STATE(219), - [sym_link_reference_definition] = STATE(168), - [sym_block_attribute] = STATE(168), - [sym__paragraph] = STATE(168), - [sym__paragraph_content] = STATE(766), - [sym__paragraph_inline_content] = STATE(824), - [sym__inline] = STATE(654), - [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(323), - [aux_sym__list_plus_repeat1] = STATE(324), - [aux_sym__list_star_repeat1] = STATE(325), - [aux_sym__list_task_repeat1] = STATE(299), - [aux_sym__list_definition_repeat1] = STATE(491), - [aux_sym__list_decimal_period_repeat1] = STATE(492), - [aux_sym__list_decimal_paren_repeat1] = STATE(493), - [aux_sym__list_decimal_parens_repeat1] = STATE(494), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(495), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(496), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(497), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(498), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(499), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(500), - [aux_sym__list_lower_roman_period_repeat1] = STATE(501), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(502), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(503), - [aux_sym__list_upper_roman_period_repeat1] = STATE(504), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(505), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(506), + [sym_code_block] = STATE(175), + [sym_raw_block] = STATE(175), + [sym_thematic_break] = STATE(175), + [sym_block_quote] = STATE(175), + [sym__block_quote_prefix] = STATE(218), + [sym_link_reference_definition] = STATE(175), + [sym_block_attribute] = STATE(175), + [sym__paragraph] = STATE(175), + [sym__paragraph_content] = STATE(765), + [sym__paragraph_inline_content] = STATE(814), + [sym__inline] = STATE(657), + [sym__symbol_fallback] = STATE(271), + [aux_sym__list_dash_repeat1] = STATE(326), + [aux_sym__list_plus_repeat1] = STATE(327), + [aux_sym__list_star_repeat1] = STATE(328), + [aux_sym__list_task_repeat1] = STATE(289), + [aux_sym__list_definition_repeat1] = STATE(489), + [aux_sym__list_decimal_period_repeat1] = STATE(490), + [aux_sym__list_decimal_paren_repeat1] = STATE(491), + [aux_sym__list_decimal_parens_repeat1] = STATE(492), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(493), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(494), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(495), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(496), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(497), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(498), + [aux_sym__list_lower_roman_period_repeat1] = STATE(499), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(500), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(501), + [aux_sym__list_upper_roman_period_repeat1] = STATE(502), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(503), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(504), [aux_sym_table_repeat1] = STATE(67), - [aux_sym_div_repeat1] = STATE(21), + [aux_sym_div_repeat1] = STATE(14), [aux_sym__block_quote_prefix_repeat1] = STATE(226), - [aux_sym__inline_repeat1] = STATE(273), - [anon_sym_LBRACK] = ACTIONS(77), + [aux_sym__inline_repeat1] = STATE(271), + [anon_sym_LBRACK] = ACTIONS(75), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_DOT] = ACTIONS(9), [aux_sym_identifier_token1] = ACTIONS(9), @@ -7232,7 +7248,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(238), [sym__heading_begin] = ACTIONS(15), [sym__div_begin] = ACTIONS(17), - [sym__code_block_begin] = ACTIONS(83), + [sym__code_block_begin] = ACTIONS(81), [sym_list_marker_dash] = ACTIONS(21), [sym_list_marker_star] = ACTIONS(23), [sym_list_marker_plus] = ACTIONS(25), @@ -7253,107 +7269,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(55), [sym_list_marker_lower_roman_parens] = ACTIONS(57), [sym_list_marker_upper_roman_parens] = ACTIONS(59), - [sym__block_quote_begin] = ACTIONS(85), + [sym__block_quote_begin] = ACTIONS(83), [sym__block_quote_continuation] = ACTIONS(240), - [sym__thematic_break_dash] = ACTIONS(87), - [sym__thematic_break_star] = ACTIONS(87), - [sym__table_header_begin] = ACTIONS(89), - [sym__table_separator_begin] = ACTIONS(91), - [sym__table_row_begin] = ACTIONS(93), - [sym__block_attribute_begin] = ACTIONS(95), + [sym__thematic_break_dash] = ACTIONS(85), + [sym__thematic_break_star] = ACTIONS(85), + [sym__table_header_begin] = ACTIONS(87), + [sym__table_separator_begin] = ACTIONS(89), + [sym__table_row_begin] = ACTIONS(91), + [sym__block_attribute_begin] = ACTIONS(93), }, [21] = { - [sym__block_with_heading] = STATE(168), - [sym__block_element] = STATE(168), - [sym_heading] = STATE(168), - [sym_list] = STATE(168), - [sym__list_dash] = STATE(129), - [sym__list_item_dash] = STATE(595), - [sym__list_plus] = STATE(129), - [sym__list_item_plus] = STATE(657), - [sym__list_star] = STATE(129), - [sym__list_item_star] = STATE(570), - [sym__list_task] = STATE(129), - [sym__list_item_task] = STATE(586), - [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(129), - [sym__list_item_definition] = STATE(694), - [sym__list_decimal_period] = STATE(129), - [sym__list_item_decimal_period] = STATE(714), - [sym__list_decimal_paren] = STATE(129), - [sym__list_item_decimal_paren] = STATE(719), - [sym__list_decimal_parens] = STATE(129), - [sym__list_item_decimal_parens] = STATE(746), - [sym__list_lower_alpha_period] = STATE(129), - [sym__list_item_lower_alpha_period] = STATE(748), - [sym__list_lower_alpha_paren] = STATE(129), - [sym__list_item_lower_alpha_paren] = STATE(749), - [sym__list_lower_alpha_parens] = STATE(129), - [sym__list_item_lower_alpha_parens] = STATE(753), - [sym__list_upper_alpha_period] = STATE(129), - [sym__list_item_upper_alpha_period] = STATE(761), - [sym__list_upper_alpha_paren] = STATE(129), - [sym__list_item_upper_alpha_paren] = STATE(764), - [sym__list_upper_alpha_parens] = STATE(129), - [sym__list_item_upper_alpha_parens] = STATE(765), - [sym__list_lower_roman_period] = STATE(129), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(129), - [sym__list_item_lower_roman_paren] = STATE(769), - [sym__list_lower_roman_parens] = STATE(129), - [sym__list_item_lower_roman_parens] = STATE(786), - [sym__list_upper_roman_period] = STATE(129), - [sym__list_item_upper_roman_period] = STATE(791), - [sym__list_upper_roman_paren] = STATE(129), - [sym__list_item_upper_roman_paren] = STATE(793), - [sym__list_upper_roman_parens] = STATE(129), - [sym__list_item_upper_roman_parens] = STATE(799), - [sym_table] = STATE(168), + [sym__block_with_heading] = STATE(175), + [sym__block_element] = STATE(175), + [sym_heading] = STATE(175), + [sym_list] = STATE(175), + [sym__list_dash] = STATE(131), + [sym__list_item_dash] = STATE(599), + [sym__list_plus] = STATE(131), + [sym__list_item_plus] = STATE(606), + [sym__list_star] = STATE(131), + [sym__list_item_star] = STATE(664), + [sym__list_task] = STATE(131), + [sym__list_item_task] = STATE(673), + [sym_list_marker_task] = STATE(44), + [sym__list_definition] = STATE(131), + [sym__list_item_definition] = STATE(792), + [sym__list_decimal_period] = STATE(131), + [sym__list_item_decimal_period] = STATE(691), + [sym__list_decimal_paren] = STATE(131), + [sym__list_item_decimal_paren] = STATE(692), + [sym__list_decimal_parens] = STATE(131), + [sym__list_item_decimal_parens] = STATE(710), + [sym__list_lower_alpha_period] = STATE(131), + [sym__list_item_lower_alpha_period] = STATE(714), + [sym__list_lower_alpha_paren] = STATE(131), + [sym__list_item_lower_alpha_paren] = STATE(717), + [sym__list_lower_alpha_parens] = STATE(131), + [sym__list_item_lower_alpha_parens] = STATE(721), + [sym__list_upper_alpha_period] = STATE(131), + [sym__list_item_upper_alpha_period] = STATE(726), + [sym__list_upper_alpha_paren] = STATE(131), + [sym__list_item_upper_alpha_paren] = STATE(747), + [sym__list_upper_alpha_parens] = STATE(131), + [sym__list_item_upper_alpha_parens] = STATE(751), + [sym__list_lower_roman_period] = STATE(131), + [sym__list_item_lower_roman_period] = STATE(753), + [sym__list_lower_roman_paren] = STATE(131), + [sym__list_item_lower_roman_paren] = STATE(755), + [sym__list_lower_roman_parens] = STATE(131), + [sym__list_item_lower_roman_parens] = STATE(760), + [sym__list_upper_roman_period] = STATE(131), + [sym__list_item_upper_roman_period] = STATE(761), + [sym__list_upper_roman_paren] = STATE(131), + [sym__list_item_upper_roman_paren] = STATE(766), + [sym__list_upper_roman_parens] = STATE(131), + [sym__list_item_upper_roman_parens] = STATE(784), + [sym_table] = STATE(175), [sym__table_row] = STATE(67), [sym_table_header] = STATE(67), [sym_table_separator] = STATE(67), [sym_table_row] = STATE(67), - [sym_footnote] = STATE(168), + [sym_footnote] = STATE(175), [sym_footnote_marker_begin] = STATE(1139), - [sym_div] = STATE(168), + [sym_div] = STATE(175), [sym__div_marker_begin] = STATE(1055), - [sym_code_block] = STATE(168), - [sym_raw_block] = STATE(168), - [sym_thematic_break] = STATE(168), - [sym_block_quote] = STATE(168), + [sym_code_block] = STATE(175), + [sym_raw_block] = STATE(175), + [sym_thematic_break] = STATE(175), + [sym_block_quote] = STATE(175), [sym__block_quote_prefix] = STATE(220), - [sym_link_reference_definition] = STATE(168), - [sym_block_attribute] = STATE(168), - [sym__paragraph] = STATE(168), - [sym__paragraph_content] = STATE(766), - [sym__paragraph_inline_content] = STATE(824), - [sym__inline] = STATE(654), - [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(323), - [aux_sym__list_plus_repeat1] = STATE(324), - [aux_sym__list_star_repeat1] = STATE(325), - [aux_sym__list_task_repeat1] = STATE(299), - [aux_sym__list_definition_repeat1] = STATE(491), - [aux_sym__list_decimal_period_repeat1] = STATE(492), - [aux_sym__list_decimal_paren_repeat1] = STATE(493), - [aux_sym__list_decimal_parens_repeat1] = STATE(494), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(495), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(496), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(497), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(498), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(499), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(500), - [aux_sym__list_lower_roman_period_repeat1] = STATE(501), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(502), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(503), - [aux_sym__list_upper_roman_period_repeat1] = STATE(504), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(505), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(506), + [sym_link_reference_definition] = STATE(175), + [sym_block_attribute] = STATE(175), + [sym__paragraph] = STATE(175), + [sym__paragraph_content] = STATE(765), + [sym__paragraph_inline_content] = STATE(814), + [sym__inline] = STATE(657), + [sym__symbol_fallback] = STATE(271), + [aux_sym__list_dash_repeat1] = STATE(326), + [aux_sym__list_plus_repeat1] = STATE(327), + [aux_sym__list_star_repeat1] = STATE(328), + [aux_sym__list_task_repeat1] = STATE(289), + [aux_sym__list_definition_repeat1] = STATE(489), + [aux_sym__list_decimal_period_repeat1] = STATE(490), + [aux_sym__list_decimal_paren_repeat1] = STATE(491), + [aux_sym__list_decimal_parens_repeat1] = STATE(492), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(493), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(494), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(495), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(496), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(497), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(498), + [aux_sym__list_lower_roman_period_repeat1] = STATE(499), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(500), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(501), + [aux_sym__list_upper_roman_period_repeat1] = STATE(502), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(503), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(504), [aux_sym_table_repeat1] = STATE(67), - [aux_sym_div_repeat1] = STATE(13), + [aux_sym_div_repeat1] = STATE(11), [aux_sym__block_quote_prefix_repeat1] = STATE(226), - [aux_sym__inline_repeat1] = STATE(273), - [anon_sym_LBRACK] = ACTIONS(77), + [aux_sym__inline_repeat1] = STATE(271), + [anon_sym_LBRACK] = ACTIONS(75), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_DOT] = ACTIONS(9), [aux_sym_identifier_token1] = ACTIONS(9), @@ -7364,7 +7380,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(238), [sym__heading_begin] = ACTIONS(15), [sym__div_begin] = ACTIONS(17), - [sym__code_block_begin] = ACTIONS(83), + [sym__code_block_begin] = ACTIONS(81), [sym_list_marker_dash] = ACTIONS(21), [sym_list_marker_star] = ACTIONS(23), [sym_list_marker_plus] = ACTIONS(25), @@ -7385,87 +7401,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(55), [sym_list_marker_lower_roman_parens] = ACTIONS(57), [sym_list_marker_upper_roman_parens] = ACTIONS(59), - [sym__block_quote_begin] = ACTIONS(85), + [sym__block_quote_begin] = ACTIONS(83), [sym__block_quote_continuation] = ACTIONS(240), - [sym__thematic_break_dash] = ACTIONS(87), - [sym__thematic_break_star] = ACTIONS(87), - [sym__table_header_begin] = ACTIONS(89), - [sym__table_separator_begin] = ACTIONS(91), - [sym__table_row_begin] = ACTIONS(93), - [sym__block_attribute_begin] = ACTIONS(95), + [sym__thematic_break_dash] = ACTIONS(85), + [sym__thematic_break_star] = ACTIONS(85), + [sym__table_header_begin] = ACTIONS(87), + [sym__table_separator_begin] = ACTIONS(89), + [sym__table_row_begin] = ACTIONS(91), + [sym__block_attribute_begin] = ACTIONS(93), }, [22] = { - [sym__block_with_heading] = STATE(1151), - [sym__block_element] = STATE(1151), - [sym_heading] = STATE(1151), - [sym_list] = STATE(1151), - [sym__list_dash] = STATE(1007), - [sym__list_item_dash] = STATE(595), - [sym__list_plus] = STATE(1007), - [sym__list_item_plus] = STATE(657), - [sym__list_star] = STATE(1007), - [sym__list_item_star] = STATE(570), - [sym__list_task] = STATE(1007), - [sym__list_item_task] = STATE(586), - [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(1007), - [sym__list_item_definition] = STATE(694), - [sym__list_decimal_period] = STATE(1007), - [sym__list_item_decimal_period] = STATE(714), - [sym__list_decimal_paren] = STATE(1007), - [sym__list_item_decimal_paren] = STATE(719), - [sym__list_decimal_parens] = STATE(1007), - [sym__list_item_decimal_parens] = STATE(746), - [sym__list_lower_alpha_period] = STATE(1007), - [sym__list_item_lower_alpha_period] = STATE(748), - [sym__list_lower_alpha_paren] = STATE(1007), - [sym__list_item_lower_alpha_paren] = STATE(749), - [sym__list_lower_alpha_parens] = STATE(1007), - [sym__list_item_lower_alpha_parens] = STATE(753), - [sym__list_upper_alpha_period] = STATE(1007), - [sym__list_item_upper_alpha_period] = STATE(761), - [sym__list_upper_alpha_paren] = STATE(1007), - [sym__list_item_upper_alpha_paren] = STATE(764), - [sym__list_upper_alpha_parens] = STATE(1007), - [sym__list_item_upper_alpha_parens] = STATE(765), - [sym__list_lower_roman_period] = STATE(1007), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(1007), - [sym__list_item_lower_roman_paren] = STATE(769), - [sym__list_lower_roman_parens] = STATE(1007), - [sym__list_item_lower_roman_parens] = STATE(786), - [sym__list_upper_roman_period] = STATE(1007), - [sym__list_item_upper_roman_period] = STATE(791), - [sym__list_upper_roman_paren] = STATE(1007), - [sym__list_item_upper_roman_paren] = STATE(793), - [sym__list_upper_roman_parens] = STATE(1007), - [sym__list_item_upper_roman_parens] = STATE(799), - [sym_list_item_content] = STATE(590), - [sym_table] = STATE(1151), - [sym__table_row] = STATE(234), - [sym_table_header] = STATE(234), - [sym_table_separator] = STATE(234), - [sym_table_row] = STATE(234), - [sym_footnote] = STATE(1151), + [sym__block_with_heading] = STATE(1019), + [sym__block_element] = STATE(1019), + [sym_heading] = STATE(1019), + [sym_list] = STATE(1019), + [sym__list_dash] = STATE(1004), + [sym__list_item_dash] = STATE(599), + [sym__list_plus] = STATE(1004), + [sym__list_item_plus] = STATE(606), + [sym__list_star] = STATE(1004), + [sym__list_item_star] = STATE(664), + [sym__list_task] = STATE(1004), + [sym__list_item_task] = STATE(673), + [sym_list_marker_task] = STATE(44), + [sym__list_definition] = STATE(1004), + [sym__list_item_definition] = STATE(792), + [sym__list_decimal_period] = STATE(1004), + [sym__list_item_decimal_period] = STATE(691), + [sym__list_decimal_paren] = STATE(1004), + [sym__list_item_decimal_paren] = STATE(692), + [sym__list_decimal_parens] = STATE(1004), + [sym__list_item_decimal_parens] = STATE(710), + [sym__list_lower_alpha_period] = STATE(1004), + [sym__list_item_lower_alpha_period] = STATE(714), + [sym__list_lower_alpha_paren] = STATE(1004), + [sym__list_item_lower_alpha_paren] = STATE(717), + [sym__list_lower_alpha_parens] = STATE(1004), + [sym__list_item_lower_alpha_parens] = STATE(721), + [sym__list_upper_alpha_period] = STATE(1004), + [sym__list_item_upper_alpha_period] = STATE(726), + [sym__list_upper_alpha_paren] = STATE(1004), + [sym__list_item_upper_alpha_paren] = STATE(747), + [sym__list_upper_alpha_parens] = STATE(1004), + [sym__list_item_upper_alpha_parens] = STATE(751), + [sym__list_lower_roman_period] = STATE(1004), + [sym__list_item_lower_roman_period] = STATE(753), + [sym__list_lower_roman_paren] = STATE(1004), + [sym__list_item_lower_roman_paren] = STATE(755), + [sym__list_lower_roman_parens] = STATE(1004), + [sym__list_item_lower_roman_parens] = STATE(760), + [sym__list_upper_roman_period] = STATE(1004), + [sym__list_item_upper_roman_period] = STATE(761), + [sym__list_upper_roman_paren] = STATE(1004), + [sym__list_item_upper_roman_paren] = STATE(766), + [sym__list_upper_roman_parens] = STATE(1004), + [sym__list_item_upper_roman_parens] = STATE(784), + [sym_list_item_content] = STATE(548), + [sym_table] = STATE(1019), + [sym__table_row] = STATE(232), + [sym_table_header] = STATE(232), + [sym_table_separator] = STATE(232), + [sym_table_row] = STATE(232), + [sym_footnote] = STATE(1019), [sym_footnote_marker_begin] = STATE(1135), - [sym_div] = STATE(1151), + [sym_div] = STATE(1019), [sym__div_marker_begin] = STATE(1017), - [sym_code_block] = STATE(1151), - [sym_raw_block] = STATE(1151), - [sym_thematic_break] = STATE(1151), - [sym_block_quote] = STATE(1151), - [sym__block_quote_prefix] = STATE(225), - [sym_link_reference_definition] = STATE(1151), - [sym_block_attribute] = STATE(1151), - [sym__paragraph] = STATE(1151), - [sym__paragraph_content] = STATE(690), - [sym__paragraph_inline_content] = STATE(824), - [sym__inline] = STATE(654), - [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(316), - [aux_sym__list_plus_repeat1] = STATE(336), - [aux_sym__list_star_repeat1] = STATE(318), - [aux_sym__list_task_repeat1] = STATE(288), + [sym_code_block] = STATE(1019), + [sym_raw_block] = STATE(1019), + [sym_thematic_break] = STATE(1019), + [sym_block_quote] = STATE(1019), + [sym__block_quote_prefix] = STATE(222), + [sym_link_reference_definition] = STATE(1019), + [sym_block_attribute] = STATE(1019), + [sym__paragraph] = STATE(1019), + [sym__paragraph_content] = STATE(689), + [sym__paragraph_inline_content] = STATE(814), + [sym__inline] = STATE(657), + [sym__symbol_fallback] = STATE(271), + [aux_sym__list_dash_repeat1] = STATE(341), + [aux_sym__list_plus_repeat1] = STATE(342), + [aux_sym__list_star_repeat1] = STATE(343), + [aux_sym__list_task_repeat1] = STATE(314), [aux_sym__list_definition_repeat1] = STATE(456), [aux_sym__list_decimal_period_repeat1] = STATE(457), [aux_sym__list_decimal_paren_repeat1] = STATE(458), @@ -7482,9 +7498,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_upper_roman_period_repeat1] = STATE(469), [aux_sym__list_upper_roman_paren_repeat1] = STATE(470), [aux_sym__list_upper_roman_parens_repeat1] = STATE(471), - [aux_sym_table_repeat1] = STATE(234), - [aux_sym__block_quote_prefix_repeat1] = STATE(230), - [aux_sym__inline_repeat1] = STATE(273), + [aux_sym_table_repeat1] = STATE(232), + [aux_sym__block_quote_prefix_repeat1] = STATE(231), + [aux_sym__inline_repeat1] = STATE(271), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_DOT] = ACTIONS(9), @@ -7530,53 +7546,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block_element] = STATE(1091), [sym_heading] = STATE(1091), [sym_list] = STATE(1091), - [sym__list_dash] = STATE(1007), - [sym__list_item_dash] = STATE(595), - [sym__list_plus] = STATE(1007), - [sym__list_item_plus] = STATE(657), - [sym__list_star] = STATE(1007), - [sym__list_item_star] = STATE(570), - [sym__list_task] = STATE(1007), - [sym__list_item_task] = STATE(586), - [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(1007), - [sym__list_item_definition] = STATE(694), - [sym__list_decimal_period] = STATE(1007), - [sym__list_item_decimal_period] = STATE(714), - [sym__list_decimal_paren] = STATE(1007), - [sym__list_item_decimal_paren] = STATE(719), - [sym__list_decimal_parens] = STATE(1007), - [sym__list_item_decimal_parens] = STATE(746), - [sym__list_lower_alpha_period] = STATE(1007), - [sym__list_item_lower_alpha_period] = STATE(748), - [sym__list_lower_alpha_paren] = STATE(1007), - [sym__list_item_lower_alpha_paren] = STATE(749), - [sym__list_lower_alpha_parens] = STATE(1007), - [sym__list_item_lower_alpha_parens] = STATE(753), - [sym__list_upper_alpha_period] = STATE(1007), - [sym__list_item_upper_alpha_period] = STATE(761), - [sym__list_upper_alpha_paren] = STATE(1007), - [sym__list_item_upper_alpha_paren] = STATE(764), - [sym__list_upper_alpha_parens] = STATE(1007), - [sym__list_item_upper_alpha_parens] = STATE(765), - [sym__list_lower_roman_period] = STATE(1007), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(1007), - [sym__list_item_lower_roman_paren] = STATE(769), - [sym__list_lower_roman_parens] = STATE(1007), - [sym__list_item_lower_roman_parens] = STATE(786), - [sym__list_upper_roman_period] = STATE(1007), - [sym__list_item_upper_roman_period] = STATE(791), - [sym__list_upper_roman_paren] = STATE(1007), - [sym__list_item_upper_roman_paren] = STATE(793), - [sym__list_upper_roman_parens] = STATE(1007), - [sym__list_item_upper_roman_parens] = STATE(799), - [sym_list_item_content] = STATE(695), + [sym__list_dash] = STATE(1004), + [sym__list_item_dash] = STATE(599), + [sym__list_plus] = STATE(1004), + [sym__list_item_plus] = STATE(606), + [sym__list_star] = STATE(1004), + [sym__list_item_star] = STATE(664), + [sym__list_task] = STATE(1004), + [sym__list_item_task] = STATE(673), + [sym_list_marker_task] = STATE(44), + [sym__list_definition] = STATE(1004), + [sym__list_item_definition] = STATE(792), + [sym__list_decimal_period] = STATE(1004), + [sym__list_item_decimal_period] = STATE(691), + [sym__list_decimal_paren] = STATE(1004), + [sym__list_item_decimal_paren] = STATE(692), + [sym__list_decimal_parens] = STATE(1004), + [sym__list_item_decimal_parens] = STATE(710), + [sym__list_lower_alpha_period] = STATE(1004), + [sym__list_item_lower_alpha_period] = STATE(714), + [sym__list_lower_alpha_paren] = STATE(1004), + [sym__list_item_lower_alpha_paren] = STATE(717), + [sym__list_lower_alpha_parens] = STATE(1004), + [sym__list_item_lower_alpha_parens] = STATE(721), + [sym__list_upper_alpha_period] = STATE(1004), + [sym__list_item_upper_alpha_period] = STATE(726), + [sym__list_upper_alpha_paren] = STATE(1004), + [sym__list_item_upper_alpha_paren] = STATE(747), + [sym__list_upper_alpha_parens] = STATE(1004), + [sym__list_item_upper_alpha_parens] = STATE(751), + [sym__list_lower_roman_period] = STATE(1004), + [sym__list_item_lower_roman_period] = STATE(753), + [sym__list_lower_roman_paren] = STATE(1004), + [sym__list_item_lower_roman_paren] = STATE(755), + [sym__list_lower_roman_parens] = STATE(1004), + [sym__list_item_lower_roman_parens] = STATE(760), + [sym__list_upper_roman_period] = STATE(1004), + [sym__list_item_upper_roman_period] = STATE(761), + [sym__list_upper_roman_paren] = STATE(1004), + [sym__list_item_upper_roman_paren] = STATE(766), + [sym__list_upper_roman_parens] = STATE(1004), + [sym__list_item_upper_roman_parens] = STATE(784), + [sym_list_item_content] = STATE(786), [sym_table] = STATE(1091), - [sym__table_row] = STATE(234), - [sym_table_header] = STATE(234), - [sym_table_separator] = STATE(234), - [sym_table_row] = STATE(234), + [sym__table_row] = STATE(232), + [sym_table_header] = STATE(232), + [sym_table_separator] = STATE(232), + [sym_table_row] = STATE(232), [sym_footnote] = STATE(1091), [sym_footnote_marker_begin] = STATE(1135), [sym_div] = STATE(1091), @@ -7585,18 +7601,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_block] = STATE(1091), [sym_thematic_break] = STATE(1091), [sym_block_quote] = STATE(1091), - [sym__block_quote_prefix] = STATE(225), + [sym__block_quote_prefix] = STATE(222), [sym_link_reference_definition] = STATE(1091), [sym_block_attribute] = STATE(1091), [sym__paragraph] = STATE(1091), - [sym__paragraph_content] = STATE(690), - [sym__paragraph_inline_content] = STATE(824), - [sym__inline] = STATE(654), - [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(316), - [aux_sym__list_plus_repeat1] = STATE(336), - [aux_sym__list_star_repeat1] = STATE(318), - [aux_sym__list_task_repeat1] = STATE(288), + [sym__paragraph_content] = STATE(689), + [sym__paragraph_inline_content] = STATE(814), + [sym__inline] = STATE(657), + [sym__symbol_fallback] = STATE(271), + [aux_sym__list_dash_repeat1] = STATE(341), + [aux_sym__list_plus_repeat1] = STATE(342), + [aux_sym__list_star_repeat1] = STATE(343), + [aux_sym__list_task_repeat1] = STATE(314), [aux_sym__list_definition_repeat1] = STATE(456), [aux_sym__list_decimal_period_repeat1] = STATE(457), [aux_sym__list_decimal_paren_repeat1] = STATE(458), @@ -7613,9 +7629,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_upper_roman_period_repeat1] = STATE(469), [aux_sym__list_upper_roman_paren_repeat1] = STATE(470), [aux_sym__list_upper_roman_parens_repeat1] = STATE(471), - [aux_sym_table_repeat1] = STATE(234), - [aux_sym__block_quote_prefix_repeat1] = STATE(230), - [aux_sym__inline_repeat1] = STATE(273), + [aux_sym_table_repeat1] = STATE(232), + [aux_sym__block_quote_prefix_repeat1] = STATE(231), + [aux_sym__inline_repeat1] = STATE(271), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_DOT] = ACTIONS(9), @@ -7661,53 +7677,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block_element] = STATE(1092), [sym_heading] = STATE(1092), [sym_list] = STATE(1092), - [sym__list_dash] = STATE(1007), - [sym__list_item_dash] = STATE(595), - [sym__list_plus] = STATE(1007), - [sym__list_item_plus] = STATE(657), - [sym__list_star] = STATE(1007), - [sym__list_item_star] = STATE(570), - [sym__list_task] = STATE(1007), - [sym__list_item_task] = STATE(586), - [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(1007), - [sym__list_item_definition] = STATE(694), - [sym__list_decimal_period] = STATE(1007), - [sym__list_item_decimal_period] = STATE(714), - [sym__list_decimal_paren] = STATE(1007), - [sym__list_item_decimal_paren] = STATE(719), - [sym__list_decimal_parens] = STATE(1007), - [sym__list_item_decimal_parens] = STATE(746), - [sym__list_lower_alpha_period] = STATE(1007), - [sym__list_item_lower_alpha_period] = STATE(748), - [sym__list_lower_alpha_paren] = STATE(1007), - [sym__list_item_lower_alpha_paren] = STATE(749), - [sym__list_lower_alpha_parens] = STATE(1007), - [sym__list_item_lower_alpha_parens] = STATE(753), - [sym__list_upper_alpha_period] = STATE(1007), - [sym__list_item_upper_alpha_period] = STATE(761), - [sym__list_upper_alpha_paren] = STATE(1007), - [sym__list_item_upper_alpha_paren] = STATE(764), - [sym__list_upper_alpha_parens] = STATE(1007), - [sym__list_item_upper_alpha_parens] = STATE(765), - [sym__list_lower_roman_period] = STATE(1007), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(1007), - [sym__list_item_lower_roman_paren] = STATE(769), - [sym__list_lower_roman_parens] = STATE(1007), - [sym__list_item_lower_roman_parens] = STATE(786), - [sym__list_upper_roman_period] = STATE(1007), - [sym__list_item_upper_roman_period] = STATE(791), - [sym__list_upper_roman_paren] = STATE(1007), - [sym__list_item_upper_roman_paren] = STATE(793), - [sym__list_upper_roman_parens] = STATE(1007), - [sym__list_item_upper_roman_parens] = STATE(799), - [sym_list_item_content] = STATE(698), + [sym__list_dash] = STATE(1004), + [sym__list_item_dash] = STATE(599), + [sym__list_plus] = STATE(1004), + [sym__list_item_plus] = STATE(606), + [sym__list_star] = STATE(1004), + [sym__list_item_star] = STATE(664), + [sym__list_task] = STATE(1004), + [sym__list_item_task] = STATE(673), + [sym_list_marker_task] = STATE(44), + [sym__list_definition] = STATE(1004), + [sym__list_item_definition] = STATE(792), + [sym__list_decimal_period] = STATE(1004), + [sym__list_item_decimal_period] = STATE(691), + [sym__list_decimal_paren] = STATE(1004), + [sym__list_item_decimal_paren] = STATE(692), + [sym__list_decimal_parens] = STATE(1004), + [sym__list_item_decimal_parens] = STATE(710), + [sym__list_lower_alpha_period] = STATE(1004), + [sym__list_item_lower_alpha_period] = STATE(714), + [sym__list_lower_alpha_paren] = STATE(1004), + [sym__list_item_lower_alpha_paren] = STATE(717), + [sym__list_lower_alpha_parens] = STATE(1004), + [sym__list_item_lower_alpha_parens] = STATE(721), + [sym__list_upper_alpha_period] = STATE(1004), + [sym__list_item_upper_alpha_period] = STATE(726), + [sym__list_upper_alpha_paren] = STATE(1004), + [sym__list_item_upper_alpha_paren] = STATE(747), + [sym__list_upper_alpha_parens] = STATE(1004), + [sym__list_item_upper_alpha_parens] = STATE(751), + [sym__list_lower_roman_period] = STATE(1004), + [sym__list_item_lower_roman_period] = STATE(753), + [sym__list_lower_roman_paren] = STATE(1004), + [sym__list_item_lower_roman_paren] = STATE(755), + [sym__list_lower_roman_parens] = STATE(1004), + [sym__list_item_lower_roman_parens] = STATE(760), + [sym__list_upper_roman_period] = STATE(1004), + [sym__list_item_upper_roman_period] = STATE(761), + [sym__list_upper_roman_paren] = STATE(1004), + [sym__list_item_upper_roman_paren] = STATE(766), + [sym__list_upper_roman_parens] = STATE(1004), + [sym__list_item_upper_roman_parens] = STATE(784), + [sym_list_item_content] = STATE(738), [sym_table] = STATE(1092), - [sym__table_row] = STATE(234), - [sym_table_header] = STATE(234), - [sym_table_separator] = STATE(234), - [sym_table_row] = STATE(234), + [sym__table_row] = STATE(232), + [sym_table_header] = STATE(232), + [sym_table_separator] = STATE(232), + [sym_table_row] = STATE(232), [sym_footnote] = STATE(1092), [sym_footnote_marker_begin] = STATE(1135), [sym_div] = STATE(1092), @@ -7716,18 +7732,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_block] = STATE(1092), [sym_thematic_break] = STATE(1092), [sym_block_quote] = STATE(1092), - [sym__block_quote_prefix] = STATE(225), + [sym__block_quote_prefix] = STATE(222), [sym_link_reference_definition] = STATE(1092), [sym_block_attribute] = STATE(1092), [sym__paragraph] = STATE(1092), - [sym__paragraph_content] = STATE(690), - [sym__paragraph_inline_content] = STATE(824), - [sym__inline] = STATE(654), - [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(316), - [aux_sym__list_plus_repeat1] = STATE(336), - [aux_sym__list_star_repeat1] = STATE(318), - [aux_sym__list_task_repeat1] = STATE(288), + [sym__paragraph_content] = STATE(689), + [sym__paragraph_inline_content] = STATE(814), + [sym__inline] = STATE(657), + [sym__symbol_fallback] = STATE(271), + [aux_sym__list_dash_repeat1] = STATE(341), + [aux_sym__list_plus_repeat1] = STATE(342), + [aux_sym__list_star_repeat1] = STATE(343), + [aux_sym__list_task_repeat1] = STATE(314), [aux_sym__list_definition_repeat1] = STATE(456), [aux_sym__list_decimal_period_repeat1] = STATE(457), [aux_sym__list_decimal_paren_repeat1] = STATE(458), @@ -7744,9 +7760,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_upper_roman_period_repeat1] = STATE(469), [aux_sym__list_upper_roman_paren_repeat1] = STATE(470), [aux_sym__list_upper_roman_parens_repeat1] = STATE(471), - [aux_sym_table_repeat1] = STATE(234), - [aux_sym__block_quote_prefix_repeat1] = STATE(230), - [aux_sym__inline_repeat1] = STATE(273), + [aux_sym_table_repeat1] = STATE(232), + [aux_sym__block_quote_prefix_repeat1] = STATE(231), + [aux_sym__inline_repeat1] = STATE(271), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_DOT] = ACTIONS(9), @@ -7788,77 +7804,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block_attribute_begin] = ACTIONS(384), }, [25] = { - [sym__block_with_heading] = STATE(959), - [sym__block_element] = STATE(959), - [sym_heading] = STATE(959), - [sym_list] = STATE(959), - [sym__list_dash] = STATE(1007), - [sym__list_item_dash] = STATE(595), - [sym__list_plus] = STATE(1007), - [sym__list_item_plus] = STATE(657), - [sym__list_star] = STATE(1007), - [sym__list_item_star] = STATE(570), - [sym__list_task] = STATE(1007), - [sym__list_item_task] = STATE(586), - [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(1007), - [sym__list_item_definition] = STATE(694), - [sym__list_decimal_period] = STATE(1007), - [sym__list_item_decimal_period] = STATE(714), - [sym__list_decimal_paren] = STATE(1007), - [sym__list_item_decimal_paren] = STATE(719), - [sym__list_decimal_parens] = STATE(1007), - [sym__list_item_decimal_parens] = STATE(746), - [sym__list_lower_alpha_period] = STATE(1007), - [sym__list_item_lower_alpha_period] = STATE(748), - [sym__list_lower_alpha_paren] = STATE(1007), - [sym__list_item_lower_alpha_paren] = STATE(749), - [sym__list_lower_alpha_parens] = STATE(1007), - [sym__list_item_lower_alpha_parens] = STATE(753), - [sym__list_upper_alpha_period] = STATE(1007), - [sym__list_item_upper_alpha_period] = STATE(761), - [sym__list_upper_alpha_paren] = STATE(1007), - [sym__list_item_upper_alpha_paren] = STATE(764), - [sym__list_upper_alpha_parens] = STATE(1007), - [sym__list_item_upper_alpha_parens] = STATE(765), - [sym__list_lower_roman_period] = STATE(1007), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(1007), - [sym__list_item_lower_roman_paren] = STATE(769), - [sym__list_lower_roman_parens] = STATE(1007), - [sym__list_item_lower_roman_parens] = STATE(786), - [sym__list_upper_roman_period] = STATE(1007), - [sym__list_item_upper_roman_period] = STATE(791), - [sym__list_upper_roman_paren] = STATE(1007), - [sym__list_item_upper_roman_paren] = STATE(793), - [sym__list_upper_roman_parens] = STATE(1007), - [sym__list_item_upper_roman_parens] = STATE(799), - [sym_list_item_content] = STATE(588), - [sym_table] = STATE(959), - [sym__table_row] = STATE(234), - [sym_table_header] = STATE(234), - [sym_table_separator] = STATE(234), - [sym_table_row] = STATE(234), - [sym_footnote] = STATE(959), + [sym__block_with_heading] = STATE(1093), + [sym__block_element] = STATE(1093), + [sym_heading] = STATE(1093), + [sym_list] = STATE(1093), + [sym__list_dash] = STATE(1004), + [sym__list_item_dash] = STATE(599), + [sym__list_plus] = STATE(1004), + [sym__list_item_plus] = STATE(606), + [sym__list_star] = STATE(1004), + [sym__list_item_star] = STATE(664), + [sym__list_task] = STATE(1004), + [sym__list_item_task] = STATE(673), + [sym_list_marker_task] = STATE(44), + [sym__list_definition] = STATE(1004), + [sym__list_item_definition] = STATE(792), + [sym__list_decimal_period] = STATE(1004), + [sym__list_item_decimal_period] = STATE(691), + [sym__list_decimal_paren] = STATE(1004), + [sym__list_item_decimal_paren] = STATE(692), + [sym__list_decimal_parens] = STATE(1004), + [sym__list_item_decimal_parens] = STATE(710), + [sym__list_lower_alpha_period] = STATE(1004), + [sym__list_item_lower_alpha_period] = STATE(714), + [sym__list_lower_alpha_paren] = STATE(1004), + [sym__list_item_lower_alpha_paren] = STATE(717), + [sym__list_lower_alpha_parens] = STATE(1004), + [sym__list_item_lower_alpha_parens] = STATE(721), + [sym__list_upper_alpha_period] = STATE(1004), + [sym__list_item_upper_alpha_period] = STATE(726), + [sym__list_upper_alpha_paren] = STATE(1004), + [sym__list_item_upper_alpha_paren] = STATE(747), + [sym__list_upper_alpha_parens] = STATE(1004), + [sym__list_item_upper_alpha_parens] = STATE(751), + [sym__list_lower_roman_period] = STATE(1004), + [sym__list_item_lower_roman_period] = STATE(753), + [sym__list_lower_roman_paren] = STATE(1004), + [sym__list_item_lower_roman_paren] = STATE(755), + [sym__list_lower_roman_parens] = STATE(1004), + [sym__list_item_lower_roman_parens] = STATE(760), + [sym__list_upper_roman_period] = STATE(1004), + [sym__list_item_upper_roman_period] = STATE(761), + [sym__list_upper_roman_paren] = STATE(1004), + [sym__list_item_upper_roman_paren] = STATE(766), + [sym__list_upper_roman_parens] = STATE(1004), + [sym__list_item_upper_roman_parens] = STATE(784), + [sym_list_item_content] = STATE(770), + [sym_table] = STATE(1093), + [sym__table_row] = STATE(232), + [sym_table_header] = STATE(232), + [sym_table_separator] = STATE(232), + [sym_table_row] = STATE(232), + [sym_footnote] = STATE(1093), [sym_footnote_marker_begin] = STATE(1135), - [sym_div] = STATE(959), + [sym_div] = STATE(1093), [sym__div_marker_begin] = STATE(1017), - [sym_code_block] = STATE(959), - [sym_raw_block] = STATE(959), - [sym_thematic_break] = STATE(959), - [sym_block_quote] = STATE(959), - [sym__block_quote_prefix] = STATE(225), - [sym_link_reference_definition] = STATE(959), - [sym_block_attribute] = STATE(959), - [sym__paragraph] = STATE(959), - [sym__paragraph_content] = STATE(690), - [sym__paragraph_inline_content] = STATE(824), - [sym__inline] = STATE(654), - [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(316), - [aux_sym__list_plus_repeat1] = STATE(336), - [aux_sym__list_star_repeat1] = STATE(318), - [aux_sym__list_task_repeat1] = STATE(288), + [sym_code_block] = STATE(1093), + [sym_raw_block] = STATE(1093), + [sym_thematic_break] = STATE(1093), + [sym_block_quote] = STATE(1093), + [sym__block_quote_prefix] = STATE(222), + [sym_link_reference_definition] = STATE(1093), + [sym_block_attribute] = STATE(1093), + [sym__paragraph] = STATE(1093), + [sym__paragraph_content] = STATE(689), + [sym__paragraph_inline_content] = STATE(814), + [sym__inline] = STATE(657), + [sym__symbol_fallback] = STATE(271), + [aux_sym__list_dash_repeat1] = STATE(341), + [aux_sym__list_plus_repeat1] = STATE(342), + [aux_sym__list_star_repeat1] = STATE(343), + [aux_sym__list_task_repeat1] = STATE(314), [aux_sym__list_definition_repeat1] = STATE(456), [aux_sym__list_decimal_period_repeat1] = STATE(457), [aux_sym__list_decimal_paren_repeat1] = STATE(458), @@ -7875,9 +7891,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_upper_roman_period_repeat1] = STATE(469), [aux_sym__list_upper_roman_paren_repeat1] = STATE(470), [aux_sym__list_upper_roman_parens_repeat1] = STATE(471), - [aux_sym_table_repeat1] = STATE(234), - [aux_sym__block_quote_prefix_repeat1] = STATE(230), - [aux_sym__inline_repeat1] = STATE(273), + [aux_sym_table_repeat1] = STATE(232), + [aux_sym__block_quote_prefix_repeat1] = STATE(231), + [aux_sym__inline_repeat1] = STATE(271), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_DOT] = ACTIONS(9), @@ -7919,77 +7935,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block_attribute_begin] = ACTIONS(384), }, [26] = { - [sym__block_with_heading] = STATE(1019), - [sym__block_element] = STATE(1019), - [sym_heading] = STATE(1019), - [sym_list] = STATE(1019), - [sym__list_dash] = STATE(1007), - [sym__list_item_dash] = STATE(595), - [sym__list_plus] = STATE(1007), - [sym__list_item_plus] = STATE(657), - [sym__list_star] = STATE(1007), - [sym__list_item_star] = STATE(570), - [sym__list_task] = STATE(1007), - [sym__list_item_task] = STATE(586), - [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(1007), - [sym__list_item_definition] = STATE(694), - [sym__list_decimal_period] = STATE(1007), - [sym__list_item_decimal_period] = STATE(714), - [sym__list_decimal_paren] = STATE(1007), - [sym__list_item_decimal_paren] = STATE(719), - [sym__list_decimal_parens] = STATE(1007), - [sym__list_item_decimal_parens] = STATE(746), - [sym__list_lower_alpha_period] = STATE(1007), - [sym__list_item_lower_alpha_period] = STATE(748), - [sym__list_lower_alpha_paren] = STATE(1007), - [sym__list_item_lower_alpha_paren] = STATE(749), - [sym__list_lower_alpha_parens] = STATE(1007), - [sym__list_item_lower_alpha_parens] = STATE(753), - [sym__list_upper_alpha_period] = STATE(1007), - [sym__list_item_upper_alpha_period] = STATE(761), - [sym__list_upper_alpha_paren] = STATE(1007), - [sym__list_item_upper_alpha_paren] = STATE(764), - [sym__list_upper_alpha_parens] = STATE(1007), - [sym__list_item_upper_alpha_parens] = STATE(765), - [sym__list_lower_roman_period] = STATE(1007), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(1007), - [sym__list_item_lower_roman_paren] = STATE(769), - [sym__list_lower_roman_parens] = STATE(1007), - [sym__list_item_lower_roman_parens] = STATE(786), - [sym__list_upper_roman_period] = STATE(1007), - [sym__list_item_upper_roman_period] = STATE(791), - [sym__list_upper_roman_paren] = STATE(1007), - [sym__list_item_upper_roman_paren] = STATE(793), - [sym__list_upper_roman_parens] = STATE(1007), - [sym__list_item_upper_roman_parens] = STATE(799), - [sym_list_item_content] = STATE(589), - [sym_table] = STATE(1019), - [sym__table_row] = STATE(234), - [sym_table_header] = STATE(234), - [sym_table_separator] = STATE(234), - [sym_table_row] = STATE(234), - [sym_footnote] = STATE(1019), + [sym__block_with_heading] = STATE(967), + [sym__block_element] = STATE(967), + [sym_heading] = STATE(967), + [sym_list] = STATE(967), + [sym__list_dash] = STATE(1004), + [sym__list_item_dash] = STATE(599), + [sym__list_plus] = STATE(1004), + [sym__list_item_plus] = STATE(606), + [sym__list_star] = STATE(1004), + [sym__list_item_star] = STATE(664), + [sym__list_task] = STATE(1004), + [sym__list_item_task] = STATE(673), + [sym_list_marker_task] = STATE(44), + [sym__list_definition] = STATE(1004), + [sym__list_item_definition] = STATE(792), + [sym__list_decimal_period] = STATE(1004), + [sym__list_item_decimal_period] = STATE(691), + [sym__list_decimal_paren] = STATE(1004), + [sym__list_item_decimal_paren] = STATE(692), + [sym__list_decimal_parens] = STATE(1004), + [sym__list_item_decimal_parens] = STATE(710), + [sym__list_lower_alpha_period] = STATE(1004), + [sym__list_item_lower_alpha_period] = STATE(714), + [sym__list_lower_alpha_paren] = STATE(1004), + [sym__list_item_lower_alpha_paren] = STATE(717), + [sym__list_lower_alpha_parens] = STATE(1004), + [sym__list_item_lower_alpha_parens] = STATE(721), + [sym__list_upper_alpha_period] = STATE(1004), + [sym__list_item_upper_alpha_period] = STATE(726), + [sym__list_upper_alpha_paren] = STATE(1004), + [sym__list_item_upper_alpha_paren] = STATE(747), + [sym__list_upper_alpha_parens] = STATE(1004), + [sym__list_item_upper_alpha_parens] = STATE(751), + [sym__list_lower_roman_period] = STATE(1004), + [sym__list_item_lower_roman_period] = STATE(753), + [sym__list_lower_roman_paren] = STATE(1004), + [sym__list_item_lower_roman_paren] = STATE(755), + [sym__list_lower_roman_parens] = STATE(1004), + [sym__list_item_lower_roman_parens] = STATE(760), + [sym__list_upper_roman_period] = STATE(1004), + [sym__list_item_upper_roman_period] = STATE(761), + [sym__list_upper_roman_paren] = STATE(1004), + [sym__list_item_upper_roman_paren] = STATE(766), + [sym__list_upper_roman_parens] = STATE(1004), + [sym__list_item_upper_roman_parens] = STATE(784), + [sym_list_item_content] = STATE(547), + [sym_table] = STATE(967), + [sym__table_row] = STATE(232), + [sym_table_header] = STATE(232), + [sym_table_separator] = STATE(232), + [sym_table_row] = STATE(232), + [sym_footnote] = STATE(967), [sym_footnote_marker_begin] = STATE(1135), - [sym_div] = STATE(1019), + [sym_div] = STATE(967), [sym__div_marker_begin] = STATE(1017), - [sym_code_block] = STATE(1019), - [sym_raw_block] = STATE(1019), - [sym_thematic_break] = STATE(1019), - [sym_block_quote] = STATE(1019), - [sym__block_quote_prefix] = STATE(225), - [sym_link_reference_definition] = STATE(1019), - [sym_block_attribute] = STATE(1019), - [sym__paragraph] = STATE(1019), - [sym__paragraph_content] = STATE(690), - [sym__paragraph_inline_content] = STATE(824), - [sym__inline] = STATE(654), - [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(316), - [aux_sym__list_plus_repeat1] = STATE(336), - [aux_sym__list_star_repeat1] = STATE(318), - [aux_sym__list_task_repeat1] = STATE(288), + [sym_code_block] = STATE(967), + [sym_raw_block] = STATE(967), + [sym_thematic_break] = STATE(967), + [sym_block_quote] = STATE(967), + [sym__block_quote_prefix] = STATE(222), + [sym_link_reference_definition] = STATE(967), + [sym_block_attribute] = STATE(967), + [sym__paragraph] = STATE(967), + [sym__paragraph_content] = STATE(689), + [sym__paragraph_inline_content] = STATE(814), + [sym__inline] = STATE(657), + [sym__symbol_fallback] = STATE(271), + [aux_sym__list_dash_repeat1] = STATE(341), + [aux_sym__list_plus_repeat1] = STATE(342), + [aux_sym__list_star_repeat1] = STATE(343), + [aux_sym__list_task_repeat1] = STATE(314), [aux_sym__list_definition_repeat1] = STATE(456), [aux_sym__list_decimal_period_repeat1] = STATE(457), [aux_sym__list_decimal_paren_repeat1] = STATE(458), @@ -8006,9 +8022,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_upper_roman_period_repeat1] = STATE(469), [aux_sym__list_upper_roman_paren_repeat1] = STATE(470), [aux_sym__list_upper_roman_parens_repeat1] = STATE(471), - [aux_sym_table_repeat1] = STATE(234), - [aux_sym__block_quote_prefix_repeat1] = STATE(230), - [aux_sym__inline_repeat1] = STATE(273), + [aux_sym_table_repeat1] = STATE(232), + [aux_sym__block_quote_prefix_repeat1] = STATE(231), + [aux_sym__inline_repeat1] = STATE(271), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_DOT] = ACTIONS(9), @@ -8050,77 +8066,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block_attribute_begin] = ACTIONS(384), }, [27] = { - [sym__block_with_heading] = STATE(959), - [sym__block_element] = STATE(959), - [sym_heading] = STATE(959), - [sym_list] = STATE(959), - [sym__list_dash] = STATE(1007), - [sym__list_item_dash] = STATE(595), - [sym__list_plus] = STATE(1007), - [sym__list_item_plus] = STATE(657), - [sym__list_star] = STATE(1007), - [sym__list_item_star] = STATE(570), - [sym__list_task] = STATE(1007), - [sym__list_item_task] = STATE(586), - [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(1007), - [sym__list_item_definition] = STATE(694), - [sym__list_decimal_period] = STATE(1007), - [sym__list_item_decimal_period] = STATE(714), - [sym__list_decimal_paren] = STATE(1007), - [sym__list_item_decimal_paren] = STATE(719), - [sym__list_decimal_parens] = STATE(1007), - [sym__list_item_decimal_parens] = STATE(746), - [sym__list_lower_alpha_period] = STATE(1007), - [sym__list_item_lower_alpha_period] = STATE(748), - [sym__list_lower_alpha_paren] = STATE(1007), - [sym__list_item_lower_alpha_paren] = STATE(749), - [sym__list_lower_alpha_parens] = STATE(1007), - [sym__list_item_lower_alpha_parens] = STATE(753), - [sym__list_upper_alpha_period] = STATE(1007), - [sym__list_item_upper_alpha_period] = STATE(761), - [sym__list_upper_alpha_paren] = STATE(1007), - [sym__list_item_upper_alpha_paren] = STATE(764), - [sym__list_upper_alpha_parens] = STATE(1007), - [sym__list_item_upper_alpha_parens] = STATE(765), - [sym__list_lower_roman_period] = STATE(1007), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(1007), - [sym__list_item_lower_roman_paren] = STATE(769), - [sym__list_lower_roman_parens] = STATE(1007), - [sym__list_item_lower_roman_parens] = STATE(786), - [sym__list_upper_roman_period] = STATE(1007), - [sym__list_item_upper_roman_period] = STATE(791), - [sym__list_upper_roman_paren] = STATE(1007), - [sym__list_item_upper_roman_paren] = STATE(793), - [sym__list_upper_roman_parens] = STATE(1007), - [sym__list_item_upper_roman_parens] = STATE(799), - [sym_list_item_content] = STATE(571), - [sym_table] = STATE(959), - [sym__table_row] = STATE(234), - [sym_table_header] = STATE(234), - [sym_table_separator] = STATE(234), - [sym_table_row] = STATE(234), - [sym_footnote] = STATE(959), + [sym__block_with_heading] = STATE(967), + [sym__block_element] = STATE(967), + [sym_heading] = STATE(967), + [sym_list] = STATE(967), + [sym__list_dash] = STATE(1004), + [sym__list_item_dash] = STATE(599), + [sym__list_plus] = STATE(1004), + [sym__list_item_plus] = STATE(606), + [sym__list_star] = STATE(1004), + [sym__list_item_star] = STATE(664), + [sym__list_task] = STATE(1004), + [sym__list_item_task] = STATE(673), + [sym_list_marker_task] = STATE(44), + [sym__list_definition] = STATE(1004), + [sym__list_item_definition] = STATE(792), + [sym__list_decimal_period] = STATE(1004), + [sym__list_item_decimal_period] = STATE(691), + [sym__list_decimal_paren] = STATE(1004), + [sym__list_item_decimal_paren] = STATE(692), + [sym__list_decimal_parens] = STATE(1004), + [sym__list_item_decimal_parens] = STATE(710), + [sym__list_lower_alpha_period] = STATE(1004), + [sym__list_item_lower_alpha_period] = STATE(714), + [sym__list_lower_alpha_paren] = STATE(1004), + [sym__list_item_lower_alpha_paren] = STATE(717), + [sym__list_lower_alpha_parens] = STATE(1004), + [sym__list_item_lower_alpha_parens] = STATE(721), + [sym__list_upper_alpha_period] = STATE(1004), + [sym__list_item_upper_alpha_period] = STATE(726), + [sym__list_upper_alpha_paren] = STATE(1004), + [sym__list_item_upper_alpha_paren] = STATE(747), + [sym__list_upper_alpha_parens] = STATE(1004), + [sym__list_item_upper_alpha_parens] = STATE(751), + [sym__list_lower_roman_period] = STATE(1004), + [sym__list_item_lower_roman_period] = STATE(753), + [sym__list_lower_roman_paren] = STATE(1004), + [sym__list_item_lower_roman_paren] = STATE(755), + [sym__list_lower_roman_parens] = STATE(1004), + [sym__list_item_lower_roman_parens] = STATE(760), + [sym__list_upper_roman_period] = STATE(1004), + [sym__list_item_upper_roman_period] = STATE(761), + [sym__list_upper_roman_paren] = STATE(1004), + [sym__list_item_upper_roman_paren] = STATE(766), + [sym__list_upper_roman_parens] = STATE(1004), + [sym__list_item_upper_roman_parens] = STATE(784), + [sym_list_item_content] = STATE(665), + [sym_table] = STATE(967), + [sym__table_row] = STATE(232), + [sym_table_header] = STATE(232), + [sym_table_separator] = STATE(232), + [sym_table_row] = STATE(232), + [sym_footnote] = STATE(967), [sym_footnote_marker_begin] = STATE(1135), - [sym_div] = STATE(959), + [sym_div] = STATE(967), [sym__div_marker_begin] = STATE(1017), - [sym_code_block] = STATE(959), - [sym_raw_block] = STATE(959), - [sym_thematic_break] = STATE(959), - [sym_block_quote] = STATE(959), - [sym__block_quote_prefix] = STATE(225), - [sym_link_reference_definition] = STATE(959), - [sym_block_attribute] = STATE(959), - [sym__paragraph] = STATE(959), - [sym__paragraph_content] = STATE(690), - [sym__paragraph_inline_content] = STATE(824), - [sym__inline] = STATE(654), - [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(316), - [aux_sym__list_plus_repeat1] = STATE(336), - [aux_sym__list_star_repeat1] = STATE(318), - [aux_sym__list_task_repeat1] = STATE(288), + [sym_code_block] = STATE(967), + [sym_raw_block] = STATE(967), + [sym_thematic_break] = STATE(967), + [sym_block_quote] = STATE(967), + [sym__block_quote_prefix] = STATE(222), + [sym_link_reference_definition] = STATE(967), + [sym_block_attribute] = STATE(967), + [sym__paragraph] = STATE(967), + [sym__paragraph_content] = STATE(689), + [sym__paragraph_inline_content] = STATE(814), + [sym__inline] = STATE(657), + [sym__symbol_fallback] = STATE(271), + [aux_sym__list_dash_repeat1] = STATE(341), + [aux_sym__list_plus_repeat1] = STATE(342), + [aux_sym__list_star_repeat1] = STATE(343), + [aux_sym__list_task_repeat1] = STATE(314), [aux_sym__list_definition_repeat1] = STATE(456), [aux_sym__list_decimal_period_repeat1] = STATE(457), [aux_sym__list_decimal_paren_repeat1] = STATE(458), @@ -8137,9 +8153,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_upper_roman_period_repeat1] = STATE(469), [aux_sym__list_upper_roman_paren_repeat1] = STATE(470), [aux_sym__list_upper_roman_parens_repeat1] = STATE(471), - [aux_sym_table_repeat1] = STATE(234), - [aux_sym__block_quote_prefix_repeat1] = STATE(230), - [aux_sym__inline_repeat1] = STATE(273), + [aux_sym_table_repeat1] = STATE(232), + [aux_sym__block_quote_prefix_repeat1] = STATE(231), + [aux_sym__inline_repeat1] = STATE(271), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_DOT] = ACTIONS(9), @@ -8147,7 +8163,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_token1] = ACTIONS(9), [anon_sym_LBRACE] = ACTIONS(9), [anon_sym_PERCENT] = ACTIONS(9), - [sym__newline] = ACTIONS(390), + [sym__newline] = ACTIONS(392), [sym__heading_begin] = ACTIONS(368), [sym__div_begin] = ACTIONS(17), [sym__code_block_begin] = ACTIONS(370), @@ -8181,77 +8197,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block_attribute_begin] = ACTIONS(384), }, [28] = { - [sym__block_with_heading] = STATE(1102), - [sym__block_element] = STATE(1102), - [sym_heading] = STATE(1102), - [sym_list] = STATE(1102), - [sym__list_dash] = STATE(1007), - [sym__list_item_dash] = STATE(595), - [sym__list_plus] = STATE(1007), - [sym__list_item_plus] = STATE(657), - [sym__list_star] = STATE(1007), - [sym__list_item_star] = STATE(570), - [sym__list_task] = STATE(1007), - [sym__list_item_task] = STATE(586), - [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(1007), - [sym__list_item_definition] = STATE(694), - [sym__list_decimal_period] = STATE(1007), - [sym__list_item_decimal_period] = STATE(714), - [sym__list_decimal_paren] = STATE(1007), - [sym__list_item_decimal_paren] = STATE(719), - [sym__list_decimal_parens] = STATE(1007), - [sym__list_item_decimal_parens] = STATE(746), - [sym__list_lower_alpha_period] = STATE(1007), - [sym__list_item_lower_alpha_period] = STATE(748), - [sym__list_lower_alpha_paren] = STATE(1007), - [sym__list_item_lower_alpha_paren] = STATE(749), - [sym__list_lower_alpha_parens] = STATE(1007), - [sym__list_item_lower_alpha_parens] = STATE(753), - [sym__list_upper_alpha_period] = STATE(1007), - [sym__list_item_upper_alpha_period] = STATE(761), - [sym__list_upper_alpha_paren] = STATE(1007), - [sym__list_item_upper_alpha_paren] = STATE(764), - [sym__list_upper_alpha_parens] = STATE(1007), - [sym__list_item_upper_alpha_parens] = STATE(765), - [sym__list_lower_roman_period] = STATE(1007), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(1007), - [sym__list_item_lower_roman_paren] = STATE(769), - [sym__list_lower_roman_parens] = STATE(1007), - [sym__list_item_lower_roman_parens] = STATE(786), - [sym__list_upper_roman_period] = STATE(1007), - [sym__list_item_upper_roman_period] = STATE(791), - [sym__list_upper_roman_paren] = STATE(1007), - [sym__list_item_upper_roman_paren] = STATE(793), - [sym__list_upper_roman_parens] = STATE(1007), - [sym__list_item_upper_roman_parens] = STATE(799), - [sym_list_item_content] = STATE(591), - [sym_table] = STATE(1102), - [sym__table_row] = STATE(234), - [sym_table_header] = STATE(234), - [sym_table_separator] = STATE(234), - [sym_table_row] = STATE(234), - [sym_footnote] = STATE(1102), + [sym__block_with_heading] = STATE(1151), + [sym__block_element] = STATE(1151), + [sym_heading] = STATE(1151), + [sym_list] = STATE(1151), + [sym__list_dash] = STATE(1004), + [sym__list_item_dash] = STATE(599), + [sym__list_plus] = STATE(1004), + [sym__list_item_plus] = STATE(606), + [sym__list_star] = STATE(1004), + [sym__list_item_star] = STATE(664), + [sym__list_task] = STATE(1004), + [sym__list_item_task] = STATE(673), + [sym_list_marker_task] = STATE(44), + [sym__list_definition] = STATE(1004), + [sym__list_item_definition] = STATE(792), + [sym__list_decimal_period] = STATE(1004), + [sym__list_item_decimal_period] = STATE(691), + [sym__list_decimal_paren] = STATE(1004), + [sym__list_item_decimal_paren] = STATE(692), + [sym__list_decimal_parens] = STATE(1004), + [sym__list_item_decimal_parens] = STATE(710), + [sym__list_lower_alpha_period] = STATE(1004), + [sym__list_item_lower_alpha_period] = STATE(714), + [sym__list_lower_alpha_paren] = STATE(1004), + [sym__list_item_lower_alpha_paren] = STATE(717), + [sym__list_lower_alpha_parens] = STATE(1004), + [sym__list_item_lower_alpha_parens] = STATE(721), + [sym__list_upper_alpha_period] = STATE(1004), + [sym__list_item_upper_alpha_period] = STATE(726), + [sym__list_upper_alpha_paren] = STATE(1004), + [sym__list_item_upper_alpha_paren] = STATE(747), + [sym__list_upper_alpha_parens] = STATE(1004), + [sym__list_item_upper_alpha_parens] = STATE(751), + [sym__list_lower_roman_period] = STATE(1004), + [sym__list_item_lower_roman_period] = STATE(753), + [sym__list_lower_roman_paren] = STATE(1004), + [sym__list_item_lower_roman_paren] = STATE(755), + [sym__list_lower_roman_parens] = STATE(1004), + [sym__list_item_lower_roman_parens] = STATE(760), + [sym__list_upper_roman_period] = STATE(1004), + [sym__list_item_upper_roman_period] = STATE(761), + [sym__list_upper_roman_paren] = STATE(1004), + [sym__list_item_upper_roman_paren] = STATE(766), + [sym__list_upper_roman_parens] = STATE(1004), + [sym__list_item_upper_roman_parens] = STATE(784), + [sym_list_item_content] = STATE(549), + [sym_table] = STATE(1151), + [sym__table_row] = STATE(232), + [sym_table_header] = STATE(232), + [sym_table_separator] = STATE(232), + [sym_table_row] = STATE(232), + [sym_footnote] = STATE(1151), [sym_footnote_marker_begin] = STATE(1135), - [sym_div] = STATE(1102), + [sym_div] = STATE(1151), [sym__div_marker_begin] = STATE(1017), - [sym_code_block] = STATE(1102), - [sym_raw_block] = STATE(1102), - [sym_thematic_break] = STATE(1102), - [sym_block_quote] = STATE(1102), - [sym__block_quote_prefix] = STATE(225), - [sym_link_reference_definition] = STATE(1102), - [sym_block_attribute] = STATE(1102), - [sym__paragraph] = STATE(1102), - [sym__paragraph_content] = STATE(690), - [sym__paragraph_inline_content] = STATE(824), - [sym__inline] = STATE(654), - [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(316), - [aux_sym__list_plus_repeat1] = STATE(336), - [aux_sym__list_star_repeat1] = STATE(318), - [aux_sym__list_task_repeat1] = STATE(288), + [sym_code_block] = STATE(1151), + [sym_raw_block] = STATE(1151), + [sym_thematic_break] = STATE(1151), + [sym_block_quote] = STATE(1151), + [sym__block_quote_prefix] = STATE(222), + [sym_link_reference_definition] = STATE(1151), + [sym_block_attribute] = STATE(1151), + [sym__paragraph] = STATE(1151), + [sym__paragraph_content] = STATE(689), + [sym__paragraph_inline_content] = STATE(814), + [sym__inline] = STATE(657), + [sym__symbol_fallback] = STATE(271), + [aux_sym__list_dash_repeat1] = STATE(341), + [aux_sym__list_plus_repeat1] = STATE(342), + [aux_sym__list_star_repeat1] = STATE(343), + [aux_sym__list_task_repeat1] = STATE(314), [aux_sym__list_definition_repeat1] = STATE(456), [aux_sym__list_decimal_period_repeat1] = STATE(457), [aux_sym__list_decimal_paren_repeat1] = STATE(458), @@ -8268,9 +8284,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_upper_roman_period_repeat1] = STATE(469), [aux_sym__list_upper_roman_paren_repeat1] = STATE(470), [aux_sym__list_upper_roman_parens_repeat1] = STATE(471), - [aux_sym_table_repeat1] = STATE(234), - [aux_sym__block_quote_prefix_repeat1] = STATE(230), - [aux_sym__inline_repeat1] = STATE(273), + [aux_sym_table_repeat1] = STATE(232), + [aux_sym__block_quote_prefix_repeat1] = STATE(231), + [aux_sym__inline_repeat1] = STATE(271), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_DOT] = ACTIONS(9), @@ -8312,77 +8328,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block_attribute_begin] = ACTIONS(384), }, [29] = { - [sym__block_with_heading] = STATE(1093), - [sym__block_element] = STATE(1093), - [sym_heading] = STATE(1093), - [sym_list] = STATE(1093), - [sym__list_dash] = STATE(1007), - [sym__list_item_dash] = STATE(595), - [sym__list_plus] = STATE(1007), - [sym__list_item_plus] = STATE(657), - [sym__list_star] = STATE(1007), - [sym__list_item_star] = STATE(570), - [sym__list_task] = STATE(1007), - [sym__list_item_task] = STATE(586), - [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(1007), - [sym__list_item_definition] = STATE(694), - [sym__list_decimal_period] = STATE(1007), - [sym__list_item_decimal_period] = STATE(714), - [sym__list_decimal_paren] = STATE(1007), - [sym__list_item_decimal_paren] = STATE(719), - [sym__list_decimal_parens] = STATE(1007), - [sym__list_item_decimal_parens] = STATE(746), - [sym__list_lower_alpha_period] = STATE(1007), - [sym__list_item_lower_alpha_period] = STATE(748), - [sym__list_lower_alpha_paren] = STATE(1007), - [sym__list_item_lower_alpha_paren] = STATE(749), - [sym__list_lower_alpha_parens] = STATE(1007), - [sym__list_item_lower_alpha_parens] = STATE(753), - [sym__list_upper_alpha_period] = STATE(1007), - [sym__list_item_upper_alpha_period] = STATE(761), - [sym__list_upper_alpha_paren] = STATE(1007), - [sym__list_item_upper_alpha_paren] = STATE(764), - [sym__list_upper_alpha_parens] = STATE(1007), - [sym__list_item_upper_alpha_parens] = STATE(765), - [sym__list_lower_roman_period] = STATE(1007), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(1007), - [sym__list_item_lower_roman_paren] = STATE(769), - [sym__list_lower_roman_parens] = STATE(1007), - [sym__list_item_lower_roman_parens] = STATE(786), - [sym__list_upper_roman_period] = STATE(1007), - [sym__list_item_upper_roman_period] = STATE(791), - [sym__list_upper_roman_paren] = STATE(1007), - [sym__list_item_upper_roman_paren] = STATE(793), - [sym__list_upper_roman_parens] = STATE(1007), - [sym__list_item_upper_roman_parens] = STATE(799), - [sym_list_item_content] = STATE(699), - [sym_table] = STATE(1093), - [sym__table_row] = STATE(234), - [sym_table_header] = STATE(234), - [sym_table_separator] = STATE(234), - [sym_table_row] = STATE(234), - [sym_footnote] = STATE(1093), + [sym__block_with_heading] = STATE(1102), + [sym__block_element] = STATE(1102), + [sym_heading] = STATE(1102), + [sym_list] = STATE(1102), + [sym__list_dash] = STATE(1004), + [sym__list_item_dash] = STATE(599), + [sym__list_plus] = STATE(1004), + [sym__list_item_plus] = STATE(606), + [sym__list_star] = STATE(1004), + [sym__list_item_star] = STATE(664), + [sym__list_task] = STATE(1004), + [sym__list_item_task] = STATE(673), + [sym_list_marker_task] = STATE(44), + [sym__list_definition] = STATE(1004), + [sym__list_item_definition] = STATE(792), + [sym__list_decimal_period] = STATE(1004), + [sym__list_item_decimal_period] = STATE(691), + [sym__list_decimal_paren] = STATE(1004), + [sym__list_item_decimal_paren] = STATE(692), + [sym__list_decimal_parens] = STATE(1004), + [sym__list_item_decimal_parens] = STATE(710), + [sym__list_lower_alpha_period] = STATE(1004), + [sym__list_item_lower_alpha_period] = STATE(714), + [sym__list_lower_alpha_paren] = STATE(1004), + [sym__list_item_lower_alpha_paren] = STATE(717), + [sym__list_lower_alpha_parens] = STATE(1004), + [sym__list_item_lower_alpha_parens] = STATE(721), + [sym__list_upper_alpha_period] = STATE(1004), + [sym__list_item_upper_alpha_period] = STATE(726), + [sym__list_upper_alpha_paren] = STATE(1004), + [sym__list_item_upper_alpha_paren] = STATE(747), + [sym__list_upper_alpha_parens] = STATE(1004), + [sym__list_item_upper_alpha_parens] = STATE(751), + [sym__list_lower_roman_period] = STATE(1004), + [sym__list_item_lower_roman_period] = STATE(753), + [sym__list_lower_roman_paren] = STATE(1004), + [sym__list_item_lower_roman_paren] = STATE(755), + [sym__list_lower_roman_parens] = STATE(1004), + [sym__list_item_lower_roman_parens] = STATE(760), + [sym__list_upper_roman_period] = STATE(1004), + [sym__list_item_upper_roman_period] = STATE(761), + [sym__list_upper_roman_paren] = STATE(1004), + [sym__list_item_upper_roman_paren] = STATE(766), + [sym__list_upper_roman_parens] = STATE(1004), + [sym__list_item_upper_roman_parens] = STATE(784), + [sym_list_item_content] = STATE(550), + [sym_table] = STATE(1102), + [sym__table_row] = STATE(232), + [sym_table_header] = STATE(232), + [sym_table_separator] = STATE(232), + [sym_table_row] = STATE(232), + [sym_footnote] = STATE(1102), [sym_footnote_marker_begin] = STATE(1135), - [sym_div] = STATE(1093), + [sym_div] = STATE(1102), [sym__div_marker_begin] = STATE(1017), - [sym_code_block] = STATE(1093), - [sym_raw_block] = STATE(1093), - [sym_thematic_break] = STATE(1093), - [sym_block_quote] = STATE(1093), - [sym__block_quote_prefix] = STATE(225), - [sym_link_reference_definition] = STATE(1093), - [sym_block_attribute] = STATE(1093), - [sym__paragraph] = STATE(1093), - [sym__paragraph_content] = STATE(690), - [sym__paragraph_inline_content] = STATE(824), - [sym__inline] = STATE(654), - [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(316), - [aux_sym__list_plus_repeat1] = STATE(336), - [aux_sym__list_star_repeat1] = STATE(318), - [aux_sym__list_task_repeat1] = STATE(288), + [sym_code_block] = STATE(1102), + [sym_raw_block] = STATE(1102), + [sym_thematic_break] = STATE(1102), + [sym_block_quote] = STATE(1102), + [sym__block_quote_prefix] = STATE(222), + [sym_link_reference_definition] = STATE(1102), + [sym_block_attribute] = STATE(1102), + [sym__paragraph] = STATE(1102), + [sym__paragraph_content] = STATE(689), + [sym__paragraph_inline_content] = STATE(814), + [sym__inline] = STATE(657), + [sym__symbol_fallback] = STATE(271), + [aux_sym__list_dash_repeat1] = STATE(341), + [aux_sym__list_plus_repeat1] = STATE(342), + [aux_sym__list_star_repeat1] = STATE(343), + [aux_sym__list_task_repeat1] = STATE(314), [aux_sym__list_definition_repeat1] = STATE(456), [aux_sym__list_decimal_period_repeat1] = STATE(457), [aux_sym__list_decimal_paren_repeat1] = STATE(458), @@ -8399,9 +8415,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_upper_roman_period_repeat1] = STATE(469), [aux_sym__list_upper_roman_paren_repeat1] = STATE(470), [aux_sym__list_upper_roman_parens_repeat1] = STATE(471), - [aux_sym_table_repeat1] = STATE(234), - [aux_sym__block_quote_prefix_repeat1] = STATE(230), - [aux_sym__inline_repeat1] = STATE(273), + [aux_sym_table_repeat1] = STATE(232), + [aux_sym__block_quote_prefix_repeat1] = STATE(231), + [aux_sym__inline_repeat1] = STATE(271), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_DOT] = ACTIONS(9), @@ -8447,53 +8463,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block_element] = STATE(1094), [sym_heading] = STATE(1094), [sym_list] = STATE(1094), - [sym__list_dash] = STATE(1007), - [sym__list_item_dash] = STATE(595), - [sym__list_plus] = STATE(1007), - [sym__list_item_plus] = STATE(657), - [sym__list_star] = STATE(1007), - [sym__list_item_star] = STATE(570), - [sym__list_task] = STATE(1007), - [sym__list_item_task] = STATE(586), - [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(1007), - [sym__list_item_definition] = STATE(694), - [sym__list_decimal_period] = STATE(1007), - [sym__list_item_decimal_period] = STATE(714), - [sym__list_decimal_paren] = STATE(1007), - [sym__list_item_decimal_paren] = STATE(719), - [sym__list_decimal_parens] = STATE(1007), - [sym__list_item_decimal_parens] = STATE(746), - [sym__list_lower_alpha_period] = STATE(1007), - [sym__list_item_lower_alpha_period] = STATE(748), - [sym__list_lower_alpha_paren] = STATE(1007), - [sym__list_item_lower_alpha_paren] = STATE(749), - [sym__list_lower_alpha_parens] = STATE(1007), - [sym__list_item_lower_alpha_parens] = STATE(753), - [sym__list_upper_alpha_period] = STATE(1007), - [sym__list_item_upper_alpha_period] = STATE(761), - [sym__list_upper_alpha_paren] = STATE(1007), - [sym__list_item_upper_alpha_paren] = STATE(764), - [sym__list_upper_alpha_parens] = STATE(1007), - [sym__list_item_upper_alpha_parens] = STATE(765), - [sym__list_lower_roman_period] = STATE(1007), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(1007), - [sym__list_item_lower_roman_paren] = STATE(769), - [sym__list_lower_roman_parens] = STATE(1007), - [sym__list_item_lower_roman_parens] = STATE(786), - [sym__list_upper_roman_period] = STATE(1007), - [sym__list_item_upper_roman_period] = STATE(791), - [sym__list_upper_roman_paren] = STATE(1007), - [sym__list_item_upper_roman_paren] = STATE(793), - [sym__list_upper_roman_parens] = STATE(1007), - [sym__list_item_upper_roman_parens] = STATE(799), - [sym_list_item_content] = STATE(700), + [sym__list_dash] = STATE(1004), + [sym__list_item_dash] = STATE(599), + [sym__list_plus] = STATE(1004), + [sym__list_item_plus] = STATE(606), + [sym__list_star] = STATE(1004), + [sym__list_item_star] = STATE(664), + [sym__list_task] = STATE(1004), + [sym__list_item_task] = STATE(673), + [sym_list_marker_task] = STATE(44), + [sym__list_definition] = STATE(1004), + [sym__list_item_definition] = STATE(792), + [sym__list_decimal_period] = STATE(1004), + [sym__list_item_decimal_period] = STATE(691), + [sym__list_decimal_paren] = STATE(1004), + [sym__list_item_decimal_paren] = STATE(692), + [sym__list_decimal_parens] = STATE(1004), + [sym__list_item_decimal_parens] = STATE(710), + [sym__list_lower_alpha_period] = STATE(1004), + [sym__list_item_lower_alpha_period] = STATE(714), + [sym__list_lower_alpha_paren] = STATE(1004), + [sym__list_item_lower_alpha_paren] = STATE(717), + [sym__list_lower_alpha_parens] = STATE(1004), + [sym__list_item_lower_alpha_parens] = STATE(721), + [sym__list_upper_alpha_period] = STATE(1004), + [sym__list_item_upper_alpha_period] = STATE(726), + [sym__list_upper_alpha_paren] = STATE(1004), + [sym__list_item_upper_alpha_paren] = STATE(747), + [sym__list_upper_alpha_parens] = STATE(1004), + [sym__list_item_upper_alpha_parens] = STATE(751), + [sym__list_lower_roman_period] = STATE(1004), + [sym__list_item_lower_roman_period] = STATE(753), + [sym__list_lower_roman_paren] = STATE(1004), + [sym__list_item_lower_roman_paren] = STATE(755), + [sym__list_lower_roman_parens] = STATE(1004), + [sym__list_item_lower_roman_parens] = STATE(760), + [sym__list_upper_roman_period] = STATE(1004), + [sym__list_item_upper_roman_period] = STATE(761), + [sym__list_upper_roman_paren] = STATE(1004), + [sym__list_item_upper_roman_paren] = STATE(766), + [sym__list_upper_roman_parens] = STATE(1004), + [sym__list_item_upper_roman_parens] = STATE(784), + [sym_list_item_content] = STATE(777), [sym_table] = STATE(1094), - [sym__table_row] = STATE(234), - [sym_table_header] = STATE(234), - [sym_table_separator] = STATE(234), - [sym_table_row] = STATE(234), + [sym__table_row] = STATE(232), + [sym_table_header] = STATE(232), + [sym_table_separator] = STATE(232), + [sym_table_row] = STATE(232), [sym_footnote] = STATE(1094), [sym_footnote_marker_begin] = STATE(1135), [sym_div] = STATE(1094), @@ -8502,18 +8518,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_block] = STATE(1094), [sym_thematic_break] = STATE(1094), [sym_block_quote] = STATE(1094), - [sym__block_quote_prefix] = STATE(225), + [sym__block_quote_prefix] = STATE(222), [sym_link_reference_definition] = STATE(1094), [sym_block_attribute] = STATE(1094), [sym__paragraph] = STATE(1094), - [sym__paragraph_content] = STATE(690), - [sym__paragraph_inline_content] = STATE(824), - [sym__inline] = STATE(654), - [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(316), - [aux_sym__list_plus_repeat1] = STATE(336), - [aux_sym__list_star_repeat1] = STATE(318), - [aux_sym__list_task_repeat1] = STATE(288), + [sym__paragraph_content] = STATE(689), + [sym__paragraph_inline_content] = STATE(814), + [sym__inline] = STATE(657), + [sym__symbol_fallback] = STATE(271), + [aux_sym__list_dash_repeat1] = STATE(341), + [aux_sym__list_plus_repeat1] = STATE(342), + [aux_sym__list_star_repeat1] = STATE(343), + [aux_sym__list_task_repeat1] = STATE(314), [aux_sym__list_definition_repeat1] = STATE(456), [aux_sym__list_decimal_period_repeat1] = STATE(457), [aux_sym__list_decimal_paren_repeat1] = STATE(458), @@ -8530,9 +8546,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_upper_roman_period_repeat1] = STATE(469), [aux_sym__list_upper_roman_paren_repeat1] = STATE(470), [aux_sym__list_upper_roman_parens_repeat1] = STATE(471), - [aux_sym_table_repeat1] = STATE(234), - [aux_sym__block_quote_prefix_repeat1] = STATE(230), - [aux_sym__inline_repeat1] = STATE(273), + [aux_sym_table_repeat1] = STATE(232), + [aux_sym__block_quote_prefix_repeat1] = STATE(231), + [aux_sym__inline_repeat1] = STATE(271), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_DOT] = ACTIONS(9), @@ -8578,53 +8594,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block_element] = STATE(1095), [sym_heading] = STATE(1095), [sym_list] = STATE(1095), - [sym__list_dash] = STATE(1007), - [sym__list_item_dash] = STATE(595), - [sym__list_plus] = STATE(1007), - [sym__list_item_plus] = STATE(657), - [sym__list_star] = STATE(1007), - [sym__list_item_star] = STATE(570), - [sym__list_task] = STATE(1007), - [sym__list_item_task] = STATE(586), - [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(1007), - [sym__list_item_definition] = STATE(694), - [sym__list_decimal_period] = STATE(1007), - [sym__list_item_decimal_period] = STATE(714), - [sym__list_decimal_paren] = STATE(1007), - [sym__list_item_decimal_paren] = STATE(719), - [sym__list_decimal_parens] = STATE(1007), - [sym__list_item_decimal_parens] = STATE(746), - [sym__list_lower_alpha_period] = STATE(1007), - [sym__list_item_lower_alpha_period] = STATE(748), - [sym__list_lower_alpha_paren] = STATE(1007), - [sym__list_item_lower_alpha_paren] = STATE(749), - [sym__list_lower_alpha_parens] = STATE(1007), - [sym__list_item_lower_alpha_parens] = STATE(753), - [sym__list_upper_alpha_period] = STATE(1007), - [sym__list_item_upper_alpha_period] = STATE(761), - [sym__list_upper_alpha_paren] = STATE(1007), - [sym__list_item_upper_alpha_paren] = STATE(764), - [sym__list_upper_alpha_parens] = STATE(1007), - [sym__list_item_upper_alpha_parens] = STATE(765), - [sym__list_lower_roman_period] = STATE(1007), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(1007), - [sym__list_item_lower_roman_paren] = STATE(769), - [sym__list_lower_roman_parens] = STATE(1007), - [sym__list_item_lower_roman_parens] = STATE(786), - [sym__list_upper_roman_period] = STATE(1007), - [sym__list_item_upper_roman_period] = STATE(791), - [sym__list_upper_roman_paren] = STATE(1007), - [sym__list_item_upper_roman_paren] = STATE(793), - [sym__list_upper_roman_parens] = STATE(1007), - [sym__list_item_upper_roman_parens] = STATE(799), - [sym_list_item_content] = STATE(703), + [sym__list_dash] = STATE(1004), + [sym__list_item_dash] = STATE(599), + [sym__list_plus] = STATE(1004), + [sym__list_item_plus] = STATE(606), + [sym__list_star] = STATE(1004), + [sym__list_item_star] = STATE(664), + [sym__list_task] = STATE(1004), + [sym__list_item_task] = STATE(673), + [sym_list_marker_task] = STATE(44), + [sym__list_definition] = STATE(1004), + [sym__list_item_definition] = STATE(792), + [sym__list_decimal_period] = STATE(1004), + [sym__list_item_decimal_period] = STATE(691), + [sym__list_decimal_paren] = STATE(1004), + [sym__list_item_decimal_paren] = STATE(692), + [sym__list_decimal_parens] = STATE(1004), + [sym__list_item_decimal_parens] = STATE(710), + [sym__list_lower_alpha_period] = STATE(1004), + [sym__list_item_lower_alpha_period] = STATE(714), + [sym__list_lower_alpha_paren] = STATE(1004), + [sym__list_item_lower_alpha_paren] = STATE(717), + [sym__list_lower_alpha_parens] = STATE(1004), + [sym__list_item_lower_alpha_parens] = STATE(721), + [sym__list_upper_alpha_period] = STATE(1004), + [sym__list_item_upper_alpha_period] = STATE(726), + [sym__list_upper_alpha_paren] = STATE(1004), + [sym__list_item_upper_alpha_paren] = STATE(747), + [sym__list_upper_alpha_parens] = STATE(1004), + [sym__list_item_upper_alpha_parens] = STATE(751), + [sym__list_lower_roman_period] = STATE(1004), + [sym__list_item_lower_roman_period] = STATE(753), + [sym__list_lower_roman_paren] = STATE(1004), + [sym__list_item_lower_roman_paren] = STATE(755), + [sym__list_lower_roman_parens] = STATE(1004), + [sym__list_item_lower_roman_parens] = STATE(760), + [sym__list_upper_roman_period] = STATE(1004), + [sym__list_item_upper_roman_period] = STATE(761), + [sym__list_upper_roman_paren] = STATE(1004), + [sym__list_item_upper_roman_paren] = STATE(766), + [sym__list_upper_roman_parens] = STATE(1004), + [sym__list_item_upper_roman_parens] = STATE(784), + [sym_list_item_content] = STATE(779), [sym_table] = STATE(1095), - [sym__table_row] = STATE(234), - [sym_table_header] = STATE(234), - [sym_table_separator] = STATE(234), - [sym_table_row] = STATE(234), + [sym__table_row] = STATE(232), + [sym_table_header] = STATE(232), + [sym_table_separator] = STATE(232), + [sym_table_row] = STATE(232), [sym_footnote] = STATE(1095), [sym_footnote_marker_begin] = STATE(1135), [sym_div] = STATE(1095), @@ -8633,18 +8649,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_block] = STATE(1095), [sym_thematic_break] = STATE(1095), [sym_block_quote] = STATE(1095), - [sym__block_quote_prefix] = STATE(225), + [sym__block_quote_prefix] = STATE(222), [sym_link_reference_definition] = STATE(1095), [sym_block_attribute] = STATE(1095), [sym__paragraph] = STATE(1095), - [sym__paragraph_content] = STATE(690), - [sym__paragraph_inline_content] = STATE(824), - [sym__inline] = STATE(654), - [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(316), - [aux_sym__list_plus_repeat1] = STATE(336), - [aux_sym__list_star_repeat1] = STATE(318), - [aux_sym__list_task_repeat1] = STATE(288), + [sym__paragraph_content] = STATE(689), + [sym__paragraph_inline_content] = STATE(814), + [sym__inline] = STATE(657), + [sym__symbol_fallback] = STATE(271), + [aux_sym__list_dash_repeat1] = STATE(341), + [aux_sym__list_plus_repeat1] = STATE(342), + [aux_sym__list_star_repeat1] = STATE(343), + [aux_sym__list_task_repeat1] = STATE(314), [aux_sym__list_definition_repeat1] = STATE(456), [aux_sym__list_decimal_period_repeat1] = STATE(457), [aux_sym__list_decimal_paren_repeat1] = STATE(458), @@ -8661,9 +8677,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_upper_roman_period_repeat1] = STATE(469), [aux_sym__list_upper_roman_paren_repeat1] = STATE(470), [aux_sym__list_upper_roman_parens_repeat1] = STATE(471), - [aux_sym_table_repeat1] = STATE(234), - [aux_sym__block_quote_prefix_repeat1] = STATE(230), - [aux_sym__inline_repeat1] = STATE(273), + [aux_sym_table_repeat1] = STATE(232), + [aux_sym__block_quote_prefix_repeat1] = STATE(231), + [aux_sym__inline_repeat1] = STATE(271), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_DOT] = ACTIONS(9), @@ -8705,77 +8721,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block_attribute_begin] = ACTIONS(384), }, [32] = { - [sym__block_with_heading] = STATE(952), - [sym__block_element] = STATE(952), - [sym_heading] = STATE(952), - [sym_list] = STATE(952), - [sym__list_dash] = STATE(1007), - [sym__list_item_dash] = STATE(595), - [sym__list_plus] = STATE(1007), - [sym__list_item_plus] = STATE(657), - [sym__list_star] = STATE(1007), - [sym__list_item_star] = STATE(570), - [sym__list_task] = STATE(1007), - [sym__list_item_task] = STATE(586), - [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(1007), - [sym__list_item_definition] = STATE(694), - [sym__list_decimal_period] = STATE(1007), - [sym__list_item_decimal_period] = STATE(714), - [sym__list_decimal_paren] = STATE(1007), - [sym__list_item_decimal_paren] = STATE(719), - [sym__list_decimal_parens] = STATE(1007), - [sym__list_item_decimal_parens] = STATE(746), - [sym__list_lower_alpha_period] = STATE(1007), - [sym__list_item_lower_alpha_period] = STATE(748), - [sym__list_lower_alpha_paren] = STATE(1007), - [sym__list_item_lower_alpha_paren] = STATE(749), - [sym__list_lower_alpha_parens] = STATE(1007), - [sym__list_item_lower_alpha_parens] = STATE(753), - [sym__list_upper_alpha_period] = STATE(1007), - [sym__list_item_upper_alpha_period] = STATE(761), - [sym__list_upper_alpha_paren] = STATE(1007), - [sym__list_item_upper_alpha_paren] = STATE(764), - [sym__list_upper_alpha_parens] = STATE(1007), - [sym__list_item_upper_alpha_parens] = STATE(765), - [sym__list_lower_roman_period] = STATE(1007), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(1007), - [sym__list_item_lower_roman_paren] = STATE(769), - [sym__list_lower_roman_parens] = STATE(1007), - [sym__list_item_lower_roman_parens] = STATE(786), - [sym__list_upper_roman_period] = STATE(1007), - [sym__list_item_upper_roman_period] = STATE(791), - [sym__list_upper_roman_paren] = STATE(1007), - [sym__list_item_upper_roman_paren] = STATE(793), - [sym__list_upper_roman_parens] = STATE(1007), - [sym__list_item_upper_roman_parens] = STATE(799), - [sym_table] = STATE(952), - [sym__table_row] = STATE(234), - [sym_table_header] = STATE(234), - [sym_table_separator] = STATE(234), - [sym_table_row] = STATE(234), - [sym_footnote] = STATE(952), + [sym__block_with_heading] = STATE(1096), + [sym__block_element] = STATE(1096), + [sym_heading] = STATE(1096), + [sym_list] = STATE(1096), + [sym__list_dash] = STATE(1004), + [sym__list_item_dash] = STATE(599), + [sym__list_plus] = STATE(1004), + [sym__list_item_plus] = STATE(606), + [sym__list_star] = STATE(1004), + [sym__list_item_star] = STATE(664), + [sym__list_task] = STATE(1004), + [sym__list_item_task] = STATE(673), + [sym_list_marker_task] = STATE(44), + [sym__list_definition] = STATE(1004), + [sym__list_item_definition] = STATE(792), + [sym__list_decimal_period] = STATE(1004), + [sym__list_item_decimal_period] = STATE(691), + [sym__list_decimal_paren] = STATE(1004), + [sym__list_item_decimal_paren] = STATE(692), + [sym__list_decimal_parens] = STATE(1004), + [sym__list_item_decimal_parens] = STATE(710), + [sym__list_lower_alpha_period] = STATE(1004), + [sym__list_item_lower_alpha_period] = STATE(714), + [sym__list_lower_alpha_paren] = STATE(1004), + [sym__list_item_lower_alpha_paren] = STATE(717), + [sym__list_lower_alpha_parens] = STATE(1004), + [sym__list_item_lower_alpha_parens] = STATE(721), + [sym__list_upper_alpha_period] = STATE(1004), + [sym__list_item_upper_alpha_period] = STATE(726), + [sym__list_upper_alpha_paren] = STATE(1004), + [sym__list_item_upper_alpha_paren] = STATE(747), + [sym__list_upper_alpha_parens] = STATE(1004), + [sym__list_item_upper_alpha_parens] = STATE(751), + [sym__list_lower_roman_period] = STATE(1004), + [sym__list_item_lower_roman_period] = STATE(753), + [sym__list_lower_roman_paren] = STATE(1004), + [sym__list_item_lower_roman_paren] = STATE(755), + [sym__list_lower_roman_parens] = STATE(1004), + [sym__list_item_lower_roman_parens] = STATE(760), + [sym__list_upper_roman_period] = STATE(1004), + [sym__list_item_upper_roman_period] = STATE(761), + [sym__list_upper_roman_paren] = STATE(1004), + [sym__list_item_upper_roman_paren] = STATE(766), + [sym__list_upper_roman_parens] = STATE(1004), + [sym__list_item_upper_roman_parens] = STATE(784), + [sym_list_item_content] = STATE(785), + [sym_table] = STATE(1096), + [sym__table_row] = STATE(232), + [sym_table_header] = STATE(232), + [sym_table_separator] = STATE(232), + [sym_table_row] = STATE(232), + [sym_footnote] = STATE(1096), [sym_footnote_marker_begin] = STATE(1135), - [sym_footnote_content] = STATE(204), - [sym_div] = STATE(952), + [sym_div] = STATE(1096), [sym__div_marker_begin] = STATE(1017), - [sym_code_block] = STATE(952), - [sym_raw_block] = STATE(952), - [sym_thematic_break] = STATE(952), - [sym_block_quote] = STATE(952), - [sym__block_quote_prefix] = STATE(225), - [sym_link_reference_definition] = STATE(952), - [sym_block_attribute] = STATE(952), - [sym__paragraph] = STATE(952), - [sym__paragraph_content] = STATE(690), - [sym__paragraph_inline_content] = STATE(824), - [sym__inline] = STATE(654), - [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(316), - [aux_sym__list_plus_repeat1] = STATE(336), - [aux_sym__list_star_repeat1] = STATE(318), - [aux_sym__list_task_repeat1] = STATE(288), + [sym_code_block] = STATE(1096), + [sym_raw_block] = STATE(1096), + [sym_thematic_break] = STATE(1096), + [sym_block_quote] = STATE(1096), + [sym__block_quote_prefix] = STATE(222), + [sym_link_reference_definition] = STATE(1096), + [sym_block_attribute] = STATE(1096), + [sym__paragraph] = STATE(1096), + [sym__paragraph_content] = STATE(689), + [sym__paragraph_inline_content] = STATE(814), + [sym__inline] = STATE(657), + [sym__symbol_fallback] = STATE(271), + [aux_sym__list_dash_repeat1] = STATE(341), + [aux_sym__list_plus_repeat1] = STATE(342), + [aux_sym__list_star_repeat1] = STATE(343), + [aux_sym__list_task_repeat1] = STATE(314), [aux_sym__list_definition_repeat1] = STATE(456), [aux_sym__list_decimal_period_repeat1] = STATE(457), [aux_sym__list_decimal_paren_repeat1] = STATE(458), @@ -8792,9 +8808,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_upper_roman_period_repeat1] = STATE(469), [aux_sym__list_upper_roman_paren_repeat1] = STATE(470), [aux_sym__list_upper_roman_parens_repeat1] = STATE(471), - [aux_sym_table_repeat1] = STATE(234), - [aux_sym__block_quote_prefix_repeat1] = STATE(230), - [aux_sym__inline_repeat1] = STATE(273), + [aux_sym_table_repeat1] = STATE(232), + [aux_sym__block_quote_prefix_repeat1] = STATE(231), + [aux_sym__inline_repeat1] = STATE(271), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_DOT] = ACTIONS(9), @@ -8836,77 +8852,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block_attribute_begin] = ACTIONS(384), }, [33] = { - [sym__block_with_heading] = STATE(1096), - [sym__block_element] = STATE(1096), - [sym_heading] = STATE(1096), - [sym_list] = STATE(1096), - [sym__list_dash] = STATE(1007), - [sym__list_item_dash] = STATE(595), - [sym__list_plus] = STATE(1007), - [sym__list_item_plus] = STATE(657), - [sym__list_star] = STATE(1007), - [sym__list_item_star] = STATE(570), - [sym__list_task] = STATE(1007), - [sym__list_item_task] = STATE(586), - [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(1007), - [sym__list_item_definition] = STATE(694), - [sym__list_decimal_period] = STATE(1007), - [sym__list_item_decimal_period] = STATE(714), - [sym__list_decimal_paren] = STATE(1007), - [sym__list_item_decimal_paren] = STATE(719), - [sym__list_decimal_parens] = STATE(1007), - [sym__list_item_decimal_parens] = STATE(746), - [sym__list_lower_alpha_period] = STATE(1007), - [sym__list_item_lower_alpha_period] = STATE(748), - [sym__list_lower_alpha_paren] = STATE(1007), - [sym__list_item_lower_alpha_paren] = STATE(749), - [sym__list_lower_alpha_parens] = STATE(1007), - [sym__list_item_lower_alpha_parens] = STATE(753), - [sym__list_upper_alpha_period] = STATE(1007), - [sym__list_item_upper_alpha_period] = STATE(761), - [sym__list_upper_alpha_paren] = STATE(1007), - [sym__list_item_upper_alpha_paren] = STATE(764), - [sym__list_upper_alpha_parens] = STATE(1007), - [sym__list_item_upper_alpha_parens] = STATE(765), - [sym__list_lower_roman_period] = STATE(1007), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(1007), - [sym__list_item_lower_roman_paren] = STATE(769), - [sym__list_lower_roman_parens] = STATE(1007), - [sym__list_item_lower_roman_parens] = STATE(786), - [sym__list_upper_roman_period] = STATE(1007), - [sym__list_item_upper_roman_period] = STATE(791), - [sym__list_upper_roman_paren] = STATE(1007), - [sym__list_item_upper_roman_paren] = STATE(793), - [sym__list_upper_roman_parens] = STATE(1007), - [sym__list_item_upper_roman_parens] = STATE(799), - [sym_list_item_content] = STATE(706), - [sym_table] = STATE(1096), - [sym__table_row] = STATE(234), - [sym_table_header] = STATE(234), - [sym_table_separator] = STATE(234), - [sym_table_row] = STATE(234), - [sym_footnote] = STATE(1096), + [sym__block_with_heading] = STATE(931), + [sym__block_element] = STATE(931), + [sym_heading] = STATE(931), + [sym_list] = STATE(931), + [sym__list_dash] = STATE(1004), + [sym__list_item_dash] = STATE(599), + [sym__list_plus] = STATE(1004), + [sym__list_item_plus] = STATE(606), + [sym__list_star] = STATE(1004), + [sym__list_item_star] = STATE(664), + [sym__list_task] = STATE(1004), + [sym__list_item_task] = STATE(673), + [sym_list_marker_task] = STATE(44), + [sym__list_definition] = STATE(1004), + [sym__list_item_definition] = STATE(792), + [sym__list_decimal_period] = STATE(1004), + [sym__list_item_decimal_period] = STATE(691), + [sym__list_decimal_paren] = STATE(1004), + [sym__list_item_decimal_paren] = STATE(692), + [sym__list_decimal_parens] = STATE(1004), + [sym__list_item_decimal_parens] = STATE(710), + [sym__list_lower_alpha_period] = STATE(1004), + [sym__list_item_lower_alpha_period] = STATE(714), + [sym__list_lower_alpha_paren] = STATE(1004), + [sym__list_item_lower_alpha_paren] = STATE(717), + [sym__list_lower_alpha_parens] = STATE(1004), + [sym__list_item_lower_alpha_parens] = STATE(721), + [sym__list_upper_alpha_period] = STATE(1004), + [sym__list_item_upper_alpha_period] = STATE(726), + [sym__list_upper_alpha_paren] = STATE(1004), + [sym__list_item_upper_alpha_paren] = STATE(747), + [sym__list_upper_alpha_parens] = STATE(1004), + [sym__list_item_upper_alpha_parens] = STATE(751), + [sym__list_lower_roman_period] = STATE(1004), + [sym__list_item_lower_roman_period] = STATE(753), + [sym__list_lower_roman_paren] = STATE(1004), + [sym__list_item_lower_roman_paren] = STATE(755), + [sym__list_lower_roman_parens] = STATE(1004), + [sym__list_item_lower_roman_parens] = STATE(760), + [sym__list_upper_roman_period] = STATE(1004), + [sym__list_item_upper_roman_period] = STATE(761), + [sym__list_upper_roman_paren] = STATE(1004), + [sym__list_item_upper_roman_paren] = STATE(766), + [sym__list_upper_roman_parens] = STATE(1004), + [sym__list_item_upper_roman_parens] = STATE(784), + [sym_table] = STATE(931), + [sym__table_row] = STATE(232), + [sym_table_header] = STATE(232), + [sym_table_separator] = STATE(232), + [sym_table_row] = STATE(232), + [sym_footnote] = STATE(931), [sym_footnote_marker_begin] = STATE(1135), - [sym_div] = STATE(1096), + [sym_footnote_content] = STATE(110), + [sym_div] = STATE(931), [sym__div_marker_begin] = STATE(1017), - [sym_code_block] = STATE(1096), - [sym_raw_block] = STATE(1096), - [sym_thematic_break] = STATE(1096), - [sym_block_quote] = STATE(1096), - [sym__block_quote_prefix] = STATE(225), - [sym_link_reference_definition] = STATE(1096), - [sym_block_attribute] = STATE(1096), - [sym__paragraph] = STATE(1096), - [sym__paragraph_content] = STATE(690), - [sym__paragraph_inline_content] = STATE(824), - [sym__inline] = STATE(654), - [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(316), - [aux_sym__list_plus_repeat1] = STATE(336), - [aux_sym__list_star_repeat1] = STATE(318), - [aux_sym__list_task_repeat1] = STATE(288), + [sym_code_block] = STATE(931), + [sym_raw_block] = STATE(931), + [sym_thematic_break] = STATE(931), + [sym_block_quote] = STATE(931), + [sym__block_quote_prefix] = STATE(222), + [sym_link_reference_definition] = STATE(931), + [sym_block_attribute] = STATE(931), + [sym__paragraph] = STATE(931), + [sym__paragraph_content] = STATE(689), + [sym__paragraph_inline_content] = STATE(814), + [sym__inline] = STATE(657), + [sym__symbol_fallback] = STATE(271), + [aux_sym__list_dash_repeat1] = STATE(341), + [aux_sym__list_plus_repeat1] = STATE(342), + [aux_sym__list_star_repeat1] = STATE(343), + [aux_sym__list_task_repeat1] = STATE(314), [aux_sym__list_definition_repeat1] = STATE(456), [aux_sym__list_decimal_period_repeat1] = STATE(457), [aux_sym__list_decimal_paren_repeat1] = STATE(458), @@ -8923,9 +8939,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_upper_roman_period_repeat1] = STATE(469), [aux_sym__list_upper_roman_paren_repeat1] = STATE(470), [aux_sym__list_upper_roman_parens_repeat1] = STATE(471), - [aux_sym_table_repeat1] = STATE(234), - [aux_sym__block_quote_prefix_repeat1] = STATE(230), - [aux_sym__inline_repeat1] = STATE(273), + [aux_sym_table_repeat1] = STATE(232), + [aux_sym__block_quote_prefix_repeat1] = STATE(231), + [aux_sym__inline_repeat1] = STATE(271), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_DOT] = ACTIONS(9), @@ -8971,53 +8987,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block_element] = STATE(1097), [sym_heading] = STATE(1097), [sym_list] = STATE(1097), - [sym__list_dash] = STATE(1007), - [sym__list_item_dash] = STATE(595), - [sym__list_plus] = STATE(1007), - [sym__list_item_plus] = STATE(657), - [sym__list_star] = STATE(1007), - [sym__list_item_star] = STATE(570), - [sym__list_task] = STATE(1007), - [sym__list_item_task] = STATE(586), - [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(1007), - [sym__list_item_definition] = STATE(694), - [sym__list_decimal_period] = STATE(1007), - [sym__list_item_decimal_period] = STATE(714), - [sym__list_decimal_paren] = STATE(1007), - [sym__list_item_decimal_paren] = STATE(719), - [sym__list_decimal_parens] = STATE(1007), - [sym__list_item_decimal_parens] = STATE(746), - [sym__list_lower_alpha_period] = STATE(1007), - [sym__list_item_lower_alpha_period] = STATE(748), - [sym__list_lower_alpha_paren] = STATE(1007), - [sym__list_item_lower_alpha_paren] = STATE(749), - [sym__list_lower_alpha_parens] = STATE(1007), - [sym__list_item_lower_alpha_parens] = STATE(753), - [sym__list_upper_alpha_period] = STATE(1007), - [sym__list_item_upper_alpha_period] = STATE(761), - [sym__list_upper_alpha_paren] = STATE(1007), - [sym__list_item_upper_alpha_paren] = STATE(764), - [sym__list_upper_alpha_parens] = STATE(1007), - [sym__list_item_upper_alpha_parens] = STATE(765), - [sym__list_lower_roman_period] = STATE(1007), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(1007), - [sym__list_item_lower_roman_paren] = STATE(769), - [sym__list_lower_roman_parens] = STATE(1007), - [sym__list_item_lower_roman_parens] = STATE(786), - [sym__list_upper_roman_period] = STATE(1007), - [sym__list_item_upper_roman_period] = STATE(791), - [sym__list_upper_roman_paren] = STATE(1007), - [sym__list_item_upper_roman_paren] = STATE(793), - [sym__list_upper_roman_parens] = STATE(1007), - [sym__list_item_upper_roman_parens] = STATE(799), - [sym_list_item_content] = STATE(708), + [sym__list_dash] = STATE(1004), + [sym__list_item_dash] = STATE(599), + [sym__list_plus] = STATE(1004), + [sym__list_item_plus] = STATE(606), + [sym__list_star] = STATE(1004), + [sym__list_item_star] = STATE(664), + [sym__list_task] = STATE(1004), + [sym__list_item_task] = STATE(673), + [sym_list_marker_task] = STATE(44), + [sym__list_definition] = STATE(1004), + [sym__list_item_definition] = STATE(792), + [sym__list_decimal_period] = STATE(1004), + [sym__list_item_decimal_period] = STATE(691), + [sym__list_decimal_paren] = STATE(1004), + [sym__list_item_decimal_paren] = STATE(692), + [sym__list_decimal_parens] = STATE(1004), + [sym__list_item_decimal_parens] = STATE(710), + [sym__list_lower_alpha_period] = STATE(1004), + [sym__list_item_lower_alpha_period] = STATE(714), + [sym__list_lower_alpha_paren] = STATE(1004), + [sym__list_item_lower_alpha_paren] = STATE(717), + [sym__list_lower_alpha_parens] = STATE(1004), + [sym__list_item_lower_alpha_parens] = STATE(721), + [sym__list_upper_alpha_period] = STATE(1004), + [sym__list_item_upper_alpha_period] = STATE(726), + [sym__list_upper_alpha_paren] = STATE(1004), + [sym__list_item_upper_alpha_paren] = STATE(747), + [sym__list_upper_alpha_parens] = STATE(1004), + [sym__list_item_upper_alpha_parens] = STATE(751), + [sym__list_lower_roman_period] = STATE(1004), + [sym__list_item_lower_roman_period] = STATE(753), + [sym__list_lower_roman_paren] = STATE(1004), + [sym__list_item_lower_roman_paren] = STATE(755), + [sym__list_lower_roman_parens] = STATE(1004), + [sym__list_item_lower_roman_parens] = STATE(760), + [sym__list_upper_roman_period] = STATE(1004), + [sym__list_item_upper_roman_period] = STATE(761), + [sym__list_upper_roman_paren] = STATE(1004), + [sym__list_item_upper_roman_paren] = STATE(766), + [sym__list_upper_roman_parens] = STATE(1004), + [sym__list_item_upper_roman_parens] = STATE(784), + [sym_list_item_content] = STATE(686), [sym_table] = STATE(1097), - [sym__table_row] = STATE(234), - [sym_table_header] = STATE(234), - [sym_table_separator] = STATE(234), - [sym_table_row] = STATE(234), + [sym__table_row] = STATE(232), + [sym_table_header] = STATE(232), + [sym_table_separator] = STATE(232), + [sym_table_row] = STATE(232), [sym_footnote] = STATE(1097), [sym_footnote_marker_begin] = STATE(1135), [sym_div] = STATE(1097), @@ -9026,18 +9042,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_block] = STATE(1097), [sym_thematic_break] = STATE(1097), [sym_block_quote] = STATE(1097), - [sym__block_quote_prefix] = STATE(225), + [sym__block_quote_prefix] = STATE(222), [sym_link_reference_definition] = STATE(1097), [sym_block_attribute] = STATE(1097), [sym__paragraph] = STATE(1097), - [sym__paragraph_content] = STATE(690), - [sym__paragraph_inline_content] = STATE(824), - [sym__inline] = STATE(654), - [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(316), - [aux_sym__list_plus_repeat1] = STATE(336), - [aux_sym__list_star_repeat1] = STATE(318), - [aux_sym__list_task_repeat1] = STATE(288), + [sym__paragraph_content] = STATE(689), + [sym__paragraph_inline_content] = STATE(814), + [sym__inline] = STATE(657), + [sym__symbol_fallback] = STATE(271), + [aux_sym__list_dash_repeat1] = STATE(341), + [aux_sym__list_plus_repeat1] = STATE(342), + [aux_sym__list_star_repeat1] = STATE(343), + [aux_sym__list_task_repeat1] = STATE(314), [aux_sym__list_definition_repeat1] = STATE(456), [aux_sym__list_decimal_period_repeat1] = STATE(457), [aux_sym__list_decimal_paren_repeat1] = STATE(458), @@ -9054,9 +9070,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_upper_roman_period_repeat1] = STATE(469), [aux_sym__list_upper_roman_paren_repeat1] = STATE(470), [aux_sym__list_upper_roman_parens_repeat1] = STATE(471), - [aux_sym_table_repeat1] = STATE(234), - [aux_sym__block_quote_prefix_repeat1] = STATE(230), - [aux_sym__inline_repeat1] = STATE(273), + [aux_sym_table_repeat1] = STATE(232), + [aux_sym__block_quote_prefix_repeat1] = STATE(231), + [aux_sym__inline_repeat1] = STATE(271), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_DOT] = ACTIONS(9), @@ -9102,53 +9118,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block_element] = STATE(1098), [sym_heading] = STATE(1098), [sym_list] = STATE(1098), - [sym__list_dash] = STATE(1007), - [sym__list_item_dash] = STATE(595), - [sym__list_plus] = STATE(1007), - [sym__list_item_plus] = STATE(657), - [sym__list_star] = STATE(1007), - [sym__list_item_star] = STATE(570), - [sym__list_task] = STATE(1007), - [sym__list_item_task] = STATE(586), - [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(1007), - [sym__list_item_definition] = STATE(694), - [sym__list_decimal_period] = STATE(1007), - [sym__list_item_decimal_period] = STATE(714), - [sym__list_decimal_paren] = STATE(1007), - [sym__list_item_decimal_paren] = STATE(719), - [sym__list_decimal_parens] = STATE(1007), - [sym__list_item_decimal_parens] = STATE(746), - [sym__list_lower_alpha_period] = STATE(1007), - [sym__list_item_lower_alpha_period] = STATE(748), - [sym__list_lower_alpha_paren] = STATE(1007), - [sym__list_item_lower_alpha_paren] = STATE(749), - [sym__list_lower_alpha_parens] = STATE(1007), - [sym__list_item_lower_alpha_parens] = STATE(753), - [sym__list_upper_alpha_period] = STATE(1007), - [sym__list_item_upper_alpha_period] = STATE(761), - [sym__list_upper_alpha_paren] = STATE(1007), - [sym__list_item_upper_alpha_paren] = STATE(764), - [sym__list_upper_alpha_parens] = STATE(1007), - [sym__list_item_upper_alpha_parens] = STATE(765), - [sym__list_lower_roman_period] = STATE(1007), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(1007), - [sym__list_item_lower_roman_paren] = STATE(769), - [sym__list_lower_roman_parens] = STATE(1007), - [sym__list_item_lower_roman_parens] = STATE(786), - [sym__list_upper_roman_period] = STATE(1007), - [sym__list_item_upper_roman_period] = STATE(791), - [sym__list_upper_roman_paren] = STATE(1007), - [sym__list_item_upper_roman_paren] = STATE(793), - [sym__list_upper_roman_parens] = STATE(1007), - [sym__list_item_upper_roman_parens] = STATE(799), - [sym_list_item_content] = STATE(709), + [sym__list_dash] = STATE(1004), + [sym__list_item_dash] = STATE(599), + [sym__list_plus] = STATE(1004), + [sym__list_item_plus] = STATE(606), + [sym__list_star] = STATE(1004), + [sym__list_item_star] = STATE(664), + [sym__list_task] = STATE(1004), + [sym__list_item_task] = STATE(673), + [sym_list_marker_task] = STATE(44), + [sym__list_definition] = STATE(1004), + [sym__list_item_definition] = STATE(792), + [sym__list_decimal_period] = STATE(1004), + [sym__list_item_decimal_period] = STATE(691), + [sym__list_decimal_paren] = STATE(1004), + [sym__list_item_decimal_paren] = STATE(692), + [sym__list_decimal_parens] = STATE(1004), + [sym__list_item_decimal_parens] = STATE(710), + [sym__list_lower_alpha_period] = STATE(1004), + [sym__list_item_lower_alpha_period] = STATE(714), + [sym__list_lower_alpha_paren] = STATE(1004), + [sym__list_item_lower_alpha_paren] = STATE(717), + [sym__list_lower_alpha_parens] = STATE(1004), + [sym__list_item_lower_alpha_parens] = STATE(721), + [sym__list_upper_alpha_period] = STATE(1004), + [sym__list_item_upper_alpha_period] = STATE(726), + [sym__list_upper_alpha_paren] = STATE(1004), + [sym__list_item_upper_alpha_paren] = STATE(747), + [sym__list_upper_alpha_parens] = STATE(1004), + [sym__list_item_upper_alpha_parens] = STATE(751), + [sym__list_lower_roman_period] = STATE(1004), + [sym__list_item_lower_roman_period] = STATE(753), + [sym__list_lower_roman_paren] = STATE(1004), + [sym__list_item_lower_roman_paren] = STATE(755), + [sym__list_lower_roman_parens] = STATE(1004), + [sym__list_item_lower_roman_parens] = STATE(760), + [sym__list_upper_roman_period] = STATE(1004), + [sym__list_item_upper_roman_period] = STATE(761), + [sym__list_upper_roman_paren] = STATE(1004), + [sym__list_item_upper_roman_paren] = STATE(766), + [sym__list_upper_roman_parens] = STATE(1004), + [sym__list_item_upper_roman_parens] = STATE(784), + [sym_list_item_content] = STATE(743), [sym_table] = STATE(1098), - [sym__table_row] = STATE(234), - [sym_table_header] = STATE(234), - [sym_table_separator] = STATE(234), - [sym_table_row] = STATE(234), + [sym__table_row] = STATE(232), + [sym_table_header] = STATE(232), + [sym_table_separator] = STATE(232), + [sym_table_row] = STATE(232), [sym_footnote] = STATE(1098), [sym_footnote_marker_begin] = STATE(1135), [sym_div] = STATE(1098), @@ -9157,18 +9173,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_block] = STATE(1098), [sym_thematic_break] = STATE(1098), [sym_block_quote] = STATE(1098), - [sym__block_quote_prefix] = STATE(225), + [sym__block_quote_prefix] = STATE(222), [sym_link_reference_definition] = STATE(1098), [sym_block_attribute] = STATE(1098), [sym__paragraph] = STATE(1098), - [sym__paragraph_content] = STATE(690), - [sym__paragraph_inline_content] = STATE(824), - [sym__inline] = STATE(654), - [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(316), - [aux_sym__list_plus_repeat1] = STATE(336), - [aux_sym__list_star_repeat1] = STATE(318), - [aux_sym__list_task_repeat1] = STATE(288), + [sym__paragraph_content] = STATE(689), + [sym__paragraph_inline_content] = STATE(814), + [sym__inline] = STATE(657), + [sym__symbol_fallback] = STATE(271), + [aux_sym__list_dash_repeat1] = STATE(341), + [aux_sym__list_plus_repeat1] = STATE(342), + [aux_sym__list_star_repeat1] = STATE(343), + [aux_sym__list_task_repeat1] = STATE(314), [aux_sym__list_definition_repeat1] = STATE(456), [aux_sym__list_decimal_period_repeat1] = STATE(457), [aux_sym__list_decimal_paren_repeat1] = STATE(458), @@ -9185,9 +9201,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_upper_roman_period_repeat1] = STATE(469), [aux_sym__list_upper_roman_paren_repeat1] = STATE(470), [aux_sym__list_upper_roman_parens_repeat1] = STATE(471), - [aux_sym_table_repeat1] = STATE(234), - [aux_sym__block_quote_prefix_repeat1] = STATE(230), - [aux_sym__inline_repeat1] = STATE(273), + [aux_sym_table_repeat1] = STATE(232), + [aux_sym__block_quote_prefix_repeat1] = STATE(231), + [aux_sym__inline_repeat1] = STATE(271), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_DOT] = ACTIONS(9), @@ -9233,53 +9249,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block_element] = STATE(1099), [sym_heading] = STATE(1099), [sym_list] = STATE(1099), - [sym__list_dash] = STATE(1007), - [sym__list_item_dash] = STATE(595), - [sym__list_plus] = STATE(1007), - [sym__list_item_plus] = STATE(657), - [sym__list_star] = STATE(1007), - [sym__list_item_star] = STATE(570), - [sym__list_task] = STATE(1007), - [sym__list_item_task] = STATE(586), - [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(1007), - [sym__list_item_definition] = STATE(694), - [sym__list_decimal_period] = STATE(1007), - [sym__list_item_decimal_period] = STATE(714), - [sym__list_decimal_paren] = STATE(1007), - [sym__list_item_decimal_paren] = STATE(719), - [sym__list_decimal_parens] = STATE(1007), - [sym__list_item_decimal_parens] = STATE(746), - [sym__list_lower_alpha_period] = STATE(1007), - [sym__list_item_lower_alpha_period] = STATE(748), - [sym__list_lower_alpha_paren] = STATE(1007), - [sym__list_item_lower_alpha_paren] = STATE(749), - [sym__list_lower_alpha_parens] = STATE(1007), - [sym__list_item_lower_alpha_parens] = STATE(753), - [sym__list_upper_alpha_period] = STATE(1007), - [sym__list_item_upper_alpha_period] = STATE(761), - [sym__list_upper_alpha_paren] = STATE(1007), - [sym__list_item_upper_alpha_paren] = STATE(764), - [sym__list_upper_alpha_parens] = STATE(1007), - [sym__list_item_upper_alpha_parens] = STATE(765), - [sym__list_lower_roman_period] = STATE(1007), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(1007), - [sym__list_item_lower_roman_paren] = STATE(769), - [sym__list_lower_roman_parens] = STATE(1007), - [sym__list_item_lower_roman_parens] = STATE(786), - [sym__list_upper_roman_period] = STATE(1007), - [sym__list_item_upper_roman_period] = STATE(791), - [sym__list_upper_roman_paren] = STATE(1007), - [sym__list_item_upper_roman_paren] = STATE(793), - [sym__list_upper_roman_parens] = STATE(1007), - [sym__list_item_upper_roman_parens] = STATE(799), - [sym_list_item_content] = STATE(710), + [sym__list_dash] = STATE(1004), + [sym__list_item_dash] = STATE(599), + [sym__list_plus] = STATE(1004), + [sym__list_item_plus] = STATE(606), + [sym__list_star] = STATE(1004), + [sym__list_item_star] = STATE(664), + [sym__list_task] = STATE(1004), + [sym__list_item_task] = STATE(673), + [sym_list_marker_task] = STATE(44), + [sym__list_definition] = STATE(1004), + [sym__list_item_definition] = STATE(792), + [sym__list_decimal_period] = STATE(1004), + [sym__list_item_decimal_period] = STATE(691), + [sym__list_decimal_paren] = STATE(1004), + [sym__list_item_decimal_paren] = STATE(692), + [sym__list_decimal_parens] = STATE(1004), + [sym__list_item_decimal_parens] = STATE(710), + [sym__list_lower_alpha_period] = STATE(1004), + [sym__list_item_lower_alpha_period] = STATE(714), + [sym__list_lower_alpha_paren] = STATE(1004), + [sym__list_item_lower_alpha_paren] = STATE(717), + [sym__list_lower_alpha_parens] = STATE(1004), + [sym__list_item_lower_alpha_parens] = STATE(721), + [sym__list_upper_alpha_period] = STATE(1004), + [sym__list_item_upper_alpha_period] = STATE(726), + [sym__list_upper_alpha_paren] = STATE(1004), + [sym__list_item_upper_alpha_paren] = STATE(747), + [sym__list_upper_alpha_parens] = STATE(1004), + [sym__list_item_upper_alpha_parens] = STATE(751), + [sym__list_lower_roman_period] = STATE(1004), + [sym__list_item_lower_roman_period] = STATE(753), + [sym__list_lower_roman_paren] = STATE(1004), + [sym__list_item_lower_roman_paren] = STATE(755), + [sym__list_lower_roman_parens] = STATE(1004), + [sym__list_item_lower_roman_parens] = STATE(760), + [sym__list_upper_roman_period] = STATE(1004), + [sym__list_item_upper_roman_period] = STATE(761), + [sym__list_upper_roman_paren] = STATE(1004), + [sym__list_item_upper_roman_paren] = STATE(766), + [sym__list_upper_roman_parens] = STATE(1004), + [sym__list_item_upper_roman_parens] = STATE(784), + [sym_list_item_content] = STATE(750), [sym_table] = STATE(1099), - [sym__table_row] = STATE(234), - [sym_table_header] = STATE(234), - [sym_table_separator] = STATE(234), - [sym_table_row] = STATE(234), + [sym__table_row] = STATE(232), + [sym_table_header] = STATE(232), + [sym_table_separator] = STATE(232), + [sym_table_row] = STATE(232), [sym_footnote] = STATE(1099), [sym_footnote_marker_begin] = STATE(1135), [sym_div] = STATE(1099), @@ -9288,18 +9304,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_block] = STATE(1099), [sym_thematic_break] = STATE(1099), [sym_block_quote] = STATE(1099), - [sym__block_quote_prefix] = STATE(225), + [sym__block_quote_prefix] = STATE(222), [sym_link_reference_definition] = STATE(1099), [sym_block_attribute] = STATE(1099), [sym__paragraph] = STATE(1099), - [sym__paragraph_content] = STATE(690), - [sym__paragraph_inline_content] = STATE(824), - [sym__inline] = STATE(654), - [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(316), - [aux_sym__list_plus_repeat1] = STATE(336), - [aux_sym__list_star_repeat1] = STATE(318), - [aux_sym__list_task_repeat1] = STATE(288), + [sym__paragraph_content] = STATE(689), + [sym__paragraph_inline_content] = STATE(814), + [sym__inline] = STATE(657), + [sym__symbol_fallback] = STATE(271), + [aux_sym__list_dash_repeat1] = STATE(341), + [aux_sym__list_plus_repeat1] = STATE(342), + [aux_sym__list_star_repeat1] = STATE(343), + [aux_sym__list_task_repeat1] = STATE(314), [aux_sym__list_definition_repeat1] = STATE(456), [aux_sym__list_decimal_period_repeat1] = STATE(457), [aux_sym__list_decimal_paren_repeat1] = STATE(458), @@ -9316,9 +9332,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_upper_roman_period_repeat1] = STATE(469), [aux_sym__list_upper_roman_paren_repeat1] = STATE(470), [aux_sym__list_upper_roman_parens_repeat1] = STATE(471), - [aux_sym_table_repeat1] = STATE(234), - [aux_sym__block_quote_prefix_repeat1] = STATE(230), - [aux_sym__inline_repeat1] = STATE(273), + [aux_sym_table_repeat1] = STATE(232), + [aux_sym__block_quote_prefix_repeat1] = STATE(231), + [aux_sym__inline_repeat1] = STATE(271), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_DOT] = ACTIONS(9), @@ -9364,53 +9380,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block_element] = STATE(1100), [sym_heading] = STATE(1100), [sym_list] = STATE(1100), - [sym__list_dash] = STATE(1007), - [sym__list_item_dash] = STATE(595), - [sym__list_plus] = STATE(1007), - [sym__list_item_plus] = STATE(657), - [sym__list_star] = STATE(1007), - [sym__list_item_star] = STATE(570), - [sym__list_task] = STATE(1007), - [sym__list_item_task] = STATE(586), - [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(1007), - [sym__list_item_definition] = STATE(694), - [sym__list_decimal_period] = STATE(1007), - [sym__list_item_decimal_period] = STATE(714), - [sym__list_decimal_paren] = STATE(1007), - [sym__list_item_decimal_paren] = STATE(719), - [sym__list_decimal_parens] = STATE(1007), - [sym__list_item_decimal_parens] = STATE(746), - [sym__list_lower_alpha_period] = STATE(1007), - [sym__list_item_lower_alpha_period] = STATE(748), - [sym__list_lower_alpha_paren] = STATE(1007), - [sym__list_item_lower_alpha_paren] = STATE(749), - [sym__list_lower_alpha_parens] = STATE(1007), - [sym__list_item_lower_alpha_parens] = STATE(753), - [sym__list_upper_alpha_period] = STATE(1007), - [sym__list_item_upper_alpha_period] = STATE(761), - [sym__list_upper_alpha_paren] = STATE(1007), - [sym__list_item_upper_alpha_paren] = STATE(764), - [sym__list_upper_alpha_parens] = STATE(1007), - [sym__list_item_upper_alpha_parens] = STATE(765), - [sym__list_lower_roman_period] = STATE(1007), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(1007), - [sym__list_item_lower_roman_paren] = STATE(769), - [sym__list_lower_roman_parens] = STATE(1007), - [sym__list_item_lower_roman_parens] = STATE(786), - [sym__list_upper_roman_period] = STATE(1007), - [sym__list_item_upper_roman_period] = STATE(791), - [sym__list_upper_roman_paren] = STATE(1007), - [sym__list_item_upper_roman_paren] = STATE(793), - [sym__list_upper_roman_parens] = STATE(1007), - [sym__list_item_upper_roman_parens] = STATE(799), - [sym_list_item_content] = STATE(718), + [sym__list_dash] = STATE(1004), + [sym__list_item_dash] = STATE(599), + [sym__list_plus] = STATE(1004), + [sym__list_item_plus] = STATE(606), + [sym__list_star] = STATE(1004), + [sym__list_item_star] = STATE(664), + [sym__list_task] = STATE(1004), + [sym__list_item_task] = STATE(673), + [sym_list_marker_task] = STATE(44), + [sym__list_definition] = STATE(1004), + [sym__list_item_definition] = STATE(792), + [sym__list_decimal_period] = STATE(1004), + [sym__list_item_decimal_period] = STATE(691), + [sym__list_decimal_paren] = STATE(1004), + [sym__list_item_decimal_paren] = STATE(692), + [sym__list_decimal_parens] = STATE(1004), + [sym__list_item_decimal_parens] = STATE(710), + [sym__list_lower_alpha_period] = STATE(1004), + [sym__list_item_lower_alpha_period] = STATE(714), + [sym__list_lower_alpha_paren] = STATE(1004), + [sym__list_item_lower_alpha_paren] = STATE(717), + [sym__list_lower_alpha_parens] = STATE(1004), + [sym__list_item_lower_alpha_parens] = STATE(721), + [sym__list_upper_alpha_period] = STATE(1004), + [sym__list_item_upper_alpha_period] = STATE(726), + [sym__list_upper_alpha_paren] = STATE(1004), + [sym__list_item_upper_alpha_paren] = STATE(747), + [sym__list_upper_alpha_parens] = STATE(1004), + [sym__list_item_upper_alpha_parens] = STATE(751), + [sym__list_lower_roman_period] = STATE(1004), + [sym__list_item_lower_roman_period] = STATE(753), + [sym__list_lower_roman_paren] = STATE(1004), + [sym__list_item_lower_roman_paren] = STATE(755), + [sym__list_lower_roman_parens] = STATE(1004), + [sym__list_item_lower_roman_parens] = STATE(760), + [sym__list_upper_roman_period] = STATE(1004), + [sym__list_item_upper_roman_period] = STATE(761), + [sym__list_upper_roman_paren] = STATE(1004), + [sym__list_item_upper_roman_paren] = STATE(766), + [sym__list_upper_roman_parens] = STATE(1004), + [sym__list_item_upper_roman_parens] = STATE(784), + [sym_list_item_content] = STATE(752), [sym_table] = STATE(1100), - [sym__table_row] = STATE(234), - [sym_table_header] = STATE(234), - [sym_table_separator] = STATE(234), - [sym_table_row] = STATE(234), + [sym__table_row] = STATE(232), + [sym_table_header] = STATE(232), + [sym_table_separator] = STATE(232), + [sym_table_row] = STATE(232), [sym_footnote] = STATE(1100), [sym_footnote_marker_begin] = STATE(1135), [sym_div] = STATE(1100), @@ -9419,18 +9435,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_block] = STATE(1100), [sym_thematic_break] = STATE(1100), [sym_block_quote] = STATE(1100), - [sym__block_quote_prefix] = STATE(225), + [sym__block_quote_prefix] = STATE(222), [sym_link_reference_definition] = STATE(1100), [sym_block_attribute] = STATE(1100), [sym__paragraph] = STATE(1100), - [sym__paragraph_content] = STATE(690), - [sym__paragraph_inline_content] = STATE(824), - [sym__inline] = STATE(654), - [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(316), - [aux_sym__list_plus_repeat1] = STATE(336), - [aux_sym__list_star_repeat1] = STATE(318), - [aux_sym__list_task_repeat1] = STATE(288), + [sym__paragraph_content] = STATE(689), + [sym__paragraph_inline_content] = STATE(814), + [sym__inline] = STATE(657), + [sym__symbol_fallback] = STATE(271), + [aux_sym__list_dash_repeat1] = STATE(341), + [aux_sym__list_plus_repeat1] = STATE(342), + [aux_sym__list_star_repeat1] = STATE(343), + [aux_sym__list_task_repeat1] = STATE(314), [aux_sym__list_definition_repeat1] = STATE(456), [aux_sym__list_decimal_period_repeat1] = STATE(457), [aux_sym__list_decimal_paren_repeat1] = STATE(458), @@ -9447,9 +9463,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_upper_roman_period_repeat1] = STATE(469), [aux_sym__list_upper_roman_paren_repeat1] = STATE(470), [aux_sym__list_upper_roman_parens_repeat1] = STATE(471), - [aux_sym_table_repeat1] = STATE(234), - [aux_sym__block_quote_prefix_repeat1] = STATE(230), - [aux_sym__inline_repeat1] = STATE(273), + [aux_sym_table_repeat1] = STATE(232), + [aux_sym__block_quote_prefix_repeat1] = STATE(231), + [aux_sym__inline_repeat1] = STATE(271), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_DOT] = ACTIONS(9), @@ -9491,77 +9507,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block_attribute_begin] = ACTIONS(384), }, [38] = { - [sym__block_with_heading] = STATE(1032), - [sym__block_element] = STATE(1032), - [sym_heading] = STATE(1032), - [sym_list] = STATE(1032), - [sym__list_dash] = STATE(1007), - [sym__list_item_dash] = STATE(595), - [sym__list_plus] = STATE(1007), - [sym__list_item_plus] = STATE(657), - [sym__list_star] = STATE(1007), - [sym__list_item_star] = STATE(570), - [sym__list_task] = STATE(1007), - [sym__list_item_task] = STATE(586), - [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(1007), - [sym__list_item_definition] = STATE(694), - [sym__list_decimal_period] = STATE(1007), - [sym__list_item_decimal_period] = STATE(714), - [sym__list_decimal_paren] = STATE(1007), - [sym__list_item_decimal_paren] = STATE(719), - [sym__list_decimal_parens] = STATE(1007), - [sym__list_item_decimal_parens] = STATE(746), - [sym__list_lower_alpha_period] = STATE(1007), - [sym__list_item_lower_alpha_period] = STATE(748), - [sym__list_lower_alpha_paren] = STATE(1007), - [sym__list_item_lower_alpha_paren] = STATE(749), - [sym__list_lower_alpha_parens] = STATE(1007), - [sym__list_item_lower_alpha_parens] = STATE(753), - [sym__list_upper_alpha_period] = STATE(1007), - [sym__list_item_upper_alpha_period] = STATE(761), - [sym__list_upper_alpha_paren] = STATE(1007), - [sym__list_item_upper_alpha_paren] = STATE(764), - [sym__list_upper_alpha_parens] = STATE(1007), - [sym__list_item_upper_alpha_parens] = STATE(765), - [sym__list_lower_roman_period] = STATE(1007), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(1007), - [sym__list_item_lower_roman_paren] = STATE(769), - [sym__list_lower_roman_parens] = STATE(1007), - [sym__list_item_lower_roman_parens] = STATE(786), - [sym__list_upper_roman_period] = STATE(1007), - [sym__list_item_upper_roman_period] = STATE(791), - [sym__list_upper_roman_paren] = STATE(1007), - [sym__list_item_upper_roman_paren] = STATE(793), - [sym__list_upper_roman_parens] = STATE(1007), - [sym__list_item_upper_roman_parens] = STATE(799), - [sym_table] = STATE(1032), - [sym__table_row] = STATE(234), - [sym_table_header] = STATE(234), - [sym_table_separator] = STATE(234), - [sym_table_row] = STATE(234), - [sym_footnote] = STATE(1032), + [sym__block_with_heading] = STATE(1101), + [sym__block_element] = STATE(1101), + [sym_heading] = STATE(1101), + [sym_list] = STATE(1101), + [sym__list_dash] = STATE(1004), + [sym__list_item_dash] = STATE(599), + [sym__list_plus] = STATE(1004), + [sym__list_item_plus] = STATE(606), + [sym__list_star] = STATE(1004), + [sym__list_item_star] = STATE(664), + [sym__list_task] = STATE(1004), + [sym__list_item_task] = STATE(673), + [sym_list_marker_task] = STATE(44), + [sym__list_definition] = STATE(1004), + [sym__list_item_definition] = STATE(792), + [sym__list_decimal_period] = STATE(1004), + [sym__list_item_decimal_period] = STATE(691), + [sym__list_decimal_paren] = STATE(1004), + [sym__list_item_decimal_paren] = STATE(692), + [sym__list_decimal_parens] = STATE(1004), + [sym__list_item_decimal_parens] = STATE(710), + [sym__list_lower_alpha_period] = STATE(1004), + [sym__list_item_lower_alpha_period] = STATE(714), + [sym__list_lower_alpha_paren] = STATE(1004), + [sym__list_item_lower_alpha_paren] = STATE(717), + [sym__list_lower_alpha_parens] = STATE(1004), + [sym__list_item_lower_alpha_parens] = STATE(721), + [sym__list_upper_alpha_period] = STATE(1004), + [sym__list_item_upper_alpha_period] = STATE(726), + [sym__list_upper_alpha_paren] = STATE(1004), + [sym__list_item_upper_alpha_paren] = STATE(747), + [sym__list_upper_alpha_parens] = STATE(1004), + [sym__list_item_upper_alpha_parens] = STATE(751), + [sym__list_lower_roman_period] = STATE(1004), + [sym__list_item_lower_roman_period] = STATE(753), + [sym__list_lower_roman_paren] = STATE(1004), + [sym__list_item_lower_roman_paren] = STATE(755), + [sym__list_lower_roman_parens] = STATE(1004), + [sym__list_item_lower_roman_parens] = STATE(760), + [sym__list_upper_roman_period] = STATE(1004), + [sym__list_item_upper_roman_period] = STATE(761), + [sym__list_upper_roman_paren] = STATE(1004), + [sym__list_item_upper_roman_paren] = STATE(766), + [sym__list_upper_roman_parens] = STATE(1004), + [sym__list_item_upper_roman_parens] = STATE(784), + [sym_list_item_content] = STATE(754), + [sym_table] = STATE(1101), + [sym__table_row] = STATE(232), + [sym_table_header] = STATE(232), + [sym_table_separator] = STATE(232), + [sym_table_row] = STATE(232), + [sym_footnote] = STATE(1101), [sym_footnote_marker_begin] = STATE(1135), - [sym_footnote_content] = STATE(1074), - [sym_div] = STATE(1032), + [sym_div] = STATE(1101), [sym__div_marker_begin] = STATE(1017), - [sym_code_block] = STATE(1032), - [sym_raw_block] = STATE(1032), - [sym_thematic_break] = STATE(1032), - [sym_block_quote] = STATE(1032), - [sym__block_quote_prefix] = STATE(225), - [sym_link_reference_definition] = STATE(1032), - [sym_block_attribute] = STATE(1032), - [sym__paragraph] = STATE(1032), - [sym__paragraph_content] = STATE(690), - [sym__paragraph_inline_content] = STATE(824), - [sym__inline] = STATE(654), - [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(316), - [aux_sym__list_plus_repeat1] = STATE(336), - [aux_sym__list_star_repeat1] = STATE(318), - [aux_sym__list_task_repeat1] = STATE(288), + [sym_code_block] = STATE(1101), + [sym_raw_block] = STATE(1101), + [sym_thematic_break] = STATE(1101), + [sym_block_quote] = STATE(1101), + [sym__block_quote_prefix] = STATE(222), + [sym_link_reference_definition] = STATE(1101), + [sym_block_attribute] = STATE(1101), + [sym__paragraph] = STATE(1101), + [sym__paragraph_content] = STATE(689), + [sym__paragraph_inline_content] = STATE(814), + [sym__inline] = STATE(657), + [sym__symbol_fallback] = STATE(271), + [aux_sym__list_dash_repeat1] = STATE(341), + [aux_sym__list_plus_repeat1] = STATE(342), + [aux_sym__list_star_repeat1] = STATE(343), + [aux_sym__list_task_repeat1] = STATE(314), [aux_sym__list_definition_repeat1] = STATE(456), [aux_sym__list_decimal_period_repeat1] = STATE(457), [aux_sym__list_decimal_paren_repeat1] = STATE(458), @@ -9578,9 +9594,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_upper_roman_period_repeat1] = STATE(469), [aux_sym__list_upper_roman_paren_repeat1] = STATE(470), [aux_sym__list_upper_roman_parens_repeat1] = STATE(471), - [aux_sym_table_repeat1] = STATE(234), - [aux_sym__block_quote_prefix_repeat1] = STATE(230), - [aux_sym__inline_repeat1] = STATE(273), + [aux_sym_table_repeat1] = STATE(232), + [aux_sym__block_quote_prefix_repeat1] = STATE(231), + [aux_sym__inline_repeat1] = STATE(271), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_DOT] = ACTIONS(9), @@ -9622,77 +9638,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block_attribute_begin] = ACTIONS(384), }, [39] = { - [sym__block_with_heading] = STATE(1101), - [sym__block_element] = STATE(1101), - [sym_heading] = STATE(1101), - [sym_list] = STATE(1101), - [sym__list_dash] = STATE(1007), - [sym__list_item_dash] = STATE(595), - [sym__list_plus] = STATE(1007), - [sym__list_item_plus] = STATE(657), - [sym__list_star] = STATE(1007), - [sym__list_item_star] = STATE(570), - [sym__list_task] = STATE(1007), - [sym__list_item_task] = STATE(586), - [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(1007), - [sym__list_item_definition] = STATE(694), - [sym__list_decimal_period] = STATE(1007), - [sym__list_item_decimal_period] = STATE(714), - [sym__list_decimal_paren] = STATE(1007), - [sym__list_item_decimal_paren] = STATE(719), - [sym__list_decimal_parens] = STATE(1007), - [sym__list_item_decimal_parens] = STATE(746), - [sym__list_lower_alpha_period] = STATE(1007), - [sym__list_item_lower_alpha_period] = STATE(748), - [sym__list_lower_alpha_paren] = STATE(1007), - [sym__list_item_lower_alpha_paren] = STATE(749), - [sym__list_lower_alpha_parens] = STATE(1007), - [sym__list_item_lower_alpha_parens] = STATE(753), - [sym__list_upper_alpha_period] = STATE(1007), - [sym__list_item_upper_alpha_period] = STATE(761), - [sym__list_upper_alpha_paren] = STATE(1007), - [sym__list_item_upper_alpha_paren] = STATE(764), - [sym__list_upper_alpha_parens] = STATE(1007), - [sym__list_item_upper_alpha_parens] = STATE(765), - [sym__list_lower_roman_period] = STATE(1007), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(1007), - [sym__list_item_lower_roman_paren] = STATE(769), - [sym__list_lower_roman_parens] = STATE(1007), - [sym__list_item_lower_roman_parens] = STATE(786), - [sym__list_upper_roman_period] = STATE(1007), - [sym__list_item_upper_roman_period] = STATE(791), - [sym__list_upper_roman_paren] = STATE(1007), - [sym__list_item_upper_roman_paren] = STATE(793), - [sym__list_upper_roman_parens] = STATE(1007), - [sym__list_item_upper_roman_parens] = STATE(799), - [sym_list_item_content] = STATE(757), - [sym_table] = STATE(1101), - [sym__table_row] = STATE(234), - [sym_table_header] = STATE(234), - [sym_table_separator] = STATE(234), - [sym_table_row] = STATE(234), - [sym_footnote] = STATE(1101), + [sym__block_with_heading] = STATE(1032), + [sym__block_element] = STATE(1032), + [sym_heading] = STATE(1032), + [sym_list] = STATE(1032), + [sym__list_dash] = STATE(1004), + [sym__list_item_dash] = STATE(599), + [sym__list_plus] = STATE(1004), + [sym__list_item_plus] = STATE(606), + [sym__list_star] = STATE(1004), + [sym__list_item_star] = STATE(664), + [sym__list_task] = STATE(1004), + [sym__list_item_task] = STATE(673), + [sym_list_marker_task] = STATE(44), + [sym__list_definition] = STATE(1004), + [sym__list_item_definition] = STATE(792), + [sym__list_decimal_period] = STATE(1004), + [sym__list_item_decimal_period] = STATE(691), + [sym__list_decimal_paren] = STATE(1004), + [sym__list_item_decimal_paren] = STATE(692), + [sym__list_decimal_parens] = STATE(1004), + [sym__list_item_decimal_parens] = STATE(710), + [sym__list_lower_alpha_period] = STATE(1004), + [sym__list_item_lower_alpha_period] = STATE(714), + [sym__list_lower_alpha_paren] = STATE(1004), + [sym__list_item_lower_alpha_paren] = STATE(717), + [sym__list_lower_alpha_parens] = STATE(1004), + [sym__list_item_lower_alpha_parens] = STATE(721), + [sym__list_upper_alpha_period] = STATE(1004), + [sym__list_item_upper_alpha_period] = STATE(726), + [sym__list_upper_alpha_paren] = STATE(1004), + [sym__list_item_upper_alpha_paren] = STATE(747), + [sym__list_upper_alpha_parens] = STATE(1004), + [sym__list_item_upper_alpha_parens] = STATE(751), + [sym__list_lower_roman_period] = STATE(1004), + [sym__list_item_lower_roman_period] = STATE(753), + [sym__list_lower_roman_paren] = STATE(1004), + [sym__list_item_lower_roman_paren] = STATE(755), + [sym__list_lower_roman_parens] = STATE(1004), + [sym__list_item_lower_roman_parens] = STATE(760), + [sym__list_upper_roman_period] = STATE(1004), + [sym__list_item_upper_roman_period] = STATE(761), + [sym__list_upper_roman_paren] = STATE(1004), + [sym__list_item_upper_roman_paren] = STATE(766), + [sym__list_upper_roman_parens] = STATE(1004), + [sym__list_item_upper_roman_parens] = STATE(784), + [sym_table] = STATE(1032), + [sym__table_row] = STATE(232), + [sym_table_header] = STATE(232), + [sym_table_separator] = STATE(232), + [sym_table_row] = STATE(232), + [sym_footnote] = STATE(1032), [sym_footnote_marker_begin] = STATE(1135), - [sym_div] = STATE(1101), + [sym_footnote_content] = STATE(966), + [sym_div] = STATE(1032), [sym__div_marker_begin] = STATE(1017), - [sym_code_block] = STATE(1101), - [sym_raw_block] = STATE(1101), - [sym_thematic_break] = STATE(1101), - [sym_block_quote] = STATE(1101), - [sym__block_quote_prefix] = STATE(225), - [sym_link_reference_definition] = STATE(1101), - [sym_block_attribute] = STATE(1101), - [sym__paragraph] = STATE(1101), - [sym__paragraph_content] = STATE(690), - [sym__paragraph_inline_content] = STATE(824), - [sym__inline] = STATE(654), - [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(316), - [aux_sym__list_plus_repeat1] = STATE(336), - [aux_sym__list_star_repeat1] = STATE(318), - [aux_sym__list_task_repeat1] = STATE(288), + [sym_code_block] = STATE(1032), + [sym_raw_block] = STATE(1032), + [sym_thematic_break] = STATE(1032), + [sym_block_quote] = STATE(1032), + [sym__block_quote_prefix] = STATE(222), + [sym_link_reference_definition] = STATE(1032), + [sym_block_attribute] = STATE(1032), + [sym__paragraph] = STATE(1032), + [sym__paragraph_content] = STATE(689), + [sym__paragraph_inline_content] = STATE(814), + [sym__inline] = STATE(657), + [sym__symbol_fallback] = STATE(271), + [aux_sym__list_dash_repeat1] = STATE(341), + [aux_sym__list_plus_repeat1] = STATE(342), + [aux_sym__list_star_repeat1] = STATE(343), + [aux_sym__list_task_repeat1] = STATE(314), [aux_sym__list_definition_repeat1] = STATE(456), [aux_sym__list_decimal_period_repeat1] = STATE(457), [aux_sym__list_decimal_paren_repeat1] = STATE(458), @@ -9709,9 +9725,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_upper_roman_period_repeat1] = STATE(469), [aux_sym__list_upper_roman_paren_repeat1] = STATE(470), [aux_sym__list_upper_roman_parens_repeat1] = STATE(471), - [aux_sym_table_repeat1] = STATE(234), - [aux_sym__block_quote_prefix_repeat1] = STATE(230), - [aux_sym__inline_repeat1] = STATE(273), + [aux_sym_table_repeat1] = STATE(232), + [aux_sym__block_quote_prefix_repeat1] = STATE(231), + [aux_sym__inline_repeat1] = STATE(271), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_DOT] = ACTIONS(9), @@ -9757,53 +9773,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block_element] = STATE(1151), [sym_heading] = STATE(1151), [sym_list] = STATE(1151), - [sym__list_dash] = STATE(1007), - [sym__list_item_dash] = STATE(595), - [sym__list_plus] = STATE(1007), - [sym__list_item_plus] = STATE(657), - [sym__list_star] = STATE(1007), - [sym__list_item_star] = STATE(570), - [sym__list_task] = STATE(1007), - [sym__list_item_task] = STATE(586), - [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(1007), - [sym__list_item_definition] = STATE(694), - [sym__list_decimal_period] = STATE(1007), - [sym__list_item_decimal_period] = STATE(714), - [sym__list_decimal_paren] = STATE(1007), - [sym__list_item_decimal_paren] = STATE(719), - [sym__list_decimal_parens] = STATE(1007), - [sym__list_item_decimal_parens] = STATE(746), - [sym__list_lower_alpha_period] = STATE(1007), - [sym__list_item_lower_alpha_period] = STATE(748), - [sym__list_lower_alpha_paren] = STATE(1007), - [sym__list_item_lower_alpha_paren] = STATE(749), - [sym__list_lower_alpha_parens] = STATE(1007), - [sym__list_item_lower_alpha_parens] = STATE(753), - [sym__list_upper_alpha_period] = STATE(1007), - [sym__list_item_upper_alpha_period] = STATE(761), - [sym__list_upper_alpha_paren] = STATE(1007), - [sym__list_item_upper_alpha_paren] = STATE(764), - [sym__list_upper_alpha_parens] = STATE(1007), - [sym__list_item_upper_alpha_parens] = STATE(765), - [sym__list_lower_roman_period] = STATE(1007), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(1007), - [sym__list_item_lower_roman_paren] = STATE(769), - [sym__list_lower_roman_parens] = STATE(1007), - [sym__list_item_lower_roman_parens] = STATE(786), - [sym__list_upper_roman_period] = STATE(1007), - [sym__list_item_upper_roman_period] = STATE(791), - [sym__list_upper_roman_paren] = STATE(1007), - [sym__list_item_upper_roman_paren] = STATE(793), - [sym__list_upper_roman_parens] = STATE(1007), - [sym__list_item_upper_roman_parens] = STATE(799), - [sym_list_item_content] = STATE(575), + [sym__list_dash] = STATE(1004), + [sym__list_item_dash] = STATE(599), + [sym__list_plus] = STATE(1004), + [sym__list_item_plus] = STATE(606), + [sym__list_star] = STATE(1004), + [sym__list_item_star] = STATE(664), + [sym__list_task] = STATE(1004), + [sym__list_item_task] = STATE(673), + [sym_list_marker_task] = STATE(44), + [sym__list_definition] = STATE(1004), + [sym__list_item_definition] = STATE(792), + [sym__list_decimal_period] = STATE(1004), + [sym__list_item_decimal_period] = STATE(691), + [sym__list_decimal_paren] = STATE(1004), + [sym__list_item_decimal_paren] = STATE(692), + [sym__list_decimal_parens] = STATE(1004), + [sym__list_item_decimal_parens] = STATE(710), + [sym__list_lower_alpha_period] = STATE(1004), + [sym__list_item_lower_alpha_period] = STATE(714), + [sym__list_lower_alpha_paren] = STATE(1004), + [sym__list_item_lower_alpha_paren] = STATE(717), + [sym__list_lower_alpha_parens] = STATE(1004), + [sym__list_item_lower_alpha_parens] = STATE(721), + [sym__list_upper_alpha_period] = STATE(1004), + [sym__list_item_upper_alpha_period] = STATE(726), + [sym__list_upper_alpha_paren] = STATE(1004), + [sym__list_item_upper_alpha_paren] = STATE(747), + [sym__list_upper_alpha_parens] = STATE(1004), + [sym__list_item_upper_alpha_parens] = STATE(751), + [sym__list_lower_roman_period] = STATE(1004), + [sym__list_item_lower_roman_period] = STATE(753), + [sym__list_lower_roman_paren] = STATE(1004), + [sym__list_item_lower_roman_paren] = STATE(755), + [sym__list_lower_roman_parens] = STATE(1004), + [sym__list_item_lower_roman_parens] = STATE(760), + [sym__list_upper_roman_period] = STATE(1004), + [sym__list_item_upper_roman_period] = STATE(761), + [sym__list_upper_roman_paren] = STATE(1004), + [sym__list_item_upper_roman_paren] = STATE(766), + [sym__list_upper_roman_parens] = STATE(1004), + [sym__list_item_upper_roman_parens] = STATE(784), + [sym_list_item_content] = STATE(667), [sym_table] = STATE(1151), - [sym__table_row] = STATE(234), - [sym_table_header] = STATE(234), - [sym_table_separator] = STATE(234), - [sym_table_row] = STATE(234), + [sym__table_row] = STATE(232), + [sym_table_header] = STATE(232), + [sym_table_separator] = STATE(232), + [sym_table_row] = STATE(232), [sym_footnote] = STATE(1151), [sym_footnote_marker_begin] = STATE(1135), [sym_div] = STATE(1151), @@ -9812,18 +9828,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_block] = STATE(1151), [sym_thematic_break] = STATE(1151), [sym_block_quote] = STATE(1151), - [sym__block_quote_prefix] = STATE(225), + [sym__block_quote_prefix] = STATE(222), [sym_link_reference_definition] = STATE(1151), [sym_block_attribute] = STATE(1151), [sym__paragraph] = STATE(1151), - [sym__paragraph_content] = STATE(690), - [sym__paragraph_inline_content] = STATE(824), - [sym__inline] = STATE(654), - [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(316), - [aux_sym__list_plus_repeat1] = STATE(336), - [aux_sym__list_star_repeat1] = STATE(318), - [aux_sym__list_task_repeat1] = STATE(288), + [sym__paragraph_content] = STATE(689), + [sym__paragraph_inline_content] = STATE(814), + [sym__inline] = STATE(657), + [sym__symbol_fallback] = STATE(271), + [aux_sym__list_dash_repeat1] = STATE(341), + [aux_sym__list_plus_repeat1] = STATE(342), + [aux_sym__list_star_repeat1] = STATE(343), + [aux_sym__list_task_repeat1] = STATE(314), [aux_sym__list_definition_repeat1] = STATE(456), [aux_sym__list_decimal_period_repeat1] = STATE(457), [aux_sym__list_decimal_paren_repeat1] = STATE(458), @@ -9840,9 +9856,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_upper_roman_period_repeat1] = STATE(469), [aux_sym__list_upper_roman_paren_repeat1] = STATE(470), [aux_sym__list_upper_roman_parens_repeat1] = STATE(471), - [aux_sym_table_repeat1] = STATE(234), - [aux_sym__block_quote_prefix_repeat1] = STATE(230), - [aux_sym__inline_repeat1] = STATE(273), + [aux_sym_table_repeat1] = STATE(232), + [aux_sym__block_quote_prefix_repeat1] = STATE(231), + [aux_sym__inline_repeat1] = STATE(271), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_DOT] = ACTIONS(9), @@ -9850,7 +9866,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_token1] = ACTIONS(9), [anon_sym_LBRACE] = ACTIONS(9), [anon_sym_PERCENT] = ACTIONS(9), - [sym__newline] = ACTIONS(366), + [sym__newline] = ACTIONS(394), [sym__heading_begin] = ACTIONS(368), [sym__div_begin] = ACTIONS(17), [sym__code_block_begin] = ACTIONS(370), @@ -9884,77 +9900,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block_attribute_begin] = ACTIONS(384), }, [41] = { - [sym__block_with_heading] = STATE(1051), - [sym__block_element] = STATE(1051), - [sym_heading] = STATE(1051), - [sym_list] = STATE(1051), - [sym__list_dash] = STATE(1007), - [sym__list_item_dash] = STATE(595), - [sym__list_plus] = STATE(1007), - [sym__list_item_plus] = STATE(657), - [sym__list_star] = STATE(1007), - [sym__list_item_star] = STATE(570), - [sym__list_task] = STATE(1007), - [sym__list_item_task] = STATE(586), - [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(1007), - [sym__list_item_definition] = STATE(694), - [sym__list_decimal_period] = STATE(1007), - [sym__list_item_decimal_period] = STATE(714), - [sym__list_decimal_paren] = STATE(1007), - [sym__list_item_decimal_paren] = STATE(719), - [sym__list_decimal_parens] = STATE(1007), - [sym__list_item_decimal_parens] = STATE(746), - [sym__list_lower_alpha_period] = STATE(1007), - [sym__list_item_lower_alpha_period] = STATE(748), - [sym__list_lower_alpha_paren] = STATE(1007), - [sym__list_item_lower_alpha_paren] = STATE(749), - [sym__list_lower_alpha_parens] = STATE(1007), - [sym__list_item_lower_alpha_parens] = STATE(753), - [sym__list_upper_alpha_period] = STATE(1007), - [sym__list_item_upper_alpha_period] = STATE(761), - [sym__list_upper_alpha_paren] = STATE(1007), - [sym__list_item_upper_alpha_paren] = STATE(764), - [sym__list_upper_alpha_parens] = STATE(1007), - [sym__list_item_upper_alpha_parens] = STATE(765), - [sym__list_lower_roman_period] = STATE(1007), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(1007), - [sym__list_item_lower_roman_paren] = STATE(769), - [sym__list_lower_roman_parens] = STATE(1007), - [sym__list_item_lower_roman_parens] = STATE(786), - [sym__list_upper_roman_period] = STATE(1007), - [sym__list_item_upper_roman_period] = STATE(791), - [sym__list_upper_roman_paren] = STATE(1007), - [sym__list_item_upper_roman_paren] = STATE(793), - [sym__list_upper_roman_parens] = STATE(1007), - [sym__list_item_upper_roman_parens] = STATE(799), - [sym_table] = STATE(1051), - [sym__table_row] = STATE(234), - [sym_table_header] = STATE(234), - [sym_table_separator] = STATE(234), - [sym_table_row] = STATE(234), - [sym_footnote] = STATE(1051), + [sym__block_with_heading] = STATE(1057), + [sym__block_element] = STATE(1057), + [sym_heading] = STATE(1057), + [sym_list] = STATE(1057), + [sym__list_dash] = STATE(1004), + [sym__list_item_dash] = STATE(599), + [sym__list_plus] = STATE(1004), + [sym__list_item_plus] = STATE(606), + [sym__list_star] = STATE(1004), + [sym__list_item_star] = STATE(664), + [sym__list_task] = STATE(1004), + [sym__list_item_task] = STATE(673), + [sym_list_marker_task] = STATE(44), + [sym__list_definition] = STATE(1004), + [sym__list_item_definition] = STATE(792), + [sym__list_decimal_period] = STATE(1004), + [sym__list_item_decimal_period] = STATE(691), + [sym__list_decimal_paren] = STATE(1004), + [sym__list_item_decimal_paren] = STATE(692), + [sym__list_decimal_parens] = STATE(1004), + [sym__list_item_decimal_parens] = STATE(710), + [sym__list_lower_alpha_period] = STATE(1004), + [sym__list_item_lower_alpha_period] = STATE(714), + [sym__list_lower_alpha_paren] = STATE(1004), + [sym__list_item_lower_alpha_paren] = STATE(717), + [sym__list_lower_alpha_parens] = STATE(1004), + [sym__list_item_lower_alpha_parens] = STATE(721), + [sym__list_upper_alpha_period] = STATE(1004), + [sym__list_item_upper_alpha_period] = STATE(726), + [sym__list_upper_alpha_paren] = STATE(1004), + [sym__list_item_upper_alpha_paren] = STATE(747), + [sym__list_upper_alpha_parens] = STATE(1004), + [sym__list_item_upper_alpha_parens] = STATE(751), + [sym__list_lower_roman_period] = STATE(1004), + [sym__list_item_lower_roman_period] = STATE(753), + [sym__list_lower_roman_paren] = STATE(1004), + [sym__list_item_lower_roman_paren] = STATE(755), + [sym__list_lower_roman_parens] = STATE(1004), + [sym__list_item_lower_roman_parens] = STATE(760), + [sym__list_upper_roman_period] = STATE(1004), + [sym__list_item_upper_roman_period] = STATE(761), + [sym__list_upper_roman_paren] = STATE(1004), + [sym__list_item_upper_roman_paren] = STATE(766), + [sym__list_upper_roman_parens] = STATE(1004), + [sym__list_item_upper_roman_parens] = STATE(784), + [sym_list_item_content] = STATE(857), + [sym_table] = STATE(1057), + [sym__table_row] = STATE(232), + [sym_table_header] = STATE(232), + [sym_table_separator] = STATE(232), + [sym_table_row] = STATE(232), + [sym_footnote] = STATE(1057), [sym_footnote_marker_begin] = STATE(1135), - [sym_footnote_content] = STATE(747), - [sym_div] = STATE(1051), + [sym_div] = STATE(1057), [sym__div_marker_begin] = STATE(1017), - [sym_code_block] = STATE(1051), - [sym_raw_block] = STATE(1051), - [sym_thematic_break] = STATE(1051), - [sym_block_quote] = STATE(1051), - [sym__block_quote_prefix] = STATE(225), - [sym_link_reference_definition] = STATE(1051), - [sym_block_attribute] = STATE(1051), - [sym__paragraph] = STATE(1051), - [sym__paragraph_content] = STATE(690), - [sym__paragraph_inline_content] = STATE(824), - [sym__inline] = STATE(654), - [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(316), - [aux_sym__list_plus_repeat1] = STATE(336), - [aux_sym__list_star_repeat1] = STATE(318), - [aux_sym__list_task_repeat1] = STATE(288), + [sym_code_block] = STATE(1057), + [sym_raw_block] = STATE(1057), + [sym_thematic_break] = STATE(1057), + [sym_block_quote] = STATE(1057), + [sym__block_quote_prefix] = STATE(222), + [sym_link_reference_definition] = STATE(1057), + [sym_block_attribute] = STATE(1057), + [sym__paragraph] = STATE(1057), + [sym__paragraph_content] = STATE(689), + [sym__paragraph_inline_content] = STATE(814), + [sym__inline] = STATE(657), + [sym__symbol_fallback] = STATE(271), + [aux_sym__list_dash_repeat1] = STATE(341), + [aux_sym__list_plus_repeat1] = STATE(342), + [aux_sym__list_star_repeat1] = STATE(343), + [aux_sym__list_task_repeat1] = STATE(314), [aux_sym__list_definition_repeat1] = STATE(456), [aux_sym__list_decimal_period_repeat1] = STATE(457), [aux_sym__list_decimal_paren_repeat1] = STATE(458), @@ -9971,9 +9987,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_upper_roman_period_repeat1] = STATE(469), [aux_sym__list_upper_roman_paren_repeat1] = STATE(470), [aux_sym__list_upper_roman_parens_repeat1] = STATE(471), - [aux_sym_table_repeat1] = STATE(234), - [aux_sym__block_quote_prefix_repeat1] = STATE(230), - [aux_sym__inline_repeat1] = STATE(273), + [aux_sym_table_repeat1] = STATE(232), + [aux_sym__block_quote_prefix_repeat1] = STATE(231), + [aux_sym__inline_repeat1] = STATE(271), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_DOT] = ACTIONS(9), @@ -10015,77 +10031,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block_attribute_begin] = ACTIONS(384), }, [42] = { - [sym__block_with_heading] = STATE(1057), - [sym__block_element] = STATE(1057), - [sym_heading] = STATE(1057), - [sym_list] = STATE(1057), - [sym__list_dash] = STATE(1007), - [sym__list_item_dash] = STATE(595), - [sym__list_plus] = STATE(1007), - [sym__list_item_plus] = STATE(657), - [sym__list_star] = STATE(1007), - [sym__list_item_star] = STATE(570), - [sym__list_task] = STATE(1007), - [sym__list_item_task] = STATE(586), - [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(1007), - [sym__list_item_definition] = STATE(694), - [sym__list_decimal_period] = STATE(1007), - [sym__list_item_decimal_period] = STATE(714), - [sym__list_decimal_paren] = STATE(1007), - [sym__list_item_decimal_paren] = STATE(719), - [sym__list_decimal_parens] = STATE(1007), - [sym__list_item_decimal_parens] = STATE(746), - [sym__list_lower_alpha_period] = STATE(1007), - [sym__list_item_lower_alpha_period] = STATE(748), - [sym__list_lower_alpha_paren] = STATE(1007), - [sym__list_item_lower_alpha_paren] = STATE(749), - [sym__list_lower_alpha_parens] = STATE(1007), - [sym__list_item_lower_alpha_parens] = STATE(753), - [sym__list_upper_alpha_period] = STATE(1007), - [sym__list_item_upper_alpha_period] = STATE(761), - [sym__list_upper_alpha_paren] = STATE(1007), - [sym__list_item_upper_alpha_paren] = STATE(764), - [sym__list_upper_alpha_parens] = STATE(1007), - [sym__list_item_upper_alpha_parens] = STATE(765), - [sym__list_lower_roman_period] = STATE(1007), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(1007), - [sym__list_item_lower_roman_paren] = STATE(769), - [sym__list_lower_roman_parens] = STATE(1007), - [sym__list_item_lower_roman_parens] = STATE(786), - [sym__list_upper_roman_period] = STATE(1007), - [sym__list_item_upper_roman_period] = STATE(791), - [sym__list_upper_roman_paren] = STATE(1007), - [sym__list_item_upper_roman_paren] = STATE(793), - [sym__list_upper_roman_parens] = STATE(1007), - [sym__list_item_upper_roman_parens] = STATE(799), - [sym_list_item_content] = STATE(834), - [sym_table] = STATE(1057), - [sym__table_row] = STATE(234), - [sym_table_header] = STATE(234), - [sym_table_separator] = STATE(234), - [sym_table_row] = STATE(234), - [sym_footnote] = STATE(1057), + [sym__block_with_heading] = STATE(1051), + [sym__block_element] = STATE(1051), + [sym_heading] = STATE(1051), + [sym_list] = STATE(1051), + [sym__list_dash] = STATE(1004), + [sym__list_item_dash] = STATE(599), + [sym__list_plus] = STATE(1004), + [sym__list_item_plus] = STATE(606), + [sym__list_star] = STATE(1004), + [sym__list_item_star] = STATE(664), + [sym__list_task] = STATE(1004), + [sym__list_item_task] = STATE(673), + [sym_list_marker_task] = STATE(44), + [sym__list_definition] = STATE(1004), + [sym__list_item_definition] = STATE(792), + [sym__list_decimal_period] = STATE(1004), + [sym__list_item_decimal_period] = STATE(691), + [sym__list_decimal_paren] = STATE(1004), + [sym__list_item_decimal_paren] = STATE(692), + [sym__list_decimal_parens] = STATE(1004), + [sym__list_item_decimal_parens] = STATE(710), + [sym__list_lower_alpha_period] = STATE(1004), + [sym__list_item_lower_alpha_period] = STATE(714), + [sym__list_lower_alpha_paren] = STATE(1004), + [sym__list_item_lower_alpha_paren] = STATE(717), + [sym__list_lower_alpha_parens] = STATE(1004), + [sym__list_item_lower_alpha_parens] = STATE(721), + [sym__list_upper_alpha_period] = STATE(1004), + [sym__list_item_upper_alpha_period] = STATE(726), + [sym__list_upper_alpha_paren] = STATE(1004), + [sym__list_item_upper_alpha_paren] = STATE(747), + [sym__list_upper_alpha_parens] = STATE(1004), + [sym__list_item_upper_alpha_parens] = STATE(751), + [sym__list_lower_roman_period] = STATE(1004), + [sym__list_item_lower_roman_period] = STATE(753), + [sym__list_lower_roman_paren] = STATE(1004), + [sym__list_item_lower_roman_paren] = STATE(755), + [sym__list_lower_roman_parens] = STATE(1004), + [sym__list_item_lower_roman_parens] = STATE(760), + [sym__list_upper_roman_period] = STATE(1004), + [sym__list_item_upper_roman_period] = STATE(761), + [sym__list_upper_roman_paren] = STATE(1004), + [sym__list_item_upper_roman_paren] = STATE(766), + [sym__list_upper_roman_parens] = STATE(1004), + [sym__list_item_upper_roman_parens] = STATE(784), + [sym_table] = STATE(1051), + [sym__table_row] = STATE(232), + [sym_table_header] = STATE(232), + [sym_table_separator] = STATE(232), + [sym_table_row] = STATE(232), + [sym_footnote] = STATE(1051), [sym_footnote_marker_begin] = STATE(1135), - [sym_div] = STATE(1057), + [sym_footnote_content] = STATE(801), + [sym_div] = STATE(1051), [sym__div_marker_begin] = STATE(1017), - [sym_code_block] = STATE(1057), - [sym_raw_block] = STATE(1057), - [sym_thematic_break] = STATE(1057), - [sym_block_quote] = STATE(1057), - [sym__block_quote_prefix] = STATE(225), - [sym_link_reference_definition] = STATE(1057), - [sym_block_attribute] = STATE(1057), - [sym__paragraph] = STATE(1057), - [sym__paragraph_content] = STATE(690), - [sym__paragraph_inline_content] = STATE(824), - [sym__inline] = STATE(654), - [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(316), - [aux_sym__list_plus_repeat1] = STATE(336), - [aux_sym__list_star_repeat1] = STATE(318), - [aux_sym__list_task_repeat1] = STATE(288), + [sym_code_block] = STATE(1051), + [sym_raw_block] = STATE(1051), + [sym_thematic_break] = STATE(1051), + [sym_block_quote] = STATE(1051), + [sym__block_quote_prefix] = STATE(222), + [sym_link_reference_definition] = STATE(1051), + [sym_block_attribute] = STATE(1051), + [sym__paragraph] = STATE(1051), + [sym__paragraph_content] = STATE(689), + [sym__paragraph_inline_content] = STATE(814), + [sym__inline] = STATE(657), + [sym__symbol_fallback] = STATE(271), + [aux_sym__list_dash_repeat1] = STATE(341), + [aux_sym__list_plus_repeat1] = STATE(342), + [aux_sym__list_star_repeat1] = STATE(343), + [aux_sym__list_task_repeat1] = STATE(314), [aux_sym__list_definition_repeat1] = STATE(456), [aux_sym__list_decimal_period_repeat1] = STATE(457), [aux_sym__list_decimal_paren_repeat1] = STATE(458), @@ -10102,9 +10118,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_upper_roman_period_repeat1] = STATE(469), [aux_sym__list_upper_roman_paren_repeat1] = STATE(470), [aux_sym__list_upper_roman_parens_repeat1] = STATE(471), - [aux_sym_table_repeat1] = STATE(234), - [aux_sym__block_quote_prefix_repeat1] = STATE(230), - [aux_sym__inline_repeat1] = STATE(273), + [aux_sym_table_repeat1] = STATE(232), + [aux_sym__block_quote_prefix_repeat1] = STATE(231), + [aux_sym__inline_repeat1] = STATE(271), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_DOT] = ACTIONS(9), @@ -10146,77 +10162,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block_attribute_begin] = ACTIONS(384), }, [43] = { - [sym__block_with_heading] = STATE(1102), - [sym__block_element] = STATE(1102), - [sym_heading] = STATE(1102), - [sym_list] = STATE(1102), - [sym__list_dash] = STATE(1007), - [sym__list_item_dash] = STATE(595), - [sym__list_plus] = STATE(1007), - [sym__list_item_plus] = STATE(657), - [sym__list_star] = STATE(1007), - [sym__list_item_star] = STATE(570), - [sym__list_task] = STATE(1007), - [sym__list_item_task] = STATE(586), - [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(1007), - [sym__list_item_definition] = STATE(694), - [sym__list_decimal_period] = STATE(1007), - [sym__list_item_decimal_period] = STATE(714), - [sym__list_decimal_paren] = STATE(1007), - [sym__list_item_decimal_paren] = STATE(719), - [sym__list_decimal_parens] = STATE(1007), - [sym__list_item_decimal_parens] = STATE(746), - [sym__list_lower_alpha_period] = STATE(1007), - [sym__list_item_lower_alpha_period] = STATE(748), - [sym__list_lower_alpha_paren] = STATE(1007), - [sym__list_item_lower_alpha_paren] = STATE(749), - [sym__list_lower_alpha_parens] = STATE(1007), - [sym__list_item_lower_alpha_parens] = STATE(753), - [sym__list_upper_alpha_period] = STATE(1007), - [sym__list_item_upper_alpha_period] = STATE(761), - [sym__list_upper_alpha_paren] = STATE(1007), - [sym__list_item_upper_alpha_paren] = STATE(764), - [sym__list_upper_alpha_parens] = STATE(1007), - [sym__list_item_upper_alpha_parens] = STATE(765), - [sym__list_lower_roman_period] = STATE(1007), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(1007), - [sym__list_item_lower_roman_paren] = STATE(769), - [sym__list_lower_roman_parens] = STATE(1007), - [sym__list_item_lower_roman_parens] = STATE(786), - [sym__list_upper_roman_period] = STATE(1007), - [sym__list_item_upper_roman_period] = STATE(791), - [sym__list_upper_roman_paren] = STATE(1007), - [sym__list_item_upper_roman_paren] = STATE(793), - [sym__list_upper_roman_parens] = STATE(1007), - [sym__list_item_upper_roman_parens] = STATE(799), - [sym_list_item_content] = STATE(603), - [sym_table] = STATE(1102), - [sym__table_row] = STATE(234), - [sym_table_header] = STATE(234), - [sym_table_separator] = STATE(234), - [sym_table_row] = STATE(234), - [sym_footnote] = STATE(1102), + [sym__block_with_heading] = STATE(1075), + [sym__block_element] = STATE(1075), + [sym_heading] = STATE(1075), + [sym_list] = STATE(1075), + [sym__list_dash] = STATE(1004), + [sym__list_item_dash] = STATE(599), + [sym__list_plus] = STATE(1004), + [sym__list_item_plus] = STATE(606), + [sym__list_star] = STATE(1004), + [sym__list_item_star] = STATE(664), + [sym__list_task] = STATE(1004), + [sym__list_item_task] = STATE(673), + [sym_list_marker_task] = STATE(44), + [sym__list_definition] = STATE(1004), + [sym__list_item_definition] = STATE(792), + [sym__list_decimal_period] = STATE(1004), + [sym__list_item_decimal_period] = STATE(691), + [sym__list_decimal_paren] = STATE(1004), + [sym__list_item_decimal_paren] = STATE(692), + [sym__list_decimal_parens] = STATE(1004), + [sym__list_item_decimal_parens] = STATE(710), + [sym__list_lower_alpha_period] = STATE(1004), + [sym__list_item_lower_alpha_period] = STATE(714), + [sym__list_lower_alpha_paren] = STATE(1004), + [sym__list_item_lower_alpha_paren] = STATE(717), + [sym__list_lower_alpha_parens] = STATE(1004), + [sym__list_item_lower_alpha_parens] = STATE(721), + [sym__list_upper_alpha_period] = STATE(1004), + [sym__list_item_upper_alpha_period] = STATE(726), + [sym__list_upper_alpha_paren] = STATE(1004), + [sym__list_item_upper_alpha_paren] = STATE(747), + [sym__list_upper_alpha_parens] = STATE(1004), + [sym__list_item_upper_alpha_parens] = STATE(751), + [sym__list_lower_roman_period] = STATE(1004), + [sym__list_item_lower_roman_period] = STATE(753), + [sym__list_lower_roman_paren] = STATE(1004), + [sym__list_item_lower_roman_paren] = STATE(755), + [sym__list_lower_roman_parens] = STATE(1004), + [sym__list_item_lower_roman_parens] = STATE(760), + [sym__list_upper_roman_period] = STATE(1004), + [sym__list_item_upper_roman_period] = STATE(761), + [sym__list_upper_roman_paren] = STATE(1004), + [sym__list_item_upper_roman_paren] = STATE(766), + [sym__list_upper_roman_parens] = STATE(1004), + [sym__list_item_upper_roman_parens] = STATE(784), + [sym_list_item_content] = STATE(890), + [sym_table] = STATE(1075), + [sym__table_row] = STATE(232), + [sym_table_header] = STATE(232), + [sym_table_separator] = STATE(232), + [sym_table_row] = STATE(232), + [sym_footnote] = STATE(1075), [sym_footnote_marker_begin] = STATE(1135), - [sym_div] = STATE(1102), + [sym_div] = STATE(1075), [sym__div_marker_begin] = STATE(1017), - [sym_code_block] = STATE(1102), - [sym_raw_block] = STATE(1102), - [sym_thematic_break] = STATE(1102), - [sym_block_quote] = STATE(1102), - [sym__block_quote_prefix] = STATE(225), - [sym_link_reference_definition] = STATE(1102), - [sym_block_attribute] = STATE(1102), - [sym__paragraph] = STATE(1102), - [sym__paragraph_content] = STATE(690), - [sym__paragraph_inline_content] = STATE(824), - [sym__inline] = STATE(654), - [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(316), - [aux_sym__list_plus_repeat1] = STATE(336), - [aux_sym__list_star_repeat1] = STATE(318), - [aux_sym__list_task_repeat1] = STATE(288), + [sym_code_block] = STATE(1075), + [sym_raw_block] = STATE(1075), + [sym_thematic_break] = STATE(1075), + [sym_block_quote] = STATE(1075), + [sym__block_quote_prefix] = STATE(222), + [sym_link_reference_definition] = STATE(1075), + [sym_block_attribute] = STATE(1075), + [sym__paragraph] = STATE(1075), + [sym__paragraph_content] = STATE(689), + [sym__paragraph_inline_content] = STATE(814), + [sym__inline] = STATE(657), + [sym__symbol_fallback] = STATE(271), + [aux_sym__list_dash_repeat1] = STATE(341), + [aux_sym__list_plus_repeat1] = STATE(342), + [aux_sym__list_star_repeat1] = STATE(343), + [aux_sym__list_task_repeat1] = STATE(314), [aux_sym__list_definition_repeat1] = STATE(456), [aux_sym__list_decimal_period_repeat1] = STATE(457), [aux_sym__list_decimal_paren_repeat1] = STATE(458), @@ -10233,9 +10249,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_upper_roman_period_repeat1] = STATE(469), [aux_sym__list_upper_roman_paren_repeat1] = STATE(470), [aux_sym__list_upper_roman_parens_repeat1] = STATE(471), - [aux_sym_table_repeat1] = STATE(234), - [aux_sym__block_quote_prefix_repeat1] = STATE(230), - [aux_sym__inline_repeat1] = STATE(273), + [aux_sym_table_repeat1] = STATE(232), + [aux_sym__block_quote_prefix_repeat1] = STATE(231), + [aux_sym__inline_repeat1] = STATE(271), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_DOT] = ACTIONS(9), @@ -10243,7 +10259,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_token1] = ACTIONS(9), [anon_sym_LBRACE] = ACTIONS(9), [anon_sym_PERCENT] = ACTIONS(9), - [sym__newline] = ACTIONS(394), + [sym__newline] = ACTIONS(422), [sym__heading_begin] = ACTIONS(368), [sym__div_begin] = ACTIONS(17), [sym__code_block_begin] = ACTIONS(370), @@ -10277,77 +10293,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block_attribute_begin] = ACTIONS(384), }, [44] = { - [sym__block_with_heading] = STATE(1070), - [sym__block_element] = STATE(1070), - [sym_heading] = STATE(1070), - [sym_list] = STATE(1070), - [sym__list_dash] = STATE(1007), - [sym__list_item_dash] = STATE(595), - [sym__list_plus] = STATE(1007), - [sym__list_item_plus] = STATE(657), - [sym__list_star] = STATE(1007), - [sym__list_item_star] = STATE(570), - [sym__list_task] = STATE(1007), - [sym__list_item_task] = STATE(586), - [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(1007), - [sym__list_item_definition] = STATE(694), - [sym__list_decimal_period] = STATE(1007), - [sym__list_item_decimal_period] = STATE(714), - [sym__list_decimal_paren] = STATE(1007), - [sym__list_item_decimal_paren] = STATE(719), - [sym__list_decimal_parens] = STATE(1007), - [sym__list_item_decimal_parens] = STATE(746), - [sym__list_lower_alpha_period] = STATE(1007), - [sym__list_item_lower_alpha_period] = STATE(748), - [sym__list_lower_alpha_paren] = STATE(1007), - [sym__list_item_lower_alpha_paren] = STATE(749), - [sym__list_lower_alpha_parens] = STATE(1007), - [sym__list_item_lower_alpha_parens] = STATE(753), - [sym__list_upper_alpha_period] = STATE(1007), - [sym__list_item_upper_alpha_period] = STATE(761), - [sym__list_upper_alpha_paren] = STATE(1007), - [sym__list_item_upper_alpha_paren] = STATE(764), - [sym__list_upper_alpha_parens] = STATE(1007), - [sym__list_item_upper_alpha_parens] = STATE(765), - [sym__list_lower_roman_period] = STATE(1007), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(1007), - [sym__list_item_lower_roman_paren] = STATE(769), - [sym__list_lower_roman_parens] = STATE(1007), - [sym__list_item_lower_roman_parens] = STATE(786), - [sym__list_upper_roman_period] = STATE(1007), - [sym__list_item_upper_roman_period] = STATE(791), - [sym__list_upper_roman_paren] = STATE(1007), - [sym__list_item_upper_roman_paren] = STATE(793), - [sym__list_upper_roman_parens] = STATE(1007), - [sym__list_item_upper_roman_parens] = STATE(799), - [sym_table] = STATE(1070), - [sym__table_row] = STATE(234), - [sym_table_header] = STATE(234), - [sym_table_separator] = STATE(234), - [sym_table_row] = STATE(234), - [sym_footnote] = STATE(1070), + [sym__block_with_heading] = STATE(1102), + [sym__block_element] = STATE(1102), + [sym_heading] = STATE(1102), + [sym_list] = STATE(1102), + [sym__list_dash] = STATE(1004), + [sym__list_item_dash] = STATE(599), + [sym__list_plus] = STATE(1004), + [sym__list_item_plus] = STATE(606), + [sym__list_star] = STATE(1004), + [sym__list_item_star] = STATE(664), + [sym__list_task] = STATE(1004), + [sym__list_item_task] = STATE(673), + [sym_list_marker_task] = STATE(44), + [sym__list_definition] = STATE(1004), + [sym__list_item_definition] = STATE(792), + [sym__list_decimal_period] = STATE(1004), + [sym__list_item_decimal_period] = STATE(691), + [sym__list_decimal_paren] = STATE(1004), + [sym__list_item_decimal_paren] = STATE(692), + [sym__list_decimal_parens] = STATE(1004), + [sym__list_item_decimal_parens] = STATE(710), + [sym__list_lower_alpha_period] = STATE(1004), + [sym__list_item_lower_alpha_period] = STATE(714), + [sym__list_lower_alpha_paren] = STATE(1004), + [sym__list_item_lower_alpha_paren] = STATE(717), + [sym__list_lower_alpha_parens] = STATE(1004), + [sym__list_item_lower_alpha_parens] = STATE(721), + [sym__list_upper_alpha_period] = STATE(1004), + [sym__list_item_upper_alpha_period] = STATE(726), + [sym__list_upper_alpha_paren] = STATE(1004), + [sym__list_item_upper_alpha_paren] = STATE(747), + [sym__list_upper_alpha_parens] = STATE(1004), + [sym__list_item_upper_alpha_parens] = STATE(751), + [sym__list_lower_roman_period] = STATE(1004), + [sym__list_item_lower_roman_period] = STATE(753), + [sym__list_lower_roman_paren] = STATE(1004), + [sym__list_item_lower_roman_paren] = STATE(755), + [sym__list_lower_roman_parens] = STATE(1004), + [sym__list_item_lower_roman_parens] = STATE(760), + [sym__list_upper_roman_period] = STATE(1004), + [sym__list_item_upper_roman_period] = STATE(761), + [sym__list_upper_roman_paren] = STATE(1004), + [sym__list_item_upper_roman_paren] = STATE(766), + [sym__list_upper_roman_parens] = STATE(1004), + [sym__list_item_upper_roman_parens] = STATE(784), + [sym_list_item_content] = STATE(622), + [sym_table] = STATE(1102), + [sym__table_row] = STATE(232), + [sym_table_header] = STATE(232), + [sym_table_separator] = STATE(232), + [sym_table_row] = STATE(232), + [sym_footnote] = STATE(1102), [sym_footnote_marker_begin] = STATE(1135), - [sym_footnote_content] = STATE(173), - [sym_div] = STATE(1070), + [sym_div] = STATE(1102), [sym__div_marker_begin] = STATE(1017), - [sym_code_block] = STATE(1070), - [sym_raw_block] = STATE(1070), - [sym_thematic_break] = STATE(1070), - [sym_block_quote] = STATE(1070), - [sym__block_quote_prefix] = STATE(225), - [sym_link_reference_definition] = STATE(1070), - [sym_block_attribute] = STATE(1070), - [sym__paragraph] = STATE(1070), - [sym__paragraph_content] = STATE(690), - [sym__paragraph_inline_content] = STATE(824), - [sym__inline] = STATE(654), - [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(316), - [aux_sym__list_plus_repeat1] = STATE(336), - [aux_sym__list_star_repeat1] = STATE(318), - [aux_sym__list_task_repeat1] = STATE(288), + [sym_code_block] = STATE(1102), + [sym_raw_block] = STATE(1102), + [sym_thematic_break] = STATE(1102), + [sym_block_quote] = STATE(1102), + [sym__block_quote_prefix] = STATE(222), + [sym_link_reference_definition] = STATE(1102), + [sym_block_attribute] = STATE(1102), + [sym__paragraph] = STATE(1102), + [sym__paragraph_content] = STATE(689), + [sym__paragraph_inline_content] = STATE(814), + [sym__inline] = STATE(657), + [sym__symbol_fallback] = STATE(271), + [aux_sym__list_dash_repeat1] = STATE(341), + [aux_sym__list_plus_repeat1] = STATE(342), + [aux_sym__list_star_repeat1] = STATE(343), + [aux_sym__list_task_repeat1] = STATE(314), [aux_sym__list_definition_repeat1] = STATE(456), [aux_sym__list_decimal_period_repeat1] = STATE(457), [aux_sym__list_decimal_paren_repeat1] = STATE(458), @@ -10364,9 +10380,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_upper_roman_period_repeat1] = STATE(469), [aux_sym__list_upper_roman_paren_repeat1] = STATE(470), [aux_sym__list_upper_roman_parens_repeat1] = STATE(471), - [aux_sym_table_repeat1] = STATE(234), - [aux_sym__block_quote_prefix_repeat1] = STATE(230), - [aux_sym__inline_repeat1] = STATE(273), + [aux_sym_table_repeat1] = STATE(232), + [aux_sym__block_quote_prefix_repeat1] = STATE(231), + [aux_sym__inline_repeat1] = STATE(271), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_DOT] = ACTIONS(9), @@ -10374,7 +10390,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_token1] = ACTIONS(9), [anon_sym_LBRACE] = ACTIONS(9), [anon_sym_PERCENT] = ACTIONS(9), - [sym__newline] = ACTIONS(422), + [sym__newline] = ACTIONS(396), [sym__heading_begin] = ACTIONS(368), [sym__div_begin] = ACTIONS(17), [sym__code_block_begin] = ACTIONS(370), @@ -10408,77 +10424,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block_attribute_begin] = ACTIONS(384), }, [45] = { - [sym__block_with_heading] = STATE(1075), - [sym__block_element] = STATE(1075), - [sym_heading] = STATE(1075), - [sym_list] = STATE(1075), - [sym__list_dash] = STATE(1007), - [sym__list_item_dash] = STATE(595), - [sym__list_plus] = STATE(1007), - [sym__list_item_plus] = STATE(657), - [sym__list_star] = STATE(1007), - [sym__list_item_star] = STATE(570), - [sym__list_task] = STATE(1007), - [sym__list_item_task] = STATE(586), - [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(1007), - [sym__list_item_definition] = STATE(694), - [sym__list_decimal_period] = STATE(1007), - [sym__list_item_decimal_period] = STATE(714), - [sym__list_decimal_paren] = STATE(1007), - [sym__list_item_decimal_paren] = STATE(719), - [sym__list_decimal_parens] = STATE(1007), - [sym__list_item_decimal_parens] = STATE(746), - [sym__list_lower_alpha_period] = STATE(1007), - [sym__list_item_lower_alpha_period] = STATE(748), - [sym__list_lower_alpha_paren] = STATE(1007), - [sym__list_item_lower_alpha_paren] = STATE(749), - [sym__list_lower_alpha_parens] = STATE(1007), - [sym__list_item_lower_alpha_parens] = STATE(753), - [sym__list_upper_alpha_period] = STATE(1007), - [sym__list_item_upper_alpha_period] = STATE(761), - [sym__list_upper_alpha_paren] = STATE(1007), - [sym__list_item_upper_alpha_paren] = STATE(764), - [sym__list_upper_alpha_parens] = STATE(1007), - [sym__list_item_upper_alpha_parens] = STATE(765), - [sym__list_lower_roman_period] = STATE(1007), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(1007), - [sym__list_item_lower_roman_paren] = STATE(769), - [sym__list_lower_roman_parens] = STATE(1007), - [sym__list_item_lower_roman_parens] = STATE(786), - [sym__list_upper_roman_period] = STATE(1007), - [sym__list_item_upper_roman_period] = STATE(791), - [sym__list_upper_roman_paren] = STATE(1007), - [sym__list_item_upper_roman_paren] = STATE(793), - [sym__list_upper_roman_parens] = STATE(1007), - [sym__list_item_upper_roman_parens] = STATE(799), - [sym_list_item_content] = STATE(840), - [sym_table] = STATE(1075), - [sym__table_row] = STATE(234), - [sym_table_header] = STATE(234), - [sym_table_separator] = STATE(234), - [sym_table_row] = STATE(234), - [sym_footnote] = STATE(1075), + [sym__block_with_heading] = STATE(1070), + [sym__block_element] = STATE(1070), + [sym_heading] = STATE(1070), + [sym_list] = STATE(1070), + [sym__list_dash] = STATE(1004), + [sym__list_item_dash] = STATE(599), + [sym__list_plus] = STATE(1004), + [sym__list_item_plus] = STATE(606), + [sym__list_star] = STATE(1004), + [sym__list_item_star] = STATE(664), + [sym__list_task] = STATE(1004), + [sym__list_item_task] = STATE(673), + [sym_list_marker_task] = STATE(44), + [sym__list_definition] = STATE(1004), + [sym__list_item_definition] = STATE(792), + [sym__list_decimal_period] = STATE(1004), + [sym__list_item_decimal_period] = STATE(691), + [sym__list_decimal_paren] = STATE(1004), + [sym__list_item_decimal_paren] = STATE(692), + [sym__list_decimal_parens] = STATE(1004), + [sym__list_item_decimal_parens] = STATE(710), + [sym__list_lower_alpha_period] = STATE(1004), + [sym__list_item_lower_alpha_period] = STATE(714), + [sym__list_lower_alpha_paren] = STATE(1004), + [sym__list_item_lower_alpha_paren] = STATE(717), + [sym__list_lower_alpha_parens] = STATE(1004), + [sym__list_item_lower_alpha_parens] = STATE(721), + [sym__list_upper_alpha_period] = STATE(1004), + [sym__list_item_upper_alpha_period] = STATE(726), + [sym__list_upper_alpha_paren] = STATE(1004), + [sym__list_item_upper_alpha_paren] = STATE(747), + [sym__list_upper_alpha_parens] = STATE(1004), + [sym__list_item_upper_alpha_parens] = STATE(751), + [sym__list_lower_roman_period] = STATE(1004), + [sym__list_item_lower_roman_period] = STATE(753), + [sym__list_lower_roman_paren] = STATE(1004), + [sym__list_item_lower_roman_paren] = STATE(755), + [sym__list_lower_roman_parens] = STATE(1004), + [sym__list_item_lower_roman_parens] = STATE(760), + [sym__list_upper_roman_period] = STATE(1004), + [sym__list_item_upper_roman_period] = STATE(761), + [sym__list_upper_roman_paren] = STATE(1004), + [sym__list_item_upper_roman_paren] = STATE(766), + [sym__list_upper_roman_parens] = STATE(1004), + [sym__list_item_upper_roman_parens] = STATE(784), + [sym_table] = STATE(1070), + [sym__table_row] = STATE(232), + [sym_table_header] = STATE(232), + [sym_table_separator] = STATE(232), + [sym_table_row] = STATE(232), + [sym_footnote] = STATE(1070), [sym_footnote_marker_begin] = STATE(1135), - [sym_div] = STATE(1075), + [sym_footnote_content] = STATE(176), + [sym_div] = STATE(1070), [sym__div_marker_begin] = STATE(1017), - [sym_code_block] = STATE(1075), - [sym_raw_block] = STATE(1075), - [sym_thematic_break] = STATE(1075), - [sym_block_quote] = STATE(1075), - [sym__block_quote_prefix] = STATE(225), - [sym_link_reference_definition] = STATE(1075), - [sym_block_attribute] = STATE(1075), - [sym__paragraph] = STATE(1075), - [sym__paragraph_content] = STATE(690), - [sym__paragraph_inline_content] = STATE(824), - [sym__inline] = STATE(654), - [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(316), - [aux_sym__list_plus_repeat1] = STATE(336), - [aux_sym__list_star_repeat1] = STATE(318), - [aux_sym__list_task_repeat1] = STATE(288), + [sym_code_block] = STATE(1070), + [sym_raw_block] = STATE(1070), + [sym_thematic_break] = STATE(1070), + [sym_block_quote] = STATE(1070), + [sym__block_quote_prefix] = STATE(222), + [sym_link_reference_definition] = STATE(1070), + [sym_block_attribute] = STATE(1070), + [sym__paragraph] = STATE(1070), + [sym__paragraph_content] = STATE(689), + [sym__paragraph_inline_content] = STATE(814), + [sym__inline] = STATE(657), + [sym__symbol_fallback] = STATE(271), + [aux_sym__list_dash_repeat1] = STATE(341), + [aux_sym__list_plus_repeat1] = STATE(342), + [aux_sym__list_star_repeat1] = STATE(343), + [aux_sym__list_task_repeat1] = STATE(314), [aux_sym__list_definition_repeat1] = STATE(456), [aux_sym__list_decimal_period_repeat1] = STATE(457), [aux_sym__list_decimal_paren_repeat1] = STATE(458), @@ -10495,9 +10511,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_upper_roman_period_repeat1] = STATE(469), [aux_sym__list_upper_roman_paren_repeat1] = STATE(470), [aux_sym__list_upper_roman_parens_repeat1] = STATE(471), - [aux_sym_table_repeat1] = STATE(234), - [aux_sym__block_quote_prefix_repeat1] = STATE(230), - [aux_sym__inline_repeat1] = STATE(273), + [aux_sym_table_repeat1] = STATE(232), + [aux_sym__block_quote_prefix_repeat1] = STATE(231), + [aux_sym__inline_repeat1] = STATE(271), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_DOT] = ACTIONS(9), @@ -10543,53 +10559,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block_element] = STATE(1089), [sym_heading] = STATE(1089), [sym_list] = STATE(1089), - [sym__list_dash] = STATE(1007), - [sym__list_item_dash] = STATE(595), - [sym__list_plus] = STATE(1007), - [sym__list_item_plus] = STATE(657), - [sym__list_star] = STATE(1007), - [sym__list_item_star] = STATE(570), - [sym__list_task] = STATE(1007), - [sym__list_item_task] = STATE(586), - [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(1007), - [sym__list_item_definition] = STATE(694), - [sym__list_decimal_period] = STATE(1007), - [sym__list_item_decimal_period] = STATE(714), - [sym__list_decimal_paren] = STATE(1007), - [sym__list_item_decimal_paren] = STATE(719), - [sym__list_decimal_parens] = STATE(1007), - [sym__list_item_decimal_parens] = STATE(746), - [sym__list_lower_alpha_period] = STATE(1007), - [sym__list_item_lower_alpha_period] = STATE(748), - [sym__list_lower_alpha_paren] = STATE(1007), - [sym__list_item_lower_alpha_paren] = STATE(749), - [sym__list_lower_alpha_parens] = STATE(1007), - [sym__list_item_lower_alpha_parens] = STATE(753), - [sym__list_upper_alpha_period] = STATE(1007), - [sym__list_item_upper_alpha_period] = STATE(761), - [sym__list_upper_alpha_paren] = STATE(1007), - [sym__list_item_upper_alpha_paren] = STATE(764), - [sym__list_upper_alpha_parens] = STATE(1007), - [sym__list_item_upper_alpha_parens] = STATE(765), - [sym__list_lower_roman_period] = STATE(1007), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(1007), - [sym__list_item_lower_roman_paren] = STATE(769), - [sym__list_lower_roman_parens] = STATE(1007), - [sym__list_item_lower_roman_parens] = STATE(786), - [sym__list_upper_roman_period] = STATE(1007), - [sym__list_item_upper_roman_period] = STATE(791), - [sym__list_upper_roman_paren] = STATE(1007), - [sym__list_item_upper_roman_paren] = STATE(793), - [sym__list_upper_roman_parens] = STATE(1007), - [sym__list_item_upper_roman_parens] = STATE(799), - [sym_list_item_content] = STATE(841), + [sym__list_dash] = STATE(1004), + [sym__list_item_dash] = STATE(599), + [sym__list_plus] = STATE(1004), + [sym__list_item_plus] = STATE(606), + [sym__list_star] = STATE(1004), + [sym__list_item_star] = STATE(664), + [sym__list_task] = STATE(1004), + [sym__list_item_task] = STATE(673), + [sym_list_marker_task] = STATE(44), + [sym__list_definition] = STATE(1004), + [sym__list_item_definition] = STATE(792), + [sym__list_decimal_period] = STATE(1004), + [sym__list_item_decimal_period] = STATE(691), + [sym__list_decimal_paren] = STATE(1004), + [sym__list_item_decimal_paren] = STATE(692), + [sym__list_decimal_parens] = STATE(1004), + [sym__list_item_decimal_parens] = STATE(710), + [sym__list_lower_alpha_period] = STATE(1004), + [sym__list_item_lower_alpha_period] = STATE(714), + [sym__list_lower_alpha_paren] = STATE(1004), + [sym__list_item_lower_alpha_paren] = STATE(717), + [sym__list_lower_alpha_parens] = STATE(1004), + [sym__list_item_lower_alpha_parens] = STATE(721), + [sym__list_upper_alpha_period] = STATE(1004), + [sym__list_item_upper_alpha_period] = STATE(726), + [sym__list_upper_alpha_paren] = STATE(1004), + [sym__list_item_upper_alpha_paren] = STATE(747), + [sym__list_upper_alpha_parens] = STATE(1004), + [sym__list_item_upper_alpha_parens] = STATE(751), + [sym__list_lower_roman_period] = STATE(1004), + [sym__list_item_lower_roman_period] = STATE(753), + [sym__list_lower_roman_paren] = STATE(1004), + [sym__list_item_lower_roman_paren] = STATE(755), + [sym__list_lower_roman_parens] = STATE(1004), + [sym__list_item_lower_roman_parens] = STATE(760), + [sym__list_upper_roman_period] = STATE(1004), + [sym__list_item_upper_roman_period] = STATE(761), + [sym__list_upper_roman_paren] = STATE(1004), + [sym__list_item_upper_roman_paren] = STATE(766), + [sym__list_upper_roman_parens] = STATE(1004), + [sym__list_item_upper_roman_parens] = STATE(784), + [sym_list_item_content] = STATE(794), [sym_table] = STATE(1089), - [sym__table_row] = STATE(234), - [sym_table_header] = STATE(234), - [sym_table_separator] = STATE(234), - [sym_table_row] = STATE(234), + [sym__table_row] = STATE(232), + [sym_table_header] = STATE(232), + [sym_table_separator] = STATE(232), + [sym_table_row] = STATE(232), [sym_footnote] = STATE(1089), [sym_footnote_marker_begin] = STATE(1135), [sym_div] = STATE(1089), @@ -10598,18 +10614,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_block] = STATE(1089), [sym_thematic_break] = STATE(1089), [sym_block_quote] = STATE(1089), - [sym__block_quote_prefix] = STATE(225), + [sym__block_quote_prefix] = STATE(222), [sym_link_reference_definition] = STATE(1089), [sym_block_attribute] = STATE(1089), [sym__paragraph] = STATE(1089), - [sym__paragraph_content] = STATE(690), - [sym__paragraph_inline_content] = STATE(824), - [sym__inline] = STATE(654), - [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(316), - [aux_sym__list_plus_repeat1] = STATE(336), - [aux_sym__list_star_repeat1] = STATE(318), - [aux_sym__list_task_repeat1] = STATE(288), + [sym__paragraph_content] = STATE(689), + [sym__paragraph_inline_content] = STATE(814), + [sym__inline] = STATE(657), + [sym__symbol_fallback] = STATE(271), + [aux_sym__list_dash_repeat1] = STATE(341), + [aux_sym__list_plus_repeat1] = STATE(342), + [aux_sym__list_star_repeat1] = STATE(343), + [aux_sym__list_task_repeat1] = STATE(314), [aux_sym__list_definition_repeat1] = STATE(456), [aux_sym__list_decimal_period_repeat1] = STATE(457), [aux_sym__list_decimal_paren_repeat1] = STATE(458), @@ -10626,9 +10642,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_upper_roman_period_repeat1] = STATE(469), [aux_sym__list_upper_roman_paren_repeat1] = STATE(470), [aux_sym__list_upper_roman_parens_repeat1] = STATE(471), - [aux_sym_table_repeat1] = STATE(234), - [aux_sym__block_quote_prefix_repeat1] = STATE(230), - [aux_sym__inline_repeat1] = STATE(273), + [aux_sym_table_repeat1] = STATE(232), + [aux_sym__block_quote_prefix_repeat1] = STATE(231), + [aux_sym__inline_repeat1] = STATE(271), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_DOT] = ACTIONS(9), @@ -10674,53 +10690,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block_element] = STATE(1090), [sym_heading] = STATE(1090), [sym_list] = STATE(1090), - [sym__list_dash] = STATE(1007), - [sym__list_item_dash] = STATE(595), - [sym__list_plus] = STATE(1007), - [sym__list_item_plus] = STATE(657), - [sym__list_star] = STATE(1007), - [sym__list_item_star] = STATE(570), - [sym__list_task] = STATE(1007), - [sym__list_item_task] = STATE(586), - [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(1007), - [sym__list_item_definition] = STATE(694), - [sym__list_decimal_period] = STATE(1007), - [sym__list_item_decimal_period] = STATE(714), - [sym__list_decimal_paren] = STATE(1007), - [sym__list_item_decimal_paren] = STATE(719), - [sym__list_decimal_parens] = STATE(1007), - [sym__list_item_decimal_parens] = STATE(746), - [sym__list_lower_alpha_period] = STATE(1007), - [sym__list_item_lower_alpha_period] = STATE(748), - [sym__list_lower_alpha_paren] = STATE(1007), - [sym__list_item_lower_alpha_paren] = STATE(749), - [sym__list_lower_alpha_parens] = STATE(1007), - [sym__list_item_lower_alpha_parens] = STATE(753), - [sym__list_upper_alpha_period] = STATE(1007), - [sym__list_item_upper_alpha_period] = STATE(761), - [sym__list_upper_alpha_paren] = STATE(1007), - [sym__list_item_upper_alpha_paren] = STATE(764), - [sym__list_upper_alpha_parens] = STATE(1007), - [sym__list_item_upper_alpha_parens] = STATE(765), - [sym__list_lower_roman_period] = STATE(1007), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(1007), - [sym__list_item_lower_roman_paren] = STATE(769), - [sym__list_lower_roman_parens] = STATE(1007), - [sym__list_item_lower_roman_parens] = STATE(786), - [sym__list_upper_roman_period] = STATE(1007), - [sym__list_item_upper_roman_period] = STATE(791), - [sym__list_upper_roman_paren] = STATE(1007), - [sym__list_item_upper_roman_paren] = STATE(793), - [sym__list_upper_roman_parens] = STATE(1007), - [sym__list_item_upper_roman_parens] = STATE(799), - [sym_list_item_content] = STATE(845), + [sym__list_dash] = STATE(1004), + [sym__list_item_dash] = STATE(599), + [sym__list_plus] = STATE(1004), + [sym__list_item_plus] = STATE(606), + [sym__list_star] = STATE(1004), + [sym__list_item_star] = STATE(664), + [sym__list_task] = STATE(1004), + [sym__list_item_task] = STATE(673), + [sym_list_marker_task] = STATE(44), + [sym__list_definition] = STATE(1004), + [sym__list_item_definition] = STATE(792), + [sym__list_decimal_period] = STATE(1004), + [sym__list_item_decimal_period] = STATE(691), + [sym__list_decimal_paren] = STATE(1004), + [sym__list_item_decimal_paren] = STATE(692), + [sym__list_decimal_parens] = STATE(1004), + [sym__list_item_decimal_parens] = STATE(710), + [sym__list_lower_alpha_period] = STATE(1004), + [sym__list_item_lower_alpha_period] = STATE(714), + [sym__list_lower_alpha_paren] = STATE(1004), + [sym__list_item_lower_alpha_paren] = STATE(717), + [sym__list_lower_alpha_parens] = STATE(1004), + [sym__list_item_lower_alpha_parens] = STATE(721), + [sym__list_upper_alpha_period] = STATE(1004), + [sym__list_item_upper_alpha_period] = STATE(726), + [sym__list_upper_alpha_paren] = STATE(1004), + [sym__list_item_upper_alpha_paren] = STATE(747), + [sym__list_upper_alpha_parens] = STATE(1004), + [sym__list_item_upper_alpha_parens] = STATE(751), + [sym__list_lower_roman_period] = STATE(1004), + [sym__list_item_lower_roman_period] = STATE(753), + [sym__list_lower_roman_paren] = STATE(1004), + [sym__list_item_lower_roman_paren] = STATE(755), + [sym__list_lower_roman_parens] = STATE(1004), + [sym__list_item_lower_roman_parens] = STATE(760), + [sym__list_upper_roman_period] = STATE(1004), + [sym__list_item_upper_roman_period] = STATE(761), + [sym__list_upper_roman_paren] = STATE(1004), + [sym__list_item_upper_roman_paren] = STATE(766), + [sym__list_upper_roman_parens] = STATE(1004), + [sym__list_item_upper_roman_parens] = STATE(784), + [sym_list_item_content] = STATE(776), [sym_table] = STATE(1090), - [sym__table_row] = STATE(234), - [sym_table_header] = STATE(234), - [sym_table_separator] = STATE(234), - [sym_table_row] = STATE(234), + [sym__table_row] = STATE(232), + [sym_table_header] = STATE(232), + [sym_table_separator] = STATE(232), + [sym_table_row] = STATE(232), [sym_footnote] = STATE(1090), [sym_footnote_marker_begin] = STATE(1135), [sym_div] = STATE(1090), @@ -10729,18 +10745,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_block] = STATE(1090), [sym_thematic_break] = STATE(1090), [sym_block_quote] = STATE(1090), - [sym__block_quote_prefix] = STATE(225), + [sym__block_quote_prefix] = STATE(222), [sym_link_reference_definition] = STATE(1090), [sym_block_attribute] = STATE(1090), [sym__paragraph] = STATE(1090), - [sym__paragraph_content] = STATE(690), - [sym__paragraph_inline_content] = STATE(824), - [sym__inline] = STATE(654), - [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(316), - [aux_sym__list_plus_repeat1] = STATE(336), - [aux_sym__list_star_repeat1] = STATE(318), - [aux_sym__list_task_repeat1] = STATE(288), + [sym__paragraph_content] = STATE(689), + [sym__paragraph_inline_content] = STATE(814), + [sym__inline] = STATE(657), + [sym__symbol_fallback] = STATE(271), + [aux_sym__list_dash_repeat1] = STATE(341), + [aux_sym__list_plus_repeat1] = STATE(342), + [aux_sym__list_star_repeat1] = STATE(343), + [aux_sym__list_task_repeat1] = STATE(314), [aux_sym__list_definition_repeat1] = STATE(456), [aux_sym__list_decimal_period_repeat1] = STATE(457), [aux_sym__list_decimal_paren_repeat1] = STATE(458), @@ -10757,9 +10773,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_upper_roman_period_repeat1] = STATE(469), [aux_sym__list_upper_roman_paren_repeat1] = STATE(470), [aux_sym__list_upper_roman_parens_repeat1] = STATE(471), - [aux_sym_table_repeat1] = STATE(234), - [aux_sym__block_quote_prefix_repeat1] = STATE(230), - [aux_sym__inline_repeat1] = STATE(273), + [aux_sym_table_repeat1] = STATE(232), + [aux_sym__block_quote_prefix_repeat1] = STATE(231), + [aux_sym__inline_repeat1] = STATE(271), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_DOT] = ACTIONS(9), @@ -10805,73 +10821,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block_element] = STATE(1088), [sym_heading] = STATE(1088), [sym_list] = STATE(1088), - [sym__list_dash] = STATE(1007), - [sym__list_item_dash] = STATE(595), - [sym__list_plus] = STATE(1007), - [sym__list_item_plus] = STATE(657), - [sym__list_star] = STATE(1007), - [sym__list_item_star] = STATE(570), - [sym__list_task] = STATE(1007), - [sym__list_item_task] = STATE(586), - [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(1007), - [sym__list_item_definition] = STATE(694), - [sym__list_decimal_period] = STATE(1007), - [sym__list_item_decimal_period] = STATE(714), - [sym__list_decimal_paren] = STATE(1007), - [sym__list_item_decimal_paren] = STATE(719), - [sym__list_decimal_parens] = STATE(1007), - [sym__list_item_decimal_parens] = STATE(746), - [sym__list_lower_alpha_period] = STATE(1007), - [sym__list_item_lower_alpha_period] = STATE(748), - [sym__list_lower_alpha_paren] = STATE(1007), - [sym__list_item_lower_alpha_paren] = STATE(749), - [sym__list_lower_alpha_parens] = STATE(1007), - [sym__list_item_lower_alpha_parens] = STATE(753), - [sym__list_upper_alpha_period] = STATE(1007), - [sym__list_item_upper_alpha_period] = STATE(761), - [sym__list_upper_alpha_paren] = STATE(1007), - [sym__list_item_upper_alpha_paren] = STATE(764), - [sym__list_upper_alpha_parens] = STATE(1007), - [sym__list_item_upper_alpha_parens] = STATE(765), - [sym__list_lower_roman_period] = STATE(1007), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(1007), - [sym__list_item_lower_roman_paren] = STATE(769), - [sym__list_lower_roman_parens] = STATE(1007), - [sym__list_item_lower_roman_parens] = STATE(786), - [sym__list_upper_roman_period] = STATE(1007), - [sym__list_item_upper_roman_period] = STATE(791), - [sym__list_upper_roman_paren] = STATE(1007), - [sym__list_item_upper_roman_paren] = STATE(793), - [sym__list_upper_roman_parens] = STATE(1007), - [sym__list_item_upper_roman_parens] = STATE(799), + [sym__list_dash] = STATE(1004), + [sym__list_item_dash] = STATE(599), + [sym__list_plus] = STATE(1004), + [sym__list_item_plus] = STATE(606), + [sym__list_star] = STATE(1004), + [sym__list_item_star] = STATE(664), + [sym__list_task] = STATE(1004), + [sym__list_item_task] = STATE(673), + [sym_list_marker_task] = STATE(44), + [sym__list_definition] = STATE(1004), + [sym__list_item_definition] = STATE(792), + [sym__list_decimal_period] = STATE(1004), + [sym__list_item_decimal_period] = STATE(691), + [sym__list_decimal_paren] = STATE(1004), + [sym__list_item_decimal_paren] = STATE(692), + [sym__list_decimal_parens] = STATE(1004), + [sym__list_item_decimal_parens] = STATE(710), + [sym__list_lower_alpha_period] = STATE(1004), + [sym__list_item_lower_alpha_period] = STATE(714), + [sym__list_lower_alpha_paren] = STATE(1004), + [sym__list_item_lower_alpha_paren] = STATE(717), + [sym__list_lower_alpha_parens] = STATE(1004), + [sym__list_item_lower_alpha_parens] = STATE(721), + [sym__list_upper_alpha_period] = STATE(1004), + [sym__list_item_upper_alpha_period] = STATE(726), + [sym__list_upper_alpha_paren] = STATE(1004), + [sym__list_item_upper_alpha_paren] = STATE(747), + [sym__list_upper_alpha_parens] = STATE(1004), + [sym__list_item_upper_alpha_parens] = STATE(751), + [sym__list_lower_roman_period] = STATE(1004), + [sym__list_item_lower_roman_period] = STATE(753), + [sym__list_lower_roman_paren] = STATE(1004), + [sym__list_item_lower_roman_paren] = STATE(755), + [sym__list_lower_roman_parens] = STATE(1004), + [sym__list_item_lower_roman_parens] = STATE(760), + [sym__list_upper_roman_period] = STATE(1004), + [sym__list_item_upper_roman_period] = STATE(761), + [sym__list_upper_roman_paren] = STATE(1004), + [sym__list_item_upper_roman_paren] = STATE(766), + [sym__list_upper_roman_parens] = STATE(1004), + [sym__list_item_upper_roman_parens] = STATE(784), [sym_table] = STATE(1088), - [sym__table_row] = STATE(234), - [sym_table_header] = STATE(234), - [sym_table_separator] = STATE(234), - [sym_table_row] = STATE(234), + [sym__table_row] = STATE(232), + [sym_table_header] = STATE(232), + [sym_table_separator] = STATE(232), + [sym_table_row] = STATE(232), [sym_footnote] = STATE(1088), [sym_footnote_marker_begin] = STATE(1135), - [sym_footnote_content] = STATE(665), + [sym_footnote_content] = STATE(590), [sym_div] = STATE(1088), [sym__div_marker_begin] = STATE(1017), [sym_code_block] = STATE(1088), [sym_raw_block] = STATE(1088), [sym_thematic_break] = STATE(1088), [sym_block_quote] = STATE(1088), - [sym__block_quote_prefix] = STATE(225), + [sym__block_quote_prefix] = STATE(222), [sym_link_reference_definition] = STATE(1088), [sym_block_attribute] = STATE(1088), [sym__paragraph] = STATE(1088), - [sym__paragraph_content] = STATE(690), - [sym__paragraph_inline_content] = STATE(824), - [sym__inline] = STATE(654), - [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(316), - [aux_sym__list_plus_repeat1] = STATE(336), - [aux_sym__list_star_repeat1] = STATE(318), - [aux_sym__list_task_repeat1] = STATE(288), + [sym__paragraph_content] = STATE(689), + [sym__paragraph_inline_content] = STATE(814), + [sym__inline] = STATE(657), + [sym__symbol_fallback] = STATE(271), + [aux_sym__list_dash_repeat1] = STATE(341), + [aux_sym__list_plus_repeat1] = STATE(342), + [aux_sym__list_star_repeat1] = STATE(343), + [aux_sym__list_task_repeat1] = STATE(314), [aux_sym__list_definition_repeat1] = STATE(456), [aux_sym__list_decimal_period_repeat1] = STATE(457), [aux_sym__list_decimal_paren_repeat1] = STATE(458), @@ -10888,9 +10904,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_upper_roman_period_repeat1] = STATE(469), [aux_sym__list_upper_roman_paren_repeat1] = STATE(470), [aux_sym__list_upper_roman_parens_repeat1] = STATE(471), - [aux_sym_table_repeat1] = STATE(234), - [aux_sym__block_quote_prefix_repeat1] = STATE(230), - [aux_sym__inline_repeat1] = STATE(273), + [aux_sym_table_repeat1] = STATE(232), + [aux_sym__block_quote_prefix_repeat1] = STATE(231), + [aux_sym__inline_repeat1] = STATE(271), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_DOT] = ACTIONS(9), @@ -10936,53 +10952,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block_element] = STATE(1019), [sym_heading] = STATE(1019), [sym_list] = STATE(1019), - [sym__list_dash] = STATE(1007), - [sym__list_item_dash] = STATE(595), - [sym__list_plus] = STATE(1007), - [sym__list_item_plus] = STATE(657), - [sym__list_star] = STATE(1007), - [sym__list_item_star] = STATE(570), - [sym__list_task] = STATE(1007), - [sym__list_item_task] = STATE(586), - [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(1007), - [sym__list_item_definition] = STATE(694), - [sym__list_decimal_period] = STATE(1007), - [sym__list_item_decimal_period] = STATE(714), - [sym__list_decimal_paren] = STATE(1007), - [sym__list_item_decimal_paren] = STATE(719), - [sym__list_decimal_parens] = STATE(1007), - [sym__list_item_decimal_parens] = STATE(746), - [sym__list_lower_alpha_period] = STATE(1007), - [sym__list_item_lower_alpha_period] = STATE(748), - [sym__list_lower_alpha_paren] = STATE(1007), - [sym__list_item_lower_alpha_paren] = STATE(749), - [sym__list_lower_alpha_parens] = STATE(1007), - [sym__list_item_lower_alpha_parens] = STATE(753), - [sym__list_upper_alpha_period] = STATE(1007), - [sym__list_item_upper_alpha_period] = STATE(761), - [sym__list_upper_alpha_paren] = STATE(1007), - [sym__list_item_upper_alpha_paren] = STATE(764), - [sym__list_upper_alpha_parens] = STATE(1007), - [sym__list_item_upper_alpha_parens] = STATE(765), - [sym__list_lower_roman_period] = STATE(1007), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(1007), - [sym__list_item_lower_roman_paren] = STATE(769), - [sym__list_lower_roman_parens] = STATE(1007), - [sym__list_item_lower_roman_parens] = STATE(786), - [sym__list_upper_roman_period] = STATE(1007), - [sym__list_item_upper_roman_period] = STATE(791), - [sym__list_upper_roman_paren] = STATE(1007), - [sym__list_item_upper_roman_paren] = STATE(793), - [sym__list_upper_roman_parens] = STATE(1007), - [sym__list_item_upper_roman_parens] = STATE(799), - [sym_list_item_content] = STATE(572), + [sym__list_dash] = STATE(1004), + [sym__list_item_dash] = STATE(599), + [sym__list_plus] = STATE(1004), + [sym__list_item_plus] = STATE(606), + [sym__list_star] = STATE(1004), + [sym__list_item_star] = STATE(664), + [sym__list_task] = STATE(1004), + [sym__list_item_task] = STATE(673), + [sym_list_marker_task] = STATE(44), + [sym__list_definition] = STATE(1004), + [sym__list_item_definition] = STATE(792), + [sym__list_decimal_period] = STATE(1004), + [sym__list_item_decimal_period] = STATE(691), + [sym__list_decimal_paren] = STATE(1004), + [sym__list_item_decimal_paren] = STATE(692), + [sym__list_decimal_parens] = STATE(1004), + [sym__list_item_decimal_parens] = STATE(710), + [sym__list_lower_alpha_period] = STATE(1004), + [sym__list_item_lower_alpha_period] = STATE(714), + [sym__list_lower_alpha_paren] = STATE(1004), + [sym__list_item_lower_alpha_paren] = STATE(717), + [sym__list_lower_alpha_parens] = STATE(1004), + [sym__list_item_lower_alpha_parens] = STATE(721), + [sym__list_upper_alpha_period] = STATE(1004), + [sym__list_item_upper_alpha_period] = STATE(726), + [sym__list_upper_alpha_paren] = STATE(1004), + [sym__list_item_upper_alpha_paren] = STATE(747), + [sym__list_upper_alpha_parens] = STATE(1004), + [sym__list_item_upper_alpha_parens] = STATE(751), + [sym__list_lower_roman_period] = STATE(1004), + [sym__list_item_lower_roman_period] = STATE(753), + [sym__list_lower_roman_paren] = STATE(1004), + [sym__list_item_lower_roman_paren] = STATE(755), + [sym__list_lower_roman_parens] = STATE(1004), + [sym__list_item_lower_roman_parens] = STATE(760), + [sym__list_upper_roman_period] = STATE(1004), + [sym__list_item_upper_roman_period] = STATE(761), + [sym__list_upper_roman_paren] = STATE(1004), + [sym__list_item_upper_roman_paren] = STATE(766), + [sym__list_upper_roman_parens] = STATE(1004), + [sym__list_item_upper_roman_parens] = STATE(784), + [sym_list_item_content] = STATE(666), [sym_table] = STATE(1019), - [sym__table_row] = STATE(234), - [sym_table_header] = STATE(234), - [sym_table_separator] = STATE(234), - [sym_table_row] = STATE(234), + [sym__table_row] = STATE(232), + [sym_table_header] = STATE(232), + [sym_table_separator] = STATE(232), + [sym_table_row] = STATE(232), [sym_footnote] = STATE(1019), [sym_footnote_marker_begin] = STATE(1135), [sym_div] = STATE(1019), @@ -10991,18 +11007,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_block] = STATE(1019), [sym_thematic_break] = STATE(1019), [sym_block_quote] = STATE(1019), - [sym__block_quote_prefix] = STATE(225), + [sym__block_quote_prefix] = STATE(222), [sym_link_reference_definition] = STATE(1019), [sym_block_attribute] = STATE(1019), [sym__paragraph] = STATE(1019), - [sym__paragraph_content] = STATE(690), - [sym__paragraph_inline_content] = STATE(824), - [sym__inline] = STATE(654), - [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(316), - [aux_sym__list_plus_repeat1] = STATE(336), - [aux_sym__list_star_repeat1] = STATE(318), - [aux_sym__list_task_repeat1] = STATE(288), + [sym__paragraph_content] = STATE(689), + [sym__paragraph_inline_content] = STATE(814), + [sym__inline] = STATE(657), + [sym__symbol_fallback] = STATE(271), + [aux_sym__list_dash_repeat1] = STATE(341), + [aux_sym__list_plus_repeat1] = STATE(342), + [aux_sym__list_star_repeat1] = STATE(343), + [aux_sym__list_task_repeat1] = STATE(314), [aux_sym__list_definition_repeat1] = STATE(456), [aux_sym__list_decimal_period_repeat1] = STATE(457), [aux_sym__list_decimal_paren_repeat1] = STATE(458), @@ -11019,9 +11035,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_upper_roman_period_repeat1] = STATE(469), [aux_sym__list_upper_roman_paren_repeat1] = STATE(470), [aux_sym__list_upper_roman_parens_repeat1] = STATE(471), - [aux_sym_table_repeat1] = STATE(234), - [aux_sym__block_quote_prefix_repeat1] = STATE(230), - [aux_sym__inline_repeat1] = STATE(273), + [aux_sym_table_repeat1] = STATE(232), + [aux_sym__block_quote_prefix_repeat1] = STATE(231), + [aux_sym__inline_repeat1] = STATE(271), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_DOT] = ACTIONS(9), @@ -11029,7 +11045,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_token1] = ACTIONS(9), [anon_sym_LBRACE] = ACTIONS(9), [anon_sym_PERCENT] = ACTIONS(9), - [sym__newline] = ACTIONS(392), + [sym__newline] = ACTIONS(366), [sym__heading_begin] = ACTIONS(368), [sym__div_begin] = ACTIONS(17), [sym__code_block_begin] = ACTIONS(370), @@ -11063,106 +11079,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block_attribute_begin] = ACTIONS(384), }, [50] = { - [sym__block_with_heading] = STATE(631), - [sym__block_element] = STATE(631), - [sym_heading] = STATE(631), - [sym_list] = STATE(631), - [sym__list_dash] = STATE(598), - [sym__list_item_dash] = STATE(595), - [sym__list_plus] = STATE(598), - [sym__list_item_plus] = STATE(657), - [sym__list_star] = STATE(598), - [sym__list_item_star] = STATE(570), - [sym__list_task] = STATE(598), - [sym__list_item_task] = STATE(586), - [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(598), - [sym__list_item_definition] = STATE(694), - [sym__list_decimal_period] = STATE(598), - [sym__list_item_decimal_period] = STATE(714), - [sym__list_decimal_paren] = STATE(598), - [sym__list_item_decimal_paren] = STATE(719), - [sym__list_decimal_parens] = STATE(598), - [sym__list_item_decimal_parens] = STATE(746), - [sym__list_lower_alpha_period] = STATE(598), - [sym__list_item_lower_alpha_period] = STATE(748), - [sym__list_lower_alpha_paren] = STATE(598), - [sym__list_item_lower_alpha_paren] = STATE(749), - [sym__list_lower_alpha_parens] = STATE(598), - [sym__list_item_lower_alpha_parens] = STATE(753), - [sym__list_upper_alpha_period] = STATE(598), - [sym__list_item_upper_alpha_period] = STATE(761), - [sym__list_upper_alpha_paren] = STATE(598), - [sym__list_item_upper_alpha_paren] = STATE(764), - [sym__list_upper_alpha_parens] = STATE(598), - [sym__list_item_upper_alpha_parens] = STATE(765), - [sym__list_lower_roman_period] = STATE(598), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(598), - [sym__list_item_lower_roman_paren] = STATE(769), - [sym__list_lower_roman_parens] = STATE(598), - [sym__list_item_lower_roman_parens] = STATE(786), - [sym__list_upper_roman_period] = STATE(598), - [sym__list_item_upper_roman_period] = STATE(791), - [sym__list_upper_roman_paren] = STATE(598), - [sym__list_item_upper_roman_paren] = STATE(793), - [sym__list_upper_roman_parens] = STATE(598), - [sym__list_item_upper_roman_parens] = STATE(799), - [sym_table] = STATE(631), - [sym__table_row] = STATE(229), - [sym_table_header] = STATE(229), - [sym_table_separator] = STATE(229), - [sym_table_row] = STATE(229), - [sym_footnote] = STATE(631), - [sym_footnote_marker_begin] = STATE(894), - [sym_div] = STATE(631), - [sym__div_marker_begin] = STATE(1073), - [sym_code_block] = STATE(631), - [sym_raw_block] = STATE(631), - [sym_thematic_break] = STATE(631), - [sym_block_quote] = STATE(631), - [sym__block_quote_prefix] = STATE(224), - [sym_link_reference_definition] = STATE(631), - [sym_block_attribute] = STATE(631), - [sym__paragraph] = STATE(631), - [sym__paragraph_content] = STATE(800), - [sym__paragraph_inline_content] = STATE(824), - [sym__inline] = STATE(654), - [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(333), - [aux_sym__list_plus_repeat1] = STATE(334), - [aux_sym__list_star_repeat1] = STATE(335), - [aux_sym__list_task_repeat1] = STATE(304), - [aux_sym__list_definition_repeat1] = STATE(507), - [aux_sym__list_decimal_period_repeat1] = STATE(508), - [aux_sym__list_decimal_paren_repeat1] = STATE(509), - [aux_sym__list_decimal_parens_repeat1] = STATE(510), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(511), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(512), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(513), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(514), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(515), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(516), - [aux_sym__list_lower_roman_period_repeat1] = STATE(517), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(518), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(519), - [aux_sym__list_upper_roman_period_repeat1] = STATE(520), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(521), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(522), - [aux_sym_table_repeat1] = STATE(229), - [aux_sym__block_quote_prefix_repeat1] = STATE(230), - [aux_sym__inline_repeat1] = STATE(273), - [anon_sym_LBRACK] = ACTIONS(432), + [sym__block_with_heading] = STATE(926), + [sym__block_element] = STATE(926), + [sym_heading] = STATE(926), + [sym_list] = STATE(926), + [sym__list_dash] = STATE(1004), + [sym__list_item_dash] = STATE(599), + [sym__list_plus] = STATE(1004), + [sym__list_item_plus] = STATE(606), + [sym__list_star] = STATE(1004), + [sym__list_item_star] = STATE(664), + [sym__list_task] = STATE(1004), + [sym__list_item_task] = STATE(673), + [sym_list_marker_task] = STATE(44), + [sym__list_definition] = STATE(1004), + [sym__list_item_definition] = STATE(792), + [sym__list_decimal_period] = STATE(1004), + [sym__list_item_decimal_period] = STATE(691), + [sym__list_decimal_paren] = STATE(1004), + [sym__list_item_decimal_paren] = STATE(692), + [sym__list_decimal_parens] = STATE(1004), + [sym__list_item_decimal_parens] = STATE(710), + [sym__list_lower_alpha_period] = STATE(1004), + [sym__list_item_lower_alpha_period] = STATE(714), + [sym__list_lower_alpha_paren] = STATE(1004), + [sym__list_item_lower_alpha_paren] = STATE(717), + [sym__list_lower_alpha_parens] = STATE(1004), + [sym__list_item_lower_alpha_parens] = STATE(721), + [sym__list_upper_alpha_period] = STATE(1004), + [sym__list_item_upper_alpha_period] = STATE(726), + [sym__list_upper_alpha_paren] = STATE(1004), + [sym__list_item_upper_alpha_paren] = STATE(747), + [sym__list_upper_alpha_parens] = STATE(1004), + [sym__list_item_upper_alpha_parens] = STATE(751), + [sym__list_lower_roman_period] = STATE(1004), + [sym__list_item_lower_roman_period] = STATE(753), + [sym__list_lower_roman_paren] = STATE(1004), + [sym__list_item_lower_roman_paren] = STATE(755), + [sym__list_lower_roman_parens] = STATE(1004), + [sym__list_item_lower_roman_parens] = STATE(760), + [sym__list_upper_roman_period] = STATE(1004), + [sym__list_item_upper_roman_period] = STATE(761), + [sym__list_upper_roman_paren] = STATE(1004), + [sym__list_item_upper_roman_paren] = STATE(766), + [sym__list_upper_roman_parens] = STATE(1004), + [sym__list_item_upper_roman_parens] = STATE(784), + [sym_table] = STATE(926), + [sym__table_row] = STATE(232), + [sym_table_header] = STATE(232), + [sym_table_separator] = STATE(232), + [sym_table_row] = STATE(232), + [sym_footnote] = STATE(926), + [sym_footnote_marker_begin] = STATE(1135), + [sym_div] = STATE(926), + [sym__div_marker_begin] = STATE(1017), + [sym_code_block] = STATE(926), + [sym_raw_block] = STATE(926), + [sym_thematic_break] = STATE(926), + [sym_block_quote] = STATE(926), + [sym__block_quote_prefix] = STATE(222), + [sym_link_reference_definition] = STATE(926), + [sym_block_attribute] = STATE(926), + [sym__paragraph] = STATE(926), + [sym__paragraph_content] = STATE(689), + [sym__paragraph_inline_content] = STATE(814), + [sym__inline] = STATE(657), + [sym__symbol_fallback] = STATE(271), + [aux_sym__list_dash_repeat1] = STATE(341), + [aux_sym__list_plus_repeat1] = STATE(342), + [aux_sym__list_star_repeat1] = STATE(343), + [aux_sym__list_task_repeat1] = STATE(314), + [aux_sym__list_definition_repeat1] = STATE(456), + [aux_sym__list_decimal_period_repeat1] = STATE(457), + [aux_sym__list_decimal_paren_repeat1] = STATE(458), + [aux_sym__list_decimal_parens_repeat1] = STATE(459), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(460), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(461), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(462), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(463), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(464), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(465), + [aux_sym__list_lower_roman_period_repeat1] = STATE(466), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(467), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(468), + [aux_sym__list_upper_roman_period_repeat1] = STATE(469), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(470), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(471), + [aux_sym_table_repeat1] = STATE(232), + [aux_sym__block_quote_prefix_repeat1] = STATE(231), + [aux_sym__inline_repeat1] = STATE(271), + [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_DOT] = ACTIONS(9), [aux_sym_identifier_token1] = ACTIONS(9), [aux_sym__inline_token1] = ACTIONS(9), [anon_sym_LBRACE] = ACTIONS(9), [anon_sym_PERCENT] = ACTIONS(9), - [sym__newline] = ACTIONS(434), - [sym__heading_begin] = ACTIONS(436), + [sym__newline] = ACTIONS(432), + [sym__heading_begin] = ACTIONS(368), [sym__div_begin] = ACTIONS(17), - [sym__code_block_begin] = ACTIONS(438), + [sym__code_block_begin] = ACTIONS(370), [sym_list_marker_dash] = ACTIONS(21), [sym_list_marker_star] = ACTIONS(23), [sym_list_marker_plus] = ACTIONS(25), @@ -11183,116 +11199,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(55), [sym_list_marker_lower_roman_parens] = ACTIONS(57), [sym_list_marker_upper_roman_parens] = ACTIONS(59), - [sym__block_quote_begin] = ACTIONS(440), - [sym__block_quote_continuation] = ACTIONS(442), - [sym__thematic_break_dash] = ACTIONS(444), - [sym__thematic_break_star] = ACTIONS(444), - [sym__table_header_begin] = ACTIONS(446), - [sym__table_separator_begin] = ACTIONS(448), - [sym__table_row_begin] = ACTIONS(450), - [sym__block_attribute_begin] = ACTIONS(452), + [sym__block_quote_begin] = ACTIONS(372), + [sym__block_quote_continuation] = ACTIONS(374), + [sym__thematic_break_dash] = ACTIONS(376), + [sym__thematic_break_star] = ACTIONS(376), + [sym__table_header_begin] = ACTIONS(378), + [sym__table_separator_begin] = ACTIONS(380), + [sym__table_row_begin] = ACTIONS(382), + [sym__block_attribute_begin] = ACTIONS(384), }, [51] = { - [sym__block_with_heading] = STATE(607), - [sym__block_element] = STATE(607), - [sym_heading] = STATE(607), - [sym_list] = STATE(607), - [sym__list_dash] = STATE(598), - [sym__list_item_dash] = STATE(595), - [sym__list_plus] = STATE(598), - [sym__list_item_plus] = STATE(657), - [sym__list_star] = STATE(598), - [sym__list_item_star] = STATE(570), - [sym__list_task] = STATE(598), - [sym__list_item_task] = STATE(586), - [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(598), - [sym__list_item_definition] = STATE(694), - [sym__list_decimal_period] = STATE(598), - [sym__list_item_decimal_period] = STATE(714), - [sym__list_decimal_paren] = STATE(598), - [sym__list_item_decimal_paren] = STATE(719), - [sym__list_decimal_parens] = STATE(598), - [sym__list_item_decimal_parens] = STATE(746), - [sym__list_lower_alpha_period] = STATE(598), - [sym__list_item_lower_alpha_period] = STATE(748), - [sym__list_lower_alpha_paren] = STATE(598), - [sym__list_item_lower_alpha_paren] = STATE(749), - [sym__list_lower_alpha_parens] = STATE(598), - [sym__list_item_lower_alpha_parens] = STATE(753), - [sym__list_upper_alpha_period] = STATE(598), - [sym__list_item_upper_alpha_period] = STATE(761), - [sym__list_upper_alpha_paren] = STATE(598), - [sym__list_item_upper_alpha_paren] = STATE(764), - [sym__list_upper_alpha_parens] = STATE(598), - [sym__list_item_upper_alpha_parens] = STATE(765), - [sym__list_lower_roman_period] = STATE(598), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(598), - [sym__list_item_lower_roman_paren] = STATE(769), - [sym__list_lower_roman_parens] = STATE(598), - [sym__list_item_lower_roman_parens] = STATE(786), - [sym__list_upper_roman_period] = STATE(598), - [sym__list_item_upper_roman_period] = STATE(791), - [sym__list_upper_roman_paren] = STATE(598), - [sym__list_item_upper_roman_paren] = STATE(793), - [sym__list_upper_roman_parens] = STATE(598), - [sym__list_item_upper_roman_parens] = STATE(799), - [sym_table] = STATE(607), - [sym__table_row] = STATE(229), - [sym_table_header] = STATE(229), - [sym_table_separator] = STATE(229), - [sym_table_row] = STATE(229), - [sym_footnote] = STATE(607), - [sym_footnote_marker_begin] = STATE(894), - [sym_div] = STATE(607), + [sym__block_with_heading] = STATE(653), + [sym__block_element] = STATE(653), + [sym_heading] = STATE(653), + [sym_list] = STATE(653), + [sym__list_dash] = STATE(557), + [sym__list_item_dash] = STATE(599), + [sym__list_plus] = STATE(557), + [sym__list_item_plus] = STATE(606), + [sym__list_star] = STATE(557), + [sym__list_item_star] = STATE(664), + [sym__list_task] = STATE(557), + [sym__list_item_task] = STATE(673), + [sym_list_marker_task] = STATE(44), + [sym__list_definition] = STATE(557), + [sym__list_item_definition] = STATE(792), + [sym__list_decimal_period] = STATE(557), + [sym__list_item_decimal_period] = STATE(691), + [sym__list_decimal_paren] = STATE(557), + [sym__list_item_decimal_paren] = STATE(692), + [sym__list_decimal_parens] = STATE(557), + [sym__list_item_decimal_parens] = STATE(710), + [sym__list_lower_alpha_period] = STATE(557), + [sym__list_item_lower_alpha_period] = STATE(714), + [sym__list_lower_alpha_paren] = STATE(557), + [sym__list_item_lower_alpha_paren] = STATE(717), + [sym__list_lower_alpha_parens] = STATE(557), + [sym__list_item_lower_alpha_parens] = STATE(721), + [sym__list_upper_alpha_period] = STATE(557), + [sym__list_item_upper_alpha_period] = STATE(726), + [sym__list_upper_alpha_paren] = STATE(557), + [sym__list_item_upper_alpha_paren] = STATE(747), + [sym__list_upper_alpha_parens] = STATE(557), + [sym__list_item_upper_alpha_parens] = STATE(751), + [sym__list_lower_roman_period] = STATE(557), + [sym__list_item_lower_roman_period] = STATE(753), + [sym__list_lower_roman_paren] = STATE(557), + [sym__list_item_lower_roman_paren] = STATE(755), + [sym__list_lower_roman_parens] = STATE(557), + [sym__list_item_lower_roman_parens] = STATE(760), + [sym__list_upper_roman_period] = STATE(557), + [sym__list_item_upper_roman_period] = STATE(761), + [sym__list_upper_roman_paren] = STATE(557), + [sym__list_item_upper_roman_paren] = STATE(766), + [sym__list_upper_roman_parens] = STATE(557), + [sym__list_item_upper_roman_parens] = STATE(784), + [sym_table] = STATE(653), + [sym__table_row] = STATE(228), + [sym_table_header] = STATE(228), + [sym_table_separator] = STATE(228), + [sym_table_row] = STATE(228), + [sym_footnote] = STATE(653), + [sym_footnote_marker_begin] = STATE(1141), + [sym_div] = STATE(653), [sym__div_marker_begin] = STATE(1073), - [sym_code_block] = STATE(607), - [sym_raw_block] = STATE(607), - [sym_thematic_break] = STATE(607), - [sym_block_quote] = STATE(607), + [sym_code_block] = STATE(653), + [sym_raw_block] = STATE(653), + [sym_thematic_break] = STATE(653), + [sym_block_quote] = STATE(653), [sym__block_quote_prefix] = STATE(224), - [sym_link_reference_definition] = STATE(607), - [sym_block_attribute] = STATE(607), - [sym__paragraph] = STATE(607), - [sym__paragraph_content] = STATE(800), - [sym__paragraph_inline_content] = STATE(824), - [sym__inline] = STATE(654), - [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(333), - [aux_sym__list_plus_repeat1] = STATE(334), - [aux_sym__list_star_repeat1] = STATE(335), - [aux_sym__list_task_repeat1] = STATE(304), - [aux_sym__list_definition_repeat1] = STATE(507), - [aux_sym__list_decimal_period_repeat1] = STATE(508), - [aux_sym__list_decimal_paren_repeat1] = STATE(509), - [aux_sym__list_decimal_parens_repeat1] = STATE(510), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(511), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(512), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(513), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(514), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(515), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(516), - [aux_sym__list_lower_roman_period_repeat1] = STATE(517), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(518), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(519), - [aux_sym__list_upper_roman_period_repeat1] = STATE(520), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(521), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(522), - [aux_sym_table_repeat1] = STATE(229), - [aux_sym__block_quote_prefix_repeat1] = STATE(230), - [aux_sym__inline_repeat1] = STATE(273), - [anon_sym_LBRACK] = ACTIONS(432), + [sym_link_reference_definition] = STATE(653), + [sym_block_attribute] = STATE(653), + [sym__paragraph] = STATE(653), + [sym__paragraph_content] = STATE(796), + [sym__paragraph_inline_content] = STATE(814), + [sym__inline] = STATE(657), + [sym__symbol_fallback] = STATE(271), + [aux_sym__list_dash_repeat1] = STATE(338), + [aux_sym__list_plus_repeat1] = STATE(339), + [aux_sym__list_star_repeat1] = STATE(340), + [aux_sym__list_task_repeat1] = STATE(296), + [aux_sym__list_definition_repeat1] = STATE(505), + [aux_sym__list_decimal_period_repeat1] = STATE(506), + [aux_sym__list_decimal_paren_repeat1] = STATE(507), + [aux_sym__list_decimal_parens_repeat1] = STATE(508), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(509), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(510), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(511), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(512), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(513), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(514), + [aux_sym__list_lower_roman_period_repeat1] = STATE(515), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(516), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(517), + [aux_sym__list_upper_roman_period_repeat1] = STATE(518), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(519), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(520), + [aux_sym_table_repeat1] = STATE(228), + [aux_sym__block_quote_prefix_repeat1] = STATE(231), + [aux_sym__inline_repeat1] = STATE(271), + [anon_sym_LBRACK] = ACTIONS(434), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_DOT] = ACTIONS(9), [aux_sym_identifier_token1] = ACTIONS(9), [aux_sym__inline_token1] = ACTIONS(9), [anon_sym_LBRACE] = ACTIONS(9), [anon_sym_PERCENT] = ACTIONS(9), - [sym__newline] = ACTIONS(454), - [sym__heading_begin] = ACTIONS(436), + [sym__newline] = ACTIONS(436), + [sym__heading_begin] = ACTIONS(438), [sym__div_begin] = ACTIONS(17), - [sym__code_block_begin] = ACTIONS(438), + [sym__code_block_begin] = ACTIONS(440), [sym_list_marker_dash] = ACTIONS(21), [sym_list_marker_star] = ACTIONS(23), [sym_list_marker_plus] = ACTIONS(25), @@ -11313,86 +11329,216 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(55), [sym_list_marker_lower_roman_parens] = ACTIONS(57), [sym_list_marker_upper_roman_parens] = ACTIONS(59), - [sym__block_quote_begin] = ACTIONS(440), - [sym__block_quote_continuation] = ACTIONS(442), - [sym__thematic_break_dash] = ACTIONS(444), - [sym__thematic_break_star] = ACTIONS(444), - [sym__table_header_begin] = ACTIONS(446), - [sym__table_separator_begin] = ACTIONS(448), - [sym__table_row_begin] = ACTIONS(450), - [sym__block_attribute_begin] = ACTIONS(452), + [sym__block_quote_begin] = ACTIONS(442), + [sym__block_quote_continuation] = ACTIONS(444), + [sym__thematic_break_dash] = ACTIONS(446), + [sym__thematic_break_star] = ACTIONS(446), + [sym__table_header_begin] = ACTIONS(448), + [sym__table_separator_begin] = ACTIONS(450), + [sym__table_row_begin] = ACTIONS(452), + [sym__block_attribute_begin] = ACTIONS(454), }, [52] = { - [sym__block_with_heading] = STATE(997), - [sym__block_element] = STATE(997), - [sym_heading] = STATE(997), - [sym_list] = STATE(997), - [sym__list_dash] = STATE(1007), - [sym__list_item_dash] = STATE(595), - [sym__list_plus] = STATE(1007), - [sym__list_item_plus] = STATE(657), - [sym__list_star] = STATE(1007), - [sym__list_item_star] = STATE(570), - [sym__list_task] = STATE(1007), - [sym__list_item_task] = STATE(586), - [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(1007), - [sym__list_item_definition] = STATE(694), - [sym__list_decimal_period] = STATE(1007), - [sym__list_item_decimal_period] = STATE(714), - [sym__list_decimal_paren] = STATE(1007), - [sym__list_item_decimal_paren] = STATE(719), - [sym__list_decimal_parens] = STATE(1007), - [sym__list_item_decimal_parens] = STATE(746), - [sym__list_lower_alpha_period] = STATE(1007), - [sym__list_item_lower_alpha_period] = STATE(748), - [sym__list_lower_alpha_paren] = STATE(1007), - [sym__list_item_lower_alpha_paren] = STATE(749), - [sym__list_lower_alpha_parens] = STATE(1007), - [sym__list_item_lower_alpha_parens] = STATE(753), - [sym__list_upper_alpha_period] = STATE(1007), - [sym__list_item_upper_alpha_period] = STATE(761), - [sym__list_upper_alpha_paren] = STATE(1007), - [sym__list_item_upper_alpha_paren] = STATE(764), - [sym__list_upper_alpha_parens] = STATE(1007), - [sym__list_item_upper_alpha_parens] = STATE(765), - [sym__list_lower_roman_period] = STATE(1007), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(1007), - [sym__list_item_lower_roman_paren] = STATE(769), - [sym__list_lower_roman_parens] = STATE(1007), - [sym__list_item_lower_roman_parens] = STATE(786), - [sym__list_upper_roman_period] = STATE(1007), - [sym__list_item_upper_roman_period] = STATE(791), - [sym__list_upper_roman_paren] = STATE(1007), - [sym__list_item_upper_roman_paren] = STATE(793), - [sym__list_upper_roman_parens] = STATE(1007), - [sym__list_item_upper_roman_parens] = STATE(799), - [sym_table] = STATE(997), - [sym__table_row] = STATE(234), - [sym_table_header] = STATE(234), - [sym_table_separator] = STATE(234), - [sym_table_row] = STATE(234), - [sym_footnote] = STATE(997), + [sym__block_with_heading] = STATE(631), + [sym__block_element] = STATE(631), + [sym_heading] = STATE(631), + [sym_list] = STATE(631), + [sym__list_dash] = STATE(557), + [sym__list_item_dash] = STATE(599), + [sym__list_plus] = STATE(557), + [sym__list_item_plus] = STATE(606), + [sym__list_star] = STATE(557), + [sym__list_item_star] = STATE(664), + [sym__list_task] = STATE(557), + [sym__list_item_task] = STATE(673), + [sym_list_marker_task] = STATE(44), + [sym__list_definition] = STATE(557), + [sym__list_item_definition] = STATE(792), + [sym__list_decimal_period] = STATE(557), + [sym__list_item_decimal_period] = STATE(691), + [sym__list_decimal_paren] = STATE(557), + [sym__list_item_decimal_paren] = STATE(692), + [sym__list_decimal_parens] = STATE(557), + [sym__list_item_decimal_parens] = STATE(710), + [sym__list_lower_alpha_period] = STATE(557), + [sym__list_item_lower_alpha_period] = STATE(714), + [sym__list_lower_alpha_paren] = STATE(557), + [sym__list_item_lower_alpha_paren] = STATE(717), + [sym__list_lower_alpha_parens] = STATE(557), + [sym__list_item_lower_alpha_parens] = STATE(721), + [sym__list_upper_alpha_period] = STATE(557), + [sym__list_item_upper_alpha_period] = STATE(726), + [sym__list_upper_alpha_paren] = STATE(557), + [sym__list_item_upper_alpha_paren] = STATE(747), + [sym__list_upper_alpha_parens] = STATE(557), + [sym__list_item_upper_alpha_parens] = STATE(751), + [sym__list_lower_roman_period] = STATE(557), + [sym__list_item_lower_roman_period] = STATE(753), + [sym__list_lower_roman_paren] = STATE(557), + [sym__list_item_lower_roman_paren] = STATE(755), + [sym__list_lower_roman_parens] = STATE(557), + [sym__list_item_lower_roman_parens] = STATE(760), + [sym__list_upper_roman_period] = STATE(557), + [sym__list_item_upper_roman_period] = STATE(761), + [sym__list_upper_roman_paren] = STATE(557), + [sym__list_item_upper_roman_paren] = STATE(766), + [sym__list_upper_roman_parens] = STATE(557), + [sym__list_item_upper_roman_parens] = STATE(784), + [sym_table] = STATE(631), + [sym__table_row] = STATE(228), + [sym_table_header] = STATE(228), + [sym_table_separator] = STATE(228), + [sym_table_row] = STATE(228), + [sym_footnote] = STATE(631), + [sym_footnote_marker_begin] = STATE(1141), + [sym_div] = STATE(631), + [sym__div_marker_begin] = STATE(1073), + [sym_code_block] = STATE(631), + [sym_raw_block] = STATE(631), + [sym_thematic_break] = STATE(631), + [sym_block_quote] = STATE(631), + [sym__block_quote_prefix] = STATE(224), + [sym_link_reference_definition] = STATE(631), + [sym_block_attribute] = STATE(631), + [sym__paragraph] = STATE(631), + [sym__paragraph_content] = STATE(796), + [sym__paragraph_inline_content] = STATE(814), + [sym__inline] = STATE(657), + [sym__symbol_fallback] = STATE(271), + [aux_sym__list_dash_repeat1] = STATE(338), + [aux_sym__list_plus_repeat1] = STATE(339), + [aux_sym__list_star_repeat1] = STATE(340), + [aux_sym__list_task_repeat1] = STATE(296), + [aux_sym__list_definition_repeat1] = STATE(505), + [aux_sym__list_decimal_period_repeat1] = STATE(506), + [aux_sym__list_decimal_paren_repeat1] = STATE(507), + [aux_sym__list_decimal_parens_repeat1] = STATE(508), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(509), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(510), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(511), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(512), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(513), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(514), + [aux_sym__list_lower_roman_period_repeat1] = STATE(515), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(516), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(517), + [aux_sym__list_upper_roman_period_repeat1] = STATE(518), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(519), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(520), + [aux_sym_table_repeat1] = STATE(228), + [aux_sym__block_quote_prefix_repeat1] = STATE(231), + [aux_sym__inline_repeat1] = STATE(271), + [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_LBRACK_CARET] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(9), + [aux_sym_identifier_token1] = ACTIONS(9), + [aux_sym__inline_token1] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(9), + [anon_sym_PERCENT] = ACTIONS(9), + [sym__newline] = ACTIONS(456), + [sym__heading_begin] = ACTIONS(438), + [sym__div_begin] = ACTIONS(17), + [sym__code_block_begin] = ACTIONS(440), + [sym_list_marker_dash] = ACTIONS(21), + [sym_list_marker_star] = ACTIONS(23), + [sym_list_marker_plus] = ACTIONS(25), + [sym__list_marker_task_begin] = ACTIONS(27), + [sym_list_marker_definition] = ACTIONS(29), + [sym_list_marker_decimal_period] = ACTIONS(31), + [sym_list_marker_lower_alpha_period] = ACTIONS(33), + [sym_list_marker_upper_alpha_period] = ACTIONS(35), + [sym_list_marker_lower_roman_period] = ACTIONS(37), + [sym_list_marker_upper_roman_period] = ACTIONS(39), + [sym_list_marker_decimal_paren] = ACTIONS(41), + [sym_list_marker_lower_alpha_paren] = ACTIONS(43), + [sym_list_marker_upper_alpha_paren] = ACTIONS(45), + [sym_list_marker_lower_roman_paren] = ACTIONS(47), + [sym_list_marker_upper_roman_paren] = ACTIONS(49), + [sym_list_marker_decimal_parens] = ACTIONS(51), + [sym_list_marker_lower_alpha_parens] = ACTIONS(53), + [sym_list_marker_upper_alpha_parens] = ACTIONS(55), + [sym_list_marker_lower_roman_parens] = ACTIONS(57), + [sym_list_marker_upper_roman_parens] = ACTIONS(59), + [sym__block_quote_begin] = ACTIONS(442), + [sym__block_quote_continuation] = ACTIONS(444), + [sym__thematic_break_dash] = ACTIONS(446), + [sym__thematic_break_star] = ACTIONS(446), + [sym__table_header_begin] = ACTIONS(448), + [sym__table_separator_begin] = ACTIONS(450), + [sym__table_row_begin] = ACTIONS(452), + [sym__block_attribute_begin] = ACTIONS(454), + }, + [53] = { + [sym__block_with_heading] = STATE(994), + [sym__block_element] = STATE(994), + [sym_heading] = STATE(994), + [sym_list] = STATE(994), + [sym__list_dash] = STATE(1004), + [sym__list_item_dash] = STATE(599), + [sym__list_plus] = STATE(1004), + [sym__list_item_plus] = STATE(606), + [sym__list_star] = STATE(1004), + [sym__list_item_star] = STATE(664), + [sym__list_task] = STATE(1004), + [sym__list_item_task] = STATE(673), + [sym_list_marker_task] = STATE(44), + [sym__list_definition] = STATE(1004), + [sym__list_item_definition] = STATE(792), + [sym__list_decimal_period] = STATE(1004), + [sym__list_item_decimal_period] = STATE(691), + [sym__list_decimal_paren] = STATE(1004), + [sym__list_item_decimal_paren] = STATE(692), + [sym__list_decimal_parens] = STATE(1004), + [sym__list_item_decimal_parens] = STATE(710), + [sym__list_lower_alpha_period] = STATE(1004), + [sym__list_item_lower_alpha_period] = STATE(714), + [sym__list_lower_alpha_paren] = STATE(1004), + [sym__list_item_lower_alpha_paren] = STATE(717), + [sym__list_lower_alpha_parens] = STATE(1004), + [sym__list_item_lower_alpha_parens] = STATE(721), + [sym__list_upper_alpha_period] = STATE(1004), + [sym__list_item_upper_alpha_period] = STATE(726), + [sym__list_upper_alpha_paren] = STATE(1004), + [sym__list_item_upper_alpha_paren] = STATE(747), + [sym__list_upper_alpha_parens] = STATE(1004), + [sym__list_item_upper_alpha_parens] = STATE(751), + [sym__list_lower_roman_period] = STATE(1004), + [sym__list_item_lower_roman_period] = STATE(753), + [sym__list_lower_roman_paren] = STATE(1004), + [sym__list_item_lower_roman_paren] = STATE(755), + [sym__list_lower_roman_parens] = STATE(1004), + [sym__list_item_lower_roman_parens] = STATE(760), + [sym__list_upper_roman_period] = STATE(1004), + [sym__list_item_upper_roman_period] = STATE(761), + [sym__list_upper_roman_paren] = STATE(1004), + [sym__list_item_upper_roman_paren] = STATE(766), + [sym__list_upper_roman_parens] = STATE(1004), + [sym__list_item_upper_roman_parens] = STATE(784), + [sym_table] = STATE(994), + [sym__table_row] = STATE(232), + [sym_table_header] = STATE(232), + [sym_table_separator] = STATE(232), + [sym_table_row] = STATE(232), + [sym_footnote] = STATE(994), [sym_footnote_marker_begin] = STATE(1135), - [sym_div] = STATE(997), + [sym_div] = STATE(994), [sym__div_marker_begin] = STATE(1017), - [sym_code_block] = STATE(997), - [sym_raw_block] = STATE(997), - [sym_thematic_break] = STATE(997), - [sym_block_quote] = STATE(997), - [sym__block_quote_prefix] = STATE(225), - [sym_link_reference_definition] = STATE(997), - [sym_block_attribute] = STATE(997), - [sym__paragraph] = STATE(997), - [sym__paragraph_content] = STATE(690), - [sym__paragraph_inline_content] = STATE(824), - [sym__inline] = STATE(654), - [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(316), - [aux_sym__list_plus_repeat1] = STATE(336), - [aux_sym__list_star_repeat1] = STATE(318), - [aux_sym__list_task_repeat1] = STATE(288), + [sym_code_block] = STATE(994), + [sym_raw_block] = STATE(994), + [sym_thematic_break] = STATE(994), + [sym_block_quote] = STATE(994), + [sym__block_quote_prefix] = STATE(222), + [sym_link_reference_definition] = STATE(994), + [sym_block_attribute] = STATE(994), + [sym__paragraph] = STATE(994), + [sym__paragraph_content] = STATE(689), + [sym__paragraph_inline_content] = STATE(814), + [sym__inline] = STATE(657), + [sym__symbol_fallback] = STATE(271), + [aux_sym__list_dash_repeat1] = STATE(341), + [aux_sym__list_plus_repeat1] = STATE(342), + [aux_sym__list_star_repeat1] = STATE(343), + [aux_sym__list_task_repeat1] = STATE(314), [aux_sym__list_definition_repeat1] = STATE(456), [aux_sym__list_decimal_period_repeat1] = STATE(457), [aux_sym__list_decimal_paren_repeat1] = STATE(458), @@ -11409,9 +11555,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_upper_roman_period_repeat1] = STATE(469), [aux_sym__list_upper_roman_paren_repeat1] = STATE(470), [aux_sym__list_upper_roman_parens_repeat1] = STATE(471), - [aux_sym_table_repeat1] = STATE(234), - [aux_sym__block_quote_prefix_repeat1] = STATE(230), - [aux_sym__inline_repeat1] = STATE(273), + [aux_sym_table_repeat1] = STATE(232), + [aux_sym__block_quote_prefix_repeat1] = STATE(231), + [aux_sym__inline_repeat1] = STATE(271), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_DOT] = ACTIONS(9), @@ -11419,7 +11565,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_token1] = ACTIONS(9), [anon_sym_LBRACE] = ACTIONS(9), [anon_sym_PERCENT] = ACTIONS(9), - [sym__newline] = ACTIONS(456), + [sym__newline] = ACTIONS(458), [sym__heading_begin] = ACTIONS(368), [sym__div_begin] = ACTIONS(17), [sym__code_block_begin] = ACTIONS(370), @@ -11452,77 +11598,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__table_row_begin] = ACTIONS(382), [sym__block_attribute_begin] = ACTIONS(384), }, - [53] = { - [sym__block_with_heading] = STATE(1002), - [sym__block_element] = STATE(1002), - [sym_heading] = STATE(1002), - [sym_list] = STATE(1002), - [sym__list_dash] = STATE(1007), - [sym__list_item_dash] = STATE(595), - [sym__list_plus] = STATE(1007), - [sym__list_item_plus] = STATE(657), - [sym__list_star] = STATE(1007), - [sym__list_item_star] = STATE(570), - [sym__list_task] = STATE(1007), - [sym__list_item_task] = STATE(586), - [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(1007), - [sym__list_item_definition] = STATE(694), - [sym__list_decimal_period] = STATE(1007), - [sym__list_item_decimal_period] = STATE(714), - [sym__list_decimal_paren] = STATE(1007), - [sym__list_item_decimal_paren] = STATE(719), - [sym__list_decimal_parens] = STATE(1007), - [sym__list_item_decimal_parens] = STATE(746), - [sym__list_lower_alpha_period] = STATE(1007), - [sym__list_item_lower_alpha_period] = STATE(748), - [sym__list_lower_alpha_paren] = STATE(1007), - [sym__list_item_lower_alpha_paren] = STATE(749), - [sym__list_lower_alpha_parens] = STATE(1007), - [sym__list_item_lower_alpha_parens] = STATE(753), - [sym__list_upper_alpha_period] = STATE(1007), - [sym__list_item_upper_alpha_period] = STATE(761), - [sym__list_upper_alpha_paren] = STATE(1007), - [sym__list_item_upper_alpha_paren] = STATE(764), - [sym__list_upper_alpha_parens] = STATE(1007), - [sym__list_item_upper_alpha_parens] = STATE(765), - [sym__list_lower_roman_period] = STATE(1007), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(1007), - [sym__list_item_lower_roman_paren] = STATE(769), - [sym__list_lower_roman_parens] = STATE(1007), - [sym__list_item_lower_roman_parens] = STATE(786), - [sym__list_upper_roman_period] = STATE(1007), - [sym__list_item_upper_roman_period] = STATE(791), - [sym__list_upper_roman_paren] = STATE(1007), - [sym__list_item_upper_roman_paren] = STATE(793), - [sym__list_upper_roman_parens] = STATE(1007), - [sym__list_item_upper_roman_parens] = STATE(799), - [sym_table] = STATE(1002), - [sym__table_row] = STATE(234), - [sym_table_header] = STATE(234), - [sym_table_separator] = STATE(234), - [sym_table_row] = STATE(234), - [sym_footnote] = STATE(1002), + [54] = { + [sym__block_with_heading] = STATE(999), + [sym__block_element] = STATE(999), + [sym_heading] = STATE(999), + [sym_list] = STATE(999), + [sym__list_dash] = STATE(1004), + [sym__list_item_dash] = STATE(599), + [sym__list_plus] = STATE(1004), + [sym__list_item_plus] = STATE(606), + [sym__list_star] = STATE(1004), + [sym__list_item_star] = STATE(664), + [sym__list_task] = STATE(1004), + [sym__list_item_task] = STATE(673), + [sym_list_marker_task] = STATE(44), + [sym__list_definition] = STATE(1004), + [sym__list_item_definition] = STATE(792), + [sym__list_decimal_period] = STATE(1004), + [sym__list_item_decimal_period] = STATE(691), + [sym__list_decimal_paren] = STATE(1004), + [sym__list_item_decimal_paren] = STATE(692), + [sym__list_decimal_parens] = STATE(1004), + [sym__list_item_decimal_parens] = STATE(710), + [sym__list_lower_alpha_period] = STATE(1004), + [sym__list_item_lower_alpha_period] = STATE(714), + [sym__list_lower_alpha_paren] = STATE(1004), + [sym__list_item_lower_alpha_paren] = STATE(717), + [sym__list_lower_alpha_parens] = STATE(1004), + [sym__list_item_lower_alpha_parens] = STATE(721), + [sym__list_upper_alpha_period] = STATE(1004), + [sym__list_item_upper_alpha_period] = STATE(726), + [sym__list_upper_alpha_paren] = STATE(1004), + [sym__list_item_upper_alpha_paren] = STATE(747), + [sym__list_upper_alpha_parens] = STATE(1004), + [sym__list_item_upper_alpha_parens] = STATE(751), + [sym__list_lower_roman_period] = STATE(1004), + [sym__list_item_lower_roman_period] = STATE(753), + [sym__list_lower_roman_paren] = STATE(1004), + [sym__list_item_lower_roman_paren] = STATE(755), + [sym__list_lower_roman_parens] = STATE(1004), + [sym__list_item_lower_roman_parens] = STATE(760), + [sym__list_upper_roman_period] = STATE(1004), + [sym__list_item_upper_roman_period] = STATE(761), + [sym__list_upper_roman_paren] = STATE(1004), + [sym__list_item_upper_roman_paren] = STATE(766), + [sym__list_upper_roman_parens] = STATE(1004), + [sym__list_item_upper_roman_parens] = STATE(784), + [sym_table] = STATE(999), + [sym__table_row] = STATE(232), + [sym_table_header] = STATE(232), + [sym_table_separator] = STATE(232), + [sym_table_row] = STATE(232), + [sym_footnote] = STATE(999), [sym_footnote_marker_begin] = STATE(1135), - [sym_div] = STATE(1002), + [sym_div] = STATE(999), [sym__div_marker_begin] = STATE(1017), - [sym_code_block] = STATE(1002), - [sym_raw_block] = STATE(1002), - [sym_thematic_break] = STATE(1002), - [sym_block_quote] = STATE(1002), - [sym__block_quote_prefix] = STATE(225), - [sym_link_reference_definition] = STATE(1002), - [sym_block_attribute] = STATE(1002), - [sym__paragraph] = STATE(1002), - [sym__paragraph_content] = STATE(690), - [sym__paragraph_inline_content] = STATE(824), - [sym__inline] = STATE(654), - [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(316), - [aux_sym__list_plus_repeat1] = STATE(336), - [aux_sym__list_star_repeat1] = STATE(318), - [aux_sym__list_task_repeat1] = STATE(288), + [sym_code_block] = STATE(999), + [sym_raw_block] = STATE(999), + [sym_thematic_break] = STATE(999), + [sym_block_quote] = STATE(999), + [sym__block_quote_prefix] = STATE(222), + [sym_link_reference_definition] = STATE(999), + [sym_block_attribute] = STATE(999), + [sym__paragraph] = STATE(999), + [sym__paragraph_content] = STATE(689), + [sym__paragraph_inline_content] = STATE(814), + [sym__inline] = STATE(657), + [sym__symbol_fallback] = STATE(271), + [aux_sym__list_dash_repeat1] = STATE(341), + [aux_sym__list_plus_repeat1] = STATE(342), + [aux_sym__list_star_repeat1] = STATE(343), + [aux_sym__list_task_repeat1] = STATE(314), [aux_sym__list_definition_repeat1] = STATE(456), [aux_sym__list_decimal_period_repeat1] = STATE(457), [aux_sym__list_decimal_paren_repeat1] = STATE(458), @@ -11539,9 +11685,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_upper_roman_period_repeat1] = STATE(469), [aux_sym__list_upper_roman_paren_repeat1] = STATE(470), [aux_sym__list_upper_roman_parens_repeat1] = STATE(471), - [aux_sym_table_repeat1] = STATE(234), - [aux_sym__block_quote_prefix_repeat1] = STATE(230), - [aux_sym__inline_repeat1] = STATE(273), + [aux_sym_table_repeat1] = STATE(232), + [aux_sym__block_quote_prefix_repeat1] = STATE(231), + [aux_sym__inline_repeat1] = STATE(271), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_DOT] = ACTIONS(9), @@ -11549,7 +11695,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_token1] = ACTIONS(9), [anon_sym_LBRACE] = ACTIONS(9), [anon_sym_PERCENT] = ACTIONS(9), - [sym__newline] = ACTIONS(458), + [sym__newline] = ACTIONS(460), [sym__heading_begin] = ACTIONS(368), [sym__div_begin] = ACTIONS(17), [sym__code_block_begin] = ACTIONS(370), @@ -11582,111 +11728,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__table_row_begin] = ACTIONS(382), [sym__block_attribute_begin] = ACTIONS(384), }, - [54] = { - [sym__block_element] = STATE(126), - [sym_heading] = STATE(126), - [sym_list] = STATE(126), - [sym__list_dash] = STATE(129), - [sym__list_item_dash] = STATE(595), - [sym__list_plus] = STATE(129), - [sym__list_item_plus] = STATE(657), - [sym__list_star] = STATE(129), - [sym__list_item_star] = STATE(570), - [sym__list_task] = STATE(129), - [sym__list_item_task] = STATE(586), - [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(129), - [sym__list_item_definition] = STATE(694), - [sym__list_decimal_period] = STATE(129), - [sym__list_item_decimal_period] = STATE(714), - [sym__list_decimal_paren] = STATE(129), - [sym__list_item_decimal_paren] = STATE(719), - [sym__list_decimal_parens] = STATE(129), - [sym__list_item_decimal_parens] = STATE(746), - [sym__list_lower_alpha_period] = STATE(129), - [sym__list_item_lower_alpha_period] = STATE(748), - [sym__list_lower_alpha_paren] = STATE(129), - [sym__list_item_lower_alpha_paren] = STATE(749), - [sym__list_lower_alpha_parens] = STATE(129), - [sym__list_item_lower_alpha_parens] = STATE(753), - [sym__list_upper_alpha_period] = STATE(129), - [sym__list_item_upper_alpha_period] = STATE(761), - [sym__list_upper_alpha_paren] = STATE(129), - [sym__list_item_upper_alpha_paren] = STATE(764), - [sym__list_upper_alpha_parens] = STATE(129), - [sym__list_item_upper_alpha_parens] = STATE(765), - [sym__list_lower_roman_period] = STATE(129), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(129), - [sym__list_item_lower_roman_paren] = STATE(769), - [sym__list_lower_roman_parens] = STATE(129), - [sym__list_item_lower_roman_parens] = STATE(786), - [sym__list_upper_roman_period] = STATE(129), - [sym__list_item_upper_roman_period] = STATE(791), - [sym__list_upper_roman_paren] = STATE(129), - [sym__list_item_upper_roman_paren] = STATE(793), - [sym__list_upper_roman_parens] = STATE(129), - [sym__list_item_upper_roman_parens] = STATE(799), - [sym_table] = STATE(126), + [55] = { + [sym__block_element] = STATE(128), + [sym_heading] = STATE(128), + [sym_list] = STATE(128), + [sym__list_dash] = STATE(131), + [sym__list_item_dash] = STATE(599), + [sym__list_plus] = STATE(131), + [sym__list_item_plus] = STATE(606), + [sym__list_star] = STATE(131), + [sym__list_item_star] = STATE(664), + [sym__list_task] = STATE(131), + [sym__list_item_task] = STATE(673), + [sym_list_marker_task] = STATE(44), + [sym__list_definition] = STATE(131), + [sym__list_item_definition] = STATE(792), + [sym__list_decimal_period] = STATE(131), + [sym__list_item_decimal_period] = STATE(691), + [sym__list_decimal_paren] = STATE(131), + [sym__list_item_decimal_paren] = STATE(692), + [sym__list_decimal_parens] = STATE(131), + [sym__list_item_decimal_parens] = STATE(710), + [sym__list_lower_alpha_period] = STATE(131), + [sym__list_item_lower_alpha_period] = STATE(714), + [sym__list_lower_alpha_paren] = STATE(131), + [sym__list_item_lower_alpha_paren] = STATE(717), + [sym__list_lower_alpha_parens] = STATE(131), + [sym__list_item_lower_alpha_parens] = STATE(721), + [sym__list_upper_alpha_period] = STATE(131), + [sym__list_item_upper_alpha_period] = STATE(726), + [sym__list_upper_alpha_paren] = STATE(131), + [sym__list_item_upper_alpha_paren] = STATE(747), + [sym__list_upper_alpha_parens] = STATE(131), + [sym__list_item_upper_alpha_parens] = STATE(751), + [sym__list_lower_roman_period] = STATE(131), + [sym__list_item_lower_roman_period] = STATE(753), + [sym__list_lower_roman_paren] = STATE(131), + [sym__list_item_lower_roman_paren] = STATE(755), + [sym__list_lower_roman_parens] = STATE(131), + [sym__list_item_lower_roman_parens] = STATE(760), + [sym__list_upper_roman_period] = STATE(131), + [sym__list_item_upper_roman_period] = STATE(761), + [sym__list_upper_roman_paren] = STATE(131), + [sym__list_item_upper_roman_paren] = STATE(766), + [sym__list_upper_roman_parens] = STATE(131), + [sym__list_item_upper_roman_parens] = STATE(784), + [sym_table] = STATE(128), [sym__table_row] = STATE(67), [sym_table_header] = STATE(67), [sym_table_separator] = STATE(67), [sym_table_row] = STATE(67), - [sym_footnote] = STATE(126), + [sym_footnote] = STATE(128), [sym_footnote_marker_begin] = STATE(1139), - [sym_div] = STATE(126), + [sym_div] = STATE(128), [sym__div_marker_begin] = STATE(1055), - [sym_code_block] = STATE(126), - [sym_raw_block] = STATE(126), - [sym_thematic_break] = STATE(126), - [sym_block_quote] = STATE(126), + [sym_code_block] = STATE(128), + [sym_raw_block] = STATE(128), + [sym_thematic_break] = STATE(128), + [sym_block_quote] = STATE(128), [sym__block_quote_prefix] = STATE(223), - [sym_link_reference_definition] = STATE(126), - [sym_block_attribute] = STATE(126), - [sym__paragraph] = STATE(126), - [sym__paragraph_content] = STATE(766), - [sym__paragraph_inline_content] = STATE(824), - [sym__inline] = STATE(654), - [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(323), - [aux_sym__list_plus_repeat1] = STATE(324), - [aux_sym__list_star_repeat1] = STATE(325), - [aux_sym__list_task_repeat1] = STATE(299), - [aux_sym__list_definition_repeat1] = STATE(491), - [aux_sym__list_decimal_period_repeat1] = STATE(492), - [aux_sym__list_decimal_paren_repeat1] = STATE(493), - [aux_sym__list_decimal_parens_repeat1] = STATE(494), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(495), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(496), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(497), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(498), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(499), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(500), - [aux_sym__list_lower_roman_period_repeat1] = STATE(501), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(502), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(503), - [aux_sym__list_upper_roman_period_repeat1] = STATE(504), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(505), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(506), + [sym_link_reference_definition] = STATE(128), + [sym_block_attribute] = STATE(128), + [sym__paragraph] = STATE(128), + [sym__paragraph_content] = STATE(765), + [sym__paragraph_inline_content] = STATE(814), + [sym__inline] = STATE(657), + [sym__symbol_fallback] = STATE(271), + [aux_sym__list_dash_repeat1] = STATE(326), + [aux_sym__list_plus_repeat1] = STATE(327), + [aux_sym__list_star_repeat1] = STATE(328), + [aux_sym__list_task_repeat1] = STATE(289), + [aux_sym__list_definition_repeat1] = STATE(489), + [aux_sym__list_decimal_period_repeat1] = STATE(490), + [aux_sym__list_decimal_paren_repeat1] = STATE(491), + [aux_sym__list_decimal_parens_repeat1] = STATE(492), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(493), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(494), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(495), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(496), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(497), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(498), + [aux_sym__list_lower_roman_period_repeat1] = STATE(499), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(500), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(501), + [aux_sym__list_upper_roman_period_repeat1] = STATE(502), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(503), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(504), [aux_sym_table_repeat1] = STATE(67), - [aux_sym__block_quote_prefix_repeat1] = STATE(230), - [aux_sym__inline_repeat1] = STATE(273), - [anon_sym_LBRACK] = ACTIONS(460), - [anon_sym_LBRACK_CARET] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [aux_sym_identifier_token1] = ACTIONS(460), - [aux_sym__inline_token1] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_PERCENT] = ACTIONS(460), - [sym__block_close] = ACTIONS(462), - [sym__newline] = ACTIONS(464), + [aux_sym__block_quote_prefix_repeat1] = STATE(231), + [aux_sym__inline_repeat1] = STATE(271), + [anon_sym_LBRACK] = ACTIONS(462), + [anon_sym_LBRACK_CARET] = ACTIONS(462), + [anon_sym_DOT] = ACTIONS(462), + [aux_sym_identifier_token1] = ACTIONS(462), + [aux_sym__inline_token1] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_PERCENT] = ACTIONS(462), + [sym__block_close] = ACTIONS(464), + [sym__newline] = ACTIONS(466), [sym__heading_begin] = ACTIONS(15), [sym__div_begin] = ACTIONS(17), - [sym__code_block_begin] = ACTIONS(83), - [sym_list_marker_dash] = ACTIONS(462), - [sym_list_marker_star] = ACTIONS(462), - [sym_list_marker_plus] = ACTIONS(462), - [sym__list_marker_task_begin] = ACTIONS(462), + [sym__code_block_begin] = ACTIONS(81), + [sym_list_marker_dash] = ACTIONS(464), + [sym_list_marker_star] = ACTIONS(464), + [sym_list_marker_plus] = ACTIONS(464), + [sym__list_marker_task_begin] = ACTIONS(464), [sym_list_marker_definition] = ACTIONS(29), [sym_list_marker_decimal_period] = ACTIONS(31), [sym_list_marker_lower_alpha_period] = ACTIONS(33), @@ -11703,86 +11849,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(55), [sym_list_marker_lower_roman_parens] = ACTIONS(57), [sym_list_marker_upper_roman_parens] = ACTIONS(59), - [sym__block_quote_begin] = ACTIONS(85), - [sym__block_quote_continuation] = ACTIONS(462), - [sym__thematic_break_dash] = ACTIONS(87), - [sym__thematic_break_star] = ACTIONS(87), - [sym__table_header_begin] = ACTIONS(462), - [sym__table_separator_begin] = ACTIONS(462), - [sym__table_row_begin] = ACTIONS(462), - [sym__block_attribute_begin] = ACTIONS(95), + [sym__block_quote_begin] = ACTIONS(83), + [sym__block_quote_continuation] = ACTIONS(464), + [sym__thematic_break_dash] = ACTIONS(85), + [sym__thematic_break_star] = ACTIONS(85), + [sym__table_header_begin] = ACTIONS(464), + [sym__table_separator_begin] = ACTIONS(464), + [sym__table_row_begin] = ACTIONS(464), + [sym__block_attribute_begin] = ACTIONS(93), }, - [55] = { - [sym__block_with_heading] = STATE(1001), - [sym__block_element] = STATE(1001), - [sym_heading] = STATE(1001), - [sym_list] = STATE(1001), - [sym__list_dash] = STATE(1007), - [sym__list_item_dash] = STATE(595), - [sym__list_plus] = STATE(1007), - [sym__list_item_plus] = STATE(657), - [sym__list_star] = STATE(1007), - [sym__list_item_star] = STATE(570), - [sym__list_task] = STATE(1007), - [sym__list_item_task] = STATE(586), - [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(1007), - [sym__list_item_definition] = STATE(694), - [sym__list_decimal_period] = STATE(1007), - [sym__list_item_decimal_period] = STATE(714), - [sym__list_decimal_paren] = STATE(1007), - [sym__list_item_decimal_paren] = STATE(719), - [sym__list_decimal_parens] = STATE(1007), - [sym__list_item_decimal_parens] = STATE(746), - [sym__list_lower_alpha_period] = STATE(1007), - [sym__list_item_lower_alpha_period] = STATE(748), - [sym__list_lower_alpha_paren] = STATE(1007), - [sym__list_item_lower_alpha_paren] = STATE(749), - [sym__list_lower_alpha_parens] = STATE(1007), - [sym__list_item_lower_alpha_parens] = STATE(753), - [sym__list_upper_alpha_period] = STATE(1007), - [sym__list_item_upper_alpha_period] = STATE(761), - [sym__list_upper_alpha_paren] = STATE(1007), - [sym__list_item_upper_alpha_paren] = STATE(764), - [sym__list_upper_alpha_parens] = STATE(1007), - [sym__list_item_upper_alpha_parens] = STATE(765), - [sym__list_lower_roman_period] = STATE(1007), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(1007), - [sym__list_item_lower_roman_paren] = STATE(769), - [sym__list_lower_roman_parens] = STATE(1007), - [sym__list_item_lower_roman_parens] = STATE(786), - [sym__list_upper_roman_period] = STATE(1007), - [sym__list_item_upper_roman_period] = STATE(791), - [sym__list_upper_roman_paren] = STATE(1007), - [sym__list_item_upper_roman_paren] = STATE(793), - [sym__list_upper_roman_parens] = STATE(1007), - [sym__list_item_upper_roman_parens] = STATE(799), - [sym_table] = STATE(1001), - [sym__table_row] = STATE(234), - [sym_table_header] = STATE(234), - [sym_table_separator] = STATE(234), - [sym_table_row] = STATE(234), - [sym_footnote] = STATE(1001), + [56] = { + [sym__block_with_heading] = STATE(993), + [sym__block_element] = STATE(993), + [sym_heading] = STATE(993), + [sym_list] = STATE(993), + [sym__list_dash] = STATE(1004), + [sym__list_item_dash] = STATE(599), + [sym__list_plus] = STATE(1004), + [sym__list_item_plus] = STATE(606), + [sym__list_star] = STATE(1004), + [sym__list_item_star] = STATE(664), + [sym__list_task] = STATE(1004), + [sym__list_item_task] = STATE(673), + [sym_list_marker_task] = STATE(44), + [sym__list_definition] = STATE(1004), + [sym__list_item_definition] = STATE(792), + [sym__list_decimal_period] = STATE(1004), + [sym__list_item_decimal_period] = STATE(691), + [sym__list_decimal_paren] = STATE(1004), + [sym__list_item_decimal_paren] = STATE(692), + [sym__list_decimal_parens] = STATE(1004), + [sym__list_item_decimal_parens] = STATE(710), + [sym__list_lower_alpha_period] = STATE(1004), + [sym__list_item_lower_alpha_period] = STATE(714), + [sym__list_lower_alpha_paren] = STATE(1004), + [sym__list_item_lower_alpha_paren] = STATE(717), + [sym__list_lower_alpha_parens] = STATE(1004), + [sym__list_item_lower_alpha_parens] = STATE(721), + [sym__list_upper_alpha_period] = STATE(1004), + [sym__list_item_upper_alpha_period] = STATE(726), + [sym__list_upper_alpha_paren] = STATE(1004), + [sym__list_item_upper_alpha_paren] = STATE(747), + [sym__list_upper_alpha_parens] = STATE(1004), + [sym__list_item_upper_alpha_parens] = STATE(751), + [sym__list_lower_roman_period] = STATE(1004), + [sym__list_item_lower_roman_period] = STATE(753), + [sym__list_lower_roman_paren] = STATE(1004), + [sym__list_item_lower_roman_paren] = STATE(755), + [sym__list_lower_roman_parens] = STATE(1004), + [sym__list_item_lower_roman_parens] = STATE(760), + [sym__list_upper_roman_period] = STATE(1004), + [sym__list_item_upper_roman_period] = STATE(761), + [sym__list_upper_roman_paren] = STATE(1004), + [sym__list_item_upper_roman_paren] = STATE(766), + [sym__list_upper_roman_parens] = STATE(1004), + [sym__list_item_upper_roman_parens] = STATE(784), + [sym_table] = STATE(993), + [sym__table_row] = STATE(232), + [sym_table_header] = STATE(232), + [sym_table_separator] = STATE(232), + [sym_table_row] = STATE(232), + [sym_footnote] = STATE(993), [sym_footnote_marker_begin] = STATE(1135), - [sym_div] = STATE(1001), + [sym_div] = STATE(993), [sym__div_marker_begin] = STATE(1017), - [sym_code_block] = STATE(1001), - [sym_raw_block] = STATE(1001), - [sym_thematic_break] = STATE(1001), - [sym_block_quote] = STATE(1001), - [sym__block_quote_prefix] = STATE(225), - [sym_link_reference_definition] = STATE(1001), - [sym_block_attribute] = STATE(1001), - [sym__paragraph] = STATE(1001), - [sym__paragraph_content] = STATE(690), - [sym__paragraph_inline_content] = STATE(824), - [sym__inline] = STATE(654), - [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(316), - [aux_sym__list_plus_repeat1] = STATE(336), - [aux_sym__list_star_repeat1] = STATE(318), - [aux_sym__list_task_repeat1] = STATE(288), + [sym_code_block] = STATE(993), + [sym_raw_block] = STATE(993), + [sym_thematic_break] = STATE(993), + [sym_block_quote] = STATE(993), + [sym__block_quote_prefix] = STATE(222), + [sym_link_reference_definition] = STATE(993), + [sym_block_attribute] = STATE(993), + [sym__paragraph] = STATE(993), + [sym__paragraph_content] = STATE(689), + [sym__paragraph_inline_content] = STATE(814), + [sym__inline] = STATE(657), + [sym__symbol_fallback] = STATE(271), + [aux_sym__list_dash_repeat1] = STATE(341), + [aux_sym__list_plus_repeat1] = STATE(342), + [aux_sym__list_star_repeat1] = STATE(343), + [aux_sym__list_task_repeat1] = STATE(314), [aux_sym__list_definition_repeat1] = STATE(456), [aux_sym__list_decimal_period_repeat1] = STATE(457), [aux_sym__list_decimal_paren_repeat1] = STATE(458), @@ -11799,9 +11945,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_upper_roman_period_repeat1] = STATE(469), [aux_sym__list_upper_roman_paren_repeat1] = STATE(470), [aux_sym__list_upper_roman_parens_repeat1] = STATE(471), - [aux_sym_table_repeat1] = STATE(234), - [aux_sym__block_quote_prefix_repeat1] = STATE(230), - [aux_sym__inline_repeat1] = STATE(273), + [aux_sym_table_repeat1] = STATE(232), + [aux_sym__block_quote_prefix_repeat1] = STATE(231), + [aux_sym__inline_repeat1] = STATE(271), [anon_sym_LBRACK] = ACTIONS(364), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_DOT] = ACTIONS(9), @@ -11809,7 +11955,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_token1] = ACTIONS(9), [anon_sym_LBRACE] = ACTIONS(9), [anon_sym_PERCENT] = ACTIONS(9), - [sym__newline] = ACTIONS(466), + [sym__newline] = ACTIONS(468), [sym__heading_begin] = ACTIONS(368), [sym__div_begin] = ACTIONS(17), [sym__code_block_begin] = ACTIONS(370), @@ -11842,226 +11988,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__table_row_begin] = ACTIONS(382), [sym__block_attribute_begin] = ACTIONS(384), }, - [56] = { - [sym__block_with_heading] = STATE(930), - [sym__block_element] = STATE(930), - [sym_heading] = STATE(930), - [sym_list] = STATE(930), - [sym__list_dash] = STATE(1007), - [sym__list_item_dash] = STATE(595), - [sym__list_plus] = STATE(1007), - [sym__list_item_plus] = STATE(657), - [sym__list_star] = STATE(1007), - [sym__list_item_star] = STATE(570), - [sym__list_task] = STATE(1007), - [sym__list_item_task] = STATE(586), - [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(1007), - [sym__list_item_definition] = STATE(694), - [sym__list_decimal_period] = STATE(1007), - [sym__list_item_decimal_period] = STATE(714), - [sym__list_decimal_paren] = STATE(1007), - [sym__list_item_decimal_paren] = STATE(719), - [sym__list_decimal_parens] = STATE(1007), - [sym__list_item_decimal_parens] = STATE(746), - [sym__list_lower_alpha_period] = STATE(1007), - [sym__list_item_lower_alpha_period] = STATE(748), - [sym__list_lower_alpha_paren] = STATE(1007), - [sym__list_item_lower_alpha_paren] = STATE(749), - [sym__list_lower_alpha_parens] = STATE(1007), - [sym__list_item_lower_alpha_parens] = STATE(753), - [sym__list_upper_alpha_period] = STATE(1007), - [sym__list_item_upper_alpha_period] = STATE(761), - [sym__list_upper_alpha_paren] = STATE(1007), - [sym__list_item_upper_alpha_paren] = STATE(764), - [sym__list_upper_alpha_parens] = STATE(1007), - [sym__list_item_upper_alpha_parens] = STATE(765), - [sym__list_lower_roman_period] = STATE(1007), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(1007), - [sym__list_item_lower_roman_paren] = STATE(769), - [sym__list_lower_roman_parens] = STATE(1007), - [sym__list_item_lower_roman_parens] = STATE(786), - [sym__list_upper_roman_period] = STATE(1007), - [sym__list_item_upper_roman_period] = STATE(791), - [sym__list_upper_roman_paren] = STATE(1007), - [sym__list_item_upper_roman_paren] = STATE(793), - [sym__list_upper_roman_parens] = STATE(1007), - [sym__list_item_upper_roman_parens] = STATE(799), - [sym_table] = STATE(930), - [sym__table_row] = STATE(234), - [sym_table_header] = STATE(234), - [sym_table_separator] = STATE(234), - [sym_table_row] = STATE(234), - [sym_footnote] = STATE(930), - [sym_footnote_marker_begin] = STATE(1135), - [sym_div] = STATE(930), - [sym__div_marker_begin] = STATE(1017), - [sym_code_block] = STATE(930), - [sym_raw_block] = STATE(930), - [sym_thematic_break] = STATE(930), - [sym_block_quote] = STATE(930), - [sym__block_quote_prefix] = STATE(225), - [sym_link_reference_definition] = STATE(930), - [sym_block_attribute] = STATE(930), - [sym__paragraph] = STATE(930), - [sym__paragraph_content] = STATE(690), - [sym__paragraph_inline_content] = STATE(824), - [sym__inline] = STATE(654), - [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(316), - [aux_sym__list_plus_repeat1] = STATE(336), + [57] = { + [sym__block_element] = STATE(420), + [sym_heading] = STATE(420), + [sym_list] = STATE(420), + [sym__list_dash] = STATE(739), + [sym__list_item_dash] = STATE(599), + [sym__list_plus] = STATE(739), + [sym__list_item_plus] = STATE(606), + [sym__list_star] = STATE(739), + [sym__list_item_star] = STATE(664), + [sym__list_task] = STATE(739), + [sym__list_item_task] = STATE(673), + [sym_list_marker_task] = STATE(44), + [sym__list_definition] = STATE(739), + [sym__list_item_definition] = STATE(792), + [sym__list_decimal_period] = STATE(739), + [sym__list_item_decimal_period] = STATE(691), + [sym__list_decimal_paren] = STATE(739), + [sym__list_item_decimal_paren] = STATE(692), + [sym__list_decimal_parens] = STATE(739), + [sym__list_item_decimal_parens] = STATE(710), + [sym__list_lower_alpha_period] = STATE(739), + [sym__list_item_lower_alpha_period] = STATE(714), + [sym__list_lower_alpha_paren] = STATE(739), + [sym__list_item_lower_alpha_paren] = STATE(717), + [sym__list_lower_alpha_parens] = STATE(739), + [sym__list_item_lower_alpha_parens] = STATE(721), + [sym__list_upper_alpha_period] = STATE(739), + [sym__list_item_upper_alpha_period] = STATE(726), + [sym__list_upper_alpha_paren] = STATE(739), + [sym__list_item_upper_alpha_paren] = STATE(747), + [sym__list_upper_alpha_parens] = STATE(739), + [sym__list_item_upper_alpha_parens] = STATE(751), + [sym__list_lower_roman_period] = STATE(739), + [sym__list_item_lower_roman_period] = STATE(753), + [sym__list_lower_roman_paren] = STATE(739), + [sym__list_item_lower_roman_paren] = STATE(755), + [sym__list_lower_roman_parens] = STATE(739), + [sym__list_item_lower_roman_parens] = STATE(760), + [sym__list_upper_roman_period] = STATE(739), + [sym__list_item_upper_roman_period] = STATE(761), + [sym__list_upper_roman_paren] = STATE(739), + [sym__list_item_upper_roman_paren] = STATE(766), + [sym__list_upper_roman_parens] = STATE(739), + [sym__list_item_upper_roman_parens] = STATE(784), + [sym_table] = STATE(420), + [sym__table_row] = STATE(233), + [sym_table_header] = STATE(233), + [sym_table_separator] = STATE(233), + [sym_table_row] = STATE(233), + [sym_footnote] = STATE(420), + [sym_footnote_marker_begin] = STATE(1137), + [sym_div] = STATE(420), + [sym__div_marker_begin] = STATE(1036), + [sym_code_block] = STATE(420), + [sym_raw_block] = STATE(420), + [sym_thematic_break] = STATE(420), + [sym_block_quote] = STATE(420), + [sym__block_quote_content] = STATE(949), + [sym__block_quote_prefix] = STATE(221), + [sym_link_reference_definition] = STATE(420), + [sym_block_attribute] = STATE(420), + [sym__paragraph] = STATE(420), + [sym__paragraph_content] = STATE(725), + [sym__paragraph_inline_content] = STATE(814), + [sym__inline] = STATE(657), + [sym__symbol_fallback] = STATE(271), + [aux_sym__list_dash_repeat1] = STATE(336), + [aux_sym__list_plus_repeat1] = STATE(317), [aux_sym__list_star_repeat1] = STATE(318), - [aux_sym__list_task_repeat1] = STATE(288), - [aux_sym__list_definition_repeat1] = STATE(456), - [aux_sym__list_decimal_period_repeat1] = STATE(457), - [aux_sym__list_decimal_paren_repeat1] = STATE(458), - [aux_sym__list_decimal_parens_repeat1] = STATE(459), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(460), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(461), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(462), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(463), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(464), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(465), - [aux_sym__list_lower_roman_period_repeat1] = STATE(466), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(467), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(468), - [aux_sym__list_upper_roman_period_repeat1] = STATE(469), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(470), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(471), - [aux_sym_table_repeat1] = STATE(234), - [aux_sym__block_quote_prefix_repeat1] = STATE(230), - [aux_sym__inline_repeat1] = STATE(273), - [anon_sym_LBRACK] = ACTIONS(364), - [anon_sym_LBRACK_CARET] = ACTIONS(7), - [anon_sym_DOT] = ACTIONS(9), - [aux_sym_identifier_token1] = ACTIONS(9), - [aux_sym__inline_token1] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_PERCENT] = ACTIONS(9), - [sym__newline] = ACTIONS(468), - [sym__heading_begin] = ACTIONS(368), - [sym__div_begin] = ACTIONS(17), - [sym__code_block_begin] = ACTIONS(370), - [sym_list_marker_dash] = ACTIONS(21), - [sym_list_marker_star] = ACTIONS(23), - [sym_list_marker_plus] = ACTIONS(25), - [sym__list_marker_task_begin] = ACTIONS(27), - [sym_list_marker_definition] = ACTIONS(29), - [sym_list_marker_decimal_period] = ACTIONS(31), - [sym_list_marker_lower_alpha_period] = ACTIONS(33), - [sym_list_marker_upper_alpha_period] = ACTIONS(35), - [sym_list_marker_lower_roman_period] = ACTIONS(37), - [sym_list_marker_upper_roman_period] = ACTIONS(39), - [sym_list_marker_decimal_paren] = ACTIONS(41), - [sym_list_marker_lower_alpha_paren] = ACTIONS(43), - [sym_list_marker_upper_alpha_paren] = ACTIONS(45), - [sym_list_marker_lower_roman_paren] = ACTIONS(47), - [sym_list_marker_upper_roman_paren] = ACTIONS(49), - [sym_list_marker_decimal_parens] = ACTIONS(51), - [sym_list_marker_lower_alpha_parens] = ACTIONS(53), - [sym_list_marker_upper_alpha_parens] = ACTIONS(55), - [sym_list_marker_lower_roman_parens] = ACTIONS(57), - [sym_list_marker_upper_roman_parens] = ACTIONS(59), - [sym__block_quote_begin] = ACTIONS(372), - [sym__block_quote_continuation] = ACTIONS(374), - [sym__thematic_break_dash] = ACTIONS(376), - [sym__thematic_break_star] = ACTIONS(376), - [sym__table_header_begin] = ACTIONS(378), - [sym__table_separator_begin] = ACTIONS(380), - [sym__table_row_begin] = ACTIONS(382), - [sym__block_attribute_begin] = ACTIONS(384), - }, - [57] = { - [sym__block_element] = STATE(419), - [sym_heading] = STATE(419), - [sym_list] = STATE(419), - [sym__list_dash] = STATE(731), - [sym__list_item_dash] = STATE(595), - [sym__list_plus] = STATE(731), - [sym__list_item_plus] = STATE(657), - [sym__list_star] = STATE(731), - [sym__list_item_star] = STATE(570), - [sym__list_task] = STATE(731), - [sym__list_item_task] = STATE(586), - [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(731), - [sym__list_item_definition] = STATE(694), - [sym__list_decimal_period] = STATE(731), - [sym__list_item_decimal_period] = STATE(714), - [sym__list_decimal_paren] = STATE(731), - [sym__list_item_decimal_paren] = STATE(719), - [sym__list_decimal_parens] = STATE(731), - [sym__list_item_decimal_parens] = STATE(746), - [sym__list_lower_alpha_period] = STATE(731), - [sym__list_item_lower_alpha_period] = STATE(748), - [sym__list_lower_alpha_paren] = STATE(731), - [sym__list_item_lower_alpha_paren] = STATE(749), - [sym__list_lower_alpha_parens] = STATE(731), - [sym__list_item_lower_alpha_parens] = STATE(753), - [sym__list_upper_alpha_period] = STATE(731), - [sym__list_item_upper_alpha_period] = STATE(761), - [sym__list_upper_alpha_paren] = STATE(731), - [sym__list_item_upper_alpha_paren] = STATE(764), - [sym__list_upper_alpha_parens] = STATE(731), - [sym__list_item_upper_alpha_parens] = STATE(765), - [sym__list_lower_roman_period] = STATE(731), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(731), - [sym__list_item_lower_roman_paren] = STATE(769), - [sym__list_lower_roman_parens] = STATE(731), - [sym__list_item_lower_roman_parens] = STATE(786), - [sym__list_upper_roman_period] = STATE(731), - [sym__list_item_upper_roman_period] = STATE(791), - [sym__list_upper_roman_paren] = STATE(731), - [sym__list_item_upper_roman_paren] = STATE(793), - [sym__list_upper_roman_parens] = STATE(731), - [sym__list_item_upper_roman_parens] = STATE(799), - [sym_table] = STATE(419), - [sym__table_row] = STATE(233), - [sym_table_header] = STATE(233), - [sym_table_separator] = STATE(233), - [sym_table_row] = STATE(233), - [sym_footnote] = STATE(419), - [sym_footnote_marker_begin] = STATE(1137), - [sym_div] = STATE(419), - [sym__div_marker_begin] = STATE(1036), - [sym_code_block] = STATE(419), - [sym_raw_block] = STATE(419), - [sym_thematic_break] = STATE(419), - [sym_block_quote] = STATE(419), - [sym__block_quote_content] = STATE(949), - [sym__block_quote_prefix] = STATE(222), - [sym_link_reference_definition] = STATE(419), - [sym_block_attribute] = STATE(419), - [sym__paragraph] = STATE(419), - [sym__paragraph_content] = STATE(727), - [sym__paragraph_inline_content] = STATE(824), - [sym__inline] = STATE(654), - [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(355), - [aux_sym__list_plus_repeat1] = STATE(356), - [aux_sym__list_star_repeat1] = STATE(357), - [aux_sym__list_task_repeat1] = STATE(294), - [aux_sym__list_definition_repeat1] = STATE(475), - [aux_sym__list_decimal_period_repeat1] = STATE(476), - [aux_sym__list_decimal_paren_repeat1] = STATE(477), - [aux_sym__list_decimal_parens_repeat1] = STATE(478), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(479), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(480), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(481), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(482), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(483), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(484), - [aux_sym__list_lower_roman_period_repeat1] = STATE(485), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(486), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(544), - [aux_sym__list_upper_roman_period_repeat1] = STATE(488), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(489), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(490), + [aux_sym__list_task_repeat1] = STATE(295), + [aux_sym__list_definition_repeat1] = STATE(473), + [aux_sym__list_decimal_period_repeat1] = STATE(474), + [aux_sym__list_decimal_paren_repeat1] = STATE(475), + [aux_sym__list_decimal_parens_repeat1] = STATE(476), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(477), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(478), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(479), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(480), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(481), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(482), + [aux_sym__list_lower_roman_period_repeat1] = STATE(483), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(484), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(485), + [aux_sym__list_upper_roman_period_repeat1] = STATE(545), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(487), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(488), [aux_sym_table_repeat1] = STATE(233), - [aux_sym__block_quote_prefix_repeat1] = STATE(230), - [aux_sym__inline_repeat1] = STATE(273), + [aux_sym__block_quote_prefix_repeat1] = STATE(231), + [aux_sym__inline_repeat1] = STATE(271), [anon_sym_LBRACK] = ACTIONS(470), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_DOT] = ACTIONS(9), @@ -12102,95 +12118,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block_attribute_begin] = ACTIONS(486), }, [58] = { - [sym__block_element] = STATE(419), - [sym_heading] = STATE(419), - [sym_list] = STATE(419), - [sym__list_dash] = STATE(731), - [sym__list_item_dash] = STATE(595), - [sym__list_plus] = STATE(731), - [sym__list_item_plus] = STATE(657), - [sym__list_star] = STATE(731), - [sym__list_item_star] = STATE(570), - [sym__list_task] = STATE(731), - [sym__list_item_task] = STATE(586), - [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(731), - [sym__list_item_definition] = STATE(694), - [sym__list_decimal_period] = STATE(731), - [sym__list_item_decimal_period] = STATE(714), - [sym__list_decimal_paren] = STATE(731), - [sym__list_item_decimal_paren] = STATE(719), - [sym__list_decimal_parens] = STATE(731), - [sym__list_item_decimal_parens] = STATE(746), - [sym__list_lower_alpha_period] = STATE(731), - [sym__list_item_lower_alpha_period] = STATE(748), - [sym__list_lower_alpha_paren] = STATE(731), - [sym__list_item_lower_alpha_paren] = STATE(749), - [sym__list_lower_alpha_parens] = STATE(731), - [sym__list_item_lower_alpha_parens] = STATE(753), - [sym__list_upper_alpha_period] = STATE(731), - [sym__list_item_upper_alpha_period] = STATE(761), - [sym__list_upper_alpha_paren] = STATE(731), - [sym__list_item_upper_alpha_paren] = STATE(764), - [sym__list_upper_alpha_parens] = STATE(731), - [sym__list_item_upper_alpha_parens] = STATE(765), - [sym__list_lower_roman_period] = STATE(731), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(731), - [sym__list_item_lower_roman_paren] = STATE(769), - [sym__list_lower_roman_parens] = STATE(731), - [sym__list_item_lower_roman_parens] = STATE(786), - [sym__list_upper_roman_period] = STATE(731), - [sym__list_item_upper_roman_period] = STATE(791), - [sym__list_upper_roman_paren] = STATE(731), - [sym__list_item_upper_roman_paren] = STATE(793), - [sym__list_upper_roman_parens] = STATE(731), - [sym__list_item_upper_roman_parens] = STATE(799), - [sym_table] = STATE(419), + [sym__block_element] = STATE(420), + [sym_heading] = STATE(420), + [sym_list] = STATE(420), + [sym__list_dash] = STATE(739), + [sym__list_item_dash] = STATE(599), + [sym__list_plus] = STATE(739), + [sym__list_item_plus] = STATE(606), + [sym__list_star] = STATE(739), + [sym__list_item_star] = STATE(664), + [sym__list_task] = STATE(739), + [sym__list_item_task] = STATE(673), + [sym_list_marker_task] = STATE(44), + [sym__list_definition] = STATE(739), + [sym__list_item_definition] = STATE(792), + [sym__list_decimal_period] = STATE(739), + [sym__list_item_decimal_period] = STATE(691), + [sym__list_decimal_paren] = STATE(739), + [sym__list_item_decimal_paren] = STATE(692), + [sym__list_decimal_parens] = STATE(739), + [sym__list_item_decimal_parens] = STATE(710), + [sym__list_lower_alpha_period] = STATE(739), + [sym__list_item_lower_alpha_period] = STATE(714), + [sym__list_lower_alpha_paren] = STATE(739), + [sym__list_item_lower_alpha_paren] = STATE(717), + [sym__list_lower_alpha_parens] = STATE(739), + [sym__list_item_lower_alpha_parens] = STATE(721), + [sym__list_upper_alpha_period] = STATE(739), + [sym__list_item_upper_alpha_period] = STATE(726), + [sym__list_upper_alpha_paren] = STATE(739), + [sym__list_item_upper_alpha_paren] = STATE(747), + [sym__list_upper_alpha_parens] = STATE(739), + [sym__list_item_upper_alpha_parens] = STATE(751), + [sym__list_lower_roman_period] = STATE(739), + [sym__list_item_lower_roman_period] = STATE(753), + [sym__list_lower_roman_paren] = STATE(739), + [sym__list_item_lower_roman_paren] = STATE(755), + [sym__list_lower_roman_parens] = STATE(739), + [sym__list_item_lower_roman_parens] = STATE(760), + [sym__list_upper_roman_period] = STATE(739), + [sym__list_item_upper_roman_period] = STATE(761), + [sym__list_upper_roman_paren] = STATE(739), + [sym__list_item_upper_roman_paren] = STATE(766), + [sym__list_upper_roman_parens] = STATE(739), + [sym__list_item_upper_roman_parens] = STATE(784), + [sym_table] = STATE(420), [sym__table_row] = STATE(233), [sym_table_header] = STATE(233), [sym_table_separator] = STATE(233), [sym_table_row] = STATE(233), - [sym_footnote] = STATE(419), + [sym_footnote] = STATE(420), [sym_footnote_marker_begin] = STATE(1137), - [sym_div] = STATE(419), + [sym_div] = STATE(420), [sym__div_marker_begin] = STATE(1036), - [sym_code_block] = STATE(419), - [sym_raw_block] = STATE(419), - [sym_thematic_break] = STATE(419), - [sym_block_quote] = STATE(419), - [sym__block_quote_content] = STATE(1048), - [sym__block_quote_prefix] = STATE(222), - [sym_link_reference_definition] = STATE(419), - [sym_block_attribute] = STATE(419), - [sym__paragraph] = STATE(419), - [sym__paragraph_content] = STATE(727), - [sym__paragraph_inline_content] = STATE(824), - [sym__inline] = STATE(654), - [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(355), - [aux_sym__list_plus_repeat1] = STATE(356), - [aux_sym__list_star_repeat1] = STATE(357), - [aux_sym__list_task_repeat1] = STATE(294), - [aux_sym__list_definition_repeat1] = STATE(475), - [aux_sym__list_decimal_period_repeat1] = STATE(476), - [aux_sym__list_decimal_paren_repeat1] = STATE(477), - [aux_sym__list_decimal_parens_repeat1] = STATE(478), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(479), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(480), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(481), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(482), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(483), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(484), - [aux_sym__list_lower_roman_period_repeat1] = STATE(485), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(486), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(544), - [aux_sym__list_upper_roman_period_repeat1] = STATE(488), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(489), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(490), + [sym_code_block] = STATE(420), + [sym_raw_block] = STATE(420), + [sym_thematic_break] = STATE(420), + [sym_block_quote] = STATE(420), + [sym__block_quote_content] = STATE(1060), + [sym__block_quote_prefix] = STATE(221), + [sym_link_reference_definition] = STATE(420), + [sym_block_attribute] = STATE(420), + [sym__paragraph] = STATE(420), + [sym__paragraph_content] = STATE(725), + [sym__paragraph_inline_content] = STATE(814), + [sym__inline] = STATE(657), + [sym__symbol_fallback] = STATE(271), + [aux_sym__list_dash_repeat1] = STATE(336), + [aux_sym__list_plus_repeat1] = STATE(317), + [aux_sym__list_star_repeat1] = STATE(318), + [aux_sym__list_task_repeat1] = STATE(295), + [aux_sym__list_definition_repeat1] = STATE(473), + [aux_sym__list_decimal_period_repeat1] = STATE(474), + [aux_sym__list_decimal_paren_repeat1] = STATE(475), + [aux_sym__list_decimal_parens_repeat1] = STATE(476), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(477), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(478), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(479), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(480), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(481), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(482), + [aux_sym__list_lower_roman_period_repeat1] = STATE(483), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(484), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(485), + [aux_sym__list_upper_roman_period_repeat1] = STATE(545), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(487), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(488), [aux_sym_table_repeat1] = STATE(233), - [aux_sym__block_quote_prefix_repeat1] = STATE(230), - [aux_sym__inline_repeat1] = STATE(273), + [aux_sym__block_quote_prefix_repeat1] = STATE(231), + [aux_sym__inline_repeat1] = STATE(271), [anon_sym_LBRACK] = ACTIONS(470), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_DOT] = ACTIONS(9), @@ -12231,95 +12247,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block_attribute_begin] = ACTIONS(486), }, [59] = { - [sym__block_element] = STATE(419), - [sym_heading] = STATE(419), - [sym_list] = STATE(419), - [sym__list_dash] = STATE(731), - [sym__list_item_dash] = STATE(595), - [sym__list_plus] = STATE(731), - [sym__list_item_plus] = STATE(657), - [sym__list_star] = STATE(731), - [sym__list_item_star] = STATE(570), - [sym__list_task] = STATE(731), - [sym__list_item_task] = STATE(586), - [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(731), - [sym__list_item_definition] = STATE(694), - [sym__list_decimal_period] = STATE(731), - [sym__list_item_decimal_period] = STATE(714), - [sym__list_decimal_paren] = STATE(731), - [sym__list_item_decimal_paren] = STATE(719), - [sym__list_decimal_parens] = STATE(731), - [sym__list_item_decimal_parens] = STATE(746), - [sym__list_lower_alpha_period] = STATE(731), - [sym__list_item_lower_alpha_period] = STATE(748), - [sym__list_lower_alpha_paren] = STATE(731), - [sym__list_item_lower_alpha_paren] = STATE(749), - [sym__list_lower_alpha_parens] = STATE(731), - [sym__list_item_lower_alpha_parens] = STATE(753), - [sym__list_upper_alpha_period] = STATE(731), - [sym__list_item_upper_alpha_period] = STATE(761), - [sym__list_upper_alpha_paren] = STATE(731), - [sym__list_item_upper_alpha_paren] = STATE(764), - [sym__list_upper_alpha_parens] = STATE(731), - [sym__list_item_upper_alpha_parens] = STATE(765), - [sym__list_lower_roman_period] = STATE(731), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(731), - [sym__list_item_lower_roman_paren] = STATE(769), - [sym__list_lower_roman_parens] = STATE(731), - [sym__list_item_lower_roman_parens] = STATE(786), - [sym__list_upper_roman_period] = STATE(731), - [sym__list_item_upper_roman_period] = STATE(791), - [sym__list_upper_roman_paren] = STATE(731), - [sym__list_item_upper_roman_paren] = STATE(793), - [sym__list_upper_roman_parens] = STATE(731), - [sym__list_item_upper_roman_parens] = STATE(799), - [sym_table] = STATE(419), + [sym__block_element] = STATE(420), + [sym_heading] = STATE(420), + [sym_list] = STATE(420), + [sym__list_dash] = STATE(739), + [sym__list_item_dash] = STATE(599), + [sym__list_plus] = STATE(739), + [sym__list_item_plus] = STATE(606), + [sym__list_star] = STATE(739), + [sym__list_item_star] = STATE(664), + [sym__list_task] = STATE(739), + [sym__list_item_task] = STATE(673), + [sym_list_marker_task] = STATE(44), + [sym__list_definition] = STATE(739), + [sym__list_item_definition] = STATE(792), + [sym__list_decimal_period] = STATE(739), + [sym__list_item_decimal_period] = STATE(691), + [sym__list_decimal_paren] = STATE(739), + [sym__list_item_decimal_paren] = STATE(692), + [sym__list_decimal_parens] = STATE(739), + [sym__list_item_decimal_parens] = STATE(710), + [sym__list_lower_alpha_period] = STATE(739), + [sym__list_item_lower_alpha_period] = STATE(714), + [sym__list_lower_alpha_paren] = STATE(739), + [sym__list_item_lower_alpha_paren] = STATE(717), + [sym__list_lower_alpha_parens] = STATE(739), + [sym__list_item_lower_alpha_parens] = STATE(721), + [sym__list_upper_alpha_period] = STATE(739), + [sym__list_item_upper_alpha_period] = STATE(726), + [sym__list_upper_alpha_paren] = STATE(739), + [sym__list_item_upper_alpha_paren] = STATE(747), + [sym__list_upper_alpha_parens] = STATE(739), + [sym__list_item_upper_alpha_parens] = STATE(751), + [sym__list_lower_roman_period] = STATE(739), + [sym__list_item_lower_roman_period] = STATE(753), + [sym__list_lower_roman_paren] = STATE(739), + [sym__list_item_lower_roman_paren] = STATE(755), + [sym__list_lower_roman_parens] = STATE(739), + [sym__list_item_lower_roman_parens] = STATE(760), + [sym__list_upper_roman_period] = STATE(739), + [sym__list_item_upper_roman_period] = STATE(761), + [sym__list_upper_roman_paren] = STATE(739), + [sym__list_item_upper_roman_paren] = STATE(766), + [sym__list_upper_roman_parens] = STATE(739), + [sym__list_item_upper_roman_parens] = STATE(784), + [sym_table] = STATE(420), [sym__table_row] = STATE(233), [sym_table_header] = STATE(233), [sym_table_separator] = STATE(233), [sym_table_row] = STATE(233), - [sym_footnote] = STATE(419), + [sym_footnote] = STATE(420), [sym_footnote_marker_begin] = STATE(1137), - [sym_div] = STATE(419), + [sym_div] = STATE(420), [sym__div_marker_begin] = STATE(1036), - [sym_code_block] = STATE(419), - [sym_raw_block] = STATE(419), - [sym_thematic_break] = STATE(419), - [sym_block_quote] = STATE(419), - [sym__block_quote_content] = STATE(1127), - [sym__block_quote_prefix] = STATE(222), - [sym_link_reference_definition] = STATE(419), - [sym_block_attribute] = STATE(419), - [sym__paragraph] = STATE(419), - [sym__paragraph_content] = STATE(727), - [sym__paragraph_inline_content] = STATE(824), - [sym__inline] = STATE(654), - [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(355), - [aux_sym__list_plus_repeat1] = STATE(356), - [aux_sym__list_star_repeat1] = STATE(357), - [aux_sym__list_task_repeat1] = STATE(294), - [aux_sym__list_definition_repeat1] = STATE(475), - [aux_sym__list_decimal_period_repeat1] = STATE(476), - [aux_sym__list_decimal_paren_repeat1] = STATE(477), - [aux_sym__list_decimal_parens_repeat1] = STATE(478), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(479), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(480), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(481), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(482), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(483), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(484), - [aux_sym__list_lower_roman_period_repeat1] = STATE(485), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(486), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(544), - [aux_sym__list_upper_roman_period_repeat1] = STATE(488), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(489), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(490), + [sym_code_block] = STATE(420), + [sym_raw_block] = STATE(420), + [sym_thematic_break] = STATE(420), + [sym_block_quote] = STATE(420), + [sym__block_quote_content] = STATE(1133), + [sym__block_quote_prefix] = STATE(221), + [sym_link_reference_definition] = STATE(420), + [sym_block_attribute] = STATE(420), + [sym__paragraph] = STATE(420), + [sym__paragraph_content] = STATE(725), + [sym__paragraph_inline_content] = STATE(814), + [sym__inline] = STATE(657), + [sym__symbol_fallback] = STATE(271), + [aux_sym__list_dash_repeat1] = STATE(336), + [aux_sym__list_plus_repeat1] = STATE(317), + [aux_sym__list_star_repeat1] = STATE(318), + [aux_sym__list_task_repeat1] = STATE(295), + [aux_sym__list_definition_repeat1] = STATE(473), + [aux_sym__list_decimal_period_repeat1] = STATE(474), + [aux_sym__list_decimal_paren_repeat1] = STATE(475), + [aux_sym__list_decimal_parens_repeat1] = STATE(476), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(477), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(478), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(479), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(480), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(481), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(482), + [aux_sym__list_lower_roman_period_repeat1] = STATE(483), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(484), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(485), + [aux_sym__list_upper_roman_period_repeat1] = STATE(545), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(487), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(488), [aux_sym_table_repeat1] = STATE(233), - [aux_sym__block_quote_prefix_repeat1] = STATE(230), - [aux_sym__inline_repeat1] = STATE(273), + [aux_sym__block_quote_prefix_repeat1] = STATE(231), + [aux_sym__inline_repeat1] = STATE(271), [anon_sym_LBRACK] = ACTIONS(470), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_DOT] = ACTIONS(9), @@ -12360,109 +12376,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block_attribute_begin] = ACTIONS(486), }, [60] = { - [sym__block_element] = STATE(644), - [sym_heading] = STATE(644), - [sym_list] = STATE(644), - [sym__list_dash] = STATE(598), - [sym__list_item_dash] = STATE(595), - [sym__list_plus] = STATE(598), - [sym__list_item_plus] = STATE(657), - [sym__list_star] = STATE(598), - [sym__list_item_star] = STATE(570), - [sym__list_task] = STATE(598), - [sym__list_item_task] = STATE(586), - [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(598), - [sym__list_item_definition] = STATE(694), - [sym__list_decimal_period] = STATE(598), - [sym__list_item_decimal_period] = STATE(714), - [sym__list_decimal_paren] = STATE(598), - [sym__list_item_decimal_paren] = STATE(719), - [sym__list_decimal_parens] = STATE(598), - [sym__list_item_decimal_parens] = STATE(746), - [sym__list_lower_alpha_period] = STATE(598), - [sym__list_item_lower_alpha_period] = STATE(748), - [sym__list_lower_alpha_paren] = STATE(598), - [sym__list_item_lower_alpha_paren] = STATE(749), - [sym__list_lower_alpha_parens] = STATE(598), - [sym__list_item_lower_alpha_parens] = STATE(753), - [sym__list_upper_alpha_period] = STATE(598), - [sym__list_item_upper_alpha_period] = STATE(761), - [sym__list_upper_alpha_paren] = STATE(598), - [sym__list_item_upper_alpha_paren] = STATE(764), - [sym__list_upper_alpha_parens] = STATE(598), - [sym__list_item_upper_alpha_parens] = STATE(765), - [sym__list_lower_roman_period] = STATE(598), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(598), - [sym__list_item_lower_roman_paren] = STATE(769), - [sym__list_lower_roman_parens] = STATE(598), - [sym__list_item_lower_roman_parens] = STATE(786), - [sym__list_upper_roman_period] = STATE(598), - [sym__list_item_upper_roman_period] = STATE(791), - [sym__list_upper_roman_paren] = STATE(598), - [sym__list_item_upper_roman_paren] = STATE(793), - [sym__list_upper_roman_parens] = STATE(598), - [sym__list_item_upper_roman_parens] = STATE(799), - [sym_table] = STATE(644), - [sym__table_row] = STATE(229), - [sym_table_header] = STATE(229), - [sym_table_separator] = STATE(229), - [sym_table_row] = STATE(229), - [sym_footnote] = STATE(644), - [sym_footnote_marker_begin] = STATE(894), - [sym_div] = STATE(644), + [sym__block_element] = STATE(626), + [sym_heading] = STATE(626), + [sym_list] = STATE(626), + [sym__list_dash] = STATE(557), + [sym__list_item_dash] = STATE(599), + [sym__list_plus] = STATE(557), + [sym__list_item_plus] = STATE(606), + [sym__list_star] = STATE(557), + [sym__list_item_star] = STATE(664), + [sym__list_task] = STATE(557), + [sym__list_item_task] = STATE(673), + [sym_list_marker_task] = STATE(44), + [sym__list_definition] = STATE(557), + [sym__list_item_definition] = STATE(792), + [sym__list_decimal_period] = STATE(557), + [sym__list_item_decimal_period] = STATE(691), + [sym__list_decimal_paren] = STATE(557), + [sym__list_item_decimal_paren] = STATE(692), + [sym__list_decimal_parens] = STATE(557), + [sym__list_item_decimal_parens] = STATE(710), + [sym__list_lower_alpha_period] = STATE(557), + [sym__list_item_lower_alpha_period] = STATE(714), + [sym__list_lower_alpha_paren] = STATE(557), + [sym__list_item_lower_alpha_paren] = STATE(717), + [sym__list_lower_alpha_parens] = STATE(557), + [sym__list_item_lower_alpha_parens] = STATE(721), + [sym__list_upper_alpha_period] = STATE(557), + [sym__list_item_upper_alpha_period] = STATE(726), + [sym__list_upper_alpha_paren] = STATE(557), + [sym__list_item_upper_alpha_paren] = STATE(747), + [sym__list_upper_alpha_parens] = STATE(557), + [sym__list_item_upper_alpha_parens] = STATE(751), + [sym__list_lower_roman_period] = STATE(557), + [sym__list_item_lower_roman_period] = STATE(753), + [sym__list_lower_roman_paren] = STATE(557), + [sym__list_item_lower_roman_paren] = STATE(755), + [sym__list_lower_roman_parens] = STATE(557), + [sym__list_item_lower_roman_parens] = STATE(760), + [sym__list_upper_roman_period] = STATE(557), + [sym__list_item_upper_roman_period] = STATE(761), + [sym__list_upper_roman_paren] = STATE(557), + [sym__list_item_upper_roman_paren] = STATE(766), + [sym__list_upper_roman_parens] = STATE(557), + [sym__list_item_upper_roman_parens] = STATE(784), + [sym_table] = STATE(626), + [sym__table_row] = STATE(228), + [sym_table_header] = STATE(228), + [sym_table_separator] = STATE(228), + [sym_table_row] = STATE(228), + [sym_footnote] = STATE(626), + [sym_footnote_marker_begin] = STATE(1141), + [sym_div] = STATE(626), [sym__div_marker_begin] = STATE(1073), - [sym_code_block] = STATE(644), - [sym_raw_block] = STATE(644), - [sym_thematic_break] = STATE(644), - [sym_block_quote] = STATE(644), + [sym_code_block] = STATE(626), + [sym_raw_block] = STATE(626), + [sym_thematic_break] = STATE(626), + [sym_block_quote] = STATE(626), [sym__block_quote_prefix] = STATE(224), - [sym_link_reference_definition] = STATE(644), - [sym_block_attribute] = STATE(644), - [sym__paragraph] = STATE(644), - [sym__paragraph_content] = STATE(800), - [sym__paragraph_inline_content] = STATE(824), - [sym__inline] = STATE(654), - [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(333), - [aux_sym__list_plus_repeat1] = STATE(334), - [aux_sym__list_star_repeat1] = STATE(335), - [aux_sym__list_task_repeat1] = STATE(304), - [aux_sym__list_definition_repeat1] = STATE(507), - [aux_sym__list_decimal_period_repeat1] = STATE(508), - [aux_sym__list_decimal_paren_repeat1] = STATE(509), - [aux_sym__list_decimal_parens_repeat1] = STATE(510), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(511), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(512), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(513), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(514), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(515), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(516), - [aux_sym__list_lower_roman_period_repeat1] = STATE(517), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(518), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(519), - [aux_sym__list_upper_roman_period_repeat1] = STATE(520), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(521), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(522), - [aux_sym_table_repeat1] = STATE(229), - [aux_sym__block_quote_prefix_repeat1] = STATE(230), - [aux_sym__inline_repeat1] = STATE(273), - [anon_sym_LBRACK] = ACTIONS(460), - [anon_sym_LBRACK_CARET] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [aux_sym_identifier_token1] = ACTIONS(460), - [aux_sym__inline_token1] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_PERCENT] = ACTIONS(460), + [sym_link_reference_definition] = STATE(626), + [sym_block_attribute] = STATE(626), + [sym__paragraph] = STATE(626), + [sym__paragraph_content] = STATE(796), + [sym__paragraph_inline_content] = STATE(814), + [sym__inline] = STATE(657), + [sym__symbol_fallback] = STATE(271), + [aux_sym__list_dash_repeat1] = STATE(338), + [aux_sym__list_plus_repeat1] = STATE(339), + [aux_sym__list_star_repeat1] = STATE(340), + [aux_sym__list_task_repeat1] = STATE(296), + [aux_sym__list_definition_repeat1] = STATE(505), + [aux_sym__list_decimal_period_repeat1] = STATE(506), + [aux_sym__list_decimal_paren_repeat1] = STATE(507), + [aux_sym__list_decimal_parens_repeat1] = STATE(508), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(509), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(510), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(511), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(512), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(513), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(514), + [aux_sym__list_lower_roman_period_repeat1] = STATE(515), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(516), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(517), + [aux_sym__list_upper_roman_period_repeat1] = STATE(518), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(519), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(520), + [aux_sym_table_repeat1] = STATE(228), + [aux_sym__block_quote_prefix_repeat1] = STATE(231), + [aux_sym__inline_repeat1] = STATE(271), + [anon_sym_LBRACK] = ACTIONS(462), + [anon_sym_LBRACK_CARET] = ACTIONS(462), + [anon_sym_DOT] = ACTIONS(462), + [aux_sym_identifier_token1] = ACTIONS(462), + [aux_sym__inline_token1] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_PERCENT] = ACTIONS(462), [sym__newline] = ACTIONS(488), - [sym__heading_begin] = ACTIONS(436), + [sym__heading_begin] = ACTIONS(438), [sym__div_begin] = ACTIONS(17), - [sym__code_block_begin] = ACTIONS(438), - [sym_list_marker_dash] = ACTIONS(462), - [sym_list_marker_star] = ACTIONS(462), - [sym_list_marker_plus] = ACTIONS(462), - [sym__list_marker_task_begin] = ACTIONS(462), + [sym__code_block_begin] = ACTIONS(440), + [sym_list_marker_dash] = ACTIONS(464), + [sym_list_marker_star] = ACTIONS(464), + [sym_list_marker_plus] = ACTIONS(464), + [sym__list_marker_task_begin] = ACTIONS(464), [sym_list_marker_definition] = ACTIONS(29), [sym_list_marker_decimal_period] = ACTIONS(31), [sym_list_marker_lower_alpha_period] = ACTIONS(33), @@ -12479,85 +12495,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(55), [sym_list_marker_lower_roman_parens] = ACTIONS(57), [sym_list_marker_upper_roman_parens] = ACTIONS(59), - [sym__block_quote_begin] = ACTIONS(440), - [sym__block_quote_continuation] = ACTIONS(462), - [sym__thematic_break_dash] = ACTIONS(444), - [sym__thematic_break_star] = ACTIONS(444), - [sym__table_header_begin] = ACTIONS(462), - [sym__table_separator_begin] = ACTIONS(462), - [sym__table_row_begin] = ACTIONS(462), - [sym__block_attribute_begin] = ACTIONS(452), + [sym__block_quote_begin] = ACTIONS(442), + [sym__block_quote_continuation] = ACTIONS(464), + [sym__thematic_break_dash] = ACTIONS(446), + [sym__thematic_break_star] = ACTIONS(446), + [sym__table_header_begin] = ACTIONS(464), + [sym__table_separator_begin] = ACTIONS(464), + [sym__table_row_begin] = ACTIONS(464), + [sym__block_attribute_begin] = ACTIONS(454), }, [61] = { - [sym__block_element] = STATE(945), - [sym_heading] = STATE(945), - [sym_list] = STATE(945), - [sym__list_dash] = STATE(1007), - [sym__list_item_dash] = STATE(595), - [sym__list_plus] = STATE(1007), - [sym__list_item_plus] = STATE(657), - [sym__list_star] = STATE(1007), - [sym__list_item_star] = STATE(570), - [sym__list_task] = STATE(1007), - [sym__list_item_task] = STATE(586), - [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(1007), - [sym__list_item_definition] = STATE(694), - [sym__list_decimal_period] = STATE(1007), - [sym__list_item_decimal_period] = STATE(714), - [sym__list_decimal_paren] = STATE(1007), - [sym__list_item_decimal_paren] = STATE(719), - [sym__list_decimal_parens] = STATE(1007), - [sym__list_item_decimal_parens] = STATE(746), - [sym__list_lower_alpha_period] = STATE(1007), - [sym__list_item_lower_alpha_period] = STATE(748), - [sym__list_lower_alpha_paren] = STATE(1007), - [sym__list_item_lower_alpha_paren] = STATE(749), - [sym__list_lower_alpha_parens] = STATE(1007), - [sym__list_item_lower_alpha_parens] = STATE(753), - [sym__list_upper_alpha_period] = STATE(1007), - [sym__list_item_upper_alpha_period] = STATE(761), - [sym__list_upper_alpha_paren] = STATE(1007), - [sym__list_item_upper_alpha_paren] = STATE(764), - [sym__list_upper_alpha_parens] = STATE(1007), - [sym__list_item_upper_alpha_parens] = STATE(765), - [sym__list_lower_roman_period] = STATE(1007), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(1007), - [sym__list_item_lower_roman_paren] = STATE(769), - [sym__list_lower_roman_parens] = STATE(1007), - [sym__list_item_lower_roman_parens] = STATE(786), - [sym__list_upper_roman_period] = STATE(1007), - [sym__list_item_upper_roman_period] = STATE(791), - [sym__list_upper_roman_paren] = STATE(1007), - [sym__list_item_upper_roman_paren] = STATE(793), - [sym__list_upper_roman_parens] = STATE(1007), - [sym__list_item_upper_roman_parens] = STATE(799), - [sym_table] = STATE(945), - [sym__table_row] = STATE(234), - [sym_table_header] = STATE(234), - [sym_table_separator] = STATE(234), - [sym_table_row] = STATE(234), - [sym_footnote] = STATE(945), + [sym__block_element] = STATE(956), + [sym_heading] = STATE(956), + [sym_list] = STATE(956), + [sym__list_dash] = STATE(1004), + [sym__list_item_dash] = STATE(599), + [sym__list_plus] = STATE(1004), + [sym__list_item_plus] = STATE(606), + [sym__list_star] = STATE(1004), + [sym__list_item_star] = STATE(664), + [sym__list_task] = STATE(1004), + [sym__list_item_task] = STATE(673), + [sym_list_marker_task] = STATE(44), + [sym__list_definition] = STATE(1004), + [sym__list_item_definition] = STATE(792), + [sym__list_decimal_period] = STATE(1004), + [sym__list_item_decimal_period] = STATE(691), + [sym__list_decimal_paren] = STATE(1004), + [sym__list_item_decimal_paren] = STATE(692), + [sym__list_decimal_parens] = STATE(1004), + [sym__list_item_decimal_parens] = STATE(710), + [sym__list_lower_alpha_period] = STATE(1004), + [sym__list_item_lower_alpha_period] = STATE(714), + [sym__list_lower_alpha_paren] = STATE(1004), + [sym__list_item_lower_alpha_paren] = STATE(717), + [sym__list_lower_alpha_parens] = STATE(1004), + [sym__list_item_lower_alpha_parens] = STATE(721), + [sym__list_upper_alpha_period] = STATE(1004), + [sym__list_item_upper_alpha_period] = STATE(726), + [sym__list_upper_alpha_paren] = STATE(1004), + [sym__list_item_upper_alpha_paren] = STATE(747), + [sym__list_upper_alpha_parens] = STATE(1004), + [sym__list_item_upper_alpha_parens] = STATE(751), + [sym__list_lower_roman_period] = STATE(1004), + [sym__list_item_lower_roman_period] = STATE(753), + [sym__list_lower_roman_paren] = STATE(1004), + [sym__list_item_lower_roman_paren] = STATE(755), + [sym__list_lower_roman_parens] = STATE(1004), + [sym__list_item_lower_roman_parens] = STATE(760), + [sym__list_upper_roman_period] = STATE(1004), + [sym__list_item_upper_roman_period] = STATE(761), + [sym__list_upper_roman_paren] = STATE(1004), + [sym__list_item_upper_roman_paren] = STATE(766), + [sym__list_upper_roman_parens] = STATE(1004), + [sym__list_item_upper_roman_parens] = STATE(784), + [sym_table] = STATE(956), + [sym__table_row] = STATE(232), + [sym_table_header] = STATE(232), + [sym_table_separator] = STATE(232), + [sym_table_row] = STATE(232), + [sym_footnote] = STATE(956), [sym_footnote_marker_begin] = STATE(1135), - [sym_div] = STATE(945), + [sym_div] = STATE(956), [sym__div_marker_begin] = STATE(1017), - [sym_code_block] = STATE(945), - [sym_raw_block] = STATE(945), - [sym_thematic_break] = STATE(945), - [sym_block_quote] = STATE(945), - [sym__block_quote_prefix] = STATE(225), - [sym_link_reference_definition] = STATE(945), - [sym_block_attribute] = STATE(945), - [sym__paragraph] = STATE(945), - [sym__paragraph_content] = STATE(690), - [sym__paragraph_inline_content] = STATE(824), - [sym__inline] = STATE(654), - [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(316), - [aux_sym__list_plus_repeat1] = STATE(336), - [aux_sym__list_star_repeat1] = STATE(318), - [aux_sym__list_task_repeat1] = STATE(288), + [sym_code_block] = STATE(956), + [sym_raw_block] = STATE(956), + [sym_thematic_break] = STATE(956), + [sym_block_quote] = STATE(956), + [sym__block_quote_prefix] = STATE(222), + [sym_link_reference_definition] = STATE(956), + [sym_block_attribute] = STATE(956), + [sym__paragraph] = STATE(956), + [sym__paragraph_content] = STATE(689), + [sym__paragraph_inline_content] = STATE(814), + [sym__inline] = STATE(657), + [sym__symbol_fallback] = STATE(271), + [aux_sym__list_dash_repeat1] = STATE(341), + [aux_sym__list_plus_repeat1] = STATE(342), + [aux_sym__list_star_repeat1] = STATE(343), + [aux_sym__list_task_repeat1] = STATE(314), [aux_sym__list_definition_repeat1] = STATE(456), [aux_sym__list_decimal_period_repeat1] = STATE(457), [aux_sym__list_decimal_paren_repeat1] = STATE(458), @@ -12574,24 +12590,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_upper_roman_period_repeat1] = STATE(469), [aux_sym__list_upper_roman_paren_repeat1] = STATE(470), [aux_sym__list_upper_roman_parens_repeat1] = STATE(471), - [aux_sym_table_repeat1] = STATE(234), - [aux_sym__block_quote_prefix_repeat1] = STATE(230), - [aux_sym__inline_repeat1] = STATE(273), - [anon_sym_LBRACK] = ACTIONS(460), - [anon_sym_LBRACK_CARET] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [aux_sym_identifier_token1] = ACTIONS(460), - [aux_sym__inline_token1] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_PERCENT] = ACTIONS(460), + [aux_sym_table_repeat1] = STATE(232), + [aux_sym__block_quote_prefix_repeat1] = STATE(231), + [aux_sym__inline_repeat1] = STATE(271), + [anon_sym_LBRACK] = ACTIONS(462), + [anon_sym_LBRACK_CARET] = ACTIONS(462), + [anon_sym_DOT] = ACTIONS(462), + [aux_sym_identifier_token1] = ACTIONS(462), + [aux_sym__inline_token1] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_PERCENT] = ACTIONS(462), [sym__newline] = ACTIONS(490), [sym__heading_begin] = ACTIONS(368), [sym__div_begin] = ACTIONS(17), [sym__code_block_begin] = ACTIONS(370), - [sym_list_marker_dash] = ACTIONS(462), - [sym_list_marker_star] = ACTIONS(462), - [sym_list_marker_plus] = ACTIONS(462), - [sym__list_marker_task_begin] = ACTIONS(462), + [sym_list_marker_dash] = ACTIONS(464), + [sym_list_marker_star] = ACTIONS(464), + [sym_list_marker_plus] = ACTIONS(464), + [sym__list_marker_task_begin] = ACTIONS(464), [sym_list_marker_definition] = ACTIONS(29), [sym_list_marker_decimal_period] = ACTIONS(31), [sym_list_marker_lower_alpha_period] = ACTIONS(33), @@ -12609,104 +12625,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_lower_roman_parens] = ACTIONS(57), [sym_list_marker_upper_roman_parens] = ACTIONS(59), [sym__block_quote_begin] = ACTIONS(372), - [sym__block_quote_continuation] = ACTIONS(462), + [sym__block_quote_continuation] = ACTIONS(464), [sym__thematic_break_dash] = ACTIONS(376), [sym__thematic_break_star] = ACTIONS(376), - [sym__table_header_begin] = ACTIONS(462), - [sym__table_separator_begin] = ACTIONS(462), - [sym__table_row_begin] = ACTIONS(462), + [sym__table_header_begin] = ACTIONS(464), + [sym__table_separator_begin] = ACTIONS(464), + [sym__table_row_begin] = ACTIONS(464), [sym__block_attribute_begin] = ACTIONS(384), }, [62] = { - [sym__block_element] = STATE(419), - [sym_heading] = STATE(419), - [sym_list] = STATE(419), - [sym__list_dash] = STATE(731), - [sym__list_item_dash] = STATE(595), - [sym__list_plus] = STATE(731), - [sym__list_item_plus] = STATE(657), - [sym__list_star] = STATE(731), - [sym__list_item_star] = STATE(570), - [sym__list_task] = STATE(731), - [sym__list_item_task] = STATE(586), - [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(731), - [sym__list_item_definition] = STATE(694), - [sym__list_decimal_period] = STATE(731), - [sym__list_item_decimal_period] = STATE(714), - [sym__list_decimal_paren] = STATE(731), - [sym__list_item_decimal_paren] = STATE(719), - [sym__list_decimal_parens] = STATE(731), - [sym__list_item_decimal_parens] = STATE(746), - [sym__list_lower_alpha_period] = STATE(731), - [sym__list_item_lower_alpha_period] = STATE(748), - [sym__list_lower_alpha_paren] = STATE(731), - [sym__list_item_lower_alpha_paren] = STATE(749), - [sym__list_lower_alpha_parens] = STATE(731), - [sym__list_item_lower_alpha_parens] = STATE(753), - [sym__list_upper_alpha_period] = STATE(731), - [sym__list_item_upper_alpha_period] = STATE(761), - [sym__list_upper_alpha_paren] = STATE(731), - [sym__list_item_upper_alpha_paren] = STATE(764), - [sym__list_upper_alpha_parens] = STATE(731), - [sym__list_item_upper_alpha_parens] = STATE(765), - [sym__list_lower_roman_period] = STATE(731), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(731), - [sym__list_item_lower_roman_paren] = STATE(769), - [sym__list_lower_roman_parens] = STATE(731), - [sym__list_item_lower_roman_parens] = STATE(786), - [sym__list_upper_roman_period] = STATE(731), - [sym__list_item_upper_roman_period] = STATE(791), - [sym__list_upper_roman_paren] = STATE(731), - [sym__list_item_upper_roman_paren] = STATE(793), - [sym__list_upper_roman_parens] = STATE(731), - [sym__list_item_upper_roman_parens] = STATE(799), - [sym_table] = STATE(419), + [sym__block_element] = STATE(420), + [sym_heading] = STATE(420), + [sym_list] = STATE(420), + [sym__list_dash] = STATE(739), + [sym__list_item_dash] = STATE(599), + [sym__list_plus] = STATE(739), + [sym__list_item_plus] = STATE(606), + [sym__list_star] = STATE(739), + [sym__list_item_star] = STATE(664), + [sym__list_task] = STATE(739), + [sym__list_item_task] = STATE(673), + [sym_list_marker_task] = STATE(44), + [sym__list_definition] = STATE(739), + [sym__list_item_definition] = STATE(792), + [sym__list_decimal_period] = STATE(739), + [sym__list_item_decimal_period] = STATE(691), + [sym__list_decimal_paren] = STATE(739), + [sym__list_item_decimal_paren] = STATE(692), + [sym__list_decimal_parens] = STATE(739), + [sym__list_item_decimal_parens] = STATE(710), + [sym__list_lower_alpha_period] = STATE(739), + [sym__list_item_lower_alpha_period] = STATE(714), + [sym__list_lower_alpha_paren] = STATE(739), + [sym__list_item_lower_alpha_paren] = STATE(717), + [sym__list_lower_alpha_parens] = STATE(739), + [sym__list_item_lower_alpha_parens] = STATE(721), + [sym__list_upper_alpha_period] = STATE(739), + [sym__list_item_upper_alpha_period] = STATE(726), + [sym__list_upper_alpha_paren] = STATE(739), + [sym__list_item_upper_alpha_paren] = STATE(747), + [sym__list_upper_alpha_parens] = STATE(739), + [sym__list_item_upper_alpha_parens] = STATE(751), + [sym__list_lower_roman_period] = STATE(739), + [sym__list_item_lower_roman_period] = STATE(753), + [sym__list_lower_roman_paren] = STATE(739), + [sym__list_item_lower_roman_paren] = STATE(755), + [sym__list_lower_roman_parens] = STATE(739), + [sym__list_item_lower_roman_parens] = STATE(760), + [sym__list_upper_roman_period] = STATE(739), + [sym__list_item_upper_roman_period] = STATE(761), + [sym__list_upper_roman_paren] = STATE(739), + [sym__list_item_upper_roman_paren] = STATE(766), + [sym__list_upper_roman_parens] = STATE(739), + [sym__list_item_upper_roman_parens] = STATE(784), + [sym_table] = STATE(420), [sym__table_row] = STATE(233), [sym_table_header] = STATE(233), [sym_table_separator] = STATE(233), [sym_table_row] = STATE(233), - [sym_footnote] = STATE(419), + [sym_footnote] = STATE(420), [sym_footnote_marker_begin] = STATE(1137), - [sym_div] = STATE(419), + [sym_div] = STATE(420), [sym__div_marker_begin] = STATE(1036), - [sym_code_block] = STATE(419), - [sym_raw_block] = STATE(419), - [sym_thematic_break] = STATE(419), - [sym_block_quote] = STATE(419), - [sym__block_quote_content] = STATE(1116), - [sym__block_quote_prefix] = STATE(222), - [sym_link_reference_definition] = STATE(419), - [sym_block_attribute] = STATE(419), - [sym__paragraph] = STATE(419), - [sym__paragraph_content] = STATE(727), - [sym__paragraph_inline_content] = STATE(824), - [sym__inline] = STATE(654), - [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(355), - [aux_sym__list_plus_repeat1] = STATE(356), - [aux_sym__list_star_repeat1] = STATE(357), - [aux_sym__list_task_repeat1] = STATE(294), - [aux_sym__list_definition_repeat1] = STATE(475), - [aux_sym__list_decimal_period_repeat1] = STATE(476), - [aux_sym__list_decimal_paren_repeat1] = STATE(477), - [aux_sym__list_decimal_parens_repeat1] = STATE(478), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(479), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(480), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(481), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(482), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(483), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(484), - [aux_sym__list_lower_roman_period_repeat1] = STATE(485), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(486), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(544), - [aux_sym__list_upper_roman_period_repeat1] = STATE(488), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(489), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(490), + [sym_code_block] = STATE(420), + [sym_raw_block] = STATE(420), + [sym_thematic_break] = STATE(420), + [sym_block_quote] = STATE(420), + [sym__block_quote_content] = STATE(898), + [sym__block_quote_prefix] = STATE(221), + [sym_link_reference_definition] = STATE(420), + [sym_block_attribute] = STATE(420), + [sym__paragraph] = STATE(420), + [sym__paragraph_content] = STATE(725), + [sym__paragraph_inline_content] = STATE(814), + [sym__inline] = STATE(657), + [sym__symbol_fallback] = STATE(271), + [aux_sym__list_dash_repeat1] = STATE(336), + [aux_sym__list_plus_repeat1] = STATE(317), + [aux_sym__list_star_repeat1] = STATE(318), + [aux_sym__list_task_repeat1] = STATE(295), + [aux_sym__list_definition_repeat1] = STATE(473), + [aux_sym__list_decimal_period_repeat1] = STATE(474), + [aux_sym__list_decimal_paren_repeat1] = STATE(475), + [aux_sym__list_decimal_parens_repeat1] = STATE(476), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(477), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(478), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(479), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(480), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(481), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(482), + [aux_sym__list_lower_roman_period_repeat1] = STATE(483), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(484), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(485), + [aux_sym__list_upper_roman_period_repeat1] = STATE(545), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(487), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(488), [aux_sym_table_repeat1] = STATE(233), - [aux_sym__block_quote_prefix_repeat1] = STATE(230), - [aux_sym__inline_repeat1] = STATE(273), + [aux_sym__block_quote_prefix_repeat1] = STATE(231), + [aux_sym__inline_repeat1] = STATE(271), [anon_sym_LBRACK] = ACTIONS(470), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_DOT] = ACTIONS(9), @@ -12747,109 +12763,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block_attribute_begin] = ACTIONS(486), }, [63] = { - [sym__block_element] = STATE(126), - [sym_heading] = STATE(126), - [sym_list] = STATE(126), - [sym__list_dash] = STATE(129), - [sym__list_item_dash] = STATE(595), - [sym__list_plus] = STATE(129), - [sym__list_item_plus] = STATE(657), - [sym__list_star] = STATE(129), - [sym__list_item_star] = STATE(570), - [sym__list_task] = STATE(129), - [sym__list_item_task] = STATE(586), - [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(129), - [sym__list_item_definition] = STATE(694), - [sym__list_decimal_period] = STATE(129), - [sym__list_item_decimal_period] = STATE(714), - [sym__list_decimal_paren] = STATE(129), - [sym__list_item_decimal_paren] = STATE(719), - [sym__list_decimal_parens] = STATE(129), - [sym__list_item_decimal_parens] = STATE(746), - [sym__list_lower_alpha_period] = STATE(129), - [sym__list_item_lower_alpha_period] = STATE(748), - [sym__list_lower_alpha_paren] = STATE(129), - [sym__list_item_lower_alpha_paren] = STATE(749), - [sym__list_lower_alpha_parens] = STATE(129), - [sym__list_item_lower_alpha_parens] = STATE(753), - [sym__list_upper_alpha_period] = STATE(129), - [sym__list_item_upper_alpha_period] = STATE(761), - [sym__list_upper_alpha_paren] = STATE(129), - [sym__list_item_upper_alpha_paren] = STATE(764), - [sym__list_upper_alpha_parens] = STATE(129), - [sym__list_item_upper_alpha_parens] = STATE(765), - [sym__list_lower_roman_period] = STATE(129), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(129), - [sym__list_item_lower_roman_paren] = STATE(769), - [sym__list_lower_roman_parens] = STATE(129), - [sym__list_item_lower_roman_parens] = STATE(786), - [sym__list_upper_roman_period] = STATE(129), - [sym__list_item_upper_roman_period] = STATE(791), - [sym__list_upper_roman_paren] = STATE(129), - [sym__list_item_upper_roman_paren] = STATE(793), - [sym__list_upper_roman_parens] = STATE(129), - [sym__list_item_upper_roman_parens] = STATE(799), - [sym_table] = STATE(126), + [sym__block_element] = STATE(128), + [sym_heading] = STATE(128), + [sym_list] = STATE(128), + [sym__list_dash] = STATE(131), + [sym__list_item_dash] = STATE(599), + [sym__list_plus] = STATE(131), + [sym__list_item_plus] = STATE(606), + [sym__list_star] = STATE(131), + [sym__list_item_star] = STATE(664), + [sym__list_task] = STATE(131), + [sym__list_item_task] = STATE(673), + [sym_list_marker_task] = STATE(44), + [sym__list_definition] = STATE(131), + [sym__list_item_definition] = STATE(792), + [sym__list_decimal_period] = STATE(131), + [sym__list_item_decimal_period] = STATE(691), + [sym__list_decimal_paren] = STATE(131), + [sym__list_item_decimal_paren] = STATE(692), + [sym__list_decimal_parens] = STATE(131), + [sym__list_item_decimal_parens] = STATE(710), + [sym__list_lower_alpha_period] = STATE(131), + [sym__list_item_lower_alpha_period] = STATE(714), + [sym__list_lower_alpha_paren] = STATE(131), + [sym__list_item_lower_alpha_paren] = STATE(717), + [sym__list_lower_alpha_parens] = STATE(131), + [sym__list_item_lower_alpha_parens] = STATE(721), + [sym__list_upper_alpha_period] = STATE(131), + [sym__list_item_upper_alpha_period] = STATE(726), + [sym__list_upper_alpha_paren] = STATE(131), + [sym__list_item_upper_alpha_paren] = STATE(747), + [sym__list_upper_alpha_parens] = STATE(131), + [sym__list_item_upper_alpha_parens] = STATE(751), + [sym__list_lower_roman_period] = STATE(131), + [sym__list_item_lower_roman_period] = STATE(753), + [sym__list_lower_roman_paren] = STATE(131), + [sym__list_item_lower_roman_paren] = STATE(755), + [sym__list_lower_roman_parens] = STATE(131), + [sym__list_item_lower_roman_parens] = STATE(760), + [sym__list_upper_roman_period] = STATE(131), + [sym__list_item_upper_roman_period] = STATE(761), + [sym__list_upper_roman_paren] = STATE(131), + [sym__list_item_upper_roman_paren] = STATE(766), + [sym__list_upper_roman_parens] = STATE(131), + [sym__list_item_upper_roman_parens] = STATE(784), + [sym_table] = STATE(128), [sym__table_row] = STATE(67), [sym_table_header] = STATE(67), [sym_table_separator] = STATE(67), [sym_table_row] = STATE(67), - [sym_footnote] = STATE(126), + [sym_footnote] = STATE(128), [sym_footnote_marker_begin] = STATE(1139), - [sym_div] = STATE(126), + [sym_div] = STATE(128), [sym__div_marker_begin] = STATE(1055), - [sym_code_block] = STATE(126), - [sym_raw_block] = STATE(126), - [sym_thematic_break] = STATE(126), - [sym_block_quote] = STATE(126), + [sym_code_block] = STATE(128), + [sym_raw_block] = STATE(128), + [sym_thematic_break] = STATE(128), + [sym_block_quote] = STATE(128), [sym__block_quote_prefix] = STATE(223), - [sym_link_reference_definition] = STATE(126), - [sym_block_attribute] = STATE(126), - [sym__paragraph] = STATE(126), - [sym__paragraph_content] = STATE(766), - [sym__paragraph_inline_content] = STATE(824), - [sym__inline] = STATE(654), - [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(323), - [aux_sym__list_plus_repeat1] = STATE(324), - [aux_sym__list_star_repeat1] = STATE(325), - [aux_sym__list_task_repeat1] = STATE(299), - [aux_sym__list_definition_repeat1] = STATE(491), - [aux_sym__list_decimal_period_repeat1] = STATE(492), - [aux_sym__list_decimal_paren_repeat1] = STATE(493), - [aux_sym__list_decimal_parens_repeat1] = STATE(494), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(495), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(496), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(497), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(498), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(499), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(500), - [aux_sym__list_lower_roman_period_repeat1] = STATE(501), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(502), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(503), - [aux_sym__list_upper_roman_period_repeat1] = STATE(504), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(505), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(506), + [sym_link_reference_definition] = STATE(128), + [sym_block_attribute] = STATE(128), + [sym__paragraph] = STATE(128), + [sym__paragraph_content] = STATE(765), + [sym__paragraph_inline_content] = STATE(814), + [sym__inline] = STATE(657), + [sym__symbol_fallback] = STATE(271), + [aux_sym__list_dash_repeat1] = STATE(326), + [aux_sym__list_plus_repeat1] = STATE(327), + [aux_sym__list_star_repeat1] = STATE(328), + [aux_sym__list_task_repeat1] = STATE(289), + [aux_sym__list_definition_repeat1] = STATE(489), + [aux_sym__list_decimal_period_repeat1] = STATE(490), + [aux_sym__list_decimal_paren_repeat1] = STATE(491), + [aux_sym__list_decimal_parens_repeat1] = STATE(492), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(493), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(494), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(495), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(496), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(497), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(498), + [aux_sym__list_lower_roman_period_repeat1] = STATE(499), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(500), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(501), + [aux_sym__list_upper_roman_period_repeat1] = STATE(502), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(503), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(504), [aux_sym_table_repeat1] = STATE(67), - [aux_sym__block_quote_prefix_repeat1] = STATE(230), - [aux_sym__inline_repeat1] = STATE(273), - [anon_sym_LBRACK] = ACTIONS(460), - [anon_sym_LBRACK_CARET] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [aux_sym_identifier_token1] = ACTIONS(460), - [aux_sym__inline_token1] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_PERCENT] = ACTIONS(460), - [sym__newline] = ACTIONS(464), + [aux_sym__block_quote_prefix_repeat1] = STATE(231), + [aux_sym__inline_repeat1] = STATE(271), + [anon_sym_LBRACK] = ACTIONS(462), + [anon_sym_LBRACK_CARET] = ACTIONS(462), + [anon_sym_DOT] = ACTIONS(462), + [aux_sym_identifier_token1] = ACTIONS(462), + [aux_sym__inline_token1] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_PERCENT] = ACTIONS(462), + [sym__newline] = ACTIONS(466), [sym__heading_begin] = ACTIONS(15), [sym__div_begin] = ACTIONS(17), - [sym__code_block_begin] = ACTIONS(83), - [sym_list_marker_dash] = ACTIONS(462), - [sym_list_marker_star] = ACTIONS(462), - [sym_list_marker_plus] = ACTIONS(462), - [sym__list_marker_task_begin] = ACTIONS(462), + [sym__code_block_begin] = ACTIONS(81), + [sym_list_marker_dash] = ACTIONS(464), + [sym_list_marker_star] = ACTIONS(464), + [sym_list_marker_plus] = ACTIONS(464), + [sym__list_marker_task_begin] = ACTIONS(464), [sym_list_marker_definition] = ACTIONS(29), [sym_list_marker_decimal_period] = ACTIONS(31), [sym_list_marker_lower_alpha_period] = ACTIONS(33), @@ -12866,105 +12882,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_list_marker_upper_alpha_parens] = ACTIONS(55), [sym_list_marker_lower_roman_parens] = ACTIONS(57), [sym_list_marker_upper_roman_parens] = ACTIONS(59), - [sym__block_quote_begin] = ACTIONS(85), - [sym__block_quote_continuation] = ACTIONS(462), - [sym__thematic_break_dash] = ACTIONS(87), - [sym__thematic_break_star] = ACTIONS(87), - [sym__table_header_begin] = ACTIONS(462), - [sym__table_separator_begin] = ACTIONS(462), - [sym__table_row_begin] = ACTIONS(462), - [sym__block_attribute_begin] = ACTIONS(95), + [sym__block_quote_begin] = ACTIONS(83), + [sym__block_quote_continuation] = ACTIONS(464), + [sym__thematic_break_dash] = ACTIONS(85), + [sym__thematic_break_star] = ACTIONS(85), + [sym__table_header_begin] = ACTIONS(464), + [sym__table_separator_begin] = ACTIONS(464), + [sym__table_row_begin] = ACTIONS(464), + [sym__block_attribute_begin] = ACTIONS(93), }, [64] = { - [sym__block_element] = STATE(419), - [sym_heading] = STATE(419), - [sym_list] = STATE(419), - [sym__list_dash] = STATE(731), - [sym__list_item_dash] = STATE(595), - [sym__list_plus] = STATE(731), - [sym__list_item_plus] = STATE(657), - [sym__list_star] = STATE(731), - [sym__list_item_star] = STATE(570), - [sym__list_task] = STATE(731), - [sym__list_item_task] = STATE(586), - [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(731), - [sym__list_item_definition] = STATE(694), - [sym__list_decimal_period] = STATE(731), - [sym__list_item_decimal_period] = STATE(714), - [sym__list_decimal_paren] = STATE(731), - [sym__list_item_decimal_paren] = STATE(719), - [sym__list_decimal_parens] = STATE(731), - [sym__list_item_decimal_parens] = STATE(746), - [sym__list_lower_alpha_period] = STATE(731), - [sym__list_item_lower_alpha_period] = STATE(748), - [sym__list_lower_alpha_paren] = STATE(731), - [sym__list_item_lower_alpha_paren] = STATE(749), - [sym__list_lower_alpha_parens] = STATE(731), - [sym__list_item_lower_alpha_parens] = STATE(753), - [sym__list_upper_alpha_period] = STATE(731), - [sym__list_item_upper_alpha_period] = STATE(761), - [sym__list_upper_alpha_paren] = STATE(731), - [sym__list_item_upper_alpha_paren] = STATE(764), - [sym__list_upper_alpha_parens] = STATE(731), - [sym__list_item_upper_alpha_parens] = STATE(765), - [sym__list_lower_roman_period] = STATE(731), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(731), - [sym__list_item_lower_roman_paren] = STATE(769), - [sym__list_lower_roman_parens] = STATE(731), - [sym__list_item_lower_roman_parens] = STATE(786), - [sym__list_upper_roman_period] = STATE(731), - [sym__list_item_upper_roman_period] = STATE(791), - [sym__list_upper_roman_paren] = STATE(731), - [sym__list_item_upper_roman_paren] = STATE(793), - [sym__list_upper_roman_parens] = STATE(731), - [sym__list_item_upper_roman_parens] = STATE(799), - [sym_table] = STATE(419), + [sym__block_element] = STATE(420), + [sym_heading] = STATE(420), + [sym_list] = STATE(420), + [sym__list_dash] = STATE(739), + [sym__list_item_dash] = STATE(599), + [sym__list_plus] = STATE(739), + [sym__list_item_plus] = STATE(606), + [sym__list_star] = STATE(739), + [sym__list_item_star] = STATE(664), + [sym__list_task] = STATE(739), + [sym__list_item_task] = STATE(673), + [sym_list_marker_task] = STATE(44), + [sym__list_definition] = STATE(739), + [sym__list_item_definition] = STATE(792), + [sym__list_decimal_period] = STATE(739), + [sym__list_item_decimal_period] = STATE(691), + [sym__list_decimal_paren] = STATE(739), + [sym__list_item_decimal_paren] = STATE(692), + [sym__list_decimal_parens] = STATE(739), + [sym__list_item_decimal_parens] = STATE(710), + [sym__list_lower_alpha_period] = STATE(739), + [sym__list_item_lower_alpha_period] = STATE(714), + [sym__list_lower_alpha_paren] = STATE(739), + [sym__list_item_lower_alpha_paren] = STATE(717), + [sym__list_lower_alpha_parens] = STATE(739), + [sym__list_item_lower_alpha_parens] = STATE(721), + [sym__list_upper_alpha_period] = STATE(739), + [sym__list_item_upper_alpha_period] = STATE(726), + [sym__list_upper_alpha_paren] = STATE(739), + [sym__list_item_upper_alpha_paren] = STATE(747), + [sym__list_upper_alpha_parens] = STATE(739), + [sym__list_item_upper_alpha_parens] = STATE(751), + [sym__list_lower_roman_period] = STATE(739), + [sym__list_item_lower_roman_period] = STATE(753), + [sym__list_lower_roman_paren] = STATE(739), + [sym__list_item_lower_roman_paren] = STATE(755), + [sym__list_lower_roman_parens] = STATE(739), + [sym__list_item_lower_roman_parens] = STATE(760), + [sym__list_upper_roman_period] = STATE(739), + [sym__list_item_upper_roman_period] = STATE(761), + [sym__list_upper_roman_paren] = STATE(739), + [sym__list_item_upper_roman_paren] = STATE(766), + [sym__list_upper_roman_parens] = STATE(739), + [sym__list_item_upper_roman_parens] = STATE(784), + [sym_table] = STATE(420), [sym__table_row] = STATE(233), [sym_table_header] = STATE(233), [sym_table_separator] = STATE(233), [sym_table_row] = STATE(233), - [sym_footnote] = STATE(419), + [sym_footnote] = STATE(420), [sym_footnote_marker_begin] = STATE(1137), - [sym_div] = STATE(419), + [sym_div] = STATE(420), [sym__div_marker_begin] = STATE(1036), - [sym_code_block] = STATE(419), - [sym_raw_block] = STATE(419), - [sym_thematic_break] = STATE(419), - [sym_block_quote] = STATE(419), - [sym__block_quote_content] = STATE(984), - [sym__block_quote_prefix] = STATE(222), - [sym_link_reference_definition] = STATE(419), - [sym_block_attribute] = STATE(419), - [sym__paragraph] = STATE(419), - [sym__paragraph_content] = STATE(727), - [sym__paragraph_inline_content] = STATE(824), - [sym__inline] = STATE(654), - [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(355), - [aux_sym__list_plus_repeat1] = STATE(356), - [aux_sym__list_star_repeat1] = STATE(357), - [aux_sym__list_task_repeat1] = STATE(294), - [aux_sym__list_definition_repeat1] = STATE(475), - [aux_sym__list_decimal_period_repeat1] = STATE(476), - [aux_sym__list_decimal_paren_repeat1] = STATE(477), - [aux_sym__list_decimal_parens_repeat1] = STATE(478), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(479), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(480), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(481), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(482), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(483), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(484), - [aux_sym__list_lower_roman_period_repeat1] = STATE(485), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(486), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(544), - [aux_sym__list_upper_roman_period_repeat1] = STATE(488), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(489), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(490), + [sym_code_block] = STATE(420), + [sym_raw_block] = STATE(420), + [sym_thematic_break] = STATE(420), + [sym_block_quote] = STATE(420), + [sym__block_quote_content] = STATE(987), + [sym__block_quote_prefix] = STATE(221), + [sym_link_reference_definition] = STATE(420), + [sym_block_attribute] = STATE(420), + [sym__paragraph] = STATE(420), + [sym__paragraph_content] = STATE(725), + [sym__paragraph_inline_content] = STATE(814), + [sym__inline] = STATE(657), + [sym__symbol_fallback] = STATE(271), + [aux_sym__list_dash_repeat1] = STATE(336), + [aux_sym__list_plus_repeat1] = STATE(317), + [aux_sym__list_star_repeat1] = STATE(318), + [aux_sym__list_task_repeat1] = STATE(295), + [aux_sym__list_definition_repeat1] = STATE(473), + [aux_sym__list_decimal_period_repeat1] = STATE(474), + [aux_sym__list_decimal_paren_repeat1] = STATE(475), + [aux_sym__list_decimal_parens_repeat1] = STATE(476), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(477), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(478), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(479), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(480), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(481), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(482), + [aux_sym__list_lower_roman_period_repeat1] = STATE(483), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(484), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(485), + [aux_sym__list_upper_roman_period_repeat1] = STATE(545), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(487), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(488), [aux_sym_table_repeat1] = STATE(233), - [aux_sym__block_quote_prefix_repeat1] = STATE(230), - [aux_sym__inline_repeat1] = STATE(273), + [aux_sym__block_quote_prefix_repeat1] = STATE(231), + [aux_sym__inline_repeat1] = STATE(271), [anon_sym_LBRACK] = ACTIONS(470), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_DOT] = ACTIONS(9), @@ -13005,93 +13021,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block_attribute_begin] = ACTIONS(486), }, [65] = { - [sym__block_element] = STATE(819), - [sym_list] = STATE(819), - [sym__list_dash] = STATE(731), - [sym__list_item_dash] = STATE(595), - [sym__list_plus] = STATE(731), - [sym__list_item_plus] = STATE(657), - [sym__list_star] = STATE(731), - [sym__list_item_star] = STATE(570), - [sym__list_task] = STATE(731), - [sym__list_item_task] = STATE(586), - [sym_list_marker_task] = STATE(43), - [sym__list_definition] = STATE(731), - [sym__list_item_definition] = STATE(694), - [sym__list_decimal_period] = STATE(731), - [sym__list_item_decimal_period] = STATE(714), - [sym__list_decimal_paren] = STATE(731), - [sym__list_item_decimal_paren] = STATE(719), - [sym__list_decimal_parens] = STATE(731), - [sym__list_item_decimal_parens] = STATE(746), - [sym__list_lower_alpha_period] = STATE(731), - [sym__list_item_lower_alpha_period] = STATE(748), - [sym__list_lower_alpha_paren] = STATE(731), - [sym__list_item_lower_alpha_paren] = STATE(749), - [sym__list_lower_alpha_parens] = STATE(731), - [sym__list_item_lower_alpha_parens] = STATE(753), - [sym__list_upper_alpha_period] = STATE(731), - [sym__list_item_upper_alpha_period] = STATE(761), - [sym__list_upper_alpha_paren] = STATE(731), - [sym__list_item_upper_alpha_paren] = STATE(764), - [sym__list_upper_alpha_parens] = STATE(731), - [sym__list_item_upper_alpha_parens] = STATE(765), - [sym__list_lower_roman_period] = STATE(731), - [sym__list_item_lower_roman_period] = STATE(768), - [sym__list_lower_roman_paren] = STATE(731), - [sym__list_item_lower_roman_paren] = STATE(769), - [sym__list_lower_roman_parens] = STATE(731), - [sym__list_item_lower_roman_parens] = STATE(786), - [sym__list_upper_roman_period] = STATE(731), - [sym__list_item_upper_roman_period] = STATE(791), - [sym__list_upper_roman_paren] = STATE(731), - [sym__list_item_upper_roman_paren] = STATE(793), - [sym__list_upper_roman_parens] = STATE(731), - [sym__list_item_upper_roman_parens] = STATE(799), - [sym_table] = STATE(819), + [sym__block_element] = STATE(718), + [sym_list] = STATE(718), + [sym__list_dash] = STATE(739), + [sym__list_item_dash] = STATE(599), + [sym__list_plus] = STATE(739), + [sym__list_item_plus] = STATE(606), + [sym__list_star] = STATE(739), + [sym__list_item_star] = STATE(664), + [sym__list_task] = STATE(739), + [sym__list_item_task] = STATE(673), + [sym_list_marker_task] = STATE(44), + [sym__list_definition] = STATE(739), + [sym__list_item_definition] = STATE(792), + [sym__list_decimal_period] = STATE(739), + [sym__list_item_decimal_period] = STATE(691), + [sym__list_decimal_paren] = STATE(739), + [sym__list_item_decimal_paren] = STATE(692), + [sym__list_decimal_parens] = STATE(739), + [sym__list_item_decimal_parens] = STATE(710), + [sym__list_lower_alpha_period] = STATE(739), + [sym__list_item_lower_alpha_period] = STATE(714), + [sym__list_lower_alpha_paren] = STATE(739), + [sym__list_item_lower_alpha_paren] = STATE(717), + [sym__list_lower_alpha_parens] = STATE(739), + [sym__list_item_lower_alpha_parens] = STATE(721), + [sym__list_upper_alpha_period] = STATE(739), + [sym__list_item_upper_alpha_period] = STATE(726), + [sym__list_upper_alpha_paren] = STATE(739), + [sym__list_item_upper_alpha_paren] = STATE(747), + [sym__list_upper_alpha_parens] = STATE(739), + [sym__list_item_upper_alpha_parens] = STATE(751), + [sym__list_lower_roman_period] = STATE(739), + [sym__list_item_lower_roman_period] = STATE(753), + [sym__list_lower_roman_paren] = STATE(739), + [sym__list_item_lower_roman_paren] = STATE(755), + [sym__list_lower_roman_parens] = STATE(739), + [sym__list_item_lower_roman_parens] = STATE(760), + [sym__list_upper_roman_period] = STATE(739), + [sym__list_item_upper_roman_period] = STATE(761), + [sym__list_upper_roman_paren] = STATE(739), + [sym__list_item_upper_roman_paren] = STATE(766), + [sym__list_upper_roman_parens] = STATE(739), + [sym__list_item_upper_roman_parens] = STATE(784), + [sym_table] = STATE(718), [sym__table_row] = STATE(233), [sym_table_header] = STATE(233), [sym_table_separator] = STATE(233), [sym_table_row] = STATE(233), - [sym_footnote] = STATE(819), + [sym_footnote] = STATE(718), [sym_footnote_marker_begin] = STATE(1137), - [sym_div] = STATE(819), + [sym_div] = STATE(718), [sym__div_marker_begin] = STATE(1036), - [sym_code_block] = STATE(819), - [sym_raw_block] = STATE(819), - [sym_thematic_break] = STATE(819), - [sym_block_quote] = STATE(819), - [sym__block_quote_prefix] = STATE(222), - [sym_link_reference_definition] = STATE(819), - [sym_block_attribute] = STATE(819), - [sym__paragraph] = STATE(819), - [sym__paragraph_content] = STATE(727), - [sym__paragraph_inline_content] = STATE(824), - [sym__inline] = STATE(654), - [sym__symbol_fallback] = STATE(273), - [aux_sym__list_dash_repeat1] = STATE(355), - [aux_sym__list_plus_repeat1] = STATE(356), - [aux_sym__list_star_repeat1] = STATE(357), - [aux_sym__list_task_repeat1] = STATE(294), - [aux_sym__list_definition_repeat1] = STATE(475), - [aux_sym__list_decimal_period_repeat1] = STATE(476), - [aux_sym__list_decimal_paren_repeat1] = STATE(477), - [aux_sym__list_decimal_parens_repeat1] = STATE(478), - [aux_sym__list_lower_alpha_period_repeat1] = STATE(479), - [aux_sym__list_lower_alpha_paren_repeat1] = STATE(480), - [aux_sym__list_lower_alpha_parens_repeat1] = STATE(481), - [aux_sym__list_upper_alpha_period_repeat1] = STATE(482), - [aux_sym__list_upper_alpha_paren_repeat1] = STATE(483), - [aux_sym__list_upper_alpha_parens_repeat1] = STATE(484), - [aux_sym__list_lower_roman_period_repeat1] = STATE(485), - [aux_sym__list_lower_roman_paren_repeat1] = STATE(486), - [aux_sym__list_lower_roman_parens_repeat1] = STATE(544), - [aux_sym__list_upper_roman_period_repeat1] = STATE(488), - [aux_sym__list_upper_roman_paren_repeat1] = STATE(489), - [aux_sym__list_upper_roman_parens_repeat1] = STATE(490), + [sym_code_block] = STATE(718), + [sym_raw_block] = STATE(718), + [sym_thematic_break] = STATE(718), + [sym_block_quote] = STATE(718), + [sym__block_quote_prefix] = STATE(221), + [sym_link_reference_definition] = STATE(718), + [sym_block_attribute] = STATE(718), + [sym__paragraph] = STATE(718), + [sym__paragraph_content] = STATE(725), + [sym__paragraph_inline_content] = STATE(814), + [sym__inline] = STATE(657), + [sym__symbol_fallback] = STATE(271), + [aux_sym__list_dash_repeat1] = STATE(336), + [aux_sym__list_plus_repeat1] = STATE(317), + [aux_sym__list_star_repeat1] = STATE(318), + [aux_sym__list_task_repeat1] = STATE(295), + [aux_sym__list_definition_repeat1] = STATE(473), + [aux_sym__list_decimal_period_repeat1] = STATE(474), + [aux_sym__list_decimal_paren_repeat1] = STATE(475), + [aux_sym__list_decimal_parens_repeat1] = STATE(476), + [aux_sym__list_lower_alpha_period_repeat1] = STATE(477), + [aux_sym__list_lower_alpha_paren_repeat1] = STATE(478), + [aux_sym__list_lower_alpha_parens_repeat1] = STATE(479), + [aux_sym__list_upper_alpha_period_repeat1] = STATE(480), + [aux_sym__list_upper_alpha_paren_repeat1] = STATE(481), + [aux_sym__list_upper_alpha_parens_repeat1] = STATE(482), + [aux_sym__list_lower_roman_period_repeat1] = STATE(483), + [aux_sym__list_lower_roman_paren_repeat1] = STATE(484), + [aux_sym__list_lower_roman_parens_repeat1] = STATE(485), + [aux_sym__list_upper_roman_period_repeat1] = STATE(545), + [aux_sym__list_upper_roman_paren_repeat1] = STATE(487), + [aux_sym__list_upper_roman_parens_repeat1] = STATE(488), [aux_sym_table_repeat1] = STATE(233), - [aux_sym__block_quote_prefix_repeat1] = STATE(230), - [aux_sym__inline_repeat1] = STATE(273), + [aux_sym__block_quote_prefix_repeat1] = STATE(231), + [aux_sym__inline_repeat1] = STATE(271), [anon_sym_LBRACK] = ACTIONS(470), [anon_sym_LBRACK_CARET] = ACTIONS(7), [anon_sym_DOT] = ACTIONS(9), @@ -13147,11 +13163,11 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, ACTIONS(505), 1, sym__table_caption_begin, - STATE(117), 1, + STATE(155), 1, sym_table_caption, - STATE(409), 1, + STATE(415), 1, sym__block_quote_prefix, - STATE(421), 1, + STATE(417), 1, aux_sym__block_quote_prefix_repeat1, STATE(69), 5, sym__table_row, @@ -13197,11 +13213,11 @@ static const uint16_t ts_small_parse_table[] = { sym__block_attribute_begin, ts_builtin_sym_end, [74] = 12, - ACTIONS(89), 1, + ACTIONS(87), 1, sym__table_header_begin, - ACTIONS(91), 1, + ACTIONS(89), 1, sym__table_separator_begin, - ACTIONS(93), 1, + ACTIONS(91), 1, sym__table_row_begin, ACTIONS(503), 1, sym__block_quote_continuation, @@ -13209,11 +13225,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, ACTIONS(509), 1, sym__table_caption_begin, - STATE(153), 1, + STATE(156), 1, sym_table_caption, - STATE(385), 1, + STATE(363), 1, sym__block_quote_prefix, - STATE(421), 1, + STATE(417), 1, aux_sym__block_quote_prefix_repeat1, STATE(68), 5, sym__table_row, @@ -13267,9 +13283,9 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, ACTIONS(524), 1, sym__table_row_begin, - STATE(385), 1, + STATE(363), 1, sym__block_quote_prefix, - STATE(421), 1, + STATE(417), 1, aux_sym__block_quote_prefix_repeat1, STATE(68), 5, sym__table_row, @@ -13325,9 +13341,9 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, ACTIONS(533), 1, sym__table_row_begin, - STATE(409), 1, + STATE(415), 1, sym__block_quote_prefix, - STATE(421), 1, + STATE(417), 1, aux_sym__block_quote_prefix_repeat1, STATE(69), 5, sym__table_row, @@ -13377,7 +13393,7 @@ static const uint16_t ts_small_parse_table[] = { [282] = 4, ACTIONS(509), 1, sym__table_caption_begin, - STATE(157), 1, + STATE(160), 1, sym_table_caption, ACTIONS(536), 7, anon_sym_LBRACK, @@ -13424,7 +13440,7 @@ static const uint16_t ts_small_parse_table[] = { [333] = 4, ACTIONS(505), 1, sym__table_caption_begin, - STATE(172), 1, + STATE(206), 1, sym_table_caption, ACTIONS(536), 7, anon_sym_LBRACK, @@ -13513,9 +13529,7 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, sym__block_attribute_begin, - [432] = 3, - ACTIONS(550), 1, - sym__div_end, + [432] = 2, ACTIONS(548), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, @@ -13524,7 +13538,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(546), 33, + ACTIONS(546), 34, sym__newline, sym__heading_begin, sym__div_begin, @@ -13556,10 +13570,11 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, + sym__table_caption_begin, sym__block_attribute_begin, ts_builtin_sym_end, - [480] = 2, - ACTIONS(554), 7, + [478] = 2, + ACTIONS(552), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -13567,7 +13582,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(552), 34, + ACTIONS(550), 34, sym__newline, sym__heading_begin, sym__div_begin, @@ -13602,8 +13617,8 @@ static const uint16_t ts_small_parse_table[] = { sym__table_caption_begin, sym__block_attribute_begin, ts_builtin_sym_end, - [526] = 2, - ACTIONS(558), 7, + [524] = 2, + ACTIONS(556), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -13611,7 +13626,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(556), 34, + ACTIONS(554), 34, sym__newline, sym__heading_begin, sym__div_begin, @@ -13646,8 +13661,10 @@ static const uint16_t ts_small_parse_table[] = { sym__table_caption_begin, sym__block_attribute_begin, ts_builtin_sym_end, - [572] = 2, - ACTIONS(562), 7, + [570] = 3, + ACTIONS(558), 1, + sym__div_end, + ACTIONS(540), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -13655,7 +13672,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(560), 34, + ACTIONS(542), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -13687,13 +13704,12 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - sym__table_caption_begin, sym__block_attribute_begin, ts_builtin_sym_end, [618] = 3, ACTIONS(564), 1, - sym__div_end, - ACTIONS(540), 7, + sym__code_block_end, + ACTIONS(562), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -13701,7 +13717,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(542), 33, + ACTIONS(560), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -13782,7 +13798,7 @@ static const uint16_t ts_small_parse_table[] = { ts_builtin_sym_end, [714] = 3, ACTIONS(576), 1, - sym__code_block_end, + sym__eof_or_newline, ACTIONS(574), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, @@ -13827,7 +13843,7 @@ static const uint16_t ts_small_parse_table[] = { ts_builtin_sym_end, [762] = 3, ACTIONS(582), 1, - sym__eof_or_newline, + sym__div_end, ACTIONS(580), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, @@ -14095,7 +14111,7 @@ static const uint16_t ts_small_parse_table[] = { [1044] = 3, ACTIONS(604), 1, sym__div_end, - ACTIONS(548), 7, + ACTIONS(580), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -14103,7 +14119,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(546), 33, + ACTIONS(578), 33, sym__block_close, sym__newline, sym__heading_begin, @@ -14541,7 +14557,7 @@ static const uint16_t ts_small_parse_table[] = { sym__table_row_begin, sym__block_attribute_begin, [1520] = 2, - ACTIONS(554), 7, + ACTIONS(548), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -14549,7 +14565,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(552), 34, + ACTIONS(546), 34, sym__block_close, sym__newline, sym__heading_begin, @@ -14585,7 +14601,7 @@ static const uint16_t ts_small_parse_table[] = { sym__table_caption_begin, sym__block_attribute_begin, [1566] = 2, - ACTIONS(558), 7, + ACTIONS(552), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -14593,7 +14609,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(556), 34, + ACTIONS(550), 34, sym__block_close, sym__newline, sym__heading_begin, @@ -14629,7 +14645,7 @@ static const uint16_t ts_small_parse_table[] = { sym__table_caption_begin, sym__block_attribute_begin, [1612] = 2, - ACTIONS(562), 7, + ACTIONS(556), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -14637,7 +14653,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(560), 34, + ACTIONS(554), 34, sym__block_close, sym__newline, sym__heading_begin, @@ -14719,7 +14735,7 @@ static const uint16_t ts_small_parse_table[] = { [1704] = 3, ACTIONS(648), 1, sym__code_block_end, - ACTIONS(568), 7, + ACTIONS(562), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -14727,7 +14743,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(566), 33, + ACTIONS(560), 33, sym__block_close, sym__newline, sym__heading_begin, @@ -14764,7 +14780,7 @@ static const uint16_t ts_small_parse_table[] = { [1752] = 3, ACTIONS(650), 1, sym__code_block_end, - ACTIONS(574), 7, + ACTIONS(568), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -14772,7 +14788,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(572), 33, + ACTIONS(566), 33, sym__block_close, sym__newline, sym__heading_begin, @@ -14809,7 +14825,7 @@ static const uint16_t ts_small_parse_table[] = { [1800] = 3, ACTIONS(652), 1, sym__eof_or_newline, - ACTIONS(580), 7, + ACTIONS(574), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -14817,7 +14833,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(578), 33, + ACTIONS(572), 33, sym__block_close, sym__newline, sym__heading_begin, @@ -15120,7 +15136,7 @@ static const uint16_t ts_small_parse_table[] = { sym__table_caption_begin, sym__block_attribute_begin, [2132] = 2, - ACTIONS(662), 7, + ACTIONS(664), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -15128,8 +15144,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(664), 33, - sym__block_close, + ACTIONS(662), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -15162,6 +15177,7 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, sym__block_attribute_begin, + ts_builtin_sym_end, [2177] = 2, ACTIONS(668), 7, anon_sym_LBRACK, @@ -15464,7 +15480,7 @@ static const uint16_t ts_small_parse_table[] = { sym__block_attribute_begin, ts_builtin_sym_end, [2492] = 2, - ACTIONS(536), 7, + ACTIONS(696), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -15472,7 +15488,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(538), 33, + ACTIONS(694), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -15507,7 +15523,7 @@ static const uint16_t ts_small_parse_table[] = { sym__block_attribute_begin, ts_builtin_sym_end, [2537] = 2, - ACTIONS(696), 7, + ACTIONS(700), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -15515,7 +15531,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(694), 33, + ACTIONS(698), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -15550,7 +15566,7 @@ static const uint16_t ts_small_parse_table[] = { sym__block_attribute_begin, ts_builtin_sym_end, [2582] = 2, - ACTIONS(700), 7, + ACTIONS(704), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -15558,7 +15574,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(698), 33, + ACTIONS(702), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -15593,7 +15609,7 @@ static const uint16_t ts_small_parse_table[] = { sym__block_attribute_begin, ts_builtin_sym_end, [2627] = 2, - ACTIONS(704), 7, + ACTIONS(708), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -15601,7 +15617,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(702), 33, + ACTIONS(706), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -15636,7 +15652,7 @@ static const uint16_t ts_small_parse_table[] = { sym__block_attribute_begin, ts_builtin_sym_end, [2672] = 2, - ACTIONS(708), 7, + ACTIONS(712), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -15644,7 +15660,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(706), 33, + ACTIONS(710), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -15679,7 +15695,7 @@ static const uint16_t ts_small_parse_table[] = { sym__block_attribute_begin, ts_builtin_sym_end, [2717] = 2, - ACTIONS(712), 7, + ACTIONS(716), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -15687,7 +15703,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(710), 33, + ACTIONS(714), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -15722,7 +15738,7 @@ static const uint16_t ts_small_parse_table[] = { sym__block_attribute_begin, ts_builtin_sym_end, [2762] = 2, - ACTIONS(714), 7, + ACTIONS(720), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -15730,8 +15746,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(716), 33, - sym__block_close, + ACTIONS(718), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -15764,8 +15779,9 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, sym__block_attribute_begin, + ts_builtin_sym_end, [2807] = 2, - ACTIONS(718), 7, + ACTIONS(722), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -15773,7 +15789,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(720), 33, + ACTIONS(724), 33, sym__block_close, sym__newline, sym__heading_begin, @@ -15808,7 +15824,7 @@ static const uint16_t ts_small_parse_table[] = { sym__table_row_begin, sym__block_attribute_begin, [2852] = 2, - ACTIONS(714), 7, + ACTIONS(726), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -15816,7 +15832,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(716), 33, + ACTIONS(728), 33, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -15849,9 +15866,8 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, sym__block_attribute_begin, - ts_builtin_sym_end, [2897] = 2, - ACTIONS(722), 7, + ACTIONS(730), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -15859,7 +15875,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(724), 33, + ACTIONS(732), 33, sym__block_close, sym__newline, sym__heading_begin, @@ -15894,7 +15910,7 @@ static const uint16_t ts_small_parse_table[] = { sym__table_row_begin, sym__block_attribute_begin, [2942] = 2, - ACTIONS(726), 7, + ACTIONS(736), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -15902,8 +15918,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(728), 33, - sym__block_close, + ACTIONS(734), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -15936,8 +15951,9 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, sym__block_attribute_begin, + ts_builtin_sym_end, [2987] = 2, - ACTIONS(708), 7, + ACTIONS(738), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -15945,7 +15961,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(706), 33, + ACTIONS(740), 33, sym__block_close, sym__newline, sym__heading_begin, @@ -15980,7 +15996,7 @@ static const uint16_t ts_small_parse_table[] = { sym__table_row_begin, sym__block_attribute_begin, [3032] = 2, - ACTIONS(730), 7, + ACTIONS(742), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -15988,7 +16004,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(732), 33, + ACTIONS(744), 33, sym__block_close, sym__newline, sym__heading_begin, @@ -16023,7 +16039,7 @@ static const uint16_t ts_small_parse_table[] = { sym__table_row_begin, sym__block_attribute_begin, [3077] = 2, - ACTIONS(662), 7, + ACTIONS(746), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -16031,7 +16047,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(664), 33, + ACTIONS(748), 33, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -16064,9 +16081,8 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, sym__block_attribute_begin, - ts_builtin_sym_end, [3122] = 2, - ACTIONS(734), 7, + ACTIONS(750), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -16074,7 +16090,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(736), 33, + ACTIONS(752), 33, sym__block_close, sym__newline, sym__heading_begin, @@ -16109,7 +16125,7 @@ static const uint16_t ts_small_parse_table[] = { sym__table_row_begin, sym__block_attribute_begin, [3167] = 2, - ACTIONS(738), 7, + ACTIONS(756), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -16117,8 +16133,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(740), 33, - sym__block_close, + ACTIONS(754), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -16151,8 +16166,9 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, sym__block_attribute_begin, + ts_builtin_sym_end, [3212] = 2, - ACTIONS(742), 7, + ACTIONS(722), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -16160,8 +16176,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(744), 33, - sym__block_close, + ACTIONS(724), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -16194,8 +16209,9 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, sym__block_attribute_begin, + ts_builtin_sym_end, [3257] = 2, - ACTIONS(746), 7, + ACTIONS(758), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -16203,7 +16219,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(748), 33, + ACTIONS(760), 33, sym__block_close, sym__newline, sym__heading_begin, @@ -16238,7 +16254,7 @@ static const uint16_t ts_small_parse_table[] = { sym__table_row_begin, sym__block_attribute_begin, [3302] = 2, - ACTIONS(750), 7, + ACTIONS(762), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -16246,7 +16262,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(752), 33, + ACTIONS(764), 33, sym__block_close, sym__newline, sym__heading_begin, @@ -16281,7 +16297,7 @@ static const uint16_t ts_small_parse_table[] = { sym__table_row_begin, sym__block_attribute_begin, [3347] = 2, - ACTIONS(754), 7, + ACTIONS(766), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -16289,7 +16305,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(756), 33, + ACTIONS(768), 33, sym__block_close, sym__newline, sym__heading_begin, @@ -16324,7 +16340,7 @@ static const uint16_t ts_small_parse_table[] = { sym__table_row_begin, sym__block_attribute_begin, [3392] = 2, - ACTIONS(758), 7, + ACTIONS(664), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -16332,7 +16348,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(760), 33, + ACTIONS(662), 33, sym__block_close, sym__newline, sym__heading_begin, @@ -16367,7 +16383,7 @@ static const uint16_t ts_small_parse_table[] = { sym__table_row_begin, sym__block_attribute_begin, [3437] = 2, - ACTIONS(762), 7, + ACTIONS(770), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -16375,7 +16391,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(764), 33, + ACTIONS(772), 33, sym__block_close, sym__newline, sym__heading_begin, @@ -16410,7 +16426,7 @@ static const uint16_t ts_small_parse_table[] = { sym__table_row_begin, sym__block_attribute_begin, [3482] = 2, - ACTIONS(766), 7, + ACTIONS(774), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -16418,7 +16434,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(768), 33, + ACTIONS(776), 33, sym__block_close, sym__newline, sym__heading_begin, @@ -16453,7 +16469,7 @@ static const uint16_t ts_small_parse_table[] = { sym__table_row_begin, sym__block_attribute_begin, [3527] = 2, - ACTIONS(770), 7, + ACTIONS(778), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -16461,7 +16477,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(772), 33, + ACTIONS(780), 33, sym__block_close, sym__newline, sym__heading_begin, @@ -16496,7 +16512,7 @@ static const uint16_t ts_small_parse_table[] = { sym__table_row_begin, sym__block_attribute_begin, [3572] = 2, - ACTIONS(774), 7, + ACTIONS(782), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -16504,7 +16520,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(776), 33, + ACTIONS(784), 33, sym__block_close, sym__newline, sym__heading_begin, @@ -16539,7 +16555,7 @@ static const uint16_t ts_small_parse_table[] = { sym__table_row_begin, sym__block_attribute_begin, [3617] = 2, - ACTIONS(778), 7, + ACTIONS(786), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -16547,7 +16563,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(780), 33, + ACTIONS(788), 33, sym__block_close, sym__newline, sym__heading_begin, @@ -16582,7 +16598,7 @@ static const uint16_t ts_small_parse_table[] = { sym__table_row_begin, sym__block_attribute_begin, [3662] = 2, - ACTIONS(782), 7, + ACTIONS(790), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -16590,7 +16606,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(784), 33, + ACTIONS(792), 33, sym__block_close, sym__newline, sym__heading_begin, @@ -16625,7 +16641,7 @@ static const uint16_t ts_small_parse_table[] = { sym__table_row_begin, sym__block_attribute_begin, [3707] = 2, - ACTIONS(786), 7, + ACTIONS(794), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -16633,7 +16649,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(788), 33, + ACTIONS(796), 33, sym__block_close, sym__newline, sym__heading_begin, @@ -16668,7 +16684,7 @@ static const uint16_t ts_small_parse_table[] = { sym__table_row_begin, sym__block_attribute_begin, [3752] = 2, - ACTIONS(790), 7, + ACTIONS(798), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -16676,7 +16692,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(792), 33, + ACTIONS(800), 33, sym__block_close, sym__newline, sym__heading_begin, @@ -16711,7 +16727,7 @@ static const uint16_t ts_small_parse_table[] = { sym__table_row_begin, sym__block_attribute_begin, [3797] = 2, - ACTIONS(794), 7, + ACTIONS(802), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -16719,7 +16735,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(796), 33, + ACTIONS(804), 33, sym__block_close, sym__newline, sym__heading_begin, @@ -16754,7 +16770,7 @@ static const uint16_t ts_small_parse_table[] = { sym__table_row_begin, sym__block_attribute_begin, [3842] = 2, - ACTIONS(798), 7, + ACTIONS(806), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -16762,7 +16778,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(800), 33, + ACTIONS(808), 33, sym__block_close, sym__newline, sym__heading_begin, @@ -16797,7 +16813,7 @@ static const uint16_t ts_small_parse_table[] = { sym__table_row_begin, sym__block_attribute_begin, [3887] = 2, - ACTIONS(790), 7, + ACTIONS(810), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -16805,7 +16821,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(792), 33, + ACTIONS(812), 33, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -16838,9 +16855,8 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, sym__block_attribute_begin, - ts_builtin_sym_end, [3932] = 2, - ACTIONS(802), 7, + ACTIONS(756), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -16848,7 +16864,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(804), 33, + ACTIONS(754), 33, sym__block_close, sym__newline, sym__heading_begin, @@ -16883,7 +16899,7 @@ static const uint16_t ts_small_parse_table[] = { sym__table_row_begin, sym__block_attribute_begin, [3977] = 2, - ACTIONS(806), 7, + ACTIONS(814), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -16891,7 +16907,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(808), 33, + ACTIONS(816), 33, sym__block_close, sym__newline, sym__heading_begin, @@ -16926,7 +16942,7 @@ static const uint16_t ts_small_parse_table[] = { sym__table_row_begin, sym__block_attribute_begin, [4022] = 2, - ACTIONS(810), 7, + ACTIONS(818), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -16934,7 +16950,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(812), 33, + ACTIONS(820), 33, sym__block_close, sym__newline, sym__heading_begin, @@ -16969,7 +16985,7 @@ static const uint16_t ts_small_parse_table[] = { sym__table_row_begin, sym__block_attribute_begin, [4067] = 2, - ACTIONS(802), 7, + ACTIONS(822), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -16977,7 +16993,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(804), 33, + ACTIONS(824), 33, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -17010,9 +17027,8 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, sym__block_attribute_begin, - ts_builtin_sym_end, [4112] = 2, - ACTIONS(536), 7, + ACTIONS(826), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -17020,7 +17036,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(538), 33, + ACTIONS(828), 33, sym__block_close, sym__newline, sym__heading_begin, @@ -17055,7 +17071,7 @@ static const uint16_t ts_small_parse_table[] = { sym__table_row_begin, sym__block_attribute_begin, [4157] = 2, - ACTIONS(816), 7, + ACTIONS(736), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -17063,7 +17079,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(814), 33, + ACTIONS(734), 33, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -17096,9 +17113,8 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, sym__block_attribute_begin, - ts_builtin_sym_end, [4202] = 2, - ACTIONS(818), 7, + ACTIONS(536), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -17106,8 +17122,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(820), 33, - sym__block_close, + ACTIONS(538), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -17140,8 +17155,9 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, sym__block_attribute_begin, + ts_builtin_sym_end, [4247] = 2, - ACTIONS(822), 7, + ACTIONS(536), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -17149,7 +17165,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(824), 33, + ACTIONS(538), 33, sym__block_close, sym__newline, sym__heading_begin, @@ -17184,7 +17200,7 @@ static const uint16_t ts_small_parse_table[] = { sym__table_row_begin, sym__block_attribute_begin, [4292] = 2, - ACTIONS(826), 7, + ACTIONS(814), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -17192,8 +17208,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(828), 33, - sym__block_close, + ACTIONS(816), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -17226,8 +17241,9 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, sym__block_attribute_begin, + ts_builtin_sym_end, [4337] = 2, - ACTIONS(806), 7, + ACTIONS(830), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -17235,7 +17251,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(808), 33, + ACTIONS(832), 33, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -17268,9 +17285,8 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, sym__block_attribute_begin, - ts_builtin_sym_end, [4382] = 2, - ACTIONS(718), 7, + ACTIONS(834), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -17278,7 +17294,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(720), 33, + ACTIONS(836), 33, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -17311,9 +17328,8 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, sym__block_attribute_begin, - ts_builtin_sym_end, [4427] = 2, - ACTIONS(832), 7, + ACTIONS(838), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -17321,7 +17337,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(830), 33, + ACTIONS(840), 33, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -17354,9 +17371,8 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, sym__block_attribute_begin, - ts_builtin_sym_end, [4472] = 2, - ACTIONS(816), 7, + ACTIONS(844), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -17364,8 +17380,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(814), 33, - sym__block_close, + ACTIONS(842), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -17398,8 +17413,9 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, sym__block_attribute_begin, + ts_builtin_sym_end, [4517] = 2, - ACTIONS(794), 7, + ACTIONS(818), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -17407,7 +17423,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(796), 33, + ACTIONS(820), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -17442,7 +17458,7 @@ static const uint16_t ts_small_parse_table[] = { sym__block_attribute_begin, ts_builtin_sym_end, [4562] = 2, - ACTIONS(822), 7, + ACTIONS(810), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -17450,7 +17466,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(824), 33, + ACTIONS(812), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -17485,7 +17501,7 @@ static const uint16_t ts_small_parse_table[] = { sym__block_attribute_begin, ts_builtin_sym_end, [4607] = 2, - ACTIONS(832), 7, + ACTIONS(730), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -17493,8 +17509,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(830), 33, - sym__block_close, + ACTIONS(732), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -17527,8 +17542,9 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, sym__block_attribute_begin, + ts_builtin_sym_end, [4652] = 2, - ACTIONS(726), 7, + ACTIONS(848), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -17536,7 +17552,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(728), 33, + ACTIONS(846), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -17571,7 +17587,7 @@ static const uint16_t ts_small_parse_table[] = { sym__block_attribute_begin, ts_builtin_sym_end, [4697] = 2, - ACTIONS(810), 7, + ACTIONS(848), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -17579,7 +17595,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(812), 33, + ACTIONS(846), 33, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -17612,9 +17629,8 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, sym__block_attribute_begin, - ts_builtin_sym_end, [4742] = 2, - ACTIONS(730), 7, + ACTIONS(822), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -17622,7 +17638,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(732), 33, + ACTIONS(824), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -17657,7 +17673,7 @@ static const uint16_t ts_small_parse_table[] = { sym__block_attribute_begin, ts_builtin_sym_end, [4787] = 2, - ACTIONS(834), 7, + ACTIONS(830), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -17665,8 +17681,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(836), 33, - sym__block_close, + ACTIONS(832), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -17699,8 +17714,9 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, sym__block_attribute_begin, + ts_builtin_sym_end, [4832] = 2, - ACTIONS(838), 7, + ACTIONS(834), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -17708,8 +17724,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(840), 33, - sym__block_close, + ACTIONS(836), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -17742,8 +17757,9 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, sym__block_attribute_begin, + ts_builtin_sym_end, [4877] = 2, - ACTIONS(842), 7, + ACTIONS(750), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -17751,8 +17767,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(844), 33, - sym__block_close, + ACTIONS(752), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -17785,8 +17800,9 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, sym__block_attribute_begin, + ts_builtin_sym_end, [4922] = 2, - ACTIONS(838), 7, + ACTIONS(850), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -17794,7 +17810,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(840), 33, + ACTIONS(852), 33, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -17827,9 +17844,8 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, sym__block_attribute_begin, - ts_builtin_sym_end, [4967] = 2, - ACTIONS(826), 7, + ACTIONS(742), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -17837,7 +17853,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(828), 33, + ACTIONS(744), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -17872,7 +17888,7 @@ static const uint16_t ts_small_parse_table[] = { sym__block_attribute_begin, ts_builtin_sym_end, [5012] = 2, - ACTIONS(846), 7, + ACTIONS(854), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -17880,7 +17896,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(848), 33, + ACTIONS(856), 33, sym__block_close, sym__newline, sym__heading_begin, @@ -17915,7 +17931,7 @@ static const uint16_t ts_small_parse_table[] = { sym__table_row_begin, sym__block_attribute_begin, [5057] = 2, - ACTIONS(850), 7, + ACTIONS(826), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -17923,8 +17939,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(852), 33, - sym__block_close, + ACTIONS(828), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -17957,8 +17972,9 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, sym__block_attribute_begin, + ts_builtin_sym_end, [5102] = 2, - ACTIONS(854), 7, + ACTIONS(858), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -17966,7 +17982,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(856), 33, + ACTIONS(860), 33, sym__block_close, sym__newline, sym__heading_begin, @@ -18001,7 +18017,7 @@ static const uint16_t ts_small_parse_table[] = { sym__table_row_begin, sym__block_attribute_begin, [5147] = 2, - ACTIONS(672), 7, + ACTIONS(668), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -18009,7 +18025,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(670), 33, + ACTIONS(666), 33, sym__block_close, sym__newline, sym__heading_begin, @@ -18044,7 +18060,7 @@ static const uint16_t ts_small_parse_table[] = { sym__table_row_begin, sym__block_attribute_begin, [5192] = 2, - ACTIONS(676), 7, + ACTIONS(672), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -18052,7 +18068,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(674), 33, + ACTIONS(670), 33, sym__block_close, sym__newline, sym__heading_begin, @@ -18087,7 +18103,7 @@ static const uint16_t ts_small_parse_table[] = { sym__table_row_begin, sym__block_attribute_begin, [5237] = 2, - ACTIONS(680), 7, + ACTIONS(676), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -18095,7 +18111,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(678), 33, + ACTIONS(674), 33, sym__block_close, sym__newline, sym__heading_begin, @@ -18259,7 +18275,7 @@ static const uint16_t ts_small_parse_table[] = { sym__table_row_begin, sym__block_attribute_begin, [5417] = 2, - ACTIONS(860), 7, + ACTIONS(696), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -18267,7 +18283,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(858), 33, + ACTIONS(694), 33, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -18300,9 +18317,8 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, sym__block_attribute_begin, - ts_builtin_sym_end, [5462] = 2, - ACTIONS(696), 7, + ACTIONS(700), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -18310,7 +18326,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(694), 33, + ACTIONS(698), 33, sym__block_close, sym__newline, sym__heading_begin, @@ -18345,7 +18361,7 @@ static const uint16_t ts_small_parse_table[] = { sym__table_row_begin, sym__block_attribute_begin, [5507] = 2, - ACTIONS(700), 7, + ACTIONS(704), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -18353,7 +18369,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(698), 33, + ACTIONS(702), 33, sym__block_close, sym__newline, sym__heading_begin, @@ -18388,7 +18404,7 @@ static const uint16_t ts_small_parse_table[] = { sym__table_row_begin, sym__block_attribute_begin, [5552] = 2, - ACTIONS(704), 7, + ACTIONS(746), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -18396,8 +18412,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(702), 33, - sym__block_close, + ACTIONS(748), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -18430,8 +18445,9 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, sym__block_attribute_begin, + ts_builtin_sym_end, [5597] = 2, - ACTIONS(712), 7, + ACTIONS(708), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -18439,7 +18455,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(710), 33, + ACTIONS(706), 33, sym__block_close, sym__newline, sym__heading_begin, @@ -18474,7 +18490,7 @@ static const uint16_t ts_small_parse_table[] = { sym__table_row_begin, sym__block_attribute_begin, [5642] = 2, - ACTIONS(734), 7, + ACTIONS(712), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -18482,7 +18498,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(736), 33, + ACTIONS(710), 33, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -18515,9 +18532,8 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, sym__block_attribute_begin, - ts_builtin_sym_end, [5687] = 2, - ACTIONS(842), 7, + ACTIONS(716), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -18525,7 +18541,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(844), 33, + ACTIONS(714), 33, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -18558,9 +18575,8 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, sym__block_attribute_begin, - ts_builtin_sym_end, [5732] = 2, - ACTIONS(862), 7, + ACTIONS(720), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -18568,7 +18584,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(864), 33, + ACTIONS(718), 33, sym__block_close, sym__newline, sym__heading_begin, @@ -18603,7 +18619,7 @@ static const uint16_t ts_small_parse_table[] = { sym__table_row_begin, sym__block_attribute_begin, [5777] = 2, - ACTIONS(738), 7, + ACTIONS(758), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -18611,7 +18627,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(740), 33, + ACTIONS(760), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -18646,7 +18662,7 @@ static const uint16_t ts_small_parse_table[] = { sym__block_attribute_begin, ts_builtin_sym_end, [5822] = 2, - ACTIONS(742), 7, + ACTIONS(850), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -18654,7 +18670,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(744), 33, + ACTIONS(852), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -18689,7 +18705,7 @@ static const uint16_t ts_small_parse_table[] = { sym__block_attribute_begin, ts_builtin_sym_end, [5867] = 2, - ACTIONS(746), 7, + ACTIONS(762), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -18697,7 +18713,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(748), 33, + ACTIONS(764), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -18732,7 +18748,7 @@ static const uint16_t ts_small_parse_table[] = { sym__block_attribute_begin, ts_builtin_sym_end, [5912] = 2, - ACTIONS(798), 7, + ACTIONS(766), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -18740,7 +18756,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(800), 33, + ACTIONS(768), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -18775,7 +18791,7 @@ static const uint16_t ts_small_parse_table[] = { sym__block_attribute_begin, ts_builtin_sym_end, [5957] = 2, - ACTIONS(750), 7, + ACTIONS(806), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -18783,7 +18799,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(752), 33, + ACTIONS(808), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -18818,7 +18834,7 @@ static const uint16_t ts_small_parse_table[] = { sym__block_attribute_begin, ts_builtin_sym_end, [6002] = 2, - ACTIONS(754), 7, + ACTIONS(864), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -18826,7 +18842,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(756), 33, + ACTIONS(862), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -18861,7 +18877,7 @@ static const uint16_t ts_small_parse_table[] = { sym__block_attribute_begin, ts_builtin_sym_end, [6047] = 2, - ACTIONS(758), 7, + ACTIONS(770), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -18869,7 +18885,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(760), 33, + ACTIONS(772), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -18904,7 +18920,7 @@ static const uint16_t ts_small_parse_table[] = { sym__block_attribute_begin, ts_builtin_sym_end, [6092] = 2, - ACTIONS(762), 7, + ACTIONS(774), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -18912,7 +18928,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(764), 33, + ACTIONS(776), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -18947,7 +18963,7 @@ static const uint16_t ts_small_parse_table[] = { sym__block_attribute_begin, ts_builtin_sym_end, [6137] = 2, - ACTIONS(766), 7, + ACTIONS(778), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -18955,7 +18971,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(768), 33, + ACTIONS(780), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -18990,7 +19006,7 @@ static const uint16_t ts_small_parse_table[] = { sym__block_attribute_begin, ts_builtin_sym_end, [6182] = 2, - ACTIONS(770), 7, + ACTIONS(782), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -18998,7 +19014,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(772), 33, + ACTIONS(784), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -19033,7 +19049,7 @@ static const uint16_t ts_small_parse_table[] = { sym__block_attribute_begin, ts_builtin_sym_end, [6227] = 2, - ACTIONS(774), 7, + ACTIONS(786), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -19041,7 +19057,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(776), 33, + ACTIONS(788), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -19076,7 +19092,7 @@ static const uint16_t ts_small_parse_table[] = { sym__block_attribute_begin, ts_builtin_sym_end, [6272] = 2, - ACTIONS(778), 7, + ACTIONS(790), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -19084,7 +19100,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(780), 33, + ACTIONS(792), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -19119,7 +19135,7 @@ static const uint16_t ts_small_parse_table[] = { sym__block_attribute_begin, ts_builtin_sym_end, [6317] = 2, - ACTIONS(782), 7, + ACTIONS(794), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -19127,7 +19143,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(784), 33, + ACTIONS(796), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -19162,7 +19178,7 @@ static const uint16_t ts_small_parse_table[] = { sym__block_attribute_begin, ts_builtin_sym_end, [6362] = 2, - ACTIONS(786), 7, + ACTIONS(798), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -19170,7 +19186,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(788), 33, + ACTIONS(800), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -19205,7 +19221,7 @@ static const uint16_t ts_small_parse_table[] = { sym__block_attribute_begin, ts_builtin_sym_end, [6407] = 2, - ACTIONS(846), 7, + ACTIONS(802), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -19213,7 +19229,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(848), 33, + ACTIONS(804), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -19248,7 +19264,7 @@ static const uint16_t ts_small_parse_table[] = { sym__block_attribute_begin, ts_builtin_sym_end, [6452] = 2, - ACTIONS(850), 7, + ACTIONS(854), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -19256,7 +19272,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(852), 33, + ACTIONS(856), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -19291,7 +19307,7 @@ static const uint16_t ts_small_parse_table[] = { sym__block_attribute_begin, ts_builtin_sym_end, [6497] = 2, - ACTIONS(854), 7, + ACTIONS(838), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -19299,7 +19315,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(856), 33, + ACTIONS(840), 33, sym__newline, sym__heading_begin, sym__div_begin, @@ -19334,7 +19350,7 @@ static const uint16_t ts_small_parse_table[] = { sym__block_attribute_begin, ts_builtin_sym_end, [6542] = 2, - ACTIONS(818), 7, + ACTIONS(844), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -19342,7 +19358,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(820), 33, + ACTIONS(842), 33, + sym__block_close, sym__newline, sym__heading_begin, sym__div_begin, @@ -19375,12 +19392,7 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, sym__block_attribute_begin, - ts_builtin_sym_end, - [6587] = 4, - ACTIONS(870), 1, - sym__block_quote_continuation, - STATE(208), 1, - aux_sym__block_quote_prefix_repeat1, + [6587] = 2, ACTIONS(866), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, @@ -19389,8 +19401,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(868), 30, - sym__block_close, + ACTIONS(868), 32, + sym__newline, + sym__heading_begin, sym__div_begin, sym__code_block_begin, sym_list_marker_dash, @@ -19414,14 +19427,19 @@ static const uint16_t ts_small_parse_table[] = { sym_list_marker_lower_roman_parens, sym_list_marker_upper_roman_parens, sym__block_quote_begin, + sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, sym__block_attribute_begin, - [6635] = 2, - ACTIONS(873), 7, + [6631] = 4, + ACTIONS(874), 1, + sym__block_quote_continuation, + STATE(209), 1, + aux_sym__block_quote_prefix_repeat1, + ACTIONS(870), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -19429,9 +19447,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(875), 32, - sym__newline, - sym__heading_begin, + ACTIONS(872), 30, + sym__block_close, sym__div_begin, sym__code_block_begin, sym_list_marker_dash, @@ -19455,7 +19472,6 @@ static const uint16_t ts_small_parse_table[] = { sym_list_marker_lower_roman_parens, sym_list_marker_upper_roman_parens, sym__block_quote_begin, - sym__block_quote_continuation, sym__thematic_break_dash, sym__thematic_break_star, sym__table_header_begin, @@ -19463,7 +19479,7 @@ static const uint16_t ts_small_parse_table[] = { sym__table_row_begin, sym__block_attribute_begin, [6679] = 2, - ACTIONS(460), 7, + ACTIONS(462), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -19471,7 +19487,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(462), 31, + ACTIONS(464), 31, sym__block_close, sym__div_begin, sym__code_block_begin, @@ -19506,11 +19522,11 @@ static const uint16_t ts_small_parse_table[] = { [6722] = 14, ACTIONS(27), 1, sym__list_marker_task_begin, - ACTIONS(89), 1, + ACTIONS(87), 1, sym__table_header_begin, - ACTIONS(91), 1, + ACTIONS(89), 1, sym__table_separator_begin, - ACTIONS(93), 1, + ACTIONS(91), 1, sym__table_row_begin, ACTIONS(877), 1, anon_sym_LBRACK_CARET, @@ -19522,11 +19538,11 @@ static const uint16_t ts_small_parse_table[] = { sym_list_marker_star, ACTIONS(885), 1, sym_list_marker_plus, - STATE(28), 1, + STATE(29), 1, sym_list_marker_task, - STATE(624), 1, + STATE(634), 1, sym__inline, - STATE(273), 2, + STATE(271), 2, sym__symbol_fallback, aux_sym__inline_repeat1, STATE(83), 3, @@ -19543,11 +19559,11 @@ static const uint16_t ts_small_parse_table[] = { [6773] = 14, ACTIONS(27), 1, sym__list_marker_task_begin, - ACTIONS(89), 1, + ACTIONS(87), 1, sym__table_header_begin, - ACTIONS(91), 1, + ACTIONS(89), 1, sym__table_separator_begin, - ACTIONS(93), 1, + ACTIONS(91), 1, sym__table_row_begin, ACTIONS(877), 1, anon_sym_LBRACK_CARET, @@ -19559,11 +19575,11 @@ static const uint16_t ts_small_parse_table[] = { sym_list_marker_plus, ACTIONS(887), 1, sym__block_close, - STATE(28), 1, + STATE(29), 1, sym_list_marker_task, - STATE(624), 1, + STATE(634), 1, sym__inline, - STATE(273), 2, + STATE(271), 2, sym__symbol_fallback, aux_sym__inline_repeat1, STATE(83), 3, @@ -19580,11 +19596,11 @@ static const uint16_t ts_small_parse_table[] = { [6824] = 14, ACTIONS(27), 1, sym__list_marker_task_begin, - ACTIONS(89), 1, + ACTIONS(87), 1, sym__table_header_begin, - ACTIONS(91), 1, + ACTIONS(89), 1, sym__table_separator_begin, - ACTIONS(93), 1, + ACTIONS(91), 1, sym__table_row_begin, ACTIONS(877), 1, anon_sym_LBRACK_CARET, @@ -19596,11 +19612,11 @@ static const uint16_t ts_small_parse_table[] = { sym_list_marker_plus, ACTIONS(889), 1, sym__block_close, - STATE(28), 1, + STATE(29), 1, sym_list_marker_task, - STATE(624), 1, + STATE(634), 1, sym__inline, - STATE(273), 2, + STATE(271), 2, sym__symbol_fallback, aux_sym__inline_repeat1, STATE(83), 3, @@ -19617,11 +19633,11 @@ static const uint16_t ts_small_parse_table[] = { [6875] = 14, ACTIONS(27), 1, sym__list_marker_task_begin, - ACTIONS(89), 1, + ACTIONS(87), 1, sym__table_header_begin, - ACTIONS(91), 1, + ACTIONS(89), 1, sym__table_separator_begin, - ACTIONS(93), 1, + ACTIONS(91), 1, sym__table_row_begin, ACTIONS(877), 1, anon_sym_LBRACK_CARET, @@ -19633,11 +19649,11 @@ static const uint16_t ts_small_parse_table[] = { sym_list_marker_plus, ACTIONS(891), 1, sym__block_close, - STATE(28), 1, + STATE(29), 1, sym_list_marker_task, - STATE(624), 1, + STATE(634), 1, sym__inline, - STATE(273), 2, + STATE(271), 2, sym__symbol_fallback, aux_sym__inline_repeat1, STATE(83), 3, @@ -19654,11 +19670,11 @@ static const uint16_t ts_small_parse_table[] = { [6926] = 14, ACTIONS(27), 1, sym__list_marker_task_begin, - ACTIONS(89), 1, + ACTIONS(87), 1, sym__table_header_begin, - ACTIONS(91), 1, + ACTIONS(89), 1, sym__table_separator_begin, - ACTIONS(93), 1, + ACTIONS(91), 1, sym__table_row_begin, ACTIONS(877), 1, anon_sym_LBRACK_CARET, @@ -19670,11 +19686,11 @@ static const uint16_t ts_small_parse_table[] = { sym_list_marker_plus, ACTIONS(893), 1, sym__block_close, - STATE(28), 1, + STATE(29), 1, sym_list_marker_task, - STATE(624), 1, + STATE(634), 1, sym__inline, - STATE(273), 2, + STATE(271), 2, sym__symbol_fallback, aux_sym__inline_repeat1, STATE(83), 3, @@ -19691,11 +19707,11 @@ static const uint16_t ts_small_parse_table[] = { [6977] = 14, ACTIONS(27), 1, sym__list_marker_task_begin, - ACTIONS(89), 1, + ACTIONS(87), 1, sym__table_header_begin, - ACTIONS(91), 1, + ACTIONS(89), 1, sym__table_separator_begin, - ACTIONS(93), 1, + ACTIONS(91), 1, sym__table_row_begin, ACTIONS(877), 1, anon_sym_LBRACK_CARET, @@ -19707,11 +19723,11 @@ static const uint16_t ts_small_parse_table[] = { sym_list_marker_plus, ACTIONS(895), 1, sym__block_close, - STATE(28), 1, + STATE(29), 1, sym_list_marker_task, - STATE(624), 1, + STATE(634), 1, sym__inline, - STATE(273), 2, + STATE(271), 2, sym__symbol_fallback, aux_sym__inline_repeat1, STATE(83), 3, @@ -19728,11 +19744,11 @@ static const uint16_t ts_small_parse_table[] = { [7028] = 14, ACTIONS(27), 1, sym__list_marker_task_begin, - ACTIONS(89), 1, + ACTIONS(87), 1, sym__table_header_begin, - ACTIONS(91), 1, + ACTIONS(89), 1, sym__table_separator_begin, - ACTIONS(93), 1, + ACTIONS(91), 1, sym__table_row_begin, ACTIONS(877), 1, anon_sym_LBRACK_CARET, @@ -19744,11 +19760,11 @@ static const uint16_t ts_small_parse_table[] = { sym_list_marker_plus, ACTIONS(897), 1, sym__block_close, - STATE(28), 1, + STATE(29), 1, sym_list_marker_task, - STATE(624), 1, + STATE(634), 1, sym__inline, - STATE(273), 2, + STATE(271), 2, sym__symbol_fallback, aux_sym__inline_repeat1, STATE(83), 3, @@ -19765,11 +19781,11 @@ static const uint16_t ts_small_parse_table[] = { [7079] = 14, ACTIONS(27), 1, sym__list_marker_task_begin, - ACTIONS(89), 1, + ACTIONS(87), 1, sym__table_header_begin, - ACTIONS(91), 1, + ACTIONS(89), 1, sym__table_separator_begin, - ACTIONS(93), 1, + ACTIONS(91), 1, sym__table_row_begin, ACTIONS(877), 1, anon_sym_LBRACK_CARET, @@ -19781,11 +19797,11 @@ static const uint16_t ts_small_parse_table[] = { sym_list_marker_plus, ACTIONS(899), 1, sym__block_close, - STATE(28), 1, + STATE(29), 1, sym_list_marker_task, - STATE(624), 1, + STATE(634), 1, sym__inline, - STATE(273), 2, + STATE(271), 2, sym__symbol_fallback, aux_sym__inline_repeat1, STATE(83), 3, @@ -19802,11 +19818,11 @@ static const uint16_t ts_small_parse_table[] = { [7130] = 14, ACTIONS(27), 1, sym__list_marker_task_begin, - ACTIONS(89), 1, + ACTIONS(87), 1, sym__table_header_begin, - ACTIONS(91), 1, + ACTIONS(89), 1, sym__table_separator_begin, - ACTIONS(93), 1, + ACTIONS(91), 1, sym__table_row_begin, ACTIONS(877), 1, anon_sym_LBRACK_CARET, @@ -19818,11 +19834,11 @@ static const uint16_t ts_small_parse_table[] = { sym_list_marker_plus, ACTIONS(901), 1, sym__block_close, - STATE(28), 1, + STATE(29), 1, sym_list_marker_task, - STATE(624), 1, + STATE(634), 1, sym__inline, - STATE(273), 2, + STATE(271), 2, sym__symbol_fallback, aux_sym__inline_repeat1, STATE(83), 3, @@ -19839,11 +19855,11 @@ static const uint16_t ts_small_parse_table[] = { [7181] = 14, ACTIONS(27), 1, sym__list_marker_task_begin, - ACTIONS(89), 1, + ACTIONS(87), 1, sym__table_header_begin, - ACTIONS(91), 1, + ACTIONS(89), 1, sym__table_separator_begin, - ACTIONS(93), 1, + ACTIONS(91), 1, sym__table_row_begin, ACTIONS(877), 1, anon_sym_LBRACK_CARET, @@ -19855,11 +19871,11 @@ static const uint16_t ts_small_parse_table[] = { sym_list_marker_plus, ACTIONS(903), 1, sym__block_close, - STATE(28), 1, + STATE(29), 1, sym_list_marker_task, - STATE(624), 1, + STATE(634), 1, sym__inline, - STATE(273), 2, + STATE(271), 2, sym__symbol_fallback, aux_sym__inline_repeat1, STATE(83), 3, @@ -19876,11 +19892,11 @@ static const uint16_t ts_small_parse_table[] = { [7232] = 13, ACTIONS(27), 1, sym__list_marker_task_begin, - ACTIONS(67), 1, + ACTIONS(480), 1, sym__table_header_begin, - ACTIONS(69), 1, + ACTIONS(482), 1, sym__table_separator_begin, - ACTIONS(71), 1, + ACTIONS(484), 1, sym__table_row_begin, ACTIONS(877), 1, anon_sym_LBRACK_CARET, @@ -19890,14 +19906,14 @@ static const uint16_t ts_small_parse_table[] = { sym_list_marker_star, ACTIONS(885), 1, sym_list_marker_plus, - STATE(28), 1, + STATE(29), 1, sym_list_marker_task, - STATE(624), 1, + STATE(634), 1, sym__inline, - STATE(273), 2, + STATE(271), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - STATE(81), 3, + STATE(324), 3, sym_table_header, sym_table_separator, sym_table_row, @@ -19911,11 +19927,11 @@ static const uint16_t ts_small_parse_table[] = { [7280] = 13, ACTIONS(27), 1, sym__list_marker_task_begin, - ACTIONS(480), 1, + ACTIONS(378), 1, sym__table_header_begin, - ACTIONS(482), 1, + ACTIONS(380), 1, sym__table_separator_begin, - ACTIONS(484), 1, + ACTIONS(382), 1, sym__table_row_begin, ACTIONS(877), 1, anon_sym_LBRACK_CARET, @@ -19925,14 +19941,14 @@ static const uint16_t ts_small_parse_table[] = { sym_list_marker_star, ACTIONS(885), 1, sym_list_marker_plus, - STATE(28), 1, + STATE(29), 1, sym_list_marker_task, - STATE(624), 1, + STATE(634), 1, sym__inline, - STATE(273), 2, + STATE(271), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - STATE(343), 3, + STATE(356), 3, sym_table_header, sym_table_separator, sym_table_row, @@ -19946,11 +19962,11 @@ static const uint16_t ts_small_parse_table[] = { [7328] = 13, ACTIONS(27), 1, sym__list_marker_task_begin, - ACTIONS(89), 1, + ACTIONS(87), 1, sym__table_header_begin, - ACTIONS(91), 1, + ACTIONS(89), 1, sym__table_separator_begin, - ACTIONS(93), 1, + ACTIONS(91), 1, sym__table_row_begin, ACTIONS(877), 1, anon_sym_LBRACK_CARET, @@ -19960,11 +19976,11 @@ static const uint16_t ts_small_parse_table[] = { sym_list_marker_star, ACTIONS(885), 1, sym_list_marker_plus, - STATE(28), 1, + STATE(29), 1, sym_list_marker_task, - STATE(624), 1, + STATE(634), 1, sym__inline, - STATE(273), 2, + STATE(271), 2, sym__symbol_fallback, aux_sym__inline_repeat1, STATE(83), 3, @@ -19981,11 +19997,11 @@ static const uint16_t ts_small_parse_table[] = { [7376] = 13, ACTIONS(27), 1, sym__list_marker_task_begin, - ACTIONS(446), 1, - sym__table_header_begin, ACTIONS(448), 1, - sym__table_separator_begin, + sym__table_header_begin, ACTIONS(450), 1, + sym__table_separator_begin, + ACTIONS(452), 1, sym__table_row_begin, ACTIONS(877), 1, anon_sym_LBRACK_CARET, @@ -19995,14 +20011,14 @@ static const uint16_t ts_small_parse_table[] = { sym_list_marker_star, ACTIONS(885), 1, sym_list_marker_plus, - STATE(28), 1, + STATE(29), 1, sym_list_marker_task, - STATE(624), 1, + STATE(634), 1, sym__inline, - STATE(273), 2, + STATE(271), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - STATE(309), 3, + STATE(291), 3, sym_table_header, sym_table_separator, sym_table_row, @@ -20016,11 +20032,11 @@ static const uint16_t ts_small_parse_table[] = { [7424] = 13, ACTIONS(27), 1, sym__list_marker_task_begin, - ACTIONS(378), 1, + ACTIONS(67), 1, sym__table_header_begin, - ACTIONS(380), 1, + ACTIONS(69), 1, sym__table_separator_begin, - ACTIONS(382), 1, + ACTIONS(71), 1, sym__table_row_begin, ACTIONS(877), 1, anon_sym_LBRACK_CARET, @@ -20030,14 +20046,14 @@ static const uint16_t ts_small_parse_table[] = { sym_list_marker_star, ACTIONS(885), 1, sym_list_marker_plus, - STATE(28), 1, + STATE(29), 1, sym_list_marker_task, - STATE(624), 1, + STATE(634), 1, sym__inline, - STATE(273), 2, + STATE(271), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - STATE(329), 3, + STATE(81), 3, sym_table_header, sym_table_separator, sym_table_row, @@ -20075,7 +20091,7 @@ static const uint16_t ts_small_parse_table[] = { sym__block_quote_continuation, STATE(227), 1, aux_sym__block_quote_prefix_repeat1, - ACTIONS(866), 7, + ACTIONS(870), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -20083,7 +20099,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(868), 8, + ACTIONS(872), 8, sym__block_close, sym_list_marker_dash, sym_list_marker_star, @@ -20092,61 +20108,36 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [7524] = 4, - ACTIONS(914), 1, - sym__block_quote_continuation, - STATE(228), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(866), 7, - anon_sym_LBRACK, - anon_sym_LBRACK_CARET, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE, - anon_sym_PERCENT, - ACTIONS(868), 7, - sym_list_marker_dash, - sym_list_marker_star, - sym_list_marker_plus, - sym__list_marker_task_begin, - sym__table_header_begin, - sym__table_separator_begin, - sym__table_row_begin, - [7549] = 11, - ACTIONS(446), 1, - sym__table_header_begin, + [7524] = 11, ACTIONS(448), 1, - sym__table_separator_begin, + sym__table_header_begin, ACTIONS(450), 1, + sym__table_separator_begin, + ACTIONS(452), 1, sym__table_row_begin, ACTIONS(503), 1, sym__block_quote_continuation, - ACTIONS(917), 1, + ACTIONS(914), 1, sym__newline, - ACTIONS(919), 1, + ACTIONS(916), 1, sym__table_caption_begin, - STATE(415), 1, + STATE(361), 1, sym__block_quote_prefix, - STATE(421), 1, + STATE(417), 1, aux_sym__block_quote_prefix_repeat1, - STATE(638), 1, + STATE(580), 1, sym_table_caption, ACTIONS(497), 2, sym__list_item_continuation, sym__list_item_end, - STATE(236), 5, + STATE(235), 5, sym__table_row, sym_table_header, sym_table_separator, sym_table_row, aux_sym_table_repeat1, - [7588] = 4, - ACTIONS(63), 1, - sym__block_quote_continuation, - STATE(228), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(905), 7, + [7563] = 2, + ACTIONS(462), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -20154,16 +20145,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(907), 7, + ACTIONS(464), 9, + sym__block_close, sym_list_marker_dash, sym_list_marker_star, sym_list_marker_plus, sym__list_marker_task_begin, + sym__block_quote_continuation, sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [7613] = 2, - ACTIONS(460), 7, + [7584] = 4, + ACTIONS(918), 1, + sym__block_quote_continuation, + STATE(230), 1, + aux_sym__block_quote_prefix_repeat1, + ACTIONS(870), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -20171,61 +20168,55 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(462), 9, - sym__block_close, + ACTIONS(872), 7, sym_list_marker_dash, sym_list_marker_star, sym_list_marker_plus, sym__list_marker_task_begin, - sym__block_quote_continuation, sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [7634] = 9, - ACTIONS(877), 1, - anon_sym_LBRACK_CARET, - ACTIONS(921), 1, + [7609] = 4, + ACTIONS(63), 1, sym__block_quote_continuation, - STATE(276), 1, - sym__block_quote_prefix, - STATE(284), 1, + STATE(230), 1, aux_sym__block_quote_prefix_repeat1, - STATE(654), 1, - sym__inline, - STATE(815), 1, - sym__paragraph_content, - STATE(824), 1, - sym__paragraph_inline_content, - STATE(273), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(9), 6, + ACTIONS(905), 7, anon_sym_LBRACK, + anon_sym_LBRACK_CARET, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - [7668] = 11, - ACTIONS(480), 1, + ACTIONS(907), 7, + sym_list_marker_dash, + sym_list_marker_star, + sym_list_marker_plus, + sym__list_marker_task_begin, sym__table_header_begin, - ACTIONS(482), 1, sym__table_separator_begin, - ACTIONS(484), 1, + sym__table_row_begin, + [7634] = 11, + ACTIONS(378), 1, + sym__table_header_begin, + ACTIONS(380), 1, + sym__table_separator_begin, + ACTIONS(382), 1, sym__table_row_begin, ACTIONS(497), 1, - sym__block_close, + sym__indented_content_spacer, ACTIONS(503), 1, sym__block_quote_continuation, - ACTIONS(923), 1, + ACTIONS(921), 1, sym__newline, - ACTIONS(925), 1, + ACTIONS(923), 1, sym__table_caption_begin, - STATE(408), 1, + STATE(400), 1, sym__block_quote_prefix, - STATE(421), 1, + STATE(417), 1, aux_sym__block_quote_prefix_repeat1, - STATE(846), 1, + STATE(1149), 1, sym_table_caption, STATE(240), 5, sym__table_row, @@ -20233,35 +20224,35 @@ static const uint16_t ts_small_parse_table[] = { sym_table_separator, sym_table_row, aux_sym_table_repeat1, - [7706] = 11, - ACTIONS(378), 1, + [7672] = 11, + ACTIONS(480), 1, sym__table_header_begin, - ACTIONS(380), 1, + ACTIONS(482), 1, sym__table_separator_begin, - ACTIONS(382), 1, + ACTIONS(484), 1, sym__table_row_begin, ACTIONS(497), 1, - sym__indented_content_spacer, + sym__block_close, ACTIONS(503), 1, sym__block_quote_continuation, - ACTIONS(927), 1, + ACTIONS(925), 1, sym__newline, - ACTIONS(929), 1, + ACTIONS(927), 1, sym__table_caption_begin, - STATE(362), 1, + STATE(365), 1, sym__block_quote_prefix, - STATE(421), 1, + STATE(417), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1038), 1, + STATE(735), 1, sym_table_caption, - STATE(239), 5, + STATE(243), 5, sym__table_row, sym_table_header, sym_table_separator, sym_table_row, aux_sym_table_repeat1, - [7744] = 2, - ACTIONS(460), 7, + [7710] = 2, + ACTIONS(462), 7, anon_sym_LBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, @@ -20269,7 +20260,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - ACTIONS(462), 8, + ACTIONS(464), 8, sym_list_marker_dash, sym_list_marker_star, sym_list_marker_plus, @@ -20278,30 +20269,55 @@ static const uint16_t ts_small_parse_table[] = { sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [7764] = 8, + [7730] = 8, ACTIONS(515), 1, sym__block_quote_continuation, - ACTIONS(931), 1, + ACTIONS(929), 1, sym__table_header_begin, - ACTIONS(934), 1, + ACTIONS(932), 1, sym__table_separator_begin, - ACTIONS(937), 1, + ACTIONS(935), 1, sym__table_row_begin, - STATE(415), 1, + STATE(361), 1, sym__block_quote_prefix, - STATE(421), 1, + STATE(417), 1, aux_sym__block_quote_prefix_repeat1, ACTIONS(513), 4, sym__newline, sym__list_item_continuation, sym__list_item_end, sym__table_caption_begin, - STATE(236), 5, + STATE(235), 5, sym__table_row, sym_table_header, sym_table_separator, sym_table_row, aux_sym_table_repeat1, + [7762] = 9, + ACTIONS(877), 1, + anon_sym_LBRACK_CARET, + ACTIONS(938), 1, + sym__block_quote_continuation, + STATE(277), 1, + sym__block_quote_prefix, + STATE(284), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(657), 1, + sym__inline, + STATE(814), 1, + sym__paragraph_inline_content, + STATE(849), 1, + sym__paragraph_content, + STATE(271), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(9), 6, + anon_sym_LBRACK, + anon_sym_DOT, + aux_sym_identifier_token1, + aux_sym__inline_token1, + anon_sym_LBRACE, + anon_sym_PERCENT, [7796] = 8, ACTIONS(942), 1, anon_sym_NULL, @@ -20309,13 +20325,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_CARET, ACTIONS(946), 1, sym__table_caption_end, - STATE(241), 1, + STATE(242), 1, aux_sym_table_caption_repeat1, - STATE(282), 1, + STATE(283), 1, sym__inline_line, - STATE(1046), 1, + STATE(1056), 1, sym__inline, - STATE(275), 2, + STATE(279), 2, sym__symbol_fallback, aux_sym__inline_repeat1, ACTIONS(940), 6, @@ -20332,13 +20348,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, ACTIONS(950), 1, sym__table_caption_end, - STATE(241), 1, + STATE(242), 1, aux_sym_table_caption_repeat1, - STATE(282), 1, + STATE(283), 1, sym__inline_line, - STATE(1046), 1, + STATE(1056), 1, sym__inline, - STATE(275), 2, + STATE(279), 2, sym__symbol_fallback, aux_sym__inline_repeat1, ACTIONS(940), 6, @@ -20349,44 +20365,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PERCENT, [7858] = 8, - ACTIONS(515), 1, - sym__block_quote_continuation, + ACTIONS(944), 1, + anon_sym_LBRACK_CARET, ACTIONS(952), 1, - sym__table_header_begin, - ACTIONS(955), 1, - sym__table_separator_begin, - ACTIONS(958), 1, - sym__table_row_begin, - STATE(362), 1, - sym__block_quote_prefix, - STATE(421), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(513), 3, - sym__newline, - sym__indented_content_spacer, - sym__table_caption_begin, - STATE(239), 5, - sym__table_row, - sym_table_header, - sym_table_separator, - sym_table_row, - aux_sym_table_repeat1, + anon_sym_NULL, + ACTIONS(954), 1, + sym__table_caption_end, + STATE(242), 1, + aux_sym_table_caption_repeat1, + STATE(283), 1, + sym__inline_line, + STATE(1056), 1, + sym__inline, + STATE(279), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(940), 6, + anon_sym_LBRACK, + anon_sym_DOT, + aux_sym_identifier_token1, + aux_sym__inline_token1, + anon_sym_LBRACE, + anon_sym_PERCENT, [7889] = 8, ACTIONS(515), 1, sym__block_quote_continuation, - ACTIONS(961), 1, + ACTIONS(956), 1, sym__table_header_begin, - ACTIONS(964), 1, + ACTIONS(959), 1, sym__table_separator_begin, - ACTIONS(967), 1, + ACTIONS(962), 1, sym__table_row_begin, - STATE(408), 1, + STATE(400), 1, sym__block_quote_prefix, - STATE(421), 1, + STATE(417), 1, aux_sym__block_quote_prefix_repeat1, ACTIONS(513), 3, - sym__block_close, sym__newline, + sym__indented_content_spacer, sym__table_caption_begin, STATE(240), 5, sym__table_row, @@ -20395,22 +20411,22 @@ static const uint16_t ts_small_parse_table[] = { sym_table_row, aux_sym_table_repeat1, [7920] = 8, - ACTIONS(973), 1, - anon_sym_NULL, - ACTIONS(975), 1, + ACTIONS(944), 1, anon_sym_LBRACK_CARET, - ACTIONS(978), 1, + ACTIONS(965), 1, + anon_sym_NULL, + ACTIONS(967), 1, sym__table_caption_end, - STATE(241), 1, + STATE(242), 1, aux_sym_table_caption_repeat1, - STATE(282), 1, + STATE(283), 1, sym__inline_line, - STATE(1046), 1, + STATE(1056), 1, sym__inline, - STATE(275), 2, + STATE(279), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(970), 6, + ACTIONS(940), 6, anon_sym_LBRACK, anon_sym_DOT, aux_sym_identifier_token1, @@ -20418,22 +20434,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PERCENT, [7951] = 8, - ACTIONS(944), 1, - anon_sym_LBRACK_CARET, - ACTIONS(980), 1, + ACTIONS(972), 1, anon_sym_NULL, - ACTIONS(982), 1, + ACTIONS(974), 1, + anon_sym_LBRACK_CARET, + ACTIONS(977), 1, sym__table_caption_end, - STATE(241), 1, + STATE(242), 1, aux_sym_table_caption_repeat1, - STATE(282), 1, + STATE(283), 1, sym__inline_line, - STATE(1046), 1, + STATE(1056), 1, sym__inline, - STATE(275), 2, + STATE(279), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(940), 6, + ACTIONS(969), 6, anon_sym_LBRACK, anon_sym_DOT, aux_sym_identifier_token1, @@ -20441,19 +20457,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PERCENT, [7982] = 8, + ACTIONS(515), 1, + sym__block_quote_continuation, + ACTIONS(979), 1, + sym__table_header_begin, + ACTIONS(982), 1, + sym__table_separator_begin, + ACTIONS(985), 1, + sym__table_row_begin, + STATE(365), 1, + sym__block_quote_prefix, + STATE(417), 1, + aux_sym__block_quote_prefix_repeat1, + ACTIONS(513), 3, + sym__block_close, + sym__newline, + sym__table_caption_begin, + STATE(243), 5, + sym__table_row, + sym_table_header, + sym_table_separator, + sym_table_row, + aux_sym_table_repeat1, + [8013] = 8, ACTIONS(944), 1, anon_sym_LBRACK_CARET, - ACTIONS(984), 1, + ACTIONS(988), 1, anon_sym_NULL, - ACTIONS(986), 1, + ACTIONS(990), 1, sym__table_caption_end, - STATE(241), 1, + STATE(242), 1, aux_sym_table_caption_repeat1, - STATE(282), 1, + STATE(283), 1, sym__inline_line, - STATE(1046), 1, + STATE(1056), 1, sym__inline, - STATE(275), 2, + STATE(279), 2, sym__symbol_fallback, aux_sym__inline_repeat1, ACTIONS(940), 6, @@ -20463,113 +20502,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - [8013] = 8, - ACTIONS(944), 1, - anon_sym_LBRACK_CARET, - ACTIONS(988), 1, - anon_sym_NULL, - ACTIONS(990), 1, - sym__table_caption_end, - STATE(241), 1, - aux_sym_table_caption_repeat1, - STATE(282), 1, - sym__inline_line, - STATE(1046), 1, - sym__inline, - STATE(275), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(940), 6, - anon_sym_LBRACK, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE, - anon_sym_PERCENT, - [8044] = 6, - ACTIONS(995), 1, - anon_sym_LBRACK_CARET, - STATE(933), 1, - sym__inline, - STATE(1146), 1, - sym_link_label, - ACTIONS(998), 2, - sym__eof_or_newline, - sym__newline_inline, - STATE(277), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(992), 6, - anon_sym_LBRACK, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE, - anon_sym_PERCENT, - [8070] = 6, - ACTIONS(995), 1, - anon_sym_LBRACK_CARET, - STATE(933), 1, - sym__inline, - STATE(1145), 1, - sym_link_label, - ACTIONS(998), 2, - sym__eof_or_newline, - sym__newline_inline, - STATE(277), 2, - sym__symbol_fallback, - aux_sym__inline_repeat1, - ACTIONS(992), 6, - anon_sym_LBRACK, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE, - anon_sym_PERCENT, - [8096] = 9, - ACTIONS(1000), 1, + [8044] = 9, + ACTIONS(992), 1, anon_sym_RBRACE, - ACTIONS(1002), 1, + ACTIONS(994), 1, anon_sym_DOT, - ACTIONS(1004), 1, + ACTIONS(996), 1, aux_sym_identifier_token1, - ACTIONS(1008), 1, + ACTIONS(1000), 1, anon_sym_PERCENT, - ACTIONS(1010), 1, + ACTIONS(1002), 1, sym__id, - STATE(251), 1, + STATE(249), 1, aux_sym_block_attribute_repeat1, - STATE(1112), 1, + STATE(1074), 1, sym_key, - ACTIONS(1006), 2, + ACTIONS(998), 2, sym__newline, sym__whitespace1, - STATE(331), 4, + STATE(320), 4, sym_class, sym_identifier, sym_key_value, sym_comment, - [8128] = 6, - ACTIONS(995), 1, + [8076] = 6, + ACTIONS(1007), 1, anon_sym_LBRACK_CARET, - STATE(931), 1, - sym_link_label, - STATE(933), 1, + STATE(1112), 1, sym__inline, - ACTIONS(998), 2, + STATE(1146), 1, + sym_link_label, + ACTIONS(1010), 2, sym__eof_or_newline, sym__newline_inline, - STATE(277), 2, + STATE(275), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(992), 6, + ACTIONS(1004), 6, anon_sym_LBRACK, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - [8154] = 9, + [8102] = 9, ACTIONS(1012), 1, anon_sym_RBRACE, ACTIONS(1014), 1, @@ -20580,30 +20556,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, ACTIONS(1026), 1, sym__id, - STATE(249), 1, + STATE(247), 1, aux_sym_block_attribute_repeat1, - STATE(1112), 1, + STATE(1074), 1, sym_key, ACTIONS(1020), 2, sym__newline, sym__whitespace1, - STATE(331), 4, + STATE(320), 4, sym_class, sym_identifier, sym_key_value, sym_comment, - [8186] = 7, + [8134] = 7, ACTIONS(877), 1, anon_sym_LBRACK_CARET, - ACTIONS(921), 1, + ACTIONS(938), 1, sym__block_quote_continuation, - STATE(279), 1, + STATE(276), 1, sym__block_quote_prefix, STATE(284), 1, aux_sym__block_quote_prefix_repeat1, - STATE(696), 1, + STATE(774), 1, sym__inline, - STATE(273), 2, + STATE(271), 2, sym__symbol_fallback, aux_sym__inline_repeat1, ACTIONS(9), 6, @@ -20613,247 +20589,287 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - [8214] = 9, - ACTIONS(1002), 1, + [8162] = 9, + ACTIONS(994), 1, anon_sym_DOT, - ACTIONS(1004), 1, + ACTIONS(996), 1, aux_sym_identifier_token1, - ACTIONS(1008), 1, + ACTIONS(1000), 1, anon_sym_PERCENT, - ACTIONS(1010), 1, + ACTIONS(1002), 1, sym__id, ACTIONS(1029), 1, anon_sym_RBRACE, - STATE(249), 1, + STATE(247), 1, aux_sym_block_attribute_repeat1, - STATE(1112), 1, + STATE(1074), 1, sym_key, - ACTIONS(1006), 2, + ACTIONS(998), 2, sym__newline, sym__whitespace1, - STATE(331), 4, + STATE(320), 4, sym_class, sym_identifier, sym_key_value, sym_comment, - [8246] = 9, - ACTIONS(1002), 1, + [8194] = 6, + ACTIONS(1007), 1, + anon_sym_LBRACK_CARET, + STATE(1110), 1, + sym_link_label, + STATE(1112), 1, + sym__inline, + ACTIONS(1010), 2, + sym__eof_or_newline, + sym__newline_inline, + STATE(275), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(1004), 6, + anon_sym_LBRACK, + anon_sym_DOT, + aux_sym_identifier_token1, + aux_sym__inline_token1, + anon_sym_LBRACE, + anon_sym_PERCENT, + [8220] = 9, + ACTIONS(994), 1, anon_sym_DOT, - ACTIONS(1004), 1, + ACTIONS(996), 1, aux_sym_identifier_token1, - ACTIONS(1008), 1, + ACTIONS(1000), 1, anon_sym_PERCENT, - ACTIONS(1010), 1, + ACTIONS(1002), 1, sym__id, ACTIONS(1031), 1, anon_sym_RBRACE, - STATE(253), 1, + STATE(252), 1, aux_sym_block_attribute_repeat1, - STATE(1112), 1, + STATE(1074), 1, sym_key, - ACTIONS(1006), 2, + ACTIONS(998), 2, sym__newline, sym__whitespace1, - STATE(331), 4, + STATE(320), 4, sym_class, sym_identifier, sym_key_value, sym_comment, - [8278] = 9, - ACTIONS(1002), 1, + [8252] = 9, + ACTIONS(994), 1, anon_sym_DOT, - ACTIONS(1004), 1, + ACTIONS(996), 1, aux_sym_identifier_token1, - ACTIONS(1008), 1, + ACTIONS(1000), 1, anon_sym_PERCENT, - ACTIONS(1010), 1, + ACTIONS(1002), 1, sym__id, ACTIONS(1033), 1, anon_sym_RBRACE, - STATE(249), 1, + STATE(247), 1, aux_sym_block_attribute_repeat1, - STATE(1112), 1, + STATE(1074), 1, sym_key, - ACTIONS(1006), 2, + ACTIONS(998), 2, sym__newline, sym__whitespace1, - STATE(331), 4, + STATE(320), 4, sym_class, sym_identifier, sym_key_value, sym_comment, - [8310] = 9, - ACTIONS(1002), 1, + [8284] = 9, + ACTIONS(994), 1, anon_sym_DOT, - ACTIONS(1004), 1, + ACTIONS(996), 1, aux_sym_identifier_token1, - ACTIONS(1008), 1, + ACTIONS(1000), 1, anon_sym_PERCENT, - ACTIONS(1010), 1, + ACTIONS(1002), 1, sym__id, ACTIONS(1035), 1, anon_sym_RBRACE, - STATE(255), 1, + STATE(254), 1, aux_sym_block_attribute_repeat1, - STATE(1112), 1, + STATE(1074), 1, sym_key, - ACTIONS(1006), 2, + ACTIONS(998), 2, sym__newline, sym__whitespace1, - STATE(331), 4, + STATE(320), 4, sym_class, sym_identifier, sym_key_value, sym_comment, - [8342] = 9, - ACTIONS(1002), 1, + [8316] = 9, + ACTIONS(994), 1, anon_sym_DOT, - ACTIONS(1004), 1, + ACTIONS(996), 1, aux_sym_identifier_token1, - ACTIONS(1008), 1, + ACTIONS(1000), 1, anon_sym_PERCENT, - ACTIONS(1010), 1, + ACTIONS(1002), 1, sym__id, ACTIONS(1037), 1, anon_sym_RBRACE, - STATE(249), 1, + STATE(247), 1, aux_sym_block_attribute_repeat1, - STATE(1112), 1, + STATE(1074), 1, sym_key, - ACTIONS(1006), 2, + ACTIONS(998), 2, sym__newline, sym__whitespace1, - STATE(331), 4, + STATE(320), 4, sym_class, sym_identifier, sym_key_value, sym_comment, - [8374] = 9, - ACTIONS(1002), 1, + [8348] = 9, + ACTIONS(994), 1, anon_sym_DOT, - ACTIONS(1004), 1, + ACTIONS(996), 1, aux_sym_identifier_token1, - ACTIONS(1008), 1, + ACTIONS(1000), 1, anon_sym_PERCENT, - ACTIONS(1010), 1, + ACTIONS(1002), 1, sym__id, ACTIONS(1039), 1, anon_sym_RBRACE, - STATE(257), 1, + STATE(256), 1, aux_sym_block_attribute_repeat1, - STATE(1112), 1, + STATE(1074), 1, sym_key, - ACTIONS(1006), 2, + ACTIONS(998), 2, sym__newline, sym__whitespace1, - STATE(331), 4, + STATE(320), 4, sym_class, sym_identifier, sym_key_value, sym_comment, - [8406] = 9, - ACTIONS(1002), 1, + [8380] = 9, + ACTIONS(994), 1, anon_sym_DOT, - ACTIONS(1004), 1, + ACTIONS(996), 1, aux_sym_identifier_token1, - ACTIONS(1008), 1, + ACTIONS(1000), 1, anon_sym_PERCENT, - ACTIONS(1010), 1, + ACTIONS(1002), 1, sym__id, ACTIONS(1041), 1, anon_sym_RBRACE, - STATE(249), 1, + STATE(247), 1, aux_sym_block_attribute_repeat1, - STATE(1112), 1, + STATE(1074), 1, sym_key, - ACTIONS(1006), 2, + ACTIONS(998), 2, sym__newline, sym__whitespace1, - STATE(331), 4, + STATE(320), 4, sym_class, sym_identifier, sym_key_value, sym_comment, - [8438] = 9, - ACTIONS(1002), 1, + [8412] = 9, + ACTIONS(994), 1, anon_sym_DOT, - ACTIONS(1004), 1, + ACTIONS(996), 1, aux_sym_identifier_token1, - ACTIONS(1008), 1, + ACTIONS(1000), 1, anon_sym_PERCENT, - ACTIONS(1010), 1, + ACTIONS(1002), 1, sym__id, ACTIONS(1043), 1, anon_sym_RBRACE, - STATE(259), 1, + STATE(258), 1, aux_sym_block_attribute_repeat1, - STATE(1112), 1, + STATE(1074), 1, sym_key, - ACTIONS(1006), 2, + ACTIONS(998), 2, sym__newline, sym__whitespace1, - STATE(331), 4, + STATE(320), 4, sym_class, sym_identifier, sym_key_value, sym_comment, - [8470] = 9, - ACTIONS(1002), 1, + [8444] = 9, + ACTIONS(994), 1, anon_sym_DOT, - ACTIONS(1004), 1, + ACTIONS(996), 1, aux_sym_identifier_token1, - ACTIONS(1008), 1, + ACTIONS(1000), 1, anon_sym_PERCENT, - ACTIONS(1010), 1, + ACTIONS(1002), 1, sym__id, ACTIONS(1045), 1, anon_sym_RBRACE, - STATE(249), 1, + STATE(247), 1, aux_sym_block_attribute_repeat1, - STATE(1112), 1, + STATE(1074), 1, sym_key, - ACTIONS(1006), 2, + ACTIONS(998), 2, sym__newline, sym__whitespace1, - STATE(331), 4, + STATE(320), 4, sym_class, sym_identifier, sym_key_value, sym_comment, - [8502] = 6, - ACTIONS(995), 1, + [8476] = 6, + ACTIONS(1007), 1, anon_sym_LBRACK_CARET, - STATE(933), 1, + STATE(1112), 1, sym__inline, STATE(1143), 1, sym_link_label, - ACTIONS(998), 2, + ACTIONS(1010), 2, sym__eof_or_newline, sym__newline_inline, - STATE(277), 2, + STATE(275), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(992), 6, + ACTIONS(1004), 6, anon_sym_LBRACK, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - [8528] = 6, - ACTIONS(995), 1, + [8502] = 6, + ACTIONS(1007), 1, anon_sym_LBRACK_CARET, - STATE(933), 1, + STATE(1112), 1, sym__inline, STATE(1144), 1, sym_link_label, - ACTIONS(998), 2, + ACTIONS(1010), 2, + sym__eof_or_newline, + sym__newline_inline, + STATE(275), 2, + sym__symbol_fallback, + aux_sym__inline_repeat1, + ACTIONS(1004), 6, + anon_sym_LBRACK, + anon_sym_DOT, + aux_sym_identifier_token1, + aux_sym__inline_token1, + anon_sym_LBRACE, + anon_sym_PERCENT, + [8528] = 6, + ACTIONS(1007), 1, + anon_sym_LBRACK_CARET, + STATE(1112), 1, + sym__inline, + STATE(1145), 1, + sym_link_label, + ACTIONS(1010), 2, sym__eof_or_newline, sym__newline_inline, - STATE(277), 2, + STATE(275), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(992), 6, + ACTIONS(1004), 6, anon_sym_LBRACK, anon_sym_DOT, aux_sym_identifier_token1, @@ -20863,13 +20879,13 @@ static const uint16_t ts_small_parse_table[] = { [8554] = 6, ACTIONS(944), 1, anon_sym_LBRACK_CARET, - STATE(243), 1, - aux_sym_table_caption_repeat1, - STATE(282), 1, + STATE(644), 1, sym__inline_line, - STATE(1046), 1, + STATE(957), 1, sym__inline, - STATE(275), 2, + STATE(984), 1, + sym__heading_content, + STATE(279), 2, sym__symbol_fallback, aux_sym__inline_repeat1, ACTIONS(940), 6, @@ -20882,13 +20898,13 @@ static const uint16_t ts_small_parse_table[] = { [8579] = 6, ACTIONS(944), 1, anon_sym_LBRACK_CARET, - STATE(568), 1, + STATE(244), 1, + aux_sym_table_caption_repeat1, + STATE(283), 1, sym__inline_line, - STATE(935), 1, + STATE(1056), 1, sym__inline, - STATE(1041), 1, - sym__heading_content, - STATE(275), 2, + STATE(279), 2, sym__symbol_fallback, aux_sym__inline_repeat1, ACTIONS(940), 6, @@ -20901,13 +20917,13 @@ static const uint16_t ts_small_parse_table[] = { [8604] = 6, ACTIONS(944), 1, anon_sym_LBRACK_CARET, - STATE(568), 1, + STATE(239), 1, + aux_sym_table_caption_repeat1, + STATE(283), 1, sym__inline_line, - STATE(935), 1, + STATE(1056), 1, sym__inline, - STATE(968), 1, - sym__heading_content, - STATE(275), 2, + STATE(279), 2, sym__symbol_fallback, aux_sym__inline_repeat1, ACTIONS(940), 6, @@ -20920,13 +20936,13 @@ static const uint16_t ts_small_parse_table[] = { [8629] = 6, ACTIONS(944), 1, anon_sym_LBRACK_CARET, - STATE(242), 1, - aux_sym_table_caption_repeat1, - STATE(282), 1, + STATE(644), 1, sym__inline_line, - STATE(1046), 1, + STATE(957), 1, sym__inline, - STATE(275), 2, + STATE(1124), 1, + sym__heading_content, + STATE(279), 2, sym__symbol_fallback, aux_sym__inline_repeat1, ACTIONS(940), 6, @@ -20939,13 +20955,13 @@ static const uint16_t ts_small_parse_table[] = { [8654] = 6, ACTIONS(944), 1, anon_sym_LBRACK_CARET, - STATE(238), 1, - aux_sym_table_caption_repeat1, - STATE(282), 1, + STATE(644), 1, sym__inline_line, - STATE(1046), 1, + STATE(957), 1, sym__inline, - STATE(275), 2, + STATE(1048), 1, + sym__heading_content, + STATE(279), 2, sym__symbol_fallback, aux_sym__inline_repeat1, ACTIONS(940), 6, @@ -20958,13 +20974,13 @@ static const uint16_t ts_small_parse_table[] = { [8679] = 6, ACTIONS(944), 1, anon_sym_LBRACK_CARET, - STATE(568), 1, + STATE(237), 1, + aux_sym_table_caption_repeat1, + STATE(283), 1, sym__inline_line, - STATE(935), 1, + STATE(1056), 1, sym__inline, - STATE(1124), 1, - sym__heading_content, - STATE(275), 2, + STATE(279), 2, sym__symbol_fallback, aux_sym__inline_repeat1, ACTIONS(940), 6, @@ -20977,13 +20993,13 @@ static const uint16_t ts_small_parse_table[] = { [8704] = 6, ACTIONS(944), 1, anon_sym_LBRACK_CARET, - STATE(568), 1, + STATE(644), 1, sym__inline_line, - STATE(896), 1, - sym__heading_content, - STATE(935), 1, + STATE(957), 1, sym__inline, - STATE(275), 2, + STATE(1131), 1, + sym__heading_content, + STATE(279), 2, sym__symbol_fallback, aux_sym__inline_repeat1, ACTIONS(940), 6, @@ -20996,13 +21012,13 @@ static const uint16_t ts_small_parse_table[] = { [8729] = 6, ACTIONS(944), 1, anon_sym_LBRACK_CARET, - STATE(237), 1, + STATE(238), 1, aux_sym_table_caption_repeat1, - STATE(282), 1, + STATE(283), 1, sym__inline_line, - STATE(1046), 1, + STATE(1056), 1, sym__inline, - STATE(275), 2, + STATE(279), 2, sym__symbol_fallback, aux_sym__inline_repeat1, ACTIONS(940), 6, @@ -21015,13 +21031,13 @@ static const uint16_t ts_small_parse_table[] = { [8754] = 6, ACTIONS(944), 1, anon_sym_LBRACK_CARET, - STATE(244), 1, + STATE(241), 1, aux_sym_table_caption_repeat1, - STATE(282), 1, + STATE(283), 1, sym__inline_line, - STATE(1046), 1, + STATE(1056), 1, sym__inline, - STATE(275), 2, + STATE(279), 2, sym__symbol_fallback, aux_sym__inline_repeat1, ACTIONS(940), 6, @@ -21031,33 +21047,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - [8779] = 5, - ACTIONS(944), 1, + [8779] = 4, + ACTIONS(877), 1, anon_sym_LBRACK_CARET, - STATE(704), 1, - sym__inline_line, - STATE(935), 1, - sym__inline, - STATE(275), 2, + ACTIONS(1049), 2, + sym__eof_or_newline, + sym__newline_inline, + STATE(273), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(940), 6, + ACTIONS(1047), 6, anon_sym_LBRACK, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - [8801] = 4, - ACTIONS(1050), 1, + [8799] = 5, + ACTIONS(944), 1, anon_sym_LBRACK_CARET, - ACTIONS(1053), 2, - sym__eof_or_newline, - sym__newline_inline, - STATE(272), 2, + STATE(728), 1, + sym__inline_line, + STATE(957), 1, + sym__inline, + STATE(279), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1047), 6, + ACTIONS(940), 6, anon_sym_LBRACK, anon_sym_DOT, aux_sym_identifier_token1, @@ -21065,15 +21081,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PERCENT, [8821] = 4, - ACTIONS(877), 1, + ACTIONS(1054), 1, anon_sym_LBRACK_CARET, ACTIONS(1057), 2, sym__eof_or_newline, sym__newline_inline, - STATE(272), 2, + STATE(273), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1055), 6, + ACTIONS(1051), 6, anon_sym_LBRACK, anon_sym_DOT, aux_sym_identifier_token1, @@ -21081,9 +21097,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PERCENT, [8841] = 4, - ACTIONS(1053), 1, - sym__eof_or_newline, ACTIONS(1062), 1, + anon_sym_RBRACK, + ACTIONS(1064), 1, anon_sym_LBRACK_CARET, STATE(274), 2, sym__symbol_fallback, @@ -21096,14 +21112,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PERCENT, [8860] = 4, - ACTIONS(944), 1, + ACTIONS(1069), 1, + anon_sym_RBRACK, + ACTIONS(1071), 1, anon_sym_LBRACK_CARET, - ACTIONS(1057), 1, - sym__eof_or_newline, STATE(274), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1065), 6, + ACTIONS(1067), 6, anon_sym_LBRACK, anon_sym_DOT, aux_sym_identifier_token1, @@ -21113,9 +21129,9 @@ static const uint16_t ts_small_parse_table[] = { [8879] = 4, ACTIONS(877), 1, anon_sym_LBRACK_CARET, - STATE(624), 1, + STATE(716), 1, sym__inline, - STATE(273), 2, + STATE(271), 2, sym__symbol_fallback, aux_sym__inline_repeat1, ACTIONS(9), 6, @@ -21126,14 +21142,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PERCENT, [8898] = 4, - ACTIONS(1069), 1, - anon_sym_RBRACK, - ACTIONS(1071), 1, + ACTIONS(877), 1, anon_sym_LBRACK_CARET, - STATE(278), 2, + STATE(634), 1, + sym__inline, + STATE(271), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(1067), 6, + ACTIONS(9), 6, anon_sym_LBRACK, anon_sym_DOT, aux_sym_identifier_token1, @@ -21141,9 +21157,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PERCENT, [8917] = 4, + ACTIONS(1057), 1, + sym__eof_or_newline, ACTIONS(1076), 1, - anon_sym_RBRACK, - ACTIONS(1078), 1, anon_sym_LBRACK_CARET, STATE(278), 2, sym__symbol_fallback, @@ -21156,63 +21172,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PERCENT, [8936] = 4, - ACTIONS(877), 1, + ACTIONS(944), 1, anon_sym_LBRACK_CARET, - STATE(724), 1, - sym__inline, - STATE(273), 2, + ACTIONS(1049), 1, + sym__eof_or_newline, + STATE(278), 2, sym__symbol_fallback, aux_sym__inline_repeat1, - ACTIONS(9), 6, + ACTIONS(1079), 6, anon_sym_LBRACK, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - [8955] = 2, - ACTIONS(1083), 1, - sym__table_caption_end, - ACTIONS(1081), 8, + [8955] = 3, + ACTIONS(1081), 1, + sym__block_quote_continuation, + STATE(280), 1, + aux_sym__block_quote_prefix_repeat1, + ACTIONS(870), 7, anon_sym_LBRACK, - anon_sym_NULL, anon_sym_LBRACK_CARET, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - [8969] = 2, - ACTIONS(1087), 2, - sym__eof_or_newline, - sym__newline_inline, - ACTIONS(1085), 7, + [8971] = 2, + ACTIONS(1086), 1, + sym__table_caption_end, + ACTIONS(1084), 8, anon_sym_LBRACK, + anon_sym_NULL, anon_sym_LBRACK_CARET, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - [8983] = 2, - ACTIONS(1091), 1, - sym__table_caption_end, - ACTIONS(1089), 8, + [8985] = 2, + ACTIONS(1090), 2, + sym__eof_or_newline, + sym__newline_inline, + ACTIONS(1088), 7, anon_sym_LBRACK, - anon_sym_NULL, anon_sym_LBRACK_CARET, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - [8997] = 3, - ACTIONS(1093), 1, - sym__block_quote_continuation, - STATE(283), 1, - aux_sym__block_quote_prefix_repeat1, - ACTIONS(866), 7, + [8999] = 2, + ACTIONS(1094), 1, + sym__table_caption_end, + ACTIONS(1092), 8, anon_sym_LBRACK, + anon_sym_NULL, anon_sym_LBRACK_CARET, anon_sym_DOT, aux_sym_identifier_token1, @@ -21220,9 +21236,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PERCENT, [9013] = 3, - ACTIONS(921), 1, + ACTIONS(938), 1, sym__block_quote_continuation, - STATE(283), 1, + STATE(280), 1, aux_sym__block_quote_prefix_repeat1, ACTIONS(905), 7, anon_sym_LBRACK, @@ -21232,401 +21248,315 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - [9029] = 2, - ACTIONS(462), 1, - sym__block_quote_continuation, - ACTIONS(460), 7, - anon_sym_LBRACK, - anon_sym_LBRACK_CARET, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE, - anon_sym_PERCENT, - [9042] = 1, - ACTIONS(560), 8, - sym__newline, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - sym__table_header_begin, - sym__table_separator_begin, - sym__table_row_begin, - sym__table_caption_begin, - [9053] = 7, - ACTIONS(1096), 1, - aux_sym__line_token1, - ACTIONS(1098), 1, - sym__block_close, - ACTIONS(1100), 1, - sym__block_quote_continuation, - STATE(551), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(707), 1, - sym__block_quote_prefix, - STATE(991), 1, - sym_code, - STATE(344), 2, - sym__line, - aux_sym_code_repeat1, - [9076] = 8, + [9029] = 8, ACTIONS(27), 1, sym__list_marker_task_begin, - ACTIONS(1102), 1, + ACTIONS(1096), 1, sym__block_close, - ACTIONS(1104), 1, + ACTIONS(1098), 1, sym__block_quote_continuation, - STATE(43), 1, + STATE(44), 1, sym_list_marker_task, - STATE(308), 1, + STATE(288), 1, aux_sym__list_task_repeat1, - STATE(547), 1, + STATE(604), 1, aux_sym__block_quote_prefix_repeat1, - STATE(586), 1, + STATE(673), 1, sym__list_item_task, - STATE(832), 1, + STATE(820), 1, sym__block_quote_prefix, - [9101] = 7, - ACTIONS(1096), 1, - aux_sym__line_token1, + [9054] = 7, ACTIONS(1100), 1, - sym__block_quote_continuation, - ACTIONS(1106), 1, - sym__block_close, - STATE(551), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(707), 1, - sym__block_quote_prefix, - STATE(1106), 1, - sym_code, - STATE(344), 2, - sym__line, - aux_sym_code_repeat1, - [9124] = 7, - ACTIONS(1096), 1, aux_sym__line_token1, - ACTIONS(1100), 1, - sym__block_quote_continuation, - ACTIONS(1108), 1, + ACTIONS(1102), 1, sym__block_close, - STATE(551), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(707), 1, - sym__block_quote_prefix, - STATE(1000), 1, - sym_code, - STATE(344), 2, - sym__line, - aux_sym_code_repeat1, - [9147] = 7, - ACTIONS(1096), 1, - aux_sym__line_token1, - ACTIONS(1100), 1, + ACTIONS(1104), 1, sym__block_quote_continuation, - ACTIONS(1110), 1, - sym__block_close, - STATE(551), 1, + STATE(608), 1, aux_sym__block_quote_prefix_repeat1, - STATE(707), 1, + STATE(748), 1, sym__block_quote_prefix, - STATE(898), 1, + STATE(908), 1, sym_code, - STATE(344), 2, + STATE(345), 2, sym__line, aux_sym_code_repeat1, - [9170] = 7, - ACTIONS(1096), 1, - aux_sym__line_token1, + [9077] = 7, ACTIONS(1100), 1, + aux_sym__line_token1, + ACTIONS(1104), 1, sym__block_quote_continuation, - ACTIONS(1112), 1, + ACTIONS(1106), 1, sym__block_close, - STATE(551), 1, + STATE(608), 1, aux_sym__block_quote_prefix_repeat1, - STATE(707), 1, + STATE(748), 1, sym__block_quote_prefix, - STATE(902), 1, + STATE(1022), 1, sym_code, - STATE(344), 2, + STATE(345), 2, sym__line, aux_sym_code_repeat1, - [9193] = 7, - ACTIONS(1096), 1, - aux_sym__line_token1, - ACTIONS(1100), 1, - sym__block_quote_continuation, - ACTIONS(1114), 1, + [9100] = 8, + ACTIONS(1108), 1, sym__block_close, - STATE(551), 1, + ACTIONS(1110), 1, + sym__list_marker_task_begin, + ACTIONS(1113), 1, + sym__block_quote_continuation, + STATE(44), 1, + sym_list_marker_task, + STATE(288), 1, + aux_sym__list_task_repeat1, + STATE(604), 1, aux_sym__block_quote_prefix_repeat1, - STATE(707), 1, + STATE(673), 1, + sym__list_item_task, + STATE(820), 1, sym__block_quote_prefix, - STATE(1010), 1, - sym_code, - STATE(344), 2, - sym__line, - aux_sym_code_repeat1, - [9216] = 8, + [9125] = 8, ACTIONS(27), 1, sym__list_marker_task_begin, - ACTIONS(1104), 1, + ACTIONS(1098), 1, sym__block_quote_continuation, ACTIONS(1116), 1, sym__block_close, - STATE(43), 1, + STATE(44), 1, sym_list_marker_task, - STATE(308), 1, + STATE(288), 1, aux_sym__list_task_repeat1, - STATE(547), 1, + STATE(604), 1, aux_sym__block_quote_prefix_repeat1, - STATE(586), 1, + STATE(673), 1, sym__list_item_task, - STATE(832), 1, + STATE(820), 1, sym__block_quote_prefix, - [9241] = 7, - ACTIONS(1096), 1, - aux_sym__line_token1, + [9150] = 7, ACTIONS(1100), 1, + aux_sym__line_token1, + ACTIONS(1104), 1, sym__block_quote_continuation, ACTIONS(1118), 1, sym__block_close, - STATE(551), 1, + STATE(608), 1, aux_sym__block_quote_prefix_repeat1, - STATE(707), 1, + STATE(748), 1, sym__block_quote_prefix, - STATE(1003), 1, + STATE(903), 1, sym_code, - STATE(344), 2, + STATE(345), 2, sym__line, aux_sym_code_repeat1, - [9264] = 2, - ACTIONS(1087), 1, - sym__eof_or_newline, - ACTIONS(1085), 7, - anon_sym_LBRACK, - anon_sym_LBRACK_CARET, - anon_sym_DOT, - aux_sym_identifier_token1, - aux_sym__inline_token1, - anon_sym_LBRACE, - anon_sym_PERCENT, - [9277] = 7, - ACTIONS(1096), 1, - aux_sym__line_token1, + [9173] = 1, + ACTIONS(584), 8, + sym__newline, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + sym__table_caption_begin, + [9184] = 7, ACTIONS(1100), 1, + aux_sym__line_token1, + ACTIONS(1104), 1, sym__block_quote_continuation, ACTIONS(1120), 1, sym__block_close, - STATE(551), 1, + STATE(608), 1, aux_sym__block_quote_prefix_repeat1, - STATE(707), 1, + STATE(748), 1, sym__block_quote_prefix, - STATE(1016), 1, + STATE(913), 1, sym_code, - STATE(344), 2, + STATE(345), 2, sym__line, aux_sym_code_repeat1, - [9300] = 7, - ACTIONS(1096), 1, - aux_sym__line_token1, + [9207] = 7, ACTIONS(1100), 1, + aux_sym__line_token1, + ACTIONS(1104), 1, sym__block_quote_continuation, ACTIONS(1122), 1, sym__block_close, - STATE(551), 1, + STATE(608), 1, aux_sym__block_quote_prefix_repeat1, - STATE(707), 1, + STATE(748), 1, sym__block_quote_prefix, - STATE(1018), 1, + STATE(914), 1, sym_code, - STATE(344), 2, + STATE(345), 2, sym__line, aux_sym_code_repeat1, - [9323] = 8, - ACTIONS(27), 1, - sym__list_marker_task_begin, + [9230] = 7, + ACTIONS(1100), 1, + aux_sym__line_token1, ACTIONS(1104), 1, sym__block_quote_continuation, ACTIONS(1124), 1, sym__block_close, - STATE(43), 1, - sym_list_marker_task, - STATE(308), 1, - aux_sym__list_task_repeat1, - STATE(547), 1, + STATE(608), 1, aux_sym__block_quote_prefix_repeat1, - STATE(586), 1, - sym__list_item_task, - STATE(832), 1, + STATE(748), 1, sym__block_quote_prefix, - [9348] = 7, - ACTIONS(1096), 1, - aux_sym__line_token1, - ACTIONS(1100), 1, + STATE(909), 1, + sym_code, + STATE(345), 2, + sym__line, + aux_sym_code_repeat1, + [9253] = 8, + ACTIONS(27), 1, + sym__list_marker_task_begin, + ACTIONS(1098), 1, sym__block_quote_continuation, ACTIONS(1126), 1, sym__block_close, - STATE(551), 1, + STATE(44), 1, + sym_list_marker_task, + STATE(288), 1, + aux_sym__list_task_repeat1, + STATE(604), 1, aux_sym__block_quote_prefix_repeat1, - STATE(707), 1, + STATE(673), 1, + sym__list_item_task, + STATE(820), 1, sym__block_quote_prefix, - STATE(903), 1, - sym_code, - STATE(344), 2, - sym__line, - aux_sym_code_repeat1, - [9371] = 7, - ACTIONS(1096), 1, - aux_sym__line_token1, - ACTIONS(1100), 1, + [9278] = 8, + ACTIONS(27), 1, + sym__list_marker_task_begin, + ACTIONS(1098), 1, sym__block_quote_continuation, ACTIONS(1128), 1, sym__block_close, - STATE(551), 1, + STATE(44), 1, + sym_list_marker_task, + STATE(288), 1, + aux_sym__list_task_repeat1, + STATE(604), 1, aux_sym__block_quote_prefix_repeat1, - STATE(707), 1, + STATE(673), 1, + sym__list_item_task, + STATE(820), 1, sym__block_quote_prefix, - STATE(913), 1, - sym_code, - STATE(344), 2, - sym__line, - aux_sym_code_repeat1, - [9394] = 7, - ACTIONS(1096), 1, - aux_sym__line_token1, + [9303] = 1, + ACTIONS(1088), 8, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACK_CARET, + anon_sym_DOT, + aux_sym_identifier_token1, + aux_sym__inline_token1, + anon_sym_LBRACE, + anon_sym_PERCENT, + [9314] = 7, ACTIONS(1100), 1, + aux_sym__line_token1, + ACTIONS(1104), 1, sym__block_quote_continuation, ACTIONS(1130), 1, sym__block_close, - STATE(551), 1, + STATE(608), 1, aux_sym__block_quote_prefix_repeat1, - STATE(707), 1, + STATE(748), 1, sym__block_quote_prefix, - STATE(914), 1, + STATE(962), 1, sym_code, - STATE(344), 2, + STATE(345), 2, sym__line, aux_sym_code_repeat1, - [9417] = 8, - ACTIONS(27), 1, - sym__list_marker_task_begin, + [9337] = 7, + ACTIONS(1100), 1, + aux_sym__line_token1, ACTIONS(1104), 1, sym__block_quote_continuation, ACTIONS(1132), 1, sym__block_close, - STATE(43), 1, - sym_list_marker_task, - STATE(308), 1, - aux_sym__list_task_repeat1, - STATE(547), 1, + STATE(608), 1, aux_sym__block_quote_prefix_repeat1, - STATE(586), 1, - sym__list_item_task, - STATE(832), 1, + STATE(748), 1, sym__block_quote_prefix, - [9442] = 8, - ACTIONS(27), 1, - sym__list_marker_task_begin, + STATE(972), 1, + sym_code, + STATE(345), 2, + sym__line, + aux_sym_code_repeat1, + [9360] = 7, + ACTIONS(1100), 1, + aux_sym__line_token1, ACTIONS(1104), 1, sym__block_quote_continuation, ACTIONS(1134), 1, sym__block_close, - STATE(43), 1, - sym_list_marker_task, - STATE(308), 1, - aux_sym__list_task_repeat1, - STATE(547), 1, + STATE(608), 1, aux_sym__block_quote_prefix_repeat1, - STATE(586), 1, - sym__list_item_task, - STATE(832), 1, + STATE(748), 1, sym__block_quote_prefix, - [9467] = 7, - ACTIONS(1096), 1, - aux_sym__line_token1, + STATE(973), 1, + sym_code, + STATE(345), 2, + sym__line, + aux_sym_code_repeat1, + [9383] = 7, ACTIONS(1100), 1, + aux_sym__line_token1, + ACTIONS(1104), 1, sym__block_quote_continuation, ACTIONS(1136), 1, sym__block_close, - STATE(551), 1, + STATE(608), 1, aux_sym__block_quote_prefix_repeat1, - STATE(707), 1, + STATE(748), 1, sym__block_quote_prefix, - STATE(962), 1, + STATE(989), 1, sym_code, - STATE(344), 2, + STATE(345), 2, sym__line, aux_sym_code_repeat1, - [9490] = 7, - ACTIONS(1096), 1, - aux_sym__line_token1, + [9406] = 7, ACTIONS(1100), 1, + aux_sym__line_token1, + ACTIONS(1104), 1, sym__block_quote_continuation, ACTIONS(1138), 1, sym__block_close, - STATE(551), 1, + STATE(608), 1, aux_sym__block_quote_prefix_repeat1, - STATE(707), 1, + STATE(748), 1, sym__block_quote_prefix, - STATE(972), 1, + STATE(992), 1, sym_code, - STATE(344), 2, + STATE(345), 2, sym__line, aux_sym_code_repeat1, - [9513] = 7, - ACTIONS(1096), 1, - aux_sym__line_token1, + [9429] = 7, ACTIONS(1100), 1, + aux_sym__line_token1, + ACTIONS(1104), 1, sym__block_quote_continuation, ACTIONS(1140), 1, sym__block_close, - STATE(551), 1, + STATE(608), 1, aux_sym__block_quote_prefix_repeat1, - STATE(707), 1, + STATE(748), 1, sym__block_quote_prefix, - STATE(973), 1, + STATE(1027), 1, sym_code, - STATE(344), 2, + STATE(345), 2, sym__line, aux_sym_code_repeat1, - [9536] = 8, - ACTIONS(1142), 1, - sym__block_close, - ACTIONS(1144), 1, - sym__list_marker_task_begin, - ACTIONS(1147), 1, - sym__block_quote_continuation, - STATE(43), 1, - sym_list_marker_task, - STATE(308), 1, - aux_sym__list_task_repeat1, - STATE(547), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(586), 1, - sym__list_item_task, - STATE(832), 1, - sym__block_quote_prefix, - [9561] = 1, - ACTIONS(584), 8, - sym__newline, - sym__list_item_continuation, - sym__list_item_end, + [9452] = 2, + ACTIONS(464), 1, sym__block_quote_continuation, - sym__table_header_begin, - sym__table_separator_begin, - sym__table_row_begin, - sym__table_caption_begin, - [9572] = 1, - ACTIONS(1085), 8, + ACTIONS(462), 7, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACK_CARET, anon_sym_DOT, aux_sym_identifier_token1, aux_sym__inline_token1, anon_sym_LBRACE, anon_sym_PERCENT, - [9583] = 1, + [9465] = 1, ACTIONS(600), 8, sym__newline, sym__list_item_continuation, @@ -21636,7 +21566,7 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, sym__table_caption_begin, - [9594] = 1, + [9476] = 1, ACTIONS(616), 8, sym__newline, sym__list_item_continuation, @@ -21646,7 +21576,7 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, sym__table_caption_begin, - [9605] = 1, + [9487] = 1, ACTIONS(620), 8, sym__newline, sym__list_item_continuation, @@ -21656,8 +21586,8 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, sym__table_caption_begin, - [9616] = 1, - ACTIONS(552), 8, + [9498] = 1, + ACTIONS(546), 8, sym__newline, sym__list_item_continuation, sym__list_item_end, @@ -21666,8 +21596,8 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, sym__table_caption_begin, - [9627] = 1, - ACTIONS(556), 8, + [9509] = 1, + ACTIONS(550), 8, sym__newline, sym__list_item_continuation, sym__list_item_end, @@ -21676,143 +21606,142 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, sym__table_caption_begin, - [9638] = 7, - ACTIONS(21), 1, - sym_list_marker_dash, - ACTIONS(1150), 1, - sym__block_close, - ACTIONS(1152), 1, + [9520] = 7, + ACTIONS(1100), 1, + aux_sym__line_token1, + ACTIONS(1104), 1, sym__block_quote_continuation, - STATE(340), 1, - aux_sym__list_dash_repeat1, - STATE(584), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(595), 1, - sym__list_item_dash, - STATE(953), 1, - sym__block_quote_prefix, - [9660] = 1, - ACTIONS(1154), 7, - sym__newline, - anon_sym_RBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - sym__whitespace1, - anon_sym_PERCENT, - sym__id, - [9670] = 7, - ACTIONS(23), 1, - sym_list_marker_star, - ACTIONS(1156), 1, - sym__block_close, - ACTIONS(1158), 1, - sym__block_quote_continuation, - STATE(338), 1, - aux_sym__list_star_repeat1, - STATE(570), 1, - sym__list_item_star, - STATE(599), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(970), 1, - sym__block_quote_prefix, - [9692] = 7, - ACTIONS(25), 1, - sym_list_marker_plus, - ACTIONS(1160), 1, + ACTIONS(1142), 1, sym__block_close, - ACTIONS(1162), 1, - sym__block_quote_continuation, - STATE(352), 1, - aux_sym__list_plus_repeat1, - STATE(567), 1, + STATE(608), 1, aux_sym__block_quote_prefix_repeat1, - STATE(657), 1, - sym__list_item_plus, - STATE(961), 1, + STATE(748), 1, sym__block_quote_prefix, - [9714] = 1, - ACTIONS(556), 7, - sym__block_close, + STATE(1005), 1, + sym_code, + STATE(345), 2, + sym__line, + aux_sym_code_repeat1, + [9543] = 1, + ACTIONS(554), 8, sym__newline, + sym__list_item_continuation, + sym__list_item_end, sym__block_quote_continuation, sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, sym__table_caption_begin, - [9724] = 1, - ACTIONS(560), 7, - sym__block_close, - sym__newline, + [9554] = 7, + ACTIONS(1100), 1, + aux_sym__line_token1, + ACTIONS(1104), 1, sym__block_quote_continuation, - sym__table_header_begin, - sym__table_separator_begin, - sym__table_row_begin, - sym__table_caption_begin, - [9734] = 1, - ACTIONS(1164), 7, - sym__newline, - anon_sym_RBRACE, + ACTIONS(1144), 1, + sym__block_close, + STATE(608), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(748), 1, + sym__block_quote_prefix, + STATE(1021), 1, + sym_code, + STATE(345), 2, + sym__line, + aux_sym_code_repeat1, + [9577] = 2, + ACTIONS(1090), 1, + sym__eof_or_newline, + ACTIONS(1088), 7, + anon_sym_LBRACK, + anon_sym_LBRACK_CARET, anon_sym_DOT, aux_sym_identifier_token1, - sym__whitespace1, + aux_sym__inline_token1, + anon_sym_LBRACE, anon_sym_PERCENT, - sym__id, - [9744] = 7, - ACTIONS(21), 1, - sym_list_marker_dash, - ACTIONS(1152), 1, + [9590] = 8, + ACTIONS(27), 1, + sym__list_marker_task_begin, + ACTIONS(1098), 1, sym__block_quote_continuation, - ACTIONS(1166), 1, + ACTIONS(1146), 1, sym__block_close, - STATE(340), 1, - aux_sym__list_dash_repeat1, - STATE(584), 1, + STATE(44), 1, + sym_list_marker_task, + STATE(288), 1, + aux_sym__list_task_repeat1, + STATE(604), 1, aux_sym__block_quote_prefix_repeat1, - STATE(595), 1, - sym__list_item_dash, - STATE(953), 1, + STATE(673), 1, + sym__list_item_task, + STATE(820), 1, + sym__block_quote_prefix, + [9615] = 7, + ACTIONS(1100), 1, + aux_sym__line_token1, + ACTIONS(1104), 1, + sym__block_quote_continuation, + ACTIONS(1148), 1, + sym__block_close, + STATE(608), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(748), 1, sym__block_quote_prefix, - [9766] = 7, + STATE(1122), 1, + sym_code, + STATE(345), 2, + sym__line, + aux_sym_code_repeat1, + [9638] = 1, + ACTIONS(620), 7, + sym__newline, + sym__indented_content_spacer, + sym__block_quote_continuation, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + sym__table_caption_begin, + [9648] = 7, ACTIONS(25), 1, sym_list_marker_plus, - ACTIONS(1162), 1, - sym__block_quote_continuation, - ACTIONS(1168), 1, + ACTIONS(1150), 1, sym__block_close, - STATE(352), 1, + ACTIONS(1152), 1, + sym__block_quote_continuation, + STATE(337), 1, aux_sym__list_plus_repeat1, - STATE(567), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(657), 1, + STATE(606), 1, sym__list_item_plus, - STATE(961), 1, + STATE(663), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(932), 1, sym__block_quote_prefix, - [9788] = 7, + [9670] = 7, ACTIONS(23), 1, sym_list_marker_star, - ACTIONS(1158), 1, - sym__block_quote_continuation, - ACTIONS(1170), 1, + ACTIONS(1154), 1, sym__block_close, - STATE(338), 1, + ACTIONS(1156), 1, + sym__block_quote_continuation, + STATE(344), 1, aux_sym__list_star_repeat1, - STATE(570), 1, - sym__list_item_star, - STATE(599), 1, + STATE(558), 1, aux_sym__block_quote_prefix_repeat1, - STATE(970), 1, + STATE(664), 1, + sym__list_item_star, + STATE(954), 1, sym__block_quote_prefix, - [9810] = 1, - ACTIONS(1172), 7, + [9692] = 1, + ACTIONS(600), 7, sym__newline, - anon_sym_RBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - sym__whitespace1, - anon_sym_PERCENT, - sym__id, - [9820] = 1, - ACTIONS(1174), 7, + sym__indented_content_spacer, + sym__block_quote_continuation, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + sym__table_caption_begin, + [9702] = 1, + ACTIONS(1158), 7, sym__newline, anon_sym_RBRACE, anon_sym_DOT, @@ -21820,8 +21749,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, anon_sym_PERCENT, sym__id, - [9830] = 1, - ACTIONS(1176), 7, + [9712] = 1, + ACTIONS(1160), 7, sym__newline, anon_sym_RBRACE, anon_sym_DOT, @@ -21829,8 +21758,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, anon_sym_PERCENT, sym__id, - [9840] = 1, - ACTIONS(584), 7, + [9722] = 1, + ACTIONS(616), 7, sym__newline, sym__indented_content_spacer, sym__block_quote_continuation, @@ -21838,17 +21767,8 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, sym__table_caption_begin, - [9850] = 1, - ACTIONS(600), 7, - sym__block_close, - sym__newline, - sym__block_quote_continuation, - sym__table_header_begin, - sym__table_separator_begin, - sym__table_row_begin, - sym__table_caption_begin, - [9860] = 1, - ACTIONS(1178), 7, + [9732] = 1, + ACTIONS(1162), 7, sym__newline, anon_sym_RBRACE, anon_sym_DOT, @@ -21856,8 +21776,17 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, anon_sym_PERCENT, sym__id, - [9870] = 1, - ACTIONS(1180), 7, + [9742] = 1, + ACTIONS(584), 7, + sym__block_close, + sym__newline, + sym__block_quote_continuation, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + sym__table_caption_begin, + [9752] = 1, + ACTIONS(1164), 7, sym__newline, anon_sym_RBRACE, anon_sym_DOT, @@ -21865,92 +21794,77 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, anon_sym_PERCENT, sym__id, - [9880] = 7, + [9762] = 7, ACTIONS(21), 1, sym_list_marker_dash, - ACTIONS(1152), 1, - sym__block_quote_continuation, - ACTIONS(1182), 1, + ACTIONS(1166), 1, sym__block_close, - STATE(340), 1, + ACTIONS(1168), 1, + sym__block_quote_continuation, + STATE(330), 1, aux_sym__list_dash_repeat1, - STATE(584), 1, + STATE(546), 1, aux_sym__block_quote_prefix_repeat1, - STATE(595), 1, + STATE(599), 1, sym__list_item_dash, - STATE(953), 1, + STATE(906), 1, sym__block_quote_prefix, - [9902] = 7, + [9784] = 7, ACTIONS(25), 1, sym_list_marker_plus, - ACTIONS(1162), 1, + ACTIONS(1152), 1, sym__block_quote_continuation, - ACTIONS(1184), 1, + ACTIONS(1170), 1, sym__block_close, - STATE(352), 1, + STATE(337), 1, aux_sym__list_plus_repeat1, - STATE(567), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(657), 1, + STATE(606), 1, sym__list_item_plus, - STATE(961), 1, + STATE(663), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(932), 1, sym__block_quote_prefix, - [9924] = 7, + [9806] = 7, ACTIONS(23), 1, sym_list_marker_star, - ACTIONS(1158), 1, + ACTIONS(1156), 1, sym__block_quote_continuation, - ACTIONS(1186), 1, + ACTIONS(1172), 1, sym__block_close, - STATE(338), 1, + STATE(344), 1, aux_sym__list_star_repeat1, - STATE(570), 1, - sym__list_item_star, - STATE(599), 1, + STATE(558), 1, aux_sym__block_quote_prefix_repeat1, - STATE(970), 1, + STATE(664), 1, + sym__list_item_star, + STATE(954), 1, sym__block_quote_prefix, - [9946] = 7, - ACTIONS(25), 1, - sym_list_marker_plus, - ACTIONS(1162), 1, - sym__block_quote_continuation, - ACTIONS(1188), 1, + [9828] = 1, + ACTIONS(600), 7, sym__block_close, - STATE(352), 1, - aux_sym__list_plus_repeat1, - STATE(567), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(657), 1, - sym__list_item_plus, - STATE(961), 1, - sym__block_quote_prefix, - [9968] = 1, - ACTIONS(1190), 7, sym__newline, - anon_sym_RBRACE, - anon_sym_DOT, - aux_sym_identifier_token1, - sym__whitespace1, - anon_sym_PERCENT, - sym__id, - [9978] = 7, - ACTIONS(1192), 1, + sym__block_quote_continuation, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + sym__table_caption_begin, + [9838] = 7, + ACTIONS(1174), 1, sym__block_close, - ACTIONS(1194), 1, - sym_list_marker_star, - ACTIONS(1197), 1, + ACTIONS(1176), 1, + sym_list_marker_dash, + ACTIONS(1179), 1, sym__block_quote_continuation, - STATE(338), 1, - aux_sym__list_star_repeat1, - STATE(570), 1, - sym__list_item_star, - STATE(599), 1, + STATE(330), 1, + aux_sym__list_dash_repeat1, + STATE(546), 1, aux_sym__block_quote_prefix_repeat1, - STATE(970), 1, + STATE(599), 1, + sym__list_item_dash, + STATE(906), 1, sym__block_quote_prefix, - [10000] = 1, - ACTIONS(1200), 7, + [9860] = 1, + ACTIONS(1182), 7, sym__newline, anon_sym_RBRACE, anon_sym_DOT, @@ -21958,23 +21872,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace1, anon_sym_PERCENT, sym__id, - [10010] = 7, - ACTIONS(1202), 1, - sym__block_close, - ACTIONS(1204), 1, - sym_list_marker_dash, - ACTIONS(1207), 1, - sym__block_quote_continuation, - STATE(340), 1, - aux_sym__list_dash_repeat1, - STATE(584), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(595), 1, - sym__list_item_dash, - STATE(953), 1, - sym__block_quote_prefix, - [10032] = 1, - ACTIONS(620), 7, + [9870] = 1, + ACTIONS(616), 7, sym__block_close, sym__newline, sym__block_quote_continuation, @@ -21982,8 +21881,8 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, sym__table_caption_begin, - [10042] = 1, - ACTIONS(552), 7, + [9880] = 1, + ACTIONS(620), 7, sym__block_close, sym__newline, sym__block_quote_continuation, @@ -21991,8 +21890,8 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, sym__table_caption_begin, - [10052] = 1, - ACTIONS(584), 7, + [9890] = 1, + ACTIONS(546), 7, sym__block_close, sym__newline, sym__block_quote_continuation, @@ -22000,180 +21899,297 @@ static const uint16_t ts_small_parse_table[] = { sym__table_separator_begin, sym__table_row_begin, sym__table_caption_begin, - [10062] = 6, - ACTIONS(1096), 1, - aux_sym__line_token1, - ACTIONS(1100), 1, - sym__block_quote_continuation, - ACTIONS(1210), 1, + [9900] = 1, + ACTIONS(550), 7, sym__block_close, - STATE(551), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(707), 1, - sym__block_quote_prefix, - STATE(353), 2, - sym__line, - aux_sym_code_repeat1, - [10082] = 1, - ACTIONS(600), 7, - sym__newline, - sym__indented_content_spacer, - sym__block_quote_continuation, - sym__table_header_begin, - sym__table_separator_begin, - sym__table_row_begin, - sym__table_caption_begin, - [10092] = 1, - ACTIONS(616), 7, sym__newline, - sym__indented_content_spacer, sym__block_quote_continuation, sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, sym__table_caption_begin, - [10102] = 1, - ACTIONS(620), 7, - sym__newline, - sym__indented_content_spacer, + [9910] = 7, + ACTIONS(21), 1, + sym_list_marker_dash, + ACTIONS(1168), 1, sym__block_quote_continuation, - sym__table_header_begin, - sym__table_separator_begin, - sym__table_row_begin, - sym__table_caption_begin, - [10112] = 1, - ACTIONS(552), 7, - sym__newline, - sym__indented_content_spacer, + ACTIONS(1184), 1, + sym__block_close, + STATE(330), 1, + aux_sym__list_dash_repeat1, + STATE(546), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(599), 1, + sym__list_item_dash, + STATE(906), 1, + sym__block_quote_prefix, + [9932] = 7, + ACTIONS(1186), 1, + sym__block_close, + ACTIONS(1188), 1, + sym_list_marker_plus, + ACTIONS(1191), 1, sym__block_quote_continuation, - sym__table_header_begin, - sym__table_separator_begin, - sym__table_row_begin, - sym__table_caption_begin, - [10122] = 1, - ACTIONS(556), 7, - sym__newline, - sym__indented_content_spacer, - sym__block_quote_continuation, - sym__table_header_begin, - sym__table_separator_begin, - sym__table_row_begin, - sym__table_caption_begin, - [10132] = 1, - ACTIONS(560), 7, - sym__newline, - sym__indented_content_spacer, - sym__block_quote_continuation, - sym__table_header_begin, - sym__table_separator_begin, - sym__table_row_begin, - sym__table_caption_begin, - [10142] = 7, + STATE(337), 1, + aux_sym__list_plus_repeat1, + STATE(606), 1, + sym__list_item_plus, + STATE(663), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(932), 1, + sym__block_quote_prefix, + [9954] = 7, ACTIONS(21), 1, sym_list_marker_dash, - ACTIONS(1152), 1, + ACTIONS(1168), 1, sym__block_quote_continuation, - ACTIONS(1212), 1, + ACTIONS(1194), 1, sym__block_close, - STATE(340), 1, + STATE(330), 1, aux_sym__list_dash_repeat1, - STATE(584), 1, + STATE(546), 1, aux_sym__block_quote_prefix_repeat1, - STATE(595), 1, + STATE(599), 1, sym__list_item_dash, - STATE(953), 1, + STATE(906), 1, sym__block_quote_prefix, - [10164] = 7, - ACTIONS(1214), 1, - sym__block_close, - ACTIONS(1216), 1, + [9976] = 7, + ACTIONS(25), 1, sym_list_marker_plus, - ACTIONS(1219), 1, + ACTIONS(1152), 1, sym__block_quote_continuation, - STATE(352), 1, + ACTIONS(1196), 1, + sym__block_close, + STATE(337), 1, aux_sym__list_plus_repeat1, - STATE(567), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(657), 1, + STATE(606), 1, sym__list_item_plus, - STATE(961), 1, - sym__block_quote_prefix, - [10186] = 6, - ACTIONS(1222), 1, - aux_sym__line_token1, - ACTIONS(1225), 1, - sym__block_close, - ACTIONS(1227), 1, - sym__block_quote_continuation, - STATE(551), 1, + STATE(663), 1, aux_sym__block_quote_prefix_repeat1, - STATE(707), 1, + STATE(932), 1, sym__block_quote_prefix, - STATE(353), 2, - sym__line, - aux_sym_code_repeat1, - [10206] = 7, + [9998] = 7, ACTIONS(23), 1, sym_list_marker_star, - ACTIONS(1158), 1, + ACTIONS(1156), 1, sym__block_quote_continuation, - ACTIONS(1230), 1, + ACTIONS(1198), 1, sym__block_close, - STATE(338), 1, + STATE(344), 1, aux_sym__list_star_repeat1, - STATE(570), 1, - sym__list_item_star, - STATE(599), 1, + STATE(558), 1, aux_sym__block_quote_prefix_repeat1, - STATE(970), 1, + STATE(664), 1, + sym__list_item_star, + STATE(954), 1, sym__block_quote_prefix, - [10228] = 7, + [10020] = 7, ACTIONS(21), 1, sym_list_marker_dash, - ACTIONS(1152), 1, + ACTIONS(1168), 1, sym__block_quote_continuation, - ACTIONS(1232), 1, + ACTIONS(1200), 1, sym__block_close, - STATE(340), 1, + STATE(330), 1, aux_sym__list_dash_repeat1, - STATE(584), 1, + STATE(546), 1, aux_sym__block_quote_prefix_repeat1, - STATE(595), 1, + STATE(599), 1, sym__list_item_dash, - STATE(953), 1, + STATE(906), 1, sym__block_quote_prefix, - [10250] = 7, + [10042] = 7, ACTIONS(25), 1, sym_list_marker_plus, - ACTIONS(1162), 1, + ACTIONS(1152), 1, sym__block_quote_continuation, - ACTIONS(1234), 1, + ACTIONS(1202), 1, sym__block_close, - STATE(352), 1, + STATE(337), 1, aux_sym__list_plus_repeat1, - STATE(567), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(657), 1, + STATE(606), 1, sym__list_item_plus, - STATE(961), 1, + STATE(663), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(932), 1, sym__block_quote_prefix, - [10272] = 7, + [10064] = 7, ACTIONS(23), 1, sym_list_marker_star, - ACTIONS(1158), 1, + ACTIONS(1156), 1, sym__block_quote_continuation, - ACTIONS(1236), 1, + ACTIONS(1204), 1, + sym__block_close, + STATE(344), 1, + aux_sym__list_star_repeat1, + STATE(558), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(664), 1, + sym__list_item_star, + STATE(954), 1, + sym__block_quote_prefix, + [10086] = 7, + ACTIONS(1206), 1, + sym__block_close, + ACTIONS(1208), 1, + sym_list_marker_star, + ACTIONS(1211), 1, + sym__block_quote_continuation, + STATE(344), 1, + aux_sym__list_star_repeat1, + STATE(558), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(664), 1, + sym__list_item_star, + STATE(954), 1, + sym__block_quote_prefix, + [10108] = 6, + ACTIONS(1100), 1, + aux_sym__line_token1, + ACTIONS(1104), 1, + sym__block_quote_continuation, + ACTIONS(1214), 1, + sym__block_close, + STATE(608), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(748), 1, + sym__block_quote_prefix, + STATE(347), 2, + sym__line, + aux_sym_code_repeat1, + [10128] = 7, + ACTIONS(23), 1, + sym_list_marker_star, + ACTIONS(1156), 1, + sym__block_quote_continuation, + ACTIONS(1216), 1, sym__block_close, - STATE(338), 1, + STATE(344), 1, aux_sym__list_star_repeat1, - STATE(570), 1, + STATE(558), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(664), 1, sym__list_item_star, + STATE(954), 1, + sym__block_quote_prefix, + [10150] = 6, + ACTIONS(1218), 1, + aux_sym__line_token1, + ACTIONS(1221), 1, + sym__block_close, + ACTIONS(1223), 1, + sym__block_quote_continuation, + STATE(608), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(748), 1, + sym__block_quote_prefix, + STATE(347), 2, + sym__line, + aux_sym_code_repeat1, + [10170] = 7, + ACTIONS(21), 1, + sym_list_marker_dash, + ACTIONS(1168), 1, + sym__block_quote_continuation, + ACTIONS(1226), 1, + sym__block_close, + STATE(330), 1, + aux_sym__list_dash_repeat1, + STATE(546), 1, + aux_sym__block_quote_prefix_repeat1, STATE(599), 1, + sym__list_item_dash, + STATE(906), 1, + sym__block_quote_prefix, + [10192] = 1, + ACTIONS(546), 7, + sym__newline, + sym__indented_content_spacer, + sym__block_quote_continuation, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + sym__table_caption_begin, + [10202] = 1, + ACTIONS(1228), 7, + sym__newline, + anon_sym_RBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + sym__whitespace1, + anon_sym_PERCENT, + sym__id, + [10212] = 1, + ACTIONS(550), 7, + sym__newline, + sym__indented_content_spacer, + sym__block_quote_continuation, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + sym__table_caption_begin, + [10222] = 1, + ACTIONS(554), 7, + sym__newline, + sym__indented_content_spacer, + sym__block_quote_continuation, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + sym__table_caption_begin, + [10232] = 1, + ACTIONS(1230), 7, + sym__newline, + anon_sym_RBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + sym__whitespace1, + anon_sym_PERCENT, + sym__id, + [10242] = 1, + ACTIONS(1232), 7, + sym__newline, + anon_sym_RBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + sym__whitespace1, + anon_sym_PERCENT, + sym__id, + [10252] = 1, + ACTIONS(1234), 7, + sym__newline, + anon_sym_RBRACE, + anon_sym_DOT, + aux_sym_identifier_token1, + sym__whitespace1, + anon_sym_PERCENT, + sym__id, + [10262] = 1, + ACTIONS(584), 7, + sym__newline, + sym__indented_content_spacer, + sym__block_quote_continuation, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + sym__table_caption_begin, + [10272] = 7, + ACTIONS(25), 1, + sym_list_marker_plus, + ACTIONS(1152), 1, + sym__block_quote_continuation, + ACTIONS(1236), 1, + sym__block_close, + STATE(337), 1, + aux_sym__list_plus_repeat1, + STATE(606), 1, + sym__list_item_plus, + STATE(663), 1, aux_sym__block_quote_prefix_repeat1, - STATE(970), 1, + STATE(932), 1, sym__block_quote_prefix, [10294] = 1, - ACTIONS(616), 7, + ACTIONS(554), 7, sym__block_close, sym__newline, sym__block_quote_continuation, @@ -22183,4354 +22199,4359 @@ static const uint16_t ts_small_parse_table[] = { sym__table_caption_begin, [10304] = 6, ACTIONS(1238), 1, - sym__list_item_continuation, + sym__block_quote_continuation, ACTIONS(1240), 1, - sym__list_item_end, + sym__footnote_continuation, ACTIONS(1242), 1, - sym__block_quote_continuation, - STATE(405), 1, - aux_sym_list_item_content_repeat1, - STATE(553), 1, + sym__footnote_end, + STATE(371), 1, + aux_sym_footnote_content_repeat1, + STATE(612), 1, aux_sym__block_quote_prefix_repeat1, - STATE(966), 1, + STATE(991), 1, sym__block_quote_prefix, [10323] = 6, ACTIONS(1238), 1, - sym__list_item_continuation, - ACTIONS(1242), 1, sym__block_quote_continuation, + ACTIONS(1240), 1, + sym__footnote_continuation, ACTIONS(1244), 1, - sym__list_item_end, - STATE(366), 1, - aux_sym_list_item_content_repeat1, - STATE(553), 1, + sym__footnote_end, + STATE(402), 1, + aux_sym_footnote_content_repeat1, + STATE(612), 1, aux_sym__block_quote_prefix_repeat1, - STATE(966), 1, + STATE(991), 1, sym__block_quote_prefix, - [10342] = 6, - ACTIONS(1242), 1, - sym__block_quote_continuation, + [10342] = 4, + ACTIONS(448), 1, + sym__table_header_begin, + ACTIONS(450), 1, + sym__table_separator_begin, + ACTIONS(452), 1, + sym__table_row_begin, + STATE(291), 3, + sym_table_header, + sym_table_separator, + sym_table_row, + [10357] = 6, ACTIONS(1246), 1, sym__list_item_continuation, ACTIONS(1248), 1, sym__list_item_end, - STATE(365), 1, - aux_sym__list_item_definition_repeat1, - STATE(553), 1, + ACTIONS(1250), 1, + sym__block_quote_continuation, + STATE(403), 1, + aux_sym_list_item_content_repeat1, + STATE(610), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1085), 1, + STATE(1129), 1, sym__block_quote_prefix, - [10361] = 4, - ACTIONS(378), 1, + [10376] = 4, + ACTIONS(87), 1, sym__table_header_begin, - ACTIONS(380), 1, + ACTIONS(89), 1, sym__table_separator_begin, - ACTIONS(382), 1, + ACTIONS(91), 1, sym__table_row_begin, - STATE(329), 3, + STATE(83), 3, sym_table_header, sym_table_separator, sym_table_row, - [10376] = 6, - ACTIONS(1238), 1, + [10391] = 6, + ACTIONS(1246), 1, sym__list_item_continuation, - ACTIONS(1242), 1, - sym__block_quote_continuation, ACTIONS(1250), 1, + sym__block_quote_continuation, + ACTIONS(1252), 1, sym__list_item_end, - STATE(400), 1, + STATE(410), 1, aux_sym_list_item_content_repeat1, - STATE(553), 1, + STATE(610), 1, aux_sym__block_quote_prefix_repeat1, - STATE(966), 1, + STATE(1129), 1, sym__block_quote_prefix, - [10395] = 6, + [10410] = 4, + ACTIONS(480), 1, + sym__table_header_begin, + ACTIONS(482), 1, + sym__table_separator_begin, + ACTIONS(484), 1, + sym__table_row_begin, + STATE(324), 3, + sym_table_header, + sym_table_separator, + sym_table_row, + [10425] = 6, ACTIONS(1238), 1, - sym__list_item_continuation, - ACTIONS(1242), 1, sym__block_quote_continuation, - ACTIONS(1252), 1, - sym__list_item_end, - STATE(405), 1, - aux_sym_list_item_content_repeat1, - STATE(553), 1, + ACTIONS(1240), 1, + sym__footnote_continuation, + ACTIONS(1254), 1, + sym__footnote_end, + STATE(412), 1, + aux_sym_footnote_content_repeat1, + STATE(612), 1, aux_sym__block_quote_prefix_repeat1, - STATE(966), 1, + STATE(991), 1, sym__block_quote_prefix, - [10414] = 6, - ACTIONS(1254), 1, + [10444] = 6, + ACTIONS(1246), 1, sym__list_item_continuation, - ACTIONS(1257), 1, - sym__list_item_end, - ACTIONS(1259), 1, + ACTIONS(1250), 1, sym__block_quote_continuation, - STATE(365), 1, - aux_sym__list_item_definition_repeat1, - STATE(553), 1, + ACTIONS(1256), 1, + sym__list_item_end, + STATE(406), 1, + aux_sym_list_item_content_repeat1, + STATE(610), 1, aux_sym__block_quote_prefix_repeat1, - STATE(1085), 1, + STATE(1129), 1, sym__block_quote_prefix, - [10433] = 6, - ACTIONS(1238), 1, + [10463] = 6, + ACTIONS(1246), 1, sym__list_item_continuation, - ACTIONS(1242), 1, + ACTIONS(1250), 1, sym__block_quote_continuation, - ACTIONS(1262), 1, + ACTIONS(1258), 1, sym__list_item_end, - STATE(405), 1, + STATE(410), 1, aux_sym_list_item_content_repeat1, - STATE(553), 1, + STATE(610), 1, aux_sym__block_quote_prefix_repeat1, - STATE(966), 1, + STATE(1129), 1, sym__block_quote_prefix, - [10452] = 6, - ACTIONS(1264), 1, + [10482] = 6, + ACTIONS(1238), 1, sym__block_quote_continuation, - ACTIONS(1266), 1, + ACTIONS(1240), 1, sym__footnote_continuation, - ACTIONS(1268), 1, + ACTIONS(1260), 1, sym__footnote_end, - STATE(406), 1, + STATE(401), 1, aux_sym_footnote_content_repeat1, - STATE(555), 1, + STATE(612), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(991), 1, + sym__block_quote_prefix, + [10501] = 6, + ACTIONS(1262), 1, + sym__list_item_continuation, + ACTIONS(1265), 1, + sym__list_item_end, + ACTIONS(1267), 1, + sym__block_quote_continuation, + STATE(370), 1, + aux_sym__list_item_definition_repeat1, + STATE(610), 1, aux_sym__block_quote_prefix_repeat1, - STATE(994), 1, + STATE(1018), 1, sym__block_quote_prefix, - [10471] = 6, - ACTIONS(1264), 1, + [10520] = 6, + ACTIONS(1238), 1, sym__block_quote_continuation, - ACTIONS(1266), 1, + ACTIONS(1240), 1, sym__footnote_continuation, ACTIONS(1270), 1, sym__footnote_end, - STATE(369), 1, + STATE(402), 1, aux_sym_footnote_content_repeat1, - STATE(555), 1, + STATE(612), 1, aux_sym__block_quote_prefix_repeat1, - STATE(994), 1, + STATE(991), 1, sym__block_quote_prefix, - [10490] = 6, - ACTIONS(1264), 1, + [10539] = 6, + ACTIONS(1246), 1, + sym__list_item_continuation, + ACTIONS(1250), 1, sym__block_quote_continuation, - ACTIONS(1266), 1, - sym__footnote_continuation, ACTIONS(1272), 1, - sym__footnote_end, - STATE(406), 1, - aux_sym_footnote_content_repeat1, - STATE(555), 1, + sym__list_item_end, + STATE(373), 1, + aux_sym_list_item_content_repeat1, + STATE(610), 1, aux_sym__block_quote_prefix_repeat1, - STATE(994), 1, + STATE(1129), 1, sym__block_quote_prefix, - [10509] = 6, - ACTIONS(1238), 1, + [10558] = 6, + ACTIONS(1246), 1, sym__list_item_continuation, - ACTIONS(1242), 1, + ACTIONS(1250), 1, sym__block_quote_continuation, ACTIONS(1274), 1, sym__list_item_end, - STATE(359), 1, + STATE(410), 1, aux_sym_list_item_content_repeat1, - STATE(553), 1, + STATE(610), 1, aux_sym__block_quote_prefix_repeat1, - STATE(966), 1, + STATE(1129), 1, sym__block_quote_prefix, - [10528] = 6, - ACTIONS(1238), 1, + [10577] = 6, + ACTIONS(1246), 1, sym__list_item_continuation, - ACTIONS(1242), 1, + ACTIONS(1250), 1, sym__block_quote_continuation, ACTIONS(1276), 1, sym__list_item_end, - STATE(372), 1, + STATE(375), 1, aux_sym_list_item_content_repeat1, - STATE(553), 1, + STATE(610), 1, aux_sym__block_quote_prefix_repeat1, - STATE(966), 1, + STATE(1129), 1, sym__block_quote_prefix, - [10547] = 6, - ACTIONS(1238), 1, + [10596] = 6, + ACTIONS(1246), 1, sym__list_item_continuation, - ACTIONS(1242), 1, + ACTIONS(1250), 1, sym__block_quote_continuation, ACTIONS(1278), 1, sym__list_item_end, - STATE(405), 1, + STATE(410), 1, aux_sym_list_item_content_repeat1, - STATE(553), 1, + STATE(610), 1, aux_sym__block_quote_prefix_repeat1, - STATE(966), 1, + STATE(1129), 1, sym__block_quote_prefix, - [10566] = 6, - ACTIONS(1238), 1, + [10615] = 6, + ACTIONS(1246), 1, sym__list_item_continuation, - ACTIONS(1242), 1, + ACTIONS(1250), 1, sym__block_quote_continuation, ACTIONS(1280), 1, sym__list_item_end, - STATE(374), 1, + STATE(377), 1, aux_sym_list_item_content_repeat1, - STATE(553), 1, + STATE(610), 1, aux_sym__block_quote_prefix_repeat1, - STATE(966), 1, + STATE(1129), 1, sym__block_quote_prefix, - [10585] = 6, - ACTIONS(1238), 1, + [10634] = 6, + ACTIONS(1246), 1, sym__list_item_continuation, - ACTIONS(1242), 1, + ACTIONS(1250), 1, sym__block_quote_continuation, ACTIONS(1282), 1, sym__list_item_end, - STATE(405), 1, + STATE(410), 1, aux_sym_list_item_content_repeat1, - STATE(553), 1, + STATE(610), 1, aux_sym__block_quote_prefix_repeat1, - STATE(966), 1, + STATE(1129), 1, sym__block_quote_prefix, - [10604] = 6, - ACTIONS(1238), 1, + [10653] = 6, + ACTIONS(1246), 1, sym__list_item_continuation, - ACTIONS(1242), 1, + ACTIONS(1250), 1, sym__block_quote_continuation, ACTIONS(1284), 1, sym__list_item_end, - STATE(376), 1, + STATE(379), 1, aux_sym_list_item_content_repeat1, - STATE(553), 1, + STATE(610), 1, aux_sym__block_quote_prefix_repeat1, - STATE(966), 1, + STATE(1129), 1, sym__block_quote_prefix, - [10623] = 6, - ACTIONS(1238), 1, + [10672] = 6, + ACTIONS(1246), 1, sym__list_item_continuation, - ACTIONS(1242), 1, + ACTIONS(1250), 1, sym__block_quote_continuation, ACTIONS(1286), 1, sym__list_item_end, - STATE(405), 1, + STATE(410), 1, aux_sym_list_item_content_repeat1, - STATE(553), 1, + STATE(610), 1, aux_sym__block_quote_prefix_repeat1, - STATE(966), 1, + STATE(1129), 1, sym__block_quote_prefix, - [10642] = 6, - ACTIONS(1238), 1, + [10691] = 6, + ACTIONS(1246), 1, sym__list_item_continuation, - ACTIONS(1242), 1, + ACTIONS(1250), 1, sym__block_quote_continuation, ACTIONS(1288), 1, sym__list_item_end, - STATE(378), 1, + STATE(381), 1, aux_sym_list_item_content_repeat1, - STATE(553), 1, + STATE(610), 1, aux_sym__block_quote_prefix_repeat1, - STATE(966), 1, + STATE(1129), 1, sym__block_quote_prefix, - [10661] = 6, - ACTIONS(1238), 1, + [10710] = 6, + ACTIONS(1246), 1, sym__list_item_continuation, - ACTIONS(1242), 1, + ACTIONS(1250), 1, sym__block_quote_continuation, ACTIONS(1290), 1, sym__list_item_end, - STATE(405), 1, + STATE(410), 1, aux_sym_list_item_content_repeat1, - STATE(553), 1, + STATE(610), 1, aux_sym__block_quote_prefix_repeat1, - STATE(966), 1, + STATE(1129), 1, sym__block_quote_prefix, - [10680] = 6, - ACTIONS(1238), 1, + [10729] = 6, + ACTIONS(1246), 1, sym__list_item_continuation, - ACTIONS(1242), 1, + ACTIONS(1250), 1, sym__block_quote_continuation, ACTIONS(1292), 1, sym__list_item_end, - STATE(380), 1, + STATE(383), 1, aux_sym_list_item_content_repeat1, - STATE(553), 1, + STATE(610), 1, aux_sym__block_quote_prefix_repeat1, - STATE(966), 1, + STATE(1129), 1, sym__block_quote_prefix, - [10699] = 6, - ACTIONS(1238), 1, + [10748] = 6, + ACTIONS(1246), 1, sym__list_item_continuation, - ACTIONS(1242), 1, + ACTIONS(1250), 1, sym__block_quote_continuation, ACTIONS(1294), 1, sym__list_item_end, - STATE(405), 1, + STATE(410), 1, aux_sym_list_item_content_repeat1, - STATE(553), 1, + STATE(610), 1, aux_sym__block_quote_prefix_repeat1, - STATE(966), 1, + STATE(1129), 1, sym__block_quote_prefix, - [10718] = 6, - ACTIONS(1238), 1, + [10767] = 6, + ACTIONS(1246), 1, sym__list_item_continuation, - ACTIONS(1242), 1, + ACTIONS(1250), 1, sym__block_quote_continuation, ACTIONS(1296), 1, sym__list_item_end, - STATE(382), 1, + STATE(385), 1, aux_sym_list_item_content_repeat1, - STATE(553), 1, + STATE(610), 1, aux_sym__block_quote_prefix_repeat1, - STATE(966), 1, + STATE(1129), 1, sym__block_quote_prefix, - [10737] = 6, - ACTIONS(1238), 1, + [10786] = 6, + ACTIONS(1246), 1, sym__list_item_continuation, - ACTIONS(1242), 1, + ACTIONS(1250), 1, sym__block_quote_continuation, ACTIONS(1298), 1, sym__list_item_end, - STATE(405), 1, + STATE(410), 1, aux_sym_list_item_content_repeat1, - STATE(553), 1, + STATE(610), 1, aux_sym__block_quote_prefix_repeat1, - STATE(966), 1, + STATE(1129), 1, sym__block_quote_prefix, - [10756] = 6, - ACTIONS(1238), 1, + [10805] = 6, + ACTIONS(1246), 1, sym__list_item_continuation, - ACTIONS(1242), 1, + ACTIONS(1250), 1, sym__block_quote_continuation, ACTIONS(1300), 1, sym__list_item_end, - STATE(384), 1, + STATE(387), 1, aux_sym_list_item_content_repeat1, - STATE(553), 1, + STATE(610), 1, aux_sym__block_quote_prefix_repeat1, - STATE(966), 1, + STATE(1129), 1, sym__block_quote_prefix, - [10775] = 6, - ACTIONS(1238), 1, + [10824] = 6, + ACTIONS(1246), 1, sym__list_item_continuation, - ACTIONS(1242), 1, + ACTIONS(1250), 1, sym__block_quote_continuation, ACTIONS(1302), 1, sym__list_item_end, - STATE(405), 1, + STATE(410), 1, aux_sym_list_item_content_repeat1, - STATE(553), 1, + STATE(610), 1, aux_sym__block_quote_prefix_repeat1, - STATE(966), 1, + STATE(1129), 1, sym__block_quote_prefix, - [10794] = 4, - ACTIONS(89), 1, - sym__table_header_begin, - ACTIONS(91), 1, - sym__table_separator_begin, - ACTIONS(93), 1, - sym__table_row_begin, - STATE(83), 3, - sym_table_header, - sym_table_separator, - sym_table_row, - [10809] = 6, - ACTIONS(1238), 1, + [10843] = 6, + ACTIONS(1246), 1, sym__list_item_continuation, - ACTIONS(1242), 1, + ACTIONS(1250), 1, sym__block_quote_continuation, ACTIONS(1304), 1, sym__list_item_end, - STATE(405), 1, + STATE(389), 1, aux_sym_list_item_content_repeat1, - STATE(553), 1, + STATE(610), 1, aux_sym__block_quote_prefix_repeat1, - STATE(966), 1, + STATE(1129), 1, sym__block_quote_prefix, - [10828] = 6, - ACTIONS(1238), 1, + [10862] = 6, + ACTIONS(1246), 1, sym__list_item_continuation, - ACTIONS(1242), 1, + ACTIONS(1250), 1, sym__block_quote_continuation, ACTIONS(1306), 1, sym__list_item_end, - STATE(388), 1, + STATE(410), 1, aux_sym_list_item_content_repeat1, - STATE(553), 1, + STATE(610), 1, aux_sym__block_quote_prefix_repeat1, - STATE(966), 1, + STATE(1129), 1, sym__block_quote_prefix, - [10847] = 6, - ACTIONS(1238), 1, + [10881] = 6, + ACTIONS(1246), 1, sym__list_item_continuation, - ACTIONS(1242), 1, + ACTIONS(1250), 1, sym__block_quote_continuation, ACTIONS(1308), 1, sym__list_item_end, - STATE(405), 1, + STATE(391), 1, aux_sym_list_item_content_repeat1, - STATE(553), 1, + STATE(610), 1, aux_sym__block_quote_prefix_repeat1, - STATE(966), 1, + STATE(1129), 1, sym__block_quote_prefix, - [10866] = 6, - ACTIONS(1238), 1, + [10900] = 6, + ACTIONS(1246), 1, sym__list_item_continuation, - ACTIONS(1242), 1, + ACTIONS(1250), 1, sym__block_quote_continuation, ACTIONS(1310), 1, sym__list_item_end, - STATE(390), 1, + STATE(410), 1, aux_sym_list_item_content_repeat1, - STATE(553), 1, + STATE(610), 1, aux_sym__block_quote_prefix_repeat1, - STATE(966), 1, + STATE(1129), 1, sym__block_quote_prefix, - [10885] = 6, - ACTIONS(1238), 1, + [10919] = 6, + ACTIONS(1246), 1, sym__list_item_continuation, - ACTIONS(1242), 1, + ACTIONS(1250), 1, sym__block_quote_continuation, ACTIONS(1312), 1, sym__list_item_end, - STATE(405), 1, + STATE(393), 1, aux_sym_list_item_content_repeat1, - STATE(553), 1, + STATE(610), 1, aux_sym__block_quote_prefix_repeat1, - STATE(966), 1, + STATE(1129), 1, sym__block_quote_prefix, - [10904] = 6, - ACTIONS(1238), 1, + [10938] = 6, + ACTIONS(1246), 1, sym__list_item_continuation, - ACTIONS(1242), 1, + ACTIONS(1250), 1, sym__block_quote_continuation, ACTIONS(1314), 1, sym__list_item_end, - STATE(392), 1, + STATE(410), 1, aux_sym_list_item_content_repeat1, - STATE(553), 1, + STATE(610), 1, aux_sym__block_quote_prefix_repeat1, - STATE(966), 1, + STATE(1129), 1, sym__block_quote_prefix, - [10923] = 6, - ACTIONS(1238), 1, + [10957] = 6, + ACTIONS(1246), 1, sym__list_item_continuation, - ACTIONS(1242), 1, + ACTIONS(1250), 1, sym__block_quote_continuation, ACTIONS(1316), 1, sym__list_item_end, - STATE(405), 1, + STATE(395), 1, aux_sym_list_item_content_repeat1, - STATE(553), 1, + STATE(610), 1, aux_sym__block_quote_prefix_repeat1, - STATE(966), 1, + STATE(1129), 1, sym__block_quote_prefix, - [10942] = 6, - ACTIONS(1238), 1, + [10976] = 6, + ACTIONS(1246), 1, sym__list_item_continuation, - ACTIONS(1242), 1, + ACTIONS(1250), 1, sym__block_quote_continuation, ACTIONS(1318), 1, sym__list_item_end, - STATE(394), 1, + STATE(410), 1, aux_sym_list_item_content_repeat1, - STATE(553), 1, + STATE(610), 1, aux_sym__block_quote_prefix_repeat1, - STATE(966), 1, + STATE(1129), 1, sym__block_quote_prefix, - [10961] = 6, - ACTIONS(1238), 1, + [10995] = 6, + ACTIONS(1246), 1, sym__list_item_continuation, - ACTIONS(1242), 1, + ACTIONS(1250), 1, sym__block_quote_continuation, ACTIONS(1320), 1, sym__list_item_end, - STATE(405), 1, + STATE(397), 1, aux_sym_list_item_content_repeat1, - STATE(553), 1, + STATE(610), 1, aux_sym__block_quote_prefix_repeat1, - STATE(966), 1, + STATE(1129), 1, sym__block_quote_prefix, - [10980] = 6, - ACTIONS(1238), 1, + [11014] = 6, + ACTIONS(1246), 1, sym__list_item_continuation, - ACTIONS(1242), 1, + ACTIONS(1250), 1, sym__block_quote_continuation, ACTIONS(1322), 1, sym__list_item_end, - STATE(396), 1, + STATE(410), 1, aux_sym_list_item_content_repeat1, - STATE(553), 1, + STATE(610), 1, aux_sym__block_quote_prefix_repeat1, - STATE(966), 1, + STATE(1129), 1, sym__block_quote_prefix, - [10999] = 6, - ACTIONS(1238), 1, + [11033] = 6, + ACTIONS(1246), 1, sym__list_item_continuation, - ACTIONS(1242), 1, + ACTIONS(1250), 1, sym__block_quote_continuation, ACTIONS(1324), 1, sym__list_item_end, - STATE(405), 1, + STATE(399), 1, aux_sym_list_item_content_repeat1, - STATE(553), 1, + STATE(610), 1, aux_sym__block_quote_prefix_repeat1, - STATE(966), 1, + STATE(1129), 1, sym__block_quote_prefix, - [11018] = 6, - ACTIONS(1264), 1, + [11052] = 6, + ACTIONS(1246), 1, + sym__list_item_continuation, + ACTIONS(1250), 1, sym__block_quote_continuation, - ACTIONS(1266), 1, - sym__footnote_continuation, ACTIONS(1326), 1, + sym__list_item_end, + STATE(410), 1, + aux_sym_list_item_content_repeat1, + STATE(610), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(1129), 1, + sym__block_quote_prefix, + [11071] = 4, + ACTIONS(378), 1, + sym__table_header_begin, + ACTIONS(380), 1, + sym__table_separator_begin, + ACTIONS(382), 1, + sym__table_row_begin, + STATE(356), 3, + sym_table_header, + sym_table_separator, + sym_table_row, + [11086] = 6, + ACTIONS(1238), 1, + sym__block_quote_continuation, + ACTIONS(1240), 1, + sym__footnote_continuation, + ACTIONS(1328), 1, sym__footnote_end, STATE(402), 1, aux_sym_footnote_content_repeat1, - STATE(555), 1, + STATE(612), 1, aux_sym__block_quote_prefix_repeat1, - STATE(994), 1, + STATE(991), 1, sym__block_quote_prefix, - [11037] = 6, - ACTIONS(1238), 1, + [11105] = 6, + ACTIONS(1330), 1, + sym__block_quote_continuation, + ACTIONS(1333), 1, + sym__footnote_continuation, + ACTIONS(1336), 1, + sym__footnote_end, + STATE(402), 1, + aux_sym_footnote_content_repeat1, + STATE(612), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(991), 1, + sym__block_quote_prefix, + [11124] = 6, + ACTIONS(1246), 1, sym__list_item_continuation, - ACTIONS(1242), 1, + ACTIONS(1250), 1, sym__block_quote_continuation, - ACTIONS(1328), 1, + ACTIONS(1338), 1, sym__list_item_end, - STATE(405), 1, + STATE(410), 1, aux_sym_list_item_content_repeat1, - STATE(553), 1, + STATE(610), 1, aux_sym__block_quote_prefix_repeat1, - STATE(966), 1, + STATE(1129), 1, sym__block_quote_prefix, - [11056] = 6, - ACTIONS(1238), 1, + [11143] = 6, + ACTIONS(1246), 1, sym__list_item_continuation, - ACTIONS(1242), 1, + ACTIONS(1250), 1, sym__block_quote_continuation, - ACTIONS(1330), 1, + ACTIONS(1340), 1, sym__list_item_end, - STATE(398), 1, + STATE(409), 1, aux_sym_list_item_content_repeat1, - STATE(553), 1, + STATE(610), 1, aux_sym__block_quote_prefix_repeat1, - STATE(966), 1, + STATE(1129), 1, sym__block_quote_prefix, - [11075] = 6, - ACTIONS(1238), 1, - sym__list_item_continuation, - ACTIONS(1242), 1, + [11162] = 6, + ACTIONS(1250), 1, sym__block_quote_continuation, - ACTIONS(1332), 1, + ACTIONS(1342), 1, + sym__list_item_continuation, + ACTIONS(1344), 1, sym__list_item_end, - STATE(405), 1, - aux_sym_list_item_content_repeat1, - STATE(553), 1, + STATE(411), 1, + aux_sym__list_item_definition_repeat1, + STATE(610), 1, aux_sym__block_quote_prefix_repeat1, - STATE(966), 1, + STATE(1018), 1, sym__block_quote_prefix, - [11094] = 6, - ACTIONS(1238), 1, + [11181] = 6, + ACTIONS(1246), 1, sym__list_item_continuation, - ACTIONS(1242), 1, + ACTIONS(1250), 1, sym__block_quote_continuation, - ACTIONS(1334), 1, + ACTIONS(1346), 1, sym__list_item_end, - STATE(405), 1, + STATE(410), 1, aux_sym_list_item_content_repeat1, - STATE(553), 1, + STATE(610), 1, aux_sym__block_quote_prefix_repeat1, - STATE(966), 1, + STATE(1129), 1, sym__block_quote_prefix, - [11113] = 6, - ACTIONS(1264), 1, + [11200] = 6, + ACTIONS(1238), 1, sym__block_quote_continuation, - ACTIONS(1266), 1, + ACTIONS(1240), 1, sym__footnote_continuation, - ACTIONS(1336), 1, + ACTIONS(1348), 1, sym__footnote_end, - STATE(406), 1, + STATE(408), 1, aux_sym_footnote_content_repeat1, - STATE(555), 1, + STATE(612), 1, aux_sym__block_quote_prefix_repeat1, - STATE(994), 1, + STATE(991), 1, sym__block_quote_prefix, - [11132] = 6, - ACTIONS(1264), 1, + [11219] = 6, + ACTIONS(1238), 1, sym__block_quote_continuation, - ACTIONS(1266), 1, + ACTIONS(1240), 1, sym__footnote_continuation, - ACTIONS(1338), 1, + ACTIONS(1350), 1, sym__footnote_end, - STATE(404), 1, + STATE(402), 1, aux_sym_footnote_content_repeat1, - STATE(555), 1, + STATE(612), 1, aux_sym__block_quote_prefix_repeat1, - STATE(994), 1, + STATE(991), 1, sym__block_quote_prefix, - [11151] = 6, - ACTIONS(1264), 1, + [11238] = 6, + ACTIONS(1246), 1, + sym__list_item_continuation, + ACTIONS(1250), 1, sym__block_quote_continuation, - ACTIONS(1266), 1, - sym__footnote_continuation, - ACTIONS(1340), 1, - sym__footnote_end, - STATE(406), 1, - aux_sym_footnote_content_repeat1, - STATE(555), 1, + ACTIONS(1352), 1, + sym__list_item_end, + STATE(410), 1, + aux_sym_list_item_content_repeat1, + STATE(610), 1, aux_sym__block_quote_prefix_repeat1, - STATE(994), 1, + STATE(1129), 1, sym__block_quote_prefix, - [11170] = 6, - ACTIONS(1342), 1, + [11257] = 6, + ACTIONS(1354), 1, sym__list_item_continuation, - ACTIONS(1345), 1, + ACTIONS(1357), 1, sym__list_item_end, - ACTIONS(1347), 1, + ACTIONS(1359), 1, sym__block_quote_continuation, - STATE(405), 1, + STATE(410), 1, aux_sym_list_item_content_repeat1, - STATE(553), 1, + STATE(610), 1, aux_sym__block_quote_prefix_repeat1, - STATE(966), 1, + STATE(1129), 1, sym__block_quote_prefix, - [11189] = 6, - ACTIONS(1350), 1, + [11276] = 6, + ACTIONS(1250), 1, sym__block_quote_continuation, - ACTIONS(1353), 1, + ACTIONS(1342), 1, + sym__list_item_continuation, + ACTIONS(1362), 1, + sym__list_item_end, + STATE(370), 1, + aux_sym__list_item_definition_repeat1, + STATE(610), 1, + aux_sym__block_quote_prefix_repeat1, + STATE(1018), 1, + sym__block_quote_prefix, + [11295] = 6, + ACTIONS(1238), 1, + sym__block_quote_continuation, + ACTIONS(1240), 1, sym__footnote_continuation, - ACTIONS(1356), 1, + ACTIONS(1364), 1, sym__footnote_end, - STATE(406), 1, + STATE(402), 1, aux_sym_footnote_content_repeat1, - STATE(555), 1, + STATE(612), 1, aux_sym__block_quote_prefix_repeat1, - STATE(994), 1, + STATE(991), 1, sym__block_quote_prefix, - [11208] = 6, - ACTIONS(1264), 1, + [11314] = 6, + ACTIONS(1238), 1, sym__block_quote_continuation, - ACTIONS(1266), 1, + ACTIONS(1240), 1, sym__footnote_continuation, - ACTIONS(1358), 1, + ACTIONS(1366), 1, sym__footnote_end, - STATE(367), 1, + STATE(360), 1, aux_sym_footnote_content_repeat1, - STATE(555), 1, + STATE(612), 1, aux_sym__block_quote_prefix_repeat1, - STATE(994), 1, - sym__block_quote_prefix, - [11227] = 4, - ACTIONS(480), 1, - sym__table_header_begin, - ACTIONS(482), 1, - sym__table_separator_begin, - ACTIONS(484), 1, - sym__table_row_begin, - STATE(343), 3, - sym_table_header, - sym_table_separator, - sym_table_row, - [11242] = 4, - ACTIONS(67), 1, - sym__table_header_begin, - ACTIONS(69), 1, - sym__table_separator_begin, - ACTIONS(71), 1, - sym__table_row_begin, - STATE(81), 3, - sym_table_header, - sym_table_separator, - sym_table_row, - [11257] = 6, - ACTIONS(1264), 1, - sym__block_quote_continuation, - ACTIONS(1266), 1, - sym__footnote_continuation, - ACTIONS(1360), 1, - sym__footnote_end, - STATE(412), 1, - aux_sym_footnote_content_repeat1, - STATE(555), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(994), 1, - sym__block_quote_prefix, - [11276] = 6, - ACTIONS(1242), 1, - sym__block_quote_continuation, - ACTIONS(1246), 1, - sym__list_item_continuation, - ACTIONS(1362), 1, - sym__list_item_end, - STATE(361), 1, - aux_sym__list_item_definition_repeat1, - STATE(553), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(1085), 1, - sym__block_quote_prefix, - [11295] = 6, - ACTIONS(1264), 1, - sym__block_quote_continuation, - ACTIONS(1266), 1, - sym__footnote_continuation, - ACTIONS(1364), 1, - sym__footnote_end, - STATE(406), 1, - aux_sym_footnote_content_repeat1, - STATE(555), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(994), 1, - sym__block_quote_prefix, - [11314] = 6, - ACTIONS(1238), 1, - sym__list_item_continuation, - ACTIONS(1242), 1, - sym__block_quote_continuation, - ACTIONS(1366), 1, - sym__list_item_end, - STATE(401), 1, - aux_sym_list_item_content_repeat1, - STATE(553), 1, - aux_sym__block_quote_prefix_repeat1, - STATE(966), 1, + STATE(991), 1, sym__block_quote_prefix, [11333] = 6, - ACTIONS(1238), 1, + ACTIONS(1246), 1, sym__list_item_continuation, - ACTIONS(1242), 1, + ACTIONS(1250), 1, sym__block_quote_continuation, ACTIONS(1368), 1, sym__list_item_end, STATE(364), 1, aux_sym_list_item_content_repeat1, - STATE(553), 1, + STATE(610), 1, aux_sym__block_quote_prefix_repeat1, - STATE(966), 1, + STATE(1129), 1, sym__block_quote_prefix, [11352] = 4, - ACTIONS(446), 1, + ACTIONS(67), 1, sym__table_header_begin, - ACTIONS(448), 1, + ACTIONS(69), 1, sym__table_separator_begin, - ACTIONS(450), 1, + ACTIONS(71), 1, sym__table_row_begin, - STATE(309), 3, + STATE(81), 3, sym_table_header, sym_table_separator, sym_table_row, [11367] = 6, - ACTIONS(1238), 1, + ACTIONS(1246), 1, sym__list_item_continuation, - ACTIONS(1242), 1, + ACTIONS(1250), 1, sym__block_quote_continuation, ACTIONS(1370), 1, sym__list_item_end, - STATE(386), 1, + STATE(368), 1, aux_sym_list_item_content_repeat1, - STATE(553), 1, + STATE(610), 1, aux_sym__block_quote_prefix_repeat1, - STATE(966), 1, + STATE(1129), 1, sym__block_quote_prefix, - [11386] = 4, - ACTIONS(1372), 1, - sym__block_close, - ACTIONS(1374), 1, + [11386] = 3, + ACTIONS(503), 1, sym__block_quote_continuation, - STATE(420), 1, - aux_sym__block_quote_content_repeat1, - STATE(65), 2, - sym__block_quote_prefix, + STATE(422), 1, aux_sym__block_quote_prefix_repeat1, - [11400] = 3, - ACTIONS(919), 1, - sym__table_caption_begin, - STATE(643), 1, - sym_table_caption, - ACTIONS(538), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [11412] = 4, - ACTIONS(1374), 1, - sym__block_quote_continuation, + ACTIONS(907), 3, + sym__table_header_begin, + sym__table_separator_begin, + sym__table_row_begin, + [11398] = 3, + STATE(425), 1, + aux_sym_comment_repeat1, + ACTIONS(1372), 2, + sym_backslash_escape, + aux_sym_comment_token1, + ACTIONS(1374), 2, + sym__comment_end_marker, + sym__comment_close, + [11410] = 4, ACTIONS(1376), 1, sym__block_close, - STATE(417), 1, + ACTIONS(1378), 1, + sym__block_quote_continuation, + STATE(423), 1, aux_sym__block_quote_content_repeat1, STATE(65), 2, sym__block_quote_prefix, aux_sym__block_quote_prefix_repeat1, - [11426] = 4, + [11424] = 4, ACTIONS(1378), 1, - sym__block_close, - ACTIONS(1380), 1, sym__block_quote_continuation, - STATE(420), 1, + ACTIONS(1380), 1, + sym__block_close, + STATE(419), 1, aux_sym__block_quote_content_repeat1, STATE(65), 2, sym__block_quote_prefix, aux_sym__block_quote_prefix_repeat1, - [11440] = 3, - ACTIONS(503), 1, + [11438] = 3, + ACTIONS(916), 1, + sym__table_caption_begin, + STATE(584), 1, + sym_table_caption, + ACTIONS(538), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [11450] = 3, + ACTIONS(1382), 1, sym__block_quote_continuation, STATE(422), 1, aux_sym__block_quote_prefix_repeat1, - ACTIONS(907), 3, + ACTIONS(872), 3, sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [11452] = 3, - ACTIONS(1383), 1, + [11462] = 4, + ACTIONS(1385), 1, + sym__block_close, + ACTIONS(1387), 1, sym__block_quote_continuation, - STATE(422), 1, + STATE(423), 1, + aux_sym__block_quote_content_repeat1, + STATE(65), 2, + sym__block_quote_prefix, aux_sym__block_quote_prefix_repeat1, - ACTIONS(868), 3, - sym__table_header_begin, - sym__table_separator_begin, - sym__table_row_begin, - [11464] = 4, + [11476] = 3, + STATE(418), 1, + aux_sym_comment_repeat1, + ACTIONS(1372), 2, + sym_backslash_escape, + aux_sym_comment_token1, + ACTIONS(1390), 2, + sym__comment_end_marker, + sym__comment_close, + [11488] = 3, + STATE(425), 1, + aux_sym_comment_repeat1, + ACTIONS(1392), 2, + sym_backslash_escape, + aux_sym_comment_token1, + ACTIONS(1395), 2, + sym__comment_end_marker, + sym__comment_close, + [11500] = 4, ACTIONS(45), 1, sym_list_marker_upper_alpha_paren, - ACTIONS(1386), 1, + ACTIONS(1397), 1, sym__block_close, - STATE(538), 1, + STATE(536), 1, aux_sym__list_upper_alpha_paren_repeat1, - STATE(764), 1, + STATE(747), 1, sym__list_item_upper_alpha_paren, - [11477] = 4, - ACTIONS(1388), 1, - sym__block_close, - ACTIONS(1390), 1, - sym_list_marker_lower_roman_period, - STATE(424), 1, - aux_sym__list_lower_roman_period_repeat1, - STATE(768), 1, - sym__list_item_lower_roman_period, - [11490] = 4, - ACTIONS(1393), 1, - sym__block_close, - ACTIONS(1395), 1, - sym_list_marker_lower_roman_paren, - STATE(425), 1, - aux_sym__list_lower_roman_paren_repeat1, - STATE(769), 1, - sym__list_item_lower_roman_paren, - [11503] = 4, - ACTIONS(55), 1, - sym_list_marker_upper_alpha_parens, - ACTIONS(1398), 1, - sym__block_close, - STATE(529), 1, - aux_sym__list_upper_alpha_parens_repeat1, - STATE(765), 1, - sym__list_item_upper_alpha_parens, - [11516] = 4, - ACTIONS(1400), 1, + [11513] = 4, + ACTIONS(1399), 1, sym__block_close, - ACTIONS(1402), 1, + ACTIONS(1401), 1, sym_list_marker_lower_roman_parens, STATE(427), 1, aux_sym__list_lower_roman_parens_repeat1, - STATE(786), 1, + STATE(760), 1, sym__list_item_lower_roman_parens, - [11529] = 4, - ACTIONS(37), 1, - sym_list_marker_lower_roman_period, - ACTIONS(1405), 1, - sym__block_close, - STATE(424), 1, - aux_sym__list_lower_roman_period_repeat1, - STATE(768), 1, - sym__list_item_lower_roman_period, - [11542] = 4, - ACTIONS(1407), 1, - sym__block_close, - ACTIONS(1409), 1, - sym_list_marker_upper_roman_period, - STATE(429), 1, - aux_sym__list_upper_roman_period_repeat1, - STATE(791), 1, - sym__list_item_upper_roman_period, - [11555] = 4, + [11526] = 4, ACTIONS(47), 1, sym_list_marker_lower_roman_paren, - ACTIONS(1412), 1, + ACTIONS(1404), 1, sym__block_close, - STATE(425), 1, + STATE(544), 1, aux_sym__list_lower_roman_paren_repeat1, - STATE(769), 1, + STATE(755), 1, sym__list_item_lower_roman_paren, - [11568] = 4, - ACTIONS(1414), 1, + [11539] = 4, + ACTIONS(1406), 1, sym__block_close, - ACTIONS(1416), 1, - sym_list_marker_upper_roman_paren, - STATE(431), 1, - aux_sym__list_upper_roman_paren_repeat1, - STATE(793), 1, - sym__list_item_upper_roman_paren, - [11581] = 4, + ACTIONS(1408), 1, + sym_list_marker_upper_roman_period, + STATE(429), 1, + aux_sym__list_upper_roman_period_repeat1, + STATE(761), 1, + sym__list_item_upper_roman_period, + [11552] = 4, ACTIONS(57), 1, sym_list_marker_lower_roman_parens, - ACTIONS(1419), 1, + ACTIONS(1411), 1, sym__block_close, STATE(427), 1, aux_sym__list_lower_roman_parens_repeat1, - STATE(786), 1, + STATE(760), 1, sym__list_item_lower_roman_parens, - [11594] = 4, - ACTIONS(1421), 1, + [11565] = 4, + ACTIONS(1413), 1, sym__block_close, - ACTIONS(1423), 1, - sym_list_marker_upper_roman_parens, - STATE(433), 1, - aux_sym__list_upper_roman_parens_repeat1, - STATE(799), 1, - sym__list_item_upper_roman_parens, - [11607] = 4, + ACTIONS(1415), 1, + sym_list_marker_upper_roman_paren, + STATE(431), 1, + aux_sym__list_upper_roman_paren_repeat1, + STATE(766), 1, + sym__list_item_upper_roman_paren, + [11578] = 4, ACTIONS(39), 1, sym_list_marker_upper_roman_period, - ACTIONS(1426), 1, + ACTIONS(1418), 1, sym__block_close, STATE(429), 1, aux_sym__list_upper_roman_period_repeat1, - STATE(791), 1, + STATE(761), 1, sym__list_item_upper_roman_period, - [11620] = 4, + [11591] = 4, + ACTIONS(1420), 1, + sym__block_close, + ACTIONS(1422), 1, + sym_list_marker_upper_roman_parens, + STATE(433), 1, + aux_sym__list_upper_roman_parens_repeat1, + STATE(784), 1, + sym__list_item_upper_roman_parens, + [11604] = 4, ACTIONS(49), 1, sym_list_marker_upper_roman_paren, - ACTIONS(1428), 1, + ACTIONS(1425), 1, sym__block_close, STATE(431), 1, aux_sym__list_upper_roman_paren_repeat1, - STATE(793), 1, + STATE(766), 1, sym__list_item_upper_roman_paren, - [11633] = 4, + [11617] = 4, ACTIONS(59), 1, sym_list_marker_upper_roman_parens, - ACTIONS(1430), 1, + ACTIONS(1427), 1, sym__block_close, STATE(433), 1, aux_sym__list_upper_roman_parens_repeat1, - STATE(799), 1, + STATE(784), 1, sym__list_item_upper_roman_parens, - [11646] = 3, - ACTIONS(925), 1, + [11630] = 4, + ACTIONS(37), 1, + sym_list_marker_lower_roman_period, + ACTIONS(1429), 1, + sym__block_close, + STATE(539), 1, + aux_sym__list_lower_roman_period_repeat1, + STATE(753), 1, + sym__list_item_lower_roman_period, + [11643] = 3, + ACTIONS(927), 1, sym__table_caption_begin, - STATE(705), 1, + STATE(744), 1, sym_table_caption, ACTIONS(538), 2, sym__block_close, sym__block_quote_continuation, - [11657] = 3, - ACTIONS(1432), 1, + [11654] = 3, + ACTIONS(1431), 1, aux_sym__line_token1, - STATE(988), 1, + STATE(1001), 1, sym_frontmatter_content, STATE(442), 2, sym__line, aux_sym_frontmatter_content_repeat1, - [11668] = 4, - ACTIONS(1434), 1, + [11665] = 4, + ACTIONS(1433), 1, anon_sym_EQ, - ACTIONS(1436), 1, + ACTIONS(1435), 1, sym_language, - ACTIONS(1438), 1, + ACTIONS(1437), 1, sym__newline, - STATE(944), 1, + STATE(955), 1, sym_raw_block_info, - [11681] = 3, - ACTIONS(1440), 1, - anon_sym_PERCENT, - STATE(472), 1, - aux_sym_comment_repeat1, - ACTIONS(1442), 2, + [11678] = 2, + ACTIONS(1439), 2, sym_backslash_escape, aux_sym_comment_token1, - [11692] = 2, - ACTIONS(1444), 1, + ACTIONS(1441), 2, + sym__comment_end_marker, + sym__comment_close, + [11687] = 2, + ACTIONS(1443), 1, sym__eof_or_newline, ACTIONS(596), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [11701] = 3, - ACTIONS(1432), 1, + [11696] = 3, + ACTIONS(1431), 1, aux_sym__line_token1, - ACTIONS(1446), 1, + ACTIONS(1445), 1, sym_frontmatter_marker, - STATE(474), 2, + STATE(472), 2, sym__line, aux_sym_frontmatter_content_repeat1, - [11712] = 3, - ACTIONS(1432), 1, + [11707] = 3, + ACTIONS(1431), 1, aux_sym__line_token1, - STATE(938), 1, + STATE(939), 1, sym_frontmatter_content, STATE(442), 2, sym__line, aux_sym_frontmatter_content_repeat1, - [11723] = 2, - ACTIONS(1448), 1, + [11718] = 2, + ACTIONS(1447), 1, sym__div_end, - ACTIONS(546), 3, + ACTIONS(578), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [11732] = 2, - ACTIONS(1450), 1, + [11727] = 2, + ACTIONS(1449), 1, sym__code_block_end, ACTIONS(588), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [11741] = 2, - ACTIONS(1452), 1, + [11736] = 2, + ACTIONS(1451), 1, sym__div_end, ACTIONS(624), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [11750] = 2, - ACTIONS(1454), 1, + [11745] = 2, + ACTIONS(1453), 1, sym__div_end, ACTIONS(630), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [11759] = 2, - ACTIONS(1456), 1, + [11754] = 2, + ACTIONS(1455), 1, sym__code_block_end, ACTIONS(636), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [11768] = 2, - ACTIONS(1458), 1, + [11763] = 2, + ACTIONS(1457), 1, sym__code_block_end, ACTIONS(642), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [11777] = 2, - ACTIONS(1460), 1, + [11772] = 2, + ACTIONS(1459), 1, sym__code_block_end, ACTIONS(608), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [11786] = 2, - ACTIONS(1462), 1, + [11781] = 2, + ACTIONS(1461), 1, sym__div_end, ACTIONS(542), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [11795] = 2, - ACTIONS(1464), 1, + [11790] = 2, + ACTIONS(1463), 1, sym__code_block_end, - ACTIONS(566), 3, + ACTIONS(560), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [11804] = 2, - ACTIONS(1466), 1, + [11799] = 2, + ACTIONS(1465), 1, sym__code_block_end, - ACTIONS(572), 3, + ACTIONS(566), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [11813] = 2, - ACTIONS(1468), 1, + [11808] = 2, + ACTIONS(1467), 1, sym__eof_or_newline, - ACTIONS(578), 3, + ACTIONS(572), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [11822] = 1, - ACTIONS(462), 4, + [11817] = 1, + ACTIONS(464), 4, sym__block_quote_continuation, sym__table_header_begin, sym__table_separator_begin, sym__table_row_begin, - [11829] = 4, + [11824] = 4, ACTIONS(29), 1, sym_list_marker_definition, - ACTIONS(1470), 1, + ACTIONS(1469), 1, sym__block_close, - STATE(523), 1, + STATE(521), 1, aux_sym__list_definition_repeat1, - STATE(694), 1, + STATE(792), 1, sym__list_item_definition, - [11842] = 4, + [11837] = 4, ACTIONS(31), 1, sym_list_marker_decimal_period, - ACTIONS(1472), 1, + ACTIONS(1471), 1, sym__block_close, - STATE(524), 1, + STATE(522), 1, aux_sym__list_decimal_period_repeat1, - STATE(714), 1, + STATE(691), 1, sym__list_item_decimal_period, - [11855] = 4, + [11850] = 4, ACTIONS(41), 1, sym_list_marker_decimal_paren, - ACTIONS(1474), 1, + ACTIONS(1473), 1, sym__block_close, - STATE(525), 1, + STATE(524), 1, aux_sym__list_decimal_paren_repeat1, - STATE(719), 1, + STATE(692), 1, sym__list_item_decimal_paren, - [11868] = 4, + [11863] = 4, ACTIONS(51), 1, sym_list_marker_decimal_parens, - ACTIONS(1476), 1, + ACTIONS(1475), 1, sym__block_close, - STATE(527), 1, + STATE(526), 1, aux_sym__list_decimal_parens_repeat1, - STATE(746), 1, + STATE(710), 1, sym__list_item_decimal_parens, - [11881] = 4, + [11876] = 4, ACTIONS(33), 1, sym_list_marker_lower_alpha_period, - ACTIONS(1478), 1, + ACTIONS(1477), 1, sym__block_close, - STATE(530), 1, + STATE(528), 1, aux_sym__list_lower_alpha_period_repeat1, - STATE(748), 1, + STATE(714), 1, sym__list_item_lower_alpha_period, - [11894] = 4, + [11889] = 4, ACTIONS(43), 1, sym_list_marker_lower_alpha_paren, - ACTIONS(1480), 1, + ACTIONS(1479), 1, sym__block_close, - STATE(532), 1, + STATE(530), 1, aux_sym__list_lower_alpha_paren_repeat1, - STATE(749), 1, + STATE(717), 1, sym__list_item_lower_alpha_paren, - [11907] = 4, + [11902] = 4, ACTIONS(53), 1, sym_list_marker_lower_alpha_parens, - ACTIONS(1482), 1, + ACTIONS(1481), 1, sym__block_close, - STATE(534), 1, + STATE(532), 1, aux_sym__list_lower_alpha_parens_repeat1, - STATE(753), 1, + STATE(721), 1, sym__list_item_lower_alpha_parens, - [11920] = 4, + [11915] = 4, ACTIONS(35), 1, sym_list_marker_upper_alpha_period, - ACTIONS(1484), 1, + ACTIONS(1483), 1, sym__block_close, - STATE(536), 1, + STATE(534), 1, aux_sym__list_upper_alpha_period_repeat1, - STATE(761), 1, + STATE(726), 1, sym__list_item_upper_alpha_period, - [11933] = 4, + [11928] = 4, ACTIONS(45), 1, sym_list_marker_upper_alpha_paren, - ACTIONS(1486), 1, + ACTIONS(1485), 1, sym__block_close, - STATE(538), 1, + STATE(536), 1, aux_sym__list_upper_alpha_paren_repeat1, - STATE(764), 1, + STATE(747), 1, sym__list_item_upper_alpha_paren, - [11946] = 4, + [11941] = 4, ACTIONS(55), 1, sym_list_marker_upper_alpha_parens, - ACTIONS(1488), 1, + ACTIONS(1487), 1, sym__block_close, - STATE(529), 1, + STATE(538), 1, aux_sym__list_upper_alpha_parens_repeat1, - STATE(765), 1, + STATE(751), 1, sym__list_item_upper_alpha_parens, - [11959] = 4, + [11954] = 4, ACTIONS(37), 1, sym_list_marker_lower_roman_period, - ACTIONS(1490), 1, + ACTIONS(1489), 1, sym__block_close, - STATE(424), 1, + STATE(539), 1, aux_sym__list_lower_roman_period_repeat1, - STATE(768), 1, + STATE(753), 1, sym__list_item_lower_roman_period, - [11972] = 4, + [11967] = 4, ACTIONS(47), 1, sym_list_marker_lower_roman_paren, - ACTIONS(1492), 1, + ACTIONS(1491), 1, sym__block_close, - STATE(425), 1, + STATE(544), 1, aux_sym__list_lower_roman_paren_repeat1, - STATE(769), 1, + STATE(755), 1, sym__list_item_lower_roman_paren, - [11985] = 4, + [11980] = 4, ACTIONS(57), 1, sym_list_marker_lower_roman_parens, - ACTIONS(1494), 1, + ACTIONS(1493), 1, sym__block_close, STATE(427), 1, aux_sym__list_lower_roman_parens_repeat1, - STATE(786), 1, + STATE(760), 1, sym__list_item_lower_roman_parens, - [11998] = 4, + [11993] = 4, ACTIONS(39), 1, sym_list_marker_upper_roman_period, - ACTIONS(1496), 1, + ACTIONS(1495), 1, sym__block_close, STATE(429), 1, aux_sym__list_upper_roman_period_repeat1, - STATE(791), 1, + STATE(761), 1, sym__list_item_upper_roman_period, - [12011] = 4, + [12006] = 4, ACTIONS(49), 1, sym_list_marker_upper_roman_paren, - ACTIONS(1498), 1, + ACTIONS(1497), 1, sym__block_close, STATE(431), 1, aux_sym__list_upper_roman_paren_repeat1, - STATE(793), 1, + STATE(766), 1, sym__list_item_upper_roman_paren, - [12024] = 4, + [12019] = 4, ACTIONS(59), 1, sym_list_marker_upper_roman_parens, - ACTIONS(1500), 1, + ACTIONS(1499), 1, sym__block_close, STATE(433), 1, aux_sym__list_upper_roman_parens_repeat1, - STATE(799), 1, + STATE(784), 1, sym__list_item_upper_roman_parens, - [12037] = 3, - ACTIONS(1502), 1, - anon_sym_PERCENT, - STATE(472), 1, - aux_sym_comment_repeat1, - ACTIONS(1504), 2, - sym_backslash_escape, - aux_sym_comment_token1, - [12048] = 3, - ACTIONS(1507), 1, - anon_sym_PERCENT, - STATE(440), 1, - aux_sym_comment_repeat1, - ACTIONS(1442), 2, - sym_backslash_escape, - aux_sym_comment_token1, - [12059] = 3, - ACTIONS(1509), 1, + [12032] = 3, + ACTIONS(1501), 1, aux_sym__line_token1, - ACTIONS(1512), 1, + ACTIONS(1504), 1, sym_frontmatter_marker, - STATE(474), 2, + STATE(472), 2, sym__line, aux_sym_frontmatter_content_repeat1, - [12070] = 4, + [12043] = 4, ACTIONS(29), 1, sym_list_marker_definition, - ACTIONS(1514), 1, + ACTIONS(1506), 1, sym__block_close, - STATE(523), 1, + STATE(521), 1, aux_sym__list_definition_repeat1, - STATE(694), 1, + STATE(792), 1, sym__list_item_definition, - [12083] = 4, + [12056] = 4, ACTIONS(31), 1, sym_list_marker_decimal_period, - ACTIONS(1516), 1, + ACTIONS(1508), 1, sym__block_close, - STATE(524), 1, + STATE(522), 1, aux_sym__list_decimal_period_repeat1, - STATE(714), 1, + STATE(691), 1, sym__list_item_decimal_period, - [12096] = 4, + [12069] = 4, ACTIONS(41), 1, sym_list_marker_decimal_paren, - ACTIONS(1518), 1, + ACTIONS(1510), 1, sym__block_close, - STATE(525), 1, + STATE(524), 1, aux_sym__list_decimal_paren_repeat1, - STATE(719), 1, + STATE(692), 1, sym__list_item_decimal_paren, - [12109] = 4, + [12082] = 4, ACTIONS(51), 1, sym_list_marker_decimal_parens, - ACTIONS(1520), 1, + ACTIONS(1512), 1, sym__block_close, - STATE(527), 1, + STATE(526), 1, aux_sym__list_decimal_parens_repeat1, - STATE(746), 1, + STATE(710), 1, sym__list_item_decimal_parens, - [12122] = 4, + [12095] = 4, ACTIONS(33), 1, sym_list_marker_lower_alpha_period, - ACTIONS(1522), 1, + ACTIONS(1514), 1, sym__block_close, - STATE(530), 1, + STATE(528), 1, aux_sym__list_lower_alpha_period_repeat1, - STATE(748), 1, + STATE(714), 1, sym__list_item_lower_alpha_period, - [12135] = 4, + [12108] = 4, ACTIONS(43), 1, sym_list_marker_lower_alpha_paren, - ACTIONS(1524), 1, + ACTIONS(1516), 1, sym__block_close, - STATE(532), 1, + STATE(530), 1, aux_sym__list_lower_alpha_paren_repeat1, - STATE(749), 1, + STATE(717), 1, sym__list_item_lower_alpha_paren, - [12148] = 4, + [12121] = 4, ACTIONS(53), 1, sym_list_marker_lower_alpha_parens, - ACTIONS(1526), 1, + ACTIONS(1518), 1, sym__block_close, - STATE(534), 1, + STATE(532), 1, aux_sym__list_lower_alpha_parens_repeat1, - STATE(753), 1, + STATE(721), 1, sym__list_item_lower_alpha_parens, - [12161] = 4, + [12134] = 4, ACTIONS(35), 1, sym_list_marker_upper_alpha_period, - ACTIONS(1528), 1, + ACTIONS(1520), 1, sym__block_close, - STATE(536), 1, + STATE(534), 1, aux_sym__list_upper_alpha_period_repeat1, - STATE(761), 1, + STATE(726), 1, sym__list_item_upper_alpha_period, - [12174] = 4, + [12147] = 4, ACTIONS(45), 1, sym_list_marker_upper_alpha_paren, - ACTIONS(1530), 1, + ACTIONS(1522), 1, sym__block_close, - STATE(538), 1, + STATE(536), 1, aux_sym__list_upper_alpha_paren_repeat1, - STATE(764), 1, + STATE(747), 1, sym__list_item_upper_alpha_paren, - [12187] = 4, + [12160] = 4, ACTIONS(55), 1, sym_list_marker_upper_alpha_parens, - ACTIONS(1532), 1, + ACTIONS(1524), 1, sym__block_close, - STATE(529), 1, + STATE(538), 1, aux_sym__list_upper_alpha_parens_repeat1, - STATE(765), 1, + STATE(751), 1, sym__list_item_upper_alpha_parens, - [12200] = 4, + [12173] = 4, ACTIONS(37), 1, sym_list_marker_lower_roman_period, - ACTIONS(1534), 1, + ACTIONS(1526), 1, sym__block_close, - STATE(424), 1, + STATE(539), 1, aux_sym__list_lower_roman_period_repeat1, - STATE(768), 1, + STATE(753), 1, sym__list_item_lower_roman_period, - [12213] = 4, + [12186] = 4, ACTIONS(47), 1, sym_list_marker_lower_roman_paren, - ACTIONS(1536), 1, + ACTIONS(1528), 1, sym__block_close, - STATE(425), 1, + STATE(544), 1, aux_sym__list_lower_roman_paren_repeat1, - STATE(769), 1, + STATE(755), 1, sym__list_item_lower_roman_paren, - [12226] = 4, - ACTIONS(35), 1, - sym_list_marker_upper_alpha_period, - ACTIONS(1538), 1, + [12199] = 4, + ACTIONS(57), 1, + sym_list_marker_lower_roman_parens, + ACTIONS(1530), 1, sym__block_close, - STATE(536), 1, - aux_sym__list_upper_alpha_period_repeat1, - STATE(761), 1, - sym__list_item_upper_alpha_period, - [12239] = 4, - ACTIONS(39), 1, - sym_list_marker_upper_roman_period, - ACTIONS(1540), 1, + STATE(427), 1, + aux_sym__list_lower_roman_parens_repeat1, + STATE(760), 1, + sym__list_item_lower_roman_parens, + [12212] = 4, + ACTIONS(55), 1, + sym_list_marker_upper_alpha_parens, + ACTIONS(1532), 1, sym__block_close, - STATE(429), 1, - aux_sym__list_upper_roman_period_repeat1, - STATE(791), 1, - sym__list_item_upper_roman_period, - [12252] = 4, + STATE(538), 1, + aux_sym__list_upper_alpha_parens_repeat1, + STATE(751), 1, + sym__list_item_upper_alpha_parens, + [12225] = 4, ACTIONS(49), 1, sym_list_marker_upper_roman_paren, - ACTIONS(1542), 1, + ACTIONS(1534), 1, sym__block_close, STATE(431), 1, aux_sym__list_upper_roman_paren_repeat1, - STATE(793), 1, + STATE(766), 1, sym__list_item_upper_roman_paren, - [12265] = 4, + [12238] = 4, ACTIONS(59), 1, sym_list_marker_upper_roman_parens, - ACTIONS(1544), 1, + ACTIONS(1536), 1, sym__block_close, STATE(433), 1, aux_sym__list_upper_roman_parens_repeat1, - STATE(799), 1, + STATE(784), 1, sym__list_item_upper_roman_parens, - [12278] = 4, + [12251] = 4, ACTIONS(29), 1, sym_list_marker_definition, - ACTIONS(1546), 1, + ACTIONS(1538), 1, sym__block_close, - STATE(523), 1, + STATE(521), 1, aux_sym__list_definition_repeat1, - STATE(694), 1, + STATE(792), 1, sym__list_item_definition, - [12291] = 4, + [12264] = 4, ACTIONS(31), 1, sym_list_marker_decimal_period, - ACTIONS(1548), 1, + ACTIONS(1540), 1, sym__block_close, - STATE(524), 1, + STATE(522), 1, aux_sym__list_decimal_period_repeat1, - STATE(714), 1, + STATE(691), 1, sym__list_item_decimal_period, - [12304] = 4, + [12277] = 4, ACTIONS(41), 1, sym_list_marker_decimal_paren, - ACTIONS(1550), 1, + ACTIONS(1542), 1, sym__block_close, - STATE(525), 1, + STATE(524), 1, aux_sym__list_decimal_paren_repeat1, - STATE(719), 1, + STATE(692), 1, sym__list_item_decimal_paren, - [12317] = 4, + [12290] = 4, ACTIONS(51), 1, sym_list_marker_decimal_parens, - ACTIONS(1552), 1, + ACTIONS(1544), 1, sym__block_close, - STATE(527), 1, + STATE(526), 1, aux_sym__list_decimal_parens_repeat1, - STATE(746), 1, + STATE(710), 1, sym__list_item_decimal_parens, - [12330] = 4, + [12303] = 4, ACTIONS(33), 1, sym_list_marker_lower_alpha_period, - ACTIONS(1554), 1, + ACTIONS(1546), 1, sym__block_close, - STATE(530), 1, + STATE(528), 1, aux_sym__list_lower_alpha_period_repeat1, - STATE(748), 1, + STATE(714), 1, sym__list_item_lower_alpha_period, - [12343] = 4, + [12316] = 4, ACTIONS(43), 1, sym_list_marker_lower_alpha_paren, - ACTIONS(1556), 1, + ACTIONS(1548), 1, sym__block_close, - STATE(532), 1, + STATE(530), 1, aux_sym__list_lower_alpha_paren_repeat1, - STATE(749), 1, + STATE(717), 1, sym__list_item_lower_alpha_paren, - [12356] = 4, + [12329] = 4, ACTIONS(53), 1, sym_list_marker_lower_alpha_parens, - ACTIONS(1558), 1, + ACTIONS(1550), 1, sym__block_close, - STATE(534), 1, + STATE(532), 1, aux_sym__list_lower_alpha_parens_repeat1, - STATE(753), 1, + STATE(721), 1, sym__list_item_lower_alpha_parens, - [12369] = 4, + [12342] = 4, ACTIONS(35), 1, sym_list_marker_upper_alpha_period, - ACTIONS(1560), 1, + ACTIONS(1552), 1, sym__block_close, - STATE(536), 1, + STATE(534), 1, aux_sym__list_upper_alpha_period_repeat1, - STATE(761), 1, + STATE(726), 1, sym__list_item_upper_alpha_period, - [12382] = 4, + [12355] = 4, ACTIONS(45), 1, sym_list_marker_upper_alpha_paren, - ACTIONS(1562), 1, + ACTIONS(1554), 1, sym__block_close, - STATE(538), 1, + STATE(536), 1, aux_sym__list_upper_alpha_paren_repeat1, - STATE(764), 1, + STATE(747), 1, sym__list_item_upper_alpha_paren, - [12395] = 4, + [12368] = 4, ACTIONS(55), 1, sym_list_marker_upper_alpha_parens, - ACTIONS(1564), 1, + ACTIONS(1556), 1, sym__block_close, - STATE(529), 1, + STATE(538), 1, aux_sym__list_upper_alpha_parens_repeat1, - STATE(765), 1, + STATE(751), 1, sym__list_item_upper_alpha_parens, - [12408] = 4, + [12381] = 4, ACTIONS(37), 1, sym_list_marker_lower_roman_period, - ACTIONS(1566), 1, + ACTIONS(1558), 1, sym__block_close, - STATE(424), 1, + STATE(539), 1, aux_sym__list_lower_roman_period_repeat1, - STATE(768), 1, + STATE(753), 1, sym__list_item_lower_roman_period, - [12421] = 4, + [12394] = 4, ACTIONS(47), 1, sym_list_marker_lower_roman_paren, - ACTIONS(1568), 1, + ACTIONS(1560), 1, sym__block_close, - STATE(425), 1, + STATE(544), 1, aux_sym__list_lower_roman_paren_repeat1, - STATE(769), 1, + STATE(755), 1, sym__list_item_lower_roman_paren, - [12434] = 4, + [12407] = 4, ACTIONS(57), 1, sym_list_marker_lower_roman_parens, - ACTIONS(1570), 1, + ACTIONS(1562), 1, sym__block_close, STATE(427), 1, aux_sym__list_lower_roman_parens_repeat1, - STATE(786), 1, + STATE(760), 1, sym__list_item_lower_roman_parens, - [12447] = 4, + [12420] = 4, ACTIONS(39), 1, sym_list_marker_upper_roman_period, - ACTIONS(1572), 1, + ACTIONS(1564), 1, sym__block_close, STATE(429), 1, aux_sym__list_upper_roman_period_repeat1, - STATE(791), 1, + STATE(761), 1, sym__list_item_upper_roman_period, - [12460] = 4, + [12433] = 4, ACTIONS(49), 1, sym_list_marker_upper_roman_paren, - ACTIONS(1574), 1, + ACTIONS(1566), 1, sym__block_close, STATE(431), 1, aux_sym__list_upper_roman_paren_repeat1, - STATE(793), 1, + STATE(766), 1, sym__list_item_upper_roman_paren, - [12473] = 4, + [12446] = 4, ACTIONS(59), 1, sym_list_marker_upper_roman_parens, - ACTIONS(1576), 1, + ACTIONS(1568), 1, sym__block_close, STATE(433), 1, aux_sym__list_upper_roman_parens_repeat1, - STATE(799), 1, + STATE(784), 1, sym__list_item_upper_roman_parens, - [12486] = 4, + [12459] = 4, ACTIONS(29), 1, sym_list_marker_definition, - ACTIONS(1578), 1, + ACTIONS(1570), 1, sym__block_close, - STATE(523), 1, + STATE(521), 1, aux_sym__list_definition_repeat1, - STATE(694), 1, + STATE(792), 1, sym__list_item_definition, - [12499] = 4, + [12472] = 4, ACTIONS(31), 1, sym_list_marker_decimal_period, - ACTIONS(1580), 1, + ACTIONS(1572), 1, sym__block_close, - STATE(524), 1, + STATE(522), 1, aux_sym__list_decimal_period_repeat1, - STATE(714), 1, + STATE(691), 1, sym__list_item_decimal_period, - [12512] = 4, + [12485] = 4, ACTIONS(41), 1, sym_list_marker_decimal_paren, - ACTIONS(1582), 1, + ACTIONS(1574), 1, sym__block_close, - STATE(525), 1, + STATE(524), 1, aux_sym__list_decimal_paren_repeat1, - STATE(719), 1, + STATE(692), 1, sym__list_item_decimal_paren, - [12525] = 4, + [12498] = 4, ACTIONS(51), 1, sym_list_marker_decimal_parens, - ACTIONS(1584), 1, + ACTIONS(1576), 1, sym__block_close, - STATE(527), 1, + STATE(526), 1, aux_sym__list_decimal_parens_repeat1, - STATE(746), 1, + STATE(710), 1, sym__list_item_decimal_parens, - [12538] = 4, + [12511] = 4, ACTIONS(33), 1, sym_list_marker_lower_alpha_period, - ACTIONS(1586), 1, + ACTIONS(1578), 1, sym__block_close, - STATE(530), 1, + STATE(528), 1, aux_sym__list_lower_alpha_period_repeat1, - STATE(748), 1, + STATE(714), 1, sym__list_item_lower_alpha_period, - [12551] = 4, + [12524] = 4, ACTIONS(43), 1, sym_list_marker_lower_alpha_paren, - ACTIONS(1588), 1, + ACTIONS(1580), 1, sym__block_close, - STATE(532), 1, + STATE(530), 1, aux_sym__list_lower_alpha_paren_repeat1, - STATE(749), 1, + STATE(717), 1, sym__list_item_lower_alpha_paren, - [12564] = 4, + [12537] = 4, ACTIONS(53), 1, sym_list_marker_lower_alpha_parens, - ACTIONS(1590), 1, + ACTIONS(1582), 1, sym__block_close, - STATE(534), 1, + STATE(532), 1, aux_sym__list_lower_alpha_parens_repeat1, - STATE(753), 1, + STATE(721), 1, sym__list_item_lower_alpha_parens, - [12577] = 4, + [12550] = 4, ACTIONS(35), 1, sym_list_marker_upper_alpha_period, - ACTIONS(1592), 1, + ACTIONS(1584), 1, sym__block_close, - STATE(536), 1, + STATE(534), 1, aux_sym__list_upper_alpha_period_repeat1, - STATE(761), 1, + STATE(726), 1, sym__list_item_upper_alpha_period, - [12590] = 4, + [12563] = 4, ACTIONS(45), 1, sym_list_marker_upper_alpha_paren, - ACTIONS(1594), 1, + ACTIONS(1586), 1, sym__block_close, - STATE(538), 1, + STATE(536), 1, aux_sym__list_upper_alpha_paren_repeat1, - STATE(764), 1, + STATE(747), 1, sym__list_item_upper_alpha_paren, - [12603] = 4, + [12576] = 4, ACTIONS(55), 1, sym_list_marker_upper_alpha_parens, - ACTIONS(1596), 1, + ACTIONS(1588), 1, sym__block_close, - STATE(529), 1, + STATE(538), 1, aux_sym__list_upper_alpha_parens_repeat1, - STATE(765), 1, + STATE(751), 1, sym__list_item_upper_alpha_parens, - [12616] = 4, + [12589] = 4, ACTIONS(37), 1, sym_list_marker_lower_roman_period, - ACTIONS(1598), 1, + ACTIONS(1590), 1, sym__block_close, - STATE(424), 1, + STATE(539), 1, aux_sym__list_lower_roman_period_repeat1, - STATE(768), 1, + STATE(753), 1, sym__list_item_lower_roman_period, - [12629] = 4, + [12602] = 4, ACTIONS(47), 1, sym_list_marker_lower_roman_paren, - ACTIONS(1600), 1, + ACTIONS(1592), 1, sym__block_close, - STATE(425), 1, + STATE(544), 1, aux_sym__list_lower_roman_paren_repeat1, - STATE(769), 1, + STATE(755), 1, sym__list_item_lower_roman_paren, - [12642] = 4, + [12615] = 4, ACTIONS(57), 1, sym_list_marker_lower_roman_parens, - ACTIONS(1602), 1, + ACTIONS(1594), 1, sym__block_close, STATE(427), 1, aux_sym__list_lower_roman_parens_repeat1, - STATE(786), 1, + STATE(760), 1, sym__list_item_lower_roman_parens, - [12655] = 4, + [12628] = 4, ACTIONS(39), 1, sym_list_marker_upper_roman_period, - ACTIONS(1604), 1, + ACTIONS(1596), 1, sym__block_close, STATE(429), 1, aux_sym__list_upper_roman_period_repeat1, - STATE(791), 1, + STATE(761), 1, sym__list_item_upper_roman_period, - [12668] = 4, + [12641] = 4, ACTIONS(49), 1, sym_list_marker_upper_roman_paren, - ACTIONS(1606), 1, + ACTIONS(1598), 1, sym__block_close, STATE(431), 1, aux_sym__list_upper_roman_paren_repeat1, - STATE(793), 1, + STATE(766), 1, sym__list_item_upper_roman_paren, - [12681] = 4, + [12654] = 4, ACTIONS(59), 1, sym_list_marker_upper_roman_parens, - ACTIONS(1608), 1, + ACTIONS(1600), 1, sym__block_close, STATE(433), 1, aux_sym__list_upper_roman_parens_repeat1, - STATE(799), 1, + STATE(784), 1, sym__list_item_upper_roman_parens, - [12694] = 4, - ACTIONS(1610), 1, + [12667] = 4, + ACTIONS(1602), 1, sym__block_close, - ACTIONS(1612), 1, + ACTIONS(1604), 1, sym_list_marker_definition, - STATE(523), 1, + STATE(521), 1, aux_sym__list_definition_repeat1, - STATE(694), 1, + STATE(792), 1, sym__list_item_definition, - [12707] = 4, - ACTIONS(1615), 1, + [12680] = 4, + ACTIONS(1607), 1, sym__block_close, - ACTIONS(1617), 1, + ACTIONS(1609), 1, sym_list_marker_decimal_period, - STATE(524), 1, + STATE(522), 1, aux_sym__list_decimal_period_repeat1, - STATE(714), 1, + STATE(691), 1, sym__list_item_decimal_period, - [12720] = 4, - ACTIONS(1620), 1, - sym__block_close, - ACTIONS(1622), 1, - sym_list_marker_decimal_paren, - STATE(525), 1, - aux_sym__list_decimal_paren_repeat1, - STATE(719), 1, - sym__list_item_decimal_paren, - [12733] = 4, + [12693] = 4, ACTIONS(29), 1, sym_list_marker_definition, - ACTIONS(1625), 1, + ACTIONS(1612), 1, sym__block_close, - STATE(523), 1, + STATE(521), 1, aux_sym__list_definition_repeat1, - STATE(694), 1, + STATE(792), 1, sym__list_item_definition, - [12746] = 4, - ACTIONS(1627), 1, + [12706] = 4, + ACTIONS(1614), 1, sym__block_close, - ACTIONS(1629), 1, - sym_list_marker_decimal_parens, - STATE(527), 1, - aux_sym__list_decimal_parens_repeat1, - STATE(746), 1, - sym__list_item_decimal_parens, - [12759] = 4, + ACTIONS(1616), 1, + sym_list_marker_decimal_paren, + STATE(524), 1, + aux_sym__list_decimal_paren_repeat1, + STATE(692), 1, + sym__list_item_decimal_paren, + [12719] = 4, ACTIONS(31), 1, sym_list_marker_decimal_period, - ACTIONS(1632), 1, + ACTIONS(1619), 1, sym__block_close, - STATE(524), 1, + STATE(522), 1, aux_sym__list_decimal_period_repeat1, - STATE(714), 1, + STATE(691), 1, sym__list_item_decimal_period, - [12772] = 4, - ACTIONS(1634), 1, + [12732] = 4, + ACTIONS(1621), 1, sym__block_close, - ACTIONS(1636), 1, - sym_list_marker_upper_alpha_parens, - STATE(529), 1, - aux_sym__list_upper_alpha_parens_repeat1, - STATE(765), 1, - sym__list_item_upper_alpha_parens, - [12785] = 4, - ACTIONS(1639), 1, - sym__block_close, - ACTIONS(1641), 1, - sym_list_marker_lower_alpha_period, - STATE(530), 1, - aux_sym__list_lower_alpha_period_repeat1, - STATE(748), 1, - sym__list_item_lower_alpha_period, - [12798] = 4, + ACTIONS(1623), 1, + sym_list_marker_decimal_parens, + STATE(526), 1, + aux_sym__list_decimal_parens_repeat1, + STATE(710), 1, + sym__list_item_decimal_parens, + [12745] = 4, ACTIONS(41), 1, sym_list_marker_decimal_paren, - ACTIONS(1644), 1, + ACTIONS(1626), 1, sym__block_close, - STATE(525), 1, + STATE(524), 1, aux_sym__list_decimal_paren_repeat1, - STATE(719), 1, + STATE(692), 1, sym__list_item_decimal_paren, - [12811] = 4, - ACTIONS(1646), 1, + [12758] = 4, + ACTIONS(1628), 1, sym__block_close, - ACTIONS(1648), 1, - sym_list_marker_lower_alpha_paren, - STATE(532), 1, - aux_sym__list_lower_alpha_paren_repeat1, - STATE(749), 1, - sym__list_item_lower_alpha_paren, - [12824] = 4, + ACTIONS(1630), 1, + sym_list_marker_lower_alpha_period, + STATE(528), 1, + aux_sym__list_lower_alpha_period_repeat1, + STATE(714), 1, + sym__list_item_lower_alpha_period, + [12771] = 4, ACTIONS(51), 1, sym_list_marker_decimal_parens, - ACTIONS(1651), 1, + ACTIONS(1633), 1, sym__block_close, - STATE(527), 1, + STATE(526), 1, aux_sym__list_decimal_parens_repeat1, - STATE(746), 1, + STATE(710), 1, sym__list_item_decimal_parens, - [12837] = 4, - ACTIONS(1653), 1, + [12784] = 4, + ACTIONS(1635), 1, sym__block_close, - ACTIONS(1655), 1, - sym_list_marker_lower_alpha_parens, - STATE(534), 1, - aux_sym__list_lower_alpha_parens_repeat1, - STATE(753), 1, - sym__list_item_lower_alpha_parens, - [12850] = 4, + ACTIONS(1637), 1, + sym_list_marker_lower_alpha_paren, + STATE(530), 1, + aux_sym__list_lower_alpha_paren_repeat1, + STATE(717), 1, + sym__list_item_lower_alpha_paren, + [12797] = 4, ACTIONS(33), 1, sym_list_marker_lower_alpha_period, - ACTIONS(1658), 1, + ACTIONS(1640), 1, sym__block_close, - STATE(530), 1, + STATE(528), 1, aux_sym__list_lower_alpha_period_repeat1, - STATE(748), 1, + STATE(714), 1, sym__list_item_lower_alpha_period, - [12863] = 4, - ACTIONS(1660), 1, + [12810] = 4, + ACTIONS(1642), 1, sym__block_close, - ACTIONS(1662), 1, - sym_list_marker_upper_alpha_period, - STATE(536), 1, - aux_sym__list_upper_alpha_period_repeat1, - STATE(761), 1, - sym__list_item_upper_alpha_period, - [12876] = 4, + ACTIONS(1644), 1, + sym_list_marker_lower_alpha_parens, + STATE(532), 1, + aux_sym__list_lower_alpha_parens_repeat1, + STATE(721), 1, + sym__list_item_lower_alpha_parens, + [12823] = 4, ACTIONS(43), 1, sym_list_marker_lower_alpha_paren, - ACTIONS(1665), 1, + ACTIONS(1647), 1, sym__block_close, - STATE(532), 1, + STATE(530), 1, aux_sym__list_lower_alpha_paren_repeat1, - STATE(749), 1, + STATE(717), 1, sym__list_item_lower_alpha_paren, - [12889] = 4, - ACTIONS(1667), 1, + [12836] = 4, + ACTIONS(1649), 1, + sym__block_close, + ACTIONS(1651), 1, + sym_list_marker_upper_alpha_period, + STATE(534), 1, + aux_sym__list_upper_alpha_period_repeat1, + STATE(726), 1, + sym__list_item_upper_alpha_period, + [12849] = 4, + ACTIONS(53), 1, + sym_list_marker_lower_alpha_parens, + ACTIONS(1654), 1, + sym__block_close, + STATE(532), 1, + aux_sym__list_lower_alpha_parens_repeat1, + STATE(721), 1, + sym__list_item_lower_alpha_parens, + [12862] = 4, + ACTIONS(1656), 1, sym__block_close, - ACTIONS(1669), 1, + ACTIONS(1658), 1, sym_list_marker_upper_alpha_paren, - STATE(538), 1, + STATE(536), 1, aux_sym__list_upper_alpha_paren_repeat1, - STATE(764), 1, + STATE(747), 1, sym__list_item_upper_alpha_paren, - [12902] = 4, - ACTIONS(53), 1, - sym_list_marker_lower_alpha_parens, - ACTIONS(1672), 1, + [12875] = 4, + ACTIONS(35), 1, + sym_list_marker_upper_alpha_period, + ACTIONS(1661), 1, sym__block_close, STATE(534), 1, - aux_sym__list_lower_alpha_parens_repeat1, + aux_sym__list_upper_alpha_period_repeat1, + STATE(726), 1, + sym__list_item_upper_alpha_period, + [12888] = 4, + ACTIONS(1663), 1, + sym__block_close, + ACTIONS(1665), 1, + sym_list_marker_upper_alpha_parens, + STATE(538), 1, + aux_sym__list_upper_alpha_parens_repeat1, + STATE(751), 1, + sym__list_item_upper_alpha_parens, + [12901] = 4, + ACTIONS(1668), 1, + sym__block_close, + ACTIONS(1670), 1, + sym_list_marker_lower_roman_period, + STATE(539), 1, + aux_sym__list_lower_roman_period_repeat1, STATE(753), 1, - sym__list_item_lower_alpha_parens, - [12915] = 4, - ACTIONS(1434), 1, + sym__list_item_lower_roman_period, + [12914] = 4, + ACTIONS(1433), 1, anon_sym_EQ, - ACTIONS(1674), 1, + ACTIONS(1673), 1, sym_language, - ACTIONS(1676), 1, + ACTIONS(1675), 1, sym__newline, STATE(1026), 1, sym_raw_block_info, - [12928] = 4, - ACTIONS(1434), 1, + [12927] = 4, + ACTIONS(1433), 1, anon_sym_EQ, - ACTIONS(1678), 1, + ACTIONS(1677), 1, sym_language, - ACTIONS(1680), 1, + ACTIONS(1679), 1, sym__newline, STATE(1045), 1, sym_raw_block_info, - [12941] = 4, - ACTIONS(1434), 1, + [12940] = 4, + ACTIONS(1433), 1, anon_sym_EQ, - ACTIONS(1682), 1, + ACTIONS(1681), 1, sym_language, - ACTIONS(1684), 1, + ACTIONS(1683), 1, sym__newline, STATE(1064), 1, sym_raw_block_info, - [12954] = 4, - ACTIONS(1434), 1, + [12953] = 4, + ACTIONS(1433), 1, anon_sym_EQ, - ACTIONS(1686), 1, + ACTIONS(1685), 1, sym_language, - ACTIONS(1688), 1, + ACTIONS(1687), 1, sym__newline, STATE(1082), 1, sym_raw_block_info, - [12967] = 4, - ACTIONS(57), 1, - sym_list_marker_lower_roman_parens, - ACTIONS(1690), 1, + [12966] = 4, + ACTIONS(1689), 1, sym__block_close, - STATE(427), 1, - aux_sym__list_lower_roman_parens_repeat1, - STATE(786), 1, - sym__list_item_lower_roman_parens, - [12980] = 1, - ACTIONS(1692), 3, - sym__block_quote_continuation, - sym__footnote_continuation, - sym__footnote_end, - [12986] = 1, - ACTIONS(710), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [12992] = 3, - ACTIONS(907), 1, - sym__list_marker_task_begin, - ACTIONS(1104), 1, - sym__block_quote_continuation, - STATE(548), 1, - aux_sym__block_quote_prefix_repeat1, - [13002] = 3, - ACTIONS(868), 1, - sym__list_marker_task_begin, + ACTIONS(1691), 1, + sym_list_marker_lower_roman_paren, + STATE(544), 1, + aux_sym__list_lower_roman_paren_repeat1, + STATE(755), 1, + sym__list_item_lower_roman_paren, + [12979] = 4, + ACTIONS(39), 1, + sym_list_marker_upper_roman_period, ACTIONS(1694), 1, - sym__block_quote_continuation, - STATE(548), 1, - aux_sym__block_quote_prefix_repeat1, - [13012] = 2, - ACTIONS(1697), 1, - sym__code_block_end, - ACTIONS(608), 2, - sym__block_close, - sym__block_quote_continuation, - [13020] = 3, - ACTIONS(1699), 1, - sym__newline, - ACTIONS(1701), 1, - sym__table_cell, - STATE(993), 1, - sym_table_cell, - [13030] = 3, - ACTIONS(907), 1, - aux_sym__line_token1, - ACTIONS(1100), 1, - sym__block_quote_continuation, - STATE(552), 1, - aux_sym__block_quote_prefix_repeat1, - [13040] = 3, - ACTIONS(868), 1, - aux_sym__line_token1, - ACTIONS(1703), 1, - sym__block_quote_continuation, - STATE(552), 1, - aux_sym__block_quote_prefix_repeat1, - [13050] = 3, - ACTIONS(907), 1, - sym__list_item_continuation, - ACTIONS(1242), 1, - sym__block_quote_continuation, - STATE(554), 1, - aux_sym__block_quote_prefix_repeat1, - [13060] = 3, - ACTIONS(868), 1, - sym__list_item_continuation, - ACTIONS(1706), 1, - sym__block_quote_continuation, - STATE(554), 1, - aux_sym__block_quote_prefix_repeat1, - [13070] = 3, - ACTIONS(907), 1, - sym__footnote_continuation, - ACTIONS(1264), 1, - sym__block_quote_continuation, - STATE(556), 1, - aux_sym__block_quote_prefix_repeat1, - [13080] = 3, - ACTIONS(868), 1, - sym__footnote_continuation, - ACTIONS(1709), 1, - sym__block_quote_continuation, - STATE(556), 1, - aux_sym__block_quote_prefix_repeat1, - [13090] = 3, - ACTIONS(538), 1, - sym__indented_content_spacer, - ACTIONS(929), 1, - sym__table_caption_begin, - STATE(1066), 1, - sym_table_caption, - [13100] = 1, - ACTIONS(1712), 3, - sym__block_close, - sym__list_marker_task_begin, - sym__block_quote_continuation, - [13106] = 1, - ACTIONS(1714), 3, - sym__block_close, - sym__list_marker_task_begin, - sym__block_quote_continuation, - [13112] = 3, - ACTIONS(1701), 1, - sym__table_cell, - ACTIONS(1716), 1, - sym__newline, - STATE(993), 1, - sym_table_cell, - [13122] = 1, - ACTIONS(1714), 3, - sym__block_close, - sym_list_marker_plus, - sym__block_quote_continuation, - [13128] = 2, - ACTIONS(1718), 1, - sym__div_end, - ACTIONS(542), 2, - sym__block_close, - sym__block_quote_continuation, - [13136] = 2, - ACTIONS(1720), 1, - sym__code_block_end, - ACTIONS(566), 2, - sym__block_close, - sym__block_quote_continuation, - [13144] = 2, - ACTIONS(1722), 1, - sym__code_block_end, - ACTIONS(572), 2, - sym__block_close, - sym__block_quote_continuation, - [13152] = 2, - ACTIONS(1724), 1, - sym__eof_or_newline, - ACTIONS(578), 2, - sym__block_close, - sym__block_quote_continuation, - [13160] = 3, - ACTIONS(1726), 1, - sym__block_close, - ACTIONS(1728), 1, - sym__heading_continuation, - STATE(596), 1, - aux_sym__heading_content_repeat1, - [13170] = 3, - ACTIONS(907), 1, - sym_list_marker_plus, - ACTIONS(1162), 1, - sym__block_quote_continuation, - STATE(583), 1, - aux_sym__block_quote_prefix_repeat1, - [13180] = 3, - ACTIONS(1728), 1, - sym__heading_continuation, - ACTIONS(1730), 1, - sym__block_close, - STATE(566), 1, - aux_sym__heading_content_repeat1, - [13190] = 1, - ACTIONS(1714), 3, - sym__block_close, - sym_list_marker_star, - sym__block_quote_continuation, - [13196] = 1, - ACTIONS(1732), 3, sym__block_close, - sym_list_marker_star, - sym__block_quote_continuation, - [13202] = 1, - ACTIONS(1734), 3, - sym__block_close, - sym_list_marker_dash, - sym__block_quote_continuation, - [13208] = 1, - ACTIONS(1736), 3, - sym__block_close, - sym_list_marker_star, - sym__block_quote_continuation, - [13214] = 3, - ACTIONS(1701), 1, - sym__table_cell, - ACTIONS(1738), 1, - sym__newline, - STATE(993), 1, - sym_table_cell, - [13224] = 3, - ACTIONS(1701), 1, - sym__table_cell, - ACTIONS(1740), 1, - sym__newline, - STATE(993), 1, - sym_table_cell, - [13234] = 1, - ACTIONS(1742), 3, - sym__block_close, - sym_list_marker_plus, - sym__block_quote_continuation, - [13240] = 2, - ACTIONS(1746), 1, - anon_sym_SPACE, - ACTIONS(1744), 2, - anon_sym_x, - anon_sym_X, - [13248] = 1, - ACTIONS(1748), 3, - anon_sym_PERCENT, - sym_backslash_escape, - aux_sym_comment_token1, - [13254] = 3, - ACTIONS(1701), 1, - sym__table_cell, - ACTIONS(1750), 1, - sym__newline, - STATE(993), 1, - sym_table_cell, - [13264] = 3, - ACTIONS(1701), 1, - sym__table_cell, - ACTIONS(1752), 1, - sym__newline, - STATE(993), 1, - sym_table_cell, - [13274] = 1, - ACTIONS(1712), 3, - sym__block_close, - sym_list_marker_star, - sym__block_quote_continuation, - [13280] = 3, - ACTIONS(1701), 1, - sym__table_cell, - ACTIONS(1754), 1, - sym__newline, - STATE(993), 1, - sym_table_cell, - [13290] = 3, - ACTIONS(1701), 1, - sym__table_cell, - ACTIONS(1756), 1, - sym__newline, - STATE(993), 1, - sym_table_cell, - [13300] = 3, - ACTIONS(868), 1, - sym_list_marker_plus, - ACTIONS(1758), 1, - sym__block_quote_continuation, - STATE(583), 1, - aux_sym__block_quote_prefix_repeat1, - [13310] = 3, + STATE(429), 1, + aux_sym__list_upper_roman_period_repeat1, + STATE(761), 1, + sym__list_item_upper_roman_period, + [12992] = 3, ACTIONS(907), 1, sym_list_marker_dash, - ACTIONS(1152), 1, + ACTIONS(1168), 1, sym__block_quote_continuation, - STATE(594), 1, + STATE(623), 1, aux_sym__block_quote_prefix_repeat1, - [13320] = 3, - ACTIONS(1761), 1, - anon_sym_DQUOTE, - ACTIONS(1763), 1, - aux_sym_value_token2, - STATE(322), 1, - sym_value, - [13330] = 1, - ACTIONS(1765), 3, - sym__block_close, - sym__list_marker_task_begin, - sym__block_quote_continuation, - [13336] = 1, - ACTIONS(864), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [13342] = 1, - ACTIONS(1767), 3, + [13002] = 1, + ACTIONS(1696), 3, sym__block_close, sym_list_marker_dash, sym__block_quote_continuation, - [13348] = 1, - ACTIONS(1769), 3, + [13008] = 1, + ACTIONS(1698), 3, sym__block_close, sym_list_marker_star, sym__block_quote_continuation, - [13354] = 1, - ACTIONS(1771), 3, + [13014] = 1, + ACTIONS(1700), 3, sym__block_close, sym_list_marker_plus, sym__block_quote_continuation, - [13360] = 1, - ACTIONS(1773), 3, + [13020] = 1, + ACTIONS(1702), 3, sym__block_close, sym__list_marker_task_begin, sym__block_quote_continuation, - [13366] = 3, - ACTIONS(1775), 1, + [13026] = 3, + ACTIONS(1704), 1, sym__eof_or_newline, - ACTIONS(1777), 1, + ACTIONS(1706), 1, sym__newline_inline, - STATE(593), 1, + STATE(552), 1, aux_sym__paragraph_inline_content_repeat1, - [13376] = 3, - ACTIONS(1779), 1, + [13036] = 3, + ACTIONS(1708), 1, sym__eof_or_newline, - ACTIONS(1781), 1, + ACTIONS(1710), 1, sym__newline_inline, - STATE(593), 1, + STATE(552), 1, aux_sym__paragraph_inline_content_repeat1, - [13386] = 3, - ACTIONS(868), 1, - sym_list_marker_dash, - ACTIONS(1784), 1, - sym__block_quote_continuation, - STATE(594), 1, - aux_sym__block_quote_prefix_repeat1, - [13396] = 1, - ACTIONS(1787), 3, + [13046] = 1, + ACTIONS(1713), 3, sym__block_close, - sym_list_marker_dash, + sym_list_marker_star, sym__block_quote_continuation, - [13402] = 3, - ACTIONS(1789), 1, + [13052] = 3, + ACTIONS(1715), 1, sym__block_close, - ACTIONS(1791), 1, + ACTIONS(1717), 1, sym__heading_continuation, - STATE(596), 1, + STATE(554), 1, aux_sym__heading_content_repeat1, - [13412] = 1, - ACTIONS(706), 3, + [13062] = 1, + ACTIONS(1720), 3, + sym__block_close, + sym_list_marker_dash, + sym__block_quote_continuation, + [13068] = 1, + ACTIONS(748), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13418] = 1, - ACTIONS(732), 3, + [13074] = 1, + ACTIONS(752), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13424] = 3, + [13080] = 3, ACTIONS(907), 1, sym_list_marker_star, - ACTIONS(1158), 1, + ACTIONS(1156), 1, sym__block_quote_continuation, - STATE(639), 1, + STATE(581), 1, aux_sym__block_quote_prefix_repeat1, - [13434] = 1, - ACTIONS(1225), 3, - sym__block_close, + [13090] = 1, + ACTIONS(760), 3, + sym__list_item_continuation, + sym__list_item_end, sym__block_quote_continuation, - aux_sym__line_token1, - [13440] = 3, - ACTIONS(1701), 1, - sym__table_cell, - ACTIONS(1794), 1, - sym__newline, - STATE(993), 1, - sym_table_cell, - [13450] = 3, - ACTIONS(1701), 1, - sym__table_cell, - ACTIONS(1796), 1, - sym__newline, - STATE(993), 1, - sym_table_cell, - [13460] = 1, - ACTIONS(1798), 3, - sym__block_close, - sym__list_marker_task_begin, + [13096] = 1, + ACTIONS(764), 3, + sym__list_item_continuation, + sym__list_item_end, sym__block_quote_continuation, - [13466] = 1, - ACTIONS(1714), 3, - sym__block_close, - sym_list_marker_dash, + [13102] = 1, + ACTIONS(768), 3, + sym__list_item_continuation, + sym__list_item_end, sym__block_quote_continuation, - [13472] = 3, - ACTIONS(1701), 1, - sym__table_cell, - ACTIONS(1800), 1, - sym__newline, - STATE(993), 1, - sym_table_cell, - [13482] = 3, - ACTIONS(1701), 1, - sym__table_cell, - ACTIONS(1802), 1, - sym__newline, - STATE(993), 1, - sym_table_cell, - [13492] = 1, - ACTIONS(1257), 3, + [13108] = 1, + ACTIONS(662), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13498] = 1, - ACTIONS(1712), 3, - sym__block_close, - sym_list_marker_dash, + [13114] = 1, + ACTIONS(772), 3, + sym__list_item_continuation, + sym__list_item_end, sym__block_quote_continuation, - [13504] = 1, - ACTIONS(736), 3, + [13120] = 1, + ACTIONS(776), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13510] = 1, - ACTIONS(740), 3, + [13126] = 1, + ACTIONS(780), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13516] = 1, - ACTIONS(744), 3, + [13132] = 1, + ACTIONS(784), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13522] = 1, - ACTIONS(748), 3, + [13138] = 1, + ACTIONS(788), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13528] = 1, - ACTIONS(752), 3, + [13144] = 1, + ACTIONS(792), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13534] = 1, - ACTIONS(756), 3, + [13150] = 1, + ACTIONS(796), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13540] = 1, - ACTIONS(760), 3, + [13156] = 1, + ACTIONS(800), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13546] = 1, - ACTIONS(764), 3, + [13162] = 1, + ACTIONS(804), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13552] = 1, - ACTIONS(702), 3, + [13168] = 1, + ACTIONS(808), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13558] = 1, - ACTIONS(772), 3, + [13174] = 1, + ACTIONS(812), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13564] = 1, - ACTIONS(776), 3, + [13180] = 1, + ACTIONS(754), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13570] = 1, - ACTIONS(780), 3, + [13186] = 1, + ACTIONS(816), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13576] = 1, - ACTIONS(784), 3, + [13192] = 1, + ACTIONS(820), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13582] = 1, - ACTIONS(788), 3, + [13198] = 1, + ACTIONS(824), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13588] = 1, - ACTIONS(792), 3, + [13204] = 1, + ACTIONS(828), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13594] = 3, - ACTIONS(1777), 1, - sym__newline_inline, - ACTIONS(1804), 1, - sym__eof_or_newline, - STATE(592), 1, - aux_sym__paragraph_inline_content_repeat1, - [13604] = 3, - ACTIONS(1701), 1, - sym__table_cell, - ACTIONS(1806), 1, - sym__newline, - STATE(993), 1, - sym_table_cell, - [13614] = 3, - ACTIONS(1701), 1, - sym__table_cell, - ACTIONS(1808), 1, - sym__newline, - STATE(993), 1, - sym_table_cell, - [13624] = 3, - ACTIONS(1701), 1, - sym__table_cell, - ACTIONS(1810), 1, - sym__newline, - STATE(993), 1, - sym_table_cell, - [13634] = 3, - ACTIONS(1701), 1, - sym__table_cell, - ACTIONS(1812), 1, - sym__newline, - STATE(993), 1, - sym_table_cell, - [13644] = 3, - ACTIONS(1777), 1, - sym__newline_inline, - ACTIONS(1804), 1, - sym__eof_or_newline, - STATE(593), 1, - aux_sym__paragraph_inline_content_repeat1, - [13654] = 1, - ACTIONS(1814), 3, + [13210] = 1, + ACTIONS(734), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13660] = 1, - ACTIONS(1816), 3, + [13216] = 1, + ACTIONS(538), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13666] = 1, - ACTIONS(796), 3, + [13222] = 3, + ACTIONS(872), 1, + sym_list_marker_star, + ACTIONS(1722), 1, + sym__block_quote_continuation, + STATE(581), 1, + aux_sym__block_quote_prefix_repeat1, + [13232] = 1, + ACTIONS(832), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13672] = 1, - ACTIONS(800), 3, + [13238] = 1, + ACTIONS(836), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13678] = 1, - ACTIONS(664), 3, + [13244] = 1, + ACTIONS(840), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13684] = 1, - ACTIONS(804), 3, + [13250] = 1, + ACTIONS(1720), 3, + sym__block_close, + sym_list_marker_star, + sym__block_quote_continuation, + [13256] = 1, + ACTIONS(842), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13690] = 1, - ACTIONS(808), 3, + [13262] = 1, + ACTIONS(846), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13696] = 1, - ACTIONS(812), 3, + [13268] = 1, + ACTIONS(852), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13702] = 1, - ACTIONS(538), 3, + [13274] = 1, + ACTIONS(856), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13708] = 3, - ACTIONS(868), 1, - sym_list_marker_star, - ACTIONS(1818), 1, + [13280] = 1, + ACTIONS(666), 3, + sym__list_item_continuation, + sym__list_item_end, sym__block_quote_continuation, - STATE(639), 1, - aux_sym__block_quote_prefix_repeat1, - [13718] = 1, - ACTIONS(820), 3, + [13286] = 1, + ACTIONS(670), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13724] = 1, - ACTIONS(824), 3, + [13292] = 1, + ACTIONS(674), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13730] = 2, - ACTIONS(1821), 1, - sym__eof_or_newline, - ACTIONS(596), 2, + [13298] = 1, + ACTIONS(682), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [13304] = 1, + ACTIONS(686), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [13310] = 1, + ACTIONS(690), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [13316] = 1, + ACTIONS(694), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [13322] = 1, + ACTIONS(698), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [13328] = 1, + ACTIONS(702), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [13334] = 1, + ACTIONS(1725), 3, sym__block_close, + sym_list_marker_dash, sym__block_quote_continuation, - [13738] = 1, - ACTIONS(828), 3, + [13340] = 1, + ACTIONS(706), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13744] = 1, - ACTIONS(724), 3, + [13346] = 1, + ACTIONS(710), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13750] = 1, - ACTIONS(814), 3, + [13352] = 1, + ACTIONS(714), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13756] = 2, - ACTIONS(1823), 1, - sym__div_end, - ACTIONS(546), 2, + [13358] = 1, + ACTIONS(718), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [13364] = 3, + ACTIONS(907), 1, + sym__list_marker_task_begin, + ACTIONS(1098), 1, + sym__block_quote_continuation, + STATE(605), 1, + aux_sym__block_quote_prefix_repeat1, + [13374] = 3, + ACTIONS(872), 1, + sym__list_marker_task_begin, + ACTIONS(1727), 1, + sym__block_quote_continuation, + STATE(605), 1, + aux_sym__block_quote_prefix_repeat1, + [13384] = 1, + ACTIONS(1730), 3, sym__block_close, + sym_list_marker_plus, sym__block_quote_continuation, - [13764] = 2, - ACTIONS(1825), 1, - sym__code_block_end, - ACTIONS(588), 2, + [13390] = 3, + ACTIONS(1732), 1, + sym__newline, + ACTIONS(1734), 1, + sym__table_cell, + STATE(995), 1, + sym_table_cell, + [13400] = 3, + ACTIONS(907), 1, + aux_sym__line_token1, + ACTIONS(1104), 1, + sym__block_quote_continuation, + STATE(609), 1, + aux_sym__block_quote_prefix_repeat1, + [13410] = 3, + ACTIONS(872), 1, + aux_sym__line_token1, + ACTIONS(1736), 1, + sym__block_quote_continuation, + STATE(609), 1, + aux_sym__block_quote_prefix_repeat1, + [13420] = 3, + ACTIONS(907), 1, + sym__list_item_continuation, + ACTIONS(1250), 1, + sym__block_quote_continuation, + STATE(611), 1, + aux_sym__block_quote_prefix_repeat1, + [13430] = 3, + ACTIONS(872), 1, + sym__list_item_continuation, + ACTIONS(1739), 1, + sym__block_quote_continuation, + STATE(611), 1, + aux_sym__block_quote_prefix_repeat1, + [13440] = 3, + ACTIONS(907), 1, + sym__footnote_continuation, + ACTIONS(1238), 1, + sym__block_quote_continuation, + STATE(613), 1, + aux_sym__block_quote_prefix_repeat1, + [13450] = 3, + ACTIONS(872), 1, + sym__footnote_continuation, + ACTIONS(1742), 1, + sym__block_quote_continuation, + STATE(613), 1, + aux_sym__block_quote_prefix_repeat1, + [13460] = 1, + ACTIONS(1720), 3, sym__block_close, + sym__list_marker_task_begin, sym__block_quote_continuation, - [13772] = 3, - ACTIONS(1701), 1, + [13466] = 1, + ACTIONS(1713), 3, + sym__block_close, + sym__list_marker_task_begin, + sym__block_quote_continuation, + [13472] = 3, + ACTIONS(1734), 1, sym__table_cell, - ACTIONS(1827), 1, + ACTIONS(1745), 1, sym__newline, - STATE(993), 1, + STATE(995), 1, sym_table_cell, - [13782] = 3, - ACTIONS(1701), 1, + [13482] = 3, + ACTIONS(1734), 1, sym__table_cell, - ACTIONS(1829), 1, + ACTIONS(1747), 1, sym__newline, - STATE(993), 1, + STATE(995), 1, sym_table_cell, - [13792] = 2, - ACTIONS(1831), 1, - anon_sym_LBRACK, - STATE(1013), 2, - sym_checked, - sym_unchecked, - [13800] = 3, - ACTIONS(1701), 1, + [13492] = 1, + ACTIONS(728), 3, + sym__list_item_continuation, + sym__list_item_end, + sym__block_quote_continuation, + [13498] = 3, + ACTIONS(1734), 1, sym__table_cell, - ACTIONS(1833), 1, + ACTIONS(1749), 1, sym__newline, - STATE(993), 1, + STATE(995), 1, sym_table_cell, - [13810] = 3, - ACTIONS(1701), 1, + [13508] = 3, + ACTIONS(1734), 1, sym__table_cell, - ACTIONS(1835), 1, + ACTIONS(1751), 1, sym__newline, - STATE(993), 1, + STATE(995), 1, sym_table_cell, - [13820] = 1, - ACTIONS(1837), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [13826] = 3, - ACTIONS(1777), 1, - sym__newline_inline, - ACTIONS(1839), 1, - sym__eof_or_newline, - STATE(629), 1, - aux_sym__paragraph_inline_content_repeat1, - [13836] = 1, - ACTIONS(830), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [13842] = 1, - ACTIONS(1712), 3, + [13518] = 1, + ACTIONS(1221), 3, sym__block_close, - sym_list_marker_plus, sym__block_quote_continuation, - [13848] = 1, - ACTIONS(1841), 3, + aux_sym__line_token1, + [13524] = 1, + ACTIONS(1753), 3, sym__block_close, - sym_list_marker_plus, + sym__list_marker_task_begin, sym__block_quote_continuation, - [13854] = 1, - ACTIONS(1843), 3, + [13530] = 3, + ACTIONS(872), 1, + sym_list_marker_dash, + ACTIONS(1755), 1, + sym__block_quote_continuation, + STATE(623), 1, + aux_sym__block_quote_prefix_repeat1, + [13540] = 1, + ACTIONS(1758), 3, sym__block_close, sym__block_quote_continuation, aux_sym__line_token1, - [13860] = 1, - ACTIONS(840), 3, + [13546] = 2, + ACTIONS(1760), 1, + sym__eof_or_newline, + ACTIONS(596), 2, + sym__block_close, + sym__block_quote_continuation, + [13554] = 1, + ACTIONS(740), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13866] = 2, - ACTIONS(1845), 1, + [13560] = 2, + ACTIONS(1762), 1, sym__div_end, - ACTIONS(624), 2, + ACTIONS(578), 2, sym__block_close, sym__block_quote_continuation, - [13874] = 1, - ACTIONS(844), 3, + [13568] = 3, + ACTIONS(1734), 1, + sym__table_cell, + ACTIONS(1764), 1, + sym__newline, + STATE(995), 1, + sym_table_cell, + [13578] = 3, + ACTIONS(1734), 1, + sym__table_cell, + ACTIONS(1766), 1, + sym__newline, + STATE(995), 1, + sym_table_cell, + [13588] = 1, + ACTIONS(1713), 3, + sym__block_close, + sym_list_marker_dash, + sym__block_quote_continuation, + [13594] = 1, + ACTIONS(1265), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13880] = 1, - ACTIONS(1847), 3, + [13600] = 3, + ACTIONS(1734), 1, + sym__table_cell, + ACTIONS(1768), 1, + sym__newline, + STATE(995), 1, + sym_table_cell, + [13610] = 3, + ACTIONS(1734), 1, + sym__table_cell, + ACTIONS(1770), 1, + sym__newline, + STATE(995), 1, + sym_table_cell, + [13620] = 3, + ACTIONS(1706), 1, + sym__newline_inline, + ACTIONS(1772), 1, + sym__eof_or_newline, + STATE(551), 1, + aux_sym__paragraph_inline_content_repeat1, + [13630] = 2, + ACTIONS(1774), 1, + sym__code_block_end, + ACTIONS(588), 2, + sym__block_close, sym__block_quote_continuation, - sym__footnote_continuation, - sym__footnote_end, - [13886] = 2, - ACTIONS(1849), 1, + [13638] = 1, + ACTIONS(1720), 3, + sym__block_close, + sym_list_marker_plus, + sym__block_quote_continuation, + [13644] = 2, + ACTIONS(1776), 1, + sym__div_end, + ACTIONS(624), 2, + sym__block_close, + sym__block_quote_continuation, + [13652] = 2, + ACTIONS(1778), 1, sym__div_end, ACTIONS(630), 2, sym__block_close, sym__block_quote_continuation, - [13894] = 2, - ACTIONS(1851), 1, + [13660] = 2, + ACTIONS(1780), 1, sym__code_block_end, ACTIONS(636), 2, sym__block_close, sym__block_quote_continuation, - [13902] = 1, - ACTIONS(848), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [13908] = 1, - ACTIONS(852), 3, - sym__list_item_continuation, - sym__list_item_end, - sym__block_quote_continuation, - [13914] = 1, - ACTIONS(856), 3, - sym__list_item_continuation, - sym__list_item_end, + [13668] = 2, + ACTIONS(1782), 1, + sym__code_block_end, + ACTIONS(642), 2, + sym__block_close, sym__block_quote_continuation, - [13920] = 1, - ACTIONS(670), 3, - sym__list_item_continuation, - sym__list_item_end, + [13676] = 2, + ACTIONS(1784), 1, + sym__code_block_end, + ACTIONS(608), 2, + sym__block_close, sym__block_quote_continuation, - [13926] = 1, - ACTIONS(674), 3, - sym__list_item_continuation, - sym__list_item_end, + [13684] = 1, + ACTIONS(1713), 3, + sym__block_close, + sym_list_marker_plus, sym__block_quote_continuation, - [13932] = 1, - ACTIONS(678), 3, - sym__list_item_continuation, - sym__list_item_end, + [13690] = 3, + ACTIONS(1786), 1, + sym__block_close, + ACTIONS(1788), 1, + sym__heading_continuation, + STATE(554), 1, + aux_sym__heading_content_repeat1, + [13700] = 3, + ACTIONS(1788), 1, + sym__heading_continuation, + ACTIONS(1790), 1, + sym__block_close, + STATE(643), 1, + aux_sym__heading_content_repeat1, + [13710] = 2, + ACTIONS(1792), 1, + sym__div_end, + ACTIONS(542), 2, + sym__block_close, sym__block_quote_continuation, - [13938] = 1, - ACTIONS(682), 3, + [13718] = 3, + ACTIONS(1706), 1, + sym__newline_inline, + ACTIONS(1772), 1, + sym__eof_or_newline, + STATE(552), 1, + aux_sym__paragraph_inline_content_repeat1, + [13728] = 3, + ACTIONS(1734), 1, + sym__table_cell, + ACTIONS(1794), 1, + sym__newline, + STATE(995), 1, + sym_table_cell, + [13738] = 3, + ACTIONS(1734), 1, + sym__table_cell, + ACTIONS(1796), 1, + sym__newline, + STATE(995), 1, + sym_table_cell, + [13748] = 3, + ACTIONS(1734), 1, + sym__table_cell, + ACTIONS(1798), 1, + sym__newline, + STATE(995), 1, + sym_table_cell, + [13758] = 3, + ACTIONS(1734), 1, + sym__table_cell, + ACTIONS(1800), 1, + sym__newline, + STATE(995), 1, + sym_table_cell, + [13768] = 2, + ACTIONS(1802), 1, + anon_sym_LBRACK, + STATE(1083), 2, + sym_checked, + sym_unchecked, + [13776] = 1, + ACTIONS(1804), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13944] = 1, - ACTIONS(686), 3, + [13782] = 1, + ACTIONS(1806), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13950] = 1, - ACTIONS(690), 3, - sym__list_item_continuation, - sym__list_item_end, + [13788] = 2, + ACTIONS(1808), 1, + sym__code_block_end, + ACTIONS(560), 2, + sym__block_close, sym__block_quote_continuation, - [13956] = 2, - ACTIONS(1853), 1, + [13796] = 2, + ACTIONS(1810), 1, sym__code_block_end, - ACTIONS(642), 2, + ACTIONS(566), 2, sym__block_close, sym__block_quote_continuation, - [13964] = 1, - ACTIONS(694), 3, - sym__list_item_continuation, - sym__list_item_end, + [13804] = 2, + ACTIONS(1812), 1, + sym__eof_or_newline, + ACTIONS(572), 2, + sym__block_close, sym__block_quote_continuation, - [13970] = 1, - ACTIONS(698), 3, + [13812] = 3, + ACTIONS(1706), 1, + sym__newline_inline, + ACTIONS(1814), 1, + sym__eof_or_newline, + STATE(646), 1, + aux_sym__paragraph_inline_content_repeat1, + [13822] = 3, + ACTIONS(1734), 1, + sym__table_cell, + ACTIONS(1816), 1, + sym__newline, + STATE(995), 1, + sym_table_cell, + [13832] = 3, + ACTIONS(1734), 1, + sym__table_cell, + ACTIONS(1818), 1, + sym__newline, + STATE(995), 1, + sym_table_cell, + [13842] = 1, + ACTIONS(1820), 3, sym__list_item_continuation, sym__list_item_end, sym__block_quote_continuation, - [13976] = 1, - ACTIONS(768), 3, - sym__list_item_continuation, - sym__list_item_end, + [13848] = 3, + ACTIONS(1734), 1, + sym__table_cell, + ACTIONS(1822), 1, + sym__newline, + STATE(995), 1, + sym_table_cell, + [13858] = 3, + ACTIONS(1734), 1, + sym__table_cell, + ACTIONS(1824), 1, + sym__newline, + STATE(995), 1, + sym_table_cell, + [13868] = 3, + ACTIONS(907), 1, + sym_list_marker_plus, + ACTIONS(1152), 1, sym__block_quote_continuation, - [13982] = 1, - ACTIONS(1712), 2, + STATE(675), 1, + aux_sym__block_quote_prefix_repeat1, + [13878] = 1, + ACTIONS(1826), 3, sym__block_close, - sym_list_marker_lower_roman_parens, - [13987] = 1, - ACTIONS(1712), 2, + sym_list_marker_star, + sym__block_quote_continuation, + [13884] = 1, + ACTIONS(1828), 3, sym__block_close, - sym_list_marker_lower_alpha_parens, - [13992] = 1, - ACTIONS(1714), 2, + sym_list_marker_dash, + sym__block_quote_continuation, + [13890] = 1, + ACTIONS(1830), 3, + sym__block_close, + sym_list_marker_star, + sym__block_quote_continuation, + [13896] = 1, + ACTIONS(1832), 3, + sym__block_close, + sym_list_marker_plus, + sym__block_quote_continuation, + [13902] = 3, + ACTIONS(1734), 1, + sym__table_cell, + ACTIONS(1834), 1, + sym__newline, + STATE(995), 1, + sym_table_cell, + [13912] = 1, + ACTIONS(1836), 3, + sym__block_quote_continuation, + sym__footnote_continuation, + sym__footnote_end, + [13918] = 1, + ACTIONS(1838), 3, + sym__block_quote_continuation, + sym__footnote_continuation, + sym__footnote_end, + [13924] = 3, + ACTIONS(1734), 1, + sym__table_cell, + ACTIONS(1840), 1, + sym__newline, + STATE(995), 1, + sym_table_cell, + [13934] = 2, + ACTIONS(1844), 1, + anon_sym_SPACE, + ACTIONS(1842), 2, + anon_sym_x, + anon_sym_X, + [13942] = 1, + ACTIONS(1846), 3, + sym__block_close, + sym__list_marker_task_begin, + sym__block_quote_continuation, + [13948] = 3, + ACTIONS(1848), 1, + anon_sym_DQUOTE, + ACTIONS(1850), 1, + aux_sym_value_token2, + STATE(355), 1, + sym_value, + [13958] = 3, + ACTIONS(872), 1, + sym_list_marker_plus, + ACTIONS(1852), 1, + sym__block_quote_continuation, + STATE(675), 1, + aux_sym__block_quote_prefix_repeat1, + [13968] = 3, + ACTIONS(538), 1, + sym__indented_content_spacer, + ACTIONS(923), 1, + sym__table_caption_begin, + STATE(951), 1, + sym_table_caption, + [13978] = 3, + ACTIONS(1734), 1, + sym__table_cell, + ACTIONS(1855), 1, + sym__newline, + STATE(995), 1, + sym_table_cell, + [13988] = 2, + ACTIONS(1857), 1, + anon_sym_PIPE, + STATE(870), 1, + aux_sym_table_header_repeat1, + [13995] = 1, + ACTIONS(1713), 2, sym__block_close, sym_list_marker_lower_alpha_parens, - [13997] = 1, - ACTIONS(1712), 2, + [14000] = 1, + ACTIONS(1720), 2, sym__block_close, sym_list_marker_upper_alpha_parens, - [14002] = 1, - ACTIONS(1714), 2, + [14005] = 1, + ACTIONS(1713), 2, sym__block_close, sym_list_marker_upper_alpha_parens, - [14007] = 2, - ACTIONS(624), 1, - sym__indented_content_spacer, - ACTIONS(1855), 1, - sym__div_end, - [14014] = 1, - ACTIONS(1714), 2, + [14010] = 1, + ACTIONS(1720), 2, + sym__block_close, + sym_list_marker_lower_roman_parens, + [14015] = 1, + ACTIONS(1713), 2, sym__block_close, sym_list_marker_lower_roman_parens, - [14019] = 1, - ACTIONS(1712), 2, + [14020] = 1, + ACTIONS(1720), 2, sym__block_close, sym_list_marker_upper_roman_parens, - [14024] = 1, - ACTIONS(1714), 2, + [14025] = 1, + ACTIONS(1713), 2, sym__block_close, sym_list_marker_upper_roman_parens, - [14029] = 1, - ACTIONS(1714), 2, + [14030] = 1, + ACTIONS(1859), 2, sym__block_close, - sym_list_marker_decimal_period, - [14034] = 1, - ACTIONS(1857), 2, - sym__eof_or_newline, - sym__close_paragraph, - [14039] = 2, - ACTIONS(1859), 1, - sym_table_cell_alignment, + sym_list_marker_decimal_parens, + [14035] = 2, + ACTIONS(566), 1, + sym__indented_content_spacer, ACTIONS(1861), 1, - sym__newline, - [14046] = 1, - ACTIONS(1863), 2, + sym__code_block_end, + [14042] = 2, + ACTIONS(572), 1, + sym__indented_content_spacer, + ACTIONS(1863), 1, + sym__eof_or_newline, + [14049] = 1, + ACTIONS(1865), 2, sym__eof_or_newline, sym__close_paragraph, - [14051] = 2, - ACTIONS(1865), 1, - anon_sym_PIPE, - STATE(691), 1, - aux_sym_table_separator_repeat1, - [14058] = 2, - ACTIONS(1868), 1, - anon_sym_PIPE, - STATE(804), 1, - aux_sym_table_header_repeat1, - [14065] = 2, - ACTIONS(542), 1, - sym__indented_content_spacer, - ACTIONS(1870), 1, - sym__div_end, - [14072] = 1, - ACTIONS(1872), 2, + [14054] = 2, + ACTIONS(1867), 1, + sym__id, + STATE(321), 1, + sym_class_name, + [14061] = 1, + ACTIONS(1869), 2, sym__block_close, - sym_list_marker_definition, - [14077] = 1, - ACTIONS(1874), 2, + sym_list_marker_decimal_period, + [14066] = 1, + ACTIONS(1871), 2, sym__block_close, - sym_list_marker_upper_roman_period, - [14082] = 1, - ACTIONS(1779), 2, - sym__eof_or_newline, - sym__newline_inline, - [14087] = 1, - ACTIONS(820), 2, + sym_list_marker_decimal_paren, + [14071] = 2, + ACTIONS(1873), 1, + sym_language, + ACTIONS(1875), 1, + sym__newline, + [14078] = 1, + ACTIONS(760), 2, + sym__block_close, + sym__block_quote_continuation, + [14083] = 1, + ACTIONS(764), 2, + sym__block_close, + sym__block_quote_continuation, + [14088] = 1, + ACTIONS(768), 2, + sym__block_close, + sym__block_quote_continuation, + [14093] = 1, + ACTIONS(662), 2, + sym__block_close, + sym__block_quote_continuation, + [14098] = 1, + ACTIONS(772), 2, + sym__block_close, + sym__block_quote_continuation, + [14103] = 1, + ACTIONS(776), 2, sym__block_close, sym__block_quote_continuation, - [14092] = 1, - ACTIONS(1876), 2, - sym__block_close, - sym_list_marker_decimal_paren, - [14097] = 1, - ACTIONS(1878), 2, - sym__block_close, - sym_list_marker_lower_alpha_paren, - [14102] = 1, - ACTIONS(1880), 2, + [14108] = 1, + ACTIONS(780), 2, sym__block_close, - sym_list_marker_upper_alpha_paren, - [14107] = 1, - ACTIONS(824), 2, + sym__block_quote_continuation, + [14113] = 1, + ACTIONS(784), 2, sym__block_close, sym__block_quote_continuation, - [14112] = 2, - ACTIONS(566), 1, - sym__indented_content_spacer, - ACTIONS(1882), 1, - sym__code_block_end, - [14119] = 1, - ACTIONS(1884), 2, + [14118] = 1, + ACTIONS(788), 2, sym__block_close, - sym_list_marker_lower_roman_paren, - [14124] = 1, - ACTIONS(1789), 2, + sym__block_quote_continuation, + [14123] = 1, + ACTIONS(792), 2, sym__block_close, - sym__heading_continuation, - [14129] = 1, - ACTIONS(828), 2, + sym__block_quote_continuation, + [14128] = 1, + ACTIONS(796), 2, sym__block_close, sym__block_quote_continuation, - [14134] = 1, - ACTIONS(1886), 2, + [14133] = 1, + ACTIONS(800), 2, sym__block_close, - sym_list_marker_upper_roman_paren, - [14139] = 2, - ACTIONS(1096), 1, - aux_sym__line_token1, - STATE(600), 1, - sym__line, - [14146] = 1, - ACTIONS(1888), 2, + sym__block_quote_continuation, + [14138] = 1, + ACTIONS(804), 2, sym__block_close, - sym_list_marker_decimal_parens, - [14151] = 1, - ACTIONS(1890), 2, + sym__block_quote_continuation, + [14143] = 1, + ACTIONS(808), 2, sym__block_close, - sym_list_marker_lower_alpha_parens, - [14156] = 1, - ACTIONS(1892), 2, + sym__block_quote_continuation, + [14148] = 1, + ACTIONS(812), 2, sym__block_close, - sym_list_marker_upper_alpha_parens, - [14161] = 1, - ACTIONS(1894), 2, + sym__block_quote_continuation, + [14153] = 1, + ACTIONS(1877), 2, sym__footnote_mark_begin, sym__in_fallback, - [14166] = 1, - ACTIONS(462), 2, - sym_list_marker_star, - sym__block_quote_continuation, - [14171] = 2, - ACTIONS(1896), 1, - sym__id, - STATE(327), 1, - sym_class_name, - [14178] = 1, - ACTIONS(1898), 2, - sym__block_close, - sym_list_marker_decimal_period, - [14183] = 1, - ACTIONS(864), 2, + [14158] = 1, + ACTIONS(1879), 2, sym__block_close, + sym_list_marker_decimal_parens, + [14163] = 1, + ACTIONS(464), 2, + sym_list_marker_dash, sym__block_quote_continuation, - [14188] = 2, - ACTIONS(1859), 1, + [14168] = 2, + ACTIONS(1881), 1, sym_table_cell_alignment, - ACTIONS(1900), 1, + ACTIONS(1883), 1, sym__newline, - [14195] = 2, - ACTIONS(572), 1, - sym__indented_content_spacer, - ACTIONS(1902), 1, - sym__code_block_end, - [14202] = 1, - ACTIONS(1904), 2, + [14175] = 1, + ACTIONS(1713), 2, sym__block_close, - sym_list_marker_lower_roman_parens, - [14207] = 1, - ACTIONS(1906), 2, + sym_list_marker_lower_alpha_period, + [14180] = 1, + ACTIONS(1885), 2, sym__block_close, - sym_list_marker_decimal_paren, - [14212] = 2, - ACTIONS(578), 1, - sym__indented_content_spacer, - ACTIONS(1908), 1, - sym__eof_or_newline, - [14219] = 2, - ACTIONS(1859), 1, - sym_table_cell_alignment, - ACTIONS(1910), 1, - sym__newline, - [14226] = 1, - ACTIONS(462), 2, - sym_list_marker_dash, - sym__block_quote_continuation, - [14231] = 1, - ACTIONS(1912), 2, + sym_list_marker_lower_alpha_period, + [14185] = 1, + ACTIONS(1887), 2, sym__eof_or_newline, sym__close_paragraph, - [14236] = 1, - ACTIONS(1914), 2, + [14190] = 1, + ACTIONS(1889), 2, sym__eof_or_newline, sym__newline_inline, - [14241] = 2, - ACTIONS(1916), 1, - sym__eof_or_newline, - STATE(967), 1, - sym__one_or_two_newlines, - [14248] = 1, - ACTIONS(1843), 2, - sym_frontmatter_marker, - aux_sym__line_token1, - [14253] = 1, - ACTIONS(1918), 2, - sym__eof_or_newline, - sym__close_paragraph, - [14258] = 2, - ACTIONS(1920), 1, - sym_language, - ACTIONS(1922), 1, - sym__newline, - [14265] = 1, - ACTIONS(706), 2, + [14195] = 1, + ACTIONS(1891), 2, sym__block_close, - sym__block_quote_continuation, - [14270] = 1, - ACTIONS(814), 2, + sym_list_marker_lower_alpha_paren, + [14200] = 1, + ACTIONS(1385), 2, sym__block_close, sym__block_quote_continuation, - [14275] = 1, - ACTIONS(732), 2, + [14205] = 2, + ACTIONS(1881), 1, + sym_table_cell_alignment, + ACTIONS(1893), 1, + sym__newline, + [14212] = 2, + ACTIONS(1895), 1, + anon_sym_PIPE, + STATE(842), 1, + aux_sym_table_separator_repeat1, + [14219] = 1, + ACTIONS(1897), 2, sym__block_close, - sym__block_quote_continuation, - [14280] = 2, - ACTIONS(630), 1, - sym__indented_content_spacer, - ACTIONS(1924), 1, - sym__div_end, - [14287] = 1, - ACTIONS(830), 2, + sym_list_marker_lower_alpha_parens, + [14224] = 1, + ACTIONS(1758), 2, + sym_frontmatter_marker, + aux_sym__line_token1, + [14229] = 2, + ACTIONS(1899), 1, + sym__eof_or_newline, + STATE(1011), 1, + sym__one_or_two_newlines, + [14236] = 1, + ACTIONS(754), 2, sym__block_close, sym__block_quote_continuation, - [14292] = 2, - ACTIONS(596), 1, - sym__indented_content_spacer, - ACTIONS(1926), 1, + [14241] = 1, + ACTIONS(1901), 2, sym__eof_or_newline, - [14299] = 2, - ACTIONS(636), 1, - sym__indented_content_spacer, - ACTIONS(1928), 1, - sym__code_block_end, - [14306] = 2, - ACTIONS(642), 1, - sym__indented_content_spacer, - ACTIONS(1930), 1, - sym__code_block_end, - [14313] = 2, - ACTIONS(608), 1, - sym__indented_content_spacer, - ACTIONS(1932), 1, - sym__code_block_end, - [14320] = 1, - ACTIONS(1934), 2, - sym__footnote_mark_begin, - sym__in_fallback, - [14325] = 1, - ACTIONS(1083), 2, + sym__close_paragraph, + [14246] = 1, + ACTIONS(1903), 2, + sym__block_close, + sym_list_marker_upper_alpha_period, + [14251] = 2, + ACTIONS(1905), 1, + anon_sym_PIPE, + STATE(844), 1, + aux_sym_table_header_repeat1, + [14258] = 1, + ACTIONS(1715), 2, sym__block_close, sym__heading_continuation, - [14330] = 1, - ACTIONS(840), 2, + [14263] = 1, + ACTIONS(816), 2, + sym__block_close, + sym__block_quote_continuation, + [14268] = 1, + ACTIONS(820), 2, sym__block_close, sym__block_quote_continuation, - [14335] = 1, - ACTIONS(736), 2, + [14273] = 1, + ACTIONS(824), 2, sym__block_close, sym__block_quote_continuation, - [14340] = 1, - ACTIONS(844), 2, + [14278] = 1, + ACTIONS(828), 2, sym__block_close, sym__block_quote_continuation, - [14345] = 1, - ACTIONS(740), 2, + [14283] = 1, + ACTIONS(734), 2, sym__block_close, sym__block_quote_continuation, - [14350] = 1, - ACTIONS(744), 2, + [14288] = 2, + ACTIONS(630), 1, + sym__indented_content_spacer, + ACTIONS(1907), 1, + sym__div_end, + [14295] = 1, + ACTIONS(538), 2, sym__block_close, sym__block_quote_continuation, - [14355] = 1, - ACTIONS(1936), 2, + [14300] = 1, + ACTIONS(1909), 2, sym__footnote_mark_begin, sym__in_fallback, - [14360] = 1, - ACTIONS(1938), 2, - sym__block_close, - sym_list_marker_decimal_parens, - [14365] = 1, - ACTIONS(848), 2, + [14305] = 1, + ACTIONS(748), 2, sym__block_close, sym__block_quote_continuation, - [14370] = 1, - ACTIONS(1940), 2, + [14310] = 1, + ACTIONS(1911), 2, sym__block_close, - sym_list_marker_lower_alpha_period, - [14375] = 1, - ACTIONS(1942), 2, + sym_list_marker_decimal_paren, + [14315] = 1, + ACTIONS(752), 2, sym__block_close, - sym_list_marker_lower_alpha_paren, - [14380] = 1, - ACTIONS(852), 2, + sym__block_quote_continuation, + [14320] = 2, + ACTIONS(624), 1, + sym__indented_content_spacer, + ACTIONS(1913), 1, + sym__div_end, + [14327] = 1, + ACTIONS(832), 2, sym__block_close, sym__block_quote_continuation, - [14385] = 2, - ACTIONS(1859), 1, - sym_table_cell_alignment, - ACTIONS(1944), 1, - sym__newline, - [14392] = 1, - ACTIONS(856), 2, + [14332] = 1, + ACTIONS(836), 2, sym__block_close, sym__block_quote_continuation, - [14397] = 1, - ACTIONS(1946), 2, + [14337] = 1, + ACTIONS(1915), 2, sym__block_close, sym_list_marker_lower_alpha_parens, - [14402] = 1, - ACTIONS(670), 2, - sym__block_close, - sym__block_quote_continuation, - [14407] = 1, - ACTIONS(674), 2, + [14342] = 1, + ACTIONS(840), 2, sym__block_close, sym__block_quote_continuation, - [14412] = 2, - ACTIONS(1948), 1, + [14347] = 1, + ACTIONS(1917), 2, + sym__footnote_mark_begin, + sym__in_fallback, + [14352] = 2, + ACTIONS(1919), 1, sym__id, - STATE(934), 1, + STATE(942), 1, sym_reference_label, - [14419] = 1, - ACTIONS(1950), 2, + [14359] = 1, + ACTIONS(1921), 2, sym__block_close, - sym_list_marker_upper_roman_parens, - [14424] = 2, - ACTIONS(1859), 1, + sym_list_marker_upper_alpha_paren, + [14364] = 2, + ACTIONS(1100), 1, + aux_sym__line_token1, + STATE(621), 1, + sym__line, + [14371] = 2, + ACTIONS(1881), 1, sym_table_cell_alignment, - ACTIONS(1952), 1, + ACTIONS(1923), 1, sym__newline, - [14431] = 1, - ACTIONS(678), 2, + [14378] = 1, + ACTIONS(1925), 2, sym__block_close, - sym__block_quote_continuation, - [14436] = 1, - ACTIONS(682), 2, + sym_list_marker_upper_alpha_parens, + [14383] = 1, + ACTIONS(1927), 2, sym__block_close, - sym__block_quote_continuation, - [14441] = 1, - ACTIONS(1954), 2, + sym_list_marker_upper_alpha_parens, + [14388] = 1, + ACTIONS(1929), 2, sym__block_close, - sym_list_marker_upper_alpha_period, - [14446] = 2, - ACTIONS(1956), 1, - sym__eof_or_newline, - STATE(773), 1, - sym__one_or_two_newlines, - [14453] = 1, - ACTIONS(1958), 2, + sym_list_marker_lower_roman_parens, + [14393] = 1, + ACTIONS(1931), 2, sym__block_close, - sym_list_marker_definition, - [14458] = 1, - ACTIONS(1960), 2, + sym_list_marker_lower_roman_period, + [14398] = 1, + ACTIONS(1933), 2, sym__block_close, - sym_list_marker_upper_alpha_paren, - [14463] = 1, - ACTIONS(1962), 2, + sym_list_marker_upper_roman_parens, + [14403] = 1, + ACTIONS(1935), 2, sym__block_close, - sym_list_marker_upper_alpha_parens, - [14468] = 1, - ACTIONS(1964), 2, - sym__eof_or_newline, - sym__close_paragraph, - [14473] = 2, - ACTIONS(1701), 1, + sym_list_marker_lower_roman_paren, + [14408] = 1, + ACTIONS(1937), 2, + sym__block_close, + sym_list_marker_definition, + [14413] = 2, + ACTIONS(1734), 1, sym__table_cell, - STATE(993), 1, + STATE(727), 1, sym_table_cell, - [14480] = 1, - ACTIONS(1966), 2, - sym__block_close, - sym_list_marker_lower_roman_period, - [14485] = 1, - ACTIONS(1968), 2, + [14420] = 2, + ACTIONS(1881), 1, + sym_table_cell_alignment, + ACTIONS(1939), 1, + sym__newline, + [14427] = 1, + ACTIONS(1941), 2, + sym__eof_or_newline, + sym__close_paragraph, + [14432] = 1, + ACTIONS(1943), 2, sym__block_close, - sym_list_marker_lower_roman_paren, - [14490] = 1, - ACTIONS(686), 2, + sym_list_marker_lower_roman_parens, + [14437] = 1, + ACTIONS(1945), 2, sym__block_close, + sym_list_marker_upper_roman_period, + [14442] = 2, + ACTIONS(1947), 1, + sym__eof_or_newline, + STATE(811), 1, + sym__one_or_two_newlines, + [14449] = 2, + ACTIONS(1734), 1, + sym__table_cell, + STATE(995), 1, + sym_table_cell, + [14456] = 1, + ACTIONS(464), 2, + sym_list_marker_star, sym__block_quote_continuation, - [14495] = 1, - ACTIONS(690), 2, + [14461] = 1, + ACTIONS(1949), 2, + sym__eof_or_newline, + sym__close_paragraph, + [14466] = 1, + ACTIONS(1951), 2, sym__block_close, - sym__block_quote_continuation, - [14500] = 1, - ACTIONS(748), 2, + sym_list_marker_upper_roman_paren, + [14471] = 1, + ACTIONS(1953), 2, + sym__eof_or_newline, + sym__close_paragraph, + [14476] = 1, + ACTIONS(728), 2, sym__block_close, sym__block_quote_continuation, - [14505] = 1, - ACTIONS(694), 2, + [14481] = 1, + ACTIONS(1720), 2, sym__block_close, - sym__block_quote_continuation, - [14510] = 1, - ACTIONS(1712), 2, + sym_list_marker_decimal_period, + [14486] = 1, + ACTIONS(1955), 2, sym__block_close, - sym_list_marker_lower_alpha_period, - [14515] = 2, - ACTIONS(1701), 1, - sym__table_cell, - STATE(692), 1, - sym_table_cell, - [14522] = 1, - ACTIONS(698), 2, + sym_list_marker_lower_alpha_paren, + [14491] = 1, + ACTIONS(1086), 2, sym__block_close, - sym__block_quote_continuation, - [14527] = 1, - ACTIONS(702), 2, + sym__heading_continuation, + [14496] = 1, + ACTIONS(842), 2, sym__block_close, sym__block_quote_continuation, - [14532] = 1, - ACTIONS(710), 2, + [14501] = 1, + ACTIONS(1713), 2, sym__block_close, - sym__block_quote_continuation, - [14537] = 1, - ACTIONS(462), 2, - sym_list_marker_plus, - sym__block_quote_continuation, - [14542] = 1, - ACTIONS(752), 2, + sym_list_marker_decimal_period, + [14506] = 1, + ACTIONS(1708), 2, + sym__eof_or_newline, + sym__newline_inline, + [14511] = 1, + ACTIONS(846), 2, sym__block_close, sym__block_quote_continuation, - [14547] = 1, - ACTIONS(756), 2, + [14516] = 1, + ACTIONS(1957), 2, sym__block_close, - sym__block_quote_continuation, - [14552] = 1, - ACTIONS(760), 2, + sym_list_marker_lower_roman_period, + [14521] = 1, + ACTIONS(1959), 2, sym__block_close, + sym_list_marker_upper_alpha_paren, + [14526] = 1, + ACTIONS(464), 2, + sym__list_marker_task_begin, sym__block_quote_continuation, - [14557] = 1, - ACTIONS(1714), 2, + [14531] = 1, + ACTIONS(1961), 2, sym__block_close, - sym_list_marker_lower_alpha_period, - [14562] = 1, - ACTIONS(1970), 2, - sym__block_close, - sym_list_marker_definition, - [14567] = 2, - ACTIONS(1896), 1, - sym__id, - STATE(940), 1, - sym_class_name, - [14574] = 1, - ACTIONS(1972), 2, + sym_list_marker_lower_roman_paren, + [14536] = 2, + ACTIONS(588), 1, + sym__indented_content_spacer, + ACTIONS(1963), 1, + sym__code_block_end, + [14543] = 1, + ACTIONS(1720), 2, sym__block_close, - sym_list_marker_lower_roman_parens, - [14579] = 1, - ACTIONS(764), 2, + sym_list_marker_upper_alpha_period, + [14548] = 1, + ACTIONS(852), 2, sym__block_close, sym__block_quote_continuation, - [14584] = 1, - ACTIONS(768), 2, + [14553] = 1, + ACTIONS(1713), 2, sym__block_close, - sym__block_quote_continuation, - [14589] = 2, - ACTIONS(1859), 1, - sym_table_cell_alignment, - ACTIONS(1974), 1, - sym__newline, - [14596] = 1, - ACTIONS(772), 2, + sym_list_marker_upper_alpha_period, + [14558] = 1, + ACTIONS(1965), 2, sym__block_close, - sym__block_quote_continuation, - [14601] = 1, - ACTIONS(1976), 2, + sym_list_marker_upper_roman_parens, + [14563] = 1, + ACTIONS(1967), 2, + sym__block_close, + sym_list_marker_upper_roman_paren, + [14568] = 1, + ACTIONS(1969), 2, sym__block_close, sym_list_marker_upper_roman_period, - [14606] = 1, - ACTIONS(1978), 2, - sym__eof_or_newline, - sym__close_paragraph, - [14611] = 1, - ACTIONS(1980), 2, + [14573] = 2, + ACTIONS(1881), 1, + sym_table_cell_alignment, + ACTIONS(1971), 1, + sym__newline, + [14580] = 1, + ACTIONS(1720), 2, sym__block_close, - sym_list_marker_upper_roman_paren, - [14616] = 1, - ACTIONS(1714), 2, + sym_list_marker_lower_roman_period, + [14585] = 1, + ACTIONS(1713), 2, sym__block_close, - sym_list_marker_decimal_parens, - [14621] = 2, - ACTIONS(1859), 1, + sym_list_marker_lower_roman_period, + [14590] = 2, + ACTIONS(1881), 1, sym_table_cell_alignment, - ACTIONS(1982), 1, + ACTIONS(1973), 1, sym__newline, - [14628] = 1, - ACTIONS(780), 2, + [14597] = 2, + ACTIONS(1975), 1, + anon_sym_PIPE, + STATE(791), 1, + aux_sym_table_header_repeat1, + [14604] = 1, + ACTIONS(1978), 2, sym__block_close, - sym__block_quote_continuation, - [14633] = 2, - ACTIONS(1984), 1, + sym_list_marker_definition, + [14609] = 2, + ACTIONS(1980), 1, sym__eof_or_newline, - STATE(183), 1, + STATE(186), 1, sym__one_or_two_newlines, - [14640] = 2, - ACTIONS(1986), 1, - anon_sym_PIPE, - STATE(836), 1, - aux_sym_table_header_repeat1, - [14647] = 1, - ACTIONS(1988), 2, + [14616] = 1, + ACTIONS(1982), 2, sym__block_close, - sym_list_marker_upper_roman_parens, - [14652] = 1, - ACTIONS(1990), 2, + sym_list_marker_upper_alpha_period, + [14621] = 1, + ACTIONS(1713), 2, + sym__block_close, + sym_list_marker_upper_roman_period, + [14626] = 1, + ACTIONS(1984), 2, sym__eof_or_newline, sym__close_paragraph, - [14657] = 2, - ACTIONS(1859), 1, + [14631] = 1, + ACTIONS(1986), 2, + sym__eof_or_newline, + sym__close_paragraph, + [14636] = 1, + ACTIONS(856), 2, + sym__block_close, + sym__block_quote_continuation, + [14641] = 1, + ACTIONS(464), 2, + sym__block_quote_continuation, + aux_sym__line_token1, + [14646] = 2, + ACTIONS(1881), 1, sym_table_cell_alignment, - ACTIONS(1992), 1, + ACTIONS(1988), 1, sym__newline, - [14664] = 2, - ACTIONS(1994), 1, - anon_sym_PIPE, - STATE(691), 1, - aux_sym_table_separator_repeat1, - [14671] = 1, - ACTIONS(784), 2, + [14653] = 1, + ACTIONS(666), 2, + sym__block_close, + sym__block_quote_continuation, + [14658] = 1, + ACTIONS(670), 2, + sym__block_close, + sym__block_quote_continuation, + [14663] = 1, + ACTIONS(674), 2, + sym__block_close, + sym__block_quote_continuation, + [14668] = 1, + ACTIONS(682), 2, + sym__block_close, + sym__block_quote_continuation, + [14673] = 1, + ACTIONS(686), 2, + sym__block_close, + sym__block_quote_continuation, + [14678] = 1, + ACTIONS(690), 2, sym__block_close, sym__block_quote_continuation, - [14676] = 2, - ACTIONS(1996), 1, - anon_sym_PIPE, - STATE(836), 1, - aux_sym_table_header_repeat1, [14683] = 1, - ACTIONS(788), 2, + ACTIONS(694), 2, sym__block_close, sym__block_quote_continuation, [14688] = 1, - ACTIONS(792), 2, + ACTIONS(698), 2, sym__block_close, sym__block_quote_continuation, [14693] = 1, - ACTIONS(796), 2, + ACTIONS(702), 2, sym__block_close, sym__block_quote_continuation, [14698] = 1, - ACTIONS(800), 2, + ACTIONS(1720), 2, sym__block_close, - sym__block_quote_continuation, + sym_list_marker_decimal_paren, [14703] = 1, - ACTIONS(664), 2, + ACTIONS(706), 2, sym__block_close, sym__block_quote_continuation, [14708] = 1, - ACTIONS(804), 2, + ACTIONS(710), 2, sym__block_close, sym__block_quote_continuation, [14713] = 1, - ACTIONS(808), 2, + ACTIONS(714), 2, sym__block_close, sym__block_quote_continuation, [14718] = 1, - ACTIONS(812), 2, - sym__block_close, - sym__block_quote_continuation, - [14723] = 1, - ACTIONS(462), 2, - sym__list_marker_task_begin, - sym__block_quote_continuation, - [14728] = 2, - ACTIONS(1701), 1, - sym__table_cell, - STATE(825), 1, - sym_table_cell, - [14735] = 1, - ACTIONS(1998), 2, + ACTIONS(1990), 2, sym__eof_or_newline, sym__close_paragraph, - [14740] = 1, - ACTIONS(1712), 2, - sym__block_close, - sym_list_marker_upper_alpha_period, - [14745] = 1, - ACTIONS(1714), 2, - sym__block_close, - sym_list_marker_upper_alpha_period, - [14750] = 1, - ACTIONS(1712), 2, - sym__block_close, - sym_list_marker_decimal_period, - [14755] = 1, - ACTIONS(1378), 2, + [14723] = 1, + ACTIONS(1713), 2, sym__block_close, + sym_list_marker_decimal_paren, + [14728] = 1, + ACTIONS(464), 2, + sym__list_item_continuation, sym__block_quote_continuation, - [14760] = 2, - ACTIONS(1859), 1, + [14733] = 2, + ACTIONS(1881), 1, sym_table_cell_alignment, - ACTIONS(2000), 1, + ACTIONS(1992), 1, sym__newline, - [14767] = 1, - ACTIONS(1712), 2, + [14740] = 1, + ACTIONS(1720), 2, sym__block_close, - sym_list_marker_lower_roman_period, - [14772] = 1, - ACTIONS(1714), 2, + sym_list_marker_lower_alpha_period, + [14745] = 2, + ACTIONS(1877), 1, + sym__in_fallback, + ACTIONS(1994), 1, + sym__footnote_mark_begin, + [14752] = 2, + ACTIONS(27), 1, + sym__list_marker_task_begin, + STATE(29), 1, + sym_list_marker_task, + [14759] = 1, + ACTIONS(1997), 2, sym__block_close, - sym_list_marker_lower_roman_period, - [14777] = 1, - ACTIONS(2002), 2, - sym__eof_or_newline, - sym__close_paragraph, - [14782] = 1, - ACTIONS(2004), 2, - sym__eof_or_newline, - sym__close_paragraph, - [14787] = 2, - ACTIONS(2006), 1, - anon_sym_PIPE, - STATE(798), 1, - aux_sym_table_header_repeat1, - [14794] = 2, - ACTIONS(1859), 1, + sym_list_marker_definition, + [14764] = 1, + ACTIONS(1720), 2, + sym__block_close, + sym_list_marker_lower_alpha_paren, + [14769] = 2, + ACTIONS(1881), 1, sym_table_cell_alignment, - ACTIONS(2008), 1, + ACTIONS(1999), 1, sym__newline, - [14801] = 1, - ACTIONS(1712), 2, + [14776] = 1, + ACTIONS(1713), 2, sym__block_close, - sym_list_marker_upper_roman_period, - [14806] = 2, - ACTIONS(2010), 1, + sym_list_marker_lower_alpha_paren, + [14781] = 2, + ACTIONS(2001), 1, sym__eof_or_newline, - STATE(675), 1, + STATE(120), 1, sym__one_or_two_newlines, - [14813] = 1, - ACTIONS(1714), 2, - sym__block_close, - sym_list_marker_upper_roman_period, - [14818] = 2, - ACTIONS(2012), 1, + [14788] = 2, + ACTIONS(2003), 1, sym__eof_or_newline, - STATE(118), 1, + STATE(600), 1, sym__one_or_two_newlines, - [14825] = 1, - ACTIONS(462), 2, - sym__block_quote_continuation, - aux_sym__line_token1, - [14830] = 2, - ACTIONS(27), 1, - sym__list_marker_task_begin, - STATE(28), 1, - sym_list_marker_task, - [14837] = 2, - ACTIONS(1894), 1, - sym__in_fallback, - ACTIONS(2014), 1, - sym__footnote_mark_begin, - [14844] = 1, - ACTIONS(2017), 2, - sym__block_close, - sym_list_marker_decimal_period, - [14849] = 2, - ACTIONS(2019), 1, + [14795] = 2, + ACTIONS(2005), 1, sym__whitespace1, - ACTIONS(2021), 1, + ACTIONS(2007), 1, sym__newline, - [14856] = 2, - ACTIONS(2023), 1, - anon_sym_PIPE, - STATE(836), 1, - aux_sym_table_header_repeat1, - [14863] = 1, - ACTIONS(1712), 2, - sym__block_close, - sym_list_marker_decimal_paren, - [14868] = 1, - ACTIONS(1714), 2, + [14802] = 1, + ACTIONS(718), 2, sym__block_close, - sym_list_marker_decimal_paren, - [14873] = 1, - ACTIONS(462), 2, - sym__list_item_continuation, sym__block_quote_continuation, - [14878] = 1, - ACTIONS(2026), 2, - sym__block_close, - sym_list_marker_lower_alpha_period, - [14883] = 1, - ACTIONS(2028), 2, - sym__block_close, - sym_list_marker_upper_alpha_period, - [14888] = 1, - ACTIONS(1712), 2, - sym__block_close, - sym_list_marker_lower_alpha_paren, - [14893] = 1, - ACTIONS(1714), 2, - sym__block_close, - sym_list_marker_lower_alpha_paren, - [14898] = 2, - ACTIONS(2030), 1, + [14807] = 1, + ACTIONS(464), 2, + sym_list_marker_plus, + sym__block_quote_continuation, + [14812] = 2, + ACTIONS(1867), 1, + sym__id, + STATE(946), 1, + sym_class_name, + [14819] = 2, + ACTIONS(2009), 1, anon_sym_PIPE, - STATE(802), 1, + STATE(831), 1, aux_sym_table_separator_repeat1, - [14905] = 1, - ACTIONS(2032), 2, - sym__block_close, - sym_list_marker_lower_roman_period, - [14910] = 1, - ACTIONS(538), 2, - sym__block_close, - sym__block_quote_continuation, - [14915] = 1, - ACTIONS(1712), 2, + [14826] = 2, + ACTIONS(636), 1, + sym__indented_content_spacer, + ACTIONS(2012), 1, + sym__code_block_end, + [14833] = 2, + ACTIONS(2014), 1, + anon_sym_PIPE, + STATE(840), 1, + aux_sym_table_header_repeat1, + [14840] = 2, + ACTIONS(578), 1, + sym__indented_content_spacer, + ACTIONS(2016), 1, + sym__div_end, + [14847] = 1, + ACTIONS(1720), 2, sym__block_close, sym_list_marker_upper_alpha_paren, - [14920] = 1, - ACTIONS(1714), 2, + [14852] = 1, + ACTIONS(1713), 2, sym__block_close, sym_list_marker_upper_alpha_paren, - [14925] = 1, - ACTIONS(462), 2, + [14857] = 1, + ACTIONS(464), 2, sym__block_quote_continuation, sym__footnote_continuation, - [14930] = 2, - ACTIONS(546), 1, + [14862] = 2, + ACTIONS(542), 1, sym__indented_content_spacer, - ACTIONS(2034), 1, + ACTIONS(2018), 1, sym__div_end, - [14937] = 2, - ACTIONS(588), 1, + [14869] = 2, + ACTIONS(560), 1, sym__indented_content_spacer, - ACTIONS(2036), 1, + ACTIONS(2020), 1, sym__code_block_end, - [14944] = 1, - ACTIONS(1712), 2, + [14876] = 2, + ACTIONS(2022), 1, + anon_sym_PIPE, + STATE(791), 1, + aux_sym_table_header_repeat1, + [14883] = 2, + ACTIONS(1881), 1, + sym_table_cell_alignment, + ACTIONS(2024), 1, + sym__newline, + [14890] = 2, + ACTIONS(2026), 1, + anon_sym_PIPE, + STATE(831), 1, + aux_sym_table_separator_repeat1, + [14897] = 1, + ACTIONS(1720), 2, sym__block_close, sym_list_marker_lower_roman_paren, - [14949] = 1, - ACTIONS(1714), 2, + [14902] = 2, + ACTIONS(2028), 1, + anon_sym_PIPE, + STATE(791), 1, + aux_sym_table_header_repeat1, + [14909] = 1, + ACTIONS(1713), 2, sym__block_close, sym_list_marker_lower_roman_paren, - [14954] = 2, - ACTIONS(2038), 1, + [14914] = 1, + ACTIONS(1720), 2, + sym__block_close, + sym_list_marker_upper_roman_paren, + [14919] = 2, + ACTIONS(642), 1, + sym__indented_content_spacer, + ACTIONS(2030), 1, + sym__code_block_end, + [14926] = 2, + ACTIONS(1734), 1, + sym__table_cell, + STATE(833), 1, + sym_table_cell, + [14933] = 1, + ACTIONS(2032), 2, + sym__eof_or_newline, + sym__close_paragraph, + [14938] = 1, + ACTIONS(1713), 2, + sym__block_close, + sym_list_marker_upper_roman_paren, + [14943] = 2, + ACTIONS(2034), 1, anon_sym_PIPE, - STATE(857), 1, + STATE(854), 1, aux_sym_table_header_repeat1, - [14961] = 2, - ACTIONS(2040), 1, + [14950] = 2, + ACTIONS(2036), 1, anon_sym_PIPE, - STATE(858), 1, + STATE(855), 1, aux_sym_table_separator_repeat1, - [14968] = 2, - ACTIONS(2042), 1, + [14957] = 2, + ACTIONS(2038), 1, anon_sym_PIPE, - STATE(859), 1, + STATE(856), 1, aux_sym_table_header_repeat1, - [14975] = 2, - ACTIONS(2044), 1, + [14964] = 2, + ACTIONS(2040), 1, anon_sym_PIPE, - STATE(836), 1, + STATE(791), 1, aux_sym_table_header_repeat1, - [14982] = 2, - ACTIONS(2046), 1, + [14971] = 2, + ACTIONS(2042), 1, anon_sym_PIPE, - STATE(691), 1, + STATE(831), 1, aux_sym_table_separator_repeat1, - [14989] = 2, - ACTIONS(2048), 1, + [14978] = 2, + ACTIONS(2044), 1, anon_sym_PIPE, - STATE(836), 1, + STATE(791), 1, aux_sym_table_header_repeat1, - [14996] = 1, - ACTIONS(1712), 2, + [14985] = 1, + ACTIONS(2046), 2, sym__block_close, - sym_list_marker_upper_roman_paren, - [15001] = 2, - ACTIONS(2050), 1, + sym_list_marker_decimal_period, + [14990] = 2, + ACTIONS(2048), 1, anon_sym_PIPE, - STATE(864), 1, + STATE(861), 1, aux_sym_table_header_repeat1, - [15008] = 2, - ACTIONS(2052), 1, + [14997] = 2, + ACTIONS(2050), 1, anon_sym_PIPE, - STATE(865), 1, + STATE(862), 1, aux_sym_table_separator_repeat1, - [15015] = 2, - ACTIONS(2054), 1, + [15004] = 2, + ACTIONS(2052), 1, anon_sym_PIPE, - STATE(866), 1, + STATE(863), 1, aux_sym_table_header_repeat1, - [15022] = 2, - ACTIONS(2056), 1, + [15011] = 2, + ACTIONS(2054), 1, anon_sym_PIPE, - STATE(836), 1, + STATE(791), 1, aux_sym_table_header_repeat1, - [15029] = 2, - ACTIONS(2058), 1, + [15018] = 2, + ACTIONS(2056), 1, anon_sym_PIPE, - STATE(691), 1, + STATE(831), 1, aux_sym_table_separator_repeat1, - [15036] = 2, - ACTIONS(2060), 1, + [15025] = 2, + ACTIONS(2058), 1, anon_sym_PIPE, - STATE(836), 1, + STATE(791), 1, aux_sym_table_header_repeat1, - [15043] = 1, - ACTIONS(1714), 2, + [15032] = 1, + ACTIONS(1720), 2, sym__block_close, - sym_list_marker_upper_roman_paren, - [15048] = 2, - ACTIONS(2062), 1, + sym_list_marker_decimal_parens, + [15037] = 2, + ACTIONS(2060), 1, anon_sym_PIPE, - STATE(871), 1, + STATE(868), 1, aux_sym_table_header_repeat1, - [15055] = 2, - ACTIONS(2064), 1, + [15044] = 2, + ACTIONS(2062), 1, anon_sym_PIPE, - STATE(872), 1, + STATE(869), 1, aux_sym_table_separator_repeat1, - [15062] = 2, + [15051] = 2, + ACTIONS(596), 1, + sym__indented_content_spacer, + ACTIONS(2064), 1, + sym__eof_or_newline, + [15058] = 2, ACTIONS(2066), 1, anon_sym_PIPE, - STATE(873), 1, + STATE(791), 1, aux_sym_table_header_repeat1, - [15069] = 2, + [15065] = 2, ACTIONS(2068), 1, anon_sym_PIPE, - STATE(836), 1, - aux_sym_table_header_repeat1, - [15076] = 2, - ACTIONS(2070), 1, - anon_sym_PIPE, - STATE(691), 1, + STATE(831), 1, aux_sym_table_separator_repeat1, - [15083] = 2, - ACTIONS(2072), 1, + [15072] = 2, + ACTIONS(2070), 1, anon_sym_PIPE, - STATE(836), 1, + STATE(791), 1, aux_sym_table_header_repeat1, - [15090] = 1, - ACTIONS(1712), 2, - sym__block_close, - sym_list_marker_decimal_parens, - [15095] = 2, + [15079] = 2, + ACTIONS(608), 1, + sym__indented_content_spacer, + ACTIONS(2072), 1, + sym__code_block_end, + [15086] = 2, ACTIONS(2074), 1, anon_sym_PIPE, - STATE(878), 1, + STATE(875), 1, aux_sym_table_header_repeat1, - [15102] = 2, + [15093] = 2, ACTIONS(2076), 1, anon_sym_PIPE, - STATE(879), 1, + STATE(876), 1, aux_sym_table_separator_repeat1, - [15109] = 2, + [15100] = 2, ACTIONS(2078), 1, anon_sym_PIPE, - STATE(880), 1, + STATE(877), 1, aux_sym_table_header_repeat1, - [15116] = 2, + [15107] = 2, ACTIONS(2080), 1, anon_sym_PIPE, - STATE(836), 1, + STATE(791), 1, aux_sym_table_header_repeat1, - [15123] = 2, + [15114] = 2, ACTIONS(2082), 1, anon_sym_PIPE, - STATE(691), 1, + STATE(831), 1, aux_sym_table_separator_repeat1, - [15130] = 2, + [15121] = 2, ACTIONS(2084), 1, anon_sym_PIPE, - STATE(836), 1, + STATE(791), 1, aux_sym_table_header_repeat1, - [15137] = 2, - ACTIONS(1701), 1, + [15128] = 2, + ACTIONS(1734), 1, sym__table_cell, - STATE(854), 1, + STATE(851), 1, sym_table_cell, - [15144] = 2, - ACTIONS(1701), 1, + [15135] = 2, + ACTIONS(1734), 1, sym__table_cell, - STATE(856), 1, + STATE(853), 1, sym_table_cell, - [15151] = 2, - ACTIONS(1701), 1, + [15142] = 2, + ACTIONS(1734), 1, sym__table_cell, - STATE(861), 1, + STATE(858), 1, sym_table_cell, - [15158] = 2, - ACTIONS(1701), 1, + [15149] = 2, + ACTIONS(1734), 1, sym__table_cell, - STATE(863), 1, + STATE(860), 1, sym_table_cell, - [15165] = 2, - ACTIONS(1701), 1, + [15156] = 2, + ACTIONS(1734), 1, sym__table_cell, - STATE(868), 1, + STATE(865), 1, sym_table_cell, - [15172] = 2, - ACTIONS(1701), 1, + [15163] = 2, + ACTIONS(1734), 1, sym__table_cell, - STATE(870), 1, + STATE(678), 1, sym_table_cell, - [15179] = 2, - ACTIONS(1701), 1, + [15170] = 2, + ACTIONS(1734), 1, sym__table_cell, - STATE(875), 1, + STATE(872), 1, sym_table_cell, - [15186] = 2, - ACTIONS(1701), 1, + [15177] = 2, + ACTIONS(1734), 1, sym__table_cell, - STATE(877), 1, + STATE(874), 1, sym_table_cell, - [15193] = 2, - ACTIONS(1948), 1, + [15184] = 2, + ACTIONS(1919), 1, sym__id, STATE(1107), 1, sym_reference_label, - [15200] = 2, - ACTIONS(1948), 1, + [15191] = 2, + ACTIONS(1919), 1, sym__id, STATE(1113), 1, sym_reference_label, - [15207] = 2, - ACTIONS(1948), 1, + [15198] = 2, + ACTIONS(1919), 1, sym__id, STATE(1119), 1, sym_reference_label, - [15214] = 2, - ACTIONS(1948), 1, + [15205] = 2, + ACTIONS(1919), 1, sym__id, STATE(1125), 1, sym_reference_label, - [15221] = 1, - ACTIONS(776), 2, + [15212] = 1, + ACTIONS(2086), 2, sym__block_close, - sym__block_quote_continuation, - [15226] = 1, - ACTIONS(2086), 1, - sym__footnote_mark_begin, - [15230] = 1, + sym_list_marker_lower_alpha_period, + [15217] = 1, + ACTIONS(1713), 2, + sym__block_close, + sym_list_marker_decimal_parens, + [15222] = 1, + ACTIONS(1720), 2, + sym__block_close, + sym_list_marker_lower_alpha_parens, + [15227] = 1, + ACTIONS(1720), 2, + sym__block_close, + sym_list_marker_upper_roman_period, + [15232] = 1, ACTIONS(2088), 1, - sym__newline, - [15234] = 1, + anon_sym_COLON, + [15236] = 1, + ACTIONS(728), 1, + sym__indented_content_spacer, + [15240] = 1, + ACTIONS(832), 1, + sym__indented_content_spacer, + [15244] = 1, ACTIONS(2090), 1, - sym__block_close, - [15238] = 1, - ACTIONS(2092), 1, sym__newline, - [15242] = 1, - ACTIONS(2094), 1, + [15248] = 1, + ACTIONS(2092), 1, sym__block_close, - [15246] = 1, - ACTIONS(2096), 1, + [15252] = 1, + ACTIONS(2094), 1, sym__newline, - [15250] = 1, + [15256] = 1, + ACTIONS(2096), 1, + sym__footnote_mark_begin, + [15260] = 1, ACTIONS(2098), 1, sym__newline, - [15254] = 1, + [15264] = 1, ACTIONS(2100), 1, sym__newline, - [15258] = 1, + [15268] = 1, ACTIONS(2102), 1, sym__block_close, - [15262] = 1, + [15272] = 1, ACTIONS(2104), 1, - sym__block_close, - [15266] = 1, + sym__newline, + [15276] = 1, ACTIONS(2106), 1, sym__newline, - [15270] = 1, + [15280] = 1, + ACTIONS(881), 1, + sym_list_marker_dash, + [15284] = 1, ACTIONS(2108), 1, sym__newline, - [15274] = 1, + [15288] = 1, ACTIONS(2110), 1, - sym__newline, - [15278] = 1, + sym__block_close, + [15292] = 1, ACTIONS(2112), 1, - sym__newline, - [15282] = 1, + sym__block_close, + [15296] = 1, ACTIONS(2114), 1, sym__newline, - [15286] = 1, + [15300] = 1, ACTIONS(2116), 1, sym__newline, - [15290] = 1, + [15304] = 1, ACTIONS(2118), 1, sym__newline, - [15294] = 1, + [15308] = 1, ACTIONS(2120), 1, - sym__newline, - [15298] = 1, + sym__block_close, + [15312] = 1, ACTIONS(2122), 1, - sym__newline, - [15302] = 1, - ACTIONS(2124), 1, sym__block_close, - [15306] = 1, + [15316] = 1, + ACTIONS(2124), 1, + anon_sym_COLON, + [15320] = 1, ACTIONS(2126), 1, - sym__block_close, - [15310] = 1, + sym__newline, + [15324] = 1, ACTIONS(2128), 1, sym__newline, - [15314] = 1, + [15328] = 1, ACTIONS(2130), 1, sym__newline, - [15318] = 1, + [15332] = 1, ACTIONS(2132), 1, sym__newline, - [15322] = 1, + [15336] = 1, ACTIONS(2134), 1, sym__newline, - [15326] = 1, + [15340] = 1, ACTIONS(2136), 1, sym__newline, - [15330] = 1, + [15344] = 1, ACTIONS(2138), 1, sym__newline, - [15334] = 1, + [15348] = 1, ACTIONS(2140), 1, sym__newline, - [15338] = 1, + [15352] = 1, ACTIONS(2142), 1, sym__newline, - [15342] = 1, + [15356] = 1, ACTIONS(2144), 1, sym__newline, - [15346] = 1, + [15360] = 1, ACTIONS(2146), 1, - sym__newline, - [15350] = 1, + sym__indented_content_spacer, + [15364] = 1, ACTIONS(2148), 1, sym__newline, - [15354] = 1, + [15368] = 1, ACTIONS(2150), 1, sym__newline, - [15358] = 1, + [15372] = 1, ACTIONS(2152), 1, sym__newline, - [15362] = 1, + [15376] = 1, ACTIONS(2154), 1, - sym__newline, - [15366] = 1, + sym__whitespace, + [15380] = 1, ACTIONS(2156), 1, - anon_sym_RBRACK_COLON, - [15370] = 1, - ACTIONS(2158), 1, sym__indented_content_spacer, - [15374] = 1, + [15384] = 1, + ACTIONS(885), 1, + sym_list_marker_plus, + [15388] = 1, + ACTIONS(2158), 1, + sym__newline, + [15392] = 1, ACTIONS(2160), 1, - anon_sym_RBRACK, - [15378] = 1, + sym__newline, + [15396] = 1, ACTIONS(2162), 1, - sym__footnote_mark_begin, - [15382] = 1, + sym__newline, + [15400] = 1, ACTIONS(2164), 1, - anon_sym_RBRACK, - [15386] = 1, + sym__whitespace1, + [15404] = 1, ACTIONS(2166), 1, - anon_sym_RBRACK_COLON, - [15390] = 1, - ACTIONS(2168), 1, - sym__eof_or_newline, - [15394] = 1, - ACTIONS(2170), 1, sym__newline, - [15398] = 1, - ACTIONS(670), 1, + [15408] = 1, + ACTIONS(852), 1, sym__indented_content_spacer, - [15402] = 1, - ACTIONS(2172), 1, + [15412] = 1, + ACTIONS(2168), 1, sym_frontmatter_marker, - [15406] = 1, - ACTIONS(2174), 1, + [15416] = 1, + ACTIONS(2170), 1, + anon_sym_RBRACK_COLON, + [15420] = 1, + ACTIONS(2172), 1, sym__newline, - [15410] = 1, + [15424] = 1, + ACTIONS(2174), 1, + anon_sym_RBRACK_COLON, + [15428] = 1, ACTIONS(2176), 1, - sym__newline, - [15414] = 1, - ACTIONS(674), 1, + sym_table_cell_alignment, + [15432] = 1, + ACTIONS(842), 1, + sym__indented_content_spacer, + [15436] = 1, + ACTIONS(856), 1, sym__indented_content_spacer, - [15418] = 1, + [15440] = 1, ACTIONS(2178), 1, - sym_language, - [15422] = 1, - ACTIONS(2180), 1, sym__newline, - [15426] = 1, + [15444] = 1, + ACTIONS(836), 1, + sym__indented_content_spacer, + [15448] = 1, + ACTIONS(2180), 1, + sym_language, + [15452] = 1, ACTIONS(2182), 1, + sym__block_close, + [15456] = 1, + ACTIONS(2184), 1, sym__newline, - [15430] = 1, - ACTIONS(724), 1, - sym__indented_content_spacer, - [15434] = 1, - ACTIONS(678), 1, + [15460] = 1, + ACTIONS(840), 1, sym__indented_content_spacer, - [15438] = 1, - ACTIONS(2184), 1, - anon_sym_RBRACK, - [15442] = 1, + [15464] = 1, ACTIONS(2186), 1, - anon_sym_RBRACK, - [15446] = 1, + sym__newline, + [15468] = 1, ACTIONS(2188), 1, - sym__block_close, - [15450] = 1, + sym__newline, + [15472] = 1, + ACTIONS(883), 1, + sym_list_marker_star, + [15476] = 1, ACTIONS(2190), 1, sym__newline, - [15454] = 1, + [15480] = 1, + ACTIONS(740), 1, + sym__indented_content_spacer, + [15484] = 1, ACTIONS(2192), 1, - sym__whitespace, - [15458] = 1, + sym__eof_or_newline, + [15488] = 1, ACTIONS(2194), 1, - sym__indented_content_spacer, - [15462] = 1, - ACTIONS(881), 1, - sym_list_marker_dash, - [15466] = 1, - ACTIONS(2196), 1, sym__newline, - [15470] = 1, + [15492] = 1, + ACTIONS(2196), 1, + sym__whitespace, + [15496] = 1, ACTIONS(2198), 1, - anon_sym_PIPE, - [15474] = 1, - ACTIONS(682), 1, - sym__indented_content_spacer, - [15478] = 1, - ACTIONS(686), 1, - sym__indented_content_spacer, - [15482] = 1, + sym__newline, + [15500] = 1, ACTIONS(2200), 1, sym__newline, - [15486] = 1, + [15504] = 1, ACTIONS(2202), 1, - sym__indented_content_spacer, - [15490] = 1, + sym__block_close, + [15508] = 1, ACTIONS(2204), 1, - sym__newline, - [15494] = 1, - ACTIONS(885), 1, - sym_list_marker_plus, - [15498] = 1, + anon_sym_RBRACK, + [15512] = 1, ACTIONS(2206), 1, - sym__block_close, - [15502] = 1, - ACTIONS(690), 1, - sym__indented_content_spacer, - [15506] = 1, - ACTIONS(830), 1, - sym__indented_content_spacer, - [15510] = 1, - ACTIONS(2208), 1, sym__newline, - [15514] = 1, + [15516] = 1, + ACTIONS(2208), 1, + anon_sym_RBRACK, + [15520] = 1, + ACTIONS(666), 1, + sym__indented_content_spacer, + [15524] = 1, ACTIONS(2210), 1, - sym__list_item_continuation, - [15518] = 1, - ACTIONS(694), 1, sym__indented_content_spacer, - [15522] = 1, + [15528] = 1, ACTIONS(2212), 1, - sym__block_close, - [15526] = 1, + aux_sym_value_token1, + [15532] = 1, ACTIONS(2214), 1, sym__newline, - [15530] = 1, - ACTIONS(883), 1, - sym_list_marker_star, - [15534] = 1, + [15536] = 1, + ACTIONS(670), 1, + sym__indented_content_spacer, + [15540] = 1, ACTIONS(2216), 1, sym__newline, - [15538] = 1, + [15544] = 1, ACTIONS(2218), 1, sym__block_close, - [15542] = 1, + [15548] = 1, ACTIONS(2220), 1, sym__block_close, - [15546] = 1, + [15552] = 1, ACTIONS(2222), 1, - sym__newline, - [15550] = 1, + ts_builtin_sym_end, + [15556] = 1, ACTIONS(2224), 1, sym__newline, - [15554] = 1, + [15560] = 1, ACTIONS(2226), 1, sym__newline, - [15558] = 1, + [15564] = 1, ACTIONS(2228), 1, sym__newline, - [15562] = 1, + [15568] = 1, ACTIONS(2230), 1, sym__newline, - [15566] = 1, + [15572] = 1, ACTIONS(2232), 1, sym__newline, - [15570] = 1, + [15576] = 1, ACTIONS(2234), 1, sym__newline, - [15574] = 1, + [15580] = 1, ACTIONS(2236), 1, sym__newline, - [15578] = 1, + [15584] = 1, ACTIONS(2238), 1, sym__newline, - [15582] = 1, + [15588] = 1, + ACTIONS(674), 1, + sym__indented_content_spacer, + [15592] = 1, ACTIONS(2240), 1, - sym__newline, - [15586] = 1, - ACTIONS(2242), 1, sym__block_close, - [15590] = 1, + [15596] = 1, + ACTIONS(682), 1, + sym__indented_content_spacer, + [15600] = 1, + ACTIONS(2242), 1, + sym__whitespace, + [15604] = 1, ACTIONS(2244), 1, - sym__newline, - [15594] = 1, + sym__block_close, + [15608] = 1, ACTIONS(2246), 1, - anon_sym_PIPE, - [15598] = 1, + sym__newline, + [15612] = 1, ACTIONS(2248), 1, - sym__whitespace, - [15602] = 1, + sym__block_close, + [15616] = 1, ACTIONS(2250), 1, - sym_frontmatter_marker, - [15606] = 1, - ACTIONS(698), 1, - sym__indented_content_spacer, - [15610] = 1, + sym__whitespace1, + [15620] = 1, ACTIONS(2252), 1, - ts_builtin_sym_end, - [15614] = 1, + sym__footnote_continuation, + [15624] = 1, ACTIONS(2254), 1, sym__block_close, - [15618] = 1, - ACTIONS(702), 1, - sym__indented_content_spacer, - [15622] = 1, + [15628] = 1, ACTIONS(2256), 1, - anon_sym_PIPE, - [15626] = 1, + sym__indented_content_spacer, + [15632] = 1, ACTIONS(2258), 1, - sym__footnote_continuation, - [15630] = 1, + sym__indented_content_spacer, + [15636] = 1, ACTIONS(2260), 1, - sym__whitespace, - [15634] = 1, - ACTIONS(710), 1, + anon_sym_PIPE, + [15640] = 1, + ACTIONS(686), 1, sym__indented_content_spacer, - [15638] = 1, + [15644] = 1, ACTIONS(2262), 1, - sym__indented_content_spacer, - [15642] = 1, + anon_sym_PIPE, + [15648] = 1, ACTIONS(2264), 1, sym__newline, - [15646] = 1, - ACTIONS(864), 1, - sym__indented_content_spacer, - [15650] = 1, + [15652] = 1, ACTIONS(2266), 1, - sym__block_close, - [15654] = 1, - ACTIONS(2268), 1, sym__indented_content_spacer, - [15658] = 1, + [15656] = 1, + ACTIONS(2268), 1, + sym__newline, + [15660] = 1, ACTIONS(2270), 1, + sym_frontmatter_marker, + [15664] = 1, + ACTIONS(748), 1, + sym__indented_content_spacer, + [15668] = 1, + ACTIONS(690), 1, + sym__indented_content_spacer, + [15672] = 1, + ACTIONS(752), 1, sym__indented_content_spacer, - [15662] = 1, + [15676] = 1, ACTIONS(2272), 1, sym__block_close, - [15666] = 1, - ACTIONS(820), 1, - sym__indented_content_spacer, - [15670] = 1, - ACTIONS(706), 1, + [15680] = 1, + ACTIONS(694), 1, sym__indented_content_spacer, - [15674] = 1, - ACTIONS(840), 1, + [15684] = 1, + ACTIONS(698), 1, sym__indented_content_spacer, - [15678] = 1, - ACTIONS(732), 1, + [15688] = 1, + ACTIONS(702), 1, sym__indented_content_spacer, - [15682] = 1, + [15692] = 1, ACTIONS(2274), 1, - sym__whitespace1, - [15686] = 1, + anon_sym_PIPE, + [15696] = 1, + ACTIONS(846), 1, + sym__indented_content_spacer, + [15700] = 1, + ACTIONS(706), 1, + sym__indented_content_spacer, + [15704] = 1, + ACTIONS(760), 1, + sym__indented_content_spacer, + [15708] = 1, ACTIONS(2276), 1, - sym__whitespace1, - [15690] = 1, - ACTIONS(2278), 1, - sym__block_close, - [15694] = 1, - ACTIONS(814), 1, + sym__newline, + [15712] = 1, + ACTIONS(764), 1, sym__indented_content_spacer, - [15698] = 1, - ACTIONS(2280), 1, + [15716] = 1, + ACTIONS(768), 1, + sym__indented_content_spacer, + [15720] = 1, + ACTIONS(662), 1, + sym__indented_content_spacer, + [15724] = 1, + ACTIONS(2278), 1, sym__newline, - [15702] = 1, + [15728] = 1, + ACTIONS(2280), 1, + sym__list_item_continuation, + [15732] = 1, ACTIONS(2282), 1, - sym__whitespace1, - [15706] = 1, + sym__indented_content_spacer, + [15736] = 1, ACTIONS(2284), 1, sym__newline, - [15710] = 1, - ACTIONS(736), 1, - sym__indented_content_spacer, - [15714] = 1, + [15740] = 1, ACTIONS(2286), 1, sym__block_close, - [15718] = 1, + [15744] = 1, ACTIONS(2288), 1, - sym__newline, - [15722] = 1, - ACTIONS(2290), 1, sym__block_close, - [15726] = 1, - ACTIONS(2292), 1, + [15748] = 1, + ACTIONS(772), 1, sym__indented_content_spacer, - [15730] = 1, - ACTIONS(2294), 1, + [15752] = 1, + ACTIONS(776), 1, + sym__indented_content_spacer, + [15756] = 1, + ACTIONS(2290), 1, + sym__newline, + [15760] = 1, + ACTIONS(2292), 1, sym__newline, - [15734] = 1, + [15764] = 1, + ACTIONS(2294), 1, + sym__block_close, + [15768] = 1, ACTIONS(2296), 1, sym__newline, - [15738] = 1, + [15772] = 1, ACTIONS(2298), 1, sym__newline, - [15742] = 1, - ACTIONS(740), 1, - sym__indented_content_spacer, - [15746] = 1, - ACTIONS(744), 1, - sym__indented_content_spacer, - [15750] = 1, + [15776] = 1, ACTIONS(2300), 1, - sym__newline, - [15754] = 1, + sym__whitespace1, + [15780] = 1, ACTIONS(2302), 1, - sym__newline, - [15758] = 1, + sym__whitespace, + [15784] = 1, ACTIONS(2304), 1, - sym__newline, - [15762] = 1, + sym__indented_content_spacer, + [15788] = 1, + ACTIONS(780), 1, + sym__indented_content_spacer, + [15792] = 1, + ACTIONS(784), 1, + sym__indented_content_spacer, + [15796] = 1, + ACTIONS(788), 1, + sym__indented_content_spacer, + [15800] = 1, ACTIONS(2306), 1, sym__newline, - [15766] = 1, + [15804] = 1, ACTIONS(2308), 1, sym__newline, - [15770] = 1, + [15808] = 1, ACTIONS(2310), 1, - sym__whitespace1, - [15774] = 1, + sym__newline, + [15812] = 1, ACTIONS(2312), 1, - sym__whitespace, - [15778] = 1, + sym__newline, + [15816] = 1, ACTIONS(2314), 1, - sym__indented_content_spacer, - [15782] = 1, - ACTIONS(748), 1, - sym__indented_content_spacer, - [15786] = 1, - ACTIONS(752), 1, - sym__indented_content_spacer, - [15790] = 1, - ACTIONS(756), 1, - sym__indented_content_spacer, - [15794] = 1, + sym__newline, + [15820] = 1, ACTIONS(2316), 1, sym__newline, - [15798] = 1, + [15824] = 1, + ACTIONS(792), 1, + sym__indented_content_spacer, + [15828] = 1, + ACTIONS(796), 1, + sym__indented_content_spacer, + [15832] = 1, ACTIONS(2318), 1, sym__newline, - [15802] = 1, - ACTIONS(538), 1, - sym__indented_content_spacer, - [15806] = 1, + [15836] = 1, ACTIONS(2320), 1, sym__newline, - [15810] = 1, + [15840] = 1, ACTIONS(2322), 1, sym__newline, - [15814] = 1, + [15844] = 1, ACTIONS(2324), 1, - sym__block_close, - [15818] = 1, - ACTIONS(760), 1, - sym__indented_content_spacer, - [15822] = 1, - ACTIONS(764), 1, - sym__indented_content_spacer, - [15826] = 1, - ACTIONS(2326), 1, sym__newline, - [15830] = 1, - ACTIONS(2328), 1, - sym__newline, - [15834] = 1, - ACTIONS(2330), 1, - sym__eof_or_newline, - [15838] = 1, - ACTIONS(844), 1, - sym__indented_content_spacer, - [15842] = 1, - ACTIONS(2332), 1, + [15848] = 1, + ACTIONS(2326), 1, sym__block_close, - [15846] = 1, - ACTIONS(2334), 1, + [15852] = 1, + ACTIONS(2328), 1, sym__whitespace1, - [15850] = 1, - ACTIONS(2336), 1, + [15856] = 1, + ACTIONS(2330), 1, sym__whitespace, - [15854] = 1, - ACTIONS(2338), 1, + [15860] = 1, + ACTIONS(2332), 1, sym__indented_content_spacer, - [15858] = 1, - ACTIONS(768), 1, + [15864] = 1, + ACTIONS(800), 1, sym__indented_content_spacer, - [15862] = 1, - ACTIONS(772), 1, + [15868] = 1, + ACTIONS(804), 1, sym__indented_content_spacer, - [15866] = 1, - ACTIONS(776), 1, + [15872] = 1, + ACTIONS(808), 1, + sym__indented_content_spacer, + [15876] = 1, + ACTIONS(2334), 1, + sym__newline, + [15880] = 1, + ACTIONS(2336), 1, + sym__eof_or_newline, + [15884] = 1, + ACTIONS(2338), 1, sym__indented_content_spacer, - [15870] = 1, + [15888] = 1, ACTIONS(2340), 1, - sym__newline, - [15874] = 1, + anon_sym_EQ, + [15892] = 1, + ACTIONS(1881), 1, + sym_table_cell_alignment, + [15896] = 1, ACTIONS(2342), 1, - sym__newline, - [15878] = 1, - ACTIONS(2344), 1, + sym__block_close, + [15900] = 1, + ACTIONS(812), 1, sym__indented_content_spacer, - [15882] = 1, + [15904] = 1, + ACTIONS(754), 1, + sym__indented_content_spacer, + [15908] = 1, + ACTIONS(2344), 1, + sym__newline, + [15912] = 1, ACTIONS(2346), 1, - aux_sym_value_token1, - [15886] = 1, + sym__newline, + [15916] = 1, ACTIONS(2348), 1, sym__newline, - [15890] = 1, - ACTIONS(1859), 1, - sym_table_cell_alignment, - [15894] = 1, - ACTIONS(780), 1, - sym__indented_content_spacer, - [15898] = 1, - ACTIONS(784), 1, - sym__indented_content_spacer, - [15902] = 1, + [15920] = 1, ACTIONS(2350), 1, - sym__newline, - [15906] = 1, + anon_sym_DQUOTE, + [15924] = 1, ACTIONS(2352), 1, - sym__newline, - [15910] = 1, - ACTIONS(824), 1, - sym__indented_content_spacer, - [15914] = 1, - ACTIONS(828), 1, - sym__indented_content_spacer, - [15918] = 1, + sym_link_destination, + [15928] = 1, ACTIONS(2354), 1, sym__whitespace1, - [15922] = 1, + [15932] = 1, ACTIONS(2356), 1, - sym__whitespace1, - [15926] = 1, - ACTIONS(2358), 1, sym__whitespace, - [15930] = 1, - ACTIONS(2360), 1, + [15936] = 1, + ACTIONS(2358), 1, sym__indented_content_spacer, - [15934] = 1, - ACTIONS(788), 1, + [15940] = 1, + ACTIONS(816), 1, sym__indented_content_spacer, - [15938] = 1, - ACTIONS(792), 1, + [15944] = 1, + ACTIONS(820), 1, sym__indented_content_spacer, - [15942] = 1, - ACTIONS(2362), 1, + [15948] = 1, + ACTIONS(2360), 1, sym__newline, - [15946] = 1, - ACTIONS(848), 1, - sym__indented_content_spacer, - [15950] = 1, + [15952] = 1, + ACTIONS(2362), 1, + anon_sym_EQ, + [15956] = 1, ACTIONS(2364), 1, sym__indented_content_spacer, - [15954] = 1, - ACTIONS(852), 1, - sym__indented_content_spacer, - [15958] = 1, + [15960] = 1, ACTIONS(2366), 1, - sym__newline, - [15962] = 1, + sym__whitespace1, + [15964] = 1, ACTIONS(2368), 1, + sym__whitespace1, + [15968] = 1, + ACTIONS(2370), 1, sym__newline, - [15966] = 1, - ACTIONS(796), 1, + [15972] = 1, + ACTIONS(824), 1, sym__indented_content_spacer, - [15970] = 1, - ACTIONS(800), 1, + [15976] = 1, + ACTIONS(828), 1, sym__indented_content_spacer, - [15974] = 1, - ACTIONS(2370), 1, - sym__newline, - [15978] = 1, + [15980] = 1, ACTIONS(2372), 1, sym__newline, - [15982] = 1, + [15984] = 1, ACTIONS(2374), 1, - sym__whitespace1, - [15986] = 1, - ACTIONS(2376), 1, sym__newline, - [15990] = 1, + [15988] = 1, + ACTIONS(2376), 1, + sym__whitespace1, + [15992] = 1, + ACTIONS(710), 1, + sym__indented_content_spacer, + [15996] = 1, ACTIONS(2378), 1, - sym__list_item_continuation, - [15994] = 1, + sym__newline, + [16000] = 1, ACTIONS(2380), 1, sym__whitespace1, - [15998] = 1, + [16004] = 1, ACTIONS(2382), 1, sym__whitespace, - [16002] = 1, + [16008] = 1, ACTIONS(2384), 1, sym__indented_content_spacer, - [16006] = 1, + [16012] = 1, ACTIONS(2386), 1, sym__indented_content_spacer, - [16010] = 1, + [16016] = 1, ACTIONS(2388), 1, sym__indented_content_spacer, - [16014] = 1, + [16020] = 1, ACTIONS(2390), 1, sym__indented_content_spacer, - [16018] = 1, + [16024] = 1, ACTIONS(2392), 1, sym__indented_content_spacer, - [16022] = 1, + [16028] = 1, ACTIONS(2394), 1, sym__indented_content_spacer, - [16026] = 1, + [16032] = 1, ACTIONS(2396), 1, sym__indented_content_spacer, - [16030] = 1, + [16036] = 1, ACTIONS(2398), 1, sym__indented_content_spacer, - [16034] = 1, + [16040] = 1, ACTIONS(2400), 1, sym__indented_content_spacer, - [16038] = 1, + [16044] = 1, ACTIONS(2402), 1, sym__indented_content_spacer, - [16042] = 1, + [16048] = 1, ACTIONS(2404), 1, sym__indented_content_spacer, - [16046] = 1, + [16052] = 1, ACTIONS(2406), 1, sym__indented_content_spacer, - [16050] = 1, + [16056] = 1, ACTIONS(2408), 1, sym__indented_content_spacer, - [16054] = 1, + [16060] = 1, ACTIONS(2410), 1, sym__indented_content_spacer, - [16058] = 1, + [16064] = 1, ACTIONS(2412), 1, sym__indented_content_spacer, - [16062] = 1, + [16068] = 1, ACTIONS(2414), 1, sym__whitespace, - [16066] = 1, + [16072] = 1, + ACTIONS(714), 1, + sym__indented_content_spacer, + [16076] = 1, ACTIONS(2416), 1, - sym__newline, - [16070] = 1, - ACTIONS(2418), 1, sym_table_cell_alignment, - [16074] = 1, + [16080] = 1, + ACTIONS(2418), 1, + sym__newline, + [16084] = 1, ACTIONS(2420), 1, - sym__block_close, - [16078] = 1, - ACTIONS(2422), 1, anon_sym_RBRACK_COLON, - [16082] = 1, - ACTIONS(2424), 1, + [16088] = 1, + ACTIONS(2422), 1, sym_link_destination, - [16086] = 1, - ACTIONS(2426), 1, + [16092] = 1, + ACTIONS(2424), 1, sym__whitespace, - [16090] = 1, + [16096] = 1, + ACTIONS(2426), 1, + anon_sym_RBRACK, + [16100] = 1, ACTIONS(2428), 1, - anon_sym_EQ, - [16094] = 1, - ACTIONS(2430), 1, sym_table_cell_alignment, - [16098] = 1, + [16104] = 1, + ACTIONS(2430), 1, + anon_sym_RBRACK, + [16108] = 1, ACTIONS(2432), 1, - anon_sym_EQ, - [16102] = 1, - ACTIONS(2434), 1, anon_sym_RBRACK_COLON, - [16106] = 1, - ACTIONS(2436), 1, + [16112] = 1, + ACTIONS(2434), 1, sym_link_destination, - [16110] = 1, - ACTIONS(2438), 1, + [16116] = 1, + ACTIONS(2436), 1, sym__whitespace, - [16114] = 1, + [16120] = 1, + ACTIONS(2438), 1, + sym__newline, + [16124] = 1, ACTIONS(2440), 1, - sym__block_close, - [16118] = 1, - ACTIONS(2442), 1, sym_table_cell_alignment, - [16122] = 1, - ACTIONS(856), 1, - sym__indented_content_spacer, - [16126] = 1, + [16128] = 1, + ACTIONS(2442), 1, + sym__newline, + [16132] = 1, ACTIONS(2444), 1, anon_sym_RBRACK_COLON, - [16130] = 1, + [16136] = 1, ACTIONS(2446), 1, sym_link_destination, - [16134] = 1, + [16140] = 1, ACTIONS(2448), 1, sym__whitespace, - [16138] = 1, + [16144] = 1, ACTIONS(2450), 1, - anon_sym_COLON, - [16142] = 1, + sym__block_close, + [16148] = 1, ACTIONS(2452), 1, sym_table_cell_alignment, - [16146] = 1, + [16152] = 1, ACTIONS(2454), 1, sym__block_close, - [16150] = 1, + [16156] = 1, ACTIONS(2456), 1, anon_sym_RBRACK_COLON, - [16154] = 1, + [16160] = 1, ACTIONS(2458), 1, sym_link_destination, - [16158] = 1, + [16164] = 1, ACTIONS(2460), 1, - sym__block_close, - [16162] = 1, + sym__newline, + [16168] = 1, ACTIONS(2462), 1, sym__whitespace1, - [16166] = 1, + [16172] = 1, ACTIONS(2464), 1, - sym__newline, - [16170] = 1, + sym__list_item_continuation, + [16176] = 1, ACTIONS(2466), 1, sym__whitespace1, - [16174] = 1, + [16180] = 1, ACTIONS(2468), 1, - anon_sym_DQUOTE, - [16178] = 1, + sym__block_close, + [16184] = 1, ACTIONS(2470), 1, sym__whitespace1, - [16182] = 1, + [16188] = 1, ACTIONS(2472), 1, - sym_link_destination, - [16186] = 1, + sym__block_close, + [16192] = 1, ACTIONS(2474), 1, sym__whitespace1, - [16190] = 1, + [16196] = 1, ACTIONS(2476), 1, sym__footnote_mark_begin, - [16194] = 1, + [16200] = 1, ACTIONS(2478), 1, anon_sym_COLON, - [16198] = 1, + [16204] = 1, ACTIONS(2480), 1, sym__footnote_mark_begin, - [16202] = 1, + [16208] = 1, ACTIONS(2482), 1, anon_sym_COLON, - [16206] = 1, + [16212] = 1, ACTIONS(2484), 1, sym__footnote_mark_begin, - [16210] = 1, + [16216] = 1, ACTIONS(2486), 1, - anon_sym_COLON, - [16214] = 1, + sym__newline, + [16220] = 1, ACTIONS(2488), 1, - sym_table_cell_alignment, - [16218] = 1, + sym__footnote_mark_begin, + [16224] = 1, ACTIONS(2490), 1, anon_sym_COLON, - [16222] = 1, + [16228] = 1, ACTIONS(2492), 1, anon_sym_RBRACK, - [16226] = 1, + [16232] = 1, ACTIONS(2494), 1, anon_sym_RBRACK, - [16230] = 1, + [16236] = 1, ACTIONS(2496), 1, anon_sym_RBRACK, - [16234] = 1, + [16240] = 1, ACTIONS(2498), 1, anon_sym_RBRACK, - [16238] = 1, - ACTIONS(664), 1, - sym__indented_content_spacer, - [16242] = 1, - ACTIONS(804), 1, + [16244] = 1, + ACTIONS(734), 1, sym__indented_content_spacer, - [16246] = 1, - ACTIONS(808), 1, + [16248] = 1, + ACTIONS(718), 1, sym__indented_content_spacer, - [16250] = 1, - ACTIONS(812), 1, + [16252] = 1, + ACTIONS(538), 1, sym__indented_content_spacer, - [16254] = 1, + [16256] = 1, ACTIONS(2500), 1, + sym__newline, + [16260] = 1, + ACTIONS(2502), 1, sym__indented_content_spacer, }; @@ -26543,9 +26564,9 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(71)] = 333, [SMALL_STATE(72)] = 384, [SMALL_STATE(73)] = 432, - [SMALL_STATE(74)] = 480, - [SMALL_STATE(75)] = 526, - [SMALL_STATE(76)] = 572, + [SMALL_STATE(74)] = 478, + [SMALL_STATE(75)] = 524, + [SMALL_STATE(76)] = 570, [SMALL_STATE(77)] = 618, [SMALL_STATE(78)] = 666, [SMALL_STATE(79)] = 714, @@ -26678,7 +26699,7 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(206)] = 6497, [SMALL_STATE(207)] = 6542, [SMALL_STATE(208)] = 6587, - [SMALL_STATE(209)] = 6635, + [SMALL_STATE(209)] = 6631, [SMALL_STATE(210)] = 6679, [SMALL_STATE(211)] = 6722, [SMALL_STATE(212)] = 6773, @@ -26698,14 +26719,14 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(226)] = 7472, [SMALL_STATE(227)] = 7498, [SMALL_STATE(228)] = 7524, - [SMALL_STATE(229)] = 7549, - [SMALL_STATE(230)] = 7588, - [SMALL_STATE(231)] = 7613, + [SMALL_STATE(229)] = 7563, + [SMALL_STATE(230)] = 7584, + [SMALL_STATE(231)] = 7609, [SMALL_STATE(232)] = 7634, - [SMALL_STATE(233)] = 7668, - [SMALL_STATE(234)] = 7706, - [SMALL_STATE(235)] = 7744, - [SMALL_STATE(236)] = 7764, + [SMALL_STATE(233)] = 7672, + [SMALL_STATE(234)] = 7710, + [SMALL_STATE(235)] = 7730, + [SMALL_STATE(236)] = 7762, [SMALL_STATE(237)] = 7796, [SMALL_STATE(238)] = 7827, [SMALL_STATE(239)] = 7858, @@ -26715,20 +26736,20 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(243)] = 7982, [SMALL_STATE(244)] = 8013, [SMALL_STATE(245)] = 8044, - [SMALL_STATE(246)] = 8070, - [SMALL_STATE(247)] = 8096, - [SMALL_STATE(248)] = 8128, - [SMALL_STATE(249)] = 8154, - [SMALL_STATE(250)] = 8186, - [SMALL_STATE(251)] = 8214, - [SMALL_STATE(252)] = 8246, - [SMALL_STATE(253)] = 8278, - [SMALL_STATE(254)] = 8310, - [SMALL_STATE(255)] = 8342, - [SMALL_STATE(256)] = 8374, - [SMALL_STATE(257)] = 8406, - [SMALL_STATE(258)] = 8438, - [SMALL_STATE(259)] = 8470, + [SMALL_STATE(246)] = 8076, + [SMALL_STATE(247)] = 8102, + [SMALL_STATE(248)] = 8134, + [SMALL_STATE(249)] = 8162, + [SMALL_STATE(250)] = 8194, + [SMALL_STATE(251)] = 8220, + [SMALL_STATE(252)] = 8252, + [SMALL_STATE(253)] = 8284, + [SMALL_STATE(254)] = 8316, + [SMALL_STATE(255)] = 8348, + [SMALL_STATE(256)] = 8380, + [SMALL_STATE(257)] = 8412, + [SMALL_STATE(258)] = 8444, + [SMALL_STATE(259)] = 8476, [SMALL_STATE(260)] = 8502, [SMALL_STATE(261)] = 8528, [SMALL_STATE(262)] = 8554, @@ -26741,7 +26762,7 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(269)] = 8729, [SMALL_STATE(270)] = 8754, [SMALL_STATE(271)] = 8779, - [SMALL_STATE(272)] = 8801, + [SMALL_STATE(272)] = 8799, [SMALL_STATE(273)] = 8821, [SMALL_STATE(274)] = 8841, [SMALL_STATE(275)] = 8860, @@ -26750,135 +26771,135 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(278)] = 8917, [SMALL_STATE(279)] = 8936, [SMALL_STATE(280)] = 8955, - [SMALL_STATE(281)] = 8969, - [SMALL_STATE(282)] = 8983, - [SMALL_STATE(283)] = 8997, + [SMALL_STATE(281)] = 8971, + [SMALL_STATE(282)] = 8985, + [SMALL_STATE(283)] = 8999, [SMALL_STATE(284)] = 9013, [SMALL_STATE(285)] = 9029, - [SMALL_STATE(286)] = 9042, - [SMALL_STATE(287)] = 9053, - [SMALL_STATE(288)] = 9076, - [SMALL_STATE(289)] = 9101, - [SMALL_STATE(290)] = 9124, - [SMALL_STATE(291)] = 9147, - [SMALL_STATE(292)] = 9170, - [SMALL_STATE(293)] = 9193, - [SMALL_STATE(294)] = 9216, - [SMALL_STATE(295)] = 9241, - [SMALL_STATE(296)] = 9264, - [SMALL_STATE(297)] = 9277, - [SMALL_STATE(298)] = 9300, - [SMALL_STATE(299)] = 9323, - [SMALL_STATE(300)] = 9348, - [SMALL_STATE(301)] = 9371, - [SMALL_STATE(302)] = 9394, - [SMALL_STATE(303)] = 9417, - [SMALL_STATE(304)] = 9442, - [SMALL_STATE(305)] = 9467, - [SMALL_STATE(306)] = 9490, - [SMALL_STATE(307)] = 9513, - [SMALL_STATE(308)] = 9536, - [SMALL_STATE(309)] = 9561, - [SMALL_STATE(310)] = 9572, - [SMALL_STATE(311)] = 9583, - [SMALL_STATE(312)] = 9594, - [SMALL_STATE(313)] = 9605, - [SMALL_STATE(314)] = 9616, - [SMALL_STATE(315)] = 9627, + [SMALL_STATE(286)] = 9054, + [SMALL_STATE(287)] = 9077, + [SMALL_STATE(288)] = 9100, + [SMALL_STATE(289)] = 9125, + [SMALL_STATE(290)] = 9150, + [SMALL_STATE(291)] = 9173, + [SMALL_STATE(292)] = 9184, + [SMALL_STATE(293)] = 9207, + [SMALL_STATE(294)] = 9230, + [SMALL_STATE(295)] = 9253, + [SMALL_STATE(296)] = 9278, + [SMALL_STATE(297)] = 9303, + [SMALL_STATE(298)] = 9314, + [SMALL_STATE(299)] = 9337, + [SMALL_STATE(300)] = 9360, + [SMALL_STATE(301)] = 9383, + [SMALL_STATE(302)] = 9406, + [SMALL_STATE(303)] = 9429, + [SMALL_STATE(304)] = 9452, + [SMALL_STATE(305)] = 9465, + [SMALL_STATE(306)] = 9476, + [SMALL_STATE(307)] = 9487, + [SMALL_STATE(308)] = 9498, + [SMALL_STATE(309)] = 9509, + [SMALL_STATE(310)] = 9520, + [SMALL_STATE(311)] = 9543, + [SMALL_STATE(312)] = 9554, + [SMALL_STATE(313)] = 9577, + [SMALL_STATE(314)] = 9590, + [SMALL_STATE(315)] = 9615, [SMALL_STATE(316)] = 9638, - [SMALL_STATE(317)] = 9660, + [SMALL_STATE(317)] = 9648, [SMALL_STATE(318)] = 9670, [SMALL_STATE(319)] = 9692, - [SMALL_STATE(320)] = 9714, - [SMALL_STATE(321)] = 9724, - [SMALL_STATE(322)] = 9734, - [SMALL_STATE(323)] = 9744, - [SMALL_STATE(324)] = 9766, - [SMALL_STATE(325)] = 9788, - [SMALL_STATE(326)] = 9810, - [SMALL_STATE(327)] = 9820, - [SMALL_STATE(328)] = 9830, - [SMALL_STATE(329)] = 9840, - [SMALL_STATE(330)] = 9850, + [SMALL_STATE(320)] = 9702, + [SMALL_STATE(321)] = 9712, + [SMALL_STATE(322)] = 9722, + [SMALL_STATE(323)] = 9732, + [SMALL_STATE(324)] = 9742, + [SMALL_STATE(325)] = 9752, + [SMALL_STATE(326)] = 9762, + [SMALL_STATE(327)] = 9784, + [SMALL_STATE(328)] = 9806, + [SMALL_STATE(329)] = 9828, + [SMALL_STATE(330)] = 9838, [SMALL_STATE(331)] = 9860, [SMALL_STATE(332)] = 9870, [SMALL_STATE(333)] = 9880, - [SMALL_STATE(334)] = 9902, - [SMALL_STATE(335)] = 9924, - [SMALL_STATE(336)] = 9946, - [SMALL_STATE(337)] = 9968, - [SMALL_STATE(338)] = 9978, - [SMALL_STATE(339)] = 10000, - [SMALL_STATE(340)] = 10010, - [SMALL_STATE(341)] = 10032, + [SMALL_STATE(334)] = 9890, + [SMALL_STATE(335)] = 9900, + [SMALL_STATE(336)] = 9910, + [SMALL_STATE(337)] = 9932, + [SMALL_STATE(338)] = 9954, + [SMALL_STATE(339)] = 9976, + [SMALL_STATE(340)] = 9998, + [SMALL_STATE(341)] = 10020, [SMALL_STATE(342)] = 10042, - [SMALL_STATE(343)] = 10052, - [SMALL_STATE(344)] = 10062, - [SMALL_STATE(345)] = 10082, - [SMALL_STATE(346)] = 10092, - [SMALL_STATE(347)] = 10102, - [SMALL_STATE(348)] = 10112, - [SMALL_STATE(349)] = 10122, - [SMALL_STATE(350)] = 10132, - [SMALL_STATE(351)] = 10142, - [SMALL_STATE(352)] = 10164, - [SMALL_STATE(353)] = 10186, - [SMALL_STATE(354)] = 10206, - [SMALL_STATE(355)] = 10228, - [SMALL_STATE(356)] = 10250, + [SMALL_STATE(343)] = 10064, + [SMALL_STATE(344)] = 10086, + [SMALL_STATE(345)] = 10108, + [SMALL_STATE(346)] = 10128, + [SMALL_STATE(347)] = 10150, + [SMALL_STATE(348)] = 10170, + [SMALL_STATE(349)] = 10192, + [SMALL_STATE(350)] = 10202, + [SMALL_STATE(351)] = 10212, + [SMALL_STATE(352)] = 10222, + [SMALL_STATE(353)] = 10232, + [SMALL_STATE(354)] = 10242, + [SMALL_STATE(355)] = 10252, + [SMALL_STATE(356)] = 10262, [SMALL_STATE(357)] = 10272, [SMALL_STATE(358)] = 10294, [SMALL_STATE(359)] = 10304, [SMALL_STATE(360)] = 10323, [SMALL_STATE(361)] = 10342, - [SMALL_STATE(362)] = 10361, + [SMALL_STATE(362)] = 10357, [SMALL_STATE(363)] = 10376, - [SMALL_STATE(364)] = 10395, - [SMALL_STATE(365)] = 10414, - [SMALL_STATE(366)] = 10433, - [SMALL_STATE(367)] = 10452, - [SMALL_STATE(368)] = 10471, - [SMALL_STATE(369)] = 10490, - [SMALL_STATE(370)] = 10509, - [SMALL_STATE(371)] = 10528, - [SMALL_STATE(372)] = 10547, - [SMALL_STATE(373)] = 10566, - [SMALL_STATE(374)] = 10585, - [SMALL_STATE(375)] = 10604, - [SMALL_STATE(376)] = 10623, - [SMALL_STATE(377)] = 10642, - [SMALL_STATE(378)] = 10661, - [SMALL_STATE(379)] = 10680, - [SMALL_STATE(380)] = 10699, - [SMALL_STATE(381)] = 10718, - [SMALL_STATE(382)] = 10737, - [SMALL_STATE(383)] = 10756, - [SMALL_STATE(384)] = 10775, - [SMALL_STATE(385)] = 10794, - [SMALL_STATE(386)] = 10809, - [SMALL_STATE(387)] = 10828, - [SMALL_STATE(388)] = 10847, - [SMALL_STATE(389)] = 10866, - [SMALL_STATE(390)] = 10885, - [SMALL_STATE(391)] = 10904, - [SMALL_STATE(392)] = 10923, - [SMALL_STATE(393)] = 10942, - [SMALL_STATE(394)] = 10961, - [SMALL_STATE(395)] = 10980, - [SMALL_STATE(396)] = 10999, - [SMALL_STATE(397)] = 11018, - [SMALL_STATE(398)] = 11037, - [SMALL_STATE(399)] = 11056, - [SMALL_STATE(400)] = 11075, - [SMALL_STATE(401)] = 11094, - [SMALL_STATE(402)] = 11113, - [SMALL_STATE(403)] = 11132, - [SMALL_STATE(404)] = 11151, - [SMALL_STATE(405)] = 11170, - [SMALL_STATE(406)] = 11189, - [SMALL_STATE(407)] = 11208, - [SMALL_STATE(408)] = 11227, - [SMALL_STATE(409)] = 11242, + [SMALL_STATE(364)] = 10391, + [SMALL_STATE(365)] = 10410, + [SMALL_STATE(366)] = 10425, + [SMALL_STATE(367)] = 10444, + [SMALL_STATE(368)] = 10463, + [SMALL_STATE(369)] = 10482, + [SMALL_STATE(370)] = 10501, + [SMALL_STATE(371)] = 10520, + [SMALL_STATE(372)] = 10539, + [SMALL_STATE(373)] = 10558, + [SMALL_STATE(374)] = 10577, + [SMALL_STATE(375)] = 10596, + [SMALL_STATE(376)] = 10615, + [SMALL_STATE(377)] = 10634, + [SMALL_STATE(378)] = 10653, + [SMALL_STATE(379)] = 10672, + [SMALL_STATE(380)] = 10691, + [SMALL_STATE(381)] = 10710, + [SMALL_STATE(382)] = 10729, + [SMALL_STATE(383)] = 10748, + [SMALL_STATE(384)] = 10767, + [SMALL_STATE(385)] = 10786, + [SMALL_STATE(386)] = 10805, + [SMALL_STATE(387)] = 10824, + [SMALL_STATE(388)] = 10843, + [SMALL_STATE(389)] = 10862, + [SMALL_STATE(390)] = 10881, + [SMALL_STATE(391)] = 10900, + [SMALL_STATE(392)] = 10919, + [SMALL_STATE(393)] = 10938, + [SMALL_STATE(394)] = 10957, + [SMALL_STATE(395)] = 10976, + [SMALL_STATE(396)] = 10995, + [SMALL_STATE(397)] = 11014, + [SMALL_STATE(398)] = 11033, + [SMALL_STATE(399)] = 11052, + [SMALL_STATE(400)] = 11071, + [SMALL_STATE(401)] = 11086, + [SMALL_STATE(402)] = 11105, + [SMALL_STATE(403)] = 11124, + [SMALL_STATE(404)] = 11143, + [SMALL_STATE(405)] = 11162, + [SMALL_STATE(406)] = 11181, + [SMALL_STATE(407)] = 11200, + [SMALL_STATE(408)] = 11219, + [SMALL_STATE(409)] = 11238, [SMALL_STATE(410)] = 11257, [SMALL_STATE(411)] = 11276, [SMALL_STATE(412)] = 11295, @@ -26887,1008 +26908,1008 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(415)] = 11352, [SMALL_STATE(416)] = 11367, [SMALL_STATE(417)] = 11386, - [SMALL_STATE(418)] = 11400, - [SMALL_STATE(419)] = 11412, - [SMALL_STATE(420)] = 11426, - [SMALL_STATE(421)] = 11440, - [SMALL_STATE(422)] = 11452, - [SMALL_STATE(423)] = 11464, - [SMALL_STATE(424)] = 11477, - [SMALL_STATE(425)] = 11490, - [SMALL_STATE(426)] = 11503, - [SMALL_STATE(427)] = 11516, - [SMALL_STATE(428)] = 11529, - [SMALL_STATE(429)] = 11542, - [SMALL_STATE(430)] = 11555, - [SMALL_STATE(431)] = 11568, - [SMALL_STATE(432)] = 11581, - [SMALL_STATE(433)] = 11594, - [SMALL_STATE(434)] = 11607, - [SMALL_STATE(435)] = 11620, - [SMALL_STATE(436)] = 11633, - [SMALL_STATE(437)] = 11646, - [SMALL_STATE(438)] = 11657, - [SMALL_STATE(439)] = 11668, - [SMALL_STATE(440)] = 11681, - [SMALL_STATE(441)] = 11692, - [SMALL_STATE(442)] = 11701, - [SMALL_STATE(443)] = 11712, - [SMALL_STATE(444)] = 11723, - [SMALL_STATE(445)] = 11732, - [SMALL_STATE(446)] = 11741, - [SMALL_STATE(447)] = 11750, - [SMALL_STATE(448)] = 11759, - [SMALL_STATE(449)] = 11768, - [SMALL_STATE(450)] = 11777, - [SMALL_STATE(451)] = 11786, - [SMALL_STATE(452)] = 11795, - [SMALL_STATE(453)] = 11804, - [SMALL_STATE(454)] = 11813, - [SMALL_STATE(455)] = 11822, - [SMALL_STATE(456)] = 11829, - [SMALL_STATE(457)] = 11842, - [SMALL_STATE(458)] = 11855, - [SMALL_STATE(459)] = 11868, - [SMALL_STATE(460)] = 11881, - [SMALL_STATE(461)] = 11894, - [SMALL_STATE(462)] = 11907, - [SMALL_STATE(463)] = 11920, - [SMALL_STATE(464)] = 11933, - [SMALL_STATE(465)] = 11946, - [SMALL_STATE(466)] = 11959, - [SMALL_STATE(467)] = 11972, - [SMALL_STATE(468)] = 11985, - [SMALL_STATE(469)] = 11998, - [SMALL_STATE(470)] = 12011, - [SMALL_STATE(471)] = 12024, - [SMALL_STATE(472)] = 12037, - [SMALL_STATE(473)] = 12048, - [SMALL_STATE(474)] = 12059, - [SMALL_STATE(475)] = 12070, - [SMALL_STATE(476)] = 12083, - [SMALL_STATE(477)] = 12096, - [SMALL_STATE(478)] = 12109, - [SMALL_STATE(479)] = 12122, - [SMALL_STATE(480)] = 12135, - [SMALL_STATE(481)] = 12148, - [SMALL_STATE(482)] = 12161, - [SMALL_STATE(483)] = 12174, - [SMALL_STATE(484)] = 12187, - [SMALL_STATE(485)] = 12200, - [SMALL_STATE(486)] = 12213, - [SMALL_STATE(487)] = 12226, - [SMALL_STATE(488)] = 12239, - [SMALL_STATE(489)] = 12252, - [SMALL_STATE(490)] = 12265, - [SMALL_STATE(491)] = 12278, - [SMALL_STATE(492)] = 12291, - [SMALL_STATE(493)] = 12304, - [SMALL_STATE(494)] = 12317, - [SMALL_STATE(495)] = 12330, - [SMALL_STATE(496)] = 12343, - [SMALL_STATE(497)] = 12356, - [SMALL_STATE(498)] = 12369, - [SMALL_STATE(499)] = 12382, - [SMALL_STATE(500)] = 12395, - [SMALL_STATE(501)] = 12408, - [SMALL_STATE(502)] = 12421, - [SMALL_STATE(503)] = 12434, - [SMALL_STATE(504)] = 12447, - [SMALL_STATE(505)] = 12460, - [SMALL_STATE(506)] = 12473, - [SMALL_STATE(507)] = 12486, - [SMALL_STATE(508)] = 12499, - [SMALL_STATE(509)] = 12512, - [SMALL_STATE(510)] = 12525, - [SMALL_STATE(511)] = 12538, - [SMALL_STATE(512)] = 12551, - [SMALL_STATE(513)] = 12564, - [SMALL_STATE(514)] = 12577, - [SMALL_STATE(515)] = 12590, - [SMALL_STATE(516)] = 12603, - [SMALL_STATE(517)] = 12616, - [SMALL_STATE(518)] = 12629, - [SMALL_STATE(519)] = 12642, - [SMALL_STATE(520)] = 12655, - [SMALL_STATE(521)] = 12668, - [SMALL_STATE(522)] = 12681, - [SMALL_STATE(523)] = 12694, - [SMALL_STATE(524)] = 12707, - [SMALL_STATE(525)] = 12720, - [SMALL_STATE(526)] = 12733, - [SMALL_STATE(527)] = 12746, - [SMALL_STATE(528)] = 12759, - [SMALL_STATE(529)] = 12772, - [SMALL_STATE(530)] = 12785, - [SMALL_STATE(531)] = 12798, - [SMALL_STATE(532)] = 12811, - [SMALL_STATE(533)] = 12824, - [SMALL_STATE(534)] = 12837, - [SMALL_STATE(535)] = 12850, - [SMALL_STATE(536)] = 12863, - [SMALL_STATE(537)] = 12876, - [SMALL_STATE(538)] = 12889, - [SMALL_STATE(539)] = 12902, - [SMALL_STATE(540)] = 12915, - [SMALL_STATE(541)] = 12928, - [SMALL_STATE(542)] = 12941, - [SMALL_STATE(543)] = 12954, - [SMALL_STATE(544)] = 12967, - [SMALL_STATE(545)] = 12980, - [SMALL_STATE(546)] = 12986, - [SMALL_STATE(547)] = 12992, - [SMALL_STATE(548)] = 13002, - [SMALL_STATE(549)] = 13012, + [SMALL_STATE(418)] = 11398, + [SMALL_STATE(419)] = 11410, + [SMALL_STATE(420)] = 11424, + [SMALL_STATE(421)] = 11438, + [SMALL_STATE(422)] = 11450, + [SMALL_STATE(423)] = 11462, + [SMALL_STATE(424)] = 11476, + [SMALL_STATE(425)] = 11488, + [SMALL_STATE(426)] = 11500, + [SMALL_STATE(427)] = 11513, + [SMALL_STATE(428)] = 11526, + [SMALL_STATE(429)] = 11539, + [SMALL_STATE(430)] = 11552, + [SMALL_STATE(431)] = 11565, + [SMALL_STATE(432)] = 11578, + [SMALL_STATE(433)] = 11591, + [SMALL_STATE(434)] = 11604, + [SMALL_STATE(435)] = 11617, + [SMALL_STATE(436)] = 11630, + [SMALL_STATE(437)] = 11643, + [SMALL_STATE(438)] = 11654, + [SMALL_STATE(439)] = 11665, + [SMALL_STATE(440)] = 11678, + [SMALL_STATE(441)] = 11687, + [SMALL_STATE(442)] = 11696, + [SMALL_STATE(443)] = 11707, + [SMALL_STATE(444)] = 11718, + [SMALL_STATE(445)] = 11727, + [SMALL_STATE(446)] = 11736, + [SMALL_STATE(447)] = 11745, + [SMALL_STATE(448)] = 11754, + [SMALL_STATE(449)] = 11763, + [SMALL_STATE(450)] = 11772, + [SMALL_STATE(451)] = 11781, + [SMALL_STATE(452)] = 11790, + [SMALL_STATE(453)] = 11799, + [SMALL_STATE(454)] = 11808, + [SMALL_STATE(455)] = 11817, + [SMALL_STATE(456)] = 11824, + [SMALL_STATE(457)] = 11837, + [SMALL_STATE(458)] = 11850, + [SMALL_STATE(459)] = 11863, + [SMALL_STATE(460)] = 11876, + [SMALL_STATE(461)] = 11889, + [SMALL_STATE(462)] = 11902, + [SMALL_STATE(463)] = 11915, + [SMALL_STATE(464)] = 11928, + [SMALL_STATE(465)] = 11941, + [SMALL_STATE(466)] = 11954, + [SMALL_STATE(467)] = 11967, + [SMALL_STATE(468)] = 11980, + [SMALL_STATE(469)] = 11993, + [SMALL_STATE(470)] = 12006, + [SMALL_STATE(471)] = 12019, + [SMALL_STATE(472)] = 12032, + [SMALL_STATE(473)] = 12043, + [SMALL_STATE(474)] = 12056, + [SMALL_STATE(475)] = 12069, + [SMALL_STATE(476)] = 12082, + [SMALL_STATE(477)] = 12095, + [SMALL_STATE(478)] = 12108, + [SMALL_STATE(479)] = 12121, + [SMALL_STATE(480)] = 12134, + [SMALL_STATE(481)] = 12147, + [SMALL_STATE(482)] = 12160, + [SMALL_STATE(483)] = 12173, + [SMALL_STATE(484)] = 12186, + [SMALL_STATE(485)] = 12199, + [SMALL_STATE(486)] = 12212, + [SMALL_STATE(487)] = 12225, + [SMALL_STATE(488)] = 12238, + [SMALL_STATE(489)] = 12251, + [SMALL_STATE(490)] = 12264, + [SMALL_STATE(491)] = 12277, + [SMALL_STATE(492)] = 12290, + [SMALL_STATE(493)] = 12303, + [SMALL_STATE(494)] = 12316, + [SMALL_STATE(495)] = 12329, + [SMALL_STATE(496)] = 12342, + [SMALL_STATE(497)] = 12355, + [SMALL_STATE(498)] = 12368, + [SMALL_STATE(499)] = 12381, + [SMALL_STATE(500)] = 12394, + [SMALL_STATE(501)] = 12407, + [SMALL_STATE(502)] = 12420, + [SMALL_STATE(503)] = 12433, + [SMALL_STATE(504)] = 12446, + [SMALL_STATE(505)] = 12459, + [SMALL_STATE(506)] = 12472, + [SMALL_STATE(507)] = 12485, + [SMALL_STATE(508)] = 12498, + [SMALL_STATE(509)] = 12511, + [SMALL_STATE(510)] = 12524, + [SMALL_STATE(511)] = 12537, + [SMALL_STATE(512)] = 12550, + [SMALL_STATE(513)] = 12563, + [SMALL_STATE(514)] = 12576, + [SMALL_STATE(515)] = 12589, + [SMALL_STATE(516)] = 12602, + [SMALL_STATE(517)] = 12615, + [SMALL_STATE(518)] = 12628, + [SMALL_STATE(519)] = 12641, + [SMALL_STATE(520)] = 12654, + [SMALL_STATE(521)] = 12667, + [SMALL_STATE(522)] = 12680, + [SMALL_STATE(523)] = 12693, + [SMALL_STATE(524)] = 12706, + [SMALL_STATE(525)] = 12719, + [SMALL_STATE(526)] = 12732, + [SMALL_STATE(527)] = 12745, + [SMALL_STATE(528)] = 12758, + [SMALL_STATE(529)] = 12771, + [SMALL_STATE(530)] = 12784, + [SMALL_STATE(531)] = 12797, + [SMALL_STATE(532)] = 12810, + [SMALL_STATE(533)] = 12823, + [SMALL_STATE(534)] = 12836, + [SMALL_STATE(535)] = 12849, + [SMALL_STATE(536)] = 12862, + [SMALL_STATE(537)] = 12875, + [SMALL_STATE(538)] = 12888, + [SMALL_STATE(539)] = 12901, + [SMALL_STATE(540)] = 12914, + [SMALL_STATE(541)] = 12927, + [SMALL_STATE(542)] = 12940, + [SMALL_STATE(543)] = 12953, + [SMALL_STATE(544)] = 12966, + [SMALL_STATE(545)] = 12979, + [SMALL_STATE(546)] = 12992, + [SMALL_STATE(547)] = 13002, + [SMALL_STATE(548)] = 13008, + [SMALL_STATE(549)] = 13014, [SMALL_STATE(550)] = 13020, - [SMALL_STATE(551)] = 13030, - [SMALL_STATE(552)] = 13040, - [SMALL_STATE(553)] = 13050, - [SMALL_STATE(554)] = 13060, - [SMALL_STATE(555)] = 13070, - [SMALL_STATE(556)] = 13080, - [SMALL_STATE(557)] = 13090, - [SMALL_STATE(558)] = 13100, - [SMALL_STATE(559)] = 13106, - [SMALL_STATE(560)] = 13112, - [SMALL_STATE(561)] = 13122, - [SMALL_STATE(562)] = 13128, - [SMALL_STATE(563)] = 13136, - [SMALL_STATE(564)] = 13144, - [SMALL_STATE(565)] = 13152, - [SMALL_STATE(566)] = 13160, - [SMALL_STATE(567)] = 13170, - [SMALL_STATE(568)] = 13180, - [SMALL_STATE(569)] = 13190, - [SMALL_STATE(570)] = 13196, - [SMALL_STATE(571)] = 13202, - [SMALL_STATE(572)] = 13208, - [SMALL_STATE(573)] = 13214, - [SMALL_STATE(574)] = 13224, - [SMALL_STATE(575)] = 13234, - [SMALL_STATE(576)] = 13240, - [SMALL_STATE(577)] = 13248, - [SMALL_STATE(578)] = 13254, - [SMALL_STATE(579)] = 13264, - [SMALL_STATE(580)] = 13274, - [SMALL_STATE(581)] = 13280, - [SMALL_STATE(582)] = 13290, - [SMALL_STATE(583)] = 13300, - [SMALL_STATE(584)] = 13310, - [SMALL_STATE(585)] = 13320, - [SMALL_STATE(586)] = 13330, - [SMALL_STATE(587)] = 13336, - [SMALL_STATE(588)] = 13342, - [SMALL_STATE(589)] = 13348, - [SMALL_STATE(590)] = 13354, - [SMALL_STATE(591)] = 13360, - [SMALL_STATE(592)] = 13366, - [SMALL_STATE(593)] = 13376, - [SMALL_STATE(594)] = 13386, - [SMALL_STATE(595)] = 13396, - [SMALL_STATE(596)] = 13402, - [SMALL_STATE(597)] = 13412, - [SMALL_STATE(598)] = 13418, - [SMALL_STATE(599)] = 13424, - [SMALL_STATE(600)] = 13434, - [SMALL_STATE(601)] = 13440, - [SMALL_STATE(602)] = 13450, - [SMALL_STATE(603)] = 13460, - [SMALL_STATE(604)] = 13466, - [SMALL_STATE(605)] = 13472, - [SMALL_STATE(606)] = 13482, - [SMALL_STATE(607)] = 13492, - [SMALL_STATE(608)] = 13498, - [SMALL_STATE(609)] = 13504, - [SMALL_STATE(610)] = 13510, - [SMALL_STATE(611)] = 13516, - [SMALL_STATE(612)] = 13522, - [SMALL_STATE(613)] = 13528, - [SMALL_STATE(614)] = 13534, - [SMALL_STATE(615)] = 13540, - [SMALL_STATE(616)] = 13546, - [SMALL_STATE(617)] = 13552, - [SMALL_STATE(618)] = 13558, - [SMALL_STATE(619)] = 13564, - [SMALL_STATE(620)] = 13570, - [SMALL_STATE(621)] = 13576, - [SMALL_STATE(622)] = 13582, - [SMALL_STATE(623)] = 13588, - [SMALL_STATE(624)] = 13594, - [SMALL_STATE(625)] = 13604, - [SMALL_STATE(626)] = 13614, - [SMALL_STATE(627)] = 13624, - [SMALL_STATE(628)] = 13634, - [SMALL_STATE(629)] = 13644, - [SMALL_STATE(630)] = 13654, - [SMALL_STATE(631)] = 13660, - [SMALL_STATE(632)] = 13666, - [SMALL_STATE(633)] = 13672, - [SMALL_STATE(634)] = 13678, - [SMALL_STATE(635)] = 13684, - [SMALL_STATE(636)] = 13690, - [SMALL_STATE(637)] = 13696, - [SMALL_STATE(638)] = 13702, - [SMALL_STATE(639)] = 13708, - [SMALL_STATE(640)] = 13718, - [SMALL_STATE(641)] = 13724, - [SMALL_STATE(642)] = 13730, - [SMALL_STATE(643)] = 13738, - [SMALL_STATE(644)] = 13744, - [SMALL_STATE(645)] = 13750, - [SMALL_STATE(646)] = 13756, - [SMALL_STATE(647)] = 13764, - [SMALL_STATE(648)] = 13772, - [SMALL_STATE(649)] = 13782, - [SMALL_STATE(650)] = 13792, - [SMALL_STATE(651)] = 13800, - [SMALL_STATE(652)] = 13810, - [SMALL_STATE(653)] = 13820, - [SMALL_STATE(654)] = 13826, - [SMALL_STATE(655)] = 13836, - [SMALL_STATE(656)] = 13842, - [SMALL_STATE(657)] = 13848, - [SMALL_STATE(658)] = 13854, - [SMALL_STATE(659)] = 13860, - [SMALL_STATE(660)] = 13866, - [SMALL_STATE(661)] = 13874, - [SMALL_STATE(662)] = 13880, - [SMALL_STATE(663)] = 13886, - [SMALL_STATE(664)] = 13894, - [SMALL_STATE(665)] = 13902, - [SMALL_STATE(666)] = 13908, - [SMALL_STATE(667)] = 13914, - [SMALL_STATE(668)] = 13920, - [SMALL_STATE(669)] = 13926, - [SMALL_STATE(670)] = 13932, - [SMALL_STATE(671)] = 13938, - [SMALL_STATE(672)] = 13944, - [SMALL_STATE(673)] = 13950, - [SMALL_STATE(674)] = 13956, - [SMALL_STATE(675)] = 13964, - [SMALL_STATE(676)] = 13970, - [SMALL_STATE(677)] = 13976, - [SMALL_STATE(678)] = 13982, - [SMALL_STATE(679)] = 13987, - [SMALL_STATE(680)] = 13992, - [SMALL_STATE(681)] = 13997, - [SMALL_STATE(682)] = 14002, - [SMALL_STATE(683)] = 14007, - [SMALL_STATE(684)] = 14014, - [SMALL_STATE(685)] = 14019, - [SMALL_STATE(686)] = 14024, - [SMALL_STATE(687)] = 14029, - [SMALL_STATE(688)] = 14034, - [SMALL_STATE(689)] = 14039, - [SMALL_STATE(690)] = 14046, - [SMALL_STATE(691)] = 14051, - [SMALL_STATE(692)] = 14058, - [SMALL_STATE(693)] = 14065, - [SMALL_STATE(694)] = 14072, - [SMALL_STATE(695)] = 14077, - [SMALL_STATE(696)] = 14082, - [SMALL_STATE(697)] = 14087, - [SMALL_STATE(698)] = 14092, - [SMALL_STATE(699)] = 14097, - [SMALL_STATE(700)] = 14102, - [SMALL_STATE(701)] = 14107, - [SMALL_STATE(702)] = 14112, - [SMALL_STATE(703)] = 14119, - [SMALL_STATE(704)] = 14124, - [SMALL_STATE(705)] = 14129, - [SMALL_STATE(706)] = 14134, - [SMALL_STATE(707)] = 14139, - [SMALL_STATE(708)] = 14146, - [SMALL_STATE(709)] = 14151, - [SMALL_STATE(710)] = 14156, - [SMALL_STATE(711)] = 14161, - [SMALL_STATE(712)] = 14166, - [SMALL_STATE(713)] = 14171, - [SMALL_STATE(714)] = 14178, - [SMALL_STATE(715)] = 14183, - [SMALL_STATE(716)] = 14188, + [SMALL_STATE(551)] = 13026, + [SMALL_STATE(552)] = 13036, + [SMALL_STATE(553)] = 13046, + [SMALL_STATE(554)] = 13052, + [SMALL_STATE(555)] = 13062, + [SMALL_STATE(556)] = 13068, + [SMALL_STATE(557)] = 13074, + [SMALL_STATE(558)] = 13080, + [SMALL_STATE(559)] = 13090, + [SMALL_STATE(560)] = 13096, + [SMALL_STATE(561)] = 13102, + [SMALL_STATE(562)] = 13108, + [SMALL_STATE(563)] = 13114, + [SMALL_STATE(564)] = 13120, + [SMALL_STATE(565)] = 13126, + [SMALL_STATE(566)] = 13132, + [SMALL_STATE(567)] = 13138, + [SMALL_STATE(568)] = 13144, + [SMALL_STATE(569)] = 13150, + [SMALL_STATE(570)] = 13156, + [SMALL_STATE(571)] = 13162, + [SMALL_STATE(572)] = 13168, + [SMALL_STATE(573)] = 13174, + [SMALL_STATE(574)] = 13180, + [SMALL_STATE(575)] = 13186, + [SMALL_STATE(576)] = 13192, + [SMALL_STATE(577)] = 13198, + [SMALL_STATE(578)] = 13204, + [SMALL_STATE(579)] = 13210, + [SMALL_STATE(580)] = 13216, + [SMALL_STATE(581)] = 13222, + [SMALL_STATE(582)] = 13232, + [SMALL_STATE(583)] = 13238, + [SMALL_STATE(584)] = 13244, + [SMALL_STATE(585)] = 13250, + [SMALL_STATE(586)] = 13256, + [SMALL_STATE(587)] = 13262, + [SMALL_STATE(588)] = 13268, + [SMALL_STATE(589)] = 13274, + [SMALL_STATE(590)] = 13280, + [SMALL_STATE(591)] = 13286, + [SMALL_STATE(592)] = 13292, + [SMALL_STATE(593)] = 13298, + [SMALL_STATE(594)] = 13304, + [SMALL_STATE(595)] = 13310, + [SMALL_STATE(596)] = 13316, + [SMALL_STATE(597)] = 13322, + [SMALL_STATE(598)] = 13328, + [SMALL_STATE(599)] = 13334, + [SMALL_STATE(600)] = 13340, + [SMALL_STATE(601)] = 13346, + [SMALL_STATE(602)] = 13352, + [SMALL_STATE(603)] = 13358, + [SMALL_STATE(604)] = 13364, + [SMALL_STATE(605)] = 13374, + [SMALL_STATE(606)] = 13384, + [SMALL_STATE(607)] = 13390, + [SMALL_STATE(608)] = 13400, + [SMALL_STATE(609)] = 13410, + [SMALL_STATE(610)] = 13420, + [SMALL_STATE(611)] = 13430, + [SMALL_STATE(612)] = 13440, + [SMALL_STATE(613)] = 13450, + [SMALL_STATE(614)] = 13460, + [SMALL_STATE(615)] = 13466, + [SMALL_STATE(616)] = 13472, + [SMALL_STATE(617)] = 13482, + [SMALL_STATE(618)] = 13492, + [SMALL_STATE(619)] = 13498, + [SMALL_STATE(620)] = 13508, + [SMALL_STATE(621)] = 13518, + [SMALL_STATE(622)] = 13524, + [SMALL_STATE(623)] = 13530, + [SMALL_STATE(624)] = 13540, + [SMALL_STATE(625)] = 13546, + [SMALL_STATE(626)] = 13554, + [SMALL_STATE(627)] = 13560, + [SMALL_STATE(628)] = 13568, + [SMALL_STATE(629)] = 13578, + [SMALL_STATE(630)] = 13588, + [SMALL_STATE(631)] = 13594, + [SMALL_STATE(632)] = 13600, + [SMALL_STATE(633)] = 13610, + [SMALL_STATE(634)] = 13620, + [SMALL_STATE(635)] = 13630, + [SMALL_STATE(636)] = 13638, + [SMALL_STATE(637)] = 13644, + [SMALL_STATE(638)] = 13652, + [SMALL_STATE(639)] = 13660, + [SMALL_STATE(640)] = 13668, + [SMALL_STATE(641)] = 13676, + [SMALL_STATE(642)] = 13684, + [SMALL_STATE(643)] = 13690, + [SMALL_STATE(644)] = 13700, + [SMALL_STATE(645)] = 13710, + [SMALL_STATE(646)] = 13718, + [SMALL_STATE(647)] = 13728, + [SMALL_STATE(648)] = 13738, + [SMALL_STATE(649)] = 13748, + [SMALL_STATE(650)] = 13758, + [SMALL_STATE(651)] = 13768, + [SMALL_STATE(652)] = 13776, + [SMALL_STATE(653)] = 13782, + [SMALL_STATE(654)] = 13788, + [SMALL_STATE(655)] = 13796, + [SMALL_STATE(656)] = 13804, + [SMALL_STATE(657)] = 13812, + [SMALL_STATE(658)] = 13822, + [SMALL_STATE(659)] = 13832, + [SMALL_STATE(660)] = 13842, + [SMALL_STATE(661)] = 13848, + [SMALL_STATE(662)] = 13858, + [SMALL_STATE(663)] = 13868, + [SMALL_STATE(664)] = 13878, + [SMALL_STATE(665)] = 13884, + [SMALL_STATE(666)] = 13890, + [SMALL_STATE(667)] = 13896, + [SMALL_STATE(668)] = 13902, + [SMALL_STATE(669)] = 13912, + [SMALL_STATE(670)] = 13918, + [SMALL_STATE(671)] = 13924, + [SMALL_STATE(672)] = 13934, + [SMALL_STATE(673)] = 13942, + [SMALL_STATE(674)] = 13948, + [SMALL_STATE(675)] = 13958, + [SMALL_STATE(676)] = 13968, + [SMALL_STATE(677)] = 13978, + [SMALL_STATE(678)] = 13988, + [SMALL_STATE(679)] = 13995, + [SMALL_STATE(680)] = 14000, + [SMALL_STATE(681)] = 14005, + [SMALL_STATE(682)] = 14010, + [SMALL_STATE(683)] = 14015, + [SMALL_STATE(684)] = 14020, + [SMALL_STATE(685)] = 14025, + [SMALL_STATE(686)] = 14030, + [SMALL_STATE(687)] = 14035, + [SMALL_STATE(688)] = 14042, + [SMALL_STATE(689)] = 14049, + [SMALL_STATE(690)] = 14054, + [SMALL_STATE(691)] = 14061, + [SMALL_STATE(692)] = 14066, + [SMALL_STATE(693)] = 14071, + [SMALL_STATE(694)] = 14078, + [SMALL_STATE(695)] = 14083, + [SMALL_STATE(696)] = 14088, + [SMALL_STATE(697)] = 14093, + [SMALL_STATE(698)] = 14098, + [SMALL_STATE(699)] = 14103, + [SMALL_STATE(700)] = 14108, + [SMALL_STATE(701)] = 14113, + [SMALL_STATE(702)] = 14118, + [SMALL_STATE(703)] = 14123, + [SMALL_STATE(704)] = 14128, + [SMALL_STATE(705)] = 14133, + [SMALL_STATE(706)] = 14138, + [SMALL_STATE(707)] = 14143, + [SMALL_STATE(708)] = 14148, + [SMALL_STATE(709)] = 14153, + [SMALL_STATE(710)] = 14158, + [SMALL_STATE(711)] = 14163, + [SMALL_STATE(712)] = 14168, + [SMALL_STATE(713)] = 14175, + [SMALL_STATE(714)] = 14180, + [SMALL_STATE(715)] = 14185, + [SMALL_STATE(716)] = 14190, [SMALL_STATE(717)] = 14195, - [SMALL_STATE(718)] = 14202, - [SMALL_STATE(719)] = 14207, + [SMALL_STATE(718)] = 14200, + [SMALL_STATE(719)] = 14205, [SMALL_STATE(720)] = 14212, [SMALL_STATE(721)] = 14219, - [SMALL_STATE(722)] = 14226, - [SMALL_STATE(723)] = 14231, + [SMALL_STATE(722)] = 14224, + [SMALL_STATE(723)] = 14229, [SMALL_STATE(724)] = 14236, [SMALL_STATE(725)] = 14241, - [SMALL_STATE(726)] = 14248, - [SMALL_STATE(727)] = 14253, + [SMALL_STATE(726)] = 14246, + [SMALL_STATE(727)] = 14251, [SMALL_STATE(728)] = 14258, - [SMALL_STATE(729)] = 14265, - [SMALL_STATE(730)] = 14270, - [SMALL_STATE(731)] = 14275, - [SMALL_STATE(732)] = 14280, - [SMALL_STATE(733)] = 14287, - [SMALL_STATE(734)] = 14292, - [SMALL_STATE(735)] = 14299, - [SMALL_STATE(736)] = 14306, - [SMALL_STATE(737)] = 14313, - [SMALL_STATE(738)] = 14320, - [SMALL_STATE(739)] = 14325, - [SMALL_STATE(740)] = 14330, - [SMALL_STATE(741)] = 14335, - [SMALL_STATE(742)] = 14340, - [SMALL_STATE(743)] = 14345, - [SMALL_STATE(744)] = 14350, - [SMALL_STATE(745)] = 14355, - [SMALL_STATE(746)] = 14360, - [SMALL_STATE(747)] = 14365, - [SMALL_STATE(748)] = 14370, - [SMALL_STATE(749)] = 14375, - [SMALL_STATE(750)] = 14380, - [SMALL_STATE(751)] = 14385, - [SMALL_STATE(752)] = 14392, - [SMALL_STATE(753)] = 14397, - [SMALL_STATE(754)] = 14402, - [SMALL_STATE(755)] = 14407, - [SMALL_STATE(756)] = 14412, - [SMALL_STATE(757)] = 14419, - [SMALL_STATE(758)] = 14424, - [SMALL_STATE(759)] = 14431, - [SMALL_STATE(760)] = 14436, - [SMALL_STATE(761)] = 14441, - [SMALL_STATE(762)] = 14446, - [SMALL_STATE(763)] = 14453, - [SMALL_STATE(764)] = 14458, - [SMALL_STATE(765)] = 14463, - [SMALL_STATE(766)] = 14468, - [SMALL_STATE(767)] = 14473, - [SMALL_STATE(768)] = 14480, - [SMALL_STATE(769)] = 14485, - [SMALL_STATE(770)] = 14490, - [SMALL_STATE(771)] = 14495, - [SMALL_STATE(772)] = 14500, - [SMALL_STATE(773)] = 14505, - [SMALL_STATE(774)] = 14510, - [SMALL_STATE(775)] = 14515, - [SMALL_STATE(776)] = 14522, - [SMALL_STATE(777)] = 14527, - [SMALL_STATE(778)] = 14532, - [SMALL_STATE(779)] = 14537, - [SMALL_STATE(780)] = 14542, - [SMALL_STATE(781)] = 14547, - [SMALL_STATE(782)] = 14552, - [SMALL_STATE(783)] = 14557, - [SMALL_STATE(784)] = 14562, - [SMALL_STATE(785)] = 14567, - [SMALL_STATE(786)] = 14574, - [SMALL_STATE(787)] = 14579, - [SMALL_STATE(788)] = 14584, - [SMALL_STATE(789)] = 14589, - [SMALL_STATE(790)] = 14596, - [SMALL_STATE(791)] = 14601, - [SMALL_STATE(792)] = 14606, - [SMALL_STATE(793)] = 14611, + [SMALL_STATE(729)] = 14263, + [SMALL_STATE(730)] = 14268, + [SMALL_STATE(731)] = 14273, + [SMALL_STATE(732)] = 14278, + [SMALL_STATE(733)] = 14283, + [SMALL_STATE(734)] = 14288, + [SMALL_STATE(735)] = 14295, + [SMALL_STATE(736)] = 14300, + [SMALL_STATE(737)] = 14305, + [SMALL_STATE(738)] = 14310, + [SMALL_STATE(739)] = 14315, + [SMALL_STATE(740)] = 14320, + [SMALL_STATE(741)] = 14327, + [SMALL_STATE(742)] = 14332, + [SMALL_STATE(743)] = 14337, + [SMALL_STATE(744)] = 14342, + [SMALL_STATE(745)] = 14347, + [SMALL_STATE(746)] = 14352, + [SMALL_STATE(747)] = 14359, + [SMALL_STATE(748)] = 14364, + [SMALL_STATE(749)] = 14371, + [SMALL_STATE(750)] = 14378, + [SMALL_STATE(751)] = 14383, + [SMALL_STATE(752)] = 14388, + [SMALL_STATE(753)] = 14393, + [SMALL_STATE(754)] = 14398, + [SMALL_STATE(755)] = 14403, + [SMALL_STATE(756)] = 14408, + [SMALL_STATE(757)] = 14413, + [SMALL_STATE(758)] = 14420, + [SMALL_STATE(759)] = 14427, + [SMALL_STATE(760)] = 14432, + [SMALL_STATE(761)] = 14437, + [SMALL_STATE(762)] = 14442, + [SMALL_STATE(763)] = 14449, + [SMALL_STATE(764)] = 14456, + [SMALL_STATE(765)] = 14461, + [SMALL_STATE(766)] = 14466, + [SMALL_STATE(767)] = 14471, + [SMALL_STATE(768)] = 14476, + [SMALL_STATE(769)] = 14481, + [SMALL_STATE(770)] = 14486, + [SMALL_STATE(771)] = 14491, + [SMALL_STATE(772)] = 14496, + [SMALL_STATE(773)] = 14501, + [SMALL_STATE(774)] = 14506, + [SMALL_STATE(775)] = 14511, + [SMALL_STATE(776)] = 14516, + [SMALL_STATE(777)] = 14521, + [SMALL_STATE(778)] = 14526, + [SMALL_STATE(779)] = 14531, + [SMALL_STATE(780)] = 14536, + [SMALL_STATE(781)] = 14543, + [SMALL_STATE(782)] = 14548, + [SMALL_STATE(783)] = 14553, + [SMALL_STATE(784)] = 14558, + [SMALL_STATE(785)] = 14563, + [SMALL_STATE(786)] = 14568, + [SMALL_STATE(787)] = 14573, + [SMALL_STATE(788)] = 14580, + [SMALL_STATE(789)] = 14585, + [SMALL_STATE(790)] = 14590, + [SMALL_STATE(791)] = 14597, + [SMALL_STATE(792)] = 14604, + [SMALL_STATE(793)] = 14609, [SMALL_STATE(794)] = 14616, [SMALL_STATE(795)] = 14621, - [SMALL_STATE(796)] = 14628, - [SMALL_STATE(797)] = 14633, - [SMALL_STATE(798)] = 14640, - [SMALL_STATE(799)] = 14647, - [SMALL_STATE(800)] = 14652, - [SMALL_STATE(801)] = 14657, - [SMALL_STATE(802)] = 14664, - [SMALL_STATE(803)] = 14671, - [SMALL_STATE(804)] = 14676, - [SMALL_STATE(805)] = 14683, - [SMALL_STATE(806)] = 14688, - [SMALL_STATE(807)] = 14693, - [SMALL_STATE(808)] = 14698, - [SMALL_STATE(809)] = 14703, - [SMALL_STATE(810)] = 14708, - [SMALL_STATE(811)] = 14713, - [SMALL_STATE(812)] = 14718, - [SMALL_STATE(813)] = 14723, - [SMALL_STATE(814)] = 14728, - [SMALL_STATE(815)] = 14735, - [SMALL_STATE(816)] = 14740, - [SMALL_STATE(817)] = 14745, - [SMALL_STATE(818)] = 14750, - [SMALL_STATE(819)] = 14755, - [SMALL_STATE(820)] = 14760, - [SMALL_STATE(821)] = 14767, - [SMALL_STATE(822)] = 14772, - [SMALL_STATE(823)] = 14777, - [SMALL_STATE(824)] = 14782, - [SMALL_STATE(825)] = 14787, - [SMALL_STATE(826)] = 14794, - [SMALL_STATE(827)] = 14801, - [SMALL_STATE(828)] = 14806, - [SMALL_STATE(829)] = 14813, - [SMALL_STATE(830)] = 14818, - [SMALL_STATE(831)] = 14825, - [SMALL_STATE(832)] = 14830, - [SMALL_STATE(833)] = 14837, - [SMALL_STATE(834)] = 14844, - [SMALL_STATE(835)] = 14849, - [SMALL_STATE(836)] = 14856, - [SMALL_STATE(837)] = 14863, - [SMALL_STATE(838)] = 14868, - [SMALL_STATE(839)] = 14873, - [SMALL_STATE(840)] = 14878, + [SMALL_STATE(796)] = 14626, + [SMALL_STATE(797)] = 14631, + [SMALL_STATE(798)] = 14636, + [SMALL_STATE(799)] = 14641, + [SMALL_STATE(800)] = 14646, + [SMALL_STATE(801)] = 14653, + [SMALL_STATE(802)] = 14658, + [SMALL_STATE(803)] = 14663, + [SMALL_STATE(804)] = 14668, + [SMALL_STATE(805)] = 14673, + [SMALL_STATE(806)] = 14678, + [SMALL_STATE(807)] = 14683, + [SMALL_STATE(808)] = 14688, + [SMALL_STATE(809)] = 14693, + [SMALL_STATE(810)] = 14698, + [SMALL_STATE(811)] = 14703, + [SMALL_STATE(812)] = 14708, + [SMALL_STATE(813)] = 14713, + [SMALL_STATE(814)] = 14718, + [SMALL_STATE(815)] = 14723, + [SMALL_STATE(816)] = 14728, + [SMALL_STATE(817)] = 14733, + [SMALL_STATE(818)] = 14740, + [SMALL_STATE(819)] = 14745, + [SMALL_STATE(820)] = 14752, + [SMALL_STATE(821)] = 14759, + [SMALL_STATE(822)] = 14764, + [SMALL_STATE(823)] = 14769, + [SMALL_STATE(824)] = 14776, + [SMALL_STATE(825)] = 14781, + [SMALL_STATE(826)] = 14788, + [SMALL_STATE(827)] = 14795, + [SMALL_STATE(828)] = 14802, + [SMALL_STATE(829)] = 14807, + [SMALL_STATE(830)] = 14812, + [SMALL_STATE(831)] = 14819, + [SMALL_STATE(832)] = 14826, + [SMALL_STATE(833)] = 14833, + [SMALL_STATE(834)] = 14840, + [SMALL_STATE(835)] = 14847, + [SMALL_STATE(836)] = 14852, + [SMALL_STATE(837)] = 14857, + [SMALL_STATE(838)] = 14862, + [SMALL_STATE(839)] = 14869, + [SMALL_STATE(840)] = 14876, [SMALL_STATE(841)] = 14883, - [SMALL_STATE(842)] = 14888, - [SMALL_STATE(843)] = 14893, - [SMALL_STATE(844)] = 14898, - [SMALL_STATE(845)] = 14905, - [SMALL_STATE(846)] = 14910, - [SMALL_STATE(847)] = 14915, - [SMALL_STATE(848)] = 14920, - [SMALL_STATE(849)] = 14925, - [SMALL_STATE(850)] = 14930, - [SMALL_STATE(851)] = 14937, - [SMALL_STATE(852)] = 14944, - [SMALL_STATE(853)] = 14949, - [SMALL_STATE(854)] = 14954, - [SMALL_STATE(855)] = 14961, - [SMALL_STATE(856)] = 14968, - [SMALL_STATE(857)] = 14975, - [SMALL_STATE(858)] = 14982, - [SMALL_STATE(859)] = 14989, - [SMALL_STATE(860)] = 14996, - [SMALL_STATE(861)] = 15001, - [SMALL_STATE(862)] = 15008, - [SMALL_STATE(863)] = 15015, - [SMALL_STATE(864)] = 15022, - [SMALL_STATE(865)] = 15029, - [SMALL_STATE(866)] = 15036, - [SMALL_STATE(867)] = 15043, - [SMALL_STATE(868)] = 15048, - [SMALL_STATE(869)] = 15055, - [SMALL_STATE(870)] = 15062, - [SMALL_STATE(871)] = 15069, - [SMALL_STATE(872)] = 15076, - [SMALL_STATE(873)] = 15083, - [SMALL_STATE(874)] = 15090, - [SMALL_STATE(875)] = 15095, - [SMALL_STATE(876)] = 15102, - [SMALL_STATE(877)] = 15109, - [SMALL_STATE(878)] = 15116, - [SMALL_STATE(879)] = 15123, - [SMALL_STATE(880)] = 15130, - [SMALL_STATE(881)] = 15137, - [SMALL_STATE(882)] = 15144, - [SMALL_STATE(883)] = 15151, - [SMALL_STATE(884)] = 15158, - [SMALL_STATE(885)] = 15165, - [SMALL_STATE(886)] = 15172, - [SMALL_STATE(887)] = 15179, - [SMALL_STATE(888)] = 15186, - [SMALL_STATE(889)] = 15193, - [SMALL_STATE(890)] = 15200, - [SMALL_STATE(891)] = 15207, - [SMALL_STATE(892)] = 15214, - [SMALL_STATE(893)] = 15221, - [SMALL_STATE(894)] = 15226, - [SMALL_STATE(895)] = 15230, - [SMALL_STATE(896)] = 15234, - [SMALL_STATE(897)] = 15238, - [SMALL_STATE(898)] = 15242, - [SMALL_STATE(899)] = 15246, - [SMALL_STATE(900)] = 15250, - [SMALL_STATE(901)] = 15254, - [SMALL_STATE(902)] = 15258, - [SMALL_STATE(903)] = 15262, - [SMALL_STATE(904)] = 15266, - [SMALL_STATE(905)] = 15270, - [SMALL_STATE(906)] = 15274, - [SMALL_STATE(907)] = 15278, - [SMALL_STATE(908)] = 15282, - [SMALL_STATE(909)] = 15286, - [SMALL_STATE(910)] = 15290, - [SMALL_STATE(911)] = 15294, - [SMALL_STATE(912)] = 15298, - [SMALL_STATE(913)] = 15302, - [SMALL_STATE(914)] = 15306, - [SMALL_STATE(915)] = 15310, - [SMALL_STATE(916)] = 15314, - [SMALL_STATE(917)] = 15318, - [SMALL_STATE(918)] = 15322, - [SMALL_STATE(919)] = 15326, - [SMALL_STATE(920)] = 15330, - [SMALL_STATE(921)] = 15334, - [SMALL_STATE(922)] = 15338, - [SMALL_STATE(923)] = 15342, - [SMALL_STATE(924)] = 15346, - [SMALL_STATE(925)] = 15350, - [SMALL_STATE(926)] = 15354, - [SMALL_STATE(927)] = 15358, - [SMALL_STATE(928)] = 15362, - [SMALL_STATE(929)] = 15366, - [SMALL_STATE(930)] = 15370, - [SMALL_STATE(931)] = 15374, - [SMALL_STATE(932)] = 15378, - [SMALL_STATE(933)] = 15382, - [SMALL_STATE(934)] = 15386, - [SMALL_STATE(935)] = 15390, - [SMALL_STATE(936)] = 15394, - [SMALL_STATE(937)] = 15398, - [SMALL_STATE(938)] = 15402, - [SMALL_STATE(939)] = 15406, - [SMALL_STATE(940)] = 15410, - [SMALL_STATE(941)] = 15414, - [SMALL_STATE(942)] = 15418, - [SMALL_STATE(943)] = 15422, - [SMALL_STATE(944)] = 15426, - [SMALL_STATE(945)] = 15430, - [SMALL_STATE(946)] = 15434, - [SMALL_STATE(947)] = 15438, - [SMALL_STATE(948)] = 15442, - [SMALL_STATE(949)] = 15446, - [SMALL_STATE(950)] = 15450, - [SMALL_STATE(951)] = 15454, - [SMALL_STATE(952)] = 15458, - [SMALL_STATE(953)] = 15462, - [SMALL_STATE(954)] = 15466, - [SMALL_STATE(955)] = 15470, - [SMALL_STATE(956)] = 15474, - [SMALL_STATE(957)] = 15478, - [SMALL_STATE(958)] = 15482, - [SMALL_STATE(959)] = 15486, - [SMALL_STATE(960)] = 15490, - [SMALL_STATE(961)] = 15494, - [SMALL_STATE(962)] = 15498, - [SMALL_STATE(963)] = 15502, - [SMALL_STATE(964)] = 15506, - [SMALL_STATE(965)] = 15510, - [SMALL_STATE(966)] = 15514, - [SMALL_STATE(967)] = 15518, - [SMALL_STATE(968)] = 15522, - [SMALL_STATE(969)] = 15526, - [SMALL_STATE(970)] = 15530, - [SMALL_STATE(971)] = 15534, - [SMALL_STATE(972)] = 15538, - [SMALL_STATE(973)] = 15542, - [SMALL_STATE(974)] = 15546, - [SMALL_STATE(975)] = 15550, - [SMALL_STATE(976)] = 15554, - [SMALL_STATE(977)] = 15558, - [SMALL_STATE(978)] = 15562, - [SMALL_STATE(979)] = 15566, - [SMALL_STATE(980)] = 15570, - [SMALL_STATE(981)] = 15574, - [SMALL_STATE(982)] = 15578, - [SMALL_STATE(983)] = 15582, - [SMALL_STATE(984)] = 15586, - [SMALL_STATE(985)] = 15590, - [SMALL_STATE(986)] = 15594, - [SMALL_STATE(987)] = 15598, - [SMALL_STATE(988)] = 15602, - [SMALL_STATE(989)] = 15606, - [SMALL_STATE(990)] = 15610, - [SMALL_STATE(991)] = 15614, - [SMALL_STATE(992)] = 15618, - [SMALL_STATE(993)] = 15622, - [SMALL_STATE(994)] = 15626, - [SMALL_STATE(995)] = 15630, - [SMALL_STATE(996)] = 15634, - [SMALL_STATE(997)] = 15638, - [SMALL_STATE(998)] = 15642, - [SMALL_STATE(999)] = 15646, - [SMALL_STATE(1000)] = 15650, - [SMALL_STATE(1001)] = 15654, - [SMALL_STATE(1002)] = 15658, - [SMALL_STATE(1003)] = 15662, - [SMALL_STATE(1004)] = 15666, - [SMALL_STATE(1005)] = 15670, - [SMALL_STATE(1006)] = 15674, - [SMALL_STATE(1007)] = 15678, - [SMALL_STATE(1008)] = 15682, - [SMALL_STATE(1009)] = 15686, - [SMALL_STATE(1010)] = 15690, - [SMALL_STATE(1011)] = 15694, - [SMALL_STATE(1012)] = 15698, - [SMALL_STATE(1013)] = 15702, - [SMALL_STATE(1014)] = 15706, - [SMALL_STATE(1015)] = 15710, - [SMALL_STATE(1016)] = 15714, - [SMALL_STATE(1017)] = 15718, - [SMALL_STATE(1018)] = 15722, - [SMALL_STATE(1019)] = 15726, - [SMALL_STATE(1020)] = 15730, - [SMALL_STATE(1021)] = 15734, - [SMALL_STATE(1022)] = 15738, - [SMALL_STATE(1023)] = 15742, - [SMALL_STATE(1024)] = 15746, - [SMALL_STATE(1025)] = 15750, - [SMALL_STATE(1026)] = 15754, - [SMALL_STATE(1027)] = 15758, - [SMALL_STATE(1028)] = 15762, - [SMALL_STATE(1029)] = 15766, - [SMALL_STATE(1030)] = 15770, - [SMALL_STATE(1031)] = 15774, - [SMALL_STATE(1032)] = 15778, - [SMALL_STATE(1033)] = 15782, - [SMALL_STATE(1034)] = 15786, - [SMALL_STATE(1035)] = 15790, - [SMALL_STATE(1036)] = 15794, - [SMALL_STATE(1037)] = 15798, - [SMALL_STATE(1038)] = 15802, - [SMALL_STATE(1039)] = 15806, - [SMALL_STATE(1040)] = 15810, - [SMALL_STATE(1041)] = 15814, - [SMALL_STATE(1042)] = 15818, - [SMALL_STATE(1043)] = 15822, - [SMALL_STATE(1044)] = 15826, - [SMALL_STATE(1045)] = 15830, - [SMALL_STATE(1046)] = 15834, - [SMALL_STATE(1047)] = 15838, - [SMALL_STATE(1048)] = 15842, - [SMALL_STATE(1049)] = 15846, - [SMALL_STATE(1050)] = 15850, - [SMALL_STATE(1051)] = 15854, - [SMALL_STATE(1052)] = 15858, - [SMALL_STATE(1053)] = 15862, - [SMALL_STATE(1054)] = 15866, - [SMALL_STATE(1055)] = 15870, - [SMALL_STATE(1056)] = 15874, - [SMALL_STATE(1057)] = 15878, - [SMALL_STATE(1058)] = 15882, - [SMALL_STATE(1059)] = 15886, - [SMALL_STATE(1060)] = 15890, - [SMALL_STATE(1061)] = 15894, - [SMALL_STATE(1062)] = 15898, - [SMALL_STATE(1063)] = 15902, - [SMALL_STATE(1064)] = 15906, - [SMALL_STATE(1065)] = 15910, - [SMALL_STATE(1066)] = 15914, - [SMALL_STATE(1067)] = 15918, - [SMALL_STATE(1068)] = 15922, - [SMALL_STATE(1069)] = 15926, - [SMALL_STATE(1070)] = 15930, - [SMALL_STATE(1071)] = 15934, - [SMALL_STATE(1072)] = 15938, - [SMALL_STATE(1073)] = 15942, - [SMALL_STATE(1074)] = 15946, - [SMALL_STATE(1075)] = 15950, - [SMALL_STATE(1076)] = 15954, - [SMALL_STATE(1077)] = 15958, - [SMALL_STATE(1078)] = 15962, - [SMALL_STATE(1079)] = 15966, - [SMALL_STATE(1080)] = 15970, - [SMALL_STATE(1081)] = 15974, - [SMALL_STATE(1082)] = 15978, - [SMALL_STATE(1083)] = 15982, - [SMALL_STATE(1084)] = 15986, - [SMALL_STATE(1085)] = 15990, - [SMALL_STATE(1086)] = 15994, - [SMALL_STATE(1087)] = 15998, - [SMALL_STATE(1088)] = 16002, - [SMALL_STATE(1089)] = 16006, - [SMALL_STATE(1090)] = 16010, - [SMALL_STATE(1091)] = 16014, - [SMALL_STATE(1092)] = 16018, - [SMALL_STATE(1093)] = 16022, - [SMALL_STATE(1094)] = 16026, - [SMALL_STATE(1095)] = 16030, - [SMALL_STATE(1096)] = 16034, - [SMALL_STATE(1097)] = 16038, - [SMALL_STATE(1098)] = 16042, - [SMALL_STATE(1099)] = 16046, - [SMALL_STATE(1100)] = 16050, - [SMALL_STATE(1101)] = 16054, - [SMALL_STATE(1102)] = 16058, - [SMALL_STATE(1103)] = 16062, - [SMALL_STATE(1104)] = 16066, - [SMALL_STATE(1105)] = 16070, - [SMALL_STATE(1106)] = 16074, - [SMALL_STATE(1107)] = 16078, - [SMALL_STATE(1108)] = 16082, - [SMALL_STATE(1109)] = 16086, - [SMALL_STATE(1110)] = 16090, - [SMALL_STATE(1111)] = 16094, - [SMALL_STATE(1112)] = 16098, - [SMALL_STATE(1113)] = 16102, - [SMALL_STATE(1114)] = 16106, - [SMALL_STATE(1115)] = 16110, - [SMALL_STATE(1116)] = 16114, - [SMALL_STATE(1117)] = 16118, - [SMALL_STATE(1118)] = 16122, - [SMALL_STATE(1119)] = 16126, - [SMALL_STATE(1120)] = 16130, - [SMALL_STATE(1121)] = 16134, - [SMALL_STATE(1122)] = 16138, - [SMALL_STATE(1123)] = 16142, - [SMALL_STATE(1124)] = 16146, - [SMALL_STATE(1125)] = 16150, - [SMALL_STATE(1126)] = 16154, - [SMALL_STATE(1127)] = 16158, - [SMALL_STATE(1128)] = 16162, - [SMALL_STATE(1129)] = 16166, - [SMALL_STATE(1130)] = 16170, - [SMALL_STATE(1131)] = 16174, - [SMALL_STATE(1132)] = 16178, - [SMALL_STATE(1133)] = 16182, - [SMALL_STATE(1134)] = 16186, - [SMALL_STATE(1135)] = 16190, - [SMALL_STATE(1136)] = 16194, - [SMALL_STATE(1137)] = 16198, - [SMALL_STATE(1138)] = 16202, - [SMALL_STATE(1139)] = 16206, - [SMALL_STATE(1140)] = 16210, - [SMALL_STATE(1141)] = 16214, - [SMALL_STATE(1142)] = 16218, - [SMALL_STATE(1143)] = 16222, - [SMALL_STATE(1144)] = 16226, - [SMALL_STATE(1145)] = 16230, - [SMALL_STATE(1146)] = 16234, - [SMALL_STATE(1147)] = 16238, - [SMALL_STATE(1148)] = 16242, - [SMALL_STATE(1149)] = 16246, - [SMALL_STATE(1150)] = 16250, - [SMALL_STATE(1151)] = 16254, + [SMALL_STATE(842)] = 14890, + [SMALL_STATE(843)] = 14897, + [SMALL_STATE(844)] = 14902, + [SMALL_STATE(845)] = 14909, + [SMALL_STATE(846)] = 14914, + [SMALL_STATE(847)] = 14919, + [SMALL_STATE(848)] = 14926, + [SMALL_STATE(849)] = 14933, + [SMALL_STATE(850)] = 14938, + [SMALL_STATE(851)] = 14943, + [SMALL_STATE(852)] = 14950, + [SMALL_STATE(853)] = 14957, + [SMALL_STATE(854)] = 14964, + [SMALL_STATE(855)] = 14971, + [SMALL_STATE(856)] = 14978, + [SMALL_STATE(857)] = 14985, + [SMALL_STATE(858)] = 14990, + [SMALL_STATE(859)] = 14997, + [SMALL_STATE(860)] = 15004, + [SMALL_STATE(861)] = 15011, + [SMALL_STATE(862)] = 15018, + [SMALL_STATE(863)] = 15025, + [SMALL_STATE(864)] = 15032, + [SMALL_STATE(865)] = 15037, + [SMALL_STATE(866)] = 15044, + [SMALL_STATE(867)] = 15051, + [SMALL_STATE(868)] = 15058, + [SMALL_STATE(869)] = 15065, + [SMALL_STATE(870)] = 15072, + [SMALL_STATE(871)] = 15079, + [SMALL_STATE(872)] = 15086, + [SMALL_STATE(873)] = 15093, + [SMALL_STATE(874)] = 15100, + [SMALL_STATE(875)] = 15107, + [SMALL_STATE(876)] = 15114, + [SMALL_STATE(877)] = 15121, + [SMALL_STATE(878)] = 15128, + [SMALL_STATE(879)] = 15135, + [SMALL_STATE(880)] = 15142, + [SMALL_STATE(881)] = 15149, + [SMALL_STATE(882)] = 15156, + [SMALL_STATE(883)] = 15163, + [SMALL_STATE(884)] = 15170, + [SMALL_STATE(885)] = 15177, + [SMALL_STATE(886)] = 15184, + [SMALL_STATE(887)] = 15191, + [SMALL_STATE(888)] = 15198, + [SMALL_STATE(889)] = 15205, + [SMALL_STATE(890)] = 15212, + [SMALL_STATE(891)] = 15217, + [SMALL_STATE(892)] = 15222, + [SMALL_STATE(893)] = 15227, + [SMALL_STATE(894)] = 15232, + [SMALL_STATE(895)] = 15236, + [SMALL_STATE(896)] = 15240, + [SMALL_STATE(897)] = 15244, + [SMALL_STATE(898)] = 15248, + [SMALL_STATE(899)] = 15252, + [SMALL_STATE(900)] = 15256, + [SMALL_STATE(901)] = 15260, + [SMALL_STATE(902)] = 15264, + [SMALL_STATE(903)] = 15268, + [SMALL_STATE(904)] = 15272, + [SMALL_STATE(905)] = 15276, + [SMALL_STATE(906)] = 15280, + [SMALL_STATE(907)] = 15284, + [SMALL_STATE(908)] = 15288, + [SMALL_STATE(909)] = 15292, + [SMALL_STATE(910)] = 15296, + [SMALL_STATE(911)] = 15300, + [SMALL_STATE(912)] = 15304, + [SMALL_STATE(913)] = 15308, + [SMALL_STATE(914)] = 15312, + [SMALL_STATE(915)] = 15316, + [SMALL_STATE(916)] = 15320, + [SMALL_STATE(917)] = 15324, + [SMALL_STATE(918)] = 15328, + [SMALL_STATE(919)] = 15332, + [SMALL_STATE(920)] = 15336, + [SMALL_STATE(921)] = 15340, + [SMALL_STATE(922)] = 15344, + [SMALL_STATE(923)] = 15348, + [SMALL_STATE(924)] = 15352, + [SMALL_STATE(925)] = 15356, + [SMALL_STATE(926)] = 15360, + [SMALL_STATE(927)] = 15364, + [SMALL_STATE(928)] = 15368, + [SMALL_STATE(929)] = 15372, + [SMALL_STATE(930)] = 15376, + [SMALL_STATE(931)] = 15380, + [SMALL_STATE(932)] = 15384, + [SMALL_STATE(933)] = 15388, + [SMALL_STATE(934)] = 15392, + [SMALL_STATE(935)] = 15396, + [SMALL_STATE(936)] = 15400, + [SMALL_STATE(937)] = 15404, + [SMALL_STATE(938)] = 15408, + [SMALL_STATE(939)] = 15412, + [SMALL_STATE(940)] = 15416, + [SMALL_STATE(941)] = 15420, + [SMALL_STATE(942)] = 15424, + [SMALL_STATE(943)] = 15428, + [SMALL_STATE(944)] = 15432, + [SMALL_STATE(945)] = 15436, + [SMALL_STATE(946)] = 15440, + [SMALL_STATE(947)] = 15444, + [SMALL_STATE(948)] = 15448, + [SMALL_STATE(949)] = 15452, + [SMALL_STATE(950)] = 15456, + [SMALL_STATE(951)] = 15460, + [SMALL_STATE(952)] = 15464, + [SMALL_STATE(953)] = 15468, + [SMALL_STATE(954)] = 15472, + [SMALL_STATE(955)] = 15476, + [SMALL_STATE(956)] = 15480, + [SMALL_STATE(957)] = 15484, + [SMALL_STATE(958)] = 15488, + [SMALL_STATE(959)] = 15492, + [SMALL_STATE(960)] = 15496, + [SMALL_STATE(961)] = 15500, + [SMALL_STATE(962)] = 15504, + [SMALL_STATE(963)] = 15508, + [SMALL_STATE(964)] = 15512, + [SMALL_STATE(965)] = 15516, + [SMALL_STATE(966)] = 15520, + [SMALL_STATE(967)] = 15524, + [SMALL_STATE(968)] = 15528, + [SMALL_STATE(969)] = 15532, + [SMALL_STATE(970)] = 15536, + [SMALL_STATE(971)] = 15540, + [SMALL_STATE(972)] = 15544, + [SMALL_STATE(973)] = 15548, + [SMALL_STATE(974)] = 15552, + [SMALL_STATE(975)] = 15556, + [SMALL_STATE(976)] = 15560, + [SMALL_STATE(977)] = 15564, + [SMALL_STATE(978)] = 15568, + [SMALL_STATE(979)] = 15572, + [SMALL_STATE(980)] = 15576, + [SMALL_STATE(981)] = 15580, + [SMALL_STATE(982)] = 15584, + [SMALL_STATE(983)] = 15588, + [SMALL_STATE(984)] = 15592, + [SMALL_STATE(985)] = 15596, + [SMALL_STATE(986)] = 15600, + [SMALL_STATE(987)] = 15604, + [SMALL_STATE(988)] = 15608, + [SMALL_STATE(989)] = 15612, + [SMALL_STATE(990)] = 15616, + [SMALL_STATE(991)] = 15620, + [SMALL_STATE(992)] = 15624, + [SMALL_STATE(993)] = 15628, + [SMALL_STATE(994)] = 15632, + [SMALL_STATE(995)] = 15636, + [SMALL_STATE(996)] = 15640, + [SMALL_STATE(997)] = 15644, + [SMALL_STATE(998)] = 15648, + [SMALL_STATE(999)] = 15652, + [SMALL_STATE(1000)] = 15656, + [SMALL_STATE(1001)] = 15660, + [SMALL_STATE(1002)] = 15664, + [SMALL_STATE(1003)] = 15668, + [SMALL_STATE(1004)] = 15672, + [SMALL_STATE(1005)] = 15676, + [SMALL_STATE(1006)] = 15680, + [SMALL_STATE(1007)] = 15684, + [SMALL_STATE(1008)] = 15688, + [SMALL_STATE(1009)] = 15692, + [SMALL_STATE(1010)] = 15696, + [SMALL_STATE(1011)] = 15700, + [SMALL_STATE(1012)] = 15704, + [SMALL_STATE(1013)] = 15708, + [SMALL_STATE(1014)] = 15712, + [SMALL_STATE(1015)] = 15716, + [SMALL_STATE(1016)] = 15720, + [SMALL_STATE(1017)] = 15724, + [SMALL_STATE(1018)] = 15728, + [SMALL_STATE(1019)] = 15732, + [SMALL_STATE(1020)] = 15736, + [SMALL_STATE(1021)] = 15740, + [SMALL_STATE(1022)] = 15744, + [SMALL_STATE(1023)] = 15748, + [SMALL_STATE(1024)] = 15752, + [SMALL_STATE(1025)] = 15756, + [SMALL_STATE(1026)] = 15760, + [SMALL_STATE(1027)] = 15764, + [SMALL_STATE(1028)] = 15768, + [SMALL_STATE(1029)] = 15772, + [SMALL_STATE(1030)] = 15776, + [SMALL_STATE(1031)] = 15780, + [SMALL_STATE(1032)] = 15784, + [SMALL_STATE(1033)] = 15788, + [SMALL_STATE(1034)] = 15792, + [SMALL_STATE(1035)] = 15796, + [SMALL_STATE(1036)] = 15800, + [SMALL_STATE(1037)] = 15804, + [SMALL_STATE(1038)] = 15808, + [SMALL_STATE(1039)] = 15812, + [SMALL_STATE(1040)] = 15816, + [SMALL_STATE(1041)] = 15820, + [SMALL_STATE(1042)] = 15824, + [SMALL_STATE(1043)] = 15828, + [SMALL_STATE(1044)] = 15832, + [SMALL_STATE(1045)] = 15836, + [SMALL_STATE(1046)] = 15840, + [SMALL_STATE(1047)] = 15844, + [SMALL_STATE(1048)] = 15848, + [SMALL_STATE(1049)] = 15852, + [SMALL_STATE(1050)] = 15856, + [SMALL_STATE(1051)] = 15860, + [SMALL_STATE(1052)] = 15864, + [SMALL_STATE(1053)] = 15868, + [SMALL_STATE(1054)] = 15872, + [SMALL_STATE(1055)] = 15876, + [SMALL_STATE(1056)] = 15880, + [SMALL_STATE(1057)] = 15884, + [SMALL_STATE(1058)] = 15888, + [SMALL_STATE(1059)] = 15892, + [SMALL_STATE(1060)] = 15896, + [SMALL_STATE(1061)] = 15900, + [SMALL_STATE(1062)] = 15904, + [SMALL_STATE(1063)] = 15908, + [SMALL_STATE(1064)] = 15912, + [SMALL_STATE(1065)] = 15916, + [SMALL_STATE(1066)] = 15920, + [SMALL_STATE(1067)] = 15924, + [SMALL_STATE(1068)] = 15928, + [SMALL_STATE(1069)] = 15932, + [SMALL_STATE(1070)] = 15936, + [SMALL_STATE(1071)] = 15940, + [SMALL_STATE(1072)] = 15944, + [SMALL_STATE(1073)] = 15948, + [SMALL_STATE(1074)] = 15952, + [SMALL_STATE(1075)] = 15956, + [SMALL_STATE(1076)] = 15960, + [SMALL_STATE(1077)] = 15964, + [SMALL_STATE(1078)] = 15968, + [SMALL_STATE(1079)] = 15972, + [SMALL_STATE(1080)] = 15976, + [SMALL_STATE(1081)] = 15980, + [SMALL_STATE(1082)] = 15984, + [SMALL_STATE(1083)] = 15988, + [SMALL_STATE(1084)] = 15992, + [SMALL_STATE(1085)] = 15996, + [SMALL_STATE(1086)] = 16000, + [SMALL_STATE(1087)] = 16004, + [SMALL_STATE(1088)] = 16008, + [SMALL_STATE(1089)] = 16012, + [SMALL_STATE(1090)] = 16016, + [SMALL_STATE(1091)] = 16020, + [SMALL_STATE(1092)] = 16024, + [SMALL_STATE(1093)] = 16028, + [SMALL_STATE(1094)] = 16032, + [SMALL_STATE(1095)] = 16036, + [SMALL_STATE(1096)] = 16040, + [SMALL_STATE(1097)] = 16044, + [SMALL_STATE(1098)] = 16048, + [SMALL_STATE(1099)] = 16052, + [SMALL_STATE(1100)] = 16056, + [SMALL_STATE(1101)] = 16060, + [SMALL_STATE(1102)] = 16064, + [SMALL_STATE(1103)] = 16068, + [SMALL_STATE(1104)] = 16072, + [SMALL_STATE(1105)] = 16076, + [SMALL_STATE(1106)] = 16080, + [SMALL_STATE(1107)] = 16084, + [SMALL_STATE(1108)] = 16088, + [SMALL_STATE(1109)] = 16092, + [SMALL_STATE(1110)] = 16096, + [SMALL_STATE(1111)] = 16100, + [SMALL_STATE(1112)] = 16104, + [SMALL_STATE(1113)] = 16108, + [SMALL_STATE(1114)] = 16112, + [SMALL_STATE(1115)] = 16116, + [SMALL_STATE(1116)] = 16120, + [SMALL_STATE(1117)] = 16124, + [SMALL_STATE(1118)] = 16128, + [SMALL_STATE(1119)] = 16132, + [SMALL_STATE(1120)] = 16136, + [SMALL_STATE(1121)] = 16140, + [SMALL_STATE(1122)] = 16144, + [SMALL_STATE(1123)] = 16148, + [SMALL_STATE(1124)] = 16152, + [SMALL_STATE(1125)] = 16156, + [SMALL_STATE(1126)] = 16160, + [SMALL_STATE(1127)] = 16164, + [SMALL_STATE(1128)] = 16168, + [SMALL_STATE(1129)] = 16172, + [SMALL_STATE(1130)] = 16176, + [SMALL_STATE(1131)] = 16180, + [SMALL_STATE(1132)] = 16184, + [SMALL_STATE(1133)] = 16188, + [SMALL_STATE(1134)] = 16192, + [SMALL_STATE(1135)] = 16196, + [SMALL_STATE(1136)] = 16200, + [SMALL_STATE(1137)] = 16204, + [SMALL_STATE(1138)] = 16208, + [SMALL_STATE(1139)] = 16212, + [SMALL_STATE(1140)] = 16216, + [SMALL_STATE(1141)] = 16220, + [SMALL_STATE(1142)] = 16224, + [SMALL_STATE(1143)] = 16228, + [SMALL_STATE(1144)] = 16232, + [SMALL_STATE(1145)] = 16236, + [SMALL_STATE(1146)] = 16240, + [SMALL_STATE(1147)] = 16244, + [SMALL_STATE(1148)] = 16248, + [SMALL_STATE(1149)] = 16252, + [SMALL_STATE(1150)] = 16256, + [SMALL_STATE(1151)] = 16260, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 0, 0, 0), - [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [75] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 1, 0, 0), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [97] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 2, 0, 0), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [95] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 2, 0, 0), + [97] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 1, 0, 0), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), [101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), - [103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(248), - [106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(833), - [109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(273), - [112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(125), - [115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(268), - [118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(835), - [121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(995), + [103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(250), + [106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(819), + [109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(271), + [112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(133), + [115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(265), + [118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(827), + [121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(986), [124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(27), [127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(49), [130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(40), - [133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(650), - [136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(232), - [139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(42), - [142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(45), + [133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(651), + [136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(236), + [139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(41), + [142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(43), [145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(46), [148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(47), [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(23), [154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(24), - [157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(29), + [157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(25), [160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(30), [163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(31), - [166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(33), + [166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(32), [169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(34), [172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(35), [175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(36), [178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(37), - [181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(39), + [181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(38), [184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(62), - [187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(235), - [190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(121), - [193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(814), - [196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(1141), - [199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(775), - [202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(247), - [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(246), - [208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(123), - [211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(1115), - [214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(59), - [217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(128), - [220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(885), - [223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(1117), - [226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(886), - [229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(256), - [232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(246), - [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(833), - [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(273), - [253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), - [255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(168), - [258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(268), - [261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(835), - [264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(1115), - [267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(27), - [270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(49), - [273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(40), - [276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(650), - [279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(232), - [282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(42), - [285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(45), - [288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(46), - [291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(47), - [294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(23), - [297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(24), - [300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(29), - [303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(30), - [306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(31), - [309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(33), - [312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(34), - [315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(35), - [318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(36), - [321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(37), - [324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(39), - [327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(59), - [330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(63), - [333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(128), - [336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(885), - [339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(1117), - [342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(886), - [345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(256), - [348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), - [366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(234), + [190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(185), + [193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(848), + [196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(943), + [199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(757), + [202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(245), + [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(261), + [210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(124), + [213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(1115), + [216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(59), + [219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(130), + [222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(882), + [225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(1117), + [228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(883), + [231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(255), + [234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(261), + [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(819), + [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(271), + [255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), + [257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(175), + [260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(265), + [263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(827), + [266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(1115), + [269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(27), + [272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(49), + [275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(40), + [278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(651), + [281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(236), + [284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(41), + [287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(43), + [290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(46), + [293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(47), + [296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(23), + [299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(24), + [302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(25), + [305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(30), + [308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(31), + [311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(32), + [314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(34), + [317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(35), + [320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(36), + [323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(37), + [326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(38), + [329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(59), + [332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(63), + [335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(130), + [338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(882), + [341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(1117), + [344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(883), + [347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 2, 0, 0), SHIFT_REPEAT(255), + [350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), + [366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), [372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), [410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), [412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), [426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), [428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), [430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), - [434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 1, 0, 1), - [462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 1, 0, 1), - [464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), - [472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), + [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 1, 0, 1), + [464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 1, 0, 1), + [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), + [472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), [492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 1, 0, 0), - [494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 1, 0, 0), SHIFT_REPEAT(235), + [494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 1, 0, 0), SHIFT_REPEAT(234), [497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 1, 0, 0), [499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 1, 0, 0), [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), [511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), [513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), [515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(455), - [518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(885), + [518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(882), [521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(1117), - [524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(886), - [527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(814), - [530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(1141), - [533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(775), + [524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(883), + [527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(848), + [530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(943), + [533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(757), [536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 2, 0, 0), [538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 2, 0, 0), [540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 5, 0, 20), [542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 5, 0, 20), [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 3, 0, 13), - [548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 3, 0, 13), - [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_header, 5, 0, 0), - [554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_header, 5, 0, 0), - [556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_separator, 5, 0, 0), - [558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_separator, 5, 0, 0), - [560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_row, 5, 0, 0), - [562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_row, 5, 0, 0), - [564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 6, 0, 27), - [568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 6, 0, 27), - [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 6, 0, 28), - [574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 6, 0, 28), - [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_or_two_newlines, 1, 0, 0), - [580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_or_two_newlines, 1, 0, 0), - [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_header, 5, 0, 0), + [548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_header, 5, 0, 0), + [550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_separator, 5, 0, 0), + [552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_separator, 5, 0, 0), + [554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_row, 5, 0, 0), + [556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_row, 5, 0, 0), + [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 6, 0, 27), + [562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 6, 0, 27), + [564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 6, 0, 28), + [568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 6, 0, 28), + [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_or_two_newlines, 1, 0, 0), + [574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_or_two_newlines, 1, 0, 0), + [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 3, 0, 13), + [580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 3, 0, 13), + [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), [584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_row, 2, 0, 0), [586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_row, 2, 0, 0), [588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 4, 0, 0), [590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 4, 0, 0), - [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), [594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heading, 3, 0, 4), [596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heading, 3, 0, 4), - [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), [600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_header, 4, 0, 0), [602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_header, 4, 0, 0), [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), [608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 5, 0, 24), [610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 5, 0, 24), - [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), [614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_separator, 4, 0, 0), [616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_separator, 4, 0, 0), [618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_row, 4, 0, 0), @@ -27908,893 +27929,894 @@ static const TSParseActionEntry ts_parse_actions[] = { [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_roman_parens, 2, 0, 0), - [664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_roman_parens, 2, 0, 0), - [666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frontmatter, 7, 0, 30), - [668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_frontmatter, 7, 0, 30), - [670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 7, 0, 22), - [672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 7, 0, 22), - [674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 7, 0, 23), - [676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 7, 0, 23), - [678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 7, 0, 31), - [680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 7, 0, 31), - [682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 7, 0, 20), - [684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 7, 0, 20), - [686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 8, 0, 27), - [688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 8, 0, 27), - [690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 8, 0, 32), - [692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 8, 0, 32), - [694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 8, 0, 33), - [696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 8, 0, 33), - [698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_footnote_content, 3, 0, 0), - [700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_footnote_content, 3, 0, 0), - [702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_or_two_newlines, 2, 0, 0), - [704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_or_two_newlines, 2, 0, 0), - [706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_thematic_break, 1, 0, 0), - [708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_thematic_break, 1, 0, 0), - [710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_footnote_content, 4, 0, 0), - [712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_footnote_content, 4, 0, 0), - [714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 1, 0, 0), - [716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 1, 0, 0), - [718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 2, 0, 6), - [720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 2, 0, 6), - [722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_with_heading, 2, 0, 0), - [724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_with_heading, 2, 0, 0), - [726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 3, 0, 12), - [728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 3, 0, 12), - [730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 1, 0, 0), - [732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 1, 0, 0), - [734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__paragraph, 2, 0, 7), - [736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph, 2, 0, 7), - [738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_dash, 2, 0, 0), - [740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_dash, 2, 0, 0), - [742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_plus, 2, 0, 0), - [744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_plus, 2, 0, 0), - [746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_star, 2, 0, 0), - [748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_star, 2, 0, 0), - [750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_task, 2, 0, 0), - [752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_task, 2, 0, 0), - [754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_definition, 2, 0, 0), - [756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_definition, 2, 0, 0), - [758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_decimal_period, 2, 0, 0), - [760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_decimal_period, 2, 0, 0), - [762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_decimal_paren, 2, 0, 0), - [764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_decimal_paren, 2, 0, 0), - [766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_decimal_parens, 2, 0, 0), - [768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_decimal_parens, 2, 0, 0), - [770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_alpha_period, 2, 0, 0), - [772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_alpha_period, 2, 0, 0), - [774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_alpha_paren, 2, 0, 0), - [776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_alpha_paren, 2, 0, 0), - [778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_alpha_parens, 2, 0, 0), - [780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_alpha_parens, 2, 0, 0), - [782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_alpha_period, 2, 0, 0), - [784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_alpha_period, 2, 0, 0), - [786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_alpha_paren, 2, 0, 0), - [788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_alpha_paren, 2, 0, 0), - [790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_alpha_parens, 2, 0, 0), - [792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_alpha_parens, 2, 0, 0), - [794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_roman_period, 2, 0, 0), - [796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_roman_period, 2, 0, 0), - [798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_roman_paren, 2, 0, 0), - [800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_roman_paren, 2, 0, 0), - [802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_roman_period, 2, 0, 0), - [804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_roman_period, 2, 0, 0), - [806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_roman_paren, 2, 0, 0), - [808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_roman_paren, 2, 0, 0), - [810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_roman_parens, 2, 0, 0), - [812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_roman_parens, 2, 0, 0), - [814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_attribute, 4, 0, 19), - [816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_attribute, 4, 0, 19), - [818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_quote, 3, 0, 10), - [820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_quote, 3, 0, 10), - [822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_attribute, 3, 0, 0), - [824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_attribute, 3, 0, 0), - [826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 3, 0, 0), - [828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 3, 0, 0), - [830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_caption, 3, 0, 21), - [832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_caption, 3, 0, 21), - [834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_div_repeat1, 1, 0, 0), - [836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 1, 0, 0), - [838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 5, 0, 13), - [840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 5, 0, 13), - [842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 6, 0, 0), - [844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 6, 0, 0), - [846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_footnote, 6, 0, 29), - [848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_footnote, 6, 0, 29), - [850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 6, 0, 13), - [852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 6, 0, 13), - [854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 6, 0, 20), - [856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 6, 0, 20), - [858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frontmatter, 6, 0, 26), - [860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_frontmatter, 6, 0, 26), - [862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heading, 4, 0, 4), - [864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heading, 4, 0, 4), - [866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), - [868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), - [870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(210), - [873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_task, 3, 0, 9), - [875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_task, 3, 0, 9), - [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), - [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_star, 2, 0, 0), + [664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_star, 2, 0, 0), + [666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_footnote, 6, 0, 29), + [668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_footnote, 6, 0, 29), + [670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 6, 0, 13), + [672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 6, 0, 13), + [674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 6, 0, 20), + [676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 6, 0, 20), + [678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frontmatter, 7, 0, 30), + [680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_frontmatter, 7, 0, 30), + [682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 7, 0, 22), + [684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 7, 0, 22), + [686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 7, 0, 23), + [688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 7, 0, 23), + [690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 7, 0, 31), + [692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 7, 0, 31), + [694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 7, 0, 20), + [696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 7, 0, 20), + [698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 8, 0, 27), + [700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 8, 0, 27), + [702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 8, 0, 32), + [704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 8, 0, 32), + [706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 8, 0, 33), + [708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 8, 0, 33), + [710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_footnote_content, 3, 0, 0), + [712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_footnote_content, 3, 0, 0), + [714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_or_two_newlines, 2, 0, 0), + [716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_or_two_newlines, 2, 0, 0), + [718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_footnote_content, 4, 0, 0), + [720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_footnote_content, 4, 0, 0), + [722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 1, 0, 0), + [724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 1, 0, 0), + [726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heading, 4, 0, 4), + [728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heading, 4, 0, 4), + [730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 2, 0, 6), + [732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 2, 0, 6), + [734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_roman_parens, 2, 0, 0), + [736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_roman_parens, 2, 0, 0), + [738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_with_heading, 2, 0, 0), + [740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_with_heading, 2, 0, 0), + [742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 3, 0, 12), + [744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 3, 0, 12), + [746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_thematic_break, 1, 0, 0), + [748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_thematic_break, 1, 0, 0), + [750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 1, 0, 0), + [752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 1, 0, 0), + [754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_roman_period, 2, 0, 0), + [756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_roman_period, 2, 0, 0), + [758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__paragraph, 2, 0, 7), + [760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph, 2, 0, 7), + [762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_dash, 2, 0, 0), + [764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_dash, 2, 0, 0), + [766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_plus, 2, 0, 0), + [768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_plus, 2, 0, 0), + [770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_task, 2, 0, 0), + [772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_task, 2, 0, 0), + [774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_definition, 2, 0, 0), + [776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_definition, 2, 0, 0), + [778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_decimal_period, 2, 0, 0), + [780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_decimal_period, 2, 0, 0), + [782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_decimal_paren, 2, 0, 0), + [784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_decimal_paren, 2, 0, 0), + [786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_decimal_parens, 2, 0, 0), + [788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_decimal_parens, 2, 0, 0), + [790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_alpha_period, 2, 0, 0), + [792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_alpha_period, 2, 0, 0), + [794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_alpha_paren, 2, 0, 0), + [796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_alpha_paren, 2, 0, 0), + [798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_alpha_parens, 2, 0, 0), + [800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_alpha_parens, 2, 0, 0), + [802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_alpha_period, 2, 0, 0), + [804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_alpha_period, 2, 0, 0), + [806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_alpha_paren, 2, 0, 0), + [808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_alpha_paren, 2, 0, 0), + [810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_alpha_parens, 2, 0, 0), + [812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_alpha_parens, 2, 0, 0), + [814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_roman_paren, 2, 0, 0), + [816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_roman_paren, 2, 0, 0), + [818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_lower_roman_parens, 2, 0, 0), + [820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_lower_roman_parens, 2, 0, 0), + [822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_roman_period, 2, 0, 0), + [824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_roman_period, 2, 0, 0), + [826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_upper_roman_paren, 2, 0, 0), + [828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_upper_roman_paren, 2, 0, 0), + [830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_quote, 3, 0, 10), + [832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_quote, 3, 0, 10), + [834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_attribute, 3, 0, 0), + [836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_attribute, 3, 0, 0), + [838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 3, 0, 0), + [840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 3, 0, 0), + [842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_attribute, 4, 0, 19), + [844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_attribute, 4, 0, 19), + [846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_caption, 3, 0, 21), + [848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table_caption, 3, 0, 21), + [850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_div, 5, 0, 13), + [852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_div, 5, 0, 13), + [854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_block, 6, 0, 0), + [856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_block, 6, 0, 0), + [858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_div_repeat1, 1, 0, 0), + [860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_div_repeat1, 1, 0, 0), + [862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frontmatter, 6, 0, 26), + [864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_frontmatter, 6, 0, 26), + [866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_task, 3, 0, 9), + [868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_task, 3, 0, 9), + [870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), + [872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), + [874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(210), + [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), [905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_quote_prefix, 1, 0, 0), [907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_quote_prefix, 1, 0, 0), - [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(231), - [914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(235), - [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(887), - [934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(1123), - [937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(888), - [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), - [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), - [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), - [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(881), - [955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(1105), - [958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(882), - [961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(883), - [964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(1111), - [967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(884), - [970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 2, 0, 0), SHIFT_REPEAT(275), - [973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 2, 0, 0), - [975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 2, 0, 0), SHIFT_REPEAT(738), - [978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_caption_repeat1, 2, 0, 0), - [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), - [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), - [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), SHIFT(277), - [995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), SHIFT(745), - [998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), - [1000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(229), + [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(234), + [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(884), + [932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(1123), + [935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(885), + [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), + [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), + [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), + [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(878), + [959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(1105), + [962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(879), + [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), + [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 2, 0, 0), SHIFT_REPEAT(279), + [972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 2, 0, 0), + [974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 2, 0, 0), SHIFT_REPEAT(736), + [977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_caption_repeat1, 2, 0, 0), + [979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(880), + [982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(1111), + [985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2, 0, 0), SHIFT_REPEAT(881), + [988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [1000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [1004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), SHIFT(275), + [1007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), SHIFT(745), + [1010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 1, -1000, 0), [1012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), - [1014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(713), - [1017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(337), - [1020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(331), - [1023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(473), - [1026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(1110), - [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [1014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(690), + [1017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(325), + [1020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(320), + [1023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(424), + [1026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(1058), + [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [1047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(272), - [1050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(711), - [1053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), - [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [1057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline, 1, 0, 0), + [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [1049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline, 1, 0, 0), + [1051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(273), + [1054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(709), + [1057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), [1059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(274), - [1062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(738), - [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), + [1062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), + [1064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(745), + [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), [1069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline, 1, 0, 0), [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), [1073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(278), - [1076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), - [1078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(745), - [1081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_line, 2, 0, 0), - [1083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_line, 2, 0, 0), - [1085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 2, -1000, 0), - [1087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 2, -1000, 0), - [1089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 1, 0, 0), - [1091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_caption_repeat1, 1, 0, 0), - [1093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(285), - [1096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [1098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [1100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [1104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [1106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [1108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [1110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [1112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [1114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [1116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [1118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [1120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [1122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [1124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [1126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [1128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [1130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [1132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [1134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [1136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [1138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [1140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [1142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 2, 0, 0), - [1144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 2, 0, 0), SHIFT_REPEAT(650), - [1147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 2, 0, 0), SHIFT_REPEAT(813), - [1150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [1152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [1154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1, 0, 0), - [1156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [1158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [1160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [1162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [1164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value, 3, 0, 18), - [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [1170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [1172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 3, 0, 17), - [1174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, 0, 11), - [1176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2, 0, 0), - [1178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 1, 0, 0), - [1180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_name, 1, 0, 0), - [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [1184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [1188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [1190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1, 0, 0), - [1192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), - [1194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), SHIFT_REPEAT(49), - [1197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), SHIFT_REPEAT(712), - [1200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 3, 0, 0), - [1202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 2, 0, 0), - [1204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 2, 0, 0), SHIFT_REPEAT(27), - [1207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 2, 0, 0), SHIFT_REPEAT(722), - [1210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code, 1, 0, 0), - [1212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [1214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), - [1216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), SHIFT_REPEAT(40), - [1219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), SHIFT_REPEAT(779), - [1222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_repeat1, 2, 0, 0), SHIFT_REPEAT(1104), - [1225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_code_repeat1, 2, 0, 0), - [1227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_repeat1, 2, 0, 0), SHIFT_REPEAT(831), - [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [1232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [1234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [1238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [1240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [1242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [1254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(51), - [1257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 2, 0, 0), - [1259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(839), - [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [1292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [1294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [1296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [1342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_item_content_repeat1, 2, 0, 0), SHIFT_REPEAT(55), - [1345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_item_content_repeat1, 2, 0, 0), - [1347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_item_content_repeat1, 2, 0, 0), SHIFT_REPEAT(839), - [1350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(849), - [1353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(52), - [1356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), - [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [1372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_quote_content, 2, 0, 0), - [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [1376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_quote_content, 1, 0, 0), - [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 2, 0, 0), - [1380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(210), - [1383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(455), - [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_period_repeat1, 2, 0, 0), - [1390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_period_repeat1, 2, 0, 0), SHIFT_REPEAT(47), - [1393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_paren_repeat1, 2, 0, 0), - [1395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_paren_repeat1, 2, 0, 0), SHIFT_REPEAT(31), - [1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [1400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_parens_repeat1, 2, 0, 0), - [1402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(37), - [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [1407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_period_repeat1, 2, 0, 0), - [1409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_period_repeat1, 2, 0, 0), SHIFT_REPEAT(23), - [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_paren_repeat1, 2, 0, 0), - [1416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_paren_repeat1, 2, 0, 0), SHIFT_REPEAT(33), - [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [1421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_parens_repeat1, 2, 0, 0), - [1423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(39), - [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [1434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), - [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [1440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), - [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frontmatter_content, 1, 0, 0), - [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [1502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comment_repeat1, 2, 0, 0), - [1504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comment_repeat1, 2, 0, 0), SHIFT_REPEAT(577), - [1507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), - [1509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_frontmatter_content_repeat1, 2, 0, 0), SHIFT_REPEAT(983), - [1512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_frontmatter_content_repeat1, 2, 0, 0), - [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [1522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [1528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [1530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [1532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [1534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [1536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [1538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [1540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [1542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [1544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [1546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [1548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [1550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [1552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [1556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [1558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [1562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [1574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [1576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [1578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [1580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [1582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [1584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [1586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [1598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [1604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [1608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [1610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_definition_repeat1, 2, 0, 0), - [1612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(232), - [1615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_period_repeat1, 2, 0, 0), - [1617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_decimal_period_repeat1, 2, 0, 0), SHIFT_REPEAT(42), - [1620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_paren_repeat1, 2, 0, 0), - [1622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_decimal_paren_repeat1, 2, 0, 0), SHIFT_REPEAT(24), - [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [1627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_parens_repeat1, 2, 0, 0), - [1629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_decimal_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(34), - [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [1634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_parens_repeat1, 2, 0, 0), - [1636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(36), - [1639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_period_repeat1, 2, 0, 0), - [1641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_period_repeat1, 2, 0, 0), SHIFT_REPEAT(45), - [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [1646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_paren_repeat1, 2, 0, 0), - [1648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_paren_repeat1, 2, 0, 0), SHIFT_REPEAT(29), - [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [1653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_parens_repeat1, 2, 0, 0), - [1655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(35), - [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [1660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_period_repeat1, 2, 0, 0), - [1662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_period_repeat1, 2, 0, 0), SHIFT_REPEAT(46), - [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [1667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_paren_repeat1, 2, 0, 0), - [1669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_paren_repeat1, 2, 0, 0), SHIFT_REPEAT(30), - [1672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [1674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [1678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [1682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [1686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [1690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 3, 0, 0), - [1694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(813), - [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [1703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(831), - [1706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(839), - [1709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(849), - [1712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_item_content, 3, 0, 0), - [1714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_item_content, 4, 0, 0), - [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [1724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [1726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heading_content, 2, 0, 0), - [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heading_content, 1, 0, 0), - [1732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 1, 0, 2), - [1734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dash, 2, 0, 4), - [1736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 2, 0, 4), - [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [1742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 2, 0, 4), - [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [1748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comment_repeat1, 1, 0, 0), - [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [1758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(779), - [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [1765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 1, 0, 2), - [1767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dash, 3, 0, 14), - [1769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 3, 0, 14), - [1771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 3, 0, 14), - [1773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_task, 3, 0, 14), - [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [1779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__paragraph_inline_content_repeat1, 2, 0, 0), - [1781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__paragraph_inline_content_repeat1, 2, 0, 0), SHIFT_REPEAT(250), - [1784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(722), - [1787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 1, 0, 2), - [1789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__heading_content_repeat1, 2, 0, 0), - [1791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__heading_content_repeat1, 2, 0, 0), SHIFT_REPEAT(271), - [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [1798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_task, 2, 0, 4), - [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_item_content_repeat1, 3, 0, 0), - [1816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 3, 0, 0), - [1818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(712), - [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [1837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_item_content_repeat1, 4, 0, 0), - [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [1841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 1, 0, 2), - [1843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line, 2, 0, 0), - [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [1847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 4, 0, 0), - [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [1857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_inline_content, 3, 0, 0), - [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [1865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_separator_repeat1, 2, 0, 0), SHIFT_REPEAT(1060), - [1868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [1872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_definition_repeat1, 1, 0, 3), - [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_roman_period, 2, 0, 4), - [1876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_decimal_paren, 2, 0, 4), - [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_alpha_paren, 2, 0, 4), - [1880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_alpha_paren, 2, 0, 4), - [1882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [1884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_roman_paren, 2, 0, 4), - [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_roman_paren, 2, 0, 4), - [1888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_decimal_parens, 2, 0, 4), - [1890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_alpha_parens, 2, 0, 4), - [1892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_alpha_parens, 2, 0, 4), - [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_period_repeat1, 1, 0, 2), - [1900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [1904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_roman_parens, 2, 0, 4), - [1906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_paren_repeat1, 1, 0, 2), - [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [1912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_inline_content, 4, 0, 0), - [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__paragraph_inline_content_repeat1, 3, 0, 0), - [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [1920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [1924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [1934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [1936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_parens_repeat1, 1, 0, 2), - [1940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_period_repeat1, 1, 0, 2), - [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_paren_repeat1, 1, 0, 2), - [1944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_parens_repeat1, 1, 0, 2), - [1948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [1950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_roman_parens, 2, 0, 4), - [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_period_repeat1, 1, 0, 2), - [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_definition, 5, 0, 25), - [1960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_paren_repeat1, 1, 0, 2), - [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_parens_repeat1, 1, 0, 2), - [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_period_repeat1, 1, 0, 2), - [1968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_paren_repeat1, 1, 0, 2), - [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_definition, 4, 0, 16), - [1972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_parens_repeat1, 1, 0, 2), - [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [1976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_period_repeat1, 1, 0, 2), - [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_inline_content, 2, 0, 0), - [1980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_paren_repeat1, 1, 0, 2), - [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [1986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [1988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_parens_repeat1, 1, 0, 2), - [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [1998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [2004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_content, 1, 0, 0), - [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [2014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1, 0, 0), SHIFT(281), - [2017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_decimal_period, 2, 0, 4), - [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [2021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__div_marker_begin, 1, 0, 0), - [2023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_header_repeat1, 2, 0, 0), SHIFT_REPEAT(767), - [2026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_alpha_period, 2, 0, 4), - [2028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_alpha_period, 2, 0, 4), - [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [2032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_roman_period, 2, 0, 4), - [2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [2156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_label, 1, 0, 0), - [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [2164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_label, 1, 0, 5), - [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [2176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__div_marker_begin, 3, 0, 8), - [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [2198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_separator_repeat1, 2, 0, 0), - [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [1076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_repeat1, 2, 0, 0), SHIFT_REPEAT(736), + [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), + [1081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(304), + [1084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_line, 2, 0, 0), + [1086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_line, 2, 0, 0), + [1088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__symbol_fallback, 2, -1000, 0), + [1090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__symbol_fallback, 2, -1000, 0), + [1092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_table_caption_repeat1, 1, 0, 0), + [1094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_caption_repeat1, 1, 0, 0), + [1096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [1098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [1100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [1104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [1106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [1108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 2, 0, 0), + [1110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 2, 0, 0), SHIFT_REPEAT(651), + [1113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 2, 0, 0), SHIFT_REPEAT(778), + [1116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [1118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [1120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [1122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [1124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [1126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [1128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [1130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [1132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [1134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [1136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [1138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [1140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [1142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [1144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [1146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [1148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [1150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [1152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [1154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [1156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [1158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_attribute_repeat1, 1, 0, 0), + [1160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, 0, 11), + [1162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2, 0, 0), + [1164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1, 0, 0), + [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [1170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [1174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 2, 0, 0), + [1176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 2, 0, 0), SHIFT_REPEAT(27), + [1179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 2, 0, 0), SHIFT_REPEAT(711), + [1182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 3, 0, 0), + [1184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [1186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), + [1188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), SHIFT_REPEAT(40), + [1191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), SHIFT_REPEAT(829), + [1194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [1196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [1198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [1200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [1202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [1204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), + [1208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), SHIFT_REPEAT(49), + [1211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), SHIFT_REPEAT(764), + [1214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code, 1, 0, 0), + [1216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [1218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_repeat1, 2, 0, 0), SHIFT_REPEAT(1118), + [1221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_code_repeat1, 2, 0, 0), + [1223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_repeat1, 2, 0, 0), SHIFT_REPEAT(799), + [1226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [1228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 3, 0, 17), + [1230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_name, 1, 0, 0), + [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1, 0, 0), + [1234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value, 3, 0, 18), + [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [1238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [1240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [1242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [1262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(52), + [1265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 2, 0, 0), + [1267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(816), + [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [1292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [1294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [1296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [1330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(837), + [1333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(53), + [1336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 2, 0, 0), + [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [1354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_item_content_repeat1, 2, 0, 0), SHIFT_REPEAT(56), + [1357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_item_content_repeat1, 2, 0, 0), + [1359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_item_content_repeat1, 2, 0, 0), SHIFT_REPEAT(816), + [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [1372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [1376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_quote_content, 2, 0, 0), + [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [1380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_quote_content, 1, 0, 0), + [1382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(455), + [1385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 2, 0, 0), + [1387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_content_repeat1, 2, 0, 0), SHIFT_REPEAT(210), + [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [1392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comment_repeat1, 2, 0, 0), SHIFT_REPEAT(440), + [1395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comment_repeat1, 2, 0, 0), + [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [1399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_parens_repeat1, 2, 0, 0), + [1401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(37), + [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_period_repeat1, 2, 0, 0), + [1408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_period_repeat1, 2, 0, 0), SHIFT_REPEAT(23), + [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [1413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_paren_repeat1, 2, 0, 0), + [1415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_paren_repeat1, 2, 0, 0), SHIFT_REPEAT(32), + [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_parens_repeat1, 2, 0, 0), + [1422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(38), + [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), + [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [1439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comment_repeat1, 1, 0, 0), + [1441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comment_repeat1, 1, 0, 0), + [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [1445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frontmatter_content, 1, 0, 0), + [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [1501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_frontmatter_content_repeat1, 2, 0, 0), SHIFT_REPEAT(1000), + [1504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_frontmatter_content_repeat1, 2, 0, 0), + [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [1522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [1528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [1530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [1532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [1534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [1536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [1538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [1540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [1542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [1544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [1546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [1548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [1550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [1552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [1556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [1558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [1562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [1574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [1576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [1578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [1580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [1582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [1584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [1586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [1598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [1602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_definition_repeat1, 2, 0, 0), + [1604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(236), + [1607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_period_repeat1, 2, 0, 0), + [1609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_decimal_period_repeat1, 2, 0, 0), SHIFT_REPEAT(41), + [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [1614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_paren_repeat1, 2, 0, 0), + [1616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_decimal_paren_repeat1, 2, 0, 0), SHIFT_REPEAT(24), + [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [1621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_parens_repeat1, 2, 0, 0), + [1623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_decimal_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(34), + [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [1628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_period_repeat1, 2, 0, 0), + [1630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_period_repeat1, 2, 0, 0), SHIFT_REPEAT(43), + [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [1635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_paren_repeat1, 2, 0, 0), + [1637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_paren_repeat1, 2, 0, 0), SHIFT_REPEAT(25), + [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [1642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_parens_repeat1, 2, 0, 0), + [1644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(35), + [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [1649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_period_repeat1, 2, 0, 0), + [1651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_period_repeat1, 2, 0, 0), SHIFT_REPEAT(46), + [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [1656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_paren_repeat1, 2, 0, 0), + [1658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_paren_repeat1, 2, 0, 0), SHIFT_REPEAT(30), + [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [1663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_parens_repeat1, 2, 0, 0), + [1665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(36), + [1668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_period_repeat1, 2, 0, 0), + [1670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_period_repeat1, 2, 0, 0), SHIFT_REPEAT(47), + [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [1689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_paren_repeat1, 2, 0, 0), + [1691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_paren_repeat1, 2, 0, 0), SHIFT_REPEAT(31), + [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dash, 3, 0, 14), + [1698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 3, 0, 14), + [1700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 3, 0, 14), + [1702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_task, 3, 0, 14), + [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [1706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [1708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__paragraph_inline_content_repeat1, 2, 0, 0), + [1710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__paragraph_inline_content_repeat1, 2, 0, 0), SHIFT_REPEAT(248), + [1713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_item_content, 4, 0, 0), + [1715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__heading_content_repeat1, 2, 0, 0), + [1717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__heading_content_repeat1, 2, 0, 0), SHIFT_REPEAT(272), + [1720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_item_content, 3, 0, 0), + [1722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(764), + [1725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_dash_repeat1, 1, 0, 2), + [1727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(778), + [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 1, 0, 2), + [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [1736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(799), + [1739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(816), + [1742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(837), + [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [1753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_task, 2, 0, 4), + [1755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(711), + [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line, 2, 0, 0), + [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [1766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [1780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heading_content, 2, 0, 0), + [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heading_content, 1, 0, 0), + [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [1804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_item_content_repeat1, 3, 0, 0), + [1806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_item_definition_repeat1, 3, 0, 0), + [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [1820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_item_content_repeat1, 4, 0, 0), + [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 1, 0, 2), + [1828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dash, 2, 0, 4), + [1830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 2, 0, 4), + [1832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 2, 0, 4), + [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [1836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 3, 0, 0), + [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_footnote_content_repeat1, 4, 0, 0), + [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_task_repeat1, 1, 0, 2), + [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [1852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_quote_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(829), + [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [1859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_decimal_parens, 2, 0, 4), + [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [1869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_period_repeat1, 1, 0, 2), + [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_paren_repeat1, 1, 0, 2), + [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [1879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_decimal_parens_repeat1, 1, 0, 2), + [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [1885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_period_repeat1, 1, 0, 2), + [1887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_inline_content, 4, 0, 0), + [1889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__paragraph_inline_content_repeat1, 3, 0, 0), + [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_paren_repeat1, 1, 0, 2), + [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [1897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_alpha_parens_repeat1, 1, 0, 2), + [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [1903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_period_repeat1, 1, 0, 2), + [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_decimal_paren, 2, 0, 4), + [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_alpha_parens, 2, 0, 4), + [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [1921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_paren_repeat1, 1, 0, 2), + [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [1925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_alpha_parens, 2, 0, 4), + [1927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_alpha_parens_repeat1, 1, 0, 2), + [1929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_roman_parens, 2, 0, 4), + [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_period_repeat1, 1, 0, 2), + [1933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_roman_parens, 2, 0, 4), + [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_paren_repeat1, 1, 0, 2), + [1937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_definition, 5, 0, 25), + [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [1941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_inline_content, 3, 0, 0), + [1943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_lower_roman_parens_repeat1, 1, 0, 2), + [1945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_period_repeat1, 1, 0, 2), + [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [1951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_paren_repeat1, 1, 0, 2), + [1953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_inline_content, 2, 0, 0), + [1955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_alpha_paren, 2, 0, 4), + [1957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_roman_period, 2, 0, 4), + [1959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_alpha_paren, 2, 0, 4), + [1961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_roman_paren, 2, 0, 4), + [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [1965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_upper_roman_parens_repeat1, 1, 0, 2), + [1967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_roman_paren, 2, 0, 4), + [1969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_roman_period, 2, 0, 4), + [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [1975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_header_repeat1, 2, 0, 0), SHIFT_REPEAT(763), + [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_definition_repeat1, 1, 0, 3), + [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_upper_alpha_period, 2, 0, 4), + [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [1986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_content, 1, 0, 0), + [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [1994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_footnote_marker_begin, 1, 0, 0), SHIFT(282), + [1997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_definition, 4, 0, 16), + [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [2007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__div_marker_begin, 1, 0, 0), + [2009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_separator_repeat1, 2, 0, 0), SHIFT_REPEAT(1059), + [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [2016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [2018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [2020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [2022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [2028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [2032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [2046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_decimal_period, 2, 0, 4), + [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [2086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_lower_alpha_period, 2, 0, 4), + [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [2164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_checked, 3, 0, 0), + [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [2170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_label, 1, 0, 0), + [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [2178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__div_marker_begin, 3, 0, 8), + [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [2246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_cell, 1, 0, 0), - [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [2252] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [2222] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [2250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unchecked, 3, 0, 0), + [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [2256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_header_repeat1, 2, 0, 0), - [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [2274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_checked, 3, 0, 0), - [2276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unchecked, 3, 0, 0), - [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [2294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block_info, 2, 0, 15), - [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [2260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_header_repeat1, 2, 0, 0), + [2262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_cell, 1, 0, 0), + [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [2274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_separator_repeat1, 2, 0, 0), + [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [2340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key, 1, 0, 0), + [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [2378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block_info, 2, 0, 15), [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [2428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key, 1, 0, 0), - [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [2430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_label, 1, 0, 5), + [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), }; enum ts_external_scanner_symbol_identifiers { @@ -28848,8 +28870,10 @@ enum ts_external_scanner_symbol_identifiers { ts_external_token__table_caption_begin = 47, ts_external_token__table_caption_end = 48, ts_external_token__block_attribute_begin = 49, - ts_external_token__in_fallback = 50, - ts_external_token__error = 51, + ts_external_token__comment_end_marker = 50, + ts_external_token__comment_close = 51, + ts_external_token__in_fallback = 52, + ts_external_token__error = 53, }; static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { @@ -28903,11 +28927,13 @@ static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { [ts_external_token__table_caption_begin] = sym__table_caption_begin, [ts_external_token__table_caption_end] = sym__table_caption_end, [ts_external_token__block_attribute_begin] = sym__block_attribute_begin, + [ts_external_token__comment_end_marker] = sym__comment_end_marker, + [ts_external_token__comment_close] = sym__comment_close, [ts_external_token__in_fallback] = sym__in_fallback, [ts_external_token__error] = sym__error, }; -static const bool ts_external_scanner_states[85][EXTERNAL_TOKEN_COUNT] = { +static const bool ts_external_scanner_states[86][EXTERNAL_TOKEN_COUNT] = { [1] = { [ts_external_token__ignored] = true, [ts_external_token__block_close] = true, @@ -28959,6 +28985,8 @@ static const bool ts_external_scanner_states[85][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__table_caption_begin] = true, [ts_external_token__table_caption_end] = true, [ts_external_token__block_attribute_begin] = true, + [ts_external_token__comment_end_marker] = true, + [ts_external_token__comment_close] = true, [ts_external_token__in_fallback] = true, [ts_external_token__error] = true, }, @@ -28998,6 +29026,7 @@ static const bool ts_external_scanner_states[85][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__block_attribute_begin] = true, }, [3] = { + [ts_external_token__block_close] = true, [ts_external_token__newline] = true, [ts_external_token__heading_begin] = true, [ts_external_token__div_begin] = true, @@ -29032,7 +29061,6 @@ static const bool ts_external_scanner_states[85][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__block_attribute_begin] = true, }, [4] = { - [ts_external_token__block_close] = true, [ts_external_token__newline] = true, [ts_external_token__heading_begin] = true, [ts_external_token__div_begin] = true, @@ -29447,6 +29475,16 @@ static const bool ts_external_scanner_states[85][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__table_row_begin] = true, }, [18] = { + [ts_external_token__newline] = true, + [ts_external_token__list_item_continuation] = true, + [ts_external_token__list_item_end] = true, + [ts_external_token__block_quote_continuation] = true, + [ts_external_token__table_header_begin] = true, + [ts_external_token__table_separator_begin] = true, + [ts_external_token__table_row_begin] = true, + [ts_external_token__table_caption_begin] = true, + }, + [19] = { [ts_external_token_list_marker_dash] = true, [ts_external_token_list_marker_star] = true, [ts_external_token_list_marker_plus] = true, @@ -29456,19 +29494,15 @@ static const bool ts_external_scanner_states[85][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__table_separator_begin] = true, [ts_external_token__table_row_begin] = true, }, - [19] = { + [20] = { [ts_external_token__newline] = true, - [ts_external_token__list_item_continuation] = true, - [ts_external_token__list_item_end] = true, + [ts_external_token__indented_content_spacer] = true, [ts_external_token__block_quote_continuation] = true, [ts_external_token__table_header_begin] = true, [ts_external_token__table_separator_begin] = true, [ts_external_token__table_row_begin] = true, [ts_external_token__table_caption_begin] = true, }, - [20] = { - [ts_external_token__block_quote_continuation] = true, - }, [21] = { [ts_external_token__block_close] = true, [ts_external_token__newline] = true, @@ -29479,39 +29513,33 @@ static const bool ts_external_scanner_states[85][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__table_caption_begin] = true, }, [22] = { - [ts_external_token__newline] = true, - [ts_external_token__indented_content_spacer] = true, [ts_external_token__block_quote_continuation] = true, - [ts_external_token__table_header_begin] = true, - [ts_external_token__table_separator_begin] = true, - [ts_external_token__table_row_begin] = true, - [ts_external_token__table_caption_begin] = true, }, [23] = { [ts_external_token__table_caption_end] = true, }, [24] = { - [ts_external_token__eof_or_newline] = true, - [ts_external_token__newline_inline] = true, + [ts_external_token__newline] = true, }, [25] = { - [ts_external_token__newline] = true, + [ts_external_token__eof_or_newline] = true, + [ts_external_token__newline_inline] = true, }, [26] = { [ts_external_token__eof_or_newline] = true, }, [27] = { [ts_external_token__block_close] = true, + [ts_external_token__list_marker_task_begin] = true, [ts_external_token__block_quote_continuation] = true, }, [28] = { [ts_external_token__block_close] = true, - [ts_external_token__list_marker_task_begin] = true, [ts_external_token__block_quote_continuation] = true, }, [29] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_dash] = true, + [ts_external_token_list_marker_plus] = true, [ts_external_token__block_quote_continuation] = true, }, [30] = { @@ -29521,13 +29549,13 @@ static const bool ts_external_scanner_states[85][EXTERNAL_TOKEN_COUNT] = { }, [31] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_plus] = true, + [ts_external_token_list_marker_dash] = true, [ts_external_token__block_quote_continuation] = true, }, [32] = { - [ts_external_token__list_item_continuation] = true, - [ts_external_token__list_item_end] = true, [ts_external_token__block_quote_continuation] = true, + [ts_external_token__footnote_continuation] = true, + [ts_external_token__footnote_end] = true, }, [33] = { [ts_external_token__table_header_begin] = true, @@ -29535,53 +29563,53 @@ static const bool ts_external_scanner_states[85][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__table_row_begin] = true, }, [34] = { - [ts_external_token__block_quote_continuation] = true, - [ts_external_token__footnote_continuation] = true, - [ts_external_token__footnote_end] = true, - }, - [35] = { [ts_external_token__list_item_continuation] = true, [ts_external_token__list_item_end] = true, [ts_external_token__block_quote_continuation] = true, - [ts_external_token__table_caption_begin] = true, }, - [36] = { + [35] = { [ts_external_token__block_quote_continuation] = true, [ts_external_token__table_header_begin] = true, [ts_external_token__table_separator_begin] = true, [ts_external_token__table_row_begin] = true, }, + [36] = { + [ts_external_token__comment_end_marker] = true, + [ts_external_token__comment_close] = true, + }, [37] = { - [ts_external_token__block_close] = true, - [ts_external_token_list_marker_upper_alpha_paren] = true, + [ts_external_token__list_item_continuation] = true, + [ts_external_token__list_item_end] = true, + [ts_external_token__block_quote_continuation] = true, + [ts_external_token__table_caption_begin] = true, }, [38] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_lower_roman_period] = true, + [ts_external_token_list_marker_upper_alpha_paren] = true, }, [39] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_lower_roman_paren] = true, + [ts_external_token_list_marker_lower_roman_parens] = true, }, [40] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_upper_alpha_parens] = true, + [ts_external_token_list_marker_lower_roman_paren] = true, }, [41] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_lower_roman_parens] = true, + [ts_external_token_list_marker_upper_roman_period] = true, }, [42] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_upper_roman_period] = true, + [ts_external_token_list_marker_upper_roman_paren] = true, }, [43] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_upper_roman_paren] = true, + [ts_external_token_list_marker_upper_roman_parens] = true, }, [44] = { [ts_external_token__block_close] = true, - [ts_external_token_list_marker_upper_roman_parens] = true, + [ts_external_token_list_marker_lower_roman_period] = true, }, [45] = { [ts_external_token__block_close] = true, @@ -29642,99 +29670,100 @@ static const bool ts_external_scanner_states[85][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_list_marker_upper_alpha_period] = true, }, [58] = { - [ts_external_token__list_marker_task_begin] = true, - [ts_external_token__block_quote_continuation] = true, + [ts_external_token__block_close] = true, + [ts_external_token_list_marker_upper_alpha_parens] = true, }, [59] = { - [ts_external_token__block_close] = true, - [ts_external_token__code_block_end] = true, + [ts_external_token_list_marker_dash] = true, [ts_external_token__block_quote_continuation] = true, }, [60] = { - [ts_external_token__newline] = true, - [ts_external_token__table_cell] = true, + [ts_external_token__block_close] = true, + [ts_external_token__heading_continuation] = true, }, [61] = { - [ts_external_token__list_item_continuation] = true, + [ts_external_token_list_marker_star] = true, [ts_external_token__block_quote_continuation] = true, }, [62] = { + [ts_external_token__list_marker_task_begin] = true, [ts_external_token__block_quote_continuation] = true, - [ts_external_token__footnote_continuation] = true, }, [63] = { - [ts_external_token__indented_content_spacer] = true, - [ts_external_token__table_caption_begin] = true, + [ts_external_token__newline] = true, + [ts_external_token__table_cell] = true, }, [64] = { - [ts_external_token__block_close] = true, - [ts_external_token__div_end] = true, + [ts_external_token__list_item_continuation] = true, [ts_external_token__block_quote_continuation] = true, }, [65] = { - [ts_external_token__block_close] = true, - [ts_external_token__eof_or_newline] = true, [ts_external_token__block_quote_continuation] = true, + [ts_external_token__footnote_continuation] = true, }, [66] = { [ts_external_token__block_close] = true, - [ts_external_token__heading_continuation] = true, + [ts_external_token__eof_or_newline] = true, + [ts_external_token__block_quote_continuation] = true, }, [67] = { - [ts_external_token_list_marker_plus] = true, + [ts_external_token__block_close] = true, + [ts_external_token__div_end] = true, [ts_external_token__block_quote_continuation] = true, }, [68] = { - [ts_external_token_list_marker_dash] = true, + [ts_external_token__block_close] = true, + [ts_external_token__code_block_end] = true, [ts_external_token__block_quote_continuation] = true, }, [69] = { - [ts_external_token_list_marker_star] = true, + [ts_external_token_list_marker_plus] = true, [ts_external_token__block_quote_continuation] = true, }, [70] = { - [ts_external_token__div_end] = true, [ts_external_token__indented_content_spacer] = true, + [ts_external_token__table_caption_begin] = true, }, [71] = { - [ts_external_token__eof_or_newline] = true, - [ts_external_token__close_paragraph] = true, + [ts_external_token__code_block_end] = true, + [ts_external_token__indented_content_spacer] = true, }, [72] = { - [ts_external_token__code_block_end] = true, + [ts_external_token__eof_or_newline] = true, [ts_external_token__indented_content_spacer] = true, }, [73] = { - [ts_external_token__footnote_mark_begin] = true, - [ts_external_token__in_fallback] = true, + [ts_external_token__eof_or_newline] = true, + [ts_external_token__close_paragraph] = true, }, [74] = { - [ts_external_token__eof_or_newline] = true, - [ts_external_token__indented_content_spacer] = true, + [ts_external_token__footnote_mark_begin] = true, + [ts_external_token__in_fallback] = true, }, [75] = { - [ts_external_token__table_cell] = true, + [ts_external_token__div_end] = true, + [ts_external_token__indented_content_spacer] = true, }, [76] = { - [ts_external_token__list_marker_task_begin] = true, + [ts_external_token__table_cell] = true, }, [77] = { - [ts_external_token__footnote_mark_begin] = true, + [ts_external_token__list_marker_task_begin] = true, }, [78] = { - [ts_external_token__block_close] = true, + [ts_external_token__indented_content_spacer] = true, }, [79] = { - [ts_external_token__indented_content_spacer] = true, + [ts_external_token__block_close] = true, }, [80] = { - [ts_external_token_list_marker_dash] = true, + [ts_external_token__footnote_mark_begin] = true, }, [81] = { - [ts_external_token_list_marker_plus] = true, + [ts_external_token_list_marker_dash] = true, }, [82] = { - [ts_external_token__list_item_continuation] = true, + [ts_external_token_list_marker_plus] = true, }, [83] = { [ts_external_token_list_marker_star] = true, @@ -29742,6 +29771,9 @@ static const bool ts_external_scanner_states[85][EXTERNAL_TOKEN_COUNT] = { [84] = { [ts_external_token__footnote_continuation] = true, }, + [85] = { + [ts_external_token__list_item_continuation] = true, + }, }; #ifdef __cplusplus diff --git a/tree-sitter-djot/src/scanner.c b/tree-sitter-djot/src/scanner.c index 6598c18..f4dfd8e 100644 --- a/tree-sitter-djot/src/scanner.c +++ b/tree-sitter-djot/src/scanner.c @@ -66,6 +66,8 @@ typedef enum { TABLE_CAPTION_BEGIN, TABLE_CAPTION_END, BLOCK_ATTRIBUTE_BEGIN, + COMMENT_END_MARKER, + COMMENT_CLOSE, IN_FALLBACK, @@ -1670,20 +1672,33 @@ static bool scan_until_unescaped(Scanner *s, TSLexer *lexer, char c) { // Scan until the end of a comment, either consuming the next `%` // or before the ending `}`. -static bool scan_comment(Scanner *s, TSLexer *lexer) { +static bool scan_comment(Scanner *s, TSLexer *lexer, uint8_t indent) { if (lexer->lookahead != '%') { return false; } advance(s, lexer); while (!lexer->eof(lexer)) { - if (lexer->lookahead == '%') { + switch (lexer->lookahead) { + case '%': advance(s, lexer); return true; - } else if (lexer->lookahead == '}') { + case '}': return true; - } else if (lexer->lookahead == '\\') { + case '\\': + advance(s, lexer); + break; + case '\n': advance(s, lexer); + // Need to match indent! + if (indent != consume_whitespace(s, lexer)) { + return false; + } + // Can only have one newline in a row for a valid attribute. + if (lexer->lookahead == '\n') { + return false; + } + break; } advance(s, lexer); } @@ -1744,7 +1759,7 @@ static bool parse_attribute_begin(Scanner *s, TSLexer *lexer, } break; case '%': - if (!scan_comment(s, lexer)) { + if (!scan_comment(s, lexer, indent)) { return false; } break; @@ -1916,8 +1931,22 @@ static bool parse_newline(Scanner *s, TSLexer *lexer, return true; } - // Something should already have matched, but lets not rely on that shall - // we? + // Something should already have matched, but lets not rely on that shall we? + return false; +} + +static bool parse_comment_end(Scanner *s, TSLexer *lexer, + const bool *valid_symbols) { + if (valid_symbols[COMMENT_END_MARKER] && lexer->lookahead == '%') { + advance(s, lexer); + lexer->mark_end(lexer); + lexer->result_symbol = COMMENT_END_MARKER; + return true; + } + if (valid_symbols[COMMENT_CLOSE] && lexer->lookahead == '}') { + lexer->result_symbol = COMMENT_CLOSE; + return true; + } return false; } @@ -2021,6 +2050,9 @@ bool tree_sitter_djot_external_scanner_scan(void *payload, TSLexer *lexer, if (parse_heading(s, lexer, valid_symbols)) { return true; } + if (parse_comment_end(s, lexer, valid_symbols)) { + return true; + } switch (lexer->lookahead) { case '-': diff --git a/tree-sitter-djot/test/corpus/syntax.txt b/tree-sitter-djot/test/corpus/syntax.txt index c379fc1..ba84111 100644 --- a/tree-sitter-djot/test/corpus/syntax.txt +++ b/tree-sitter-djot/test/corpus/syntax.txt @@ -897,6 +897,26 @@ Some text (link_label (inline)) (link_destination))) +=============================================================================== +Link: inside list +=============================================================================== +- [label](#ref) + ++ [label](#ref) + +------------------------------------------------------------------------------- + +(document + (list + (list_item + (list_marker_dash) + (list_item_content + (paragraph (inline))))) + (list + (list_item + (list_marker_plus) + (list_item_content + (paragraph (inline)))))) =============================================================================== Block attribute: class @@ -1187,28 +1207,6 @@ Block attribute: inside block quote (block_quote_marker) (paragraph (inline))))) - -=============================================================================== -Link: inside list -=============================================================================== -- [label](#ref) - -+ [label](#ref) - -------------------------------------------------------------------------------- - -(document - (list - (list_item - (list_marker_dash) - (list_item_content - (paragraph (inline))))) - (list - (list_item - (list_marker_plus) - (list_item_content - (paragraph (inline)))))) - =============================================================================== Block attribute: must be first =============================================================================== @@ -1289,7 +1287,7 @@ Block attribute: comment closed at } (document (block_attribute - (args (comment)))) + (args (comment (content))))) =============================================================================== Block attribute: comment can contain newlines @@ -1303,7 +1301,7 @@ Block attribute: comment can contain newlines (document (block_attribute - (args (comment)))) + (args (comment (content))))) =============================================================================== Block attribute: comment newlines must match indent @@ -1317,6 +1315,39 @@ c (document (paragraph (inline))) +=============================================================================== +Block attribute: comment before link def +=============================================================================== +{% c %} +[def]: /url + +------------------------------------------------------------------------------- +(document + (block_attribute + (args + (comment + (content)))) + (link_reference_definition + (link_label (inline)) + (link_destination))) + +=============================================================================== +Block attribute: comment before heading +=============================================================================== +{% c %} +# one + +------------------------------------------------------------------------------- +(document + (block_attribute + (args + (comment + (content)))) + (section + (heading + (marker) + (inline)))) + =============================================================================== Div: simple =============================================================================== @@ -3549,35 +3580,3 @@ x (frontmatter_marker)) (paragraph (inline))) -=============================================================================== -Comment: before link def -=============================================================================== -{% c %} -[def]: /url - -------------------------------------------------------------------------------- -(document - (block_attribute - (args - (comment - (content)))) - (link_reference_definition - (link_label (inline)) - (link_destination))) - -=============================================================================== -Comment: before heading -=============================================================================== -{% c %} -# one - -------------------------------------------------------------------------------- -(document - (block_attribute - (args - (comment - (content)))) - (section - (heading - (marker) - (inline))))